diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..258f024 Binary files /dev/null and b/.DS_Store differ diff --git a/README.md b/README.md index 10ee57b..03ce35d 100644 --- a/README.md +++ b/README.md @@ -1,68 +1,59 @@ -Dashboards are the bread and butter of spatial data displays. They are highly interactive websites, usually with real-time updates that show data in an accessible way. +# USVI Flood Risk Dashboard for Residents +## Presentation slide desk [Link](https://docs.google.com/presentation/d/1PnJiVcnPF5Ht7bmVuiNVMHMsRJLiIO7LLvhhj2mPyZU/edit?usp=sharing) -## Instructions +## Introduction -### Step 1: Choose a topic +The USVI Flood Risk Dashboard is an interactive data visualization tool designed for residents of the U.S. Virgin Islands (USVI). +Its goal is to help individuals understand their **flood risk**, find **nearby emergency shelters**, and receive **personalized flood insurance recommendations**. -Choose a topic that is fruitfully explained with some combination of narrative and geographic elements. Think about what data you want to tell a story about, and what kind of decisions you want to support through the use of your dashboard. Evaluate any dataset or interactive element you add to your dashboard on whether it makes it actually supports making those decisions. +Flooding is one of the most frequent and destructive natural disasters in the Caribbean. Many residents are unaware of their property’s flood risk level or what actions to take during an emergency. +This dashboard supports residents throughout the full decision-making cycle: Risk Awareness > Emergency Preparedness > Risk Management. -Whatever data you use, **be sure to include citations somewhere in your app interface**. You can choose a dataset from any of a number of sources, for example: +## Key Problems Solved +- **“What is the flood risk for my home?”** + Visualize your property’s flood zone. +- **“Where should I go if flooding occurs?”** + Find the nearest emergency shelters, and redirect to Googlle Map for navigation. +- **“What flood insurance should I buy?”** + Receive recommendations based on your property’s risk level and value. -* Use data you've been working with for another class -* Create your own dataset (check out [geojson.io](https://geojson.io)) -* Find data from an open data repository... +--- -### Step 2: Create a map on your browser +## How to Use -The main component of the dashboard is the map displayign spatial information. This is the building block of all your other features! +1. **Open the Map** **[Link](https://cenjinheng.github.io/dashboard-project/)** + + Launch the dashboard to view the interactive map of flood hazard zones. -* Create basic html with head and body elements, linking to your css stylesheet and javascript file -* Create map element in html document -* Style map element in CSS to give it height -* Create map object in Javascript referencing leaflet quickstart https://leafletjs.com/examples/quick-start/ (will need to link to leaflet documents in your html) -* Add a basemap tile layer - use OpenStreetMap, Stamen, Mapbox, or another source - you can customize this! -* NOTE: you may want to separate the code for creating the map into a different javascript file for organization. If you do this, wrap the creation of the map into a function and export that function, and then import it in your main.js file. +3. **Find Your Location** + - Enter your address in the search bar, **or** + - Click directly on a parcel or location on the map. -### Step 3: Add data to your map +4. **View the Information Panel** + The panel on the right will display: + - The **Flood Risk Level** + - The **Nearest Shelters or Hospitals** with distance + - **Insurance Recommendations** based on property value and risk zone -* Add data file to your repository folder (usually in a data subfolder) - remember geojson files work best, csv files work too but must be parsed using csv parse https://csv.js.org/parse/ or papa parse https://www.papaparse.com/ . See [the course resources](https://github.com/musa-6110-fall-2023/course-info/blob/main/resources/data-format-csv.md) for a guide to getting started with those libraries. -* Use fetch API https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API to load your data into your environment (remember, fetch returns a promise, not a file, and a file needs to be extracted from the promise) -* Create map layer to display data (ie LayerGroup, Marker, etc.. see documentation https://leafletjs.com/reference.html) - style the layer here, not in CSS because CSS cannot access styles within the map -* Display data through your map layer (either create an empty layer and pass the data through in a separate function, or input the data directly when you create the layer) -* optional: attach popup https://leafletjs.com/reference.html#popup and tooltip https://leafletjs.com/reference.html#tooltip to your data layer for more interactivity +5. **Toggle Map Layers (Optional)** + Customize your view by enabling or disabling data layers: + - Flood Hazard Zones + - Land Parcel Value + - Shelters -### Step 4: Create an interactive element (ie search, highlight, print data, etc) +--- -This is the most broad step because you could do so many different things like: -* button to filter data shown on map -* checkbox to filter data shown on map -* search bar to type in to filter data shown on map (more difficult - try only if you've already accomplished the button) -* paste/display text of data attributes when you click on the data layer on the map -* graph data shown on map +## Data Sources -The general steps to accomplish these are: -* create an html element for the interactive piece (ie button, checkbox, searchbar, graph) ps. if you're interactive event will be clicking on the map, no extra element is needed -* create a DOM (document object model) element in javascript to set up an event listener - reference DOM exercise we did in class https://github.com/musa-6110-fall-2023/dom-exercises -* create an event listener (event examples: click a button, check a checkbox, click a map data layer) -* create a function which responds when the event has happened -* create a function to parse through data (will require for loop) and accomplish one of the following: - * clear data layer and display only the filtered data - * print in space outside map (new html element) information about the data - * pass data shown on map through a graph and display - -### Step 5: Finishing touches (styling, linting, accessibility) +- **[FEMA Flood Maps](https://www.fema.gov/flood-maps)** + Provides official flood hazard zones. -* style the map and data to your liking, which can include doing things like: - * customizing your basemap tiles - * customizing your marker/data layer style (using your own image in replace for the marker image) - * changing fonts and colors in the csv +- **[USVI Open Data Portal](https://usvi-open-data-portal-upenn.hub.arcgis.com)** + Provides land use, parcel value, and point-of-interest datasets across the U.S. Virgin Islands. -Make sure to lint use eslint or stylelint to ensure your code is using the widely acceptable syntax +--- -Check for accessibility using: -* Axe DevTools in browser -* accessible colors for someone looking at your map, reference colorbrewer or other sites for help with this - - - +**Author:** Jinheng +**Project:** USVI Flood Risk Dashboard +**Note:** AI was used in this project for fixing bug, adding mutiple languages options, and some features building diff --git a/app.js b/app.js new file mode 100644 index 0000000..aef04d6 --- /dev/null +++ b/app.js @@ -0,0 +1,2482 @@ +const proj4 = window.proj4; +if (!proj4) { + throw new Error("Proj4 library is required but not loaded."); +} + +const WGS84 = "EPSG:4326"; + +const projDefinitions = { + "EPSG:32161": + "+proj=lcc +lat_0=17.8333333333333 +lon_0=-66.4333333333333 +lat_1=18.4333333333333 +lat_2=18.0333333333333 +x_0=200000 +y_0=200000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs +type=crs", + "EPSG:4269": "+proj=longlat +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +no_defs +type=crs", + "CRS:84": "+proj=longlat +datum=WGS84 +no_defs +type=crs" +}; + +function ensureProjDefinition(code) { + if (!code) return; + if (!proj4.defs(code) && projDefinitions[code]) { + proj4.defs(code, projDefinitions[code]); + } +} + +function parseCrs(geojson) { + const crs = geojson?.crs?.properties?.name; + if (!crs) return WGS84; + const match = crs.match(/EPSG[:/]*(\d+)/i); + if (match) { + return `EPSG:${match[1]}`; + } + if (/CRS84/i.test(crs) || /OGC:1\.3:CRS84/i.test(crs)) { + return "CRS:84"; + } + return WGS84; +} + +function createTransformer(fromCode) { + if (!fromCode || fromCode === WGS84 || fromCode === "CRS:84" || fromCode === "EPSG:4326") { + return coords => coords.slice(0, 2); + } + ensureProjDefinition(fromCode); + return coords => { + const [x, y] = coords; + const [lon, lat] = proj4(fromCode, WGS84, [x, y]); + return [lon, lat]; + }; +} + +function transformGeometry(geometry, transform) { + if (!geometry) return geometry; + + const apply = coords => { + if (typeof coords[0] === "number") { + return transform(coords); + } + return coords.map(apply); + }; + + switch (geometry.type) { + case "Point": + return { ...geometry, coordinates: transform(geometry.coordinates) }; + case "MultiPoint": + case "LineString": + return { ...geometry, coordinates: geometry.coordinates.map(transform) }; + case "MultiLineString": + case "Polygon": + return { ...geometry, coordinates: geometry.coordinates.map(ring => ring.map(transform)) }; + case "MultiPolygon": + return { + ...geometry, + coordinates: geometry.coordinates.map(poly => poly.map(ring => ring.map(transform))) + }; + default: + return geometry; + } +} + +function normalizeFeatures(geojson) { + const fromCode = parseCrs(geojson); + const transformer = createTransformer(fromCode); + return (geojson.features || []).map(feature => ({ + ...feature, + geometry: transformGeometry(feature.geometry, transformer) + })); +} + +function geometryCentroid(geometry) { + if (!geometry) return null; + const accumulate = coords => + coords.reduce( + (acc, pair) => { + acc[0] += pair[0]; + acc[1] += pair[1]; + return acc; + }, + [0, 0] + ); + + switch (geometry.type) { + case "Point": + return geometry.coordinates.slice(0, 2); + case "MultiPoint": { + const sum = accumulate(geometry.coordinates.map(coord => coord.slice(0, 2))); + return [sum[0] / geometry.coordinates.length, sum[1] / geometry.coordinates.length]; + } + case "LineString": + case "Polygon": { + const outer = geometry.type === "Polygon" ? geometry.coordinates[0] : geometry.coordinates; + const clean = outer.filter(Boolean).map(pt => pt.slice(0, 2)); + if (!clean.length) return null; + const sum = accumulate(clean); + return [sum[0] / clean.length, sum[1] / clean.length]; + } + case "MultiPolygon": { + const centroids = geometry.coordinates + .map(poly => { + const outer = poly[0] || []; + const clean = outer.filter(Boolean).map(pt => pt.slice(0, 2)); + if (!clean.length) return null; + const sum = accumulate(clean); + return [sum[0] / clean.length, sum[1] / clean.length]; + }) + .filter(Boolean); + if (!centroids.length) return null; + const sum = accumulate(centroids); + return [sum[0] / centroids.length, sum[1] / centroids.length]; + } + default: + return null; + } +} + +function geometryBounds(geometry) { + if (!geometry) return null; + let minLon = Infinity; + let minLat = Infinity; + let maxLon = -Infinity; + let maxLat = -Infinity; + + const update = coords => { + if (!Array.isArray(coords) || coords.length < 2) return; + const lon = coords[0]; + const lat = coords[1]; + if (!Number.isFinite(lon) || !Number.isFinite(lat)) return; + if (lon < minLon) minLon = lon; + if (lon > maxLon) maxLon = lon; + if (lat < minLat) minLat = lat; + if (lat > maxLat) maxLat = lat; + }; + + const walk = coords => { + if (!Array.isArray(coords)) return; + if (typeof coords[0] === "number") { + update(coords); + } else { + coords.forEach(walk); + } + }; + + switch (geometry.type) { + case "Point": + case "MultiPoint": + case "LineString": + case "MultiLineString": + case "Polygon": + case "MultiPolygon": + walk(geometry.coordinates); + break; + default: + return null; + } + + if (!Number.isFinite(minLon) || !Number.isFinite(minLat) || !Number.isFinite(maxLon) || !Number.isFinite(maxLat)) { + return null; + } + return [minLon, minLat, maxLon, maxLat]; +} + +const infoPanel = { + risk: document.querySelector("#risk-section .info-body"), + shelter: document.querySelector("#shelter-section .info-body"), + insurance: document.querySelector("#insurance-section .info-body") +}; + +const tutorialModal = document.getElementById("tutorial-modal"); +const tutorialCloseButtons = tutorialModal + ? tutorialModal.querySelectorAll('[data-tutorial-close]') + : []; +const tutorialLanguageButtons = tutorialModal + ? tutorialModal.querySelectorAll(".tutorial-modal__language-button") + : []; + +const parcelSearchForm = document.getElementById("parcel-search-form"); +const parcelSearchInput = document.getElementById("parcel-search-input"); +const parcelSearchFeedback = document.getElementById("parcel-search-feedback"); +const RISK_TOOLTIP_ALIGN_CLASSES = [ + "risk-summary__tooltip-content--align-left", + "risk-summary__tooltip-content--align-right" +]; + +function showTutorialModal() { + if (!tutorialModal) return; + updateTutorialLanguageButtons(); + tutorialModal.classList.remove("hidden"); + tutorialModal.setAttribute("aria-hidden", "false"); + const actionButton = tutorialModal.querySelector(".tutorial-modal__action"); + if (actionButton) { + actionButton.focus({ preventScroll: true }); + } +} + +function hideTutorialModal() { + if (!tutorialModal) return; + tutorialModal.classList.add("hidden"); + tutorialModal.setAttribute("aria-hidden", "true"); +} + +function updateTutorialLanguageButtons(lang = currentLanguage) { + if (!tutorialLanguageButtons.length) return; + tutorialLanguageButtons.forEach(button => { + const buttonLang = button.dataset.language; + const isActive = buttonLang === lang; + button.classList.toggle("is-active", isActive); + button.setAttribute("aria-pressed", isActive ? "true" : "false"); + }); +} + +const languageSelect = document.getElementById("language-select"); + +const supportedLanguages = ["en", "es", "zh"]; +let currentLanguage = "en"; +let currentSelection = null; + +const translations = { + en: { + language: { + label: "Language", + options: { en: "English", es: "Español", zh: "中文" } + }, + header: { + title: "Community Flood Risk Dashboard", + tagline: "Understand flood exposure, find shelters, and plan insurance coverage." + }, + search: { + label: "Search parcel name", + placeholder: "Search parcel name…", + button: "Search" + }, + legend: { + floodLayers: "Flood Zone Layers", + instruction: "Select zones to display on the map.", + zoneGuide: "Zone Guide", + parcelTitle: "Parcel Value per sq. meter", + zones: { + VE: "VE — Coastal flood with wave action", + AE: "AE — High risk (Base Flood Elevation)", + AO: "AO — River/stream flood, depth 1-3 ft", + A: "A — High risk (no Base Flood Elevation)", + X: "X — Moderate or minimal risk" + }, + shelter: "Shelters", + parcelLowDefault: "Low", + parcelHighDefault: "High", + parcelUnavailable: "N/A", + parcelValue: "{amount}/m²", + parcelRange: "{start} – {end}/m²", + parcelRangeUpper: "{start}+/m²" + }, + zones: { + labels: { + VE: "Zone VE", + AE: "Zone AE", + AO: "Zone AO", + A: "Zone A", + X: "Zone X", + parcel: "Parcel Value", + shelter: "Shelters" + }, + descriptions: { + VE: "Very high coastal flood risk with wave action of 3 ft or more (coastal velocity zone).", + AE: "High flood risk with Base Flood Elevation determined (1% annual chance flood).", + AO: "Sloping terrain flood risk with sheet flow, average depths of 1 to 3 feet.", + A: "High flood risk areas without detailed studies or Base Flood Elevation.", + X: "Moderate-to-minimal flood risk; flooding is possible but less likely than in SFHA zones.", + parcel: "Toggle parcel value layer.", + shelter: "Toggle shelter locations." + } + }, + info: { + riskTitle: "My Flood Risk", + shelterTitle: "Where to Go During Flood", + insuranceTitle: "Flood Insurance Guide", + riskPlaceholder: "Click on the map to explore flood zone details for your location.", + shelterPlaceholder: "We will list the nearest shelter and travel distance.", + insurancePlaceholder: "Get a quick estimate of insurance needs based on your property value and flood risk." + }, + tutorial: { + title: "Welcome to the Flood Risk Dashboard", + body: + "

Click anywhere on the map to see the flood risk, the nearest shelter, and view flood insurance suggestions.

", + action: "Got it", + languageLabel: "Choose your language:", + language: { en: "English", es: "Español", zh: "中文" } + }, + footer: { + sources: + 'Data sources: FEMA Flood Maps, USVI Open Data Portal.' + }, + risk: { + noneHeading: "No mapped flood zone", + noneDescription: "This point is outside the Special Flood Hazard Area. Flash flooding is still possible in extreme storms.", + severity: { + VE: "Severe coastal flood hazard", + AE: "High flood hazard", + AO: "Moderate flood hazard (sheet flow)", + A: "Elevated flood hazard", + X: "Lower flood hazard", + none: "Minimal mapped flood hazard" + }, + depthWithValue: '

Estimated flood depth: {value} ft

', + depthUnavailable: '

Estimated flood depth: Not available

', + bfeLabel: '

Base Flood Elevation: {value} ft

', + tooltip: { + none: "View explanation for areas outside mapped flood zones", + zone: "View explanation for {zone}" + }, + gaugeLabel: "Flood Risk Position", + gaugeValue: { + none: "Outside SFHA" + }, + zoneLabelSuffix: "zone", + gaugeZoneLabel: { + none: "—" + } + }, + insurance: { + premiumLabel: "Estimated annual premium for NFIP-level coverage in this zone:", + premiumAmount: "{amount}/year", + coverageText: 'Recommended building coverage: {amount}. The National Flood Insurance Program currently caps residential building coverage at $250,000. Consider excess flood insurance if your replacement cost is higher.', + recommendations: { + VE: "Flood insurance is mandatory for federally backed mortgages. Prepare for storm surge and wave damage with elevated structures and coastal hardening.", + AE: "Insurance is required in most cases. Elevate utilities above the Base Flood Elevation and plan for 1% annual chance floods.", + AO: "Insurance strongly recommended. Consider grading or barriers to redirect shallow flooding away from the property.", + A: "Insurance required for most mortgages. Request an elevation certificate to refine premiums and mitigation needs.", + X: "Preferred risk policies are available. Insurance optional but still advised because 25% of flood claims originate in lower risk zones.", + none: "Consider low-cost protection if near flood-prone areas. Maintain drainage and monitor future map updates." + }, + selectedParcel: "Selected parcel:", + calcLink: "How are these numbers calculated?" + }, + shelter: { + cardHeading: "The nearest shelter is:", + distance: "Distance: {distance}", + noDataTitle: "Shelter data not available", + noDataDescription: "Please contact local emergency management for evacuation guidance.", + navigate: "Navigate to Shelter" + }, + format: { + distance: "{km} km ({miles} mi)" + }, + meters: { + labels: { + parcelValue: "Parcel Value", + improvementValue: "Improvement Value", + valuePerAcre: "Value per Acre" + }, + unavailable: "N/A", + perAcre: "{amount} / acre", + percentile: "Percentile: {percent}%" + }, + parcels: { + unknown: "Parcel", + tooltipTotal: "Total: {value}", + tooltipPerSquare: "Per m²: {value}" + }, + placeholders: { + searchEnter: "Enter a parcel name to search.", + searchLoading: "Parcel data is still loading. Please try again shortly.", + searchNotFound: 'No parcel found matching "{query}".', + searchUnable: "Unable to center on the selected parcel.", + searchShowing: "Showing parcel: {name}" + }, + buttons: { + close: "Close" + }, + calc: { + title: "How We Estimate Flood Insurance", + body: + "

The annual premium shown is a simplified estimate to help compare relative risk between zones. We multiply the parcel's total value (land + improvements) by a zone-specific rate and clamp the result to a reasonable range.

Zone rates used: VE 1.8%, AE 1.5%, AO 1.2%, A 1.2%, X 0.6%, and 0.4% if no mapped zone. These are heuristic placeholders and not official NFIP rates.

Actual premiums depend on many additional variables (elevation certificate, foundation type, first-floor height, flood openings, replacement cost, deductibles, private market options, etc.). Contact a licensed agent for a binding quote.

" + } + }, + es: { + language: { + label: "Idioma", + options: { en: "Inglés", es: "Español", zh: "Chino" } + }, + header: { + title: "Panel de Riesgo de Inundaciones Comunitario", + tagline: "Comprenda la exposición a inundaciones, encuentre refugios y planifique la cobertura de seguros." + }, + search: { + label: "Buscar nombre de parcela", + placeholder: "Buscar nombre de parcela…", + button: "Buscar" + }, + legend: { + floodLayers: "Capas de zonas de inundación", + instruction: "Seleccione zonas para mostrarlas en el mapa.", + zoneGuide: "Guía de zonas", + parcelTitle: "Valor de la parcela por m²", + zones: { + VE: "VE — Inundación costera con oleaje", + AE: "AE — Alto riesgo (Elevación de Inundación Base)", + AO: "AO — Inundación fluvial, profundidad de 1 a 3 pies", + A: "A — Alto riesgo (sin elevación base determinada)", + X: "X — Riesgo moderado o mínimo" + }, + shelter: "Refugios", + parcelLowDefault: "Low", + parcelHighDefault: "High", + parcelUnavailable: "N/D", + parcelValue: "{amount}/m²", + parcelRange: "{start} – {end}/m²", + parcelRangeUpper: "{start}+/m²" + }, + zones: { + labels: { + VE: "Zona VE", + AE: "Zona AE", + AO: "Zona AO", + A: "Zona A", + X: "Zona X", + parcel: "Valor de la parcela", + shelter: "Refugios" + }, + descriptions: { + VE: "Riesgo de inundación costera muy alto con oleaje de 3 pies o más (zona de velocidad costera).", + AE: "Alto riesgo de inundación con Elevación de Inundación Base determinada (inundación con probabilidad anual del 1%).", + AO: "Riesgo de inundación en terreno inclinado con flujo laminar, profundidades promedio de 1 a 3 pies.", + A: "Áreas de alto riesgo de inundación sin estudios detallados ni Elevación de Inundación Base.", + X: "Riesgo moderado a mínimo; la inundación es posible pero menos probable que en las zonas SFHA.", + parcel: "Activar la capa de valor de parcelas.", + shelter: "Mostrar ubicaciones de refugios." + } + }, + info: { + riskTitle: "Mi riesgo de inundación", + shelterTitle: "Dónde ir durante una inundación", + insuranceTitle: "Guía de seguro contra inundaciones", + riskPlaceholder: "Haga clic en el mapa para explorar los detalles de la zona de inundación de su ubicación.", + shelterPlaceholder: "Mostraremos el refugio más cercano y la distancia de viaje.", + insurancePlaceholder: "Obtenga una estimación rápida de las necesidades de seguro según el valor de su propiedad y el riesgo de inundación." + }, + tutorial: { + title: "Bienvenido al panel de riesgo de inundaciones", + body: + "

Haga clic en cualquier lugar del mapa para ver el riesgo de inundación, el refugio más cercano y las sugerencias de seguro contra inundaciones.

", + action: "Entendido", + languageLabel: "Selecciona un idioma:", + language: { en: "Inglés", es: "Español", zh: "Chino" } + }, + footer: { + sources: + 'Fuentes de datos: Mapas de inundación de FEMA, Portal de Datos Abiertos de USVI.' + }, + risk: { + noneHeading: "Sin zona de inundación cartografiada", + noneDescription: "Este punto está fuera del Área Especial de Peligro de Inundación. Las inundaciones repentinas siguen siendo posibles en tormentas extremas.", + severity: { + VE: "Peligro severo de inundación costera", + AE: "Alto peligro de inundación", + AO: "Peligro moderado de inundación (escorrentía)", + A: "Peligro elevado de inundación", + X: "Peligro bajo de inundación", + none: "Peligro mínimo de inundación cartografiada" + }, + depthWithValue: '

Profundidad estimada de inundación: {value} ft

', + depthUnavailable: '

Profundidad estimada de inundación: No disponible

', + bfeLabel: '

Elevación base de inundación: {value} ft

', + tooltip: { + none: "Ver explicación para áreas fuera de las zonas cartografiadas", + zone: "Ver explicación de {zone}" + }, + gaugeLabel: "Posición de riesgo de inundación", + gaugeValue: { + none: "Fuera de la SFHA" + }, + zoneLabelSuffix: "zona", + gaugeZoneLabel: { + none: "—" + } + }, + insurance: { + premiumLabel: "Prima anual estimada para cobertura NFIP en esta zona:", + premiumAmount: "{amount}/año", + coverageText: 'Cobertura recomendada del edificio: {amount}. El Programa Nacional de Seguro contra Inundaciones limita la cobertura residencial del edificio a 250 000 USD. Considere un seguro adicional si el costo de reposición es mayor.', + recommendations: { + VE: "El seguro contra inundaciones es obligatorio para hipotecas respaldadas por el gobierno federal. Prepárese para marejadas y daños por oleaje elevando la estructura y reforzando la costa.", + AE: "El seguro es obligatorio en la mayoría de los casos. Eleve las utilidades por encima de la Elevación de Inundación Base y planifique inundaciones con probabilidad anual del 1%.", + AO: "Se recomienda encarecidamente contratar un seguro. Considere nivelar el terreno o instalar barreras para desviar el agua superficial poco profunda lejos de la propiedad.", + A: "El seguro es exigido para la mayoría de las hipotecas. Solicite un certificado de elevación para ajustar las primas y las medidas de mitigación.", + X: "Existen pólizas de riesgo preferente. El seguro es opcional, pero sigue siendo recomendable porque el 25% de los reclamos proviene de zonas de menor riesgo.", + none: "Considere una protección de bajo costo si está cerca de zonas propensas a inundaciones. Mantenga el drenaje y supervise futuras actualizaciones del mapa." + }, + selectedParcel: "Parcela seleccionada:", + calcLink: "¿Cómo se calculan estas cifras?" + }, + shelter: { + cardHeading: "El refugio más cercano es:", + distance: "Distancia: {distance}", + noDataTitle: "Datos de refugios no disponibles", + noDataDescription: "Comuníquese con la gestión de emergencias local para obtener instrucciones de evacuación.", + navigate: "Cómo llegar al refugio" + }, + format: { + distance: "{km} km ({miles} mi)" + }, + meters: { + labels: { + parcelValue: "Valor del terreno", + improvementValue: "Valor de las mejoras", + valuePerAcre: "Valor por acre" + }, + unavailable: "N/D", + perAcre: "{amount} / acre", + percentile: "Percentil: {percent}%" + }, + parcels: { + unknown: "Parcela", + tooltipTotal: "Total: {value}", + tooltipPerSquare: "Por m²: {value}" + }, + placeholders: { + searchEnter: "Introduzca un nombre de parcela para buscar.", + searchLoading: "Los datos de parcelas aún se están cargando. Vuelva a intentarlo en breve.", + searchNotFound: 'No se encontró ninguna parcela que coincida con "{query}".', + searchUnable: "No se puede centrar en la parcela seleccionada.", + searchShowing: "Mostrando parcela: {name}" + }, + buttons: { + close: "Cerrar" + }, + calc: { + title: "Cómo estimamos el seguro contra inundaciones", + body: + "

La prima anual mostrada es una estimación simplificada para ayudar a comparar el riesgo relativo entre zonas. Multiplicamos el valor total de la parcela (terreno + mejoras) por una tasa específica de la zona y limitamos el resultado a un rango razonable.

Tasas de zona utilizadas: VE 1,8 %, AE 1,5 %, AO 1,2 %, A 1,2 %, X 0,6 % y 0,4 % si no hay zona cartografiada. Son valores heurísticos y no tasas oficiales del NFIP.

Las primas reales dependen de muchas variables adicionales (certificado de elevación, tipo de cimentación, altura del primer piso, aberturas contra inundación, costo de reposición, deducibles, opciones del mercado privado, etc.). Consulte a un agente autorizado para obtener una cotización vinculante.

" + } + }, + zh: { + language: { + label: "语言", + options: { en: "英语", es: "西班牙语", zh: "中文" } + }, + header: { + title: "社区洪水风险仪表盘", + tagline: "了解洪水风险,查找避难所,并规划保险保障。" + }, + search: { + label: "搜索地块名称", + placeholder: "搜索地块名称…", + button: "搜索" + }, + legend: { + floodLayers: "洪水分区图层", + instruction: "选择要在地图上显示的分区。", + zoneGuide: "分区指南", + parcelTitle: "地块每平方米价值", + zones: { + VE: "VE — 沿海洪水伴随波浪冲击", + AE: "AE — 高风险", + AO: "AO — 河流/溪流洪水", + A: "A — 高风险(无基准洪水水位)", + X: "X — 中等或最低风险" + }, + shelter: "避难所", + parcelLowDefault: "Low", + parcelHighDefault: "High", + parcelUnavailable: "暂无数据", + parcelValue: "{amount}/平方米", + parcelRange: "{start} – {end}/平方米", + parcelRangeUpper: "{start}+ /平方米" + }, + zones: { + labels: { + VE: "VE 区", + AE: "AE 区", + AO: "AO 区", + A: "A 区", + X: "X 区", + parcel: "地块价值", + shelter: "避难所" + }, + descriptions: { + VE: "非常高的沿海洪水风险,伴随 3 英尺以上的波浪作用(沿海速度区)。", + AE: "具有基准洪水水位的高洪水风险(1% 年发生概率洪水)。", + AO: "地势倾斜区域的洪水风险,浅层水流平均深度 1 至 3 英尺。", + A: "无详细研究或基准洪水水位的高洪水风险区域。", + X: "中等到较低的洪水风险;发生洪水的可能性低于 SFHA 区域。", + parcel: "切换地块价值图层。", + shelter: "切换避难所位置。" + } + }, + info: { + riskTitle: "我的洪水风险", + shelterTitle: "避难指南", + insuranceTitle: "洪水保险指南", + riskPlaceholder: "点击地图查看您所在位置的洪水分区信息。", + shelterPlaceholder: "我们会列出最近的避难所及距离。", + insurancePlaceholder: "根据您的房产价值和洪水风险快速估算保险需求。" + }, + tutorial: { + title: "欢迎使用洪水风险仪表盘", + body: + '

简介

该面板是面向维京群岛居民的数据可视化与交互平台。目标是为了帮助居民了解他们所处位置的洪水风险,找到避难所,并接受房屋洪水保险的建议。

使用方法

点击地图上的任何位置,或者搜索地点,右侧的信息面板会显示所选位置的:

', + action: "进入面板", + languageLabel: "选择语言:", + language: { en: "英语", es: "西班牙语", zh: "中文" } + }, + footer: { + sources: + '数据来源:FEMA 洪水地图美属维尔京群岛开放数据门户。' + }, + risk: { + noneHeading: "无已绘制的洪水区", + noneDescription: "该位置位于特别洪水危险区之外。极端降雨仍可能引发山洪。", + severity: { + VE: "严重的沿海洪水风险", + AE: "高洪水风险", + AO: "中等洪水风险", + A: "较高洪水风险", + X: "较低洪水风险", + none: "洪水风险极低" + }, + depthWithValue: '

估算洪水深度:{value} 英尺

', + depthUnavailable: '

估算洪水深度:暂无数据

', + bfeLabel: '

基准洪水水位:{value} 英尺

', + tooltip: { + none: "查看未绘制洪水区的说明", + zone: "查看 {zone} 的说明" + }, + gaugeLabel: "洪水风险位置", + gaugeValue: { + none: "位于特别洪水危险区外" + }, + zoneLabelSuffix: "分区", + gaugeZoneLabel: { + none: "—" + } + }, + insurance: { + premiumLabel: "该分区的 NFIP 年度保费估算:", + premiumAmount: "{amount}/年", + coverageText: '建议的建筑保险额度:{amount}。国家洪水保险计划目前将住宅建筑保险额度上限设为 250,000 美元,如需更高的重置成本,请考虑额外洪水保险。', + recommendations: { + VE: "对于联邦支持的抵押贷款,必须购买洪水保险。通过抬高建筑并加固海岸来防范风暴潮与波浪损害。", + AE: "大多数情况下都需要购买保险。将设备抬高到基准洪水水位之上,并为每年 1% 概率的洪水做好准备。", + AO: "强烈建议购买保险。可考虑整平或设置屏障,以引导浅层水流远离房屋。", + A: "大多数抵押贷款都要求投保。申请测高证书,以便更准确地估算保费和减灾需求。", + X: "可选择优惠风险保单。虽然保险是可选的,但仍建议购买,因为 25% 的洪水理赔来自低风险区域。", + none: "如果靠近易洪区域,可考虑低成本的防护措施。保持排水通畅并关注未来的地图更新。" + }, + selectedParcel: "已选择的地块:", + calcLink: "这些数值是如何计算的?" + }, + shelter: { + cardHeading: "最近的避难所:", + distance: "距离:{distance}", + noDataTitle: "暂无避难所数据", + noDataDescription: "请联系当地应急管理部门获取撤离指引。", + navigate: "导航到避难所" + }, + format: { + distance: "{km} 公里({miles} 英里)" + }, + meters: { + labels: { + parcelValue: "地块价值", + improvementValue: "改良价值", + valuePerAcre: "每英亩价值" + }, + unavailable: "暂无数据", + perAcre: "{amount}/英亩", + percentile: "百分位:{percent}%" + }, + parcels: { + unknown: "地块", + tooltipTotal: "总价值:{value}", + tooltipPerSquare: "每平方米:{value}" + }, + placeholders: { + searchEnter: "请输入要搜索的地块名称。", + searchLoading: "地块数据仍在加载中,请稍后再试。", + searchNotFound: '未找到与“{query}”匹配的地块。', + searchUnable: "无法定位到所选地块。", + searchShowing: "正在显示地块:{name}" + }, + buttons: { + close: "关闭" + }, + calc: { + title: "我们如何估算洪水保险", + body: + "

显示的年度保费是一个简化估算,用于比较不同分区之间的相对风险。我们将地块的总价值(土地 + 改良)乘以分区专属费率,并将结果限制在合理范围内。

使用的分区费率:VE 1.8%,AE 1.5%,AO 1.2%,A 1.2%,X 0.6%,无分区时为 0.4%。这些仅为经验估算,并非 NFIP 官方费率。

实际保费受更多因素影响(测高证书、地基类型、首层高度、防洪开口、重置成本、免赔额、私人市场方案等)。请联系持牌代理获取正式报价。

" + } + } +}; + +function getLocaleForLang(lang = currentLanguage) { + if (lang === "es") return "es-ES"; + if (lang === "zh") return "zh-CN"; + return "en-US"; +} + +function formatNumber(value, options = {}) { + const locale = getLocaleForLang(); + return new Intl.NumberFormat(locale, options).format(value); +} + +function formatCurrency(value, options = {}) { + const locale = getLocaleForLang(); + const formatterOptions = { + style: "currency", + currency: "USD", + maximumFractionDigits: 0, + ...options + }; + return new Intl.NumberFormat(locale, formatterOptions).format(value); +} + +function formatParcelAmount(value) { + if (!Number.isFinite(value)) return "$0.00"; + return `$${value.toFixed(2)}`; +} + +function translate(key, replacements = {}, lang = currentLanguage) { + const languages = [lang, "en"]; + for (const lng of languages) { + const source = translations[lng]; + if (!source) continue; + const value = key.split(".").reduce((obj, part) => (obj && obj[part] !== undefined ? obj[part] : null), source); + if (typeof value === "string") { + let text = value; + for (const [token, replacement] of Object.entries(replacements)) { + const pattern = new RegExp(`{${token}}`, "g"); + text = text.replace(pattern, replacement); + } + return text; + } + } + return key; +} + +function applyTranslations() { + document.querySelectorAll("[data-i18n]").forEach(el => { + const key = el.getAttribute("data-i18n"); + if (!key) return; + el.textContent = translate(key); + }); + + document.querySelectorAll("[data-i18n-html]").forEach(el => { + const key = el.getAttribute("data-i18n-html"); + if (!key) return; + el.innerHTML = translate(key); + }); + + document.querySelectorAll("[data-i18n-title]").forEach(el => { + const key = el.getAttribute("data-i18n-title"); + if (!key) return; + el.title = translate(key); + }); + + document.querySelectorAll("[data-i18n-placeholder]").forEach(el => { + const key = el.getAttribute("data-i18n-placeholder"); + if (!key) return; + el.setAttribute("placeholder", translate(key)); + }); + + document.querySelectorAll("[data-i18n-aria-label]").forEach(el => { + const key = el.getAttribute("data-i18n-aria-label"); + if (!key) return; + el.setAttribute("aria-label", translate(key)); + }); + + if (languageSelect) { + languageSelect.querySelectorAll("option[data-i18n]").forEach(option => { + const key = option.getAttribute("data-i18n"); + if (!key) return; + option.textContent = translate(key); + }); + } +} + +function updateZoneLayerTooltips() { + for (const [zoneId, entry] of floodZoneLayers.entries()) { + const labelText = translate(`zones.labels.${zoneId}`); + const tooltipOptions = { direction: "top", offset: [0, -6], sticky: true }; + if (entry.layer && entry.layer.eachLayer) { + entry.layer.eachLayer(featureLayer => { + featureLayer.bindTooltip(labelText, tooltipOptions); + }); + } + const toggle = document.querySelector(`.layer-toggle[data-zone="${zoneId}"]`); + if (toggle) { + toggle.title = translate(`zones.descriptions.${zoneId}`); + } + } + + const parcelToggle = document.querySelector(".layer-toggle[data-layer='parcel']"); + if (parcelToggle) { + parcelToggle.title = translate("zones.descriptions.parcel"); + } + const shelterToggle = document.querySelector(".layer-toggle[data-layer='shelter']"); + if (shelterToggle) { + shelterToggle.title = translate("zones.descriptions.shelter"); + } +} + +function renderCurrentSelection() { + if (!currentSelection) { + showPlaceholder(); + return; + } + const { lonLat, parcelFeature, distanceKm } = currentSelection; + if (!lonLat || !parcelFeature) { + showPlaceholder(); + return; + } + const zoneResult = findFloodZone(lonLat); + const shelterResult = findNearestShelter(lonLat, parcelFeature); + const parcelResult = { feature: parcelFeature, distanceKm: distanceKm ?? 0 }; + renderRiskInfo(zoneResult); + renderShelterInfo(shelterResult, parcelFeature); + renderInsuranceInfo(zoneResult, parcelResult); + renderShelterConnection(lonLat, shelterResult?.feature); +} + +function setLanguage(lang) { + if (!translations[lang]) { + lang = "en"; + } + currentLanguage = lang; + document.documentElement.lang = lang; + document.title = translate("header.title"); + if (languageSelect && languageSelect.value !== lang) { + languageSelect.value = lang; + } + updateTutorialLanguageButtons(lang); + applyTranslations(); + updateZoneLayerTooltips(); + renderCurrentSelection(); + updateParcelLegend(parcelStats); + if (parcelSearchFeedback) { + parcelSearchFeedback.textContent = ""; + parcelSearchFeedback.classList.remove("search-feedback--error"); + } +} + +function calcNoteHtml() { + return ( + '
' + + `${translate("insurance.calcLink")}` + + "
" + ); +} + +function insurancePlaceholderHtml() { + return `

${translate("info.insurancePlaceholder")}

` + calcNoteHtml(); +} + +const legendRefs = { + parcelMin: document.querySelector(".parcel-min"), + parcelMax: document.querySelector(".parcel-max"), + parcelGradient: document.querySelector(".parcel-gradient-bar") +}; + +const ACRE_IN_SQ_METERS = 4046.8564224; +const zoneRiskPercentScale = { + VE: 0.95, + AE: 0.8, + AO: 0.65, + A: 0.5, + X: 0.3, + none: 0.1 +}; +const WATER_ISLAND_TOKEN = "WATER ISLAND"; +const WATER_ISLAND_SHELTER_NAME = "Water Island Station"; + +function pointWithinBounds(point, bounds) { + if (!Array.isArray(point) || point.length < 2 || !Array.isArray(bounds) || bounds.length < 4) { + return false; + } + const [lon, lat] = point; + const [minLon, minLat, maxLon, maxLat] = bounds; + if (!Number.isFinite(lon) || !Number.isFinite(lat)) return false; + return lon >= minLon && lon <= maxLon && lat >= minLat && lat <= maxLat; +} + +function clampPercent(value) { + if (!Number.isFinite(value)) return null; + return Math.min(1, Math.max(0, value)); +} + +function markerPosition(percent) { + const clamped = clampPercent(percent); + if (clamped === null) return null; + return Math.min(98.5, Math.max(1.5, clamped * 100)); +} + +function createPercentileRanker(values) { + const sorted = values.filter(v => Number.isFinite(v)).sort((a, b) => a - b); + if (!sorted.length) { + return () => null; + } + if (sorted.length === 1) { + return value => (Number.isFinite(value) ? 0.5 : null); + } + if (sorted[0] === sorted[sorted.length - 1]) { + return value => (Number.isFinite(value) ? 0.5 : null); + } + return value => { + if (!Number.isFinite(value)) return null; + if (value <= sorted[0]) return 0; + const lastIndex = sorted.length - 1; + if (value >= sorted[lastIndex]) return 1; + let low = 0; + let high = lastIndex; + while (low <= high) { + const mid = Math.floor((low + high) / 2); + if (sorted[mid] < value) { + low = mid + 1; + } else { + high = mid - 1; + } + } + let firstIndex = Math.max(0, low); + while (firstIndex > 0 && sorted[firstIndex - 1] === value) { + firstIndex -= 1; + } + let lastEqual = firstIndex; + while (lastEqual + 1 < sorted.length && sorted[lastEqual + 1] === value) { + lastEqual += 1; + } + if (sorted[firstIndex] === value) { + const meanIndex = (firstIndex + lastEqual) / 2; + return meanIndex / lastIndex; + } + const prevValue = sorted[firstIndex - 1]; + const nextValue = sorted[firstIndex]; + const span = nextValue - prevValue || 1; + const fractionalIndex = firstIndex - 1 + (value - prevValue) / span; + return fractionalIndex / lastIndex; + }; +} + +function getZoneRiskPercent(zoneId) { + return zoneRiskPercentScale[zoneId] ?? zoneRiskPercentScale.none; +} + +const showPlaceholder = () => { + infoPanel.risk.innerHTML = ` +

${translate("info.riskPlaceholder")}

+ `; + infoPanel.shelter.innerHTML = ` +

${translate("info.shelterPlaceholder")}

+ `; + infoPanel.insurance.innerHTML = insurancePlaceholderHtml(); + clearShelterConnection(); + updateShelterIcons(null); + attachCalcModalHandlers(); +}; + +const css = getComputedStyle(document.documentElement); + +const floodZonesConfig = [ + { + id: "VE", + color: css.getPropertyValue("--zone-ve").trim() || "#d95d39", + file: "data/VE.geojson", + defaultVisible: true + }, + { + id: "AE", + color: css.getPropertyValue("--zone-ae").trim() || "#f07918", + file: "data/AE.geojson", + defaultVisible: true + }, + { + id: "AO", + color: css.getPropertyValue("--zone-ao").trim() || "#f4a261", + file: "data/AO.geojson", + defaultVisible: true + }, + { + id: "A", + color: css.getPropertyValue("--zone-a").trim() || "#e9c46a", + file: "data/A.geojson", + defaultVisible: true + }, + { + id: "X", + color: css.getPropertyValue("--zone-x").trim() || "#8ab17d", + file: "data/X.geojson", + defaultVisible: false + } +]; + +const zoneConfigMap = new Map(floodZonesConfig.map(config => [config.id, config])); +const zonePriority = ["VE", "AE", "AO", "A", "X"]; + +const riskProfiles = { + VE: { premiumRate: 0.018 }, + AE: { premiumRate: 0.015 }, + AO: { premiumRate: 0.012 }, + A: { premiumRate: 0.012 }, + X: { premiumRate: 0.006 }, + none: { premiumRate: 0.004 } +}; + +const floodZoneLayers = new Map(); +const zoneFeatureMap = new Map(); + +const dataStore = { + shelterFeatures: [], + shelterCollection: null, + parcelCollection: null +}; + +const mapBounds = L.latLngBounds(); +let selectionMarker = null; +let shelterLayer = null; +let shelterLayerVisible = true; +let parcelLayer = null; +let parcelLayerVisible = true; +let parcelBreaks = []; +let parcelStats = null; +let parcelBounds = null; +let parcelCentroid = null; +let shelterConnectionLayer = null; + +showPlaceholder(); + +const parcelColorRamp = ["#f7fbff", "#c6dbef", "#6baed6", "#3182bd", "#08519c"]; +const shelterIcon = L.icon({ + iconUrl: "picture/shelter.png", + iconSize: [28, 28], + iconAnchor: [14, 28], + popupAnchor: [0, -24] +}); +const shelterIconSmall = L.icon({ + iconUrl: "picture/shelter.png", + iconSize: [14, 14], + iconAnchor: [7, 14], + popupAnchor: [0, -12] +}); +const selectionIcon = L.icon({ + iconUrl: "picture/location.png", + iconSize: [28, 28], + iconAnchor: [14, 28], + popupAnchor: [0, -24] +}); + +const map = L.map("map", { zoomSnap: 0 }); +const MAPBOX_STYLE_URL = + "https://api.mapbox.com/styles/v1/mapbox/light-v11/tiles/256/{z}/{x}/{y}@2x?access_token=pk.eyJ1IjoiamluaGVuZ2MiLCJhIjoiY21mZWNtczV2MDVlNjJqb2xjYzIzaG1vYyJ9.3RSRjdENKBwjuf8_hhAqUA"; + +L.tileLayer(MAPBOX_STYLE_URL, { + maxZoom: 18, + zoomOffset: -1, + tileSize: 512, + attribution: '© OpenStreetMap' +}).addTo(map); + +map.setView([18.34, -64.9], 12); +map.on("click", handleMapClick); +map.on("zoomend", () => { + if (parcelLayer) { + parcelLayer.setStyle(parcelStyle); + } +}); + +const ZONE_PANE = "zonePane"; +const PARCEL_PANE = "parcelPane"; +const CONNECTION_PANE = "connectionPane"; +map.createPane(PARCEL_PANE); +map.getPane(PARCEL_PANE).style.zIndex = 410; +map.createPane(ZONE_PANE); +map.getPane(ZONE_PANE).style.zIndex = 430; +map.getPane(ZONE_PANE).style.pointerEvents = "none"; +map.createPane(CONNECTION_PANE); +map.getPane(CONNECTION_PANE).style.zIndex = 440; +map.getPane(CONNECTION_PANE).style.pointerEvents = "none"; + +window.map = map; + +function bringSelectionMarkerToFront() { + if (selectionMarker && selectionMarker.bringToFront) { + selectionMarker.bringToFront(); + } +} + +function extendBoundsFromGeometry(geometry) { + if (!geometry) return; + const extend = coord => { + if (!Array.isArray(coord) || coord.length < 2) return; + const [lon, lat] = coord; + if (!Number.isFinite(lon) || !Number.isFinite(lat)) return; + mapBounds.extend([lat, lon]); + }; + + switch (geometry.type) { + case "Point": + extend(geometry.coordinates); + break; + case "MultiPoint": + case "LineString": + geometry.coordinates.forEach(extend); + break; + case "MultiLineString": + case "Polygon": + geometry.coordinates.forEach(ring => { + if (Array.isArray(ring)) { + ring.forEach(extend); + } + }); + break; + case "MultiPolygon": + geometry.coordinates.forEach(poly => { + if (Array.isArray(poly)) { + poly.forEach(ring => { + if (Array.isArray(ring)) { + ring.forEach(extend); + } + }); + } + }); + break; + default: + break; + } +} + +function createZoneLayer(config, features) { + const collection = { type: "FeatureCollection", features }; + return L.geoJSON(collection, { + pane: ZONE_PANE, + interactive: false, + style: () => ({ + stroke: false, + fillColor: config.color || "#999999", + fillOpacity: config.id === "A" || config.id === "AO" ? 0.65 : 0.55 + }), + onEachFeature: (_, layer) => { + layer.bindTooltip(translate(`zones.labels.${config.id}`), { + direction: "top", + offset: [0, -6], + sticky: true + }); + } + }); +} + +function toggleZoneLayer(zoneId, visible) { + const entry = floodZoneLayers.get(zoneId); + if (!entry) return; + entry.visible = visible; + if (visible) { + entry.layer.addTo(map); + entry.layer.bringToFront(); + bringSelectionMarkerToFront(); + } else { + entry.layer.remove(); + } +} + +function getParcelColor(value) { + if (!Number.isFinite(value) || !parcelBreaks.length) { + return parcelColorRamp[Math.floor(parcelColorRamp.length / 2)] || "#3182bd"; + } + for (let i = 0; i < parcelBreaks.length; i++) { + if (value <= parcelBreaks[i]) { + return parcelColorRamp[i]; + } + } + return parcelColorRamp[parcelColorRamp.length - 1]; +} + +function getParcelStrokeWidth() { + const zoom = map.getZoom(); + if (!Number.isFinite(zoom)) return 0.6; + if (zoom <= 10) return 0.04; + if (zoom >= 18) return 0.6; + return 0.04 + ((zoom - 10) / 8) * 0.56; +} + +function parcelStyle(feature) { + const valuePerSqMeter = Number(feature.properties?.valuePerSqMeter) || 0; + return { + color: "#2f4f4f", + weight: getParcelStrokeWidth(), + fillColor: getParcelColor(valuePerSqMeter), + fillOpacity: 0.7 + }; +} + +function updateParcelLegend(stats) { + if (!legendRefs.parcelMin || !legendRefs.parcelMax || !legendRefs.parcelGradient) return; + if (!stats || !Number.isFinite(stats.min) || !Number.isFinite(stats.max)) { + legendRefs.parcelMin.textContent = translate("legend.parcelUnavailable"); + legendRefs.parcelMax.textContent = translate("legend.parcelUnavailable"); + legendRefs.parcelGradient.style.background = `linear-gradient(to right, ${parcelColorRamp.join(", ")})`; + legendRefs.parcelGradient.title = ""; + return; + } + + const minLabel = translate("legend.parcelValue", { amount: formatParcelAmount(stats.min) }); + const maxLabel = translate("legend.parcelValue", { amount: formatParcelAmount(stats.max) }); + + legendRefs.parcelMin.textContent = minLabel; + legendRefs.parcelMax.textContent = maxLabel; + legendRefs.parcelGradient.style.background = `linear-gradient(to right, ${parcelColorRamp.join(", ")})`; + + const stops = [stats.min, ...parcelBreaks, stats.max]; + const ranges = []; + for (let i = 0; i < parcelColorRamp.length; i++) { + const start = stops[i]; + const end = stops[i + 1]; + if (i === parcelColorRamp.length - 1) { + const startAmount = formatParcelAmount(start); + ranges.push(translate("legend.parcelRangeUpper", { start: startAmount })); + } else { + const startAmount = formatParcelAmount(start); + const endAmount = formatParcelAmount(end); + ranges.push(translate("legend.parcelRange", { start: startAmount, end: endAmount })); + } + } + legendRefs.parcelGradient.title = ranges.join("\n"); +} + +function toggleParcelLayer(visible) { + parcelLayerVisible = visible; + if (!parcelLayer) return; + if (visible) { + parcelLayer.addTo(map); + parcelLayer.bringToFront(); + parcelLayer.setStyle(parcelStyle); + } else { + parcelLayer.remove(); + } + bringSelectionMarkerToFront(); + ensureParcelToggle(); +} + +function toggleShelterLayer(visible) { + shelterLayerVisible = visible; + if (!shelterLayer) return; + if (visible) { + shelterLayer.addTo(map); + bringSelectionMarkerToFront(); + } else { + shelterLayer.remove(); + } + ensureShelterToggle(); +} + +function attachLayerToggle(container, config) { + const label = document.createElement("label"); + label.className = "layer-toggle"; + label.dataset.zone = config.id; + label.dataset.i18nTitle = `zones.descriptions.${config.id}`; + label.title = translate(label.dataset.i18nTitle); + + const input = document.createElement("input"); + input.type = "checkbox"; + input.dataset.zone = config.id; + input.checked = !!config.defaultVisible; + + const swatch = document.createElement("span"); + swatch.className = "layer-toggle__swatch"; + swatch.style.background = config.color || "#cccccc"; + swatch.setAttribute("aria-hidden", "true"); + + const span = document.createElement("span"); + span.dataset.i18n = `zones.labels.${config.id}`; + span.textContent = translate(`zones.labels.${config.id}`); + + label.append(input, swatch, span); + container.append(label); + + input.addEventListener("change", event => { + toggleZoneLayer(config.id, event.target.checked); + }); + + return label; +} + +function ensureParcelToggle() { + const container = document.getElementById("layer-toggles"); + if (!container) return; + + let label = container.querySelector("[data-layer='parcel']"); + if (label) { + container.removeChild(label); + } else { + label = document.createElement("label"); + label.className = "layer-toggle"; + label.dataset.layer = "parcel"; + label.dataset.i18nTitle = "zones.descriptions.parcel"; + label.title = translate("zones.descriptions.parcel"); + const input = document.createElement("input"); + input.type = "checkbox"; + const swatch = document.createElement("span"); + swatch.className = "layer-toggle__swatch"; + swatch.style.background = "linear-gradient(to right, #f7fbff, #c6dbef, #6baed6, #3182bd, #08519c)"; + swatch.setAttribute("aria-hidden", "true"); + const span = document.createElement("span"); + span.dataset.i18n = "zones.labels.parcel"; + span.textContent = translate("zones.labels.parcel"); + label.append(input, swatch, span); + input.addEventListener("change", event => { + toggleParcelLayer(event.target.checked); + }); + } + + container.append(label); + + const input = label.querySelector("input"); + input.checked = parcelLayerVisible && !!parcelLayer; + input.disabled = !parcelLayer; +} + +function ensureShelterToggle() { + const container = document.getElementById("layer-toggles"); + if (!container) return; + + let label = container.querySelector("[data-layer='shelter']"); + if (label) { + container.removeChild(label); + } else { + label = document.createElement("label"); + label.className = "layer-toggle"; + label.dataset.layer = "shelter"; + label.dataset.i18nTitle = "zones.descriptions.shelter"; + label.title = translate("zones.descriptions.shelter"); + const input = document.createElement("input"); + input.type = "checkbox"; + const swatch = document.createElement("span"); + swatch.className = "layer-toggle__swatch layer-toggle__swatch--icon"; + swatch.style.backgroundImage = 'url("picture/shelter.png")'; + swatch.setAttribute("aria-hidden", "true"); + const span = document.createElement("span"); + span.dataset.i18n = "zones.labels.shelter"; + span.textContent = translate("zones.labels.shelter"); + label.append(input, swatch, span); + input.addEventListener("change", event => { + toggleShelterLayer(event.target.checked); + }); + } + + container.append(label); + + const input = label.querySelector("input"); + input.checked = shelterLayerVisible && !!shelterLayer; + input.disabled = !shelterLayer; +} + +function updateShelterIcons(activeFeature) { + if (!shelterLayer) return; + shelterLayer.eachLayer(layer => { + if (!layer.setIcon) return; + if (!activeFeature) { + layer.setIcon(shelterIcon); + if (layer.setZIndexOffset) layer.setZIndexOffset(0); + return; + } + + if (layer.feature === activeFeature) { + layer.setIcon(shelterIcon); + if (layer.bringToFront) layer.bringToFront(); + if (layer.setZIndexOffset) layer.setZIndexOffset(1000); + } else { + layer.setIcon(shelterIconSmall); + if (layer.setZIndexOffset) layer.setZIndexOffset(0); + } + }); +} + +function clearShelterConnection() { + if (shelterConnectionLayer) { + shelterConnectionLayer.remove(); + shelterConnectionLayer = null; + } +} + +function getShelterLonLat(feature) { + if (!feature?.geometry) return null; + const geom = feature.geometry; + if (geom.type === "Point") { + const coords = geom.coordinates; + if (Array.isArray(coords) && coords.length >= 2) { + return [coords[0], coords[1]]; + } + } else if (geom.type === "MultiPoint" && Array.isArray(geom.coordinates) && geom.coordinates.length) { + const coords = geom.coordinates[0]; + if (Array.isArray(coords) && coords.length >= 2) { + return [coords[0], coords[1]]; + } + } + return null; +} + +function getParcelLonLat(parcelFeature) { + if (!parcelFeature) return null; + const centroid = parcelFeature.properties?.__centroid; + if ( + Array.isArray(centroid) && + centroid.length >= 2 && + Number.isFinite(centroid[0]) && + Number.isFinite(centroid[1]) + ) { + return centroid; + } + const lon = Number(parcelFeature.properties?.LONGITUDE); + const lat = Number(parcelFeature.properties?.LATITUDE); + if (Number.isFinite(lon) && Number.isFinite(lat)) { + return [lon, lat]; + } + if (parcelFeature.geometry) { + const computed = geometryCentroid(parcelFeature.geometry); + if ( + computed && + Number.isFinite(computed[0]) && + Number.isFinite(computed[1]) + ) { + return computed; + } + } + return null; +} + +function renderShelterConnection(selectionLonLat, shelterFeature) { + clearShelterConnection(); + if (!selectionLonLat || !shelterFeature) return; + const shelterLonLat = getShelterLonLat(shelterFeature); + if (!shelterLonLat) return; + + const startLatLng = [selectionLonLat[1], selectionLonLat[0]]; + const endLatLng = [shelterLonLat[1], shelterLonLat[0]]; + const linePoints = [startLatLng, endLatLng]; + + shelterConnectionLayer = L.polyline(linePoints, { + color: "#ff3b30", + weight: 1.5, + opacity: 0.9, + pane: CONNECTION_PANE, + smoothFactor: 1.2 + }).addTo(map); + bringSelectionMarkerToFront(); +} + +async function loadFloodZones() { + const container = document.getElementById("layer-toggles"); + container.innerHTML = ""; + + for (const config of floodZonesConfig) { + try { + const response = await fetch(config.file); + if (!response.ok) { + throw new Error(`Failed to load ${config.file}`); + } + const geojson = await response.json(); + const normalized = normalizeFeatures(geojson).filter(f => f.geometry); + const features = normalized.map(f => { + const bounds = geometryBounds(f.geometry); + return { + ...f, + properties: { ...f.properties, __zoneId: config.id, __bounds: bounds } + }; + }); + + zoneFeatureMap.set(config.id, features); + + for (const feature of features) { + extendBoundsFromGeometry(feature.geometry); + } + + const layer = createZoneLayer(config, features); + floodZoneLayers.set(config.id, { + layer, + features, + visible: !!config.defaultVisible + }); + + if (config.defaultVisible) { + layer.addTo(map); + layer.bringToFront(); + } + } catch (error) { + console.error(error); + } + + const toggle = attachLayerToggle(container, config); + const input = toggle.querySelector("input"); + const entry = floodZoneLayers.get(config.id); + if (!entry) { + input.checked = false; + input.disabled = true; + } else { + input.checked = !!entry.visible; + } + } + + ensureShelterToggle(); + ensureParcelToggle(); + updateZoneLayerTooltips(); + applyTranslations(); +} + +async function loadShelters() { + try { + const response = await fetch("data/shelter.geojson"); + if (!response.ok) { + throw new Error("Unable to load shelter data."); + } + const geojson = await response.json(); + const normalized = normalizeFeatures(geojson).filter(f => f.geometry); + + dataStore.shelterFeatures = normalized; + dataStore.shelterCollection = { type: "FeatureCollection", features: normalized }; + + for (const feature of normalized) { + extendBoundsFromGeometry(feature.geometry); + } + + if (shelterLayer) { + shelterLayer.remove(); + shelterLayer = null; + } + + if (normalized.length) { + shelterLayer = L.geoJSON(dataStore.shelterCollection, { + pointToLayer: (feature, latlng) => L.marker(latlng, { icon: shelterIcon }), + onEachFeature: (feature, layer) => { + const name = feature.properties?.Name || "Shelter"; + layer.bindTooltip(name, { direction: "top", offset: [0, -8] }); + } + }); + + if (shelterLayerVisible) { + shelterLayer.addTo(map); + bringSelectionMarkerToFront(); + } + } else { + shelterLayerVisible = false; + } + + ensureShelterToggle(); + updateShelterIcons(null); + } catch (error) { + console.error(error); + ensureShelterToggle(); + } +} + +async function loadParcelValues() { + try { + const response = await fetch("data/parcel_value.geojson"); + if (!response.ok) { + throw new Error("Unable to load parcel value data."); + } + const geojson = await response.json(); + const normalized = normalizeFeatures(geojson).filter(f => f.geometry); + + parcelBounds = L.latLngBounds(); + parcelCentroid = null; + let centroidLonSum = 0; + let centroidLatSum = 0; + let centroidCount = 0; + const metricDistributions = { + totalValue: [], + improvementValue: [], + valuePerAcre: [] + }; + + const parcels = normalized + .map(feature => { + const landValue = Number(feature.properties?.Land_Value) || 0; + const improvementValue = Number(feature.properties?.Improved_V) || 0; + const totalValue = landValue + improvementValue; + const centroid = geometryCentroid(feature.geometry); + const fallbackLon = Number(feature.properties?.LONGITUDE); + const fallbackLat = Number(feature.properties?.LATITUDE); + const centroidCoords = + centroid && Number.isFinite(centroid[0]) && Number.isFinite(centroid[1]) + ? centroid + : Number.isFinite(fallbackLon) && Number.isFinite(fallbackLat) + ? [fallbackLon, fallbackLat] + : null; + + if (!feature.geometry) return null; + + const areaSqMeters = Number(feature.properties?.SHAPE_Area) || 0; + const valuePerSqMeter = areaSqMeters > 0 ? totalValue / areaSqMeters : 0; + const acres = areaSqMeters > 0 ? areaSqMeters / ACRE_IN_SQ_METERS : 0; + const valuePerAcre = acres > 0 ? totalValue / acres : 0; + + metricDistributions.totalValue.push(totalValue); + metricDistributions.improvementValue.push(improvementValue); + metricDistributions.valuePerAcre.push(valuePerAcre); + + const bounds = geometryBounds(feature.geometry); + + return { + ...feature, + properties: { + ...feature.properties, + landValue, + improvementValue, + totalValue, + valuePerSqMeter, + valuePerAcre, + displayName: feature.properties?.Name || "Unnamed Parcel", + __centroid: centroidCoords, + __bounds: bounds + } + }; + }) + .filter(Boolean); + + dataStore.parcelCollection = { type: "FeatureCollection", features: parcels }; + + for (const feature of parcels) { + const centroid = feature.properties?.__centroid; + if (centroid && Number.isFinite(centroid[0]) && Number.isFinite(centroid[1])) { + const latLng = [centroid[1], centroid[0]]; + parcelBounds.extend(latLng); + centroidLonSum += centroid[0]; + centroidLatSum += centroid[1]; + centroidCount += 1; + } else if (feature.geometry) { + const geomCentroid = geometryCentroid(feature.geometry); + if (geomCentroid && Number.isFinite(geomCentroid[0]) && Number.isFinite(geomCentroid[1])) { + parcelBounds.extend([geomCentroid[1], geomCentroid[0]]); + centroidLonSum += geomCentroid[0]; + centroidLatSum += geomCentroid[1]; + centroidCount += 1; + } + } + } + + if (centroidCount > 0) { + parcelCentroid = [centroidLatSum / centroidCount, centroidLonSum / centroidCount]; + } + + const values = parcels + .map(f => Number(f.properties?.valuePerSqMeter) || 0) + .filter(v => { + if (!(v > 0 && Number.isFinite(v))) return false; + return v >= 0.1 && v <= 5000; + }) + .sort((a, b) => a - b); + + if (values.length) { + parcelStats = { min: values[0], max: values[values.length - 1] }; + const quantiles = [0.2, 0.4, 0.6, 0.8]; + parcelBreaks = quantiles.map(q => { + const index = Math.min(values.length - 1, Math.floor(q * (values.length - 1))); + return values[index]; + }); + } else { + parcelStats = null; + parcelBreaks = []; + } + + updateParcelLegend(parcelStats); + + if (parcelLayer) { + parcelLayer.remove(); + parcelLayer = null; + } + + if (parcels.length) { + parcelLayer = L.geoJSON(dataStore.parcelCollection, { + pane: PARCEL_PANE, + onEachFeature: (feature, layer) => { + const name = feature.properties?.displayName || translate("parcels.unknown"); + const totalValue = Number(feature.properties?.totalValue); + const valuePerSqMeter = Number(feature.properties?.valuePerSqMeter); + const totalLine = Number.isFinite(totalValue) + ? translate("parcels.tooltipTotal", { value: formatCurrency(totalValue) }) + : translate("parcels.tooltipTotal", { value: translate("meters.unavailable") }); + const perSquareValue = Number.isFinite(valuePerSqMeter) + ? translate("legend.parcelValue", { amount: formatParcelAmount(valuePerSqMeter) }) + : translate("meters.unavailable"); + const perSquareLine = translate("parcels.tooltipPerSquare", { value: perSquareValue }); + + layer.bindTooltip( + `${name}
${totalLine}
${perSquareLine}`, + { direction: "top", offset: [0, -6], sticky: true } + ); + }, + style: parcelStyle + }); + + parcelLayer.setStyle(parcelStyle); + + if (parcelLayerVisible) { + parcelLayer.addTo(map); + parcelLayer.bringToFront(); + bringSelectionMarkerToFront(); + } + } else { + parcelLayerVisible = false; + } + + ensureParcelToggle(); + const parcelToggleInput = document.querySelector("[data-layer='parcel'] input"); + if (parcelToggleInput) { + parcelToggleInput.checked = parcelLayerVisible && !!parcelLayer; + parcelToggleInput.disabled = !parcelLayer; + } + + for (const feature of normalized) { + extendBoundsFromGeometry(feature.geometry); + } + + const percentileRankers = { + totalValue: createPercentileRanker(metricDistributions.totalValue), + improvementValue: createPercentileRanker(metricDistributions.improvementValue), + valuePerAcre: createPercentileRanker(metricDistributions.valuePerAcre) + }; + + for (const feature of parcels) { + const props = feature.properties || {}; + props.percentiles = { + totalValue: percentileRankers.totalValue(props.totalValue), + improvementValue: percentileRankers.improvementValue(props.improvementValue), + valuePerAcre: percentileRankers.valuePerAcre(props.valuePerAcre) + }; + feature.properties = props; + } + + } catch (error) { + console.error(error); + ensureParcelToggle(); + } +} + +const formatDistance = km => { + const miles = km * 0.621371; + const kmText = formatNumber(km, { minimumFractionDigits: 2, maximumFractionDigits: 2 }); + const milesText = formatNumber(miles, { minimumFractionDigits: 2, maximumFractionDigits: 2 }); + return translate("format.distance", { km: kmText, miles: milesText }); +}; + +const findFloodZone = point => { + for (const zoneId of zonePriority) { + const features = zoneFeatureMap.get(zoneId) || []; + for (const feature of features) { + const bounds = feature.properties?.__bounds; + if (bounds && !pointWithinBounds(point, bounds)) { + continue; + } + if (pointInPolygon(point, feature)) { + return { + zoneId, + description: translate(`zones.descriptions.${zoneId}`), + feature + }; + } + } + } + return null; +}; + +const findNearestShelter = (point, parcelFeature) => { + if (!dataStore.shelterFeatures.length) return null; + + const legalDescription = parcelFeature?.properties?.Tax_Legal_; + const isWaterIslandParcel = + typeof legalDescription === "string" && + legalDescription.toUpperCase().includes(WATER_ISLAND_TOKEN); + + let waterIslandShelter = null; + let closest = null; + for (const feature of dataStore.shelterFeatures) { + const name = (feature.properties?.Name || "").trim(); + if (name.toUpperCase() === WATER_ISLAND_SHELTER_NAME.toUpperCase()) { + waterIslandShelter = feature; + if (!isWaterIslandParcel) { + continue; + } + } + + const [lon, lat] = feature.geometry.coordinates; + const distanceKm = haversine(point[0], point[1], lon, lat); + if (!closest || distanceKm < closest.distanceKm) { + closest = { feature, distanceKm }; + } + } + + if (isWaterIslandParcel && waterIslandShelter) { + const [lon, lat] = waterIslandShelter.geometry.coordinates; + return { feature: waterIslandShelter, distanceKm: haversine(point[0], point[1], lon, lat) }; + } + + if (!closest && isWaterIslandParcel && waterIslandShelter) { + const [lon, lat] = waterIslandShelter.geometry.coordinates; + return { feature: waterIslandShelter, distanceKm: haversine(point[0], point[1], lon, lat) }; + } + + if (!closest && waterIslandShelter && !isWaterIslandParcel) { + return null; + } + + return closest; +}; + +const findParcelAtPoint = point => { + if (!dataStore.parcelCollection || dataStore.parcelCollection.features.length === 0) { + return null; + } + + for (const feature of dataStore.parcelCollection.features) { + const bounds = feature.properties?.__bounds; + if (bounds && !pointWithinBounds(point, bounds)) { + continue; + } + if (pointInPolygon(point, feature)) { + const centroid = feature.properties?.__centroid; + let distanceKm = 0; + if (centroid && centroid.length >= 2) { + distanceKm = haversine(point[0], point[1], centroid[0], centroid[1]); + } + return { feature, distanceKm }; + } + } + + return null; +}; + +const renderRiskInfo = zoneResult => { + const zoneId = zoneResult?.zoneId ?? "none"; + const profile = riskProfiles[zoneId] ?? riskProfiles.none; + const clampedRisk = clampPercent(getZoneRiskPercent(zoneId)); + + let elevationDetails = ""; + + if (zoneResult?.feature) { + const feature = zoneResult.feature; + const baseFloodElevation = Number(feature.properties?.STATIC_BFE); + const depth = Number(feature.properties?.DEPTH); + const hasBfe = Number.isFinite(baseFloodElevation) && baseFloodElevation > -9000; + const hasDepth = Number.isFinite(depth) && depth !== -9999; + + const depthLabel = !hasBfe + ? hasDepth + ? translate("risk.depthWithValue", { value: depth }) + : translate("risk.depthUnavailable") + : ""; + + const bfeLabel = hasBfe + ? translate("risk.bfeLabel", { value: baseFloodElevation }) + : ""; + + elevationDetails = `${depthLabel}${bfeLabel}`; + } + + let summaryTitle; + let summaryDescription; + if (zoneId === "none") { + summaryTitle = translate("risk.noneHeading"); + summaryDescription = translate("risk.noneDescription"); + } else { + const severityText = translate(`risk.severity.${zoneId}`); + summaryTitle = `${zoneId} — ${severityText}`; + summaryDescription = translate(`zones.descriptions.${zoneId}`); + } + + const zoneLabel = translate(`zones.labels.${zoneId}`); + const tooltipLabel = + zoneId === "none" + ? translate("risk.tooltip.none") + : translate("risk.tooltip.zone", { zone: zoneLabel }); + const tooltipHtml = summaryDescription + ? ` + + + ${summaryDescription} + + ` + : ""; + + const summaryHtml = ` +
+

+ ${summaryTitle} + ${tooltipHtml} +

+
+ `; + + const riskGaugeHtml = + clampedRisk === null + ? "" + : createRiskGauge({ + label: translate("risk.gaugeLabel"), + valueDisplay: + zoneId === "none" + ? translate("risk.gaugeValue.none") + : `${zoneId} ${translate("risk.zoneLabelSuffix")}`, + zoneId, + percent: clampedRisk, + summaryHtml, + footnote: null + }); + + const riskPanelContent = riskGaugeHtml || summaryHtml; + infoPanel.risk.innerHTML = ` +
+ ${riskPanelContent} +
+ ${elevationDetails} + `; + + attachRiskTooltipHandlers(infoPanel.risk); +}; + +const renderShelterInfo = (shelterResult, parcelFeature) => { + if (!shelterResult) { + infoPanel.shelter.innerHTML = ` +
+ ${translate("shelter.noDataTitle")} + ${translate("shelter.noDataDescription")} +
+ `; + clearShelterConnection(); + updateShelterIcons(null); + return; + } + + const { + feature: { + properties: { Name } + }, + distanceKm + } = shelterResult; + + const distanceLabel = formatDistance(distanceKm); + let navigationButtonHtml = ""; + + const shelterLonLat = getShelterLonLat(shelterResult.feature); + const parcelLonLat = getParcelLonLat(parcelFeature); + if (shelterLonLat && parcelLonLat) { + const [shelterLon, shelterLat] = shelterLonLat; + const [parcelLon, parcelLat] = parcelLonLat; + const originCoords = `${parcelLat.toFixed(6)},${parcelLon.toFixed(6)}`; + const destinationCoords = `${shelterLat.toFixed(6)},${shelterLon.toFixed(6)}`; + const navigationUrl = `https://www.google.com/maps/dir/?api=1&origin=${encodeURIComponent( + originCoords + )}&destination=${encodeURIComponent(destinationCoords)}`; + navigationButtonHtml = ` + + ${translate("shelter.navigate")} + + `; + } + + infoPanel.shelter.innerHTML = ` +
+ ${translate("shelter.cardHeading")} + ${Name} + ${translate("shelter.distance", { distance: distanceLabel })} +
+ ${navigationButtonHtml} + `; + + updateShelterIcons(shelterResult.feature); +}; + +function createGradientMeter({ label, valueDisplay, percent, gradientKey, footnote }) { + const clamped = clampPercent(percent); + const marker = markerPosition(clamped); + if (clamped === null || marker === null) return ""; + const percentLabel = Math.round(clamped * 100); + + let footnoteHtml; + if (typeof footnote === "string") { + footnoteHtml = footnote; + } else if (footnote === null) { + footnoteHtml = ""; + } else { + footnoteHtml = `

${translate("meters.percentile", { + percent: percentLabel + })}

`; + } + + const safeLabel = label ?? ""; + const safeValue = valueDisplay ?? ""; + const gradientClass = gradientKey || "value"; + + return ` +
+
+ ${safeLabel} + ${safeValue} +
+
+
+ +
+
+ ${footnoteHtml} +
+ `; +} + +function createRiskGauge({ label, valueDisplay, zoneId, percent, summaryHtml, footnote }) { + const clamped = clampPercent(percent); + if (clamped === null) return ""; + const safeFootnote = typeof footnote === "string" ? footnote.trim() : ""; + const zoneText = zoneId === "none" ? translate("risk.gaugeZoneLabel.none") : zoneId; + const zoneNeedleAngles = { + VE: -72, + AE: -36, + AO: 0, + A: 36, + X: 72, + none: 84 + }; + const fallbackAngle = (clamped * 180 - 90); + const targetAngle = zoneNeedleAngles[zoneId] ?? fallbackAngle; + const needleAngle = targetAngle.toFixed(2); + + const footnoteHtml = safeFootnote ? `

${safeFootnote}

` : ""; + + return ` +
+
+
+
+ +
+
+
${zoneText}
+
+
+
+
+ ${summaryHtml ?? ""} +
+ ${footnoteHtml} +
+ `; +} + +function renderPropertyMeters(parcelFeature) { + if (!parcelFeature) return ""; + const props = parcelFeature.properties || {}; + const percentiles = props.percentiles || {}; + + const totalValue = Number(props.totalValue); + const improvementValue = Number(props.improvementValue); + const valuePerAcre = Number(props.valuePerAcre); + const unavailableLabel = translate("meters.unavailable"); + + const cards = [ + { + label: translate("meters.labels.parcelValue"), + valueDisplay: Number.isFinite(totalValue) ? formatCurrency(totalValue) : unavailableLabel, + percent: percentiles.totalValue, + gradientKey: "risk" + }, + { + label: translate("meters.labels.improvementValue"), + valueDisplay: Number.isFinite(improvementValue) ? formatCurrency(improvementValue) : unavailableLabel, + percent: percentiles.improvementValue, + gradientKey: "risk" + }, + { + label: translate("meters.labels.valuePerAcre"), + valueDisplay: Number.isFinite(valuePerAcre) + ? translate("meters.perAcre", { amount: formatCurrency(valuePerAcre) }) + : unavailableLabel, + percent: percentiles.valuePerAcre, + gradientKey: "risk" + } + ] + .map(item => createGradientMeter(item)) + .filter(Boolean) + .join(""); + + return cards ? `
${cards}
` : ""; +} + +const renderInsuranceInfo = (zoneResult, parcelResult) => { + const zoneId = zoneResult?.zoneId ?? "none"; + const profile = riskProfiles[zoneId] ?? riskProfiles.none; + + const parcelFeature = parcelResult?.feature; + const rawPropertyValue = Number(parcelFeature?.properties?.totalValue); + + if (!parcelFeature || !Number.isFinite(rawPropertyValue) || rawPropertyValue <= 0) { + infoPanel.insurance.innerHTML = insurancePlaceholderHtml(); + attachCalcModalHandlers(); + return; + } + + let propertyValue = rawPropertyValue; + const propertyName = parcelFeature.properties?.displayName; + + let fallbackNotice = ""; + + if (propertyName) { + fallbackNotice = ` +

${translate("insurance.selectedParcel")} ${propertyName}

+ `; + } + + const estimatedPremium = Math.min(Math.max(propertyValue * profile.premiumRate, 450), 7200); + const recommendedCoverage = Math.min(propertyValue, 250000); + const propertyMetersHtml = renderPropertyMeters(parcelFeature); + const premiumLabel = translate("insurance.premiumLabel"); + const coverageText = translate("insurance.coverageText", { + amount: formatCurrency(recommendedCoverage) + }); + const recommendationHtml = translate(`insurance.recommendations.${zoneId}`); + const premiumAmountText = translate("insurance.premiumAmount", { + amount: formatCurrency(estimatedPremium) + }); + + infoPanel.insurance.innerHTML = ` +
+ ${fallbackNotice} + ${premiumLabel} + ${premiumAmountText} +
+ ${propertyMetersHtml} +

${coverageText}

+ ${recommendationHtml ? `

${recommendationHtml}

` : ""} + ${calcNoteHtml()} + `; + + attachCalcModalHandlers(); +}; + +function attachCalcModalHandlers() { + const link = document.getElementById('calc-note-link'); + const modal = document.getElementById('calc-modal'); + if (!modal) return; + const closeTargets = modal.querySelectorAll('[data-calc-close]'); + + function open() { + modal.classList.remove('hidden'); + modal.setAttribute('aria-hidden', 'false'); + } + function close() { + modal.classList.add('hidden'); + modal.setAttribute('aria-hidden', 'true'); + } + + if (link) { + link.addEventListener('click', (e) => { e.preventDefault(); open(); }); + } + closeTargets.forEach(el => el.addEventListener('click', close)); +} + +function updateRiskTooltipPosition(tooltip) { + if (!tooltip) return; + const content = tooltip.querySelector(".risk-summary__tooltip-content"); + if (!content) return; + content.classList.remove(...RISK_TOOLTIP_ALIGN_CLASSES); + + const boundary = tooltip.closest(".info-section") || tooltip.parentElement; + const boundaryRect = boundary ? boundary.getBoundingClientRect() : { left: 0, right: window.innerWidth }; + const contentRect = content.getBoundingClientRect(); + const margin = 12; + + if (contentRect.right > boundaryRect.right - margin) { + content.classList.add("risk-summary__tooltip-content--align-right"); + } else if (contentRect.left < boundaryRect.left + margin) { + content.classList.add("risk-summary__tooltip-content--align-left"); + } +} + +function attachRiskTooltipHandlers(container) { + if (!container) return; + const tooltips = container.querySelectorAll(".risk-summary__tooltip"); + tooltips.forEach(tooltip => { + const trigger = tooltip.querySelector(".risk-summary__tooltip-trigger"); + const content = tooltip.querySelector(".risk-summary__tooltip-content"); + if (!trigger || !content) return; + + const open = () => { + tooltip.classList.add("is-active"); + requestAnimationFrame(() => updateRiskTooltipPosition(tooltip)); + }; + + const close = () => { + tooltip.classList.remove("is-active"); + content.classList.remove(...RISK_TOOLTIP_ALIGN_CLASSES); + }; + + trigger.addEventListener("mouseenter", open); + trigger.addEventListener("focus", open); + trigger.addEventListener("blur", close); + tooltip.addEventListener("mouseleave", close); + trigger.addEventListener("keydown", event => { + if (event.key === "Escape" || event.key === "Esc") { + close(); + trigger.blur(); + } + }); + }); +} + +function setParcelSearchFeedback(message, isError = false) { + if (!parcelSearchFeedback) return; + parcelSearchFeedback.textContent = message; + parcelSearchFeedback.classList.toggle("search-feedback--error", !!isError); +} + +function findParcelByName(query) { + if ( + !query || + !dataStore.parcelCollection || + !Array.isArray(dataStore.parcelCollection.features) + ) { + return null; + } + const normalizedQuery = query.trim().toLowerCase(); + if (!normalizedQuery) return null; + const candidates = []; + for (const feature of dataStore.parcelCollection.features) { + const name = (feature.properties?.displayName || "").trim(); + if (!name) continue; + const lowerName = name.toLowerCase(); + const index = lowerName.indexOf(normalizedQuery); + if (index === -1) continue; + let rank = index; + if (lowerName === normalizedQuery) { + rank = -2; + } else if (index === 0) { + rank = -1; + } + candidates.push({ feature, rank, length: name.length }); + } + if (!candidates.length) return null; + candidates.sort((a, b) => { + if (a.rank !== b.rank) return a.rank - b.rank; + return a.length - b.length; + }); + return candidates[0].feature; +} + +function selectParcelFeature(parcelFeature) { + if (!parcelFeature) return false; + const lonLat = getParcelLonLat(parcelFeature); + if (!lonLat || !Number.isFinite(lonLat[0]) || !Number.isFinite(lonLat[1])) { + return false; + } + updateSelectionMarker(lonLat); + bringSelectionMarkerToFront(); + + const targetLatLng = [lonLat[1], lonLat[0]]; + const currentZoom = map.getZoom ? map.getZoom() : 12; + const desiredZoom = currentZoom < 16 ? 16 : currentZoom; + if (map.flyTo) { + map.flyTo(targetLatLng, desiredZoom, { duration: 0.6 }); + } else { + map.setView(targetLatLng, desiredZoom); + } + + const zoneResult = findFloodZone(lonLat); + const shelterResult = findNearestShelter(lonLat, parcelFeature); + const parcelResult = { feature: parcelFeature, distanceKm: 0 }; + + renderRiskInfo(zoneResult); + renderShelterInfo(shelterResult, parcelFeature); + renderInsuranceInfo(zoneResult, parcelResult); + renderShelterConnection(lonLat, shelterResult?.feature); + currentSelection = { + lonLat, + parcelFeature, + distanceKm: 0 + }; + return true; +} + +function handleParcelSearch(event) { + event.preventDefault(); + if (!parcelSearchInput) return; + const query = parcelSearchInput.value.trim(); + if (!query) { + setParcelSearchFeedback(translate("placeholders.searchEnter"), true); + return; + } + if (!dataStore.parcelCollection || !dataStore.parcelCollection.features?.length) { + setParcelSearchFeedback(translate("placeholders.searchLoading"), true); + return; + } + const match = findParcelByName(query); + if (!match) { + setParcelSearchFeedback(translate("placeholders.searchNotFound", { query }), true); + return; + } + const success = selectParcelFeature(match); + if (!success) { + setParcelSearchFeedback(translate("placeholders.searchUnable"), true); + return; + } + setParcelSearchFeedback( + translate("placeholders.searchShowing", { name: match.properties?.displayName || "" }), + false + ); +} + +function pointInRing(point, ring) { + const x = point[0]; + const y = point[1]; + let inside = false; + for (let i = 0, j = ring.length - 1; i < ring.length; j = i++) { + const xi = ring[i][0]; + const yi = ring[i][1]; + const xj = ring[j][0]; + const yj = ring[j][1]; + const intersect = yi > y !== yj > y && x < ((xj - xi) * (y - yi)) / (yj - yi + 0.0) + xi; + if (intersect) inside = !inside; + } + return inside; +} + +function pointInPolygon(point, feature) { + const geom = feature.geometry; + if (geom.type === "Polygon") { + const rings = geom.coordinates; + if (!pointInRing(point, rings[0])) return false; + for (let i = 1; i < rings.length; i++) { + if (pointInRing(point, rings[i])) return false; + } + return true; + } else if (geom.type === "MultiPolygon") { + for (const poly of geom.coordinates) { + const rings = poly; + if (!pointInRing(point, rings[0])) continue; + let inHole = false; + for (let i = 1; i < rings.length; i++) { + if (pointInRing(point, rings[i])) inHole = true; + } + if (!inHole) return true; + } + } + return false; +} + +function haversine(lon1, lat1, lon2, lat2) { + const R = 6371; + const toRad = d => (d * Math.PI) / 180; + const dLat = toRad(lat2 - lat1); + const dLon = toRad(lon2 - lon1); + const a = + Math.sin(dLat / 2) ** 2 + + Math.cos(toRad(lat1)) * Math.cos(toRad(lat2)) * Math.sin(dLon / 2) ** 2; + const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)); + return R * c; +} + +function updateSelectionMarker(lonLat) { + const [lon, lat] = lonLat; + if (!Number.isFinite(lon) || !Number.isFinite(lat)) return; + const latLng = [lat, lon]; + if (!selectionMarker) { + selectionMarker = L.marker(latLng, { icon: selectionIcon }).addTo(map); + } else { + selectionMarker.setLatLng(latLng); + } +} + +function handleMapClick(event) { + if (!event?.latlng) return; + const { lat, lng } = event.latlng; + const lonLat = [lng, lat]; + + const parcelResult = findParcelAtPoint(lonLat); + + if (!parcelResult) { + if (selectionMarker) { + selectionMarker.remove(); + selectionMarker = null; + } + currentSelection = null; + showPlaceholder(); + return; + } + + updateSelectionMarker(lonLat); + + const zoneResult = findFloodZone(lonLat); + const shelterResult = findNearestShelter(lonLat, parcelResult.feature); + + renderRiskInfo(zoneResult); + renderShelterInfo(shelterResult, parcelResult.feature); + renderInsuranceInfo(zoneResult, parcelResult); + renderShelterConnection(lonLat, shelterResult?.feature); + currentSelection = { + lonLat, + parcelFeature: parcelResult.feature, + distanceKm: parcelResult.distanceKm + }; +} + +if (parcelSearchForm) { + parcelSearchForm.addEventListener("submit", handleParcelSearch); +} + +if (parcelSearchInput) { + parcelSearchInput.addEventListener("input", () => setParcelSearchFeedback("", false)); +} + +if (tutorialModal) { + tutorialCloseButtons.forEach(btn => btn.addEventListener("click", hideTutorialModal)); + tutorialLanguageButtons.forEach(button => { + button.addEventListener("click", () => { + const lang = button.dataset.language; + if (lang) { + setLanguage(lang); + } + }); + }); + tutorialModal.addEventListener("keydown", event => { + if (event.key === "Escape" || event.key === "Esc") { + hideTutorialModal(); + } + }); +} + +if (languageSelect) { + languageSelect.addEventListener("change", event => setLanguage(event.target.value)); +} + +const browserLanguage = (navigator.language || "").toLowerCase(); +let initialLanguage = "en"; +if (browserLanguage.startsWith("es")) { + initialLanguage = "es"; +} else if (browserLanguage.startsWith("zh")) { + initialLanguage = "zh"; +} + +setLanguage(initialLanguage); +showTutorialModal(); + +async function init() { + try { + await Promise.all([loadFloodZones(), loadShelters(), loadParcelValues()]); + if (parcelBounds && parcelBounds.isValid()) { + map.fitBounds(parcelBounds.pad(0.05)); + } else if (parcelCentroid) { + map.setView(parcelCentroid, map.getZoom() || 12); + } else if (mapBounds.isValid()) { + map.fitBounds(mapBounds, { padding: [32, 32] }); + } + } catch (error) { + console.error(error); + ensureParcelToggle(); + } +} + +init(); diff --git a/data/.DS_Store b/data/.DS_Store new file mode 100644 index 0000000..2b7af1b Binary files /dev/null and b/data/.DS_Store differ diff --git a/data/A.geojson b/data/A.geojson new file mode 100644 index 0000000..b19961f --- /dev/null +++ b/data/A.geojson @@ -0,0 +1,34 @@ +{ +"type": "FeatureCollection", +"name": "A", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4269" } }, +"features": [ +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1164", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.951296670742579, 18.368596248362564 ], [ -64.951291976874529, 18.368649557292315 ], [ -64.951278230546734, 18.368737902594205 ], [ -64.951260628541604, 18.368787188208557 ], [ -64.951253587739586, 18.368863128287785 ], [ -64.951270183915824, 18.368933199722278 ], [ -64.951308071446022, 18.369028084221497 ], [ -64.951359367408429, 18.369088097367353 ], [ -64.951408317746484, 18.36913989755385 ], [ -64.951461795624084, 18.369191697740348 ], [ -64.951517617816364, 18.36921885642937 ], [ -64.951567910569224, 18.369237127677366 ], [ -64.951483084358699, 18.36925858535983 ], [ -64.951383004386742, 18.369250372400415 ], [ -64.951298682400306, 18.369227741250995 ], [ -64.951214192775751, 18.369190356635215 ], [ -64.951130038427436, 18.369145598560408 ], [ -64.951084440852242, 18.369071668829235 ], [ -64.951038844586776, 18.368997909355585 ], [ -64.950954522600341, 18.36896790081812 ], [ -64.950861986344876, 18.368981814784036 ], [ -64.950799960231564, 18.36904015285819 ], [ -64.950731562559156, 18.369092120682808 ], [ -64.950676912524216, 18.36903914833897 ], [ -64.950639027613306, 18.368958011477275 ], [ -64.950593596366616, 18.36888424938428 ], [ -64.950493685342508, 18.368868826674998 ], [ -64.950416404158091, 18.36891224626396 ], [ -64.950338955335553, 18.368955832181427 ], [ -64.950254130434701, 18.368977122225715 ], [ -64.95017684925034, 18.369020706833453 ], [ -64.950145333279238, 18.369101174452283 ], [ -64.950144493778851, 18.369196726884695 ], [ -64.950113145445926, 18.369277360831916 ], [ -64.950066374403775, 18.369350452372373 ], [ -64.950004180652343, 18.369408790446528 ], [ -64.949957409610136, 18.36948187936764 ], [ -64.94991835123227, 18.369562345676741 ], [ -64.949879122596883, 18.369642813295513 ], [ -64.949878453354017, 18.369730989649611 ], [ -64.949856157480838, 18.369713722920778 ], [ -64.949829670654083, 18.369703498303636 ], [ -64.949793628453165, 18.369689415389871 ], [ -64.949764627054208, 18.369674830871361 ], [ -64.949735456707515, 18.369658906557333 ], [ -64.949671586574652, 18.369586820845768 ], [ -64.949576872332955, 18.369530326791221 ], [ -64.949496406023854, 18.369474000374851 ], [ -64.949459021408018, 18.369455727817126 ], [ -64.949425158502947, 18.369439300588738 ], [ -64.949339329082875, 18.369364869252763 ], [ -64.949210415350194, 18.369245343256125 ], [ -64.949152580190514, 18.369185662767165 ], [ -64.949102121109149, 18.369142076849755 ], [ -64.949062558507137, 18.36913989755385 ], [ -64.949017462536744, 18.369141407606833 ], [ -64.948963149087774, 18.369117601680728 ], [ -64.948901458250759, 18.369068652652345 ], [ -64.948839767413801, 18.369010648544815 ], [ -64.948768687531071, 18.368952645747015 ], [ -64.948679002433664, 18.368883578831685 ], [ -64.948620664359566, 18.3688705043661 ], [ -64.948581437033852, 18.36885223049876 ], [ -64.948532654333974, 18.368817864679215 ], [ -64.948487727311374, 18.368794061372455 ], [ -64.948433580190851, 18.368772602380375 ], [ -64.948356801920909, 18.368728848824787 ], [ -64.948312879417529, 18.368702026721735 ], [ -64.948291423044736, 18.368681239591865 ], [ -64.948269127171613, 18.368665147639717 ], [ -64.948247166574731, 18.368645532667188 ], [ -64.948226882359336, 18.36863245820166 ], [ -64.948189665381676, 18.368614185643935 ], [ -64.948160832930569, 18.368602618611988 ], [ -64.948128814045106, 18.368587866455357 ], [ -64.948108529829653, 18.368566576411069 ], [ -64.948103499375634, 18.368548639129642 ], [ -64.948107021086344, 18.368534054611132 ], [ -64.948112385506988, 18.368516283658153 ], [ -64.948131160979074, 18.368497006581265 ], [ -64.948160162378031, 18.36848426477269 ], [ -64.948204586486156, 18.368471525583402 ], [ -64.948236940647973, 18.368462136537687 ], [ -64.948260745264406, 18.368455767597879 ], [ -64.948306678115841, 18.368449563676847 ], [ -64.948347581822986, 18.368438499559375 ], [ -64.948409943212539, 18.368416875548462 ], [ -64.948447829433121, 18.368386030129955 ], [ -64.948489906607278, 18.368363062394565 ], [ -64.948543383175206, 18.368326014364754 ], [ -64.948590320545861, 18.36829164854521 ], [ -64.948616807372616, 18.368277568250789 ], [ -64.948646815910024, 18.368283100309554 ], [ -64.948703309964571, 18.368278237493712 ], [ -64.948771034465096, 18.368273377297214 ], [ -64.948844126005554, 18.368309753464757 ], [ -64.948857034142634, 18.36835484943515 ], [ -64.948877318358029, 18.36839273434606 ], [ -64.948924257038357, 18.368407486502747 ], [ -64.948971194409012, 18.368422238659377 ], [ -64.949027522135054, 18.368449563676847 ], [ -64.949051828356289, 18.36845693975522 ], [ -64.949065073079339, 18.36846062910405 ], [ -64.949087368952462, 18.368450066591322 ], [ -64.949100947642137, 18.36842324448827 ], [ -64.949101115280257, 18.36838368319593 ], [ -64.949095583221549, 18.368360212546122 ], [ -64.949116537989539, 18.368328193660602 ], [ -64.949175211339934, 18.368290810354495 ], [ -64.949220473638832, 18.368278574079682 ], [ -64.949307142559235, 18.368277400612669 ], [ -64.949352237220012, 18.368277903527087 ], [ -64.949452149553792, 18.368253428358059 ], [ -64.949533454053665, 18.368228953189032 ], [ -64.949604866593347, 18.368224090373189 ], [ -64.949866383407652, 18.368236832181822 ], [ -64.949970151418768, 18.368217889071502 ], [ -64.950081463146375, 18.368191737521045 ], [ -64.950143655588136, 18.368167093404224 ], [ -64.950192773564311, 18.368142284268572 ], [ -64.950230659784893, 18.368113953422267 ], [ -64.950272235354248, 18.368092663377979 ], [ -64.950317665291266, 18.368067851622982 ], [ -64.950381869390753, 18.368046730526487 ], [ -64.950457475503356, 18.368018567318302 ], [ -64.95050089247303, 18.368002809332779 ], [ -64.950525367642001, 18.367986716070959 ], [ -64.950531236286736, 18.367968777479859 ], [ -64.950535259602191, 18.367945477087517 ], [ -64.950537437588423, 18.367900550064917 ], [ -64.950535762516608, 18.367873726652249 ], [ -64.950513466643486, 18.367835674103219 ], [ -64.950468707259006, 18.367794098533807 ], [ -64.950427634604068, 18.367750681564189 ], [ -64.950405338730945, 18.367718158454579 ], [ -64.950373487483546, 18.367696199167426 ], [ -64.950322860764061, 18.367674406208664 ], [ -64.950283633438403, 18.367650601592231 ], [ -64.95024910129041, 18.367625120594369 ], [ -64.950242897369378, 18.367605339293334 ], [ -64.950241388626068, 18.367576673170731 ], [ -64.950247257270803, 18.367548007048129 ], [ -64.950247423599251, 18.367515651576639 ], [ -64.950238372449178, 18.367486819125531 ], [ -64.950219764615213, 18.367457816416959 ], [ -64.950169136586055, 18.367425128288573 ], [ -64.950135610266898, 18.367397969599551 ], [ -64.950097053493778, 18.367379529403706 ], [ -64.950077104554623, 18.367352038057788 ], [ -64.950067715508908, 18.367326220473899 ], [ -64.950073247567673, 18.367280121294016 ], [ -64.950075594501698, 18.367241732159016 ], [ -64.950069728476308, 18.367206360510636 ], [ -64.950052460437803, 18.367183560413366 ], [ -64.950043575616178, 18.367143328568488 ], [ -64.95003871541968, 18.367106951091216 ], [ -64.95003083642689, 18.367062694621211 ], [ -64.950026142558897, 18.367019946894516 ], [ -64.950006193619743, 18.366942498071978 ], [ -64.949979874431108, 18.366881476477886 ], [ -64.949957578557985, 18.366804196603198 ], [ -64.94993578559928, 18.366749378930081 ], [ -64.94992488911987, 18.366693386480335 ], [ -64.949909969325063, 18.36664309634682 ], [ -64.949900915555645, 18.366618453539616 ], [ -64.949873590538175, 18.366552404110905 ], [ -64.949834364522133, 18.366449977204923 ], [ -64.949821121108755, 18.366424328568883 ], [ -64.94980402070837, 18.366391805459273 ], [ -64.949771163632192, 18.366278986298028 ], [ -64.949760268462512, 18.36621746309919 ], [ -64.949736128569725, 18.36614168934841 ], [ -64.949690529684915, 18.36605870977678 ], [ -64.949634035630368, 18.366001545169695 ], [ -64.94955625153159, 18.365901968112155 ], [ -64.949439241416712, 18.365798535377337 ], [ -64.949354081239562, 18.365709184246555 ], [ -64.949275960554814, 18.365647158133299 ], [ -64.949191304601754, 18.365509862493354 ], [ -64.949121399495709, 18.365335351185422 ], [ -64.949075299006097, 18.365283718637102 ], [ -64.949015284550569, 18.365204761071254 ], [ -64.948938171004329, 18.365179615349689 ], [ -64.948876312529194, 18.365142232043581 ], [ -64.948819649526854, 18.365070147641632 ], [ -64.948780757477437, 18.365022035494292 ], [ -64.948764665525289, 18.364974593899547 ], [ -64.948774722504254, 18.364888763169859 ], [ -64.948818812645754, 18.364806955755569 ], [ -64.948811939481857, 18.364725315979456 ], [ -64.948823171237507, 18.364660440017701 ], [ -64.948816464402114, 18.364609310383798 ], [ -64.948792158180879, 18.364534040857109 ], [ -64.948756954170619, 18.364461956455216 ], [ -64.948711188957361, 18.364383166527546 ], [ -64.948668776506906, 18.364314602526633 ], [ -64.948626866970926, 18.364204967180456 ], [ -64.948595686276121, 18.364092146709538 ], [ -64.948585627987484, 18.364006651256091 ], [ -64.948579090099884, 18.363934902130495 ], [ -64.948543886089624, 18.36387321129348 ], [ -64.948456714254746, 18.36376240248029 ], [ -64.948440284406956, 18.363694509031973 ], [ -64.948437603506306, 18.363663495975345 ], [ -64.948441794459939, 18.363637679701185 ], [ -64.948472639878446, 18.36361437799917 ], [ -64.948504491125789, 18.363604319710532 ], [ -64.948538520359364, 18.363603816796058 ], [ -64.948560817542159, 18.363607001920798 ], [ -64.948577581356574, 18.363617227847612 ], [ -64.948607922550934, 18.363636003319698 ], [ -64.948666932487299, 18.363703561491775 ], [ -64.948745050552759, 18.363758714441133 ], [ -64.948812273448482, 18.363848065571858 ], [ -64.948861225096209, 18.363978152771608 ], [ -64.948885700265237, 18.364123830318761 ], [ -64.948930794925957, 18.364190215023768 ], [ -64.949012602340247, 18.364242182848443 ], [ -64.949089883524607, 18.364335724932801 ], [ -64.949136485618965, 18.364396745217221 ], [ -64.949200189423379, 18.364468829619113 ], [ -64.94928534960053, 18.364541249297304 ], [ -64.949296412408387, 18.364590031997238 ], [ -64.949309823459885, 18.364649040623931 ], [ -64.94926254950326, 18.364708216888744 ], [ -64.949225838059419, 18.364810476156606 ], [ -64.949235896348057, 18.364892451209016 ], [ -64.949281829199492, 18.364954142045974 ], [ -64.949363467665989, 18.365026561724221 ], [ -64.949455837593007, 18.365098981402411 ], [ -64.949551391335035, 18.365215657550607 ], [ -64.949625487394712, 18.365335854099897 ], [ -64.9497497072594, 18.365439119196594 ], [ -64.9498310104496, 18.365534337662382 ], [ -64.949883985412782, 18.365621174220962 ], [ -64.949965288602925, 18.365724104041362 ], [ -64.950032511498648, 18.36580322924533 ], [ -64.950092527263905, 18.365857544004029 ], [ -64.950121193386508, 18.36589610077715 ], [ -64.950168633671581, 18.365988803361063 ], [ -64.950219764615213, 18.366067426960285 ], [ -64.950311293732113, 18.366238920781598 ], [ -64.950446411385883, 18.366420808167845 ], [ -64.950538443417258, 18.366513678389936 ], [ -64.950712116534419, 18.366709647380276 ], [ -64.950800461836309, 18.36681945036463 ], [ -64.950878582521113, 18.366884998188596 ], [ -64.950913786531373, 18.366956914952368 ], [ -64.950934404713394, 18.367052636332573 ], [ -64.950936416371121, 18.367223291963171 ], [ -64.950968267618464, 18.367274755563699 ], [ -64.951017888509114, 18.367319516257851 ], [ -64.951067509399707, 18.367367796043311 ], [ -64.951095506279444, 18.367432839643186 ], [ -64.951112940646397, 18.367497883243061 ], [ -64.951117465566654, 18.367636687626259 ], [ -64.951120819639186, 18.367758057642561 ], [ -64.951132889585551, 18.367848582240299 ], [ -64.951128194407829, 18.367904070465954 ], [ -64.951114952304124, 18.367945140501547 ], [ -64.951103720548474, 18.367990236471996 ], [ -64.951099194318601, 18.368021080580775 ], [ -64.951094500450608, 18.368066344189344 ], [ -64.951091984568734, 18.368103224581034 ], [ -64.951089637634709, 18.368140272610844 ], [ -64.951098019541917, 18.368164915418049 ], [ -64.951112436422306, 18.368230797208639 ], [ -64.951122831296914, 18.368282428447287 ], [ -64.951133223552176, 18.368321489444497 ], [ -64.951156526563864, 18.368379324604177 ], [ -64.951169099424646, 18.368403967411382 ], [ -64.951237829754007, 18.368433302776907 ], [ -64.951269682311079, 18.368480913319445 ], [ -64.951277896580109, 18.368524162650942 ], [ -64.951296670742579, 18.368596248362564 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_519", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.022006932318845, 18.347636956752012 ], [ -65.022006597042548, 18.347670316742665 ], [ -65.022006261766251, 18.347720440547732 ], [ -65.022012799653851, 18.347837284334048 ], [ -65.022013302568269, 18.348092597227378 ], [ -65.022014811311578, 18.348512363139946 ], [ -65.022066276221778, 18.348629542202616 ], [ -65.022161662325743, 18.348771028796136 ], [ -65.022205751157628, 18.348878652484586 ], [ -65.022272471138933, 18.348964986128749 ], [ -65.022384118142838, 18.349056348917259 ], [ -65.022530801518826, 18.349129103871746 ], [ -65.022632893148511, 18.349189118327274 ], [ -65.022689890117476, 18.349235218816887 ], [ -65.022948052859249, 18.349415931426449 ], [ -65.023168664656737, 18.349632185941857 ], [ -65.02340604026864, 18.349929743647465 ], [ -65.023564123038454, 18.350145493938783 ], [ -65.023658000399053, 18.350274910585995 ], [ -65.023719691236067, 18.350373146538345 ], [ -65.023706950737107, 18.350399298088803 ], [ -65.023669232154703, 18.350422935067115 ], [ -65.023594465542487, 18.350412875468805 ], [ -65.023442417745912, 18.350363926440423 ], [ -65.023320880091489, 18.350272396013793 ], [ -65.023032877760102, 18.35005094602559 ], [ -65.022841937914109, 18.349875428888822 ], [ -65.022674299770074, 18.34974852550414 ], [ -65.022461902241616, 18.349618774890359 ], [ -65.022161327049446, 18.349548868474642 ], [ -65.021559170836213, 18.349455998252552 ], [ -65.021458923226078, 18.349430517254632 ], [ -65.021384156613863, 18.34943739041853 ], [ -65.021298828798592, 18.349473767895802 ], [ -65.021143931153517, 18.349511989392624 ], [ -65.02107922282994, 18.349548366869897 ], [ -65.020972772608502, 18.349650961414 ], [ -65.020928851414737, 18.349683315575817 ], [ -65.0208897917272, 18.349731426413484 ], [ -65.020849390934472, 18.34986939391564 ], [ -65.020771103921277, 18.35014515735287 ], [ -65.020708574893547, 18.350243226976772 ], [ -65.020633305366857, 18.350329728259055 ], [ -65.020415040503394, 18.350460987616145 ], [ -65.020252263865586, 18.350511448007182 ], [ -65.020084290445311, 18.350581688389525 ], [ -65.019996112781541, 18.35065477862031 ], [ -65.019935930687836, 18.350752679296363 ], [ -65.019909443861081, 18.350853428511243 ], [ -65.019918328682706, 18.350914450105336 ], [ -65.019939283450697, 18.350981505362938 ], [ -65.019956551489202, 18.351087451360286 ], [ -65.019953197416669, 18.351173617366271 ], [ -65.019931739734261, 18.351271854628351 ], [ -65.019912796623998, 18.351402109466221 ], [ -65.019910449689974, 18.351497495570186 ], [ -65.019854961464318, 18.351539403796494 ], [ -65.019759407722233, 18.351555833644284 ], [ -65.019705595878008, 18.351521132548498 ], [ -65.019680617794506, 18.351439660410506 ], [ -65.019635355495666, 18.351285264370176 ], [ -65.019594788374491, 18.351035652483461 ], [ -65.019553380443256, 18.350909756237286 ], [ -65.019573329382354, 18.350683612381033 ], [ -65.019629152884306, 18.350477417463935 ], [ -65.019704088444371, 18.350431149336202 ], [ -65.019800143791201, 18.35034330694873 ], [ -65.019898716329521, 18.35025797913346 ], [ -65.020011535490767, 18.350229814615545 ], [ -65.020144138572391, 18.35018103322534 ], [ -65.020268524765527, 18.35009101154202 ], [ -65.020305069880919, 18.350029655981302 ], [ -65.020362403435854, 18.349943992889735 ], [ -65.020366091475012, 18.349823461064204 ], [ -65.020377489559166, 18.349673592563477 ], [ -65.020396265031252, 18.349582731379712 ], [ -65.020394757597671, 18.349447281069047 ], [ -65.020374639710667, 18.349385757870209 ], [ -65.020362403435854, 18.349311829448709 ], [ -65.020335078418384, 18.349188615412857 ], [ -65.020276403758317, 18.349119213221229 ], [ -65.020197110916172, 18.349042434951286 ], [ -65.020132402592594, 18.348983929239012 ], [ -65.020048080606159, 18.348884687457769 ], [ -65.019906092407894, 18.348713025998336 ], [ -65.019727388836714, 18.348505154699751 ], [ -65.019556397929819, 18.34832175857025 ], [ -65.019413068626363, 18.348205082421998 ], [ -65.019277112781936, 18.348132830381928 ], [ -65.019230844654203, 18.348102990792313 ], [ -65.019154235332053, 18.34803593553471 ], [ -65.019100423487828, 18.347983967710093 ], [ -65.019044095761785, 18.347956475054445 ], [ -65.018915349667168, 18.347938202496778 ], [ -65.018797164775663, 18.347902998486518 ], [ -65.01868401033812, 18.347870141410283 ], [ -65.018548054493692, 18.347800236304238 ], [ -65.018390474638295, 18.347726140244617 ], [ -65.018278996582239, 18.34762606027266 ], [ -65.018076823670867, 18.347498990559473 ], [ -65.017934666524752, 18.347473006647135 ], [ -65.017711709102912, 18.347388181746282 ], [ -65.017601403204196, 18.34737074737933 ], [ -65.017392189490806, 18.347394216719465 ], [ -65.017165376391631, 18.34741735078336 ], [ -65.017034451001166, 18.34744970494512 ], [ -65.016921127615831, 18.347451716602848 ], [ -65.016773438410951, 18.347414500934917 ], [ -65.016724151486926, 18.347389187575175 ], [ -65.016612002878276, 18.34725524469809 ], [ -65.01649700311151, 18.347118451972619 ], [ -65.016378985858125, 18.346976127188327 ], [ -65.01628192337273, 18.346836819890655 ], [ -65.016241187303763, 18.34678937829591 ], [ -65.016210341885255, 18.346722490676484 ], [ -65.016208162589407, 18.346633810098297 ], [ -65.016197098471878, 18.346567090116991 ], [ -65.01614529828538, 18.346491820590359 ], [ -65.016102215282388, 18.346433314878084 ], [ -65.016033316005178, 18.346352345654509 ], [ -65.016004649882575, 18.346302221849442 ], [ -65.015974139740365, 18.346253271511443 ], [ -65.015972798635232, 18.346224102474366 ], [ -65.015971289891922, 18.346190071931119 ], [ -65.015971457530043, 18.346167440781699 ], [ -65.01597011642491, 18.346130225113711 ], [ -65.015956705373412, 18.346099379695204 ], [ -65.015917980962115, 18.346069875381886 ], [ -65.015851596257107, 18.346020589767534 ], [ -65.01592183663945, 18.346056967244806 ], [ -65.016001297119715, 18.346088315577731 ], [ -65.015998447271272, 18.346133410238451 ], [ -65.01600716445472, 18.346149335862151 ], [ -65.016033818919652, 18.346197280371314 ], [ -65.016106909150437, 18.346244555637611 ], [ -65.0162063185698, 18.346305240645734 ], [ -65.01626046438065, 18.346321667874179 ], [ -65.01628980236552, 18.346321835512299 ], [ -65.016309751304675, 18.346312447776256 ], [ -65.01632349763247, 18.346275232108269 ], [ -65.016308745475783, 18.346216894034171 ], [ -65.016272703274808, 18.346158220683776 ], [ -65.016370267364948, 18.346154197368321 ], [ -65.01649063286203, 18.346151850434296 ], [ -65.016564896559828, 18.346125029640916 ], [ -65.0165853484134, 18.346096194570464 ], [ -65.016569421480028, 18.346061828750976 ], [ -65.016512425820736, 18.346043053278834 ], [ -65.01644553820131, 18.345984044652141 ], [ -65.016421733584821, 18.345902069599731 ], [ -65.016416369164233, 18.345814394850436 ], [ -65.016413184039493, 18.34580584661478 ], [ -65.01644721458274, 18.345866697951351 ], [ -65.016489124118721, 18.345920342157456 ], [ -65.016524494457428, 18.345948170089343 ], [ -65.016578475249503, 18.345979350784148 ], [ -65.016644357040093, 18.346021930872723 ], [ -65.016730355407958, 18.346066019704551 ], [ -65.016778299917121, 18.346099882609678 ], [ -65.016822890353751, 18.346149503500271 ], [ -65.016891790940633, 18.346219576244494 ], [ -65.016975945288891, 18.346296354514436 ], [ -65.017060267275326, 18.346364918515349 ], [ -65.017265959278006, 18.346494335162504 ], [ -65.017369893617627, 18.346548147006729 ], [ -65.017523619105361, 18.346590727095304 ], [ -65.017665776251476, 18.346611346586997 ], [ -65.017822015001684, 18.346606485080827 ], [ -65.017927290446437, 18.346588212523159 ], [ -65.017976577370462, 18.346591397647842 ], [ -65.018089565479499, 18.346622745980767 ], [ -65.018246642420422, 18.346612855330307 ], [ -65.01843808518089, 18.346641856729207 ], [ -65.018551239618432, 18.346651076827129 ], [ -65.018886683544565, 18.346731710774407 ], [ -65.019021801198278, 18.346780158197987 ], [ -65.019108971723483, 18.346799939499022 ], [ -65.019214080839788, 18.346791222315517 ], [ -65.019431004598118, 18.346830952555649 ], [ -65.019573329382354, 18.346836819890655 ], [ -65.019755216768601, 18.346876214854547 ], [ -65.019914137729131, 18.346994232107875 ], [ -65.020035507745376, 18.347112081723139 ], [ -65.020122009027659, 18.34723915143627 ], [ -65.020202642974937, 18.34745909268122 ], [ -65.020256454819162, 18.347606278971625 ], [ -65.020376148453977, 18.347925461997818 ], [ -65.020574129102044, 18.348151102939653 ], [ -65.020628946775162, 18.348175410470503 ], [ -65.020818714463815, 18.348169543135498 ], [ -65.020903202778698, 18.348225031361153 ], [ -65.02098618366, 18.348254703312648 ], [ -65.021141751857613, 18.348229222314728 ], [ -65.021343252906718, 18.348168704944783 ], [ -65.021433945142633, 18.348069966077958 ], [ -65.021494965427053, 18.347901825019505 ], [ -65.021598901076345, 18.34775799149196 ], [ -65.021702166173043, 18.347649026698377 ], [ -65.021795206652598, 18.347571074961422 ], [ -65.021862931153123, 18.34753805024701 ], [ -65.021896626420073, 18.34754257647694 ], [ -65.021969884288978, 18.347584150736623 ], [ -65.022006932318845, 18.347636956752012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_81", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.985212545555044, 18.370688538728132 ], [ -64.984929235782033, 18.370679487578002 ], [ -64.98462765476097, 18.370620980556112 ], [ -64.98432573846361, 18.370597678854097 ], [ -64.984134129374695, 18.370610251714879 ], [ -64.98400169524092, 18.370588123479877 ], [ -64.983898596472727, 18.370587286598834 ], [ -64.98380237348772, 18.370635900350919 ], [ -64.983647643480822, 18.370641767685925 ], [ -64.98343457539977, 18.370562811429807 ], [ -64.983323431310339, 18.370646293915854 ], [ -64.983227039377539, 18.37072290454762 ], [ -64.983116230564349, 18.370757270367164 ], [ -64.983034255511939, 18.370883335561132 ], [ -64.982974073418234, 18.371030520541865 ], [ -64.982967703168754, 18.37099313854543 ], [ -64.982952280459529, 18.370945695641012 ], [ -64.982941719256416, 18.37091233565036 ], [ -64.982929816948229, 18.370893727816394 ], [ -64.982910706199789, 18.37086942159516 ], [ -64.982888075050369, 18.370848465517497 ], [ -64.982854378473746, 18.370833210446392 ], [ -64.982825378384518, 18.370827343111387 ], [ -64.982780786638216, 18.370817787737167 ], [ -64.982725466050681, 18.37080001809386 ], [ -64.982688250382694, 18.370785936489767 ], [ -64.982635275419511, 18.370768166846517 ], [ -64.982513571436641, 18.370733968665149 ], [ -64.982434278594553, 18.370699938121902 ], [ -64.982375437605981, 18.37066825451268 ], [ -64.982326319629806, 18.370619639450922 ], [ -64.982270160851556, 18.370558117561757 ], [ -64.982189023989861, 18.370443451761616 ], [ -64.982138061994078, 18.370344377618494 ], [ -64.982112748634336, 18.370261732013489 ], [ -64.982090452761213, 18.370175064402702 ], [ -64.982085255978745, 18.370114713361204 ], [ -64.982084250149853, 18.370067943628726 ], [ -64.982097828839528, 18.369991165358783 ], [ -64.982116435363821, 18.369939028586316 ], [ -64.982165554649725, 18.369802235860789 ], [ -64.982194388410505, 18.369780442902083 ], [ -64.982239147794928, 18.369758817581499 ], [ -64.982284074817528, 18.369722104827986 ], [ -64.982318105360775, 18.369672651575513 ], [ -64.982341742339031, 18.369592689490446 ], [ -64.982358003239028, 18.369468803592383 ], [ -64.982381807855461, 18.369376602613158 ], [ -64.982364373488508, 18.36931323539477 ], [ -64.982288264461431, 18.36928104887113 ], [ -64.982222047394544, 18.369283060528858 ], [ -64.982173936556933, 18.369270487668018 ], [ -64.982108054766343, 18.36921416256132 ], [ -64.982009483537638, 18.369145263284111 ], [ -64.981948966167693, 18.369062113455016 ], [ -64.981834636953465, 18.369032107536952 ], [ -64.981675045440397, 18.368943425649093 ], [ -64.981555687081823, 18.368906043652657 ], [ -64.98144655465012, 18.368866313412525 ], [ -64.981341948448232, 18.368885087574995 ], [ -64.981196941453675, 18.368888775614153 ], [ -64.981061992747755, 18.368890116719285 ], [ -64.980962918604632, 18.3688554156235 ], [ -64.98089737209034, 18.36878199142609 ], [ -64.980859821146112, 18.368708733557185 ], [ -64.980800644881242, 18.368472531412237 ], [ -64.980715819980389, 18.368272539106499 ], [ -64.980613225436286, 18.368057962282137 ], [ -64.980546505454981, 18.367862999120689 ], [ -64.980451789903611, 18.367619085621186 ], [ -64.980425973629451, 18.367358911221686 ], [ -64.980450113522181, 18.367213232364861 ], [ -64.980496884564332, 18.367101754308749 ], [ -64.980545331987969, 18.367033525584191 ], [ -64.980617751666159, 18.366964123392563 ], [ -64.980684136371167, 18.366928081191588 ], [ -64.980760747002989, 18.366909304409774 ], [ -64.980821767287409, 18.366904947127694 ], [ -64.980892845860467, 18.366944342091585 ], [ -64.980963589157227, 18.366995807001786 ], [ -64.981025615270539, 18.367078284968613 ], [ -64.98110457283633, 18.367184064637456 ], [ -64.981126701071332, 18.367293699983634 ], [ -64.98115603774653, 18.367422781354549 ], [ -64.981165090206332, 18.367576002618136 ], [ -64.981169113521787, 18.367695024390741 ], [ -64.981175651409387, 18.367833662445491 ], [ -64.981192247585625, 18.367967436374727 ], [ -64.981219404964975, 18.368069864590382 ], [ -64.981264667263872, 18.368145469393312 ], [ -64.981317305641085, 18.368240686549427 ], [ -64.981382852155377, 18.368326183312547 ], [ -64.981481591022202, 18.368397429523725 ], [ -64.98164906152806, 18.368444871118527 ], [ -64.981893980856455, 18.368559200332697 ], [ -64.982096823010693, 18.368648216187182 ], [ -64.982366049869938, 18.368732873449915 ], [ -64.982651033405091, 18.36876908328901 ], [ -64.982899808410764, 18.36886832376058 ], [ -64.983042971385714, 18.368965721522216 ], [ -64.983132156187992, 18.369013667341108 ], [ -64.983151099298311, 18.369047696574683 ], [ -64.983179093558647, 18.36916923553872 ], [ -64.983208096267276, 18.369317092381721 ], [ -64.983250843993972, 18.369498141577253 ], [ -64.983300800160862, 18.369636944650836 ], [ -64.983359473511257, 18.369728307439289 ], [ -64.983403059428724, 18.369794693453969 ], [ -64.983474639606527, 18.369865101474488 ], [ -64.983510346531205, 18.369894436840013 ], [ -64.983554435363089, 18.369909188996644 ], [ -64.983674296636025, 18.369900808399166 ], [ -64.98382651338045, 18.369875661367871 ], [ -64.98387479316591, 18.369873314433846 ], [ -64.983974033637537, 18.369890413524558 ], [ -64.98409289039131, 18.369937016928588 ], [ -64.984303276261983, 18.370008095501646 ], [ -64.984452306571995, 18.370119071952956 ], [ -64.98456663447655, 18.370194844394064 ], [ -64.984668055553698, 18.370244297646536 ], [ -64.984747683672083, 18.370285201353681 ], [ -64.984860839419298, 18.370335995711287 ], [ -64.984960751753079, 18.370375725951419 ], [ -64.985010875558146, 18.370407912475059 ], [ -64.985042560477041, 18.370459712661557 ], [ -64.985074076448086, 18.370511346519606 ], [ -64.985102908899194, 18.370577059362347 ], [ -64.985115481760033, 18.370594996643774 ], [ -64.985170468380886, 18.370639756028197 ], [ -64.985212545555044, 18.370688538728132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_145", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.953749384427454, 18.343355478554258 ], [ -64.953702613385246, 18.343367883776864 ], [ -64.953632708279201, 18.343378612618096 ], [ -64.953478648824898, 18.343366207395434 ], [ -64.953330456705601, 18.343322621478023 ], [ -64.953180923481113, 18.343341061673868 ], [ -64.953014961718566, 18.343365873428809 ], [ -64.95287481753985, 18.343466287367391 ], [ -64.952725115367571, 18.343553125235701 ], [ -64.952577761439045, 18.343683212435451 ], [ -64.95252244085151, 18.343805754609036 ], [ -64.952487070512802, 18.343898627450471 ], [ -64.952426887109425, 18.343931987441124 ], [ -64.952351283616167, 18.343965347431777 ], [ -64.952291101522462, 18.344005076362237 ], [ -64.952227397718048, 18.344099791913607 ], [ -64.952197559438105, 18.344186294505562 ], [ -64.952138046587322, 18.344538500936437 ], [ -64.952110387603227, 18.344649645025925 ], [ -64.952036122595757, 18.344774201476582 ], [ -64.951890445048605, 18.344955081724265 ], [ -64.951829424764185, 18.345077457569403 ], [ -64.951797573516842, 18.34518742950155 ], [ -64.951772930709694, 18.34528700655909 ], [ -64.951697828821182, 18.345438717769696 ], [ -64.951613674472867, 18.345579198534381 ], [ -64.951523989375517, 18.345664526349708 ], [ -64.951450897835059, 18.345777849735043 ], [ -64.951383173334534, 18.345919168690443 ], [ -64.951344616561414, 18.346052273376756 ], [ -64.951272530849849, 18.346162243999231 ], [ -64.951220730663351, 18.346248410005217 ], [ -64.951086787786267, 18.346344801938017 ], [ -64.950975477368331, 18.346403307650291 ], [ -64.950929375569046, 18.346441361508994 ], [ -64.950838012780594, 18.346485617978999 ], [ -64.950688479556163, 18.346550158664456 ], [ -64.950594434557331, 18.346593074029329 ], [ -64.950536599397651, 18.346613693521022 ], [ -64.950487816697773, 18.346609167291149 ], [ -64.950463676805043, 18.346594079858164 ], [ -64.950446411385883, 18.346540938566534 ], [ -64.950437357616408, 18.346481427025424 ], [ -64.950470551278613, 18.346401295992564 ], [ -64.950559399494921, 18.346283446377356 ], [ -64.950664508611226, 18.346169955353844 ], [ -64.950783699331623, 18.346046908956168 ], [ -64.950879588349949, 18.345961748779018 ], [ -64.950995257359637, 18.345895028797713 ], [ -64.951071366386714, 18.345808695153551 ], [ -64.951105395620289, 18.345728564120691 ], [ -64.951121322553604, 18.345594956519903 ], [ -64.951186532481984, 18.345425139080078 ], [ -64.951240848550299, 18.345266553395845 ], [ -64.951349476757912, 18.345086677667325 ], [ -64.951458944465969, 18.34495726102017 ], [ -64.951555505346562, 18.344813427492625 ], [ -64.951649381397544, 18.344648137592287 ], [ -64.951698667011897, 18.344555432388972 ], [ -64.951733032831385, 18.344386285501685 ], [ -64.951723812733462, 18.344139689791859 ], [ -64.951713754444825, 18.343947408840677 ], [ -64.951734038660277, 18.343772060651759 ], [ -64.951764382473982, 18.343607103408374 ], [ -64.951778799354372, 18.343458912598749 ], [ -64.951832106974507, 18.343362519356276 ], [ -64.951868987366197, 18.343300828519318 ], [ -64.951951466642697, 18.343229248341459 ], [ -64.952107536445112, 18.343147942531971 ], [ -64.952306522922015, 18.343029088397543 ], [ -64.95241196862429, 18.342986339361119 ], [ -64.952561166572423, 18.342917272445845 ], [ -64.95272478009133, 18.342822390565971 ], [ -64.952858890606535, 18.342689956432253 ], [ -64.952921922548626, 18.342584510729978 ], [ -64.952954109072323, 18.342447047451913 ], [ -64.952978585551023, 18.342173966225005 ], [ -64.95300758564025, 18.341894681077065 ], [ -64.953035916486556, 18.341695862238282 ], [ -64.953077490746296, 18.341499055057227 ], [ -64.953027534579348, 18.341363100522472 ], [ -64.953006412173238, 18.341257153215452 ], [ -64.952949079927976, 18.341139471238364 ], [ -64.952908177530503, 18.341055484528226 ], [ -64.953081346423573, 18.341098064616801 ], [ -64.953219647892411, 18.341006534190171 ], [ -64.953301622944821, 18.340868231411719 ], [ -64.953465237773344, 18.340637730273386 ], [ -64.953684340827579, 18.340294407354463 ], [ -64.953815266218044, 18.340541169392736 ], [ -64.953933115833252, 18.340768654354179 ], [ -64.953995980137279, 18.340942830385814 ], [ -64.954034201634101, 18.341152714651741 ], [ -64.954067058710336, 18.341453791448714 ], [ -64.954062867756704, 18.341574324583917 ], [ -64.954006876616631, 18.34174564945738 ], [ -64.953948538542534, 18.341840533956599 ], [ -64.953890368106556, 18.34188244349258 ], [ -64.953736476290374, 18.341941115533302 ], [ -64.953652154303938, 18.341994927377527 ], [ -64.953604377432896, 18.342134403622993 ], [ -64.953576046586534, 18.34234814225664 ], [ -64.953574202566983, 18.34255349767335 ], [ -64.953581243369001, 18.34277394314239 ], [ -64.953608736024648, 18.342930852445136 ], [ -64.953641425462706, 18.343011486392413 ], [ -64.953671767966739, 18.343079547478908 ], [ -64.953726250363559, 18.343192200311648 ], [ -64.953749216789276, 18.343302506210421 ], [ -64.953749384427454, 18.343355478554258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_625", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.868336086774718, 18.341264696931944 ], [ -64.868299374021205, 18.341190768510444 ], [ -64.86826634930685, 18.341131089331157 ], [ -64.868235671526463, 18.341076270348424 ], [ -64.868219913540941, 18.341027321320041 ], [ -64.868205664298671, 18.340996475901534 ], [ -64.868216057863606, 18.340934617426399 ], [ -64.868240365394513, 18.340834537454441 ], [ -64.868300715126338, 18.340761279585536 ], [ -64.868350838931406, 18.340715345424371 ], [ -64.868414709064268, 18.340675616493911 ], [ -64.868477238091998, 18.340624989774426 ], [ -64.868536581994931, 18.340633539319754 ], [ -64.868586705799999, 18.340628342537343 ], [ -64.868655437439031, 18.340586935915724 ], [ -64.868847886028334, 18.340371856177001 ], [ -64.868987025687886, 18.340288706347906 ], [ -64.869065647977436, 18.340149400359905 ], [ -64.869200764321477, 18.340107993738343 ], [ -64.869241500390444, 18.34008905062808 ], [ -64.869265975559472, 18.3400602168673 ], [ -64.869301682484149, 18.339946725843788 ], [ -64.869328001672784, 18.339807586184293 ], [ -64.869367061360322, 18.33974203967 ], [ -64.869405953409739, 18.339690239483502 ], [ -64.869453897918902, 18.33966995526805 ], [ -64.869509553782734, 18.339642797888757 ], [ -64.869565377284687, 18.339614131766098 ], [ -64.869587002605272, 18.339585465643495 ], [ -64.869595384512479, 18.339559649369335 ], [ -64.869615836365995, 18.33953148616115 ], [ -64.869624385911379, 18.339479350698355 ], [ -64.869627068121645, 18.339413636545885 ], [ -64.869643999574237, 18.33932445305328 ], [ -64.869660931026772, 18.339253206842102 ], [ -64.86966160157931, 18.339179613696842 ], [ -64.869660260474177, 18.339096632815597 ], [ -64.869661098664892, 18.33900962861884 ], [ -64.869665792532942, 18.338936203111757 ], [ -64.869676856650415, 18.338828076508889 ], [ -64.86966311032262, 18.338777617427581 ], [ -64.869631259075277, 18.338707712321479 ], [ -64.869597563808327, 18.338635963195884 ], [ -64.869583817480532, 18.338579804417634 ], [ -64.869568059495009, 18.338494308964187 ], [ -64.869572753363002, 18.338463798821977 ], [ -64.869592869940277, 18.338475533492044 ], [ -64.869635114752555, 18.338518448856917 ], [ -64.869685238557622, 18.338561364221789 ], [ -64.869715413423535, 18.338580977884646 ], [ -64.869764531399767, 18.338606626520686 ], [ -64.869850529767632, 18.338636130834004 ], [ -64.869886907244847, 18.338642165807187 ], [ -64.869935522306605, 18.338652224095824 ], [ -64.869987825407577, 18.338675861074137 ], [ -64.870030070219855, 18.338701342072056 ], [ -64.870088408293952, 18.338752136429662 ], [ -64.87012260647532, 18.338780634914144 ], [ -64.870271301509035, 18.338891946641752 ], [ -64.87029745305955, 18.338907704627275 ], [ -64.870349923798585, 18.338933185625194 ], [ -64.870410441168588, 18.338951122906622 ], [ -64.87046291190768, 18.338968892549872 ], [ -64.87051923832405, 18.339009963895137 ], [ -64.87055142484769, 18.339035444893 ], [ -64.870600542823865, 18.339045670819814 ], [ -64.870614289151661, 18.33907232528469 ], [ -64.870611606941395, 18.339097806282609 ], [ -64.870619485934128, 18.339112223162999 ], [ -64.87066391004231, 18.339136865970147 ], [ -64.870708166512316, 18.339150779936119 ], [ -64.870756781574073, 18.339162682244307 ], [ -64.870799026386351, 18.339183469374177 ], [ -64.870903464950061, 18.339284890451324 ], [ -64.870949565439673, 18.33932780581614 ], [ -64.870965491063373, 18.339356974853217 ], [ -64.870973202417986, 18.33939184358718 ], [ -64.870963647043766, 18.339431573827312 ], [ -64.870962305938633, 18.339486391500373 ], [ -64.870943698104668, 18.339556464244595 ], [ -64.870929951776816, 18.33960859970739 ], [ -64.87092408444181, 18.339683198681428 ], [ -64.870917043639736, 18.339787637245138 ], [ -64.870897932891353, 18.339887884855273 ], [ -64.870872954807851, 18.339972877394302 ], [ -64.870851497125443, 18.340020318989048 ], [ -64.870835236225503, 18.340123248809448 ], [ -64.870816125477063, 18.340223664057703 ], [ -64.870757452126668, 18.340326426239983 ], [ -64.870718727715371, 18.340413933351158 ], [ -64.870657875069128, 18.340514180961236 ], [ -64.870624515078475, 18.340559443260133 ], [ -64.870592831469253, 18.340595485461108 ], [ -64.870579588055875, 18.340624151583711 ], [ -64.870555280525025, 18.340709647037158 ], [ -64.870533319928143, 18.340792460280284 ], [ -64.870527117316783, 18.340826323185354 ], [ -64.870517394304443, 18.340846941367431 ], [ -64.870503480338527, 18.340865550511069 ], [ -64.870481016827227, 18.340891199147109 ], [ -64.870466935223135, 18.340912992105814 ], [ -64.870456038743725, 18.340946352096466 ], [ -64.870436760357165, 18.341033691569521 ], [ -64.87041630850365, 18.341154223395051 ], [ -64.870389486400597, 18.341248771308244 ], [ -64.870362496659425, 18.341362597608054 ], [ -64.870356629324363, 18.341535263586707 ], [ -64.870362999573842, 18.341639703460089 ], [ -64.87038110449339, 18.341710279118672 ], [ -64.870426366792287, 18.341815220596857 ], [ -64.870454362362295, 18.34188696841278 ], [ -64.870458050401453, 18.341943799053297 ], [ -64.870447824474695, 18.342017558526948 ], [ -64.870422511114953, 18.34212786442572 ], [ -64.870407591320145, 18.342180167526635 ], [ -64.870367693441835, 18.342262311526895 ], [ -64.870349756160465, 18.34231142950307 ], [ -64.870338859681112, 18.342345795322615 ], [ -64.87032963958319, 18.34247336664049 ], [ -64.870337015661505, 18.342543271746536 ], [ -64.870341541891378, 18.342637988607578 ], [ -64.870357802791375, 18.342771428570188 ], [ -64.87037171675729, 18.342877040600911 ], [ -64.870397533031507, 18.342964715350263 ], [ -64.870427204983002, 18.343029254725991 ], [ -64.870466097032363, 18.343117936613851 ], [ -64.870128138534085, 18.343363692823289 ], [ -64.870116571502138, 18.343526804737394 ], [ -64.870093102162002, 18.343658065404156 ], [ -64.870120427179472, 18.343770384270329 ], [ -64.87022033951331, 18.343914216488201 ], [ -64.870298291250265, 18.344036593642954 ], [ -64.870376578263517, 18.344106832715624 ], [ -64.870477161149893, 18.344165673704197 ], [ -64.870563662432176, 18.344222504344657 ], [ -64.870607918902238, 18.34426340674213 ], [ -64.870641949445428, 18.344308167436282 ], [ -64.870690061592768, 18.344352925511032 ], [ -64.870746555647315, 18.344384441482134 ], [ -64.870800870405958, 18.344409922479997 ], [ -64.870924587356228, 18.344432050715 ], [ -64.871099601578578, 18.344447473424225 ], [ -64.871240585257681, 18.34446256085721 ], [ -64.871372013562564, 18.344463566686102 ], [ -64.871488688401143, 18.344478486480909 ], [ -64.871721705421294, 18.344518551997282 ], [ -64.871867551916239, 18.344551241435397 ], [ -64.871969308269627, 18.344593990471765 ], [ -64.872066203116844, 18.344655178394362 ], [ -64.872139124399837, 18.344656685827943 ], [ -64.872237696938157, 18.344508828984942 ], [ -64.872292346973154, 18.344383770929539 ], [ -64.872405167444015, 18.344287043720442 ], [ -64.872469371543502, 18.344189982544719 ], [ -64.872494852541422, 18.344055535443601 ], [ -64.872515473342787, 18.343920923323594 ], [ -64.872576325989087, 18.343647336562924 ], [ -64.872621754616432, 18.343459918427641 ], [ -64.872720159516632, 18.343340895345364 ], [ -64.872896682482235, 18.343184321318859 ], [ -64.873044036410818, 18.343041493620206 ], [ -64.87319105375343, 18.342926492543711 ], [ -64.873320470400586, 18.342903527427666 ], [ -64.873400601433445, 18.342917607722086 ], [ -64.873442678607603, 18.342925654352996 ], [ -64.87351090864189, 18.342916603202923 ], [ -64.873647364781391, 18.342915763702536 ], [ -64.873715593506006, 18.342916435564746 ], [ -64.873774937408996, 18.342899670440715 ], [ -64.873867473664461, 18.342865807535588 ], [ -64.873965878564661, 18.342847536287593 ], [ -64.874084397422791, 18.342831275387596 ], [ -64.874208784925656, 18.342824568552203 ], [ -64.874283383899751, 18.342792549666683 ], [ -64.874321437758454, 18.342798753587658 ], [ -64.874353290315469, 18.342816186644995 ], [ -64.874387151910867, 18.342856756385515 ], [ -64.874428727480279, 18.342918279584353 ], [ -64.874442304860281, 18.342964378764293 ], [ -64.874415316428724, 18.343058088486771 ], [ -64.874396708594759, 18.343128831783531 ], [ -64.874349265690341, 18.343276353350291 ], [ -64.874318421581506, 18.343364195737706 ], [ -64.874291430530661, 18.343465450486349 ], [ -64.874268631743064, 18.343545412571359 ], [ -64.874258239487801, 18.343585479397461 ], [ -64.874299644799692, 18.343675836357079 ], [ -64.874382122766576, 18.343860404643976 ], [ -64.874413806375799, 18.343915557593334 ], [ -64.874457559931386, 18.343950258689119 ], [ -64.874561830856919, 18.343985296370931 ], [ -64.874589492460359, 18.344006920381844 ], [ -64.874627546319061, 18.344018822690032 ], [ -64.874681524491734, 18.344034580675554 ], [ -64.874695438457707, 18.344053860371787 ], [ -64.874689069517899, 18.344088224881659 ], [ -64.874678339366994, 18.344162823855754 ], [ -64.874657719875302, 18.344222001430239 ], [ -64.874629053752642, 18.344296600404334 ], [ -64.874612123609779, 18.344393996856297 ], [ -64.874584798592309, 18.344535652397667 ], [ -64.874567865830102, 18.344635060507414 ], [ -64.874565352567629, 18.34484812858841 ], [ -64.874580773967182, 18.344924571582055 ], [ -64.874602734564064, 18.34503638753381 ], [ -64.874618158582962, 18.345109142488297 ], [ -64.874688397655632, 18.34519715251389 ], [ -64.87473382759265, 18.34523688144435 ], [ -64.874774898937972, 18.345246101542273 ], [ -64.87498763174267, 18.34528499359169 ], [ -64.875147727479884, 18.345321203430785 ], [ -64.875255349858662, 18.345341822922478 ], [ -64.875369511434712, 18.345380044419301 ], [ -64.875499263358165, 18.345425306718198 ], [ -64.87554167580862, 18.345445255657353 ], [ -64.875569336102387, 18.345455147617486 ], [ -64.875633876787788, 18.345465539872748 ], [ -64.875742171028833, 18.345484650621188 ], [ -64.875775867605455, 18.345489176851061 ], [ -64.875805036642475, 18.345500577554503 ], [ -64.875828504672995, 18.345499402777875 ], [ -64.875916849974885, 18.345472077760405 ], [ -64.875985916890215, 18.345458666708851 ], [ -64.876019779795286, 18.345440729427423 ], [ -64.876120697957958, 18.345399490444038 ], [ -64.876310296698819, 18.345354731059558 ], [ -64.876413058881099, 18.345345847547605 ], [ -64.876493692828376, 18.345332436496108 ], [ -64.876526046990193, 18.34533310573903 ], [ -64.876611039529166, 18.345343500613581 ], [ -64.876678430063066, 18.345346852066825 ], [ -64.876725368743394, 18.34534165659403 ], [ -64.876757722905154, 18.345329250061695 ], [ -64.876791585810281, 18.345309971675135 ], [ -64.876810193644246, 18.345287675801956 ], [ -64.876838524490609, 18.34524174295052 ], [ -64.876862664383339, 18.345160773726946 ], [ -64.876935251699706, 18.345066059485305 ], [ -64.876971293900624, 18.344971174986085 ], [ -64.877019070771667, 18.344877969487698 ], [ -64.877118144914789, 18.344796160763792 ], [ -64.877192240974409, 18.344697421896967 ], [ -64.877279077533046, 18.344585774893062 ], [ -64.877346132790649, 18.344470104573702 ], [ -64.877412852771954, 18.344386620777982 ], [ -64.877486781193454, 18.344319900796677 ], [ -64.877579988001514, 18.344230214389654 ], [ -64.877715439621852, 18.344001723599376 ], [ -64.877877378068945, 18.343851184546054 ], [ -64.877918952328685, 18.343782620545142 ], [ -64.877943595135832, 18.343647336562924 ], [ -64.87796153241726, 18.343443823856148 ], [ -64.877990869092457, 18.343281717770878 ], [ -64.878026240740837, 18.343102346266448 ], [ -64.878039987068632, 18.343032441160403 ], [ -64.878037807772785, 18.342946275154418 ], [ -64.877980140251225, 18.34267604246628 ], [ -64.877903529619402, 18.34252617265588 ], [ -64.877793894273225, 18.342183855565793 ], [ -64.877788865128935, 18.3420753949963 ], [ -64.877779645031012, 18.34197565030064 ], [ -64.877752320013542, 18.341838857575112 ], [ -64.877757349157832, 18.341697538619769 ], [ -64.877768245637242, 18.341605337640544 ], [ -64.877787859300042, 18.341585387391717 ], [ -64.87787637224011, 18.341503748925277 ], [ -64.877923813834855, 18.341474412250079 ], [ -64.877950803576027, 18.341469718382029 ], [ -64.877971758344017, 18.341479609032547 ], [ -64.877977290402782, 18.341502909424889 ], [ -64.877977960955377, 18.341529397561317 ], [ -64.877962873522392, 18.341625620546324 ], [ -64.877958179654343, 18.341659149484769 ], [ -64.877978799146092, 18.341770461212377 ], [ -64.877994892407912, 18.341849586416345 ], [ -64.8780227203398, 18.341935752422387 ], [ -64.878054068672725, 18.342013201244924 ], [ -64.87808709338708, 18.342072880424155 ], [ -64.878139564126172, 18.342130211359745 ], [ -64.878201254963187, 18.342199110636898 ], [ -64.878267974944492, 18.342262311526895 ], [ -64.878308040460865, 18.34230438739138 ], [ -64.878478025538925, 18.342483089652831 ], [ -64.878548601197508, 18.342519299491983 ], [ -64.878656224885958, 18.34256992752114 ], [ -64.878823192477398, 18.342662128500308 ], [ -64.878926792850393, 18.342753657617266 ], [ -64.879051683267676, 18.342777631181548 ], [ -64.879212783524054, 18.342887769442143 ], [ -64.879227368042564, 18.342914591545195 ], [ -64.879226865128146, 18.342975107605525 ], [ -64.879181770467426, 18.343012155635336 ], [ -64.879114715209823, 18.343018693522936 ], [ -64.879067776529496, 18.343055741552746 ], [ -64.879039110406893, 18.343126652487683 ], [ -64.878914722904028, 18.343249197280613 ], [ -64.878841297396946, 18.343352628705759 ], [ -64.878781115303241, 18.343425217331799 ], [ -64.878607777462378, 18.343829560535141 ], [ -64.878341232813398, 18.344349069833697 ], [ -64.878160183617865, 18.344584433787873 ], [ -64.878079214394347, 18.344669258688782 ], [ -64.877628770701392, 18.345006211358225 ], [ -64.877550651326317, 18.345131939966222 ], [ -64.877538078465477, 18.345226990793833 ], [ -64.87746213838625, 18.345363615881183 ], [ -64.877414193877087, 18.345461182590668 ], [ -64.877382677906041, 18.345545000353013 ], [ -64.877362896605007, 18.345626640129126 ], [ -64.877319813602014, 18.345693527748608 ], [ -64.877258290403176, 18.345845575545184 ], [ -64.877222415840322, 18.345926544768759 ], [ -64.877185200172391, 18.345993767664481 ], [ -64.877123341697256, 18.346022601425261 ], [ -64.877011527055174, 18.346068031362279 ], [ -64.876951009685229, 18.346110946727151 ], [ -64.876877081263729, 18.346177499070336 ], [ -64.876834501175153, 18.346188395549689 ], [ -64.876730062611443, 18.346208512126964 ], [ -64.876590756623443, 18.346247236538261 ], [ -64.876435187116101, 18.346316806368009 ], [ -64.876363940904923, 18.346366091982304 ], [ -64.876273919221603, 18.346433147239907 ], [ -64.876168977743475, 18.346478577176981 ], [ -64.875940654591318, 18.346592403476734 ], [ -64.875870078932678, 18.346654094313749 ], [ -64.875802353122538, 18.346728358011489 ], [ -64.87566874552175, 18.346867832947339 ], [ -64.875621806841423, 18.346908401378187 ], [ -64.875582579515765, 18.346919633133837 ], [ -64.87549859280557, 18.346930529613189 ], [ -64.875435897449393, 18.346939749711112 ], [ -64.875385269420235, 18.34698216216151 ], [ -64.875353250534772, 18.347008984264562 ], [ -64.875241269564242, 18.347145776990089 ], [ -64.875140014815599, 18.347289778155755 ], [ -64.87508285151813, 18.347347278039138 ], [ -64.875022332838512, 18.347434114597775 ], [ -64.874919403018055, 18.34758465365104 ], [ -64.87488805468513, 18.347669310913773 ], [ -64.874852850674927, 18.347737874914685 ], [ -64.87483021952545, 18.347753632900208 ], [ -64.874715722673102, 18.34785421578664 ], [ -64.874683871425759, 18.347861088950538 ], [ -64.874627209733092, 18.347908530545283 ], [ -64.874492262336844, 18.34802939764711 ], [ -64.874450183853014, 18.348155461531405 ], [ -64.874449010386002, 18.348272975870316 ], [ -64.874481533495612, 18.348390657847403 ], [ -64.874536852773474, 18.348458886572018 ], [ -64.874607094465489, 18.348530970973968 ], [ -64.874766015426019, 18.348692406506643 ], [ -64.874879840416099, 18.348809417931136 ], [ -64.874981596769487, 18.348942857893746 ], [ -64.875053179566635, 18.349036567616224 ], [ -64.875119562962027, 18.349126086385127 ], [ -64.875166166366057, 18.349255838308579 ], [ -64.875190810482877, 18.349294059805459 ], [ -64.875179409779435, 18.349313505830139 ], [ -64.875158622649565, 18.349338316275464 ], [ -64.875114701455857, 18.349362959082612 ], [ -64.875037924495587, 18.349385422593912 ], [ -64.87498327446059, 18.349391122290797 ], [ -64.874864752983115, 18.349366144207352 ], [ -64.874797697725512, 18.349360276872289 ], [ -64.874647661586664, 18.349358265214562 ], [ -64.874204930558051, 18.349251144440586 ], [ -64.873705367579248, 18.349033550129661 ], [ -64.873364057627725, 18.348826014107374 ], [ -64.873087957604525, 18.348645635464436 ], [ -64.872793920299955, 18.348478835511173 ], [ -64.872170306404314, 18.348172895898358 ], [ -64.872143315353412, 18.348159820123158 ], [ -64.872113309435349, 18.348147917814913 ], [ -64.872052121512752, 18.348131992191213 ], [ -64.871881465882211, 18.348062589999586 ], [ -64.871755401997916, 18.347979776756461 ], [ -64.871658507150642, 18.347896292960741 ], [ -64.871583740538426, 18.34781582665164 ], [ -64.871186941051576, 18.347576774658307 ], [ -64.871037743103443, 18.34749949347389 ], [ -64.870905979522263, 18.347453560622455 ], [ -64.870768516244141, 18.347405448475115 ], [ -64.870588975791918, 18.347362030195825 ], [ -64.870496607174573, 18.347365550596862 ], [ -64.87036685525112, 18.347368735721602 ], [ -64.87023509166994, 18.347375944161797 ], [ -64.870131658935122, 18.34737728526693 ], [ -64.87002621454252, 18.34738063802979 ], [ -64.869960500390107, 18.347363203662837 ], [ -64.86988808071186, 18.347347948591732 ], [ -64.869760340446135, 18.347332861158804 ], [ -64.869650872738134, 18.347342751809265 ], [ -64.869556827739359, 18.347309559456789 ], [ -64.869510224335329, 18.347307380160885 ], [ -64.869470829371437, 18.34733369934952 ], [ -64.869446857116884, 18.347392205061738 ], [ -64.869446689478707, 18.347422547565827 ], [ -64.869367899551037, 18.347498990559473 ], [ -64.869139576398936, 18.34755079074597 ], [ -64.868854591554111, 18.347636789113835 ], [ -64.868715284256439, 18.347695630102407 ], [ -64.868622245086556, 18.34775799149196 ], [ -64.868499701603298, 18.347801074494953 ], [ -64.86832418446653, 18.347840637096965 ], [ -64.868144979290548, 18.347930658780285 ], [ -64.868025788570208, 18.347982291328663 ], [ -64.867883128509618, 18.34801498076672 ], [ -64.867790424616032, 18.348034594429578 ], [ -64.867715825641937, 18.34803576789659 ], [ -64.867640220839007, 18.348020512825485 ], [ -64.867722698805835, 18.347985476453346 ], [ -64.86780534441084, 18.347950440081263 ], [ -64.867865694142665, 18.347886737586578 ], [ -64.867918667796175, 18.34781582665164 ], [ -64.867934258143578, 18.347730163560072 ], [ -64.867942640050785, 18.347630418864355 ], [ -64.867980861547608, 18.347552131851103 ], [ -64.867981532100146, 18.347466468759535 ], [ -64.867989746369233, 18.347380973306088 ], [ -64.868005504354755, 18.34729531021452 ], [ -64.86802126364995, 18.347209814761072 ], [ -64.86805931619898, 18.347131695385997 ], [ -64.868082450262875, 18.347046199932549 ], [ -64.868090664531906, 18.346960536840982 ], [ -64.868210861081138, 18.346904545700852 ], [ -64.868285962969651, 18.346862300888574 ], [ -64.868346312701533, 18.346798430755712 ], [ -64.868436166746676, 18.346777811264019 ], [ -64.868518141799086, 18.346814188741234 ], [ -64.868562398269148, 18.346885937866887 ], [ -64.868569103794869, 18.346971600958454 ], [ -64.868597769917528, 18.34703345943359 ], [ -64.868661975326688, 18.347044188274822 ], [ -64.868697346975068, 18.347015019237745 ], [ -64.868756020325463, 18.346958860459495 ], [ -64.868838498292291, 18.346931032527607 ], [ -64.868943272132299, 18.346924662278127 ], [ -64.869025247184709, 18.346953998953325 ], [ -64.869114765953611, 18.346961877946114 ], [ -64.869189867842124, 18.346919633133837 ], [ -64.869243009133754, 18.346841513758704 ], [ -64.869281062992457, 18.346763226745452 ], [ -64.869341412724282, 18.346699524250766 ], [ -64.869409138534479, 18.346643030196219 ], [ -64.869469655904481, 18.346572119261282 ], [ -64.869537381714622, 18.346515625206791 ], [ -64.869605107524819, 18.346458963514124 ], [ -64.86963578530515, 18.346380676500871 ], [ -64.869636623495865, 18.346295013409247 ], [ -64.869622374253652, 18.346209351627351 ], [ -64.869630588522682, 18.346123687226111 ], [ -64.869713066489567, 18.346095860603896 ], [ -64.86980292053471, 18.346089489044743 ], [ -64.869877184232507, 18.346132908633706 ], [ -64.869898809553092, 18.346218738053778 ], [ -64.869965697172574, 18.346276405575281 ], [ -64.870039960870315, 18.346319823854571 ], [ -64.870129479639218, 18.346348992891649 ], [ -64.870219166046297, 18.346349831082364 ], [ -64.8703086848152, 18.346364750877171 ], [ -64.870352941285205, 18.346436500002824 ], [ -64.870367022889297, 18.346522330732512 ], [ -64.870418823075795, 18.346594079858164 ], [ -64.870493924964308, 18.346544794243812 ], [ -64.870583779009451, 18.346524007113999 ], [ -64.87067346541653, 18.346531886106732 ], [ -64.870755943383358, 18.346504058174844 ], [ -64.870719230629845, 18.346425268247174 ], [ -64.870629879499063, 18.346395931571976 ], [ -64.870547904446653, 18.346359554094704 ], [ -64.870503647976648, 18.346287804969108 ], [ -64.87048202134639, 18.346201974239364 ], [ -64.87049023692515, 18.346116478785916 ], [ -64.870558130373468, 18.346059817093249 ], [ -64.870640608340295, 18.346031989161361 ], [ -64.870730462385495, 18.346018410471686 ], [ -64.870819813516221, 18.346040538706688 ], [ -64.870894244852138, 18.346091165426174 ], [ -64.870984098897338, 18.346070545934481 ], [ -64.871051823397863, 18.346013884241813 ], [ -64.871075126409551, 18.345928388788366 ], [ -64.871150228298063, 18.345871894733818 ], [ -64.871180906078393, 18.345793775358686 ], [ -64.871099097354488, 18.345743148639201 ], [ -64.871024834966363, 18.345699562721791 ], [ -64.870950403630388, 18.345656144442501 ], [ -64.870883683649083, 18.345598476920941 ], [ -64.870839427179078, 18.345526727795345 ], [ -64.870825177936865, 18.345441064703721 ], [ -64.87080355261628, 18.345355233974033 ], [ -64.870804390806995, 18.345269570882408 ], [ -64.870790141564726, 18.34518374015272 ], [ -64.870768516244141, 18.345097909422975 ], [ -64.870769354434913, 18.34501224764108 ], [ -64.870755105192643, 18.344926584549455 ], [ -64.87066541878562, 18.344918705556722 ], [ -64.870590316897108, 18.34496078142115 ], [ -64.870515215008595, 18.345003027543157 ], [ -64.870447489198398, 18.345059687926152 ], [ -64.870357635153198, 18.345066059485305 ], [ -64.870267781108055, 18.345086677667325 ], [ -64.870214807454545, 18.345164797042401 ], [ -64.870154290084542, 18.345235707977338 ], [ -64.87013869973714, 18.345321203430785 ], [ -64.870137861546425, 18.345406866522353 ], [ -64.870099807687723, 18.345485153535606 ], [ -64.870061753829077, 18.345563272910738 ], [ -64.870008780175567, 18.345634183845618 ], [ -64.869926134570562, 18.345669220217701 ], [ -64.869836448163539, 18.345668549665163 ], [ -64.869746929394637, 18.345653463541851 ], [ -64.869657242987614, 18.345645584549118 ], [ -64.869567556580535, 18.345644912686851 ], [ -64.869470326457019, 18.345651282936331 ], [ -64.869380640049997, 18.34565765318581 ], [ -64.869290786004797, 18.345664023435234 ], [ -64.869201099597774, 18.345677602124908 ], [ -64.869096325757766, 18.345683972374388 ], [ -64.868999095634251, 18.345697383425886 ], [ -64.868909409227228, 18.345696712873348 ], [ -64.868819555182029, 18.345703083122828 ], [ -64.868729868775006, 18.345709453372308 ], [ -64.868647223170001, 18.345744489744391 ], [ -64.868557369124801, 18.345765109236083 ], [ -64.868467682717778, 18.345764438683489 ], [ -64.868378163948876, 18.345742310448486 ], [ -64.868288812818093, 18.345705932971271 ], [ -64.868199294049248, 18.345683804736268 ], [ -64.868109607642168, 18.345690174985748 ], [ -64.868019753597025, 18.345703753675366 ], [ -64.867929899551825, 18.345724373167116 ], [ -64.867840045506625, 18.34573795185679 ], [ -64.867750191461425, 18.345751530546409 ], [ -64.867667713494598, 18.345779358478353 ], [ -64.867577859449398, 18.345799977970046 ], [ -64.867502925199062, 18.345843396249336 ], [ -64.867474091438282, 18.345847251926671 ], [ -64.867374682018863, 18.345846581374076 ], [ -64.867282313401518, 18.345839037657584 ], [ -64.867197320862545, 18.345817916561145 ], [ -64.867133450729682, 18.345810706811278 ], [ -64.867110651942085, 18.345810371534981 ], [ -64.867011242522722, 18.345802827818488 ], [ -64.867123392441044, 18.345786902194789 ], [ -64.867177205594942, 18.345771479485563 ], [ -64.867214587591377, 18.345748680697966 ], [ -64.867237051102677, 18.345724205528938 ], [ -64.867276110790215, 18.345704927142378 ], [ -64.86735389488905, 18.345700234584058 ], [ -64.86742631456724, 18.345695539406336 ], [ -64.86750979836296, 18.345675087552763 ], [ -64.867613901650373, 18.345642230476528 ], [ -64.867745665231553, 18.345613229077628 ], [ -64.867792100997463, 18.345599147473536 ], [ -64.867855971130325, 18.345579869086976 ], [ -64.867929731913648, 18.345551539550286 ], [ -64.867985555415601, 18.345539803570546 ], [ -64.86803199118151, 18.345537121360223 ], [ -64.868124359798855, 18.345539469603921 ], [ -64.868213878567758, 18.345532595130351 ], [ -64.868308091204653, 18.345519686993271 ], [ -64.868386378217906, 18.34550342609333 ], [ -64.868455109856939, 18.345490351627745 ], [ -64.868528535364021, 18.345477274542816 ], [ -64.868621071619543, 18.345473418865538 ], [ -64.868731377518259, 18.345463695853198 ], [ -64.868837660101576, 18.345444920381055 ], [ -64.868902368425154, 18.345444249828461 ], [ -64.868980823076527, 18.34542949767183 ], [ -64.869075370989776, 18.345420780488325 ], [ -64.869184503421536, 18.345391779089425 ], [ -64.869228089338947, 18.345392282003843 ], [ -64.869402265370582, 18.34538792341209 ], [ -64.869469655904481, 18.345355067645528 ], [ -64.869538387543514, 18.345309468760718 ], [ -64.869587505519689, 18.34524325169383 ], [ -64.869605610439237, 18.345161445589213 ], [ -64.869616004004172, 18.34498173749887 ], [ -64.86958448803307, 18.344888864657378 ], [ -64.8695346995043, 18.34475056449827 ], [ -64.869499830770394, 18.344621984732157 ], [ -64.869406288686037, 18.344504136426622 ], [ -64.869238818180179, 18.344331635466745 ], [ -64.869124824242249, 18.344203224648425 ], [ -64.869107892789714, 18.344156788882572 ], [ -64.869099510882506, 18.344124602358931 ], [ -64.869043855018674, 18.344087386690944 ], [ -64.868986858049709, 18.344056038358019 ], [ -64.868969758959054, 18.344035755452239 ], [ -64.868968585492041, 18.344022678367367 ], [ -64.868980152523989, 18.343987140390482 ], [ -64.869029438138284, 18.343886388556257 ], [ -64.869061792300101, 18.343827379929621 ], [ -64.869068833102176, 18.343792846471956 ], [ -64.869057768984646, 18.343774910500201 ], [ -64.869034299644511, 18.343758145376114 ], [ -64.868985014030159, 18.343717241668969 ], [ -64.868927681784896, 18.343593358390251 ], [ -64.868902368425154, 18.343495791680766 ], [ -64.868905385911773, 18.343294627217631 ], [ -64.868954000973531, 18.343004276642546 ], [ -64.868978979056976, 18.342852230155643 ], [ -64.868903374254046, 18.342663300657648 ], [ -64.868820561010864, 18.342497003618803 ], [ -64.868691312001886, 18.34213323015598 ], [ -64.868445889759073, 18.341839863404005 ], [ -64.868352347674715, 18.341661999333212 ], [ -64.868336757327313, 18.341607014021974 ], [ -64.868335919136598, 18.341557056545412 ], [ -64.868336086774718, 18.341264696931944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_161", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.874409615422167, 18.325079907300676 ], [ -64.874407603764439, 18.325128522362434 ], [ -64.874401065876839, 18.325189876613479 ], [ -64.874394864575152, 18.325206975704134 ], [ -64.874365861866579, 18.325246873582387 ], [ -64.874310207312476, 18.325283587645629 ], [ -64.874281539880144, 18.325299010354854 ], [ -64.874156984739159, 18.325342259686352 ], [ -64.874093617520714, 18.325387523294921 ], [ -64.874019690408886, 18.325462625183434 ], [ -64.873914078378164, 18.325548957517924 ], [ -64.873871664618093, 18.325608805645004 ], [ -64.873835288450493, 18.325668483514562 ], [ -64.873802766650556, 18.325748614547422 ], [ -64.873770578817243, 18.325823382469309 ], [ -64.873726826571328, 18.325900328377372 ], [ -64.873679217338463, 18.325973752574782 ], [ -64.873628086394831, 18.326036115274064 ], [ -64.873602437758791, 18.326084227421347 ], [ -64.873564048623848, 18.326129992634662 ], [ -64.873537060192348, 18.326169555236675 ], [ -64.873503363615725, 18.32621967773207 ], [ -64.873489449649753, 18.32625672576188 ], [ -64.873471847644623, 18.326301149870005 ], [ -64.873448882528578, 18.326359990858577 ], [ -64.873422898616241, 18.326423022800725 ], [ -64.873400098519028, 18.326468452737743 ], [ -64.873367075114288, 18.326530143574757 ], [ -64.87334712617519, 18.32656886929567 ], [ -64.87332264969649, 18.326631901237818 ], [ -64.873306725382463, 18.326682861923928 ], [ -64.873297840560838, 18.326729800604255 ], [ -64.87329750528454, 18.32676601044335 ], [ -64.87330538427733, 18.326822504497841 ], [ -64.873341257530456, 18.326906155931738 ], [ -64.873379983251425, 18.326975056518563 ], [ -64.873463633375593, 18.327064407649345 ], [ -64.873532029738328, 18.327134814360136 ], [ -64.87359774520047, 18.327181082487868 ], [ -64.873691622561068, 18.327218130517736 ], [ -64.873774603442371, 18.327240258752738 ], [ -64.873883903512251, 18.327284179946446 ], [ -64.873979120668366, 18.327340003448398 ], [ -64.874018012717784, 18.327391468358599 ], [ -64.874070986371294, 18.327445615479121 ], [ -64.874133850675321, 18.327502612448086 ], [ -64.874183806842211, 18.327570170620106 ], [ -64.874218341609549, 18.327657845369401 ], [ -64.874259076368844, 18.327720040430506 ], [ -64.874271481591506, 18.327753734387784 ], [ -64.874268128828646, 18.327820958593179 ], [ -64.874271147624881, 18.327939143484741 ], [ -64.874266118480591, 18.328039892699621 ], [ -64.874258239487801, 18.328136619908662 ], [ -64.874265949532742, 18.328214571645617 ], [ -64.874303166510401, 18.328270059871329 ], [ -64.874353121367619, 18.328344323569127 ], [ -64.874413135823204, 18.328412049379267 ], [ -64.874484383344054, 18.328456976401867 ], [ -64.874610279590229, 18.328518499600705 ], [ -64.874716897449787, 18.328559738584147 ], [ -64.874816474507327, 18.328584716667592 ], [ -64.874954105423569, 18.328631487709799 ], [ -64.875133476927942, 18.328700051710655 ], [ -64.875290553868922, 18.328759227975524 ], [ -64.875415948510295, 18.328817902635592 ], [ -64.875454503973742, 18.328841203027935 ], [ -64.875499430996342, 18.328864337091773 ], [ -64.87553714957869, 18.328892835576255 ], [ -64.875573359417842, 18.328921501698915 ], [ -64.875607892875507, 18.328950503097815 ], [ -64.875651646431095, 18.32899325082451 ], [ -64.875659860700125, 18.329012193934773 ], [ -64.875641588142457, 18.329016049612108 ], [ -64.875592471475898, 18.329002135646135 ], [ -64.875558774899275, 18.328990568614245 ], [ -64.87549557662868, 18.328965087616325 ], [ -64.875453499454522, 18.328963411234895 ], [ -64.875383760676982, 18.328966428721458 ], [ -64.875336654358478, 18.32897061967509 ], [ -64.875242441721582, 18.328960393748275 ], [ -64.875169351490797, 18.328950335459638 ], [ -64.875108666482674, 18.328958046814307 ], [ -64.875029708916827, 18.328989562785353 ], [ -64.874946560397404, 18.328994256653402 ], [ -64.87486072966766, 18.328989562785353 ], [ -64.874733158349784, 18.32894010953288 ], [ -64.874630731443801, 18.328904402608202 ], [ -64.874463594904569, 18.328866684025797 ], [ -64.874319090824429, 18.328817230773325 ], [ -64.874152290871109, 18.328775488875465 ], [ -64.874028910506809, 18.328736764464225 ], [ -64.873984149812713, 18.328704242664287 ], [ -64.873966212531286, 18.328651605596747 ], [ -64.873951292736479, 18.328601815758304 ], [ -64.873949113440631, 18.328523864021349 ], [ -64.873958167210048, 18.32846351559914 ], [ -64.873955652637903, 18.328423113496797 ], [ -64.873941906310108, 18.328378689388614 ], [ -64.873933690731349, 18.328344658845367 ], [ -64.873913406515953, 18.328262851431134 ], [ -64.873870492460753, 18.328193952153924 ], [ -64.873801425545423, 18.328072414499559 ], [ -64.873759348371266, 18.327961438048192 ], [ -64.873721797427038, 18.327852640892729 ], [ -64.873698829691591, 18.327734288363104 ], [ -64.873654405583466, 18.327677459032259 ], [ -64.873580812438263, 18.327601518953031 ], [ -64.873508729345986, 18.327551059871666 ], [ -64.87342256334, 18.327515689532959 ], [ -64.873394400131758, 18.327512670736724 ], [ -64.873367410390586, 18.327498924408928 ], [ -64.87327336539181, 18.327354421638461 ], [ -64.873216368422845, 18.327285522361251 ], [ -64.873073708362313, 18.327179573744615 ], [ -64.87304336454855, 18.327148394359483 ], [ -64.873007154709455, 18.327126935367346 ], [ -64.872923838551912, 18.327105646632731 ], [ -64.872743964133065, 18.327066585635521 ], [ -64.87264505762812, 18.327061891767528 ], [ -64.872553024287072, 18.327079830358571 ], [ -64.872485298476875, 18.327100783816888 ], [ -64.872366778309072, 18.327141519885913 ], [ -64.872218249603804, 18.327216789412546 ], [ -64.872139124399837, 18.327271271809366 ], [ -64.872077936477297, 18.327346038421581 ], [ -64.871952712093389, 18.327491549640229 ], [ -64.871895715124424, 18.327571679363416 ], [ -64.871855649607994, 18.327656168987971 ], [ -64.871799489520072, 18.327796817390777 ], [ -64.871749533353182, 18.327878289528769 ], [ -64.871675270965056, 18.327984572112086 ], [ -64.871622464949724, 18.328070738118072 ], [ -64.871598157418816, 18.328114994588134 ], [ -64.871583908176603, 18.328143157796319 ], [ -64.871552559843678, 18.328176350148794 ], [ -64.871512997241666, 18.328205686823992 ], [ -64.871497406894264, 18.328208201396194 ], [ -64.871480643079906, 18.328190599391064 ], [ -64.871471255343806, 18.328139469757105 ], [ -64.871470249514971, 18.328095045648979 ], [ -64.871481984185039, 18.328054812494429 ], [ -64.871497908499066, 18.328002677031634 ], [ -64.871532275628226, 18.327930257353444 ], [ -64.871567982552904, 18.327870076569411 ], [ -64.871603689477581, 18.327819280902077 ], [ -64.871625816402911, 18.327706628069336 ], [ -64.871636546553816, 18.327597830913874 ], [ -64.871661356999084, 18.327509317973863 ], [ -64.871709804422721, 18.327430528046136 ], [ -64.871742493860779, 18.327399851575478 ], [ -64.871812231328704, 18.327311672602036 ], [ -64.871888841960526, 18.327250484679496 ], [ -64.871949694606769, 18.327198516854878 ], [ -64.872010713581517, 18.327154764608963 ], [ -64.872079949444696, 18.327094245929288 ], [ -64.872228309202114, 18.326993161438111 ], [ -64.87234112836336, 18.32692979291005 ], [ -64.872392928549857, 18.326887715735893 ], [ -64.872455457577587, 18.326830383490631 ], [ -64.872544642379864, 18.326762657680433 ], [ -64.872650422048707, 18.32666056736042 ], [ -64.872732229462997, 18.326567863466778 ], [ -64.87278302251093, 18.32653466980463 ], [ -64.872854270031837, 18.326446659779037 ], [ -64.8729067394612, 18.326392009744097 ], [ -64.87291981654613, 18.326347754583708 ], [ -64.872925851519312, 18.32630198937045 ], [ -64.87291646247354, 18.326254881742273 ], [ -64.872864663596715, 18.32618464135993 ], [ -64.872791404418138, 18.32610467927492 ], [ -64.872693002137282, 18.32599705558647 ], [ -64.872650422048707, 18.325932682539189 ], [ -64.872563082575709, 18.325802595339439 ], [ -64.872510107612527, 18.325745598370474 ], [ -64.872425954573885, 18.3257095561695 ], [ -64.872362754993617, 18.325683738585667 ], [ -64.872300727570632, 18.325681894566117 ], [ -64.872119678375157, 18.325692623407292 ], [ -64.872017085140669, 18.325700168433457 ], [ -64.871926057628514, 18.325690948335534 ], [ -64.871838718155459, 18.325683069342801 ], [ -64.871774345108179, 18.325666808442804 ], [ -64.871669738906292, 18.325605451572414 ], [ -64.871589104959071, 18.325569744647737 ], [ -64.871506962268484, 18.325560693497664 ], [ -64.871471086396014, 18.325594221126437 ], [ -64.871423981387181, 18.32563244262326 ], [ -64.871389447929516, 18.325667311357222 ], [ -64.871360111254319, 18.325697318585014 ], [ -64.871308813982296, 18.325763366704052 ], [ -64.871276795096776, 18.325802930615737 ], [ -64.871242261639111, 18.325845006480222 ], [ -64.871212588377944, 18.325910051389769 ], [ -64.871181576630988, 18.325982303429839 ], [ -64.871156766185663, 18.326038963812834 ], [ -64.871088705099226, 18.326150947402652 ], [ -64.871026008433375, 18.32622655220564 ], [ -64.870971023122138, 18.326286565351495 ], [ -64.870916205449021, 18.326317578408123 ], [ -64.870800870405958, 18.326339540314677 ], [ -64.870713363294783, 18.326360661411172 ], [ -64.87062853839393, 18.326358649753445 ], [ -64.87055142484769, 18.326356805733838 ], [ -64.870512197521975, 18.326354123523515 ], [ -64.87047917280762, 18.326358649753445 ], [ -64.87045503291489, 18.326364518398123 ], [ -64.870431563574755, 18.326372397390912 ], [ -64.870389486400597, 18.326409445420722 ], [ -64.870319078380078, 18.32648873826281 ], [ -64.870198378916427, 18.326564844670543 ], [ -64.870136185164995, 18.326660230774451 ], [ -64.870105172108367, 18.326715886638283 ], [ -64.870093269800122, 18.326785122501406 ], [ -64.870075667794993, 18.326891403775051 ], [ -64.87006628005895, 18.327005900627398 ], [ -64.870076338347587, 18.327131127630651 ], [ -64.870078182367195, 18.327227016649033 ], [ -64.870077008900182, 18.327360120025673 ], [ -64.87006778880226, 18.327455841405879 ], [ -64.870009450728162, 18.327615769504973 ], [ -64.869981455158097, 18.327688021544986 ], [ -64.8699521184829, 18.327758092979536 ], [ -64.869927140399454, 18.327820119092792 ], [ -64.869901659401535, 18.327886503797856 ], [ -64.86985740293153, 18.327988427789364 ], [ -64.869764866676064, 18.328151372065349 ], [ -64.869706863878207, 18.328291517553737 ], [ -64.8696535549484, 18.328385228585887 ], [ -64.869586332052677, 18.328518668548554 ], [ -64.869556157186764, 18.328594608627782 ], [ -64.869527491064161, 18.328653783582922 ], [ -64.869452221537472, 18.328758222146632 ], [ -64.869426237625134, 18.328791246860987 ], [ -64.869408467981884, 18.328825277404235 ], [ -64.869388854319027, 18.328890991556705 ], [ -64.869363205682987, 18.328952347117365 ], [ -64.869347615335641, 18.32899794469256 ], [ -64.869333533731549, 18.32905427110893 ], [ -64.869316099364539, 18.32912954063562 ], [ -64.869302855951162, 18.329170611980885 ], [ -64.869288606708949, 18.329238673067323 ], [ -64.869278883696609, 18.329306734153818 ], [ -64.869251558679139, 18.329397091113435 ], [ -64.869234459588426, 18.329445370898895 ], [ -64.869225071852384, 18.329483760033895 ], [ -64.869233621397711, 18.329530866352343 ], [ -64.869247032449209, 18.329567914382153 ], [ -64.869275866209989, 18.329642848632545 ], [ -64.869323140166614, 18.329704874745801 ], [ -64.869378125477851, 18.329750975235413 ], [ -64.869435290084937, 18.329799255020873 ], [ -64.869485078613707, 18.329833620840418 ], [ -64.869525144130137, 18.329861448772306 ], [ -64.869572753363002, 18.329888773789776 ], [ -64.869641652640212, 18.329974772157641 ], [ -64.869703008200929, 18.330073008110048 ], [ -64.86977878064198, 18.330169400042848 ], [ -64.869816331586264, 18.330214494703569 ], [ -64.869876178403672, 18.330295463927143 ], [ -64.869924458189132, 18.330342905521888 ], [ -64.869995369124013, 18.330389844202216 ], [ -64.870030237857975, 18.330460419860799 ], [ -64.870067453525962, 18.330547759333854 ], [ -64.870095784372268, 18.330603750473927 ], [ -64.870141549585583, 18.330664267843929 ], [ -64.870176753595842, 18.330716738582964 ], [ -64.870246658701888, 18.330791840471477 ], [ -64.87033148360274, 18.330895440844472 ], [ -64.87037490188203, 18.330960316806227 ], [ -64.87038445725625, 18.330995185540189 ], [ -64.8703826132367, 18.331022678195779 ], [ -64.870375572434625, 18.331037933266884 ], [ -64.870359646810925, 18.331043465325649 ], [ -64.870333830536765, 18.331045476983377 ], [ -64.870294603211107, 18.331027036787532 ], [ -64.870244144129742, 18.330981774488635 ], [ -64.870217824941108, 18.330959813891809 ], [ -64.87019150575253, 18.330934165255769 ], [ -64.870160660334022, 18.330897787778497 ], [ -64.870123444666035, 18.330850010907454 ], [ -64.870091593418692, 18.330821009508554 ], [ -64.870034764087904, 18.330782285097314 ], [ -64.869942395470559, 18.330743728324194 ], [ -64.86985757056965, 18.330717073859262 ], [ -64.869767045971912, 18.330671308645947 ], [ -64.869724801159634, 18.330647168753217 ], [ -64.869647687613394, 18.330604421026521 ], [ -64.869624385911379, 18.330578101837887 ], [ -64.869608627925857, 18.330558488175029 ], [ -64.869599575466054, 18.330520769592624 ], [ -64.869586332052677, 18.330486571411257 ], [ -64.869566215475402, 18.330436447606246 ], [ -64.869540902115659, 18.330381127018711 ], [ -64.869505865743577, 18.330306192768319 ], [ -64.869470829371437, 18.330237125852989 ], [ -64.869455909576629, 18.330207956815968 ], [ -64.869424058329287, 18.330133190203696 ], [ -64.869364882064474, 18.330045012539983 ], [ -64.869325822376879, 18.329994721096796 ], [ -64.869279218972849, 18.329953649751474 ], [ -64.869236135969857, 18.329930180411338 ], [ -64.869190035480244, 18.329914590063936 ], [ -64.869125830071084, 18.329883577007308 ], [ -64.869076041542371, 18.329857090180553 ], [ -64.869057936622767, 18.329838147070291 ], [ -64.869055254412501, 18.329806966375486 ], [ -64.869039831703219, 18.329735049611713 ], [ -64.869033293815619, 18.329681405405665 ], [ -64.869007645179579, 18.32961317668105 ], [ -64.868998927996131, 18.329562382323388 ], [ -64.869001777844574, 18.329510246860593 ], [ -64.869001274930099, 18.329472528278245 ], [ -64.868987528602304, 18.329394911817531 ], [ -64.868970764787889, 18.329330203493953 ], [ -64.868955342078664, 18.329263483512648 ], [ -64.868950480572494, 18.329212689155042 ], [ -64.868990713727044, 18.32903482508425 ], [ -64.869019044573406, 18.328930721796837 ], [ -64.869026923566139, 18.328896020700995 ], [ -64.869034299644511, 18.328843214685662 ], [ -64.869046704867117, 18.328799125853777 ], [ -64.869047878334129, 18.328766436415719 ], [ -64.869073191693872, 18.32872972366215 ], [ -64.869114765953611, 18.328660489108699 ], [ -64.869200931959597, 18.328535933967714 ], [ -64.869243009133754, 18.32849352151726 ], [ -64.869317943384146, 18.328413725760697 ], [ -64.869415844060256, 18.328257989924964 ], [ -64.869486084442542, 18.328098230773719 ], [ -64.869512235993056, 18.327983398645074 ], [ -64.869547104726962, 18.327822802612786 ], [ -64.869568227133129, 18.327748537605316 ], [ -64.869628241588657, 18.327611241965371 ], [ -64.869701164181322, 18.327510323802699 ], [ -64.869712395936972, 18.327440252368206 ], [ -64.869706025687492, 18.327390128563138 ], [ -64.869655231329887, 18.327339166567356 ], [ -64.869567724218712, 18.327264231007291 ], [ -64.869504357000267, 18.327152248727089 ], [ -64.869411653106624, 18.326939349593886 ], [ -64.869315093535704, 18.326829377661795 ], [ -64.869240662199729, 18.326740864721728 ], [ -64.869249211745114, 18.326711695684708 ], [ -64.869293971129537, 18.326690740916661 ], [ -64.869531346741439, 18.326650004847693 ], [ -64.869640479173199, 18.326600385266715 ], [ -64.869721951311192, 18.326529137745865 ], [ -64.869778445365682, 18.326462920678978 ], [ -64.869834771782109, 18.326391506829623 ], [ -64.86990232995413, 18.326312215297207 ], [ -64.869987154854982, 18.32624566164435 ], [ -64.870089246484667, 18.32608707726979 ], [ -64.87017859761545, 18.326007112565435 ], [ -64.870254872970975, 18.325959169365944 ], [ -64.870399544689235, 18.325919102539842 ], [ -64.87055159248581, 18.32591189540932 ], [ -64.870642452359903, 18.325944080623287 ], [ -64.870715542590688, 18.32597123931231 ], [ -64.870767510415305, 18.325971742226727 ], [ -64.870820986983233, 18.325937041130942 ], [ -64.870855688079075, 18.325879373609382 ], [ -64.870920899317071, 18.325807289207489 ], [ -64.870948224334541, 18.325753140777294 ], [ -64.870966496892208, 18.325692792355142 ], [ -64.870988792765388, 18.325596400422342 ], [ -64.871019805822016, 18.325523979434422 ], [ -64.871071103094096, 18.325444686592334 ], [ -64.871171015427933, 18.325323316576089 ], [ -64.871307305238986, 18.325231452182834 ], [ -64.871410401387891, 18.325166911497377 ], [ -64.871527246483936, 18.325129191605299 ], [ -64.871651297400774, 18.325126509395034 ], [ -64.871698068442981, 18.325131875125294 ], [ -64.871796304395332, 18.325187028074652 ], [ -64.871854308502861, 18.325209322638159 ], [ -64.871983388564047, 18.325211503243679 ], [ -64.872091013562169, 18.325219717512766 ], [ -64.872132755460029, 18.325222398413416 ], [ -64.872175669515229, 18.325231284544714 ], [ -64.872214730512439, 18.325243688457704 ], [ -64.872243899549517, 18.325259280114722 ], [ -64.872297711393742, 18.325309571557966 ], [ -64.872358396401864, 18.325330692654404 ], [ -64.872415058094532, 18.325343768429661 ], [ -64.872434167533299, 18.325348128331086 ], [ -64.872468367024339, 18.325349637074339 ], [ -64.872526537460317, 18.325346450639927 ], [ -64.872567104581492, 18.325352822199079 ], [ -64.87262125301163, 18.325375118072259 ], [ -64.8726869671641, 18.325393724596552 ], [ -64.872765254177352, 18.325416189417524 ], [ -64.872886456555477, 18.325451058151486 ], [ -64.87295837331925, 18.325472180557597 ], [ -64.87302391852387, 18.325504030495324 ], [ -64.87306415167842, 18.325533536118314 ], [ -64.873095501321018, 18.325543760735457 ], [ -64.873146629645305, 18.325518447375714 ], [ -64.873235645499733, 18.325447705388569 ], [ -64.873288285186618, 18.325409651529924 ], [ -64.873311082664543, 18.325374112243367 ], [ -64.873344442655196, 18.325314265425959 ], [ -64.873352321647985, 18.325274367547706 ], [ -64.873351652405063, 18.325181328377766 ], [ -64.873344779241165, 18.325124162461009 ], [ -64.873330528689223, 18.325042523994568 ], [ -64.873320470400586, 18.324985359387426 ], [ -64.873308903368695, 18.324940935279301 ], [ -64.873300355132983, 18.324893661322676 ], [ -64.87328442950934, 18.324837836511051 ], [ -64.873268502575968, 18.324777654417346 ], [ -64.873246543288758, 18.324713115041561 ], [ -64.873226091435185, 18.324658632644798 ], [ -64.873193903601873, 18.324589733367588 ], [ -64.87316741808479, 18.324529551273883 ], [ -64.873142607639522, 18.324469369180235 ], [ -64.873121988147773, 18.324415724974131 ], [ -64.873104386142643, 18.324387560456273 ], [ -64.873040851286078, 18.324288319984703 ], [ -64.8729900556188, 18.32417935519112 ], [ -64.87293255704509, 18.324087321850016 ], [ -64.872858293347292, 18.32402378699345 ], [ -64.872795764319562, 18.323977686503838 ], [ -64.872719824240335, 18.323931249428313 ], [ -64.872654445364162, 18.323889341201948 ], [ -64.872544307103567, 18.32381826262889 ], [ -64.872444730046027, 18.323812395293885 ], [ -64.872364431375047, 18.323778363440965 ], [ -64.872331239022515, 18.32374433420739 ], [ -64.872265523560429, 18.323677111311667 ], [ -64.872154045504317, 18.323563117373737 ], [ -64.872050445131322, 18.323440741528657 ], [ -64.871939301041891, 18.323318364373847 ], [ -64.871850285187406, 18.323228176362022 ], [ -64.871784906311234, 18.323125078903502 ], [ -64.871749030438764, 18.323067076105644 ], [ -64.871684491062979, 18.322998344466612 ], [ -64.871569994210631, 18.322844117374132 ], [ -64.871498915637574, 18.322763483426854 ], [ -64.871427500478546, 18.322708665753794 ], [ -64.871347203117239, 18.322659380139442 ], [ -64.871265228064829, 18.322624343767359 ], [ -64.871180067887678, 18.322596515835471 ], [ -64.871059033147731, 18.322568352627229 ], [ -64.870997845225133, 18.322557959062351 ], [ -64.870944033380908, 18.322555947404624 ], [ -64.870902123844928, 18.322548571326251 ], [ -64.87082283100284, 18.322552259365409 ], [ -64.870792991413168, 18.322546224392227 ], [ -64.87078259784829, 18.322534657360336 ], [ -64.870778239256538, 18.322517558269624 ], [ -64.870791817946156, 18.322500459178912 ], [ -64.870805564274008, 18.322469110845987 ], [ -64.870833056929598, 18.322412113877022 ], [ -64.870884354201678, 18.322366851578181 ], [ -64.870976052266428, 18.322316224858696 ], [ -64.87101075336227, 18.322283535420581 ], [ -64.871047130839486, 18.322240955332006 ], [ -64.871092728414681, 18.322165518167196 ], [ -64.871130782273326, 18.322077340503483 ], [ -64.871153747389428, 18.322020343534518 ], [ -64.871161626382161, 18.321976087064513 ], [ -64.871164309902156, 18.321845999864763 ], [ -64.871148049002159, 18.321652880722866 ], [ -64.871153916337221, 18.321592698629161 ], [ -64.871193981853651, 18.3214414890233 ], [ -64.871237735409238, 18.321331015486408 ], [ -64.871306130462301, 18.321191708188735 ], [ -64.871380563107891, 18.321060112245675 ], [ -64.871440745201596, 18.320930360322222 ], [ -64.871488688401143, 18.32080060839877 ], [ -64.871507800459199, 18.320709413248437 ], [ -64.871529927384529, 18.32052752586219 ], [ -64.871526073016923, 18.320398612129452 ], [ -64.871497239256144, 18.320310099189442 ], [ -64.871465388008801, 18.320212366151452 ], [ -64.871436554248021, 18.320090660858909 ], [ -64.871395315264579, 18.319999968623051 ], [ -64.871353573366719, 18.319961411849931 ], [ -64.871321888447824, 18.319914305531427 ], [ -64.871266736808138, 18.319821601637841 ], [ -64.871229018225733, 18.319686989517834 ], [ -64.871149222469171, 18.319513315091001 ], [ -64.871097925197148, 18.319378534023201 ], [ -64.871014609039548, 18.319235538686371 ], [ -64.870949565439673, 18.319123053491751 ], [ -64.870905308969668, 18.319062200845508 ], [ -64.87092726956655, 18.319083324561291 ], [ -64.870986613469483, 18.319148366851493 ], [ -64.871053836365263, 18.319206369649351 ], [ -64.871113180268253, 18.319271414558898 ], [ -64.871157604376378, 18.319343497651118 ], [ -64.871202028484561, 18.319415582053068 ], [ -64.871231365159758, 18.319494708566708 ], [ -64.871283332984376, 18.319566791658929 ], [ -64.871350388241979, 18.319624626818609 ], [ -64.871424987216074, 18.319668380374196 ], [ -64.871499753828289, 18.319719174731802 ], [ -64.871574351492711, 18.319762760649269 ], [ -64.871581225966281, 18.319848926655311 ], [ -64.871663367347139, 18.319885471770704 ], [ -64.871753725616429, 18.319864684640834 ], [ -64.871844082576047, 18.319843897510964 ], [ -64.871934271897544, 18.319823110381094 ], [ -64.872024461219041, 18.319809531691419 ], [ -64.872114818178659, 18.319788744561606 ], [ -64.87220517513822, 18.319767957431736 ], [ -64.872295195511924, 18.319761419544136 ], [ -64.872355880520047, 18.319697381773096 ], [ -64.872394103326542, 18.319618927121724 ], [ -64.872417405028557, 18.319532928753858 ], [ -64.87243316301408, 18.319447098024114 ], [ -64.872426457488302, 18.319360932018128 ], [ -64.872419750652909, 18.319274766012086 ], [ -64.872443052354924, 18.319188936592013 ], [ -64.872473731444927, 18.319110312992848 ], [ -64.872482113352135, 18.319024314624926 ], [ -64.872467864109922, 18.31893814861894 ], [ -64.87244607115116, 18.318851982612898 ], [ -64.872409189449797, 18.31877268977081 ], [ -64.872379854084272, 18.318693564566843 ], [ -64.872418075581152, 18.31861510991547 ], [ -64.872426457488302, 18.318674453818403 ], [ -64.872448250447064, 18.318744526562625 ], [ -64.872482280990255, 18.318818622622246 ], [ -64.872506085606744, 18.318879139992248 ], [ -64.872556209411755, 18.318964970721993 ], [ -64.872612368190005, 18.319054824767136 ], [ -64.872687133492548, 18.319105954401095 ], [ -64.872737592573912, 18.319151049061816 ], [ -64.872793585023715, 18.319266216466758 ], [ -64.87282526863288, 18.319361771518516 ], [ -64.872849408525667, 18.319400829896381 ], [ -64.872891653337945, 18.319441902551318 ], [ -64.872907242375618, 18.319519852978601 ], [ -64.87289400027197, 18.319642062495291 ], [ -64.87288142741113, 18.319675085899974 ], [ -64.872860137366843, 18.319710960462771 ], [ -64.872829124310215, 18.319738285480241 ], [ -64.872809341699565, 18.319783380140962 ], [ -64.872758716289752, 18.319920508142786 ], [ -64.872717980220727, 18.319986557571497 ], [ -64.872678585256892, 18.320069873729096 ], [ -64.872618066577218, 18.320230638709177 ], [ -64.872574480659807, 18.320339100588342 ], [ -64.87254883333344, 18.32047304346537 ], [ -64.872479597470317, 18.320639005227974 ], [ -64.872350517409075, 18.320852408585267 ], [ -64.872281115217504, 18.32098031648917 ], [ -64.872233003070164, 18.3210689970673 ], [ -64.871984060426314, 18.321268486458678 ], [ -64.871888674322349, 18.321338223926602 ], [ -64.871784234448967, 18.321424892847006 ], [ -64.871742995465581, 18.321488595341748 ], [ -64.871687173273301, 18.321581466873511 ], [ -64.871639730368884, 18.321654892380593 ], [ -64.871626991179596, 18.321709207139236 ], [ -64.871630176304336, 18.321816160275148 ], [ -64.871629504442069, 18.321886065381193 ], [ -64.871642915493624, 18.321979607465551 ], [ -64.871666552471879, 18.322074993569458 ], [ -64.871706116383564, 18.322189993336224 ], [ -64.871733775367659, 18.322295102452529 ], [ -64.871771830536034, 18.322361487157536 ], [ -64.871834191925586, 18.322439774170789 ], [ -64.871900576630594, 18.322512193849036 ], [ -64.871983557511896, 18.322578913830341 ], [ -64.872086487332297, 18.322667259132231 ], [ -64.872152872037304, 18.322743534487756 ], [ -64.872233338346462, 18.322856857873091 ], [ -64.872313803345889, 18.322958614226479 ], [ -64.872424781106872, 18.32306640555305 ], [ -64.872539779564022, 18.323146536585909 ], [ -64.872625945570007, 18.323214430034227 ], [ -64.87272870906196, 18.323272432832027 ], [ -64.872827112652487, 18.323318868597937 ], [ -64.87291646247354, 18.32337117038918 ], [ -64.87302391852387, 18.323410565353015 ], [ -64.873134393370435, 18.323428671582235 ], [ -64.873278897450575, 18.323447949968795 ], [ -64.873315273618118, 18.323461863934767 ], [ -64.87341937821526, 18.323534115974837 ], [ -64.873538064711511, 18.323656659458095 ], [ -64.873648873524701, 18.3238291591083 ], [ -64.873757839627956, 18.324005514435783 ], [ -64.873822043727444, 18.324177511171513 ], [ -64.873836629555683, 18.32424054311366 ], [ -64.873842161614391, 18.324352190117565 ], [ -64.873847861311276, 18.324384376641206 ], [ -64.873855571356273, 18.324427962558673 ], [ -64.873855068441799, 18.324492167967776 ], [ -64.873851715678938, 18.324527873582781 ], [ -64.873857415375824, 18.324552350061481 ], [ -64.873895973458616, 18.324607000096421 ], [ -64.873944754848878, 18.324661650131361 ], [ -64.874050200551096, 18.324762568294091 ], [ -64.874128990478766, 18.324828952999098 ], [ -64.874206270353511, 18.324889638007221 ], [ -64.874301153543001, 18.324976139289504 ], [ -64.874371058649047, 18.325033805501391 ], [ -64.874399221857232, 18.325059789413729 ], [ -64.874409615422167, 18.325079907300676 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_282", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.897120725637535, 18.321620023646631 ], [ -64.89712324020968, 18.321643325348646 ], [ -64.89713111920247, 18.321661430268193 ], [ -64.897125587143705, 18.321674338405273 ], [ -64.897109326243708, 18.321676685339298 ], [ -64.897082336502535, 18.321676517701178 ], [ -64.897063393392273, 18.321676350063058 ], [ -64.89704445028201, 18.321678864635203 ], [ -64.897025674809868, 18.32167601478676 ], [ -64.89699332064805, 18.32165522765689 ], [ -64.89697722738623, 18.321639469671368 ], [ -64.89696113412441, 18.321623879323965 ], [ -64.896945208500767, 18.321598063049805 ], [ -64.896921068608037, 18.321579790492081 ], [ -64.896899610925573, 18.321564032506558 ], [ -64.896875303394722, 18.321548442159155 ], [ -64.896851163501935, 18.321535198745778 ], [ -64.896813612557708, 18.321506532623175 ], [ -64.896805733564918, 18.321473004994346 ], [ -64.896781761310365, 18.321441824299598 ], [ -64.896757621417635, 18.32140796139447 ], [ -64.896741695793935, 18.321384659692455 ], [ -64.896720238111527, 18.321356161207973 ], [ -64.896704312487827, 18.321332691867838 ], [ -64.896690901436273, 18.32131458694829 ], [ -64.896677658022952, 18.321291285246275 ], [ -64.89665100355802, 18.32124719641439 ], [ -64.896629545875612, 18.321218530291787 ], [ -64.896613620251912, 18.32120042537224 ], [ -64.896592162569505, 18.32117175924958 ], [ -64.896565340466452, 18.321140578554832 ], [ -64.896546732632487, 18.321106883287882 ], [ -64.896517228319112, 18.321086096158012 ], [ -64.89649040621606, 18.32106262681782 ], [ -64.896466433961507, 18.321033960695218 ], [ -64.896439611858455, 18.32100797678288 ], [ -64.89639384664514, 18.32098702201489 ], [ -64.896361492483322, 18.320971264029367 ], [ -64.896331988170004, 18.320955506043845 ], [ -64.896307680639097, 18.32093723348612 ], [ -64.896272811905192, 18.320913764145985 ], [ -64.896237775533052, 18.320900520732607 ], [ -64.896205589009412, 18.320877051392415 ], [ -64.896181281478562, 18.32086649018936 ], [ -64.896151777165187, 18.320855928986305 ], [ -64.896119423003427, 18.320845367783249 ], [ -64.896103162103429, 18.320840003362605 ], [ -64.896073657790112, 18.320821730804937 ], [ -64.896052032469527, 18.320811337240002 ], [ -64.895998220625302, 18.320790214833835 ], [ -64.895990173994392, 18.320785018051367 ], [ -64.895966034101662, 18.320769260065845 ], [ -64.895868971616267, 18.320732379674155 ], [ -64.895831420672039, 18.320706228123697 ], [ -64.895785655458724, 18.320677394362917 ], [ -64.895750954362882, 18.320641016885702 ], [ -64.895724132259829, 18.32061754754551 ], [ -64.895694460308391, 18.320596760415697 ], [ -64.895675684836249, 18.320578487857972 ], [ -64.895648862733196, 18.320557700728102 ], [ -64.895603265158002, 18.320523670184912 ], [ -64.895573760844684, 18.320502883055042 ], [ -64.895552135524099, 18.32049232185193 ], [ -64.895519781362339, 18.320479078438609 ], [ -64.895479380569611, 18.320468517235497 ], [ -64.895457922887203, 18.320460638242764 ], [ -64.895406625615124, 18.320444712619064 ], [ -64.895368907032719, 18.320433983777832 ], [ -64.895333870660636, 18.320426104785099 ], [ -64.895271844547324, 18.320415209615362 ], [ -64.895206968585626, 18.320409508608805 ], [ -64.895142260262048, 18.320388386202694 ], [ -64.895117952731141, 18.320380507209904 ], [ -64.895077551938471, 18.320372292940874 ], [ -64.895028936876656, 18.320364247619636 ], [ -64.894999264925218, 18.320363911033667 ], [ -64.894969592973723, 18.32036374339549 ], [ -64.894926342332553, 18.320363408119249 ], [ -64.894880241842941, 18.320365587415097 ], [ -64.89483984105027, 18.320357540784187 ], [ -64.894802122467866, 18.320352008725422 ], [ -64.894772282878193, 18.3203493265151 ], [ -64.894747975347343, 18.320348991238859 ], [ -64.894715621185526, 18.320348823600682 ], [ -64.894667006123768, 18.320340610641324 ], [ -64.89464538080324, 18.320335412549184 ], [ -64.894602297800191, 18.320324683707952 ], [ -64.89457799026934, 18.320316804715162 ], [ -64.894542953897201, 18.320303562611514 ], [ -64.894491656625178, 18.320298029243077 ], [ -64.894461984673683, 18.320295179394634 ], [ -64.89444304156342, 18.320292329546191 ], [ -64.89439174429134, 18.320286797487427 ], [ -64.894351343498613, 18.320286462211129 ], [ -64.8942407023236, 18.320259807746254 ], [ -64.894178508572168, 18.320254108049312 ], [ -64.894127211300088, 18.320251090562749 ], [ -64.894086810507417, 18.320245726142161 ], [ -64.8940544563456, 18.320232482728784 ], [ -64.89402210218384, 18.320227119617812 ], [ -64.893992430232345, 18.320219071677229 ], [ -64.89395471164994, 18.320200799119561 ], [ -64.893914310857213, 18.320184873495862 ], [ -64.89387927448513, 18.320169115510339 ], [ -64.893849770171812, 18.320156039735082 ], [ -64.893806519530642, 18.320145310893849 ], [ -64.893774165368825, 18.320137265572612 ], [ -64.893739128996742, 18.320131899842352 ], [ -64.89370409262466, 18.320123853211442 ], [ -64.893636534452639, 18.320110442159944 ], [ -64.893569143918739, 18.320102061562409 ], [ -64.89350980001575, 18.320091331411504 ], [ -64.89346654937458, 18.320085799352739 ], [ -64.893425980943732, 18.320080268603704 ], [ -64.893380215730417, 18.320072220663121 ], [ -64.893334282878982, 18.320058978559416 ], [ -64.893288517665667, 18.320050762980657 ], [ -64.893258678076052, 18.320050596652209 ], [ -64.893185755483387, 18.320047410217796 ], [ -64.893137140421629, 18.320044392731177 ], [ -64.893099421839224, 18.320041542882734 ], [ -64.893045274718759, 18.320038525396171 ], [ -64.892929101484924, 18.320032490422989 ], [ -64.892869757581991, 18.320019079371434 ], [ -64.892821310158354, 18.320005835958057 ], [ -64.892767330675952, 18.319994939478704 ], [ -64.892753751986334, 18.319994939478704 ], [ -64.892647804679314, 18.319996615860134 ], [ -64.892574882086649, 18.319993430735394 ], [ -64.892528950544886, 18.319995610031299 ], [ -64.892485698594044, 18.320000471537469 ], [ -64.892415459521374, 18.319997286412729 ], [ -64.892342535619093, 18.319986389933376 ], [ -64.892272296546423, 18.319978175664289 ], [ -64.892120917992713, 18.319979516769479 ], [ -64.89203441671043, 18.319976164006562 ], [ -64.891974906478993, 18.319983540084934 ], [ -64.891926291417178, 18.319993430735394 ], [ -64.891890918459126, 18.320006003596234 ], [ -64.891772064324698, 18.320007679977664 ], [ -64.891642143453453, 18.320032490422989 ], [ -64.891582631912343, 18.320034502080716 ], [ -64.891539382580845, 18.320041878159032 ], [ -64.89149328078156, 18.320051936447669 ], [ -64.891420190550775, 18.320064174032154 ], [ -64.891382305639922, 18.320076746892994 ], [ -64.891306196612902, 18.320114968389817 ], [ -64.89127350848446, 18.320142963959881 ], [ -64.891213326390755, 18.320176157622029 ], [ -64.891134367515292, 18.320232315090607 ], [ -64.891063625528204, 18.320280762514244 ], [ -64.890979469870217, 18.320326527727559 ], [ -64.890897831403777, 18.320390397860422 ], [ -64.890867824175984, 18.320421075640752 ], [ -64.890818872528257, 18.320464661558219 ], [ -64.890775120282342, 18.320510762047775 ], [ -64.890739748633962, 18.320546636610629 ], [ -64.890668836389409, 18.32060799217129 ], [ -64.890619718413177, 18.320664318587717 ], [ -64.890546126577647, 18.320738582285514 ], [ -64.890444873138676, 18.32088241581306 ], [ -64.890378488433669, 18.321052233252942 ], [ -64.890369937578612, 18.32110889494561 ], [ -64.890372284512637, 18.321150301567172 ], [ -64.890393071642507, 18.321232947172177 ], [ -64.890397765510556, 18.321307881422513 ], [ -64.890407657470689, 18.321421540084145 ], [ -64.890427271133547, 18.321654054189878 ], [ -64.890437495750689, 18.321713565730988 ], [ -64.890450571525889, 18.321762683707163 ], [ -64.890463648610819, 18.321809287111193 ], [ -64.890455434341732, 18.321832421175088 ], [ -64.890441686704264, 18.321852873028661 ], [ -64.890425427113996, 18.321855387600806 ], [ -64.890398437372767, 18.321852537752363 ], [ -64.890358036580096, 18.321834265194695 ], [ -64.890306905636464, 18.321810628216383 ], [ -64.890261140423206, 18.321784309027748 ], [ -64.890212860637689, 18.321755642905146 ], [ -64.890148153623784, 18.321731838288713 ], [ -64.890107920469234, 18.321705686738255 ], [ -64.890018904614749, 18.321676517701178 ], [ -64.889884123547006, 18.321644498815658 ], [ -64.889843555116158, 18.321636452184748 ], [ -64.889762753530761, 18.321607450785848 ], [ -64.889693016062836, 18.321550118540586 ], [ -64.889650099388291, 18.321516087997338 ], [ -64.889607016385298, 18.321489936446881 ], [ -64.889580195591918, 18.321474346099535 ], [ -64.889529064648343, 18.321442830128433 ], [ -64.889464357634438, 18.32141919315012 ], [ -64.889415910210801, 18.321403267526478 ], [ -64.889364611629048, 18.321387341902778 ], [ -64.889305269035788, 18.321379127633691 ], [ -64.889232346443123, 18.321378624719273 ], [ -64.889218766443776, 18.321380971653298 ], [ -64.889183731381365, 18.32137560723271 ], [ -64.889170320329868, 18.321357334674985 ], [ -64.889154393396495, 18.321323807046213 ], [ -64.889127572603115, 18.32130033770602 ], [ -64.889095386079475, 18.321276868365885 ], [ -64.889054985286748, 18.321253231387573 ], [ -64.889030845394018, 18.321242670184517 ], [ -64.888977033549793, 18.321206125069125 ], [ -64.888907462410373, 18.321138399258928 ], [ -64.888859351572705, 18.321078720079697 ], [ -64.888714512216325, 18.32094846524177 ], [ -64.888642260176255, 18.32087302807696 ], [ -64.888591130542352, 18.320844194316237 ], [ -64.888550728439952, 18.320820724976045 ], [ -64.888459534599292, 18.32074763474526 ], [ -64.888308827907849, 18.320666497883565 ], [ -64.888214782909017, 18.320614027144529 ], [ -64.888180081813232, 18.320559544747709 ], [ -64.888123923034982, 18.320486789793222 ], [ -64.888086538419202, 18.320434821968547 ], [ -64.888052006271209, 18.320372628217115 ], [ -64.888046809488742, 18.320339100588342 ], [ -64.88803121914134, 18.320284785829699 ], [ -64.888021160852702, 18.320189064449437 ], [ -64.888018813918734, 18.320145144565402 ], [ -64.888016634622829, 18.320096192917674 ], [ -64.888025351806334, 18.320031653541946 ], [ -64.888031051503219, 18.319993095459154 ], [ -64.888007246886787, 18.319930901707721 ], [ -64.887983274632177, 18.319886812875836 ], [ -64.887946058964189, 18.319819423651609 ], [ -64.887930300978667, 18.319778015720374 ], [ -64.887925271834376, 18.319721186389529 ], [ -64.887928624597237, 18.319659161585946 ], [ -64.887918397360806, 18.319579030553143 ], [ -64.887883697574637, 18.319532425839441 ], [ -64.887843632058207, 18.319490683941581 ], [ -64.887789820213982, 18.319461851490473 ], [ -64.887782611773787, 18.319363781866571 ], [ -64.887748078316122, 18.319291194550203 ], [ -64.887694434110074, 18.319241742607403 ], [ -64.887670461855464, 18.319192455683378 ], [ -64.887649507087474, 18.319122550577333 ], [ -64.887641963370982, 18.319060524464078 ], [ -64.887615308906106, 18.31902163241466 ], [ -64.887562838167014, 18.319015766389271 ], [ -64.887428057099271, 18.31906655943726 ], [ -64.887376424550894, 18.3191212094722 ], [ -64.887357146164334, 18.319133279418566 ], [ -64.887328312403554, 18.319135961628831 ], [ -64.887286738143871, 18.319141828963893 ], [ -64.887177773350288, 18.319150044542596 ], [ -64.887139384215288, 18.319165130665908 ], [ -64.887065455793788, 18.319194971565196 ], [ -64.886934027488905, 18.319230678489873 ], [ -64.886703189764603, 18.319283818471888 ], [ -64.886603780345183, 18.319316507909946 ], [ -64.886552315434983, 18.319352717749041 ], [ -64.886475201888743, 18.319382724976833 ], [ -64.886327345045743, 18.319464029476649 ], [ -64.886243693611902, 18.319521361721911 ], [ -64.886182170413065, 18.319603336774321 ], [ -64.886092148729745, 18.319666871630886 ], [ -64.886024758195845, 18.319687658760756 ], [ -64.885935071788765, 18.319696040667964 ], [ -64.885874219142522, 18.319704757851468 ], [ -64.885813366496222, 18.319719510008099 ], [ -64.885736252949982, 18.319749518545564 ], [ -64.885655786640882, 18.319806849481154 ], [ -64.885604321730682, 18.319840041833629 ], [ -64.885581690581262, 18.319858146753234 ], [ -64.885543636722559, 18.319827302644399 ], [ -64.885518323362817, 18.319790420943036 ], [ -64.885486807391715, 18.319747505578164 ], [ -64.885464679156712, 18.319722862771016 ], [ -64.88541053203619, 18.319694868510624 ], [ -64.885362922803324, 18.319645581586599 ], [ -64.885337944719879, 18.319578191052699 ], [ -64.885306428748777, 18.319526055589961 ], [ -64.885255969667469, 18.319443074708659 ], [ -64.885208528072667, 18.319381720457613 ], [ -64.885164271602662, 18.319323213435723 ], [ -64.885088331523434, 18.319227994969935 ], [ -64.884996633458684, 18.319107966058823 ], [ -64.884942989252579, 18.31901895151401 ], [ -64.884889345046531, 18.318939154447776 ], [ -64.884838550688869, 18.318886851346861 ], [ -64.884807537632241, 18.31878274936912 ], [ -64.884760263675616, 18.318715023558923 ], [ -64.884747858452954, 18.318663054424633 ], [ -64.884722712731389, 18.318604716350535 ], [ -64.884694381885026, 18.318558783499043 ], [ -64.884672422597873, 18.31851570049605 ], [ -64.884647275566579, 18.318466751467668 ], [ -64.884625148641248, 18.318423668464675 ], [ -64.884612742108914, 18.31838091942825 ], [ -64.884568318000731, 18.31834688888506 ], [ -64.884520876405986, 18.318288550810905 ], [ -64.884476619935981, 18.31823004640836 ], [ -64.884454660648771, 18.318184113556867 ], [ -64.884416437842276, 18.318153266828745 ], [ -64.884397662370191, 18.318113370260107 ], [ -64.88438844358194, 18.318076657506595 ], [ -64.884354244090844, 18.317963332811587 ], [ -64.884338486105321, 18.317929471216132 ], [ -64.884306802496098, 18.317892589514827 ], [ -64.884265563512713, 18.317855710432809 ], [ -64.884227509654011, 18.317827882500922 ], [ -64.884157101633548, 18.317824194461707 ], [ -64.884067416536141, 18.317844812643784 ], [ -64.884006394942048, 18.317856548623524 ], [ -64.883935986921585, 18.317862079372617 ], [ -64.883891227537163, 18.317870965503914 ], [ -64.883827189766123, 18.31787951373957 ], [ -64.883769523554292, 18.317885213436455 ], [ -64.883719230801375, 18.317899965593142 ], [ -64.883779915809498, 18.317835761493654 ], [ -64.883825681022813, 18.317764515282477 ], [ -64.883841439008393, 18.317678515604939 ], [ -64.883849654587095, 18.317592518546746 ], [ -64.883872954979438, 18.317506686507329 ], [ -64.883881170558197, 18.317420689449136 ], [ -64.883889552465348, 18.317334689771599 ], [ -64.883897765424763, 18.317248691403677 ], [ -64.883898435977358, 18.317162694345484 ], [ -64.883899275477745, 18.317076694667946 ], [ -64.883885024925803, 18.316990362333456 ], [ -64.88391570270619, 18.316911738734234 ], [ -64.883946549434313, 18.316833116444741 ], [ -64.88398476962152, 18.316754663102984 ], [ -64.884045286991466, 18.316690456384208 ], [ -64.884120891794396, 18.316641004441351 ], [ -64.884203705037578, 18.316612841233166 ], [ -64.884293894359018, 18.316606469674014 ], [ -64.884384083680516, 18.316607141536281 ], [ -64.884443427583449, 18.316672185136156 ], [ -64.884518194195721, 18.316722979493818 ], [ -64.884608049550536, 18.316752482497463 ], [ -64.884698069924241, 18.316753154359731 ], [ -64.884788426883802, 18.316725157479993 ], [ -64.884863864048612, 18.316682746339211 ], [ -64.884924549056734, 18.316618708568228 ], [ -64.884962770553614, 18.316540086278678 ], [ -64.884986072255629, 18.316454255548933 ], [ -64.885024293752451, 18.31637563325944 ], [ -64.885070058965766, 18.316304387048206 ], [ -64.885115656540904, 18.316232973198851 ], [ -64.885183717627399, 18.31617614255839 ], [ -64.885251778713837, 18.316119314537218 ], [ -64.885319839800331, 18.31606248520643 ], [ -64.885380524808454, 18.315991238995252 ], [ -64.885426290021769, 18.315919991474345 ], [ -64.885464511518592, 18.315841370494468 ], [ -64.885495189298922, 18.315762748204975 ], [ -64.885503571206129, 18.315676748527437 ], [ -64.885504241758724, 18.315590751469188 ], [ -64.885512623665932, 18.315504753101322 ], [ -64.885498374423662, 18.315418587095337 ], [ -64.885461494031972, 18.315339294253192 ], [ -64.885424613640282, 18.315260169049225 ], [ -64.885372645815664, 18.315188084647332 ], [ -64.885335933062152, 18.315108791805187 ], [ -64.885291508953969, 18.315036707403294 ], [ -64.885216743651426, 18.314993121485827 ], [ -64.885149687084152, 18.314928077886009 ], [ -64.885075088110057, 18.314884491968542 ], [ -64.884992777781349, 18.314847946853149 ], [ -64.884918178807311, 18.314797152495544 ], [ -64.884835868478604, 18.314767815820346 ], [ -64.884753390511719, 18.314738311506972 ], [ -64.884671080183011, 18.314708974831774 ], [ -64.884581226137868, 18.314694055036966 ], [ -64.884519200024556, 18.314683661472031 ], [ -64.884599498695536, 18.314679302880279 ], [ -64.884681641386123, 18.314688355340081 ], [ -64.884735788506589, 18.314688690616379 ], [ -64.884768311616199, 18.314689025892619 ], [ -64.884822457427049, 18.314683158557614 ], [ -64.884880963139324, 18.314677458860729 ], [ -64.884913484939261, 18.314681817452424 ], [ -64.884945839101022, 18.314677961775146 ], [ -64.884982887130889, 18.314665891828781 ], [ -64.885024126114274, 18.314645607613329 ], [ -64.885048098368884, 18.314627167417484 ], [ -64.885069892637262, 18.314608727221639 ], [ -64.885115656540904, 18.314582240394884 ], [ -64.885178185568634, 18.314524237597084 ], [ -64.885274074587016, 18.314462043845651 ], [ -64.885399467918717, 18.314393647482916 ], [ -64.885440371625862, 18.314383253917981 ], [ -64.885469875939179, 18.314385600852006 ], [ -64.885506085778275, 18.314388115424151 ], [ -64.88558085239049, 18.314416781546754 ], [ -64.885626114689387, 18.314432371894156 ], [ -64.885682608743934, 18.314454500129159 ], [ -64.885714292353157, 18.314467743542536 ], [ -64.88574144973245, 18.314478806350394 ], [ -64.88578637675505, 18.314513844032149 ], [ -64.885840523875572, 18.314564135475337 ], [ -64.885894503357918, 18.314612247622676 ], [ -64.88591478757337, 18.314636387515407 ], [ -64.885939430380517, 18.314673435545274 ], [ -64.885973125647467, 18.314708304279179 ], [ -64.886022746538117, 18.314747699243014 ], [ -64.88607236742871, 18.314776365365674 ], [ -64.886101704103908, 18.314800337620227 ], [ -64.88614461946878, 18.314822465855286 ], [ -64.886194072721253, 18.314866219410874 ], [ -64.886306557915873, 18.314975519480754 ], [ -64.88634712634672, 18.315006197261084 ], [ -64.88638568311984, 18.31502161997031 ], [ -64.886464808323808, 18.315052633026994 ], [ -64.886516943786603, 18.31506822337434 ], [ -64.886693299114086, 18.315128070191747 ], [ -64.886776782909806, 18.315185234798889 ], [ -64.88682875073448, 18.315218091875124 ], [ -64.886894129610596, 18.31525765447708 ], [ -64.887007285357811, 18.315304090242989 ], [ -64.887077358102033, 18.315337114957345 ], [ -64.887151454161653, 18.315417916542742 ], [ -64.887216833037826, 18.315470554919955 ], [ -64.887257401468673, 18.31550123139067 ], [ -64.887376927465311, 18.315591085435813 ], [ -64.887489747936229, 18.315674235264908 ], [ -64.887613967800974, 18.315727376556595 ], [ -64.887726620633714, 18.31582795944297 ], [ -64.887909178572556, 18.31596592563551 ], [ -64.888006073419774, 18.31604270259578 ], [ -64.888085366261862, 18.31606717907448 ], [ -64.888243784307974, 18.316120488004231 ], [ -64.888433718325132, 18.31618921964332 ], [ -64.888562129143395, 18.316300699009048 ], [ -64.888733455326587, 18.316429948018083 ], [ -64.88881023359653, 18.316469678258215 ], [ -64.888905284424197, 18.316507229202443 ], [ -64.888943841197317, 18.316511923070493 ], [ -64.88899815595596, 18.316529691404071 ], [ -64.889084154323825, 18.316562885066276 ], [ -64.889151880134023, 18.316593730484783 ], [ -64.889174343645323, 18.316630778514593 ], [ -64.889194626551046, 18.316641842632066 ], [ -64.889217259010138, 18.316652739111476 ], [ -64.889251120605593, 18.316668329458821 ], [ -64.889291857984233, 18.316681571562526 ], [ -64.889481959639568, 18.316745944609863 ], [ -64.889554210369909, 18.316783495554091 ], [ -64.889613051358481, 18.316805625098766 ], [ -64.889667367426796, 18.316827753333769 ], [ -64.889698883397898, 18.316851725588378 ], [ -64.889755208504596, 18.316902015721894 ], [ -64.889795610606939, 18.316950129178906 ], [ -64.889833832103818, 18.316989356504621 ], [ -64.889862833502718, 18.317041659605536 ], [ -64.889876075606423, 18.317080885621579 ], [ -64.889894014197466, 18.317117767322884 ], [ -64.889916142432526, 18.317172248410031 ], [ -64.889924859615974, 18.317211309407242 ], [ -64.889960566540651, 18.317276520645294 ], [ -64.889992082511753, 18.317313736313224 ], [ -64.890034996566897, 18.317344412783939 ], [ -64.890080092537346, 18.317364195394589 ], [ -64.890129881066116, 18.317388501615824 ], [ -64.890181847581061, 18.317408450554922 ], [ -64.890215710486132, 18.317428233165572 ], [ -64.890278911376129, 18.317478524608816 ], [ -64.890310258399381, 18.317517750624802 ], [ -64.890368765421329, 18.317576760561167 ], [ -64.890409332542504, 18.317613976229154 ], [ -64.890468007202571, 18.317644821647662 ], [ -64.890522320651542, 18.317673486460592 ], [ -64.890567584260111, 18.317688910479546 ], [ -64.890633298412524, 18.317695951281564 ], [ -64.890720470247402, 18.317737859507872 ], [ -64.890768245808772, 18.317736184436114 ], [ -64.890858770406567, 18.317754120407869 ], [ -64.890910739540857, 18.317776248642872 ], [ -64.890951475609825, 18.31778965969437 ], [ -64.891023727649895, 18.31783140159223 ], [ -64.891044010555675, 18.317851016564759 ], [ -64.891073348540544, 18.317872975851969 ], [ -64.891102517577565, 18.317901306698275 ], [ -64.891129673647242, 18.317923268604829 ], [ -64.891167896453737, 18.31795394638516 ], [ -64.891204106292832, 18.317967188488865 ], [ -64.891238135526407, 18.317982612507819 ], [ -64.891274177727382, 18.317998201545549 ], [ -64.89129228264693, 18.318013456616654 ], [ -64.891307874304005, 18.31804178746296 ], [ -64.891314578520053, 18.318063412783545 ], [ -64.891325642637582, 18.31808520574225 ], [ -64.891333690578165, 18.31814605838855 ], [ -64.891310219928357, 18.318245467807913 ], [ -64.89131206525758, 18.318280168903755 ], [ -64.891298151291664, 18.318314871309212 ], [ -64.891277530490242, 18.318351416424605 ], [ -64.891254396426405, 18.318401203643703 ], [ -64.891235957540232, 18.31843573841104 ], [ -64.891217348396538, 18.318474461512608 ], [ -64.891189689412442, 18.318532799586762 ], [ -64.891187005892505, 18.318567500682548 ], [ -64.891188849912055, 18.31861527755359 ], [ -64.891197568405232, 18.318660876438457 ], [ -64.891201759358864, 18.31870848436165 ], [ -64.89120125644439, 18.318754081936845 ], [ -64.891205110812052, 18.3188385715614 ], [ -64.891206619555362, 18.318916690936476 ], [ -64.891203938654712, 18.31896430147907 ], [ -64.891201087496597, 18.319038060952778 ], [ -64.891218689501727, 18.319103104552653 ], [ -64.891232100553225, 18.319127076807206 ], [ -64.891245511604723, 18.319142331878311 ], [ -64.891254396426405, 18.319166305442593 ], [ -64.891265460543877, 18.319192455683378 ], [ -64.891283565463425, 18.319212069346236 ], [ -64.891303849678877, 18.319229503713188 ], [ -64.891346597405573, 18.319253812553768 ], [ -64.891367050568817, 18.319264707723448 ], [ -64.89139185970447, 18.319273592545073 ], [ -64.891430248839413, 18.319291194550203 ], [ -64.891473331842462, 18.319308965503126 ], [ -64.89151406791143, 18.319320195949103 ], [ -64.89155933152, 18.319327069113001 ], [ -64.891581961359748, 18.319335787606178 ], [ -64.891631749888518, 18.319349197348004 ], [ -64.89168623359501, 18.319360596741831 ], [ -64.89175177879963, 18.319384905582353 ], [ -64.891873987006591, 18.319414074619431 ], [ -64.891926122469386, 18.319431842953009 ], [ -64.891971384768283, 18.319449444958138 ], [ -64.892018826363028, 18.319462856009636 ], [ -64.892141203517838, 18.319492025046713 ], [ -64.892181939586806, 18.319496718914763 ], [ -64.892220662688374, 18.319497055500676 ], [ -64.892304481760391, 18.319508622532624 ], [ -64.892383774602536, 18.319528737800226 ], [ -64.892440268657026, 18.319542148851781 ], [ -64.892512855973393, 18.319557906837304 ], [ -64.892574043895934, 18.319569307540746 ], [ -64.892632884884506, 18.319576179394971 ], [ -64.892685187985421, 18.319576683619118 ], [ -64.892739335105944, 18.319598810544448 ], [ -64.892802703634061, 18.319629655962956 ], [ -64.892877302608099, 18.319654131131983 ], [ -64.892954414844667, 18.319669889117506 ], [ -64.893026834522914, 18.319683467807181 ], [ -64.893115347462924, 18.319695034839071 ], [ -64.893178714681369, 18.319702075641146 ], [ -64.893224144618387, 18.319700231621539 ], [ -64.893274100785277, 18.319700566897836 ], [ -64.893312657558397, 18.319703081469981 ], [ -64.893419275418012, 18.319706098956601 ], [ -64.893453305961202, 18.319706435542571 ], [ -64.893485157208602, 18.319713139758619 ], [ -64.893532766441467, 18.319713475034916 ], [ -64.893569143918739, 18.319709451719461 ], [ -64.893605521395955, 18.319705428404006 ], [ -64.893648604399004, 18.319710123581729 ], [ -64.89369604599375, 18.319716995435954 ], [ -64.893786905867785, 18.319719846594069 ], [ -64.893879945037725, 18.319714145587511 ], [ -64.89392755427059, 18.319725378652834 ], [ -64.893972816569487, 18.319738788394659 ], [ -64.894006679474558, 18.319764939945117 ], [ -64.89404490097138, 18.319793438429599 ], [ -64.894090163270278, 18.319819926566026 ], [ -64.894151015916577, 18.319863678811942 ], [ -64.89427305648536, 18.319912461511876 ], [ -64.894295687634838, 18.319938613062334 ], [ -64.894340614657438, 18.319982366617921 ], [ -64.894397108711928, 18.320008685806499 ], [ -64.894444382668553, 18.320050260066239 ], [ -64.894482939441673, 18.320065850413641 ], [ -64.894537086562195, 18.320090157944492 ], [ -64.894593748254863, 18.320099210404294 ], [ -64.894650577585651, 18.320099714628384 ], [ -64.894718638672146, 18.320100216233129 ], [ -64.894793572922481, 18.320083452418714 ], [ -64.894911590175866, 18.320088816839359 ], [ -64.894970598802558, 18.320097870608777 ], [ -64.895027092857106, 18.320115638942411 ], [ -64.895124490618741, 18.320140281749559 ], [ -64.895187857837186, 18.320166768576314 ], [ -64.895255751285504, 18.320184705857741 ], [ -64.895348622817266, 18.320198452185537 ], [ -64.895439315053181, 18.320212198513332 ], [ -64.895543418340594, 18.320239020616384 ], [ -64.895593374507541, 18.320245893780282 ], [ -64.895643163036311, 18.320263663423532 ], [ -64.895672499711509, 18.320279086132814 ], [ -64.895747098685604, 18.320310099189442 ], [ -64.895792360984444, 18.320321164616587 ], [ -64.895937032702705, 18.320391738965554 ], [ -64.895966369377959, 18.320418058154189 ], [ -64.896022695794329, 18.320461811709777 ], [ -64.896061084929272, 18.320488130898354 ], [ -64.89610165336012, 18.320512270791085 ], [ -64.896171558466165, 18.320573626351802 ], [ -64.896277841049482, 18.320615535887782 ], [ -64.89630717772468, 18.320624420709407 ], [ -64.896343387563775, 18.320642190352714 ], [ -64.896383955994622, 18.320668509541292 ], [ -64.896411113373972, 18.32068812320415 ], [ -64.896435923819297, 18.32070572520928 ], [ -64.896478671545992, 18.320740761581362 ], [ -64.896542038764437, 18.320769427703965 ], [ -64.896636754315807, 18.320835309494555 ], [ -64.896681848976527, 18.320870345866695 ], [ -64.89670867107958, 18.320905214600657 ], [ -64.896731302229, 18.320924828263458 ], [ -64.896753764430628, 18.320948968156188 ], [ -64.8967762292516, 18.320981657594302 ], [ -64.896794166533027, 18.321003450553007 ], [ -64.896805398288677, 18.321012167736512 ], [ -64.896814283110302, 18.321025243511713 ], [ -64.896852504607125, 18.321073188020932 ], [ -64.896870441888495, 18.321101518867238 ], [ -64.896895083386028, 18.321127838055872 ], [ -64.89691084137155, 18.321149631014578 ], [ -64.89691285433895, 18.321184332110363 ], [ -64.896912351424533, 18.321236299935038 ], [ -64.896927940462263, 18.321275359622575 ], [ -64.896945711415185, 18.321310228356538 ], [ -64.89697052186051, 18.321336379906995 ], [ -64.89699952325941, 18.321386503712063 ], [ -64.89701075501506, 18.32140611737492 ], [ -64.89703321852636, 18.321432268925378 ], [ -64.897051154498058, 18.321456408818108 ], [ -64.897080492482928, 18.321476022480965 ], [ -64.897114355388055, 18.321502341669543 ], [ -64.897138998195203, 18.321537210403505 ], [ -64.897142686234361, 18.321573755518898 ], [ -64.897120725637535, 18.321620023646631 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_916", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.912268002795599, 18.364766052048424 ], [ -64.912293651431582, 18.364845847804986 ], [ -64.912256100487355, 18.364784995158686 ], [ -64.912249897876052, 18.364755155569071 ], [ -64.912245204008002, 18.364703020106276 ], [ -64.912223913963714, 18.364607298726071 ], [ -64.912214023313197, 18.364548793013796 ], [ -64.91220564140599, 18.364474361677878 ], [ -64.912203629748262, 18.364398756874948 ], [ -64.912201115176117, 18.364300856198838 ], [ -64.912185524828715, 18.364191723767078 ], [ -64.912193906735922, 18.363928028966541 ], [ -64.91218787176274, 18.36374630921847 ], [ -64.912176472368969, 18.363672716073268 ], [ -64.912162055488579, 18.363596105441445 ], [ -64.912124839820592, 18.363525194506565 ], [ -64.91209466495468, 18.363516980237478 ], [ -64.912030124269222, 18.363463168393253 ], [ -64.911961560268367, 18.363365938269737 ], [ -64.911934067612719, 18.363231660116412 ], [ -64.911910598272584, 18.363151361445432 ], [ -64.911891655162322, 18.36307475081361 ], [ -64.911880423406672, 18.362979532347822 ], [ -64.911864330144851, 18.36291750623451 ], [ -64.911913951035444, 18.362758082359619 ], [ -64.91190523385194, 18.362727739855529 ], [ -64.911901042898364, 18.362680130622607 ], [ -64.911881093959209, 18.362598155570197 ], [ -64.911835999298489, 18.362532609055904 ], [ -64.911769949869779, 18.362475276810642 ], [ -64.911749498016206, 18.362405874619071 ], [ -64.911746815805884, 18.362374023371672 ], [ -64.911702559335879, 18.362158440718531 ], [ -64.911623769408209, 18.362019468697156 ], [ -64.911521342502226, 18.361992646594103 ], [ -64.911412880623061, 18.361929783599749 ], [ -64.911382538118971, 18.361896254661303 ], [ -64.911319338538704, 18.361839426640131 ], [ -64.911212385402791, 18.361748900732721 ], [ -64.911172822800836, 18.361712355617328 ], [ -64.911071234085568, 18.361677320554918 ], [ -64.910985235717703, 18.361649323675181 ], [ -64.910856321984966, 18.361603055547448 ], [ -64.910758756585153, 18.361575730529978 ], [ -64.910681140124495, 18.36153885144796 ], [ -64.910627495918391, 18.361523093462438 ], [ -64.910561781765921, 18.361505491457308 ], [ -64.910519872229941, 18.36149174381984 ], [ -64.910484166614935, 18.361466765736338 ], [ -64.910402860805448, 18.361407086557108 ], [ -64.910349216599343, 18.36137607350048 ], [ -64.910281658427323, 18.361343216424245 ], [ -64.910234049194401, 18.361308516638076 ], [ -64.910198343579452, 18.361281525587231 ], [ -64.91017453765329, 18.361256547503785 ], [ -64.91013095173588, 18.361231401782163 ], [ -64.910032548145352, 18.36118328963488 ], [ -64.909978903939248, 18.361150432558645 ], [ -64.909907490089893, 18.361098464733971 ], [ -64.909812271624105, 18.361025206865065 ], [ -64.90971487386247, 18.360974915421878 ], [ -64.909637425039932, 18.360926635636417 ], [ -64.909544219541544, 18.360855389425183 ], [ -64.909490910611737, 18.360801577580958 ], [ -64.909419327814589, 18.360768552866602 ], [ -64.909379597574457, 18.360741564435102 ], [ -64.909365683608485, 18.360728153383548 ], [ -64.909335844018869, 18.360714573384257 ], [ -64.909213803450029, 18.360639640443537 ], [ -64.909189998833597, 18.360610805373085 ], [ -64.909114561668787, 18.360562694535417 ], [ -64.908999226625724, 18.360517933841322 ], [ -64.908949605735074, 18.360479378377875 ], [ -64.908906019817664, 18.360444677282089 ], [ -64.908878359523897, 18.360413999501702 ], [ -64.908851034506426, 18.360373597399359 ], [ -64.908801582563626, 18.360281900644225 ], [ -64.908766209605574, 18.360220543773892 ], [ -64.908713738866481, 18.360169749416229 ], [ -64.908639476478356, 18.360105208730772 ], [ -64.908610976684201, 18.360045026637124 ], [ -64.908587842620364, 18.359957185559324 ], [ -64.908495138726721, 18.359834474437889 ], [ -64.908342252739374, 18.359729531650089 ], [ -64.908245022615858, 18.359675384529567 ], [ -64.908211327348909, 18.359640852381574 ], [ -64.908147792492343, 18.359594584253841 ], [ -64.908086438241298, 18.359546472106501 ], [ -64.907993231433238, 18.359469526198438 ], [ -64.907928020195243, 18.359400291644931 ], [ -64.907794580232633, 18.359337258393111 ], [ -64.907672204387495, 18.359193426175239 ], [ -64.907625768621585, 18.359093009617311 ], [ -64.907572627329955, 18.359034002300291 ], [ -64.907490484639368, 18.358946661517621 ], [ -64.907410018330268, 18.358904418015015 ], [ -64.907267693546032, 18.358838536224425 ], [ -64.907094689671737, 18.358768797446828 ], [ -64.907017074520752, 18.35868313435526 ], [ -64.906986229102245, 18.3586499433124 ], [ -64.906922526607502, 18.358583726245513 ], [ -64.90683904150211, 18.35848750195089 ], [ -64.906781710566577, 18.358421284884002 ], [ -64.906682301147157, 18.35833679525939 ], [ -64.906613234231827, 18.358189944245282 ], [ -64.906488342504872, 18.358070921163005 ], [ -64.906441740410514, 18.357982911137412 ], [ -64.906427491168301, 18.35795608903436 ], [ -64.906431682121877, 18.357926249444745 ], [ -64.906421622523567, 18.357852991575839 ], [ -64.906299583264399, 18.357742684367395 ], [ -64.906124232456136, 18.357660878262777 ], [ -64.906070254283406, 18.357580244315557 ], [ -64.905936311406379, 18.357467088568342 ], [ -64.905751071257271, 18.357402212606587 ], [ -64.905561806482979, 18.357325434336644 ], [ -64.905521406999981, 18.357282686609949 ], [ -64.905449490236208, 18.357229880594559 ], [ -64.9051968595532, 18.357156119811236 ], [ -64.90508772712144, 18.357127286050456 ], [ -64.904640803829523, 18.357017315427981 ], [ -64.904547429383342, 18.356966185794079 ], [ -64.904361183405342, 18.356914217969404 ], [ -64.904152473916042, 18.356839786633486 ], [ -64.904049208819345, 18.356810952872706 ], [ -64.903959522412322, 18.356782119111926 ], [ -64.903823064963092, 18.356730654201726 ], [ -64.903741257548859, 18.356700144059516 ], [ -64.903639836471712, 18.356663934220421 ], [ -64.903541432881184, 18.356620515941131 ], [ -64.903452919941174, 18.356561172038141 ], [ -64.903323670932139, 18.356542228927879 ], [ -64.903298860486814, 18.356543234756771 ], [ -64.903283940692006, 18.356536026316576 ], [ -64.903217220710701, 18.356482046834174 ], [ -64.902884291356713, 18.356414656300331 ], [ -64.902838358505278, 18.356405268564231 ], [ -64.902774991286833, 18.356392863341568 ], [ -64.902743140039433, 18.356382134500393 ], [ -64.902746157526053, 18.356368388172541 ], [ -64.902781864450731, 18.356354474206626 ], [ -64.902864845331976, 18.356321784768511 ], [ -64.903282431948696, 18.356272163877918 ], [ -64.903313780281621, 18.356247521070713 ], [ -64.903445879139099, 18.356222375349148 ], [ -64.903620055170734, 18.356215334547073 ], [ -64.903698342183986, 18.356225560473888 ], [ -64.903784508189972, 18.356226231026426 ], [ -64.903907386949527, 18.356262776141818 ], [ -64.903989362001937, 18.356276354831493 ], [ -64.90406932539662, 18.356297644875781 ], [ -64.904118275734675, 18.356288592416035 ], [ -64.904143756732594, 18.356287083672726 ], [ -64.904190360136624, 18.356307870802596 ], [ -64.904235119521047, 18.356349277424158 ], [ -64.904271832274617, 18.356383307967405 ], [ -64.904310891962155, 18.356392863341568 ], [ -64.90436168631976, 18.356398898314751 ], [ -64.90442421534749, 18.356410632984876 ], [ -64.904498311407167, 18.356441143127086 ], [ -64.904581124650292, 18.356460421513646 ], [ -64.90500424332572, 18.356605596146323 ], [ -64.905181939758393, 18.356635100459641 ], [ -64.905361480210615, 18.356670136831781 ], [ -64.905496931830953, 18.356679189291526 ], [ -64.905561640154531, 18.356691594514189 ], [ -64.905633221642006, 18.356719254807956 ], [ -64.905677813388309, 18.356728642543999 ], [ -64.905755262210846, 18.356728977820296 ], [ -64.905801865614876, 18.356737862641921 ], [ -64.905850479366961, 18.356760661429519 ], [ -64.905887527396771, 18.356768372784131 ], [ -64.905994817118653, 18.356799218202639 ], [ -64.906121719193607, 18.356837439699461 ], [ -64.906164299282239, 18.356871470242709 ], [ -64.906212745396147, 18.356924108619921 ], [ -64.906278796134586, 18.356988146390904 ], [ -64.906343001543689, 18.357016644875387 ], [ -64.906420953280701, 18.357039611301161 ], [ -64.906499909536819, 18.357066768680454 ], [ -64.906562272236044, 18.357091579125779 ], [ -64.906636199347872, 18.357140697101954 ], [ -64.906720187367739, 18.357147067351434 ], [ -64.906811885432489, 18.357179421513251 ], [ -64.906892016465292, 18.357183780105004 ], [ -64.906954545493022, 18.357184283019421 ], [ -64.906986061464124, 18.357167854481304 ], [ -64.907099217211282, 18.357160143126691 ], [ -64.907167613574074, 18.357162490060716 ], [ -64.907240199580713, 18.357144385141112 ], [ -64.907289654142858, 18.357125608359354 ], [ -64.907320499561365, 18.357130135898899 ], [ -64.90731630860779, 18.357163663527672 ], [ -64.90730021534597, 18.357215798990467 ], [ -64.907295855444545, 18.357256870335789 ], [ -64.90729552147792, 18.357296096351774 ], [ -64.907289486504737, 18.357325601974821 ], [ -64.90730675323357, 18.357361141261322 ], [ -64.907359056334485, 18.357415791296262 ], [ -64.90743667148547, 18.357489216803344 ], [ -64.907435499328187, 18.357606898780432 ], [ -64.907404318633382, 18.357759281853305 ], [ -64.90738403441793, 18.35789825387468 ], [ -64.907461986154942, 18.358115680547485 ], [ -64.907575812454695, 18.358230008451983 ], [ -64.907655608211257, 18.358237887444773 ], [ -64.907720316534835, 18.358262196285352 ], [ -64.907789886364583, 18.358293712256398 ], [ -64.907842355794003, 18.35829170059867 ], [ -64.908174783543188, 18.358340148022307 ], [ -64.908302354861121, 18.358362108619133 ], [ -64.908397908603206, 18.358387589617053 ], [ -64.908525313592634, 18.358428660962318 ], [ -64.908561020517311, 18.35846520607771 ], [ -64.908598403823419, 18.358528404348306 ], [ -64.908618017486276, 18.358566627154858 ], [ -64.908653556772776, 18.358607027947528 ], [ -64.908708709722191, 18.358681794559743 ], [ -64.908746094337971, 18.358760584487413 ], [ -64.908763527395251, 18.358816071403453 ], [ -64.908769059454016, 18.358857982249106 ], [ -64.908764700862264, 18.358911291178913 ], [ -64.908779955933369, 18.358982034475673 ], [ -64.908816502358434, 18.359047413351846 ], [ -64.908835108882727, 18.359068200481659 ], [ -64.908851537420844, 18.359069709224968 ], [ -64.908888920726952, 18.359093512531729 ], [ -64.908904678712531, 18.359114468609448 ], [ -64.908910378409416, 18.359192586674851 ], [ -64.908962513872211, 18.359338768446094 ], [ -64.909008446723647, 18.359462653034541 ], [ -64.909041806714299, 18.359529708292087 ], [ -64.909126297648527, 18.359683935384567 ], [ -64.909321091862182, 18.359941258625952 ], [ -64.90937121566725, 18.360012338508682 ], [ -64.909443970621737, 18.360115268329082 ], [ -64.909483365585572, 18.360170924192914 ], [ -64.909525107483432, 18.360199925591814 ], [ -64.90957053742045, 18.360249880449089 ], [ -64.909630216599737, 18.360278881847989 ], [ -64.909697608443309, 18.360317607568902 ], [ -64.90975024551085, 18.360364043334812 ], [ -64.909813612729295, 18.360406454475537 ], [ -64.909877316533652, 18.360443334867227 ], [ -64.90992693611463, 18.360476025615014 ], [ -64.909964654697035, 18.360493458672295 ], [ -64.910030202521, 18.360534028412815 ], [ -64.91010362671841, 18.360580462869052 ], [ -64.910184260665631, 18.36061047140646 ], [ -64.91024980717998, 18.360637627476137 ], [ -64.91030948635921, 18.360662774507432 ], [ -64.910373188853953, 18.360695797912115 ], [ -64.910492211936173, 18.36076721176147 ], [ -64.910587765678258, 18.360807947830438 ], [ -64.910647444857545, 18.360825717473688 ], [ -64.910695221728588, 18.36083946380154 ], [ -64.910759091861451, 18.360855055458558 ], [ -64.910816759382953, 18.360870813444137 ], [ -64.910872582884906, 18.36088657142966 ], [ -64.910950031707443, 18.360932839557393 ], [ -64.911009207972256, 18.36096318075181 ], [ -64.911087159709268, 18.36100827541253 ], [ -64.911158741196743, 18.36102789038506 ], [ -64.911218420375974, 18.361060913789743 ], [ -64.911256306596556, 18.361070636802083 ], [ -64.911335767076821, 18.361101817496888 ], [ -64.911393266960204, 18.361126627942213 ], [ -64.911417909767351, 18.36113249658689 ], [ -64.911455125435339, 18.361128974876181 ], [ -64.911545147118659, 18.361120257692733 ], [ -64.911576998366002, 18.36112428231786 ], [ -64.911641539051459, 18.361170550445593 ], [ -64.911715132196662, 18.361201729830668 ], [ -64.911860474467517, 18.361246656853268 ], [ -64.911884111445829, 18.361267780569108 ], [ -64.911909927719989, 18.361297786487228 ], [ -64.91194379062506, 18.361307509499568 ], [ -64.911985700161097, 18.361298289401645 ], [ -64.91202727442078, 18.361300133421253 ], [ -64.912073374910392, 18.361310526986131 ], [ -64.912113440426822, 18.361308850604701 ], [ -64.912161552574162, 18.361276831719181 ], [ -64.912209999997742, 18.361220002388393 ], [ -64.91224905968528, 18.361057393388705 ], [ -64.912318964791382, 18.360908027802395 ], [ -64.912344948703662, 18.360760338597572 ], [ -64.912345619256257, 18.360681382341397 ], [ -64.912334722776905, 18.360319954502927 ], [ -64.912345116341839, 18.360179641376419 ], [ -64.912348972019117, 18.360122141493036 ], [ -64.912347966190282, 18.360080733561745 ], [ -64.912339081368657, 18.360009991574657 ], [ -64.912332878757297, 18.359946790684717 ], [ -64.912334722776905, 18.359898847485226 ], [ -64.912333549309892, 18.359847382574969 ], [ -64.912326676145994, 18.359814693136912 ], [ -64.912309577055282, 18.359766579679899 ], [ -64.912292477964627, 18.359710925125796 ], [ -64.912279905103787, 18.359651244636837 ], [ -64.912272361387295, 18.359590896214684 ], [ -64.912270517367745, 18.359575473505402 ], [ -64.912270852644042, 18.359519817641626 ], [ -64.91226649405229, 18.359474555342729 ], [ -64.912263979480144, 18.359462150120066 ], [ -64.912267499881125, 18.359452593436174 ], [ -64.912274875959497, 18.359447396653763 ], [ -64.912295327813069, 18.359443708614549 ], [ -64.912421391697364, 18.359402469631164 ], [ -64.91245927791789, 18.359324685532329 ], [ -64.912493476099257, 18.359249417315368 ], [ -64.912543599904325, 18.359185882458746 ], [ -64.912554831659975, 18.359130897147566 ], [ -64.912599591044398, 18.359057471640483 ], [ -64.91263781254122, 18.358974658397301 ], [ -64.912696485891615, 18.35886502305118 ], [ -64.912786675213113, 18.358750526198776 ], [ -64.912839481228445, 18.358698558374158 ], [ -64.912963365816893, 18.358636867537143 ], [ -64.913033438561058, 18.3585899275472 ], [ -64.913161514103081, 18.358503930488951 ], [ -64.913194035903018, 18.35847476145193 ], [ -64.913233263228733, 18.358428996238615 ], [ -64.913276849146143, 18.3583448418903 ], [ -64.913301659591468, 18.35826605196263 ], [ -64.91334440731822, 18.358131941447425 ], [ -64.913353961382711, 18.35811031612684 ], [ -64.913401069010888, 18.357959943402022 ], [ -64.913460915828296, 18.357819631585187 ], [ -64.913476673813818, 18.357741344571934 ], [ -64.913527635809601, 18.357652161079329 ], [ -64.913609443223891, 18.357500783835292 ], [ -64.913686053855656, 18.357357453222164 ], [ -64.913708182090659, 18.357316046600602 ], [ -64.913732154345269, 18.357260223098649 ], [ -64.913750929817411, 18.357210769846176 ], [ -64.913770040565794, 18.357145390970004 ], [ -64.913785630913196, 18.357061907174284 ], [ -64.913795018649296, 18.356954786400252 ], [ -64.913795521563713, 18.356881193255049 ], [ -64.913791162971961, 18.356812461616016 ], [ -64.913761657348971, 18.356733839326466 ], [ -64.913739027509166, 18.356659072714251 ], [ -64.913709187919551, 18.356613978053531 ], [ -64.913664428535071, 18.356570392136064 ], [ -64.913600390764088, 18.356509204213523 ], [ -64.913500646068428, 18.356420355997216 ], [ -64.913415988805696, 18.356339722049938 ], [ -64.913374414545956, 18.356302506381951 ], [ -64.913327978780103, 18.356242994840841 ], [ -64.913254888549318, 18.35616571365648 ], [ -64.913191688968993, 18.356110728345243 ], [ -64.91313871531554, 18.356047864041216 ], [ -64.913080712517683, 18.355967397732115 ], [ -64.913022709719883, 18.355901348303405 ], [ -64.912969736066373, 18.355825240586 ], [ -64.912871500113965, 18.355751815078918 ], [ -64.91275985311006, 18.3556708458554 ], [ -64.912667149216418, 18.355621560241048 ], [ -64.912578971552705, 18.35554562016182 ], [ -64.91254946723933, 18.355496669823765 ], [ -64.912436311492172, 18.355404636482717 ], [ -64.912339919559372, 18.3553142795231 ], [ -64.912201953366832, 18.355196429907835 ], [ -64.912040014919739, 18.354992917201059 ], [ -64.911845387034532, 18.354821758656044 ], [ -64.911710941243086, 18.354785548816892 ], [ -64.911596109114441, 18.354688653969674 ], [ -64.911476415479626, 18.354590082741026 ], [ -64.911444564232227, 18.354580192090509 ], [ -64.911444396594106, 18.354569295611157 ], [ -64.911421933082806, 18.354544317527711 ], [ -64.911373318021049, 18.354490170407189 ], [ -64.911338449287086, 18.354451278357772 ], [ -64.911305089296434, 18.354428647208351 ], [ -64.911260497550131, 18.354365950542501 ], [ -64.911192436463693, 18.354307780106524 ], [ -64.911162429235901, 18.354278778707624 ], [ -64.911159244111161, 18.354245083440674 ], [ -64.911174499182266, 18.354234020632816 ], [ -64.911325205873709, 18.354238377914896 ], [ -64.911388908368451, 18.354238880829314 ], [ -64.911427297503394, 18.354250447861261 ], [ -64.911537771040287, 18.354272073181846 ], [ -64.911650423873084, 18.354233013494309 ], [ -64.911723346465749, 18.354212896917034 ], [ -64.911810518300626, 18.354218262647294 ], [ -64.911964074840512, 18.354288334081787 ], [ -64.91215736162053, 18.354395454855819 ], [ -64.912319300067622, 18.354467203981471 ], [ -64.912416194914897, 18.354496709604462 ], [ -64.912549970153805, 18.354544149889534 ], [ -64.91259087386095, 18.354597961733759 ], [ -64.912612331543357, 18.354692844923306 ], [ -64.91262808952888, 18.354806503584939 ], [ -64.912657593842255, 18.354877079243522 ], [ -64.91270838819986, 18.354949163645472 ], [ -64.912776784562595, 18.354983361826839 ], [ -64.912817017717202, 18.354977326853657 ], [ -64.912848868964545, 18.354977494491777 ], [ -64.912890107947987, 18.355028121211262 ], [ -64.913025727206445, 18.355168937252245 ], [ -64.913195209370031, 18.35532718766018 ], [ -64.913296798085298, 18.355388710859017 ], [ -64.913375420374848, 18.355406983416742 ], [ -64.913420515035568, 18.355431290947593 ], [ -64.91345203100667, 18.35545392209707 ], [ -64.913500478430251, 18.35548627625883 ], [ -64.913558648866228, 18.355528353432987 ], [ -64.913627045228964, 18.355575962665853 ], [ -64.913651688036168, 18.355617704563713 ], [ -64.913683036369093, 18.35567889248631 ], [ -64.913702650031951, 18.355728513376903 ], [ -64.913729304496826, 18.355757514775803 ], [ -64.913767525993649, 18.35579473044379 ], [ -64.913822846581184, 18.355858768214773 ], [ -64.913863078426061, 18.355888943080743 ], [ -64.913921250171711, 18.355932528998153 ], [ -64.913959470358861, 18.355977623658873 ], [ -64.913995849145806, 18.35603076495056 ], [ -64.914057372344644, 18.356082397498881 ], [ -64.914137000463029, 18.356169401695638 ], [ -64.914175054321731, 18.356224051730578 ], [ -64.914199697128879, 18.356286748396428 ], [ -64.914212437627839, 18.356355647673638 ], [ -64.914231883652519, 18.356413650471438 ], [ -64.914335819301812, 18.356595370219566 ], [ -64.914570008479302, 18.356841965929334 ], [ -64.914630527158977, 18.357002395633174 ], [ -64.914692553272232, 18.357127621326754 ], [ -64.914717866631975, 18.357297438766636 ], [ -64.914626168567224, 18.357630535758744 ], [ -64.914451824897469, 18.35782918695935 ], [ -64.914338501512134, 18.357825666558369 ], [ -64.914283348562719, 18.357838909971747 ], [ -64.914228027975241, 18.357848130069669 ], [ -64.914197685471152, 18.357870258304672 ], [ -64.914139515035174, 18.35799883545144 ], [ -64.913973050358209, 18.35821626343386 ], [ -64.913922758915021, 18.358292203513088 ], [ -64.913920411980996, 18.358379710624263 ], [ -64.913930973184051, 18.358414244081928 ], [ -64.913936002328398, 18.358443748395302 ], [ -64.913928626250026, 18.358525723447713 ], [ -64.913925441125286, 18.358571656299148 ], [ -64.913930302631456, 18.358640889542926 ], [ -64.913936672880936, 18.35868313435526 ], [ -64.913907503843916, 18.358762762473646 ], [ -64.913812620654369, 18.358968623424119 ], [ -64.913688568427858, 18.359196777628483 ], [ -64.913649173463966, 18.359256624445891 ], [ -64.913619166236231, 18.359326698499729 ], [ -64.913620842617661, 18.359428453543444 ], [ -64.913677671948449, 18.359582514307476 ], [ -64.913708685005133, 18.359664992274304 ], [ -64.913729975049421, 18.359745961497879 ], [ -64.913730645601959, 18.359772783600931 ], [ -64.913723437161764, 18.359794576559636 ], [ -64.913677335362536, 18.359837827200806 ], [ -64.913629559801166, 18.359862805284251 ], [ -64.913558984142526, 18.359887446781727 ], [ -64.913497124357718, 18.359907060444584 ], [ -64.913444152013881, 18.359931872199581 ], [ -64.913385813939783, 18.359953162243869 ], [ -64.913318591044003, 18.359993060122122 ], [ -64.913155646768075, 18.360117781591612 ], [ -64.913037126600273, 18.360182323586685 ], [ -64.912966718579753, 18.36028424757825 ], [ -64.912934532056113, 18.360358008361629 ], [ -64.91290905105825, 18.360448531649695 ], [ -64.912881055488185, 18.360628407378215 ], [ -64.912885749356235, 18.360906183782845 ], [ -64.912861441825328, 18.361055549369155 ], [ -64.912839313590325, 18.361186308431115 ], [ -64.912784998831683, 18.361364003554115 ], [ -64.912729678244148, 18.361576402392188 ], [ -64.91275314758434, 18.361665919851418 ], [ -64.91276622335954, 18.361718559538303 ], [ -64.91278080787805, 18.361779244546426 ], [ -64.912798577521357, 18.361818302924348 ], [ -64.912882061317077, 18.361945707913776 ], [ -64.91296873023748, 18.362045955523854 ], [ -64.913025559568325, 18.362113346057754 ], [ -64.913120275119695, 18.362157268561191 ], [ -64.913148773604178, 18.362182077696787 ], [ -64.913256732568868, 18.362256341394584 ], [ -64.913327475865685, 18.362287186813091 ], [ -64.91338732137342, 18.362316691126466 ], [ -64.913404086497451, 18.362338316446994 ], [ -64.913397883886148, 18.362356925590689 ], [ -64.913373576355241, 18.362366814931477 ], [ -64.913346251337771, 18.362375364476861 ], [ -64.913287410349255, 18.362383578745892 ], [ -64.91311641944236, 18.362429680545176 ], [ -64.91301047213534, 18.362459183548822 ], [ -64.912923300300463, 18.362485838013754 ], [ -64.912856747957278, 18.362511319011617 ], [ -64.912790027975973, 18.362543840811554 ], [ -64.91273252809259, 18.362600837780519 ], [ -64.912704029608108, 18.362722207796764 ], [ -64.91267636931434, 18.362791274712094 ], [ -64.91263932128453, 18.362863359114044 ], [ -64.912595064814525, 18.362913147642814 ], [ -64.912564387034195, 18.362976347223082 ], [ -64.9125637164816, 18.363044073033279 ], [ -64.912589197479463, 18.363422264686108 ], [ -64.912582659591862, 18.363814873219383 ], [ -64.912561537185695, 18.363993407842713 ], [ -64.912532703424972, 18.364192561957793 ], [ -64.912527339004328, 18.364286104042151 ], [ -64.912553658192962, 18.364394398283196 ], [ -64.912569248540365, 18.364483414137624 ], [ -64.912575283513547, 18.364549295928214 ], [ -64.912580145019717, 18.364575279840551 ], [ -64.912583833058875, 18.364603945963154 ], [ -64.912604284912447, 18.364647531880621 ], [ -64.912686595241155, 18.364737385925821 ], [ -64.91273420447402, 18.364783821691674 ], [ -64.91277410235233, 18.364827407609141 ], [ -64.91280327138935, 18.364858253027649 ], [ -64.912729007691553, 18.364815840577194 ], [ -64.912650217763883, 18.364777451442194 ], [ -64.912575786427965, 18.364734871353619 ], [ -64.912510407551792, 18.364679886042381 ], [ -64.912462798318927, 18.364608136916786 ], [ -64.91243698204471, 18.364528173522103 ], [ -64.912447543247822, 18.364444019173789 ], [ -64.912409154112822, 18.364328013578131 ], [ -64.912376297036587, 18.364267328570008 ], [ -64.912354504077882, 18.364238662447406 ], [ -64.912337740263467, 18.364237321342273 ], [ -64.912320473534635, 18.364255761538061 ], [ -64.912297842385215, 18.364328684130726 ], [ -64.912278731636775, 18.364424070234691 ], [ -64.912269008624435, 18.364505877648924 ], [ -64.912269511538852, 18.364594055312693 ], [ -64.912272361387295, 18.364708049250623 ], [ -64.912268002795599, 18.364766052048424 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_505", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.994505732396192, 18.361101817496888 ], [ -64.994420404580865, 18.361129814376568 ], [ -64.994335075455922, 18.361148254572413 ], [ -64.994244887444097, 18.361153617683385 ], [ -64.994160062543244, 18.361132662915395 ], [ -64.994125024861489, 18.361132327639098 ], [ -64.994071045379087, 18.361117744430203 ], [ -64.993980857367319, 18.361116904929816 ], [ -64.993900557386667, 18.361149929644228 ], [ -64.993844901522834, 18.361216314349235 ], [ -64.993794274803349, 18.361287729508263 ], [ -64.993733589795227, 18.361349420345221 ], [ -64.993682964385414, 18.361420666556455 ], [ -64.993662343584049, 18.361497109550101 ], [ -64.993662177255544, 18.36150180341815 ], [ -64.993696709403537, 18.361578580378421 ], [ -64.993771477325424, 18.361622167605503 ], [ -64.993801149276919, 18.361655861562781 ], [ -64.993815901433607, 18.361694250697781 ], [ -64.993812547361074, 18.361712187979151 ], [ -64.993800477414709, 18.361699782756546 ], [ -64.993789582245029, 18.361693747783363 ], [ -64.993778013903409, 18.361691903763756 ], [ -64.993761754313084, 18.361690731606416 ], [ -64.993717831809704, 18.361689053915313 ], [ -64.993669216747946, 18.361691737435308 ], [ -64.993609034654241, 18.361695256526616 ], [ -64.993544495278456, 18.361708836525963 ], [ -64.993488502828711, 18.361707495420831 ], [ -64.993411724558769, 18.361678660350378 ], [ -64.993344501662989, 18.361631721670051 ], [ -64.993292032233626, 18.361594004397318 ], [ -64.993240733651874, 18.361536167927966 ], [ -64.993169656388488, 18.361451007750816 ], [ -64.993049793805881, 18.361337013812886 ], [ -64.992924569421973, 18.36121715253995 ], [ -64.992783919709495, 18.361102320411305 ], [ -64.992670931600401, 18.360956139949735 ], [ -64.992621647295778, 18.36086678881901 ], [ -64.992542688420258, 18.36079017949686 ], [ -64.992405226451865, 18.360698481432109 ], [ -64.992267763173743, 18.360600076531853 ], [ -64.992152763406978, 18.360495136363397 ], [ -64.99203625358723, 18.360373766347152 ], [ -64.991926116636307, 18.360304530484029 ], [ -64.991682203136804, 18.360174947508369 ], [ -64.991482209521337, 18.360082577581352 ], [ -64.991378944424582, 18.360028933375247 ], [ -64.991318931278727, 18.359975624445497 ], [ -64.991244332304632, 18.359883592414121 ], [ -64.991175265389302, 18.359793066506654 ], [ -64.991103516263706, 18.359676894582549 ], [ -64.991011315284481, 18.359540940047737 ], [ -64.990822890010634, 18.359333236387329 ], [ -64.990719792552056, 18.359205999036021 ], [ -64.990575959024511, 18.359100387005356 ], [ -64.990445201272223, 18.359021763406133 ], [ -64.990317796282739, 18.358979518593856 ], [ -64.990198773200518, 18.358943980616971 ], [ -64.990088298353953, 18.358928390269568 ], [ -64.989944969050498, 18.358910788264438 ], [ -64.989841368677503, 18.358913973389178 ], [ -64.989668533751058, 18.358888826357941 ], [ -64.98954431388637, 18.358876422444951 ], [ -64.98942864356701, 18.358862339531186 ], [ -64.989331916357912, 18.358843396420923 ], [ -64.98917651579842, 18.358819090199688 ], [ -64.989005692529645, 18.35878807714306 ], [ -64.988838724938262, 18.358704424399548 ], [ -64.988671924984942, 18.358607363223825 ], [ -64.988563463105777, 18.358550532583308 ], [ -64.988479308757519, 18.358485490293162 ], [ -64.988316364481534, 18.358345680081015 ], [ -64.988156102415871, 18.35828331738179 ], [ -64.987990978844039, 18.358186423844245 ], [ -64.987789645433111, 18.35808584095787 ], [ -64.987674310390048, 18.358028843988905 ], [ -64.987523100784131, 18.3579237348726 ], [ -64.987459733565686, 18.357855672476433 ], [ -64.987398210366848, 18.357754420347135 ], [ -64.98733333440515, 18.357661548815372 ], [ -64.987274828692875, 18.357583763406865 ], [ -64.987248844780538, 18.357485025849769 ], [ -64.98723694247235, 18.357423335012754 ], [ -64.987240630511508, 18.357398859843727 ], [ -64.98725789724034, 18.357356615031449 ], [ -64.987294442355733, 18.357312190923267 ], [ -64.987326628879373, 18.357284530629499 ], [ -64.987362000527753, 18.357275478169754 ], [ -64.987380440723598, 18.357290061378592 ], [ -64.987398714590938, 18.357328116546967 ], [ -64.987422350259578, 18.357362985280929 ], [ -64.987448501810036, 18.357405397731327 ], [ -64.987478341399708, 18.35744361922815 ], [ -64.987520250935688, 18.357503130769317 ], [ -64.987548917058291, 18.357527773576464 ], [ -64.987570207102578, 18.357556438389395 ], [ -64.987596693929333, 18.357590973156732 ], [ -64.987680848277648, 18.357652663993747 ], [ -64.987735665950709, 18.357712510811155 ], [ -64.987838763409286, 18.357790797824407 ], [ -64.987986620252286, 18.357877802021164 ], [ -64.988145038298399, 18.357954915567404 ], [ -64.988284513234191, 18.35802197082495 ], [ -64.988423988169984, 18.358072429906315 ], [ -64.988541334870774, 18.358103106376973 ], [ -64.988644767605649, 18.358138479335082 ], [ -64.988775692996114, 18.358187428363408 ], [ -64.988949533751452, 18.358261358094637 ], [ -64.989013236246137, 18.35829304039413 ], [ -64.989159919622125, 18.35832388712231 ], [ -64.989303250235253, 18.358351378468285 ], [ -64.989505254198775, 18.358374346203675 ], [ -64.989660654758268, 18.358382225196408 ], [ -64.989805661752825, 18.358401335944848 ], [ -64.989935246038158, 18.3584122324242 ], [ -64.990102716544015, 18.358433353520695 ], [ -64.990299523725071, 18.358466211906602 ], [ -64.990442685390349, 18.358492028180763 ], [ -64.990526505772038, 18.358517006264208 ], [ -64.990651396189321, 18.358541481433235 ], [ -64.990792547506544, 18.358616750959868 ], [ -64.990932190080514, 18.358711634149415 ], [ -64.991112903999749, 18.358891677516056 ], [ -64.991283894906644, 18.359023441097236 ], [ -64.99145957837186, 18.359201137529851 ], [ -64.991573069395372, 18.359324016289406 ], [ -64.991605257228684, 18.359366596377981 ], [ -64.991629397121415, 18.359423424399154 ], [ -64.991644316916222, 18.359494504281884 ], [ -64.991650519527582, 18.359572119432869 ], [ -64.991679520926482, 18.359618556508451 ], [ -64.991753616986102, 18.359660464734759 ], [ -64.991929300451375, 18.359724502505742 ], [ -64.992003396510995, 18.359753002299897 ], [ -64.992172712346132, 18.359750990642169 ], [ -64.992305314118028, 18.359813687308076 ], [ -64.992458869348241, 18.359950312395426 ], [ -64.992690042348841, 18.360116274157974 ], [ -64.992888359582878, 18.360215683577337 ], [ -64.993070245659396, 18.360337053593639 ], [ -64.993155070560306, 18.360366053682867 ], [ -64.993259341485839, 18.360406454475537 ], [ -64.993357746386039, 18.3604637867208 ], [ -64.993475594691631, 18.360564704883473 ], [ -64.993550027337221, 18.360633268884385 ], [ -64.993630493646322, 18.360694121530685 ], [ -64.993707104278144, 18.36076084151199 ], [ -64.993744152307954, 18.36081398280362 ], [ -64.993838532583027, 18.360878858765375 ], [ -64.993915478491147, 18.360927641465253 ], [ -64.994028466600184, 18.36096536135733 ], [ -64.994141622347399, 18.360988661749673 ], [ -64.994215884735524, 18.361022693602592 ], [ -64.994295849439879, 18.361052531882535 ], [ -64.994363072335602, 18.361071811578768 ], [ -64.994427779349508, 18.361081868557733 ], [ -64.994473544562823, 18.361094945642662 ], [ -64.994505732396192, 18.361101817496888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1074", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.897777196609411, 18.332292537136595 ], [ -64.897733945968241, 18.332517507525836 ], [ -64.897752552492591, 18.332590765394741 ], [ -64.897804017402791, 18.332669890598709 ], [ -64.897836371564551, 18.332738286961501 ], [ -64.897863027339156, 18.332810202415601 ], [ -64.897878952962856, 18.332873570943718 ], [ -64.897905607427731, 18.332966776442106 ], [ -64.897971152632351, 18.333019751405288 ], [ -64.898064193111964, 18.333041544363994 ], [ -64.898061007987224, 18.333062834408281 ], [ -64.898019936641958, 18.333088315406144 ], [ -64.898002668603453, 18.333179844523102 ], [ -64.897992945591056, 18.333338599155127 ], [ -64.897979534539559, 18.333611177467617 ], [ -64.897949024397349, 18.333665996450407 ], [ -64.897918515564811, 18.333686614632427 ], [ -64.897926394557601, 18.333733888589052 ], [ -64.897925556366886, 18.33383614916653 ], [ -64.897885323212279, 18.33404150458324 ], [ -64.897870906331889, 18.334122641444935 ], [ -64.897880964620583, 18.334219705240002 ], [ -64.898113646364436, 18.334452722260153 ], [ -64.898313134446141, 18.334543414496068 ], [ -64.898496699523491, 18.334586831465685 ], [ -64.898579345128439, 18.334548274692565 ], [ -64.898899197397554, 18.334537210575093 ], [ -64.899144619640367, 18.3345476054497 ], [ -64.899295327641482, 18.33456822363172 ], [ -64.899503869492605, 18.334576605538928 ], [ -64.899792877652885, 18.334500331493075 ], [ -64.900017680404005, 18.33437108248404 ], [ -64.900281541532991, 18.33431291073839 ], [ -64.900358990355471, 18.33425323155916 ], [ -64.900515230415351, 18.334267482111045 ], [ -64.900693763729066, 18.334305703607868 ], [ -64.900893420758564, 18.334243845132733 ], [ -64.901109338688059, 18.334198078609745 ], [ -64.901523740179982, 18.334217189358185 ], [ -64.901756421923892, 18.33415566746902 ], [ -64.90200586748216, 18.334078552613107 ], [ -64.902205859787955, 18.333953494557647 ], [ -64.902373330293813, 18.333764735317175 ], [ -64.902523701708958, 18.333639340675802 ], [ -64.902691507491113, 18.333418896516434 ], [ -64.902757389281703, 18.333224269940956 ], [ -64.903015887299773, 18.333121003534586 ], [ -64.903280085014671, 18.333064509480039 ], [ -64.903483094807086, 18.332978343473997 ], [ -64.903618714065544, 18.332891508225089 ], [ -64.903879056103222, 18.332565618363503 ], [ -64.90402758349876, 18.332420445040441 ], [ -64.90424920112514, 18.332322712002508 ], [ -64.904587327261595, 18.332219949820228 ], [ -64.904907516116623, 18.332058514287553 ], [ -64.905135671630603, 18.331902275537345 ], [ -64.905302303945746, 18.331786437579865 ], [ -64.905537500261801, 18.331542524080305 ], [ -64.905576223363369, 18.331308501231319 ], [ -64.905572032409793, 18.331086045414224 ], [ -64.905715531970714, 18.330830061968356 ], [ -64.905832374447414, 18.330761833243741 ], [ -64.905907310007478, 18.330604421026521 ], [ -64.905896078251828, 18.330487241963851 ], [ -64.905971012502164, 18.330335529443516 ], [ -64.905990961441319, 18.330160012306749 ], [ -64.905869925391698, 18.329983489341146 ], [ -64.905754256382011, 18.329877039119708 ], [ -64.905620647471551, 18.329735552526131 ], [ -64.905516713131931, 18.329560705941958 ], [ -64.905450831341341, 18.329434474419543 ], [ -64.905389474470951, 18.329312601488823 ], [ -64.905361983125033, 18.32917295891491 ], [ -64.905382098392636, 18.329148651384003 ], [ -64.905433899888806, 18.32916658866543 ], [ -64.905536159156668, 18.329263483512648 ], [ -64.905616959432393, 18.329321318672328 ], [ -64.905719555286169, 18.329370269010383 ], [ -64.905882833528779, 18.329488956816306 ], [ -64.905965311495606, 18.329591886636763 ], [ -64.906111325628729, 18.32971593886333 ], [ -64.906177877971857, 18.329821886170294 ], [ -64.906287178041737, 18.329937724127831 ], [ -64.906329421544399, 18.330025063600829 ], [ -64.906390778414732, 18.330148948189276 ], [ -64.906412236097196, 18.330362519184689 ], [ -64.906409552577202, 18.330672817389257 ], [ -64.906387928566289, 18.331041621306042 ], [ -64.906353561437129, 18.331466919277375 ], [ -64.906204363488939, 18.33171167096765 ], [ -64.905957098536248, 18.3319381501002 ], [ -64.905814438475659, 18.332124396078143 ], [ -64.905579577435958, 18.332333273205563 ], [ -64.905308506557105, 18.332477609647583 ], [ -64.905172552022293, 18.332605349913308 ], [ -64.90503626221124, 18.332762259216054 ], [ -64.904820511919922, 18.332895196264246 ], [ -64.90467801949751, 18.333058140540231 ], [ -64.90461213770692, 18.333213038185306 ], [ -64.904547429383342, 18.333403810393179 ], [ -64.904422036051642, 18.333620397565539 ], [ -64.904329835072417, 18.33380530243835 ], [ -64.904242495599419, 18.334050893629012 ], [ -64.904316424020919, 18.33423915126474 ], [ -64.904496132111262, 18.334408298152027 ], [ -64.904626219311012, 18.334592866438868 ], [ -64.904715235165497, 18.334771905286345 ], [ -64.90483241422811, 18.334869804652783 ], [ -64.904942049574288, 18.334878521836288 ], [ -64.90505704934111, 18.334905680525253 ], [ -64.905303477412758, 18.33498094874227 ], [ -64.905517048408228, 18.335029900389941 ], [ -64.905860706603448, 18.335091254640986 ], [ -64.906109146332824, 18.335140707893459 ], [ -64.906113840200874, 18.335171385673846 ], [ -64.906157426118284, 18.33518697733092 ], [ -64.906262367596469, 18.335184293810926 ], [ -64.906445428449672, 18.335146073623775 ], [ -64.906485326327982, 18.335134337643979 ], [ -64.906663190398774, 18.335054541887473 ], [ -64.906721696110992, 18.334987655577663 ], [ -64.906747177108912, 18.334763354431345 ], [ -64.906795792170669, 18.334789673619923 ], [ -64.906856812455089, 18.334828230393043 ], [ -64.906865697276714, 18.334852371595446 ], [ -64.90686184159938, 18.334878355507783 ], [ -64.906843232455742, 18.334933339509348 ], [ -64.906848095271584, 18.334995534570453 ], [ -64.906849604014894, 18.335033588429155 ], [ -64.906934596553867, 18.335041130835918 ], [ -64.907043392399657, 18.335004082806108 ], [ -64.907422757519555, 18.335060576860656 ], [ -64.907450082537025, 18.33502805637039 ], [ -64.907506576591572, 18.334988827735003 ], [ -64.907544965726515, 18.334935518805196 ], [ -64.907576481697618, 18.334844157326415 ], [ -64.907639010725291, 18.334720440376145 ], [ -64.907683268504968, 18.334630921607243 ], [ -64.907839507255176, 18.334473509390023 ], [ -64.907939922503431, 18.334363371129427 ], [ -64.908174949871693, 18.334048545385315 ], [ -64.908308892748721, 18.333891302115944 ], [ -64.908393382373333, 18.333717796636904 ], [ -64.908478711498276, 18.333507578404294 ], [ -64.908534367362108, 18.333467345249744 ], [ -64.908567224438286, 18.333459801533252 ], [ -64.908551297504971, 18.333625260381382 ], [ -64.908534533690556, 18.33376356054049 ], [ -64.908489941944254, 18.333828773088214 ], [ -64.908486421543216, 18.333915105422705 ], [ -64.908522631382311, 18.334098838138175 ], [ -64.908505029377181, 18.334225403627215 ], [ -64.908387516347943, 18.334382817154108 ], [ -64.908263462811703, 18.334559506448215 ], [ -64.908036314436231, 18.334688924405043 ], [ -64.907959368528168, 18.334805768191416 ], [ -64.907867167548943, 18.334917413885648 ], [ -64.907818552487186, 18.334980110551498 ], [ -64.907734564467376, 18.335090248812151 ], [ -64.907640016554183, 18.335227210485471 ], [ -64.90761671616184, 18.335295271571908 ], [ -64.907403814409292, 18.335351430350158 ], [ -64.907173479599408, 18.335435918665041 ], [ -64.907097373191732, 18.335452682479456 ], [ -64.906917162186915, 18.335653849561936 ], [ -64.906634690604619, 18.335715037484476 ], [ -64.906442578601229, 18.335777229926236 ], [ -64.906285669298484, 18.335807238463701 ], [ -64.906174691537444, 18.335824000968444 ], [ -64.906075953980348, 18.335929780637287 ], [ -64.906009066360866, 18.335936150886766 ], [ -64.905862382984878, 18.335848140861174 ], [ -64.905695749360063, 18.335773038972661 ], [ -64.905548229103033, 18.335750575461361 ], [ -64.905349074987953, 18.335706486629476 ], [ -64.905200547592358, 18.335684527342266 ], [ -64.905032071257608, 18.335667594580059 ], [ -64.904818835538492, 18.335652171870834 ], [ -64.904679360602643, 18.335676983625831 ], [ -64.904517589793727, 18.335760298473701 ], [ -64.904427232834109, 18.335865576537799 ], [ -64.904396052139305, 18.336122733450679 ], [ -64.904389681889825, 18.336238234822247 ], [ -64.904383814554762, 18.336279641443809 ], [ -64.904368391845537, 18.336381565435374 ], [ -64.904347437077547, 18.336503942590184 ], [ -64.904263785643707, 18.336556748605517 ], [ -64.90417376396033, 18.336587592714352 ], [ -64.904102182472855, 18.336615755922537 ], [ -64.904036300682264, 18.336612570797797 ], [ -64.903932700309269, 18.33653847473812 ], [ -64.903856257315624, 18.336493212439279 ], [ -64.903708400472624, 18.336444932653819 ], [ -64.903639836471712, 18.336436550746612 ], [ -64.903579486739886, 18.336430851049727 ], [ -64.903442358738062, 18.336264554010825 ], [ -64.903405310708251, 18.336114854457946 ], [ -64.903346637357856, 18.335912513908454 ], [ -64.903275223508501, 18.335914694513974 ], [ -64.903091492102703, 18.335913184461049 ], [ -64.902728890797221, 18.335939168373329 ], [ -64.902548009239865, 18.335908825869296 ], [ -64.902462681424538, 18.335861719550792 ], [ -64.902365283662903, 18.335771028624606 ], [ -64.902292863984655, 18.335741690639736 ], [ -64.902219270839453, 18.335688716986226 ], [ -64.902112652979895, 18.335645801621354 ], [ -64.901991785878067, 18.335645132378431 ], [ -64.901745357806362, 18.335585285561024 ], [ -64.901597334634914, 18.335563157326021 ], [ -64.901478142604844, 18.335561982549336 ], [ -64.901161641788974, 18.335491743476666 ], [ -64.900967516818184, 18.335403733451074 ], [ -64.900666103435299, 18.335335838693084 ], [ -64.900575412509056, 18.335366182506846 ], [ -64.900544733419054, 18.335418651936209 ], [ -64.900467453544309, 18.335774547715914 ], [ -64.900577590495288, 18.336050312462817 ], [ -64.900653196607891, 18.336192469608932 ], [ -64.900723938594979, 18.336307973599844 ], [ -64.900765680492839, 18.336344349767387 ], [ -64.900797028825764, 18.336371842423034 ], [ -64.900788646918556, 18.336387600408557 ], [ -64.900736343817641, 18.336405537689927 ], [ -64.900618661840554, 18.336383577093102 ], [ -64.900476001780021, 18.3363745246333 ], [ -64.900269471586569, 18.336357760818942 ], [ -64.900037460395311, 18.336355916799334 ], [ -64.899871498632763, 18.336354575694202 ], [ -64.899754319570093, 18.336368824936415 ], [ -64.89964418261917, 18.336421630951804 ], [ -64.899584837406508, 18.336468569632075 ], [ -64.89957964062404, 18.336502767813499 ], [ -64.89959607047183, 18.336539649514805 ], [ -64.899615850463135, 18.336591952615777 ], [ -64.89957997721001, 18.336598992108122 ], [ -64.89944955342429, 18.336625981849295 ], [ -64.899386187515518, 18.336857490126192 ], [ -64.899450728200975, 18.337063852681467 ], [ -64.89946564668611, 18.337254121974865 ], [ -64.899513592504945, 18.33746031689202 ], [ -64.899594895695145, 18.337651089099893 ], [ -64.899659605328395, 18.337825768045946 ], [ -64.899757001780415, 18.338079907472206 ], [ -64.899804275736983, 18.338365395231449 ], [ -64.899834785879193, 18.338666473338094 ], [ -64.89993134545017, 18.338999737968379 ], [ -64.899989349557643, 18.339255553776127 ], [ -64.900151789609481, 18.339419000966473 ], [ -64.900428727823396, 18.33966006461759 ], [ -64.900536017545221, 18.33980490397397 ], [ -64.900722597489846, 18.339924429970665 ], [ -64.900860396044209, 18.340123081171328 ], [ -64.900947567879086, 18.340422482896486 ], [ -64.900996350578964, 18.340752227125733 ], [ -64.901041612877862, 18.340972336008804 ], [ -64.901025688563834, 18.341159755453816 ], [ -64.901024178510909, 18.341319010380914 ], [ -64.901006576505779, 18.341508778069624 ], [ -64.901001882637729, 18.341666022648667 ], [ -64.900994172592789, 18.341829805115367 ], [ -64.900975731087271, 18.34208964423857 ], [ -64.901021328662409, 18.342204307419365 ], [ -64.901061395488512, 18.34238854304931 ], [ -64.901045300917019, 18.342576799375365 ], [ -64.901020156505126, 18.342706720246611 ], [ -64.900999704651554, 18.342829094782076 ], [ -64.900926780749217, 18.342928002596693 ], [ -64.900876656944149, 18.342975107605525 ], [ -64.900822006909209, 18.342987011223386 ], [ -64.900778923906216, 18.342962199468388 ], [ -64.900744222810431, 18.342892966224611 ], [ -64.900740702409394, 18.342753491288818 ], [ -64.900739528942381, 18.342695319543168 ], [ -64.900776744610312, 18.34247806050854 ], [ -64.900730308844459, 18.342283769209303 ], [ -64.900498466600993, 18.3421137841313 ], [ -64.900362678394686, 18.342049913998437 ], [ -64.900302497610653, 18.341963747992395 ], [ -64.900261927870133, 18.341837850436605 ], [ -64.900245331693839, 18.341721175598025 ], [ -64.90024181260253, 18.341564935538145 ], [ -64.900227898636558, 18.341333596209097 ], [ -64.900224713511818, 18.341139638876541 ], [ -64.900193531507341, 18.340860689004899 ], [ -64.90024181260253, 18.340459195649998 ], [ -64.899947103435693, 18.340029371448793 ], [ -64.899667315373335, 18.339789481264745 ], [ -64.89951912456371, 18.339677498984543 ], [ -64.899254925539083, 18.339532827266282 ], [ -64.899105561262502, 18.339547411784793 ], [ -64.89900615053341, 18.339546741232255 ], [ -64.898754525679294, 18.339391508310882 ], [ -64.898624438479544, 18.33942084498608 ], [ -64.898555708150184, 18.339415312927315 ], [ -64.898383711414397, 18.339385976252117 ], [ -64.898262172450359, 18.33928740502347 ], [ -64.898169302228212, 18.339127310595927 ], [ -64.898043405982094, 18.338910051561299 ], [ -64.897940811437991, 18.338833440929534 ], [ -64.897764288472331, 18.338700336243164 ], [ -64.897751715611548, 18.338639483596921 ], [ -64.897805192179476, 18.338571590148604 ], [ -64.897887836474808, 18.338476706959057 ], [ -64.898071735518727, 18.338304039670732 ], [ -64.898239876577179, 18.338051911902198 ], [ -64.898358061468684, 18.337815374481011 ], [ -64.898493682036872, 18.337468028246633 ], [ -64.898561909451814, 18.337246913534671 ], [ -64.898522683435772, 18.336874421578727 ], [ -64.898523855593112, 18.336738131767675 ], [ -64.898577667437337, 18.33655590910513 ], [ -64.898661823095324, 18.336344349767387 ], [ -64.898668359673252, 18.336229014724324 ], [ -64.898572973569287, 18.335995831375669 ], [ -64.898507931279141, 18.335733476370649 ], [ -64.898352864686217, 18.335590648671996 ], [ -64.898196793574186, 18.335390991642441 ], [ -64.898091518129434, 18.335342208942564 ], [ -64.897882138087539, 18.335356793461074 ], [ -64.897747357019796, 18.335212121742813 ], [ -64.897440243939968, 18.335175576627421 ], [ -64.897363130393728, 18.335216815610863 ], [ -64.897220135056898, 18.335252354897364 ], [ -64.89706389630669, 18.335230226662361 ], [ -64.89690799283278, 18.335155461359818 ], [ -64.896623175626132, 18.335082537457481 ], [ -64.896266274017535, 18.335099468910073 ], [ -64.896161667815704, 18.335138025683193 ], [ -64.896025713280892, 18.335246990476776 ], [ -64.895378630045059, 18.335289236598726 ], [ -64.894981327643791, 18.335222684255541 ], [ -64.894652253967138, 18.335245818319436 ], [ -64.89434530852543, 18.335278506447821 ], [ -64.894243216895745, 18.335296108452951 ], [ -64.894215724240155, 18.335382777373411 ], [ -64.894296022911135, 18.335534992808164 ], [ -64.894410184487185, 18.335666588751224 ], [ -64.894532727970443, 18.335780247412856 ], [ -64.894685111043316, 18.335912513908454 ], [ -64.894731379171105, 18.335973198916577 ], [ -64.894744622584483, 18.336015108452557 ], [ -64.894725344197923, 18.336030698799959 ], [ -64.894538930581746, 18.336005720716514 ], [ -64.894406664086148, 18.335969847463389 ], [ -64.89422963820607, 18.335911509389234 ], [ -64.89390509075929, 18.335842945388379 ], [ -64.893767795119345, 18.335829031422406 ], [ -64.893512649864192, 18.335834897447796 ], [ -64.893386419651449, 18.335818133633381 ], [ -64.893286003093522, 18.335694250354663 ], [ -64.893251134359559, 18.335591654500831 ], [ -64.893263205615597, 18.335169710602088 ], [ -64.893140996098964, 18.33501682461474 ], [ -64.892910828927256, 18.334952785534028 ], [ -64.892679153012239, 18.334903333591228 ], [ -64.892381092392213, 18.334837619438815 ], [ -64.892019833501536, 18.334803421257448 ], [ -64.89179033557275, 18.334686242194778 ], [ -64.891606771805073, 18.334645338487633 ], [ -64.891507531333502, 18.334707532239065 ], [ -64.89147417134285, 18.334756985491538 ], [ -64.891461932448635, 18.334885396309858 ], [ -64.891455226922915, 18.335032078376173 ], [ -64.891470314355843, 18.335186808383071 ], [ -64.891638790690592, 18.335382106820816 ], [ -64.891887062781848, 18.335551925570371 ], [ -64.891990495516666, 18.335633900622781 ], [ -64.892143381504013, 18.335726938483049 ], [ -64.892293250004741, 18.335848643775591 ], [ -64.892425348862218, 18.335962972989819 ], [ -64.892522411347613, 18.336018293577297 ], [ -64.892611762478339, 18.33614486037601 ], [ -64.892632549608209, 18.336224320856275 ], [ -64.892665071408146, 18.336502767813499 ], [ -64.892730451593991, 18.336598321555527 ], [ -64.892960617456026, 18.336821784511187 ], [ -64.893092213399029, 18.337027307566075 ], [ -64.893329756649109, 18.33731246004902 ], [ -64.893465375907624, 18.33743466825598 ], [ -64.89368984338239, 18.337500047132153 ], [ -64.893879777399547, 18.337520666623845 ], [ -64.894050097753848, 18.337487138995016 ], [ -64.894220082831907, 18.337498035474425 ], [ -64.894279929649315, 18.337504908638323 ], [ -64.894252772269965, 18.337547824003195 ], [ -64.894189069775223, 18.337599624189693 ], [ -64.894158391994893, 18.337675731907041 ], [ -64.894340782295558, 18.337801460515038 ], [ -64.894495344664335, 18.337855607635561 ], [ -64.894591233682718, 18.337935906306541 ], [ -64.894643536783633, 18.338063646572266 ], [ -64.89473221736182, 18.338217203112151 ], [ -64.894870686468721, 18.338380817940731 ], [ -64.895016699292171, 18.338461451887952 ], [ -64.895192384067059, 18.338577289845489 ], [ -64.895332361917326, 18.338677872731864 ], [ -64.895510896540657, 18.338758171402844 ], [ -64.895610976512671, 18.338752471705959 ], [ -64.895764365414436, 18.338747442561612 ], [ -64.895871150912114, 18.338738725378164 ], [ -64.895931333005819, 18.338732858043102 ], [ -64.89609042160447, 18.338839140626419 ], [ -64.896106682504467, 18.338880714886102 ], [ -64.896083045526154, 18.338918768744804 ], [ -64.896022528156152, 18.338966545615847 ], [ -64.895948599734652, 18.33904500026722 ], [ -64.895837790921462, 18.339135860141312 ], [ -64.895776938275219, 18.339224540719442 ], [ -64.895739387330934, 18.33932294430997 ], [ -64.895725305726842, 18.339405589914975 ], [ -64.895707871359889, 18.33950097601894 ], [ -64.895690604631056, 18.339561325750765 ], [ -64.895596727270402, 18.339611449555832 ], [ -64.895486421371686, 18.33965838823616 ], [ -64.895379300597654, 18.339692586417527 ], [ -64.895296152078231, 18.339675990241233 ], [ -64.895110241376528, 18.339585298005375 ], [ -64.895026925218929, 18.33957188695382 ], [ -64.894953332073726, 18.339609605536225 ], [ -64.894842858536833, 18.339652520901097 ], [ -64.894831962057481, 18.339751259767922 ], [ -64.894831123866766, 18.33986257149553 ], [ -64.894826765275013, 18.339961310362355 ], [ -64.894842355622416, 18.340101623488863 ], [ -64.894860460541963, 18.340318211970896 ], [ -64.894867836620278, 18.340574529383446 ], [ -64.894916786958333, 18.340669916797026 ], [ -64.894998091458206, 18.340860689004899 ], [ -64.895063135058081, 18.341003684341729 ], [ -64.895144942472314, 18.341131089331157 ], [ -64.895367230651289, 18.341297554008179 ], [ -64.895515925685004, 18.341378020317279 ], [ -64.895679372875406, 18.341648420643537 ], [ -64.895847346295682, 18.341839863404005 ], [ -64.896035939207707, 18.342003813508825 ], [ -64.896200559865122, 18.342234314647158 ], [ -64.896542709317032, 18.34257646540874 ], [ -64.89678092311965, 18.342718287278558 ], [ -64.897028189382013, 18.342894473658248 ], [ -64.897148553569423, 18.343060939644886 ], [ -64.897284005189761, 18.343208461211645 ], [ -64.897350389894768, 18.343240815373406 ], [ -64.897633529410314, 18.343273000587374 ], [ -64.897985569512741, 18.343408956431858 ], [ -64.898142143539246, 18.343460587670506 ], [ -64.898296204303222, 18.343560501314016 ], [ -64.898364599356341, 18.343681199468051 ], [ -64.898490161635834, 18.343865433788267 ], [ -64.898563587142917, 18.343968698884964 ], [ -64.898598120600582, 18.343992503501454 ], [ -64.898722843379744, 18.344042459668344 ], [ -64.898812863753392, 18.344132313713544 ], [ -64.898923338599957, 18.34425586433531 ], [ -64.89905493454296, 18.344383604601035 ], [ -64.89911863572803, 18.344454178950002 ], [ -64.89921972152888, 18.344495754519414 ], [ -64.899347798380575, 18.34455425892196 ], [ -64.899435471820198, 18.344581751577607 ], [ -64.89951728054416, 18.344585608564557 ], [ -64.89963579940229, 18.344636904526965 ], [ -64.899803940460686, 18.34467613185268 ], [ -64.899905027571208, 18.344724914552557 ], [ -64.900046512855056, 18.344744360577295 ], [ -64.900311045846308, 18.344780402778213 ], [ -64.900521599355159, 18.344830192616655 ], [ -64.900738187837192, 18.344862714416593 ], [ -64.900882189002914, 18.344875788882177 ], [ -64.900988640534024, 18.344902108070755 ], [ -64.901141692849819, 18.344928762535687 ], [ -64.901248310709434, 18.344948711474785 ], [ -64.901444951561984, 18.344959944540108 ], [ -64.90165097753129, 18.344989616491603 ], [ -64.901901764194747, 18.345008055377775 ], [ -64.902166967738538, 18.345025992659203 ], [ -64.902286326097055, 18.345070416767328 ], [ -64.902352040249525, 18.345158426792977 ], [ -64.902409540132908, 18.345192792612465 ], [ -64.902407863751478, 18.34520150979597 ], [ -64.902309124884653, 18.345256662745328 ], [ -64.902237878673418, 18.345286837611241 ], [ -64.902115502828337, 18.345344337494623 ], [ -64.901947529408062, 18.345364286433778 ], [ -64.901782070559932, 18.345351043020401 ], [ -64.901534469021215, 18.345290190374158 ], [ -64.901324083150485, 18.34526152556117 ], [ -64.901212939061054, 18.345266721033965 ], [ -64.901111350345786, 18.345252639429873 ], [ -64.901025016701624, 18.345265379928833 ], [ -64.900849668512649, 18.345281305552533 ], [ -64.900589660441653, 18.34523520506292 ], [ -64.900424033955346, 18.34521793964376 ], [ -64.900048356874663, 18.345151385990903 ], [ -64.89969564752937, 18.345069578576613 ], [ -64.899612834286245, 18.345053150038495 ], [ -64.89940798047428, 18.345002524628683 ], [ -64.89918300877531, 18.344970504433547 ], [ -64.899092653125365, 18.344968995690238 ], [ -64.898945802111257, 18.344937814995433 ], [ -64.898723009708192, 18.344873441948153 ], [ -64.898554030459024, 18.344775542581715 ], [ -64.898312465203219, 18.344688537075342 ], [ -64.898187239509639, 18.344665739597417 ], [ -64.898049608593396, 18.344622822922872 ], [ -64.897925221090588, 18.344612095391312 ], [ -64.897853471964936, 18.344544703547797 ], [ -64.897811393481106, 18.344474127889157 ], [ -64.897740651494018, 18.344403719868694 ], [ -64.897620454944786, 18.344287043720442 ], [ -64.897540491550103, 18.344247648756607 ], [ -64.897464048556401, 18.34424412835557 ], [ -64.897306133424763, 18.344174558525822 ], [ -64.897202196465855, 18.344107169301594 ], [ -64.897157269443255, 18.344083532323282 ], [ -64.897012934310908, 18.344072466896137 ], [ -64.896842446318487, 18.344061067502309 ], [ -64.896706324145555, 18.344093255335679 ], [ -64.896664246971397, 18.344126112411857 ], [ -64.896586965787037, 18.344223508863877 ], [ -64.896533153942812, 18.344296263818364 ], [ -64.896480180289302, 18.344548391586954 ], [ -64.896464087027482, 18.3446248345806 ], [ -64.896476659888265, 18.344829185478147 ], [ -64.89642452442547, 18.344935635699585 ], [ -64.896353278214292, 18.345042085921023 ], [ -64.896186478261029, 18.345172173120773 ], [ -64.896135013350772, 18.345324723831823 ], [ -64.896024036899462, 18.345435197368715 ], [ -64.895978439324324, 18.345546676734443 ], [ -64.895843825894644, 18.345751530546409 ], [ -64.895776100084504, 18.345909278039926 ], [ -64.895723629345412, 18.346052441014933 ], [ -64.895625728669302, 18.346185378063126 ], [ -64.895605444453906, 18.346265006181511 ], [ -64.895594380336377, 18.346334743649379 ], [ -64.895533862966431, 18.346397943229704 ], [ -64.895473010320131, 18.346429459200749 ], [ -64.895322638904986, 18.346554852532449 ], [ -64.895281567559664, 18.346641186176612 ], [ -64.895238987471089, 18.346649232807522 ], [ -64.895194898639261, 18.346640515624074 ], [ -64.895168579450626, 18.346601958850954 ], [ -64.895099512535296, 18.346493161695491 ], [ -64.895073863899256, 18.346375144442106 ], [ -64.895054920788994, 18.346250924577419 ], [ -64.895076043195161, 18.346126872350851 ], [ -64.895103703488928, 18.346006005249023 ], [ -64.895088280779646, 18.345872900562711 ], [ -64.895099344897176, 18.345758236072186 ], [ -64.895091130628089, 18.345551202964373 ], [ -64.895145613024908, 18.345414745515143 ], [ -64.895226749886604, 18.345286503644616 ], [ -64.895247537016473, 18.345097406508557 ], [ -64.895309563129729, 18.344855169390485 ], [ -64.895459263992336, 18.34467445547125 ], [ -64.895556661753972, 18.344507152603512 ], [ -64.895558170497281, 18.34434538179454 ], [ -64.895476865997466, 18.344121752510432 ], [ -64.895291961124599, 18.344046985898217 ], [ -64.895094315752829, 18.344019660880747 ], [ -64.894914607662486, 18.343877337406184 ], [ -64.894837158839948, 18.343719254636369 ], [ -64.894715285909285, 18.343543234585184 ], [ -64.894609506240386, 18.343437287278164 ], [ -64.894546809574535, 18.343363526494841 ], [ -64.894437677142776, 18.343257579187821 ], [ -64.894325024310035, 18.343186668252883 ], [ -64.89419242253814, 18.343100837523195 ], [ -64.893976336970525, 18.342973263585918 ], [ -64.893817751286292, 18.3428559181948 ], [ -64.893670732634007, 18.342811660415123 ], [ -64.893614741493877, 18.342768912688371 ], [ -64.893515164436337, 18.34274192425687 ], [ -64.893336797451127, 18.342750138525901 ], [ -64.893084669682594, 18.34270453964109 ], [ -64.892918541591541, 18.342734883454796 ], [ -64.892718212699776, 18.342803950370126 ], [ -64.892574211534111, 18.342875364219481 ], [ -64.892501791855864, 18.342984830617866 ], [ -64.892434568960141, 18.343079378531058 ], [ -64.892367346064418, 18.343173926444308 ], [ -64.892333484468963, 18.343268643305294 ], [ -64.892249831725451, 18.343347096647051 ], [ -64.892198869729668, 18.343473329479139 ], [ -64.892131311557648, 18.343615317677461 ], [ -64.892063921023748, 18.343741550509549 ], [ -64.892012959027966, 18.343883706345991 ], [ -64.891961829394063, 18.344025695853929 ], [ -64.891924278449778, 18.344197189675242 ], [ -64.891860074350348, 18.344294253470309 ], [ -64.891823527925283, 18.344550570882802 ], [ -64.891773571758335, 18.34468937657573 ], [ -64.891787485724308, 18.344826335629705 ], [ -64.891771058495863, 18.344990285734525 ], [ -64.89173769850521, 18.34512490047382 ], [ -64.891745074583525, 18.345362442414228 ], [ -64.891757813772813, 18.345422456869755 ], [ -64.891756975582098, 18.345514491520476 ], [ -64.89176954844288, 18.345612055610616 ], [ -64.891781450751125, 18.345684810565103 ], [ -64.891780947836708, 18.345734599093873 ], [ -64.89176938080476, 18.345798133950439 ], [ -64.891750772970738, 18.345789081490693 ], [ -64.891723447953268, 18.345772317676278 ], [ -64.891714564441315, 18.345750021803156 ], [ -64.89166980374722, 18.345712806135168 ], [ -64.891624373810203, 18.345694199610875 ], [ -64.891550445388702, 18.345599315111656 ], [ -64.891425556281092, 18.345309636398838 ], [ -64.891418515479018, 18.34503923607258 ], [ -64.891458244409478, 18.34471854561275 ], [ -64.891487916360973, 18.3445574440467 ], [ -64.891532172830978, 18.344429871419152 ], [ -64.891545751520653, 18.344196686760824 ], [ -64.89163493632293, 18.343948414669569 ], [ -64.891658573301243, 18.343786142255851 ], [ -64.891734679708918, 18.343429911199848 ], [ -64.891863593441656, 18.343126149573266 ], [ -64.891964343966208, 18.342910400591563 ], [ -64.892009773903226, 18.342813338106225 ], [ -64.892052521629978, 18.342454089563603 ], [ -64.892099461619978, 18.34223414831871 ], [ -64.892178417876096, 18.342050249274735 ], [ -64.892251006502136, 18.341964083268692 ], [ -64.892401545555458, 18.341799462611277 ], [ -64.892530625616644, 18.341636685973469 ], [ -64.892647637041136, 18.341481619380602 ], [ -64.892698096122501, 18.341402829452932 ], [ -64.892798343732636, 18.341324376111231 ], [ -64.892987271920902, 18.341201497351676 ], [ -64.893253648931704, 18.341097729340504 ], [ -64.893619435361927, 18.340966636311919 ], [ -64.893775841750312, 18.340884158345034 ], [ -64.893824959726487, 18.340735966225736 ], [ -64.893858152078963, 18.340587606468318 ], [ -64.893832335804802, 18.340351235375635 ], [ -64.89375388115343, 18.340144371215615 ], [ -64.893705601367969, 18.339985617893205 ], [ -64.893542489453864, 18.339667608334025 ], [ -64.893463699526137, 18.339511872498292 ], [ -64.893197993067929, 18.339253039203925 ], [ -64.893043430699151, 18.339164693902035 ], [ -64.892857352359329, 18.33908992728982 ], [ -64.892733970685299, 18.339076180962024 ], [ -64.892597177959829, 18.339087915632092 ], [ -64.892506653362034, 18.339153965060859 ], [ -64.892472790456964, 18.339204591780344 ], [ -64.892448985840531, 18.33925538613795 ], [ -64.892344548586493, 18.339391508310882 ], [ -64.892346056020131, 18.339588986044532 ], [ -64.892310852009871, 18.339808424375008 ], [ -64.892293250004741, 18.339913198215015 ], [ -64.892268608507266, 18.340053176065226 ], [ -64.892248322982141, 18.340088044799188 ], [ -64.892211611538301, 18.340094079772371 ], [ -64.892134999596806, 18.340068431136331 ], [ -64.892085547654005, 18.340029371448793 ], [ -64.892029722842381, 18.339914371682028 ], [ -64.891990327878545, 18.339859889285208 ], [ -64.89192394448321, 18.339817979749228 ], [ -64.8917521153856, 18.339644641908308 ], [ -64.8916892497719, 18.339583621623888 ], [ -64.89158330246488, 18.339506340439527 ], [ -64.891626888382348, 18.339102332512482 ], [ -64.891642312401245, 18.338892114279929 ], [ -64.891610627482407, 18.338717770610174 ], [ -64.89157877754468, 18.338574942911464 ], [ -64.891513732635133, 18.338431947574634 ], [ -64.891448521397137, 18.338304710223326 ], [ -64.891383311468815, 18.338177472872019 ], [ -64.89138431729765, 18.338066664058829 ], [ -64.89140191930278, 18.337940097260116 ], [ -64.89153636378461, 18.337735243448151 ], [ -64.891596545878258, 18.337631978351453 ], [ -64.891852026409765, 18.337388903042665 ], [ -64.89187901746061, 18.33735118446026 ], [ -64.891913046694128, 18.33726937704597 ], [ -64.891877339769508, 18.337167117778165 ], [ -64.891801734966521, 18.337036024749523 ], [ -64.891623369290983, 18.3368434085221 ], [ -64.891477690434215, 18.336740478701643 ], [ -64.89130200565927, 18.336621121652797 ], [ -64.891242158841862, 18.336601675628117 ], [ -64.89118181041971, 18.33662983752663 ], [ -64.891015679709312, 18.336571165485907 ], [ -64.89079288861592, 18.336494050629994 ], [ -64.890698843617145, 18.336529254640254 ], [ -64.890450237559264, 18.336758080706772 ], [ -64.890313109557496, 18.336917170615095 ], [ -64.890225602446321, 18.33704608303816 ], [ -64.890128707599104, 18.337130069748298 ], [ -64.890043881388578, 18.337239369818235 ], [ -64.889947323127274, 18.337290499452138 ], [ -64.889840537629539, 18.337360236920063 ], [ -64.889738613638031, 18.337453611366243 ], [ -64.889689160385501, 18.337546147621708 ], [ -64.889555888061068, 18.337608509011318 ], [ -64.889379700371705, 18.337608844287615 ], [ -64.88923871538293, 18.337607670820603 ], [ -64.889085495428958, 18.337600630018528 ], [ -64.888980721589007, 18.337652430205026 ], [ -64.888862871973743, 18.337809674784125 ], [ -64.888733286378738, 18.337896511342706 ], [ -64.888665226601972, 18.337971948507516 ], [ -64.888555591255795, 18.338037997936226 ], [ -64.888552909045472, 18.338066328782588 ], [ -64.888601690435735, 18.338120811179351 ], [ -64.888640416156647, 18.338205971356501 ], [ -64.888634045907168, 18.338368412718069 ], [ -64.888600183002097, 18.338575445825882 ], [ -64.888513346443517, 18.338909213370584 ], [ -64.888430868476632, 18.339038127103322 ], [ -64.888473448565264, 18.33924583076373 ], [ -64.888479651176567, 18.339376420877898 ], [ -64.888509992370928, 18.33946091050251 ], [ -64.888540168546569, 18.339501646571478 ], [ -64.8885173684493, 18.339569875296093 ], [ -64.88845483942157, 18.3396231842259 ], [ -64.888396167380847, 18.33967314039279 ], [ -64.888355766588177, 18.339707506212335 ], [ -64.88829591846104, 18.339796522066763 ], [ -64.888170191162715, 18.340056025913725 ], [ -64.888180752365827, 18.340198685974258 ], [ -64.888148901118427, 18.340519879348449 ], [ -64.8880729610392, 18.340743173356259 ], [ -64.887903143599374, 18.340967977417051 ], [ -64.887944047306462, 18.341093035472511 ], [ -64.888000206084712, 18.341154726309469 ], [ -64.888096764346017, 18.341398136894554 ], [ -64.888087713195887, 18.341484302900597 ], [ -64.887977742573412, 18.34166250224763 ], [ -64.887880177173599, 18.341754367950557 ], [ -64.887774900419174, 18.34184019737063 ], [ -64.887713041944039, 18.341989228990315 ], [ -64.887691081347214, 18.342173966225005 ], [ -64.887596198157667, 18.342389213601905 ], [ -64.887492262508431, 18.342615525096278 ], [ -64.887469296082656, 18.342814007349091 ], [ -64.887451526439406, 18.342911237472606 ], [ -64.887408275798236, 18.343006457248123 ], [ -64.887420513382779, 18.343056413415013 ], [ -64.887447670762128, 18.343095305464431 ], [ -64.887465440405379, 18.343145429269498 ], [ -64.887454879202267, 18.343195385436388 ], [ -64.887429733480701, 18.343306695854324 ], [ -64.887453202820836, 18.343393532412904 ], [ -64.887408778712711, 18.343631578577401 ], [ -64.887361504756086, 18.343955455471587 ], [ -64.887230747003741, 18.34434370541311 ], [ -64.887136031452428, 18.344480833414934 ], [ -64.886998735812483, 18.344629863724947 ], [ -64.886903684984816, 18.344823821057503 ], [ -64.886804443203573, 18.34499330453076 ], [ -64.886726491466618, 18.345158929707395 ], [ -64.886657256913168, 18.345300417610588 ], [ -64.88658802235966, 18.345445927519563 ], [ -64.886552985987578, 18.345571319541648 ], [ -64.88656539121024, 18.345736946027898 ], [ -64.886564050105051, 18.345879606088431 ], [ -64.886628758428685, 18.346070043020006 ], [ -64.886694137304801, 18.346181522385791 ], [ -64.886825230333443, 18.346356704246261 ], [ -64.886939727185791, 18.346531886106732 ], [ -64.887021366961903, 18.346675049081739 ], [ -64.887056906248461, 18.346831623108244 ], [ -64.887094792468986, 18.346968583471892 ], [ -64.887101665632883, 18.347023736421249 ], [ -64.887094121916391, 18.347046702846967 ], [ -64.887046009769051, 18.347010828284169 ], [ -64.886990689181573, 18.346951819657477 ], [ -64.886922628095078, 18.346876717768964 ], [ -64.886826403800455, 18.346824414668049 ], [ -64.886697657705838, 18.346768255889799 ], [ -64.886582825577193, 18.346717629170314 ], [ -64.886477884099065, 18.346776134882532 ], [ -64.886388197692042, 18.346857774658702 ], [ -64.886323321730288, 18.34694679051313 ], [ -64.886238832105732, 18.347016863257352 ], [ -64.886208489601643, 18.347099005947882 ], [ -64.88625207551911, 18.347188859993082 ], [ -64.886374619002368, 18.34727938459082 ], [ -64.886398926533218, 18.347331352415495 ], [ -64.886366572371458, 18.347366388787577 ], [ -64.886230282560348, 18.347421877013232 ], [ -64.886052250851435, 18.347484070764665 ], [ -64.885811690114792, 18.34761801364175 ], [ -64.885830130310637, 18.347761847169295 ], [ -64.885801799464332, 18.3478959576845 ], [ -64.88578637675505, 18.347971227211133 ], [ -64.885748658172645, 18.348053369901663 ], [ -64.885700881301602, 18.348149594196343 ], [ -64.885588228468862, 18.348207094079726 ], [ -64.885436683586704, 18.348314214853758 ], [ -64.885324868944622, 18.348416977036038 ], [ -64.885218251085064, 18.348477326767863 ], [ -64.884988586827774, 18.348614622407808 ], [ -64.884875598718736, 18.348733645490029 ], [ -64.884825474913669, 18.348808579740421 ], [ -64.884773339450874, 18.348848309980553 ], [ -64.884701757963398, 18.348849986361984 ], [ -64.884628332456316, 18.348790474820873 ], [ -64.884626320798588, 18.348741021568401 ], [ -64.884629841199626, 18.348613951855214 ], [ -64.884647610842876, 18.348569360108911 ], [ -64.884699913943791, 18.348503813594618 ], [ -64.884842574004324, 18.348283537073428 ], [ -64.884987078084464, 18.348119754606728 ], [ -64.885198972698504, 18.347871817791713 ], [ -64.885351691047674, 18.347613822688118 ], [ -64.885381865913587, 18.347546432154218 ], [ -64.885361750645984, 18.34731777372582 ], [ -64.885356384915724, 18.347089282935542 ], [ -64.885357558382736, 18.346946622875009 ], [ -64.885367616671374, 18.346649735721996 ], [ -64.885375998578525, 18.346534400678934 ], [ -64.885393935859952, 18.346457287132694 ], [ -64.885429475146509, 18.346342119727751 ], [ -64.885462667498985, 18.346219911520734 ], [ -64.885505415225737, 18.346128381094161 ], [ -64.885523520145284, 18.346029642227336 ], [ -64.885526872908144, 18.345944818636156 ], [ -64.885502565377294, 18.345899891613556 ], [ -64.885414052437227, 18.345870888904926 ], [ -64.885268710166372, 18.345836858361736 ], [ -64.885175000443894, 18.345831327612643 ], [ -64.885127894125446, 18.345861501168883 ], [ -64.885087494642391, 18.345881114831741 ], [ -64.884996801096804, 18.345907601658496 ], [ -64.884924549056734, 18.345977674402661 ], [ -64.884857493799132, 18.346043053278834 ], [ -64.884773171812697, 18.346084795176694 ], [ -64.884679126813921, 18.346116981700334 ], [ -64.884575526440926, 18.346121005015789 ], [ -64.884478463955588, 18.346123687226111 ], [ -64.884335971533176, 18.346112623108581 ], [ -64.884182247355113, 18.346097535675653 ], [ -64.883964653044188, 18.346098206228191 ], [ -64.88384412252833, 18.346084124624099 ], [ -64.883724093617218, 18.346105749944684 ], [ -64.88362350942117, 18.346190742483714 ], [ -64.883563328637138, 18.346222090816639 ], [ -64.88350297759564, 18.346275567384566 ], [ -64.883452518514275, 18.346326026465931 ], [ -64.883381942855692, 18.346404984031722 ], [ -64.883334668899067, 18.346487461998606 ], [ -64.883290916653152, 18.346544291329394 ], [ -64.883237438775552, 18.346572454537579 ], [ -64.883180778392557, 18.346575304386022 ], [ -64.883130820915937, 18.346574801471604 ], [ -64.8831076868521, 18.346552337960304 ], [ -64.883110536700542, 18.346485450340879 ], [ -64.883142221619437, 18.346397440315286 ], [ -64.883242467919843, 18.346243380860926 ], [ -64.883288568409455, 18.346160233651176 ], [ -64.883358976429918, 18.346081777690131 ], [ -64.883434245956607, 18.346014387156231 ], [ -64.883513203522398, 18.345884970509076 ], [ -64.88354153436876, 18.345789081490693 ], [ -64.88361244661337, 18.345712303220751 ], [ -64.88369559382312, 18.345604847170421 ], [ -64.883913523410286, 18.345270911987598 ], [ -64.883993822081266, 18.34513395162395 ], [ -64.884087531803743, 18.345015766732388 ], [ -64.884264390045701, 18.344899259531985 ], [ -64.884439236629873, 18.344859025067763 ], [ -64.884592457893518, 18.344789959462105 ], [ -64.884800161553926, 18.344693398581512 ], [ -64.885019432246281, 18.344608573680659 ], [ -64.885375328025987, 18.34445820357513 ], [ -64.885506253416452, 18.344419980768635 ], [ -64.885671879902702, 18.344400870020195 ], [ -64.885924007671292, 18.344352925511032 ], [ -64.886041186733962, 18.344292072864789 ], [ -64.886131376055403, 18.344261396394074 ], [ -64.886274203754112, 18.344212612384524 ], [ -64.886403788039388, 18.34411571753725 ], [ -64.88651392630004, 18.34405788237757 ], [ -64.886697825344015, 18.343885216398974 ], [ -64.886798743506688, 18.343727636543576 ], [ -64.886883233131243, 18.343538371769341 ], [ -64.886951461855858, 18.343333016352631 ], [ -64.886969734413583, 18.343143082335473 ], [ -64.886938218442481, 18.342952811732346 ], [ -64.886857081580786, 18.342762039524473 ], [ -64.886709392375906, 18.342570933349975 ], [ -64.886627920237913, 18.342411843441653 ], [ -64.886579640452453, 18.342253091428972 ], [ -64.88658148447206, 18.342047230478443 ], [ -64.886566564677253, 18.341857130132837 ], [ -64.886601936325633, 18.341603996535412 ], [ -64.886570587992708, 18.341397801618257 ], [ -64.88652364931238, 18.341080797887969 ], [ -64.886525660970108, 18.340859012623469 ], [ -64.886377133574513, 18.340762788328789 ], [ -64.886145122383198, 18.340760944309238 ], [ -64.885912273001225, 18.340822467508076 ], [ -64.885745808324202, 18.340900251606911 ], [ -64.885595772185354, 18.340994128967509 ], [ -64.885445568408329, 18.341103764313686 ], [ -64.885295364631304, 18.341213398350192 ], [ -64.884978193262839, 18.341448259389949 ], [ -64.884728077151976, 18.341588909102427 ], [ -64.884528084846181, 18.341698041534187 ], [ -64.884228515482846, 18.341822429037052 ], [ -64.884078814620295, 18.341868697164784 ], [ -64.883961804505418, 18.341978500149082 ], [ -64.883811767056898, 18.342072377509737 ], [ -64.883611774751103, 18.342181677579617 ], [ -64.883477831874018, 18.342322996535017 ], [ -64.883360317535107, 18.34249633437588 ], [ -64.883275661582047, 18.342685596530828 ], [ -64.88322386139555, 18.342922804504553 ], [ -64.883024035418202, 18.34300042227494 ], [ -64.882891936560782, 18.342951807213183 ], [ -64.882826222408312, 18.34287201145662 ], [ -64.882761012479989, 18.342744774105313 ], [ -64.882795378299477, 18.342618373635048 ], [ -64.882780792471294, 18.342380830385025 ], [ -64.882783139405319, 18.342127361511302 ], [ -64.882784649458245, 18.341953185479667 ], [ -64.882818847639669, 18.341826787628747 ], [ -64.882869474359154, 18.341732238405882 ], [ -64.882936360668907, 18.341669375411527 ], [ -64.883003583564687, 18.341574995136511 ], [ -64.883086733393782, 18.341543982079827 ], [ -64.88320290662756, 18.341544820270542 ], [ -64.883335339451662, 18.341561750413462 ], [ -64.883484872676092, 18.341531241580924 ], [ -64.883651337353058, 18.341469215467612 ], [ -64.883867422920673, 18.341407692268774 ], [ -64.883984099068925, 18.341329405255522 ], [ -64.884184426651018, 18.341188589214539 ], [ -64.88430127043739, 18.341110302201344 ], [ -64.884451475524088, 18.341000666855166 ], [ -64.884635037982093, 18.340859683176063 ], [ -64.884818266473474, 18.340781899077228 ], [ -64.884968134974201, 18.340703947340273 ], [ -64.885284803428192, 18.340516527895261 ], [ -64.88547641382678, 18.340426170935643 ], [ -64.885676406132575, 18.340316870865763 ], [ -64.88602576402468, 18.340192986277373 ], [ -64.886259283959305, 18.340036579888988 ], [ -64.886509567708288, 18.339864415515081 ], [ -64.886770412660326, 18.339712032442208 ], [ -64.886883568407541, 18.339691245312338 ], [ -64.886951964770276, 18.33963944512584 ], [ -64.887058079715473, 18.339432914932445 ], [ -64.887112729750413, 18.339156647271125 ], [ -64.887213647913086, 18.338999067415784 ], [ -64.887348931895303, 18.338696145289589 ], [ -64.887401067358041, 18.338443179330284 ], [ -64.887441132874471, 18.338265985812086 ], [ -64.887608603380329, 18.338017713720831 ], [ -64.887744893191439, 18.337769273991398 ], [ -64.887784455793394, 18.337658632816328 ], [ -64.887822844928394, 18.337489319600593 ], [ -64.887925607110617, 18.33731111894383 ], [ -64.887978413126007, 18.337203159979083 ], [ -64.888081342946407, 18.336999144357833 ], [ -64.888234061295577, 18.336743497497935 ], [ -64.888413266471559, 18.336487512742394 ], [ -64.888584088430605, 18.336353737503487 ], [ -64.88860470923197, 18.336243097638089 ], [ -64.88864460711028, 18.336196326595939 ], [ -64.888691713428727, 18.336166150420297 ], [ -64.888800342946013, 18.336169335545037 ], [ -64.889013577355513, 18.336112338576072 ], [ -64.889180546256625, 18.335986946554044 ], [ -64.889397133428986, 18.335862054827089 ], [ -64.889630653363611, 18.335721406424284 ], [ -64.889831148583824, 18.335532982460109 ], [ -64.889915470570259, 18.335390991642441 ], [ -64.890016725318901, 18.335185971502028 ], [ -64.890101382581634, 18.334980782413766 ], [ -64.890169777634696, 18.334759666392188 ], [ -64.890237838721191, 18.334554309665748 ], [ -64.890374631446662, 18.334096154618237 ], [ -64.890543610695829, 18.333733219346129 ], [ -64.890679063625839, 18.333417724359094 ], [ -64.890745783607144, 18.333225274460119 ], [ -64.89086983452404, 18.333062331493863 ], [ -64.891018529557755, 18.332899553546326 ], [ -64.891087428834965, 18.332736106355924 ], [ -64.8910079683547, 18.332421115593036 ], [ -64.890787190228707, 18.332271750006726 ], [ -64.890665317298044, 18.332164629232693 ], [ -64.890586693698822, 18.332076954483398 ], [ -64.890409501490296, 18.331931612212543 ], [ -64.890169777634696, 18.331694907153235 ], [ -64.890028123402999, 18.331564987591605 ], [ -64.889910441425911, 18.33141629255789 ], [ -64.889768619556094, 18.331312859823072 ], [ -64.889618920003215, 18.331190483977934 ], [ -64.88953459801678, 18.331097612446172 ], [ -64.889447761458143, 18.331003399809219 ], [ -64.889365114543523, 18.330875994819792 ], [ -64.889278279294558, 18.330764180177766 ], [ -64.889203345044223, 18.330693436880949 ], [ -64.889109970597985, 18.330643983628477 ], [ -64.889004023291022, 18.330627387452239 ], [ -64.888964963603428, 18.330652533173861 ], [ -64.888958258077707, 18.330722605918027 ], [ -64.88896580048447, 18.330788990623034 ], [ -64.888938475467, 18.330868618741476 ], [ -64.888888352971662, 18.331014463926749 ], [ -64.888852646046985, 18.331111694050264 ], [ -64.888748878035813, 18.331306154297295 ], [ -64.888615270435082, 18.33145317294958 ], [ -64.888498929563127, 18.331526430818485 ], [ -64.888310336651102, 18.33161846415959 ], [ -64.888100956609264, 18.331753245227333 ], [ -64.887943209115747, 18.331822144504542 ], [ -64.887855199090154, 18.33183706429935 ], [ -64.887615308906106, 18.33195591974345 ], [ -64.887478013266161, 18.332028842336058 ], [ -64.887395870575631, 18.332088689153466 ], [ -64.887447000209534, 18.332298907386075 ], [ -64.887427889461094, 18.332533265511358 ], [ -64.887412131475571, 18.332631166187468 ], [ -64.887444150361091, 18.332677769591498 ], [ -64.887508523408371, 18.332715991088321 ], [ -64.887636262364424, 18.332767288360401 ], [ -64.887828712263399, 18.332839708038591 ], [ -64.887979586593019, 18.332874409134433 ], [ -64.888188798996737, 18.332955378357951 ], [ -64.88837320095513, 18.333018745576396 ], [ -64.888449811586952, 18.333051602652631 ], [ -64.888538658493587, 18.333081945156664 ], [ -64.888556597084687, 18.333103067562831 ], [ -64.888567828840337, 18.333131063132896 ], [ -64.888571684517615, 18.333168446439004 ], [ -64.888544191862024, 18.333209516474597 ], [ -64.888478812985852, 18.333258971036742 ], [ -64.888428689180785, 18.333294677961419 ], [ -64.8883780624613, 18.333358714422729 ], [ -64.888324418255195, 18.333393081551947 ], [ -64.888187290253427, 18.333487460517347 ], [ -64.888010432011527, 18.333560887334102 ], [ -64.887950082279644, 18.333598941192804 ], [ -64.887926948215807, 18.333632301183457 ], [ -64.887917057565289, 18.333678569311189 ], [ -64.887899455560159, 18.33369164508639 ], [ -64.887822174375799, 18.333725843267814 ], [ -64.887720418022411, 18.333794573597174 ], [ -64.887708012799749, 18.333819050075874 ], [ -64.887689740242024, 18.333893649049912 ], [ -64.887681023058576, 18.333970930234329 ], [ -64.887682867078126, 18.334065478147522 ], [ -64.887695439938909, 18.33416874324422 ], [ -64.887732655606897, 18.33423747357358 ], [ -64.887773894590339, 18.334301177377995 ], [ -64.887827538796387, 18.334344091433195 ], [ -64.887921416157042, 18.334424894328265 ], [ -64.887946729516784, 18.334455907384893 ], [ -64.887947902983797, 18.334472671199308 ], [ -64.887934324294122, 18.33448943370405 ], [ -64.887884200489054, 18.33450703570918 ], [ -64.887872801095284, 18.334516089478598 ], [ -64.887871627628272, 18.3345455924823 ], [ -64.887862072254052, 18.334564872178532 ], [ -64.887821503823204, 18.33457358936198 ], [ -64.887776912076902, 18.334574427552695 ], [ -64.887722932594556, 18.334575264433738 ], [ -64.887660738843124, 18.334587669656401 ], [ -64.887623523175137, 18.334671153452121 ], [ -64.887576584494809, 18.334799733218233 ], [ -64.887555629726819, 18.334874332192328 ], [ -64.887532830939278, 18.335001735872083 ], [ -64.887496453462006, 18.335205751493334 ], [ -64.887491591955836, 18.335286888355029 ], [ -64.887513552552718, 18.335410772943476 ], [ -64.887532998577399, 18.335491406890696 ], [ -64.887566023291754, 18.335570364456544 ], [ -64.887585804592732, 18.335634906451673 ], [ -64.887565855653634, 18.335638425543038 ], [ -64.887515564210446, 18.335624008662649 ], [ -64.887476504522851, 18.335627530373301 ], [ -64.887407940521996, 18.335584447370309 ], [ -64.887340717626216, 18.335551756622579 ], [ -64.887285564676858, 18.335537339742189 ], [ -64.887231920470754, 18.335505991409264 ], [ -64.887163524108018, 18.335452514841336 ], [ -64.887108706434958, 18.335395351543866 ], [ -64.887054224038138, 18.335300803630673 ], [ -64.887052212380411, 18.335213127571706 ], [ -64.887055900419568, 18.335105002278453 ], [ -64.886973422452741, 18.334805265276998 ], [ -64.886935200955918, 18.334712058468938 ], [ -64.886796228934543, 18.334621532561528 ], [ -64.88672447980889, 18.33448692044152 ], [ -64.886633787572976, 18.334364878563065 ], [ -64.886486936558811, 18.334186680525647 ], [ -64.886356011168346, 18.334035972524532 ], [ -64.886217877337742, 18.333846710369585 ], [ -64.88611545043176, 18.333680916245214 ], [ -64.886001791770127, 18.333552336479102 ], [ -64.88589869431155, 18.333469021631174 ], [ -64.88577179223654, 18.333385202559157 ], [ -64.885663497995495, 18.333345639957201 ], [ -64.885586049172957, 18.333333402372659 ], [ -64.885465349709307, 18.333386542354674 ], [ -64.885419249219694, 18.333419736016822 ], [ -64.885371807624949, 18.333501543431112 ], [ -64.885310619702409, 18.333637999570669 ], [ -64.885250103642079, 18.33377026737594 ], [ -64.885186232199544, 18.333864312374715 ], [ -64.885093695944079, 18.33398182540401 ], [ -64.884985066426736, 18.334116103557335 ], [ -64.884900576802181, 18.334212830766432 ], [ -64.884848442649059, 18.334309056370785 ], [ -64.884796138238471, 18.33442841341963 ], [ -64.884793958942566, 18.334509719229118 ], [ -64.884805190698216, 18.334623713167048 ], [ -64.884826983656922, 18.334743740768488 ], [ -64.884834359735294, 18.334832756622973 ], [ -64.884816590092043, 18.334862262245963 ], [ -64.884780044976651, 18.334860753502653 ], [ -64.884758588603859, 18.334849017522913 ], [ -64.884736123782886, 18.334801074323423 ], [ -64.884713492633466, 18.334763523379138 ], [ -64.884692873141773, 18.33474323785407 ], [ -64.884639396573789, 18.3347383763479 ], [ -64.884592291565014, 18.334736701276086 ], [ -64.884551889462671, 18.334714571731411 ], [ -64.884505118420464, 18.334671656366538 ], [ -64.884455497529871, 18.334627401206205 ], [ -64.884417276032991, 18.334518770379248 ], [ -64.884394478555123, 18.334363872734173 ], [ -64.884336977362011, 18.334253400506952 ], [ -64.884340665401226, 18.33418734976857 ], [ -64.884371007905258, 18.334112752104147 ], [ -64.884395818350583, 18.334046032122842 ], [ -64.884416773118573, 18.333964895261147 ], [ -64.884425322663901, 18.333916112561212 ], [ -64.884417612618961, 18.333874704629977 ], [ -64.884405876639221, 18.333839837205687 ], [ -64.884346700374408, 18.333658788010212 ], [ -64.884332451132138, 18.333594247324754 ], [ -64.88429003868174, 18.333490814589879 ], [ -64.884211920616281, 18.333397103557729 ], [ -64.884140337819133, 18.333331893629406 ], [ -64.884102786874848, 18.333309596446554 ], [ -64.884048807392503, 18.333302724592329 ], [ -64.88394470410509, 18.333310937551744 ], [ -64.883896759595871, 18.333318313630059 ], [ -64.883820819516643, 18.333358883370579 ], [ -64.883740857431633, 18.333400791596887 ], [ -64.883656701773702, 18.333451587264221 ], [ -64.88356416551818, 18.333518642521824 ], [ -64.883464085546223, 18.333581171549497 ], [ -64.88333282487946, 18.333649400274112 ], [ -64.883229559782762, 18.333712264578139 ], [ -64.883125959409767, 18.333819050075874 ], [ -64.883079188367617, 18.333894319602507 ], [ -64.883029736424817, 18.333941927525757 ], [ -64.882929656452802, 18.334020214538953 ], [ -64.882829239894875, 18.334114428485577 ], [ -64.882757155492982, 18.334192043636563 ], [ -64.882678365565312, 18.33430335536417 ], [ -64.882578119264849, 18.334381642377423 ], [ -64.882511734559841, 18.334434952616903 ], [ -64.882448702617694, 18.33454291158165 ], [ -64.882398746450804, 18.334646007730555 ], [ -64.882361864749441, 18.334741227506015 ], [ -64.882323978528859, 18.33483644466213 ], [ -64.882258768600536, 18.334976925426815 ], [ -64.882214678458979, 18.335069630630073 ], [ -64.882196239572806, 18.33511589744819 ], [ -64.882189029822939, 18.335130483276373 ], [ -64.882177965705466, 18.335141547393846 ], [ -64.882159191542996, 18.335142216636768 ], [ -64.882120465822084, 18.335139366788326 ], [ -64.882045700519541, 18.335130984881118 ], [ -64.882000773496941, 18.335116904586698 ], [ -64.881917457339341, 18.335052531539418 ], [ -64.881824919774203, 18.334976088545716 ], [ -64.881738252163416, 18.334925629464408 ], [ -64.881661809169771, 18.334876677816681 ], [ -64.881514455241188, 18.334823033610576 ], [ -64.881474557362935, 18.334818004466285 ], [ -64.881339273380718, 18.334832421346675 ], [ -64.881143807304795, 18.334967202414418 ], [ -64.880965606648033, 18.335079184694621 ], [ -64.880757066106582, 18.335253863640673 ], [ -64.88071716822833, 18.335316226339899 ], [ -64.880682299494367, 18.335415634449646 ], [ -64.880643072168652, 18.335511858744269 ], [ -64.880570820128582, 18.335655859909991 ], [ -64.880522540343122, 18.335785445504996 ], [ -64.880437044889675, 18.336030363523662 ], [ -64.880390944400119, 18.336058526731847 ], [ -64.880278962119917, 18.336120386516711 ], [ -64.880131774519782, 18.336213090410297 ], [ -64.880040579369449, 18.336293221443157 ], [ -64.879930442418527, 18.336561608802015 ], [ -64.879879814389369, 18.336656156715208 ], [ -64.879836900334169, 18.336759757088203 ], [ -64.879795158436309, 18.336845420179827 ], [ -64.879778059345654, 18.336908619760095 ], [ -64.879743861164229, 18.337019260935165 ], [ -64.879699939970521, 18.337082126548808 ], [ -64.879639590238696, 18.33712956683388 ], [ -64.879587454775901, 18.337152365621478 ], [ -64.879536828056416, 18.33719528098635 ], [ -64.879453679536994, 18.33726267152025 ], [ -64.879407745375886, 18.337321177232468 ], [ -64.879345385295949, 18.33740264937046 ], [ -64.879315378068213, 18.337499879493976 ], [ -64.879279000590941, 18.337581686908266 ], [ -64.879280174057953, 18.337626613930865 ], [ -64.879281515163086, 18.337655950606063 ], [ -64.879268271749709, 18.337696016122493 ], [ -64.879215968648793, 18.337742116612048 ], [ -64.879126952794309, 18.337730549580158 ], [ -64.879021843678061, 18.33771730616678 ], [ -64.878858564125778, 18.337672714420478 ], [ -64.878670977042646, 18.337627787397878 ], [ -64.87859285766757, 18.337590068815473 ], [ -64.878528149343992, 18.337577160678393 ], [ -64.878453550369898, 18.337579675250538 ], [ -64.878317092920668, 18.337617226194766 ], [ -64.878067312086102, 18.337639858653915 ], [ -64.878046189679992, 18.337644383574116 ], [ -64.878036299029475, 18.337672211506003 ], [ -64.87800813582129, 18.337735411086328 ], [ -64.877980307889402, 18.337761562636786 ], [ -64.877913084993622, 18.337771118011005 ], [ -64.877814178488677, 18.337767263643343 ], [ -64.877728515397109, 18.33774178264548 ], [ -64.877647713811655, 18.337720994205938 ], [ -64.877576467600477, 18.337715797423471 ], [ -64.87753120530158, 18.337701548181201 ], [ -64.877406985436892, 18.337644718850413 ], [ -64.877174471331159, 18.337537095161963 ], [ -64.876985375504717, 18.337492168139363 ], [ -64.876647249368261, 18.337425951072476 ], [ -64.876175684578868, 18.337338779237598 ], [ -64.876026317682886, 18.337353363756108 ], [ -64.875976696792293, 18.337353028479868 ], [ -64.875827332515655, 18.337351687374678 ], [ -64.87574401504844, 18.337398626055005 ], [ -64.87566069889084, 18.337445397097213 ], [ -64.87551116566641, 18.337475907239423 ], [ -64.875278986836975, 18.337489821205338 ], [ -64.875096596536309, 18.337472554476506 ], [ -64.874947230949999, 18.337487138995016 ], [ -64.874748413420889, 18.337469704628063 ], [ -64.874550097496524, 18.337404661028188 ], [ -64.874417494414956, 18.337387729575653 ], [ -64.874251867928649, 18.337370630484941 ], [ -64.874135694694871, 18.337369624656105 ], [ -64.874037292414016, 18.337345987677793 ], [ -64.873886081498483, 18.33730139593149 ], [ -64.873740740537301, 18.3372599906196 ], [ -64.873596905700083, 18.337210872643425 ], [ -64.873443350469813, 18.337153874364787 ], [ -64.873296499455705, 18.33708614855459 ], [ -64.873135062613358, 18.337029151585625 ], [ -64.873028446063415, 18.336988081550032 ], [ -64.87294546518217, 18.33696410798575 ], [ -64.872813197376843, 18.336915492923993 ], [ -64.87256325021383, 18.336812395465415 ], [ -64.872463170241872, 18.33678071185625 ], [ -64.872366106446805, 18.336745843122287 ], [ -64.872317827971017, 18.336719188657355 ], [ -64.872284300342187, 18.33670527469144 ], [ -64.872263513212374, 18.336667054504289 ], [ -64.872245743569067, 18.336622964362732 ], [ -64.872226800458805, 18.336570158347342 ], [ -64.872231997241272, 18.33652221383818 ], [ -64.872237194023739, 18.336483489426939 ], [ -64.872266698337114, 18.336459015567584 ], [ -64.872370466348229, 18.336439400595054 ], [ -64.872568614634417, 18.336438394766162 ], [ -64.872767601111377, 18.336440072457265 ], [ -64.872883774345155, 18.336440910648037 ], [ -64.87299977863114, 18.336441916476872 ], [ -64.873131877488618, 18.336506289524152 ], [ -64.87324754911765, 18.336554735638117 ], [ -64.873313263270063, 18.33661860577098 ], [ -64.873379143750981, 18.336682475903842 ], [ -64.87351107628001, 18.3367470165893 ], [ -64.87365993764223, 18.336795631651057 ], [ -64.873808632675946, 18.33686017364613 ], [ -64.873924470633426, 18.336892861774572 ], [ -64.874073502253111, 18.336909960865228 ], [ -64.874173079310651, 18.336910631417823 ], [ -64.874355134335019, 18.33694935582912 ], [ -64.874620168931017, 18.336977686675425 ], [ -64.874761487886417, 18.336931250909515 ], [ -64.874977239487407, 18.336917170615095 ], [ -64.875143702854757, 18.336839386516317 ], [ -64.875310167531723, 18.336777359093333 ], [ -64.87555927781375, 18.336731929156315 ], [ -64.875742171028833, 18.33667007068118 ], [ -64.875941157505736, 18.33667174706261 ], [ -64.87607376058736, 18.336688678515145 ], [ -64.876198984971211, 18.33671667408521 ], [ -64.876348518195698, 18.33675036935216 ], [ -64.876468211830513, 18.33677769436963 ], [ -64.876612212996179, 18.336797308032487 ], [ -64.876735929946449, 18.336820609734502 ], [ -64.876851767903986, 18.336837373548917 ], [ -64.877000965852119, 18.336854472639573 ], [ -64.877372954893644, 18.336913482575937 ], [ -64.877567247502554, 18.336919683877625 ], [ -64.877752152375365, 18.336913482575937 ], [ -64.877877042792647, 18.336895880570808 ], [ -64.877983325375965, 18.336885820972498 ], [ -64.87807586163143, 18.33686805263892 ], [ -64.878197231647732, 18.336872074644702 ], [ -64.87828775624547, 18.336900740767305 ], [ -64.878391356618465, 18.336920186792042 ], [ -64.878517755779058, 18.336916498752885 ], [ -64.878617500474718, 18.336915829509962 ], [ -64.878746917121873, 18.336932256738407 ], [ -64.878857223020646, 18.336914654733278 ], [ -64.879077834818133, 18.336838379377753 ], [ -64.879165509567429, 18.3368144071232 ], [ -64.879238767436391, 18.336787082105673 ], [ -64.879299284806393, 18.336721032676962 ], [ -64.879333985902178, 18.336656324353385 ], [ -64.879414955125753, 18.336469743099087 ], [ -64.879514867459534, 18.336258855623612 ], [ -64.879757941458649, 18.335991806750542 ], [ -64.879801193409492, 18.335860713721956 ], [ -64.879858860931051, 18.335748228527336 ], [ -64.879872774896967, 18.335650830765644 ], [ -64.879878642232029, 18.335537842656606 ], [ -64.879863554799044, 18.335413959377888 ], [ -64.879831032999107, 18.335350255573474 ], [ -64.879738329105521, 18.335261742633463 ], [ -64.879725084382471, 18.335122267697614 ], [ -64.879726259159156, 18.334988661406555 ], [ -64.879762971912669, 18.334959658697983 ], [ -64.879923569254629, 18.334868966462068 ], [ -64.880093889608929, 18.334740724591541 ], [ -64.880188437522122, 18.334613319602113 ], [ -64.880271921317842, 18.334414499453658 ], [ -64.880327577181674, 18.334232278100785 ], [ -64.880375354052717, 18.3340787215609 ], [ -64.880383735959924, 18.33399037625901 ], [ -64.880403014346484, 18.333943102302385 ], [ -64.88046034659169, 18.333893481411792 ], [ -64.880569311385329, 18.3337940706827 ], [ -64.880676767435602, 18.333748642055355 ], [ -64.880910455008348, 18.333576310043327 ], [ -64.881011036585051, 18.333450412487537 ], [ -64.881065686620047, 18.333351842568504 ], [ -64.881065017377125, 18.333257127017191 ], [ -64.881005170559717, 18.333096025451084 ], [ -64.880960914089712, 18.332992091111521 ], [ -64.88091313721867, 18.332935932333271 ], [ -64.88080551353022, 18.332894693349829 ], [ -64.880781205999313, 18.332842893163331 ], [ -64.880834012014702, 18.332808527343843 ], [ -64.88095990826082, 18.332770473485141 ], [ -64.881136766502777, 18.332741304448064 ], [ -64.881257129380458, 18.332654467889483 ], [ -64.881359891562738, 18.332578695448376 ], [ -64.881576816630741, 18.332544161990711 ], [ -64.881780329337573, 18.332481632963038 ], [ -64.881930868390896, 18.332450955182651 ], [ -64.882077382819034, 18.332457659398756 ], [ -64.882192719171826, 18.332529577472201 ], [ -64.882267987388786, 18.332604007498446 ], [ -64.882331523555024, 18.332668717131696 ], [ -64.882436297395031, 18.332716996917213 ], [ -64.882523469229909, 18.332742645553253 ], [ -64.882574766501989, 18.332730575606888 ], [ -64.882669817329656, 18.332691013004876 ], [ -64.88275933478883, 18.332635860055518 ], [ -64.882857907327207, 18.332550364602071 ], [ -64.882922615650784, 18.332486828435833 ], [ -64.882993191309424, 18.332425977099206 ], [ -64.883047841344364, 18.332354060335433 ], [ -64.883110033786124, 18.332262529908803 ], [ -64.88317859778698, 18.332121881505998 ], [ -64.883263422687833, 18.331900934432213 ], [ -64.88333114849803, 18.331743019300575 ], [ -64.883316062374774, 18.33156867563082 ], [ -64.883268285503732, 18.331362480713665 ], [ -64.883220674961137, 18.331108676563645 ], [ -64.883156135585352, 18.330918071993949 ], [ -64.883091090675805, 18.330759318671539 ], [ -64.883114058411252, 18.330551112096714 ], [ -64.883007440551637, 18.330396549727936 ], [ -64.882924458360719, 18.330262942127206 ], [ -64.882831754467077, 18.330165879641811 ], [ -64.882760675894019, 18.330065296755379 ], [ -64.882675012802395, 18.329963708040168 ], [ -64.882630085779851, 18.329899167354711 ], [ -64.882594881769592, 18.329791040751843 ], [ -64.882603432624592, 18.329653577473721 ], [ -64.882617680557189, 18.329525669569875 ], [ -64.882610136840697, 18.329395750008246 ], [ -64.882590021573094, 18.329223082719921 ], [ -64.882584154238032, 18.329123673300558 ], [ -64.882548782589652, 18.32904287171516 ], [ -64.882523301591789, 18.328945976867942 ], [ -64.882504189533677, 18.328831816601507 ], [ -64.882462281307369, 18.32876191018579 ], [ -64.882420370461659, 18.328688149402467 ], [ -64.882380641531256, 18.328608522593697 ], [ -64.882359182539119, 18.328525372764602 ], [ -64.882323812200411, 18.328411043550432 ], [ -64.882269831408394, 18.328339126786659 ], [ -64.882185341783781, 18.328272742081595 ], [ -64.882108060599421, 18.328234520584772 ], [ -64.882018709468639, 18.328193784515804 ], [ -64.881974117722336, 18.328176853063269 ], [ -64.881949811501158, 18.328145001815869 ], [ -64.881896836537976, 18.328080964044887 ], [ -64.881838833740176, 18.328023631799624 ], [ -64.881790555264331, 18.327921038565194 ], [ -64.881763565523158, 18.327865716667986 ], [ -64.881732049552113, 18.327839229841231 ], [ -64.881678405346008, 18.327859514056627 ], [ -64.881596261345805, 18.327834703611359 ], [ -64.881507748405738, 18.327868566516429 ], [ -64.881419404413521, 18.327880302496169 ], [ -64.881370454075466, 18.327861860990652 ], [ -64.881336591170395, 18.327821461507654 ], [ -64.881291496509675, 18.327763457400124 ], [ -64.88126987118909, 18.327711489575506 ], [ -64.881244893105645, 18.327691709584201 ], [ -64.881200301359343, 18.327632196733362 ], [ -64.881180352420188, 18.327590288507054 ], [ -64.881179177643503, 18.327527925807829 ], [ -64.881195941457918, 18.327460199997631 ], [ -64.881209689095385, 18.327432708651713 ], [ -64.881226788186098, 18.327411921521843 ], [ -64.881244725467468, 18.327390128563138 ], [ -64.881255285360908, 18.327350733599303 ], [ -64.881265008373248, 18.327315193003074 ], [ -64.881278923648836, 18.327267583770208 ], [ -64.881304907561173, 18.327193321382083 ], [ -64.881312114691696, 18.327152082398641 ], [ -64.88132234061851, 18.327136827327536 ], [ -64.881339776295135, 18.327097598692148 ], [ -64.881351509655531, 18.327014282534606 ], [ -64.881359222319816, 18.326894756537911 ], [ -64.881342626143578, 18.326776405317958 ], [ -64.881335416393711, 18.326728628446915 ], [ -64.881305410475591, 18.32665201650542 ], [ -64.881277582543703, 18.326591834411715 ], [ -64.88124573129636, 18.326527796640733 ], [ -64.881207677437658, 18.326481025598525 ], [ -64.881173814532588, 18.326436433852223 ], [ -64.881119667412065, 18.326370216785335 ], [ -64.880937109473223, 18.326198724273695 ], [ -64.880698391446515, 18.325959000418152 ], [ -64.880527569487469, 18.325835955330092 ], [ -64.880298743420894, 18.325638811563067 ], [ -64.880289020408554, 18.32563042965586 ], [ -64.880358254962005, 18.325544935512141 ], [ -64.880602168461508, 18.325238325346731 ], [ -64.880679282007748, 18.325145789091266 ], [ -64.8806930283356, 18.325154338636594 ], [ -64.880706439387097, 18.325162551596009 ], [ -64.880758742488013, 18.325212509072571 ], [ -64.880809704483795, 18.325281239401932 ], [ -64.880883968181593, 18.325337902404272 ], [ -64.880938281630563, 18.325378972439864 ], [ -64.881008523322578, 18.325449046493759 ], [ -64.881042386227705, 18.325497661555517 ], [ -64.88109267636122, 18.325540575610717 ], [ -64.88118437442597, 18.325577623640527 ], [ -64.881293508167403, 18.325595897507867 ], [ -64.881440694457808, 18.325651218095402 ], [ -64.881620067271911, 18.325727996365345 ], [ -64.881787370139591, 18.325798235438015 ], [ -64.881869848106476, 18.32585690878841 ], [ -64.881925671608428, 18.325953972583477 ], [ -64.882020050573828, 18.326040472556087 ], [ -64.882128009538576, 18.326192186386095 ], [ -64.882178134653259, 18.32623124476396 ], [ -64.882257593823851, 18.326287069575585 ], [ -64.882386842832886, 18.32631137579682 ], [ -64.882447361512561, 18.326333002427077 ], [ -64.882512068526466, 18.326341384334285 ], [ -64.882576944488164, 18.326320597204415 ], [ -64.882635451510112, 18.326342388853448 ], [ -64.882689766268754, 18.326389161205327 ], [ -64.882741900421877, 18.32643978661514 ], [ -64.882751455796097, 18.326495945393333 ], [ -64.882758831874412, 18.326580939242035 ], [ -64.882787834582984, 18.326701469757893 ], [ -64.882850194662922, 18.32676919556809 ], [ -64.882861426418572, 18.326871622474073 ], [ -64.882870478878317, 18.326997352391743 ], [ -64.882908366408515, 18.327065244530388 ], [ -64.882949939358582, 18.327168006712668 ], [ -64.883007271603844, 18.327317707575219 ], [ -64.88302001341242, 18.327470425924446 ], [ -64.882996879348582, 18.327578552527314 ], [ -64.883033758430599, 18.327756585545899 ], [ -64.883014144767742, 18.327912990624611 ], [ -64.883005596532087, 18.327959258752344 ], [ -64.883003583564687, 18.327989602566049 ], [ -64.882983803573325, 18.328052800836701 ], [ -64.88298095241521, 18.328107284543137 ], [ -64.882986653421767, 18.328162939097297 ], [ -64.883016828287737, 18.328242734853859 ], [ -64.883048679535079, 18.328327056840294 ], [ -64.883092096504697, 18.328410205359717 ], [ -64.883110705648335, 18.328424957516347 ], [ -64.883181616583272, 18.328430489575112 ], [ -64.8832555436951, 18.32844390062661 ], [ -64.88330684096718, 18.328594942594407 ], [ -64.88332846759738, 18.328627464394344 ], [ -64.883329473426272, 18.32864623986643 ], [ -64.88333114849803, 18.328680774633767 ], [ -64.883357467686665, 18.328739615622339 ], [ -64.88344497479784, 18.328843047047485 ], [ -64.883456375501282, 18.32887087497943 ], [ -64.8834773289596, 18.3288822743732 ], [ -64.883533152461553, 18.32889048864223 ], [ -64.883562656774927, 18.328897361806185 ], [ -64.883591825811948, 18.328921836975155 ], [ -64.883584283405128, 18.3289721284184 ], [ -64.883564500794478, 18.32903163995951 ], [ -64.883568525419605, 18.329114285564515 ], [ -64.883599035561815, 18.329206151267385 ], [ -64.88357522963571, 18.329277732754917 ], [ -64.883639267406693, 18.329531536904881 ], [ -64.883736666478057, 18.329769918345676 ], [ -64.883850994382556, 18.329976783815368 ], [ -64.883932298882428, 18.330151630399541 ], [ -64.884128938425306, 18.330422366002097 ], [ -64.884342174144479, 18.330677511257306 ], [ -64.884514673794683, 18.330868954017717 ], [ -64.884630008837746, 18.330949085050577 ], [ -64.884778368595164, 18.331045309345257 ], [ -64.884977522710244, 18.331031060102987 ], [ -64.885242893892212, 18.331017313775192 ], [ -64.885525699441132, 18.330924609881549 ], [ -64.88600648563812, 18.330928465558884 ], [ -64.886588189997838, 18.330774909018942 ], [ -64.886919945884813, 18.330761665605564 ], [ -64.887068976194826, 18.330794522681799 ], [ -64.887284558847966, 18.330796199063229 ], [ -64.887433924434276, 18.330781614544719 ], [ -64.887534004406234, 18.330719085516989 ], [ -64.887551438773244, 18.330624202327499 ], [ -64.887502656073309, 18.330513058238012 ], [ -64.887370892492129, 18.330401075957809 ], [ -64.887272991816076, 18.330226061735516 ], [ -64.887207780578024, 18.330098824384208 ], [ -64.887225550221274, 18.329972257585496 ], [ -64.887492094870254, 18.329816018835288 ], [ -64.887625870109161, 18.329706383489111 ], [ -64.887792502424304, 18.329612673766633 ], [ -64.888174717392644, 18.329520640425528 ], [ -64.888473280927087, 18.32950722937403 ], [ -64.888706633223535, 18.329366580971225 ], [ -64.88884225248205, 18.329035160360547 ], [ -64.88897720118797, 18.328766940639809 ], [ -64.88906236136512, 18.328514308647129 ], [ -64.88904811212285, 18.328260839773407 ], [ -64.888955072952967, 18.327945512424549 ], [ -64.88890997829219, 18.327708472088887 ], [ -64.888889860405243, 18.327404376495679 ], [ -64.888742004871915, 18.327059041919028 ], [ -64.88859029235158, 18.326803730335428 ], [ -64.888196007436932, 18.326326967453895 ], [ -64.888091904149519, 18.326243314710325 ], [ -64.888060891092834, 18.326149103383102 ], [ -64.888084694399652, 18.326047682305955 ], [ -64.888103303543289, 18.325979621219517 ], [ -64.888130460922639, 18.325939554393415 ], [ -64.888178237793625, 18.325880210490425 ], [ -64.888225847026547, 18.325830423271327 ], [ -64.888256692445054, 18.325812484680284 ], [ -64.888382084467082, 18.325788512425675 ], [ -64.88844075912715, 18.325793878155935 ], [ -64.88848032041949, 18.325812484680284 ], [ -64.888587945417612, 18.325913236514509 ], [ -64.888719206084318, 18.326072660389457 ], [ -64.888817105450755, 18.32624767461175 ], [ -64.888881815084005, 18.32643827787183 ], [ -64.889012405198173, 18.326670793287235 ], [ -64.889185575400973, 18.326868606297126 ], [ -64.889218766443776, 18.327029872882008 ], [ -64.889255983421435, 18.327287867985603 ], [ -64.889288002306955, 18.327570002981986 ], [ -64.889350698972805, 18.327788101517001 ], [ -64.889415407296383, 18.327978704777024 ], [ -64.889480283258081, 18.328219600789964 ], [ -64.889500398525684, 18.328251452037307 ], [ -64.889666361597961, 18.328562923708887 ], [ -64.889740791624206, 18.328664680062275 ], [ -64.889839530491031, 18.32876191018579 ], [ -64.889972804125193, 18.328861822519627 ], [ -64.890137592420729, 18.328926530843205 ], [ -64.890350828139901, 18.329081931402698 ], [ -64.890423415456269, 18.329114285564515 ], [ -64.890526680552966, 18.32913339762257 ], [ -64.890642349562654, 18.329149489574718 ], [ -64.890839659658127, 18.32920665418186 ], [ -64.891012328256124, 18.329172623638613 ], [ -64.891156663388415, 18.32915535690978 ], [ -64.89126378547212, 18.329092995520227 ], [ -64.891341735899402, 18.329050415431652 ], [ -64.89137895156739, 18.329038345485287 ], [ -64.891467967421818, 18.329023594638272 ], [ -64.891555140566368, 18.329024431519315 ], [ -64.891608449496175, 18.329032478150225 ], [ -64.891632420441113, 18.32904957724088 ], [ -64.891643484558585, 18.329079081554255 ], [ -64.89163812144767, 18.329148483745882 ], [ -64.891613478640522, 18.329196092978748 ], [ -64.891564528302467, 18.329240349448753 ], [ -64.891507194747533, 18.329328694750643 ], [ -64.891483725407397, 18.329427265979348 ], [ -64.891413149748757, 18.329564058704818 ], [ -64.89130854354687, 18.329703533640668 ], [ -64.891225899251594, 18.329725997151968 ], [ -64.89114342128471, 18.329743934433338 ], [ -64.89111257455653, 18.329763715734373 ], [ -64.89111726842458, 18.329783832311648 ], [ -64.89120913543718, 18.329795231705418 ], [ -64.891278705266927, 18.3297881909034 ], [ -64.891327151380892, 18.329794728791001 ], [ -64.891417005426035, 18.329861784048603 ], [ -64.891505184399477, 18.329936550660818 ], [ -64.891612471501958, 18.329945100206146 ], [ -64.891739876491386, 18.329967731355623 ], [ -64.891857390830353, 18.330004108832838 ], [ -64.892007594607378, 18.330005282299851 ], [ -64.892080518509658, 18.329978124920501 ], [ -64.89219870340122, 18.329955996685499 ], [ -64.892344714914941, 18.329974101605046 ], [ -64.892512855973393, 18.329953817389651 ], [ -64.892717877423479, 18.329960187639131 ], [ -64.892805887449072, 18.329918948655688 ], [ -64.892847629346932, 18.329893300019648 ], [ -64.892986769006484, 18.329872848166076 ], [ -64.893120711883512, 18.329953314475233 ], [ -64.893269240588779, 18.330033613146213 ], [ -64.893422963457169, 18.330132854927456 ], [ -64.893549362617762, 18.330225894097339 ], [ -64.893702080966932, 18.330366542500144 ], [ -64.89389855287169, 18.330536862854501 ], [ -64.8941892374134, 18.330796199063229 ], [ -64.89426467457821, 18.330841461362127 ], [ -64.894398952731535, 18.33091354576402 ], [ -64.894597436294021, 18.330944391182527 ], [ -64.894730038065916, 18.330917736717652 ], [ -64.894803463572998, 18.330855040051802 ], [ -64.894866160238848, 18.330811789410632 ], [ -64.894905219926386, 18.330773735551929 ], [ -64.894956852474763, 18.330726629233482 ], [ -64.895000438392231, 18.330648845134647 ], [ -64.895009826128273, 18.330611964743014 ], [ -64.895148798149648, 18.330400405405271 ], [ -64.895197413211406, 18.330374421492934 ], [ -64.895237646365956, 18.330366710138321 ], [ -64.895255583647383, 18.330377438979554 ], [ -64.895267988870046, 18.330385485610464 ], [ -64.895288775999859, 18.330429909718589 ], [ -64.895302019413236, 18.330458575841249 ], [ -64.895339905633818, 18.330548932800866 ], [ -64.895347784626551, 18.330591345251264 ], [ -64.895346778797716, 18.330720426622179 ], [ -64.895335044127648, 18.330795696148812 ], [ -64.895309227853431, 18.330886723661024 ], [ -64.895247537016473, 18.330968363437137 ], [ -64.895211327177378, 18.331005914381365 ], [ -64.895083251635356, 18.331071125619417 ], [ -64.894984512768531, 18.331128457864679 ], [ -64.89487353631722, 18.331155279967675 ], [ -64.894726685303056, 18.331162153131572 ], [ -64.89449618285505, 18.331142204192474 ], [ -64.894247407849377, 18.331165338256312 ], [ -64.89412201451762, 18.331180090413 ], [ -64.894030484091047, 18.33119786005625 ], [ -64.89399343606118, 18.331181096241892 ], [ -64.89384725559961, 18.331082692651364 ], [ -64.893683808409207, 18.331015302117464 ], [ -64.893504267956985, 18.330952940727911 ], [ -64.893369822165539, 18.330901978732129 ], [ -64.893090704655776, 18.330901475817655 ], [ -64.892793314588289, 18.330933494703174 ], [ -64.892646966488599, 18.330978757002072 ], [ -64.892557950634114, 18.33106928159981 ], [ -64.892528111044498, 18.331176402373842 ], [ -64.892528613958916, 18.331322582835412 ], [ -64.892545377773331, 18.331475804099 ], [ -64.892604554038144, 18.33171183860577 ], [ -64.892662221559704, 18.331914010207413 ], [ -64.892674962058663, 18.332094724126648 ], [ -64.892698263760678, 18.332318856325173 ], [ -64.892701282556914, 18.332434359006413 ], [ -64.892692228787496, 18.332539300484541 ], [ -64.892658365882369, 18.332690510090458 ], [ -64.892631543779316, 18.332731078521306 ], [ -64.892524925919759, 18.332839037486053 ], [ -64.892505479895078, 18.332953365390551 ], [ -64.892523249538328, 18.333023607082566 ], [ -64.892661551007109, 18.333257797569729 ], [ -64.892805050568029, 18.333359889199414 ], [ -64.892993809808502, 18.333404144359804 ], [ -64.893127585047409, 18.333465501230137 ], [ -64.893271586213132, 18.333515122120787 ], [ -64.893452300132367, 18.333539932566111 ], [ -64.893606862501144, 18.333543116381179 ], [ -64.893727729602972, 18.333547979197022 ], [ -64.893826803746038, 18.333558205123779 ], [ -64.893947335571568, 18.333606652547417 ], [ -64.893992765508642, 18.333620231237092 ], [ -64.894052444687873, 18.333605479080404 ], [ -64.894098377539365, 18.333571782503782 ], [ -64.894214047858725, 18.333491317504354 ], [ -64.894296190549255, 18.333397272505522 ], [ -64.894370286608932, 18.333327701366102 ], [ -64.89448645984271, 18.333304064387789 ], [ -64.894666503209351, 18.333354692416947 ], [ -64.894800949000853, 18.333405151498312 ], [ -64.894877894908916, 18.333453096007474 ], [ -64.894966910763401, 18.333478409367217 ], [ -64.895054082598278, 18.333484779616697 ], [ -64.895161873924849, 18.333406157327204 ], [ -64.895305204537976, 18.333280596357326 ], [ -64.895605109177609, 18.333108767259716 ], [ -64.895954634707834, 18.332969123376074 ], [ -64.896088577584919, 18.332811712468583 ], [ -64.896162841282717, 18.332817915079886 ], [ -64.896315894908184, 18.332884635061191 ], [ -64.896425027339887, 18.332961580969311 ], [ -64.896616805376652, 18.333319488406744 ], [ -64.896665085162113, 18.333450915401954 ], [ -64.896685369377565, 18.333637161379954 ], [ -64.896693583646595, 18.333943940493157 ], [ -64.896705988869257, 18.334090791507265 ], [ -64.896730127452315, 18.334161702442202 ], [ -64.896765500410368, 18.334195062432855 ], [ -64.896861723395375, 18.33418282353864 ], [ -64.896952080354993, 18.33420176664896 ], [ -64.897026176414613, 18.33420243851117 ], [ -64.89712793407773, 18.334176957513307 ], [ -64.897240922186768, 18.33413605249649 ], [ -64.897370840438668, 18.334016526499795 ], [ -64.897422139020421, 18.333797760031587 ], [ -64.897490032468738, 18.333741601253337 ], [ -64.897447955294581, 18.333687957047232 ], [ -64.89731920920002, 18.333642359472094 ], [ -64.897317531508918, 18.333521660008387 ], [ -64.897356760144248, 18.333432979430199 ], [ -64.897379391293725, 18.333357039350972 ], [ -64.897455331372953, 18.333142796493291 ], [ -64.897500258395553, 18.333035677028931 ], [ -64.897525739393416, 18.332954706495741 ], [ -64.897520710249125, 18.332888993652944 ], [ -64.897466395490426, 18.332648600554421 ], [ -64.897477794884253, 18.332470904121806 ], [ -64.897522889544973, 18.332342828579783 ], [ -64.897592459374721, 18.332228164089315 ], [ -64.897661191013754, 18.332220788010943 ], [ -64.897773340932133, 18.332258338955228 ], [ -64.897777196609411, 18.332292537136595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_542", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.86195410394231, 18.327298261550538 ], [ -64.861932981536199, 18.327445447841001 ], [ -64.86189794516406, 18.327709814503748 ], [ -64.861811276243657, 18.327860353557071 ], [ -64.861696947029429, 18.328005360551629 ], [ -64.86160876936566, 18.328073085052097 ], [ -64.861592843742017, 18.328081300630856 ], [ -64.86154774908124, 18.328087838518456 ], [ -64.861500139848374, 18.328113988759242 ], [ -64.861457895036096, 18.328128238001511 ], [ -64.861434760972202, 18.328133267145802 ], [ -64.861424367407267, 18.328135446441649 ], [ -64.861417997157787, 18.328131590764372 ], [ -64.861408274145447, 18.328063864954174 ], [ -64.861399892238239, 18.328020615622734 ], [ -64.861387319377457, 18.328009048590786 ], [ -64.861359826721866, 18.327954901470264 ], [ -64.861341889440439, 18.327841410446752 ], [ -64.861344236374464, 18.327655833711674 ], [ -64.861379272746547, 18.327468749543016 ], [ -64.861382457871287, 18.327365316808141 ], [ -64.861363682399144, 18.327310666773201 ], [ -64.861316743718817, 18.327257022567096 ], [ -64.861289251063226, 18.32721779655111 ], [ -64.861279863327127, 18.32717555042916 ], [ -64.861281874984854, 18.327141184609616 ], [ -64.861369885010504, 18.326998190582458 ], [ -64.861386648824862, 18.326940355422778 ], [ -64.861372567220769, 18.326876317651738 ], [ -64.861286568852904, 18.326789647421663 ], [ -64.861255723434397, 18.3266220105873 ], [ -64.861246000422057, 18.326573561854048 ], [ -64.861169892704709, 18.3264806916319 ], [ -64.861028070834891, 18.326317410770002 ], [ -64.860895804339236, 18.326214314621097 ], [ -64.860783654420914, 18.326125969319207 ], [ -64.860712408209736, 18.326044160595302 ], [ -64.860579638799663, 18.325707041597354 ], [ -64.860515433390503, 18.325503024666432 ], [ -64.860406971511338, 18.325249220516412 ], [ -64.860382328704191, 18.325086445188276 ], [ -64.860261126326066, 18.324736918348378 ], [ -64.860041520357413, 18.324409019448353 ], [ -64.860008998557475, 18.324355039966008 ], [ -64.85998552921734, 18.324250432454448 ], [ -64.859961892239028, 18.324174828961191 ], [ -64.859924006018502, 18.3241183349067 ], [ -64.859825267151678, 18.324061505575855 ], [ -64.85978654274038, 18.323992941574943 ], [ -64.859680930709658, 18.323922701192657 ], [ -64.859658467198358, 18.323877271255583 ], [ -64.859605493544905, 18.323809545445442 ], [ -64.859556040292375, 18.323682643370432 ], [ -64.859514466032692, 18.323540821500615 ], [ -64.859504575382175, 18.323332279649435 ], [ -64.85952150683471, 18.323190959384419 ], [ -64.859514633670813, 18.323075458012852 ], [ -64.85951178382237, 18.322975042764597 ], [ -64.85947322704925, 18.322915028309069 ], [ -64.859408015811255, 18.322810422107182 ], [ -64.859326712621055, 18.322742696297041 ], [ -64.859144823925192, 18.322607244676647 ], [ -64.859094364843827, 18.322580757849892 ], [ -64.85899294376668, 18.322579919659177 ], [ -64.858848774962837, 18.322586122270536 ], [ -64.858704270882754, 18.322607244676647 ], [ -64.858478127026501, 18.322624008491061 ], [ -64.858306131600386, 18.322637084266319 ], [ -64.858099601406991, 18.322653009889962 ], [ -64.857881670510153, 18.322641442858014 ], [ -64.857647481332606, 18.322680502545609 ], [ -64.85754153271597, 18.322746551974319 ], [ -64.85744732138869, 18.322831376875172 ], [ -64.857317735793686, 18.322934641971869 ], [ -64.85723944878049, 18.322974875126476 ], [ -64.857141549414052, 18.323015108281027 ], [ -64.85697776563768, 18.323028686970702 ], [ -64.85691222043306, 18.323049977014989 ], [ -64.856769726700975, 18.323186937378637 ], [ -64.856702840391165, 18.323257177760922 ], [ -64.856608626444597, 18.323338314622617 ], [ -64.85654123722037, 18.323460522829635 ], [ -64.856439145590684, 18.323534115974837 ], [ -64.856333533559962, 18.323578037168545 ], [ -64.856243847152939, 18.323592118772638 ], [ -64.856120296531117, 18.323655318352962 ], [ -64.855869008262914, 18.323659844582835 ], [ -64.855643533649584, 18.323590945305625 ], [ -64.855565749550749, 18.323571666919065 ], [ -64.855460474105996, 18.323589436562372 ], [ -64.855389729499564, 18.32364458951173 ], [ -64.855300882592928, 18.323692366382772 ], [ -64.855233492059028, 18.323680630403032 ], [ -64.855147828967461, 18.323672417443618 ], [ -64.855038696535701, 18.323678955331275 ], [ -64.854913806118418, 18.323700245375562 ], [ -64.854855300406143, 18.32369605442193 ], [ -64.854772319524898, 18.323720529590958 ], [ -64.854812385041328, 18.323680799350825 ], [ -64.854877093364905, 18.32361994539491 ], [ -64.854941969326603, 18.32356261445932 ], [ -64.855010533327516, 18.323509137891392 ], [ -64.855079097328428, 18.32345180564613 ], [ -64.855128550580901, 18.323372177527744 ], [ -64.855233155473059, 18.323261201076377 ], [ -64.855278921996046, 18.323184087530137 ], [ -64.855351509312413, 18.323132957896235 ], [ -64.855387048598914, 18.323024998931487 ], [ -64.855339104089751, 18.322997841552194 ], [ -64.855239527032211, 18.32306154404688 ], [ -64.855058476527006, 18.32314184271786 ], [ -64.855013886090376, 18.323102783030322 ], [ -64.854992259460118, 18.322999181347654 ], [ -64.855020423978033, 18.322870436562766 ], [ -64.854976167507971, 18.322775385735099 ], [ -64.854945657365761, 18.322676143953856 ], [ -64.854901736172053, 18.322538177761317 ], [ -64.854910453355558, 18.322427368948127 ], [ -64.854812720317568, 18.322383783030716 ], [ -64.854805176601133, 18.322383783030716 ], [ -64.854725882449316, 18.322361487157536 ], [ -64.854639213528856, 18.322335503245256 ], [ -64.854552545918125, 18.322316727773114 ], [ -64.854469565036823, 18.322290743860776 ], [ -64.854382728478242, 18.322268447987653 ], [ -64.854299915235117, 18.322242464075316 ], [ -64.854209222999202, 18.322223688603174 ], [ -64.854122554078742, 18.322197704690893 ], [ -64.85402817380367, 18.322182449619788 ], [ -64.854125906841603, 18.322159986108488 ], [ -64.854239733141412, 18.322134505110569 ], [ -64.854307291313432, 18.322105838987966 ], [ -64.854512648039815, 18.322122099887906 ], [ -64.854686990399898, 18.322170379673423 ], [ -64.854847252465561, 18.322227041366091 ], [ -64.855023609102773, 18.322243469904208 ], [ -64.855103069582981, 18.322267609796938 ], [ -64.855240700499223, 18.322306837122596 ], [ -64.855409175524244, 18.322314045562791 ], [ -64.855513615397683, 18.322306166570058 ], [ -64.855672871634454, 18.322313207372076 ], [ -64.855789715420826, 18.322284876525771 ], [ -64.855903540410907, 18.322238943674279 ], [ -64.855977470142079, 18.322204410216614 ], [ -64.856075706094487, 18.322190663888819 ], [ -64.856164889587092, 18.322162165404336 ], [ -64.8563031897462, 18.322119250039464 ], [ -64.856364546616589, 18.322122770440501 ], [ -64.856441492524709, 18.322076502312768 ], [ -64.856539894805564, 18.322048003828286 ], [ -64.856592534492449, 18.321984133695423 ], [ -64.856666798190247, 18.321920263562561 ], [ -64.856854551601828, 18.321842814740023 ], [ -64.856922109773848, 18.321828733135931 ], [ -64.857118415350158, 18.321809790025668 ], [ -64.85744396862583, 18.32174508170209 ], [ -64.85755762597779, 18.32172261819079 ], [ -64.857952413806913, 18.321671991471305 ], [ -64.858117537378746, 18.321634943441438 ], [ -64.858303280442271, 18.321638296204355 ], [ -64.858504447524751, 18.32163259650747 ], [ -64.858624978040609, 18.321621197113643 ], [ -64.858724053493404, 18.321634608165198 ], [ -64.85882748491855, 18.32167450604345 ], [ -64.858913148010174, 18.321689761114555 ], [ -64.859142979905585, 18.321700489955788 ], [ -64.859406843653915, 18.321707530757806 ], [ -64.859547993661465, 18.321668638708388 ], [ -64.85967707503238, 18.321640475500203 ], [ -64.859867344325835, 18.32160694787143 ], [ -64.860103714108845, 18.321585322550845 ], [ -64.860177474892225, 18.32156839109831 ], [ -64.860248218188985, 18.321531007792203 ], [ -64.860322314248606, 18.321473004994346 ], [ -64.860479055913288, 18.321445009424338 ], [ -64.860650382096424, 18.321469819869606 ], [ -64.860812320543516, 18.321547268692143 ], [ -64.860930840711319, 18.321653718913581 ], [ -64.861043493544116, 18.321745416978331 ], [ -64.861146088088219, 18.321790344000931 ], [ -64.861228398416927, 18.321813980979243 ], [ -64.861274498906539, 18.321877851112106 ], [ -64.861320767034272, 18.321902326281133 ], [ -64.861400227514537, 18.321938703758406 ], [ -64.861510365775132, 18.321973907768609 ], [ -64.861540708279222, 18.321998215299516 ], [ -64.861564177619357, 18.322051859505564 ], [ -64.861564009981237, 18.322084884219976 ], [ -64.861534170391622, 18.322140540083751 ], [ -64.861513718538049, 18.322191166803236 ], [ -64.861487902263832, 18.322257048593826 ], [ -64.861478179251492, 18.322307675313311 ], [ -64.861447166194864, 18.322500626817089 ], [ -64.861437778458821, 18.322512026210859 ], [ -64.861349433156931, 18.322569693732419 ], [ -64.861330322408492, 18.322608921058077 ], [ -64.861312217488944, 18.322699110379574 ], [ -64.861304338496154, 18.322836238381342 ], [ -64.861306014877641, 18.322891558968877 ], [ -64.861315570251804, 18.322931624485307 ], [ -64.861300482818876, 18.322981077737779 ], [ -64.861252705947834, 18.323108985641682 ], [ -64.861078865192496, 18.323210406718772 ], [ -64.861043828820414, 18.323254663188777 ], [ -64.860896642529951, 18.323350049292742 ], [ -64.860822546470331, 18.323429509773007 ], [ -64.860726825090069, 18.323499750155293 ], [ -64.860711905295261, 18.323558926420162 ], [ -64.860703188111813, 18.323596308416597 ], [ -64.860737889207599, 18.323657832925107 ], [ -64.860771584474548, 18.32380216936707 ], [ -64.860768064073511, 18.323977686503838 ], [ -64.860760687995196, 18.324055638240793 ], [ -64.860773428494156, 18.324161417909693 ], [ -64.860785163164223, 18.324276250038338 ], [ -64.860779463467338, 18.324448245464396 ], [ -64.860788013012666, 18.324624434463431 ], [ -64.860806956122929, 18.324769609096109 ], [ -64.860840316113581, 18.324883938310336 ], [ -64.860879040524821, 18.324976474565801 ], [ -64.860924805738136, 18.325176968476342 ], [ -64.860980796878266, 18.325313259597124 ], [ -64.861067633436846, 18.325487435628702 ], [ -64.861072662581194, 18.325647027141827 ], [ -64.861158493310882, 18.32574760871853 ], [ -64.861234768666407, 18.325810809608527 ], [ -64.861439119563954, 18.325946093590687 ], [ -64.861621509864619, 18.326137536351155 ], [ -64.861846815530157, 18.326567863466778 ], [ -64.861901800841395, 18.326800880486985 ], [ -64.861922923247562, 18.326999530377918 ], [ -64.86193968706192, 18.327213605597478 ], [ -64.86195410394231, 18.327298261550538 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_664", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.8675775241731, 18.32081351653585 ], [ -64.867603340447317, 18.320843691401762 ], [ -64.86763368295135, 18.320857940644032 ], [ -64.867669892790445, 18.320872022248125 ], [ -64.867727895588303, 18.320907729172802 ], [ -64.867831663599418, 18.320992721711775 ], [ -64.867880613937473, 18.321045863003462 ], [ -64.867941298945595, 18.321085257967297 ], [ -64.86799326677027, 18.321113421175482 ], [ -64.868080270966971, 18.3211363876012 ], [ -64.868190409227566, 18.321181649900097 ], [ -64.868250926597568, 18.321246022947378 ], [ -64.868322843361341, 18.3213160956916 ], [ -64.868371626061275, 18.321385833159468 ], [ -64.868423426247773, 18.321458420475835 ], [ -64.868460641915703, 18.321514243977788 ], [ -64.868483273065181, 18.321583813807536 ], [ -64.868508921701164, 18.321639637309488 ], [ -64.868514286121808, 18.321686911266113 ], [ -64.868493498991938, 18.321753295971121 ], [ -64.868431808154924, 18.321816663189566 ], [ -64.868358382647898, 18.321893776735806 ], [ -64.868285124778936, 18.321970890282046 ], [ -64.868232318763603, 18.322014979113931 ], [ -64.868162246019381, 18.322058732669518 ], [ -64.868106422517428, 18.322111035770433 ], [ -64.868042049470148, 18.322166021081671 ], [ -64.867963427180598, 18.322179264495048 ], [ -64.867849936157143, 18.322186640573364 ], [ -64.867745329955255, 18.322191334441413 ], [ -64.867652123147195, 18.322207260065056 ], [ -64.86755019915563, 18.322223185688756 ], [ -64.86749219635783, 18.322222682774338 ], [ -64.867361438605485, 18.322215977248561 ], [ -64.867294215709762, 18.322240452417589 ], [ -64.867224310603717, 18.322262077738174 ], [ -64.867142670827604, 18.322283703058758 ], [ -64.867052481506107, 18.322305160741166 ], [ -64.867011577798962, 18.322326953699871 ], [ -64.866959107059927, 18.322348746658633 ], [ -64.866891885473819, 18.322373221827661 ], [ -64.866836563576669, 18.322386632879159 ], [ -64.866781242989134, 18.322408425837864 ], [ -64.866740004005692, 18.322460896576956 ], [ -64.866707649843931, 18.322507835257284 ], [ -64.866680995378999, 18.322551924089169 ], [ -64.866645959006917, 18.322582266593201 ], [ -64.866584435808079, 18.322620655728201 ], [ -64.866528947582424, 18.322659044863144 ], [ -64.866453176450989, 18.322674970486844 ], [ -64.866397854553782, 18.322680167269311 ], [ -64.866333984420919, 18.322671282447686 ], [ -64.866275646346821, 18.322693075406391 ], [ -64.866161987685189, 18.322739343534124 ], [ -64.866089232730701, 18.322741522830029 ], [ -64.865996193560761, 18.322749066546464 ], [ -64.865856049382046, 18.322814613060814 ], [ -64.865718752432429, 18.322893905902902 ], [ -64.865627892558393, 18.322968169600699 ], [ -64.86557508654306, 18.323020472701614 ], [ -64.865554299413191, 18.323073111078827 ], [ -64.865524459823575, 18.323147710052922 ], [ -64.865468302354998, 18.323258351227935 ], [ -64.865421194726878, 18.323324568294822 ], [ -64.86533620349752, 18.32339883199262 ], [ -64.865292113355963, 18.323459517000742 ], [ -64.86523628985401, 18.323520202008865 ], [ -64.865189017207115, 18.32360586510049 ], [ -64.865162027465885, 18.323700076427713 ], [ -64.865146603446988, 18.323802672281545 ], [ -64.865137887573155, 18.323939465007015 ], [ -64.865040154535222, 18.324121352393263 ], [ -64.865024899464117, 18.3241922633282 ], [ -64.864991370525615, 18.324289661089836 ], [ -64.864968236461777, 18.324360404386596 ], [ -64.86495868239723, 18.324409857639068 ], [ -64.864952813752495, 18.324452773003941 ], [ -64.864942086220992, 18.324505242433361 ], [ -64.86493135737976, 18.324569615480641 ], [ -64.864917274465995, 18.324637342600511 ], [ -64.864911073164308, 18.324710265193119 ], [ -64.86491224663132, 18.324822078525528 ], [ -64.864917274465995, 18.324886620520601 ], [ -64.864936554162227, 18.324996423504956 ], [ -64.864948456470472, 18.325060964190413 ], [ -64.864947784608205, 18.325121146284062 ], [ -64.86495650179171, 18.325165235115946 ], [ -64.864966058475545, 18.325224411380816 ], [ -64.864967902495152, 18.325269506041536 ], [ -64.864975278573468, 18.325322312056869 ], [ -64.864989526506065, 18.325373944605246 ], [ -64.86500696218269, 18.325433288508236 ], [ -64.865012157655485, 18.325484919746884 ], [ -64.86502774931256, 18.325627916393387 ], [ -64.86503244318061, 18.325733193147812 ], [ -64.86501333243217, 18.325859927584702 ], [ -64.864984163395093, 18.325973586246334 ], [ -64.864979134250802, 18.326032593563355 ], [ -64.864970752343595, 18.326103504498235 ], [ -64.86498248570399, 18.326154635441867 ], [ -64.86498936017756, 18.326196377339727 ], [ -64.86500830328788, 18.3262568934 ], [ -64.864992880578598, 18.326347082721497 ], [ -64.86495365325294, 18.326402404618705 ], [ -64.864882742318002, 18.326445990536115 ], [ -64.864807305153192, 18.32646392650787 ], [ -64.86466900237474, 18.326469627514427 ], [ -64.864561212357785, 18.32648991042015 ], [ -64.864456941432252, 18.326567694518985 ], [ -64.86435635854582, 18.326680347351783 ], [ -64.864275724598599, 18.326744720399063 ], [ -64.864190061506974, 18.326815800281793 ], [ -64.864095847560407, 18.326911186385701 ], [ -64.864095513593782, 18.326940858337196 ], [ -64.864087299324694, 18.327000034602065 ], [ -64.864074557516119, 18.32704278232876 ], [ -64.864043210492866, 18.327085362417336 ], [ -64.864018063461572, 18.327116375473963 ], [ -64.863991576634817, 18.327141184609616 ], [ -64.863931060574487, 18.327151076569805 ], [ -64.863889151038506, 18.327144872648773 ], [ -64.863844391654084, 18.327135652550851 ], [ -64.863741963438429, 18.327143700491433 ], [ -64.863645740453421, 18.327162139377606 ], [ -64.863602322174131, 18.327175047514686 ], [ -64.863586564188608, 18.327204551828061 ], [ -64.863570638564909, 18.327247299554756 ], [ -64.863536943297959, 18.327336315409241 ], [ -64.863510456471204, 18.327388953786453 ], [ -64.863500733458864, 18.327431701513149 ], [ -64.863483299091911, 18.327480485522756 ], [ -64.863451949449313, 18.327515689532959 ], [ -64.863431666543534, 18.327533291538089 ], [ -64.863419428959048, 18.327527256564906 ], [ -64.863408700117816, 18.327506469435036 ], [ -64.863393611375159, 18.327467743714124 ], [ -64.863392271579698, 18.327432373375416 ], [ -64.863391264441134, 18.327376045649373 ], [ -64.863387073487559, 18.327319720542619 ], [ -64.863393780323008, 18.327278481559233 ], [ -64.863411549966258, 18.327235229608391 ], [ -64.863403838611646, 18.327192649519816 ], [ -64.863396294895153, 18.327167503798194 ], [ -64.863401156401324, 18.327140850642991 ], [ -64.863412220518853, 18.327120229841626 ], [ -64.863427809556526, 18.327100783816888 ], [ -64.863471564421786, 18.32706155649123 ], [ -64.863563596453218, 18.327004559522265 ], [ -64.863614727396794, 18.326997518720191 ], [ -64.863669042155436, 18.326995005457718 ], [ -64.863723355604407, 18.326985113497528 ], [ -64.863769960318109, 18.32697371541343 ], [ -64.863819747537207, 18.326927279647521 ], [ -64.863881438374221, 18.32684346057556 ], [ -64.863909938168376, 18.326807249426793 ], [ -64.863941789415719, 18.32675042140562 ], [ -64.863976155235264, 18.326707338402628 ], [ -64.864002305476049, 18.326666265747633 ], [ -64.864036337328969, 18.326635421638855 ], [ -64.864072713496512, 18.32659904285191 ], [ -64.864110264440797, 18.326555290605995 ], [ -64.864155694377814, 18.32650952539268 ], [ -64.864210010446129, 18.326471302586185 ], [ -64.864299361576855, 18.326426878478003 ], [ -64.86434462256608, 18.326385305527992 ], [ -64.864411511495234, 18.326330989459677 ], [ -64.864449062439462, 18.32629595439721 ], [ -64.864484097501872, 18.32627147922824 ], [ -64.864530365629662, 18.3262503555124 ], [ -64.8645620505485, 18.326234431198372 ], [ -64.864583674559412, 18.326205597437649 ], [ -64.864614353649472, 18.326179110610894 ], [ -64.864648384192662, 18.326140721475895 ], [ -64.864671350618437, 18.326100991235762 ], [ -64.86468844839942, 18.326064612448818 ], [ -64.864691130609742, 18.32602270422251 ], [ -64.864697334530717, 18.325962688457309 ], [ -64.864701190208052, 18.325898147771852 ], [ -64.864702866589482, 18.325836961158984 ], [ -64.86469800377364, 18.325747776356707 ], [ -64.864708566286367, 18.325710225412422 ], [ -64.86475617551929, 18.325662282212932 ], [ -64.864799426160459, 18.325620706643519 ], [ -64.864832449565142, 18.325560693497664 ], [ -64.864846532478907, 18.325507215620064 ], [ -64.864848879412932, 18.325485759247272 ], [ -64.864851392675405, 18.325460947492274 ], [ -64.864843850268585, 18.325429768107199 ], [ -64.864838484538325, 18.325395402287654 ], [ -64.864825408763068, 18.325351144507977 ], [ -64.86481099319235, 18.325318790346216 ], [ -64.864803449475914, 18.325289790256932 ], [ -64.864777799530202, 18.325264812173486 ], [ -64.864748630493125, 18.325246370667969 ], [ -64.86470957211526, 18.325211503243679 ], [ -64.864690796643117, 18.325176968476342 ], [ -64.864667662579222, 18.325129528191269 ], [ -64.864647713640124, 18.325090636141852 ], [ -64.86464352137682, 18.325049900072884 ], [ -64.864645031429802, 18.325015534253339 ], [ -64.864641846305062, 18.324988544512166 ], [ -64.864633464397855, 18.324930540404694 ], [ -64.864619215155642, 18.324881926652608 ], [ -64.864605133551549, 18.324817385967151 ], [ -64.864588872651552, 18.324757036235326 ], [ -64.864571438284599, 18.324685956352596 ], [ -64.864562384515125, 18.324604653162396 ], [ -64.864565403311417, 18.324487137513813 ], [ -64.86456037416707, 18.324416226578876 ], [ -64.864556518489792, 18.324346321472831 ], [ -64.864548136582584, 18.32427423838061 ], [ -64.864539753365705, 18.324202153978661 ], [ -64.864541263418687, 18.324172145441253 ], [ -64.864552830450634, 18.32411850254482 ], [ -64.86453405366882, 18.324080951600592 ], [ -64.864501868454852, 18.324022445888318 ], [ -64.864489463232189, 18.323952708420393 ], [ -64.864461132385827, 18.323872074473115 ], [ -64.86441251732407, 18.323780041132068 ], [ -64.864352335230365, 18.323674093825105 ], [ -64.864326854232502, 18.323596142088093 ], [ -64.864312940266529, 18.323529254468667 ], [ -64.864299529215032, 18.323409896110149 ], [ -64.864294163484715, 18.323348708187552 ], [ -64.864256949126457, 18.323284502778449 ], [ -64.864211182603469, 18.323217615158967 ], [ -64.864185198691132, 18.323195151647667 ], [ -64.864130717604041, 18.323100268458177 ], [ -64.864064668175274, 18.323016449386159 ], [ -64.864033318532677, 18.322941179859527 ], [ -64.864011022659554, 18.322843782097834 ], [ -64.864000127489817, 18.322765997999056 ], [ -64.863986716438319, 18.322624343767359 ], [ -64.863990738444102, 18.322516049526314 ], [ -64.864023932106306, 18.322372048360648 ], [ -64.864062487569754, 18.322280685572139 ], [ -64.864083777614042, 18.322178091028036 ], [ -64.864116468361772, 18.322109024112706 ], [ -64.864177991560609, 18.322042807045818 ], [ -64.864236663601332, 18.321984971886138 ], [ -64.864272204197562, 18.321921437029573 ], [ -64.864322326692957, 18.321841305996713 ], [ -64.864351663368154, 18.321813813341123 ], [ -64.864427603447382, 18.3217755918443 ], [ -64.864515110558557, 18.321734688137155 ], [ -64.864541597385312, 18.321704345633066 ], [ -64.864591553552202, 18.321638128566178 ], [ -64.864625082490647, 18.321599571793058 ], [ -64.864665818559672, 18.321583143254941 ], [ -64.864692305386427, 18.321564032506558 ], [ -64.8647013565365, 18.32151692618811 ], [ -64.864727843363255, 18.321489265894343 ], [ -64.864737398737475, 18.321450541483046 ], [ -64.864726168291497, 18.321403267526478 ], [ -64.864674534433505, 18.321327830361668 ], [ -64.864625585405122, 18.321283070977188 ], [ -64.864535731359922, 18.321243340737055 ], [ -64.864419893402442, 18.321206460345422 ], [ -64.864332889205684, 18.321180644071205 ], [ -64.864231300490417, 18.32117159161146 ], [ -64.864152844529372, 18.32115415724445 ], [ -64.864054105662547, 18.321153486691912 ], [ -64.863915973141559, 18.32112180308269 ], [ -64.863747998411611, 18.321048209937487 ], [ -64.863681615016219, 18.3210044563819 ], [ -64.863619253626666, 18.320963385036578 ], [ -64.863582373234976, 18.320905549876898 ], [ -64.863663007182254, 18.320944944840733 ], [ -64.863743807457979, 18.320984339804625 ], [ -64.863834836279864, 18.320985010357163 ], [ -64.863926031430196, 18.320995403922097 ], [ -64.864006833015594, 18.321025243511713 ], [ -64.864097860527806, 18.321025914064307 ], [ -64.864189054368467, 18.321026584616902 ], [ -64.864269857263537, 18.321056424206517 ], [ -64.864361052413869, 18.321057094759112 ], [ -64.864462304543167, 18.321057932949827 ], [ -64.864543610352712, 18.321029602103465 ], [ -64.864634805503044, 18.32102054964372 ], [ -64.86467755322974, 18.321016526328265 ], [ -64.86476070043949, 18.320992218797358 ], [ -64.864847704636247, 18.32099020713963 ], [ -64.86493471014262, 18.321002277085995 ], [ -64.865020373234245, 18.320981489956125 ], [ -64.865098826575945, 18.320946285945922 ], [ -64.86518163981907, 18.320916949270725 ], [ -64.865267304220311, 18.32090186183774 ], [ -64.865355815850705, 18.320899682541892 ], [ -64.865442821357078, 18.320904711686183 ], [ -64.865532675402278, 18.320929857407805 ], [ -64.865618001907933, 18.320951985642807 ], [ -64.865700144598463, 18.320985680909757 ], [ -64.865770218652358, 18.32103496652411 ], [ -64.865825202653923, 18.321099842485808 ], [ -64.865874320630098, 18.32116371261867 ], [ -64.865894101931076, 18.32118617612997 ], [ -64.865895945950683, 18.321188187787698 ], [ -64.865899635299513, 18.32119254637945 ], [ -64.865919416600491, 18.32121500989075 ], [ -64.865979597384523, 18.321283238615365 ], [ -64.866050005404986, 18.321332021315243 ], [ -64.866110187498691, 18.321400250039858 ], [ -64.866150085376944, 18.321478034138693 ], [ -64.866179758638111, 18.32155565059935 ], [ -64.866189146374211, 18.321642822434228 ], [ -64.866208423451098, 18.321739717281446 ], [ -64.866278831471561, 18.321798390631841 ], [ -64.866370026621894, 18.321799061184436 ], [ -64.866461221772227, 18.321799899375151 ], [ -64.866552416922559, 18.321800569927746 ], [ -64.866643612072892, 18.32179168510612 ], [ -64.866744865511862, 18.321792523296835 ], [ -64.86682566709726, 18.32182219524833 ], [ -64.866916863557321, 18.321822865800868 ], [ -64.867007889759805, 18.321823703991583 ], [ -64.867089195569349, 18.321795205507101 ], [ -64.867180054133712, 18.321731335374238 ], [ -64.86729958013035, 18.3216857377991 ], [ -64.86741491517347, 18.321623879323965 ], [ -64.867496219673285, 18.321595380839483 ], [ -64.867547516945365, 18.32152815794376 ], [ -64.867608872506082, 18.32146093504798 ], [ -64.867629828583745, 18.3213740984894 ], [ -64.867640723753425, 18.321287094292643 ], [ -64.86765162154245, 18.321200090095942 ], [ -64.867652458423493, 18.321113085899185 ], [ -64.867622786471998, 18.32103530180035 ], [ -64.867593114520503, 18.320957685339692 ], [ -64.86758372678446, 18.320870681142992 ], [ -64.8675775241731, 18.32081351653585 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_629", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.944282356831025, 18.341586225582432 ], [ -64.944505315562537, 18.341639031597822 ], [ -64.94463842024885, 18.341700388468212 ], [ -64.94483438923919, 18.34180817848511 ], [ -64.944919046501923, 18.341897529615892 ], [ -64.945007224165636, 18.341990402457327 ], [ -64.945058689075836, 18.34206533539799 ], [ -64.945169330250906, 18.342151167437407 ], [ -64.945250467112601, 18.342204979281632 ], [ -64.945328251211436, 18.34223750108157 ], [ -64.945391283153583, 18.34224504348839 ], [ -64.945488178000801, 18.342196262098128 ], [ -64.945555568534701, 18.342129374478702 ], [ -64.945645590218021, 18.342020242046942 ], [ -64.945771821740436, 18.341934914231672 ], [ -64.945821442631086, 18.34203365309844 ], [ -64.945846755990829, 18.342289133629947 ], [ -64.945809707960962, 18.342616026701023 ], [ -64.945737120644651, 18.342773103642003 ], [ -64.945709963265301, 18.343002266294491 ], [ -64.945682470609711, 18.343175939411708 ], [ -64.945567973757306, 18.343351121272178 ], [ -64.945490692572946, 18.343519428659079 ], [ -64.945331101059878, 18.343756133718387 ], [ -64.945256166809486, 18.343899130364889 ], [ -64.945178215072531, 18.344079507698154 ], [ -64.94508165550161, 18.34428318935278 ], [ -64.944967493925503, 18.344423165893375 ], [ -64.944844615165948, 18.344580410472417 ], [ -64.944777727546523, 18.344715526816515 ], [ -64.944722909873406, 18.34496396654589 ], [ -64.944670271496193, 18.34520301853928 ], [ -64.944638923163268, 18.345348696086376 ], [ -64.94459667835099, 18.345511137447943 ], [ -64.944431554779158, 18.345759075572573 ], [ -64.944274142561937, 18.346053614481889 ], [ -64.944076329552047, 18.346301216020606 ], [ -64.943830236756639, 18.346478409538804 ], [ -64.943722445430012, 18.346696674402324 ], [ -64.943603254709672, 18.346841513758704 ], [ -64.943448859979014, 18.347022898230534 ], [ -64.943332351468939, 18.347228925509512 ], [ -64.943313575996797, 18.347305536141334 ], [ -64.943317096397834, 18.347399078225635 ], [ -64.943305697004064, 18.347474012476027 ], [ -64.943297818011274, 18.347512904525445 ], [ -64.943274013394841, 18.347532350550125 ], [ -64.943262112396269, 18.347538385523308 ], [ -64.943250208778409, 18.347539056075902 ], [ -64.943191032513539, 18.34750418734194 ], [ -64.943100341587353, 18.347446687458557 ], [ -64.943046025518981, 18.347373261951475 ], [ -64.942970420716051, 18.347286425392895 ], [ -64.942922477516561, 18.347232445910549 ], [ -64.942864808685329, 18.347176622408597 ], [ -64.942840668792599, 18.347069501634564 ], [ -64.942837148391561, 18.347005799139822 ], [ -64.942851231305326, 18.346937235138967 ], [ -64.942885092900781, 18.346817038589677 ], [ -64.943061280590086, 18.346590224180886 ], [ -64.943260937619584, 18.346401631268861 ], [ -64.943418517474981, 18.346247907090799 ], [ -64.943548773622524, 18.346092506531306 ], [ -64.943792519483907, 18.345774833558096 ], [ -64.943953284463987, 18.345443914552163 ], [ -64.944070797493282, 18.345039906625118 ], [ -64.944137685112707, 18.34480957181529 ], [ -64.944142546618878, 18.344622320008455 ], [ -64.944213792830112, 18.344339180492909 ], [ -64.94431923853233, 18.344087220362439 ], [ -64.94465183261002, 18.343708524485521 ], [ -64.944728944846588, 18.343499479719924 ], [ -64.944807734774315, 18.343214328546651 ], [ -64.944870766716463, 18.343009305786893 ], [ -64.944938827802901, 18.342617201477708 ], [ -64.944927260770953, 18.3424413490647 ], [ -64.94485199124432, 18.342310256036058 ], [ -64.944768675086721, 18.341987886575509 ], [ -64.944638084972553, 18.34190976851005 ], [ -64.944473631953315, 18.341753362121722 ], [ -64.94438143097409, 18.341672728174444 ], [ -64.944282356831025, 18.341586225582432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1194", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.899969231670696, 18.31817539637342 ], [ -64.899942409567643, 18.318227865802783 ], [ -64.900024553567903, 18.318292072521615 ], [ -64.900137875643566, 18.318392486460198 ], [ -64.900235943957796, 18.31851553285793 ], [ -64.900459237965606, 18.318605220574625 ], [ -64.900514727500934, 18.318713848782238 ], [ -64.900576584666396, 18.318799679511983 ], [ -64.900659900823996, 18.318811749458348 ], [ -64.900716059602189, 18.318854832461341 ], [ -64.900777750439204, 18.318960613439913 ], [ -64.900859894439463, 18.319083324561291 ], [ -64.900947735517207, 18.319269067624873 ], [ -64.901000373894419, 18.319388927588136 ], [ -64.901041446549414, 18.319449109681841 ], [ -64.901121577582217, 18.319478111080741 ], [ -64.901228529408399, 18.319518848459438 ], [ -64.901320562749447, 18.319553715883728 ], [ -64.901403543630749, 18.319602667531399 ], [ -64.901407903532174, 18.319652790026794 ], [ -64.901441263522827, 18.319702578555564 ], [ -64.901446626633742, 18.319767957431736 ], [ -64.901428018799777, 18.319867366851099 ], [ -64.901370518916394, 18.319963758783899 ], [ -64.901313521947429, 18.320014385503441 ], [ -64.901226685388849, 18.320056462677542 ], [ -64.901161306512677, 18.320050260066239 ], [ -64.901084529552406, 18.319964261698374 ], [ -64.901031889865521, 18.319864349364536 ], [ -64.900880512621484, 18.319811878625444 ], [ -64.900794346615442, 18.319777009891482 ], [ -64.900773728433421, 18.319753709499139 ], [ -64.900613297419966, 18.319712972120499 ], [ -64.900527131413924, 18.319692352628806 ], [ -64.900423029436183, 18.319674582985499 ], [ -64.900316074990599, 18.319648096158801 ], [ -64.900144582479015, 18.319501580420933 ], [ -64.900032263612843, 18.319406864869563 ], [ -64.899925982339198, 18.31929505153721 ], [ -64.89988843139497, 18.319155407653568 ], [ -64.899858759443475, 18.318805211570748 ], [ -64.899791536547696, 18.31868920597509 ], [ -64.89970654269905, 18.31856699776813 ], [ -64.899524152398385, 18.318468258901305 ], [ -64.899280072570377, 18.318394665756102 ], [ -64.899068848508932, 18.318309674526745 ], [ -64.8989691025036, 18.318248989518622 ], [ -64.898889643333007, 18.31815242863803 ], [ -64.898731225286951, 18.317892924791067 ], [ -64.898502062634407, 18.317532167505192 ], [ -64.898378345684137, 18.317426221507844 ], [ -64.898284637271331, 18.317381125537452 ], [ -64.898253287628734, 18.317378444636859 ], [ -64.898241386630161, 18.317354135796279 ], [ -64.898236691452439, 18.317308539530757 ], [ -64.898215905632242, 18.317212315236134 ], [ -64.898194111363864, 18.317120114256909 ], [ -64.898111299430411, 18.316968400426958 ], [ -64.898018260260471, 18.316770084502593 ], [ -64.897950031535856, 18.316679727542976 ], [ -64.897904097374749, 18.316625414094005 ], [ -64.897857998194809, 18.316583001643551 ], [ -64.897810890566689, 18.316523993016858 ], [ -64.897762612090901, 18.316445706003606 ], [ -64.897725564061091, 18.316378315469706 ], [ -64.897709469489598, 18.316349314070806 ], [ -64.897684827992066, 18.316312601317293 ], [ -64.897612743590173, 18.316229285159693 ], [ -64.897566809429009, 18.316170276533001 ], [ -64.897528589241858, 18.316087295651755 ], [ -64.897482656390423, 18.3159035642459 ], [ -64.897430688565748, 18.31580834447044 ], [ -64.89739783148957, 18.315735926101922 ], [ -64.897350222256648, 18.315579854989835 ], [ -64.897310994930933, 18.315481282451515 ], [ -64.897263218059891, 18.315413725589167 ], [ -64.897205718176508, 18.315255810457529 ], [ -64.897157772357673, 18.315134272803107 ], [ -64.897133801412735, 18.31500234158375 ], [ -64.897115864131365, 18.314911146433417 ], [ -64.897059370076818, 18.314770664359116 ], [ -64.896993655924348, 18.314671926801964 ], [ -64.896958116637848, 18.314549886233124 ], [ -64.8969240860946, 18.314456679425064 ], [ -64.896894917057523, 18.314349223374734 ], [ -64.896841440489595, 18.314221818385306 ], [ -64.896688219226007, 18.313986957345548 ], [ -64.896479342098587, 18.313766010271763 ], [ -64.896407928249232, 18.313699290290458 ], [ -64.896321426966949, 18.313618321066883 ], [ -64.89639384664514, 18.313665259747211 ], [ -64.896462243007875, 18.313716054104873 ], [ -64.896538853639697, 18.313759304746043 ], [ -64.896603059048857, 18.313817810458261 ], [ -64.896655026873475, 18.313883859887028 ], [ -64.896719399920755, 18.313942365599246 ], [ -64.89678762864537, 18.313993159956908 ], [ -64.896864239277193, 18.314032387282566 ], [ -64.896940849909015, 18.314071782246458 ], [ -64.89698510637902, 18.314099107263928 ], [ -64.897093065343768, 18.314146381220496 ], [ -64.897234719575408, 18.314155266042121 ], [ -64.897319878442943, 18.314140513885491 ], [ -64.897441585045158, 18.314110506657698 ], [ -64.897526745222308, 18.314088043146398 ], [ -64.897607882084003, 18.314053844965031 ], [ -64.897689186583818, 18.314019646783663 ], [ -64.897762444452724, 18.313973881570348 ], [ -64.897811562428956, 18.313904814655018 ], [ -64.897848778096886, 18.313827701108778 ], [ -64.897861686234023, 18.313742708569748 ], [ -64.897874594371103, 18.313657883668895 ], [ -64.897879288239096, 18.313572891129866 ], [ -64.897888173060721, 18.313484042913558 ], [ -64.897901081197858, 18.313399050374585 ], [ -64.897873419594418, 18.313317578236592 ], [ -64.897833689354286, 18.313243817453213 ], [ -64.897757246360584, 18.313189167418273 ], [ -64.897709303161093, 18.313115238996772 ], [ -64.897677619551871, 18.313037790174235 ], [ -64.897637720363946, 18.312964029390855 ], [ -64.897614252333426, 18.312882557252919 ], [ -64.897606708616991, 18.312812987423115 ], [ -64.897594806308746, 18.312784991853107 ], [ -64.897619784392191, 18.312704022629532 ], [ -64.897632692529271, 18.312619197728679 ], [ -64.897617268510373, 18.312537893228807 ], [ -64.897585586210823, 18.312460276768149 ], [ -64.897644427199396, 18.312480393345425 ], [ -64.897669572920961, 18.31250369504744 ], [ -64.897677116637453, 18.312526996749455 ], [ -64.897694048089988, 18.312608301249327 ], [ -64.897718858535313, 18.312687594091415 ], [ -64.897736460540443, 18.312804605515907 ], [ -64.897752386164086, 18.312876522279737 ], [ -64.897778705352721, 18.312945924471308 ], [ -64.897795972081553, 18.312979619738257 ], [ -64.897867050654611, 18.313031587562932 ], [ -64.897971824494618, 18.313110377490602 ], [ -64.898041394324366, 18.31318648520795 ], [ -64.898120853494959, 18.31326980136555 ], [ -64.898186904233341, 18.313324283762313 ], [ -64.898227305026069, 18.313379604349848 ], [ -64.898264353055879, 18.313440456996148 ], [ -64.898305089124904, 18.313525952449538 ], [ -64.898353536548484, 18.31357657916908 ], [ -64.898392093321604, 18.313614130113308 ], [ -64.898419418339074, 18.313650339952403 ], [ -64.898416736128752, 18.313672635825583 ], [ -64.898369797448481, 18.313720077420328 ], [ -64.898306596558484, 18.313772380521243 ], [ -64.898273908430099, 18.313776906751116 ], [ -64.898252952352436, 18.313784618105785 ], [ -64.898223615677239, 18.313796855690271 ], [ -64.898192939206524, 18.313856534869558 ], [ -64.898153207656719, 18.313959297051781 ], [ -64.898121022442751, 18.314036913512496 ], [ -64.898097888378913, 18.314103465855624 ], [ -64.898029659654298, 18.314295914444983 ], [ -64.897965118968841, 18.314435054104479 ], [ -64.897946846411173, 18.314527255083703 ], [ -64.897937291036953, 18.314614762194822 ], [ -64.897927903300854, 18.314675782479242 ], [ -64.897927568024613, 18.314704448601901 ], [ -64.897932260582934, 18.314756081150222 ], [ -64.897946677463324, 18.314817269072819 ], [ -64.897916502597411, 18.314963952448807 ], [ -64.897919352445854, 18.315084987188754 ], [ -64.897929747320461, 18.315180876207137 ], [ -64.897947516963711, 18.315290176277017 ], [ -64.898040219547681, 18.315464519946772 ], [ -64.898163099616909, 18.315758221975045 ], [ -64.898165780517559, 18.316018227426753 ], [ -64.898194615587954, 18.316084947408058 ], [ -64.898257981496727, 18.31619374456352 ], [ -64.898353536548484, 18.316311929455026 ], [ -64.898433332305046, 18.316374961397173 ], [ -64.898491836707592, 18.31643179203769 ], [ -64.898529052375579, 18.316483592224131 ], [ -64.898578002713634, 18.316557016421541 ], [ -64.898608849441814, 18.316606469674014 ], [ -64.898639862498442, 18.316641507355826 ], [ -64.898677413442726, 18.316662628452264 ], [ -64.898696859467407, 18.316685093273236 ], [ -64.898712617452929, 18.316714262310313 ], [ -64.898724518451502, 18.316736055269018 ], [ -64.898728040162212, 18.316758854056616 ], [ -64.898771123165204, 18.316829597353376 ], [ -64.89900296540867, 18.317108210639049 ], [ -64.899154679238677, 18.317253386581399 ], [ -64.89919306837362, 18.317317087766469 ], [ -64.899208323444725, 18.317400405233684 ], [ -64.899332709637918, 18.317556139759802 ], [ -64.89945910879851, 18.317622693412659 ], [ -64.899536054706573, 18.317703996602802 ], [ -64.8995784684667, 18.317728471771829 ], [ -64.899693803509763, 18.317743391566637 ], [ -64.899744430229248, 18.317767700407217 ], [ -64.899792542376588, 18.317849675459627 ], [ -64.899836797536921, 18.317954280351785 ], [ -64.899875020343416, 18.318036759628342 ], [ -64.899916259326858, 18.318047822436142 ], [ -64.899951629665566, 18.318083698308612 ], [ -64.899965878907835, 18.318121415581345 ], [ -64.899969231670696, 18.31817539637342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_631", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.949475283617687, 18.339107361656829 ], [ -64.949470588439965, 18.339169387770085 ], [ -64.949480311452305, 18.339429059255167 ], [ -64.94946321236165, 18.339573060420832 ], [ -64.949453824625607, 18.33965201798668 ], [ -64.949408228360085, 18.34002166009418 ], [ -64.949404540320927, 18.340269932185436 ], [ -64.949416442629115, 18.340461710222201 ], [ -64.949423986345607, 18.340568830996176 ], [ -64.949429183128075, 18.340758932651511 ], [ -64.949414094385475, 18.340929253005811 ], [ -64.949381070980735, 18.341018268860239 ], [ -64.949299263566502, 18.341117006417392 ], [ -64.949231536446632, 18.341220105185641 ], [ -64.949127602107012, 18.341433508542934 ], [ -64.949032717607849, 18.341627967480292 ], [ -64.948935487484334, 18.341849251140047 ], [ -64.948881174035364, 18.342033988374737 ], [ -64.948840605604516, 18.342207492544105 ], [ -64.948760474571657, 18.342425926355418 ], [ -64.948645976409637, 18.34262457755608 ], [ -64.948567858344234, 18.342795065548501 ], [ -64.948476829522349, 18.343096142345473 ], [ -64.948439112249616, 18.343277025212501 ], [ -64.948431233256827, 18.343435275620436 ], [ -64.948446991242406, 18.343626884709352 ], [ -64.948498622481054, 18.343844646658454 ], [ -64.948503150020656, 18.344099456637309 ], [ -64.948479679370791, 18.344261730360699 ], [ -64.948455205511436, 18.344317890448622 ], [ -64.948388653168251, 18.344400702382075 ], [ -64.948306342839601, 18.344528275009679 ], [ -64.948189665381676, 18.344813930407042 ], [ -64.948174243982123, 18.345010067035503 ], [ -64.948151780470823, 18.345232522852598 ], [ -64.948184637547058, 18.345409381094498 ], [ -64.948141219267711, 18.345670896599188 ], [ -64.948174076343946, 18.345841384591608 ], [ -64.948303492991101, 18.345946996622331 ], [ -64.948453026215589, 18.346079095479809 ], [ -64.948637092897684, 18.346191749622221 ], [ -64.948848818563874, 18.346291660646386 ], [ -64.949002376413489, 18.346437338193539 ], [ -64.949048812179342, 18.346608496738554 ], [ -64.949056523533955, 18.346840340291692 ], [ -64.949058198605769, 18.347017198533649 ], [ -64.948978739435177, 18.347136892168464 ], [ -64.948875139062181, 18.347221214154899 ], [ -64.948744046033539, 18.347331352415495 ], [ -64.948695094385812, 18.347448866754405 ], [ -64.948640110384304, 18.347454901727588 ], [ -64.948530641366574, 18.347427911986415 ], [ -64.948435424210459, 18.347348619144327 ], [ -64.948360489960066, 18.347295645490817 ], [ -64.948251691494931, 18.347203276873472 ], [ -64.948073827424196, 18.347094982632427 ], [ -64.948024543119516, 18.346884261485457 ], [ -64.948003755989646, 18.346710253091942 ], [ -64.948030913368996, 18.346512272443874 ], [ -64.948007946943278, 18.346339437517429 ], [ -64.947902670188796, 18.346197112733194 ], [ -64.947781132534431, 18.346143971441506 ], [ -64.947685914068643, 18.346020757405711 ], [ -64.947619026449161, 18.345837025999856 ], [ -64.94757057902558, 18.345635524950751 ], [ -64.94763176694812, 18.345130263584736 ], [ -64.947626402527533, 18.344960110868612 ], [ -64.947835614931194, 18.34454939741579 ], [ -64.947945417915548, 18.344404894645322 ], [ -64.947978107353606, 18.344313027632779 ], [ -64.947989674385553, 18.344157962349584 ], [ -64.947957655500034, 18.343889238404756 ], [ -64.947907196418726, 18.343797875616247 ], [ -64.947848858344571, 18.343678852534026 ], [ -64.947868974921903, 18.343498810477001 ], [ -64.947920272193926, 18.343262105417693 ], [ -64.947956482033021, 18.343012324583128 ], [ -64.947978777906201, 18.342791711475968 ], [ -64.947958326052628, 18.342580321086075 ], [ -64.947939718218663, 18.342463308351853 ], [ -64.947872326375091, 18.342296005484172 ], [ -64.947747604905601, 18.3421473104504 ], [ -64.947675352865531, 18.342084781422727 ], [ -64.947560520736943, 18.341978332510962 ], [ -64.94750151211025, 18.341849754054522 ], [ -64.947484413019538, 18.341628470394767 ], [ -64.947531519337986, 18.341406517492089 ], [ -64.947578624346818, 18.341252626985579 ], [ -64.947622546850198, 18.341001671374329 ], [ -64.947648698400656, 18.340819785297754 ], [ -64.947647524933643, 18.340553240648831 ], [ -64.947661438899615, 18.340116878559968 ], [ -64.947633443329551, 18.339937505745866 ], [ -64.94758181078123, 18.339842790194552 ], [ -64.947557503250323, 18.339688898378313 ], [ -64.947448035542266, 18.339238287047294 ], [ -64.947391541487775, 18.339137368884565 ], [ -64.947327168440495, 18.339034606702285 ], [ -64.94724133771075, 18.338926815375714 ], [ -64.947160703763473, 18.338825394298567 ], [ -64.94763495207286, 18.338809133398627 ], [ -64.947861431205411, 18.338810809780057 ], [ -64.948127975854334, 18.338843834494412 ], [ -64.948435088934161, 18.33885389278305 ], [ -64.948645139528594, 18.338878703228374 ], [ -64.948855022484906, 18.338903513673699 ], [ -64.949016793293822, 18.338896975786099 ], [ -64.949154759486362, 18.338851713487202 ], [ -64.949260705483709, 18.338736713720436 ], [ -64.949278141160335, 18.338605620691794 ], [ -64.949254670510527, 18.338512749160031 ], [ -64.949174373149219, 18.338442676415866 ], [ -64.949150902499355, 18.338349804884047 ], [ -64.949191975154349, 18.338265147621371 ], [ -64.949467069348657, 18.338244192853324 ], [ -64.949725733695175, 18.338246204511051 ], [ -64.949935281375133, 18.338332705793391 ], [ -64.950168633671581, 18.338465810479704 ], [ -64.950421768578735, 18.338594724212442 ], [ -64.950164779303975, 18.338522472172372 ], [ -64.949941820572462, 18.338465810479704 ], [ -64.949845596277783, 18.338507720015741 ], [ -64.949794131367582, 18.338556167439322 ], [ -64.949729758320302, 18.338622719782506 ], [ -64.949544181585225, 18.338670161377252 ], [ -64.949504955569182, 18.338761356527584 ], [ -64.949478636380547, 18.338858586651099 ], [ -64.949464722414632, 18.338992697166304 ], [ -64.949475283617687, 18.339107361656829 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_528", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.863111142412208, 18.336770150653138 ], [ -64.863142323107013, 18.33686905715814 ], [ -64.863134947028641, 18.336954218644962 ], [ -64.863139137982273, 18.33707491679894 ], [ -64.863154728329675, 18.337184384506998 ], [ -64.863123547634871, 18.337312124772723 ], [ -64.86307845297415, 18.337450258603383 ], [ -64.863017431380058, 18.337556876462941 ], [ -64.862913329402261, 18.337681431603926 ], [ -64.86262884747191, 18.337852087234523 ], [ -64.862494569318585, 18.337874550745823 ], [ -64.862292062440645, 18.337855775273681 ], [ -64.862203549500578, 18.337840855478873 ], [ -64.862117551132712, 18.337793916798546 ], [ -64.86195075117945, 18.337757706959451 ], [ -64.861776072233397, 18.337756198216141 ], [ -64.861593514294555, 18.337743457717238 ], [ -64.861414812033047, 18.337736416915163 ], [ -64.861256729263289, 18.337721161844058 ], [ -64.861142567687239, 18.337714623956458 ], [ -64.861054557661589, 18.337727867369836 ], [ -64.860951627841189, 18.337760556807893 ], [ -64.860872334999101, 18.337782349766655 ], [ -64.860725316346816, 18.337834317591273 ], [ -64.860560695689401, 18.337908581289071 ], [ -64.860457598230823, 18.337958034541543 ], [ -64.860284092751783, 18.338029448390898 ], [ -64.86017831308294, 18.338076051794928 ], [ -64.860080747683128, 18.338175964128766 ], [ -64.860042023271831, 18.338240001899749 ], [ -64.859985864493638, 18.338301189822289 ], [ -64.859908918585518, 18.338370424375796 ], [ -64.859773131688883, 18.338489615096137 ], [ -64.859719822759075, 18.338550803018734 ], [ -64.859651929310758, 18.338611823303154 ], [ -64.859625107207705, 18.338661947108221 ], [ -64.85959526761809, 18.338720452820439 ], [ -64.859527206531652, 18.338800919129596 ], [ -64.85948261478535, 18.338867806749022 ], [ -64.85945847489262, 18.338943076275712 ], [ -64.859428802941125, 18.339006946408574 ], [ -64.8594264560071, 18.338962354662272 ], [ -64.859396281141187, 18.338883397096424 ], [ -64.859381193708202, 18.338839140626419 ], [ -64.859382534813335, 18.338797734004856 ], [ -64.859378176221639, 18.338714082570959 ], [ -64.859378846774177, 18.338630431137119 ], [ -64.859374488182425, 18.338546779703279 ], [ -64.859370129590729, 18.338463128269439 ], [ -64.859329561159882, 18.338389032209761 ], [ -64.859283795946567, 18.338314768511964 ], [ -64.859207017676567, 18.338270009127541 ], [ -64.859130071768504, 18.338229943611111 ], [ -64.859042733605122, 18.338209491757539 ], [ -64.858955392822452, 18.338189207542143 ], [ -64.858867885711277, 18.338168755688571 ], [ -64.858780547547951, 18.338148303834998 ], [ -64.858688009982757, 18.338127851981426 ], [ -64.858605868601899, 18.338097677115513 ], [ -64.858523724601639, 18.338062640743374 ], [ -64.858441581911109, 18.338027604371291 ], [ -64.858387770066884, 18.338014863872331 ], [ -64.858467901099687, 18.337994914933233 ], [ -64.858526909726379, 18.337953340673494 ], [ -64.858569154538657, 18.337917466110696 ], [ -64.858671078530222, 18.337895840790111 ], [ -64.858758920917694, 18.337899361191148 ], [ -64.858837878483484, 18.337911095861216 ], [ -64.858896384195759, 18.337914448624076 ], [ -64.858961092519337, 18.337901037572578 ], [ -64.85906670455006, 18.337879412251993 ], [ -64.859193103710652, 18.337838508544849 ], [ -64.859330903574687, 18.337814536290296 ], [ -64.85943651560541, 18.337795760818153 ], [ -64.85957749797484, 18.337774470773866 ], [ -64.8596772426705, 18.337750163242958 ], [ -64.859759385361087, 18.337734069981138 ], [ -64.85988276703506, 18.337698699642431 ], [ -64.859973626909095, 18.337699536523473 ], [ -64.860064654421308, 18.337669361657561 ], [ -64.860135397718068, 18.337627955035998 ], [ -64.860197256193203, 18.337589398262878 ], [ -64.860259282306458, 18.337528377978458 ], [ -64.860321643696068, 18.337450426241503 ], [ -64.860383837447444, 18.337369793603898 ], [ -64.860454916020501, 18.337286476136683 ], [ -64.860534544138943, 18.337225623490383 ], [ -64.860608472560443, 18.337144989543162 ], [ -64.860676701285058, 18.33705882353712 ], [ -64.860738559760193, 18.337014567067115 ], [ -64.860858923947546, 18.336990427174385 ], [ -64.860967218188591, 18.33700249712075 ], [ -64.861090264586267, 18.337011884856793 ], [ -64.861227727864389, 18.33702982213822 ], [ -64.861412297460902, 18.337065865648867 ], [ -64.861545737423512, 18.337104253474138 ], [ -64.86181278498691, 18.337113641210237 ], [ -64.861931305154712, 18.337110791361738 ], [ -64.862030379297835, 18.337087489659723 ], [ -64.862120233343035, 18.33704440665673 ], [ -64.862178068502715, 18.336982548181595 ], [ -64.862213272512918, 18.336904931720937 ], [ -64.862187959153175, 18.336790268540085 ], [ -64.862143701373498, 18.336610057535324 ], [ -64.86217102770064, 18.336380056692064 ], [ -64.862248979437595, 18.336132958067822 ], [ -64.86232843991786, 18.335984430672227 ], [ -64.862502113035077, 18.335811429417276 ], [ -64.862568162463788, 18.335608084348621 ], [ -64.86272356302328, 18.335281022329696 ], [ -64.862735800607766, 18.335098464390853 ], [ -64.862721048451135, 18.334951444428896 ], [ -64.862693388157368, 18.334710045501538 ], [ -64.862657009370423, 18.334411649605215 ], [ -64.862608730894635, 18.334157679126747 ], [ -64.862592637632815, 18.333912089245757 ], [ -64.86260135481632, 18.333712598544764 ], [ -64.862618453906975, 18.33359206802885 ], [ -64.862638067569833, 18.333454100526694 ], [ -64.862686347355293, 18.332999802466134 ], [ -64.862787936070561, 18.332881785212749 ], [ -64.862932943065118, 18.332828141006644 ], [ -64.863103094471626, 18.332803162923199 ], [ -64.863252629005729, 18.332778183530081 ], [ -64.863427475589958, 18.332729066863578 ], [ -64.863535266916529, 18.332745160125398 ], [ -64.863562591933999, 18.332760918110921 ], [ -64.863539456560432, 18.332795785535211 ], [ -64.863488328236201, 18.332865524312808 ], [ -64.863361426161191, 18.332934757556586 ], [ -64.863256819959361, 18.333009190202176 ], [ -64.863217760271766, 18.333078257117506 ], [ -64.863200493542934, 18.333206667935826 ], [ -64.863214910423324, 18.333390902256099 ], [ -64.863289340449626, 18.333547141006306 ], [ -64.863387912987946, 18.333822067562437 ], [ -64.863413561623986, 18.334023064387452 ], [ -64.863333095314886, 18.334292963108965 ], [ -64.863277439451053, 18.33460527166153 ], [ -64.863244582374818, 18.334806772710635 ], [ -64.863262687294366, 18.335214468676838 ], [ -64.863307949593263, 18.335554941747318 ], [ -64.863261346189233, 18.335891223864166 ], [ -64.863199655352219, 18.336119714654444 ], [ -64.863141484916298, 18.33646119355376 ], [ -64.863111142412208, 18.336770150653138 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_156", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.847048559678228, 18.32830895192069 ], [ -64.847089297056925, 18.328313981065037 ], [ -64.847178814516099, 18.328334769504579 ], [ -64.847262970174086, 18.328360752107187 ], [ -64.847347292160521, 18.328381540546729 ], [ -64.847420716357931, 18.328427472088549 ], [ -64.847510236436506, 18.328443397712192 ], [ -64.847610316408463, 18.328454294191545 ], [ -64.847699667539189, 18.328500394681157 ], [ -64.847783654249326, 18.328531240099665 ], [ -64.847867808597641, 18.328562253156292 ], [ -64.847941232795051, 18.328608186007784 ], [ -64.848020022722721, 18.328649089714872 ], [ -64.848098812650392, 18.328689993422017 ], [ -64.848177602578062, 18.328731064767283 ], [ -64.848251029394817, 18.328776997618775 ], [ -64.848326800526252, 18.328830474186702 ], [ -64.848374577397294, 18.328900211654627 ], [ -64.848427215774507, 18.32896760218847 ], [ -64.848486056763022, 18.329030801768795 ], [ -64.848564846690692, 18.32907170547594 ], [ -64.848640954408097, 18.32913121701705 ], [ -64.84870331579765, 18.329189387453027 ], [ -64.848753273274269, 18.329244708040505 ], [ -64.848818484512265, 18.329299022799205 ], [ -64.848880844592145, 18.329357193235126 ], [ -64.848940860357402, 18.329417878243248 ], [ -64.8490057363191, 18.329473869383378 ], [ -64.84907295790515, 18.329529860523451 ], [ -64.849103635685537, 18.329608650451121 ], [ -64.849136829347742, 18.329685261082943 ], [ -64.849172368634243, 18.329761704076645 ], [ -64.849212935755418, 18.329835967774386 ], [ -64.849272782572825, 18.329896652782566 ], [ -64.849330282456208, 18.329959517086536 ], [ -64.849383088471598, 18.330015340588488 ], [ -64.849392643845761, 18.330017687522513 ], [ -64.849479815680638, 18.330027745811151 ], [ -64.849559277470576, 18.330060770525506 ], [ -64.849636389707143, 18.330098321469791 ], [ -64.849725908476046, 18.330087424990438 ], [ -64.849750886559491, 18.330006791043161 ], [ -64.849758934500073, 18.329923642523738 ], [ -64.849750048368776, 18.329840494004316 ], [ -64.849750718921371, 18.329757345484893 ], [ -64.849739488475393, 18.329674029327293 ], [ -64.849730434705918, 18.32959071316975 ], [ -64.849724064456495, 18.329507564650328 ], [ -64.849724735009033, 18.329424248492728 ], [ -64.849723058627603, 18.329338753039281 ], [ -64.849706965365783, 18.329253089947713 ], [ -64.849705288984353, 18.32916994142829 ], [ -64.849689028084356, 18.329086625270747 ], [ -64.84968668246006, 18.32907975210685 ], [ -64.849660698547723, 18.329006494237888 ], [ -64.849637395536035, 18.328925357376193 ], [ -64.849616274439541, 18.328844388152675 ], [ -64.849587943593235, 18.328765598224948 ], [ -64.849559611437201, 18.32868680960695 ], [ -64.84953865666921, 18.328605671435582 ], [ -64.849529605519081, 18.328520175982135 ], [ -64.849501441001223, 18.328441386054465 ], [ -64.849482665529138, 18.328360250502442 ], [ -64.849451987748751, 18.328281460574772 ], [ -64.849440755993101, 18.328195963811652 ], [ -64.849436397401348, 18.328133434783922 ], [ -64.849431703533355, 18.328111641825217 ], [ -64.849434888658095, 18.328028494615467 ], [ -64.84944058835498, 18.327945344786372 ], [ -64.849453162525435, 18.327876948423636 ], [ -64.849455843426085, 18.327862363905126 ], [ -64.84948551537758, 18.327784076891874 ], [ -64.849524911651088, 18.327710483746614 ], [ -64.849564306614923, 18.327636722963291 ], [ -64.849618118459148, 18.327570170620106 ], [ -64.849674443565846, 18.327503619586594 ], [ -64.849754574598705, 18.327469587733731 ], [ -64.849837052565533, 18.327440252368206 ], [ -64.849897569935536, 18.327407393982298 ], [ -64.849870412556186, 18.327438071762629 ], [ -64.849825820809883, 18.327493896574254 ], [ -64.849760441933711, 18.327584419862376 ], [ -64.849711157629031, 18.327669580039526 ], [ -64.849679807986433, 18.327733953086806 ], [ -64.849660361961753, 18.327770162925901 ], [ -64.849639071917466, 18.327855658379349 ], [ -64.849619625892785, 18.328057327066574 ], [ -64.849595822585968, 18.328245081787827 ], [ -64.849593809618568, 18.328303922776399 ], [ -64.849612920367008, 18.328475248959592 ], [ -64.849622475741228, 18.328539789644992 ], [ -64.849656673922595, 18.328663506595262 ], [ -64.849665055829803, 18.328708433617862 ], [ -64.849693051399811, 18.328810023642802 ], [ -64.849731943449228, 18.328878418695865 ], [ -64.849843758091311, 18.329082099040818 ], [ -64.849856164623645, 18.329111770992313 ], [ -64.849911483901451, 18.329222076891085 ], [ -64.849917015960216, 18.329239678896215 ], [ -64.849917015960216, 18.329249737184853 ], [ -64.849913327921058, 18.329266500999267 ], [ -64.849899581593263, 18.329289299786808 ], [ -64.849861863010858, 18.32933690901973 ], [ -64.849858845524238, 18.329350990623823 ], [ -64.849843758091311, 18.329538912983253 ], [ -64.849847781406766, 18.329643351546963 ], [ -64.849853816379948, 18.329705210022098 ], [ -64.849906287118984, 18.329808139842498 ], [ -64.849939647109636, 18.329861616410426 ], [ -64.849949202483856, 18.329885923941333 ], [ -64.849966470522361, 18.329931353878351 ], [ -64.849992788401323, 18.329980639492703 ], [ -64.850020617642883, 18.330026069429721 ], [ -64.850026818944514, 18.330043671434851 ], [ -64.850033859746588, 18.330049706408033 ], [ -64.850072585467501, 18.330058758867779 ], [ -64.850125222535041, 18.330078037254339 ], [ -64.850162439512701, 18.330099327298626 ], [ -64.850186913372056, 18.330121790809926 ], [ -64.850197474575111, 18.330130507993431 ], [ -64.850218596981279, 18.330129334526418 ], [ -64.850391431907724, 18.330130172717134 ], [ -64.850488662031239, 18.330142410301619 ], [ -64.850547839605781, 18.330157665372724 ], [ -64.850647582991769, 18.330208459730386 ], [ -64.850779849487367, 18.330251878009676 ], [ -64.850920497890229, 18.330295463927143 ], [ -64.851049243984789, 18.330333014871371 ], [ -64.8511087555259, 18.330365369033188 ], [ -64.851204644544282, 18.330465784281444 ], [ -64.851284105024547, 18.330566199529699 ], [ -64.851486444264367, 18.330716068030426 ], [ -64.851625751561983, 18.330795025596217 ], [ -64.851703703298995, 18.330902649284667 ], [ -64.851799927593618, 18.330964340121682 ], [ -64.8519088923872, 18.331008931867984 ], [ -64.852000087537533, 18.331060732054482 ], [ -64.85213201875689, 18.331110520583252 ], [ -64.852309882827683, 18.331150921375922 ], [ -64.852426894252176, 18.331154274138839 ], [ -64.852500487397378, 18.331143880573904 ], [ -64.852673825238298, 18.331137845600722 ], [ -64.852765858579346, 18.331153603586245 ], [ -64.852852527499806, 18.33116399715118 ], [ -64.852941543354291, 18.331147568613062 ], [ -64.853041790964369, 18.331134325199685 ], [ -64.853146732442497, 18.331093253854419 ], [ -64.853223678350616, 18.331051009042142 ], [ -64.853288219036074, 18.331003064532922 ], [ -64.853360806352384, 18.330953276004152 ], [ -64.853414115282192, 18.330889238233169 ], [ -64.853540179166487, 18.330781782182839 ], [ -64.853568174736552, 18.330777591229264 ], [ -64.853607569700387, 18.330780105801409 ], [ -64.853737656900137, 18.330823021166282 ], [ -64.853916359161644, 18.330856716433232 ], [ -64.85404108194075, 18.330865265978559 ], [ -64.854145688142637, 18.330884544365119 ], [ -64.854238558364727, 18.330929303749599 ], [ -64.854433522835848, 18.331030892464867 ], [ -64.854502588441505, 18.331106664905917 ], [ -64.85455958541047, 18.331142539468772 ], [ -64.854623456853005, 18.33118176679443 ], [ -64.854699060346263, 18.331276985260217 ], [ -64.854722866272425, 18.331297101837492 ], [ -64.854748179632168, 18.33131822424366 ], [ -64.854779695603213, 18.33131839188178 ], [ -64.854830322322698, 18.331312356908597 ], [ -64.854883295976208, 18.331316044947812 ], [ -64.854927049531796, 18.331333646952885 ], [ -64.854989578559525, 18.331371700811587 ], [ -64.855038527587908, 18.33144847908153 ], [ -64.855091836517659, 18.331515534339133 ], [ -64.85518470935915, 18.331577560452445 ], [ -64.855259139385396, 18.3316845135883 ], [ -64.855330385596574, 18.331766823917008 ], [ -64.855399118545279, 18.331885510413258 ], [ -64.855483608169891, 18.331989447372223 ], [ -64.855550663427493, 18.332047953084498 ], [ -64.855599949041789, 18.332078463226708 ], [ -64.855656944701082, 18.332118696381258 ], [ -64.855697011527184, 18.33216965837704 ], [ -64.855711428407574, 18.332210394446008 ], [ -64.855725007097249, 18.332311647884978 ], [ -64.855742106187904, 18.332403178311608 ], [ -64.855751661562124, 18.332476268542393 ], [ -64.855761049298223, 18.332549526411356 ], [ -64.855777979441086, 18.332667711302861 ], [ -64.855800947176476, 18.332750692184163 ], [ -64.855814693504271, 18.332845406425804 ], [ -64.855827601641352, 18.332905086914764 ], [ -64.855842521436159, 18.332969795238341 ], [ -64.855855260625447, 18.333013547484256 ], [ -64.855881413485577, 18.333053111395941 ], [ -64.855919467344279, 18.333082950985556 ], [ -64.855957521202981, 18.333108599621596 ], [ -64.856002951139999, 18.333128548560694 ], [ -64.856067490515784, 18.333154532473031 ], [ -64.856112920452802, 18.333178672365761 ], [ -64.856180312296317, 18.333218570244071 ], [ -64.856277207143592, 18.333253102392064 ], [ -64.856388517561527, 18.333308927203689 ], [ -64.856438473728417, 18.333334574529999 ], [ -64.856494129592249, 18.333360392113889 ], [ -64.856533524556085, 18.333401463459154 ], [ -64.856594544840505, 18.333483606149684 ], [ -64.856614996694077, 18.333510428252737 ], [ -64.85671625144272, 18.333547811558844 ], [ -64.856788837449415, 18.333581505516122 ], [ -64.85685723381215, 18.333627438367614 ], [ -64.856916242438842, 18.333655098661325 ], [ -64.856944405647027, 18.333685776441712 ], [ -64.85697441287482, 18.333696337644767 ], [ -64.857006431760283, 18.333717292412757 ], [ -64.857015651858205, 18.333730200549837 ], [ -64.85699855276755, 18.333737241351912 ], [ -64.85694423931858, 18.333741098338919 ], [ -64.856906519426502, 18.333739589595609 ], [ -64.856853545772992, 18.333731878240997 ], [ -64.856772745497267, 18.333714276235867 ], [ -64.856697139384607, 18.333699859355477 ], [ -64.856656069349015, 18.333693489105997 ], [ -64.856572082638877, 18.333684436646195 ], [ -64.856497314716989, 18.333665493535932 ], [ -64.856428247801659, 18.333642527110214 ], [ -64.856360858577432, 18.333611011139169 ], [ -64.856311908239377, 18.33356105366255 ], [ -64.856235968160149, 18.333505565436894 ], [ -64.856188191289107, 18.333473883137344 ], [ -64.856140917332482, 18.333424931489617 ], [ -64.856084758554289, 18.333394421347407 ], [ -64.855970764616359, 18.333352513121099 ], [ -64.855837324653749, 18.333289481178952 ], [ -64.855746632417834, 18.333234494558042 ], [ -64.855662979674264, 18.333207003212124 ], [ -64.855602966528409, 18.333165261314264 ], [ -64.855544628454311, 18.333105748463481 ], [ -64.855531886645679, 18.333053614310359 ], [ -64.855536749461521, 18.333002483366784 ], [ -64.855526857501332, 18.332946158260029 ], [ -64.855505233490476, 18.332893855159114 ], [ -64.855476398420024, 18.332838868538204 ], [ -64.855460809382294, 18.332772651471316 ], [ -64.855425605372034, 18.332685313307991 ], [ -64.855392245381381, 18.332635523469548 ], [ -64.855373637547416, 18.332586071526748 ], [ -64.855348490516121, 18.332498732053693 ], [ -64.855274897370919, 18.332312318437573 ], [ -64.855197617496231, 18.332133280899768 ], [ -64.855133578415519, 18.332010234502093 ], [ -64.855067195020183, 18.331885008808513 ], [ -64.855001479558041, 18.33180169265097 ], [ -64.854948171937963, 18.331732458097463 ], [ -64.854883463614385, 18.331669593793492 ], [ -64.854782545451656, 18.331625840237905 ], [ -64.854718675318793, 18.33160270617401 ], [ -64.854660337244695, 18.331582924873032 ], [ -64.854574003600533, 18.331549900158677 ], [ -64.854505774875918, 18.331507487708222 ], [ -64.85442178816578, 18.331450993653732 ], [ -64.854369148478895, 18.331421489340357 ], [ -64.854309805885578, 18.331391985027039 ], [ -64.854245934443043, 18.331359127950805 ], [ -64.854178712856992, 18.33133280876217 ], [ -64.85404862434757, 18.331276985260217 ], [ -64.85387562309262, 18.331264412399435 ], [ -64.853790798191767, 18.331298442942682 ], [ -64.853738662728972, 18.331340017202365 ], [ -64.853679821740457, 18.33137924452808 ], [ -64.853602708194217, 18.33144311335127 ], [ -64.853550405093245, 18.331508158260817 ], [ -64.853480164710959, 18.331563478848352 ], [ -64.853404559907972, 18.331603209088485 ], [ -64.853203394135221, 18.33168602233161 ], [ -64.853178583689896, 18.3316910514759 ], [ -64.853091747131316, 18.33170211559343 ], [ -64.852993846455206, 18.331714185539795 ], [ -64.852908183363581, 18.331731787544925 ], [ -64.852805421181358, 18.331765315173698 ], [ -64.852714058392849, 18.3317968311448 ], [ -64.852605596513683, 18.331827173648833 ], [ -64.852484058859261, 18.331837902490065 ], [ -64.852377440999703, 18.331815606616885 ], [ -64.851941246549018, 18.331759280200515 ], [ -64.85185390707602, 18.331745198596423 ], [ -64.85180579492868, 18.331710665138758 ], [ -64.85177059091842, 18.33167646695739 ], [ -64.851714096863873, 18.331619469988425 ], [ -64.851579818710547, 18.3315366567453 ], [ -64.851533885859112, 18.331487203492827 ], [ -64.851466327687092, 18.331365162923987 ], [ -64.851390890522282, 18.331255024663392 ], [ -64.851267005933835, 18.33115444177696 ], [ -64.851138092201097, 18.331058552758577 ], [ -64.851019069118877, 18.330986971271102 ], [ -64.850861992177954, 18.330915222145507 ], [ -64.850745148391582, 18.330875324267197 ], [ -64.850557226032151, 18.330827547396154 ], [ -64.850363603975836, 18.330840623171412 ], [ -64.850238545920433, 18.330871133313622 ], [ -64.850052467580554, 18.330911031191874 ], [ -64.849965798660094, 18.330919916013499 ], [ -64.849843925729431, 18.330882532707392 ], [ -64.849763125453705, 18.330811286496214 ], [ -64.849689867584743, 18.330747584001472 ], [ -64.849649131515775, 18.330679522915034 ], [ -64.849607389617915, 18.330583969172949 ], [ -64.849496076580635, 18.330497300252489 ], [ -64.849430531376015, 18.330420019068129 ], [ -64.84936347480874, 18.330343911350724 ], [ -64.84928652890062, 18.330245675398373 ], [ -64.849216120880158, 18.330148445274801 ], [ -64.849165495470345, 18.330057585400766 ], [ -64.84913548693288, 18.329962534573156 ], [ -64.849112520507163, 18.329900676098021 ], [ -64.849089721719565, 18.329838649984708 ], [ -64.849059211577355, 18.329784670502363 ], [ -64.849013950588187, 18.329722644389051 ], [ -64.8489991984315, 18.3296983368582 ], [ -64.848963322558973, 18.329612170852158 ], [ -64.848946055830197, 18.32958266653884 ], [ -64.848913366392082, 18.32955534152137 ], [ -64.848854860679808, 18.329499350381241 ], [ -64.848778417686162, 18.329449561852471 ], [ -64.848717901625832, 18.329401617343308 ], [ -64.848657384255887, 18.329363563484605 ], [ -64.848619161449392, 18.329343614545508 ], [ -64.848558645389062, 18.329307237068235 ], [ -64.848486728625289, 18.329270021400248 ], [ -64.848457055364122, 18.329246384421992 ], [ -64.848382625337877, 18.329176982230365 ], [ -64.848339877611124, 18.32914077239127 ], [ -64.848260080544947, 18.329096851197505 ], [ -64.848216663575272, 18.329054774023348 ], [ -64.848163354645521, 18.328997274139965 ], [ -64.848106860590974, 18.328965422892622 ], [ -64.848044665529869, 18.32890490552262 ], [ -64.847991190271614, 18.328861654881507 ], [ -64.847915585468684, 18.328791079222867 ], [ -64.847853222769459, 18.328753360640462 ], [ -64.847781810229776, 18.328715642058057 ], [ -64.847719447530494, 18.328666691720002 ], [ -64.847655577397632, 18.328623273440712 ], [ -64.847601934501256, 18.328592764608175 ], [ -64.847551475419891, 18.328565270642912 ], [ -64.847479892622744, 18.32854331004603 ], [ -64.847397917570333, 18.328506932568757 ], [ -64.847311920512141, 18.328443397712192 ], [ -64.847285098409088, 18.328418922543165 ], [ -64.847236148071033, 18.328389921144264 ], [ -64.847158699248496, 18.328352202561859 ], [ -64.847048559678228, 18.32830895192069 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_598", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.936210413868935, 18.361925758974621 ], [ -64.936236397781272, 18.361909330436504 ], [ -64.936256849634788, 18.361883178886046 ], [ -64.936271769429652, 18.361858703717019 ], [ -64.936308817459462, 18.361824002621233 ], [ -64.93634636840369, 18.361795336498574 ], [ -64.936427337627265, 18.361683186580251 ], [ -64.936488190273508, 18.361595176554658 ], [ -64.93651970624461, 18.361515548436273 ], [ -64.936517359310585, 18.361364506468533 ], [ -64.936478299623047, 18.36125302841242 ], [ -64.936444771994218, 18.361145069447673 ], [ -64.936379728394343, 18.361094273780395 ], [ -64.936343686193425, 18.36105052153448 ], [ -64.93630462650583, 18.36096334838993 ], [ -64.936266907923482, 18.360886737758108 ], [ -64.936202199599848, 18.360670150585747 ], [ -64.936141682229902, 18.360498321488137 ], [ -64.936091726062955, 18.360322301436952 ], [ -64.936077141544445, 18.360114430138367 ], [ -64.936083679432045, 18.360022061521022 ], [ -64.93607144184756, 18.359937236620169 ], [ -64.936064903959959, 18.359852076443019 ], [ -64.936054678033145, 18.359766916265869 ], [ -64.936048475421842, 18.359648897702812 ], [ -64.936009751010545, 18.359495676439224 ], [ -64.935934816760209, 18.359335414373561 ], [ -64.935805567751174, 18.359124359259908 ], [ -64.935746391486362, 18.359031823004443 ], [ -64.935713031495652, 18.358906597310863 ], [ -64.935644970409214, 18.358786233123453 ], [ -64.935583614848497, 18.358718004398838 ], [ -64.935547572647579, 18.358676093553186 ], [ -64.935518906524919, 18.35863066492584 ], [ -64.935499126533614, 18.358600992974345 ], [ -64.935494598994069, 18.358566962431098 ], [ -64.935495438494456, 18.358541312485443 ], [ -64.935500298690954, 18.35851331822505 ], [ -64.935514715571344, 18.358499907173496 ], [ -64.935544219884662, 18.358493201647775 ], [ -64.935580094447459, 18.358490687075573 ], [ -64.935650837744276, 18.358511977119917 ], [ -64.935687047583372, 18.358536619927065 ], [ -64.935723089784346, 18.358576685443495 ], [ -64.935771704846104, 18.358622283018633 ], [ -64.935845634577277, 18.358709622491688 ], [ -64.935883351850009, 18.358763769612153 ], [ -64.935919226412807, 18.358812719950208 ], [ -64.935960465396249, 18.358880781036703 ], [ -64.9360427757249, 18.358961078398011 ], [ -64.936080997221779, 18.359001814466978 ], [ -64.936131791579385, 18.359045234055941 ], [ -64.936193147140102, 18.359090831631136 ], [ -64.936252658681212, 18.359157382664591 ], [ -64.936288700882187, 18.359207843055628 ], [ -64.936387272110835, 18.359346478491034 ], [ -64.936437228277782, 18.359483440164354 ], [ -64.936496069266298, 18.359601960332157 ], [ -64.936637388221698, 18.359875713421332 ], [ -64.936705449308135, 18.360054414373167 ], [ -64.936716848701963, 18.360230603372202 ], [ -64.936720201464823, 18.360405785232672 ], [ -64.93676563140184, 18.360575770310675 ], [ -64.936783736321388, 18.360618684365875 ], [ -64.93687962533977, 18.360868800476737 ], [ -64.936910973672695, 18.361006263754803 ], [ -64.937013568216855, 18.361231401782163 ], [ -64.937041396148743, 18.361412450977696 ], [ -64.937030164393093, 18.361581934450953 ], [ -64.936992948725106, 18.361739512996621 ], [ -64.936948859893221, 18.361938668421374 ], [ -64.936945171854063, 18.362155255593791 ], [ -64.936928240401528, 18.362179563124641 ], [ -64.936909632567563, 18.362205714675099 ], [ -64.936904603423216, 18.362236058488861 ], [ -64.936875099109898, 18.362178558605478 ], [ -64.936845259520283, 18.362140000522686 ], [ -64.936814414101775, 18.362115860629956 ], [ -64.93678004828223, 18.362039082359956 ], [ -64.936750711607033, 18.361957611531693 ], [ -64.93674149150911, 18.361871445525651 ], [ -64.936782227578135, 18.361795336498574 ], [ -64.936797315011063, 18.361771531882141 ], [ -64.93679295641931, 18.361704476624539 ], [ -64.936782898130673, 18.361699616428041 ], [ -64.936762949191575, 18.361694753612198 ], [ -64.93670762860404, 18.361722916820383 ], [ -64.93663219143923, 18.361765496908959 ], [ -64.93656161578059, 18.361817464733633 ], [ -64.93648617861578, 18.361859878493703 ], [ -64.93640085080051, 18.361883178886046 ], [ -64.93631552298524, 18.361901619081891 ], [ -64.936230195169912, 18.361924754455458 ], [ -64.936210413868935, 18.361925758974621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_507", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.017981271238455, 18.356231260170773 ], [ -65.017975739179747, 18.356260596845971 ], [ -65.017967189634362, 18.356320611301499 ], [ -65.017976074455987, 18.356376937717926 ], [ -65.017950761096245, 18.356871637880829 ], [ -65.017936679492152, 18.357071797824801 ], [ -65.017885382220129, 18.357330295842814 ], [ -65.017732831509079, 18.357651322888614 ], [ -65.017630069326799, 18.357926752359162 ], [ -65.017513728454844, 18.358236715287433 ], [ -65.017504843633219, 18.358457997637515 ], [ -65.017474667457634, 18.35853410535492 ], [ -65.017439966361849, 18.358591605238303 ], [ -65.017418173403087, 18.358623456485645 ], [ -65.017385820550999, 18.358654972456748 ], [ -65.017376097538659, 18.358681124007205 ], [ -65.017384310498016, 18.358708449024675 ], [ -65.017428734606199, 18.358762428507021 ], [ -65.017499479212631, 18.358838871500666 ], [ -65.017571228338227, 18.358914811579893 ], [ -65.017600565013481, 18.358968791062296 ], [ -65.017628728221666, 18.359042047621529 ], [ -65.017631241484139, 18.359124191621788 ], [ -65.017619508123744, 18.359195605471143 ], [ -65.017598218079456, 18.359257965551024 ], [ -65.017561002411469, 18.359338265531676 ], [ -65.017531664426599, 18.359420240584086 ], [ -65.017527810058937, 18.359487294532016 ], [ -65.017517919408476, 18.359538928390009 ], [ -65.017501658508479, 18.359566253407479 ], [ -65.017490259114709, 18.359601122141441 ], [ -65.017494450068284, 18.359646049164041 ], [ -65.017455221432954, 18.359599278121891 ], [ -65.017396549392231, 18.359536078541566 ], [ -65.017334858555216, 18.359470195441304 ], [ -65.017310551024309, 18.359386880593433 ], [ -65.017267634349821, 18.359309264132776 ], [ -65.017174261213256, 18.359302558606998 ], [ -65.017099159324744, 18.359349663615774 ], [ -65.017017853515256, 18.359396603605774 ], [ -65.016936717963233, 18.359425772642851 ], [ -65.016855413463361, 18.359460807705261 ], [ -65.016780311574848, 18.359507746385589 ], [ -65.016693138430298, 18.359518979450911 ], [ -65.016611835240155, 18.359554183461114 ], [ -65.016573781381453, 18.359631129369234 ], [ -65.016591886301001, 18.359714445526777 ], [ -65.016653577138015, 18.359774458672689 ], [ -65.01671543561315, 18.359834305490097 ], [ -65.016758350978023, 18.359911923260427 ], [ -65.016784836495049, 18.359950478723874 ], [ -65.016715100336853, 18.359905888287244 ], [ -65.016617870213338, 18.359894487583801 ], [ -65.01650655848573, 18.359864815632307 ], [ -65.016436653379685, 18.359836821371914 ], [ -65.016376136009683, 18.359831792227624 ], [ -65.016324837427931, 18.359864984580099 ], [ -65.016300698844873, 18.359898175622959 ], [ -65.016273206189283, 18.359934554409847 ], [ -65.016213694648116, 18.360005631673232 ], [ -65.016143118989532, 18.360059946431932 ], [ -65.016080589961803, 18.360108227527064 ], [ -65.0160069968166, 18.360147119576482 ], [ -65.015916639856982, 18.360181651724474 ], [ -65.01582862983139, 18.360215179353247 ], [ -65.015812032345423, 18.360231106286619 ], [ -65.015773309243855, 18.360267148487594 ], [ -65.015731399707875, 18.36031106837163 ], [ -65.015681611179104, 18.360360858210072 ], [ -65.015633499031765, 18.360406286837417 ], [ -65.015577507891635, 18.36043327657859 ], [ -65.01550760278559, 18.360457082504695 ], [ -65.01540802572805, 18.360447525820859 ], [ -65.015280620738622, 18.360453897380012 ], [ -65.015211386185172, 18.360469486417685 ], [ -65.015126728922439, 18.36050401987535 ], [ -65.015111306213214, 18.360506869723793 ], [ -65.015099068628672, 18.360496643797035 ], [ -65.015081131347301, 18.360442161400215 ], [ -65.015059003112242, 18.360296986767537 ], [ -65.015056320901977, 18.360222387793442 ], [ -65.015066211552437, 18.360192883480124 ], [ -65.015074258183347, 18.360146112437917 ], [ -65.015103930134842, 18.360087774363819 ], [ -65.015175176346077, 18.360012003232384 ], [ -65.015204513021274, 18.359983000523812 ], [ -65.015234017334592, 18.359947965461402 ], [ -65.015235861354199, 18.359902535524384 ], [ -65.015241728689205, 18.359874203368349 ], [ -65.015257821951081, 18.359849897147171 ], [ -65.015282800034527, 18.359826929411724 ], [ -65.015310460328294, 18.359790216658212 ], [ -65.015351364035382, 18.359735063708854 ], [ -65.015377180309599, 18.359701368441904 ], [ -65.015394279400255, 18.359676559306251 ], [ -65.015395955781685, 18.359657448557869 ], [ -65.015385562216807, 18.359619393389494 ], [ -65.015379694881744, 18.359579664459034 ], [ -65.015362092876614, 18.359471202579869 ], [ -65.015324541932387, 18.359388724612984 ], [ -65.015300234401479, 18.359344634471483 ], [ -65.015275926870629, 18.359319490059534 ], [ -65.015175176346077, 18.359247070381343 ], [ -65.015117173548219, 18.359215722048418 ], [ -65.015040562916454, 18.359191748484136 ], [ -65.014939477115604, 18.359171968492831 ], [ -65.014823471519946, 18.359203315516083 ], [ -65.014768821485006, 18.359228293599529 ], [ -65.014683661307856, 18.359256290479266 ], [ -65.014560447272004, 18.359260984347259 ], [ -65.014385600687831, 18.359269701530764 ], [ -65.014204551492298, 18.359266347458231 ], [ -65.014033057670986, 18.359264169471999 ], [ -65.01376533955505, 18.359249248367519 ], [ -65.013445150699965, 18.359243885256603 ], [ -65.01325354161105, 18.359254446459659 ], [ -65.013201907753057, 18.359223264455181 ], [ -65.013111215517142, 18.359158891407901 ], [ -65.012798235102309, 18.359002821605543 ], [ -65.012515764829629, 18.358825460449168 ], [ -65.012316443076429, 18.358704424399548 ], [ -65.012125167954139, 18.358615242216615 ], [ -65.011904388518474, 18.358553885346225 ], [ -65.011712945758006, 18.358480627477263 ], [ -65.011475737784281, 18.358403179964455 ], [ -65.011326204559793, 18.358306451445685 ], [ -65.01120131545224, 18.358147530485155 ], [ -65.011340118525766, 18.35813110325671 ], [ -65.011582524591688, 18.358109141350212 ], [ -65.011874716566979, 18.358107298640277 ], [ -65.012312252122854, 18.358186256206125 ], [ -65.012726319648209, 18.358298741400745 ], [ -65.013069139652657, 18.3584955485818 ], [ -65.013278350746702, 18.358563944944535 ], [ -65.01349544214321, 18.3585964654348 ], [ -65.013682861588165, 18.358569309365123 ], [ -65.013875477815645, 18.358530248367913 ], [ -65.014238582035546, 18.358430840258166 ], [ -65.014414434448611, 18.35836663353939 ], [ -65.014475957647448, 18.358275942613147 ], [ -65.014509149999924, 18.358183406357625 ], [ -65.014500768092773, 18.358031023284752 ], [ -65.014477801666999, 18.35784662132636 ], [ -65.014449638458814, 18.357696585187455 ], [ -65.014239084949963, 18.357356950307747 ], [ -65.014049318570983, 18.357037599643434 ], [ -65.013738517451998, 18.356795027249063 ], [ -65.013373904488788, 18.356493781504298 ], [ -65.013128985160392, 18.356355647673638 ], [ -65.012695975834447, 18.35617057516265 ], [ -65.012565218082102, 18.356041326153616 ], [ -65.012537557788391, 18.355973600343418 ], [ -65.012577958581062, 18.35588626087042 ], [ -65.012719612812759, 18.355878717153928 ], [ -65.012821536804324, 18.355879555344643 ], [ -65.01301365011733, 18.355880561173535 ], [ -65.013241135078715, 18.355914424078605 ], [ -65.013454538436065, 18.355950969193998 ], [ -65.013690405304658, 18.35598751430939 ], [ -65.014026352145208, 18.356167222399733 ], [ -65.014273953683926, 18.356373417316888 ], [ -65.014412422790883, 18.356453715987868 ], [ -65.014517364269011, 18.356474670755858 ], [ -65.014626161424474, 18.356423038207481 ], [ -65.014732108731494, 18.356308038440716 ], [ -65.014820956947801, 18.356120283719463 ], [ -65.014868063266249, 18.355727842824365 ], [ -65.014900920342484, 18.355488958469152 ], [ -65.014956408568139, 18.355325176002452 ], [ -65.014939141839307, 18.355133230327567 ], [ -65.014935789076446, 18.354987217504117 ], [ -65.014914163755861, 18.354884958236312 ], [ -65.014889688586834, 18.354782698968449 ], [ -65.014846773221961, 18.354648923729542 ], [ -65.014764798169551, 18.354430491227902 ], [ -65.014782567812802, 18.354306775587304 ], [ -65.014826991920984, 18.354241227763339 ], [ -65.014894717731124, 18.354279281622041 ], [ -65.014974681125864, 18.354377349936271 ], [ -65.015057829645286, 18.354448931423747 ], [ -65.015153383387315, 18.354510789898882 ], [ -65.015328900524082, 18.354726875466497 ], [ -65.015450941092922, 18.354921168075407 ], [ -65.015573149299939, 18.355123507315227 ], [ -65.015664679726569, 18.355279913703555 ], [ -65.015727710358988, 18.355471021187725 ], [ -65.015683958113129, 18.355680065953322 ], [ -65.01560064195553, 18.35588626087042 ], [ -65.015471895860969, 18.356151129137913 ], [ -65.015368798402392, 18.356315246880911 ], [ -65.015416239997137, 18.356469641611511 ], [ -65.015360416495184, 18.356605596146323 ], [ -65.01537097769824, 18.356782119111926 ], [ -65.015351866949857, 18.356935675651869 ], [ -65.015377347947719, 18.357084538323704 ], [ -65.015331079819987, 18.357205237787412 ], [ -65.015302581335504, 18.357267599176964 ], [ -65.015270897726282, 18.357362147090214 ], [ -65.015250110596412, 18.357456527365287 ], [ -65.015261845266537, 18.357556774975365 ], [ -65.015337450069467, 18.357636569422255 ], [ -65.015367960211677, 18.357730951006999 ], [ -65.015390088446679, 18.35776967541824 ], [ -65.015389753170382, 18.357825331282072 ], [ -65.015383382920902, 18.357851984437275 ], [ -65.015421101503307, 18.357902444828312 ], [ -65.01546887837435, 18.35793831939111 ], [ -65.015539956947407, 18.357990119577607 ], [ -65.015599300850397, 18.358030351422485 ], [ -65.015646574806965, 18.358070585886765 ], [ -65.0157178210182, 18.35810528698255 ], [ -65.015807339787102, 18.358105957535145 ], [ -65.015932397842505, 18.358112495422745 ], [ -65.016039518616537, 18.358147530485155 ], [ -65.01614060441733, 18.358165301438078 ], [ -65.016217885601748, 18.358188603140093 ], [ -65.016324671099483, 18.35826906944925 ], [ -65.016372615608645, 18.358299075367313 ], [ -65.016452746641505, 18.35829019185536 ], [ -65.016581660374243, 18.358237553478148 ], [ -65.016662294321463, 18.358199667257622 ], [ -65.016805960210888, 18.358158595912357 ], [ -65.016963540066229, 18.358051139862027 ], [ -65.017131178210263, 18.357860535292332 ], [ -65.017213153262674, 18.357710331515307 ], [ -65.017388335123144, 18.357386286982944 ], [ -65.017466622136396, 18.357249494257417 ], [ -65.017545578392571, 18.357083532494869 ], [ -65.017630235655247, 18.356927964297256 ], [ -65.017693436545244, 18.356837439699461 ], [ -65.017722436634472, 18.356771557908871 ], [ -65.017739200448887, 18.356696120744061 ], [ -65.017751774619342, 18.356627221466908 ], [ -65.017757640644732, 18.356556981084566 ], [ -65.017777086669412, 18.356472659098131 ], [ -65.017792343050189, 18.356422870569361 ], [ -65.017822015001684, 18.356382134500393 ], [ -65.017845149065522, 18.356350450891171 ], [ -65.017884207443444, 18.356316085071626 ], [ -65.017911198494289, 18.356288257139738 ], [ -65.017945061399359, 18.356253891320193 ], [ -65.017967860186957, 18.356231092532653 ], [ -65.017981271238455, 18.356231260170773 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1152", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.903842008073354, 18.312346115192099 ], [ -64.903810324464189, 18.312393892063142 ], [ -64.903759194830229, 18.312469496866072 ], [ -64.903715441274642, 18.312561697845297 ], [ -64.903669340785086, 18.312688599920307 ], [ -64.903631789840802, 18.312827069027207 ], [ -64.903597759297554, 18.312944248089877 ], [ -64.903563058201769, 18.3131621776771 ], [ -64.903531039316249, 18.313249517150098 ], [ -64.903515281330726, 18.313282374226333 ], [ -64.903485441741111, 18.313323445571598 ], [ -64.903441688185524, 18.313377760330297 ], [ -64.903358036751627, 18.31345638261979 ], [ -64.903256950950833, 18.31353651365265 ], [ -64.903135078020114, 18.31362318257311 ], [ -64.903018234233741, 18.31371638938117 ], [ -64.902795275502228, 18.313876651446833 ], [ -64.902551362002725, 18.314063232701074 ], [ -64.902336114625825, 18.314201031255436 ], [ -64.902139810359188, 18.314325754034599 ], [ -64.90196094045956, 18.314454500129159 ], [ -64.901811408544802, 18.314690031721511 ], [ -64.901747872378508, 18.314859178608799 ], [ -64.90169908967863, 18.315007369418424 ], [ -64.901639913413817, 18.315175176510252 ], [ -64.90158677212213, 18.315314819084165 ], [ -64.901563638058292, 18.315328899378585 ], [ -64.901505802898612, 18.315351028923317 ], [ -64.901395999914257, 18.315374162987155 ], [ -64.901264403971254, 18.315337785509939 ], [ -64.901202713134239, 18.315287829342992 ], [ -64.901168851538841, 18.315250781313182 ], [ -64.901121911548842, 18.315199316402982 ], [ -64.901034404437667, 18.315060009105309 ], [ -64.901017472985131, 18.314962276067376 ], [ -64.900993500730522, 18.314823470374449 ], [ -64.900969528475912, 18.314683158557614 ], [ -64.900958296720319, 18.314602524610336 ], [ -64.900913369697719, 18.314510826545586 ], [ -64.900946394412074, 18.314283341584144 ], [ -64.900979251488309, 18.314162139206019 ], [ -64.901054521014942, 18.314015958744505 ], [ -64.901095592360207, 18.313898947319956 ], [ -64.901131634561182, 18.3137629927852 ], [ -64.901194835451122, 18.31364564608441 ], [ -64.901313355618981, 18.313552439276293 ], [ -64.901412931366792, 18.313439115890958 ], [ -64.901585933931415, 18.31326041362945 ], [ -64.901736975899155, 18.313193861286322 ], [ -64.901912493035923, 18.313120938693658 ], [ -64.902011734817165, 18.313045669167025 ], [ -64.902071078720155, 18.312986660540332 ], [ -64.902158250555033, 18.312911223375522 ], [ -64.902247434047638, 18.312816172547855 ], [ -64.902308621970235, 18.312747105632525 ], [ -64.902347178743355, 18.312692958512002 ], [ -64.902389088279335, 18.31263378224719 ], [ -64.90241389872466, 18.312581143869977 ], [ -64.902443905952396, 18.312498665903149 ], [ -64.902458322832786, 18.312444183506329 ], [ -64.90246066976681, 18.31239607135899 ], [ -64.902492353376033, 18.312473520181527 ], [ -64.902544488838828, 18.312539737248414 ], [ -64.902596456663446, 18.312605786677125 ], [ -64.902616070326303, 18.312687258815117 ], [ -64.902635516350983, 18.312768563314989 ], [ -64.902687484175658, 18.312846179775647 ], [ -64.902755880538393, 18.312896974133253 ], [ -64.90283634684755, 18.312944080451757 ], [ -64.902916980794771, 18.312975596422802 ], [ -64.903005996649256, 18.312988001645465 ], [ -64.903095180141861, 18.312973249488778 ], [ -64.903180340319011, 18.312946762662023 ], [ -64.903257621503371, 18.312904853126042 ], [ -64.903326856056879, 18.312855232235449 ], [ -64.903404137241239, 18.312813322699412 ], [ -64.903457278532926, 18.312744088145962 ], [ -64.903526513086376, 18.312694467255312 ], [ -64.903575798700729, 18.312621377024527 ], [ -64.903624916676904, 18.312552142471077 ], [ -64.903682248922166, 18.312486931233082 ], [ -64.903747460160162, 18.312429431349642 ], [ -64.903812671398157, 18.312372099104437 ], [ -64.903842008073354, 18.312346115192099 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_492", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.964319471011379, 18.36344104015825 ], [ -64.964309747999039, 18.363563751279685 ], [ -64.964309077446444, 18.36365142602898 ], [ -64.964269347206312, 18.363856112202768 ], [ -64.964215200085846, 18.36399039035615 ], [ -64.964214697171371, 18.364057110337455 ], [ -64.964195251146691, 18.36420396135162 ], [ -64.964198771547728, 18.364258443748383 ], [ -64.964202962501304, 18.364370761304883 ], [ -64.964185192858054, 18.364444186811966 ], [ -64.964166920300329, 18.364591037826074 ], [ -64.964151329952983, 18.364670498306339 ], [ -64.964116293580844, 18.364764208028816 ], [ -64.964054770382006, 18.364850206396738 ], [ -64.963986876933689, 18.365061933372601 ], [ -64.963980506684209, 18.365111554263194 ], [ -64.963938764786349, 18.365266284270092 ], [ -64.963825609039191, 18.365468791148089 ], [ -64.963804989547441, 18.365559651022124 ], [ -64.963821585723736, 18.365596866690112 ], [ -64.963865171641146, 18.365686217820837 ], [ -64.963922336248288, 18.365768192873247 ], [ -64.963976818645051, 18.36584312712364 ], [ -64.964031971594409, 18.365936166293523 ], [ -64.964048400132526, 18.365979584572813 ], [ -64.964074719321161, 18.366036581541778 ], [ -64.964135069052986, 18.36613381035562 ], [ -64.964182343009611, 18.36622064822393 ], [ -64.964206985816759, 18.366258199168158 ], [ -64.964249230629036, 18.366313687393813 ], [ -64.964286949211441, 18.36636230245557 ], [ -64.964330199852611, 18.366406726563753 ], [ -64.964381497124691, 18.366433381028628 ], [ -64.964406139931839, 18.366450646447788 ], [ -64.964448552382294, 18.366475625840962 ], [ -64.964487612069831, 18.366489372168758 ], [ -64.964530024520286, 18.366511834370385 ], [ -64.964562713958344, 18.36653413155318 ], [ -64.964618369822176, 18.36658710520669 ], [ -64.964661452825169, 18.366627338361241 ], [ -64.964686766184911, 18.366645610918965 ], [ -64.964731525569334, 18.366675618146701 ], [ -64.964760694606412, 18.366703948993063 ], [ -64.964781146459984, 18.366733788582678 ], [ -64.964792881130052, 18.366775195204241 ], [ -64.964823055995964, 18.366892877181328 ], [ -64.964840321415124, 18.366902766522173 ], [ -64.964892122911294, 18.366914836468538 ], [ -64.964935373552464, 18.366921710942108 ], [ -64.964990694139999, 18.366923890238013 ], [ -64.965030424380075, 18.366927410638993 ], [ -64.965056240654292, 18.366942498071978 ], [ -64.965090774111957, 18.366954400380223 ], [ -64.9651806281571, 18.366976528615226 ], [ -64.965275511346647, 18.367007037447763 ], [ -64.965356648208342, 18.367032352117178 ], [ -64.965385817245362, 18.367057330200623 ], [ -64.965423535827767, 18.367100579532121 ], [ -64.96548556194108, 18.367139137614913 ], [ -64.965539038509007, 18.367162606955048 ], [ -64.965623694462067, 18.367179872374209 ], [ -64.965680525102528, 18.367196805136416 ], [ -64.965728804887988, 18.367225303620899 ], [ -64.965731990012728, 18.367258328335254 ], [ -64.965773061357993, 18.367309793245454 ], [ -64.965836260938318, 18.367412723065911 ], [ -64.965873979520723, 18.367451112200854 ], [ -64.96590331619592, 18.367456308983321 ], [ -64.96596232351294, 18.367445077227671 ], [ -64.9660126162658, 18.367430660347281 ], [ -64.966093919455943, 18.367436192406046 ], [ -64.966189139231403, 18.367437030596761 ], [ -64.966223840327245, 18.367422278440131 ], [ -64.96629843930134, 18.367398138547344 ], [ -64.966367841492911, 18.367378860160784 ], [ -64.966430201572848, 18.367367796043311 ], [ -64.966492564272073, 18.367368298957729 ], [ -64.966568670679749, 18.367375338450131 ], [ -64.966661877487809, 18.367404173520526 ], [ -64.966741171639626, 18.367427978137016 ], [ -64.966779056550479, 18.367456308983321 ], [ -64.966828846388921, 18.367494698118321 ], [ -64.966894391593542, 18.367531578510011 ], [ -64.966928757413086, 18.367550017396184 ], [ -64.966972009363928, 18.367556890560081 ], [ -64.967023977188546, 18.367555718402741 ], [ -64.967072255664334, 18.367562759204759 ], [ -64.967151717454271, 18.367588072564502 ], [ -64.967286329574222, 18.367628808633526 ], [ -64.967359084528709, 18.367622772350671 ], [ -64.967421613556439, 18.367591760603716 ], [ -64.96748598660372, 18.367560915185209 ], [ -64.967537954428394, 18.367508275498324 ], [ -64.967564610202942, 18.367465695409749 ], [ -64.967592773411127, 18.367416243466948 ], [ -64.967622611691127, 18.367352038057788 ], [ -64.967676926449769, 18.367276433254801 ], [ -64.967731073570292, 18.367210885430836 ], [ -64.967790586421074, 18.367148525350956 ], [ -64.967861832632252, 18.367094544558938 ], [ -64.96807204955519, 18.366961273544121 ], [ -64.968349324355017, 18.366798496906256 ], [ -64.968507742401073, 18.366666564377283 ], [ -64.968652412809718, 18.366564809333568 ], [ -64.968812005632458, 18.366519882310968 ], [ -64.968938235845201, 18.366458525440578 ], [ -64.969087267464886, 18.366390298025635 ], [ -64.969353810804193, 18.366266747403813 ], [ -64.969530166131676, 18.36616935095185 ], [ -64.969677520060259, 18.366129955988015 ], [ -64.969770894506439, 18.366128950159123 ], [ -64.969933000591709, 18.366117383127232 ], [ -64.970089240651589, 18.36611134815405 ], [ -64.970224188047837, 18.366097937102495 ], [ -64.970345390425962, 18.366094584339635 ], [ -64.97044396165461, 18.366098272378792 ], [ -64.970507664149352, 18.366088549366452 ], [ -64.970571701920335, 18.36603557440327 ], [ -64.970611432160467, 18.36598947522333 ], [ -64.970660214860402, 18.365960976738847 ], [ -64.970731796347877, 18.36592828730079 ], [ -64.970809412808535, 18.365884030830784 ], [ -64.970847466667237, 18.365853855964815 ], [ -64.970908654589778, 18.365786297792795 ], [ -64.970934806140235, 18.365738688559929 ], [ -64.970977889143285, 18.365665263052847 ], [ -64.9710591936431, 18.365544395951019 ], [ -64.971134295531613, 18.365449512761529 ], [ -64.971210906163435, 18.365353120828729 ], [ -64.971247618916948, 18.365304170490674 ], [ -64.971296569255003, 18.365242312015539 ], [ -64.971345687231178, 18.365180453540404 ], [ -64.971399163799106, 18.365127312248717 ], [ -64.97144945524235, 18.365087246732344 ], [ -64.971496729198918, 18.365047013577794 ], [ -64.971545679536973, 18.364993872286107 ], [ -64.971620781425486, 18.364894630504864 ], [ -64.971728740390233, 18.364790024303034 ], [ -64.971832508401349, 18.364748785319591 ], [ -64.972004505137136, 18.364715928243356 ], [ -64.972070722203966, 18.364690950159911 ], [ -64.972159067505856, 18.364640826354844 ], [ -64.972249592103651, 18.364606292897179 ], [ -64.972367776995156, 18.364578464965291 ], [ -64.972458636869192, 18.364586846872498 ], [ -64.972512113437119, 18.364604951792046 ], [ -64.972531056547439, 18.364683406443419 ], [ -64.972524015745364, 18.364739565221669 ], [ -64.972516136752631, 18.364811481985441 ], [ -64.972465845309387, 18.364874011013171 ], [ -64.972395940203342, 18.364941904461489 ], [ -64.972313126960216, 18.365023041323184 ], [ -64.972236181052097, 18.365088755475597 ], [ -64.972111793549288, 18.365161678068262 ], [ -64.972035015279346, 18.365217501570214 ], [ -64.971970642232009, 18.365283718637102 ], [ -64.971935438221806, 18.365331160231847 ], [ -64.971863689096153, 18.365391342325552 ], [ -64.971723375969646, 18.365488740087187 ], [ -64.971596641532756, 18.365599045985959 ], [ -64.97146236337943, 18.365711028266162 ], [ -64.971314171260133, 18.365857376365852 ], [ -64.971248960022081, 18.36605368063249 ], [ -64.971087356851285, 18.36615661045289 ], [ -64.970878647361985, 18.366308490611345 ], [ -64.970751912925152, 18.366404379629728 ], [ -64.970659711945927, 18.366467411571875 ], [ -64.970566840414165, 18.366508650555318 ], [ -64.970493917821557, 18.366532622809871 ], [ -64.970396687697985, 18.366555086321171 ], [ -64.970314881593424, 18.366565981490908 ], [ -64.970251177789009, 18.3665641374713 ], [ -64.970159815000557, 18.36655173355831 ], [ -64.970034086392559, 18.366533461000643 ], [ -64.969893437989697, 18.36650496251616 ], [ -64.969773073802344, 18.366480822623373 ], [ -64.969636448714994, 18.366501442115123 ], [ -64.969514911060571, 18.366538154868636 ], [ -64.969327491615559, 18.366669918449816 ], [ -64.969200924816846, 18.366765807468198 ], [ -64.969108220923204, 18.366820122226841 ], [ -64.968989534426953, 18.366894385924638 ], [ -64.9688597825035, 18.366964291030683 ], [ -64.968771603530058, 18.367034531413026 ], [ -64.96867672165024, 18.367100413203616 ], [ -64.968588542676855, 18.367173503434401 ], [ -64.968481589540943, 18.367279786017718 ], [ -64.968405146547298, 18.367389421363896 ], [ -64.96832786536288, 18.367511294294559 ], [ -64.968254104579557, 18.367612883009826 ], [ -64.968206495346635, 18.367679100076714 ], [ -64.968173639580073, 18.367718996645294 ], [ -64.968100212763375, 18.367789741251727 ], [ -64.968042880518112, 18.367854280627512 ], [ -64.968003485554277, 18.367908261419586 ], [ -64.967980351490382, 18.367966933460309 ], [ -64.967979848575965, 18.368025774448824 ], [ -64.968037348459347, 18.368128370302657 ], [ -64.968125693761237, 18.368217218518964 ], [ -64.968156203903447, 18.368262313179684 ], [ -64.968189397565652, 18.368369432644045 ], [ -64.968219572431565, 18.368431626395477 ], [ -64.968267684578905, 18.368503209192625 ], [ -64.968304397332417, 18.3685793156003 ], [ -64.96831663360723, 18.368652239502637 ], [ -64.968304397332417, 18.3687590236907 ], [ -64.968305401851637, 18.368839491309473 ], [ -64.968312611601448, 18.368935715604152 ], [ -64.968334738526835, 18.36900847055864 ], [ -64.96836508234054, 18.369075356868393 ], [ -64.96837916263496, 18.369122129220273 ], [ -64.968391904443592, 18.36916420639443 ], [ -64.968392908962755, 18.369201420752688 ], [ -64.9683908986147, 18.369224891402553 ], [ -64.96830573843755, 18.369190356635215 ], [ -64.968227954338772, 18.369149117651773 ], [ -64.968150002601817, 18.369107712339883 ], [ -64.968057801622592, 18.369086588624043 ], [ -64.96797280777389, 18.369045183312153 ], [ -64.967797124308674, 18.368994387644875 ], [ -64.967556059347942, 18.368834963769928 ], [ -64.967364282620849, 18.36876589816427 ], [ -64.967224638737264, 18.368694987229333 ], [ -64.967115841581801, 18.368583675501725 ], [ -64.967007044426339, 18.368483763167887 ], [ -64.966946863642306, 18.368390219773914 ], [ -64.966874611602236, 18.368279075684427 ], [ -64.966782578261189, 18.368342444212544 ], [ -64.966575377515198, 18.368352502501182 ], [ -64.966442105190708, 18.368252590167344 ], [ -64.966265079310688, 18.368280250461112 ], [ -64.966142368189253, 18.36837245144028 ], [ -64.966062069518273, 18.36849398778503 ], [ -64.965902980919623, 18.36857428645601 ], [ -64.965774402463182, 18.368649054377897 ], [ -64.965615313864532, 18.368711749734075 ], [ -64.965383301363545, 18.368768243788622 ], [ -64.965272829136325, 18.368854746380578 ], [ -64.965052720253254, 18.368928673492405 ], [ -64.964924309434934, 18.368991705434553 ], [ -64.964892458187592, 18.369148614737355 ], [ -64.964903353357272, 18.369294124646331 ], [ -64.964839149257784, 18.369214831804243 ], [ -64.964797407359924, 18.369146435441451 ], [ -64.964762370987842, 18.36905524160079 ], [ -64.964729178635309, 18.368957676200978 ], [ -64.964662458654004, 18.368819205784405 ], [ -64.964518289850162, 18.368586188764198 ], [ -64.964431453291581, 18.368398938267035 ], [ -64.964305892321704, 18.367974478486417 ], [ -64.964241183998126, 18.367800470092959 ], [ -64.964148480104541, 18.367504421130661 ], [ -64.964130542823114, 18.367227482916803 ], [ -64.964116125942724, 18.367109968577836 ], [ -64.964103553081941, 18.366988095647116 ], [ -64.964089471477848, 18.366830683429953 ], [ -64.964066505052074, 18.366736469483328 ], [ -64.964038341843889, 18.366653489911698 ], [ -64.963984865275961, 18.366549218986165 ], [ -64.963927868306996, 18.366454671072916 ], [ -64.963865842193741, 18.366347215022643 ], [ -64.963800798593866, 18.366215283803285 ], [ -64.963712118015678, 18.366052339527357 ], [ -64.963616564273593, 18.365886042488512 ], [ -64.963544312233523, 18.365796356081432 ], [ -64.963470216173903, 18.36572443931766 ], [ -64.9633516960061, 18.365669956920897 ], [ -64.963256645178433, 18.365653025468305 ], [ -64.963144998174528, 18.365605080959142 ], [ -64.96309303034991, 18.365564847804592 ], [ -64.962991106358345, 18.365509862493354 ], [ -64.96278474380307, 18.365325795811259 ], [ -64.962643760123967, 18.365200570117679 ], [ -64.962490203584082, 18.365071153470524 ], [ -64.962301107757639, 18.364930169791421 ], [ -64.962098265603402, 18.364793879980311 ], [ -64.961942529767612, 18.364722969045431 ], [ -64.961683696473301, 18.364597743351851 ], [ -64.961451852920106, 18.364492131321128 ], [ -64.961180782041311, 18.364387692757418 ], [ -64.961018843594161, 18.364304544237996 ], [ -64.960911890458306, 18.364233298026818 ], [ -64.960828575610435, 18.364147299658896 ], [ -64.960782641449271, 18.364072868322978 ], [ -64.96076638054933, 18.364008327637521 ], [ -64.960754310602965, 18.36389081329861 ], [ -64.960723968098876, 18.36382023763997 ], [ -64.960715418553548, 18.363752176553533 ], [ -64.96070703664634, 18.363677912855735 ], [ -64.960694799061855, 18.36358889700125 ], [ -64.960678873438155, 18.363478758740655 ], [ -64.960691111022641, 18.363419414837665 ], [ -64.960728159052508, 18.363318329036815 ], [ -64.96076487180602, 18.36325311779882 ], [ -64.96077928868641, 18.363239706747322 ], [ -64.960801250592965, 18.363241047852455 ], [ -64.96084500283888, 18.363266193574077 ], [ -64.960914741616421, 18.36330122994616 ], [ -64.960968553460646, 18.363359735658435 ], [ -64.961001912141626, 18.363387228314025 ], [ -64.961032926507926, 18.363409691825325 ], [ -64.961067627603768, 18.363438357947928 ], [ -64.961111379849683, 18.363472053214878 ], [ -64.961160162549561, 18.363519494809623 ], [ -64.961183128975279, 18.36355671047761 ], [ -64.961220177005146, 18.363607672473393 ], [ -64.961268959705023, 18.363668692757813 ], [ -64.961312545622491, 18.36371093757009 ], [ -64.961364010532691, 18.363745973942173 ], [ -64.961423354435624, 18.363782351419445 ], [ -64.961454199854131, 18.36379123624107 ], [ -64.961496947580883, 18.363791571517368 ], [ -64.961556626760114, 18.363790733326653 ], [ -64.961599206848689, 18.363791068602893 ], [ -64.961648324824921, 18.363804982568865 ], [ -64.961693419485641, 18.36382644025133 ], [ -64.961739855251551, 18.363846556828605 ], [ -64.961768689012274, 18.363862314814128 ], [ -64.961797858049351, 18.363890310384193 ], [ -64.961819483369936, 18.363920149973808 ], [ -64.961838929394617, 18.363928867157313 ], [ -64.961869942451244, 18.36393892544595 ], [ -64.961912522539819, 18.363941775294393 ], [ -64.961951414589237, 18.363943284037646 ], [ -64.962035233661254, 18.363976141113881 ], [ -64.962080495960151, 18.363985193573683 ], [ -64.962136151823927, 18.363990557994271 ], [ -64.962202201252694, 18.363992234375701 ], [ -64.962269591786537, 18.363985361211803 ], [ -64.962346034780239, 18.363964909358231 ], [ -64.962416107524405, 18.36394697207686 ], [ -64.962477127808825, 18.36393741670264 ], [ -64.962553570802527, 18.363910929875885 ], [ -64.9626095619426, 18.363890310384193 ], [ -64.96264325720955, 18.36386834978731 ], [ -64.962696733777477, 18.363825434422438 ], [ -64.96276060391034, 18.3637863747349 ], [ -64.96280737495249, 18.36376072609886 ], [ -64.962870909809112, 18.363737759673143 ], [ -64.962951376118212, 18.363713619780413 ], [ -64.963006026153153, 18.36369802943301 ], [ -64.963069561009718, 18.363675063007292 ], [ -64.963138460286928, 18.363649582009373 ], [ -64.963198139466158, 18.36362896251768 ], [ -64.963238372620765, 18.363615719104303 ], [ -64.963300566372141, 18.36360633136826 ], [ -64.963366615800908, 18.363601972776507 ], [ -64.963454793464621, 18.363596440717743 ], [ -64.963503911440853, 18.363588058810535 ], [ -64.963538947812935, 18.363578503436315 ], [ -64.963620922865346, 18.363544472893125 ], [ -64.963679260939443, 18.363525194506565 ], [ -64.963726031981651, 18.363508263053973 ], [ -64.963763750564055, 18.363494852002475 ], [ -64.963793590153671, 18.363479094016952 ], [ -64.963817059493806, 18.363458306887082 ], [ -64.963851090037053, 18.363421426495393 ], [ -64.963895346507059, 18.363387228314025 ], [ -64.963951002370891, 18.363364597164605 ], [ -64.964034150890313, 18.36334615696876 ], [ -64.964146971361231, 18.363309108938893 ], [ -64.964187372153901, 18.363299218288432 ], [ -64.964202794863183, 18.363302907637262 ], [ -64.964247889523904, 18.36332553747701 ], [ -64.964294325289814, 18.363363088421295 ], [ -64.964315950610398, 18.363400304089282 ], [ -64.964319471011379, 18.36344104015825 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_247", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.905588294619406, 18.316625246455828 ], [ -64.905597849993626, 18.316702192363948 ], [ -64.905581421455508, 18.316835798655006 ], [ -64.905570188390186, 18.316873518547084 ], [ -64.905570188390186, 18.316898999545003 ], [ -64.905564153417004, 18.316967731184036 ], [ -64.905538841366933, 18.317025901620013 ], [ -64.905521406999981, 18.317112401592624 ], [ -64.905505146099983, 18.317219019452239 ], [ -64.905501121474856, 18.317323962240039 ], [ -64.905530124183485, 18.317373749459136 ], [ -64.905562645983423, 18.317451533557914 ], [ -64.905571027890574, 18.317517415348561 ], [ -64.905564322364853, 18.317573072522009 ], [ -64.905559125582386, 18.31762906235241 ], [ -64.905557113924658, 18.317640629384357 ], [ -64.905550073122583, 18.317643648180649 ], [ -64.905537332623624, 18.317636773707079 ], [ -64.905417471350688, 18.317615148386494 ], [ -64.905365168249773, 18.317598218243631 ], [ -64.905332646449835, 18.317580113324084 ], [ -64.905274476013858, 18.317540381774279 ], [ -64.905201050506776, 18.317499814653104 ], [ -64.905095438476053, 18.317461090241807 ], [ -64.905015810357668, 18.317423874573876 ], [ -64.905000555286563, 18.317410966436739 ], [ -64.90497691830825, 18.317344749369909 ], [ -64.904971050973245, 18.317265624165941 ], [ -64.904971553887663, 18.317205274434059 ], [ -64.904956969369096, 18.317126149230091 ], [ -64.904964177809291, 18.317049369650476 ], [ -64.904963004342335, 18.316941244357281 ], [ -64.904968201124746, 18.316830938458509 ], [ -64.90497993579487, 18.316735383406751 ], [ -64.905002734582411, 18.316615020529071 ], [ -64.905034250553513, 18.316507061564323 ], [ -64.905068616373001, 18.316331375479706 ], [ -64.905110861185335, 18.316210844963848 ], [ -64.905140197860533, 18.316033482497858 ], [ -64.905172718350798, 18.315883615306802 ], [ -64.905209432413983, 18.315814045476998 ], [ -64.905244804062363, 18.315772135941017 ], [ -64.905293585452625, 18.31573777012153 ], [ -64.905331136396853, 18.315669372449065 ], [ -64.905377573472435, 18.315580357904309 ], [ -64.905448315459523, 18.3154665316045 ], [ -64.905512857454653, 18.315300737480072 ], [ -64.905589803362716, 18.315216080217397 ], [ -64.905745203922208, 18.315130081849475 ], [ -64.905815947218969, 18.315005861984787 ], [ -64.905919212315666, 18.314881809758219 ], [ -64.905976712199049, 18.314788770588336 ], [ -64.905990123250604, 18.314740992407621 ], [ -64.905999510986646, 18.314670418058654 ], [ -64.906004706459441, 18.314568494067089 ], [ -64.906012419123726, 18.314439747972528 ], [ -64.906022142136123, 18.314329609711876 ], [ -64.906032031476911, 18.314190302414261 ], [ -64.906048292376909, 18.314071949884578 ], [ -64.906101267340091, 18.313982934030093 ], [ -64.906178548524451, 18.313867096072613 ], [ -64.906230516349069, 18.313801046643846 ], [ -64.906265217444911, 18.313770033587218 ], [ -64.906318191098421, 18.313729968070788 ], [ -64.906264043977899, 18.313795346946961 ], [ -64.906213752534711, 18.313864246224171 ], [ -64.906178548524451, 18.313940689217816 ], [ -64.906135968435876, 18.314013444172303 ], [ -64.906112331457564, 18.314093575205163 ], [ -64.906107637589514, 18.314177561915301 ], [ -64.906106967036976, 18.314261548625439 ], [ -64.906106296484381, 18.314345535335576 ], [ -64.906105961208084, 18.314378392411811 ], [ -64.906154576269842, 18.314506635591954 ], [ -64.906184414549841, 18.314587269539231 ], [ -64.906225822481076, 18.314660695046314 ], [ -64.906245771420174, 18.314751387282229 ], [ -64.906262701563094, 18.314821626354842 ], [ -64.906284831107769, 18.314909470051987 ], [ -64.906288016232509, 18.314993624400302 ], [ -64.906283490002579, 18.315077611110439 ], [ -64.906326236419659, 18.315111474015509 ], [ -64.906367309074597, 18.315100074621739 ], [ -64.906425310562724, 18.315038551422901 ], [ -64.906498402103182, 18.314991611432902 ], [ -64.906571492333967, 18.314944674062247 ], [ -64.906651958643124, 18.314912487538606 ], [ -64.906736448267679, 18.314887509455161 ], [ -64.906820770254114, 18.314866387048994 ], [ -64.906828481608727, 18.314865716496399 ], [ -64.906778525441837, 18.314887174178864 ], [ -64.906734436609952, 18.314914499196334 ], [ -64.906661177431374, 18.314952888331277 ], [ -64.906603008305069, 18.314982895559069 ], [ -64.906552549223704, 18.315051291921804 ], [ -64.906488176176424, 18.315131255316487 ], [ -64.906383569974537, 18.315224294486427 ], [ -64.906169831340947, 18.315438033120017 ], [ -64.906016776405806, 18.315654789240227 ], [ -64.905950560648591, 18.315766436244132 ], [ -64.905841092940591, 18.315852266973877 ], [ -64.905772026025261, 18.3159550291561 ], [ -64.905709496997531, 18.316072543495068 ], [ -64.905645291588371, 18.316132390312475 ], [ -64.905597849993626, 18.316233979027743 ], [ -64.905583599441741, 18.316296171469503 ], [ -64.905588965172001, 18.316412178374833 ], [ -64.905588294619406, 18.316625246455828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_225", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.990760863897378, 18.366261887207315 ], [ -64.990765725403548, 18.366290553329975 ], [ -64.990800091223036, 18.366367331599918 ], [ -64.990854573619856, 18.366434722133818 ], [ -64.990919114305314, 18.366497251161491 ], [ -64.990978793484544, 18.366559947827341 ], [ -64.991028245427344, 18.36663203222929 ], [ -64.991087758278127, 18.36669456125702 ], [ -64.991167554034689, 18.366733453306381 ], [ -64.991247348481579, 18.366767483849628 ], [ -64.991332342330224, 18.366796820524826 ], [ -64.991417333559582, 18.36681190795781 ], [ -64.991422364013602, 18.36681190795781 ], [ -64.991325972080801, 18.366830012877358 ], [ -64.991274339532424, 18.366840909356711 ], [ -64.991170571521309, 18.366846272467626 ], [ -64.991073341397794, 18.366825654285606 ], [ -64.990998407147401, 18.366794808867098 ], [ -64.990937888467727, 18.366761448876446 ], [ -64.990872007986809, 18.366736806069298 ], [ -64.990798079565309, 18.366701602059038 ], [ -64.990630441421331, 18.366596492942733 ], [ -64.990523991199893, 18.366553409939741 ], [ -64.990386695559948, 18.3665081476409 ], [ -64.990270187049873, 18.36646489699973 ], [ -64.990162730999543, 18.366412258622518 ], [ -64.990042869726608, 18.366349059042193 ], [ -64.989968941305108, 18.366310502269073 ], [ -64.989924684835103, 18.366291056244393 ], [ -64.989817396422893, 18.366221989329063 ], [ -64.98975805251996, 18.3661740448199 ], [ -64.989696194044825, 18.366093075596325 ], [ -64.989641711648005, 18.36599584547281 ], [ -64.98958940854709, 18.365868272845205 ], [ -64.989540625847155, 18.365744220618637 ], [ -64.989472564760717, 18.365571720968489 ], [ -64.989424452613378, 18.365484884409909 ], [ -64.989389416241295, 18.365431407841982 ], [ -64.989336274949665, 18.365360832183342 ], [ -64.989257987936412, 18.365276510196907 ], [ -64.989187244639652, 18.365194032230079 ], [ -64.989058666183155, 18.365034608355131 ], [ -64.98896143605964, 18.364945592500646 ], [ -64.988902762709245, 18.364883398749214 ], [ -64.988852638904177, 18.364852385692586 ], [ -64.988723054618902, 18.364803435354531 ], [ -64.988636553336562, 18.364742247431991 ], [ -64.988497748953364, 18.364665972076466 ], [ -64.988372523259784, 18.364585002852891 ], [ -64.988336481058809, 18.364569915419963 ], [ -64.988196000294181, 18.364540243468468 ], [ -64.988090052987161, 18.364493472426261 ], [ -64.987989805377026, 18.364465644494373 ], [ -64.987936328809099, 18.364443013344953 ], [ -64.987872626314356, 18.364375958087351 ], [ -64.987845301296886, 18.364332372169883 ], [ -64.987802721208311, 18.364302197303971 ], [ -64.987692750585893, 18.36418635934649 ], [ -64.987589150212898, 18.364099858064151 ], [ -64.9874924230038, 18.364076053447718 ], [ -64.987390666650356, 18.36407068902713 ], [ -64.987310535617553, 18.364086279374533 ], [ -64.987194697660016, 18.364090470328108 ], [ -64.98711506954163, 18.364068174454928 ], [ -64.987003925452143, 18.363954348155175 ], [ -64.98683058761128, 18.36362275990632 ], [ -64.986701507550038, 18.363292512762655 ], [ -64.986596900038535, 18.363108781356857 ], [ -64.986502687401583, 18.362855647759375 ], [ -64.986042855972642, 18.362412747782969 ], [ -64.985819395636327, 18.362172689960744 ], [ -64.985648907643906, 18.361972362378651 ], [ -64.985559219927154, 18.361803718405781 ], [ -64.985316816480633, 18.361539017776408 ], [ -64.984974833357171, 18.361165856577543 ], [ -64.984546182622978, 18.360791520601992 ], [ -64.984177715292162, 18.360612146478275 ], [ -64.983707656626677, 18.360443334867227 ], [ -64.983196026320854, 18.36030838747098 ], [ -64.982990165370381, 18.360278715519485 ], [ -64.982861754552061, 18.360253402159742 ], [ -64.982745917904253, 18.360218699754284 ], [ -64.982307376519543, 18.359978306655762 ], [ -64.98198316434906, 18.359835312628604 ], [ -64.98181150288957, 18.359726683111319 ], [ -64.981587035414748, 18.359615874298129 ], [ -64.981481255745905, 18.359520151608251 ], [ -64.981397939588362, 18.359401465111944 ], [ -64.98135502422349, 18.359327704328621 ], [ -64.981268690579327, 18.359179344571146 ], [ -64.981186044974322, 18.359021763406133 ], [ -64.981127706900224, 18.35889720957482 ], [ -64.981034332453987, 18.358764606493196 ], [ -64.980858647679099, 18.358605854480516 ], [ -64.98069503285052, 18.358458834518558 ], [ -64.980509960339589, 18.35827242221211 ], [ -64.980409209815036, 18.358094558141318 ], [ -64.980319858684254, 18.357951730442664 ], [ -64.980190777313396, 18.357783254107915 ], [ -64.980057504988906, 18.357548393068157 ], [ -64.979991790836493, 18.357354268097424 ], [ -64.979958430845784, 18.357277657465602 ], [ -64.979874276497526, 18.357193670755464 ], [ -64.979739663067903, 18.357056207477399 ], [ -64.979614605012443, 18.356939531329147 ], [ -64.979504969666266, 18.356878343406606 ], [ -64.97929978057806, 18.356765522935689 ], [ -64.979125269270128, 18.356667119345161 ], [ -64.97899484679408, 18.356579276957689 ], [ -64.978864927232507, 18.356516580291839 ], [ -64.978706341548275, 18.356436449259036 ], [ -64.978529987530464, 18.356373249678711 ], [ -64.978429907558507, 18.356352797825195 ], [ -64.978252043487714, 18.356283563271688 ], [ -64.978074178107249, 18.356184824404863 ], [ -64.977879214945801, 18.35609178523498 ], [ -64.977586854022661, 18.355980305869195 ], [ -64.977372278507971, 18.355900007198215 ], [ -64.977213860461916, 18.35579456280567 ], [ -64.977039181515863, 18.355676545552285 ], [ -64.976919821847673, 18.355597420348317 ], [ -64.976885457337801, 18.355565233824677 ], [ -64.976868356937473, 18.355541932122662 ], [ -64.976868524575593, 18.355527682880393 ], [ -64.97688361331825, 18.355503542987663 ], [ -64.976915129289296, 18.35546850661558 ], [ -64.977089136373081, 18.355359709460117 ], [ -64.977304048473741, 18.355313944246802 ], [ -64.977465316368239, 18.355340431073557 ], [ -64.977588865680389, 18.355369432472457 ], [ -64.977694645349231, 18.355418047534215 ], [ -64.977782655374824, 18.355469512444415 ], [ -64.977856080881907, 18.355512260171167 ], [ -64.977953478643542, 18.355560875232925 ], [ -64.978009134507374, 18.3556034553215 ], [ -64.978167049639012, 18.355700517806838 ], [ -64.978275343880057, 18.355782828135546 ], [ -64.978422028565717, 18.35587972298282 ], [ -64.97858363042684, 18.35594577241153 ], [ -64.97883072905114, 18.356009474906273 ], [ -64.979342695942876, 18.356159008130703 ], [ -64.979601193960946, 18.356252885491358 ], [ -64.979729101864791, 18.356311223565456 ], [ -64.979954407530329, 18.356415326852868 ], [ -64.980166972696964, 18.356618839559701 ], [ -64.980202176707166, 18.356727636715163 ], [ -64.980255988551392, 18.356859735572641 ], [ -64.980394122382052, 18.357054195819671 ], [ -64.980506942852969, 18.357177745131821 ], [ -64.980612554883692, 18.357312693837741 ], [ -64.980724369525774, 18.357508662828025 ], [ -64.980835178338907, 18.357694908806025 ], [ -64.980996613871582, 18.357927422911757 ], [ -64.981161402167174, 18.358069243471903 ], [ -64.981362400301805, 18.358207881526653 ], [ -64.981386037280117, 18.358251132167823 ], [ -64.981398945417197, 18.35830879837971 ], [ -64.98140648913369, 18.358364958467575 ], [ -64.9814594627872, 18.358430672620045 ], [ -64.981544958240647, 18.35846185331485 ], [ -64.981794236160738, 18.358897712489238 ], [ -64.981839330821515, 18.359002151052948 ], [ -64.981918456025483, 18.359120837549199 ], [ -64.982024570970623, 18.359219576416024 ], [ -64.982110904614785, 18.359293003232779 ], [ -64.982256079247463, 18.359372128436746 ], [ -64.982436122614104, 18.359448905397016 ], [ -64.982624044973534, 18.359541106376241 ], [ -64.982887907412191, 18.359689970357749 ], [ -64.982947754229599, 18.359732718084501 ], [ -64.983000392606812, 18.359776805606714 ], [ -64.983036936412532, 18.359795916355097 ], [ -64.983096952177789, 18.359820728110094 ], [ -64.983177083210592, 18.359840509411072 ], [ -64.983316390508264, 18.359874203368349 ], [ -64.983552592653155, 18.359907229392377 ], [ -64.983733474210567, 18.359894487583801 ], [ -64.984022648699295, 18.359887783367697 ], [ -64.984292547420807, 18.359934554409847 ], [ -64.984456665163748, 18.360003452377384 ], [ -64.98454567970856, 18.360075704417454 ], [ -64.984707953431951, 18.3601970744337 ], [ -64.98495521969437, 18.36047183335171 ], [ -64.985165605565044, 18.360668809480615 ], [ -64.985424606497531, 18.360935186491417 ], [ -64.985715123401121, 18.361228385605273 ], [ -64.986066995865372, 18.361581597864983 ], [ -64.986206304472717, 18.361696597631806 ], [ -64.986326499712277, 18.361808579911951 ], [ -64.986439823097612, 18.361878821603966 ], [ -64.986646520929185, 18.362102449578401 ], [ -64.986937540747135, 18.362356925590689 ], [ -64.987085397590135, 18.362651967414422 ], [ -64.987146417874555, 18.362849109871775 ], [ -64.98721280257962, 18.363020938969385 ], [ -64.987349596614763, 18.363190924047387 ], [ -64.987397539814253, 18.36324674754934 ], [ -64.987416316596068, 18.36332553747701 ], [ -64.987439784626588, 18.363385216656297 ], [ -64.987446825428606, 18.363443890006693 ], [ -64.987465936177045, 18.363483284970528 ], [ -64.987543049723286, 18.36352787671683 ], [ -64.987769193579538, 18.363570624443582 ], [ -64.987982094022414, 18.363639188444438 ], [ -64.988047472898586, 18.363668022205218 ], [ -64.988208740793084, 18.363764414138018 ], [ -64.988291051121791, 18.363808167693605 ], [ -64.988337654525822, 18.363827948994583 ], [ -64.988426502742129, 18.363839683664708 ], [ -64.988490540513169, 18.363862817728545 ], [ -64.988538149746034, 18.363900871587248 ], [ -64.988615263292274, 18.363954683431473 ], [ -64.988677457043707, 18.363998101710763 ], [ -64.988732945269362, 18.364030958786998 ], [ -64.988834869260927, 18.364062977672461 ], [ -64.988923046924697, 18.364083094249793 ], [ -64.989019606495617, 18.364086447012653 ], [ -64.989072412511007, 18.364079909125053 ], [ -64.98919093267881, 18.364105893037333 ], [ -64.989295203604343, 18.364165069302203 ], [ -64.989434510902015, 18.364275375200918 ], [ -64.989512965553445, 18.364339580610078 ], [ -64.989589743823387, 18.364357350253329 ], [ -64.989683788822163, 18.364377802106901 ], [ -64.989789400852885, 18.364412838479041 ], [ -64.98986902897127, 18.364455921482033 ], [ -64.98991714111861, 18.364483078861326 ], [ -64.98992837287426, 18.364492969511844 ], [ -64.989951842214396, 18.364508056944828 ], [ -64.989988890244206, 18.364521300358206 ], [ -64.990046222489468, 18.364536890705551 ], [ -64.990083270519278, 18.364552145776656 ], [ -64.990171951097466, 18.364605454706464 ], [ -64.990205311088118, 18.364647699518741 ], [ -64.990235485954031, 18.364685585739323 ], [ -64.99025761418909, 18.364724477788684 ], [ -64.990310252566303, 18.364766890239139 ], [ -64.990395580381573, 18.364790024303034 ], [ -64.990476549605148, 18.364812152538036 ], [ -64.990682576884126, 18.364831933839014 ], [ -64.990903187371941, 18.364846518357524 ], [ -64.991116927315204, 18.364885913321359 ], [ -64.991254558231446, 18.364956488979999 ], [ -64.991341227151906, 18.365018682731431 ], [ -64.991388164522505, 18.365052377998381 ], [ -64.991431919387765, 18.365068974174619 ], [ -64.99147936098251, 18.365071488746764 ], [ -64.991582792407712, 18.365077523720004 ], [ -64.99170097860889, 18.365099987231247 ], [ -64.991764010551037, 18.365106860395201 ], [ -64.991822516263312, 18.365111554263194 ], [ -64.991894433027085, 18.365126138781761 ], [ -64.991942880450722, 18.365131838478646 ], [ -64.991982275414557, 18.365134353050792 ], [ -64.99203189630515, 18.365127144610597 ], [ -64.992069110663465, 18.365118930341566 ], [ -64.992108674575093, 18.365110548434359 ], [ -64.992161480590482, 18.365106860395201 ], [ -64.99211638462009, 18.365129994459039 ], [ -64.992095766438013, 18.365163689725989 ], [ -64.992086211063793, 18.365247005883532 ], [ -64.992069447249435, 18.365335518823599 ], [ -64.992038600521255, 18.365416655685294 ], [ -64.992010103346445, 18.365460409240882 ], [ -64.991989651492872, 18.365475329035689 ], [ -64.991973055316635, 18.365473485016082 ], [ -64.991935335424557, 18.365455212458414 ], [ -64.991893259560072, 18.365434592966722 ], [ -64.991813462493838, 18.365400562423474 ], [ -64.99174858653214, 18.365380948760617 ], [ -64.991728471264537, 18.365380781122497 ], [ -64.991663426354989, 18.365385139714192 ], [ -64.99163828194304, 18.365394527450292 ], [ -64.9915677062844, 18.36545135678108 ], [ -64.991537362470694, 18.365498966014002 ], [ -64.99151305624946, 18.365516903295372 ], [ -64.991427728434189, 18.365544898865437 ], [ -64.991352291269379, 18.365587478954012 ], [ -64.991276854104569, 18.365629891404467 ], [ -64.991216169096447, 18.365691582241425 ], [ -64.991160680870792, 18.36575813458461 ], [ -64.991139892431249, 18.365843965314355 ], [ -64.991094296165784, 18.36591537916371 ], [ -64.991028582013314, 18.365972208494497 ], [ -64.990948283342334, 18.366005065570732 ], [ -64.990887598334211, 18.366066756407747 ], [ -64.990841999449401, 18.366138170257045 ], [ -64.990791374039588, 18.3662095841064 ], [ -64.990760863897378, 18.366261887207315 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1167", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.927335148920804, 18.357647131934982 ], [ -64.927353756754769, 18.357763974411682 ], [ -64.927369011825874, 18.35784343620162 ], [ -64.927387954936194, 18.35790278010461 ], [ -64.927417460559184, 18.357958771244682 ], [ -64.927471774008154, 18.358028507402935 ], [ -64.927513683544191, 18.358088020253717 ], [ -64.927586773774976, 18.358125403559825 ], [ -64.927657852348034, 18.358157422445345 ], [ -64.927673945609854, 18.35818223289067 ], [ -64.927698420778881, 18.35821458705243 ], [ -64.927700264798432, 18.358226154084377 ], [ -64.927697079673692, 18.358247610457113 ], [ -64.927692050529402, 18.358267895982237 ], [ -64.927683500984017, 18.358292537479713 ], [ -64.927682830431479, 18.35832874862848 ], [ -64.927695738568559, 18.358408544385043 ], [ -64.927608399095504, 18.35837350801296 ], [ -64.927523741832829, 18.358350876863483 ], [ -64.927431373215484, 18.358342662594453 ], [ -64.927376890818664, 18.358408544385043 ], [ -64.927322408421844, 18.358474258537512 ], [ -64.927244959599363, 18.358517844454923 ], [ -64.927198020919036, 18.358598309454351 ], [ -64.927135994805724, 18.358656816476298 ], [ -64.927043458550258, 18.358655978285583 ], [ -64.926958466011229, 18.358677435967991 ], [ -64.926896273569469, 18.358750526198776 ], [ -64.926872467643364, 18.358831326474558 ], [ -64.926810273891931, 18.358889664548656 ], [ -64.926740536424063, 18.358940626544438 ], [ -64.926663087601526, 18.358984046133401 ], [ -64.926578095062496, 18.359012878584508 ], [ -64.926500647549631, 18.359056464501919 ], [ -64.926416156615403, 18.359033667023994 ], [ -64.92638598174949, 18.358952530162298 ], [ -64.926379108585593, 18.358864183550736 ], [ -64.92634893371968, 18.358783047998713 ], [ -64.926349771910395, 18.358694701387151 ], [ -64.926304175644873, 18.358613398197008 ], [ -64.926250865405393, 18.358546844544151 ], [ -64.926305347802213, 18.358473587984918 ], [ -64.92635228648254, 18.35840049644446 ], [ -64.926383971401435, 18.358290359493537 ], [ -64.92638480959215, 18.358202014191647 ], [ -64.926385478835073, 18.358113836527878 ], [ -64.926439962541508, 18.358047953427615 ], [ -64.926486899912163, 18.357967488428187 ], [ -64.926456892684371, 18.357886351566492 ], [ -64.926364524067026, 18.35787076121909 ], [ -64.926280203390263, 18.357826001834667 ], [ -64.926211302803438, 18.357774034009992 ], [ -64.926118935495765, 18.357765987379082 ], [ -64.92605674043466, 18.35782432545318 ], [ -64.926063613598558, 18.357912669445398 ], [ -64.926062944355692, 18.35800084841884 ], [ -64.926023715720305, 18.358081482366117 ], [ -64.925999912413545, 18.358162283951515 ], [ -64.925952972423545, 18.358235540510748 ], [ -64.925898491336397, 18.35830125597289 ], [ -64.92581400040217, 18.358278457185293 ], [ -64.92572934444911, 18.358255826035872 ], [ -64.925637143469885, 18.35824040332659 ], [ -64.925544605904747, 18.358239565135875 ], [ -64.925452238597074, 18.35822414242665 ], [ -64.925359868670057, 18.358216094486068 ], [ -64.925267501362384, 18.358215425243145 ], [ -64.925197762584787, 18.358266387238928 ], [ -64.925150825214189, 18.358339477469713 ], [ -64.925111596578802, 18.35842011141699 ], [ -64.9250800806077, 18.358500745364267 ], [ -64.925056277300939, 18.358581546949665 ], [ -64.925032471374834, 18.358662348535063 ], [ -64.924977822649566, 18.358750189612863 ], [ -64.924915627588462, 18.358808528996633 ], [ -64.924823092642669, 18.358815065574561 ], [ -64.924730722715651, 18.358807020253323 ], [ -64.924638186460129, 18.358821100547743 ], [ -64.924560737637592, 18.358864520136706 ], [ -64.924491001479396, 18.358915482132488 ], [ -64.924436517772904, 18.358981362613406 ], [ -64.924396956480621, 18.359091334545553 ], [ -64.924350185438414, 18.359164592414459 ], [ -64.924303245448414, 18.359237682645244 ], [ -64.924264019432428, 18.359318316592521 ], [ -64.924325207354968, 18.359377660495511 ], [ -64.924401816677118, 18.359429794648634 ], [ -64.924424112550241, 18.359518307588644 ], [ -64.924477421480049, 18.359592237319816 ], [ -64.924499886301021, 18.359673374181511 ], [ -64.924537603573754, 18.359754677371711 ], [ -64.924552355730384, 18.359843022673601 ], [ -64.924551517539669, 18.359931201646987 ], [ -64.924543135632462, 18.360019545639204 ], [ -64.924465688119653, 18.360062965228167 ], [ -64.924373319502308, 18.360054918597257 ], [ -64.924327720617441, 18.359980990175757 ], [ -64.924282124351976, 18.359907060444584 ], [ -64.924228815422168, 18.359825757254441 ], [ -64.924143821573466, 18.359854423377044 ], [ -64.924073916467421, 18.359912761451142 ], [ -64.923989091566568, 18.359934219133606 ], [ -64.923999820407801, 18.359903038438802 ], [ -64.924009040505723, 18.359866493323409 ], [ -64.923997642421568, 18.359821397353016 ], [ -64.923989763428835, 18.359714445526777 ], [ -64.923993282520144, 18.359649569565079 ], [ -64.923979034587603, 18.359590393300266 ], [ -64.923991438500593, 18.359520151608251 ], [ -64.923992948553575, 18.359345641609991 ], [ -64.923997642421568, 18.359142967093931 ], [ -64.923971489561438, 18.359100554643476 ], [ -64.923936788465653, 18.359021597077628 ], [ -64.923880966273373, 18.358990081106583 ], [ -64.923828326586488, 18.358950349556778 ], [ -64.92377853936739, 18.35890207108099 ], [ -64.923726571542716, 18.358783383275011 ], [ -64.923703605116998, 18.358704424399548 ], [ -64.923689691151083, 18.358622785933051 ], [ -64.923648955082058, 18.35856327439194 ], [ -64.923564130181205, 18.358472582156026 ], [ -64.923555914602446, 18.358404856345885 ], [ -64.92355641751692, 18.358351378468285 ], [ -64.923553904254391, 18.358300753058472 ], [ -64.923539655012178, 18.35823872694516 ], [ -64.923499589495748, 18.35810042547638 ], [ -64.923444939460808, 18.357939660496299 ], [ -64.923390792340285, 18.357730951006999 ], [ -64.923321222510538, 18.357598013958807 ], [ -64.923228350978775, 18.357434063853987 ], [ -64.923176046568187, 18.357338007197484 ], [ -64.923100275436752, 18.357236083205919 ], [ -64.923006733352395, 18.357145223331884 ], [ -64.922880334191802, 18.357110522236042 ], [ -64.922786121554907, 18.357090908573184 ], [ -64.922692076556132, 18.357040617129996 ], [ -64.922617477582037, 18.356998372317719 ], [ -64.922448329385077, 18.356857891553034 ], [ -64.922358811925847, 18.356769210974846 ], [ -64.922304832443444, 18.356709196519319 ], [ -64.922243644520904, 18.356646835129766 ], [ -64.922202573175639, 18.356598052429831 ], [ -64.922111378025306, 18.356517921397028 ], [ -64.922079694416084, 18.356503169240341 ], [ -64.922043316938812, 18.356484058491901 ], [ -64.922027056038871, 18.356472994374428 ], [ -64.922006101270881, 18.356460756789886 ], [ -64.921992857857504, 18.356446004633256 ], [ -64.921965197563736, 18.356407112583838 ], [ -64.921949942492631, 18.356371238020984 ], [ -64.921950110130751, 18.356352462548898 ], [ -64.921957653847244, 18.356324634616954 ], [ -64.921965197563736, 18.356311391203576 ], [ -64.921991013837896, 18.356293956836623 ], [ -64.922024373828549, 18.356278534127398 ], [ -64.922053710503747, 18.356265961266558 ], [ -64.922098469888226, 18.356253388405776 ], [ -64.922179606749921, 18.356238133334671 ], [ -64.922247164921941, 18.356223884092458 ], [ -64.922351268209354, 18.356196894351228 ], [ -64.922468950186442, 18.356178286517263 ], [ -64.922512536103909, 18.356171413353366 ], [ -64.922568862520279, 18.356147944013173 ], [ -64.922588811459434, 18.356133694770961 ], [ -64.922622171450087, 18.356109722516351 ], [ -64.922665757367497, 18.356054234290696 ], [ -64.922728117447377, 18.356030262036086 ], [ -64.92283188545855, 18.355990867072251 ], [ -64.922867426054722, 18.355974773810431 ], [ -64.922915538202062, 18.35593454065588 ], [ -64.922955436080315, 18.355889278356983 ], [ -64.922995166320447, 18.35585088922204 ], [ -64.923007739181287, 18.35584301022925 ], [ -64.923022322390125, 18.355843177867428 ], [ -64.923037746409022, 18.35584619535399 ], [ -64.923068927103827, 18.355859438767368 ], [ -64.923097759554935, 18.35587653785808 ], [ -64.923132963565138, 18.355898498454906 ], [ -64.92319867902728, 18.355978461849645 ], [ -64.923226170373198, 18.356034117713421 ], [ -64.923271433981768, 18.356093126340113 ], [ -64.923292053473517, 18.356140903211156 ], [ -64.923326084016708, 18.356263111418116 ], [ -64.9233495533569, 18.356302506381951 ], [ -64.9233691670197, 18.356343577727273 ], [ -64.92337520199294, 18.356363191390074 ], [ -64.92338190751866, 18.356403592182801 ], [ -64.92339464801762, 18.356437287449751 ], [ -64.923416608614502, 18.356466288848651 ], [ -64.923464719452113, 18.356492608037286 ], [ -64.92350059532464, 18.356516245015541 ], [ -64.923549879629263, 18.356532673553659 ], [ -64.923624144636733, 18.356541893651581 ], [ -64.923702599288163, 18.356553125407231 ], [ -64.923837045079608, 18.356593526199958 ], [ -64.923908123652666, 18.356631580058661 ], [ -64.923994122020588, 18.356697629487371 ], [ -64.924060002501506, 18.356748088568736 ], [ -64.924084980584951, 18.356768372784131 ], [ -64.924137117357418, 18.356799553478936 ], [ -64.924194449602624, 18.356818999503616 ], [ -64.924263684156131, 18.356829393068551 ], [ -64.924354041115748, 18.356847330349979 ], [ -64.924419252353744, 18.356859400296344 ], [ -64.924446408423421, 18.356871134966411 ], [ -64.924518494134986, 18.356900471641609 ], [ -64.924574651603564, 18.356918241284859 ], [ -64.924609855613824, 18.356927126106541 ], [ -64.924666183339866, 18.356937184395179 ], [ -64.924731225630069, 18.356956798057979 ], [ -64.924761234167477, 18.356985967095056 ], [ -64.924810015557739, 18.357013795026944 ], [ -64.924893499353459, 18.357044808083629 ], [ -64.924945299539957, 18.357067439233049 ], [ -64.925001793594447, 18.357087220534027 ], [ -64.925052755590229, 18.357116389571104 ], [ -64.925102376480879, 18.357122759820584 ], [ -64.925159876364262, 18.357120245248382 ], [ -64.925211845498552, 18.357113204446364 ], [ -64.92525190970531, 18.357100799223701 ], [ -64.925289797235564, 18.357086382343311 ], [ -64.925323323554665, 18.357069618528897 ], [ -64.925370094596815, 18.357042628787724 ], [ -64.925392559417787, 18.357032402860966 ], [ -64.925415190567264, 18.357028211907334 ], [ -64.925440837893632, 18.357028379545511 ], [ -64.925477215370847, 18.357036090900124 ], [ -64.925572433836635, 18.357059727878436 ], [ -64.92559573553865, 18.357063583555714 ], [ -64.925611996438647, 18.357064589384606 ], [ -64.925683411597674, 18.357064421746429 ], [ -64.925749293388265, 18.357067103956751 ], [ -64.925789692871263, 18.357071797824801 ], [ -64.925905027914325, 18.357096440631949 ], [ -64.92594610056932, 18.357104151986562 ], [ -64.926026900845045, 18.357101134499999 ], [ -64.926136368553045, 18.357090908573184 ], [ -64.926273328916693, 18.357058554411424 ], [ -64.926295792427993, 18.357055872201101 ], [ -64.926316748505656, 18.357058889687721 ], [ -64.926341557641308, 18.357062913003176 ], [ -64.926523277389435, 18.357128794793766 ], [ -64.926553619893468, 18.357136338510202 ], [ -64.926586141693406, 18.357143379312276 ], [ -64.926617992940749, 18.357141367654549 ], [ -64.926686221665364, 18.357130806451494 ], [ -64.926975229825644, 18.357004574929022 ], [ -64.927103305367666, 18.356937184395179 ], [ -64.927186789163386, 18.356863088335501 ], [ -64.927275469741517, 18.356699138230681 ], [ -64.927364317957881, 18.356524626922749 ], [ -64.927443443161849, 18.356435443430144 ], [ -64.927491052394714, 18.356363191390074 ], [ -64.927518881636331, 18.356302506381951 ], [ -64.927548217001856, 18.356211814146093 ], [ -64.927585097393489, 18.356096814379271 ], [ -64.927657517071736, 18.35600193118978 ], [ -64.927784251508569, 18.35584619535399 ], [ -64.927869914600194, 18.355771931656193 ], [ -64.9280910293121, 18.355555678450457 ], [ -64.928199658829442, 18.355417712257918 ], [ -64.928298900610685, 18.355339425244665 ], [ -64.928393616161998, 18.355263149889197 ], [ -64.928459162676347, 18.35518251594192 ], [ -64.928544993406035, 18.355093332449314 ], [ -64.928612886854353, 18.355006328252557 ], [ -64.928667201613052, 18.354938267166119 ], [ -64.92873040119332, 18.354861824172417 ], [ -64.928789242181836, 18.354791751428252 ], [ -64.928839198348783, 18.354717320092277 ], [ -64.928893680745603, 18.354627968961552 ], [ -64.928977332179443, 18.354528224265891 ], [ -64.929051763515361, 18.354458319159846 ], [ -64.929140276455428, 18.354320017691009 ], [ -64.929199452720241, 18.354198647674764 ], [ -64.929251923459276, 18.354088006499751 ], [ -64.929308417513823, 18.354020113051433 ], [ -64.929356026746746, 18.353947693373186 ], [ -64.929443869134161, 18.353890696404221 ], [ -64.929535902475266, 18.353852977821816 ], [ -64.929601113713261, 18.353827832100251 ], [ -64.929681747660538, 18.353815594515709 ], [ -64.929762549245936, 18.353792795728168 ], [ -64.929856594244711, 18.353778546485898 ], [ -64.929930690304332, 18.353766308901413 ], [ -64.929997913200111, 18.353749712725119 ], [ -64.930082738100964, 18.353753400764333 ], [ -64.930154654864737, 18.353742839561221 ], [ -64.930195726210002, 18.353735966397323 ], [ -64.930240150318184, 18.353734290015893 ], [ -64.930285915531499, 18.353737307502456 ], [ -64.930323466475727, 18.353735631121026 ], [ -64.930382978016894, 18.353734122377773 ], [ -64.930416505645667, 18.353738983883943 ], [ -64.930443160110542, 18.353739151522063 ], [ -64.930480040502232, 18.353743342475639 ], [ -64.930496971954767, 18.353753903678751 ], [ -64.930501665822817, 18.353763795638883 ], [ -64.930501498184697, 18.353774858446741 ], [ -64.930491439896059, 18.353796651405446 ], [ -64.930472832062037, 18.353827832100251 ], [ -64.930461265030146, 18.353842416618761 ], [ -64.930431090164177, 18.353858509880581 ], [ -64.930403597508587, 18.353872088570256 ], [ -64.930329669087087, 18.353900251778441 ], [ -64.930293962162409, 18.353918189059868 ], [ -64.930232941877989, 18.353935288150524 ], [ -64.930168401192532, 18.353960267543698 ], [ -64.930120456683369, 18.353981388640136 ], [ -64.930062956799986, 18.354002511046303 ], [ -64.930033787762909, 18.354010726625006 ], [ -64.929991040036214, 18.354036038675076 ], [ -64.929934713619843, 18.354076271829626 ], [ -64.929887439663219, 18.354105776143001 ], [ -64.929855923692116, 18.354126898549112 ], [ -64.929774954468598, 18.354164784769694 ], [ -64.929707563934699, 18.354204851595796 ], [ -64.929646543650279, 18.354260004545154 ], [ -64.929567753722608, 18.354359581602694 ], [ -64.929524167805141, 18.354453457653676 ], [ -64.929478905506301, 18.354504419649402 ], [ -64.929420232155906, 18.354559572598816 ], [ -64.929343286247786, 18.354650767749149 ], [ -64.929306908770513, 18.354723187427339 ], [ -64.929250079439726, 18.354814717853969 ], [ -64.929173133531606, 18.354931561640342 ], [ -64.929129715252316, 18.355029629954572 ], [ -64.929081938381273, 18.355125351334777 ], [ -64.929011865637108, 18.355199615032575 ], [ -64.928898877528013, 18.355322661430307 ], [ -64.92878354248495, 18.35545425737331 ], [ -64.928672901309938, 18.35556674256793 ], [ -64.928584723646168, 18.355672857513127 ], [ -64.928447428006223, 18.35577226693249 ], [ -64.92830325920238, 18.355865138464253 ], [ -64.928210220032497, 18.356016180431993 ], [ -64.928184739034577, 18.356116428042128 ], [ -64.928159090398594, 18.356246515241878 ], [ -64.928146014623337, 18.356447345738388 ], [ -64.928066721781249, 18.356564357162881 ], [ -64.92798994351125, 18.356647002767886 ], [ -64.927831525465194, 18.356844648139656 ], [ -64.927626001100634, 18.357054531095969 ], [ -64.927525921128677, 18.357236753758457 ], [ -64.927509995504977, 18.357285201182094 ], [ -64.927490046565879, 18.357345886190217 ], [ -64.927468422554966, 18.357392992508665 ], [ -64.927454004364904, 18.357416629486977 ], [ -64.927439587484514, 18.35744680435289 ], [ -64.927427014623731, 18.357478823238409 ], [ -64.927408909704184, 18.357512518505359 ], [ -64.927380243581524, 18.35754956653517 ], [ -64.927341017565539, 18.357598181596927 ], [ -64.927335148920804, 18.357647131934982 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_549", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.917570229652142, 18.31910562043447 ], [ -64.91754776483117, 18.319145349364931 ], [ -64.917530665740514, 18.319189773473056 ], [ -64.917526642425059, 18.319223468740006 ], [ -64.917525805544017, 18.319309467107871 ], [ -64.91752513368175, 18.319395465475793 ], [ -64.917531840517199, 18.319481631481779 ], [ -64.917561175882724, 18.319560756685746 ], [ -64.91759805758403, 18.319639881889714 ], [ -64.91765740148702, 18.319719342369979 ], [ -64.917672153643707, 18.319755216932776 ], [ -64.917687073438515, 18.319798467573946 ], [ -64.917686401576248, 18.319881783731489 ], [ -64.91763979948189, 18.319951521199414 ], [ -64.917593362406365, 18.320021258667339 ], [ -64.917551452870327, 18.320095522365136 ], [ -64.917523123333694, 18.320178503246382 ], [ -64.917540725338824, 18.320261987042102 ], [ -64.917623704910397, 18.320231979814309 ], [ -64.917683887004102, 18.320170959529889 ], [ -64.917748596637352, 18.320114633113519 ], [ -64.91785923650275, 18.320062832927022 ], [ -64.917946575975748, 18.320041542882734 ], [ -64.918033747810625, 18.320033497561496 ], [ -64.918134833611475, 18.320025618568707 ], [ -64.918222005446353, 18.320030646403382 ], [ -64.91830900964311, 18.320053277552802 ], [ -64.918396013839811, 18.320071382472349 ], [ -64.918487711904618, 18.320094182569619 ], [ -64.91858376856112, 18.320121171001119 ], [ -64.918670772757821, 18.320139443558844 ], [ -64.918757944592699, 18.320148832604559 ], [ -64.918845116427576, 18.320158219030986 ], [ -64.918932120624333, 18.320180850180407 ], [ -64.918999678796354, 18.320187555706184 ], [ -64.918879649885241, 18.320200296205087 ], [ -64.918823491107048, 18.320206331178269 ], [ -64.918738164601393, 18.320215383638072 ], [ -64.918596006145606, 18.320236842630152 ], [ -64.918394505096501, 18.320286126934832 ], [ -64.918198871382458, 18.320335412549184 ], [ -64.91802653937043, 18.320435660159262 ], [ -64.917948756581325, 18.320553677412647 ], [ -64.91787063589652, 18.320682926421682 ], [ -64.917810621440992, 18.320784012222532 ], [ -64.917738873625012, 18.320879565964617 ], [ -64.917641809829945, 18.321005126934438 ], [ -64.917583639394024, 18.321053741996195 ], [ -64.917516919412662, 18.32109615444665 ], [ -64.917463107568437, 18.321138566897105 ], [ -64.917409295724212, 18.32118114698568 ], [ -64.917340565394852, 18.321217356824775 ], [ -64.917261103604972, 18.321255578321598 ], [ -64.91720075387309, 18.321306037402906 ], [ -64.917129676609704, 18.321356664122447 ], [ -64.917033115729112, 18.321394717981093 ], [ -64.916958181478719, 18.321396059086283 ], [ -64.916857767540137, 18.321382983311025 ], [ -64.916783168566099, 18.321360016885308 ], [ -64.916700018737004, 18.321326656894655 ], [ -64.916608320672196, 18.32129530856173 ], [ -64.916533386421861, 18.321294638009135 ], [ -64.916418051378741, 18.321281562233935 ], [ -64.916300369401654, 18.321268318820557 ], [ -64.916195764509496, 18.321259266360755 ], [ -64.916086798406241, 18.32123596465874 ], [ -64.915984371500258, 18.321210651298998 ], [ -64.915909606197715, 18.321191708188735 ], [ -64.915860320583363, 18.321199419543348 ], [ -64.91579175658245, 18.321209142555688 ], [ -64.91570810514861, 18.321245184756663 ], [ -64.91564540848276, 18.321290279417383 ], [ -64.915605341656658, 18.321317604434853 ], [ -64.91559260246737, 18.321339900308033 ], [ -64.915576006291133, 18.32137091336466 ], [ -64.915544825596328, 18.32141734913057 ], [ -64.915528060472298, 18.321479375243825 ], [ -64.915512639072688, 18.321576102452923 ], [ -64.91550878339541, 18.321614156311625 ], [ -64.915493863600545, 18.321657239314618 ], [ -64.915475591042878, 18.321684731970208 ], [ -64.915464525615675, 18.321705351461958 ], [ -64.91544625436768, 18.321715577388716 ], [ -64.915411553271838, 18.321758492753588 ], [ -64.915367798406635, 18.321789338172096 ], [ -64.91532052445001, 18.321832085898791 ], [ -64.91527124014533, 18.321862763679178 ], [ -64.91524391512786, 18.321900649899703 ], [ -64.91520032921045, 18.321919257733668 ], [ -64.915139979478568, 18.321974075406786 ], [ -64.915087341101355, 18.322003076805686 ], [ -64.915061860103492, 18.322018499514911 ], [ -64.91502045348193, 18.321999053490231 ], [ -64.914950379428035, 18.321943229988278 ], [ -64.914892713216204, 18.321910037635746 ], [ -64.91483420750393, 18.321907858339898 ], [ -64.91471501547386, 18.321943062350158 ], [ -64.914633377007419, 18.321975248873798 ], [ -64.914551569593129, 18.322023025744841 ], [ -64.914502116340657, 18.322083207838546 ], [ -64.914354930050251, 18.322151101286863 ], [ -64.914297765443109, 18.322173900074404 ], [ -64.914273122635961, 18.322192004993951 ], [ -64.914251162039079, 18.322224694432066 ], [ -64.914221656416089, 18.322279679743303 ], [ -64.914199529490759, 18.322324606765903 ], [ -64.914175892512446, 18.322348411382336 ], [ -64.914155775935171, 18.322365510472991 ], [ -64.914106825597116, 18.322384285945134 ], [ -64.914021665419966, 18.322385291774026 ], [ -64.913908005448661, 18.322356793289543 ], [ -64.913802059451314, 18.322347237915324 ], [ -64.913675157376304, 18.322363498815264 ], [ -64.913571892279606, 18.322386968155456 ], [ -64.913472147583946, 18.322405073075004 ], [ -64.913397883886148, 18.322416640106951 ], [ -64.91333954581205, 18.322424686737861 ], [ -64.913298139190431, 18.322440109447086 ], [ -64.913229072275158, 18.322475816371764 ], [ -64.9131420680784, 18.322495765310919 ], [ -64.913010975049758, 18.322536166103589 ], [ -64.912893795987145, 18.322561144187034 ], [ -64.912831099321295, 18.322574555238589 ], [ -64.912693300766932, 18.322614956031259 ], [ -64.912638986008233, 18.322619649899309 ], [ -64.912602608531017, 18.322643622153919 ], [ -64.91258768873621, 18.322676311591977 ], [ -64.912538403121857, 18.322732973284644 ], [ -64.91249464956627, 18.322774212268087 ], [ -64.912451063648803, 18.322798016884519 ], [ -64.912417200743732, 18.322810589745359 ], [ -64.912407310093215, 18.322820145119522 ], [ -64.912405298435488, 18.322849481794719 ], [ -64.912390546278857, 18.322882171232834 ], [ -64.912359365584052, 18.322926930617257 ], [ -64.912331872928462, 18.322969845982129 ], [ -64.912288119372874, 18.323014437728432 ], [ -64.912206311958585, 18.323041427469605 ], [ -64.91204655280734, 18.323110997299409 ], [ -64.911926523896227, 18.323179226023967 ], [ -64.911804148051147, 18.323224991237282 ], [ -64.911767770573874, 18.323245443090855 ], [ -64.911720664255427, 18.323257177760922 ], [ -64.911686130797762, 18.323274109213514 ], [ -64.911635001163859, 18.323325574123714 ], [ -64.911601305896909, 18.323354240246317 ], [ -64.911574651431977, 18.323397658525607 ], [ -64.911532574257876, 18.32343369941691 ], [ -64.911494185122876, 18.323485165636782 ], [ -64.911483121005347, 18.32351450231198 ], [ -64.911466357190989, 18.323571331642825 ], [ -64.911458645836319, 18.323621455447835 ], [ -64.911454454882744, 18.323690522363165 ], [ -64.911443223127094, 18.3237233794394 ], [ -64.911428638608584, 18.323738802148682 ], [ -64.911405169268392, 18.323733436418365 ], [ -64.911384549776699, 18.323714997532193 ], [ -64.911354877825204, 18.323700076427713 ], [ -64.911333252504619, 18.323672249805497 ], [ -64.911317326880976, 18.323635872328225 ], [ -64.911306765677864, 18.323613408816925 ], [ -64.911287487291304, 18.323600165403548 ], [ -64.911261671017144, 18.323588766009777 ], [ -64.911249601070779, 18.323574181491267 ], [ -64.911224790625454, 18.323557082400555 ], [ -64.911204171133761, 18.323531266126395 ], [ -64.911149521098821, 18.323482986340935 ], [ -64.911085315689661, 18.323426659924507 ], [ -64.911067378408234, 18.323410901938985 ], [ -64.911004178827966, 18.323394807367492 ], [ -64.910883144088018, 18.323367986574112 ], [ -64.910816591744833, 18.32333462658346 ], [ -64.910647612495666, 18.32319330762806 ], [ -64.91056664458182, 18.323147710052922 ], [ -64.910526745393838, 18.323147374776624 ], [ -64.910479136160973, 18.323212753652797 ], [ -64.910437058986815, 18.323265894944427 ], [ -64.910365812775638, 18.323346528891705 ], [ -64.910292554906675, 18.323444597205935 ], [ -64.910181075540947, 18.323568146518085 ], [ -64.910137154347183, 18.323623131829322 ], [ -64.910147715550238, 18.323666382470435 ], [ -64.910185098856402, 18.3237393050631 ], [ -64.91021292678829, 18.323812060017588 ], [ -64.910239245976868, 18.323922868830778 ], [ -64.910243939844918, 18.323993778455986 ], [ -64.910245114621603, 18.324064689390923 ], [ -64.91025953019232, 18.324087154211895 ], [ -64.910349216599343, 18.324162256100408 ], [ -64.910410236883763, 18.324221432365221 ], [ -64.91042649778376, 18.324242387133211 ], [ -64.910400346233246, 18.32423400522606 ], [ -64.910318371180836, 18.32417583348041 ], [ -64.910260872607125, 18.324142473489758 ], [ -64.910231869898553, 18.324132248872615 ], [ -64.910204712519203, 18.324133422339628 ], [ -64.910180572626473, 18.324162759014825 ], [ -64.910053502913343, 18.324212044629178 ], [ -64.91002483679074, 18.324217241411645 ], [ -64.909950740731063, 18.324228976081713 ], [ -64.909849654930213, 18.324244397481266 ], [ -64.90967531257013, 18.324305585403863 ], [ -64.909544219541544, 18.324331738263993 ], [ -64.909444305898035, 18.324352693031983 ], [ -64.909327294473542, 18.324381694430883 ], [ -64.909285887851979, 18.324405834323613 ], [ -64.909220845561777, 18.324437517932836 ], [ -64.9091737379336, 18.324454617023548 ], [ -64.909121268504236, 18.324465513502901 ], [ -64.909060583496114, 18.324476409982253 ], [ -64.909024707623587, 18.324495185454396 ], [ -64.908993526928839, 18.324503232085306 ], [ -64.908965698996894, 18.324502392584918 ], [ -64.908928315690787, 18.324502729170888 ], [ -64.908885904550061, 18.324510105249203 ], [ -64.908846005362079, 18.324527204339915 ], [ -64.908793199346746, 18.324536592075958 ], [ -64.908740560969534, 18.324546818002716 ], [ -64.908691945907776, 18.324554026442911 ], [ -64.908669817672774, 18.324552350061481 ], [ -64.908654731549461, 18.32453927428628 ], [ -64.908646180694461, 18.324525527958428 ], [ -64.908645511451539, 18.324508930472518 ], [ -64.908649533457321, 18.324496694197705 ], [ -64.908659928331929, 18.32448462425134 ], [ -64.908683228724271, 18.324471882442708 ], [ -64.908708040479269, 18.324453108280238 ], [ -64.908737712430764, 18.324425950900945 ], [ -64.908789678945709, 18.324390745581013 ], [ -64.908832091396164, 18.32436744518867 ], [ -64.908871990584089, 18.324347328611395 ], [ -64.908904009469609, 18.324331570625873 ], [ -64.908943570761892, 18.324310614548153 ], [ -64.908982462811309, 18.324282620287818 ], [ -64.909022529637411, 18.324246075172425 ], [ -64.909072819770927, 18.324179858105538 ], [ -64.909116070412097, 18.324121686359888 ], [ -64.909156135928527, 18.324092183356186 ], [ -64.909204750990284, 18.324080281047998 ], [ -64.909267616603927, 18.324048094524358 ], [ -64.909319081514127, 18.324022781164615 ], [ -64.909414970532509, 18.323970478063643 ], [ -64.90949644136083, 18.323931753652403 ], [ -64.909633234086357, 18.323904260996812 ], [ -64.909735997578252, 18.323891352859675 ], [ -64.909807074841638, 18.323890682307137 ], [ -64.909865580553912, 18.32388565316279 ], [ -64.909922577522877, 18.323876599393373 ], [ -64.909974042433078, 18.323852460810315 ], [ -64.91000404966087, 18.323826979812395 ], [ -64.910025842619575, 18.323786242433755 ], [ -64.910051155979318, 18.323664203174587 ], [ -64.910058868643603, 18.323593459877827 ], [ -64.910069428537042, 18.323510646634702 ], [ -64.910085689436983, 18.323453648356065 ], [ -64.910094909534905, 18.323369495317422 ], [ -64.910111002796725, 18.323324735932999 ], [ -64.910145537564063, 18.323273271022799 ], [ -64.910167330522768, 18.323225997066174 ], [ -64.910172023081145, 18.323171513359682 ], [ -64.910191301467705, 18.323092892379805 ], [ -64.910199012822318, 18.323027681141809 ], [ -64.910186104685238, 18.322987447987259 ], [ -64.910159451530035, 18.322945706089399 ], [ -64.9101470449977, 18.322902455448229 ], [ -64.910089712752438, 18.322838082400949 ], [ -64.910045121006135, 18.322768512571201 ], [ -64.910023830961848, 18.322713024345546 ], [ -64.910008240614445, 18.322647310193076 ], [ -64.910001367450548, 18.322595342368459 ], [ -64.909960128467105, 18.322548403688131 ], [ -64.909929953601193, 18.322484198278971 ], [ -64.9099158719971, 18.322439103618251 ], [ -64.909936157522225, 18.322401217397669 ], [ -64.909964989973332, 18.322406917094554 ], [ -64.910047970854578, 18.322447150249161 ], [ -64.910084013055553, 18.322464584616114 ], [ -64.910137824899778, 18.322506494152094 ], [ -64.910168502680108, 18.322522419775794 ], [ -64.910209910611343, 18.322548571326251 ], [ -64.910252993614392, 18.322580087297354 ], [ -64.910294398926283, 18.322620152813727 ], [ -64.910332117508688, 18.322641107581774 ], [ -64.910389952668368, 18.322660721244574 ], [ -64.910480309627985, 18.322673461743534 ], [ -64.910538144787665, 18.322679161440419 ], [ -64.910617605267873, 18.322700451484707 ], [ -64.910715003029566, 18.322734146751657 ], [ -64.910787255069636, 18.322755436795944 ], [ -64.910828661691198, 18.322776391563934 ], [ -64.910895214034383, 18.322821989139129 ], [ -64.910927568196144, 18.322839423506082 ], [ -64.911010716715566, 18.322855684406079 ], [ -64.911138959895766, 18.322873956963747 ], [ -64.911177013754411, 18.322883009423549 ], [ -64.911234513637794, 18.322923074939979 ], [ -64.911252618557342, 18.322931959761604 ], [ -64.911270723476946, 18.322926930617257 ], [ -64.911298048494416, 18.322909831526601 ], [ -64.911348842852021, 18.322889547311149 ], [ -64.911390584749881, 18.322879489022512 ], [ -64.911490329445542, 18.322894073541022 ], [ -64.911562916761909, 18.322873956963747 ], [ -64.911631816039119, 18.322857193149389 ], [ -64.911690657027634, 18.322830035770039 ], [ -64.911746983444004, 18.322795837588671 ], [ -64.911816050359334, 18.322765327446461 ], [ -64.911875897176742, 18.322745043231009 ], [ -64.911937588013757, 18.322726435397044 ], [ -64.912030627183697, 18.322654686271392 ], [ -64.912092653296952, 18.322598192216901 ], [ -64.912146968055595, 18.322581260764366 ], [ -64.912227099088454, 18.322537004294304 ], [ -64.91232131172535, 18.322508338171701 ], [ -64.912415524362302, 18.322496938777931 ], [ -64.912435473301457, 18.322491909633584 ], [ -64.91250101981575, 18.322454526327476 ], [ -64.912575618789845, 18.322399708654416 ], [ -64.912628424805177, 18.322365510472991 ], [ -64.912701179759665, 18.322331647567921 ], [ -64.91278365772655, 18.322285547078309 ], [ -64.91288004965935, 18.322239614226874 ], [ -64.91297979435501, 18.322205918959924 ], [ -64.913097643970218, 18.322184293639339 ], [ -64.913186492186526, 18.322169541482651 ], [ -64.913251703424578, 18.322152777668293 ], [ -64.913315405919263, 18.322111706322971 ], [ -64.913348095357378, 18.322099971652904 ], [ -64.913500478430251, 18.322057894478746 ], [ -64.913673816271171, 18.322031575290168 ], [ -64.913856541848133, 18.322027887251011 ], [ -64.914008757282886, 18.322011793989191 ], [ -64.914063072041529, 18.322007100121141 ], [ -64.914126774536271, 18.321966028775876 ], [ -64.914173880854719, 18.321947420941854 ], [ -64.914275469569986, 18.321917246075941 ], [ -64.914328275585319, 18.321883047894573 ], [ -64.914399186520257, 18.321847340969896 ], [ -64.914457356956234, 18.321820015952426 ], [ -64.914557436928192, 18.32174994320826 ], [ -64.914677464529632, 18.321678361720785 ], [ -64.914763128930872, 18.321618514903378 ], [ -64.91482146700497, 18.321574090795195 ], [ -64.914859688501792, 18.321539892613828 ], [ -64.914881815427179, 18.3214864160459 ], [ -64.91489153843952, 18.321408799585186 ], [ -64.914895563064647, 18.321375942509007 ], [ -64.914921210391014, 18.321329506743098 ], [ -64.91494350757381, 18.321265636610235 ], [ -64.914976532288165, 18.321219200844325 ], [ -64.915000504542775, 18.32115901875062 ], [ -64.915032020513877, 18.321081402289963 ], [ -64.915047106637132, 18.321010658993202 ], [ -64.915046102117969, 18.32092432534904 ], [ -64.915050293071545, 18.320841344467738 ], [ -64.915058004426157, 18.320801614227662 ], [ -64.915099746324017, 18.320746628916424 ], [ -64.915125393650385, 18.320708911643692 ], [ -64.915171160173372, 18.320640178694987 ], [ -64.91522798950416, 18.320567926654917 ], [ -64.91533879831735, 18.320511767876667 ], [ -64.91539629820079, 18.320489304365367 ], [ -64.915458324314045, 18.320486454516924 ], [ -64.91553610841288, 18.320500536121017 ], [ -64.915620933313733, 18.320516461744717 ], [ -64.915689832590886, 18.320527190585892 ], [ -64.915753535085628, 18.320541272189985 ], [ -64.915806507429465, 18.32055015701161 ], [ -64.915852441590573, 18.320558874195115 ], [ -64.915912622374606, 18.320569603036347 ], [ -64.915981521651815, 18.320576811476542 ], [ -64.916066683138638, 18.320592234185767 ], [ -64.916177827228069, 18.320601286645569 ], [ -64.916261309714116, 18.320606148151739 ], [ -64.916336077636004, 18.320612853677517 ], [ -64.916419561431724, 18.320609333276479 ], [ -64.916507236181076, 18.320601957198107 ], [ -64.916573619576411, 18.320592234185767 ], [ -64.916629444388036, 18.320576308562124 ], [ -64.916708737230124, 18.320560550576545 ], [ -64.916803117505196, 18.320528700638874 ], [ -64.916912583903581, 18.320482431201469 ], [ -64.917007299454951, 18.320424093127372 ], [ -64.917063290595024, 18.320385703992372 ], [ -64.917155994488667, 18.320290317888464 ], [ -64.917216345530164, 18.320231644538012 ], [ -64.917253559888479, 18.320148160742349 ], [ -64.917294798871865, 18.320066688604356 ], [ -64.917312400876995, 18.320013714950846 ], [ -64.917330002882125, 18.319968955566367 ], [ -64.91734542559135, 18.319915981912914 ], [ -64.9173586703144, 18.319852614694469 ], [ -64.917398566883037, 18.319693693733939 ], [ -64.917412145572712, 18.319620269536529 ], [ -64.917414827782977, 18.319548686739381 ], [ -64.917428406472652, 18.319465036615213 ], [ -64.917446008477782, 18.319410049994303 ], [ -64.917457241543104, 18.319352885387161 ], [ -64.917474843548234, 18.319293876760526 ], [ -64.917485906356035, 18.319252973053381 ], [ -64.917503340723044, 18.319204190353446 ], [ -64.917522954385845, 18.319165465942206 ], [ -64.917547261916752, 18.319129926655648 ], [ -64.917570229652142, 18.31910562043447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_488", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.958538303287071, 18.360299670287532 ], [ -64.958536625595968, 18.360383655687997 ], [ -64.958550205595316, 18.360483400383657 ], [ -64.958569482672203, 18.360537882780477 ], [ -64.958652800139419, 18.360621869490615 ], [ -64.958746174585656, 18.360697306655425 ], [ -64.958814403310271, 18.360763691360432 ], [ -64.958871903193653, 18.360814822304008 ], [ -64.958913980367811, 18.36084667355135 ], [ -64.958944824476589, 18.360899144290443 ], [ -64.959095698806209, 18.361004922649613 ], [ -64.959259313634732, 18.361134340606498 ], [ -64.959355705567532, 18.361227378466708 ], [ -64.959377164559669, 18.361245818662553 ], [ -64.959389903748956, 18.361262582476968 ], [ -64.959439861225519, 18.361345898634511 ], [ -64.959465005637469, 18.361392503348213 ], [ -64.959482944228512, 18.36141831962243 ], [ -64.959504903515722, 18.361440615495553 ], [ -64.959535916572349, 18.361472968347698 ], [ -64.959652592720602, 18.361528122606728 ], [ -64.959687796730805, 18.361544717473294 ], [ -64.959714115919439, 18.361571874852643 ], [ -64.959726353503925, 18.361609259468423 ], [ -64.959730713405349, 18.361645300359726 ], [ -64.959752337416262, 18.361688718639016 ], [ -64.959790895499054, 18.361747559627588 ], [ -64.959818723430942, 18.361807406444996 ], [ -64.959851243921207, 18.361849483619096 ], [ -64.959870857584065, 18.361931793947804 ], [ -64.959885609740752, 18.362039586584103 ], [ -64.959930704401472, 18.362168835593081 ], [ -64.959956017761215, 18.362270590636854 ], [ -64.959959202885955, 18.362416938736544 ], [ -64.959953504498742, 18.362580722512917 ], [ -64.959926010533422, 18.362734949605397 ], [ -64.959879911353539, 18.362845757108914 ], [ -64.959823918903737, 18.362912141813922 ], [ -64.959791564741977, 18.362953548435485 ], [ -64.95975133158737, 18.36305061092088 ], [ -64.959727694609114, 18.363103416936212 ], [ -64.959694000651837, 18.363122527684652 ], [ -64.959667512515409, 18.36313912386089 ], [ -64.959641194636447, 18.363151361445432 ], [ -64.959616550519627, 18.363186733093812 ], [ -64.959569948425269, 18.363263343725635 ], [ -64.959527031750724, 18.363309108938893 ], [ -64.959475400512019, 18.363381863893437 ], [ -64.959437680619999, 18.363470879747865 ], [ -64.959410524550321, 18.36368193617119 ], [ -64.959381355513244, 18.36377363423594 ], [ -64.959355202653114, 18.363852088887313 ], [ -64.959334750799542, 18.363916797210948 ], [ -64.959308265282459, 18.364024923813815 ], [ -64.959304912519599, 18.3640980140446 ], [ -64.959299546789339, 18.364152496441363 ], [ -64.959286975238172, 18.364310411573058 ], [ -64.959253781576024, 18.364430608122291 ], [ -64.959285297547069, 18.364544769698341 ], [ -64.959346485469609, 18.364780133652516 ], [ -64.959461317598254, 18.365000745450004 ], [ -64.959551843505722, 18.365106860395201 ], [ -64.959667512515409, 18.365210125491899 ], [ -64.959767258520742, 18.365349432789571 ], [ -64.959863481505749, 18.36554288720771 ], [ -64.96000966196732, 18.36577271910312 ], [ -64.960187862624025, 18.365954774127545 ], [ -64.960434793610148, 18.366224671539385 ], [ -64.960617854463408, 18.366572353050003 ], [ -64.960720616645688, 18.366732447477546 ], [ -64.960799069987388, 18.366815931273266 ], [ -64.960862438515505, 18.366869909445938 ], [ -64.961043151125068, 18.366992454238869 ], [ -64.961272983020478, 18.367211222016806 ], [ -64.961323945016261, 18.367260507631158 ], [ -64.961378427413081, 18.367319013343376 ], [ -64.961435592020166, 18.367373663378316 ], [ -64.961491247883998, 18.367419931506106 ], [ -64.961637763621809, 18.367553202520924 ], [ -64.961743040376234, 18.367647247519699 ], [ -64.961806575232856, 18.367705585593797 ], [ -64.961871786470851, 18.367751184478607 ], [ -64.961937165347024, 18.367780521153804 ], [ -64.962086698571454, 18.367825111590491 ], [ -64.962194154621784, 18.367862831482512 ], [ -64.962281494094782, 18.367882948059844 ], [ -64.96241376059038, 18.367891497605171 ], [ -64.962563964367405, 18.367930389654589 ], [ -64.962762950844365, 18.368036000375639 ], [ -64.962823635852487, 18.368086459456947 ], [ -64.962926900949185, 18.368228616603062 ], [ -64.962985071385162, 18.368304725630139 ], [ -64.963075260706603, 18.368392231431642 ], [ -64.963133766418878, 18.368452079558722 ], [ -64.963135778076605, 18.368620891169712 ], [ -64.96307861346952, 18.368794061372455 ], [ -64.962967469380033, 18.36900059156585 ], [ -64.962845093534895, 18.369209802659896 ], [ -64.962798322492745, 18.36930736936938 ], [ -64.9627639566732, 18.369388841507373 ], [ -64.96273327889287, 18.369421698583608 ], [ -64.96270276875066, 18.36944332259452 ], [ -64.962634204749747, 18.369484227611281 ], [ -64.962527419252012, 18.369567542459208 ], [ -64.962462040375897, 18.369634765354931 ], [ -64.96242163958317, 18.369680027653828 ], [ -64.962388950145112, 18.369743562510394 ], [ -64.962386100296669, 18.369690925442853 ], [ -64.962422645412062, 18.369612972396226 ], [ -64.962438738673882, 18.369529823876803 ], [ -64.962480312933565, 18.369456733646018 ], [ -64.962521887193304, 18.369383643415233 ], [ -64.962568658235455, 18.369310720822568 ], [ -64.962615429277662, 18.369237630591783 ], [ -64.962651974393054, 18.369159678854828 ], [ -64.962652644945592, 18.369076362697285 ], [ -64.962617440935389, 18.368997909355585 ], [ -64.962607885561169, 18.368914593197985 ], [ -64.962613752896175, 18.36883144336889 ], [ -64.96261442344877, 18.36874829615914 ], [ -64.962594642147792, 18.368664978691925 ], [ -64.962564467281879, 18.368586356402375 ], [ -64.962534460054087, 18.368507901751002 ], [ -64.962499256043827, 18.368429279461452 ], [ -64.962474277960382, 18.368345964613525 ], [ -64.96239766732856, 18.368306234373392 ], [ -64.962310663131859, 18.368300702314684 ], [ -64.962228855717569, 18.368270695086892 ], [ -64.962182755227957, 18.368270358500922 ], [ -64.962141014639769, 18.36827723166482 ], [ -64.962056188429244, 18.368257954587932 ], [ -64.961984774579889, 18.368207495506624 ], [ -64.961899949679037, 18.368188049481887 ], [ -64.961815292416304, 18.368162399536175 ], [ -64.961730467515451, 18.368143122459287 ], [ -64.961659053666096, 18.368086293128499 ], [ -64.961587639816798, 18.368035834047134 ], [ -64.961496109390168, 18.368028959573564 ], [ -64.961404578963538, 18.368034491632329 ], [ -64.961319586424509, 18.368052596551877 ], [ -64.961254710462811, 18.367995936168882 ], [ -64.961255381015349, 18.367908595386155 ], [ -64.961242975792686, 18.367821089584709 ], [ -64.961243143430863, 18.367808684362046 ], [ -64.961184805356766, 18.367758225280681 ], [ -64.961171729581508, 18.367751855031202 ], [ -64.961106015429039, 18.367801308283674 ], [ -64.961027225501368, 18.367838187365692 ], [ -64.960961511348955, 18.367893844539196 ], [ -64.960895629558365, 18.367949500402972 ], [ -64.960823377518295, 18.367998784707652 ], [ -64.960750957840048, 18.368048239269797 ], [ -64.960704689712315, 18.368122670605715 ], [ -64.960736708597835, 18.368204141434035 ], [ -64.96072933251952, 18.368297683518392 ], [ -64.960741571413678, 18.368385024301119 ], [ -64.96073436166381, 18.368472362464445 ], [ -64.960733692420888, 18.368559703247172 ], [ -64.960700332430235, 18.368640503522897 ], [ -64.960692955042248, 18.368727844305567 ], [ -64.960692284489653, 18.36881518246895 ], [ -64.960691613937115, 18.36890252325162 ], [ -64.960671329721663, 18.368983492475195 ], [ -64.960690106503478, 18.36907099958637 ], [ -64.96068943464121, 18.369158337749695 ], [ -64.960688596450495, 18.369245678532366 ], [ -64.960694463785558, 18.369333016695748 ], [ -64.960693794542635, 18.369420357478418 ], [ -64.960692955042248, 18.369507695641801 ], [ -64.960679208714453, 18.369595036424471 ], [ -64.96063947847432, 18.369536361764403 ], [ -64.960569741006395, 18.369464109724333 ], [ -64.960502016505927, 18.36932614353185 ], [ -64.96043881561593, 18.36919119482593 ], [ -64.960353152524362, 18.369077034559552 ], [ -64.96029565264098, 18.368946610773833 ], [ -64.960275200787407, 18.368834294527005 ], [ -64.960225579896758, 18.368701523807317 ], [ -64.960151820423107, 18.368604127355297 ], [ -64.960066995522197, 18.36853472516367 ], [ -64.960022068499654, 18.368482254424634 ], [ -64.959944618367444, 18.368255272377667 ], [ -64.959832468449065, 18.368006497371937 ], [ -64.959734401444507, 18.367848917516596 ], [ -64.959609509717552, 18.367664180281906 ], [ -64.959420750477079, 18.367458991193644 ], [ -64.959337600647984, 18.367322532434741 ], [ -64.959281944784209, 18.367185070466348 ], [ -64.959211370435241, 18.366973511128606 ], [ -64.959156383814332, 18.366718533511573 ], [ -64.959129561711279, 18.366533293362465 ], [ -64.959092850267439, 18.36637504295453 ], [ -64.959031828673346, 18.366183264917822 ], [ -64.958990254413663, 18.366128782521002 ], [ -64.958947003772494, 18.366088717004573 ], [ -64.958872069522101, 18.366030043654177 ], [ -64.958804343711961, 18.36598796648002 ], [ -64.958729912375986, 18.365948739154362 ], [ -64.958679957518768, 18.365922419965727 ], [ -64.958632851200321, 18.365907164894622 ], [ -64.958530759570579, 18.365885707212215 ], [ -64.958352057309128, 18.365879169324558 ], [ -64.958082158587615, 18.365884701383322 ], [ -64.957919215621303, 18.365874307818387 ], [ -64.957807736255518, 18.365863914253453 ], [ -64.957725424617138, 18.36583357174942 ], [ -64.957432225503283, 18.36572125419292 ], [ -64.957374391653275, 18.365683200334274 ], [ -64.95731890342762, 18.365626706279727 ], [ -64.957242125157677, 18.365549592733487 ], [ -64.957178590301112, 18.365480358180037 ], [ -64.957117737654812, 18.365416152770877 ], [ -64.957059399580714, 18.365372399215289 ], [ -64.956934509163432, 18.365315402246324 ], [ -64.956832082257449, 18.365272151605154 ], [ -64.956742731126724, 18.365263266783529 ], [ -64.956674670040229, 18.365235438851641 ], [ -64.956627228445484, 18.365194535144497 ], [ -64.956569225647684, 18.365101998888974 ], [ -64.956524130986907, 18.364989513694354 ], [ -64.956526142644634, 18.364753143911344 ], [ -64.956557993892034, 18.364453071633591 ], [ -64.956539721334309, 18.36414461744863 ], [ -64.956503176218916, 18.363996090053035 ], [ -64.956411813430464, 18.363883269582118 ], [ -64.956279044020391, 18.363710099379375 ], [ -64.956108891304211, 18.36349250506845 ], [ -64.955897499604646, 18.3632145610257 ], [ -64.955622740686636, 18.362960087632757 ], [ -64.955293164095508, 18.362753388491569 ], [ -64.955134410773155, 18.362672083991697 ], [ -64.954913128423073, 18.362566305632527 ], [ -64.954716488880194, 18.362496566854929 ], [ -64.954574331734079, 18.362478964849856 ], [ -64.954509120496027, 18.362454154404531 ], [ -64.954436533179717, 18.362426661748884 ], [ -64.954393282538547, 18.362401180751021 ], [ -64.95435774325199, 18.362381231811867 ], [ -64.954331591701532, 18.362356756642839 ], [ -64.954326227280944, 18.362334293131539 ], [ -64.954324550899514, 18.362300094950172 ], [ -64.954341985266467, 18.362247288934839 ], [ -64.954356234508737, 18.362218622812179 ], [ -64.954373333599392, 18.362199010459051 ], [ -64.954413063839525, 18.362184927545229 ], [ -64.954456314480694, 18.362176377999901 ], [ -64.954542815762977, 18.362167996092694 ], [ -64.954620935138109, 18.362165984434967 ], [ -64.954731743951299, 18.362184759907109 ], [ -64.95484607316547, 18.362220634469907 ], [ -64.954948332433332, 18.362251982802832 ], [ -64.95504690366198, 18.362279643096599 ], [ -64.955092165960878, 18.362306968114069 ], [ -64.95513659006906, 18.362335969513026 ], [ -64.955241699185308, 18.362384584574784 ], [ -64.95543398013649, 18.362478126659084 ], [ -64.955759701050283, 18.362644758974227 ], [ -64.955914095780884, 18.362726063474099 ], [ -64.956118445368759, 18.362871908659372 ], [ -64.956275691257531, 18.362955057178795 ], [ -64.956402928608838, 18.362958074665357 ], [ -64.956578781021847, 18.362987578978732 ], [ -64.956700151038149, 18.363008533746722 ], [ -64.956867453905829, 18.36306184267653 ], [ -64.956980274376747, 18.36312286296095 ], [ -64.957050850035387, 18.363199473592772 ], [ -64.957129472324937, 18.363332243002787 ], [ -64.957178925577409, 18.363432658251043 ], [ -64.957190827885597, 18.363520835914812 ], [ -64.957189822056762, 18.363641032464045 ], [ -64.957167692512087, 18.363781010314256 ], [ -64.957136176540985, 18.363904727264526 ], [ -64.95714858307332, 18.364041184713756 ], [ -64.957202730193842, 18.364135732627005 ], [ -64.957256708366515, 18.364211505068056 ], [ -64.957309683329697, 18.364236315513381 ], [ -64.957402553551788, 18.364275542839096 ], [ -64.95748285353244, 18.364304041323578 ], [ -64.957570528281792, 18.364329187045143 ], [ -64.95764009811154, 18.364336730761636 ], [ -64.957738836978365, 18.364332372169883 ], [ -64.957788290230837, 18.364332707446181 ], [ -64.957846963581233, 18.364329689959618 ], [ -64.957936649988255, 18.364318122927671 ], [ -64.958028348053062, 18.364301359113256 ], [ -64.958140161385415, 18.364293480120466 ], [ -64.958286846071076, 18.364259617215396 ], [ -64.95838223217504, 18.364220222251561 ], [ -64.958452137281085, 18.364185688793896 ], [ -64.958594125479351, 18.364068006816808 ], [ -64.958663361342531, 18.363960718404655 ], [ -64.958735779711049, 18.363829122461595 ], [ -64.958799651153583, 18.363713452142235 ], [ -64.958875926509108, 18.363621921715605 ], [ -64.959070051479841, 18.363367782289345 ], [ -64.959124867843286, 18.363243730062777 ], [ -64.959182704312639, 18.363125042256797 ], [ -64.959200641594009, 18.363006019174577 ], [ -64.959194940587452, 18.362880793480997 ], [ -64.959208688224919, 18.362791946574362 ], [ -64.959210698572974, 18.362723884178195 ], [ -64.959211201487449, 18.362668229624092 ], [ -64.959261660568757, 18.362566974875449 ], [ -64.959305918348434, 18.362496400526481 ], [ -64.959319663366614, 18.362422806071606 ], [ -64.959336428490644, 18.362325575948091 ], [ -64.959325699649469, 18.362232369140031 ], [ -64.959313125478957, 18.362155758508209 ], [ -64.959293345487652, 18.362092895513854 ], [ -64.959253278661549, 18.362010583875474 ], [ -64.959211536763689, 18.361943528617871 ], [ -64.959148504821599, 18.361819308753184 ], [ -64.959095363529912, 18.361728448879148 ], [ -64.959014563254186, 18.361634571518493 ], [ -64.958923366794181, 18.361567180984594 ], [ -64.958849104406056, 18.361552596466083 ], [ -64.958684148472344, 18.36143592162756 ], [ -64.958650956119868, 18.361394010781851 ], [ -64.958635364462793, 18.361346570496778 ], [ -64.958621284168373, 18.361281022672813 ], [ -64.958592784374218, 18.361200222397088 ], [ -64.958507959473366, 18.361068792782532 ], [ -64.958350548565818, 18.360918756643628 ], [ -64.958289694609846, 18.36086544771382 ], [ -64.958183916250675, 18.360644837226005 ], [ -64.958133457169311, 18.360569232423074 ], [ -64.958103282303398, 18.360481053449632 ], [ -64.958077801305535, 18.360325654199812 ], [ -64.95803203609222, 18.360229597543309 ], [ -64.958005046351047, 18.360120631440054 ], [ -64.958002196502548, 18.359953665158287 ], [ -64.957974199622868, 18.359748977674769 ], [ -64.957925753508903, 18.359596428273449 ], [ -64.957880323571885, 18.359465670521104 ], [ -64.957829695542728, 18.359347819596223 ], [ -64.957656022425567, 18.359197280542901 ], [ -64.957488888505623, 18.359141625988741 ], [ -64.957352263418272, 18.359041881293081 ], [ -64.95722083511339, 18.358911457507361 ], [ -64.957132825087797, 18.358805008595596 ], [ -64.957056214455974, 18.358683972545975 ], [ -64.956995026533434, 18.358572997404281 ], [ -64.956938029564469, 18.358465708992128 ], [ -64.95689762746207, 18.358353725402253 ], [ -64.956908189974854, 18.358204696401913 ], [ -64.956914727862454, 18.358165132490285 ], [ -64.956927133085117, 18.35816630726697 ], [ -64.957073481184807, 18.358232524333857 ], [ -64.95726106826794, 18.358320031445032 ], [ -64.957298954488465, 18.358360767514 ], [ -64.95735209447048, 18.358448106986998 ], [ -64.957402219585219, 18.358508791995177 ], [ -64.957443123292308, 18.358564446549281 ], [ -64.957464413336595, 18.358622785933051 ], [ -64.957482518256199, 18.358682297474218 ], [ -64.957489391420097, 18.35871884258961 ], [ -64.957494252926267, 18.358747507402541 ], [ -64.957587795010625, 18.358830321955338 ], [ -64.957643115598103, 18.358896874298523 ], [ -64.95771201356564, 18.358942807149958 ], [ -64.957844784285385, 18.359025954359709 ], [ -64.957952743250075, 18.359101728110488 ], [ -64.958028849657808, 18.359151684277379 ], [ -64.958108645414313, 18.359259978518423 ], [ -64.958206715038273, 18.359403978374417 ], [ -64.95828114637419, 18.359536915422609 ], [ -64.958369994590498, 18.359680916588331 ], [ -64.958511481184019, 18.359927009383739 ], [ -64.958546851522783, 18.360040332769074 ], [ -64.958538806201489, 18.360120800387847 ], [ -64.958525395149991, 18.360236301759414 ], [ -64.958538303287071, 18.360299670287532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_623", "STUDY_TYP": "NP", "FLD_ZONE": "A", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.969354146080491, 18.347889084520546 ], [ -64.969345596535106, 18.348085891701601 ], [ -64.969351128593871, 18.348245147938428 ], [ -64.969371246480819, 18.348469615413251 ], [ -64.969422542443226, 18.348567348451184 ], [ -64.969503008752326, 18.348656867220086 ], [ -64.969563693760449, 18.348734482371071 ], [ -64.969601244704734, 18.348807573911529 ], [ -64.969622031834604, 18.348943696084461 ], [ -64.969632425399539, 18.349024162393619 ], [ -64.969644999569994, 18.349111837142914 ], [ -64.969639633839734, 18.349202529378829 ], [ -64.969642483688176, 18.349269919912672 ], [ -64.969636783991234, 18.349325408138384 ], [ -64.969622031834604, 18.349358265214562 ], [ -64.969593030435647, 18.349376873048584 ], [ -64.969555982405836, 18.349372179180534 ], [ -64.969520275481159, 18.349337644413197 ], [ -64.969502170561611, 18.349297747844616 ], [ -64.969484234589913, 18.349224489975654 ], [ -64.969436456409198, 18.349117033925381 ], [ -64.969385160446791, 18.349029191537909 ], [ -64.969340735028936, 18.348942690255626 ], [ -64.969310895439321, 18.348858032992894 ], [ -64.969256749628471, 18.348746385988989 ], [ -64.969181981706583, 18.348678324902551 ], [ -64.969147783525216, 18.348616131151118 ], [ -64.969123978908783, 18.348548572979041 ], [ -64.969067484854236, 18.348387807998961 ], [ -64.969058600032611, 18.348209776290048 ], [ -64.969034963054298, 18.34799721112347 ], [ -64.969008643865664, 18.347678698649872 ], [ -64.968969751816303, 18.347540732457333 ], [ -64.968908900479676, 18.347390696318485 ], [ -64.968855925516493, 18.347269158664062 ], [ -64.96878099257583, 18.347175784217825 ], [ -64.968700524957001, 18.347110740618007 ], [ -64.968593236544848, 18.347037650387222 ], [ -64.968461472963668, 18.346959195735792 ], [ -64.968286795327288, 18.346867665309162 ], [ -64.96810121859221, 18.346765741317654 ], [ -64.967900555733877, 18.346688460133237 ], [ -64.967662844845677, 18.346548314644849 ], [ -64.967504260471117, 18.346474889137767 ], [ -64.967358581614292, 18.346450581606916 ], [ -64.967181054129469, 18.346361565752431 ], [ -64.967039064621531, 18.346228963980536 ], [ -64.966950382733671, 18.346174147617148 ], [ -64.966843932512234, 18.346126537074554 ], [ -64.966689539091249, 18.345998126256234 ], [ -64.966561966463701, 18.345920845071873 ], [ -64.966478481358308, 18.345889999653366 ], [ -64.966331799291993, 18.345883629403886 ], [ -64.966219984649911, 18.345911122059533 ], [ -64.966113868395098, 18.345936939643366 ], [ -64.965992667326645, 18.345990917816039 ], [ -64.965867441633065, 18.346080604223118 ], [ -64.965792338434881, 18.346156209026049 ], [ -64.96577155261474, 18.346200465496054 ], [ -64.96573902950513, 18.346317309282426 ], [ -64.965706172428895, 18.346466171954319 ], [ -64.965655044104665, 18.346619896132324 ], [ -64.965541553081152, 18.346747804036227 ], [ -64.965438455622575, 18.346893146307082 ], [ -64.965373747298997, 18.347014348685207 ], [ -64.965290597469902, 18.347254574145552 ], [ -64.965289928227037, 18.347339734322702 ], [ -64.96531691796821, 18.34744467580083 ], [ -64.96534742811042, 18.347585156565515 ], [ -64.965409621861852, 18.347690265681763 ], [ -64.9654567281803, 18.347834434485605 ], [ -64.965502324445765, 18.347950104804966 ], [ -64.965579270353885, 18.348110366870628 ], [ -64.965674153543375, 18.348329469924863 ], [ -64.965807593505986, 18.348587800304756 ], [ -64.96591957709586, 18.348758958849771 ], [ -64.966018651238983, 18.348912347751536 ], [ -64.966069445596588, 18.349013265914209 ], [ -64.966105989402308, 18.349129606786164 ], [ -64.966117725382105, 18.349296574377604 ], [ -64.966103476139835, 18.349486676032882 ], [ -64.966097104580683, 18.349532441246197 ], [ -64.966083693529185, 18.34957669640653 ], [ -64.966061062379765, 18.349620786548087 ], [ -64.966045976256453, 18.349638556191337 ], [ -64.965964167532491, 18.349646770460424 ], [ -64.96594204060716, 18.349632353580034 ], [ -64.965906836596957, 18.349605531476982 ], [ -64.965875655902153, 18.349562616112109 ], [ -64.965874313487348, 18.34949522557821 ], [ -64.965867441633065, 18.349407886105212 ], [ -64.965857718620725, 18.349259023433319 ], [ -64.965817988380593, 18.349130947891297 ], [ -64.965783622561105, 18.349020641992581 ], [ -64.96572494921071, 18.348913688856726 ], [ -64.96563492752739, 18.348795839241461 ], [ -64.965513389872967, 18.348660052344826 ], [ -64.965402916336075, 18.348545723130599 ], [ -64.965300154153795, 18.348379761368051 ], [ -64.965216335081777, 18.348182115996281 ], [ -64.965185824939567, 18.348057728493416 ], [ -64.96512748686547, 18.347913559689573 ], [ -64.965033944781112, 18.347777940431115 ], [ -64.964961525102922, 18.34770987934462 ], [ -64.964869324123697, 18.347625724996362 ], [ -64.964794054597064, 18.34751877186045 ], [ -64.964707553314781, 18.3474205359081 ], [ -64.964628092834516, 18.34737544124738 ], [ -64.964587189127371, 18.34736454476797 ], [ -64.964553493860421, 18.347396228377193 ], [ -64.964532874368729, 18.347422715203948 ], [ -64.964512087238859, 18.347463283634795 ], [ -64.964516948745029, 18.347545091049085 ], [ -64.964518122212041, 18.34762136640461 ], [ -64.964506890456391, 18.347693953720977 ], [ -64.964501190759506, 18.347767043951762 ], [ -64.964488785536844, 18.34782387328255 ], [ -64.964474536294574, 18.347900148638075 ], [ -64.964434303140024, 18.348020177549188 ], [ -64.964358530698973, 18.348139368269585 ], [ -64.964320141563974, 18.348232407439468 ], [ -64.964288960869169, 18.348303653650703 ], [ -64.964265994443451, 18.348394513524738 ], [ -64.964269347206312, 18.348522421428584 ], [ -64.964306730512476, 18.348617639894371 ], [ -64.964357189593784, 18.348781422361071 ], [ -64.964384682249431, 18.348858871183609 ], [ -64.964429441633854, 18.349018630334854 ], [ -64.964444696704959, 18.349100270110966 ], [ -64.964453916802881, 18.349148885172724 ], [ -64.964458609361259, 18.349184758425849 ], [ -64.964439332284371, 18.349264220215787 ], [ -64.964423574298792, 18.349324905223909 ], [ -64.964364900948397, 18.349408389019629 ], [ -64.964262138766173, 18.349479132316389 ], [ -64.964179493161168, 18.349580887360162 ], [ -64.964137583625131, 18.349694378383617 ], [ -64.964071869472718, 18.349819102472452 ], [ -64.964033815614016, 18.34988230205272 ], [ -64.963990900249144, 18.349927564351617 ], [ -64.963923677353421, 18.35003434853968 ], [ -64.963844887425751, 18.350092185009032 ], [ -64.963737096099123, 18.350135268012025 ], [ -64.963675740538463, 18.350155887503718 ], [ -64.963594771314888, 18.350190253323262 ], [ -64.963566272830406, 18.350210705176835 ], [ -64.963526542590273, 18.350267031593205 ], [ -64.96351246098618, 18.350340120514318 ], [ -64.963504581993391, 18.35046685626088 ], [ -64.963490500389298, 18.350513962579328 ], [ -64.963474910041896, 18.350552854628745 ], [ -64.963454290550203, 18.350567271509135 ], [ -64.963426965532733, 18.350570288995698 ], [ -64.963411878099805, 18.350549166589587 ], [ -64.963386397101885, 18.350498204593805 ], [ -64.963367453991623, 18.350361747144575 ], [ -64.963373153688508, 18.35028379540762 ], [ -64.963399472877143, 18.350200982164495 ], [ -64.963435515078061, 18.350157396247027 ], [ -64.963538444898518, 18.350076929937927 ], [ -64.963607008899373, 18.350017249448968 ], [ -64.963683787169373, 18.349998307648377 ], [ -64.963771294280491, 18.349932258219667 ], [ -64.963827955973215, 18.349864363461677 ], [ -64.963868021489589, 18.349767134647777 ], [ -64.963914624893619, 18.349484664375154 ], [ -64.963989559144011, 18.349334125321832 ], [ -64.964042365159344, 18.349275954885854 ], [ -64.964080251379926, 18.349224153389741 ], [ -64.964114617199414, 18.349186939031426 ], [ -64.964128698803506, 18.349134971206752 ], [ -64.964125681316943, 18.349094402775904 ], [ -64.964120987448894, 18.349034053044079 ], [ -64.964081089570641, 18.348931458499976 ], [ -64.964000623261484, 18.348781087084774 ], [ -64.963926862478161, 18.348629374564496 ], [ -64.963897358164786, 18.348492581838968 ], [ -64.963889479172053, 18.348229054676608 ], [ -64.963957372620371, 18.348047502566658 ], [ -64.963976483368754, 18.34799402599873 ], [ -64.964031468679991, 18.347935855562753 ], [ -64.964081760123179, 18.347838625439238 ], [ -64.964130039908696, 18.347757656215663 ], [ -64.964142780407599, 18.347657073329287 ], [ -64.964126687145779, 18.347515922012008 ], [ -64.964077569169604, 18.347296483681532 ], [ -64.964015710694468, 18.347077045351057 ], [ -64.963952846390441, 18.346966907090405 ], [ -64.963903225499848, 18.346808321406229 ], [ -64.963802139698998, 18.346698015507457 ], [ -64.963612038043721, 18.346574801471604 ], [ -64.963498044105791, 18.346488803103739 ], [ -64.96338539127305, 18.346244386689762 ], [ -64.963310457022658, 18.346061325836558 ], [ -64.9631205230055, 18.345913805579471 ], [ -64.962941653105872, 18.345949009589731 ], [ -64.962787426013392, 18.346118155167346 ], [ -64.962669911674425, 18.346445887738867 ], [ -64.962578548885972, 18.346700865355899 ], [ -64.962538315731422, 18.346943940664687 ], [ -64.962485677354152, 18.347126163327232 ], [ -64.962369336482254, 18.34733219060621 ], [ -64.962279147160757, 18.347440987761672 ], [ -64.962048979989049, 18.347524471557392 ], [ -64.961972536995404, 18.347523801004797 ], [ -64.961806910509097, 18.347522627537785 ], [ -64.961705321793886, 18.347473006647135 ], [ -64.961591160217779, 18.347423553394663 ], [ -64.961442632822184, 18.347339734322702 ], [ -64.961283208947293, 18.347226578575487 ], [ -64.961197713493846, 18.347201432853865 ], [ -64.961097130607413, 18.34721350280023 ], [ -64.960953799994286, 18.34731140347634 ], [ -64.960788508784333, 18.347368735721602 ], [ -64.960590360498088, 18.347428079624592 ], [ -64.96044820335203, 18.347482562021355 ], [ -64.96026044863072, 18.347549617278958 ], [ -64.960153998409282, 18.347600076360322 ], [ -64.959999603678682, 18.347665622874615 ], [ -64.959869348840755, 18.347697306483838 ], [ -64.959734567773012, 18.34773083411261 ], [ -64.959646054832945, 18.34775782385384 ], [ -64.959559219584037, 18.347783137213582 ], [ -64.959486967543967, 18.347802415600142 ], [ -64.959427454693184, 18.347820352881513 ], [ -64.959382361342136, 18.347829237703138 ], [ -64.959334918437719, 18.34783996654437 ], [ -64.959274568705837, 18.347837787248523 ], [ -64.959194271344529, 18.347840637096965 ], [ -64.959083127255099, 18.347851868852615 ], [ -64.959020933503666, 18.347840134182547 ], [ -64.958972318441909, 18.347832087551637 ], [ -64.958938958451256, 18.347827393683588 ], [ -64.958921187498333, 18.347808450573325 ], [ -64.958917668406968, 18.34779805700839 ], [ -64.958935773326516, 18.347786154700145 ], [ -64.958978353415091, 18.34777257601047 ], [ -64.959017076516659, 18.347770396714623 ], [ -64.959078433387049, 18.347761679531118 ], [ -64.959216567217709, 18.347750280137348 ], [ -64.959288651619602, 18.347736701447673 ], [ -64.959339947582009, 18.347723290396175 ], [ -64.959399460432792, 18.347705353114748 ], [ -64.959454110467732, 18.34769194206325 ], [ -64.959518483515069, 18.347674172419943 ], [ -64.959563576866117, 18.347656067500395 ], [ -64.959632643781447, 18.347632095245842 ], [ -64.959743787870934, 18.347582474355193 ], [ -64.959850070454195, 18.347534194569732 ], [ -64.959957023590107, 18.34749915819765 ], [ -64.960028772715702, 18.34745289006986 ], [ -64.960193561011295, 18.34736605351128 ], [ -64.960310907712085, 18.347304195036145 ], [ -64.96042004145346, 18.3472567534414 ], [ -64.96051090001788, 18.347211658780679 ], [ -64.96062975546198, 18.34712817498496 ], [ -64.960840979523368, 18.346981323970795 ], [ -64.961229900017486, 18.346812344721684 ], [ -64.961383791833669, 18.346748306950644 ], [ -64.961483536529329, 18.346676893101289 ], [ -64.961546903747774, 18.346583853931406 ], [ -64.961594010066221, 18.346509254957311 ], [ -64.961650839397066, 18.346414707044119 ], [ -64.961692078380509, 18.346281769995926 ], [ -64.961721247417529, 18.346070713572601 ], [ -64.961746896053569, 18.345870218352388 ], [ -64.961767515545262, 18.345701909655816 ], [ -64.961754439770061, 18.345542485780868 ], [ -64.961717056463954, 18.345410554561511 ], [ -64.961673136579861, 18.345290694598248 ], [ -64.961549585958096, 18.345107464797195 ], [ -64.961449842572051, 18.344968828052117 ], [ -64.961298631656518, 18.344825329800813 ], [ -64.961033931027146, 18.34470496561346 ], [ -64.960792532099788, 18.344617961416702 ], [ -64.960449544457163, 18.344481337639024 ], [ -64.96020747497721, 18.344455184778894 ], [ -64.959889131451462, 18.344428362675842 ], [ -64.959590566607289, 18.34451084064267 ], [ -64.959264510417199, 18.34464411296716 ], [ -64.959023783352109, 18.344781911521522 ], [ -64.958876932337944, 18.344866065869837 ], [ -64.958746508552281, 18.344923230476923 ], [ -64.958682973695659, 18.34491384274088 ], [ -64.958600832314801, 18.344852319541985 ], [ -64.958597479551941, 18.34477084740405 ], [ -64.958639052501951, 18.34465869748567 ], [ -64.958757741617603, 18.34455107379722 ], [ -64.958859833247288, 18.344474295527277 ], [ -64.958966283468726, 18.34438595153506 ], [ -64.959064519421077, 18.344282014576095 ], [ -64.959161580596799, 18.344194842741217 ], [ -64.959285297547069, 18.344097612617702 ], [ -64.959380517322529, 18.344042794944642 ], [ -64.959459808855001, 18.344011781888014 ], [ -64.959517645324354, 18.343976577877754 ], [ -64.959571120582609, 18.343934334375149 ], [ -64.959604649521054, 18.343885216398974 ], [ -64.959576486312869, 18.343812292496636 ], [ -64.959518148238772, 18.343730820358644 ], [ -64.959455451572921, 18.343667117863959 ], [ -64.959379845460319, 18.343597884620124 ], [ -64.959317148794412, 18.343543903828106 ], [ -64.959240539472319, 18.343459581841671 ], [ -64.959145991559069, 18.343416332510174 ], [ -64.958999643459379, 18.343384982867576 ], [ -64.958848432543789, 18.343408453517384 ], [ -64.958788753364558, 18.343421864568938 ], [ -64.958762603123773, 18.343428402456539 ], [ -64.958702419720396, 18.343407446378876 ], [ -64.958633689391036, 18.343376602270041 ], [ -64.958609380550456, 18.343351790515044 ], [ -64.958585912519993, 18.343274175364058 ], [ -64.958594294427201, 18.343259589535876 ], [ -64.958695380227994, 18.343215165427694 ], [ -64.958782215476958, 18.343143082335473 ], [ -64.958876260475733, 18.343070996623851 ], [ -64.958955722265671, 18.343024897443911 ], [ -64.959017748378926, 18.343003438451831 ], [ -64.959073739518999, 18.343006623576571 ], [ -64.959152695775174, 18.343033279351118 ], [ -64.959236851433161, 18.343104022647935 ], [ -64.959342629792332, 18.343167891471126 ], [ -64.959533234362027, 18.343246347432171 ], [ -64.959676901561124, 18.343335195648478 ], [ -64.959732557424957, 18.343385150505696 ], [ -64.959822577798604, 18.343446170790116 ], [ -64.959994071619917, 18.343561505833236 ], [ -64.960095661644857, 18.343621352650644 ], [ -64.960158189362858, 18.343699976249809 ], [ -64.96036991764845, 18.343838948271184 ], [ -64.960568233572758, 18.343999711941649 ], [ -64.960708042475176, 18.344140864568544 ], [ -64.960859419719213, 18.34425871287408 ], [ -64.961028232639933, 18.344364324904802 ], [ -64.961138201952735, 18.344425849413369 ], [ -64.961294609650736, 18.344481671605649 ], [ -64.961424695540813, 18.344516875615852 ], [ -64.961638098898106, 18.34451234938598 ], [ -64.961753769217466, 18.344481168691175 ], [ -64.961845634920394, 18.344432888905715 ], [ -64.961928112887222, 18.344369856963567 ], [ -64.962083345808594, 18.344312189442064 ], [ -64.962043280292164, 18.344344712551674 ], [ -64.962015619998397, 18.344378741785192 ], [ -64.962008076281904, 18.344437919359734 ], [ -64.962004555880924, 18.344509165570912 ], [ -64.962011261406644, 18.344563981934357 ], [ -64.962032383812812, 18.344620475988847 ], [ -64.962075802092102, 18.344663057387095 ], [ -64.962117879266259, 18.344685351950602 ], [ -64.962248637018547, 18.344708653652617 ], [ -64.962390458888365, 18.344708653652617 ], [ -64.962454329021227, 18.344745032439505 ], [ -64.962610735409612, 18.34478073805451 ], [ -64.962732775978452, 18.344752574846325 ], [ -64.962982556813017, 18.344642939500147 ], [ -64.96347071908832, 18.344549732692087 ], [ -64.963811695073218, 18.344755927609185 ], [ -64.963940776444076, 18.345101263495508 ], [ -64.964043706264533, 18.34523537270104 ], [ -64.964233975557931, 18.345452631735668 ], [ -64.964284937553714, 18.345540138846843 ], [ -64.964332379148459, 18.345789584405111 ], [ -64.964353501554626, 18.345834008513293 ], [ -64.964492976490419, 18.345854460366866 ], [ -64.964554834965554, 18.345745830849523 ], [ -64.964734375417777, 18.345514491520476 ], [ -64.964954651939024, 18.34541038692339 ], [ -64.965140730278847, 18.345250124857728 ], [ -64.965199235991122, 18.345149709609473 ], [ -64.965288922398145, 18.345077626517195 ], [ -64.965449687378225, 18.344974527749002 ], [ -64.965607099595445, 18.344973355591662 ], [ -64.965978081498463, 18.344942342535035 ], [ -64.966260719409263, 18.34483052658328 ], [ -64.966498096330838, 18.344684513759887 ], [ -64.966715355365466, 18.344506649689095 ], [ -64.966993802322634, 18.344514863958125 ], [ -64.967240230394282, 18.344571358012672 ], [ -64.967411890544099, 18.34468417848359 ], [ -64.967499734241244, 18.34482063593282 ], [ -64.967537117547351, 18.34519178678363 ], [ -64.967724535682635, 18.345338470159618 ], [ -64.967753872357832, 18.345377697485333 ], [ -64.967753538391264, 18.345423797974888 ], [ -64.967723194577502, 18.345528068900478 ], [ -64.96773694221497, 18.345583557126133 ], [ -64.967888822373425, 18.345635692588928 ], [ -64.968031482434014, 18.345580874915811 ], [ -64.968087807540712, 18.345532930406648 ], [ -64.96817229847494, 18.345302764544613 ], [ -64.96820079564975, 18.345073266615827 ], [ -64.968205155551175, 18.344847794621785 ], [ -64.968191575551828, 18.34464411296716 ], [ -64.968194760676568, 18.344465244377204 ], [ -64.968328535915475, 18.344371199378429 ], [ -64.968367429274565, 18.344276985431804 ], [ -64.968383019621967, 18.344223676501997 ], [ -64.96839341187723, 18.344197189675242 ], [ -64.968444207544508, 18.344185456314847 ], [ -64.968553338666595, 18.344191826564327 ], [ -64.968541102391725, 18.344221329567972 ], [ -64.968460802411073, 18.344465579653502 ], [ -64.968394417706065, 18.34465852984755 ], [ -64.968387376904047, 18.344857013410035 ], [ -64.96838553288444, 18.345065890537455 ], [ -64.968418892875093, 18.34528013208552 ], [ -64.96849785044094, 18.345490015041776 ], [ -64.968628272916931, 18.345751196579783 ], [ -64.968707902345045, 18.345921850900709 ], [ -64.968749476604728, 18.346113126023056 ], [ -64.968813177789798, 18.346237345887744 ], [ -64.968900852539093, 18.346408169156462 ], [ -64.968973439855461, 18.346540435652116 ], [ -64.969032280843976, 18.346647388787972 ], [ -64.969152645031386, 18.346785354980454 ], [ -64.969291617052761, 18.346921309515267 ], [ -64.969332856036203, 18.346986856029559 ], [ -64.969372418638159, 18.34708324796236 ], [ -64.969372587586008, 18.347202773959054 ], [ -64.969354481356788, 18.347305368503157 ], [ -64.969326988701141, 18.34753620622746 ], [ -64.969347775831011, 18.34768892457663 ], [ -64.969354146080491, 18.347889084520546 ] ] ] ] } } +] +} diff --git a/data/AE.geojson b/data/AE.geojson new file mode 100644 index 0000000..f10660a --- /dev/null +++ b/data/AE.geojson @@ -0,0 +1,109 @@ +{ +"type": "FeatureCollection", +"name": "AE", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4269" } }, +"features": [ +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_552", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.921272349114588, 18.322388141622469 ], [ -64.921220716566211, 18.322487551041831 ], [ -64.92117880703023, 18.322543206905664 ], [ -64.921129521415878, 18.322658206672429 ], [ -64.921118457298405, 18.322740517001137 ], [ -64.921110745943736, 18.322822827329844 ], [ -64.921116948555095, 18.322905305296672 ], [ -64.921133544731333, 18.322987783263557 ], [ -64.921174280800358, 18.323063890980904 ], [ -64.921195570844645, 18.323126755284932 ], [ -64.921133544731333, 18.323066573191227 ], [ -64.921055760632555, 18.323017455215052 ], [ -64.92102139481301, 18.322938665287325 ], [ -64.92101820968827, 18.322852834557636 ], [ -64.92101502456353, 18.322767003827892 ], [ -64.92101971843158, 18.322681005460026 ], [ -64.921032123654243, 18.322599030407616 ], [ -64.921052407869638, 18.322517055355206 ], [ -64.921130862521068, 18.322480342601636 ], [ -64.921213172849718, 18.322451173564616 ], [ -64.921272349114588, 18.322388141622469 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_233", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 5.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.94515876904785, 18.335190496422229 ], [ -64.945230182897149, 18.335259229370934 ], [ -64.945296567602213, 18.335323768746719 ], [ -64.945363119945341, 18.335381771544576 ], [ -64.945422799124628, 18.335446144591856 ], [ -64.945489183829636, 18.335504147389656 ], [ -64.945562441698598, 18.335555947576154 ], [ -64.945634693738668, 18.335606406657519 ], [ -64.945624300173733, 18.335688716986226 ], [ -64.945575852750096, 18.335761639578834 ], [ -64.945403353099948, 18.335741859587529 ], [ -64.945327077744423, 18.335695591459796 ], [ -64.945279636149678, 18.335621829366744 ], [ -64.945242085205393, 18.335539183761739 ], [ -64.945213921997208, 18.335456539466463 ], [ -64.945205204813703, 18.335355787632238 ], [ -64.945167653869476, 18.335272974389113 ], [ -64.94515876904785, 18.335190496422229 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1066", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": "FLOODWAY", "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.877994221855317, 18.318468092572857 ], [ -64.877990030901742, 18.31856062751865 ], [ -64.877949127194597, 18.318652997445668 ], [ -64.877864302293744, 18.318783418612043 ], [ -64.87772231278575, 18.318957259367323 ], [ -64.877599936940612, 18.319068069490186 ], [ -64.877521314651119, 18.319139984944286 ], [ -64.877456606327542, 18.319139482029868 ], [ -64.877372954893644, 18.319118191985581 ], [ -64.877356861631824, 18.319035714018753 ], [ -64.877369602130784, 18.318953403690045 ], [ -64.877377481123574, 18.318871093361338 ], [ -64.877390221622477, 18.31878878303263 ], [ -64.877371781426632, 18.318706137427625 ], [ -64.877346132790649, 18.318625838756645 ], [ -64.877349317915332, 18.318541181493913 ], [ -64.877280251, 18.318490219498187 ], [ -64.877196599566162, 18.318464404533643 ], [ -64.877110433560176, 18.318447639409612 ], [ -64.877023429363419, 18.318437413482798 ], [ -64.876977664150104, 18.318429703437857 ], [ -64.876887642466784, 18.318421824445068 ], [ -64.876797285507166, 18.318442611574937 ], [ -64.876764763707229, 18.318469936592408 ], [ -64.876567285973579, 18.318434397305907 ], [ -64.876464859067596, 18.318390977716945 ], [ -64.876378022509016, 18.318318894624667 ], [ -64.876291353588556, 18.318230212736808 ], [ -64.876214910594911, 18.318157122506022 ], [ -64.876132767904323, 18.318073975296272 ], [ -64.876066718475613, 18.318007590591264 ], [ -64.876036712557493, 18.317995520644899 ], [ -64.87602883356476, 18.317966351607822 ], [ -64.87599798683658, 18.317850513650342 ], [ -64.875990946034506, 18.317676671585332 ], [ -64.875996813369568, 18.317557648503112 ], [ -64.876732074269171, 18.317732327449164 ], [ -64.876916140951266, 18.317861576458142 ], [ -64.877097860699337, 18.317928465387297 ], [ -64.877256781659867, 18.317978587882692 ], [ -64.877454762307934, 18.318027705858867 ], [ -64.8776146890973, 18.318090402524717 ], [ -64.877795905930952, 18.318200540785313 ], [ -64.877869499076212, 18.318255527406222 ], [ -64.877920125795697, 18.318321241558692 ], [ -64.877958012016222, 18.318391145355065 ], [ -64.877994221855317, 18.318468092572857 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_321", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": "FLOODWAY", "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.87573295093091, 18.317495119475382 ], [ -64.875732280378315, 18.317573072522009 ], [ -64.87573647264162, 18.317598218243631 ], [ -64.87569808350662, 18.317533174643756 ], [ -64.875693892553045, 18.317485731739339 ], [ -64.87573295093091, 18.317495119475382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_627", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.868090664531906, 18.346960536840982 ], [ -64.868076415289693, 18.346889122991627 ], [ -64.868077253480408, 18.346803459900002 ], [ -64.868077924032946, 18.346717796808434 ], [ -64.868078762223661, 18.346632133716867 ], [ -64.868078762223661, 18.346624925276672 ], [ -64.868064680619568, 18.346539262185104 ], [ -64.868042887660863, 18.346453431455359 ], [ -64.867976167679558, 18.346395763933799 ], [ -64.867916991414745, 18.346331055610221 ], [ -64.867857815149875, 18.346266347286644 ], [ -64.86779092753045, 18.346208679765141 ], [ -64.867754382415058, 18.346129889837414 ], [ -64.867732589456352, 18.346043891469549 ], [ -64.867688500624467, 18.345972309982074 ], [ -64.867621613004985, 18.345914642460514 ], [ -64.86754735061686, 18.345864015741029 ], [ -64.867502925199062, 18.345843396249336 ], [ -64.867577859449398, 18.345799977970046 ], [ -64.867667713494598, 18.345779358478353 ], [ -64.867750191461425, 18.345751530546409 ], [ -64.867840045506625, 18.34573795185679 ], [ -64.867929899551825, 18.345724373167116 ], [ -64.868019753597025, 18.345703753675366 ], [ -64.868109607642168, 18.345690174985748 ], [ -64.868199294049248, 18.345683804736268 ], [ -64.868288812818093, 18.345705932971271 ], [ -64.868378163948876, 18.345742310448486 ], [ -64.868467682717778, 18.345764438683489 ], [ -64.868557369124801, 18.345765109236083 ], [ -64.868647223170001, 18.345744489744391 ], [ -64.868729868775006, 18.345709453372308 ], [ -64.868819555182029, 18.345703083122828 ], [ -64.868909409227228, 18.345696712873348 ], [ -64.868999095634251, 18.345697383425886 ], [ -64.869096325757766, 18.345683972374388 ], [ -64.869201099597774, 18.345677602124908 ], [ -64.869290786004797, 18.345664023435234 ], [ -64.869380640049997, 18.34565765318581 ], [ -64.869470326457019, 18.345651282936331 ], [ -64.869567556580535, 18.345644912686851 ], [ -64.869657242987614, 18.345645584549118 ], [ -64.869746929394637, 18.345653463541851 ], [ -64.869836448163539, 18.345668549665163 ], [ -64.869926134570562, 18.345669220217701 ], [ -64.870008780175567, 18.345634183845618 ], [ -64.870061753829077, 18.345563272910738 ], [ -64.870099807687723, 18.345485153535606 ], [ -64.870137861546425, 18.345406866522353 ], [ -64.87013869973714, 18.345321203430785 ], [ -64.870154290084542, 18.345235707977338 ], [ -64.870214807454545, 18.345164797042401 ], [ -64.870267781108055, 18.345086677667325 ], [ -64.870357635153198, 18.345066059485305 ], [ -64.870447489198398, 18.345059687926152 ], [ -64.870515215008595, 18.345003027543157 ], [ -64.870590316897108, 18.34496078142115 ], [ -64.87066541878562, 18.344918705556722 ], [ -64.870755105192643, 18.344926584549455 ], [ -64.870769354434913, 18.34501224764108 ], [ -64.870768516244141, 18.345097909422975 ], [ -64.870790141564726, 18.34518374015272 ], [ -64.870804390806995, 18.345269570882408 ], [ -64.87080355261628, 18.345355233974033 ], [ -64.870825177936865, 18.345441064703721 ], [ -64.870839427179078, 18.345526727795345 ], [ -64.870883683649083, 18.345598476920941 ], [ -64.870950403630388, 18.345656144442501 ], [ -64.871024834966363, 18.345699562721791 ], [ -64.871099097354488, 18.345743148639201 ], [ -64.871180906078393, 18.345793775358686 ], [ -64.871150228298063, 18.345871894733818 ], [ -64.871075126409551, 18.345928388788366 ], [ -64.871051823397863, 18.346013884241813 ], [ -64.870984098897338, 18.346070545934481 ], [ -64.870894244852138, 18.346091165426174 ], [ -64.870819813516221, 18.346040538706688 ], [ -64.870730462385495, 18.346018410471686 ], [ -64.870640608340295, 18.346031989161361 ], [ -64.870558130373468, 18.346059817093249 ], [ -64.87049023692515, 18.346116478785916 ], [ -64.87048202134639, 18.346201974239364 ], [ -64.870503647976648, 18.346287804969108 ], [ -64.870547904446653, 18.346359554094704 ], [ -64.870629879499063, 18.346395931571976 ], [ -64.870719230629845, 18.346425268247174 ], [ -64.870755943383358, 18.346504058174844 ], [ -64.87067346541653, 18.346531886106732 ], [ -64.870583779009451, 18.346524007113999 ], [ -64.870493924964308, 18.346544794243812 ], [ -64.870418823075795, 18.346594079858164 ], [ -64.870367022889297, 18.346522330732512 ], [ -64.870352941285205, 18.346436500002824 ], [ -64.8703086848152, 18.346364750877171 ], [ -64.870219166046297, 18.346349831082364 ], [ -64.870129479639218, 18.346348992891649 ], [ -64.870039960870315, 18.346319823854571 ], [ -64.869965697172574, 18.346276405575281 ], [ -64.869898809553092, 18.346218738053778 ], [ -64.869877184232507, 18.346132908633706 ], [ -64.86980292053471, 18.346089489044743 ], [ -64.869713066489567, 18.346095860603896 ], [ -64.869630588522682, 18.346123687226111 ], [ -64.869622374253652, 18.346209351627351 ], [ -64.869636623495865, 18.346295013409247 ], [ -64.86963578530515, 18.346380676500871 ], [ -64.869605107524819, 18.346458963514124 ], [ -64.869537381714622, 18.346515625206791 ], [ -64.869469655904481, 18.346572119261282 ], [ -64.869409138534479, 18.346643030196219 ], [ -64.869341412724282, 18.346699524250766 ], [ -64.869281062992457, 18.346763226745452 ], [ -64.869243009133754, 18.346841513758704 ], [ -64.869189867842124, 18.346919633133837 ], [ -64.869114765953611, 18.346961877946114 ], [ -64.869025247184709, 18.346953998953325 ], [ -64.868943272132299, 18.346924662278127 ], [ -64.868838498292291, 18.346931032527607 ], [ -64.868756020325463, 18.346958860459495 ], [ -64.868697346975068, 18.347015019237745 ], [ -64.868661975326688, 18.347044188274822 ], [ -64.868597769917528, 18.34703345943359 ], [ -64.868569103794869, 18.346971600958454 ], [ -64.868562398269148, 18.346885937866887 ], [ -64.868518141799086, 18.346814188741234 ], [ -64.868436166746676, 18.346777811264019 ], [ -64.868346312701533, 18.346798430755712 ], [ -64.868285962969651, 18.346862300888574 ], [ -64.868210861081138, 18.346904545700852 ], [ -64.868090664531906, 18.346960536840982 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_545", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.837349019285739, 18.326785959382448 ], [ -64.837206694501504, 18.326750755372245 ], [ -64.836976694967916, 18.326755281602118 ], [ -64.836607052860415, 18.326732985728995 ], [ -64.836406892916443, 18.326763160594908 ], [ -64.8364648957143, 18.326681857404708 ], [ -64.836505631783268, 18.32658144084678 ], [ -64.836544356194565, 18.326465267613003 ], [ -64.836608561603668, 18.326356136490915 ], [ -64.836713000167379, 18.326218170298432 ], [ -64.836803021850756, 18.326124794542523 ], [ -64.836960434067919, 18.326094788624459 ], [ -64.837062860973958, 18.326169555236675 ], [ -64.837155564867544, 18.326291260529217 ], [ -64.837210885455079, 18.326403576775988 ], [ -64.837265869456644, 18.326527293726258 ], [ -64.837316162209504, 18.326673306549708 ], [ -64.837349019285739, 18.326785959382448 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1144", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.852111902179615, 18.338462290078667 ], [ -64.852088097563183, 18.338542924025944 ], [ -64.852064292946693, 18.338623557973222 ], [ -64.852052055362208, 18.338707879959657 ], [ -64.85208206259, 18.338789016821352 ], [ -64.852166384576435, 18.338819024049144 ], [ -64.852254729878325, 18.338830758719212 ], [ -64.852258585555603, 18.338830758719212 ], [ -64.852405604207888, 18.338808295207912 ], [ -64.852469306702631, 18.338748280752327 ], [ -64.852533176835493, 18.338688433934919 ], [ -64.852615990078618, 18.338634622090751 ], [ -64.852692433072264, 18.338580810246526 ], [ -64.852775246315389, 18.338533201013604 ], [ -64.852851521670914, 18.338491459115744 ], [ -64.852946572498581, 18.338486262333276 ], [ -64.853035253076769, 18.338480897912689 ], [ -64.853124101293076, 18.338457428572497 ], [ -64.853212781871264, 18.338446029178726 ], [ -64.853301630087572, 18.338416692503529 ], [ -64.853390310665759, 18.338411328082941 ], [ -64.853478991243946, 18.338418033608662 ], [ -64.853567504183957, 18.338430941745742 ], [ -64.853649311598247, 18.338467822137432 ], [ -64.853724916401177, 18.338510737502304 ], [ -64.853800521204107, 18.338553652867176 ], [ -64.853882496256517, 18.338584665923804 ], [ -64.85379364804021, 18.338607464711401 ], [ -64.853694238620847, 18.338635795557707 ], [ -64.853602875832337, 18.338642333445364 ], [ -64.853488714256287, 18.338626743097961 ], [ -64.853389640113164, 18.338618696467051 ], [ -64.853298277324711, 18.338625234354652 ], [ -64.853206746898081, 18.338631772242252 ], [ -64.852954954405789, 18.338673346501992 ], [ -64.852870800057474, 18.338716261866864 ], [ -64.852786645709216, 18.338759177231736 ], [ -64.852625880729136, 18.338837967159407 ], [ -64.852571901246733, 18.338903010759282 ], [ -64.852502834331403, 18.338960510642664 ], [ -64.85242588842334, 18.339039971122929 ], [ -64.852371908940938, 18.339112223162999 ], [ -64.852303009663785, 18.339162682244307 ], [ -64.852203600244366, 18.339198221530864 ], [ -64.852119278257931, 18.339262929854442 ], [ -64.85205004370448, 18.339320597375945 ], [ -64.85198114442727, 18.33937105645731 ], [ -64.851896990079013, 18.339406595743867 ], [ -64.851698506516527, 18.339441464477773 ], [ -64.851647879797042, 18.339465101456085 ], [ -64.851705212042248, 18.339401063685102 ], [ -64.851741421881343, 18.339323447224444 ], [ -64.851756509314328, 18.339238789961712 ], [ -64.851730022487573, 18.3391477624495 ], [ -64.851679731044385, 18.339078863172347 ], [ -64.851623572266135, 18.339013819572472 ], [ -64.851552996607495, 18.338965875063252 ], [ -64.85147169210768, 18.338931341605587 ], [ -64.851440511412875, 18.338853725144929 ], [ -64.8513979313243, 18.338780970190442 ], [ -64.85133355827702, 18.338707879959657 ], [ -64.851385861377935, 18.338720788096737 ], [ -64.851501699335472, 18.338721626287452 ], [ -64.851623907542432, 18.338681896047319 ], [ -64.851703535660818, 18.338641830530889 ], [ -64.851771093832838, 18.338584163009386 ], [ -64.851832617031732, 18.338520628152821 ], [ -64.851906713091353, 18.338410657530346 ], [ -64.851956166343825, 18.338341255338719 ], [ -64.851993382011813, 18.338265985812086 ], [ -64.852042835264285, 18.338196583620459 ], [ -64.85209195324046, 18.338124163942268 ], [ -64.85207569234052, 18.338208485928703 ], [ -64.852086588819873, 18.338293143191379 ], [ -64.852105029015718, 18.338377800454111 ], [ -64.852111902179615, 18.338462290078667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_875", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.977907545792107, 18.344572028565267 ], [ -64.977818194661381, 18.34454990163988 ], [ -64.977728675892479, 18.3445349805354 ], [ -64.977549973630971, 18.344440935536625 ], [ -64.977408989951869, 18.344325600493562 ], [ -64.977327685451996, 18.344232227357054 ], [ -64.977290806370036, 18.344167854309717 ], [ -64.977224086388674, 18.344110185478542 ], [ -64.977164742485741, 18.344045478464636 ], [ -64.977105564911199, 18.343980936469507 ], [ -64.977061308441193, 18.343909188653527 ], [ -64.976987547657814, 18.343794522853386 ], [ -64.976920996624358, 18.343715397649419 ], [ -64.976824772329678, 18.343607775270641 ], [ -64.976735922803698, 18.343499982634341 ], [ -64.976661994382198, 18.343413816628356 ], [ -64.976558395318875, 18.343298816861591 ], [ -64.976469545792895, 18.343198235284831 ], [ -64.976395449733218, 18.343112069278845 ], [ -64.976351362211062, 18.343033279351118 ], [ -64.97631515237191, 18.34288324321227 ], [ -64.976338452764253, 18.342776288766743 ], [ -64.976361586828148, 18.342690794622968 ], [ -64.976400143601268, 18.342548468529003 ], [ -64.976490500560885, 18.342463477299702 ], [ -64.976513803572573, 18.342525334465165 ], [ -64.976538780346345, 18.342608987208678 ], [ -64.976553532503033, 18.342692638642518 ], [ -64.97656828465972, 18.342781151582585 ], [ -64.976633663535836, 18.342953483594613 ], [ -64.976719829541878, 18.343111397416578 ], [ -64.976750004407791, 18.343190188653921 ], [ -64.976800463489155, 18.343308373545426 ], [ -64.976846062373966, 18.343382469605103 ], [ -64.976896855421955, 18.343451536520433 ], [ -64.976958044654168, 18.343515909567714 ], [ -64.977013866846448, 18.343609619290191 ], [ -64.977095506622561, 18.343688744494159 ], [ -64.977136076363081, 18.343762671605987 ], [ -64.977186701772894, 18.343846659625854 ], [ -64.977237663768676, 18.343915726541184 ], [ -64.977313771486081, 18.344024354748797 ], [ -64.977369762626154, 18.344093590611919 ], [ -64.977425921404404, 18.344157794711407 ], [ -64.977492307419084, 18.344212278417899 ], [ -64.977548298559213, 18.344281511661677 ], [ -64.977609486481754, 18.344340855564667 ], [ -64.977686095803904, 18.344405397559797 ], [ -64.977757678601051, 18.34445501845039 ], [ -64.977834455561322, 18.344504638031367 ], [ -64.977907545792107, 18.344572028565267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_595", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.950191432459178, 18.369912206483264 ], [ -64.950228649436838, 18.370000385456706 ], [ -64.950214735470865, 18.369998204851129 ], [ -64.950145836193713, 18.369946238336183 ], [ -64.95006939320001, 18.369901477642031 ], [ -64.950000492613185, 18.369849509817413 ], [ -64.949947183683378, 18.369782957474229 ], [ -64.949878453354017, 18.369730989649611 ], [ -64.949879122596883, 18.369642813295513 ], [ -64.94991835123227, 18.369562345676741 ], [ -64.949957409610136, 18.36948187936764 ], [ -64.950004180652343, 18.369408790446528 ], [ -64.950066374403775, 18.369350452372373 ], [ -64.950113145445926, 18.369277360831916 ], [ -64.950144493778851, 18.369196726884695 ], [ -64.950145333279238, 18.369101174452283 ], [ -64.95017684925034, 18.369020706833453 ], [ -64.950254130434701, 18.368977122225715 ], [ -64.950338955335553, 18.368955832181427 ], [ -64.950416404158091, 18.36891224626396 ], [ -64.950493685342508, 18.368868826674998 ], [ -64.950593596366616, 18.36888424938428 ], [ -64.950639027613306, 18.368958011477275 ], [ -64.950676912524216, 18.36903914833897 ], [ -64.950731562559156, 18.369092120682808 ], [ -64.950646068415381, 18.369127827607485 ], [ -64.950579514762524, 18.369181305485085 ], [ -64.950522517793559, 18.369244000841263 ], [ -64.950465354496146, 18.369306529868993 ], [ -64.950394108284968, 18.36935548151672 ], [ -64.950351025281918, 18.369431755562573 ], [ -64.950312636146975, 18.369508030918098 ], [ -64.950274414650153, 18.369584138635446 ], [ -64.950240719383203, 18.369660415300643 ], [ -64.95021171667463, 18.369741384524218 ], [ -64.950196798189438, 18.369826712339488 ], [ -64.950191432459178, 18.369912206483264 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_572", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.869361864577854, 18.308456742613146 ], [ -64.869323978357329, 18.308528828324768 ], [ -64.869245691344076, 18.308552968217498 ], [ -64.869055086774324, 18.308568055650426 ], [ -64.868847550752093, 18.308524972647433 ], [ -64.868692485468898, 18.308424388451385 ], [ -64.868546305007328, 18.308299164067478 ], [ -64.868407500624073, 18.308314419138583 ], [ -64.868295183067573, 18.308296983461901 ], [ -64.868184206616263, 18.308105877287403 ], [ -64.867978514613583, 18.307855927505045 ], [ -64.86778120451811, 18.307647386963595 ], [ -64.867505272133087, 18.307504559264885 ], [ -64.86727208747476, 18.307419902002209 ], [ -64.867004369358767, 18.307326695194092 ], [ -64.866658868453669, 18.307208007388169 ], [ -64.866416630025924, 18.307172971016087 ], [ -64.866157461455316, 18.307087978477057 ], [ -64.865863759427043, 18.306994604030876 ], [ -64.865483220840133, 18.306933582436784 ], [ -64.86507921422276, 18.306934254298994 ], [ -64.865148616414388, 18.306884464460552 ], [ -64.865226231565373, 18.306842388596124 ], [ -64.865299824710576, 18.306796454434959 ], [ -64.865369228211875, 18.306746499577741 ], [ -64.865438796731951, 18.306696711048971 ], [ -64.865500153602341, 18.306635020211957 ], [ -64.865553628860596, 18.306569641335841 ], [ -64.865602914474948, 18.306500071506036 ], [ -64.865648344411966, 18.306426813637131 ], [ -64.86567349144326, 18.306345509137316 ], [ -64.865670137370671, 18.306260181321989 ], [ -64.865656727628846, 18.306244423336466 ], [ -64.865681873350468, 18.306229838817956 ], [ -64.865756472324506, 18.306272251268354 ], [ -64.865824699739449, 18.306326566026996 ], [ -64.865942549354713, 18.306435027906161 ], [ -64.866017149638424, 18.306477271408824 ], [ -64.866098117552326, 18.306513817833888 ], [ -64.866172548888244, 18.306562265257469 ], [ -64.866247147862339, 18.306610545042929 ], [ -64.866321746836434, 18.306652957493384 ], [ -64.866396345810529, 18.306701404917021 ], [ -64.866470944784567, 18.306749683392809 ], [ -64.866558285567294, 18.306768292536447 ], [ -64.866639253481139, 18.306804837651839 ], [ -64.866720222704714, 18.306835346484377 ], [ -64.866801191928289, 18.306865857936259 ], [ -64.866888531401287, 18.306884464460552 ], [ -64.866975704545837, 18.306914975912434 ], [ -64.867056672459739, 18.306951521027827 ], [ -64.867137641683257, 18.306982031170037 ], [ -64.867224813518135, 18.307006506339064 ], [ -64.86731215299119, 18.307037184119451 ], [ -64.86739312352438, 18.307067694261661 ], [ -64.867480294049585, 18.307098204403871 ], [ -64.86756763352264, 18.307122847211019 ], [ -64.867654805357517, 18.307147322380047 ], [ -64.867742312468692, 18.307154027905824 ], [ -64.86782965194169, 18.307166768404727 ], [ -64.867910621165265, 18.307203145881999 ], [ -64.867972144364103, 18.307220580248952 ], [ -64.867997793000143, 18.307227787379475 ], [ -64.868085132473141, 18.307246396523169 ], [ -64.868166101696715, 18.307276905355707 ], [ -64.868247238558411, 18.30730741549786 ], [ -64.868321837532505, 18.307349829257987 ], [ -64.868402639117903, 18.30738637437338 ], [ -64.868483608341421, 18.30741688451559 ], [ -64.868570780176299, 18.307459296966044 ], [ -64.868645379150394, 18.307501709416442 ], [ -64.868701035014226, 18.307567757535537 ], [ -64.868750488266699, 18.307639843247102 ], [ -64.868799773881051, 18.307711927649052 ], [ -64.868855429744826, 18.307777977077762 ], [ -64.868930028718921, 18.307832290526733 ], [ -64.868985852220874, 18.307862634340495 ], [ -64.869010830304319, 18.307868835642125 ], [ -64.869066486168151, 18.307934886380565 ], [ -64.869115939420624, 18.308006969472785 ], [ -64.869152652174137, 18.308084922519413 ], [ -64.869195735177186, 18.308156839283185 ], [ -64.869226412957516, 18.308234789710468 ], [ -64.869269495960509, 18.308306706474298 ], [ -64.869318781574862, 18.308378792185863 ], [ -64.869361864577854, 18.308450707639963 ], [ -64.869361864577854, 18.308456742613146 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_949", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.906131945120421, 18.312062806728761 ], [ -64.906131274567826, 18.312146122886304 ], [ -64.906126915976074, 18.312229271405727 ], [ -64.906126076475687, 18.31231258756327 ], [ -64.906129095271979, 18.312395903720869 ], [ -64.906121048641069, 18.312479052240292 ], [ -64.906117863516329, 18.312570415028745 ], [ -64.906041085246386, 18.312609977630757 ], [ -64.906021136307231, 18.312697484741932 ], [ -64.906005209373859, 18.31278147145207 ], [ -64.906000515505866, 18.312868978563245 ], [ -64.905999846262944, 18.312952965273382 ], [ -64.905980064961966, 18.31303695198352 ], [ -64.905944860951706, 18.313113227339045 ], [ -64.905887024482354, 18.313174918176003 ], [ -64.905810079883963, 18.313218168817173 ], [ -64.905729445936686, 18.31325404337997 ], [ -64.905645123950251, 18.313282541864453 ], [ -64.905560801963816, 18.31330383190874 ], [ -64.905480838569133, 18.313270304279968 ], [ -64.905424009238288, 18.313207775252238 ], [ -64.905401713365166, 18.313127308943137 ], [ -64.905387128846598, 18.313043154594823 ], [ -64.905391655076528, 18.312959167884685 ], [ -64.905411604015626, 18.312875348812724 ], [ -64.905446640387765, 18.312798905819022 ], [ -64.905462229425439, 18.31277342482116 ], [ -64.905496931830953, 18.312726150864535 ], [ -64.905570188390186, 18.312672003744012 ], [ -64.905616625465768, 18.312599248789525 ], [ -64.905625007372976, 18.312515429717507 ], [ -64.905621989886356, 18.312431275369249 ], [ -64.905595838335898, 18.312350809060149 ], [ -64.905554430404663, 18.312277383553067 ], [ -64.905516879460436, 18.312200437644947 ], [ -64.905490896857771, 18.312119803697669 ], [ -64.90547631233926, 18.312035649349411 ], [ -64.905499949317516, 18.311955519626224 ], [ -64.905538841366933, 18.311879076632579 ], [ -64.905624001544084, 18.311755526010757 ], [ -64.905685692381098, 18.311697690851076 ], [ -64.905751238895391, 18.311643376092434 ], [ -64.905828183493838, 18.311596437412106 ], [ -64.905904963073453, 18.311556874810151 ], [ -64.905978053304239, 18.311509936129823 ], [ -64.906039744141196, 18.311452100970143 ], [ -64.906093891261719, 18.311386722093971 ], [ -64.906097076386459, 18.311479762573583 ], [ -64.906092716485034, 18.311562909783333 ], [ -64.906095567643149, 18.311646225940876 ], [ -64.906102105530806, 18.311729542098476 ], [ -64.906108643418406, 18.311812858256019 ], [ -64.906118869345164, 18.311896174413619 ], [ -64.906121719193607, 18.311979490571161 ], [ -64.906131945120421, 18.312062806728761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_490", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.967364282620849, 18.36876589816427 ], [ -64.967066389639001, 18.368670510750633 ], [ -64.966774865596904, 18.368546124557497 ], [ -64.966330290548683, 18.368501866777819 ], [ -64.965994008431835, 18.368615694387245 ], [ -64.965639286119085, 18.36876438942096 ], [ -64.965412974624712, 18.368861619544475 ], [ -64.965192530465345, 18.368987849757275 ], [ -64.965057246483127, 18.369120786805468 ], [ -64.964969404095712, 18.369416835767765 ], [ -64.964898660798895, 18.369521443279268 ], [ -64.964903353357272, 18.369294124646331 ], [ -64.964892458187592, 18.369148614737355 ], [ -64.964924309434934, 18.368991705434553 ], [ -64.965052720253254, 18.368928673492405 ], [ -64.965272829136325, 18.368854746380578 ], [ -64.965383301363545, 18.368768243788622 ], [ -64.965615313864532, 18.368711749734075 ], [ -64.965774402463182, 18.368649054377897 ], [ -64.965902980919623, 18.36857428645601 ], [ -64.966062069518273, 18.36849398778503 ], [ -64.966142368189253, 18.36837245144028 ], [ -64.966265079310688, 18.368280250461112 ], [ -64.966442105190708, 18.368252590167344 ], [ -64.966575377515198, 18.368352502501182 ], [ -64.966782578261189, 18.368342444212544 ], [ -64.966874611602236, 18.368279075684427 ], [ -64.966946863642306, 18.368390219773914 ], [ -64.967007044426339, 18.368483763167887 ], [ -64.967115841581801, 18.368583675501725 ], [ -64.967224638737264, 18.368694987229333 ], [ -64.967364282620849, 18.36876589816427 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1154", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.906439393476489, 18.313650004676106 ], [ -64.906411565544602, 18.313729129880073 ], [ -64.906360100634402, 18.313798196795403 ], [ -64.906319532203554, 18.313874136874631 ], [ -64.906293380653096, 18.313953764993073 ], [ -64.906270414227379, 18.314088881337113 ], [ -64.906262535234589, 18.314172029856536 ], [ -64.906268905484069, 18.314262219178033 ], [ -64.906279131410827, 18.314345702973753 ], [ -64.906296564468164, 18.314429019131296 ], [ -64.906328417025179, 18.314519543729034 ], [ -64.906386084546739, 18.314582408033061 ], [ -64.906469233066161, 18.314624652845339 ], [ -64.906552381585584, 18.314656504092682 ], [ -64.906643241459619, 18.314664215447351 ], [ -64.906726891583787, 18.314640578469039 ], [ -64.906782044533202, 18.314571679191829 ], [ -64.906797299604307, 18.314488529362734 ], [ -64.906841388436135, 18.314415943356039 ], [ -64.906921688416787, 18.314378560049931 ], [ -64.907008860251665, 18.314382583365386 ], [ -64.9070846313831, 18.314431868979739 ], [ -64.907149508654527, 18.314487860119812 ], [ -64.90720717617603, 18.314554244824876 ], [ -64.90727926057798, 18.314603362801051 ], [ -64.907344136539677, 18.314659353941124 ], [ -64.907405492100395, 18.314718865482291 ], [ -64.907519652366773, 18.314797655409961 ], [ -64.907649908514315, 18.314858843332502 ], [ -64.907851912477838, 18.314899747039647 ], [ -64.907803297416081, 18.314903435078804 ], [ -64.907715287390488, 18.314899076487052 ], [ -64.907627443693343, 18.314894717895299 ], [ -64.9075396026156, 18.314882983225232 ], [ -64.907447904550793, 18.314864040114969 ], [ -64.90735637412422, 18.314844929366586 ], [ -64.907268530427075, 18.314825986256267 ], [ -64.907176832362325, 18.314817939625357 ], [ -64.907088654698555, 18.31484291639913 ], [ -64.907000478344457, 18.314856830365102 ], [ -64.906912468318865, 18.314859681523217 ], [ -64.906828481608727, 18.314865716496399 ], [ -64.906820770254114, 18.314866387048994 ], [ -64.906736448267679, 18.314887509455161 ], [ -64.906651958643124, 18.314912487538606 ], [ -64.906571492333967, 18.314944674062247 ], [ -64.906498402103182, 18.314991611432902 ], [ -64.906425310562724, 18.315038551422901 ], [ -64.906367309074597, 18.315100074621739 ], [ -64.906326236419659, 18.315111474015509 ], [ -64.906283490002579, 18.315077611110439 ], [ -64.906288016232509, 18.314993624400302 ], [ -64.906284831107769, 18.314909470051987 ], [ -64.906262701563094, 18.314821626354842 ], [ -64.906245771420174, 18.314751387282229 ], [ -64.906225822481076, 18.314660695046314 ], [ -64.906184414549841, 18.314587269539231 ], [ -64.906154576269842, 18.314506635591954 ], [ -64.906105961208084, 18.314378392411811 ], [ -64.906106296484381, 18.314345535335576 ], [ -64.906106967036976, 18.314261548625439 ], [ -64.906107637589514, 18.314177561915301 ], [ -64.906112331457564, 18.314093575205163 ], [ -64.906135968435876, 18.314013444172303 ], [ -64.906178548524451, 18.313940689217816 ], [ -64.906213752534711, 18.313864246224171 ], [ -64.906264043977899, 18.313795346946961 ], [ -64.906318191098421, 18.313729968070788 ], [ -64.906394969368364, 18.313686717429675 ], [ -64.906439393476489, 18.313650004676106 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_926", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.876036712557493, 18.317995520644899 ], [ -64.876066718475613, 18.318007590591264 ], [ -64.876132767904323, 18.318073975296272 ], [ -64.876214910594911, 18.318157122506022 ], [ -64.876291353588556, 18.318230212736808 ], [ -64.876378022509016, 18.318318894624667 ], [ -64.876464859067596, 18.318390977716945 ], [ -64.876567285973579, 18.318434397305907 ], [ -64.876764763707229, 18.318469936592408 ], [ -64.876740120900081, 18.31849038844598 ], [ -64.876729224420728, 18.31849943959611 ], [ -64.876668539412549, 18.318570685807288 ], [ -64.876607854404426, 18.31863472357827 ], [ -64.876532417239673, 18.318677137338398 ], [ -64.876442061589728, 18.318697924468268 ], [ -64.876352038596679, 18.318697252606 ], [ -64.876307614488553, 18.31862516951378 ], [ -64.876270734096863, 18.318545875361963 ], [ -64.876234022653023, 18.318466751467668 ], [ -64.87619714095166, 18.318387624954028 ], [ -64.876160260559971, 18.318308333421612 ], [ -64.876123380168281, 18.318229206907972 ], [ -64.876078956060098, 18.318157122506022 ], [ -64.876040064010738, 18.318008093505682 ], [ -64.876036712557493, 18.317995520644899 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_863", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 5.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.956750610119457, 18.312221057136696 ], [ -64.956749939566919, 18.312309402438586 ], [ -64.956749101376147, 18.31239774774042 ], [ -64.956731499371074, 18.31248609304231 ], [ -64.956730828818479, 18.3125744383442 ], [ -64.956688081091784, 18.312646355107972 ], [ -64.956653882910359, 18.312726486140832 ], [ -64.956602753276456, 18.312798402904605 ], [ -64.956602418000159, 18.312830589428245 ], [ -64.956509546468396, 18.31286193776117 ], [ -64.956425224481961, 18.312885407101362 ], [ -64.956324137371439, 18.312916755434287 ], [ -64.956231099511228, 18.312956318036242 ], [ -64.956146777524793, 18.312979787376435 ], [ -64.956062455538358, 18.31301130334748 ], [ -64.955969751644716, 18.313034605049495 ], [ -64.955877215389251, 18.3130339344969 ], [ -64.955784679133728, 18.313033263944362 ], [ -64.955691975240086, 18.313040472384557 ], [ -64.9555992713465, 18.313055895093783 ], [ -64.955514949360065, 18.313087411064885 ], [ -64.955422245466423, 18.31310266613599 ], [ -64.95532954157278, 18.313110042214305 ], [ -64.955228623410108, 18.31310937166171 ], [ -64.95514480433809, 18.313084561216442 ], [ -64.955069534811457, 18.313027731885597 ], [ -64.955011196737303, 18.31296302356202 ], [ -64.954986553930155, 18.312882389614742 ], [ -64.954945147308592, 18.312809802298375 ], [ -64.954912122594237, 18.312729168351154 ], [ -64.954896196970537, 18.312616515518357 ], [ -64.954888653254045, 18.312528002578347 ], [ -64.954880941899432, 18.312439657276457 ], [ -64.954881612452027, 18.31235114433639 ], [ -64.954899214457157, 18.312262966672677 ], [ -64.95491681646223, 18.312174621370787 ], [ -64.954917654652945, 18.312086276068896 ], [ -64.95491832520554, 18.311997930767006 ], [ -64.954910781489048, 18.311901371196086 ], [ -64.954894688227228, 18.311812858256019 ], [ -64.954912290232357, 18.311724680592306 ], [ -64.95492134269216, 18.311636336600088 ], [ -64.954955708511648, 18.311556205567229 ], [ -64.9549984562384, 18.311484287493784 ], [ -64.955049418234182, 18.311412370730011 ], [ -64.9551173116825, 18.311348500597148 ], [ -64.955160059409195, 18.311276583833376 ], [ -64.955235999488423, 18.311237022541036 ], [ -64.955320489112978, 18.311197458629408 ], [ -64.955396596830383, 18.311157896027396 ], [ -64.955472704547731, 18.31111011915641 ], [ -64.955519643228058, 18.311080950119333 ], [ -64.955599103708323, 18.311086985092516 ], [ -64.955691639963845, 18.311095869914141 ], [ -64.95578400858119, 18.311112633728555 ], [ -64.955867827653151, 18.311145323166613 ], [ -64.955943264817961, 18.31118606054531 ], [ -64.956009984799266, 18.311242888566426 ], [ -64.956059940966213, 18.311315643520913 ], [ -64.956135378130966, 18.311356379589938 ], [ -64.956210646347984, 18.311397115658906 ], [ -64.956294465419944, 18.311438019366051 ], [ -64.956369736256306, 18.311486802065929 ], [ -64.956445173421116, 18.311527538134953 ], [ -64.956512061040542, 18.311584367465741 ], [ -64.956561849569312, 18.311656954782109 ], [ -64.956611804426586, 18.311729709736596 ], [ -64.956653212357821, 18.311802297052964 ], [ -64.956686237072176, 18.311882931000241 ], [ -64.956693779478996, 18.311971443940251 ], [ -64.956701492143281, 18.312059956880262 ], [ -64.956726134950429, 18.312140423189419 ], [ -64.956750610119457, 18.312221057136696 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_559", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.838595241248242, 18.318746705858473 ], [ -64.83842491958427, 18.31868602085035 ], [ -64.83829533660861, 18.318671102365215 ], [ -64.838129542484182, 18.318662886786512 ], [ -64.837985206042219, 18.318661714629172 ], [ -64.837919659527927, 18.318736816517685 ], [ -64.837825782167272, 18.318749890983213 ], [ -64.837718158478822, 18.318680153515345 ], [ -64.837711954557847, 18.31857672078047 ], [ -64.837756212337524, 18.318460044632218 ], [ -64.837851766079609, 18.318267932628885 ], [ -64.83793223238871, 18.318151590447258 ], [ -64.8380046520669, 18.318002895413542 ], [ -64.838005322619495, 18.318003567275809 ], [ -64.838011525230854, 18.318008762748605 ], [ -64.838048070346247, 18.31810431649069 ], [ -64.838140774239832, 18.318208419778102 ], [ -64.838284943043675, 18.31822333957291 ], [ -64.838414693657455, 18.318224345401802 ], [ -64.838558862461298, 18.318232559670832 ], [ -64.83865994957182, 18.31822652469765 ], [ -64.838731363421175, 18.318295926889277 ], [ -64.838730357592283, 18.318412939623443 ], [ -64.838700685640788, 18.318502289444552 ], [ -64.83863849057974, 18.318605051626832 ], [ -64.838610327371498, 18.318704963960613 ], [ -64.838595241248242, 18.318746705858473 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_97", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.017848334190262, 18.361031578424218 ], [ -65.017775242649805, 18.360960498541488 ], [ -65.017753114414802, 18.360921103577653 ], [ -65.017697627498819, 18.360804762705698 ], [ -65.017654712133947, 18.360727147554712 ], [ -65.017630404603096, 18.360643831397113 ], [ -65.017581286626921, 18.360566047298335 ], [ -65.017500485041467, 18.360535703484572 ], [ -65.017413816121064, 18.36048155636405 ], [ -65.017308707004759, 18.360385667345724 ], [ -65.017073006464614, 18.360271004164872 ], [ -65.017011316937271, 18.360211157347464 ], [ -65.016960018355576, 18.360158014746162 ], [ -65.01684870793764, 18.360045698499334 ], [ -65.016807636592318, 18.359983672386079 ], [ -65.016790369863486, 18.359958525354784 ], [ -65.016784836495049, 18.359950478723874 ], [ -65.016758350978023, 18.359911923260427 ], [ -65.01671543561315, 18.359834305490097 ], [ -65.016653577138015, 18.359774458672689 ], [ -65.016591886301001, 18.359714445526777 ], [ -65.016573781381453, 18.359631129369234 ], [ -65.016611835240155, 18.359554183461114 ], [ -65.016693138430298, 18.359518979450911 ], [ -65.016780311574848, 18.359507746385589 ], [ -65.016855413463361, 18.359460807705261 ], [ -65.016936717963233, 18.359425772642851 ], [ -65.017017853515256, 18.359396603605774 ], [ -65.017099159324744, 18.359349663615774 ], [ -65.017174261213256, 18.359302558606998 ], [ -65.017267634349821, 18.359309264132776 ], [ -65.017310551024309, 18.359386880593433 ], [ -65.017334858555216, 18.359470195441304 ], [ -65.017396549392231, 18.359536078541566 ], [ -65.017455221432954, 18.359599278121891 ], [ -65.017494450068284, 18.359646049164041 ], [ -65.017507693481662, 18.359661807149564 ], [ -65.017575585620307, 18.359721821605149 ], [ -65.017662591126737, 18.359746129135999 ], [ -65.017743391402462, 18.359776471640089 ], [ -65.017823859021235, 18.359818716452367 ], [ -65.01790449165884, 18.359860961264644 ], [ -65.017978924304487, 18.359909073411984 ], [ -65.018046816443132, 18.35996908655784 ], [ -65.018108676227939, 18.360028933375247 ], [ -65.018157960532562, 18.360100682500899 ], [ -65.018226021619057, 18.360154663292917 ], [ -65.018313193453935, 18.360149297562657 ], [ -65.018400366598485, 18.360149969424924 ], [ -65.018487369485513, 18.360168409620769 ], [ -65.018586443628635, 18.360142090432134 ], [ -65.018703622691305, 18.360182154638892 ], [ -65.018692895159745, 18.360179641376419 ], [ -65.018597006141363, 18.360193386394542 ], [ -65.018513019431225, 18.360219371616552 ], [ -65.018429031411415, 18.360240157436692 ], [ -65.018350410431538, 18.360276871499934 ], [ -65.018271788142044, 18.360313750581952 ], [ -65.018193333490615, 18.360355827756052 ], [ -65.01812024325983, 18.360403269350797 ], [ -65.018063749205339, 18.36046697184554 ], [ -65.018007421479297, 18.360530506702105 ], [ -65.017945395365984, 18.36058884477626 ], [ -65.017871300616036, 18.360769727643287 ], [ -65.017842299217079, 18.360902998658105 ], [ -65.017830395599219, 18.360988326473375 ], [ -65.017848334190262, 18.361031578424218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_854", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.914406897874869, 18.317900637455409 ], [ -64.914323916993567, 18.317935841465612 ], [ -64.914248478519141, 18.317978252606395 ], [ -64.914158458145494, 18.317977583363472 ], [ -64.914091402887891, 18.317919580565672 ], [ -64.914016636275619, 18.317875994648205 ], [ -64.913926614592299, 18.317853866413202 ], [ -64.913821839442619, 18.31783140159223 ], [ -64.913739362785464, 18.317802066226704 ], [ -64.913649341102143, 18.317794187233972 ], [ -64.913588823732141, 18.317858223695282 ], [ -64.913618160407339, 18.31793734889925 ], [ -64.913707846814418, 18.317988310895032 ], [ -64.913797533221441, 18.318024857320097 ], [ -64.913887554904761, 18.318047151883547 ], [ -64.913977576588081, 18.318047822436142 ], [ -64.914067598271401, 18.318048494298409 ], [ -64.914142197245496, 18.318106495786537 ], [ -64.914089055953866, 18.318177743307444 ], [ -64.914080840375107, 18.318263740365637 ], [ -64.914050163904449, 18.31834253160298 ], [ -64.913982102817954, 18.318399359624095 ], [ -64.913891913496514, 18.31839852143338 ], [ -64.913802059451314, 18.31837639450805 ], [ -64.913742547910203, 18.318311349598503 ], [ -64.913675492652601, 18.318253346800702 ], [ -64.913585470969281, 18.318245467807913 ], [ -64.913495281647783, 18.31823758881518 ], [ -64.913383131729461, 18.318193667621415 ], [ -64.913293277684261, 18.31816433225589 ], [ -64.913195712284448, 18.31814924351329 ], [ -64.913090770806321, 18.318133988442185 ], [ -64.913000749123, 18.318126109449395 ], [ -64.91291072743968, 18.318118230456605 ], [ -64.912820538118183, 18.318117559904067 ], [ -64.912730516434863, 18.318116889351472 ], [ -64.912640327113422, 18.318123259600952 ], [ -64.912550137791925, 18.318144046730822 ], [ -64.912459948470485, 18.3181433774879 ], [ -64.912369926787107, 18.318128288745243 ], [ -64.912280072741964, 18.318098953379717 ], [ -64.912182674980272, 18.318083864637117 ], [ -64.912092820935072, 18.318061568763937 ], [ -64.912025598039349, 18.318003733604257 ], [ -64.911966086498239, 18.317938691314055 ], [ -64.911966924688954, 18.317852525308069 ], [ -64.912020065980585, 18.317781277787162 ], [ -64.912095503145395, 18.317738866646437 ], [ -64.912170940310205, 18.317696454195982 ], [ -64.912253921191507, 18.317661250185779 ], [ -64.912336902072752, 18.317618836425652 ], [ -64.912419715315878, 18.317583632415392 ], [ -64.912510072275495, 18.317562846595251 ], [ -64.912600429235113, 18.317542059465381 ], [ -64.91269061855661, 18.317528479466034 ], [ -64.91278080787805, 18.317521941578434 ], [ -64.912863621121232, 18.317493947318042 ], [ -64.912946434364358, 18.317465950438304 ], [ -64.913021871529168, 18.317423539297579 ], [ -64.913111725574311, 18.317445667532581 ], [ -64.913201914895808, 18.317446504413624 ], [ -64.913217672881331, 18.317360507355431 ], [ -64.913218343433925, 18.317274507677894 ], [ -64.913232257399841, 18.317223210405814 ], [ -64.913261929351336, 18.317291105163804 ], [ -64.913284392862636, 18.317402752167709 ], [ -64.913299145019323, 18.317484727220119 ], [ -64.913341389831601, 18.317559492522662 ], [ -64.913414982976803, 18.317608444170389 ], [ -64.913496455114796, 18.317642473403964 ], [ -64.913573903937333, 18.317680359624489 ], [ -64.913659231752661, 18.317714391477409 ], [ -64.913740871528773, 18.317744901619619 ], [ -64.913826366982221, 18.317764178696507 ], [ -64.913911694797491, 18.317787146431897 ], [ -64.913997190250939, 18.317810111547942 ], [ -64.914082684394714, 18.317836767322547 ], [ -64.914164157842379, 18.317867108516907 ], [ -64.914245629980371, 18.317897618659117 ], [ -64.914335147439544, 18.317898290521384 ], [ -64.914406897874869, 18.317900637455409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_491", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.958478121193366, 18.369425386622765 ], [ -64.958312327068995, 18.369365873771983 ], [ -64.957991132385075, 18.369331675590615 ], [ -64.957802707111227, 18.369314242533278 ], [ -64.957641605545177, 18.369350115786403 ], [ -64.957513866589125, 18.369396720500163 ], [ -64.957325944229694, 18.369321283335353 ], [ -64.957144055533774, 18.3691980692995 ], [ -64.956956805036612, 18.369048368436893 ], [ -64.956785646491539, 18.368973097600588 ], [ -64.956652541805227, 18.368971925443248 ], [ -64.956353642994486, 18.368937893590328 ], [ -64.956109561856806, 18.368941415301038 ], [ -64.955853746049058, 18.369039986529685 ], [ -64.955982156867378, 18.368940409472145 ], [ -64.956132528282524, 18.368851561255838 ], [ -64.956298992959546, 18.36883161231674 ], [ -64.956509546468396, 18.368849214321813 ], [ -64.956653882910359, 18.368818536541482 ], [ -64.956709537464519, 18.368797749411613 ], [ -64.956797884076082, 18.368840832414605 ], [ -64.95692495247954, 18.36889464425883 ], [ -64.957034924411687, 18.36898550282325 ], [ -64.957178421353262, 18.369076699283255 ], [ -64.957343712563272, 18.369189015530026 ], [ -64.957459550520753, 18.369253388577363 ], [ -64.957554098434002, 18.369211815627295 ], [ -64.957643618512577, 18.369127827607485 ], [ -64.95774939818142, 18.369070495362223 ], [ -64.957892896432668, 18.369145598560408 ], [ -64.958008734390205, 18.36921533471866 ], [ -64.958185423684313, 18.369280210680358 ], [ -64.958318362042178, 18.369297143442623 ], [ -64.958423303520306, 18.369340226445615 ], [ -64.958478121193366, 18.369425386622765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1155", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.906333109583557, 18.311488646085536 ], [ -64.906328752301476, 18.311571794604959 ], [ -64.906320704360894, 18.311654943124381 ], [ -64.906309138638619, 18.311739265110816 ], [ -64.906297571606672, 18.311808499664266 ], [ -64.906278796134586, 18.311891648183689 ], [ -64.906277957943871, 18.311974796703112 ], [ -64.906277287391276, 18.312058112860711 ], [ -64.906280137239719, 18.312141429018254 ], [ -64.906290363166477, 18.312228265576834 ], [ -64.906293213014919, 18.312314934497294 ], [ -64.906317688183947, 18.312415685021847 ], [ -64.906331602149919, 18.312499168817567 ], [ -64.906338140037519, 18.31258248497511 ], [ -64.906344676615504, 18.312665801132709 ], [ -64.906362112292129, 18.312749117290252 ], [ -64.906379545349409, 18.312832601085972 ], [ -64.906393292986934, 18.312915917243572 ], [ -64.906421622523567, 18.312995880638255 ], [ -64.906446434278564, 18.313075844032937 ], [ -64.906481973565064, 18.31315245466476 ], [ -64.906499406622402, 18.313235938460423 ], [ -64.906513320588374, 18.313319254618023 ], [ -64.906531091541297, 18.313351273503542 ], [ -64.906541651434679, 18.3133998885653 ], [ -64.906573503991694, 18.313493933564075 ], [ -64.906594457450069, 18.313577249721618 ], [ -64.906619269205009, 18.313657380754478 ], [ -64.906658496530724, 18.313733991386243 ], [ -64.906705098625082, 18.313803728854168 ], [ -64.906726053393072, 18.313897438576646 ], [ -64.906750865148069, 18.313977569609506 ], [ -64.906771987554237, 18.314060885767049 ], [ -64.906818589648594, 18.314130623234973 ], [ -64.906894363399317, 18.314172868047251 ], [ -64.906999472515622, 18.314211927734789 ], [ -64.907082619725372, 18.314247299383226 ], [ -64.907151183726285, 18.314310331325316 ], [ -64.907208683609667, 18.314373195629344 ], [ -64.907269871532208, 18.314432539532334 ], [ -64.90733843553312, 18.314485177909546 ], [ -64.907406999534032, 18.314537816286759 ], [ -64.90747187549573, 18.314597327827869 ], [ -64.907540439496643, 18.314649798566961 ], [ -64.907612691536713, 18.314695563780276 ], [ -64.907695841365808, 18.314730935428656 ], [ -64.90777915752335, 18.314755745873924 ], [ -64.907862472371278, 18.314780723957426 ], [ -64.907949645515828, 18.314791788074899 ], [ -64.908062298348568, 18.314782400338856 ], [ -64.908152486360393, 18.314746861052299 ], [ -64.908119798231951, 18.314781562148141 ], [ -64.908061626486358, 18.31484291639913 ], [ -64.908010161576101, 18.314861190266527 ], [ -64.907975629428108, 18.314868231068601 ], [ -64.907891307441673, 18.314896729553027 ], [ -64.907851912477838, 18.314899747039647 ], [ -64.907649908514315, 18.314858843332502 ], [ -64.907519652366773, 18.314797655409961 ], [ -64.907405492100395, 18.314718865482291 ], [ -64.907344136539677, 18.314659353941124 ], [ -64.90727926057798, 18.314603362801051 ], [ -64.90720717617603, 18.314554244824876 ], [ -64.907149508654527, 18.314487860119812 ], [ -64.9070846313831, 18.314431868979739 ], [ -64.907008860251665, 18.314382583365386 ], [ -64.906921688416787, 18.314378560049931 ], [ -64.906841388436135, 18.314415943356039 ], [ -64.906797299604307, 18.314488529362734 ], [ -64.906782044533202, 18.314571679191829 ], [ -64.906726891583787, 18.314640578469039 ], [ -64.906643241459619, 18.314664215447351 ], [ -64.906552381585584, 18.314656504092682 ], [ -64.906469233066161, 18.314624652845339 ], [ -64.906386084546739, 18.314582408033061 ], [ -64.906328417025179, 18.314519543729034 ], [ -64.906296564468164, 18.314429019131296 ], [ -64.906279131410827, 18.314345702973753 ], [ -64.906268905484069, 18.314262219178033 ], [ -64.906262535234589, 18.314172029856536 ], [ -64.906270414227379, 18.314088881337113 ], [ -64.906293380653096, 18.313953764993073 ], [ -64.906319532203554, 18.313874136874631 ], [ -64.906360100634402, 18.313798196795403 ], [ -64.906411565544602, 18.313729129880073 ], [ -64.906439393476489, 18.313650004676106 ], [ -64.906460514572984, 18.313632402671033 ], [ -64.906499406622402, 18.313556127315508 ], [ -64.906484823413564, 18.313471972967193 ], [ -64.906451128146614, 18.313391339019915 ], [ -64.906428832273434, 18.313310705072695 ], [ -64.906410558406094, 18.31322655072438 ], [ -64.906376695500967, 18.31314960481626 ], [ -64.906308300447904, 18.31309797226794 ], [ -64.906239904085169, 18.313046339719563 ], [ -64.906221631527444, 18.312962017733128 ], [ -64.906214758363546, 18.31287803102299 ], [ -64.906203860574522, 18.312793876674732 ], [ -64.906196987410624, 18.312709889964594 ], [ -64.906182404201786, 18.31262573561628 ], [ -64.906117863516329, 18.312570415028745 ], [ -64.906121048641069, 18.312479052240292 ], [ -64.906129095271979, 18.312395903720869 ], [ -64.906126076475687, 18.31231258756327 ], [ -64.906126915976074, 18.312229271405727 ], [ -64.906131274567826, 18.312146122886304 ], [ -64.906131945120421, 18.312062806728761 ], [ -64.906121719193607, 18.311979490571161 ], [ -64.906118869345164, 18.311896174413619 ], [ -64.906108643418406, 18.311812858256019 ], [ -64.906102105530806, 18.311729542098476 ], [ -64.906095567643149, 18.311646225940876 ], [ -64.906092716485034, 18.311562909783333 ], [ -64.906097076386459, 18.311479762573583 ], [ -64.906093891261719, 18.311386722093971 ], [ -64.906117528240031, 18.311306591061168 ], [ -64.906126076475687, 18.311189748584468 ], [ -64.906126413061656, 18.311150519949081 ], [ -64.906165137472954, 18.311182035920183 ], [ -64.906237054236726, 18.311262334591106 ], [ -64.906301930198424, 18.311321846132273 ], [ -64.906315676526219, 18.311405163599488 ], [ -64.906333109583557, 18.311488646085536 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_971", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.864683085288505, 18.341220271514089 ], [ -64.864682413426237, 18.341303756619482 ], [ -64.864681576545195, 18.341387408053322 ], [ -64.864670512427722, 18.34147089053937 ], [ -64.86465961463864, 18.341554543282939 ], [ -64.864664477454539, 18.341583040457749 ], [ -64.8646433537387, 18.341637021249767 ], [ -64.864616868221617, 18.341725366551657 ], [ -64.864590212447069, 18.341808850347377 ], [ -64.864574120494922, 18.341892334143097 ], [ -64.864552661502785, 18.34197565030064 ], [ -64.864521145531739, 18.34205410364234 ], [ -64.86451008141421, 18.34213775638591 ], [ -64.86454528542447, 18.34222157545787 ], [ -64.864601445512392, 18.342295839155668 ], [ -64.864688783675717, 18.34232115251541 ], [ -64.864770926366305, 18.342351327381323 ], [ -64.864858602425272, 18.342342273611905 ], [ -64.864905373467423, 18.34233204768509 ], [ -64.864946277174568, 18.342323330501642 ], [ -64.8650289214699, 18.342289467596515 ], [ -64.86510653924023, 18.342250744494947 ], [ -64.86517409741225, 18.342197266617347 ], [ -64.865251712563293, 18.342153682009553 ], [ -64.865324301189276, 18.342105065638123 ], [ -64.865386662578885, 18.342046561235577 ], [ -64.86546427772987, 18.342002806370317 ], [ -64.865542061828705, 18.341949331112062 ], [ -64.865619679599035, 18.341910605391092 ], [ -64.865707354348331, 18.341901554241019 ], [ -64.865794861459506, 18.341907252628232 ], [ -64.865882368570681, 18.341912785996669 ], [ -64.865969706734006, 18.341933236540513 ], [ -64.866041455859659, 18.341983026378955 ], [ -64.866035588524596, 18.342066510174675 ], [ -64.865998709442636, 18.342144963516432 ], [ -64.865951769452636, 18.34221839033313 ], [ -64.865904664443804, 18.342296677346383 ], [ -64.865883374399516, 18.342380161142103 ], [ -64.865882534899129, 18.34246867408217 ], [ -64.865871470781656, 18.342552156568161 ], [ -64.865814307484186, 18.342615691424783 ], [ -64.865736689713856, 18.342654417145695 ], [ -64.865669131541836, 18.3427080613518 ], [ -64.865596545535141, 18.342756676413558 ], [ -64.865513732292015, 18.342800262330968 ], [ -64.865431085377338, 18.342838819104088 ], [ -64.865343244299595, 18.342852899398508 ], [ -64.865255569550243, 18.342876871653118 ], [ -64.865172756307118, 18.34291056822974 ], [ -64.865084912609973, 18.342939400680848 ], [ -64.865002268314697, 18.342968234441571 ], [ -64.86491962140002, 18.342997069512023 ], [ -64.86485726132014, 18.343055575224298 ], [ -64.864810322639812, 18.343128999421708 ], [ -64.864763216321307, 18.343202426238463 ], [ -64.864700853622082, 18.343260930641009 ], [ -64.86461820932675, 18.343294627217631 ], [ -64.864530365629662, 18.343318599472241 ], [ -64.864468508464199, 18.343329831227891 ], [ -64.864447721334329, 18.343344414436729 ], [ -64.864400613706209, 18.343422701449981 ], [ -64.864379323661922, 18.343506186555373 ], [ -64.864327189508799, 18.343579610752784 ], [ -64.86428527866309, 18.343653037569482 ], [ -64.864263822290354, 18.343736521365201 ], [ -64.864211854465736, 18.343804916418321 ], [ -64.864185198691132, 18.343888232575864 ], [ -64.864148487247292, 18.343966688536909 ], [ -64.864147815385024, 18.344050338661134 ], [ -64.864147649056576, 18.344055201476976 ], [ -64.864136752577224, 18.344133822456854 ], [ -64.864135914386452, 18.344217473890694 ], [ -64.864135242524242, 18.344301126634207 ], [ -64.864134405643199, 18.344384776758375 ], [ -64.864138930563399, 18.344468429501944 ], [ -64.864158713174049, 18.344552248573905 ], [ -64.864157873673662, 18.344635898698129 ], [ -64.864167430357554, 18.344719551441642 ], [ -64.864156532568529, 18.34480303392769 ], [ -64.864094172488649, 18.344861539639908 ], [ -64.864026614316572, 18.344915183846012 ], [ -64.864015550199099, 18.344998667641732 ], [ -64.863959559058969, 18.344956087553157 ], [ -64.863815054978886, 18.344883835513087 ], [ -64.863663007182254, 18.34482566507711 ], [ -64.863566447611333, 18.34478576850853 ], [ -64.863440216088861, 18.344749222083465 ], [ -64.863287665377868, 18.34474084148593 ], [ -64.863213234041893, 18.34474385766282 ], [ -64.863078620612271, 18.344793144586845 ], [ -64.863108626530391, 18.344724914552557 ], [ -64.863109466030778, 18.344638245632098 ], [ -64.863095887341103, 18.344556102941567 ], [ -64.863077613473763, 18.344473961560652 ], [ -64.863077613473763, 18.344464907791235 ], [ -64.863103597386043, 18.344451161463439 ], [ -64.863114661503573, 18.344367511339215 ], [ -64.863115333365783, 18.344283858595702 ], [ -64.863110973464416, 18.344200208471534 ], [ -64.863106616182336, 18.344116555728021 ], [ -64.863097059498443, 18.344032905603797 ], [ -64.863087505433896, 18.343949252860284 ], [ -64.863077950059676, 18.343865433788267 ], [ -64.863094043321496, 18.343781951302219 ], [ -64.863115501003961, 18.343693604690657 ], [ -64.863172833249223, 18.343630069834092 ], [ -64.863204349220268, 18.343551616492391 ], [ -64.863230836047023, 18.343468300334791 ], [ -64.863272745583004, 18.343394873518093 ], [ -64.863289006483001, 18.343311389722373 ], [ -64.863315493309756, 18.343227907236326 ], [ -64.863316162552621, 18.343144254492813 ], [ -64.863291184469176, 18.343060435420796 ], [ -64.863266206385731, 18.342971756152281 ], [ -64.863235697553193, 18.342939903595266 ], [ -64.863215413337798, 18.342900508631431 ], [ -64.863174844906951, 18.342826246243305 ], [ -64.863160091440591, 18.342737564355446 ], [ -64.863135113357146, 18.342653746593101 ], [ -64.863151375566758, 18.342570261487765 ], [ -64.863203511029553, 18.342501866434645 ], [ -64.863255646492348, 18.34243347007191 ], [ -64.863297556028328, 18.342360044564828 ], [ -64.863339297926188, 18.342286451419625 ], [ -64.863386404244636, 18.34221319355072 ], [ -64.863453793468864, 18.342154686528772 ], [ -64.863505930241331, 18.34208612252786 ], [ -64.863547838467639, 18.34201269833045 ], [ -64.863594946095816, 18.341939271513695 ], [ -64.863626462066861, 18.341860818171995 ], [ -64.863653116531736, 18.341767611363935 ], [ -64.863695026067774, 18.341689324350682 ], [ -64.863752358313036, 18.341615897533927 ], [ -64.863784040612529, 18.341532581376384 ], [ -64.863841374167464, 18.341454294363132 ], [ -64.863913961483831, 18.341400819104877 ], [ -64.864012197436182, 18.341362262331756 ], [ -64.864018735323839, 18.341361927055459 ], [ -64.864110098112292, 18.341358239016301 ], [ -64.864207831150281, 18.341378689560202 ], [ -64.8642953382614, 18.341379361422412 ], [ -64.864393574213807, 18.341350695299809 ], [ -64.864471189364792, 18.341311970888569 ], [ -64.864533552064074, 18.341248436031947 ], [ -64.864595913453627, 18.341189930319729 ], [ -64.864657939566882, 18.341165790426999 ], [ -64.864683085288505, 18.341220271514089 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_111", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.851932361727393, 18.317456899288231 ], [ -64.85196169840259, 18.317618333511234 ], [ -64.851980306236555, 18.317808939390602 ], [ -64.85198919105818, 18.317955621456974 ], [ -64.85200344030045, 18.318087552676275 ], [ -64.852155488097026, 18.318245301479465 ], [ -64.852164875833125, 18.318354601549345 ], [ -64.852161523070208, 18.318349906371623 ], [ -64.852124307402278, 18.318293579955252 ], [ -64.852053061191043, 18.318276983779015 ], [ -64.851965218803628, 18.31826826659551 ], [ -64.85188156736973, 18.318243457459857 ], [ -64.851802274527643, 18.318202887719337 ], [ -64.851744104091665, 18.318138348343609 ], [ -64.851715437969062, 18.31805788072478 ], [ -64.85174980378855, 18.317978086277947 ], [ -64.851742092433938, 18.31789393061996 ], [ -64.851742930624653, 18.317809945219494 ], [ -64.851751983084455, 18.317725789561507 ], [ -64.851757012228745, 18.317641802851369 ], [ -64.851791210410113, 18.317562008404536 ], [ -64.851833790498688, 18.317486234653757 ], [ -64.85187653822544, 18.317410463522322 ], [ -64.851931523536678, 18.317342905350301 ], [ -64.851948287351092, 18.317317424352439 ], [ -64.851932361727393, 18.317456899288231 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_567", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.897632692529271, 18.312619197728679 ], [ -64.897619784392191, 18.312704022629532 ], [ -64.897594806308746, 18.312784991853107 ], [ -64.897606708616991, 18.312812987423115 ], [ -64.897614252333426, 18.312882557252919 ], [ -64.897637720363946, 18.312964029390855 ], [ -64.897677619551871, 18.313037790174235 ], [ -64.897709303161093, 18.313115238996772 ], [ -64.897757246360584, 18.313189167418273 ], [ -64.897833689354286, 18.313243817453213 ], [ -64.897873419594418, 18.313317578236592 ], [ -64.897901081197858, 18.313399050374585 ], [ -64.897888173060721, 18.313484042913558 ], [ -64.897879288239096, 18.313572891129866 ], [ -64.897874594371103, 18.313657883668895 ], [ -64.897861686234023, 18.313742708569748 ], [ -64.897848778096886, 18.313827701108778 ], [ -64.897811562428956, 18.313904814655018 ], [ -64.897762444452724, 18.313973881570348 ], [ -64.897689186583818, 18.314019646783663 ], [ -64.897607882084003, 18.314053844965031 ], [ -64.897526745222308, 18.314088043146398 ], [ -64.897441585045158, 18.314110506657698 ], [ -64.897319878442943, 18.314140513885491 ], [ -64.897234719575408, 18.314155266042121 ], [ -64.897093065343768, 18.314146381220496 ], [ -64.89698510637902, 18.314099107263928 ], [ -64.896940849909015, 18.314071782246458 ], [ -64.896864239277193, 18.314032387282566 ], [ -64.89678762864537, 18.313993159956908 ], [ -64.896719399920755, 18.313942365599246 ], [ -64.896655026873475, 18.313883859887028 ], [ -64.896603059048857, 18.313817810458261 ], [ -64.896538853639697, 18.313759304746043 ], [ -64.896462243007875, 18.313716054104873 ], [ -64.89639384664514, 18.313665259747211 ], [ -64.896321426966949, 18.313618321066883 ], [ -64.896281696726817, 18.31354456028356 ], [ -64.896233752217597, 18.313474655177515 ], [ -64.896181616754802, 18.313408438110628 ], [ -64.896129648930184, 18.31334238868186 ], [ -64.896053038298362, 18.313302993718025 ], [ -64.896102323912714, 18.31327801563458 ], [ -64.896275661753634, 18.31326359875419 ], [ -64.896361995397797, 18.31327617161503 ], [ -64.896452519995535, 18.313296455830425 ], [ -64.896526280778914, 18.313344400339588 ], [ -64.896591827293207, 18.31340005620342 ], [ -64.89666558807653, 18.313447833074463 ], [ -64.896743539813542, 18.313491754268171 ], [ -64.89681310964329, 18.313543554454668 ], [ -64.896791819599002, 18.313626032421553 ], [ -64.896795172361863, 18.313708678026501 ], [ -64.896881841282323, 18.313693590593573 ], [ -64.896960463571872, 18.313658889497731 ], [ -64.897043276814998, 18.31362804407928 ], [ -64.897129944425785, 18.31361681232363 ], [ -64.897216613346188, 18.313594013536033 ], [ -64.897299260260866, 18.313563168117525 ], [ -64.897377882550416, 18.313528299383563 ], [ -64.897452649162631, 18.313481695979533 ], [ -64.897510819598608, 18.31341916695186 ], [ -64.897528086327441, 18.313336688984975 ], [ -64.897504114072831, 18.31325370810373 ], [ -64.897492379402763, 18.313170894860548 ], [ -64.897480812370816, 18.3130882492556 ], [ -64.897469076391076, 18.313005436012475 ], [ -64.897428509269901, 18.312930334123962 ], [ -64.89742515650704, 18.312847688518957 ], [ -64.897462875089445, 18.312773089544862 ], [ -64.897492379402763, 18.312694634893489 ], [ -64.897522051354258, 18.31261618024206 ], [ -64.897563793252118, 18.312541581268022 ], [ -64.897585586210823, 18.312460276768149 ], [ -64.897617268510373, 18.312537893228807 ], [ -64.897632692529271, 18.312619197728679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1089", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.919673584135239, 18.361171554964756 ], [ -64.919672913582644, 18.361259732628525 ], [ -64.919687498101212, 18.361348245568536 ], [ -64.919694538903229, 18.361436424541978 ], [ -64.919693700712514, 18.361532144612511 ], [ -64.919692862521799, 18.361620489914401 ], [ -64.919692024331084, 18.361708667578171 ], [ -64.919745500899012, 18.361775387559476 ], [ -64.919799983295832, 18.361702129690514 ], [ -64.919831499266877, 18.361621495743293 ], [ -64.919916156529609, 18.361644294530834 ], [ -64.919923029693507, 18.361732639832724 ], [ -64.919945493204807, 18.361813776694419 ], [ -64.920006513489227, 18.361872952959288 ], [ -64.920099049744692, 18.361881168537991 ], [ -64.920138277070407, 18.361800534590714 ], [ -64.920154370332227, 18.361712355617328 ], [ -64.920170463594047, 18.361624177953559 ], [ -64.920179013139432, 18.361528625521146 ], [ -64.920179851330147, 18.361432902831268 ], [ -64.920180689520862, 18.361344726477228 ], [ -64.920189071428069, 18.361256547503785 ], [ -64.920189909618784, 18.361168203511568 ], [ -64.920213714235217, 18.361087400616498 ], [ -64.92023751885165, 18.360999390590905 ], [ -64.92029216888659, 18.36092630036012 ], [ -64.920423429553352, 18.360897801875637 ], [ -64.920515798170698, 18.360898641376025 ], [ -64.920615878142655, 18.360906686697263 ], [ -64.920677066065252, 18.360966030600252 ], [ -64.92068393922915, 18.361054375902143 ], [ -64.920690812393048, 18.36115009859202 ], [ -64.920690141840453, 18.361238442584238 ], [ -64.92069701500435, 18.361333997635995 ], [ -64.920696176813635, 18.361429717706528 ], [ -64.920703049977533, 18.361518063008418 ], [ -64.92070992314143, 18.361613784388624 ], [ -64.920716796305385, 18.361716715518753 ], [ -64.920739259816685, 18.361797851070776 ], [ -64.920738421625913, 18.361886196372666 ], [ -64.920737751073375, 18.361974374036379 ], [ -64.920744624237273, 18.362062720647941 ], [ -64.920821234869095, 18.362107478722749 ], [ -64.92089113997514, 18.362056516726966 ], [ -64.920945622371903, 18.361990802574496 ], [ -64.920969426988393, 18.361902624910783 ], [ -64.920993231604825, 18.361821990963506 ], [ -64.920970935731646, 18.361733478023439 ], [ -64.920979317638853, 18.361645300359726 ], [ -64.920987867184181, 18.361557122695956 ], [ -64.92097328266567, 18.361468609755946 ], [ -64.920989543565668, 18.36135847149535 ], [ -64.920998093110995, 18.361270293831581 ], [ -64.920975629599695, 18.361189156969886 ], [ -64.920991722861515, 18.361100980615845 ], [ -64.921038661541843, 18.36102772143721 ], [ -64.921093143938663, 18.36096200859447 ], [ -64.921185680194128, 18.36095530175902 ], [ -64.921448033889476, 18.360913224584863 ], [ -64.921540402506821, 18.36092143885395 ], [ -64.921632938762343, 18.36090735855953 ], [ -64.921725475017809, 18.360893444593557 ], [ -64.921817843635154, 18.360916243381155 ], [ -64.921886742912363, 18.3609682098961 ], [ -64.921971064898742, 18.361005760840385 ], [ -64.922039964175951, 18.361057728665003 ], [ -64.922116574807774, 18.36110986543747 ], [ -64.922100313907777, 18.361167531649301 ], [ -64.922057398542904, 18.36123995263722 ], [ -64.921963018267832, 18.36138462435548 ], [ -64.921911553357631, 18.361457042723998 ], [ -64.921893951352502, 18.361545724611858 ], [ -64.921901495068994, 18.361634740466343 ], [ -64.921925802599901, 18.361772370072856 ], [ -64.921941895861721, 18.361861385927341 ], [ -64.921966706307046, 18.361942356460588 ], [ -64.922006604185299, 18.362209402714257 ], [ -64.922005933632704, 18.362298250930621 ], [ -64.922022026894524, 18.362387434423226 ], [ -64.922021187394137, 18.362476282639534 ], [ -64.922003585389007, 18.362564964527394 ], [ -64.921977435148222, 18.362645597164942 ], [ -64.921951451235941, 18.362726231112219 ], [ -64.921924461494712, 18.362895880913982 ], [ -64.921898477582431, 18.362976514861202 ], [ -64.921846845034054, 18.36307307443218 ], [ -64.921803928359509, 18.36314549411037 ], [ -64.921735030392028, 18.363266193574077 ], [ -64.921709046479691, 18.363346659883177 ], [ -64.921699491105471, 18.363467862261302 ], [ -64.921724133912676, 18.363548999122997 ], [ -64.921743412299236, 18.363634829852685 ], [ -64.921682392014816, 18.36356810987138 ], [ -64.921613492737606, 18.36350859833027 ], [ -64.921529338389348, 18.363456462867475 ], [ -64.921460439112138, 18.363404495042857 ], [ -64.921375949487583, 18.363366944098573 ], [ -64.921291292224851, 18.363344312949152 ], [ -64.921206802600295, 18.36331413808324 ], [ -64.921137903323086, 18.363262170258622 ], [ -64.92105358133665, 18.36322462062401 ], [ -64.920976970704828, 18.363179859929915 ], [ -64.920892481080273, 18.363135100545435 ], [ -64.920808159093838, 18.363097717239327 ], [ -64.920731548462015, 18.363045581776532 ], [ -64.92065493783025, 18.362993447623467 ], [ -64.92057815956025, 18.362948686929315 ], [ -64.920493837573815, 18.362903927544892 ], [ -64.92040934794926, 18.362881128757294 ], [ -64.920324858324705, 18.362843745451187 ], [ -64.920248247692882, 18.362798986066707 ], [ -64.920171469422939, 18.362754226682284 ], [ -64.920110449138519, 18.362694882779294 ], [ -64.920049261215979, 18.362635538876305 ], [ -64.919972650584157, 18.362590779491882 ], [ -64.919903751306947, 18.362538811667264 ], [ -64.919827140675125, 18.362494053592457 ], [ -64.919765952752584, 18.362434708379794 ], [ -64.919704764830044, 18.362375364476861 ], [ -64.919635865552834, 18.362323229014066 ], [ -64.919566966275681, 18.362271262499064 ], [ -64.919513657345874, 18.362204542517759 ], [ -64.919444758068664, 18.362152573383469 ], [ -64.919376026429632, 18.362093229480479 ], [ -64.919307127152479, 18.362041094017684 ], [ -64.919238227875269, 18.361989127502738 ], [ -64.919192631609803, 18.361915197771566 ], [ -64.919115852030188, 18.361870438387086 ], [ -64.919039241398366, 18.361818302924348 ], [ -64.918970509759333, 18.361766336409346 ], [ -64.918917033191349, 18.361699616428041 ], [ -64.918863725571271, 18.361633062775184 ], [ -64.918794824984388, 18.361580928622118 ], [ -64.918718214352566, 18.361536167927966 ], [ -64.918641436082623, 18.361491408543543 ], [ -64.918557114096188, 18.361454026547108 ], [ -64.918480503464423, 18.36140188977464 ], [ -64.918411605496885, 18.361342545871651 ], [ -64.91834270491006, 18.361290410408856 ], [ -64.91825821659512, 18.361260404490793 ], [ -64.918220161426746, 18.361239617360923 ], [ -64.918197697915446, 18.361216146711058 ], [ -64.918197195001028, 18.361201060587803 ], [ -64.91820172254063, 18.361170047531175 ], [ -64.918190155508682, 18.36111271397624 ], [ -64.918175738628292, 18.361002240439348 ], [ -64.918138186374335, 18.360884224495635 ], [ -64.918133827782583, 18.360826892250373 ], [ -64.918141706775373, 18.360811635869595 ], [ -64.918159308780503, 18.360805434567965 ], [ -64.918208091480381, 18.360818510343165 ], [ -64.918292581104993, 18.36085606128745 ], [ -64.918375729624415, 18.360890259468817 ], [ -64.91846172799228, 18.360901489914795 ], [ -64.918546720531253, 18.360872657463688 ], [ -64.918639256786776, 18.360858743497772 ], [ -64.918723746411331, 18.360896125494207 ], [ -64.918784766695751, 18.36095546939714 ], [ -64.918869257630035, 18.360985645572725 ], [ -64.918946705142844, 18.360942058345643 ], [ -64.919031866629666, 18.360898641376025 ], [ -64.919116857859024, 18.360877182383888 ], [ -64.919144518152791, 18.360887743587 ], [ -64.919206544266046, 18.360844157669533 ], [ -64.919268738017479, 18.36077844351712 ], [ -64.919323724638389, 18.360738210362513 ], [ -64.919428664806844, 18.36072228473887 ], [ -64.919515669003601, 18.360721446548155 ], [ -64.919576856926142, 18.360780790451088 ], [ -64.919622454501337, 18.360854718872645 ], [ -64.919644918012636, 18.36093585573434 ], [ -64.919667213885759, 18.361016992596035 ], [ -64.919673584135239, 18.361171554964756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_673", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.921576779984093, 18.325626238702284 ], [ -64.921498828247138, 18.325588352481759 ], [ -64.921428923141093, 18.325539234505527 ], [ -64.921354994719593, 18.325493804568509 ], [ -64.921277210620758, 18.325455918347984 ], [ -64.921191212252893, 18.325440329310254 ], [ -64.921113428154058, 18.325402443089729 ], [ -64.921094485043795, 18.325320131451349 ], [ -64.921134885836523, 18.325171102451009 ], [ -64.921186350746723, 18.325104213521854 ], [ -64.921210155363156, 18.325069346097564 ], [ -64.921245527011536, 18.325043528513731 ], [ -64.921285257251668, 18.324969098487486 ], [ -64.921287268909396, 18.324931547543201 ], [ -64.921297662474331, 18.325031458567366 ], [ -64.921296991921736, 18.325112261462436 ], [ -64.921300344684653, 18.325195073395889 ], [ -64.921329848997971, 18.325274198599857 ], [ -64.921367567580376, 18.325349469436219 ], [ -64.921413165155514, 18.325421049614022 ], [ -64.921466976999739, 18.325486931404612 ], [ -64.921516765528509, 18.325554658524482 ], [ -64.921576779984093, 18.325626238702284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_698", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.891309381737585, 18.31332143391387 ], [ -64.891280381648357, 18.313402403137445 ], [ -64.891259425570695, 18.313483372360963 ], [ -64.89122640085634, 18.313560485907203 ], [ -64.89117711655166, 18.313629552822533 ], [ -64.891132020581267, 18.313706498730653 ], [ -64.891090950545674, 18.313779588961438 ], [ -64.891045688246777, 18.313852679192223 ], [ -64.890988523639692, 18.313918058068396 ], [ -64.890947283346577, 18.313991148299181 ], [ -64.890882073418254, 18.314048648182563 ], [ -64.890736060594804, 18.314093742843284 ], [ -64.890647043430647, 18.314081505258798 ], [ -64.890570432798881, 18.314042277933083 ], [ -64.890538750499331, 18.313964661472426 ], [ -64.890543610695829, 18.313875813256118 ], [ -64.890544450196217, 18.313790653078968 ], [ -64.890517460455044, 18.313717395210006 ], [ -64.890480746391802, 18.313654866182276 ], [ -64.890520645579784, 18.313661236431756 ], [ -64.890590884652454, 18.313735500129553 ], [ -64.890633632379149, 18.313811272570661 ], [ -64.890686270756362, 18.313879333657098 ], [ -64.890766401789222, 18.313913867114763 ], [ -64.890853407295594, 18.313905317569436 ], [ -64.890924819835277, 18.313856702507678 ], [ -64.890951306662032, 18.313776906751116 ], [ -64.890968070476447, 18.3136956022513 ], [ -64.891005790368524, 18.313618991619478 ], [ -64.891059434574572, 18.313551601085578 ], [ -64.891113246418797, 18.313485886933165 ], [ -64.891174937255812, 18.313426543030175 ], [ -64.89124148959894, 18.313370048975628 ], [ -64.891309381737585, 18.31332143391387 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_256", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.99752992320424, 18.35045260701861 ], [ -64.99759580499483, 18.350507423382055 ], [ -64.99766168678542, 18.350562242364788 ], [ -64.997679959343145, 18.350643882140901 ], [ -64.997660345680288, 18.350725186640773 ], [ -64.997612401171125, 18.350797103404545 ], [ -64.997564289023785, 18.350869186496766 ], [ -64.997516344514565, 18.350941272208388 ], [ -64.997296403269672, 18.351184012240878 ], [ -64.997248458760453, 18.351256096642828 ], [ -64.997209734349212, 18.351337233504523 ], [ -64.997171177576092, 18.351418370366218 ], [ -64.99712323306693, 18.351490453458439 ], [ -64.99707528855771, 18.351562539170061 ], [ -64.99703673178459, 18.351643674722084 ], [ -64.996988619637307, 18.351715760433649 ], [ -64.996940675128087, 18.351787677197422 ], [ -64.996883342882825, 18.351850707829897 ], [ -64.996835398373662, 18.351922624593669 ], [ -64.996777898490279, 18.351985656535817 ], [ -64.996720566245017, 18.352048520839844 ], [ -64.996682009471897, 18.352129657701539 ], [ -64.996643452698777, 18.352210963511027 ], [ -64.996595508189614, 18.352282880274799 ], [ -64.996528620570132, 18.352336690809352 ], [ -64.996471288324869, 18.3523997227515 ], [ -64.996395012969401, 18.352444314497802 ], [ -64.996309517515954, 18.35247080263423 ], [ -64.996233409798549, 18.352515560709037 ], [ -64.996147746706981, 18.352560152455339 ], [ -64.996062083615413, 18.352604745511314 ], [ -64.995976588161966, 18.352622178568595 ], [ -64.995891092708518, 18.352639612935548 ], [ -64.995805598564743, 18.352657214940677 ], [ -64.995710714065581, 18.35267448166951 ], [ -64.995615998514211, 18.352673812426644 ], [ -64.995521116634393, 18.352673140564377 ], [ -64.995426399773351, 18.352672471321455 ], [ -64.995331685531653, 18.352671631821067 ], [ -64.995218025560348, 18.352661742480223 ], [ -64.995123310008978, 18.352652019467882 ], [ -64.995028594457608, 18.352633242686125 ], [ -64.994934215492208, 18.352596363604107 ], [ -64.994849054005385, 18.35256853436249 ], [ -64.994764061466412, 18.352540706430602 ], [ -64.994688625611275, 18.35249494252696 ], [ -64.994622742511012, 18.352440123544227 ], [ -64.994547305346202, 18.35238530587111 ], [ -64.99447203581957, 18.352321269409799 ], [ -64.994415709403143, 18.352257565605385 ], [ -64.994349996560402, 18.352175590552974 ], [ -64.994331722693005, 18.352093950776862 ], [ -64.99434194861982, 18.352003593817244 ], [ -64.994399280865082, 18.351940561875097 ], [ -64.994494165364245, 18.351932347606009 ], [ -64.994588879605942, 18.351933019468277 ], [ -64.994674039783092, 18.351951793630747 ], [ -64.994759033631738, 18.351988675332109 ], [ -64.994844192499215, 18.352007281856402 ], [ -64.994938908050585, 18.352017172506919 ], [ -64.995024069537408, 18.352035781650557 ], [ -64.995109228404885, 18.352054555813027 ], [ -64.995213500640148, 18.352055395313414 ], [ -64.995308214881845, 18.352065118325754 ], [ -64.995402930433158, 18.352065787568677 ], [ -64.995497813622706, 18.352057405661469 ], [ -64.995602084548239, 18.352058243852184 ], [ -64.995696800099608, 18.352058914404779 ], [ -64.995791850927276, 18.352032596525817 ], [ -64.995877514018844, 18.351997057239316 ], [ -64.995972397208334, 18.351970570412561 ], [ -64.996020509355674, 18.351898484700939 ], [ -64.996068286226716, 18.351835452758792 ], [ -64.996116230735879, 18.351781474586119 ], [ -64.996173562981141, 18.351718610282092 ], [ -64.996230895226404, 18.351655744668449 ], [ -64.996288395109787, 18.351592712726301 ], [ -64.996336339618949, 18.351520797272201 ], [ -64.996393671864212, 18.351457765330053 ], [ -64.996451004109474, 18.351394899716354 ], [ -64.996508503992857, 18.351332035412383 ], [ -64.996565836238119, 18.351269003470236 ], [ -64.99659500527514, 18.351187866608541 ], [ -64.996652337520402, 18.351124834666393 ], [ -64.996709669765664, 18.351061970362366 ], [ -64.996776557385147, 18.351008158518141 ], [ -64.996843277366452, 18.350954346673916 ], [ -64.996900609611657, 18.350891482369946 ], [ -64.99696749723114, 18.350837670525721 ], [ -64.997024829476402, 18.350774638583573 ], [ -64.997082329359785, 18.350711775589218 ], [ -64.997158437077132, 18.350657962435321 ], [ -64.997225324696615, 18.350604150591096 ], [ -64.997282656941877, 18.350541287596798 ], [ -64.997358932297402, 18.350496694540823 ], [ -64.997444427750793, 18.35047004138562 ], [ -64.99752992320424, 18.35045260701861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_235", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.849866053964433, 18.333169452267839 ], [ -64.849849960702613, 18.333256624102717 ], [ -64.849872088937616, 18.333336755135576 ], [ -64.849848285630856, 18.333432979430199 ], [ -64.849831017592351, 18.333515457397084 ], [ -64.849805536594431, 18.333597935363912 ], [ -64.849767818012083, 18.333672365390157 ], [ -64.849697409991563, 18.333722824471522 ], [ -64.84961090870928, 18.333726009596262 ], [ -64.849508146527, 18.333701534427234 ], [ -64.849384598524523, 18.333688795237947 ], [ -64.849298263570688, 18.333672365390157 ], [ -64.849195670336258, 18.333636155551062 ], [ -64.849067762432412, 18.333654763385084 ], [ -64.848985115517735, 18.33368158548808 ], [ -64.848914539859095, 18.333755681547757 ], [ -64.848876318362272, 18.33384587217887 ], [ -64.848871121579805, 18.333758531396199 ], [ -64.848865758468889, 18.333672700666455 ], [ -64.848841952542728, 18.333574129437807 ], [ -64.848813958282392, 18.333495339510137 ], [ -64.848781602810902, 18.333416383253962 ], [ -64.848679512490889, 18.333329042471291 ], [ -64.84859736849063, 18.333296857257267 ], [ -64.848523775345427, 18.333249080386224 ], [ -64.848445823608472, 18.333213038185306 ], [ -64.848273325267996, 18.333148665137969 ], [ -64.848191182577409, 18.333120334291664 ], [ -64.848109207524999, 18.333088315406144 ], [ -64.847957493694992, 18.333012206379124 ], [ -64.847879543267709, 18.332972308500814 ], [ -64.847855569703427, 18.332889496567361 ], [ -64.847835788402449, 18.332806683324236 ], [ -64.847848865487379, 18.332724205357408 ], [ -64.847837298455431, 18.332641558442731 ], [ -64.847792537761279, 18.332570313541169 ], [ -64.847694135480424, 18.332526223399668 ], [ -64.847607800526589, 18.332513819486678 ], [ -64.847574106569368, 18.332513484210381 ], [ -64.847656918502821, 18.332483476982588 ], [ -64.847726154365944, 18.332427150566218 ], [ -64.847795387609779, 18.332375181431928 ], [ -64.847873674622974, 18.332336458330303 ], [ -64.847961015405701, 18.332319694515888 ], [ -64.848052879798956, 18.332298404471601 ], [ -64.848139716357537, 18.332316677029326 ], [ -64.848222026686244, 18.332352383954003 ], [ -64.848299475508782, 18.332392449470433 ], [ -64.848377093279112, 18.332436873578558 ], [ -64.848440626826005, 18.332498732053693 ], [ -64.848522769516592, 18.332534438978371 ], [ -64.848600387286922, 18.332574504494801 ], [ -64.848678002437907, 18.332614402373054 ], [ -64.84876484030616, 18.332645749396306 ], [ -64.848851675555125, 18.332659663362278 ], [ -64.848938847390002, 18.332664692506569 ], [ -64.849025851586703, 18.332665532007013 ], [ -64.84911302342158, 18.332666202559551 ], [ -64.849204387519762, 18.332688832399356 ], [ -64.84929139040679, 18.332711463548776 ], [ -64.84937353440705, 18.332747170473453 ], [ -64.849448299709593, 18.332795116292289 ], [ -64.84947277487862, 18.332846078288071 ], [ -64.849540835965058, 18.332897543198271 ], [ -64.849624319760778, 18.332927381478271 ], [ -64.849700259840006, 18.332971639257948 ], [ -64.849775864642993, 18.333023104168149 ], [ -64.849828670658326, 18.333088985958739 ], [ -64.849866053964433, 18.333169452267839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_537", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 5.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.961248675489628, 18.332557908318563 ], [ -64.961227050169043, 18.332595626900968 ], [ -64.961145745669171, 18.332636530608056 ], [ -64.961064608807476, 18.332665699645133 ], [ -64.960977436972598, 18.332665029092539 ], [ -64.960890266447393, 18.332670393513183 ], [ -64.960803094612515, 18.332669722960588 ], [ -64.960715921467965, 18.332663017434811 ], [ -64.960628749633088, 18.332668381855456 ], [ -64.960541411469762, 18.332679445972929 ], [ -64.960454070687035, 18.332702580036823 ], [ -64.96036673252371, 18.332725714100661 ], [ -64.960279391740983, 18.332748848164556 ], [ -64.960192053577657, 18.332760079920206 ], [ -64.96011091540629, 18.332789248957283 ], [ -64.960035813517777, 18.332836187637554 ], [ -64.959948475354395, 18.332853285418594 ], [ -64.959861469848022, 18.332840712557811 ], [ -64.959780835900744, 18.332798469055206 ], [ -64.959706573512619, 18.332750356907866 ], [ -64.959638512426181, 18.332696377425464 ], [ -64.959564247418712, 18.332648265278181 ], [ -64.959496187641889, 18.332594118157658 ], [ -64.959453272277017, 18.332516500387271 ], [ -64.959460145440914, 18.332433353177521 ], [ -64.959485792767282, 18.332350372296276 ], [ -64.959517476376504, 18.332273257440363 ], [ -64.959555531544879, 18.332196312841916 ], [ -64.959618226901057, 18.332137304215223 ], [ -64.959687293816387, 18.332084330561713 ], [ -64.959768599625875, 18.332037391881443 ], [ -64.959837497593412, 18.331984418227933 ], [ -64.959906564508742, 18.331919542266178 ], [ -64.959923495961277, 18.331903616642535 ], [ -64.959939087618352, 18.331986262247483 ], [ -64.959934895355048, 18.332069912371708 ], [ -64.959951660479135, 18.332153731443668 ], [ -64.959972112332707, 18.332234199062498 ], [ -64.96000647684258, 18.332311480246858 ], [ -64.960044364372777, 18.332388761431218 ], [ -64.960089291395377, 18.332459503418363 ], [ -64.960148466350518, 18.332520188426486 ], [ -64.960228597383377, 18.332567631330903 ], [ -64.960312585403187, 18.332591771223633 ], [ -64.96040025884281, 18.332575677961813 ], [ -64.960488102539955, 18.332562937462853 ], [ -64.96057242452639, 18.332536785912396 ], [ -64.96066026560419, 18.332524045413436 ], [ -64.960747772715308, 18.33252136320317 ], [ -64.960839135503818, 18.332502083506938 ], [ -64.960923457490253, 18.332475933266096 ], [ -64.961011299877725, 18.332466545530053 ], [ -64.961098806988844, 18.332473921608369 ], [ -64.961168544456768, 18.332524715966031 ], [ -64.961248675489628, 18.332557908318563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_569", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.89742515650704, 18.312847688518957 ], [ -64.897428509269901, 18.312930334123962 ], [ -64.897469076391076, 18.313005436012475 ], [ -64.897480812370816, 18.3130882492556 ], [ -64.897492379402763, 18.313170894860548 ], [ -64.897504114072831, 18.31325370810373 ], [ -64.897528086327441, 18.313336688984975 ], [ -64.897510819598608, 18.31341916695186 ], [ -64.897452649162631, 18.313481695979533 ], [ -64.897377882550416, 18.313528299383563 ], [ -64.897299260260866, 18.313563168117525 ], [ -64.897216613346188, 18.313594013536033 ], [ -64.897129944425785, 18.31361681232363 ], [ -64.897043276814998, 18.31362804407928 ], [ -64.896960463571872, 18.313658889497731 ], [ -64.896881841282323, 18.313693590593573 ], [ -64.896795172361863, 18.313708678026501 ], [ -64.896791819599002, 18.313626032421553 ], [ -64.89681310964329, 18.313543554454668 ], [ -64.896743539813542, 18.313491754268171 ], [ -64.89666558807653, 18.313447833074463 ], [ -64.896591827293207, 18.31340005620342 ], [ -64.896526280778914, 18.313344400339588 ], [ -64.896452519995535, 18.313296455830425 ], [ -64.896361995397797, 18.31327617161503 ], [ -64.896275661753634, 18.31326359875419 ], [ -64.896102323912714, 18.31327801563458 ], [ -64.896053038298362, 18.313302993718025 ], [ -64.895964022443934, 18.313298467488153 ], [ -64.895875006589449, 18.313301652612893 ], [ -64.895793869727754, 18.313331827478805 ], [ -64.895750954362882, 18.31330668175724 ], [ -64.895673002625927, 18.313270639556265 ], [ -64.895586333705467, 18.31326980136555 ], [ -64.895499832423184, 18.313269130812955 ], [ -64.895413331140901, 18.31326846026036 ], [ -64.895326494582264, 18.313291426686135 ], [ -64.895219038531991, 18.313329983459255 ], [ -64.895131866697113, 18.313396200526086 ], [ -64.895044694862236, 18.313474152263097 ], [ -64.895010664318988, 18.313584122885516 ], [ -64.894952493883011, 18.313646651913245 ], [ -64.894881918224371, 18.313697278632731 ], [ -64.894799272619423, 18.313724100735783 ], [ -64.894712603698963, 18.313731309175978 ], [ -64.894617888147593, 18.313730638623383 ], [ -64.894544127364213, 18.313678838436886 ], [ -64.894528369378691, 18.31359602519376 ], [ -64.894446059049983, 18.313567861985575 ], [ -64.89437565102952, 18.31361848870506 ], [ -64.89429702873997, 18.313653189800846 ], [ -64.89421035981951, 18.313660398241041 ], [ -64.894173982342295, 18.313585296352528 ], [ -64.894228129462817, 18.3135187440094 ], [ -64.89418756103197, 18.313443642120887 ], [ -64.89413458737846, 18.313376251586988 ], [ -64.894056803279625, 18.313312716730422 ], [ -64.893995447718908, 18.313253205189255 ], [ -64.89397566641793, 18.31317039194613 ], [ -64.894001147415793, 18.313087913979302 ], [ -64.894018246506505, 18.313005268374297 ], [ -64.894031322281762, 18.31292279040747 ], [ -64.894069208502287, 18.312848191433375 ], [ -64.894127378938265, 18.312781806728367 ], [ -64.894189740327818, 18.312723301016092 ], [ -64.894241540514315, 18.312656916311084 ], [ -64.894326700691465, 18.312630429484329 ], [ -64.894411860868615, 18.312615677327642 ], [ -64.894497021045765, 18.312597069493677 ], [ -64.894578157907461, 18.312566726989587 ], [ -64.894627443521813, 18.312493804396979 ], [ -64.894644374974348, 18.312412667535284 ], [ -64.894653762710391, 18.312549795537052 ], [ -64.894620067443441, 18.312628250188425 ], [ -64.894589724939408, 18.312638140838942 ], [ -64.894585701623953, 18.312639481944075 ], [ -64.894537421838493, 18.312655239929654 ], [ -64.894458799548943, 18.312693964340895 ], [ -64.894371962990363, 18.312720786443947 ], [ -64.89424707257308, 18.312853555853962 ], [ -64.894246402020485, 18.312936369097145 ], [ -64.894249754783345, 18.313022870379427 ], [ -64.8942697037225, 18.313105683622553 ], [ -64.89429367597711, 18.313188664503855 ], [ -64.89434664963062, 18.313259910715033 ], [ -64.89442862468303, 18.31331171090153 ], [ -64.894510767373561, 18.31334389742517 ], [ -64.894592910064148, 18.31337608394881 ], [ -64.894683434661886, 18.313400391479718 ], [ -64.894769768306048, 18.3134129643405 ], [ -64.894856269588388, 18.313417490570373 ], [ -64.894951320415998, 18.3134064264529 ], [ -64.895037989336458, 18.313383627665303 ], [ -64.895104374041466, 18.313328977630363 ], [ -64.895150474531079, 18.3132585696099 ], [ -64.895190540047508, 18.313224706704773 ], [ -64.895192719343356, 18.313222862685222 ], [ -64.895217529788681, 18.313202075555353 ], [ -64.895261618620566, 18.31317676219561 ], [ -64.895348287541026, 18.313161674762682 ], [ -64.895434788823309, 18.31316234531522 ], [ -64.895512740560264, 18.31320241083165 ], [ -64.895599409480724, 18.313191179076 ], [ -64.895686078401184, 18.313176259281192 ], [ -64.895772747321587, 18.313172906518275 ], [ -64.895859416242047, 18.313165698078137 ], [ -64.895950108477962, 18.313166536268852 ], [ -64.896036609760245, 18.313163183505935 ], [ -64.896194021977465, 18.313164524611125 ], [ -64.896255042261885, 18.313165027525542 ], [ -64.896341543544224, 18.313177432748205 ], [ -64.896419495281179, 18.3132136425873 ], [ -64.896493256064502, 18.313257396142888 ], [ -64.896571207801458, 18.313297461659317 ], [ -64.89664932717659, 18.31333752717569 ], [ -64.89673146986712, 18.313365690383876 ], [ -64.896813612557708, 18.313393853592117 ], [ -64.89689659343901, 18.313418161122968 ], [ -64.89698309341162, 18.313430733983751 ], [ -64.897069931279873, 18.313407767558033 ], [ -64.897144530253968, 18.313361164154003 ], [ -64.897194486420858, 18.313290588495363 ], [ -64.897207728524563, 18.313208110528535 ], [ -64.897233043193978, 18.313125632561707 ], [ -64.897250309922811, 18.313042986956702 ], [ -64.897279814236185, 18.31296453230533 ], [ -64.897297080965018, 18.312882054338445 ], [ -64.897322561962881, 18.312799576371617 ], [ -64.897335636428465, 18.312716930766612 ], [ -64.897356926472753, 18.312634452799784 ], [ -64.897374194511258, 18.3125519748329 ], [ -64.897411913093663, 18.312477375858862 ], [ -64.897449630366395, 18.312402944522887 ], [ -64.897481984528156, 18.312369081617817 ], [ -64.897517188538416, 18.312405626733209 ], [ -64.897585586210823, 18.312460276768149 ], [ -64.897563793252118, 18.312541581268022 ], [ -64.897522051354258, 18.31261618024206 ], [ -64.897492379402763, 18.312694634893489 ], [ -64.897462875089445, 18.312773089544862 ], [ -64.89742515650704, 18.312847688518957 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_530", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.974989134652901, 18.338330861773784 ], [ -64.974823340528474, 18.338401437432424 ], [ -64.974717896135871, 18.338443682244701 ], [ -64.974694762072033, 18.338515096094056 ], [ -64.974641285504106, 18.338629425308284 ], [ -64.974587641298001, 18.338758171402844 ], [ -64.974531650157928, 18.338896472871625 ], [ -64.974045499540296, 18.338866800920187 ], [ -64.973752131478648, 18.338884570563437 ], [ -64.973657920151368, 18.338878367952077 ], [ -64.973417191776605, 18.338862107052137 ], [ -64.97318685696672, 18.338860263032529 ], [ -64.97298753521352, 18.338908878094287 ], [ -64.972610517027647, 18.338925977184999 ], [ -64.972202150508906, 18.338922792060259 ], [ -64.972147835750206, 18.338925977184999 ], [ -64.972011210662856, 18.338917762915912 ], [ -64.971853295531218, 18.338945255571559 ], [ -64.971620446149188, 18.338943579190129 ], [ -64.971410227916635, 18.338949111248894 ], [ -64.97126002413961, 18.338947937781882 ], [ -64.971109485086288, 18.338989847317862 ], [ -64.970951905230947, 18.338974256970459 ], [ -64.970771358949833, 18.339008790428124 ], [ -64.97059802110897, 18.339079198448587 ], [ -64.970440441253572, 18.339070816541437 ], [ -64.970328123697129, 18.339034103787867 ], [ -64.970147409777894, 18.339097303368192 ], [ -64.969989997560674, 18.339045838457935 ], [ -64.969817834496439, 18.338994373547735 ], [ -64.969720100148834, 18.338993535357019 ], [ -64.969614655756232, 18.339028571729102 ], [ -64.969381806374258, 18.339041144589942 ], [ -64.969201930645738, 18.338989679679742 ], [ -64.969089614398911, 18.338960175366367 ], [ -64.969097827358326, 18.33888121780052 ], [ -64.969098665549041, 18.338780802552265 ], [ -64.969054410388651, 18.338673011225694 ], [ -64.968979474828643, 18.338650882990692 ], [ -64.968806639902198, 18.338678208008162 ], [ -64.96855132831854, 18.338669155548359 ], [ -64.968431130459635, 18.338675358159719 ], [ -64.968431130459635, 18.338682566599914 ], [ -64.968240359561435, 18.338688266296799 ], [ -64.967969791597, 18.338707712321479 ], [ -64.967774491849582, 18.338706203578226 ], [ -64.967601658232752, 18.338719279353427 ], [ -64.967451285507934, 18.338739563568879 ], [ -64.967316170473566, 18.338745766180182 ], [ -64.967173510412977, 18.338744592713169 ], [ -64.967128917357002, 18.338679716751471 ], [ -64.967122379469401, 18.338572093063021 ], [ -64.967250119735127, 18.338558849649644 ], [ -64.967407868538317, 18.338545606236266 ], [ -64.967640716610674, 18.338540241815679 ], [ -64.967850934843227, 18.338541918197109 ], [ -64.968113960400842, 18.338522304534251 ], [ -64.968361895906128, 18.338517107751784 ], [ -64.968564739370038, 18.338504199614704 ], [ -64.968835138386623, 18.338506378910552 ], [ -64.969203607027168, 18.338444688073594 ], [ -64.969436624047319, 18.338417698332364 ], [ -64.969677017145841, 18.338405125471581 ], [ -64.969819678516046, 18.338406298938594 ], [ -64.970082701454317, 18.338386852913914 ], [ -64.970368356851679, 18.338360198448981 ], [ -64.970563487651305, 18.338368915632486 ], [ -64.970833720339442, 18.338370927290214 ], [ -64.970961460605167, 18.338371933119049 ], [ -64.971055170327645, 18.338394228992229 ], [ -64.971182407678953, 18.338430941745742 ], [ -64.971415089422806, 18.338447202645739 ], [ -64.971745504204648, 18.338463966460154 ], [ -64.971955722437201, 18.338458434401389 ], [ -64.972541953026791, 18.338405460747879 ], [ -64.972872535446754, 18.338393726077811 ], [ -64.973090129757679, 18.338402610899436 ], [ -64.973270508400617, 18.338389535124179 ], [ -64.973465806838362, 18.338376626987099 ], [ -64.973697147477083, 18.338371262566511 ], [ -64.974004931109448, 18.338388026380926 ], [ -64.974207773263686, 18.338382326683984 ], [ -64.974470797511628, 18.338370089099499 ], [ -64.974628377367026, 18.338371262566511 ], [ -64.974838929566204, 18.338336896746966 ], [ -64.974989134652901, 18.338330861773784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_323", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.883793997413648, 18.315207195395715 ], [ -64.883781927467226, 18.315293695368382 ], [ -64.883764157823975, 18.315374665901572 ], [ -64.883746389490398, 18.315455801453595 ], [ -64.88372308647871, 18.315536771986842 ], [ -64.88366575554312, 18.315606677092887 ], [ -64.883608589626363, 18.315669541396915 ], [ -64.883534493566685, 18.315717485906077 ], [ -64.883449333389535, 18.315738608312245 ], [ -64.883364005574265, 18.315764927500823 ], [ -64.883295610521202, 18.31581840406875 ], [ -64.883294772330487, 18.31590507298921 ], [ -64.883305333533542, 18.315991740599998 ], [ -64.88331019373004, 18.316083775250718 ], [ -64.88330382348056, 18.316170276533001 ], [ -64.883280355450097, 18.316251244446903 ], [ -64.883262753444967, 18.31633238261827 ], [ -64.883228052349125, 18.316413184203668 ], [ -64.883215813454967, 18.316499685486008 ], [ -64.883198211449837, 18.316580822347703 ], [ -64.883174743419374, 18.316667154682193 ], [ -64.883156972466395, 18.316748125215383 ], [ -64.88314490252003, 18.316834626497666 ], [ -64.88310466936548, 18.316910062352804 ], [ -64.883053036817159, 18.316980136406698 ], [ -64.883001405578455, 18.317050041512744 ], [ -64.882927309518834, 18.317098152350411 ], [ -64.882858745517922, 18.317151630228011 ], [ -64.882776601517662, 18.317219691314449 ], [ -64.882702505458042, 18.317267803461789 ], [ -64.882628409398365, 18.317315915609129 ], [ -64.882548782589652, 18.317353131277059 ], [ -64.882463453464709, 18.317390345635374 ], [ -64.882378125649382, 18.317416832462129 ], [ -64.882287433413467, 18.317426890750767 ], [ -64.882196742487281, 18.317426052560052 ], [ -64.882106216579814, 18.317414485528104 ], [ -64.882015693291748, 18.317403087444006 ], [ -64.881925167384281, 18.317391520412059 ], [ -64.881834476458096, 18.317385316491084 ], [ -64.881743784222181, 18.317384647248161 ], [ -64.881653259624386, 18.317378444636859 ], [ -64.881557035329763, 18.317372240715827 ], [ -64.881460809725411, 18.317360673683879 ], [ -64.881370117489553, 18.317359835493164 ], [ -64.88127942656331, 18.317359166250299 ], [ -64.881188734327395, 18.317363858808619 ], [ -64.88109804209148, 18.317373918406929 ], [ -64.881012880604658, 18.317394873174919 ], [ -64.88092755409906, 18.317426724422319 ], [ -64.880842226283733, 18.317469304510894 ], [ -64.880756898468462, 18.317495622389799 ], [ -64.880666206232547, 18.317494953146934 ], [ -64.880575681634809, 18.317494113646489 ], [ -64.880484989398894, 18.317493444403624 ], [ -64.880394297162979, 18.317492772541357 ], [ -64.880303772565242, 18.317486571239726 ], [ -64.880218780026212, 18.317469638477519 ], [ -64.880134121453807, 18.317441810545574 ], [ -64.880055165197689, 18.317397889351867 ], [ -64.879987607025612, 18.317343240626599 ], [ -64.879931615885539, 18.317272497329839 ], [ -64.879852658319692, 18.317228576136074 ], [ -64.879773699444229, 18.317190019362954 ], [ -64.879694743188054, 18.317146098169246 ], [ -64.879609918287201, 18.317123802296067 ], [ -64.879525261024469, 18.317095974364179 ], [ -64.879446303458678, 18.317052053170471 ], [ -64.879463905463751, 18.316971082637224 ], [ -64.879515538012129, 18.316901177531179 ], [ -64.879582090355314, 18.316844683476688 ], [ -64.879584102013041, 18.316842673128633 ], [ -64.879586112361096, 18.316840492523056 ], [ -64.879587956380647, 18.316838482175001 ], [ -64.879589969348046, 18.316836470517273 ], [ -64.879591981005774, 18.316834291221426 ], [ -64.879593991353829, 18.316832279563698 ], [ -64.879595835373436, 18.316830100267794 ], [ -64.879597848340836, 18.316828088610066 ], [ -64.879599859998564, 18.316825909314218 ], [ -64.879601870346619, 18.316823896346818 ], [ -64.879603714366169, 18.316821718360586 ], [ -64.879605727333626, 18.316819705393186 ], [ -64.879607738991353, 18.316817527407011 ], [ -64.879609583010904, 18.316815514439611 ], [ -64.879611593358959, 18.316813336453379 ], [ -64.879613437378566, 18.316811323485979 ], [ -64.879615450345966, 18.316809145499803 ], [ -64.879617294365516, 18.316806966203956 ], [ -64.879619306023244, 18.316804954546228 ], [ -64.879621150042851, 18.316802775250324 ], [ -64.879623160390906, 18.316800594644803 ], [ -64.879625004410457, 18.316798584296748 ], [ -64.879627017377913, 18.316796403691171 ], [ -64.879628861397464, 18.316794224395323 ], [ -64.879630705417071, 18.316792214047268 ], [ -64.879632717074799, 18.316790033441691 ], [ -64.879634561094349, 18.316787855455516 ], [ -64.879636405113956, 18.316785676159668 ], [ -64.879638416771684, 18.316783495554091 ], [ -64.879640260791234, 18.316781485206036 ], [ -64.879642104810841, 18.316779304600516 ], [ -64.879643948830449, 18.316777126614284 ], [ -64.879645960488176, 18.316774947318436 ], [ -64.879647804507727, 18.316772766712859 ], [ -64.879649648527334, 18.316770587417011 ], [ -64.879651492546884, 18.316768409430836 ], [ -64.879653336566491, 18.316766230134931 ], [ -64.879655180586099, 18.316764049529411 ], [ -64.879657192243826, 18.316761871543179 ], [ -64.879659036263376, 18.316759692247331 ], [ -64.879660880282984, 18.316757511641754 ], [ -64.879662724302534, 18.316755332345906 ], [ -64.879664568322141, 18.316753154359731 ], [ -64.879666412341749, 18.316750975063826 ], [ -64.879668256361299, 18.316748794458306 ], [ -64.879669931433057, 18.316746616472074 ], [ -64.879671775452664, 18.316744437176226 ], [ -64.879673620781944, 18.316742256570706 ], [ -64.879675464801494, 18.316740078584473 ], [ -64.879677308821101, 18.316737899288626 ], [ -64.879679152840652, 18.316735552354601 ], [ -64.879680996860259, 18.316733373058696 ], [ -64.879682673241689, 18.316731192453176 ], [ -64.879684517261296, 18.316729014467001 ], [ -64.879686361280847, 18.316726835171096 ], [ -64.879688205300454, 18.316724488237071 ], [ -64.879689880372212, 18.316722307631551 ], [ -64.879691724391819, 18.316720129645319 ], [ -64.879693568411369, 18.316717781401678 ], [ -64.879695246102472, 18.316715603415446 ], [ -64.879697090122079, 18.316713424119598 ], [ -64.879698766503509, 18.316711077185573 ], [ -64.879700610523116, 18.316708896579996 ], [ -64.879702454542667, 18.316706718593821 ], [ -64.879704130924154, 18.316704370350124 ], [ -64.879705974943704, 18.316702192363948 ], [ -64.879707651325134, 18.316699845429923 ], [ -64.879709326396892, 18.316697666134019 ], [ -64.879711170416499, 18.316695319200051 ], [ -64.879712848107602, 18.316693138594474 ], [ -64.879714692127209, 18.316690960608298 ], [ -64.879716368508639, 18.316688612364601 ], [ -64.879718044890069, 18.316686265430576 ], [ -64.879719888909676, 18.316684087444401 ], [ -64.879721565291106, 18.316681740510376 ], [ -64.879723240362864, 18.316679561214471 ], [ -64.879725084382471, 18.316677214280503 ], [ -64.879726762073574, 18.316675033674926 ], [ -64.879728438455004, 18.316672688050573 ], [ -64.879730114836434, 18.316670341116549 ], [ -64.879731791217864, 18.316668160511028 ], [ -64.879733467599351, 18.316665813577004 ], [ -64.879735311618902, 18.316663466642979 ], [ -64.879736988000332, 18.316661287347131 ], [ -64.879738664381762, 18.316658940413106 ], [ -64.879740339453576, 18.316656593479081 ], [ -64.879742017144679, 18.316654415492906 ], [ -64.879743693526109, 18.316652068558881 ], [ -64.879745369907539, 18.316649721624856 ], [ -64.879747046288969, 18.316647373381159 ], [ -64.879748721360784, 18.316645026447134 ], [ -64.879750399051886, 18.316642848460958 ], [ -64.879751907795139, 18.316640501526933 ], [ -64.879753584176626, 18.316638154592908 ], [ -64.879755260558056, 18.316635806349211 ], [ -64.879756936939486, 18.316633459415243 ], [ -64.879758613320917, 18.316631112481218 ], [ -64.879760288392674, 18.316628765547193 ], [ -64.879761798445656, 18.316626418613168 ], [ -64.879763474827087, 18.316624240626993 ], [ -64.879765151208517, 18.316621892383296 ], [ -64.879766659951827, 18.316619545449271 ], [ -64.879768336333257, 18.316617198515246 ], [ -64.879770011405071, 18.316614851581221 ], [ -64.879771521457997, 18.316612504647196 ], [ -64.879773197839427, 18.3166101590229 ], [ -64.879774874220914, 18.316607812088876 ], [ -64.879776382964167, 18.316605465154851 ], [ -64.879778059345654, 18.316603118220826 ], [ -64.879779568088907, 18.316600603648681 ], [ -64.879781244470394, 18.316598255404983 ], [ -64.879782753213647, 18.316595908470958 ], [ -64.879784429595077, 18.316593561536934 ], [ -64.879785938338387, 18.316591214602909 ], [ -64.879787447081696, 18.316588867668941 ], [ -64.879789123463127, 18.316586522044588 ], [ -64.879790632206436, 18.316584175110563 ], [ -64.879792140949746, 18.316581660538418 ], [ -64.879793817331176, 18.316579313604393 ], [ -64.879795326074486, 18.316576965360696 ], [ -64.879796834817739, 18.316574618426671 ], [ -64.879798343561049, 18.316572105164198 ], [ -64.879800019942479, 18.316569758230173 ], [ -64.879801527376117, 18.316567411296148 ], [ -64.879803037429099, 18.316565064362123 ], [ -64.879804546172409, 18.316562548480306 ], [ -64.879806054915662, 18.316560201546281 ], [ -64.879807562349299, 18.316557854612256 ], [ -64.879809072402281, 18.316555341349783 ], [ -64.879810581145591, 18.316552994415758 ], [ -64.879812089888844, 18.316550647481733 ], [ -64.879813598632154, 18.316548131599916 ], [ -64.879815107375464, 18.316545784665891 ], [ -64.879816616118774, 18.316543271403418 ], [ -64.879818124862027, 18.316540924469393 ], [ -64.879819633605337, 18.316538577535368 ], [ -64.879821142348646, 18.316536061653551 ], [ -64.879822651091956, 18.316533716029198 ], [ -64.879824159835209, 18.316531201457053 ], [ -64.879825500940399, 18.316528854523028 ], [ -64.879827008373979, 18.316526338641211 ], [ -64.879828518426962, 18.316523993016858 ], [ -64.879830027170271, 18.316521478444713 ], [ -64.879831368275404, 18.316519131510688 ], [ -64.879832877018714, 18.316516615628871 ], [ -64.879834384452352, 18.316514270004518 ], [ -64.879835726867157, 18.316511755432373 ], [ -64.879837235610466, 18.316509239550498 ], [ -64.879838575405927, 18.316506892616474 ], [ -64.879840085458909, 18.316504379354001 ], [ -64.879841594202219, 18.316502032419976 ], [ -64.879842935307352, 18.316499516538158 ], [ -64.879844444050661, 18.316497003275686 ], [ -64.879845785155794, 18.316494656341661 ], [ -64.879847126260984, 18.316492140459843 ], [ -64.879848635004237, 18.31648962719737 ], [ -64.879849976109426, 18.316487280263345 ], [ -64.879851484852679, 18.316484764381471 ], [ -64.879852825957869, 18.316482251118998 ], [ -64.879854167063002, 18.316479736546853 ], [ -64.879855675806311, 18.316477389612828 ], [ -64.879857016911444, 18.316474875040683 ], [ -64.879858358016634, 18.316472360468538 ], [ -64.879859699121766, 18.316469844586663 ], [ -64.879861040226899, 18.316467331324191 ], [ -64.879862548970209, 18.316464984390166 ], [ -64.879863890075342, 18.316462468508348 ], [ -64.879865231180531, 18.316459955245875 ], [ -64.879866572285664, 18.316457439364001 ], [ -64.879867913390797, 18.316454926101528 ], [ -64.879869254495986, 18.316452411529383 ], [ -64.879870595601119, 18.316449895647565 ], [ -64.879871935396579, 18.316447550023213 ], [ -64.879873277811441, 18.316445035451011 ], [ -64.879874618916574, 18.316442519569193 ], [ -64.879875960021707, 18.316440006306721 ], [ -64.879877301126896, 18.316437490424903 ], [ -64.879878642232029, 18.316434977162373 ], [ -64.879879983337162, 18.316432462590228 ], [ -64.879881156804174, 18.316429948018083 ], [ -64.879882497909364, 18.316427433445938 ], [ -64.879883839014497, 18.316424917564063 ], [ -64.879885180119629, 18.316422404301591 ], [ -64.879886521224819, 18.316419888419773 ], [ -64.879887693382159, 18.3164173751573 ], [ -64.879889034487292, 18.316414860585098 ], [ -64.879890376902097, 18.316412346012953 ], [ -64.879891550369109, 18.316409831440808 ], [ -64.879892891474242, 18.31640731555899 ], [ -64.879894064941254, 18.316404633348668 ], [ -64.879895406046444, 18.316402120086195 ], [ -64.879896579513456, 18.316399605513993 ], [ -64.879897920618589, 18.316397089632176 ], [ -64.879899094085602, 18.316394576369703 ], [ -64.879900435190734, 18.316392060487885 ], [ -64.879901607348074, 18.316389547225356 ], [ -64.879902948453264, 18.31638686501509 ], [ -64.879904123229892, 18.316384350442888 ], [ -64.879905295387232, 18.316381834561071 ], [ -64.879906637802094, 18.316379321298598 ], [ -64.879907811269106, 18.31637680541678 ], [ -64.879908983426446, 18.31637412451613 ], [ -64.879910325841252, 18.316371608634313 ], [ -64.879911499308264, 18.316369095371783 ], [ -64.879912671465604, 18.316366579489966 ], [ -64.879913846242289, 18.316363898589316 ], [ -64.879915018399629, 18.316361384017171 ], [ -64.879916360814434, 18.316358869445025 ], [ -64.879917534281446, 18.316356187234703 ], [ -64.879918706438787, 18.316353671352886 ], [ -64.879919881215471, 18.316351158090413 ], [ -64.879921053372811, 18.316348474570418 ], [ -64.879922228149496, 18.316345961307945 ], [ -64.879923401616452, 18.316343445426128 ], [ -64.879924575083464, 18.316340764525478 ], [ -64.879925748550477, 18.31633824864366 ], [ -64.879926922017489, 18.316335735381131 ], [ -64.879928095484502, 18.316333053170865 ], [ -64.879929101313394, 18.316330538598663 ], [ -64.879930273470734, 18.316327856388398 ], [ -64.879931448247362, 18.316325340506523 ], [ -64.879932620404702, 18.31632265960593 ], [ -64.879933795181387, 18.316320145033785 ], [ -64.879934801010279, 18.31631746151379 ], [ -64.879935974477291, 18.316314948251318 ], [ -64.879937147944304, 18.316312432369443 ], [ -64.879938152463467, 18.31630975146885 ], [ -64.879939327240152, 18.316307235586976 ], [ -64.879940499397492, 18.31630455337671 ], [ -64.879941506536056, 18.31630187247606 ], [ -64.879942680003012, 18.316299356594243 ], [ -64.879943685831904, 18.316296674383921 ], [ -64.879944859298917, 18.316294161121448 ], [ -64.879945865127752, 18.316291477601453 ], [ -64.879947038594764, 18.31628896433898 ], [ -64.879948044423656, 18.316286282128658 ], [ -64.879949050252492, 18.316283767556513 ], [ -64.879950222409832, 18.316281085346191 ], [ -64.879951229548396, 18.316278403135925 ], [ -64.879952235377232, 18.316275888563723 ], [ -64.879953408844244, 18.316273206353458 ], [ -64.879954413363464, 18.316270524143135 ], [ -64.879955420501972, 18.31626800957099 ], [ -64.879956426330864, 18.316265327360668 ], [ -64.879957598488204, 18.316262645150346 ], [ -64.879958605626712, 18.3162601305782 ], [ -64.879959611455604, 18.316257448367878 ], [ -64.879960617284439, 18.316254766157613 ], [ -64.879961623113331, 18.316252251585411 ], [ -64.879962628942167, 18.316249569375145 ], [ -64.879963633461387, 18.316246887164823 ], [ -64.879964640599894, 18.316244372592678 ], [ -64.879965646428786, 18.316241690382356 ], [ -64.879966652257622, 18.31623900817209 ], [ -64.879967658086514, 18.316236325961768 ], [ -64.879968663915349, 18.316233811389623 ], [ -64.879969668434569, 18.3162311291793 ], [ -64.879970675573077, 18.316228446968978 ], [ -64.879971681401969, 18.31622576344904 ], [ -64.879972519592684, 18.31622308254839 ], [ -64.879973525421519, 18.316220567976245 ], [ -64.879974531250411, 18.31621788445625 ], [ -64.879975537079247, 18.316215203555601 ], [ -64.879976375269962, 18.316212521345335 ], [ -64.879977381098854, 18.316209839135013 ], [ -64.879978386927689, 18.316207155615018 ], [ -64.879979225118404, 18.316204473404753 ], [ -64.879980230947297, 18.316201960142223 ], [ -64.879981069138012, 18.316199276622285 ], [ -64.879982074966904, 18.316196594411963 ], [ -64.879983079486067, 18.316193913511313 ], [ -64.879983918986454, 18.316191231301048 ], [ -64.879984757177169, 18.316188549090725 ], [ -64.879985763006061, 18.316185865570731 ], [ -64.879986601196777, 18.316183183360465 ], [ -64.879987607025612, 18.316180502459815 ], [ -64.879988445216327, 18.316177820249493 ], [ -64.879989283407042, 18.316175138039171 ], [ -64.879990289235934, 18.316172454519233 ], [ -64.879991127426649, 18.31616994125676 ], [ -64.879991965617364, 18.316167259046438 ], [ -64.879992802498407, 18.316164575526443 ], [ -64.879993809636971, 18.31616189462585 ], [ -64.879994647827687, 18.316159212415528 ], [ -64.879995486018402, 18.316156530205205 ], [ -64.879996324209117, 18.316153847994883 ], [ -64.879997162399832, 18.316151164474945 ], [ -64.879998000590547, 18.316148314626503 ], [ -64.879998837471589, 18.31614563241618 ], [ -64.879999676971977, 18.316142951515531 ], [ -64.880000515162692, 18.316140269305265 ], [ -64.880001353353464, 18.316137587094943 ], [ -64.880002191544179, 18.316134903574948 ], [ -64.880003028425222, 18.316132221364683 ], [ -64.880003867925609, 18.316129540464033 ], [ -64.880004706116324, 18.31612685825371 ], [ -64.880005544307039, 18.316124176043445 ], [ -64.880006382497754, 18.31612149252345 ], [ -64.880007053050349, 18.3161188116228 ], [ -64.880007891241064, 18.316116129412535 ], [ -64.880008729431779, 18.316113279564036 ], [ -64.880009399984374, 18.31611059735377 ], [ -64.880010238175089, 18.316107915143448 ], [ -64.880011076365804, 18.316105232933126 ], [ -64.880011746918342, 18.316102549413188 ], [ -64.880012585109114, 18.316099868512538 ], [ -64.880013423299829, 18.316097017354423 ], [ -64.880014093852367, 18.316094336453773 ], [ -64.880014932043082, 18.316091654243507 ], [ -64.880015602595677, 18.316088972033185 ], [ -64.880016439476719, 18.316086288513191 ], [ -64.880017111338987, 18.316083607612597 ], [ -64.880017781891524, 18.316080756454426 ], [ -64.880018620082296, 18.316078075553833 ], [ -64.880019290634834, 18.31607539334351 ], [ -64.880020128825549, 18.316072711133188 ], [ -64.880020799378144, 18.316069861284745 ], [ -64.880021469930739, 18.31606717907448 ], [ -64.880022140483277, 18.316064495554485 ], [ -64.88002297736432, 18.316061814653835 ], [ -64.880023649226587, 18.31605896349572 ], [ -64.880024318469509, 18.316056282595127 ], [ -64.880024990331719, 18.316053600384805 ], [ -64.880025660884314, 18.316050918174483 ], [ -64.880026331436909, 18.31604806832604 ], [ -64.880027001989447, 18.316045386115718 ], [ -64.880027672542042, 18.31604270259578 ], [ -64.880028343094637, 18.31603985405701 ], [ -64.880029013647174, 18.316037170537015 ], [ -64.880029684199769, 18.316034489636365 ], [ -64.880030353442692, 18.31603163847825 ], [ -64.880031025304902, 18.316028957577657 ], [ -64.880031695857497, 18.316026275367335 ], [ -64.880032366410092, 18.316023425518893 ], [ -64.880033036962629, 18.31602074330857 ], [ -64.880033539877104, 18.316018061098248 ], [ -64.880034210429642, 18.316015211249805 ], [ -64.880034880982237, 18.31601252903954 ], [ -64.880035551534831, 18.316009845519545 ], [ -64.880036054449249, 18.316006996980775 ], [ -64.880036725001844, 18.31600431346078 ], [ -64.880037395554382, 18.31600163256013 ], [ -64.880037898468856, 18.315998781402016 ], [ -64.880038569021394, 18.315996100501422 ], [ -64.880039071935812, 18.31599325065298 ], [ -64.880039742488407, 18.315990568442658 ], [ -64.880040245402824, 18.315987886232335 ], [ -64.880040915955419, 18.315985036383893 ], [ -64.880041418869837, 18.31598235417357 ], [ -64.880042089422432, 18.315979504325128 ], [ -64.880042592336849, 18.315976822114862 ], [ -64.880043095251267, 18.31597397226642 ], [ -64.880043764494189, 18.315971290056098 ], [ -64.880044267408607, 18.315968606536103 ], [ -64.880044771632754, 18.315965757997333 ], [ -64.880045442185292, 18.315963074477338 ], [ -64.880045945099766, 18.315960225938568 ], [ -64.880046448014184, 18.31595754241863 ], [ -64.880046950928602, 18.315954692570187 ], [ -64.880047453843019, 18.315952010359865 ], [ -64.880048124395614, 18.315949160511423 ], [ -64.880048627310032, 18.315946479610773 ], [ -64.88004913022445, 18.315943628452658 ], [ -64.880049633138924, 18.315940947552008 ], [ -64.880050136053342, 18.315938096393893 ], [ -64.880050638967759, 18.3159354154933 ], [ -64.880051141882234, 18.315932565644857 ], [ -64.880051643486979, 18.315929883434535 ], [ -64.880051980072949, 18.315927033586092 ], [ -64.880052482987367, 18.31592435137577 ], [ -64.880052985901784, 18.315921501527328 ], [ -64.88005348750653, 18.315918819317005 ], [ -64.880053990421004, 18.315915969468563 ], [ -64.880054494645094, 18.315913287258297 ], [ -64.880054829921392, 18.315910437409798 ], [ -64.880055332835809, 18.315907755199532 ], [ -64.880055834440554, 18.31590490535109 ], [ -64.880056171026524, 18.315902055502647 ], [ -64.880056673940942, 18.315899373292325 ], [ -64.880057176855416, 18.315896523443882 ], [ -64.880057512131657, 18.31589384123356 ], [ -64.880058015046131, 18.315890991385118 ], [ -64.880058350322372, 18.315888309174795 ], [ -64.880058853236847, 18.315885459326353 ], [ -64.880059188513144, 18.31588260947791 ], [ -64.880059691427562, 18.315879927267588 ], [ -64.880060025394187, 18.315877077419145 ], [ -64.8800603619801, 18.31587439520888 ], [ -64.880060864894574, 18.315871545360437 ], [ -64.880061200170871, 18.315868863150115 ], [ -64.880061535447112, 18.315866013301672 ], [ -64.880062038361586, 18.31586316345323 ], [ -64.880062373637827, 18.315860481242908 ], [ -64.880062708914124, 18.315857631394465 ], [ -64.880063044190422, 18.315854781546022 ], [ -64.880063547104839, 18.3158520993357 ], [ -64.880063882381137, 18.315849249487258 ], [ -64.880064216347762, 18.315846567276935 ], [ -64.880064552933732, 18.315843717428493 ], [ -64.880064888210029, 18.31584086758005 ], [ -64.880065223486326, 18.315838185369785 ], [ -64.880065557452895, 18.315835335521285 ], [ -64.880065894038864, 18.31583248436317 ], [ -64.880066229315162, 18.315829803462577 ], [ -64.880066564591459, 18.315826953614135 ], [ -64.880066899867757, 18.315824271403812 ], [ -64.880067235144054, 18.31582142155537 ], [ -64.880067401472502, 18.315818570397255 ], [ -64.880067738058472, 18.315815889496605 ], [ -64.880068073334769, 18.315813039648162 ], [ -64.88006840861101, 18.315810188490047 ], [ -64.880068576249187, 18.315807507589398 ], [ -64.880068911525484, 18.315804656431283 ], [ -64.880069245492109, 18.315801807892512 ], [ -64.880069582078022, 18.315799124372518 ], [ -64.880069748406527, 18.315796274524075 ], [ -64.880070084992497, 18.315793425985305 ], [ -64.880070252630617, 18.31579074246531 ], [ -64.880070587906914, 18.31578789392654 ], [ -64.880070755545034, 18.315785044078098 ], [ -64.880071089511659, 18.315782194229655 ], [ -64.880071258459509, 18.315779512019333 ], [ -64.880071592426077, 18.31577666217089 ], [ -64.880071761373927, 18.315773812322448 ], [ -64.880071929012047, 18.315771130112182 ], [ -64.880072264288344, 18.315768280263683 ], [ -64.880072431926521, 18.31576543041524 ], [ -64.880072599564642, 18.315762748204975 ], [ -64.880072934840939, 18.315759898356532 ], [ -64.880073102479059, 18.31575704850809 ], [ -64.880073270117236, 18.315754197349918 ], [ -64.880073436445684, 18.315751516449325 ], [ -64.880073605393477, 18.315748666600882 ], [ -64.880073939360102, 18.315745815442767 ], [ -64.880074108307952, 18.315743134542117 ], [ -64.880074275946072, 18.315740283384002 ], [ -64.880074443584249, 18.31573743353556 ], [ -64.880074611222369, 18.31573458499679 ], [ -64.880074778860489, 18.315731901476795 ], [ -64.880074946498667, 18.315729052938025 ], [ -64.880075114136787, 18.315726203089582 ], [ -64.880075280465292, 18.31572352087926 ], [ -64.880075280465292, 18.315720671030817 ], [ -64.880075449413084, 18.315717821182375 ], [ -64.880075617051205, 18.315714971333932 ], [ -64.880075783379709, 18.31571228912361 ], [ -64.880075952327502, 18.315709439275167 ], [ -64.880075952327502, 18.315706589426725 ], [ -64.880076119965679, 18.315703739578282 ], [ -64.880076287603799, 18.31570105736796 ], [ -64.880076455241976, 18.315698207519517 ], [ -64.880076455241976, 18.315695356361402 ], [ -64.880076622880097, 18.315692675460753 ], [ -64.880076622880097, 18.31568982561231 ], [ -64.880076790518217, 18.315686974454195 ], [ -64.880076790518217, 18.315684125915425 ], [ -64.880076958156394, 18.31568144239543 ], [ -64.880076958156394, 18.315678592546988 ], [ -64.880077124484842, 18.315675744008217 ], [ -64.880077124484842, 18.315672894159775 ], [ -64.880077293432691, 18.315670211949453 ], [ -64.880077293432691, 18.31566736210101 ], [ -64.880077293432691, 18.315664512252567 ], [ -64.880077461070812, 18.315661662404125 ], [ -64.880077461070812, 18.315658980193803 ], [ -64.880077461070812, 18.31565613034536 ], [ -64.880077461070812, 18.315653280496917 ], [ -64.88007762739926, 18.315650430648475 ], [ -64.88007762739926, 18.315647748438153 ], [ -64.88007762739926, 18.31564489858971 ], [ -64.88007762739926, 18.315642047431595 ], [ -64.88007762739926, 18.315639198892825 ], [ -64.88007762739926, 18.31563651537283 ], [ -64.88007762739926, 18.315633665524388 ], [ -64.88007762739926, 18.315630816985617 ], [ -64.88007762739926, 18.315627967137175 ], [ -64.88007762739926, 18.315625284926853 ], [ -64.88007762739926, 18.31562243507841 ], [ -64.88007762739926, 18.315619585229967 ], [ -64.88007762739926, 18.315616735381525 ], [ -64.880077461070812, 18.315614053171203 ], [ -64.880077461070812, 18.31561120332276 ], [ -64.880077461070812, 18.315608353474317 ], [ -64.880077461070812, 18.315605503625875 ], [ -64.880077461070812, 18.315602821415609 ], [ -64.880077293432691, 18.31559997156711 ], [ -64.880077293432691, 18.315597120408995 ], [ -64.880077293432691, 18.315594271870225 ], [ -64.880077124484842, 18.315591588350287 ], [ -64.880077124484842, 18.315588738501788 ], [ -64.880076958156394, 18.315585889963018 ], [ -64.880076958156394, 18.31558320644308 ], [ -64.880076790518217, 18.315580357904309 ], [ -64.880076790518217, 18.31557750805581 ], [ -64.880076622880097, 18.315574658207368 ], [ -64.880076622880097, 18.315571975997102 ], [ -64.880076455241976, 18.31556912614866 ], [ -64.880076287603799, 18.315566276300217 ], [ -64.880076287603799, 18.315563426451718 ], [ -64.880076119965679, 18.315560744241452 ], [ -64.880075952327502, 18.31555789439301 ], [ -64.880075952327502, 18.315555044544567 ], [ -64.880075783379709, 18.315552193386395 ], [ -64.880075617051205, 18.315549512485802 ], [ -64.880075449413084, 18.31554666263736 ], [ -64.880075280465292, 18.315543811479245 ], [ -64.880075114136787, 18.315541130578595 ], [ -64.880075114136787, 18.31553827942048 ], [ -64.880074946498667, 18.31553543088171 ], [ -64.880074778860489, 18.315532581033267 ], [ -64.880074611222369, 18.315529897513272 ], [ -64.880074443584249, 18.315527048974502 ], [ -64.880074275946072, 18.31552419912606 ], [ -64.880074108307952, 18.315521349277617 ], [ -64.880073773031654, 18.315518667067295 ], [ -64.880073605393477, 18.315515817218852 ], [ -64.880073436445684, 18.31551296737041 ], [ -64.880073270117236, 18.315510285160087 ], [ -64.880073102479059, 18.315507435311645 ], [ -64.880072934840939, 18.315504585463202 ], [ -64.880072599564642, 18.31550190325288 ], [ -64.880072431926521, 18.315499053404437 ], [ -64.880072264288344, 18.315496203555995 ], [ -64.880071929012047, 18.31549335239788 ], [ -64.880071761373927, 18.31549067149723 ], [ -64.880071592426077, 18.315487821648787 ], [ -64.880071258459509, 18.315484970490672 ], [ -64.880071089511659, 18.315482289590022 ], [ -64.880070755545034, 18.315479438431908 ], [ -64.880070587906914, 18.315476589893137 ], [ -64.880070252630617, 18.315473906373199 ], [ -64.880070084992497, 18.315471057834372 ], [ -64.880069748406527, 18.31546820798593 ], [ -64.880069414439902, 18.315465524465992 ], [ -64.880069245492109, 18.315462675927222 ], [ -64.880068911525484, 18.315459826078722 ], [ -64.880068576249187, 18.315457143868457 ], [ -64.88006840861101, 18.315454294020014 ], [ -64.880068073334769, 18.315451444171572 ], [ -64.880067738058472, 18.31544876196125 ], [ -64.880067401472502, 18.315445912112807 ], [ -64.880067067505877, 18.315443062264364 ], [ -64.880066732229579, 18.315440380054042 ], [ -64.880066564591459, 18.3154375302056 ], [ -64.880066229315162, 18.315434680357157 ], [ -64.880065894038864, 18.315431998146835 ], [ -64.880065557452895, 18.315429148298392 ], [ -64.880065223486326, 18.31542629844995 ], [ -64.880064888210029, 18.315423616239627 ], [ -64.880064552933732, 18.315420766391185 ], [ -64.880064216347762, 18.315418084180919 ], [ -64.880063713433344, 18.31541523433242 ], [ -64.880063379466719, 18.315412384483977 ], [ -64.880063044190422, 18.315409702273712 ], [ -64.880062708914124, 18.315406852425269 ], [ -64.880062373637827, 18.315404002576827 ], [ -64.880061869413737, 18.315401320366504 ], [ -64.880061535447112, 18.315398470518062 ], [ -64.880061200170871, 18.31539578830774 ], [ -64.880060864894574, 18.315392938459297 ], [ -64.8800603619801, 18.315390088610854 ], [ -64.880060025394187, 18.315387406400532 ], [ -64.880059522479712, 18.31538455655209 ], [ -64.880059188513144, 18.315381874341767 ], [ -64.880058685598669, 18.315379024493325 ], [ -64.880058350322372, 18.315376342283059 ], [ -64.880057847407954, 18.315373492434617 ], [ -64.880057512131657, 18.315370642586117 ], [ -64.880057009217239, 18.315367960375852 ], [ -64.880056673940942, 18.315365110527409 ], [ -64.880056171026524, 18.315362428317087 ], [ -64.880055668112107, 18.315359578468644 ], [ -64.880055332835809, 18.315356896258322 ], [ -64.880054829921392, 18.31535404640988 ], [ -64.880054327006917, 18.315351196561437 ], [ -64.880053824092499, 18.315348514351115 ], [ -64.88005348750653, 18.315345664502672 ], [ -64.880052985901784, 18.315342982292407 ], [ -64.880052482987367, 18.315340132443907 ], [ -64.880051980072949, 18.315337450233642 ], [ -64.880051477158474, 18.315334600385199 ], [ -64.880050974244057, 18.315331918174877 ], [ -64.880050471329639, 18.315329068326434 ], [ -64.880049968415221, 18.315326386116112 ], [ -64.880049465500747, 18.31532353626767 ], [ -64.880048962586329, 18.315320854057347 ], [ -64.880048458362239, 18.315318004208905 ], [ -64.880047955447822, 18.315315321998639 ], [ -64.880047453843019, 18.315312472150197 ], [ -64.880046950928602, 18.315309789939874 ], [ -64.880046448014184, 18.315306940091432 ], [ -64.880045777461589, 18.31530425788111 ], [ -64.880045274547172, 18.315301574361115 ], [ -64.880044771632754, 18.315298725822345 ], [ -64.880044267408607, 18.315296043612079 ], [ -64.880043598165742, 18.315293192453964 ], [ -64.880043095251267, 18.315290511553314 ], [ -64.880042592336849, 18.3152876603952 ], [ -64.880041920474639, 18.31528497949455 ], [ -64.880041418869837, 18.315282129646107 ], [ -64.880040748317299, 18.315279447435785 ], [ -64.880040245402824, 18.315276765225519 ], [ -64.880039574850286, 18.315273915377077 ], [ -64.880039071935812, 18.315271233166754 ], [ -64.880038401383274, 18.315268383318312 ], [ -64.880037898468856, 18.31526570110799 ], [ -64.880037227916262, 18.315263018897667 ], [ -64.880036725001844, 18.315260169049225 ], [ -64.880036054449249, 18.315257486838959 ], [ -64.880035383896654, 18.315254636990517 ], [ -64.880034713344116, 18.315251953470522 ], [ -64.880034210429642, 18.315249272569872 ], [ -64.880033539877104, 18.315246421411757 ], [ -64.880032869324509, 18.315243740511107 ], [ -64.880032197462242, 18.315241058300842 ], [ -64.880031695857497, 18.315238208452399 ], [ -64.880031025304902, 18.315235526242077 ], [ -64.880030353442692, 18.315232844031755 ], [ -64.880029684199769, 18.315229994183312 ], [ -64.880029013647174, 18.315227311973047 ], [ -64.880028343094637, 18.315224628453052 ], [ -64.880027672542042, 18.315221779914282 ], [ -64.880027001989447, 18.315219096394287 ], [ -64.880026331436909, 18.315216415493637 ], [ -64.880025660884314, 18.315213733283372 ], [ -64.880024990331719, 18.315210883434929 ], [ -64.880024152141004, 18.315208201224607 ], [ -64.880023481588466, 18.315205519014285 ], [ -64.880022811035872, 18.315202669165842 ], [ -64.880022140483277, 18.315199986955577 ], [ -64.880021469930739, 18.315197303435582 ], [ -64.880020630430352, 18.315194622534932 ], [ -64.880019961187429, 18.315191940324667 ], [ -64.880019290634834, 18.315189090476167 ], [ -64.880018452444119, 18.315186408265902 ], [ -64.880017781891524, 18.315183726055579 ], [ -64.880016942391137, 18.315181043845257 ], [ -64.880016273148271, 18.315178193996815 ], [ -64.880015602595677, 18.315175510476877 ], [ -64.880014764404962, 18.315172829576227 ], [ -64.880014093852367, 18.315170147365905 ], [ -64.880013254351979, 18.315167465155639 ], [ -64.880012417470937, 18.315164782945317 ], [ -64.880011746918342, 18.315161933096874 ], [ -64.880010907417955, 18.315159250886552 ], [ -64.880010238175089, 18.315156567366557 ], [ -64.880009399984374, 18.315153886465964 ], [ -64.88000856048393, 18.315151204255642 ], [ -64.880007723602887, 18.31514852204532 ], [ -64.880007053050349, 18.315145839835054 ], [ -64.880006214859634, 18.315142989986612 ], [ -64.880005375359247, 18.315140306466617 ], [ -64.880004538478147, 18.315137625565967 ], [ -64.880003700287432, 18.315134943355702 ], [ -64.880003028425222, 18.315132261145379 ], [ -64.880002191544179, 18.315129578935057 ], [ -64.880001353353464, 18.315126895415119 ], [ -64.880000515162692, 18.315124214514469 ], [ -64.879999676971977, 18.315121532304147 ], [ -64.879998837471589, 18.315118850093882 ], [ -64.879998000590547, 18.315116167883559 ], [ -64.879997162399832, 18.315113484363565 ], [ -64.879996156570996, 18.315110803462915 ], [ -64.879995318380281, 18.315108121252649 ], [ -64.879994480189509, 18.315105439042327 ], [ -64.879993641998794, 18.315102756832005 ], [ -64.879992802498407, 18.315100074621739 ], [ -64.879991965617364, 18.315097392411417 ], [ -64.879990958478857, 18.315094710201095 ], [ -64.879990121597814, 18.315092027990829 ], [ -64.879989283407042, 18.315089345780507 ], [ -64.879988277578207, 18.315086663570185 ], [ -64.879987439387492, 18.315083981359919 ], [ -64.879986601196777, 18.315081299149597 ], [ -64.879985595367884, 18.315078616939275 ], [ -64.879984757177169, 18.315075933419337 ], [ -64.879983751348334, 18.315073252518687 ], [ -64.879982913157619, 18.315070570308364 ], [ -64.879981907328727, 18.315067888098099 ], [ -64.879981069138012, 18.315065373525897 ], [ -64.879980063309176, 18.315062691315632 ], [ -64.879979225118404, 18.315060009105309 ], [ -64.879978219289569, 18.315057326894987 ], [ -64.879977213460677, 18.315054643375049 ], [ -64.879976375269962, 18.315051962474399 ], [ -64.879975369441127, 18.315049280264077 ], [ -64.879974363612234, 18.315046764382259 ], [ -64.879973356473727, 18.31504408348161 ], [ -64.879972519592684, 18.315041401271344 ], [ -64.879971512454119, 18.315038719061022 ], [ -64.879970507934956, 18.315036036850699 ], [ -64.879969502106064, 18.315033522278554 ], [ -64.879968496277229, 18.315030840068232 ], [ -64.879967490448337, 18.315028157857967 ], [ -64.879966484619501, 18.315025475647644 ], [ -64.879965646428786, 18.315022793437322 ], [ -64.879964640599894, 18.315020278865177 ], [ -64.879963633461387, 18.315017596654855 ], [ -64.879962461304046, 18.315014914444589 ], [ -64.879961455475154, 18.315012399872387 ], [ -64.879960449646319, 18.315009716352449 ], [ -64.879959443817427, 18.315007035451799 ], [ -64.879958437988591, 18.315004353241477 ], [ -64.879957432159699, 18.315001837359659 ], [ -64.879956426330864, 18.314999156459066 ], [ -64.879955252863851, 18.314996474248744 ], [ -64.879954247034959, 18.314993958366927 ], [ -64.879953241206124, 18.314991277466277 ], [ -64.879952235377232, 18.314988762894131 ], [ -64.879951061910219, 18.314986079374137 ], [ -64.879950056081384, 18.314983398473487 ], [ -64.879949050252492, 18.314980883901342 ], [ -64.879947875475807, 18.314978200381347 ], [ -64.879946870956644, 18.314975687118874 ], [ -64.879945697489632, 18.314973004908552 ], [ -64.879944690351067, 18.314970321388614 ], [ -64.879943518193784, 18.314967808126084 ], [ -64.879942512364892, 18.314965125915819 ], [ -64.879941338897879, 18.314962611343674 ], [ -64.879940333069044, 18.314959929133352 ], [ -64.879939159602031, 18.314957414561206 ], [ -64.879937986135019, 18.314954732350884 ], [ -64.879936980306127, 18.314952217778739 ], [ -64.879935806839114, 18.314949535568417 ], [ -64.879934633372102, 18.314947020996271 ], [ -64.879933627543267, 18.314944338785949 ], [ -64.879932454076254, 18.314941824213804 ], [ -64.879931280609242, 18.314939142003482 ], [ -64.879930107142229, 18.314936627431337 ], [ -64.879929101313394, 18.314934112859191 ], [ -64.879927927846381, 18.314931430648869 ], [ -64.879926754379369, 18.314928916076724 ], [ -64.879925580912357, 18.314926233866402 ], [ -64.879924407445344, 18.314923719294256 ], [ -64.879923233978332, 18.314921203412382 ], [ -64.879922060511319, 18.314918522511789 ], [ -64.879920887044307, 18.314916007939587 ], [ -64.879919713577294, 18.314913493367442 ], [ -64.879918540110282, 18.314910811157176 ], [ -64.879917366643269, 18.314908296584974 ], [ -64.879916193176314, 18.314905782012829 ], [ -64.879915018399629, 18.314903099802507 ], [ -64.879913678604112, 18.314900585230362 ], [ -64.879912505137099, 18.314898069348544 ], [ -64.879911330360414, 18.314895388447894 ], [ -64.879910158203074, 18.314892873875749 ], [ -64.879908983426446, 18.314890359303604 ], [ -64.879907643630929, 18.314887843421729 ], [ -64.879906470163917, 18.314885330159257 ], [ -64.879905295387232, 18.314882647948934 ], [ -64.879903955591772, 18.314880133376789 ], [ -64.879902782124759, 18.314877618804644 ], [ -64.879901441019626, 18.314875104232499 ], [ -64.879900267552614, 18.314872588350624 ], [ -64.879899094085602, 18.314869907450031 ], [ -64.879897752980469, 18.314867392877829 ], [ -64.879896579513456, 18.314864878305684 ], [ -64.879895238408267, 18.314862362423867 ], [ -64.879893897303134, 18.314859849161394 ], [ -64.879892723836122, 18.314857334589192 ], [ -64.879891381421317, 18.314854820017047 ], [ -64.879890209263976, 18.314852305444902 ], [ -64.879888868158787, 18.314849790872756 ], [ -64.879887527053654, 18.314847276300554 ], [ -64.879886353586642, 18.314844594090289 ], [ -64.879885012481509, 18.314842079518087 ], [ -64.879883671376376, 18.314839564945942 ], [ -64.879882330271187, 18.314837050373797 ], [ -64.879881156804174, 18.314834535801651 ], [ -64.879879814389369, 18.314832021229449 ], [ -64.879878474593909, 18.314829505347632 ], [ -64.879877133488719, 18.314827158413607 ], [ -64.879875792383586, 18.314824645151134 ], [ -64.879874451278454, 18.314822130578989 ], [ -64.879873110173264, 18.314819616006787 ], [ -64.879871769068131, 18.314817101434642 ], [ -64.879870427962999, 18.314814586862497 ], [ -64.879869086857809, 18.314812072290351 ], [ -64.879867744443004, 18.314809556408477 ], [ -64.879866404647544, 18.314807043146004 ], [ -64.879865063542354, 18.314804528573859 ], [ -64.879863722437221, 18.314802181639834 ], [ -64.879862381332089, 18.314799667067689 ], [ -64.879860872588779, 18.314797152495544 ], [ -64.879859531483589, 18.314794637923342 ], [ -64.879858190378457, 18.314792123351197 ], [ -64.879856849273324, 18.314789776417172 ], [ -64.879855508168134, 18.314787261845026 ], [ -64.879853999424881, 18.314784747272881 ], [ -64.879852658319692, 18.314782231391007 ], [ -64.879851317214559, 18.314779885766711 ], [ -64.879849808471249, 18.314777371194509 ], [ -64.879848467366116, 18.314774856622364 ], [ -64.879846958622807, 18.314772342050219 ], [ -64.879845617517674, 18.314769995116194 ], [ -64.879844107464692, 18.314767480544049 ], [ -64.879842766359559, 18.314764965971847 ], [ -64.879841258925921, 18.314762619037879 ], [ -64.879839917820789, 18.314760104465677 ], [ -64.879838409077479, 18.314757757531652 ], [ -64.879837067972346, 18.314755242959507 ], [ -64.879835559229036, 18.314752728387361 ], [ -64.879834218123847, 18.314750381453337 ], [ -64.879832709380594, 18.314747866881191 ], [ -64.879831200637284, 18.314745519947166 ], [ -64.879829859532151, 18.314743005375021 ], [ -64.879828349479169, 18.314740658440996 ], [ -64.879826842045532, 18.314738143868851 ], [ -64.879825333302222, 18.314735796934826 ], [ -64.879823824558969, 18.314733282362681 ], [ -64.879822483453779, 18.314730935428656 ], [ -64.879820973400797, 18.314728420856454 ], [ -64.879819465967216, 18.314726073922486 ], [ -64.879817957223906, 18.314723559350284 ], [ -64.879816448480597, 18.314721212416259 ], [ -64.879814938427614, 18.314718865482291 ], [ -64.879813430994034, 18.314716350910089 ], [ -64.879811922250724, 18.314714003976121 ], [ -64.879810413507414, 18.314711489403919 ], [ -64.879808903454432, 18.314709142469894 ], [ -64.879807396020851, 18.314706795535926 ], [ -64.879805887277541, 18.314704280963724 ], [ -64.879804378534232, 18.314701934029699 ], [ -64.879802869790922, 18.314699587095731 ], [ -64.879801361047669, 18.314697072523529 ], [ -64.879799683356509, 18.314694725589561 ], [ -64.879798175922929, 18.314692377345864 ], [ -64.879796667179619, 18.314690031721511 ], [ -64.879795158436309, 18.314687517149366 ], [ -64.879793482054879, 18.314685170215341 ], [ -64.879791973311569, 18.314682823281316 ], [ -64.879790464568259, 18.314680476347291 ], [ -64.879788955825006, 18.314678129413267 ], [ -64.879787279443576, 18.314675782479242 ], [ -64.879785769390594, 18.314673267907096 ], [ -64.879784094318836, 18.314670920973072 ], [ -64.879782585575526, 18.314668574039047 ], [ -64.879780909194096, 18.314666227105079 ], [ -64.879779400450786, 18.314663880171054 ], [ -64.879777724069356, 18.314661533237029 ], [ -64.879776215326046, 18.314659186303004 ], [ -64.879774538944616, 18.314656839368979 ], [ -64.879773030201306, 18.314654492434954 ], [ -64.879771353819876, 18.314652145500986 ], [ -64.879769845076567, 18.314649798566961 ], [ -64.879768167385464, 18.314647451632936 ], [ -64.879766492313706, 18.314645103389239 ], [ -64.879764983570396, 18.314642757764886 ], [ -64.879763307188966, 18.314640410830862 ], [ -64.879761630807536, 18.314638063896837 ], [ -64.879759954426106, 18.314635716962869 ], [ -64.879758444373124, 18.314633370028844 ], [ -64.879756769301366, 18.314631023094819 ], [ -64.879755092919879, 18.314628676160794 ], [ -64.879753416538449, 18.314626496864946 ], [ -64.879751740157019, 18.314624149930921 ], [ -64.879750062465916, 18.314621802996896 ], [ -64.879748387394159, 18.314619456062871 ], [ -64.879746878650849, 18.314617109128847 ], [ -64.879745202269419, 18.314614762194822 ], [ -64.879743525887989, 18.314612582898974 ], [ -64.879741849506502, 18.314610235964949 ], [ -64.879740173125072, 18.314607889030924 ], [ -64.879738495433969, 18.314605709735076 ], [ -64.879736651414362, 18.314603362801051 ], [ -64.879734976342604, 18.314601015867026 ], [ -64.879733299961174, 18.314598668933002 ], [ -64.879731623579744, 18.314596489637154 ], [ -64.879729947198314, 18.314594142703129 ], [ -64.879728270816884, 18.314591963407281 ], [ -64.879726594435397, 18.314589616473256 ], [ -64.879724750415846, 18.314587269539231 ], [ -64.879723074034416, 18.314585090243384 ], [ -64.879721397652986, 18.314582743309359 ], [ -64.879719553633379, 18.314580564013454 ], [ -64.879717877251949, 18.314578217079429 ], [ -64.879716200870519, 18.314576037783581 ], [ -64.879714356850911, 18.314573690849556 ], [ -64.879712680469481, 18.314571511553709 ], [ -64.879711004088051, 18.314569164619684 ], [ -64.879709160068444, 18.314566985323779 ], [ -64.879707482377341, 18.314564638389811 ], [ -64.879705638357734, 18.314562459093906 ], [ -64.879703963285976, 18.314560112159882 ], [ -64.879702119266426, 18.314557932864034 ], [ -64.879700442884939, 18.314555753568186 ], [ -64.879698598865389, 18.314553406634161 ], [ -64.879696922483959, 18.314551227338256 ], [ -64.879695078464351, 18.314548880404232 ], [ -64.879693234444744, 18.314546701108384 ], [ -64.879691558063314, 18.314544521812536 ], [ -64.879689714043764, 18.314542342516631 ], [ -64.879687870024156, 18.314539995582606 ], [ -64.879686193642726, 18.314537816286759 ], [ -64.879684349623119, 18.314535636990854 ], [ -64.879682505603569, 18.314533457695006 ], [ -64.879680661583961, 18.314531110760981 ], [ -64.879678985202531, 18.314528931465134 ], [ -64.879677141182924, 18.314526752169229 ], [ -64.879675297163374, 18.314524572873381 ], [ -64.879673453143766, 18.314522393577477 ], [ -64.879671609124216, 18.314520214281629 ], [ -64.879669765104609, 18.314517867347604 ], [ -64.879667921085002, 18.314515688051756 ], [ -64.879666077065451, 18.314513508755851 ], [ -64.879664233045844, 18.314511329460004 ], [ -64.879662389026294, 18.314509150164099 ], [ -64.879660545006686, 18.314506970868251 ], [ -64.879658700987079, 18.314504791572404 ], [ -64.879656856967529, 18.314502612276499 ], [ -64.879655012947921, 18.314500432980651 ], [ -64.879653168928371, 18.314498252375074 ], [ -64.879651324908764, 18.314496074388899 ], [ -64.879649480889157, 18.314493895092994 ], [ -64.879647636869606, 18.314491715797146 ], [ -64.879645625211879, 18.314489704139419 ], [ -64.879643781192271, 18.314487524843571 ], [ -64.879641937172721, 18.314485345547666 ], [ -64.879640093153114, 18.314483166251819 ], [ -64.879638081495386, 18.314480986955914 ], [ -64.879636237475779, 18.314478806350394 ], [ -64.879634393456229, 18.314476796002339 ], [ -64.879632381798501, 18.314474616706434 ], [ -64.879630537778894, 18.314472437410586 ], [ -64.879628693759344, 18.314470258114738 ], [ -64.879626682101616, 18.314468246457011 ], [ -64.879624838082009, 18.314466067161106 ], [ -64.879622826424281, 18.314463887865259 ], [ -64.879620982404674, 18.314461708569354 ], [ -64.879618969437274, 18.314459696911626 ], [ -64.879617125417724, 18.314457517615779 ], [ -64.879615115069669, 18.314455505958051 ], [ -64.879613271050061, 18.314453325352474 ], [ -64.879611259392334, 18.314451147366299 ], [ -64.879609415372784, 18.314449135708571 ], [ -64.879607402405384, 18.314446956412723 ], [ -64.879605558385776, 18.314444944754996 ], [ -64.879603548037721, 18.314442765459091 ], [ -64.879601536379994, 18.314440753801364 ], [ -64.879599692360387, 18.314438574505516 ], [ -64.879597679392987, 18.314436562847789 ], [ -64.879595669044932, 18.314434383551884 ], [ -64.879593657387204, 18.314432371894156 ], [ -64.879591813367654, 18.314430192598309 ], [ -64.879589800400254, 18.314428180940581 ], [ -64.879587790052199, 18.314426169282854 ], [ -64.879585778394471, 18.314423989986949 ], [ -64.879583765427071, 18.314421978329221 ], [ -64.879581755079016, 18.314419965361822 ], [ -64.879579743421289, 18.314417787375646 ], [ -64.879577899401681, 18.314415775717919 ], [ -64.879575886434282, 18.314413764060191 ], [ -64.879573876086226, 18.314411752402464 ], [ -64.879571864428499, 18.314409573106616 ], [ -64.879569852770771, 18.314407561448888 ], [ -64.879567841113044, 18.314405549791161 ], [ -64.879565829455316, 18.314403538133433 ], [ -64.879563817797589, 18.314401526475706 ], [ -64.879561806139861, 18.314399347179801 ], [ -64.879559626844014, 18.314397335522074 ], [ -64.879557615186286, 18.314395323864346 ], [ -64.879555603528559, 18.314393312206619 ], [ -64.879553591870831, 18.314391300548891 ], [ -64.879551580213104, 18.314389288891164 ], [ -64.879549568555376, 18.314387277233436 ], [ -64.879547389259471, 18.314385265575709 ], [ -64.879545377601744, 18.314383253917981 ], [ -64.879543365944016, 18.314381242260254 ], [ -64.879541354286289, 18.314379230602526 ], [ -64.879539174990441, 18.314377218944799 ], [ -64.879537163332714, 18.314375207287071 ], [ -64.879535150365314, 18.314373195629344 ], [ -64.879532972379081, 18.314371183971616 ], [ -64.879530959411682, 18.314369172313889 ], [ -64.879528949063626, 18.314367328294281 ], [ -64.879526769767779, 18.314365316636554 ], [ -64.879524758110051, 18.314363304978826 ], [ -64.879522578814147, 18.314361293321099 ], [ -64.879520567156419, 18.314359280353699 ], [ -64.879518387860571, 18.314357437643821 ], [ -64.879516376202844, 18.314355425986093 ], [ -64.879514196906996, 18.314353414328366 ], [ -64.879512185249268, 18.314351570308759 ], [ -64.879510005953364, 18.314349558651031 ], [ -64.879507994295636, 18.314347546993304 ], [ -64.879505814999789, 18.314345702973753 ], [ -64.879503634394212, 18.314343691316026 ], [ -64.879501624046156, 18.314341678348569 ], [ -64.879499444750309, 18.314339835638691 ], [ -64.879497433092581, 18.314337823980964 ], [ -64.879495253796676, 18.314335979961356 ], [ -64.879493074500829, 18.314333968303629 ], [ -64.879490895204981, 18.314332124284078 ], [ -64.879488883547253, 18.314330112626351 ], [ -64.879486704251349, 18.314328268606744 ], [ -64.879484524955501, 18.314326256949016 ], [ -64.879482344349924, 18.314324412929466 ], [ -64.879480166363749, 18.314322401271738 ], [ -64.879478153396349, 18.314320557252131 ], [ -64.879475975410116, 18.314318713232524 ], [ -64.879473796114269, 18.314316701574796 ], [ -64.879448147478229, 18.314233050140956 ], [ -64.879441609590629, 18.314149901621533 ], [ -64.879457032299854, 18.314053174412436 ], [ -64.879464911292644, 18.31397019353119 ], [ -64.879501790374661, 18.313894421090083 ], [ -64.879553088956357, 18.31382568945105 ], [ -64.879604553866614, 18.313756957812018 ], [ -64.879692060977732, 18.313688561449226 ], [ -64.879750399051886, 18.313626702974091 ], [ -64.879816448480597, 18.313544225007263 ], [ -64.879881994994889, 18.313489407334202 ], [ -64.879933292266969, 18.313420675695113 ], [ -64.879991965617364, 18.31335194405608 ], [ -64.880064888210029, 18.313290253219122 ], [ -64.880145019242832, 18.313235603184182 ], [ -64.880217940525824, 18.31318782631314 ], [ -64.880297905230179, 18.313146922605995 ], [ -64.880385243393505, 18.313092272571055 ], [ -64.880465374426365, 18.313044495700012 ], [ -64.88054533913072, 18.313003759630988 ], [ -64.880625470163523, 18.312962855923843 ], [ -64.880705433558262, 18.312921952216755 ], [ -64.880778691427167, 18.31287803102299 ], [ -64.88086167230847, 18.312847185604483 ], [ -64.880944316603745, 18.312821536968499 ], [ -64.881029813366865, 18.312801252753047 ], [ -64.881120839569405, 18.312775771755184 ], [ -64.881209186180968, 18.312755319901612 ], [ -64.881297362535008, 18.312745596889272 ], [ -64.881385372560601, 18.312735873876875 ], [ -64.881473551534043, 18.312733862219147 ], [ -64.881561729197813, 18.312726653778952 ], [ -64.881649739223406, 18.312727491969667 ], [ -64.881737749248998, 18.31272548031194 ], [ -64.881831291333356, 18.312726318502712 ], [ -64.881894826189921, 18.312737885534602 ], [ -64.881981493800708, 18.312759343217067 ], [ -64.882060786642796, 18.31279454722727 ], [ -64.882154665313124, 18.31282991887565 ], [ -64.882233956845539, 18.31286512288591 ], [ -64.882313249687684, 18.312907367698187 ], [ -64.882392711477621, 18.312942571708447 ], [ -64.882472004319709, 18.312977775718707 ], [ -64.882544087411929, 18.313026726056762 ], [ -64.882616005485431, 18.313075844032937 ], [ -64.882673336420964, 18.313138540698787 ], [ -64.882723461535704, 18.313208110528535 ], [ -64.882758999512589, 18.31328438588406 ], [ -64.882801748548957, 18.313360828877705 ], [ -64.882830079395319, 18.313444145035305 ], [ -64.882865449734027, 18.313527461192848 ], [ -64.882893612942212, 18.313624523678243 ], [ -64.882914567710202, 18.313707672197665 ], [ -64.882928315347669, 18.313790820717088 ], [ -64.882941892727672, 18.313901629530278 ], [ -64.882926637656567, 18.313984442773403 ], [ -64.882911382585462, 18.314067256016529 ], [ -64.88291071334254, 18.314150404535951 ], [ -64.882909873842152, 18.314233385417253 ], [ -64.882887411640525, 18.314335979961356 ], [ -64.882879866614417, 18.314335979961356 ], [ -64.882893949528182, 18.314436562847789 ], [ -64.882953459759619, 18.314501606447664 ], [ -64.88302906456255, 18.314556927035142 ], [ -64.883102322431455, 18.314606212649494 ], [ -64.883181281306975, 18.314650133843259 ], [ -64.883254537866208, 18.314699419457554 ], [ -64.883333495432055, 18.314737976230674 ], [ -64.883412452997902, 18.314776533003794 ], [ -64.883491410563693, 18.314820454197559 ], [ -64.883570369439212, 18.314859010970679 ], [ -64.883593000588633, 18.314875439508739 ], [ -64.883643625998445, 18.314908296584974 ], [ -64.88370548447358, 18.314968311040559 ], [ -64.883738676826113, 18.315049783178551 ], [ -64.88377773651365, 18.315125890895899 ], [ -64.883793997413648, 18.315207195395715 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_244", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.956856557426477, 18.315866851492387 ], [ -64.956825712007969, 18.315947485439665 ], [ -64.956771061973029, 18.316011689539152 ], [ -64.956723285101987, 18.316082266507408 ], [ -64.956675340592824, 18.316152842166048 ], [ -64.956620690557884, 18.316216878627358 ], [ -64.956566208161064, 18.316281085346191 ], [ -64.956531673393727, 18.316358197582758 ], [ -64.956497308883911, 18.316435480076848 ], [ -64.956476354115864, 18.316519131510688 ], [ -64.956441819348527, 18.316596245056928 ], [ -64.956407454838711, 18.316673526241289 ], [ -64.956379626906823, 18.316757176365513 ], [ -64.956351966613056, 18.316840829109026 ], [ -64.956331011845009, 18.316924648181043 ], [ -64.956316762602796, 18.317008299614884 ], [ -64.956316092050201, 18.317092286325021 ], [ -64.956301842807989, 18.317176105397039 ], [ -64.956287593565719, 18.317259755521206 ], [ -64.956286923013181, 18.317343743541016 ], [ -64.956286252460586, 18.317427562613034 ], [ -64.956285414269871, 18.317511549323171 ], [ -64.956291616881174, 18.317595368395189 ], [ -64.956324641595586, 18.317673152493967 ], [ -64.956364539473839, 18.317750936592802 ], [ -64.956411310515989, 18.317822181494307 ], [ -64.956451208394299, 18.317899965593142 ], [ -64.956457074419632, 18.31799032255276 ], [ -64.956490268081836, 18.318068106651594 ], [ -64.956523292796192, 18.318145724421925 ], [ -64.956556485148724, 18.31822333957291 ], [ -64.956577942831132, 18.31833934647824 ], [ -64.956515246165281, 18.318300620757327 ], [ -64.956434612218004, 18.318261225793435 ], [ -64.956367389322281, 18.318209091640369 ], [ -64.956320785918251, 18.318137676481342 ], [ -64.956287593565719, 18.318060061330357 ], [ -64.956254568851364, 18.317982277231522 ], [ -64.956234955188506, 18.317898290521384 ], [ -64.956201762836031, 18.317820506422549 ], [ -64.956148286268103, 18.317749260211372 ], [ -64.956088104174398, 18.317684216611497 ], [ -64.956020881278619, 18.317632079839029 ], [ -64.955960699184914, 18.317567037548827 ], [ -64.955920801306661, 18.317482883200569 ], [ -64.955874197902631, 18.317411469351214 ], [ -64.955842179017111, 18.317198233632041 ], [ -64.955870006949056, 18.317114582198201 ], [ -64.955890961717046, 18.317024391567031 ], [ -64.955905210959259, 18.316934203555206 ], [ -64.955912754675751, 18.316850384483246 ], [ -64.955933709443741, 18.316766565411228 ], [ -64.955968242901406, 18.316683081615508 ], [ -64.955995903195173, 18.316599262543491 ], [ -64.956050720868291, 18.316515946385948 ], [ -64.956098665377453, 18.316438831530036 ], [ -64.956153147774273, 18.316374627430548 ], [ -64.956214503334934, 18.316310588349893 ], [ -64.956275858895651, 18.316246550578853 ], [ -64.956337214456369, 18.316182514117543 ], [ -64.956405275542807, 18.31613138448364 ], [ -64.956480042155079, 18.316080422487858 ], [ -64.956554641129117, 18.316035829431883 ], [ -64.956629406431659, 18.315991238995252 ], [ -64.956710712241204, 18.31595955538603 ], [ -64.956785478853419, 18.315914963639727 ], [ -64.956856557426477, 18.315866851492387 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_553", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 6.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.943545251911814, 18.322515211335599 ], [ -64.943544413721099, 18.322602383170477 ], [ -64.943543744478234, 18.322696260531131 ], [ -64.943507868605707, 18.322776391563934 ], [ -64.943458247715114, 18.322849649432897 ], [ -64.943401418384269, 18.322916201776081 ], [ -64.943351797493676, 18.322989627283107 ], [ -64.943351629855499, 18.323003038334662 ], [ -64.943288094998934, 18.323049474100515 ], [ -64.943238306470164, 18.323122731969477 ], [ -64.943174603975422, 18.323182578786884 ], [ -64.943110901480736, 18.323242425604292 ], [ -64.943026411856124, 18.323275281370854 ], [ -64.942935385653641, 18.323267906602155 ], [ -64.942865646876044, 18.323213759481632 ], [ -64.942809992321941, 18.323146201309612 ], [ -64.942796747598891, 18.323059029474734 ], [ -64.942797419461101, 18.322971857639857 ], [ -64.942756011529866, 18.322897761580236 ], [ -64.942693482502193, 18.322823665520559 ], [ -64.942652412466543, 18.322844620288549 ], [ -64.942601113884848, 18.322765159808284 ], [ -64.942553673599718, 18.322691566663082 ], [ -64.94248712125659, 18.322636078437426 ], [ -64.94237748460074, 18.322552762279884 ], [ -64.942317134868858, 18.322519067012934 ], [ -64.942366923397628, 18.322445809143971 ], [ -64.942402799270155, 18.322358972585391 ], [ -64.942473373619066, 18.322305831293761 ], [ -64.942564568769455, 18.322313207372076 ], [ -64.942655763919788, 18.322314045562791 ], [ -64.942746960379793, 18.322314716115386 ], [ -64.942873359540329, 18.322302310892724 ], [ -64.942957681526764, 18.322282864868043 ], [ -64.943049043005601, 18.322276829894861 ], [ -64.943140239465606, 18.322277500447399 ], [ -64.943231434615939, 18.322284876525771 ], [ -64.943322628456599, 18.322285714716486 ], [ -64.943413655968811, 18.322299796320578 ], [ -64.943476352634661, 18.322360648966821 ], [ -64.943532008498437, 18.322428039500721 ], [ -64.943545251911814, 18.322515211335599 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_866", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.901037758510199, 18.311090002579078 ], [ -64.901020825747992, 18.311171139440773 ], [ -64.900975731087271, 18.311244229671559 ], [ -64.900934659742006, 18.311317319902344 ], [ -64.900881350812199, 18.311382531140396 ], [ -64.900832232836024, 18.311451765693846 ], [ -64.900799209431284, 18.311528880549758 ], [ -64.900774230038166, 18.311609848463661 ], [ -64.900757298585631, 18.311690817687179 ], [ -64.900736177489136, 18.311783521580821 ], [ -64.900731483621144, 18.311868514119851 ], [ -64.900714550858936, 18.311949484653042 ], [ -64.900681527454196, 18.312026596889609 ], [ -64.900652524745624, 18.312107566113184 ], [ -64.900623355708603, 18.312188367698582 ], [ -64.900554122464769, 18.312238156227352 ], [ -64.900465106610341, 18.312241341352092 ], [ -64.900384471353391, 18.312209657742869 ], [ -64.900299815400331, 18.312170430417154 ], [ -64.900227394412468, 18.312119636059549 ], [ -64.900171235634218, 18.312053418992662 ], [ -64.90012731444051, 18.311995080918564 ], [ -64.900111053540513, 18.311991057603109 ], [ -64.900051040394658, 18.311928696213556 ], [ -64.900003094575766, 18.311858791107511 ], [ -64.899963196697513, 18.311785031633804 ], [ -64.899915253498023, 18.311714957579909 ], [ -64.899875355619713, 18.311641196796586 ], [ -64.899807125585426, 18.311586546761646 ], [ -64.899811819453475, 18.311501554222616 ], [ -64.899824727590556, 18.311416730631436 ], [ -64.899837635727636, 18.311327881105456 ], [ -64.899866638436208, 18.311246911881881 ], [ -64.899883568579128, 18.311173654012975 ], [ -64.899859428686398, 18.311161751704731 ], [ -64.899758342885548, 18.311153202159403 ], [ -64.899698160791843, 18.31109084076985 ], [ -64.899694809338655, 18.311005849540493 ], [ -64.899687433260283, 18.31092068805367 ], [ -64.899696316772236, 18.310835695514641 ], [ -64.899785166298273, 18.310874922840355 ], [ -64.899868313508023, 18.310899398009383 ], [ -64.899951126751148, 18.310939798802053 ], [ -64.90004265848745, 18.310956562616468 ], [ -64.900125805697201, 18.310981037785496 ], [ -64.900208786578446, 18.311013559585433 ], [ -64.900300318314748, 18.311022276768938 ], [ -64.900383297886378, 18.311046751937965 ], [ -64.900474995951129, 18.311047422490503 ], [ -64.900566526377759, 18.311048260681218 ], [ -64.900658224442509, 18.31103300561017 ], [ -64.900766853959851, 18.311010040494068 ], [ -64.900917393013174, 18.310973158792763 ], [ -64.901002217914026, 18.310993107731861 ], [ -64.901037758510199, 18.311090002579078 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_665", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.850310797960447, 18.327072620608703 ], [ -64.850331082175899, 18.327016629468631 ], [ -64.850345163779991, 18.326934486778043 ], [ -64.850352539858306, 18.326845973838033 ], [ -64.850339966997524, 18.326763495871205 ], [ -64.850268051543424, 18.32666173951776 ], [ -64.850195630555561, 18.32660407330593 ], [ -64.850103932490754, 18.326495777755213 ], [ -64.850058168587111, 18.326419502399688 ], [ -64.850079289683606, 18.326280362740192 ], [ -64.850159253078289, 18.326242979434085 ], [ -64.850258997773949, 18.32619956246441 ], [ -64.850345499056289, 18.326168549407782 ], [ -64.850491511879682, 18.326138205594077 ], [ -64.850650935754629, 18.32610786439966 ], [ -64.850796948578079, 18.32607735425745 ], [ -64.850803654103856, 18.32607735425745 ], [ -64.850896357997442, 18.326071822198685 ], [ -64.850969783504524, 18.326021864722122 ], [ -64.851049746899207, 18.325978112476207 ], [ -64.851116466880512, 18.325921784750165 ], [ -64.85115703531136, 18.325839809697754 ], [ -64.851217552681362, 18.325751633343657 ], [ -64.851271196887467, 18.325676196178847 ], [ -64.851351495558447, 18.325581814594102 ], [ -64.851424921065473, 18.325531858427212 ], [ -64.851558025751842, 18.325469664675779 ], [ -64.851624913371268, 18.325413170621232 ], [ -64.851705044404127, 18.325344272653751 ], [ -64.851765226497832, 18.325281408349724 ], [ -64.851878549883168, 18.325206474099389 ], [ -64.851945437502593, 18.325149980044841 ], [ -64.852085582990981, 18.325037159573924 ], [ -64.852165546385663, 18.324993572346841 ], [ -64.852238804254625, 18.324943448541774 ], [ -64.85233921950288, 18.324836664353711 ], [ -64.852419182897563, 18.324799447376051 ], [ -64.852505348903549, 18.324787546377536 ], [ -64.852644823839398, 18.324750665985846 ], [ -64.852724787234081, 18.324713281370066 ], [ -64.852777928525711, 18.324699367404094 ], [ -64.852830734541101, 18.324714119560781 ], [ -64.852921762053256, 18.324727196645711 ], [ -64.852834422580258, 18.324762568294091 ], [ -64.852758482501031, 18.324805316020786 ], [ -64.852678686744468, 18.324840855307343 ], [ -64.852606434704398, 18.324887123435076 ], [ -64.852526806586013, 18.324922495083456 ], [ -64.852450698868608, 18.324965241500479 ], [ -64.852363527033731, 18.324989885617356 ], [ -64.852283898915346, 18.325028945304894 ], [ -64.852204103158783, 18.325075213432626 ], [ -64.852131683480593, 18.325128688690882 ], [ -64.852074518873508, 18.325193229376339 ], [ -64.852005954872595, 18.325246873582387 ], [ -64.851929847155247, 18.325289453670962 ], [ -64.851842507682193, 18.325332201397714 ], [ -64.851770255642123, 18.325378469525447 ], [ -64.851709235357703, 18.325439323481419 ], [ -64.851659446828933, 18.325507552206034 ], [ -64.851617202016655, 18.325582989370787 ], [ -64.85157126916522, 18.325654906134559 ], [ -64.851449899148975, 18.325696646722747 ], [ -64.851322829435787, 18.325822207692624 ], [ -64.85127589075546, 18.325878701747172 ], [ -64.851255103625647, 18.325979787547965 ], [ -64.851254097796755, 18.326100151735375 ], [ -64.85123079609474, 18.326199896431035 ], [ -64.851167428876295, 18.326259409281818 ], [ -64.851096685579535, 18.326314225645262 ], [ -64.851026109920895, 18.326364518398123 ], [ -64.850996605607577, 18.32641279687391 ], [ -64.850969280590107, 18.326493430821188 ], [ -64.850937094066467, 18.32657171783444 ], [ -64.850924185929387, 18.32665721459756 ], [ -64.850870374085162, 18.326723765631073 ], [ -64.850783369888404, 18.326722927440358 ], [ -64.850696030415406, 18.326745392261273 ], [ -64.850615899382547, 18.326777074560823 ], [ -64.850542809151762, 18.32682267344569 ], [ -64.850484303439487, 18.326884530611153 ], [ -64.850420768582921, 18.326941862856415 ], [ -64.850420768582921, 18.32694639039596 ], [ -64.850369472620571, 18.327008416509216 ], [ -64.850310797960447, 18.327072620608703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_865", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.957313202421062, 18.312297164854044 ], [ -64.957246819025727, 18.312240838437674 ], [ -64.957154450408382, 18.312224074623259 ], [ -64.957070128421947, 18.312247543963394 ], [ -64.957044144509609, 18.312327674996254 ], [ -64.957009946328242, 18.312407806029114 ], [ -64.956983962415904, 18.312487937061917 ], [ -64.956941213379537, 18.312560021463867 ], [ -64.956881869476547, 18.312623723958552 ], [ -64.956822359245109, 18.312687594091415 ], [ -64.956754633434912, 18.312751464224277 ], [ -64.956678524407891, 18.312791026826289 ], [ -64.956602418000159, 18.312830589428245 ], [ -64.956602753276456, 18.312798402904605 ], [ -64.956653882910359, 18.312726486140832 ], [ -64.956688081091784, 18.312646355107972 ], [ -64.956730828818479, 18.3125744383442 ], [ -64.956731499371074, 18.31248609304231 ], [ -64.956749101376147, 18.31239774774042 ], [ -64.956749939566919, 18.312309402438586 ], [ -64.956750610119457, 18.312221057136696 ], [ -64.956726134950429, 18.312140423189419 ], [ -64.956701492143281, 18.312059956880262 ], [ -64.956693779478996, 18.311971443940251 ], [ -64.956686237072176, 18.311882931000241 ], [ -64.956653212357821, 18.311802297052964 ], [ -64.956611804426586, 18.311729709736596 ], [ -64.956561849569312, 18.311656954782109 ], [ -64.956512061040542, 18.311584367465741 ], [ -64.956445173421116, 18.311527538134953 ], [ -64.956369736256306, 18.311486802065929 ], [ -64.956294465419944, 18.311438019366051 ], [ -64.956210646347984, 18.311397115658906 ], [ -64.956135378130966, 18.311356379589938 ], [ -64.956059940966213, 18.311315643520913 ], [ -64.956009984799266, 18.311242888566426 ], [ -64.955943264817961, 18.31118606054531 ], [ -64.955867827653151, 18.311145323166613 ], [ -64.95578400858119, 18.311112633728555 ], [ -64.955691639963845, 18.311095869914141 ], [ -64.955599103708323, 18.311086985092516 ], [ -64.955519643228058, 18.311080950119333 ], [ -64.955548812265135, 18.311062509923488 ], [ -64.955633301889691, 18.311030993952443 ], [ -64.955717623876126, 18.310999645619461 ], [ -64.955802113500738, 18.310968129648415 ], [ -64.955894817394324, 18.310944661617953 ], [ -64.955995903195173, 18.310921358606265 ], [ -64.956080225181609, 18.310897890575745 ], [ -64.956156332899013, 18.310858326664118 ], [ -64.956240654885448, 18.310834858633598 ], [ -64.956324976871826, 18.31081138798379 ], [ -64.956417680765469, 18.310787918643598 ], [ -64.956502170390081, 18.310756571620345 ], [ -64.956594874283667, 18.310733100970538 ], [ -64.956687578177309, 18.310717679570928 ], [ -64.956771900163744, 18.31069420892112 ], [ -64.956864604057387, 18.310678953850015 ], [ -64.956948926043822, 18.31065548450988 ], [ -64.957033414358705, 18.310623968538778 ], [ -64.95712611956202, 18.310600500508315 ], [ -64.957210441548455, 18.310569150865717 ], [ -64.957303145442097, 18.310553729466108 ], [ -64.95739584933574, 18.31053830544721 ], [ -64.957480171322175, 18.31051483741669 ], [ -64.957581257122968, 18.310507627666823 ], [ -64.95767379337849, 18.31050829952909 ], [ -64.957766329633955, 18.310509136410133 ], [ -64.9578586982513, 18.310517853593637 ], [ -64.957951234506822, 18.310534617408052 ], [ -64.958035053578783, 18.31055942785332 ], [ -64.958127588524633, 18.310560098405915 ], [ -64.95822012608977, 18.310576863530002 ], [ -64.958312493397443, 18.310585579403778 ], [ -64.958396312469461, 18.310618436480013 ], [ -64.958488848724926, 18.310619107032608 ], [ -64.958615249195191, 18.310604019599623 ], [ -64.958813565119556, 18.310596978797605 ], [ -64.958845751643196, 18.31060284744234 ], [ -64.958963601258404, 18.310595806640265 ], [ -64.959056303842374, 18.31058843056195 ], [ -64.959148841407512, 18.310581220812082 ], [ -64.959266857351224, 18.31055792041974 ], [ -64.959351180647332, 18.310534449769875 ], [ -64.959435670271944, 18.310494888477592 ], [ -64.959480597294487, 18.310471585465905 ], [ -64.959465342223382, 18.310562277701763 ], [ -64.959405998320449, 18.310626147834682 ], [ -64.959346485469609, 18.310690017967545 ], [ -64.959270377752262, 18.3107295805695 ], [ -64.959194437673034, 18.310769144481185 ], [ -64.959110115686599, 18.310792612511648 ], [ -64.959017411792956, 18.310808036530545 ], [ -64.958924709208986, 18.31082329160165 ], [ -64.958840387222551, 18.310854807572753 ], [ -64.958747683328966, 18.310862183651068 ], [ -64.958671575611561, 18.310909791574318 ], [ -64.958595466584541, 18.310949355485945 ], [ -64.958502931638691, 18.310956731564318 ], [ -64.958461523707456, 18.310884142938278 ], [ -64.95843688220998, 18.31079546236009 ], [ -64.958387092371538, 18.310722707405603 ], [ -64.9583116565164, 18.310681972646307 ], [ -64.958219120260935, 18.31068130078404 ], [ -64.958126247419443, 18.310720863385995 ], [ -64.958033543525801, 18.3107361184571 ], [ -64.957941008580008, 18.310735447904563 ], [ -64.95784863865299, 18.310726730721058 ], [ -64.957764653252525, 18.310693873644823 ], [ -64.95767228463518, 18.310677109830408 ], [ -64.957579916017835, 18.31066034601605 ], [ -64.95748754740049, 18.310635535570725 ], [ -64.957395011145024, 18.31064291164904 ], [ -64.957310521520412, 18.310674259981965 ], [ -64.957260396405673, 18.310700411532423 ], [ -64.957234581441185, 18.31071399153177 ], [ -64.957150090506957, 18.31073745956229 ], [ -64.957057555561107, 18.310744668002485 ], [ -64.956965019305642, 18.31074399744989 ], [ -64.956872483050176, 18.310743326897295 ], [ -64.956779779156534, 18.3107585819684 ], [ -64.956695457170099, 18.310782052618265 ], [ -64.956619349452694, 18.310829660541458 ], [ -64.956534859828139, 18.31086117651256 ], [ -64.956458918439239, 18.310900739114516 ], [ -64.956382812031507, 18.310948515985558 ], [ -64.956381973840791, 18.31103686259712 ], [ -64.956457243367481, 18.311085643987383 ], [ -64.956541230077619, 18.311110454432651 ], [ -64.956633766333084, 18.311111124985246 ], [ -64.956726134950429, 18.31112788879966 ], [ -64.956810120350895, 18.311160745875895 ], [ -64.956885391187257, 18.311209528575773 ], [ -64.956926796499147, 18.311282115892141 ], [ -64.956976586337589, 18.311362917477538 ], [ -64.957034924411687, 18.311427625801116 ], [ -64.957051016363835, 18.311516138741126 ], [ -64.95709242429507, 18.311588726057494 ], [ -64.957133998554809, 18.311661481011981 ], [ -64.957142714428585, 18.311690147134641 ], [ -64.957158472414164, 18.311741948630811 ], [ -64.957191498438192, 18.311822581268359 ], [ -64.957215973607219, 18.311903047577516 ], [ -64.957240616414367, 18.311983681524794 ], [ -64.957256708366515, 18.312072194464804 ], [ -64.957272802938007, 18.312160707404814 ], [ -64.957305827652419, 18.312241341352092 ], [ -64.957313202421062, 18.312297164854044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_852", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.91765740148702, 18.319719342369979 ], [ -64.917786650496055, 18.319805676014141 ], [ -64.917889411368662, 18.319832665755314 ], [ -64.917971554059193, 18.319872563633567 ], [ -64.91805369674978, 18.319899553374796 ], [ -64.918149585768163, 18.319920006538041 ], [ -64.918252347950443, 18.319940457081884 ], [ -64.918348404606945, 18.319947665522079 ], [ -64.91843758809955, 18.319961579488051 ], [ -64.918540517919951, 18.319975493454024 ], [ -64.918629701412556, 18.319982701894219 ], [ -64.918718884905161, 18.319990077972534 ], [ -64.918808068397766, 18.319997286412729 ], [ -64.918897251890371, 18.319997956965324 ], [ -64.918986435382976, 18.320005165405519 ], [ -64.919075618875581, 18.320019079371434 ], [ -64.919164802368186, 18.320019749924029 ], [ -64.919261026662866, 18.320020588114744 ], [ -64.919350210155471, 18.320027796554939 ], [ -64.919439226009956, 18.320041542882734 ], [ -64.919535450304579, 18.320042381073449 ], [ -64.919624633797184, 18.320049589513644 ], [ -64.919713817289789, 18.320050260066239 ], [ -64.919803168420572, 18.320051099566626 ], [ -64.919892351913177, 18.320051768809549 ], [ -64.920009028061372, 18.320052607000264 ], [ -64.920098379192154, 18.320053445190979 ], [ -64.92018756268476, 18.320054115743517 ], [ -64.920324858324705, 18.320048583684809 ], [ -64.92041420945543, 18.320036178462146 ], [ -64.920503728224332, 18.320017235351884 ], [ -64.920593079355115, 18.319998293551237 ], [ -64.92068243048584, 18.319985887018959 ], [ -64.920771781616565, 18.319973481796296 ], [ -64.92087504671332, 18.319954538686034 ], [ -64.920964397844045, 18.319974487625132 ], [ -64.920951322068845, 18.319977672749872 ], [ -64.920873035055592, 18.320016564799289 ], [ -64.920812852961888, 18.320077417445532 ], [ -64.920739092178508, 18.320120668086702 ], [ -64.92065175270551, 18.320137431901117 ], [ -64.920564413232455, 18.320154363353652 ], [ -64.920477241397577, 18.320149334209361 ], [ -64.920446898893545, 18.320144641650984 ], [ -64.920387219714257, 18.320144137426894 ], [ -64.920299880241259, 18.320169786062877 ], [ -64.920212708406325, 18.320155872096962 ], [ -64.920134421393129, 18.320194764146379 ], [ -64.920060660609749, 18.320238014787492 ], [ -64.919973488774872, 18.320237344234954 ], [ -64.919895034123499, 18.320276237593987 ], [ -64.919803168420572, 18.320293000098729 ], [ -64.919715996585694, 18.320292329546191 ], [ -64.919628824750816, 18.320282774171972 ], [ -64.919541820554059, 18.320264669252424 ], [ -64.919459342587231, 18.320237679511195 ], [ -64.919372506028651, 18.320206331178269 ], [ -64.919290028061766, 18.320179341437097 ], [ -64.919202856226889, 18.320178670884559 ], [ -64.919115684392011, 18.320186717515469 ], [ -64.919028344919013, 18.320190405554627 ], [ -64.918999678796354, 18.320187555706184 ], [ -64.918932120624333, 18.320180850180407 ], [ -64.918845116427576, 18.320158219030986 ], [ -64.918757944592699, 18.320148832604559 ], [ -64.918670772757821, 18.320139443558844 ], [ -64.91858376856112, 18.320121171001119 ], [ -64.918487711904618, 18.320094182569619 ], [ -64.918396013839811, 18.320071382472349 ], [ -64.91830900964311, 18.320053277552802 ], [ -64.918222005446353, 18.320030646403382 ], [ -64.918134833611475, 18.320025618568707 ], [ -64.918033747810625, 18.320033497561496 ], [ -64.917946575975748, 18.320041542882734 ], [ -64.91785923650275, 18.320062832927022 ], [ -64.917748596637352, 18.320114633113519 ], [ -64.917683887004102, 18.320170959529889 ], [ -64.917623704910397, 18.320231979814309 ], [ -64.917540725338824, 18.320261987042102 ], [ -64.917523123333694, 18.320178503246382 ], [ -64.917551452870327, 18.320095522365136 ], [ -64.917593362406365, 18.320021258667339 ], [ -64.91763979948189, 18.319951521199414 ], [ -64.917686401576248, 18.319881783731489 ], [ -64.917687073438515, 18.319798467573946 ], [ -64.917672153643707, 18.319755216932776 ], [ -64.91765740148702, 18.319719342369979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_313", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.876036712557493, 18.317995520644899 ], [ -64.876040064010738, 18.318008093505682 ], [ -64.876078956060098, 18.318157122506022 ], [ -64.876011900802553, 18.318099287346342 ], [ -64.875952390571058, 18.318034243746467 ], [ -64.87590813279138, 18.317962160654247 ], [ -64.875848622559943, 18.317889908614177 ], [ -64.87578927734728, 18.317817656574107 ], [ -64.87572658068143, 18.317763675782089 ], [ -64.875746361982408, 18.317658400337336 ], [ -64.87573647264162, 18.317598218243631 ], [ -64.875746864896882, 18.317615986577209 ], [ -64.875748708916433, 18.317670470283701 ], [ -64.875817609503315, 18.317759484828457 ], [ -64.875905450581058, 18.317885045798334 ], [ -64.875979211364438, 18.317961322463532 ], [ -64.875998992665416, 18.317980431902242 ], [ -64.876036712557493, 18.317995520644899 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_107", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.855387048598914, 18.323024998931487 ], [ -64.855351509312413, 18.323132957896235 ], [ -64.855278921996046, 18.323184087530137 ], [ -64.855233155473059, 18.323261201076377 ], [ -64.855128550580901, 18.323372177527744 ], [ -64.855079097328428, 18.32345180564613 ], [ -64.855010533327516, 18.323509137891392 ], [ -64.854941969326603, 18.32356261445932 ], [ -64.854877093364905, 18.32361994539491 ], [ -64.854812385041328, 18.323680799350825 ], [ -64.854772319524898, 18.323720529590958 ], [ -64.854747509079573, 18.323745172398105 ], [ -64.85468648748548, 18.323806025044405 ], [ -64.854625468510733, 18.32387056442019 ], [ -64.854564280588193, 18.323931418376105 ], [ -64.85451465838787, 18.32399964710072 ], [ -64.854457327452337, 18.324064186476505 ], [ -64.854407538923567, 18.324132416510793 ], [ -64.854342830599933, 18.324189581117878 ], [ -64.854285498354727, 18.324257642204316 ], [ -64.854213077366808, 18.324307598371263 ], [ -64.854129594880817, 18.324353866498996 ], [ -64.85404594344692, 18.324407343066923 ], [ -64.853970003367692, 18.324450089484003 ], [ -64.853901439366837, 18.324507255400761 ], [ -64.853817620294819, 18.324567940408883 ], [ -64.853730280821765, 18.324607000096421 ], [ -64.853646963354549, 18.324631641593953 ], [ -64.853555937152009, 18.324656118072653 ], [ -64.853468932955309, 18.324666176361291 ], [ -64.853381928758552, 18.324672714248891 ], [ -64.853334151887509, 18.324684616557136 ], [ -64.853273466879386, 18.324708421173568 ], [ -64.853182439367174, 18.324733063980716 ], [ -64.853095602808594, 18.324725017349806 ], [ -64.853008766250014, 18.324717138357073 ], [ -64.852921762053256, 18.324727196645711 ], [ -64.852830734541101, 18.324714119560781 ], [ -64.852777928525711, 18.324699367404094 ], [ -64.852817826404021, 18.324688807510711 ], [ -64.852977250278911, 18.324639520586686 ], [ -64.853063919199371, 18.324595768340771 ], [ -64.853150252843534, 18.324571293171743 ], [ -64.853223678350616, 18.324521169366733 ], [ -64.853230551514514, 18.324518822432708 ], [ -64.853316717520556, 18.324490323948226 ], [ -64.853402883526542, 18.324478421639981 ], [ -64.853489217170704, 18.324466350383943 ], [ -64.853569012927267, 18.324429136025628 ], [ -64.853629027382794, 18.32440432558036 ], [ -64.853715361026957, 18.324373312523676 ], [ -64.853828516774172, 18.324329894244386 ], [ -64.853914682780157, 18.324317991936198 ], [ -64.854054828268545, 18.324211540405088 ], [ -64.854134790353612, 18.324167954487621 ], [ -64.85419514139511, 18.324098721243843 ], [ -64.854322377436745, 18.323947846914223 ], [ -64.85438909741805, 18.323891520497853 ], [ -64.854442910571947, 18.323822285944345 ], [ -64.854524047433642, 18.32363939141959 ], [ -64.854544666925335, 18.323557250038732 ], [ -64.854591773243783, 18.323481645235745 ], [ -64.854732421646645, 18.323318198045342 ], [ -64.854779527965093, 18.323242760880589 ], [ -64.854800147456785, 18.323160618190002 ], [ -64.854814061422758, 18.323078475499472 ], [ -64.85482814302685, 18.322996165170764 ], [ -64.854855300406143, 18.322914190118297 ], [ -64.854849599399586, 18.322806566429904 ], [ -64.854837195486596, 18.322724088463019 ], [ -64.854784723437888, 18.322654015718854 ], [ -64.854739127172365, 18.322577740363329 ], [ -64.854660001968398, 18.322520072841769 ], [ -64.854501416284165, 18.322474475266631 ], [ -64.85440871239058, 18.322461064215076 ], [ -64.854322714022658, 18.322447653163579 ], [ -64.854236715654793, 18.322434242112081 ], [ -64.854018115515032, 18.322413454982211 ], [ -64.853931614232749, 18.322444468038839 ], [ -64.853845280588587, 18.322469110845987 ], [ -64.853685856713639, 18.322512026210859 ], [ -64.853632212507534, 18.322581260764366 ], [ -64.853578399353637, 18.322656697929119 ], [ -64.853531461982982, 18.322732302732106 ], [ -64.853471112251157, 18.322795167036077 ], [ -64.853344713090564, 18.322857360787509 ], [ -64.853258211808281, 18.322888373844137 ], [ -64.853220157949579, 18.322915866499784 ], [ -64.853284866273157, 18.322858701892642 ], [ -64.853349742234911, 18.322801537285557 ], [ -64.853395675086347, 18.322729620521784 ], [ -64.853434231859467, 18.322654183356974 ], [ -64.853487708427394, 18.322585954632359 ], [ -64.853526265200514, 18.322506829428391 ], [ -64.853568510012849, 18.322431392263582 ], [ -64.853621986580777, 18.322363163539023 ], [ -64.853686862542475, 18.322302310892724 ], [ -64.853759114582544, 18.322256042764991 ], [ -64.853842598378264, 18.322220671116611 ], [ -64.853937481567755, 18.322185299468231 ], [ -64.85402817380367, 18.322182449619788 ], [ -64.854122554078742, 18.322197704690893 ], [ -64.854209222999202, 18.322223688603174 ], [ -64.854299915235117, 18.322242464075316 ], [ -64.854382728478242, 18.322268447987653 ], [ -64.854469565036823, 18.322290743860776 ], [ -64.854552545918125, 18.322316727773114 ], [ -64.854639213528856, 18.322335503245256 ], [ -64.854725882449316, 18.322361487157536 ], [ -64.854805176601133, 18.322383783030716 ], [ -64.854812720317568, 18.322383783030716 ], [ -64.854910453355558, 18.322427368948127 ], [ -64.854901736172053, 18.322538177761317 ], [ -64.854945657365761, 18.322676143953856 ], [ -64.854976167507971, 18.322775385735099 ], [ -64.855020423978033, 18.322870436562766 ], [ -64.854992259460118, 18.322999181347654 ], [ -64.855013886090376, 18.323102783030322 ], [ -64.855058476527006, 18.32314184271786 ], [ -64.855239527032211, 18.32306154404688 ], [ -64.855339104089751, 18.322997841552194 ], [ -64.855387048598914, 18.323024998931487 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_688", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.866311520909619, 18.317796869444237 ], [ -64.866330128743641, 18.317879850325539 ], [ -64.866339013565266, 18.317962829897169 ], [ -64.866357453761111, 18.318045978416592 ], [ -64.866356784518189, 18.31812896060751 ], [ -64.866394669429042, 18.31821210781726 ], [ -64.866441943385666, 18.318304645382455 ], [ -64.866499275630929, 18.318369521344152 ], [ -64.866575887572424, 18.318425512484282 ], [ -64.866662387545034, 18.31846306342851 ], [ -64.866826170011734, 18.31850128361566 ], [ -64.866845280760117, 18.318585102687678 ], [ -64.866845114431669, 18.31860756750865 ], [ -64.866844611517251, 18.31867462145658 ], [ -64.86683203734674, 18.318763804949185 ], [ -64.866796162783942, 18.31884175668614 ], [ -64.866760455859264, 18.318919708423095 ], [ -64.866689712562504, 18.31897502901063 ], [ -64.866583932893661, 18.31901895151401 ], [ -64.866501791512746, 18.319051808590245 ], [ -64.866408249428389, 18.31905097039953 ], [ -64.866326609652276, 18.31901677090849 ], [ -64.866233401534544, 18.318971340971473 ], [ -64.866151929396551, 18.318925911034398 ], [ -64.866082191928626, 18.318869584618028 ], [ -64.865985464719586, 18.318849300402633 ], [ -64.865990661501996, 18.318766822435748 ], [ -64.865959480807248, 18.318688367784375 ], [ -64.865928467750621, 18.318610080771123 ], [ -64.865879014498091, 18.318540175665078 ], [ -64.865829728883796, 18.318470270559033 ], [ -64.865780275631323, 18.318400365452987 ], [ -64.865740042476716, 18.31832626939331 ], [ -64.865714393840733, 18.318267260766618 ], [ -64.865723278662358, 18.318169695366862 ], [ -64.865710370525278, 18.318087049761857 ], [ -64.865729313635541, 18.318005746571657 ], [ -64.865725625596383, 18.317972554219182 ], [ -64.865726463787098, 18.317885548712752 ], [ -64.865727303287485, 18.317798376877874 ], [ -64.865768374632751, 18.317721432279427 ], [ -64.865819670595158, 18.317654040435912 ], [ -64.865901142733151, 18.317615986577209 ], [ -64.865972556582449, 18.317558655641619 ], [ -64.866043802793683, 18.317510709822784 ], [ -64.866095101375436, 18.317443488236677 ], [ -64.866147235528501, 18.317279370493736 ], [ -64.866164000652589, 18.317150289122822 ], [ -64.866122929307323, 18.317114748526649 ], [ -64.866062745903946, 18.317049706236446 ], [ -64.865995690646344, 18.316991200524171 ], [ -64.865928804336534, 18.316932527173776 ], [ -64.865855043553211, 18.316880390401309 ], [ -64.865781113822038, 18.316834626497666 ], [ -64.865714227512228, 18.316776119475776 ], [ -64.865647172254626, 18.316717615073173 ], [ -64.865586988851248, 18.316652571473298 ], [ -64.86553368123117, 18.316581157623943 ], [ -64.865514233896761, 18.316497338551983 ], [ -64.865481210492078, 18.316419554453148 ], [ -64.865448016829873, 18.31634193799249 ], [ -64.865401413425843, 18.316270690471583 ], [ -64.865408958452008, 18.316187040347415 ], [ -64.865423206384605, 18.316103221275398 ], [ -64.865437455626818, 18.316019568531885 ], [ -64.865451704869088, 18.315935918407718 ], [ -64.86540527041285, 18.315858134308883 ], [ -64.865383477454145, 18.3158071723131 ], [ -64.865470649289023, 18.31581840406875 ], [ -64.865527981534228, 18.315883280030505 ], [ -64.865585312469818, 18.31594832363038 ], [ -64.865632921702741, 18.316022418380328 ], [ -64.865690255257675, 18.316087295651755 ], [ -64.865747418555088, 18.31615233925163 ], [ -64.865795027787954, 18.31622643531125 ], [ -64.865842638330548, 18.316300531370928 ], [ -64.865890247563414, 18.316374627430548 ], [ -64.865954451662901, 18.316435312438671 ], [ -64.866004575467969, 18.316522987188023 ], [ -64.866061907713231, 18.316587863149721 ], [ -64.866109516946096, 18.316661959209398 ], [ -64.866156958540898, 18.316736055269018 ], [ -64.866214290786104, 18.316801097559221 ], [ -64.866242453994289, 18.316884247388316 ], [ -64.866280341524543, 18.316967394598066 ], [ -64.866289226346169, 18.317050375479369 ], [ -64.866298109858121, 18.317133356360614 ], [ -64.866297440615199, 18.317216338551589 ], [ -64.866296602424484, 18.317299150485042 ], [ -64.866295930562273, 18.317382131366344 ], [ -64.866304815383899, 18.317465113557262 ], [ -64.866304144831304, 18.317548094438564 ], [ -64.866303306640589, 18.317630906372017 ], [ -64.866312191462214, 18.317713888562992 ], [ -64.866311520909619, 18.317796869444237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_568", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.894228129462817, 18.3135187440094 ], [ -64.894173982342295, 18.313585296352528 ], [ -64.89421035981951, 18.313660398241041 ], [ -64.89429702873997, 18.313653189800846 ], [ -64.89437565102952, 18.31361848870506 ], [ -64.894446059049983, 18.313567861985575 ], [ -64.894528369378691, 18.31359602519376 ], [ -64.894544127364213, 18.313678838436886 ], [ -64.894617888147593, 18.313730638623383 ], [ -64.894712603698963, 18.313731309175978 ], [ -64.894799272619423, 18.313724100735783 ], [ -64.894881918224371, 18.313697278632731 ], [ -64.894952493883011, 18.313646651913245 ], [ -64.895010664318988, 18.313584122885516 ], [ -64.895044694862236, 18.313474152263097 ], [ -64.895131866697113, 18.313396200526086 ], [ -64.895219038531991, 18.313329983459255 ], [ -64.895326494582264, 18.313291426686135 ], [ -64.895413331140901, 18.31326846026036 ], [ -64.895499832423184, 18.313269130812955 ], [ -64.895586333705467, 18.31326980136555 ], [ -64.895673002625927, 18.313270639556265 ], [ -64.895750954362882, 18.31330668175724 ], [ -64.895793869727754, 18.313331827478805 ], [ -64.895728490851582, 18.313389327362188 ], [ -64.895667302929041, 18.313450682922905 ], [ -64.895598068375591, 18.31350432712901 ], [ -64.895544759445784, 18.313569538367005 ], [ -64.895592703954947, 18.313639611111171 ], [ -64.895567725871501, 18.313720580334746 ], [ -64.895470495747986, 18.313731309175978 ], [ -64.895385335570836, 18.313749917009943 ], [ -64.895300175393686, 18.313772548159363 ], [ -64.895215015216536, 18.313795011670663 ], [ -64.895129855039386, 18.313813619504685 ], [ -64.895044694862236, 18.313828371661316 ], [ -64.894955679007751, 18.313835412463391 ], [ -64.894862472199691, 18.313846308942743 ], [ -64.894773288707086, 18.313853349744818 ], [ -64.894684272852601, 18.313852679192223 ], [ -64.894599447951748, 18.313836418292226 ], [ -64.89451043209732, 18.313831892062353 ], [ -64.894421416242835, 18.313838932864428 ], [ -64.894303901903868, 18.313845638390148 ], [ -64.894218741726718, 18.313868269539626 ], [ -64.894133413911447, 18.313894588728203 ], [ -64.894048756648715, 18.313866760796316 ], [ -64.89395974079423, 18.31385452321183 ], [ -64.893870892577922, 18.313846141304623 ], [ -64.893818757115127, 18.313779924237735 ], [ -64.89378305019045, 18.313702307777078 ], [ -64.893759413212194, 18.313621003277206 ], [ -64.893743990502912, 18.31353969877739 ], [ -64.893732423470965, 18.313483875275438 ], [ -64.893732591109142, 18.313456885534265 ], [ -64.893737452615312, 18.313371892995235 ], [ -64.893750360752392, 18.313286900456205 ], [ -64.893767124566807, 18.313205931232687 ], [ -64.893816410181159, 18.313128985324568 ], [ -64.893889835688185, 18.31307534111852 ], [ -64.893914813771687, 18.312994371894945 ], [ -64.893947838486042, 18.312917425986825 ], [ -64.893968793254032, 18.31283628912513 ], [ -64.894001817968388, 18.312759343217067 ], [ -64.89407507583735, 18.312713578003752 ], [ -64.894156212699045, 18.312683235499662 ], [ -64.894241540514315, 18.312656916311084 ], [ -64.894189740327818, 18.312723301016092 ], [ -64.894127378938265, 18.312781806728367 ], [ -64.894069208502287, 18.312848191433375 ], [ -64.894031322281762, 18.31292279040747 ], [ -64.894018246506505, 18.313005268374297 ], [ -64.894001147415793, 18.313087913979302 ], [ -64.89397566641793, 18.31317039194613 ], [ -64.893995447718908, 18.313253205189255 ], [ -64.894056803279625, 18.313312716730422 ], [ -64.89413458737846, 18.313376251586988 ], [ -64.89418756103197, 18.313443642120887 ], [ -64.894228129462817, 18.3135187440094 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_486", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.878649016445763, 18.321909199445031 ], [ -64.87864264619634, 18.322017996600493 ], [ -64.878631246802513, 18.322121764611666 ], [ -64.878602413041733, 18.322218994735181 ], [ -64.878557988933608, 18.322300969787591 ], [ -64.87851105025328, 18.322368863235909 ], [ -64.878457238409055, 18.322444468038839 ], [ -64.878389344960738, 18.322513534954169 ], [ -64.878360511199958, 18.322553935746896 ], [ -64.878300329106253, 18.322637419542559 ], [ -64.87824584670949, 18.322691063748664 ], [ -64.878164374571497, 18.322733308560942 ], [ -64.877952647595635, 18.322805728239132 ], [ -64.877807305324779, 18.322869263095754 ], [ -64.877745614487765, 18.322903293638944 ], [ -64.877631788188012, 18.322949058852259 ], [ -64.877509915257292, 18.323015778833565 ], [ -64.877446045124429, 18.323078140223174 ], [ -64.877409835285334, 18.32316279748585 ], [ -64.87738988634618, 18.323243934347602 ], [ -64.877336577416429, 18.323323562465987 ], [ -64.877306905464934, 18.323375530290605 ], [ -64.877255608192854, 18.32346622252652 ], [ -64.877189391125967, 18.323576696063412 ], [ -64.877164748318819, 18.323663364983872 ], [ -64.877199784690902, 18.323352731503007 ], [ -64.877276060046427, 18.32314016633643 ], [ -64.877282430295907, 18.323051821034539 ], [ -64.877317634306166, 18.322950567595569 ], [ -64.877417379001827, 18.322816959994782 ], [ -64.877547466201577, 18.322794161207241 ], [ -64.877698508169317, 18.322801034371139 ], [ -64.877833959789655, 18.322740684639314 ], [ -64.877953150510052, 18.322687710985804 ], [ -64.878019032300642, 18.322630211102364 ], [ -64.878086422834542, 18.322545721477809 ], [ -64.878236794249688, 18.322372551275066 ], [ -64.878381801244245, 18.322182449619788 ], [ -64.878406108775152, 18.322098965824068 ], [ -64.87840040907821, 18.322038113177769 ], [ -64.878328827590735, 18.321914563865676 ], [ -64.878221203902285, 18.321855387600806 ], [ -64.878100336800458, 18.321821692333856 ], [ -64.87801953521506, 18.321820015952426 ], [ -64.87794560679356, 18.321821859972033 ], [ -64.877863128826732, 18.321768886318523 ], [ -64.877623071004507, 18.321680373378513 ], [ -64.877440177789424, 18.321621197113643 ], [ -64.877331715910259, 18.321556991704483 ], [ -64.877161730832199, 18.321497312525253 ], [ -64.877044384131409, 18.321437130431548 ], [ -64.876953524257374, 18.32133872684102 ], [ -64.876935084061529, 18.321308719613228 ], [ -64.876921505371854, 18.321244346565948 ], [ -64.876901891708997, 18.321078720079697 ], [ -64.876900718242041, 18.32095148272839 ], [ -64.876896359650289, 18.320776803782337 ], [ -64.876867022975091, 18.320692817072199 ], [ -64.876769625213399, 18.320523837823032 ], [ -64.876736600499044, 18.320410849713994 ], [ -64.876737271051638, 18.320235164939049 ], [ -64.876716316283591, 18.320067191518774 ], [ -64.876699552469233, 18.319928219497399 ], [ -64.876723189447546, 18.319805676014141 ], [ -64.876755209642681, 18.319660333743286 ], [ -64.876808684900936, 18.319526390866201 ], [ -64.876792591639116, 18.319618256569129 ], [ -64.876788233047364, 18.319724371514269 ], [ -64.876803823394766, 18.319862506654601 ], [ -64.876813378768986, 18.319917323018046 ], [ -64.876888648295619, 18.320152351695924 ], [ -64.876991410477899, 18.320317139991459 ], [ -64.877074558997322, 18.320439851112894 ], [ -64.877144464103367, 18.320507912199332 ], [ -64.877264157738182, 18.320602963027 ], [ -64.877365243539032, 18.320684099888695 ], [ -64.877444536381176, 18.320739755752527 ], [ -64.877510418171767, 18.32079725563591 ], [ -64.877578479258204, 18.320848552907933 ], [ -64.877631117635417, 18.320903873495467 ], [ -64.877706051885809, 18.320942597906765 ], [ -64.877785177089777, 18.320996074474692 ], [ -64.877857596767967, 18.321062123903403 ], [ -64.877928340064727, 18.321115935747628 ], [ -64.877965555732715, 18.321135717048605 ], [ -64.8780292582274, 18.321209980746403 ], [ -64.878071670677855, 18.321250046262833 ], [ -64.8781060364974, 18.32131291056686 ], [ -64.878182311852868, 18.32138382150174 ], [ -64.87826193997131, 18.321464455449018 ], [ -64.878338382964955, 18.321522458246818 ], [ -64.878401582545223, 18.321567720545715 ], [ -64.87854139275737, 18.321638631480653 ], [ -64.878616327007705, 18.321697472469168 ], [ -64.878640802176733, 18.321792690934956 ], [ -64.878649016445763, 18.321909199445031 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_269", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 5.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.949896055359147, 18.336097252452817 ], [ -64.949904940180772, 18.336179730419644 ], [ -64.949904100680385, 18.336271259536602 ], [ -64.949893876063243, 18.336353737503487 ], [ -64.949902759575195, 18.336436215470314 ], [ -64.949911644396821, 18.336518693437142 ], [ -64.949910807515778, 18.336610223863772 ], [ -64.949843249343758, 18.336664707570264 ], [ -64.949786252374793, 18.336600165575135 ], [ -64.949709975709595, 18.336553729809225 ], [ -64.94962380970361, 18.336534786698962 ], [ -64.94953764500724, 18.336524896048502 ], [ -64.949422477602297, 18.336524057857787 ], [ -64.949326588583972, 18.336523219667072 ], [ -64.949240253630137, 18.336531770522072 ], [ -64.949153752347797, 18.336549372527202 ], [ -64.949067420013307, 18.336557920762857 ], [ -64.948980917421352, 18.336584742865909 ], [ -64.948884862074522, 18.336593124773117 ], [ -64.948788973056139, 18.336592455530194 ], [ -64.948654694902814, 18.33659128075351 ], [ -64.948568361258651, 18.33659983160851 ], [ -64.948481859976368, 18.33661743361364 ], [ -64.948395357384356, 18.336635201947217 ], [ -64.948299468365974, 18.336634363756502 ], [ -64.948213136031484, 18.336651965761632 ], [ -64.948126633439529, 18.336669735404882 ], [ -64.948040133466918, 18.336687337410012 ], [ -64.947953632184579, 18.336714159513065 ], [ -64.947867130902296, 18.336740981616117 ], [ -64.947780629620013, 18.336767803719113 ], [ -64.947694128337673, 18.33677618562632 ], [ -64.947588683945128, 18.336784567533527 ], [ -64.947502015024668, 18.33681138963658 ], [ -64.947415681380505, 18.33682899164171 ], [ -64.947329180098222, 18.33684659364684 ], [ -64.94723329107984, 18.336845923094245 ], [ -64.947137402061458, 18.33684525254165 ], [ -64.947051068417295, 18.336853634448858 ], [ -64.946964567135012, 18.336871236453987 ], [ -64.946878065852673, 18.33688045655191 ], [ -64.946832300639358, 18.336870230625095 ], [ -64.946775303670449, 18.336805689939695 ], [ -64.946737585088044, 18.336723045644362 ], [ -64.946747978652922, 18.336622293810137 ], [ -64.946748816843694, 18.336530763383507 ], [ -64.946749655034409, 18.336439232956877 ], [ -64.946731214838564, 18.336338314794205 ], [ -64.94666466249538, 18.336282826568549 ], [ -64.946578496489394, 18.336263883458287 ], [ -64.946491995207055, 18.336281485463417 ], [ -64.946376660163992, 18.336317192388094 ], [ -64.946290158881709, 18.336325741933422 ], [ -64.946203992875667, 18.336315852592577 ], [ -64.946117994507802, 18.336278635614974 ], [ -64.946041719152277, 18.336232199849064 ], [ -64.945955385508114, 18.336240749394392 ], [ -64.945859496489732, 18.336239912513349 ], [ -64.945763607471406, 18.336239240651082 ], [ -64.945696887490044, 18.336183752425427 ], [ -64.945774001036284, 18.336138657764707 ], [ -64.945860502318624, 18.336120889431129 ], [ -64.945956391337006, 18.336121727621844 ], [ -64.946071558741892, 18.33609507184724 ], [ -64.946158060024231, 18.336077469842166 ], [ -64.946214721716899, 18.336129772943082 ], [ -64.946301558275479, 18.336143183994579 ], [ -64.946388562472237, 18.336143854547174 ], [ -64.946469196419457, 18.336106135964769 ], [ -64.946503394600882, 18.336029692971124 ], [ -64.946577323022382, 18.335985605448911 ], [ -64.946650748529407, 18.335999016500409 ], [ -64.946664159580962, 18.335999016500409 ], [ -64.946751163777662, 18.336006055992812 ], [ -64.94683816797442, 18.336013096794829 ], [ -64.946925004533, 18.336020306544697 ], [ -64.947012008729757, 18.336027346037099 ], [ -64.947098845288338, 18.336034386839117 ], [ -64.947186017123215, 18.336028688451904 ], [ -64.947273021319972, 18.336029357694827 ], [ -64.947360025516673, 18.336017287748462 ], [ -64.947460440764928, 18.336011588051576 ], [ -64.947547444961685, 18.336012258604114 ], [ -64.947634449158443, 18.336012930466381 ], [ -64.947721453355143, 18.336013599709304 ], [ -64.947808457551901, 18.336014271571514 ], [ -64.947895460438929, 18.336021312373589 ], [ -64.947982465945358, 18.336021981616511 ], [ -64.948069470142116, 18.336022653478722 ], [ -64.948156474338816, 18.336023322721644 ], [ -64.948243310897453, 18.336043271660799 ], [ -64.948330147456034, 18.336050312462817 ], [ -64.948417319290911, 18.336044612765932 ], [ -64.948504491125789, 18.336019634682486 ], [ -64.948591662960666, 18.336001194486641 ], [ -64.948678667157424, 18.335995494789756 ], [ -64.948765671354124, 18.335989796402487 ], [ -64.948852675550881, 18.335990465645409 ], [ -64.949013440530962, 18.335978898613462 ], [ -64.949100612365839, 18.335966828667097 ], [ -64.949194488416822, 18.335948388471252 ], [ -64.949281492613522, 18.335936150886766 ], [ -64.949368664448457, 18.335917710690921 ], [ -64.949449298395677, 18.335886362357996 ], [ -64.949536471540227, 18.335867923471824 ], [ -64.949583410220555, 18.335842608802409 ], [ -64.949716347268748, 18.335802878562276 ], [ -64.949792622624273, 18.335849146690009 ], [ -64.949878788630315, 18.335868089800272 ], [ -64.94993578559928, 18.335932630485729 ], [ -64.949906281285905, 18.336014940814437 ], [ -64.949896055359147, 18.336097252452817 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_925", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.871037407827146, 18.307604136322425 ], [ -64.871067917969356, 18.307683932078987 ], [ -64.871108820366828, 18.30776389547367 ], [ -64.871170680151636, 18.307833968217835 ], [ -64.871253661032881, 18.30787453664874 ], [ -64.871315687146193, 18.307934717432715 ], [ -64.871419621485813, 18.307965396522775 ], [ -64.871502602367059, 18.307995905355313 ], [ -64.871585584558034, 18.308036475095832 ], [ -64.871668733077456, 18.308066985238042 ], [ -64.871793120580321, 18.308137559586953 ], [ -64.871865540258511, 18.308188018668318 ], [ -64.871938127574879, 18.308238311421178 ], [ -64.872010547253069, 18.308288601554693 ], [ -64.872093360496194, 18.308339060636058 ], [ -64.872207354434124, 18.308419528254831 ], [ -64.872269211599587, 18.30847987667704 ], [ -64.872320676509787, 18.308549949421206 ], [ -64.872382201018297, 18.308669810694198 ], [ -64.872401982319275, 18.308779447350048 ], [ -64.872422097586934, 18.308869132447398 ], [ -64.872431318994529, 18.308998550404226 ], [ -64.872440874368692, 18.309088235501576 ], [ -64.872450597381089, 18.309177755580151 ], [ -64.872449759190317, 18.309267440677559 ], [ -64.872448920999602, 18.309366851406594 ], [ -64.872448081499215, 18.309456368865824 ], [ -64.872447244618172, 18.309545887634727 ], [ -64.872456967630512, 18.309635575351422 ], [ -64.872466186418762, 18.309755101348117 ], [ -64.872475909431159, 18.309844786445467 ], [ -64.87247507255006, 18.309934306524042 ], [ -64.872495021489215, 18.310023991621392 ], [ -64.87251513806649, 18.310113679338144 ], [ -64.87252469344071, 18.310203364435495 ], [ -64.87255537122104, 18.310283161501729 ], [ -64.87258588136325, 18.310362955948563 ], [ -64.87261639150546, 18.310442920652918 ], [ -64.8726645036528, 18.31052858243487 ], [ -64.872706916103255, 18.310605529652605 ], [ -64.87274329358047, 18.310682306612875 ], [ -64.872779503419565, 18.310759084882818 ], [ -64.872803474364503, 18.310841730487823 ], [ -64.872827446619112, 18.310924208454708 ], [ -64.872845048624242, 18.311006854059656 ], [ -64.87284437938132, 18.311095031723426 ], [ -64.872818898383457, 18.311177174413956 ], [ -64.87281822652119, 18.311265519715846 ], [ -64.87282359225145, 18.311353865017736 ], [ -64.872841360585028, 18.311436342984621 ], [ -64.872871369122493, 18.311518988589626 ], [ -64.872895341377102, 18.311601634194574 ], [ -64.872925348604895, 18.311690147134641 ], [ -64.872943118248145, 18.311772625101469 ], [ -64.872960720253275, 18.311855103068297 ], [ -64.87297245361367, 18.311937748673301 ], [ -64.872965414121268, 18.312025927646744 ], [ -64.872958539647698, 18.312114104000784 ], [ -64.872970106679645, 18.312196581967669 ], [ -64.872981673711593, 18.312279059934497 ], [ -64.873021908175815, 18.312357011671452 ], [ -64.87309181328186, 18.312417361403277 ], [ -64.873161718387905, 18.312470167418667 ], [ -64.873200107522905, 18.312545101669002 ], [ -64.873215027317713, 18.31262741199771 ], [ -64.873292811416491, 18.312673009572904 ], [ -64.873378642146236, 18.312695975998622 ], [ -64.873464471566308, 18.312719110062517 ], [ -64.873550471243846, 18.31273486804804 ], [ -64.873636300663918, 18.312757834473757 ], [ -64.873714084762696, 18.31279588833246 ], [ -64.873752475207368, 18.312870990220972 ], [ -64.873743924352368, 18.312960508989875 ], [ -64.873665303372491, 18.313004597821703 ], [ -64.873578968418656, 18.31303376685878 ], [ -64.873492802412613, 18.31304801610105 ], [ -64.873406636406628, 18.313069809059755 ], [ -64.873312760355645, 18.31306897086904 ], [ -64.87322659434966, 18.313083220111253 ], [ -64.873140259395825, 18.31311238914833 ], [ -64.873061804744395, 18.313149101901843 ], [ -64.873029953497053, 18.313217665902755 ], [ -64.87304504223971, 18.31326996900367 ], [ -64.873107068352965, 18.313330318735495 ], [ -64.87316909446622, 18.313390668467378 ], [ -64.873231120579533, 18.313450850561082 ], [ -64.873293145383116, 18.313511200292908 ], [ -64.873339413510905, 18.313586134543243 ], [ -64.873377971593698, 18.313661236431756 ], [ -64.873400601433445, 18.313743546760463 ], [ -64.873438990568388, 18.313818648648976 ], [ -64.873438321325523, 18.313908167417878 ], [ -64.873437483134808, 18.313997853824901 ], [ -64.873452401619943, 18.314080164153609 ], [ -64.873506548740465, 18.314147889963806 ], [ -64.873568408525273, 18.314215615774003 ], [ -64.873630602276705, 18.314275797867651 ], [ -64.873692459442168, 18.314343523677849 ], [ -64.873707380546648, 18.314425834006556 ], [ -64.873616854639181, 18.314497583132209 ], [ -64.87354309516553, 18.314555250653711 ], [ -64.873546615566511, 18.314583916776371 ], [ -64.873548124309821, 18.314595483808262 ], [ -64.873457264435785, 18.314612918175271 ], [ -64.873371601344218, 18.314635380376899 ], [ -64.873285938252593, 18.314658012835991 ], [ -64.87318820521466, 18.314668909315344 ], [ -64.873090472176727, 18.314679805794697 ], [ -64.873004809085103, 18.314714003976121 ], [ -64.872919144683863, 18.314736635125541 ], [ -64.872808840094763, 18.314794135008924 ], [ -64.872735245639888, 18.314840067860359 ], [ -64.872661486166237, 18.314886168349972 ], [ -64.872587893020977, 18.314932101201464 ], [ -64.872502062291289, 18.314978034052899 ], [ -64.872416231561544, 18.315035701574402 ], [ -64.872342469468492, 18.315081634425894 ], [ -64.872268709994842, 18.315139301947397 ], [ -64.87219511553991, 18.315196969468957 ], [ -64.872133426012624, 18.315266370350912 ], [ -64.872059665229244, 18.315324206820264 ], [ -64.871997974392286, 18.315393609011892 ], [ -64.871924213608906, 18.315451276533395 ], [ -64.871874927994554, 18.315520846363142 ], [ -64.871813237157596, 18.31559024855477 ], [ -64.871751546320581, 18.315659649436725 ], [ -64.871689855483567, 18.315729052938025 ], [ -64.871616262338364, 18.315775153427637 ], [ -64.871505621163351, 18.315879089076873 ], [ -64.871431860379971, 18.315936756598433 ], [ -64.871370169542956, 18.316006157480388 ], [ -64.871308477396326, 18.316075728619808 ], [ -64.871234717922619, 18.316133396141367 ], [ -64.871173193414108, 18.316202798332938 ], [ -64.871111503886766, 18.316272200524566 ], [ -64.871037743103443, 18.316329868046125 ], [ -64.870963982320063, 18.316387535567628 ], [ -64.870890221536683, 18.316445203089188 ], [ -64.870804390806995, 18.316502870610691 ], [ -64.870730630023616, 18.316560538132251 ], [ -64.870657036878413, 18.316606469674014 ], [ -64.870546228065223, 18.316710574271156 ], [ -64.870484537228208, 18.316779976462726 ], [ -64.870410776444885, 18.316837642674614 ], [ -64.870337015661505, 18.316906878537736 ], [ -64.87026543417403, 18.316953480632094 ], [ -64.870191841028827, 18.317026572172551 ], [ -64.870105675022785, 18.317083066227099 ], [ -64.870006265603422, 18.317164201779121 ], [ -64.869941557279788, 18.317221032419639 ], [ -64.869885230863417, 18.317286074709841 ], [ -64.869820187263542, 18.317363189565754 ], [ -64.869780959937884, 18.317440638388234 ], [ -64.869780121747169, 18.317543065294217 ], [ -64.869822031283149, 18.317637613207467 ], [ -64.869855391273802, 18.317728808357799 ], [ -64.869930660800435, 18.317845987420469 ], [ -64.86997944350037, 18.31791538961204 ], [ -64.870012971129142, 18.317992000243862 ], [ -64.87003895504148, 18.318071963638545 ], [ -64.870054042474464, 18.318134157389977 ], [ -64.87004046378479, 18.318196183503289 ], [ -64.870015653339465, 18.31829223885012 ], [ -64.869947256976729, 18.318424505345718 ], [ -64.869855223635682, 18.318520060397475 ], [ -64.869724968797755, 18.318601363587618 ], [ -64.869600581294947, 18.318653163774115 ], [ -64.869659589921582, 18.318588455450538 ], [ -64.869689597149375, 18.318504971654818 ], [ -64.869699990714309, 18.31842132153065 ], [ -64.869700828905025, 18.318337502458633 ], [ -64.869701499457619, 18.318253683386672 ], [ -64.869692614635994, 18.318169864314655 ], [ -64.869660428112354, 18.318071963638545 ], [ -64.869569568238262, 18.317955621456974 ], [ -64.86951542111774, 18.317887895646777 ], [ -64.869462950378704, 18.317768369650082 ], [ -64.869431434407602, 18.317663094205329 ], [ -64.869416011698377, 18.317488247621156 ], [ -64.869416849889092, 18.317404428549139 ], [ -64.869427243454027, 18.317320775805626 ], [ -64.869457250681819, 18.317237293319579 ], [ -64.869497316198192, 18.317116592546256 ], [ -64.869536878800204, 18.317042496486579 ], [ -64.869596055065017, 18.316977789472674 ], [ -64.869674509716447, 18.316922636523316 ], [ -64.869743241355479, 18.316867314626109 ], [ -64.869821696006852, 18.316802775250324 ], [ -64.869899983020105, 18.316766230134931 ], [ -64.869978270033357, 18.316720297283496 ], [ -64.87006628005895, 18.316693138594474 ], [ -64.870144567072202, 18.316656427150633 ], [ -64.870242467748312, 18.316610829575438 ], [ -64.870320754761565, 18.316564895414331 ], [ -64.870399041774817, 18.316528351608611 ], [ -64.870477328788013, 18.316491637545425 ], [ -64.870546060427102, 18.316436318267563 ], [ -64.870614792066135, 18.316381165318148 ], [ -64.870664245318608, 18.316307069258528 ], [ -64.870703807920563, 18.316232973198851 ], [ -64.870743538160696, 18.31615870950111 ], [ -64.870792823775048, 18.31608478107961 ], [ -64.87083255401518, 18.316010685019933 ], [ -64.870872116617136, 18.315936421322135 ], [ -64.870921569869665, 18.315862492900635 ], [ -64.870970855483961, 18.315788395531342 ], [ -64.871051154154941, 18.31571195253764 ], [ -64.871096919368256, 18.315640539997958 ], [ -64.871157604376378, 18.315576502226975 ], [ -64.871203201951573, 18.315505256015797 ], [ -64.871248967164888, 18.315433842166442 ], [ -64.871302108456518, 18.315366116356245 ], [ -64.871347706031713, 18.315294870145067 ], [ -64.871393471244971, 18.315223456295712 ], [ -64.871454156253151, 18.315159418524729 ], [ -64.871514673623096, 18.315095379444017 ], [ -64.871560438836411, 18.315023966904334 ], [ -64.871628499922906, 18.314967137573547 ], [ -64.871696561009344, 18.314910308242702 ], [ -64.871764622095839, 18.314853478911914 ], [ -64.871840226898769, 18.314804024349769 ], [ -64.871915999339819, 18.314732779448207 ], [ -64.871976515400149, 18.314668740367551 ], [ -64.872037200408272, 18.314604703906184 ], [ -64.872105261494767, 18.314547874575396 ], [ -64.872165946502889, 18.314483836804357 ], [ -64.872211713025877, 18.314412590593179 ], [ -64.872279774112314, 18.314355761262391 ], [ -64.872317995609137, 18.314277138972841 ], [ -64.872356217106017, 18.314198516683291 ], [ -64.872386893576675, 18.314119894393741 ], [ -64.872402820510047, 18.314034063664053 ], [ -64.872433498290377, 18.313955441374503 ], [ -64.872441712559407, 18.313869443006638 ], [ -64.872457470544987, 18.313783444638773 ], [ -64.872480772247002, 18.313697613909028 ], [ -64.872504072639344, 18.313611783179283 ], [ -64.872519830624867, 18.313525784811418 ], [ -64.872528212532075, 18.313439786443553 ], [ -64.87256643533857, 18.313361164154003 ], [ -64.8725746496076, 18.313275165786138 ], [ -64.872597951309615, 18.313189335056393 ], [ -64.872636171496822, 18.3131107127669 ], [ -64.872674560631765, 18.31303225811547 ], [ -64.872690318617288, 18.312946259747605 ], [ -64.872720996397675, 18.312867637458055 ], [ -64.872728875390408, 18.312830421790125 ], [ -64.872744299409362, 18.312787506425252 ], [ -64.872730050167092, 18.31270134041921 ], [ -64.872730719410015, 18.312615342051345 ], [ -64.87272401519391, 18.312529176045359 ], [ -64.872709764642025, 18.312443010039317 ], [ -64.87270306042592, 18.312356844033332 ], [ -64.872651092601302, 18.312284759631382 ], [ -64.87260666849312, 18.312212675229489 ], [ -64.872562244384994, 18.312140590827539 ], [ -64.872517820276812, 18.312068506425646 ], [ -64.872458476373822, 18.312003462825771 ], [ -64.872429138388952, 18.311924337621804 ], [ -64.872369628157514, 18.311859294021929 ], [ -64.87229502918342, 18.311808499664266 ], [ -64.87221271754504, 18.311771954548874 ], [ -64.872122697171392, 18.311764075556141 ], [ -64.871995124543787, 18.311755862596726 ], [ -64.871905101550794, 18.311747983603993 ], [ -64.871814913539026, 18.311747144103606 ], [ -64.871724890546034, 18.311746473551011 ], [ -64.871634870172386, 18.311731386118026 ], [ -64.871590446064204, 18.311659301716134 ], [ -64.871651131072326, 18.311595263945094 ], [ -64.871584074505051, 18.311537428785414 ], [ -64.871659512979534, 18.311495017644688 ], [ -64.871757412345971, 18.311467020764951 ], [ -64.871818097354094, 18.311402982993968 ], [ -64.871758587122656, 18.311337939394093 ], [ -64.871676275484276, 18.311301395588373 ], [ -64.871593966465241, 18.311264849163308 ], [ -64.871526911207638, 18.311207014003628 ], [ -64.871460023588156, 18.311141970403753 ], [ -64.871423143196466, 18.311062677561608 ], [ -64.871438901182046, 18.31097684683192 ], [ -64.871514505984976, 18.310927225941271 ], [ -64.871589943149786, 18.310884813490873 ], [ -64.871620620930116, 18.310806192510995 ], [ -64.871651297400774, 18.310727568911773 ], [ -64.871733775367659, 18.31075690558697 ], [ -64.871816087006039, 18.31078624357184 ], [ -64.871905941051182, 18.31080853944502 ], [ -64.871996130372679, 18.310802001557363 ], [ -64.872071567537489, 18.310752379357098 ], [ -64.872094869239504, 18.310666548627353 ], [ -64.872103251146712, 18.31058055156916 ], [ -64.872119009132234, 18.310494719529743 ], [ -64.872187070218672, 18.310437891508627 ], [ -64.872247755226795, 18.310373852427915 ], [ -64.872263513212374, 18.310287855369722 ], [ -64.872257142962894, 18.31019950875816 ], [ -64.872230488498019, 18.31012088646861 ], [ -64.872176341377497, 18.310050647395997 ], [ -64.872122194256974, 18.309980574651775 ], [ -64.872068047136452, 18.30991033295976 ], [ -64.872014067654106, 18.309840261525267 ], [ -64.871978193091252, 18.309761637926044 ], [ -64.871924045970786, 18.309691397543702 ], [ -64.871915830392027, 18.309602381689274 ], [ -64.871889177236824, 18.309523759399724 ], [ -64.871862355133771, 18.309445138419846 ], [ -64.871844919457089, 18.309357966584969 ], [ -64.871818266301887, 18.309279344295419 ], [ -64.871791610527339, 18.309200554367749 ], [ -64.871764957372079, 18.309121930768526 ], [ -64.871738302907204, 18.309043308479033 ], [ -64.871693375884604, 18.308964518551306 ], [ -64.871657668959926, 18.308885897571486 ], [ -64.871631014495051, 18.308807275281936 ], [ -64.871576867374529, 18.308737033589921 ], [ -64.871531940351929, 18.308658243662251 ], [ -64.871496064479459, 18.308579621372701 ], [ -64.871460358864454, 18.308500831445031 ], [ -64.871440577563476, 18.308442662318726 ], [ -64.871403026619191, 18.308387844645665 ], [ -64.871357764320351, 18.308314419138583 ], [ -64.871297079312171, 18.30825541051189 ], [ -64.871226168377291, 18.308206123587865 ], [ -64.871150059350214, 18.308161699479683 ], [ -64.871073952942538, 18.3081221381874 ], [ -64.870997845225133, 18.308082575585388 ], [ -64.870916539415646, 18.308047874489603 ], [ -64.870845629790381, 18.307998587565578 ], [ -64.870769522073033, 18.307953997128948 ], [ -64.870714033847378, 18.307890294634262 ], [ -64.870678997475295, 18.30781217525913 ], [ -64.870648990247503, 18.307733888245878 ], [ -64.870624347440355, 18.307650907364632 ], [ -64.870604733777498, 18.30756792648333 ], [ -64.870610433474383, 18.307485279568652 ], [ -64.870662066022703, 18.307417387430007 ], [ -64.87074404107517, 18.307379165933185 ], [ -64.870805731912128, 18.307321163135384 ], [ -64.870801373320376, 18.307238349892259 ], [ -64.870776562875051, 18.307155369010957 ], [ -64.870746723285436, 18.307077249635825 ], [ -64.870711686913353, 18.306998962622572 ], [ -64.870671621396923, 18.306925703443994 ], [ -64.870621162315615, 18.306856973114634 ], [ -64.870560477307436, 18.306798132126062 ], [ -64.870510185864248, 18.306729568125206 ], [ -64.870475149492165, 18.306651281111954 ], [ -64.870465761756122, 18.306568467868829 ], [ -64.87046140316437, 18.306485654625646 ], [ -64.870457044572618, 18.306402672434729 ], [ -64.870442460054107, 18.306319860501276 ], [ -64.87042787553554, 18.306236879619973 ], [ -64.870408261872683, 18.306153898738671 ], [ -64.870380433940795, 18.306073600067691 ], [ -64.870338859681112, 18.305946195078263 ], [ -64.870324275162545, 18.30585801741455 ], [ -64.870301979289422, 18.305777215829153 ], [ -64.870279683416243, 18.305696246605578 ], [ -64.870227380315328, 18.305534475796605 ], [ -64.870212795796817, 18.305446465771013 ], [ -64.870213633987532, 18.30535845574542 ], [ -64.870206760823635, 18.305270445719827 ], [ -64.870215142730842, 18.305182435694235 ], [ -64.87022369227617, 18.305094425668642 ], [ -64.870262751963708, 18.305014126997662 ], [ -64.87031706672235, 18.304948580483313 ], [ -64.870409267701575, 18.304949418674028 ], [ -64.870501301042623, 18.304950089226622 ], [ -64.87059316674555, 18.30497288801422 ], [ -64.870692911441211, 18.304988310723445 ], [ -64.870800032215243, 18.305033237746045 ], [ -64.870891730279993, 18.305070621052153 ], [ -64.870975884628308, 18.30510800435826 ], [ -64.871060206614743, 18.305130635507737 ], [ -64.871151903369821, 18.305168018813845 ], [ -64.871236059027808, 18.305205402119952 ], [ -64.871320381014243, 18.30522820090755 ], [ -64.871412414355291, 18.305243455978655 ], [ -64.871511822464981, 18.305288383001198 ], [ -64.871595810484791, 18.305325766307362 ], [ -64.871679963523434, 18.305370358053665 ], [ -64.871764119181364, 18.305407741359772 ], [ -64.871848105891502, 18.30544512466588 ], [ -64.871932260239817, 18.305482507971988 ], [ -64.872016414588074, 18.305512515199723 ], [ -64.872100736574509, 18.305542522427515 ], [ -64.872184723284704, 18.305579905733623 ], [ -64.872269045271139, 18.3056025368831 ], [ -64.872353367257517, 18.30562516803252 ], [ -64.872407179101742, 18.30564444641908 ], [ -64.872437521605832, 18.305655175260313 ], [ -64.872529553637207, 18.305670597969538 ], [ -64.872621420649807, 18.305686020678763 ], [ -64.872713452681182, 18.305701443388045 ], [ -64.872805487331902, 18.305716866097271 ], [ -64.872897519363278, 18.305732288806553 ], [ -64.872989552704325, 18.305740335437463 ], [ -64.873081587355102, 18.305741173628178 ], [ -64.87317378833427, 18.305734635740578 ], [ -64.873273699358435, 18.305735306293116 ], [ -64.873365732699483, 18.305736144483831 ], [ -64.873457933678708, 18.305736815036425 ], [ -64.873549968329428, 18.305737653227141 ], [ -64.873642335637101, 18.305723739261168 ], [ -64.87374224928061, 18.305717201373568 ], [ -64.873834450259778, 18.305703287407596 ], [ -64.873926483600826, 18.305703957960191 ], [ -64.874018684580051, 18.305704796150906 ], [ -64.874110885559219, 18.3057054667035 ], [ -64.874195373874159, 18.305684176659213 ], [ -64.874287574853327, 18.305685014849928 ], [ -64.874372233425731, 18.30566355716752 ], [ -64.874464434404956, 18.305649643201548 ], [ -64.874556466436331, 18.305657857470578 ], [ -64.874640620784589, 18.305695073138565 ], [ -64.874732486487517, 18.305725248004478 ], [ -64.874809767671877, 18.305681829725188 ], [ -64.87483340465019, 18.305601363416088 ], [ -64.874843630577004, 18.30551435921933 ], [ -64.874830051887329, 18.305401538748413 ], [ -64.874801888679144, 18.305321910630028 ], [ -64.874780933911154, 18.305238929748725 ], [ -64.874759980452779, 18.30515594886748 ], [ -64.874753442565179, 18.305073135624355 ], [ -64.874736174526674, 18.304990154743052 ], [ -64.874715219758684, 18.304907341499927 ], [ -64.874687391826797, 18.304828551572257 ], [ -64.874700133635372, 18.304797706153749 ], [ -64.874782276325959, 18.304762334505369 ], [ -64.874870621627849, 18.304745067776537 ], [ -64.874964832955129, 18.304769878221805 ], [ -64.875046306402737, 18.304800556002192 ], [ -64.875121406981577, 18.30484933870207 ], [ -64.875145883460277, 18.304933660688505 ], [ -64.875138841348587, 18.30501781503682 ], [ -64.875106654824947, 18.305095766773775 ], [ -64.875099614022872, 18.305179921122033 ], [ -64.875061224887929, 18.305257705220868 ], [ -64.875029038364232, 18.305335656957823 ], [ -64.874996851840592, 18.305413608694778 ], [ -64.874970867928312, 18.305497595404916 ], [ -64.874963828435909, 18.30558174975323 ], [ -64.874963156573642, 18.305665904101488 ], [ -64.874974892553439, 18.305750226087923 ], [ -64.874992997472987, 18.305796158939415 ], [ -64.874914876788182, 18.305847791487736 ], [ -64.874839439623372, 18.305890203938191 ], [ -64.874771378536934, 18.305947033268978 ], [ -64.874688566603481, 18.305975028839043 ], [ -64.874605584412507, 18.306003024409108 ], [ -64.874515396400739, 18.306016603098783 ], [ -64.874425205769569, 18.306037390228596 ], [ -64.874335016448072, 18.306050968918271 ], [ -64.874244828436304, 18.306050298365676 ], [ -64.874154637805134, 18.306063877055351 ], [ -64.874064448483693, 18.306063206502813 ], [ -64.873880046525301, 18.306073935343989 ], [ -64.873748953496658, 18.306078964488336 ], [ -64.873656249603016, 18.306078126297621 ], [ -64.873563379380926, 18.306077455745026 ], [ -64.873470675487283, 18.306076617554311 ], [ -64.873377802645848, 18.306069073837818 ], [ -64.873285098752206, 18.306068235647103 ], [ -64.873192228530115, 18.306067565094509 ], [ -64.873099524636473, 18.306060021378073 ], [ -64.873006819433158, 18.306059183187358 ], [ -64.872913949211068, 18.306058512634763 ], [ -64.872821245317425, 18.306057674444048 ], [ -64.87272837247599, 18.306050130727556 ], [ -64.872635668582348, 18.306042587011063 ], [ -64.872550174438572, 18.306028170130674 ], [ -64.872457470544987, 18.306020626414238 ], [ -64.872371975091539, 18.306006377171968 ], [ -64.872272061448029, 18.305998665817356 ], [ -64.872186567304254, 18.305984416575086 ], [ -64.872100904212687, 18.305969999694753 ], [ -64.872015576397359, 18.305942004124688 ], [ -64.871930080943969, 18.305914008554623 ], [ -64.871844585490521, 18.305892886148513 ], [ -64.871759090037074, 18.305871763742346 ], [ -64.871673762221747, 18.305836895008383 ], [ -64.871588434406476, 18.305802193912598 ], [ -64.871503106591149, 18.305760619652858 ], [ -64.871410737973804, 18.305725750918896 ], [ -64.871325242520413, 18.305697755348888 ], [ -64.871239913395414, 18.305669759778823 ], [ -64.871154251613518, 18.30565551053661 ], [ -64.871068923798191, 18.305620641802648 ], [ -64.8709834283448, 18.305606392560378 ], [ -64.870890724451158, 18.305598848843886 ], [ -64.870804893721413, 18.305611756981023 ], [ -64.870740185397835, 18.305672609627266 ], [ -64.870732138766925, 18.305761122567276 ], [ -64.8707297918329, 18.305880145649553 ], [ -64.870759631422516, 18.306049460174961 ], [ -64.87077958036167, 18.306139146582041 ], [ -64.870799696938946, 18.306229000627184 ], [ -64.8708196458781, 18.306318687034263 ], [ -64.870818472411088, 18.306457994331936 ], [ -64.870817634220373, 18.306547513100782 ], [ -64.870848144362583, 18.306627308857344 ], [ -64.870868260939858, 18.306717162902544 ], [ -64.870877816314078, 18.306806680361774 ], [ -64.870918720021166, 18.306886645066129 ], [ -64.870949230163376, 18.306966439512962 ], [ -64.871000695073633, 18.307036513566857 ], [ -64.871052159983833, 18.307106586311022 ], [ -64.871114186097088, 18.307166936042904 ], [ -64.871206889990731, 18.307286964954017 ], [ -64.871247792388203, 18.307366928348699 ], [ -64.871247123145281, 18.307456447117602 ], [ -64.871184091203133, 18.307515623382415 ], [ -64.871090046204358, 18.307534900459302 ], [ -64.871037407827146, 18.307604136322425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_125", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.903842008073354, 18.312346115192099 ], [ -64.903812671398157, 18.312372099104437 ], [ -64.903747460160162, 18.312429431349642 ], [ -64.903682248922166, 18.312486931233082 ], [ -64.903624916676904, 18.312552142471077 ], [ -64.903575798700729, 18.312621377024527 ], [ -64.903526513086376, 18.312694467255312 ], [ -64.903457278532926, 18.312744088145962 ], [ -64.903404137241239, 18.312813322699412 ], [ -64.903326856056879, 18.312855232235449 ], [ -64.903257621503371, 18.312904853126042 ], [ -64.903180340319011, 18.312946762662023 ], [ -64.903095180141861, 18.312973249488778 ], [ -64.903005996649256, 18.312988001645465 ], [ -64.902916980794771, 18.312975596422802 ], [ -64.90283634684755, 18.312944080451757 ], [ -64.902755880538393, 18.312896974133253 ], [ -64.902687484175658, 18.312846179775647 ], [ -64.902635516350983, 18.312768563314989 ], [ -64.902616070326303, 18.312687258815117 ], [ -64.902596456663446, 18.312605786677125 ], [ -64.902544488838828, 18.312539737248414 ], [ -64.902492353376033, 18.312473520181527 ], [ -64.90246066976681, 18.31239607135899 ], [ -64.90249738252038, 18.312389533471389 ], [ -64.90258572782227, 18.312408308943532 ], [ -64.902674073124103, 18.312421217080612 ], [ -64.902768621037353, 18.312427922606389 ], [ -64.902857133977363, 18.312428593158927 ], [ -64.902945479279254, 18.312429431349642 ], [ -64.903040194830623, 18.312430101902237 ], [ -64.903128875408811, 18.312412667535284 ], [ -64.903217220710701, 18.312407470752817 ], [ -64.903305733650711, 18.312402106332172 ], [ -64.903394246590778, 18.312390706938402 ], [ -64.903482759530789, 18.312373272571449 ], [ -64.903571272470799, 18.312368075788982 ], [ -64.903659785410866, 18.312356676395154 ], [ -64.903754668600357, 18.312339242028202 ], [ -64.903842008073354, 18.312346115192099 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_123", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.889160764955648, 18.312837965506617 ], [ -64.889131931194868, 18.312870990220972 ], [ -64.88905062538538, 18.312905020764163 ], [ -64.888977367516418, 18.312950785977478 ], [ -64.88890008764173, 18.31298883983618 ], [ -64.88881492746458, 18.313011470985657 ], [ -64.888725911610095, 18.313018344149555 ], [ -64.888677967100932, 18.31294843904351 ], [ -64.888674614338015, 18.31286344650448 ], [ -64.88866891464113, 18.312780633261355 ], [ -64.888664891325675, 18.312765042913952 ], [ -64.88865768288548, 18.312680050374922 ], [ -64.888650305497492, 18.312594890197772 ], [ -64.88865097735976, 18.312509897658799 ], [ -64.88865583886593, 18.312424905119769 ], [ -64.888632201887617, 18.312343432981777 ], [ -64.88860470923197, 18.312262128481962 ], [ -64.88855257245956, 18.312195911415074 ], [ -64.888496582629102, 18.312129694348187 ], [ -64.888448638119939, 18.312055933564807 ], [ -64.888412931195262, 18.311978317104149 ], [ -64.888385270901495, 18.311892990598551 ], [ -64.888365824876814, 18.311811684789006 ], [ -64.888435059430265, 18.311762063898414 ], [ -64.888520219607415, 18.311735577071659 ], [ -64.8886092354619, 18.311732559585039 ], [ -64.888638572137097, 18.311773128015886 ], [ -64.888638572137097, 18.311776983693221 ], [ -64.888679140567945, 18.311852253219854 ], [ -64.888727923267822, 18.311923499431089 ], [ -64.888764299435422, 18.312002456996879 ], [ -64.888796654906855, 18.312081414562726 ], [ -64.888841246653158, 18.312152660773904 ], [ -64.888881815084005, 18.312227762662417 ], [ -64.888918360199398, 18.312306887866384 ], [ -64.888950545413365, 18.312385845432232 ], [ -64.88898692420031, 18.312460947320744 ], [ -64.889023469315703, 18.312536049209257 ], [ -64.889051632523888, 18.312615006775047 ], [ -64.889092200954735, 18.31269010866356 ], [ -64.889124387478375, 18.312776945222197 ], [ -64.889160764955648, 18.312837965506617 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_270", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.969668299962336, 18.335955933497416 ], [ -64.969649356852074, 18.336068249744244 ], [ -64.969497645641411, 18.336253489893352 ], [ -64.969316427498086, 18.336366980916807 ], [ -64.969060780638131, 18.336393635381739 ], [ -64.968550153541855, 18.336389779704405 ], [ -64.967919163567842, 18.336413585630567 ], [ -64.967093044103876, 18.336436047832137 ], [ -64.966371697170246, 18.336473432447974 ], [ -64.96575579462916, 18.336483155460314 ], [ -64.965229746133332, 18.336536463080392 ], [ -64.964779134802257, 18.336532942679412 ], [ -64.964193071850843, 18.336571499452532 ], [ -64.963697365858991, 18.336582060655587 ], [ -64.9633067689835, 18.336607710601299 ], [ -64.963095544922055, 18.336706615796572 ], [ -64.963066711161275, 18.336562949907147 ], [ -64.963083307337513, 18.336390954481089 ], [ -64.963489997474881, 18.336236224474192 ], [ -64.963642548185931, 18.335964984647546 ], [ -64.963765762221783, 18.335607244848234 ], [ -64.963797613469126, 18.335392332747631 ], [ -64.96375486574243, 18.335105168606958 ], [ -64.963996767584206, 18.335232573596386 ], [ -64.964354507383518, 18.335476822372186 ], [ -64.964838311067069, 18.335749738580319 ], [ -64.965148106357162, 18.335928608479946 ], [ -64.96546795993595, 18.336042433470027 ], [ -64.965992164412228, 18.336148716053344 ], [ -64.966458198452528, 18.336235721559774 ], [ -64.967168313630509, 18.336194816542957 ], [ -64.968053609359345, 18.336145867514574 ], [ -64.968543950930496, 18.336112507523922 ], [ -64.968894483599286, 18.336068752658662 ], [ -64.969293628710489, 18.336006726545406 ], [ -64.969668299962336, 18.335955933497416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_946", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.845527412469266, 18.31562243507841 ], [ -64.845553396381547, 18.315541465854892 ], [ -64.845576027531024, 18.315460496631317 ], [ -64.845592622397589, 18.315376342283059 ], [ -64.845599664509336, 18.315292187934745 ], [ -64.845603520186614, 18.315208033586487 ], [ -64.845604358377329, 18.315123879238172 ], [ -64.845608214054664, 18.315039724889914 ], [ -64.845605867120639, 18.314955402903479 ], [ -64.845622294349084, 18.314871416193284 ], [ -64.845635705400582, 18.314787261845026 ], [ -64.845614415356295, 18.314705957345154 ], [ -64.845542835178492, 18.314609062497937 ], [ -64.845508804635244, 18.314537313372341 ], [ -64.845557922611476, 18.314545695279492 ], [ -64.845647944294797, 18.314555921206306 ], [ -64.845742995122407, 18.314556759397021 ], [ -64.845833184443904, 18.314547874575396 ], [ -64.845923206127225, 18.314562962008324 ], [ -64.846013060172425, 18.314587604815529 ], [ -64.846103249493865, 18.314578887632024 ], [ -64.846188074394775, 18.314603362801051 ], [ -64.84626284100699, 18.314647116356639 ], [ -64.846347498269722, 18.314690869912226 ], [ -64.84640700850116, 18.314753398939956 ], [ -64.846461324569475, 18.314825650980026 ], [ -64.84648110456078, 18.314859178608799 ], [ -64.84650071953331, 18.314902429249969 ], [ -64.846500216618892, 18.314959761495174 ], [ -64.846514967465907, 18.314988595255954 ], [ -64.846589735387795, 18.315032348811542 ], [ -64.846674392650471, 18.315071240860959 ], [ -64.846679420485145, 18.315071240860959 ], [ -64.84671881544898, 18.315143325262852 ], [ -64.846758210412816, 18.315220103532852 ], [ -64.846767430510738, 18.315306269538837 ], [ -64.84678168106268, 18.315392435544879 ], [ -64.846775812417945, 18.315478433912745 ], [ -64.846774975536903, 18.31556443228061 ], [ -64.846729377961708, 18.315635846129965 ], [ -64.846639356278388, 18.31562562020315 ], [ -64.846549334595068, 18.31561053146055 ], [ -64.846464508384543, 18.315590582521395 ], [ -64.846374488010895, 18.315580357904309 ], [ -64.846289495471865, 18.315555715097105 ], [ -64.84620986735348, 18.315516823047687 ], [ -64.846140297523732, 18.315463680446385 ], [ -64.846049940564114, 18.315477260445732 ], [ -64.845965114353532, 18.315457479144754 ], [ -64.845905604122095, 18.315394782478904 ], [ -64.845866041520139, 18.315337114957345 ], [ -64.845816588267667, 18.315274418291494 ], [ -64.8457709893828, 18.31532672139241 ], [ -64.845725393117334, 18.315397967603587 ], [ -64.845679627904019, 18.315474242959112 ], [ -64.845633861381032, 18.315545489170347 ], [ -64.845588265115509, 18.315616903019702 ], [ -64.845542499902194, 18.31568814923088 ], [ -64.845527412469266, 18.31562243507841 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_547", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.840773363653227, 18.324048765076896 ], [ -64.8407468755168, 18.324119676011833 ], [ -64.840760789482772, 18.324203997998268 ], [ -64.84078559992804, 18.324284799583666 ], [ -64.840814098412523, 18.324383203174193 ], [ -64.840842764535182, 18.324464003449918 ], [ -64.840893558892787, 18.324531060017193 ], [ -64.84097016952461, 18.324573806434273 ], [ -64.84105063583371, 18.324605994267586 ], [ -64.841120038025338, 18.324655615158179 ], [ -64.84119664865716, 18.324698361575258 ], [ -64.841280803005418, 18.324730549408571 ], [ -64.841372333432048, 18.324748821966239 ], [ -64.841464199134975, 18.324749660156954 ], [ -64.84155221047024, 18.324750329399876 ], [ -64.841629657983106, 18.324712444489023 ], [ -64.841592107038878, 18.324803304363058 ], [ -64.84157299760011, 18.324887291073196 ], [ -64.841550197502841, 18.324967757382353 ], [ -64.84155489137089, 18.325048056053276 ], [ -64.841512143644138, 18.325128187086136 ], [ -64.841490350685433, 18.325208318118939 ], [ -64.841478952601335, 18.325298675078557 ], [ -64.841425642361855, 18.325378469525447 ], [ -64.8413411527373, 18.325407975148494 ], [ -64.841256495474568, 18.325467485379932 ], [ -64.84116161359475, 18.325496823364801 ], [ -64.841077291608315, 18.325516269389482 ], [ -64.84099280067403, 18.325545772393184 ], [ -64.840898086432389, 18.325565052089416 ], [ -64.84080320193317, 18.325574272187339 ], [ -64.840718879946735, 18.325593718212019 ], [ -64.8406345579603, 18.325612996598579 ], [ -64.840540011356779, 18.325612324736312 ], [ -64.840445294495737, 18.325611486545597 ], [ -64.840361307785599, 18.325590699415784 ], [ -64.840228370737407, 18.325501014318377 ], [ -64.840125608555127, 18.325454075638049 ], [ -64.840033073609334, 18.325423899462464 ], [ -64.839919916552446, 18.325390036557394 ], [ -64.839823861205616, 18.325359695362977 ], [ -64.839732832383731, 18.325343434463036 ], [ -64.839770049361391, 18.325268332574524 ], [ -64.839777425439706, 18.325179987272634 ], [ -64.839778263630421, 18.325091474332623 ], [ -64.839732664745611, 18.325015366615219 ], [ -64.839693606367746, 18.324939257588198 ], [ -64.839621354327676, 18.324888129263911 ], [ -64.839542395452156, 18.324849740128968 ], [ -64.839450194472988, 18.324817385967151 ], [ -64.839357659527138, 18.324810177526956 ], [ -64.839271493521153, 18.324828450084681 ], [ -64.83917878962751, 18.324846555004228 ], [ -64.839086253371988, 18.324845884451634 ], [ -64.838993717116523, 18.324845046260918 ], [ -64.838901179551385, 18.324850578319683 ], [ -64.838801771441638, 18.324862480627871 ], [ -64.838709067547995, 18.324886954487226 ], [ -64.83862306918013, 18.324898858105144 ], [ -64.838536903174145, 18.324910760413388 ], [ -64.838450737168102, 18.324947976081319 ], [ -64.83835786563634, 18.324966081000866 ], [ -64.838271699630297, 18.324990556169894 ], [ -64.838185701262432, 18.325002458478139 ], [ -64.838086627119367, 18.325001786615871 ], [ -64.837993923225724, 18.325007318674636 ], [ -64.837966598208254, 18.325015031338921 ], [ -64.83793994243365, 18.325016540082231 ], [ -64.837787056446359, 18.325019222292553 ], [ -64.838017560204037, 18.324886117606184 ], [ -64.838334562624652, 18.324778995522536 ], [ -64.838549308396807, 18.324695345398311 ], [ -64.838786013456115, 18.324645389231421 ], [ -64.839051552276203, 18.324595768340771 ], [ -64.839215165795054, 18.324565761113035 ], [ -64.839344414804089, 18.324531060017193 ], [ -64.839484561602148, 18.324480768574006 ], [ -64.839624873418984, 18.324425615624648 ], [ -64.839753954789899, 18.324400971507771 ], [ -64.839909859573481, 18.324402313922633 ], [ -64.840065595409271, 18.324408684172113 ], [ -64.840141366540649, 18.324352859360488 ], [ -64.840238261387924, 18.324322853442368 ], [ -64.840319399559291, 18.324267197578536 ], [ -64.840389973908202, 18.32419075458489 ], [ -64.840454849869957, 18.324145157009696 ], [ -64.840535820403204, 18.324104756217025 ], [ -64.84059315264841, 18.324067874515663 ], [ -64.84068417885095, 18.324056307483715 ], [ -64.840773363653227, 18.324048765076896 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_319", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.873868479493353, 18.311439695747481 ], [ -64.873863785625304, 18.311356548537731 ], [ -64.873859091757254, 18.311273398708636 ], [ -64.873848865830496, 18.311190251498886 ], [ -64.873844173272118, 18.311107101669791 ], [ -64.873852387541206, 18.31101389486173 ], [ -64.873859763619521, 18.31093074765198 ], [ -64.873887422603616, 18.310847597822885 ], [ -64.873914916568879, 18.310764616941583 ], [ -64.873949282388423, 18.310668895561378 ], [ -64.874003595837394, 18.310598822817155 ], [ -64.874057910596036, 18.31052875007299 ], [ -64.874105519828959, 18.310458844966945 ], [ -64.874159668259153, 18.310388773532395 ], [ -64.874220688543573, 18.310325237366158 ], [ -64.874288245405921, 18.310268072759072 ], [ -64.874355803577942, 18.310211075790107 ], [ -64.874429899637619, 18.310166820629775 ], [ -64.874497457809639, 18.310109654713017 ], [ -64.874565015981659, 18.310052657744052 ], [ -64.874632575463352, 18.309995494446582 ], [ -64.874706671523029, 18.309951236666905 ], [ -64.874787471798754, 18.309913519394172 ], [ -64.874899118802659, 18.309922905820599 ], [ -64.875019985904487, 18.30996531958067 ], [ -64.875253339510607, 18.310033379357492 ], [ -64.875435057949005, 18.31005969854607 ], [ -64.875705290637143, 18.310042934731655 ], [ -64.875538155407583, 18.310239071360172 ], [ -64.87548233190563, 18.310304451546017 ], [ -64.8754357285016, 18.310374356652062 ], [ -64.875384598867697, 18.31044845140201 ], [ -64.875337995463667, 18.310518356508055 ], [ -64.875291392059637, 18.310596978797605 ], [ -64.87524931488548, 18.310675601087155 ], [ -64.875216457809245, 18.310754223376648 ], [ -64.875192820830932, 18.310837539534248 ], [ -64.875159963754697, 18.310916161823798 ], [ -64.875131632908392, 18.310994951751468 ], [ -64.875112523469625, 18.311078267909011 ], [ -64.875097937641442, 18.311161416428433 ], [ -64.875099950608842, 18.311244398619408 ], [ -64.875104644476892, 18.311327545829158 ], [ -64.875114701455857, 18.311410694348581 ], [ -64.875119396633522, 18.311493842868003 ], [ -64.875124090501572, 18.311576991387426 ], [ -64.875123418639305, 18.311660139906849 ], [ -64.875128112507355, 18.311743288426271 ], [ -64.875132806375404, 18.311826436945694 ], [ -64.875153762453067, 18.311909753103237 ], [ -64.875163987070152, 18.311993069260836 ], [ -64.875168680938202, 18.312076217780259 ], [ -64.875189635706192, 18.312159533937802 ], [ -64.875210759422032, 18.312242682457224 ], [ -64.87523171288035, 18.312325998614824 ], [ -64.875263565437365, 18.312414679193012 ], [ -64.875284518895683, 18.312497827712434 ], [ -64.875300110552757, 18.312581143869977 ], [ -64.875321231649252, 18.312664460027577 ], [ -64.87535861495536, 18.312742747040772 ], [ -64.875390467512375, 18.31283125998084 ], [ -64.875433213929455, 18.312904350211625 ], [ -64.875470598545235, 18.312982637224877 ], [ -64.875502616121082, 18.313060756599953 ], [ -64.87553999942719, 18.313139043613205 ], [ -64.875566487563617, 18.313222359770805 ], [ -64.875598337501287, 18.31330047914588 ], [ -64.875630356386807, 18.313378598521012 ], [ -64.875673104113503, 18.313451688751798 ], [ -64.875705122999022, 18.31352997576505 ], [ -64.875742507614802, 18.313608095140125 ], [ -64.875779889611238, 18.313686382153378 ], [ -64.875822638647605, 18.313759472384163 ], [ -64.875865552702805, 18.313832562614948 ], [ -64.875899750884173, 18.313906993950866 ], [ -64.875944511578325, 18.313977737247626 ], [ -64.875993795882948, 18.314048480544386 ], [ -64.87608297937561, 18.314149231068939 ], [ -64.876130420970355, 18.314218465622446 ], [ -64.87618741793932, 18.314283173946023 ], [ -64.876244582546406, 18.314347882269601 ], [ -64.876301579515371, 18.314412422955058 ], [ -64.876372825726548, 18.314495571474481 ], [ -64.876429822695513, 18.314560279798059 ], [ -64.876477265599931, 18.314629514351509 ], [ -64.876524705885004, 18.314698581266839 ], [ -64.876576841347799, 18.314767815820346 ], [ -64.876637693994098, 18.314826992085159 ], [ -64.876684129759951, 18.314897903020039 ], [ -64.876743808939239, 18.314962442395824 ], [ -64.876810361282423, 18.315020614141474 ], [ -64.876870208099831, 18.315085154826932 ], [ -64.876923181753284, 18.31515606445214 ], [ -64.876989734096469, 18.315214236197789 ], [ -64.877049413275756, 18.315278776883247 ], [ -64.877109260093164, 18.315343317568647 ], [ -64.877175812436292, 18.315401488004625 ], [ -64.877222080564081, 18.315472231301385 ], [ -64.877261643166037, 18.315549512485802 ], [ -64.877287794716494, 18.315632828643345 ], [ -64.877280251, 18.315716143491272 ], [ -64.877266169395909, 18.315799293320367 ], [ -64.877231971214542, 18.315875736314013 ], [ -64.877184361981676, 18.315945809058235 ], [ -64.877130047223034, 18.316015880492728 ], [ -64.877069194576734, 18.316079415349293 ], [ -64.877008174292314, 18.316149320455338 ], [ -64.876941789587306, 18.316204977628843 ], [ -64.876867022975091, 18.316246887164823 ], [ -64.876792256362819, 18.31628896433898 ], [ -64.876710113672289, 18.316316792270868 ], [ -64.876627970981701, 18.316358700497233 ], [ -64.876545829600843, 18.316393570540811 ], [ -64.876463685600584, 18.316435480076848 ], [ -64.876396295066741, 18.316491806493218 ], [ -64.876336112973036, 18.316562214513681 ], [ -64.876291019621931, 18.316632956500769 ], [ -64.87623083621861, 18.316696325028886 ], [ -64.87616344568471, 18.316752651445256 ], [ -64.87611080861717, 18.316823227103896 ], [ -64.876065545008601, 18.316893970400656 ], [ -64.876012906631388, 18.316964544749624 ], [ -64.875960100616055, 18.317035120408264 ], [ -64.87591483962683, 18.317105697376519 ], [ -64.875884495813068, 18.317183649113474 ], [ -64.875839233514228, 18.317254223462442 ], [ -64.875808723372018, 18.317332176509069 ], [ -64.875770837151435, 18.317409960607904 ], [ -64.87573295093091, 18.317487743397066 ], [ -64.87573295093091, 18.317495119475382 ], [ -64.875693892553045, 18.317485731739339 ], [ -64.87569808350662, 18.317533174643756 ], [ -64.87573647264162, 18.317598218243631 ], [ -64.875746361982408, 18.317658400337336 ], [ -64.87572658068143, 18.317763675782089 ], [ -64.875722222089678, 18.317759821414427 ], [ -64.875647455477463, 18.317709025747149 ], [ -64.875572856503368, 18.317651024258964 ], [ -64.87549825752933, 18.317607438341554 ], [ -64.875415948510295, 18.317577932718507 ], [ -64.875333636871915, 18.317534346801096 ], [ -64.87525903789782, 18.317490594555181 ], [ -64.875176727569112, 18.317454215768237 ], [ -64.875094418550077, 18.317417670652844 ], [ -64.875019819575982, 18.317373918406929 ], [ -64.8749603067252, 18.317308873497382 ], [ -64.874969526823122, 18.317218853123734 ], [ -64.874947901502537, 18.317133356360614 ], [ -64.874918901413309, 18.317055069347361 ], [ -64.87491219457786, 18.316969741532091 ], [ -64.874927784925262, 18.316884581354941 ], [ -64.874965672455517, 18.316806798565779 ], [ -64.875003557366369, 18.316729014467001 ], [ -64.875041443586895, 18.316651230368166 ], [ -64.875079329807477, 18.316573446269331 ], [ -64.875117216028002, 18.316495494532376 ], [ -64.8751551035582, 18.316417710433541 ], [ -64.875192988469109, 18.316339926334763 ], [ -64.875245626846322, 18.316269349366451 ], [ -64.875313017380165, 18.316213024259753 ], [ -64.875402703787245, 18.316171113414043 ], [ -64.875492222556147, 18.316143454430005 ], [ -64.875574197608557, 18.31610858438637 ], [ -64.87565634160876, 18.31607371696208 ], [ -64.875732448016493, 18.31603297958344 ], [ -64.87575239695559, 18.316012026125065 ], [ -64.875813418549683, 18.31594212101902 ], [ -64.87587426988631, 18.315878586162455 ], [ -64.875928584644953, 18.31580851341829 ], [ -64.875976193877875, 18.315738439364395 ], [ -64.876010392059243, 18.31566199637075 ], [ -64.876024473663335, 18.315578849161 ], [ -64.876032017379828, 18.3154955330034 ], [ -64.87600586582937, 18.315412049207737 ], [ -64.87596630453703, 18.315334934351824 ], [ -64.875920035099625, 18.31526419236468 ], [ -64.87585348275644, 18.315205854290582 ], [ -64.87579380357721, 18.315141481243302 ], [ -64.875733956759746, 18.315076940557844 ], [ -64.875667404416618, 18.315018770121867 ], [ -64.875614430763108, 18.314947859186987 ], [ -64.8755545839457, 18.314883318501529 ], [ -64.875488031602515, 18.314825148065552 ], [ -64.875428352423285, 18.314760607380151 ], [ -64.875382085605168, 18.314689696445214 ], [ -64.875321231649252, 18.314630520180401 ], [ -64.875268928548337, 18.314561285626894 ], [ -64.875221486953592, 18.314492218711564 ], [ -64.875174212996967, 18.314422984158114 ], [ -64.875117048389882, 18.314358275834536 ], [ -64.87504580348832, 18.314275127315113 ], [ -64.874988806519355, 18.314210418991536 ], [ -64.87493180955039, 18.314145878306078 ], [ -64.874874643633632, 18.314081169982501 ], [ -64.874827369677007, 18.31401193542905 ], [ -64.874738018546282, 18.313911184904498 ], [ -64.87468890057005, 18.313840441607738 ], [ -64.874643973547506, 18.313769698310921 ], [ -64.874609775366082, 18.313695266975003 ], [ -64.874567027639387, 18.313622176744218 ], [ -64.874524113584187, 18.313549086513433 ], [ -64.874486728968407, 18.31347079950018 ], [ -64.874449345662299, 18.313392680125105 ], [ -64.874417326776779, 18.313314393111852 ], [ -64.874374580359756, 18.313241302881067 ], [ -64.874342561474236, 18.313163183505935 ], [ -64.874310708917221, 18.31308506413086 ], [ -64.874284223400139, 18.31300158033514 ], [ -64.874246838784359, 18.312923460960008 ], [ -64.874214819898839, 18.312845173946755 ], [ -64.874177605540524, 18.31276705457168 ], [ -64.874134688866036, 18.312693964340895 ], [ -64.874102837618636, 18.312605283762707 ], [ -64.874065455622201, 18.312527164387632 ], [ -64.874044499544539, 18.312443848230032 ], [ -64.874028910506809, 18.312360532072489 ], [ -64.874007786791026, 18.312277215914889 ], [ -64.873975935543626, 18.312188702974879 ], [ -64.873954980775636, 18.312105386817336 ], [ -64.873934027317318, 18.312022070659737 ], [ -64.873912903601479, 18.311938754502194 ], [ -64.873908209733486, 18.311855605982771 ], [ -64.873898151444848, 18.311772457463348 ], [ -64.873877030348353, 18.311689142615421 ], [ -64.873872336480304, 18.311605992786326 ], [ -64.873867642612311, 18.311522845576576 ], [ -64.873868479493353, 18.311439695747481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_535", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.954728894102857, 18.33171971759856 ], [ -64.95436411350147, 18.331521569312315 ], [ -64.954393282538547, 18.331453508225877 ], [ -64.954940453440543, 18.331462393047502 ], [ -64.955455437818898, 18.330827044481737 ], [ -64.955505896900263, 18.330894435015637 ], [ -64.955575802006308, 18.330949923241292 ], [ -64.955639001586633, 18.331011278802009 ], [ -64.955689628306118, 18.331078836974029 ], [ -64.955746457636906, 18.33114639514605 ], [ -64.955790546468791, 18.331219820653132 ], [ -64.955808986664636, 18.33130531610658 ], [ -64.955820888972823, 18.331403049144512 ], [ -64.955813848170806, 18.33148837695984 ], [ -64.955806639730611, 18.33157370477511 ], [ -64.955793228679113, 18.33165886495226 ], [ -64.955766909490478, 18.331737990156228 ], [ -64.955702201166901, 18.331841087614805 ], [ -64.955650568618523, 18.33190780759611 ], [ -64.955586195571243, 18.331980562550598 ], [ -64.955521822523963, 18.332047114893783 ], [ -64.955457281838505, 18.332113667236968 ], [ -64.955412019539608, 18.332186422191455 ], [ -64.955366757240768, 18.332259343474391 ], [ -64.95530875444291, 18.332325897127248 ], [ -64.955276065004853, 18.332404853383423 ], [ -64.955230802705955, 18.332477777285703 ], [ -64.955179170157635, 18.332544497267008 ], [ -64.955121167359778, 18.332611049610193 ], [ -64.955056794312497, 18.332671566980196 ], [ -64.954992421265217, 18.332732084350141 ], [ -64.95494715896632, 18.332804839304629 ], [ -64.954901729029302, 18.332877594259173 ], [ -64.954856466730405, 18.332956550515291 ], [ -64.954811036793387, 18.333029474417629 ], [ -64.95477214474397, 18.333108431983419 ], [ -64.95470156908533, 18.333156544130759 ], [ -64.95462445553909, 18.333198621304916 ], [ -64.954553879880507, 18.333253102392064 ], [ -64.954476766334267, 18.333295179566164 ], [ -64.954393617814844, 18.333318816544477 ], [ -64.954304266684062, 18.333324348603242 ], [ -64.954214747915159, 18.333323510412527 ], [ -64.954125396784434, 18.333322841169604 ], [ -64.953688699419331, 18.333382185072594 ], [ -64.953526760972181, 18.333269029325379 ], [ -64.953572190909256, 18.333219073158489 ], [ -64.954728894102857, 18.33171971759856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_853", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.941379534729492, 18.319328242580013 ], [ -64.94138037422988, 18.319245094060591 ], [ -64.9413879166367, 18.319161945541168 ], [ -64.941374842171115, 18.319075276620708 ], [ -64.941340642680075, 18.318998498350766 ], [ -64.941267887725587, 18.318951392032318 ], [ -64.941191446041614, 18.31891082360147 ], [ -64.941129252290182, 18.318850473869645 ], [ -64.941105615311869, 18.318770342836785 ], [ -64.941148026452652, 18.31869423642911 ], [ -64.941231845524612, 18.318668252516773 ], [ -64.94131901735949, 18.318658863471057 ], [ -64.941406021556247, 18.318672946384822 ], [ -64.941489505351967, 18.318700102454443 ], [ -64.94155521950438, 18.31875391560834 ], [ -64.941579025430542, 18.3188340466412 ], [ -64.941609703210872, 18.318914176364331 ], [ -64.941643732444447, 18.31899430739719 ], [ -64.94168497142789, 18.319071085667133 ], [ -64.941698216150883, 18.319154401824676 ], [ -64.94170441745257, 18.319237717982276 ], [ -64.94171766217562, 18.319321035449491 ], [ -64.941748338646278, 18.319404351607091 ], [ -64.941799972504327, 18.319471405555021 ], [ -64.941865685347068, 18.319528402523986 ], [ -64.941945482413303, 18.319568970954833 ], [ -64.942021925406948, 18.319609539385681 ], [ -64.942105241564548, 18.319636864403151 ], [ -64.942220241331313, 18.319644408119586 ], [ -64.94230087527859, 18.319640049527834 ], [ -64.94239709957327, 18.319640887718606 ], [ -64.94243531976042, 18.319604845517631 ], [ -64.942426602576916, 18.319655639875236 ], [ -64.942430625892371, 18.319741470604981 ], [ -64.942439344385548, 18.319827133696549 ], [ -64.942452755437046, 18.319912964426294 ], [ -64.942494663663354, 18.319985384104484 ], [ -64.9425176313988, 18.320066857552149 ], [ -64.942545290382895, 18.320148160742349 ], [ -64.942582338412706, 18.320225106650412 ], [ -64.942629781317123, 18.320295179394634 ], [ -64.942581667860111, 18.320300543815222 ], [ -64.942493994420488, 18.320317307629637 ], [ -64.942406653637761, 18.320313116676004 ], [ -64.942319146526586, 18.320322839688401 ], [ -64.942242200618523, 18.320364078671787 ], [ -64.94216860747332, 18.320408335141792 ], [ -64.94207925765221, 18.320416549410879 ], [ -64.941990074159605, 18.320402467806787 ], [ -64.941900889357328, 18.320392744794447 ], [ -64.941811539536275, 18.320392074241852 ], [ -64.941722354733997, 18.320377824999582 ], [ -64.941657143495945, 18.320323510240939 ], [ -64.941568630555935, 18.320237511873074 ], [ -64.941474754504952, 18.320223431578654 ], [ -64.941478107267812, 18.320139946473262 ], [ -64.941445753106052, 18.320063000565199 ], [ -64.941422785370662, 18.319981528427206 ], [ -64.941385738650467, 18.319904582519086 ], [ -64.941358078356757, 18.319823278019271 ], [ -64.94132572419494, 18.319746332111151 ], [ -64.941305607617664, 18.319714145587511 ], [ -64.941389091413384, 18.319694196648356 ], [ -64.941467378426637, 18.319658489723679 ], [ -64.9415443243347, 18.319619094759844 ], [ -64.941520687356387, 18.319539131365161 ], [ -64.941454973203975, 18.319481966758076 ], [ -64.941406859746962, 18.319408373612873 ], [ -64.941379534729492, 18.319328242580013 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_93", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.994590555987372, 18.361131155481758 ], [ -64.994548815399185, 18.361149426729753 ], [ -64.994465331603465, 18.361175244313642 ], [ -64.994330213949752, 18.361233413439891 ], [ -64.994238180608647, 18.361271468608265 ], [ -64.994165090377862, 18.361317735426326 ], [ -64.994080937339277, 18.361441452376596 ], [ -64.994035507402259, 18.361512530949653 ], [ -64.993922016378747, 18.36154639385478 ], [ -64.993834341629452, 18.361555950538616 ], [ -64.993834341629452, 18.361557960886671 ], [ -64.993801149276919, 18.361655861562781 ], [ -64.993771477325424, 18.361622167605503 ], [ -64.993696709403537, 18.361578580378421 ], [ -64.993662177255544, 18.36150180341815 ], [ -64.993662343584049, 18.361497109550101 ], [ -64.993682964385414, 18.361420666556455 ], [ -64.993733589795227, 18.361349420345221 ], [ -64.993794274803349, 18.361287729508263 ], [ -64.993844901522834, 18.361216314349235 ], [ -64.993900557386667, 18.361149929644228 ], [ -64.993980857367319, 18.361116904929816 ], [ -64.994071045379087, 18.361117744430203 ], [ -64.994125024861489, 18.361132327639098 ], [ -64.994160062543244, 18.361132662915395 ], [ -64.994244887444097, 18.361153617683385 ], [ -64.994335075455922, 18.361148254572413 ], [ -64.994420404580865, 18.361129814376568 ], [ -64.994505732396192, 18.361101817496888 ], [ -64.994525680025617, 18.36110198644468 ], [ -64.994590555987372, 18.361131155481758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_659", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.849758934500073, 18.329923642523738 ], [ -64.849750886559491, 18.330006791043161 ], [ -64.849725908476046, 18.330087424990438 ], [ -64.849636389707143, 18.330098321469791 ], [ -64.849559277470576, 18.330060770525506 ], [ -64.849479815680638, 18.330027745811151 ], [ -64.849392643845761, 18.330017687522513 ], [ -64.849383088471598, 18.330015340588488 ], [ -64.849330282456208, 18.329959517086536 ], [ -64.849272782572825, 18.329896652782566 ], [ -64.849212935755418, 18.329835967774386 ], [ -64.849172368634243, 18.329761704076645 ], [ -64.849136829347742, 18.329685261082943 ], [ -64.849103635685537, 18.329608650451121 ], [ -64.84907295790515, 18.329529860523451 ], [ -64.8490057363191, 18.329473869383378 ], [ -64.848940860357402, 18.329417878243248 ], [ -64.848880844592145, 18.329357193235126 ], [ -64.848818484512265, 18.329299022799205 ], [ -64.848753273274269, 18.329244708040505 ], [ -64.84870331579765, 18.329189387453027 ], [ -64.848640954408097, 18.32913121701705 ], [ -64.848564846690692, 18.32907170547594 ], [ -64.848486056763022, 18.329030801768795 ], [ -64.848427215774507, 18.32896760218847 ], [ -64.848374577397294, 18.328900211654627 ], [ -64.848326800526252, 18.328830474186702 ], [ -64.848251029394817, 18.328776997618775 ], [ -64.848177602578062, 18.328731064767283 ], [ -64.848098812650392, 18.328689993422017 ], [ -64.848020022722721, 18.328649089714872 ], [ -64.847941232795051, 18.328608186007784 ], [ -64.847867808597641, 18.328562253156292 ], [ -64.847783654249326, 18.328531240099665 ], [ -64.847699667539189, 18.328500394681157 ], [ -64.847610316408463, 18.328454294191545 ], [ -64.847510236436506, 18.328443397712192 ], [ -64.847420716357931, 18.328427472088549 ], [ -64.847347292160521, 18.328381540546729 ], [ -64.847262970174086, 18.328360752107187 ], [ -64.847178814516099, 18.328334769504579 ], [ -64.847089297056925, 18.328313981065037 ], [ -64.847048559678228, 18.32830895192069 ], [ -64.846999778288023, 18.328303084585684 ], [ -64.846949319206658, 18.328160424525151 ], [ -64.846950826640295, 18.328160424525151 ], [ -64.847038501389591, 18.328153216084957 ], [ -64.847127686191868, 18.328157071762234 ], [ -64.847215193303043, 18.328157743624502 ], [ -64.847304375485976, 18.328161765630284 ], [ -64.847386687124356, 18.328189259595547 ], [ -64.847444019369618, 18.328251284399187 ], [ -64.847458771526249, 18.328260839773407 ], [ -64.847525491507611, 18.328283470922827 ], [ -64.847609813494046, 18.328311132526267 ], [ -64.847690278493474, 18.328346336536526 ], [ -64.847782648420491, 18.328385730190689 ], [ -64.847866970406926, 18.328421101839069 ], [ -64.847955314399144, 18.328464184842062 ], [ -64.848035614379796, 18.3285032445296 ], [ -64.848115911741104, 18.32853861617798 ], [ -64.848188163781117, 18.328585387220187 ], [ -64.848264271498522, 18.328636181577792 ], [ -64.848328310579177, 18.32869451965189 ], [ -64.848400393671454, 18.328745146371432 ], [ -64.848452193857952, 18.328818739516635 ], [ -64.848516231628935, 18.328877077590732 ], [ -64.848576078446342, 18.328946815058657 ], [ -64.848631903257967, 18.329012696849247 ], [ -64.848691748765702, 18.329082601955292 ], [ -64.848759809852197, 18.32914094002939 ], [ -64.84881563335415, 18.32920682181998 ], [ -64.848875647809678, 18.329269015571413 ], [ -64.84893951794254, 18.329331209322845 ], [ -64.849007580338707, 18.329385691719608 ], [ -64.849071616800018, 18.329443862155586 ], [ -64.849131463617425, 18.329506055907018 ], [ -64.849219976557492, 18.329541427555398 ], [ -64.8493088247738, 18.329530531076045 ], [ -64.849389626359198, 18.329500523848253 ], [ -64.849442767650828, 18.3294316245711 ], [ -64.849475624727063, 18.329354846301158 ], [ -64.849496245528428, 18.329308745811545 ], [ -64.849504627435635, 18.32927421235388 ], [ -64.849505465626351, 18.329189387453027 ], [ -64.849506134869273, 18.329104730190295 ], [ -64.849490879798168, 18.329019905289442 ], [ -64.849459197498618, 18.328942624105025 ], [ -64.849447964433296, 18.328857799204172 ], [ -64.849428518408615, 18.32877666365215 ], [ -64.849405050378095, 18.328691837441625 ], [ -64.849401863943683, 18.328607012540772 ], [ -64.849394487865368, 18.328522187639862 ], [ -64.84938325741939, 18.32843736273901 ], [ -64.849379903346858, 18.328352705476277 ], [ -64.849372694906663, 18.328267880575424 ], [ -64.849373031492632, 18.328221612447692 ], [ -64.849385603043743, 18.328182888036451 ], [ -64.849382585557123, 18.328099739517029 ], [ -64.849409742936473, 18.328020446674884 ], [ -64.849417958515176, 18.327937465793639 ], [ -64.849453162525435, 18.327876948423636 ], [ -64.84944058835498, 18.327945344786372 ], [ -64.849434888658095, 18.328028494615467 ], [ -64.849431703533355, 18.328111641825217 ], [ -64.849436397401348, 18.328133434783922 ], [ -64.849440755993101, 18.328195963811652 ], [ -64.849451987748751, 18.328281460574772 ], [ -64.849482665529138, 18.328360250502442 ], [ -64.849501441001223, 18.328441386054465 ], [ -64.849529605519081, 18.328520175982135 ], [ -64.84953865666921, 18.328605671435582 ], [ -64.849559611437201, 18.32868680960695 ], [ -64.849587943593235, 18.328765598224948 ], [ -64.849616274439541, 18.328844388152675 ], [ -64.849637395536035, 18.328925357376193 ], [ -64.849660698547723, 18.329006494237888 ], [ -64.84968668246006, 18.32907975210685 ], [ -64.849689028084356, 18.329086625270747 ], [ -64.849705288984353, 18.32916994142829 ], [ -64.849706965365783, 18.329253089947713 ], [ -64.849723058627603, 18.329338753039281 ], [ -64.849724735009033, 18.329424248492728 ], [ -64.849724064456495, 18.329507564650328 ], [ -64.849730434705918, 18.32959071316975 ], [ -64.849739488475393, 18.329674029327293 ], [ -64.849750718921371, 18.329757345484893 ], [ -64.849750048368776, 18.329840494004316 ], [ -64.849758934500073, 18.329923642523738 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_393", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.985775137856649, 18.370840586524707 ], [ -64.985340787425571, 18.370788115785672 ], [ -64.984950525826321, 18.370764143531062 ], [ -64.984508968264663, 18.370718545955924 ], [ -64.98403689925118, 18.370785265937229 ], [ -64.983727102651414, 18.370825163815482 ], [ -64.983447651175027, 18.370780907345477 ], [ -64.983255536552349, 18.37084980662263 ], [ -64.983106507552009, 18.371038567172775 ], [ -64.982965356234729, 18.37118525054882 ], [ -64.982758826041334, 18.371303770716622 ], [ -64.982802747235041, 18.37125431746415 ], [ -64.982899305496346, 18.371149543624142 ], [ -64.982974073418234, 18.371030520541865 ], [ -64.983034255511939, 18.370883335561132 ], [ -64.983116230564349, 18.370757270367164 ], [ -64.983227039377539, 18.37072290454762 ], [ -64.983323431310339, 18.370646293915854 ], [ -64.98343457539977, 18.370562811429807 ], [ -64.983647643480822, 18.370641767685925 ], [ -64.98380237348772, 18.370635900350919 ], [ -64.983898596472727, 18.370587286598834 ], [ -64.98400169524092, 18.370588123479877 ], [ -64.984134129374695, 18.370610251714879 ], [ -64.98432573846361, 18.370597678854097 ], [ -64.98462765476097, 18.370620980556112 ], [ -64.984929235782033, 18.370679487578002 ], [ -64.985212545555044, 18.370688538728132 ], [ -64.985216399922706, 18.370688706366252 ], [ -64.985473893421556, 18.370732962836314 ], [ -64.985635662920856, 18.370783421917622 ], [ -64.985775137856649, 18.370840586524707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_318", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.873548124309821, 18.314595483808262 ], [ -64.873554494559301, 18.314648625099949 ], [ -64.873627417151965, 18.314695899056517 ], [ -64.873712240743146, 18.314754740045089 ], [ -64.873797402229968, 18.314790446969766 ], [ -64.873882393459269, 18.314826153894444 ], [ -64.873967722584268, 18.314850126148997 ], [ -64.874065120345904, 18.314862531371659 ], [ -64.874223704720464, 18.314875439508739 ], [ -64.874321271429949, 18.314888012369579 ], [ -64.874406431607099, 18.314911984624132 ], [ -64.874491590474577, 18.314935956878742 ], [ -64.874612960490822, 18.315018602483747 ], [ -64.874685715445366, 18.315065708802194 ], [ -64.874770707984339, 18.31511315039694 ], [ -64.874843462938827, 18.315171991385512 ], [ -64.874916217893315, 18.315230832374027 ], [ -64.874976567625197, 18.315301240394547 ], [ -64.875049322579684, 18.315360081383062 ], [ -64.875114030903262, 18.315438368396315 ], [ -64.875137332605277, 18.315468375624107 ], [ -64.875167842747487, 18.315550853590935 ], [ -64.875198352889697, 18.315633331557763 ], [ -64.875236742024697, 18.315708264498483 ], [ -64.875243782826715, 18.315797952215178 ], [ -64.875219642933985, 18.315879927267588 ], [ -64.875179912693852, 18.315954358603562 ], [ -64.875116714423257, 18.316013533558703 ], [ -64.875053682481109, 18.316072877461693 ], [ -64.874967516475067, 18.31609450409195 ], [ -64.874888892875845, 18.31613121553579 ], [ -64.874810270586352, 18.316175473315468 ], [ -64.874747238644204, 18.316234649580338 ], [ -64.874684040373552, 18.316293993483271 ], [ -64.874628718476401, 18.316360713464633 ], [ -64.874557807541464, 18.31641251365113 ], [ -64.874471641535479, 18.316434137661986 ], [ -64.874393186884049, 18.316470850415556 ], [ -64.874307020878064, 18.316485099657768 ], [ -64.874220854872021, 18.31649935020971 ], [ -64.874126809873246, 18.316513599451923 ], [ -64.874040643867204, 18.316535223462836 ], [ -64.873962021577711, 18.316571937526021 ], [ -64.873875521605044, 18.316616026357906 ], [ -64.873797065643998, 18.316652739111476 ], [ -64.873718443354448, 18.316696995581481 ], [ -64.873639822374571, 18.316741252051486 ], [ -64.873568911439691, 18.316792884599863 ], [ -64.873505879497543, 18.316852059555004 ], [ -64.873434968562606, 18.316903859741501 ], [ -64.873364225265846, 18.316955493599494 ], [ -64.87328560166668, 18.316992206353063 ], [ -64.873207148324923, 18.317028919106576 ], [ -64.873136237390042, 18.317080719293074 ], [ -64.873057615100493, 18.317117430736971 ], [ -64.87297916044912, 18.317154143490484 ], [ -64.87290053815957, 18.317198401270161 ], [ -64.872821914560348, 18.317235112714059 ], [ -64.872743461218647, 18.317271825467571 ], [ -64.872664837619425, 18.317315915609129 ], [ -64.872586216639547, 18.317360170769462 ], [ -64.872507594349997, 18.317404259601346 ], [ -64.872428972060504, 18.317448517381024 ], [ -64.87231112244524, 18.317507358369539 ], [ -64.872232500155746, 18.317558989608244 ], [ -64.872153876556524, 18.317603078440129 ], [ -64.872075255576647, 18.317647336219807 ], [ -64.871996633287097, 18.317684047663647 ], [ -64.871918178635724, 18.317720760417217 ], [ -64.871839556346174, 18.317757474480402 ], [ -64.871753221392339, 18.317786643517479 ], [ -64.871667055386354, 18.3178158125545 ], [ -64.871580723051864, 18.317844981591577 ], [ -64.871486844381536, 18.317851685807682 ], [ -64.871392968330554, 18.317850847616967 ], [ -64.871299090969899, 18.31784263334788 ], [ -64.871213260240211, 18.31782704431015 ], [ -64.871127261872346, 18.317811452653132 ], [ -64.871033552149811, 18.317803238384045 ], [ -64.870947721420123, 18.317787480398522 ], [ -64.870853844059468, 18.317779267439107 ], [ -64.8707522553442, 18.317778429248392 ], [ -64.870658210345425, 18.317785133464497 ], [ -64.87051940596217, 18.317782452563847 ], [ -64.87042938427885, 18.317781614373132 ], [ -64.87033953023365, 18.317776920505139 ], [ -64.870245149958578, 18.317772057689297 ], [ -64.870155295913435, 18.317767197492742 ], [ -64.870065274230114, 18.317758311361445 ], [ -64.869979778776667, 18.317741213580462 ], [ -64.869885901416012, 18.317695448367147 ], [ -64.869822031283149, 18.317637613207467 ], [ -64.869780121747169, 18.317543065294217 ], [ -64.869780959937884, 18.317440638388234 ], [ -64.869820187263542, 18.317363189565754 ], [ -64.869885230863417, 18.317286074709841 ], [ -64.869941557279788, 18.317221032419639 ], [ -64.870006265603422, 18.317164201779121 ], [ -64.870105675022785, 18.317083066227099 ], [ -64.870191841028827, 18.317026572172551 ], [ -64.87026543417403, 18.316953480632094 ], [ -64.870337015661505, 18.316906878537736 ], [ -64.870410776444885, 18.316837642674614 ], [ -64.870484537228208, 18.316779976462726 ], [ -64.870546228065223, 18.316710574271156 ], [ -64.870657036878413, 18.316606469674014 ], [ -64.870730630023616, 18.316560538132251 ], [ -64.870804390806995, 18.316502870610691 ], [ -64.870890221536683, 18.316445203089188 ], [ -64.870963982320063, 18.316387535567628 ], [ -64.871037743103443, 18.316329868046125 ], [ -64.871111503886766, 18.316272200524566 ], [ -64.871173193414108, 18.316202798332938 ], [ -64.871234717922619, 18.316133396141367 ], [ -64.871308477396326, 18.316075728619808 ], [ -64.871370169542956, 18.316006157480388 ], [ -64.871431860379971, 18.315936756598433 ], [ -64.871505621163351, 18.315879089076873 ], [ -64.871616262338364, 18.315775153427637 ], [ -64.871689855483567, 18.315729052938025 ], [ -64.871751546320581, 18.315659649436725 ], [ -64.871813237157596, 18.31559024855477 ], [ -64.871874927994554, 18.315520846363142 ], [ -64.871924213608906, 18.315451276533395 ], [ -64.871997974392286, 18.315393609011892 ], [ -64.872059665229244, 18.315324206820264 ], [ -64.872133426012624, 18.315266370350912 ], [ -64.87219511553991, 18.315196969468957 ], [ -64.872268709994842, 18.315139301947397 ], [ -64.872342469468492, 18.315081634425894 ], [ -64.872416231561544, 18.315035701574402 ], [ -64.872502062291289, 18.314978034052899 ], [ -64.872587893020977, 18.314932101201464 ], [ -64.872661486166237, 18.314886168349972 ], [ -64.872735245639888, 18.314840067860359 ], [ -64.872808840094763, 18.314794135008924 ], [ -64.872919144683863, 18.314736635125541 ], [ -64.873004809085103, 18.314714003976121 ], [ -64.873090472176727, 18.314679805794697 ], [ -64.87318820521466, 18.314668909315344 ], [ -64.873285938252593, 18.314658012835991 ], [ -64.873371601344218, 18.314635380376899 ], [ -64.873457264435785, 18.314612918175271 ], [ -64.873548124309821, 18.314595483808262 ] ], [ [ -64.874491422836456, 18.315978666134413 ], [ -64.874484383344054, 18.315888978417718 ], [ -64.874469463549246, 18.315806669398683 ], [ -64.874446663451977, 18.315724359069975 ], [ -64.874408275626706, 18.315649257181462 ], [ -64.874385475529436, 18.315566946852755 ], [ -64.874347086394437, 18.315491844964242 ], [ -64.874324287606896, 18.315409534635535 ], [ -64.874285898471896, 18.31533443143735 ], [ -64.874223872358641, 18.315274250653317 ], [ -64.874153968562268, 18.315221444637984 ], [ -64.874076015515641, 18.31518338946961 ], [ -64.873990184785896, 18.315160255405772 ], [ -64.873904521694328, 18.315129746573234 ], [ -64.873810645643346, 18.315121532304147 ], [ -64.873716934611139, 18.315113318035117 ], [ -64.873630602276705, 18.315134943355702 ], [ -64.873544436270663, 18.315156736314407 ], [ -64.87346598161929, 18.31519344906792 ], [ -64.87338735932974, 18.315237537899804 ], [ -64.873308735730518, 18.315274250653317 ], [ -64.873230282388818, 18.315310963406887 ], [ -64.873144116382775, 18.3153252126491 ], [ -64.87305778142894, 18.315354380376505 ], [ -64.872971615422955, 18.31536863092839 ], [ -64.872885618364762, 18.315353040581044 ], [ -64.872792076280405, 18.31532990651715 ], [ -64.872713452681182, 18.315373995349034 ], [ -64.872704735497678, 18.315463514117937 ], [ -64.872665006567217, 18.315537945453855 ], [ -64.87260197462507, 18.315597289356845 ], [ -64.872554365392205, 18.315671553054642 ], [ -64.872499043494997, 18.315738273035947 ], [ -64.872506085606744, 18.31582795944297 ], [ -64.872560400365387, 18.315873220432195 ], [ -64.87260666849312, 18.31594832363038 ], [ -64.87263717863533, 18.316030801597208 ], [ -64.87269920343897, 18.31609098238124 ], [ -64.872761229552225, 18.316151333422738 ], [ -64.87283113465827, 18.316204139438128 ], [ -64.872916965388015, 18.316234817218458 ], [ -64.873002797427375, 18.31625040756586 ], [ -64.87308862815712, 18.316273541629698 ], [ -64.873174626524985, 18.316289131977101 ], [ -64.87326833624752, 18.316289970167816 ], [ -64.873346286674803, 18.316327856388398 ], [ -64.873432117404491, 18.316358534168728 ], [ -64.873518283410533, 18.316344283616843 ], [ -64.873611994442683, 18.316352499195546 ], [ -64.873697825172428, 18.316368089542948 ], [ -64.873791702533083, 18.316376302502306 ], [ -64.873885578584009, 18.316377142002693 ], [ -64.873979457254336, 18.316370436476973 ], [ -64.874065623260378, 18.316348643518211 ], [ -64.874151789266364, 18.316334394275998 ], [ -64.874230411555914, 18.316297681522485 ], [ -64.874308864897614, 18.316260967459243 ], [ -64.874379775832551, 18.316209336220595 ], [ -64.874419507382356, 18.316134903574948 ], [ -64.874467116615222, 18.316060641186823 ], [ -64.874491422836456, 18.315978666134413 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_243", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.858357930477212, 18.319061195016616 ], [ -64.858270088089796, 18.319079802850638 ], [ -64.858188615951804, 18.319117689071163 ], [ -64.858114016977709, 18.319162280817466 ], [ -64.858127595667384, 18.319080977627323 ], [ -64.858143353652906, 18.319037056433558 ], [ -64.858129774963231, 18.318923899376671 ], [ -64.858203535746611, 18.318969664589986 ], [ -64.858291042857786, 18.319002521666221 ], [ -64.858357930477212, 18.319061195016616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1057", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.877131555966287, 18.324045747590333 ], [ -64.877120659486934, 18.32399461795643 ], [ -64.877124515164269, 18.323971316254415 ], [ -64.877158378069339, 18.323919682396365 ], [ -64.877216716143437, 18.324018590210983 ], [ -64.877304055616491, 18.324078939942865 ], [ -64.877397094786375, 18.324144654095278 ], [ -64.877478734562544, 18.324221263417428 ], [ -64.877529528920149, 18.324260827329056 ], [ -64.87762273572821, 18.324309107114573 ], [ -64.877763887045489, 18.324378006391726 ], [ -64.877922640367842, 18.324430980045236 ], [ -64.877992713112008, 18.324450089484003 ], [ -64.878102516096362, 18.324453946470953 ], [ -64.878199075667283, 18.324446570392638 ], [ -64.878366713811317, 18.324407343066923 ], [ -64.878494454077043, 18.324416395526725 ], [ -64.878689920152908, 18.324434331498423 ], [ -64.878800896604275, 18.324461656515894 ], [ -64.878908352654548, 18.324502226256413 ], [ -64.879094095718131, 18.324586883519146 ], [ -64.879184451368076, 18.324635330942783 ], [ -64.879315210430036, 18.324696183589026 ], [ -64.879399364778351, 18.324738596039481 ], [ -64.879480166363749, 18.324793078436301 ], [ -64.879539342628561, 18.324829454603844 ], [ -64.879567841113044, 18.324847896109361 ], [ -64.879598015978956, 18.324898521519174 ], [ -64.879628861397464, 18.324952668639696 ], [ -64.879690887510776, 18.325015869529636 ], [ -64.879771353819876, 18.325106057541461 ], [ -64.879861207865076, 18.325205468270497 ], [ -64.879988612854504, 18.325305045328037 ], [ -64.880100427496529, 18.325380650131024 ], [ -64.880351214159987, 18.325540409282212 ], [ -64.880358254962005, 18.325544935512141 ], [ -64.880289020408554, 18.32563042965586 ], [ -64.880282482520954, 18.325624897597152 ], [ -64.880124567389259, 18.325552982143051 ], [ -64.879920550458337, 18.325436473632976 ], [ -64.879776718240464, 18.325312086130111 ], [ -64.879639757876816, 18.325197755606212 ], [ -64.879550239107914, 18.325115949501594 ], [ -64.879458876319461, 18.325047719467364 ], [ -64.879297273148666, 18.324923165635994 ], [ -64.879112368275798, 18.324852422339234 ], [ -64.878930480889551, 18.324822247473321 ], [ -64.878793855802201, 18.324826103150656 ], [ -64.878655219057123, 18.324839177616184 ], [ -64.878466626145098, 18.324813530289873 ], [ -64.878274009917675, 18.324788049291953 ], [ -64.878072844144867, 18.324766423971369 ], [ -64.877821386928872, 18.324752342367276 ], [ -64.877649390193142, 18.324746976637016 ], [ -64.877473537780077, 18.324729374631886 ], [ -64.877368931578189, 18.324688472234413 ], [ -64.877285783058767, 18.324615717279926 ], [ -64.877215207400184, 18.324527035392066 ], [ -64.877153516563169, 18.324394434929843 ], [ -64.877129879584857, 18.324229981910605 ], [ -64.877131555966287, 18.324045747590333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_564", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.952687732061463, 18.315116838436154 ], [ -64.952603912989503, 18.315191771376817 ], [ -64.952550940645665, 18.315261510154414 ], [ -64.952487404479427, 18.315321189333645 ], [ -64.952434430825917, 18.315390925491897 ], [ -64.952360502404417, 18.315440380054042 ], [ -64.952296967547795, 18.315500059233329 ], [ -64.95223343269123, 18.31555973841256 ], [ -64.952201413805767, 18.31563970049757 ], [ -64.952158666079015, 18.315719497563805 ], [ -64.95213704075843, 18.315799628596665 ], [ -64.95212580900278, 18.315889817918105 ], [ -64.952124970812065, 18.315980007239602 ], [ -64.952124301569199, 18.316070196561043 ], [ -64.952123462068755, 18.316160384572868 ], [ -64.95214374759388, 18.31624068455352 ], [ -64.952174591702715, 18.316321149552948 ], [ -64.952205438430894, 18.316401617171721 ], [ -64.952257238617392, 18.316472191520688 ], [ -64.952319767645065, 18.316532876528811 ], [ -64.952392688928057, 18.316583504557968 ], [ -64.952476508000018, 18.316614182338355 ], [ -64.952560327072035, 18.316634969468168 ], [ -64.952644146144053, 18.316655587650246 ], [ -64.952727629939773, 18.316696325028886 ], [ -64.952803570019, 18.316696995581481 ], [ -64.952767360179905, 18.316731192453176 ], [ -64.952705334066593, 18.316789364198826 ], [ -64.952643307953338, 18.316847702272923 ], [ -64.95256602676892, 18.316891120552214 ], [ -64.952504000655665, 18.316949458626311 ], [ -64.9524114644002, 18.316978123439299 ], [ -64.95234943959656, 18.317036461513396 ], [ -64.952272157102527, 18.317079881102359 ], [ -64.95219487591811, 18.317123465710154 ], [ -64.952132849804855, 18.317181637455747 ], [ -64.952055568620437, 18.317225223373214 ], [ -64.951999746428157, 18.317131847617361 ], [ -64.951990023415817, 18.317041490657743 ], [ -64.951990861606532, 18.316951302645919 ], [ -64.951981138594192, 18.316861113324421 ], [ -64.951960685430947, 18.316780645705649 ], [ -64.951940402525224, 18.316700348344341 ], [ -64.9519201170001, 18.316620048363689 ], [ -64.951889271581592, 18.316539583364261 ], [ -64.951868987366197, 18.31645911705516 ], [ -64.951848704460417, 18.31637881838418 ], [ -64.951838981448077, 18.316288461424563 ], [ -64.951850211894055, 18.316198438431513 ], [ -64.951861443649705, 18.316108250419745 ], [ -64.951872675405355, 18.316018061098248 ], [ -64.95187351359607, 18.315927870467135 ], [ -64.951874351786785, 18.31583768245531 ], [ -64.951895978417042, 18.315747659462318 ], [ -64.95192816363101, 18.315667697377307 ], [ -64.95193939538666, 18.31557750805581 ], [ -64.951940233577375, 18.315487317424697 ], [ -64.951951466642697, 18.315397129412872 ], [ -64.95197309065361, 18.31531716601819 ], [ -64.951994883612315, 18.315237202623507 ], [ -64.952027071445627, 18.315157239228824 ], [ -64.952069651534202, 18.315077275834142 ], [ -64.952112397951282, 18.314997480077579 ], [ -64.952144416836802, 18.314917515373224 ], [ -64.952176603360442, 18.314837553288214 ], [ -64.952208789884082, 18.314757589893532 ], [ -64.952240976407722, 18.314677626498849 ], [ -64.952273162931363, 18.314597663104166 ], [ -64.952315743019938, 18.314517867347604 ], [ -64.952371232555265, 18.314450812090001 ], [ -64.952416662492283, 18.314539325030069 ], [ -64.952462258757805, 18.314613085813392 ], [ -64.952507688694823, 18.314686846596771 ], [ -64.952522274523005, 18.314775191898661 ], [ -64.952552448079302, 18.314863537200551 ], [ -64.95259787801632, 18.314937297983874 ], [ -64.952627886553728, 18.315025810923942 ], [ -64.95267348281925, 18.315099570397649 ], [ -64.952687732061463, 18.315116838436154 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_944", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.953005071068048, 18.315910268462005 ], [ -64.953004232877333, 18.315998278487598 ], [ -64.953003563634468, 18.31608645746104 ], [ -64.952987301424798, 18.316174467486633 ], [ -64.952971208162978, 18.316262477512225 ], [ -64.952955114901158, 18.316350487537818 ], [ -64.952939021639338, 18.316438665201588 ], [ -64.952938183448623, 18.31652667522718 ], [ -64.952891412406473, 18.316614517614596 ], [ -64.952829387602833, 18.316672854379078 ], [ -64.952803570019, 18.316696995581481 ], [ -64.952727629939773, 18.316696325028886 ], [ -64.952644146144053, 18.316655587650246 ], [ -64.952560327072035, 18.316634969468168 ], [ -64.952476508000018, 18.316614182338355 ], [ -64.952392688928057, 18.316583504557968 ], [ -64.952319767645065, 18.316532876528811 ], [ -64.952257238617392, 18.316472191520688 ], [ -64.952205438430894, 18.316401617171721 ], [ -64.952174591702715, 18.316321149552948 ], [ -64.95214374759388, 18.31624068455352 ], [ -64.952123462068755, 18.316160384572868 ], [ -64.952124301569199, 18.316070196561043 ], [ -64.952124970812065, 18.315980007239602 ], [ -64.95212580900278, 18.315889817918105 ], [ -64.95213704075843, 18.315799628596665 ], [ -64.952158666079015, 18.315719497563805 ], [ -64.952201413805767, 18.31563970049757 ], [ -64.95223343269123, 18.31555973841256 ], [ -64.952296967547795, 18.315500059233329 ], [ -64.952360502404417, 18.315440380054042 ], [ -64.952434430825917, 18.315390925491897 ], [ -64.952487404479427, 18.315321189333645 ], [ -64.952550940645665, 18.315261510154414 ], [ -64.952603912989503, 18.315191771376817 ], [ -64.952687732061463, 18.315116838436154 ], [ -64.952734335465493, 18.315173500128822 ], [ -64.952779933040688, 18.315247260912145 ], [ -64.952825362977705, 18.315321189333645 ], [ -64.9528709605529, 18.315394950117025 ], [ -64.95288554507141, 18.315483126471065 ], [ -64.952931142646548, 18.315557056202294 ], [ -64.952945727165115, 18.315645233866007 ], [ -64.952960311683626, 18.315733579167897 ], [ -64.952990318911418, 18.315821924469788 ], [ -64.953005071068048, 18.315910268462005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1179", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.941740459653545, 18.337942611832318 ], [ -64.941758901159062, 18.338025089799146 ], [ -64.941815896818298, 18.338098850582526 ], [ -64.941872893787263, 18.338163391267926 ], [ -64.941929890756228, 18.338227931953384 ], [ -64.942005998473633, 18.338283420179039 ], [ -64.942072718454938, 18.338348128502616 ], [ -64.942148993810463, 18.338394396630349 ], [ -64.942234993488, 18.338422559838591 ], [ -64.942311436481646, 18.338468995604444 ], [ -64.942387710527498, 18.338515431370354 ], [ -64.942473708895363, 18.338543594578539 ], [ -64.942550151889066, 18.338589862706272 ], [ -64.942626428554263, 18.338636298472181 ], [ -64.942683425523171, 18.338700839157582 ], [ -64.942740422492136, 18.338765379843039 ], [ -64.942826251912209, 18.338811815608949 ], [ -64.942912417918251, 18.338839978817134 ], [ -64.943008306936576, 18.338840817007849 ], [ -64.943123306703399, 18.338841655198564 ], [ -64.943209472709384, 18.338860598308827 ], [ -64.943276192690689, 18.338916086534482 ], [ -64.943237133003151, 18.338998229225069 ], [ -64.943178962567174, 18.339061931719755 ], [ -64.943101850330606, 18.339107026380532 ], [ -64.943015181410146, 18.339161341139175 ], [ -64.942928512489743, 18.339197215701972 ], [ -64.942842009897731, 18.339214985345279 ], [ -64.942755508615448, 18.339232587350352 ], [ -64.942669176280958, 18.339250189355482 ], [ -64.942544284554003, 18.339267623722492 ], [ -64.942448395535621, 18.339276005629642 ], [ -64.94236189556301, 18.33928438753685 ], [ -64.942275729556968, 18.33927466452451 ], [ -64.942189731189103, 18.339246501316325 ], [ -64.942123011207798, 18.339191013090669 ], [ -64.942075737251173, 18.339117419945467 ], [ -64.942009017269868, 18.339061931719755 ], [ -64.94193274060467, 18.339015495953902 ], [ -64.941836851586345, 18.339014825401307 ], [ -64.941750351613678, 18.339032427406437 ], [ -64.941663850331395, 18.339050029411567 ], [ -64.941607691553145, 18.339113731906252 ], [ -64.941530576697232, 18.33915899420515 ], [ -64.941463018525212, 18.339213308963792 ], [ -64.941395460353192, 18.339267791360612 ], [ -64.941337291226887, 18.339331493855354 ], [ -64.941288842493577, 18.339404416447962 ], [ -64.941239893465195, 18.339504664058097 ], [ -64.94123905527448, 18.33960541458265 ], [ -64.941209549651489, 18.339696777371103 ], [ -64.941122545454732, 18.339778584785392 ], [ -64.941064542656932, 18.339842119641958 ], [ -64.941006373530627, 18.3399058221367 ], [ -64.940929258674714, 18.33995108443554 ], [ -64.940871257186586, 18.340014619292106 ], [ -64.940813085440936, 18.340078321786848 ], [ -64.940745528578532, 18.340132804183668 ], [ -64.940658858348456, 18.340177898844388 ], [ -64.940572358375789, 18.34020472094744 ], [ -64.940485857093506, 18.34022232295257 ], [ -64.940399354501551, 18.340249145055566 ], [ -64.940312685581091, 18.34028501961842 ], [ -64.940226017970303, 18.340330114279141 ], [ -64.940158458488611, 18.340384595366288 ], [ -64.940100289362306, 18.340448299170646 ], [ -64.940032731190286, 18.340502613929289 ], [ -64.939965173018265, 18.340557096326108 ], [ -64.939888059472025, 18.340602358625006 ], [ -64.939801390551565, 18.340629179418386 ], [ -64.939715056907403, 18.340637562635209 ], [ -64.93962872326324, 18.340646112180593 ], [ -64.939542221980901, 18.340663714185723 ], [ -64.939455888336795, 18.340672262421378 ], [ -64.939369387054455, 18.340689864426508 ], [ -64.939273330397953, 18.340716520201056 ], [ -64.939186661477493, 18.340752562402031 ], [ -64.939109547931253, 18.340797657062751 ], [ -64.939047689456117, 18.340852977650286 ], [ -64.939039810463385, 18.340852810012109 ], [ -64.938951968075912, 18.340867394530676 ], [ -64.938856246695707, 18.340866723978081 ], [ -64.938768571946355, 18.340858342070874 ], [ -64.93868106483518, 18.340827161376126 ], [ -64.938601604354915, 18.340788436964829 ], [ -64.938530190505617, 18.340734625120604 ], [ -64.938458944294382, 18.340680813276379 ], [ -64.938371269545087, 18.340664887652736 ], [ -64.938291976702999, 18.340618451886826 ], [ -64.938204301953647, 18.340602526263126 ], [ -64.938108580573441, 18.340601854400916 ], [ -64.938020905824146, 18.340608728874486 ], [ -64.937933063436674, 18.340608058321891 ], [ -64.937845221049201, 18.340630186556893 ], [ -64.937757378661786, 18.340644771075404 ], [ -64.937669536274313, 18.340659355593971 ], [ -64.937581526248721, 18.340673940112481 ], [ -64.937493516223128, 18.340703612063976 ], [ -64.937413552828389, 18.340741163008204 ], [ -64.937333421795586, 18.340778546314311 ], [ -64.937245411769993, 18.340808385903983 ], [ -64.937157569382521, 18.340822970422494 ], [ -64.937069559356928, 18.340845097347824 ], [ -64.936981716969456, 18.340874938247111 ], [ -64.936893539305743, 18.340912321553276 ], [ -64.93680569691827, 18.340934448478606 ], [ -64.936717686892678, 18.340964289377894 ], [ -64.936629844505205, 18.340963618825299 ], [ -64.936542505032207, 18.340932438130551 ], [ -64.936471091182852, 18.340878458648149 ], [ -64.936407891602585, 18.340809390423146 ], [ -64.93633664539135, 18.340755579888594 ], [ -64.936248803003878, 18.340762453052491 ], [ -64.936160792978285, 18.340784748925671 ], [ -64.936072950590869, 18.340806877160674 ], [ -64.935985108203397, 18.340813750324571 ], [ -64.935897098177804, 18.340843589914186 ], [ -64.935809255790332, 18.340858174432753 ], [ -64.935721245764739, 18.340880301358084 ], [ -64.935641282370057, 18.340917685973864 ], [ -64.935561152646869, 18.340955236918091 ], [ -64.935488900606799, 18.341008042933481 ], [ -64.935442295893097, 18.341038050161274 ], [ -64.935410277007634, 18.341052969956081 ], [ -64.935330313612951, 18.341090520900309 ], [ -64.935250182580091, 18.341127904206417 ], [ -64.935170051547288, 18.341165455150701 ], [ -64.935089920514429, 18.341202838456809 ], [ -64.935002079436629, 18.341217422975319 ], [ -64.934914069411036, 18.341254806281427 ], [ -64.934833938378233, 18.341292357225711 ], [ -64.934738215688299, 18.341306774106101 ], [ -64.934650540939003, 18.341283303456237 ], [ -64.934563201466005, 18.341252124071161 ], [ -64.93447569435483, 18.341220943376356 ], [ -64.934396233874565, 18.341182218965116 ], [ -64.934300847770601, 18.341135783199206 ], [ -64.934213174330978, 18.341127401291999 ], [ -64.93412566591013, 18.341111643306476 ], [ -64.933998094592255, 18.341110637477584 ], [ -64.93391025089511, 18.341117510641482 ], [ -64.933822240869517, 18.341139638876541 ], [ -64.933742277474835, 18.341177188511097 ], [ -64.933661978803855, 18.341222115533697 ], [ -64.933597773394695, 18.341282634213371 ], [ -64.933565085266252, 18.341366118009034 ], [ -64.933492833226239, 18.341418924024424 ], [ -64.933404989529095, 18.341441052259427 ], [ -64.933316979503502, 18.341455635468265 ], [ -64.933303903728245, 18.341461839389297 ], [ -64.933237017418492, 18.341493020084044 ], [ -64.933149007392899, 18.341522858364044 ], [ -64.933068876360039, 18.341560410617944 ], [ -64.932988745327179, 18.341597793924052 ], [ -64.932924538608404, 18.341658311294054 ], [ -64.932844407575544, 18.341695694600162 ], [ -64.932764276542741, 18.341740789260882 ], [ -64.932684145509882, 18.341785882611987 ], [ -64.932596135484289, 18.341808012156662 ], [ -64.932507959130191, 18.341852939179262 ], [ -64.932420115433104, 18.341875235052385 ], [ -64.932324226414721, 18.341889650623102 ], [ -64.932236552975098, 18.34188898138018 ], [ -64.932148878225746, 18.341880599472972 ], [ -64.932061203476451, 18.341872385203942 ], [ -64.931973361088978, 18.341871714651347 ], [ -64.931885686339683, 18.341863331434467 ], [ -64.931798011590388, 18.34185511847511 ], [ -64.931710335531363, 18.341846736567902 ], [ -64.931614783099008, 18.341838353351022 ], [ -64.931519060409073, 18.341829971443815 ], [ -64.93143155460757, 18.341806503413352 ], [ -64.931344047496395, 18.34178303407316 ], [ -64.931256371437428, 18.341774652166009 ], [ -64.931176912266835, 18.34173592644504 ], [ -64.931107174798967, 18.341682114600815 ], [ -64.93101966637812, 18.341650935215739 ], [ -64.930940374845648, 18.34161220949477 ], [ -64.930910702894209, 18.341612043166322 ], [ -64.930852532458232, 18.341611540251847 ], [ -64.93075681107797, 18.341625957132237 ], [ -64.930669136328675, 18.341610031508594 ], [ -64.930581461579379, 18.341594104575222 ], [ -64.930478364120802, 18.341524871331444 ], [ -64.930399071278714, 18.341486146920147 ], [ -64.930319610798449, 18.341439711154294 ], [ -64.930240317956304, 18.341393443026504 ], [ -64.930160857476096, 18.341354718615264 ], [ -64.930097657895772, 18.341285650390262 ], [ -64.930050383939204, 18.341209207396616 ], [ -64.930027249875309, 18.341125221996151 ], [ -64.929988022549594, 18.341048779002449 ], [ -64.929996739733099, 18.340964959930488 ], [ -64.930005289278427, 18.340881308496591 ], [ -64.930014174100052, 18.340789944398466 ], [ -64.930022891283556, 18.340706126636121 ], [ -64.930023561836151, 18.340622475202281 ], [ -64.930040158012389, 18.340538823768441 ], [ -64.930024902941284, 18.340454837058303 ], [ -64.930001768877389, 18.340370850348108 ], [ -64.929954494920821, 18.340294407354463 ], [ -64.929939407487836, 18.34019516557322 ], [ -64.929924320054909, 18.340111346501203 ], [ -64.929836477667436, 18.340110508310488 ], [ -64.929756346634576, 18.340163314325878 ], [ -64.929668671885281, 18.340139677347565 ], [ -64.929581164774106, 18.340123751723866 ], [ -64.929596419845211, 18.340207738434003 ], [ -64.929675712687356, 18.340254006561736 ], [ -64.929627265263719, 18.340329779002843 ], [ -64.929547134230916, 18.340374872353891 ], [ -64.929498519169101, 18.340450646104671 ], [ -64.929442192752731, 18.340518874829286 ], [ -64.929377819705451, 18.340579224561111 ], [ -64.929337251274603, 18.340655164640339 ], [ -64.929336580722008, 18.340738982402684 ], [ -64.92933591016947, 18.340822635146196 ], [ -64.929327192985966, 18.340906454218214 ], [ -64.929278577924208, 18.340982225349649 ], [ -64.929253935117003, 18.341065878093161 ], [ -64.929221413317123, 18.341149361888881 ], [ -64.929172798255308, 18.341225134329932 ], [ -64.929068694967896, 18.341285316423637 ], [ -64.929004321920615, 18.341345666155519 ], [ -64.928892172002293, 18.341390425539942 ], [ -64.928835845585922, 18.341458654264557 ], [ -64.928795277155075, 18.341534425395935 ], [ -64.928730904107738, 18.341594944075609 ], [ -64.928650940713055, 18.341632327381717 ], [ -64.928570642042075, 18.341677422042494 ], [ -64.92846687403096, 18.341699550277497 ], [ -64.928379031643487, 18.341698712086782 ], [ -64.928283310263282, 18.341698041534187 ], [ -64.92819546787581, 18.341712626052697 ], [ -64.928107793126514, 18.341711955500159 ], [ -64.928019950739042, 18.341726372380492 ], [ -64.927939819706239, 18.341763923324777 ], [ -64.927852144956887, 18.34176325146251 ], [ -64.927764637845712, 18.341739614484197 ], [ -64.927685177365504, 18.341693346356465 ], [ -64.927605716885239, 18.341654623254897 ], [ -64.927534470674004, 18.341600811410672 ], [ -64.927471103455616, 18.341539288211834 ], [ -64.927415950506202, 18.341462677580012 ], [ -64.927392816442364, 18.341378689560202 ], [ -64.927377561371259, 18.341294870488184 ], [ -64.927338334045544, 18.341210717449599 ], [ -64.927275134465276, 18.341149361888881 ], [ -64.927211768556504, 18.341087837380371 ], [ -64.927196512175726, 18.341004019618026 ], [ -64.927237080606574, 18.340928079538799 ], [ -64.927269770044632, 18.340844594433406 ], [ -64.927349901077491, 18.340791788418016 ], [ -64.927437911103084, 18.340777372847356 ], [ -64.927525585852379, 18.340778043399894 ], [ -64.927605716885239, 18.340732947429501 ], [ -64.927622313061477, 18.340649297305333 ], [ -64.927583253373939, 18.340572854311631 ], [ -64.927495578624644, 18.340549217333376 ], [ -64.927415615229904, 18.340586768277603 ], [ -64.927335484197101, 18.340624151583711 ], [ -64.927255353164242, 18.340669246244431 ], [ -64.927167678414946, 18.340653320620788 ], [ -64.927104478834679, 18.340591965060071 ], [ -64.927057204878054, 18.340515354428248 ], [ -64.926985958666876, 18.340461542584023 ], [ -64.926930638079341, 18.340392474359021 ], [ -64.926867438499073, 18.340331120107976 ], [ -64.926771884756988, 18.34030748312972 ], [ -64.926683874731395, 18.340344866435828 ], [ -64.926595864705746, 18.340374538387323 ], [ -64.926579100891388, 18.340458189821163 ], [ -64.926586310641255, 18.340542176531301 ], [ -64.926593685409898, 18.340625995603318 ], [ -64.926632912735613, 18.340702438596963 ], [ -64.926632074544898, 18.340793801385416 ], [ -64.926599386416456, 18.340877452819313 ], [ -64.926535179697623, 18.340937802551139 ], [ -64.926511877995608, 18.340853815841001 ], [ -64.926496622924503, 18.340769995459311 ], [ -64.926497462424891, 18.340686176387351 ], [ -64.92643409389683, 18.340617110781693 ], [ -64.926398220643648, 18.340540667787991 ], [ -64.92635865673202, 18.340494567298379 ], [ -64.926335522668126, 18.340410580588241 ], [ -64.926336194530393, 18.340326929154401 ], [ -64.926336863773315, 18.340243110082383 ], [ -64.92633770196403, 18.340159291010423 ], [ -64.926314401571688, 18.340075304300285 ], [ -64.926251200681691, 18.340013948739568 ], [ -64.926211973356033, 18.339937338107745 ], [ -64.926164699399408, 18.3398608951141 ], [ -64.926134356895318, 18.339795851514225 ], [ -64.926218512553305, 18.339818817939943 ], [ -64.926299815743448, 18.339852010292475 ], [ -64.926374248389095, 18.33989811078203 ], [ -64.926441806561115, 18.339950581521123 ], [ -64.926529816586708, 18.339977235985998 ], [ -64.926604246612953, 18.34002316883749 ], [ -64.926685551112826, 18.340056361189966 ], [ -64.926766855612641, 18.340089385904378 ], [ -64.926848327750633, 18.340122578256853 ], [ -64.926936337776226, 18.340155770609385 ], [ -64.927024347801819, 18.340195333211341 ], [ -64.927085032809941, 18.340254341838033 ], [ -64.927145885456241, 18.340313182826605 ], [ -64.927240601007611, 18.340359450954338 ], [ -64.927329113947621, 18.340347045731676 ], [ -64.927417626887632, 18.340328270259533 ], [ -64.927505972189522, 18.340348554474986 ], [ -64.927594149853292, 18.34036213316466 ], [ -64.927689369628752, 18.340369509242976 ], [ -64.927777713620969, 18.34037655004505 ], [ -64.927865891284739, 18.340390296372846 ], [ -64.927954236586572, 18.340397504813041 ], [ -64.928042581888462, 18.340404713253236 ], [ -64.928130927190352, 18.34041829194291 ], [ -64.928219104854122, 18.340432038270706 ], [ -64.928307617794133, 18.340432708823244 ], [ -64.928395963096023, 18.340433379375838 ], [ -64.928484308397913, 18.340434049928433 ], [ -64.92857282133798, 18.340434888119148 ], [ -64.92866116663987, 18.340429020784086 ], [ -64.92874967957988, 18.340429691336681 ], [ -64.92883802488177, 18.340423991639796 ], [ -64.928926537821781, 18.340418124304733 ], [ -64.929008512874191, 18.34037973516979 ], [ -64.929090320288481, 18.340347883922391 ], [ -64.929158716651216, 18.340296586650368 ], [ -64.929227113014008, 18.340245121740111 ], [ -64.929261814109793, 18.340167505279453 ], [ -64.929296515205635, 18.340089888818795 ], [ -64.929304058922071, 18.340005399194183 ], [ -64.929304729474666, 18.339921077207805 ], [ -64.929312273191158, 18.33983675522137 ], [ -64.929346974286943, 18.339758971122535 ], [ -64.929388380908506, 18.339681522299998 ], [ -64.929450071745521, 18.339623519502197 ], [ -64.929729356893404, 18.33956719308577 ], [ -64.929818037471591, 18.339548417613685 ], [ -64.929946448289911, 18.339627375179475 ], [ -64.930034793591801, 18.339641121507327 ], [ -64.930123138893691, 18.339648162309345 ], [ -64.930211316557404, 18.339668446524797 ], [ -64.930299829497471, 18.339662579189735 ], [ -64.930319443160272, 18.339747236452467 ], [ -64.930284742064487, 18.339837761050205 ], [ -64.930311228891242, 18.339922418312938 ], [ -64.930269654631502, 18.340000034773595 ], [ -64.930259596342864, 18.340040435566323 ], [ -64.930248532225392, 18.34008435676003 ], [ -64.930220704293504, 18.340168511108345 ], [ -64.930221039569744, 18.340253336009198 ], [ -64.930225230523376, 18.340336316890443 ], [ -64.930287424274809, 18.340396834260446 ], [ -64.930359507367029, 18.340443605302653 ], [ -64.930426731572481, 18.340499596442726 ], [ -64.930484231455864, 18.340564640042601 ], [ -64.930551454351587, 18.340620463544553 ], [ -64.930618509609189, 18.340676453374954 ], [ -64.93069562315543, 18.340718531858784 ], [ -64.930777430569719, 18.340746861395473 ], [ -64.93086443476642, 18.340756753355606 ], [ -64.930951271325057, 18.340762116466578 ], [ -64.931038275521757, 18.340776702294761 ], [ -64.931125112080338, 18.340781899077228 ], [ -64.931212116277095, 18.340782569629823 ], [ -64.931299120473852, 18.340783240182361 ], [ -64.93138629230873, 18.340774690637033 ], [ -64.93147329650543, 18.340761614861776 ], [ -64.931560468340308, 18.340753065316449 ], [ -64.931647640175186, 18.340735294363526 ], [ -64.93173011814207, 18.340703612063976 ], [ -64.931817289976948, 18.340667402224881 ], [ -64.931904460502153, 18.340658851369824 ], [ -64.931991466008526, 18.340659523232091 ], [ -64.932078470205283, 18.340655499916636 ], [ -64.932165642040161, 18.340637730273386 ], [ -64.932238564632826, 18.340592131388519 ], [ -64.932321042599654, 18.340555922859096 ], [ -64.932408214434531, 18.340538153215846 ], [ -64.932495386269409, 18.340511163474673 ], [ -64.932587419610456, 18.340493393831423 ], [ -64.932674422497541, 18.340494064383961 ], [ -64.932761260365794, 18.340499428804605 ], [ -64.932848264562551, 18.340504625587016 ], [ -64.932935267449579, 18.340509990007661 ], [ -64.933021267127117, 18.340501440462333 ], [ -64.933103743784329, 18.340474283082983 ], [ -64.933186221751157, 18.340438073243888 ], [ -64.933235173398884, 18.340369173966678 ], [ -64.933264845350379, 18.340290886953426 ], [ -64.933323349752982, 18.340226849182443 ], [ -64.9333818554652, 18.340162643773283 ], [ -64.933454945695985, 18.340107826100223 ], [ -64.933537257334365, 18.340076142491 ], [ -64.93362442785957, 18.340058372847693 ], [ -64.933711768642297, 18.340035909336393 ], [ -64.933803634345168, 18.34001830733132 ], [ -64.9338956663766, 18.33999584382002 ], [ -64.9339781456531, 18.339968854078847 ], [ -64.934065317487978, 18.339946390567547 ], [ -64.934152489322855, 18.33992862092424 ], [ -64.934234799651563, 18.339901631183068 ], [ -64.93432197148644, 18.33989308163774 ], [ -64.934413835879695, 18.339889058322285 ], [ -64.934501007714573, 18.339866762449105 ], [ -64.934593042365293, 18.339848992805855 ], [ -64.93468004656205, 18.339840443260528 ], [ -64.934767049449079, 18.339831893715143 ], [ -64.934854556560254, 18.339790990008055 ], [ -64.934941560757011, 18.339777914232798 ], [ -64.935028732591888, 18.33976936468747 ], [ -64.935115736788589, 18.339770035240008 ], [ -64.935202573347226, 18.339779925890525 ], [ -64.935284380761459, 18.33981747683481 ], [ -64.935371218629712, 18.339841281451243 ], [ -64.935409774093159, 18.339846142957413 ], [ -64.935457384635754, 18.339825355827543 ], [ -64.935525612050697, 18.339770370516305 ], [ -64.935579257566417, 18.339701638877273 ], [ -64.935652178849409, 18.339656041302135 ], [ -64.935739183046167, 18.33965201798668 ], [ -64.935816128954229, 18.339694262798957 ], [ -64.935873628837612, 18.339759306398832 ], [ -64.935921405708655, 18.33982887622858 ], [ -64.935969182579697, 18.339898446058328 ], [ -64.936060880644504, 18.339913030576895 ], [ -64.936147884841205, 18.339899954801638 ], [ -64.936230362808089, 18.339863577324365 ], [ -64.936308146906867, 18.339822673617277 ], [ -64.936381069499532, 18.339777076042083 ], [ -64.936468242644082, 18.33975008630091 ], [ -64.93655524553111, 18.339741536755582 ], [ -64.936642249727868, 18.33974220730812 ], [ -64.936729421562745, 18.339738351630842 ], [ -64.936811731891453, 18.339711194251493 ], [ -64.93689890372633, 18.33968420451032 ], [ -64.936990937067378, 18.33966643486707 ], [ -64.937078108902256, 18.339648665223763 ], [ -64.93716058686914, 18.33962167548259 ], [ -64.937247591065841, 18.339608432069213 ], [ -64.937339456768768, 18.339604576391935 ], [ -64.937426628603646, 18.33959602684655 ], [ -64.937485469592218, 18.33959736795174 ], [ -64.937572641427096, 18.339584292176482 ], [ -64.937659645623796, 18.339580268861027 ], [ -64.937756372832894, 18.339581107051742 ], [ -64.937848238535821, 18.339567863638365 ], [ -64.937935242732522, 18.33956853419096 ], [ -64.938046554460186, 18.339564846151802 ], [ -64.938138420163057, 18.339556296606418 ], [ -64.938225424359814, 18.33955244092914 ], [ -64.938317290062741, 18.339548585251805 ], [ -64.938409155765612, 18.339540035706477 ], [ -64.93850118910666, 18.3395267922931 ], [ -64.938588193303417, 18.339513716517843 ], [ -64.938670671270245, 18.33948655913855 ], [ -64.938762704611349, 18.339455043167447 ], [ -64.938845182578177, 18.339423359558225 ], [ -64.938932522051175, 18.33938245585108 ], [ -64.93901030615001, 18.339341552143992 ], [ -64.939083061104498, 18.339295954568797 ], [ -64.939136872948723, 18.339227222929765 ], [ -64.939171406406388, 18.339148935916512 ], [ -64.939201078357883, 18.339070816541437 ], [ -64.939206610416647, 18.338987668022014 ], [ -64.939226726993923, 18.338904687140712 ], [ -64.939232259052687, 18.338821706259409 ], [ -64.939266624872175, 18.338743586884334 ], [ -64.93932999209062, 18.338684075343224 ], [ -64.939427054576015, 18.338652391734001 ], [ -64.939514057463043, 18.338634622090751 ], [ -64.939596535429928, 18.338607632349522 ], [ -64.939680857416363, 18.338576786931071 ], [ -64.939755960614548, 18.338531859908471 ], [ -64.939831230141181, 18.338487100523992 ], [ -64.939892920978195, 18.338429097726191 ], [ -64.93992745443586, 18.338351481265533 ], [ -64.939955450005868, 18.338267159279098 ], [ -64.939969866886258, 18.338176467043183 ], [ -64.939916055042033, 18.338111088167011 ], [ -64.939869116361706, 18.338032801153759 ], [ -64.939903648509699, 18.337955184693101 ], [ -64.939965339346713, 18.337897181895244 ], [ -64.940033903347626, 18.337845716985044 ], [ -64.940115712071531, 18.337813865737701 ], [ -64.940204057373421, 18.337827612065496 ], [ -64.940292570313488, 18.337815206842834 ], [ -64.940374376418049, 18.337783355595491 ], [ -64.940436068564736, 18.337725520435811 ], [ -64.940409580428309, 18.337640863173078 ], [ -64.940423998618371, 18.337556541186643 ], [ -64.940431373387014, 18.337472219200208 ], [ -64.940486360007924, 18.337407678514808 ], [ -64.940534638483712, 18.33733659994175 ], [ -64.940589625104622, 18.337272060565965 ], [ -64.940631030416512, 18.337194442795635 ], [ -64.940645280968454, 18.3371101208092 ], [ -64.940700266279691, 18.337039209874263 ], [ -64.940755251590929, 18.336974669188862 ], [ -64.940783247160937, 18.336890514840547 ], [ -64.940749887170284, 18.336805857577815 ], [ -64.940723400343529, 18.336721201624755 ], [ -64.940687190504434, 18.336630172802927 ], [ -64.940763464550287, 18.33667660856878 ], [ -64.940849464227824, 18.336713991874888 ], [ -64.940935630233867, 18.336741987444952 ], [ -64.941021628601732, 18.33677937075106 ], [ -64.941126905356157, 18.3367984814995 ], [ -64.941222794374539, 18.336799319690215 ], [ -64.941318514445072, 18.336809211650404 ], [ -64.941414572411247, 18.33680988089327 ], [ -64.94151046142963, 18.336810719083985 ], [ -64.941596627435672, 18.336820442096382 ], [ -64.941692516453998, 18.336821281596769 ], [ -64.94177868246004, 18.33683100460911 ], [ -64.94186501479453, 18.336840893949898 ], [ -64.941950845524218, 18.336887329715807 ], [ -64.941998119480843, 18.336970142958933 ], [ -64.94202611636058, 18.337056476603095 ], [ -64.942029970728186, 18.33708782493602 ], [ -64.942035167510653, 18.337129734472057 ], [ -64.942015218571555, 18.337212044800765 ], [ -64.9419952696324, 18.337294355129416 ], [ -64.941975489641095, 18.337376497820003 ], [ -64.94194598532772, 18.33745880814871 ], [ -64.941897370265963, 18.337531730741375 ], [ -64.941858141630632, 18.33763214598963 ], [ -64.941809695516667, 18.337704900944118 ], [ -64.94176108045491, 18.337777823536726 ], [ -64.941750685580303, 18.337860133865433 ], [ -64.941740459653545, 18.337942611832318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1067", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.878588666713938, 18.320130726375339 ], [ -64.878567879584068, 18.320211361632289 ], [ -64.878603083594328, 18.320274559902884 ], [ -64.878658571819983, 18.320324348431654 ], [ -64.878799890775383, 18.320324180793534 ], [ -64.878928301593703, 18.320318984011067 ], [ -64.879242790751846, 18.320329043609377 ], [ -64.879427191400566, 18.320403138359325 ], [ -64.879531295997651, 18.320461476433479 ], [ -64.879696754845781, 18.32055317449823 ], [ -64.879824495111507, 18.320693990539212 ], [ -64.879920887044307, 18.320823407186367 ], [ -64.879997832952427, 18.320923487158325 ], [ -64.880030856357109, 18.321008144421057 ], [ -64.880059691427562, 18.321101854143535 ], [ -64.880125573218152, 18.321282232786473 ], [ -64.880162118333544, 18.32141919315012 ], [ -64.880175529385042, 18.321591357524028 ], [ -64.880169997326277, 18.321607953700266 ], [ -64.880159100846925, 18.321621532389941 ], [ -64.880126914323284, 18.321658915696048 ], [ -64.880054494645094, 18.32174994320826 ], [ -64.879970675573077, 18.321827392030798 ], [ -64.879891718007286, 18.321920766476978 ], [ -64.879788955825006, 18.322055547544778 ], [ -64.879726091520979, 18.322125787927121 ], [ -64.879650485408376, 18.322207595341354 ], [ -64.879597513064539, 18.322293090794801 ], [ -64.879494750882259, 18.322428039500721 ], [ -64.879367178254711, 18.322530801683001 ], [ -64.879169197606643, 18.322633563865281 ], [ -64.879114212295406, 18.322667929684769 ], [ -64.879022681868776, 18.322725764844449 ], [ -64.878967696557538, 18.322753089861919 ], [ -64.878923607725653, 18.322781085431984 ], [ -64.878895779793766, 18.322809919192764 ], [ -64.878850685133045, 18.322864233951407 ], [ -64.878816822227918, 18.322889212034852 ], [ -64.878768374804338, 18.322917542881214 ], [ -64.87870383411888, 18.32301494064285 ], [ -64.878607106909783, 18.323167826630197 ], [ -64.87854642190166, 18.32331199543404 ], [ -64.87851440301614, 18.323444094291517 ], [ -64.878476516795615, 18.323569990537635 ], [ -64.878455394389448, 18.323660179859132 ], [ -64.878476684433735, 18.323710638940497 ], [ -64.878511720805875, 18.323737963957967 ], [ -64.878562850439778, 18.32375858344966 ], [ -64.878731997327066, 18.323822453582522 ], [ -64.878827048154733, 18.323872242111293 ], [ -64.878925787021558, 18.323910128331818 ], [ -64.879052856734688, 18.323965281281232 ], [ -64.879139022740674, 18.324001491120328 ], [ -64.879194678604506, 18.324058488089292 ], [ -64.879315544396661, 18.324147671581898 ], [ -64.879482513297773, 18.324232999397168 ], [ -64.879670100380906, 18.324350681374256 ], [ -64.879893728355341, 18.324429806578223 ], [ -64.880071592426077, 18.324518990070828 ], [ -64.880150886577894, 18.324558551363168 ], [ -64.880196650481537, 18.324579172164533 ], [ -64.880219282940629, 18.324618230542399 ], [ -64.88033830602285, 18.324745804479676 ], [ -64.88045213232266, 18.324868346653261 ], [ -64.880536119032797, 18.324977145118396 ], [ -64.880586410475985, 18.325075044484834 ], [ -64.88066419457482, 18.325136401355167 ], [ -64.880679282007748, 18.325145789091266 ], [ -64.880602168461508, 18.325238325346731 ], [ -64.880597977507932, 18.325236984241599 ], [ -64.880528575316305, 18.325216363440177 ], [ -64.88044106820513, 18.325157522451661 ], [ -64.880343670443494, 18.325082420563149 ], [ -64.880232861630304, 18.324984521196711 ], [ -64.880125573218152, 18.324877065146438 ], [ -64.880035048620357, 18.324789055120846 ], [ -64.879958101402622, 18.324688304596293 ], [ -64.879834050485726, 18.324574143020186 ], [ -64.879706477858122, 18.324466519331793 ], [ -64.879518220222451, 18.324319668317628 ], [ -64.879346726401138, 18.32421489447762 ], [ -64.879227534371068, 18.324161585547813 ], [ -64.879119911992291, 18.324106600236576 ], [ -64.879027543374946, 18.324042059551175 ], [ -64.878931486718443, 18.323966287110068 ], [ -64.878852193876298, 18.323906943207078 ], [ -64.878693272915825, 18.323815077504207 ], [ -64.87845790896165, 18.323767468271285 ], [ -64.87829077373209, 18.32376327731771 ], [ -64.878185999892082, 18.323785237914535 ], [ -64.877992880750185, 18.32384072614019 ], [ -64.877828092454649, 18.32385832814532 ], [ -64.8777176189177, 18.323833013475905 ], [ -64.877641343562232, 18.323794458012458 ], [ -64.877553165898462, 18.323737124457523 ], [ -64.877521482289239, 18.32365699342472 ], [ -64.877507735961444, 18.32354819757893 ], [ -64.877495498376902, 18.323432191983272 ], [ -64.877497174758389, 18.323346193615407 ], [ -64.877520141184107, 18.32327679142378 ], [ -64.877608989400414, 18.323173191050785 ], [ -64.877693646663147, 18.323105632878764 ], [ -64.877785680004195, 18.323043103851035 ], [ -64.877872516562775, 18.323010582051097 ], [ -64.8779422540307, 18.322998176828492 ], [ -64.878109221622083, 18.322957273121347 ], [ -64.878257581379557, 18.322891894245174 ], [ -64.878411137919443, 18.322823497882439 ], [ -64.878544577882053, 18.322725429568209 ], [ -64.878688411409655, 18.322609759248849 ], [ -64.878787820829018, 18.322513199677871 ], [ -64.878864096184543, 18.322392667852341 ], [ -64.878925619383381, 18.322187311125958 ], [ -64.878952273848313, 18.322052027143741 ], [ -64.878984963286371, 18.321892435630673 ], [ -64.878999883081178, 18.321797720079303 ], [ -64.879022681868776, 18.321690934581568 ], [ -64.878989321878123, 18.321547268692143 ], [ -64.878938024606043, 18.321475016652073 ], [ -64.878869292967011, 18.321397232553295 ], [ -64.878739876319855, 18.321268654096798 ], [ -64.878638790519005, 18.321201598839195 ], [ -64.878528484620233, 18.321125658759968 ], [ -64.878455059113207, 18.321063297370415 ], [ -64.878377107376195, 18.32099640975099 ], [ -64.87830368186917, 18.320929522131507 ], [ -64.878203098982738, 18.320809493220395 ], [ -64.878134702620002, 18.32070740159071 ], [ -64.878028420036685, 18.320582343535307 ], [ -64.877973099449207, 18.320466002663352 ], [ -64.877860278978289, 18.320365084500679 ], [ -64.877744105744455, 18.320249078905022 ], [ -64.877604798446839, 18.320123351606696 ], [ -64.877501868626382, 18.320023437963187 ], [ -64.877449900801764, 18.319970129033379 ], [ -64.877402626845139, 18.319890836191291 ], [ -64.877350323744224, 18.319769801451343 ], [ -64.877347809172079, 18.319677097557701 ], [ -64.877335068673119, 18.319603504412441 ], [ -64.877348982639091, 18.319546173476908 ], [ -64.877371110874094, 18.319446930385993 ], [ -64.877385024840009, 18.319327069113001 ], [ -64.877420731764687, 18.319232185923511 ], [ -64.877521314651119, 18.319139984944286 ], [ -64.877545286905672, 18.319140321530256 ], [ -64.877636314417884, 18.319143337707203 ], [ -64.877724994996072, 18.319146356503438 ], [ -64.877766401617635, 18.319148366851493 ], [ -64.877811831554652, 18.319155240015391 ], [ -64.877898668113232, 18.319161777903048 ], [ -64.877985337033692, 18.31917099800097 ], [ -64.87805473922532, 18.319120036005188 ], [ -64.878112239108702, 18.319057506977458 ], [ -64.878199075667283, 18.319052477833168 ], [ -64.87827970961456, 18.319084664356808 ], [ -64.878360343561837, 18.319119700728891 ], [ -64.878443994995678, 18.319154738410646 ], [ -64.878530663916138, 18.319172506744223 ], [ -64.878617500474718, 18.319181894480323 ], [ -64.878713054216803, 18.319182565032861 ], [ -64.878803075900123, 18.319183235585456 ], [ -64.87889326522162, 18.319184073776171 ], [ -64.878983454543061, 18.319177535888571 ], [ -64.879073476226381, 18.319171165639091 ], [ -64.879163665547878, 18.319171837501358 ], [ -64.879253687231198, 18.319172506744223 ], [ -64.879344044190816, 18.319158928054605 ], [ -64.879434065874136, 18.319159767554993 ], [ -64.879524255195633, 18.319160436797858 ], [ -64.879614276878954, 18.319153898910258 ], [ -64.879436412808161, 18.319265545914163 ], [ -64.879343876552696, 18.319344169513386 ], [ -64.879238599798214, 18.319426813808718 ], [ -64.879153439621064, 18.319480960929184 ], [ -64.879102980539756, 18.319520189564571 ], [ -64.879073643864558, 18.319589758084646 ], [ -64.879034919453261, 18.319629320686659 ], [ -64.878754796114663, 18.319815901940899 ], [ -64.878624206000495, 18.319991419077667 ], [ -64.87858481103666, 18.320084122971309 ], [ -64.878588666713938, 18.320130726375339 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_316", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": "FLOODWAY", "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.875990946034506, 18.317676671585332 ], [ -64.87599798683658, 18.317850513650342 ], [ -64.87602883356476, 18.317966351607822 ], [ -64.876036712557493, 18.317995520644899 ], [ -64.875998992665416, 18.317980431902242 ], [ -64.875979211364438, 18.317961322463532 ], [ -64.875905450581058, 18.317885045798334 ], [ -64.875817609503315, 18.317759484828457 ], [ -64.875748708916433, 18.317670470283701 ], [ -64.875746864896882, 18.317615986577209 ], [ -64.87573647264162, 18.317598218243631 ], [ -64.875732280378315, 18.317573072522009 ], [ -64.87573295093091, 18.317495119475382 ], [ -64.875996813369568, 18.317557648503112 ], [ -64.875990946034506, 18.317676671585332 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_234", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 5.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.9446271884932, 18.334545258515675 ], [ -64.944521408824357, 18.334571911670878 ], [ -64.944434907542018, 18.33459873377393 ], [ -64.944348407569407, 18.33461650341718 ], [ -64.94428185391655, 18.334561016501198 ], [ -64.944292079843365, 18.33447853853437 ], [ -64.9443024734083, 18.334396228205662 ], [ -64.94437003158032, 18.334341913446963 ], [ -64.944456532862603, 18.334305871246045 ], [ -64.944507662496505, 18.3342760303467 ], [ -64.944515541489295, 18.3343078815941 ], [ -64.944568515142805, 18.334378626200532 ], [ -64.94460791010664, 18.334461942358075 ], [ -64.9446271884932, 18.334545258515675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1139", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.896322600433905, 18.360307884556562 ], [ -64.896233080355387, 18.360315763549352 ], [ -64.896145239277587, 18.360354823236889 ], [ -64.896049350259204, 18.3603739326756 ], [ -64.895961675509909, 18.360393212371832 ], [ -64.895869977445159, 18.360408298495145 ], [ -64.895786493649439, 18.360439480499622 ], [ -64.895702842215542, 18.36047066119437 ], [ -64.895619358419879, 18.36049781857372 ], [ -64.895531683670526, 18.36052497464334 ], [ -64.895448199874807, 18.360552133332362 ], [ -64.895368739394598, 18.360587168394773 ], [ -64.895289278914333, 18.360622372405032 ], [ -64.895209818434068, 18.360657576415292 ], [ -64.895146954130041, 18.360716586351657 ], [ -64.895092136456981, 18.36078380924738 ], [ -64.895020890245746, 18.36083493757161 ], [ -64.894949811672689, 18.360882043890115 ], [ -64.894874374507935, 18.360929151518235 ], [ -64.894794914027671, 18.3609682098961 ], [ -64.894715453547406, 18.361007438531487 ], [ -64.894640016382596, 18.361054543540263 ], [ -64.894564746855963, 18.361097626543256 ], [ -64.894493500644728, 18.361148757486887 ], [ -64.89442225443355, 18.361195862495663 ], [ -64.894359390129523, 18.361255038760476 ], [ -64.894300549141008, 18.361318239650473 ], [ -64.894249922421523, 18.361385293598403 ], [ -64.89421186856282, 18.361460564434708 ], [ -64.894202816103075, 18.361478835682703 ], [ -64.894163253501063, 18.361401554498343 ], [ -64.894111453314565, 18.361332153616388 ], [ -64.89411229150528, 18.361243808314498 ], [ -64.89410089211151, 18.361159149742093 ], [ -64.894053282878588, 18.361089579912345 ], [ -64.893989412745725, 18.361031578424218 ], [ -64.89393375688195, 18.360965696633627 ], [ -64.893886147649027, 18.360892437454993 ], [ -64.893838370777985, 18.360822867625245 ], [ -64.893790761545119, 18.360749443427835 ], [ -64.893731082365832, 18.360687583643028 ], [ -64.893658997963939, 18.36064098154867 ], [ -64.893591104515622, 18.360586497842235 ], [ -64.893510973482762, 18.360547605792817 ], [ -64.893430842449959, 18.360508547414952 ], [ -64.89335892568613, 18.360461776372745 ], [ -64.893278627015206, 18.360430426730147 ], [ -64.893198495982347, 18.360395222719887 ], [ -64.893122555903119, 18.360352307355072 ], [ -64.893050471501169, 18.360301849583379 ], [ -64.892982578052852, 18.360247533515064 ], [ -64.892918707919989, 18.360189364388759 ], [ -64.892846791156217, 18.360142759675057 ], [ -64.892762636807959, 18.360103701297191 ], [ -64.892715027575036, 18.360034131467387 ], [ -64.892691056630156, 18.360003956601474 ], [ -64.892663227388539, 18.359965398518682 ], [ -64.892599524893853, 18.359907229392377 ], [ -64.892515370545539, 18.359868168395167 ], [ -64.892431048559104, 18.359844363778734 ], [ -64.892346726572669, 18.359820728110094 ], [ -64.892266595539866, 18.359789212139049 ], [ -64.892223009622398, 18.359715954270087 ], [ -64.892215968820381, 18.359608330581636 ], [ -64.892204569426553, 18.359523673318904 ], [ -64.892205407617269, 18.359439182384676 ], [ -64.892222171431683, 18.359354860398241 ], [ -64.892230888615188, 18.359270538411806 ], [ -64.892263745691423, 18.359193929089656 ], [ -64.892296770405778, 18.359113461470884 ], [ -64.892325605476231, 18.359032996471456 ], [ -64.892390481437928, 18.358975999502491 ], [ -64.892478993068323, 18.358972814377751 ], [ -64.892571696961909, 18.358958228549568 ], [ -64.892632549608209, 18.35889720957482 ], [ -64.892689378938996, 18.358832333613066 ], [ -64.892758279525879, 18.358779192321435 ], [ -64.892846791156217, 18.358764606493196 ], [ -64.892935639372581, 18.358742144291625 ], [ -64.893020128997136, 18.35872370409578 ], [ -64.893069080644864, 18.358654972456748 ], [ -64.893093889780516, 18.35857450614759 ], [ -64.893102774602141, 18.358490016523035 ], [ -64.893147533986564, 18.358417429206668 ], [ -64.893224479894684, 18.35837199926965 ], [ -64.893312825196574, 18.358376525499523 ], [ -64.893397147183009, 18.358396305490828 ], [ -64.893477445853989, 18.35842782146193 ], [ -64.893557576886792, 18.358459171104528 ], [ -64.893646089826802, 18.35844441894784 ], [ -64.89373460276687, 18.358445257138555 ], [ -64.89382311570688, 18.358457493413425 ], [ -64.893907270055195, 18.358484987378688 ], [ -64.893995615357085, 18.35849722496323 ], [ -64.89407189071261, 18.358517006264208 ], [ -64.89407993734352, 18.358517173902328 ], [ -64.894160068376323, 18.358548522235253 ], [ -64.894244390362758, 18.358572159213566 ], [ -64.894328544711072, 18.358607363223825 ], [ -64.89439643815939, 18.358669389337081 ], [ -64.894468354923163, 18.358716160379288 ], [ -64.89452015510966, 18.358785730209036 ], [ -64.894559550073495, 18.35886669943261 ], [ -64.894595089359996, 18.35894381297885 ], [ -64.894630628646553, 18.359024614564248 ], [ -64.894702545410325, 18.359071385606399 ], [ -64.89478686739676, 18.359106589616658 ], [ -64.894866998429563, 18.359137936639911 ], [ -64.894930868562426, 18.359196108385561 ], [ -64.894986524426258, 18.359261822537974 ], [ -64.895014017081849, 18.359350335478041 ], [ -64.895029272152954, 18.359438848418051 ], [ -64.895051400387956, 18.359479081572601 ], [ -64.895055088427171, 18.359521326384936 ], [ -64.895066320182821, 18.359605814699819 ], [ -64.895065649630226, 18.359690305634047 ], [ -64.895064979077631, 18.359774961587107 ], [ -64.895068164202371, 18.359859452521334 ], [ -64.895075540280743, 18.359943942145946 ], [ -64.895078725405426, 18.360028430460829 ], [ -64.895094148114708, 18.360113087723562 ], [ -64.895097668515746, 18.360159189522847 ], [ -64.895105379870358, 18.360197746295967 ], [ -64.895128849210494, 18.360278546571692 ], [ -64.895217362150561, 18.360286928478899 ], [ -64.895305875090571, 18.360272345270062 ], [ -64.895346108245121, 18.360272680546302 ], [ -64.895390197077006, 18.36029983661598 ], [ -64.895449876256293, 18.360361862729235 ], [ -64.895505867396366, 18.360408298495145 ], [ -64.895534030604551, 18.360408633771442 ], [ -64.895534198242672, 18.360385499707547 ], [ -64.895534198242672, 18.360381645339942 ], [ -64.895535036433444, 18.360297154405657 ], [ -64.895539730301437, 18.360212664781102 ], [ -64.895552638438517, 18.360128342794667 ], [ -64.895569402252931, 18.360044020808232 ], [ -64.895594212698256, 18.359963554499132 ], [ -64.895635116405401, 18.359886945176981 ], [ -64.895708038998009, 18.359837659562629 ], [ -64.895796551938076, 18.359826761773604 ], [ -64.895885064878087, 18.359823745596714 ], [ -64.895977601133552, 18.359824416149252 ], [ -64.896049685535502, 18.359871187191459 ], [ -64.896105341399334, 18.359936901343872 ], [ -64.896156973947654, 18.360006471173676 ], [ -64.896212797449607, 18.360072185326089 ], [ -64.896236266789799, 18.360152985601815 ], [ -64.896259568491814, 18.360233788496942 ], [ -64.896311367368583, 18.360303358326689 ], [ -64.896322600433905, 18.360307884556562 ] ], [ [ -64.894209186352498, 18.359042550536003 ], [ -64.894202983741195, 18.358956887444378 ], [ -64.89413458737846, 18.35889720957482 ], [ -64.894045236247678, 18.358876756411576 ], [ -64.89391447849539, 18.358855970591378 ], [ -64.893824959726487, 18.358835351099685 ], [ -64.893735608595705, 18.358821603462161 ], [ -64.893556571057957, 18.358793775530273 ], [ -64.893467555203472, 18.358733930022538 ], [ -64.893385077236644, 18.358700233445916 ], [ -64.893261025010077, 18.358699228926753 ], [ -64.893148204539159, 18.358734265298835 ], [ -64.893093051589744, 18.358761421368513 ], [ -64.893017614424991, 18.358804673319298 ], [ -64.892950559167389, 18.358859826268713 ], [ -64.892879312956154, 18.358906932587161 ], [ -64.892875122002579, 18.358906932587161 ], [ -64.892799852475889, 18.358952362524178 ], [ -64.892728607574384, 18.359003492158081 ], [ -64.892682170498801, 18.359074738369316 ], [ -64.892635734732949, 18.359145815632701 ], [ -64.892585108013463, 18.359217063153551 ], [ -64.892534648932099, 18.359284286049274 ], [ -64.892488214475918, 18.359355364622331 ], [ -64.892429373487346, 18.359418564202656 ], [ -64.892388637418378, 18.359451924193309 ], [ -64.892350917526301, 18.359527696634359 ], [ -64.892405567561241, 18.359593912391574 ], [ -64.892453010465658, 18.359666836293911 ], [ -64.892500618388851, 18.359739591248399 ], [ -64.892624336648794, 18.359779990731454 ], [ -64.892685858538016, 18.359839671220357 ], [ -64.892788620720296, 18.359912927779646 ], [ -64.892857017083031, 18.359966070380949 ], [ -64.892925581083944, 18.360019379310756 ], [ -64.892993977446679, 18.360072520602387 ], [ -64.893096908576752, 18.360119459282714 ], [ -64.893139319717534, 18.360128342794667 ], [ -64.893171841517471, 18.360112418480639 ], [ -64.893289188218262, 18.360037819506601 ], [ -64.893356243475864, 18.359982666557187 ], [ -64.893410893510804, 18.359915442351792 ], [ -64.89346973449932, 18.359852410409644 ], [ -64.893528575487892, 18.359789212139049 ], [ -64.893591607430039, 18.359730034564507 ], [ -64.8936464251031, 18.359662980616577 ], [ -64.89370107513804, 18.359595756411181 ], [ -64.89374751090395, 18.359524511509676 ], [ -64.893810542846097, 18.359465501573311 ], [ -64.893881789057275, 18.359414373249024 ], [ -64.893948844314878, 18.359359220299666 ], [ -64.89400768530345, 18.359296019409726 ], [ -64.89406233533839, 18.359228965461796 ], [ -64.894112962057875, 18.359157719250561 ], [ -64.89416358877736, 18.359090496354838 ], [ -64.894184711183527, 18.359062333146653 ], [ -64.894209186352498, 18.359042550536003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_532", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 6.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.852044679283892, 18.337542627220728 ], [ -64.852044008731298, 18.33762577574015 ], [ -64.852043170540583, 18.337708924259573 ], [ -64.852017186628245, 18.337660812112233 ], [ -64.851975109454088, 18.337584872033005 ], [ -64.851903025052195, 18.337467860608456 ], [ -64.851861115516158, 18.337391752891108 ], [ -64.851807136033813, 18.337292343471688 ], [ -64.851771261471015, 18.337216403392461 ], [ -64.851717784903087, 18.337064690872182 ], [ -64.851700182897957, 18.336983051096013 ], [ -64.851652406026915, 18.336889509011655 ], [ -64.851616531464117, 18.336813568932428 ], [ -64.851587027150742, 18.336696892784232 ], [ -64.851575627756972, 18.33660955462085 ], [ -64.851564228363145, 18.336522047509732 ], [ -64.85154712927249, 18.336393970658037 ], [ -64.851541764851845, 18.336306632494654 ], [ -64.851518630788007, 18.336178388004839 ], [ -64.851513266367363, 18.336091048531785 ], [ -64.851489964665348, 18.335968505048527 ], [ -64.851466327687092, 18.335886866582086 ], [ -64.85144269070878, 18.335805225496301 ], [ -64.85140111644904, 18.335694250354663 ], [ -64.851365241886242, 18.335612441630701 ], [ -64.851317129738902, 18.335542202558031 ], [ -64.851317129738902, 18.335536501551474 ], [ -64.851226437502987, 18.335454192532438 ], [ -64.851178325355647, 18.335383950840423 ], [ -64.851099535427977, 18.335336676883799 ], [ -64.851045389617127, 18.335272303836518 ], [ -64.850948661098414, 18.335184127482421 ], [ -64.850888143728412, 18.335119585487348 ], [ -64.850827793996586, 18.335055044801891 ], [ -64.850718996841124, 18.334955301415903 ], [ -64.850652612136116, 18.334890759420773 ], [ -64.850573654570269, 18.334855221443888 ], [ -64.850470389473571, 18.334825214216153 ], [ -64.850391431907724, 18.334789673619923 ], [ -64.850306439368751, 18.33475983533998 ], [ -64.850184901714329, 18.33472395946751 ], [ -64.850099741537178, 18.334705688219458 ], [ -64.849899078678789, 18.33464584140205 ], [ -64.849807715890336, 18.334633436179388 ], [ -64.849643430509218, 18.334620526732635 ], [ -64.84955190139226, 18.33461968854192 ], [ -64.849399684647835, 18.33460678040484 ], [ -64.849308321859326, 18.33459437649185 ], [ -64.84921109173581, 18.33457610262451 ], [ -64.849144539392682, 18.33452329660912 ], [ -64.849047979821705, 18.334417684578398 ], [ -64.849005902647605, 18.334341578170722 ], [ -64.848970029394422, 18.334259938394553 ], [ -64.848940357442928, 18.334178129670647 ], [ -64.84890465051825, 18.334090456230967 ], [ -64.848887048513177, 18.334008816454855 ], [ -64.848906157951888, 18.333927510645367 ], [ -64.848876318362272, 18.33384587217887 ], [ -64.848914539859095, 18.333755681547757 ], [ -64.848985115517735, 18.33368158548808 ], [ -64.849067762432412, 18.333654763385084 ], [ -64.849195670336258, 18.333636155551062 ], [ -64.849298263570688, 18.333672365390157 ], [ -64.849384598524523, 18.333688795237947 ], [ -64.849508146527, 18.333701534427234 ], [ -64.84961090870928, 18.333726009596262 ], [ -64.849697409991563, 18.333722824471522 ], [ -64.849767818012083, 18.333672365390157 ], [ -64.849805536594431, 18.333597935363912 ], [ -64.849831017592351, 18.333515457397084 ], [ -64.849848285630856, 18.333432979430199 ], [ -64.849872088937616, 18.333336755135576 ], [ -64.849940150024111, 18.333388220045777 ], [ -64.850031680450741, 18.333389058236492 ], [ -64.850123044548866, 18.333389727479414 ], [ -64.850184566438031, 18.333324851517659 ], [ -64.850268553148169, 18.333303730421221 ], [ -64.850352204582066, 18.333326192622792 ], [ -64.850443399732399, 18.333334240563431 ], [ -64.850534762520851, 18.333342287194341 ], [ -64.850618413954692, 18.333364749395912 ], [ -64.850694186395799, 18.333416383253962 ], [ -64.850762247482237, 18.333475056604357 ], [ -64.850845563639837, 18.333512104634167 ], [ -64.85093692642829, 18.333527527343449 ], [ -64.851028289216799, 18.333535406336182 ], [ -64.851112275926937, 18.333514282620399 ], [ -64.85115100164785, 18.333434654502014 ], [ -64.851204979820579, 18.333369612211811 ], [ -64.851289134168837, 18.333333905287134 ], [ -64.85138032931917, 18.333349160358239 ], [ -64.851479403462292, 18.333357374627269 ], [ -64.851562887258012, 18.333387046578764 ], [ -64.851646538691853, 18.333409676418512 ], [ -64.85172231113296, 18.333453934198246 ], [ -64.85179791593589, 18.333512775186762 ], [ -64.85184301059661, 18.333585865417547 ], [ -64.851865138831613, 18.333665996450407 ], [ -64.851879555712003, 18.333753503561525 ], [ -64.851878717521288, 18.333840843034579 ], [ -64.85187033561408, 18.333928013559785 ], [ -64.85186195370693, 18.334015185394662 ], [ -64.851845860445053, 18.334102358539212 ], [ -64.851852733609007, 18.334189865650387 ], [ -64.851859439134728, 18.334298996772475 ], [ -64.851904366157328, 18.334372088312932 ], [ -64.85199556130766, 18.334394719462352 ], [ -64.852086756457993, 18.334424557742295 ], [ -64.85217040789189, 18.334447022563268 ], [ -64.852261603042223, 18.33446244527255 ], [ -64.852375596980096, 18.334492452500285 ], [ -64.852504678351011, 18.33454442032496 ], [ -64.852580450792061, 18.334588675485293 ], [ -64.852648511878556, 18.334640140395493 ], [ -64.852716740603171, 18.334691606615365 ], [ -64.852784634051488, 18.334750447603938 ], [ -64.852844983783314, 18.334816329394528 ], [ -64.852928299940913, 18.334875336711548 ], [ -64.853004072381964, 18.334926801621748 ], [ -64.853095267532296, 18.334949432771168 ], [ -64.853186462682629, 18.334964687842273 ], [ -64.853270114116526, 18.334994527431888 ], [ -64.853353597912189, 18.335016992252861 ], [ -64.853437249346086, 18.33504683053286 ], [ -64.853505310432524, 18.335098295443061 ], [ -64.853550405093245, 18.335171385673846 ], [ -64.853595332115844, 18.335244475904631 ], [ -64.853648138131234, 18.335310526643013 ], [ -64.85370060887027, 18.335398201392309 ], [ -64.853715193388837, 18.335485708503484 ], [ -64.853714355198122, 18.335572880338361 ], [ -64.853652831999284, 18.335637922628564 ], [ -64.853622321857074, 18.335644963430639 ], [ -64.853545878863372, 18.335666085836749 ], [ -64.853454348436742, 18.335679999802721 ], [ -64.853400368954397, 18.335744875764476 ], [ -64.853270114116526, 18.335831209408639 ], [ -64.853170872335284, 18.335859541564616 ], [ -64.853071798192161, 18.335865910504424 ], [ -64.852980267765531, 18.335879656832219 ], [ -64.852888737338901, 18.335878987589297 ], [ -64.852774408124674, 18.335892564969299 ], [ -64.852690253776416, 18.335921063453782 ], [ -64.852636441932191, 18.335986108363329 ], [ -64.852558993109653, 18.336116361891527 ], [ -64.852543067485954, 18.336203533726462 ], [ -64.852549773011731, 18.336290874509132 ], [ -64.852541391104523, 18.336378045034337 ], [ -64.852502499055106, 18.336465050540767 ], [ -64.852463774643866, 18.3365448449876 ], [ -64.852394707728536, 18.336595136430844 ], [ -64.852325640813206, 18.336645595512152 ], [ -64.852256741536053, 18.33669588695534 ], [ -64.852172587187738, 18.336731593880017 ], [ -64.852088432839423, 18.336767300804695 ], [ -64.852011822207658, 18.336810216169567 ], [ -64.85197309779636, 18.33689001192613 ], [ -64.851972259605645, 18.336977351399128 ], [ -64.85197142141493, 18.337064524543678 ], [ -64.851963039507723, 18.33715186270706 ], [ -64.85196991267162, 18.337239202180058 ], [ -64.851999584623115, 18.337319500851038 ], [ -64.852021712858118, 18.337399631883898 ], [ -64.852042332349868, 18.337486468442478 ], [ -64.852044679283892, 18.337542627220728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_527", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.859381193708202, 18.338839140626419 ], [ -64.859396281141187, 18.338883397096424 ], [ -64.8594264560071, 18.338962354662272 ], [ -64.859428802941125, 18.339006946408574 ], [ -64.859430814598852, 18.339046006096112 ], [ -64.8594713830297, 18.339120269793909 ], [ -64.859527374169772, 18.339194533491707 ], [ -64.85959375887478, 18.339249183526647 ], [ -64.85964991765303, 18.339318418080097 ], [ -64.85970590879316, 18.339387820271725 ], [ -64.859777490280635, 18.339437608800495 ], [ -64.859833649058885, 18.339501981847775 ], [ -64.859874217489732, 18.339580939413622 ], [ -64.859909421499935, 18.33966492612376 ], [ -64.859949989930783, 18.339744051327727 ], [ -64.859974968014228, 18.339827870399688 ], [ -64.859989552532795, 18.339916550977875 ], [ -64.859994078762668, 18.340000202411773 ], [ -64.85999843735442, 18.340083853845613 ], [ -64.859992570019358, 18.340167337641333 ], [ -64.859960886410136, 18.340245792292706 ], [ -64.85990372180305, 18.340309327149271 ], [ -64.859825937704215, 18.340352913066738 ], [ -64.859753518026025, 18.340401528128496 ], [ -64.859680930709658, 18.340450143190253 ], [ -64.859618570629777, 18.340513510408698 ], [ -64.859571463001657, 18.340586935915724 ], [ -64.859514298394572, 18.340650470772346 ], [ -64.85942662364522, 18.340654660416249 ], [ -64.859339116534045, 18.340648962029036 ], [ -64.859256304600592, 18.340682824934106 ], [ -64.859194444815785, 18.340647620923903 ], [ -64.859130909959219, 18.340578051094099 ], [ -64.859075254095387, 18.340508648902471 ], [ -64.859043905762462, 18.340416280285183 ], [ -64.858996296529597, 18.340346710455378 ], [ -64.858940640665764, 18.340277140625631 ], [ -64.858909293642512, 18.340200194717568 ], [ -64.858869897369004, 18.340107826100223 ], [ -64.858838381397959, 18.340030712553983 ], [ -64.858567813433524, 18.33972929917104 ], [ -64.858504110938782, 18.339667273057785 ], [ -64.858440408444096, 18.33960541458265 ], [ -64.858376705949354, 18.339535844752845 ], [ -64.857993317514058, 18.339271814676067 ], [ -64.857913521757496, 18.339225043633917 ], [ -64.857841604993723, 18.339178440229887 ], [ -64.857769689539623, 18.339124125471187 ], [ -64.857697771466178, 18.339077354429037 ], [ -64.857585956824096, 18.338999737968379 ], [ -64.857514041369996, 18.338953134564349 ], [ -64.85743424561349, 18.33889881980565 ], [ -64.857362327539988, 18.338844505047007 ], [ -64.857306671676213, 18.338774935217259 ], [ -64.857242970491143, 18.338712909103947 ], [ -64.85705974069009, 18.338542588749647 ], [ -64.856995870557228, 18.338480730274512 ], [ -64.856924121431575, 18.338418704161256 ], [ -64.85678833453494, 18.338340920062421 ], [ -64.856708203502137, 18.338301860374884 ], [ -64.856580129269787, 18.338247042701823 ], [ -64.856491951606017, 18.338223238085334 ], [ -64.856483903665435, 18.338223238085334 ], [ -64.856403772632632, 18.338191889752409 ], [ -64.856331857178532, 18.338145286348379 ], [ -64.856243847152939, 18.338113770377333 ], [ -64.856123650603649, 18.338074375413498 ], [ -64.856027426309026, 18.338050570797009 ], [ -64.855939079697464, 18.338034645173366 ], [ -64.855850903343367, 18.338018551911546 ], [ -64.855666501384974, 18.337970942678623 ], [ -64.855578156083084, 18.337954849416803 ], [ -64.855489978419371, 18.337938756154983 ], [ -64.855401633117481, 18.337930374247776 ], [ -64.855297362191891, 18.337914113347836 ], [ -64.855209015580328, 18.337905731440628 ], [ -64.85502411201719, 18.337904222697318 ], [ -64.854935765405628, 18.337903552144724 ], [ -64.85484742141341, 18.337902713954009 ], [ -64.85475873952555, 18.337925009827188 ], [ -64.854670227895213, 18.337939761983819 ], [ -64.85460971052521, 18.337967422277586 ], [ -64.854672071914763, 18.337899193552971 ], [ -64.8547139814508, 18.337825600407768 ], [ -64.854725045568273, 18.337742116612048 ], [ -64.854694869392688, 18.337663159046258 ], [ -64.854617923484568, 18.337618232023658 ], [ -64.854540978886178, 18.337578334145405 ], [ -64.854469565036823, 18.337513793459948 ], [ -64.854449616097668, 18.337429974387931 ], [ -64.854440228361625, 18.337341293809743 ], [ -64.854456321623445, 18.337257810014023 ], [ -64.854462356596628, 18.33717432621836 ], [ -64.85449906935014, 18.33709587156693 ], [ -64.854551203503263, 18.337027475204195 ], [ -64.854618595346835, 18.33696896949192 ], [ -64.854686153518855, 18.336915326595545 ], [ -64.85475873952555, 18.336866711533787 ], [ -64.854820934586655, 18.33680820451184 ], [ -64.854893521903023, 18.336759589450082 ], [ -64.854966109219333, 18.336710974388325 ], [ -64.855028470608943, 18.33665246867605 ], [ -64.855106087069601, 18.33660888275864 ], [ -64.855178674385968, 18.336560267696882 ], [ -64.855241034465848, 18.336501761984607 ], [ -64.855293171238316, 18.336428504115702 ], [ -64.855350503483521, 18.336364970568752 ], [ -64.855598440298536, 18.336273438832507 ], [ -64.855676224397314, 18.336234882059387 ], [ -64.855759037640496, 18.336191128503799 ], [ -64.855841683245444, 18.336157434546521 ], [ -64.855929356685124, 18.336143351632757 ], [ -64.856017031434419, 18.336134300482627 ], [ -64.856109736637734, 18.336135137363669 ], [ -64.856197411387029, 18.336130946410094 ], [ -64.856284918498204, 18.336131616962632 ], [ -64.856372425609379, 18.336147039671914 ], [ -64.856459931410882, 18.336152739368799 ], [ -64.856547272193552, 18.336168162078025 ], [ -64.856634779304727, 18.336178724590809 ], [ -64.85672245274435, 18.336174533637177 ], [ -64.856809959855525, 18.336175202880099 ], [ -64.85689763460482, 18.336161288914127 ], [ -64.856985478301965, 18.336137316659574 ], [ -64.85707298541314, 18.336133125705942 ], [ -64.857160492524315, 18.336138825402827 ], [ -64.85724816727361, 18.336134634449252 ], [ -64.857330308654525, 18.336164810624837 ], [ -64.857391665524915, 18.336224320856275 ], [ -64.85743726179038, 18.336298416915952 ], [ -64.857462239873826, 18.336382235987912 ], [ -64.857476993340185, 18.33646605505993 ], [ -64.857476153839798, 18.33654970649377 ], [ -64.857460060577978, 18.336633191599162 ], [ -64.857428376968755, 18.33671650644709 ], [ -64.857391665524915, 18.336794961098462 ], [ -64.857370206532778, 18.336878444894182 ], [ -64.857353945632838, 18.336966790196072 ], [ -64.857312540320947, 18.336994953404258 ], [ -64.85728655640861, 18.337019428573285 ], [ -64.857234419636143, 18.33708782493602 ], [ -64.85717725633873, 18.337151359792585 ], [ -64.85710969685698, 18.33720483636057 ], [ -64.857052533559568, 18.337268371217135 ], [ -64.857010622713915, 18.337341796724218 ], [ -64.85698413588716, 18.337425280519881 ], [ -64.857014310753073, 18.337504238085728 ], [ -64.85708086440593, 18.337558888120668 ], [ -64.85714205232847, 18.337618399661778 ], [ -64.85720324025101, 18.337682772709115 ], [ -64.857264594502055, 18.337742451888346 ], [ -64.857330980516736, 18.337801963429456 ], [ -64.857402729642388, 18.337851751958226 ], [ -64.857479506602658, 18.337891649836536 ], [ -64.857561816931366, 18.337921824702448 ], [ -64.85764915640442, 18.337947305700311 ], [ -64.857736495877418, 18.337962728409593 ], [ -64.857824002988593, 18.337963398962131 ], [ -64.857911677737889, 18.337964069514726 ], [ -64.857999352487241, 18.337945126404463 ], [ -64.858092056380826, 18.337950826101348 ], [ -64.858179563492001, 18.337966416448751 ], [ -64.858266902965056, 18.337981839157976 ], [ -64.858354242438054, 18.338007152517719 ], [ -64.858387770066884, 18.338014863872331 ], [ -64.858441581911109, 18.338027604371291 ], [ -64.858523724601639, 18.338062640743374 ], [ -64.858605868601899, 18.338097677115513 ], [ -64.858688009982757, 18.338127851981426 ], [ -64.858780547547951, 18.338148303834998 ], [ -64.858867885711277, 18.338168755688571 ], [ -64.858955392822452, 18.338189207542143 ], [ -64.859042733605122, 18.338209491757539 ], [ -64.859130071768504, 18.338229943611111 ], [ -64.859207017676567, 18.338270009127541 ], [ -64.859283795946567, 18.338314768511964 ], [ -64.859329561159882, 18.338389032209761 ], [ -64.859370129590729, 18.338463128269439 ], [ -64.859374488182425, 18.338546779703279 ], [ -64.859378846774177, 18.338630431137119 ], [ -64.859378176221639, 18.338714082570959 ], [ -64.859382534813335, 18.338797734004856 ], [ -64.859381193708202, 18.338839140626419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_546", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 4.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.948855525399324, 18.327223494938323 ], [ -64.948752929545492, 18.327223494938323 ], [ -64.948611276623524, 18.327199691631563 ], [ -64.948522762373784, 18.327187789323318 ], [ -64.948434249433774, 18.327175885705401 ], [ -64.948345570165259, 18.327186446908513 ], [ -64.948256889587071, 18.327202707808453 ], [ -64.948173907396153, 18.327230200464101 ], [ -64.948096795159586, 18.327269092513461 ], [ -64.948019681613346, 18.327313685569436 ], [ -64.947948267763991, 18.327363809374503 ], [ -64.947871154217751, 18.327402701423921 ], [ -64.947794039361838, 18.327447291860551 ], [ -64.947714580191246, 18.327509151645359 ], [ -64.947750454754043, 18.327429020612556 ], [ -64.947813989610665, 18.327369172485476 ], [ -64.947891606071323, 18.327329609883463 ], [ -64.947948267763991, 18.327262889902158 ], [ -64.947983973378996, 18.327182758869299 ], [ -64.948005767647373, 18.327102627836496 ], [ -64.948027560606079, 18.327022330475188 ], [ -64.948105009428616, 18.326982598925383 ], [ -64.948196372217126, 18.326976731590321 ], [ -64.948266947875709, 18.326923591608363 ], [ -64.948323609568433, 18.326857037955506 ], [ -64.948414803409094, 18.326871119559655 ], [ -64.948484542186634, 18.326925266680121 ], [ -64.948561320456577, 18.326966170387266 ], [ -64.948638097416904, 18.32700690645629 ], [ -64.948715044634639, 18.327054349360708 ], [ -64.948735327540419, 18.327134981998256 ], [ -64.948790983404194, 18.327202541480005 ], [ -64.948855525399324, 18.327223494938323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_489", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.961243143430863, 18.367808684362046 ], [ -64.961242975792686, 18.367821089584709 ], [ -64.961255381015349, 18.367908595386155 ], [ -64.961254710462811, 18.367995936168882 ], [ -64.961319586424509, 18.368052596551877 ], [ -64.961404578963538, 18.368034491632329 ], [ -64.961496109390168, 18.368028959573564 ], [ -64.961587639816798, 18.368035834047134 ], [ -64.961659053666096, 18.368086293128499 ], [ -64.961730467515451, 18.368143122459287 ], [ -64.961815292416304, 18.368162399536175 ], [ -64.961899949679037, 18.368188049481887 ], [ -64.961984774579889, 18.368207495506624 ], [ -64.962056188429244, 18.368257954587932 ], [ -64.962141014639769, 18.36827723166482 ], [ -64.962182755227957, 18.368270358500922 ], [ -64.962228855717569, 18.368270695086892 ], [ -64.962310663131859, 18.368300702314684 ], [ -64.96239766732856, 18.368306234373392 ], [ -64.962474277960382, 18.368345964613525 ], [ -64.962499256043827, 18.368429279461452 ], [ -64.962534460054087, 18.368507901751002 ], [ -64.962564467281879, 18.368586356402375 ], [ -64.962594642147792, 18.368664978691925 ], [ -64.96261442344877, 18.36874829615914 ], [ -64.962613752896175, 18.36883144336889 ], [ -64.962607885561169, 18.368914593197985 ], [ -64.962617440935389, 18.368997909355585 ], [ -64.962652644945592, 18.369076362697285 ], [ -64.962651974393054, 18.369159678854828 ], [ -64.962615429277662, 18.369237630591783 ], [ -64.962568658235455, 18.369310720822568 ], [ -64.962521887193304, 18.369383643415233 ], [ -64.962480312933565, 18.369456733646018 ], [ -64.962438738673882, 18.369529823876803 ], [ -64.962422645412062, 18.369612972396226 ], [ -64.962392973460567, 18.369544240757193 ], [ -64.962337149958614, 18.369475173841863 ], [ -64.962255510182445, 18.369410800794583 ], [ -64.962153083276462, 18.36938548743484 ], [ -64.962066079079761, 18.369360341713218 ], [ -64.961938003537739, 18.36931524836217 ], [ -64.961825350704942, 18.369289933692755 ], [ -64.961738178870064, 18.369274512293146 ], [ -64.961686881598041, 18.369274175707176 ], [ -64.961599709763163, 18.36927350646431 ], [ -64.961491918436536, 18.369267637819576 ], [ -64.961373733545031, 18.36928641460139 ], [ -64.961286394071976, 18.369295465751463 ], [ -64.961208946559168, 18.369334191472433 ], [ -64.961080366793055, 18.369362522318738 ], [ -64.960993028629673, 18.369386325625555 ], [ -64.960905521518498, 18.369410297880108 ], [ -64.960818013097651, 18.369434102496598 ], [ -64.960740565584786, 18.369492272932519 ], [ -64.960679208714453, 18.369595036424471 ], [ -64.960692955042248, 18.369507695641801 ], [ -64.960693794542635, 18.369420357478418 ], [ -64.960694463785558, 18.369333016695748 ], [ -64.960688596450495, 18.369245678532366 ], [ -64.96068943464121, 18.369158337749695 ], [ -64.960690106503478, 18.36907099958637 ], [ -64.960671329721663, 18.368983492475195 ], [ -64.960691613937115, 18.36890252325162 ], [ -64.960692284489653, 18.36881518246895 ], [ -64.960692955042248, 18.368727844305567 ], [ -64.960700332430235, 18.368640503522897 ], [ -64.960733692420888, 18.368559703247172 ], [ -64.96073436166381, 18.368472362464445 ], [ -64.960741571413678, 18.368385024301119 ], [ -64.96072933251952, 18.368297683518392 ], [ -64.960736708597835, 18.368204141434035 ], [ -64.960704689712315, 18.368122670605715 ], [ -64.960750957840048, 18.368048239269797 ], [ -64.960823377518295, 18.367998784707652 ], [ -64.960895629558365, 18.367949500402972 ], [ -64.960961511348955, 18.367893844539196 ], [ -64.961027225501368, 18.367838187365692 ], [ -64.961106015429039, 18.367801308283674 ], [ -64.961171729581508, 18.367751855031202 ], [ -64.961184805356766, 18.367758225280681 ], [ -64.961243143430863, 18.367808684362046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_638", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 6.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.9202712141186, 18.338449381941587 ], [ -64.920264005678405, 18.338365562869626 ], [ -64.920224778352747, 18.338281408521311 ], [ -64.920193597657942, 18.338197421811174 ], [ -64.920170463594047, 18.338113435101036 ], [ -64.920155208522942, 18.338029616029019 ], [ -64.920115981197284, 18.337945461680761 ], [ -64.920100726126179, 18.337861642608743 ], [ -64.920085471055074, 18.337777655898606 ], [ -64.92006233699118, 18.337686125471976 ], [ -64.920023277303642, 18.337609514840153 ], [ -64.919967956716107, 18.337540615563 ], [ -64.919896710504929, 18.337486636080598 ], [ -64.919833343286484, 18.337417736803445 ], [ -64.919778190337126, 18.337348669888115 ], [ -64.919738963011412, 18.337272226894413 ], [ -64.919699735685697, 18.33719561757232 ], [ -64.919644582736339, 18.337126716985438 ], [ -64.919597308779714, 18.337050106353615 ], [ -64.919550202461267, 18.33697366335997 ], [ -64.919519021766462, 18.336889509011655 ], [ -64.919487841071714, 18.33680552361119 ], [ -64.919536288495294, 18.336729749860467 ], [ -64.919624130882767, 18.33672287669657 ], [ -64.919704261915626, 18.336677782035792 ], [ -64.919760588331997, 18.336609720949355 ], [ -64.919793277770054, 18.336526069515514 ], [ -64.919786069329859, 18.336442250443497 ], [ -64.919778860889664, 18.336350887654987 ], [ -64.919795457065959, 18.336267068583027 ], [ -64.919764276371154, 18.336183081872889 ], [ -64.919741142307259, 18.336099096472424 ], [ -64.919718008243422, 18.336015108452557 ], [ -64.919718678795959, 18.335931457018717 ], [ -64.919735274972254, 18.335847805584876 ], [ -64.919728066532059, 18.335763818874739 ], [ -64.919696885837254, 18.335679833474273 ], [ -64.919681630766149, 18.335596014402256 ], [ -64.919658496702311, 18.335512026382446 ], [ -64.919667213885759, 18.335428208620101 ], [ -64.919627986560101, 18.335351765626456 ], [ -64.919604852496207, 18.335267777606646 ], [ -64.919581550794192, 18.335183790896508 ], [ -64.919542323468477, 18.335107347902806 ], [ -64.919503096142819, 18.335030906218833 ], [ -64.919463868817104, 18.334954295587011 ], [ -64.919408715867746, 18.334885396309858 ], [ -64.919425312043984, 18.334801743566288 ], [ -64.919425479682104, 18.334794033521348 ], [ -64.919430173550154, 18.334709711534913 ], [ -64.919400333960539, 18.334631592159838 ], [ -64.919406033657424, 18.334621867837768 ], [ -64.920046746643777, 18.335584613698813 ], [ -64.920025959513964, 18.335676145435059 ], [ -64.921192720996203, 18.336817424609762 ], [ -64.922257390848699, 18.337274573828438 ], [ -64.922612279489897, 18.337403319923055 ], [ -64.922954765527777, 18.337558888120668 ], [ -64.923317199195083, 18.337737422744055 ], [ -64.92364375829959, 18.337896511342706 ], [ -64.923810893529151, 18.337985694835311 ], [ -64.923982387350463, 18.338048056224864 ], [ -64.924283633095229, 18.338102873897981 ], [ -64.92388934818058, 18.338258609733714 ], [ -64.923801338154988, 18.338288281685209 ], [ -64.923713494457843, 18.338302866203719 ], [ -64.923625653380043, 18.338309739367674 ], [ -64.92353764335445, 18.338339578957289 ], [ -64.92351836496789, 18.338362377744886 ], [ -64.92344628056594, 18.338384505979889 ], [ -64.923358604506973, 18.338391546781907 ], [ -64.923278307145665, 18.338436641442684 ], [ -64.92319080003449, 18.338420715818984 ], [ -64.923102957647075, 18.338420045266389 ], [ -64.923015282897722, 18.338419207075674 ], [ -64.922927440510307, 18.338433791594184 ], [ -64.922839430484714, 18.338455919829244 ], [ -64.922759467089975, 18.338493470773471 ], [ -64.922671623392887, 18.338508055291982 ], [ -64.922583613367294, 18.338522472172372 ], [ -64.922519409267807, 18.338582989542374 ], [ -64.922431399242214, 18.338605117777377 ], [ -64.922335845500129, 18.338596735870169 ], [ -64.922256385019864, 18.338558011458929 ], [ -64.922168710270569, 18.338542085835229 ], [ -64.922089249790304, 18.338503361423989 ], [ -64.922009956948159, 18.338464637012692 ], [ -64.921945583900879, 18.338525154382694 ], [ -64.921968717964774, 18.338609141092832 ], [ -64.921952121788479, 18.338692792526672 ], [ -64.921871990755676, 18.338730175832779 ], [ -64.921783980730083, 18.338760015422451 ], [ -64.921696473618908, 18.338744089798752 ], [ -64.921608798869613, 18.338720452820439 ], [ -64.921513412765648, 18.338689272125691 ], [ -64.921450213185381, 18.338627916564974 ], [ -64.921362706074206, 18.338596735870169 ], [ -64.921274863686733, 18.338596065317631 ], [ -64.921187188937438, 18.338595227126859 ], [ -64.921099178911845, 18.338625066716531 ], [ -64.921026926871775, 18.338677872731864 ], [ -64.920962553824438, 18.338738222463689 ], [ -64.920922153031768, 18.338814162542974 ], [ -64.920921314841053, 18.338897813976814 ], [ -64.920888793041115, 18.338981465410654 ], [ -64.920800783015522, 18.339011137362149 ], [ -64.92071310826617, 18.33899521173845 ], [ -64.920625601155052, 18.338971742398314 ], [ -64.920546140674787, 18.338933017987017 ], [ -64.920499034356283, 18.338856407355252 ], [ -64.920459807030625, 18.338779964361549 ], [ -64.92040448644309, 18.338711065084397 ], [ -64.920341286862822, 18.338649541885559 ], [ -64.920278254920674, 18.338557676182631 ], [ -64.920270543566005, 18.338525657297112 ], [ -64.9202712141186, 18.338449381941587 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_960", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.924552355730384, 18.359843022673601 ], [ -64.924537603573754, 18.359754677371711 ], [ -64.924499886301021, 18.359673374181511 ], [ -64.924477421480049, 18.359592237319816 ], [ -64.924424112550241, 18.359518307588644 ], [ -64.924401816677118, 18.359429794648634 ], [ -64.924325207354968, 18.359377660495511 ], [ -64.924264019432428, 18.359318316592521 ], [ -64.924303245448414, 18.359237682645244 ], [ -64.924350185438414, 18.359164592414459 ], [ -64.924396956480621, 18.359091334545553 ], [ -64.924436517772904, 18.358981362613406 ], [ -64.924491001479396, 18.358915482132488 ], [ -64.924560737637592, 18.358864520136706 ], [ -64.924638186460129, 18.358821100547743 ], [ -64.924730722715651, 18.358807020253323 ], [ -64.924823092642669, 18.358815065574561 ], [ -64.924915627588462, 18.358808528996633 ], [ -64.924977822649566, 18.358750189612863 ], [ -64.925032471374834, 18.358662348535063 ], [ -64.925056277300939, 18.358581546949665 ], [ -64.9250800806077, 18.358500745364267 ], [ -64.925111596578802, 18.35842011141699 ], [ -64.925150825214189, 18.358339477469713 ], [ -64.925197762584787, 18.358266387238928 ], [ -64.925267501362384, 18.358215425243145 ], [ -64.925359868670057, 18.358216094486068 ], [ -64.925452238597074, 18.35822414242665 ], [ -64.925544605904747, 18.358239565135875 ], [ -64.925637143469885, 18.35824040332659 ], [ -64.92572934444911, 18.358255826035872 ], [ -64.92581400040217, 18.358278457185293 ], [ -64.925898491336397, 18.35830125597289 ], [ -64.925952972423545, 18.358235540510748 ], [ -64.925999912413545, 18.358162283951515 ], [ -64.926023715720305, 18.358081482366117 ], [ -64.926062944355692, 18.35800084841884 ], [ -64.926063613598558, 18.357912669445398 ], [ -64.92605674043466, 18.35782432545318 ], [ -64.926118935495765, 18.357765987379082 ], [ -64.926211302803438, 18.357774034009992 ], [ -64.926280203390263, 18.357826001834667 ], [ -64.926364524067026, 18.35787076121909 ], [ -64.926456892684371, 18.357886351566492 ], [ -64.926486899912163, 18.357967488428187 ], [ -64.926439962541508, 18.358047953427615 ], [ -64.926385478835073, 18.358113836527878 ], [ -64.92638480959215, 18.358202014191647 ], [ -64.926383971401435, 18.358290359493537 ], [ -64.92635228648254, 18.35840049644446 ], [ -64.926305347802213, 18.358473587984918 ], [ -64.926250865405393, 18.358546844544151 ], [ -64.926304175644873, 18.358613398197008 ], [ -64.926349771910395, 18.358694701387151 ], [ -64.92634893371968, 18.358783047998713 ], [ -64.926379108585593, 18.358864183550736 ], [ -64.92638598174949, 18.358952530162298 ], [ -64.926416156615403, 18.359033667023994 ], [ -64.926500647549631, 18.359056464501919 ], [ -64.926578095062496, 18.359012878584508 ], [ -64.926663087601526, 18.358984046133401 ], [ -64.926740536424063, 18.358940626544438 ], [ -64.926810273891931, 18.358889664548656 ], [ -64.926872467643364, 18.358831326474558 ], [ -64.926896273569469, 18.358750526198776 ], [ -64.926958466011229, 18.358677435967991 ], [ -64.927043458550258, 18.358655978285583 ], [ -64.927135994805724, 18.358656816476298 ], [ -64.927198020919036, 18.358598309454351 ], [ -64.927244959599363, 18.358517844454923 ], [ -64.927322408421844, 18.358474258537512 ], [ -64.927376890818664, 18.358408544385043 ], [ -64.927431373215484, 18.358342662594453 ], [ -64.927523741832829, 18.358350876863483 ], [ -64.927608399095504, 18.35837350801296 ], [ -64.927695738568559, 18.358408544385043 ], [ -64.927716190422132, 18.358463362058103 ], [ -64.927774193219932, 18.358527232190966 ], [ -64.927706635047912, 18.358523376513688 ], [ -64.927618625022319, 18.358556233589923 ], [ -64.927512845353419, 18.358622283018633 ], [ -64.927433552511332, 18.35867190259961 ], [ -64.927354428617036, 18.358713141582996 ], [ -64.927125602550461, 18.358811880449821 ], [ -64.927037592524869, 18.358844571197608 ], [ -64.926958298373108, 18.358885810180993 ], [ -64.926870288347516, 18.358927049164436 ], [ -64.926793845353814, 18.359007180197239 ], [ -64.926662417048931, 18.359072391435291 ], [ -64.926530822415543, 18.359137601363614 ], [ -64.926399895715406, 18.359129219456406 ], [ -64.92622052290136, 18.359055795259053 ], [ -64.926132680513888, 18.359071888520873 ], [ -64.926045005764593, 18.359071216658606 ], [ -64.925965880560625, 18.359112455642048 ], [ -64.925895304901985, 18.359162076532641 ], [ -64.925824730553018, 18.359211697423291 ], [ -64.925665640644695, 18.359361230647721 ], [ -64.92562121653657, 18.359436166207786 ], [ -64.925567907606762, 18.359502718550914 ], [ -64.925382333491029, 18.359677062220669 ], [ -64.925311756522717, 18.359726683111319 ], [ -64.925241180864077, 18.359776471640089 ], [ -64.925161720383869, 18.359842687397304 ], [ -64.925091144725229, 18.359892477235746 ], [ -64.925029287559767, 18.359950478723874 ], [ -64.924914455431121, 18.360050055781414 ], [ -64.924844047410659, 18.360099676672064 ], [ -64.924756037385066, 18.36014091565545 ], [ -64.924688982127464, 18.360177963685317 ], [ -64.924680097305782, 18.360194727499675 ], [ -64.924573982360641, 18.360294304557215 ], [ -64.924512122575834, 18.360352476302864 ], [ -64.924450265410371, 18.360410477790992 ], [ -64.924388405625564, 18.360468649536642 ], [ -64.924264353398996, 18.360626732306457 ], [ -64.924211213417038, 18.360693284649642 ], [ -64.924175337544568, 18.360776599497513 ], [ -64.924113311431256, 18.360868297562263 ], [ -64.924068719684954, 18.360943231812655 ], [ -64.923944501129938, 18.361118078396828 ], [ -64.923900077021756, 18.36119301264722 ], [ -64.923846768092005, 18.361267946897556 ], [ -64.923793625490646, 18.361334500550413 ], [ -64.923677621204661, 18.361568020485038 ], [ -64.923650631463488, 18.361651502971029 ], [ -64.923605872079065, 18.361751582943043 ], [ -64.923561447970883, 18.361834900410258 ], [ -64.92348953120711, 18.362026844775471 ], [ -64.923436388605808, 18.362093397118656 ], [ -64.923383080985673, 18.362168331368991 ], [ -64.9233560912445, 18.362251816474384 ], [ -64.923169007075785, 18.362610225516562 ], [ -64.923106813324353, 18.362693541674162 ], [ -64.923071106399675, 18.362777025469882 ], [ -64.92299131064317, 18.362885152072749 ], [ -64.922946718896867, 18.362960087632757 ], [ -64.922876143238227, 18.363009707213735 ], [ -64.922760640556987, 18.363184721436085 ], [ -64.922716216448862, 18.36325965568642 ], [ -64.922671623392887, 18.36334297184402 ], [ -64.922644634961387, 18.36342645563974 ], [ -64.922599371352817, 18.3635935908693 ], [ -64.92254606242301, 18.363668525119635 ], [ -64.922492922441052, 18.36373507746282 ], [ -64.922439781149365, 18.363801629806005 ], [ -64.922368534938187, 18.363926520223288 ], [ -64.922306676463052, 18.363993072566416 ], [ -64.922253367533244, 18.364068006816808 ], [ -64.922217660608567, 18.364151322974351 ], [ -64.922217492970447, 18.364159704881558 ], [ -64.922172733586024, 18.364268166760723 ], [ -64.922128309477841, 18.364343268649236 ], [ -64.922066451002706, 18.364401271447093 ], [ -64.922021523980106, 18.364518115233466 ], [ -64.921985817055429, 18.364601599029186 ], [ -64.921932675763799, 18.364668151372314 ], [ -64.921888084017496, 18.364743085622706 ], [ -64.921834942725866, 18.364809637965891 ], [ -64.921798900524891, 18.364918267483176 ], [ -64.921763193600214, 18.365001583640719 ], [ -64.921727319037416, 18.365085067436439 ], [ -64.921708543565273, 18.365235606489762 ], [ -64.921707873012679, 18.365319257923602 ], [ -64.921688929902416, 18.365478178884132 ], [ -64.921679374528196, 18.365561830317972 ], [ -64.921687421159106, 18.365645481751869 ], [ -64.921686415330271, 18.365762660814482 ], [ -64.921685744777676, 18.3658464798865 ], [ -64.921685074225081, 18.36593013132034 ], [ -64.921701838039496, 18.36600556848515 ], [ -64.921628747808711, 18.365933651721377 ], [ -64.921616677862346, 18.3658240163752 ], [ -64.921594214351046, 18.365742879513505 ], [ -64.921540905421239, 18.3656761595322 ], [ -64.921487596491488, 18.365609607189015 ], [ -64.921426408568891, 18.365550263286082 ], [ -64.921365220646351, 18.365490919383092 ], [ -64.921280898659916, 18.365453536076984 ], [ -64.921227422091988, 18.365386816095679 ], [ -64.921174113162181, 18.365320263752494 ], [ -64.92111292523964, 18.365260919849504 ], [ -64.92105190495522, 18.365194199868199 ], [ -64.9209908846708, 18.365134855965209 ], [ -64.92092969674826, 18.365075512062276 ], [ -64.920930367300798, 18.364987166760386 ], [ -64.920985017335738, 18.364914076529601 ], [ -64.921024244661453, 18.364833442582324 ], [ -64.921040337923273, 18.364745264918554 ], [ -64.92105659882327, 18.364659266550689 ], [ -64.921095658510808, 18.364586008681783 ], [ -64.921165563616853, 18.364535046686001 ], [ -64.921250556155883, 18.364499004485026 ], [ -64.921335548694856, 18.364470170724246 ], [ -64.921412997517393, 18.364419376366641 ], [ -64.921497990056423, 18.364390542605861 ], [ -64.921582982595396, 18.364369252561573 ], [ -64.921675518850918, 18.364362547035796 ], [ -64.921760511389891, 18.364341089353388 ], [ -64.921845671567041, 18.364297671074098 ], [ -64.921900153963861, 18.364231956921628 ], [ -64.921946925006011, 18.364158699052723 ], [ -64.921970729622501, 18.364077897467325 ], [ -64.921963856458603, 18.363989719803556 ], [ -64.921956814346856, 18.363901374501665 ], [ -64.921911385719511, 18.363827446080165 ], [ -64.921865788144316, 18.363753517658665 ], [ -64.921804600221776, 18.363694173755675 ], [ -64.921743412299236, 18.363634829852685 ], [ -64.921724133912676, 18.363548999122997 ], [ -64.921699491105471, 18.363467862261302 ], [ -64.921709046479691, 18.363346659883177 ], [ -64.921735030392028, 18.363266193574077 ], [ -64.921803928359509, 18.36314549411037 ], [ -64.921846845034054, 18.36307307443218 ], [ -64.921898477582431, 18.362976514861202 ], [ -64.921924461494712, 18.362895880913982 ], [ -64.921951451235941, 18.362726231112219 ], [ -64.921977435148222, 18.362645597164942 ], [ -64.922003585389007, 18.362564964527394 ], [ -64.922021187394137, 18.362476282639534 ], [ -64.922022026894524, 18.362387434423226 ], [ -64.922005933632704, 18.362298250930621 ], [ -64.922006604185299, 18.362209402714257 ], [ -64.921966706307046, 18.361942356460588 ], [ -64.921941895861721, 18.361861385927341 ], [ -64.921925802599901, 18.361772370072856 ], [ -64.921901495068994, 18.361634740466343 ], [ -64.921893951352502, 18.361545724611858 ], [ -64.921911553357631, 18.361457042723998 ], [ -64.921963018267832, 18.36138462435548 ], [ -64.922057398542904, 18.36123995263722 ], [ -64.922100313907777, 18.361167531649301 ], [ -64.922116574807774, 18.36110986543747 ], [ -64.922209111063239, 18.36110315860202 ], [ -64.922294103602269, 18.361074492479418 ], [ -64.922386472219614, 18.36108254042 ], [ -64.922479008475079, 18.361083209662866 ], [ -64.922548745943004, 18.36103224766714 ], [ -64.922587973268662, 18.360951613719863 ], [ -64.922627200594377, 18.360871147410705 ], [ -64.922658716565479, 18.360790345825308 ], [ -64.92270565524575, 18.360717255594523 ], [ -64.92276013764257, 18.360651373803933 ], [ -64.922822162446209, 18.360593035729835 ], [ -64.922869102436152, 18.360519777860929 ], [ -64.92291604111648, 18.360439311551772 ], [ -64.922978234867912, 18.360380973477675 ], [ -64.923015953450317, 18.360462111649042 ], [ -64.923038416961617, 18.360543248510737 ], [ -64.923060880472917, 18.360624385372432 ], [ -64.923075464991427, 18.36071272936465 ], [ -64.923097928502727, 18.360793867536017 ], [ -64.923151237432535, 18.36086041856953 ], [ -64.92323572705709, 18.36088321735707 ], [ -64.923335807029048, 18.360898641376025 ], [ -64.923396827313468, 18.360972737435645 ], [ -64.923419289515095, 18.36105387429734 ], [ -64.923426163988665, 18.36114221959923 ], [ -64.92348735060159, 18.36120156350222 ], [ -64.923534122953413, 18.361128305633315 ], [ -64.923558095208023, 18.361040295607722 ], [ -64.923558764450945, 18.360951950305832 ], [ -64.923559603951333, 18.360863772642062 ], [ -64.923583408567765, 18.360782969746992 ], [ -64.92358407912036, 18.360694624445102 ], [ -64.923584917311075, 18.360606446781333 ], [ -64.923585586553941, 18.360518101479443 ], [ -64.923586426054328, 18.36042992381573 ], [ -64.923594975599713, 18.36034157851384 ], [ -64.92360335750692, 18.360253402159742 ], [ -64.923627162123353, 18.360172600574344 ], [ -64.923643423023293, 18.360084590548752 ], [ -64.923651803620828, 18.359996245246862 ], [ -64.923713997372261, 18.359937907172764 ], [ -64.923806367299278, 18.359945952494002 ], [ -64.923865877530716, 18.359925837226399 ], [ -64.923896556620775, 18.359933548581012 ], [ -64.923989091566568, 18.359934219133606 ], [ -64.924073916467421, 18.359912761451142 ], [ -64.924143821573466, 18.359854423377044 ], [ -64.924228815422168, 18.359825757254441 ], [ -64.924282124351976, 18.359907060444584 ], [ -64.924327720617441, 18.359980990175757 ], [ -64.924373319502308, 18.360054918597257 ], [ -64.924465688119653, 18.360062965228167 ], [ -64.924543135632462, 18.360019545639204 ], [ -64.924551517539669, 18.359931201646987 ], [ -64.924552355730384, 18.359843022673601 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_523", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.022097624554704, 18.343633256268504 ], [ -65.022096786363988, 18.343720594431886 ], [ -65.022085386970218, 18.343802738432089 ], [ -65.022095445258856, 18.343885047451124 ], [ -65.022132493288666, 18.343962497583334 ], [ -65.022175073377241, 18.344034749623404 ], [ -65.022217485827696, 18.344107000353802 ], [ -65.022227544116333, 18.344189310682509 ], [ -65.022202063118414, 18.344240775592709 ], [ -65.022201392565876, 18.344241781421545 ], [ -65.022146742530936, 18.344243625441152 ], [ -65.022114220730998, 18.344243457802975 ], [ -65.022075999234175, 18.344234740619527 ], [ -65.022034760250733, 18.344209091983487 ], [ -65.021955467408588, 18.344171877625172 ], [ -65.021869971955198, 18.344151424461927 ], [ -65.021784308863573, 18.344164835513482 ], [ -65.021704345468891, 18.344198195504134 ], [ -65.02162723192265, 18.344237087553552 ], [ -65.02155313586303, 18.34428436151012 ], [ -65.021484739500238, 18.344337502801807 ], [ -65.021407793592175, 18.344381926909932 ], [ -65.021330680045935, 18.344429368504677 ], [ -65.0212622836832, 18.34448234346786 ], [ -65.021188187623522, 18.34452693390449 ], [ -65.021116941412345, 18.344574375499235 ], [ -65.021045696510782, 18.344624500613975 ], [ -65.020983166173437, 18.344683172654698 ], [ -65.020917788606937, 18.344739163794827 ], [ -65.020852408421092, 18.344794988606452 ], [ -65.020823239384015, 18.3448110805586 ], [ -65.020780826933617, 18.34473882851853 ], [ -65.020738246845042, 18.34466657647846 ], [ -65.020722825445432, 18.344643274776445 ], [ -65.020795077485502, 18.344594827352807 ], [ -65.02087202208395, 18.344555936613119 ], [ -65.02094913563019, 18.344517044563702 ], [ -65.021020381841367, 18.344469601659284 ], [ -65.021097495387608, 18.344430709609867 ], [ -65.02117745878229, 18.344388967712007 ], [ -65.021328836026328, 18.34427463849778 ], [ -65.021403099724125, 18.344230046751477 ], [ -65.02147434593536, 18.344182606466404 ], [ -65.021551291843423, 18.344140864568544 ], [ -65.021622538054601, 18.344090739453804 ], [ -65.021685067082331, 18.344032067413082 ], [ -65.021759163142008, 18.343987474357107 ], [ -65.021830409353186, 18.343937182913919 ], [ -65.021892938380915, 18.343878509563524 ], [ -65.021955299770468, 18.343819837522801 ], [ -65.022011961463136, 18.343755295527671 ], [ -65.022056720847615, 18.343682374244679 ], [ -65.022096115811451, 18.343606097579539 ], [ -65.022097624554704, 18.343633256268504 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_96", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.893261025010077, 18.358699228926753 ], [ -64.893385077236644, 18.358700233445916 ], [ -64.893467555203472, 18.358733930022538 ], [ -64.893556571057957, 18.358793775530273 ], [ -64.893735608595705, 18.358821603462161 ], [ -64.893824959726487, 18.358835351099685 ], [ -64.89391447849539, 18.358855970591378 ], [ -64.894045236247678, 18.358876756411576 ], [ -64.89413458737846, 18.35889720957482 ], [ -64.894202983741195, 18.358956887444378 ], [ -64.894209186352498, 18.359042550536003 ], [ -64.894184711183527, 18.359062333146653 ], [ -64.89416358877736, 18.359090496354838 ], [ -64.894112962057875, 18.359157719250561 ], [ -64.89406233533839, 18.359228965461796 ], [ -64.89400768530345, 18.359296019409726 ], [ -64.893948844314878, 18.359359220299666 ], [ -64.893881789057275, 18.359414373249024 ], [ -64.893810542846097, 18.359465501573311 ], [ -64.89374751090395, 18.359524511509676 ], [ -64.89370107513804, 18.359595756411181 ], [ -64.8936464251031, 18.359662980616577 ], [ -64.893591607430039, 18.359730034564507 ], [ -64.893528575487892, 18.359789212139049 ], [ -64.89346973449932, 18.359852410409644 ], [ -64.893410893510804, 18.359915442351792 ], [ -64.893356243475864, 18.359982666557187 ], [ -64.893289188218262, 18.360037819506601 ], [ -64.893171841517471, 18.360112418480639 ], [ -64.893139319717534, 18.360128342794667 ], [ -64.893096908576752, 18.360119459282714 ], [ -64.892993977446679, 18.360072520602387 ], [ -64.892925581083944, 18.360019379310756 ], [ -64.892857017083031, 18.359966070380949 ], [ -64.892788620720296, 18.359912927779646 ], [ -64.892685858538016, 18.359839671220357 ], [ -64.892624336648794, 18.359779990731454 ], [ -64.892500618388851, 18.359739591248399 ], [ -64.892453010465658, 18.359666836293911 ], [ -64.892405567561241, 18.359593912391574 ], [ -64.892350917526301, 18.359527696634359 ], [ -64.892388637418378, 18.359451924193309 ], [ -64.892429373487346, 18.359418564202656 ], [ -64.892488214475918, 18.359355364622331 ], [ -64.892534648932099, 18.359284286049274 ], [ -64.892585108013463, 18.359217063153551 ], [ -64.892635734732949, 18.359145815632701 ], [ -64.892682170498801, 18.359074738369316 ], [ -64.892728607574384, 18.359003492158081 ], [ -64.892799852475889, 18.358952362524178 ], [ -64.892875122002579, 18.358906932587161 ], [ -64.892879312956154, 18.358906932587161 ], [ -64.892950559167389, 18.358859826268713 ], [ -64.893017614424991, 18.358804673319298 ], [ -64.893093051589744, 18.358761421368513 ], [ -64.893148204539159, 18.358734265298835 ], [ -64.893261025010077, 18.358699228926753 ] ], [ [ -64.892526267024891, 18.359611683344554 ], [ -64.892593323592166, 18.359666164431644 ], [ -64.892668927085424, 18.359623753290919 ], [ -64.892725756416269, 18.359559546572086 ], [ -64.892775209668741, 18.359488300360852 ], [ -64.892832206637706, 18.359420574550711 ], [ -64.892889035968551, 18.359356538089344 ], [ -64.892942178569854, 18.359288812279203 ], [ -64.892987942473496, 18.359217398429848 ], [ -64.893048459843442, 18.359157047388351 ], [ -64.893109144851621, 18.359096531328021 ], [ -64.893173517898902, 18.359039701997176 ], [ -64.893245267024497, 18.358990081106583 ], [ -64.893302096355342, 18.358922355296386 ], [ -64.893362781363464, 18.358861836616768 ], [ -64.893288014751249, 18.358818252008973 ], [ -64.893201681107087, 18.358828310297611 ], [ -64.893133620020592, 18.358881619227418 ], [ -64.893065558934154, 18.358934760519048 ], [ -64.893001185886874, 18.358991588540221 ], [ -64.892970508106487, 18.359001648138531 ], [ -64.892971011020961, 18.359002151052948 ], [ -64.892899261895309, 18.359051770633869 ], [ -64.892834888848029, 18.359108601274386 ], [ -64.892789123634714, 18.359180015123741 ], [ -64.892735983652699, 18.359251261334919 ], [ -64.892679153012239, 18.359315299105958 ], [ -64.892633387798924, 18.359386711645584 ], [ -64.892587791533401, 18.359458125494939 ], [ -64.892542025010471, 18.359529371706174 ], [ -64.892526267024891, 18.359611683344554 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_877", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.861276845840564, 18.343014336240856 ], [ -64.861252370671536, 18.343077869787749 ], [ -64.861218340128289, 18.343155152281838 ], [ -64.861174083658284, 18.343050712408456 ], [ -64.861150614318149, 18.342966222783843 ], [ -64.861127312616134, 18.342881565521168 ], [ -64.861096299559449, 18.342750807768823 ], [ -64.861089091119254, 18.34266631945394 ], [ -64.861066459969834, 18.342505051559385 ], [ -64.861059083891519, 18.342420560625158 ], [ -64.861060089720354, 18.342313104574828 ], [ -64.861060927911069, 18.342228616259945 ], [ -64.861077691725484, 18.342136750557017 ], [ -64.861054390023469, 18.342052093294285 ], [ -64.861055228214184, 18.341967602360057 ], [ -64.860992531548334, 18.34178286643504 ], [ -64.860961015577288, 18.34170592052692 ], [ -64.860897313082546, 18.341644062051785 ], [ -64.860841657218714, 18.341574492222037 ], [ -64.860769908093118, 18.341520177463394 ], [ -64.860497831385374, 18.341395119407991 ], [ -64.86038551382893, 18.341371147153382 ], [ -64.860305382796071, 18.341332255103964 ], [ -64.860121148475798, 18.341269223161817 ], [ -64.860032803173908, 18.341268552609279 ], [ -64.859936243602988, 18.341275424463504 ], [ -64.859848736491813, 18.341268217332981 ], [ -64.859931382096818, 18.341234354427854 ], [ -64.860003969413185, 18.341185739366097 ], [ -64.860081585873843, 18.341147014954856 ], [ -64.860133721336638, 18.341078618592121 ], [ -64.860165237307683, 18.341000163940691 ], [ -64.860176301425213, 18.340916680144971 ], [ -64.860218210961193, 18.340843254637946 ], [ -64.860249894570416, 18.340764799986516 ], [ -64.860296833250743, 18.340691374479434 ], [ -64.860343939569191, 18.340613087466238 ], [ -64.860385849105228, 18.340539494320979 ], [ -64.860427758641208, 18.340466068813896 ], [ -64.860479894104003, 18.340397672451161 ], [ -64.860567568853298, 18.340383590847068 ], [ -64.860665134253111, 18.340413933351158 ], [ -64.860736715740586, 18.340463721879928 ], [ -64.860818858431173, 18.340503787396301 ], [ -64.860895804339236, 18.340543685274611 ], [ -64.860956992261833, 18.340603364453841 ], [ -64.861002757475092, 18.340677460513518 ], [ -64.861033602893599, 18.340689530459883 ], [ -64.861084900165679, 18.340714508543329 ], [ -64.861172239638677, 18.340729931252554 ], [ -64.861259746749852, 18.340735630949496 ], [ -64.861347421499204, 18.340731439995864 ], [ -64.861435096248499, 18.340722387536118 ], [ -64.861522770997794, 18.340708305932026 ], [ -64.861610445747147, 18.340684332367744 ], [ -64.861698288134562, 18.340660529060983 ], [ -64.861780430825149, 18.340695565433066 ], [ -64.861857376733212, 18.340735630949496 ], [ -64.8619395194238, 18.340770667321578 ], [ -64.86202166211433, 18.340800842187491 ], [ -64.862109001587385, 18.340811403390546 ], [ -64.862191144277915, 18.340846607400806 ], [ -64.862268090186035, 18.340886505279059 ], [ -64.862329445746752, 18.340946016820169 ], [ -64.862328607556037, 18.341029668254066 ], [ -64.862302120729282, 18.341113152049786 ], [ -64.86227043712006, 18.341191605391487 ], [ -64.8622286952222, 18.341265032208241 ], [ -64.862156107905832, 18.341313647269999 ], [ -64.86209374651628, 18.341372152982217 ], [ -64.862021159199912, 18.341420768044031 ], [ -64.861948571883545, 18.341469383105789 ], [ -64.861927281839257, 18.34155286559178 ], [ -64.861895598230092, 18.341636183059052 ], [ -64.861879337330095, 18.341724528360942 ], [ -64.861868273212565, 18.34180817848511 ], [ -64.86183675724152, 18.341886634446155 ], [ -64.861794847705539, 18.341960058643565 ], [ -64.861752938169502, 18.34203348546032 ], [ -64.861711028633522, 18.34210690965773 ], [ -64.861669119097542, 18.342180336474485 ], [ -64.8616119544904, 18.34224387133105 ], [ -64.861565015810072, 18.34231729552846 ], [ -64.861512880347334, 18.342385693200868 ], [ -64.861450518957724, 18.34244419760347 ], [ -64.861398215856809, 18.342517624420168 ], [ -64.861351277176482, 18.342591048617578 ], [ -64.861319593567259, 18.34266950457868 ], [ -64.861298303522972, 18.342752819426551 ], [ -64.861292436187966, 18.342836472170063 ], [ -64.861286568852904, 18.34292012360396 ], [ -64.861270307952964, 18.343003607399623 ], [ -64.861276845840564, 18.343014336240856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1147", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.945024658532645, 18.322191502079534 ], [ -64.944937319059591, 18.322176917561023 ], [ -64.944846291547435, 18.322169373844531 ], [ -64.944784935986718, 18.322109694665244 ], [ -64.94472341278788, 18.322050015486013 ], [ -64.944882836662828, 18.322084381305501 ], [ -64.944973864174983, 18.322088572259133 ], [ -64.945064891687196, 18.322089242811728 ], [ -64.945152398798371, 18.322082872562248 ], [ -64.945239905909546, 18.322066276385954 ], [ -64.945323892619683, 18.322045992170558 ], [ -64.945407879329821, 18.322018834791209 ], [ -64.945488345638921, 18.321988157010878 ], [ -64.945565123908864, 18.321946918027436 ], [ -64.945642069816984, 18.321905846682171 ], [ -64.945715327685889, 18.321857734534831 ], [ -64.945785065153814, 18.32180610198651 ], [ -64.945861843423756, 18.321764863003068 ], [ -64.945927892852524, 18.32170971005371 ], [ -64.945986733841039, 18.321647516302278 ], [ -64.946041886790397, 18.321581802149808 ], [ -64.946097207377932, 18.321516087997338 ], [ -64.946148672288132, 18.321447021082065 ], [ -64.946158898214946, 18.321530504877728 ], [ -64.946147331182999, 18.321613988673448 ], [ -64.946113803554169, 18.321690264028973 ], [ -64.946090334214034, 18.321744075873198 ], [ -64.946089831299616, 18.321745249340211 ], [ -64.946004000569872, 18.321758995668006 ], [ -64.945941639180319, 18.321817669018401 ], [ -64.945919008030842, 18.321897464774963 ], [ -64.945910961399932, 18.321980948570683 ], [ -64.945866704929927, 18.322053703525171 ], [ -64.945822280821801, 18.322126458479659 ], [ -64.945734941348746, 18.322129308328101 ], [ -64.945647434237571, 18.322128470137386 ], [ -64.945581384808861, 18.322183790724921 ], [ -64.945540648739836, 18.322259898442269 ], [ -64.945518185228593, 18.322339861837008 ], [ -64.945444927359631, 18.322384453583311 ], [ -64.945387092199951, 18.322321421641163 ], [ -64.945340321157801, 18.322251348896941 ], [ -64.945267901479554, 18.322205583683626 ], [ -64.945184250045713, 18.322180605600181 ], [ -64.945096910572715, 18.322176414646606 ], [ -64.945024658532645, 18.322191502079534 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_557", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.861293274378681, 18.31840187550597 ], [ -64.861285898300309, 18.31848569457793 ], [ -64.861278354583874, 18.318569344702155 ], [ -64.861270810867381, 18.318653163774115 ], [ -64.861256561625112, 18.318736816517685 ], [ -64.861249017908676, 18.318820466641853 ], [ -64.861228063140629, 18.318904119385365 ], [ -64.861186824157244, 18.318981231621933 ], [ -64.861125468596526, 18.319045101754796 ], [ -64.861037961485351, 18.319031523065121 ], [ -64.860957159899954, 18.318998665988943 ], [ -64.860869317512481, 18.319017273822908 ], [ -64.860801256426043, 18.319074773706291 ], [ -64.860713581676748, 18.319074104463368 ], [ -64.860639820893368, 18.319021800052781 ], [ -64.860566060109988, 18.318969664589986 ], [ -64.860512583542061, 18.318898250740688 ], [ -64.860479558827706, 18.318820635589645 ], [ -64.860453407277248, 18.318736647569835 ], [ -64.860436978739131, 18.318719045564706 ], [ -64.860531694290501, 18.318736144655418 ], [ -64.860615848638759, 18.318769169369773 ], [ -64.860674521989154, 18.318834212969648 ], [ -64.860750294430261, 18.318875285624586 ], [ -64.860810141247669, 18.318803033584516 ], [ -64.860886584241314, 18.31876330334444 ], [ -64.860979623411254, 18.318763972587305 ], [ -64.861072662581194, 18.31874854987808 ], [ -64.861124127491394, 18.31867629783801 ], [ -64.861133347589316, 18.318587618569495 ], [ -64.861151117232566, 18.318498936681635 ], [ -64.861168216323222, 18.318474796788905 ], [ -64.861293274378681, 18.31840187550597 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_849", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.841816406875523, 18.320384698163537 ], [ -64.841799810699285, 18.320229465242164 ], [ -64.841732420165386, 18.320097870608777 ], [ -64.841614570550121, 18.319948671350971 ], [ -64.841500408974071, 18.319802993803819 ], [ -64.841396977548925, 18.319671062584518 ], [ -64.841282311748728, 18.319570144421789 ], [ -64.84114199862222, 18.319513818005419 ], [ -64.840987268615322, 18.319474590679761 ], [ -64.840834717904272, 18.319482972586911 ], [ -64.840916022404087, 18.319448606767423 ], [ -64.841004536653827, 18.319428154913851 ], [ -64.841092880646045, 18.319436033906641 ], [ -64.841181225947878, 18.319436704459179 ], [ -64.841269738887945, 18.319423293407681 ], [ -64.841358251827955, 18.319417090796321 ], [ -64.841446429491725, 18.319424803460663 ], [ -64.841482640640493, 18.319502418611648 ], [ -64.84152605761011, 18.319580202710426 ], [ -64.841577019605893, 18.319650946007243 ], [ -64.841613061806868, 18.319728730106021 ], [ -64.841656647724278, 18.319806346566736 ], [ -64.84170744208194, 18.319884130665514 ], [ -64.84175086036123, 18.319961914764349 ], [ -64.841787071509998, 18.320039531225007 ], [ -64.841808695520911, 18.320081943675461 ], [ -64.841849934504296, 18.320151848781506 ], [ -64.841874409673323, 18.320236338406062 ], [ -64.841873571482608, 18.320320492754377 ], [ -64.841872900930071, 18.320404647102634 ], [ -64.84181506577039, 18.320524508375627 ], [ -64.841816406875523, 18.320384698163537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1137", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.89677606161348, 18.360522292433075 ], [ -64.896704983040422, 18.360510391434502 ], [ -64.896574057649957, 18.360509216657817 ], [ -64.896484371242877, 18.360515085302552 ], [ -64.896394684835855, 18.360520952637557 ], [ -64.896304998428832, 18.360526818662947 ], [ -64.896215478350257, 18.360526149420025 ], [ -64.896056893975697, 18.360538050418597 ], [ -64.895960166766599, 18.36055699352886 ], [ -64.895863439557502, 18.360575936639123 ], [ -64.895683899105279, 18.360620528385425 ], [ -64.895594212698256, 18.360639640443537 ], [ -64.895462784393374, 18.360691271682242 ], [ -64.895379803512071, 18.360716921627898 ], [ -64.895296822630769, 18.360749106841922 ], [ -64.895220714913421, 18.36079453677894 ], [ -64.895151312721794, 18.36084667355135 ], [ -64.895151145083673, 18.360853211439007 ], [ -64.895081742892046, 18.36090534559213 ], [ -64.895019213864316, 18.360964018942525 ], [ -64.894956684836643, 18.361029397818641 ], [ -64.894894155808913, 18.361088072478765 ], [ -64.894831626781183, 18.361146744519488 ], [ -64.894782676443128, 18.36121882892138 ], [ -64.894727020579353, 18.361284207797553 ], [ -64.894671364715521, 18.361349586673725 ], [ -64.894608668049671, 18.361414797911721 ], [ -64.894559885349793, 18.361486883623286 ], [ -64.89450406184784, 18.361558800387115 ], [ -64.894455111509785, 18.361630715841216 ], [ -64.894399455645953, 18.361696094717331 ], [ -64.894316474764707, 18.361734986766749 ], [ -64.89428244422146, 18.361822661516101 ], [ -64.894280264925555, 18.361809753378964 ], [ -64.894269033169905, 18.36172509742596 ], [ -64.89425361046068, 18.361640438853556 ], [ -64.894230141120545, 18.36155963857783 ], [ -64.894202816103075, 18.361478835682703 ], [ -64.89421186856282, 18.361460564434708 ], [ -64.894249922421523, 18.361385293598403 ], [ -64.894300549141008, 18.361318239650473 ], [ -64.894359390129523, 18.361255038760476 ], [ -64.89442225443355, 18.361195862495663 ], [ -64.894493500644728, 18.361148757486887 ], [ -64.894564746855963, 18.361097626543256 ], [ -64.894640016382596, 18.361054543540263 ], [ -64.894715453547406, 18.361007438531487 ], [ -64.894794914027671, 18.3609682098961 ], [ -64.894874374507935, 18.360929151518235 ], [ -64.894949811672689, 18.360882043890115 ], [ -64.895020890245746, 18.36083493757161 ], [ -64.895092136456981, 18.36078380924738 ], [ -64.895146954130041, 18.360716586351657 ], [ -64.895209818434068, 18.360657576415292 ], [ -64.895289278914333, 18.360622372405032 ], [ -64.895368739394598, 18.360587168394773 ], [ -64.895448199874807, 18.360552133332362 ], [ -64.895531683670526, 18.36052497464334 ], [ -64.895619358419879, 18.36049781857372 ], [ -64.895702842215542, 18.36047066119437 ], [ -64.895786493649439, 18.360439480499622 ], [ -64.895869977445159, 18.360408298495145 ], [ -64.895961675509909, 18.360393212371832 ], [ -64.896049350259204, 18.3603739326756 ], [ -64.896145239277587, 18.360354823236889 ], [ -64.896233080355387, 18.360315763549352 ], [ -64.896322600433905, 18.360307884556562 ], [ -64.896326120834942, 18.360309224352022 ], [ -64.896391499711115, 18.360334705349942 ], [ -64.896475820387877, 18.360358511276047 ], [ -64.89655595142068, 18.360393715286307 ], [ -64.896623846178727, 18.360448028735277 ], [ -64.896708168165105, 18.360467977674432 ], [ -64.89677606161348, 18.360522292433075 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_644", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.969727643865326, 18.335267108363723 ], [ -64.969700318847856, 18.335351430350158 ], [ -64.969698810104546, 18.335537842656606 ], [ -64.969680872823119, 18.335882003766244 ], [ -64.969668299962336, 18.335955933497416 ], [ -64.969293628710489, 18.336006726545406 ], [ -64.968894483599286, 18.336068752658662 ], [ -64.968543950930496, 18.336112507523922 ], [ -64.968053609359345, 18.336145867514574 ], [ -64.967168313630509, 18.336194816542957 ], [ -64.966458198452528, 18.336235721559774 ], [ -64.965992164412228, 18.336148716053344 ], [ -64.96546795993595, 18.336042433470027 ], [ -64.965148106357162, 18.335928608479946 ], [ -64.964838311067069, 18.335749738580319 ], [ -64.964354507383518, 18.335476822372186 ], [ -64.963996767584206, 18.335232573596386 ], [ -64.96375486574243, 18.335105168606958 ], [ -64.963606673623133, 18.334860250588235 ], [ -64.963457978589361, 18.334701329627705 ], [ -64.963325209179345, 18.334413493624822 ], [ -64.963281958538175, 18.334197912281297 ], [ -64.96329218446499, 18.334028430117712 ], [ -64.963560237857223, 18.334506197518408 ], [ -64.963613043872556, 18.334574595190873 ], [ -64.963656797428143, 18.334651373460815 ], [ -64.963700550983731, 18.334728150421086 ], [ -64.963753356999121, 18.334796546783821 ], [ -64.963815215474256, 18.334856393601228 ], [ -64.963894843592641, 18.334908027459278 ], [ -64.963965586889401, 18.334959492369478 ], [ -64.964027277726416, 18.33501950551539 ], [ -64.964080083741749, 18.335087735549621 ], [ -64.964150659400389, 18.335147748695533 ], [ -64.964221402697149, 18.335207764460733 ], [ -64.964292145993909, 18.335259395699438 ], [ -64.964353836830924, 18.335319242516846 ], [ -64.964460119414184, 18.335371042703343 ], [ -64.964539915170747, 18.335414125706336 ], [ -64.964619543289132, 18.335448660473673 ], [ -64.964699339045694, 18.335491743476666 ], [ -64.964778967164079, 18.335534826479716 ], [ -64.964858595282521, 18.335577909482708 ], [ -64.964938391039027, 18.335620992485701 ], [ -64.965018186795589, 18.335655524633694 ], [ -64.965106867373777, 18.335673295586616 ], [ -64.965186663130282, 18.335707827734609 ], [ -64.965301998173402, 18.335742696468571 ], [ -64.965381793929907, 18.335777229926236 ], [ -64.965461588376797, 18.335811931022079 ], [ -64.965541216495183, 18.335846464479744 ], [ -64.965621013561417, 18.335880997937352 ], [ -64.965709694139605, 18.335907149487866 ], [ -64.96578948989611, 18.335941850583652 ], [ -64.965878170474298, 18.335968003443782 ], [ -64.96595796623086, 18.336011086446774 ], [ -64.966046645499375, 18.336037236687559 ], [ -64.966135327387178, 18.336063389547746 ], [ -64.966224175603543, 18.336072609645669 ], [ -64.966321908641476, 18.336090211650742 ], [ -64.966410755548111, 18.336099430438992 ], [ -64.966499605074091, 18.336108650536914 ], [ -64.966588619618904, 18.336109322399182 ], [ -64.966677469144884, 18.336118542497104 ], [ -64.966766317361248, 18.336127593647177 ], [ -64.966855165577556, 18.3361368137451 ], [ -64.966944181431984, 18.336137485607367 ], [ -64.967033197286469, 18.336129772943082 ], [ -64.967122213140954, 18.336121893950292 ], [ -64.967211227685709, 18.336114014957559 ], [ -64.967300243540194, 18.33610630360289 ], [ -64.967389091756502, 18.336106975465157 ], [ -64.967571649695344, 18.336104962497757 ], [ -64.967776000592835, 18.336088031045222 ], [ -64.968097027638635, 18.336062550047359 ], [ -64.968622908496343, 18.335973701830994 ], [ -64.968984002368188, 18.335818636547799 ], [ -64.969287090822888, 18.335625852682199 ], [ -64.969443832487514, 18.335478498753616 ], [ -64.969727643865326, 18.335267108363723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1058", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": "FLOODWAY", "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.877521314651119, 18.319139984944286 ], [ -64.877420731764687, 18.319232185923511 ], [ -64.877385024840009, 18.319327069113001 ], [ -64.877371110874094, 18.319446930385993 ], [ -64.877348982639091, 18.319546173476908 ], [ -64.877335068673119, 18.319603504412441 ], [ -64.877347809172079, 18.319677097557701 ], [ -64.877350323744224, 18.319769801451343 ], [ -64.877402626845139, 18.319890836191291 ], [ -64.877449900801764, 18.319970129033379 ], [ -64.877501868626382, 18.320023437963187 ], [ -64.877604798446839, 18.320123351606696 ], [ -64.877744105744455, 18.320249078905022 ], [ -64.877860278978289, 18.320365084500679 ], [ -64.877973099449207, 18.320466002663352 ], [ -64.878028420036685, 18.320582343535307 ], [ -64.878134702620002, 18.32070740159071 ], [ -64.878203098982738, 18.320809493220395 ], [ -64.87830368186917, 18.320929522131507 ], [ -64.878377107376195, 18.32099640975099 ], [ -64.878455059113207, 18.321063297370415 ], [ -64.878528484620233, 18.321125658759968 ], [ -64.878638790519005, 18.321201598839195 ], [ -64.878739876319855, 18.321268654096798 ], [ -64.878869292967011, 18.321397232553295 ], [ -64.878938024606043, 18.321475016652073 ], [ -64.878989321878123, 18.321547268692143 ], [ -64.879022681868776, 18.321690934581568 ], [ -64.878999883081178, 18.321797720079303 ], [ -64.878984963286371, 18.321892435630673 ], [ -64.878952273848313, 18.322052027143741 ], [ -64.878925619383381, 18.322187311125958 ], [ -64.878864096184543, 18.322392667852341 ], [ -64.878787820829018, 18.322513199677871 ], [ -64.878688411409655, 18.322609759248849 ], [ -64.878544577882053, 18.322725429568209 ], [ -64.878411137919443, 18.322823497882439 ], [ -64.878257581379557, 18.322891894245174 ], [ -64.878109221622083, 18.322957273121347 ], [ -64.8779422540307, 18.322998176828492 ], [ -64.877872516562775, 18.323010582051097 ], [ -64.877785680004195, 18.323043103851035 ], [ -64.877693646663147, 18.323105632878764 ], [ -64.877608989400414, 18.323173191050785 ], [ -64.877520141184107, 18.32327679142378 ], [ -64.877497174758389, 18.323346193615407 ], [ -64.877495498376902, 18.323432191983272 ], [ -64.877507735961444, 18.32354819757893 ], [ -64.877521482289239, 18.32365699342472 ], [ -64.877553165898462, 18.323737124457523 ], [ -64.877641343562232, 18.323794458012458 ], [ -64.8777176189177, 18.323833013475905 ], [ -64.877828092454649, 18.32385832814532 ], [ -64.877992880750185, 18.32384072614019 ], [ -64.878185999892082, 18.323785237914535 ], [ -64.87829077373209, 18.32376327731771 ], [ -64.87845790896165, 18.323767468271285 ], [ -64.878693272915825, 18.323815077504207 ], [ -64.878852193876298, 18.323906943207078 ], [ -64.878931486718443, 18.323966287110068 ], [ -64.879027543374946, 18.324042059551175 ], [ -64.879119911992291, 18.324106600236576 ], [ -64.879227534371068, 18.324161585547813 ], [ -64.879346726401138, 18.32421489447762 ], [ -64.879518220222451, 18.324319668317628 ], [ -64.879706477858122, 18.324466519331793 ], [ -64.879834050485726, 18.324574143020186 ], [ -64.879958101402622, 18.324688304596293 ], [ -64.880035048620357, 18.324789055120846 ], [ -64.880125573218152, 18.324877065146438 ], [ -64.880232861630304, 18.324984521196711 ], [ -64.880343670443494, 18.325082420563149 ], [ -64.88044106820513, 18.325157522451661 ], [ -64.880528575316305, 18.325216363440177 ], [ -64.880597977507932, 18.325236984241599 ], [ -64.880602168461508, 18.325238325346731 ], [ -64.880358254962005, 18.325544935512141 ], [ -64.880351214159987, 18.325540409282212 ], [ -64.880100427496529, 18.325380650131024 ], [ -64.879988612854504, 18.325305045328037 ], [ -64.879861207865076, 18.325205468270497 ], [ -64.879771353819876, 18.325106057541461 ], [ -64.879690887510776, 18.325015869529636 ], [ -64.879628861397464, 18.324952668639696 ], [ -64.879598015978956, 18.324898521519174 ], [ -64.879567841113044, 18.324847896109361 ], [ -64.879539342628561, 18.324829454603844 ], [ -64.879480166363749, 18.324793078436301 ], [ -64.879399364778351, 18.324738596039481 ], [ -64.879315210430036, 18.324696183589026 ], [ -64.879184451368076, 18.324635330942783 ], [ -64.879094095718131, 18.324586883519146 ], [ -64.878908352654548, 18.324502226256413 ], [ -64.878800896604275, 18.324461656515894 ], [ -64.878689920152908, 18.324434331498423 ], [ -64.878494454077043, 18.324416395526725 ], [ -64.878366713811317, 18.324407343066923 ], [ -64.878199075667283, 18.324446570392638 ], [ -64.878102516096362, 18.324453946470953 ], [ -64.877992713112008, 18.324450089484003 ], [ -64.877922640367842, 18.324430980045236 ], [ -64.877763887045489, 18.324378006391726 ], [ -64.87762273572821, 18.324309107114573 ], [ -64.877529528920149, 18.324260827329056 ], [ -64.877478734562544, 18.324221263417428 ], [ -64.877397094786375, 18.324144654095278 ], [ -64.877304055616491, 18.324078939942865 ], [ -64.877216716143437, 18.324018590210983 ], [ -64.877158378069339, 18.323919682396365 ], [ -64.877166089423952, 18.323839551363506 ], [ -64.877165418871414, 18.323750033904332 ], [ -64.877164748318819, 18.323663364983872 ], [ -64.877189391125967, 18.323576696063412 ], [ -64.877255608192854, 18.32346622252652 ], [ -64.877306905464934, 18.323375530290605 ], [ -64.877336577416429, 18.323323562465987 ], [ -64.87738988634618, 18.323243934347602 ], [ -64.877409835285334, 18.32316279748585 ], [ -64.877446045124429, 18.323078140223174 ], [ -64.877509915257292, 18.323015778833565 ], [ -64.877631788188012, 18.322949058852259 ], [ -64.877745614487765, 18.322903293638944 ], [ -64.877807305324779, 18.322869263095754 ], [ -64.877952647595635, 18.322805728239132 ], [ -64.878164374571497, 18.322733308560942 ], [ -64.87824584670949, 18.322691063748664 ], [ -64.878300329106253, 18.322637419542559 ], [ -64.878360511199958, 18.322553935746896 ], [ -64.878389344960738, 18.322513534954169 ], [ -64.878457238409055, 18.322444468038839 ], [ -64.87851105025328, 18.322368863235909 ], [ -64.878557988933608, 18.322300969787591 ], [ -64.878602413041733, 18.322218994735181 ], [ -64.878631246802513, 18.322121764611666 ], [ -64.87864264619634, 18.322017996600493 ], [ -64.878649016445763, 18.321909199445031 ], [ -64.878640802176733, 18.321792690934956 ], [ -64.878616327007705, 18.321697472469168 ], [ -64.87854139275737, 18.321638631480653 ], [ -64.878401582545223, 18.321567720545715 ], [ -64.878338382964955, 18.321522458246818 ], [ -64.87826193997131, 18.321464455449018 ], [ -64.878182311852868, 18.32138382150174 ], [ -64.8781060364974, 18.32131291056686 ], [ -64.878071670677855, 18.321250046262833 ], [ -64.8780292582274, 18.321209980746403 ], [ -64.877965555732715, 18.321135717048605 ], [ -64.877928340064727, 18.321115935747628 ], [ -64.877857596767967, 18.321062123903403 ], [ -64.877785177089777, 18.320996074474692 ], [ -64.877706051885809, 18.320942597906765 ], [ -64.877631117635417, 18.320903873495467 ], [ -64.877578479258204, 18.320848552907933 ], [ -64.877510418171767, 18.32079725563591 ], [ -64.877444536381176, 18.320739755752527 ], [ -64.877365243539032, 18.320684099888695 ], [ -64.877264157738182, 18.320602963027 ], [ -64.877144464103367, 18.320507912199332 ], [ -64.877074558997322, 18.320439851112894 ], [ -64.876991410477899, 18.320317139991459 ], [ -64.876888648295619, 18.320152351695924 ], [ -64.876813378768986, 18.319917323018046 ], [ -64.876803823394766, 18.319862506654601 ], [ -64.876788233047364, 18.319724371514269 ], [ -64.876792591639116, 18.319618256569129 ], [ -64.876808684900936, 18.319526390866201 ], [ -64.876811870025676, 18.319508453584831 ], [ -64.876840871424633, 18.319382389700536 ], [ -64.876889989400809, 18.319308126002738 ], [ -64.876972970282054, 18.319178876993703 ], [ -64.877027787955171, 18.319095728474281 ], [ -64.877049077999459, 18.319010569606803 ], [ -64.877107751349854, 18.318900766622505 ], [ -64.877173800778564, 18.318794650367693 ], [ -64.877219565991879, 18.31868635743632 ], [ -64.877209004788824, 18.318618797954628 ], [ -64.877179165199209, 18.31854771938157 ], [ -64.877100207633362, 18.318487538597537 ], [ -64.876961235611986, 18.318480831762088 ], [ -64.876876075434836, 18.31848569457793 ], [ -64.876764763707229, 18.318469936592408 ], [ -64.876797285507166, 18.318442611574937 ], [ -64.876887642466784, 18.318421824445068 ], [ -64.876977664150104, 18.318429703437857 ], [ -64.877023429363419, 18.318437413482798 ], [ -64.877110433560176, 18.318447639409612 ], [ -64.877196599566162, 18.318464404533643 ], [ -64.877280251, 18.318490219498187 ], [ -64.877349317915332, 18.318541181493913 ], [ -64.877346132790649, 18.318625838756645 ], [ -64.877371781426632, 18.318706137427625 ], [ -64.877390221622477, 18.31878878303263 ], [ -64.877377481123574, 18.318871093361338 ], [ -64.877369602130784, 18.318953403690045 ], [ -64.877356861631824, 18.319035714018753 ], [ -64.877372954893644, 18.319118191985581 ], [ -64.877456606327542, 18.319139482029868 ], [ -64.877521314651119, 18.319139984944286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_322", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.877473705418197, 18.309739509691042 ], [ -64.877446548038904, 18.309879990455727 ], [ -64.877358705651432, 18.310003373439372 ], [ -64.877148822695119, 18.310233371663287 ], [ -64.877025273383026, 18.31048885350441 ], [ -64.876936089890421, 18.310769478447753 ], [ -64.876854785390549, 18.31114113352271 ], [ -64.876790915257686, 18.311512953616386 ], [ -64.876806337966968, 18.311728200993286 ], [ -64.876882445684316, 18.311927355108367 ], [ -64.877053604229332, 18.312168754035724 ], [ -64.877217051419734, 18.312302529274632 ], [ -64.877415032067802, 18.312444686420747 ], [ -64.877535396255212, 18.312450050841392 ], [ -64.877361555499874, 18.312607295420435 ], [ -64.877239179654737, 18.312730509456287 ], [ -64.877081599799396, 18.312911223375522 ], [ -64.876958721039841, 18.313092272571055 ], [ -64.876914129293539, 18.31324079996665 ], [ -64.876930222555359, 18.313381616007575 ], [ -64.877032314185044, 18.313465435079593 ], [ -64.877112780494201, 18.31350130964239 ], [ -64.877200958157914, 18.313509020997003 ], [ -64.877289303459804, 18.313502650747523 ], [ -64.877377481123574, 18.3134962804981 ], [ -64.877465658787287, 18.313504159490833 ], [ -64.877553836451057, 18.313511870845446 ], [ -64.877641846476649, 18.313526623002133 ], [ -64.877722480423927, 18.31356232992681 ], [ -64.877780650859847, 18.313626032421553 ], [ -64.877838988934002, 18.313689734916238 ], [ -64.877889615653487, 18.313774392178971 ], [ -64.877925657854405, 18.313851841001508 ], [ -64.877917611223495, 18.313935995349766 ], [ -64.877880227917387, 18.314012941257886 ], [ -64.877820716376277, 18.314075637923736 ], [ -64.877790709148485, 18.314159792272051 ], [ -64.877811999192772, 18.314244114258486 ], [ -64.877848041393747, 18.314321730719143 ], [ -64.877847203203032, 18.314405885067401 ], [ -64.877780650859847, 18.314461540931234 ], [ -64.877743099915619, 18.314538486839353 ], [ -64.877771766038222, 18.314630017265927 ], [ -64.8778299364742, 18.314693719760669 ], [ -64.8779104027833, 18.314736467487364 ], [ -64.877961364779082, 18.314807043146004 ], [ -64.877990030901742, 18.314891532770616 ], [ -64.877996568789342, 18.314975853447322 ], [ -64.878039987068632, 18.315053471217709 ], [ -64.878113077299417, 18.315103258436807 ], [ -64.878208128127085, 18.315153215913369 ], [ -64.878288762074305, 18.315188922838047 ], [ -64.878290270817615, 18.315190096305059 ], [ -64.878291947199045, 18.315191102133895 ], [ -64.878293455942355, 18.315192275600907 ], [ -64.878295132323785, 18.31519344906792 ], [ -64.878296641067095, 18.315194622534932 ], [ -64.878298317448525, 18.315195628363824 ], [ -64.878299826191835, 18.315196801830837 ], [ -64.878301502573265, 18.315197975297849 ], [ -64.878303011316575, 18.315199147455132 ], [ -64.878304687698005, 18.315200322231817 ], [ -64.878306196441315, 18.315201494389157 ], [ -64.878307705184625, 18.315202669165842 ], [ -64.878309381566055, 18.315203842632855 ], [ -64.878310890309365, 18.315205016099867 ], [ -64.878312399052618, 18.315206189566879 ], [ -64.878314075434105, 18.315207363033892 ], [ -64.878315584177358, 18.315208536500904 ], [ -64.878317092920668, 18.315209709967917 ], [ -64.878318601663977, 18.315210883434929 ], [ -64.878320278045408, 18.315212056901942 ], [ -64.878321786788717, 18.315213230368954 ], [ -64.87832329553197, 18.31521440383591 ], [ -64.87832480427528, 18.315215577302922 ], [ -64.87832631301859, 18.315216749460262 ], [ -64.8783278217619, 18.315218091875124 ], [ -64.87832949814333, 18.315219265342137 ], [ -64.87833100688664, 18.315220438809092 ], [ -64.878332515629893, 18.315221612276105 ], [ -64.878334024373203, 18.315222953381294 ], [ -64.878335533116513, 18.315224126848307 ], [ -64.878337041859822, 18.315225300315319 ], [ -64.878338550603075, 18.315226472472602 ], [ -64.878340059346385, 18.315227814887464 ], [ -64.878341568089695, 18.315228988354477 ], [ -64.878343076833005, 18.315230329459609 ], [ -64.878344585576258, 18.315231502926622 ], [ -64.878346094319568, 18.315232676393634 ], [ -64.878347603062878, 18.315234017498767 ], [ -64.878349111806187, 18.31523519096578 ], [ -64.87835045291132, 18.315236532070969 ], [ -64.87835196165463, 18.315237705537925 ], [ -64.87835347039794, 18.315239046643114 ], [ -64.878354979141193, 18.315240386438575 ], [ -64.878356487884503, 18.315241561215259 ], [ -64.878357996627813, 18.315242902320392 ], [ -64.878359337732945, 18.315244074477732 ], [ -64.878360846476255, 18.315245416892594 ], [ -64.878362355219565, 18.315246757997727 ], [ -64.878363863962818, 18.315247931464739 ], [ -64.878365205068008, 18.315249272569872 ], [ -64.878366713811317, 18.315250612365389 ], [ -64.87836822255457, 18.315251787142074 ], [ -64.87836956365976, 18.315253128247207 ], [ -64.878371072403013, 18.31525446935234 ], [ -64.878372413508202, 18.315255810457529 ], [ -64.878373922251512, 18.315256983924485 ], [ -64.878375263356645, 18.315258325029674 ], [ -64.878376772099955, 18.315259666134807 ], [ -64.878378280843208, 18.31526100723994 ], [ -64.878379621948397, 18.315262348345129 ], [ -64.87838113069165, 18.315263689450262 ], [ -64.87838247179684, 18.315265030555395 ], [ -64.878383812901973, 18.315266370350912 ], [ -64.878385321645283, 18.315267711456045 ], [ -64.878386662750415, 18.315269053870907 ], [ -64.878388171493725, 18.315270394976039 ], [ -64.878389512598858, 18.315271736081172 ], [ -64.878390853704047, 18.315273077186362 ], [ -64.8783923624473, 18.315274418291494 ], [ -64.87839370355249, 18.315275759396627 ], [ -64.878395044657623, 18.315277100501817 ], [ -64.878396553400933, 18.315278441606949 ], [ -64.878397894506065, 18.31527978140241 ], [ -64.878399235611255, 18.315281123817272 ], [ -64.878400576716388, 18.315282464922404 ], [ -64.87840191782152, 18.315283806027537 ], [ -64.87840342656483, 18.315285313461175 ], [ -64.878404767669963, 18.31528665587598 ], [ -64.878406108775152, 18.315287996981169 ], [ -64.878407449880285, 18.315289338086302 ], [ -64.878408790985418, 18.315290846829612 ], [ -64.878410132090607, 18.315292187934745 ], [ -64.87841147319574, 18.315293529039877 ], [ -64.878412814300873, 18.315294870145067 ], [ -64.878414155406062, 18.315296378888377 ], [ -64.878415496511195, 18.315297719993509 ], [ -64.878416837616328, 18.315299227427147 ], [ -64.878418178721518, 18.315300569841952 ], [ -64.87841951982665, 18.315301910947085 ], [ -64.878420860931783, 18.315303418380722 ], [ -64.878422202036973, 18.315304759485855 ], [ -64.878423543142105, 18.315306269538837 ], [ -64.878424884247238, 18.315307610644027 ], [ -64.87842605771425, 18.31530911938728 ], [ -64.87842739881944, 18.315310460492469 ], [ -64.878428739924573, 18.315311969235722 ], [ -64.878430081029705, 18.315313310340912 ], [ -64.878431254496718, 18.315314819084165 ], [ -64.878432595601907, 18.315316160189354 ], [ -64.87843393670704, 18.315317668932664 ], [ -64.878435277812173, 18.315319176366245 ], [ -64.878436451279185, 18.315320517471434 ], [ -64.878437792384375, 18.31532202752436 ], [ -64.878438965851331, 18.31532353626767 ], [ -64.87844030695652, 18.315324877372802 ], [ -64.878441648061653, 18.315326386116112 ], [ -64.878442821528665, 18.315327894859422 ], [ -64.878444162633798, 18.315329235964555 ], [ -64.87844533610081, 18.315330743398192 ], [ -64.878446677206, 18.315332253451174 ], [ -64.878447850673012, 18.315333762194484 ], [ -64.878449191778145, 18.315335103299617 ], [ -64.878450365245158, 18.315336612042927 ], [ -64.87845153871217, 18.315338119476507 ], [ -64.878452879817303, 18.31533962952949 ], [ -64.878454053284315, 18.3153411382728 ], [ -64.878455226751328, 18.315342647016109 ], [ -64.87845656785646, 18.31534415444969 ], [ -64.878457741323473, 18.315345664502672 ], [ -64.878458914790485, 18.315347005607862 ], [ -64.878460255895618, 18.315348514351115 ], [ -64.87846142936263, 18.315350023094425 ], [ -64.878462602829643, 18.315351531837734 ], [ -64.878463776296655, 18.315353040581044 ], [ -64.878464949763668, 18.315354549324297 ], [ -64.878466290868857, 18.315356058067607 ], [ -64.878467464335813, 18.315357565501245 ], [ -64.878468637802825, 18.315359075554227 ], [ -64.878469811269838, 18.315360751935657 ], [ -64.87847098473685, 18.315362259369294 ], [ -64.878472158203863, 18.31536376942222 ], [ -64.878473331670875, 18.31536527816553 ], [ -64.878474505137888, 18.315366786908839 ], [ -64.8784756786049, 18.315368295652149 ], [ -64.878476852071913, 18.315369804395402 ], [ -64.878478025538925, 18.315371313138712 ], [ -64.878479199005938, 18.315372989520142 ], [ -64.87848037247295, 18.315374498263452 ], [ -64.878481378301785, 18.315376007006762 ], [ -64.878482551768798, 18.315377514440399 ], [ -64.87848372523581, 18.315379192131502 ], [ -64.878484898702823, 18.315380700874755 ], [ -64.878486072169835, 18.315382209618065 ], [ -64.87848707799867, 18.315383718361375 ], [ -64.878488251465683, 18.315385393433132 ], [ -64.878489424932695, 18.315386903486115 ], [ -64.878490430761588, 18.315388412229424 ], [ -64.8784916042286, 18.315390088610854 ], [ -64.878492777695556, 18.315391597354164 ], [ -64.878493783524448, 18.315393272425922 ], [ -64.87849495699146, 18.315394782478904 ], [ -64.878495962820296, 18.315396291222157 ], [ -64.878497136287308, 18.315397967603587 ], [ -64.8784981421162, 18.315399476346897 ], [ -64.878499315583213, 18.315401151418655 ], [ -64.878500321412048, 18.315402661471637 ], [ -64.87850149487906, 18.315404337853067 ], [ -64.878502500707953, 18.315405846596377 ], [ -64.878503674174965, 18.315407522977807 ], [ -64.8785046800038, 18.315409030411445 ], [ -64.878505685832693, 18.315410708102547 ], [ -64.878506859299705, 18.315412216845857 ], [ -64.87850786512854, 18.315413893227287 ], [ -64.878508870957432, 18.315415569608717 ], [ -64.878510044424388, 18.315417078352027 ], [ -64.87851105025328, 18.315418753423785 ], [ -64.878512056082116, 18.315420263476767 ], [ -64.878513061911008, 18.315421939858197 ], [ -64.878514067739843, 18.315423616239627 ], [ -64.878515241206856, 18.315425124982937 ], [ -64.878516247035748, 18.315426801364367 ], [ -64.878517252864583, 18.315428476436125 ], [ -64.878518258693475, 18.315430154127284 ], [ -64.878519264522311, 18.315431662870537 ], [ -64.878520270351203, 18.315433339252024 ], [ -64.878521276180038, 18.315435015633454 ], [ -64.87852228200893, 18.315436692014885 ], [ -64.878523287837766, 18.315438199448522 ], [ -64.878524293666658, 18.315439877139625 ], [ -64.878525299495493, 18.315441553521055 ], [ -64.878526305324385, 18.315443229902485 ], [ -64.8785271435151, 18.315444906283915 ], [ -64.878528149343992, 18.315446415027225 ], [ -64.878529155172828, 18.315448091408655 ], [ -64.87853016100172, 18.315449766480413 ], [ -64.878531166830555, 18.315451444171572 ], [ -64.87853200502127, 18.315453120553002 ], [ -64.878533010850163, 18.315454796934432 ], [ -64.878534016678998, 18.315456473315862 ], [ -64.878534854869713, 18.31545814838762 ], [ -64.878535860698605, 18.315459826078722 ], [ -64.87853686652744, 18.315461502460209 ], [ -64.878537704718156, 18.31546317884164 ], [ -64.878538710547048, 18.31546485522307 ], [ -64.878539548737763, 18.3154665316045 ], [ -64.878540554566598, 18.31546820798593 ], [ -64.87854139275737, 18.315469884367417 ], [ -64.878542398586205, 18.315471559439175 ], [ -64.87854323677692, 18.315473237130277 ], [ -64.878544242605813, 18.315474913511707 ], [ -64.878545080796528, 18.315476589893137 ], [ -64.878545918987243, 18.315478266274567 ], [ -64.878546924816078, 18.315479941346382 ], [ -64.878547763006793, 18.315481619037485 ], [ -64.878548601197508, 18.315483295418915 ], [ -64.8785496070264, 18.315484970490672 ], [ -64.878550445217115, 18.315486648181775 ], [ -64.87855128340783, 18.315488492201382 ], [ -64.878552121598545, 18.315490168582812 ], [ -64.878553127427438, 18.315491844964242 ], [ -64.878553965618153, 18.315493521345672 ], [ -64.878554803808868, 18.315495196417487 ], [ -64.878555641999583, 18.315497040437037 ], [ -64.878556480190298, 18.31549871812814 ], [ -64.878557318381013, 18.31550039450957 ], [ -64.878558156571728, 18.315502070891057 ], [ -64.878558994762443, 18.315503747272487 ], [ -64.878559832953158, 18.315505591292037 ], [ -64.87856067114393, 18.315507266363852 ], [ -64.878561509334645, 18.315508944054955 ], [ -64.87856234752536, 18.315510788074505 ], [ -64.878563185716075, 18.315512464455992 ], [ -64.87856402390679, 18.31551413952775 ], [ -64.878564694459385, 18.315515984856972 ], [ -64.8785655326501, 18.315517661238403 ], [ -64.878566370840815, 18.315519337619889 ], [ -64.87856720903153, 18.31552118163944 ], [ -64.878567879584068, 18.31552285802087 ], [ -64.87856871777484, 18.315524534402357 ], [ -64.878569555965555, 18.315526378421907 ], [ -64.878570226518093, 18.315528053493665 ], [ -64.878571064708808, 18.315529897513272 ], [ -64.878571902899523, 18.315531575204375 ], [ -64.878572573452118, 18.315533251585805 ], [ -64.878573411642833, 18.315535095605412 ], [ -64.878574082195428, 18.315536771986842 ], [ -64.878574920386143, 18.31553861600645 ], [ -64.878575590938738, 18.31554029238788 ], [ -64.878576429129453, 18.31554213640743 ], [ -64.878577099681991, 18.315543811479245 ], [ -64.878577937872706, 18.315545655498795 ], [ -64.8785786084253, 18.315547333189897 ], [ -64.878579278977895, 18.315549177209505 ], [ -64.87858011716861, 18.315550853590935 ], [ -64.878580787721205, 18.315552697610542 ], [ -64.878581458273743, 18.315554373991972 ], [ -64.878582128826338, 18.315556218011523 ], [ -64.878582967017053, 18.31555806203113 ], [ -64.878583637569648, 18.31555973841256 ], [ -64.878584308122186, 18.315561582432167 ], [ -64.87858497867478, 18.315563257503925 ], [ -64.878585649227375, 18.315565101523532 ], [ -64.878586319779913, 18.315566946852755 ], [ -64.878586990332508, 18.315568623234185 ], [ -64.878587660885103, 18.315570467253792 ], [ -64.878588331437641, 18.315572143635222 ], [ -64.878589001990235, 18.31557398765483 ], [ -64.87858967254283, 18.315575830364708 ], [ -64.878590343095368, 18.31557750805581 ], [ -64.878591013647963, 18.315579352075417 ], [ -64.878591684200558, 18.315581196095025 ], [ -64.878592354753096, 18.315583040114575 ], [ -64.87859302530569, 18.315584716496005 ], [ -64.878593695858285, 18.315586560515612 ], [ -64.878594198772703, 18.31558840453522 ], [ -64.878594869325298, 18.31559008091665 ], [ -64.878595539877836, 18.3155919249362 ], [ -64.87859621043043, 18.315593768955807 ], [ -64.878596713344848, 18.315595612975414 ], [ -64.878597383897443, 18.315597289356845 ], [ -64.878598054450038, 18.315599133376395 ], [ -64.878598557364455, 18.315600977396002 ], [ -64.87859922791705, 18.315602821415609 ], [ -64.878599730831468, 18.31560466543516 ], [ -64.878600401384006, 18.315606340506918 ], [ -64.87860090429848, 18.315608184526525 ], [ -64.878601574851018, 18.315610029855748 ], [ -64.878602077765493, 18.315611873875355 ], [ -64.878602748318031, 18.315613717894962 ], [ -64.878603251232505, 18.315615394276392 ], [ -64.878603754146923, 18.315617238295943 ], [ -64.878604424699461, 18.31561908231555 ], [ -64.878604927613935, 18.315620926335157 ], [ -64.878605430528353, 18.315622770354707 ], [ -64.87860593344277, 18.315624614374315 ], [ -64.878606603995365, 18.315626458393865 ], [ -64.878607106909783, 18.315628302413472 ], [ -64.878607609824201, 18.31562997748523 ], [ -64.878608112738675, 18.315631821504837 ], [ -64.878608615653093, 18.315633665524388 ], [ -64.87860911856751, 18.315635509543995 ], [ -64.878609621481928, 18.315637354873274 ], [ -64.878610292034523, 18.315639198892825 ], [ -64.878610794948941, 18.315641042912432 ], [ -64.878611297863415, 18.315642886931983 ], [ -64.878611633139656, 18.31564473095159 ], [ -64.87861213605413, 18.31564657497114 ], [ -64.878612638968548, 18.315648418990747 ], [ -64.878613141882965, 18.315650263010355 ], [ -64.878613644797383, 18.315652107029905 ], [ -64.878614147711858, 18.315653951049512 ], [ -64.878614650626275, 18.315655795069063 ], [ -64.878614985902573, 18.31565763908867 ], [ -64.87861548881699, 18.315659483108277 ], [ -64.878615991731408, 18.315661327127827 ], [ -64.878616494645826, 18.315663171147435 ], [ -64.878616829922123, 18.315665015166985 ], [ -64.878617332836598, 18.315666859186592 ], [ -64.878617835751015, 18.3156687032062 ], [ -64.878618171027313, 18.31567054722575 ], [ -64.87861867394173, 18.315672391245357 ], [ -64.878619009218028, 18.315674235264908 ], [ -64.878619512132445, 18.315676079284515 ], [ -64.878619847408743, 18.315677923304122 ], [ -64.87862035032316, 18.315679767323672 ], [ -64.878620685599458, 18.31568161134328 ], [ -64.878621020875755, 18.31568345536283 ], [ -64.878621523790173, 18.315685299382437 ], [ -64.87862185906647, 18.315687311040165 ], [ -64.878622361980888, 18.315689155059715 ], [ -64.878622697257185, 18.315690999079322 ], [ -64.878623032533483, 18.31569284309893 ], [ -64.87862336780978, 18.31569468711848 ], [ -64.878623870724198, 18.315696531138087 ], [ -64.878624206000495, 18.315698375157638 ], [ -64.878624541276793, 18.315700219177245 ], [ -64.878624876553033, 18.315702063196852 ], [ -64.878625211829331, 18.315704073544907 ], [ -64.878625547105628, 18.31570591887413 ], [ -64.878625882381925, 18.315707762893737 ], [ -64.878626217658223, 18.315709606913288 ], [ -64.87862655293452, 18.315711450932895 ], [ -64.878626888210761, 18.315713294952502 ], [ -64.878627223487058, 18.315715138972053 ], [ -64.878627558763355, 18.31571715062978 ], [ -64.878627894039653, 18.315718994649387 ], [ -64.87862822931595, 18.315720837359265 ], [ -64.878628564592248, 18.315722681378872 ], [ -64.878628732230368, 18.31572452539848 ], [ -64.878629067506665, 18.31572636941803 ], [ -64.878629402782963, 18.31572838238543 ], [ -64.878629738059203, 18.315730226405037 ], [ -64.87862990569738, 18.315732070424588 ], [ -64.878630240973678, 18.315733914444195 ], [ -64.878630576249975, 18.315735758463802 ], [ -64.878630743888095, 18.31573777012153 ], [ -64.878631079164393, 18.31573961414108 ], [ -64.878631246802513, 18.315741458160687 ], [ -64.87863158207881, 18.315743302180238 ], [ -64.878631749716931, 18.315745312528293 ], [ -64.878632084993228, 18.3157471565479 ], [ -64.878632252631405, 18.315749001877123 ], [ -64.878632587907703, 18.31575084589673 ], [ -64.878632755545823, 18.315752689916337 ], [ -64.87863309082212, 18.315754701574065 ], [ -64.878633258460241, 18.315756545593615 ], [ -64.878633426098418, 18.315758389613222 ], [ -64.878633761374658, 18.315760233632773 ], [ -64.878633929012835, 18.3157622452905 ], [ -64.878634096650956, 18.315764089310107 ], [ -64.878634264289133, 18.315765933329715 ], [ -64.878634431927253, 18.315767777349265 ], [ -64.87863476720355, 18.315769789006993 ], [ -64.878634934841671, 18.3157716330266 ], [ -64.878635102479848, 18.31577347704615 ], [ -64.878635270117968, 18.315775321065757 ], [ -64.878635437756145, 18.315777331413813 ], [ -64.878635605394265, 18.31577917543342 ], [ -64.878635773032386, 18.31578101945297 ], [ -64.878635940670563, 18.31578303242037 ], [ -64.878636108308683, 18.315784876439977 ], [ -64.87863627594686, 18.315786720459528 ], [ -64.87863644358498, 18.315788564479135 ], [ -64.87863644358498, 18.315790576136862 ], [ -64.878636611223158, 18.31579242015647 ], [ -64.878636778861278, 18.31579426417602 ], [ -64.878636946499398, 18.315796274524075 ], [ -64.878636946499398, 18.315798118543682 ], [ -64.878637114137575, 18.315799962563233 ], [ -64.878637281775696, 18.315801807892512 ], [ -64.878637449413873, 18.31580381955024 ], [ -64.878637449413873, 18.315805663569847 ], [ -64.878637617051993, 18.315807507589398 ], [ -64.878637617051993, 18.315809519247125 ], [ -64.87863778469017, 18.315811363266732 ], [ -64.87863778469017, 18.315813207286283 ], [ -64.87863795232829, 18.31581521894401 ], [ -64.87863795232829, 18.315817062963617 ], [ -64.878638119966411, 18.315818906983225 ], [ -64.878638119966411, 18.315820751002775 ], [ -64.878638287604588, 18.31582276135083 ], [ -64.878638287604588, 18.315824605370437 ], [ -64.878638287604588, 18.315826449389988 ], [ -64.878638455242708, 18.315828462357388 ], [ -64.878638455242708, 18.315830306376995 ], [ -64.878638455242708, 18.315832150396602 ], [ -64.878638455242708, 18.31583416205433 ], [ -64.878638455242708, 18.31583600607388 ], [ -64.878638622880885, 18.315837850093487 ], [ -64.878638622880885, 18.315839860441542 ], [ -64.878638622880885, 18.315841704461093 ], [ -64.878638622880885, 18.3158435484807 ], [ -64.878638622880885, 18.3158455614481 ], [ -64.878638622880885, 18.31584740546765 ], [ -64.878638622880885, 18.315849249487258 ], [ -64.878638622880885, 18.315851093506865 ], [ -64.878638622880885, 18.315853105164592 ], [ -64.878638622880885, 18.315854949184143 ], [ -64.878638622880885, 18.31585679320375 ], [ -64.878638622880885, 18.315858803551805 ], [ -64.878638455242708, 18.315860647571355 ], [ -64.878638455242708, 18.315862492900635 ], [ -64.878638455242708, 18.315864504558363 ], [ -64.878638455242708, 18.31586634857797 ], [ -64.878638287604588, 18.31586819259752 ], [ -64.878638287604588, 18.315870204255248 ], [ -64.878638287604588, 18.315872048274855 ], [ -64.878638119966411, 18.315873892294405 ], [ -64.878638119966411, 18.315875736314013 ], [ -64.878638119966411, 18.31587774797174 ], [ -64.87863795232829, 18.315879591991347 ], [ -64.87863795232829, 18.315881436010898 ], [ -64.87863778469017, 18.315883446358953 ], [ -64.87863778469017, 18.31588529037856 ], [ -64.878637617051993, 18.31588713439811 ], [ -64.878637617051993, 18.31588914736551 ], [ -64.878637449413873, 18.315890991385118 ], [ -64.878637281775696, 18.315892835404725 ], [ -64.878637281775696, 18.315894679424275 ], [ -64.878637114137575, 18.315896691082003 ], [ -64.878636946499398, 18.31589853510161 ], [ -64.878636946499398, 18.31590037912116 ], [ -64.878636778861278, 18.315902389469215 ], [ -64.878636611223158, 18.315904233488823 ], [ -64.87863644358498, 18.31590607750843 ], [ -64.87863627594686, 18.31590792152798 ], [ -64.878636108308683, 18.31590993449538 ], [ -64.878635940670563, 18.315911778514987 ], [ -64.878635940670563, 18.315913622534538 ], [ -64.878635773032386, 18.315915634192265 ], [ -64.878635605394265, 18.315917478211873 ], [ -64.878635437756145, 18.31591932223148 ], [ -64.878635270117968, 18.31592116625103 ], [ -64.878634934841671, 18.315923177908758 ], [ -64.87863476720355, 18.315925021928365 ], [ -64.87863459956543, 18.315926865947915 ], [ -64.878634431927253, 18.315928709967523 ], [ -64.878634264289133, 18.31593072162525 ], [ -64.878634096650956, 18.315932565644857 ], [ -64.878633761374658, 18.315934408354735 ], [ -64.878633593736538, 18.315936252374343 ], [ -64.878633426098418, 18.315938265341742 ], [ -64.878633258460241, 18.315940109361293 ], [ -64.878632923183943, 18.3159419533809 ], [ -64.878632755545823, 18.31594379740045 ], [ -64.878632420269525, 18.315945809058235 ], [ -64.878632252631405, 18.315947653077785 ], [ -64.878632084993228, 18.315949497097392 ], [ -64.878631749716931, 18.315951341116943 ], [ -64.87863158207881, 18.315953351464998 ], [ -64.878631246802513, 18.315955195484605 ], [ -64.878630911526216, 18.315957039504156 ], [ -64.878630743888095, 18.315958883523763 ], [ -64.878630408611798, 18.31596072754337 ], [ -64.878630240973678, 18.31596274051077 ], [ -64.87862990569738, 18.31596458453032 ], [ -64.878629570421083, 18.315966428549928 ], [ -64.878629235144786, 18.315968272569478 ], [ -64.878629067506665, 18.315970116589085 ], [ -64.878628732230368, 18.315972128246813 ], [ -64.87862839695407, 18.31597397226642 ], [ -64.878628061677773, 18.31597581628597 ], [ -64.878627726401476, 18.315977660305578 ], [ -64.878627558763355, 18.315979504325128 ], [ -64.878627223487058, 18.315981348344735 ], [ -64.878626888210761, 18.315983360002463 ], [ -64.87862655293452, 18.31598520402207 ], [ -64.878626217658223, 18.31598704804162 ], [ -64.878625882381925, 18.315988892061227 ], [ -64.878625547105628, 18.315990736080778 ], [ -64.878625211829331, 18.315992580100385 ], [ -64.878624708914913, 18.315994424119992 ], [ -64.878624373638615, 18.315996434468047 ], [ -64.878624038362318, 18.315998278487598 ], [ -64.878623703086021, 18.316000122507205 ], [ -64.87862336780978, 18.316001966526755 ], [ -64.878622864895306, 18.316003810546363 ], [ -64.878622529619065, 18.316005654565913 ], [ -64.878622194342768, 18.31600749858552 ], [ -64.87862185906647, 18.316009342605128 ], [ -64.878621356152053, 18.31601118793435 ], [ -64.878621020875755, 18.316013199592078 ], [ -64.878620517961338, 18.316015043611685 ], [ -64.87862018268504, 18.316016887631235 ], [ -64.878619847408743, 18.316018731650843 ], [ -64.878619344494325, 18.316020574360778 ], [ -64.878619009218028, 18.316022418380328 ], [ -64.87861850630361, 18.316024262399935 ], [ -64.878618003389136, 18.316026106419486 ], [ -64.878617668112838, 18.316027950439093 ], [ -64.87861716519842, 18.3160297944587 ], [ -64.878616829922123, 18.31603163847825 ], [ -64.878616327007705, 18.316033482497858 ], [ -64.878615824093288, 18.316035326517408 ], [ -64.87861532117887, 18.316037170537015 ], [ -64.878614985902573, 18.316039014556623 ], [ -64.878614482988098, 18.316040858576173 ], [ -64.878613980073681, 18.31604270259578 ], [ -64.878613477159263, 18.316044547925003 ], [ -64.878612974244845, 18.31604639194461 ], [ -64.878612638968548, 18.316048235964217 ], [ -64.87861213605413, 18.316050079983768 ], [ -64.878611633139656, 18.316051924003375 ], [ -64.878611130225238, 18.316053768022925 ], [ -64.87861062731082, 18.316055612042533 ], [ -64.878610124396403, 18.316057456062083 ], [ -64.878609621481928, 18.31605930008169 ], [ -64.87860911856751, 18.316061144101297 ], [ -64.878608448014916, 18.316062988120848 ], [ -64.878607945100498, 18.316064664502278 ], [ -64.87860744218608, 18.316066508521885 ], [ -64.878606939271663, 18.316068352541492 ], [ -64.878606436357188, 18.316070196561043 ], [ -64.87860593344277, 18.31607204058065 ], [ -64.878605262890233, 18.3160738846002 ], [ -64.878604759975758, 18.316075728619808 ], [ -64.87860425706134, 18.316077572639415 ], [ -64.878603586508746, 18.316079249020845 ], [ -64.878603083594328, 18.316081093040395 ], [ -64.87860258067991, 18.316082937060003 ], [ -64.878601910127315, 18.31608478107961 ], [ -64.878601407212898, 18.31608662509916 ], [ -64.878600736660303, 18.316088469118768 ], [ -64.878600233745885, 18.316090145500198 ], [ -64.878599563193291, 18.316091989519748 ], [ -64.878599060278873, 18.316093833539355 ], [ -64.878598389726278, 18.316095677558963 ], [ -64.87859788681186, 18.316097521578513 ], [ -64.878597216259266, 18.316099197959943 ], [ -64.878596545706728, 18.31610104197955 ], [ -64.87859604279231, 18.316102885999157 ], [ -64.878595372239715, 18.316104730018708 ], [ -64.878594701687121, 18.316106406400138 ], [ -64.878594031134583, 18.316108250419745 ], [ -64.878593528220108, 18.316110094439352 ], [ -64.87859285766757, 18.316111938458903 ], [ -64.878592187114975, 18.316113613530661 ], [ -64.878591516562381, 18.316115457550268 ], [ -64.878590846009843, 18.316117301569818 ], [ -64.878590175457248, 18.316118979260978 ], [ -64.878589504904653, 18.316120823280528 ], [ -64.878588834352115, 18.316122667300135 ], [ -64.87858816379952, 18.316124342371893 ], [ -64.878587493246926, 18.3161261863915 ], [ -64.878586822694388, 18.316128030411051 ], [ -64.878586152141793, 18.316129708102153 ], [ -64.878585481589198, 18.31613155212176 ], [ -64.87858481103666, 18.31613322850319 ], [ -64.878584140484065, 18.316135072522798 ], [ -64.878583469931471, 18.316136916542348 ], [ -64.878582799378933, 18.316138591614106 ], [ -64.878581961188218, 18.316140436943385 ], [ -64.878581290635623, 18.316142113324815 ], [ -64.878580620083028, 18.316143957344423 ], [ -64.878579781892313, 18.31614563241618 ], [ -64.878579111339718, 18.316147476435788 ], [ -64.87857844078718, 18.31614915412689 ], [ -64.878577602596465, 18.316150998146441 ], [ -64.87857693204387, 18.316152674527928 ], [ -64.878576261491276, 18.316154518547478 ], [ -64.87857542330056, 18.316156193619236 ], [ -64.878574752748023, 18.316158038948515 ], [ -64.878573914557251, 18.316159715329945 ], [ -64.878573244004713, 18.316161559349553 ], [ -64.878572405813998, 18.31616323442131 ], [ -64.878571567623283, 18.316165078440861 ], [ -64.878570897070688, 18.31616675613202 ], [ -64.878570058879973, 18.31616860015157 ], [ -64.878569388327378, 18.316170276533001 ], [ -64.878568550136663, 18.316171951604815 ], [ -64.878567711945948, 18.316173795624366 ], [ -64.878566873755233, 18.316175473315468 ], [ -64.878566203202638, 18.316177148387226 ], [ -64.878565365011923, 18.316178992406833 ], [ -64.878564526821208, 18.316180670097935 ], [ -64.878563688630493, 18.316182346479366 ], [ -64.878562850439778, 18.316184190498973 ], [ -64.878562179887183, 18.316185865570731 ], [ -64.878561341696468, 18.316187543261833 ], [ -64.878560503505753, 18.31618938728144 ], [ -64.878559665315038, 18.316191062353198 ], [ -64.878558827124323, 18.316192740044301 ], [ -64.878557988933608, 18.316194416425731 ], [ -64.878557150742893, 18.316196260445338 ], [ -64.878556312552178, 18.316197935517096 ], [ -64.878555474361463, 18.316199613208198 ], [ -64.87855446853257, 18.316201289589685 ], [ -64.878553630341855, 18.316203133609235 ], [ -64.87855279215114, 18.316204809990666 ], [ -64.878551953960425, 18.316206486372153 ], [ -64.87855111576971, 18.31620816144391 ], [ -64.878550277578995, 18.316209839135013 ], [ -64.878549271750103, 18.316211515516443 ], [ -64.878548433559388, 18.316213190588201 ], [ -64.878547595368673, 18.316215034607808 ], [ -64.878546589539781, 18.31621671229891 ], [ -64.878545751349066, 18.316218387370668 ], [ -64.87854491315835, 18.316220065061771 ], [ -64.878543907329515, 18.316221741443258 ], [ -64.8785430691388, 18.316223416515015 ], [ -64.878542063309908, 18.316225094206118 ], [ -64.878541225119193, 18.316226770587548 ], [ -64.878540219290358, 18.316228446968978 ], [ -64.878539381099586, 18.316230123350408 ], [ -64.87853837527075, 18.316231798422223 ], [ -64.878537537080035, 18.316233476113325 ], [ -64.878536531251143, 18.316235152494755 ], [ -64.878535693060428, 18.316236827566513 ], [ -64.878534687231593, 18.316238505257616 ], [ -64.8785336814027, 18.316240181639046 ], [ -64.878532843211985, 18.316241858020533 ], [ -64.87853183738315, 18.316243534401963 ], [ -64.878530831554258, 18.31624520947372 ], [ -64.878529825725423, 18.316246719526703 ], [ -64.87852881989653, 18.31624839459846 ], [ -64.878527981705815, 18.316250072289563 ], [ -64.87852697587698, 18.316251747361321 ], [ -64.878525970048088, 18.316253425052423 ], [ -64.878524964219253, 18.31625510143391 ], [ -64.87852395839036, 18.316256610177163 ], [ -64.878522952561525, 18.31625828655865 ], [ -64.878521946732633, 18.316259961630408 ], [ -64.878520940903798, 18.31626163932151 ], [ -64.878519935074905, 18.316263314393268 ], [ -64.87851892924607, 18.31626482444625 ], [ -64.878517923417178, 18.316266499518008 ], [ -64.878516917588342, 18.31626817720911 ], [ -64.87851591175945, 18.316269684642748 ], [ -64.878514905930615, 18.31627136233385 ], [ -64.878513900101723, 18.316273037405608 ], [ -64.878512894272887, 18.31627454745859 ], [ -64.878511720805875, 18.316276222530348 ], [ -64.878510714976983, 18.316277900221451 ], [ -64.878509709148148, 18.31627940896476 ], [ -64.878508703319255, 18.316281085346191 ], [ -64.878507529852243, 18.316282760417948 ], [ -64.878506524023408, 18.316284270470931 ], [ -64.878505518194515, 18.316285945542688 ], [ -64.878504344727503, 18.316287455595671 ], [ -64.878503338898668, 18.316289131977101 ], [ -64.878502333069775, 18.316290639410738 ], [ -64.878501159602763, 18.316292317101841 ], [ -64.878500153773928, 18.316293824535478 ], [ -64.878498980306915, 18.316295502226581 ], [ -64.878497974478023, 18.31629701096989 ], [ -64.878496801011011, 18.31629868735132 ], [ -64.878495795182175, 18.31630019609463 ], [ -64.878494621715163, 18.316301703528268 ], [ -64.878493615886327, 18.31630338121937 ], [ -64.878492442419315, 18.31630488996268 ], [ -64.878491268952303, 18.31630656634411 ], [ -64.87849026312341, 18.316308075087363 ], [ -64.878489089656398, 18.316309582521001 ], [ -64.878487916189385, 18.316311260212103 ], [ -64.87848691036055, 18.316312767645741 ], [ -64.878485736893538, 18.316314276389051 ], [ -64.878484563426525, 18.316315954080153 ], [ -64.878483389959513, 18.31631746151379 ], [ -64.8784822164925, 18.316318971566773 ], [ -64.878481210663665, 18.316320480310026 ], [ -64.878480037196653, 18.31632215538184 ], [ -64.87847886372964, 18.316323665434766 ], [ -64.878477690262628, 18.316325174178075 ], [ -64.878476516795615, 18.316326681611713 ], [ -64.878475343328603, 18.316328190355023 ], [ -64.87847416986159, 18.316329700407948 ], [ -64.878472996394578, 18.316331375479706 ], [ -64.878471822927565, 18.316332885532688 ], [ -64.878470649460553, 18.316334394275998 ], [ -64.878469475993541, 18.316335903019308 ], [ -64.878468302526585, 18.316337410452945 ], [ -64.878467129059572, 18.316338920505871 ], [ -64.87846595559256, 18.31634042924918 ], [ -64.878464782125548, 18.31634193799249 ], [ -64.878463441020358, 18.316343445426128 ], [ -64.878462267553346, 18.316344955479053 ], [ -64.87846109408639, 18.316346464222363 ], [ -64.878459920619377, 18.316347971656 ], [ -64.878458579514188, 18.31634948039931 ], [ -64.878457406047175, 18.316350990452236 ], [ -64.878456232580163, 18.316352499195546 ], [ -64.878455059113207, 18.316354006629183 ], [ -64.878453718008018, 18.316355349043988 ], [ -64.878452544541005, 18.316356856477626 ], [ -64.878451203435873, 18.316358366530608 ], [ -64.87845002996886, 18.316359875273861 ], [ -64.878448856501848, 18.316361384017171 ], [ -64.878447515396715, 18.316362891450808 ], [ -64.878446341929703, 18.316364232555941 ], [ -64.87844500082457, 18.316365742608923 ], [ -64.878443827357557, 18.316367251352233 ], [ -64.878442486252368, 18.316368760095543 ], [ -64.878441312785355, 18.316370101200675 ], [ -64.878439971680223, 18.316371608634313 ], [ -64.87843863057509, 18.316373117377566 ], [ -64.878437457108078, 18.316374458482755 ], [ -64.878436116002888, 18.316375968535738 ], [ -64.878434942535876, 18.316377477278991 ], [ -64.878433601430743, 18.31637881838418 ], [ -64.87843226032561, 18.316380327127433 ], [ -64.87843091922042, 18.316381668232623 ], [ -64.878429745753465, 18.316383176975876 ], [ -64.878428404648275, 18.316384684409513 ], [ -64.878427063543143, 18.316386025514703 ], [ -64.87842572243801, 18.316387535567628 ], [ -64.87842438133282, 18.316388875363145 ], [ -64.878423207865808, 18.316390385416071 ], [ -64.878421866760675, 18.31639172652126 ], [ -64.878420525655542, 18.316393067626393 ], [ -64.878419184550353, 18.316394576369703 ], [ -64.87841784344522, 18.316395917474836 ], [ -64.878416502340087, 18.316397426218145 ], [ -64.878415161234898, 18.316398767323278 ], [ -64.878413820129765, 18.316400108428468 ], [ -64.878412479024632, 18.316401617171721 ], [ -64.878411137919443, 18.31640295827691 ], [ -64.87840979681431, 18.316404299382043 ], [ -64.878408455709177, 18.316405808125353 ], [ -64.878407114603988, 18.316407149230486 ], [ -64.878405773498855, 18.316408490335618 ], [ -64.878404432393666, 18.316409831440808 ], [ -64.878402923650413, 18.316411172545941 ], [ -64.878401582545223, 18.31641268128925 ], [ -64.87840024144009, 18.316414022394383 ], [ -64.878398900334957, 18.316415363499573 ], [ -64.878397559229768, 18.316416704604706 ], [ -64.878396050486515, 18.316418044400166 ], [ -64.878394709381325, 18.316419385505355 ], [ -64.878393368276193, 18.316420726610488 ], [ -64.878391859532883, 18.316422069025293 ], [ -64.87839051842775, 18.316423576458931 ], [ -64.878389177322617, 18.316424917564063 ], [ -64.878387668579308, 18.316426258669253 ], [ -64.878386327474118, 18.316427601084058 ], [ -64.878384986368985, 18.316428942189191 ], [ -64.878383477625675, 18.316430114346531 ], [ -64.878382136520543, 18.31643145545172 ], [ -64.878380627777233, 18.316432796556853 ], [ -64.8783792866721, 18.316434137661986 ], [ -64.87837777792879, 18.316435480076848 ], [ -64.878376436823658, 18.316436821181981 ], [ -64.878374928080348, 18.316438162287113 ], [ -64.878373586975215, 18.316439503392303 ], [ -64.878372078231905, 18.316440675549643 ], [ -64.878370737126772, 18.316442016654776 ], [ -64.878369228383463, 18.316443359069581 ], [ -64.878367719640153, 18.31644470017477 ], [ -64.87836637853502, 18.316445873641783 ], [ -64.87836486979171, 18.316447213437243 ], [ -64.8783633610484, 18.316448554542376 ], [ -64.878362019943268, 18.316449729319061 ], [ -64.878360511199958, 18.31645107042425 ], [ -64.878359002456648, 18.316452411529383 ], [ -64.878357493713395, 18.316453584996395 ], [ -64.878355984970085, 18.316454926101528 ], [ -64.878354643864952, 18.316456099568541 ], [ -64.878353135121642, 18.316457439364001 ], [ -64.878351626378333, 18.316458780469191 ], [ -64.878350117635023, 18.316459955245875 ], [ -64.87834860889177, 18.316461296351008 ], [ -64.87834710014846, 18.316462468508348 ], [ -64.87834559140515, 18.316463643285033 ], [ -64.878344250300017, 18.316464984390166 ], [ -64.878342741556708, 18.316466156547506 ], [ -64.878341232813398, 18.316467497652638 ], [ -64.878339724070088, 18.316468672429323 ], [ -64.878338215326835, 18.316469844586663 ], [ -64.878336706583525, 18.316471187001525 ], [ -64.878335197840215, 18.316472360468538 ], [ -64.878333521458785, 18.316473532625821 ], [ -64.878332012715475, 18.316474875040683 ], [ -64.878330503972165, 18.316476048507695 ], [ -64.878328995228912, 18.316477220665035 ], [ -64.878327486485603, 18.31647839544172 ], [ -64.878325977742293, 18.316479567599004 ], [ -64.878324468998983, 18.316480910013865 ], [ -64.87832296025573, 18.316482083480878 ], [ -64.878321283874243, 18.316483255638218 ], [ -64.87831977513099, 18.316484430414903 ], [ -64.87831826638768, 18.316485602572186 ], [ -64.87831675764437, 18.316486777348871 ], [ -64.87831508126294, 18.316487949506211 ], [ -64.87831357251963, 18.316489124282896 ], [ -64.878312063776377, 18.316490296440236 ], [ -64.878310555033067, 18.316491471216921 ], [ -64.878308878651637, 18.316492643374261 ], [ -64.878307369908327, 18.316493818150946 ], [ -64.878305693526897, 18.316494991617958 ], [ -64.878304184783588, 18.31649616508497 ], [ -64.878302676040278, 18.316497338551983 ], [ -64.878300999658848, 18.316498512018995 ], [ -64.878299490915538, 18.316499685486008 ], [ -64.878297814534108, 18.316500691314843 ], [ -64.878296305790798, 18.316501863472183 ], [ -64.878294629409368, 18.316503038248868 ], [ -64.878293120666058, 18.316504210406208 ], [ -64.878291444284628, 18.316505217544716 ], [ -64.878289935541318, 18.316506391011728 ], [ -64.878288259159888, 18.316507564478741 ], [ -64.878286750416578, 18.316508570307633 ], [ -64.878285074035148, 18.316509742464973 ], [ -64.878283565291895, 18.316510917241658 ], [ -64.878281888910408, 18.316511923070493 ], [ -64.878280212528978, 18.316513096537506 ], [ -64.878278703785668, 18.316514270004518 ], [ -64.878277027404238, 18.316515274523681 ], [ -64.878275351022808, 18.316516449300366 ], [ -64.878273842279498, 18.316517455129258 ], [ -64.878272165898068, 18.31651862859627 ], [ -64.878270489516638, 18.316519634425106 ], [ -64.878268813135207, 18.316520640253998 ], [ -64.878267304391898, 18.316521812411338 ], [ -64.878265628010467, 18.316522819549846 ], [ -64.878263951629037, 18.316523993016858 ], [ -64.878262275247607, 18.316524997536078 ], [ -64.878260766504297, 18.316526003364913 ], [ -64.878259090122867, 18.316527178141598 ], [ -64.87825741374138, 18.316528182660761 ], [ -64.87825573735995, 18.316529188489653 ], [ -64.87825406097852, 18.316530195628218 ], [ -64.87825238459709, 18.316531369095173 ], [ -64.87825070821566, 18.316532373614393 ], [ -64.87824903183423, 18.316533379443229 ], [ -64.878247355452743, 18.316534386581793 ], [ -64.878245679071313, 18.316535392410628 ], [ -64.878244170328003, 18.316536398239521 ], [ -64.878242493946573, 18.316537404068356 ], [ -64.878240817565143, 18.316538577535368 ], [ -64.878239141183712, 18.316539583364261 ], [ -64.878237297164105, 18.316540589193096 ], [ -64.878235620782675, 18.316541595021988 ], [ -64.878233944401245, 18.316542599541151 ], [ -64.878232268019815, 18.316543605370043 ], [ -64.878230591638385, 18.316544443560758 ], [ -64.878228915256898, 18.316545449389594 ], [ -64.878227238875468, 18.316546456528158 ], [ -64.878225562494038, 18.31654746235705 ], [ -64.878223886112607, 18.316548468185886 ], [ -64.878222209731177, 18.316549474014778 ], [ -64.87822036571157, 18.316550478533941 ], [ -64.87821868933014, 18.316551318034328 ], [ -64.87821701294871, 18.316552322553548 ], [ -64.87821533656728, 18.316553328382383 ], [ -64.87821366018585, 18.316554166573098 ], [ -64.878211816166242, 18.316555172401991 ], [ -64.878210139784812, 18.316556179540498 ], [ -64.878208463403382, 18.316557016421541 ], [ -64.878206619383775, 18.316558023560106 ], [ -64.878204943002345, 18.316559029388941 ], [ -64.878203266620915, 18.316559867579656 ], [ -64.878201590239428, 18.316560873408548 ], [ -64.878199746219877, 18.316561711599263 ], [ -64.878198069838447, 18.316562717428098 ], [ -64.878196393457017, 18.31656355561887 ], [ -64.87819454943741, 18.316564561447706 ], [ -64.87819287305598, 18.316565399638421 ], [ -64.878191029036373, 18.316566405467313 ], [ -64.878189352654942, 18.316567242348356 ], [ -64.878187508635335, 18.316568080539071 ], [ -64.878185832253905, 18.316569086367906 ], [ -64.878184155872475, 18.316569924558621 ], [ -64.878182311852868, 18.316570764059065 ], [ -64.878180635471438, 18.316571768578228 ], [ -64.878178791451887, 18.316572608078616 ], [ -64.878177115070457, 18.316573446269331 ], [ -64.87817527105085, 18.316574284460046 ], [ -64.87817359466942, 18.316575122650761 ], [ -64.878171750649813, 18.316576128479653 ], [ -64.878169906630262, 18.316576965360696 ], [ -64.878168230248775, 18.316577803551411 ], [ -64.878166386229225, 18.316578643051798 ], [ -64.878164709847795, 18.316579481242513 ], [ -64.878162865828187, 18.316580319433228 ], [ -64.878161189446757, 18.316581157623943 ], [ -64.87815934542715, 18.316581994504986 ], [ -64.8781575014076, 18.31658283400543 ], [ -64.87815582502617, 18.316583672196145 ], [ -64.878153981006562, 18.316584510386861 ], [ -64.878152136986955, 18.316585348577576 ], [ -64.878150460605525, 18.316586185458618 ], [ -64.878148616585975, 18.316586857320885 ], [ -64.878146772566367, 18.3165876955116 ], [ -64.87814492854676, 18.316588532392643 ], [ -64.87814325216533, 18.316589370583358 ], [ -64.87814140814578, 18.316590042445625 ], [ -64.878139564126172, 18.31659088063634 ], [ -64.878137720106565, 18.316591717517383 ], [ -64.878136043725135, 18.316592557017771 ], [ -64.878134199705585, 18.316593227570308 ], [ -64.878132355685977, 18.316594064451408 ], [ -64.87813051166637, 18.316594736313618 ], [ -64.87812866764682, 18.316595574504333 ], [ -64.878126823627213, 18.316596411385376 ], [ -64.878125147245783, 18.316597083247643 ], [ -64.878123303226232, 18.316597921438358 ], [ -64.878121459206625, 18.316598590681281 ], [ -64.878119615187018, 18.316599430181668 ], [ -64.878117771167467, 18.316600099424591 ], [ -64.87811592714786, 18.316600771286801 ], [ -64.87811408312831, 18.316601609477516 ], [ -64.878112239108702, 18.316602280030111 ], [ -64.878110395089095, 18.316603118220826 ], [ -64.878108551069545, 18.316603787463748 ], [ -64.878106874688115, 18.316604459325958 ], [ -64.878105030668507, 18.316605128568881 ], [ -64.8781031866489, 18.316605968069268 ], [ -64.87810134262935, 18.316606638621863 ], [ -64.878099498609743, 18.316607309174458 ], [ -64.878097654590192, 18.316607978417323 ], [ -64.878095810570585, 18.316608650279591 ], [ -64.878093966550978, 18.316609488470306 ], [ -64.87809195489325, 18.3166101590229 ], [ -64.8780901108737, 18.316610829575438 ], [ -64.878088266854093, 18.316611500128033 ], [ -64.878086422834542, 18.316612169370956 ], [ -64.878084578814935, 18.316612841233166 ], [ -64.878082734795385, 18.316613510476088 ], [ -64.878080890775777, 18.316614182338355 ], [ -64.87807904675617, 18.316614851581221 ], [ -64.87807720273662, 18.316615523443488 ], [ -64.878075358717012, 18.316616026357906 ], [ -64.878073514697462, 18.316616695600828 ], [ -64.878071503039735, 18.316617367463095 ], [ -64.878069659020127, 18.316618038015633 ], [ -64.87806781500052, 18.316618708568228 ], [ -64.87806597098097, 18.316619211482646 ], [ -64.878064126961362, 18.316619882035241 ], [ -64.878062282941812, 18.316620552587779 ], [ -64.878060271284085, 18.316621223140373 ], [ -64.878058427264477, 18.316621726054791 ], [ -64.87805658324487, 18.316622396607386 ], [ -64.87805473922532, 18.316622899521803 ], [ -64.878052727567592, 18.316623570074398 ], [ -64.878050883547985, 18.316624240626993 ], [ -64.878049039528435, 18.316624743541411 ], [ -64.878047195508827, 18.316625414094005 ], [ -64.8780451838511, 18.316625915698751 ], [ -64.878043339831493, 18.316626587561018 ], [ -64.878041495811942, 18.316627090475436 ], [ -64.878039651792335, 18.316627593389853 ], [ -64.878037640134607, 18.316628262632776 ], [ -64.878035796115057, 18.316628765547193 ], [ -64.87803395209545, 18.316629268461611 ], [ -64.878031940437722, 18.316629940323878 ], [ -64.878030096418115, 18.316630443238296 ], [ -64.878028252398565, 18.316630946152713 ], [ -64.878026240740837, 18.316631615395636 ], [ -64.87802439672123, 18.316632119619726 ], [ -64.87802255270168, 18.3166326225342 ], [ -64.878020541043952, 18.316633125448618 ], [ -64.878018697024345, 18.316633628363036 ], [ -64.878016685366617, 18.316634131277453 ], [ -64.87801484134701, 18.316634634191928 ], [ -64.87801299732746, 18.316635137106346 ], [ -64.878010985669732, 18.316635640020763 ], [ -64.878009141650125, 18.316636141625509 ], [ -64.878007129992397, 18.316636644539983 ], [ -64.878005285972847, 18.316637147454401 ], [ -64.87800327431512, 18.316637650368818 ], [ -64.878001430295512, 18.316638154592908 ], [ -64.877999586275962, 18.316638657507383 ], [ -64.877997574618178, 18.316639160421801 ], [ -64.877995730598627, 18.316639663336218 ], [ -64.8779937189409, 18.316640166250636 ], [ -64.877991874921292, 18.316640501526933 ], [ -64.877989863263565, 18.316641004441351 ], [ -64.877988019244015, 18.316641507355826 ], [ -64.877986007586287, 18.316641842632066 ], [ -64.87798416356668, 18.316642345546541 ], [ -64.877982151908952, 18.316642848460958 ], [ -64.877980307889402, 18.316643182427583 ], [ -64.877978296231618, 18.316643686651673 ], [ -64.877976452212067, 18.316644189566091 ], [ -64.87797444055434, 18.316644523532716 ], [ -64.877972428896612, 18.316645026447134 ], [ -64.877970584877005, 18.316645363033103 ], [ -64.877968573219277, 18.316645864637906 ], [ -64.877966729199727, 18.316646201223818 ], [ -64.877964717542, 18.316646536500116 ], [ -64.877962873522392, 18.316647039414534 ], [ -64.877960861864665, 18.316647373381159 ], [ -64.877958850206937, 18.316647877605305 ], [ -64.87795700618733, 18.316648211571874 ], [ -64.877954994529603, 18.316648548157843 ], [ -64.877953150510052, 18.316648883434141 ], [ -64.877951138852325, 18.316649386348558 ], [ -64.877949127194597, 18.316649721624856 ], [ -64.87794728317499, 18.316650055591481 ], [ -64.877945271517262, 18.316650392177451 ], [ -64.877943427497712, 18.316650727453748 ], [ -64.877941415839985, 18.316651061420316 ], [ -64.877939404182257, 18.316651565644463 ], [ -64.87793756016265, 18.316651899611088 ], [ -64.877935548504922, 18.316652236197001 ], [ -64.877933536847195, 18.316652571473298 ], [ -64.877931692827588, 18.316652905439923 ], [ -64.87792968116986, 18.316653242025893 ], [ -64.877927669512133, 18.316653408354341 ], [ -64.877925825492582, 18.316653743630638 ], [ -64.877923813834855, 18.316654080216608 ], [ -64.877921802177127, 18.316654415492906 ], [ -64.87791995815752, 18.316654749459531 ], [ -64.877917946499792, 18.316655086045444 ], [ -64.877915934842065, 18.316655252373948 ], [ -64.877913923184337, 18.316655587650246 ], [ -64.877912079164787, 18.316655924236215 ], [ -64.877910067507059, 18.316656259512456 ], [ -64.877908055849332, 18.316656427150633 ], [ -64.877906211829725, 18.316656762426931 ], [ -64.877904200171997, 18.316657096393499 ], [ -64.87790218851427, 18.316657265341348 ], [ -64.877900176856542, 18.316657600617646 ], [ -64.877898332836935, 18.316657768255766 ], [ -64.877896321179207, 18.316658103532063 ], [ -64.87789430952148, 18.316658271170184 ], [ -64.877892297863752, 18.316658606446481 ], [ -64.877890453844202, 18.316658774084658 ], [ -64.877888442186475, 18.316659109360899 ], [ -64.877886430528747, 18.316659275689403 ], [ -64.87788441887102, 18.316659444637196 ], [ -64.877882574851412, 18.316659778603821 ], [ -64.877880563193685, 18.31665994755167 ], [ -64.877878551535957, 18.316660115189791 ], [ -64.87787653987823, 18.316660281518239 ], [ -64.877874695858679, 18.316660618104208 ], [ -64.877872684200952, 18.316660784432713 ], [ -64.877870672543224, 18.316660953380506 ], [ -64.877868660885497, 18.316661121018626 ], [ -64.877866649227769, 18.316661287347131 ], [ -64.877864805208162, 18.316661456294923 ], [ -64.877862793550435, 18.316661622623428 ], [ -64.877860781892707, 18.316661959209398 ], [ -64.87785877023498, 18.316662125537846 ], [ -64.877856926215372, 18.316662294485639 ], [ -64.877854914557645, 18.316662294485639 ], [ -64.877852902899917, 18.316662462123816 ], [ -64.87785089124219, 18.316662628452264 ], [ -64.877848879584462, 18.316662797400113 ], [ -64.877846867926735, 18.316662965038233 ], [ -64.877845023907184, 18.316663131366681 ], [ -64.877843012249457, 18.316663300314531 ], [ -64.877841000591729, 18.316663300314531 ], [ -64.877838988934002, 18.316663466642979 ], [ -64.877836977276274, 18.316663635590828 ], [ -64.877835133256667, 18.316663803228948 ], [ -64.87783312159894, 18.316663803228948 ], [ -64.877831109941212, 18.316663969557453 ], [ -64.877829098283485, 18.316664138505246 ], [ -64.877827086625757, 18.316664138505246 ], [ -64.87782507496803, 18.316664306143366 ], [ -64.877823230948422, 18.316664306143366 ], [ -64.877821219290695, 18.316664472471871 ], [ -64.877819207632967, 18.316664472471871 ], [ -64.87781719597524, 18.316664641419663 ], [ -64.877815184317512, 18.316664641419663 ], [ -64.877813172659785, 18.316664809057841 ], [ -64.877811328640234, 18.316664809057841 ], [ -64.877809316982507, 18.316664809057841 ], [ -64.877807305324779, 18.316664975386288 ], [ -64.877805293667052, 18.316664975386288 ], [ -64.877803282009324, 18.316664975386288 ], [ -64.877801270351597, 18.316665144334138 ], [ -64.87779942633199, 18.316665144334138 ], [ -64.877797414674262, 18.316665144334138 ], [ -64.877795403016535, 18.316665144334138 ], [ -64.877793391358807, 18.316665144334138 ], [ -64.87779137970108, 18.316665144334138 ], [ -64.877789368043352, 18.316665310662586 ], [ -64.877787524023802, 18.316665310662586 ], [ -64.877785512366017, 18.316665310662586 ], [ -64.87778350070829, 18.316665310662586 ], [ -64.877781489050562, 18.316665310662586 ], [ -64.877779477392835, 18.316665310662586 ], [ -64.877777465735107, 18.316665310662586 ], [ -64.87777545407738, 18.316665310662586 ], [ -64.87777361005783, 18.316665144334138 ], [ -64.877771598400102, 18.316665144334138 ], [ -64.877769586742374, 18.316665144334138 ], [ -64.877767575084647, 18.316665144334138 ], [ -64.877676379934314, 18.316654415492906 ], [ -64.877588034632424, 18.316645195394983 ], [ -64.877499689330534, 18.316631784343429 ], [ -64.877411511666764, 18.316618373291931 ], [ -64.877327692594804, 18.316596580333226 ], [ -64.877234821062984, 18.316587526563751 ], [ -64.877146475761094, 18.316578306465829 ], [ -64.877058130459204, 18.316573278631211 ], [ -64.876969785157314, 18.316572608078616 ], [ -64.876881272217304, 18.316580319433228 ], [ -64.876792759277293, 18.316592220431801 ], [ -64.876704247646899, 18.316595742142511 ], [ -64.876620091988968, 18.316616192686411 ], [ -64.876540296232406, 18.316649386348558 ], [ -64.876460332837723, 18.316682577391418 ], [ -64.876393612856418, 18.316736893459733 ], [ -64.876348685833818, 18.316808307309088 ], [ -64.876286324444266, 18.316866811711691 ], [ -64.876232512600041, 18.316946607468196 ], [ -64.876183226985688, 18.317018022627224 ], [ -64.876142826193018, 18.317093793758659 ], [ -64.876097899170418, 18.317165207608014 ], [ -64.876061856969443, 18.317245003364519 ], [ -64.87603017336022, 18.317325134397379 ], [ -64.87600150854729, 18.317461593156281 ], [ -64.875996813369568, 18.317557648503112 ], [ -64.87573295093091, 18.317495119475382 ], [ -64.87573295093091, 18.317487743397066 ], [ -64.875770837151435, 18.317409960607904 ], [ -64.875808723372018, 18.317332176509069 ], [ -64.875839233514228, 18.317254223462442 ], [ -64.875884495813068, 18.317183649113474 ], [ -64.87591483962683, 18.317105697376519 ], [ -64.875960100616055, 18.317035120408264 ], [ -64.876012906631388, 18.316964544749624 ], [ -64.876065545008601, 18.316893970400656 ], [ -64.87611080861717, 18.316823227103896 ], [ -64.87616344568471, 18.316752651445256 ], [ -64.87623083621861, 18.316696325028886 ], [ -64.876291019621931, 18.316632956500769 ], [ -64.876336112973036, 18.316562214513681 ], [ -64.876396295066741, 18.316491806493218 ], [ -64.876463685600584, 18.316435480076848 ], [ -64.876545829600843, 18.316393570540811 ], [ -64.876627970981701, 18.316358700497233 ], [ -64.876710113672289, 18.316316792270868 ], [ -64.876792256362819, 18.31628896433898 ], [ -64.876867022975091, 18.316246887164823 ], [ -64.876941789587306, 18.316204977628843 ], [ -64.877008174292314, 18.316149320455338 ], [ -64.877069194576734, 18.316079415349293 ], [ -64.877130047223034, 18.316015880492728 ], [ -64.877184361981676, 18.315945809058235 ], [ -64.877231971214542, 18.315875736314013 ], [ -64.877266169395909, 18.315799293320367 ], [ -64.877280251, 18.315716143491272 ], [ -64.877287794716494, 18.315632828643345 ], [ -64.877261643166037, 18.315549512485802 ], [ -64.877222080564081, 18.315472231301385 ], [ -64.877175812436292, 18.315401488004625 ], [ -64.877109260093164, 18.315343317568647 ], [ -64.877049413275756, 18.315278776883247 ], [ -64.876989734096469, 18.315214236197789 ], [ -64.876923181753284, 18.31515606445214 ], [ -64.876870208099831, 18.315085154826932 ], [ -64.876810361282423, 18.315020614141474 ], [ -64.876743808939239, 18.314962442395824 ], [ -64.876684129759951, 18.314897903020039 ], [ -64.876637693994098, 18.314826992085159 ], [ -64.876576841347799, 18.314767815820346 ], [ -64.876524705885004, 18.314698581266839 ], [ -64.876477265599931, 18.314629514351509 ], [ -64.876429822695513, 18.314560279798059 ], [ -64.876372825726548, 18.314495571474481 ], [ -64.876301579515371, 18.314412422955058 ], [ -64.876244582546406, 18.314347882269601 ], [ -64.87618741793932, 18.314283173946023 ], [ -64.876130420970355, 18.314218465622446 ], [ -64.87608297937561, 18.314149231068939 ], [ -64.875993795882948, 18.314048480544386 ], [ -64.875944511578325, 18.313977737247626 ], [ -64.875899750884173, 18.313906993950866 ], [ -64.875865552702805, 18.313832562614948 ], [ -64.875822638647605, 18.313759472384163 ], [ -64.875779889611238, 18.313686382153378 ], [ -64.875742507614802, 18.313608095140125 ], [ -64.875705122999022, 18.31352997576505 ], [ -64.875673104113503, 18.313451688751798 ], [ -64.875630356386807, 18.313378598521012 ], [ -64.875598337501287, 18.31330047914588 ], [ -64.875566487563617, 18.313222359770805 ], [ -64.87553999942719, 18.313139043613205 ], [ -64.875502616121082, 18.313060756599953 ], [ -64.875470598545235, 18.312982637224877 ], [ -64.875433213929455, 18.312904350211625 ], [ -64.875390467512375, 18.31283125998084 ], [ -64.87535861495536, 18.312742747040772 ], [ -64.875321231649252, 18.312664460027577 ], [ -64.875300110552757, 18.312581143869977 ], [ -64.875284518895683, 18.312497827712434 ], [ -64.875263565437365, 18.312414679193012 ], [ -64.87523171288035, 18.312325998614824 ], [ -64.875210759422032, 18.312242682457224 ], [ -64.875189635706192, 18.312159533937802 ], [ -64.875168680938202, 18.312076217780259 ], [ -64.875163987070152, 18.311993069260836 ], [ -64.875153762453067, 18.311909753103237 ], [ -64.875132806375404, 18.311826436945694 ], [ -64.875128112507355, 18.311743288426271 ], [ -64.875123418639305, 18.311660139906849 ], [ -64.875124090501572, 18.311576991387426 ], [ -64.875119396633522, 18.311493842868003 ], [ -64.875114701455857, 18.311410694348581 ], [ -64.875104644476892, 18.311327545829158 ], [ -64.875099950608842, 18.311244398619408 ], [ -64.875097937641442, 18.311161416428433 ], [ -64.875112523469625, 18.311078267909011 ], [ -64.875131632908392, 18.310994951751468 ], [ -64.875159963754697, 18.310916161823798 ], [ -64.875192820830932, 18.310837539534248 ], [ -64.875216457809245, 18.310754223376648 ], [ -64.87524931488548, 18.310675601087155 ], [ -64.875291392059637, 18.310596978797605 ], [ -64.875337995463667, 18.310518356508055 ], [ -64.875384598867697, 18.31044845140201 ], [ -64.8754357285016, 18.310374356652062 ], [ -64.87548233190563, 18.310304451546017 ], [ -64.875538155407583, 18.310239071360172 ], [ -64.875705290637143, 18.310042934731655 ], [ -64.875894386463585, 18.310041090712105 ], [ -64.876103263591006, 18.309935312352877 ], [ -64.876294873989593, 18.30980438565274 ], [ -64.876538619850976, 18.309673964486421 ], [ -64.876825281077231, 18.309585282598562 ], [ -64.877137423301349, 18.309554772456352 ], [ -64.877388209964749, 18.309606406314401 ], [ -64.877473705418197, 18.309739509691042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_110", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.848400730257424, 18.322871610029722 ], [ -64.848393186540932, 18.322955261463619 ], [ -64.848385641514767, 18.32303908053558 ], [ -64.848384972271901, 18.323122731969477 ], [ -64.848384132771457, 18.323206551041437 ], [ -64.848383463528592, 18.323290202475334 ], [ -64.848369214286322, 18.323373853909175 ], [ -64.848368374785935, 18.323457672981192 ], [ -64.848347421327617, 18.323541156776912 ], [ -64.848333170775732, 18.323624808210752 ], [ -64.848332501532809, 18.323708459644592 ], [ -64.848318252290539, 18.323792111078433 ], [ -64.848310708574104, 18.32387576251233 ], [ -64.848296459331834, 18.32395941394617 ], [ -64.848261924564497, 18.32403652749241 ], [ -64.848227558745009, 18.324113473400473 ], [ -64.848146255554809, 18.324157897508655 ], [ -64.848064949745321, 18.324189413479758 ], [ -64.847977276305642, 18.324188742927163 ], [ -64.847902677331604, 18.324239704922945 ], [ -64.847828078357509, 18.324284129031071 ], [ -64.847753479383414, 18.324335091026853 ], [ -64.847672173573926, 18.324366606997955 ], [ -64.847610985651329, 18.324430477130818 ], [ -64.847584666462751, 18.32434649042068 ], [ -64.847517780152941, 18.324287983398733 ], [ -64.847464471223191, 18.324216738497228 ], [ -64.847417866509488, 18.324145492285993 ], [ -64.847364557579681, 18.324074078436638 ], [ -64.847304375485976, 18.32400920247494 ], [ -64.84724436234012, 18.323944326513185 ], [ -64.847204632099988, 18.323866710052528 ], [ -64.847144448696611, 18.32380183409083 ], [ -64.847104718456478, 18.323724217630115 ], [ -64.847037832146668, 18.32366554427972 ], [ -64.847030957673098, 18.32366554427972 ], [ -64.846957364527896, 18.323613408816925 ], [ -64.846876730580618, 18.323574181491267 ], [ -64.846978151657765, 18.323542665520165 ], [ -64.847046214053876, 18.323478795387302 ], [ -64.847120813027971, 18.323428001029697 ], [ -64.847168757537133, 18.323357425371057 ], [ -64.847183005469731, 18.323273941575337 ], [ -64.847217372598891, 18.323190457779617 ], [ -64.847231620531488, 18.323106806345777 ], [ -64.847232460031876, 18.32302298727376 ], [ -64.847240002438696, 18.322939335839919 ], [ -64.847240674300906, 18.322855684406079 ], [ -64.847268502232851, 18.322772032972239 ], [ -64.847309573578116, 18.322695087064119 ], [ -64.847364223613056, 18.322624679043656 ], [ -64.847445528112871, 18.322593163072554 ], [ -64.847533370500344, 18.322574555238589 ], [ -64.847621045249639, 18.322562485292224 ], [ -64.847709055275288, 18.322537339570601 ], [ -64.847796728714911, 18.322525269624236 ], [ -64.847884403464207, 18.322525940176831 ], [ -64.847972079523174, 18.322533148617026 ], [ -64.848059586634349, 18.322546727306701 ], [ -64.848147261383701, 18.322553935746896 ], [ -64.848227895330922, 18.322586792823074 ], [ -64.848301654804629, 18.322632558036389 ], [ -64.848341386354434, 18.322710174497104 ], [ -64.848360998707619, 18.322793993569064 ], [ -64.848400730257424, 18.322871610029722 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_847", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.922762987491012, 18.3210914605786 ], [ -64.922750917544647, 18.321158515836203 ], [ -64.922775057437377, 18.32127284505043 ], [ -64.922815290591927, 18.32134828221524 ], [ -64.922858708871274, 18.32142070189343 ], [ -64.922855019522387, 18.321480716348958 ], [ -64.922804729388872, 18.321486248407723 ], [ -64.922716719363279, 18.321479542881946 ], [ -64.922632062100547, 18.321454900074798 ], [ -64.922469285462739, 18.321415505110963 ], [ -64.922559307146059, 18.3214124876244 ], [ -64.922626193455869, 18.321356999398688 ], [ -64.922630888633535, 18.321271168669 ], [ -64.922662739880934, 18.321193049293868 ], [ -64.922721916145747, 18.32113001735172 ], [ -64.922762987491012, 18.3210914605786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_591", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.951744433534884, 18.369289933692755 ], [ -64.951729178463779, 18.369293789370033 ], [ -64.951653404712999, 18.369333688558015 ], [ -64.951582327449614, 18.369382637586341 ], [ -64.95152985540085, 18.369449860482121 ], [ -64.951491467575579, 18.369526135837646 ], [ -64.951457772308629, 18.369602412502843 ], [ -64.951424075732007, 18.369678686548696 ], [ -64.951371772631092, 18.369745741806298 ], [ -64.951309915465629, 18.369803744604098 ], [ -64.951309915465629, 18.369808270833971 ], [ -64.951266832462636, 18.369880019959623 ], [ -64.951233135886014, 18.369956296624821 ], [ -64.951175972588544, 18.370018991980999 ], [ -64.951123669487629, 18.370086048548274 ], [ -64.951066503570871, 18.370153102496204 ], [ -64.951028114435871, 18.370229377851729 ], [ -64.950980337564829, 18.370301126977324 ], [ -64.950941948429886, 18.370377234694729 ], [ -64.950908254472608, 18.370453510050254 ], [ -64.950865171469616, 18.370525260485522 ], [ -64.950826948663064, 18.370601534531374 ], [ -64.950840359714618, 18.370687197622999 ], [ -64.950883276389163, 18.3707807397073 ], [ -64.950816387460009, 18.370730280625992 ], [ -64.950747655820976, 18.370678312801317 ], [ -64.950702059555454, 18.370604384379817 ], [ -64.950695186391556, 18.370516206716104 ], [ -64.950665011525643, 18.370435069854409 ], [ -64.950642715652521, 18.370354100630834 ], [ -64.950635842488623, 18.370258546888749 ], [ -64.950597956268041, 18.370177410027054 ], [ -64.950560236375964, 18.370096274475031 ], [ -64.950483625744198, 18.370051681419056 ], [ -64.950399303757763, 18.370021675500993 ], [ -64.95030693645009, 18.370013627560411 ], [ -64.950228649436838, 18.370000385456706 ], [ -64.950191432459178, 18.369912206483264 ], [ -64.950196798189438, 18.369826712339488 ], [ -64.95021171667463, 18.369741384524218 ], [ -64.950240719383203, 18.369660415300643 ], [ -64.950274414650153, 18.369584138635446 ], [ -64.950312636146975, 18.369508030918098 ], [ -64.950351025281918, 18.369431755562573 ], [ -64.950394108284968, 18.36935548151672 ], [ -64.950465354496146, 18.369306529868993 ], [ -64.950522517793559, 18.369244000841263 ], [ -64.950579514762524, 18.369181305485085 ], [ -64.950646068415381, 18.369127827607485 ], [ -64.950731562559156, 18.369092120682808 ], [ -64.950799960231564, 18.36904015285819 ], [ -64.950861986344876, 18.368981814784036 ], [ -64.950954522600341, 18.36896790081812 ], [ -64.951038844586776, 18.368997909355585 ], [ -64.951084440852242, 18.369071668829235 ], [ -64.951130038427436, 18.369145598560408 ], [ -64.951214192775751, 18.369190356635215 ], [ -64.951298682400306, 18.369227741250995 ], [ -64.951383004386742, 18.369250372400415 ], [ -64.951483084358699, 18.36925858535983 ], [ -64.951567910569224, 18.369237127677366 ], [ -64.951660111548449, 18.369252550386648 ], [ -64.951744433534884, 18.369289933692755 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_969", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.9954086301301, 18.351831429443337 ], [ -64.995369067528088, 18.351754652483066 ], [ -64.995279213482888, 18.351739563740409 ], [ -64.995159016933655, 18.351729171485204 ], [ -64.995068996560008, 18.351728499622936 ], [ -64.99539790259854, 18.351698492395144 ], [ -64.995486581867056, 18.351693129284229 ], [ -64.995575597721484, 18.351663457332734 ], [ -64.995664613575968, 18.351633951709687 ], [ -64.995741056569614, 18.351586176148373 ], [ -64.995817499563316, 18.351544266612336 ], [ -64.995893942556961, 18.351502523404804 ], [ -64.995970385550606, 18.351454746533761 ], [ -64.996040459604501, 18.351400768361088 ], [ -64.996104328427691, 18.351340752595831 ], [ -64.996174736448154, 18.351268500555818 ], [ -64.996238606581016, 18.351208487409906 ], [ -64.996283533603616, 18.351136235369836 ], [ -64.996322258014857, 18.351051744435608 ], [ -64.996367185037457, 18.350979492395538 ], [ -64.996418482309537, 18.350907240355468 ], [ -64.996457206720777, 18.350828785704095 ], [ -64.996495763493897, 18.350750498690843 ], [ -64.996528117655714, 18.350672045349143 ], [ -64.996566842066954, 18.350593589388041 ], [ -64.996611936727732, 18.350509267401605 ], [ -64.996656863750331, 18.350437015361535 ], [ -64.996708161022354, 18.350364764631138 ], [ -64.996765828543914, 18.350298547564307 ], [ -64.996817125815994, 18.350226295524237 ], [ -64.996868423088017, 18.350154043484167 ], [ -64.996938495832239, 18.350100064001765 ], [ -64.996996163353742, 18.350034014573055 ], [ -64.997066236097965, 18.349980035090709 ], [ -64.997130106230827, 18.349920020635125 ], [ -64.997206549224472, 18.349878277427592 ], [ -64.997264049107855, 18.349812060360705 ], [ -64.997334289490198, 18.349758082188032 ], [ -64.9974107324839, 18.349710305316989 ], [ -64.997498574871315, 18.349625311468287 ], [ -64.997581723390738, 18.349561442645097 ], [ -64.997664536633863, 18.349533447075089 ], [ -64.997792276899588, 18.349455998252552 ], [ -64.99775154083062, 18.349532105969899 ], [ -64.997735950483218, 18.349618104337765 ], [ -64.997715163353348, 18.34969924119946 ], [ -64.997739638522376, 18.349780713337452 ], [ -64.997763946053283, 18.349862185475445 ], [ -64.997783224439843, 18.349943489975317 ], [ -64.99780769960887, 18.350024962113253 ], [ -64.997821948851083, 18.350111128119295 ], [ -64.99784139487582, 18.350178183376897 ], [ -64.99784625638199, 18.350207352413975 ], [ -64.997855476479913, 18.35029351841996 ], [ -64.997854805927318, 18.350379684426002 ], [ -64.997889171746863, 18.350456295057768 ], [ -64.997943821781803, 18.350523685591668 ], [ -64.997946336353948, 18.350530726393742 ], [ -64.997973158457, 18.350605156419988 ], [ -64.997977349410576, 18.350691322425973 ], [ -64.997976678858038, 18.350777322103568 ], [ -64.997991095738428, 18.350863488109553 ], [ -64.997985228403365, 18.350949486477418 ], [ -64.997959579767326, 18.351030623339113 ], [ -64.997913982192188, 18.351102037188468 ], [ -64.997863355472646, 18.351173283399646 ], [ -64.997802670464523, 18.351234974236661 ], [ -64.997747182238868, 18.351301526579846 ], [ -64.997666548291591, 18.351358354600961 ], [ -64.997595972633007, 18.351410322425636 ], [ -64.99755540420216, 18.351486597781161 ], [ -64.997519529639305, 18.351567568314351 ], [ -64.997498910147613, 18.351648705176046 ], [ -64.997458174078645, 18.351724811583779 ], [ -64.99741257650345, 18.351801088248976 ], [ -64.99734200084481, 18.351853054763922 ], [ -64.997306293920133, 18.351929331429119 ], [ -64.997265390213045, 18.352034271597574 ], [ -64.997214428217262, 18.352148600811802 ], [ -64.99715877235343, 18.352215154464659 ], [ -64.99708333518862, 18.352257565605385 ], [ -64.997012759530037, 18.352309702377852 ], [ -64.996957271304325, 18.352376085773187 ], [ -64.99690647694672, 18.352447499622542 ], [ -64.996850988721064, 18.352514051965727 ], [ -64.996785442206772, 18.352570882606187 ], [ -64.996739676993457, 18.352642296455542 ], [ -64.996694079418262, 18.352713708995225 ], [ -64.996648481843124, 18.352784956516075 ], [ -64.996612774918447, 18.352861230561928 ], [ -64.996597519847342, 18.352889730356083 ], [ -64.996571033020587, 18.352934991345307 ], [ -64.996490734349607, 18.352967848421542 ], [ -64.996400545028109, 18.352967177868948 ], [ -64.996315384850959, 18.352985619374465 ], [ -64.996239947686149, 18.35302819946304 ], [ -64.996164342883219, 18.353080165977985 ], [ -64.996093767224636, 18.35313230144078 ], [ -64.996023359204116, 18.353184270575071 ], [ -64.995957812689824, 18.353241267544036 ], [ -64.995882375525014, 18.353283678684818 ], [ -64.995801909215913, 18.353316535761053 ], [ -64.995716581400586, 18.353334975956898 ], [ -64.995626559717266, 18.353339166910473 ], [ -64.995536370395826, 18.353338496357878 ], [ -64.995451377856796, 18.353318715056901 ], [ -64.995401924604323, 18.353246630655008 ], [ -64.995357500496141, 18.35317454756273 ], [ -64.99529295981074, 18.353111849587208 ], [ -64.995218360836645, 18.353049152921358 ], [ -64.995143595534103, 18.353005567003947 ], [ -64.995068827612215, 18.35295242571226 ], [ -64.99499422863812, 18.3529041459268 ], [ -64.99490923609909, 18.352874810561275 ], [ -64.99481921441577, 18.352864584634517 ], [ -64.994734389514917, 18.352844803333483 ], [ -64.994664652046993, 18.35279166073218 ], [ -64.994584857600159, 18.352748074814713 ], [ -64.994505060533925, 18.352713876633345 ], [ -64.994420235633072, 18.352684707596325 ], [ -64.994335244403715, 18.35266006478912 ], [ -64.994255448647152, 18.352621172739703 ], [ -64.994190906652079, 18.352563337580023 ], [ -64.994106081751227, 18.352519751662612 ], [ -64.994031482777132, 18.352471305548647 ], [ -64.993951854658746, 18.352413301441175 ], [ -64.993872058902184, 18.352374578339607 ], [ -64.993792264455294, 18.352335686290189 ], [ -64.993722525677754, 18.35228254368883 ], [ -64.993652955847949, 18.35222470852915 ], [ -64.993598473451186, 18.352157319304979 ], [ -64.993528737292934, 18.352104176703619 ], [ -64.993464196607476, 18.352032093611399 ], [ -64.993409714210713, 18.351964701767827 ], [ -64.993350201359931, 18.351892449727757 ], [ -64.993310806396039, 18.351815671457814 ], [ -64.993301587607789, 18.351729505451772 ], [ -64.993307287304731, 18.351643508393579 ], [ -64.993352883570196, 18.351572262182401 ], [ -64.993443074201366, 18.351572931425324 ], [ -64.993538123719304, 18.351573603287534 ], [ -64.993628145402681, 18.351583829214348 ], [ -64.993718334724122, 18.351584498457214 ], [ -64.993808356407442, 18.351594724384029 ], [ -64.9939084363794, 18.351595562574744 ], [ -64.993998625700897, 18.351596234437011 ], [ -64.99408345060175, 18.351620709606038 ], [ -64.994168444450452, 18.351640489597344 ], [ -64.9942584648241, 18.351655409392151 ], [ -64.99434848650742, 18.351665804266759 ], [ -64.99443834055262, 18.351690279435786 ], [ -64.994523334401265, 18.351714922242934 ], [ -64.994608325630622, 18.351734534596119 ], [ -64.994698348623615, 18.351744929470726 ], [ -64.994793230503433, 18.351769404639754 ], [ -64.994873027569668, 18.351803601511449 ], [ -64.994963047943315, 18.351823382812427 ], [ -64.995053069626636, 18.351838302607234 ], [ -64.995143092619685, 18.351848528534049 ], [ -64.995233112993333, 18.351863617276649 ], [ -64.995323303624446, 18.351849869639182 ], [ -64.9954086301301, 18.351831429443337 ] ], [ [ -64.99752992320424, 18.35045260701861 ], [ -64.997444427750793, 18.35047004138562 ], [ -64.997358932297402, 18.350496694540823 ], [ -64.997282656941877, 18.350541287596798 ], [ -64.997225324696615, 18.350604150591096 ], [ -64.997158437077132, 18.350657962435321 ], [ -64.997082329359785, 18.350711775589218 ], [ -64.997024829476402, 18.350774638583573 ], [ -64.99696749723114, 18.350837670525721 ], [ -64.996900609611657, 18.350891482369946 ], [ -64.996843277366452, 18.350954346673916 ], [ -64.996776557385147, 18.351008158518141 ], [ -64.996709669765664, 18.351061970362366 ], [ -64.996652337520402, 18.351124834666393 ], [ -64.99659500527514, 18.351187866608541 ], [ -64.996565836238119, 18.351269003470236 ], [ -64.996508503992857, 18.351332035412383 ], [ -64.996451004109474, 18.351394899716354 ], [ -64.996393671864212, 18.351457765330053 ], [ -64.996336339618949, 18.351520797272201 ], [ -64.996288395109787, 18.351592712726301 ], [ -64.996230895226404, 18.351655744668449 ], [ -64.996173562981141, 18.351718610282092 ], [ -64.996116230735879, 18.351781474586119 ], [ -64.996068286226716, 18.351835452758792 ], [ -64.996020509355674, 18.351898484700939 ], [ -64.995972397208334, 18.351970570412561 ], [ -64.995877514018844, 18.351997057239316 ], [ -64.995791850927276, 18.352032596525817 ], [ -64.995696800099608, 18.352058914404779 ], [ -64.995602084548239, 18.352058243852184 ], [ -64.995497813622706, 18.352057405661469 ], [ -64.995402930433158, 18.352065787568677 ], [ -64.995308214881845, 18.352065118325754 ], [ -64.995213500640148, 18.352055395313414 ], [ -64.995109228404885, 18.352054555813027 ], [ -64.995024069537408, 18.352035781650557 ], [ -64.994938908050585, 18.352017172506919 ], [ -64.994844192499215, 18.352007281856402 ], [ -64.994759033631738, 18.351988675332109 ], [ -64.994674039783092, 18.351951793630747 ], [ -64.994588879605942, 18.351933019468277 ], [ -64.994494165364245, 18.351932347606009 ], [ -64.994399280865082, 18.351940561875097 ], [ -64.99434194861982, 18.352003593817244 ], [ -64.994331722693005, 18.352093950776862 ], [ -64.994349996560402, 18.352175590552974 ], [ -64.994415709403143, 18.352257565605385 ], [ -64.99447203581957, 18.352321269409799 ], [ -64.994547305346202, 18.35238530587111 ], [ -64.994622742511012, 18.352440123544227 ], [ -64.994688625611275, 18.35249494252696 ], [ -64.994764061466412, 18.352540706430602 ], [ -64.994849054005385, 18.35256853436249 ], [ -64.994934215492208, 18.352596363604107 ], [ -64.995028594457608, 18.352633242686125 ], [ -64.995123310008978, 18.352652019467882 ], [ -64.995218025560348, 18.352661742480223 ], [ -64.995331685531653, 18.352671631821067 ], [ -64.995426399773351, 18.352672471321455 ], [ -64.995521116634393, 18.352673140564377 ], [ -64.995615998514211, 18.352673812426644 ], [ -64.995710714065581, 18.35267448166951 ], [ -64.995805598564743, 18.352657214940677 ], [ -64.995891092708518, 18.352639612935548 ], [ -64.995976588161966, 18.352622178568595 ], [ -64.996062083615413, 18.352604745511314 ], [ -64.996147746706981, 18.352560152455339 ], [ -64.996233409798549, 18.352515560709037 ], [ -64.996309517515954, 18.35247080263423 ], [ -64.996395012969401, 18.352444314497802 ], [ -64.996471288324869, 18.3523997227515 ], [ -64.996528620570132, 18.352336690809352 ], [ -64.996595508189614, 18.352282880274799 ], [ -64.996643452698777, 18.352210963511027 ], [ -64.996682009471897, 18.352129657701539 ], [ -64.996720566245017, 18.352048520839844 ], [ -64.996777898490279, 18.351985656535817 ], [ -64.996835398373662, 18.351922624593669 ], [ -64.996883342882825, 18.351850707829897 ], [ -64.996940675128087, 18.351787677197422 ], [ -64.996988619637307, 18.351715760433649 ], [ -64.99703673178459, 18.351643674722084 ], [ -64.99707528855771, 18.351562539170061 ], [ -64.99712323306693, 18.351490453458439 ], [ -64.997171177576092, 18.351418370366218 ], [ -64.997209734349212, 18.351337233504523 ], [ -64.997248458760453, 18.351256096642828 ], [ -64.997296403269672, 18.351184012240878 ], [ -64.997516344514565, 18.350941272208388 ], [ -64.997564289023785, 18.350869186496766 ], [ -64.997612401171125, 18.350797103404545 ], [ -64.997660345680288, 18.350725186640773 ], [ -64.997679959343145, 18.350643882140901 ], [ -64.99766168678542, 18.350562242364788 ], [ -64.99759580499483, 18.350507423382055 ], [ -64.99752992320424, 18.35045260701861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_281", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.873752475207368, 18.312870990220972 ], [ -64.873714084762696, 18.31279588833246 ], [ -64.873636300663918, 18.312757834473757 ], [ -64.873550471243846, 18.31273486804804 ], [ -64.873464471566308, 18.312719110062517 ], [ -64.873378642146236, 18.312695975998622 ], [ -64.873292811416491, 18.312673009572904 ], [ -64.873215027317713, 18.31262741199771 ], [ -64.873200107522905, 18.312545101669002 ], [ -64.873161718387905, 18.312470167418667 ], [ -64.87309181328186, 18.312417361403277 ], [ -64.873021908175815, 18.312357011671452 ], [ -64.872981673711593, 18.312279059934497 ], [ -64.872970106679645, 18.312196581967669 ], [ -64.872958539647698, 18.312114104000784 ], [ -64.872965414121268, 18.312025927646744 ], [ -64.87297245361367, 18.311937748673301 ], [ -64.872960720253275, 18.311855103068297 ], [ -64.872943118248145, 18.311772625101469 ], [ -64.872925348604895, 18.311690147134641 ], [ -64.872895341377102, 18.311601634194574 ], [ -64.872871369122493, 18.311518988589626 ], [ -64.872841360585028, 18.311436342984621 ], [ -64.87282359225145, 18.311353865017736 ], [ -64.87281822652119, 18.311265519715846 ], [ -64.872818898383457, 18.311177174413956 ], [ -64.87284437938132, 18.311095031723426 ], [ -64.872845048624242, 18.311006854059656 ], [ -64.872827446619112, 18.310924208454708 ], [ -64.872803474364503, 18.310841730487823 ], [ -64.872779503419565, 18.310759084882818 ], [ -64.87274329358047, 18.310682306612875 ], [ -64.872706916103255, 18.310605529652605 ], [ -64.8726645036528, 18.31052858243487 ], [ -64.87261639150546, 18.310442920652918 ], [ -64.87258588136325, 18.310362955948563 ], [ -64.87255537122104, 18.310283161501729 ], [ -64.87252469344071, 18.310203364435495 ], [ -64.87251513806649, 18.310113679338144 ], [ -64.872495021489215, 18.310023991621392 ], [ -64.87247507255006, 18.309934306524042 ], [ -64.872475909431159, 18.309844786445467 ], [ -64.872466186418762, 18.309755101348117 ], [ -64.872456967630512, 18.309635575351422 ], [ -64.872447244618172, 18.309545887634727 ], [ -64.872448081499215, 18.309456368865824 ], [ -64.872448920999602, 18.309366851406594 ], [ -64.872449759190317, 18.309267440677559 ], [ -64.872450597381089, 18.309177755580151 ], [ -64.872440874368692, 18.309088235501576 ], [ -64.872431318994529, 18.308998550404226 ], [ -64.872422097586934, 18.308869132447398 ], [ -64.872401982319275, 18.308779447350048 ], [ -64.872382201018297, 18.308669810694198 ], [ -64.872320676509787, 18.308549949421206 ], [ -64.872269211599587, 18.30847987667704 ], [ -64.872207354434124, 18.308419528254831 ], [ -64.872093360496194, 18.308339060636058 ], [ -64.872010547253069, 18.308288601554693 ], [ -64.871938127574879, 18.308238311421178 ], [ -64.871865540258511, 18.308188018668318 ], [ -64.871793120580321, 18.308137559586953 ], [ -64.871668733077456, 18.308066985238042 ], [ -64.871585584558034, 18.308036475095832 ], [ -64.871502602367059, 18.307995905355313 ], [ -64.871419621485813, 18.307965396522775 ], [ -64.871315687146193, 18.307934717432715 ], [ -64.871253661032881, 18.30787453664874 ], [ -64.871170680151636, 18.307833968217835 ], [ -64.871108820366828, 18.30776389547367 ], [ -64.871067917969356, 18.307683932078987 ], [ -64.871037407827146, 18.307604136322425 ], [ -64.871090046204358, 18.307534900459302 ], [ -64.871184091203133, 18.307515623382415 ], [ -64.871247123145281, 18.307456447117602 ], [ -64.871247792388203, 18.307366928348699 ], [ -64.871206889990731, 18.307286964954017 ], [ -64.871114186097088, 18.307166936042904 ], [ -64.871052159983833, 18.307106586311022 ], [ -64.871000695073633, 18.307036513566857 ], [ -64.870949230163376, 18.306966439512962 ], [ -64.870918720021166, 18.306886645066129 ], [ -64.870877816314078, 18.306806680361774 ], [ -64.870868260939858, 18.306717162902544 ], [ -64.870848144362583, 18.306627308857344 ], [ -64.870817634220373, 18.306547513100782 ], [ -64.870818472411088, 18.306457994331936 ], [ -64.8708196458781, 18.306318687034263 ], [ -64.870799696938946, 18.306229000627184 ], [ -64.87077958036167, 18.306139146582041 ], [ -64.870759631422516, 18.306049460174961 ], [ -64.8707297918329, 18.305880145649553 ], [ -64.870732138766925, 18.305761122567276 ], [ -64.870740185397835, 18.305672609627266 ], [ -64.870804893721413, 18.305611756981023 ], [ -64.870890724451158, 18.305598848843886 ], [ -64.8709834283448, 18.305606392560378 ], [ -64.871068923798191, 18.305620641802648 ], [ -64.871154251613518, 18.30565551053661 ], [ -64.871239913395414, 18.305669759778823 ], [ -64.871325242520413, 18.305697755348888 ], [ -64.871410737973804, 18.305725750918896 ], [ -64.871503106591149, 18.305760619652858 ], [ -64.871588434406476, 18.305802193912598 ], [ -64.871673762221747, 18.305836895008383 ], [ -64.871759090037074, 18.305871763742346 ], [ -64.871844585490521, 18.305892886148513 ], [ -64.871930080943969, 18.305914008554623 ], [ -64.872015576397359, 18.305942004124688 ], [ -64.872100904212687, 18.305969999694753 ], [ -64.872186567304254, 18.305984416575086 ], [ -64.872272061448029, 18.305998665817356 ], [ -64.872371975091539, 18.306006377171968 ], [ -64.872457470544987, 18.306020626414238 ], [ -64.872550174438572, 18.306028170130674 ], [ -64.872635668582348, 18.306042587011063 ], [ -64.87272837247599, 18.306050130727556 ], [ -64.872821245317425, 18.306057674444048 ], [ -64.872913949211068, 18.306058512634763 ], [ -64.873006819433158, 18.306059183187358 ], [ -64.873099524636473, 18.306060021378073 ], [ -64.873192228530115, 18.306067565094509 ], [ -64.873285098752206, 18.306068235647103 ], [ -64.873377802645848, 18.306069073837818 ], [ -64.873470675487283, 18.306076617554311 ], [ -64.873563379380926, 18.306077455745026 ], [ -64.873656249603016, 18.306078126297621 ], [ -64.873748953496658, 18.306078964488336 ], [ -64.873880046525301, 18.306073935343989 ], [ -64.874064448483693, 18.306063206502813 ], [ -64.874154637805134, 18.306063877055351 ], [ -64.874244828436304, 18.306050298365676 ], [ -64.874335016448072, 18.306050968918271 ], [ -64.874425205769569, 18.306037390228596 ], [ -64.874515396400739, 18.306016603098783 ], [ -64.874605584412507, 18.306003024409108 ], [ -64.874688566603481, 18.305975028839043 ], [ -64.874771378536934, 18.305947033268978 ], [ -64.874839439623372, 18.305890203938191 ], [ -64.874914876788182, 18.305847791487736 ], [ -64.874992997472987, 18.305796158939415 ], [ -64.874993331439555, 18.305797164768251 ], [ -64.875005736662217, 18.305828680739353 ], [ -64.875036583390397, 18.305907135390726 ], [ -64.875067259861112, 18.305987434061706 ], [ -64.875110679450074, 18.306059853739896 ], [ -64.875147727479884, 18.306138308391326 ], [ -64.875197514698982, 18.306216929371146 ], [ -64.875247135589575, 18.306289517997186 ], [ -64.875303294367825, 18.306356237978491 ], [ -64.875359285507955, 18.306422790321676 ], [ -64.875428184785108, 18.306477440356616 ], [ -64.875484175925237, 18.306550026363311 ], [ -64.8755275955142, 18.306622614989294 ], [ -64.875571012483817, 18.306701069640724 ], [ -64.875589117403365, 18.306785559265279 ], [ -64.875613592572392, 18.306869881251714 ], [ -64.875657010851683, 18.306942468568081 ], [ -64.875694058881493, 18.307020923219454 ], [ -64.875743847410263, 18.307093510535822 ], [ -64.875787265689553, 18.307166096542517 ], [ -64.875843256829683, 18.3072386851685 ], [ -64.875918358718195, 18.307281432895252 ], [ -64.876006536381908, 18.307288138420972 ], [ -64.876094714045678, 18.307282774000385 ], [ -64.876182891709391, 18.307271542244735 ], [ -64.876271069373161, 18.307272211487657 ], [ -64.876359079398753, 18.307297023242654 ], [ -64.876440551536746, 18.307333735996167 ], [ -64.876509283175778, 18.30739442100429 ], [ -64.876584385064291, 18.307455106012412 ], [ -64.876621433094101, 18.307533728301962 ], [ -64.876664851373391, 18.307606147980152 ], [ -64.876676753681636, 18.307690469966587 ], [ -64.876701061212486, 18.3077749595912 ], [ -64.876687817799109, 18.307858946301337 ], [ -64.876655631275469, 18.307936898038292 ], [ -64.876604501641566, 18.308008647163888 ], [ -64.876541134423121, 18.308068326343175 ], [ -64.876477599566556, 18.308127836574613 ], [ -64.876401659487328, 18.308175447117208 ], [ -64.876325551769924, 18.30822288740228 ], [ -64.876249611690696, 18.308264461661963 ], [ -64.876173671611468, 18.308305869593198 ], [ -64.876097731532241, 18.308347276214818 ], [ -64.876003015980871, 18.308388681526708 ], [ -64.875920874600013, 18.30842405448476 ], [ -64.875838562961633, 18.308459592461588 ], [ -64.875750217659743, 18.308482895473276 ], [ -64.875668074969155, 18.308524302094838 ], [ -64.875579729667265, 18.308547602487181 ], [ -64.875497586976735, 18.308577108110228 ], [ -64.875402871425365, 18.308606277147248 ], [ -64.875314527433147, 18.308629746487441 ], [ -64.875232383432945, 18.308659083162638 ], [ -64.875156443353717, 18.308700488474528 ], [ -64.87507430066313, 18.308729992787846 ], [ -64.875010765806564, 18.308789673276806 ], [ -64.874934825727337, 18.308831078588696 ], [ -64.874871627456685, 18.308892266511236 ], [ -64.874840780728562, 18.308970888800786 ], [ -64.874810102948175, 18.309049678728456 ], [ -64.874801888679144, 18.309135678406051 ], [ -64.874808595514594, 18.309221675464244 ], [ -64.874815299730642, 18.309307841470229 ], [ -64.874822006566092, 18.309394007476271 ], [ -64.874836254498632, 18.309480173482257 ], [ -64.874858047457394, 18.309566339488299 ], [ -64.874872296699607, 18.309652505494284 ], [ -64.874901465736684, 18.309746047578642 ], [ -64.874953433561302, 18.309818133290264 ], [ -64.875028032535397, 18.309861717898002 ], [ -64.87511805552839, 18.309884013771182 ], [ -64.875165832399432, 18.309908825526179 ], [ -64.875203382033988, 18.309916201604494 ], [ -64.87530077979568, 18.309931455365927 ], [ -64.87539063384088, 18.30995358360093 ], [ -64.875488200550365, 18.309975879474052 ], [ -64.875578220924012, 18.309976717664824 ], [ -64.875668411555125, 18.309970179777167 ], [ -64.87575859956695, 18.309963809527687 ], [ -64.875848788888391, 18.309943022397874 ], [ -64.875931769769693, 18.309907818387614 ], [ -64.876007206934503, 18.309858197496965 ], [ -64.876090187815748, 18.309822993486762 ], [ -64.876165624980558, 18.309780582345979 ], [ -64.876226309988681, 18.309716544574997 ], [ -64.876301747153491, 18.309667091322524 ], [ -64.876384560396616, 18.309638926804666 ], [ -64.876467542587591, 18.309603890432527 ], [ -64.876550354521044, 18.309575728534014 ], [ -64.876633167764169, 18.309547731654277 ], [ -64.876715981007351, 18.309519737393941 ], [ -64.876798961888596, 18.309491740514204 ], [ -64.876888983571916, 18.309485371574397 ], [ -64.876971964453219, 18.309450167564194 ], [ -64.877061986136539, 18.309450836807059 ], [ -64.877152175458036, 18.309451676307447 ], [ -64.877242364779477, 18.309445138419846 ], [ -64.877332386462797, 18.309445807662769 ], [ -64.877422408146117, 18.309453855603351 ], [ -64.877512597467614, 18.309454524846217 ], [ -64.877602619150935, 18.309462403839007 ], [ -64.877692640834255, 18.309470282831796 ], [ -64.877782494879455, 18.309499788454787 ], [ -64.877872348924654, 18.309514874578099 ], [ -64.87814945477669, 18.309603053551484 ], [ -64.878224053750728, 18.309661056349341 ], [ -64.878253390425925, 18.309740181553309 ], [ -64.878260095951703, 18.309826347559294 ], [ -64.878206954660072, 18.309897592460857 ], [ -64.878123638502473, 18.309975879474052 ], [ -64.87806295349435, 18.310039918554764 ], [ -64.877994892407912, 18.31009674657588 ], [ -64.87791191152661, 18.310138991388214 ], [ -64.8778364743618, 18.310181403838612 ], [ -64.877753661118675, 18.31020956835647 ], [ -64.877663304159057, 18.31023035548634 ], [ -64.877580490915932, 18.310258349746732 ], [ -64.877490133956314, 18.31028617767862 ], [ -64.877407153075012, 18.31032138168888 ], [ -64.877331715910259, 18.31036379544895 ], [ -64.877263654823764, 18.310420623470122 ], [ -64.877202969815642, 18.310484662550778 ], [ -64.877187211830119, 18.31057065960897 ], [ -64.877163910128104, 18.310656491648388 ], [ -64.877125688631281, 18.310735112628265 ], [ -64.877087467134402, 18.310813734917815 ], [ -64.877049245637579, 18.310892189569188 ], [ -64.877018567857249, 18.310970979496858 ], [ -64.877010185950041, 18.311056811536275 ], [ -64.877001971681011, 18.311142808594468 ], [ -64.876971293900624, 18.311221598522138 ], [ -64.876917984970873, 18.311289994884874 ], [ -64.876902226985294, 18.311375825614618 ], [ -64.876901556432756, 18.311461991620661 ], [ -64.876878254730741, 18.311547822350349 ], [ -64.876884960256461, 18.311633988356391 ], [ -64.876891665782239, 18.311719986724256 ], [ -64.876921002457436, 18.311799111928224 ], [ -64.876965426565619, 18.311871197639789 ], [ -64.877017394390236, 18.311943280732066 ], [ -64.877061818498419, 18.312015365133959 ], [ -64.877136417472457, 18.312066327129742 ], [ -64.877211016446552, 18.312109913047209 ], [ -64.877270527987662, 18.312174956647084 ], [ -64.877330039528772, 18.312240000246959 ], [ -64.877397094786375, 18.312297835406639 ], [ -64.877471693760469, 18.312348629764244 ], [ -64.877546460372685, 18.312392215681712 ], [ -64.877628770701392, 18.312428760797104 ], [ -64.877726168463084, 18.312458265110422 ], [ -64.877535396255212, 18.312450050841392 ], [ -64.877415032067802, 18.312444686420747 ], [ -64.877217051419734, 18.312302529274632 ], [ -64.877053604229332, 18.312168754035724 ], [ -64.876882445684316, 18.311927355108367 ], [ -64.876806337966968, 18.311728200993286 ], [ -64.876790915257686, 18.311512953616386 ], [ -64.876854785390549, 18.31114113352271 ], [ -64.876936089890421, 18.310769478447753 ], [ -64.877025273383026, 18.31048885350441 ], [ -64.877148822695119, 18.310233371663287 ], [ -64.877358705651432, 18.310003373439372 ], [ -64.877446548038904, 18.309879990455727 ], [ -64.877473705418197, 18.309739509691042 ], [ -64.877388209964749, 18.309606406314401 ], [ -64.877137423301349, 18.309554772456352 ], [ -64.876825281077231, 18.309585282598562 ], [ -64.876538619850976, 18.309673964486421 ], [ -64.876294873989593, 18.30980438565274 ], [ -64.876103263591006, 18.309935312352877 ], [ -64.875894386463585, 18.310041090712105 ], [ -64.875705290637143, 18.310042934731655 ], [ -64.875435057949005, 18.31005969854607 ], [ -64.875253339510607, 18.310033379357492 ], [ -64.875019985904487, 18.30996531958067 ], [ -64.874899118802659, 18.309922905820599 ], [ -64.874787471798754, 18.309913519394172 ], [ -64.874706671523029, 18.309951236666905 ], [ -64.874632575463352, 18.309995494446582 ], [ -64.874565015981659, 18.310052657744052 ], [ -64.874497457809639, 18.310109654713017 ], [ -64.874429899637619, 18.310166820629775 ], [ -64.874355803577942, 18.310211075790107 ], [ -64.874288245405921, 18.310268072759072 ], [ -64.874220688543573, 18.310325237366158 ], [ -64.874159668259153, 18.310388773532395 ], [ -64.874105519828959, 18.310458844966945 ], [ -64.874057910596036, 18.31052875007299 ], [ -64.874003595837394, 18.310598822817155 ], [ -64.873949282388423, 18.310668895561378 ], [ -64.873914916568879, 18.310764616941583 ], [ -64.873887422603616, 18.310847597822885 ], [ -64.873859763619521, 18.31093074765198 ], [ -64.873852387541206, 18.31101389486173 ], [ -64.873844173272118, 18.311107101669791 ], [ -64.873848865830496, 18.311190251498886 ], [ -64.873859091757254, 18.311273398708636 ], [ -64.873863785625304, 18.311356548537731 ], [ -64.873868479493353, 18.311439695747481 ], [ -64.873867642612311, 18.311522845576576 ], [ -64.873872336480304, 18.311605992786326 ], [ -64.873877030348353, 18.311689142615421 ], [ -64.873898151444848, 18.311772457463348 ], [ -64.873908209733486, 18.311855605982771 ], [ -64.873912903601479, 18.311938754502194 ], [ -64.873934027317318, 18.312022070659737 ], [ -64.873954980775636, 18.312105386817336 ], [ -64.873975935543626, 18.312188702974879 ], [ -64.874007786791026, 18.312277215914889 ], [ -64.874028910506809, 18.312360532072489 ], [ -64.874044499544539, 18.312443848230032 ], [ -64.874065455622201, 18.312527164387632 ], [ -64.874102837618636, 18.312605283762707 ], [ -64.874134688866036, 18.312693964340895 ], [ -64.874177605540524, 18.31276705457168 ], [ -64.874214819898839, 18.312845173946755 ], [ -64.874246838784359, 18.312923460960008 ], [ -64.874284223400139, 18.31300158033514 ], [ -64.874310708917221, 18.31308506413086 ], [ -64.874342561474236, 18.313163183505935 ], [ -64.874374580359756, 18.313241302881067 ], [ -64.874417326776779, 18.313314393111852 ], [ -64.874449345662299, 18.313392680125105 ], [ -64.874486728968407, 18.31347079950018 ], [ -64.874524113584187, 18.313549086513433 ], [ -64.874567027639387, 18.313622176744218 ], [ -64.874609775366082, 18.313695266975003 ], [ -64.874643973547506, 18.313769698310921 ], [ -64.87468890057005, 18.313840441607738 ], [ -64.874738018546282, 18.313911184904498 ], [ -64.874827369677007, 18.31401193542905 ], [ -64.874874643633632, 18.314081169982501 ], [ -64.87493180955039, 18.314145878306078 ], [ -64.874988806519355, 18.314210418991536 ], [ -64.87504580348832, 18.314275127315113 ], [ -64.875117048389882, 18.314358275834536 ], [ -64.875174212996967, 18.314422984158114 ], [ -64.875221486953592, 18.314492218711564 ], [ -64.875268928548337, 18.314561285626894 ], [ -64.875321231649252, 18.314630520180401 ], [ -64.875382085605168, 18.314689696445214 ], [ -64.875428352423285, 18.314760607380151 ], [ -64.875488031602515, 18.314825148065552 ], [ -64.8755545839457, 18.314883318501529 ], [ -64.875614430763108, 18.314947859186987 ], [ -64.875667404416618, 18.315018770121867 ], [ -64.875733956759746, 18.315076940557844 ], [ -64.87579380357721, 18.315141481243302 ], [ -64.87585348275644, 18.315205854290582 ], [ -64.875920035099625, 18.31526419236468 ], [ -64.87596630453703, 18.315334934351824 ], [ -64.87600586582937, 18.315412049207737 ], [ -64.876032017379828, 18.3154955330034 ], [ -64.876024473663335, 18.315578849161 ], [ -64.876010392059243, 18.31566199637075 ], [ -64.875976193877875, 18.315738439364395 ], [ -64.875928584644953, 18.31580851341829 ], [ -64.87587426988631, 18.315878586162455 ], [ -64.875813418549683, 18.31594212101902 ], [ -64.87575239695559, 18.316012026125065 ], [ -64.875732448016493, 18.31603297958344 ], [ -64.87565634160876, 18.31607371696208 ], [ -64.875574197608557, 18.31610858438637 ], [ -64.875492222556147, 18.316143454430005 ], [ -64.875402703787245, 18.316171113414043 ], [ -64.875313017380165, 18.316213024259753 ], [ -64.875245626846322, 18.316269349366451 ], [ -64.875192988469109, 18.316339926334763 ], [ -64.8751551035582, 18.316417710433541 ], [ -64.875117216028002, 18.316495494532376 ], [ -64.875079329807477, 18.316573446269331 ], [ -64.875041443586895, 18.316651230368166 ], [ -64.875003557366369, 18.316729014467001 ], [ -64.874965672455517, 18.316806798565779 ], [ -64.874927784925262, 18.316884581354941 ], [ -64.87491219457786, 18.316969741532091 ], [ -64.874918901413309, 18.317055069347361 ], [ -64.874947901502537, 18.317133356360614 ], [ -64.874969526823122, 18.317218853123734 ], [ -64.8749603067252, 18.317308873497382 ], [ -64.874840948366682, 18.317214828498606 ], [ -64.874766181754467, 18.317171076252691 ], [ -64.874676327709267, 18.317148946708016 ], [ -64.874594017380559, 18.317112401592624 ], [ -64.874504164645089, 18.317090105719501 ], [ -64.874413975323591, 18.317103684409119 ], [ -64.874323784692422, 18.317110223606448 ], [ -64.874233595370981, 18.317116592546256 ], [ -64.874143407359156, 18.317137379676069 ], [ -64.874060426477911, 18.317172583686329 ], [ -64.873977445596609, 18.317214828498606 ], [ -64.873902008431799, 18.317257242258734 ], [ -64.873826571266989, 18.317299822347309 ], [ -64.873750966464058, 18.317342233488034 ], [ -64.873675529299248, 18.317384647248161 ], [ -64.873600090824823, 18.317427058388944 ], [ -64.873524653660013, 18.317476511641416 ], [ -64.87345642624507, 18.317533342281877 ], [ -64.873388365158576, 18.317590171612721 ], [ -64.87331292668415, 18.317639792503314 ], [ -64.873252241675971, 18.317703830274354 ], [ -64.873252241675971, 18.317711037404877 ], [ -64.873184014261085, 18.317767866735664 ], [ -64.873101199708231, 18.317803070745924 ], [ -64.873018386465105, 18.317831067625605 ], [ -64.87293540558386, 18.317859061885997 ], [ -64.872845048624242, 18.317894099567752 ], [ -64.872754691664625, 18.31791488538795 ], [ -64.872679254499815, 18.317957297838404 ], [ -64.872596442566362, 18.317992501848607 ], [ -64.872528381479867, 18.318049332489124 ], [ -64.872452775367265, 18.318098953379717 ], [ -64.872392090359142, 18.318162989841085 ], [ -64.87234649409362, 18.31823440369044 ], [ -64.872315647365497, 18.318320234420128 ], [ -64.87228496958511, 18.318398856709678 ], [ -64.872329395002964, 18.3184709424213 ], [ -64.872388737596282, 18.318535818382998 ], [ -64.872418075581152, 18.31861510991547 ], [ -64.872379854084272, 18.318693564566843 ], [ -64.872409189449797, 18.31877268977081 ], [ -64.87244607115116, 18.318851982612898 ], [ -64.872467864109922, 18.31893814861894 ], [ -64.872482113352135, 18.319024314624926 ], [ -64.872473731444927, 18.319110312992848 ], [ -64.872443052354924, 18.319188936592013 ], [ -64.872419750652909, 18.319274766012086 ], [ -64.872426457488302, 18.319360932018128 ], [ -64.87243316301408, 18.319447098024114 ], [ -64.872417405028557, 18.319532928753858 ], [ -64.872394103326542, 18.319618927121724 ], [ -64.872355880520047, 18.319697381773096 ], [ -64.872295195511924, 18.319761419544136 ], [ -64.87220517513822, 18.319767957431736 ], [ -64.872114818178659, 18.319788744561606 ], [ -64.872024461219041, 18.319809531691419 ], [ -64.871934271897544, 18.319823110381094 ], [ -64.871844082576047, 18.319843897510964 ], [ -64.871753725616429, 18.319864684640834 ], [ -64.871663367347139, 18.319885471770704 ], [ -64.871581225966281, 18.319848926655311 ], [ -64.871574351492711, 18.319762760649269 ], [ -64.871499753828289, 18.319719174731802 ], [ -64.871424987216074, 18.319668380374196 ], [ -64.871350388241979, 18.319624626818609 ], [ -64.871283332984376, 18.319566791658929 ], [ -64.871231365159758, 18.319494708566708 ], [ -64.871202028484561, 18.319415582053068 ], [ -64.871157604376378, 18.319343497651118 ], [ -64.871113180268253, 18.319271414558898 ], [ -64.871053836365263, 18.319206369649351 ], [ -64.870986613469483, 18.319148366851493 ], [ -64.87092726956655, 18.319083324561291 ], [ -64.870905308969668, 18.319062200845508 ], [ -64.870860214308948, 18.319018279651743 ], [ -64.870793159051345, 18.318960444492063 ], [ -64.870726103793743, 18.318902441694263 ], [ -64.870651504819648, 18.31885164864633 ], [ -64.870576738207433, 18.31880806141919 ], [ -64.870494427878725, 18.31877151761347 ], [ -64.870412117550018, 18.3187421796286 ], [ -64.870322263504818, 18.318719883755421 ], [ -64.870232409459675, 18.318690379442103 ], [ -64.870142387776355, 18.318675292009118 ], [ -64.870044822376542, 18.318667414326057 ], [ -64.869954800693165, 18.31866674246379 ], [ -64.869864443733547, 18.31868752959366 ], [ -64.869774254412107, 18.318701109593007 ], [ -64.869691441168982, 18.318729103853343 ], [ -64.869601084209364, 18.318749890983213 ], [ -64.869518270966239, 18.318777886553278 ], [ -64.869435457723057, 18.318805883433015 ], [ -64.869354153223242, 18.31884376965354 ], [ -64.869262622796612, 18.318891377576733 ], [ -64.869181150658619, 18.318939154447776 ], [ -64.869109736809264, 18.318986932628491 ], [ -64.869058607175361, 18.319054321852718 ], [ -64.868987193326006, 18.319102098723761 ], [ -64.868956180269379, 18.319179213579673 ], [ -64.868935057863212, 18.319266048828581 ], [ -64.868924161383859, 18.319353053025338 ], [ -64.868893148327231, 18.319430166571578 ], [ -64.868851909343789, 18.319507280117818 ], [ -64.868810670360403, 18.319584226025881 ], [ -64.868789715592413, 18.319671231532311 ], [ -64.868718301743058, 18.319719007093681 ], [ -64.868647055531824, 18.319766783964724 ], [ -64.868565751032008, 18.319795114811086 ], [ -64.868474723519796, 18.319784722555823 ], [ -64.868383528369463, 18.319783883055436 ], [ -64.868292333219131, 18.319792935515181 ], [ -64.868201138068798, 18.319792098634139 ], [ -64.868109942918466, 18.319791426771872 ], [ -64.868018580130013, 18.319810034605894 ], [ -64.86793727563014, 18.319838365452199 ], [ -64.867846080479808, 18.319856974595893 ], [ -64.867774666630453, 18.319904750157264 ], [ -64.867703420419275, 18.319952527028249 ], [ -64.867652123147195, 18.320019917562149 ], [ -64.867621110090568, 18.320097031108389 ], [ -64.867589929395763, 18.320174144654629 ], [ -64.86757903291641, 18.320261148851387 ], [ -64.867578194725695, 18.320348153048144 ], [ -64.867567299556015, 18.320435157244845 ], [ -64.867566627693748, 18.320522161441602 ], [ -64.86757584779167, 18.320609333276479 ], [ -64.867575178548805, 18.32069633747318 ], [ -64.867574339048417, 18.320783509308058 ], [ -64.8675775241731, 18.32081351653585 ], [ -64.86758372678446, 18.320870681142992 ], [ -64.867593114520503, 18.320957685339692 ], [ -64.867622786471998, 18.32103530180035 ], [ -64.867652458423493, 18.321113085899185 ], [ -64.86765162154245, 18.321200090095942 ], [ -64.867640723753425, 18.321287094292643 ], [ -64.867629828583745, 18.3213740984894 ], [ -64.867608872506082, 18.32146093504798 ], [ -64.867547516945365, 18.32152815794376 ], [ -64.867496219673285, 18.321595380839483 ], [ -64.86741491517347, 18.321623879323965 ], [ -64.86729958013035, 18.3216857377991 ], [ -64.867180054133712, 18.321731335374238 ], [ -64.867089195569349, 18.321795205507101 ], [ -64.867007889759805, 18.321823703991583 ], [ -64.866916863557321, 18.321822865800868 ], [ -64.86682566709726, 18.32182219524833 ], [ -64.866744865511862, 18.321792523296835 ], [ -64.866643612072892, 18.32179168510612 ], [ -64.866552416922559, 18.321800569927746 ], [ -64.866461221772227, 18.321799899375151 ], [ -64.866370026621894, 18.321799061184436 ], [ -64.866278831471561, 18.321798390631841 ], [ -64.866208423451098, 18.321739717281446 ], [ -64.866189146374211, 18.321642822434228 ], [ -64.866179758638111, 18.32155565059935 ], [ -64.866150085376944, 18.321478034138693 ], [ -64.866110187498691, 18.321400250039858 ], [ -64.866050005404986, 18.321332021315243 ], [ -64.865979597384523, 18.321283238615365 ], [ -64.865919416600491, 18.32121500989075 ], [ -64.865899635299513, 18.32119254637945 ], [ -64.865895945950683, 18.321188187787698 ], [ -64.865894101931076, 18.32118617612997 ], [ -64.865935508552639, 18.321104703991978 ], [ -64.865930983632438, 18.321018537985992 ], [ -64.865931820513481, 18.32093220434183 ], [ -64.865932492375748, 18.320846038335787 ], [ -64.865917403633091, 18.320759704691625 ], [ -64.865902317509835, 18.320673371047462 ], [ -64.865860406664126, 18.320596928053817 ], [ -64.865807935925091, 18.320530543348809 ], [ -64.865744737654438, 18.320469187788092 ], [ -64.865676173653526, 18.320417890516012 ], [ -64.865612972763586, 18.320356534955295 ], [ -64.865555137603906, 18.320290150250287 ], [ -64.865492105661758, 18.320228794689569 ], [ -64.865439468594218, 18.320162409984562 ], [ -64.865386996545453, 18.320096026589226 ], [ -64.865318432544598, 18.320044728007474 ], [ -64.865249868543685, 18.319993598373571 ], [ -64.865181304542773, 18.319942301101491 ], [ -64.865107377430945, 18.319896032973759 ], [ -64.86503881343009, 18.319844735701679 ], [ -64.86496991415288, 18.319864181726416 ], [ -64.86492666351171, 18.319919837590191 ], [ -64.864904701605212, 18.320000806813766 ], [ -64.864887937790797, 18.320086972819752 ], [ -64.864865978503587, 18.320167942043327 ], [ -64.864859943530405, 18.320254108049312 ], [ -64.864848544136635, 18.320340106417177 ], [ -64.864830102631117, 18.320423925489195 ], [ -64.864811159520855, 18.320447059553089 ], [ -64.86476271340689, 18.320517635211729 ], [ -64.864708901562665, 18.320588210870312 ], [ -64.864665818559672, 18.32066398331142 ], [ -64.864633129121557, 18.320744784896817 ], [ -64.864595410539209, 18.320820557337925 ], [ -64.864531037491872, 18.32088090706975 ], [ -64.864440680532255, 18.32089549158826 ], [ -64.864350491210814, 18.320894653397545 ], [ -64.864260134251197, 18.32088895370066 ], [ -64.864169943620027, 18.320883086365598 ], [ -64.864079755608259, 18.320872189886245 ], [ -64.863995098345526, 18.320851235118255 ], [ -64.863910273444674, 18.32082005442345 ], [ -64.863825782510389, 18.320783844584355 ], [ -64.863751855398561, 18.320737576456622 ], [ -64.863688654508621, 18.320676220895905 ], [ -64.863662839544133, 18.32059491639609 ], [ -64.863647584473028, 18.320508582751927 ], [ -64.863627132619456, 18.320427278252112 ], [ -64.863622606389526, 18.320335915463602 ], [ -64.863623444580298, 18.320249749457616 ], [ -64.863618918350369, 18.320163415813454 ], [ -64.863614392120496, 18.320077249807412 ], [ -64.863615061363419, 18.319990916163249 ], [ -64.863615899554134, 18.319904750157264 ], [ -64.863616571416344, 18.319818584151221 ], [ -64.863606848404004, 18.319732250507059 ], [ -64.863628809000886, 18.319651282593156 ], [ -64.863677256424523, 18.319580705624901 ], [ -64.863746658616094, 18.319530581819834 ], [ -64.863816228445899, 18.319475262541971 ], [ -64.863885630637469, 18.319425137427231 ], [ -64.863960397249684, 18.319380210404688 ], [ -64.864035162552284, 18.319335115743911 ], [ -64.864109930474172, 18.319284991938844 ], [ -64.864190061506974, 18.319240064916301 ], [ -64.864259631336779, 18.319184745638438 ], [ -64.86432903352835, 18.319134620523698 ], [ -64.86440899561336, 18.319094722645445 ], [ -64.864494323428687, 18.319065050693951 ], [ -64.864584680388305, 18.319055662957851 ], [ -64.864674869709745, 18.319056333510446 ], [ -64.864765226669363, 18.31905700406304 ], [ -64.864855417300532, 18.319057843563428 ], [ -64.864940577477682, 18.319033199446608 ], [ -64.86502573634516, 18.319008556639403 ], [ -64.86509530748458, 18.318953236051868 ], [ -64.865143753598545, 18.318882660393285 ], [ -64.865213323428293, 18.318827507443871 ], [ -64.865280212357447, 18.318736982846133 ], [ -64.865280715271865, 18.318736647569835 ], [ -64.865359337561415, 18.318696583363078 ], [ -64.8654099642809, 18.318627516447748 ], [ -64.86541968729324, 18.31854503848092 ], [ -64.865452207783505, 18.318467085434293 ], [ -64.865534350474036, 18.318437413482798 ], [ -64.865616494474295, 18.318407741531303 ], [ -64.865671647423653, 18.318343034517397 ], [ -64.865714393840733, 18.318267260766618 ], [ -64.865740042476716, 18.31832626939331 ], [ -64.865780275631323, 18.318400365452987 ], [ -64.865829728883796, 18.318470270559033 ], [ -64.865879014498091, 18.318540175665078 ], [ -64.865928467750621, 18.318610080771123 ], [ -64.865959480807248, 18.318688367784375 ], [ -64.865990661501996, 18.318766822435748 ], [ -64.865985464719586, 18.318849300402633 ], [ -64.865895275398088, 18.318834380607825 ], [ -64.865801565675611, 18.318844775482376 ], [ -64.865719255346903, 18.318888863004588 ], [ -64.865648513359815, 18.318944183592123 ], [ -64.865592857495983, 18.319014926888883 ], [ -64.865535022336303, 18.319049795622846 ], [ -64.865469474512338, 18.319098913599021 ], [ -64.865393031518636, 18.319146187555646 ], [ -64.865323630636738, 18.319209554774091 ], [ -64.865260094470443, 18.319256996368836 ], [ -64.865196559613878, 18.319307790726441 ], [ -64.86517208444485, 18.319343162374821 ], [ -64.865152973696468, 18.319396136028331 ], [ -64.86514291540783, 18.319491857408593 ], [ -64.86513503641504, 18.319569809145548 ], [ -64.865179460523223, 18.319641893547441 ], [ -64.865238973374005, 18.319706937147316 ], [ -64.865298483605443, 18.319771980747191 ], [ -64.865357827508433, 18.319837024347066 ], [ -64.865424882766035, 18.319902067946941 ], [ -64.865484395616818, 18.319967111546816 ], [ -64.865528818415328, 18.320039195948709 ], [ -64.86558833126611, 18.320104239548584 ], [ -64.865662930240148, 18.320147993104172 ], [ -64.865722440471643, 18.320213036704047 ], [ -64.865789495729246, 18.320270871863727 ], [ -64.865841798830161, 18.320340944607949 ], [ -64.865843476521263, 18.320343123903797 ], [ -64.86584532054087, 18.320345638475942 ], [ -64.865869291485751, 18.32037665153257 ], [ -64.865932658704196, 18.320438174731464 ], [ -64.865996025922641, 18.320499697930302 ], [ -64.866050005404986, 18.320569770674467 ], [ -64.866113372623431, 18.320631293873362 ], [ -64.866176739841876, 18.320692817072199 ], [ -64.866239939422144, 18.320754340271037 ], [ -64.866303306640589, 18.320815863469875 ], [ -64.866357453761111, 18.320885936214097 ], [ -64.866402380783711, 18.320964726141767 ], [ -64.866438087708332, 18.321043516069437 ], [ -64.866473963580859, 18.321122305997108 ], [ -64.866527941753532, 18.32119237874133 ], [ -64.866572868776132, 18.321271168669 ], [ -64.866599524550679, 18.321349790958493 ], [ -64.866653670361529, 18.321420031340836 ], [ -64.866736149638086, 18.321385833159468 ], [ -64.866791468915892, 18.321316598606018 ], [ -64.866864057541932, 18.32136940462135 ], [ -64.866918035714605, 18.321439477365573 ], [ -64.866999675490774, 18.321492451019083 ], [ -64.8670910395889, 18.321484572026293 ], [ -64.86716446378631, 18.321432771839795 ], [ -64.867219784373845, 18.321363537286345 ], [ -64.867257000041775, 18.321285417911213 ], [ -64.867276110790215, 18.321198413714512 ], [ -64.867313326458202, 18.32112029433938 ], [ -64.867323217108662, 18.321033290142623 ], [ -64.867323887661257, 18.320946118307745 ], [ -64.867324725851972, 18.320859114111045 ], [ -64.867328916805548, 18.32076858951325 ], [ -64.867318021635867, 18.320679070744347 ], [ -64.867330594496707, 18.320589719613622 ], [ -64.867366635387953, 18.320489472003487 ], [ -64.867402343622302, 18.320411520266532 ], [ -64.867449951545552, 18.320333568529577 ], [ -64.867474091438282, 18.320244385036972 ], [ -64.86750996600108, 18.320155369182544 ], [ -64.867545840563935, 18.320077417445532 ], [ -64.867581547488555, 18.319999465708577 ], [ -64.867640723753425, 18.319932913365449 ], [ -64.867699900018238, 18.319866193384144 ], [ -64.867782210346945, 18.319822272190379 ], [ -64.867864353037533, 18.319789415114144 ], [ -64.867958398036308, 18.319745493920436 ], [ -64.868080270966971, 18.319738956032836 ], [ -64.868168113354443, 18.319730406487452 ], [ -64.868255955741915, 18.319721856942124 ], [ -64.868363076515891, 18.319722695132839 ], [ -64.868450751265243, 18.319723365685434 ], [ -64.868538426014538, 18.319724037547701 ], [ -64.868636159052471, 18.319697046496799 ], [ -64.868704890691504, 18.319641725909321 ], [ -64.868754511582154, 18.319549022015678 ], [ -64.868764905147088, 18.319465370581838 ], [ -64.868785189362484, 18.319372499050019 ], [ -64.868834810253134, 18.319279796466105 ], [ -64.868845371456189, 18.319186755986493 ], [ -64.868885101696321, 18.319112659926816 ], [ -64.868934387310674, 18.319038563867196 ], [ -64.868974117550806, 18.318964467807518 ], [ -64.869052572202179, 18.31889992843179 ], [ -64.869130859215431, 18.318863382006725 ], [ -64.869218869241024, 18.318826836891333 ], [ -64.869355829604672, 18.318762800429965 ], [ -64.869443839630264, 18.318735641741 ], [ -64.869522126643517, 18.318699096625608 ], [ -64.869600581294947, 18.318653163774115 ], [ -64.869724968797755, 18.318601363587618 ], [ -64.869855223635682, 18.318520060397475 ], [ -64.869947256976729, 18.318424505345718 ], [ -64.870015653339465, 18.31829223885012 ], [ -64.87004046378479, 18.318196183503289 ], [ -64.870054042474464, 18.318134157389977 ], [ -64.87003895504148, 18.318071963638545 ], [ -64.870012971129142, 18.317992000243862 ], [ -64.86997944350037, 18.31791538961204 ], [ -64.869930660800435, 18.317845987420469 ], [ -64.869855391273802, 18.317728808357799 ], [ -64.869822031283149, 18.317637613207467 ], [ -64.869885901416012, 18.317695448367147 ], [ -64.869979778776667, 18.317741213580462 ], [ -64.870065274230114, 18.317758311361445 ], [ -64.870155295913435, 18.317767197492742 ], [ -64.870245149958578, 18.317772057689297 ], [ -64.87033953023365, 18.317776920505139 ], [ -64.87042938427885, 18.317781614373132 ], [ -64.87051940596217, 18.317782452563847 ], [ -64.870658210345425, 18.317785133464497 ], [ -64.8707522553442, 18.317778429248392 ], [ -64.870853844059468, 18.317779267439107 ], [ -64.870947721420123, 18.317787480398522 ], [ -64.871033552149811, 18.317803238384045 ], [ -64.871127261872346, 18.317811452653132 ], [ -64.871213260240211, 18.31782704431015 ], [ -64.871299090969899, 18.31784263334788 ], [ -64.871392968330554, 18.317850847616967 ], [ -64.871486844381536, 18.317851685807682 ], [ -64.871580723051864, 18.317844981591577 ], [ -64.871667055386354, 18.3178158125545 ], [ -64.871753221392339, 18.317786643517479 ], [ -64.871839556346174, 18.317757474480402 ], [ -64.871918178635724, 18.317720760417217 ], [ -64.871996633287097, 18.317684047663647 ], [ -64.872075255576647, 18.317647336219807 ], [ -64.872153876556524, 18.317603078440129 ], [ -64.872232500155746, 18.317558989608244 ], [ -64.87231112244524, 18.317507358369539 ], [ -64.872428972060504, 18.317448517381024 ], [ -64.872507594349997, 18.317404259601346 ], [ -64.872586216639547, 18.317360170769462 ], [ -64.872664837619425, 18.317315915609129 ], [ -64.872743461218647, 18.317271825467571 ], [ -64.872821914560348, 18.317235112714059 ], [ -64.87290053815957, 18.317198401270161 ], [ -64.87297916044912, 18.317154143490484 ], [ -64.873057615100493, 18.317117430736971 ], [ -64.873136237390042, 18.317080719293074 ], [ -64.873207148324923, 18.317028919106576 ], [ -64.87328560166668, 18.316992206353063 ], [ -64.873364225265846, 18.316955493599494 ], [ -64.873434968562606, 18.316903859741501 ], [ -64.873505879497543, 18.316852059555004 ], [ -64.873568911439691, 18.316792884599863 ], [ -64.873639822374571, 18.316741252051486 ], [ -64.873718443354448, 18.316696995581481 ], [ -64.873797065643998, 18.316652739111476 ], [ -64.873875521605044, 18.316616026357906 ], [ -64.873962021577711, 18.316571937526021 ], [ -64.874040643867204, 18.316535223462836 ], [ -64.874126809873246, 18.316513599451923 ], [ -64.874220854872021, 18.31649935020971 ], [ -64.874307020878064, 18.316485099657768 ], [ -64.874393186884049, 18.316470850415556 ], [ -64.874471641535479, 18.316434137661986 ], [ -64.874557807541464, 18.31641251365113 ], [ -64.874628718476401, 18.316360713464633 ], [ -64.874684040373552, 18.316293993483271 ], [ -64.874747238644204, 18.316234649580338 ], [ -64.874810270586352, 18.316175473315468 ], [ -64.874888892875845, 18.31613121553579 ], [ -64.874967516475067, 18.31609450409195 ], [ -64.875053682481109, 18.316072877461693 ], [ -64.875116714423257, 18.316013533558703 ], [ -64.875179912693852, 18.315954358603562 ], [ -64.875219642933985, 18.315879927267588 ], [ -64.875243782826715, 18.315797952215178 ], [ -64.875236742024697, 18.315708264498483 ], [ -64.875198352889697, 18.315633331557763 ], [ -64.875167842747487, 18.315550853590935 ], [ -64.875137332605277, 18.315468375624107 ], [ -64.875114030903262, 18.315438368396315 ], [ -64.875049322579684, 18.315360081383062 ], [ -64.874976567625197, 18.315301240394547 ], [ -64.874916217893315, 18.315230832374027 ], [ -64.874843462938827, 18.315171991385512 ], [ -64.874770707984339, 18.31511315039694 ], [ -64.874685715445366, 18.315065708802194 ], [ -64.874612960490822, 18.315018602483747 ], [ -64.874491590474577, 18.314935956878742 ], [ -64.874406431607099, 18.314911984624132 ], [ -64.874321271429949, 18.314888012369579 ], [ -64.874223704720464, 18.314875439508739 ], [ -64.874065120345904, 18.314862531371659 ], [ -64.873967722584268, 18.314850126148997 ], [ -64.873882393459269, 18.314826153894444 ], [ -64.873797402229968, 18.314790446969766 ], [ -64.873712240743146, 18.314754740045089 ], [ -64.873627417151965, 18.314695899056517 ], [ -64.873554494559301, 18.314648625099949 ], [ -64.873548124309821, 18.314595483808262 ], [ -64.873546615566511, 18.314583916776371 ], [ -64.87354309516553, 18.314555250653711 ], [ -64.873616854639181, 18.314497583132209 ], [ -64.873707380546648, 18.314425834006556 ], [ -64.873692459442168, 18.314343523677849 ], [ -64.873630602276705, 18.314275797867651 ], [ -64.873568408525273, 18.314215615774003 ], [ -64.873506548740465, 18.314147889963806 ], [ -64.873452401619943, 18.314080164153609 ], [ -64.873437483134808, 18.313997853824901 ], [ -64.873438321325523, 18.313908167417878 ], [ -64.873438990568388, 18.313818648648976 ], [ -64.873400601433445, 18.313743546760463 ], [ -64.873377971593698, 18.313661236431756 ], [ -64.873339413510905, 18.313586134543243 ], [ -64.873293145383116, 18.313511200292908 ], [ -64.873231120579533, 18.313450850561082 ], [ -64.87316909446622, 18.313390668467378 ], [ -64.873107068352965, 18.313330318735495 ], [ -64.87304504223971, 18.31326996900367 ], [ -64.873029953497053, 18.313217665902755 ], [ -64.873061804744395, 18.313149101901843 ], [ -64.873140259395825, 18.31311238914833 ], [ -64.87322659434966, 18.313083220111253 ], [ -64.873312760355645, 18.31306897086904 ], [ -64.873406636406628, 18.313069809059755 ], [ -64.873492802412613, 18.31304801610105 ], [ -64.873578968418656, 18.31303376685878 ], [ -64.873665303372491, 18.313004597821703 ], [ -64.873743924352368, 18.312960508989875 ], [ -64.873752475207368, 18.312870990220972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_238", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.957636242434205, 18.320369610730552 ], [ -64.957633057309465, 18.320483269392184 ], [ -64.957491235439647, 18.320473378741667 ], [ -64.957402553551788, 18.320481090096337 ], [ -64.957313874283329, 18.320484610497317 ], [ -64.95722519239547, 18.320483939944779 ], [ -64.957136513126954, 18.320479078438609 ], [ -64.957101812031169, 18.320402635444907 ], [ -64.957124609509037, 18.320322336773927 ], [ -64.95712092146988, 18.320237679511195 ], [ -64.957063758172467, 18.320173809378332 ], [ -64.956975245232456, 18.320160399636507 ], [ -64.956886732292389, 18.320146988585009 ], [ -64.956793693122449, 18.320141958130989 ], [ -64.956705012544319, 18.320141287578394 ], [ -64.956611973374379, 18.320153357524816 ], [ -64.956523292796192, 18.320156877925797 ], [ -64.956434444579884, 18.320164590590139 ], [ -64.956350122593449, 18.320185208772159 ], [ -64.956262783120451, 18.320201972586574 ], [ -64.956313577478056, 18.320140784663977 ], [ -64.956354313547081, 18.320087140457929 ], [ -64.956408795943844, 18.320020588114744 ], [ -64.956481886174629, 18.319974990539549 ], [ -64.956557658615736, 18.319931739898436 ], [ -64.956646674470164, 18.319911958597402 ], [ -64.956735521376856, 18.319907432367529 ], [ -64.956827053113159, 18.319905588347979 ], [ -64.956915901329467, 18.319906258900517 ], [ -64.957001898387659, 18.319927548944804 ], [ -64.957082366006432, 18.319961579488051 ], [ -64.957151934526507, 18.320013548622342 ], [ -64.957207926976309, 18.320078255636304 ], [ -64.95725570253768, 18.320147993104172 ], [ -64.957336336484957, 18.320179509075274 ], [ -64.957422336162495, 18.320193087764892 ], [ -64.95750850216848, 18.320201469672099 ], [ -64.95754555019829, 18.320276237593987 ], [ -64.957588130286865, 18.32033323325328 ], [ -64.957636242434205, 18.320369610730552 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1065", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.879614276878954, 18.319153898910258 ], [ -64.879524255195633, 18.319160436797858 ], [ -64.879434065874136, 18.319159767554993 ], [ -64.879344044190816, 18.319158928054605 ], [ -64.879253687231198, 18.319172506744223 ], [ -64.879163665547878, 18.319171837501358 ], [ -64.879073476226381, 18.319171165639091 ], [ -64.878983454543061, 18.319177535888571 ], [ -64.87889326522162, 18.319184073776171 ], [ -64.878803075900123, 18.319183235585456 ], [ -64.878713054216803, 18.319182565032861 ], [ -64.878617500474718, 18.319181894480323 ], [ -64.878530663916138, 18.319172506744223 ], [ -64.878443994995678, 18.319154738410646 ], [ -64.878360343561837, 18.319119700728891 ], [ -64.87827970961456, 18.319084664356808 ], [ -64.878199075667283, 18.319052477833168 ], [ -64.878112239108702, 18.319057506977458 ], [ -64.87805473922532, 18.319120036005188 ], [ -64.877985337033692, 18.31917099800097 ], [ -64.877898668113232, 18.319161777903048 ], [ -64.877811831554652, 18.319155240015391 ], [ -64.877766401617635, 18.319148366851493 ], [ -64.877724994996072, 18.319146356503438 ], [ -64.877636314417884, 18.319143337707203 ], [ -64.877545286905672, 18.319140321530256 ], [ -64.877521314651119, 18.319139984944286 ], [ -64.877599936940612, 18.319068069490186 ], [ -64.87772231278575, 18.318957259367323 ], [ -64.877864302293744, 18.318783418612043 ], [ -64.877949127194597, 18.318652997445668 ], [ -64.877990030901742, 18.31856062751865 ], [ -64.877994221855317, 18.318468092572857 ], [ -64.877958012016222, 18.318391145355065 ], [ -64.877920125795697, 18.318321241558692 ], [ -64.877869499076212, 18.318255527406222 ], [ -64.877795905930952, 18.318200540785313 ], [ -64.8776146890973, 18.318090402524717 ], [ -64.877454762307934, 18.318027705858867 ], [ -64.877256781659867, 18.317978587882692 ], [ -64.877097860699337, 18.317928465387297 ], [ -64.876916140951266, 18.317861576458142 ], [ -64.876732074269171, 18.317732327449164 ], [ -64.875996813369568, 18.317557648503112 ], [ -64.87600150854729, 18.317461593156281 ], [ -64.87603017336022, 18.317325134397379 ], [ -64.876061856969443, 18.317245003364519 ], [ -64.876097899170418, 18.317165207608014 ], [ -64.876142826193018, 18.317093793758659 ], [ -64.876183226985688, 18.317018022627224 ], [ -64.876232512600041, 18.316946607468196 ], [ -64.876286324444266, 18.316866811711691 ], [ -64.876348685833818, 18.316808307309088 ], [ -64.876393612856418, 18.316736893459733 ], [ -64.876460332837723, 18.316682577391418 ], [ -64.876540296232406, 18.316649386348558 ], [ -64.876620091988968, 18.316616192686411 ], [ -64.876704247646899, 18.316595742142511 ], [ -64.876792759277293, 18.316592220431801 ], [ -64.876881272217304, 18.316580319433228 ], [ -64.876969785157314, 18.316572608078616 ], [ -64.877058130459204, 18.316573278631211 ], [ -64.877146475761094, 18.316578306465829 ], [ -64.877234821062984, 18.316587526563751 ], [ -64.877327692594804, 18.316596580333226 ], [ -64.877411511666764, 18.316618373291931 ], [ -64.877499689330534, 18.316631784343429 ], [ -64.877588034632424, 18.316645195394983 ], [ -64.877676379934314, 18.316654415492906 ], [ -64.877767575084647, 18.316665144334138 ], [ -64.877769586742374, 18.316665144334138 ], [ -64.877771598400102, 18.316665144334138 ], [ -64.87777361005783, 18.316665144334138 ], [ -64.87777545407738, 18.316665310662586 ], [ -64.877777465735107, 18.316665310662586 ], [ -64.877779477392835, 18.316665310662586 ], [ -64.877781489050562, 18.316665310662586 ], [ -64.87778350070829, 18.316665310662586 ], [ -64.877785512366017, 18.316665310662586 ], [ -64.877787524023802, 18.316665310662586 ], [ -64.877789368043352, 18.316665310662586 ], [ -64.87779137970108, 18.316665144334138 ], [ -64.877793391358807, 18.316665144334138 ], [ -64.877795403016535, 18.316665144334138 ], [ -64.877797414674262, 18.316665144334138 ], [ -64.87779942633199, 18.316665144334138 ], [ -64.877801270351597, 18.316665144334138 ], [ -64.877803282009324, 18.316664975386288 ], [ -64.877805293667052, 18.316664975386288 ], [ -64.877807305324779, 18.316664975386288 ], [ -64.877809316982507, 18.316664809057841 ], [ -64.877811328640234, 18.316664809057841 ], [ -64.877813172659785, 18.316664809057841 ], [ -64.877815184317512, 18.316664641419663 ], [ -64.87781719597524, 18.316664641419663 ], [ -64.877819207632967, 18.316664472471871 ], [ -64.877821219290695, 18.316664472471871 ], [ -64.877823230948422, 18.316664306143366 ], [ -64.87782507496803, 18.316664306143366 ], [ -64.877827086625757, 18.316664138505246 ], [ -64.877829098283485, 18.316664138505246 ], [ -64.877831109941212, 18.316663969557453 ], [ -64.87783312159894, 18.316663803228948 ], [ -64.877835133256667, 18.316663803228948 ], [ -64.877836977276274, 18.316663635590828 ], [ -64.877838988934002, 18.316663466642979 ], [ -64.877841000591729, 18.316663300314531 ], [ -64.877843012249457, 18.316663300314531 ], [ -64.877845023907184, 18.316663131366681 ], [ -64.877846867926735, 18.316662965038233 ], [ -64.877848879584462, 18.316662797400113 ], [ -64.87785089124219, 18.316662628452264 ], [ -64.877852902899917, 18.316662462123816 ], [ -64.877854914557645, 18.316662294485639 ], [ -64.877856926215372, 18.316662294485639 ], [ -64.87785877023498, 18.316662125537846 ], [ -64.877860781892707, 18.316661959209398 ], [ -64.877862793550435, 18.316661622623428 ], [ -64.877864805208162, 18.316661456294923 ], [ -64.877866649227769, 18.316661287347131 ], [ -64.877868660885497, 18.316661121018626 ], [ -64.877870672543224, 18.316660953380506 ], [ -64.877872684200952, 18.316660784432713 ], [ -64.877874695858679, 18.316660618104208 ], [ -64.87787653987823, 18.316660281518239 ], [ -64.877878551535957, 18.316660115189791 ], [ -64.877880563193685, 18.31665994755167 ], [ -64.877882574851412, 18.316659778603821 ], [ -64.87788441887102, 18.316659444637196 ], [ -64.877886430528747, 18.316659275689403 ], [ -64.877888442186475, 18.316659109360899 ], [ -64.877890453844202, 18.316658774084658 ], [ -64.877892297863752, 18.316658606446481 ], [ -64.87789430952148, 18.316658271170184 ], [ -64.877896321179207, 18.316658103532063 ], [ -64.877898332836935, 18.316657768255766 ], [ -64.877900176856542, 18.316657600617646 ], [ -64.87790218851427, 18.316657265341348 ], [ -64.877904200171997, 18.316657096393499 ], [ -64.877906211829725, 18.316656762426931 ], [ -64.877908055849332, 18.316656427150633 ], [ -64.877910067507059, 18.316656259512456 ], [ -64.877912079164787, 18.316655924236215 ], [ -64.877913923184337, 18.316655587650246 ], [ -64.877915934842065, 18.316655252373948 ], [ -64.877917946499792, 18.316655086045444 ], [ -64.87791995815752, 18.316654749459531 ], [ -64.877921802177127, 18.316654415492906 ], [ -64.877923813834855, 18.316654080216608 ], [ -64.877925825492582, 18.316653743630638 ], [ -64.877927669512133, 18.316653408354341 ], [ -64.87792968116986, 18.316653242025893 ], [ -64.877931692827588, 18.316652905439923 ], [ -64.877933536847195, 18.316652571473298 ], [ -64.877935548504922, 18.316652236197001 ], [ -64.87793756016265, 18.316651899611088 ], [ -64.877939404182257, 18.316651565644463 ], [ -64.877941415839985, 18.316651061420316 ], [ -64.877943427497712, 18.316650727453748 ], [ -64.877945271517262, 18.316650392177451 ], [ -64.87794728317499, 18.316650055591481 ], [ -64.877949127194597, 18.316649721624856 ], [ -64.877951138852325, 18.316649386348558 ], [ -64.877953150510052, 18.316648883434141 ], [ -64.877954994529603, 18.316648548157843 ], [ -64.87795700618733, 18.316648211571874 ], [ -64.877958850206937, 18.316647877605305 ], [ -64.877960861864665, 18.316647373381159 ], [ -64.877962873522392, 18.316647039414534 ], [ -64.877964717542, 18.316646536500116 ], [ -64.877966729199727, 18.316646201223818 ], [ -64.877968573219277, 18.316645864637906 ], [ -64.877970584877005, 18.316645363033103 ], [ -64.877972428896612, 18.316645026447134 ], [ -64.87797444055434, 18.316644523532716 ], [ -64.877976452212067, 18.316644189566091 ], [ -64.877978296231618, 18.316643686651673 ], [ -64.877980307889402, 18.316643182427583 ], [ -64.877982151908952, 18.316642848460958 ], [ -64.87798416356668, 18.316642345546541 ], [ -64.877986007586287, 18.316641842632066 ], [ -64.877988019244015, 18.316641507355826 ], [ -64.877989863263565, 18.316641004441351 ], [ -64.877991874921292, 18.316640501526933 ], [ -64.8779937189409, 18.316640166250636 ], [ -64.877995730598627, 18.316639663336218 ], [ -64.877997574618178, 18.316639160421801 ], [ -64.877999586275962, 18.316638657507383 ], [ -64.878001430295512, 18.316638154592908 ], [ -64.87800327431512, 18.316637650368818 ], [ -64.878005285972847, 18.316637147454401 ], [ -64.878007129992397, 18.316636644539983 ], [ -64.878009141650125, 18.316636141625509 ], [ -64.878010985669732, 18.316635640020763 ], [ -64.87801299732746, 18.316635137106346 ], [ -64.87801484134701, 18.316634634191928 ], [ -64.878016685366617, 18.316634131277453 ], [ -64.878018697024345, 18.316633628363036 ], [ -64.878020541043952, 18.316633125448618 ], [ -64.87802255270168, 18.3166326225342 ], [ -64.87802439672123, 18.316632119619726 ], [ -64.878026240740837, 18.316631615395636 ], [ -64.878028252398565, 18.316630946152713 ], [ -64.878030096418115, 18.316630443238296 ], [ -64.878031940437722, 18.316629940323878 ], [ -64.87803395209545, 18.316629268461611 ], [ -64.878035796115057, 18.316628765547193 ], [ -64.878037640134607, 18.316628262632776 ], [ -64.878039651792335, 18.316627593389853 ], [ -64.878041495811942, 18.316627090475436 ], [ -64.878043339831493, 18.316626587561018 ], [ -64.8780451838511, 18.316625915698751 ], [ -64.878047195508827, 18.316625414094005 ], [ -64.878049039528435, 18.316624743541411 ], [ -64.878050883547985, 18.316624240626993 ], [ -64.878052727567592, 18.316623570074398 ], [ -64.87805473922532, 18.316622899521803 ], [ -64.87805658324487, 18.316622396607386 ], [ -64.878058427264477, 18.316621726054791 ], [ -64.878060271284085, 18.316621223140373 ], [ -64.878062282941812, 18.316620552587779 ], [ -64.878064126961362, 18.316619882035241 ], [ -64.87806597098097, 18.316619211482646 ], [ -64.87806781500052, 18.316618708568228 ], [ -64.878069659020127, 18.316618038015633 ], [ -64.878071503039735, 18.316617367463095 ], [ -64.878073514697462, 18.316616695600828 ], [ -64.878075358717012, 18.316616026357906 ], [ -64.87807720273662, 18.316615523443488 ], [ -64.87807904675617, 18.316614851581221 ], [ -64.878080890775777, 18.316614182338355 ], [ -64.878082734795385, 18.316613510476088 ], [ -64.878084578814935, 18.316612841233166 ], [ -64.878086422834542, 18.316612169370956 ], [ -64.878088266854093, 18.316611500128033 ], [ -64.8780901108737, 18.316610829575438 ], [ -64.87809195489325, 18.3166101590229 ], [ -64.878093966550978, 18.316609488470306 ], [ -64.878095810570585, 18.316608650279591 ], [ -64.878097654590192, 18.316607978417323 ], [ -64.878099498609743, 18.316607309174458 ], [ -64.87810134262935, 18.316606638621863 ], [ -64.8781031866489, 18.316605968069268 ], [ -64.878105030668507, 18.316605128568881 ], [ -64.878106874688115, 18.316604459325958 ], [ -64.878108551069545, 18.316603787463748 ], [ -64.878110395089095, 18.316603118220826 ], [ -64.878112239108702, 18.316602280030111 ], [ -64.87811408312831, 18.316601609477516 ], [ -64.87811592714786, 18.316600771286801 ], [ -64.878117771167467, 18.316600099424591 ], [ -64.878119615187018, 18.316599430181668 ], [ -64.878121459206625, 18.316598590681281 ], [ -64.878123303226232, 18.316597921438358 ], [ -64.878125147245783, 18.316597083247643 ], [ -64.878126823627213, 18.316596411385376 ], [ -64.87812866764682, 18.316595574504333 ], [ -64.87813051166637, 18.316594736313618 ], [ -64.878132355685977, 18.316594064451408 ], [ -64.878134199705585, 18.316593227570308 ], [ -64.878136043725135, 18.316592557017771 ], [ -64.878137720106565, 18.316591717517383 ], [ -64.878139564126172, 18.31659088063634 ], [ -64.87814140814578, 18.316590042445625 ], [ -64.87814325216533, 18.316589370583358 ], [ -64.87814492854676, 18.316588532392643 ], [ -64.878146772566367, 18.3165876955116 ], [ -64.878148616585975, 18.316586857320885 ], [ -64.878150460605525, 18.316586185458618 ], [ -64.878152136986955, 18.316585348577576 ], [ -64.878153981006562, 18.316584510386861 ], [ -64.87815582502617, 18.316583672196145 ], [ -64.8781575014076, 18.31658283400543 ], [ -64.87815934542715, 18.316581994504986 ], [ -64.878161189446757, 18.316581157623943 ], [ -64.878162865828187, 18.316580319433228 ], [ -64.878164709847795, 18.316579481242513 ], [ -64.878166386229225, 18.316578643051798 ], [ -64.878168230248775, 18.316577803551411 ], [ -64.878169906630262, 18.316576965360696 ], [ -64.878171750649813, 18.316576128479653 ], [ -64.87817359466942, 18.316575122650761 ], [ -64.87817527105085, 18.316574284460046 ], [ -64.878177115070457, 18.316573446269331 ], [ -64.878178791451887, 18.316572608078616 ], [ -64.878180635471438, 18.316571768578228 ], [ -64.878182311852868, 18.316570764059065 ], [ -64.878184155872475, 18.316569924558621 ], [ -64.878185832253905, 18.316569086367906 ], [ -64.878187508635335, 18.316568080539071 ], [ -64.878189352654942, 18.316567242348356 ], [ -64.878191029036373, 18.316566405467313 ], [ -64.87819287305598, 18.316565399638421 ], [ -64.87819454943741, 18.316564561447706 ], [ -64.878196393457017, 18.31656355561887 ], [ -64.878198069838447, 18.316562717428098 ], [ -64.878199746219877, 18.316561711599263 ], [ -64.878201590239428, 18.316560873408548 ], [ -64.878203266620915, 18.316559867579656 ], [ -64.878204943002345, 18.316559029388941 ], [ -64.878206619383775, 18.316558023560106 ], [ -64.878208463403382, 18.316557016421541 ], [ -64.878210139784812, 18.316556179540498 ], [ -64.878211816166242, 18.316555172401991 ], [ -64.87821366018585, 18.316554166573098 ], [ -64.87821533656728, 18.316553328382383 ], [ -64.87821701294871, 18.316552322553548 ], [ -64.87821868933014, 18.316551318034328 ], [ -64.87822036571157, 18.316550478533941 ], [ -64.878222209731177, 18.316549474014778 ], [ -64.878223886112607, 18.316548468185886 ], [ -64.878225562494038, 18.31654746235705 ], [ -64.878227238875468, 18.316546456528158 ], [ -64.878228915256898, 18.316545449389594 ], [ -64.878230591638385, 18.316544443560758 ], [ -64.878232268019815, 18.316543605370043 ], [ -64.878233944401245, 18.316542599541151 ], [ -64.878235620782675, 18.316541595021988 ], [ -64.878237297164105, 18.316540589193096 ], [ -64.878239141183712, 18.316539583364261 ], [ -64.878240817565143, 18.316538577535368 ], [ -64.878242493946573, 18.316537404068356 ], [ -64.878244170328003, 18.316536398239521 ], [ -64.878245679071313, 18.316535392410628 ], [ -64.878247355452743, 18.316534386581793 ], [ -64.87824903183423, 18.316533379443229 ], [ -64.87825070821566, 18.316532373614393 ], [ -64.87825238459709, 18.316531369095173 ], [ -64.87825406097852, 18.316530195628218 ], [ -64.87825573735995, 18.316529188489653 ], [ -64.87825741374138, 18.316528182660761 ], [ -64.878259090122867, 18.316527178141598 ], [ -64.878260766504297, 18.316526003364913 ], [ -64.878262275247607, 18.316524997536078 ], [ -64.878263951629037, 18.316523993016858 ], [ -64.878265628010467, 18.316522819549846 ], [ -64.878267304391898, 18.316521812411338 ], [ -64.878268813135207, 18.316520640253998 ], [ -64.878270489516638, 18.316519634425106 ], [ -64.878272165898068, 18.31651862859627 ], [ -64.878273842279498, 18.316517455129258 ], [ -64.878275351022808, 18.316516449300366 ], [ -64.878277027404238, 18.316515274523681 ], [ -64.878278703785668, 18.316514270004518 ], [ -64.878280212528978, 18.316513096537506 ], [ -64.878281888910408, 18.316511923070493 ], [ -64.878283565291895, 18.316510917241658 ], [ -64.878285074035148, 18.316509742464973 ], [ -64.878286750416578, 18.316508570307633 ], [ -64.878288259159888, 18.316507564478741 ], [ -64.878289935541318, 18.316506391011728 ], [ -64.878291444284628, 18.316505217544716 ], [ -64.878293120666058, 18.316504210406208 ], [ -64.878294629409368, 18.316503038248868 ], [ -64.878296305790798, 18.316501863472183 ], [ -64.878297814534108, 18.316500691314843 ], [ -64.878299490915538, 18.316499685486008 ], [ -64.878300999658848, 18.316498512018995 ], [ -64.878302676040278, 18.316497338551983 ], [ -64.878304184783588, 18.31649616508497 ], [ -64.878305693526897, 18.316494991617958 ], [ -64.878307369908327, 18.316493818150946 ], [ -64.878308878651637, 18.316492643374261 ], [ -64.878310555033067, 18.316491471216921 ], [ -64.878312063776377, 18.316490296440236 ], [ -64.87831357251963, 18.316489124282896 ], [ -64.87831508126294, 18.316487949506211 ], [ -64.87831675764437, 18.316486777348871 ], [ -64.87831826638768, 18.316485602572186 ], [ -64.87831977513099, 18.316484430414903 ], [ -64.878321283874243, 18.316483255638218 ], [ -64.87832296025573, 18.316482083480878 ], [ -64.878324468998983, 18.316480910013865 ], [ -64.878325977742293, 18.316479567599004 ], [ -64.878327486485603, 18.31647839544172 ], [ -64.878328995228912, 18.316477220665035 ], [ -64.878330503972165, 18.316476048507695 ], [ -64.878332012715475, 18.316474875040683 ], [ -64.878333521458785, 18.316473532625821 ], [ -64.878335197840215, 18.316472360468538 ], [ -64.878336706583525, 18.316471187001525 ], [ -64.878338215326835, 18.316469844586663 ], [ -64.878339724070088, 18.316468672429323 ], [ -64.878341232813398, 18.316467497652638 ], [ -64.878342741556708, 18.316466156547506 ], [ -64.878344250300017, 18.316464984390166 ], [ -64.87834559140515, 18.316463643285033 ], [ -64.87834710014846, 18.316462468508348 ], [ -64.87834860889177, 18.316461296351008 ], [ -64.878350117635023, 18.316459955245875 ], [ -64.878351626378333, 18.316458780469191 ], [ -64.878353135121642, 18.316457439364001 ], [ -64.878354643864952, 18.316456099568541 ], [ -64.878355984970085, 18.316454926101528 ], [ -64.878357493713395, 18.316453584996395 ], [ -64.878359002456648, 18.316452411529383 ], [ -64.878360511199958, 18.31645107042425 ], [ -64.878362019943268, 18.316449729319061 ], [ -64.8783633610484, 18.316448554542376 ], [ -64.87836486979171, 18.316447213437243 ], [ -64.87836637853502, 18.316445873641783 ], [ -64.878367719640153, 18.31644470017477 ], [ -64.878369228383463, 18.316443359069581 ], [ -64.878370737126772, 18.316442016654776 ], [ -64.878372078231905, 18.316440675549643 ], [ -64.878373586975215, 18.316439503392303 ], [ -64.878374928080348, 18.316438162287113 ], [ -64.878376436823658, 18.316436821181981 ], [ -64.87837777792879, 18.316435480076848 ], [ -64.8783792866721, 18.316434137661986 ], [ -64.878380627777233, 18.316432796556853 ], [ -64.878382136520543, 18.31643145545172 ], [ -64.878383477625675, 18.316430114346531 ], [ -64.878384986368985, 18.316428942189191 ], [ -64.878386327474118, 18.316427601084058 ], [ -64.878387668579308, 18.316426258669253 ], [ -64.878389177322617, 18.316424917564063 ], [ -64.87839051842775, 18.316423576458931 ], [ -64.878391859532883, 18.316422069025293 ], [ -64.878393368276193, 18.316420726610488 ], [ -64.878394709381325, 18.316419385505355 ], [ -64.878396050486515, 18.316418044400166 ], [ -64.878397559229768, 18.316416704604706 ], [ -64.878398900334957, 18.316415363499573 ], [ -64.87840024144009, 18.316414022394383 ], [ -64.878401582545223, 18.31641268128925 ], [ -64.878402923650413, 18.316411172545941 ], [ -64.878404432393666, 18.316409831440808 ], [ -64.878405773498855, 18.316408490335618 ], [ -64.878407114603988, 18.316407149230486 ], [ -64.878408455709177, 18.316405808125353 ], [ -64.87840979681431, 18.316404299382043 ], [ -64.878411137919443, 18.31640295827691 ], [ -64.878412479024632, 18.316401617171721 ], [ -64.878413820129765, 18.316400108428468 ], [ -64.878415161234898, 18.316398767323278 ], [ -64.878416502340087, 18.316397426218145 ], [ -64.87841784344522, 18.316395917474836 ], [ -64.878419184550353, 18.316394576369703 ], [ -64.878420525655542, 18.316393067626393 ], [ -64.878421866760675, 18.31639172652126 ], [ -64.878423207865808, 18.316390385416071 ], [ -64.87842438133282, 18.316388875363145 ], [ -64.87842572243801, 18.316387535567628 ], [ -64.878427063543143, 18.316386025514703 ], [ -64.878428404648275, 18.316384684409513 ], [ -64.878429745753465, 18.316383176975876 ], [ -64.87843091922042, 18.316381668232623 ], [ -64.87843226032561, 18.316380327127433 ], [ -64.878433601430743, 18.31637881838418 ], [ -64.878434942535876, 18.316377477278991 ], [ -64.878436116002888, 18.316375968535738 ], [ -64.878437457108078, 18.316374458482755 ], [ -64.87843863057509, 18.316373117377566 ], [ -64.878439971680223, 18.316371608634313 ], [ -64.878441312785355, 18.316370101200675 ], [ -64.878442486252368, 18.316368760095543 ], [ -64.878443827357557, 18.316367251352233 ], [ -64.87844500082457, 18.316365742608923 ], [ -64.878446341929703, 18.316364232555941 ], [ -64.878447515396715, 18.316362891450808 ], [ -64.878448856501848, 18.316361384017171 ], [ -64.87845002996886, 18.316359875273861 ], [ -64.878451203435873, 18.316358366530608 ], [ -64.878452544541005, 18.316356856477626 ], [ -64.878453718008018, 18.316355349043988 ], [ -64.878455059113207, 18.316354006629183 ], [ -64.878456232580163, 18.316352499195546 ], [ -64.878457406047175, 18.316350990452236 ], [ -64.878458579514188, 18.31634948039931 ], [ -64.878459920619377, 18.316347971656 ], [ -64.87846109408639, 18.316346464222363 ], [ -64.878462267553346, 18.316344955479053 ], [ -64.878463441020358, 18.316343445426128 ], [ -64.878464782125548, 18.31634193799249 ], [ -64.87846595559256, 18.31634042924918 ], [ -64.878467129059572, 18.316338920505871 ], [ -64.878468302526585, 18.316337410452945 ], [ -64.878469475993541, 18.316335903019308 ], [ -64.878470649460553, 18.316334394275998 ], [ -64.878471822927565, 18.316332885532688 ], [ -64.878472996394578, 18.316331375479706 ], [ -64.87847416986159, 18.316329700407948 ], [ -64.878475343328603, 18.316328190355023 ], [ -64.878476516795615, 18.316326681611713 ], [ -64.878477690262628, 18.316325174178075 ], [ -64.87847886372964, 18.316323665434766 ], [ -64.878480037196653, 18.31632215538184 ], [ -64.878481210663665, 18.316320480310026 ], [ -64.8784822164925, 18.316318971566773 ], [ -64.878483389959513, 18.31631746151379 ], [ -64.878484563426525, 18.316315954080153 ], [ -64.878485736893538, 18.316314276389051 ], [ -64.87848691036055, 18.316312767645741 ], [ -64.878487916189385, 18.316311260212103 ], [ -64.878489089656398, 18.316309582521001 ], [ -64.87849026312341, 18.316308075087363 ], [ -64.878491268952303, 18.31630656634411 ], [ -64.878492442419315, 18.31630488996268 ], [ -64.878493615886327, 18.31630338121937 ], [ -64.878494621715163, 18.316301703528268 ], [ -64.878495795182175, 18.31630019609463 ], [ -64.878496801011011, 18.31629868735132 ], [ -64.878497974478023, 18.31629701096989 ], [ -64.878498980306915, 18.316295502226581 ], [ -64.878500153773928, 18.316293824535478 ], [ -64.878501159602763, 18.316292317101841 ], [ -64.878502333069775, 18.316290639410738 ], [ -64.878503338898668, 18.316289131977101 ], [ -64.878504344727503, 18.316287455595671 ], [ -64.878505518194515, 18.316285945542688 ], [ -64.878506524023408, 18.316284270470931 ], [ -64.878507529852243, 18.316282760417948 ], [ -64.878508703319255, 18.316281085346191 ], [ -64.878509709148148, 18.31627940896476 ], [ -64.878510714976983, 18.316277900221451 ], [ -64.878511720805875, 18.316276222530348 ], [ -64.878512894272887, 18.31627454745859 ], [ -64.878513900101723, 18.316273037405608 ], [ -64.878514905930615, 18.31627136233385 ], [ -64.87851591175945, 18.316269684642748 ], [ -64.878516917588342, 18.31626817720911 ], [ -64.878517923417178, 18.316266499518008 ], [ -64.87851892924607, 18.31626482444625 ], [ -64.878519935074905, 18.316263314393268 ], [ -64.878520940903798, 18.31626163932151 ], [ -64.878521946732633, 18.316259961630408 ], [ -64.878522952561525, 18.31625828655865 ], [ -64.87852395839036, 18.316256610177163 ], [ -64.878524964219253, 18.31625510143391 ], [ -64.878525970048088, 18.316253425052423 ], [ -64.87852697587698, 18.316251747361321 ], [ -64.878527981705815, 18.316250072289563 ], [ -64.87852881989653, 18.31624839459846 ], [ -64.878529825725423, 18.316246719526703 ], [ -64.878530831554258, 18.31624520947372 ], [ -64.87853183738315, 18.316243534401963 ], [ -64.878532843211985, 18.316241858020533 ], [ -64.8785336814027, 18.316240181639046 ], [ -64.878534687231593, 18.316238505257616 ], [ -64.878535693060428, 18.316236827566513 ], [ -64.878536531251143, 18.316235152494755 ], [ -64.878537537080035, 18.316233476113325 ], [ -64.87853837527075, 18.316231798422223 ], [ -64.878539381099586, 18.316230123350408 ], [ -64.878540219290358, 18.316228446968978 ], [ -64.878541225119193, 18.316226770587548 ], [ -64.878542063309908, 18.316225094206118 ], [ -64.8785430691388, 18.316223416515015 ], [ -64.878543907329515, 18.316221741443258 ], [ -64.87854491315835, 18.316220065061771 ], [ -64.878545751349066, 18.316218387370668 ], [ -64.878546589539781, 18.31621671229891 ], [ -64.878547595368673, 18.316215034607808 ], [ -64.878548433559388, 18.316213190588201 ], [ -64.878549271750103, 18.316211515516443 ], [ -64.878550277578995, 18.316209839135013 ], [ -64.87855111576971, 18.31620816144391 ], [ -64.878551953960425, 18.316206486372153 ], [ -64.87855279215114, 18.316204809990666 ], [ -64.878553630341855, 18.316203133609235 ], [ -64.87855446853257, 18.316201289589685 ], [ -64.878555474361463, 18.316199613208198 ], [ -64.878556312552178, 18.316197935517096 ], [ -64.878557150742893, 18.316196260445338 ], [ -64.878557988933608, 18.316194416425731 ], [ -64.878558827124323, 18.316192740044301 ], [ -64.878559665315038, 18.316191062353198 ], [ -64.878560503505753, 18.31618938728144 ], [ -64.878561341696468, 18.316187543261833 ], [ -64.878562179887183, 18.316185865570731 ], [ -64.878562850439778, 18.316184190498973 ], [ -64.878563688630493, 18.316182346479366 ], [ -64.878564526821208, 18.316180670097935 ], [ -64.878565365011923, 18.316178992406833 ], [ -64.878566203202638, 18.316177148387226 ], [ -64.878566873755233, 18.316175473315468 ], [ -64.878567711945948, 18.316173795624366 ], [ -64.878568550136663, 18.316171951604815 ], [ -64.878569388327378, 18.316170276533001 ], [ -64.878570058879973, 18.31616860015157 ], [ -64.878570897070688, 18.31616675613202 ], [ -64.878571567623283, 18.316165078440861 ], [ -64.878572405813998, 18.31616323442131 ], [ -64.878573244004713, 18.316161559349553 ], [ -64.878573914557251, 18.316159715329945 ], [ -64.878574752748023, 18.316158038948515 ], [ -64.87857542330056, 18.316156193619236 ], [ -64.878576261491276, 18.316154518547478 ], [ -64.87857693204387, 18.316152674527928 ], [ -64.878577602596465, 18.316150998146441 ], [ -64.87857844078718, 18.31614915412689 ], [ -64.878579111339718, 18.316147476435788 ], [ -64.878579781892313, 18.31614563241618 ], [ -64.878580620083028, 18.316143957344423 ], [ -64.878581290635623, 18.316142113324815 ], [ -64.878581961188218, 18.316140436943385 ], [ -64.878582799378933, 18.316138591614106 ], [ -64.878583469931471, 18.316136916542348 ], [ -64.878584140484065, 18.316135072522798 ], [ -64.87858481103666, 18.31613322850319 ], [ -64.878585481589198, 18.31613155212176 ], [ -64.878586152141793, 18.316129708102153 ], [ -64.878586822694388, 18.316128030411051 ], [ -64.878587493246926, 18.3161261863915 ], [ -64.87858816379952, 18.316124342371893 ], [ -64.878588834352115, 18.316122667300135 ], [ -64.878589504904653, 18.316120823280528 ], [ -64.878590175457248, 18.316118979260978 ], [ -64.878590846009843, 18.316117301569818 ], [ -64.878591516562381, 18.316115457550268 ], [ -64.878592187114975, 18.316113613530661 ], [ -64.87859285766757, 18.316111938458903 ], [ -64.878593528220108, 18.316110094439352 ], [ -64.878594031134583, 18.316108250419745 ], [ -64.878594701687121, 18.316106406400138 ], [ -64.878595372239715, 18.316104730018708 ], [ -64.87859604279231, 18.316102885999157 ], [ -64.878596545706728, 18.31610104197955 ], [ -64.878597216259266, 18.316099197959943 ], [ -64.87859788681186, 18.316097521578513 ], [ -64.878598389726278, 18.316095677558963 ], [ -64.878599060278873, 18.316093833539355 ], [ -64.878599563193291, 18.316091989519748 ], [ -64.878600233745885, 18.316090145500198 ], [ -64.878600736660303, 18.316088469118768 ], [ -64.878601407212898, 18.31608662509916 ], [ -64.878601910127315, 18.31608478107961 ], [ -64.87860258067991, 18.316082937060003 ], [ -64.878603083594328, 18.316081093040395 ], [ -64.878603586508746, 18.316079249020845 ], [ -64.87860425706134, 18.316077572639415 ], [ -64.878604759975758, 18.316075728619808 ], [ -64.878605262890233, 18.3160738846002 ], [ -64.87860593344277, 18.31607204058065 ], [ -64.878606436357188, 18.316070196561043 ], [ -64.878606939271663, 18.316068352541492 ], [ -64.87860744218608, 18.316066508521885 ], [ -64.878607945100498, 18.316064664502278 ], [ -64.878608448014916, 18.316062988120848 ], [ -64.87860911856751, 18.316061144101297 ], [ -64.878609621481928, 18.31605930008169 ], [ -64.878610124396403, 18.316057456062083 ], [ -64.87861062731082, 18.316055612042533 ], [ -64.878611130225238, 18.316053768022925 ], [ -64.878611633139656, 18.316051924003375 ], [ -64.87861213605413, 18.316050079983768 ], [ -64.878612638968548, 18.316048235964217 ], [ -64.878612974244845, 18.31604639194461 ], [ -64.878613477159263, 18.316044547925003 ], [ -64.878613980073681, 18.31604270259578 ], [ -64.878614482988098, 18.316040858576173 ], [ -64.878614985902573, 18.316039014556623 ], [ -64.87861532117887, 18.316037170537015 ], [ -64.878615824093288, 18.316035326517408 ], [ -64.878616327007705, 18.316033482497858 ], [ -64.878616829922123, 18.31603163847825 ], [ -64.87861716519842, 18.3160297944587 ], [ -64.878617668112838, 18.316027950439093 ], [ -64.878618003389136, 18.316026106419486 ], [ -64.87861850630361, 18.316024262399935 ], [ -64.878619009218028, 18.316022418380328 ], [ -64.878619344494325, 18.316020574360778 ], [ -64.878619847408743, 18.316018731650843 ], [ -64.87862018268504, 18.316016887631235 ], [ -64.878620517961338, 18.316015043611685 ], [ -64.878621020875755, 18.316013199592078 ], [ -64.878621356152053, 18.31601118793435 ], [ -64.87862185906647, 18.316009342605128 ], [ -64.878622194342768, 18.31600749858552 ], [ -64.878622529619065, 18.316005654565913 ], [ -64.878622864895306, 18.316003810546363 ], [ -64.87862336780978, 18.316001966526755 ], [ -64.878623703086021, 18.316000122507205 ], [ -64.878624038362318, 18.315998278487598 ], [ -64.878624373638615, 18.315996434468047 ], [ -64.878624708914913, 18.315994424119992 ], [ -64.878625211829331, 18.315992580100385 ], [ -64.878625547105628, 18.315990736080778 ], [ -64.878625882381925, 18.315988892061227 ], [ -64.878626217658223, 18.31598704804162 ], [ -64.87862655293452, 18.31598520402207 ], [ -64.878626888210761, 18.315983360002463 ], [ -64.878627223487058, 18.315981348344735 ], [ -64.878627558763355, 18.315979504325128 ], [ -64.878627726401476, 18.315977660305578 ], [ -64.878628061677773, 18.31597581628597 ], [ -64.87862839695407, 18.31597397226642 ], [ -64.878628732230368, 18.315972128246813 ], [ -64.878629067506665, 18.315970116589085 ], [ -64.878629235144786, 18.315968272569478 ], [ -64.878629570421083, 18.315966428549928 ], [ -64.87862990569738, 18.31596458453032 ], [ -64.878630240973678, 18.31596274051077 ], [ -64.878630408611798, 18.31596072754337 ], [ -64.878630743888095, 18.315958883523763 ], [ -64.878630911526216, 18.315957039504156 ], [ -64.878631246802513, 18.315955195484605 ], [ -64.87863158207881, 18.315953351464998 ], [ -64.878631749716931, 18.315951341116943 ], [ -64.878632084993228, 18.315949497097392 ], [ -64.878632252631405, 18.315947653077785 ], [ -64.878632420269525, 18.315945809058235 ], [ -64.878632755545823, 18.31594379740045 ], [ -64.878632923183943, 18.3159419533809 ], [ -64.878633258460241, 18.315940109361293 ], [ -64.878633426098418, 18.315938265341742 ], [ -64.878633593736538, 18.315936252374343 ], [ -64.878633761374658, 18.315934408354735 ], [ -64.878634096650956, 18.315932565644857 ], [ -64.878634264289133, 18.31593072162525 ], [ -64.878634431927253, 18.315928709967523 ], [ -64.87863459956543, 18.315926865947915 ], [ -64.87863476720355, 18.315925021928365 ], [ -64.878634934841671, 18.315923177908758 ], [ -64.878635270117968, 18.31592116625103 ], [ -64.878635437756145, 18.31591932223148 ], [ -64.878635605394265, 18.315917478211873 ], [ -64.878635773032386, 18.315915634192265 ], [ -64.878635940670563, 18.315913622534538 ], [ -64.878635940670563, 18.315911778514987 ], [ -64.878636108308683, 18.31590993449538 ], [ -64.87863627594686, 18.31590792152798 ], [ -64.87863644358498, 18.31590607750843 ], [ -64.878636611223158, 18.315904233488823 ], [ -64.878636778861278, 18.315902389469215 ], [ -64.878636946499398, 18.31590037912116 ], [ -64.878636946499398, 18.31589853510161 ], [ -64.878637114137575, 18.315896691082003 ], [ -64.878637281775696, 18.315894679424275 ], [ -64.878637281775696, 18.315892835404725 ], [ -64.878637449413873, 18.315890991385118 ], [ -64.878637617051993, 18.31588914736551 ], [ -64.878637617051993, 18.31588713439811 ], [ -64.87863778469017, 18.31588529037856 ], [ -64.87863778469017, 18.315883446358953 ], [ -64.87863795232829, 18.315881436010898 ], [ -64.87863795232829, 18.315879591991347 ], [ -64.878638119966411, 18.31587774797174 ], [ -64.878638119966411, 18.315875736314013 ], [ -64.878638119966411, 18.315873892294405 ], [ -64.878638287604588, 18.315872048274855 ], [ -64.878638287604588, 18.315870204255248 ], [ -64.878638287604588, 18.31586819259752 ], [ -64.878638455242708, 18.31586634857797 ], [ -64.878638455242708, 18.315864504558363 ], [ -64.878638455242708, 18.315862492900635 ], [ -64.878638455242708, 18.315860647571355 ], [ -64.878638622880885, 18.315858803551805 ], [ -64.878638622880885, 18.31585679320375 ], [ -64.878638622880885, 18.315854949184143 ], [ -64.878638622880885, 18.315853105164592 ], [ -64.878638622880885, 18.315851093506865 ], [ -64.878638622880885, 18.315849249487258 ], [ -64.878638622880885, 18.31584740546765 ], [ -64.878638622880885, 18.3158455614481 ], [ -64.878638622880885, 18.3158435484807 ], [ -64.878638622880885, 18.315841704461093 ], [ -64.878638622880885, 18.315839860441542 ], [ -64.878638622880885, 18.315837850093487 ], [ -64.878638455242708, 18.31583600607388 ], [ -64.878638455242708, 18.31583416205433 ], [ -64.878638455242708, 18.315832150396602 ], [ -64.878638455242708, 18.315830306376995 ], [ -64.878638455242708, 18.315828462357388 ], [ -64.878638287604588, 18.315826449389988 ], [ -64.878638287604588, 18.315824605370437 ], [ -64.878638287604588, 18.31582276135083 ], [ -64.878638119966411, 18.315820751002775 ], [ -64.878638119966411, 18.315818906983225 ], [ -64.87863795232829, 18.315817062963617 ], [ -64.87863795232829, 18.31581521894401 ], [ -64.87863778469017, 18.315813207286283 ], [ -64.87863778469017, 18.315811363266732 ], [ -64.878637617051993, 18.315809519247125 ], [ -64.878637617051993, 18.315807507589398 ], [ -64.878637449413873, 18.315805663569847 ], [ -64.878637449413873, 18.31580381955024 ], [ -64.878637281775696, 18.315801807892512 ], [ -64.878637114137575, 18.315799962563233 ], [ -64.878636946499398, 18.315798118543682 ], [ -64.878636946499398, 18.315796274524075 ], [ -64.878636778861278, 18.31579426417602 ], [ -64.878636611223158, 18.31579242015647 ], [ -64.87863644358498, 18.315790576136862 ], [ -64.87863644358498, 18.315788564479135 ], [ -64.87863627594686, 18.315786720459528 ], [ -64.878636108308683, 18.315784876439977 ], [ -64.878635940670563, 18.31578303242037 ], [ -64.878635773032386, 18.31578101945297 ], [ -64.878635605394265, 18.31577917543342 ], [ -64.878635437756145, 18.315777331413813 ], [ -64.878635270117968, 18.315775321065757 ], [ -64.878635102479848, 18.31577347704615 ], [ -64.878634934841671, 18.3157716330266 ], [ -64.87863476720355, 18.315769789006993 ], [ -64.878634431927253, 18.315767777349265 ], [ -64.878634264289133, 18.315765933329715 ], [ -64.878634096650956, 18.315764089310107 ], [ -64.878633929012835, 18.3157622452905 ], [ -64.878633761374658, 18.315760233632773 ], [ -64.878633426098418, 18.315758389613222 ], [ -64.878633258460241, 18.315756545593615 ], [ -64.87863309082212, 18.315754701574065 ], [ -64.878632755545823, 18.315752689916337 ], [ -64.878632587907703, 18.31575084589673 ], [ -64.878632252631405, 18.315749001877123 ], [ -64.878632084993228, 18.3157471565479 ], [ -64.878631749716931, 18.315745312528293 ], [ -64.87863158207881, 18.315743302180238 ], [ -64.878631246802513, 18.315741458160687 ], [ -64.878631079164393, 18.31573961414108 ], [ -64.878630743888095, 18.31573777012153 ], [ -64.878630576249975, 18.315735758463802 ], [ -64.878630240973678, 18.315733914444195 ], [ -64.87862990569738, 18.315732070424588 ], [ -64.878629738059203, 18.315730226405037 ], [ -64.878629402782963, 18.31572838238543 ], [ -64.878629067506665, 18.31572636941803 ], [ -64.878628732230368, 18.31572452539848 ], [ -64.878628564592248, 18.315722681378872 ], [ -64.87862822931595, 18.315720837359265 ], [ -64.878627894039653, 18.315718994649387 ], [ -64.878627558763355, 18.31571715062978 ], [ -64.878627223487058, 18.315715138972053 ], [ -64.878626888210761, 18.315713294952502 ], [ -64.87862655293452, 18.315711450932895 ], [ -64.878626217658223, 18.315709606913288 ], [ -64.878625882381925, 18.315707762893737 ], [ -64.878625547105628, 18.31570591887413 ], [ -64.878625211829331, 18.315704073544907 ], [ -64.878624876553033, 18.315702063196852 ], [ -64.878624541276793, 18.315700219177245 ], [ -64.878624206000495, 18.315698375157638 ], [ -64.878623870724198, 18.315696531138087 ], [ -64.87862336780978, 18.31569468711848 ], [ -64.878623032533483, 18.31569284309893 ], [ -64.878622697257185, 18.315690999079322 ], [ -64.878622361980888, 18.315689155059715 ], [ -64.87862185906647, 18.315687311040165 ], [ -64.878621523790173, 18.315685299382437 ], [ -64.878621020875755, 18.31568345536283 ], [ -64.878620685599458, 18.31568161134328 ], [ -64.87862035032316, 18.315679767323672 ], [ -64.878619847408743, 18.315677923304122 ], [ -64.878619512132445, 18.315676079284515 ], [ -64.878619009218028, 18.315674235264908 ], [ -64.87861867394173, 18.315672391245357 ], [ -64.878618171027313, 18.31567054722575 ], [ -64.878617835751015, 18.3156687032062 ], [ -64.878617332836598, 18.315666859186592 ], [ -64.878616829922123, 18.315665015166985 ], [ -64.878616494645826, 18.315663171147435 ], [ -64.878615991731408, 18.315661327127827 ], [ -64.87861548881699, 18.315659483108277 ], [ -64.878614985902573, 18.31565763908867 ], [ -64.878614650626275, 18.315655795069063 ], [ -64.878614147711858, 18.315653951049512 ], [ -64.878613644797383, 18.315652107029905 ], [ -64.878613141882965, 18.315650263010355 ], [ -64.878612638968548, 18.315648418990747 ], [ -64.87861213605413, 18.31564657497114 ], [ -64.878611633139656, 18.31564473095159 ], [ -64.878611297863415, 18.315642886931983 ], [ -64.878610794948941, 18.315641042912432 ], [ -64.878610292034523, 18.315639198892825 ], [ -64.878609621481928, 18.315637354873274 ], [ -64.87860911856751, 18.315635509543995 ], [ -64.878608615653093, 18.315633665524388 ], [ -64.878608112738675, 18.315631821504837 ], [ -64.878607609824201, 18.31562997748523 ], [ -64.878607106909783, 18.315628302413472 ], [ -64.878606603995365, 18.315626458393865 ], [ -64.87860593344277, 18.315624614374315 ], [ -64.878605430528353, 18.315622770354707 ], [ -64.878604927613935, 18.315620926335157 ], [ -64.878604424699461, 18.31561908231555 ], [ -64.878603754146923, 18.315617238295943 ], [ -64.878603251232505, 18.315615394276392 ], [ -64.878602748318031, 18.315613717894962 ], [ -64.878602077765493, 18.315611873875355 ], [ -64.878601574851018, 18.315610029855748 ], [ -64.87860090429848, 18.315608184526525 ], [ -64.878600401384006, 18.315606340506918 ], [ -64.878599730831468, 18.31560466543516 ], [ -64.87859922791705, 18.315602821415609 ], [ -64.878598557364455, 18.315600977396002 ], [ -64.878598054450038, 18.315599133376395 ], [ -64.878597383897443, 18.315597289356845 ], [ -64.878596713344848, 18.315595612975414 ], [ -64.87859621043043, 18.315593768955807 ], [ -64.878595539877836, 18.3155919249362 ], [ -64.878594869325298, 18.31559008091665 ], [ -64.878594198772703, 18.31558840453522 ], [ -64.878593695858285, 18.315586560515612 ], [ -64.87859302530569, 18.315584716496005 ], [ -64.878592354753096, 18.315583040114575 ], [ -64.878591684200558, 18.315581196095025 ], [ -64.878591013647963, 18.315579352075417 ], [ -64.878590343095368, 18.31557750805581 ], [ -64.87858967254283, 18.315575830364708 ], [ -64.878589001990235, 18.31557398765483 ], [ -64.878588331437641, 18.315572143635222 ], [ -64.878587660885103, 18.315570467253792 ], [ -64.878586990332508, 18.315568623234185 ], [ -64.878586319779913, 18.315566946852755 ], [ -64.878585649227375, 18.315565101523532 ], [ -64.87858497867478, 18.315563257503925 ], [ -64.878584308122186, 18.315561582432167 ], [ -64.878583637569648, 18.31555973841256 ], [ -64.878582967017053, 18.31555806203113 ], [ -64.878582128826338, 18.315556218011523 ], [ -64.878581458273743, 18.315554373991972 ], [ -64.878580787721205, 18.315552697610542 ], [ -64.87858011716861, 18.315550853590935 ], [ -64.878579278977895, 18.315549177209505 ], [ -64.8785786084253, 18.315547333189897 ], [ -64.878577937872706, 18.315545655498795 ], [ -64.878577099681991, 18.315543811479245 ], [ -64.878576429129453, 18.31554213640743 ], [ -64.878575590938738, 18.31554029238788 ], [ -64.878574920386143, 18.31553861600645 ], [ -64.878574082195428, 18.315536771986842 ], [ -64.878573411642833, 18.315535095605412 ], [ -64.878572573452118, 18.315533251585805 ], [ -64.878571902899523, 18.315531575204375 ], [ -64.878571064708808, 18.315529897513272 ], [ -64.878570226518093, 18.315528053493665 ], [ -64.878569555965555, 18.315526378421907 ], [ -64.87856871777484, 18.315524534402357 ], [ -64.878567879584068, 18.31552285802087 ], [ -64.87856720903153, 18.31552118163944 ], [ -64.878566370840815, 18.315519337619889 ], [ -64.8785655326501, 18.315517661238403 ], [ -64.878564694459385, 18.315515984856972 ], [ -64.87856402390679, 18.31551413952775 ], [ -64.878563185716075, 18.315512464455992 ], [ -64.87856234752536, 18.315510788074505 ], [ -64.878561509334645, 18.315508944054955 ], [ -64.87856067114393, 18.315507266363852 ], [ -64.878559832953158, 18.315505591292037 ], [ -64.878558994762443, 18.315503747272487 ], [ -64.878558156571728, 18.315502070891057 ], [ -64.878557318381013, 18.31550039450957 ], [ -64.878556480190298, 18.31549871812814 ], [ -64.878555641999583, 18.315497040437037 ], [ -64.878554803808868, 18.315495196417487 ], [ -64.878553965618153, 18.315493521345672 ], [ -64.878553127427438, 18.315491844964242 ], [ -64.878552121598545, 18.315490168582812 ], [ -64.87855128340783, 18.315488492201382 ], [ -64.878550445217115, 18.315486648181775 ], [ -64.8785496070264, 18.315484970490672 ], [ -64.878548601197508, 18.315483295418915 ], [ -64.878547763006793, 18.315481619037485 ], [ -64.878546924816078, 18.315479941346382 ], [ -64.878545918987243, 18.315478266274567 ], [ -64.878545080796528, 18.315476589893137 ], [ -64.878544242605813, 18.315474913511707 ], [ -64.87854323677692, 18.315473237130277 ], [ -64.878542398586205, 18.315471559439175 ], [ -64.87854139275737, 18.315469884367417 ], [ -64.878540554566598, 18.31546820798593 ], [ -64.878539548737763, 18.3154665316045 ], [ -64.878538710547048, 18.31546485522307 ], [ -64.878537704718156, 18.31546317884164 ], [ -64.87853686652744, 18.315461502460209 ], [ -64.878535860698605, 18.315459826078722 ], [ -64.878534854869713, 18.31545814838762 ], [ -64.878534016678998, 18.315456473315862 ], [ -64.878533010850163, 18.315454796934432 ], [ -64.87853200502127, 18.315453120553002 ], [ -64.878531166830555, 18.315451444171572 ], [ -64.87853016100172, 18.315449766480413 ], [ -64.878529155172828, 18.315448091408655 ], [ -64.878528149343992, 18.315446415027225 ], [ -64.8785271435151, 18.315444906283915 ], [ -64.878526305324385, 18.315443229902485 ], [ -64.878525299495493, 18.315441553521055 ], [ -64.878524293666658, 18.315439877139625 ], [ -64.878523287837766, 18.315438199448522 ], [ -64.87852228200893, 18.315436692014885 ], [ -64.878521276180038, 18.315435015633454 ], [ -64.878520270351203, 18.315433339252024 ], [ -64.878519264522311, 18.315431662870537 ], [ -64.878518258693475, 18.315430154127284 ], [ -64.878517252864583, 18.315428476436125 ], [ -64.878516247035748, 18.315426801364367 ], [ -64.878515241206856, 18.315425124982937 ], [ -64.878514067739843, 18.315423616239627 ], [ -64.878513061911008, 18.315421939858197 ], [ -64.878512056082116, 18.315420263476767 ], [ -64.87851105025328, 18.315418753423785 ], [ -64.878510044424388, 18.315417078352027 ], [ -64.878508870957432, 18.315415569608717 ], [ -64.87850786512854, 18.315413893227287 ], [ -64.878506859299705, 18.315412216845857 ], [ -64.878505685832693, 18.315410708102547 ], [ -64.8785046800038, 18.315409030411445 ], [ -64.878503674174965, 18.315407522977807 ], [ -64.878502500707953, 18.315405846596377 ], [ -64.87850149487906, 18.315404337853067 ], [ -64.878500321412048, 18.315402661471637 ], [ -64.878499315583213, 18.315401151418655 ], [ -64.8784981421162, 18.315399476346897 ], [ -64.878497136287308, 18.315397967603587 ], [ -64.878495962820296, 18.315396291222157 ], [ -64.87849495699146, 18.315394782478904 ], [ -64.878493783524448, 18.315393272425922 ], [ -64.878492777695556, 18.315391597354164 ], [ -64.8784916042286, 18.315390088610854 ], [ -64.878490430761588, 18.315388412229424 ], [ -64.878489424932695, 18.315386903486115 ], [ -64.878488251465683, 18.315385393433132 ], [ -64.87848707799867, 18.315383718361375 ], [ -64.878486072169835, 18.315382209618065 ], [ -64.878484898702823, 18.315380700874755 ], [ -64.87848372523581, 18.315379192131502 ], [ -64.878482551768798, 18.315377514440399 ], [ -64.878481378301785, 18.315376007006762 ], [ -64.87848037247295, 18.315374498263452 ], [ -64.878479199005938, 18.315372989520142 ], [ -64.878478025538925, 18.315371313138712 ], [ -64.878476852071913, 18.315369804395402 ], [ -64.8784756786049, 18.315368295652149 ], [ -64.878474505137888, 18.315366786908839 ], [ -64.878473331670875, 18.31536527816553 ], [ -64.878472158203863, 18.31536376942222 ], [ -64.87847098473685, 18.315362259369294 ], [ -64.878469811269838, 18.315360751935657 ], [ -64.878468637802825, 18.315359075554227 ], [ -64.878467464335813, 18.315357565501245 ], [ -64.878466290868857, 18.315356058067607 ], [ -64.878464949763668, 18.315354549324297 ], [ -64.878463776296655, 18.315353040581044 ], [ -64.878462602829643, 18.315351531837734 ], [ -64.87846142936263, 18.315350023094425 ], [ -64.878460255895618, 18.315348514351115 ], [ -64.878458914790485, 18.315347005607862 ], [ -64.878457741323473, 18.315345664502672 ], [ -64.87845656785646, 18.31534415444969 ], [ -64.878455226751328, 18.315342647016109 ], [ -64.878454053284315, 18.3153411382728 ], [ -64.878452879817303, 18.31533962952949 ], [ -64.87845153871217, 18.315338119476507 ], [ -64.878450365245158, 18.315336612042927 ], [ -64.878449191778145, 18.315335103299617 ], [ -64.878447850673012, 18.315333762194484 ], [ -64.878446677206, 18.315332253451174 ], [ -64.87844533610081, 18.315330743398192 ], [ -64.878444162633798, 18.315329235964555 ], [ -64.878442821528665, 18.315327894859422 ], [ -64.878441648061653, 18.315326386116112 ], [ -64.87844030695652, 18.315324877372802 ], [ -64.878438965851331, 18.31532353626767 ], [ -64.878437792384375, 18.31532202752436 ], [ -64.878436451279185, 18.315320517471434 ], [ -64.878435277812173, 18.315319176366245 ], [ -64.87843393670704, 18.315317668932664 ], [ -64.878432595601907, 18.315316160189354 ], [ -64.878431254496718, 18.315314819084165 ], [ -64.878430081029705, 18.315313310340912 ], [ -64.878428739924573, 18.315311969235722 ], [ -64.87842739881944, 18.315310460492469 ], [ -64.87842605771425, 18.31530911938728 ], [ -64.878424884247238, 18.315307610644027 ], [ -64.878423543142105, 18.315306269538837 ], [ -64.878422202036973, 18.315304759485855 ], [ -64.878420860931783, 18.315303418380722 ], [ -64.87841951982665, 18.315301910947085 ], [ -64.878418178721518, 18.315300569841952 ], [ -64.878416837616328, 18.315299227427147 ], [ -64.878415496511195, 18.315297719993509 ], [ -64.878414155406062, 18.315296378888377 ], [ -64.878412814300873, 18.315294870145067 ], [ -64.87841147319574, 18.315293529039877 ], [ -64.878410132090607, 18.315292187934745 ], [ -64.878408790985418, 18.315290846829612 ], [ -64.878407449880285, 18.315289338086302 ], [ -64.878406108775152, 18.315287996981169 ], [ -64.878404767669963, 18.31528665587598 ], [ -64.87840342656483, 18.315285313461175 ], [ -64.87840191782152, 18.315283806027537 ], [ -64.878400576716388, 18.315282464922404 ], [ -64.878399235611255, 18.315281123817272 ], [ -64.878397894506065, 18.31527978140241 ], [ -64.878396553400933, 18.315278441606949 ], [ -64.878395044657623, 18.315277100501817 ], [ -64.87839370355249, 18.315275759396627 ], [ -64.8783923624473, 18.315274418291494 ], [ -64.878390853704047, 18.315273077186362 ], [ -64.878389512598858, 18.315271736081172 ], [ -64.878388171493725, 18.315270394976039 ], [ -64.878386662750415, 18.315269053870907 ], [ -64.878385321645283, 18.315267711456045 ], [ -64.878383812901973, 18.315266370350912 ], [ -64.87838247179684, 18.315265030555395 ], [ -64.87838113069165, 18.315263689450262 ], [ -64.878379621948397, 18.315262348345129 ], [ -64.878378280843208, 18.31526100723994 ], [ -64.878376772099955, 18.315259666134807 ], [ -64.878375263356645, 18.315258325029674 ], [ -64.878373922251512, 18.315256983924485 ], [ -64.878372413508202, 18.315255810457529 ], [ -64.878371072403013, 18.31525446935234 ], [ -64.87836956365976, 18.315253128247207 ], [ -64.87836822255457, 18.315251787142074 ], [ -64.878366713811317, 18.315250612365389 ], [ -64.878365205068008, 18.315249272569872 ], [ -64.878363863962818, 18.315247931464739 ], [ -64.878362355219565, 18.315246757997727 ], [ -64.878360846476255, 18.315245416892594 ], [ -64.878359337732945, 18.315244074477732 ], [ -64.878357996627813, 18.315242902320392 ], [ -64.878356487884503, 18.315241561215259 ], [ -64.878354979141193, 18.315240386438575 ], [ -64.87835347039794, 18.315239046643114 ], [ -64.87835196165463, 18.315237705537925 ], [ -64.87835045291132, 18.315236532070969 ], [ -64.878349111806187, 18.31523519096578 ], [ -64.878347603062878, 18.315234017498767 ], [ -64.878346094319568, 18.315232676393634 ], [ -64.878344585576258, 18.315231502926622 ], [ -64.878343076833005, 18.315230329459609 ], [ -64.878341568089695, 18.315228988354477 ], [ -64.878340059346385, 18.315227814887464 ], [ -64.878338550603075, 18.315226472472602 ], [ -64.878337041859822, 18.315225300315319 ], [ -64.878335533116513, 18.315224126848307 ], [ -64.878334024373203, 18.315222953381294 ], [ -64.878332515629893, 18.315221612276105 ], [ -64.87833100688664, 18.315220438809092 ], [ -64.87832949814333, 18.315219265342137 ], [ -64.8783278217619, 18.315218091875124 ], [ -64.87832631301859, 18.315216749460262 ], [ -64.87832480427528, 18.315215577302922 ], [ -64.87832329553197, 18.31521440383591 ], [ -64.878321786788717, 18.315213230368954 ], [ -64.878320278045408, 18.315212056901942 ], [ -64.878318601663977, 18.315210883434929 ], [ -64.878317092920668, 18.315209709967917 ], [ -64.878315584177358, 18.315208536500904 ], [ -64.878314075434105, 18.315207363033892 ], [ -64.878312399052618, 18.315206189566879 ], [ -64.878310890309365, 18.315205016099867 ], [ -64.878309381566055, 18.315203842632855 ], [ -64.878307705184625, 18.315202669165842 ], [ -64.878306196441315, 18.315201494389157 ], [ -64.878304687698005, 18.315200322231817 ], [ -64.878303011316575, 18.315199147455132 ], [ -64.878301502573265, 18.315197975297849 ], [ -64.878299826191835, 18.315196801830837 ], [ -64.878298317448525, 18.315195628363824 ], [ -64.878296641067095, 18.315194622534932 ], [ -64.878295132323785, 18.31519344906792 ], [ -64.878293455942355, 18.315192275600907 ], [ -64.878291947199045, 18.315191102133895 ], [ -64.878290270817615, 18.315190096305059 ], [ -64.878288762074305, 18.315188922838047 ], [ -64.878208128127085, 18.315153215913369 ], [ -64.878113077299417, 18.315103258436807 ], [ -64.878039987068632, 18.315053471217709 ], [ -64.877996568789342, 18.314975853447322 ], [ -64.877990030901742, 18.314891532770616 ], [ -64.877961364779082, 18.314807043146004 ], [ -64.8779104027833, 18.314736467487364 ], [ -64.8778299364742, 18.314693719760669 ], [ -64.877771766038222, 18.314630017265927 ], [ -64.877743099915619, 18.314538486839353 ], [ -64.877780650859847, 18.314461540931234 ], [ -64.877847203203032, 18.314405885067401 ], [ -64.877848041393747, 18.314321730719143 ], [ -64.877811999192772, 18.314244114258486 ], [ -64.877790709148485, 18.314159792272051 ], [ -64.877820716376277, 18.314075637923736 ], [ -64.877880227917387, 18.314012941257886 ], [ -64.877917611223495, 18.313935995349766 ], [ -64.877925657854405, 18.313851841001508 ], [ -64.877889615653487, 18.313774392178971 ], [ -64.877838988934002, 18.313689734916238 ], [ -64.877780650859847, 18.313626032421553 ], [ -64.877722480423927, 18.31356232992681 ], [ -64.877641846476649, 18.313526623002133 ], [ -64.877553836451057, 18.313511870845446 ], [ -64.877465658787287, 18.313504159490833 ], [ -64.877377481123574, 18.3134962804981 ], [ -64.877289303459804, 18.313502650747523 ], [ -64.877200958157914, 18.313509020997003 ], [ -64.877112780494201, 18.31350130964239 ], [ -64.877032314185044, 18.313465435079593 ], [ -64.876930222555359, 18.313381616007575 ], [ -64.876914129293539, 18.31324079996665 ], [ -64.876958721039841, 18.313092272571055 ], [ -64.877081599799396, 18.312911223375522 ], [ -64.877239179654737, 18.312730509456287 ], [ -64.877361555499874, 18.312607295420435 ], [ -64.877535396255212, 18.312450050841392 ], [ -64.877726168463084, 18.312458265110422 ], [ -64.877816190146405, 18.312459103301137 ], [ -64.877906547106022, 18.312438316171267 ], [ -64.877989360349147, 18.312403112161064 ], [ -64.878064965152078, 18.312339074390025 ], [ -64.878140569955065, 18.312282412697357 ], [ -64.878216174757995, 18.312240000246959 ], [ -64.87829077373209, 18.312283586164369 ], [ -64.878357828989635, 18.312348629764244 ], [ -64.878440139318343, 18.312385174879637 ], [ -64.878537369441858, 18.312414679193012 ], [ -64.878627391125235, 18.312436975066134 ], [ -64.878717245170378, 18.312459103301137 ], [ -64.878814475293893, 18.312495816054707 ], [ -64.878904329339093, 18.31251811192783 ], [ -64.879399029502054, 18.312615342051345 ], [ -64.879489218823494, 18.312623221044134 ], [ -64.879579240506871, 18.312623891596729 ], [ -64.879676973544804, 18.312610312907054 ], [ -64.879767162866244, 18.312603942657574 ], [ -64.879857352187742, 18.3125903639679 ], [ -64.879940333069044, 18.31255515995764 ], [ -64.880015770233797, 18.312505539067047 ], [ -64.880076455241976, 18.312441501296007 ], [ -64.880129596533607, 18.312370255084829 ], [ -64.880175360437249, 18.312298841235474 ], [ -64.880228503038552, 18.312227595024297 ], [ -64.880281644330182, 18.312156348813062 ], [ -64.880304946032197, 18.312070350445197 ], [ -64.88032824642454, 18.311984519715509 ], [ -64.880351549436227, 18.311898688985764 ], [ -64.880359762395642, 18.311812690617899 ], [ -64.880360601896029, 18.311726692250033 ], [ -64.880346352653817, 18.311640526243991 ], [ -64.880339647128039, 18.311554361547678 ], [ -64.88032539788577, 18.311468195541636 ], [ -64.880311148643557, 18.31138202953565 ], [ -64.880311819196152, 18.311295863529608 ], [ -64.88029002623739, 18.311209697523566 ], [ -64.880275776995177, 18.31112353151758 ], [ -64.880276615185892, 18.311037531840043 ], [ -64.880322211451357, 18.310966117990688 ], [ -64.880396979373302, 18.311009703908098 ], [ -64.880487001056622, 18.311024792650755 ], [ -64.880569311385329, 18.311061336456476 ], [ -64.880659165430473, 18.311083633639328 ], [ -64.88074918711385, 18.311084302882193 ], [ -64.88083937643529, 18.311085141072908 ], [ -64.880926380632047, 18.31109939162485 ], [ -64.88094867650517, 18.311113974833688 ], [ -64.881038195274073, 18.311179186071683 ], [ -64.881105250531675, 18.311244229671559 ], [ -64.88117984950577, 18.311287984536818 ], [ -64.88126987118909, 18.31130290302201 ], [ -64.881367436588903, 18.31131094965292 ], [ -64.881465000679043, 18.311318828645653 ], [ -64.881555191310156, 18.311305249955979 ], [ -64.881645380631653, 18.311298879706499 ], [ -64.881719979605748, 18.311349674064161 ], [ -64.881764402404201, 18.311428966906249 ], [ -64.881831457661804, 18.311486802065929 ], [ -64.881906056635898, 18.311537596423591 ], [ -64.881988200636101, 18.311581349979178 ], [ -64.882062799610196, 18.311639352776979 ], [ -64.882137398584291, 18.311690147134641 ], [ -64.882196908815729, 18.311755190734516 ], [ -64.882256420356839, 18.311820235644063 ], [ -64.882308389491186, 18.311892318736284 ], [ -64.882360188368011, 18.311964403138234 ], [ -64.882427243625614, 18.312022405936034 ], [ -64.882486756476396, 18.312087449535909 ], [ -64.882546266707834, 18.312152325497607 ], [ -64.882605610610824, 18.312231785977872 ], [ -64.882672665868427, 18.312296829577747 ], [ -64.882739722435701, 18.312361873177622 ], [ -64.882814321409739, 18.312405626733209 ], [ -64.882904341783387, 18.312427754968212 ], [ -64.882994363466764, 18.312435633961002 ], [ -64.883084386459757, 18.312436472151717 ], [ -64.883166695478792, 18.312480058069127 ], [ -64.883248839478995, 18.312523811624715 ], [ -64.883315893426925, 18.312581814422572 ], [ -64.883375404968035, 18.31264669038427 ], [ -64.883434916509145, 18.312711733984145 ], [ -64.883479340617328, 18.312783818386094 ], [ -64.883531140803825, 18.312856070426164 ], [ -64.883583108628443, 18.312928154828057 ], [ -64.883635076453118, 18.313000239230007 ], [ -64.883694587994228, 18.313065282829882 ], [ -64.883761644561503, 18.313123285627682 ], [ -64.883820988464493, 18.313195370029575 ], [ -64.883872954979438, 18.313267622069645 ], [ -64.883924922804113, 18.313339706471595 ], [ -64.883969346912238, 18.313411790873488 ], [ -64.883990973542495, 18.31349795687953 ], [ -64.884027852624513, 18.313577249721618 ], [ -64.883997174844126, 18.313655872011168 ], [ -64.883936489836003, 18.313719909782151 ], [ -64.883861052671193, 18.313769530672801 ], [ -64.88378561550644, 18.313811943123255 ], [ -64.883710010703453, 18.313854355573653 ], [ -64.883634405900523, 18.313911017266321 ], [ -64.883551592657398, 18.313946221276581 ], [ -64.883475987854467, 18.313995842167174 ], [ -64.883393174611342, 18.314031046177433 ], [ -64.88331036136816, 18.314059041747498 ], [ -64.883234925513079, 18.314101454197896 ], [ -64.883166695478792, 18.314158283528741 ], [ -64.883083883545282, 18.314186279098806 ], [ -64.883001070302157, 18.314221483109009 ], [ -64.882925465499227, 18.314263895559463 ], [ -64.882887411640525, 18.314335979961356 ], [ -64.882909873842152, 18.314233385417253 ], [ -64.88291071334254, 18.314150404535951 ], [ -64.882911382585462, 18.314067256016529 ], [ -64.882926637656567, 18.313984442773403 ], [ -64.882941892727672, 18.313901629530278 ], [ -64.882928315347669, 18.313790820717088 ], [ -64.882914567710202, 18.313707672197665 ], [ -64.882893612942212, 18.313624523678243 ], [ -64.882865449734027, 18.313527461192848 ], [ -64.882830079395319, 18.313444145035305 ], [ -64.882801748548957, 18.313360828877705 ], [ -64.882758999512589, 18.31328438588406 ], [ -64.882723461535704, 18.313208110528535 ], [ -64.882673336420964, 18.313138540698787 ], [ -64.882616005485431, 18.313075844032937 ], [ -64.882544087411929, 18.313026726056762 ], [ -64.882472004319709, 18.312977775718707 ], [ -64.882392711477621, 18.312942571708447 ], [ -64.882313249687684, 18.312907367698187 ], [ -64.882233956845539, 18.31286512288591 ], [ -64.882154665313124, 18.31282991887565 ], [ -64.882060786642796, 18.31279454722727 ], [ -64.881981493800708, 18.312759343217067 ], [ -64.881894826189921, 18.312737885534602 ], [ -64.881831291333356, 18.312726318502712 ], [ -64.881737749248998, 18.31272548031194 ], [ -64.881649739223406, 18.312727491969667 ], [ -64.881561729197813, 18.312726653778952 ], [ -64.881473551534043, 18.312733862219147 ], [ -64.881385372560601, 18.312735873876875 ], [ -64.881297362535008, 18.312745596889272 ], [ -64.881209186180968, 18.312755319901612 ], [ -64.881120839569405, 18.312775771755184 ], [ -64.881029813366865, 18.312801252753047 ], [ -64.880944316603745, 18.312821536968499 ], [ -64.88086167230847, 18.312847185604483 ], [ -64.880778691427167, 18.31287803102299 ], [ -64.880705433558262, 18.312921952216755 ], [ -64.880625470163523, 18.312962855923843 ], [ -64.88054533913072, 18.313003759630988 ], [ -64.880465374426365, 18.313044495700012 ], [ -64.880385243393505, 18.313092272571055 ], [ -64.880297905230179, 18.313146922605995 ], [ -64.880217940525824, 18.31318782631314 ], [ -64.880145019242832, 18.313235603184182 ], [ -64.880064888210029, 18.313290253219122 ], [ -64.879991965617364, 18.31335194405608 ], [ -64.879933292266969, 18.313420675695113 ], [ -64.879881994994889, 18.313489407334202 ], [ -64.879816448480597, 18.313544225007263 ], [ -64.879750399051886, 18.313626702974091 ], [ -64.879692060977732, 18.313688561449226 ], [ -64.879604553866614, 18.313756957812018 ], [ -64.879553088956357, 18.31382568945105 ], [ -64.879501790374661, 18.313894421090083 ], [ -64.879464911292644, 18.31397019353119 ], [ -64.879457032299854, 18.314053174412436 ], [ -64.879441609590629, 18.314149901621533 ], [ -64.879448147478229, 18.314233050140956 ], [ -64.879473796114269, 18.314316701574796 ], [ -64.879475975410116, 18.314318713232524 ], [ -64.879478153396349, 18.314320557252131 ], [ -64.879480166363749, 18.314322401271738 ], [ -64.879482344349924, 18.314324412929466 ], [ -64.879484524955501, 18.314326256949016 ], [ -64.879486704251349, 18.314328268606744 ], [ -64.879488883547253, 18.314330112626351 ], [ -64.879490895204981, 18.314332124284078 ], [ -64.879493074500829, 18.314333968303629 ], [ -64.879495253796676, 18.314335979961356 ], [ -64.879497433092581, 18.314337823980964 ], [ -64.879499444750309, 18.314339835638691 ], [ -64.879501624046156, 18.314341678348569 ], [ -64.879503634394212, 18.314343691316026 ], [ -64.879505814999789, 18.314345702973753 ], [ -64.879507994295636, 18.314347546993304 ], [ -64.879510005953364, 18.314349558651031 ], [ -64.879512185249268, 18.314351570308759 ], [ -64.879514196906996, 18.314353414328366 ], [ -64.879516376202844, 18.314355425986093 ], [ -64.879518387860571, 18.314357437643821 ], [ -64.879520567156419, 18.314359280353699 ], [ -64.879522578814147, 18.314361293321099 ], [ -64.879524758110051, 18.314363304978826 ], [ -64.879526769767779, 18.314365316636554 ], [ -64.879528949063626, 18.314367328294281 ], [ -64.879530959411682, 18.314369172313889 ], [ -64.879532972379081, 18.314371183971616 ], [ -64.879535150365314, 18.314373195629344 ], [ -64.879537163332714, 18.314375207287071 ], [ -64.879539174990441, 18.314377218944799 ], [ -64.879541354286289, 18.314379230602526 ], [ -64.879543365944016, 18.314381242260254 ], [ -64.879545377601744, 18.314383253917981 ], [ -64.879547389259471, 18.314385265575709 ], [ -64.879549568555376, 18.314387277233436 ], [ -64.879551580213104, 18.314389288891164 ], [ -64.879553591870831, 18.314391300548891 ], [ -64.879555603528559, 18.314393312206619 ], [ -64.879557615186286, 18.314395323864346 ], [ -64.879559626844014, 18.314397335522074 ], [ -64.879561806139861, 18.314399347179801 ], [ -64.879563817797589, 18.314401526475706 ], [ -64.879565829455316, 18.314403538133433 ], [ -64.879567841113044, 18.314405549791161 ], [ -64.879569852770771, 18.314407561448888 ], [ -64.879571864428499, 18.314409573106616 ], [ -64.879573876086226, 18.314411752402464 ], [ -64.879575886434282, 18.314413764060191 ], [ -64.879577899401681, 18.314415775717919 ], [ -64.879579743421289, 18.314417787375646 ], [ -64.879581755079016, 18.314419965361822 ], [ -64.879583765427071, 18.314421978329221 ], [ -64.879585778394471, 18.314423989986949 ], [ -64.879587790052199, 18.314426169282854 ], [ -64.879589800400254, 18.314428180940581 ], [ -64.879591813367654, 18.314430192598309 ], [ -64.879593657387204, 18.314432371894156 ], [ -64.879595669044932, 18.314434383551884 ], [ -64.879597679392987, 18.314436562847789 ], [ -64.879599692360387, 18.314438574505516 ], [ -64.879601536379994, 18.314440753801364 ], [ -64.879603548037721, 18.314442765459091 ], [ -64.879605558385776, 18.314444944754996 ], [ -64.879607402405384, 18.314446956412723 ], [ -64.879609415372784, 18.314449135708571 ], [ -64.879611259392334, 18.314451147366299 ], [ -64.879613271050061, 18.314453325352474 ], [ -64.879615115069669, 18.314455505958051 ], [ -64.879617125417724, 18.314457517615779 ], [ -64.879618969437274, 18.314459696911626 ], [ -64.879620982404674, 18.314461708569354 ], [ -64.879622826424281, 18.314463887865259 ], [ -64.879624838082009, 18.314466067161106 ], [ -64.879626682101616, 18.314468246457011 ], [ -64.879628693759344, 18.314470258114738 ], [ -64.879630537778894, 18.314472437410586 ], [ -64.879632381798501, 18.314474616706434 ], [ -64.879634393456229, 18.314476796002339 ], [ -64.879636237475779, 18.314478806350394 ], [ -64.879638081495386, 18.314480986955914 ], [ -64.879640093153114, 18.314483166251819 ], [ -64.879641937172721, 18.314485345547666 ], [ -64.879643781192271, 18.314487524843571 ], [ -64.879645625211879, 18.314489704139419 ], [ -64.879647636869606, 18.314491715797146 ], [ -64.879649480889157, 18.314493895092994 ], [ -64.879651324908764, 18.314496074388899 ], [ -64.879653168928371, 18.314498252375074 ], [ -64.879655012947921, 18.314500432980651 ], [ -64.879656856967529, 18.314502612276499 ], [ -64.879658700987079, 18.314504791572404 ], [ -64.879660545006686, 18.314506970868251 ], [ -64.879662389026294, 18.314509150164099 ], [ -64.879664233045844, 18.314511329460004 ], [ -64.879666077065451, 18.314513508755851 ], [ -64.879667921085002, 18.314515688051756 ], [ -64.879669765104609, 18.314517867347604 ], [ -64.879671609124216, 18.314520214281629 ], [ -64.879673453143766, 18.314522393577477 ], [ -64.879675297163374, 18.314524572873381 ], [ -64.879677141182924, 18.314526752169229 ], [ -64.879678985202531, 18.314528931465134 ], [ -64.879680661583961, 18.314531110760981 ], [ -64.879682505603569, 18.314533457695006 ], [ -64.879684349623119, 18.314535636990854 ], [ -64.879686193642726, 18.314537816286759 ], [ -64.879687870024156, 18.314539995582606 ], [ -64.879689714043764, 18.314542342516631 ], [ -64.879691558063314, 18.314544521812536 ], [ -64.879693234444744, 18.314546701108384 ], [ -64.879695078464351, 18.314548880404232 ], [ -64.879696922483959, 18.314551227338256 ], [ -64.879698598865389, 18.314553406634161 ], [ -64.879700442884939, 18.314555753568186 ], [ -64.879702119266426, 18.314557932864034 ], [ -64.879703963285976, 18.314560112159882 ], [ -64.879705638357734, 18.314562459093906 ], [ -64.879707482377341, 18.314564638389811 ], [ -64.879709160068444, 18.314566985323779 ], [ -64.879711004088051, 18.314569164619684 ], [ -64.879712680469481, 18.314571511553709 ], [ -64.879714356850911, 18.314573690849556 ], [ -64.879716200870519, 18.314576037783581 ], [ -64.879717877251949, 18.314578217079429 ], [ -64.879719553633379, 18.314580564013454 ], [ -64.879721397652986, 18.314582743309359 ], [ -64.879723074034416, 18.314585090243384 ], [ -64.879724750415846, 18.314587269539231 ], [ -64.879726594435397, 18.314589616473256 ], [ -64.879728270816884, 18.314591963407281 ], [ -64.879729947198314, 18.314594142703129 ], [ -64.879731623579744, 18.314596489637154 ], [ -64.879733299961174, 18.314598668933002 ], [ -64.879734976342604, 18.314601015867026 ], [ -64.879736651414362, 18.314603362801051 ], [ -64.879738495433969, 18.314605709735076 ], [ -64.879740173125072, 18.314607889030924 ], [ -64.879741849506502, 18.314610235964949 ], [ -64.879743525887989, 18.314612582898974 ], [ -64.879745202269419, 18.314614762194822 ], [ -64.879746878650849, 18.314617109128847 ], [ -64.879748387394159, 18.314619456062871 ], [ -64.879750062465916, 18.314621802996896 ], [ -64.879751740157019, 18.314624149930921 ], [ -64.879753416538449, 18.314626496864946 ], [ -64.879755092919879, 18.314628676160794 ], [ -64.879756769301366, 18.314631023094819 ], [ -64.879758444373124, 18.314633370028844 ], [ -64.879759954426106, 18.314635716962869 ], [ -64.879761630807536, 18.314638063896837 ], [ -64.879763307188966, 18.314640410830862 ], [ -64.879764983570396, 18.314642757764886 ], [ -64.879766492313706, 18.314645103389239 ], [ -64.879768167385464, 18.314647451632936 ], [ -64.879769845076567, 18.314649798566961 ], [ -64.879771353819876, 18.314652145500986 ], [ -64.879773030201306, 18.314654492434954 ], [ -64.879774538944616, 18.314656839368979 ], [ -64.879776215326046, 18.314659186303004 ], [ -64.879777724069356, 18.314661533237029 ], [ -64.879779400450786, 18.314663880171054 ], [ -64.879780909194096, 18.314666227105079 ], [ -64.879782585575526, 18.314668574039047 ], [ -64.879784094318836, 18.314670920973072 ], [ -64.879785769390594, 18.314673267907096 ], [ -64.879787279443576, 18.314675782479242 ], [ -64.879788955825006, 18.314678129413267 ], [ -64.879790464568259, 18.314680476347291 ], [ -64.879791973311569, 18.314682823281316 ], [ -64.879793482054879, 18.314685170215341 ], [ -64.879795158436309, 18.314687517149366 ], [ -64.879796667179619, 18.314690031721511 ], [ -64.879798175922929, 18.314692377345864 ], [ -64.879799683356509, 18.314694725589561 ], [ -64.879801361047669, 18.314697072523529 ], [ -64.879802869790922, 18.314699587095731 ], [ -64.879804378534232, 18.314701934029699 ], [ -64.879805887277541, 18.314704280963724 ], [ -64.879807396020851, 18.314706795535926 ], [ -64.879808903454432, 18.314709142469894 ], [ -64.879810413507414, 18.314711489403919 ], [ -64.879811922250724, 18.314714003976121 ], [ -64.879813430994034, 18.314716350910089 ], [ -64.879814938427614, 18.314718865482291 ], [ -64.879816448480597, 18.314721212416259 ], [ -64.879817957223906, 18.314723559350284 ], [ -64.879819465967216, 18.314726073922486 ], [ -64.879820973400797, 18.314728420856454 ], [ -64.879822483453779, 18.314730935428656 ], [ -64.879823824558969, 18.314733282362681 ], [ -64.879825333302222, 18.314735796934826 ], [ -64.879826842045532, 18.314738143868851 ], [ -64.879828349479169, 18.314740658440996 ], [ -64.879829859532151, 18.314743005375021 ], [ -64.879831200637284, 18.314745519947166 ], [ -64.879832709380594, 18.314747866881191 ], [ -64.879834218123847, 18.314750381453337 ], [ -64.879835559229036, 18.314752728387361 ], [ -64.879837067972346, 18.314755242959507 ], [ -64.879838409077479, 18.314757757531652 ], [ -64.879839917820789, 18.314760104465677 ], [ -64.879841258925921, 18.314762619037879 ], [ -64.879842766359559, 18.314764965971847 ], [ -64.879844107464692, 18.314767480544049 ], [ -64.879845617517674, 18.314769995116194 ], [ -64.879846958622807, 18.314772342050219 ], [ -64.879848467366116, 18.314774856622364 ], [ -64.879849808471249, 18.314777371194509 ], [ -64.879851317214559, 18.314779885766711 ], [ -64.879852658319692, 18.314782231391007 ], [ -64.879853999424881, 18.314784747272881 ], [ -64.879855508168134, 18.314787261845026 ], [ -64.879856849273324, 18.314789776417172 ], [ -64.879858190378457, 18.314792123351197 ], [ -64.879859531483589, 18.314794637923342 ], [ -64.879860872588779, 18.314797152495544 ], [ -64.879862381332089, 18.314799667067689 ], [ -64.879863722437221, 18.314802181639834 ], [ -64.879865063542354, 18.314804528573859 ], [ -64.879866404647544, 18.314807043146004 ], [ -64.879867744443004, 18.314809556408477 ], [ -64.879869086857809, 18.314812072290351 ], [ -64.879870427962999, 18.314814586862497 ], [ -64.879871769068131, 18.314817101434642 ], [ -64.879873110173264, 18.314819616006787 ], [ -64.879874451278454, 18.314822130578989 ], [ -64.879875792383586, 18.314824645151134 ], [ -64.879877133488719, 18.314827158413607 ], [ -64.879878474593909, 18.314829505347632 ], [ -64.879879814389369, 18.314832021229449 ], [ -64.879881156804174, 18.314834535801651 ], [ -64.879882330271187, 18.314837050373797 ], [ -64.879883671376376, 18.314839564945942 ], [ -64.879885012481509, 18.314842079518087 ], [ -64.879886353586642, 18.314844594090289 ], [ -64.879887527053654, 18.314847276300554 ], [ -64.879888868158787, 18.314849790872756 ], [ -64.879890209263976, 18.314852305444902 ], [ -64.879891381421317, 18.314854820017047 ], [ -64.879892723836122, 18.314857334589192 ], [ -64.879893897303134, 18.314859849161394 ], [ -64.879895238408267, 18.314862362423867 ], [ -64.879896579513456, 18.314864878305684 ], [ -64.879897752980469, 18.314867392877829 ], [ -64.879899094085602, 18.314869907450031 ], [ -64.879900267552614, 18.314872588350624 ], [ -64.879901441019626, 18.314875104232499 ], [ -64.879902782124759, 18.314877618804644 ], [ -64.879903955591772, 18.314880133376789 ], [ -64.879905295387232, 18.314882647948934 ], [ -64.879906470163917, 18.314885330159257 ], [ -64.879907643630929, 18.314887843421729 ], [ -64.879908983426446, 18.314890359303604 ], [ -64.879910158203074, 18.314892873875749 ], [ -64.879911330360414, 18.314895388447894 ], [ -64.879912505137099, 18.314898069348544 ], [ -64.879913678604112, 18.314900585230362 ], [ -64.879915018399629, 18.314903099802507 ], [ -64.879916193176314, 18.314905782012829 ], [ -64.879917366643269, 18.314908296584974 ], [ -64.879918540110282, 18.314910811157176 ], [ -64.879919713577294, 18.314913493367442 ], [ -64.879920887044307, 18.314916007939587 ], [ -64.879922060511319, 18.314918522511789 ], [ -64.879923233978332, 18.314921203412382 ], [ -64.879924407445344, 18.314923719294256 ], [ -64.879925580912357, 18.314926233866402 ], [ -64.879926754379369, 18.314928916076724 ], [ -64.879927927846381, 18.314931430648869 ], [ -64.879929101313394, 18.314934112859191 ], [ -64.879930107142229, 18.314936627431337 ], [ -64.879931280609242, 18.314939142003482 ], [ -64.879932454076254, 18.314941824213804 ], [ -64.879933627543267, 18.314944338785949 ], [ -64.879934633372102, 18.314947020996271 ], [ -64.879935806839114, 18.314949535568417 ], [ -64.879936980306127, 18.314952217778739 ], [ -64.879937986135019, 18.314954732350884 ], [ -64.879939159602031, 18.314957414561206 ], [ -64.879940333069044, 18.314959929133352 ], [ -64.879941338897879, 18.314962611343674 ], [ -64.879942512364892, 18.314965125915819 ], [ -64.879943518193784, 18.314967808126084 ], [ -64.879944690351067, 18.314970321388614 ], [ -64.879945697489632, 18.314973004908552 ], [ -64.879946870956644, 18.314975687118874 ], [ -64.879947875475807, 18.314978200381347 ], [ -64.879949050252492, 18.314980883901342 ], [ -64.879950056081384, 18.314983398473487 ], [ -64.879951061910219, 18.314986079374137 ], [ -64.879952235377232, 18.314988762894131 ], [ -64.879953241206124, 18.314991277466277 ], [ -64.879954247034959, 18.314993958366927 ], [ -64.879955252863851, 18.314996474248744 ], [ -64.879956426330864, 18.314999156459066 ], [ -64.879957432159699, 18.315001837359659 ], [ -64.879958437988591, 18.315004353241477 ], [ -64.879959443817427, 18.315007035451799 ], [ -64.879960449646319, 18.315009716352449 ], [ -64.879961455475154, 18.315012399872387 ], [ -64.879962461304046, 18.315014914444589 ], [ -64.879963633461387, 18.315017596654855 ], [ -64.879964640599894, 18.315020278865177 ], [ -64.879965646428786, 18.315022793437322 ], [ -64.879966484619501, 18.315025475647644 ], [ -64.879967490448337, 18.315028157857967 ], [ -64.879968496277229, 18.315030840068232 ], [ -64.879969502106064, 18.315033522278554 ], [ -64.879970507934956, 18.315036036850699 ], [ -64.879971512454119, 18.315038719061022 ], [ -64.879972519592684, 18.315041401271344 ], [ -64.879973356473727, 18.31504408348161 ], [ -64.879974363612234, 18.315046764382259 ], [ -64.879975369441127, 18.315049280264077 ], [ -64.879976375269962, 18.315051962474399 ], [ -64.879977213460677, 18.315054643375049 ], [ -64.879978219289569, 18.315057326894987 ], [ -64.879979225118404, 18.315060009105309 ], [ -64.879980063309176, 18.315062691315632 ], [ -64.879981069138012, 18.315065373525897 ], [ -64.879981907328727, 18.315067888098099 ], [ -64.879982913157619, 18.315070570308364 ], [ -64.879983751348334, 18.315073252518687 ], [ -64.879984757177169, 18.315075933419337 ], [ -64.879985595367884, 18.315078616939275 ], [ -64.879986601196777, 18.315081299149597 ], [ -64.879987439387492, 18.315083981359919 ], [ -64.879988277578207, 18.315086663570185 ], [ -64.879989283407042, 18.315089345780507 ], [ -64.879990121597814, 18.315092027990829 ], [ -64.879990958478857, 18.315094710201095 ], [ -64.879991965617364, 18.315097392411417 ], [ -64.879992802498407, 18.315100074621739 ], [ -64.879993641998794, 18.315102756832005 ], [ -64.879994480189509, 18.315105439042327 ], [ -64.879995318380281, 18.315108121252649 ], [ -64.879996156570996, 18.315110803462915 ], [ -64.879997162399832, 18.315113484363565 ], [ -64.879998000590547, 18.315116167883559 ], [ -64.879998837471589, 18.315118850093882 ], [ -64.879999676971977, 18.315121532304147 ], [ -64.880000515162692, 18.315124214514469 ], [ -64.880001353353464, 18.315126895415119 ], [ -64.880002191544179, 18.315129578935057 ], [ -64.880003028425222, 18.315132261145379 ], [ -64.880003700287432, 18.315134943355702 ], [ -64.880004538478147, 18.315137625565967 ], [ -64.880005375359247, 18.315140306466617 ], [ -64.880006214859634, 18.315142989986612 ], [ -64.880007053050349, 18.315145839835054 ], [ -64.880007723602887, 18.31514852204532 ], [ -64.88000856048393, 18.315151204255642 ], [ -64.880009399984374, 18.315153886465964 ], [ -64.880010238175089, 18.315156567366557 ], [ -64.880010907417955, 18.315159250886552 ], [ -64.880011746918342, 18.315161933096874 ], [ -64.880012417470937, 18.315164782945317 ], [ -64.880013254351979, 18.315167465155639 ], [ -64.880014093852367, 18.315170147365905 ], [ -64.880014764404962, 18.315172829576227 ], [ -64.880015602595677, 18.315175510476877 ], [ -64.880016273148271, 18.315178193996815 ], [ -64.880016942391137, 18.315181043845257 ], [ -64.880017781891524, 18.315183726055579 ], [ -64.880018452444119, 18.315186408265902 ], [ -64.880019290634834, 18.315189090476167 ], [ -64.880019961187429, 18.315191940324667 ], [ -64.880020630430352, 18.315194622534932 ], [ -64.880021469930739, 18.315197303435582 ], [ -64.880022140483277, 18.315199986955577 ], [ -64.880022811035872, 18.315202669165842 ], [ -64.880023481588466, 18.315205519014285 ], [ -64.880024152141004, 18.315208201224607 ], [ -64.880024990331719, 18.315210883434929 ], [ -64.880025660884314, 18.315213733283372 ], [ -64.880026331436909, 18.315216415493637 ], [ -64.880027001989447, 18.315219096394287 ], [ -64.880027672542042, 18.315221779914282 ], [ -64.880028343094637, 18.315224628453052 ], [ -64.880029013647174, 18.315227311973047 ], [ -64.880029684199769, 18.315229994183312 ], [ -64.880030353442692, 18.315232844031755 ], [ -64.880031025304902, 18.315235526242077 ], [ -64.880031695857497, 18.315238208452399 ], [ -64.880032197462242, 18.315241058300842 ], [ -64.880032869324509, 18.315243740511107 ], [ -64.880033539877104, 18.315246421411757 ], [ -64.880034210429642, 18.315249272569872 ], [ -64.880034713344116, 18.315251953470522 ], [ -64.880035383896654, 18.315254636990517 ], [ -64.880036054449249, 18.315257486838959 ], [ -64.880036725001844, 18.315260169049225 ], [ -64.880037227916262, 18.315263018897667 ], [ -64.880037898468856, 18.31526570110799 ], [ -64.880038401383274, 18.315268383318312 ], [ -64.880039071935812, 18.315271233166754 ], [ -64.880039574850286, 18.315273915377077 ], [ -64.880040245402824, 18.315276765225519 ], [ -64.880040748317299, 18.315279447435785 ], [ -64.880041418869837, 18.315282129646107 ], [ -64.880041920474639, 18.31528497949455 ], [ -64.880042592336849, 18.3152876603952 ], [ -64.880043095251267, 18.315290511553314 ], [ -64.880043598165742, 18.315293192453964 ], [ -64.880044267408607, 18.315296043612079 ], [ -64.880044771632754, 18.315298725822345 ], [ -64.880045274547172, 18.315301574361115 ], [ -64.880045777461589, 18.31530425788111 ], [ -64.880046448014184, 18.315306940091432 ], [ -64.880046950928602, 18.315309789939874 ], [ -64.880047453843019, 18.315312472150197 ], [ -64.880047955447822, 18.315315321998639 ], [ -64.880048458362239, 18.315318004208905 ], [ -64.880048962586329, 18.315320854057347 ], [ -64.880049465500747, 18.31532353626767 ], [ -64.880049968415221, 18.315326386116112 ], [ -64.880050471329639, 18.315329068326434 ], [ -64.880050974244057, 18.315331918174877 ], [ -64.880051477158474, 18.315334600385199 ], [ -64.880051980072949, 18.315337450233642 ], [ -64.880052482987367, 18.315340132443907 ], [ -64.880052985901784, 18.315342982292407 ], [ -64.88005348750653, 18.315345664502672 ], [ -64.880053824092499, 18.315348514351115 ], [ -64.880054327006917, 18.315351196561437 ], [ -64.880054829921392, 18.31535404640988 ], [ -64.880055332835809, 18.315356896258322 ], [ -64.880055668112107, 18.315359578468644 ], [ -64.880056171026524, 18.315362428317087 ], [ -64.880056673940942, 18.315365110527409 ], [ -64.880057009217239, 18.315367960375852 ], [ -64.880057512131657, 18.315370642586117 ], [ -64.880057847407954, 18.315373492434617 ], [ -64.880058350322372, 18.315376342283059 ], [ -64.880058685598669, 18.315379024493325 ], [ -64.880059188513144, 18.315381874341767 ], [ -64.880059522479712, 18.31538455655209 ], [ -64.880060025394187, 18.315387406400532 ], [ -64.8800603619801, 18.315390088610854 ], [ -64.880060864894574, 18.315392938459297 ], [ -64.880061200170871, 18.31539578830774 ], [ -64.880061535447112, 18.315398470518062 ], [ -64.880061869413737, 18.315401320366504 ], [ -64.880062373637827, 18.315404002576827 ], [ -64.880062708914124, 18.315406852425269 ], [ -64.880063044190422, 18.315409702273712 ], [ -64.880063379466719, 18.315412384483977 ], [ -64.880063713433344, 18.31541523433242 ], [ -64.880064216347762, 18.315418084180919 ], [ -64.880064552933732, 18.315420766391185 ], [ -64.880064888210029, 18.315423616239627 ], [ -64.880065223486326, 18.31542629844995 ], [ -64.880065557452895, 18.315429148298392 ], [ -64.880065894038864, 18.315431998146835 ], [ -64.880066229315162, 18.315434680357157 ], [ -64.880066564591459, 18.3154375302056 ], [ -64.880066732229579, 18.315440380054042 ], [ -64.880067067505877, 18.315443062264364 ], [ -64.880067401472502, 18.315445912112807 ], [ -64.880067738058472, 18.31544876196125 ], [ -64.880068073334769, 18.315451444171572 ], [ -64.88006840861101, 18.315454294020014 ], [ -64.880068576249187, 18.315457143868457 ], [ -64.880068911525484, 18.315459826078722 ], [ -64.880069245492109, 18.315462675927222 ], [ -64.880069414439902, 18.315465524465992 ], [ -64.880069748406527, 18.31546820798593 ], [ -64.880070084992497, 18.315471057834372 ], [ -64.880070252630617, 18.315473906373199 ], [ -64.880070587906914, 18.315476589893137 ], [ -64.880070755545034, 18.315479438431908 ], [ -64.880071089511659, 18.315482289590022 ], [ -64.880071258459509, 18.315484970490672 ], [ -64.880071592426077, 18.315487821648787 ], [ -64.880071761373927, 18.31549067149723 ], [ -64.880071929012047, 18.31549335239788 ], [ -64.880072264288344, 18.315496203555995 ], [ -64.880072431926521, 18.315499053404437 ], [ -64.880072599564642, 18.31550190325288 ], [ -64.880072934840939, 18.315504585463202 ], [ -64.880073102479059, 18.315507435311645 ], [ -64.880073270117236, 18.315510285160087 ], [ -64.880073436445684, 18.31551296737041 ], [ -64.880073605393477, 18.315515817218852 ], [ -64.880073773031654, 18.315518667067295 ], [ -64.880074108307952, 18.315521349277617 ], [ -64.880074275946072, 18.31552419912606 ], [ -64.880074443584249, 18.315527048974502 ], [ -64.880074611222369, 18.315529897513272 ], [ -64.880074778860489, 18.315532581033267 ], [ -64.880074946498667, 18.31553543088171 ], [ -64.880075114136787, 18.31553827942048 ], [ -64.880075114136787, 18.315541130578595 ], [ -64.880075280465292, 18.315543811479245 ], [ -64.880075449413084, 18.31554666263736 ], [ -64.880075617051205, 18.315549512485802 ], [ -64.880075783379709, 18.315552193386395 ], [ -64.880075952327502, 18.315555044544567 ], [ -64.880075952327502, 18.31555789439301 ], [ -64.880076119965679, 18.315560744241452 ], [ -64.880076287603799, 18.315563426451718 ], [ -64.880076287603799, 18.315566276300217 ], [ -64.880076455241976, 18.31556912614866 ], [ -64.880076622880097, 18.315571975997102 ], [ -64.880076622880097, 18.315574658207368 ], [ -64.880076790518217, 18.31557750805581 ], [ -64.880076790518217, 18.315580357904309 ], [ -64.880076958156394, 18.31558320644308 ], [ -64.880076958156394, 18.315585889963018 ], [ -64.880077124484842, 18.315588738501788 ], [ -64.880077124484842, 18.315591588350287 ], [ -64.880077293432691, 18.315594271870225 ], [ -64.880077293432691, 18.315597120408995 ], [ -64.880077293432691, 18.31559997156711 ], [ -64.880077461070812, 18.315602821415609 ], [ -64.880077461070812, 18.315605503625875 ], [ -64.880077461070812, 18.315608353474317 ], [ -64.880077461070812, 18.31561120332276 ], [ -64.880077461070812, 18.315614053171203 ], [ -64.88007762739926, 18.315616735381525 ], [ -64.88007762739926, 18.315619585229967 ], [ -64.88007762739926, 18.31562243507841 ], [ -64.88007762739926, 18.315625284926853 ], [ -64.88007762739926, 18.315627967137175 ], [ -64.88007762739926, 18.315630816985617 ], [ -64.88007762739926, 18.315633665524388 ], [ -64.88007762739926, 18.31563651537283 ], [ -64.88007762739926, 18.315639198892825 ], [ -64.88007762739926, 18.315642047431595 ], [ -64.88007762739926, 18.31564489858971 ], [ -64.88007762739926, 18.315647748438153 ], [ -64.88007762739926, 18.315650430648475 ], [ -64.880077461070812, 18.315653280496917 ], [ -64.880077461070812, 18.31565613034536 ], [ -64.880077461070812, 18.315658980193803 ], [ -64.880077461070812, 18.315661662404125 ], [ -64.880077293432691, 18.315664512252567 ], [ -64.880077293432691, 18.31566736210101 ], [ -64.880077293432691, 18.315670211949453 ], [ -64.880077124484842, 18.315672894159775 ], [ -64.880077124484842, 18.315675744008217 ], [ -64.880076958156394, 18.315678592546988 ], [ -64.880076958156394, 18.31568144239543 ], [ -64.880076790518217, 18.315684125915425 ], [ -64.880076790518217, 18.315686974454195 ], [ -64.880076622880097, 18.31568982561231 ], [ -64.880076622880097, 18.315692675460753 ], [ -64.880076455241976, 18.315695356361402 ], [ -64.880076455241976, 18.315698207519517 ], [ -64.880076287603799, 18.31570105736796 ], [ -64.880076119965679, 18.315703739578282 ], [ -64.880075952327502, 18.315706589426725 ], [ -64.880075952327502, 18.315709439275167 ], [ -64.880075783379709, 18.31571228912361 ], [ -64.880075617051205, 18.315714971333932 ], [ -64.880075449413084, 18.315717821182375 ], [ -64.880075280465292, 18.315720671030817 ], [ -64.880075280465292, 18.31572352087926 ], [ -64.880075114136787, 18.315726203089582 ], [ -64.880074946498667, 18.315729052938025 ], [ -64.880074778860489, 18.315731901476795 ], [ -64.880074611222369, 18.31573458499679 ], [ -64.880074443584249, 18.31573743353556 ], [ -64.880074275946072, 18.315740283384002 ], [ -64.880074108307952, 18.315743134542117 ], [ -64.880073939360102, 18.315745815442767 ], [ -64.880073605393477, 18.315748666600882 ], [ -64.880073436445684, 18.315751516449325 ], [ -64.880073270117236, 18.315754197349918 ], [ -64.880073102479059, 18.31575704850809 ], [ -64.880072934840939, 18.315759898356532 ], [ -64.880072599564642, 18.315762748204975 ], [ -64.880072431926521, 18.31576543041524 ], [ -64.880072264288344, 18.315768280263683 ], [ -64.880071929012047, 18.315771130112182 ], [ -64.880071761373927, 18.315773812322448 ], [ -64.880071592426077, 18.31577666217089 ], [ -64.880071258459509, 18.315779512019333 ], [ -64.880071089511659, 18.315782194229655 ], [ -64.880070755545034, 18.315785044078098 ], [ -64.880070587906914, 18.31578789392654 ], [ -64.880070252630617, 18.31579074246531 ], [ -64.880070084992497, 18.315793425985305 ], [ -64.880069748406527, 18.315796274524075 ], [ -64.880069582078022, 18.315799124372518 ], [ -64.880069245492109, 18.315801807892512 ], [ -64.880068911525484, 18.315804656431283 ], [ -64.880068576249187, 18.315807507589398 ], [ -64.88006840861101, 18.315810188490047 ], [ -64.880068073334769, 18.315813039648162 ], [ -64.880067738058472, 18.315815889496605 ], [ -64.880067401472502, 18.315818570397255 ], [ -64.880067235144054, 18.31582142155537 ], [ -64.880066899867757, 18.315824271403812 ], [ -64.880066564591459, 18.315826953614135 ], [ -64.880066229315162, 18.315829803462577 ], [ -64.880065894038864, 18.31583248436317 ], [ -64.880065557452895, 18.315835335521285 ], [ -64.880065223486326, 18.315838185369785 ], [ -64.880064888210029, 18.31584086758005 ], [ -64.880064552933732, 18.315843717428493 ], [ -64.880064216347762, 18.315846567276935 ], [ -64.880063882381137, 18.315849249487258 ], [ -64.880063547104839, 18.3158520993357 ], [ -64.880063044190422, 18.315854781546022 ], [ -64.880062708914124, 18.315857631394465 ], [ -64.880062373637827, 18.315860481242908 ], [ -64.880062038361586, 18.31586316345323 ], [ -64.880061535447112, 18.315866013301672 ], [ -64.880061200170871, 18.315868863150115 ], [ -64.880060864894574, 18.315871545360437 ], [ -64.8800603619801, 18.31587439520888 ], [ -64.880060025394187, 18.315877077419145 ], [ -64.880059691427562, 18.315879927267588 ], [ -64.880059188513144, 18.31588260947791 ], [ -64.880058853236847, 18.315885459326353 ], [ -64.880058350322372, 18.315888309174795 ], [ -64.880058015046131, 18.315890991385118 ], [ -64.880057512131657, 18.31589384123356 ], [ -64.880057176855416, 18.315896523443882 ], [ -64.880056673940942, 18.315899373292325 ], [ -64.880056171026524, 18.315902055502647 ], [ -64.880055834440554, 18.31590490535109 ], [ -64.880055332835809, 18.315907755199532 ], [ -64.880054829921392, 18.315910437409798 ], [ -64.880054494645094, 18.315913287258297 ], [ -64.880053990421004, 18.315915969468563 ], [ -64.88005348750653, 18.315918819317005 ], [ -64.880052985901784, 18.315921501527328 ], [ -64.880052482987367, 18.31592435137577 ], [ -64.880051980072949, 18.315927033586092 ], [ -64.880051643486979, 18.315929883434535 ], [ -64.880051141882234, 18.315932565644857 ], [ -64.880050638967759, 18.3159354154933 ], [ -64.880050136053342, 18.315938096393893 ], [ -64.880049633138924, 18.315940947552008 ], [ -64.88004913022445, 18.315943628452658 ], [ -64.880048627310032, 18.315946479610773 ], [ -64.880048124395614, 18.315949160511423 ], [ -64.880047453843019, 18.315952010359865 ], [ -64.880046950928602, 18.315954692570187 ], [ -64.880046448014184, 18.31595754241863 ], [ -64.880045945099766, 18.315960225938568 ], [ -64.880045442185292, 18.315963074477338 ], [ -64.880044771632754, 18.315965757997333 ], [ -64.880044267408607, 18.315968606536103 ], [ -64.880043764494189, 18.315971290056098 ], [ -64.880043095251267, 18.31597397226642 ], [ -64.880042592336849, 18.315976822114862 ], [ -64.880042089422432, 18.315979504325128 ], [ -64.880041418869837, 18.31598235417357 ], [ -64.880040915955419, 18.315985036383893 ], [ -64.880040245402824, 18.315987886232335 ], [ -64.880039742488407, 18.315990568442658 ], [ -64.880039071935812, 18.31599325065298 ], [ -64.880038569021394, 18.315996100501422 ], [ -64.880037898468856, 18.315998781402016 ], [ -64.880037395554382, 18.31600163256013 ], [ -64.880036725001844, 18.31600431346078 ], [ -64.880036054449249, 18.316006996980775 ], [ -64.880035551534831, 18.316009845519545 ], [ -64.880034880982237, 18.31601252903954 ], [ -64.880034210429642, 18.316015211249805 ], [ -64.880033539877104, 18.316018061098248 ], [ -64.880033036962629, 18.31602074330857 ], [ -64.880032366410092, 18.316023425518893 ], [ -64.880031695857497, 18.316026275367335 ], [ -64.880031025304902, 18.316028957577657 ], [ -64.880030353442692, 18.31603163847825 ], [ -64.880029684199769, 18.316034489636365 ], [ -64.880029013647174, 18.316037170537015 ], [ -64.880028343094637, 18.31603985405701 ], [ -64.880027672542042, 18.31604270259578 ], [ -64.880027001989447, 18.316045386115718 ], [ -64.880026331436909, 18.31604806832604 ], [ -64.880025660884314, 18.316050918174483 ], [ -64.880024990331719, 18.316053600384805 ], [ -64.880024318469509, 18.316056282595127 ], [ -64.880023649226587, 18.31605896349572 ], [ -64.88002297736432, 18.316061814653835 ], [ -64.880022140483277, 18.316064495554485 ], [ -64.880021469930739, 18.31606717907448 ], [ -64.880020799378144, 18.316069861284745 ], [ -64.880020128825549, 18.316072711133188 ], [ -64.880019290634834, 18.31607539334351 ], [ -64.880018620082296, 18.316078075553833 ], [ -64.880017781891524, 18.316080756454426 ], [ -64.880017111338987, 18.316083607612597 ], [ -64.880016439476719, 18.316086288513191 ], [ -64.880015602595677, 18.316088972033185 ], [ -64.880014932043082, 18.316091654243507 ], [ -64.880014093852367, 18.316094336453773 ], [ -64.880013423299829, 18.316097017354423 ], [ -64.880012585109114, 18.316099868512538 ], [ -64.880011746918342, 18.316102549413188 ], [ -64.880011076365804, 18.316105232933126 ], [ -64.880010238175089, 18.316107915143448 ], [ -64.880009399984374, 18.31611059735377 ], [ -64.880008729431779, 18.316113279564036 ], [ -64.880007891241064, 18.316116129412535 ], [ -64.880007053050349, 18.3161188116228 ], [ -64.880006382497754, 18.31612149252345 ], [ -64.880005544307039, 18.316124176043445 ], [ -64.880004706116324, 18.31612685825371 ], [ -64.880003867925609, 18.316129540464033 ], [ -64.880003028425222, 18.316132221364683 ], [ -64.880002191544179, 18.316134903574948 ], [ -64.880001353353464, 18.316137587094943 ], [ -64.880000515162692, 18.316140269305265 ], [ -64.879999676971977, 18.316142951515531 ], [ -64.879998837471589, 18.31614563241618 ], [ -64.879998000590547, 18.316148314626503 ], [ -64.879997162399832, 18.316151164474945 ], [ -64.879996324209117, 18.316153847994883 ], [ -64.879995486018402, 18.316156530205205 ], [ -64.879994647827687, 18.316159212415528 ], [ -64.879993809636971, 18.31616189462585 ], [ -64.879992802498407, 18.316164575526443 ], [ -64.879991965617364, 18.316167259046438 ], [ -64.879991127426649, 18.31616994125676 ], [ -64.879990289235934, 18.316172454519233 ], [ -64.879989283407042, 18.316175138039171 ], [ -64.879988445216327, 18.316177820249493 ], [ -64.879987607025612, 18.316180502459815 ], [ -64.879986601196777, 18.316183183360465 ], [ -64.879985763006061, 18.316185865570731 ], [ -64.879984757177169, 18.316188549090725 ], [ -64.879983918986454, 18.316191231301048 ], [ -64.879983079486067, 18.316193913511313 ], [ -64.879982074966904, 18.316196594411963 ], [ -64.879981069138012, 18.316199276622285 ], [ -64.879980230947297, 18.316201960142223 ], [ -64.879979225118404, 18.316204473404753 ], [ -64.879978386927689, 18.316207155615018 ], [ -64.879977381098854, 18.316209839135013 ], [ -64.879976375269962, 18.316212521345335 ], [ -64.879975537079247, 18.316215203555601 ], [ -64.879974531250411, 18.31621788445625 ], [ -64.879973525421519, 18.316220567976245 ], [ -64.879972519592684, 18.31622308254839 ], [ -64.879971681401969, 18.31622576344904 ], [ -64.879970675573077, 18.316228446968978 ], [ -64.879969668434569, 18.3162311291793 ], [ -64.879968663915349, 18.316233811389623 ], [ -64.879967658086514, 18.316236325961768 ], [ -64.879966652257622, 18.31623900817209 ], [ -64.879965646428786, 18.316241690382356 ], [ -64.879964640599894, 18.316244372592678 ], [ -64.879963633461387, 18.316246887164823 ], [ -64.879962628942167, 18.316249569375145 ], [ -64.879961623113331, 18.316252251585411 ], [ -64.879960617284439, 18.316254766157613 ], [ -64.879959611455604, 18.316257448367878 ], [ -64.879958605626712, 18.3162601305782 ], [ -64.879957598488204, 18.316262645150346 ], [ -64.879956426330864, 18.316265327360668 ], [ -64.879955420501972, 18.31626800957099 ], [ -64.879954413363464, 18.316270524143135 ], [ -64.879953408844244, 18.316273206353458 ], [ -64.879952235377232, 18.316275888563723 ], [ -64.879951229548396, 18.316278403135925 ], [ -64.879950222409832, 18.316281085346191 ], [ -64.879949050252492, 18.316283767556513 ], [ -64.879948044423656, 18.316286282128658 ], [ -64.879947038594764, 18.31628896433898 ], [ -64.879945865127752, 18.316291477601453 ], [ -64.879944859298917, 18.316294161121448 ], [ -64.879943685831904, 18.316296674383921 ], [ -64.879942680003012, 18.316299356594243 ], [ -64.879941506536056, 18.31630187247606 ], [ -64.879940499397492, 18.31630455337671 ], [ -64.879939327240152, 18.316307235586976 ], [ -64.879938152463467, 18.31630975146885 ], [ -64.879937147944304, 18.316312432369443 ], [ -64.879935974477291, 18.316314948251318 ], [ -64.879934801010279, 18.31631746151379 ], [ -64.879933795181387, 18.316320145033785 ], [ -64.879932620404702, 18.31632265960593 ], [ -64.879931448247362, 18.316325340506523 ], [ -64.879930273470734, 18.316327856388398 ], [ -64.879929101313394, 18.316330538598663 ], [ -64.879928095484502, 18.316333053170865 ], [ -64.879926922017489, 18.316335735381131 ], [ -64.879925748550477, 18.31633824864366 ], [ -64.879924575083464, 18.316340764525478 ], [ -64.879923401616452, 18.316343445426128 ], [ -64.879922228149496, 18.316345961307945 ], [ -64.879921053372811, 18.316348474570418 ], [ -64.879919881215471, 18.316351158090413 ], [ -64.879918706438787, 18.316353671352886 ], [ -64.879917534281446, 18.316356187234703 ], [ -64.879916360814434, 18.316358869445025 ], [ -64.879915018399629, 18.316361384017171 ], [ -64.879913846242289, 18.316363898589316 ], [ -64.879912671465604, 18.316366579489966 ], [ -64.879911499308264, 18.316369095371783 ], [ -64.879910325841252, 18.316371608634313 ], [ -64.879908983426446, 18.31637412451613 ], [ -64.879907811269106, 18.31637680541678 ], [ -64.879906637802094, 18.316379321298598 ], [ -64.879905295387232, 18.316381834561071 ], [ -64.879904123229892, 18.316384350442888 ], [ -64.879902948453264, 18.31638686501509 ], [ -64.879901607348074, 18.316389547225356 ], [ -64.879900435190734, 18.316392060487885 ], [ -64.879899094085602, 18.316394576369703 ], [ -64.879897920618589, 18.316397089632176 ], [ -64.879896579513456, 18.316399605513993 ], [ -64.879895406046444, 18.316402120086195 ], [ -64.879894064941254, 18.316404633348668 ], [ -64.879892891474242, 18.31640731555899 ], [ -64.879891550369109, 18.316409831440808 ], [ -64.879890376902097, 18.316412346012953 ], [ -64.879889034487292, 18.316414860585098 ], [ -64.879887693382159, 18.3164173751573 ], [ -64.879886521224819, 18.316419888419773 ], [ -64.879885180119629, 18.316422404301591 ], [ -64.879883839014497, 18.316424917564063 ], [ -64.879882497909364, 18.316427433445938 ], [ -64.879881156804174, 18.316429948018083 ], [ -64.879879983337162, 18.316432462590228 ], [ -64.879878642232029, 18.316434977162373 ], [ -64.879877301126896, 18.316437490424903 ], [ -64.879875960021707, 18.316440006306721 ], [ -64.879874618916574, 18.316442519569193 ], [ -64.879873277811441, 18.316445035451011 ], [ -64.879871935396579, 18.316447550023213 ], [ -64.879870595601119, 18.316449895647565 ], [ -64.879869254495986, 18.316452411529383 ], [ -64.879867913390797, 18.316454926101528 ], [ -64.879866572285664, 18.316457439364001 ], [ -64.879865231180531, 18.316459955245875 ], [ -64.879863890075342, 18.316462468508348 ], [ -64.879862548970209, 18.316464984390166 ], [ -64.879861040226899, 18.316467331324191 ], [ -64.879859699121766, 18.316469844586663 ], [ -64.879858358016634, 18.316472360468538 ], [ -64.879857016911444, 18.316474875040683 ], [ -64.879855675806311, 18.316477389612828 ], [ -64.879854167063002, 18.316479736546853 ], [ -64.879852825957869, 18.316482251118998 ], [ -64.879851484852679, 18.316484764381471 ], [ -64.879849976109426, 18.316487280263345 ], [ -64.879848635004237, 18.31648962719737 ], [ -64.879847126260984, 18.316492140459843 ], [ -64.879845785155794, 18.316494656341661 ], [ -64.879844444050661, 18.316497003275686 ], [ -64.879842935307352, 18.316499516538158 ], [ -64.879841594202219, 18.316502032419976 ], [ -64.879840085458909, 18.316504379354001 ], [ -64.879838575405927, 18.316506892616474 ], [ -64.879837235610466, 18.316509239550498 ], [ -64.879835726867157, 18.316511755432373 ], [ -64.879834384452352, 18.316514270004518 ], [ -64.879832877018714, 18.316516615628871 ], [ -64.879831368275404, 18.316519131510688 ], [ -64.879830027170271, 18.316521478444713 ], [ -64.879828518426962, 18.316523993016858 ], [ -64.879827008373979, 18.316526338641211 ], [ -64.879825500940399, 18.316528854523028 ], [ -64.879824159835209, 18.316531201457053 ], [ -64.879822651091956, 18.316533716029198 ], [ -64.879821142348646, 18.316536061653551 ], [ -64.879819633605337, 18.316538577535368 ], [ -64.879818124862027, 18.316540924469393 ], [ -64.879816616118774, 18.316543271403418 ], [ -64.879815107375464, 18.316545784665891 ], [ -64.879813598632154, 18.316548131599916 ], [ -64.879812089888844, 18.316550647481733 ], [ -64.879810581145591, 18.316552994415758 ], [ -64.879809072402281, 18.316555341349783 ], [ -64.879807562349299, 18.316557854612256 ], [ -64.879806054915662, 18.316560201546281 ], [ -64.879804546172409, 18.316562548480306 ], [ -64.879803037429099, 18.316565064362123 ], [ -64.879801527376117, 18.316567411296148 ], [ -64.879800019942479, 18.316569758230173 ], [ -64.879798343561049, 18.316572105164198 ], [ -64.879796834817739, 18.316574618426671 ], [ -64.879795326074486, 18.316576965360696 ], [ -64.879793817331176, 18.316579313604393 ], [ -64.879792140949746, 18.316581660538418 ], [ -64.879790632206436, 18.316584175110563 ], [ -64.879789123463127, 18.316586522044588 ], [ -64.879787447081696, 18.316588867668941 ], [ -64.879785938338387, 18.316591214602909 ], [ -64.879784429595077, 18.316593561536934 ], [ -64.879782753213647, 18.316595908470958 ], [ -64.879781244470394, 18.316598255404983 ], [ -64.879779568088907, 18.316600603648681 ], [ -64.879778059345654, 18.316603118220826 ], [ -64.879776382964167, 18.316605465154851 ], [ -64.879774874220914, 18.316607812088876 ], [ -64.879773197839427, 18.3166101590229 ], [ -64.879771521457997, 18.316612504647196 ], [ -64.879770011405071, 18.316614851581221 ], [ -64.879768336333257, 18.316617198515246 ], [ -64.879766659951827, 18.316619545449271 ], [ -64.879765151208517, 18.316621892383296 ], [ -64.879763474827087, 18.316624240626993 ], [ -64.879761798445656, 18.316626418613168 ], [ -64.879760288392674, 18.316628765547193 ], [ -64.879758613320917, 18.316631112481218 ], [ -64.879756936939486, 18.316633459415243 ], [ -64.879755260558056, 18.316635806349211 ], [ -64.879753584176626, 18.316638154592908 ], [ -64.879751907795139, 18.316640501526933 ], [ -64.879750399051886, 18.316642848460958 ], [ -64.879748721360784, 18.316645026447134 ], [ -64.879747046288969, 18.316647373381159 ], [ -64.879745369907539, 18.316649721624856 ], [ -64.879743693526109, 18.316652068558881 ], [ -64.879742017144679, 18.316654415492906 ], [ -64.879740339453576, 18.316656593479081 ], [ -64.879738664381762, 18.316658940413106 ], [ -64.879736988000332, 18.316661287347131 ], [ -64.879735311618902, 18.316663466642979 ], [ -64.879733467599351, 18.316665813577004 ], [ -64.879731791217864, 18.316668160511028 ], [ -64.879730114836434, 18.316670341116549 ], [ -64.879728438455004, 18.316672688050573 ], [ -64.879726762073574, 18.316675033674926 ], [ -64.879725084382471, 18.316677214280503 ], [ -64.879723240362864, 18.316679561214471 ], [ -64.879721565291106, 18.316681740510376 ], [ -64.879719888909676, 18.316684087444401 ], [ -64.879718044890069, 18.316686265430576 ], [ -64.879716368508639, 18.316688612364601 ], [ -64.879714692127209, 18.316690960608298 ], [ -64.879712848107602, 18.316693138594474 ], [ -64.879711170416499, 18.316695319200051 ], [ -64.879709326396892, 18.316697666134019 ], [ -64.879707651325134, 18.316699845429923 ], [ -64.879705974943704, 18.316702192363948 ], [ -64.879704130924154, 18.316704370350124 ], [ -64.879702454542667, 18.316706718593821 ], [ -64.879700610523116, 18.316708896579996 ], [ -64.879698766503509, 18.316711077185573 ], [ -64.879697090122079, 18.316713424119598 ], [ -64.879695246102472, 18.316715603415446 ], [ -64.879693568411369, 18.316717781401678 ], [ -64.879691724391819, 18.316720129645319 ], [ -64.879689880372212, 18.316722307631551 ], [ -64.879688205300454, 18.316724488237071 ], [ -64.879686361280847, 18.316726835171096 ], [ -64.879684517261296, 18.316729014467001 ], [ -64.879682673241689, 18.316731192453176 ], [ -64.879680996860259, 18.316733373058696 ], [ -64.879679152840652, 18.316735552354601 ], [ -64.879677308821101, 18.316737899288626 ], [ -64.879675464801494, 18.316740078584473 ], [ -64.879673620781944, 18.316742256570706 ], [ -64.879671775452664, 18.316744437176226 ], [ -64.879669931433057, 18.316746616472074 ], [ -64.879668256361299, 18.316748794458306 ], [ -64.879666412341749, 18.316750975063826 ], [ -64.879664568322141, 18.316753154359731 ], [ -64.879662724302534, 18.316755332345906 ], [ -64.879660880282984, 18.316757511641754 ], [ -64.879659036263376, 18.316759692247331 ], [ -64.879657192243826, 18.316761871543179 ], [ -64.879655180586099, 18.316764049529411 ], [ -64.879653336566491, 18.316766230134931 ], [ -64.879651492546884, 18.316768409430836 ], [ -64.879649648527334, 18.316770587417011 ], [ -64.879647804507727, 18.316772766712859 ], [ -64.879645960488176, 18.316774947318436 ], [ -64.879643948830449, 18.316777126614284 ], [ -64.879642104810841, 18.316779304600516 ], [ -64.879640260791234, 18.316781485206036 ], [ -64.879638416771684, 18.316783495554091 ], [ -64.879636405113956, 18.316785676159668 ], [ -64.879634561094349, 18.316787855455516 ], [ -64.879632717074799, 18.316790033441691 ], [ -64.879630705417071, 18.316792214047268 ], [ -64.879628861397464, 18.316794224395323 ], [ -64.879627017377913, 18.316796403691171 ], [ -64.879625004410457, 18.316798584296748 ], [ -64.879623160390906, 18.316800594644803 ], [ -64.879621150042851, 18.316802775250324 ], [ -64.879619306023244, 18.316804954546228 ], [ -64.879617294365516, 18.316806966203956 ], [ -64.879615450345966, 18.316809145499803 ], [ -64.879613437378566, 18.316811323485979 ], [ -64.879611593358959, 18.316813336453379 ], [ -64.879609583010904, 18.316815514439611 ], [ -64.879607738991353, 18.316817527407011 ], [ -64.879605727333626, 18.316819705393186 ], [ -64.879603714366169, 18.316821718360586 ], [ -64.879601870346619, 18.316823896346818 ], [ -64.879599859998564, 18.316825909314218 ], [ -64.879597848340836, 18.316828088610066 ], [ -64.879595835373436, 18.316830100267794 ], [ -64.879593991353829, 18.316832279563698 ], [ -64.879591981005774, 18.316834291221426 ], [ -64.879589969348046, 18.316836470517273 ], [ -64.879587956380647, 18.316838482175001 ], [ -64.879586112361096, 18.316840492523056 ], [ -64.879584102013041, 18.316842673128633 ], [ -64.879582090355314, 18.316844683476688 ], [ -64.879515538012129, 18.316901177531179 ], [ -64.879463905463751, 18.316971082637224 ], [ -64.879446303458678, 18.317052053170471 ], [ -64.879525261024469, 18.317095974364179 ], [ -64.879609918287201, 18.317123802296067 ], [ -64.879694743188054, 18.317146098169246 ], [ -64.879773699444229, 18.317190019362954 ], [ -64.879852658319692, 18.317228576136074 ], [ -64.879931615885539, 18.317272497329839 ], [ -64.879987607025612, 18.317343240626599 ], [ -64.880055165197689, 18.317397889351867 ], [ -64.880134121453807, 18.317441810545574 ], [ -64.880218780026212, 18.317469638477519 ], [ -64.880303772565242, 18.317486571239726 ], [ -64.880394297162979, 18.317492772541357 ], [ -64.880484989398894, 18.317493444403624 ], [ -64.880575681634809, 18.317494113646489 ], [ -64.880666206232547, 18.317494953146934 ], [ -64.880756898468462, 18.317495622389799 ], [ -64.880842226283733, 18.317469304510894 ], [ -64.88092755409906, 18.317426724422319 ], [ -64.881012880604658, 18.317394873174919 ], [ -64.88109804209148, 18.317373918406929 ], [ -64.881188734327395, 18.317363858808619 ], [ -64.88127942656331, 18.317359166250299 ], [ -64.881370117489553, 18.317359835493164 ], [ -64.881460809725411, 18.317360673683879 ], [ -64.881557035329763, 18.317372240715827 ], [ -64.881653259624386, 18.317378444636859 ], [ -64.881743784222181, 18.317384647248161 ], [ -64.881834476458096, 18.317385316491084 ], [ -64.881925167384281, 18.317391520412059 ], [ -64.882015693291748, 18.317403087444006 ], [ -64.882106216579814, 18.317414485528104 ], [ -64.882196742487281, 18.317426052560052 ], [ -64.882287433413467, 18.317426890750767 ], [ -64.882378125649382, 18.317416832462129 ], [ -64.882463453464709, 18.317390345635374 ], [ -64.882548782589652, 18.317353131277059 ], [ -64.882628409398365, 18.317315915609129 ], [ -64.882702505458042, 18.317267803461789 ], [ -64.882776601517662, 18.317219691314449 ], [ -64.882858745517922, 18.317151630228011 ], [ -64.882927309518834, 18.317098152350411 ], [ -64.883001405578455, 18.317050041512744 ], [ -64.883053036817159, 18.316980136406698 ], [ -64.88310466936548, 18.316910062352804 ], [ -64.88314490252003, 18.316834626497666 ], [ -64.883156972466395, 18.316748125215383 ], [ -64.883174743419374, 18.316667154682193 ], [ -64.883198211449837, 18.316580822347703 ], [ -64.883215813454967, 18.316499685486008 ], [ -64.883228052349125, 18.316413184203668 ], [ -64.883262753444967, 18.31633238261827 ], [ -64.883280355450097, 18.316251244446903 ], [ -64.88330382348056, 18.316170276533001 ], [ -64.88331019373004, 18.316083775250718 ], [ -64.883305333533542, 18.315991740599998 ], [ -64.883294772330487, 18.31590507298921 ], [ -64.883295610521202, 18.31581840406875 ], [ -64.883364005574265, 18.315764927500823 ], [ -64.883449333389535, 18.315738608312245 ], [ -64.883534493566685, 18.315717485906077 ], [ -64.883608589626363, 18.315669541396915 ], [ -64.88366575554312, 18.315606677092887 ], [ -64.88372308647871, 18.315536771986842 ], [ -64.883746389490398, 18.315455801453595 ], [ -64.883764157823975, 18.315374665901572 ], [ -64.883781927467226, 18.315293695368382 ], [ -64.883793997413648, 18.315207195395715 ], [ -64.88377773651365, 18.315125890895899 ], [ -64.883738676826113, 18.315049783178551 ], [ -64.88370548447358, 18.314968311040559 ], [ -64.883643625998445, 18.314908296584974 ], [ -64.883593000588633, 18.314875439508739 ], [ -64.883570369439212, 18.314859010970679 ], [ -64.883491410563693, 18.314820454197559 ], [ -64.883412452997902, 18.314776533003794 ], [ -64.883333495432055, 18.314737976230674 ], [ -64.883254537866208, 18.314699419457554 ], [ -64.883181281306975, 18.314650133843259 ], [ -64.883102322431455, 18.314606212649494 ], [ -64.88302906456255, 18.314556927035142 ], [ -64.882953459759619, 18.314501606447664 ], [ -64.883073322342227, 18.314538319201176 ], [ -64.883155631361262, 18.314567655876374 ], [ -64.883245654354255, 18.314582743309359 ], [ -64.883335508399455, 18.314605039182482 ], [ -64.883425528773103, 18.314620126615466 ], [ -64.883515382818302, 18.314642254850469 ], [ -64.883597694456682, 18.314671759163787 ], [ -64.88368771483033, 18.314686678958594 ], [ -64.88377773651365, 18.314694725589561 ], [ -64.883867759506643, 18.314695396142099 ], [ -64.883957947518468, 18.314696065385021 ], [ -64.884040257847175, 18.314725403369891 ], [ -64.884130279530495, 18.314733282362681 ], [ -64.884220302523488, 18.314734120553396 ], [ -64.884303282095118, 18.314706124983331 ], [ -64.884393471416558, 18.314685337853462 ], [ -64.884491204454491, 18.314678967603982 ], [ -64.884519200024556, 18.314683661472031 ], [ -64.884581226137868, 18.314694055036966 ], [ -64.884671080183011, 18.314708974831774 ], [ -64.884753390511719, 18.314738311506972 ], [ -64.884835868478604, 18.314767815820346 ], [ -64.884918178807311, 18.314797152495544 ], [ -64.884992777781349, 18.314847946853149 ], [ -64.885075088110057, 18.314884491968542 ], [ -64.885149687084152, 18.314928077886009 ], [ -64.885216743651426, 18.314993121485827 ], [ -64.885291508953969, 18.315036707403294 ], [ -64.885335933062152, 18.315108791805187 ], [ -64.885372645815664, 18.315188084647332 ], [ -64.885424613640282, 18.315260169049225 ], [ -64.885461494031972, 18.315339294253192 ], [ -64.885498374423662, 18.315418587095337 ], [ -64.885512623665932, 18.315504753101322 ], [ -64.885504241758724, 18.315590751469188 ], [ -64.885503571206129, 18.315676748527437 ], [ -64.885495189298922, 18.315762748204975 ], [ -64.885464511518592, 18.315841370494468 ], [ -64.885426290021769, 18.315919991474345 ], [ -64.885380524808454, 18.315991238995252 ], [ -64.885319839800331, 18.31606248520643 ], [ -64.885251778713837, 18.316119314537218 ], [ -64.885183717627399, 18.31617614255839 ], [ -64.885115656540904, 18.316232973198851 ], [ -64.885070058965766, 18.316304387048206 ], [ -64.885024293752451, 18.31637563325944 ], [ -64.884986072255629, 18.316454255548933 ], [ -64.884962770553614, 18.316540086278678 ], [ -64.884924549056734, 18.316618708568228 ], [ -64.884863864048612, 18.316682746339211 ], [ -64.884788426883802, 18.316725157479993 ], [ -64.884698069924241, 18.316753154359731 ], [ -64.884608049550536, 18.316752482497463 ], [ -64.884518194195721, 18.316722979493818 ], [ -64.884443427583449, 18.316672185136156 ], [ -64.884384083680516, 18.316607141536281 ], [ -64.884293894359018, 18.316606469674014 ], [ -64.884203705037578, 18.316612841233166 ], [ -64.884120891794396, 18.316641004441351 ], [ -64.884045286991466, 18.316690456384208 ], [ -64.88398476962152, 18.316754663102984 ], [ -64.883946549434313, 18.316833116444741 ], [ -64.88391570270619, 18.316911738734234 ], [ -64.883885024925803, 18.316990362333456 ], [ -64.883899275477745, 18.317076694667946 ], [ -64.883898435977358, 18.317162694345484 ], [ -64.883897765424763, 18.317248691403677 ], [ -64.883889552465348, 18.317334689771599 ], [ -64.883881170558197, 18.317420689449136 ], [ -64.883872954979438, 18.317506686507329 ], [ -64.883849654587095, 18.317592518546746 ], [ -64.883841439008393, 18.317678515604939 ], [ -64.883825681022813, 18.317764515282477 ], [ -64.883779915809498, 18.317835761493654 ], [ -64.883719230801375, 18.317899965593142 ], [ -64.88363641755825, 18.317935003274897 ], [ -64.88356098039344, 18.317977583363472 ], [ -64.883477999512195, 18.318005577623865 ], [ -64.88338781150037, 18.318019157623212 ], [ -64.883297788507377, 18.318018485760945 ], [ -64.883207766824057, 18.318010440439707 ], [ -64.883117746450409, 18.318002561446917 ], [ -64.88302755581924, 18.317994682454184 ], [ -64.882937535445592, 18.317986803461395 ], [ -64.882847512452599, 18.317978924468662 ], [ -64.8827576584074, 18.317956628595482 ], [ -64.882667470395631, 18.317955956733215 ], [ -64.882577447402639, 18.317948077740482 ], [ -64.882495304712052, 18.317911532625089 ], [ -64.882405284338404, 18.3179036536323 ], [ -64.882315261345411, 18.317888567509044 ], [ -64.882217697255271, 18.317887729318329 ], [ -64.882127506624101, 18.317887057456062 ], [ -64.882037318612333, 18.317900637455409 ], [ -64.881997923648498, 18.317932656340872 ], [ -64.881960371394541, 18.317946570306844 ], [ -64.881892142669926, 18.318003399637689 ], [ -64.881809329426801, 18.318045810778415 ], [ -64.881741100702186, 18.318102641418932 ], [ -64.881695504436721, 18.31817405526823 ], [ -64.881634819428598, 18.318238091729597 ], [ -64.881589220543731, 18.318309337940775 ], [ -64.881550831408731, 18.318387961539997 ], [ -64.88151244358346, 18.318495248642478 ], [ -64.881511605392745, 18.318581248320015 ], [ -64.881510933530478, 18.318667245378208 ], [ -64.881532726489183, 18.318753579022371 ], [ -64.881554353119441, 18.318839745028413 ], [ -64.881591233511131, 18.318919037870501 ], [ -64.881553010704636, 18.31899749252193 ], [ -64.88146265505469, 18.319018279651743 ], [ -64.881394592658523, 18.319075108982588 ], [ -64.88133407659825, 18.319139146753571 ], [ -64.881288311384935, 18.319210560602926 ], [ -64.881235170093305, 18.319281806814161 ], [ -64.881181861163498, 18.319353220663459 ], [ -64.881106423998688, 18.319402673915931 ], [ -64.880978348456665, 18.319451959530284 ], [ -64.880888159135225, 18.319451122649241 ], [ -64.880797968504055, 18.319457660536841 ], [ -64.88070778049223, 18.319471237916844 ], [ -64.880617757499238, 18.319470567364306 ], [ -64.880512482054485, 18.319476769975608 ], [ -64.880422460371165, 18.319468890982819 ], [ -64.880332606325965, 18.319446595109696 ], [ -64.880235040926152, 18.319431507676711 ], [ -64.880160441952114, 18.319387921759301 ], [ -64.880100930410947, 18.319322879469098 ], [ -64.880056506302822, 18.319250793757476 ], [ -64.879981907328727, 18.319199999399871 ], [ -64.879899597000019, 18.31916345559415 ], [ -64.879809575316699, 18.319155576601361 ], [ -64.879712009916886, 18.319154738410646 ], [ -64.879614276878954, 18.319153898910258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_684", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.863622606389526, 18.320335915463602 ], [ -64.863627132619456, 18.320427278252112 ], [ -64.863647584473028, 18.320508582751927 ], [ -64.863662839544133, 18.32059491639609 ], [ -64.863688654508621, 18.320676220895905 ], [ -64.863751855398561, 18.320737576456622 ], [ -64.863825782510389, 18.320783844584355 ], [ -64.863910273444674, 18.32082005442345 ], [ -64.863995098345526, 18.320851235118255 ], [ -64.864079755608259, 18.320872189886245 ], [ -64.864169943620027, 18.320883086365598 ], [ -64.864260134251197, 18.32088895370066 ], [ -64.864350491210814, 18.320894653397545 ], [ -64.864440680532255, 18.32089549158826 ], [ -64.864531037491872, 18.32088090706975 ], [ -64.864595410539209, 18.320820557337925 ], [ -64.864633129121557, 18.320744784896817 ], [ -64.864665818559672, 18.32066398331142 ], [ -64.864708901562665, 18.320588210870312 ], [ -64.86476271340689, 18.320517635211729 ], [ -64.864811159520855, 18.320447059553089 ], [ -64.864830102631117, 18.320423925489195 ], [ -64.864848544136635, 18.320340106417177 ], [ -64.864859943530405, 18.320254108049312 ], [ -64.864865978503587, 18.320167942043327 ], [ -64.864887937790797, 18.320086972819752 ], [ -64.864904701605212, 18.320000806813766 ], [ -64.86492666351171, 18.319919837590191 ], [ -64.86496991415288, 18.319864181726416 ], [ -64.86503881343009, 18.319844735701679 ], [ -64.865107377430945, 18.319896032973759 ], [ -64.865181304542773, 18.319942301101491 ], [ -64.865249868543685, 18.319993598373571 ], [ -64.865318432544598, 18.320044728007474 ], [ -64.865386996545453, 18.320096026589226 ], [ -64.865439468594218, 18.320162409984562 ], [ -64.865492105661758, 18.320228794689569 ], [ -64.865555137603906, 18.320290150250287 ], [ -64.865612972763586, 18.320356534955295 ], [ -64.865676173653526, 18.320417890516012 ], [ -64.865744737654438, 18.320469187788092 ], [ -64.865807935925091, 18.320530543348809 ], [ -64.865860406664126, 18.320596928053817 ], [ -64.865902317509835, 18.320673371047462 ], [ -64.865917403633091, 18.320759704691625 ], [ -64.865932492375748, 18.320846038335787 ], [ -64.865931820513481, 18.32093220434183 ], [ -64.865930983632438, 18.321018537985992 ], [ -64.865935508552639, 18.321104703991978 ], [ -64.865894101931076, 18.32118617612997 ], [ -64.865874320630098, 18.32116371261867 ], [ -64.865825202653923, 18.321099842485808 ], [ -64.865770218652358, 18.32103496652411 ], [ -64.865700144598463, 18.320985680909757 ], [ -64.865618001907933, 18.320951985642807 ], [ -64.865532675402278, 18.320929857407805 ], [ -64.865442821357078, 18.320904711686183 ], [ -64.865355815850705, 18.320899682541892 ], [ -64.865267304220311, 18.32090186183774 ], [ -64.86518163981907, 18.320916949270725 ], [ -64.865098826575945, 18.320946285945922 ], [ -64.865020373234245, 18.320981489956125 ], [ -64.86493471014262, 18.321002277085995 ], [ -64.864847704636247, 18.32099020713963 ], [ -64.86476070043949, 18.320992218797358 ], [ -64.86467755322974, 18.321016526328265 ], [ -64.864634805503044, 18.32102054964372 ], [ -64.864543610352712, 18.321029602103465 ], [ -64.864462304543167, 18.321057932949827 ], [ -64.864361052413869, 18.321057094759112 ], [ -64.864269857263537, 18.321056424206517 ], [ -64.864189054368467, 18.321026584616902 ], [ -64.864097860527806, 18.321025914064307 ], [ -64.864006833015594, 18.321025243511713 ], [ -64.863926031430196, 18.320995403922097 ], [ -64.863834836279864, 18.320985010357163 ], [ -64.863743807457979, 18.320984339804625 ], [ -64.863663007182254, 18.320944944840733 ], [ -64.863582373234976, 18.320905549876898 ], [ -64.863542642994844, 18.32082793341624 ], [ -64.863523029332043, 18.320740593943242 ], [ -64.863463013566786, 18.320662809844407 ], [ -64.863413057399896, 18.320594581119792 ], [ -64.863413896900283, 18.320488298536475 ], [ -64.863414735090998, 18.320401126701597 ], [ -64.863415573281713, 18.320314122504897 ], [ -64.863406519512239, 18.320188227568394 ], [ -64.863376847560801, 18.320110609798064 ], [ -64.863367461134374, 18.320023437963187 ], [ -64.863317840243781, 18.319916652465452 ], [ -64.863267716438713, 18.319848591379014 ], [ -64.863187250129556, 18.319789918028619 ], [ -64.863116842109093, 18.319740967690564 ], [ -64.863107454373051, 18.319653795855686 ], [ -64.863168809933768, 18.319586572959906 ], [ -64.863240222473394, 18.319538796088864 ], [ -64.863321360644761, 18.319510466552231 ], [ -64.863402665144633, 18.319481966758076 ], [ -64.863483969644449, 18.319453635911714 ], [ -64.863565274144321, 18.319425305065408 ], [ -64.863656636932774, 18.319406698541059 ], [ -64.863758225648041, 18.319378534023201 ], [ -64.863829639497396, 18.319321035449491 ], [ -64.863901053346751, 18.319253978882216 ], [ -64.863972467196106, 18.319206202011173 ], [ -64.864012365074359, 18.31918541488136 ], [ -64.864054608576964, 18.319176697697856 ], [ -64.864136752577224, 18.319142499516488 ], [ -64.864182853066779, 18.319069074009406 ], [ -64.864255943297564, 18.319021967690958 ], [ -64.864338084678479, 18.318987938457383 ], [ -64.864424753598939, 18.318966814741543 ], [ -64.864524833570897, 18.31895457846673 ], [ -64.864615862392725, 18.31894669947394 ], [ -64.864702362365392, 18.318938651533358 ], [ -64.864784506365595, 18.318908979581863 ], [ -64.864871175286055, 18.318874949038673 ], [ -64.86495331666697, 18.31884527839685 ], [ -64.865039819258925, 18.318819963727435 ], [ -64.86512196063984, 18.318790125447435 ], [ -64.865208463231795, 18.318782246454703 ], [ -64.865280212357447, 18.318736982846133 ], [ -64.865213323428293, 18.318827507443871 ], [ -64.865143753598545, 18.318882660393285 ], [ -64.86509530748458, 18.318953236051868 ], [ -64.86502573634516, 18.319008556639403 ], [ -64.864940577477682, 18.319033199446608 ], [ -64.864855417300532, 18.319057843563428 ], [ -64.864765226669363, 18.31905700406304 ], [ -64.864674869709745, 18.319056333510446 ], [ -64.864584680388305, 18.319055662957851 ], [ -64.864494323428687, 18.319065050693951 ], [ -64.86440899561336, 18.319094722645445 ], [ -64.86432903352835, 18.319134620523698 ], [ -64.864259631336779, 18.319184745638438 ], [ -64.864190061506974, 18.319240064916301 ], [ -64.864109930474172, 18.319284991938844 ], [ -64.864035162552284, 18.319335115743911 ], [ -64.863960397249684, 18.319380210404688 ], [ -64.863885630637469, 18.319425137427231 ], [ -64.863816228445899, 18.319475262541971 ], [ -64.863746658616094, 18.319530581819834 ], [ -64.863677256424523, 18.319580705624901 ], [ -64.863628809000886, 18.319651282593156 ], [ -64.863606848404004, 18.319732250507059 ], [ -64.863616571416344, 18.319818584151221 ], [ -64.863615899554134, 18.319904750157264 ], [ -64.863615061363419, 18.319990916163249 ], [ -64.863614392120496, 18.320077249807412 ], [ -64.863618918350369, 18.320163415813454 ], [ -64.863623444580298, 18.320249749457616 ], [ -64.863622606389526, 18.320335915463602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_855", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 6.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.837781021473177, 18.316916098635659 ], [ -64.837793930919929, 18.316916266273836 ], [ -64.837872553209479, 18.316950798421828 ], [ -64.837951175498972, 18.316989187556771 ], [ -64.838038012057552, 18.317005114490144 ], [ -64.838124848616189, 18.317005783733066 ], [ -64.838211851503218, 18.317002767556119 ], [ -64.838298857009647, 18.316992206353063 ], [ -64.838385693568227, 18.316985333189166 ], [ -64.838472696455312, 18.316974770676381 ], [ -64.838559869599862, 18.316956667066506 ], [ -64.838646706158443, 18.316957337619101 ], [ -64.838725328447993, 18.316995725444428 ], [ -64.838728513572732, 18.317078707635346 ], [ -64.838727841710465, 18.317161688516649 ], [ -64.838711245534228, 18.317244669397894 ], [ -64.838639665356368, 18.317296803551017 ], [ -64.83857596155201, 18.317352963638939 ], [ -64.83851226036694, 18.317408953469339 ], [ -64.83844470219492, 18.317461256570311 ], [ -64.83836926503011, 18.317502161587129 ], [ -64.838297683542635, 18.317550607701037 ], [ -64.838237835415555, 18.317614142557602 ], [ -64.838185867590937, 18.317681700729679 ], [ -64.838106576058465, 18.317714894391827 ], [ -64.838050920194689, 18.317738362422347 ], [ -64.838041197182292, 18.317684550578122 ], [ -64.838033653465857, 18.317634260444549 ], [ -64.838029965426642, 18.317603413716427 ], [ -64.838018229446902, 18.317545244590121 ], [ -64.837998617093717, 18.317489084502199 ], [ -64.837973136095854, 18.317392358602774 ], [ -64.837947487459815, 18.317330332489519 ], [ -64.837929885454685, 18.317251039647374 ], [ -64.837914127469162, 18.317204436243344 ], [ -64.837896693102209, 18.317128997768862 ], [ -64.837868697532144, 18.317086251351839 ], [ -64.837830978949739, 18.317022213580856 ], [ -64.837805161365907, 18.316967897512484 ], [ -64.837781021473177, 18.316916098635659 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_927", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.864067518023717, 18.317644486371364 ], [ -64.864033152204229, 18.317721598607932 ], [ -64.863991913220787, 18.317798713463844 ], [ -64.863943967401951, 18.317869121484307 ], [ -64.863869368427856, 18.317920083480089 ], [ -64.863814718392916, 18.317990657829057 ], [ -64.863773479409474, 18.31806760373712 ], [ -64.863732409373881, 18.318144718593032 ], [ -64.863677759338941, 18.318215126613552 ], [ -64.863596453529397, 18.318246642584597 ], [ -64.863515819582176, 18.318207415258883 ], [ -64.863482796177436, 18.318129629850432 ], [ -64.863456476988858, 18.318045644449967 ], [ -64.863437030964121, 18.317961656430157 ], [ -64.863410710465871, 18.317877669719962 ], [ -64.863384560225086, 18.317793684319497 ], [ -64.863371818416454, 18.317709697609359 ], [ -64.863449771463081, 18.317726124837804 ], [ -64.863516825411011, 18.31778328944489 ], [ -64.863575500071079, 18.317848334354437 ], [ -64.863651272512186, 18.317889404390087 ], [ -64.863735928465246, 18.317865936359567 ], [ -64.863812540406684, 18.317809945219494 ], [ -64.863872387224092, 18.317745738500662 ], [ -64.863923852134292, 18.317673486460592 ], [ -64.863991913220787, 18.317617496630191 ], [ -64.864061483050534, 18.317560667299347 ], [ -64.864067518023717, 18.317644486371364 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_550", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.845401683861269, 18.322015314390171 ], [ -64.845400844360881, 18.322101815672511 ], [ -64.845376873415944, 18.322258724975313 ], [ -64.845319373532561, 18.322350255401886 ], [ -64.845245109834764, 18.322409096390459 ], [ -64.845176378195731, 18.322489730337736 ], [ -64.845102282136054, 18.322537842485019 ], [ -64.845022486379548, 18.322580422573594 ], [ -64.844982253224941, 18.322655859738404 ], [ -64.844913689224086, 18.322709503944509 ], [ -64.844828026132461, 18.322789970253609 ], [ -64.844787625339791, 18.322865407418419 ], [ -64.844775555393426, 18.322951908700702 ], [ -64.844781422728431, 18.323091718912849 ], [ -64.844706656116216, 18.323048635909799 ], [ -64.844621998853484, 18.323010079136679 ], [ -64.844440949658008, 18.322976216231609 ], [ -64.844350257422093, 18.322975378040894 ], [ -64.844259565186178, 18.322974707488299 ], [ -64.84403275077733, 18.322999853209922 ], [ -64.84394759060018, 18.323015275919147 ], [ -64.84383979927361, 18.323025334207784 ], [ -64.843880702980755, 18.322895749922509 ], [ -64.84390400468277, 18.322814780698934 ], [ -64.84392177432602, 18.322733643837239 ], [ -64.84393954396927, 18.322652674613664 ], [ -64.84396854536817, 18.322571705390146 ], [ -64.843957984165115, 18.322485036469686 ], [ -64.843970389387778, 18.322376909866819 ], [ -64.843993858727913, 18.322279679743303 ], [ -64.84402302776499, 18.322198710519729 ], [ -64.844023698317585, 18.322112209237446 ], [ -64.844036606454665, 18.321944403455291 ], [ -64.844094441614345, 18.321814986808135 ], [ -64.844129142710131, 18.321734185222738 ], [ -64.844180775258508, 18.321664280116636 ], [ -64.844232575445005, 18.32159420737247 ], [ -64.844284375631503, 18.32150267694584 ], [ -64.844330308482938, 18.32142723978103 ], [ -64.844382108669436, 18.3213357093544 ], [ -64.844428209159048, 18.321260272189647 ], [ -64.844502808133143, 18.321152648501197 ], [ -64.844548908622698, 18.321077378974508 ], [ -64.844549746813414, 18.320974449154107 ], [ -64.844551087918603, 18.320828436330657 ], [ -64.844580256955624, 18.32074746710714 ], [ -64.844597858960753, 18.320666330245444 ], [ -64.844660890902901, 18.320591228356932 ], [ -64.844712691089399, 18.320515791192122 ], [ -64.844781422728431, 18.320429792824257 ], [ -64.844883514358173, 18.320419734535619 ], [ -64.844945372833308, 18.320479916629324 ], [ -64.844989796941434, 18.320566753187904 ], [ -64.845006560755849, 18.320594078205374 ], [ -64.845045955719684, 18.320637664122785 ], [ -64.845124745647354, 18.32069784621649 ], [ -64.845197835878139, 18.320747131830842 ], [ -64.845265394050159, 18.320801781865782 ], [ -64.845321385190289, 18.320867160741955 ], [ -64.845349045484056, 18.320948632879947 ], [ -64.845387937533417, 18.321035637076648 ], [ -64.845432529279719, 18.321111744794052 ], [ -64.845482819413292, 18.321198748990753 ], [ -64.845527244831089, 18.321296482028743 ], [ -64.845526071364077, 18.32143176601096 ], [ -64.845508300411154, 18.321512902872655 ], [ -64.845456669172506, 18.3215828079787 ], [ -64.845399336927244, 18.32164718102598 ], [ -64.845358433220099, 18.321782297370021 ], [ -64.845368994423154, 18.321868966290481 ], [ -64.845401683861269, 18.322015314390171 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_670", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.847610985651329, 18.324430477130818 ], [ -64.847569580339439, 18.324526701425441 ], [ -64.847562036623003, 18.324610520497458 ], [ -64.847588354501909, 18.324694339569476 ], [ -64.847648370267166, 18.324759383169351 ], [ -64.847708552360814, 18.324824259131049 ], [ -64.847782313144194, 18.324870024344364 ], [ -64.847869986583817, 18.324877065146438 ], [ -64.847957662642841, 18.324871365449553 ], [ -64.848045503720584, 18.324852757615531 ], [ -64.848133178469936, 18.324847056608974 ], [ -64.848207946391824, 18.324796094613191 ], [ -64.848255723262866, 18.324725686592728 ], [ -64.848296962246252, 18.324648741994281 ], [ -64.848364854384897, 18.324591408439346 ], [ -64.848432915471392, 18.324527539616156 ], [ -64.848494272341782, 18.324463500535501 ], [ -64.84856887131582, 18.324412707487568 ], [ -64.848630057928744, 18.324348668406856 ], [ -64.848678002437907, 18.324278260386393 ], [ -64.848678674300174, 18.324194610262225 ], [ -64.848679512490889, 18.324110791190208 ], [ -64.848707171474985, 18.324027307394488 ], [ -64.84875511729382, 18.323956899374025 ], [ -64.848816303906688, 18.323892861602985 ], [ -64.848904313932337, 18.32386788351954 ], [ -64.848992157629425, 18.323842736488245 ], [ -64.849080166345345, 18.3238177584048 ], [ -64.84916784240437, 18.323818430267067 ], [ -64.849248307403798, 18.323857825230903 ], [ -64.849335646876852, 18.323910128331818 ], [ -64.849423321626148, 18.32389788943766 ], [ -64.84951116401362, 18.32387928291331 ], [ -64.84957922640973, 18.323821949358432 ], [ -64.849627001971101, 18.323751375009465 ], [ -64.849668240954543, 18.323674429101345 ], [ -64.849760944848128, 18.323673758548807 ], [ -64.849847781406766, 18.323685325580698 ], [ -64.849934617965346, 18.323707621453877 ], [ -64.849869574365471, 18.323785573190833 ], [ -64.849781731977998, 18.323797809465702 ], [ -64.849700596425976, 18.323829325436748 ], [ -64.849632534029865, 18.323886826629803 ], [ -64.84955793505577, 18.323931249428313 ], [ -64.849490041607453, 18.323988582983247 ], [ -64.849402200529653, 18.32400718950754 ], [ -64.84931419050406, 18.324032336538778 ], [ -64.849226346806915, 18.3240509443728 ], [ -64.849138673367293, 18.324063014319165 ], [ -64.849050829670148, 18.32406871401605 ], [ -64.84897623069611, 18.32411330445268 ], [ -64.848915042773513, 18.324177175895215 ], [ -64.848860392738573, 18.324253954165158 ], [ -64.848799038487527, 18.324317991936198 ], [ -64.848737681617195, 18.32438186206906 ], [ -64.848669789478549, 18.324439194314266 ], [ -64.848595190504454, 18.324483786060625 ], [ -64.848527295746464, 18.324541118305831 ], [ -64.84845923465997, 18.324598618189214 ], [ -64.848386648653332, 18.324658966611423 ], [ -64.848329819322487, 18.324739266592076 ], [ -64.848282042451444, 18.324809674612538 ], [ -64.848220685581055, 18.324873543435729 ], [ -64.848152793442409, 18.324931044628784 ], [ -64.848078194468371, 18.324975467427294 ], [ -64.847996888658827, 18.325006983398339 ], [ -64.847915585468684, 18.325038499369441 ], [ -64.847834448606989, 18.325070016650159 ], [ -64.847746772548021, 18.325069346097564 ], [ -64.847666138600744, 18.325036489021386 ], [ -64.847592379127036, 18.324984353558591 ], [ -64.847552647577231, 18.324906737097933 ], [ -64.847506045482874, 18.324835489577026 ], [ -64.847452736553066, 18.324764243365848 ], [ -64.847406133149036, 18.324692998464286 ], [ -64.847359528435334, 18.324621752253108 ], [ -64.847340082410653, 18.324537765542971 ], [ -64.847313932169868, 18.324453777523161 ], [ -64.847301190361236, 18.324369958451143 ], [ -64.847268165646881, 18.324292343300158 ], [ -64.847207983553176, 18.324227467338403 ], [ -64.847141097243366, 18.324168961626185 ], [ -64.847074209623941, 18.32410391802631 ], [ -64.847020899384461, 18.324032670505403 ], [ -64.846960886238605, 18.323967795853378 ], [ -64.846907577308798, 18.323896382004023 ], [ -64.846854268378991, 18.323825134483172 ], [ -64.846847395215093, 18.323825134483172 ], [ -64.846780507595668, 18.32376663008057 ], [ -64.846713619976185, 18.323707955420502 ], [ -64.846639859192805, 18.32366235915498 ], [ -64.846566098409482, 18.323616593941665 ], [ -64.846492337626103, 18.323564458478927 ], [ -64.846425450006677, 18.323505952766652 ], [ -64.846351689223297, 18.323460187553337 ], [ -64.846277928439918, 18.323414589978142 ], [ -64.846197294492697, 18.323375195014307 ], [ -64.84611666054542, 18.323342337938129 ], [ -64.845988920279694, 18.323296237448517 ], [ -64.846083468192887, 18.323277629614495 ], [ -64.846178182434585, 18.32325918941865 ], [ -64.846258816381862, 18.323292046494885 ], [ -64.846318832147062, 18.323356922456639 ], [ -64.84639946609434, 18.323396149782297 ], [ -64.846480100041617, 18.323435544746189 ], [ -64.84654698635137, 18.323494050458407 ], [ -64.846613875280525, 18.323552556170682 ], [ -64.8467013823917, 18.323579042997437 ], [ -64.846788889502875, 18.323599159574712 ], [ -64.846876730580618, 18.323574181491267 ], [ -64.846957364527896, 18.323613408816925 ], [ -64.847030957673098, 18.32366554427972 ], [ -64.847037832146668, 18.32366554427972 ], [ -64.847104718456478, 18.323724217630115 ], [ -64.847144448696611, 18.32380183409083 ], [ -64.847204632099988, 18.323866710052528 ], [ -64.84724436234012, 18.323944326513185 ], [ -64.847304375485976, 18.32400920247494 ], [ -64.847364557579681, 18.324074078436638 ], [ -64.847417866509488, 18.324145492285993 ], [ -64.847464471223191, 18.324216738497228 ], [ -64.847517780152941, 18.324287983398733 ], [ -64.847584666462751, 18.32434649042068 ], [ -64.847610985651329, 18.324430477130818 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_562", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.843577277940085, 18.317703493688384 ], [ -64.843627234107032, 18.317724951370792 ], [ -64.843670820024442, 18.317768706236052 ], [ -64.843711723731587, 18.317829557572679 ], [ -64.843758159497497, 18.317864092340017 ], [ -64.843831249728282, 18.317860907215277 ], [ -64.843894784584847, 18.3178521887221 ], [ -64.843960834013558, 18.317863252839629 ], [ -64.844028224547458, 18.31787163474678 ], [ -64.844174740285325, 18.317836767322547 ], [ -64.844146074162666, 18.317861576458142 ], [ -64.844075666142203, 18.317913545592489 ], [ -64.843990338326932, 18.317936847294504 ], [ -64.843900316643612, 18.317921758551847 ], [ -64.843824879478802, 18.317964003364125 ], [ -64.84386410680446, 18.318040950581917 ], [ -64.843938873416732, 18.318084536499384 ], [ -64.844003414102133, 18.318142539297185 ], [ -64.843967707177455, 18.31821864570486 ], [ -64.843887240868355, 18.318251502781095 ], [ -64.843806942197375, 18.31828905372538 ], [ -64.843721446743928, 18.31831705060506 ], [ -64.843707197501715, 18.318230884599075 ], [ -64.84370803569243, 18.318144718593032 ], [ -64.843708873883145, 18.318058718915495 ], [ -64.843704682929513, 18.31797272054763 ], [ -64.843684901628535, 18.317887392732359 ], [ -64.843637795310087, 18.31781698471184 ], [ -64.843597059241063, 18.317743726842934 ], [ -64.843577277940085, 18.317703493688384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_607", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 16.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.031686692719973, 18.356350115614873 ], [ -65.031651823986067, 18.356425888055981 ], [ -65.03162282258711, 18.356512556976384 ], [ -65.03159365355009, 18.356593693838079 ], [ -65.03157605154496, 18.356674998337951 ], [ -65.031546882507882, 18.356761667258411 ], [ -65.031563311046, 18.356843139396346 ], [ -65.031585439281002, 18.356924779172516 ], [ -65.031658864788085, 18.356968700366224 ], [ -65.031749892300297, 18.356958642077586 ], [ -65.03180739218368, 18.356893766115832 ], [ -65.031853325035115, 18.356823525733546 ], [ -65.031990788313237, 18.356699808783276 ], [ -65.031978718366815, 18.356786477703679 ], [ -65.03193278551538, 18.356856718086021 ], [ -65.031909148537068, 18.356970544385831 ], [ -65.031919542102003, 18.357073809482529 ], [ -65.03187159759284, 18.357169195586437 ], [ -65.03187176523096, 18.357152599410199 ], [ -65.031854833778425, 18.357092082040197 ], [ -65.031855001416545, 18.357086549981432 ], [ -65.03181527117647, 18.357020332914601 ], [ -65.031809571479528, 18.357014800855836 ], [ -65.03175777129303, 18.357014465579539 ], [ -65.031723070197245, 18.357025194420771 ], [ -65.031642268611847, 18.357057548582532 ], [ -65.031561467026449, 18.357089902744349 ], [ -65.03151519889866, 18.357122592182407 ], [ -65.031502961314175, 18.357122592182407 ], [ -65.031492400111119, 18.357105996006169 ], [ -65.031489047348202, 18.357055369286684 ], [ -65.031485862223462, 18.356969706195116 ], [ -65.031480162526577, 18.356875325920043 ], [ -65.031473959915274, 18.356791339209849 ], [ -65.03147479810599, 18.356738700832636 ], [ -65.031493741216252, 18.356600902278274 ], [ -65.031506816991509, 18.356533176468133 ], [ -65.031566663808917, 18.356441646041503 ], [ -65.03160186781912, 18.356365035409681 ], [ -65.03160672932529, 18.356314911604613 ], [ -65.031599688523272, 18.356203767515126 ], [ -65.031586612748015, 18.356117769147261 ], [ -65.03158409817587, 18.356050546251538 ], [ -65.031602370733538, 18.355956668890883 ], [ -65.031620475653142, 18.355879052430225 ], [ -65.031628857560293, 18.355836975256068 ], [ -65.031633719066519, 18.355783666326317 ], [ -65.03164025695412, 18.355696159215142 ], [ -65.03164830358503, 18.35560177894007 ], [ -65.031660373531395, 18.355519468611362 ], [ -65.031666743780875, 18.355474709226883 ], [ -65.031678646089063, 18.355445372551685 ], [ -65.031689039653997, 18.35543950521668 ], [ -65.031713682461202, 18.35544302561766 ], [ -65.031799010276472, 18.355443528532135 ], [ -65.031836058306283, 18.355443863808375 ], [ -65.03177839078478, 18.355541932122662 ], [ -65.031766320838415, 18.355628601043065 ], [ -65.03175425089205, 18.355715437601702 ], [ -65.031730781551857, 18.355796742101518 ], [ -65.031707479849842, 18.355877878963213 ], [ -65.031678310812822, 18.355959183463085 ], [ -65.0316662408664, 18.356045852383488 ], [ -65.031682669404518, 18.356127492159658 ], [ -65.03168199885198, 18.356214328718238 ], [ -65.031686692719973, 18.356350115614873 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_155", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.953272287579296, 18.333635821584437 ], [ -64.953000377200055, 18.3340317815709 ], [ -64.952718912756268, 18.333851570566139 ], [ -64.952624364843075, 18.333997417061084 ], [ -64.952776747915948, 18.33412951460889 ], [ -64.952660239405873, 18.33430670943676 ], [ -64.952725115367571, 18.334406789408717 ], [ -64.952547586573075, 18.334646344316468 ], [ -64.95219303189856, 18.334423553223132 ], [ -64.951987507534, 18.334741393834463 ], [ -64.951185695600941, 18.334227247646822 ], [ -64.951526837914287, 18.333439014403382 ], [ -64.951542932485779, 18.333432979430199 ], [ -64.951558690471302, 18.333426609180776 ], [ -64.951574279509032, 18.333419568378702 ], [ -64.951589534580137, 18.333412023352537 ], [ -64.951604623322794, 18.333403978031299 ], [ -64.951619375479424, 18.333395428485971 ], [ -64.951633792359814, 18.333386542354674 ], [ -64.951647872654235, 18.333377154618574 ], [ -64.951661618982087, 18.333367265277786 ], [ -64.951675031343257, 18.333357039350972 ], [ -64.951688105808785, 18.333346310509796 ], [ -64.951700847617417, 18.333335246392267 ], [ -64.951713083892287, 18.333323679360319 ], [ -64.951724987510147, 18.333311777052131 ], [ -64.951736385594302, 18.333299370519796 ], [ -64.951747449711775, 18.333286798968629 ], [ -64.951758010914887, 18.333273889521877 ], [ -64.951768070513197, 18.333260478470379 ], [ -64.951777624577687, 18.333246901090376 ], [ -64.95178684467561, 18.333232987124404 ], [ -64.951795395530667, 18.333218736572519 ], [ -64.951803608490025, 18.333204153363681 ], [ -64.951811153516189, 18.333189567535442 ], [ -64.951818193008535, 18.333174481412186 ], [ -64.951824898534312, 18.333159393979201 ], [ -64.951830933507495, 18.333143971269976 ], [ -64.951836297928082, 18.333128379612901 ], [ -64.951841328382102, 18.333112622937051 ], [ -64.951845685664182, 18.333096697313351 ], [ -64.951849542651132, 18.333080604051531 ], [ -64.9518527264662, 18.333064509480039 ], [ -64.951855408676522, 18.333048248580042 ], [ -64.95185758797237, 18.333031988989774 ], [ -64.95185909671568, 18.333015560451656 ], [ -64.951860102544572, 18.332999131913539 ], [ -64.951860437820869, 18.332982703375421 ], [ -64.951860271492365, 18.332966273527632 ], [ -64.951859599630097, 18.332949846299186 ], [ -64.951858258524965, 18.332933585399246 ], [ -64.951856246867237, 18.332917155551456 ], [ -64.951853899933212, 18.332900895961188 ], [ -64.951850714808472, 18.332884801389639 ], [ -64.951847194407492, 18.332868709437491 ], [ -64.951842500539442, 18.332852280899431 ], [ -64.952944386059926, 18.332866865417941 ], [ -64.953447971044511, 18.333233153452909 ], [ -64.953526760972181, 18.333269029325379 ], [ -64.953688699419331, 18.333382185072594 ], [ -64.953611753511211, 18.333392746275649 ], [ -64.953166003686306, 18.333239022097587 ], [ -64.95302720061278, 18.333442199528122 ], [ -64.953272287579296, 18.333635821584437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_548", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.837626125137774, 18.325036990626131 ], [ -64.837545323552376, 18.325090133227434 ], [ -64.837383720381524, 18.325180993101469 ], [ -64.837230331479759, 18.325237150570047 ], [ -64.837065375546103, 18.325255089161146 ], [ -64.836981890440711, 18.325228433386599 ], [ -64.836921374380381, 18.325185016416924 ], [ -64.836863539220701, 18.325126509395034 ], [ -64.836769829498223, 18.325018216463661 ], [ -64.836667402592241, 18.324897014085536 ], [ -64.836564974376586, 18.324792909488451 ], [ -64.836502614296705, 18.324715125389616 ], [ -64.836443438031836, 18.324681599070516 ], [ -64.836343693336175, 18.324603982609858 ], [ -64.836307986411498, 18.324585373466164 ], [ -64.83630278962903, 18.324579004526413 ], [ -64.836447126070993, 18.324553188252196 ], [ -64.836531280419308, 18.324563580507458 ], [ -64.836703780069456, 18.324580010355248 ], [ -64.836862701029986, 18.324675564097333 ], [ -64.837087839057403, 18.324809674612538 ], [ -64.837239047353592, 18.324879578408911 ], [ -64.837363771442426, 18.324929031661384 ], [ -64.837626125137774, 18.325036990626131 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_555", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.945110321624213, 18.322401049759549 ], [ -64.945110489262333, 18.322387135793576 ], [ -64.945114680215966, 18.322317565963829 ], [ -64.945100766249993, 18.322233914529988 ], [ -64.945024658532645, 18.322191502079534 ], [ -64.945096910572715, 18.322176414646606 ], [ -64.945184250045713, 18.322180605600181 ], [ -64.945267901479554, 18.322205583683626 ], [ -64.945340321157801, 18.322251348896941 ], [ -64.945387092199951, 18.322321421641163 ], [ -64.945444927359631, 18.322384453583311 ], [ -64.945518185228593, 18.322339861837008 ], [ -64.945540648739836, 18.322259898442269 ], [ -64.945581384808861, 18.322183790724921 ], [ -64.945647434237571, 18.322128470137386 ], [ -64.945734941348746, 18.322129308328101 ], [ -64.945822280821801, 18.322126458479659 ], [ -64.945866704929927, 18.322053703525171 ], [ -64.945910961399932, 18.321980948570683 ], [ -64.945919008030842, 18.321897464774963 ], [ -64.945941639180319, 18.321817669018401 ], [ -64.946004000569872, 18.321758995668006 ], [ -64.946089831299616, 18.321745249340211 ], [ -64.946080443563517, 18.321766539384498 ], [ -64.946073402761499, 18.321820518866843 ], [ -64.946058650604812, 18.321848179160611 ], [ -64.946017914535844, 18.321924454516136 ], [ -64.945988074946172, 18.322004250272698 ], [ -64.945961923395714, 18.322084046029261 ], [ -64.945950188725647, 18.322167362186804 ], [ -64.945913140695836, 18.322243637542329 ], [ -64.945850779306284, 18.322302310892724 ], [ -64.945763272195109, 18.322308681142204 ], [ -64.945675932722054, 18.322287055821619 ], [ -64.945606362892306, 18.322338688369996 ], [ -64.945587419782044, 18.322422172165659 ], [ -64.945553892153214, 18.322498447521184 ], [ -64.945509635683209, 18.322571202475729 ], [ -64.945465211575083, 18.322643789792039 ], [ -64.945384912904103, 18.322674467572426 ], [ -64.945297573431048, 18.322666923855934 ], [ -64.945217610036366, 18.322628031806516 ], [ -64.945163630554021, 18.322561479463332 ], [ -64.94513144403038, 18.322484701193389 ], [ -64.945110321624213, 18.322401049759549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_228", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 16.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.016387032489035, 18.345644745048673 ], [ -65.016386361936441, 18.345732419798026 ], [ -65.016413184039493, 18.34580584661478 ], [ -65.016416369164233, 18.345814394850436 ], [ -65.016421733584821, 18.345902069599731 ], [ -65.01644553820131, 18.345984044652141 ], [ -65.016512425820736, 18.346043053278834 ], [ -65.016569421480028, 18.346061828750976 ], [ -65.0165853484134, 18.346096194570464 ], [ -65.016564896559828, 18.346125029640916 ], [ -65.01649063286203, 18.346151850434296 ], [ -65.016370267364948, 18.346154197368321 ], [ -65.016272703274808, 18.346158220683776 ], [ -65.016308745475783, 18.346216894034171 ], [ -65.01632349763247, 18.346275232108269 ], [ -65.016309751304675, 18.346312447776256 ], [ -65.01628980236552, 18.346321835512299 ], [ -65.01626046438065, 18.346321667874179 ], [ -65.0162063185698, 18.346305240645734 ], [ -65.016106909150437, 18.346244555637611 ], [ -65.016033818919652, 18.346197280371314 ], [ -65.01600716445472, 18.346149335862151 ], [ -65.015998447271272, 18.346133410238451 ], [ -65.016001297119715, 18.346088315577731 ], [ -65.01592183663945, 18.346056967244806 ], [ -65.015851596257107, 18.346020589767534 ], [ -65.015784708637625, 18.345961748779018 ], [ -65.015764759698527, 18.345948840641938 ], [ -65.01585763123029, 18.345942135116161 ], [ -65.01594765291361, 18.345957054910969 ], [ -65.01603767459693, 18.345964933903758 ], [ -65.016127863918427, 18.345965604456296 ], [ -65.016210677161553, 18.345937441248111 ], [ -65.016271194531555, 18.345873403477128 ], [ -65.016271865084093, 18.345787405109263 ], [ -65.01628007935318, 18.345701406741398 ], [ -65.016273373827403, 18.345615240735356 ], [ -65.01628158809649, 18.34552924236749 ], [ -65.016274714932536, 18.345443076361448 ], [ -65.016306901456232, 18.345363951157481 ], [ -65.016321653612863, 18.345404519588328 ], [ -65.01633322064481, 18.345486494640738 ], [ -65.016375465457088, 18.345562769996263 ], [ -65.016387032489035, 18.345644745048673 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_494", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.992021335102095, 18.36556535071901 ], [ -64.991979928480532, 18.365594016841612 ], [ -64.991894265388964, 18.365613798142647 ], [ -64.99180323656708, 18.365618156734399 ], [ -64.991717407147007, 18.36563290889103 ], [ -64.991465110430624, 18.36572293057435 ], [ -64.991395206634252, 18.365773557293892 ], [ -64.991330329362825, 18.365834409940135 ], [ -64.991211475228397, 18.365971537941903 ], [ -64.991152131325464, 18.366032390588202 ], [ -64.991044675275134, 18.36608268203139 ], [ -64.990974602530969, 18.366133308750875 ], [ -64.990914923351681, 18.366229868321852 ], [ -64.990908888378499, 18.366316704880433 ], [ -64.990919114305314, 18.366497251161491 ], [ -64.990854573619856, 18.366434722133818 ], [ -64.990800091223036, 18.366367331599918 ], [ -64.990765725403548, 18.366290553329975 ], [ -64.990760863897378, 18.366261887207315 ], [ -64.990791374039588, 18.3662095841064 ], [ -64.990841999449401, 18.366138170257045 ], [ -64.990887598334211, 18.366066756407747 ], [ -64.990948283342334, 18.366005065570732 ], [ -64.991028582013314, 18.365972208494497 ], [ -64.991094296165784, 18.36591537916371 ], [ -64.991139892431249, 18.365843965314355 ], [ -64.991160680870792, 18.36575813458461 ], [ -64.991216169096447, 18.365691582241425 ], [ -64.991276854104569, 18.365629891404467 ], [ -64.991352291269379, 18.365587478954012 ], [ -64.991427728434189, 18.365544898865437 ], [ -64.99151305624946, 18.365516903295372 ], [ -64.991537362470694, 18.365498966014002 ], [ -64.9915677062844, 18.36545135678108 ], [ -64.99163828194304, 18.365394527450292 ], [ -64.991663426354989, 18.365385139714192 ], [ -64.991728471264537, 18.365380781122497 ], [ -64.99174858653214, 18.365380948760617 ], [ -64.991813462493838, 18.365400562423474 ], [ -64.991893259560072, 18.365434592966722 ], [ -64.991935335424557, 18.365455212458414 ], [ -64.991973055316635, 18.365473485016082 ], [ -64.991989651492872, 18.365475329035689 ], [ -64.992010103346445, 18.365460409240882 ], [ -64.992038600521255, 18.365416655685294 ], [ -64.992069447249435, 18.365335518823599 ], [ -64.992086211063793, 18.365247005883532 ], [ -64.992095766438013, 18.365163689725989 ], [ -64.99211638462009, 18.365129994459039 ], [ -64.992161480590482, 18.365106860395201 ], [ -64.992246808405753, 18.365078697186959 ], [ -64.992331968582903, 18.365060256991171 ], [ -64.99242718704869, 18.365051372169489 ], [ -64.992496924516615, 18.365104513461176 ], [ -64.992581749417468, 18.365133850136374 ], [ -64.992502790542005, 18.365153296161054 ], [ -64.992416961121933, 18.365173077462032 ], [ -64.99225669905627, 18.365141226214689 ], [ -64.99216969354984, 18.365309199634964 ], [ -64.992082355386515, 18.365523105906732 ], [ -64.992021335102095, 18.36556535071901 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_272", "STUDY_TYP": "NP", "FLD_ZONE": "AE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.946302731742492, 18.335977892784626 ], [ -64.946274736172427, 18.335895248489294 ], [ -64.946217739203462, 18.335830706494164 ], [ -64.946131740835597, 18.335793324497729 ], [ -64.946036019455391, 18.335765159979871 ], [ -64.945950021087526, 18.335727776673764 ], [ -64.945873745732001, 18.335681508546031 ], [ -64.945807025750696, 18.335626021630048 ], [ -64.945720859744654, 18.335616129669859 ], [ -64.945634693738668, 18.335606406657519 ], [ -64.945562441698598, 18.335555947576154 ], [ -64.945489183829636, 18.335504147389656 ], [ -64.945422799124628, 18.335446144591856 ], [ -64.945363119945341, 18.335381771544576 ], [ -64.945296567602213, 18.335323768746719 ], [ -64.945230182897149, 18.335259229370934 ], [ -64.94515876904785, 18.335190496422229 ], [ -64.945072435403688, 18.335180773409888 ], [ -64.945005883060503, 18.335125286493906 ], [ -64.944939163079198, 18.33506979826825 ], [ -64.944882166110233, 18.335005257582793 ], [ -64.944921225797771, 18.33492311358259 ], [ -64.944922063988486, 18.334831584465633 ], [ -64.944903623792641, 18.334748937550955 ], [ -64.944865905210236, 18.334666293255623 ], [ -64.944799185228931, 18.334610803720295 ], [ -64.944713186861065, 18.334573420414188 ], [ -64.9446271884932, 18.334545258515675 ], [ -64.94460791010664, 18.334461942358075 ], [ -64.944568515142805, 18.334378626200532 ], [ -64.944515541489295, 18.3343078815941 ], [ -64.944507662496505, 18.3342760303467 ], [ -64.944533646408843, 18.334260776585268 ], [ -64.944563150722217, 18.33417846625656 ], [ -64.94457739996443, 18.334138568378307 ], [ -64.944578070517025, 18.334136724358757 ], [ -64.944656860444695, 18.334177125151427 ], [ -64.94471553379509, 18.334240492369872 ], [ -64.944780745033086, 18.334297489338837 ], [ -64.944839586021658, 18.334360856557282 ], [ -64.944891553846276, 18.33443042638703 ], [ -64.944950227196671, 18.334493624657625 ], [ -64.945002362659466, 18.334563194487373 ], [ -64.945067573897518, 18.334620360404188 ], [ -64.945113003834535, 18.334696131535566 ], [ -64.945151895883953, 18.334771737648225 ], [ -64.945210569234348, 18.334835103556941 ], [ -64.945157427942661, 18.334903836505703 ], [ -64.945235882594091, 18.334948428252005 ], [ -64.945321378047538, 18.334967874276686 ], [ -64.945373345872156, 18.335037442796761 ], [ -64.945425481334951, 18.335107012626509 ], [ -64.945477449159569, 18.335176582456313 ], [ -64.945529584622363, 18.335246153595733 ], [ -64.945601501386136, 18.335296946643666 ], [ -64.945660174736531, 18.335360313862111 ], [ -64.945725553612704, 18.335417310831076 ], [ -64.945804175902254, 18.335455699966076 ], [ -64.945882798191747, 18.335493921462898 ], [ -64.945961420481296, 18.335532310597841 ], [ -64.946040042770846, 18.335570533404336 ], [ -64.946118665060396, 18.335615123841023 ], [ -64.946203992875667, 18.335640941424856 ], [ -64.946282615165217, 18.335685531861486 ], [ -64.946367942980487, 18.335717718385126 ], [ -64.946453270795814, 18.335743534659287 ], [ -64.946538598611085, 18.335769350933504 ], [ -64.946623926426412, 18.335794999569487 ], [ -64.94672249765506, 18.335808410621041 ], [ -64.946807993108507, 18.335821655344091 ], [ -64.946893320923778, 18.335834897447796 ], [ -64.946978816377225, 18.335854343472477 ], [ -64.947070849718273, 18.335855181663192 ], [ -64.94722222696231, 18.335856356439876 ], [ -64.947314427941535, 18.335857025682799 ], [ -64.947400091033103, 18.335845123374554 ], [ -64.947492292012328, 18.335839592625462 ], [ -64.947584492991496, 18.335833891618904 ], [ -64.947676526332543, 18.335828359560139 ], [ -64.947768727311768, 18.335829031422406 ], [ -64.947854390403336, 18.335817127804489 ], [ -64.947946591382561, 18.335811595745781 ], [ -64.948032254474128, 18.335799693437536 ], [ -64.948124455453353, 18.335794161378772 ], [ -64.948210118544921, 18.335775888821104 ], [ -64.948282538223111, 18.335770190433891 ], [ -64.948310366155056, 18.335757783901556 ], [ -64.948395861608446, 18.335745881593311 ], [ -64.948481523390399, 18.335733980594739 ], [ -64.948573724369567, 18.335728448536031 ], [ -64.948659556408984, 18.335710343616483 ], [ -64.948745219500552, 18.335692069749086 ], [ -64.948830882592176, 18.335673964829539 ], [ -64.948916713321864, 18.335649489660511 ], [ -64.949002376413489, 18.335631218412516 ], [ -64.949088207143177, 18.335600540632129 ], [ -64.949173870234802, 18.335588638323941 ], [ -64.949259533326369, 18.335564161845241 ], [ -64.949345364056057, 18.335539686676213 ], [ -64.94943119347613, 18.335508842567378 ], [ -64.949516856567698, 18.335484367398351 ], [ -64.949602688607115, 18.335453689618021 ], [ -64.94968851933686, 18.335435415750624 ], [ -64.94978994041395, 18.335432064297436 ], [ -64.94975758625219, 18.335475648905174 ], [ -64.949699583454333, 18.335509679448421 ], [ -64.949632025282312, 18.335563995516736 ], [ -64.949631187091597, 18.335655693581543 ], [ -64.949659350299783, 18.335738337876819 ], [ -64.949716347268748, 18.335802878562276 ], [ -64.949583410220555, 18.335842608802409 ], [ -64.949536471540227, 18.335867923471824 ], [ -64.949449298395677, 18.335886362357996 ], [ -64.949368664448457, 18.335917710690921 ], [ -64.949281492613522, 18.335936150886766 ], [ -64.949194488416822, 18.335948388471252 ], [ -64.949100612365839, 18.335966828667097 ], [ -64.949013440530962, 18.335978898613462 ], [ -64.948852675550881, 18.335990465645409 ], [ -64.948765671354124, 18.335989796402487 ], [ -64.948678667157424, 18.335995494789756 ], [ -64.948591662960666, 18.336001194486641 ], [ -64.948504491125789, 18.336019634682486 ], [ -64.948417319290911, 18.336044612765932 ], [ -64.948330147456034, 18.336050312462817 ], [ -64.948243310897453, 18.336043271660799 ], [ -64.948156474338816, 18.336023322721644 ], [ -64.948069470142116, 18.336022653478722 ], [ -64.947982465945358, 18.336021981616511 ], [ -64.947895460438929, 18.336021312373589 ], [ -64.947808457551901, 18.336014271571514 ], [ -64.947721453355143, 18.336013599709304 ], [ -64.947634449158443, 18.336012930466381 ], [ -64.947547444961685, 18.336012258604114 ], [ -64.947460440764928, 18.336011588051576 ], [ -64.947360025516673, 18.336017287748462 ], [ -64.947273021319972, 18.336029357694827 ], [ -64.947186017123215, 18.336028688451904 ], [ -64.947098845288338, 18.336034386839117 ], [ -64.947012008729757, 18.336027346037099 ], [ -64.946925004533, 18.336020306544697 ], [ -64.94683816797442, 18.336013096794829 ], [ -64.946751163777662, 18.336006055992812 ], [ -64.946664159580962, 18.335999016500409 ], [ -64.946650748529407, 18.335999016500409 ], [ -64.946577323022382, 18.335985605448911 ], [ -64.946503394600882, 18.336029692971124 ], [ -64.946469196419457, 18.336106135964769 ], [ -64.946388562472237, 18.336143854547174 ], [ -64.946301558275479, 18.336143183994579 ], [ -64.946214721716899, 18.336129772943082 ], [ -64.946158060024231, 18.336077469842166 ], [ -64.946244728944635, 18.336041427641192 ], [ -64.946302731742492, 18.335977892784626 ] ] ] ] } } +] +} diff --git a/data/AO.geojson b/data/AO.geojson new file mode 100644 index 0000000..7dd2620 --- /dev/null +++ b/data/AO.geojson @@ -0,0 +1,9 @@ +{ +"type": "FeatureCollection", +"name": "AO", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4269" } }, +"features": [ +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_521", "STUDY_TYP": "NP", "FLD_ZONE": "AO", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": 3.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.022201392565876, 18.344241781421545 ], [ -65.022189322619511, 18.344266088952452 ], [ -65.022140372281456, 18.344337670439927 ], [ -65.022107347567101, 18.344414616348047 ], [ -65.022090583752686, 18.344496759038577 ], [ -65.022062923458918, 18.34457873540066 ], [ -65.022040795223916, 18.34466071045307 ], [ -65.022007938147681, 18.344742851833985 ], [ -65.021974913433326, 18.3448196314136 ], [ -65.021952785198323, 18.344901772794515 ], [ -65.021941385804496, 18.344983915485045 ], [ -65.021886903407733, 18.345050301499725 ], [ -65.021821859807858, 18.345106292639855 ], [ -65.021746255004928, 18.345152056543498 ], [ -65.02167048256382, 18.345192624974345 ], [ -65.021600242181478, 18.345243420641623 ], [ -65.021529666522838, 18.34529941047208 ], [ -65.021464622922963, 18.345355570559946 ], [ -65.021378456916977, 18.345380548643448 ], [ -65.021286926490347, 18.345385073563648 ], [ -65.021200928122482, 18.345358754375013 ], [ -65.021131359602407, 18.345306786550395 ], [ -65.021072684942283, 18.34524476043714 ], [ -65.021014011591888, 18.345182566685708 ], [ -65.020955339551165, 18.345120540572395 ], [ -65.02090739373233, 18.345048120894205 ], [ -65.020875710123107, 18.344970839709845 ], [ -65.020860287413882, 18.344888529381137 ], [ -65.020823239384015, 18.3448110805586 ], [ -65.020852408421092, 18.344794988606452 ], [ -65.020917788606937, 18.344739163794827 ], [ -65.020983166173437, 18.344683172654698 ], [ -65.021045696510782, 18.344624500613975 ], [ -65.021116941412345, 18.344574375499235 ], [ -65.021188187623522, 18.34452693390449 ], [ -65.0212622836832, 18.34448234346786 ], [ -65.021330680045935, 18.344429368504677 ], [ -65.021407793592175, 18.344381926909932 ], [ -65.021484739500238, 18.344337502801807 ], [ -65.02155313586303, 18.34428436151012 ], [ -65.02162723192265, 18.344237087553552 ], [ -65.021704345468891, 18.344198195504134 ], [ -65.021784308863573, 18.344164835513482 ], [ -65.021869971955198, 18.344151424461927 ], [ -65.021955467408588, 18.344171877625172 ], [ -65.022034760250733, 18.344209091983487 ], [ -65.022075999234175, 18.344234740619527 ], [ -65.022114220730998, 18.344243457802975 ], [ -65.022146742530936, 18.344243625441152 ], [ -65.022201392565876, 18.344241781421545 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_970", "STUDY_TYP": "NP", "FLD_ZONE": "AO", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": -9999.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": 2.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.973405457106537, 18.339136027779432 ], [ -64.973433787952843, 18.339218170469962 ], [ -64.973513582399733, 18.339458060654067 ], [ -64.973552977363568, 18.339627207541355 ], [ -64.973623889608177, 18.339835581754357 ], [ -64.973696979838962, 18.33991085128099 ], [ -64.973777446148063, 18.340089888818795 ], [ -64.973799405435273, 18.340299101222513 ], [ -64.973821870256245, 18.340444275855191 ], [ -64.973744589071828, 18.340550726076629 ], [ -64.973640318146295, 18.340629013089881 ], [ -64.973503859387392, 18.340615602038383 ], [ -64.973357008373227, 18.340516863171558 ], [ -64.97322172439101, 18.340403707424343 ], [ -64.973151652956517, 18.340344698797651 ], [ -64.973033468065012, 18.340146382873343 ], [ -64.972975465267155, 18.340058372847693 ], [ -64.972854598165327, 18.339911689471705 ], [ -64.972661311385309, 18.339694765713375 ], [ -64.972515298561859, 18.339460407588092 ], [ -64.972386049552881, 18.339314394764642 ], [ -64.972291334001511, 18.339272485228662 ], [ -64.972042391357661, 18.339261588749309 ], [ -64.971820941369458, 18.339322609033673 ], [ -64.971724214160361, 18.339373571029455 ], [ -64.971621787254378, 18.339364183293412 ], [ -64.971501590705088, 18.339309030344054 ], [ -64.97133227617968, 18.339325626520292 ], [ -64.9710208045081, 18.339471471705565 ], [ -64.970599026937805, 18.339617316890838 ], [ -64.970558626145134, 18.33968101938558 ], [ -64.97053565971936, 18.339894087466575 ], [ -64.970529792384355, 18.340039765013728 ], [ -64.970547059113187, 18.340214946874198 ], [ -64.970563990565722, 18.340432708823244 ], [ -64.970529624746177, 18.340755915164891 ], [ -64.970486877019482, 18.340875105885289 ], [ -64.97044396165461, 18.341021453984979 ], [ -64.970433735727852, 18.341144500382711 ], [ -64.970412445683564, 18.341220440461939 ], [ -64.970346396254797, 18.341278275621619 ], [ -64.97028973456213, 18.341289338429419 ], [ -64.970216141416927, 18.341302080238052 ], [ -64.970189486952052, 18.341321190986491 ], [ -64.970144057014977, 18.341410542117217 ], [ -64.970120252398544, 18.341501737267549 ], [ -64.970045988700747, 18.341562086999375 ], [ -64.969993854547624, 18.341586562168402 ], [ -64.969950268630214, 18.341605505278665 ], [ -64.969941048532291, 18.341635343558664 ], [ -64.969934676973139, 18.34167658254205 ], [ -64.969921099593137, 18.341703573592952 ], [ -64.969885223720667, 18.341720671373935 ], [ -64.969812971680597, 18.341742968556787 ], [ -64.969685231414871, 18.341726706347117 ], [ -64.969621528920129, 18.341688149573997 ], [ -64.969574422601681, 18.341596117542622 ], [ -64.969454896605043, 18.341541801474307 ], [ -64.969343249601138, 18.341491342392942 ], [ -64.969064971591763, 18.341309623954544 ], [ -64.968890795560128, 18.341109799286869 ], [ -64.968629278745823, 18.340832861073011 ], [ -64.968439178400217, 18.340602358625006 ], [ -64.96817548359968, 18.340479312227274 ], [ -64.967917153219787, 18.340389625820251 ], [ -64.967685980219187, 18.340245959930826 ], [ -64.967557066486449, 18.34016767291763 ], [ -64.967428151444039, 18.340094415048668 ], [ -64.967374005633246, 18.340082177464183 ], [ -64.967301249369029, 18.340088380075485 ], [ -64.967248443353697, 18.340125595743473 ], [ -64.967178873523949, 18.340195668487638 ], [ -64.967055996074066, 18.340357270348818 ], [ -64.967011235379914, 18.340529602360846 ], [ -64.967010063222574, 18.340666396395989 ], [ -64.967030850352444, 18.340772176064888 ], [ -64.967097570333749, 18.340863035938924 ], [ -64.967112991733359, 18.340955907470686 ], [ -64.967076949532384, 18.341064034073554 ], [ -64.967073764407644, 18.341136118475504 ], [ -64.967086169630306, 18.341265198536689 ], [ -64.967125901180111, 18.341350526352016 ], [ -64.967149704486872, 18.341412721413064 ], [ -64.967261351490777, 18.341627633513724 ], [ -64.967384399198124, 18.341762582219644 ], [ -64.967477604696512, 18.341910271424467 ], [ -64.967541642467552, 18.342008842653172 ], [ -64.967670222233664, 18.342141275477218 ], [ -64.967782707428285, 18.34225040921865 ], [ -64.967838866206534, 18.342312770608203 ], [ -64.96790877131258, 18.342344286579305 ], [ -64.968110438690132, 18.342448891471463 ], [ -64.968252932422217, 18.342527347432565 ], [ -64.968360219524698, 18.342610663590108 ], [ -64.968432303926591, 18.342714431601223 ], [ -64.968504555966661, 18.343104356614504 ], [ -64.968503382499648, 18.343243665221848 ], [ -64.968608323977833, 18.343298650533086 ], [ -64.968590555644255, 18.343476345656086 ], [ -64.968605138853093, 18.343667285502079 ], [ -64.968632128594265, 18.344002729428212 ], [ -64.968553338666595, 18.344191826564327 ], [ -64.968444207544508, 18.344185456314847 ], [ -64.96839341187723, 18.344197189675242 ], [ -64.968383019621967, 18.344223676501997 ], [ -64.968367429274565, 18.344276985431804 ], [ -64.968328535915475, 18.344371199378429 ], [ -64.968194760676568, 18.344465244377204 ], [ -64.968191575551828, 18.34464411296716 ], [ -64.968205155551175, 18.344847794621785 ], [ -64.96820079564975, 18.345073266615827 ], [ -64.96817229847494, 18.345302764544613 ], [ -64.968087807540712, 18.345532930406648 ], [ -64.968031482434014, 18.345580874915811 ], [ -64.967888822373425, 18.345635692588928 ], [ -64.96773694221497, 18.345583557126133 ], [ -64.967723194577502, 18.345528068900478 ], [ -64.967753538391264, 18.345423797974888 ], [ -64.967753872357832, 18.345377697485333 ], [ -64.967724535682635, 18.345338470159618 ], [ -64.967537117547351, 18.34519178678363 ], [ -64.967499734241244, 18.34482063593282 ], [ -64.967411890544099, 18.34468417848359 ], [ -64.967240230394282, 18.344571358012672 ], [ -64.966993802322634, 18.344514863958125 ], [ -64.966715355365466, 18.344506649689095 ], [ -64.966498096330838, 18.344684513759887 ], [ -64.966260719409263, 18.34483052658328 ], [ -64.965978081498463, 18.344942342535035 ], [ -64.965607099595445, 18.344973355591662 ], [ -64.965449687378225, 18.344974527749002 ], [ -64.965288922398145, 18.345077626517195 ], [ -64.965199235991122, 18.345149709609473 ], [ -64.965140730278847, 18.345250124857728 ], [ -64.964954651939024, 18.34541038692339 ], [ -64.964734375417777, 18.345514491520476 ], [ -64.964554834965554, 18.345745830849523 ], [ -64.964492976490419, 18.345854460366866 ], [ -64.964353501554626, 18.345834008513293 ], [ -64.964332379148459, 18.345789584405111 ], [ -64.964284937553714, 18.345540138846843 ], [ -64.964233975557931, 18.345452631735668 ], [ -64.964043706264533, 18.34523537270104 ], [ -64.963940776444076, 18.345101263495508 ], [ -64.963811695073218, 18.344755927609185 ], [ -64.96347071908832, 18.344549732692087 ], [ -64.962982556813017, 18.344642939500147 ], [ -64.962732775978452, 18.344752574846325 ], [ -64.962610735409612, 18.34478073805451 ], [ -64.962454329021227, 18.344745032439505 ], [ -64.962390458888365, 18.344708653652617 ], [ -64.962248637018547, 18.344708653652617 ], [ -64.962117879266259, 18.344685351950602 ], [ -64.962075802092102, 18.344663057387095 ], [ -64.962032383812812, 18.344620475988847 ], [ -64.962011261406644, 18.344563981934357 ], [ -64.962004555880924, 18.344509165570912 ], [ -64.962008076281904, 18.344437919359734 ], [ -64.962015619998397, 18.344378741785192 ], [ -64.962043280292164, 18.344344712551674 ], [ -64.962083345808594, 18.344312189442064 ], [ -64.962155933124905, 18.344285033372387 ], [ -64.962285685048414, 18.344246307651474 ], [ -64.96249892076753, 18.344195680931989 ], [ -64.96252926327162, 18.34417673782167 ], [ -64.962758256976315, 18.344112532412566 ], [ -64.962884991413205, 18.344095768598152 ], [ -64.96303217770361, 18.344029551531264 ], [ -64.96307710472621, 18.343983283403531 ], [ -64.96311079999316, 18.343920420409177 ], [ -64.963135778076605, 18.343838108770797 ], [ -64.963134101695175, 18.343702321874161 ], [ -64.963131251846733, 18.343527810566286 ], [ -64.963135778076605, 18.343341230621661 ], [ -64.963176011231155, 18.343174095392101 ], [ -64.96324423995577, 18.342925989629293 ], [ -64.963248095633105, 18.342628265595238 ], [ -64.96325396296811, 18.34244285649828 ], [ -64.963259327388755, 18.34236607953801 ], [ -64.963247089804213, 18.342239680377418 ], [ -64.963230661266095, 18.342135240504035 ], [ -64.9632234528259, 18.341977325372397 ], [ -64.96322982307538, 18.341901720569467 ], [ -64.963258992112458, 18.341838857575112 ], [ -64.963272235525835, 18.341814213458292 ], [ -64.96326670346707, 18.341775825633022 ], [ -64.963225967398103, 18.34175235629283 ], [ -64.963183890223945, 18.341713296605292 ], [ -64.963095880198352, 18.341591926589047 ], [ -64.962998817712958, 18.3414950304321 ], [ -64.96297752766867, 18.341472903506769 ], [ -64.962936791599702, 18.341350360023512 ], [ -64.962912651706972, 18.341308953401949 ], [ -64.96286990398022, 18.341274419944284 ], [ -64.962823971128785, 18.341263020550514 ], [ -64.962809051333977, 18.341248436031947 ], [ -64.962788431842228, 18.341214739455381 ], [ -64.96275758642372, 18.341122538476156 ], [ -64.962667900016697, 18.341014748459258 ], [ -64.962462878566612, 18.340772846617426 ], [ -64.962389117783232, 18.340654326449624 ], [ -64.962277303141207, 18.340540835426168 ], [ -64.962119890923987, 18.340338831462645 ], [ -64.961911013796566, 18.340169014022763 ], [ -64.961724098575644, 18.340096929620813 ], [ -64.961480686680886, 18.339964830763336 ], [ -64.961401896753216, 18.339877491290338 ], [ -64.961221016505533, 18.339767520667863 ], [ -64.96094994562668, 18.339564510875505 ], [ -64.96067853947153, 18.33938882610056 ], [ -64.960486761434822, 18.339224540719442 ], [ -64.960396067889235, 18.339185816308202 ], [ -64.96029414389767, 18.339141559838197 ], [ -64.960254916571955, 18.339087077441377 ], [ -64.96021569055597, 18.339010802085852 ], [ -64.960131534897982, 18.338890773174739 ], [ -64.960029947492387, 18.338808462846032 ], [ -64.959843364928474, 18.338693127802969 ], [ -64.959696178638012, 18.338591706725879 ], [ -64.959518817481694, 18.338456422743661 ], [ -64.959277753830577, 18.338332873431511 ], [ -64.958998468682694, 18.338196918896756 ], [ -64.958694039122861, 18.338024083970254 ], [ -64.958350882532443, 18.337899696467446 ], [ -64.957928100442928, 18.337758545150166 ], [ -64.957542700349848, 18.337450593879623 ], [ -64.957421999576525, 18.337422933585913 ], [ -64.957060908324024, 18.337375491991168 ], [ -64.956780617347249, 18.33736224857779 ], [ -64.956544079926061, 18.337341796724218 ], [ -64.956525638420544, 18.33733995270461 ], [ -64.956135042854726, 18.337296031510903 ], [ -64.955828600327493, 18.337284967393373 ], [ -64.955655262486573, 18.337280944077918 ], [ -64.955494162230195, 18.337271723979995 ], [ -64.955056626674377, 18.3372420520285 ], [ -64.954646583774149, 18.337218751636158 ], [ -64.954186919983272, 18.33722478660934 ], [ -64.953914843275584, 18.33721791213577 ], [ -64.953601192308156, 18.337163932653425 ], [ -64.953375886642618, 18.337168123607 ], [ -64.953282176920084, 18.337119340907122 ], [ -64.953236244068648, 18.336937285882698 ], [ -64.953176732527538, 18.336745341517542 ], [ -64.953147563490461, 18.336573175833962 ], [ -64.953068941200968, 18.336218956435687 ], [ -64.953036587039151, 18.336037069049439 ], [ -64.953040777992726, 18.335946376813524 ], [ -64.952919910890898, 18.335377580590944 ], [ -64.952831900865306, 18.335328296286264 ], [ -64.952683541107888, 18.335311866438474 ], [ -64.952661748149183, 18.335388309432176 ], [ -64.952606427561648, 18.335509679448421 ], [ -64.952594023648658, 18.335575059634266 ], [ -64.952528643462813, 18.335777397564414 ], [ -64.952438621779493, 18.335896253008457 ], [ -64.95241850651189, 18.335947885556834 ], [ -64.952361340595132, 18.336012761518589 ], [ -64.952315910658115, 18.336095408433209 ], [ -64.95228691056883, 18.336163300571855 ], [ -64.952271655497725, 18.336280479634524 ], [ -64.952261092984998, 18.336411069748692 ], [ -64.95225103469636, 18.336494553544412 ], [ -64.952245167361298, 18.336629669888509 ], [ -64.952227565356225, 18.336751376490724 ], [ -64.952210467575185, 18.336818765714895 ], [ -64.952191187878952, 18.336870565901393 ], [ -64.952146094527905, 18.336885988610675 ], [ -64.952103680767777, 18.336895880570808 ], [ -64.95202338340647, 18.336894036551257 ], [ -64.951954819405614, 18.336902584786912 ], [ -64.951879045654834, 18.336931250909515 ], [ -64.951805284871455, 18.336987074411468 ], [ -64.951748121574042, 18.337049771077375 ], [ -64.951745439363719, 18.337085814587965 ], [ -64.951768907394239, 18.337110791361738 ], [ -64.951804111404442, 18.33713593708336 ], [ -64.951879717517102, 18.3371252095518 ], [ -64.95199069265874, 18.337130572662772 ], [ -64.952082558361667, 18.337151527430763 ], [ -64.952220021639732, 18.337219085602783 ], [ -64.952246676104608, 18.3372599906196 ], [ -64.952375589837345, 18.337344143658186 ], [ -64.952440968713518, 18.337389070680786 ], [ -64.95251774698346, 18.337478254173391 ], [ -64.952586647570342, 18.337585877861841 ], [ -64.952642637400743, 18.337734908171853 ], [ -64.952755960786078, 18.338146962729809 ], [ -64.95291119370745, 18.338449717217884 ], [ -64.953190814131631, 18.338856574993372 ], [ -64.953307155003586, 18.339160167672162 ], [ -64.953381083425086, 18.339325458882172 ], [ -64.953424501704376, 18.339520757319917 ], [ -64.953483342692891, 18.339729969723635 ], [ -64.953507985500096, 18.339899116610923 ], [ -64.953565988297896, 18.340009087233398 ], [ -64.953684340827579, 18.340294407354463 ], [ -64.953465237773344, 18.340637730273386 ], [ -64.953301622944821, 18.340868231411719 ], [ -64.953219647892411, 18.341006534190171 ], [ -64.953081346423573, 18.341098064616801 ], [ -64.952908177530503, 18.341055484528226 ], [ -64.952884203966278, 18.341006198913874 ], [ -64.952810946097316, 18.340762116466578 ], [ -64.952801223084975, 18.340586265363186 ], [ -64.952755793147958, 18.340467242280909 ], [ -64.952727629939773, 18.340390799287263 ], [ -64.95261095379152, 18.340269093994721 ], [ -64.952505341760798, 18.340168846384586 ], [ -64.952468796645405, 18.340037250441583 ], [ -64.952456391422743, 18.33993968504177 ], [ -64.952420684498065, 18.339851172101703 ], [ -64.952319431059095, 18.33974053092669 ], [ -64.952142406488747, 18.339544059021932 ], [ -64.952009300492705, 18.339408775039715 ], [ -64.951863456617104, 18.339297966226525 ], [ -64.951565394687407, 18.339137368884565 ], [ -64.951323492845631, 18.338946093762274 ], [ -64.951094331502759, 18.338871159511882 ], [ -64.950877910658846, 18.338784155315182 ], [ -64.950783027469356, 18.338667479166929 ], [ -64.950693845286423, 18.338648536056667 ], [ -64.950477089166213, 18.338610314559844 ], [ -64.950421768578735, 18.338594724212442 ], [ -64.950168633671581, 18.338465810479704 ], [ -64.949935281375133, 18.338332705793391 ], [ -64.949725733695175, 18.338246204511051 ], [ -64.949467069348657, 18.338244192853324 ], [ -64.949191975154349, 18.338265147621371 ], [ -64.949150902499355, 18.338349804884047 ], [ -64.949174373149219, 18.338442676415866 ], [ -64.949254670510527, 18.338512749160031 ], [ -64.949278141160335, 18.338605620691794 ], [ -64.949260705483709, 18.338736713720436 ], [ -64.949154759486362, 18.338851713487202 ], [ -64.949016793293822, 18.338896975786099 ], [ -64.948855022484906, 18.338903513673699 ], [ -64.948645139528594, 18.338878703228374 ], [ -64.948435088934161, 18.33885389278305 ], [ -64.948127975854334, 18.338843834494412 ], [ -64.947861431205411, 18.338810809780057 ], [ -64.94763495207286, 18.338809133398627 ], [ -64.947160703763473, 18.338825394298567 ], [ -64.947106891919248, 18.338756495021414 ], [ -64.947092307400737, 18.338697318756601 ], [ -64.947017205512225, 18.338631939880429 ], [ -64.946917963730982, 18.338574104720749 ], [ -64.94679491733325, 18.338516101922892 ], [ -64.946711768813827, 18.338458266763212 ], [ -64.946643540089212, 18.338452902342624 ], [ -64.94658922533057, 18.338444352797296 ], [ -64.946558547550239, 18.338431277022039 ], [ -64.946512949975045, 18.338411328082941 ], [ -64.946392585787692, 18.338369753823201 ], [ -64.946181864640664, 18.338369753823201 ], [ -64.946119000336637, 18.338364389402614 ], [ -64.946085137431567, 18.338346284483066 ], [ -64.946061668091431, 18.338302195651181 ], [ -64.946026296443051, 18.338272691337806 ], [ -64.945966784901884, 18.338260956667739 ], [ -64.945885312763949, 18.338260286115144 ], [ -64.945817251677454, 18.338266321088383 ], [ -64.945731923862184, 18.338301357460466 ], [ -64.945546348436778, 18.338320971123323 ], [ -64.945491698401838, 18.338349804884047 ], [ -64.945399665060734, 18.338378638644826 ], [ -64.945297405792928, 18.338382661960281 ], [ -64.945234038574483, 18.338332705793391 ], [ -64.945168492060191, 18.338270512041959 ], [ -64.945110656900511, 18.338301189822289 ], [ -64.945034046268688, 18.338422559838591 ], [ -64.944997333515175, 18.338521131067239 ], [ -64.944964644077061, 18.338600926823801 ], [ -64.944940504184331, 18.338638645406206 ], [ -64.94487277837419, 18.338634454452574 ], [ -64.944735650372365, 18.338655576858741 ], [ -64.944613106889108, 18.338689439763812 ], [ -64.94446156200695, 18.338711065084397 ], [ -64.944417473175065, 18.338737384272974 ], [ -64.944405067952403, 18.338782981848169 ], [ -64.944412780616688, 18.338817347667657 ], [ -64.94450011878007, 18.338856072078954 ], [ -64.944631379446832, 18.33888758805 ], [ -64.944706482645017, 18.338964198681822 ], [ -64.94477001619191, 18.33899521173845 ], [ -64.94482148110211, 18.339029912834292 ], [ -64.944889206912251, 18.33904181514248 ], [ -64.944965146991535, 18.339019519269357 ], [ -64.945016947178033, 18.339020022183774 ], [ -64.945044607471743, 18.339050699964105 ], [ -64.945071429574796, 18.339102500150602 ], [ -64.945073441232523, 18.339279023116262 ], [ -64.945086684645901, 18.339359489425362 ], [ -64.945133288049931, 18.33947381863959 ], [ -64.945167150955058, 18.339659896979413 ], [ -64.945257172638378, 18.339776405489488 ], [ -64.945368819642283, 18.340018642607561 ], [ -64.945430845755538, 18.340163984878416 ], [ -64.945479963731714, 18.340333299403881 ], [ -64.945503600710026, 18.340526586183898 ], [ -64.945514664827556, 18.340695565433066 ], [ -64.945563615165611, 18.340889187489381 ], [ -64.945625138364449, 18.341094711853941 ], [ -64.945686326286989, 18.341324542439679 ], [ -64.945696887490044, 18.341565941367037 ], [ -64.945719853915818, 18.341831649134974 ], [ -64.945771821740436, 18.341934914231672 ], [ -64.945645590218021, 18.342020242046942 ], [ -64.945555568534701, 18.342129374478702 ], [ -64.945488178000801, 18.342196262098128 ], [ -64.945391283153583, 18.34224504348839 ], [ -64.945328251211436, 18.34223750108157 ], [ -64.945250467112601, 18.342204979281632 ], [ -64.945169330250906, 18.342151167437407 ], [ -64.945058689075836, 18.34206533539799 ], [ -64.945007224165636, 18.341990402457327 ], [ -64.944919046501923, 18.341897529615892 ], [ -64.94483438923919, 18.34180817848511 ], [ -64.94463842024885, 18.341700388468212 ], [ -64.944505315562537, 18.341639031597822 ], [ -64.944282356831025, 18.341586225582432 ], [ -64.944152941493485, 18.341499055057227 ], [ -64.944069121111852, 18.341412049550854 ], [ -64.943903663573394, 18.341273580443897 ], [ -64.943736694672282, 18.341177860373364 ], [ -64.943525639558629, 18.341096388235371 ], [ -64.943335536593679, 18.341033356293224 ], [ -64.943103191435796, 18.341016089564391 ], [ -64.942890458631041, 18.340997984644844 ], [ -64.942626093277966, 18.340931097025361 ], [ -64.942314621606386, 18.340850629406589 ], [ -64.942083782572411, 18.340795476457231 ], [ -64.941967275372008, 18.340703109149558 ], [ -64.941895526246412, 18.340653152982611 ], [ -64.941780692808095, 18.340614260933194 ], [ -64.941713134636075, 18.340592131388519 ], [ -64.941647589431398, 18.340562125470456 ], [ -64.941580031259377, 18.340510325283958 ], [ -64.941507107357097, 18.340434049928433 ], [ -64.941484811483917, 18.340393313859408 ], [ -64.941420272108132, 18.340327934983293 ], [ -64.941341648508967, 18.340248977417446 ], [ -64.941268559587854, 18.340186113113418 ], [ -64.9411362930922, 18.340087709522891 ], [ -64.941060016427002, 18.340062899077623 ], [ -64.940946860679844, 18.340056528828143 ], [ -64.940833203327884, 18.34010983775795 ], [ -64.940745528578532, 18.340132804183668 ], [ -64.940813085440936, 18.340078321786848 ], [ -64.940871257186586, 18.340014619292106 ], [ -64.940929258674714, 18.33995108443554 ], [ -64.941006373530627, 18.3399058221367 ], [ -64.941064542656932, 18.339842119641958 ], [ -64.941122545454732, 18.339778584785392 ], [ -64.941209549651489, 18.339696777371103 ], [ -64.94123905527448, 18.33960541458265 ], [ -64.941239893465195, 18.339504664058097 ], [ -64.941288842493577, 18.339404416447962 ], [ -64.941337291226887, 18.339331493855354 ], [ -64.941395460353192, 18.339267791360612 ], [ -64.941463018525212, 18.339213308963792 ], [ -64.941530576697232, 18.33915899420515 ], [ -64.941607691553145, 18.339113731906252 ], [ -64.941663850331395, 18.339050029411567 ], [ -64.941750351613678, 18.339032427406437 ], [ -64.941836851586345, 18.339014825401307 ], [ -64.94193274060467, 18.339015495953902 ], [ -64.942009017269868, 18.339061931719755 ], [ -64.942075737251173, 18.339117419945467 ], [ -64.942123011207798, 18.339191013090669 ], [ -64.942189731189103, 18.339246501316325 ], [ -64.942275729556968, 18.33927466452451 ], [ -64.94236189556301, 18.33928438753685 ], [ -64.942448395535621, 18.339276005629642 ], [ -64.942544284554003, 18.339267623722492 ], [ -64.942669176280958, 18.339250189355482 ], [ -64.942755508615448, 18.339232587350352 ], [ -64.942842009897731, 18.339214985345279 ], [ -64.942928512489743, 18.339197215701972 ], [ -64.943015181410146, 18.339161341139175 ], [ -64.943101850330606, 18.339107026380532 ], [ -64.943178962567174, 18.339061931719755 ], [ -64.943237133003151, 18.338998229225069 ], [ -64.943276192690689, 18.338916086534482 ], [ -64.943209472709384, 18.338860598308827 ], [ -64.943123306703399, 18.338841655198564 ], [ -64.943008306936576, 18.338840817007849 ], [ -64.942912417918251, 18.338839978817134 ], [ -64.942826251912209, 18.338811815608949 ], [ -64.942740422492136, 18.338765379843039 ], [ -64.942683425523171, 18.338700839157582 ], [ -64.942626428554263, 18.338636298472181 ], [ -64.942550151889066, 18.338589862706272 ], [ -64.942473708895363, 18.338543594578539 ], [ -64.942541603653353, 18.338562034774384 ], [ -64.942597762431603, 18.338571087234129 ], [ -64.942660794373751, 18.338574775273344 ], [ -64.942737740281871, 18.338592209640296 ], [ -64.942776295745318, 18.338599250442314 ], [ -64.942800770914346, 18.338609476369129 ], [ -64.942849722562073, 18.338629928222701 ], [ -64.942888110387344, 18.338646859675237 ], [ -64.942916105957408, 18.338653732839134 ], [ -64.942951143639164, 18.338654068115432 ], [ -64.942982659610266, 18.338654403391729 ], [ -64.943028255875731, 18.338651385905109 ], [ -64.943098328619953, 18.338651888819584 ], [ -64.943186003369249, 18.338649206609261 ], [ -64.943325982529132, 18.338666976252512 ], [ -64.943410135567774, 18.338664294042189 ], [ -64.943473167509921, 18.338671502482384 ], [ -64.943585652704542, 18.338635627919587 ], [ -64.943718925029032, 18.338626575459784 ], [ -64.943799392647804, 18.338633951538156 ], [ -64.943859070517419, 18.338631101689714 ], [ -64.943908188493594, 18.338611320388679 ], [ -64.943960994508927, 18.338585001200101 ], [ -64.944010447761457, 18.338548456084709 ], [ -64.944042131370622, 18.338525322020814 ], [ -64.944070463526657, 18.338495482431199 ], [ -64.944084543821077, 18.338482239017821 ], [ -64.944105833865365, 18.338465642841584 ], [ -64.94415159907868, 18.338435803251912 ], [ -64.944221839461022, 18.338422895114832 ], [ -64.944270957437197, 18.338403281452031 ], [ -64.944323763452587, 18.338383667789174 ], [ -64.944352095608565, 18.338360366087159 ], [ -64.94437321670506, 18.338337064385144 ], [ -64.944398027150385, 18.338313930321249 ], [ -64.94442619035857, 18.338293981382094 ], [ -64.944468435170847, 18.338264309430599 ], [ -64.944503806819228, 18.338231117078124 ], [ -64.944532137665533, 18.338201109850331 ], [ -64.944549908618512, 18.338167749859679 ], [ -64.944557115749035, 18.338141095394803 ], [ -64.94456432418923, 18.338114440929871 ], [ -64.944578573431443, 18.338090971589736 ], [ -64.94460003111385, 18.338054426474343 ], [ -64.94461428035612, 18.338011008195053 ], [ -64.944625176835473, 18.337967589915763 ], [ -64.94464328175502, 18.337910760584919 ], [ -64.944650825471513, 18.337837167439716 ], [ -64.94465116074781, 18.337793749160426 ], [ -64.944648144570863, 18.337743457717238 ], [ -64.944655520649235, 18.337693333912171 ], [ -64.944652501852943, 18.337649747994703 ], [ -64.944628195631765, 18.337622758253531 ], [ -64.944607239554045, 18.337612699964893 ], [ -64.944530293645983, 18.33759526559794 ], [ -64.944484696070788, 18.337588224795866 ], [ -64.94445670050078, 18.337588057157745 ], [ -64.94443926613377, 18.337581183993848 ], [ -64.944411438201882, 18.337564252541256 ], [ -64.944362487863827, 18.3375471534506 ], [ -64.944342203648432, 18.337463334378583 ], [ -64.944321416518562, 18.337429639111633 ], [ -64.944300629388692, 18.337399464245721 ], [ -64.94426576065473, 18.337368954103511 ], [ -64.94424497352486, 18.337355375413836 ], [ -64.944199543587843, 18.33733509119844 ], [ -64.944157634051862, 18.337317992107728 ], [ -64.944133158882835, 18.33730441341811 ], [ -64.944084377492629, 18.33728060880162 ], [ -64.944052861521527, 18.337270215236686 ], [ -64.944010950675874, 18.337256636547068 ], [ -64.943962001647492, 18.337239369818235 ], [ -64.943937526478464, 18.337235849417198 ], [ -64.943878013627682, 18.337225455852263 ], [ -64.943839624492682, 18.33720165123583 ], [ -64.943801235357739, 18.337184719783295 ], [ -64.943745245527282, 18.337167453054462 ], [ -64.943650697614089, 18.337163429739007 ], [ -64.943619012695194, 18.33717985958674 ], [ -64.943541731510834, 18.337195951538888 ], [ -64.943489094443237, 18.337209028623818 ], [ -64.943443495558427, 18.337208692037848 ], [ -64.943397897983232, 18.337211709524468 ], [ -64.943369902413224, 18.33721472701103 ], [ -64.943320784436992, 18.337221098570183 ], [ -64.943264794606591, 18.337220594346093 ], [ -64.943205281755809, 18.337210200781158 ], [ -64.943145771524371, 18.337199639578103 ], [ -64.943107213441579, 18.337189246013168 ], [ -64.943065471543719, 18.337165609034855 ], [ -64.943044684413849, 18.3371252095518 ], [ -64.943031105724174, 18.33707491679894 ], [ -64.943045354966443, 18.337044909571148 ], [ -64.943098160981776, 18.33701859038257 ], [ -64.943147278957952, 18.33701222013309 ], [ -64.943168401364119, 18.33700903500835 ], [ -64.943186003369249, 18.33700584988361 ], [ -64.943207125775359, 18.336995960542822 ], [ -64.943259765462244, 18.336986237530425 ], [ -64.943301842636401, 18.336969976630485 ], [ -64.943319610969979, 18.336950026381658 ], [ -64.943330507449389, 18.336906608102367 ], [ -64.943316762431209, 18.336876265598335 ], [ -64.943313408358676, 18.336849443495282 ], [ -64.943324138509581, 18.33682278903035 ], [ -64.943348947645234, 18.336789596677875 ], [ -64.943373759400174, 18.336759589450082 ], [ -64.943398568535827, 18.336736287748067 ], [ -64.943419690941994, 18.336719860519622 ], [ -64.943448021788299, 18.336689851982158 ], [ -64.943469145504139, 18.33666990304306 ], [ -64.943522285486097, 18.336610223863772 ], [ -64.943610464459539, 18.336543840468437 ], [ -64.943726804021765, 18.3364643786785 ], [ -64.943779777675275, 18.33641794291259 ], [ -64.943857395445605, 18.336348373082842 ], [ -64.943868290615342, 18.33631836585505 ], [ -64.943889580659629, 18.336285005864397 ], [ -64.943942555622755, 18.33622515904699 ], [ -64.944020338411917, 18.336152068816205 ], [ -64.94405218965926, 18.336122230536262 ], [ -64.944087562617369, 18.336068921606454 ], [ -64.944126453357057, 18.336029022418529 ], [ -64.944172387518222, 18.335992644941257 ], [ -64.94420792549505, 18.335942688774367 ], [ -64.944250337945505, 18.335892901555269 ], [ -64.944264754825895, 18.335852834729167 ], [ -64.944318231393822, 18.335746050541104 ], [ -64.944371205047332, 18.335689556486614 ], [ -64.94443457357545, 18.335653346647518 ], [ -64.94448084039351, 18.335583272593624 ], [ -64.944491736872862, 18.335536501551474 ], [ -64.94450967415429, 18.335489899457116 ], [ -64.944546051631505, 18.335336175279053 ], [ -64.94453565806657, 18.335306000413141 ], [ -64.944536328619165, 18.335239111483986 ], [ -64.944523085205788, 18.33514523543306 ], [ -64.944502800990335, 18.335054709525593 ], [ -64.944478996373903, 18.33498094874227 ], [ -64.944434069351303, 18.334896794393956 ], [ -64.94437506072461, 18.334829403860056 ], [ -64.944309012605572, 18.334772071614793 ], [ -64.94422535986206, 18.334704513442773 ], [ -64.9441836179642, 18.334677357373153 ], [ -64.94414187606634, 18.334640140395493 ], [ -64.94411471868699, 18.334626730653667 ], [ -64.944078173571597, 18.334612144825428 ], [ -64.944032912582372, 18.33458901076159 ], [ -64.943960157627885, 18.334555650770938 ], [ -64.94386728478645, 18.334516423445223 ], [ -64.943797548628197, 18.334483901645285 ], [ -64.943761169841309, 18.334457248490082 ], [ -64.943724289449619, 18.334426401761903 ], [ -64.943693780617082, 18.334416846387683 ], [ -64.943662430974484, 18.33440963925716 ], [ -64.943679028460394, 18.334409805585608 ], [ -64.943774917478777, 18.334401257349953 ], [ -64.943861249813267, 18.334392875442745 ], [ -64.94394775109555, 18.334375273437672 ], [ -64.94404397539023, 18.334339231236697 ], [ -64.94412108893647, 18.33429413657592 ], [ -64.944217145592972, 18.334276534570847 ], [ -64.94427514839083, 18.334212830766432 ], [ -64.944361649673112, 18.33418617761123 ], [ -64.944457538691495, 18.334186848163768 ], [ -64.944496598379033, 18.334104705473237 ], [ -64.94453565806657, 18.334022561472977 ], [ -64.944555607005725, 18.333940252453942 ], [ -64.94457555594488, 18.33385810845374 ], [ -64.94463355874268, 18.33379440726867 ], [ -64.944719892386843, 18.33378585641367 ], [ -64.944728777208468, 18.333868334380497 ], [ -64.944680329784831, 18.333941258282834 ], [ -64.944641270097293, 18.334023399663693 ], [ -64.944592655035535, 18.33409632356603 ], [ -64.944578070517025, 18.334136724358757 ], [ -64.94457739996443, 18.334138568378307 ], [ -64.944563150722217, 18.33417846625656 ], [ -64.944533646408843, 18.334260776585268 ], [ -64.944507662496505, 18.3342760303467 ], [ -64.944456532862603, 18.334305871246045 ], [ -64.94437003158032, 18.334341913446963 ], [ -64.9443024734083, 18.334396228205662 ], [ -64.944292079843365, 18.33447853853437 ], [ -64.94428185391655, 18.334561016501198 ], [ -64.944348407569407, 18.33461650341718 ], [ -64.944434907542018, 18.33459873377393 ], [ -64.944521408824357, 18.334571911670878 ], [ -64.9446271884932, 18.334545258515675 ], [ -64.944713186861065, 18.334573420414188 ], [ -64.944799185228931, 18.334610803720295 ], [ -64.944865905210236, 18.334666293255623 ], [ -64.944903623792641, 18.334748937550955 ], [ -64.944922063988486, 18.334831584465633 ], [ -64.944921225797771, 18.33492311358259 ], [ -64.944882166110233, 18.335005257582793 ], [ -64.944939163079198, 18.33506979826825 ], [ -64.945005883060503, 18.335125286493906 ], [ -64.945072435403688, 18.335180773409888 ], [ -64.94515876904785, 18.335190496422229 ], [ -64.945167653869476, 18.335272974389113 ], [ -64.945205204813703, 18.335355787632238 ], [ -64.945213921997208, 18.335456539466463 ], [ -64.945242085205393, 18.335539183761739 ], [ -64.945279636149678, 18.335621829366744 ], [ -64.945327077744423, 18.335695591459796 ], [ -64.945403353099948, 18.335741859587529 ], [ -64.945575852750096, 18.335761639578834 ], [ -64.945624300173733, 18.335688716986226 ], [ -64.945634693738668, 18.335606406657519 ], [ -64.945720859744654, 18.335616129669859 ], [ -64.945807025750696, 18.335626021630048 ], [ -64.945873745732001, 18.335681508546031 ], [ -64.945950021087526, 18.335727776673764 ], [ -64.946036019455391, 18.335765159979871 ], [ -64.946131740835597, 18.335793324497729 ], [ -64.946217739203462, 18.335830706494164 ], [ -64.946274736172427, 18.335895248489294 ], [ -64.946302731742492, 18.335977892784626 ], [ -64.946244728944635, 18.336041427641192 ], [ -64.946158060024231, 18.336077469842166 ], [ -64.946071558741892, 18.33609507184724 ], [ -64.945956391337006, 18.336121727621844 ], [ -64.945860502318624, 18.336120889431129 ], [ -64.945774001036284, 18.336138657764707 ], [ -64.945696887490044, 18.336183752425427 ], [ -64.945763607471406, 18.336239240651082 ], [ -64.945859496489732, 18.336239912513349 ], [ -64.945955385508114, 18.336240749394392 ], [ -64.946041719152277, 18.336232199849064 ], [ -64.946117994507802, 18.336278635614974 ], [ -64.946203992875667, 18.336315852592577 ], [ -64.946290158881709, 18.336325741933422 ], [ -64.946376660163992, 18.336317192388094 ], [ -64.946491995207055, 18.336281485463417 ], [ -64.946578496489394, 18.336263883458287 ], [ -64.94666466249538, 18.336282826568549 ], [ -64.946731214838564, 18.336338314794205 ], [ -64.946749655034409, 18.336439232956877 ], [ -64.946748816843694, 18.336530763383507 ], [ -64.946747978652922, 18.336622293810137 ], [ -64.946737585088044, 18.336723045644362 ], [ -64.946775303670449, 18.336805689939695 ], [ -64.946832300639358, 18.336870230625095 ], [ -64.946878065852673, 18.33688045655191 ], [ -64.946964567135012, 18.336871236453987 ], [ -64.947051068417295, 18.336853634448858 ], [ -64.947137402061458, 18.33684525254165 ], [ -64.94723329107984, 18.336845923094245 ], [ -64.947329180098222, 18.33684659364684 ], [ -64.947415681380505, 18.33682899164171 ], [ -64.947502015024668, 18.33681138963658 ], [ -64.947588683945128, 18.336784567533527 ], [ -64.947694128337673, 18.33677618562632 ], [ -64.947780629620013, 18.336767803719113 ], [ -64.947867130902296, 18.336740981616117 ], [ -64.947953632184579, 18.336714159513065 ], [ -64.948040133466918, 18.336687337410012 ], [ -64.948126633439529, 18.336669735404882 ], [ -64.948213136031484, 18.336651965761632 ], [ -64.948299468365974, 18.336634363756502 ], [ -64.948395357384356, 18.336635201947217 ], [ -64.948481859976368, 18.33661743361364 ], [ -64.948568361258651, 18.33659983160851 ], [ -64.948654694902814, 18.33659128075351 ], [ -64.948788973056139, 18.336592455530194 ], [ -64.948884862074522, 18.336593124773117 ], [ -64.948980917421352, 18.336584742865909 ], [ -64.949067420013307, 18.336557920762857 ], [ -64.949153752347797, 18.336549372527202 ], [ -64.949240253630137, 18.336531770522072 ], [ -64.949326588583972, 18.336523219667072 ], [ -64.949422477602297, 18.336524057857787 ], [ -64.94953764500724, 18.336524896048502 ], [ -64.94962380970361, 18.336534786698962 ], [ -64.949709975709595, 18.336553729809225 ], [ -64.949786252374793, 18.336600165575135 ], [ -64.949843249343758, 18.336664707570264 ], [ -64.949910807515778, 18.336610223863772 ], [ -64.949911644396821, 18.336518693437142 ], [ -64.949902759575195, 18.336436215470314 ], [ -64.949893876063243, 18.336353737503487 ], [ -64.949904100680385, 18.336271259536602 ], [ -64.949904940180772, 18.336179730419644 ], [ -64.949896055359147, 18.336097252452817 ], [ -64.949906281285905, 18.336014940814437 ], [ -64.94993578559928, 18.335932630485729 ], [ -64.949878788630315, 18.335868089800272 ], [ -64.949792622624273, 18.335849146690009 ], [ -64.949716347268748, 18.335802878562276 ], [ -64.949659350299783, 18.335738337876819 ], [ -64.949631187091597, 18.335655693581543 ], [ -64.949632025282312, 18.335563995516736 ], [ -64.949699583454333, 18.335509679448421 ], [ -64.94975758625219, 18.335475648905174 ], [ -64.94978994041395, 18.335432064297436 ], [ -64.951352326606354, 18.333327701366102 ], [ -64.951395912523822, 18.333354189502529 ], [ -64.951290469440892, 18.333515791363709 ], [ -64.951372275545509, 18.333558371452284 ], [ -64.951488616417464, 18.333423087470067 ], [ -64.951526837914287, 18.333439014403382 ], [ -64.951185695600941, 18.334227247646822 ], [ -64.951987507534, 18.334741393834463 ], [ -64.95219303189856, 18.334423553223132 ], [ -64.952547586573075, 18.334646344316468 ], [ -64.952725115367571, 18.334406789408717 ], [ -64.952660239405873, 18.33430670943676 ], [ -64.952776747915948, 18.33412951460889 ], [ -64.952624364843075, 18.333997417061084 ], [ -64.952718912756268, 18.333851570566139 ], [ -64.953000377200055, 18.3340317815709 ], [ -64.953272287579296, 18.333635821584437 ], [ -64.95302720061278, 18.333442199528122 ], [ -64.953166003686306, 18.333239022097587 ], [ -64.953611753511211, 18.333392746275649 ], [ -64.953688699419331, 18.333382185072594 ], [ -64.954125396784434, 18.333322841169604 ], [ -64.954214747915159, 18.333323510412527 ], [ -64.954304266684062, 18.333324348603242 ], [ -64.954393617814844, 18.333318816544477 ], [ -64.954476766334267, 18.333295179566164 ], [ -64.954553879880507, 18.333253102392064 ], [ -64.95462445553909, 18.333198621304916 ], [ -64.95470156908533, 18.333156544130759 ], [ -64.95477214474397, 18.333108431983419 ], [ -64.954811036793387, 18.333029474417629 ], [ -64.954856466730405, 18.332956550515291 ], [ -64.954901729029302, 18.332877594259173 ], [ -64.95494715896632, 18.332804839304629 ], [ -64.954992421265217, 18.332732084350141 ], [ -64.955056794312497, 18.332671566980196 ], [ -64.955121167359778, 18.332611049610193 ], [ -64.955179170157635, 18.332544497267008 ], [ -64.955230802705955, 18.332477777285703 ], [ -64.955276065004853, 18.332404853383423 ], [ -64.95530875444291, 18.332325897127248 ], [ -64.955366757240768, 18.332259343474391 ], [ -64.955412019539608, 18.332186422191455 ], [ -64.955457281838505, 18.332113667236968 ], [ -64.955521822523963, 18.332047114893783 ], [ -64.955586195571243, 18.331980562550598 ], [ -64.955650568618523, 18.33190780759611 ], [ -64.955702201166901, 18.331841087614805 ], [ -64.955766909490478, 18.331737990156228 ], [ -64.955793228679113, 18.33165886495226 ], [ -64.955806639730611, 18.33157370477511 ], [ -64.955813848170806, 18.33148837695984 ], [ -64.955820888972823, 18.331403049144512 ], [ -64.955808986664636, 18.33130531610658 ], [ -64.955790546468791, 18.331219820653132 ], [ -64.955746457636906, 18.33114639514605 ], [ -64.955689628306118, 18.331078836974029 ], [ -64.955639001586633, 18.331011278802009 ], [ -64.955575802006308, 18.330949923241292 ], [ -64.955505896900263, 18.330894435015637 ], [ -64.955455437818898, 18.330827044481737 ], [ -64.95539207060051, 18.330765521282899 ], [ -64.955379833015968, 18.330698466025297 ], [ -64.955373630404665, 18.330680025829452 ], [ -64.9553231713233, 18.330606432684249 ], [ -64.955259971743033, 18.330545077123531 ], [ -64.955202974774068, 18.330477518951511 ], [ -64.955158885942183, 18.330403925806309 ], [ -64.955095686361915, 18.330342570245591 ], [ -64.955095686361915, 18.330336367634231 ], [ -64.955147318910235, 18.330275850264286 ], [ -64.955198783820435, 18.330221367867466 ], [ -64.955222923713222, 18.330234778918964 ], [ -64.955272209327518, 18.330261601022016 ], [ -64.955397937935516, 18.330370398177479 ], [ -64.955568928842411, 18.330526804565864 ], [ -64.955635816461893, 18.330576425456456 ], [ -64.955761712708011, 18.330658735785164 ], [ -64.955846202332566, 18.330738699179847 ], [ -64.955940247331398, 18.330803742779722 ], [ -64.956127331500056, 18.330928130282587 ], [ -64.956294131453376, 18.331099456465722 ], [ -64.956475013010731, 18.331236919743844 ], [ -64.956565705246646, 18.331296263646777 ], [ -64.956599232875419, 18.331307830678725 ], [ -64.956642651154709, 18.3313214093684 ], [ -64.956723285101987, 18.331388296987825 ], [ -64.956738540173092, 18.331446970338277 ], [ -64.956728314246334, 18.331484688920625 ], [ -64.956725967312309, 18.331539506593742 ], [ -64.956755303987507, 18.331570016735952 ], [ -64.956786987596729, 18.331577728090565 ], [ -64.956816827186344, 18.331564819953485 ], [ -64.956963175286035, 18.331346555090022 ], [ -64.957056885008569, 18.331248989690209 ], [ -64.957076833947667, 18.331247313308722 ], [ -64.957332314479174, 18.331455352245428 ], [ -64.957328291163719, 18.331476139375297 ], [ -64.957317897598784, 18.331528945390687 ], [ -64.957327452972947, 18.331564987591605 ], [ -64.95739115546769, 18.331754417384673 ], [ -64.957422336162495, 18.331818959379802 ], [ -64.95745234339023, 18.3320120785217 ], [ -64.957491403077825, 18.33207477518755 ], [ -64.957556111401402, 18.332156582601783 ], [ -64.957630878013617, 18.332211903189318 ], [ -64.95784679463344, 18.332421618507453 ], [ -64.957927262252213, 18.332507281599078 ], [ -64.957958441637288, 18.332566122587593 ], [ -64.957930278429103, 18.332611217248314 ], [ -64.95792558456111, 18.332632674930778 ], [ -64.957945870086178, 18.332647259449288 ], [ -64.95799984956858, 18.332814059402551 ], [ -64.95800169358813, 18.332833002512871 ], [ -64.957918377430587, 18.332864518483916 ], [ -64.957858864579805, 18.332879103002426 ], [ -64.957662393984663, 18.332932411932234 ], [ -64.957420492142887, 18.332997789498734 ], [ -64.957247321940145, 18.333059984559839 ], [ -64.957116061273382, 18.333113964042184 ], [ -64.957033918582852, 18.333144977098812 ], [ -64.956918248263491, 18.333201303515239 ], [ -64.956829232409007, 18.333251258372457 ], [ -64.956751279362379, 18.333295179566164 ], [ -64.956635777990812, 18.333336587497399 ], [ -64.956564699417754, 18.333376150099411 ], [ -64.956478030497351, 18.333400960544736 ], [ -64.956367054045984, 18.333423256417859 ], [ -64.956302680998704, 18.333441864251824 ], [ -64.956222549965844, 18.333487797103317 ], [ -64.956122805270184, 18.333493329162081 ], [ -64.955987688926143, 18.333494502629094 ], [ -64.955839329168668, 18.333491148556504 ], [ -64.955662135650471, 18.333506740213579 ], [ -64.955480248264223, 18.333539094375396 ], [ -64.955386873818043, 18.333565916478392 ], [ -64.955340102775835, 18.333603635060797 ], [ -64.955277741386283, 18.333651747208137 ], [ -64.955137428259775, 18.333739589595609 ], [ -64.954982195338403, 18.333755347581132 ], [ -64.954776335697602, 18.333753671199702 ], [ -64.954645745583377, 18.333735732608602 ], [ -64.954521693356867, 18.333739085371519 ], [ -64.954381883144777, 18.333765404560097 ], [ -64.95428867633666, 18.333796417616725 ], [ -64.954246599162559, 18.3337960836501 ], [ -64.954200666311067, 18.333767920441915 ], [ -64.954169653254439, 18.333732044569444 ], [ -64.954116679600929, 18.333710588196709 ], [ -64.954054485849497, 18.333720646485347 ], [ -64.953963625975462, 18.333724165576655 ], [ -64.953903611519934, 18.333749143660157 ], [ -64.953836891538629, 18.33379088555796 ], [ -64.953774194872722, 18.333868669656795 ], [ -64.953719209561541, 18.333924997382837 ], [ -64.953705630871866, 18.333952488728812 ], [ -64.953682329169851, 18.333999596356932 ], [ -64.953672606157511, 18.334098501552205 ], [ -64.953631031897771, 18.334214339509742 ], [ -64.953610747682376, 18.33433269334904 ], [ -64.953609909491604, 18.334645504816081 ], [ -64.953626505667899, 18.334836278333626 ], [ -64.953657686362646, 18.335064935452408 ], [ -64.953710660016156, 18.335361488638796 ], [ -64.953724741620249, 18.335516049697901 ], [ -64.953736811566614, 18.335670444428501 ], [ -64.953756425229471, 18.335764155460708 ], [ -64.953849967313829, 18.335897761751767 ], [ -64.953951556029097, 18.336205211417564 ], [ -64.954006373702214, 18.33641626653116 ], [ -64.954124558593719, 18.336616092508507 ], [ -64.954262021871784, 18.336716338808912 ], [ -64.95445245880336, 18.336803007729372 ], [ -64.954617414737072, 18.33687727142717 ], [ -64.954859148940727, 18.336927898146655 ], [ -64.955020416835225, 18.336937621158995 ], [ -64.955495838611625, 18.336993613608797 ], [ -64.955596421498001, 18.33702361952686 ], [ -64.95574226668333, 18.337050610577762 ], [ -64.956108891304211, 18.337069720016473 ], [ -64.956377112334621, 18.337101068349398 ], [ -64.957185128188712, 18.337159071147255 ], [ -64.95733449246535, 18.337163429739007 ], [ -64.95768033126609, 18.337168626521418 ], [ -64.957998676101568, 18.337207686209013 ], [ -64.958367312380233, 18.337307933819091 ], [ -64.958494548421811, 18.337345317125198 ], [ -64.958774336484169, 18.337420586651888 ], [ -64.958964773415744, 18.337495017987806 ], [ -64.959091675490754, 18.337569114047483 ], [ -64.959294686592841, 18.337668020552428 ], [ -64.959383365861299, 18.337741613697631 ], [ -64.959586375653714, 18.337840687840753 ], [ -64.959802462531002, 18.337927524399333 ], [ -64.96002424648583, 18.338075213604213 ], [ -64.960163553783502, 18.338173617194741 ], [ -64.960442672602937, 18.338334046898524 ], [ -64.960658421584583, 18.338433121041646 ], [ -64.961014317364288, 18.338545438598089 ], [ -64.961192851987676, 18.338546779703279 ], [ -64.961447495638083, 18.338573098891857 ], [ -64.961651677587781, 18.338550300104316 ], [ -64.961804898851369, 18.338514928455879 ], [ -64.961945714892352, 18.338443011692107 ], [ -64.962137995843534, 18.338310577558389 ], [ -64.962286187962832, 18.338171437898836 ], [ -64.962430859681092, 18.337941941279723 ], [ -64.962512667095382, 18.337658632816328 ], [ -64.962602185864284, 18.337340958533503 ], [ -64.962822127109177, 18.337045077209325 ], [ -64.962978533497562, 18.336868555553338 ], [ -64.963041397801533, 18.336825303602552 ], [ -64.963095544922055, 18.336706615796572 ], [ -64.9633067689835, 18.336607710601299 ], [ -64.963697365858991, 18.336582060655587 ], [ -64.964193071850843, 18.336571499452532 ], [ -64.964779134802257, 18.336532942679412 ], [ -64.965229746133332, 18.336536463080392 ], [ -64.96575579462916, 18.336483155460314 ], [ -64.966371697170246, 18.336473432447974 ], [ -64.967093044103876, 18.336436047832137 ], [ -64.967919163567842, 18.336413585630567 ], [ -64.968550153541855, 18.336389779704405 ], [ -64.969060780638131, 18.336393635381739 ], [ -64.969316427498086, 18.336366980916807 ], [ -64.969516419803881, 18.336355916799334 ], [ -64.969675676040652, 18.336363963430244 ], [ -64.969820683035209, 18.336365136897257 ], [ -64.969957978675154, 18.336407716985832 ], [ -64.970091250999644, 18.336453817475444 ], [ -64.970181441630814, 18.336540821672145 ], [ -64.970318569632582, 18.336618102856562 ], [ -64.970441782358762, 18.336612067883379 ], [ -64.970535994995657, 18.336612738435917 ], [ -64.97073146107158, 18.33663503561877 ], [ -64.970977553866987, 18.336678452588387 ], [ -64.971194645263438, 18.336700916099687 ], [ -64.971346860698191, 18.3367020895667 ], [ -64.971564119732818, 18.336710639112027 ], [ -64.971789090122058, 18.336677782035792 ], [ -64.971970474593888, 18.336644589683317 ], [ -64.972129563192539, 18.336560602973179 ], [ -64.972216399751119, 18.336451639489212 ], [ -64.972303236309699, 18.336370166041547 ], [ -64.972390072868336, 18.336261368886142 ], [ -64.972505072635101, 18.336234882059387 ], [ -64.972706406046029, 18.336154249421782 ], [ -64.972850574849872, 18.336073112560086 ], [ -64.973047214392807, 18.33613362862036 ], [ -64.973177301592557, 18.336190122674907 ], [ -64.973452228148687, 18.336240581756272 ], [ -64.973770740622285, 18.336284502949979 ], [ -64.973923626609633, 18.336188781569774 ], [ -64.97405572546711, 18.335972696002159 ], [ -64.974222859386998, 18.335928105565529 ], [ -64.974398376523766, 18.335742528830451 ], [ -64.974457386460131, 18.335625349767781 ], [ -64.974473478412278, 18.335431727711466 ], [ -64.974535504525534, 18.335199885468001 ], [ -64.974631393543916, 18.335371042703343 ], [ -64.974783776616846, 18.335486042470109 ], [ -64.974944878182896, 18.335568520436937 ], [ -64.975251153071952, 18.335611603439986 ], [ -64.975532282239442, 18.335597521835894 ], [ -64.976196798532612, 18.335570030489919 ], [ -64.977006827354103, 18.335539520347709 ], [ -64.978182639986414, 18.335483361569459 ], [ -64.980853786172929, 18.335414125706336 ], [ -64.982165554649725, 18.335383447926006 ], [ -64.982432266936826, 18.335369198683736 ], [ -64.982764358100098, 18.335363500296523 ], [ -64.982934846092519, 18.335356793461074 ], [ -64.983122096589682, 18.335366348835294 ], [ -64.983300632522742, 18.335400211740364 ], [ -64.983444967655032, 18.335450001578806 ], [ -64.983597518366082, 18.335540692505049 ], [ -64.983716038533885, 18.335622836505308 ], [ -64.983842774280447, 18.335762142493309 ], [ -64.983934638673645, 18.335966159424231 ], [ -64.984018291417215, 18.336145698566781 ], [ -64.984074953109882, 18.336503942590184 ], [ -64.98410596616651, 18.336886491525092 ], [ -64.984112670382615, 18.337106097493745 ], [ -64.98410261340365, 18.337284967393373 ], [ -64.984041425481053, 18.337463334378583 ], [ -64.983930112443772, 18.337543969635533 ], [ -64.983648815638162, 18.337566096560863 ], [ -64.982950770406546, 18.337590739368011 ], [ -64.982314920236036, 18.337613035241191 ], [ -64.979989276264291, 18.337692998635873 ], [ -64.978717238027627, 18.337748486861528 ], [ -64.978529987530464, 18.337746978118219 ], [ -64.97841800394059, 18.337892488027251 ], [ -64.978376429680907, 18.337993406189923 ], [ -64.978353630893309, 18.338194571962731 ], [ -64.978310212614019, 18.338355336942811 ], [ -64.978161517580247, 18.338485088866264 ], [ -64.977781481907812, 18.338532530461009 ], [ -64.977349144444133, 18.338529345336269 ], [ -64.976990566454106, 18.338546779703279 ], [ -64.976537606879333, 18.338492967859054 ], [ -64.976127565288778, 18.338348799055211 ], [ -64.975727245400947, 18.338305548414041 ], [ -64.975389957455207, 18.338292975553259 ], [ -64.975205052582339, 18.338310409920211 ], [ -64.974989134652901, 18.338330861773784 ], [ -64.974838929566204, 18.338336896746966 ], [ -64.974628377367026, 18.338371262566511 ], [ -64.974470797511628, 18.338370089099499 ], [ -64.974207773263686, 18.338382326683984 ], [ -64.974004931109448, 18.338388026380926 ], [ -64.973697147477083, 18.338371262566511 ], [ -64.973465806838362, 18.338376626987099 ], [ -64.973270508400617, 18.338389535124179 ], [ -64.973090129757679, 18.338402610899436 ], [ -64.972872535446754, 18.338393726077811 ], [ -64.972541953026791, 18.338405460747879 ], [ -64.971955722437201, 18.338458434401389 ], [ -64.971745504204648, 18.338463966460154 ], [ -64.971415089422806, 18.338447202645739 ], [ -64.971182407678953, 18.338430941745742 ], [ -64.971055170327645, 18.338394228992229 ], [ -64.970961460605167, 18.338371933119049 ], [ -64.970833720339442, 18.338370927290214 ], [ -64.970563487651305, 18.338368915632486 ], [ -64.970368356851679, 18.338360198448981 ], [ -64.970082701454317, 18.338386852913914 ], [ -64.969819678516046, 18.338406298938594 ], [ -64.969677017145841, 18.338405125471581 ], [ -64.969436624047319, 18.338417698332364 ], [ -64.969203607027168, 18.338444688073594 ], [ -64.968835138386623, 18.338506378910552 ], [ -64.968564739370038, 18.338504199614704 ], [ -64.968361895906128, 18.338517107751784 ], [ -64.968113960400842, 18.338522304534251 ], [ -64.967850934843227, 18.338541918197109 ], [ -64.967640716610674, 18.338540241815679 ], [ -64.967407868538317, 18.338545606236266 ], [ -64.967250119735127, 18.338558849649644 ], [ -64.967122379469401, 18.338572093063021 ], [ -64.967128917357002, 18.338679716751471 ], [ -64.967173510412977, 18.338744592713169 ], [ -64.967316170473566, 18.338745766180182 ], [ -64.967451285507934, 18.338739563568879 ], [ -64.967601658232752, 18.338719279353427 ], [ -64.967774491849582, 18.338706203578226 ], [ -64.967969791597, 18.338707712321479 ], [ -64.968240359561435, 18.338688266296799 ], [ -64.968431130459635, 18.338682566599914 ], [ -64.968431130459635, 18.338675358159719 ], [ -64.96855132831854, 18.338669155548359 ], [ -64.968806639902198, 18.338678208008162 ], [ -64.968979474828643, 18.338650882990692 ], [ -64.969054410388651, 18.338673011225694 ], [ -64.969098665549041, 18.338780802552265 ], [ -64.969097827358326, 18.33888121780052 ], [ -64.969089614398911, 18.338960175366367 ], [ -64.969201930645738, 18.338989679679742 ], [ -64.969381806374258, 18.339041144589942 ], [ -64.969614655756232, 18.339028571729102 ], [ -64.969720100148834, 18.338993535357019 ], [ -64.969817834496439, 18.338994373547735 ], [ -64.969989997560674, 18.339045838457935 ], [ -64.970147409777894, 18.339097303368192 ], [ -64.970328123697129, 18.339034103787867 ], [ -64.970440441253572, 18.339070816541437 ], [ -64.97059802110897, 18.339079198448587 ], [ -64.970771358949833, 18.339008790428124 ], [ -64.970951905230947, 18.338974256970459 ], [ -64.971109485086288, 18.338989847317862 ], [ -64.97126002413961, 18.338947937781882 ], [ -64.971410227916635, 18.338949111248894 ], [ -64.971620446149188, 18.338943579190129 ], [ -64.971853295531218, 18.338945255571559 ], [ -64.972011210662856, 18.338917762915912 ], [ -64.972147835750206, 18.338925977184999 ], [ -64.972202150508906, 18.338922792060259 ], [ -64.972610517027647, 18.338925977184999 ], [ -64.97298753521352, 18.338908878094287 ], [ -64.97318685696672, 18.338860263032529 ], [ -64.973417191776605, 18.338862107052137 ], [ -64.973657920151368, 18.338878367952077 ], [ -64.973601426096877, 18.33889563468091 ], [ -64.973552308120645, 18.338933017987017 ], [ -64.973476368041418, 18.339020692736369 ], [ -64.97341652122401, 18.339078192619752 ], [ -64.973405457106537, 18.339136027779432 ] ] ] ] } } +] +} diff --git a/data/VE.geojson b/data/VE.geojson new file mode 100644 index 0000000..54ee6f7 --- /dev/null +++ b/data/VE.geojson @@ -0,0 +1,146 @@ +{ +"type": "FeatureCollection", +"name": "VE", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4269" } }, +"features": [ +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_590", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 15.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.952023717373095, 18.370674121847742 ], [ -64.952048024904002, 18.370874617067955 ], [ -64.952118600562585, 18.371143341012782 ], [ -64.95202623194524, 18.37112909177057 ], [ -64.951905532481589, 18.37111467489018 ], [ -64.951798914621975, 18.37110025800979 ], [ -64.95170654600463, 18.37109271560297 ], [ -64.951600095783192, 18.371071591887187 ], [ -64.951500686363829, 18.371057175006797 ], [ -64.951408317746484, 18.371042925764527 ], [ -64.951323157569334, 18.371021803358417 ], [ -64.951230788951989, 18.371014428589717 ], [ -64.951091315325868, 18.370989450506272 ], [ -64.951068347590422, 18.370967320961597 ], [ -64.950999617261061, 18.370915353136979 ], [ -64.950938595666969, 18.370848633155674 ], [ -64.950885286737218, 18.37078224845061 ], [ -64.950883276389163, 18.3707807397073 ], [ -64.950840359714618, 18.370687197622999 ], [ -64.950826948663064, 18.370601534531374 ], [ -64.950865171469616, 18.370525260485522 ], [ -64.950908254472608, 18.370453510050254 ], [ -64.950941948429886, 18.370377234694729 ], [ -64.950980337564829, 18.370301126977324 ], [ -64.951028114435871, 18.370229377851729 ], [ -64.951066503570871, 18.370153102496204 ], [ -64.951123669487629, 18.370086048548274 ], [ -64.951175972588544, 18.370018991980999 ], [ -64.951233135886014, 18.369956296624821 ], [ -64.951266832462636, 18.369880019959623 ], [ -64.951309915465629, 18.369808270833971 ], [ -64.951309915465629, 18.369803744604098 ], [ -64.951371772631092, 18.369745741806298 ], [ -64.951424075732007, 18.369678686548696 ], [ -64.951457772308629, 18.369602412502843 ], [ -64.951491467575579, 18.369526135837646 ], [ -64.95152985540085, 18.369449860482121 ], [ -64.951582327449614, 18.369382637586341 ], [ -64.951653404712999, 18.369333688558015 ], [ -64.951729178463779, 18.369293789370033 ], [ -64.951744433534884, 18.369289933692755 ], [ -64.951821713409572, 18.369246515413465 ], [ -64.951876195806392, 18.369173426492353 ], [ -64.951907711777437, 18.369092792545075 ], [ -64.951954482819644, 18.36901970231429 ], [ -64.952054562791602, 18.369005788348318 ], [ -64.952139556640304, 18.368976954587538 ], [ -64.952209126470052, 18.368926160229933 ], [ -64.95230920644201, 18.368926829472855 ], [ -64.952401573749682, 18.368920291585198 ], [ -64.952486567598385, 18.368891625462595 ], [ -64.952578934906001, 18.368877545168175 ], [ -64.952671135885225, 18.368892966567728 ], [ -64.952755625509781, 18.36892297379552 ], [ -64.952752440385041, 18.370046316998469 ], [ -64.952468629007285, 18.370058220616386 ], [ -64.95225438745922, 18.370141535464256 ], [ -64.952128492522775, 18.370310347075247 ], [ -64.952042660483357, 18.370466922411424 ], [ -64.952023717373095, 18.370674121847742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_948", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.894585701623953, 18.312639481944075 ], [ -64.894589724939408, 18.312638140838942 ], [ -64.894620067443441, 18.312628250188425 ], [ -64.894653762710391, 18.312549795537052 ], [ -64.894644374974348, 18.312412667535284 ], [ -64.894669353057793, 18.312331698311709 ], [ -64.894702377772148, 18.312254584765469 ], [ -64.894711430231951, 18.312233462359302 ], [ -64.894759039464816, 18.312302696912809 ], [ -64.894770606496763, 18.312385342517814 ], [ -64.894806983974036, 18.312460444406327 ], [ -64.89482693291319, 18.312543257649452 ], [ -64.894879906566644, 18.312610648183352 ], [ -64.894928689266578, 18.31268189439453 ], [ -64.894977639604633, 18.312757163921162 ], [ -64.895034636573598, 18.312820531139607 ], [ -64.895095992134259, 18.312880042680717 ], [ -64.895165561964063, 18.312931842867215 ], [ -64.895243681339139, 18.312971908383645 ], [ -64.895325824029726, 18.31300007159183 ], [ -64.895407966720256, 18.313028234800015 ], [ -64.895494300364419, 18.313052542330922 ], [ -64.895580801646759, 18.31306897086904 ], [ -64.895667135290864, 18.313081543729822 ], [ -64.895753636573204, 18.31309009327515 ], [ -64.895840305493664, 18.313090763827745 ], [ -64.895926806775947, 18.31309143438034 ], [ -64.896013475696407, 18.313084393578265 ], [ -64.896100144616867, 18.313069306145337 ], [ -64.896186645899149, 18.313062097705142 ], [ -64.89628588637072, 18.313043154594823 ], [ -64.896372556600852, 18.313028067161895 ], [ -64.896451178890402, 18.312993366066053 ], [ -64.89652561022632, 18.312950618339357 ], [ -64.896600209200415, 18.312904014935327 ], [ -64.896654523959057, 18.312837462592142 ], [ -64.896700456810493, 18.31276705457168 ], [ -64.89675862724647, 18.31270452554395 ], [ -64.896816965320568, 18.312641996516277 ], [ -64.896887373341087, 18.312591369796792 ], [ -64.896953924374543, 18.312536719761795 ], [ -64.897028523348638, 18.312490116357765 ], [ -64.89708267046916, 18.312423564014637 ], [ -64.897157269443255, 18.312380983926062 ], [ -64.897239916357876, 18.312350138507554 ], [ -64.897326585278336, 18.312331027759114 ], [ -64.897431862032761, 18.312296997215924 ], [ -64.897433035499773, 18.312299008873651 ], [ -64.897457006444711, 18.312343265343657 ], [ -64.897404537015291, 18.312378972268334 ], [ -64.897342175625738, 18.312437477980552 ], [ -64.89727579092073, 18.312492128015492 ], [ -64.897229858069238, 18.312562536036012 ], [ -64.897179734264228, 18.312633111694595 ], [ -64.897133801412735, 18.312703519715114 ], [ -64.897046125353768, 18.31282488973136 ], [ -64.896991979542918, 18.312895297751822 ], [ -64.896921403884278, 18.312945924471308 ], [ -64.896838590641153, 18.312988504559883 ], [ -64.896759968351603, 18.313023373293845 ], [ -64.896677321436982, 18.313054218712352 ], [ -64.89659467714165, 18.313081040815405 ], [ -64.89650784058307, 18.313100151563788 ], [ -64.896421170352937, 18.313111215681317 ], [ -64.89633450274215, 18.31312227979879 ], [ -64.89624783382169, 18.313137367231775 ], [ -64.896194021977465, 18.313164524611125 ], [ -64.896036609760245, 18.313163183505935 ], [ -64.895950108477962, 18.313166536268852 ], [ -64.895859416242047, 18.313165698078137 ], [ -64.895772747321587, 18.313172906518275 ], [ -64.895686078401184, 18.313176259281192 ], [ -64.895599409480724, 18.313191179076 ], [ -64.895512740560264, 18.31320241083165 ], [ -64.895434788823309, 18.31316234531522 ], [ -64.895348287541026, 18.313161674762682 ], [ -64.895261618620566, 18.31317676219561 ], [ -64.895217529788681, 18.313202075555353 ], [ -64.895192719343356, 18.313222862685222 ], [ -64.895113091224971, 18.313187323398665 ], [ -64.895035139488016, 18.313147257882292 ], [ -64.894965569658268, 18.313095625333915 ], [ -64.894891808874888, 18.313047848462872 ], [ -64.894826262360596, 18.312992192599097 ], [ -64.894781502976116, 18.312920946387862 ], [ -64.894728696960783, 18.312849532538507 ], [ -64.894671532353698, 18.312786165320119 ], [ -64.894626772969218, 18.312714919108885 ], [ -64.894585701623953, 18.312639481944075 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_543", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.957101812031169, 18.320402635444907 ], [ -64.957136513126954, 18.320479078438609 ], [ -64.95722519239547, 18.320483939944779 ], [ -64.957313874283329, 18.320484610497317 ], [ -64.957402553551788, 18.320481090096337 ], [ -64.957491235439647, 18.320473378741667 ], [ -64.957633057309465, 18.320483269392184 ], [ -64.957570528281792, 18.322751413480489 ], [ -64.956555479319832, 18.323107309260195 ], [ -64.95506601441042, 18.323425654095672 ], [ -64.953979719237282, 18.324005345487933 ], [ -64.952952097414595, 18.324771956030133 ], [ -64.952104855544462, 18.325511240245191 ], [ -64.951497502548762, 18.326281034602403 ], [ -64.950657466499479, 18.327489871949126 ], [ -64.949983227194025, 18.328100074793269 ], [ -64.94969002808017, 18.328295540869192 ], [ -64.949673599542052, 18.328269556956855 ], [ -64.94899432847285, 18.327204048913586 ], [ -64.949079153373759, 18.327166162693061 ], [ -64.949156100591495, 18.327121738584935 ], [ -64.94922114419137, 18.327066082721103 ], [ -64.949292221454755, 18.327016126554213 ], [ -64.949345699332355, 18.326949072606283 ], [ -64.949405043235345, 18.326887715735893 ], [ -64.949458687441449, 18.326815128419526 ], [ -64.949518031344383, 18.326753772858808 ], [ -64.949559773242242, 18.32668101790432 ], [ -64.949613417448347, 18.326613962646718 ], [ -64.94966102537154, 18.32654137664008 ], [ -64.949714503249197, 18.326474321382477 ], [ -64.949803016189207, 18.32645806048248 ], [ -64.949780048453817, 18.326373738496045 ], [ -64.94975138364083, 18.326294779620582 ], [ -64.949722548570435, 18.326215823364407 ], [ -64.94969975109251, 18.326131501377972 ], [ -64.94969472063849, 18.326047179391537 ], [ -64.949683656521017, 18.325962688457309 ], [ -64.949666726378155, 18.325878366470874 ], [ -64.949661529595687, 18.325794044484439 ], [ -64.949673933508677, 18.325709891445797 ], [ -64.949651136030752, 18.325625400511569 ], [ -64.94965180658329, 18.325541078525134 ], [ -64.949611404480947, 18.325462122268959 ], [ -64.94956497002471, 18.325388695452261 ], [ -64.94954736801958, 18.325371765309342 ], [ -64.949506129036195, 18.325301523617384 ], [ -64.9495099834038, 18.325207144651984 ], [ -64.949533117467695, 18.325125169599517 ], [ -64.949575194641852, 18.325052414645029 ], [ -64.949636216235945, 18.324991897275083 ], [ -64.949719363445695, 18.324965241500479 ], [ -64.94980402070837, 18.324947808443198 ], [ -64.949886667623048, 18.324920314477879 ], [ -64.949975011615265, 18.324892989460409 ], [ -64.950051957523385, 18.324854266358841 ], [ -64.950134604438063, 18.324809842250659 ], [ -64.950217248733338, 18.324776817536303 ], [ -64.95029402831301, 18.324738093125063 ], [ -64.950370974221073, 18.324699367404094 ], [ -64.950447752491016, 18.324660644302526 ], [ -64.950536096483233, 18.324644383402529 ], [ -64.950618743397911, 18.324611357378501 ], [ -64.950707087390128, 18.324595096478561 ], [ -64.950789734304806, 18.324562073073821 ], [ -64.950860811568191, 18.324512115597258 ], [ -64.950943458482811, 18.324478924554398 ], [ -64.951026102778144, 18.324451599536928 ], [ -64.951085446681134, 18.324390243976268 ], [ -64.951173625654576, 18.324390914528806 ], [ -64.951261803318289, 18.324397117140165 ], [ -64.951350148620179, 18.324397786383031 ], [ -64.951438492612397, 18.324381694430883 ], [ -64.951509572495127, 18.324331738263993 ], [ -64.951580483430064, 18.324281614458926 ], [ -64.951657260390334, 18.324242890047685 ], [ -64.951734207608069, 18.324204165636388 ], [ -64.951752478856122, 18.32412001128813 ], [ -64.95177075141379, 18.324041556636701 ], [ -64.951771086690087, 18.324013393428515 ], [ -64.951760022572614, 18.32392907144208 ], [ -64.951784331413137, 18.323844917093822 ], [ -64.951808469996195, 18.323760761435835 ], [ -64.951809140548789, 18.32367660839725 ], [ -64.951815847384239, 18.323592286410815 ], [ -64.951822383962167, 18.3235081320625 ], [ -64.951840825467684, 18.32342397640457 ], [ -64.951853229380674, 18.323339823365927 ], [ -64.951859264353857, 18.323317359854627 ], [ -64.951883405556259, 18.323261367404882 ], [ -64.951913411474322, 18.323182914063182 ], [ -64.951949286037177, 18.323104459411752 ], [ -64.951991195573157, 18.323031872095441 ], [ -64.952032937471017, 18.322959117140897 ], [ -64.952080715651732, 18.322886362186409 ], [ -64.952157492612002, 18.322847637775169 ], [ -64.952222703850055, 18.322791981911337 ], [ -64.952282047752988, 18.322730626350619 ], [ -64.952335525630588, 18.322663571093074 ], [ -64.952377267528448, 18.322590816138529 ], [ -64.952454044488775, 18.322552091727289 ], [ -64.95251925572677, 18.322496435863457 ], [ -64.952572564656577, 18.322468775569689 ], [ -64.9525903356095, 18.322443629848124 ], [ -64.95263207750736, 18.322370874893636 ], [ -64.952668118398663, 18.322292587880384 ], [ -64.952744896668605, 18.322253863469086 ], [ -64.952821674938548, 18.322214971419726 ], [ -64.95288705381472, 18.322153783497129 ], [ -64.952981266451616, 18.322131990538423 ], [ -64.953063409142203, 18.322160656661026 ], [ -64.953109844908056, 18.322234082168109 ], [ -64.953185952625461, 18.322279679743303 ], [ -64.953274131598846, 18.322286049992783 ], [ -64.953362643229241, 18.322264257034021 ], [ -64.953450988531131, 18.322236764378431 ], [ -64.953539501471141, 18.322214971419726 ], [ -64.953627846773031, 18.322204410216614 ], [ -64.953716024436801, 18.322205080769209 ], [ -64.953804202100514, 18.322222682774338 ], [ -64.953898247099289, 18.322229053023818 ], [ -64.953980892704294, 18.322190328612521 ], [ -64.954046103942289, 18.322134672748746 ], [ -64.954134616882357, 18.322112879789984 ], [ -64.954217430125482, 18.322051691867443 ], [ -64.954282641363477, 18.321995868365491 ], [ -64.954365286968482, 18.321962843651136 ], [ -64.954453632270372, 18.32195228244808 ], [ -64.954530578178492, 18.321902326281133 ], [ -64.954607356448435, 18.321857902173008 ], [ -64.954684134718377, 18.321819177761711 ], [ -64.954772815296565, 18.321774921291706 ], [ -64.954849761204628, 18.321724965124815 ], [ -64.954926539474627, 18.321686240713518 ], [ -64.954997618047685, 18.321630584849743 ], [ -64.955074396317627, 18.321586328379681 ], [ -64.955139607555623, 18.321530504877728 ], [ -64.95521068612868, 18.321480548710838 ], [ -64.955264162696608, 18.321413493453235 ], [ -64.955352507998498, 18.32140293225018 ], [ -64.955394249896358, 18.321330177295692 ], [ -64.955424424762271, 18.32125189028244 ], [ -64.955472033995193, 18.321179135327952 ], [ -64.955477901330198, 18.321179135327952 ], [ -64.95554311256825, 18.321129179161005 ], [ -64.955608323806246, 18.321073355659053 ], [ -64.955644198369043, 18.3209950686458 ], [ -64.955721144277163, 18.320950644537675 ], [ -64.955762886175023, 18.32087788958313 ], [ -64.955810495407889, 18.32080530226682 ], [ -64.955869839310878, 18.320743946706102 ], [ -64.955940917883936, 18.320693990539212 ], [ -64.955994394451864, 18.320626935281609 ], [ -64.956053905993031, 18.320559880024007 ], [ -64.956089780555828, 18.320481593010754 ], [ -64.956131522453688, 18.320408838056267 ], [ -64.956155829984539, 18.320324683707952 ], [ -64.956209306552466, 18.320257628450349 ], [ -64.956262783120451, 18.320201972586574 ], [ -64.956350122593449, 18.320185208772159 ], [ -64.956434444579884, 18.320164590590139 ], [ -64.956523292796192, 18.320156877925797 ], [ -64.956611973374379, 18.320153357524816 ], [ -64.956705012544319, 18.320141287578394 ], [ -64.956793693122449, 18.320141958130989 ], [ -64.956886732292389, 18.320146988585009 ], [ -64.956975245232456, 18.320160399636507 ], [ -64.957063758172467, 18.320173809378332 ], [ -64.95712092146988, 18.320237679511195 ], [ -64.957124609509037, 18.320322336773927 ], [ -64.957101812031169, 18.320402635444907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_89", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.880196819429329, 18.353791454622979 ], [ -64.879923233978332, 18.353324248425338 ], [ -64.879998837471589, 18.353188461528703 ], [ -64.880012920385354, 18.353054014427528 ], [ -64.879952403015409, 18.352955778475177 ], [ -64.879789794015721, 18.35293616481232 ], [ -64.879569852770771, 18.352996011629727 ], [ -64.879288219379191, 18.3524062606391 ], [ -64.879372877951596, 18.352382792608637 ], [ -64.879408081961799, 18.352336021566487 ], [ -64.879513526354401, 18.352290087405322 ], [ -64.879622155871687, 18.352246670435704 ], [ -64.879749728499291, 18.352236610837394 ], [ -64.879846288070212, 18.352226384910637 ], [ -64.879950391357681, 18.35225672741467 ], [ -64.880042592336849, 18.352316406593957 ], [ -64.880119035330551, 18.352398215317862 ], [ -64.88018407893037, 18.352476165745145 ], [ -64.880268400916805, 18.35255428642995 ], [ -64.88039932630727, 18.352599716366967 ], [ -64.880564951483905, 18.352652688710805 ], [ -64.880707611544437, 18.352683366491135 ], [ -64.880835016533865, 18.352691748398342 ], [ -64.880927720427508, 18.352699796338925 ], [ -64.88099662101439, 18.352766851596527 ], [ -64.88104657718128, 18.352800377915685 ], [ -64.881165263677531, 18.352908336880375 ], [ -64.881226285271623, 18.35300841685239 ], [ -64.881268193497988, 18.353075136833695 ], [ -64.881255620637148, 18.353174713891235 ], [ -64.88122796165311, 18.353255684424425 ], [ -64.881177167295448, 18.353317876866186 ], [ -64.881114804596223, 18.353383758656776 ], [ -64.881048587529335, 18.353434889600351 ], [ -64.880959405346402, 18.353485851596133 ], [ -64.880866198538342, 18.3535294375136 ], [ -64.88079260539314, 18.353550893886336 ], [ -64.880653298095467, 18.353579224732698 ], [ -64.880594960021369, 18.353619457887248 ], [ -64.880529078230722, 18.35365583536452 ], [ -64.880459339453182, 18.353669916968613 ], [ -64.880347023206355, 18.353709648518418 ], [ -64.880238226050892, 18.353767817644666 ], [ -64.880196819429329, 18.353791454622979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_923", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.861759308418982, 18.317619171701949 ], [ -64.861758637866444, 18.317702990773967 ], [ -64.861751094149952, 18.317786809845927 ], [ -64.861641961718192, 18.317908347500349 ], [ -64.861587311683252, 18.317978755520812 ], [ -64.861539534812209, 18.318049332489124 ], [ -64.861505001354544, 18.318126444725692 ], [ -64.861437107906227, 18.318183778280627 ], [ -64.861382457871287, 18.318254352629538 ], [ -64.861257399815884, 18.31831671532882 ], [ -64.861210628773676, 18.318346722556555 ], [ -64.861131838846006, 18.31838226053344 ], [ -64.861058748615221, 18.31842886393747 ], [ -64.860979791049374, 18.318467085434293 ], [ -64.860903850970146, 18.318508156779558 ], [ -64.860827910890919, 18.318554592545468 ], [ -64.860749120963249, 18.318592815351963 ], [ -64.860667481187136, 18.318625503480348 ], [ -64.860580141714081, 18.318638746893726 ], [ -64.860492969879203, 18.318635226492745 ], [ -64.860408983169066, 18.318598513739175 ], [ -64.860321978972308, 18.31857822952378 ], [ -64.860234639499311, 18.318585940878393 ], [ -64.860147300026313, 18.318590802384563 ], [ -64.860060128191435, 18.318587281983525 ], [ -64.859973123994678, 18.318580911734045 ], [ -64.859883102311358, 18.318557946618 ], [ -64.859804982936225, 18.318521232554815 ], [ -64.859729713409592, 18.318478987742537 ], [ -64.859657629007643, 18.31842567881273 ], [ -64.859591244302635, 18.318372369882923 ], [ -64.859524859597627, 18.318319060953115 ], [ -64.85945847489262, 18.318265753333037 ], [ -64.859377338030868, 18.318236415348167 ], [ -64.85937197361028, 18.318229206907972 ], [ -64.85934448095469, 18.318192495464075 ], [ -64.85927759464488, 18.318133988442185 ], [ -64.859189750947735, 18.31814605838855 ], [ -64.859108949362337, 18.318113202621987 ], [ -64.859048768578305, 18.31804815771244 ], [ -64.859275750625329, 18.317328488469911 ], [ -64.85984119277532, 18.317305688372642 ], [ -64.860247547636391, 18.317201417447109 ], [ -64.860758843975589, 18.317126652144566 ], [ -64.861185315413934, 18.317028919106576 ], [ -64.861565015810072, 18.316881397539873 ], [ -64.86185134176003, 18.316612673595046 ], [ -64.862359955888962, 18.316164912112413 ], [ -64.862774022104645, 18.315716480077242 ], [ -64.862934116532131, 18.315446750303522 ], [ -64.863062862626748, 18.315146678025769 ], [ -64.863159925112086, 18.314876276389839 ], [ -64.863132263508703, 18.314550053871244 ], [ -64.86298055229804, 18.314214609945111 ], [ -64.862788606623155, 18.314090222442246 ], [ -64.86222064859129, 18.313913196562225 ], [ -64.861922420333087, 18.313869945921056 ], [ -64.861419170624799, 18.313833233167543 ], [ -64.860908880114494, 18.313807416893326 ], [ -64.860541752579138, 18.313718401038898 ], [ -64.860303203500223, 18.31351555888466 ], [ -64.860177977806643, 18.3132491818738 ], [ -64.860158531781963, 18.312904853126042 ], [ -64.86020563810041, 18.312675691783227 ], [ -64.860516103943098, 18.312398585931192 ], [ -64.860960847939111, 18.312201443473839 ], [ -64.861186991795364, 18.312102872245134 ], [ -64.861436604991809, 18.311904221044529 ], [ -64.861724272046899, 18.311641196796586 ], [ -64.861929796411459, 18.311320169750786 ], [ -64.862029205830822, 18.310861008874383 ], [ -64.861938681233084, 18.31040838588558 ], [ -64.861784454140604, 18.310015609714185 ], [ -64.861598543438902, 18.309652674442134 ], [ -64.861474826488632, 18.309380596424717 ], [ -64.861351612452779, 18.309048171294876 ], [ -64.861134185780031, 18.308684899436798 ], [ -64.860944084124696, 18.30822825313254 ], [ -64.860794047985848, 18.307929185374007 ], [ -64.860734871721036, 18.30750690619891 ], [ -64.860738392122016, 18.307115471132704 ], [ -64.860773428494156, 18.306724202394889 ], [ -64.860776613618839, 18.306362775866091 ], [ -64.860810811800263, 18.306061865397623 ], [ -64.860845680534169, 18.30570060519733 ], [ -64.861006780790603, 18.30531034359808 ], [ -64.861187159433541, 18.305010103682207 ], [ -64.861448004385579, 18.304789994799137 ], [ -64.861719745817027, 18.304612968919059 ], [ -64.862051166427705, 18.304508027440932 ], [ -64.8624570183743, 18.304461256398724 ], [ -64.862893045186865, 18.304483719910024 ], [ -64.862892877548745, 18.304505345230609 ], [ -64.862892039357973, 18.304591343598474 ], [ -64.862891367495763, 18.30467734196634 ], [ -64.862882986898228, 18.3047705487744 ], [ -64.862874604991021, 18.304856547142265 ], [ -64.862866389412318, 18.30494254551013 ], [ -64.862850631426738, 18.305028376239875 ], [ -64.862849794545696, 18.305114542245917 ], [ -64.862841412638488, 18.305214789855995 ], [ -64.862833198369458, 18.30530078822386 ], [ -64.862824816462251, 18.305386786591725 ], [ -64.862809058476728, 18.305472784959647 ], [ -64.862778379386668, 18.305551407249141 ], [ -64.862769997479518, 18.305637405617006 ], [ -64.862746697087175, 18.305723236346751 ], [ -64.86272339538516, 18.305809067076495 ], [ -64.862700261321265, 18.30589489780624 ], [ -64.862669415902758, 18.305973687733911 ], [ -64.862653657917235, 18.306059518463599 ], [ -64.862615436420413, 18.306138140753148 ], [ -64.862584591001905, 18.306216763042698 ], [ -64.862546369505083, 18.306295385332248 ], [ -64.862515690415023, 18.306374007621741 ], [ -64.862477470227873, 18.306452462273171 ], [ -64.862446624809365, 18.306531252200841 ], [ -64.86238610743942, 18.306595289971824 ], [ -64.862325422431297, 18.306659326433191 ], [ -64.862257361344803, 18.306716157073652 ], [ -64.862188964982067, 18.306833000860024 ], [ -64.862204890605767, 18.306868037232164 ], [ -64.862269766567465, 18.306887986171262 ], [ -64.862309999722015, 18.306919334504187 ], [ -64.862305641130263, 18.306954203238149 ], [ -64.862301450176687, 18.306965770270097 ], [ -64.862276304455065, 18.30704707346024 ], [ -64.862255348377403, 18.307128379269784 ], [ -64.862287200934475, 18.307206163368562 ], [ -64.86232039328695, 18.307223262459274 ], [ -64.862325087155, 18.307251928581877 ], [ -64.862329947351498, 18.307280593394864 ], [ -64.86233481016734, 18.307309093189019 ], [ -64.862339839311687, 18.307337590363829 ], [ -64.862345203732275, 18.307366090157984 ], [ -64.862350568152863, 18.307394588642467 ], [ -64.862356100211628, 18.307423087126892 ], [ -64.862361632270392, 18.307451417973255 ], [ -64.862367499605398, 18.307479916457737 ], [ -64.86237353457858, 18.307508247304099 ], [ -64.86237956955182, 18.307536578150405 ], [ -64.862385772163123, 18.307564908996767 ], [ -64.862392142412602, 18.3075932385334 ], [ -64.862398680300203, 18.307621569379762 ], [ -64.86240538582598, 18.307649732587947 ], [ -64.862412258989878, 18.307677897105805 ], [ -64.862419132153775, 18.30770606031399 ], [ -64.86242634059397, 18.307734223522175 ], [ -64.862433549034165, 18.307762385420688 ], [ -64.86244092511248, 18.307790382300425 ], [ -64.862448468828973, 18.307818376560817 ], [ -64.862456180183585, 18.307846373440498 ], [ -64.862463891538198, 18.307874369010563 ], [ -64.862471938169108, 18.307902364580627 ], [ -64.862479984800075, 18.307930192512515 ], [ -64.862488199069105, 18.307958020444403 ], [ -64.862496748614433, 18.307985848376347 ], [ -64.86250513052164, 18.308013676308235 ], [ -64.862513846395473, 18.308041336602003 ], [ -64.86252273252677, 18.30806916453389 ], [ -64.862531617348395, 18.308096823517985 ], [ -64.862540669808197, 18.308124317483248 ], [ -64.86254988990612, 18.308151976467343 ], [ -64.862559277642163, 18.308179470432663 ], [ -64.862568833016383, 18.308206963088253 ], [ -64.862578556028723, 18.308234288105723 ], [ -64.862588279041063, 18.308261779451698 ], [ -64.862598168381908, 18.308289104469168 ], [ -64.862608395618338, 18.308316429486638 ], [ -64.862618453906975, 18.308343588175603 ], [ -64.86262884747191, 18.308370913193073 ], [ -64.862639407365293, 18.308398070572423 ], [ -64.862649969878078, 18.308425060313596 ], [ -64.862660697409581, 18.308452216383273 ], [ -64.862671595198663, 18.308479207434118 ], [ -64.862682659316135, 18.30850602953717 ], [ -64.862693891071785, 18.308533019278343 ], [ -64.862705122827435, 18.308559841381395 ], [ -64.862716689859383, 18.308586663484448 ], [ -64.86272825689133, 18.308613485587443 ], [ -64.862739991561398, 18.308640138742703 ], [ -64.862751893869643, 18.308666794517251 ], [ -64.86276379617783, 18.308693281344006 ], [ -64.862775866124196, 18.308719768170761 ], [ -64.862788271346858, 18.308746253687843 ], [ -64.86280067656952, 18.308772740514598 ], [ -64.86281308048251, 18.308799059703176 ], [ -64.862825822291143, 18.308825380201483 ], [ -64.862838561480373, 18.308851530442269 ], [ -64.862851638565303, 18.308877683302399 ], [ -64.862864545392711, 18.308903833543184 ], [ -64.86287779011576, 18.308929986403314 ], [ -64.862891201167258, 18.308955970315651 ], [ -64.862904612218813, 18.308981786589811 ], [ -64.862918190908488, 18.309007770502149 ], [ -64.862931937236283, 18.309033585466636 ], [ -64.862945851202198, 18.309059235412349 ], [ -64.862959765168171, 18.309084882738716 ], [ -64.86297401441044, 18.309110531374756 ], [ -64.862988263652653, 18.309136012372619 ], [ -64.863002512894923, 18.309161493370539 ], [ -64.863017097413433, 18.309186974368401 ], [ -64.863031681931943, 18.309212287728144 ], [ -64.863046434088631, 18.309237602397559 ], [ -64.863061353883438, 18.309262746809509 ], [ -64.863076441316423, 18.309287892531074 ], [ -64.863091527439678, 18.309313039562369 ], [ -64.863106782510783, 18.309338017645814 ], [ -64.863122206529738, 18.309362826781467 ], [ -64.863137796877083, 18.309387804864912 ], [ -64.863153554862663, 18.309412447672116 ], [ -64.863169311538513, 18.309437259427057 ], [ -64.863185238471829, 18.309461902234261 ], [ -64.863201164095528, 18.309486377403289 ], [ -64.863217424995526, 18.309510852572316 ], [ -64.863233685895466, 18.309535326431671 ], [ -64.863250114433583, 18.309559635272194 ], [ -64.863266542971701, 18.309583941493429 ], [ -64.863283305476443, 18.309608081386159 ], [ -64.863300070600474, 18.309632053640712 ], [ -64.863317002053066, 18.309656193533442 ], [ -64.863333933505601, 18.309680165788052 ], [ -64.863351200234433, 18.309703970404485 ], [ -64.863368466963266, 18.309727776330647 ], [ -64.863385901330219, 18.309751413308959 ], [ -64.863403334387499, 18.309775050287215 ], [ -64.863420936392629, 18.309798519627407 ], [ -64.863438707345608, 18.30982198765787 ], [ -64.863456644626979, 18.309845458307734 ], [ -64.863474581908406, 18.309868758700077 ], [ -64.863492685518281, 18.309891892763915 ], [ -64.863510959385621, 18.309915026827809 ], [ -64.863529231943346, 18.309938160891704 ], [ -64.863547672139191, 18.309960959679245 ], [ -64.863566279973156, 18.309983927414692 ], [ -64.863585055445299, 18.31000672489256 ], [ -64.863603829607769, 18.310029357351709 ], [ -64.863622774027704, 18.310051988501129 ], [ -64.863641717137966, 18.310074450702757 ], [ -64.863660995524526, 18.310096915523729 ], [ -64.863680272601414, 18.310119211396852 ], [ -64.863699552297646, 18.31014150596036 ], [ -64.863719165960504, 18.310163635505035 ], [ -64.863738779623361, 18.310185762430365 ], [ -64.863758393286219, 18.310207724336919 ], [ -64.863778174587196, 18.310229515985952 ], [ -64.863798123526294, 18.310251308944657 ], [ -64.863818240103626, 18.310273101903363 ], [ -64.863838355371229, 18.31029472853362 ], [ -64.863858639586624, 18.310316184906412 ], [ -64.863879091440197, 18.31033764258882 ], [ -64.863899544603441, 18.310358932633108 ], [ -64.863920164095134, 18.310380222677395 ], [ -64.863940951225004, 18.310401346393235 ], [ -64.863961738354874, 18.310422299851552 ], [ -64.863982693122864, 18.310443254619543 ], [ -64.864003646581182, 18.310464041749412 ], [ -64.864024770297021, 18.310484828879282 ], [ -64.864046060341309, 18.310505448370975 ], [ -64.864067350385596, 18.310526067862668 ], [ -64.864088808068004, 18.31054651971624 ], [ -64.864110433388589, 18.310566803931692 ], [ -64.864132057399502, 18.31058708945676 ], [ -64.864153850358207, 18.310607204724363 ], [ -64.864175644626584, 18.310627153663518 ], [ -64.864197605223467, 18.310647102602672 ], [ -64.864219733458469, 18.31066705154177 ], [ -64.8642418603838, 18.3106866665143 ], [ -64.864264157566652, 18.310706278867485 ], [ -64.864286453439775, 18.310725892530343 ], [ -64.864308915641402, 18.310745338555023 ], [ -64.864331548100552, 18.310764616941583 ], [ -64.864354179249972, 18.310783896637815 ], [ -64.864376976727897, 18.310803006076583 ], [ -64.864399775515437, 18.310821950496518 ], [ -64.864422743250884, 18.31084089360678 ], [ -64.864445877314722, 18.31085966776925 ], [ -64.864469011378617, 18.310878275603216 ], [ -64.864492145442455, 18.310896883437238 ], [ -64.864515613472975, 18.310915323633083 ], [ -64.864538916484662, 18.310933763828871 ], [ -64.864562553462974, 18.310952036386595 ], [ -64.864586021493437, 18.310970142615815 ], [ -64.864609827419542, 18.31098807858757 ], [ -64.86463363072636, 18.311006015868941 ], [ -64.864657436652465, 18.311023785512248 ], [ -64.864681407597402, 18.31104155646517 ], [ -64.864705547490132, 18.3110591584703 ], [ -64.864729687382862, 18.311076591527581 ], [ -64.864753996223385, 18.311094025894533 ], [ -64.86477830244462, 18.311111124985246 ], [ -64.864802777613647, 18.311128391714078 ], [ -64.864827252782675, 18.311145323166613 ], [ -64.864851895589823, 18.311162254619148 ], [ -64.864876538397027, 18.311179018433563 ], [ -64.864901350151968, 18.31119578355765 ], [ -64.864926160597292, 18.311212210786096 ], [ -64.864951137371065, 18.311228806962333 ], [ -64.86497611545451, 18.31124506786233 ], [ -64.865001262485805, 18.311261328762271 ], [ -64.865026408207427, 18.311277422024091 ], [ -64.86505172156717, 18.311293347647791 ], [ -64.86507703361724, 18.311309274581106 ], [ -64.865102348286655, 18.311324863618836 ], [ -64.865127995613022, 18.311340621604359 ], [ -64.865153476610885, 18.311356045623313 ], [ -64.865179126556598, 18.311371467022866 ], [ -64.865204941521085, 18.311386722093971 ], [ -64.865230757795246, 18.311401809526956 ], [ -64.865256575379135, 18.311416896959884 ], [ -64.865282559291416, 18.311431816754691 ], [ -64.865308709532258, 18.311446568911379 ], [ -64.865334862392388, 18.311461321068066 ], [ -64.865361012633173, 18.311475737948456 ], [ -64.865387331821751, 18.311490154828846 ], [ -64.865413652320058, 18.311504571709236 ], [ -64.865439971508636, 18.311518654623001 ], [ -64.865450531402075, 18.311523179543201 ], [ -64.865460926276683, 18.311527873411251 ], [ -64.865471318531888, 18.311532568588916 ], [ -64.865481544458703, 18.311537428785414 ], [ -64.865491770385461, 18.311542457929761 ], [ -64.865501828674098, 18.311547487074051 ], [ -64.865511888272408, 18.311552851494696 ], [ -64.865521946561046, 18.311558215915284 ], [ -64.865531835901891, 18.311563581645601 ], [ -64.865541726552408, 18.311569280032813 ], [ -64.865551449564748, 18.311574979729698 ], [ -64.865561172577088, 18.311580847064761 ], [ -64.86557072926098, 18.311586882037943 ], [ -64.8655802846352, 18.311592917011126 ], [ -64.865589838699691, 18.311599119622429 ], [ -64.865599058797613, 18.311605489871909 ], [ -64.865608446533713, 18.311611860121388 ], [ -64.865617666631636, 18.311618398008989 ], [ -64.865626720401053, 18.311625103534766 ], [ -64.865635771551183, 18.311631809060486 ], [ -64.865644656372808, 18.311638682224441 ], [ -64.865653542504106, 18.311645723026459 ], [ -64.865662258377938, 18.311652763828533 ], [ -64.865670807923266, 18.311659973578401 ], [ -64.865679357468593, 18.311667348347044 ], [ -64.86568790832365, 18.311674724425359 ], [ -64.865696122592681, 18.311682268141851 ], [ -64.865704335552095, 18.311689979496464 ], [ -64.865712549821126, 18.311697690851076 ], [ -64.865720596452036, 18.311705402205746 ], [ -64.865728475444826, 18.311713448836656 ], [ -64.865736354437558, 18.311721327829389 ], [ -64.865744065792171, 18.311729542098476 ], [ -64.865751609508663, 18.311737756367506 ], [ -64.865759154534828, 18.311745970636593 ], [ -64.865766530613143, 18.311754352543801 ], [ -64.865773737743666, 18.311762902089129 ], [ -64.865780947493533, 18.311771451634456 ], [ -64.865787988295608, 18.311780168817961 ], [ -64.865794861459506, 18.311788886001466 ], [ -64.865801565675611, 18.311797603184914 ], [ -64.865808272511003, 18.311806655644716 ], [ -64.86581481039866, 18.311815540466341 ], [ -64.865821348286261, 18.311824592926087 ], [ -64.865827549587891, 18.311833813024009 ], [ -64.865833753508923, 18.311843033121932 ], [ -64.865839788482106, 18.311852253219854 ], [ -64.865845823455288, 18.311861640955954 ], [ -64.865851689480621, 18.311871197639789 ], [ -64.865857221539386, 18.311880584066216 ], [ -64.865862922545944, 18.311890139440436 ], [ -64.865868285656916, 18.311899862452776 ], [ -64.865873651387176, 18.311909585465116 ], [ -64.865878680531523, 18.311919308477457 ], [ -64.865883708366141, 18.311929199127974 ], [ -64.865888737510488, 18.311939089778434 ], [ -64.865893431378481, 18.311949148067129 ], [ -64.865898126556203, 18.311959038717589 ], [ -64.865902483838283, 18.311969264644404 ], [ -64.865906842430036, 18.311979322933041 ], [ -64.865911202331461, 18.311989548859799 ], [ -64.865915225646916, 18.311999774786614 ], [ -64.865919247652698, 18.312010000713371 ], [ -64.865922935691856, 18.312020394278306 ], [ -64.865926623731013, 18.312030787843241 ], [ -64.865930145441723, 18.312041181408176 ], [ -64.865933496894911, 18.312051574973111 ], [ -64.865936849657771, 18.312062136176166 ], [ -64.865939868454063, 18.312072697379222 ], [ -64.865942884631011, 18.312083258582277 ], [ -64.865945734479453, 18.312093819785389 ], [ -64.865948416689719, 18.312104548626564 ], [ -64.865950932571593, 18.312115277467797 ], [ -64.865953279505561, 18.312126006309029 ], [ -64.865955626439586, 18.312136735150261 ], [ -64.865957636787641, 18.312147463991437 ], [ -64.865959648445369, 18.312158192832669 ], [ -64.865961492464976, 18.312169089312022 ], [ -64.865963168846406, 18.312179818153254 ], [ -64.865964677589716, 18.312190714632607 ], [ -64.865966018694849, 18.312201611111959 ], [ -64.865967193471533, 18.312212507591312 ], [ -64.865968199300426, 18.312223404070664 ], [ -64.865969203819589, 18.312234300550074 ], [ -64.865970043319976, 18.312245364667547 ], [ -64.865970712562898, 18.312256261146899 ], [ -64.865971047839196, 18.312267157626252 ], [ -64.865971384425109, 18.312278054105604 ], [ -64.865971718391734, 18.312289118223134 ], [ -64.865971718391734, 18.312300014702487 ], [ -64.865971550753613, 18.312310911181839 ], [ -64.865971384425109, 18.312321975299369 ], [ -64.865971047839196, 18.312332871778722 ], [ -64.865970378596273, 18.312343768258074 ], [ -64.865969706734006, 18.312354832375604 ], [ -64.865968868543291, 18.312365728854957 ], [ -64.865967862714456, 18.312376625334309 ], [ -64.865966856885564, 18.312387521813662 ], [ -64.865965515780431, 18.312398418293014 ], [ -64.865964008346793, 18.312409314772367 ], [ -64.865962499603484, 18.312420043613599 ], [ -64.865960821912381, 18.312430940092952 ], [ -64.865958977892831, 18.312441668934184 ], [ -64.865956967544776, 18.312452565413537 ], [ -64.865954786939199, 18.312463294254769 ], [ -64.865952441314846, 18.312474023095945 ], [ -64.865950094380821, 18.312484751937177 ], [ -64.865947410860883, 18.312495480778409 ], [ -64.865944728650561, 18.312506041981464 ], [ -64.865941878802118, 18.31251660318452 ], [ -64.865938862625228, 18.312527164387632 ], [ -64.865935677500488, 18.312537725590687 ], [ -64.865932323427899, 18.312548286793742 ], [ -64.865928970665038, 18.312558680358677 ], [ -64.865925451573673, 18.312569073923612 ], [ -64.865921594586723, 18.312579467488547 ], [ -64.865917738909388, 18.312589861053482 ], [ -64.865913884541726, 18.31260008698024 ], [ -64.865909693588151, 18.312610312907054 ], [ -64.865905333686726, 18.312620371195692 ], [ -64.865900976404646, 18.31263059712245 ], [ -64.865896448865101, 18.312640655411087 ], [ -64.865891756306723, 18.312650546061604 ], [ -64.865886893490881, 18.312660604350242 ], [ -64.865882033294383, 18.312670495000759 ], [ -64.865877002840364, 18.312680218013099 ], [ -64.865871807367625, 18.31269010866356 ], [ -64.865866441637309, 18.31269966403778 ], [ -64.865860909578544, 18.31270938705012 ], [ -64.865855377519836, 18.31271894242434 ], [ -64.865849511494446, 18.312728330160439 ], [ -64.865843810487888, 18.312737885534602 ], [ -64.865837775514706, 18.312747105632525 ], [ -64.865831572903346, 18.312756493368624 ], [ -64.865825371601716, 18.312765713466547 ], [ -64.865819001352236, 18.312774765926292 ], [ -64.865812629793083, 18.312783818386094 ], [ -64.865805925577035, 18.31279270320772 ], [ -64.865799218741586, 18.312801588029345 ], [ -64.865792345577688, 18.31281047285097 ], [ -64.865785472413791, 18.312819190034475 ], [ -64.865778431611716, 18.312827739579802 ], [ -64.865771224481193, 18.31283628912513 ], [ -64.865763848402878, 18.312844671032337 ], [ -64.865756472324506, 18.312853052939545 ], [ -64.86574892860807, 18.312861434846752 ], [ -64.865741383581906, 18.312869481477662 ], [ -64.865733504589116, 18.312877695746693 ], [ -64.865725794544176, 18.312885574739482 ], [ -64.865717746603593, 18.312893453732272 ], [ -64.865709701282356, 18.312901332725005 ], [ -64.865701485703596, 18.312909044079674 ], [ -64.865693271434566, 18.31291658779611 ], [ -64.865684889527358, 18.312923963874482 ], [ -64.865676341291703, 18.312931339952797 ], [ -64.865667790436703, 18.312938716031113 ], [ -64.865659074562871, 18.312945924471308 ], [ -64.865650357379366, 18.312952965273382 ], [ -64.865641472557741, 18.31295983843728 ], [ -64.865632586426443, 18.312966711601177 ], [ -64.865623535276313, 18.312973417126955 ], [ -64.865614313868718, 18.312980122652675 ], [ -64.865605093770796, 18.312986660540332 ], [ -64.86559587367293, 18.312993030789812 ], [ -64.865586487246503, 18.312999233401115 ], [ -64.865576930562611, 18.313005436012475 ], [ -64.86556737649812, 18.313011470985657 ], [ -64.865557819814228, 18.313017338320662 ], [ -64.865548096801888, 18.313023205655725 ], [ -64.865538207461043, 18.31302890535261 ], [ -64.865528315500853, 18.313034437411375 ], [ -64.865518424850393, 18.313039969470083 ], [ -64.865508366561755, 18.313045333890727 ], [ -64.86549830958279, 18.313050530673195 ], [ -64.865488082346303, 18.313055559817485 ], [ -64.865477856419545, 18.313060421323655 ], [ -64.865467630492731, 18.313065282829882 ], [ -64.865457238237468, 18.313069976697875 ], [ -64.865446843362861, 18.313074670565925 ], [ -64.865436283469478, 18.313079029157677 ], [ -64.865425722266423, 18.31308338774943 ], [ -64.865415159753695, 18.313087578703005 ], [ -64.865404598550583, 18.31309160201846 ], [ -64.865393869709408, 18.313095457695795 ], [ -64.865383140868175, 18.313099313373073 ], [ -64.865372244388823, 18.31310300141223 ], [ -64.865361349219143, 18.313106521813268 ], [ -64.865350451430061, 18.313109874576185 ], [ -64.865339556260381, 18.313113227339045 ], [ -64.865328490833235, 18.313116244825608 ], [ -64.865317594353883, 18.313119262312227 ], [ -64.865306362598233, 18.31312211216067 ], [ -64.865295298480703, 18.313124794370992 ], [ -64.86528423436323, 18.313127476581258 ], [ -64.86527300260758, 18.313129823515283 ], [ -64.86526177085193, 18.313132170449308 ], [ -64.865250540405953, 18.313134349745155 ], [ -64.865239308650303, 18.313136361402883 ], [ -64.865227909256475, 18.31313820542249 ], [ -64.865216677500825, 18.313140049442097 ], [ -64.865205276797383, 18.31314155818535 ], [ -64.865193877403613, 18.31314306692866 ], [ -64.865182645647963, 18.31314440803385 ], [ -64.865171247563808, 18.313145581500805 ], [ -64.86515968053186, 18.313146754967818 ], [ -64.865148279828418, 18.313147593158533 ], [ -64.865136880434648, 18.313148431349305 ], [ -64.865125482350493, 18.313148934263722 ], [ -64.865113915318602, 18.31314943717814 ], [ -64.865102514615103, 18.313149772454437 ], [ -64.865091116531005, 18.313150107730735 ], [ -64.865079549499058, 18.313150107730735 ], [ -64.865068148795615, 18.313150107730735 ], [ -64.865056581763668, 18.313149772454437 ], [ -64.86504518236984, 18.31314943717814 ], [ -64.865033784285743, 18.313148934263722 ], [ -64.865022217253795, 18.313148431349305 ], [ -64.865010816550353, 18.313147593158533 ], [ -64.864999418466198, 18.313146587329697 ], [ -64.864988017762755, 18.313145581500805 ], [ -64.864976618368985, 18.31314440803385 ], [ -64.86496522028483, 18.31314306692866 ], [ -64.864953819581388, 18.31314155818535 ], [ -64.86494242149729, 18.313140049442097 ], [ -64.864931188431967, 18.31313820542249 ], [ -64.864919790347813, 18.313136361402883 ], [ -64.864834796499167, 18.31315597506574 ], [ -64.864833959618068, 18.31315580742762 ], [ -64.864743936625075, 18.313140719994635 ], [ -64.86466112338195, 18.313175924004895 ], [ -64.864615359478307, 18.31324733785425 ], [ -64.864652238560325, 18.313326463058218 ], [ -64.864658945395774, 18.313412629064203 ], [ -64.864620722589279, 18.313491083715633 ], [ -64.864582502402072, 18.313569706005126 ], [ -64.86452181739395, 18.313633743776165 ], [ -64.864453756307512, 18.313690573106953 ], [ -64.864393071299389, 18.313754610877993 ], [ -64.864332386291267, 18.313818648648976 ], [ -64.864271867611592, 18.313882686420015 ], [ -64.864226102398277, 18.31395410026937 ], [ -64.864225265517234, 18.314040098637236 ], [ -64.864307574536269, 18.314076643752628 ], [ -64.864397597529262, 18.314091731185556 ], [ -64.864487619212582, 18.314092401738151 ], [ -64.864570600093884, 18.314064406168086 ], [ -64.864646037258694, 18.314021993717688 ], [ -64.86472901813994, 18.313979748905354 ], [ -64.864782159431627, 18.313908335056055 ], [ -64.864820045652152, 18.31385770833657 ], [ -64.865140568473805, 18.314058371194903 ], [ -64.865142412493356, 18.314059544661916 ], [ -64.865144256512963, 18.314060718128928 ], [ -64.86514610053257, 18.314061891595941 ], [ -64.86514794455212, 18.314062897424776 ], [ -64.865149622243223, 18.314064070891789 ], [ -64.86515146626283, 18.314065244358801 ], [ -64.865153310282437, 18.314066585463991 ], [ -64.865155154301988, 18.314067758930946 ], [ -64.865156998321595, 18.314068932397959 ], [ -64.865158673393353, 18.314070105864971 ], [ -64.86516051741296, 18.314071279331984 ], [ -64.86516236143251, 18.314072452798996 ], [ -64.865164205452118, 18.314073626266008 ], [ -64.865165881833548, 18.314074799733021 ], [ -64.865167727162827, 18.314076140838154 ], [ -64.865169571182378, 18.314077314305166 ], [ -64.865171247563808, 18.314078487772179 ], [ -64.865173091583415, 18.314079661239191 ], [ -64.865174766655173, 18.314081002344324 ], [ -64.86517661067478, 18.314082175811336 ], [ -64.86517845469433, 18.314083349278349 ], [ -64.865180132385433, 18.314084690383538 ], [ -64.86518197640504, 18.314085863850551 ], [ -64.865183651476798, 18.314087037317506 ], [ -64.865185495496405, 18.314088378422696 ], [ -64.865187173187508, 18.314089551889708 ], [ -64.865189017207115, 18.314090892994841 ], [ -64.865190693588545, 18.314092066461853 ], [ -64.865192537608095, 18.314093407566986 ], [ -64.865194212679853, 18.314094581033999 ], [ -64.865195890371012, 18.314095922139188 ], [ -64.865197734390563, 18.314097095606201 ], [ -64.865199409462321, 18.314098436711333 ], [ -64.865201253481928, 18.314099777816466 ], [ -64.86520293117303, 18.314100951283478 ], [ -64.86520460755446, 18.314102292388611 ], [ -64.865206451574068, 18.314103633493801 ], [ -64.865208126645825, 18.314104806960813 ], [ -64.865209804336928, 18.314106148065946 ], [ -64.865211479408686, 18.314107489171079 ], [ -64.865213323428293, 18.314108662638091 ], [ -64.865214999809723, 18.314110003743281 ], [ -64.865216677500825, 18.314111344848413 ], [ -64.86521835257264, 18.314112685953546 ], [ -64.865220030263743, 18.314114027058736 ], [ -64.865221874283293, 18.314115200525748 ], [ -64.865223549355051, 18.314116541630881 ], [ -64.865225225736538, 18.314117882736014 ], [ -64.86522690342764, 18.314119223841203 ], [ -64.865228578499398, 18.314120564946336 ], [ -64.8652302561905, 18.314121906051469 ], [ -64.86523193257193, 18.314123247156658 ], [ -64.865233607643745, 18.314124588261791 ], [ -64.865235285334848, 18.314125929366924 ], [ -64.865236960406605, 18.314127270472113 ], [ -64.865238636788035, 18.314128611577246 ], [ -64.865240314479138, 18.314129952682379 ], [ -64.865241989550896, 18.314131293787568 ], [ -64.865243667242055, 18.314132634892701 ], [ -64.865245343623485, 18.314134143636011 ], [ -64.865247018695243, 18.314135484741144 ], [ -64.865248696386345, 18.314136825846276 ], [ -64.865250371458103, 18.314138166951466 ], [ -64.865251881511085, 18.314139508056599 ], [ -64.865253556582843, 18.314141016799908 ], [ -64.865255234273945, 18.314142357905041 ], [ -64.86525690934576, 18.314143699010231 ], [ -64.86525858572719, 18.314145040115363 ], [ -64.865260094470443, 18.314146548858673 ], [ -64.86526177085193, 18.314147889963806 ], [ -64.865263448543033, 18.314149231068939 ], [ -64.865264957286342, 18.314150739812249 ], [ -64.8652666323581, 18.314152080917381 ], [ -64.86526830873953, 18.314153589660691 ], [ -64.86526981748284, 18.314154930765881 ], [ -64.86527149386427, 18.314156271871013 ], [ -64.865273171555373, 18.314157780614323 ], [ -64.865274680298683, 18.314159121719456 ], [ -64.86527635537044, 18.314160630462766 ], [ -64.865277865423423, 18.314161971567898 ], [ -64.86527954049518, 18.314163480311208 ], [ -64.865281050548163, 18.314164989054518 ], [ -64.86528272561992, 18.314166330159651 ], [ -64.86528423436323, 18.314167838902961 ], [ -64.86528591074466, 18.314169180008093 ], [ -64.86528741948797, 18.314170688751403 ], [ -64.865289097179073, 18.314172197494713 ], [ -64.865290604612653, 18.314173538599846 ], [ -64.865292113355963, 18.314175047343156 ], [ -64.865293789737393, 18.314176556086409 ], [ -64.865295298480703, 18.314178064829719 ], [ -64.865296808533685, 18.314179405934851 ], [ -64.865298483605443, 18.314180914678161 ], [ -64.865299992348753, 18.314182423421471 ], [ -64.865301502401735, 18.314183932164781 ], [ -64.865303009835316, 18.314185440908091 ], [ -64.865304687526475, 18.314186782013223 ], [ -64.865306196269728, 18.314188290756533 ], [ -64.865307703703365, 18.314189799499786 ], [ -64.865309212446675, 18.314191308243096 ], [ -64.865310722499657, 18.314192816986406 ], [ -64.86531223124291, 18.314194325729716 ], [ -64.865313907624341, 18.314195834472969 ], [ -64.86531541636765, 18.314197343216279 ], [ -64.865316923801288, 18.314198851959588 ], [ -64.865318432544598, 18.314200360702898 ], [ -64.86531994259758, 18.314201869446151 ], [ -64.865321451340833, 18.314203378189461 ], [ -64.86532295877447, 18.314204886932771 ], [ -64.86532446751778, 18.314206395676081 ], [ -64.865325977570762, 18.314207904419334 ], [ -64.865327486314015, 18.314209413162644 ], [ -64.865328827419205, 18.314210921905953 ], [ -64.865330334852786, 18.314212598287384 ], [ -64.865331843596095, 18.314214107030693 ], [ -64.865333353649078, 18.314215615774003 ], [ -64.865334862392388, 18.314217124517256 ], [ -64.865336369825968, 18.314218633260566 ], [ -64.86533771224083, 18.314220309641996 ], [ -64.865339219674411, 18.314221818385306 ], [ -64.865340728417721, 18.314223327128616 ], [ -64.865342238470703, 18.314225003510046 ], [ -64.865343579575836, 18.314226512253356 ], [ -64.865345088319145, 18.314228020996666 ], [ -64.865346595752783, 18.314229697378096 ], [ -64.865347936857916, 18.314231206121349 ], [ -64.865349445601225, 18.314232714864659 ], [ -64.865350955654208, 18.314234391246089 ], [ -64.865352295449668, 18.314235899989399 ], [ -64.86535380550265, 18.314237576370829 ], [ -64.865355146607783, 18.314239085114139 ], [ -64.865356655351093, 18.314240593857448 ], [ -64.865357996456225, 18.314242270238879 ], [ -64.865359505199535, 18.314243778982188 ], [ -64.865360846304668, 18.314245455363618 ], [ -64.865362353738306, 18.314247131745049 ], [ -64.865363694843438, 18.314248640488358 ], [ -64.8653650372583, 18.314250316869789 ], [ -64.865366544691938, 18.314251825613098 ], [ -64.86536788579707, 18.314253501994529 ], [ -64.865369228211875, 18.314255010737838 ], [ -64.865370735645513, 18.314256687119268 ], [ -64.865372076750646, 18.314258363500699 ], [ -64.865373417855835, 18.314259872244008 ], [ -64.865374926599088, 18.314261548625439 ], [ -64.865376267704278, 18.314263225006869 ], [ -64.865377608809411, 18.314264901388299 ], [ -64.865378951224216, 18.314266410131609 ], [ -64.865380292329405, 18.314268086513039 ], [ -64.865381633434538, 18.314269762894469 ], [ -64.865382974539671, 18.314271439275956 ], [ -64.86538448328298, 18.314272948019209 ], [ -64.86538582438817, 18.314274624400696 ], [ -64.865387165493303, 18.314276300782126 ], [ -64.865388506598435, 18.314277977163556 ], [ -64.865389846393953, 18.314279653544986 ], [ -64.865391187499085, 18.314281329926416 ], [ -64.865392528604218, 18.314283006307846 ], [ -64.865393869709408, 18.314284682689333 ], [ -64.86539521081454, 18.314286191432586 ], [ -64.865396385591225, 18.314287867814073 ], [ -64.865397725386686, 18.314289544195503 ], [ -64.865399066491875, 18.314291220576933 ], [ -64.865400407597008, 18.314292896958364 ], [ -64.865401748702141, 18.314294573339794 ], [ -64.86540308980733, 18.314296249721224 ], [ -64.865404264583958, 18.314297926102711 ], [ -64.865405604379475, 18.314299602484141 ], [ -64.865406945484608, 18.314301446503691 ], [ -64.865408120261293, 18.314303122885178 ], [ -64.865409461366426, 18.314304799266608 ], [ -64.865410802471615, 18.314306475648038 ], [ -64.865411974628955, 18.314308152029469 ], [ -64.865413315734088, 18.314309828410899 ], [ -64.865414656839221, 18.314311504792329 ], [ -64.865415831615906, 18.314313348811936 ], [ -64.865417171411423, 18.314315025193366 ], [ -64.865418344878435, 18.314316701574796 ], [ -64.86541968729324, 18.314318377956226 ], [ -64.86542085945058, 18.314320054337713 ], [ -64.865422200555713, 18.314321898357264 ], [ -64.865423375332398, 18.314323574738694 ], [ -64.865424547489738, 18.314325251120181 ], [ -64.865425888594871, 18.314327095139731 ], [ -64.865427063371556, 18.314328771521161 ], [ -64.865428404476745, 18.314330447902648 ], [ -64.865429576634028, 18.314332291922199 ], [ -64.865430751410713, 18.314333968303629 ], [ -64.865431923568053, 18.314335644685059 ], [ -64.865433264673243, 18.314337488704666 ], [ -64.865434439449928, 18.314339165086096 ], [ -64.865435611607211, 18.314340841467526 ], [ -64.865436786383896, 18.314342685487134 ], [ -64.865437958541236, 18.314344361868564 ], [ -64.865439133317921, 18.314346205888171 ], [ -64.86544047442311, 18.314347882269601 ], [ -64.86544164658045, 18.314349726289208 ], [ -64.865442821357078, 18.314351402670638 ], [ -64.865443993514418, 18.314353246690189 ], [ -64.865445168291103, 18.314354923071619 ], [ -64.865446340448443, 18.314356767091226 ], [ -64.865447515225128, 18.314358443472656 ], [ -64.865448687382468, 18.314360287492264 ], [ -64.865449860849481, 18.314362131511814 ], [ -64.865451035626165, 18.314363807893301 ], [ -64.865452041455001, 18.314365651912851 ], [ -64.865453213612341, 18.314367328294281 ], [ -64.865454388389026, 18.314369172313889 ], [ -64.865455560546366, 18.314371016333496 ], [ -64.86545673532305, 18.314372692714926 ], [ -64.86545773984227, 18.314374536734476 ], [ -64.865458914618955, 18.314376380754084 ], [ -64.865460086776238, 18.314378224773634 ], [ -64.865461261552923, 18.314379901155121 ], [ -64.865462267381815, 18.314381745174671 ], [ -64.865463439539155, 18.314383589194279 ], [ -64.865464445367991, 18.314385433213829 ], [ -64.865465618835003, 18.314387109595316 ], [ -64.865466793611688, 18.314388953614866 ], [ -64.86546779944058, 18.314390797634474 ], [ -64.86546897159792, 18.314392641654024 ], [ -64.865469977426756, 18.314394485673631 ], [ -64.865471150893768, 18.314396162055061 ], [ -64.865472156722603, 18.314398006074669 ], [ -64.865473331499288, 18.314399850094219 ], [ -64.86547433732818, 18.314401694113826 ], [ -64.865475341847343, 18.314403538133433 ], [ -64.865476516624028, 18.314405382152984 ], [ -64.86547752245292, 18.314407226172591 ], [ -64.865478528281756, 18.314409070192141 ], [ -64.865479700439096, 18.314410914211749 ], [ -64.86548070757766, 18.314412758231299 ], [ -64.865481713406496, 18.314414602250906 ], [ -64.865482719235388, 18.314416446270513 ], [ -64.865483723754551, 18.314418290290064 ], [ -64.865484898531236, 18.314420134309671 ], [ -64.865485904360128, 18.314421978329221 ], [ -64.865486908879291, 18.314423822348829 ], [ -64.865487914708183, 18.314425666368436 ], [ -64.865488920537018, 18.314427510387986 ], [ -64.86548992636591, 18.314429354407594 ], [ -64.865490933504418, 18.314431198427144 ], [ -64.86549193933331, 18.314433042446751 ], [ -64.865492943852473, 18.314434886466358 ], [ -64.865493949681365, 18.314436730485909 ], [ -64.865494955510201, 18.314438574505516 ], [ -64.865495962648765, 18.314440418525066 ], [ -64.865496968477601, 18.314442430182794 ], [ -64.865497805358643, 18.314444274202401 ], [ -64.865498812497208, 18.314446118222008 ], [ -64.865499818326043, 18.314447962241559 ], [ -64.865500822845263, 18.314449806261166 ], [ -64.865501828674098, 18.314451817918894 ], [ -64.865502666864813, 18.314453661938444 ], [ -64.865503672693706, 18.314455505958051 ], [ -64.865504678522541, 18.314457349977658 ], [ -64.865505516713313, 18.314459361635386 ], [ -64.865506522542148, 18.314461204345264 ], [ -64.86550752837104, 18.314463048364871 ], [ -64.865508366561755, 18.314464893694094 ], [ -64.865509372390591, 18.314466905351821 ], [ -64.865510210581306, 18.314468749371429 ], [ -64.865511216410198, 18.314470593390979 ], [ -64.865512054600913, 18.314472605048707 ], [ -64.865513060429748, 18.314474449068314 ], [ -64.865513898620463, 18.314476293087921 ], [ -64.865514736811178, 18.314478304745649 ], [ -64.865515742640071, 18.314480148765199 ], [ -64.865516580830786, 18.314482160422926 ], [ -64.865517420331173, 18.314484004442534 ], [ -64.865518424850393, 18.314485848462084 ], [ -64.86551926435078, 18.314487860119812 ], [ -64.865520102541495, 18.314489704139419 ], [ -64.865520939422538, 18.314491715797146 ], [ -64.865521946561046, 18.314493559816754 ], [ -64.865522783442145, 18.314495571474481 ], [ -64.86552362163286, 18.314497415494031 ], [ -64.865524459823575, 18.314499259513639 ], [ -64.865525299323963, 18.314501271171366 ], [ -64.865526137514678, 18.314503282829094 ], [ -64.865526974395721, 18.314505126848644 ], [ -64.865527812586436, 18.314507138506372 ], [ -64.865528650777151, 18.314508982525979 ], [ -64.865529490277538, 18.314510994183706 ], [ -64.865530328468253, 18.314512838203314 ], [ -64.865531165349296, 18.314514849861041 ], [ -64.865532003540011, 18.314516693880591 ], [ -64.865532841730783, 18.314518705538319 ], [ -64.86553368123117, 18.314520717196046 ], [ -64.865534519421885, 18.314522561215654 ], [ -64.865535188664751, 18.314524572873381 ], [ -64.865536026855523, 18.314526416892932 ], [ -64.86553686635591, 18.314528428550659 ], [ -64.865537704546625, 18.314530440208387 ], [ -64.865538373789491, 18.314532284227994 ], [ -64.865539213289878, 18.314534295885721 ], [ -64.86554005148065, 18.314536307543449 ], [ -64.865540720723516, 18.314538151563056 ], [ -64.865541560223903, 18.314540163220784 ], [ -64.865542229466826, 18.314542174878511 ], [ -64.865543067657541, 18.314544018898061 ], [ -64.865543739519808, 18.314546030555789 ], [ -64.86554457640085, 18.314548042213517 ], [ -64.865545248263061, 18.314550053871244 ], [ -64.865546086453833, 18.314551897890851 ], [ -64.865546755696698, 18.314553909548579 ], [ -64.865547427558965, 18.314555921206306 ], [ -64.865548264440008, 18.314557932864034 ], [ -64.865548936302275, 18.314559776883641 ], [ -64.865549605545141, 18.314561788541369 ], [ -64.865550443735856, 18.314563800199096 ], [ -64.865551115598123, 18.314565811856824 ], [ -64.865551784841045, 18.314567823514551 ], [ -64.865552455393583, 18.314569667534101 ], [ -64.865553293584298, 18.314571679191829 ], [ -64.865553965446566, 18.314573690849556 ], [ -64.865554634689488, 18.314575702507284 ], [ -64.865555306551755, 18.314577714165011 ], [ -64.865555975794621, 18.314579725822739 ], [ -64.865556646347216, 18.314581737480466 ], [ -64.86555731689981, 18.314583581500074 ], [ -64.865557987452348, 18.314585593157801 ], [ -64.865558659314615, 18.314587604815529 ], [ -64.865559328557538, 18.314589616473256 ], [ -64.865560000419748, 18.314591628130984 ], [ -64.865560669662671, 18.314593639788711 ], [ -64.865561341524938, 18.314595651446439 ], [ -64.865561844439355, 18.314597663104166 ], [ -64.865562513682221, 18.314599674761894 ], [ -64.865563185544488, 18.314601686419621 ], [ -64.86556385478741, 18.314603698077349 ], [ -64.865564357701828, 18.314605709735076 ], [ -64.865565029564095, 18.314607721392804 ], [ -64.865565698806961, 18.314609733050531 ], [ -64.865566201721435, 18.314611744708259 ], [ -64.865566873583646, 18.314613756365986 ], [ -64.865567542826568, 18.314615768023714 ], [ -64.865568045740986, 18.314617778371769 ], [ -64.865568717603253, 18.314619791339169 ], [ -64.865569220517671, 18.314621802996896 ], [ -64.865569889760593, 18.314623814654624 ], [ -64.865570392675011, 18.314625826312351 ], [ -64.865571064537278, 18.314627837970079 ], [ -64.865571567451696, 18.314629849627806 ], [ -64.865572070366113, 18.314631861285534 ], [ -64.865572739609036, 18.314633872943261 ], [ -64.865573242523453, 18.314635884600989 ], [ -64.865573745437871, 18.314637896258716 ], [ -64.865574417300138, 18.314639907916444 ], [ -64.865574918904883, 18.314641919574171 ], [ -64.865575421819358, 18.314643931231899 ], [ -64.865575924733776, 18.314645942889626 ], [ -64.865576596596043, 18.314648122185474 ], [ -64.86557709951046, 18.314650133843259 ], [ -64.865577602424878, 18.314652145500986 ], [ -64.865578105339296, 18.314654157158714 ], [ -64.86557860825377, 18.314656168816441 ], [ -64.865579109858515, 18.314658180474169 ], [ -64.865579612772933, 18.314660192131896 ], [ -64.865580115687351, 18.314662203789624 ], [ -64.865580618601825, 18.314664383085471 ], [ -64.865581121516243, 18.314666394743199 ], [ -64.865581624430661, 18.314668406400926 ], [ -64.865582128654751, 18.314670418058654 ], [ -64.865582462621376, 18.314672429716381 ], [ -64.865582965535793, 18.314674609012229 ], [ -64.865583468450268, 18.314676619360284 ], [ -64.865583971364686, 18.314678632327684 ], [ -64.865584475588776, 18.314680643985412 ], [ -64.865584809555401, 18.314682655643139 ], [ -64.865585312469818, 18.314684834939044 ], [ -64.865585815384236, 18.314686846596771 ], [ -64.865586150660533, 18.314688858254499 ], [ -64.865586653575008, 18.314690869912226 ], [ -64.865586988851248, 18.314692881569954 ], [ -64.865587491765723, 18.314695060865802 ], [ -64.865587994680141, 18.314697072523529 ], [ -64.86558833126611, 18.314699084181257 ], [ -64.865588832870856, 18.314701095838984 ], [ -64.865589169456825, 18.314703275134889 ], [ -64.86558950342345, 18.314705286792616 ], [ -64.86559000764754, 18.314707298450344 ], [ -64.865590341614165, 18.314709477746192 ], [ -64.865590676890463, 18.314711489403919 ], [ -64.865591179804881, 18.314713501061647 ], [ -64.86559151639085, 18.314715512719374 ], [ -64.865591850357418, 18.314717692015279 ], [ -64.865592354581565, 18.314719702363334 ], [ -64.86559268854819, 18.314721715330734 ], [ -64.865593023824431, 18.314723894626582 ], [ -64.865593360410401, 18.314725906284309 ], [ -64.865593694377026, 18.314727917942037 ], [ -64.865594029653323, 18.314730097237941 ], [ -64.865594366239293, 18.314732108895669 ], [ -64.86559470151559, 18.314734120553396 ], [ -64.865595035482158, 18.314736299849244 ], [ -64.865595370758456, 18.314738311506972 ], [ -64.865595707344426, 18.314740323164699 ], [ -64.865596042620723, 18.314742502460547 ], [ -64.865596376587348, 18.314744514118274 ], [ -64.865596711863645, 18.314746525776059 ], [ -64.865597048449558, 18.314748705071906 ], [ -64.865597382416183, 18.314750716729634 ], [ -64.865597551364033, 18.314752728387361 ], [ -64.86559788664033, 18.314754906373537 ], [ -64.865598220606898, 18.314756919340937 ], [ -64.865598555883196, 18.314759098636841 ], [ -64.865598723521373, 18.314761110294569 ], [ -64.865599058797613, 18.314763121952296 ], [ -64.865599395383583, 18.314765301248144 ], [ -64.865599561712088, 18.314767312905872 ], [ -64.865599898298058, 18.314769324563599 ], [ -64.865600064626506, 18.314771503859504 ], [ -64.865600399902803, 18.314773515517231 ], [ -64.865600567540923, 18.314775694813079 ], [ -64.865600902817221, 18.314777706470807 ], [ -64.865601070455341, 18.314779718128534 ], [ -64.865601405731638, 18.314781897424439 ], [ -64.865601573369815, 18.314783909082166 ], [ -64.865601742317608, 18.314786088378014 ], [ -64.865602077593906, 18.314788100035742 ], [ -64.865602245232026, 18.314790279331589 ], [ -64.865602411560531, 18.314792290989317 ], [ -64.865602746836828, 18.314794302647044 ], [ -64.865602914474948, 18.314796481942949 ], [ -64.865603083422741, 18.314798493600676 ], [ -64.865603249751246, 18.314800672896524 ], [ -64.865603417389366, 18.314802684554252 ], [ -64.865603586337215, 18.314804863850156 ], [ -64.865603921613513, 18.314806875507884 ], [ -64.865604089251633, 18.314808887165611 ], [ -64.865604255580081, 18.314811066461459 ], [ -64.86560442452793, 18.314813078119187 ], [ -64.865604590856378, 18.314815257415091 ], [ -64.865604758494555, 18.314817269072819 ], [ -64.865604758494555, 18.314819448368667 ], [ -64.865604927442348, 18.314821460026394 ], [ -64.865605093770796, 18.314823639322299 ], [ -64.865605261408973, 18.314825650980026 ], [ -64.865605430356766, 18.314827662637754 ], [ -64.86560559668527, 18.314829841933602 ], [ -64.86560559668527, 18.314831853591329 ], [ -64.865605765633063, 18.314834032887177 ], [ -64.86560593327124, 18.314836044544904 ], [ -64.86560593327124, 18.314838223840809 ], [ -64.865606099599688, 18.314840235498536 ], [ -64.865606268547481, 18.314842414794384 ], [ -64.865606268547481, 18.314844426452112 ], [ -64.865606434875986, 18.314846605748016 ], [ -64.865606434875986, 18.314848617405744 ], [ -64.865606602514106, 18.314850795391919 ], [ -64.865606602514106, 18.314852808359319 ], [ -64.865606771461955, 18.314854986345551 ], [ -64.865606771461955, 18.314856999312951 ], [ -64.865606937790403, 18.314859178608799 ], [ -64.865606937790403, 18.314861190266527 ], [ -64.865606937790403, 18.314863201924254 ], [ -64.865607105428523, 18.314865381220102 ], [ -64.865607105428523, 18.314867392877829 ], [ -64.865607105428523, 18.314869572173734 ], [ -64.865607274376373, 18.314871583831462 ], [ -64.865607274376373, 18.314873763127309 ], [ -64.865607274376373, 18.314875774785037 ], [ -64.865607274376373, 18.314877954080941 ], [ -64.865607274376373, 18.314879964428997 ], [ -64.865607274376373, 18.314882145034517 ], [ -64.865607274376373, 18.314884155382572 ], [ -64.865607274376373, 18.314886335988149 ], [ -64.865607274376373, 18.314888347645876 ], [ -64.865607274376373, 18.314890526941724 ], [ -64.865607274376373, 18.314892538599452 ], [ -64.865607274376373, 18.314894717895299 ], [ -64.865607274376373, 18.314896729553027 ], [ -64.865607274376373, 18.314898908848932 ], [ -64.865607274376373, 18.314900920506659 ], [ -64.865607274376373, 18.314903099802507 ], [ -64.865607274376373, 18.314905111460234 ], [ -64.865607105428523, 18.314907290756139 ], [ -64.865607105428523, 18.314909302413866 ], [ -64.865607105428523, 18.314911480400042 ], [ -64.865606937790403, 18.314913493367442 ], [ -64.865606937790403, 18.314915671353674 ], [ -64.865606937790403, 18.314917684321074 ], [ -64.865606771461955, 18.314919695978801 ], [ -64.865606771461955, 18.314921875274649 ], [ -64.865606602514106, 18.314923886932377 ], [ -64.865606602514106, 18.314926066228281 ], [ -64.865606434875986, 18.314928077886009 ], [ -64.865606434875986, 18.314930257181857 ], [ -64.865606268547481, 18.314932268839584 ], [ -64.865606268547481, 18.314934448135432 ], [ -64.865606099599688, 18.314936459793159 ], [ -64.86560593327124, 18.314938639089064 ], [ -64.86560593327124, 18.314940649437119 ], [ -64.865605765633063, 18.314942830042639 ], [ -64.86560559668527, 18.314944840390694 ], [ -64.86560559668527, 18.314947020996271 ], [ -64.865605430356766, 18.314949032653999 ], [ -64.865605261408973, 18.314951211949847 ], [ -64.865605093770796, 18.314953223607574 ], [ -64.865604927442348, 18.314955235265302 ], [ -64.865604758494555, 18.314957414561206 ], [ -64.865604758494555, 18.314959426218934 ], [ -64.865604590856378, 18.314961605514782 ], [ -64.86560442452793, 18.314963617172509 ], [ -64.865604255580081, 18.314965796468357 ], [ -64.865604089251633, 18.314967808126084 ], [ -64.865603921613513, 18.314969987421989 ], [ -64.865603586337215, 18.314971999079717 ], [ -64.865603417389366, 18.314974009427772 ], [ -64.865603249751246, 18.314976190033292 ], [ -64.865603083422741, 18.314978200381347 ], [ -64.865602914474948, 18.314980380986924 ], [ -64.865602746836828, 18.314982392644652 ], [ -64.865602411560531, 18.314984571940499 ], [ -64.865602245232026, 18.314986583598227 ], [ -64.865602077593906, 18.314988595255954 ], [ -64.865601742317608, 18.314990774551859 ], [ -64.865601573369815, 18.314992786209586 ], [ -64.865601405731638, 18.314994965505434 ], [ -64.865601070455341, 18.314996977163162 ], [ -64.865600902817221, 18.314999156459066 ], [ -64.865600567540923, 18.315001168116794 ], [ -64.865600399902803, 18.315003179774521 ], [ -64.865600064626506, 18.315005359070369 ], [ -64.865599898298058, 18.315007369418424 ], [ -64.865599561712088, 18.315009550023944 ], [ -64.865599395383583, 18.315011560372 ], [ -64.865599058797613, 18.315013573339399 ], [ -64.865598723521373, 18.315015752635304 ], [ -64.865598555883196, 18.315017764293032 ], [ -64.865598220606898, 18.315019775950759 ], [ -64.86559788664033, 18.315021955246607 ], [ -64.865597551364033, 18.315023966904334 ], [ -64.865597382416183, 18.315026146200239 ], [ -64.865597048449558, 18.315028157857967 ], [ -64.865596711863645, 18.315030169515694 ], [ -64.865596376587348, 18.315032348811542 ], [ -64.865596042620723, 18.315034360469269 ], [ -64.865595707344426, 18.315036372126997 ], [ -64.865595370758456, 18.315038551422901 ], [ -64.865595035482158, 18.315040563080629 ], [ -64.86559470151559, 18.315042573428684 ], [ -64.865594366239293, 18.315044754034204 ], [ -64.865594029653323, 18.315046764382259 ], [ -64.865593694377026, 18.315048777349659 ], [ -64.865593360410401, 18.315050956645507 ], [ -64.865593023824431, 18.315052968303235 ], [ -64.86559268854819, 18.315054979960962 ], [ -64.865592185633716, 18.315057159256867 ], [ -64.865591850357418, 18.315059170914594 ], [ -64.86559151639085, 18.315061182572322 ], [ -64.865591179804881, 18.315063194230049 ], [ -64.865590676890463, 18.315065373525897 ], [ -64.865590341614165, 18.315067385183625 ], [ -64.86559000764754, 18.315069396841352 ], [ -64.86558950342345, 18.315071576137257 ], [ -64.865589169456825, 18.315073587794984 ], [ -64.865588666542408, 18.315075599452712 ], [ -64.86558833126611, 18.315077611110439 ], [ -64.865587828351636, 18.315079790406287 ], [ -64.865587491765723, 18.315081802064014 ], [ -64.865586988851248, 18.31508381241207 ], [ -64.865586653575008, 18.315085825379469 ], [ -64.865586150660533, 18.315088003365702 ], [ -64.865585815384236, 18.315090016333102 ], [ -64.865585312469818, 18.315092027990829 ], [ -64.865584809555401, 18.315094039648557 ], [ -64.865584475588776, 18.315096051306284 ], [ -64.865583971364686, 18.315098230602132 ], [ -64.865583468450268, 18.315100242259859 ], [ -64.865582965535793, 18.315102253917587 ], [ -64.865582462621376, 18.315104265575314 ], [ -64.865582128654751, 18.315106277233042 ], [ -64.865581624430661, 18.315108456528947 ], [ -64.865581121516243, 18.315110468186674 ], [ -64.865580618601825, 18.315112479844402 ], [ -64.865580115687351, 18.315114491502129 ], [ -64.865579612772933, 18.315116503159857 ], [ -64.865579109858515, 18.315118514817584 ], [ -64.86557860825377, 18.315120694113432 ], [ -64.865578105339296, 18.315122704461487 ], [ -64.865577602424878, 18.315124717428887 ], [ -64.86557709951046, 18.315126729086614 ], [ -64.865576427648193, 18.31512873943467 ], [ -64.865575924733776, 18.315130752402069 ], [ -64.865575421819358, 18.315132764059797 ], [ -64.865574918904883, 18.315134774407852 ], [ -64.865574417300138, 18.315136787375252 ], [ -64.865573745437871, 18.315138965361484 ], [ -64.865573242523453, 18.315140978328884 ], [ -64.865572739609036, 18.315142989986612 ], [ -64.865572070366113, 18.315145001644339 ], [ -64.865571567451696, 18.315147013302067 ], [ -64.865571064537278, 18.315149024959794 ], [ -64.865570392675011, 18.315151036617522 ], [ -64.865569889760593, 18.315153048275249 ], [ -64.865569220517671, 18.315155059932977 ], [ -64.865568717603253, 18.315157071590704 ], [ -64.865568045740986, 18.315159083248432 ], [ -64.865567542826568, 18.315161094906159 ], [ -64.865566873583646, 18.315163106563887 ], [ -64.865566201721435, 18.315165118221614 ], [ -64.865565698806961, 18.315167129879342 ], [ -64.865565029564095, 18.315169141537069 ], [ -64.865564357701828, 18.315171153194797 ], [ -64.86556385478741, 18.315173164852524 ], [ -64.865563185544488, 18.315175176510252 ], [ -64.865562513682221, 18.315177188167979 ], [ -64.865561844439355, 18.315179199825707 ], [ -64.865561172577088, 18.315181211483434 ], [ -64.865560669662671, 18.315183223141162 ], [ -64.865560000419748, 18.315185234798889 ], [ -64.865559328557538, 18.31518707881844 ], [ -64.865558659314615, 18.315189090476167 ], [ -64.865557987452348, 18.315191102133895 ], [ -64.86555731689981, 18.315193113791622 ], [ -64.865556646347216, 18.31519512544935 ], [ -64.865555975794621, 18.315197137107077 ], [ -64.865555306551755, 18.315199147455132 ], [ -64.865554634689488, 18.315201160422532 ], [ -64.865553965446566, 18.315203004442139 ], [ -64.865553127255851, 18.315205016099867 ], [ -64.865552455393583, 18.315207026447922 ], [ -64.865551784841045, 18.315209039415322 ], [ -64.865551115598123, 18.315211051073049 ], [ -64.865550443735856, 18.315213061421105 ], [ -64.865549605545141, 18.315214905440712 ], [ -64.865548936302275, 18.315216918408112 ], [ -64.865548264440008, 18.315218930065839 ], [ -64.865547427558965, 18.315220940413894 ], [ -64.865546755696698, 18.315222784433445 ], [ -64.865546086453833, 18.315224797400845 ], [ -64.865545248263061, 18.315226809058572 ], [ -64.86554457640085, 18.315228819406627 ], [ -64.865543739519808, 18.315230663426235 ], [ -64.865543067657541, 18.315232676393634 ], [ -64.865542229466826, 18.315234688051362 ], [ -64.865541560223903, 18.315236698399417 ], [ -64.865540720723516, 18.315238542419024 ], [ -64.865539882532801, 18.315240555386424 ], [ -64.865539213289878, 18.315242567044152 ], [ -64.865538373789491, 18.315244411063702 ], [ -64.865537535598776, 18.315246421411757 ], [ -64.86553686635591, 18.315248434379157 ], [ -64.865536026855523, 18.315250278398764 ], [ -64.865535188664751, 18.315252290056492 ], [ -64.865534350474036, 18.315254134076042 ], [ -64.86553368123117, 18.315256144424097 ], [ -64.865532841730783, 18.315258157391497 ], [ -64.865532003540011, 18.315260001411104 ], [ -64.865531165349296, 18.315262013068832 ], [ -64.865530328468253, 18.315263857088439 ], [ -64.865529490277538, 18.315265867436494 ], [ -64.865528650777151, 18.315267711456045 ], [ -64.865527812586436, 18.315269724423445 ], [ -64.865526974395721, 18.315271736081172 ], [ -64.865526137514678, 18.315273580100779 ], [ -64.865525299323963, 18.315275590448834 ], [ -64.865524459823575, 18.315277434468385 ], [ -64.86552362163286, 18.315279447435785 ], [ -64.865522783442145, 18.315281291455392 ], [ -64.865521777613253, 18.315283135474999 ], [ -64.865520939422538, 18.315285147132727 ], [ -64.865520102541495, 18.315286991152277 ], [ -64.86551926435078, 18.315289002810005 ], [ -64.865518424850393, 18.315290846829612 ], [ -64.865517420331173, 18.315292858487339 ], [ -64.865516580830786, 18.31529470250689 ], [ -64.865515742640071, 18.315296546526497 ], [ -64.865514736811178, 18.315298558184224 ], [ -64.865513898620463, 18.315300402203832 ], [ -64.865512892791628, 18.315302413861559 ], [ -64.865512054600913, 18.31530425788111 ], [ -64.865511048772021, 18.315306101900717 ], [ -64.865510210581306, 18.315308113558444 ], [ -64.86550920475247, 18.315309957577995 ], [ -64.865508366561755, 18.315311801597602 ], [ -64.865507360732863, 18.315313645617209 ], [ -64.865506522542148, 18.315315657274937 ], [ -64.865505516713313, 18.315317501294487 ], [ -64.865504510884421, 18.315319345314094 ], [ -64.865503672693706, 18.315321189333645 ], [ -64.865502666864813, 18.315323200991372 ], [ -64.86550166234565, 18.315325045010979 ], [ -64.865500822845263, 18.315326889030587 ], [ -64.865499818326043, 18.315328733050137 ], [ -64.865498812497208, 18.315330743398192 ], [ -64.865497805358643, 18.315332587417799 ], [ -64.865496799529808, 18.31533443143735 ], [ -64.865495962648765, 18.315336275456957 ], [ -64.865494955510201, 18.315338119476507 ], [ -64.865493949681365, 18.315339963496115 ], [ -64.865492943852473, 18.315341808825394 ], [ -64.86549193933331, 18.315343820483122 ], [ -64.865490933504418, 18.315345664502672 ], [ -64.86548992636591, 18.315347508522279 ], [ -64.865488920537018, 18.31534935254183 ], [ -64.865487914708183, 18.315351196561437 ], [ -64.865486908879291, 18.315353040581044 ], [ -64.865485904360128, 18.315354884600595 ], [ -64.865484729583443, 18.315356728620202 ], [ -64.865483723754551, 18.315358572639752 ], [ -64.865482719235388, 18.315360415349687 ], [ -64.865481713406496, 18.315362259369294 ], [ -64.86548070757766, 18.315364103388845 ], [ -64.865479532800975, 18.315365947408452 ], [ -64.865478528281756, 18.315367791428002 ], [ -64.86547752245292, 18.31536963544761 ], [ -64.865476347676235, 18.315371479467217 ], [ -64.865475341847343, 18.315373323486767 ], [ -64.86547433732818, 18.31537500117787 ], [ -64.865473162551496, 18.315376845197477 ], [ -64.865472156722603, 18.315378689217027 ], [ -64.86547098456532, 18.315380533236635 ], [ -64.865469977426756, 18.315382377256242 ], [ -64.865468805269415, 18.315384221275792 ], [ -64.86546779944058, 18.315386065295399 ], [ -64.865466624663895, 18.315387740367157 ], [ -64.865465618835003, 18.315389584386764 ], [ -64.865464445367991, 18.315391428406315 ], [ -64.865463439539155, 18.315393272425922 ], [ -64.865462267381815, 18.315394950117025 ], [ -64.86546109260513, 18.315396794136632 ], [ -64.865460086776238, 18.315398638156182 ], [ -64.865458914618955, 18.315400482175789 ], [ -64.86545773984227, 18.31540215855722 ], [ -64.865456566375258, 18.315404002576827 ], [ -64.865455560546366, 18.315405846596377 ], [ -64.865454388389026, 18.315407522977807 ], [ -64.865453213612341, 18.315409366997415 ], [ -64.865452041455001, 18.315411211016965 ], [ -64.865450866678316, 18.315412887398452 ], [ -64.865449694521033, 18.315414731418002 ], [ -64.865448519744348, 18.31541640648976 ], [ -64.865447515225128, 18.315418250509367 ], [ -64.865446340448443, 18.315420095838647 ], [ -64.865445168291103, 18.315421772220077 ], [ -64.865443993514418, 18.315423616239627 ], [ -64.865442821357078, 18.315425292621114 ], [ -64.865441480251945, 18.315427136640665 ], [ -64.865440305475261, 18.315428813022095 ], [ -64.865439133317921, 18.315430657041702 ], [ -64.865437958541236, 18.315432333423132 ], [ -64.865436786383896, 18.315434177442739 ], [ -64.865435611607211, 18.315435852514497 ], [ -64.865434439449928, 18.3154375302056 ], [ -64.865433098344738, 18.315439374225207 ], [ -64.865431923568053, 18.315441050606637 ], [ -64.865430751410713, 18.315442894626187 ], [ -64.865429576634028, 18.315444571007674 ], [ -64.865428235528896, 18.315446247389104 ], [ -64.865427063371556, 18.315448091408655 ], [ -64.865425888594871, 18.315449766480413 ], [ -64.865424547489738, 18.315451444171572 ], [ -64.865423375332398, 18.315453288191122 ], [ -64.865422034227265, 18.315454964572552 ], [ -64.86542085945058, 18.315456640954039 ], [ -64.865419518345391, 18.315458317335469 ], [ -64.865418344878435, 18.31546016135502 ], [ -64.865417003773246, 18.315461836426778 ], [ -64.865415831615906, 18.315463514117937 ], [ -64.865414490510773, 18.315465190499367 ], [ -64.865413315734088, 18.315466866880797 ], [ -64.865411974628955, 18.315468543262227 ], [ -64.865410802471615, 18.315470387281835 ], [ -64.865409461366426, 18.315472062353592 ], [ -64.865408120261293, 18.315473740044695 ], [ -64.865406777846488, 18.315475416426125 ], [ -64.865405604379475, 18.315477091497883 ], [ -64.865404264583958, 18.315478769189042 ], [ -64.865402923478825, 18.315480445570472 ], [ -64.865401582373693, 18.315482121951902 ], [ -64.865400407597008, 18.315483798333332 ], [ -64.865399066491875, 18.31548547340509 ], [ -64.865397725386686, 18.315487151096249 ], [ -64.865396385591225, 18.315488827477679 ], [ -64.865395044486036, 18.31549050385911 ], [ -64.865393703380903, 18.31549218024054 ], [ -64.86539236227577, 18.31549385662197 ], [ -64.865391019860908, 18.3154955330034 ], [ -64.865389678755776, 18.315497209384887 ], [ -64.865388337650643, 18.315498884456645 ], [ -64.865386996545453, 18.31550039450957 ], [ -64.865385655440321, 18.315502070891057 ], [ -64.86538431564486, 18.315503747272487 ], [ -64.865382974539671, 18.315505423653917 ], [ -64.865381633434538, 18.315507100035347 ], [ -64.865380292329405, 18.315508607468985 ], [ -64.865378951224216, 18.315510285160087 ], [ -64.865377608809411, 18.315511961541517 ], [ -64.865376101375773, 18.315513637922948 ], [ -64.86537476027064, 18.315515145356585 ], [ -64.865373417855835, 18.315516823047687 ], [ -64.865372076750646, 18.315518499429174 ], [ -64.865370569317065, 18.315520008172427 ], [ -64.865369228211875, 18.315521684553914 ], [ -64.86536788579707, 18.315523360935344 ], [ -64.865366378363433, 18.315524868368925 ], [ -64.8653650372583, 18.315526546060084 ], [ -64.865363694843438, 18.315528053493665 ], [ -64.865362187409858, 18.315529731184824 ], [ -64.865360846304668, 18.315531239928077 ], [ -64.865359337561415, 18.315532916309508 ], [ -64.865357996456225, 18.315534591381322 ], [ -64.865356486403243, 18.315536101434247 ], [ -64.865355146607783, 18.315537610177557 ], [ -64.865353636554801, 18.315539286558987 ], [ -64.865352295449668, 18.315540795302297 ], [ -64.865350786706358, 18.315542470374055 ], [ -64.865349445601225, 18.315543980427037 ], [ -64.865347936857916, 18.315545655498795 ], [ -64.865346429424278, 18.315547165551777 ], [ -64.865345088319145, 18.315548674295087 ], [ -64.865343579575836, 18.315550349366845 ], [ -64.86534206952291, 18.315551859419827 ], [ -64.865340728417721, 18.31555336816308 ], [ -64.865339219674411, 18.315555044544567 ], [ -64.86533771224083, 18.31555655328782 ], [ -64.86533620349752, 18.31555806203113 ], [ -64.865334862392388, 18.315559569464767 ], [ -64.865333353649078, 18.315561079517749 ], [ -64.865331843596095, 18.31556275589918 ], [ -64.865330334852786, 18.315564264642489 ], [ -64.865328827419205, 18.315565773385742 ], [ -64.865327317366223, 18.315567282129052 ], [ -64.865325808622913, 18.315568790872362 ], [ -64.865324301189276, 18.315570299615672 ], [ -64.865322792446023, 18.315571808358925 ], [ -64.86532128239304, 18.315573483430683 ], [ -64.86531977364973, 18.315574993483665 ], [ -64.865318266216093, 18.315576502226975 ], [ -64.86531675747284, 18.315578010970285 ], [ -64.865315247419858, 18.315579518403865 ], [ -64.865313738676548, 18.315581028456847 ], [ -64.86531223124291, 18.315582537200157 ], [ -64.865310722499657, 18.31558387830529 ], [ -64.865309212446675, 18.3155853870486 ], [ -64.865307703703365, 18.315586894482237 ], [ -64.865306196269728, 18.31558840453522 ], [ -64.865304518578625, 18.315589913278473 ], [ -64.865224556493615, 18.315682617172115 ], [ -64.865143250684127, 18.315720671030817 ], [ -64.86509530748458, 18.31579107905128 ], [ -64.86504065744964, 18.315861653400248 ], [ -64.865012997155873, 18.31594513850564 ], [ -64.86496505264671, 18.31601571416428 ], [ -64.864890452362943, 18.31606030460091 ], [ -64.86488290864645, 18.316143957344423 ], [ -64.864875366239687, 18.31622777641644 ], [ -64.864841000420142, 18.316304722324503 ], [ -64.864806465652805, 18.316381834561071 ], [ -64.864785512194487, 18.316465487304583 ], [ -64.864811831383065, 18.316549474014778 ], [ -64.864797582140852, 18.316633293086738 ], [ -64.864769754208965, 18.316716775572786 ], [ -64.864748799440918, 18.316800428316299 ], [ -64.864707560457532, 18.316877540552866 ], [ -64.86466632147409, 18.316954486460986 ], [ -64.8645984267161, 18.317011987654041 ], [ -64.864523661413557, 18.317062949649824 ], [ -64.864449062439462, 18.317107372448334 ], [ -64.864374294517575, 18.317158334444059 ], [ -64.864326351318084, 18.317228911412371 ], [ -64.864239347121327, 18.317310717516989 ], [ -64.864212022103857, 18.317349106651932 ], [ -64.864099704547357, 18.317390345635374 ], [ -64.864018901652287, 18.317449355571739 ], [ -64.863962073631171, 18.317491431436224 ], [ -64.863887307018956, 18.317536358458824 ], [ -64.863800804426944, 18.317552619358764 ], [ -64.863717321940896, 18.317580279652532 ], [ -64.863630819348941, 18.317599559348764 ], [ -64.863541469527831, 18.317612970400262 ], [ -64.863452286035226, 18.317615148386494 ], [ -64.863369137515804, 18.317591680355974 ], [ -64.863292023969564, 18.317560833627851 ], [ -64.863204515548716, 18.317534346801096 ], [ -64.863116842109093, 18.317533677558174 ], [ -64.863028998411949, 18.317545747504539 ], [ -64.862941157334205, 18.317551447201424 ], [ -64.862853314946733, 18.317557314536487 ], [ -64.862765640197438, 18.317556476345771 ], [ -64.862677965448086, 18.317549435543697 ], [ -64.862590289389118, 18.317542225793829 ], [ -64.862502615949495, 18.317535017353634 ], [ -64.862421814364097, 18.317502161587129 ], [ -64.86234118041682, 18.317469304510894 ], [ -64.862253673305645, 18.317449186623946 ], [ -64.862165830918173, 18.317448517381024 ], [ -64.862078156168877, 18.317447679190309 ], [ -64.861990481419582, 18.317440638388234 ], [ -64.861902471393989, 18.317465616471736 ], [ -64.861814796644637, 18.317452036472389 ], [ -64.861727121895342, 18.317451367229467 ], [ -64.861739862394302, 18.317535186301484 ], [ -64.861759308418982, 18.317619171701949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_227", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 22.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.867351884540994, 18.348020009911011 ], [ -64.867316846859183, 18.348017160062568 ], [ -64.86722447955151, 18.348009616346133 ], [ -64.867132109624492, 18.348008778155361 ], [ -64.867039908645324, 18.348008107602823 ], [ -64.866954414501549, 18.34802772126568 ], [ -64.866868917738429, 18.348054208092435 ], [ -64.866797503889075, 18.348100979134585 ], [ -64.866718881599581, 18.348141044651015 ], [ -64.866633387455806, 18.348174404641668 ], [ -64.866554931494704, 18.348214470158098 ], [ -64.866497431611322, 18.348281693053821 ], [ -64.866461221772227, 18.348362829915516 ], [ -64.866439093537224, 18.348450839941108 ], [ -64.866374552851767, 18.348511357311111 ], [ -64.866316886639936, 18.348605905224304 ], [ -64.866269277407014, 18.348533653184234 ], [ -64.866242621632466, 18.348448325368963 ], [ -64.866005413658684, 18.34813853007887 ], [ -64.865937352572246, 18.34808555642536 ], [ -64.865862250683733, 18.34803912065945 ], [ -64.865780275631323, 18.347999222781198 ], [ -64.865698300578913, 18.347965862790545 ], [ -64.865616325526446, 18.347925797274115 ], [ -64.865506857818445, 18.347892102007165 ], [ -64.865452207783505, 18.347878690955667 ], [ -64.865645829839821, 18.34769847995085 ], [ -64.865901479319064, 18.347489435185253 ], [ -64.866088060573361, 18.347327161461862 ], [ -64.866128962970834, 18.347353648288617 ], [ -64.866204064859346, 18.347400084054527 ], [ -64.866279000419354, 18.347459763233815 ], [ -64.866619976404252, 18.347665455236495 ], [ -64.866715528836664, 18.347725302053902 ], [ -64.866797337560627, 18.347765199932155 ], [ -64.866872439449139, 18.347811635698065 ], [ -64.866954414501549, 18.347851533576318 ], [ -64.867351884540994, 18.348020009911011 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_566", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.959821070364967, 18.311785533238549 ], [ -64.96025458260533, 18.311861976232194 ], [ -64.960688764088616, 18.312008659608239 ], [ -64.961228558912296, 18.312113265810069 ], [ -64.961677829138239, 18.312245867581964 ], [ -64.961916378217154, 18.312462791340295 ], [ -64.962004220604626, 18.312736041515052 ], [ -64.961956108457287, 18.313094116590605 ], [ -64.961891567771829, 18.313624356040123 ], [ -64.961805401765844, 18.314035237131066 ], [ -64.961675649842391, 18.314296920273819 ], [ -64.961748404796879, 18.314584252052612 ], [ -64.961862566372929, 18.315000665202319 ], [ -64.961891400133709, 18.315431662870537 ], [ -64.961707836366031, 18.315817564568363 ], [ -64.961345737974966, 18.3160297944587 ], [ -64.960652052644775, 18.316368760095543 ], [ -64.96020110472773, 18.316422739577888 ], [ -64.959946462386995, 18.316348977484836 ], [ -64.959752672692559, 18.316161056435078 ], [ -64.959425275397336, 18.315814379443623 ], [ -64.959200975560634, 18.31571212148549 ], [ -64.959034175607371, 18.315897361634597 ], [ -64.958791435574824, 18.316182346479366 ], [ -64.958504271434208, 18.316395245612625 ], [ -64.958157260476128, 18.316593395208486 ], [ -64.957854673626173, 18.316759355661361 ], [ -64.957579916017835, 18.316847702272923 ], [ -64.957589639030175, 18.31589065610882 ], [ -64.957665745437907, 18.315843045566282 ], [ -64.957750236372135, 18.315811530904853 ], [ -64.957826176451363, 18.315771968302897 ], [ -64.957894068590008, 18.315716143491272 ], [ -64.957936649988255, 18.315644228037172 ], [ -64.957996161529366, 18.315580357904309 ], [ -64.958038741617941, 18.315508441140537 ], [ -64.958114849335345, 18.315460664269494 ], [ -64.958191123381198, 18.315413055036572 ], [ -64.95825063623198, 18.31534130591092 ], [ -64.958326576311208, 18.315301574361115 ], [ -64.958386086542646, 18.315237873176102 ], [ -64.958428666631221, 18.31516578746448 ], [ -64.958496561389211, 18.315110132910377 ], [ -64.958564287199408, 18.315054309408424 ], [ -64.958640393607084, 18.314998653544592 ], [ -64.958708288365074, 18.314942996371144 ], [ -64.958784394772806, 18.314903435078804 ], [ -64.958868716759241, 18.314879964428997 ], [ -64.958961254324379, 18.314864543029387 ], [ -64.959053958218021, 18.314849120320162 ], [ -64.959146494473543, 18.314849958510877 ], [ -64.959247580274337, 18.314850629063471 ], [ -64.959340116529859, 18.314851299616009 ], [ -64.959432483837531, 18.314868231068601 ], [ -64.959499371456957, 18.314924892761269 ], [ -64.959574642293319, 18.314965628830237 ], [ -64.959632980367417, 18.315030504791991 ], [ -64.959691318441514, 18.315095213115569 ], [ -64.959741274608405, 18.31516780043188 ], [ -64.959791061827502, 18.315256648648244 ], [ -64.959857781808807, 18.315313477979032 ], [ -64.959950319374002, 18.315322195162537 ], [ -64.960026425781678, 18.315282632560525 ], [ -64.960077555415637, 18.315202669165842 ], [ -64.960120135504212, 18.315130583454277 ], [ -64.96018802895253, 18.315074928900117 ], [ -64.96025575476267, 18.315019105398164 ], [ -64.960331862480075, 18.314971496165299 ], [ -64.96041618446651, 18.314948026825107 ], [ -64.960458933502878, 18.314876110061334 ], [ -64.960476535508008, 18.314787764759444 ], [ -64.960493968565288, 18.314699587095731 ], [ -64.960469493396317, 18.314618953148454 ], [ -64.960444850589113, 18.314538486839353 ], [ -64.960428758636965, 18.314449973899286 ], [ -64.960454742549302, 18.314369675228306 ], [ -64.96048072646164, 18.314289544195503 ], [ -64.9605400690549, 18.314217795069851 ], [ -64.960582816781653, 18.314145710667958 ], [ -64.960642329632435, 18.314073793904186 ], [ -64.960718436040111, 18.314026184671263 ], [ -64.960786498436278, 18.313946388914701 ], [ -64.960829078524853, 18.313874304512808 ], [ -64.960871824941876, 18.313802387749035 ], [ -64.960914405030451, 18.313730470985263 ], [ -64.96096553466441, 18.313658386583313 ], [ -64.961016665607985, 18.313586469819541 ], [ -64.961025716758058, 18.31349812451765 ], [ -64.96102655494883, 18.31340977921576 ], [ -64.960985149636883, 18.31333719189945 ], [ -64.960892612071746, 18.313336521346855 ], [ -64.96080007581628, 18.31331958989432 ], [ -64.960707708508608, 18.313294779448995 ], [ -64.960632437672245, 18.31325404337997 ], [ -64.960548618600285, 18.313221353941913 ], [ -64.960481730980803, 18.313164524611125 ], [ -64.96040646145417, 18.31311574191119 ], [ -64.96033940750624, 18.313075005842222 ], [ -64.960331025599032, 18.313075005842222 ], [ -64.960238655672015, 18.313056565646377 ], [ -64.960163218507205, 18.313015829577353 ], [ -64.960087782652067, 18.312975093508385 ], [ -64.960012679453882, 18.31291826417754 ], [ -64.959954341379785, 18.312853555853962 ], [ -64.959896004615359, 18.312780800899475 ], [ -64.959821070364967, 18.311785533238549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_561", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.861382457871287, 18.318254352629538 ], [ -64.861334513362124, 18.31832492959785 ], [ -64.861293274378681, 18.31840187550597 ], [ -64.861168216323222, 18.318474796788905 ], [ -64.861151117232566, 18.318498936681635 ], [ -64.861133347589316, 18.318587618569495 ], [ -64.861124127491394, 18.31867629783801 ], [ -64.861072662581194, 18.31874854987808 ], [ -64.860979623411254, 18.318763972587305 ], [ -64.860886584241314, 18.31876330334444 ], [ -64.860810141247669, 18.318803033584516 ], [ -64.860750294430261, 18.318875285624586 ], [ -64.860674521989154, 18.318834212969648 ], [ -64.860615848638759, 18.318769169369773 ], [ -64.860531694290501, 18.318736144655418 ], [ -64.860436978739131, 18.318719045564706 ], [ -64.860429099746341, 18.318710496019378 ], [ -64.860393225183543, 18.318671771608138 ], [ -64.860312423598145, 18.318638746893726 ], [ -64.860224748848793, 18.31863807765086 ], [ -64.860136738823201, 18.318663223372425 ], [ -64.860048896435785, 18.318668921759695 ], [ -64.859961054048313, 18.31868752959366 ], [ -64.85987321166084, 18.318686691402945 ], [ -64.859785369273368, 18.31869892898743 ], [ -64.85969786216225, 18.318672443470348 ], [ -64.859617228214972, 18.318633048506513 ], [ -64.85955034059549, 18.318574541484622 ], [ -64.85950373719146, 18.31850329658306 ], [ -64.85948429116678, 18.31841930856325 ], [ -64.859444394598142, 18.318341524464415 ], [ -64.85939778988444, 18.31826390931343 ], [ -64.859377338030868, 18.318236415348167 ], [ -64.85945847489262, 18.318265753333037 ], [ -64.859524859597627, 18.318319060953115 ], [ -64.859591244302635, 18.318372369882923 ], [ -64.859657629007643, 18.31842567881273 ], [ -64.859729713409592, 18.318478987742537 ], [ -64.859804982936225, 18.318521232554815 ], [ -64.859883102311358, 18.318557946618 ], [ -64.859973123994678, 18.318580911734045 ], [ -64.860060128191435, 18.318587281983525 ], [ -64.860147300026313, 18.318590802384563 ], [ -64.860234639499311, 18.318585940878393 ], [ -64.860321978972308, 18.31857822952378 ], [ -64.860408983169066, 18.318598513739175 ], [ -64.860492969879203, 18.318635226492745 ], [ -64.860580141714081, 18.318638746893726 ], [ -64.860667481187136, 18.318625503480348 ], [ -64.860749120963249, 18.318592815351963 ], [ -64.860827910890919, 18.318554592545468 ], [ -64.860903850970146, 18.318508156779558 ], [ -64.860979791049374, 18.318467085434293 ], [ -64.861058748615221, 18.31842886393747 ], [ -64.861131838846006, 18.31838226053344 ], [ -64.861210628773676, 18.318346722556555 ], [ -64.861257399815884, 18.31831671532882 ], [ -64.861382457871287, 18.318254352629538 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_395", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.876243073803096, 18.303569924387091 ], [ -64.876212563660886, 18.303648881952881 ], [ -64.876185407591265, 18.303727839518729 ], [ -64.876164786789843, 18.303809982209259 ], [ -64.876107789820878, 18.303879049124589 ], [ -64.876041069839573, 18.303932358054396 ], [ -64.875967645642163, 18.303979296734724 ], [ -64.875891033700725, 18.304023050290311 ], [ -64.875811237944163, 18.304057080833559 ], [ -64.875724905609673, 18.304078538515967 ], [ -64.875635385531098, 18.304084238212852 ], [ -64.875604204836293, 18.304083902936611 ], [ -64.875531283553357, 18.304077029772657 ], [ -64.875455509802578, 18.304032102750114 ], [ -64.87537956972335, 18.303987175727514 ], [ -64.875303798591915, 18.303942248704914 ], [ -64.875228024841192, 18.303894136557574 ], [ -64.875152252400085, 18.303849209534974 ], [ -64.87506960679508, 18.303816855373213 ], [ -64.874986962499804, 18.303790871460876 ], [ -64.874897611369022, 18.303787015783541 ], [ -64.874808092600119, 18.303782992468086 ], [ -64.874718741469394, 18.303775951666069 ], [ -64.874632406515559, 18.303784836487694 ], [ -64.874542887746657, 18.303790368546458 ], [ -64.874456555412166, 18.303808641104126 ], [ -64.874383128595412, 18.303855579784454 ], [ -64.874322946501707, 18.303915258963741 ], [ -64.874266118480591, 18.303978123267711 ], [ -64.874192691663836, 18.304028079434659 ], [ -64.874109544454086, 18.304059092491286 ], [ -64.874016840560444, 18.304058421938691 ], [ -64.873930505606609, 18.304079879621099 ], [ -64.873847358396858, 18.304104522428304 ], [ -64.873764377515613, 18.304129165235452 ], [ -64.873687765574118, 18.304169733666299 ], [ -64.873672007588596, 18.304215163603317 ], [ -64.872530728413892, 18.303596578851966 ], [ -64.872849576163787, 18.303389042829679 ], [ -64.873121988147773, 18.303250238446481 ], [ -64.873453576396628, 18.303116630845693 ], [ -64.873777285652693, 18.303011689367565 ], [ -64.874243990245589, 18.302827455047293 ], [ -64.874526626846659, 18.302739947936118 ], [ -64.874906159604677, 18.302622602545 ], [ -64.875348556666722, 18.302505757448955 ], [ -64.875633207544922, 18.302417747423362 ], [ -64.875949036498525, 18.30236007990186 ], [ -64.87629705459517, 18.302242397924715 ], [ -64.876613554101368, 18.302094373443595 ], [ -64.876930054917239, 18.301976357499882 ], [ -64.877056621715951, 18.301917179925397 ], [ -64.877436154473969, 18.301799834534279 ], [ -64.877641175924055, 18.301644601612907 ], [ -64.877822225119587, 18.301545693798289 ], [ -64.87816102180858, 18.301447960760299 ], [ -64.878477019710033, 18.301371685404831 ], [ -64.878814978208368, 18.301360118372884 ], [ -64.879180597000413, 18.301487858638609 ], [ -64.879460217424594, 18.301680642504209 ], [ -64.878614985902573, 18.30264774695695 ], [ -64.878532507935688, 18.302612207670393 ], [ -64.878456735494638, 18.302567280647793 ], [ -64.878370569488595, 18.302553869596295 ], [ -64.87829731161969, 18.302600809586295 ], [ -64.878214666014685, 18.302574824364285 ], [ -64.878132188047857, 18.302542471512197 ], [ -64.878049542442852, 18.30251648759986 ], [ -64.87796320879869, 18.302528388598432 ], [ -64.877833456875237, 18.302578009489025 ], [ -64.877766736893932, 18.302640873793052 ], [ -64.877706554800227, 18.302700552972283 ], [ -64.877652910594122, 18.30276660240105 ], [ -64.877595913625157, 18.30282946670502 ], [ -64.877532546406769, 18.302885793121391 ], [ -64.877482087325404, 18.302955027674898 ], [ -64.877418720106959, 18.303014706854128 ], [ -64.877361723137994, 18.303077571158155 ], [ -64.877295003156689, 18.303130880087963 ], [ -64.877231468300124, 18.303187374142453 ], [ -64.877164748318819, 18.30324370055888 ], [ -64.877098028337514, 18.303297009488631 ], [ -64.877070368043746, 18.303336069176225 ], [ -64.877050251466471, 18.303367585147271 ], [ -64.876993422135627, 18.303430449451298 ], [ -64.876900718242041, 18.303417038399743 ], [ -64.876811199473138, 18.303419386643441 ], [ -64.876731236078456, 18.303456768639876 ], [ -64.876651441631566, 18.303494151945984 ], [ -64.876574829690071, 18.303537905501571 ], [ -64.876488663684086, 18.303527679574813 ], [ -64.876409538480118, 18.303492140288256 ], [ -64.876326892875113, 18.303466156375919 ], [ -64.876253971592121, 18.303471856072861 ], [ -64.876240559230951, 18.303484428933643 ], [ -64.876243073803096, 18.303569924387091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_171", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.891322289874722, 18.313236441374897 ], [ -64.891253056630887, 18.313280362568605 ], [ -64.891192874537182, 18.313347250188087 ], [ -64.891121794654453, 18.31339519469725 ], [ -64.891053064325092, 18.313445318502318 ], [ -64.89097762585061, 18.313488904419728 ], [ -64.890897831403777, 18.313524108429988 ], [ -64.890820213633447, 18.313561491736095 ], [ -64.890736060594804, 18.313586134543243 ], [ -64.890649894588762, 18.313600216147336 ], [ -64.890561549286929, 18.313603736548373 ], [ -64.890473202675366, 18.313598707404083 ], [ -64.890391899485167, 18.31356853253817 ], [ -64.890298860315227, 18.313561827012393 ], [ -64.890255274397816, 18.313529472850576 ], [ -64.890191067678984, 18.313470967138358 ], [ -64.890134910210406, 18.31340475007147 ], [ -64.890095178660602, 18.31333098928809 ], [ -64.890034996566897, 18.313268627898537 ], [ -64.889995098688644, 18.313194867115158 ], [ -64.889971629348508, 18.313113562615342 ], [ -64.889976324526174, 18.313028402438192 ], [ -64.889993254669093, 18.312947433214617 ], [ -64.890030471646696, 18.312870487306554 ], [ -64.890637489366156, 18.312867805096232 ], [ -64.890729018483057, 18.312923796236305 ], [ -64.890841672625527, 18.312910385184807 ], [ -64.890937561643909, 18.312850370729223 ], [ -64.89096354555619, 18.312724809759402 ], [ -64.890962538417682, 18.312626573806995 ], [ -64.891421866932262, 18.312970567278512 ], [ -64.891417509650182, 18.313001412696963 ], [ -64.891388506941553, 18.313082381920538 ], [ -64.891367553483235, 18.313163351144112 ], [ -64.891322289874722, 18.313236441374897 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1138", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.994429791007292, 18.362420291499404 ], [ -64.993705929501459, 18.362281487116206 ], [ -64.993741636426137, 18.362205211760681 ], [ -64.993757226773539, 18.362119381030936 ], [ -64.993788073501719, 18.362038245478914 ], [ -64.993850267253151, 18.361965824491051 ], [ -64.993917322510754, 18.361852165829418 ], [ -64.993969121387579, 18.361781254894481 ], [ -64.994023268508045, 18.361702129690514 ], [ -64.994023268508045, 18.361700118032786 ], [ -64.994076912714149, 18.361667763871026 ], [ -64.994216387649942, 18.361571036661928 ], [ -64.994285286927152, 18.361520577580563 ], [ -64.994339098771377, 18.361455701618866 ], [ -64.994436162566387, 18.361346233910808 ], [ -64.994494331692692, 18.36128353855463 ], [ -64.994573624534837, 18.36124330540008 ], [ -64.994659119988228, 18.361227713743006 ], [ -64.994742771422125, 18.361201729830668 ], [ -64.99486078867551, 18.361152276578196 ], [ -64.99495097799695, 18.36114808562462 ], [ -64.995036305812278, 18.361129645428775 ], [ -64.995243338920091, 18.361704476624539 ], [ -64.994964891962923, 18.361813776694419 ], [ -64.99478384276739, 18.361907990641043 ], [ -64.994497181541135, 18.362206888142111 ], [ -64.994429791007292, 18.362420291499404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_681", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.871590446064204, 18.311659301716134 ], [ -64.871634870172386, 18.311731386118026 ], [ -64.871724890546034, 18.311746473551011 ], [ -64.871814913539026, 18.311747144103606 ], [ -64.871905101550794, 18.311747983603993 ], [ -64.871995124543787, 18.311755862596726 ], [ -64.872122697171392, 18.311764075556141 ], [ -64.87221271754504, 18.311771954548874 ], [ -64.87229502918342, 18.311808499664266 ], [ -64.872369628157514, 18.311859294021929 ], [ -64.872429138388952, 18.311924337621804 ], [ -64.872458476373822, 18.312003462825771 ], [ -64.872517820276812, 18.312068506425646 ], [ -64.872562244384994, 18.312140590827539 ], [ -64.87260666849312, 18.312212675229489 ], [ -64.872651092601302, 18.312284759631382 ], [ -64.87270306042592, 18.312356844033332 ], [ -64.872709764642025, 18.312443010039317 ], [ -64.87272401519391, 18.312529176045359 ], [ -64.872730719410015, 18.312615342051345 ], [ -64.872730050167092, 18.31270134041921 ], [ -64.872744299409362, 18.312787506425252 ], [ -64.872728875390408, 18.312830421790125 ], [ -64.872720996397675, 18.312867637458055 ], [ -64.872690318617288, 18.312946259747605 ], [ -64.872674560631765, 18.31303225811547 ], [ -64.872636171496822, 18.3131107127669 ], [ -64.872597951309615, 18.313189335056393 ], [ -64.8725746496076, 18.313275165786138 ], [ -64.87256643533857, 18.313361164154003 ], [ -64.872528212532075, 18.313439786443553 ], [ -64.872519830624867, 18.313525784811418 ], [ -64.872504072639344, 18.313611783179283 ], [ -64.872480772247002, 18.313697613909028 ], [ -64.872457470544987, 18.313783444638773 ], [ -64.872441712559407, 18.313869443006638 ], [ -64.872433498290377, 18.313955441374503 ], [ -64.872402820510047, 18.314034063664053 ], [ -64.872386893576675, 18.314119894393741 ], [ -64.872356217106017, 18.314198516683291 ], [ -64.872317995609137, 18.314277138972841 ], [ -64.872279774112314, 18.314355761262391 ], [ -64.872211713025877, 18.314412590593179 ], [ -64.872165946502889, 18.314483836804357 ], [ -64.872105261494767, 18.314547874575396 ], [ -64.872037200408272, 18.314604703906184 ], [ -64.871976515400149, 18.314668740367551 ], [ -64.871915999339819, 18.314732779448207 ], [ -64.871840226898769, 18.314804024349769 ], [ -64.871764622095839, 18.314853478911914 ], [ -64.871696561009344, 18.314910308242702 ], [ -64.871628499922906, 18.314967137573547 ], [ -64.871560438836411, 18.315023966904334 ], [ -64.871514673623096, 18.315095379444017 ], [ -64.871454156253151, 18.315159418524729 ], [ -64.871393471244971, 18.315223456295712 ], [ -64.871347706031713, 18.315294870145067 ], [ -64.871302108456518, 18.315366116356245 ], [ -64.871248967164888, 18.315433842166442 ], [ -64.871203201951573, 18.315505256015797 ], [ -64.871157604376378, 18.315576502226975 ], [ -64.871096919368256, 18.315640539997958 ], [ -64.871051154154941, 18.31571195253764 ], [ -64.870970855483961, 18.315788395531342 ], [ -64.870921569869665, 18.315862492900635 ], [ -64.870872116617136, 18.315936421322135 ], [ -64.87083255401518, 18.316010685019933 ], [ -64.870792823775048, 18.31608478107961 ], [ -64.870743538160696, 18.31615870950111 ], [ -64.870703807920563, 18.316232973198851 ], [ -64.870664245318608, 18.316307069258528 ], [ -64.870614792066135, 18.316381165318148 ], [ -64.870546060427102, 18.316436318267563 ], [ -64.870477328788013, 18.316491637545425 ], [ -64.870399041774817, 18.316528351608611 ], [ -64.870320754761565, 18.316564895414331 ], [ -64.870242467748312, 18.316610829575438 ], [ -64.870144567072202, 18.316656427150633 ], [ -64.87006628005895, 18.316693138594474 ], [ -64.869978270033357, 18.316720297283496 ], [ -64.869899983020105, 18.316766230134931 ], [ -64.869821696006852, 18.316802775250324 ], [ -64.869743241355479, 18.316867314626109 ], [ -64.869674509716447, 18.316922636523316 ], [ -64.869596055065017, 18.316977789472674 ], [ -64.869536878800204, 18.317042496486579 ], [ -64.869497316198192, 18.317116592546256 ], [ -64.869457250681819, 18.317237293319579 ], [ -64.869427243454027, 18.317320775805626 ], [ -64.869416849889092, 18.317404428549139 ], [ -64.869416011698377, 18.317488247621156 ], [ -64.869431434407602, 18.317663094205329 ], [ -64.869462950378704, 18.317768369650082 ], [ -64.86951542111774, 18.317887895646777 ], [ -64.869569568238262, 18.317955621456974 ], [ -64.869660428112354, 18.318071963638545 ], [ -64.869692614635994, 18.318169864314655 ], [ -64.869701499457619, 18.318253683386672 ], [ -64.869700828905025, 18.318337502458633 ], [ -64.869699990714309, 18.31842132153065 ], [ -64.869689597149375, 18.318504971654818 ], [ -64.869659589921582, 18.318588455450538 ], [ -64.869600581294947, 18.318653163774115 ], [ -64.869522126643517, 18.318699096625608 ], [ -64.869443839630264, 18.318735641741 ], [ -64.869355829604672, 18.318762800429965 ], [ -64.869218869241024, 18.318826836891333 ], [ -64.869130859215431, 18.318863382006725 ], [ -64.869052572202179, 18.31889992843179 ], [ -64.868974117550806, 18.318964467807518 ], [ -64.868934387310674, 18.319038563867196 ], [ -64.868885101696321, 18.319112659926816 ], [ -64.868845371456189, 18.319186755986493 ], [ -64.868834810253134, 18.319279796466105 ], [ -64.868785189362484, 18.319372499050019 ], [ -64.868764905147088, 18.319465370581838 ], [ -64.868754511582154, 18.319549022015678 ], [ -64.868704890691504, 18.319641725909321 ], [ -64.868636159052471, 18.319697046496799 ], [ -64.868538426014538, 18.319724037547701 ], [ -64.868450751265243, 18.319723365685434 ], [ -64.868363076515891, 18.319722695132839 ], [ -64.868255955741915, 18.319721856942124 ], [ -64.868168113354443, 18.319730406487452 ], [ -64.868080270966971, 18.319738956032836 ], [ -64.867958398036308, 18.319745493920436 ], [ -64.867864353037533, 18.319789415114144 ], [ -64.867782210346945, 18.319822272190379 ], [ -64.867699900018238, 18.319866193384144 ], [ -64.867640723753425, 18.319932913365449 ], [ -64.867581547488555, 18.319999465708577 ], [ -64.867545840563935, 18.320077417445532 ], [ -64.86750996600108, 18.320155369182544 ], [ -64.867474091438282, 18.320244385036972 ], [ -64.867449951545552, 18.320333568529577 ], [ -64.867402343622302, 18.320411520266532 ], [ -64.867366635387953, 18.320489472003487 ], [ -64.867330594496707, 18.320589719613622 ], [ -64.867318021635867, 18.320679070744347 ], [ -64.867328916805548, 18.32076858951325 ], [ -64.867324725851972, 18.320859114111045 ], [ -64.867323887661257, 18.320946118307745 ], [ -64.867323217108662, 18.321033290142623 ], [ -64.867313326458202, 18.32112029433938 ], [ -64.867276110790215, 18.321198413714512 ], [ -64.867257000041775, 18.321285417911213 ], [ -64.867219784373845, 18.321363537286345 ], [ -64.86716446378631, 18.321432771839795 ], [ -64.8670910395889, 18.321484572026293 ], [ -64.866999675490774, 18.321492451019083 ], [ -64.866918035714605, 18.321439477365573 ], [ -64.866864057541932, 18.32136940462135 ], [ -64.866791468915892, 18.321316598606018 ], [ -64.866736149638086, 18.321385833159468 ], [ -64.866653670361529, 18.321420031340836 ], [ -64.866599524550679, 18.321349790958493 ], [ -64.866572868776132, 18.321271168669 ], [ -64.866527941753532, 18.32119237874133 ], [ -64.866473963580859, 18.321122305997108 ], [ -64.866438087708332, 18.321043516069437 ], [ -64.866402380783711, 18.320964726141767 ], [ -64.866357453761111, 18.320885936214097 ], [ -64.866303306640589, 18.320815863469875 ], [ -64.866239939422144, 18.320754340271037 ], [ -64.866176739841876, 18.320692817072199 ], [ -64.866113372623431, 18.320631293873362 ], [ -64.866050005404986, 18.320569770674467 ], [ -64.865996025922641, 18.320499697930302 ], [ -64.865932658704196, 18.320438174731464 ], [ -64.865869291485751, 18.32037665153257 ], [ -64.86584532054087, 18.320345638475942 ], [ -64.865843476521263, 18.320343123903797 ], [ -64.865841798830161, 18.320340944607949 ], [ -64.865789495729246, 18.320270871863727 ], [ -64.865722440471643, 18.320213036704047 ], [ -64.865662930240148, 18.320147993104172 ], [ -64.86558833126611, 18.320104239548584 ], [ -64.865528818415328, 18.320039195948709 ], [ -64.865484395616818, 18.319967111546816 ], [ -64.865424882766035, 18.319902067946941 ], [ -64.865357827508433, 18.319837024347066 ], [ -64.865298483605443, 18.319771980747191 ], [ -64.865238973374005, 18.319706937147316 ], [ -64.865179460523223, 18.319641893547441 ], [ -64.86513503641504, 18.319569809145548 ], [ -64.86514291540783, 18.319491857408593 ], [ -64.865152973696468, 18.319396136028331 ], [ -64.86517208444485, 18.319343162374821 ], [ -64.865196559613878, 18.319307790726441 ], [ -64.865260094470443, 18.319256996368836 ], [ -64.865323630636738, 18.319209554774091 ], [ -64.865393031518636, 18.319146187555646 ], [ -64.865469474512338, 18.319098913599021 ], [ -64.865535022336303, 18.319049795622846 ], [ -64.865592857495983, 18.319014926888883 ], [ -64.865648513359815, 18.318944183592123 ], [ -64.865719255346903, 18.318888863004588 ], [ -64.865801565675611, 18.318844775482376 ], [ -64.865895275398088, 18.318834380607825 ], [ -64.865985464719586, 18.318849300402633 ], [ -64.866082191928626, 18.318869584618028 ], [ -64.866151929396551, 18.318925911034398 ], [ -64.866233401534544, 18.318971340971473 ], [ -64.866326609652276, 18.31901677090849 ], [ -64.866408249428389, 18.31905097039953 ], [ -64.866501791512746, 18.319051808590245 ], [ -64.866583932893661, 18.31901895151401 ], [ -64.866689712562504, 18.31897502901063 ], [ -64.866760455859264, 18.318919708423095 ], [ -64.866796162783942, 18.31884175668614 ], [ -64.86683203734674, 18.318763804949185 ], [ -64.866844611517251, 18.31867462145658 ], [ -64.866845114431669, 18.31860756750865 ], [ -64.866845280760117, 18.318585102687678 ], [ -64.866826170011734, 18.31850128361566 ], [ -64.866662387545034, 18.31846306342851 ], [ -64.866575887572424, 18.318425512484282 ], [ -64.866499275630929, 18.318369521344152 ], [ -64.866441943385666, 18.318304645382455 ], [ -64.866394669429042, 18.31821210781726 ], [ -64.866356784518189, 18.31812896060751 ], [ -64.866357453761111, 18.318045978416592 ], [ -64.866339013565266, 18.317962829897169 ], [ -64.866330128743641, 18.317879850325539 ], [ -64.866311520909619, 18.317796869444237 ], [ -64.866312191462214, 18.317713888562992 ], [ -64.866303306640589, 18.317630906372017 ], [ -64.866304144831304, 18.317548094438564 ], [ -64.866304815383899, 18.317465113557262 ], [ -64.866295930562273, 18.317382131366344 ], [ -64.866296602424484, 18.317299150485042 ], [ -64.866297440615199, 18.317216338551589 ], [ -64.866298109858121, 18.317133356360614 ], [ -64.866289226346169, 18.317050375479369 ], [ -64.866280341524543, 18.316967394598066 ], [ -64.866242453994289, 18.316884247388316 ], [ -64.866214290786104, 18.316801097559221 ], [ -64.866156958540898, 18.316736055269018 ], [ -64.866109516946096, 18.316661959209398 ], [ -64.866061907713231, 18.316587863149721 ], [ -64.866004575467969, 18.316522987188023 ], [ -64.865954451662901, 18.316435312438671 ], [ -64.865890247563414, 18.316374627430548 ], [ -64.865842638330548, 18.316300531370928 ], [ -64.865795027787954, 18.31622643531125 ], [ -64.865747418555088, 18.31615233925163 ], [ -64.865690255257675, 18.316087295651755 ], [ -64.865632921702741, 18.316022418380328 ], [ -64.865585312469818, 18.31594832363038 ], [ -64.865527981534228, 18.315883280030505 ], [ -64.865470649289023, 18.31581840406875 ], [ -64.865383477454145, 18.3158071723131 ], [ -64.865382136348956, 18.31580381955024 ], [ -64.865372076750646, 18.315780516538553 ], [ -64.865298317276995, 18.31573475263491 ], [ -64.865224556493615, 18.315682617172115 ], [ -64.865304518578625, 18.315589913278473 ], [ -64.865306196269728, 18.31558840453522 ], [ -64.865307703703365, 18.315586894482237 ], [ -64.865309212446675, 18.3155853870486 ], [ -64.865310722499657, 18.31558387830529 ], [ -64.86531223124291, 18.315582537200157 ], [ -64.865313738676548, 18.315581028456847 ], [ -64.865315247419858, 18.315579518403865 ], [ -64.86531675747284, 18.315578010970285 ], [ -64.865318266216093, 18.315576502226975 ], [ -64.86531977364973, 18.315574993483665 ], [ -64.86532128239304, 18.315573483430683 ], [ -64.865322792446023, 18.315571808358925 ], [ -64.865324301189276, 18.315570299615672 ], [ -64.865325808622913, 18.315568790872362 ], [ -64.865327317366223, 18.315567282129052 ], [ -64.865328827419205, 18.315565773385742 ], [ -64.865330334852786, 18.315564264642489 ], [ -64.865331843596095, 18.31556275589918 ], [ -64.865333353649078, 18.315561079517749 ], [ -64.865334862392388, 18.315559569464767 ], [ -64.86533620349752, 18.31555806203113 ], [ -64.86533771224083, 18.31555655328782 ], [ -64.865339219674411, 18.315555044544567 ], [ -64.865340728417721, 18.31555336816308 ], [ -64.86534206952291, 18.315551859419827 ], [ -64.865343579575836, 18.315550349366845 ], [ -64.865345088319145, 18.315548674295087 ], [ -64.865346429424278, 18.315547165551777 ], [ -64.865347936857916, 18.315545655498795 ], [ -64.865349445601225, 18.315543980427037 ], [ -64.865350786706358, 18.315542470374055 ], [ -64.865352295449668, 18.315540795302297 ], [ -64.865353636554801, 18.315539286558987 ], [ -64.865355146607783, 18.315537610177557 ], [ -64.865356486403243, 18.315536101434247 ], [ -64.865357996456225, 18.315534591381322 ], [ -64.865359337561415, 18.315532916309508 ], [ -64.865360846304668, 18.315531239928077 ], [ -64.865362187409858, 18.315529731184824 ], [ -64.865363694843438, 18.315528053493665 ], [ -64.8653650372583, 18.315526546060084 ], [ -64.865366378363433, 18.315524868368925 ], [ -64.86536788579707, 18.315523360935344 ], [ -64.865369228211875, 18.315521684553914 ], [ -64.865370569317065, 18.315520008172427 ], [ -64.865372076750646, 18.315518499429174 ], [ -64.865373417855835, 18.315516823047687 ], [ -64.86537476027064, 18.315515145356585 ], [ -64.865376101375773, 18.315513637922948 ], [ -64.865377608809411, 18.315511961541517 ], [ -64.865378951224216, 18.315510285160087 ], [ -64.865380292329405, 18.315508607468985 ], [ -64.865381633434538, 18.315507100035347 ], [ -64.865382974539671, 18.315505423653917 ], [ -64.86538431564486, 18.315503747272487 ], [ -64.865385655440321, 18.315502070891057 ], [ -64.865386996545453, 18.31550039450957 ], [ -64.865388337650643, 18.315498884456645 ], [ -64.865389678755776, 18.315497209384887 ], [ -64.865391019860908, 18.3154955330034 ], [ -64.86539236227577, 18.31549385662197 ], [ -64.865393703380903, 18.31549218024054 ], [ -64.865395044486036, 18.31549050385911 ], [ -64.865396385591225, 18.315488827477679 ], [ -64.865397725386686, 18.315487151096249 ], [ -64.865399066491875, 18.31548547340509 ], [ -64.865400407597008, 18.315483798333332 ], [ -64.865401582373693, 18.315482121951902 ], [ -64.865402923478825, 18.315480445570472 ], [ -64.865404264583958, 18.315478769189042 ], [ -64.865405604379475, 18.315477091497883 ], [ -64.865406777846488, 18.315475416426125 ], [ -64.865408120261293, 18.315473740044695 ], [ -64.865409461366426, 18.315472062353592 ], [ -64.865410802471615, 18.315470387281835 ], [ -64.865411974628955, 18.315468543262227 ], [ -64.865413315734088, 18.315466866880797 ], [ -64.865414490510773, 18.315465190499367 ], [ -64.865415831615906, 18.315463514117937 ], [ -64.865417003773246, 18.315461836426778 ], [ -64.865418344878435, 18.31546016135502 ], [ -64.865419518345391, 18.315458317335469 ], [ -64.86542085945058, 18.315456640954039 ], [ -64.865422034227265, 18.315454964572552 ], [ -64.865423375332398, 18.315453288191122 ], [ -64.865424547489738, 18.315451444171572 ], [ -64.865425888594871, 18.315449766480413 ], [ -64.865427063371556, 18.315448091408655 ], [ -64.865428235528896, 18.315446247389104 ], [ -64.865429576634028, 18.315444571007674 ], [ -64.865430751410713, 18.315442894626187 ], [ -64.865431923568053, 18.315441050606637 ], [ -64.865433098344738, 18.315439374225207 ], [ -64.865434439449928, 18.3154375302056 ], [ -64.865435611607211, 18.315435852514497 ], [ -64.865436786383896, 18.315434177442739 ], [ -64.865437958541236, 18.315432333423132 ], [ -64.865439133317921, 18.315430657041702 ], [ -64.865440305475261, 18.315428813022095 ], [ -64.865441480251945, 18.315427136640665 ], [ -64.865442821357078, 18.315425292621114 ], [ -64.865443993514418, 18.315423616239627 ], [ -64.865445168291103, 18.315421772220077 ], [ -64.865446340448443, 18.315420095838647 ], [ -64.865447515225128, 18.315418250509367 ], [ -64.865448519744348, 18.31541640648976 ], [ -64.865449694521033, 18.315414731418002 ], [ -64.865450866678316, 18.315412887398452 ], [ -64.865452041455001, 18.315411211016965 ], [ -64.865453213612341, 18.315409366997415 ], [ -64.865454388389026, 18.315407522977807 ], [ -64.865455560546366, 18.315405846596377 ], [ -64.865456566375258, 18.315404002576827 ], [ -64.86545773984227, 18.31540215855722 ], [ -64.865458914618955, 18.315400482175789 ], [ -64.865460086776238, 18.315398638156182 ], [ -64.86546109260513, 18.315396794136632 ], [ -64.865462267381815, 18.315394950117025 ], [ -64.865463439539155, 18.315393272425922 ], [ -64.865464445367991, 18.315391428406315 ], [ -64.865465618835003, 18.315389584386764 ], [ -64.865466624663895, 18.315387740367157 ], [ -64.86546779944058, 18.315386065295399 ], [ -64.865468805269415, 18.315384221275792 ], [ -64.865469977426756, 18.315382377256242 ], [ -64.86547098456532, 18.315380533236635 ], [ -64.865472156722603, 18.315378689217027 ], [ -64.865473162551496, 18.315376845197477 ], [ -64.86547433732818, 18.31537500117787 ], [ -64.865475341847343, 18.315373323486767 ], [ -64.865476347676235, 18.315371479467217 ], [ -64.86547752245292, 18.31536963544761 ], [ -64.865478528281756, 18.315367791428002 ], [ -64.865479532800975, 18.315365947408452 ], [ -64.86548070757766, 18.315364103388845 ], [ -64.865481713406496, 18.315362259369294 ], [ -64.865482719235388, 18.315360415349687 ], [ -64.865483723754551, 18.315358572639752 ], [ -64.865484729583443, 18.315356728620202 ], [ -64.865485904360128, 18.315354884600595 ], [ -64.865486908879291, 18.315353040581044 ], [ -64.865487914708183, 18.315351196561437 ], [ -64.865488920537018, 18.31534935254183 ], [ -64.86548992636591, 18.315347508522279 ], [ -64.865490933504418, 18.315345664502672 ], [ -64.86549193933331, 18.315343820483122 ], [ -64.865492943852473, 18.315341808825394 ], [ -64.865493949681365, 18.315339963496115 ], [ -64.865494955510201, 18.315338119476507 ], [ -64.865495962648765, 18.315336275456957 ], [ -64.865496799529808, 18.31533443143735 ], [ -64.865497805358643, 18.315332587417799 ], [ -64.865498812497208, 18.315330743398192 ], [ -64.865499818326043, 18.315328733050137 ], [ -64.865500822845263, 18.315326889030587 ], [ -64.86550166234565, 18.315325045010979 ], [ -64.865502666864813, 18.315323200991372 ], [ -64.865503672693706, 18.315321189333645 ], [ -64.865504510884421, 18.315319345314094 ], [ -64.865505516713313, 18.315317501294487 ], [ -64.865506522542148, 18.315315657274937 ], [ -64.865507360732863, 18.315313645617209 ], [ -64.865508366561755, 18.315311801597602 ], [ -64.86550920475247, 18.315309957577995 ], [ -64.865510210581306, 18.315308113558444 ], [ -64.865511048772021, 18.315306101900717 ], [ -64.865512054600913, 18.31530425788111 ], [ -64.865512892791628, 18.315302413861559 ], [ -64.865513898620463, 18.315300402203832 ], [ -64.865514736811178, 18.315298558184224 ], [ -64.865515742640071, 18.315296546526497 ], [ -64.865516580830786, 18.31529470250689 ], [ -64.865517420331173, 18.315292858487339 ], [ -64.865518424850393, 18.315290846829612 ], [ -64.86551926435078, 18.315289002810005 ], [ -64.865520102541495, 18.315286991152277 ], [ -64.865520939422538, 18.315285147132727 ], [ -64.865521777613253, 18.315283135474999 ], [ -64.865522783442145, 18.315281291455392 ], [ -64.86552362163286, 18.315279447435785 ], [ -64.865524459823575, 18.315277434468385 ], [ -64.865525299323963, 18.315275590448834 ], [ -64.865526137514678, 18.315273580100779 ], [ -64.865526974395721, 18.315271736081172 ], [ -64.865527812586436, 18.315269724423445 ], [ -64.865528650777151, 18.315267711456045 ], [ -64.865529490277538, 18.315265867436494 ], [ -64.865530328468253, 18.315263857088439 ], [ -64.865531165349296, 18.315262013068832 ], [ -64.865532003540011, 18.315260001411104 ], [ -64.865532841730783, 18.315258157391497 ], [ -64.86553368123117, 18.315256144424097 ], [ -64.865534350474036, 18.315254134076042 ], [ -64.865535188664751, 18.315252290056492 ], [ -64.865536026855523, 18.315250278398764 ], [ -64.86553686635591, 18.315248434379157 ], [ -64.865537535598776, 18.315246421411757 ], [ -64.865538373789491, 18.315244411063702 ], [ -64.865539213289878, 18.315242567044152 ], [ -64.865539882532801, 18.315240555386424 ], [ -64.865540720723516, 18.315238542419024 ], [ -64.865541560223903, 18.315236698399417 ], [ -64.865542229466826, 18.315234688051362 ], [ -64.865543067657541, 18.315232676393634 ], [ -64.865543739519808, 18.315230663426235 ], [ -64.86554457640085, 18.315228819406627 ], [ -64.865545248263061, 18.315226809058572 ], [ -64.865546086453833, 18.315224797400845 ], [ -64.865546755696698, 18.315222784433445 ], [ -64.865547427558965, 18.315220940413894 ], [ -64.865548264440008, 18.315218930065839 ], [ -64.865548936302275, 18.315216918408112 ], [ -64.865549605545141, 18.315214905440712 ], [ -64.865550443735856, 18.315213061421105 ], [ -64.865551115598123, 18.315211051073049 ], [ -64.865551784841045, 18.315209039415322 ], [ -64.865552455393583, 18.315207026447922 ], [ -64.865553127255851, 18.315205016099867 ], [ -64.865553965446566, 18.315203004442139 ], [ -64.865554634689488, 18.315201160422532 ], [ -64.865555306551755, 18.315199147455132 ], [ -64.865555975794621, 18.315197137107077 ], [ -64.865556646347216, 18.31519512544935 ], [ -64.86555731689981, 18.315193113791622 ], [ -64.865557987452348, 18.315191102133895 ], [ -64.865558659314615, 18.315189090476167 ], [ -64.865559328557538, 18.31518707881844 ], [ -64.865560000419748, 18.315185234798889 ], [ -64.865560669662671, 18.315183223141162 ], [ -64.865561172577088, 18.315181211483434 ], [ -64.865561844439355, 18.315179199825707 ], [ -64.865562513682221, 18.315177188167979 ], [ -64.865563185544488, 18.315175176510252 ], [ -64.86556385478741, 18.315173164852524 ], [ -64.865564357701828, 18.315171153194797 ], [ -64.865565029564095, 18.315169141537069 ], [ -64.865565698806961, 18.315167129879342 ], [ -64.865566201721435, 18.315165118221614 ], [ -64.865566873583646, 18.315163106563887 ], [ -64.865567542826568, 18.315161094906159 ], [ -64.865568045740986, 18.315159083248432 ], [ -64.865568717603253, 18.315157071590704 ], [ -64.865569220517671, 18.315155059932977 ], [ -64.865569889760593, 18.315153048275249 ], [ -64.865570392675011, 18.315151036617522 ], [ -64.865571064537278, 18.315149024959794 ], [ -64.865571567451696, 18.315147013302067 ], [ -64.865572070366113, 18.315145001644339 ], [ -64.865572739609036, 18.315142989986612 ], [ -64.865573242523453, 18.315140978328884 ], [ -64.865573745437871, 18.315138965361484 ], [ -64.865574417300138, 18.315136787375252 ], [ -64.865574918904883, 18.315134774407852 ], [ -64.865575421819358, 18.315132764059797 ], [ -64.865575924733776, 18.315130752402069 ], [ -64.865576427648193, 18.31512873943467 ], [ -64.86557709951046, 18.315126729086614 ], [ -64.865577602424878, 18.315124717428887 ], [ -64.865578105339296, 18.315122704461487 ], [ -64.86557860825377, 18.315120694113432 ], [ -64.865579109858515, 18.315118514817584 ], [ -64.865579612772933, 18.315116503159857 ], [ -64.865580115687351, 18.315114491502129 ], [ -64.865580618601825, 18.315112479844402 ], [ -64.865581121516243, 18.315110468186674 ], [ -64.865581624430661, 18.315108456528947 ], [ -64.865582128654751, 18.315106277233042 ], [ -64.865582462621376, 18.315104265575314 ], [ -64.865582965535793, 18.315102253917587 ], [ -64.865583468450268, 18.315100242259859 ], [ -64.865583971364686, 18.315098230602132 ], [ -64.865584475588776, 18.315096051306284 ], [ -64.865584809555401, 18.315094039648557 ], [ -64.865585312469818, 18.315092027990829 ], [ -64.865585815384236, 18.315090016333102 ], [ -64.865586150660533, 18.315088003365702 ], [ -64.865586653575008, 18.315085825379469 ], [ -64.865586988851248, 18.31508381241207 ], [ -64.865587491765723, 18.315081802064014 ], [ -64.865587828351636, 18.315079790406287 ], [ -64.86558833126611, 18.315077611110439 ], [ -64.865588666542408, 18.315075599452712 ], [ -64.865589169456825, 18.315073587794984 ], [ -64.86558950342345, 18.315071576137257 ], [ -64.86559000764754, 18.315069396841352 ], [ -64.865590341614165, 18.315067385183625 ], [ -64.865590676890463, 18.315065373525897 ], [ -64.865591179804881, 18.315063194230049 ], [ -64.86559151639085, 18.315061182572322 ], [ -64.865591850357418, 18.315059170914594 ], [ -64.865592185633716, 18.315057159256867 ], [ -64.86559268854819, 18.315054979960962 ], [ -64.865593023824431, 18.315052968303235 ], [ -64.865593360410401, 18.315050956645507 ], [ -64.865593694377026, 18.315048777349659 ], [ -64.865594029653323, 18.315046764382259 ], [ -64.865594366239293, 18.315044754034204 ], [ -64.86559470151559, 18.315042573428684 ], [ -64.865595035482158, 18.315040563080629 ], [ -64.865595370758456, 18.315038551422901 ], [ -64.865595707344426, 18.315036372126997 ], [ -64.865596042620723, 18.315034360469269 ], [ -64.865596376587348, 18.315032348811542 ], [ -64.865596711863645, 18.315030169515694 ], [ -64.865597048449558, 18.315028157857967 ], [ -64.865597382416183, 18.315026146200239 ], [ -64.865597551364033, 18.315023966904334 ], [ -64.86559788664033, 18.315021955246607 ], [ -64.865598220606898, 18.315019775950759 ], [ -64.865598555883196, 18.315017764293032 ], [ -64.865598723521373, 18.315015752635304 ], [ -64.865599058797613, 18.315013573339399 ], [ -64.865599395383583, 18.315011560372 ], [ -64.865599561712088, 18.315009550023944 ], [ -64.865599898298058, 18.315007369418424 ], [ -64.865600064626506, 18.315005359070369 ], [ -64.865600399902803, 18.315003179774521 ], [ -64.865600567540923, 18.315001168116794 ], [ -64.865600902817221, 18.314999156459066 ], [ -64.865601070455341, 18.314996977163162 ], [ -64.865601405731638, 18.314994965505434 ], [ -64.865601573369815, 18.314992786209586 ], [ -64.865601742317608, 18.314990774551859 ], [ -64.865602077593906, 18.314988595255954 ], [ -64.865602245232026, 18.314986583598227 ], [ -64.865602411560531, 18.314984571940499 ], [ -64.865602746836828, 18.314982392644652 ], [ -64.865602914474948, 18.314980380986924 ], [ -64.865603083422741, 18.314978200381347 ], [ -64.865603249751246, 18.314976190033292 ], [ -64.865603417389366, 18.314974009427772 ], [ -64.865603586337215, 18.314971999079717 ], [ -64.865603921613513, 18.314969987421989 ], [ -64.865604089251633, 18.314967808126084 ], [ -64.865604255580081, 18.314965796468357 ], [ -64.86560442452793, 18.314963617172509 ], [ -64.865604590856378, 18.314961605514782 ], [ -64.865604758494555, 18.314959426218934 ], [ -64.865604758494555, 18.314957414561206 ], [ -64.865604927442348, 18.314955235265302 ], [ -64.865605093770796, 18.314953223607574 ], [ -64.865605261408973, 18.314951211949847 ], [ -64.865605430356766, 18.314949032653999 ], [ -64.86560559668527, 18.314947020996271 ], [ -64.86560559668527, 18.314944840390694 ], [ -64.865605765633063, 18.314942830042639 ], [ -64.86560593327124, 18.314940649437119 ], [ -64.86560593327124, 18.314938639089064 ], [ -64.865606099599688, 18.314936459793159 ], [ -64.865606268547481, 18.314934448135432 ], [ -64.865606268547481, 18.314932268839584 ], [ -64.865606434875986, 18.314930257181857 ], [ -64.865606434875986, 18.314928077886009 ], [ -64.865606602514106, 18.314926066228281 ], [ -64.865606602514106, 18.314923886932377 ], [ -64.865606771461955, 18.314921875274649 ], [ -64.865606771461955, 18.314919695978801 ], [ -64.865606937790403, 18.314917684321074 ], [ -64.865606937790403, 18.314915671353674 ], [ -64.865606937790403, 18.314913493367442 ], [ -64.865607105428523, 18.314911480400042 ], [ -64.865607105428523, 18.314909302413866 ], [ -64.865607105428523, 18.314907290756139 ], [ -64.865607274376373, 18.314905111460234 ], [ -64.865607274376373, 18.314903099802507 ], [ -64.865607274376373, 18.314900920506659 ], [ -64.865607274376373, 18.314898908848932 ], [ -64.865607274376373, 18.314896729553027 ], [ -64.865607274376373, 18.314894717895299 ], [ -64.865607274376373, 18.314892538599452 ], [ -64.865607274376373, 18.314890526941724 ], [ -64.865607274376373, 18.314888347645876 ], [ -64.865607274376373, 18.314886335988149 ], [ -64.865607274376373, 18.314884155382572 ], [ -64.865607274376373, 18.314882145034517 ], [ -64.865607274376373, 18.314879964428997 ], [ -64.865607274376373, 18.314877954080941 ], [ -64.865607274376373, 18.314875774785037 ], [ -64.865607274376373, 18.314873763127309 ], [ -64.865607274376373, 18.314871583831462 ], [ -64.865607105428523, 18.314869572173734 ], [ -64.865607105428523, 18.314867392877829 ], [ -64.865607105428523, 18.314865381220102 ], [ -64.865606937790403, 18.314863201924254 ], [ -64.865606937790403, 18.314861190266527 ], [ -64.865606937790403, 18.314859178608799 ], [ -64.865606771461955, 18.314856999312951 ], [ -64.865606771461955, 18.314854986345551 ], [ -64.865606602514106, 18.314852808359319 ], [ -64.865606602514106, 18.314850795391919 ], [ -64.865606434875986, 18.314848617405744 ], [ -64.865606434875986, 18.314846605748016 ], [ -64.865606268547481, 18.314844426452112 ], [ -64.865606268547481, 18.314842414794384 ], [ -64.865606099599688, 18.314840235498536 ], [ -64.86560593327124, 18.314838223840809 ], [ -64.86560593327124, 18.314836044544904 ], [ -64.865605765633063, 18.314834032887177 ], [ -64.86560559668527, 18.314831853591329 ], [ -64.86560559668527, 18.314829841933602 ], [ -64.865605430356766, 18.314827662637754 ], [ -64.865605261408973, 18.314825650980026 ], [ -64.865605093770796, 18.314823639322299 ], [ -64.865604927442348, 18.314821460026394 ], [ -64.865604758494555, 18.314819448368667 ], [ -64.865604758494555, 18.314817269072819 ], [ -64.865604590856378, 18.314815257415091 ], [ -64.86560442452793, 18.314813078119187 ], [ -64.865604255580081, 18.314811066461459 ], [ -64.865604089251633, 18.314808887165611 ], [ -64.865603921613513, 18.314806875507884 ], [ -64.865603586337215, 18.314804863850156 ], [ -64.865603417389366, 18.314802684554252 ], [ -64.865603249751246, 18.314800672896524 ], [ -64.865603083422741, 18.314798493600676 ], [ -64.865602914474948, 18.314796481942949 ], [ -64.865602746836828, 18.314794302647044 ], [ -64.865602411560531, 18.314792290989317 ], [ -64.865602245232026, 18.314790279331589 ], [ -64.865602077593906, 18.314788100035742 ], [ -64.865601742317608, 18.314786088378014 ], [ -64.865601573369815, 18.314783909082166 ], [ -64.865601405731638, 18.314781897424439 ], [ -64.865601070455341, 18.314779718128534 ], [ -64.865600902817221, 18.314777706470807 ], [ -64.865600567540923, 18.314775694813079 ], [ -64.865600399902803, 18.314773515517231 ], [ -64.865600064626506, 18.314771503859504 ], [ -64.865599898298058, 18.314769324563599 ], [ -64.865599561712088, 18.314767312905872 ], [ -64.865599395383583, 18.314765301248144 ], [ -64.865599058797613, 18.314763121952296 ], [ -64.865598723521373, 18.314761110294569 ], [ -64.865598555883196, 18.314759098636841 ], [ -64.865598220606898, 18.314756919340937 ], [ -64.86559788664033, 18.314754906373537 ], [ -64.865597551364033, 18.314752728387361 ], [ -64.865597382416183, 18.314750716729634 ], [ -64.865597048449558, 18.314748705071906 ], [ -64.865596711863645, 18.314746525776059 ], [ -64.865596376587348, 18.314744514118274 ], [ -64.865596042620723, 18.314742502460547 ], [ -64.865595707344426, 18.314740323164699 ], [ -64.865595370758456, 18.314738311506972 ], [ -64.865595035482158, 18.314736299849244 ], [ -64.86559470151559, 18.314734120553396 ], [ -64.865594366239293, 18.314732108895669 ], [ -64.865594029653323, 18.314730097237941 ], [ -64.865593694377026, 18.314727917942037 ], [ -64.865593360410401, 18.314725906284309 ], [ -64.865593023824431, 18.314723894626582 ], [ -64.86559268854819, 18.314721715330734 ], [ -64.865592354581565, 18.314719702363334 ], [ -64.865591850357418, 18.314717692015279 ], [ -64.86559151639085, 18.314715512719374 ], [ -64.865591179804881, 18.314713501061647 ], [ -64.865590676890463, 18.314711489403919 ], [ -64.865590341614165, 18.314709477746192 ], [ -64.86559000764754, 18.314707298450344 ], [ -64.86558950342345, 18.314705286792616 ], [ -64.865589169456825, 18.314703275134889 ], [ -64.865588832870856, 18.314701095838984 ], [ -64.86558833126611, 18.314699084181257 ], [ -64.865587994680141, 18.314697072523529 ], [ -64.865587491765723, 18.314695060865802 ], [ -64.865586988851248, 18.314692881569954 ], [ -64.865586653575008, 18.314690869912226 ], [ -64.865586150660533, 18.314688858254499 ], [ -64.865585815384236, 18.314686846596771 ], [ -64.865585312469818, 18.314684834939044 ], [ -64.865584809555401, 18.314682655643139 ], [ -64.865584475588776, 18.314680643985412 ], [ -64.865583971364686, 18.314678632327684 ], [ -64.865583468450268, 18.314676619360284 ], [ -64.865582965535793, 18.314674609012229 ], [ -64.865582462621376, 18.314672429716381 ], [ -64.865582128654751, 18.314670418058654 ], [ -64.865581624430661, 18.314668406400926 ], [ -64.865581121516243, 18.314666394743199 ], [ -64.865580618601825, 18.314664383085471 ], [ -64.865580115687351, 18.314662203789624 ], [ -64.865579612772933, 18.314660192131896 ], [ -64.865579109858515, 18.314658180474169 ], [ -64.86557860825377, 18.314656168816441 ], [ -64.865578105339296, 18.314654157158714 ], [ -64.865577602424878, 18.314652145500986 ], [ -64.86557709951046, 18.314650133843259 ], [ -64.865576596596043, 18.314648122185474 ], [ -64.865575924733776, 18.314645942889626 ], [ -64.865575421819358, 18.314643931231899 ], [ -64.865574918904883, 18.314641919574171 ], [ -64.865574417300138, 18.314639907916444 ], [ -64.865573745437871, 18.314637896258716 ], [ -64.865573242523453, 18.314635884600989 ], [ -64.865572739609036, 18.314633872943261 ], [ -64.865572070366113, 18.314631861285534 ], [ -64.865571567451696, 18.314629849627806 ], [ -64.865571064537278, 18.314627837970079 ], [ -64.865570392675011, 18.314625826312351 ], [ -64.865569889760593, 18.314623814654624 ], [ -64.865569220517671, 18.314621802996896 ], [ -64.865568717603253, 18.314619791339169 ], [ -64.865568045740986, 18.314617778371769 ], [ -64.865567542826568, 18.314615768023714 ], [ -64.865566873583646, 18.314613756365986 ], [ -64.865566201721435, 18.314611744708259 ], [ -64.865565698806961, 18.314609733050531 ], [ -64.865565029564095, 18.314607721392804 ], [ -64.865564357701828, 18.314605709735076 ], [ -64.86556385478741, 18.314603698077349 ], [ -64.865563185544488, 18.314601686419621 ], [ -64.865562513682221, 18.314599674761894 ], [ -64.865561844439355, 18.314597663104166 ], [ -64.865561341524938, 18.314595651446439 ], [ -64.865560669662671, 18.314593639788711 ], [ -64.865560000419748, 18.314591628130984 ], [ -64.865559328557538, 18.314589616473256 ], [ -64.865558659314615, 18.314587604815529 ], [ -64.865557987452348, 18.314585593157801 ], [ -64.86555731689981, 18.314583581500074 ], [ -64.865556646347216, 18.314581737480466 ], [ -64.865555975794621, 18.314579725822739 ], [ -64.865555306551755, 18.314577714165011 ], [ -64.865554634689488, 18.314575702507284 ], [ -64.865553965446566, 18.314573690849556 ], [ -64.865553293584298, 18.314571679191829 ], [ -64.865552455393583, 18.314569667534101 ], [ -64.865551784841045, 18.314567823514551 ], [ -64.865551115598123, 18.314565811856824 ], [ -64.865550443735856, 18.314563800199096 ], [ -64.865549605545141, 18.314561788541369 ], [ -64.865548936302275, 18.314559776883641 ], [ -64.865548264440008, 18.314557932864034 ], [ -64.865547427558965, 18.314555921206306 ], [ -64.865546755696698, 18.314553909548579 ], [ -64.865546086453833, 18.314551897890851 ], [ -64.865545248263061, 18.314550053871244 ], [ -64.86554457640085, 18.314548042213517 ], [ -64.865543739519808, 18.314546030555789 ], [ -64.865543067657541, 18.314544018898061 ], [ -64.865542229466826, 18.314542174878511 ], [ -64.865541560223903, 18.314540163220784 ], [ -64.865540720723516, 18.314538151563056 ], [ -64.86554005148065, 18.314536307543449 ], [ -64.865539213289878, 18.314534295885721 ], [ -64.865538373789491, 18.314532284227994 ], [ -64.865537704546625, 18.314530440208387 ], [ -64.86553686635591, 18.314528428550659 ], [ -64.865536026855523, 18.314526416892932 ], [ -64.865535188664751, 18.314524572873381 ], [ -64.865534519421885, 18.314522561215654 ], [ -64.86553368123117, 18.314520717196046 ], [ -64.865532841730783, 18.314518705538319 ], [ -64.865532003540011, 18.314516693880591 ], [ -64.865531165349296, 18.314514849861041 ], [ -64.865530328468253, 18.314512838203314 ], [ -64.865529490277538, 18.314510994183706 ], [ -64.865528650777151, 18.314508982525979 ], [ -64.865527812586436, 18.314507138506372 ], [ -64.865526974395721, 18.314505126848644 ], [ -64.865526137514678, 18.314503282829094 ], [ -64.865525299323963, 18.314501271171366 ], [ -64.865524459823575, 18.314499259513639 ], [ -64.86552362163286, 18.314497415494031 ], [ -64.865522783442145, 18.314495571474481 ], [ -64.865521946561046, 18.314493559816754 ], [ -64.865520939422538, 18.314491715797146 ], [ -64.865520102541495, 18.314489704139419 ], [ -64.86551926435078, 18.314487860119812 ], [ -64.865518424850393, 18.314485848462084 ], [ -64.865517420331173, 18.314484004442534 ], [ -64.865516580830786, 18.314482160422926 ], [ -64.865515742640071, 18.314480148765199 ], [ -64.865514736811178, 18.314478304745649 ], [ -64.865513898620463, 18.314476293087921 ], [ -64.865513060429748, 18.314474449068314 ], [ -64.865512054600913, 18.314472605048707 ], [ -64.865511216410198, 18.314470593390979 ], [ -64.865510210581306, 18.314468749371429 ], [ -64.865509372390591, 18.314466905351821 ], [ -64.865508366561755, 18.314464893694094 ], [ -64.86550752837104, 18.314463048364871 ], [ -64.865506522542148, 18.314461204345264 ], [ -64.865505516713313, 18.314459361635386 ], [ -64.865504678522541, 18.314457349977658 ], [ -64.865503672693706, 18.314455505958051 ], [ -64.865502666864813, 18.314453661938444 ], [ -64.865501828674098, 18.314451817918894 ], [ -64.865500822845263, 18.314449806261166 ], [ -64.865499818326043, 18.314447962241559 ], [ -64.865498812497208, 18.314446118222008 ], [ -64.865497805358643, 18.314444274202401 ], [ -64.865496968477601, 18.314442430182794 ], [ -64.865495962648765, 18.314440418525066 ], [ -64.865494955510201, 18.314438574505516 ], [ -64.865493949681365, 18.314436730485909 ], [ -64.865492943852473, 18.314434886466358 ], [ -64.86549193933331, 18.314433042446751 ], [ -64.865490933504418, 18.314431198427144 ], [ -64.86548992636591, 18.314429354407594 ], [ -64.865488920537018, 18.314427510387986 ], [ -64.865487914708183, 18.314425666368436 ], [ -64.865486908879291, 18.314423822348829 ], [ -64.865485904360128, 18.314421978329221 ], [ -64.865484898531236, 18.314420134309671 ], [ -64.865483723754551, 18.314418290290064 ], [ -64.865482719235388, 18.314416446270513 ], [ -64.865481713406496, 18.314414602250906 ], [ -64.86548070757766, 18.314412758231299 ], [ -64.865479700439096, 18.314410914211749 ], [ -64.865478528281756, 18.314409070192141 ], [ -64.86547752245292, 18.314407226172591 ], [ -64.865476516624028, 18.314405382152984 ], [ -64.865475341847343, 18.314403538133433 ], [ -64.86547433732818, 18.314401694113826 ], [ -64.865473331499288, 18.314399850094219 ], [ -64.865472156722603, 18.314398006074669 ], [ -64.865471150893768, 18.314396162055061 ], [ -64.865469977426756, 18.314394485673631 ], [ -64.86546897159792, 18.314392641654024 ], [ -64.86546779944058, 18.314390797634474 ], [ -64.865466793611688, 18.314388953614866 ], [ -64.865465618835003, 18.314387109595316 ], [ -64.865464445367991, 18.314385433213829 ], [ -64.865463439539155, 18.314383589194279 ], [ -64.865462267381815, 18.314381745174671 ], [ -64.865461261552923, 18.314379901155121 ], [ -64.865460086776238, 18.314378224773634 ], [ -64.865458914618955, 18.314376380754084 ], [ -64.86545773984227, 18.314374536734476 ], [ -64.86545673532305, 18.314372692714926 ], [ -64.865455560546366, 18.314371016333496 ], [ -64.865454388389026, 18.314369172313889 ], [ -64.865453213612341, 18.314367328294281 ], [ -64.865452041455001, 18.314365651912851 ], [ -64.865451035626165, 18.314363807893301 ], [ -64.865449860849481, 18.314362131511814 ], [ -64.865448687382468, 18.314360287492264 ], [ -64.865447515225128, 18.314358443472656 ], [ -64.865446340448443, 18.314356767091226 ], [ -64.865445168291103, 18.314354923071619 ], [ -64.865443993514418, 18.314353246690189 ], [ -64.865442821357078, 18.314351402670638 ], [ -64.86544164658045, 18.314349726289208 ], [ -64.86544047442311, 18.314347882269601 ], [ -64.865439133317921, 18.314346205888171 ], [ -64.865437958541236, 18.314344361868564 ], [ -64.865436786383896, 18.314342685487134 ], [ -64.865435611607211, 18.314340841467526 ], [ -64.865434439449928, 18.314339165086096 ], [ -64.865433264673243, 18.314337488704666 ], [ -64.865431923568053, 18.314335644685059 ], [ -64.865430751410713, 18.314333968303629 ], [ -64.865429576634028, 18.314332291922199 ], [ -64.865428404476745, 18.314330447902648 ], [ -64.865427063371556, 18.314328771521161 ], [ -64.865425888594871, 18.314327095139731 ], [ -64.865424547489738, 18.314325251120181 ], [ -64.865423375332398, 18.314323574738694 ], [ -64.865422200555713, 18.314321898357264 ], [ -64.86542085945058, 18.314320054337713 ], [ -64.86541968729324, 18.314318377956226 ], [ -64.865418344878435, 18.314316701574796 ], [ -64.865417171411423, 18.314315025193366 ], [ -64.865415831615906, 18.314313348811936 ], [ -64.865414656839221, 18.314311504792329 ], [ -64.865413315734088, 18.314309828410899 ], [ -64.865411974628955, 18.314308152029469 ], [ -64.865410802471615, 18.314306475648038 ], [ -64.865409461366426, 18.314304799266608 ], [ -64.865408120261293, 18.314303122885178 ], [ -64.865406945484608, 18.314301446503691 ], [ -64.865405604379475, 18.314299602484141 ], [ -64.865404264583958, 18.314297926102711 ], [ -64.86540308980733, 18.314296249721224 ], [ -64.865401748702141, 18.314294573339794 ], [ -64.865400407597008, 18.314292896958364 ], [ -64.865399066491875, 18.314291220576933 ], [ -64.865397725386686, 18.314289544195503 ], [ -64.865396385591225, 18.314287867814073 ], [ -64.86539521081454, 18.314286191432586 ], [ -64.865393869709408, 18.314284682689333 ], [ -64.865392528604218, 18.314283006307846 ], [ -64.865391187499085, 18.314281329926416 ], [ -64.865389846393953, 18.314279653544986 ], [ -64.865388506598435, 18.314277977163556 ], [ -64.865387165493303, 18.314276300782126 ], [ -64.86538582438817, 18.314274624400696 ], [ -64.86538448328298, 18.314272948019209 ], [ -64.865382974539671, 18.314271439275956 ], [ -64.865381633434538, 18.314269762894469 ], [ -64.865380292329405, 18.314268086513039 ], [ -64.865378951224216, 18.314266410131609 ], [ -64.865377608809411, 18.314264901388299 ], [ -64.865376267704278, 18.314263225006869 ], [ -64.865374926599088, 18.314261548625439 ], [ -64.865373417855835, 18.314259872244008 ], [ -64.865372076750646, 18.314258363500699 ], [ -64.865370735645513, 18.314256687119268 ], [ -64.865369228211875, 18.314255010737838 ], [ -64.86536788579707, 18.314253501994529 ], [ -64.865366544691938, 18.314251825613098 ], [ -64.8653650372583, 18.314250316869789 ], [ -64.865363694843438, 18.314248640488358 ], [ -64.865362353738306, 18.314247131745049 ], [ -64.865360846304668, 18.314245455363618 ], [ -64.865359505199535, 18.314243778982188 ], [ -64.865357996456225, 18.314242270238879 ], [ -64.865356655351093, 18.314240593857448 ], [ -64.865355146607783, 18.314239085114139 ], [ -64.86535380550265, 18.314237576370829 ], [ -64.865352295449668, 18.314235899989399 ], [ -64.865350955654208, 18.314234391246089 ], [ -64.865349445601225, 18.314232714864659 ], [ -64.865347936857916, 18.314231206121349 ], [ -64.865346595752783, 18.314229697378096 ], [ -64.865345088319145, 18.314228020996666 ], [ -64.865343579575836, 18.314226512253356 ], [ -64.865342238470703, 18.314225003510046 ], [ -64.865340728417721, 18.314223327128616 ], [ -64.865339219674411, 18.314221818385306 ], [ -64.86533771224083, 18.314220309641996 ], [ -64.865336369825968, 18.314218633260566 ], [ -64.865334862392388, 18.314217124517256 ], [ -64.865333353649078, 18.314215615774003 ], [ -64.865331843596095, 18.314214107030693 ], [ -64.865330334852786, 18.314212598287384 ], [ -64.865328827419205, 18.314210921905953 ], [ -64.865327486314015, 18.314209413162644 ], [ -64.865325977570762, 18.314207904419334 ], [ -64.86532446751778, 18.314206395676081 ], [ -64.86532295877447, 18.314204886932771 ], [ -64.865321451340833, 18.314203378189461 ], [ -64.86531994259758, 18.314201869446151 ], [ -64.865318432544598, 18.314200360702898 ], [ -64.865316923801288, 18.314198851959588 ], [ -64.86531541636765, 18.314197343216279 ], [ -64.865313907624341, 18.314195834472969 ], [ -64.86531223124291, 18.314194325729716 ], [ -64.865310722499657, 18.314192816986406 ], [ -64.865309212446675, 18.314191308243096 ], [ -64.865307703703365, 18.314189799499786 ], [ -64.865306196269728, 18.314188290756533 ], [ -64.865304687526475, 18.314186782013223 ], [ -64.865303009835316, 18.314185440908091 ], [ -64.865301502401735, 18.314183932164781 ], [ -64.865299992348753, 18.314182423421471 ], [ -64.865298483605443, 18.314180914678161 ], [ -64.865296808533685, 18.314179405934851 ], [ -64.865295298480703, 18.314178064829719 ], [ -64.865293789737393, 18.314176556086409 ], [ -64.865292113355963, 18.314175047343156 ], [ -64.865290604612653, 18.314173538599846 ], [ -64.865289097179073, 18.314172197494713 ], [ -64.86528741948797, 18.314170688751403 ], [ -64.86528591074466, 18.314169180008093 ], [ -64.86528423436323, 18.314167838902961 ], [ -64.86528272561992, 18.314166330159651 ], [ -64.865281050548163, 18.314164989054518 ], [ -64.86527954049518, 18.314163480311208 ], [ -64.865277865423423, 18.314161971567898 ], [ -64.86527635537044, 18.314160630462766 ], [ -64.865274680298683, 18.314159121719456 ], [ -64.865273171555373, 18.314157780614323 ], [ -64.86527149386427, 18.314156271871013 ], [ -64.86526981748284, 18.314154930765881 ], [ -64.86526830873953, 18.314153589660691 ], [ -64.8652666323581, 18.314152080917381 ], [ -64.865264957286342, 18.314150739812249 ], [ -64.865263448543033, 18.314149231068939 ], [ -64.86526177085193, 18.314147889963806 ], [ -64.865260094470443, 18.314146548858673 ], [ -64.86525858572719, 18.314145040115363 ], [ -64.86525690934576, 18.314143699010231 ], [ -64.865255234273945, 18.314142357905041 ], [ -64.865253556582843, 18.314141016799908 ], [ -64.865251881511085, 18.314139508056599 ], [ -64.865250371458103, 18.314138166951466 ], [ -64.865248696386345, 18.314136825846276 ], [ -64.865247018695243, 18.314135484741144 ], [ -64.865245343623485, 18.314134143636011 ], [ -64.865243667242055, 18.314132634892701 ], [ -64.865241989550896, 18.314131293787568 ], [ -64.865240314479138, 18.314129952682379 ], [ -64.865238636788035, 18.314128611577246 ], [ -64.865236960406605, 18.314127270472113 ], [ -64.865235285334848, 18.314125929366924 ], [ -64.865233607643745, 18.314124588261791 ], [ -64.86523193257193, 18.314123247156658 ], [ -64.8652302561905, 18.314121906051469 ], [ -64.865228578499398, 18.314120564946336 ], [ -64.86522690342764, 18.314119223841203 ], [ -64.865225225736538, 18.314117882736014 ], [ -64.865223549355051, 18.314116541630881 ], [ -64.865221874283293, 18.314115200525748 ], [ -64.865220030263743, 18.314114027058736 ], [ -64.86521835257264, 18.314112685953546 ], [ -64.865216677500825, 18.314111344848413 ], [ -64.865214999809723, 18.314110003743281 ], [ -64.865213323428293, 18.314108662638091 ], [ -64.865211479408686, 18.314107489171079 ], [ -64.865209804336928, 18.314106148065946 ], [ -64.865208126645825, 18.314104806960813 ], [ -64.865206451574068, 18.314103633493801 ], [ -64.86520460755446, 18.314102292388611 ], [ -64.86520293117303, 18.314100951283478 ], [ -64.865201253481928, 18.314099777816466 ], [ -64.865199409462321, 18.314098436711333 ], [ -64.865197734390563, 18.314097095606201 ], [ -64.865195890371012, 18.314095922139188 ], [ -64.865194212679853, 18.314094581033999 ], [ -64.865192537608095, 18.314093407566986 ], [ -64.865190693588545, 18.314092066461853 ], [ -64.865189017207115, 18.314090892994841 ], [ -64.865187173187508, 18.314089551889708 ], [ -64.865185495496405, 18.314088378422696 ], [ -64.865183651476798, 18.314087037317506 ], [ -64.86518197640504, 18.314085863850551 ], [ -64.865180132385433, 18.314084690383538 ], [ -64.86517845469433, 18.314083349278349 ], [ -64.86517661067478, 18.314082175811336 ], [ -64.865174766655173, 18.314081002344324 ], [ -64.865173091583415, 18.314079661239191 ], [ -64.865171247563808, 18.314078487772179 ], [ -64.865169571182378, 18.314077314305166 ], [ -64.865167727162827, 18.314076140838154 ], [ -64.865165881833548, 18.314074799733021 ], [ -64.865164205452118, 18.314073626266008 ], [ -64.86516236143251, 18.314072452798996 ], [ -64.86516051741296, 18.314071279331984 ], [ -64.865158673393353, 18.314070105864971 ], [ -64.865156998321595, 18.314068932397959 ], [ -64.865155154301988, 18.314067758930946 ], [ -64.865153310282437, 18.314066585463991 ], [ -64.86515146626283, 18.314065244358801 ], [ -64.865149622243223, 18.314064070891789 ], [ -64.86514794455212, 18.314062897424776 ], [ -64.86514610053257, 18.314061891595941 ], [ -64.865144256512963, 18.314060718128928 ], [ -64.865142412493356, 18.314059544661916 ], [ -64.865140568473805, 18.314058371194903 ], [ -64.864820045652152, 18.31385770833657 ], [ -64.864835299413585, 18.313837088844821 ], [ -64.86487318563411, 18.31380154955832 ], [ -64.864918952157097, 18.313730303347086 ], [ -64.86496454842262, 18.313658889497731 ], [ -64.865002937557563, 18.313580267208238 ], [ -64.865026071621458, 18.313494436478493 ], [ -64.865026909812173, 18.313408438110628 ], [ -64.865012660569903, 18.313322272104585 ], [ -64.864968236461777, 18.313250187702693 ], [ -64.864923812353595, 18.313178103300743 ], [ -64.864834796499167, 18.31315597506574 ], [ -64.864919790347813, 18.313136361402883 ], [ -64.864931188431967, 18.31313820542249 ], [ -64.86494242149729, 18.313140049442097 ], [ -64.864953819581388, 18.31314155818535 ], [ -64.86496522028483, 18.31314306692866 ], [ -64.864976618368985, 18.31314440803385 ], [ -64.864988017762755, 18.313145581500805 ], [ -64.864999418466198, 18.313146587329697 ], [ -64.865010816550353, 18.313147593158533 ], [ -64.865022217253795, 18.313148431349305 ], [ -64.865033784285743, 18.313148934263722 ], [ -64.86504518236984, 18.31314943717814 ], [ -64.865056581763668, 18.313149772454437 ], [ -64.865068148795615, 18.313150107730735 ], [ -64.865079549499058, 18.313150107730735 ], [ -64.865091116531005, 18.313150107730735 ], [ -64.865102514615103, 18.313149772454437 ], [ -64.865113915318602, 18.31314943717814 ], [ -64.865125482350493, 18.313148934263722 ], [ -64.865136880434648, 18.313148431349305 ], [ -64.865148279828418, 18.313147593158533 ], [ -64.86515968053186, 18.313146754967818 ], [ -64.865171247563808, 18.313145581500805 ], [ -64.865182645647963, 18.31314440803385 ], [ -64.865193877403613, 18.31314306692866 ], [ -64.865205276797383, 18.31314155818535 ], [ -64.865216677500825, 18.313140049442097 ], [ -64.865227909256475, 18.31313820542249 ], [ -64.865239308650303, 18.313136361402883 ], [ -64.865250540405953, 18.313134349745155 ], [ -64.86526177085193, 18.313132170449308 ], [ -64.86527300260758, 18.313129823515283 ], [ -64.86528423436323, 18.313127476581258 ], [ -64.865295298480703, 18.313124794370992 ], [ -64.865306362598233, 18.31312211216067 ], [ -64.865317594353883, 18.313119262312227 ], [ -64.865328490833235, 18.313116244825608 ], [ -64.865339556260381, 18.313113227339045 ], [ -64.865350451430061, 18.313109874576185 ], [ -64.865361349219143, 18.313106521813268 ], [ -64.865372244388823, 18.31310300141223 ], [ -64.865383140868175, 18.313099313373073 ], [ -64.865393869709408, 18.313095457695795 ], [ -64.865404598550583, 18.31309160201846 ], [ -64.865415159753695, 18.313087578703005 ], [ -64.865425722266423, 18.31308338774943 ], [ -64.865436283469478, 18.313079029157677 ], [ -64.865446843362861, 18.313074670565925 ], [ -64.865457238237468, 18.313069976697875 ], [ -64.865467630492731, 18.313065282829882 ], [ -64.865477856419545, 18.313060421323655 ], [ -64.865488082346303, 18.313055559817485 ], [ -64.86549830958279, 18.313050530673195 ], [ -64.865508366561755, 18.313045333890727 ], [ -64.865518424850393, 18.313039969470083 ], [ -64.865528315500853, 18.313034437411375 ], [ -64.865538207461043, 18.31302890535261 ], [ -64.865548096801888, 18.313023205655725 ], [ -64.865557819814228, 18.313017338320662 ], [ -64.86556737649812, 18.313011470985657 ], [ -64.865576930562611, 18.313005436012475 ], [ -64.865586487246503, 18.312999233401115 ], [ -64.86559587367293, 18.312993030789812 ], [ -64.865605093770796, 18.312986660540332 ], [ -64.865614313868718, 18.312980122652675 ], [ -64.865623535276313, 18.312973417126955 ], [ -64.865632586426443, 18.312966711601177 ], [ -64.865641472557741, 18.31295983843728 ], [ -64.865650357379366, 18.312952965273382 ], [ -64.865659074562871, 18.312945924471308 ], [ -64.865667790436703, 18.312938716031113 ], [ -64.865676341291703, 18.312931339952797 ], [ -64.865684889527358, 18.312923963874482 ], [ -64.865693271434566, 18.31291658779611 ], [ -64.865701485703596, 18.312909044079674 ], [ -64.865709701282356, 18.312901332725005 ], [ -64.865717746603593, 18.312893453732272 ], [ -64.865725794544176, 18.312885574739482 ], [ -64.865733504589116, 18.312877695746693 ], [ -64.865741383581906, 18.312869481477662 ], [ -64.86574892860807, 18.312861434846752 ], [ -64.865756472324506, 18.312853052939545 ], [ -64.865763848402878, 18.312844671032337 ], [ -64.865771224481193, 18.31283628912513 ], [ -64.865778431611716, 18.312827739579802 ], [ -64.865785472413791, 18.312819190034475 ], [ -64.865792345577688, 18.31281047285097 ], [ -64.865799218741586, 18.312801588029345 ], [ -64.865805925577035, 18.31279270320772 ], [ -64.865812629793083, 18.312783818386094 ], [ -64.865819001352236, 18.312774765926292 ], [ -64.865825371601716, 18.312765713466547 ], [ -64.865831572903346, 18.312756493368624 ], [ -64.865837775514706, 18.312747105632525 ], [ -64.865843810487888, 18.312737885534602 ], [ -64.865849511494446, 18.312728330160439 ], [ -64.865855377519836, 18.31271894242434 ], [ -64.865860909578544, 18.31270938705012 ], [ -64.865866441637309, 18.31269966403778 ], [ -64.865871807367625, 18.31269010866356 ], [ -64.865877002840364, 18.312680218013099 ], [ -64.865882033294383, 18.312670495000759 ], [ -64.865886893490881, 18.312660604350242 ], [ -64.865891756306723, 18.312650546061604 ], [ -64.865896448865101, 18.312640655411087 ], [ -64.865900976404646, 18.31263059712245 ], [ -64.865905333686726, 18.312620371195692 ], [ -64.865909693588151, 18.312610312907054 ], [ -64.865913884541726, 18.31260008698024 ], [ -64.865917738909388, 18.312589861053482 ], [ -64.865921594586723, 18.312579467488547 ], [ -64.865925451573673, 18.312569073923612 ], [ -64.865928970665038, 18.312558680358677 ], [ -64.865932323427899, 18.312548286793742 ], [ -64.865935677500488, 18.312537725590687 ], [ -64.865938862625228, 18.312527164387632 ], [ -64.865941878802118, 18.31251660318452 ], [ -64.865944728650561, 18.312506041981464 ], [ -64.865947410860883, 18.312495480778409 ], [ -64.865950094380821, 18.312484751937177 ], [ -64.865952441314846, 18.312474023095945 ], [ -64.865954786939199, 18.312463294254769 ], [ -64.865956967544776, 18.312452565413537 ], [ -64.865958977892831, 18.312441668934184 ], [ -64.865960821912381, 18.312430940092952 ], [ -64.865962499603484, 18.312420043613599 ], [ -64.865964008346793, 18.312409314772367 ], [ -64.865965515780431, 18.312398418293014 ], [ -64.865966856885564, 18.312387521813662 ], [ -64.865967862714456, 18.312376625334309 ], [ -64.865968868543291, 18.312365728854957 ], [ -64.865969706734006, 18.312354832375604 ], [ -64.865970378596273, 18.312343768258074 ], [ -64.865971047839196, 18.312332871778722 ], [ -64.865971384425109, 18.312321975299369 ], [ -64.865971550753613, 18.312310911181839 ], [ -64.865971718391734, 18.312300014702487 ], [ -64.865971718391734, 18.312289118223134 ], [ -64.865971384425109, 18.312278054105604 ], [ -64.865971047839196, 18.312267157626252 ], [ -64.865970712562898, 18.312256261146899 ], [ -64.865970043319976, 18.312245364667547 ], [ -64.865969203819589, 18.312234300550074 ], [ -64.865968199300426, 18.312223404070664 ], [ -64.865967193471533, 18.312212507591312 ], [ -64.865966018694849, 18.312201611111959 ], [ -64.865964677589716, 18.312190714632607 ], [ -64.865963168846406, 18.312179818153254 ], [ -64.865961492464976, 18.312169089312022 ], [ -64.865959648445369, 18.312158192832669 ], [ -64.865957636787641, 18.312147463991437 ], [ -64.865955626439586, 18.312136735150261 ], [ -64.865953279505561, 18.312126006309029 ], [ -64.865950932571593, 18.312115277467797 ], [ -64.865948416689719, 18.312104548626564 ], [ -64.865945734479453, 18.312093819785389 ], [ -64.865942884631011, 18.312083258582277 ], [ -64.865939868454063, 18.312072697379222 ], [ -64.865936849657771, 18.312062136176166 ], [ -64.865933496894911, 18.312051574973111 ], [ -64.865930145441723, 18.312041181408176 ], [ -64.865926623731013, 18.312030787843241 ], [ -64.865922935691856, 18.312020394278306 ], [ -64.865919247652698, 18.312010000713371 ], [ -64.865915225646916, 18.311999774786614 ], [ -64.865911202331461, 18.311989548859799 ], [ -64.865906842430036, 18.311979322933041 ], [ -64.865902483838283, 18.311969264644404 ], [ -64.865898126556203, 18.311959038717589 ], [ -64.865893431378481, 18.311949148067129 ], [ -64.865888737510488, 18.311939089778434 ], [ -64.865883708366141, 18.311929199127974 ], [ -64.865878680531523, 18.311919308477457 ], [ -64.865873651387176, 18.311909585465116 ], [ -64.865868285656916, 18.311899862452776 ], [ -64.865862922545944, 18.311890139440436 ], [ -64.865857221539386, 18.311880584066216 ], [ -64.865851689480621, 18.311871197639789 ], [ -64.865845823455288, 18.311861640955954 ], [ -64.865839788482106, 18.311852253219854 ], [ -64.865833753508923, 18.311843033121932 ], [ -64.865827549587891, 18.311833813024009 ], [ -64.865821348286261, 18.311824592926087 ], [ -64.86581481039866, 18.311815540466341 ], [ -64.865808272511003, 18.311806655644716 ], [ -64.865801565675611, 18.311797603184914 ], [ -64.865794861459506, 18.311788886001466 ], [ -64.865787988295608, 18.311780168817961 ], [ -64.865780947493533, 18.311771451634456 ], [ -64.865773737743666, 18.311762902089129 ], [ -64.865766530613143, 18.311754352543801 ], [ -64.865759154534828, 18.311745970636593 ], [ -64.865751609508663, 18.311737756367506 ], [ -64.865744065792171, 18.311729542098476 ], [ -64.865736354437558, 18.311721327829389 ], [ -64.865728475444826, 18.311713448836656 ], [ -64.865720596452036, 18.311705402205746 ], [ -64.865712549821126, 18.311697690851076 ], [ -64.865704335552095, 18.311689979496464 ], [ -64.865696122592681, 18.311682268141851 ], [ -64.86568790832365, 18.311674724425359 ], [ -64.865679357468593, 18.311667348347044 ], [ -64.865670807923266, 18.311659973578401 ], [ -64.865662258377938, 18.311652763828533 ], [ -64.865653542504106, 18.311645723026459 ], [ -64.865644656372808, 18.311638682224441 ], [ -64.865635771551183, 18.311631809060486 ], [ -64.865626720401053, 18.311625103534766 ], [ -64.865617666631636, 18.311618398008989 ], [ -64.865608446533713, 18.311611860121388 ], [ -64.865599058797613, 18.311605489871909 ], [ -64.865589838699691, 18.311599119622429 ], [ -64.8655802846352, 18.311592917011126 ], [ -64.86557072926098, 18.311586882037943 ], [ -64.865561172577088, 18.311580847064761 ], [ -64.865551449564748, 18.311574979729698 ], [ -64.865541726552408, 18.311569280032813 ], [ -64.865531835901891, 18.311563581645601 ], [ -64.865521946561046, 18.311558215915284 ], [ -64.865511888272408, 18.311552851494696 ], [ -64.865501828674098, 18.311547487074051 ], [ -64.865491770385461, 18.311542457929761 ], [ -64.865481544458703, 18.311537428785414 ], [ -64.865471318531888, 18.311532568588916 ], [ -64.865460926276683, 18.311527873411251 ], [ -64.865450531402075, 18.311523179543201 ], [ -64.865439971508636, 18.311518654623001 ], [ -64.865413652320058, 18.311504571709236 ], [ -64.865387331821751, 18.311490154828846 ], [ -64.865361012633173, 18.311475737948456 ], [ -64.865334862392388, 18.311461321068066 ], [ -64.865308709532258, 18.311446568911379 ], [ -64.865282559291416, 18.311431816754691 ], [ -64.865256575379135, 18.311416896959884 ], [ -64.865230757795246, 18.311401809526956 ], [ -64.865204941521085, 18.311386722093971 ], [ -64.865179126556598, 18.311371467022866 ], [ -64.865153476610885, 18.311356045623313 ], [ -64.865127995613022, 18.311340621604359 ], [ -64.865102348286655, 18.311324863618836 ], [ -64.86507703361724, 18.311309274581106 ], [ -64.86505172156717, 18.311293347647791 ], [ -64.865026408207427, 18.311277422024091 ], [ -64.865001262485805, 18.311261328762271 ], [ -64.86497611545451, 18.31124506786233 ], [ -64.864951137371065, 18.311228806962333 ], [ -64.864926160597292, 18.311212210786096 ], [ -64.864901350151968, 18.31119578355765 ], [ -64.864876538397027, 18.311179018433563 ], [ -64.864851895589823, 18.311162254619148 ], [ -64.864827252782675, 18.311145323166613 ], [ -64.864802777613647, 18.311128391714078 ], [ -64.86477830244462, 18.311111124985246 ], [ -64.864753996223385, 18.311094025894533 ], [ -64.864729687382862, 18.311076591527581 ], [ -64.864705547490132, 18.3110591584703 ], [ -64.864681407597402, 18.31104155646517 ], [ -64.864657436652465, 18.311023785512248 ], [ -64.86463363072636, 18.311006015868941 ], [ -64.864609827419542, 18.31098807858757 ], [ -64.864586021493437, 18.310970142615815 ], [ -64.864562553462974, 18.310952036386595 ], [ -64.864538916484662, 18.310933763828871 ], [ -64.864515613472975, 18.310915323633083 ], [ -64.864492145442455, 18.310896883437238 ], [ -64.864469011378617, 18.310878275603216 ], [ -64.864445877314722, 18.31085966776925 ], [ -64.864422743250884, 18.31084089360678 ], [ -64.864399775515437, 18.310821950496518 ], [ -64.864376976727897, 18.310803006076583 ], [ -64.864354179249972, 18.310783896637815 ], [ -64.864331548100552, 18.310764616941583 ], [ -64.864308915641402, 18.310745338555023 ], [ -64.864286453439775, 18.310725892530343 ], [ -64.864264157566652, 18.310706278867485 ], [ -64.8642418603838, 18.3106866665143 ], [ -64.864219733458469, 18.31066705154177 ], [ -64.864197605223467, 18.310647102602672 ], [ -64.864175644626584, 18.310627153663518 ], [ -64.864153850358207, 18.310607204724363 ], [ -64.864132057399502, 18.31058708945676 ], [ -64.864110433388589, 18.310566803931692 ], [ -64.864088808068004, 18.31054651971624 ], [ -64.864067350385596, 18.310526067862668 ], [ -64.864046060341309, 18.310505448370975 ], [ -64.864024770297021, 18.310484828879282 ], [ -64.864003646581182, 18.310464041749412 ], [ -64.863982693122864, 18.310443254619543 ], [ -64.863961738354874, 18.310422299851552 ], [ -64.863940951225004, 18.310401346393235 ], [ -64.863920164095134, 18.310380222677395 ], [ -64.863899544603441, 18.310358932633108 ], [ -64.863879091440197, 18.31033764258882 ], [ -64.863858639586624, 18.310316184906412 ], [ -64.863838355371229, 18.31029472853362 ], [ -64.863818240103626, 18.310273101903363 ], [ -64.863798123526294, 18.310251308944657 ], [ -64.863778174587196, 18.310229515985952 ], [ -64.863758393286219, 18.310207724336919 ], [ -64.863738779623361, 18.310185762430365 ], [ -64.863719165960504, 18.310163635505035 ], [ -64.863699552297646, 18.31014150596036 ], [ -64.863680272601414, 18.310119211396852 ], [ -64.863660995524526, 18.310096915523729 ], [ -64.863641717137966, 18.310074450702757 ], [ -64.863622774027704, 18.310051988501129 ], [ -64.863603829607769, 18.310029357351709 ], [ -64.863585055445299, 18.31000672489256 ], [ -64.863566279973156, 18.309983927414692 ], [ -64.863547672139191, 18.309960959679245 ], [ -64.863529231943346, 18.309938160891704 ], [ -64.863510959385621, 18.309915026827809 ], [ -64.863492685518281, 18.309891892763915 ], [ -64.863474581908406, 18.309868758700077 ], [ -64.863456644626979, 18.309845458307734 ], [ -64.863438707345608, 18.30982198765787 ], [ -64.863420936392629, 18.309798519627407 ], [ -64.863403334387499, 18.309775050287215 ], [ -64.863385901330219, 18.309751413308959 ], [ -64.863368466963266, 18.309727776330647 ], [ -64.863351200234433, 18.309703970404485 ], [ -64.863333933505601, 18.309680165788052 ], [ -64.863317002053066, 18.309656193533442 ], [ -64.863300070600474, 18.309632053640712 ], [ -64.863283305476443, 18.309608081386159 ], [ -64.863266542971701, 18.309583941493429 ], [ -64.863250114433583, 18.309559635272194 ], [ -64.863233685895466, 18.309535326431671 ], [ -64.863217424995526, 18.309510852572316 ], [ -64.863201164095528, 18.309486377403289 ], [ -64.863185238471829, 18.309461902234261 ], [ -64.863169311538513, 18.309437259427057 ], [ -64.863153554862663, 18.309412447672116 ], [ -64.863137796877083, 18.309387804864912 ], [ -64.863122206529738, 18.309362826781467 ], [ -64.863106782510783, 18.309338017645814 ], [ -64.863091527439678, 18.309313039562369 ], [ -64.863076441316423, 18.309287892531074 ], [ -64.863061353883438, 18.309262746809509 ], [ -64.863046434088631, 18.309237602397559 ], [ -64.863031681931943, 18.309212287728144 ], [ -64.863017097413433, 18.309186974368401 ], [ -64.863002512894923, 18.309161493370539 ], [ -64.862988263652653, 18.309136012372619 ], [ -64.86297401441044, 18.309110531374756 ], [ -64.862959765168171, 18.309084882738716 ], [ -64.862945851202198, 18.309059235412349 ], [ -64.862931937236283, 18.309033585466636 ], [ -64.862918190908488, 18.309007770502149 ], [ -64.862904612218813, 18.308981786589811 ], [ -64.862891201167258, 18.308955970315651 ], [ -64.86287779011576, 18.308929986403314 ], [ -64.862864545392711, 18.308903833543184 ], [ -64.862851638565303, 18.308877683302399 ], [ -64.862838561480373, 18.308851530442269 ], [ -64.862825822291143, 18.308825380201483 ], [ -64.86281308048251, 18.308799059703176 ], [ -64.86280067656952, 18.308772740514598 ], [ -64.862788271346858, 18.308746253687843 ], [ -64.862775866124196, 18.308719768170761 ], [ -64.86276379617783, 18.308693281344006 ], [ -64.862751893869643, 18.308666794517251 ], [ -64.862739991561398, 18.308640138742703 ], [ -64.86272825689133, 18.308613485587443 ], [ -64.862716689859383, 18.308586663484448 ], [ -64.862705122827435, 18.308559841381395 ], [ -64.862693891071785, 18.308533019278343 ], [ -64.862682659316135, 18.30850602953717 ], [ -64.862671595198663, 18.308479207434118 ], [ -64.862660697409581, 18.308452216383273 ], [ -64.862649969878078, 18.308425060313596 ], [ -64.862639407365293, 18.308398070572423 ], [ -64.86262884747191, 18.308370913193073 ], [ -64.862618453906975, 18.308343588175603 ], [ -64.862608395618338, 18.308316429486638 ], [ -64.862598168381908, 18.308289104469168 ], [ -64.862588279041063, 18.308261779451698 ], [ -64.862578556028723, 18.308234288105723 ], [ -64.862568833016383, 18.308206963088253 ], [ -64.862559277642163, 18.308179470432663 ], [ -64.86254988990612, 18.308151976467343 ], [ -64.862540669808197, 18.308124317483248 ], [ -64.862531617348395, 18.308096823517985 ], [ -64.86252273252677, 18.30806916453389 ], [ -64.862513846395473, 18.308041336602003 ], [ -64.86250513052164, 18.308013676308235 ], [ -64.862496748614433, 18.307985848376347 ], [ -64.862488199069105, 18.307958020444403 ], [ -64.862479984800075, 18.307930192512515 ], [ -64.862471938169108, 18.307902364580627 ], [ -64.862463891538198, 18.307874369010563 ], [ -64.862456180183585, 18.307846373440498 ], [ -64.862448468828973, 18.307818376560817 ], [ -64.86244092511248, 18.307790382300425 ], [ -64.862433549034165, 18.307762385420688 ], [ -64.86242634059397, 18.307734223522175 ], [ -64.862419132153775, 18.30770606031399 ], [ -64.862412258989878, 18.307677897105805 ], [ -64.86240538582598, 18.307649732587947 ], [ -64.862398680300203, 18.307621569379762 ], [ -64.862392142412602, 18.3075932385334 ], [ -64.862385772163123, 18.307564908996767 ], [ -64.86237956955182, 18.307536578150405 ], [ -64.86237353457858, 18.307508247304099 ], [ -64.862367499605398, 18.307479916457737 ], [ -64.862361632270392, 18.307451417973255 ], [ -64.862356100211628, 18.307423087126892 ], [ -64.862350568152863, 18.307394588642467 ], [ -64.862345203732275, 18.307366090157984 ], [ -64.862339839311687, 18.307337590363829 ], [ -64.86233481016734, 18.307309093189019 ], [ -64.862329947351498, 18.307280593394864 ], [ -64.862325087155, 18.307251928581877 ], [ -64.86232039328695, 18.307223262459274 ], [ -64.862363979204417, 18.307245725970574 ], [ -64.86244897174339, 18.307273553902462 ], [ -64.86253413192054, 18.307293670479737 ], [ -64.862623315413146, 18.307305908064279 ], [ -64.86270428463672, 18.307337759311622 ], [ -64.862793634457773, 18.307342285541495 ], [ -64.862878795944596, 18.307358546441492 ], [ -64.862963956121803, 18.307374807341432 ], [ -64.863053474890648, 18.307363743223959 ], [ -64.863142826021431, 18.307360724427667 ], [ -64.863232177152156, 18.3073575406126 ], [ -64.863321528282938, 18.307358211165194 ], [ -64.863407022426713, 18.307343459008507 ], [ -64.863496373557439, 18.307340272574095 ], [ -64.863581870320559, 18.307313787057012 ], [ -64.863667364464334, 18.307295179223047 ], [ -64.863748836602326, 18.307264835409285 ], [ -64.863834333365446, 18.307246061246872 ], [ -64.863850594265386, 18.307242373207714 ], [ -64.863921337562147, 18.30722745341285 ], [ -64.864010856331049, 18.307216556933497 ], [ -64.864096350474824, 18.307190070106742 ], [ -64.864181847237944, 18.307167438957322 ], [ -64.864267341381719, 18.307148663485179 ], [ -64.864309587503669, 18.307141287406864 ], [ -64.864313778457245, 18.307141287406864 ], [ -64.86439927260102, 18.307114968218229 ], [ -64.86448476936414, 18.307096191436472 ], [ -64.864574120494922, 18.307085296266735 ], [ -64.86465961463864, 18.307066688432769 ], [ -64.86474511140176, 18.307051768637962 ], [ -64.864830605545535, 18.307029137488541 ], [ -64.864916102308655, 18.307002818299907 ], [ -64.864997574446647, 18.306972308157697 ], [ -64.86507921422276, 18.306934254298994 ], [ -64.865483220840133, 18.306933582436784 ], [ -64.865863759427043, 18.306994604030876 ], [ -64.866157461455316, 18.307087978477057 ], [ -64.866416630025924, 18.307172971016087 ], [ -64.866658868453669, 18.307208007388169 ], [ -64.867004369358767, 18.307326695194092 ], [ -64.86727208747476, 18.307419902002209 ], [ -64.867505272133087, 18.307504559264885 ], [ -64.86778120451811, 18.307647386963595 ], [ -64.867978514613583, 18.307855927505045 ], [ -64.868184206616263, 18.308105877287403 ], [ -64.868295183067573, 18.308296983461901 ], [ -64.868407500624073, 18.308314419138583 ], [ -64.868546305007328, 18.308299164067478 ], [ -64.868692485468898, 18.308424388451385 ], [ -64.868847550752093, 18.308524972647433 ], [ -64.869055086774324, 18.308568055650426 ], [ -64.869245691344076, 18.308552968217498 ], [ -64.869323978357329, 18.308528828324768 ], [ -64.869361864577854, 18.308456742613146 ], [ -64.869361864577854, 18.308450707639963 ], [ -64.869318781574862, 18.308378792185863 ], [ -64.869269495960509, 18.308306706474298 ], [ -64.869226412957516, 18.308234789710468 ], [ -64.869195735177186, 18.308156839283185 ], [ -64.869152652174137, 18.308084922519413 ], [ -64.869115939420624, 18.308006969472785 ], [ -64.869066486168151, 18.307934886380565 ], [ -64.869010830304319, 18.307868835642125 ], [ -64.868985852220874, 18.307862634340495 ], [ -64.868930028718921, 18.307832290526733 ], [ -64.868855429744826, 18.307777977077762 ], [ -64.868799773881051, 18.307711927649052 ], [ -64.868750488266699, 18.307639843247102 ], [ -64.868701035014226, 18.307567757535537 ], [ -64.868645379150394, 18.307501709416442 ], [ -64.868570780176299, 18.307459296966044 ], [ -64.868483608341421, 18.30741688451559 ], [ -64.868402639117903, 18.30738637437338 ], [ -64.868321837532505, 18.307349829257987 ], [ -64.868247238558411, 18.30730741549786 ], [ -64.868166101696715, 18.307276905355707 ], [ -64.868085132473141, 18.307246396523169 ], [ -64.867997793000143, 18.307227787379475 ], [ -64.867972144364103, 18.307220580248952 ], [ -64.867990250593323, 18.307214377637649 ], [ -64.868008354203198, 18.307208007388169 ], [ -64.868026459122746, 18.307201637138689 ], [ -64.868044564042293, 18.307195099251089 ], [ -64.868062502633393, 18.30718839241564 ], [ -64.868080438605148, 18.307181520561414 ], [ -64.868098208248398, 18.307174647397517 ], [ -64.868116145529825, 18.307167438957322 ], [ -64.868133915173075, 18.307160230517127 ], [ -64.868151517178205, 18.307153022076932 ], [ -64.868169119183278, 18.307145478360439 ], [ -64.868186721188408, 18.307137934643947 ], [ -64.868204323193538, 18.307130223289334 ], [ -64.868221757560491, 18.307122344296602 ], [ -64.868239191927501, 18.307114296356019 ], [ -64.868256458656333, 18.307106251034782 ], [ -64.868273725385166, 18.307098035456022 ], [ -64.868290992113998, 18.307089654858487 ], [ -64.868308091204653, 18.30708127295128 ], [ -64.868325190295366, 18.307072554458159 ], [ -64.868342121747901, 18.307063838584327 ], [ -64.868359053200436, 18.307055121400822 ], [ -64.868375817014851, 18.307046068941077 ], [ -64.868392748467386, 18.307037016481274 ], [ -64.86840934464368, 18.307027796383352 ], [ -64.868425940819918, 18.307018408647309 ], [ -64.868442536996156, 18.307009020911266 ], [ -64.86845913317245, 18.306999465537046 ], [ -64.868475561710511, 18.306989742524706 ], [ -64.868491822610508, 18.306980019512309 ], [ -64.868508083510449, 18.306970128861849 ], [ -64.868524176772269, 18.306960070573211 ], [ -64.868540270034146, 18.306949844646397 ], [ -64.868556363295966, 18.306939617409967 ], [ -64.868572288919609, 18.306929225154704 ], [ -64.868588214543308, 18.306918663951649 ], [ -64.868603972528831, 18.306908101438864 ], [ -64.868619562876233, 18.306897373907361 ], [ -64.868635153223636, 18.306886477427952 ], [ -64.868650743571038, 18.306875580948599 ], [ -64.868666166280263, 18.306864516831126 ], [ -64.868681421351368, 18.306853285075476 ], [ -64.868696676422474, 18.306842053319826 ], [ -64.868711931493579, 18.306830653925999 ], [ -64.868727018926506, 18.306819086894109 ], [ -64.868741938721371, 18.306807519862161 ], [ -64.868756858516178, 18.306795785192094 ], [ -64.868771610672866, 18.306783882883849 ], [ -64.868786362829496, 18.306771980575604 ], [ -64.868800947348063, 18.306759910629239 ], [ -64.868815364228396, 18.306747839373202 ], [ -64.868829781108786, 18.306735603098389 ], [ -64.868844030351056, 18.306723197875726 ], [ -64.868858279593269, 18.306710792653064 ], [ -64.868872361197361, 18.306698218482609 ], [ -64.868886442801454, 18.306685479293321 ], [ -64.868900356767426, 18.306672737484689 ], [ -64.868914103095221, 18.306659829347609 ], [ -64.868927849423073, 18.306646922520201 ], [ -64.868941428112691, 18.306633845435272 ], [ -64.868955006802366, 18.306620603331567 ], [ -64.868968417853921, 18.306607359918189 ], [ -64.868981661267298, 18.306594116504812 ], [ -64.868994904680619, 18.306580537815194 ], [ -64.869007980455876, 18.306567125453967 ], [ -64.869020888592956, 18.306553380435844 ], [ -64.869033796730037, 18.306539634108049 ], [ -64.869046537228996, 18.306525887780253 ], [ -64.869059110089779, 18.306511973814281 ], [ -64.869071682950619, 18.306497892210189 ], [ -64.869084088173281, 18.306483810606096 ], [ -64.869096493395887, 18.306469561363826 ], [ -64.869108563342252, 18.306455312121614 ], [ -64.869120633288674, 18.306441062879344 ], [ -64.869132703235039, 18.306426478360834 ], [ -64.869144437905106, 18.306412061480444 ], [ -64.869156340213294, 18.306397309323756 ], [ -64.869167907245242, 18.306382724805246 ], [ -64.869179306639069, 18.306367805010439 ], [ -64.869190706032839, 18.306353052853751 ], [ -64.869202105426609, 18.306338133058944 ], [ -64.869213169544139, 18.306323045626016 ], [ -64.869224233661612, 18.306307958193031 ], [ -64.869235130141021, 18.306292703121926 ], [ -64.869245858982197, 18.306277448050821 ], [ -64.869256587823429, 18.306262025341596 ], [ -64.869267149026484, 18.306246602632314 ], [ -64.869277542591419, 18.306231179923088 ], [ -64.869287936156354, 18.306215589575686 ], [ -64.869297994444992, 18.306199831590163 ], [ -64.869308052733629, 18.306184241242761 ], [ -64.869317943384146, 18.306168315619061 ], [ -64.869327834034607, 18.306152557633538 ], [ -64.869337557047004, 18.306136632009839 ], [ -64.869347112421167, 18.306120538748019 ], [ -64.869356500157267, 18.306104445486199 ], [ -64.869365720255189, 18.306088352224378 ], [ -64.869374940353111, 18.306072091324438 ], [ -64.869383992812857, 18.306055830424441 ], [ -64.869392877634482, 18.306039569524501 ], [ -64.869401594817987, 18.306023140986383 ], [ -64.869410312001492, 18.306006544810145 ], [ -64.869418861546819, 18.305990116272028 ], [ -64.869427243454027, 18.305973520095733 ], [ -64.869435457723057, 18.305956756281375 ], [ -64.869443671992144, 18.305940160105081 ], [ -64.869451550984877, 18.305923396290723 ], [ -64.869459429977667, 18.305906464838131 ], [ -64.869467141332279, 18.305889701023773 ], [ -64.869474685048772, 18.305872769571181 ], [ -64.869482228765264, 18.305855670480526 ], [ -64.869489604843579, 18.305838571389813 ], [ -64.869496645645654, 18.305821472299158 ], [ -64.869503686447672, 18.305804373208446 ], [ -64.869510727249747, 18.305787106479613 ], [ -64.869517432775467, 18.305770007388958 ], [ -64.869524138301244, 18.305752573021948 ], [ -64.869530676188845, 18.305735306293116 ], [ -64.869536878800204, 18.305717871926163 ], [ -64.869543249049684, 18.305700437559153 ], [ -64.869549284022867, 18.3056830031922 ], [ -64.869555151357872, 18.305665401187071 ], [ -64.869561018692934, 18.305647799181941 ], [ -64.869566718389819, 18.305630197176868 ], [ -64.869572250448584, 18.305612595171738 ], [ -64.869577614869172, 18.305594993166608 ], [ -64.86958281165164, 18.305577223523358 ], [ -64.869588008434107, 18.305559453880051 ], [ -64.869593037578454, 18.3055416842368 ], [ -64.869597731446447, 18.305523746955373 ], [ -64.869602425314497, 18.305505809674003 ], [ -64.86960695154437, 18.305488040030752 ], [ -64.869611477774299, 18.305470102749325 ], [ -64.869615668727874, 18.305451997829778 ], [ -64.869619859681507, 18.30543406054835 ], [ -64.869623715358784, 18.305415955628803 ], [ -64.869627571036119, 18.305398018347375 ], [ -64.869631259075277, 18.305379913427828 ], [ -64.869634779476314, 18.30536180850828 ], [ -64.869638299877295, 18.305343703588733 ], [ -64.869641485002035, 18.305325431031065 ], [ -64.869644670126775, 18.305307326111517 ], [ -64.869647519975217, 18.305289053553793 ], [ -64.86965036982366, 18.305270780996125 ], [ -64.869653052033982, 18.305252676076577 ], [ -64.869655566606127, 18.305234403518853 ], [ -64.869658081178329, 18.305216130961185 ], [ -64.869660260474177, 18.30519769076534 ], [ -64.869662439770082, 18.305179418207615 ], [ -64.869664283789632, 18.305161145649947 ], [ -64.869666127809239, 18.305142705454102 ], [ -64.869667804190669, 18.305124432896378 ], [ -64.869669312933979, 18.305105992700533 ], [ -64.869670654039112, 18.305087720142865 ], [ -64.869671995144245, 18.30506927994702 ], [ -64.869673000973137, 18.305050839751175 ], [ -64.869674006801972, 18.30503239955533 ], [ -64.869674677354567, 18.305014126997662 ], [ -64.869675347907162, 18.304995686801817 ], [ -64.869675850821579, 18.304977246605972 ], [ -64.869676186097877, 18.304958806410127 ], [ -64.869676521374174, 18.304940366214282 ], [ -64.869676521374174, 18.304921926018437 ], [ -64.869676521374174, 18.304903485822592 ], [ -64.869676186097877, 18.304885045626747 ], [ -64.869675850821579, 18.304866605430902 ], [ -64.869675347907162, 18.304848165235057 ], [ -64.869674677354567, 18.30482989267739 ], [ -64.869673839163852, 18.304811452481545 ], [ -64.86967283333496, 18.3047930122857 ], [ -64.869671827506124, 18.304774572089855 ], [ -64.869670486400992, 18.304756299532187 ], [ -64.869669145295802, 18.304737859336342 ], [ -64.869692614635994, 18.304656219560172 ], [ -64.869714910509117, 18.30457457978406 ], [ -64.869744079546194, 18.304492940007947 ], [ -64.869794706265679, 18.304425214197749 ], [ -64.869866455391275, 18.304378107879302 ], [ -64.869945412957122, 18.304337874724752 ], [ -64.870031243686867, 18.304311220259819 ], [ -64.870117074416555, 18.304298312122739 ], [ -64.870202569870003, 18.304312561365009 ], [ -64.87028806532345, 18.304333851409297 ], [ -64.870373560776898, 18.304348100651509 ], [ -64.87045184779015, 18.304389674911249 ], [ -64.870537175605421, 18.304424543645212 ], [ -64.870622503420748, 18.304452371577099 ], [ -64.870693414355628, 18.304507524526457 ], [ -64.870749908410176, 18.30457625616549 ], [ -64.870813610904918, 18.304638114640625 ], [ -64.870870104959408, 18.304706678641537 ], [ -64.870926599013956, 18.30477541028057 ], [ -64.870975884628308, 18.304843974281482 ], [ -64.871039587122993, 18.304912705920515 ], [ -64.871103289617736, 18.30497456439565 ], [ -64.871181408992811, 18.30502284418111 ], [ -64.871259528367943, 18.30506441844085 ], [ -64.871344856183214, 18.305099287174812 ], [ -64.871444600878931, 18.3051205772191 ], [ -64.871537303462901, 18.305128120935535 ], [ -64.871622800225964, 18.305149243341702 ], [ -64.871708463317589, 18.305163660222092 ], [ -64.871793791132859, 18.305198361317878 ], [ -64.871864534429619, 18.30526038743119 ], [ -64.871935445364556, 18.30530866721665 ], [ -64.872006356299437, 18.305363820166008 ], [ -64.872077433562822, 18.305412099951468 ], [ -64.872155554247627, 18.305453674211208 ], [ -64.872233673622702, 18.30549508083277 ], [ -64.872311792997834, 18.30553665509251 ], [ -64.872407179101742, 18.30564444641908 ], [ -64.872353367257517, 18.30562516803252 ], [ -64.872269045271139, 18.3056025368831 ], [ -64.872184723284704, 18.305579905733623 ], [ -64.872100736574509, 18.305542522427515 ], [ -64.872016414588074, 18.305512515199723 ], [ -64.871932260239817, 18.305482507971988 ], [ -64.871848105891502, 18.30544512466588 ], [ -64.871764119181364, 18.305407741359772 ], [ -64.871679963523434, 18.305370358053665 ], [ -64.871595810484791, 18.305325766307362 ], [ -64.871511822464981, 18.305288383001198 ], [ -64.871412414355291, 18.305243455978655 ], [ -64.871320381014243, 18.30522820090755 ], [ -64.871236059027808, 18.305205402119952 ], [ -64.871151903369821, 18.305168018813845 ], [ -64.871060206614743, 18.305130635507737 ], [ -64.870975884628308, 18.30510800435826 ], [ -64.870891730279993, 18.305070621052153 ], [ -64.870800032215243, 18.305033237746045 ], [ -64.870692911441211, 18.304988310723445 ], [ -64.87059316674555, 18.30497288801422 ], [ -64.870501301042623, 18.304950089226622 ], [ -64.870409267701575, 18.304949418674028 ], [ -64.87031706672235, 18.304948580483313 ], [ -64.870262751963708, 18.305014126997662 ], [ -64.87022369227617, 18.305094425668642 ], [ -64.870215142730842, 18.305182435694235 ], [ -64.870206760823635, 18.305270445719827 ], [ -64.870213633987532, 18.30535845574542 ], [ -64.870212795796817, 18.305446465771013 ], [ -64.870227380315328, 18.305534475796605 ], [ -64.870279683416243, 18.305696246605578 ], [ -64.870301979289422, 18.305777215829153 ], [ -64.870324275162545, 18.30585801741455 ], [ -64.870338859681112, 18.305946195078263 ], [ -64.870380433940795, 18.306073600067691 ], [ -64.870408261872683, 18.306153898738671 ], [ -64.87042787553554, 18.306236879619973 ], [ -64.870442460054107, 18.306319860501276 ], [ -64.870457044572618, 18.306402672434729 ], [ -64.87046140316437, 18.306485654625646 ], [ -64.870465761756122, 18.306568467868829 ], [ -64.870475149492165, 18.306651281111954 ], [ -64.870510185864248, 18.306729568125206 ], [ -64.870560477307436, 18.306798132126062 ], [ -64.870621162315615, 18.306856973114634 ], [ -64.870671621396923, 18.306925703443994 ], [ -64.870711686913353, 18.306998962622572 ], [ -64.870746723285436, 18.307077249635825 ], [ -64.870776562875051, 18.307155369010957 ], [ -64.870801373320376, 18.307238349892259 ], [ -64.870805731912128, 18.307321163135384 ], [ -64.87074404107517, 18.307379165933185 ], [ -64.870662066022703, 18.307417387430007 ], [ -64.870610433474383, 18.307485279568652 ], [ -64.870604733777498, 18.30756792648333 ], [ -64.870624347440355, 18.307650907364632 ], [ -64.870648990247503, 18.307733888245878 ], [ -64.870678997475295, 18.30781217525913 ], [ -64.870714033847378, 18.307890294634262 ], [ -64.870769522073033, 18.307953997128948 ], [ -64.870845629790381, 18.307998587565578 ], [ -64.870916539415646, 18.308047874489603 ], [ -64.870997845225133, 18.308082575585388 ], [ -64.871073952942538, 18.3081221381874 ], [ -64.871150059350214, 18.308161699479683 ], [ -64.871226168377291, 18.308206123587865 ], [ -64.871297079312171, 18.30825541051189 ], [ -64.871357764320351, 18.308314419138583 ], [ -64.871403026619191, 18.308387844645665 ], [ -64.871440577563476, 18.308442662318726 ], [ -64.871460358864454, 18.308500831445031 ], [ -64.871496064479459, 18.308579621372701 ], [ -64.871531940351929, 18.308658243662251 ], [ -64.871576867374529, 18.308737033589921 ], [ -64.871631014495051, 18.308807275281936 ], [ -64.871657668959926, 18.308885897571486 ], [ -64.871693375884604, 18.308964518551306 ], [ -64.871738302907204, 18.309043308479033 ], [ -64.871764957372079, 18.309121930768526 ], [ -64.871791610527339, 18.309200554367749 ], [ -64.871818266301887, 18.309279344295419 ], [ -64.871844919457089, 18.309357966584969 ], [ -64.871862355133771, 18.309445138419846 ], [ -64.871889177236824, 18.309523759399724 ], [ -64.871915830392027, 18.309602381689274 ], [ -64.871924045970786, 18.309691397543702 ], [ -64.871978193091252, 18.309761637926044 ], [ -64.872014067654106, 18.309840261525267 ], [ -64.872068047136452, 18.30991033295976 ], [ -64.872122194256974, 18.309980574651775 ], [ -64.872176341377497, 18.310050647395997 ], [ -64.872230488498019, 18.31012088646861 ], [ -64.872257142962894, 18.31019950875816 ], [ -64.872263513212374, 18.310287855369722 ], [ -64.872247755226795, 18.310373852427915 ], [ -64.872187070218672, 18.310437891508627 ], [ -64.872119009132234, 18.310494719529743 ], [ -64.872103251146712, 18.31058055156916 ], [ -64.872094869239504, 18.310666548627353 ], [ -64.872071567537489, 18.310752379357098 ], [ -64.871996130372679, 18.310802001557363 ], [ -64.871905941051182, 18.31080853944502 ], [ -64.871816087006039, 18.31078624357184 ], [ -64.871733775367659, 18.31075690558697 ], [ -64.871651297400774, 18.310727568911773 ], [ -64.871620620930116, 18.310806192510995 ], [ -64.871589943149786, 18.310884813490873 ], [ -64.871514505984976, 18.310927225941271 ], [ -64.871438901182046, 18.31097684683192 ], [ -64.871423143196466, 18.311062677561608 ], [ -64.871460023588156, 18.311141970403753 ], [ -64.871526911207638, 18.311207014003628 ], [ -64.871593966465241, 18.311264849163308 ], [ -64.871676275484276, 18.311301395588373 ], [ -64.871758587122656, 18.311337939394093 ], [ -64.871818097354094, 18.311402982993968 ], [ -64.871757412345971, 18.311467020764951 ], [ -64.871659512979534, 18.311495017644688 ], [ -64.871584074505051, 18.311537428785414 ], [ -64.871651131072326, 18.311595263945094 ], [ -64.871590446064204, 18.311659301716134 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_571", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.901065586442144, 18.310678953850015 ], [ -64.901008420525329, 18.310744165088011 ], [ -64.900993836006819, 18.310766963875608 ], [ -64.900888223976096, 18.310796300550805 ], [ -64.900786970537126, 18.310831673508858 ], [ -64.900698457597116, 18.310831001646648 ], [ -64.900610113604898, 18.310836198429058 ], [ -64.900521599355159, 18.310829492903338 ], [ -64.900433255362941, 18.31082278737756 ], [ -64.900351446639036, 18.310791941959053 ], [ -64.900263102646818, 18.31077920146015 ], [ -64.900174923673376, 18.31076646096119 ], [ -64.900086747319335, 18.310741650515865 ], [ -64.900004772266868, 18.310710805097358 ], [ -64.899922963542963, 18.310679959678851 ], [ -64.899847526378153, 18.310637211952155 ], [ -64.899772256851463, 18.310594296587283 ], [ -64.89969044943723, 18.310557417505265 ], [ -64.899608643332613, 18.31052070344208 ], [ -64.89953320485813, 18.31047778938688 ], [ -64.899451397443897, 18.3104469426587 ], [ -64.89936305345168, 18.31043420346947 ], [ -64.899303206634272, 18.31042280276597 ], [ -64.89925526081538, 18.310352897659925 ], [ -64.89919105540622, 18.31029439194765 ], [ -64.899110421459, 18.310255164621992 ], [ -64.899042192734385, 18.310200346948875 ], [ -64.898973796371592, 18.310145696913935 ], [ -64.898909592272162, 18.310083335524382 ], [ -64.898837172593915, 18.310036396844055 ], [ -64.89877699050021, 18.309974035454502 ], [ -64.898725021365919, 18.309907987335407 ], [ -64.898729716543642, 18.309822993486762 ], [ -64.898714292524687, 18.309741690296562 ], [ -64.899215699523097, 18.309322090712499 ], [ -64.899490961355525, 18.309558795771807 ], [ -64.899744262591128, 18.309783264556302 ], [ -64.899975266643878, 18.309985937762747 ], [ -64.900154305491355, 18.31011636154841 ], [ -64.90031087951786, 18.310239575584262 ], [ -64.900438284507288, 18.310269247535757 ], [ -64.900573399541656, 18.310270419693097 ], [ -64.900686890565169, 18.310223145736472 ], [ -64.901065586442144, 18.310678953850015 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_860", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.9445822614706, 18.316091151329033 ], [ -64.942498185374063, 18.318323922459342 ], [ -64.942421239466, 18.318304979349023 ], [ -64.942338089636905, 18.318279833627457 ], [ -64.942254773479306, 18.318254687905835 ], [ -64.942165088381955, 18.318241613440307 ], [ -64.942068862777603, 18.318234740276409 ], [ -64.94197900873246, 18.318240272335117 ], [ -64.94188915468726, 18.31824563544609 ], [ -64.941767449394717, 18.318232393342385 ], [ -64.941690838762895, 18.318182772451735 ], [ -64.941614229440745, 18.318139352862772 ], [ -64.941544155386907, 18.318077494387637 ], [ -64.941474082642685, 18.318015635912502 ], [ -64.941390935432935, 18.317978252606395 ], [ -64.941320861379097, 18.317922596742562 ], [ -64.941257160194027, 18.3178607395771 ], [ -64.941161271175702, 18.317817152350017 ], [ -64.941078290294399, 18.317779770353582 ], [ -64.940982401276017, 18.317736015488322 ], [ -64.940899085118474, 18.317710869766699 ], [ -64.940809397401722, 18.317704165550595 ], [ -64.940719377028074, 18.317715732582542 ], [ -64.940635725594234, 18.317751773473844 ], [ -64.940583756459944, 18.317818828731447 ], [ -64.940525418385789, 18.317885716350929 ], [ -64.940467249259541, 18.317952771608475 ], [ -64.940389800437003, 18.317995016420809 ], [ -64.940325092113426, 18.318061905349907 ], [ -64.940317882363559, 18.318147568441475 ], [ -64.937661322005226, 18.317614980748317 ], [ -64.937622429955866, 18.317280542651076 ], [ -64.937775651219454, 18.316923139437733 ], [ -64.938079243898244, 18.316552659139461 ], [ -64.938547121958152, 18.316283767556513 ], [ -64.939203425291907, 18.31607338037611 ], [ -64.940296593628943, 18.315748666600882 ], [ -64.941439550494692, 18.315638863616527 ], [ -64.942981652471701, 18.31568965797419 ], [ -64.943665114494479, 18.31586115048583 ], [ -64.944320075413373, 18.31602543717662 ], [ -64.9445822614706, 18.316091151329033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_230", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.861077691725484, 18.342136750557017 ], [ -64.861060927911069, 18.342228616259945 ], [ -64.861060089720354, 18.342313104574828 ], [ -64.861059083891519, 18.342420560625158 ], [ -64.861066459969834, 18.342505051559385 ], [ -64.861089091119254, 18.34266631945394 ], [ -64.861096299559449, 18.342750807768823 ], [ -64.861127312616134, 18.342881565521168 ], [ -64.861150614318149, 18.342966222783843 ], [ -64.861174083658284, 18.343050712408456 ], [ -64.861218340128289, 18.343155152281838 ], [ -64.861203252695361, 18.343236958386399 ], [ -64.861186991795364, 18.343304182591851 ], [ -64.860955651156644, 18.343484058320371 ], [ -64.860554325439921, 18.343720763379679 ], [ -64.860212343626188, 18.343929806835604 ], [ -64.859958874752408, 18.344167854309717 ], [ -64.859690486083878, 18.344405563888245 ], [ -64.859496864027562, 18.3445733696704 ], [ -64.859085647660322, 18.344118567385749 ], [ -64.858743665846589, 18.343725958852474 ], [ -64.858400510565787, 18.343301500381529 ], [ -64.858066241416338, 18.342881565521168 ], [ -64.857870606392623, 18.342604293340628 ], [ -64.857652007562535, 18.342361553308137 ], [ -64.857307509866928, 18.342087632580842 ], [ -64.857046163310088, 18.341851764402577 ], [ -64.856587002433685, 18.341539623488075 ], [ -64.856148459739302, 18.341204682476359 ], [ -64.855897505437724, 18.341051964127189 ], [ -64.855426108286508, 18.340867394530676 ], [ -64.85494850721426, 18.340759435565928 ], [ -64.85463871192411, 18.340740324817489 ], [ -64.854385745964805, 18.340798495253466 ], [ -64.854005375016072, 18.341006198913874 ], [ -64.85365719059098, 18.341154054447202 ], [ -64.853214290614574, 18.341300905461367 ], [ -64.852631748064141, 18.341510454451054 ], [ -64.85224919781956, 18.341557559459829 ], [ -64.851729687211275, 18.341529731527942 ], [ -64.851005658067379, 18.341373157501437 ], [ -64.850282467114141, 18.341126226515314 ], [ -64.849780055596568, 18.340880973220351 ], [ -64.849466907543558, 18.340637562635209 ], [ -64.849247973437173, 18.340424829830511 ], [ -64.849106820810277, 18.340226513906146 ], [ -64.849104307547805, 18.34022232295257 ], [ -64.84910531337664, 18.340221986366601 ], [ -64.850161432374193, 18.339876653099623 ], [ -64.850448764152986, 18.339649503414478 ], [ -64.850624448927874, 18.339438279353033 ], [ -64.850701227197874, 18.33948035652719 ], [ -64.850782866973987, 18.339513381241545 ], [ -64.850854783737759, 18.339559984645575 ], [ -64.850941452658219, 18.339565181428043 ], [ -64.851028289216799, 18.339566019618815 ], [ -64.851114958137259, 18.339575910269275 ], [ -64.851206320925712, 18.339590494787785 ], [ -64.851327020389419, 18.339568366552783 ], [ -64.851423915236637, 18.339527798121935 ], [ -64.851448725681962, 18.339513548879722 ], [ -64.851484097330342, 18.339517907471475 ], [ -64.851569425145613, 18.339501646571478 ], [ -64.851647879797042, 18.339465101456085 ], [ -64.851698506516527, 18.339441464477773 ], [ -64.851896990079013, 18.339406595743867 ], [ -64.85198114442727, 18.33937105645731 ], [ -64.85205004370448, 18.339320597375945 ], [ -64.852119278257931, 18.339262929854442 ], [ -64.852203600244366, 18.339198221530864 ], [ -64.852303009663785, 18.339162682244307 ], [ -64.852371908940938, 18.339112223162999 ], [ -64.85242588842334, 18.339039971122929 ], [ -64.852502834331403, 18.338960510642664 ], [ -64.852571901246733, 18.338903010759282 ], [ -64.852625880729136, 18.338837967159407 ], [ -64.852786645709216, 18.338759177231736 ], [ -64.852870800057474, 18.338716261866864 ], [ -64.852954954405789, 18.338673346501992 ], [ -64.853206746898081, 18.338631772242252 ], [ -64.853298277324711, 18.338625234354652 ], [ -64.853389640113164, 18.338618696467051 ], [ -64.853488714256287, 18.338626743097961 ], [ -64.853602875832337, 18.338642333445364 ], [ -64.853694238620847, 18.338635795557707 ], [ -64.85379364804021, 18.338607464711401 ], [ -64.853882496256517, 18.338584665923804 ], [ -64.853971344472882, 18.338573266530034 ], [ -64.85404761982835, 18.338525489658991 ], [ -64.854143341208612, 18.338453740533339 ], [ -64.85414702924777, 18.338421218733401 ], [ -64.854198829434267, 18.338387188190154 ], [ -64.854276445894925, 18.338348463778914 ], [ -64.854338807284478, 18.338289958066639 ], [ -64.854380716820515, 18.338216532559613 ], [ -64.854422626356495, 18.338143107052531 ], [ -64.85447979096358, 18.338079572195966 ], [ -64.85454215235319, 18.338021066483691 ], [ -64.85460971052521, 18.337967422277586 ], [ -64.854670227895213, 18.337939761983819 ], [ -64.85475873952555, 18.337925009827188 ], [ -64.85484742141341, 18.337902713954009 ], [ -64.854935765405628, 18.337903552144724 ], [ -64.85502411201719, 18.337904222697318 ], [ -64.855209015580328, 18.337905731440628 ], [ -64.855297362191891, 18.337914113347836 ], [ -64.855401633117481, 18.337930374247776 ], [ -64.855489978419371, 18.337938756154983 ], [ -64.855578156083084, 18.337954849416803 ], [ -64.855666501384974, 18.337970942678623 ], [ -64.855850903343367, 18.338018551911546 ], [ -64.855939079697464, 18.338034645173366 ], [ -64.856027426309026, 18.338050570797009 ], [ -64.856123650603649, 18.338074375413498 ], [ -64.856243847152939, 18.338113770377333 ], [ -64.856331857178532, 18.338145286348379 ], [ -64.856403772632632, 18.338191889752409 ], [ -64.856483903665435, 18.338223238085334 ], [ -64.856491951606017, 18.338223238085334 ], [ -64.856580129269787, 18.338247042701823 ], [ -64.856708203502137, 18.338301860374884 ], [ -64.85678833453494, 18.338340920062421 ], [ -64.856924121431575, 18.338418704161256 ], [ -64.856995870557228, 18.338480730274512 ], [ -64.85705974069009, 18.338542588749647 ], [ -64.857242970491143, 18.338712909103947 ], [ -64.857306671676213, 18.338774935217259 ], [ -64.857362327539988, 18.338844505047007 ], [ -64.85743424561349, 18.33889881980565 ], [ -64.857514041369996, 18.338953134564349 ], [ -64.857585956824096, 18.338999737968379 ], [ -64.857697771466178, 18.339077354429037 ], [ -64.857769689539623, 18.339124125471187 ], [ -64.857841604993723, 18.339178440229887 ], [ -64.857913521757496, 18.339225043633917 ], [ -64.857993317514058, 18.339271814676067 ], [ -64.858376705949354, 18.339535844752845 ], [ -64.858440408444096, 18.33960541458265 ], [ -64.858504110938782, 18.339667273057785 ], [ -64.858567813433524, 18.33972929917104 ], [ -64.858838381397959, 18.340030712553983 ], [ -64.858869897369004, 18.340107826100223 ], [ -64.858909293642512, 18.340200194717568 ], [ -64.858940640665764, 18.340277140625631 ], [ -64.858996296529597, 18.340346710455378 ], [ -64.859043905762462, 18.340416280285183 ], [ -64.859075254095387, 18.340508648902471 ], [ -64.859130909959219, 18.340578051094099 ], [ -64.859194444815785, 18.340647620923903 ], [ -64.859256304600592, 18.340682824934106 ], [ -64.85926585866514, 18.340766476367946 ], [ -64.859275414039359, 18.340850295439964 ], [ -64.859305588905272, 18.340934114511981 ], [ -64.859340960553652, 18.341013072077772 ], [ -64.859391922549435, 18.341082306631279 ], [ -64.85944271690704, 18.341151707513234 ], [ -64.859493678902822, 18.341220943376356 ], [ -64.8595808507377, 18.341256147386616 ], [ -64.859673554631343, 18.341271570095842 ], [ -64.859761061742518, 18.341277268483054 ], [ -64.859848736491813, 18.341268217332981 ], [ -64.859936243602988, 18.341275424463504 ], [ -64.860032803173908, 18.341268552609279 ], [ -64.860121148475798, 18.341269223161817 ], [ -64.860305382796071, 18.341332255103964 ], [ -64.86038551382893, 18.341371147153382 ], [ -64.860497831385374, 18.341395119407991 ], [ -64.860769908093118, 18.341520177463394 ], [ -64.860841657218714, 18.341574492222037 ], [ -64.860897313082546, 18.341644062051785 ], [ -64.860961015577288, 18.34170592052692 ], [ -64.860992531548334, 18.34178286643504 ], [ -64.861055228214184, 18.341967602360057 ], [ -64.861054390023469, 18.342052093294285 ], [ -64.861077691725484, 18.342136750557017 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_105", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.837953353485204, 18.323857825230903 ], [ -64.837696365520117, 18.325029280581191 ], [ -64.837626125137774, 18.325036990626131 ], [ -64.837363771442426, 18.324929031661384 ], [ -64.837239047353592, 18.324879578408911 ], [ -64.837087839057403, 18.324809674612538 ], [ -64.836862701029986, 18.324675564097333 ], [ -64.836703780069456, 18.324580010355248 ], [ -64.836531280419308, 18.324563580507458 ], [ -64.836447126070993, 18.324553188252196 ], [ -64.837212058922091, 18.323611732435495 ], [ -64.837344995970284, 18.323689013619912 ], [ -64.837491344069974, 18.323794121426488 ], [ -64.837657138194402, 18.323850615481035 ], [ -64.837836174422534, 18.323876433064868 ], [ -64.837953353485204, 18.323857825230903 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_108", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.837212058922091, 18.323611732435495 ], [ -64.836447126070993, 18.324553188252196 ], [ -64.83630278962903, 18.324579004526413 ], [ -64.836249145422983, 18.324515468360119 ], [ -64.836176893382913, 18.324457968476736 ], [ -64.83611805239434, 18.324394267291723 ], [ -64.83603909482855, 18.324355878156723 ], [ -64.835953431736925, 18.324329894244386 ], [ -64.835881179696855, 18.324278764610483 ], [ -64.835842120009318, 18.324202656893135 ], [ -64.835823009260935, 18.324120346564428 ], [ -64.835803395598077, 18.324101234506315 ], [ -64.83573734616931, 18.324088160040731 ], [ -64.835651683077742, 18.324068377430081 ], [ -64.835565852347997, 18.324048765076896 ], [ -64.835506676083185, 18.324023116440912 ], [ -64.835486894782207, 18.324010208303775 ], [ -64.835394358526685, 18.324009536441565 ], [ -64.835308527796997, 18.323996125390011 ], [ -64.835222697067252, 18.323982715648185 ], [ -64.835143068948867, 18.324019931316172 ], [ -64.835136363423089, 18.324019931316172 ], [ -64.835090095295357, 18.324019596039875 ], [ -64.835057405857242, 18.323994115041955 ], [ -64.834964869601777, 18.32398690660176 ], [ -64.834872333346254, 18.323986236049222 ], [ -64.834779797090789, 18.323985397858507 ], [ -64.834680555309546, 18.32398455835812 ], [ -64.834548456452069, 18.32397718358942 ], [ -64.834455920196604, 18.323976345398705 ], [ -64.834370089466859, 18.323963101985328 ], [ -64.834277553211393, 18.323955893545133 ], [ -64.834185016955871, 18.323955222992538 ], [ -64.834092480700406, 18.323954383492151 ], [ -64.833999944444884, 18.323953714249285 ], [ -64.833907408189418, 18.32395287605857 ], [ -64.833808334046296, 18.323945667618375 ], [ -64.83372250462628, 18.323926053955518 ], [ -64.833636672586863, 18.32391281054214 ], [ -64.833544303969518, 18.323893029241162 ], [ -64.83345864087795, 18.323867045328825 ], [ -64.833372810148205, 18.323853634277327 ], [ -64.83328027389274, 18.32385296241506 ], [ -64.833187737637218, 18.323845922922658 ], [ -64.833095201381752, 18.32384508342227 ], [ -64.833009370652007, 18.323831672370773 ], [ -64.83292370756044, 18.323805688458435 ], [ -64.83283117261459, 18.32379864896609 ], [ -64.832745172937052, 18.323810551274278 ], [ -64.832619445638727, 18.32381591438525 ], [ -64.831579249645529, 18.322670276618794 ], [ -64.831878986647041, 18.322634904970414 ], [ -64.832505116424556, 18.322604897742622 ], [ -64.832851624468162, 18.322637922457034 ], [ -64.83326099550618, 18.322701457313599 ], [ -64.833922495622403, 18.322797346331981 ], [ -64.834331867970036, 18.322861048826667 ], [ -64.834835955869039, 18.322925589512124 ], [ -64.83553953315942, 18.323074452184017 ], [ -64.836075807582063, 18.323207892146627 ], [ -64.836561120008923, 18.32333412235937 ], [ -64.837039223995646, 18.323533779388868 ], [ -64.837212058922091, 18.323611732435495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1140", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.85147169210768, 18.338931341605587 ], [ -64.85138669956865, 18.33890686643656 ], [ -64.851289972359552, 18.338882223629412 ], [ -64.85121319408961, 18.338840146455254 ], [ -64.851131554313497, 18.338811983247069 ], [ -64.851049914537384, 18.338774432302841 ], [ -64.850963077978804, 18.338773761750247 ], [ -64.850890323024259, 18.338819191687264 ], [ -64.850808181643401, 18.338850707658366 ], [ -64.850726037643142, 18.338877529761362 ], [ -64.850643728624107, 18.338909213370584 ], [ -64.850537277092997, 18.338958834261234 ], [ -64.850440549883956, 18.338994876462152 ], [ -64.850334268610311, 18.339026224795134 ], [ -64.850218596981279, 18.339025386604362 ], [ -64.850136286652571, 18.339061428805337 ], [ -64.850073087072303, 18.339120772708327 ], [ -64.850057664363021, 18.339217332279247 ], [ -64.850114996608283, 18.339282208241002 ], [ -64.850196636384396, 18.339310539087307 ], [ -64.850268553148169, 18.339357142491338 ], [ -64.850364442166551, 18.33942235372939 ], [ -64.850451111087011, 18.33943224437985 ], [ -64.850537947645591, 18.339414642374777 ], [ -64.850624448927874, 18.339438279353033 ], [ -64.850448764152986, 18.339649503414478 ], [ -64.850161432374193, 18.339876653099623 ], [ -64.84910531337664, 18.340221986366601 ], [ -64.849104307547805, 18.34022232295257 ], [ -64.848979249492345, 18.34001344582515 ], [ -64.848876822586362, 18.339608432069213 ], [ -64.848879000572595, 18.339367536056272 ], [ -64.848914204582798, 18.338976268628187 ], [ -64.84917722883074, 18.338639818873162 ], [ -64.849556593950638, 18.338447370283859 ], [ -64.849992620763146, 18.338353157646964 ], [ -64.850243072150306, 18.338275876462546 ], [ -64.850362598146944, 18.338234302202864 ], [ -64.850384391105706, 18.338234469840984 ], [ -64.850470892387989, 18.338245533958514 ], [ -64.850557393670272, 18.338266991640921 ], [ -64.850643894952611, 18.338288449323386 ], [ -64.850730396234894, 18.338309739367674 ], [ -64.850816897517234, 18.338331197050081 ], [ -64.850946481802509, 18.338373609500536 ], [ -64.851021918967319, 18.338415686674637 ], [ -64.851097356132129, 18.338457596210674 ], [ -64.851172793296939, 18.338499673384831 ], [ -64.85123733398234, 18.338562370050681 ], [ -64.851290810550324, 18.338635125005169 ], [ -64.85133355827702, 18.338707879959657 ], [ -64.8513979313243, 18.338780970190442 ], [ -64.851440511412875, 18.338853725144929 ], [ -64.85147169210768, 18.338931341605587 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1149", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.946148672288132, 18.321447021082065 ], [ -64.946097207377932, 18.321516087997338 ], [ -64.946041886790397, 18.321581802149808 ], [ -64.945986733841039, 18.321647516302278 ], [ -64.945927892852524, 18.32170971005371 ], [ -64.945861843423756, 18.321764863003068 ], [ -64.945785065153814, 18.32180610198651 ], [ -64.945715327685889, 18.321857734534831 ], [ -64.945642069816984, 18.321905846682171 ], [ -64.945565123908864, 18.321946918027436 ], [ -64.945488345638921, 18.321988157010878 ], [ -64.945407879329821, 18.322018834791209 ], [ -64.945323892619683, 18.322045992170558 ], [ -64.945239905909546, 18.322066276385954 ], [ -64.945152398798371, 18.322082872562248 ], [ -64.945064891687196, 18.322089242811728 ], [ -64.944973864174983, 18.322088572259133 ], [ -64.944882836662828, 18.322084381305501 ], [ -64.94472341278788, 18.322050015486013 ], [ -64.94463992899216, 18.322021517001531 ], [ -64.944552589519105, 18.322006932483021 ], [ -64.944465250046107, 18.322002741529388 ], [ -64.944377910573053, 18.321995197812896 ], [ -64.944309012605572, 18.321942391797563 ], [ -64.944284368488752, 18.321844826397751 ], [ -64.944288894718625, 18.321750949037096 ], [ -64.944285878541677, 18.321667297603256 ], [ -64.944315047578755, 18.321589513504421 ], [ -64.944349579726747, 18.321660089163061 ], [ -64.944378916401945, 18.321738376176313 ], [ -64.944430213674025, 18.321806604900928 ], [ -64.944506321391373, 18.321846335141061 ], [ -64.944587793529365, 18.321880868598726 ], [ -64.944680329784831, 18.321910205273923 ], [ -64.944767501619708, 18.321926466173863 ], [ -64.944854841092763, 18.321935015719248 ], [ -64.944942180565761, 18.321927807279053 ], [ -64.945029520038815, 18.321928477831591 ], [ -64.945116859511813, 18.321921437029573 ], [ -64.945204198984868, 18.321909031806911 ], [ -64.945286341675398, 18.321878354026524 ], [ -64.945371166576251, 18.321855555238983 ], [ -64.945453141628718, 18.321827559668918 ], [ -64.945535284319249, 18.321796881888588 ], [ -64.945614744799514, 18.321753295971121 ], [ -64.945691523069456, 18.321712224625855 ], [ -64.945765619129133, 18.321665788859946 ], [ -64.945828818709401, 18.321608959529158 ], [ -64.945886653869081, 18.321546933415846 ], [ -64.945941806818439, 18.321482225092268 ], [ -64.945988745498767, 18.321412152348103 ], [ -64.946022105489419, 18.321334368249268 ], [ -64.946024955337862, 18.3213160956916 ], [ -64.946068373617152, 18.32112666458886 ], [ -64.946092513509882, 18.321206460345422 ], [ -64.946135596512931, 18.321279885852448 ], [ -64.946142134400532, 18.321363369648168 ], [ -64.946148672288132, 18.321447021082065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_529", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.850362598146944, 18.338234302202864 ], [ -64.850500565649156, 18.338106729575259 ], [ -64.850564769748644, 18.337815206842834 ], [ -64.850598297377417, 18.337604654643656 ], [ -64.850601482502157, 18.337243225495513 ], [ -64.850509113884812, 18.33701691400114 ], [ -64.850249274761609, 18.336658336011112 ], [ -64.849935120879763, 18.336225661961464 ], [ -64.849654997541165, 18.336064395376582 ], [ -64.849319888891273, 18.335967500529364 ], [ -64.848784286330897, 18.335902958534234 ], [ -64.848468957672367, 18.335900277633584 ], [ -64.848121946714286, 18.335897426475469 ], [ -64.847809135247246, 18.335892901555269 ], [ -64.847572765464179, 18.335841267697276 ], [ -64.847303706243054, 18.335709839392337 ], [ -64.847179486378366, 18.335498112416474 ], [ -64.847087453037318, 18.335196028480993 ], [ -64.847058785605043, 18.33489461640778 ], [ -64.847093823286798, 18.334503347669965 ], [ -64.847097008411538, 18.334141921141224 ], [ -64.84706934811777, 18.333719974623079 ], [ -64.846946300410366, 18.333387717131359 ], [ -64.846790733522425, 18.333145480013286 ], [ -64.84660163638631, 18.333025786378471 ], [ -64.846645894166045, 18.332965771922886 ], [ -64.84670004128651, 18.332901063599309 ], [ -64.846763911419373, 18.332841215472229 ], [ -64.846822920046066, 18.332776676096444 ], [ -64.846886622540808, 18.332716829279036 ], [ -64.84695518654172, 18.332666202559551 ], [ -64.847033473554973, 18.332620437346236 ], [ -64.847111760568168, 18.332574504494801 ], [ -64.847190047581421, 18.332537959379408 ], [ -64.847277722330773, 18.332520188426486 ], [ -64.847380484513053, 18.332500408435124 ], [ -64.847385178381046, 18.332501078987718 ], [ -64.847400098175854, 18.332503258283623 ], [ -64.847487102372611, 18.332512646019666 ], [ -64.847574106569368, 18.332513484210381 ], [ -64.847607800526589, 18.332513819486678 ], [ -64.847694135480424, 18.332526223399668 ], [ -64.847792537761279, 18.332570313541169 ], [ -64.847837298455431, 18.332641558442731 ], [ -64.847848865487379, 18.332724205357408 ], [ -64.847835788402449, 18.332806683324236 ], [ -64.847855569703427, 18.332889496567361 ], [ -64.847879543267709, 18.332972308500814 ], [ -64.847957493694992, 18.333012206379124 ], [ -64.848109207524999, 18.333088315406144 ], [ -64.848191182577409, 18.333120334291664 ], [ -64.848273325267996, 18.333148665137969 ], [ -64.848445823608472, 18.333213038185306 ], [ -64.848523775345427, 18.333249080386224 ], [ -64.84859736849063, 18.333296857257267 ], [ -64.848679512490889, 18.333329042471291 ], [ -64.848781602810902, 18.333416383253962 ], [ -64.848813958282392, 18.333495339510137 ], [ -64.848841952542728, 18.333574129437807 ], [ -64.848865758468889, 18.333672700666455 ], [ -64.848871121579805, 18.333758531396199 ], [ -64.848876318362272, 18.33384587217887 ], [ -64.848906157951888, 18.333927510645367 ], [ -64.848887048513177, 18.334008816454855 ], [ -64.84890465051825, 18.334090456230967 ], [ -64.848940357442928, 18.334178129670647 ], [ -64.848970029394422, 18.334259938394553 ], [ -64.849005902647605, 18.334341578170722 ], [ -64.849047979821705, 18.334417684578398 ], [ -64.849144539392682, 18.33452329660912 ], [ -64.84921109173581, 18.33457610262451 ], [ -64.849308321859326, 18.33459437649185 ], [ -64.849399684647835, 18.33460678040484 ], [ -64.84955190139226, 18.33461968854192 ], [ -64.849643430509218, 18.334620526732635 ], [ -64.849807715890336, 18.334633436179388 ], [ -64.849899078678789, 18.33464584140205 ], [ -64.850099741537178, 18.334705688219458 ], [ -64.850184901714329, 18.33472395946751 ], [ -64.850306439368751, 18.33475983533998 ], [ -64.850391431907724, 18.334789673619923 ], [ -64.850470389473571, 18.334825214216153 ], [ -64.850573654570269, 18.334855221443888 ], [ -64.850652612136116, 18.334890759420773 ], [ -64.850718996841124, 18.334955301415903 ], [ -64.850827793996586, 18.335055044801891 ], [ -64.850888143728412, 18.335119585487348 ], [ -64.850948661098414, 18.335184127482421 ], [ -64.851045389617127, 18.335272303836518 ], [ -64.851099535427977, 18.335336676883799 ], [ -64.851178325355647, 18.335383950840423 ], [ -64.851226437502987, 18.335454192532438 ], [ -64.851317129738902, 18.335536501551474 ], [ -64.851317129738902, 18.335542202558031 ], [ -64.851365241886242, 18.335612441630701 ], [ -64.85140111644904, 18.335694250354663 ], [ -64.85144269070878, 18.335805225496301 ], [ -64.851466327687092, 18.335886866582086 ], [ -64.851489964665348, 18.335968505048527 ], [ -64.851513266367363, 18.336091048531785 ], [ -64.851518630788007, 18.336178388004839 ], [ -64.851541764851845, 18.336306632494654 ], [ -64.85154712927249, 18.336393970658037 ], [ -64.851564228363145, 18.336522047509732 ], [ -64.851575627756972, 18.33660955462085 ], [ -64.851587027150742, 18.336696892784232 ], [ -64.851616531464117, 18.336813568932428 ], [ -64.851652406026915, 18.336889509011655 ], [ -64.851700182897957, 18.336983051096013 ], [ -64.851717784903087, 18.337064690872182 ], [ -64.851771261471015, 18.337216403392461 ], [ -64.851807136033813, 18.337292343471688 ], [ -64.851861115516158, 18.337391752891108 ], [ -64.851903025052195, 18.337467860608456 ], [ -64.851975109454088, 18.337584872033005 ], [ -64.852017186628245, 18.337660812112233 ], [ -64.852043170540583, 18.337708924259573 ], [ -64.852069992643635, 18.337792408055293 ], [ -64.852073848320913, 18.337875556574716 ], [ -64.852101173338383, 18.337955352331221 ], [ -64.852096479470333, 18.338039674317656 ], [ -64.85209195324046, 18.338124163942268 ], [ -64.852042835264285, 18.338196583620459 ], [ -64.851993382011813, 18.338265985812086 ], [ -64.851956166343825, 18.338341255338719 ], [ -64.851906713091353, 18.338410657530346 ], [ -64.851832617031732, 18.338520628152821 ], [ -64.851771093832838, 18.338584163009386 ], [ -64.851703535660818, 18.338641830530889 ], [ -64.851623907542432, 18.338681896047319 ], [ -64.851501699335472, 18.338721626287452 ], [ -64.851385861377935, 18.338720788096737 ], [ -64.85133355827702, 18.338707879959657 ], [ -64.851290810550324, 18.338635125005169 ], [ -64.85123733398234, 18.338562370050681 ], [ -64.851172793296939, 18.338499673384831 ], [ -64.851097356132129, 18.338457596210674 ], [ -64.851021918967319, 18.338415686674637 ], [ -64.850946481802509, 18.338373609500536 ], [ -64.850816897517234, 18.338331197050081 ], [ -64.850730396234894, 18.338309739367674 ], [ -64.850643894952611, 18.338288449323386 ], [ -64.850557393670272, 18.338266991640921 ], [ -64.850470892387989, 18.338245533958514 ], [ -64.850384391105706, 18.338234469840984 ], [ -64.850362598146944, 18.338234302202864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_444", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.927910147754744, 18.358621612466038 ], [ -64.927863376712537, 18.358641895371818 ], [ -64.927766984779737, 18.358649440397983 ], [ -64.927679142392321, 18.35866553235013 ], [ -64.927599849550177, 18.358706772643245 ], [ -64.927529273891537, 18.358756393533838 ], [ -64.927370855845481, 18.358838871500666 ], [ -64.927282845819889, 18.358871728576901 ], [ -64.927203552977744, 18.358912967560343 ], [ -64.927124260135656, 18.358954206543785 ], [ -64.927036417748184, 18.358986895981843 ], [ -64.926930805717461, 18.359027967327108 ], [ -64.926842964639718, 18.359052442496136 ], [ -64.926763670487901, 18.359093681479578 ], [ -64.926640624090226, 18.359142799455753 ], [ -64.926570048431586, 18.359192586674851 ], [ -64.926490755589498, 18.359233825658293 ], [ -64.926437615607483, 18.359300379311094 ], [ -64.926384473006181, 18.359366931654279 ], [ -64.926304844887795, 18.359441530628374 ], [ -64.926234270538828, 18.359499533426174 ], [ -64.926133518704603, 18.359613693692609 ], [ -64.925969234633158, 18.359740260491321 ], [ -64.925898657664845, 18.359789881381914 ], [ -64.925775108352752, 18.359881076532247 ], [ -64.925704532694112, 18.359930697422897 ], [ -64.92564267552865, 18.359988869168546 ], [ -64.925580815743842, 18.360046870656674 ], [ -64.925501522901754, 18.360096491547324 ], [ -64.925342769579345, 18.360195734638239 ], [ -64.925280912413882, 18.360253903764544 ], [ -64.925227769812579, 18.360320457417345 ], [ -64.925148141694194, 18.360403438298647 ], [ -64.925086284528732, 18.360469990641832 ], [ -64.925024424743924, 18.360527993439632 ], [ -64.924953681447164, 18.360586162565937 ], [ -64.924838346404044, 18.360744246645368 ], [ -64.924785206422087, 18.36081079767888 ], [ -64.924723346637279, 18.360868800476737 ], [ -64.924643215604476, 18.361010622346555 ], [ -64.924590075622461, 18.361077174689683 ], [ -64.924536765383039, 18.361151942611627 ], [ -64.924465688119653, 18.361276999357358 ], [ -64.924403660696669, 18.361343551700543 ], [ -64.924341803531206, 18.361409936405551 ], [ -64.924297210475231, 18.361485039603735 ], [ -64.924244070493273, 18.361559804906278 ], [ -64.924164107098591, 18.361676481054531 ], [ -64.924119681680736, 18.361751416614538 ], [ -64.924039384319428, 18.361918216567801 ], [ -64.924003508446958, 18.362001699053849 ], [ -64.923967635193833, 18.362101779025807 ], [ -64.923914326264025, 18.362176714585871 ], [ -64.923861183662723, 18.362243265619384 ], [ -64.923808042371036, 18.362309817962512 ], [ -64.92375439947466, 18.362418279841677 ], [ -64.923727408423758, 18.362501763637397 ], [ -64.923664879396085, 18.362643585507215 ], [ -64.923620288959455, 18.362718519757607 ], [ -64.923557927569846, 18.362851959720217 ], [ -64.923513334513871, 18.362926893970609 ], [ -64.923451142072167, 18.363018424397239 ], [ -64.923389283597032, 18.363076594833217 ], [ -64.923336142305345, 18.363143147176345 ], [ -64.923283001013715, 18.363218081426737 ], [ -64.923238409267412, 18.363293015677073 ], [ -64.923185100337605, 18.36338471374188 ], [ -64.923131959045975, 18.363451266085008 ], [ -64.923025676462657, 18.363559225049755 ], [ -64.922972367532907, 18.363642541207355 ], [ -64.922892570466672, 18.363750667810223 ], [ -64.922839430484714, 18.363817220153408 ], [ -64.922795006376532, 18.36389232204192 ], [ -64.922750414630229, 18.363967256292256 ], [ -64.922723424889057, 18.364059121995183 ], [ -64.922670115959249, 18.364134056245518 ], [ -64.922616973357947, 18.364200608588703 ], [ -64.922572382921317, 18.364275542839096 ], [ -64.92251924162963, 18.364350477089431 ], [ -64.922510356808004, 18.364358691358518 ], [ -64.922474649883327, 18.364442175154238 ], [ -64.922421340953576, 18.364508727497366 ], [ -64.922376916845394, 18.364583661747758 ], [ -64.922323607915587, 18.364658595998094 ], [ -64.922279183807461, 18.364733697886606 ], [ -64.922260911249737, 18.364817181682326 ], [ -64.922190000314856, 18.364917094016164 ], [ -64.922154125752002, 18.365000577811884 ], [ -64.922109534005699, 18.365100657783842 ], [ -64.922091261448031, 18.365184141579562 ], [ -64.922064104068681, 18.365276007282489 ], [ -64.922037114327509, 18.365359491078209 ], [ -64.922009956948159, 18.36545135678108 ], [ -64.921991684390491, 18.365535008214977 ], [ -64.921982296654392, 18.365618659648817 ], [ -64.921955306913219, 18.365702143444537 ], [ -64.921945751538999, 18.365785627240257 ], [ -64.921945080986461, 18.365869446312217 ], [ -64.921944242795746, 18.365953097746115 ], [ -64.921899651049443, 18.366023841042875 ], [ -64.921869811459771, 18.36608586715613 ], [ -64.921834942725866, 18.36611654493646 ], [ -64.921765875810536, 18.366063068368533 ], [ -64.921701838039496, 18.36600556848515 ], [ -64.921685074225081, 18.36593013132034 ], [ -64.921685744777676, 18.3658464798865 ], [ -64.921686415330271, 18.365762660814482 ], [ -64.921687421159106, 18.365645481751869 ], [ -64.921679374528196, 18.365561830317972 ], [ -64.921688929902416, 18.365478178884132 ], [ -64.921707873012679, 18.365319257923602 ], [ -64.921708543565273, 18.365235606489762 ], [ -64.921727319037416, 18.365085067436439 ], [ -64.921763193600214, 18.365001583640719 ], [ -64.921798900524891, 18.364918267483176 ], [ -64.921834942725866, 18.364809637965891 ], [ -64.921888084017496, 18.364743085622706 ], [ -64.921932675763799, 18.364668151372314 ], [ -64.921985817055429, 18.364601599029186 ], [ -64.922021523980106, 18.364518115233466 ], [ -64.922066451002706, 18.364401271447093 ], [ -64.922128309477841, 18.364343268649236 ], [ -64.922172733586024, 18.364268166760723 ], [ -64.922217492970447, 18.364159704881558 ], [ -64.922217660608567, 18.364151322974351 ], [ -64.922253367533244, 18.364068006816808 ], [ -64.922306676463052, 18.363993072566416 ], [ -64.922368534938187, 18.363926520223288 ], [ -64.922439781149365, 18.363801629806005 ], [ -64.922492922441052, 18.36373507746282 ], [ -64.92254606242301, 18.363668525119635 ], [ -64.922599371352817, 18.3635935908693 ], [ -64.922644634961387, 18.36342645563974 ], [ -64.922671623392887, 18.36334297184402 ], [ -64.922716216448862, 18.36325965568642 ], [ -64.922760640556987, 18.363184721436085 ], [ -64.922876143238227, 18.363009707213735 ], [ -64.922946718896867, 18.362960087632757 ], [ -64.92299131064317, 18.362885152072749 ], [ -64.923071106399675, 18.362777025469882 ], [ -64.923106813324353, 18.362693541674162 ], [ -64.923169007075785, 18.362610225516562 ], [ -64.9233560912445, 18.362251816474384 ], [ -64.923383080985673, 18.362168331368991 ], [ -64.923436388605808, 18.362093397118656 ], [ -64.92348953120711, 18.362026844775471 ], [ -64.923561447970883, 18.361834900410258 ], [ -64.923605872079065, 18.361751582943043 ], [ -64.923650631463488, 18.361651502971029 ], [ -64.923677621204661, 18.361568020485038 ], [ -64.923793625490646, 18.361334500550413 ], [ -64.923846768092005, 18.361267946897556 ], [ -64.923900077021756, 18.36119301264722 ], [ -64.923944501129938, 18.361118078396828 ], [ -64.924068719684954, 18.360943231812655 ], [ -64.924113311431256, 18.360868297562263 ], [ -64.924175337544568, 18.360776599497513 ], [ -64.924211213417038, 18.360693284649642 ], [ -64.924264353398996, 18.360626732306457 ], [ -64.924388405625564, 18.360468649536642 ], [ -64.924450265410371, 18.360410477790992 ], [ -64.924512122575834, 18.360352476302864 ], [ -64.924573982360641, 18.360294304557215 ], [ -64.924680097305782, 18.360194727499675 ], [ -64.924688982127464, 18.360177963685317 ], [ -64.924756037385066, 18.36014091565545 ], [ -64.924844047410659, 18.360099676672064 ], [ -64.924914455431121, 18.360050055781414 ], [ -64.925029287559767, 18.359950478723874 ], [ -64.925091144725229, 18.359892477235746 ], [ -64.925161720383869, 18.359842687397304 ], [ -64.925241180864077, 18.359776471640089 ], [ -64.925311756522717, 18.359726683111319 ], [ -64.925382333491029, 18.359677062220669 ], [ -64.925567907606762, 18.359502718550914 ], [ -64.92562121653657, 18.359436166207786 ], [ -64.925665640644695, 18.359361230647721 ], [ -64.925824730553018, 18.359211697423291 ], [ -64.925895304901985, 18.359162076532641 ], [ -64.925965880560625, 18.359112455642048 ], [ -64.926045005764593, 18.359071216658606 ], [ -64.926132680513888, 18.359071888520873 ], [ -64.92622052290136, 18.359055795259053 ], [ -64.926399895715406, 18.359129219456406 ], [ -64.926530822415543, 18.359137601363614 ], [ -64.926662417048931, 18.359072391435291 ], [ -64.926793845353814, 18.359007180197239 ], [ -64.926870288347516, 18.358927049164436 ], [ -64.926958298373108, 18.358885810180993 ], [ -64.927037592524869, 18.358844571197608 ], [ -64.927125602550461, 18.358811880449821 ], [ -64.927354428617036, 18.358713141582996 ], [ -64.927433552511332, 18.35867190259961 ], [ -64.927512845353419, 18.358622283018633 ], [ -64.927618625022319, 18.358556233589923 ], [ -64.927706635047912, 18.358523376513688 ], [ -64.927774193219932, 18.358527232190966 ], [ -64.927859857621229, 18.358554054294018 ], [ -64.927910147754744, 18.358621612466038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_558", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.952302834882857, 18.3133680373179 ], [ -64.9522926089561, 18.313457220810506 ], [ -64.952291938403505, 18.313546571941288 ], [ -64.952300487948833, 18.313635923072013 ], [ -64.952318426539932, 18.313725274202795 ], [ -64.952317587039545, 18.313814625333521 ], [ -64.9523170854348, 18.313877321999371 ], [ -64.95231691648695, 18.313903976464303 ], [ -64.952315910658115, 18.313951920973466 ], [ -64.95217107261135, 18.314206898590498 ], [ -64.952182303057327, 18.314196337387443 ], [ -64.9520230468205, 18.314536642819746 ], [ -64.952022880492052, 18.314547370351306 ], [ -64.951966386437505, 18.314621635358776 ], [ -64.951954482819644, 18.314706963174046 ], [ -64.9519425805114, 18.314792290989317 ], [ -64.951897319522175, 18.314866722325291 ], [ -64.951851889585157, 18.314940986023089 ], [ -64.951817691403789, 18.315026146200239 ], [ -64.951794556030279, 18.315111306377389 ], [ -64.951760357848855, 18.315196466554539 ], [ -64.951737223785017, 18.315281625422017 ], [ -64.951714257359299, 18.31536695454696 ], [ -64.951691124605077, 18.315452113414437 ], [ -64.95167922098716, 18.315537442539437 ], [ -64.95162138582748, 18.315771799355048 ], [ -64.951609483519292, 18.315857128480047 ], [ -64.951597582520719, 18.315942456295318 ], [ -64.951585678902802, 18.316027784110645 ], [ -64.951562544838964, 18.316112944287795 ], [ -64.951561875596042, 18.316198272103065 ], [ -64.951572267851304, 18.316283767556513 ], [ -64.951571598608382, 18.31636926300996 ], [ -64.951570926746172, 18.316454589515558 ], [ -64.951559024437927, 18.316539918640558 ], [ -64.951546954491562, 18.316635806349211 ], [ -64.951546283938967, 18.316721303112331 ], [ -64.951545613386429, 18.316806629617986 ], [ -64.951544607557537, 18.316913416425393 ], [ -64.951555168760649, 18.316998910569168 ], [ -64.951565394687407, 18.317094968535343 ], [ -64.951587020007992, 18.317191191520294 ], [ -64.951608646638249, 18.317276854611919 ], [ -64.951607974775982, 18.317362182427189 ], [ -64.95162943245839, 18.317458406721869 ], [ -64.951639827332997, 18.317543903484932 ], [ -64.951661452653582, 18.317629397628707 ], [ -64.951683076664494, 18.317715060720332 ], [ -64.951715933740729, 18.317800723811899 ], [ -64.951760022572614, 18.317875659371907 ], [ -64.951818360646712, 18.317972554219182 ], [ -64.951817691403789, 18.318060730573222 ], [ -64.951816851903402, 18.318148909546665 ], [ -64.951816181350807, 18.318237085900705 ], [ -64.951870497419179, 18.318346050694345 ], [ -64.951895475502624, 18.318427690470457 ], [ -64.951911736402565, 18.318509331556243 ], [ -64.95193671448601, 18.318590971332355 ], [ -64.951953141714455, 18.318672609798853 ], [ -64.951977953469452, 18.318754418522758 ], [ -64.951994380697897, 18.318835889351078 ], [ -64.952010641597894, 18.31891753043692 ], [ -64.952018520590627, 18.31900721553427 ], [ -64.952009132854585, 18.319096735612845 ], [ -64.951982982613799, 18.319178038802988 ], [ -64.95196521166082, 18.319259510940981 ], [ -64.951955823924777, 18.319349029709883 ], [ -64.95192967237432, 18.319430335519371 ], [ -64.951886255404702, 18.319503256802363 ], [ -64.951826072001325, 18.319567965125941 ], [ -64.951765723579172, 18.319632673449519 ], [ -64.951688608723259, 18.319680954544651 ], [ -64.951602945631635, 18.319712972120499 ], [ -64.950322022573346, 18.318093587649457 ], [ -64.950344990308736, 18.317704668465069 ], [ -64.950162598698398, 18.317201920361526 ], [ -64.949839392356807, 18.315993753567398 ], [ -64.949756580423298, 18.314537313372341 ], [ -64.94990846058181, 18.313355632095238 ], [ -64.952302834882857, 18.3133680373179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_873", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.013068970704865, 18.343531164638819 ], [ -65.013077352612072, 18.343496128266736 ], [ -65.013089925472855, 18.343449523553033 ], [ -65.013098811604152, 18.343363860461409 ], [ -65.01310367180065, 18.343278197369841 ], [ -65.013092104768702, 18.343196223627103 ], [ -65.013027228807005, 18.343141238315866 ], [ -65.012937374761805, 18.343140566453599 ], [ -65.01285154403206, 18.343163366550868 ], [ -65.012761857625037, 18.343166550365936 ], [ -65.012688767394252, 18.343119276409311 ], [ -65.012673009408729, 18.343037301356901 ], [ -65.012653395745872, 18.342955327614163 ], [ -65.012568570845019, 18.342849546635648 ], [ -65.012483243029692, 18.342806128356358 ], [ -65.012405961845332, 18.34276271138674 ], [ -65.012328849608764, 18.342719125469273 ], [ -65.012268164600641, 18.342660284480758 ], [ -65.012211501598301, 18.342597586505235 ], [ -65.012138579005637, 18.342546290542828 ], [ -65.012061297821276, 18.342506895578992 ], [ -65.011979994631076, 18.342475044331593 ], [ -65.011955685790554, 18.34245928634607 ], [ -65.011896175559116, 18.342444366551263 ], [ -65.011827274972234, 18.342393235607688 ], [ -65.011754184741449, 18.342345961651063 ], [ -65.011672881551306, 18.34230640035878 ], [ -65.011587384788186, 18.342278572426835 ], [ -65.011497698381106, 18.342270021571835 ], [ -65.011411867651418, 18.34228879835365 ], [ -65.011326036921673, 18.342315451508853 ], [ -65.011252108500173, 18.342361719636585 ], [ -65.011170302395556, 18.342392231088468 ], [ -65.01110458693347, 18.34244637820899 ], [ -65.011026802834635, 18.342488621711595 ], [ -65.010948852407353, 18.342527012156268 ], [ -65.010875091623973, 18.342573280284 ], [ -65.010797307525195, 18.342615525096278 ], [ -65.010739638693963, 18.342677383571413 ], [ -65.010681972482075, 18.342739408375053 ], [ -65.01064056455084, 18.342817026145383 ], [ -65.01061139551382, 18.342898498283375 ], [ -65.010594296423108, 18.342980304387936 ], [ -65.010573341655117, 18.343061945473778 ], [ -65.01055205161083, 18.343159175597293 ], [ -65.010551382367908, 18.343244837379189 ], [ -65.010546688499915, 18.343330500470756 ], [ -65.010513328509262, 18.343408284569591 ], [ -65.010451636362575, 18.343466287367391 ], [ -65.010385923519777, 18.343520266849794 ], [ -65.010300091480417, 18.343543065637391 ], [ -65.01023437863762, 18.343597046429409 ], [ -65.010164641169695, 18.343647170234476 ], [ -65.010098759379105, 18.343705171722604 ], [ -65.010041259495722, 18.343767031507412 ], [ -65.010016112464484, 18.343848671283581 ], [ -65.010038240699487, 18.343931818493331 ], [ -65.010025332562407, 18.344013625907564 ], [ -65.009963641725392, 18.344071628705422 ], [ -65.009905975513504, 18.344133488490229 ], [ -65.009844283366874, 18.344191489978357 ], [ -65.009774547208622, 18.344241613783424 ], [ -65.009704808431081, 18.344291737588492 ], [ -65.009627025641919, 18.344333982400769 ], [ -65.009545050589509, 18.344364661490772 ], [ -65.009455364182429, 18.344363989628562 ], [ -65.009365510137286, 18.344367174753302 ], [ -65.009287726038451, 18.344405563888245 ], [ -65.009226035201436, 18.344463566686102 ], [ -65.009140204471748, 18.344490222460649 ], [ -65.009046327111093, 18.344493407585389 ], [ -65.008956639394398, 18.344488880045844 ], [ -65.008862763343416, 18.34448033050046 ], [ -65.008773076936393, 18.34446792658747 ], [ -65.008667129629373, 18.34445937573247 ], [ -65.008581466537805, 18.344446970509807 ], [ -65.008491780130726, 18.34444646759539 ], [ -65.00840997140682, 18.3444769777376 ], [ -65.008324141986748, 18.344488041855072 ], [ -65.008242334572458, 18.344518551997282 ], [ -65.008168406150958, 18.344564821434744 ], [ -65.008090622052123, 18.344610920614628 ], [ -65.008004791322435, 18.344633719402225 ], [ -65.007930862900935, 18.344679819891837 ], [ -65.007865147438793, 18.34473396701236 ], [ -65.007803457911507, 18.34479196981016 ], [ -65.007749981343522, 18.34485785160075 ], [ -65.007708573412287, 18.344931444745953 ], [ -65.007667168100397, 18.345005205529333 ], [ -65.007633808109745, 18.34508282198999 ], [ -65.007370951499979, 18.345303098511238 ], [ -65.007288976447569, 18.345337465640398 ], [ -65.007207169033279, 18.345367974472936 ], [ -65.007125361618989, 18.345402507930601 ], [ -65.007043386566579, 18.345433018072811 ], [ -65.006957555836834, 18.345455816860408 ], [ -65.006871725107146, 18.345470736655216 ], [ -65.006789917692856, 18.345505270112881 ], [ -65.006704086963111, 18.345531756939636 ], [ -65.006614232917968, 18.345535109702496 ], [ -65.006524546510889, 18.345530583472623 ], [ -65.006434692465746, 18.345529912920085 ], [ -65.006357578919506, 18.345490351627745 ], [ -65.006333774303016, 18.345408376575335 ], [ -65.006248278849569, 18.345388258688388 ], [ -65.006170997665208, 18.345344672770921 ], [ -65.006081311258185, 18.345348025533838 ], [ -65.005995648166561, 18.345335621620848 ], [ -65.005913840752328, 18.345366130453385 ], [ -65.005831865699918, 18.34540066391105 ], [ -65.005758104916538, 18.345446932038783 ], [ -65.005672274186793, 18.345465707510925 ], [ -65.005590969686978, 18.345422290541308 ], [ -65.005505138957233, 18.345437209026443 ], [ -65.005419811141962, 18.345409213456378 ], [ -65.005346720911177, 18.345361939499753 ], [ -65.005265416411305, 18.345326232575076 ], [ -65.005188135226945, 18.345286837611241 ], [ -65.005098448819922, 18.345278288065913 ], [ -65.004996524828357, 18.345269738520585 ], [ -65.004910694098612, 18.34529639298546 ], [ -65.004832742361657, 18.345338637797738 ], [ -65.004815810909122, 18.3454204465217 ], [ -65.004786641872045, 18.34550191735002 ], [ -65.004745235250482, 18.345575678133343 ], [ -65.004736854652947, 18.345598979835358 ], [ -65.004714389831975, 18.345653463541851 ], [ -65.004636438095019, 18.345695707044456 ], [ -65.004562678621369, 18.345741807534068 ], [ -65.004480702259229, 18.345780196669068 ], [ -65.004402918160451, 18.345818585804011 ], [ -65.004325134061617, 18.345860830616289 ], [ -65.004239135693751, 18.345887485081221 ], [ -65.004161351594917, 18.345925874216164 ], [ -65.004075520865229, 18.345948673003761 ], [ -65.003993545812818, 18.345979183145971 ], [ -65.003907715083074, 18.346005837610846 ], [ -65.003846025555731, 18.346063840408704 ], [ -65.003780310093646, 18.346117819891049 ], [ -65.003702358356691, 18.346160233651176 ], [ -65.003616696574738, 18.346175152136311 ], [ -65.003526842529595, 18.346178337261051 ], [ -65.003445033805633, 18.346208847403261 ], [ -65.003363058753223, 18.346243380860926 ], [ -65.003285274654388, 18.346281769995926 ], [ -65.003199443924643, 18.346304401145346 ], [ -65.003113780833075, 18.346288307883526 ], [ -65.003024094426053, 18.346291493008266 ], [ -65.002934240380853, 18.346298533810284 ], [ -65.002844387645325, 18.346305742250479 ], [ -65.002697536631217, 18.346308592098922 ], [ -65.002609357657775, 18.346317141644306 ], [ -65.00252352692803, 18.346336084754569 ], [ -65.002429649567432, 18.346339269879309 ], [ -65.002339795522232, 18.346342455004049 ], [ -65.002253964792487, 18.346353519121521 ], [ -65.002164278385465, 18.346352848568927 ], [ -65.002074593288114, 18.346352178016389 ], [ -65.001988930196489, 18.346335917116392 ], [ -65.001899242479794, 18.346339102241132 ], [ -65.001813245421602, 18.346361901028729 ], [ -65.001727413382184, 18.346388555493604 ], [ -65.001641582652496, 18.346407330965746 ], [ -65.001555585594247, 18.346441864423412 ], [ -65.001477801495469, 18.346480253558411 ], [ -65.001399848448841, 18.346522498370689 ], [ -65.001322064350006, 18.346564743182967 ], [ -65.001231876338181, 18.346618555027192 ], [ -65.001166162185768, 18.346672702147714 ], [ -65.001112516669991, 18.346738583938304 ], [ -65.001063063417519, 18.346808321406229 ], [ -65.001005397205688, 18.346874035558642 ], [ -65.00091504024607, 18.346947461065724 ], [ -65.000787132342168, 18.347117949058145 ], [ -65.00072544150521, 18.347175951856002 ], [ -65.000671797299105, 18.347241666008415 ], [ -65.000642628262028, 18.347323305784585 ], [ -65.000593007371435, 18.347397066567908 ], [ -65.000531316534421, 18.347454901727588 ], [ -65.000453532435643, 18.347497314178042 ], [ -65.000367700396225, 18.34751223397285 ], [ -65.000269464443818, 18.347538720799605 ], [ -65.000187658339257, 18.34757325425727 ], [ -65.000097804294057, 18.347580295059345 ], [ -65.000011973564312, 18.347591359176818 ], [ -64.999926310472745, 18.347606278971625 ], [ -64.999836456427545, 18.347617343089155 ], [ -64.999750793335977, 18.347601082189158 ], [ -64.999661106928954, 18.34759270028195 ], [ -64.999567229568299, 18.347591862091235 ], [ -64.999481398838554, 18.347610805201555 ], [ -64.999427922270627, 18.347676686992145 ], [ -64.999410823179915, 18.347758326768258 ], [ -64.999402608910884, 18.34776603812287 ], [ -64.999359022993417, 18.34782538202586 ], [ -64.999301355471914, 18.347887240500995 ], [ -64.999223402425287, 18.347929485313273 ], [ -64.999141596320669, 18.347964018770938 ], [ -64.999083928799109, 18.348025877246073 ], [ -64.999083593522869, 18.348068792610945 ], [ -64.999086443371311, 18.348115731291273 ], [ -64.999057105386441, 18.348226707742583 ], [ -64.999028105297157, 18.348307676966158 ], [ -64.998985022294164, 18.348380599558766 ], [ -64.998899694478894, 18.348396189906168 ], [ -64.998831130477981, 18.348447151901951 ], [ -64.998802129079081, 18.348525606553324 ], [ -64.998725183170961, 18.348565672069753 ], [ -64.998653936959784, 18.348613784217093 ], [ -64.998596604714521, 18.348678492540671 ], [ -64.998459476712753, 18.348802041852821 ], [ -64.998421925768469, 18.348877645346079 ], [ -64.998373143068591, 18.348947719399916 ], [ -64.998335592124306, 18.349023324202847 ], [ -64.998275410030601, 18.349087864888304 ], [ -64.998206846029746, 18.349141509094409 ], [ -64.998129900121626, 18.349185933202534 ], [ -64.998054462956816, 18.349228345652989 ], [ -64.997979025792006, 18.349275619609614 ], [ -64.997961423786933, 18.349293556890984 ], [ -64.996446310241424, 18.348235592564208 ], [ -64.996710507956379, 18.347912553860738 ], [ -64.99696112698166, 18.347577445210902 ], [ -64.997339821548962, 18.347193050946657 ], [ -64.997779201124388, 18.346715785150707 ], [ -64.998021605880581, 18.346475727328482 ], [ -64.998465846962233, 18.346147659480721 ], [ -64.998941436376754, 18.345850101775113 ], [ -64.999614503524867, 18.345556064470543 ], [ -65.000322104130703, 18.345264709376238 ], [ -65.00068168663995, 18.345170329101165 ], [ -65.001250987086621, 18.344993807445235 ], [ -65.001693719424907, 18.344846453516652 ], [ -65.002078950570194, 18.344739331432947 ], [ -65.002800800418242, 18.344463231409804 ], [ -65.00307002858716, 18.344337167525509 ], [ -65.003723648400978, 18.344107000353802 ], [ -65.004664936579502, 18.343896111568654 ], [ -65.005267092792735, 18.343728642372469 ], [ -65.00552005875204, 18.343640129432401 ], [ -65.006088854974621, 18.343523788560503 ], [ -65.006910114242089, 18.343379284480363 ], [ -65.007573458377919, 18.343263780489451 ], [ -65.00795282349776, 18.343146098512364 ], [ -65.00852279318741, 18.342879218587143 ], [ -65.008934680107188, 18.342641341370495 ], [ -65.009410772436127, 18.342283432623333 ], [ -65.009981915592732, 18.341866014954462 ], [ -65.010465216361922, 18.341603661259114 ], [ -65.010822954851506, 18.341499557971702 ], [ -65.011278762965048, 18.341423785530594 ], [ -65.011994242563674, 18.341364106351307 ], [ -65.012324154431042, 18.341409536288381 ], [ -65.012818520627377, 18.341578180261195 ], [ -65.013229904632738, 18.341774818494457 ], [ -65.013543386652373, 18.34202828736818 ], [ -65.01384094435798, 18.342374629083338 ], [ -65.013973713767996, 18.34265525533641 ], [ -65.014054515353394, 18.342878212758251 ], [ -65.014103633329626, 18.343131515303526 ], [ -65.014162474318141, 18.343643983800064 ], [ -65.014204719130419, 18.343868955498976 ], [ -65.014239587864381, 18.344054026700292 ], [ -65.014243108265418, 18.344184450486011 ], [ -65.014286861821006, 18.344332808933757 ], [ -65.014357605117766, 18.344415120572137 ], [ -65.014536810293691, 18.34452408536572 ], [ -65.014722888633571, 18.344588960017802 ], [ -65.014529098939079, 18.34550996398093 ], [ -65.014439244893879, 18.345501582073723 ], [ -65.014349558486856, 18.345508622875798 ], [ -65.014276468256071, 18.345461348919173 ], [ -65.014228020832434, 18.34539094089871 ], [ -65.014142525379043, 18.3453669686441 ], [ -65.014069435148258, 18.345319527049355 ], [ -65.014021155362741, 18.345249119028836 ], [ -65.013960470354618, 18.34519027804032 ], [ -65.01389559439292, 18.345135125090962 ], [ -65.013835077022918, 18.34505683807771 ], [ -65.01377020106122, 18.345001852766472 ], [ -65.013725944591158, 18.344919710075885 ], [ -65.013669282898491, 18.344856845771915 ], [ -65.013625026428485, 18.344782582074117 ], [ -65.013556127151332, 18.344731284802037 ], [ -65.01350365641224, 18.344664732458853 ], [ -65.013438780450485, 18.344609748457287 ], [ -65.0134106172423, 18.34455107379722 ], [ -65.013395362171195, 18.344527101542667 ], [ -65.01340424699282, 18.344441607398892 ], [ -65.013372228107357, 18.344363320385639 ], [ -65.013311543099235, 18.344300622410117 ], [ -65.013263095675597, 18.344230046751477 ], [ -65.01324348201274, 18.344148071699067 ], [ -65.013284888634303, 18.344074310915687 ], [ -65.013297796771383, 18.343992672449247 ], [ -65.01326577788592, 18.343910528449044 ], [ -65.01322554473137, 18.343836264751246 ], [ -65.013173073992277, 18.343765690402279 ], [ -65.013137031791302, 18.343687569717474 ], [ -65.01309277663097, 18.343613138381556 ], [ -65.013068970704865, 18.343531164638819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_858", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.957589639030175, 18.31589065610882 ], [ -64.957579916017835, 18.316847702272923 ], [ -64.957419317366202, 18.316831607701431 ], [ -64.957253189275207, 18.316959349276829 ], [ -64.957191329490399, 18.317159675549249 ], [ -64.957175069900075, 18.317317424352439 ], [ -64.957173727485269, 18.317460753655837 ], [ -64.95724782354489, 18.31759050557929 ], [ -64.957352263418272, 18.317677343447599 ], [ -64.957562816927123, 18.317698967458512 ], [ -64.957533480251925, 18.318550233953715 ], [ -64.95744094399646, 18.318549395763 ], [ -64.957348406431322, 18.318556771841315 ], [ -64.95725570253768, 18.318572194550597 ], [ -64.957162999953709, 18.318587449621702 ], [ -64.957053699883829, 18.318578564800077 ], [ -64.956969713173692, 18.318553921992873 ], [ -64.956885894101674, 18.318521064916638 ], [ -64.956802075029657, 18.318480162519222 ], [ -64.956726805503024, 18.318431378509615 ], [ -64.956663103008282, 18.31839198354578 ], [ -64.956589174586782, 18.318346219642137 ], [ -64.956577942831132, 18.31833934647824 ], [ -64.956556485148724, 18.31822333957291 ], [ -64.956523292796192, 18.318145724421925 ], [ -64.956490268081836, 18.318068106651594 ], [ -64.956457074419632, 18.31799032255276 ], [ -64.956451208394299, 18.317899965593142 ], [ -64.956411310515989, 18.317822181494307 ], [ -64.956364539473839, 18.317750936592802 ], [ -64.956324641595586, 18.317673152493967 ], [ -64.956291616881174, 18.317595368395189 ], [ -64.956285414269871, 18.317511549323171 ], [ -64.956286252460586, 18.317427562613034 ], [ -64.956286923013181, 18.317343743541016 ], [ -64.956287593565719, 18.317259755521206 ], [ -64.956301842807989, 18.317176105397039 ], [ -64.956316092050201, 18.317092286325021 ], [ -64.956316762602796, 18.317008299614884 ], [ -64.956331011845009, 18.316924648181043 ], [ -64.956351966613056, 18.316840829109026 ], [ -64.956379626906823, 18.316757176365513 ], [ -64.956407454838711, 18.316673526241289 ], [ -64.956441819348527, 18.316596245056928 ], [ -64.956476354115864, 18.316519131510688 ], [ -64.956497308883911, 18.316435480076848 ], [ -64.956531673393727, 18.316358197582758 ], [ -64.956566208161064, 18.316281085346191 ], [ -64.956620690557884, 18.316216878627358 ], [ -64.956675340592824, 18.316152842166048 ], [ -64.956723285101987, 18.316082266507408 ], [ -64.956771061973029, 18.316011689539152 ], [ -64.956825712007969, 18.315947485439665 ], [ -64.956856557426477, 18.315866851492387 ], [ -64.956856891393102, 18.315866013301672 ], [ -64.956858066169787, 18.315865678025375 ], [ -64.956956468450642, 18.315844555619208 ], [ -64.957042971042597, 18.315862325262515 ], [ -64.957135507298119, 18.315871042445963 ], [ -64.95721932637008, 18.315903899522198 ], [ -64.957311862625602, 18.31591261539603 ], [ -64.957404397571395, 18.315913287258297 ], [ -64.957496935136533, 18.31590607750843 ], [ -64.957589639030175, 18.31589065610882 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_524", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.022092930686711, 18.343545915485834 ], [ -65.022096115811451, 18.343606097579539 ], [ -65.022056720847615, 18.343682374244679 ], [ -65.022011961463136, 18.343755295527671 ], [ -65.021955299770468, 18.343819837522801 ], [ -65.021892938380915, 18.343878509563524 ], [ -65.021830409353186, 18.343937182913919 ], [ -65.021759163142008, 18.343987474357107 ], [ -65.021685067082331, 18.344032067413082 ], [ -65.021622538054601, 18.344090739453804 ], [ -65.021551291843423, 18.344140864568544 ], [ -65.02147434593536, 18.344182606466404 ], [ -65.021403099724125, 18.344230046751477 ], [ -65.021328836026328, 18.34427463849778 ], [ -65.02117745878229, 18.344388967712007 ], [ -65.021097495387608, 18.344430709609867 ], [ -65.021020381841367, 18.344469601659284 ], [ -65.02094913563019, 18.344517044563702 ], [ -65.02087202208395, 18.344555936613119 ], [ -65.020795077485502, 18.344594827352807 ], [ -65.020722825445432, 18.344643274776445 ], [ -65.020721985945045, 18.344642102619105 ], [ -65.020690469973999, 18.34459432443839 ], [ -65.020626433512632, 18.344532130686957 ], [ -65.020551331624119, 18.344490556427274 ], [ -65.020476396064112, 18.344448814529414 ], [ -65.020395929754955, 18.344417467506162 ], [ -65.020315463445854, 18.34438595153506 ], [ -65.020245893616107, 18.344333982400769 ], [ -65.020187221575384, 18.34427195759713 ], [ -65.020140450533177, 18.344235746448362 ], [ -65.020063335677264, 18.344188304853617 ], [ -65.019990245446479, 18.344141030896992 ], [ -65.019908940946664, 18.344105491610492 ], [ -65.019827636446848, 18.344073640363149 ], [ -65.019760245912948, 18.344049166503794 ], [ -65.020022768556089, 18.343246513760619 ], [ -65.020246899444942, 18.343289764401788 ], [ -65.020382183427159, 18.343276353350291 ], [ -65.020510258969182, 18.343220028243536 ], [ -65.020571280563274, 18.343098490589171 ], [ -65.020633305366857, 18.342876536376821 ], [ -65.020746125837775, 18.342568083501533 ], [ -65.022058564867166, 18.342683249596803 ], [ -65.022069964260993, 18.342764220129993 ], [ -65.022126625953661, 18.34282708443402 ], [ -65.022162668154579, 18.342905202499423 ], [ -65.022182617093733, 18.342963877159548 ], [ -65.022182952370031, 18.343048031507806 ], [ -65.022171552976204, 18.343130174198393 ], [ -65.022160153582433, 18.343212315579251 ], [ -65.022138025347431, 18.343294459579511 ], [ -65.022115729474251, 18.343376434631921 ], [ -65.022115058921713, 18.343463772795246 ], [ -65.022092930686711, 18.343545915485834 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1151", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.9447011169147, 18.320175653397939 ], [ -64.944688544053918, 18.319888656895387 ], [ -64.944665242351903, 18.319496216000289 ], [ -64.945623629621139, 18.319577520500161 ], [ -64.945648440066464, 18.319658657361856 ], [ -64.945673250511788, 18.319740297137969 ], [ -64.945681129504521, 18.319829983544992 ], [ -64.945697222766341, 18.319936098490189 ], [ -64.945713651304459, 18.320017739575974 ], [ -64.945729912204456, 18.320099378042414 ], [ -64.945737791197189, 18.320189064449437 ], [ -64.945745502551802, 18.320278750856517 ], [ -64.945761595813678, 18.320392912432567 ], [ -64.945786573897124, 18.32047455220868 ], [ -64.945802834797064, 18.320556191984849 ], [ -64.945827812880509, 18.320637831760962 ], [ -64.945894868138112, 18.320776971420457 ], [ -64.945936945312269, 18.32085056456566 ], [ -64.945978854848306, 18.32093237197995 ], [ -64.946020932022407, 18.32100613276333 ], [ -64.946055465480072, 18.321083916862108 ], [ -64.946068373617152, 18.32112666458886 ], [ -64.946024955337862, 18.3213160956916 ], [ -64.946022105489419, 18.321334368249268 ], [ -64.945988745498767, 18.321412152348103 ], [ -64.945941806818439, 18.321482225092268 ], [ -64.945886653869081, 18.321546933415846 ], [ -64.945828818709401, 18.321608959529158 ], [ -64.945765619129133, 18.321665788859946 ], [ -64.945691523069456, 18.321712224625855 ], [ -64.945614744799514, 18.321753295971121 ], [ -64.945535284319249, 18.321796881888588 ], [ -64.945453141628718, 18.321827559668918 ], [ -64.945371166576251, 18.321855555238983 ], [ -64.945286341675398, 18.321878354026524 ], [ -64.945204198984868, 18.321909031806911 ], [ -64.945116859511813, 18.321921437029573 ], [ -64.945029520038815, 18.321928477831591 ], [ -64.944942180565761, 18.321927807279053 ], [ -64.944854841092763, 18.321935015719248 ], [ -64.944767501619708, 18.321926466173863 ], [ -64.944680329784831, 18.321910205273923 ], [ -64.944587793529365, 18.321880868598726 ], [ -64.944506321391373, 18.321846335141061 ], [ -64.944430213674025, 18.321806604900928 ], [ -64.944378916401945, 18.321738376176313 ], [ -64.944349579726747, 18.321660089163061 ], [ -64.944315047578755, 18.321589513504421 ], [ -64.944316555012392, 18.32148323092116 ], [ -64.94434287420097, 18.321403435164598 ], [ -64.94436533771227, 18.321323471769915 ], [ -64.94436533771227, 18.321320119007055 ], [ -64.944398697702923, 18.32124719641439 ], [ -64.9444213288524, 18.321167400657828 ], [ -64.944425687444095, 18.321083916862108 ], [ -64.944433734075005, 18.321000433066445 ], [ -64.944427028549285, 18.320916949270725 ], [ -64.944373049066883, 18.32085039692754 ], [ -64.94432996606389, 18.320776971420457 ], [ -64.944275818943368, 18.320710419077329 ], [ -64.944221671822845, 18.320643866734144 ], [ -64.944160317571857, 18.320584187554857 ], [ -64.944076832466465, 18.320555856708552 ], [ -64.94398932535529, 18.320548145353882 ], [ -64.94390584155957, 18.320523167270437 ], [ -64.943833421881379, 18.320477402057122 ], [ -64.943746082408325, 18.320459297137575 ], [ -64.943662430974484, 18.320430798653092 ], [ -64.943575091501486, 18.320433648501535 ], [ -64.943487416752134, 18.320460805880884 ], [ -64.943414158883229, 18.320505397627187 ], [ -64.943326651772054, 18.32051160023849 ], [ -64.943239313608728, 18.32049701571998 ], [ -64.943155660865159, 18.320475558037572 ], [ -64.943075866418326, 18.320443539152052 ], [ -64.942995901713914, 18.320411687904709 ], [ -64.942916105957408, 18.320379669019189 ], [ -64.942836311510518, 18.320344297370809 ], [ -64.942756346806163, 18.320308925722429 ], [ -64.942669176280958, 18.320290820802882 ], [ -64.942630450560046, 18.320295179394634 ], [ -64.942629781317123, 18.320295179394634 ], [ -64.942582338412706, 18.320225106650412 ], [ -64.942545290382895, 18.320148160742349 ], [ -64.9425176313988, 18.320066857552149 ], [ -64.942494663663354, 18.319985384104484 ], [ -64.942452755437046, 18.319912964426294 ], [ -64.942439344385548, 18.319827133696549 ], [ -64.942430625892371, 18.319741470604981 ], [ -64.942426602576916, 18.319655639875236 ], [ -64.94243531976042, 18.319604845517631 ], [ -64.942461806587175, 18.319580035072306 ], [ -64.942532717522056, 18.319525385037366 ], [ -64.942578316406923, 18.319452294806581 ], [ -64.942623912672389, 18.319379036937676 ], [ -64.94383845102567, 18.319585399492894 ], [ -64.943923946479117, 18.319739292618806 ], [ -64.944057889356202, 18.319883795389217 ], [ -64.944191833542902, 18.320028299469357 ], [ -64.944355949976227, 18.320158555616899 ], [ -64.94453549042845, 18.320231644538012 ], [ -64.9447011169147, 18.320175653397939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_102", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.839540048518131, 18.328132093678789 ], [ -64.839114584218351, 18.328245081787827 ], [ -64.838845357359105, 18.32830409041452 ], [ -64.83858886968909, 18.328344658845367 ], [ -64.838339256492702, 18.328360919745364 ], [ -64.83806399596989, 18.328364775422642 ], [ -64.837859477434222, 18.328338623872185 ], [ -64.837538450388479, 18.328287829514579 ], [ -64.837553705459584, 18.326878830914268 ], [ -64.837646240405377, 18.326879670414655 ], [ -64.837738945608692, 18.32687413835589 ], [ -64.837831480554485, 18.326868437349333 ], [ -64.837917646560527, 18.326856536350761 ], [ -64.838010184125665, 18.32684480037102 ], [ -64.838116299070805, 18.326820326511665 ], [ -64.83826164134166, 18.326821667616798 ], [ -64.838354345235302, 18.326815966610241 ], [ -64.838433973353688, 18.32677875094231 ], [ -64.83851360147213, 18.326741536583995 ], [ -64.838593397228635, 18.326698118304705 ], [ -64.838673025347077, 18.326660902636718 ], [ -64.838752653465463, 18.326623685659058 ], [ -64.838838987109625, 18.32659284155028 ], [ -64.838925153115611, 18.3265619948221 ], [ -64.839540048518131, 18.328132093678789 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_851", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.941478107267812, 18.320139946473262 ], [ -64.941474754504952, 18.320223431578654 ], [ -64.941438375718064, 18.320247067247294 ], [ -64.94143820938956, 18.320253605134894 ], [ -64.941465700735534, 18.320334406720292 ], [ -64.941471903346837, 18.32042157855517 ], [ -64.938719286332002, 18.321123311826 ], [ -64.938615518320887, 18.320180348575661 ], [ -64.940896401598479, 18.319543323628466 ], [ -64.940966475652374, 18.319605180793928 ], [ -64.941036548396539, 18.319654801684521 ], [ -64.941113159028362, 18.319698219963811 ], [ -64.941189768350512, 18.319741805881279 ], [ -64.941305607617664, 18.319714145587511 ], [ -64.94132572419494, 18.319746332111151 ], [ -64.941358078356757, 18.319823278019271 ], [ -64.941385738650467, 18.319904582519086 ], [ -64.941422785370662, 18.319981528427206 ], [ -64.941445753106052, 18.320063000565199 ], [ -64.941478107267812, 18.320139946473262 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_390", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.960230273764807, 18.370846789136067 ], [ -64.960209655582787, 18.370765149359954 ], [ -64.960232620698832, 18.3707292747971 ], [ -64.960248378684355, 18.37065702275703 ], [ -64.96027184802449, 18.370573875547279 ], [ -64.96028777364819, 18.370487037679027 ], [ -64.960292299878063, 18.370400202430119 ], [ -64.96031191354092, 18.370317052601024 ], [ -64.960327840474292, 18.370233905391274 ], [ -64.960328509717215, 18.370150587924059 ], [ -64.96032934790793, 18.370067439404579 ], [ -64.960364049003715, 18.369991666963529 ], [ -64.960410149493327, 18.369919582561579 ], [ -64.960475025455025, 18.369862082678196 ], [ -64.96054375840373, 18.369808270833971 ], [ -64.960558341612625, 18.369895442668849 ], [ -64.96057896241399, 18.369977082445018 ], [ -64.960606621398085, 18.370058723530803 ], [ -64.960648698572243, 18.370133825419316 ], [ -64.960683568615877, 18.370215463885756 ], [ -64.960739893722575, 18.370283861558164 ], [ -64.960781970896733, 18.370358794498884 ], [ -64.960809632500116, 18.370440435584669 ], [ -64.960851708364601, 18.370515537473182 ], [ -64.960865789968693, 18.370529114853184 ], [ -64.960811476519723, 18.370623662766377 ], [ -64.960782976725568, 18.370839915972169 ], [ -64.960788342455828, 18.37131382900526 ], [ -64.960697648910298, 18.37163217384068 ], [ -64.960561023822891, 18.371844571369138 ], [ -64.960381651008845, 18.372021597249216 ], [ -64.960109240334532, 18.372146822942796 ], [ -64.959938918670559, 18.372167777710786 ], [ -64.959768599625875, 18.372139279226303 ], [ -64.959580677266501, 18.372079097132598 ], [ -64.959337097733567, 18.371958397668948 ], [ -64.959142469848416, 18.37182512665413 ], [ -64.958908951223464, 18.371577188529443 ], [ -64.958697559523898, 18.371320702169157 ], [ -64.958525561478496, 18.371140994078758 ], [ -64.958349710375103, 18.370906133039057 ], [ -64.958204368104248, 18.370735142132162 ], [ -64.958058858195272, 18.370581251625651 ], [ -64.95785987040864, 18.370460718490449 ], [ -64.957751745115445, 18.370414618000837 ], [ -64.958605526182851, 18.369585144464338 ], [ -64.958669059729743, 18.369646667663176 ], [ -64.958675431288896, 18.369741887438636 ], [ -64.958738798507284, 18.369803410637473 ], [ -64.958766626439228, 18.369885050413586 ], [ -64.958794285423323, 18.369966688880083 ], [ -64.958843572347291, 18.370035086552491 ], [ -64.958906939565736, 18.370096608441656 ], [ -64.958956225180088, 18.370164838475944 ], [ -64.959012551596459, 18.370233233529007 ], [ -64.959061669572634, 18.370301463563294 ], [ -64.959103745437119, 18.370376396504014 ], [ -64.959145656282772, 18.370458203918247 ], [ -64.959216399579589, 18.370513190539157 ], [ -64.959301390808889, 18.370547722687149 ], [ -64.959386552295712, 18.37056867745514 ], [ -64.959478753274936, 18.370589799861307 ], [ -64.959571120582609, 18.370597343577799 ], [ -64.959656280759759, 18.370625171509687 ], [ -64.959712608485802, 18.370693401543974 ], [ -64.959747475910092, 18.370775207648592 ], [ -64.959775137513532, 18.370856847424704 ], [ -64.959802965445419, 18.37093848851049 ], [ -64.95982358362744, 18.371020126976987 ], [ -64.959858452361402, 18.37110193439122 ], [ -64.959900361897439, 18.371176868641612 ], [ -64.959942440381212, 18.371258676055845 ], [ -64.960020224480047, 18.371300082677465 ], [ -64.96009180465785, 18.37125297635896 ], [ -64.960120973694927, 18.371171839497265 ], [ -64.9601499764035, 18.37109053499745 ], [ -64.960193393373117, 18.371016272609324 ], [ -64.960222394772018, 18.37093496679978 ], [ -64.960230273764807, 18.370846789136067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_501", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.99486078867551, 18.361152276578196 ], [ -64.994742771422125, 18.361201729830668 ], [ -64.994659119988228, 18.361227713743006 ], [ -64.994573624534837, 18.36124330540008 ], [ -64.994494331692692, 18.36128353855463 ], [ -64.994436162566387, 18.361346233910808 ], [ -64.994339098771377, 18.361455701618866 ], [ -64.994285286927152, 18.361520577580563 ], [ -64.994216387649942, 18.361571036661928 ], [ -64.994076912714149, 18.361667763871026 ], [ -64.994023268508045, 18.361700118032786 ], [ -64.994023268508045, 18.361702129690514 ], [ -64.993969121387579, 18.361781254894481 ], [ -64.993917322510754, 18.361852165829418 ], [ -64.993850267253151, 18.361965824491051 ], [ -64.993788073501719, 18.362038245478914 ], [ -64.993788742744584, 18.361947385604878 ], [ -64.993774493502372, 18.361861219598893 ], [ -64.993800143448084, 18.361780249065646 ], [ -64.993812547361074, 18.361712187979151 ], [ -64.993815901433607, 18.361694250697781 ], [ -64.993801149276919, 18.361655861562781 ], [ -64.993834341629452, 18.361557960886671 ], [ -64.993834341629452, 18.361555950538616 ], [ -64.993922016378747, 18.36154639385478 ], [ -64.994035507402259, 18.361512530949653 ], [ -64.994080937339277, 18.361441452376596 ], [ -64.994165090377862, 18.361317735426326 ], [ -64.994238180608647, 18.361271468608265 ], [ -64.994330213949752, 18.361233413439891 ], [ -64.994465331603465, 18.361175244313642 ], [ -64.994548815399185, 18.361149426729753 ], [ -64.994590555987372, 18.361131155481758 ], [ -64.994680577670692, 18.361141381408515 ], [ -64.994770766992133, 18.361146744519488 ], [ -64.99486078867551, 18.361152276578196 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_487", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.962422645412062, 18.369612972396226 ], [ -64.962386100296669, 18.369690925442853 ], [ -64.962388950145112, 18.369743562510394 ], [ -64.962390458888365, 18.369774241600396 ], [ -64.962389788335827, 18.369857388810203 ], [ -64.962324074183357, 18.369803410637473 ], [ -64.962273447463872, 18.369719757893961 ], [ -64.962202033614517, 18.369670138312983 ], [ -64.962130619765162, 18.369620517422391 ], [ -64.962048812350929, 18.369585647378756 ], [ -64.961925765953197, 18.369560166380836 ], [ -64.961838594118319, 18.3695546356318 ], [ -64.961751423593114, 18.369544240757193 ], [ -64.961664082810444, 18.36953854236998 ], [ -64.961540701136471, 18.369562179348236 ], [ -64.961453361663416, 18.369576259642713 ], [ -64.961335176771911, 18.369590007280181 ], [ -64.961247838608529, 18.369608950390443 ], [ -64.960851373088303, 18.369748088740266 ], [ -64.960763865977128, 18.369766865522081 ], [ -64.960586001906393, 18.369800225512734 ], [ -64.960612488733148, 18.369756805923771 ], [ -64.9606458487238, 18.369675836700196 ], [ -64.960679208714453, 18.369595036424471 ], [ -64.960740565584786, 18.369492272932519 ], [ -64.960818013097651, 18.369434102496598 ], [ -64.960905521518498, 18.369410297880108 ], [ -64.960993028629673, 18.369386325625555 ], [ -64.961080366793055, 18.369362522318738 ], [ -64.961208946559168, 18.369334191472433 ], [ -64.961286394071976, 18.369295465751463 ], [ -64.961373733545031, 18.36928641460139 ], [ -64.961491918436536, 18.369267637819576 ], [ -64.961599709763163, 18.36927350646431 ], [ -64.961686881598041, 18.369274175707176 ], [ -64.961738178870064, 18.369274512293146 ], [ -64.961825350704942, 18.369289933692755 ], [ -64.961938003537739, 18.36931524836217 ], [ -64.962066079079761, 18.369360341713218 ], [ -64.962153083276462, 18.36938548743484 ], [ -64.962255510182445, 18.369410800794583 ], [ -64.962337149958614, 18.369475173841863 ], [ -64.962392973460567, 18.369544240757193 ], [ -64.962422645412062, 18.369612972396226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_646", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.964119813981881, 18.332703082951241 ], [ -64.964137248348891, 18.332619096241103 ], [ -64.964150659400389, 18.332535277169086 ], [ -64.964134566138569, 18.332451122820828 ], [ -64.964130375184936, 18.332439052874463 ], [ -64.964126854783956, 18.332366130281798 ], [ -64.964131716290126, 18.332282143571661 ], [ -64.964128195889089, 18.332198156861523 ], [ -64.964124843126228, 18.332114002513208 ], [ -64.964133895585974, 18.33203001580307 ], [ -64.964126184231361, 18.331945861454813 ], [ -64.964084945247919, 18.331869586099288 ], [ -64.964047897218109, 18.331793310743763 ], [ -64.964010849188298, 18.331716867750117 ], [ -64.963969442566736, 18.331640592394592 ], [ -64.963915630722511, 18.3315721960318 ], [ -64.963878582692701, 18.331495753038155 ], [ -64.963837343709258, 18.33141947768263 ], [ -64.963795937087696, 18.331343034688985 ], [ -64.963767438603213, 18.33125888034067 ], [ -64.963751345341393, 18.331174725992412 ], [ -64.963735252079573, 18.331090404005977 ], [ -64.963723349771328, 18.331006417295839 ], [ -64.963711615101261, 18.330922262947524 ], [ -64.963712285653855, 18.330838108599266 ], [ -64.963716476607431, 18.330826206291022 ], [ -64.965368047602112, 18.331037933266884 ], [ -64.965318425401847, 18.331526263180365 ], [ -64.965351954340292, 18.33184041706221 ], [ -64.965374082575295, 18.332373003445696 ], [ -64.965434599945297, 18.332674752104936 ], [ -64.965557143428555, 18.333097366556274 ], [ -64.96568153093142, 18.333309093532137 ], [ -64.965995180589175, 18.333522330560982 ], [ -64.966498599245256, 18.333676891620087 ], [ -64.966907971592889, 18.333740260148147 ], [ -64.967202176535636, 18.333742439444052 ], [ -64.967365454778189, 18.333689801066839 ], [ -64.967477269420272, 18.333563903510992 ], [ -64.967611547573597, 18.333229969637841 ], [ -64.967684974390352, 18.332974655434839 ], [ -64.967718334381004, 18.332726719929553 ], [ -64.967771474362962, 18.332331093909715 ], [ -64.967773150744392, 18.332117019999828 ], [ -64.967840542587965, 18.3318613718302 ], [ -64.967891335635954, 18.33171032986246 ], [ -64.968016227362909, 18.331523245693745 ], [ -64.96819442540027, 18.331298610580802 ], [ -64.969862761519039, 18.332292537136595 ], [ -64.969792855103321, 18.332348695914845 ], [ -64.969732840647794, 18.332414576395763 ], [ -64.969722782359156, 18.332423965441478 ], [ -64.969661594436559, 18.332641224476106 ], [ -64.969652206700516, 18.332726049376959 ], [ -64.969641980773702, 18.332815903422158 ], [ -64.969641311530836, 18.332905757467358 ], [ -64.969631085604021, 18.332995611512501 ], [ -64.969630246103634, 18.333085633195878 ], [ -64.969629575551039, 18.333175487241022 ], [ -64.969638292734544, 18.333265507614669 ], [ -64.969656397654092, 18.333346478147917 ], [ -64.969674502573639, 18.333427615009612 ], [ -64.969702162867407, 18.333508750561634 ], [ -64.969720267786954, 18.333589721094881 ], [ -64.969719429596239, 18.333679741468529 ], [ -64.969737702153964, 18.333760710692047 ], [ -64.969736863963249, 18.333850732375367 ], [ -64.969736193410654, 18.333940586420567 ], [ -64.969763686066244, 18.334021724591935 ], [ -64.969781958623969, 18.33410286145363 ], [ -64.969800063543516, 18.334183829367532 ], [ -64.969827557508779, 18.3342649675389 ], [ -64.969873991965017, 18.33433738721709 ], [ -64.969911039994827, 18.334418522769113 ], [ -64.969929144914374, 18.334499659630808 ], [ -64.969928474361836, 18.334589513676008 ], [ -64.969918248435022, 18.334679367721208 ], [ -64.969898802410341, 18.334760170616278 ], [ -64.969888576483527, 18.334850023351805 ], [ -64.969858570565464, 18.334953457396296 ], [ -64.969767374105459, 18.335165350700663 ], [ -64.969727643865326, 18.335267108363723 ], [ -64.969443832487514, 18.335478498753616 ], [ -64.969287090822888, 18.335625852682199 ], [ -64.968984002368188, 18.335818636547799 ], [ -64.968622908496343, 18.335973701830994 ], [ -64.968097027638635, 18.336062550047359 ], [ -64.967776000592835, 18.336088031045222 ], [ -64.967571649695344, 18.336104962497757 ], [ -64.967389091756502, 18.336106975465157 ], [ -64.967300243540194, 18.33610630360289 ], [ -64.967211227685709, 18.336114014957559 ], [ -64.967122213140954, 18.336121893950292 ], [ -64.967033197286469, 18.336129772943082 ], [ -64.966944181431984, 18.336137485607367 ], [ -64.966855165577556, 18.3361368137451 ], [ -64.966766317361248, 18.336127593647177 ], [ -64.966677469144884, 18.336118542497104 ], [ -64.966588619618904, 18.336109322399182 ], [ -64.966499605074091, 18.336108650536914 ], [ -64.966410755548111, 18.336099430438992 ], [ -64.966321908641476, 18.336090211650742 ], [ -64.966224175603543, 18.336072609645669 ], [ -64.966135327387178, 18.336063389547746 ], [ -64.966046645499375, 18.336037236687559 ], [ -64.96595796623086, 18.336011086446774 ], [ -64.965878170474298, 18.335968003443782 ], [ -64.96578948989611, 18.335941850583652 ], [ -64.965709694139605, 18.335907149487866 ], [ -64.965621013561417, 18.335880997937352 ], [ -64.965541216495183, 18.335846464479744 ], [ -64.965461588376797, 18.335811931022079 ], [ -64.965381793929907, 18.335777229926236 ], [ -64.965301998173402, 18.335742696468571 ], [ -64.965186663130282, 18.335707827734609 ], [ -64.965106867373777, 18.335673295586616 ], [ -64.965018186795589, 18.335655524633694 ], [ -64.964938391039027, 18.335620992485701 ], [ -64.964858595282521, 18.335577909482708 ], [ -64.964778967164079, 18.335534826479716 ], [ -64.964699339045694, 18.335491743476666 ], [ -64.964619543289132, 18.335448660473673 ], [ -64.964539915170747, 18.335414125706336 ], [ -64.964460119414184, 18.335371042703343 ], [ -64.964353836830924, 18.335319242516846 ], [ -64.964292145993909, 18.335259395699438 ], [ -64.964221402697149, 18.335207764460733 ], [ -64.964150659400389, 18.335147748695533 ], [ -64.964080083741749, 18.335087735549621 ], [ -64.964027277726416, 18.33501950551539 ], [ -64.963965586889401, 18.334959492369478 ], [ -64.963894843592641, 18.334908027459278 ], [ -64.963815215474256, 18.334856393601228 ], [ -64.963753356999121, 18.334796546783821 ], [ -64.963700550983731, 18.334728150421086 ], [ -64.963656797428143, 18.334651373460815 ], [ -64.963613043872556, 18.334574595190873 ], [ -64.963560237857223, 18.334506197518408 ], [ -64.96329218446499, 18.334028430117712 ], [ -64.963299392905128, 18.333911251055042 ], [ -64.96340634604104, 18.333682592626644 ], [ -64.963633495726128, 18.333469189269351 ], [ -64.963838181899973, 18.333297192533564 ], [ -64.963842540491726, 18.333293335546614 ], [ -64.963914121979201, 18.333241871946086 ], [ -64.963977489197646, 18.333182191457126 ], [ -64.964024260239796, 18.333110611279324 ], [ -64.964062481736619, 18.333034837528544 ], [ -64.964088298010836, 18.332955043081654 ], [ -64.964110090969541, 18.332871056371516 ], [ -64.964123334382919, 18.332787237299556 ], [ -64.964119813981881, 18.332703082951241 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_127", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.890637489366156, 18.312867805096232 ], [ -64.890030471646696, 18.312870487306554 ], [ -64.889982527137533, 18.312800414562332 ], [ -64.889914129465126, 18.312749620204727 ], [ -64.890042206316764, 18.312260619738652 ], [ -64.890245382437627, 18.312326836805539 ], [ -64.890402628326399, 18.312469329227952 ], [ -64.890490804680439, 18.312568068094777 ], [ -64.890637489366156, 18.312867805096232 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_317", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.864212022103857, 18.317349106651932 ], [ -64.864150666543139, 18.317413144422972 ], [ -64.864102722033977, 18.317483721391284 ], [ -64.864068522542937, 18.317535017353634 ], [ -64.864061483050534, 18.317560667299347 ], [ -64.863991913220787, 18.317617496630191 ], [ -64.863923852134292, 18.317673486460592 ], [ -64.863872387224092, 18.317745738500662 ], [ -64.863812540406684, 18.317809945219494 ], [ -64.863735928465246, 18.317865936359567 ], [ -64.863651272512186, 18.317889404390087 ], [ -64.863575500071079, 18.317848334354437 ], [ -64.863516825411011, 18.31778328944489 ], [ -64.863449771463081, 18.317726124837804 ], [ -64.863371818416454, 18.317709697609359 ], [ -64.863338627373594, 18.317632079839029 ], [ -64.863292023969564, 18.317560833627851 ], [ -64.863369137515804, 18.317591680355974 ], [ -64.863452286035226, 18.317615148386494 ], [ -64.863541469527831, 18.317612970400262 ], [ -64.863630819348941, 18.317599559348764 ], [ -64.863717321940896, 18.317580279652532 ], [ -64.863800804426944, 18.317552619358764 ], [ -64.863887307018956, 18.317536358458824 ], [ -64.863962073631171, 18.317491431436224 ], [ -64.864018901652287, 18.317449355571739 ], [ -64.864099704547357, 18.317390345635374 ], [ -64.864212022103857, 18.317349106651932 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_248", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.951990861606532, 18.316951302645919 ], [ -64.951990023415817, 18.317041490657743 ], [ -64.951999746428157, 18.317131847617361 ], [ -64.952055568620437, 18.317225223373214 ], [ -64.952008797578287, 18.317298313603999 ], [ -64.951962026536137, 18.317371402525112 ], [ -64.95191525549393, 18.317444492755897 ], [ -64.951883739522884, 18.317532336453041 ], [ -64.951882902641842, 18.317620512807082 ], [ -64.951866809379965, 18.317708522832675 ], [ -64.951850714808472, 18.317796532858267 ], [ -64.951834621546652, 18.317884542883917 ], [ -64.951818360646712, 18.317972554219182 ], [ -64.951760022572614, 18.317875659371907 ], [ -64.951715933740729, 18.317800723811899 ], [ -64.951683076664494, 18.317715060720332 ], [ -64.951661452653582, 18.317629397628707 ], [ -64.951639827332997, 18.317543903484932 ], [ -64.95162943245839, 18.317458406721869 ], [ -64.951607974775982, 18.317362182427189 ], [ -64.951608646638249, 18.317276854611919 ], [ -64.951587020007992, 18.317191191520294 ], [ -64.951565394687407, 18.317094968535343 ], [ -64.951555168760649, 18.316998910569168 ], [ -64.951544607557537, 18.316913416425393 ], [ -64.951545613386429, 18.316806629617986 ], [ -64.951546283938967, 18.316721303112331 ], [ -64.951546954491562, 18.316635806349211 ], [ -64.951559024437927, 18.316539918640558 ], [ -64.951570926746172, 18.316454589515558 ], [ -64.951571598608382, 18.31636926300996 ], [ -64.951572267851304, 18.316283767556513 ], [ -64.951561875596042, 18.316198272103065 ], [ -64.951562544838964, 18.316112944287795 ], [ -64.951585678902802, 18.316027784110645 ], [ -64.951597582520719, 18.315942456295318 ], [ -64.951609483519292, 18.315857128480047 ], [ -64.95162138582748, 18.315771799355048 ], [ -64.95167922098716, 18.315537442539437 ], [ -64.951691124605077, 18.315452113414437 ], [ -64.951714257359299, 18.31536695454696 ], [ -64.951737223785017, 18.315281625422017 ], [ -64.951760357848855, 18.315196466554539 ], [ -64.951794556030279, 18.315111306377389 ], [ -64.951817691403789, 18.315026146200239 ], [ -64.951851889585157, 18.314940986023089 ], [ -64.951897319522175, 18.314866722325291 ], [ -64.9519425805114, 18.314792290989317 ], [ -64.951954482819644, 18.314706963174046 ], [ -64.951966386437505, 18.314621635358776 ], [ -64.952022880492052, 18.314547370351306 ], [ -64.9520230468205, 18.314536642819746 ], [ -64.952182303057327, 18.314196337387443 ], [ -64.95217107261135, 18.314206898590498 ], [ -64.952315910658115, 18.313951920973466 ], [ -64.9523122226189, 18.314156439509134 ], [ -64.95231205498078, 18.314185776184331 ], [ -64.952311216790065, 18.314273953848101 ], [ -64.952341224017857, 18.314362299149991 ], [ -64.952371232555265, 18.314450812090001 ], [ -64.952315743019938, 18.314517867347604 ], [ -64.952273162931363, 18.314597663104166 ], [ -64.952240976407722, 18.314677626498849 ], [ -64.952208789884082, 18.314757589893532 ], [ -64.952176603360442, 18.314837553288214 ], [ -64.952144416836802, 18.314917515373224 ], [ -64.952112397951282, 18.314997480077579 ], [ -64.952069651534202, 18.315077275834142 ], [ -64.952027071445627, 18.315157239228824 ], [ -64.951994883612315, 18.315237202623507 ], [ -64.95197309065361, 18.31531716601819 ], [ -64.951951466642697, 18.315397129412872 ], [ -64.951940233577375, 18.315487317424697 ], [ -64.95193939538666, 18.31557750805581 ], [ -64.95192816363101, 18.315667697377307 ], [ -64.951895978417042, 18.315747659462318 ], [ -64.951874351786785, 18.31583768245531 ], [ -64.95187351359607, 18.315927870467135 ], [ -64.951872675405355, 18.316018061098248 ], [ -64.951861443649705, 18.316108250419745 ], [ -64.951850211894055, 18.316198438431513 ], [ -64.951838981448077, 18.316288461424563 ], [ -64.951848704460417, 18.31637881838418 ], [ -64.951868987366197, 18.31645911705516 ], [ -64.951889271581592, 18.316539583364261 ], [ -64.9519201170001, 18.316620048363689 ], [ -64.951940402525224, 18.316700348344341 ], [ -64.951960685430947, 18.316780645705649 ], [ -64.951981138594192, 18.316861113324421 ], [ -64.951990861606532, 18.316951302645919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_132", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.912268002795599, 18.364766052048424 ], [ -64.912272361387295, 18.364708049250623 ], [ -64.912269511538852, 18.364594055312693 ], [ -64.912269008624435, 18.364505877648924 ], [ -64.912278731636775, 18.364424070234691 ], [ -64.912297842385215, 18.364328684130726 ], [ -64.912320473534635, 18.364255761538061 ], [ -64.912337740263467, 18.364237321342273 ], [ -64.912354504077882, 18.364238662447406 ], [ -64.912376297036587, 18.364267328570008 ], [ -64.912409154112822, 18.364328013578131 ], [ -64.912447543247822, 18.364444019173789 ], [ -64.91243698204471, 18.364528173522103 ], [ -64.912462798318927, 18.364608136916786 ], [ -64.912510407551792, 18.364679886042381 ], [ -64.912575786427965, 18.364734871353619 ], [ -64.912650217763883, 18.364777451442194 ], [ -64.912729007691553, 18.364815840577194 ], [ -64.91280327138935, 18.364858253027649 ], [ -64.912886419908773, 18.364896809800769 ], [ -64.912957666120008, 18.364941904461489 ], [ -64.913022039167288, 18.365001918917017 ], [ -64.91308272417541, 18.365053551465394 ], [ -64.913156987873208, 18.365104513461176 ], [ -64.913235777800878, 18.365138711642544 ], [ -64.913314567728548, 18.365172742185791 ], [ -64.9134022424779, 18.365194535144497 ], [ -64.913481032405571, 18.365228733325864 ], [ -64.913564180924993, 18.365258740553656 ], [ -64.913638612260911, 18.365301320642232 ], [ -64.913712875958709, 18.365352114999837 ], [ -64.913743218462798, 18.365385977904964 ], [ -64.913778254834881, 18.365407267949251 ], [ -64.913857043452879, 18.365445657084194 ], [ -64.913935833380549, 18.365484046219194 ], [ -64.914014456979771, 18.365522435354137 ], [ -64.914071117362766, 18.365585802572582 ], [ -64.914105652130104, 18.365661575013689 ], [ -64.914144376541344, 18.36573734745474 ], [ -64.914201038234069, 18.365800713363512 ], [ -64.914257532288559, 18.36586408189163 ], [ -64.914300950567849, 18.365935831017282 ], [ -64.914326599203889, 18.366015626773788 ], [ -64.914374208436811, 18.36608737589944 ], [ -64.914417625406429, 18.366163315978667 ], [ -64.914451992535589, 18.366239088419775 ], [ -64.914463893534162, 18.366288540362575 ], [ -64.914468084487737, 18.366322236939197 ], [ -64.914476635342794, 18.366343190397515 ], [ -64.914520221260204, 18.366389795111218 ], [ -64.914576715314752, 18.366453162329663 ], [ -64.914633209369299, 18.366516529548051 ], [ -64.914698754573919, 18.366571514859288 ], [ -64.914755249938082, 18.366639073031308 ], [ -64.91477653998237, 18.366723227379623 ], [ -64.914788945205032, 18.366811405043393 ], [ -64.914805709019447, 18.366895390443858 ], [ -64.914827334340032, 18.366933277974056 ], [ -64.914849127298737, 18.366967140879126 ], [ -64.914865891113152, 18.367051127589264 ], [ -64.914895898340944, 18.367131090984003 ], [ -64.914930430488937, 18.367206863425054 ], [ -64.914969322538298, 18.367282634556489 ], [ -64.915003857305635, 18.367358408307268 ], [ -64.915038389453628, 18.367434179438646 ], [ -64.915077281503045, 18.367510119517874 ], [ -64.915120533453887, 18.367581702315022 ], [ -64.91516831032493, 18.367653451440674 ], [ -64.915207202374347, 18.367729222572109 ], [ -64.915215249005257, 18.367813210591919 ], [ -64.91522765422792, 18.367897197302057 ], [ -64.915262186375912, 18.367972968433492 ], [ -64.915323040331828, 18.368032144698304 ], [ -64.915397470358073, 18.368074726096552 ], [ -64.915471735365543, 18.368117306185127 ], [ -64.915546165391845, 18.368159886273702 ], [ -64.915611545577633, 18.368214871584939 ], [ -64.915681449374006, 18.368265833580722 ], [ -64.915760240611405, 18.368300030452417 ], [ -64.915781195379395, 18.368305228544557 ], [ -64.915847077169985, 18.368314113366182 ], [ -64.915934750609608, 18.368335737377095 ], [ -64.916031142542408, 18.368357531645472 ], [ -64.916118986239553, 18.368374964702809 ], [ -64.916202133449303, 18.368400782286642 ], [ -64.916289977146448, 18.368414024390347 ], [ -64.916373124356198, 18.368444031618139 ], [ -64.916460966743614, 18.36844906076243 ], [ -64.916544785815631, 18.368420228311322 ], [ -64.916619887704144, 18.368374798374305 ], [ -64.916637489709274, 18.368370607420729 ], [ -64.916707731401289, 18.368375467617227 ], [ -64.916795404840911, 18.368397094247484 ], [ -64.916869668538709, 18.368443865289635 ], [ -64.916887102905662, 18.368456604478922 ], [ -64.916930688823129, 18.368503041554447 ], [ -64.916982825595596, 18.368570598416852 ], [ -64.917021717645014, 18.368650561811535 ], [ -64.917087096521129, 18.368709905714468 ], [ -64.917095644756841, 18.368722478575307 ], [ -64.917126322537172, 18.368731195758755 ], [ -64.917157167955679, 18.368731363396932 ], [ -64.917174769960809, 18.368723150437518 ], [ -64.917174769960809, 18.368718959483942 ], [ -64.917183822420554, 18.36869800340628 ], [ -64.917183991368404, 18.368672857684658 ], [ -64.917193042518477, 18.368639331365557 ], [ -64.917228918390947, 18.368564060529195 ], [ -64.917237801902957, 18.368555847569837 ], [ -64.917273173551337, 18.36852667853276 ], [ -64.917299660378092, 18.368518630592177 ], [ -64.917304018969787, 18.368518630592177 ], [ -64.91738716748921, 18.368548639129642 ], [ -64.917474843548234, 18.368574455403802 ], [ -64.917557990757984, 18.36860865358517 ], [ -64.917636780685655, 18.368647041410497 ], [ -64.91772445543495, 18.36866447577745 ], [ -64.91780324536262, 18.368698675268547 ], [ -64.917873150468665, 18.368753828217905 ], [ -64.91792528593146, 18.368821386389925 ], [ -64.917946575975748, 18.36890537179039 ], [ -64.917972224611788, 18.368985336494745 ], [ -64.918011116661205, 18.36906110762618 ], [ -64.918054368612047, 18.369132856751833 ], [ -64.918115387586795, 18.369192034326318 ], [ -64.918167523049533, 18.369259592498338 ], [ -64.91824178674733, 18.36931055449412 ], [ -64.91830280703175, 18.369373920402893 ], [ -64.918341699081168, 18.369449692843943 ], [ -64.918345219482205, 18.369537870507713 ], [ -64.91837975293987, 18.369613642948821 ], [ -64.918423003580983, 18.369685224436296 ], [ -64.918462398544875, 18.369706514480583 ], [ -64.91850179350871, 18.369719422617663 ], [ -64.918593994487878, 18.369724451762011 ], [ -64.918681836875351, 18.369741887438636 ], [ -64.918769680572495, 18.369746747635133 ], [ -64.918843272408026, 18.369768372955718 ], [ -64.918851989591531, 18.369772563909294 ], [ -64.918917536105823, 18.369806594452541 ], [ -64.918930779519201, 18.369810954353966 ], [ -64.918961458609203, 18.369811289630263 ], [ -64.918988279402583, 18.369760996877403 ], [ -64.918992805632456, 18.369752782608316 ], [ -64.919019460097388, 18.369711040710456 ], [ -64.919046114562263, 18.369686062627011 ], [ -64.919063716567393, 18.369686231574804 ], [ -64.919125239766231, 18.369669801727014 ], [ -64.919134124587856, 18.369674161628438 ], [ -64.919212746877406, 18.369712549453766 ], [ -64.919291536805076, 18.369750938588709 ], [ -64.919383905422421, 18.369751610450976 ], [ -64.919471747809894, 18.369743897786691 ], [ -64.919564284065359, 18.369723613571239 ], [ -64.919652126452831, 18.369724285433506 ], [ -64.919665202228032, 18.369737024622793 ], [ -64.919699735685697, 18.369796034559158 ], [ -64.919760755970117, 18.369859400467931 ], [ -64.919826134846289, 18.369914553417289 ], [ -64.919891681360582, 18.369969538728526 ], [ -64.919943816823377, 18.370037096900546 ], [ -64.919956724960457, 18.370054028353081 ], [ -64.919995952286172, 18.370104656382239 ], [ -64.920061331162344, 18.370159640383804 ], [ -64.920140121090014, 18.370198029518804 ], [ -64.920267023165025, 18.370262068599459 ], [ -64.920350171684447, 18.370296265471154 ], [ -64.920437846433742, 18.370313699838164 ], [ -64.920521162591285, 18.370339517421996 ], [ -64.920608837340637, 18.370356950479277 ], [ -64.920696679728053, 18.370353430078296 ], [ -64.920784689753702, 18.370354269578684 ], [ -64.920872364502998, 18.370367511682389 ], [ -64.920955680660541, 18.370393327956549 ], [ -64.921021562451131, 18.370385448963759 ], [ -64.921048049277886, 18.370373043741097 ], [ -64.921096999615941, 18.370302132806216 ], [ -64.921115272173665, 18.370218313734199 ], [ -64.92112885086334, 18.370176571836339 ], [ -64.921159863919968, 18.370147402799319 ], [ -64.921181824516793, 18.370143379483864 ], [ -64.921239156762056, 18.370131309537499 ], [ -64.921247873945561, 18.370135500491074 ], [ -64.921335548694856, 18.370161316765234 ], [ -64.921405286162781, 18.370212278761016 ], [ -64.921470832677073, 18.370267265381926 ], [ -64.921531852961493, 18.370326441646739 ], [ -64.921606116659291, 18.370373211379274 ], [ -64.921680380357088, 18.370424173375056 ], [ -64.921736874411579, 18.370487540593444 ], [ -64.921784651282621, 18.370559289719097 ], [ -64.921854556388666, 18.370610084076759 ], [ -64.921928820086464, 18.370652665475006 ], [ -64.922012136244064, 18.370678480439494 ], [ -64.922038120156344, 18.370708152390989 ], [ -64.922064270397186, 18.370746038611514 ], [ -64.922098637526346, 18.370825163815482 ], [ -64.922142055805637, 18.370896912941134 ], [ -64.922189665038559, 18.37096849442861 ], [ -64.922241800501354, 18.37103605260063 ], [ -64.922285218780644, 18.371107801726282 ], [ -64.922332828013509, 18.37117938452343 ], [ -64.922389488396504, 18.371242750432202 ], [ -64.922446151398844, 18.371289353836232 ], [ -64.922450509990597, 18.371301926697015 ], [ -64.922502645453392, 18.371369484869035 ], [ -64.922568024329564, 18.371428828772025 ], [ -64.922624518384055, 18.37149219599047 ], [ -64.922698948410357, 18.371534608440868 ], [ -64.922777572009579, 18.371572997575868 ], [ -64.922838592293942, 18.371636532432433 ], [ -64.92286457620628, 18.37167860960659 ], [ -64.922899612578362, 18.371699899650878 ], [ -64.922899612578362, 18.371695708697303 ], [ -64.922917214583492, 18.371695877645095 ], [ -64.922983264012259, 18.371667042574643 ], [ -64.923062724492524, 18.371634017860288 ], [ -64.923142184972733, 18.371596969830478 ], [ -64.923216951585005, 18.371572327023273 ], [ -64.92322583640663, 18.371572327023273 ], [ -64.923252155595208, 18.37158523516041 ], [ -64.923286855381377, 18.371631670926263 ], [ -64.923295406236377, 18.371652625694253 ], [ -64.923299261913655, 18.3717156576364 ], [ -64.92328534794774, 18.371803667661993 ], [ -64.923284677395145, 18.371887486734011 ], [ -64.92327059448138, 18.371975496759603 ], [ -64.923274282520538, 18.372059483469741 ], [ -64.9233177021095, 18.372131064957273 ], [ -64.923343349435868, 18.372211028351956 ], [ -64.923342680193002, 18.372294847423916 ], [ -64.923302447038395, 18.372370116950606 ], [ -64.923279648250855, 18.372453768384446 ], [ -64.923239581424752, 18.372529037911079 ], [ -64.92322583640663, 18.372591902215106 ], [ -64.92323874454371, 18.372612856983096 ], [ -64.923290880006505, 18.372680415155116 ], [ -64.923338655567875, 18.372752164280769 ], [ -64.923382913347552, 18.372814525670321 ], [ -64.923396155451258, 18.372814693308499 ], [ -64.923483831510225, 18.372827936721876 ], [ -64.92351467561906, 18.372832462951749 ], [ -64.923562621437895, 18.372862134903244 ], [ -64.923561949575628, 18.372945953975204 ], [ -64.923561111384913, 18.373034131638974 ], [ -64.923569828568418, 18.373059277360596 ], [ -64.92363554403056, 18.373076711727549 ], [ -64.923727745009728, 18.373085764187351 ], [ -64.923789100570445, 18.373103030916184 ], [ -64.923810893529151, 18.373111580461511 ], [ -64.923885323555453, 18.373154160550087 ], [ -64.923955228661498, 18.373204954907692 ], [ -64.924020607537614, 18.373260107857107 ], [ -64.924085986413786, 18.373319284121919 ], [ -64.924151366599631, 18.373374437071277 ], [ -64.924221270396004, 18.373425231428939 ], [ -64.924273407168471, 18.373492789600959 ], [ -64.924277933398344, 18.373488598647384 ], [ -64.924365943423936, 18.373472505385507 ], [ -64.924453784501736, 18.373464794030895 ], [ -64.924528886390249, 18.373423555047509 ], [ -64.924595103457136, 18.373386339379522 ], [ -64.924612539133761, 18.373394721286729 ], [ -64.924673559418181, 18.373454065189719 ], [ -64.924690826147014, 18.373491951410244 ], [ -64.924694849462469, 18.373538051899857 ], [ -64.924676575595129, 18.373621870971817 ], [ -64.924631985158499, 18.373692781906755 ], [ -64.924600469187396, 18.37377224238702 ], [ -64.924604660141028, 18.373801579062217 ], [ -64.924635002645061, 18.37384801482807 ], [ -64.924639361236814, 18.373852205781702 ], [ -64.924678419614679, 18.373919763953722 ], [ -64.924743798490852, 18.37397474926496 ], [ -64.924822588418522, 18.374008947446328 ], [ -64.924910264477546, 18.374026381813337 ], [ -64.924989054405216, 18.37406477094828 ], [ -64.925054433281389, 18.374123947213093 ], [ -64.925088965429325, 18.374199887292377 ], [ -64.925145628431721, 18.374263254510765 ], [ -64.925211007307837, 18.374318239822003 ], [ -64.925285269695962, 18.374360819910578 ], [ -64.925377470675187, 18.374374063323955 ], [ -64.925465314372332, 18.374378924830125 ], [ -64.925530691938775, 18.37443407777954 ], [ -64.925574111527737, 18.374505659267015 ], [ -64.92560864367573, 18.374564667893708 ], [ -64.92562624568086, 18.374573217439035 ], [ -64.925669497631702, 18.374644798926511 ], [ -64.925681901544692, 18.374728785636648 ], [ -64.925646194620015, 18.374808246116913 ], [ -64.92563261593034, 18.374845963389646 ], [ -64.92565809692826, 18.374848646909641 ], [ -64.925706210385215, 18.374869936953928 ], [ -64.925785000312885, 18.374904135135296 ], [ -64.925868316470485, 18.374929951409456 ], [ -64.925951632628028, 18.374955766374001 ], [ -64.92603913842953, 18.374985942549586 ], [ -64.926122286948953, 18.375020139421281 ], [ -64.926210296974546, 18.375016620329916 ], [ -64.926293948408443, 18.374992145160888 ], [ -64.926369051606628, 18.374950738539326 ], [ -64.926400063353583, 18.374925760455881 ], [ -64.92644415349514, 18.374905140964131 ], [ -64.926492431970928, 18.374905643878606 ], [ -64.926531826934763, 18.374918384377509 ], [ -64.926601732040808, 18.374973537326923 ], [ -64.926667278555101, 18.375015948467649 ], [ -64.926675995738606, 18.375016117415498 ], [ -64.926702314927184, 18.375016285053619 ], [ -64.926759648482118, 18.374991642246471 ], [ -64.926834749060959, 18.374946043361604 ], [ -64.926914209541223, 18.374908829003346 ], [ -64.927002219566816, 18.374888544787893 ], [ -64.927072962863576, 18.374842947212755 ], [ -64.927077321455329, 18.374847305804451 ], [ -64.927165163842801, 18.374860549217829 ], [ -64.927252838592096, 18.374873792631206 ], [ -64.927340680979569, 18.374874463183801 ], [ -64.927428355728864, 18.374896088504386 ], [ -64.927507145656534, 18.374934477639385 ], [ -64.927563639711082, 18.375002035811406 ], [ -64.927602699398619, 18.375069426345306 ], [ -64.927607057990372, 18.375073784937001 ], [ -64.927611082615499, 18.375107312565831 ], [ -64.927637065218164, 18.375157939285316 ], [ -64.927675957267581, 18.375233710416751 ], [ -64.927732452631744, 18.375297078944811 ], [ -64.927775869601362, 18.375368660432343 ], [ -64.927854324252792, 18.375448959103323 ], [ -64.927910819616955, 18.375512493959889 ], [ -64.927910147754744, 18.375596313031849 ], [ -64.927852480233184, 18.375663033013211 ], [ -64.927825825768309, 18.375696393003864 ], [ -64.927851642042469, 18.375746852085172 ], [ -64.927855330081627, 18.375830837485637 ], [ -64.927859688673379, 18.375830837485637 ], [ -64.927864214903252, 18.375830837485637 ], [ -64.927916350366047, 18.375894206013754 ], [ -64.927959601007217, 18.375970146092982 ], [ -64.927998493056634, 18.376045918534089 ], [ -64.928033026514299, 18.376125880619099 ], [ -64.92806739364346, 18.376201654369879 ], [ -64.9280975671997, 18.376281616454889 ], [ -64.928123718750157, 18.376306931124304 ], [ -64.928171830897497, 18.376324196543464 ], [ -64.928250620825168, 18.376358228396327 ], [ -64.928320525931213, 18.37640919039211 ], [ -64.928390431037315, 18.376460152387892 ], [ -64.92843804027018, 18.376531732565695 ], [ -64.928485817141222, 18.376603481691347 ], [ -64.928555722247268, 18.37665444368713 ], [ -64.92859846997402, 18.376679924684993 ], [ -64.928633506346102, 18.376692666493625 ], [ -64.928712296273773, 18.376731055628625 ], [ -64.928795612431315, 18.376761061546688 ], [ -64.928883287180668, 18.376778663551818 ], [ -64.928971129568083, 18.376779335414085 ], [ -64.92903717899685, 18.376763074514088 ], [ -64.9290418728649, 18.376729545575643 ], [ -64.929077747427698, 18.376654277358682 ], [ -64.929060815975163, 18.376570290648488 ], [ -64.929044052160748, 18.376481945346598 ], [ -64.929044722713343, 18.376398126274637 ], [ -64.92904991949581, 18.376310116249044 ], [ -64.929067521500883, 18.376310116249044 ], [ -64.92912870942348, 18.376348336436195 ], [ -64.929194088299596, 18.376403489385552 ], [ -64.929259467175768, 18.37645847469679 ], [ -64.929333898511743, 18.376505247048613 ], [ -64.929403635979611, 18.376560398688355 ], [ -64.929482425907281, 18.37659878913297 ], [ -64.929561215835008, 18.37663701062985 ], [ -64.929622236119428, 18.376696354532783 ], [ -64.929691973587296, 18.376747147580772 ], [ -64.929766404923214, 18.376789727669347 ], [ -64.929840668621011, 18.376832307757923 ], [ -64.929915099956986, 18.376874721517993 ], [ -64.929941419145564, 18.376875055484618 ], [ -64.929981484661994, 18.376820740725975 ], [ -64.930025908770176, 18.37674983110071 ], [ -64.930083576291679, 18.376683111119405 ], [ -64.930101345934929, 18.37666232267992 ], [ -64.930149960996687, 18.376637513544267 ], [ -64.930158678180192, 18.376637513544267 ], [ -64.930246520567664, 18.376655115549397 ], [ -64.930311899443836, 18.376710099550962 ], [ -64.930381804549882, 18.37676089521824 ], [ -64.930447183425997, 18.376816048167598 ], [ -64.930499318888792, 18.376883606339675 ], [ -64.930555812943339, 18.376951164511695 ], [ -64.930608116044255, 18.377018721374043 ], [ -64.930647008093672, 18.377094495124823 ], [ -64.930681373913217, 18.377174458519505 ], [ -64.930689420544127, 18.377258445229643 ], [ -64.93071506918011, 18.377338239676476 ], [ -64.930736359224397, 18.377422395334463 ], [ -64.93078413609544, 18.377494144460115 ], [ -64.930867284614862, 18.377519959424603 ], [ -64.930955127002335, 18.377537393791556 ], [ -64.93102938939046, 18.377579973880131 ], [ -64.931112706857732, 18.377609982417596 ], [ -64.93120507547502, 18.377593887846103 ], [ -64.93129308550067, 18.377577794584283 ], [ -64.931385286479838, 18.377582657400126 ], [ -64.931468602637437, 18.377608472364614 ], [ -64.931542866335235, 18.377651052453189 ], [ -64.931603886619598, 18.377710228718058 ], [ -64.931659710121551, 18.377762699457094 ], [ -64.931668427305056, 18.377767059358519 ], [ -64.931729447589476, 18.377826235623331 ], [ -64.931803711287273, 18.377868646764114 ], [ -64.931891721312866, 18.377856913403718 ], [ -64.931979562390666, 18.377870155507424 ], [ -64.932058353628008, 18.377904353688791 ], [ -64.932146196015481, 18.377913407458266 ], [ -64.932221130265816, 18.377871999526974 ], [ -64.932308972653288, 18.377885244250024 ], [ -64.932401004684664, 18.377907035899113 ], [ -64.932444424273626, 18.377978617386589 ], [ -64.932487673605124, 18.378050198874064 ], [ -64.932592281116627, 18.378160169496539 ], [ -64.932653132453254, 18.378219345761352 ], [ -64.932727565098844, 18.378261925849927 ], [ -64.932806353716842, 18.378296125340967 ], [ -64.932823789393524, 18.378304673576679 ], [ -64.932849773305804, 18.378350941704412 ], [ -64.932880617414639, 18.378342896383174 ], [ -64.932885143644569, 18.378334514475966 ], [ -64.932902745649642, 18.378317749351879 ], [ -64.932973153670162, 18.378322610858049 ], [ -64.933016908535421, 18.378331329351226 ], [ -64.933060997367249, 18.378314899503437 ], [ -64.933123023480562, 18.378252370475707 ], [ -64.933211201144275, 18.378232087569984 ], [ -64.933294852578172, 18.378207612400956 ], [ -64.933325530358502, 18.378216329584461 ], [ -64.933369116275969, 18.378258574396739 ], [ -64.933373642505842, 18.378241810582324 ], [ -64.933431308717672, 18.378179281554651 ], [ -64.933519152414817, 18.378179950797517 ], [ -64.933602468572417, 18.378209959334981 ], [ -64.93366332121866, 18.378269301928299 ], [ -64.93374663737626, 18.378295119512131 ], [ -64.933829953533802, 18.378320934476619 ], [ -64.933913268381673, 18.378346750750779 ], [ -64.933996416901095, 18.378372568334669 ], [ -64.93408426059824, 18.378385810438374 ], [ -64.934171935347536, 18.378403244805327 ], [ -64.93425072396559, 18.378437442986694 ], [ -64.934324987663331, 18.378484215338574 ], [ -64.934403777591058, 18.378522604473517 ], [ -64.934447195870348, 18.378594184651377 ], [ -64.934490446511461, 18.378665767448524 ], [ -64.934516096457173, 18.37874992048711 ], [ -64.934603769896853, 18.378779927714902 ], [ -64.934691444646148, 18.3787933387664 ], [ -64.934770234573818, 18.3788317279014 ], [ -64.934831254858238, 18.378890905475885 ], [ -64.934905518556036, 18.378933316616667 ], [ -64.934927480462591, 18.378941867471667 ], [ -64.934993360943508, 18.378950918621797 ], [ -64.935076509462931, 18.378976734895957 ], [ -64.935164351850347, 18.378989979619007 ], [ -64.935252195547491, 18.379003221722712 ], [ -64.935330816527369, 18.379041610857712 ], [ -64.935405247863287, 18.379084190946287 ], [ -64.935479511561084, 18.379126603396685 ], [ -64.935545058075377, 18.379181756346043 ], [ -64.935614795543302, 18.379232550703705 ], [ -64.935684700649347, 18.379283512699487 ], [ -64.935728118928637, 18.379355095496635 ], [ -64.935771369569807, 18.379418461405407 ], [ -64.935815793677932, 18.379376719507547 ], [ -64.935903468427284, 18.379398512466253 ], [ -64.935960130119952, 18.379445115870283 ], [ -64.935977732125082, 18.379445115870283 ], [ -64.936065574512497, 18.379458526921837 ], [ -64.936135311980422, 18.379513513542747 ], [ -64.936134641427827, 18.379597498943212 ], [ -64.936151405242242, 18.37968148565335 ], [ -64.936181580108155, 18.379761449048033 ], [ -64.936246958984327, 18.37981643435927 ], [ -64.936313512637184, 18.379841244804538 ], [ -64.936335471924338, 18.379845603396291 ], [ -64.93642314667369, 18.379867396355053 ], [ -64.936510989061105, 18.379868066907591 ], [ -64.936629509228908, 18.379881477959145 ], [ -64.936646943595917, 18.37990679262856 ], [ -64.936672927508198, 18.379953227084741 ], [ -64.936716178149368, 18.380024808572273 ], [ -64.936786083255413, 18.380075770567998 ], [ -64.936833860126455, 18.380147352055531 ], [ -64.936903765232501, 18.380198314051313 ], [ -64.936969144108673, 18.380253299362494 ], [ -64.937038881576598, 18.380308453621581 ], [ -64.937091184677513, 18.380376010483928 ], [ -64.93713007672693, 18.380451782925036 ], [ -64.937129573812456, 18.380493692461016 ], [ -64.937186570781421, 18.380515150143424 ], [ -64.937269719300843, 18.380549348324848 ], [ -64.937344150636818, 18.380596119366999 ], [ -64.937387401277931, 18.380667700854474 ], [ -64.937421934735596, 18.380743473295581 ], [ -64.937429981366506, 18.380831650959294 ], [ -64.937446745180921, 18.380915637669489 ], [ -64.937446577542801, 18.380932569122024 ], [ -64.937494522051963, 18.380987386795084 ], [ -64.937542131284886, 18.381063326874312 ], [ -64.937589908155928, 18.381134908361787 ], [ -64.937664171853669, 18.381181679403994 ], [ -64.937698705311334, 18.381257451845102 ], [ -64.937719995355621, 18.381341606193359 ], [ -64.937767604588544, 18.381417378634467 ], [ -64.937806496637961, 18.381493318713694 ], [ -64.937820745880174, 18.381578143614547 ], [ -64.938577464462185, 18.381978295864258 ], [ -64.938774774557714, 18.382042836549715 ], [ -64.938941574510977, 18.382052559562055 ], [ -64.93902941689845, 18.38205323011465 ], [ -64.93910820682612, 18.38209161924965 ], [ -64.93918699675379, 18.382130008384593 ], [ -64.939261260451588, 18.382176611788623 ], [ -64.939335691787505, 18.382219191877198 ], [ -64.939418840306928, 18.38224919910499 ], [ -64.93950651505628, 18.382283397286358 ], [ -64.939558650519018, 18.382350955458378 ], [ -64.93956284147265, 18.382367719272793 ], [ -64.939641799038441, 18.382376771732538 ], [ -64.93972980906409, 18.38236486942435 ], [ -64.939799714170135, 18.382415831420133 ], [ -64.9398342476278, 18.382495794814815 ], [ -64.939895267912163, 18.382554971079628 ], [ -64.939974056530218, 18.382589169260996 ], [ -64.940057206359313, 18.382619176488788 ], [ -64.940135996286983, 18.382657565623788 ], [ -64.940197016571403, 18.382716741888601 ], [ -64.940266920367776, 18.382767536246206 ], [ -64.940367001649406, 18.382818833518286 ], [ -64.940450316497277, 18.382845990897636 ], [ -64.940533466326372, 18.382873148276929 ], [ -64.940616613536122, 18.382900304346606 ], [ -64.940707139443589, 18.382887732795496 ], [ -64.940749384255867, 18.382815145479128 ], [ -64.940729266368919, 18.382728644196845 ], [ -64.940695237135344, 18.382648848440283 ], [ -64.940640250514434, 18.382581960820801 ], [ -64.940613094444814, 18.382495459538518 ], [ -64.940558109133576, 18.382428739557213 ], [ -64.940503122512666, 18.382362019575908 ], [ -64.940427016104934, 18.382314913257403 ], [ -64.940350908387586, 18.382267806938955 ], [ -64.940267758558491, 18.382240649559662 ], [ -64.940218977168229, 18.382246852170965 ], [ -64.940177402908546, 18.382246684532845 ], [ -64.940094254389123, 18.382212821627718 ], [ -64.940053183043858, 18.382139396120635 ], [ -64.940012110388864, 18.38206613825173 ], [ -64.939963999551253, 18.381992712744648 ], [ -64.939909014240015, 18.381925992763342 ], [ -64.939825864410921, 18.381892129858272 ], [ -64.93974271720117, 18.381858266953202 ], [ -64.939645822353896, 18.381824404048075 ], [ -64.939576755438566, 18.381770759842027 ], [ -64.939521602489208, 18.381704039860722 ], [ -64.93944566240998, 18.381656933542217 ], [ -64.939362513890558, 18.381629776162924 ], [ -64.939258242964968, 18.381622232446432 ], [ -64.93916771836723, 18.381634805307215 ], [ -64.939077529045733, 18.381614185815522 ], [ -64.939036456390795, 18.38154092794656 ], [ -64.939058083021052, 18.381454761940574 ], [ -64.939086581505535, 18.38137546909843 ], [ -64.93908725205813, 18.381289135454267 ], [ -64.93903930754891, 18.381215877585362 ], [ -64.93897024063358, 18.381162233379314 ], [ -64.93890117371825, 18.381108589173209 ], [ -64.938839147604995, 18.381048407079504 ], [ -64.93876303988759, 18.381008006286834 ], [ -64.93869397297226, 18.380954362080729 ], [ -64.938617865254912, 18.380913961288002 ], [ -64.938527675933415, 18.380899879683909 ], [ -64.938444527413992, 18.380872722304616 ], [ -64.938375460498662, 18.380819078098511 ], [ -64.938299352781314, 18.380771971780064 ], [ -64.938223245063909, 18.380725033099736 ], [ -64.938161218950654, 18.380664851006031 ], [ -64.938120147605389, 18.380591425498949 ], [ -64.938107071830132, 18.380505091854786 ], [ -64.938051918880774, 18.380438371873481 ], [ -64.937968937999472, 18.380397803442634 ], [ -64.937878748678031, 18.380370646063341 ], [ -64.937795767796729, 18.380336783158214 ], [ -64.937726700881399, 18.380283138952166 ], [ -64.937643552361976, 18.380249276047039 ], [ -64.937574485446646, 18.380195631840991 ], [ -64.937505418531316, 18.380141987634886 ], [ -64.937464347186051, 18.380068729765981 ], [ -64.937437189806701, 18.379988934009418 ], [ -64.937458815127286, 18.379902768003433 ], [ -64.937459485679881, 18.379816601997391 ], [ -64.937425455136633, 18.379736638602708 ], [ -64.937391424593386, 18.379656676517698 ], [ -64.937350353248121, 18.379583418648792 ], [ -64.937323195868771, 18.379503621582558 ], [ -64.937310120093571, 18.379417287938395 ], [ -64.937262007946231, 18.379343862431313 ], [ -64.937220936600966, 18.379270604562407 ], [ -64.937151869685636, 18.379216960356302 ], [ -64.937096884374398, 18.379150072736877 ], [ -64.937055813029133, 18.379076814867915 ], [ -64.936993786915821, 18.37901663277421 ], [ -64.936917679198473, 18.37897623198154 ], [ -64.936855653085161, 18.378915883559387 ], [ -64.936793626971905, 18.378855701465682 ], [ -64.936717519254501, 18.378815299363282 ], [ -64.936641411537153, 18.378774898570555 ], [ -64.936600340191887, 18.378694936485545 ], [ -64.936580223614612, 18.37860860153171 ], [ -64.936553066235263, 18.378528639446699 ], [ -64.936532949657988, 18.378442304492864 ], [ -64.936485005148825, 18.378368878985839 ], [ -64.936443933803503, 18.378295622426549 ], [ -64.93641677642421, 18.378215825360314 ], [ -64.936361791112972, 18.378148937740889 ], [ -64.936306638163558, 18.378082217759584 ], [ -64.936279648422385, 18.378002254364901 ], [ -64.936245450241017, 18.377922458608339 ], [ -64.93621141969777, 18.377842496523328 ], [ -64.936212257888485, 18.377756330517286 ], [ -64.93617118654322, 18.377682903700588 ], [ -64.93612307439588, 18.377609645831626 ], [ -64.936061049592297, 18.377542759521873 ], [ -64.935999022169369, 18.377482577428168 ], [ -64.93597203242814, 18.377402612723813 ], [ -64.93590296551281, 18.377348968517708 ], [ -64.935826857795462, 18.377295325621333 ], [ -64.935757958518252, 18.377235143527628 ], [ -64.935674809998829, 18.377201280622501 ], [ -64.935598703591154, 18.377160878520158 ], [ -64.935515553762059, 18.377127015615088 ], [ -64.935432406552309, 18.377093152709961 ], [ -64.935370379129324, 18.377032970616256 ], [ -64.935343389388152, 18.376953176169422 ], [ -64.935281364584569, 18.37688628854994 ], [ -64.935226377963659, 18.376819568568635 ], [ -64.935171225014244, 18.376752679639537 ], [ -64.935095284935016, 18.376705742268882 ], [ -64.935019178527341, 18.376658634640705 ], [ -64.934943069500264, 18.37661152963193 ], [ -64.934881043387009, 18.376551347538225 ], [ -64.934805104617453, 18.376497703332177 ], [ -64.937319843105911, 18.37433466836012 ], [ -64.937716307316464, 18.374889718254906 ], [ -64.938035825618954, 18.375535963300024 ], [ -64.938330868752359, 18.376216237578717 ], [ -64.938496662876787, 18.376539445230037 ], [ -64.938749125921674, 18.37700363525073 ], [ -64.93885607905753, 18.377349137465558 ], [ -64.938975940330522, 18.377844674509504 ], [ -64.939070320605595, 18.378103675441992 ], [ -64.93928657381133, 18.378647662528977 ], [ -64.939629393815835, 18.37913213545545 ], [ -64.940003394515088, 18.379677294699718 ], [ -64.940316039653624, 18.380011062244421 ], [ -64.940565820488189, 18.380314152008793 ], [ -64.940877627436009, 18.380738276513114 ], [ -64.941126402441739, 18.381161898103016 ], [ -64.941688156552573, 18.381889112371653 ], [ -64.942029970728186, 18.382494286071505 ], [ -64.942185203649558, 18.382796705283283 ], [ -64.942214372686635, 18.383067943800256 ], [ -64.942180509781508, 18.383338847040989 ], [ -64.942052603187335, 18.383548729997244 ], [ -64.941861160426868, 18.383788117266874 ], [ -64.941513143639952, 18.383905966882139 ], [ -64.940945856160624, 18.383841258558562 ], [ -64.940631199364361, 18.383748387026799 ], [ -64.940348226177264, 18.383625675905364 ], [ -64.940003059238791, 18.383412272548071 ], [ -64.939406770360563, 18.383046150841551 ], [ -64.93902941689845, 18.382892594301666 ], [ -64.938274877612287, 18.382585481221838 ], [ -64.937803311513221, 18.382401079263445 ], [ -64.93723770041538, 18.38212564979284 ], [ -64.936860514591331, 18.381972093252955 ], [ -64.936421135015962, 18.381697501973065 ], [ -64.935950742383852, 18.38136256096135 ], [ -64.935670955631224, 18.380878422001501 ], [ -64.935076341824754, 18.380331586375746 ], [ -64.934480220584703, 18.379935457441491 ], [ -64.93388326246361, 18.379659692694588 ], [ -64.933033838678284, 18.379381917599687 ], [ -64.932058018351711, 18.379133308922462 ], [ -64.931083202544357, 18.378764169729379 ], [ -64.930518429637232, 18.378398384608829 ], [ -64.930109895480314, 18.378214485564854 ], [ -64.929607483962741, 18.377939391370546 ], [ -64.929198949805823, 18.377755492326571 ], [ -64.928821093429235, 18.377662116570718 ], [ -64.928380540386797, 18.377538233291943 ], [ -64.927903945143385, 18.377351818366151 ], [ -64.927344201380606, 18.376987877265208 ], [ -64.926937512552911, 18.376593257074262 ], [ -64.926466950973008, 18.376288323290282 ], [ -64.925992199749203, 18.375992441966162 ], [ -64.925587522579292, 18.375829496380504 ], [ -64.925021239619184, 18.375644425179189 ], [ -64.924581023162716, 18.375490364415214 ], [ -64.923984734284488, 18.375124244018366 ], [ -64.923671921507776, 18.374820482391783 ], [ -64.923422139363538, 18.374517393937083 ], [ -64.923140842557927, 18.37421396889647 ], [ -64.922953927337062, 18.373941389274307 ], [ -64.92276650789205, 18.37372899174585 ], [ -64.922548745943004, 18.373365887525949 ], [ -64.922329978165067, 18.373123147493459 ], [ -64.922143061634529, 18.372850567871296 ], [ -64.921924796771009, 18.372547645745101 ], [ -64.921768893297099, 18.372335583492941 ], [ -64.921551298986174, 18.37197247927304 ], [ -64.921269666904266, 18.371699229098283 ], [ -64.921004630998596, 18.371554054465605 ], [ -64.920560892831418, 18.371369820145333 ], [ -64.92029518637321, 18.371299915039287 ], [ -64.919476944592361, 18.37108265600466 ], [ -64.918753250724706, 18.370866067522627 ], [ -64.918470109899488, 18.370773532576834 ], [ -64.917964514566847, 18.370567001073709 ], [ -64.917622028528967, 18.370345049480761 ], [ -64.917402757836612, 18.370162657870424 ], [ -64.916995061870409, 18.369888235538326 ], [ -64.916587030627909, 18.369644154400703 ], [ -64.916210181389886, 18.369460421685176 ], [ -64.915738781619268, 18.36924584486087 ], [ -64.915361763433452, 18.369062113455016 ], [ -64.914932108180039, 18.368964046450458 ], [ -64.914524244575659, 18.36878852931369 ], [ -64.914178742360889, 18.368383515557809 ], [ -64.913893757516064, 18.367932904226734 ], [ -64.913687058374876, 18.367535097601319 ], [ -64.913586644436293, 18.367263860394019 ], [ -64.913426550008751, 18.367055318542896 ], [ -64.913132680342358, 18.366858008447423 ], [ -64.912651894145313, 18.366785253492878 ], [ -64.91200162578474, 18.366817103430606 ], [ -64.911563419676327, 18.366923554961716 ], [ -64.910808712752043, 18.367023970209971 ], [ -64.910490032640325, 18.367005362375949 ], [ -64.909859714528523, 18.366940151137953 ], [ -64.909134845884239, 18.366874269347363 ], [ -64.908378296250021, 18.366807884642355 ], [ -64.907937240293165, 18.366744182147613 ], [ -64.907175995481225, 18.366661704180785 ], [ -64.906740136306837, 18.366553912854158 ], [ -64.905511013435046, 18.366423658016288 ], [ -64.904880861651748, 18.36632827191238 ], [ -64.904471321665937, 18.366264737055758 ], [ -64.904125148898572, 18.366171697885875 ], [ -64.903368933231036, 18.366075305953075 ], [ -64.902675917143711, 18.36594924206878 ], [ -64.902266880072375, 18.36582552511851 ], [ -64.90185314913299, 18.365685044353825 ], [ -64.901356102036004, 18.365366364242107 ], [ -64.901042787654546, 18.365122953657021 ], [ -64.900728967739326, 18.364939725165584 ], [ -64.900352284829751, 18.364725818893874 ], [ -64.900070317471545, 18.364512750812821 ], [ -64.899819530808088, 18.364330025235859 ], [ -64.89950621642663, 18.364086614650773 ], [ -64.89909818518413, 18.363842365874973 ], [ -64.898878579215477, 18.363720157668013 ], [ -64.898439030692259, 18.363475573615915 ], [ -64.898156729367429, 18.363292680400832 ], [ -64.897843916590716, 18.362988920083865 ], [ -64.897467736595615, 18.362714831718449 ], [ -64.897281825893913, 18.362493884644664 ], [ -64.897176884415728, 18.362122064550931 ], [ -64.89713413537936, 18.361815955990323 ], [ -64.897149390450465, 18.361801706748054 ], [ -64.897239581081635, 18.361788128058436 ], [ -64.897329770403076, 18.361774549368761 ], [ -64.897419958414901, 18.361775219921299 ], [ -64.897525067531149, 18.361776059421686 ], [ -64.897615258162318, 18.361776728664609 ], [ -64.897705278535966, 18.361777566855324 ], [ -64.897795301528959, 18.361792655597981 ], [ -64.897885155574158, 18.361821990963506 ], [ -64.897979703487351, 18.361863732861366 ], [ -64.897981212230661, 18.361866750347929 ], [ -64.897982384388001, 18.361869264920131 ], [ -64.897985066598324, 18.361874964617016 ], [ -64.898037203370791, 18.361942522789036 ], [ -64.898098222345482, 18.362001699053849 ], [ -64.898163602531326, 18.362061042956839 ], [ -64.898202494580744, 18.362136815397946 ], [ -64.898241386630161, 18.362212587838997 ], [ -64.898311290426534, 18.362263549834779 ], [ -64.898381029204131, 18.362318702784194 ], [ -64.898424278535572, 18.362394476534917 ], [ -64.898507594693172, 18.362424482453036 ], [ -64.898590744522267, 18.362454489680829 ], [ -64.898656457365007, 18.362480305954989 ], [ -64.898678419271562, 18.362472091685902 ], [ -64.898766260349362, 18.362476954501801 ], [ -64.898845051586704, 18.362515343636744 ], [ -64.898923841514375, 18.362553731462071 ], [ -64.898975975667497, 18.362621289634092 ], [ -64.899032469722044, 18.362684656852537 ], [ -64.899111259649715, 18.36272304598748 ], [ -64.899190049577385, 18.362757244168847 ], [ -64.899277725636352, 18.362770487582225 ], [ -64.899365566714152, 18.362775349088452 ], [ -64.899453410411297, 18.362776019640989 ], [ -64.899519292201887, 18.362776690193584 ], [ -64.89953672656884, 18.362806194506902 ], [ -64.899571092388385, 18.362881966948009 ], [ -64.899605624536377, 18.362957739389117 ], [ -64.899671003412493, 18.363012724700354 ], [ -64.899701682502553, 18.363021441883802 ], [ -64.899793883481721, 18.363026303389972 ], [ -64.899881724559521, 18.363035355849775 ], [ -64.899969734585113, 18.363032003086914 ], [ -64.900057410644081, 18.363049437453867 ], [ -64.900082722694151, 18.363158737523747 ], [ -64.900130499565194, 18.363230319011222 ], [ -64.900204764572663, 18.363272899099798 ], [ -64.900265783547411, 18.363336267627915 ], [ -64.900335522325008, 18.363387228314025 ], [ -64.900414310943006, 18.363425617449025 ], [ -64.900466446405801, 18.363493175621045 ], [ -64.900514224586516, 18.36356492474664 ], [ -64.900575075923086, 18.363628291965085 ], [ -64.900658393390358, 18.363658299192878 ], [ -64.900741540600109, 18.36368830642067 ], [ -64.900820330527779, 18.363726695555613 ], [ -64.900903646685322, 18.363752511829773 ], [ -64.900991321434674, 18.363770113834903 ], [ -64.901078997493642, 18.363791739155488 ], [ -64.901166838571442, 18.36380079161529 ], [ -64.901254680958857, 18.363801462167828 ], [ -64.901342523346329, 18.36378955985964 ], [ -64.901417626544514, 18.363744129922623 ], [ -64.901435228549644, 18.363744297560743 ], [ -64.901505467622314, 18.363761564289575 ], [ -64.901601859555115, 18.36378335724828 ], [ -64.901676124562584, 18.363830128290488 ], [ -64.901741502129084, 18.363885113601725 ], [ -64.901802522413448, 18.363944289866538 ], [ -64.901881313650847, 18.363978488047906 ], [ -64.901964628498718, 18.364004304322066 ], [ -64.902047944656317, 18.364030120596283 ], [ -64.90213109317574, 18.364056104508563 ], [ -64.902200998281785, 18.364106898866225 ], [ -64.902244248922898, 18.364178647991821 ], [ -64.90229202579394, 18.364250229479353 ], [ -64.902322033021733, 18.364330192874036 ], [ -64.902365283662903, 18.364401941999631 ], [ -64.902417419125641, 18.364469500171708 ], [ -64.902474248456485, 18.364511912622106 ], [ -64.902478439410061, 18.364528676436521 ], [ -64.902552703107858, 18.364579638432303 ], [ -64.902622608213903, 18.364630432789909 ], [ -64.902705756733326, 18.364660607655821 ], [ -64.902775661839371, 18.364711402013484 ], [ -64.902836682123791, 18.364770578278296 ], [ -64.902910945821588, 18.364817349320504 ], [ -64.902980683289513, 18.364868311316286 ], [ -64.903068525676986, 18.364881554729664 ], [ -64.903156200426281, 18.364898989096616 ], [ -64.903244042813753, 18.364916591101746 ], [ -64.903331885201169, 18.364913070700709 ], [ -64.903398269906234, 18.364854900264731 ], [ -64.903455937427736, 18.364792371237058 ], [ -64.903504552489494, 18.364763369838101 ], [ -64.903521986856504, 18.364776110337061 ], [ -64.903548138406961, 18.364805614650436 ], [ -64.903582504226449, 18.364881554729664 ], [ -64.903595412363529, 18.364923464265644 ], [ -64.903599435678984, 18.364965541439801 ], [ -64.903599100402744, 18.365003260022206 ], [ -64.903642686320154, 18.365037122927276 ], [ -64.903690463191197, 18.365108872052929 ], [ -64.903707897558206, 18.365125803505464 ], [ -64.903778137940492, 18.365126306419882 ], [ -64.903870338919717, 18.365135526517804 ], [ -64.903953487439139, 18.365165533745596 ], [ -64.904032277366809, 18.365203922880539 ], [ -64.904041162188435, 18.365203922880539 ], [ -64.904111737847074, 18.365170898166184 ], [ -64.904186672097467, 18.365129659182742 ], [ -64.904270491169427, 18.365100993060139 ], [ -64.904358165918779, 18.365122618380724 ], [ -64.90443242961652, 18.365173580376506 ], [ -64.904520104365872, 18.365191014743459 ], [ -64.904607779115167, 18.365204258156837 ], [ -64.90469562150264, 18.365213310616639 ], [ -64.904783463890055, 18.365226721668137 ], [ -64.904866612409535, 18.365252537942297 ], [ -64.904954622435127, 18.365249017541316 ], [ -64.905042464822543, 18.365241306186647 ], [ -64.905121925302808, 18.365208449110412 ], [ -64.905179592824368, 18.365145920082739 ], [ -64.905241618937623, 18.365087749646761 ], [ -64.905263747172626, 18.365066962516892 ], [ -64.905320911779768, 18.365067297793189 ], [ -64.905329628963216, 18.365067465431309 ], [ -64.905417471350688, 18.365076517891112 ], [ -64.905491735048486, 18.365119097979687 ], [ -64.905565997436611, 18.365165869021837 ], [ -64.905649314903826, 18.365191685296054 ], [ -64.905719052371751, 18.365242479653659 ], [ -64.905780575570589, 18.365247173521709 ], [ -64.905807062397344, 18.365234768299047 ], [ -64.905882164285856, 18.365193529315604 ], [ -64.905948548990864, 18.365139549833259 ], [ -64.906019292287624, 18.365089761304489 ], [ -64.906090035584441, 18.365039972775719 ], [ -64.906169328426529, 18.365002757107732 ], [ -64.906257169504329, 18.365007618613902 ], [ -64.906340319333424, 18.365041984433446 ], [ -64.906401339617844, 18.365101160698259 ], [ -64.906471243414217, 18.365156146009497 ], [ -64.906518853956754, 18.365227895135149 ], [ -64.906566629518125, 18.365299644260801 ], [ -64.906614240060719, 18.365371393386397 ], [ -64.906688502448844, 18.365422187744059 ], [ -64.906780703428012, 18.365431407841982 ], [ -64.906868547125157, 18.365436269348152 ], [ -64.906961083380622, 18.365415985132699 ], [ -64.907048924458422, 18.365416655685294 ], [ -64.907132074287517, 18.365442471959454 ], [ -64.907210864215187, 18.365476670140822 ], [ -64.907289654142858, 18.36551086832219 ], [ -64.907377327582537, 18.365532661280952 ], [ -64.90755720462073, 18.365567530014914 ], [ -64.907649739566523, 18.365547413437582 ], [ -64.907702379253408, 18.36554774871388 ], [ -64.907728529494193, 18.365569038758167 ], [ -64.90773741562549, 18.36556065685096 ], [ -64.90775501763062, 18.365548251628354 ], [ -64.907829616604715, 18.365565518357187 ], [ -64.907917291354011, 18.365587311315892 ], [ -64.90800060751161, 18.365613127590052 ], [ -64.90807939743928, 18.36564732577142 ], [ -64.90812750958662, 18.365676997722915 ], [ -64.908136394408245, 18.3656602339085 ], [ -64.908167238517024, 18.365656378231222 ], [ -64.908241503524494, 18.365703149273372 ], [ -64.908315765912619, 18.365745561723827 ], [ -64.908376787506711, 18.365809096580392 ], [ -64.908442332711331, 18.36584312712364 ], [ -64.908459096525746, 18.365826530947345 ], [ -64.908463622755619, 18.365826530947345 ], [ -64.908542915597764, 18.36579350623299 ], [ -64.908630925623356, 18.365777580609347 ], [ -64.908718935648949, 18.365765678301102 ], [ -64.908815496529598, 18.365774730760847 ], [ -64.908894286457269, 18.365808928942272 ], [ -64.908981959896892, 18.365839103808185 ], [ -64.909069467008067, 18.36586911103592 ], [ -64.909157141757362, 18.365890736356505 ], [ -64.909235931685032, 18.365924934537873 ], [ -64.909323941710625, 18.365913032229685 ], [ -64.909411951736274, 18.365909511828647 ], [ -64.909495604479787, 18.365880844396372 ], [ -64.909579254603955, 18.365852179583385 ], [ -64.909663073675972, 18.365823513460782 ], [ -64.909750916063444, 18.365824184013377 ], [ -64.90983859081274, 18.36584161838033 ], [ -64.909921906970283, 18.365871625608122 ], [ -64.90999633961593, 18.365897441882282 ], [ -64.910009581719635, 18.365889227613252 ], [ -64.910084683608147, 18.365847820991632 ], [ -64.910163976450235, 18.365810605323702 ], [ -64.910247795522253, 18.365777748247467 ], [ -64.910327256002518, 18.365740700217657 ], [ -64.910415098389933, 18.365741370770195 ], [ -64.910507299369158, 18.365746232276365 ], [ -64.910595141756573, 18.36574690282896 ], [ -64.910683151782223, 18.365735000520772 ], [ -64.910758253670735, 18.365693761537329 ], [ -64.910828996967496, 18.365643973008559 ], [ -64.910891023080751, 18.365585634934462 ], [ -64.910983391698096, 18.365565518357187 ], [ -64.911071234085568, 18.365566188909725 ], [ -64.911163602702914, 18.365566859462319 ], [ -64.911251445090386, 18.365567530014914 ], [ -64.911339287477801, 18.365568200567452 ], [ -64.911422435997224, 18.365598375433365 ], [ -64.911469877591969, 18.36560709261687 ], [ -64.911500387734179, 18.365636764568364 ], [ -64.911556881788727, 18.365700131786809 ], [ -64.911622428303019, 18.365755117098047 ], [ -64.911687807179192, 18.365810102409284 ], [ -64.911757544647116, 18.36586106440501 ], [ -64.911805321518159, 18.365932813530662 ], [ -64.911861815572649, 18.36600037039301 ], [ -64.911913951035444, 18.366072120828335 ], [ -64.911966086498239, 18.366139679000355 ], [ -64.912049402655782, 18.366165495274515 ], [ -64.912093323849547, 18.366161639597237 ], [ -64.912133054089679, 18.366140852467367 ], [ -64.912133054089679, 18.366136661513792 ], [ -64.91218636301943, 18.366070109170607 ], [ -64.912226596174037, 18.365994839643918 ], [ -64.91228426369554, 18.365932310616245 ], [ -64.912372273721132, 18.365916217354425 ], [ -64.91249951107244, 18.365938345589427 ], [ -64.912561537185695, 18.365880007515329 ], [ -64.912606128931998, 18.365809096580392 ], [ -64.912672513637062, 18.365750926144415 ], [ -64.912747447887398, 18.365709519522852 ], [ -64.912809306362533, 18.365672303854865 ], [ -64.912805115408958, 18.365646990495122 ], [ -64.91274862135441, 18.365583623276734 ], [ -64.912714087896745, 18.365503659882052 ], [ -64.91271492608746, 18.365419840810034 ], [ -64.912733198645185, 18.365336021738017 ], [ -64.912720793422523, 18.365252035027879 ], [ -64.91269078619473, 18.365163689725989 ], [ -64.912634124502063, 18.365100322507544 ], [ -64.912559860804265, 18.365053551465394 ], [ -64.912485597106468, 18.365010971376819 ], [ -64.912402448587045, 18.364976773195451 ], [ -64.912350313124307, 18.364909215023374 ], [ -64.912293651431582, 18.364845847804986 ], [ -64.912268002795599, 18.364766052048424 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1184", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 18.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.985653601511899, 18.336383577093102 ], [ -64.985647732867221, 18.337086316192767 ], [ -64.985639015683716, 18.337978989309534 ], [ -64.985635830558977, 18.338370592013916 ], [ -64.985625269355921, 18.338886246944867 ], [ -64.985599788358002, 18.339251865736912 ], [ -64.985529884561629, 18.33952377480648 ], [ -64.985392756559861, 18.339759474036953 ], [ -64.985195446464388, 18.340001878793203 ], [ -64.984863690577413, 18.340202038737118 ], [ -64.984543166446088, 18.340328102621413 ], [ -64.984178553482877, 18.340388619991415 ], [ -64.98386288954805, 18.340414939179993 ], [ -64.983389648377226, 18.340432876461421 ], [ -64.983012796519802, 18.340438408520185 ], [ -64.982950770406546, 18.337590739368011 ], [ -64.983648815638162, 18.337566096560863 ], [ -64.983930112443772, 18.337543969635533 ], [ -64.984041425481053, 18.337463334378583 ], [ -64.98410261340365, 18.337284967393373 ], [ -64.984112670382615, 18.337106097493745 ], [ -64.98410596616651, 18.336886491525092 ], [ -64.984074953109882, 18.336503942590184 ], [ -64.984018291417215, 18.336145698566781 ], [ -64.983934638673645, 18.335966159424231 ], [ -64.983842774280447, 18.335762142493309 ], [ -64.983716038533885, 18.335622836505308 ], [ -64.983597518366082, 18.335540692505049 ], [ -64.983444967655032, 18.335450001578806 ], [ -64.983300632522742, 18.335400211740364 ], [ -64.983122096589682, 18.335366348835294 ], [ -64.982934846092519, 18.335356793461074 ], [ -64.982764358100098, 18.335363500296523 ], [ -64.982432266936826, 18.335369198683736 ], [ -64.982165554649725, 18.335383447926006 ], [ -64.980853786172929, 18.335414125706336 ], [ -64.978182639986414, 18.335483361569459 ], [ -64.977006827354103, 18.335539520347709 ], [ -64.976196798532612, 18.335570030489919 ], [ -64.975532282239442, 18.335597521835894 ], [ -64.975251153071952, 18.335611603439986 ], [ -64.974944878182896, 18.335568520436937 ], [ -64.974783776616846, 18.335486042470109 ], [ -64.974631393543916, 18.335371042703343 ], [ -64.974535504525534, 18.335199885468001 ], [ -64.974480351576176, 18.335101480567801 ], [ -64.974304834439408, 18.334709711534913 ], [ -64.974129318612313, 18.334301846620917 ], [ -64.974105681634001, 18.334073858745057 ], [ -64.974030747383665, 18.333971599477195 ], [ -64.973895966315865, 18.333791725058404 ], [ -64.973761017609945, 18.333644203491644 ], [ -64.973677198537928, 18.333472877308509 ], [ -64.973552308120645, 18.333130392580301 ], [ -64.973351980538609, 18.332648934521046 ], [ -64.973244189211982, 18.332306617431016 ], [ -64.973160537778142, 18.332118864019378 ], [ -64.973128183616325, 18.331923397943513 ], [ -64.973163387626585, 18.331777217481942 ], [ -64.973130027635932, 18.33168753107492 ], [ -64.9729779798393, 18.331548223777247 ], [ -64.972893825491042, 18.33142551134614 ], [ -64.972826937871559, 18.331286708272614 ], [ -64.972751835983047, 18.331099121189425 ], [ -64.972702215092454, 18.330919748375379 ], [ -64.972620072401867, 18.330719085516989 ], [ -64.972567434024654, 18.330529151499832 ], [ -64.972425779793014, 18.330170238233563 ], [ -64.972292172192226, 18.329852061036263 ], [ -64.972216902665537, 18.329688781483981 ], [ -64.972146159368776, 18.329547462528581 ], [ -64.972079271749351, 18.329546959614163 ], [ -64.971981873987659, 18.329575122822348 ], [ -64.971859833418819, 18.329643854461381 ], [ -64.971752712644843, 18.329733037953986 ], [ -64.971700577182048, 18.329793555323988 ], [ -64.971656991264581, 18.329909393281469 ], [ -64.971631845543016, 18.330007796871996 ], [ -64.971603849972951, 18.330088933733691 ], [ -64.971563784456521, 18.330161185773761 ], [ -64.971538806373076, 18.330227738116946 ], [ -64.971495555731906, 18.330317256885849 ], [ -64.971463536846443, 18.330506017435994 ], [ -64.97144308499287, 18.330591177613144 ], [ -64.97141257485066, 18.330676170152117 ], [ -64.971392122997088, 18.330761162691147 ], [ -64.971341663915723, 18.330855375328099 ], [ -64.971271926447855, 18.330911701744469 ], [ -64.971182072402655, 18.330977248258762 ], [ -64.97111216729661, 18.331042962411232 ], [ -64.971021475060695, 18.3312315553232 ], [ -64.971030527520497, 18.331316883138527 ], [ -64.97103974761842, 18.331402210953797 ], [ -64.971048800078165, 18.33150631424121 ], [ -64.971008399285495, 18.331610249890502 ], [ -64.970938158903152, 18.331694907153235 ], [ -64.970878144447568, 18.331760621305705 ], [ -64.9708280206425, 18.331836058470458 ], [ -64.970748392524115, 18.331873274138445 ], [ -64.97065904139339, 18.331891545386441 ], [ -64.970569690262607, 18.33191920698988 ], [ -64.970480171493705, 18.331946867283648 ], [ -64.970390820362979, 18.331965139841373 ], [ -64.970301301594077, 18.33199296777326 ], [ -64.970211950463295, 18.332020628067028 ], [ -64.970132323654582, 18.332057842425343 ], [ -64.970052695536197, 18.332104614777165 ], [ -64.969992679770996, 18.332170496567755 ], [ -64.969922774664894, 18.332226655346005 ], [ -64.969862761519039, 18.332292537136595 ], [ -64.96819442540027, 18.331298610580802 ], [ -64.968373296609627, 18.331088895262667 ], [ -64.968713434403753, 18.330826038652901 ], [ -64.969047535915081, 18.330593859823409 ], [ -64.969333358950621, 18.330355143106374 ], [ -64.969587666015059, 18.330116091113041 ], [ -64.969778439532604, 18.329936885937116 ], [ -64.970032746597042, 18.329697833943783 ], [ -64.970225026238552, 18.329337914848566 ], [ -64.970448487884482, 18.329008170619318 ], [ -64.970671781892293, 18.32870876889416 ], [ -64.97080052798691, 18.32840852897823 ], [ -64.970992473661795, 18.328078617110862 ], [ -64.97132422954877, 18.327740658612584 ], [ -64.971753550835558, 18.327572349915954 ], [ -64.972112128825586, 18.327506803401661 ], [ -64.972570619149394, 18.327542175050041 ], [ -64.972862980072534, 18.327601855539001 ], [ -64.973146791450347, 18.327776197899084 ], [ -64.97335550093959, 18.327964121568186 ], [ -64.973541076364995, 18.328238040985809 ], [ -64.973673007584352, 18.328612041685062 ], [ -64.973759844142933, 18.32903348397906 ], [ -64.97391273013028, 18.329606974069691 ], [ -64.974035608889835, 18.329999414964789 ], [ -64.974158320011213, 18.330422030725856 ], [ -64.974298296551808, 18.330816650916802 ], [ -64.974467780025066, 18.331225520350017 ], [ -64.974684702473724, 18.331600694516283 ], [ -64.975025512130117, 18.332326232403545 ], [ -64.975242937493249, 18.332719511489358 ], [ -64.975429686385667, 18.333022098339256 ], [ -64.975647783611009, 18.333355026383572 ], [ -64.97599160944435, 18.333719136432364 ], [ -64.976430990329447, 18.33399356138375 ], [ -64.976816893336945, 18.33411191260376 ], [ -64.977329361833483, 18.334199756300904 ], [ -64.977788019795469, 18.33425976944676 ], [ -64.978612128911323, 18.334272174669422 ], [ -64.97951988946113, 18.33422775056124 ], [ -64.980150544158846, 18.334232613377083 ], [ -64.980718334552535, 18.334236970659163 ], [ -64.98197679409958, 18.334218699411167 ], [ -64.982737199411076, 18.334191877308115 ], [ -64.983568853553152, 18.334209310365395 ], [ -64.98410915129125, 18.334263457485918 ], [ -64.984588762711553, 18.334374770523198 ], [ -64.984932923821191, 18.334542239719383 ], [ -64.985129395725949, 18.334782297541608 ], [ -64.985379345508363, 18.335055381387861 ], [ -64.985534578429679, 18.335357631651789 ], [ -64.985596101628516, 18.335584782646606 ], [ -64.985634992368261, 18.335996332980471 ], [ -64.985653601511899, 18.336383577093102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_947", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.897481984528156, 18.312369081617817 ], [ -64.897449630366395, 18.312402944522887 ], [ -64.897411913093663, 18.312477375858862 ], [ -64.897374194511258, 18.3125519748329 ], [ -64.897356926472753, 18.312634452799784 ], [ -64.897335636428465, 18.312716930766612 ], [ -64.897322561962881, 18.312799576371617 ], [ -64.897297080965018, 18.312882054338445 ], [ -64.897279814236185, 18.31296453230533 ], [ -64.897250309922811, 18.313042986956702 ], [ -64.897233043193978, 18.313125632561707 ], [ -64.897207728524563, 18.313208110528535 ], [ -64.897194486420858, 18.313290588495363 ], [ -64.897144530253968, 18.313361164154003 ], [ -64.897069931279873, 18.313407767558033 ], [ -64.89698309341162, 18.313430733983751 ], [ -64.89689659343901, 18.313418161122968 ], [ -64.896813612557708, 18.313393853592117 ], [ -64.89673146986712, 18.313365690383876 ], [ -64.89664932717659, 18.31333752717569 ], [ -64.896571207801458, 18.313297461659317 ], [ -64.896493256064502, 18.313257396142888 ], [ -64.896419495281179, 18.3132136425873 ], [ -64.896341543544224, 18.313177432748205 ], [ -64.896255042261885, 18.313165027525542 ], [ -64.896194021977465, 18.313164524611125 ], [ -64.89624783382169, 18.313137367231775 ], [ -64.89633450274215, 18.31312227979879 ], [ -64.896421170352937, 18.313111215681317 ], [ -64.89650784058307, 18.313100151563788 ], [ -64.89659467714165, 18.313081040815405 ], [ -64.896677321436982, 18.313054218712352 ], [ -64.896759968351603, 18.313023373293845 ], [ -64.896838590641153, 18.312988504559883 ], [ -64.896921403884278, 18.312945924471308 ], [ -64.896991979542918, 18.312895297751822 ], [ -64.897046125353768, 18.31282488973136 ], [ -64.897133801412735, 18.312703519715114 ], [ -64.897179734264228, 18.312633111694595 ], [ -64.897229858069238, 18.312562536036012 ], [ -64.89727579092073, 18.312492128015492 ], [ -64.897342175625738, 18.312437477980552 ], [ -64.897404537015291, 18.312378972268334 ], [ -64.897457006444711, 18.312343265343657 ], [ -64.897481984528156, 18.312369081617817 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_540", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.966564816312143, 18.325775270321969 ], [ -64.966561463549226, 18.326177266591287 ], [ -64.966588453290456, 18.32671974362529 ], [ -64.966616447550791, 18.327141519885913 ], [ -64.966582083040976, 18.327472606529966 ], [ -64.966516033612209, 18.327833531454019 ], [ -64.966418803488693, 18.328134106646189 ], [ -64.966289722117835, 18.328494527346152 ], [ -64.966160976023218, 18.328794768571697 ], [ -64.965982272452038, 18.329314948422848 ], [ -64.965838775510463, 18.329605465326438 ], [ -64.965642135967528, 18.329927665839193 ], [ -64.965518921931732, 18.330292446440524 ], [ -64.965438455622575, 18.330594195099707 ], [ -64.965368047602112, 18.331037933266884 ], [ -64.963716476607431, 18.330826206291022 ], [ -64.963734078612561, 18.330741549028289 ], [ -64.963755703933145, 18.330657562318152 ], [ -64.963768947346523, 18.330569719930679 ], [ -64.963798954574258, 18.330489924174174 ], [ -64.963828961802051, 18.330409960779491 ], [ -64.963867350937051, 18.330334355976504 ], [ -64.963914121979201, 18.330262606850908 ], [ -64.963960893021408, 18.330166885470646 ], [ -64.963986709295568, 18.330087089714141 ], [ -64.964045885560381, 18.330023554857576 ], [ -64.964117634686033, 18.329975945624653 ], [ -64.964193407127084, 18.329932527345363 ], [ -64.964223414354876, 18.329852731588801 ], [ -64.964224084907471, 18.329768744878663 ], [ -64.964237328320849, 18.329684758168526 ], [ -64.964263312233129, 18.329596915781053 ], [ -64.964263982785724, 18.329512929070916 ], [ -64.964277226199101, 18.329428942360778 ], [ -64.964282087705271, 18.32934495565064 ], [ -64.964299689710401, 18.329260968940503 ], [ -64.964337911207224, 18.329185364137572 ], [ -64.964355513212354, 18.329089307481013 ], [ -64.964385520440146, 18.329009511724507 ], [ -64.964389711393721, 18.329005656047173 ], [ -64.964453078612166, 18.328956873347295 ], [ -64.964537065322304, 18.32892552501437 ], [ -64.964604623494324, 18.328870036788658 ], [ -64.964659608805562, 18.328802310978517 ], [ -64.964710570801344, 18.328734752806497 ], [ -64.964757174205374, 18.328663003680845 ], [ -64.964795563340374, 18.32858723254941 ], [ -64.964854739605187, 18.328523696383172 ], [ -64.964926487421167, 18.328472231472972 ], [ -64.964993879264682, 18.328416744556989 ], [ -64.965049032214097, 18.32834901743712 ], [ -64.965099826571702, 18.328281460574772 ], [ -64.965142405350605, 18.328205686823992 ], [ -64.965189010064307, 18.328134106646189 ], [ -64.965244163013722, 18.328066379526376 ], [ -64.965282552148665, 18.327990607085269 ], [ -64.965316750330032, 18.327910978966884 ], [ -64.965346757557825, 18.327831015572144 ], [ -64.965384979054647, 18.327755410769214 ], [ -64.965389840560817, 18.327683326367321 ], [ -64.96539419915257, 18.327671424059076 ], [ -64.965365533029967, 18.327589449006666 ], [ -64.965357820365682, 18.327505463606201 ], [ -64.965396209500625, 18.327429689855421 ], [ -64.965409454223675, 18.327345704454956 ], [ -64.965410123466597, 18.327261716435146 ], [ -64.96537324438458, 18.327169347817801 ], [ -64.965340387308345, 18.327089050456493 ], [ -64.965299148324959, 18.327012773791296 ], [ -64.965278864109507, 18.326928451804861 ], [ -64.965262770847687, 18.32684027545082 ], [ -64.965263441400282, 18.32675628743101 ], [ -64.965238630954957, 18.326683364838345 ], [ -64.965206109155019, 18.32661178335087 ], [ -64.96514793740937, 18.326547242665413 ], [ -64.965085577329489, 18.326482703289628 ], [ -64.965040147392472, 18.326410451249615 ], [ -64.964990358863702, 18.32634205357715 ], [ -64.964940737973052, 18.326273489576295 ], [ -64.964932522394349, 18.326249518631357 ], [ -64.964933026618439, 18.32618782648467 ], [ -64.964933697171034, 18.326103839774532 ], [ -64.96492196250091, 18.326019685426274 ], [ -64.964914251146297, 18.325935532387632 ], [ -64.964902348838109, 18.325851376729702 ], [ -64.964903019390647, 18.32576739132918 ], [ -64.964891117082459, 18.325683235671249 ], [ -64.964875191458759, 18.325599082632607 ], [ -64.964875862011354, 18.325515094612797 ], [ -64.964855577795902, 18.325430941574211 ], [ -64.964847866441289, 18.325346787225897 ], [ -64.964836131771222, 18.325262631567966 ], [ -64.964815847555769, 18.325178478529324 ], [ -64.964791372386742, 18.325098178548672 ], [ -64.964741583857972, 18.325029783495609 ], [ -64.964658100062252, 18.324997094057551 ], [ -64.964570256365164, 18.324980496571584 ], [ -64.964482247649244, 18.324983850644173 ], [ -64.964398093300929, 18.325015197667426 ], [ -64.964306059959881, 18.325002458478139 ], [ -64.964218049934289, 18.324993741294634 ], [ -64.964130039908696, 18.324997094057551 ], [ -64.964033647975896, 18.325012349128656 ], [ -64.963949493627581, 18.325039674146126 ], [ -64.963861483601988, 18.325047050224441 ], [ -64.963794931258803, 18.324990556169894 ], [ -64.963766265136201, 18.324910257498914 ], [ -64.963720835199183, 18.324837836511051 ], [ -64.96367942857762, 18.324761562465198 ], [ -64.963621425779763, 18.324692998464286 ], [ -64.963550682483003, 18.324636504409796 ], [ -64.963471389640915, 18.324599790346554 ], [ -64.963383211977145, 18.324619236371291 ], [ -64.963299057628888, 18.324650586013888 ], [ -64.96321507091875, 18.324685956352596 ], [ -64.96313510752401, 18.324725352626103 ], [ -64.963063358398415, 18.324776817536303 ], [ -64.962979371688277, 18.324800119238319 ], [ -64.962891361662685, 18.324791402054814 ], [ -64.962808045505085, 18.324746810308511 ], [ -64.962728752662997, 18.324706240567991 ], [ -64.962649459820852, 18.324657625506234 ], [ -64.962574525570517, 18.324613035069603 ], [ -64.962486515544924, 18.324604316576483 ], [ -64.962452987916095, 18.324608004615641 ], [ -64.962421136668752, 18.324619236371291 ], [ -64.96233983216888, 18.324654274053046 ], [ -64.962258695307185, 18.324683275451946 ], [ -64.962195831003214, 18.324742284078638 ], [ -64.962133135647036, 18.324801291395659 ], [ -64.962082675255999, 18.324872203640268 ], [ -64.962038418785994, 18.324949149548331 ], [ -64.962000532565469, 18.325026263094571 ], [ -64.961956276095407, 18.325103209002691 ], [ -64.961912019625402, 18.325180153601082 ], [ -64.961873965766699, 18.325269003127119 ], [ -64.961854519742019, 18.325352151646541 ], [ -64.961816633521494, 18.325429097554604 ], [ -64.961778579662791, 18.325506211100844 ], [ -64.961771706498894, 18.325589359620267 ], [ -64.961764665696819, 18.325672508139689 ], [ -64.961763995144281, 18.325755824297289 ], [ -64.961794506596164, 18.32583327311977 ], [ -64.961825015428701, 18.325910889580484 ], [ -64.961792828905004, 18.326029577386407 ], [ -64.961754775046359, 18.326106523294527 ], [ -64.961797690411231, 18.326184138445512 ], [ -64.961828200553384, 18.326261756215843 ], [ -64.959394431288501, 18.32611222168174 ], [ -64.959449081323442, 18.325966879410885 ], [ -64.959471543525069, 18.325769066400994 ], [ -64.959499037490332, 18.325527333507011 ], [ -64.959542623407799, 18.325217035302444 ], [ -64.959694000651837, 18.325031292238918 ], [ -64.959982170621345, 18.324898521519174 ], [ -64.960360194636053, 18.324774302964158 ], [ -64.960581475676463, 18.324715797251883 ], [ -64.960992692043703, 18.324568274375508 ], [ -64.961308523616708, 18.324510440525501 ], [ -64.961624855484729, 18.324392423272116 ], [ -64.961850496426564, 18.324265521197105 ], [ -64.962131457955934, 18.32415538293651 ], [ -64.962447623495507, 18.324067372910918 ], [ -64.962763621396959, 18.3239676282152 ], [ -64.963139466115763, 18.323913144508765 ], [ -64.963567613935538, 18.323902080391235 ], [ -64.964100367957201, 18.323949188019355 ], [ -64.964623901880884, 18.324053961859363 ], [ -64.9651206123919, 18.324189916394175 ], [ -64.965501487564723, 18.324360572024773 ], [ -64.96575847552981, 18.324539609562521 ], [ -64.966099451514708, 18.324848399023779 ], [ -64.966302127340498, 18.325137239545882 ], [ -64.966470268398893, 18.325376794453689 ], [ -64.966564816312143, 18.325775270321969 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_495", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.994429791007292, 18.362420291499404 ], [ -64.994355528619167, 18.362861012180019 ], [ -64.994413362469174, 18.363138788584592 ], [ -64.9945112644549, 18.36340717725318 ], [ -64.994628946431988, 18.36370456732061 ], [ -64.994756182473623, 18.364068845007523 ], [ -64.994873361536293, 18.364433122694436 ], [ -64.994950642720653, 18.364777954356668 ], [ -64.994966400706232, 18.365097305020981 ], [ -64.994964221410328, 18.365368375899834 ], [ -64.99480462989726, 18.365608266083882 ], [ -64.994614360603805, 18.365727289166102 ], [ -64.99436122700638, 18.365815802106169 ], [ -64.994045230414599, 18.36587363726585 ], [ -64.993730069394189, 18.365841115465912 ], [ -64.993478278211569, 18.36577892171448 ], [ -64.993180385229721, 18.365701640530062 ], [ -64.992873607426191, 18.365758302222787 ], [ -64.992936805696786, 18.365184309217682 ], [ -64.993021799545488, 18.365204090518716 ], [ -64.993106790774789, 18.365233427193914 ], [ -64.993196812458166, 18.365248346988722 ], [ -64.993281637359019, 18.365268128289699 ], [ -64.993371995628308, 18.365254549600024 ], [ -64.993442403648771, 18.365202414137229 ], [ -64.993527731464098, 18.365179112435214 ], [ -64.993613059279369, 18.365155978371376 ], [ -64.993708276435484, 18.365142232043581 ], [ -64.993798465756981, 18.365133347221956 ], [ -64.993888822716599, 18.365124462400274 ], [ -64.993973982893749, 18.365106022204429 ], [ -64.994059310709019, 18.365082720502414 ], [ -64.994144638524347, 18.365054724932406 ], [ -64.994204820617995, 18.365040810966434 ], [ -64.994225104833447, 18.365017173988122 ], [ -64.994225272471567, 18.365002757107732 ], [ -64.994195769467922, 18.364935534212009 ], [ -64.994161403648377, 18.364858923580186 ], [ -64.994121839736749, 18.364781977672124 ], [ -64.994112619638827, 18.364695979304258 ], [ -64.994083282963629, 18.364614339528089 ], [ -64.994063836938892, 18.364533035028273 ], [ -64.994049587696679, 18.364446869022231 ], [ -64.994030141671942, 18.364365396884239 ], [ -64.994025950718367, 18.364274537010203 ], [ -64.994026622580634, 18.364188538642338 ], [ -64.994026622580634, 18.364183677136168 ], [ -64.994052269907002, 18.364107401780643 ], [ -64.994047577348624, 18.36407387415187 ], [ -64.99400801343694, 18.36402576200453 ], [ -64.993968450834984, 18.363948983734588 ], [ -64.993964259881352, 18.363862985366723 ], [ -64.993949844310691, 18.36377681936068 ], [ -64.993965602296214, 18.363690820992815 ], [ -64.993946322599982, 18.363604654986773 ], [ -64.993916985924784, 18.36352318284878 ], [ -64.993872561816602, 18.363451098446887 ], [ -64.993843057503284, 18.363369626308895 ], [ -64.993818751282049, 18.363288154170903 ], [ -64.993784385462561, 18.36321137590096 ], [ -64.993739792406586, 18.363139291499067 ], [ -64.993724538645154, 18.363056142979644 ], [ -64.993714983270934, 18.363003504602432 ], [ -64.993695703574701, 18.362922032464439 ], [ -64.993661171426709, 18.362845254194497 ], [ -64.993626805607164, 18.362768643562674 ], [ -64.993602496766641, 18.362687171424682 ], [ -64.993593110340214, 18.362601005418639 ], [ -64.993603837871774, 18.362515007050774 ], [ -64.993639544796451, 18.362438731695249 ], [ -64.993670222576782, 18.362357762471731 ], [ -64.993705929501459, 18.362281487116206 ], [ -64.994429791007292, 18.362420291499404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_512", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.880196819429329, 18.353791454622979 ], [ -64.880149042558287, 18.353818612002328 ], [ -64.880052818263664, 18.353876782438306 ], [ -64.879972184316387, 18.353912321724806 ], [ -64.879883336100079, 18.353939814380453 ], [ -64.879807059434881, 18.353979544620586 ], [ -64.879751572518899, 18.354043582391569 ], [ -64.879679320478829, 18.354091360572284 ], [ -64.879691222787017, 18.354176184163464 ], [ -64.879711674640589, 18.354256985748862 ], [ -64.879723576948834, 18.354341810649771 ], [ -64.879705974943704, 18.354418253643416 ], [ -64.879697425398376, 18.354422110630367 ], [ -64.879676302992209, 18.354434011628939 ], [ -64.879709495344741, 18.354506934221604 ], [ -64.879768001057016, 18.354567786867847 ], [ -64.879847964451699, 18.354600811582202 ], [ -64.879932117490284, 18.354621598712072 ], [ -64.880020630430352, 18.354638362526487 ], [ -64.880041754146134, 18.354638530164607 ], [ -64.880088357550164, 18.354614725548174 ], [ -64.880109479956332, 18.354623107455382 ], [ -64.880193801942767, 18.354643894585251 ], [ -64.8802735963896, 18.35467675166143 ], [ -64.88034937014038, 18.354717655368574 ], [ -64.880424807305189, 18.354762582391174 ], [ -64.880500578436624, 18.35480365373644 ], [ -64.880580375502802, 18.354836510812675 ], [ -64.880664697489237, 18.354861321257999 ], [ -64.880753210429305, 18.354878252710535 ], [ -64.880841554421465, 18.354907086471314 ], [ -64.880878602451332, 18.354922006266122 ], [ -64.88092923048049, 18.354926364857874 ], [ -64.88101388643355, 18.354906918833194 ], [ -64.881102568321353, 18.354895519439367 ], [ -64.881191247589868, 18.354900213307417 ], [ -64.881279760529935, 18.354917144759952 ], [ -64.881368273469946, 18.354929885258912 ], [ -64.881448238174301, 18.354962909973267 ], [ -64.881498194341191, 18.355031809250477 ], [ -64.881539768600931, 18.355104731843085 ], [ -64.881556197139048, 18.355165249213087 ], [ -64.881589892405998, 18.355173631120294 ], [ -64.881644710079058, 18.355178157350167 ], [ -64.881674548359001, 18.355150161780102 ], [ -64.881750991352703, 18.355106408224515 ], [ -64.881810336565366, 18.355074556977172 ], [ -64.881823075754596, 18.355058631353472 ], [ -64.881865992429141, 18.354986379313402 ], [ -64.881900524577134, 18.354906080642422 ], [ -64.881976801242331, 18.354866350402347 ], [ -64.882061458505063, 18.354842881062154 ], [ -64.882149971445074, 18.354855621561114 ], [ -64.882242675338716, 18.354876576329104 ], [ -64.882326828377359, 18.354905410089884 ], [ -64.882402434489961, 18.354946313797029 ], [ -64.882461275478477, 18.354979170873207 ], [ -64.882478039292891, 18.354991408457749 ], [ -64.882490778482179, 18.354995431773204 ], [ -64.882566718561407, 18.355000125641254 ], [ -64.882655063863297, 18.355024936086522 ], [ -64.882743913389277, 18.355009681015417 ], [ -64.882828738290129, 18.354977997406252 ], [ -64.882917417558645, 18.354966598012425 ], [ -64.883010456728584, 18.354955366256775 ], [ -64.883099138616387, 18.354943966863004 ], [ -64.883187817884902, 18.354940614100087 ], [ -64.883276667410883, 18.354933238021772 ], [ -64.88336518035095, 18.354938099527942 ], [ -64.883424356615762, 18.354934411488784 ], [ -64.883453859619465, 18.354946816711447 ], [ -64.88353365537597, 18.354983697103137 ], [ -64.883596519679998, 18.355040694072102 ], [ -64.883646475846888, 18.355109593349255 ], [ -64.8836880514163, 18.35518251594192 ], [ -64.883687379554033, 18.355267173204652 ], [ -64.883686541363318, 18.355355853782783 ], [ -64.883681679857148, 18.355440511045515 ], [ -64.88370229934884, 18.355484935153697 ], [ -64.883740185569422, 18.355501363691815 ], [ -64.883820148964105, 18.35553438840617 ], [ -64.883853508954758, 18.355570933521562 ], [ -64.88381931077339, 18.355619045668902 ], [ -64.883759800541895, 18.35567906012443 ], [ -64.883695930409033, 18.355734883626383 ], [ -64.883700120052993, 18.355742930257293 ], [ -64.883704143368448, 18.35575114452638 ], [ -64.883762816718843, 18.355799927226258 ], [ -64.883842781423198, 18.355836807617948 ], [ -64.884049477945098, 18.355846698268408 ], [ -64.884134136517446, 18.355823061290153 ], [ -64.884218960108683, 18.35579154531905 ], [ -64.884299426417783, 18.355759861709828 ], [ -64.884307975963111, 18.355751982717095 ], [ -64.884333959875448, 18.355683586354303 ], [ -64.884414427494221, 18.355652070383258 ], [ -64.884502939124616, 18.355656764251307 ], [ -64.884591619702746, 18.35566950475021 ], [ -64.884679965004636, 18.35569850614911 ], [ -64.884747021571911, 18.35575147980262 ], [ -64.884818434111594, 18.355800430140675 ], [ -64.884885489369196, 18.355853403794185 ], [ -64.884969643717511, 18.35587821423951 ], [ -64.885053965703946, 18.355903024684835 ], [ -64.885142478643957, 18.355907886191005 ], [ -64.885231159222144, 18.355904533428088 ], [ -64.885320007438452, 18.355897157349773 ], [ -64.885400473747552, 18.355865641378728 ], [ -64.885488986687619, 18.355870335246721 ], [ -64.885573308674054, 18.3558991690075 ], [ -64.885661989252185, 18.355891960567305 ], [ -64.885750837468549, 18.35587653785808 ], [ -64.885834991816807, 18.355901348303405 ], [ -64.885923504756875, 18.355918112117763 ], [ -64.88600816201955, 18.355898666093083 ], [ -64.886096674959617, 18.355903527599253 ], [ -64.886185355537805, 18.355908221467303 ], [ -64.886274036115935, 18.355912915335296 ], [ -64.886362716694123, 18.35590553925698 ], [ -64.886451564910431, 18.355890116547755 ], [ -64.886481069223805, 18.355890451823996 ], [ -64.886493809722765, 18.355874358562176 ], [ -64.886515267405173, 18.355834293045802 ], [ -64.886482242690818, 18.355757347137683 ], [ -64.886474531336205, 18.35567268987495 ], [ -64.886445697575425, 18.355591888289553 ], [ -64.88642558099815, 18.355486779173248 ], [ -64.88644318300328, 18.355402289548692 ], [ -64.88644804450945, 18.35531763228596 ], [ -64.886448882700165, 18.355232975023227 ], [ -64.886449553252703, 18.355148317760552 ], [ -64.886454079482633, 18.355122669124512 ], [ -64.88645458239705, 18.35506215175451 ], [ -64.886455420587765, 18.354977494491777 ], [ -64.886460282093935, 18.354892837229102 ], [ -64.886507388412383, 18.354820752827152 ], [ -64.886579640452453, 18.354772809627661 ], [ -64.88666010676161, 18.354741292346887 ], [ -64.886736382117135, 18.354701562106754 ], [ -64.886787679389158, 18.354633501020317 ], [ -64.886880550920921, 18.354638194888309 ], [ -64.88696051431566, 18.354671219602722 ], [ -64.887053385847423, 18.354667866839804 ], [ -64.887138043110156, 18.354640374184214 ], [ -64.887226891326463, 18.354620928159477 ], [ -64.887311548589196, 18.354593267865766 ], [ -64.887396205851871, 18.354573821841029 ], [ -64.887484886430059, 18.354578683347199 ], [ -64.887573399370126, 18.354587400530704 ], [ -64.887661912310136, 18.354600141029664 ], [ -64.887754783841899, 18.354609025851289 ], [ -64.887843296781966, 18.354617743034794 ], [ -64.887931808412304, 18.354634674487329 ], [ -64.888020321352315, 18.354647414986232 ], [ -64.888096095103094, 18.354688318693377 ], [ -64.888175890859657, 18.354725366723244 ], [ -64.888264739075964, 18.354713968639089 ], [ -64.888349396338697, 18.354690330351104 ], [ -64.888433885963252, 18.354670885636097 ], [ -64.888518543225985, 18.354647414986232 ], [ -64.888586604312422, 18.354595614799734 ], [ -64.889155400535003, 18.355069527832825 ], [ -64.88889371739225, 18.35516189645017 ], [ -64.88862398761853, 18.355318470476675 ], [ -64.888415444457735, 18.355443360893958 ], [ -64.888256524806877, 18.355592558842147 ], [ -64.887970701771394, 18.35580110069327 ], [ -64.887780432477939, 18.355920123775491 ], [ -64.887431577500251, 18.356128162712196 ], [ -64.886893459058058, 18.356334692905591 ], [ -64.886545274632965, 18.356482382110471 ], [ -64.885977148962922, 18.356508030746511 ], [ -64.885188914409866, 18.356471485631118 ], [ -64.884841903451786, 18.356468635782676 ], [ -64.884432029499351, 18.356465450657936 ], [ -64.883927269738081, 18.356461259704361 ], [ -64.88320290662756, 18.356335028181888 ], [ -64.882478542207309, 18.356208629021353 ], [ -64.882100181606631, 18.356175436668821 ], [ -64.881407668433781, 18.356019197918613 ], [ -64.880873070392568, 18.355834125407625 ], [ -64.88065313045729, 18.355742092066578 ], [ -64.880213583243744, 18.35549750801448 ], [ -64.879805719639364, 18.35525325923868 ], [ -64.879398694225756, 18.354918653503262 ], [ -64.879180261724116, 18.354645738604802 ], [ -64.879049168695531, 18.354389922797054 ], [ -64.879043133722348, 18.354140309600666 ], [ -64.879141368365026, 18.353884326154741 ], [ -64.879283694458991, 18.353652651549453 ], [ -64.879473796114269, 18.353563802023416 ], [ -64.879681835050974, 18.353452994519955 ], [ -64.879923233978332, 18.353324248425338 ], [ -64.880196819429329, 18.353791454622979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_536", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.954728894102857, 18.33171971759856 ], [ -64.953572190909256, 18.333219073158489 ], [ -64.953526760972181, 18.333269029325379 ], [ -64.953447971044511, 18.333233153452909 ], [ -64.952944386059926, 18.332866865417941 ], [ -64.951842500539442, 18.332852280899431 ], [ -64.951847194407492, 18.332868709437491 ], [ -64.951850714808472, 18.332884801389639 ], [ -64.951853899933212, 18.332900895961188 ], [ -64.950168298395283, 18.331394164322887 ], [ -64.950425121341596, 18.331180425689297 ], [ -64.950658976552461, 18.331053020699869 ], [ -64.950850754589226, 18.330998035388632 ], [ -64.950966257270409, 18.330986635994805 ], [ -64.951073879649186, 18.330988144738114 ], [ -64.951287785920954, 18.331001052875195 ], [ -64.951417705482527, 18.330993341520582 ], [ -64.951609483519292, 18.330972051476294 ], [ -64.951846860440867, 18.330920251289797 ], [ -64.952085409519782, 18.330853196032194 ], [ -64.952343738590002, 18.330743393047896 ], [ -64.952559322552872, 18.330527475118402 ], [ -64.952718074565553, 18.330328823917796 ], [ -64.95286308156011, 18.330044677263686 ], [ -64.954991080160028, 18.329899167354711 ], [ -64.95501320839503, 18.329959517086536 ], [ -64.95508529279698, 18.330049706408033 ], [ -64.95509166304646, 18.330049874046153 ], [ -64.955142122127768, 18.330117264580053 ], [ -64.955186210959653, 18.330190857725256 ], [ -64.955198783820435, 18.330221367867466 ], [ -64.955147318910235, 18.330275850264286 ], [ -64.955095686361915, 18.330336367634231 ], [ -64.955095686361915, 18.330342570245591 ], [ -64.955158885942183, 18.330403925806309 ], [ -64.955202974774068, 18.330477518951511 ], [ -64.955259971743033, 18.330545077123531 ], [ -64.9553231713233, 18.330606432684249 ], [ -64.955373630404665, 18.330680025829452 ], [ -64.955379833015968, 18.330698466025297 ], [ -64.95539207060051, 18.330765521282899 ], [ -64.955455437818898, 18.330827044481737 ], [ -64.954940453440543, 18.331462393047502 ], [ -64.954393282538547, 18.331453508225877 ], [ -64.95436411350147, 18.331521569312315 ], [ -64.954728894102857, 18.33171971759856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1150", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.922858708871274, 18.32142070189343 ], [ -64.922899277302122, 18.321454061884083 ], [ -64.92298007888752, 18.321565708887988 ], [ -64.92302349716681, 18.321638128566178 ], [ -64.923051157460577, 18.321716583217608 ], [ -64.923050486907982, 18.321800569927746 ], [ -64.92296532542116, 18.321818004294698 ], [ -64.922909335590759, 18.321754469438133 ], [ -64.922869102436152, 18.321679032273323 ], [ -64.922825684156862, 18.321606612595133 ], [ -64.922772878141529, 18.321540060251948 ], [ -64.922716719363279, 18.321479542881946 ], [ -64.922804729388872, 18.321486248407723 ], [ -64.922855019522387, 18.321480716348958 ], [ -64.922858708871274, 18.32142070189343 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_915", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.991899125585462, 18.373066821077032 ], [ -64.991586146480245, 18.373355158684717 ], [ -64.991332845244699, 18.37347367885252 ], [ -64.991048363314292, 18.373531849288497 ], [ -64.990827751516804, 18.373499998041154 ], [ -64.990513597634958, 18.373347112053807 ], [ -64.990167592505713, 18.373223898018011 ], [ -64.989853606262045, 18.373040837164751 ], [ -64.98966518098814, 18.372949139099944 ], [ -64.989287827526027, 18.372795750198179 ], [ -64.989067551004837, 18.372733724084924 ], [ -64.988742165367285, 18.372633979389263 ], [ -64.988343186584586, 18.372577652972836 ], [ -64.988091058815996, 18.372545634087373 ], [ -64.987807247438241, 18.372543622429646 ], [ -64.987492087727503, 18.372511100629708 ], [ -64.98720810871157, 18.372508921333804 ], [ -64.986892949000833, 18.372476399533866 ], [ -64.986483241376902, 18.372413032315478 ], [ -64.986106055552909, 18.372259643413713 ], [ -64.985854430698737, 18.372167442434488 ], [ -64.985665837786769, 18.372075576731561 ], [ -64.985571792787994, 18.372014724085318 ], [ -64.985295860402971, 18.371902071252521 ], [ -64.986230275417597, 18.371047954908875 ], [ -64.986372432563712, 18.371157591564724 ], [ -64.986431273552284, 18.371266387410515 ], [ -64.986484582482035, 18.371335286687668 ], [ -64.986537723773722, 18.371404185964877 ], [ -64.986615004958082, 18.37145028645449 ], [ -64.986698488753802, 18.371473755794625 ], [ -64.986781972549522, 18.37149722513476 ], [ -64.986871323680248, 18.371514994778067 ], [ -64.986961010087327, 18.371527064724432 ], [ -64.987038961824283, 18.371482137701832 ], [ -64.987134515566368, 18.371482808254427 ], [ -64.987224035644886, 18.371506277594563 ], [ -64.98730131551963, 18.371552545722295 ], [ -64.987378596703991, 18.371598646211908 ], [ -64.987412962523535, 18.371627479972688 ], [ -64.987454704421395, 18.371639214642755 ], [ -64.987538020578938, 18.371674083376718 ], [ -64.987615469401476, 18.371714651807565 ], [ -64.987704988170378, 18.37172672175393 ], [ -64.987800541912463, 18.371738791700295 ], [ -64.987889893043189, 18.371762261040431 ], [ -64.987973712115206, 18.371740132805428 ], [ -64.988057531187224, 18.37171230487354 ], [ -64.988135650562299, 18.371672909909705 ], [ -64.988184097985936, 18.371599149126325 ], [ -64.988232377771396, 18.371525220704825 ], [ -64.988310832422769, 18.371440228165795 ], [ -64.988323405283609, 18.371354900350525 ], [ -64.988354083063939, 18.371269404897077 ], [ -64.988384593206149, 18.371189776778692 ], [ -64.988450810273036, 18.371133282724145 ], [ -64.988528762009992, 18.371088188063425 ], [ -64.988606043194352, 18.371134456191157 ], [ -64.988671422070524, 18.37119195607454 ], [ -64.988706626080784, 18.3712720871074 ], [ -64.988747697426049, 18.37135238577838 ], [ -64.988824978610467, 18.37139278657105 ], [ -64.988867558699042, 18.371319025787727 ], [ -64.988976020578207, 18.371211402099277 ], [ -64.989053301762567, 18.371251970530125 ], [ -64.98914282053147, 18.371269740173375 ], [ -64.989232339300372, 18.371276110422855 ], [ -64.989333760377463, 18.371294047704282 ], [ -64.98941104156188, 18.371340148193838 ], [ -64.989500560330782, 18.371352218140203 ], [ -64.989565771568778, 18.371409885661762 ], [ -64.98963115044495, 18.371467385545145 ], [ -64.989683956460283, 18.371570483003723 ], [ -64.98971329313548, 18.371650614036525 ], [ -64.989784204070418, 18.371742312101333 ], [ -64.98987372283932, 18.371760081744583 ], [ -64.989963241608223, 18.371772151690948 ], [ -64.990052592738948, 18.37179578866926 ], [ -64.990136076534668, 18.371819090371275 ], [ -64.990231462638576, 18.371837027652646 ], [ -64.990314946434296, 18.371871896386608 ], [ -64.990404465203198, 18.371883967642646 ], [ -64.990487948998918, 18.371910788436026 ], [ -64.990553495513211, 18.371849097599068 ], [ -64.990987175391751, 18.37205445432545 ], [ -64.991071497378186, 18.37219091177468 ], [ -64.991193370308849, 18.372354861879501 ], [ -64.991344244638469, 18.372473717323601 ], [ -64.991522946899977, 18.372665327722189 ], [ -64.991692261425442, 18.372838833201229 ], [ -64.991899125585462, 18.373066821077032 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_109", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.853230551514514, 18.324518822432708 ], [ -64.853286542654644, 18.32424691336314 ], [ -64.853249662262954, 18.324077934113973 ], [ -64.853128627522949, 18.323864195480382 ], [ -64.852814808917401, 18.323751542647585 ], [ -64.852392863708928, 18.323696724974525 ], [ -64.85195532815311, 18.323671076338485 ], [ -64.85149415561898, 18.32370410105284 ], [ -64.851048741070372, 18.323707621453877 ], [ -64.850664682082481, 18.323719188485825 ], [ -64.850324209012001, 18.32367979352199 ], [ -64.850369806587139, 18.323664370812708 ], [ -64.850453122744739, 18.323636207604522 ], [ -64.850529230462087, 18.323593459877827 ], [ -64.850605170541314, 18.323543502401208 ], [ -64.850677422581384, 18.323497235583147 ], [ -64.850757219647619, 18.323454487856452 ], [ -64.850824944148144, 18.323401681841062 ], [ -64.850897196188157, 18.323355246075209 ], [ -64.850969448228227, 18.32330897794742 ], [ -64.851049243984789, 18.32327360629904 ], [ -64.851132560142389, 18.323248963491892 ], [ -64.851216043938052, 18.323220800283707 ], [ -64.851299527733772, 18.323192469437345 ], [ -64.851390387607807, 18.323171682307532 ], [ -64.851477391804565, 18.323165144419875 ], [ -64.851564396001322, 18.323165814972469 ], [ -64.851651232559902, 18.323170173564222 ], [ -64.851741924795817, 18.323174532155974 ], [ -64.85183630507089, 18.323178890747727 ], [ -64.85192330926759, 18.323179728938442 ], [ -64.85201785718084, 18.32318039949098 ], [ -64.852108717054875, 18.323170341202342 ], [ -64.85219940929079, 18.323171011754937 ], [ -64.852233439833981, 18.323171347031234 ], [ -64.852286245849371, 18.323171849945652 ], [ -64.852373250046128, 18.323168832459089 ], [ -64.852460421881005, 18.323155253769414 ], [ -64.852547426077706, 18.323141507441562 ], [ -64.852638285951741, 18.32312424071273 ], [ -64.852725290148499, 18.32311770282513 ], [ -64.852812461983376, 18.323096748057139 ], [ -64.852893598845071, 18.323072105249992 ], [ -64.852897454522406, 18.323068584848954 ], [ -64.852984626357284, 18.323036733601612 ], [ -64.853068110153004, 18.323004882354212 ], [ -64.853147905909509, 18.322965821357002 ], [ -64.853220157949579, 18.322915866499784 ], [ -64.853258211808281, 18.322888373844137 ], [ -64.853344713090564, 18.322857360787509 ], [ -64.853471112251157, 18.322795167036077 ], [ -64.853531461982982, 18.322732302732106 ], [ -64.853578399353637, 18.322656697929119 ], [ -64.853632212507534, 18.322581260764366 ], [ -64.853685856713639, 18.322512026210859 ], [ -64.853845280588587, 18.322469110845987 ], [ -64.853931614232749, 18.322444468038839 ], [ -64.854018115515032, 18.322413454982211 ], [ -64.854236715654793, 18.322434242112081 ], [ -64.854322714022658, 18.322447653163579 ], [ -64.85440871239058, 18.322461064215076 ], [ -64.854501416284165, 18.322474475266631 ], [ -64.854660001968398, 18.322520072841769 ], [ -64.854739127172365, 18.322577740363329 ], [ -64.854784723437888, 18.322654015718854 ], [ -64.854837195486596, 18.322724088463019 ], [ -64.854849599399586, 18.322806566429904 ], [ -64.854855300406143, 18.322914190118297 ], [ -64.85482814302685, 18.322996165170764 ], [ -64.854814061422758, 18.323078475499472 ], [ -64.854800147456785, 18.323160618190002 ], [ -64.854779527965093, 18.323242760880589 ], [ -64.854732421646645, 18.323318198045342 ], [ -64.854591773243783, 18.323481645235745 ], [ -64.854544666925335, 18.323557250038732 ], [ -64.854524047433642, 18.32363939141959 ], [ -64.854442910571947, 18.323822285944345 ], [ -64.85438909741805, 18.323891520497853 ], [ -64.854322377436745, 18.323947846914223 ], [ -64.85419514139511, 18.324098721243843 ], [ -64.854134790353612, 18.324167954487621 ], [ -64.854054828268545, 18.324211540405088 ], [ -64.853914682780157, 18.324317991936198 ], [ -64.853828516774172, 18.324329894244386 ], [ -64.853715361026957, 18.324373312523676 ], [ -64.853629027382794, 18.32440432558036 ], [ -64.853569012927267, 18.324429136025628 ], [ -64.853489217170704, 18.324466350383943 ], [ -64.853402883526542, 18.324478421639981 ], [ -64.853316717520556, 18.324490323948226 ], [ -64.853230551514514, 18.324518822432708 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_522", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.016387535403453, 18.344826504577497 ], [ -65.015330073991095, 18.344394333442267 ], [ -65.015514978863962, 18.344105826886789 ], [ -65.015738272871772, 18.343806257523454 ], [ -65.015866348413795, 18.343566199701229 ], [ -65.01612736100401, 18.343309042788349 ], [ -65.01634243943306, 18.343208293573468 ], [ -65.016794057902644, 18.343047024369298 ], [ -65.017132519315396, 18.343003270813711 ], [ -65.017542562215624, 18.343006289609946 ], [ -65.018204397608145, 18.343071499538325 ], [ -65.018519892595123, 18.343073846472294 ], [ -65.01886673460541, 18.343076362354168 ], [ -65.019234701641153, 18.343079044564433 ], [ -65.019678270860538, 18.343145932183916 ], [ -65.020022768556089, 18.343246513760619 ], [ -65.019760245912948, 18.344049166503794 ], [ -65.019717833462494, 18.344033911432689 ], [ -65.019636528962678, 18.344002058875617 ], [ -65.019555056824686, 18.343970376576124 ], [ -65.019469730319031, 18.343938525328724 ], [ -65.019384233555968, 18.343914551764499 ], [ -65.019306952371551, 18.343871133485152 ], [ -65.01922162455628, 18.343847162540271 ], [ -65.019135627498088, 18.343865936702741 ], [ -65.019078127614648, 18.343927796487549 ], [ -65.018996320200415, 18.343958472958207 ], [ -65.018914343838333, 18.343992838777694 ], [ -65.018840584364625, 18.344039106905484 ], [ -65.018766654633453, 18.344089230710495 ], [ -65.018700940480983, 18.344143211502569 ], [ -65.01862717969766, 18.344189479630302 ], [ -65.018557274591615, 18.344247313480309 ], [ -65.01847949049278, 18.344285702615309 ], [ -65.01838963644758, 18.344289055378169 ], [ -65.01829995135023, 18.344284530457969 ], [ -65.01821445458711, 18.344272123925634 ], [ -65.018120912502752, 18.344236417000957 ], [ -65.018035418358977, 18.344212444746347 ], [ -65.017949921595857, 18.344180593499004 ], [ -65.017864427452082, 18.344160476921729 ], [ -65.017799216214087, 18.344144383659909 ], [ -65.017771554610647, 18.344135163561987 ], [ -65.017706847596742, 18.344080179560422 ], [ -65.017629566412381, 18.344040615648737 ], [ -65.017544070958934, 18.344020500381134 ], [ -65.017454384551911, 18.344015972841589 ], [ -65.017389508590156, 18.343960987530352 ], [ -65.017341061166519, 18.343890411871712 ], [ -65.017259755357031, 18.343854872585212 ], [ -65.017170070259681, 18.343854203342289 ], [ -65.017100331482084, 18.343904325837684 ], [ -65.017002095529676, 18.343942548644179 ], [ -65.016916432438109, 18.343930143421517 ], [ -65.016838649648946, 18.343968532556516 ], [ -65.016768912181078, 18.344018656361584 ], [ -65.016699007075033, 18.344072803482106 ], [ -65.016633292922563, 18.344126781654779 ], [ -65.016583838360418, 18.344196520432376 ], [ -65.016550478369766, 18.344274304531154 ], [ -65.016537571542358, 18.344355942997652 ], [ -65.016512593458913, 18.344429871419152 ], [ -65.016500355874371, 18.344511678833385 ], [ -65.016462302015668, 18.344669258688782 ], [ -65.01643112132092, 18.344750898464895 ], [ -65.016387535403453, 18.344826504577497 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_517", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 23.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.865548096801888, 18.350371302518795 ], [ -64.865546924644548, 18.350497700369658 ], [ -64.865546252782281, 18.350586214619398 ], [ -64.865558659314615, 18.350674895197585 ], [ -64.865558490366766, 18.350700039609478 ], [ -64.86508357150484, 18.350765921400068 ], [ -64.864641343390645, 18.350822584402408 ], [ -64.864183188343077, 18.350856782583776 ], [ -64.863600813430821, 18.350783858681496 ], [ -64.863317504967483, 18.350721329653766 ], [ -64.863065712475191, 18.350658969573885 ], [ -64.862751054369198, 18.350566098042123 ], [ -64.86243757234962, 18.3503526933751 ], [ -64.862249985266487, 18.350170472022285 ], [ -64.86210179314719, 18.34997835739955 ], [ -64.861961480020682, 18.34969605607472 ], [ -64.86194136344335, 18.349414926907286 ], [ -64.862038425928745, 18.349144526580972 ], [ -64.862167004385185, 18.348874629169131 ], [ -64.862262893403567, 18.348724759358731 ], [ -64.86235895006007, 18.348574892167676 ], [ -64.862422652554812, 18.348515212988389 ], [ -64.862518037349048, 18.348425694219486 ], [ -64.862841245000368, 18.34828638692187 ], [ -64.863213569318191, 18.348250679997193 ], [ -64.863591928609196, 18.348253697483756 ], [ -64.863781192073759, 18.348255206227066 ], [ -64.864096350474824, 18.348287895665123 ], [ -64.864302545391922, 18.348335840174343 ], [ -64.86445593560336, 18.348361656448503 ], [ -64.864596919282462, 18.348356627304213 ], [ -64.86471443362143, 18.348317902892916 ], [ -64.864788528371378, 18.348462574611176 ], [ -64.864835971275852, 18.348534994289423 ], [ -64.864890118396318, 18.348614119493391 ], [ -64.864937392352942, 18.348693077059181 ], [ -64.86497779314567, 18.348778572512629 ], [ -64.864997574446647, 18.348863900327956 ], [ -64.865010482583727, 18.348962136280306 ], [ -64.865023389411135, 18.349047464095634 ], [ -64.86502104247711, 18.349309314876564 ], [ -64.864992711630805, 18.349413921078394 ], [ -64.864943258378332, 18.349484999651452 ], [ -64.86485575257683, 18.349490699348337 ], [ -64.864773274609945, 18.349502600346909 ], [ -64.864694149405977, 18.349456333528849 ], [ -64.86461502420201, 18.349417775446057 ], [ -64.864535731359922, 18.349379052344432 ], [ -64.864456438517834, 18.349340495571312 ], [ -64.864369434321077, 18.349294059805459 ], [ -64.864282262486199, 18.349255335394162 ], [ -64.864194923013144, 18.349231866054026 ], [ -64.864107751178267, 18.349200852997399 ], [ -64.863988560457926, 18.349169503354744 ], [ -64.863909435253959, 18.349130780253176 ], [ -64.863814215478499, 18.349099599558372 ], [ -64.863734923946026, 18.349061042785252 ], [ -64.863663845372969, 18.349007230941027 ], [ -64.863584552530881, 18.348968506529786 ], [ -64.863497379386331, 18.348937493473159 ], [ -64.863409873584828, 18.348929111565951 ], [ -64.863322366473653, 18.348928441013356 ], [ -64.863234859362478, 18.348935314177254 ], [ -64.863154895967796, 18.348980241199854 ], [ -64.8630672212185, 18.348994658080244 ], [ -64.862995135506878, 18.349047296457456 ], [ -64.862954568385703, 18.349122901260387 ], [ -64.862867061274528, 18.349137485778954 ], [ -64.862818446212771, 18.349220634298376 ], [ -64.862833701283876, 18.349304284422544 ], [ -64.86285683534777, 18.349388104804234 ], [ -64.862903774028098, 18.349472091514372 ], [ -64.862983066870186, 18.349510648287492 ], [ -64.863062192074153, 18.349556916415224 ], [ -64.863141317278121, 18.349603184542957 ], [ -64.863228489112998, 18.349634365237762 ], [ -64.863315828586053, 18.349665378294389 ], [ -64.863403168059051, 18.349688847634582 ], [ -64.863490338584256, 18.34972002832933 ], [ -64.863585725997893, 18.349735953953029 ], [ -64.863672896523099, 18.349767134647777 ], [ -64.863752189365186, 18.349805691420897 ], [ -64.863839362509736, 18.349836872115702 ], [ -64.863926869620911, 18.349837541358625 ], [ -64.864014375422414, 18.349838213220835 ], [ -64.864101716205084, 18.349861850199147 ], [ -64.864189223316259, 18.34986251944207 ], [ -64.864276730427434, 18.349870735020772 ], [ -64.864364237538609, 18.349871573211487 ], [ -64.864451744649784, 18.34987224245441 ], [ -64.86464704308753, 18.349864866376095 ], [ -64.864732872507602, 18.349863526580577 ], [ -64.86481887218514, 18.349850449495705 ], [ -64.864913083512363, 18.349851121357972 ], [ -64.865000590623538, 18.349845420351357 ], [ -64.865088434320683, 18.349826981465185 ], [ -64.865169403544257, 18.34979546549414 ], [ -64.865250540405953, 18.349757579273614 ], [ -64.865331677267648, 18.349719525414912 ], [ -64.865367719468566, 18.349813570413687 ], [ -64.865419184378823, 18.34997835739955 ], [ -64.865548096801888, 18.350371302518795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_388", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.991311890476709, 18.370970338448217 ], [ -64.991262437224179, 18.370898254046267 ], [ -64.991202924373397, 18.370835725018537 ], [ -64.991168559863581, 18.370749391374375 ], [ -64.991169230416119, 18.37066339300651 ], [ -64.991219689497484, 18.370620646589487 ], [ -64.991234776930469, 18.370606396037545 ], [ -64.991295461938591, 18.370544706510259 ], [ -64.991306189470095, 18.370458706832721 ], [ -64.991326977909637, 18.370368014596806 ], [ -64.991392524423929, 18.370306491397969 ], [ -64.991477852239257, 18.370287883563947 ], [ -64.991563180054527, 18.370264749500109 ], [ -64.991653200428175, 18.370270113920697 ], [ -64.991673821229597, 18.370188977059001 ], [ -64.991599222255502, 18.370140698583214 ], [ -64.991554630509199, 18.370068612871592 ], [ -64.991469805608347, 18.370043971374116 ], [ -64.991379616286849, 18.370043299511849 ], [ -64.991289594603529, 18.370033073585091 ], [ -64.991325469166327, 18.369942548987353 ], [ -64.991356146946714, 18.369861579763779 ], [ -64.991381795582754, 18.369780442902083 ], [ -64.991422531651722, 18.369704167546558 ], [ -64.991507859466992, 18.369681033482664 ], [ -64.991533508103032, 18.369599896620969 ], [ -64.991448515564059, 18.369580116629663 ], [ -64.991363858301327, 18.369526975338033 ], [ -64.991314405048854, 18.369454889626411 ], [ -64.991330163034377, 18.369368892568218 ], [ -64.991350782526069, 18.369287754396851 ], [ -64.991391518595094, 18.369211480350998 ], [ -64.991417333559582, 18.36912564962131 ], [ -64.991407947133212, 18.369039651253388 ], [ -64.991438624913542, 18.368958514391693 ], [ -64.991484390126857, 18.368887100542395 ], [ -64.991559827291667, 18.368844686782268 ], [ -64.991635264456477, 18.368802275641485 ], [ -64.991720592271747, 18.3687741124333 ], [ -64.991805920087074, 18.368750978369462 ], [ -64.991891246592672, 18.368727675357775 ], [ -64.991951931600795, 18.368661124324262 ], [ -64.992042122231965, 18.368647545634587 ], [ -64.992067769558275, 18.36856640746322 ], [ -64.992093250556195, 18.368523659736525 ], [ -64.99208336121535, 18.368494827285417 ], [ -64.99201882052995, 18.368436992125737 ], [ -64.991944052608005, 18.368388543392427 ], [ -64.991919746386827, 18.368307072564164 ], [ -64.991975402250659, 18.36823113248488 ], [ -64.99204597659957, 18.368178995712469 ], [ -64.992096604628728, 18.368107583172787 ], [ -64.992147231348213, 18.36803633565188 ], [ -64.99220808268484, 18.367955535376154 ], [ -64.992223840670363, 18.367869535698617 ], [ -64.99217438741789, 18.367797452606396 ], [ -64.99212493547509, 18.367720674336397 ], [ -64.992090402017425, 18.367643896066454 ], [ -64.992066094486518, 18.367562422618789 ], [ -64.99199132656463, 18.367518838011051 ], [ -64.991926787188845, 18.367461001541699 ], [ -64.99184699143234, 18.367407692611891 ], [ -64.99179351355474, 18.367340637354289 ], [ -64.991728806540834, 18.367282803504281 ], [ -64.991679353288305, 18.367210551464211 ], [ -64.992416121621545, 18.367102423551671 ], [ -64.99266590245611, 18.367380704180391 ], [ -64.993060691594906, 18.367614224114959 ], [ -64.993146353376801, 18.367764426582312 ], [ -64.993144175390626, 18.368035497461165 ], [ -64.993108634794396, 18.36851712315854 ], [ -64.993075611389713, 18.368697669439655 ], [ -64.992979553423538, 18.368877711496623 ], [ -64.992883664405156, 18.369027581307023 ], [ -64.992756259415728, 18.36917711453151 ], [ -64.992564481378963, 18.369477017861414 ], [ -64.992499605417265, 18.369687237403696 ], [ -64.992434563127063, 18.369927796830666 ], [ -64.992401035498233, 18.370168526515101 ], [ -64.992304140651015, 18.370438757893567 ], [ -64.99223892941302, 18.370709493496122 ], [ -64.9921105185947, 18.370979558546139 ], [ -64.992073135288592, 18.371258508417725 ], [ -64.992071626545282, 18.371440228165795 ], [ -64.992109511456135, 18.371708113919908 ], [ -64.99217656802341, 18.372062500956361 ], [ -64.992194505304838, 18.372330386710473 ], [ -64.992172209431715, 18.372597937188289 ], [ -64.992101466134898, 18.372849059127986 ], [ -64.991899125585462, 18.373066821077032 ], [ -64.991692261425442, 18.372838833201229 ], [ -64.991522946899977, 18.372665327722189 ], [ -64.991344244638469, 18.372473717323601 ], [ -64.991193370308849, 18.372354861879501 ], [ -64.991071497378186, 18.37219091177468 ], [ -64.990987175391751, 18.37205445432545 ], [ -64.990553495513211, 18.371849097599068 ], [ -64.990524158838014, 18.371767625461075 ], [ -64.990444529409956, 18.371714484169388 ], [ -64.990385019178518, 18.371642232129318 ], [ -64.990390718875403, 18.371556233761453 ], [ -64.990426425800081, 18.371480126044105 ], [ -64.990462131415086, 18.37140385068858 ], [ -64.990522816423208, 18.371323049103182 ], [ -64.990598254897691, 18.371280636652727 ], [ -64.990683581403289, 18.371262028818762 ], [ -64.990773772034458, 18.3712626993713 ], [ -64.990868822862069, 18.371258676055845 ], [ -64.990959012183566, 18.37126420811461 ], [ -64.991049033866886, 18.371264878667205 ], [ -64.991134360372484, 18.37124157696519 ], [ -64.991200074524954, 18.371184747634345 ], [ -64.991220695326319, 18.37110361077265 ], [ -64.991291270984959, 18.371051476619584 ], [ -64.991311890476709, 18.370970338448217 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1030", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.99784474763868, 18.362417776927259 ], [ -64.997843574171668, 18.362429177630759 ], [ -64.99784290361913, 18.362505620624404 ], [ -64.997802335188283, 18.362581894670257 ], [ -64.997801999911985, 18.362615254660909 ], [ -64.997821613574843, 18.362663199170072 ], [ -64.997901409331348, 18.362711646593709 ], [ -64.997976175943563, 18.36275523251112 ], [ -64.998025629196036, 18.362827316913069 ], [ -64.998055301147531, 18.362875429060409 ], [ -64.998100395808308, 18.36287090283048 ], [ -64.998190585129748, 18.362862018008855 ], [ -64.998275745306898, 18.36284357781301 ], [ -64.998370963772686, 18.362849109871775 ], [ -64.998455788673596, 18.362873585040802 ], [ -64.998545810356916, 18.362879117099567 ], [ -64.998630802895889, 18.362898730762424 ], [ -64.998720824579209, 18.362913818195352 ], [ -64.998800620335771, 18.3629478487386 ], [ -64.998890642019092, 18.362962936171584 ], [ -64.998935569041691, 18.362991937570484 ], [ -64.998945292054032, 18.363030326705427 ], [ -64.998979657873576, 18.363106938646922 ], [ -64.999029278764169, 18.36315521712271 ], [ -64.999054256847671, 18.36316007862888 ], [ -64.999129357426511, 18.363160749181475 ], [ -64.999144278530991, 18.363170472193815 ], [ -64.999203956400549, 18.363237695089595 ], [ -64.999258440107042, 18.363305085623438 ], [ -64.999307893359514, 18.363377170025387 ], [ -64.999377630827439, 18.363430311317018 ], [ -64.999452228491805, 18.363478758740655 ], [ -64.999501683054007, 18.363550843142548 ], [ -64.999561362233237, 18.363613372170278 ], [ -64.99961081548571, 18.363685456572227 ], [ -64.99967032702682, 18.3637479855999 ], [ -64.99975531956585, 18.363772628407105 ], [ -64.99984031210488, 18.363792409708083 ], [ -64.99986461963573, 18.363873881846075 ], [ -64.99982891140138, 18.363949989563423 ], [ -64.999783315135915, 18.364021403412778 ], [ -64.999732688416429, 18.364092817262133 ], [ -64.999696981491752, 18.364168924979481 ], [ -64.999671332855712, 18.364250061841176 ], [ -64.999630595477072, 18.364326337196701 ], [ -64.999555159621934, 18.364368749647156 ], [ -64.99951442355291, 18.364444857364504 ], [ -64.999489277831344, 18.364466650323266 ], [ -64.999478716628232, 18.364523982568471 ], [ -64.999453067992249, 18.364605119430166 ], [ -64.999432280862379, 18.364686256291861 ], [ -64.999432280862379, 18.364700505534131 ], [ -64.999492295317907, 18.364710563822769 ], [ -64.999502018330247, 18.364739397583548 ], [ -64.999536384149792, 18.364816008215314 ], [ -64.999570917607457, 18.364892786485314 ], [ -64.999605283427002, 18.364969564755256 ], [ -64.999649707535127, 18.365041649157149 ], [ -64.999719445003052, 18.365094790448836 ], [ -64.999763869111177, 18.365166874850729 ], [ -64.999798234930722, 18.365243485482551 ], [ -64.99982773924404, 18.365325125258664 ], [ -64.999847352906897, 18.365363514393664 ], [ -64.999862105063585, 18.365401735890487 ], [ -64.99990150002742, 18.365478514160429 ], [ -64.999925975196447, 18.365550430924202 ], [ -64.999936033485085, 18.365555292430372 ], [ -65.000020858385938, 18.36558462910557 ], [ -65.00010568328679, 18.365613965780767 ], [ -65.00013552156679, 18.365647661047717 ], [ -65.000160164373938, 18.365686050182717 ], [ -65.000199728285622, 18.36576282845266 ], [ -65.000219341948423, 18.365806079093772 ], [ -65.00025923851706, 18.365830218986559 ], [ -65.000338867945118, 18.365873972542147 ], [ -65.000413634557333, 18.365917558459557 ], [ -65.000488401169548, 18.365965838245017 ], [ -65.00051840839734, 18.365966173521315 ], [ -65.000578590491045, 18.365961814929562 ], [ -65.000633743440403, 18.36595259483164 ], [ -65.000663918306316, 18.365943207095597 ], [ -65.000668947450663, 18.365924263985335 ], [ -65.000704485427491, 18.365867099378193 ], [ -65.000725272557361, 18.365785962516497 ], [ -65.000735498484175, 18.365757296393895 ], [ -65.000770871442228, 18.365714547357527 ], [ -65.000806578366905, 18.365638273311674 ], [ -65.000822001076131, 18.365581108704532 ], [ -65.00085720508639, 18.365571720968489 ], [ -65.000862234230681, 18.36557188860661 ], [ -65.000952088275881, 18.365591669907644 ], [ -65.001011935093288, 18.365630394318885 ], [ -65.001011767455111, 18.365649505067324 ], [ -65.001011767455111, 18.365654198935317 ], [ -65.00097606053049, 18.365730474290842 ], [ -65.000975891582641, 18.365749585039282 ], [ -65.000965330379586, 18.365816471349035 ], [ -65.001014783632058, 18.365888557060657 ], [ -65.001024843230368, 18.365888557060657 ], [ -65.001090054468364, 18.365879504600855 ], [ -65.001100111447329, 18.365869949226692 ], [ -65.001170353139344, 18.36584480350507 ], [ -65.001184433433764, 18.36584480350507 ], [ -65.001274622755261, 18.365831224815395 ], [ -65.001324746560329, 18.365831560091692 ], [ -65.001349389367476, 18.365879504600855 ], [ -65.001413931362606, 18.365937339760535 ], [ -65.001423989651244, 18.365942201266705 ], [ -65.001498922591907, 18.36595712106157 ], [ -65.001583747492816, 18.365986457736767 ], [ -65.001663544558994, 18.366030043654177 ], [ -65.001708639219771, 18.366030378930475 ], [ -65.001753732570819, 18.366021158832552 ], [ -65.001843923201932, 18.366012274010927 ], [ -65.001934112523429, 18.366012944563522 ], [ -65.002024134206749, 18.36601847662223 ], [ -65.002114323528247, 18.366019147174825 ], [ -65.002204343901894, 18.366024511595413 ], [ -65.002294534533007, 18.366015626773788 ], [ -65.002354884264889, 18.365997018939822 ], [ -65.002369970388145, 18.36597807582956 ], [ -65.002370139335994, 18.36597321432339 ], [ -65.002360079737628, 18.36596365894917 ], [ -65.002320349497552, 18.36593465755027 ], [ -65.002320518445345, 18.36591068529566 ], [ -65.002325547589692, 18.36590112992144 ], [ -65.00240601258912, 18.365858717471042 ], [ -65.002476589557432, 18.365806749646367 ], [ -65.0025173256264, 18.365730474290842 ], [ -65.00254263767647, 18.365687726564147 ], [ -65.00258287083102, 18.365673644960054 ], [ -65.00267289251434, 18.365683870886812 ], [ -65.00276794465168, 18.365689402945577 ], [ -65.002852935881037, 18.365713878114605 ], [ -65.002927702493253, 18.365757464032015 ], [ -65.003002301467291, 18.365801049949482 ], [ -65.003072038935215, 18.365854191241112 ], [ -65.003126522641708, 18.365921414136892 ], [ -65.003140939522098, 18.366007580142877 ], [ -65.003165245743276, 18.36608905228087 ], [ -65.003214698995748, 18.366161135373147 ], [ -65.003274379484708, 18.36622383334867 ], [ -65.003369261364526, 18.366238920781598 ], [ -65.003459283047846, 18.366253840576405 ], [ -65.003544275586876, 18.36627362187744 ], [ -65.003604960594998, 18.366325757340178 ], [ -65.003609989739346, 18.366330451208228 ], [ -65.003649384703181, 18.366407397116348 ], [ -65.003688779667016, 18.36648417538629 ], [ -65.003728174630851, 18.36656095234656 ], [ -65.003722642572086, 18.366632535143708 ], [ -65.003762708088516, 18.366637731926176 ], [ -65.003848035903786, 18.366609567408318 ], [ -65.003867984842941, 18.366609736356111 ], [ -65.003938057587106, 18.366610239270585 ], [ -65.004028246908604, 18.366615771329293 ], [ -65.004113239447634, 18.366635552630328 ], [ -65.004203261130954, 18.366636223182866 ], [ -65.004288253669927, 18.366660698351893 ], [ -65.004347765211037, 18.366723227379623 ], [ -65.004392190628892, 18.366795310471844 ], [ -65.004451868498506, 18.366858008447423 ], [ -65.004506350895269, 18.366925231343146 ], [ -65.004550775003452, 18.366997314435366 ], [ -65.004525126367412, 18.367078452606734 ], [ -65.004554463042609, 18.367159923435054 ], [ -65.004564353693127, 18.367174341625116 ], [ -65.004599222427089, 18.367212898398236 ], [ -65.004614142221897, 18.367222452462784 ], [ -65.004669127533134, 18.367227650554923 ], [ -65.004693937978402, 18.367256484315703 ], [ -65.004753449519569, 18.367319180981553 ], [ -65.004833245276075, 18.367358073030971 ], [ -65.004872975516207, 18.367415740552474 ], [ -65.004872807878087, 18.367434851300914 ], [ -65.00484699160387, 18.367515820524432 ], [ -65.004836262762694, 18.367601817582681 ], [ -65.004841291906985, 18.367606680398524 ], [ -65.004891415712052, 18.367607014365092 ], [ -65.004926452084135, 18.367602489444891 ], [ -65.005011779899462, 18.367574492565211 ], [ -65.005076823499337, 18.367594107537684 ], [ -65.005096772438435, 18.367603830550081 ], [ -65.00517137141253, 18.367647416467491 ], [ -65.005201211002145, 18.367690667108661 ], [ -65.005205904870195, 18.367724193427762 ], [ -65.0052052343176, 18.367810193105299 ], [ -65.005189476332077, 18.367900885341214 ], [ -65.005199199344418, 18.367924857595824 ], [ -65.005244126367018, 18.367949165126674 ], [ -65.005264075306172, 18.367944471258681 ], [ -65.005324760314295, 18.367882780421667 ], [ -65.005350408950335, 18.367801643559972 ], [ -65.005435736765605, 18.367783203364127 ], [ -65.005520561666515, 18.367812540039324 ], [ -65.00559532827873, 18.367860818515112 ], [ -65.00561008043536, 18.367894515091734 ], [ -65.005670094890945, 18.367904404432579 ], [ -65.005755087429918, 18.367924187043229 ], [ -65.005764307527841, 18.368010353049272 ], [ -65.00576413988972, 18.368039019171874 ], [ -65.005844103284403, 18.368049245098689 ], [ -65.005913840752328, 18.368102386390319 ], [ -65.005958264860453, 18.368169609286042 ], [ -65.005983410582076, 18.368160221549999 ], [ -65.005983410582076, 18.368155358734157 ], [ -65.006044095590198, 18.368093669206814 ], [ -65.006089693165393, 18.368022421685964 ], [ -65.006135290740531, 18.367951009146282 ], [ -65.006190946604363, 18.367884455493424 ], [ -65.006236711817678, 18.367813041644069 ], [ -65.006282309392816, 18.367741629104444 ], [ -65.006357746557626, 18.367694521476267 ], [ -65.006397812074056, 18.367689996556066 ], [ -65.006417761013154, 18.367713967501004 ], [ -65.006437542314188, 18.367733247197236 ], [ -65.006456988338869, 18.367814719335229 ], [ -65.006486325014066, 18.367896191473164 ], [ -65.006521193748029, 18.367975484315309 ], [ -65.006524378872768, 18.367987720590122 ], [ -65.006532257865501, 18.368018567318302 ], [ -65.006610712516931, 18.368058631525059 ], [ -65.006697213799214, 18.368041366105899 ], [ -65.006772650964024, 18.367995265616287 ], [ -65.006829647932989, 18.367931060207127 ], [ -65.006875245508127, 18.367859812686277 ], [ -65.006883459777214, 18.367777336029121 ], [ -65.006906593841052, 18.367695024390741 ], [ -65.006891171131826, 18.367612546423857 ], [ -65.006890332941111, 18.367609193660996 ], [ -65.006909946603969, 18.367628808633526 ], [ -65.006937942174034, 18.367711117652561 ], [ -65.006994603866701, 18.367793595619389 ], [ -65.007065682439759, 18.367848748568747 ], [ -65.007122511770547, 18.367917649155629 ], [ -65.007193590343604, 18.367986548432782 ], [ -65.007264501278542, 18.368055446400319 ], [ -65.007335747489719, 18.368110768297527 ], [ -65.007406992391225, 18.368165921246884 ], [ -65.007492489154345, 18.368221240524747 ], [ -65.00756356641773, 18.368276562421954 ], [ -65.007277912330039, 18.368513098533413 ], [ -65.007031484258334, 18.368711583405627 ], [ -65.006777847746491, 18.368860278439342 ], [ -65.006461514568741, 18.368978463330848 ], [ -65.006082484725198, 18.36903579557611 ], [ -65.00548317836035, 18.369031435674685 ], [ -65.005199702258892, 18.368969075594805 ], [ -65.004444660058311, 18.368722478575307 ], [ -65.004161686871214, 18.368599936401722 ], [ -65.003941577988144, 18.368507901751002 ], [ -65.003690456048446, 18.368355352349624 ], [ -65.003439837023166, 18.368142619544869 ], [ -65.003220901607108, 18.367930220706739 ], [ -65.003085786572683, 18.367766439549712 ], [ -65.002687979947325, 18.367504587459109 ], [ -65.002499554673477, 18.367412723065911 ], [ -65.001995466774474, 18.367318678067136 ], [ -65.001585425183919, 18.367315660580516 ], [ -65.001427676380729, 18.367314487113504 ], [ -65.000734326326835, 18.367248940599211 ], [ -65.00010383926724, 18.367184064637456 ], [ -64.999777112524555, 18.367031011011989 ], [ -64.999589022527005, 18.366878963215413 ], [ -64.999433119053094, 18.366666900963253 ], [ -64.999310910846134, 18.366337827286543 ], [ -64.999091304877481, 18.366031886364112 ], [ -64.998966749736496, 18.36582015938825 ], [ -64.998905394175779, 18.3656087689983 ], [ -64.998876057500581, 18.365337530481327 ], [ -64.998846050272789, 18.365156648923971 ], [ -64.998753849293621, 18.364854732626611 ], [ -64.998724680256544, 18.364583326471461 ], [ -64.998695343581346, 18.364312087954488 ], [ -64.998602639687704, 18.364070353750833 ], [ -64.998477749270421, 18.363918808868675 ], [ -64.998289156358453, 18.363827110803868 ], [ -64.99797466720031, 18.363704232044313 ], [ -64.997880286925238, 18.363673386625806 ], [ -64.997691861651333, 18.363581688561055 ], [ -64.997471585130143, 18.36351983008592 ], [ -64.997220630828565, 18.363337104508958 ], [ -64.99715860471531, 18.36321623740713 ], [ -64.9970962433257, 18.363125377533095 ], [ -64.997088699609264, 18.362948520600867 ], [ -64.997010244957835, 18.362737462867869 ], [ -64.9968519945499, 18.362497237407524 ], [ -64.996535158457732, 18.362307973942961 ], [ -64.996347403736479, 18.362125752590089 ], [ -64.996033082216456, 18.361972866602741 ], [ -64.995746253352081, 18.361790977906878 ], [ -64.995526647383429, 18.361712858531746 ], [ -64.995243338920091, 18.361704476624539 ], [ -64.995036305812278, 18.361129645428775 ], [ -64.995116604483258, 18.36109678835254 ], [ -64.995197070792358, 18.361063932585978 ], [ -64.995272507957168, 18.361021518825908 ], [ -64.995357835772438, 18.360998218433565 ], [ -64.995442995949588, 18.360979776928048 ], [ -64.995533186580758, 18.360985141348635 ], [ -64.995618177810059, 18.361004922649613 ], [ -64.995703002710968, 18.36103426063454 ], [ -64.995787827611821, 18.361073151374228 ], [ -64.995877681656964, 18.361092932675263 ], [ -64.995937360836251, 18.361155630650785 ], [ -64.995986814088724, 18.361227713743006 ], [ -64.996071638989577, 18.361257050418203 ], [ -64.996156631528606, 18.361276665390733 ], [ -64.996241456429459, 18.361310863572101 ], [ -64.996321252186021, 18.361344892805675 ], [ -64.996370705438494, 18.361416978517241 ], [ -64.996395683521939, 18.361436255594128 ], [ -64.996455697977524, 18.361436758508603 ], [ -64.996545887298964, 18.361432567554971 ], [ -64.996636076620462, 18.361433239417238 ], [ -64.996720901521314, 18.361457880914713 ], [ -64.996805894060344, 18.361482357393413 ], [ -64.99688568981685, 18.361516386626988 ], [ -64.996965485573412, 18.361555278676406 ], [ -64.997044946053677, 18.361641947596866 ], [ -64.997124741810183, 18.361680839646226 ], [ -64.997174195062712, 18.361752924048176 ], [ -64.997218619170837, 18.361825008450069 ], [ -64.997293385783053, 18.361868594367536 ], [ -64.99735289732422, 18.361931123395266 ], [ -64.99740754735916, 18.361998513929109 ], [ -64.99747208804456, 18.362056349088789 ], [ -64.997536796368138, 18.362114185558141 ], [ -64.997596307909305, 18.362176714585871 ], [ -64.997660848594705, 18.362239409942049 ], [ -64.997740644351268, 18.362278301991466 ], [ -64.997795462024328, 18.362316858764586 ], [ -64.997795126748088, 18.362345692525366 ], [ -64.99784474763868, 18.362417776927259 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_699", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.891322289874722, 18.313236441374897 ], [ -64.891309381737585, 18.31332143391387 ], [ -64.89124148959894, 18.313370048975628 ], [ -64.891174937255812, 18.313426543030175 ], [ -64.891113246418797, 18.313485886933165 ], [ -64.891059434574572, 18.313551601085578 ], [ -64.891005790368524, 18.313618991619478 ], [ -64.890968070476447, 18.3136956022513 ], [ -64.890951306662032, 18.313776906751116 ], [ -64.890924819835277, 18.313856702507678 ], [ -64.890853407295594, 18.313905317569436 ], [ -64.890766401789222, 18.313913867114763 ], [ -64.890686270756362, 18.313879333657098 ], [ -64.890633632379149, 18.313811272570661 ], [ -64.890590884652454, 18.313735500129553 ], [ -64.890520645579784, 18.313661236431756 ], [ -64.890480746391802, 18.313654866182276 ], [ -64.890400112444581, 18.31362335021123 ], [ -64.890323669450879, 18.313580267208238 ], [ -64.890298860315227, 18.313561827012393 ], [ -64.890391899485167, 18.31356853253817 ], [ -64.890473202675366, 18.313598707404083 ], [ -64.890561549286929, 18.313603736548373 ], [ -64.890649894588762, 18.313600216147336 ], [ -64.890736060594804, 18.313586134543243 ], [ -64.890820213633447, 18.313561491736095 ], [ -64.890897831403777, 18.313524108429988 ], [ -64.89097762585061, 18.313488904419728 ], [ -64.891053064325092, 18.313445318502318 ], [ -64.891121794654453, 18.31339519469725 ], [ -64.891192874537182, 18.313347250188087 ], [ -64.891253056630887, 18.313280362568605 ], [ -64.891322289874722, 18.313236441374897 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_121", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.901990277134757, 18.310937619506205 ], [ -64.901986924371897, 18.310852460638728 ], [ -64.90195121744722, 18.31076327583645 ], [ -64.901859184106172, 18.310654311042867 ], [ -64.901803026637594, 18.3105882616141 ], [ -64.901767318403245, 18.310510646463115 ], [ -64.901711159624995, 18.310444429396227 ], [ -64.901626334724142, 18.310428334824735 ], [ -64.901537152541209, 18.31043923261376 ], [ -64.901451991054387, 18.310465550492722 ], [ -64.901370855502364, 18.310495892996755 ], [ -64.901285526377364, 18.310522213495062 ], [ -64.901208412831124, 18.310560266044035 ], [ -64.901139179587346, 18.310609886934685 ], [ -64.901065586442144, 18.310678953850015 ], [ -64.900686890565169, 18.310223145736472 ], [ -64.900789317471151, 18.310125581646332 ], [ -64.900888560562066, 18.310031032423467 ], [ -64.901072123020072, 18.309915697380404 ], [ -64.901320562749447, 18.309845959912479 ], [ -64.90167344104259, 18.309841602630399 ], [ -64.902003520548135, 18.309887366534042 ], [ -64.9021699852251, 18.309970682691642 ], [ -64.902319518449588, 18.310108816522245 ], [ -64.902375844865958, 18.310227336690104 ], [ -64.902442061932845, 18.310385588407712 ], [ -64.902511631762593, 18.310563452478448 ], [ -64.902552870746035, 18.310827313607433 ], [ -64.902594109729421, 18.311077429718296 ], [ -64.901977368997677, 18.311022612045235 ], [ -64.901990277134757, 18.310937619506205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_163", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.923926396210391, 18.327451985728601 ], [ -64.923903597422793, 18.327369675399893 ], [ -64.923849450302271, 18.327302118537546 ], [ -64.923783399563888, 18.327245624482998 ], [ -64.92371751908297, 18.327188961480658 ], [ -64.923659348646993, 18.327125091347796 ], [ -64.923632694182118, 18.327046470367918 ], [ -64.923613917400303, 18.326964158729538 ], [ -64.923626322622965, 18.326882183677128 ], [ -64.923564296509653, 18.326821833945303 ], [ -64.923482321457243, 18.326795179480371 ], [ -64.923412416351198, 18.326746061504195 ], [ -64.92333848923937, 18.326700631567178 ], [ -64.923264559508198, 18.32665520163016 ], [ -64.92317889641663, 18.326632236514115 ], [ -64.923092730410588, 18.326642628769378 ], [ -64.923002876365388, 18.326641959526455 ], [ -64.92291285599174, 18.326641287664188 ], [ -64.922827025262052, 18.3266220105873 ], [ -64.922757120156007, 18.326572892611125 ], [ -64.922695094042695, 18.326512541569628 ], [ -64.922629044613984, 18.32645604751508 ], [ -64.922614124819177, 18.326373738496045 ], [ -64.922599205024312, 18.326287738818507 ], [ -64.922568694882102, 18.326209116528958 ], [ -64.922530138108982, 18.326134183588294 ], [ -64.922487893296704, 18.326059249337902 ], [ -64.922429722860727, 18.325995211566919 ], [ -64.922367695437799, 18.325935029473214 ], [ -64.922297791641427, 18.325882223457825 ], [ -64.922219839904471, 18.325862943761592 ], [ -64.922211960911682, 18.325862777433144 ], [ -64.922126130181994, 18.325839809697754 ], [ -64.922071983061471, 18.325772085197229 ], [ -64.922005933632704, 18.325715591142682 ], [ -64.921920102903016, 18.32569631144645 ], [ -64.921834272173271, 18.325676865421769 ], [ -64.921748441443526, 18.325657588344882 ], [ -64.921705693716831, 18.325604110467282 ], [ -64.921647858557151, 18.32554208435397 ], [ -64.921585832443839, 18.325483915227721 ], [ -64.921538223210973, 18.325414345397917 ], [ -64.921506371963574, 18.325364052645057 ], [ -64.921496481313113, 18.325340918581219 ], [ -64.921462953684284, 18.325263637396802 ], [ -64.921437472686421, 18.325184513502506 ], [ -64.921405789077198, 18.325107398646594 ], [ -64.921380308079335, 18.325028273442626 ], [ -64.921352815423688, 18.324949149548331 ], [ -64.921354994719593, 18.324937750154561 ], [ -64.921357844568035, 18.324843537517609 ], [ -64.921364214817515, 18.324801125067211 ], [ -64.921365555922648, 18.324734405085906 ], [ -64.921416853194728, 18.324667685104544 ], [ -64.921499331161556, 18.324630972351031 ], [ -64.921585497167541, 18.324609347030446 ], [ -64.921671663173584, 18.324587554071741 ], [ -64.921754141140411, 18.324558385034663 ], [ -64.921805438412491, 18.324491497415238 ], [ -64.921813987957819, 18.324405665375821 ], [ -64.921787333492944, 18.324323356356786 ], [ -64.921729330695143, 18.324259486223923 ], [ -64.921651378958188, 18.324221432365221 ], [ -64.921656072826181, 18.324135601635533 ], [ -64.921637297354039, 18.324053291306825 ], [ -64.921614498566498, 18.323970980978117 ], [ -64.921587844101566, 18.323892357378895 ], [ -64.921592370331496, 18.323806527958823 ], [ -64.921597064199489, 18.323720697229135 ], [ -64.921613492737606, 18.323638722176668 ], [ -64.921629753637603, 18.323556579486137 ], [ -64.921603099172671, 18.323477957196587 ], [ -64.921556831044938, 18.32340671098541 ], [ -64.921494804931683, 18.323346528891705 ], [ -64.921465803532726, 18.323277125390405 ], [ -64.921431605351358, 18.323224153046567 ], [ -64.921387684157651, 18.323128096390064 ], [ -64.921371255619533, 18.323032542647979 ], [ -64.921368573409211, 18.322946711918235 ], [ -64.921362370797908, 18.322864401589584 ], [ -64.921363041350503, 18.322778738497959 ], [ -64.921380978631873, 18.322696428169252 ], [ -64.921388689986486, 18.322614117840544 ], [ -64.921423726358626, 18.322538513037614 ], [ -64.921452057204931, 18.322459723109944 ], [ -64.921480388051293, 18.322380765544096 ], [ -64.921529338389348, 18.322312033905064 ], [ -64.921539229039809, 18.322274315322659 ], [ -64.921590191035591, 18.322256210403111 ], [ -64.921633776953058, 18.322181779067193 ], [ -64.921685241863258, 18.322115059085888 ], [ -64.921767719830086, 18.322082034371533 ], [ -64.921815161424831, 18.322011458712893 ], [ -64.921851035987686, 18.321933339337761 ], [ -64.921910212252499, 18.321870307395614 ], [ -64.921980955549259, 18.321822362886451 ], [ -64.922040131814072, 18.321759330944303 ], [ -64.922040467090369, 18.321729491354688 ], [ -64.922068295022314, 18.321673667852735 ], [ -64.922119759932514, 18.32160694787143 ], [ -64.922182791874661, 18.32154760396844 ], [ -64.922222522114794, 18.321473340270643 ], [ -64.922308688120779, 18.32144785927278 ], [ -64.922383453423322, 18.321403602802718 ], [ -64.922469285462739, 18.321415505110963 ], [ -64.922632062100547, 18.321454900074798 ], [ -64.922716719363279, 18.321479542881946 ], [ -64.922772878141529, 18.321540060251948 ], [ -64.922825684156862, 18.321606612595133 ], [ -64.922869102436152, 18.321679032273323 ], [ -64.922909335590759, 18.321754469438133 ], [ -64.92296532542116, 18.321818004294698 ], [ -64.923050486907982, 18.321800569927746 ], [ -64.923051157460577, 18.321716583217608 ], [ -64.92302349716681, 18.321638128566178 ], [ -64.92298007888752, 18.321565708887988 ], [ -64.922899277302122, 18.321454061884083 ], [ -64.922858708871274, 18.32142070189343 ], [ -64.922815290591927, 18.32134828221524 ], [ -64.922775057437377, 18.32127284505043 ], [ -64.922750917544647, 18.321158515836203 ], [ -64.922762987491012, 18.3210914605786 ], [ -64.922785114416342, 18.32107067344873 ], [ -64.92283255732076, 18.321000097790147 ], [ -64.922860552890825, 18.320921978415015 ], [ -64.92286139108154, 18.320836147685327 ], [ -64.922830713301209, 18.3207573577576 ], [ -64.922796347481665, 18.320678735468107 ], [ -64.922839933399132, 18.320604471770309 ], [ -64.922864073291862, 18.320522496717899 ], [ -64.922876478514524, 18.320440354027312 ], [ -64.922881172382517, 18.320354524607239 ], [ -64.92289039248044, 18.320186549877292 ], [ -64.92288335036875, 18.320100719147547 ], [ -64.922876310876347, 18.320014720779682 ], [ -64.922927608148427, 18.319948000798377 ], [ -64.922889219013484, 18.319872898909864 ], [ -64.922870611179462, 18.319839538919211 ], [ -64.924068553356506, 18.319089190586681 ], [ -64.924239710591849, 18.319297398471178 ], [ -64.924346162122959, 18.319426981446838 ], [ -64.924551014625251, 18.319736776736931 ], [ -64.924633326263631, 18.320016900075586 ], [ -64.924674062332599, 18.320347817771847 ], [ -64.924639361236814, 18.320460470604587 ], [ -64.924574317636939, 18.320700863703109 ], [ -64.924446074456796, 18.320940753887157 ], [ -64.924354041115748, 18.321091795854898 ], [ -64.924211716331456, 18.321401758783168 ], [ -64.924074419381839, 18.321644498815658 ], [ -64.923863867182661, 18.321941553606848 ], [ -64.923773676551548, 18.322110197579718 ], [ -64.923646271562063, 18.322259898442269 ], [ -64.923550382543738, 18.322409599304876 ], [ -64.92345415955873, 18.322589642671517 ], [ -64.923389283597032, 18.322800028542247 ], [ -64.92332340049677, 18.323116026443699 ], [ -64.923321893063132, 18.323295231619625 ], [ -64.923298926637415, 18.323624975848873 ], [ -64.923318875576513, 18.3237748443496 ], [ -64.9233924674121, 18.32400266458734 ], [ -64.923472095530485, 18.324156053489105 ], [ -64.92365817517998, 18.324518990070828 ], [ -64.923720032345443, 18.324670032038568 ], [ -64.923986075389621, 18.325149477130424 ], [ -64.924093028525533, 18.325305548242511 ], [ -64.924248930689771, 18.325517610494671 ], [ -64.924373150554459, 18.325729505108654 ], [ -64.924497202781026, 18.325971405640757 ], [ -64.924620753402849, 18.326273489576295 ], [ -64.924713288348642, 18.326515223779893 ], [ -64.924837340575209, 18.326757125621725 ], [ -64.925024592382044, 18.326999699325768 ], [ -64.92533857862577, 18.327152751641563 ], [ -64.925653235422033, 18.327245455535206 ], [ -64.925954985390945, 18.327360790578268 ], [ -64.9261947066272, 18.327434383723471 ], [ -64.92650198865482, 18.327508479783091 ], [ -64.926831731574396, 18.327582743480889 ], [ -64.927161811079884, 18.327621301563681 ], [ -64.927432043768022, 18.327630520351931 ], [ -64.927755082471549, 18.327604368801474 ], [ -64.928108296040932, 18.327585594639004 ], [ -64.92836394421056, 18.327544521984066 ], [ -64.928635350365653, 18.327403370666843 ], [ -64.928718834161373, 18.327317876523068 ], [ -64.9287947742406, 18.327210923387213 ], [ -64.928872223063138, 18.326999699325768 ], [ -64.928874569997163, 18.326728628446915 ], [ -64.92887641401677, 18.326517907299888 ], [ -64.928877922760023, 18.326337193380652 ], [ -64.928912288579568, 18.3260061067366 ], [ -64.928945145655803, 18.32585573663107 ], [ -64.928978505646455, 18.325645183122219 ], [ -64.92901136272269, 18.325494810397402 ], [ -64.929081603104976, 18.325284090560046 ], [ -64.92915117293478, 18.325062305295546 ], [ -64.929244044466543, 18.324740272420911 ], [ -64.929313614296291, 18.324504070276021 ], [ -64.929494998768121, 18.324167620520996 ], [ -64.929592228891636, 18.323963269623505 ], [ -64.929720136795481, 18.32375338535752 ], [ -64.929879895946726, 18.323513664121265 ], [ -64.930103022316416, 18.323244269623842 ], [ -64.930199078972919, 18.323064393895322 ], [ -64.930390354095209, 18.322824838987572 ], [ -64.93056888871854, 18.322620655728201 ], [ -64.930741388368745, 18.322345729172014 ], [ -64.931027881956823, 18.322046662723153 ], [ -64.931250673050215, 18.321807443091643 ], [ -64.93153733427647, 18.32147836941499 ], [ -64.931759956422013, 18.321269324649393 ], [ -64.931957100189038, 18.32106078279827 ], [ -64.932137814108273, 18.320905717515075 ], [ -64.932349204498166, 18.320784347498829 ], [ -64.932616253371236, 18.320703713551552 ], [ -64.932837869687944, 18.320615032973365 ], [ -64.933090332732775, 18.320586869765179 ], [ -64.933469362576375, 18.320529705158094 ], [ -64.933689974373863, 18.320531381539524 ], [ -64.93391025089511, 18.32059340765278 ], [ -64.934193894634745, 18.320692649434022 ], [ -64.93448089244697, 18.320894318121248 ], [ -64.934681553995631, 18.321118115043532 ], [ -64.934937203474931, 18.321428413248043 ], [ -64.933371126624024, 18.322734146751657 ], [ -64.933288482328692, 18.322763818703152 ], [ -64.933212205663494, 18.322805560601012 ], [ -64.933135931617642, 18.322847134860751 ], [ -64.933053284702964, 18.322876806812189 ], [ -64.932977009347439, 18.322918548710049 ], [ -64.932919343135609, 18.322984598138817 ], [ -64.932893359223272, 18.323069087763372 ], [ -64.932892687361004, 18.323153745026104 ], [ -64.932810043065729, 18.323189284312605 ], [ -64.932721193539692, 18.323206886317735 ], [ -64.932669897577341, 18.323278969410012 ], [ -64.932612396384229, 18.323351055121577 ], [ -64.932580043532141, 18.323429509773007 ], [ -64.932547689370324, 18.323507796786203 ], [ -64.932508963649411, 18.323586083799455 ], [ -64.932457666377331, 18.323658335839525 ], [ -64.932400166493949, 18.323724385268292 ], [ -64.932323723500303, 18.323772162139335 ], [ -64.932259853367441, 18.323832176594863 ], [ -64.932214760016336, 18.32392253355448 ], [ -64.932239401513868, 18.324007358455333 ], [ -64.932289526628608, 18.324080281047998 ], [ -64.932333112546019, 18.324153203640606 ], [ -64.932244430658159, 18.324170638007615 ], [ -64.932155751389644, 18.324157897508655 ], [ -64.932067238449633, 18.324151191982878 ], [ -64.931978390233326, 18.324168626349888 ], [ -64.931914520100463, 18.324228639495743 ], [ -64.931875963327343, 18.324306926508996 ], [ -64.931824666055263, 18.324379012220618 ], [ -64.931742020450258, 18.324414719145295 ], [ -64.93165317223395, 18.324432153512248 ], [ -64.931583267127905, 18.324473895410108 ], [ -64.931589468429593, 18.324492167967776 ], [ -64.931601204409333, 18.324582860203691 ], [ -64.931569017885693, 18.324661313545448 ], [ -64.931505146443158, 18.324721329310648 ], [ -64.931422502147825, 18.324756868597149 ], [ -64.931333821569638, 18.324768267990976 ], [ -64.93124497335333, 18.324779667384746 ], [ -64.93115629146547, 18.324788049291953 ], [ -64.931086220030977, 18.324841861136179 ], [ -64.93105386586916, 18.324920314477879 ], [ -64.931065768177405, 18.325005139378788 ], [ -64.93105235712585, 18.325089630313016 ], [ -64.931083370182478, 18.325168420240686 ], [ -64.930994689604347, 18.325179819634513 ], [ -64.930924449222005, 18.325233799116859 ], [ -64.93084817386648, 18.325275539705046 ], [ -64.930740550178029, 18.325274701514331 ], [ -64.930664107184384, 18.325316443412191 ], [ -64.930650863771007, 18.325400934346419 ], [ -64.930707190187377, 18.325467820656229 ], [ -64.930770054491347, 18.325528842250321 ], [ -64.930737700329587, 18.325607295592022 ], [ -64.930680032808027, 18.325673346330404 ], [ -64.930591519868017, 18.325672674468194 ], [ -64.93050300692795, 18.325647696384692 ], [ -64.930414326349819, 18.325653062115009 ], [ -64.930338050994294, 18.325694802703197 ], [ -64.930286753722214, 18.325767054743267 ], [ -64.930229086200654, 18.325833105481649 ], [ -64.930190529427534, 18.325911392494902 ], [ -64.930164377877077, 18.325995880809785 ], [ -64.930170077574019, 18.32608053938219 ], [ -64.930169239383247, 18.326165196644922 ], [ -64.930187511940971, 18.326250021545775 ], [ -64.930218524997599, 18.326328811473445 ], [ -64.930255908303707, 18.32640776772962 ], [ -64.930280383472734, 18.32643693676664 ], [ -64.930282898044879, 18.326487732433975 ], [ -64.930284909702607, 18.326538694429757 ], [ -64.930286250807796, 18.32658948747769 ], [ -64.930286921360334, 18.326640449473473 ], [ -64.930287088998512, 18.326691411469255 ], [ -64.930286753722214, 18.326742373465038 ], [ -64.930285747893379, 18.32679333546082 ], [ -64.930284239150069, 18.326844129818426 ], [ -64.930282059854164, 18.326895091814208 ], [ -64.930279210005722, 18.326945887481543 ], [ -64.930275857242862, 18.326996849477325 ], [ -64.930272001565527, 18.327047642525258 ], [ -64.930267475335654, 18.327098270554416 ], [ -64.930262446191364, 18.327149063602405 ], [ -64.930256746494422, 18.327199691631563 ], [ -64.930250543883119, 18.327250318351048 ], [ -64.930243670719221, 18.327300777432356 ], [ -64.930236294640849, 18.327351236513721 ], [ -64.930228248009939, 18.327401526647236 ], [ -64.930219698464612, 18.327451819400096 ], [ -64.930210646004866, 18.327502109533668 ], [ -64.930200922992469, 18.327552065700559 ], [ -64.930190697065711, 18.327602021867449 ], [ -64.930179800586359, 18.327651978034396 ], [ -64.930168401192532, 18.327701766563166 ], [ -64.930156331246167, 18.327751387453759 ], [ -64.930143758385384, 18.327800840706232 ], [ -64.930130514972006, 18.327850127630256 ], [ -64.930116936282332, 18.327899411934936 ], [ -64.930102687040119, 18.327948529911112 ], [ -64.930087767245311, 18.327997481558839 ], [ -64.930072344536029, 18.328046262949044 ], [ -64.930056418912386, 18.328094710372682 ], [ -64.930039822736092, 18.328143157796319 ], [ -64.930022891283556, 18.328191437581779 ], [ -64.930005121640306, 18.328239549729119 ], [ -64.929987016720759, 18.328287495547954 ], [ -64.929968241248616, 18.328335103471204 ], [ -64.929948962862056, 18.328382545065949 ], [ -64.929929181561079, 18.328429819022517 ], [ -64.929908897345626, 18.328476926650694 ], [ -64.929887942577636, 18.328523864021349 ], [ -64.929866484895228, 18.328570467425379 ], [ -64.929844524298346, 18.328616903191232 ], [ -64.929822060787046, 18.328663003680845 ], [ -64.929798926723151, 18.32870893653228 ], [ -64.929775457383016, 18.328754701745595 ], [ -64.929751317490286, 18.328800131682613 ], [ -64.929726674683138, 18.32884539398151 ], [ -64.929701696599636, 18.32889032100411 ], [ -64.929676047963596, 18.328934912750412 ], [ -64.929649896413139, 18.328979336858595 ], [ -64.929623241948264, 18.329023425690423 ], [ -64.929596084568914, 18.32906717924601 ], [ -64.929568424275203, 18.329110765163477 ], [ -64.929540261066961, 18.329154015804647 ], [ -64.929511594944358, 18.329196931169463 ], [ -64.929482425907281, 18.329239678896215 ], [ -64.929452753955843, 18.329282091346613 ], [ -64.929422579089874, 18.32932400088265 ], [ -64.929392068947664, 18.32936574278051 ], [ -64.929360888252916, 18.329407149402073 ], [ -64.929329372281813, 18.329448220747338 ], [ -64.92929735339635, 18.329488956816306 ], [ -64.929264831596413, 18.329529357609033 ], [ -64.929231974520178, 18.329569423125463 ], [ -64.929198446891348, 18.329608985727418 ], [ -64.929164583986278, 18.329648380691253 ], [ -64.92913038580491, 18.329687440378848 ], [ -64.929095517070948, 18.329725997151968 ], [ -64.929060313060688, 18.329764218648791 ], [ -64.929024773774188, 18.329802104869316 ], [ -64.928988563935093, 18.329839655813601 ], [ -64.928952186457821, 18.329876871481531 ], [ -64.92891513842801, 18.329913584235101 ], [ -64.928877922760023, 18.329949961712316 ], [ -64.928840036539498, 18.329985836275171 ], [ -64.928801982680795, 18.330021543199848 ], [ -64.928763258269555, 18.330056579571931 ], [ -64.928724366220138, 18.330091448305893 ], [ -64.928684971256303, 18.330125814125381 ], [ -64.92864524101617, 18.330159677030451 ], [ -64.92860500786162, 18.330193204659281 ], [ -64.928564439430772, 18.330226229373636 ], [ -64.928523535723627, 18.330258918811751 ], [ -64.928482296740185, 18.330291105335391 ], [ -64.928440554842325, 18.330322956582734 ], [ -64.928398645306345, 18.330354304915659 ], [ -64.92835623285589, 18.330385317972286 ], [ -64.928313485129195, 18.330415660476376 ], [ -64.928270402126202, 18.330445667704168 ], [ -64.928226983846912, 18.330475339655607 ], [ -64.928183230291324, 18.330504508692684 ], [ -64.92813914145944, 18.330533007177166 ], [ -64.928094717351257, 18.330561338023529 ], [ -64.928049957966834, 18.330588998317239 ], [ -64.928004863306114, 18.330616323334709 ], [ -64.92795943336904, 18.330642977799641 ], [ -64.927913835793902, 18.330669296988219 ], [ -64.927867902942467, 18.330695113262436 ], [ -64.927821634814677, 18.330720426622179 ], [ -64.927775031410647, 18.330745237067447 ], [ -64.927728260368497, 18.330769712236474 ], [ -64.927681154050049, 18.330793516852964 ], [ -64.927633712455247, 18.330816986193099 ], [ -64.927586103222382, 18.330839784980697 ], [ -64.927538158713219, 18.330862248491997 ], [ -64.927490046565879, 18.330884041450702 ], [ -64.927441599142242, 18.330905331494989 ], [ -64.927392816442364, 18.330926286262979 ], [ -64.927344033742429, 18.330946570478432 ], [ -64.927294915766254, 18.330966351779409 ], [ -64.927245462513781, 18.33098579780409 ], [ -64.927196010570981, 18.331004573276232 ], [ -64.927146220732538, 18.331022845833957 ], [ -64.927096264565591, 18.331040615477207 ], [ -64.927045973122404, 18.331057714567862 ], [ -64.926995681679216, 18.331074478382277 ], [ -64.926945054959731, 18.331090739282274 ], [ -64.926894260602069, 18.33110632962962 ], [ -64.926843298606286, 18.331121417062604 ], [ -64.926792168972383, 18.331136001581115 ], [ -64.926741040648153, 18.331150083185207 ], [ -64.926689574428281, 18.331163494236762 ], [ -64.926637941879903, 18.331176402373842 ], [ -64.926586310641255, 18.331188807596504 ], [ -64.926534341506908, 18.331200709904692 ], [ -64.92648237368229, 18.331212109298519 ], [ -64.926430239529168, 18.331222838139752 ], [ -64.926377936428253, 18.33123306406651 ], [ -64.926325632017665, 18.33124278707885 ], [ -64.926273162588245, 18.331252007176772 ], [ -64.926220690539481, 18.3312605567221 ], [ -64.926167884524148, 18.33126860335301 ], [ -64.926115247456607, 18.331275979431382 ], [ -64.926062441441218, 18.3312830202334 ], [ -64.926009466478035, 18.33128939048288 ], [ -64.925956492824525, 18.331295090179765 ], [ -64.925903351532895, 18.331300454600409 ], [ -64.925850377879385, 18.331305148468402 ], [ -64.925797236587755, 18.331309339422035 ], [ -64.925743927657948, 18.331312859823072 ], [ -64.925690786366317, 18.331315877309635 ], [ -64.92563747743651, 18.33131839188178 ], [ -64.925584168506703, 18.331320403539507 ], [ -64.925530859576952, 18.331321744644697 ], [ -64.925477550647145, 18.331322415197235 ], [ -64.925424241717337, 18.331322750473532 ], [ -64.925370932787587, 18.331322415197235 ], [ -64.925317457529275, 18.33132157700652 ], [ -64.925264148599524, 18.331320068263267 ], [ -64.925211007307837, 18.331318056605539 ], [ -64.925157698378086, 18.331315542033337 ], [ -64.925104389448279, 18.331312524546775 ], [ -64.925051246846976, 18.331308836507617 ], [ -64.924998105555289, 18.331304645553985 ], [ -64.924944965573332, 18.331299784047815 ], [ -64.924891990610149, 18.331294419627227 ], [ -64.924839018266312, 18.331288552292165 ], [ -64.924786044612802, 18.331282182042685 ], [ -64.924720664426957, 18.331197357141832 ], [ -64.924531737548364, 18.331033239398835 ], [ -64.924432829733746, 18.330908181343432 ], [ -64.924330404137436, 18.330721600089191 ], [ -64.924307605349838, 18.330680361105749 ], [ -64.924301570376656, 18.330668291159384 ], [ -64.924296038317891, 18.330584807363664 ], [ -64.924290506259126, 18.330501155929824 ], [ -64.924291175502049, 18.330417672134104 ], [ -64.924291847364316, 18.330334188338384 ], [ -64.924298888166334, 18.330250704542664 ], [ -64.924293356107626, 18.330167053108823 ], [ -64.924294025350491, 18.330083569313103 ], [ -64.924350854681336, 18.330018358075108 ], [ -64.924307771678286, 18.329946441311336 ], [ -64.924233172704248, 18.329898161525819 ], [ -64.924221439343853, 18.329814510091978 ], [ -64.924240885368533, 18.329731193934435 ], [ -64.924179025583726, 18.329664976867548 ], [ -64.924110798168783, 18.329610829747025 ], [ -64.924061343606638, 18.329538745345076 ], [ -64.924018260603646, 18.329466828581303 ], [ -64.923950033188703, 18.329412681460838 ], [ -64.923875434214608, 18.3293642340372 ], [ -64.923838721461095, 18.329286449938365 ], [ -64.92383318940233, 18.329202966142645 ], [ -64.923815084482783, 18.329119147070685 ], [ -64.923778204091093, 18.32904136297185 ], [ -64.923709975366478, 18.328987215851328 ], [ -64.923629172471408, 18.328950670735935 ], [ -64.923586089468415, 18.328878753972162 ], [ -64.923549210386398, 18.328800969873384 ], [ -64.923499923462373, 18.328728885471435 ], [ -64.92343169604743, 18.328674738350912 ], [ -64.923382241485285, 18.328602653949019 ], [ -64.923339158482293, 18.328530737185247 ], [ -64.9232960754793, 18.328458820421474 ], [ -64.923277970559695, 18.328375168987577 ], [ -64.923234887556703, 18.328303253533477 ], [ -64.923216951585005, 18.328219600789964 ], [ -64.92320504927676, 18.328135949356124 ], [ -64.92323086555092, 18.328052634508197 ], [ -64.923293728545275, 18.327993456933712 ], [ -64.9233691670197, 18.327952385588446 ], [ -64.92343823393503, 18.327899076658639 ], [ -64.923437897349118, 18.327866388530254 ], [ -64.92347762758925, 18.327799499601099 ], [ -64.923559939227573, 18.327770330564022 ], [ -64.923646105233615, 18.327752225644474 ], [ -64.923736294555113, 18.327719368568296 ], [ -64.923803348503043, 18.327663881652256 ], [ -64.92385079140746, 18.327593304684001 ], [ -64.923913823349608, 18.327534128419131 ], [ -64.923926396210391, 18.327451985728601 ] ], [ [ -64.933245399325699, 18.322633396227104 ], [ -64.933188905271152, 18.322560305996319 ], [ -64.933113300468221, 18.322517390631504 ], [ -64.933024787528154, 18.322516720078909 ], [ -64.932967118696979, 18.322582769507619 ], [ -64.932934764535162, 18.322661224159049 ], [ -64.932934095292239, 18.322745881421724 ], [ -64.932882796710544, 18.322817965823674 ], [ -64.932850442548727, 18.322896420475047 ], [ -64.932933089463404, 18.322866748523552 ], [ -64.933003162207569, 18.322812936679327 ], [ -64.933092010423934, 18.322801537285557 ], [ -64.933104583284717, 18.322807739896859 ], [ -64.933174488390762, 18.322765830360879 ], [ -64.933238358523624, 18.322718053489837 ], [ -64.933245399325699, 18.322633396227104 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_531", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.974531650157928, 18.338896472871625 ], [ -64.974587641298001, 18.338758171402844 ], [ -64.974641285504106, 18.338629425308284 ], [ -64.974694762072033, 18.338515096094056 ], [ -64.974717896135871, 18.338443682244701 ], [ -64.974823340528474, 18.338401437432424 ], [ -64.974989134652901, 18.338330861773784 ], [ -64.975205052582339, 18.338310409920211 ], [ -64.975033557451354, 18.338417363056124 ], [ -64.974987961185889, 18.338481568465227 ], [ -64.974949738379394, 18.338567231556851 ], [ -64.974911518192243, 18.338645853846344 ], [ -64.974880505135559, 18.338753142258554 ], [ -64.974842283638736, 18.338846181428437 ], [ -64.974822669975879, 18.338947937781882 ], [ -64.974610606414046, 18.338901166739674 ], [ -64.974531650157928, 18.338896472871625 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_515", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.877671183151847, 18.351555664696491 ], [ -64.877659113205482, 18.351657253411702 ], [ -64.87770303439919, 18.351753814292351 ], [ -64.877701860932177, 18.351892952642174 ], [ -64.877672859533277, 18.352010468290814 ], [ -64.877621897537495, 18.352068806364912 ], [ -64.877514944401639, 18.352126807853097 ], [ -64.877458282708972, 18.352190510347782 ], [ -64.877419558297674, 18.352252705408887 ], [ -64.877411511666764, 18.352258068519802 ], [ -64.876821090123599, 18.352014156329972 ], [ -64.876893342163669, 18.351873506617494 ], [ -64.876939442653281, 18.351727158517804 ], [ -64.876902394623471, 18.351568071228769 ], [ -64.876808852539114, 18.351499842504211 ], [ -64.876654960722931, 18.351510571345386 ], [ -64.876525544075719, 18.351672342154359 ], [ -64.876300742634328, 18.351945758657564 ], [ -64.87597384694385, 18.351525826416491 ], [ -64.876047607727173, 18.351435469456874 ], [ -64.876115333537371, 18.351366402541544 ], [ -64.876161098750686, 18.351270513523218 ], [ -64.876150705185751, 18.351174121590418 ], [ -64.876140311620816, 18.351088458498793 ], [ -64.876152213929061, 18.351008327465991 ], [ -64.876226309988681, 18.350864492628773 ], [ -64.876305770468946, 18.350741950455188 ], [ -64.876423955360451, 18.350689478406423 ], [ -64.876541804975716, 18.350674392283111 ], [ -64.876636855803383, 18.350691156097525 ], [ -64.876732241907291, 18.350670536605833 ], [ -64.876922846477044, 18.35066148414603 ], [ -64.877118983105504, 18.350662991579668 ], [ -64.877314784457667, 18.350685959315058 ], [ -64.877476890542937, 18.350724851364475 ], [ -64.877537240274762, 18.350875055141501 ], [ -64.877569259160282, 18.351051913383401 ], [ -64.877607145380807, 18.351207312633221 ], [ -64.87761636547873, 18.351421386543109 ], [ -64.877671183151847, 18.351555664696491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_195", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 16.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.897979703487351, 18.361863732861366 ], [ -64.897885155574158, 18.361821990963506 ], [ -64.897795301528959, 18.361792655597981 ], [ -64.897705278535966, 18.361777566855324 ], [ -64.897615258162318, 18.361776728664609 ], [ -64.897525067531149, 18.361776059421686 ], [ -64.897419958414901, 18.361775219921299 ], [ -64.897329770403076, 18.361774549368761 ], [ -64.897239581081635, 18.361788128058436 ], [ -64.897149390450465, 18.361801706748054 ], [ -64.89713413537936, 18.361815955990323 ], [ -64.897025004257273, 18.361592160377768 ], [ -64.896821994464915, 18.36140658364269 ], [ -64.896558467302555, 18.361266605792423 ], [ -64.896281696726817, 18.361289739856318 ], [ -64.895966872292377, 18.361468777394066 ], [ -64.895832761777172, 18.361674469396803 ], [ -64.895776267722624, 18.361881502504616 ], [ -64.895797893043209, 18.362063054614566 ], [ -64.895854554735877, 18.362274613952309 ], [ -64.895858410413211, 18.362411909592254 ], [ -64.895811136456587, 18.362534117799214 ], [ -64.895723294069114, 18.362597149741362 ], [ -64.895480218760326, 18.362622630739224 ], [ -64.895354657790449, 18.36264760882267 ], [ -64.895107056251788, 18.362741653821502 ], [ -64.895100350726011, 18.362715166994747 ], [ -64.895059782295164, 18.362635874152602 ], [ -64.894957187751061, 18.362543002620839 ], [ -64.894909578518138, 18.362463542140574 ], [ -64.894869010087291, 18.362384250608159 ], [ -64.894821400854426, 18.362304956456342 ], [ -64.894787705587476, 18.362225663614254 ], [ -64.894733055552535, 18.362159446547366 ], [ -64.894617217594998, 18.362020306887871 ], [ -64.894569608362133, 18.361947551933326 ], [ -64.894494171197323, 18.361900948529296 ], [ -64.894363581083155, 18.361853843520521 ], [ -64.89428244422146, 18.361822661516101 ], [ -64.894316474764707, 18.361734986766749 ], [ -64.894399455645953, 18.361696094717331 ], [ -64.894455111509785, 18.361630715841216 ], [ -64.89450406184784, 18.361558800387115 ], [ -64.894559885349793, 18.361486883623286 ], [ -64.894608668049671, 18.361414797911721 ], [ -64.894671364715521, 18.361349586673725 ], [ -64.894727020579353, 18.361284207797553 ], [ -64.894871524659493, 18.361298458349438 ], [ -64.894968587144831, 18.361246656853268 ], [ -64.895024410646784, 18.361168034563775 ], [ -64.895086939674513, 18.361109362523052 ], [ -64.895163215030038, 18.361063932585978 ], [ -64.895232449583489, 18.361011795813567 ], [ -64.895294978611219, 18.360953122463172 ], [ -64.895364380802846, 18.36090098831005 ], [ -64.895447361684091, 18.360868800476737 ], [ -64.895537383367412, 18.360823370539663 ], [ -64.895627237412612, 18.360791185325695 ], [ -64.895765371243272, 18.3607595004068 ], [ -64.895855225288472, 18.360740389658417 ], [ -64.895938206169717, 18.36070820444445 ], [ -64.896151944803364, 18.36069680374095 ], [ -64.896241631210387, 18.36067769430224 ], [ -64.896331485255587, 18.360658749882305 ], [ -64.896414298498712, 18.360633102555937 ], [ -64.896503984905735, 18.360633771798803 ], [ -64.896593502364965, 18.360634442351397 ], [ -64.89668319008166, 18.360628576326008 ], [ -64.89677287648874, 18.36062924556893 ], [ -64.89686909947369, 18.360649866370295 ], [ -64.896973204070775, 18.360657745363085 ], [ -64.896991979542918, 18.360669981637955 ], [ -64.897072110575778, 18.360705185648158 ], [ -64.89716028823949, 18.360732679613477 ], [ -64.897236395956895, 18.36077559366862 ], [ -64.897300266089758, 18.36083376541427 ], [ -64.897372181543858, 18.360880367508628 ], [ -64.897428006355483, 18.360946081661098 ], [ -64.897495898494128, 18.36100039641974 ], [ -64.897551554357904, 18.361066279520003 ], [ -64.897619615444398, 18.361120592968973 ], [ -64.897626991522714, 18.361125286837023 ], [ -64.897644593527843, 18.361133836382351 ], [ -64.897701087582391, 18.361201394554428 ], [ -64.897744339533176, 18.361273143680023 ], [ -64.897809718409349, 18.361328128991261 ], [ -64.897827320414478, 18.36134086949022 ], [ -64.897826648552211, 18.361412284649248 ], [ -64.897839055084546, 18.361496271359385 ], [ -64.897886161402994, 18.361635074432911 ], [ -64.897916168630786, 18.361715037827651 ], [ -64.897946343496699, 18.361795002532006 ], [ -64.897979703487351, 18.361863732861366 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_174", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.880013926214247, 18.304159675377662 ], [ -64.880040748317299, 18.30451842100581 ], [ -64.880158765570627, 18.304770381136279 ], [ -64.880381724302197, 18.305023179457407 ], [ -64.880627480511578, 18.30524747929411 ], [ -64.880936271282508, 18.305486698925563 ], [ -64.881166772420841, 18.305732288806553 ], [ -64.881442203201118, 18.305992798482293 ], [ -64.881672873287243, 18.306238388363283 ], [ -64.881964394709996, 18.306377025108361 ], [ -64.882323978528859, 18.306473249403041 ], [ -64.882691442650184, 18.306526389384999 ], [ -64.883239116466655, 18.306573832289416 ], [ -64.88360724852123, 18.306548183653376 ], [ -64.883890389346448, 18.306520858635906 ], [ -64.884299761694081, 18.306584393492471 ], [ -64.884567144533776, 18.306670727136634 ], [ -64.884889177408354, 18.306773656957091 ], [ -64.885375998578525, 18.306906594005284 ], [ -64.885622929564647, 18.307009020911266 ], [ -64.885891988785772, 18.307140281577972 ], [ -64.88628124455613, 18.307279756513822 ], [ -64.886654407064668, 18.307540935432485 ], [ -64.886930171811571, 18.30776540421698 ], [ -64.887206104196594, 18.307975622449533 ], [ -64.887489412659932, 18.308214674442866 ], [ -64.887750592888324, 18.308381640724633 ], [ -64.888019652109449, 18.308534526711981 ], [ -64.888235905315184, 18.308693950586928 ], [ -64.888399855420005, 18.308831581503114 ], [ -64.888548718091897, 18.308983295333121 ], [ -64.888711327091585, 18.309271465302686 ], [ -64.888851640218093, 18.309538008641937 ], [ -64.888999497061093, 18.309804554600589 ], [ -64.88908013100837, 18.310027513332102 ], [ -64.889167638119545, 18.3103150114394 ], [ -64.889247935480853, 18.31057384473371 ], [ -64.889339802493453, 18.310781716032295 ], [ -64.889432003472621, 18.311053457463686 ], [ -64.889606347142376, 18.311446736549556 ], [ -64.888915175074658, 18.311460482877351 ], [ -64.888846946350043, 18.311409688519689 ], [ -64.888847616902638, 18.311324695980716 ], [ -64.8889049491479, 18.311259484742664 ], [ -64.88881978897075, 18.311274236899351 ], [ -64.888730605478145, 18.311285133378703 ], [ -64.88864158962366, 18.31128043951071 ], [ -64.888573360899045, 18.311229645153048 ], [ -64.888525247442033, 18.311159740047003 ], [ -64.888489541827084, 18.311082123586345 ], [ -64.888441597317865, 18.3110122184803 ], [ -64.888409243156104, 18.310933597500423 ], [ -64.888381079947919, 18.310862517617693 ], [ -64.888373536231427, 18.310779704374568 ], [ -64.888419469082862, 18.310709296354105 ], [ -64.888349899253114, 18.31065749747728 ], [ -64.88830111655318, 18.310586249956373 ], [ -64.888214615270897, 18.310569821418255 ], [ -64.88813196835622, 18.310600666836763 ], [ -64.888057369382182, 18.310647271550465 ], [ -64.887974725086849, 18.3106781156593 ], [ -64.887888056166389, 18.310689179776773 ], [ -64.887801554884106, 18.310680631541118 ], [ -64.887715053601767, 18.310664201693328 ], [ -64.887628719957604, 18.310647774464883 ], [ -64.887546577267074, 18.310619609947025 ], [ -64.887468625530119, 18.310579544430595 ], [ -64.887390506154986, 18.31054350353935 ], [ -64.887308363464456, 18.310507460028703 ], [ -64.887226220773869, 18.310475273505062 ], [ -64.887148436675034, 18.310431353621027 ], [ -64.887099486337036, 18.310360107409792 ], [ -64.887054894590733, 18.310288859888942 ], [ -64.886972584262026, 18.310260530352252 ], [ -64.886886250617863, 18.310240244827185 ], [ -64.886808298880908, 18.31020420262621 ], [ -64.886730347143953, 18.310168160425235 ], [ -64.886689778713105, 18.310092890898602 ], [ -64.886690449265643, 18.310010246603269 ], [ -64.886699501725445, 18.309927768636442 ], [ -64.886729006038763, 18.309849146346892 ], [ -64.886774938890255, 18.309778738326429 ], [ -64.886779800396425, 18.309696091411752 ], [ -64.886739231965578, 18.309620989523239 ], [ -64.886702854488306, 18.309545887634727 ], [ -64.886649880834796, 18.309478498410499 ], [ -64.886605121450373, 18.309407250889649 ], [ -64.886547956843231, 18.309343883671204 ], [ -64.886494983189721, 18.309276494446976 ], [ -64.886471010935168, 18.309193513565731 ], [ -64.886418037281658, 18.309126289360279 ], [ -64.88635668172094, 18.309066611490721 ], [ -64.88633270946633, 18.308983798247539 ], [ -64.886263139636583, 18.308932164389546 ], [ -64.886180326393458, 18.308958986492598 ], [ -64.88610589505754, 18.309001735528966 ], [ -64.8860193937752, 18.308989161358511 ], [ -64.885933060131038, 18.308968709504938 ], [ -64.885902717627005, 18.308974241563703 ], [ -64.885822418956025, 18.308987989201171 ], [ -64.885746981791215, 18.309030401651569 ], [ -64.885662324528482, 18.308981786589811 ], [ -64.885602812987372, 18.308919257562138 ], [ -64.885528214013277, 18.308861253454609 ], [ -64.885463673327877, 18.308803250656808 ], [ -64.885389074353782, 18.308754972181021 ], [ -64.885334591956962, 18.308687581647121 ], [ -64.885275080415852, 18.308624883671598 ], [ -64.885215568874742, 18.30856218831542 ], [ -64.885161086477922, 18.308494965419641 ], [ -64.885071064794602, 18.308489433360876 ], [ -64.884985736979331, 18.308517427621268 ], [ -64.884900409164004, 18.308540561685163 ], [ -64.884815081348734, 18.30855900319068 ], [ -64.884725059665413, 18.308553471131916 ], [ -64.884640067126384, 18.308533688521266 ], [ -64.884554906949234, 18.308556991532953 ], [ -64.884474440640133, 18.308589679661338 ], [ -64.884389112824806, 18.308612981363353 ], [ -64.884299091141486, 18.308617004678808 ], [ -64.884208901820045, 18.308616335435886 ], [ -64.884124076919136, 18.308586997451016 ], [ -64.884044282472303, 18.308552800579321 ], [ -64.883969683498208, 18.308509213352238 ], [ -64.883910003009248, 18.308446516686388 ], [ -64.883850491468138, 18.308383987658658 ], [ -64.883806234998133, 18.308307043060211 ], [ -64.883751752601313, 18.308239652526368 ], [ -64.883717386781825, 18.308162874256368 ], [ -64.88368302096228, 18.308086094676753 ], [ -64.883648656452465, 18.30800931640681 ], [ -64.883589143601625, 18.30794678737908 ], [ -64.883499121918305, 18.307945950498038 ], [ -64.883414129379332, 18.30792616919706 ], [ -64.883339362767117, 18.30788258327965 ], [ -64.883249508721917, 18.307867494536993 ], [ -64.883169042412817, 18.30790504548122 ], [ -64.883088743741837, 18.307937902557455 ], [ -64.88299855442034, 18.307941927182583 ], [ -64.882913226605069, 18.307960367378428 ], [ -64.882823204921692, 18.30796438938421 ], [ -64.882733015600252, 18.307973275515508 ], [ -64.882652550600824, 18.308006132591743 ], [ -64.882577113436014, 18.308058100416417 ], [ -64.882511399283544, 18.308114928437533 ], [ -64.882478374569189, 18.30811744431935 ], [ -64.882408300515294, 18.308121635272983 ], [ -64.882318112503526, 18.308125826226558 ], [ -64.882228089510534, 18.308129849542013 ], [ -64.882137901498709, 18.308124317483248 ], [ -64.882053076597856, 18.30810453618227 ], [ -64.881963222552656, 18.30807503055928 ], [ -64.881888454630769, 18.308031444641813 ], [ -64.881818886110693, 18.307978303350183 ], [ -64.881768259391208, 18.30804954956136 ], [ -64.881722494177893, 18.308120963410715 ], [ -64.881637166362566, 18.30814409747461 ], [ -64.881542115534955, 18.308148122099738 ], [ -64.881452092541963, 18.30813303335708 ], [ -64.881362072168258, 18.308117947233825 ], [ -64.881277247267406, 18.308098164623118 ], [ -64.8811974515109, 18.308059272573701 ], [ -64.881122852536805, 18.30801568665629 ], [ -64.881073399284332, 18.307943603564013 ], [ -64.880998631362445, 18.307900017646602 ], [ -64.88093409198666, 18.30784201353913 ], [ -64.880869551301203, 18.30778417837945 ], [ -64.88084524246068, 18.30770270755113 ], [ -64.880800818352498, 18.30763062314918 ], [ -64.88074633726535, 18.30756323261528 ], [ -64.880666541508845, 18.307529034433912 ], [ -64.880581381331695, 18.307547474629757 ], [ -64.880491192010197, 18.307551665583389 ], [ -64.880406199471224, 18.307531716644235 ], [ -64.880316513064145, 18.307502379969037 ], [ -64.880231520525172, 18.307482597358387 ], [ -64.880141498841795, 18.307477066609295 ], [ -64.880051477158474, 18.307457116360467 ], [ -64.879966652257622, 18.307437336369162 ], [ -64.879886856501059, 18.307398444319745 ], [ -64.879817285361639, 18.307345303028114 ], [ -64.879757775130201, 18.307282606362264 ], [ -64.879703291423709, 18.307215383466485 ], [ -64.879663897769547, 18.307138437558422 ], [ -64.879649648527334, 18.307052271552379 ], [ -64.879630370140774, 18.306970967052564 ], [ -64.879671273847919, 18.306885136322819 ], [ -64.879687031833441, 18.306799305593074 ], [ -64.879742686387544, 18.306732753249946 ], [ -64.879793314416759, 18.306661507038712 ], [ -64.879814101546572, 18.306580370177016 ], [ -64.879819801243514, 18.306494371809151 ], [ -64.879855508168134, 18.306418096453626 ], [ -64.879926083826774, 18.306366128629008 ], [ -64.879966819895799, 18.306289853273483 ], [ -64.879957598488204, 18.306203854905618 ], [ -64.879923233978332, 18.306127076635676 ], [ -64.879833212295011, 18.306116683070741 ], [ -64.879758444373124, 18.306073097153273 ], [ -64.879678649926234, 18.306038898971906 ], [ -64.879588628242914, 18.306028673045148 ], [ -64.879498606559594, 18.306023140986383 ], [ -64.879408584876273, 18.306027164301838 ], [ -64.879318395554776, 18.306026493749243 ], [ -64.879228373871456, 18.306020960380806 ], [ -64.879163833185999, 18.305963126530798 ], [ -64.879139358016971, 18.30590462081858 ], [ -64.879144554799439, 18.305880648563971 ], [ -64.879125276412879, 18.305794482557985 ], [ -64.879095939737681, 18.305713010419993 ], [ -64.879066603062483, 18.305631370643823 ], [ -64.87901212066572, 18.30556398010998 ], [ -64.878952609124553, 18.30550145108225 ], [ -64.878883039294806, 18.30544830979062 ], [ -64.878823527753696, 18.30538561312477 ], [ -64.878748928779601, 18.305342027207303 ], [ -64.878669133023095, 18.305303135157885 ], [ -64.878609621481928, 18.305240438492035 ], [ -64.878519599798608, 18.305225351059107 ], [ -64.878444162633798, 18.305267763509505 ], [ -64.878358834818528, 18.30529575907957 ], [ -64.878303178954695, 18.305362311422755 ], [ -64.878232603296112, 18.305419140753543 ], [ -64.878157166131302, 18.30546624707199 ], [ -64.878071838315975, 18.305494242642055 ], [ -64.87799707170376, 18.305445795218418 ], [ -64.877922472729722, 18.305397515432958 ], [ -64.877867990332902, 18.305330124899058 ], [ -64.877813507936082, 18.305257872858988 ], [ -64.877774280610424, 18.305181094589045 ], [ -64.87774494393517, 18.305099622451053 ], [ -64.877740752981595, 18.305013456445067 ], [ -64.877771430761925, 18.304927625715322 ], [ -64.877832115770104, 18.304865934878364 ], [ -64.877912414441028, 18.30483324544025 ], [ -64.877992880750185, 18.304800388364015 ], [ -64.878058427264477, 18.304743559033227 ], [ -64.878084243538638, 18.304662422171532 ], [ -64.878129841113832, 18.304586314454127 ], [ -64.8781705771828, 18.304505345230609 ], [ -64.878216342396115, 18.304434099019375 ], [ -64.87826210760943, 18.304362685170076 ], [ -64.878317763473262, 18.304291438958842 ], [ -64.878368390192747, 18.304220192747664 ], [ -64.878424046056523, 18.304153640404479 ], [ -64.878484731064646, 18.304091949567521 ], [ -64.878539716375883, 18.304039981742847 ], [ -64.878549774664521, 18.304033779131544 ], [ -64.878600066107765, 18.303964544578037 ], [ -64.878627223487058, 18.303885587012246 ], [ -64.878664439155045, 18.303806797084576 ], [ -64.878685058646738, 18.303724654393989 ], [ -64.878705678138488, 18.303642511703458 ], [ -64.878719592104403, 18.303560369012871 ], [ -64.878726968182775, 18.303474873559423 ], [ -64.87873115913635, 18.303389378105976 ], [ -64.878731829688945, 18.303300865165966 ], [ -64.878729315116743, 18.303215369712518 ], [ -64.878723447781738, 18.30312970662095 ], [ -64.878704337033298, 18.303047397601915 ], [ -64.878681873521998, 18.302964750687238 ], [ -64.87869260236323, 18.302882607996708 ], [ -64.878693272915825, 18.30279711254326 ], [ -64.878667456641608, 18.302717819701115 ], [ -64.878614985902573, 18.30264774695695 ], [ -64.879460217424594, 18.301680642504209 ], [ -64.879786273614684, 18.301898739729552 ], [ -64.879978051651449, 18.30220015442211 ], [ -64.880016608424569, 18.302392936978038 ], [ -64.880077124484842, 18.302694685637277 ], [ -64.880167650392309, 18.303072206737568 ], [ -64.880118029501659, 18.303436149148183 ], [ -64.880054159368797, 18.303851556468999 ], [ -64.880013926214247, 18.304159675377662 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1032", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.005575546977695, 18.366054015908787 ], [ -65.005580073207625, 18.365968017540922 ], [ -65.005565656327235, 18.365885371935917 ], [ -65.005607565863215, 18.365810436375853 ], [ -65.00563086756523, 18.365728127356817 ], [ -65.005631202841528, 18.365678003551807 ], [ -65.00562768244049, 18.365641961350832 ], [ -65.005636064347698, 18.365593849203492 ], [ -65.005633717413673, 18.365558142278815 ], [ -65.005631705755945, 18.365473652654259 ], [ -65.005653833990948, 18.365389498305944 ], [ -65.005659868964131, 18.365305176319509 ], [ -65.005668586147635, 18.365221021971252 ], [ -65.005682667751728, 18.365136699984816 ], [ -65.005701946138288, 18.365052545636502 ], [ -65.005710663321793, 18.364973252794414 ], [ -65.005694737698093, 18.364968056011946 ], [ -65.005617456513733, 18.364926649390384 ], [ -65.005577558635423, 18.364895636333756 ], [ -65.005567165070545, 18.364854732626611 ], [ -65.005530284678855, 18.364777786718491 ], [ -65.005514861969573, 18.364693297093936 ], [ -65.005496924688202, 18.364608807469381 ], [ -65.00550564187165, 18.364524485482946 ], [ -65.005500948003657, 18.364440163496511 ], [ -65.005514861969573, 18.364369084923453 ], [ -65.005533637441715, 18.364361541206961 ], [ -65.005608906968348, 18.364318793480209 ], [ -65.005676297502248, 18.364265484550458 ], [ -65.005733126833093, 18.364202117332013 ], [ -65.005779227322705, 18.364130871120835 ], [ -65.005827842384463, 18.364059624909601 ], [ -65.00590059733895, 18.364014194972583 ], [ -65.005962623452206, 18.363955856898485 ], [ -65.005976705056298, 18.36387153491205 ], [ -65.006033366748966, 18.363808167693605 ], [ -65.006116682906566, 18.363777992827693 ], [ -65.006191952433198, 18.36373507746282 ], [ -65.006256660756776, 18.363674224816577 ], [ -65.006329415711264, 18.363628794879503 ], [ -65.006417761013154, 18.363624436287807 ], [ -65.006506106315044, 18.363630135984693 ], [ -65.006586069709726, 18.363663998889763 ], [ -65.006647425270444, 18.363687468229955 ], [ -65.006668882952908, 18.363674727730995 ], [ -65.006677097221939, 18.363654443515543 ], [ -65.006669218229149, 18.36363382402385 ], [ -65.006661339236416, 18.363618568952745 ], [ -65.006608197944786, 18.363574647759037 ], [ -65.006528234550046, 18.363538270281765 ], [ -65.006439889248156, 18.363527373802413 ], [ -65.006351711584443, 18.363521674105527 ], [ -65.006266216130996, 18.363503066271505 ], [ -65.006207710418721, 18.363441375434547 ], [ -65.006184241078586, 18.363359400382137 ], [ -65.006150210535338, 18.363282454474017 ], [ -65.006147528325073, 18.363267031764792 ], [ -65.006169656560076, 18.363198132487582 ], [ -65.006194634643521, 18.363145158834072 ], [ -65.006210895543461, 18.363122360046532 ], [ -65.006235705988786, 18.363038205698217 ], [ -65.006276442057811, 18.362964278586389 ], [ -65.006333103750478, 18.362900910058272 ], [ -65.006384568660678, 18.362832178419239 ], [ -65.006417425736913, 18.362753220853392 ], [ -65.006487330842958, 18.362702594133907 ], [ -65.006557403587124, 18.362651967414422 ], [ -65.006635355324079, 18.362609219687727 ], [ -65.006697381437391, 18.362550881613629 ], [ -65.006748846347591, 18.362482149974596 ], [ -65.006816236881491, 18.362429008682909 ], [ -65.006880945205069, 18.362373352819134 ], [ -65.006958896942024, 18.362332952026406 ], [ -65.007044727671712, 18.362305459370816 ], [ -65.007130558401457, 18.362283163497636 ], [ -65.007218903703347, 18.362294059976989 ], [ -65.007304399156794, 18.362315014744979 ], [ -65.007390062248362, 18.362295233444001 ], [ -65.007478575188429, 18.362293389424451 ], [ -65.007561220793377, 18.362324737757376 ], [ -65.007644034036559, 18.362353403879979 ], [ -65.007726679641507, 18.362382070002582 ], [ -65.00779859640528, 18.362428673406612 ], [ -65.00785157005879, 18.362495561026094 ], [ -65.007920804612297, 18.362547193574414 ], [ -65.007994899362245, 18.362590108939287 ], [ -65.008083245973808, 18.362578038992922 ], [ -65.008171758913875, 18.362565969046557 ], [ -65.008260104215708, 18.362566471960974 ], [ -65.008348449517598, 18.362556916586811 ], [ -65.00842640125461, 18.362519198004406 ], [ -65.008456576120523, 18.362440240438559 ], [ -65.00848926555858, 18.362363797444914 ], [ -65.008518602233778, 18.362381902364461 ], [ -65.008571574577616, 18.362448789983887 ], [ -65.008643492651061, 18.362500422532264 ], [ -65.008648857071648, 18.362500422532264 ], [ -65.008715409414833, 18.362546859607846 ], [ -65.008773747488931, 18.362608716773309 ], [ -65.008856393093936, 18.362640065106234 ], [ -65.008939709251536, 18.362609891549994 ], [ -65.009012296567846, 18.362564461612919 ], [ -65.009092930515123, 18.362524227148697 ], [ -65.009178761244868, 18.362504445847719 ], [ -65.009262077402411, 18.362474270981807 ], [ -65.009350255066181, 18.362482652889014 ], [ -65.009433068309306, 18.362508804439472 ], [ -65.009510349493667, 18.362547696488889 ], [ -65.009574219626529, 18.362604358181557 ], [ -65.009646136390302, 18.362650961585587 ], [ -65.009731630534077, 18.362664372637084 ], [ -65.009811595238432, 18.362700750114357 ], [ -65.009861551405379, 18.362721704882347 ], [ -65.009860713214664, 18.362737296539422 ], [ -65.009788627503042, 18.362791609988392 ], [ -65.009759292137517, 18.362873417402682 ], [ -65.009730123100496, 18.362955224816915 ], [ -65.009686369544909, 18.36305061092088 ], [ -65.009657031560039, 18.36313258597329 ], [ -65.009656193369267, 18.363228307353495 ], [ -65.009641273574459, 18.363310282405905 ], [ -65.009626187451204, 18.363392257458372 ], [ -65.009625349260489, 18.363501557528252 ], [ -65.009624511069774, 18.363597446546578 ], [ -65.009609591274909, 18.363679253960868 ], [ -65.009608753084194, 18.36377514297925 ], [ -65.009607913583807, 18.363870864359455 ], [ -65.009607244340941, 18.363966585739661 ], [ -65.009607075393092, 18.363980164429336 ], [ -65.009120086584801, 18.364028276576676 ], [ -65.008772909298216, 18.364055936870443 ], [ -65.008331015150645, 18.364082758973495 ], [ -65.008027590110032, 18.364114442582718 ], [ -65.007540936577982, 18.364257605557668 ], [ -65.00725561645686, 18.364436140181056 ], [ -65.007127540914894, 18.364676198003224 ], [ -65.007053277217096, 18.365355970677172 ], [ -65.007054283045932, 18.365910516347867 ], [ -65.007171294470481, 18.366226515558935 ], [ -65.007240193747634, 18.366333636332968 ], [ -65.007396432497842, 18.366515522409543 ], [ -65.007646716246825, 18.366758262442033 ], [ -65.007810331075405, 18.367073254514651 ], [ -65.007878056885545, 18.367379698351556 ], [ -65.00781452202898, 18.367790410494649 ], [ -65.007702372110657, 18.368028625606939 ], [ -65.00756356641773, 18.368276562421954 ], [ -65.007492489154345, 18.368221240524747 ], [ -65.007406992391225, 18.368165921246884 ], [ -65.007335747489719, 18.368110768297527 ], [ -65.007264501278542, 18.368055446400319 ], [ -65.007193590343604, 18.367986548432782 ], [ -65.007122511770547, 18.367917649155629 ], [ -65.007065682439759, 18.367848748568747 ], [ -65.006994603866701, 18.367793595619389 ], [ -65.006937942174034, 18.367711117652561 ], [ -65.006909946603969, 18.367628808633526 ], [ -65.006890332941111, 18.367609193660996 ], [ -65.006847920490657, 18.367534428358454 ], [ -65.006780697594934, 18.367480113599811 ], [ -65.006732417809474, 18.367408029197861 ], [ -65.006691681740449, 18.367332424394931 ], [ -65.006677432498236, 18.367246258388889 ], [ -65.006640552106546, 18.367170653585958 ], [ -65.006607192115894, 18.367119523952056 ], [ -65.006580872927259, 18.367104939433489 ], [ -65.006498562598608, 18.367079289487833 ], [ -65.006412228954446, 18.367067891403678 ], [ -65.006333774303016, 18.367031346288286 ], [ -65.006262695729959, 18.366980719568801 ], [ -65.00619932851157, 18.366922884409121 ], [ -65.006132273253968, 18.366868569650478 ], [ -65.006057506641696, 18.366821294384181 ], [ -65.005997995100586, 18.366759940133136 ], [ -65.005949715315126, 18.366687854421571 ], [ -65.005905291206943, 18.366615771329293 ], [ -65.005872098854468, 18.366536646125326 ], [ -65.005838906501936, 18.366457520921358 ], [ -65.005802026110246, 18.366382082446933 ], [ -65.00572725949803, 18.366338497839138 ], [ -65.005652492885815, 18.366291223882513 ], [ -65.005615612494125, 18.366215619079583 ], [ -65.00558242014165, 18.366136493875615 ], [ -65.005575546977695, 18.366054015908787 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_351", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.058727055384793, 18.363404495042857 ], [ -65.058726386141871, 18.363477585273642 ], [ -65.05872470976044, 18.363558889773458 ], [ -65.05871968061615, 18.363727869022625 ], [ -65.058716830767708, 18.363810011713213 ], [ -65.058714148557385, 18.363872037826468 ], [ -65.058710963432645, 18.363927526052123 ], [ -65.058707107755311, 18.3639791586005 ], [ -65.058702581525438, 18.364027606024081 ], [ -65.05869738474297, 18.364074209428111 ], [ -65.058691349769788, 18.364118633536293 ], [ -65.05868447660589, 18.364161381262988 ], [ -65.058676932889398, 18.364202620246431 ], [ -65.05867156846881, 18.364227933606173 ], [ -65.058664192390438, 18.364261293596826 ], [ -65.058650278424523, 18.364320134585398 ], [ -65.05863619682043, 18.364374616982161 ], [ -65.05862144335407, 18.364426417168659 ], [ -65.05861390094725, 18.364451395252161 ], [ -65.058606189592638, 18.364475702783011 ], [ -65.058598310599848, 18.364499507399444 ], [ -65.058590263968938, 18.364522809101459 ], [ -65.058582048390235, 18.364545607889056 ], [ -65.05857350015458, 18.364567736124059 ], [ -65.058564782971075, 18.364589529082821 ], [ -65.05855589814945, 18.364610819127108 ], [ -65.058540475440168, 18.364645855499191 ], [ -65.058524214540228, 18.364679718404261 ], [ -65.05850610962068, 18.364714754776344 ], [ -65.058485825405228, 18.364751970444331 ], [ -65.05846436772282, 18.364788850836021 ], [ -65.058442239487817, 18.364825060675116 ], [ -65.05841944070022, 18.364860432323496 ], [ -65.058395971360085, 18.364894965781161 ], [ -65.058372502019893, 18.364927822857396 ], [ -65.05834852976534, 18.364959841742916 ], [ -65.058323886958135, 18.364990687161367 ], [ -65.05829890887469, 18.365020526751039 ], [ -65.058273427876827, 18.365049192873641 ], [ -65.05824761160261, 18.365076853167409 ], [ -65.058221460052152, 18.365103339994164 ], [ -65.058194973225397, 18.365128485715729 ], [ -65.05817368318111, 18.365147596464169 ], [ -65.058152393136822, 18.365165869021837 ], [ -65.058130600178117, 18.365183638665144 ], [ -65.058109813048247, 18.365199731926964 ], [ -65.058089696470972, 18.365214316445474 ], [ -65.058068238788564, 18.365228733325864 ], [ -65.058045440000967, 18.365243317844374 ], [ -65.058021300108237, 18.365258070001062 ], [ -65.058001351169082, 18.365269469394832 ], [ -65.057980396401092, 18.365281204064956 ], [ -65.057957765251672, 18.365293441649442 ], [ -65.057932954806347, 18.365306349786522 ], [ -65.057895906776537, 18.365325292896785 ], [ -65.057804041073609, 18.365371561024574 ], [ -65.057711504818087, 18.365419505533737 ], [ -65.057643108455352, 18.365453871353282 ], [ -65.057582255809109, 18.365483878581017 ], [ -65.057520732610215, 18.365513215256215 ], [ -65.057458706496959, 18.365542049016994 ], [ -65.057396009831109, 18.365570379863357 ], [ -65.057332810250841, 18.365598207795244 ], [ -65.057269107756099, 18.365625532812714 ], [ -65.057204902346939, 18.365652354915767 ], [ -65.057140026385241, 18.365678674104345 ], [ -65.057074815147189, 18.365704490378562 ], [ -65.057009100994776, 18.365729636100127 ], [ -65.056942883927888, 18.365754278907332 ], [ -65.056876331584704, 18.365778251161885 ], [ -65.056809276327101, 18.365801888140197 ], [ -65.056741885793201, 18.365824686927795 ], [ -65.056673992344884, 18.365847150439095 ], [ -65.056605931258446, 18.365868775759679 ], [ -65.056529823541041, 18.365892412737935 ], [ -65.056452374718504, 18.36591554680183 ], [ -65.056377608106288, 18.365937172122415 ], [ -65.056304517875503, 18.365957791614107 ], [ -65.056233104026148, 18.365977070000667 ], [ -65.056162863643863, 18.365995342558392 ], [ -65.056093964366653, 18.366012609287225 ], [ -65.056026070918335, 18.366028702549045 ], [ -65.055959015660733, 18.36604395762015 ], [ -65.055892966232022, 18.366058039224242 ], [ -65.055827922632147, 18.36607128263762 ], [ -65.05576354958481, 18.366083520222105 ], [ -65.055700014728245, 18.366094751977755 ], [ -65.055637318062395, 18.36610497790457 ], [ -65.05557529194914, 18.366114365640613 ], [ -65.055513936388422, 18.36612274754782 ], [ -65.055455599623997, 18.366129955988015 ], [ -65.055396758635425, 18.366136493875615 ], [ -65.05533758106094, 18.366142528848798 ], [ -65.055278069519829, 18.366147893269442 ], [ -65.055218222702422, 18.366152754775612 ], [ -65.055158040608717, 18.366156944419515 ], [ -65.055097524548387, 18.366160466130225 ], [ -65.055037005868712, 18.366163483616788 ], [ -65.054976823775064, 18.366165830550813 ], [ -65.054916641681359, 18.366167506932243 ], [ -65.054861824008242, 18.366168512761135 ], [ -65.054809520907327, 18.366168680399255 ], [ -65.054756045649071, 18.366168345122958 ], [ -65.054701561942579, 18.36616717034633 ], [ -65.054646408993221, 18.366165495274515 ], [ -65.054590251524644, 18.366162979392698 ], [ -65.054534594351196, 18.36615979557763 ], [ -65.054478101606321, 18.366156107538472 ], [ -65.054420432775089, 18.3661515813086 ], [ -65.054361591786574, 18.366146552164253 ], [ -65.054301578640661, 18.366140684829247 ], [ -65.054239886494031, 18.36613414694159 ], [ -65.054176686913706, 18.366126938501395 ], [ -65.054111644623504, 18.366118891870485 ], [ -65.054046767352133, 18.366110509963278 ], [ -65.053979376818234, 18.366101122227235 ], [ -65.053908968797771, 18.366091063938597 ], [ -65.053834706409646, 18.366079832182947 ], [ -65.053757257587108, 18.366067929874703 ], [ -65.053672431376583, 18.366054351185085 ], [ -65.053460370434095, 18.366019482451122 ], [ -65.053394991557923, 18.3660082493858 ], [ -65.053328439214738, 18.365996180749107 ], [ -65.053260713404597, 18.365983272612027 ], [ -65.053191477541418, 18.365969693922352 ], [ -65.053120566606538, 18.365955277041962 ], [ -65.053047980599843, 18.365939854332737 ], [ -65.052973381625748, 18.36592359343274 ], [ -65.052896100441387, 18.365906494342084 ], [ -65.052812784283844, 18.365887383593645 ], [ -65.052725277172669, 18.365866764101952 ], [ -65.052632739607475, 18.365844635866893 ], [ -65.05253282858331, 18.365820328336042 ], [ -65.052416152435114, 18.365791494575262 ], [ -65.052295116385494, 18.365761152071229 ], [ -65.052218170477374, 18.365741370770195 ], [ -65.052140555326389, 18.365720918916622 ], [ -65.052071991325477, 18.365702311082657 ], [ -65.052002755462354, 18.365683200334274 ], [ -65.051933185632549, 18.365663585361744 ], [ -65.051863114198056, 18.365643302455965 ], [ -65.051792538539416, 18.365622515326095 ], [ -65.051721459966359, 18.365601225281807 ], [ -65.051649709531091, 18.365579264684982 ], [ -65.051577291162516, 18.365556801173682 ], [ -65.051504368569908, 18.365533667109787 ], [ -65.051430606476856, 18.365509862493354 ], [ -65.051356176450611, 18.365485554962447 ], [ -65.051280906923921, 18.365460409240882 ], [ -65.051204799206573, 18.365434760604842 ], [ -65.051127853298453, 18.365408441416207 ], [ -65.051049733923378, 18.365381284036914 ], [ -65.050970607409738, 18.365353456105026 ], [ -65.050879581207198, 18.365320934305089 ], [ -65.050786877313556, 18.365287406676259 ], [ -65.05069216045257, 18.365252705580474 ], [ -65.050595434553145, 18.365216831017619 ], [ -65.050496528048143, 18.365179615349689 ], [ -65.050394604056635, 18.365141058576569 ], [ -65.05028949494033, 18.365100825422019 ], [ -65.050180530146747, 18.365058580609684 ], [ -65.049995289997582, 18.364986160931494 ], [ -65.049790603823794, 18.364905024069799 ], [ -65.049580217953064, 18.364821037359661 ], [ -65.049004045652111, 18.364590199635359 ], [ -65.048828193239103, 18.364520294529314 ], [ -65.048670278107409, 18.364457933139761 ], [ -65.04853298246752, 18.364404288933656 ], [ -65.048375905526598, 18.364343436287413 ], [ -65.047836613617335, 18.364136067903246 ], [ -65.047638632969267, 18.36405945727148 ], [ -65.047446352018085, 18.363984523021088 ], [ -65.047273014177222, 18.363916294296473 ], [ -65.047112919749679, 18.36385225652549 ], [ -65.046962045420059, 18.363790900964773 ], [ -65.046818211892514, 18.363731389423663 ], [ -65.046680078061854, 18.363673218987685 ], [ -65.046546638099244, 18.363615886742423 ], [ -65.046417556728386, 18.363559392687932 ], [ -65.046292498672926, 18.363503233909682 ], [ -65.046170625742263, 18.36344741040773 ], [ -65.046058140547643, 18.363394772030517 ], [ -65.045918834559643, 18.363328890239927 ], [ -65.045798636700738, 18.363271725632785 ], [ -65.045684810400928, 18.363216907959725 ], [ -65.045577521988776, 18.36316477249693 ], [ -65.045474256892078, 18.363113978139324 ], [ -65.04537451350609, 18.363064357248675 ], [ -65.04527795262544, 18.363015574548797 ], [ -65.045183238383743, 18.36296712712516 ], [ -65.045091037404575, 18.362919351563789 ], [ -65.045001183359375, 18.362872077607165 ], [ -65.04491333966223, 18.362825306565014 ], [ -65.044827510242214, 18.362778701851312 ], [ -65.044743523532077, 18.362732433723579 ], [ -65.044661213203369, 18.362686334543639 ], [ -65.044580579256092, 18.362640232744354 ], [ -65.044505140781609, 18.362596646826944 ], [ -65.044431212360109, 18.362553060909477 ], [ -65.044292409286527, 18.362469912390054 ], [ -65.044094093362219, 18.362351727498549 ], [ -65.044012284638256, 18.362302609522317 ], [ -65.043936681144999, 18.362256509032761 ], [ -65.043868117144086, 18.362213928944186 ], [ -65.043804414649344, 18.362173529461131 ], [ -65.043744400193816, 18.362134468463921 ], [ -65.043679356593941, 18.362091051494303 ], [ -65.043617833395103, 18.362048470096056 ], [ -65.043559160044708, 18.362006560560019 ], [ -65.043530829198346, 18.361985773430206 ], [ -65.043503167594906, 18.361964987610008 ], [ -65.043451201079961, 18.361924920783906 ], [ -65.043425886410546, 18.361904971844751 ], [ -65.043401243603398, 18.361884856577149 ], [ -65.043353468042028, 18.361844957389224 ], [ -65.043294793381904, 18.361794330669738 ], [ -65.043257914299943, 18.361761808869801 ], [ -65.04322136918455, 18.361728951793566 ], [ -65.043185494621696, 18.361696262355508 ], [ -65.043150122973316, 18.361663237641153 ], [ -65.043115420567858, 18.361630212926741 ], [ -65.043081056057986, 18.361597020574266 ], [ -65.043047528429213, 18.361563829531406 ], [ -65.043014336076681, 18.361530469540753 ], [ -65.042981814276743, 18.361497275878548 ], [ -65.0429499630294, 18.361463749559448 ], [ -65.042918613386803, 18.361430389568795 ], [ -65.042887936916088, 18.361396860630293 ], [ -65.04285792837868, 18.36136333300152 ], [ -65.042828425374978, 18.361329805372691 ], [ -65.042799591614255, 18.361296111415413 ], [ -65.04277125945822, 18.361262414838848 ], [ -65.042743768112302, 18.36122888851969 ], [ -65.04271694600925, 18.361195359581245 ], [ -65.042690625510943, 18.361161831952415 ], [ -65.042664978184575, 18.361128305633315 ], [ -65.042640335377428, 18.361095279609231 ], [ -65.04261116634035, 18.36105504645468 ], [ -65.042583506046583, 18.361016323353113 ], [ -65.04255651630541, 18.360977597632143 ], [ -65.042530029478655, 18.360938874530575 ], [ -65.042504213204495, 18.360900316447783 ], [ -65.04247889853508, 18.360861759674663 ], [ -65.042454257037605, 18.360823370539663 ], [ -65.042430283473323, 18.36078498140472 ], [ -65.04240681544286, 18.360746593579393 ], [ -65.04238401534559, 18.360708370772898 ], [ -65.04236171947241, 18.360670318223868 ], [ -65.042340598375972, 18.360633102555937 ], [ -65.0423201465224, 18.36059605452607 ], [ -65.042300365221422, 18.36055900649626 ], [ -65.042281086834862, 18.360522292433075 ], [ -65.04226231136272, 18.360485413351057 ], [ -65.042244206443172, 18.360448868235665 ], [ -65.042226772076162, 18.3604123218106 ], [ -65.042209840623627, 18.360375776695207 ], [ -65.042193578414015, 18.360339566856112 ], [ -65.042177820428435, 18.360303358326689 ], [ -65.04216273430518, 18.360267314816042 ], [ -65.04214831742479, 18.360231272615067 ], [ -65.042134403458817, 18.360195399361942 ], [ -65.04212116004544, 18.360159692437264 ], [ -65.042108419546537, 18.360124153150764 ], [ -65.042096349600172, 18.360088612554534 ], [ -65.042084447291927, 18.360051398196219 ], [ -65.042073047898157, 18.360014350166409 ], [ -65.042062485385372, 18.359977803741344 ], [ -65.04205209313011, 18.359939751192314 ], [ -65.04203767624972, 18.359885101157374 ], [ -65.042025437355562, 18.359836318457496 ], [ -65.042014877462179, 18.359791056158599 ], [ -65.042005488416407, 18.359748474760352 ], [ -65.041998113647765, 18.359712769145347 ], [ -65.041991743398285, 18.359678234378009 ], [ -65.04198621133952, 18.359644874387357 ], [ -65.041981517471527, 18.359612352587419 ], [ -65.041977494156072, 18.359580670287869 ], [ -65.041974309031332, 18.359549823559746 ], [ -65.04197179445913, 18.359519985279746 ], [ -65.0419701180777, 18.359489475137536 ], [ -65.041968944610687, 18.359461813534097 ], [ -65.041968440386597, 18.359433651635584 ], [ -65.041968440386597, 18.359405153151101 ], [ -65.041968776972567, 18.359376150442529 ], [ -65.041969615163282, 18.359346815077004 ], [ -65.041970956268415, 18.359316975487388 ], [ -65.041972800288022, 18.359286631673626 ], [ -65.041975147222047, 18.359255955202968 ], [ -65.041978163398937, 18.359223264455181 ], [ -65.041981685109647, 18.359189904464529 ], [ -65.041985708425102, 18.359156210507308 ], [ -65.041990233345302, 18.359121843378091 ], [ -65.041994593246727, 18.359092340374445 ], [ -65.041999287114777, 18.359064009528083 ], [ -65.042004483897244, 18.359035174457631 ], [ -65.04201035123225, 18.359005839092106 ], [ -65.042016553843609, 18.358977005331326 ], [ -65.042023259369387, 18.358948002622753 ], [ -65.042030467809582, 18.358918667257228 ], [ -65.042038179164194, 18.358888995305733 ], [ -65.042046393433225, 18.358858820439821 ], [ -65.04205527825485, 18.358828310297611 ], [ -65.042064665990949, 18.358797463569431 ], [ -65.04207455664141, 18.358766116546178 ], [ -65.042085117844522, 18.358734432936956 ], [ -65.042096014323874, 18.358702246413316 ], [ -65.042107748993942, 18.358669389337081 ], [ -65.042119986578427, 18.358636029346428 ], [ -65.042132893405892, 18.358601997493565 ], [ -65.042146473405182, 18.358567130069275 ], [ -65.042160890285572, 18.35853092023018 ], [ -65.042175473494467, 18.3584955485818 ], [ -65.04218704183603, 18.358469397031286 ], [ -65.04219978233499, 18.35844274256641 ], [ -65.042213696300962, 18.358416088101535 ], [ -65.042228782424218, 18.358389098360362 ], [ -65.042245212272007, 18.358361604395043 ], [ -65.042262814277137, 18.35833361013465 ], [ -65.042281925025577, 18.358305111650168 ], [ -65.04230254451727, 18.35827577497497 ], [ -65.042320480489025, 18.358251132167823 ], [ -65.042339760185257, 18.358225483531783 ], [ -65.04236054731507, 18.358198829066907 ], [ -65.042383009516698, 18.358170330582425 ], [ -65.04242626146754, 18.358117524567035 ], [ -65.042534051484438, 18.357987437367285 ], [ -65.042563723435933, 18.35795105989007 ], [ -65.04258970734827, 18.357918035175715 ], [ -65.04261736895171, 18.357881825336619 ], [ -65.042642347035155, 18.357847627155195 ], [ -65.042665313460873, 18.357814770079017 ], [ -65.042686100590743, 18.357782918831617 ], [ -65.042697499984513, 18.35776481391207 ], [ -65.042708227516073, 18.357746876630699 ], [ -65.042718453442831, 18.357729106987392 ], [ -65.042728176455228, 18.357711672620439 ], [ -65.042737230224645, 18.35769423825343 ], [ -65.04274594740815, 18.357676971524597 ], [ -65.04275399403906, 18.357659872433942 ], [ -65.042761705393673, 18.35764277334323 ], [ -65.042768746195748, 18.357625841890695 ], [ -65.042775284083348, 18.35760907807628 ], [ -65.042781485384978, 18.357592314261922 ], [ -65.042787017443743, 18.357575550447507 ], [ -65.04279204658809, 18.357559624823807 ], [ -65.042796574127635, 18.357543699200164 ], [ -65.042805960554006, 18.357505980617759 ], [ -65.042812667389455, 18.357476307356592 ], [ -65.042818702362638, 18.357445798524054 ], [ -65.042824402059523, 18.357414450191129 ], [ -65.042829597532318, 18.357381928391192 ], [ -65.042834460348161, 18.357348568400539 ], [ -65.042838651301793, 18.357314034942874 ], [ -65.042842674617248, 18.357278160380076 ], [ -65.042846195018285, 18.357240944712089 ], [ -65.042849380142968, 18.357202387938969 ], [ -65.042852229991468, 18.357161987146242 ], [ -65.042854912201733, 18.357116724847401 ], [ -65.042855750392448, 18.357091746763899 ], [ -65.042856084359073, 18.357065092299024 ], [ -65.042855581444655, 18.357037934919674 ], [ -65.042854409287315, 18.357010274625964 ], [ -65.042852397629588, 18.356982111417722 ], [ -65.04285021833374, 18.356957636248694 ], [ -65.042847368485241, 18.356932658165249 ], [ -65.042844014412708, 18.356907344805506 ], [ -65.042840160045102, 18.356881193255049 ], [ -65.042835632505501, 18.356854706428294 ], [ -65.04283060336121, 18.356827213772704 ], [ -65.042824904973997, 18.356799050564518 ], [ -65.042818702362638, 18.356769713889321 ], [ -65.042806297139975, 18.356716237321336 ], [ -65.042791208397375, 18.356657061056524 ], [ -65.042775450411796, 18.356597884791711 ], [ -65.042732871632893, 18.356441981317801 ], [ -65.042720800376856, 18.356395713190011 ], [ -65.042710240483473, 18.356353971292151 ], [ -65.042699176365943, 18.356306864973703 ], [ -65.0426897886299, 18.356262608503698 ], [ -65.04268157436087, 18.356220698967718 ], [ -65.04267486752542, 18.356180465813111 ], [ -65.04266900150003, 18.356138556277131 ], [ -65.042664475270158, 18.356097987846283 ], [ -65.042662798888728, 18.356078206545305 ], [ -65.042661456473922, 18.356058592882448 ], [ -65.042660451954703, 18.356039314495888 ], [ -65.042659781402108, 18.356020203747448 ], [ -65.042659612454315, 18.355986005566081 ], [ -65.042661456473922, 18.355862791530285 ], [ -65.042662798888728, 18.355817361593211 ], [ -65.04266514451308, 18.355777798991255 ], [ -65.042666988532631, 18.355756508946968 ], [ -65.042669169138208, 18.355736392369693 ], [ -65.04267168240068, 18.355716946344955 ], [ -65.042674533558795, 18.35569833851099 ], [ -65.042677886321655, 18.35568073650586 ], [ -65.04268140541302, 18.355663805053325 ], [ -65.042685765314445, 18.355646370686372 ], [ -65.042690625510943, 18.355628601043065 ], [ -65.042696157569708, 18.35560982557098 ], [ -65.04270252912886, 18.355591050098838 ], [ -65.042709234654637, 18.355572106988575 ], [ -65.04271660942328, 18.355553163878312 ], [ -65.042724657363863, 18.355534053129873 ], [ -65.04273320690919, 18.355514774743313 ], [ -65.042742259368993, 18.355495496356752 ], [ -65.042751982381333, 18.355476217970192 ], [ -65.042762208308091, 18.355456771945512 ], [ -65.042773103477828, 18.355437158282655 ], [ -65.04278450418127, 18.355417544619797 ], [ -65.042796574127635, 18.35539776331882 ], [ -65.042809146988418, 18.355378149655962 ], [ -65.042822221454003, 18.355358535993105 ], [ -65.04283580145335, 18.355338754692127 ], [ -65.042849883057443, 18.35531914102927 ], [ -65.042864635214073, 18.355299527366412 ], [ -65.042879722647058, 18.355279913703555 ], [ -65.042895480632581, 18.355260300040698 ], [ -65.042911572584728, 18.355240854016017 ], [ -65.042928170070695, 18.355221575629457 ], [ -65.042945269161351, 18.355202297242897 ], [ -65.04296270352836, 18.355183186494457 ], [ -65.042980639500058, 18.355164243384195 ], [ -65.043011318590118, 18.355133062689447 ], [ -65.04304300219934, 18.355102552547237 ], [ -65.043073177065253, 18.355074892253469 ], [ -65.043102512430778, 18.355049578893727 ], [ -65.043133694435198, 18.355024433172105 ], [ -65.043166216235136, 18.354999790364957 ], [ -65.043200079140263, 18.354975650472227 ], [ -65.043235283150466, 18.354952181132035 ], [ -65.043272497508781, 18.354928711791899 ], [ -65.043311055591573, 18.354905913004302 ], [ -65.043350450555408, 18.35488395240742 ], [ -65.043391017676583, 18.354862830001309 ], [ -65.043432425607818, 18.354842713424034 ], [ -65.043474335143799, 18.354823435037474 ], [ -65.043517081560879, 18.354805330117927 ], [ -65.043560164563871, 18.354788063389094 ], [ -65.043599056613289, 18.354773646508704 ], [ -65.043638117610499, 18.35476023545715 ], [ -65.043671308653359, 18.354749841892215 ], [ -65.043705843420696, 18.354740118879874 ], [ -65.043743560693429, 18.354730395867534 ], [ -65.043782955657264, 18.354721511045909 ], [ -65.043824028312201, 18.354713129138702 ], [ -65.043866942367401, 18.354705250145912 ], [ -65.043919748382734, 18.354696868238761 ], [ -65.043976076108834, 18.354689156884092 ], [ -65.044036927445404, 18.354681948443897 ], [ -65.044104988531899, 18.354674907641879 ], [ -65.044152431436316, 18.354670716688247 ], [ -65.044195514439309, 18.354667699201684 ], [ -65.044240272514116, 18.354665687543957 ], [ -65.044285871398927, 18.354664681715064 ], [ -65.044325935605684, 18.354664514076944 ], [ -65.044366671674652, 18.354665352267659 ], [ -65.044407910658094, 18.354666861010969 ], [ -65.044449821503747, 18.354669041616489 ], [ -65.044492401592322, 18.354672057793437 ], [ -65.04453581856194, 18.354675913470714 ], [ -65.044579907393825, 18.354680608648437 ], [ -65.044624666778304, 18.354685971759352 ], [ -65.044670264353442, 18.354692006732535 ], [ -65.044716867757472, 18.354699047534609 ], [ -65.044764478300067, 18.354706758889222 ], [ -65.044813428638122, 18.354715476072727 ], [ -65.044863552443132, 18.354724863808769 ], [ -65.04491535262963, 18.354735257373704 ], [ -65.044968995526062, 18.354746656767531 ], [ -65.045024820337687, 18.354759061990137 ], [ -65.04508349237841, 18.354772473041692 ], [ -65.045145853767963, 18.354787392836499 ], [ -65.045213245611535, 18.354803989012737 ], [ -65.045290022571805, 18.354823435037474 ], [ -65.045492529449746, 18.354875235223972 ], [ -65.0456247959454, 18.354908595214624 ], [ -65.045689168992681, 18.354925023752742 ], [ -65.045780531781134, 18.354949331283592 ], [ -65.045865859596461, 18.354972800623784 ], [ -65.045932411939646, 18.354991911372167 ], [ -65.045996282072508, 18.355011022120607 ], [ -65.046057637633169, 18.35503013286899 ], [ -65.046116981536159, 18.35504941125555 ], [ -65.046175319610256, 18.355069192556584 ], [ -65.046231813664804, 18.355089309133859 ], [ -65.046289984100781, 18.355110934454444 ], [ -65.046332062584611, 18.355127698268802 ], [ -65.046364247798579, 18.355141109320357 ], [ -65.046396435631891, 18.355155190924449 ], [ -65.046428620845859, 18.355170110719257 ], [ -65.046460975007676, 18.355185533428482 ], [ -65.046493330479109, 18.355201626690302 ], [ -65.046525850969374, 18.355218558142838 ], [ -65.046558372769312, 18.355236160147967 ], [ -65.046591063517099, 18.355254432705692 ], [ -65.046623920593277, 18.355273375815955 ], [ -65.046657111636137, 18.355293157116932 ], [ -65.046690303988669, 18.355313608970505 ], [ -65.046724000565291, 18.35533506665297 ], [ -65.046757862160689, 18.355357194887972 ], [ -65.046792227980177, 18.35538016131369 ], [ -65.046826929076019, 18.3554041335683 ], [ -65.046862133086222, 18.355428944013568 ], [ -65.046919632969662, 18.355470685911428 ], [ -65.046979144510772, 18.355515445295907 ], [ -65.047041339571877, 18.355563725081367 ], [ -65.047107556638764, 18.35561619582046 ], [ -65.047165055212474, 18.35566279922449 ], [ -65.04722875770716, 18.355715437601702 ], [ -65.047440317044902, 18.355891960567305 ], [ -65.04751944224887, 18.355957507081598 ], [ -65.047598399814717, 18.356021712490758 ], [ -65.047669981302192, 18.356078709459723 ], [ -65.047708538075312, 18.356108716687515 ], [ -65.04774592138142, 18.356137215171998 ], [ -65.047782298858692, 18.356164540189468 ], [ -65.047818005783313, 18.356190859378046 ], [ -65.047853042155452, 18.356216005099668 ], [ -65.047887575613117, 18.356240312630518 ], [ -65.047921606156308, 18.356263781970711 ], [ -65.047955301423258, 18.356286245482011 ], [ -65.047986649756183, 18.356306864973703 ], [ -65.048017998089108, 18.356326813912858 ], [ -65.048048843507615, 18.356345924661241 ], [ -65.048079688926123, 18.356364532495263 ], [ -65.048110199068333, 18.356382469776634 ], [ -65.048140709210543, 18.356399736505466 ], [ -65.048170884076455, 18.356416332681761 ], [ -65.048201226580545, 18.356432425943581 ], [ -65.04823257491347, 18.356448519205401 ], [ -65.048276328469058, 18.356470312164106 ], [ -65.048322764234911, 18.356492943313526 ], [ -65.048370205829656, 18.356515742101124 ], [ -65.048416641595566, 18.356537535059886 ], [ -65.048464250828431, 18.356559663294888 ], [ -65.048513033528366, 18.356581791529891 ], [ -65.048563157333433, 18.356604255041191 ], [ -65.048646976405394, 18.356641135432824 ], [ -65.048735321707284, 18.356679189291526 ], [ -65.048829366706116, 18.356718751893538 ], [ -65.048931290697624, 18.356760829067639 ], [ -65.049038579109776, 18.356804414985106 ], [ -65.049140167825044, 18.356845151054074 ], [ -65.049238571415572, 18.356883707827194 ], [ -65.049334125157657, 18.356920420580764 ], [ -65.049421632268832, 18.356953445295119 ], [ -65.049507127722279, 18.356984793628044 ], [ -65.049591114432417, 18.357014800855836 ], [ -65.049673424761124, 18.357043634616616 ], [ -65.049754393984699, 18.357071127272206 ], [ -65.049834189741205, 18.357097446460841 ], [ -65.049912812030755, 18.357122592182407 ], [ -65.049990428491412, 18.357146732075137 ], [ -65.050046251993365, 18.357163328251431 ], [ -65.050101404942779, 18.357179589151372 ], [ -65.050150690557075, 18.357193503117344 ], [ -65.050192432454935, 18.357204902511114 ], [ -65.05023652128682, 18.357216301904941 ], [ -65.050282118862015, 18.357227532350862 ], [ -65.050329392818583, 18.357238597778064 ], [ -65.050378510794815, 18.357249661895594 ], [ -65.050422431988522, 18.357259049631637 ], [ -65.050468532478135, 18.357268437367679 ], [ -65.050517147539892, 18.357278160380076 ], [ -65.050569283002687, 18.357288217359041 ], [ -65.050667351316918, 18.357306491226382 ], [ -65.050913610440773, 18.357351082972684 ], [ -65.050983181580193, 18.357364158747941 ], [ -65.051045542969746, 18.357376227384634 ], [ -65.051114106970658, 18.357390310298399 ], [ -65.051178143432026, 18.357404056626194 ], [ -65.051238828440148, 18.357417802953989 ], [ -65.051296664909501, 18.357431884558082 ], [ -65.051331366005286, 18.357440769379707 ], [ -65.051365228910356, 18.357449654201389 ], [ -65.051443180647311, 18.357471447160094 ], [ -65.051533871573554, 18.357497933986849 ], [ -65.051625403309856, 18.357525761918737 ], [ -65.051713580973626, 18.357553422212504 ], [ -65.051802429189934, 18.357582423611404 ], [ -65.051892283235134, 18.357612766115494 ], [ -65.051982975470992, 18.357644448415044 ], [ -65.052038966611121, 18.357664397354142 ], [ -65.052095293027492, 18.357684850517387 ], [ -65.052151953410487, 18.357705805285377 ], [ -65.052209119327301, 18.357727262967842 ], [ -65.052266785539132, 18.357749223564667 ], [ -65.052324957284782, 18.357771687075967 ], [ -65.052383461687384, 18.357794821139862 ], [ -65.052442639261869, 18.357818458118174 ], [ -65.052562668172982, 18.357867240818052 ], [ -65.05268504270839, 18.357918538090132 ], [ -65.052810603678267, 18.357972349934357 ], [ -65.052939349772885, 18.358028843988905 ], [ -65.053067091348282, 18.35808600859599 ], [ -65.05319449633771, 18.358144179031967 ], [ -65.053297761434408, 18.358192457507755 ], [ -65.053402198688445, 18.358242582622495 ], [ -65.053514683883066, 18.35829790321003 ], [ -65.053628845459116, 18.35835556942186 ], [ -65.05374501869295, 18.358415585187117 ], [ -65.053863372532248, 18.35847811421479 ], [ -65.053988261639859, 18.35854533711057 ], [ -65.054116338491554, 18.358615745131033 ], [ -65.054248437349031, 18.35868950460474 ], [ -65.054385228764886, 18.358767457651368 ], [ -65.054534426713019, 18.358853622347681 ], [ -65.054691503653942, 18.358945656998401 ], [ -65.054837182510767, 18.359032158280741 ], [ -65.054975147393577, 18.359115474438283 ], [ -65.055098193791309, 18.359190911603093 ], [ -65.055216713959112, 18.359264672386473 ], [ -65.055331043173339, 18.359337258393111 ], [ -65.055441516710232, 18.359408673552139 ], [ -65.055548972760505, 18.359479415539226 ], [ -65.055653076047918, 18.359549489593121 ], [ -65.055754497125065, 18.359619059422869 ], [ -65.055853068353713, 18.359688292666647 ], [ -65.055939401997875, 18.359750320089631 ], [ -65.056026406194633, 18.359814022584317 ], [ -65.056114416220225, 18.359879735427114 ], [ -65.056203599712831, 18.359947630185104 ], [ -65.056293956672448, 18.360017870567447 ], [ -65.056385822375375, 18.360090456574142 ], [ -65.056479364459733, 18.360165558462654 ], [ -65.056575085839938, 18.360243845475907 ], [ -65.056655719787216, 18.360310565457212 ], [ -65.056738533030341, 18.360379801320335 ], [ -65.056823525569371, 18.360451716774435 ], [ -65.056911535594963, 18.360526987610797 ], [ -65.057000886725689, 18.360604099847365 ], [ -65.057094764086344, 18.36068590857127 ], [ -65.057193670591289, 18.360772408543937 ], [ -65.057311687844674, 18.36087651183135 ], [ -65.057349071150782, 18.36090920257908 ], [ -65.057412773645524, 18.360964018942525 ], [ -65.057561803955537, 18.361091088655655 ], [ -65.057633553081132, 18.361153114768911 ], [ -65.057684515076915, 18.361198041791511 ], [ -65.057730950842824, 18.361240118965668 ], [ -65.057774033845817, 18.361280184482098 ], [ -65.057814602276665, 18.361318908893338 ], [ -65.057852823773487, 18.361356627475743 ], [ -65.057889201250759, 18.361393844453403 ], [ -65.057923567070247, 18.361430389568795 ], [ -65.057956256508362, 18.36146659940789 ], [ -65.057973858513492, 18.361486714675493 ], [ -65.058003698103107, 18.361521415771278 ], [ -65.058053821908175, 18.361581262588686 ], [ -65.058099922397787, 18.361637756643233 ], [ -65.058143675953318, 18.361693078540441 ], [ -65.05818491493676, 18.361746890384666 ], [ -65.058224309900595, 18.361799862728503 ], [ -65.058261693206703, 18.361852165829418 ], [ -65.058297064855083, 18.361903798377796 ], [ -65.058327239721052, 18.361949563591054 ], [ -65.058356073481775, 18.361994993528128 ], [ -65.058383566137422, 18.362039920550671 ], [ -65.058409550049703, 18.362084513606646 ], [ -65.05843402521873, 18.362128936405156 ], [ -65.058457326920745, 18.362172857598864 ], [ -65.058479119879507, 18.362216612464124 ], [ -65.0584997393712, 18.362260029433742 ], [ -65.058518682481463, 18.362303112436791 ], [ -65.05853661976289, 18.362346195439784 ], [ -65.058554723372765, 18.362392798843814 ], [ -65.05857215904939, 18.362440240438559 ], [ -65.058588419949388, 18.362488352585899 ], [ -65.05860417793491, 18.362537302923954 ], [ -65.058618930091598, 18.362587259090844 ], [ -65.058633010386018, 18.362638053448507 ], [ -65.058641393602898, 18.362670073643642 ], [ -65.058649440233808, 18.362702426495787 ], [ -65.05865715158842, 18.362735115933845 ], [ -65.058664526357063, 18.362768140648257 ], [ -65.05867156846881, 18.362801333000732 ], [ -65.058678273994587, 18.362834692991385 ], [ -65.058684644244011, 18.362868220620214 ], [ -65.058690679217193, 18.362902083525285 ], [ -65.05869570836154, 18.362932090753077 ], [ -65.058699899315116, 18.362958745217952 ], [ -65.05870375499245, 18.362986740788017 ], [ -65.058707443031608, 18.363015240582172 ], [ -65.058710795794525, 18.363044409619192 ], [ -65.058713645642968, 18.363074080261015 ], [ -65.05871649549141, 18.363104255126927 ], [ -65.058718842425435, 18.363135100545435 ], [ -65.058720854083163, 18.363165945963942 ], [ -65.058722530464593, 18.363197461935044 ], [ -65.058725211365186, 18.36326267317304 ], [ -65.058726721418168, 18.363331404812072 ], [ -65.058727055384793, 18.363404495042857 ] ], [ [ -65.051112764555853, 18.363838174921398 ], [ -65.051117124457278, 18.363863655919261 ], [ -65.051170601025206, 18.363905230179 ], [ -65.051292306317748, 18.363941775294393 ], [ -65.051374951922753, 18.363978823324203 ], [ -65.051449886173089, 18.364041017075635 ], [ -65.051492466261664, 18.364071527217845 ], [ -65.051557508551866, 18.364072700684858 ], [ -65.051644011143821, 18.364052751745703 ], [ -65.051730680064281, 18.363991563823163 ], [ -65.051786168289937, 18.363786039458603 ], [ -65.051776445277596, 18.363662490146453 ], [ -65.051744594030254, 18.363590238106383 ], [ -65.051658929629014, 18.363517483151895 ], [ -65.051606292561473, 18.363362585506877 ], [ -65.051575279504789, 18.36318740364635 ], [ -65.051608807133618, 18.363043570118805 ], [ -65.051610148238751, 18.362878781823269 ], [ -65.051643508229404, 18.362734949605397 ], [ -65.051773426481361, 18.362674095649425 ], [ -65.051838805357477, 18.362581894670257 ], [ -65.051964701603652, 18.362522215490969 ], [ -65.052087246396582, 18.362542499706421 ], [ -65.052151450496069, 18.362604693457854 ], [ -65.052247676100421, 18.362708293830849 ], [ -65.052376422194982, 18.362781384061634 ], [ -65.052430400367655, 18.362771493411117 ], [ -65.052527965767467, 18.362710305488577 ], [ -65.05261413177351, 18.362731595532864 ], [ -65.052721252547542, 18.362814744052287 ], [ -65.052828877545664, 18.362846427661452 ], [ -65.05303373135763, 18.362837542839827 ], [ -65.053217461453755, 18.362787419034817 ], [ -65.053261216319015, 18.362705277653902 ], [ -65.053349057396815, 18.362510313182781 ], [ -65.05352172468514, 18.362491034796221 ], [ -65.053615434407618, 18.362495225749797 ], [ -65.05374820381769, 18.362482317612717 ], [ -65.053877620464846, 18.362483323441552 ], [ -65.053996309580441, 18.362473768067389 ], [ -65.054157911441621, 18.362485335099279 ], [ -65.054221613936306, 18.362518695089932 ], [ -65.054297721653711, 18.362548031765186 ], [ -65.054318342455076, 18.362651130533379 ], [ -65.054339129584946, 18.362754226682284 ], [ -65.054381876001969, 18.362806026868782 ], [ -65.054406855395086, 18.36286436494288 ], [ -65.054421607551774, 18.362920858997427 ], [ -65.054430993978201, 18.362983388025157 ], [ -65.054427305938987, 18.363030326705427 ], [ -65.054379530377616, 18.36311498396816 ], [ -65.054325381947478, 18.36314549411037 ], [ -65.054209376351821, 18.363090341161012 ], [ -65.054164450638893, 18.36310056708777 ], [ -65.054165287519936, 18.363144320643357 ], [ -65.054206192536753, 18.363212381729852 ], [ -65.054281125477416, 18.363268708146222 ], [ -65.054302081555136, 18.363361412039865 ], [ -65.054326724362284, 18.363445063473705 ], [ -65.054397801625669, 18.36351664496118 ], [ -65.054431330564114, 18.363643044121773 ], [ -65.054489834966716, 18.363694509031973 ], [ -65.054578850821201, 18.363778663380288 ], [ -65.054582538860359, 18.363863153004843 ], [ -65.054653114518999, 18.3639117680666 ], [ -65.054785045738299, 18.363956527451023 ], [ -65.05501973913988, 18.363974129456153 ], [ -65.055149323425212, 18.363944122228418 ], [ -65.055268012540864, 18.363924340927383 ], [ -65.055419388475173, 18.36388427541101 ], [ -65.05553841155745, 18.363833648691468 ], [ -65.055549978589397, 18.363730886509245 ], [ -65.055550481503815, 18.363658802107295 ], [ -65.055518965532713, 18.363555537010598 ], [ -65.05553053256466, 18.363463000755132 ], [ -65.055563558588688, 18.36337046449961 ], [ -65.0556076461109, 18.363247250463758 ], [ -65.055715437437527, 18.36324808865453 ], [ -65.05582272584968, 18.363320843609017 ], [ -65.055853738906308, 18.363485799542673 ], [ -65.055895816080465, 18.363620077696055 ], [ -65.055905539092805, 18.363754020573083 ], [ -65.05588559015365, 18.363820405278148 ], [ -65.055926326222675, 18.36385711803166 ], [ -65.056120115917111, 18.363899698120235 ], [ -65.056271157884851, 18.363900703949071 ], [ -65.056422199852591, 18.363870864359455 ], [ -65.056541558211109, 18.363789392221463 ], [ -65.056582126642013, 18.363764917052436 ], [ -65.056639458887219, 18.363687132953658 ], [ -65.056694108922159, 18.363594931974433 ], [ -65.056726965998394, 18.363512789283902 ], [ -65.056749429509694, 18.363409859463445 ], [ -65.056857723750738, 18.363338613252267 ], [ -65.056987475674191, 18.363298380097717 ], [ -65.057009100994776, 18.363261834982325 ], [ -65.056998875067961, 18.36321606976901 ], [ -65.056952774578349, 18.363203999822645 ], [ -65.056789997940541, 18.363194444448425 ], [ -65.056688409225274, 18.363186397817515 ], [ -65.056585982319291, 18.363135603459853 ], [ -65.056513059726683, 18.363108948994977 ], [ -65.056439634219601, 18.362993781590035 ], [ -65.056369393837258, 18.362885654987167 ], [ -65.056247856182836, 18.362747353518387 ], [ -65.056151296611915, 18.362674598563899 ], [ -65.056034117549245, 18.362488521533692 ], [ -65.055905539092805, 18.362384584574784 ], [ -65.05579858595695, 18.362291210128546 ], [ -65.055690963578172, 18.362249132954389 ], [ -65.055529862012122, 18.362175875085484 ], [ -65.05533657654172, 18.362071605469566 ], [ -65.055164913772614, 18.361957108617219 ], [ -65.055036167677997, 18.361873792459676 ], [ -65.054853777377332, 18.361769521534086 ], [ -65.054735592485827, 18.361717218433171 ], [ -65.054606678753089, 18.361654520457648 ], [ -65.054371148470466, 18.361436590870426 ], [ -65.054328902348459, 18.36132309984697 ], [ -65.054243240566564, 18.361240118965668 ], [ -65.054092029651031, 18.361280184482098 ], [ -65.053962614313491, 18.361279178653206 ], [ -65.053811907622048, 18.361236933840928 ], [ -65.053693890368663, 18.361164012557992 ], [ -65.053651645556386, 18.361060747461238 ], [ -65.053566988293653, 18.360854217267843 ], [ -65.053416784516628, 18.360760507545365 ], [ -65.053277140633043, 18.36068741731458 ], [ -65.053148228209977, 18.360634946575487 ], [ -65.053095422194588, 18.360490442495404 ], [ -65.053096594351928, 18.360346272381889 ], [ -65.05308704028738, 18.36018148539597 ], [ -65.052990814683085, 18.360088109640117 ], [ -65.052915546466068, 18.360046367742257 ], [ -65.052711195568577, 18.359983169471661 ], [ -65.052614803635777, 18.359900188590359 ], [ -65.052518579341097, 18.359796420579244 ], [ -65.052401063692457, 18.359661807149564 ], [ -65.05230467306933, 18.359578658630141 ], [ -65.052207778222112, 18.359557368585854 ], [ -65.052057071530669, 18.359535743265269 ], [ -65.051906197201049, 18.359514116635069 ], [ -65.051777114520519, 18.359472039460911 ], [ -65.051648537373751, 18.359368105121291 ], [ -65.051606123613624, 18.359295685443101 ], [ -65.051541750566344, 18.359254111183361 ], [ -65.051337064392499, 18.359211363456666 ], [ -65.051165068966441, 18.359158725079453 ], [ -65.051035652319285, 18.359147493323803 ], [ -65.050970607409738, 18.359208681246344 ], [ -65.050926184611228, 18.359362908338824 ], [ -65.050892489344278, 18.359537587284876 ], [ -65.050934063604018, 18.359733556275216 ], [ -65.051019056142991, 18.359899015123347 ], [ -65.051071862158381, 18.360033125638552 ], [ -65.051156687059233, 18.360219036340254 ], [ -65.05112315943046, 18.360373263432734 ], [ -65.051056773415723, 18.360568394232359 ], [ -65.050893159896873, 18.360824711644852 ], [ -65.050805485147578, 18.36099905662428 ], [ -65.050717978036403, 18.361152948440463 ], [ -65.05061890389328, 18.361409602438926 ], [ -65.05050943618528, 18.361604396652581 ], [ -65.050390077826705, 18.361706489591938 ], [ -65.05026686379091, 18.361783601828506 ], [ -65.050108781021095, 18.361817800009874 ], [ -65.049979196735762, 18.361847639599546 ], [ -65.04984944481231, 18.361887872754096 ], [ -65.049752047050674, 18.361938668421374 ], [ -65.049729415901254, 18.362072442350609 ], [ -65.049706617113657, 18.362226669443089 ], [ -65.049716843040414, 18.362309147409974 ], [ -65.04975942312899, 18.362371173523229 ], [ -65.049887331032892, 18.362557419501229 ], [ -65.049983555327515, 18.362671413439159 ], [ -65.05004709018408, 18.362816085157419 ], [ -65.05010006383759, 18.362929743819052 ], [ -65.05019645577039, 18.363012724700354 ], [ -65.050282789414553, 18.363013395252892 ], [ -65.050433328467875, 18.36305564006517 ], [ -65.050616220373286, 18.36310844608056 ], [ -65.05077145460433, 18.363198132487582 ], [ -65.050863655583555, 18.36327390492869 ], [ -65.050990725296685, 18.36338655776143 ], [ -65.051053254324415, 18.36349552255507 ], [ -65.051070856329488, 18.36361152815067 ], [ -65.051149310980918, 18.363648576180537 ], [ -65.051226592165278, 18.36369182682165 ], [ -65.051268669339436, 18.363745471027755 ], [ -65.051257437583786, 18.363800623977113 ], [ -65.051221060106514, 18.363832810500753 ], [ -65.051139085054103, 18.363827948994583 ], [ -65.051112764555853, 18.363838174921398 ] ], [ [ -65.046353855543316, 18.357181097894681 ], [ -65.046343963583126, 18.357142038207144 ], [ -65.046334240570786, 18.357073641844352 ], [ -65.046314291631631, 18.357024691506297 ], [ -65.046283278575004, 18.356959647906422 ], [ -65.046254109537983, 18.356878008130309 ], [ -65.046213708745256, 18.356819167141794 ], [ -65.046173307952529, 18.356770049165561 ], [ -65.046132571883561, 18.356750267864584 ], [ -65.046071217632516, 18.356759487962506 ], [ -65.045918331645225, 18.356699976421396 ], [ -65.045856974774836, 18.356709196519319 ], [ -65.045805677502756, 18.356728307267701 ], [ -65.045723702450346, 18.356766864040821 ], [ -65.04562161082066, 18.356756302837766 ], [ -65.045529746427405, 18.356745909272831 ], [ -65.045417427561233, 18.356735348069776 ], [ -65.045346181350055, 18.356695785467821 ], [ -65.045254650923425, 18.356646332215291 ], [ -65.045173178785433, 18.356616492625676 ], [ -65.045081480720683, 18.356576762385544 ], [ -65.04500017753054, 18.356527476771191 ], [ -65.04492909764781, 18.356458577494038 ], [ -65.044888696855082, 18.356409459517863 ], [ -65.044848297372027, 18.356350618529291 ], [ -65.044828682399555, 18.356243162479018 ], [ -65.044819128335007, 18.356165043103886 ], [ -65.044809405322667, 18.356096814379271 ], [ -65.044830526419105, 18.356018862642316 ], [ -65.04481040984183, 18.355969912304261 ], [ -65.044759447846047, 18.355959854015623 ], [ -65.044677809379607, 18.355949460450688 ], [ -65.044596337241614, 18.355919620861073 ], [ -65.044545375245832, 18.355889948909578 ], [ -65.044514697465502, 18.355889781271458 ], [ -65.044463735469719, 18.355889278356983 ], [ -65.044412604526144, 18.355898666093083 ], [ -65.044361308563737, 18.355917944479643 ], [ -65.044299785364899, 18.355946778240423 ], [ -65.044273129590295, 18.355986676118675 ], [ -65.044247985178401, 18.356034117713421 ], [ -65.044278158734642, 18.356092958701993 ], [ -65.044308333600554, 18.356151632052388 ], [ -65.044358961629712, 18.356220363691421 ], [ -65.044368684642052, 18.356278869403639 ], [ -65.044418639499327, 18.356415829767286 ], [ -65.044448646727062, 18.356494116780539 ], [ -65.044498604203682, 18.356631077144186 ], [ -65.044508327216022, 18.356699473506978 ], [ -65.044538500772262, 18.356768037507834 ], [ -65.044537496253099, 18.356885048932384 ], [ -65.044567503480835, 18.356973058957976 ], [ -65.044566831618624, 18.357051178333052 ], [ -65.044566162375702, 18.357129130070007 ], [ -65.044503799676477, 18.357265252242939 ], [ -65.044462225416737, 18.357352759354114 ], [ -65.044420986433295, 18.357401206777752 ], [ -65.044400368251274, 18.357440098827169 ], [ -65.044358792681919, 18.357508159913607 ], [ -65.044338005552049, 18.357566497987705 ], [ -65.044306658528797, 18.357654171427384 ], [ -65.044285368484509, 18.357761293511032 ], [ -65.044254186480032, 18.357829354597527 ], [ -65.044233231712042, 18.357887691361952 ], [ -65.044222670508987, 18.357926752359162 ], [ -65.044202052326909, 18.35796564440858 ], [ -65.044180762282622, 18.358072765182612 ], [ -65.044159638566839, 18.358160439931908 ], [ -65.044148408120861, 18.358267559396268 ], [ -65.044117227426057, 18.358345512442895 ], [ -65.044086380697877, 18.358374512532123 ], [ -65.044034917097349, 18.358413238253092 ], [ -65.043973392588839, 18.358451795026212 ], [ -65.043912876528509, 18.35850225410752 ], [ -65.043832410219409, 18.358519017921935 ], [ -65.043757643607194, 18.358503427574533 ], [ -65.043686731362584, 18.358522203046675 ], [ -65.043645158412573, 18.358595628553758 ], [ -65.043634597209518, 18.358654134265976 ], [ -65.043623533091989, 18.358761421368513 ], [ -65.043561339340556, 18.358858485163523 ], [ -65.043561004064259, 18.358916989566126 ], [ -65.043540049296269, 18.358965773575676 ], [ -65.043519262166399, 18.359014388637434 ], [ -65.043549603360816, 18.359053614653476 ], [ -65.043600399028094, 18.359083120276523 ], [ -65.043661754588811, 18.359093346203281 ], [ -65.043733168438166, 18.359093849117698 ], [ -65.043794021084409, 18.359152856434719 ], [ -65.043803407510836, 18.359270035497389 ], [ -65.043823525397784, 18.359299541120379 ], [ -65.043843474336938, 18.359367937483171 ], [ -65.043873481564674, 18.359446224496423 ], [ -65.043883035629221, 18.359534065574167 ], [ -65.043922933507474, 18.359651413584629 ], [ -65.043973392588839, 18.359729868236059 ], [ -65.044155616561056, 18.359945786165497 ], [ -65.044287715418534, 18.360044357394202 ], [ -65.044369018608677, 18.360093641698882 ], [ -65.044501286413947, 18.360162877562004 ], [ -65.044653669486877, 18.360271339441169 ], [ -65.044704296206362, 18.360320457417345 ], [ -65.044846788628774, 18.360389859608972 ], [ -65.044969164473855, 18.360420034474885 ], [ -65.04506119650523, 18.360420703717807 ], [ -65.045153229846335, 18.360401760607544 ], [ -65.045256494943033, 18.360275696723249 ], [ -65.045387587971618, 18.36015063866779 ], [ -65.045479788950843, 18.36008308049577 ], [ -65.045585903895983, 18.359965901433156 ], [ -65.045668549500988, 18.359849394232697 ], [ -65.045751196415608, 18.359732884412949 ], [ -65.045792435399051, 18.359684438299041 ], [ -65.045926041690166, 18.359587877418392 ], [ -65.046038694522906, 18.359559380243581 ], [ -65.046089825466538, 18.359549992507539 ], [ -65.046201974075188, 18.359589890385791 ], [ -65.046303730428576, 18.359639343638264 ], [ -65.046344298859424, 18.359669015589759 ], [ -65.046425603359296, 18.359737747228792 ], [ -65.046466004151966, 18.359786865205024 ], [ -65.046506572582814, 18.359835983181199 ], [ -65.046536747448727, 18.359884933519254 ], [ -65.046556864026002, 18.359933882547637 ], [ -65.046587038891971, 18.359982834195364 ], [ -65.046617213757884, 18.360051398196219 ], [ -65.046637162696982, 18.360110071546615 ], [ -65.046677395851589, 18.360188358559867 ], [ -65.046686952535424, 18.36026664557312 ], [ -65.046675887108279, 18.360393378700337 ], [ -65.046651411939251, 18.360492117567162 ], [ -65.046633474657824, 18.360578452520997 ], [ -65.046591732759964, 18.36068540434718 ], [ -65.046581003918789, 18.360753634381467 ], [ -65.046539429659049, 18.360850864504982 ], [ -65.046538759106454, 18.360919091919925 ], [ -65.046528031574951, 18.36098732064454 ], [ -65.046537920915739, 18.361036272292267 ], [ -65.046578321708466, 18.36108538895877 ], [ -65.046619057777434, 18.36111489458176 ], [ -65.046669852135096, 18.361134843520915 ], [ -65.046700697553604, 18.361115397496235 ], [ -65.046741768898869, 18.361086562425783 ], [ -65.046803292097707, 18.361057728665003 ], [ -65.046885267150117, 18.36103878555474 ], [ -65.046926170857262, 18.361029231490193 ], [ -65.047059107905454, 18.361020514306688 ], [ -65.047191878625199, 18.361031241838248 ], [ -65.047273517091639, 18.361041635403183 ], [ -65.047314253160607, 18.36106141670416 ], [ -65.047375105806907, 18.361110534680336 ], [ -65.047466636233537, 18.361179601595666 ], [ -65.04749681109945, 18.361238274946061 ], [ -65.047557663745692, 18.361277837548073 ], [ -65.047588006249782, 18.361326787886128 ], [ -65.047618348753815, 18.361375739533855 ], [ -65.047699653253687, 18.361425191476656 ], [ -65.047789674937007, 18.361458886743605 ], [ -65.047873158732727, 18.361445978606525 ], [ -65.0479450754965, 18.361397698821008 ], [ -65.04802721818703, 18.36133969733288 ], [ -65.048058231243715, 18.36129108096145 ], [ -65.048048508231318, 18.361242299571245 ], [ -65.048059572348848, 18.361156467531828 ], [ -65.048050016974628, 18.361047167461948 ], [ -65.048037444113845, 18.360939377444993 ], [ -65.048045826021053, 18.360843488426667 ], [ -65.04808656209002, 18.360775090754203 ], [ -65.048124113034305, 18.36072580644958 ], [ -65.04818597150944, 18.360648188679193 ], [ -65.04826794656185, 18.36061952255659 ], [ -65.048329637398808, 18.360571076442625 ], [ -65.048411780089396, 18.360532687307682 ], [ -65.048493587503685, 18.360513744197419 ], [ -65.048585620844733, 18.360514413440285 ], [ -65.048718054978451, 18.360554480266387 ], [ -65.048799862392741, 18.360554981871132 ], [ -65.048963141945023, 18.360565878350485 ], [ -65.049044949359256, 18.360566550212752 ], [ -65.049147040988942, 18.360567219455675 ], [ -65.049249132618684, 18.36057778065873 ], [ -65.049310655817521, 18.360568394232359 ], [ -65.049402689158569, 18.360559340462885 ], [ -65.049484496572859, 18.360550120364962 ], [ -65.049546019771697, 18.360521286604182 ], [ -65.049566639263389, 18.360482563502615 ], [ -65.049526238470719, 18.360433445526439 ], [ -65.049496231242927, 18.360355158513187 ], [ -65.049441078293569, 18.360269158835649 ], [ -65.049384584239021, 18.360230266786232 ], [ -65.049333622243239, 18.360191374736814 ], [ -65.049262878946479, 18.360138905307394 ], [ -65.049212252226994, 18.360089618383427 ], [ -65.049161793145629, 18.360011331370174 ], [ -65.049111166426144, 18.359942599731085 ], [ -65.049060372068539, 18.359903204767249 ], [ -65.048989293495481, 18.359844197450229 ], [ -65.048857194638003, 18.359765072246262 ], [ -65.048734818792866, 18.359735063708854 ], [ -65.048653011378576, 18.359744117478272 ], [ -65.048540190907715, 18.359782337665422 ], [ -65.048448157566611, 18.359811005097754 ], [ -65.04830482695354, 18.359839168305939 ], [ -65.048212625974315, 18.359858111416202 ], [ -65.04814104448684, 18.359877054526464 ], [ -65.048048843507615, 18.359895828688934 ], [ -65.04794658423981, 18.359924496121209 ], [ -65.047854550898705, 18.359933548581012 ], [ -65.047742065704085, 18.359942433402637 ], [ -65.04763980643628, 18.359941761540369 ], [ -65.04752748887978, 18.359931201646987 ], [ -65.047456075030425, 18.359920806772379 ], [ -65.047333866823465, 18.359880910203799 ], [ -65.047221716905142, 18.359841178653994 ], [ -65.047099508698182, 18.359801282085414 ], [ -65.046967074564407, 18.359751493556644 ], [ -65.04690588664181, 18.359731544617489 ], [ -65.046814357524909, 18.359682091365016 ], [ -65.046692315646396, 18.359593409477156 ], [ -65.046621572349636, 18.359495342472599 ], [ -65.046571114577944, 18.359416886511553 ], [ -65.046530712475544, 18.359367768535321 ], [ -65.046459633902487, 18.359299038205961 ], [ -65.046419568386113, 18.359210860542248 ], [ -65.046400122361376, 18.359083958467238 ], [ -65.046391069901631, 18.358927718407358 ], [ -65.046402470605074, 18.3587912622678 ], [ -65.046403307486116, 18.358674249533635 ], [ -65.046434991095339, 18.358547684044538 ], [ -65.046466171790144, 18.35847945531998 ], [ -65.046497520123069, 18.358401671221145 ], [ -65.046559713874501, 18.358275272060553 ], [ -65.046601120496064, 18.358207378612235 ], [ -65.046652753044384, 18.358149208176258 ], [ -65.046724837446334, 18.358071590405928 ], [ -65.046776469994654, 18.358003698267282 ], [ -65.046827934904854, 18.357955250843645 ], [ -65.046818379530691, 18.35787713146857 ], [ -65.046777811099844, 18.357837904142855 ], [ -65.046727016742182, 18.35780823219136 ], [ -65.046655602892827, 18.357798006264602 ], [ -65.046594248641838, 18.357787780337787 ], [ -65.046492324650274, 18.357767496122392 ], [ -65.046451419633456, 18.357757437833754 ], [ -65.046401798742806, 18.357721563270957 ], [ -65.046360224483124, 18.357668924893687 ], [ -65.046330049617211, 18.357610251543292 ], [ -65.046299707113121, 18.357580747229974 ], [ -65.046284452042016, 18.357551075278479 ], [ -65.046281266917276, 18.357504136598152 ], [ -65.046300712942013, 18.357444122142624 ], [ -65.046314626907929, 18.357380754924179 ], [ -65.046353183681049, 18.357268940282154 ], [ -65.046353855543316, 18.357181097894681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_264", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.977907545792107, 18.344572028565267 ], [ -64.977834455561322, 18.344504638031367 ], [ -64.977757678601051, 18.34445501845039 ], [ -64.977686095803904, 18.344405397559797 ], [ -64.977609486481754, 18.344340855564667 ], [ -64.977548298559213, 18.344281511661677 ], [ -64.977492307419084, 18.344212278417899 ], [ -64.977425921404404, 18.344157794711407 ], [ -64.977369762626154, 18.344093590611919 ], [ -64.977313771486081, 18.344024354748797 ], [ -64.977237663768676, 18.343915726541184 ], [ -64.977186701772894, 18.343846659625854 ], [ -64.977136076363081, 18.343762671605987 ], [ -64.977095506622561, 18.343688744494159 ], [ -64.977013866846448, 18.343609619290191 ], [ -64.976958044654168, 18.343515909567714 ], [ -64.976896855421955, 18.343451536520433 ], [ -64.976846062373966, 18.343382469605103 ], [ -64.976800463489155, 18.343308373545426 ], [ -64.976750004407791, 18.343190188653921 ], [ -64.976719829541878, 18.343111397416578 ], [ -64.976633663535836, 18.342953483594613 ], [ -64.97656828465972, 18.342781151582585 ], [ -64.976553532503033, 18.342692638642518 ], [ -64.976538780346345, 18.342608987208678 ], [ -64.976513803572573, 18.342525334465165 ], [ -64.976490500560885, 18.342463477299702 ], [ -64.97653190849212, 18.342389716516323 ], [ -64.976553701450825, 18.342309082569045 ], [ -64.976533752511727, 18.342167763613645 ], [ -64.976534421754593, 18.342080424140647 ], [ -64.976653781422783, 18.342389884154443 ], [ -64.976678759506285, 18.34247353558834 ], [ -64.976698708445383, 18.342557185712508 ], [ -64.97671346060207, 18.342639832627185 ], [ -64.976769116465903, 18.342743431690508 ], [ -64.976809517258573, 18.342832113578368 ], [ -64.976839690814813, 18.342910903506038 ], [ -64.976900375822936, 18.343029254725991 ], [ -64.976951002542478, 18.343127827264368 ], [ -64.977001796900083, 18.343196894179698 ], [ -64.977052423619568, 18.343305354749191 ], [ -64.977112940989571, 18.343448182447844 ], [ -64.977128197370348, 18.343472994202841 ], [ -64.977168933439316, 18.343522278507521 ], [ -64.977265325372116, 18.343665441482472 ], [ -64.977331373491211, 18.343769209493644 ], [ -64.977382167848816, 18.343838276408974 ], [ -64.977443355771356, 18.343912372468594 ], [ -64.977494151438691, 18.343981608331774 ], [ -64.977560534834026, 18.344040950925034 ], [ -64.977611330501361, 18.344110185478542 ], [ -64.977687773495006, 18.344194173498352 ], [ -64.977749127746051, 18.344253517401341 ], [ -64.977805118886124, 18.344322750645119 ], [ -64.977876700373599, 18.344372371535712 ], [ -64.977953143367301, 18.34444177372734 ], [ -64.978009134507374, 18.344505980446172 ], [ -64.978075686850559, 18.34456046153332 ], [ -64.978127989951474, 18.344725586414825 ], [ -64.978048697109386, 18.344680156477807 ], [ -64.977981978437697, 18.344622487646575 ], [ -64.977907545792107, 18.344572028565267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1181", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.939969866886258, 18.338176467043183 ], [ -64.939955450005868, 18.338267159279098 ], [ -64.93992745443586, 18.338351481265533 ], [ -64.939892920978195, 18.338429097726191 ], [ -64.939831230141181, 18.338487100523992 ], [ -64.939755960614548, 18.338531859908471 ], [ -64.939680857416363, 18.338576786931071 ], [ -64.939596535429928, 18.338607632349522 ], [ -64.939514057463043, 18.338634622090751 ], [ -64.939427054576015, 18.338652391734001 ], [ -64.93932999209062, 18.338684075343224 ], [ -64.939266624872175, 18.338743586884334 ], [ -64.939232259052687, 18.338821706259409 ], [ -64.939226726993923, 18.338904687140712 ], [ -64.939206610416647, 18.338987668022014 ], [ -64.939201078357883, 18.339070816541437 ], [ -64.939171406406388, 18.339148935916512 ], [ -64.939136872948723, 18.339227222929765 ], [ -64.939083061104498, 18.339295954568797 ], [ -64.93901030615001, 18.339341552143992 ], [ -64.938932522051175, 18.33938245585108 ], [ -64.938845182578177, 18.339423359558225 ], [ -64.938762704611349, 18.339455043167447 ], [ -64.938670671270245, 18.33948655913855 ], [ -64.938588193303417, 18.339513716517843 ], [ -64.93850118910666, 18.3395267922931 ], [ -64.938409155765612, 18.339540035706477 ], [ -64.938317290062741, 18.339548585251805 ], [ -64.938225424359814, 18.33955244092914 ], [ -64.938138420163057, 18.339556296606418 ], [ -64.938046554460186, 18.339564846151802 ], [ -64.937935242732522, 18.33956853419096 ], [ -64.937848238535821, 18.339567863638365 ], [ -64.937756372832894, 18.339581107051742 ], [ -64.937659645623796, 18.339580268861027 ], [ -64.937572641427096, 18.339584292176482 ], [ -64.937485469592218, 18.33959736795174 ], [ -64.937426628603646, 18.33959602684655 ], [ -64.937339456768768, 18.339604576391935 ], [ -64.937247591065841, 18.339608432069213 ], [ -64.93716058686914, 18.33962167548259 ], [ -64.937078108902256, 18.339648665223763 ], [ -64.936990937067378, 18.33966643486707 ], [ -64.93689890372633, 18.33968420451032 ], [ -64.936811731891453, 18.339711194251493 ], [ -64.936729421562745, 18.339738351630842 ], [ -64.936642249727868, 18.33974220730812 ], [ -64.93655524553111, 18.339741536755582 ], [ -64.936468242644082, 18.33975008630091 ], [ -64.936381069499532, 18.339777076042083 ], [ -64.936308146906867, 18.339822673617277 ], [ -64.936230362808089, 18.339863577324365 ], [ -64.936147884841205, 18.339899954801638 ], [ -64.936060880644504, 18.339913030576895 ], [ -64.935969182579697, 18.339898446058328 ], [ -64.935921405708655, 18.33982887622858 ], [ -64.935873628837612, 18.339759306398832 ], [ -64.935816128954229, 18.339694262798957 ], [ -64.935739183046167, 18.33965201798668 ], [ -64.935652178849409, 18.339656041302135 ], [ -64.935579257566417, 18.339701638877273 ], [ -64.935525612050697, 18.339770370516305 ], [ -64.935457384635754, 18.339825355827543 ], [ -64.935409774093159, 18.339846142957413 ], [ -64.935371218629712, 18.339841281451243 ], [ -64.935284380761459, 18.33981747683481 ], [ -64.935202573347226, 18.339779925890525 ], [ -64.935115736788589, 18.339770035240008 ], [ -64.935028732591888, 18.33976936468747 ], [ -64.934941560757011, 18.339777914232798 ], [ -64.934854556560254, 18.339790990008055 ], [ -64.934767049449079, 18.339831893715143 ], [ -64.93468004656205, 18.339840443260528 ], [ -64.934593042365293, 18.339848992805855 ], [ -64.934501007714573, 18.339866762449105 ], [ -64.934413835879695, 18.339889058322285 ], [ -64.93432197148644, 18.33989308163774 ], [ -64.934234799651563, 18.339901631183068 ], [ -64.934152489322855, 18.33992862092424 ], [ -64.934065317487978, 18.339946390567547 ], [ -64.9339781456531, 18.339968854078847 ], [ -64.9338956663766, 18.33999584382002 ], [ -64.933803634345168, 18.34001830733132 ], [ -64.933711768642297, 18.340035909336393 ], [ -64.93362442785957, 18.340058372847693 ], [ -64.933537257334365, 18.340076142491 ], [ -64.933454945695985, 18.340107826100223 ], [ -64.9333818554652, 18.340162643773283 ], [ -64.933323349752982, 18.340226849182443 ], [ -64.933264845350379, 18.340290886953426 ], [ -64.933235173398884, 18.340369173966678 ], [ -64.933186221751157, 18.340438073243888 ], [ -64.933103743784329, 18.340474283082983 ], [ -64.933021267127117, 18.340501440462333 ], [ -64.932935267449579, 18.340509990007661 ], [ -64.932848264562551, 18.340504625587016 ], [ -64.932761260365794, 18.340499428804605 ], [ -64.932674422497541, 18.340494064383961 ], [ -64.932587419610456, 18.340493393831423 ], [ -64.932495386269409, 18.340511163474673 ], [ -64.932408214434531, 18.340538153215846 ], [ -64.932321042599654, 18.340555922859096 ], [ -64.932238564632826, 18.340592131388519 ], [ -64.932165642040161, 18.340637730273386 ], [ -64.932078470205283, 18.340655499916636 ], [ -64.931991466008526, 18.340659523232091 ], [ -64.931904460502153, 18.340658851369824 ], [ -64.931817289976948, 18.340667402224881 ], [ -64.93173011814207, 18.340703612063976 ], [ -64.931647640175186, 18.340735294363526 ], [ -64.931560468340308, 18.340753065316449 ], [ -64.93147329650543, 18.340761614861776 ], [ -64.93138629230873, 18.340774690637033 ], [ -64.931299120473852, 18.340783240182361 ], [ -64.931212116277095, 18.340782569629823 ], [ -64.931125112080338, 18.340781899077228 ], [ -64.931038275521757, 18.340776702294761 ], [ -64.930951271325057, 18.340762116466578 ], [ -64.93086443476642, 18.340756753355606 ], [ -64.930777430569719, 18.340746861395473 ], [ -64.93069562315543, 18.340718531858784 ], [ -64.930618509609189, 18.340676453374954 ], [ -64.930551454351587, 18.340620463544553 ], [ -64.930484231455864, 18.340564640042601 ], [ -64.930426731572481, 18.340499596442726 ], [ -64.930359507367029, 18.340443605302653 ], [ -64.930287424274809, 18.340396834260446 ], [ -64.930225230523376, 18.340336316890443 ], [ -64.930221039569744, 18.340253336009198 ], [ -64.930220704293504, 18.340168511108345 ], [ -64.930248532225392, 18.34008435676003 ], [ -64.930259596342864, 18.340040435566323 ], [ -64.93086443476642, 18.340599508776563 ], [ -64.932561769664744, 18.340316031365376 ], [ -64.932961923224184, 18.34016784055575 ], [ -64.93346701564235, 18.339821835426505 ], [ -64.933673044231, 18.339728125704028 ], [ -64.933931708577518, 18.339651850348503 ], [ -64.936915164626328, 18.33918782796593 ], [ -64.937861984863616, 18.339027230623969 ], [ -64.938379651452294, 18.338840817007849 ], [ -64.938956829582082, 18.338565219899124 ], [ -64.939410961314195, 18.338255089332733 ], [ -64.939621011908628, 18.338391211505609 ], [ -64.939759983930003, 18.338278391034748 ], [ -64.939832571246313, 18.338205300803963 ], [ -64.939675997219865, 18.337991226894076 ], [ -64.940114203328278, 18.337501723513583 ], [ -64.940219480082703, 18.337524857577421 ], [ -64.940457358609024, 18.337151527430763 ], [ -64.940394661943174, 18.336943823770355 ], [ -64.940535477984099, 18.336427499596482 ], [ -64.940563473554164, 18.336510143891815 ], [ -64.940601192136569, 18.33659295713494 ], [ -64.940687190504434, 18.336630172802927 ], [ -64.940723400343529, 18.336721201624755 ], [ -64.940749887170284, 18.336805857577815 ], [ -64.940783247160937, 18.336890514840547 ], [ -64.940755251590929, 18.336974669188862 ], [ -64.940700266279691, 18.337039209874263 ], [ -64.940645280968454, 18.3371101208092 ], [ -64.940631030416512, 18.337194442795635 ], [ -64.940589625104622, 18.337272060565965 ], [ -64.940534638483712, 18.33733659994175 ], [ -64.940486360007924, 18.337407678514808 ], [ -64.940431373387014, 18.337472219200208 ], [ -64.940423998618371, 18.337556541186643 ], [ -64.940409580428309, 18.337640863173078 ], [ -64.940436068564736, 18.337725520435811 ], [ -64.940374376418049, 18.337783355595491 ], [ -64.940292570313488, 18.337815206842834 ], [ -64.940204057373421, 18.337827612065496 ], [ -64.940115712071531, 18.337813865737701 ], [ -64.940033903347626, 18.337845716985044 ], [ -64.939965339346713, 18.337897181895244 ], [ -64.939903648509699, 18.337955184693101 ], [ -64.939869116361706, 18.338032801153759 ], [ -64.939916055042033, 18.338111088167011 ], [ -64.939969866886258, 18.338176467043183 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_862", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.960788676422453, 18.310960585931923 ], [ -64.960545265837368, 18.311218748673696 ], [ -64.960138409371552, 18.311373311042473 ], [ -64.95964203151749, 18.311484287493784 ], [ -64.959101232174646, 18.311508931610604 ], [ -64.958861005404628, 18.311492669400991 ], [ -64.958726056698708, 18.311462997449496 ], [ -64.958620444667986, 18.311533908384433 ], [ -64.958589265282853, 18.311662654478994 ], [ -64.958678113499161, 18.311806824592509 ], [ -64.958842734156576, 18.311879745875501 ], [ -64.959143140400954, 18.311867675929136 ], [ -64.95950389768683, 18.311827442774586 ], [ -64.959821070364967, 18.311785533238549 ], [ -64.959896004615359, 18.312780800899475 ], [ -64.959811682628924, 18.312804270239667 ], [ -64.959760551685292, 18.31287618700344 ], [ -64.959717971596717, 18.312948103767212 ], [ -64.959675223870022, 18.313020188169105 ], [ -64.959615713638584, 18.313083890663847 ], [ -64.959531391652149, 18.313115406634893 ], [ -64.959455282625072, 18.313163015867815 ], [ -64.959362578731486, 18.31317843857704 ], [ -64.959236179570894, 18.313193526010025 ], [ -64.959143644625044, 18.31320090208834 ], [ -64.959017411792956, 18.313199896259505 ], [ -64.958924875537491, 18.31320727233782 ], [ -64.958832171643849, 18.313214480778015 ], [ -64.958731253481176, 18.31321381022542 ], [ -64.958638718535326, 18.313212972034705 ], [ -64.958546182279861, 18.313212301482167 ], [ -64.958453478386218, 18.313219677560483 ], [ -64.958424644625438, 18.31321699535016 ], [ -64.958398994679726, 18.313214480778015 ], [ -64.958315847469976, 18.313189335056393 ], [ -64.958206547400096, 18.313172403603858 ], [ -64.958122559380286, 18.313147593158533 ], [ -64.958038741617941, 18.313114903720475 ], [ -64.95795492254598, 18.31309009327515 ], [ -64.957862721566755, 18.313041142937095 ], [ -64.957787284401945, 18.313000406868127 ], [ -64.957703465329985, 18.31296771743007 ], [ -64.957628194493623, 18.312918767092015 ], [ -64.95756130818387, 18.312862105399347 ], [ -64.957520069200427, 18.31277342482116 ], [ -64.957470113033537, 18.312700669866672 ], [ -64.957437088319125, 18.312620035919394 ], [ -64.957412613150098, 18.312539401972117 ], [ -64.957388137981127, 18.312450889032107 ], [ -64.957355113266715, 18.312370255084829 ], [ -64.957313706645152, 18.312297667768462 ], [ -64.957313202421062, 18.312297164854044 ], [ -64.957305827652419, 18.312241341352092 ], [ -64.957272802938007, 18.312160707404814 ], [ -64.957256708366515, 18.312072194464804 ], [ -64.957240616414367, 18.311983681524794 ], [ -64.957215973607219, 18.311903047577516 ], [ -64.957191498438192, 18.311822581268359 ], [ -64.957158472414164, 18.311741948630811 ], [ -64.957142714428585, 18.311690147134641 ], [ -64.957135172021822, 18.311516810603393 ], [ -64.957119077450329, 18.311428296353711 ], [ -64.957119916950717, 18.311339783413644 ], [ -64.957095274143512, 18.311259317104543 ], [ -64.95705386752195, 18.311186729788176 ], [ -64.957012293262267, 18.311113974833688 ], [ -64.956962503423824, 18.311041387517321 ], [ -64.956937861926292, 18.3109607535701 ], [ -64.956980609653044, 18.310888836806328 ], [ -64.957056717370392, 18.310849106566195 ], [ -64.95713265744962, 18.310809543964183 ], [ -64.957208765167024, 18.310769981362228 ], [ -64.957260396405673, 18.310700411532423 ], [ -64.957310521520412, 18.310674259981965 ], [ -64.957395011145024, 18.31064291164904 ], [ -64.95748754740049, 18.310635535570725 ], [ -64.957579916017835, 18.31066034601605 ], [ -64.95767228463518, 18.310677109830408 ], [ -64.957764653252525, 18.310693873644823 ], [ -64.95784863865299, 18.310726730721058 ], [ -64.957941008580008, 18.310735447904563 ], [ -64.958033543525801, 18.3107361184571 ], [ -64.958126247419443, 18.310720863385995 ], [ -64.958219120260935, 18.31068130078404 ], [ -64.9583116565164, 18.310681972646307 ], [ -64.958387092371538, 18.310722707405603 ], [ -64.95843688220998, 18.31079546236009 ], [ -64.958461523707456, 18.310884142938278 ], [ -64.958502931638691, 18.310956731564318 ], [ -64.958595466584541, 18.310949355485945 ], [ -64.958671575611561, 18.310909791574318 ], [ -64.958747683328966, 18.310862183651068 ], [ -64.958840387222551, 18.310854807572753 ], [ -64.958924709208986, 18.31082329160165 ], [ -64.959017411792956, 18.310808036530545 ], [ -64.959110115686599, 18.310792612511648 ], [ -64.959194437673034, 18.310769144481185 ], [ -64.959270377752262, 18.3107295805695 ], [ -64.959346485469609, 18.310690017967545 ], [ -64.959405998320449, 18.310626147834682 ], [ -64.959465342223382, 18.310562277701763 ], [ -64.959480597294487, 18.310471585465905 ], [ -64.959511776679619, 18.310455324565908 ], [ -64.959571120582609, 18.310391454433045 ], [ -64.959588722587739, 18.310303276769332 ], [ -64.959639853531314, 18.31023136000556 ], [ -64.960788676422453, 18.310960585931923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_518", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.865558659314615, 18.350674895197585 ], [ -64.865546252782281, 18.350586214619398 ], [ -64.865546924644548, 18.350497700369658 ], [ -64.865548096801888, 18.350371302518795 ], [ -64.865419184378823, 18.34997835739955 ], [ -64.865367719468566, 18.349813570413687 ], [ -64.865331677267648, 18.349719525414912 ], [ -64.865392863880516, 18.34965582292017 ], [ -64.86546746285461, 18.349605028562564 ], [ -64.865541895500201, 18.349560604454382 ], [ -64.865650188431573, 18.349490699348337 ], [ -64.865697966612288, 18.349420291327874 ], [ -64.865765858750933, 18.349363125411116 ], [ -64.865833753508923, 18.349305794475526 ], [ -64.865908183535169, 18.349261370367344 ], [ -64.865976078293158, 18.349204038122082 ], [ -64.865922935691856, 18.349120051411944 ], [ -64.865835428580681, 18.349112842971749 ], [ -64.865747753831386, 18.349124912918114 ], [ -64.865633090650533, 18.349156261251039 ], [ -64.865545248263061, 18.349181239334541 ], [ -64.865463942453573, 18.349251312078707 ], [ -64.865396050314928, 18.349308644323969 ], [ -64.865321617669338, 18.349353068432094 ], [ -64.865213492376085, 18.349397157263979 ], [ -64.86513235551439, 18.349435043484561 ], [ -64.865044511817302, 18.349453651318527 ], [ -64.864943258378332, 18.349484999651452 ], [ -64.864992711630805, 18.349413921078394 ], [ -64.86502104247711, 18.349309314876564 ], [ -64.865023389411135, 18.349047464095634 ], [ -64.865010482583727, 18.348962136280306 ], [ -64.864997574446647, 18.348863900327956 ], [ -64.86497779314567, 18.348778572512629 ], [ -64.864937392352942, 18.348693077059181 ], [ -64.864890118396318, 18.348614119493391 ], [ -64.864835971275852, 18.348534994289423 ], [ -64.864788528371378, 18.348462574611176 ], [ -64.86471443362143, 18.348317902892916 ], [ -64.864834796499167, 18.348223857894141 ], [ -64.865115759338153, 18.348083209491335 ], [ -64.865452207783505, 18.347878690955667 ], [ -64.865506857818445, 18.347892102007165 ], [ -64.865616325526446, 18.347925797274115 ], [ -64.865698300578913, 18.347965862790545 ], [ -64.865780275631323, 18.347999222781198 ], [ -64.865862250683733, 18.34803912065945 ], [ -64.865937352572246, 18.34808555642536 ], [ -64.866005413658684, 18.34813853007887 ], [ -64.866242621632466, 18.348448325368963 ], [ -64.866269277407014, 18.348533653184234 ], [ -64.866316886639936, 18.348605905224304 ], [ -64.866322921613119, 18.348692238868466 ], [ -64.866401542592939, 18.348730628003466 ], [ -64.866485194026836, 18.348764323270416 ], [ -64.866568845460677, 18.348798018537366 ], [ -64.866657526038864, 18.348808076826003 ], [ -64.866751235761342, 18.348813608884711 ], [ -64.866839917649202, 18.348833222547569 ], [ -64.86692356777337, 18.348866917814519 ], [ -64.866992299412402, 18.348919220915434 ], [ -64.867060863413315, 18.348971691654526 ], [ -64.867108641594029, 18.349053331430639 ], [ -64.867193466494882, 18.349094738052202 ], [ -64.867242583161442, 18.349163134414994 ], [ -64.867284661645215, 18.349238067355657 ], [ -64.867279129586507, 18.349272937399292 ], [ -64.867171336950207, 18.349487011309179 ], [ -64.867144011932737, 18.349575188972949 ], [ -64.867129931638317, 18.349663534274782 ], [ -64.867116016362672, 18.349752047214849 ], [ -64.867088691345202, 18.349840224878562 ], [ -64.867061367637405, 18.349941143041292 ], [ -64.86701878754883, 18.350256973304568 ], [ -64.867004704635065, 18.350345318606458 ], [ -64.86700386644435, 18.350433831546468 ], [ -64.867016440614805, 18.350509771625696 ], [ -64.866709158587184, 18.350494850521216 ], [ -64.866442447609757, 18.350475741082505 ], [ -64.866221163950001, 18.350534245485051 ], [ -64.865841798830161, 18.350621586267778 ], [ -64.865558490366766, 18.350700039609478 ], [ -64.865558659314615, 18.350674895197585 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_239", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.859275750625329, 18.317328488469911 ], [ -64.859048768578305, 18.31804815771244 ], [ -64.858961092519337, 18.318047488469517 ], [ -64.858886493545242, 18.318092078906147 ], [ -64.858811726933027, 18.318136504324002 ], [ -64.858723716907434, 18.318161648735952 ], [ -64.858636042158139, 18.31816081054518 ], [ -64.858548367408844, 18.318147231855562 ], [ -64.858454154771891, 18.318120746338479 ], [ -64.858366480022596, 18.318107167648805 ], [ -64.858285344470573, 18.31813868361985 ], [ -64.858231196040379, 18.31815108753284 ], [ -64.858163134953884, 18.318208587416223 ], [ -64.858075292566468, 18.318227196559917 ], [ -64.858013937005751, 18.318291065383107 ], [ -64.857999687763481, 18.318374884455068 ], [ -64.858005556408216, 18.318458703527085 ], [ -64.858004884545949, 18.318542522599103 ], [ -64.857990636613408, 18.318626175342615 ], [ -64.857989798422693, 18.318709994414633 ], [ -64.858022989465496, 18.318787609565618 ], [ -64.858062719705629, 18.318865226026276 ], [ -64.858129774963231, 18.318923899376671 ], [ -64.858143353652906, 18.319037056433558 ], [ -64.858127595667384, 18.319080977627323 ], [ -64.858114016977709, 18.319162280817466 ], [ -64.858066241416338, 18.319232856476106 ], [ -64.858011591381398, 18.319303264496568 ], [ -64.857963645562563, 18.319373841464881 ], [ -64.857888878950348, 18.319424803460663 ], [ -64.857841103388978, 18.319495211481126 ], [ -64.857759629941313, 18.319533264030156 ], [ -64.857685030967218, 18.319577855776458 ], [ -64.857597188579746, 18.319596463610424 ], [ -64.857509347502003, 18.319595625419709 ], [ -64.857421671442978, 18.319594954867114 ], [ -64.857333830365235, 18.319607192451656 ], [ -64.857246155615883, 18.319599984011461 ], [ -64.857193515928998, 18.319593110847563 ], [ -64.85715294749815, 18.319599145820746 ], [ -64.857065272748855, 18.319585567131071 ], [ -64.856977599309232, 18.319578358690876 ], [ -64.85688992455988, 18.319584226025881 ], [ -64.856802080862792, 18.319589925722823 ], [ -64.856714407423112, 18.319582718592301 ], [ -64.856626731364145, 18.319562600705353 ], [ -64.856539225562642, 18.319549022015678 ], [ -64.85645138317517, 18.319548351463084 ], [ -64.856363874754379, 18.319528234885809 ], [ -64.856303692660674, 18.319463358924111 ], [ -64.856257090566316, 18.319391945074756 ], [ -64.856190201637162, 18.319333439362481 ], [ -64.856123146379559, 18.319274766012086 ], [ -64.856035471630264, 18.319274095459491 ], [ -64.855947630552464, 18.319273424906953 ], [ -64.855866326052649, 18.319304940877998 ], [ -64.855785021552776, 18.319342994736701 ], [ -64.855710422578738, 18.319387418844826 ], [ -64.855649067018021, 18.319451456615866 ], [ -64.855614701198476, 18.319528571471778 ], [ -64.855553177999639, 18.319598979492241 ], [ -64.855465335612166, 18.319623957575686 ], [ -64.855377659553199, 18.319610377576396 ], [ -64.855290152442024, 18.319583890749641 ], [ -64.855236843512216, 18.319512476900286 ], [ -64.855196946943636, 18.319434860439628 ], [ -64.855150343539606, 18.319363615538066 ], [ -64.855090161445901, 18.319298570628519 ], [ -64.855002485386933, 18.319291363497996 ], [ -64.854914979585431, 18.319277783498706 ], [ -64.854827303526463, 18.319264204809031 ], [ -64.854739462448663, 18.319276274755396 ], [ -64.854664694526775, 18.319320866501698 ], [ -64.854577021087152, 18.319313658061503 ], [ -64.8544893463378, 18.319312987508908 ], [ -64.854401671588505, 18.319312316956314 ], [ -64.854320870003107, 18.319279293551631 ], [ -64.854247109219727, 18.319233694666821 ], [ -64.854186927126023, 18.319168651066946 ], [ -64.85414032241232, 18.319097404855711 ], [ -64.854093720317962, 18.319025991006413 ], [ -64.854067401129385, 18.318942005605891 ], [ -64.854034376414972, 18.318864387835561 ], [ -64.853981067485222, 18.318792973986206 ], [ -64.853907139063722, 18.318747376411068 ], [ -64.853819799590667, 18.318714351696713 ], [ -64.853746038807344, 18.31866221754359 ], [ -64.853672110385844, 18.318616452330275 ], [ -64.853598349602464, 18.318570685807288 ], [ -64.853510507214992, 18.318570016564365 ], [ -64.853422664827519, 18.318588624398387 ], [ -64.853347898215304, 18.31863958639417 ], [ -64.853273299241266, 18.318690548389895 ], [ -64.853211943680549, 18.318760956410415 ], [ -64.853123933654956, 18.318779562934708 ], [ -64.853036091267484, 18.318791632881073 ], [ -64.852954786767668, 18.318823316490295 ], [ -64.852874152820391, 18.31878392152646 ], [ -64.852793518873113, 18.318751064450225 ], [ -64.852706011761938, 18.31872457762347 ], [ -64.852618337012643, 18.318710832605348 ], [ -64.852530829901468, 18.31868434446892 ], [ -64.852457069118088, 18.318632209006125 ], [ -64.852383308334765, 18.31858007354333 ], [ -64.852309379913265, 18.318534309639688 ], [ -64.852256070983458, 18.318462894480717 ], [ -64.852195888889753, 18.318398018518963 ], [ -64.852164875833125, 18.318354601549345 ], [ -64.852155488097026, 18.318245301479465 ], [ -64.85200344030045, 18.318087552676275 ], [ -64.85198919105818, 18.317955621456974 ], [ -64.851980306236555, 18.317808939390602 ], [ -64.85196169840259, 18.317618333511234 ], [ -64.851932361727393, 18.317456899288231 ], [ -64.851948287351092, 18.317317424352439 ], [ -64.851978294578828, 18.317271156224649 ], [ -64.85202104230558, 18.317195551421719 ], [ -64.852071836663185, 18.317127825611578 ], [ -64.852143585788838, 18.317076359391649 ], [ -64.852194380146443, 18.317028751468456 ], [ -64.852202929691828, 18.317012824535084 ], [ -64.852249700733978, 18.316937053403706 ], [ -64.852317258905998, 18.316881565177994 ], [ -64.852393198985226, 18.316838145589031 ], [ -64.852468971426333, 18.316794728619413 ], [ -64.852498475739651, 18.316774947318436 ], [ -64.852519765783939, 18.316753154359731 ], [ -64.852591347271471, 18.316705545126808 ], [ -64.852654882128036, 18.316646033585698 ], [ -64.852705844123818, 18.316578475413678 ], [ -64.852752615165969, 18.316506726288026 ], [ -64.852799386208176, 18.316434977162373 ], [ -64.852858562472989, 18.316371442305808 ], [ -64.852919247481111, 18.31630773850145 ], [ -64.852990996606763, 18.316258117610801 ], [ -64.853070121810731, 18.316222913600541 ], [ -64.853152935053856, 18.316198438431513 ], [ -64.853220828502174, 18.316170276533001 ], [ -64.853967656433667, 18.31612182910942 ], [ -64.853983079142949, 18.316612003042451 ], [ -64.85401040416042, 18.316920623555916 ], [ -64.854015098028412, 18.317229077740876 ], [ -64.854072597911852, 18.317509202389147 ], [ -64.854153231859073, 18.317724951370792 ], [ -64.854339310198952, 18.317913041368399 ], [ -64.854593281987093, 18.318058552587047 ], [ -64.854930402294656, 18.318147399493682 ], [ -64.855433149088526, 18.318187297371935 ], [ -64.855945954171034, 18.318190651444525 ], [ -64.856387848318604, 18.31816416461777 ], [ -64.856735194552982, 18.318106832372507 ], [ -64.857082874753985, 18.318019325261332 ], [ -64.857336177299203, 18.317900803783857 ], [ -64.857526277644865, 18.317812124515342 ], [ -64.857600207376038, 18.317681700729679 ], [ -64.857721577392283, 18.317539209616939 ], [ -64.857970518726461, 18.317412138594079 ], [ -64.858339491591039, 18.317307701340042 ], [ -64.858872579579327, 18.317304851491599 ], [ -64.859275750625329, 18.317328488469911 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_867", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.901933950718387, 18.311354704518124 ], [ -64.901942835540012, 18.311269710669478 ], [ -64.90193545946164, 18.311184550492328 ], [ -64.901956414229687, 18.311103582578426 ], [ -64.901977368997677, 18.311022612045235 ], [ -64.902594109729421, 18.311077429718296 ], [ -64.902599641788186, 18.311247582434476 ], [ -64.902658482776758, 18.311402144803253 ], [ -64.902717826679691, 18.311474396843266 ], [ -64.902792425653786, 18.311535920042161 ], [ -64.902911951650481, 18.311612195397686 ], [ -64.903084451300629, 18.311631473784246 ], [ -64.903238343116811, 18.311625606449184 ], [ -64.903355019265064, 18.311597778517296 ], [ -64.903460798933907, 18.311526867582359 ], [ -64.903575128148134, 18.311379346015656 ], [ -64.904225396508707, 18.311466853126831 ], [ -64.904208465056172, 18.311547989988526 ], [ -64.904215841134487, 18.311636838204834 ], [ -64.904202932997407, 18.311721830743863 ], [ -64.904194048175782, 18.311806824592509 ], [ -64.904081227704864, 18.311841189102381 ], [ -64.903992044212259, 18.311912938227977 ], [ -64.903915601218614, 18.311996757299994 ], [ -64.903833123251729, 18.312032296586551 ], [ -64.903757015534381, 18.312073870846234 ], [ -64.903674537567497, 18.312109410132791 ], [ -64.903586024627486, 18.312132879472927 ], [ -64.903497344049299, 18.312156348813062 ], [ -64.903408831109289, 18.312173615541894 ], [ -64.903320318169278, 18.312185014935721 ], [ -64.903231637591091, 18.312202449302674 ], [ -64.903143124651024, 18.312219883669684 ], [ -64.903054611711013, 18.312231115425334 ], [ -64.902953525910164, 18.312242347180984 ], [ -64.902865012970153, 18.312241676628389 ], [ -64.902776667668263, 18.312241006075794 ], [ -64.90266937925611, 18.312234132911897 ], [ -64.90258103395422, 18.312215357439754 ], [ -64.902492856290451, 18.312190546994486 ], [ -64.902398476015378, 18.312153498964619 ], [ -64.902314992219658, 18.312128520881174 ], [ -64.90229336689913, 18.312100860587407 ], [ -64.90223720812088, 18.312034643520519 ], [ -64.902177026027175, 18.311972449769144 ], [ -64.90211684393347, 18.311910088379534 ], [ -64.90205263852431, 18.311851582667316 ], [ -64.90199647974606, 18.311785365600429 ], [ -64.90197703372138, 18.311704061100556 ], [ -64.90197217221521, 18.311617895094571 ], [ -64.90197217221521, 18.311606160424503 ], [ -64.901952726190473, 18.311524855924631 ], [ -64.901941326796702, 18.311439695747481 ], [ -64.901933950718387, 18.311354704518124 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_575", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.873672007588596, 18.304215163603317 ], [ -64.873660440556648, 18.304248523593969 ], [ -64.873706205769963, 18.304321781462932 ], [ -64.873775272685293, 18.304376096221574 ], [ -64.873860097586146, 18.304381963556636 ], [ -64.873935199474658, 18.304424711283332 ], [ -64.874016671612651, 18.304461424036845 ], [ -64.874098311388764, 18.304498136790414 ], [ -64.874179783526756, 18.304534849543927 ], [ -64.874254885415269, 18.304583632243862 ], [ -64.874269469933779, 18.304665607296272 ], [ -64.874308529621317, 18.304741882651797 ], [ -64.874340380868716, 18.304821343132062 ], [ -64.874375752517096, 18.304897618487587 ], [ -64.874418332605671, 18.304991160571888 ], [ -64.874446495813856, 18.305070621052153 ], [ -64.874481867462237, 18.305146896407678 ], [ -64.874520928459447, 18.305223004125082 ], [ -64.874563674876526, 18.30529592671769 ], [ -64.874617320392247, 18.30536180850828 ], [ -64.874696445596214, 18.3054003652814 ], [ -64.874782945568882, 18.305408076636013 ], [ -64.874830051887329, 18.305401538748413 ], [ -64.874843630577004, 18.30551435921933 ], [ -64.87483340465019, 18.305601363416088 ], [ -64.874809767671877, 18.305681829725188 ], [ -64.874732486487517, 18.305725248004478 ], [ -64.874640620784589, 18.305695073138565 ], [ -64.874556466436331, 18.305657857470578 ], [ -64.874464434404956, 18.305649643201548 ], [ -64.874372233425731, 18.30566355716752 ], [ -64.874287574853327, 18.305685014849928 ], [ -64.874195373874159, 18.305684176659213 ], [ -64.874110885559219, 18.3057054667035 ], [ -64.874018684580051, 18.305704796150906 ], [ -64.873926483600826, 18.305703957960191 ], [ -64.873834450259778, 18.305703287407596 ], [ -64.87374224928061, 18.305717201373568 ], [ -64.873642335637101, 18.305723739261168 ], [ -64.873549968329428, 18.305737653227141 ], [ -64.873457933678708, 18.305736815036425 ], [ -64.873365732699483, 18.305736144483831 ], [ -64.873273699358435, 18.305735306293116 ], [ -64.87317378833427, 18.305734635740578 ], [ -64.873081587355102, 18.305741173628178 ], [ -64.872989552704325, 18.305740335437463 ], [ -64.872897519363278, 18.305732288806553 ], [ -64.872805487331902, 18.305716866097271 ], [ -64.872713452681182, 18.305701443388045 ], [ -64.872621420649807, 18.305686020678763 ], [ -64.872529553637207, 18.305670597969538 ], [ -64.872437521605832, 18.305655175260313 ], [ -64.872407179101742, 18.30564444641908 ], [ -64.872311792997834, 18.30553665509251 ], [ -64.872233673622702, 18.30549508083277 ], [ -64.872155554247627, 18.305453674211208 ], [ -64.872077433562822, 18.305412099951468 ], [ -64.872006356299437, 18.305363820166008 ], [ -64.871935445364556, 18.30530866721665 ], [ -64.871864534429619, 18.30526038743119 ], [ -64.871793791132859, 18.305198361317878 ], [ -64.871708463317589, 18.305163660222092 ], [ -64.871622800225964, 18.305149243341702 ], [ -64.871537303462901, 18.305128120935535 ], [ -64.871444600878931, 18.3051205772191 ], [ -64.871344856183214, 18.305099287174812 ], [ -64.871259528367943, 18.30506441844085 ], [ -64.871181408992811, 18.30502284418111 ], [ -64.871103289617736, 18.30497456439565 ], [ -64.871039587122993, 18.304912705920515 ], [ -64.870975884628308, 18.304843974281482 ], [ -64.870926599013956, 18.30477541028057 ], [ -64.870870104959408, 18.304706678641537 ], [ -64.870813610904918, 18.304638114640625 ], [ -64.870749908410176, 18.30457625616549 ], [ -64.870693414355628, 18.304507524526457 ], [ -64.870622503420748, 18.304452371577099 ], [ -64.870537175605421, 18.304424543645212 ], [ -64.87045184779015, 18.304389674911249 ], [ -64.870373560776898, 18.304348100651509 ], [ -64.87028806532345, 18.304333851409297 ], [ -64.870202569870003, 18.304312561365009 ], [ -64.870117074416555, 18.304298312122739 ], [ -64.870031243686867, 18.304311220259819 ], [ -64.869945412957122, 18.304337874724752 ], [ -64.869866455391275, 18.304378107879302 ], [ -64.869794706265679, 18.304425214197749 ], [ -64.869744079546194, 18.304492940007947 ], [ -64.869714910509117, 18.30457457978406 ], [ -64.869692614635994, 18.304656219560172 ], [ -64.869669145295802, 18.304737859336342 ], [ -64.869670486400992, 18.304756299532187 ], [ -64.869671827506124, 18.304774572089855 ], [ -64.86967283333496, 18.3047930122857 ], [ -64.869673839163852, 18.304811452481545 ], [ -64.869674677354567, 18.30482989267739 ], [ -64.869675347907162, 18.304848165235057 ], [ -64.869675850821579, 18.304866605430902 ], [ -64.869676186097877, 18.304885045626747 ], [ -64.869676521374174, 18.304903485822592 ], [ -64.869676521374174, 18.304921926018437 ], [ -64.869676521374174, 18.304940366214282 ], [ -64.869676186097877, 18.304958806410127 ], [ -64.869675850821579, 18.304977246605972 ], [ -64.869675347907162, 18.304995686801817 ], [ -64.869674677354567, 18.305014126997662 ], [ -64.869674006801972, 18.30503239955533 ], [ -64.869673000973137, 18.305050839751175 ], [ -64.869671995144245, 18.30506927994702 ], [ -64.869670654039112, 18.305087720142865 ], [ -64.869669312933979, 18.305105992700533 ], [ -64.869667804190669, 18.305124432896378 ], [ -64.869666127809239, 18.305142705454102 ], [ -64.869664283789632, 18.305161145649947 ], [ -64.869662439770082, 18.305179418207615 ], [ -64.869660260474177, 18.30519769076534 ], [ -64.869658081178329, 18.305216130961185 ], [ -64.869655566606127, 18.305234403518853 ], [ -64.869653052033982, 18.305252676076577 ], [ -64.86965036982366, 18.305270780996125 ], [ -64.869647519975217, 18.305289053553793 ], [ -64.869644670126775, 18.305307326111517 ], [ -64.869641485002035, 18.305325431031065 ], [ -64.869638299877295, 18.305343703588733 ], [ -64.869634779476314, 18.30536180850828 ], [ -64.869631259075277, 18.305379913427828 ], [ -64.869627571036119, 18.305398018347375 ], [ -64.869623715358784, 18.305415955628803 ], [ -64.869619859681507, 18.30543406054835 ], [ -64.869615668727874, 18.305451997829778 ], [ -64.869611477774299, 18.305470102749325 ], [ -64.86960695154437, 18.305488040030752 ], [ -64.869602425314497, 18.305505809674003 ], [ -64.869597731446447, 18.305523746955373 ], [ -64.869593037578454, 18.3055416842368 ], [ -64.869588008434107, 18.305559453880051 ], [ -64.86958281165164, 18.305577223523358 ], [ -64.869577614869172, 18.305594993166608 ], [ -64.869572250448584, 18.305612595171738 ], [ -64.869566718389819, 18.305630197176868 ], [ -64.869561018692934, 18.305647799181941 ], [ -64.869555151357872, 18.305665401187071 ], [ -64.869549284022867, 18.3056830031922 ], [ -64.869543249049684, 18.305700437559153 ], [ -64.869536878800204, 18.305717871926163 ], [ -64.869530676188845, 18.305735306293116 ], [ -64.869524138301244, 18.305752573021948 ], [ -64.869517432775467, 18.305770007388958 ], [ -64.869510727249747, 18.305787106479613 ], [ -64.869503686447672, 18.305804373208446 ], [ -64.869496645645654, 18.305821472299158 ], [ -64.869489604843579, 18.305838571389813 ], [ -64.869482228765264, 18.305855670480526 ], [ -64.869474685048772, 18.305872769571181 ], [ -64.869467141332279, 18.305889701023773 ], [ -64.869459429977667, 18.305906464838131 ], [ -64.869451550984877, 18.305923396290723 ], [ -64.869443671992144, 18.305940160105081 ], [ -64.869435457723057, 18.305956756281375 ], [ -64.869427243454027, 18.305973520095733 ], [ -64.869418861546819, 18.305990116272028 ], [ -64.869410312001492, 18.306006544810145 ], [ -64.869401594817987, 18.306023140986383 ], [ -64.869392877634482, 18.306039569524501 ], [ -64.869383992812857, 18.306055830424441 ], [ -64.869374940353111, 18.306072091324438 ], [ -64.869365720255189, 18.306088352224378 ], [ -64.869356500157267, 18.306104445486199 ], [ -64.869347112421167, 18.306120538748019 ], [ -64.869337557047004, 18.306136632009839 ], [ -64.869327834034607, 18.306152557633538 ], [ -64.869317943384146, 18.306168315619061 ], [ -64.869308052733629, 18.306184241242761 ], [ -64.869297994444992, 18.306199831590163 ], [ -64.869287936156354, 18.306215589575686 ], [ -64.869277542591419, 18.306231179923088 ], [ -64.869267149026484, 18.306246602632314 ], [ -64.869256587823429, 18.306262025341596 ], [ -64.869245858982197, 18.306277448050821 ], [ -64.869235130141021, 18.306292703121926 ], [ -64.869224233661612, 18.306307958193031 ], [ -64.869213169544139, 18.306323045626016 ], [ -64.869202105426609, 18.306338133058944 ], [ -64.869190706032839, 18.306353052853751 ], [ -64.869179306639069, 18.306367805010439 ], [ -64.869167907245242, 18.306382724805246 ], [ -64.869156340213294, 18.306397309323756 ], [ -64.869144437905106, 18.306412061480444 ], [ -64.869132703235039, 18.306426478360834 ], [ -64.869120633288674, 18.306441062879344 ], [ -64.869108563342252, 18.306455312121614 ], [ -64.869096493395887, 18.306469561363826 ], [ -64.869084088173281, 18.306483810606096 ], [ -64.869071682950619, 18.306497892210189 ], [ -64.869059110089779, 18.306511973814281 ], [ -64.869046537228996, 18.306525887780253 ], [ -64.869033796730037, 18.306539634108049 ], [ -64.869020888592956, 18.306553380435844 ], [ -64.869007980455876, 18.306567125453967 ], [ -64.868994904680619, 18.306580537815194 ], [ -64.868981661267298, 18.306594116504812 ], [ -64.868968417853921, 18.306607359918189 ], [ -64.868955006802366, 18.306620603331567 ], [ -64.868941428112691, 18.306633845435272 ], [ -64.868927849423073, 18.306646922520201 ], [ -64.868914103095221, 18.306659829347609 ], [ -64.868900356767426, 18.306672737484689 ], [ -64.868886442801454, 18.306685479293321 ], [ -64.868872361197361, 18.306698218482609 ], [ -64.868858279593269, 18.306710792653064 ], [ -64.868844030351056, 18.306723197875726 ], [ -64.868829781108786, 18.306735603098389 ], [ -64.868815364228396, 18.306747839373202 ], [ -64.868800947348063, 18.306759910629239 ], [ -64.868786362829496, 18.306771980575604 ], [ -64.868771610672866, 18.306783882883849 ], [ -64.868756858516178, 18.306795785192094 ], [ -64.868741938721371, 18.306807519862161 ], [ -64.868727018926506, 18.306819086894109 ], [ -64.868711931493579, 18.306830653925999 ], [ -64.868696676422474, 18.306842053319826 ], [ -64.868681421351368, 18.306853285075476 ], [ -64.868666166280263, 18.306864516831126 ], [ -64.868650743571038, 18.306875580948599 ], [ -64.868635153223636, 18.306886477427952 ], [ -64.868619562876233, 18.306897373907361 ], [ -64.868603972528831, 18.306908101438864 ], [ -64.868588214543308, 18.306918663951649 ], [ -64.868572288919609, 18.306929225154704 ], [ -64.868556363295966, 18.306939617409967 ], [ -64.868540270034146, 18.306949844646397 ], [ -64.868524176772269, 18.306960070573211 ], [ -64.868508083510449, 18.306970128861849 ], [ -64.868491822610508, 18.306980019512309 ], [ -64.868475561710511, 18.306989742524706 ], [ -64.86845913317245, 18.306999465537046 ], [ -64.868442536996156, 18.307009020911266 ], [ -64.868425940819918, 18.307018408647309 ], [ -64.86840934464368, 18.307027796383352 ], [ -64.868392748467386, 18.307037016481274 ], [ -64.868375817014851, 18.307046068941077 ], [ -64.868359053200436, 18.307055121400822 ], [ -64.868342121747901, 18.307063838584327 ], [ -64.868325190295366, 18.307072554458159 ], [ -64.868308091204653, 18.30708127295128 ], [ -64.868290992113998, 18.307089654858487 ], [ -64.868273725385166, 18.307098035456022 ], [ -64.868256458656333, 18.307106251034782 ], [ -64.868239191927501, 18.307114296356019 ], [ -64.868221757560491, 18.307122344296602 ], [ -64.868204323193538, 18.307130223289334 ], [ -64.868186721188408, 18.307137934643947 ], [ -64.868169119183278, 18.307145478360439 ], [ -64.868151517178205, 18.307153022076932 ], [ -64.868133915173075, 18.307160230517127 ], [ -64.868116145529825, 18.307167438957322 ], [ -64.868098208248398, 18.307174647397517 ], [ -64.868080438605148, 18.307181520561414 ], [ -64.868062502633393, 18.30718839241564 ], [ -64.868044564042293, 18.307195099251089 ], [ -64.868026459122746, 18.307201637138689 ], [ -64.868008354203198, 18.307208007388169 ], [ -64.867990250593323, 18.307214377637649 ], [ -64.867972144364103, 18.307220580248952 ], [ -64.867910621165265, 18.307203145881999 ], [ -64.86782965194169, 18.307166768404727 ], [ -64.867742312468692, 18.307154027905824 ], [ -64.867654805357517, 18.307147322380047 ], [ -64.86756763352264, 18.307122847211019 ], [ -64.867480294049585, 18.307098204403871 ], [ -64.86739312352438, 18.307067694261661 ], [ -64.86731215299119, 18.307037184119451 ], [ -64.867224813518135, 18.307006506339064 ], [ -64.867137641683257, 18.306982031170037 ], [ -64.867056672459739, 18.306951521027827 ], [ -64.866975704545837, 18.306914975912434 ], [ -64.866888531401287, 18.306884464460552 ], [ -64.866801191928289, 18.306865857936259 ], [ -64.866720222704714, 18.306835346484377 ], [ -64.866639253481139, 18.306804837651839 ], [ -64.866558285567294, 18.306768292536447 ], [ -64.866470944784567, 18.306749683392809 ], [ -64.866396345810529, 18.306701404917021 ], [ -64.866321746836434, 18.306652957493384 ], [ -64.866247147862339, 18.306610545042929 ], [ -64.866172548888244, 18.306562265257469 ], [ -64.866098117552326, 18.306513817833888 ], [ -64.866017149638424, 18.306477271408824 ], [ -64.865942549354713, 18.306435027906161 ], [ -64.865824699739449, 18.306326566026996 ], [ -64.865756472324506, 18.306272251268354 ], [ -64.865681873350468, 18.306229838817956 ], [ -64.865656727628846, 18.306244423336466 ], [ -64.865613812263973, 18.306193796616981 ], [ -64.865528650777151, 18.306177534407311 ], [ -64.865443156633376, 18.306196311189126 ], [ -64.865357827508433, 18.306214919023091 ], [ -64.86527618773232, 18.306245261527181 ], [ -64.865194715594328, 18.306275604031214 ], [ -64.865113243456335, 18.306309969850759 ], [ -64.865043673626587, 18.306359758379529 ], [ -64.86496622480405, 18.306401835553686 ], [ -64.864880729350602, 18.306420443387651 ], [ -64.86479908957449, 18.306454809207196 ], [ -64.864713595430715, 18.306477271408824 ], [ -64.864628267615387, 18.306492192513304 ], [ -64.86460312058415, 18.306573497013119 ], [ -64.864598260387652, 18.306658824828446 ], [ -64.864512763624532, 18.306681288339746 ], [ -64.864423581441599, 18.306676762109817 ], [ -64.864338421264449, 18.306656645532541 ], [ -64.864253261087299, 18.306636528955266 ], [ -64.864163742318397, 18.306647425434619 ], [ -64.864090315501642, 18.306693358286111 ], [ -64.864004821357867, 18.306715989435531 ], [ -64.863964754531764, 18.306641893375854 ], [ -64.863896359478701, 18.306587074393121 ], [ -64.863811199301551, 18.306570814802797 ], [ -64.863721680532649, 18.306577855604871 ], [ -64.863632329401923, 18.306577185052276 ], [ -64.863542978271141, 18.306584225854351 ], [ -64.863449602515288, 18.306579531986301 ], [ -64.863360251384506, 18.306570982440974 ], [ -64.863270901563453, 18.306566456211101 ], [ -64.863181550432671, 18.306569472387991 ], [ -64.863100245932856, 18.306576682137859 ], [ -64.863068562323633, 18.306584225854351 ], [ -64.862987090185641, 18.306614568358384 ], [ -64.862901593422521, 18.306637031869684 ], [ -64.86281995495608, 18.306667542011894 ], [ -64.862738482818088, 18.306701740193262 ], [ -64.862664888363213, 18.306747673044754 ], [ -64.862615604058533, 18.306817075236381 ], [ -64.862578388390602, 18.306894356420742 ], [ -64.862513846395473, 18.306835683070346 ], [ -64.862428855166115, 18.306807855138459 ], [ -64.86233950403539, 18.306795449915796 ], [ -64.862250152904608, 18.306806346395149 ], [ -64.862188964982067, 18.306833000860024 ], [ -64.862257361344803, 18.306716157073652 ], [ -64.862325422431297, 18.306659326433191 ], [ -64.86238610743942, 18.306595289971824 ], [ -64.862446624809365, 18.306531252200841 ], [ -64.862477470227873, 18.306452462273171 ], [ -64.862515690415023, 18.306374007621741 ], [ -64.862546369505083, 18.306295385332248 ], [ -64.862584591001905, 18.306216763042698 ], [ -64.862615436420413, 18.306138140753148 ], [ -64.862653657917235, 18.306059518463599 ], [ -64.862669415902758, 18.305973687733911 ], [ -64.862700261321265, 18.30589489780624 ], [ -64.86272339538516, 18.305809067076495 ], [ -64.862746697087175, 18.305723236346751 ], [ -64.862769997479518, 18.305637405617006 ], [ -64.862778379386668, 18.305551407249141 ], [ -64.862809058476728, 18.305472784959647 ], [ -64.862824816462251, 18.305386786591725 ], [ -64.862833198369458, 18.30530078822386 ], [ -64.862841412638488, 18.305214789855995 ], [ -64.862849794545696, 18.305114542245917 ], [ -64.862850631426738, 18.305028376239875 ], [ -64.862866389412318, 18.30494254551013 ], [ -64.862874604991021, 18.304856547142265 ], [ -64.862882986898228, 18.3047705487744 ], [ -64.862891367495763, 18.30467734196634 ], [ -64.862892039357973, 18.304591343598474 ], [ -64.862892877548745, 18.304505345230609 ], [ -64.862893045186865, 18.304483719910024 ], [ -64.863365280528853, 18.304490090159504 ], [ -64.863733078616747, 18.304493107646067 ], [ -64.864135914386452, 18.304522779597562 ], [ -64.86440933219933, 18.304586482092304 ], [ -64.864984329723598, 18.304604922288149 ], [ -64.86520712081699, 18.304621853740684 ], [ -64.865459583861821, 18.30459385817062 ], [ -64.865711880578203, 18.304595869828347 ], [ -64.865995690646344, 18.304598216762372 ], [ -64.866279166747859, 18.304630570924189 ], [ -64.866468094936124, 18.304662254533412 ], [ -64.866657358400687, 18.304663930914842 ], [ -64.866815273532382, 18.304635097154062 ], [ -64.86706807185351, 18.304576926718084 ], [ -64.86735238614574, 18.304518923920284 ], [ -64.86757400377212, 18.304430410980217 ], [ -64.867826802093248, 18.30437224054424 ], [ -64.868111619299896, 18.304254055652734 ], [ -64.868333069288155, 18.304165542712724 ], [ -64.868680750798774, 18.304078035601549 ], [ -64.868933884396256, 18.303989690299659 ], [ -64.869123650775236, 18.303931016949264 ], [ -64.869376616734542, 18.303842671647374 ], [ -64.869559007035207, 18.303715937210484 ], [ -64.86985270906348, 18.303610828094236 ], [ -64.870093269800122, 18.303576965189109 ], [ -64.87036333485014, 18.303607810607616 ], [ -64.870671118482505, 18.303672518931194 ], [ -64.870865411091415, 18.303719457611521 ], [ -64.871082837764163, 18.303742759313536 ], [ -64.871277968563788, 18.303758684937236 ], [ -64.871563121046734, 18.303775448751651 ], [ -64.871848607496304, 18.303756170365091 ], [ -64.872179526502237, 18.303701520330094 ], [ -64.872530728413892, 18.303596578851966 ], [ -64.873672007588596, 18.304215163603317 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_134", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.951091315325868, 18.370989450506272 ], [ -64.951230788951989, 18.371014428589717 ], [ -64.951323157569334, 18.371021803358417 ], [ -64.951408317746484, 18.371042925764527 ], [ -64.951500686363829, 18.371057175006797 ], [ -64.951600095783192, 18.371071591887187 ], [ -64.95170654600463, 18.37109271560297 ], [ -64.951798914621975, 18.37110025800979 ], [ -64.951905532481589, 18.37111467489018 ], [ -64.95202623194524, 18.37112909177057 ], [ -64.952118600562585, 18.371143341012782 ], [ -64.95215799552642, 18.37154215215736 ], [ -64.95222689480363, 18.371822946048553 ], [ -64.952286741621037, 18.372095022756298 ], [ -64.952341894570395, 18.372335415854764 ], [ -64.952418337564097, 18.372514453392569 ], [ -64.95241649354449, 18.372728862578754 ], [ -64.952384809935268, 18.372988366425659 ], [ -64.952317587039545, 18.373236638516914 ], [ -64.95232328673643, 18.373573088271939 ], [ -64.952325298394157, 18.373849188295083 ], [ -64.952393694756893, 18.374180944182058 ], [ -64.952524955423655, 18.374428210444478 ], [ -64.952692090653215, 18.374658712892483 ], [ -64.95286827965225, 18.374851161481786 ], [ -64.953142199069873, 18.375069929259723 ], [ -64.953443277176518, 18.375229353134671 ], [ -64.953781738589214, 18.375416604941506 ], [ -64.954095389556642, 18.375629839351006 ], [ -64.954476766334267, 18.375939133036354 ], [ -64.954782873585202, 18.376173826437935 ], [ -64.95494078871684, 18.376389409091132 ], [ -64.955065176219705, 18.376601136066995 ], [ -64.955157377198873, 18.376903052364355 ], [ -64.955217559292578, 18.377234974579778 ], [ -64.9552137036153, 18.377686759377866 ], [ -64.955147151272115, 18.378107866395624 ], [ -64.955007005783727, 18.378402238976491 ], [ -64.954802319609882, 18.378705831655282 ], [ -64.954503420799142, 18.378902303560039 ], [ -64.954209886408989, 18.378541210997867 ], [ -64.953935965681694, 18.378180287383486 ], [ -64.953721053581091, 18.377876525756903 ], [ -64.953545201168026, 18.377629762408901 ], [ -64.953329953791126, 18.377344777564133 ], [ -64.953173212126501, 18.37717362032879 ], [ -64.953001885943365, 18.376738934621358 ], [ -64.953008591469086, 18.376719319648828 ], [ -64.952998031575703, 18.376636506405703 ], [ -64.952983613385641, 18.37655369447225 ], [ -64.952950421033108, 18.376474401630162 ], [ -64.952905830596478, 18.376402149590092 ], [ -64.95286509452751, 18.376326377148985 ], [ -64.95285822005394, 18.376243562596187 ], [ -64.952862747593485, 18.376160918300855 ], [ -64.952856878948808, 18.376078607972147 ], [ -64.952810610821018, 18.37600551643169 ], [ -64.952774234653475, 18.375917675353946 ], [ -64.952735845518475, 18.375850283510374 ], [ -64.95267013005639, 18.375764117504332 ], [ -64.952619838613145, 18.375719024153284 ], [ -64.952561835815345, 18.375653310000814 ], [ -64.95251757934534, 18.375582231427757 ], [ -64.95245018881144, 18.375528587221709 ], [ -64.95237173546974, 18.375469913871314 ], [ -64.952328149552272, 18.375384752384491 ], [ -64.952234438520122, 18.375309819443771 ], [ -64.952214489580967, 18.375276459453119 ], [ -64.95215145763882, 18.375215271530578 ], [ -64.95209999272862, 18.375143187128629 ], [ -64.952036960786472, 18.375081831567911 ], [ -64.951985495876272, 18.375015279224783 ], [ -64.951910730573729, 18.374970519840303 ], [ -64.951824227981717, 18.374942188993998 ], [ -64.951737560370987, 18.374930621962051 ], [ -64.951662792449042, 18.374885862577571 ], [ -64.951593894481562, 18.374830039075675 ], [ -64.951530862539414, 18.374768851153078 ], [ -64.951519964750389, 18.374686037909953 ], [ -64.951485935516814, 18.37460288939053 ], [ -64.951451903663894, 18.374525440567993 ], [ -64.951400438753694, 18.374458720586688 ], [ -64.951366409520176, 18.37438110412603 ], [ -64.951390212826936, 18.374298626159145 ], [ -64.951424243370184, 18.374253699136602 ], [ -64.951437654421682, 18.3742287210531 ], [ -64.951451400749477, 18.374141381580102 ], [ -64.951452072611744, 18.374053874468927 ], [ -64.951439833717529, 18.373966367357752 ], [ -64.951407814832066, 18.37388489521976 ], [ -64.951388871721747, 18.373803590719945 ], [ -64.951383004386742, 18.37371608360877 ], [ -64.951396918352657, 18.373628744135772 ], [ -64.951410664680509, 18.373541237024597 ], [ -64.951430948895904, 18.373460267801022 ], [ -64.951470846774214, 18.373385668826927 ], [ -64.951504374402987, 18.373304699603409 ], [ -64.951537734393639, 18.373223730379834 ], [ -64.951544942833834, 18.373136223268659 ], [ -64.951545782334222, 18.373048883795661 ], [ -64.951572604437274, 18.372967746933966 ], [ -64.951592888652669, 18.372886777710391 ], [ -64.951613171558449, 18.372805640848696 ], [ -64.951653069436702, 18.372731041874601 ], [ -64.951673353652154, 18.372649905012906 ], [ -64.951674191842869, 18.372562565539909 ], [ -64.951668324507807, 18.372475058428734 ], [ -64.951662624810922, 18.372387551317559 ], [ -64.951643681700659, 18.372306079179566 ], [ -64.951631276477997, 18.372218572068391 ], [ -64.951579477601172, 18.372149505153061 ], [ -64.951521139527074, 18.37208647321097 ], [ -64.951495658529154, 18.372005168711098 ], [ -64.951450562558762, 18.371929731546288 ], [ -64.951446874519604, 18.371862341012388 ], [ -64.951424913922722, 18.371766284355886 ], [ -64.951413346890774, 18.371685818046785 ], [ -64.951387865892912, 18.37160451354697 ], [ -64.951355848317064, 18.371523041408977 ], [ -64.951330367319201, 18.371441570580657 ], [ -64.951298348433681, 18.371360097132992 ], [ -64.951246546937512, 18.371291030217662 ], [ -64.951194746751014, 18.371221795664212 ], [ -64.951156191287566, 18.371146526137522 ], [ -64.951130710289704, 18.371065221637707 ], [ -64.951091315325868, 18.370989450506272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_150", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.866088060573361, 18.347327161461862 ], [ -64.866251338815971, 18.347161032061194 ], [ -64.866356281603771, 18.347007978435727 ], [ -64.866415288920791, 18.346867832947339 ], [ -64.866395507619757, 18.346668678832259 ], [ -64.866341360499291, 18.346543285500559 ], [ -64.866171207783111, 18.346476397881077 ], [ -64.866205742550449, 18.346444043719316 ], [ -64.866344210347734, 18.346294510494829 ], [ -64.866413444901184, 18.346223096645474 ], [ -64.866482511816514, 18.346171128820856 ], [ -64.866620310370877, 18.346093679998319 ], [ -64.866703123614002, 18.346042047449998 ], [ -64.86677906369323, 18.345990247263501 ], [ -64.866896242755899, 18.345925706578043 ], [ -64.866978888360904, 18.345887149804923 ], [ -64.86716463142443, 18.345823112033941 ], [ -64.867197320862545, 18.345817916561145 ], [ -64.867282313401518, 18.345839037657584 ], [ -64.867330594496707, 18.345869380161673 ], [ -64.86739731316834, 18.345927047683176 ], [ -64.867456489433152, 18.345991756006754 ], [ -64.867515665697965, 18.346063672770526 ], [ -64.867559922168027, 18.346135421896179 ], [ -64.86761909843284, 18.346200130219756 ], [ -64.867678274697653, 18.346271879345409 ], [ -64.867722531167715, 18.346343628471061 ], [ -64.867774163716035, 18.346415545234834 ], [ -64.867803332753112, 18.346494335162504 ], [ -64.867832501790133, 18.346572957452054 ], [ -64.86786183846533, 18.346651747379724 ], [ -64.867883463785915, 18.346737578109412 ], [ -64.867897545390008, 18.346823408839157 ], [ -64.867904250915785, 18.346909071930725 ], [ -64.867918500157998, 18.34699490266047 ], [ -64.867917661967283, 18.347080565752037 ], [ -64.867909447698253, 18.347166061205485 ], [ -64.867901233429166, 18.347251724297109 ], [ -64.867878099365328, 18.3473372197505 ], [ -64.867862341379805, 18.347422715203948 ], [ -64.867839208625583, 18.347508210657395 ], [ -64.867815905613895, 18.347593706110843 ], [ -64.867785395471685, 18.347671993124095 ], [ -64.867754717691355, 18.34775011249917 ], [ -64.867701744037845, 18.347821191072228 ], [ -64.867648770384335, 18.347892102007165 ], [ -64.867603340447317, 18.347963180580223 ], [ -64.86753561463712, 18.34801967463477 ], [ -64.867501416455752, 18.348025374331655 ], [ -64.867409047838407, 18.34802470377906 ], [ -64.867351884540994, 18.348020009911011 ], [ -64.866954414501549, 18.347851533576318 ], [ -64.866872439449139, 18.347811635698065 ], [ -64.866797337560627, 18.347765199932155 ], [ -64.866715528836664, 18.347725302053902 ], [ -64.866619976404252, 18.347665455236495 ], [ -64.866279000419354, 18.347459763233815 ], [ -64.866204064859346, 18.347400084054527 ], [ -64.866128962970834, 18.347353648288617 ], [ -64.866088060573361, 18.347327161461862 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_241", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.920964397844045, 18.319974487625132 ], [ -64.92087504671332, 18.319954538686034 ], [ -64.920771781616565, 18.319973481796296 ], [ -64.92068243048584, 18.319985887018959 ], [ -64.920593079355115, 18.319998293551237 ], [ -64.920503728224332, 18.320017235351884 ], [ -64.92041420945543, 18.320036178462146 ], [ -64.920324858324705, 18.320048583684809 ], [ -64.92018756268476, 18.320054115743517 ], [ -64.920098379192154, 18.320053445190979 ], [ -64.920009028061372, 18.320052607000264 ], [ -64.919892351913177, 18.320051768809549 ], [ -64.919803168420572, 18.320051099566626 ], [ -64.919713817289789, 18.320050260066239 ], [ -64.919624633797184, 18.320049589513644 ], [ -64.919535450304579, 18.320042381073449 ], [ -64.919439226009956, 18.320041542882734 ], [ -64.919350210155471, 18.320027796554939 ], [ -64.919261026662866, 18.320020588114744 ], [ -64.919164802368186, 18.320019749924029 ], [ -64.919075618875581, 18.320019079371434 ], [ -64.918986435382976, 18.320005165405519 ], [ -64.918897251890371, 18.319997956965324 ], [ -64.918808068397766, 18.319997286412729 ], [ -64.918718884905161, 18.319990077972534 ], [ -64.918629701412556, 18.319982701894219 ], [ -64.918540517919951, 18.319975493454024 ], [ -64.91843758809955, 18.319961579488051 ], [ -64.918348404606945, 18.319947665522079 ], [ -64.918252347950443, 18.319940457081884 ], [ -64.918149585768163, 18.319920006538041 ], [ -64.91805369674978, 18.319899553374796 ], [ -64.917971554059193, 18.319872563633567 ], [ -64.917889411368662, 18.319832665755314 ], [ -64.917786650496055, 18.319805676014141 ], [ -64.91765740148702, 18.319719342369979 ], [ -64.91759805758403, 18.319639881889714 ], [ -64.917561175882724, 18.319560756685746 ], [ -64.917531840517199, 18.319481631481779 ], [ -64.91752513368175, 18.319395465475793 ], [ -64.917525805544017, 18.319309467107871 ], [ -64.917526642425059, 18.319223468740006 ], [ -64.917530665740514, 18.319189773473056 ], [ -64.91754776483117, 18.319145349364931 ], [ -64.917570229652142, 18.31910562043447 ], [ -64.917595541702212, 18.319066225470635 ], [ -64.917670978867022, 18.319016604579986 ], [ -64.91771674539001, 18.318945189420958 ], [ -64.91770987091644, 18.318859023414973 ], [ -64.917665614446435, 18.318779899520678 ], [ -64.917583305427399, 18.318750561535808 ], [ -64.91749311479623, 18.318749724654765 ], [ -64.917402925474789, 18.318763469672888 ], [ -64.917312568515172, 18.318784256802758 ], [ -64.917237131350362, 18.318826670562828 ], [ -64.917154319416909, 18.31885466482322 ], [ -64.917064296423916, 18.318853995580298 ], [ -64.916981818457032, 18.318824657595428 ], [ -64.916899509437997, 18.318795320920231 ], [ -64.916817197799617, 18.318758775804838 ], [ -64.916727177425969, 18.318750896812105 ], [ -64.916637154432976, 18.318743017819315 ], [ -64.916547132749656, 18.318742348576393 ], [ -64.916472367447113, 18.31869876134931 ], [ -64.916412854596331, 18.318633717749435 ], [ -64.916368430488149, 18.318561633347485 ], [ -64.916324006379966, 18.318489548945593 ], [ -64.916302045783141, 18.318417633491492 ], [ -64.916294669704769, 18.318410423741625 ], [ -64.916235159473331, 18.318345381451422 ], [ -64.916160560499236, 18.318294585784145 ], [ -64.916085792577348, 18.318250999866677 ], [ -64.916003483558313, 18.318221664501152 ], [ -64.915921173229606, 18.31818511938576 ], [ -64.915831319184463, 18.318162989841085 ], [ -64.915741297501086, 18.318140695277577 ], [ -64.915658987172435, 18.31811135860238 ], [ -64.915614563064253, 18.318039272890815 ], [ -64.915570137646398, 18.317967188488865 ], [ -64.915503082388796, 18.317909354638857 ], [ -64.915428483414757, 18.317851350531384 ], [ -64.91533879831735, 18.317793347733584 ], [ -64.915264199343312, 18.317749595487669 ], [ -64.915174176350263, 18.317727467252666 ], [ -64.915091867331284, 18.317698130577412 ], [ -64.915002013286085, 18.317683041834812 ], [ -64.914911656326467, 18.317696620524487 ], [ -64.914828843083342, 18.317724617404167 ], [ -64.914723566328917, 18.317752611664559 ], [ -64.914640753085735, 18.317780608544297 ], [ -64.914611416410537, 18.317797035772742 ], [ -64.914519215431369, 18.317773232465925 ], [ -64.914429695352794, 18.317772560603714 ], [ -64.914340177893564, 18.317771891360792 ], [ -64.914250659124662, 18.317759987742875 ], [ -64.914165162361542, 18.317740709356315 ], [ -64.914079668217767, 18.317721432279427 ], [ -64.913994340402496, 18.317694776504879 ], [ -64.913904821633594, 18.317682875506307 ], [ -64.913819493818323, 18.317656219731759 ], [ -64.913738020370658, 18.317625878537399 ], [ -64.913660405219616, 18.317587992316817 ], [ -64.913582788758958, 18.317550272424739 ], [ -64.913509195613756, 18.317505011435571 ], [ -64.913447504776741, 18.317444995670314 ], [ -64.913401404287185, 18.317373918406929 ], [ -64.913367038467641, 18.317295631393677 ], [ -64.913336528325431, 18.317217344380424 ], [ -64.913317752853288, 18.317135369328014 ], [ -64.913299145019323, 18.317054566432944 ], [ -64.91329948029562, 18.317025901620013 ], [ -64.913300150848158, 18.316939903252148 ], [ -64.913323452550173, 18.316857591613768 ], [ -64.913357818369718, 18.316778970633891 ], [ -64.913403583583033, 18.316704036383499 ], [ -64.913423029607713, 18.316621726054791 ], [ -64.913382461176866, 18.316546121251861 ], [ -64.913311550241986, 18.316495325584583 ], [ -64.913248183023541, 18.316437490424903 ], [ -64.913161178826783, 18.316429611432113 ], [ -64.9130746775445, 18.316446710522825 ], [ -64.912995552340533, 18.316482083480878 ], [ -64.91293486733241, 18.316542433212703 ], [ -64.912863118206758, 18.316592054103353 ], [ -64.912780304963633, 18.316616529272324 ], [ -64.912704867798823, 18.316658940413106 ], [ -64.912614846115503, 18.316658271170184 ], [ -64.912524656794062, 18.316653912578488 ], [ -64.912461457213738, 18.316596077418808 ], [ -64.91242072114477, 18.316520472615821 ], [ -64.912271020282162, 18.31646196559393 ], [ -64.912184854276177, 18.316446879470618 ], [ -64.912110255302082, 18.31639977315217 ], [ -64.912027944973374, 18.316366748437815 ], [ -64.911945467006547, 18.316337410452945 ], [ -64.911863156677839, 18.316308075087363 ], [ -64.911788557703744, 18.316264489169953 ], [ -64.911713791091529, 18.316220903252486 ], [ -64.911631480762821, 18.31618787853813 ], [ -64.911602144087624, 18.316101712532145 ], [ -64.911546488223792, 18.31603666893227 ], [ -64.911490664721839, 18.315971625332395 ], [ -64.911446240613714, 18.315899540930445 ], [ -64.911451940310599, 18.31587121008414 ], [ -64.911452443225016, 18.315809183970828 ], [ -64.911453281415731, 18.31571983153043 ], [ -64.911457640007484, 18.315637187235097 ], [ -64.911447581718846, 18.315554541630092 ], [ -64.911397625551956, 18.315485307076642 ], [ -64.911358733502539, 18.315409366997415 ], [ -64.911294360455202, 18.315353877462087 ], [ -64.911215402889411, 18.31531884239962 ], [ -64.911129069245249, 18.315311131045007 ], [ -64.911042567962966, 18.315300234565655 ], [ -64.910956401956923, 18.315278776883247 ], [ -64.910881132430291, 18.315237034985387 ], [ -64.910802174864443, 18.315198478212267 ], [ -64.910712153181123, 18.31519780635 ], [ -64.910621963859626, 18.315197137107077 ], [ -64.910535630215463, 18.315192946153502 ], [ -64.91044912893318, 18.315195628363824 ], [ -64.910355419210703, 18.315194957811229 ], [ -64.910272773605698, 18.315170147365905 ], [ -64.910201192118222, 18.315121532304147 ], [ -64.910162300068805, 18.315045424586799 ], [ -64.910137658571273, 18.314966130434982 ], [ -64.91010228561322, 18.314890190355754 ], [ -64.910088706923602, 18.314807378422302 ], [ -64.910085857075103, 18.314724900455474 ], [ -64.910057693866918, 18.314645439975209 ], [ -64.9099787376108, 18.314610403603126 ], [ -64.909892235018788, 18.314613253451569 ], [ -64.909809086499365, 18.314640075554564 ], [ -64.90972610561812, 18.314663544894756 ], [ -64.90963943669766, 18.314683493833911 ], [ -64.909550757429145, 18.314689696445214 ], [ -64.909468110514467, 18.314661533237029 ], [ -64.909381776870305, 18.314646948718519 ], [ -64.909299298903477, 18.314615432747416 ], [ -64.909216654608144, 18.314583749138194 ], [ -64.909159488691387, 18.314521387748641 ], [ -64.909084220474426, 18.314479478212661 ], [ -64.909008949638064, 18.314437568676624 ], [ -64.908951952669099, 18.314375207287071 ], [ -64.908876684452139, 18.314329944988174 ], [ -64.908790349498304, 18.314315360469664 ], [ -64.908700161486479, 18.314314689917069 ], [ -64.908617180605233, 18.314338159257261 ], [ -64.908626568341276, 18.313682191199803 ], [ -64.908855728374476, 18.313655872011168 ], [ -64.909403569829067, 18.313704151796628 ], [ -64.910032715783473, 18.313778583132603 ], [ -64.910819776869573, 18.313935492435348 ], [ -64.911468033572419, 18.314147722325686 ], [ -64.911982850312654, 18.314366322465446 ], [ -64.912352492420155, 18.314555921206306 ], [ -64.91286110654903, 18.314915505025169 ], [ -64.913272825830688, 18.315248768345782 ], [ -64.913549093492009, 18.315583543029049 ], [ -64.913672810442279, 18.315855618427065 ], [ -64.913976569449574, 18.316188884367023 ], [ -64.914424499879999, 18.31646397856133 ], [ -64.914612925153847, 18.316555844264201 ], [ -64.914989440425302, 18.316769750535968 ], [ -64.915303425359298, 18.316922804161436 ], [ -64.915523366604248, 18.317014837502484 ], [ -64.915743475487318, 18.317107038481709 ], [ -64.915994932703313, 18.317199405789381 ], [ -64.916309255533008, 18.317322284548936 ], [ -64.916655091714404, 18.317445498584732 ], [ -64.917027417341899, 18.317562008404536 ], [ -64.917724121468325, 18.317815477278259 ], [ -64.917869462429508, 18.317851350531384 ], [ -64.918090409503293, 18.317957297838404 ], [ -64.918300460097726, 18.31817070250537 ], [ -64.918444628901568, 18.318363317423177 ], [ -64.918852492505948, 18.31860756750865 ], [ -64.919067070639926, 18.318731787373338 ], [ -64.919293213186506, 18.318817113878993 ], [ -64.919600661542631, 18.31886254381601 ], [ -64.920017242330459, 18.318857683619512 ], [ -64.920313961845352, 18.318860030553481 ], [ -64.920734565948635, 18.318863382006725 ], [ -64.920837160492738, 18.318864221507113 ], [ -64.921231110131146, 18.318801020617116 ], [ -64.921531685323373, 18.31877922765841 ], [ -64.921752129482684, 18.318811078905753 ], [ -64.922004257251274, 18.31884326542945 ], [ -64.922491916612159, 18.318828010358345 ], [ -64.922829875110494, 18.318809068557698 ], [ -64.923328932555478, 18.318823485438088 ], [ -64.923588436402383, 18.318846282916013 ], [ -64.923810893529151, 18.318923396462253 ], [ -64.924068553356506, 18.319089190586681 ], [ -64.922870611179462, 18.319839538919211 ], [ -64.922848315306339, 18.319799808679079 ], [ -64.922775391404002, 18.319746667387449 ], [ -64.922688388516917, 18.319732753421476 ], [ -64.922609933865544, 18.319771645470894 ], [ -64.922554278001769, 18.319836856708889 ], [ -64.922467106166891, 18.319844904649528 ], [ -64.922379934331957, 18.319844232787261 ], [ -64.922292427220839, 18.319865522831549 ], [ -64.922205255385961, 18.319873569462459 ], [ -64.922122274504659, 18.319903576690251 ], [ -64.922039461261534, 18.319929226635907 ], [ -64.921952289426656, 18.319937271957201 ], [ -64.921873834775226, 18.319976164006562 ], [ -64.921786662940349, 18.319979852045776 ], [ -64.921694797237478, 18.319979181493181 ], [ -64.921607793040721, 18.319956551653434 ], [ -64.921534870448056, 18.319912127545251 ], [ -64.921461780217271, 18.319863343535644 ], [ -64.921374608382393, 18.319862672983106 ], [ -64.921287268909396, 18.319870719614016 ], [ -64.921199929436341, 18.319892009658304 ], [ -64.921112589963343, 18.319913132064414 ], [ -64.921038829179963, 18.319956382705584 ], [ -64.920964397844045, 18.319974487625132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_943", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.845410567373222, 18.31577984729563 ], [ -64.845416771294197, 18.315733579167897 ], [ -64.845417106570494, 18.315695356361402 ], [ -64.845432026365302, 18.315613717894962 ], [ -64.845447113798286, 18.315532078118792 ], [ -64.845453484047766, 18.315447588494237 ], [ -64.845454322238481, 18.315362931231505 ], [ -64.845460860126082, 18.315278441606949 ], [ -64.845452981133292, 18.315193784344217 ], [ -64.845445269778679, 18.315109293409989 ], [ -64.845437390785946, 18.315024637456929 ], [ -64.845412411392772, 18.314945344614841 ], [ -64.845395984164327, 18.314863369562374 ], [ -64.845362456535554, 18.314786758930609 ], [ -64.845320379361397, 18.314712662870932 ], [ -64.845260867820286, 18.314652313139106 ], [ -64.845201523917297, 18.314583581500074 ], [ -64.845133462830859, 18.314536642819746 ], [ -64.845028186076433, 18.314450309175584 ], [ -64.845118040121577, 18.314465396608568 ], [ -64.845208061804954, 18.314470927357604 ], [ -64.845293054343927, 18.314495571474481 ], [ -64.845377879244779, 18.314520214281629 ], [ -64.845467900928156, 18.314530607846564 ], [ -64.845508804635244, 18.314537313372341 ], [ -64.845542835178492, 18.314609062497937 ], [ -64.845614415356295, 18.314705957345154 ], [ -64.845635705400582, 18.314787261845026 ], [ -64.845622294349084, 18.314871416193284 ], [ -64.845605867120639, 18.314955402903479 ], [ -64.845608214054664, 18.315039724889914 ], [ -64.845604358377329, 18.315123879238172 ], [ -64.845603520186614, 18.315208033586487 ], [ -64.845599664509336, 18.315292187934745 ], [ -64.845592622397589, 18.315376342283059 ], [ -64.845576027531024, 18.315460496631317 ], [ -64.845553396381547, 18.315541465854892 ], [ -64.845527412469266, 18.31562243507841 ], [ -64.845542499902194, 18.31568814923088 ], [ -64.845486844038419, 18.315754701574065 ], [ -64.845446107969394, 18.315830809291413 ], [ -64.845438899529199, 18.315859140137775 ], [ -64.845410567373222, 18.31577984729563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_565", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 18.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.850220943915303, 18.315353040581044 ], [ -64.850210382712191, 18.31527056261416 ], [ -64.850203678496143, 18.315188084647332 ], [ -64.850151709361796, 18.315119520646419 ], [ -64.850095719531396, 18.315090351609399 ], [ -64.850077110387758, 18.315075767090832 ], [ -64.850002343775486, 18.315028493134264 ], [ -64.849905282599821, 18.314974009427772 ], [ -64.849822970961441, 18.314940986023089 ], [ -64.849732950587793, 18.314940315470494 ], [ -64.849646615633958, 18.314921707636529 ], [ -64.849560281989795, 18.314928077886009 ], [ -64.849473780707456, 18.314938136174646 ], [ -64.849398343542703, 18.314980548625044 ], [ -64.849333970495366, 18.315037377955889 ], [ -64.849258534640285, 18.315083310807324 ], [ -64.849183097475475, 18.315125723257779 ], [ -64.849093243430275, 18.315103595022777 ], [ -64.849010931791895, 18.315070570308364 ], [ -64.848920742470398, 18.315069898446154 ], [ -64.84883055445863, 18.315072749604269 ], [ -64.848744388452587, 18.315053974132127 ], [ -64.848658222446602, 18.315046095139337 ], [ -64.848571887492767, 18.315034694435894 ], [ -64.848485721486725, 18.315016087911602 ], [ -64.848414810551844, 18.314965293553939 ], [ -64.848351612281192, 18.314907290756139 ], [ -64.848276173806767, 18.314861190266527 ], [ -64.848227558745009, 18.314835709268664 ], [ -64.848144745501827, 18.314863704838672 ], [ -64.848058245529216, 18.314877283528347 ], [ -64.847971910575382, 18.314883821415947 ], [ -64.847885744569396, 18.314865213581982 ], [ -64.847803266602511, 18.314839397307821 ], [ -64.847717100596526, 18.314831518315032 ], [ -64.847630600623859, 18.314841576603669 ], [ -64.847544434617873, 18.314826489170741 ], [ -64.847454245296376, 18.314829339019184 ], [ -64.847364223613056, 18.314824980427431 ], [ -64.847277888659221, 18.314813413395484 ], [ -64.847191722653236, 18.314791285160481 ], [ -64.8471094136342, 18.314765468886321 ], [ -64.847053756460696, 18.314700425286446 ], [ -64.847016877378678, 18.314624820483459 ], [ -64.846983851354651, 18.314545695279492 ], [ -64.846961389153023, 18.314526584531109 ], [ -64.846928195490818, 18.314461708569354 ], [ -64.846913947558278, 18.314379062964406 ], [ -64.846914784439321, 18.314293064596484 ], [ -64.846926688057238, 18.314210754267833 ], [ -64.846923838208795, 18.314124588261791 ], [ -64.846920819412503, 18.314038589893926 ], [ -64.846925345642376, 18.313952423887883 ], [ -64.846899698316008, 18.313873466322093 ], [ -64.846877905357303, 18.313790653078968 ], [ -64.846859968075933, 18.313708175112083 ], [ -64.846842029484833, 18.313607592225708 ], [ -64.84682040547392, 18.313524946620703 ], [ -64.84679106748905, 18.313445821416735 ], [ -64.846754188407033, 18.313370216613805 ], [ -64.846732395448328, 18.3132875710088 ], [ -64.846721834245272, 18.313204925403795 ], [ -64.84671881544898, 18.31311892703593 ], [ -64.846723510626703, 18.313032928668065 ], [ -64.846750500367875, 18.312954138740395 ], [ -64.846766258353398, 18.312871828411687 ], [ -64.846808166579763, 18.312796894161295 ], [ -64.84681722034918, 18.312713745641872 ], [ -64.846813532310023, 18.312710225240835 ], [ -64.846757707498398, 18.312645181641017 ], [ -64.846683108524303, 18.312601428085429 ], [ -64.84660834322176, 18.312554321766925 ], [ -64.84652620053123, 18.312517776651532 ], [ -64.84644757824168, 18.312477711135159 ], [ -64.84636912359025, 18.312437477980552 ], [ -64.84631715445596, 18.312368913979697 ], [ -64.846299218484205, 18.312286436012812 ], [ -64.84630743144362, 18.312203958045984 ], [ -64.846356886005765, 18.312132711834806 ], [ -64.846285975070828, 18.312081917477144 ], [ -64.84621137609679, 18.312034643520519 ], [ -64.846136777122695, 18.311991057603109 ], [ -64.846069554226972, 18.311936575206289 ], [ -64.846010041376132, 18.311875219645572 ], [ -64.845954385512357, 18.311810176045753 ], [ -64.8458759321706, 18.311770110529324 ], [ -64.845793621841949, 18.311733565413931 ], [ -64.845707288197787, 18.311725686421141 ], [ -64.845631851032977, 18.311768098871596 ], [ -64.845545348440965, 18.311781677561271 ], [ -64.845455328067317, 18.311781007008676 ], [ -64.845365138745876, 18.311783856857119 ], [ -64.845278637463537, 18.311804643986989 ], [ -64.845221808132749, 18.311868681757971 ], [ -64.845183586635926, 18.311943616008364 ], [ -64.845134133383453, 18.312014862219542 ], [ -64.845095911886574, 18.312089964108054 ], [ -64.845095072386187, 18.312175962475919 ], [ -64.845094235505144, 18.312261960843784 ], [ -64.845082333196956, 18.312344438810669 ], [ -64.845073951289748, 18.312426749139377 ], [ -64.845058193304169, 18.312509227106204 ], [ -64.845031203562996, 18.312587849395754 ], [ -64.844992982066174, 18.31266278364609 ], [ -64.844977726995069, 18.312687761729592 ], [ -64.844920227111686, 18.31275263769129 ], [ -64.844863230142721, 18.312816675462329 ], [ -64.844791481017069, 18.312866296352922 ], [ -64.844734651686281, 18.312930334123962 ], [ -64.844659046883351, 18.31297274657436 ], [ -64.844583609718541, 18.313018679425795 ], [ -64.844504484514573, 18.313053883436055 ], [ -64.844417983232233, 18.313063941724693 ], [ -64.844331817226248, 18.31304181348969 ], [ -64.844241795542928, 18.313037454897938 ], [ -64.844155461898765, 18.313029575905205 ], [ -64.844069128254603, 18.313035946154628 ], [ -64.843993523451672, 18.31308187900612 ], [ -64.84390718980751, 18.313095625333915 ], [ -64.843827896965365, 18.313130829344175 ], [ -64.843774755673735, 18.313198555154315 ], [ -64.843747765932562, 18.313277177443865 ], [ -64.843739216387178, 18.313399050374585 ], [ -64.84376100934594, 18.313481695979533 ], [ -64.843782802304645, 18.313564341584538 ], [ -64.843819515058158, 18.313639946387468 ], [ -64.843867794843675, 18.313712030789418 ], [ -64.843919595030172, 18.31378059479033 ], [ -64.843956475421805, 18.31385619959326 ], [ -64.843978268380567, 18.313938845198265 ], [ -64.844007605055765, 18.314017970402233 ], [ -64.844067116596875, 18.314079493601071 ], [ -64.84413048381532, 18.314137328760751 ], [ -64.844197539072923, 18.314191643519393 ], [ -64.84423810750377, 18.314267248322324 ], [ -64.844301474722158, 18.314325251120181 ], [ -64.843601753109112, 18.315210380520455 ], [ -64.843222555627392, 18.315002676860047 ], [ -64.842954502235159, 18.314756584064696 ], [ -64.842813853832297, 18.314547539299099 ], [ -64.842665326436759, 18.314352576137651 ], [ -64.842554349985392, 18.314179573573028 ], [ -64.842412528115574, 18.313773889264553 ], [ -64.842395429024918, 18.313496951050638 ], [ -64.842375480085764, 18.313209954548142 ], [ -64.842378163605758, 18.312901500363182 ], [ -64.842373468428036, 18.312593213816342 ], [ -64.842526186777206, 18.312321975299369 ], [ -64.842768088618982, 18.312144614142994 ], [ -64.843058773160692, 18.311983681524794 ], [ -64.843388852666237, 18.311851917943557 ], [ -64.843578786683395, 18.311763069727249 ], [ -64.843975250893948, 18.311615548160546 ], [ -64.844464418998143, 18.311469200060856 ], [ -64.844780584537716, 18.311381526621176 ], [ -64.845128936600986, 18.31123383610668 ], [ -64.845382237836532, 18.311115483576998 ], [ -64.845641406407196, 18.31104155646517 ], [ -64.845924379594237, 18.31100903335556 ], [ -64.846074751009382, 18.311021438578223 ], [ -64.846454282457728, 18.311133085582128 ], [ -64.846737089316377, 18.311247079520058 ], [ -64.846955857094258, 18.311459813634428 ], [ -64.847299515289478, 18.311824090011669 ], [ -64.847610985651329, 18.312248382154166 ], [ -64.847859929604851, 18.312611821650307 ], [ -64.847964200530441, 18.31295497693111 ], [ -64.848172239467146, 18.313193358371848 ], [ -64.848395867441582, 18.313367366765362 ], [ -64.84868722253583, 18.313541878073238 ], [ -64.849091062824755, 18.313724603650201 ], [ -64.849741163547151, 18.313832227338651 ], [ -64.850481119624476, 18.313943706704435 ], [ -64.850874732676914, 18.314022328993929 ], [ -64.85163094834445, 18.314088713698993 ], [ -64.852188345173261, 18.314144537200946 ], [ -64.852745574363951, 18.314257190033686 ], [ -64.853200041372304, 18.314360790406681 ], [ -64.853503466412974, 18.314548712766111 ], [ -64.853630871402402, 18.314747196328597 ], [ -64.853779566436117, 18.315032516449719 ], [ -64.853880987513264, 18.315442224073649 ], [ -64.853922394134827, 18.315851261144985 ], [ -64.853967656433667, 18.31612182910942 ], [ -64.853220828502174, 18.316170276533001 ], [ -64.853097614466321, 18.316090479466823 ], [ -64.853019159814949, 18.316050247621945 ], [ -64.852936849486241, 18.31601739054571 ], [ -64.852858394834868, 18.315980845430317 ], [ -64.852772061190706, 18.315965757997333 ], [ -64.852685895184663, 18.3159578790046 ], [ -64.852599561540501, 18.31595000001181 ], [ -64.852513395534515, 18.31593860061804 ], [ -64.852427229528473, 18.315916303435188 ], [ -64.852348607238923, 18.315879927267588 ], [ -64.852274008264885, 18.31583265331102 ], [ -64.852206953007283, 18.315774650513163 ], [ -64.852136042072345, 18.315723856155557 ], [ -64.852053731743638, 18.31569451948036 ], [ -64.851967565737652, 18.315675911646395 ], [ -64.85188123209349, 18.315668032653605 ], [ -64.851791210410113, 18.31566719446289 ], [ -64.851701021088672, 18.31567373235049 ], [ -64.851610831767175, 18.315676582198932 ], [ -64.851524498123013, 18.315682952448412 ], [ -64.851441684879887, 18.31570742761744 ], [ -64.851377311832607, 18.315764256948228 ], [ -64.851331714257412, 18.31583566948791 ], [ -64.851285949044097, 18.315906917008817 ], [ -64.851251415586432, 18.31598553929831 ], [ -64.851198274294802, 18.316053265108508 ], [ -64.851148821042329, 18.316124511319686 ], [ -64.851095679750699, 18.316192237129883 ], [ -64.851020074947712, 18.316238169981318 ], [ -64.850930053264392, 18.31623749942878 ], [ -64.850843551982109, 18.31625828655865 ], [ -64.850757050699826, 18.316264655498401 ], [ -64.850670884693784, 18.316253257414303 ], [ -64.850569798892934, 18.316209336220595 ], [ -64.850491345551234, 18.31617295743365 ], [ -64.850409033912854, 18.316139934028968 ], [ -64.850326723584146, 18.316107076952733 ], [ -64.850248268932773, 18.316070530527668 ], [ -64.850218596981279, 18.316020071446303 ], [ -64.850193115983359, 18.315940947552008 ], [ -64.850171323024654, 18.31585830194706 ], [ -64.850168305538091, 18.315772135941017 ], [ -64.850187920510621, 18.31568982561231 ], [ -64.850203678496143, 18.315607515283602 ], [ -64.850219435171994, 18.315525204954895 ], [ -64.850220105724588, 18.31543920658703 ], [ -64.850220943915303, 18.315353040581044 ] ], [ [ -64.849906957671578, 18.314787597121324 ], [ -64.849850295978911, 18.314819279420874 ], [ -64.849842584624298, 18.314844426452112 ], [ -64.849849793064493, 18.314883821415947 ], [ -64.849894720087093, 18.314895053171597 ], [ -64.849898408126251, 18.314895053171597 ], [ -64.849970324890023, 18.314845432281004 ], [ -64.849914501388071, 18.314787597121324 ], [ -64.849906957671578, 18.314787597121324 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_122", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.899303206634272, 18.31042280276597 ], [ -64.89936305345168, 18.31043420346947 ], [ -64.899451397443897, 18.3104469426587 ], [ -64.89953320485813, 18.31047778938688 ], [ -64.899608643332613, 18.31052070344208 ], [ -64.89969044943723, 18.310557417505265 ], [ -64.899772256851463, 18.310594296587283 ], [ -64.899847526378153, 18.310637211952155 ], [ -64.899922963542963, 18.310679959678851 ], [ -64.900004772266868, 18.310710805097358 ], [ -64.900086747319335, 18.310741650515865 ], [ -64.900174923673376, 18.31076646096119 ], [ -64.900263102646818, 18.31077920146015 ], [ -64.900351446639036, 18.310791941959053 ], [ -64.900433255362941, 18.31082278737756 ], [ -64.900521599355159, 18.310829492903338 ], [ -64.900610113604898, 18.310836198429058 ], [ -64.900698457597116, 18.310831001646648 ], [ -64.900786970537126, 18.310831673508858 ], [ -64.900888223976096, 18.310796300550805 ], [ -64.900993836006819, 18.310766963875608 ], [ -64.900963325864609, 18.310814908384771 ], [ -64.900918063565712, 18.310887998615556 ], [ -64.900917393013174, 18.310973158792763 ], [ -64.900766853959851, 18.311010040494068 ], [ -64.900658224442509, 18.31103300561017 ], [ -64.900566526377759, 18.311048260681218 ], [ -64.900474995951129, 18.311047422490503 ], [ -64.900383297886378, 18.311046751937965 ], [ -64.900300318314748, 18.311022276768938 ], [ -64.900208786578446, 18.311013559585433 ], [ -64.900125805697201, 18.310981037785496 ], [ -64.90004265848745, 18.310956562616468 ], [ -64.899951126751148, 18.310939798802053 ], [ -64.899868313508023, 18.310899398009383 ], [ -64.899785166298273, 18.310874922840355 ], [ -64.899696316772236, 18.310835695514641 ], [ -64.899668656478525, 18.310754391014825 ], [ -64.899636972869303, 18.310676774554167 ], [ -64.89956857650651, 18.310625981506178 ], [ -64.899500347781895, 18.310571331471237 ], [ -64.899427929413378, 18.310524391481238 ], [ -64.899343104512525, 18.31049656354935 ], [ -64.899303206634272, 18.31042280276597 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_621", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.985738089826839, 18.347079895199499 ], [ -64.985738760379377, 18.346993561555337 ], [ -64.985692324613524, 18.346866156565909 ], [ -64.985683607430019, 18.346779655283569 ], [ -64.985665168543846, 18.346697847869279 ], [ -64.985675394470661, 18.346611681863294 ], [ -64.985666675977484, 18.346516128121209 ], [ -64.985667346530079, 18.346429962115167 ], [ -64.985663324524296, 18.346343628471061 ], [ -64.985655276583714, 18.346166434952806 ], [ -64.985670196378521, 18.346084795176694 ], [ -64.985699534363391, 18.346003155400581 ], [ -64.985809672623986, 18.345899555027586 ], [ -64.985886115617632, 18.345859321873036 ], [ -64.986000778798484, 18.345801151437058 ], [ -64.98608694480447, 18.345768964913418 ], [ -64.986087615357064, 18.345682798907376 ], [ -64.986088788824077, 18.345546676734443 ], [ -64.986044198387447, 18.345474593642223 ], [ -64.985977309458292, 18.345395131852285 ], [ -64.985902542846077, 18.345351545934818 ], [ -64.985820401465219, 18.345307960017408 ], [ -64.987378261427693, 18.343089270491248 ], [ -64.987758632376483, 18.343304516558476 ], [ -64.988047640536706, 18.343513058409599 ], [ -64.988241094954901, 18.343721432622601 ], [ -64.988553740093437, 18.344055201476976 ], [ -64.988961268421519, 18.344359463398632 ], [ -64.9894626741102, 18.344754755451902 ], [ -64.989965085627773, 18.34502968069836 ], [ -64.990341265622931, 18.345275773493768 ], [ -64.990685259094391, 18.345667543836271 ], [ -64.990840155429794, 18.346000137913961 ], [ -64.990976949464994, 18.346514116463482 ], [ -64.991179623981054, 18.346906222082282 ], [ -64.991366205235352, 18.34723898379815 ], [ -64.991576591106082, 18.347558502100583 ], [ -64.99177775556916, 18.347746424460013 ], [ -64.992086211063793, 18.347907021801973 ], [ -64.992463061611545, 18.348090585569651 ], [ -64.992691718730271, 18.34818362473959 ], [ -64.993142666647316, 18.348322596760966 ], [ -64.993469727356569, 18.348429549896821 ], [ -64.993847248456859, 18.348552763932673 ], [ -64.99433071686417, 18.348726603378338 ], [ -64.994743441974663, 18.348765664375549 ], [ -64.995066313040013, 18.348768011309573 ], [ -64.995381808027048, 18.348748900561134 ], [ -64.995765531738641, 18.348680001283981 ], [ -64.996014139106194, 18.348581430055276 ], [ -64.996240618238744, 18.348425358943246 ], [ -64.996446310241424, 18.348235592564208 ], [ -64.997961423786933, 18.349293556890984 ], [ -64.99791850842206, 18.349337310446572 ], [ -64.99788967466128, 18.349362288530017 ], [ -64.997776015999648, 18.349368155865079 ], [ -64.997642743675158, 18.349396319073264 ], [ -64.997559259879438, 18.349419619465607 ], [ -64.997475943721895, 18.349448119259762 ], [ -64.997392459926175, 18.349473935533922 ], [ -64.997311825978898, 18.349510313011194 ], [ -64.997244770721295, 18.349562782440614 ], [ -64.99717788310187, 18.349615254489322 ], [ -64.997110827844267, 18.349667725228414 ], [ -64.997046622435107, 18.349725560388094 ], [ -64.996974202756917, 18.34977266539687 ], [ -64.99690982970958, 18.349830334228102 ], [ -64.996851156359185, 18.349893532498697 ], [ -64.996789633160347, 18.349956564440845 ], [ -64.996730792171832, 18.350019765330785 ], [ -64.996632891495722, 18.35014080007079 ], [ -64.996590646683444, 18.35021455954444 ], [ -64.996537337753637, 18.35028563942717 ], [ -64.996484028823829, 18.35035403448029 ], [ -64.996450165918759, 18.350430646421728 ], [ -64.996416303013689, 18.35050725705355 ], [ -64.996390822015769, 18.350559895430763 ], [ -64.996340195296284, 18.350660143040898 ], [ -64.996303482542771, 18.350736752363048 ], [ -64.996258555520171, 18.350807832245778 ], [ -64.996224692615044, 18.350884441567871 ], [ -64.996165851626529, 18.350947473510018 ], [ -64.996120924603929, 18.351018719721253 ], [ -64.996067784621971, 18.351084435183338 ], [ -64.996008943633399, 18.351150149335808 ], [ -64.995947419124889, 18.351210665396138 ], [ -64.995885895926051, 18.351271016437636 ], [ -64.995813477557533, 18.351318121446411 ], [ -64.995746420990258, 18.351375956606091 ], [ -64.995668470562975, 18.351415017603301 ], [ -64.995582135609141, 18.351451561409021 ], [ -64.995501501661863, 18.351482743413499 ], [ -64.995420867714586, 18.351513756470126 ], [ -64.995334869346721, 18.351529011541231 ], [ -64.995248704650351, 18.351544266612336 ], [ -64.995162704972813, 18.351554323591301 ], [ -64.995073856756505, 18.351553654348436 ], [ -64.99498517748799, 18.351550301585519 ], [ -64.994905046455187, 18.351531189527464 ], [ -64.99489951308675, 18.351531189527464 ], [ -64.994814186581152, 18.351511912450576 ], [ -64.994728354541735, 18.351490119491814 ], [ -64.994645542608282, 18.351457765330053 ], [ -64.994568092476072, 18.351420045437976 ], [ -64.994490812601327, 18.351379813593098 ], [ -64.994410681568525, 18.351344777220959 ], [ -64.99432769937755, 18.351320300742316 ], [ -64.994239018799419, 18.351311752506604 ], [ -64.994150339530904, 18.351313596526211 ], [ -64.994061657643044, 18.351312924663944 ], [ -64.993970128526087, 18.351309739539204 ], [ -64.993880608447512, 18.351327007577709 ], [ -64.993795783546659, 18.351302532408681 ], [ -64.993705761863339, 18.351287443666081 ], [ -64.993615741489691, 18.351272525180946 ], [ -64.993525550858521, 18.351271854628351 ], [ -64.993420609380394, 18.351261459753744 ], [ -64.993330421368569, 18.351255927694979 ], [ -64.993235370540958, 18.351255258452113 ], [ -64.993145181219461, 18.351254586589846 ], [ -64.993054990588348, 18.351263471411471 ], [ -64.992964970214643, 18.351262802168549 ], [ -64.992874613255026, 18.351276548496401 ], [ -64.992784422623913, 18.351290127186019 ], [ -64.992699096118258, 18.351313427578361 ], [ -64.992618797447278, 18.351350978522646 ], [ -64.992528608125838, 18.351359864653944 ], [ -64.992438417494668, 18.351364055607519 ], [ -64.9923482294829, 18.351372940429201 ], [ -64.992258040161403, 18.351381825250826 ], [ -64.99217304762243, 18.351362042640119 ], [ -64.9920880550834, 18.351337567471148 ], [ -64.992003230182547, 18.351303370599396 ], [ -64.991918405281695, 18.351274032614526 ], [ -64.991838440577339, 18.351231789111921 ], [ -64.99173618261915, 18.351192394148086 ], [ -64.991603245570957, 18.351159537071851 ], [ -64.991485059369779, 18.351067837697428 ], [ -64.991451699379127, 18.351081250058598 ], [ -64.991365869959054, 18.351103209345808 ], [ -64.991275512999437, 18.351088961413268 ], [ -64.991190185184109, 18.351061133481323 ], [ -64.991052554267924, 18.351023750175216 ], [ -64.990967058814476, 18.351009499623331 ], [ -64.990876701854859, 18.351008830380408 ], [ -64.990790871125114, 18.351030789667618 ], [ -64.990705208033546, 18.351043865442819 ], [ -64.990619712580099, 18.351029617510278 ], [ -64.990486775531906, 18.351001285354243 ], [ -64.990401446406963, 18.350973457422356 ], [ -64.990278232371111, 18.350908918046571 ], [ -64.990202461239676, 18.350867511425008 ], [ -64.990145967185185, 18.350803473654025 ], [ -64.990084611624468, 18.350743962112915 ], [ -64.990028117569921, 18.350679924341875 ], [ -64.989933066742253, 18.35065645500174 ], [ -64.989847571288863, 18.350637679529598 ], [ -64.989733744989053, 18.35060499009154 ], [ -64.989643555667612, 18.350590739539598 ], [ -64.989472564760717, 18.350562242364788 ], [ -64.98938706930727, 18.350547825484398 ], [ -64.989301573853822, 18.350533576242185 ], [ -64.989216078400375, 18.350505748310241 ], [ -64.9890930320027, 18.35044573254504 ], [ -64.989002675043082, 18.350445063302118 ], [ -64.988902595071124, 18.350462496359455 ], [ -64.988817099617677, 18.350448248426858 ], [ -64.988736465670399, 18.350411368035168 ], [ -64.988655999361299, 18.35037884623523 ], [ -64.988570503907852, 18.350355544533215 ], [ -64.988542005423369, 18.350355375585423 ], [ -64.988484002625569, 18.350344814382368 ], [ -64.988408230184461, 18.350303409070477 ], [ -64.988322902369134, 18.350280107368462 ], [ -64.988222990035354, 18.35028848927567 ], [ -64.988138165134501, 18.35019243261911 ], [ -64.988091058815996, 18.350119342388325 ], [ -64.988025009387286, 18.350064357077088 ], [ -64.987959127596696, 18.349977520518507 ], [ -64.987907327410198, 18.349909124155772 ], [ -64.987841445619608, 18.349831340056937 ], [ -64.987775228552721, 18.349776353436027 ], [ -64.987661402252911, 18.349734611538167 ], [ -64.987571046602966, 18.349738468525175 ], [ -64.987404580616328, 18.349732601190112 ], [ -64.987319252801058, 18.349709299488097 ], [ -64.987177264602735, 18.349621960015099 ], [ -64.987115907732345, 18.349562448473989 ], [ -64.987021192180976, 18.349507295524575 ], [ -64.986974253500705, 18.349434205293846 ], [ -64.98694642556876, 18.349352230241379 ], [ -64.986914406683297, 18.349202194102531 ], [ -64.986877023377133, 18.349124577641874 ], [ -64.986825224500365, 18.349056181279082 ], [ -64.986763867629975, 18.348996669737971 ], [ -64.98668340263049, 18.348959620398489 ], [ -64.986602767373597, 18.348922741316471 ], [ -64.98652213342632, 18.348890387154654 ], [ -64.986446360985212, 18.348848812894971 ], [ -64.986351477795722, 18.348820984963083 ], [ -64.986228097431422, 18.348788127886849 ], [ -64.986137740471804, 18.348787457334254 ], [ -64.986133046603754, 18.348787457334254 ], [ -64.986114606407909, 18.348705649920021 ], [ -64.986077221792129, 18.348628033459306 ], [ -64.985992899805694, 18.348486714503906 ], [ -64.985931545554649, 18.348427202962796 ], [ -64.985784694540541, 18.348357968409346 ], [ -64.985713614657811, 18.348307341689861 ], [ -64.985656952965144, 18.34827515516622 ], [ -64.985652426735214, 18.34824783014875 ], [ -64.985643878499559, 18.34811606656757 ], [ -64.985644715380602, 18.348029900561528 ], [ -64.985640524427026, 18.347943566917365 ], [ -64.985603308759039, 18.347860083121645 ], [ -64.985641865532159, 18.347783137213582 ], [ -64.985675897385079, 18.347706191305463 ], [ -64.985719314354697, 18.347633939265393 ], [ -64.985776815547752, 18.347570739685125 ], [ -64.985829955529709, 18.347475688857457 ], [ -64.985806821465872, 18.347393881443168 ], [ -64.985774133337486, 18.347316432620687 ], [ -64.985746808319959, 18.34718450140133 ], [ -64.985738089826839, 18.347079895199499 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_194", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 15.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.967797124308674, 18.368994387644875 ], [ -64.967135959468749, 18.369713387644481 ], [ -64.966813757646321, 18.369603919936424 ], [ -64.966563810483251, 18.369554300355503 ], [ -64.966403379469796, 18.369562680953038 ], [ -64.966212776209716, 18.369618504454991 ], [ -64.966077995141973, 18.369694276896041 ], [ -64.965937345429495, 18.369901310003911 ], [ -64.964939899782337, 18.369691428357271 ], [ -64.964933529532857, 18.369603081745709 ], [ -64.964898660798895, 18.369521443279268 ], [ -64.964969404095712, 18.369416835767765 ], [ -64.965057246483127, 18.369120786805468 ], [ -64.965192530465345, 18.368987849757275 ], [ -64.965412974624712, 18.368861619544475 ], [ -64.965639286119085, 18.36876438942096 ], [ -64.965994008431835, 18.368615694387245 ], [ -64.966330290548683, 18.368501866777819 ], [ -64.966774865596904, 18.368546124557497 ], [ -64.967066389639001, 18.368670510750633 ], [ -64.967364282620849, 18.36876589816427 ], [ -64.967556059347942, 18.368834963769928 ], [ -64.967797124308674, 18.368994387644875 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_394", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.874254885415269, 18.304583632243862 ], [ -64.874329988613454, 18.304644317251984 ], [ -64.874405090501966, 18.30468706497868 ], [ -64.874461081642039, 18.304759652295047 ], [ -64.874491925750874, 18.304844141919602 ], [ -64.874541546641524, 18.30491672923597 ], [ -64.874623186417637, 18.3049474070163 ], [ -64.874667945802059, 18.304875657890705 ], [ -64.874687391826797, 18.304828551572257 ], [ -64.874715219758684, 18.304907341499927 ], [ -64.874736174526674, 18.304990154743052 ], [ -64.874753442565179, 18.305073135624355 ], [ -64.874759980452779, 18.30515594886748 ], [ -64.874780933911154, 18.305238929748725 ], [ -64.874801888679144, 18.305321910630028 ], [ -64.874830051887329, 18.305401538748413 ], [ -64.874782945568882, 18.305408076636013 ], [ -64.874696445596214, 18.3054003652814 ], [ -64.874617320392247, 18.30536180850828 ], [ -64.874563674876526, 18.30529592671769 ], [ -64.874520928459447, 18.305223004125082 ], [ -64.874481867462237, 18.305146896407678 ], [ -64.874446495813856, 18.305070621052153 ], [ -64.874418332605671, 18.304991160571888 ], [ -64.874375752517096, 18.304897618487587 ], [ -64.874340380868716, 18.304821343132062 ], [ -64.874308529621317, 18.304741882651797 ], [ -64.874269469933779, 18.304665607296272 ], [ -64.874254885415269, 18.304583632243862 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_671", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.921748441443526, 18.325657588344882 ], [ -64.921658587398326, 18.325656916482615 ], [ -64.921576779984093, 18.325626238702284 ], [ -64.921516765528509, 18.325554658524482 ], [ -64.921466976999739, 18.325486931404612 ], [ -64.921413165155514, 18.325421049614022 ], [ -64.921367567580376, 18.325349469436219 ], [ -64.921329848997971, 18.325274198599857 ], [ -64.921300344684653, 18.325195073395889 ], [ -64.921296991921736, 18.325112261462436 ], [ -64.921297662474331, 18.325031458567366 ], [ -64.921287268909396, 18.324931547543201 ], [ -64.921289951119718, 18.324883266448069 ], [ -64.921310235335113, 18.324801291395659 ], [ -64.921365555922648, 18.324734405085906 ], [ -64.921364214817515, 18.324801125067211 ], [ -64.921357844568035, 18.324843537517609 ], [ -64.921354994719593, 18.324937750154561 ], [ -64.921352815423688, 18.324949149548331 ], [ -64.921380308079335, 18.325028273442626 ], [ -64.921405789077198, 18.325107398646594 ], [ -64.921437472686421, 18.325184513502506 ], [ -64.921462953684284, 18.325263637396802 ], [ -64.921496481313113, 18.325340918581219 ], [ -64.921506371963574, 18.325364052645057 ], [ -64.921538223210973, 18.325414345397917 ], [ -64.921585832443839, 18.325483915227721 ], [ -64.921647858557151, 18.32554208435397 ], [ -64.921705693716831, 18.325604110467282 ], [ -64.921748441443526, 18.325657588344882 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1135", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.019783379976786, 18.363143314814522 ], [ -65.019790254450356, 18.362306800475949 ], [ -65.019873401660107, 18.361968506701373 ], [ -65.019923860741471, 18.361643457649791 ], [ -65.020098708635317, 18.361486714675493 ], [ -65.020145144401226, 18.361455533980688 ], [ -65.020182358759541, 18.361285045988268 ], [ -65.020183364588377, 18.361286388403073 ], [ -65.020218065684219, 18.361275490614048 ], [ -65.020298868579289, 18.361243136452288 ], [ -65.020306578624229, 18.36124330540008 ], [ -65.020383190565724, 18.361269455640866 ], [ -65.020463487927032, 18.361302984579368 ], [ -65.020551665590745, 18.361311029900605 ], [ -65.020636322853477, 18.361282363777946 ], [ -65.02072114775433, 18.361253531326838 ], [ -65.020805805017062, 18.361224863894563 ], [ -65.020894151628625, 18.361210949928591 ], [ -65.020978807581685, 18.361193181595013 ], [ -65.02106312956812, 18.361212123395603 ], [ -65.021147451554555, 18.361231066505923 ], [ -65.021231605902813, 18.361261073733658 ], [ -65.021315927889248, 18.361283704883135 ], [ -65.021400082237562, 18.361306337342228 ], [ -65.02149211557861, 18.361321592413333 ], [ -65.021580293242323, 18.361336847484438 ], [ -65.021668638544213, 18.361326621557623 ], [ -65.02175715148428, 18.361312538643858 ], [ -65.021833259201628, 18.361300637645343 ], [ -65.021844658595455, 18.361300803973791 ], [ -65.021932836259168, 18.361316060354568 ], [ -65.022017158245603, 18.361338691504045 ], [ -65.022101480232038, 18.361357634614308 ], [ -65.022185802218473, 18.361376576414898 ], [ -65.022277835559521, 18.361377246967493 ], [ -65.022366180861411, 18.361377917520031 ], [ -65.022454526163301, 18.361378589382298 ], [ -65.022542871465191, 18.361368194507691 ], [ -65.022631216767081, 18.361361488981913 ], [ -65.022723250108129, 18.361369535612823 ], [ -65.022788126069884, 18.361428711877693 ], [ -65.022845123038849, 18.361491408543543 ], [ -65.022921566032494, 18.36153231356036 ], [ -65.023009743696207, 18.361547568631465 ], [ -65.023101944675432, 18.361540861796016 ], [ -65.023194145654656, 18.361534323908415 ], [ -65.02328249095649, 18.361523931653153 ], [ -65.02336278962747, 18.361557457972253 ], [ -65.023419954234612, 18.361620154638103 ], [ -65.02350410858287, 18.361657537944211 ], [ -65.02359228624664, 18.361672793015316 ], [ -65.02368063154853, 18.361673463567911 ], [ -65.02376897685042, 18.361663070002976 ], [ -65.023853634113152, 18.361634403880373 ], [ -65.023911636910952, 18.361572545405238 ], [ -65.024000149850963, 18.361562151840303 ], [ -65.024065361089015, 18.361558966715563 ], [ -65.024084639475575, 18.361540861796016 ], [ -65.024173320053706, 18.361512195673356 ], [ -65.024257977316438, 18.361487049951791 ], [ -65.024338778901836, 18.361454695789973 ], [ -65.024427124203726, 18.361447991573925 ], [ -65.024507087598408, 18.361437596699318 ], [ -65.024514798953078, 18.361437596699318 ], [ -65.024599288577633, 18.36141630665503 ], [ -65.024687801517643, 18.36140222636061 ], [ -65.024791569528816, 18.361384790683928 ], [ -65.024879914830706, 18.361381774507038 ], [ -65.024968260132596, 18.36137137963243 ], [ -65.025052917395328, 18.361349921949966 ], [ -65.025141430335339, 18.361328631905678 ], [ -65.025187530824951, 18.361317904374175 ], [ -65.025225752321774, 18.361332990497431 ], [ -65.025229607999051, 18.361343886976783 ], [ -65.025263470904179, 18.361421169470873 ], [ -65.025297332499576, 18.361498449345561 ], [ -65.025331364352496, 18.361575562891801 ], [ -65.025349804548341, 18.361660052516413 ], [ -65.025399090162637, 18.361730126570251 ], [ -65.025471677479004, 18.361781925447076 ], [ -65.025540409118037, 18.361833725633574 ], [ -65.025612996434404, 18.361882005419034 ], [ -65.025677703448309, 18.361941014045726 ], [ -65.025734869365067, 18.362003878349753 ], [ -65.025769235184612, 18.362018630506384 ], [ -65.025823213357285, 18.361997172823976 ], [ -65.025911559968847, 18.361986780568714 ], [ -65.025999905270737, 18.361976385694106 ], [ -65.026088250572627, 18.361973369517216 ], [ -65.026176594564845, 18.361970350720924 ], [ -65.026260750222832, 18.361992981870401 ], [ -65.026349095524722, 18.361993652422939 ], [ -65.026430063438568, 18.361953923492479 ], [ -65.02650717829448, 18.361914191942674 ], [ -65.026591835557213, 18.361889047530781 ], [ -65.026676157543648, 18.361907990641043 ], [ -65.026760479530083, 18.361926932441634 ], [ -65.026848657193852, 18.361931291033386 ], [ -65.026933314456528, 18.361910000989099 ], [ -65.027021658448746, 18.361910671541693 ], [ -65.027109837422188, 18.361914862495269 ], [ -65.027198181414406, 18.361915533047863 ], [ -65.027263392652401, 18.361912347923123 ], [ -65.027278815361683, 18.361901451443771 ], [ -65.027278984309476, 18.361883178886046 ], [ -65.027263729238371, 18.361869935472669 ], [ -65.02725400622603, 18.361850824724286 ], [ -65.02726473375759, 18.361764826356421 ], [ -65.027270433454476, 18.361678827988499 ], [ -65.027270768730773, 18.361630883479336 ], [ -65.027225841708173, 18.361606743586606 ], [ -65.02715107640563, 18.361563157669138 ], [ -65.027131796709398, 18.361481685531203 ], [ -65.027147388366416, 18.361395854801458 ], [ -65.027193153579731, 18.361319579445933 ], [ -65.027213771761808, 18.361238442584238 ], [ -65.027214611262195, 18.361147582710203 ], [ -65.027250150548696, 18.36107147630247 ], [ -65.027260542803958, 18.361028393299478 ], [ -65.027335478364023, 18.361052868468505 ], [ -65.027420303264876, 18.36108220383403 ], [ -65.027435389388131, 18.36108237147215 ], [ -65.027455673603583, 18.361058566855718 ], [ -65.027470928674688, 18.361030068371235 ], [ -65.027466068478191, 18.361010791294348 ], [ -65.027421141455591, 18.360991345269667 ], [ -65.027381074629488, 18.360981620947598 ], [ -65.027361125690391, 18.36098145461915 ], [ -65.027321227812081, 18.36096200859447 ], [ -65.027306309326946, 18.36093803633986 ], [ -65.027306475655394, 18.360933173524018 ], [ -65.027322067312468, 18.360852036662322 ], [ -65.027377723176301, 18.36078548562881 ], [ -65.027458020537608, 18.360747765736733 ], [ -65.027458020537608, 18.360752628552575 ], [ -65.027543014386254, 18.3607819639181 ], [ -65.027622976471264, 18.360796883712965 ], [ -65.027633034759958, 18.360792189844915 ], [ -65.027718196246781, 18.360773583320565 ], [ -65.027803690390499, 18.360740726244387 ], [ -65.027869236904849, 18.36067920173582 ], [ -65.027899914685179, 18.360598064874125 ], [ -65.027865548865634, 18.360521286604182 ], [ -65.027836044552316, 18.36043981446619 ], [ -65.027806707877119, 18.360358343637927 ], [ -65.027782400346211, 18.360276871499934 ], [ -65.027723225391071, 18.3601521474111 ], [ -65.027738983376594, 18.360066150352907 ], [ -65.027724566496204, 18.359979984346921 ], [ -65.027755410605039, 18.359899015123347 ], [ -65.027810898830694, 18.359832461470489 ], [ -65.027825987573351, 18.359832630418339 ], [ -65.027900920514071, 18.359842687397304 ], [ -65.027970825620116, 18.359867162566331 ], [ -65.027985914362716, 18.359867162566331 ], [ -65.028076102374541, 18.359867834428542 ], [ -65.028166125367534, 18.359868503671464 ], [ -65.028256313379302, 18.359874035730229 ], [ -65.028346336372351, 18.359884261656987 ], [ -65.028426130819184, 18.359918293509907 ], [ -65.0285008974314, 18.359966573295367 ], [ -65.028525875514902, 18.359976296307707 ], [ -65.028585723641982, 18.359986354596344 ], [ -65.028676080601599, 18.359977468465047 ], [ -65.02877113142921, 18.359978140327314 ], [ -65.028840867587462, 18.360031281618944 ], [ -65.02891563550935, 18.360074867536412 ], [ -65.029000460410202, 18.360099341395767 ], [ -65.02909048078385, 18.360119122696744 ], [ -65.02909048078385, 18.360114430138367 ], [ -65.029130881576577, 18.360076376279721 ], [ -65.029156028607872, 18.360052739301409 ], [ -65.029206654017685, 18.359981325452054 ], [ -65.029277229676268, 18.359929188679587 ], [ -65.029362557491595, 18.359910748483742 ], [ -65.029452746813035, 18.359901863662117 ], [ -65.029542936134533, 18.359897672708541 ], [ -65.029627761035385, 18.359917455319192 ], [ -65.029717782718706, 18.359932541442447 ], [ -65.029792550640593, 18.359976127359914 ], [ -65.029862286798846, 18.360033962519594 ], [ -65.029947111699698, 18.360053745130244 ], [ -65.030027075094381, 18.360087774363819 ], [ -65.030111899995234, 18.360107555664797 ], [ -65.030176609628541, 18.360170084692527 ], [ -65.030221032426994, 18.360242170404092 ], [ -65.030295799039209, 18.360285756321559 ], [ -65.030319771293819, 18.360287766669614 ], [ -65.030384814893694, 18.360293132399875 ], [ -65.030469639794546, 18.36032716163345 ], [ -65.030549603189229, 18.360366053682867 ], [ -65.030634260451961, 18.360404945732284 ], [ -65.030724449773459, 18.360410311462545 ], [ -65.030809777588729, 18.360382314582807 ], [ -65.030880353247369, 18.360330180429742 ], [ -65.030920921678216, 18.36026346044838 ], [ -65.030925950822507, 18.360258766580387 ], [ -65.030961154832767, 18.360225574227854 ], [ -65.031001387987317, 18.36021635282026 ], [ -65.031026533708939, 18.360206966393889 ], [ -65.031091577308814, 18.360212163176357 ], [ -65.031181431353957, 18.360236804673832 ], [ -65.031266423892987, 18.360256419646362 ], [ -65.031346219649549, 18.360290616518057 ], [ -65.03143640897099, 18.360286425564482 ], [ -65.031526598292487, 18.3602775407428 ], [ -65.031616787613927, 18.360268657230847 ], [ -65.031716867585942, 18.360288438531882 ], [ -65.031706809297248, 18.360283575715982 ], [ -65.031727428788997, 18.36020244016396 ], [ -65.031802865953807, 18.360160026403889 ], [ -65.031893055275248, 18.360151141582264 ], [ -65.031967821887463, 18.360194727499675 ], [ -65.032022471922403, 18.360266813211297 ], [ -65.032037559355388, 18.360247868791362 ], [ -65.032078127786235, 18.360176288613502 ], [ -65.032073266280065, 18.360171593435837 ], [ -65.032098914916105, 18.360090456574142 ], [ -65.032134118926308, 18.360066819595829 ], [ -65.032179213587085, 18.360057599497907 ], [ -65.032184242731375, 18.360057599497907 ], [ -65.032264206126058, 18.360077380798884 ], [ -65.032274264414696, 18.360072688240507 ], [ -65.032299410136318, 18.360067994372514 ], [ -65.032309803701253, 18.360005968259202 ], [ -65.032355568914568, 18.359929860541854 ], [ -65.032435867585548, 18.359896834517826 ], [ -65.032526056906988, 18.359907060444584 ], [ -65.032616246228486, 18.359893481754909 ], [ -65.032696712537586, 18.359855764482177 ], [ -65.032732251824143, 18.359779489126652 ], [ -65.032723031726221, 18.359693489449114 ], [ -65.032718673134468, 18.359602629575079 ], [ -65.032699394747908, 18.359521157437086 ], [ -65.032695036156156, 18.359434991431101 ], [ -65.032949678496891, 18.359632638112544 ], [ -65.033120166489311, 18.359811843288469 ], [ -65.033419400576406, 18.360019210362907 ], [ -65.033761716356764, 18.360199421367724 ], [ -65.034104033446795, 18.360393378700337 ], [ -65.03426094405927, 18.36047669485788 ], [ -65.034346439512717, 18.360532015445415 ], [ -65.034059275372044, 18.360928814932265 ], [ -65.033712598380589, 18.36115982160436 ], [ -65.033235836808672, 18.361344389891258 ], [ -65.032701406405636, 18.361452348855948 ], [ -65.031846451871218, 18.361515045521855 ], [ -65.030946402676079, 18.361467940513023 ], [ -65.030805754273274, 18.36147732693945 ], [ -65.030111564718993, 18.361502305022896 ], [ -65.029764218484615, 18.361559972544399 ], [ -65.029321150870032, 18.361737502648566 ], [ -65.029067346720012, 18.361916372548251 ], [ -65.028876071597665, 18.362155927456001 ], [ -65.028748332641612, 18.362365809102641 ], [ -65.028398136558849, 18.362754898544551 ], [ -65.028018268524534, 18.362932762615287 ], [ -65.027512336605923, 18.363079613629452 ], [ -65.027101286567188, 18.363197126658747 ], [ -65.02662754248189, 18.363253955989535 ], [ -65.02621733063387, 18.363281113368885 ], [ -65.025626238538109, 18.363264684830767 ], [ -65.025403447444717, 18.363275078395702 ], [ -65.025119302100336, 18.36330307396571 ], [ -65.024614543648738, 18.363312964616227 ], [ -65.02410978519714, 18.363325872753308 ], [ -65.02351047883235, 18.363321346523435 ], [ -65.022942688438604, 18.36331715556986 ], [ -65.022564161509479, 18.363314473359537 ], [ -65.022217653465816, 18.36325160905551 ], [ -65.021681881957591, 18.36318740364635 ], [ -65.021019712598502, 18.363152534912444 ], [ -65.020452257481054, 18.3631181690929 ], [ -65.020104909937004, 18.363145661748547 ], [ -65.019852614530294, 18.36314381772894 ], [ -65.019783379976786, 18.363143314814522 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_223", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.992936805696786, 18.365184309217682 ], [ -64.992873607426191, 18.365758302222787 ], [ -64.992688533605531, 18.365841450742209 ], [ -64.992526093553693, 18.366107995391133 ], [ -64.992393490472068, 18.366412929175056 ], [ -64.992341021042705, 18.36668986738897 ], [ -64.992359627566998, 18.366881142511261 ], [ -64.992416121621545, 18.367102423551671 ], [ -64.991679353288305, 18.367210551464211 ], [ -64.99163995832447, 18.367133773194269 ], [ -64.991605592504982, 18.367057162562446 ], [ -64.991640964153362, 18.366975018562243 ], [ -64.991644484554399, 18.366695399447735 ], [ -64.99167197720999, 18.36659330781805 ], [ -64.991699468555908, 18.366511668041881 ], [ -64.991775409944864, 18.366394824255508 ], [ -64.991867443285912, 18.366267754542378 ], [ -64.991905497144558, 18.366191311548732 ], [ -64.991954950397087, 18.36604345339606 ], [ -64.991987638525472, 18.36596198256774 ], [ -64.992031058114435, 18.365885707212215 ], [ -64.992134155573012, 18.36572293057435 ], [ -64.99225854307582, 18.365575576645824 ], [ -64.992372034099333, 18.365433419499709 ], [ -64.992442105533883, 18.365382792780224 ], [ -64.9925390003811, 18.365312049483407 ], [ -64.992603708704678, 18.365251196837164 ], [ -64.992770173381643, 18.365191014743459 ], [ -64.992851982105606, 18.365159834048654 ], [ -64.992936805696786, 18.365184309217682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_112", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.839428904428701, 18.315720000478223 ], [ -64.839414656496103, 18.315633834472237 ], [ -64.839354808369023, 18.315614219499707 ], [ -64.839333853601033, 18.315601983224838 ], [ -64.839249028700181, 18.31557750805581 ], [ -64.839164205108943, 18.31554800243282 ], [ -64.839079380208091, 18.315518667067295 ], [ -64.838994555307238, 18.315498884456645 ], [ -64.838909730406385, 18.315469381452942 ], [ -64.838819707413393, 18.315459155526185 ], [ -64.838739242413908, 18.315496706470412 ], [ -64.838658776104808, 18.315529563546647 ], [ -64.838573448289537, 18.315557559116712 ], [ -64.838492980670708, 18.31559024855477 ], [ -64.838402791349267, 18.315603827244445 ], [ -64.83831746353394, 18.31562712894646 ], [ -64.838227609488797, 18.315612041513475 ], [ -64.838147815041907, 18.315572980516265 ], [ -64.838062990141054, 18.31554364515074 ], [ -64.837972968457734, 18.31552855640814 ], [ -64.837882945464685, 18.315527887165217 ], [ -64.837792757452917, 18.315536604348722 ], [ -64.83771229114376, 18.3155694614249 ], [ -64.837622437098617, 18.315554373991972 ], [ -64.837547670486401, 18.315510620436385 ], [ -64.837462845585492, 18.315476589893137 ], [ -64.837372823902172, 18.315471057834372 ], [ -64.837287496086901, 18.315494191898267 ], [ -64.837241898511706, 18.31556560443795 ], [ -64.837186242647931, 18.31563199045263 ], [ -64.837100914832604, 18.315650430648475 ], [ -64.837015922293631, 18.315630649347497 ], [ -64.836925900610311, 18.315629811156782 ], [ -64.836840572794983, 18.315657805417118 ], [ -64.836755244979713, 18.315676246922635 ], [ -64.836665054348543, 18.31568027023809 ], [ -64.836575033974896, 18.315679432047375 ], [ -64.836489706159568, 18.31569787224322 ], [ -64.836481659528658, 18.315698039881397 ], [ -64.836402366686571, 18.315731232233873 ], [ -64.836315194851693, 18.315745649114263 ], [ -64.83623204633227, 18.315779009104915 ], [ -64.83615660916746, 18.315823599541545 ], [ -64.836085027679985, 18.315872048274855 ], [ -64.83600573483784, 18.315909096304665 ], [ -64.8359380090277, 18.31596139940558 ], [ -64.83587045085568, 18.316013533558703 ], [ -64.83586575698763, 18.316096514440005 ], [ -64.834354499119456, 18.316241355106058 ], [ -64.834359695901924, 18.3160542709374 ], [ -64.834385847452381, 18.315718156458672 ], [ -64.834364892684391, 18.315545824446644 ], [ -64.834306051695876, 18.315416240161312 ], [ -64.834239499352691, 18.315308113558444 ], [ -64.834188202080611, 18.315164280030899 ], [ -64.834145119077618, 18.314948697377702 ], [ -64.834131708026064, 18.314762116123404 ], [ -64.834133049131253, 18.314618785510277 ], [ -64.834194237053794, 18.314497247855911 ], [ -64.834374950973029, 18.314448632794154 ], [ -64.834667814810587, 18.314450979728178 ], [ -64.834975430804832, 18.314467911180714 ], [ -64.835222529429075, 18.314548880404232 ], [ -64.835559482098517, 18.314644937060791 ], [ -64.835904816675168, 18.314647786909234 ], [ -64.836489203245151, 18.314565644218646 ], [ -64.837151709190266, 18.314541001411499 ], [ -64.837593100423419, 18.314544689450656 ], [ -64.837813878549355, 18.314546533470264 ], [ -64.838759860595985, 18.314554412462996 ], [ -64.839232935438361, 18.314558435778451 ], [ -64.839449691558514, 18.314583246223776 ], [ -64.839650186778726, 18.314669076953521 ], [ -64.839830062507247, 18.314774186069769 ], [ -64.840142707645839, 18.315077946386737 ], [ -64.840298443481629, 18.315290176277017 ], [ -64.840484355492947, 18.315653111549125 ], [ -64.840703289599389, 18.315865844353823 ], [ -64.841079972508908, 18.316049743397798 ], [ -64.841362945696005, 18.316142448601113 ], [ -64.84158372513167, 18.31614429262072 ], [ -64.841772988596233, 18.316145801363973 ], [ -64.842056799974046, 18.316148148297998 ], [ -64.842340778989978, 18.31612032036611 ], [ -64.842694663111956, 18.31614446025884 ], [ -64.843046200299909, 18.316241858020533 ], [ -64.843307715804542, 18.316387535567628 ], [ -64.843439647023899, 18.316508067393158 ], [ -64.842958357912437, 18.317026572172551 ], [ -64.842918627672304, 18.316998407654694 ], [ -64.842848890204436, 18.316949123350071 ], [ -64.842772111934494, 18.316909559438386 ], [ -64.842707069644291, 18.316899502459421 ], [ -64.842617046651242, 18.316884413716764 ], [ -64.842527024967922, 18.316888438341891 ], [ -64.842436835646481, 18.316882906283183 ], [ -64.842346813963161, 18.316882068092468 ], [ -64.842266347654004, 18.316914925168646 ], [ -64.842190910489194, 18.316966891683649 ], [ -64.842125197646453, 18.317023722324109 ], [ -64.842054620678141, 18.317075690148783 ], [ -64.841969460500991, 18.317094130344628 ], [ -64.841908775492868, 18.317155821181586 ], [ -64.841838199834228, 18.317207787696589 ], [ -64.841797463765261, 18.317283895413937 ], [ -64.841722026600451, 18.317326309174064 ], [ -64.841736275842663, 18.317412475180049 ], [ -64.84171548871285, 18.317493610732072 ], [ -64.841679781788173, 18.317569887397269 ], [ -64.841628987430511, 18.317641133608504 ], [ -64.84155355157543, 18.317683544749229 ], [ -64.841482974607118, 18.317735512573904 ], [ -64.841402509607633, 18.317782620202024 ], [ -64.84132707244288, 18.317829892848977 ], [ -64.841251467639893, 18.317872306609047 ], [ -64.84116613851495, 18.317900300869439 ], [ -64.841080810699623, 18.317928296439504 ], [ -64.841000344390523, 18.317960985877562 ], [ -64.840924908535385, 18.318003399637689 ], [ -64.840844440916612, 18.318040950581917 ], [ -64.840759114411014, 18.318064252283932 ], [ -64.840669091417965, 18.318068275599387 ], [ -64.840578903406197, 18.318067437408672 ], [ -64.840484018907034, 18.318057211481914 ], [ -64.840409253604435, 18.318013456616654 ], [ -64.840395004362222, 18.317927290610612 ], [ -64.840390813408646, 18.317841293552419 ], [ -64.84040154094015, 18.317755293874882 ], [ -64.840412437419502, 18.317669295507017 ], [ -64.840413107972097, 18.317583298448824 ], [ -64.840398858729884, 18.317496963494989 ], [ -64.840384778435407, 18.317410797488947 ], [ -64.840350412615919, 18.317334020528676 ], [ -64.84032610377534, 18.317252548390684 ], [ -64.84030682538878, 18.317171242581196 ], [ -64.840267430424944, 18.317094296673076 ], [ -64.840217978482144, 18.317022213580856 ], [ -64.840163662413829, 18.316954821737284 ], [ -64.840109181326682, 18.316887432513056 ], [ -64.840059726764537, 18.316824903485326 ], [ -64.839995018440959, 18.316766899377853 ], [ -64.839915391632246, 18.316732870144278 ], [ -64.839825368639254, 18.316717781401678 ], [ -64.839735348265606, 18.316702695278366 ], [ -64.839665778435801, 18.316649552677063 ], [ -64.839596208606054, 18.316596245056928 ], [ -64.839541726209234, 18.316528854523028 ], [ -64.839492271647089, 18.316456770121135 ], [ -64.839472994570201, 18.316375297983143 ], [ -64.839453716183641, 18.316293993483271 ], [ -64.839424547146621, 18.316212352397486 ], [ -64.839410296594679, 18.3161261863915 ], [ -64.839365872486553, 18.316054103299223 ], [ -64.839371573493111, 18.315968104931358 ], [ -64.839412309562078, 18.31589199721401 ], [ -64.839428235185778, 18.315805997536415 ], [ -64.839428904428701, 18.315720000478223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_88", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 21.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.890957844549632, 18.355254097429395 ], [ -64.890952815405342, 18.35533858705395 ], [ -64.890939404353787, 18.355423244316682 ], [ -64.890930185565537, 18.355507733941238 ], [ -64.890916774514039, 18.355594738137995 ], [ -64.890890790601702, 18.355675204447095 ], [ -64.890843684283254, 18.35575147980262 ], [ -64.890779812840719, 18.355807303304573 ], [ -64.890724324615064, 18.355871341075613 ], [ -64.890635811674997, 18.355862623892108 ], [ -64.890547132406539, 18.355853906708603 ], [ -64.890458619466472, 18.355845021886978 ], [ -64.890370106526461, 18.355832281388075 ], [ -64.890289472579184, 18.355867820674575 ], [ -64.889610201510038, 18.355538746997922 ], [ -64.88960852643828, 18.35541251547545 ], [ -64.889521354603403, 18.355241356930435 ], [ -64.889431834524828, 18.35513440379458 ], [ -64.889319853554298, 18.355081933055487 ], [ -64.889155400535003, 18.355069527832825 ], [ -64.888586604312422, 18.354595614799734 ], [ -64.888637901584502, 18.354527386075176 ], [ -64.888703111512825, 18.354306271363214 ], [ -64.888724904471587, 18.354225805054114 ], [ -64.888759439238925, 18.354149362060411 ], [ -64.888793805058413, 18.354073086704886 ], [ -64.888824147562502, 18.353988764718508 ], [ -64.888862871973743, 18.353912489362983 ], [ -64.888859351572705, 18.353827664462074 ], [ -64.88885214313251, 18.353686513144851 ], [ -64.888898075984002, 18.353751389106606 ], [ -64.888948032150893, 18.353820456021879 ], [ -64.889006705501288, 18.353881308668178 ], [ -64.88905246940493, 18.353954232570516 ], [ -64.889064875937265, 18.353976862410263 ], [ -64.889102425571878, 18.354025645110141 ], [ -64.889173839421176, 18.354074595448196 ], [ -64.889245254580203, 18.354123545786251 ], [ -64.889307951246053, 18.354180542755216 ], [ -64.88938355604904, 18.354229493093271 ], [ -64.889463350495873, 18.354278443431326 ], [ -64.889538956608476, 18.354323370453926 ], [ -64.889601819602831, 18.354380367422891 ], [ -64.889677424405761, 18.354421271129979 ], [ -64.889757389110116, 18.354454128206214 ], [ -64.889841543458431, 18.354483129605114 ], [ -64.889917148261361, 18.354524034621932 ], [ -64.889992753064291, 18.354564937019404 ], [ -64.890076907412606, 18.354593770780184 ], [ -64.890156869497616, 18.354626795494539 ], [ -64.890249742339051, 18.354639535993499 ], [ -64.890320988550286, 18.354688487641226 ], [ -64.890405141588872, 18.354725534361364 ], [ -64.890547970597254, 18.354807341775654 ], [ -64.890623575400184, 18.354848245482742 ], [ -64.890703537485194, 18.354885125874432 ], [ -64.890792050425205, 18.354901889688847 ], [ -64.890871847491439, 18.354938937718657 ], [ -64.890926162250082, 18.355003813680412 ], [ -64.890938064558327, 18.355088638581265 ], [ -64.89093739269606, 18.355173295843997 ], [ -64.890957844549632, 18.355254097429395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_126", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.952763839778868, 18.311916123352717 ], [ -64.952753613852053, 18.312014360614796 ], [ -64.952743555563416, 18.312103542797729 ], [ -64.952724109538735, 18.312192726290334 ], [ -64.95267666794399, 18.312272689685017 ], [ -64.952629226349245, 18.312343768258074 ], [ -64.95258195239262, 18.312414846831132 ], [ -64.952506682865987, 18.312467820484642 ], [ -64.952450022482992, 18.312538731419522 ], [ -64.952402579578518, 18.31260980999258 ], [ -64.95234591788585, 18.312680888565637 ], [ -64.952289257502855, 18.312751799500575 ], [ -64.952279197904545, 18.31284098299318 ], [ -64.952306522922015, 18.312921616940457 ], [ -64.952324461513115, 18.31301113570936 ], [ -64.952323789650848, 18.313100319201965 ], [ -64.952304343626167, 18.31318950269457 ], [ -64.952303505435452, 18.313278686187175 ], [ -64.952302834882857, 18.3133680373179 ], [ -64.94990846058181, 18.313355632095238 ], [ -64.950037709590788, 18.312471676161977 ], [ -64.950178356683921, 18.311827275136409 ], [ -64.950396790495233, 18.310853632796068 ], [ -64.950676912524216, 18.309694079754024 ], [ -64.951034821271321, 18.308772237600181 ], [ -64.951251240805561, 18.30832447742722 ], [ -64.951657092752157, 18.307449741591824 ], [ -64.95220459893045, 18.306622112074876 ], [ -64.952755960786078, 18.306207542944776 ], [ -64.953291899932481, 18.305913338002028 ], [ -64.954235535045029, 18.305425175726725 ], [ -64.954929221684893, 18.305241611959048 ], [ -64.956527985354569, 18.305093084563453 ], [ -64.957619478619847, 18.30521210764573 ], [ -64.958956057541911, 18.305555262926475 ], [ -64.959808497504184, 18.305977877377813 ], [ -64.960615170943413, 18.306485989901944 ], [ -64.960972575466428, 18.306833000860024 ], [ -64.961177933502483, 18.307408334970262 ], [ -64.961366357466716, 18.308227247303705 ], [ -64.961449842572051, 18.309016821652278 ], [ -64.961444309203671, 18.309676645387015 ], [ -64.961356969730616, 18.310060536736785 ], [ -64.961227720721581, 18.310420792417915 ], [ -64.961042480572473, 18.310657831443848 ], [ -64.960788676422453, 18.310960585931923 ], [ -64.959639853531314, 18.31023136000556 ], [ -64.959690981855545, 18.310159444551459 ], [ -64.959758707665742, 18.310103619739834 ], [ -64.95984319859997, 18.310056010506912 ], [ -64.959927686914909, 18.310008568912167 ], [ -64.960003794632257, 18.309960959679245 ], [ -64.960079902349662, 18.309921229439112 ], [ -64.960147629469475, 18.309865573575337 ], [ -64.960207139700913, 18.309801703442474 ], [ -64.96023312361325, 18.309721572409615 ], [ -64.96022541356831, 18.309633059469604 ], [ -64.960178139611685, 18.309585282598562 ], [ -64.960162046349865, 18.309566842402717 ], [ -64.960119801537587, 18.309518396288752 ], [ -64.960072190994993, 18.309446479524979 ], [ -64.960008488500307, 18.309389648884519 ], [ -64.959928357467447, 18.309358300551594 ], [ -64.959848395382437, 18.309327119856789 ], [ -64.959768264349634, 18.309290574741397 ], [ -64.959693831703987, 18.309244140285216 ], [ -64.959629961571125, 18.309182280500409 ], [ -64.959641528603072, 18.309095277613324 ], [ -64.959674219350802, 18.309018834619678 ], [ -64.959717637630149, 18.308942559264153 ], [ -64.959766420330027, 18.308871311743246 ], [ -64.959799277406262, 18.308794868749601 ], [ -64.95982676875218, 18.308713230283161 ], [ -64.959864822610882, 18.308636787289458 ], [ -64.959881083510879, 18.308599067397381 ], [ -64.95992466942829, 18.308524972647433 ], [ -64.95997160941829, 18.30845456462697 ], [ -64.960027766886867, 18.308384156606451 ], [ -64.960047046583099, 18.308295811304561 ], [ -64.960084763855832, 18.30821634951468 ], [ -64.96013170253616, 18.308145941494161 ], [ -64.960141760824797, 18.30805742855415 ], [ -64.960142431377335, 18.307968915614083 ], [ -64.960096833802197, 18.307897669402905 ], [ -64.960013686592447, 18.307861628511603 ], [ -64.959920981389132, 18.307860956649392 ], [ -64.959809838609317, 18.307851233636995 ], [ -64.959717133406002, 18.307841679572505 ], [ -64.959643372622679, 18.307796752549905 ], [ -64.959550836367157, 18.307787197175685 ], [ -64.959467521519286, 18.307760038486663 ], [ -64.959356711396424, 18.30772382995724 ], [ -64.959273562877001, 18.30768778644665 ], [ -64.959190414357579, 18.307660461429123 ], [ -64.959107099509652, 18.307633305359502 ], [ -64.959023949680557, 18.307597263158527 ], [ -64.958931582372884, 18.307569938141057 ], [ -64.958838878479298, 18.307560381457165 ], [ -64.958765285334039, 18.307506738560789 ], [ -64.958691524550716, 18.30746197917631 ], [ -64.958617596129216, 18.30741705215371 ], [ -64.958534447609793, 18.307389893464745 ], [ -64.95845129909037, 18.307353852573442 ], [ -64.958368150570948, 18.307326527555972 ], [ -64.958294388477896, 18.307281768171549 ], [ -64.958220627694516, 18.307237007477397 ], [ -64.958174862481201, 18.307165762575892 ], [ -64.958110489433921, 18.307103233548162 ], [ -64.958083333364243, 18.307023436481927 ], [ -64.958046954577355, 18.306943474396917 ], [ -64.958019798507678, 18.306863511002234 ], [ -64.957974033294363, 18.306792263481384 ], [ -64.957909660247083, 18.306729903401504 ], [ -64.957817625596363, 18.306667205425924 ], [ -64.957743698484535, 18.306622278403381 ], [ -64.957660717603233, 18.306586237512079 ], [ -64.957577066169392, 18.306612221424416 ], [ -64.95748436227575, 18.306611550871821 ], [ -64.957400543203732, 18.306646251967607 ], [ -64.957335164327617, 18.306707775166444 ], [ -64.957214800140207, 18.306697884515984 ], [ -64.957131651620784, 18.306661842315009 ], [ -64.957048000186944, 18.306687826227346 ], [ -64.956964347443375, 18.306722527323132 ], [ -64.956871477221284, 18.306739626413844 ], [ -64.956769553229719, 18.306738788223129 ], [ -64.956676849336134, 18.306738116360862 ], [ -64.956584479409116, 18.306701907831439 ], [ -64.956510719935409, 18.306648263625334 ], [ -64.956436959152029, 18.306603504240911 ], [ -64.956335035160521, 18.306602666050196 ], [ -64.956242163628701, 18.306619597502731 ], [ -64.956149292096939, 18.306627810462089 ], [ -64.956066143577516, 18.306600654392469 ], [ -64.955973439683873, 18.306599816201754 ], [ -64.955871515692309, 18.306607862832664 ], [ -64.955778644160546, 18.306624961923319 ], [ -64.955704045186451, 18.306668547840786 ], [ -64.955740422663723, 18.306748511235469 ], [ -64.955786187877038, 18.306819757446647 ], [ -64.955831953090353, 18.306891002348209 ], [ -64.955821894801716, 18.306979348959771 ], [ -64.955747295827621, 18.307031987336984 ], [ -64.955672696853526, 18.307084458076019 ], [ -64.955598265517608, 18.307128211631607 ], [ -64.955505393985845, 18.307136258262517 ], [ -64.955412690092203, 18.307144472531604 ], [ -64.95532954157278, 18.307117315152254 ], [ -64.955237005317315, 18.307098874956409 ], [ -64.9552361671266, 18.307187387896477 ], [ -64.955189228446272, 18.307257795916939 ], [ -64.95509652455263, 18.307274895007652 ], [ -64.95501320839503, 18.307247569990125 ], [ -64.954947829518915, 18.307309093189019 ], [ -64.954974986898208, 18.307389056583702 ], [ -64.95501136437548, 18.307469019978384 ], [ -64.955047741852695, 18.307548983373067 ], [ -64.954973142878657, 18.307601454112159 ], [ -64.954871218887092, 18.307591897428267 ], [ -64.954797458103712, 18.307546970405667 ], [ -64.95470475421007, 18.30755518598437 ], [ -64.954639375333954, 18.307616541545087 ], [ -64.95457936087837, 18.307630120234762 ], [ -64.954548012545445, 18.307643196010019 ], [ -64.954454638099264, 18.307642356509575 ], [ -64.954361263653027, 18.307632802445085 ], [ -64.954276774028472, 18.307658953995542 ], [ -64.954183231944114, 18.307676053086197 ], [ -64.954089689859757, 18.307684267355285 ], [ -64.954005367873322, 18.30771041759607 ], [ -64.953920878248766, 18.3077365704562 ], [ -64.953873604292141, 18.307807649029257 ], [ -64.953891541573569, 18.307897000159983 ], [ -64.953928254327082, 18.307986517619213 ], [ -64.953899420566302, 18.308066817599865 ], [ -64.953824318677789, 18.308110737483958 ], [ -64.953730776593432, 18.30811895306266 ], [ -64.953646454606996, 18.308145104613118 ], [ -64.953571185080364, 18.308198078266628 ], [ -64.953523743485619, 18.308269155530013 ], [ -64.953495077363016, 18.308349286562873 ], [ -64.953494406810421, 18.308438637693598 ], [ -64.953511841177374, 18.308581634340101 ], [ -64.953398350153918, 18.308741393491346 ], [ -64.953332300725151, 18.308803419604601 ], [ -64.953331630172613, 18.308892769425711 ], [ -64.953321404245798, 18.308981954227988 ], [ -64.953358116999368, 18.309062588175266 ], [ -64.953329450876709, 18.309142719208069 ], [ -64.953319392588071, 18.309231901391001 ], [ -64.953271950993326, 18.309302981273731 ], [ -64.953261892704688, 18.309392163456664 ], [ -64.953279829986116, 18.309481683535239 ], [ -64.953297767267486, 18.309571033356292 ], [ -64.953297431991189, 18.309607747419534 ], [ -64.953297096714948, 18.309661222677789 ], [ -64.953352584940603, 18.309733139441562 ], [ -64.953351746749888, 18.309822490572344 ], [ -64.953285864959298, 18.309884350357152 ], [ -64.953201376644358, 18.309919554367355 ], [ -64.953172709212083, 18.309999685400214 ], [ -64.953153263187346, 18.31008869994497 ], [ -64.953180588204873, 18.310169333892247 ], [ -64.953226688694429, 18.3102410830179 ], [ -64.953216630405791, 18.310330266510505 ], [ -64.953159801075003, 18.310401346393235 ], [ -64.953131134952343, 18.310481477426038 ], [ -64.95314890459565, 18.3105976493502 ], [ -64.953185617349163, 18.310678284607093 ], [ -64.95325049462059, 18.31074131654924 ], [ -64.95327781963806, 18.310821950496518 ], [ -64.953230544371763, 18.310893027759903 ], [ -64.953276644861376, 18.310964776885555 ], [ -64.953275806670661, 18.31105396037816 ], [ -64.953200704782148, 18.311107101669791 ], [ -64.953116215157536, 18.311142138041873 ], [ -64.953022673073178, 18.311150353620633 ], [ -64.952947571184666, 18.311194273504668 ], [ -64.952928125159985, 18.311283456997273 ], [ -64.952936674705313, 18.311372808128056 ], [ -64.95295461198674, 18.311462326896901 ], [ -64.952981937004211, 18.311542793206058 ], [ -64.952925276621215, 18.311613871779116 ], [ -64.952850005784853, 18.311666845432626 ], [ -64.9527745686201, 18.311737756367506 ], [ -64.952755122595363, 18.311826772221991 ], [ -64.952763839778868, 18.311916123352717 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_493", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.992021335102095, 18.36556535071901 ], [ -64.991947574318715, 18.365639782054927 ], [ -64.991812457974675, 18.36579199748968 ], [ -64.99176367527474, 18.365863242391242 ], [ -64.991590840348294, 18.366050998422168 ], [ -64.991536859556277, 18.366117047850935 ], [ -64.991416831954837, 18.366392142045243 ], [ -64.991400068140422, 18.366478810965646 ], [ -64.99149981152641, 18.366709481051828 ], [ -64.991512888611339, 18.366755246265143 ], [ -64.991497801178355, 18.366769495507356 ], [ -64.99147768460108, 18.366774020427556 ], [ -64.991422364013602, 18.36681190795781 ], [ -64.991417333559582, 18.36681190795781 ], [ -64.991332342330224, 18.366796820524826 ], [ -64.991247348481579, 18.366767483849628 ], [ -64.991167554034689, 18.366733453306381 ], [ -64.991087758278127, 18.36669456125702 ], [ -64.991028245427344, 18.36663203222929 ], [ -64.990978793484544, 18.366559947827341 ], [ -64.990919114305314, 18.366497251161491 ], [ -64.990908888378499, 18.366316704880433 ], [ -64.990914923351681, 18.366229868321852 ], [ -64.990974602530969, 18.366133308750875 ], [ -64.991044675275134, 18.36608268203139 ], [ -64.991152131325464, 18.366032390588202 ], [ -64.991211475228397, 18.365971537941903 ], [ -64.991330329362825, 18.365834409940135 ], [ -64.991395206634252, 18.365773557293892 ], [ -64.991465110430624, 18.36572293057435 ], [ -64.991717407147007, 18.36563290889103 ], [ -64.99180323656708, 18.365618156734399 ], [ -64.991894265388964, 18.365613798142647 ], [ -64.991979928480532, 18.365594016841612 ], [ -64.992021335102095, 18.36556535071901 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_133", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.949611907395365, 18.373985142829895 ], [ -64.949607047198867, 18.373998553881393 ], [ -64.949592461370685, 18.374065776777172 ], [ -64.949563461281457, 18.374146410724393 ], [ -64.949572178464905, 18.37423643240777 ], [ -64.949604363678873, 18.374313043039535 ], [ -64.949618446592638, 18.374331147959083 ], [ -64.949646105576733, 18.374389821309478 ], [ -64.949678461048222, 18.3744664319413 ], [ -64.949710815209983, 18.374543042573123 ], [ -64.94975724966622, 18.374615294613193 ], [ -64.94979899156408, 18.374692072883136 ], [ -64.949831179397393, 18.374768683514958 ], [ -64.949835201403175, 18.374854178968405 ], [ -64.949858001500445, 18.374935148191923 ], [ -64.949890354352533, 18.375011758823746 ], [ -64.949932097560065, 18.375088537093689 ], [ -64.950011724368835, 18.375125082209081 ], [ -64.950067715508908, 18.375188449427526 ], [ -64.95010459721027, 18.375269586289221 ], [ -64.950165282218393, 18.375328594915914 ], [ -64.950221273358466, 18.375391794496181 ], [ -64.950286652234638, 18.375450803122874 ], [ -64.950337949506718, 18.375514170341319 ], [ -64.950347337242761, 18.375509644111446 ], [ -64.95036158648503, 18.375496233059891 ], [ -64.950376506279838, 18.375411072882741 ], [ -64.950339458250028, 18.375334294612799 ], [ -64.95032135333048, 18.375253325389224 ], [ -64.95034079935516, 18.375172522494154 ], [ -64.950416570486595, 18.375123741103948 ], [ -64.950505921617321, 18.375133464116288 ], [ -64.950575994361543, 18.375183420283179 ], [ -64.950631985501616, 18.375246787501624 ], [ -64.950664339663433, 18.375323398133446 ], [ -64.950706081561236, 18.375400176403389 ], [ -64.950737766480131, 18.375436386242484 ], [ -64.950771460437409, 18.375458179201189 ], [ -64.950819741532541, 18.375526743202101 ], [ -64.950856789562408, 18.375602683281329 ], [ -64.950920324418973, 18.375660686079186 ], [ -64.950957372448784, 18.375736458520237 ], [ -64.950979165407489, 18.375819270453746 ], [ -64.951001124694699, 18.375902085006544 ], [ -64.951087459648534, 18.375924379569994 ], [ -64.951174128568994, 18.375925051432262 ], [ -64.951260797489454, 18.375907783393757 ], [ -64.951347632738361, 18.375890350336419 ], [ -64.951434135330317, 18.375905436459732 ], [ -64.951516611987529, 18.375934774444602 ], [ -64.951602945631635, 18.375967799158957 ], [ -64.951681735559362, 18.376004510602854 ], [ -64.951730350621119, 18.376051618230974 ], [ -64.951764382473982, 18.376030160548567 ], [ -64.951843841644575, 18.375987748098112 ], [ -64.951881727865157, 18.375966458053824 ], [ -64.951930342926914, 18.375995627090902 ], [ -64.951990023415817, 18.376057150289739 ], [ -64.952049868923552, 18.376118673488577 ], [ -64.952117091819332, 18.376173154575724 ], [ -64.952165540552585, 18.376241887524429 ], [ -64.952183645472132, 18.376324699457882 ], [ -64.95218666164908, 18.376407346372559 ], [ -64.952204766568627, 18.376490159615685 ], [ -64.952234270881945, 18.376573140496987 ], [ -64.95226746454415, 18.376652433339075 ], [ -64.95234239748487, 18.37669618558499 ], [ -64.952417331735205, 18.37673994045025 ], [ -64.952488411617935, 18.376787214406875 ], [ -64.9525519464745, 18.376845217204675 ], [ -64.95258513751736, 18.376928196776305 ], [ -64.95258513751736, 18.37692450873709 ], [ -64.95264967951249, 18.376874721517993 ], [ -64.952664765635745, 18.376871201117012 ], [ -64.95275110058958, 18.376893495680463 ], [ -64.952841457549198, 18.37689416754273 ], [ -64.952924604758948, 18.376862482623835 ], [ -64.952981601727913, 18.376798278524348 ], [ -64.953001885943365, 18.376738934621358 ], [ -64.953173212126501, 18.37717362032879 ], [ -64.953329953791126, 18.377344777564133 ], [ -64.953545201168026, 18.377629762408901 ], [ -64.953721053581091, 18.377876525756903 ], [ -64.953935965681694, 18.378180287383486 ], [ -64.954209886408989, 18.378541210997867 ], [ -64.954503420799142, 18.378902303560039 ], [ -64.954240564189377, 18.379018310465369 ], [ -64.953733123527456, 18.37909860782662 ], [ -64.95327781963806, 18.379057368843235 ], [ -64.952837097647773, 18.37893348556446 ], [ -64.95220778405519, 18.378747908829382 ], [ -64.951642172957349, 18.378472311720657 ], [ -64.951265154771477, 18.378288747952979 ], [ -64.950826110472349, 18.377984149445354 ], [ -64.950387736725816, 18.377589195287726 ], [ -64.950011893316628, 18.377285098384846 ], [ -64.949573015345948, 18.37695032632098 ], [ -64.949229358460457, 18.376556209044395 ], [ -64.948948732207384, 18.376162427044164 ], [ -64.948652180330669, 18.375374863043646 ], [ -64.948497115047473, 18.374951575420368 ], [ -64.948195700354859, 18.374135681883217 ], [ -64.947942903343403, 18.373517935322582 ], [ -64.947812816143653, 18.373341747633219 ], [ -64.947638807750138, 18.373205625460287 ], [ -64.947467649205123, 18.373167739239761 ], [ -64.947264974689062, 18.373232447563339 ], [ -64.946836826869287, 18.373360858381659 ], [ -64.946404991010354, 18.37342539906706 ], [ -64.945987572031754, 18.373354152855882 ], [ -64.945477616797746, 18.373167739239761 ], [ -64.945101772078885, 18.372909911774286 ], [ -64.944756605140356, 18.372720480671546 ], [ -64.944341868372135, 18.372572456190426 ], [ -64.943847503485472, 18.372407667894834 ], [ -64.943434778374922, 18.372302558778586 ], [ -64.943101178468396, 18.372277748333261 ], [ -64.942798760566291, 18.372259308137416 ], [ -64.942325350447618, 18.372285794964171 ], [ -64.941946488242195, 18.372312952343464 ], [ -64.941379534729492, 18.372367267102163 ], [ -64.940952226410104, 18.372414876335029 ], [ -64.940600689222151, 18.372429125577298 ], [ -64.940356271498501, 18.372414541058731 ], [ -64.940241273041408, 18.372349329820736 ], [ -64.943110064599693, 18.370152096667312 ], [ -64.943179634429441, 18.370209931826992 ], [ -64.943259428876331, 18.370248823876409 ], [ -64.943349619507444, 18.370235246496406 ], [ -64.943425223000702, 18.370187972539838 ], [ -64.943490769515051, 18.370131141899321 ], [ -64.943551454523174, 18.370069452372036 ], [ -64.943631754503826, 18.370031901427751 ], [ -64.943722111463444, 18.370018153790284 ], [ -64.943806935054624, 18.370047490465481 ], [ -64.943831914447742, 18.370047659413274 ], [ -64.943877175436967, 18.370038438005679 ], [ -64.943892262869895, 18.370029051579309 ], [ -64.943972730488724, 18.369991500635024 ], [ -64.944062750862372, 18.370006420429888 ], [ -64.944152604907515, 18.370021506553144 ], [ -64.944237597446545, 18.370046149360292 ], [ -64.944327619129865, 18.370061070464828 ], [ -64.944392159815322, 18.370123765821006 ], [ -64.944422167043115, 18.370141367826136 ], [ -64.944468938085265, 18.370168692843606 ], [ -64.944548733841827, 18.370209596550694 ], [ -64.944633223466383, 18.370232730614589 ], [ -64.944717713090938, 18.370255864678484 ], [ -64.944798011761918, 18.370225020569649 ], [ -64.9448873628927, 18.370225857450691 ], [ -64.944976714023426, 18.370231055542831 ], [ -64.945098754592266, 18.370267934624849 ], [ -64.945159439600388, 18.370326775613364 ], [ -64.945229679982731, 18.370376731780311 ], [ -64.945290364990854, 18.370435572768827 ], [ -64.945360437735076, 18.370490056475319 ], [ -64.945430678117418, 18.370540012642209 ], [ -64.945481807751321, 18.370607904780854 ], [ -64.945523549649181, 18.370684683050797 ], [ -64.945579540789254, 18.370752408860994 ], [ -64.945630670423213, 18.370820303618984 ], [ -64.945677106189066, 18.370892554349382 ], [ -64.945699904976664, 18.3709735235729 ], [ -64.945774839227056, 18.371019121148095 ], [ -64.945854634983561, 18.37105566757316 ], [ -64.945934263101947, 18.37109221137888 ], [ -64.945980698867857, 18.37116446341895 ], [ -64.946022440765717, 18.371241241688892 ], [ -64.946068876531626, 18.371313493728962 ], [ -64.946101230693387, 18.371390104360785 ], [ -64.946133417217027, 18.37146671499255 ], [ -64.946170465246894, 18.37154349326255 ], [ -64.946193264034434, 18.371628988715941 ], [ -64.946211368953982, 18.371709957939515 ], [ -64.946253110851842, 18.371786736209458 ], [ -64.946304408123922, 18.371854629657776 ], [ -64.946350843889832, 18.371926881697846 ], [ -64.946406667391784, 18.371990248916291 ], [ -64.9464720462679, 18.372049089904806 ], [ -64.946542286650242, 18.372099046071753 ], [ -64.946612527032585, 18.372149002238643 ], [ -64.946663656666544, 18.372216895686961 ], [ -64.946705398564347, 18.372293506318783 ], [ -64.94678033281474, 18.372339103893978 ], [ -64.946864822439295, 18.372366764187689 ], [ -64.94690237338358, 18.372374140266061 ], [ -64.9469540059319, 18.372379001772231 ], [ -64.947038663194633, 18.372397777244373 ], [ -64.947123488095485, 18.372380342877364 ], [ -64.947203786766465, 18.372340612637231 ], [ -64.947279559207573, 18.372296188529106 ], [ -64.94735063778063, 18.372247405829171 ], [ -64.94743076881349, 18.372216560410664 ], [ -64.947520119944215, 18.372230642014756 ], [ -64.947609471074941, 18.372240365027153 ], [ -64.94769429597585, 18.372223098298321 ], [ -64.947770068416901, 18.372178674190138 ], [ -64.947845505581711, 18.37215235500156 ], [ -64.947850367087881, 18.372147828771631 ], [ -64.947883893407038, 18.372071721054283 ], [ -64.947936197817626, 18.37200466579668 ], [ -64.948025548948351, 18.372018915038893 ], [ -64.948105343395241, 18.372050933924413 ], [ -64.948184972823299, 18.372092005269678 ], [ -64.948259907073691, 18.372141961436625 ], [ -64.948339535192076, 18.372174147960266 ], [ -64.948419330948639, 18.372210693075658 ], [ -64.948503652935074, 18.372242711961178 ], [ -64.948573893317416, 18.372292835766189 ], [ -64.948658215303851, 18.372333907111511 ], [ -64.948738011060357, 18.372374978456776 ], [ -64.948803389936529, 18.372429293215419 ], [ -64.948859381076602, 18.372492660433863 ], [ -64.948900955336342, 18.372569438703806 ], [ -64.948938003366152, 18.372646049335629 ], [ -64.948956108285699, 18.372727186197324 ], [ -64.948983768579467, 18.372808155420842 ], [ -64.949006567367064, 18.372889292282537 ], [ -64.949029366154662, 18.372970429144232 ], [ -64.949066414184472, 18.373047039776054 ], [ -64.949103462214282, 18.373123650407877 ], [ -64.949126762606625, 18.373150807787226 ], [ -64.949154590538512, 18.373191543856194 ], [ -64.949196332436372, 18.373268322126137 ], [ -64.949233380466239, 18.373344932757959 ], [ -64.949251485385787, 18.373425901981477 ], [ -64.949260202569235, 18.373511397434925 ], [ -64.949297084270597, 18.373588175704867 ], [ -64.94935123139112, 18.37365506332435 ], [ -64.949402361025022, 18.373722789134547 ], [ -64.94945348934931, 18.373790682582865 ], [ -64.949514174357432, 18.37384952357138 ], [ -64.949574859365555, 18.373908364559952 ], [ -64.949611907395365, 18.373985142829895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1145", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.846737256954498, 18.33693007744256 ], [ -64.846737089316377, 18.336952540953803 ], [ -64.846736586401903, 18.33697517210328 ], [ -64.846735914539693, 18.336997970890877 ], [ -64.846734742382353, 18.337020602040297 ], [ -64.846733401277163, 18.337043400827895 ], [ -64.846731723586061, 18.337066368563285 ], [ -64.846729545599885, 18.33708916604121 ], [ -64.846727197356188, 18.33711196482875 ], [ -64.846724516455538, 18.337134932564197 ], [ -64.846721666607095, 18.337157730042065 ], [ -64.846718312534563, 18.337180528829663 ], [ -64.846714624495405, 18.33720332761726 ], [ -64.846710770127743, 18.337226126404857 ], [ -64.846706579174167, 18.337248757554278 ], [ -64.846702051634566, 18.337271388703698 ], [ -64.846697191438068, 18.337293852214998 ], [ -64.846691993345928, 18.337316148088178 ], [ -64.846686630235013, 18.337338443961301 ], [ -64.846680930538128, 18.337360572196303 ], [ -64.846675063203065, 18.337382029878768 ], [ -64.846669028229883, 18.33740264937046 ], [ -64.84666282561858, 18.33742343650033 ], [ -64.846656120092803, 18.3374442236302 ], [ -64.846648911652608, 18.337465346036311 ], [ -64.846641535574292, 18.337486468442478 ], [ -64.846633656581503, 18.337507926124886 ], [ -64.846625442312472, 18.33752938380735 ], [ -64.846608846136178, 18.337570287514495 ], [ -64.846590907545135, 18.337611694136058 ], [ -64.846571798106368, 18.337652933119443 ], [ -64.846551681529093, 18.337694172102886 ], [ -64.84653256947098, 18.337731052494576 ], [ -64.846513626360718, 18.337765250675943 ], [ -64.846493174507145, 18.337800119409906 ], [ -64.846471215219992, 18.337834988143868 ], [ -64.84644757824168, 18.337870695068489 ], [ -64.846422432520058, 18.337906569631343 ], [ -64.84639611333148, 18.337942444194141 ], [ -64.846368285399535, 18.337978318756939 ], [ -64.846339116362515, 18.338014193319793 ], [ -64.846308606220305, 18.338050235520711 ], [ -64.846276587334785, 18.338086277721686 ], [ -64.846243394982253, 18.338122487560781 ], [ -64.846206514590619, 18.338160876695781 ], [ -64.846167956507827, 18.338199433468901 ], [ -64.84612805993919, 18.338237990242021 ], [ -64.84608631804133, 18.338276882291439 ], [ -64.846042732123919, 18.338316109617097 ], [ -64.84599746851535, 18.338355336942811 ], [ -64.845949190039562, 18.338396073011836 ], [ -64.845904263016962, 18.338432785765349 ], [ -64.845860341823254, 18.338467151584894 ], [ -64.8458159164054, 18.338501014489964 ], [ -64.845770655416175, 18.338534039204319 ], [ -64.84572489020286, 18.338566225727959 ], [ -64.845678788403632, 18.338597741699061 ], [ -64.845632186309274, 18.338628251841271 ], [ -64.845585079990769, 18.338657923792766 ], [ -64.845537806034201, 18.338686589915369 ], [ -64.845491873182709, 18.338713412018421 ], [ -64.845445771383424, 18.338739395930702 ], [ -64.845399504565364, 18.338764206376027 ], [ -64.845353236437631, 18.338788010992459 ], [ -64.845306968309899, 18.338810809780057 ], [ -64.845260867820286, 18.338832602738762 ], [ -64.845214598382881, 18.338853222230512 ], [ -64.845168499202941, 18.338872835893369 ], [ -64.845122733989626, 18.338891108451037 ], [ -64.845076968776311, 18.338908375179869 ], [ -64.845031538839294, 18.338924636079867 ], [ -64.844986276540396, 18.338939555874674 ], [ -64.844941349517853, 18.33895346984059 ], [ -64.844896590133374, 18.338966042701429 ], [ -64.844852166025191, 18.33897760973332 ], [ -64.844808077193363, 18.338988003298255 ], [ -64.844765497104788, 18.33899688811988 ], [ -64.844723419930631, 18.339004599474549 ], [ -64.844681510394651, 18.33901130500027 ], [ -64.844639936134911, 18.339016837059035 ], [ -64.844599367704063, 18.339021195650787 ], [ -64.844551926109318, 18.339025218966242 ], [ -64.844505490343408, 18.339028068814685 ], [ -64.844458719301258, 18.339029912834292 ], [ -64.844410607153918, 18.339030918663127 ], [ -64.844362327368458, 18.339031086301304 ], [ -64.844314047582998, 18.339030080472412 ], [ -64.844265767797481, 18.339028236452862 ], [ -64.844217655650198, 18.339025386604362 ], [ -64.844169878779155, 18.339021530927084 ], [ -64.844122269546233, 18.339016669420914 ], [ -64.844075330865905, 18.339010969724029 ], [ -64.844027386356743, 18.339004096560075 ], [ -64.843980112400118, 18.338996217567342 ], [ -64.843933676634265, 18.338987332745717 ], [ -64.843910877846668, 18.338982638877667 ], [ -64.84388807905907, 18.33897760973332 ], [ -64.843865783185947, 18.338972412950909 ], [ -64.843843487312768, 18.338966880892144 ], [ -64.843821526715885, 18.338961181195259 ], [ -64.843799901395357, 18.338955313860197 ], [ -64.84377861135107, 18.338949111248894 ], [ -64.843757488944902, 18.338942908637534 ], [ -64.84373686945321, 18.338936370749934 ], [ -64.843715747047042, 18.33892932994786 ], [ -64.843690936601718, 18.338920948040652 ], [ -64.84366629379457, 18.338912230857204 ], [ -64.843641818625542, 18.338903178397402 ], [ -64.843617343456515, 18.338893790661359 ], [ -64.843593035925608, 18.338884235287139 ], [ -64.843569063671055, 18.338874512274799 ], [ -64.843545091416445, 18.338864453986162 ], [ -64.843521454438132, 18.338854228059347 ], [ -64.843498152736117, 18.338843834494412 ], [ -64.843475018672279, 18.338833105653237 ], [ -64.843452219884682, 18.338822209173884 ], [ -64.843429756373382, 18.338811145056354 ], [ -64.843407460500202, 18.338799913300704 ], [ -64.843385667541497, 18.338788346268757 ], [ -64.843364042220912, 18.338776779236809 ], [ -64.843342919814802, 18.338765044566742 ], [ -64.84330503359422, 18.338743083969916 ], [ -64.843268320840707, 18.338720452820439 ], [ -64.843250551197457, 18.338709053426669 ], [ -64.843233116830447, 18.338697486394722 ], [ -64.843216017739792, 18.338685751724654 ], [ -64.843199253925377, 18.338674017054586 ], [ -64.843182993025437, 18.338662114746342 ], [ -64.84316689976356, 18.338650212438097 ], [ -64.843151309416214, 18.338638142491732 ], [ -64.843136054345109, 18.338626072545367 ], [ -64.843121134550302, 18.338613834960881 ], [ -64.843106550031735, 18.338601429738219 ], [ -64.843092468427642, 18.338589024515557 ], [ -64.843078722099847, 18.338576619292894 ], [ -64.843065478686469, 18.338564046432111 ], [ -64.843052570549389, 18.338551473571272 ], [ -64.843039327136012, 18.338538062519774 ], [ -64.843026083722634, 18.338524148553802 ], [ -64.84301267267108, 18.338509899311589 ], [ -64.842999596895879, 18.338495147154902 ], [ -64.842986521120622, 18.338480227360094 ], [ -64.842973612983542, 18.338464972288989 ], [ -64.842960872484582, 18.338449549579764 ], [ -64.842948467261976, 18.338433791594184 ], [ -64.842936062039314, 18.338417698332364 ], [ -64.842923824454772, 18.338401437432424 ], [ -64.842911754508407, 18.338384841256186 ], [ -64.842899852200219, 18.338368077441771 ], [ -64.842888285168272, 18.338351145989236 ], [ -64.842876718136324, 18.338333879260404 ], [ -64.842865318742554, 18.338316109617097 ], [ -64.842854086986904, 18.338298172335726 ], [ -64.842843022869374, 18.338280067416179 ], [ -64.842832294028142, 18.338261794858454 ], [ -64.842821732825087, 18.338243354662609 ], [ -64.842811506898329, 18.338224746828644 ], [ -64.842801448609691, 18.338205971356501 ], [ -64.842791893235471, 18.338187195884359 ], [ -64.842782337861252, 18.338168252774096 ], [ -64.842773285401449, 18.338149309663834 ], [ -64.842764400579824, 18.338130198915451 ], [ -64.842755851034497, 18.338111088167011 ], [ -64.842747636765466, 18.338091977418571 ], [ -64.842739757772677, 18.338072866670188 ], [ -64.842732214056184, 18.338053588283628 ], [ -64.842724837977869, 18.338034309897068 ], [ -64.842717964813971, 18.338015199148629 ], [ -64.842711259288194, 18.337996088400246 ], [ -64.842705056676891, 18.337976977651806 ], [ -64.842699190651501, 18.337957866903423 ], [ -64.842693489644944, 18.337938756154983 ], [ -64.842688292862476, 18.337919813044721 ], [ -64.842683431356306, 18.337900869934458 ], [ -64.842678905126377, 18.337882094462316 ], [ -64.842674714172801, 18.337863318990173 ], [ -64.842670858495467, 18.337844711156208 ], [ -64.842667338094486, 18.337826270960363 ], [ -64.842664152969746, 18.337807830764518 ], [ -64.842661470759424, 18.337789558206794 ], [ -64.842659123825399, 18.337771453287246 ], [ -64.842656944529551, 18.337753348367698 ], [ -64.842655268148121, 18.337735578724448 ], [ -64.842654094681109, 18.337718311995616 ], [ -64.842653088852217, 18.337701212904904 ], [ -64.842652418299622, 18.337684113814248 ], [ -64.842652250661502, 18.337666847085416 ], [ -64.842652250661502, 18.337649245080286 ], [ -64.842652585937799, 18.337631307798858 ], [ -64.842653424128514, 18.337613035241191 ], [ -64.842654429957406, 18.337594595045346 ], [ -64.842655771062539, 18.337575819573203 ], [ -64.842657447443969, 18.337556876462941 ], [ -64.842659626739817, 18.337537598076381 ], [ -64.842661973673842, 18.3375181520517 ], [ -64.842664655884164, 18.337498370750666 ], [ -64.842667673370727, 18.337478421811568 ], [ -64.842671026133644, 18.337458305234293 ], [ -64.842674714172801, 18.337438021018841 ], [ -64.842678905126377, 18.337416564646105 ], [ -64.842683598994427, 18.337395105653968 ], [ -64.842688460500597, 18.337373312695263 ], [ -64.842693657283064, 18.337351352098381 ], [ -64.842699356979949, 18.337329223863378 ], [ -64.842705224315011, 18.337307095628375 ], [ -64.842711426926314, 18.337284967393373 ], [ -64.842717964813971, 18.33726267152025 ], [ -64.842731878779887, 18.337218582688365 ], [ -64.842738751943784, 18.337197963196616 ], [ -64.842744954555144, 18.337180696467783 ], [ -64.842751492442744, 18.33716326210083 ], [ -64.842758365606642, 18.3371456600957 ], [ -64.842765741685014, 18.337128225728748 ], [ -64.842773453039626, 18.337110623723618 ], [ -64.842780996756119, 18.3370941951855 ], [ -64.842789043387029, 18.337077766647383 ], [ -64.842797257656059, 18.337061170471145 ], [ -64.842805807201387, 18.337044741933028 ], [ -64.842824079759112, 18.337011381942375 ], [ -64.842843693421969, 18.336978021951722 ], [ -64.842864815828079, 18.336944326684772 ], [ -64.842887446977556, 18.336910296141525 ], [ -64.842911419232109, 18.33687593163171 ], [ -64.842937067868149, 18.336841061588075 ], [ -64.842964057609322, 18.336806026525664 ], [ -64.842992556093805, 18.336770485929435 ], [ -64.843022898597894, 18.33673410845222 ], [ -64.843055252759655, 18.336696725146055 ], [ -64.843089450941079, 18.336658336011112 ], [ -64.843126331332712, 18.336618438132859 ], [ -64.843166061572845, 18.336576194630197 ], [ -64.84321015040473, 18.336530595745387 ], [ -64.843269326669542, 18.336470413651682 ], [ -64.843391534876559, 18.336347368563679 ], [ -64.843431265116692, 18.336307804651995 ], [ -64.843468983699097, 18.336270925569977 ], [ -64.843514581274235, 18.336227339652567 ], [ -64.84355867010612, 18.336186434635749 ], [ -64.843601417832815, 18.336147877862629 ], [ -64.843643327368852, 18.336111332747237 ], [ -64.84368708092444, 18.336074452355547 ], [ -64.843708873883145, 18.336056682712297 ], [ -64.843730331565553, 18.336039415983464 ], [ -64.843751789248017, 18.336022653478722 ], [ -64.843773079292305, 18.336006392578781 ], [ -64.843794201698415, 18.335990465645409 ], [ -64.843815324104582, 18.335975210574304 ], [ -64.843855221982835, 18.335946879727999 ], [ -64.84387517092199, 18.335933468676444 ], [ -64.843895119861145, 18.335920226572739 ], [ -64.843919092115698, 18.335904802553841 ], [ -64.843943232008428, 18.335889547482736 ], [ -64.843967371901158, 18.335874461359424 ], [ -64.843991847070185, 18.335859707893064 ], [ -64.844034594796938, 18.335834563481171 ], [ -64.844077845438107, 18.335810254640592 ], [ -64.844121263717398, 18.335786786610129 ], [ -64.844164849634808, 18.335764155460708 ], [ -64.844208603190395, 18.335742528830451 ], [ -64.844252356745983, 18.335721741700581 ], [ -64.844296277939691, 18.335701960399604 ], [ -64.844340199133455, 18.335683184927461 ], [ -64.844382443945733, 18.335665919508301 ], [ -64.844424688758011, 18.335649489660511 ], [ -64.844466933570288, 18.335634234589406 ], [ -64.844508843106325, 18.335619817709016 ], [ -64.844550417366008, 18.335606406657519 ], [ -64.844601379361791, 18.335591151586414 ], [ -64.844650329699846, 18.335577237620441 ], [ -64.844698274209009, 18.335564329483361 ], [ -64.844746386356348, 18.335552259536996 ], [ -64.844793660312973, 18.335541195419466 ], [ -64.844839928440706, 18.335531304769006 ], [ -64.844885190739603, 18.335522587585501 ], [ -64.844929782485906, 18.335514877540561 ], [ -64.844973368403316, 18.335508339652961 ], [ -64.845016116130068, 18.335502807594196 ], [ -64.845057858027928, 18.335498447692771 ], [ -64.845098426458776, 18.335495094929911 ], [ -64.845137989060731, 18.335492915634006 ], [ -64.845176881110149, 18.335491743476666 ], [ -64.845214934968851, 18.335491743476666 ], [ -64.845251646412692, 18.335492580357709 ], [ -64.845288528114054, 18.335494593325109 ], [ -64.845327923077889, 18.335497778449849 ], [ -64.845367820956142, 18.335501969403481 ], [ -64.845410401044717, 18.335507501462246 ], [ -64.845453316409589, 18.335514205678294 ], [ -64.845496231774462, 18.335522084671084 ], [ -64.845539314777454, 18.335530969492709 ], [ -64.845582397780504, 18.335540861452898 ], [ -64.845625145507199, 18.335551925570371 ], [ -64.845667725595774, 18.335563995516736 ], [ -64.845709801460259, 18.335577069982321 ], [ -64.845751543358119, 18.335590983948236 ], [ -64.845792616013057, 18.335605903743101 ], [ -64.845833015496112, 18.335621829366744 ], [ -64.845872747045917, 18.335638425543038 ], [ -64.845911471457157, 18.335655859909991 ], [ -64.84593041456742, 18.335664912369737 ], [ -64.84594935636801, 18.335674132467659 ], [ -64.845967797873527, 18.335683521513431 ], [ -64.845986070431252, 18.335693075577979 ], [ -64.846004175350799, 18.335702967538111 ], [ -64.846021777355929, 18.335712856878956 ], [ -64.846039044084762, 18.335722747529417 ], [ -64.84605580789912, 18.335732805818111 ], [ -64.846090844271259, 18.335754766414937 ], [ -64.846125042452627, 18.335777566512206 ], [ -64.846158736409905, 18.335801369818967 ], [ -64.846191593486083, 18.335825844987994 ], [ -64.846223948957572, 18.335851325985914 ], [ -64.846255800204915, 18.335877646484164 ], [ -64.84628698089972, 18.335904971501634 ], [ -64.84631749104193, 18.335933133400147 ], [ -64.846347498269722, 18.335962302437224 ], [ -64.84637700258304, 18.335992309665016 ], [ -64.84640583634382, 18.336023156393139 ], [ -64.846433999552005, 18.336055173968987 ], [ -64.8464616585361, 18.336087863407101 ], [ -64.846488817225065, 18.336121558673995 ], [ -64.846515470380325, 18.336156259769837 ], [ -64.846534413490588, 18.336183584787307 ], [ -64.846545311279613, 18.336203533726462 ], [ -64.846556040120845, 18.336223482665559 ], [ -64.846566432376108, 18.336243600552507 ], [ -64.846576659612538, 18.336263549491662 ], [ -64.846586382624878, 18.336283664759264 ], [ -64.846595937999098, 18.336303948974717 ], [ -64.84660515809702, 18.336324065551992 ], [ -64.846614041608973, 18.336344349767387 ], [ -64.84662259246403, 18.336364633982839 ], [ -64.846630805423388, 18.336384919507907 ], [ -64.846638684416178, 18.336405370051807 ], [ -64.846646397080463, 18.336425655576932 ], [ -64.846653773158778, 18.336446106120832 ], [ -64.846660813960852, 18.336466725612524 ], [ -64.846667519486573, 18.336487177466097 ], [ -64.84667405737423, 18.33650779695779 ], [ -64.846680092347412, 18.33652858408766 ], [ -64.846685958372746, 18.336549372527202 ], [ -64.84669149043151, 18.336570158347342 ], [ -64.84669685616177, 18.336591113115389 ], [ -64.846701716358325, 18.336611901554875 ], [ -64.846706242588198, 18.336632855013193 ], [ -64.846710602489622, 18.33665397741936 ], [ -64.846714624495405, 18.33667476454923 ], [ -64.846718146206058, 18.336695720626892 ], [ -64.846721331330798, 18.336715669566047 ], [ -64.846724347507745, 18.33673578483365 ], [ -64.846726863389563, 18.336756405635015 ], [ -64.846729210323588, 18.336777191455212 ], [ -64.846731221981315, 18.336798147532875 ], [ -64.846733066000922, 18.336819100991192 ], [ -64.846734573434503, 18.336841061588075 ], [ -64.846735580573068, 18.336863189823077 ], [ -64.84673641745411, 18.33688531805808 ], [ -64.846737089316377, 18.33690761393126 ], [ -64.846737256954498, 18.33693007744256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_856", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.845221640494572, 18.316852059555004 ], [ -64.845147879711249, 18.316897489492021 ], [ -64.845084847769101, 18.316954320132538 ], [ -64.845031706477414, 18.317020703527874 ], [ -64.844978565185784, 18.317087257180674 ], [ -64.844915365605516, 18.317144086511519 ], [ -64.844854848235514, 18.317203430414509 ], [ -64.844789301721221, 18.317257745173151 ], [ -64.844723587568751, 18.317312227569971 ], [ -64.844653179548288, 18.317364195394589 ], [ -64.84458511846185, 18.317416329547711 ], [ -64.844521918881526, 18.317473160188172 ], [ -64.844451343222886, 18.317522779769149 ], [ -64.844385796708593, 18.317577263475641 ], [ -64.844307844971638, 18.317617161353894 ], [ -64.844229893234683, 18.317654712298122 ], [ -64.844149594563703, 18.317689916308382 ], [ -64.844049011677328, 18.317734506745012 ], [ -64.843963683862, 18.317752948250529 ], [ -64.843876009112705, 18.317761831762482 ], [ -64.84378850200153, 18.317758646637742 ], [ -64.84371122081717, 18.317719754588325 ], [ -64.84365673842035, 18.317654878626627 ], [ -64.84361499652249, 18.317580279652532 ], [ -64.843563028697872, 18.317513056756809 ], [ -64.843498320374295, 18.317457402202649 ], [ -64.84338365588377, 18.317379616794142 ], [ -64.843307548166422, 18.317336367462701 ], [ -64.843237810698497, 18.317287080538676 ], [ -64.843174611118229, 18.317228742464579 ], [ -64.843114596662645, 18.317164369417242 ], [ -64.843051397082377, 18.317106032652816 ], [ -64.842988197502109, 18.317047694578719 ], [ -64.842958357912437, 18.317026572172551 ], [ -64.843439647023899, 18.316508067393158 ], [ -64.843658582439957, 18.316612841233166 ], [ -64.843838961082895, 18.316578475413678 ], [ -64.8440086108846, 18.316525837036465 ], [ -64.844136351150325, 18.316346127636393 ], [ -64.844248668706825, 18.31611562649806 ], [ -64.844273646790271, 18.315843382152195 ], [ -64.844174740285325, 18.315593432369838 ], [ -64.844081533477265, 18.315442056435472 ], [ -64.843830579175687, 18.315289338086302 ], [ -64.843601753109112, 18.315210380520455 ], [ -64.844301474722158, 18.314325251120181 ], [ -64.8443876407282, 18.314343858954146 ], [ -64.844469951056908, 18.314373195629344 ], [ -64.844556117062893, 18.314395491502466 ], [ -64.844646138746214, 18.314399850094219 ], [ -64.844736328067711, 18.314397000245776 ], [ -64.844822494073753, 18.314408399639603 ], [ -64.844853171854083, 18.314415440441621 ], [ -64.844938164393113, 18.314435221742599 ], [ -64.845028186076433, 18.314450309175584 ], [ -64.845133462830859, 18.314536642819746 ], [ -64.845201523917297, 18.314583581500074 ], [ -64.845260867820286, 18.314652313139106 ], [ -64.845320379361397, 18.314712662870932 ], [ -64.845362456535554, 18.314786758930609 ], [ -64.845395984164327, 18.314863369562374 ], [ -64.845412411392772, 18.314945344614841 ], [ -64.845437390785946, 18.315024637456929 ], [ -64.845445269778679, 18.315109293409989 ], [ -64.845452981133292, 18.315193784344217 ], [ -64.845460860126082, 18.315278441606949 ], [ -64.845454322238481, 18.315362931231505 ], [ -64.845453484047766, 18.315447588494237 ], [ -64.845447113798286, 18.315532078118792 ], [ -64.845432026365302, 18.315613717894962 ], [ -64.845417106570494, 18.315695356361402 ], [ -64.845416771294197, 18.315733579167897 ], [ -64.845410567373222, 18.31577984729563 ], [ -64.845438899529199, 18.315859140137775 ], [ -64.845425320839581, 18.315911946153108 ], [ -64.845424482648809, 18.315997944520973 ], [ -64.845423812096271, 18.316083941579166 ], [ -64.845433032194194, 18.316170107585208 ], [ -64.845447281436407, 18.316256273591193 ], [ -64.845431355812764, 18.316342273268788 ], [ -64.845395648888086, 18.316418548624313 ], [ -64.845370000252046, 18.316499516538158 ], [ -64.845349213122176, 18.316580653399853 ], [ -64.845333790412951, 18.316618708568228 ], [ -64.845298083488274, 18.316694982614081 ], [ -64.845257347419249, 18.316771091641101 ], [ -64.845221640494572, 18.316852059555004 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_864", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.903842008073354, 18.312346115192099 ], [ -64.903754668600357, 18.312339242028202 ], [ -64.903659785410866, 18.312356676395154 ], [ -64.903571272470799, 18.312368075788982 ], [ -64.903482759530789, 18.312373272571449 ], [ -64.903394246590778, 18.312390706938402 ], [ -64.903305733650711, 18.312402106332172 ], [ -64.903217220710701, 18.312407470752817 ], [ -64.903128875408811, 18.312412667535284 ], [ -64.903040194830623, 18.312430101902237 ], [ -64.902945479279254, 18.312429431349642 ], [ -64.902857133977363, 18.312428593158927 ], [ -64.902768621037353, 18.312427922606389 ], [ -64.902674073124103, 18.312421217080612 ], [ -64.90258572782227, 18.312408308943532 ], [ -64.90249738252038, 18.312389533471389 ], [ -64.90246066976681, 18.31239607135899 ], [ -64.902428986157588, 18.312318454898332 ], [ -64.902393279232911, 18.312240838437674 ], [ -64.902345334723748, 18.312167077654294 ], [ -64.902320356640303, 18.312135226406951 ], [ -64.902314992219658, 18.312128520881174 ], [ -64.902398476015378, 18.312153498964619 ], [ -64.902492856290451, 18.312190546994486 ], [ -64.90258103395422, 18.312215357439754 ], [ -64.90266937925611, 18.312234132911897 ], [ -64.902776667668263, 18.312241006075794 ], [ -64.902865012970153, 18.312241676628389 ], [ -64.902953525910164, 18.312242347180984 ], [ -64.903054611711013, 18.312231115425334 ], [ -64.903143124651024, 18.312219883669684 ], [ -64.903231637591091, 18.312202449302674 ], [ -64.903320318169278, 18.312185014935721 ], [ -64.903408831109289, 18.312173615541894 ], [ -64.903497344049299, 18.312156348813062 ], [ -64.903586024627486, 18.312132879472927 ], [ -64.903674537567497, 18.312109410132791 ], [ -64.903757015534381, 18.312073870846234 ], [ -64.903833123251729, 18.312032296586551 ], [ -64.903915601218614, 18.311996757299994 ], [ -64.903992044212259, 18.311912938227977 ], [ -64.904081227704864, 18.311841189102381 ], [ -64.904194048175782, 18.311806824592509 ], [ -64.904140906884152, 18.311872034520889 ], [ -64.904103691216164, 18.311949148067129 ], [ -64.904062619870899, 18.312026093975192 ], [ -64.904009478579212, 18.312091472851364 ], [ -64.903960192964917, 18.312160539766694 ], [ -64.90393119156596, 18.312241508990212 ], [ -64.903878050274329, 18.312314599220997 ], [ -64.903845360836272, 18.312343265343657 ], [ -64.903842008073354, 18.312346115192099 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_119", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.909428884498482, 18.308967034433181 ], [ -64.909420836557899, 18.309135509458201 ], [ -64.909424021682639, 18.309535158793494 ], [ -64.909402564000175, 18.309747222355327 ], [ -64.909315559803474, 18.309971354553852 ], [ -64.909150100955344, 18.31020101750147 ], [ -64.908714913643166, 18.31062849476865 ], [ -64.906076624532886, 18.311001658586861 ], [ -64.906050975896846, 18.310975002812313 ], [ -64.905966150995994, 18.310958909550493 ], [ -64.905857018564234, 18.31093862664477 ], [ -64.905796836470586, 18.310872409577883 ], [ -64.905720225838763, 18.310833180942495 ], [ -64.905631209984278, 18.31084022174457 ], [ -64.905550073122583, 18.310870565558275 ], [ -64.905464912945433, 18.310889172082568 ], [ -64.905379585130163, 18.310919346948538 ], [ -64.905294424953013, 18.310941978097958 ], [ -64.905233069392295, 18.311003333658675 ], [ -64.905148076853266, 18.311018085815306 ], [ -64.905063084314293, 18.311001992553486 ], [ -64.904977924137143, 18.31102831174212 ], [ -64.904892763959992, 18.311050776563093 ], [ -64.90488052637545, 18.311058486608033 ], [ -64.9047953661983, 18.311080950119333 ], [ -64.904722108329395, 18.31112671664232 ], [ -64.904644827144978, 18.311164770501023 ], [ -64.904559666967828, 18.311191256018105 ], [ -64.904470483475222, 18.311202152497458 ], [ -64.904385323298072, 18.311228471686036 ], [ -64.904296307443644, 18.311216234101551 ], [ -64.904279375991052, 18.311297204634741 ], [ -64.904250374592152, 18.311378172548643 ], [ -64.904225396508707, 18.311466853126831 ], [ -64.903575128148134, 18.311379346015656 ], [ -64.903681913645869, 18.31113425904914 ], [ -64.903783837637434, 18.31078423060444 ], [ -64.903862962841401, 18.310653809438065 ], [ -64.903953319801019, 18.310540820019355 ], [ -64.904098662071817, 18.310425318647788 ], [ -64.904319609145659, 18.310343343595378 ], [ -64.904582968669843, 18.310280814567705 ], [ -64.90486108035077, 18.310235887545105 ], [ -64.905152603083195, 18.310137985559322 ], [ -64.905827178974619, 18.310006055649694 ], [ -64.906266223273747, 18.309872111462937 ], [ -64.906772993383072, 18.309482855692579 ], [ -64.90705076847803, 18.309110363736579 ], [ -64.90751361739359, 18.308520949331978 ], [ -64.908006642484793, 18.308187683392021 ], [ -64.908216356493256, 18.30813320230493 ], [ -64.908425402568469, 18.308141081297663 ], [ -64.908673339383483, 18.308211824594423 ], [ -64.908848856520251, 18.308319280644753 ], [ -64.909069803594036, 18.308464621605935 ], [ -64.909223192495801, 18.308572077656208 ], [ -64.909378256469324, 18.308785482323231 ], [ -64.909428884498482, 18.308967034433181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_560", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 16.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.943837109920537, 18.319351376643908 ], [ -64.94383845102567, 18.319585399492894 ], [ -64.942623912672389, 18.319379036937676 ], [ -64.942637491362063, 18.319293373846051 ], [ -64.94264453347381, 18.319207544426035 ], [ -64.942664482412908, 18.319121880024738 ], [ -64.942665320603624, 18.319036216933171 ], [ -64.942665989846546, 18.318950387513098 ], [ -64.942660291459333, 18.318864555473738 ], [ -64.942654590452776, 18.318778724743993 ], [ -64.942642520506411, 18.318692726376128 ], [ -64.942649728946606, 18.318607064594232 ], [ -64.942650399499144, 18.318521232554815 ], [ -64.942631960612971, 18.318435235496622 ], [ -64.942581166255366, 18.318367508376753 ], [ -64.942510924563351, 18.31831788748616 ], [ -64.942498185374063, 18.318323922459342 ], [ -64.9445822614706, 18.316091151329033 ], [ -64.94485366762575, 18.316375799587888 ], [ -64.944986437035823, 18.316649386348558 ], [ -64.944953747597708, 18.316964712387744 ], [ -64.94487613113705, 18.317265287579971 ], [ -64.944661721950865, 18.317676337618707 ], [ -64.944480002202795, 18.317936344380087 ], [ -64.944311525868045, 18.318322247387528 ], [ -64.944113377581857, 18.318665067392033 ], [ -64.94396049159451, 18.318964970721993 ], [ -64.943837109920537, 18.319351376643908 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1182", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.934636963559001, 18.331565155229782 ], [ -64.934694797409009, 18.331629360638942 ], [ -64.934677364351728, 18.33171670011194 ], [ -64.934676692489461, 18.331804207223115 ], [ -64.934684237515626, 18.33189171433429 ], [ -64.934691779922446, 18.331979221445465 ], [ -64.934691109369851, 18.33206672855664 ], [ -64.934698654396016, 18.332154403305935 ], [ -64.934697814895628, 18.33224191041711 ], [ -64.934688762435826, 18.332329249890108 ], [ -64.934688091883288, 18.332416757001283 ], [ -64.934687253692516, 18.332504264112458 ], [ -64.934728325037838, 18.332584059869021 ], [ -64.934735868754331, 18.332671734618316 ], [ -64.934743412470766, 18.332759240419819 ], [ -64.934750957496931, 18.332846747530994 ], [ -64.934758499903751, 18.332934423589961 ], [ -64.934758164627453, 18.332974152520421 ], [ -64.934741234484591, 18.333015391503864 ], [ -64.934765540705769, 18.333095188570042 ], [ -64.934781467639141, 18.333182694371544 ], [ -64.934797391953168, 18.333270370430569 ], [ -64.934804935669604, 18.333357877541687 ], [ -64.934812479386096, 18.333445552291039 ], [ -64.934860423895316, 18.333692483277105 ], [ -64.934842989528306, 18.333779821440487 ], [ -64.934767552363496, 18.333826929068607 ], [ -64.934700498415566, 18.333882080708349 ], [ -64.934666466562703, 18.333961373550437 ], [ -64.934699156000761, 18.334041170616672 ], [ -64.934723463531668, 18.334120966373177 ], [ -64.934772750455636, 18.33419288313695 ], [ -64.934822202398436, 18.3342649675389 ], [ -64.934905015641618, 18.33430536833157 ], [ -64.934988667075459, 18.334274187636822 ], [ -64.935055723642733, 18.334219033377735 ], [ -64.935147252759691, 18.33423562955403 ], [ -64.935213469826579, 18.334291789641952 ], [ -64.935262755440874, 18.334363872734173 ], [ -64.935320590600554, 18.334427910505212 ], [ -64.935378258122114, 18.334491949585868 ], [ -64.935427711374587, 18.334564032678088 ], [ -64.935485378896146, 18.334628070449128 ], [ -64.935509686426997, 18.334707867515363 ], [ -64.935559139679469, 18.334779784279135 ], [ -64.935608426603494, 18.334851867371356 ], [ -64.935657710908174, 18.334923785444801 ], [ -64.935698783563112, 18.335003579891691 ], [ -64.935756449774999, 18.335067786610523 ], [ -64.935805903027472, 18.335139703374296 ], [ -64.935846806734617, 18.335219497821129 ], [ -64.935887878079882, 18.335299462525541 ], [ -64.935953927508592, 18.335363666624971 ], [ -64.936011595030152, 18.335427704396011 ], [ -64.936069430189832, 18.335491743476666 ], [ -64.936144029163927, 18.335540021952511 ], [ -64.936193314778222, 18.335612106354404 ], [ -64.936251149937902, 18.335676145435059 ], [ -64.93631719936667, 18.335732302903637 ], [ -64.936400180247915, 18.335772703696364 ], [ -64.936483161129217, 18.335805225496301 ], [ -64.936557760103312, 18.335853506591434 ], [ -64.936640740984558, 18.335893907384161 ], [ -64.936732271411188, 18.335910669888847 ], [ -64.936823801837818, 18.335919219434231 ], [ -64.936907453271658, 18.335880159746637 ], [ -64.936965120793218, 18.335944197517676 ], [ -64.93704810167452, 18.335976720627286 ], [ -64.937139799739271, 18.335977389870152 ], [ -64.937231497804021, 18.335978229370596 ], [ -64.937298553061623, 18.335973535502546 ], [ -64.937365608319226, 18.335969510877419 ], [ -64.937432831214949, 18.335965990476382 ], [ -64.937500054110728, 18.335963140627939 ], [ -64.937567277006451, 18.335960793693914 ], [ -64.937634499902231, 18.335958949674364 ], [ -64.937701722797954, 18.335957777517024 ], [ -64.937769113331854, 18.335956938016636 ], [ -64.937836336227576, 18.335956938016636 ], [ -64.937903559123299, 18.335957274602549 ], [ -64.937970949657199, 18.335958280431441 ], [ -64.938038172552979, 18.335959787865079 ], [ -64.938105395448702, 18.335961968470599 ], [ -64.938172618344424, 18.335964649371249 ], [ -64.938239841240204, 18.335967834495989 ], [ -64.938306896497807, 18.335971691482939 ], [ -64.938374119393529, 18.335975882436571 ], [ -64.938441174651132, 18.335980911580862 ], [ -64.938508229908734, 18.335986274691834 ], [ -64.938575117528217, 18.335992309665016 ], [ -64.938642172785819, 18.335998847552617 ], [ -64.938708892767124, 18.336006055992812 ], [ -64.93877578038655, 18.336013599709304 ], [ -64.938842500367855, 18.336021981616511 ], [ -64.93890905271104, 18.336030698799959 ], [ -64.938975771382673, 18.336040086536059 ], [ -64.939042157397353, 18.336049978496192 ], [ -64.939108542102417, 18.336060370751454 ], [ -64.939174759169305, 18.336071268540479 ], [ -64.939240976236135, 18.336082835572427 ], [ -64.93930702435523, 18.336094905518792 ], [ -64.939373075093613, 18.336107644708079 ], [ -64.939438956884203, 18.336120720483279 ], [ -64.939504671036673, 18.336134466811131 ], [ -64.939570217550965, 18.336148883691465 ], [ -64.939635764065258, 18.336163635848152 ], [ -64.93970097530331, 18.336179058557434 ], [ -64.939766186541306, 18.336194816542957 ], [ -64.939831230141181, 18.336211412719194 ], [ -64.939896106102935, 18.336228345481402 ], [ -64.939960814426513, 18.336245778538739 ], [ -64.940025355111914, 18.336263883458287 ], [ -64.940089728159251, 18.336282492601924 ], [ -64.940154101206531, 18.336301602040692 ], [ -64.940218138977514, 18.336321384651342 ], [ -64.940282009110376, 18.336341499918944 ], [ -64.940345543966998, 18.336362287048814 ], [ -64.940409077513891, 18.336383409454925 ], [ -64.940472446042008, 18.336405202413687 ], [ -64.940535477984099, 18.336427499596482 ], [ -64.940394661943174, 18.336943823770355 ], [ -64.940457358609024, 18.337151527430763 ], [ -64.940219480082703, 18.337524857577421 ], [ -64.940114203328278, 18.337501723513583 ], [ -64.939675997219865, 18.337991226894076 ], [ -64.939832571246313, 18.338205300803963 ], [ -64.939759983930003, 18.338278391034748 ], [ -64.939621011908628, 18.338391211505609 ], [ -64.939410961314195, 18.338255089332733 ], [ -64.938956829582082, 18.338565219899124 ], [ -64.938379651452294, 18.338840817007849 ], [ -64.937861984863616, 18.339027230623969 ], [ -64.936915164626328, 18.33918782796593 ], [ -64.933931708577518, 18.339651850348503 ], [ -64.933673044231, 18.339728125704028 ], [ -64.93346701564235, 18.339821835426505 ], [ -64.932961923224184, 18.34016784055575 ], [ -64.932561769664744, 18.340316031365376 ], [ -64.93086443476642, 18.340599508776563 ], [ -64.930259596342864, 18.340040435566323 ], [ -64.930269654631502, 18.340000034773595 ], [ -64.930311228891242, 18.339922418312938 ], [ -64.930284742064487, 18.339837761050205 ], [ -64.930319443160272, 18.339747236452467 ], [ -64.930299829497471, 18.339662579189735 ], [ -64.930211316557404, 18.339668446524797 ], [ -64.930123138893691, 18.339648162309345 ], [ -64.930034793591801, 18.339641121507327 ], [ -64.929946448289911, 18.339627375179475 ], [ -64.929818037471591, 18.339548417613685 ], [ -64.929729356893404, 18.33956719308577 ], [ -64.929450071745521, 18.339623519502197 ], [ -64.929388380908506, 18.339681522299998 ], [ -64.929346974286943, 18.339758971122535 ], [ -64.929312273191158, 18.33983675522137 ], [ -64.929304729474666, 18.339921077207805 ], [ -64.929304058922071, 18.340005399194183 ], [ -64.929296515205635, 18.340089888818795 ], [ -64.929261814109793, 18.340167505279453 ], [ -64.929227113014008, 18.340245121740111 ], [ -64.929158716651216, 18.340296586650368 ], [ -64.929090320288481, 18.340347883922391 ], [ -64.929008512874191, 18.34037973516979 ], [ -64.928926537821781, 18.340418124304733 ], [ -64.92883802488177, 18.340423991639796 ], [ -64.92874967957988, 18.340429691336681 ], [ -64.92866116663987, 18.340429020784086 ], [ -64.92857282133798, 18.340434888119148 ], [ -64.928484308397913, 18.340434049928433 ], [ -64.928395963096023, 18.340433379375838 ], [ -64.928307617794133, 18.340432708823244 ], [ -64.928219104854122, 18.340432038270706 ], [ -64.928130927190352, 18.34041829194291 ], [ -64.928042581888462, 18.340404713253236 ], [ -64.927954236586572, 18.340397504813041 ], [ -64.927865891284739, 18.340390296372846 ], [ -64.927777713620969, 18.34037655004505 ], [ -64.927689369628752, 18.340369509242976 ], [ -64.927594149853292, 18.34036213316466 ], [ -64.927505972189522, 18.340348554474986 ], [ -64.927417626887632, 18.340328270259533 ], [ -64.927329113947621, 18.340347045731676 ], [ -64.927240601007611, 18.340359450954338 ], [ -64.927145885456241, 18.340313182826605 ], [ -64.927085032809941, 18.340254341838033 ], [ -64.927024347801819, 18.340195333211341 ], [ -64.926936337776226, 18.340155770609385 ], [ -64.926848327750633, 18.340122578256853 ], [ -64.926766855612641, 18.340089385904378 ], [ -64.926685551112826, 18.340056361189966 ], [ -64.926604246612953, 18.34002316883749 ], [ -64.926529816586708, 18.339977235985998 ], [ -64.926441806561115, 18.339950581521123 ], [ -64.926374248389095, 18.33989811078203 ], [ -64.926299815743448, 18.339852010292475 ], [ -64.926218512553305, 18.339818817939943 ], [ -64.926134356895318, 18.339795851514225 ], [ -64.926125473383365, 18.339776740765785 ], [ -64.926086412386155, 18.339692754055648 ], [ -64.926031259436797, 18.339616143423825 ], [ -64.925992033420755, 18.33953953279206 ], [ -64.925968730409068, 18.339455546081865 ], [ -64.925953642976083, 18.339371727009905 ], [ -64.925938387904978, 18.339287740299767 ], [ -64.925923132833873, 18.33920392122775 ], [ -64.925891953448797, 18.339119766879435 ], [ -64.92586865043711, 18.339035947807474 ], [ -64.925861443306587, 18.338951961097337 ], [ -64.92584618692581, 18.338868142025319 ], [ -64.925838978485615, 18.338784322953302 ], [ -64.92582372341451, 18.338700336243164 ], [ -64.925792542719705, 18.338616349533027 ], [ -64.925753315394047, 18.338539906539381 ], [ -64.925706210385215, 18.338463295907559 ], [ -64.925650888488065, 18.338394228992229 ], [ -64.925611662472022, 18.338317785998584 ], [ -64.925540416260844, 18.338263974154358 ], [ -64.925493142304219, 18.338187363522536 ], [ -64.925429941414222, 18.338126007961819 ], [ -64.925350482243687, 18.338087283550578 ], [ -64.925307565569142, 18.338072028479473 ], [ -64.925268004276802, 18.338033136430056 ], [ -64.925228775641472, 18.337993909104341 ], [ -64.925190052539847, 18.337954178864209 ], [ -64.925151829733352, 18.337914113347836 ], [ -64.925113943512827, 18.337873712555108 ], [ -64.925076561516391, 18.337832976486141 ], [ -64.925039513486524, 18.337791737502698 ], [ -64.925002968371132, 18.337750330881136 ], [ -64.924966926170214, 18.337708422654771 ], [ -64.924931385573984, 18.337666176532821 ], [ -64.924896181563724, 18.337623596444246 ], [ -64.924861480467939, 18.337580681079373 ], [ -64.924827283596244, 18.33753743043826 ], [ -64.924793588329294, 18.337493844520793 ], [ -64.924760228338641, 18.337449924636758 ], [ -64.924727537590911, 18.33740566685708 ], [ -64.924695183429094, 18.337361075110778 ], [ -64.924663333491424, 18.337316148088178 ], [ -64.924632151486946, 18.33727088578928 ], [ -64.924601307378111, 18.337225288214142 ], [ -64.924570963564406, 18.337179523000827 ], [ -64.924541125284406, 18.337133422511215 ], [ -64.924511788609209, 18.337086986745305 ], [ -64.924482953538813, 18.337040215703155 ], [ -64.924454622692451, 18.336993277022827 ], [ -64.924426794760564, 18.336946003066203 ], [ -64.924399469743094, 18.336898393833337 ], [ -64.924372816587834, 18.336850616962295 ], [ -64.924346497399256, 18.336802504814955 ], [ -64.924320847453544, 18.336754225029495 ], [ -64.924295701731921, 18.336705609967737 ], [ -64.924270892596326, 18.336656828577475 ], [ -64.924246751393923, 18.336607710601299 ], [ -64.924223283363403, 18.336558423677275 ], [ -64.924200149299509, 18.336508802786682 ], [ -64.924177684478593, 18.336459015567584 ], [ -64.924155725191383, 18.336409058090965 ], [ -64.924134267508919, 18.336358766647777 ], [ -64.924113311431256, 18.336308476514262 ], [ -64.924093028525533, 18.336257848485104 ], [ -64.924073247224555, 18.336206886489322 ], [ -64.924053967528323, 18.336155924493539 ], [ -64.924035359694301, 18.336104794859637 ], [ -64.924017256084426, 18.336053329949436 ], [ -64.923999654079296, 18.336001865039179 ], [ -64.923982722626761, 18.335950064852682 ], [ -64.923966294088643, 18.335898097028064 ], [ -64.923950368465, 18.335846130513119 ], [ -64.923935113393895, 18.335793827412147 ], [ -64.923920361237208, 18.335741523001559 ], [ -64.923906279633115, 18.335689053572196 ], [ -64.923892699633768, 18.335636413885311 ], [ -64.923879625168183, 18.335583607869921 ], [ -64.923867218635905, 18.335530635526084 ], [ -64.923855317637333, 18.335477660562901 ], [ -64.923844084572011, 18.335424520580943 ], [ -64.923833357040451, 18.335371211651136 ], [ -64.923823297442141, 18.335317901411656 ], [ -64.923813743377593, 18.335264424843729 ], [ -64.923804689608176, 18.335210949585473 ], [ -64.92379630901064, 18.335157305379425 ], [ -64.923788596346355, 18.335103659863648 ], [ -64.923781389215833, 18.335049849329096 ], [ -64.923774682380383, 18.334996037484871 ], [ -64.923768647407201, 18.334942056692853 ], [ -64.923763284296285, 18.334888078520123 ], [ -64.923758421480443, 18.334834097728105 ], [ -64.923754064198363, 18.334779950607583 ], [ -64.923750376159205, 18.33472597243491 ], [ -64.923747357362913, 18.334671825314388 ], [ -64.92374484410044, 18.334617678193865 ], [ -64.923742832442713, 18.334563363435223 ], [ -64.92374149133758, 18.3345092163147 ], [ -64.923740819475313, 18.334455069194178 ], [ -64.923740653146808, 18.334400754435535 ], [ -64.923740988423106, 18.334346607315013 ], [ -64.923742160580446, 18.33429229255637 ], [ -64.923743670633428, 18.334238145435847 ], [ -64.923745848619603, 18.334183998315325 ], [ -64.923748698468046, 18.334129851194803 ], [ -64.923752052540635, 18.334075704074337 ], [ -64.923756074546418, 18.334021555644142 ], [ -64.923760602085963, 18.333967577471412 ], [ -64.923765797558758, 18.333913596679395 ], [ -64.923771498565316, 18.333859618506722 ], [ -64.923777867505123, 18.333805805352824 ], [ -64.923784740669021, 18.333751827180095 ], [ -64.923792284385513, 18.333698181664374 ], [ -64.923800332326095, 18.333644537458269 ], [ -64.9238090495096, 18.333590894561894 ], [ -64.923818269607523, 18.333537417993909 ], [ -64.923827992619863, 18.333483941425982 ], [ -64.923838386184798, 18.333430632496231 ], [ -64.923849450302271, 18.333377491204544 ], [ -64.923861017334218, 18.333324348603242 ], [ -64.923873087280583, 18.333271542587852 ], [ -64.923885826469871, 18.333218570244071 ], [ -64.92389907119292, 18.333165930557129 ], [ -64.923912985158893, 18.333113293489589 ], [ -64.923927402039226, 18.333060821440881 ], [ -64.923942489472211, 18.333008519649638 ], [ -64.923957912181436, 18.332956384186843 ], [ -64.923974173081433, 18.332904416362169 ], [ -64.923990769257671, 18.332852616175671 ], [ -64.924008034676831, 18.332800983627351 ], [ -64.924025973267931, 18.332749517407478 ], [ -64.924044244515926, 18.332698221445071 ], [ -64.924063187626189, 18.332647090501496 ], [ -64.924082633650926, 18.332596128505713 ], [ -64.924102751537873, 18.332545503095901 ], [ -64.924123369719894, 18.332494876376416 ], [ -64.924144493435733, 18.332444584933171 ], [ -64.924166117446646, 18.33239446112816 ], [ -64.924188414629441, 18.33234467259939 ], [ -64.924211213417038, 18.33229488407062 ], [ -64.924234515119053, 18.332245430818148 ], [ -64.924258318425814, 18.332196312841916 ], [ -64.924282793594841, 18.332147362503861 ], [ -64.924307605349838, 18.332098579803983 ], [ -64.924333086347701, 18.332050132380346 ], [ -64.924359070260039, 18.332002020233062 ], [ -64.924385557086794, 18.331953908085723 ], [ -64.924412545518294, 18.3319062988528 ], [ -64.924440207121734, 18.331858857258055 ], [ -64.924468201382126, 18.331811750939607 ], [ -64.924496701176281, 18.33176481225928 ], [ -64.924525870213301, 18.33171837649337 ], [ -64.924555374526676, 18.331671940727517 ], [ -64.924585380444796, 18.331626007876025 ], [ -64.924616059534799, 18.331580410300887 ], [ -64.924647072591426, 18.33153498036387 ], [ -64.924678588562529, 18.331489885703093 ], [ -64.924710773776496, 18.33144512631867 ], [ -64.924743295576434, 18.331400702210487 ], [ -64.924776321600461, 18.331356613378659 ], [ -64.924809681591114, 18.331312859823072 ], [ -64.924786044612802, 18.331282182042685 ], [ -64.924839018266312, 18.331288552292165 ], [ -64.924891990610149, 18.331294419627227 ], [ -64.924944965573332, 18.331299784047815 ], [ -64.924998105555289, 18.331304645553985 ], [ -64.925051246846976, 18.331308836507617 ], [ -64.925104389448279, 18.331312524546775 ], [ -64.925157698378086, 18.331315542033337 ], [ -64.925211007307837, 18.331318056605539 ], [ -64.925264148599524, 18.331320068263267 ], [ -64.925317457529275, 18.33132157700652 ], [ -64.925370932787587, 18.331322415197235 ], [ -64.925424241717337, 18.331322750473532 ], [ -64.925477550647145, 18.331322415197235 ], [ -64.925530859576952, 18.331321744644697 ], [ -64.925584168506703, 18.331320403539507 ], [ -64.92563747743651, 18.33131839188178 ], [ -64.925690786366317, 18.331315877309635 ], [ -64.925743927657948, 18.331312859823072 ], [ -64.925797236587755, 18.331309339422035 ], [ -64.925850377879385, 18.331305148468402 ], [ -64.925903351532895, 18.331300454600409 ], [ -64.925956492824525, 18.331295090179765 ], [ -64.926009466478035, 18.33128939048288 ], [ -64.926062441441218, 18.3312830202334 ], [ -64.926115247456607, 18.331275979431382 ], [ -64.926167884524148, 18.33126860335301 ], [ -64.926220690539481, 18.3312605567221 ], [ -64.926273162588245, 18.331252007176772 ], [ -64.926325632017665, 18.33124278707885 ], [ -64.926377936428253, 18.33123306406651 ], [ -64.926430239529168, 18.331222838139752 ], [ -64.92648237368229, 18.331212109298519 ], [ -64.926534341506908, 18.331200709904692 ], [ -64.926586310641255, 18.331188807596504 ], [ -64.926637941879903, 18.331176402373842 ], [ -64.926689574428281, 18.331163494236762 ], [ -64.926741040648153, 18.331150083185207 ], [ -64.926792168972383, 18.331136001581115 ], [ -64.926843298606286, 18.331121417062604 ], [ -64.926894260602069, 18.33110632962962 ], [ -64.926945054959731, 18.331090739282274 ], [ -64.926995681679216, 18.331074478382277 ], [ -64.927045973122404, 18.331057714567862 ], [ -64.927096264565591, 18.331040615477207 ], [ -64.927146220732538, 18.331022845833957 ], [ -64.927196010570981, 18.331004573276232 ], [ -64.927245462513781, 18.33098579780409 ], [ -64.927294915766254, 18.330966351779409 ], [ -64.927344033742429, 18.330946570478432 ], [ -64.927392816442364, 18.330926286262979 ], [ -64.927441599142242, 18.330905331494989 ], [ -64.927490046565879, 18.330884041450702 ], [ -64.927538158713219, 18.330862248491997 ], [ -64.927586103222382, 18.330839784980697 ], [ -64.927633712455247, 18.330816986193099 ], [ -64.927681154050049, 18.330793516852964 ], [ -64.927728260368497, 18.330769712236474 ], [ -64.927775031410647, 18.330745237067447 ], [ -64.927821634814677, 18.330720426622179 ], [ -64.927867902942467, 18.330695113262436 ], [ -64.927913835793902, 18.330669296988219 ], [ -64.92795943336904, 18.330642977799641 ], [ -64.928004863306114, 18.330616323334709 ], [ -64.928049957966834, 18.330588998317239 ], [ -64.928094717351257, 18.330561338023529 ], [ -64.92813914145944, 18.330533007177166 ], [ -64.928183230291324, 18.330504508692684 ], [ -64.928226983846912, 18.330475339655607 ], [ -64.928270402126202, 18.330445667704168 ], [ -64.928313485129195, 18.330415660476376 ], [ -64.92835623285589, 18.330385317972286 ], [ -64.928398645306345, 18.330354304915659 ], [ -64.928440554842325, 18.330322956582734 ], [ -64.928482296740185, 18.330291105335391 ], [ -64.928523535723627, 18.330258918811751 ], [ -64.928564439430772, 18.330226229373636 ], [ -64.92860500786162, 18.330193204659281 ], [ -64.92864524101617, 18.330159677030451 ], [ -64.928684971256303, 18.330125814125381 ], [ -64.928724366220138, 18.330091448305893 ], [ -64.928763258269555, 18.330056579571931 ], [ -64.928801982680795, 18.330021543199848 ], [ -64.928840036539498, 18.329985836275171 ], [ -64.928877922760023, 18.329949961712316 ], [ -64.92891513842801, 18.329913584235101 ], [ -64.928952186457821, 18.329876871481531 ], [ -64.928988563935093, 18.329839655813601 ], [ -64.929024773774188, 18.329802104869316 ], [ -64.929060313060688, 18.329764218648791 ], [ -64.929095517070948, 18.329725997151968 ], [ -64.92913038580491, 18.329687440378848 ], [ -64.929164583986278, 18.329648380691253 ], [ -64.929198446891348, 18.329608985727418 ], [ -64.929231974520178, 18.329569423125463 ], [ -64.929264831596413, 18.329529357609033 ], [ -64.92929735339635, 18.329488956816306 ], [ -64.929329372281813, 18.329448220747338 ], [ -64.929360888252916, 18.329407149402073 ], [ -64.929392068947664, 18.32936574278051 ], [ -64.929422579089874, 18.32932400088265 ], [ -64.929452753955843, 18.329282091346613 ], [ -64.929482425907281, 18.329239678896215 ], [ -64.929511594944358, 18.329196931169463 ], [ -64.929540261066961, 18.329154015804647 ], [ -64.929568424275203, 18.329110765163477 ], [ -64.929596084568914, 18.32906717924601 ], [ -64.929623241948264, 18.329023425690423 ], [ -64.929649896413139, 18.328979336858595 ], [ -64.929676047963596, 18.328934912750412 ], [ -64.929701696599636, 18.32889032100411 ], [ -64.929726674683138, 18.32884539398151 ], [ -64.929751317490286, 18.328800131682613 ], [ -64.929775457383016, 18.328754701745595 ], [ -64.929798926723151, 18.32870893653228 ], [ -64.929822060787046, 18.328663003680845 ], [ -64.929844524298346, 18.328616903191232 ], [ -64.929866484895228, 18.328570467425379 ], [ -64.929887942577636, 18.328523864021349 ], [ -64.929908897345626, 18.328476926650694 ], [ -64.929929181561079, 18.328429819022517 ], [ -64.929948962862056, 18.328382545065949 ], [ -64.929968241248616, 18.328335103471204 ], [ -64.929987016720759, 18.328287495547954 ], [ -64.930005121640306, 18.328239549729119 ], [ -64.930022891283556, 18.328191437581779 ], [ -64.930039822736092, 18.328143157796319 ], [ -64.930056418912386, 18.328094710372682 ], [ -64.930072344536029, 18.328046262949044 ], [ -64.930087767245311, 18.327997481558839 ], [ -64.930102687040119, 18.327948529911112 ], [ -64.930116936282332, 18.327899411934936 ], [ -64.930130514972006, 18.327850127630256 ], [ -64.930143758385384, 18.327800840706232 ], [ -64.930156331246167, 18.327751387453759 ], [ -64.930168401192532, 18.327701766563166 ], [ -64.930179800586359, 18.327651978034396 ], [ -64.930190697065711, 18.327602021867449 ], [ -64.930200922992469, 18.327552065700559 ], [ -64.930210646004866, 18.327502109533668 ], [ -64.930219698464612, 18.327451819400096 ], [ -64.930228248009939, 18.327401526647236 ], [ -64.930236294640849, 18.327351236513721 ], [ -64.930243670719221, 18.327300777432356 ], [ -64.930250543883119, 18.327250318351048 ], [ -64.930256746494422, 18.327199691631563 ], [ -64.930262446191364, 18.327149063602405 ], [ -64.930267475335654, 18.327098270554416 ], [ -64.930272001565527, 18.327047642525258 ], [ -64.930275857242862, 18.326996849477325 ], [ -64.930279210005722, 18.326945887481543 ], [ -64.930282059854164, 18.326895091814208 ], [ -64.930284239150069, 18.326844129818426 ], [ -64.930285747893379, 18.32679333546082 ], [ -64.930286753722214, 18.326742373465038 ], [ -64.930287088998512, 18.326691411469255 ], [ -64.930286921360334, 18.326640449473473 ], [ -64.930286250807796, 18.32658948747769 ], [ -64.930284909702607, 18.326538694429757 ], [ -64.930282898044879, 18.326487732433975 ], [ -64.930280383472734, 18.32643693676664 ], [ -64.930312234720077, 18.326474655349045 ], [ -64.930400746350472, 18.326499633432547 ], [ -64.930489092962034, 18.326524443877815 ], [ -64.930554974752624, 18.326551768895285 ], [ -64.930584645394447, 18.326629554303793 ], [ -64.930634938147307, 18.326697781718735 ], [ -64.930664610098802, 18.32677573345569 ], [ -64.930694448378745, 18.326853517554525 ], [ -64.930724289278032, 18.326931301653303 ], [ -64.930794864936672, 18.326980419629535 ], [ -64.930865440595312, 18.327048817301943 ], [ -64.930925790327137, 18.327117212355006 ], [ -64.930996365985777, 18.327166162693061 ], [ -64.931087727464558, 18.327186280580008 ], [ -64.931209434066773, 18.327197009421241 ], [ -64.931300796855282, 18.327207401676503 ], [ -64.931391992005615, 18.32721779655111 ], [ -64.931472625952892, 18.327286360551966 ], [ -64.931563821103225, 18.327306475819569 ], [ -64.931655016253558, 18.327326592396901 ], [ -64.931715365985383, 18.327394822431131 ], [ -64.931775714407536, 18.327463217484251 ], [ -64.93180555530688, 18.327541001583029 ], [ -64.931784432900713, 18.327628173417907 ], [ -64.931723077339996, 18.327695563951806 ], [ -64.931712179550971, 18.327782735786684 ], [ -64.931741851502466, 18.327860519885519 ], [ -64.931761466474995, 18.327943165490524 ], [ -64.931771692401753, 18.327943334438316 ], [ -64.931781080137853, 18.328030672601699 ], [ -64.931800692490981, 18.328118012074697 ], [ -64.931799855609938, 18.328205351547751 ], [ -64.9317991850574, 18.328292523382629 ], [ -64.931798345557013, 18.328379862855627 ], [ -64.931787450387276, 18.328467034690505 ], [ -64.931766327981165, 18.328554206525382 ], [ -64.931725088997723, 18.328631487709799 ], [ -64.931673790415971, 18.328698878243642 ], [ -64.931683179461743, 18.328786217716697 ], [ -64.931713019051358, 18.328864169453652 ], [ -64.931742691002853, 18.328941953552487 ], [ -64.931782756519283, 18.329019737651265 ], [ -64.931812596108898, 18.32909768938822 ], [ -64.931811757918183, 18.329184861223098 ], [ -64.931790635512016, 18.329272033057975 ], [ -64.931810249174873, 18.32935954016915 ], [ -64.931860372979941, 18.329427768893765 ], [ -64.931910664423128, 18.32949599761838 ], [ -64.931899767943776, 18.329583169453258 ], [ -64.931888871464423, 18.329670341288136 ], [ -64.931928769342676, 18.329748293025091 ], [ -64.931999512639436, 18.329797411001266 ], [ -64.932080480553338, 18.329827082952761 ], [ -64.932181901630486, 18.329827921143476 ], [ -64.932273433366788, 18.329828591696071 ], [ -64.932364628517121, 18.329838985261006 ], [ -64.932455822357781, 18.329859101838281 ], [ -64.932536791581299, 18.329898496802116 ], [ -64.932617762114546, 18.329928336391731 ], [ -64.932709123593327, 18.329929006944326 ], [ -64.932800486381836, 18.329929677496921 ], [ -64.932891850479962, 18.329930348049459 ], [ -64.932983379596919, 18.329921463227834 ], [ -64.933084969621859, 18.329912578406208 ], [ -64.933166609397972, 18.329874356909386 ], [ -64.933258307462779, 18.329826580038343 ], [ -64.933339779600772, 18.329798081553861 ], [ -64.933421250429035, 18.329769750707555 ], [ -64.933492833226239, 18.329721806198336 ], [ -64.933564413404042, 18.329664138676833 ], [ -64.933645885542035, 18.32963564019235 ], [ -64.933737417278337, 18.329626755370725 ], [ -64.933818889416273, 18.329588533873846 ], [ -64.933890469594132, 18.329530866352343 ], [ -64.93395199279297, 18.329463475818443 ], [ -64.934003291374722, 18.329396085284543 ], [ -64.934074871552525, 18.32934814077538 ], [ -64.934156343690518, 18.329319642290898 ], [ -64.934227757539816, 18.329271697781735 ], [ -64.934309229677808, 18.329243199297252 ], [ -64.934400761414111, 18.329244037487967 ], [ -64.934492122892948, 18.329244708040505 ], [ -64.934583485681401, 18.3292453785931 ], [ -64.934674680831733, 18.329265495170375 ], [ -64.934755651364981, 18.32929516712187 ], [ -64.934836620588499, 18.329325006711485 ], [ -64.934957486380654, 18.329451908786496 ], [ -64.934987159641821, 18.329529860523451 ], [ -64.935057733990789, 18.329588533873846 ], [ -64.935128478597221, 18.329637484211901 ], [ -64.935209446511124, 18.329667323801573 ], [ -64.935294775636066, 18.32965324219748 ], [ -64.935293600859382, 18.329796405172431 ], [ -64.935275663578011, 18.329939400509261 ], [ -64.935283208604119, 18.330026907620436 ], [ -64.935307514825354, 18.330106703376998 ], [ -64.935298462365552, 18.330194210488116 ], [ -64.935272813729512, 18.330273503330261 ], [ -64.935263762579439, 18.330361010441436 ], [ -64.935229730726519, 18.330440303283524 ], [ -64.935170889738004, 18.330503335225671 ], [ -64.935079191673196, 18.330502664673077 ], [ -64.934995707877476, 18.330533845367881 ], [ -64.934953295427079, 18.330613138209969 ], [ -64.934919432522008, 18.330692431052114 ], [ -64.934877021381226, 18.330771556256082 ], [ -64.934851371435514, 18.330850849098169 ], [ -64.934875678966421, 18.330930644854732 ], [ -64.934866626506619, 18.331018151965907 ], [ -64.934857574046873, 18.331105491438905 ], [ -64.934806948637004, 18.331176737650139 ], [ -64.934748107648488, 18.331239937230407 ], [ -64.934697479619331, 18.331311183441585 ], [ -64.93468004656205, 18.33139852291464 ], [ -64.934637800440044, 18.331477648118607 ], [ -64.934636963559001, 18.331565155229782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1146", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.958586581762859, 18.318397515604545 ], [ -64.958511313545898, 18.31834873290461 ], [ -64.958418777290433, 18.318340015721162 ], [ -64.958334455303998, 18.31836348637097 ], [ -64.958249964369713, 18.318395002342072 ], [ -64.95815742942392, 18.318410257413177 ], [ -64.958072938489693, 18.318441773384222 ], [ -64.957988616503258, 18.318465241414685 ], [ -64.957904128188318, 18.318496757385788 ], [ -64.957811424294675, 18.318520226725923 ], [ -64.95771888803921, 18.31852743647579 ], [ -64.957626184145568, 18.318534812554162 ], [ -64.957533480251925, 18.318550233953715 ], [ -64.957562816927123, 18.317698967458512 ], [ -64.957923909489352, 18.317552619358764 ], [ -64.958240241357373, 18.317440301802321 ], [ -64.958631845371428, 18.317299822347309 ], [ -64.958932754530224, 18.317230420155681 ], [ -64.959322345576879, 18.317333851580827 ], [ -64.959830290462889, 18.317653371192989 ], [ -64.960172941519545, 18.317985797632559 ], [ -64.96026195737403, 18.318357785364412 ], [ -64.960212002516755, 18.318689039646642 ], [ -64.960058278338749, 18.319103776414863 ], [ -64.959736579430739, 18.319861499516094 ], [ -64.959597273442739, 18.320362403600029 ], [ -64.959425275397336, 18.320759537053505 ], [ -64.959274905291807, 18.32101568813755 ], [ -64.959198965212579, 18.321291620522572 ], [ -64.958954716436779, 18.321763186621638 ], [ -64.958604351406166, 18.322171720778556 ], [ -64.95812842802502, 18.322518228822219 ], [ -64.957570528281792, 18.322751413480489 ], [ -64.957633057309465, 18.320483269392184 ], [ -64.957636242434205, 18.320369610730552 ], [ -64.957757780088627, 18.320331892148147 ], [ -64.957812093537598, 18.320265507443139 ], [ -64.957856182369483, 18.320199960928846 ], [ -64.957908822056368, 18.319951353561294 ], [ -64.957951402144943, 18.319879269159344 ], [ -64.95797738605728, 18.319799138126541 ], [ -64.95800320233144, 18.319719007093681 ], [ -64.95802080433657, 18.319630661791791 ], [ -64.9580384063417, 18.319542484128078 ], [ -64.95806439025398, 18.319454306464309 ], [ -64.958073776680408, 18.319349867900598 ], [ -64.958099760592688, 18.319261691546501 ], [ -64.958083668640541, 18.319173178606491 ], [ -64.958092721100343, 18.319084831994928 ], [ -64.958127085610158, 18.319004700962125 ], [ -64.958127925110546, 18.318916355660235 ], [ -64.958145359477555, 18.318828010358345 ], [ -64.958154579575478, 18.318739832694575 ], [ -64.958214091116588, 18.318675962561713 ], [ -64.958290031195816, 18.318636399959757 ], [ -64.958382735089458, 18.318620978560148 ], [ -64.958467057075893, 18.31859750791034 ], [ -64.958543163483569, 18.318557946618 ], [ -64.958585912519993, 18.318485860906435 ], [ -64.958586581762859, 18.318397515604545 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_245", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.914406897874869, 18.317900637455409 ], [ -64.914335147439544, 18.317898290521384 ], [ -64.914245629980371, 18.317897618659117 ], [ -64.914164157842379, 18.317867108516907 ], [ -64.914082684394714, 18.317836767322547 ], [ -64.913997190250939, 18.317810111547942 ], [ -64.913911694797491, 18.317787146431897 ], [ -64.913826366982221, 18.317764178696507 ], [ -64.913740871528773, 18.317744901619619 ], [ -64.913659231752661, 18.317714391477409 ], [ -64.913573903937333, 18.317680359624489 ], [ -64.913496455114796, 18.317642473403964 ], [ -64.913414982976803, 18.317608444170389 ], [ -64.913341389831601, 18.317559492522662 ], [ -64.913299145019323, 18.317484727220119 ], [ -64.913284392862636, 18.317402752167709 ], [ -64.913261929351336, 18.317291105163804 ], [ -64.913232257399841, 18.317223210405814 ], [ -64.91324164513594, 18.317188510619701 ], [ -64.913279866632763, 18.317110054658599 ], [ -64.913299145019323, 18.317054566432944 ], [ -64.913317752853288, 18.317135369328014 ], [ -64.913336528325431, 18.317217344380424 ], [ -64.913367038467641, 18.317295631393677 ], [ -64.913401404287185, 18.317373918406929 ], [ -64.913447504776741, 18.317444995670314 ], [ -64.913509195613756, 18.317505011435571 ], [ -64.913582788758958, 18.317550272424739 ], [ -64.913660405219616, 18.317587992316817 ], [ -64.913738020370658, 18.317625878537399 ], [ -64.913819493818323, 18.317656219731759 ], [ -64.913904821633594, 18.317682875506307 ], [ -64.913994340402496, 18.317694776504879 ], [ -64.914079668217767, 18.317721432279427 ], [ -64.914165162361542, 18.317740709356315 ], [ -64.914250659124662, 18.317759987742875 ], [ -64.914340177893564, 18.317771891360792 ], [ -64.914429695352794, 18.317772560603714 ], [ -64.914519215431369, 18.317773232465925 ], [ -64.914611416410537, 18.317797035772742 ], [ -64.914565148282804, 18.317823019685022 ], [ -64.914482335039679, 18.317858223695282 ], [ -64.914406897874869, 18.317900637455409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_193", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.956087768898101, 18.370000216508856 ], [ -64.955715276942101, 18.370053525438664 ], [ -64.95531026318622, 18.370088729448923 ], [ -64.955016896434245, 18.370056710563404 ], [ -64.954675249896752, 18.369964844860476 ], [ -64.954484645327, 18.369887060761641 ], [ -64.954298566987177, 18.369809110334359 ], [ -64.954094551365927, 18.369743897786691 ], [ -64.953943509398187, 18.369729983820719 ], [ -64.953685179018294, 18.369766193659814 ], [ -64.953323918817944, 18.369899298346184 ], [ -64.953123089631106, 18.369978423550151 ], [ -64.952879174821931, 18.370034248361776 ], [ -64.952752440385041, 18.370046316998469 ], [ -64.952755625509781, 18.36892297379552 ], [ -64.952840115134393, 18.368945772583118 ], [ -64.95293214847544, 18.368975779810853 ], [ -64.953016638099996, 18.36899857859845 ], [ -64.953101127724608, 18.369021209747928 ], [ -64.953193161065656, 18.369044008535468 ], [ -64.953270106973719, 18.369059263606573 ], [ -64.953285362044824, 18.369059432554423 ], [ -64.953377730662169, 18.369060101797288 ], [ -64.953462723201199, 18.369031269346237 ], [ -64.953555091818544, 18.369017355380265 ], [ -64.953639916719396, 18.368988689257662 ], [ -64.953702110470829, 18.368930351183508 ], [ -64.953756425229471, 18.368864635721422 ], [ -64.953818451342784, 18.368821049803955 ], [ -64.953862707812789, 18.36878819272772 ], [ -64.953934289300264, 18.368741255357122 ], [ -64.953984580743452, 18.36867386351355 ], [ -64.954049121428909, 18.368613178505427 ], [ -64.954141490046254, 18.368607143532245 ], [ -64.954234026301719, 18.368594235395108 ], [ -64.954326562557242, 18.368588200421925 ], [ -64.954419098812707, 18.368582165448743 ], [ -64.954511467430052, 18.36858283731101 ], [ -64.954603836047397, 18.368597086553279 ], [ -64.954681620146232, 18.368638493174842 ], [ -64.954752363442992, 18.368686436374333 ], [ -64.954801481419167, 18.368761539572517 ], [ -64.9548505993954, 18.368829768297132 ], [ -64.954899885009695, 18.368898163350195 ], [ -64.954941962183852, 18.368973097600588 ], [ -64.95496962247762, 18.3690547373767 ], [ -64.954997450409508, 18.369136378462485 ], [ -64.955003820658987, 18.369224722454703 ], [ -64.955074396317627, 18.369272834602043 ], [ -64.955160059409195, 18.369246347775288 ], [ -64.955217391654458, 18.369178789603268 ], [ -64.955296013944007, 18.36913872539651 ], [ -64.955388550199473, 18.36912581725943 ], [ -64.955473710376623, 18.369146938355925 ], [ -64.955566078993968, 18.369147610218135 ], [ -64.955616035160858, 18.369127661279038 ], [ -64.956087768898101, 18.370000216508856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_229", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 16.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.016387535403453, 18.344826504577497 ], [ -65.01633808215098, 18.34489624073575 ], [ -65.016312936429415, 18.344977880511863 ], [ -65.016293993319096, 18.345059521597648 ], [ -65.016287120155198, 18.345147195037327 ], [ -65.01628644960266, 18.345234869786623 ], [ -65.016291814023248, 18.345322544535918 ], [ -65.016304554522208, 18.345357580908001 ], [ -65.016306901456232, 18.345363951157481 ], [ -65.016274714932536, 18.345443076361448 ], [ -65.01628158809649, 18.34552924236749 ], [ -65.016273373827403, 18.345615240735356 ], [ -65.01628007935318, 18.345701406741398 ], [ -65.016271865084093, 18.345787405109263 ], [ -65.016271194531555, 18.345873403477128 ], [ -65.016210677161553, 18.345937441248111 ], [ -65.016127863918427, 18.345965604456296 ], [ -65.01603767459693, 18.345964933903758 ], [ -65.01594765291361, 18.345957054910969 ], [ -65.01585763123029, 18.345942135116161 ], [ -65.015764759698527, 18.345948840641938 ], [ -65.01575788653463, 18.345944314412009 ], [ -65.01571161840684, 18.345914307184273 ], [ -65.015638695814232, 18.345867033227648 ], [ -65.01557180819475, 18.345814059574138 ], [ -65.015510955548507, 18.345755050947446 ], [ -65.015431662706362, 18.345719511660945 ], [ -65.015346167252915, 18.345707106438283 ], [ -65.015254301550044, 18.345706435885688 ], [ -65.015162603485237, 18.345699897998088 ], [ -65.015077108031846, 18.345687660413546 ], [ -65.014846102669367, 18.345652624041463 ], [ -65.014760607215976, 18.345628651786853 ], [ -65.014671088447074, 18.345600657526518 ], [ -65.014589783947201, 18.345568972607623 ], [ -65.014529098939079, 18.34550996398093 ], [ -65.014722888633571, 18.344588960017802 ], [ -65.014933777418719, 18.344656182913525 ], [ -65.015069061400936, 18.344657188742417 ], [ -65.015166794438869, 18.344629194482025 ], [ -65.015250110596412, 18.344543697718905 ], [ -65.015330073991095, 18.344394333442267 ], [ -65.016387535403453, 18.344826504577497 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_104", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.832619445638727, 18.32381591438525 ], [ -64.832532272494177, 18.323845587646417 ], [ -64.832506120943719, 18.323862016184478 ], [ -64.832156427775317, 18.324050272510533 ], [ -64.832086187393031, 18.324124369879883 ], [ -64.832050649416146, 18.324207183123008 ], [ -64.832006391636469, 18.32428982741834 ], [ -64.831953417982959, 18.32436426006393 ], [ -64.831926595879906, 18.324447073307056 ], [ -64.831917209453536, 18.324530054188358 ], [ -64.831907652769644, 18.324613035069603 ], [ -64.831889547850096, 18.324696015950906 ], [ -64.831923578393344, 18.324779332108449 ], [ -64.831922741512301, 18.324862480627871 ], [ -64.831956770745819, 18.324945795475799 ], [ -64.832052493435754, 18.324954849245216 ], [ -64.832103958345954, 18.325021735555026 ], [ -64.832199344449862, 18.325055767407946 ], [ -64.832277294877144, 18.325106226489254 ], [ -64.832346361792474, 18.325165067477826 ], [ -64.832424145891309, 18.325207144651984 ], [ -64.832510814811769, 18.325241175195174 ], [ -64.832597483732229, 18.325283418697779 ], [ -64.832675435469184, 18.325325663510114 ], [ -64.832744502384514, 18.325376122591422 ], [ -64.832813570609517, 18.325434797251489 ], [ -64.832882637524847, 18.325485256332854 ], [ -64.83296058795213, 18.325527333507011 ], [ -64.83301222050045, 18.325594221126437 ], [ -64.833072402594155, 18.325661276384039 ], [ -64.833141469509485, 18.325719948424762 ], [ -64.833201820550983, 18.325787003682365 ], [ -64.833209699543772, 18.32587015351146 ], [ -64.83326133078242, 18.325937041130942 ], [ -64.833312795692677, 18.326003927440695 ], [ -64.83334682754554, 18.326087243598295 ], [ -64.83337213959561, 18.326178775334597 ], [ -64.833406170138858, 18.326262257820645 ], [ -64.8334314834986, 18.32634540764974 ], [ -64.83343953012951, 18.32642855485949 ], [ -64.83349099503971, 18.326495442478915 ], [ -64.833560229593218, 18.32654590156028 ], [ -64.833646898513621, 18.326571551505992 ], [ -64.833724850250576, 18.32661379631827 ], [ -64.833811686809213, 18.326622847468343 ], [ -64.833915790096626, 18.326665259918798 ], [ -64.833984857011956, 18.326715551361985 ], [ -64.834071693570536, 18.326724603821788 ], [ -64.834158697767293, 18.326725443322175 ], [ -64.834254419147499, 18.326726112565041 ], [ -64.834341423344256, 18.326726950755813 ], [ -64.834428427540956, 18.326727622618023 ], [ -64.834515264099537, 18.32674505567536 ], [ -64.834610817841622, 18.326754109444778 ], [ -64.834697654400259, 18.326763160594908 ], [ -64.834784658596959, 18.326772214364325 ], [ -64.834871662793716, 18.326772883607248 ], [ -64.834967216535802, 18.326773721797963 ], [ -64.835054220732502, 18.326782775567438 ], [ -64.835141057291139, 18.32680004229627 ], [ -64.835227893849719, 18.32681730771543 ], [ -64.835323447591804, 18.326834743392055 ], [ -64.835410284150385, 18.326843794542128 ], [ -64.835497120708965, 18.326852848311603 ], [ -64.835584124905722, 18.326853517554525 ], [ -64.835679846285927, 18.32685435574524 ], [ -64.835766850482685, 18.326855027607451 ], [ -64.835853854679385, 18.32685586448855 ], [ -64.835940858876143, 18.326848320772058 ], [ -64.836045297439853, 18.326840778365238 ], [ -64.83596231655855, 18.328203004613727 ], [ -64.835226720382707, 18.328165118393144 ], [ -64.834776611966049, 18.328111306548919 ], [ -64.834265315626851, 18.328039725061444 ], [ -64.833754020597326, 18.327962108600786 ], [ -64.833326542020473, 18.327817939796944 ], [ -64.833021440598372, 18.327589281368546 ], [ -64.832620785434244, 18.327184267612608 ], [ -64.832371004599679, 18.326911017437908 ], [ -64.832080152419792, 18.326495777755213 ], [ -64.831747390703981, 18.326122616556347 ], [ -64.831372551814013, 18.325727996365345 ], [ -64.831153616397955, 18.325391546610376 ], [ -64.830968377558463, 18.325091977247041 ], [ -64.830800570466693, 18.324807998231108 ], [ -64.830687751305447, 18.324556541015113 ], [ -64.830650869604085, 18.324391082166983 ], [ -64.83061482740311, 18.32412805791904 ], [ -64.83062438277733, 18.32377970585577 ], [ -64.830652882571485, 18.32347426915743 ], [ -64.830732175413573, 18.323187775569352 ], [ -64.830987654635351, 18.322887535653422 ], [ -64.831229222510558, 18.322733476199119 ], [ -64.831579249645529, 18.322670276618794 ], [ -64.832619445638727, 18.32381591438525 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_551", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.921494804931683, 18.323346528891705 ], [ -64.921432443542074, 18.323319036236057 ], [ -64.921417020832848, 18.32330411644125 ], [ -64.921343092411348, 18.323258686504232 ], [ -64.921265308312513, 18.323216944606372 ], [ -64.921195570844645, 18.323126755284932 ], [ -64.921174280800358, 18.323063890980904 ], [ -64.921133544731333, 18.322987783263557 ], [ -64.921116948555095, 18.322905305296672 ], [ -64.921110745943736, 18.322822827329844 ], [ -64.921118457298405, 18.322740517001137 ], [ -64.921129521415878, 18.322658206672429 ], [ -64.92117880703023, 18.322543206905664 ], [ -64.921220716566211, 18.322487551041831 ], [ -64.921272349114588, 18.322388141622469 ], [ -64.921339404372191, 18.322332653396813 ], [ -64.921421714700898, 18.322307172398894 ], [ -64.921507880706883, 18.322285379440189 ], [ -64.921539229039809, 18.322274315322659 ], [ -64.921529338389348, 18.322312033905064 ], [ -64.921480388051293, 18.322380765544096 ], [ -64.921452057204931, 18.322459723109944 ], [ -64.921423726358626, 18.322538513037614 ], [ -64.921388689986486, 18.322614117840544 ], [ -64.921380978631873, 18.322696428169252 ], [ -64.921363041350503, 18.322778738497959 ], [ -64.921362370797908, 18.322864401589584 ], [ -64.921368573409211, 18.322946711918235 ], [ -64.921371255619533, 18.323032542647979 ], [ -64.921387684157651, 18.323128096390064 ], [ -64.921431605351358, 18.323224153046567 ], [ -64.921465803532726, 18.323277125390405 ], [ -64.921494804931683, 18.323346528891705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_950", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.894711430231951, 18.312233462359302 ], [ -64.89471293897526, 18.312230109596442 ], [ -64.89473540248656, 18.312177638857349 ], [ -64.894744287308185, 18.312092647628049 ], [ -64.894781335337996, 18.312015700410257 ], [ -64.894846714214168, 18.311958200526874 ], [ -64.894907902136708, 18.311896844966157 ], [ -64.894965234381971, 18.311831466090041 ], [ -64.894977974880931, 18.311762063898414 ], [ -64.894966072572686, 18.311727195164451 ], [ -64.895443170730516, 18.311142138041873 ], [ -64.895608797216767, 18.311306423422991 ], [ -64.895742237179377, 18.311501052617871 ], [ -64.895913395724449, 18.311667348347044 ], [ -64.896099976978689, 18.311805146901406 ], [ -64.896234422770192, 18.311877901855894 ], [ -64.896369371476112, 18.311907741445509 ], [ -64.89650482309645, 18.311880081151799 ], [ -64.896670617220877, 18.311802464691084 ], [ -64.89681981516901, 18.311705402205746 ], [ -64.897432028361266, 18.312172609713059 ], [ -64.897407385554061, 18.312251902555147 ], [ -64.897431862032761, 18.312296997215924 ], [ -64.897326585278336, 18.312331027759114 ], [ -64.897239916357876, 18.312350138507554 ], [ -64.897157269443255, 18.312380983926062 ], [ -64.89708267046916, 18.312423564014637 ], [ -64.897028523348638, 18.312490116357765 ], [ -64.896953924374543, 18.312536719761795 ], [ -64.896887373341087, 18.312591369796792 ], [ -64.896816965320568, 18.312641996516277 ], [ -64.89675862724647, 18.31270452554395 ], [ -64.896700456810493, 18.31276705457168 ], [ -64.896654523959057, 18.312837462592142 ], [ -64.896600209200415, 18.312904014935327 ], [ -64.89652561022632, 18.312950618339357 ], [ -64.896451178890402, 18.312993366066053 ], [ -64.896372556600852, 18.313028067161895 ], [ -64.89628588637072, 18.313043154594823 ], [ -64.896186645899149, 18.313062097705142 ], [ -64.896100144616867, 18.313069306145337 ], [ -64.896013475696407, 18.313084393578265 ], [ -64.895926806775947, 18.31309143438034 ], [ -64.895840305493664, 18.313090763827745 ], [ -64.895753636573204, 18.31309009327515 ], [ -64.895667135290864, 18.313081543729822 ], [ -64.895580801646759, 18.31306897086904 ], [ -64.895494300364419, 18.313052542330922 ], [ -64.895407966720256, 18.313028234800015 ], [ -64.895325824029726, 18.31300007159183 ], [ -64.895243681339139, 18.312971908383645 ], [ -64.895165561964063, 18.312931842867215 ], [ -64.895095992134259, 18.312880042680717 ], [ -64.895034636573598, 18.312820531139607 ], [ -64.894977639604633, 18.312757163921162 ], [ -64.894928689266578, 18.31268189439453 ], [ -64.894879906566644, 18.312610648183352 ], [ -64.89482693291319, 18.312543257649452 ], [ -64.894806983974036, 18.312460444406327 ], [ -64.894770606496763, 18.312385342517814 ], [ -64.894759039464816, 18.312302696912809 ], [ -64.894711430231951, 18.312233462359302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_613", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.034428582203248, 18.354734083906692 ], [ -65.034420535572337, 18.354651773577984 ], [ -65.0343953885411, 18.354569295611157 ], [ -65.034357168353893, 18.354494865584911 ], [ -65.034271337624205, 18.354465527600041 ], [ -65.034189696538363, 18.354436190924844 ], [ -65.034116775255427, 18.354390425711529 ], [ -65.034087270942052, 18.354311971060099 ], [ -65.034057766628734, 18.354233684046847 ], [ -65.034045529044192, 18.354151206080019 ], [ -65.034033291459707, 18.354068895751311 ], [ -65.034033291459707, 18.354064872435856 ], [ -65.033990711371132, 18.353994632053514 ], [ -65.033961207057814, 18.353916177402141 ], [ -65.03397042715568, 18.353834034711554 ], [ -65.033975456300027, 18.353747701067391 ], [ -65.033997752173207, 18.353665558376861 ], [ -65.034024238999905, 18.353583415686273 ], [ -65.034046367234964, 18.353501440633863 ], [ -65.034081403607047, 18.353435895429243 ], [ -65.034090119480823, 18.35342767985054 ], [ -65.03416790488933, 18.353391134735148 ], [ -65.03418081302641, 18.35338308941391 ], [ -65.034215849398549, 18.353321564905343 ], [ -65.034263793907712, 18.353251995075595 ], [ -65.034281563550962, 18.353169852385065 ], [ -65.03432531710655, 18.353104473508893 ], [ -65.03433638122408, 18.353104473508893 ], [ -65.034414332961035, 18.35306809603162 ], [ -65.034500666605197, 18.353039932823435 ], [ -65.034500666605197, 18.35303574186986 ], [ -65.03454861111436, 18.352966173349728 ], [ -65.034592197031827, 18.352892412566405 ], [ -65.034661599223398, 18.352839606551015 ], [ -65.034739549650681, 18.352799036810495 ], [ -65.03482169365094, 18.352762491695103 ], [ -65.034903667393678, 18.352730306481135 ], [ -65.034990002347513, 18.352718570501395 ], [ -65.035076168353555, 18.352706835831327 ], [ -65.035158311044086, 18.35267448166951 ], [ -65.03523609514292, 18.352633914548335 ], [ -65.035318236523779, 18.35260575134015 ], [ -65.035400380524038, 18.352577586822292 ], [ -65.035417647252871, 18.352565350547422 ], [ -65.035482355576448, 18.352549423614107 ], [ -65.035486714168201, 18.352549423614107 ], [ -65.035533988124769, 18.352549758890405 ], [ -65.035568352634641, 18.352566522704763 ], [ -65.035585451725353, 18.352582952552552 ], [ -65.035624008498473, 18.352620334548988 ], [ -65.035636916635553, 18.352620334548988 ], [ -65.035671116126593, 18.352637098363402 ], [ -65.035718388773546, 18.35265386348749 ], [ -65.035727107266666, 18.352649838862362 ], [ -65.035804554779531, 18.352662748309115 ], [ -65.035886194555644, 18.35269208367464 ], [ -65.035954592228109, 18.352746064466658 ], [ -65.036019131603837, 18.352767185563152 ], [ -65.036036230694549, 18.35277556747036 ], [ -65.036108985649037, 18.35282535599913 ], [ -65.036181909551374, 18.352871122522117 ], [ -65.036267906609567, 18.352884196987645 ], [ -65.036349715333472, 18.352905319393813 ], [ -65.036358263569184, 18.352897106434455 ], [ -65.036379888889769, 18.352893249447447 ], [ -65.036410231393802, 18.35287698854745 ], [ -65.036431856714387, 18.352852513378423 ], [ -65.036471251678222, 18.3527787525951 ], [ -65.036527745732769, 18.35271320739048 ], [ -65.036601338877972, 18.352668615644177 ], [ -65.036687672522135, 18.352644474441718 ], [ -65.036774007475969, 18.352628716456195 ], [ -65.036856148856828, 18.352596363604107 ], [ -65.036938123909295, 18.35256400944229 ], [ -65.0370244575534, 18.352540035878008 ], [ -65.037080617641323, 18.352519920610405 ], [ -65.037115149789315, 18.352524277892485 ], [ -65.037123700644372, 18.352524277892485 ], [ -65.037201149466853, 18.352541378292869 ], [ -65.037218414886013, 18.352541378292869 ], [ -65.03729083456426, 18.352535343319687 ], [ -65.037295025517835, 18.352535343319687 ], [ -65.037385382477453, 18.35254422683164 ], [ -65.037471548483495, 18.35255730260684 ], [ -65.03755754685136, 18.352566187428522 ], [ -65.037579173481618, 18.352570378382097 ], [ -65.037626110852216, 18.352620166910867 ], [ -65.037672881894423, 18.352694430608665 ], [ -65.037749995440663, 18.352736172506525 ], [ -65.037822918033271, 18.35278193771984 ], [ -65.037909084039313, 18.352790822541465 ], [ -65.037995250045356, 18.352774896917765 ], [ -65.038085774643093, 18.35277556747036 ], [ -65.038145956736798, 18.352780262648082 ], [ -65.038171773010959, 18.352784453601657 ], [ -65.038244695603623, 18.352826195499517 ], [ -65.038249054195319, 18.352826195499517 ], [ -65.038279061423111, 18.352834577406725 ], [ -65.038317953472529, 18.352826698413935 ], [ -65.038335220201361, 18.352818650473353 ], [ -65.038348295976618, 18.352810437513995 ], [ -65.038357180798243, 18.352773555812632 ], [ -65.038357348436364, 18.352736507782822 ], [ -65.038366065619869, 18.352728293513735 ], [ -65.038375118079614, 18.352687223478142 ], [ -65.038409651537279, 18.352666937953018 ], [ -65.038427085904289, 18.352646487409174 ], [ -65.038444352633121, 18.35263424851496 ], [ -65.038474527499034, 18.352638608416385 ], [ -65.038495985181441, 18.352655204592622 ], [ -65.038534541954562, 18.35267599041282 ], [ -65.038573098727682, 18.352692755536907 ], [ -65.038594556410146, 18.352701137444114 ], [ -65.038633280821387, 18.352713876633345 ], [ -65.038663455687299, 18.352714045581195 ], [ -65.038749621693341, 18.35270650055503 ], [ -65.038840146291079, 18.352702981463665 ], [ -65.038926479935242, 18.35268303252451 ], [ -65.039012813579404, 18.35265067836275 ], [ -65.039056231858694, 18.352613965609237 ], [ -65.039077857179279, 18.352593681393785 ], [ -65.039082215771032, 18.352593681393785 ], [ -65.039125466412202, 18.352573395868717 ], [ -65.039155808916234, 18.35255713496872 ], [ -65.039164358461562, 18.35255730260684 ], [ -65.039185816144027, 18.352561493560472 ], [ -65.039207273826435, 18.352574066421255 ], [ -65.039228563870722, 18.352602901491707 ], [ -65.03927550255105, 18.352673140564377 ], [ -65.039348257505537, 18.352719073415813 ], [ -65.039434255873402, 18.352744220447107 ], [ -65.039520589517565, 18.352728462461585 ], [ -65.0395983736164, 18.352687892721065 ], [ -65.039676157715235, 18.352651516553465 ], [ -65.03969778303582, 18.35265570750704 ], [ -65.039766514674852, 18.352668615644177 ], [ -65.03978797235726, 18.352676997551328 ], [ -65.039818147223173, 18.352685379458535 ], [ -65.039839772543758, 18.352669118558595 ], [ -65.039852848319015, 18.352652688710805 ], [ -65.039904983781753, 18.352591500788265 ], [ -65.039909342373505, 18.352587309834632 ], [ -65.039969859743508, 18.352558980297999 ], [ -65.03998712647234, 18.352550932357417 ], [ -65.040021659930005, 18.35255110130521 ], [ -65.040047643842342, 18.352534840405269 ], [ -65.040064910571175, 18.352514388551697 ], [ -65.040065078209295, 18.352510363926569 ], [ -65.040110340508193, 18.35244146464936 ], [ -65.040114699099945, 18.352441633597152 ], [ -65.0401411859267, 18.35235948959695 ], [ -65.0401411859267, 18.352347084374287 ], [ -65.040124589750405, 18.352277180577914 ], [ -65.040064742932998, 18.35221498551681 ], [ -65.040009254707343, 18.352148768449922 ], [ -65.039962483665192, 18.352078529377252 ], [ -65.039932979351818, 18.352000073416207 ], [ -65.0399034750385, 18.351921786402954 ], [ -65.03993415281883, 18.351843834665999 ], [ -65.03997757109812, 18.351807123222159 ], [ -65.039999196418705, 18.351786671368586 ], [ -65.040008584154748, 18.351704527368327 ], [ -65.040043620526887, 18.351626575631371 ], [ -65.040087374082475, 18.351548791532537 ], [ -65.040130959999885, 18.351475030749214 ], [ -65.040105814278263, 18.351392720420506 ], [ -65.040050326052608, 18.351326503353619 ], [ -65.039973044868248, 18.351288784771214 ], [ -65.039934823371425, 18.351214522383088 ], [ -65.039926944378635, 18.351132210744709 ], [ -65.039858380377723, 18.351078232572036 ], [ -65.039806915467523, 18.35105325448859 ], [ -65.039772549648035, 18.351052919212293 ], [ -65.03968202505024, 18.351052247350026 ], [ -65.039600385274127, 18.351022910674828 ], [ -65.03951002831451, 18.3510098362093 ], [ -65.039424029946645, 18.350996928072163 ], [ -65.039333672987027, 18.350979827671836 ], [ -65.039269635216044, 18.350921826183651 ], [ -65.039218505582085, 18.350851418163188 ], [ -65.039158658764677, 18.350789392049933 ], [ -65.039107529130774, 18.350718984029413 ], [ -65.039047682313367, 18.350656956606485 ], [ -65.038970568767127, 18.350615216018298 ], [ -65.038923630086799, 18.350544975635955 ], [ -65.038880547083807, 18.350466018070165 ], [ -65.038866633117834, 18.350445901492833 ], [ -65.038826399963284, 18.35037163648542 ], [ -65.038773929224192, 18.350304916504058 ], [ -65.038725649438732, 18.350234508483595 ], [ -65.038648368254371, 18.350194947191312 ], [ -65.038562872800924, 18.350166951621247 ], [ -65.038481569610724, 18.35013141233469 ], [ -65.038412669023899, 18.350080281391115 ], [ -65.038388361492991, 18.350048934367862 ], [ -65.038364221600261, 18.35000903648961 ], [ -65.038278726146814, 18.349992775589612 ], [ -65.038197421646998, 18.349957067355263 ], [ -65.038148975533034, 18.349886660644472 ], [ -65.038088290524911, 18.34982765201778 ], [ -65.038048056060688, 18.349753388319982 ], [ -65.037999608637051, 18.349682980299519 ], [ -65.037996255874191, 18.349597149569775 ], [ -65.038082086603936, 18.349574349472505 ], [ -65.038163894018169, 18.349543840639967 ], [ -65.038086780471929, 18.349504278038012 ], [ -65.038001285018538, 18.34948030447373 ], [ -65.037936073780486, 18.349460356844304 ], [ -65.037931547550613, 18.349530429588469 ], [ -65.037918639413533, 18.349612237002759 ], [ -65.037832808683788, 18.349627155487894 ], [ -65.037771956037545, 18.349568314499322 ], [ -65.037756365690143, 18.349486339446912 ], [ -65.037728537758198, 18.349404364394502 ], [ -65.037659470842925, 18.349353236070272 ], [ -65.037590571565715, 18.349298083120914 ], [ -65.037529886557593, 18.349239242132342 ], [ -65.037477415818501, 18.349172522151036 ], [ -65.03742896839492, 18.349102114130574 ], [ -65.037429638947458, 18.349016451038949 ], [ -65.037430309500053, 18.348930620309261 ], [ -65.037398290614533, 18.348852500934129 ], [ -65.037341628921865, 18.348789804268279 ], [ -65.03726853869108, 18.348742530311654 ], [ -65.037228474484323, 18.348668098975736 ], [ -65.037171811481983, 18.348605402309886 ], [ -65.037077935431057, 18.348608587434626 ], [ -65.03699210339164, 18.348631386222223 ], [ -65.036906441609744, 18.348619148637681 ], [ -65.03684156564799, 18.348563995688323 ], [ -65.03685866342903, 18.348482355912211 ], [ -65.03694449546839, 18.348459557124613 ], [ -65.036883641512475, 18.348400716136041 ], [ -65.03679781078273, 18.348423514923638 ], [ -65.036711981362657, 18.348446146073059 ], [ -65.036646265900572, 18.348500293193581 ], [ -65.036596812648099, 18.348570029351833 ], [ -65.036563452657447, 18.348647814760341 ], [ -65.036489691874067, 18.348693915249896 ], [ -65.036407884459777, 18.348724593030283 ], [ -65.036338817544447, 18.348673463396324 ], [ -65.036302776653201, 18.348595176383071 ], [ -65.036258518873467, 18.348520912685331 ], [ -65.036177214373652, 18.348469615413251 ], [ -65.036100268465532, 18.348402727793768 ], [ -65.036027179544419, 18.3483554538372 ], [ -65.035962471220842, 18.348300468525963 ], [ -65.035893404305511, 18.348249338892003 ], [ -65.035816289449599, 18.348205920612713 ], [ -65.035763483434266, 18.348170548964333 ], [ -65.035748228363161, 18.348146241433483 ], [ -65.035687543355039, 18.348087400444911 ], [ -65.035610431118471, 18.348028391818218 ], [ -65.035537339578013, 18.347980950223473 ], [ -65.035468441610476, 18.347922109234958 ], [ -65.035403565648778, 18.34786712392372 ], [ -65.035330641746441, 18.34781582665164 ], [ -65.035278003369228, 18.347749274308455 ], [ -65.035217318361106, 18.34769043331994 ], [ -65.035160825616231, 18.347623713338635 ], [ -65.035087735385446, 18.34757643938201 ], [ -65.035010454201085, 18.347536876780055 ], [ -65.034945578239331, 18.347481891468817 ], [ -65.034884893231208, 18.347423050480245 ], [ -65.034832422492173, 18.34735633049894 ], [ -65.034783975068535, 18.347282066801142 ], [ -65.03471507448171, 18.347230769529062 ], [ -65.034666628367745, 18.3471603615086 ], [ -65.034647013395215, 18.347078386456189 ], [ -65.034594376327675, 18.347011834113005 ], [ -65.03452950036592, 18.346956681163647 ], [ -65.03445657646364, 18.346909407207022 ], [ -65.03436689136629, 18.346889290629747 ], [ -65.034314420627197, 18.346822738286562 ], [ -65.034282400432005, 18.346744618911487 ], [ -65.034250381546542, 18.346666331898234 ], [ -65.034164887402767, 18.346634648289012 ], [ -65.034079391949319, 18.346610676034402 ], [ -65.034006469356655, 18.346563234439657 ], [ -65.033945615400739, 18.346504393451141 ], [ -65.033872526479627, 18.346457119494517 ], [ -65.033791221979754, 18.346421412569839 ], [ -65.033701535572732, 18.346428621010034 ], [ -65.033611681527532, 18.346431806134774 ], [ -65.033509589897847, 18.346446725929582 ], [ -65.033423759168102, 18.346469524717179 ], [ -65.033337760800237, 18.346496011543934 ], [ -65.033203147370614, 18.346491150037764 ], [ -65.033117316640869, 18.346510093148026 ], [ -65.033109270009959, 18.346509925509906 ], [ -65.033034671035921, 18.346539094546927 ], [ -65.032949175582473, 18.346526689324264 ], [ -65.032835181644543, 18.346494838076921 ], [ -65.032753709506551, 18.346462986829579 ], [ -65.032680786913943, 18.346415712872954 ], [ -65.032603505729526, 18.346376150270999 ], [ -65.032538629767828, 18.346321164959761 ], [ -65.032457325267956, 18.346289313712361 ], [ -65.032392449306258, 18.346234328401124 ], [ -65.032315335760018, 18.346190910121834 ], [ -65.032229672668393, 18.346174816860014 ], [ -65.032144177214946, 18.346162411637351 ], [ -65.032054490807923, 18.346154029730144 ], [ -65.031968660078178, 18.346172805202286 ], [ -65.03188282934849, 18.346191749622221 ], [ -65.031796998618745, 18.346210523784691 ], [ -65.031711167889, 18.346229466894954 ], [ -65.031625169521135, 18.346263832714499 ], [ -65.031518886937874, 18.346290319541254 ], [ -65.03143305620813, 18.346313119638523 ], [ -65.03134320216293, 18.346320159130869 ], [ -65.031261897663114, 18.346288475521646 ], [ -65.03119702170136, 18.346233490210409 ], [ -65.031148574277779, 18.346162914551826 ], [ -65.031100294492262, 18.346092506531306 ], [ -65.031047656115049, 18.346025786550001 ], [ -65.030999376329589, 18.345955378529538 ], [ -65.030934500367891, 18.345900393218301 ], [ -65.030869624406137, 18.345845241578616 ], [ -65.030800725128984, 18.345794110634984 ], [ -65.030723443944566, 18.345750692355693 ], [ -65.030670973205474, 18.345684140012565 ], [ -65.030602073928321, 18.345633010378606 ], [ -65.030545412235654, 18.345570146074635 ], [ -65.030484727227531, 18.345507449408785 ], [ -65.030419851265776, 18.345452464097548 ], [ -65.030371571480316, 18.345381888438908 ], [ -65.030323124056679, 18.345311480418445 ], [ -65.030298816525828, 18.345291699117411 ], [ -65.030273838442383, 18.34524006656909 ], [ -65.030246010510439, 18.34515809151668 ], [ -65.030213991624976, 18.34507997345122 ], [ -65.030206447908483, 18.34499414141186 ], [ -65.030166214753933, 18.344919877714062 ], [ -65.030117934968416, 18.344849302055422 ], [ -65.030106367936526, 18.344767494641133 ], [ -65.030094800904578, 18.344685519588722 ], [ -65.030087257188086, 18.344599856497155 ], [ -65.030079713471594, 18.34451402576741 ], [ -65.030064123124248, 18.344428196347337 ], [ -65.030044341823213, 18.344346219985255 ], [ -65.030016513891326, 18.344264244932845 ], [ -65.029968066467688, 18.344193670583934 ], [ -65.029907381459566, 18.344134829595362 ], [ -65.029842505497868, 18.344079842974452 ], [ -65.02980227365299, 18.344005411638534 ], [ -65.029745779598443, 18.343938860605022 ], [ -65.029689116596103, 18.343875996301051 ], [ -65.02962038495707, 18.343797709287799 ], [ -65.029563724574075, 18.343734843674099 ], [ -65.029515443478886, 18.343664435653636 ], [ -65.02947118700888, 18.343590005627391 ], [ -65.029410669638935, 18.343503839621349 ], [ -65.02935400794621, 18.343437287278164 ], [ -65.02933020463945, 18.343355312225754 ], [ -65.029298184444258, 18.343277025212501 ], [ -65.029262143553012, 18.343198904527753 ], [ -65.02922190908879, 18.343124640829956 ], [ -65.029209671504248, 18.343116763146838 ], [ -65.029175138046583, 18.343053731204691 ], [ -65.029118476353915, 18.342987011223386 ], [ -65.029057791345792, 18.34292817023487 ], [ -65.028992915384038, 18.34287318361396 ], [ -65.028944635598577, 18.342802609264993 ], [ -65.028891998531037, 18.342736055612136 ], [ -65.02883550447649, 18.342673360255958 ], [ -65.028774819468367, 18.342610494642315 ], [ -65.028705752553037, 18.342559366318028 ], [ -65.028645067544915, 18.342500525329513 ], [ -65.028580191583217, 18.342445372380155 ], [ -65.028523697528669, 18.342382674404575 ], [ -65.028446416344309, 18.342339257434958 ], [ -65.028360919581189, 18.342322996535017 ], [ -65.028279616390989, 18.342283432623333 ], [ -65.028202501535077, 18.34224387133105 ], [ -65.028121029397141, 18.342208332044493 ], [ -65.028043915850901, 18.342168769442537 ], [ -65.027962611351029, 18.342136918195195 ], [ -65.027881140522709, 18.342105234585972 ], [ -65.027755244276591, 18.342049746360317 ], [ -65.027673770828926, 18.342018061441422 ], [ -65.027584419698144, 18.34198218818824 ], [ -65.027498925554426, 18.341962239249142 ], [ -65.027421644370008, 18.34192267664713 ], [ -65.027340338560521, 18.34188696841278 ], [ -65.027254844416746, 18.341859140480892 ], [ -65.027169347653626, 18.341846736567902 ], [ -65.027104471691928, 18.341791751256665 ], [ -65.027080668385111, 18.341709776204254 ], [ -65.027068932405371, 18.341643391499247 ], [ -65.027061891603296, 18.341613384271454 ], [ -65.02703389734296, 18.341531409219044 ], [ -65.026993830516858, 18.341453122205792 ], [ -65.026937170133863, 18.341382546547152 ], [ -65.02687648512574, 18.341323705558636 ], [ -65.026819823433073, 18.341260841254609 ], [ -65.026734326669953, 18.341240723367662 ], [ -65.026628379362933, 18.341232175132006 ], [ -65.026538526627405, 18.341227648902134 ], [ -65.026448840220382, 18.341223121362532 ], [ -65.026350939544272, 18.341218596442332 ], [ -65.026265444090825, 18.341206191219669 ], [ -65.02617575637413, 18.341189930319729 ], [ -65.026086071276779, 18.341189258457462 ], [ -65.026004262552817, 18.341219937547464 ], [ -65.025922287500407, 18.341250446380002 ], [ -65.025885073142092, 18.341328064150389 ], [ -65.025859927420527, 18.341409703926502 ], [ -65.025785998999027, 18.341455972054234 ], [ -65.025716261531102, 18.341506094549629 ], [ -65.025655576522979, 18.341447253561057 ], [ -65.025586677245769, 18.341395957598706 ], [ -65.025517610330496, 18.341340972287469 ], [ -65.025444686428159, 18.341293698330844 ], [ -65.025363383238016, 18.341257991406167 ], [ -65.025269338239184, 18.341269055523696 ], [ -65.025183507509496, 18.341303421343184 ], [ -65.025097509141631, 18.341330074498444 ], [ -65.025019725042796, 18.341368464943059 ], [ -65.024937749990386, 18.341402998400724 ], [ -65.024859965891551, 18.341441387535724 ], [ -65.024778158477261, 18.341479775360995 ], [ -65.024683945840366, 18.341510119174757 ], [ -65.024586212802433, 18.341501737267549 ], [ -65.024500548401136, 18.341489332044887 ], [ -65.02441471898112, 18.341500396162417 ], [ -65.024336934882285, 18.341542640974694 ], [ -65.024206512406238, 18.341530068113912 ], [ -65.024116825999215, 18.341521518568527 ], [ -65.024027139592192, 18.341505425306707 ], [ -65.023941644138745, 18.341489164406767 ], [ -65.023860339638873, 18.341453457482089 ], [ -65.023783058454512, 18.341410039202799 ], [ -65.023697563001065, 18.341389922625524 ], [ -65.023689516370155, 18.341386066948189 ], [ -65.023611229356902, 18.341365112180199 ], [ -65.023517519634424, 18.341360585950326 ], [ -65.023435712220135, 18.341391096092536 ], [ -65.02332104772961, 18.341437028943972 ], [ -65.023239240315377, 18.341467539086182 ], [ -65.023157265262967, 18.341502072543847 ], [ -65.023079481164132, 18.341540460369174 ], [ -65.022993650434387, 18.341567116143722 ], [ -65.022907819704699, 18.341578180261195 ], [ -65.022821988974954, 18.341593100056059 ], [ -65.022732302567931, 18.341588572516457 ], [ -65.022663403290721, 18.341537444192227 ], [ -65.022586122106361, 18.341497881590271 ], [ -65.022492412383826, 18.341489332044887 ], [ -65.022406581654138, 18.341500396162417 ], [ -65.022369198348031, 18.341578180261195 ], [ -65.022336005995498, 18.341655795412237 ], [ -65.022298622689391, 18.341733413182567 ], [ -65.022265430336859, 18.341811197281402 ], [ -65.022240284615293, 18.341892669419337 ], [ -65.022206924624641, 18.341970453518172 ], [ -65.022185802218473, 18.342067683641687 ], [ -65.022185131665879, 18.342153345423583 ], [ -65.022204912966913, 18.34223532047605 ], [ -65.022244978483286, 18.34230975312164 ], [ -65.022256545515233, 18.34239156053593 ], [ -65.022219162209126, 18.342488789349773 ], [ -65.022177755587563, 18.342562382494975 ], [ -65.022116064750549, 18.342620386602448 ], [ -65.022058397229046, 18.342682411406088 ], [ -65.022058564867166, 18.342683249596803 ], [ -65.020746125837775, 18.342568083501533 ], [ -65.020828603804659, 18.342307741463912 ], [ -65.021021220032083, 18.341887472636927 ], [ -65.021238143790413, 18.341432501404427 ], [ -65.021468981514715, 18.341107619991021 ], [ -65.021723959131748, 18.340778211038071 ], [ -65.021882712454101, 18.340642424141436 ], [ -65.021990839056969, 18.340550055524091 ], [ -65.022194184125681, 18.340461207307726 ], [ -65.022452346867453, 18.340421979982068 ], [ -65.023052323784782, 18.340336149252323 ], [ -65.023494050294232, 18.34030915951115 ], [ -65.023967460412905, 18.340282671374723 ], [ -65.024821409118431, 18.340309494787448 ], [ -65.025054592467086, 18.34030429800498 ], [ -65.025512916462446, 18.340293904440045 ], [ -65.026113061017952, 18.340177898844388 ], [ -65.026681019049818, 18.340151914932051 ], [ -65.027362300467018, 18.340206900243288 ], [ -65.027953057286481, 18.340362802407526 ], [ -65.028914963647082, 18.340831017053404 ], [ -65.029699008556236, 18.341378858507994 ], [ -65.030514231540849, 18.341987217332587 ], [ -65.031578566117105, 18.342989021571441 ], [ -65.032235204727158, 18.343716738754551 ], [ -65.032497223146208, 18.344119574524257 ], [ -65.032954037088643, 18.344535149483249 ], [ -65.033394087216664, 18.344719048527224 ], [ -65.034149967607959, 18.34487528596776 ], [ -65.034905846689583, 18.34500118352355 ], [ -65.035567011529508, 18.34515658277337 ], [ -65.036036733608967, 18.345350372467863 ], [ -65.0366033505357, 18.345736443113481 ], [ -65.037135434004767, 18.346252434630344 ], [ -65.037407510712455, 18.346474386223349 ], [ -65.037762065387028, 18.346769094080514 ], [ -65.038349804719871, 18.347185842506462 ], [ -65.038734031345939, 18.347498990559473 ], [ -65.039204591616169, 18.347833763933068 ], [ -65.03958060397315, 18.348137691888098 ], [ -65.039915712622985, 18.34836668559285 ], [ -65.04028418126353, 18.348647814760341 ], [ -65.040771505348118, 18.349110160761484 ], [ -65.041193785832832, 18.349496901959697 ], [ -65.041491008262142, 18.349868388086804 ], [ -65.041646911736109, 18.350080450338965 ], [ -65.041864841323275, 18.350443385611015 ], [ -65.041989564102437, 18.350625105359143 ], [ -65.042144629385632, 18.350957533108328 ], [ -65.0422368303648, 18.351259449405688 ], [ -65.042297515372923, 18.351561030426751 ], [ -65.042357697466628, 18.351922959869967 ], [ -65.042393235443512, 18.352224374562581 ], [ -65.042453251208713, 18.352616312543205 ], [ -65.042480073311765, 18.353300274861056 ], [ -65.04240396559436, 18.353908633685649 ], [ -65.04231528501623, 18.354091191624491 ], [ -65.042186538921612, 18.354421606406277 ], [ -65.042089308798097, 18.354752356464417 ], [ -65.042019571330172, 18.35549901675779 ], [ -65.041964249433022, 18.355755335479955 ], [ -65.041889987044897, 18.35594728115484 ], [ -65.041751517937939, 18.356101340609143 ], [ -65.041591088234156, 18.356204438067721 ], [ -65.041419762050964, 18.356269984582013 ], [ -65.041268384806926, 18.356290268797466 ], [ -65.041119857411331, 18.356302674020128 ], [ -65.040893378278781, 18.356268978753178 ], [ -65.040658349600903, 18.35617694541213 ], [ -65.040587773942264, 18.356110728345243 ], [ -65.04047864151056, 18.35600830143926 ], [ -65.040303962564508, 18.355748629954178 ], [ -65.040127942513323, 18.355460962899087 ], [ -65.039981426775455, 18.355194585888285 ], [ -65.039823846920058, 18.354868194421897 ], [ -65.039695771378092, 18.354599638115189 ], [ -65.039557469909255, 18.354369135667241 ], [ -65.039339205045792, 18.354118851918201 ], [ -65.039039970958754, 18.353973342009226 ], [ -65.038563710991639, 18.353822970594081 ], [ -65.038311750861226, 18.353791119346681 ], [ -65.037901707960998, 18.353788101860118 ], [ -65.03746015039934, 18.353784916735378 ], [ -65.036891520505208, 18.353871082741421 ], [ -65.036479633585429, 18.354109128905861 ], [ -65.036257680682752, 18.354257991577754 ], [ -65.036098927360399, 18.354377349936271 ], [ -65.036003373618314, 18.354497211209207 ], [ -65.035749066553876, 18.354736263202597 ], [ -65.035462909551768, 18.355035329651457 ], [ -65.035203070428565, 18.355417879896095 ], [ -65.03501933902271, 18.355664810882217 ], [ -65.03501933902271, 18.355659278823452 ], [ -65.034939206680235, 18.355609322656505 ], [ -65.034876342376208, 18.355548470010262 ], [ -65.034807778375296, 18.355492981784607 ], [ -65.034745083019118, 18.355432129138308 ], [ -65.034688086050153, 18.3553657444333 ], [ -65.03462522043651, 18.355304891787 ], [ -65.034562357442155, 18.355243871502637 ], [ -65.034499659466633, 18.355177486797572 ], [ -65.034436796472335, 18.355116634151329 ], [ -65.034391366535317, 18.355044885025677 ], [ -65.034380133469995, 18.355011860311322 ], [ -65.034351803933305, 18.354967771479437 ], [ -65.034344929459735, 18.354955533894952 ], [ -65.034379464227072, 18.354939272994955 ], [ -65.034414165322858, 18.354906751195017 ], [ -65.034414165322858, 18.354902560241442 ], [ -65.034419194467205, 18.354816226597279 ], [ -65.034428582203248, 18.354734083906692 ] ], [ [ -65.040694391801878, 18.354012401696764 ], [ -65.040620966294796, 18.354057328719364 ], [ -65.040541338176411, 18.354099239565073 ], [ -65.040458357295108, 18.354140980153261 ], [ -65.040403874898345, 18.354207364858269 ], [ -65.040365318125225, 18.354282802023079 ], [ -65.040335981450028, 18.354367460595427 ], [ -65.040376717518996, 18.354440549516539 ], [ -65.04046254824874, 18.354416912538284 ], [ -65.040545529129986, 18.354365950542501 ], [ -65.040625157248428, 18.354330075979647 ], [ -65.040698582755454, 18.354282131470484 ], [ -65.040768823137796, 18.354222117014956 ], [ -65.040800339108898, 18.354119187194499 ], [ -65.040760608868766, 18.354067387008001 ], [ -65.040694391801878, 18.354012401696764 ] ], [ [ -65.041409703762326, 18.35527438164479 ], [ -65.041321861374854, 18.355284439933484 ], [ -65.041242736170886, 18.355324673088035 ], [ -65.041208370351399, 18.355406145226027 ], [ -65.041178363123606, 18.355485438068115 ], [ -65.041266205511079, 18.35548610862071 ], [ -65.041316832230564, 18.355469009529997 ], [ -65.041351868602646, 18.35545878360324 ], [ -65.041384558040704, 18.355464315661948 ], [ -65.041421438432394, 18.35548929374545 ], [ -65.041462509777659, 18.355416538790905 ], [ -65.041472232790056, 18.355332887357065 ], [ -65.041409703762326, 18.35527438164479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1188", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.853286542654644, 18.32424691336314 ], [ -64.853230551514514, 18.324518822432708 ], [ -64.853223678350616, 18.324521169366733 ], [ -64.853150252843534, 18.324571293171743 ], [ -64.853063919199371, 18.324595768340771 ], [ -64.852977250278911, 18.324639520586686 ], [ -64.852817826404021, 18.324688807510711 ], [ -64.852777928525711, 18.324699367404094 ], [ -64.852724787234081, 18.324713281370066 ], [ -64.852644823839398, 18.324750665985846 ], [ -64.852505348903549, 18.324787546377536 ], [ -64.852419182897563, 18.324799447376051 ], [ -64.85233921950288, 18.324836664353711 ], [ -64.852238804254625, 18.324943448541774 ], [ -64.852165546385663, 18.324993572346841 ], [ -64.852085582990981, 18.325037159573924 ], [ -64.851945437502593, 18.325149980044841 ], [ -64.851878549883168, 18.325206474099389 ], [ -64.851765226497832, 18.325281408349724 ], [ -64.851705044404127, 18.325344272653751 ], [ -64.851624913371268, 18.325413170621232 ], [ -64.851558025751842, 18.325469664675779 ], [ -64.851424921065473, 18.325531858427212 ], [ -64.851351495558447, 18.325581814594102 ], [ -64.851271196887467, 18.325676196178847 ], [ -64.851217552681362, 18.325751633343657 ], [ -64.85115703531136, 18.325839809697754 ], [ -64.851116466880512, 18.325921784750165 ], [ -64.851049746899207, 18.325978112476207 ], [ -64.850969783504524, 18.326021864722122 ], [ -64.850896357997442, 18.326071822198685 ], [ -64.850803654103856, 18.32607735425745 ], [ -64.850796948578079, 18.32607735425745 ], [ -64.850650935754629, 18.32610786439966 ], [ -64.850491511879682, 18.326138205594077 ], [ -64.850345499056289, 18.326168549407782 ], [ -64.850258997773949, 18.32619956246441 ], [ -64.850159253078289, 18.326242979434085 ], [ -64.850079289683606, 18.326280362740192 ], [ -64.850025645477501, 18.326210960548565 ], [ -64.849934451636841, 18.326210291305642 ], [ -64.849842919900595, 18.326241135414477 ], [ -64.849775864642993, 18.326303999718505 ], [ -64.849692548485393, 18.326343059406042 ], [ -64.84960118569694, 18.326350101517733 ], [ -64.84951803848719, 18.326373235581627 ], [ -64.849434553381798, 18.326420174261955 ], [ -64.849375880031403, 18.326483038565925 ], [ -64.849325420950038, 18.326553949500862 ], [ -64.849274961868673, 18.326624860435743 ], [ -64.849216288518278, 18.32668789237789 ], [ -64.849141186629765, 18.326734829748546 ], [ -64.849074300320012, 18.326789647421663 ], [ -64.848948570402342, 18.32692342266057 ], [ -64.84889811263065, 18.326994333595451 ], [ -64.848839439280255, 18.327057197899478 ], [ -64.848789146527395, 18.327128108834358 ], [ -64.84873868744603, 18.327199019769296 ], [ -64.848704656902783, 18.327278144973263 ], [ -64.848662413400177, 18.327364981531844 ], [ -64.848636763454465, 18.327443940407363 ], [ -64.848586304373157, 18.327514850032571 ], [ -64.84855244146803, 18.327593807598419 ], [ -64.848501982386722, 18.327664887481149 ], [ -64.848451524615029, 18.327735798416029 ], [ -64.848392851264634, 18.327798661410384 ], [ -64.848325963645209, 18.327853646721621 ], [ -64.848250860447024, 18.327900585401949 ], [ -64.848183972827542, 18.327955403075009 ], [ -64.848100656669999, 18.327986416131637 ], [ -64.848017509460249, 18.328017430497994 ], [ -64.847925977723946, 18.328032516621249 ], [ -64.847834782573614, 18.328031846068711 ], [ -64.847743253456656, 18.328046933501639 ], [ -64.847651889358474, 18.328054141941834 ], [ -64.847560695517814, 18.328053303751119 ], [ -64.847469331419688, 18.328052634508197 ], [ -64.847377968631179, 18.328059841638719 ], [ -64.847286607152398, 18.328074929071704 ], [ -64.847195075416096, 18.328090016504632 ], [ -64.847115113331085, 18.328119354489502 ], [ -64.847025425614333, 18.328131926040669 ], [ -64.846949319206658, 18.328160424525151 ], [ -64.84652284645864, 18.327148560687931 ], [ -64.846875892389903, 18.327044289762398 ], [ -64.847216199131879, 18.32692493140388 ], [ -64.847426082088191, 18.326767351548483 ], [ -64.847526328388653, 18.326603570391455 ], [ -64.847553653406123, 18.326420340590403 ], [ -64.847484420162289, 18.326285225556035 ], [ -64.847236148071033, 18.32614273182395 ], [ -64.847007322004458, 18.325963526648025 ], [ -64.84670255454904, 18.325631435484752 ], [ -64.84638840197681, 18.325340752252714 ], [ -64.846125376419252, 18.325194236514847 ], [ -64.845698571014282, 18.324913442623654 ], [ -64.845352733523214, 18.324790059640009 ], [ -64.845101276307219, 18.324697523384543 ], [ -64.844723587568751, 18.324604150247978 ], [ -64.844313879944821, 18.324570622619206 ], [ -64.843903166492055, 18.324657459177786 ], [ -64.84339639638273, 18.324894330565598 ], [ -64.843015690157699, 18.325132041453799 ], [ -64.842665829351176, 18.325460613525706 ], [ -64.842442536653039, 18.325729840384952 ], [ -64.842029139680278, 18.326117921378625 ], [ -64.841806180948765, 18.326356973371958 ], [ -64.841583223526868, 18.32659619431314 ], [ -64.841073100654683, 18.327194325901246 ], [ -64.84088232844681, 18.327373532386844 ], [ -64.840547890349569, 18.327584756448289 ], [ -64.840148408652396, 18.327874770437404 ], [ -64.839788489557236, 18.328049112797544 ], [ -64.839540048518131, 18.328132093678789 ], [ -64.838925153115611, 18.3265619948221 ], [ -64.838939067081583, 18.32648001976969 ], [ -64.838900173722493, 18.326403913361958 ], [ -64.838861115344628, 18.32632780564461 ], [ -64.83881568540761, 18.326245326368053 ], [ -64.838809818072548, 18.326156813428042 ], [ -64.838836975451898, 18.326075007323425 ], [ -64.83887838207346, 18.326020357288485 ], [ -64.838884080460673, 18.325999570158672 ], [ -64.838937558338273, 18.32593066957179 ], [ -64.838997571484185, 18.325867974215612 ], [ -64.839070829353091, 18.325818016738992 ], [ -64.839157164306926, 18.32576202559892 ], [ -64.839236958753816, 18.325718439681509 ], [ -64.839316754510321, 18.325674853764042 ], [ -64.839383308163178, 18.325618696295464 ], [ -64.839450026834811, 18.325562368569422 ], [ -64.839516580487668, 18.325506043462724 ], [ -64.839589838356574, 18.325456253624282 ], [ -64.839662928587359, 18.325406297457334 ], [ -64.839729479620871, 18.325349972350637 ], [ -64.839732832383731, 18.325343434463036 ], [ -64.839823861205616, 18.325359695362977 ], [ -64.839919916552446, 18.325390036557394 ], [ -64.840033073609334, 18.325423899462464 ], [ -64.840125608555127, 18.325454075638049 ], [ -64.840228370737407, 18.325501014318377 ], [ -64.840361307785599, 18.325590699415784 ], [ -64.840445294495737, 18.325611486545597 ], [ -64.840540011356779, 18.325612324736312 ], [ -64.8406345579603, 18.325612996598579 ], [ -64.840718879946735, 18.325593718212019 ], [ -64.84080320193317, 18.325574272187339 ], [ -64.840898086432389, 18.325565052089416 ], [ -64.84099280067403, 18.325545772393184 ], [ -64.841077291608315, 18.325516269389482 ], [ -64.84116161359475, 18.325496823364801 ], [ -64.841256495474568, 18.325467485379932 ], [ -64.8413411527373, 18.325407975148494 ], [ -64.841425642361855, 18.325378469525447 ], [ -64.841478952601335, 18.325298675078557 ], [ -64.841490350685433, 18.325208318118939 ], [ -64.841512143644138, 18.325128187086136 ], [ -64.84155489137089, 18.325048056053276 ], [ -64.841550197502841, 18.324967757382353 ], [ -64.84157299760011, 18.324887291073196 ], [ -64.841592107038878, 18.324803304363058 ], [ -64.841629657983106, 18.324712444489023 ], [ -64.841663354559728, 18.324635666219081 ], [ -64.841711800673693, 18.324565927441483 ], [ -64.841745495940586, 18.324489150481213 ], [ -64.841779192517208, 18.324408684172113 ], [ -64.841823950592016, 18.324335426303151 ], [ -64.841864686660983, 18.324300725207365 ], [ -64.841864686660983, 18.324293684405291 ], [ -64.841854460734226, 18.324206008346323 ], [ -64.841825794611566, 18.324125208070598 ], [ -64.841800984166298, 18.3240444064852 ], [ -64.841787071509998, 18.323960084498765 ], [ -64.841765780156038, 18.32387928291331 ], [ -64.841703921680903, 18.323819268457783 ], [ -64.84161591165531, 18.323797475499077 ], [ -64.841524045952383, 18.323807198511417 ], [ -64.841432347887633, 18.323816921523758 ], [ -64.8413476906249, 18.323837204429537 ], [ -64.841263033362168, 18.323864529447007 ], [ -64.841175190974695, 18.32388246803805 ], [ -64.841086510396565, 18.323891185221555 ], [ -64.84101995805338, 18.32394667344721 ], [ -64.840946198579672, 18.32399160046981 ], [ -64.840861540007324, 18.324019093125457 ], [ -64.840776882744592, 18.324039377340853 ], [ -64.840773363653227, 18.324048765076896 ], [ -64.84068417885095, 18.324056307483715 ], [ -64.84059315264841, 18.324067874515663 ], [ -64.840535820403204, 18.324104756217025 ], [ -64.840454849869957, 18.324145157009696 ], [ -64.840389973908202, 18.32419075458489 ], [ -64.840319399559291, 18.324267197578536 ], [ -64.840238261387924, 18.324322853442368 ], [ -64.840141366540649, 18.324352859360488 ], [ -64.840065595409271, 18.324408684172113 ], [ -64.839909859573481, 18.324402313922633 ], [ -64.839753954789899, 18.324400971507771 ], [ -64.839624873418984, 18.324425615624648 ], [ -64.839484561602148, 18.324480768574006 ], [ -64.839344414804089, 18.324531060017193 ], [ -64.839215165795054, 18.324565761113035 ], [ -64.839051552276203, 18.324595768340771 ], [ -64.838786013456115, 18.324645389231421 ], [ -64.838549308396807, 18.324695345398311 ], [ -64.838334562624652, 18.324778995522536 ], [ -64.838017560204037, 18.324886117606184 ], [ -64.837787056446359, 18.325019222292553 ], [ -64.837696365520117, 18.325029280581191 ], [ -64.837953353485204, 18.323857825230903 ], [ -64.838188551110875, 18.323830500213433 ], [ -64.838566741454088, 18.32376042746921 ], [ -64.83891324949775, 18.323653139057058 ], [ -64.839357659527138, 18.323496397392432 ], [ -64.839656724666384, 18.323417439826585 ], [ -64.839941878459001, 18.323269246397672 ], [ -64.840576219886202, 18.322882841785372 ], [ -64.840744025668357, 18.322725429568209 ], [ -64.840945861993703, 18.322539351228329 ], [ -64.841030183980138, 18.322411610962604 ], [ -64.841050469505262, 18.322289570393764 ], [ -64.8410585148265, 18.322106341902384 ], [ -64.840932953856623, 18.321842479463726 ], [ -64.840683173022057, 18.32152832558188 ], [ -64.840528275377039, 18.321225906370103 ], [ -64.840230382395134, 18.320980819403587 ], [ -64.840001222361991, 18.32085056456566 ], [ -64.839688577223399, 18.320744115653895 ], [ -64.839299152505191, 18.320643028543429 ], [ -64.838986004452238, 18.320597766244532 ], [ -64.838679898510975, 18.320535237216802 ], [ -64.839022383239126, 18.319545333976521 ], [ -64.839110728541016, 18.319553046640806 ], [ -64.839177448522321, 18.319497389467301 ], [ -64.839266127790836, 18.319470064449831 ], [ -64.839354808369023, 18.319435530992166 ], [ -64.839443322618706, 18.319429328380863 ], [ -64.839531666610924, 18.319429998933401 ], [ -64.839620013222486, 18.319430669485996 ], [ -64.839708358524376, 18.319438548478786 ], [ -64.839803744628341, 18.319467383549238 ], [ -64.839906337862772, 18.319524546846651 ], [ -64.840060901541221, 18.319532928753858 ], [ -64.840149245533439, 18.319540640108471 ], [ -64.840237590835329, 18.319541310661066 ], [ -64.840325768499099, 18.319563272567564 ], [ -64.840413778524692, 18.319606186622764 ], [ -64.840502123826582, 18.319613897977376 ], [ -64.840590636766592, 18.319600654563999 ], [ -64.84067194257608, 18.319559081613988 ], [ -64.840760621844595, 18.319531587648669 ], [ -64.840834717904272, 18.319482972586911 ], [ -64.840987268615322, 18.319474590679761 ], [ -64.84114199862222, 18.319513818005419 ], [ -64.841282311748728, 18.319570144421789 ], [ -64.841396977548925, 18.319671062584518 ], [ -64.841500408974071, 18.319802993803819 ], [ -64.841614570550121, 18.319948671350971 ], [ -64.841732420165386, 18.320097870608777 ], [ -64.841799810699285, 18.320229465242164 ], [ -64.841816406875523, 18.320384698163537 ], [ -64.84181506577039, 18.320524508375627 ], [ -64.841814059941498, 18.320626767643432 ], [ -64.841800648890001, 18.32071695696493 ], [ -64.841812552507861, 18.320801278951365 ], [ -64.841855969477479, 18.320873866267675 ], [ -64.841924701116568, 18.320934551275855 ], [ -64.842012878780281, 18.320935221828393 ], [ -64.842126537441914, 18.320912087764555 ], [ -64.842208680132501, 18.320882751089357 ], [ -64.842303395683814, 18.320847379440977 ], [ -64.842373133151739, 18.320793902872992 ], [ -64.842449240869144, 18.32075232861331 ], [ -64.842537250894736, 18.320771104085452 ], [ -64.842618723032729, 18.320807984477085 ], [ -64.842712768031504, 18.320862802150202 ], [ -64.842768759171577, 18.320929522131507 ], [ -64.842812177450867, 18.321002109447875 ], [ -64.842868336229117, 18.321068661791003 ], [ -64.842930697618669, 18.321129346799182 ], [ -64.843017701815427, 18.321268486458678 ], [ -64.8430736929555, 18.321335038801863 ], [ -64.843136221983229, 18.321401758783168 ], [ -64.843217526483102, 18.321450541483046 ], [ -64.843286928674672, 18.321505191517986 ], [ -64.843286928674672, 18.32151072357675 ], [ -64.843320121027205, 18.321592195714743 ], [ -64.843336381927145, 18.321673500214558 ], [ -64.843346943130257, 18.321760169135018 ], [ -64.84336270111578, 18.321900985176001 ], [ -64.843373262318835, 18.321987654096461 ], [ -64.84337242412812, 18.322074323016864 ], [ -64.84336605387864, 18.322160824299203 ], [ -64.84335951599104, 18.322247325581486 ], [ -64.843375106338442, 18.322409766943053 ], [ -64.843379967844612, 18.322496435863457 ], [ -64.843379129653897, 18.322583104783916 ], [ -64.843360018905457, 18.322815618889649 ], [ -64.843370580108569, 18.322902287810109 ], [ -64.843482897665012, 18.323022316721222 ], [ -64.84352178971443, 18.32309842443857 ], [ -64.843600747280277, 18.32313698121169 ], [ -64.843719602724377, 18.323148715881757 ], [ -64.843793866422118, 18.323100603734474 ], [ -64.84383979927361, 18.323025334207784 ], [ -64.84394759060018, 18.323015275919147 ], [ -64.84403275077733, 18.322999853209922 ], [ -64.844259565186178, 18.322974707488299 ], [ -64.844350257422093, 18.322975378040894 ], [ -64.844440949658008, 18.322976216231609 ], [ -64.844621998853484, 18.323010079136679 ], [ -64.844706656116216, 18.323048635909799 ], [ -64.844781422728431, 18.323091718912849 ], [ -64.844773040821224, 18.323174699794095 ], [ -64.844795001418106, 18.323257848313517 ], [ -64.844835905125251, 18.323337644070079 ], [ -64.844914862691098, 18.323374524461769 ], [ -64.844990132217731, 18.323418444345805 ], [ -64.845080656815469, 18.323433533088462 ], [ -64.845167661012226, 18.323437890370485 ], [ -64.845254497570807, 18.323453146751262 ], [ -64.845341334129387, 18.32346471378321 ], [ -64.845428169378351, 18.323465384335805 ], [ -64.845519198200179, 18.323448117606972 ], [ -64.845610058074215, 18.323427162838982 ], [ -64.845693374231814, 18.323402520031777 ], [ -64.845769481949162, 18.323359939943202 ], [ -64.845860341823254, 18.323331776735017 ], [ -64.845988920279694, 18.323296237448517 ], [ -64.84611666054542, 18.323342337938129 ], [ -64.846197294492697, 18.323375195014307 ], [ -64.846277928439918, 18.323414589978142 ], [ -64.846351689223297, 18.323460187553337 ], [ -64.846425450006677, 18.323505952766652 ], [ -64.846492337626103, 18.323564458478927 ], [ -64.846566098409482, 18.323616593941665 ], [ -64.846639859192805, 18.32366235915498 ], [ -64.846713619976185, 18.323707955420502 ], [ -64.846780507595668, 18.32376663008057 ], [ -64.846847395215093, 18.323825134483172 ], [ -64.846854268378991, 18.323825134483172 ], [ -64.846907577308798, 18.323896382004023 ], [ -64.846960886238605, 18.323967795853378 ], [ -64.847020899384461, 18.324032670505403 ], [ -64.847074209623941, 18.32410391802631 ], [ -64.847141097243366, 18.324168961626185 ], [ -64.847207983553176, 18.324227467338403 ], [ -64.847268165646881, 18.324292343300158 ], [ -64.847301190361236, 18.324369958451143 ], [ -64.847313932169868, 18.324453777523161 ], [ -64.847340082410653, 18.324537765542971 ], [ -64.847359528435334, 18.324621752253108 ], [ -64.847406133149036, 18.324692998464286 ], [ -64.847452736553066, 18.324764243365848 ], [ -64.847506045482874, 18.324835489577026 ], [ -64.847552647577231, 18.324906737097933 ], [ -64.847592379127036, 18.324984353558591 ], [ -64.847666138600744, 18.325036489021386 ], [ -64.847746772548021, 18.325069346097564 ], [ -64.847834448606989, 18.325070016650159 ], [ -64.847915585468684, 18.325038499369441 ], [ -64.847996888658827, 18.325006983398339 ], [ -64.848078194468371, 18.324975467427294 ], [ -64.848152793442409, 18.324931044628784 ], [ -64.848220685581055, 18.324873543435729 ], [ -64.848282042451444, 18.324809674612538 ], [ -64.848329819322487, 18.324739266592076 ], [ -64.848386648653332, 18.324658966611423 ], [ -64.84845923465997, 18.324598618189214 ], [ -64.848527295746464, 18.324541118305831 ], [ -64.848595190504454, 18.324483786060625 ], [ -64.848669789478549, 18.324439194314266 ], [ -64.848737681617195, 18.32438186206906 ], [ -64.848799038487527, 18.324317991936198 ], [ -64.848860392738573, 18.324253954165158 ], [ -64.848915042773513, 18.324177175895215 ], [ -64.84897623069611, 18.32411330445268 ], [ -64.849050829670148, 18.32406871401605 ], [ -64.849138673367293, 18.324063014319165 ], [ -64.849226346806915, 18.3240509443728 ], [ -64.84931419050406, 18.324032336538778 ], [ -64.849402200529653, 18.32400718950754 ], [ -64.849490041607453, 18.323988582983247 ], [ -64.84955793505577, 18.323931249428313 ], [ -64.849632534029865, 18.323886826629803 ], [ -64.849700596425976, 18.323829325436748 ], [ -64.849781731977998, 18.323797809465702 ], [ -64.849869574365471, 18.323785573190833 ], [ -64.849934617965346, 18.323707621453877 ], [ -64.850021454523926, 18.32371198004563 ], [ -64.850108458720683, 18.323712818236345 ], [ -64.850199150956541, 18.323706280348745 ], [ -64.850286322791476, 18.323692534020893 ], [ -64.850324209012001, 18.32367979352199 ], [ -64.850664682082481, 18.323719188485825 ], [ -64.851048741070372, 18.323707621453877 ], [ -64.85149415561898, 18.32370410105284 ], [ -64.85195532815311, 18.323671076338485 ], [ -64.852392863708928, 18.323696724974525 ], [ -64.852814808917401, 18.323751542647585 ], [ -64.853128627522949, 18.323864195480382 ], [ -64.853249662262954, 18.324077934113973 ], [ -64.853286542654644, 18.32424691336314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_224", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.992851982105606, 18.365159834048654 ], [ -64.992770173381643, 18.365191014743459 ], [ -64.992603708704678, 18.365251196837164 ], [ -64.9925390003811, 18.365312049483407 ], [ -64.992442105533883, 18.365382792780224 ], [ -64.992372034099333, 18.365433419499709 ], [ -64.99225854307582, 18.365575576645824 ], [ -64.992134155573012, 18.36572293057435 ], [ -64.992031058114435, 18.365885707212215 ], [ -64.991987638525472, 18.36596198256774 ], [ -64.991954950397087, 18.36604345339606 ], [ -64.991905497144558, 18.366191311548732 ], [ -64.991867443285912, 18.366267754542378 ], [ -64.991775409944864, 18.366394824255508 ], [ -64.991699468555908, 18.366511668041881 ], [ -64.99167197720999, 18.36659330781805 ], [ -64.991644484554399, 18.366695399447735 ], [ -64.991640964153362, 18.366975018562243 ], [ -64.991605592504982, 18.367057162562446 ], [ -64.991586146480245, 18.366975690424511 ], [ -64.991576926382322, 18.366889524418468 ], [ -64.991577596934917, 18.366803526050603 ], [ -64.991557815633939, 18.366765136915603 ], [ -64.991512888611339, 18.366755246265143 ], [ -64.99149981152641, 18.366709481051828 ], [ -64.991400068140422, 18.366478810965646 ], [ -64.991416831954837, 18.366392142045243 ], [ -64.991536859556277, 18.366117047850935 ], [ -64.991590840348294, 18.366050998422168 ], [ -64.99176367527474, 18.365863242391242 ], [ -64.991812457974675, 18.36579199748968 ], [ -64.991947574318715, 18.365639782054927 ], [ -64.992021335102095, 18.36556535071901 ], [ -64.992082355386515, 18.365523105906732 ], [ -64.99216969354984, 18.365309199634964 ], [ -64.99225669905627, 18.365141226214689 ], [ -64.992416961121933, 18.365173077462032 ], [ -64.992502790542005, 18.365153296161054 ], [ -64.992581749417468, 18.365133850136374 ], [ -64.992676966573583, 18.365129826820919 ], [ -64.992767157204753, 18.365130497373457 ], [ -64.992851982105606, 18.365159834048654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_120", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.957260396405673, 18.310700411532423 ], [ -64.957208765167024, 18.310769981362228 ], [ -64.95713265744962, 18.310809543964183 ], [ -64.957056717370392, 18.310849106566195 ], [ -64.956980609653044, 18.310888836806328 ], [ -64.956937861926292, 18.3109607535701 ], [ -64.956962503423824, 18.311041387517321 ], [ -64.957012293262267, 18.311113974833688 ], [ -64.95705386752195, 18.311186729788176 ], [ -64.957095274143512, 18.311259317104543 ], [ -64.957119916950717, 18.311339783413644 ], [ -64.957119077450329, 18.311428296353711 ], [ -64.957135172021822, 18.311516810603393 ], [ -64.957142714428585, 18.311690147134641 ], [ -64.957133998554809, 18.311661481011981 ], [ -64.95709242429507, 18.311588726057494 ], [ -64.957051016363835, 18.311516138741126 ], [ -64.957034924411687, 18.311427625801116 ], [ -64.956976586337589, 18.311362917477538 ], [ -64.956926796499147, 18.311282115892141 ], [ -64.956885391187257, 18.311209528575773 ], [ -64.956810120350895, 18.311160745875895 ], [ -64.956726134950429, 18.31112788879966 ], [ -64.956633766333084, 18.311111124985246 ], [ -64.956541230077619, 18.311110454432651 ], [ -64.956457243367481, 18.311085643987383 ], [ -64.956381973840791, 18.31103686259712 ], [ -64.956382812031507, 18.310948515985558 ], [ -64.956458918439239, 18.310900739114516 ], [ -64.956534859828139, 18.31086117651256 ], [ -64.956619349452694, 18.310829660541458 ], [ -64.956695457170099, 18.310782052618265 ], [ -64.956779779156534, 18.3107585819684 ], [ -64.956872483050176, 18.310743326897295 ], [ -64.956965019305642, 18.31074399744989 ], [ -64.957057555561107, 18.310744668002485 ], [ -64.957150090506957, 18.31073745956229 ], [ -64.957234581441185, 18.31071399153177 ], [ -64.957260396405673, 18.310700411532423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_391", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.962580057629225, 18.370402046449726 ], [ -64.962584416220977, 18.370485193659476 ], [ -64.96261442344877, 18.370563649620522 ], [ -64.962644598314682, 18.370642270600399 ], [ -64.962664714891957, 18.370696250082744 ], [ -64.962712156486702, 18.370808064724827 ], [ -64.962761274462935, 18.370876293449385 ], [ -64.96281056007723, 18.370944689812177 ], [ -64.962866886493657, 18.371012918536792 ], [ -64.96293746215224, 18.371061030684075 ], [ -64.963000997008862, 18.371122553882969 ], [ -64.963071572667445, 18.37117753919415 ], [ -64.963142315964205, 18.371232356867267 ], [ -64.963198642380632, 18.371300585591882 ], [ -64.963262009599021, 18.37136227642884 ], [ -64.963339961335976, 18.371403515412283 ], [ -64.963432329953321, 18.3713974804391 ], [ -64.963517825406768, 18.371377699138122 ], [ -64.963596447696318, 18.371337633621692 ], [ -64.963667861545673, 18.371290694941365 ], [ -64.963718320627038, 18.371223136769345 ], [ -64.963747322025938, 18.371141833579202 ], [ -64.963769450260941, 18.371060695407834 ], [ -64.963770120813535, 18.370972350105944 ], [ -64.96377095900425, 18.370884172442175 ], [ -64.963778670358863, 18.370795994778405 ], [ -64.963793757791791, 18.370707817114692 ], [ -64.963829967630943, 18.37062651261482 ], [ -64.963823597381463, 18.370538334951107 ], [ -64.963795769449519, 18.370456527536817 ], [ -64.963839187728809, 18.370382263839019 ], [ -64.963910601578164, 18.370335326468364 ], [ -64.963975142263621, 18.370274641460242 ], [ -64.964060805355189, 18.370234574634196 ], [ -64.964153173972534, 18.370228539661014 ], [ -64.964245710228056, 18.370229211523224 ], [ -64.964345287285596, 18.370230048404267 ], [ -64.964437655902941, 18.370230718956861 ], [ -64.964544273762499, 18.370231558457249 ], [ -64.964636642379844, 18.370232227700171 ], [ -64.964729178635309, 18.370232899562382 ], [ -64.964821547252654, 18.370240441969202 ], [ -64.96490704139643, 18.370207081978549 ], [ -64.964943420183374, 18.370125946426526 ], [ -64.964958339978182, 18.370037767453141 ], [ -64.964959010530777, 18.369949589789371 ], [ -64.964938391039027, 18.369867951322931 ], [ -64.964932020789547, 18.369779604711368 ], [ -64.964939899782337, 18.369691428357271 ], [ -64.965937345429495, 18.369901310003911 ], [ -64.965938184929882, 18.370056207648986 ], [ -64.965865597613515, 18.370364495505441 ], [ -64.9657234404674, 18.370599356545199 ], [ -64.965492770381275, 18.370837905624114 ], [ -64.965302165811522, 18.370987103572247 ], [ -64.965080212908845, 18.371135964934467 ], [ -64.964763209178557, 18.371314331919677 ], [ -64.964508566837821, 18.371583391140803 ], [ -64.964285943382606, 18.37179260354452 ], [ -64.964000287985243, 18.372001145395643 ], [ -64.963620755227225, 18.372118827372731 ], [ -64.963304757325773, 18.372176662532411 ], [ -64.962989765253212, 18.372113965866561 ], [ -64.962613082343637, 18.37190022723297 ], [ -64.962393811651282, 18.371717836932305 ], [ -64.962112850121912, 18.37135422979793 ], [ -64.961999862012874, 18.3711017667531 ], [ -64.961945714892352, 18.37083857486698 ], [ -64.961896261639879, 18.370598181768514 ], [ -64.961953426246964, 18.370557948613964 ], [ -64.962017966932422, 18.370497263605841 ], [ -64.962089883696194, 18.370402715692592 ], [ -64.962154424381652, 18.370335326468364 ], [ -64.962218965067052, 18.370267934624849 ], [ -64.962269256510297, 18.370200545400621 ], [ -64.96231250715141, 18.370126112755031 ], [ -64.9623559254307, 18.370051850366906 ], [ -64.96243454772025, 18.370014299422621 ], [ -64.962474948512977, 18.370088058896329 ], [ -64.962515349305647, 18.370161652041531 ], [ -64.962560946880842, 18.370235412824911 ], [ -64.96258072818182, 18.370318728982454 ], [ -64.962580057629225, 18.370402046449726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_82", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 15.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.96243454772025, 18.370014299422621 ], [ -64.9623559254307, 18.370051850366906 ], [ -64.96231250715141, 18.370126112755031 ], [ -64.962269256510297, 18.370200545400621 ], [ -64.962218965067052, 18.370267934624849 ], [ -64.962154424381652, 18.370335326468364 ], [ -64.962089883696194, 18.370402715692592 ], [ -64.962017966932422, 18.370497263605841 ], [ -64.961953426246964, 18.370557948613964 ], [ -64.961896261639879, 18.370598181768514 ], [ -64.961809089805001, 18.370474129541947 ], [ -64.961639607641416, 18.370386622430772 ], [ -64.961399382181071, 18.370365667662782 ], [ -64.961138872505273, 18.370373379017394 ], [ -64.960968050546228, 18.370438925531687 ], [ -64.960865789968693, 18.370529114853184 ], [ -64.960851708364601, 18.370515537473182 ], [ -64.960809632500116, 18.370440435584669 ], [ -64.960781970896733, 18.370358794498884 ], [ -64.960739893722575, 18.370283861558164 ], [ -64.960683568615877, 18.370215463885756 ], [ -64.960648698572243, 18.370133825419316 ], [ -64.960606621398085, 18.370058723530803 ], [ -64.96057896241399, 18.369977082445018 ], [ -64.960558341612625, 18.369895442668849 ], [ -64.96054375840373, 18.369808270833971 ], [ -64.960586001906393, 18.369800225512734 ], [ -64.960763865977128, 18.369766865522081 ], [ -64.960851373088303, 18.369748088740266 ], [ -64.961247838608529, 18.369608950390443 ], [ -64.961335176771911, 18.369590007280181 ], [ -64.961453361663416, 18.369576259642713 ], [ -64.961540701136471, 18.369562179348236 ], [ -64.961664082810444, 18.36953854236998 ], [ -64.961751423593114, 18.369544240757193 ], [ -64.961838594118319, 18.3695546356318 ], [ -64.961925765953197, 18.369560166380836 ], [ -64.962048812350929, 18.369585647378756 ], [ -64.962130619765162, 18.369620517422391 ], [ -64.962202033614517, 18.369670138312983 ], [ -64.962273447463872, 18.369719757893961 ], [ -64.962324074183357, 18.369803410637473 ], [ -64.962389788335827, 18.369857388810203 ], [ -64.962394314565699, 18.369940538639298 ], [ -64.96243454772025, 18.370014299422621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_498", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.889626631357828, 18.358255658397695 ], [ -64.889651274164976, 18.35833645998315 ], [ -64.889692848424716, 18.358409382575758 ], [ -64.889742972229726, 18.358478280543295 ], [ -64.889780186588041, 18.358559251076485 ], [ -64.889817571203821, 18.358636196984605 ], [ -64.889812542059531, 18.358720854247338 ], [ -64.889837183557006, 18.358801654523063 ], [ -64.889900049170649, 18.358858485163523 ], [ -64.889967104428251, 18.358911457507361 ], [ -64.890000129142663, 18.358992428040608 ], [ -64.890020579686563, 18.359073229626006 ], [ -64.889973473368059, 18.359145314027899 ], [ -64.889947489455778, 18.359209687075236 ], [ -64.889958387244803, 18.359221086469006 ], [ -64.889983700604546, 18.359233324053548 ], [ -64.890025273554556, 18.359306246646156 ], [ -64.890062490532216, 18.359383192554276 ], [ -64.890087133339364, 18.359463994139674 ], [ -64.890095012332154, 18.359524511509676 ], [ -64.890086461477154, 18.359548651402406 ], [ -64.890098700371311, 18.359589052195076 ], [ -64.890102891324943, 18.359605145456896 ], [ -64.890140777545469, 18.359609502738977 ], [ -64.890140777545469, 18.359613527364104 ], [ -64.890229290485479, 18.359630457506967 ], [ -64.890313443524121, 18.359655269261964 ], [ -64.890372453460486, 18.359679912069112 ], [ -64.890393408228476, 18.359692149653654 ], [ -64.890397599182052, 18.359696340607229 ], [ -64.890401622497507, 18.359720480499959 ], [ -64.890401287221209, 18.359760881292686 ], [ -64.890401119583089, 18.359776974554507 ], [ -64.890405141588872, 18.359793066506654 ], [ -64.890404975260424, 18.359813184393602 ], [ -64.890434144297444, 18.359853751514777 ], [ -64.890450908111859, 18.359874035730229 ], [ -64.890476052523809, 18.359894487583801 ], [ -64.890475886195304, 18.359902535524384 ], [ -64.890467336649976, 18.359930697422897 ], [ -64.890462810420104, 18.359966908571664 ], [ -64.890441351427967, 18.359990879516602 ], [ -64.890428612238736, 18.360006972778422 ], [ -64.890407488522897, 18.360014851771155 ], [ -64.890377650242954, 18.360034800710309 ], [ -64.890373291651201, 18.360058940603039 ], [ -64.890394077471399, 18.360083249443619 ], [ -64.890394077471399, 18.360087271449402 ], [ -64.890415033549061, 18.360107555664797 ], [ -64.890448393539714, 18.360148291733822 ], [ -64.890473371623159, 18.360200762472857 ], [ -64.890456103584654, 18.36023295030617 ], [ -64.890396424405367, 18.360296986767537 ], [ -64.890324341313146, 18.360344763638579 ], [ -64.890319813773601, 18.360364881525527 ], [ -64.890361555671461, 18.360421709546642 ], [ -64.890411679476472, 18.360490608823852 ], [ -64.890474543780499, 18.360547605792817 ], [ -64.890550148583429, 18.360592532815417 ], [ -64.890638495194992, 18.36062136657614 ], [ -64.890710075372795, 18.360650201646592 ], [ -64.890718458589674, 18.360654392600225 ], [ -64.890735222404089, 18.360662605559583 ], [ -64.890747795264872, 18.36068272344653 ], [ -64.890751649632534, 18.360723124239257 ], [ -64.89075148330403, 18.360731169560495 ], [ -64.890675206638832, 18.360774924425755 ], [ -64.890590549376157, 18.360794370450435 ], [ -64.890505893423096, 18.360826052749985 ], [ -64.890429450429451, 18.360865615351997 ], [ -64.890390724708482, 18.360946081661098 ], [ -64.890389886517767, 18.360969887587203 ], [ -64.890402963602696, 18.3610310755098 ], [ -64.890457278361339, 18.36109695730039 ], [ -64.890523998342644, 18.361152445526045 ], [ -64.890579654206476, 18.361224528618266 ], [ -64.890624747557524, 18.36129912759236 ], [ -64.89068358854604, 18.361360650791198 ], [ -64.890756343500584, 18.361409265852956 ], [ -64.890833624684944, 18.361449163731265 ], [ -64.890919624362482, 18.361473806538413 ], [ -64.891002268657815, 18.36150297557549 ], [ -64.891050548443275, 18.361540861796016 ], [ -64.891052058496257, 18.361573215957776 ], [ -64.891040657792757, 18.361604731928878 ], [ -64.891023895288072, 18.361651502971029 ], [ -64.890982656304629, 18.361710177631096 ], [ -64.890914258632222, 18.361777063940906 ], [ -64.890863799550857, 18.361842610455199 ], [ -64.890846869407994, 18.361886028734489 ], [ -64.890852066190462, 18.361912515561244 ], [ -64.890892968587934, 18.361985605792029 ], [ -64.89095180957645, 18.362048134819759 ], [ -64.890974440725927, 18.362070263054761 ], [ -64.891003946348917, 18.362114519524766 ], [ -64.891097488433275, 18.362170845941137 ], [ -64.891169906801792, 18.362221641608471 ], [ -64.891227240356727, 18.362212755477174 ], [ -64.89132111640771, 18.362222813765811 ], [ -64.89140962934772, 18.362242093462044 ], [ -64.891480037368183, 18.362292552543352 ], [ -64.8915573185526, 18.362336807703741 ], [ -64.891625379639038, 18.362389781357251 ], [ -64.891698134593526, 18.362438228780832 ], [ -64.89177088954807, 18.362486843842589 ], [ -64.891820510438663, 18.362561442816684 ], [ -64.891888571525158, 18.362614416470194 ], [ -64.891965852709518, 18.362654314348447 ], [ -64.892047827761928, 18.362690022582797 ], [ -64.892125276584466, 18.362729919151377 ], [ -64.892211945504926, 18.362743665479229 ], [ -64.892298949701626, 18.362739977440015 ], [ -64.892385953898383, 18.362727572217409 ], [ -64.892468431865211, 18.362693374035985 ], [ -64.892559794653721, 18.362711478955532 ], [ -64.892641769706131, 18.362747019551762 ], [ -64.892719050890491, 18.362791442350272 ], [ -64.892806055087249, 18.362774678535857 ], [ -64.892897251547254, 18.362792783455404 ], [ -64.892984254434339, 18.362784736824494 ], [ -64.893070923354742, 18.362798483152289 ], [ -64.893149042729874, 18.362759926379169 ], [ -64.893213583415331, 18.362703599962799 ], [ -64.893291702790407, 18.362660684597927 ], [ -64.893368983974824, 18.362704941067932 ], [ -64.893468897618277, 18.362775516726572 ], [ -64.893555732867185, 18.362812900032679 ], [ -64.893656315753617, 18.362797644961574 ], [ -64.893740470101875, 18.362766296628649 ], [ -64.89382462445019, 18.362719022672024 ], [ -64.89389218262221, 18.362655487815459 ], [ -64.893959908432407, 18.362592120597014 ], [ -64.893994106613775, 18.362512324840509 ], [ -64.894045236247678, 18.362416771098424 ], [ -64.894112794419698, 18.362353237551531 ], [ -64.894146992601122, 18.362273440485296 ], [ -64.894197954596848, 18.362193812366911 ], [ -64.894213880220548, 18.362169001921586 ], [ -64.894216897707167, 18.362124745451581 ], [ -64.894231482225678, 18.362071436521774 ], [ -64.894230141120545, 18.362068083758913 ], [ -64.894254616289572, 18.361980911924036 ], [ -64.894271547742107, 18.361896423609096 ], [ -64.89428244422146, 18.361822661516101 ], [ -64.894363581083155, 18.361853843520521 ], [ -64.894494171197323, 18.361900948529296 ], [ -64.894569608362133, 18.361947551933326 ], [ -64.894617217594998, 18.362020306887871 ], [ -64.894733055552535, 18.362159446547366 ], [ -64.894787705587476, 18.362225663614254 ], [ -64.894821400854426, 18.362304956456342 ], [ -64.894869010087291, 18.362384250608159 ], [ -64.894909578518138, 18.362463542140574 ], [ -64.894957187751061, 18.362543002620839 ], [ -64.895059782295164, 18.362635874152602 ], [ -64.895100350726011, 18.362715166994747 ], [ -64.895107056251788, 18.362741653821502 ], [ -64.894806648697738, 18.362913316590607 ], [ -64.894571284743563, 18.363182709778357 ], [ -64.894372968819198, 18.363409859463445 ], [ -64.894034172130205, 18.363721834049443 ], [ -64.893609041796992, 18.363888634002706 ], [ -64.893040414522204, 18.363974464732451 ], [ -64.892692900649706, 18.364031964615833 ], [ -64.892062077004198, 18.364026935471543 ], [ -64.891369060916873, 18.363900871587248 ], [ -64.89086547724196, 18.363776316446263 ], [ -64.890488291417967, 18.3636225922682 ], [ -64.889925530168568, 18.36304591705283 ], [ -64.889706930028808, 18.362803177020339 ], [ -64.88939495544281, 18.362409059743811 ], [ -64.889299400391053, 18.362165816796846 ], [ -64.889226142522148, 18.361483529550753 ], [ -64.889123716925837, 18.360815994461348 ], [ -64.888995306107518, 18.360355324841635 ], [ -64.88889036462939, 18.359975121531022 ], [ -64.888772850290422, 18.359652419413521 ], [ -64.888702945184377, 18.359387551146028 ], [ -64.88863672811749, 18.358969126338593 ], [ -64.888701939355485, 18.358728733240071 ], [ -64.888736640451327, 18.358367639368225 ], [ -64.888707302466457, 18.358126409388717 ], [ -64.888709985986395, 18.357825163643895 ], [ -64.888776203053283, 18.357464237410227 ], [ -64.888969488523685, 18.357013962665121 ], [ -64.88903520398577, 18.356713387472894 ], [ -64.889308620488976, 18.356231763085191 ], [ -64.88944792909632, 18.355864300273538 ], [ -64.889540296403993, 18.35568710675534 ], [ -64.889610201510038, 18.355538746997922 ], [ -64.890289472579184, 18.355867820674575 ], [ -64.890263487357174, 18.355952310299131 ], [ -64.890220573302031, 18.356028585654656 ], [ -64.890169274720279, 18.35609664674115 ], [ -64.890109595540991, 18.356156661196678 ], [ -64.890024939587931, 18.356180298174991 ], [ -64.889965260408701, 18.356240144992398 ], [ -64.889901556604286, 18.356296136132471 ], [ -64.889862833502718, 18.356372411487996 ], [ -64.889836849590381, 18.356452877797153 ], [ -64.889815056631676, 18.356533344106253 ], [ -64.889831148583824, 18.356618169007106 ], [ -64.889851434108891, 18.356698970592504 ], [ -64.889884626461424, 18.356779772177958 ], [ -64.889900718413571, 18.356864597078811 ], [ -64.889908431077856, 18.356953277656999 ], [ -64.889916142432526, 18.357038102557851 ], [ -64.889915304241754, 18.357122759820584 ], [ -64.889901893190256, 18.357207249445139 ], [ -64.889892839420838, 18.357274137064621 ], [ -64.889897030374414, 18.357290230326441 ], [ -64.889870880133628, 18.357370696635542 ], [ -64.889857469082074, 18.357455186260097 ], [ -64.889835676123369, 18.357535652569254 ], [ -64.889792759448824, 18.357607904609324 ], [ -64.889762584582911, 18.357688370918424 ], [ -64.889736769618423, 18.357736483065764 ], [ -64.889719670527711, 18.357760622958494 ], [ -64.889685303398551, 18.357836898314019 ], [ -64.889684466517508, 18.357921555576695 ], [ -64.889666864512378, 18.358006045201307 ], [ -64.88965345346088, 18.358090534825863 ], [ -64.889631660502118, 18.35817100113502 ], [ -64.889626631357828, 18.358255658397695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1090", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 25.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.011310278936151, 18.362200182616334 ], [ -65.011314303561278, 18.362185598097824 ], [ -65.011330061546801, 18.362137988864959 ], [ -65.011353195610695, 18.362127092385549 ], [ -65.011357049978301, 18.362127260023726 ], [ -65.011437851563699, 18.362098427572619 ], [ -65.011526196865589, 18.362084513606646 ], [ -65.011560897961431, 18.362077303856836 ], [ -65.011591575741761, 18.362070263054761 ], [ -65.011607167398836, 18.362048470096056 ], [ -65.011630804377148, 18.361968003786899 ], [ -65.011643040651961, 18.361883681800464 ], [ -65.011640024475071, 18.361795671774871 ], [ -65.011625271008711, 18.361715037827651 ], [ -65.011629126686046, 18.361711349788436 ], [ -65.011633150001501, 18.361682014422911 ], [ -65.011664330696249, 18.361634571518493 ], [ -65.011707078423001, 18.361561648925885 ], [ -65.011757537504309, 18.361492414372378 ], [ -65.011792741514569, 18.36141194937295 ], [ -65.011869855060809, 18.361372217823146 ], [ -65.011954513633214, 18.3613472397397 ], [ -65.011981502064714, 18.361332656530806 ], [ -65.012042857625431, 18.361344223562753 ], [ -65.012046714612381, 18.361344223562753 ], [ -65.012127514888164, 18.361326452609831 ], [ -65.012146794584396, 18.361319245479308 ], [ -65.012189373363299, 18.361268283483525 ], [ -65.012208651749859, 18.361261073733658 ], [ -65.012254753549087, 18.361243136452288 ], [ -65.012270174948696, 18.361235929321765 ], [ -65.012331027594939, 18.361214302691508 ], [ -65.012354161658834, 18.361207261889433 ], [ -65.012438818921567, 18.36118211747754 ], [ -65.012527165533129, 18.36117541064209 ], [ -65.012615509525347, 18.361172394465143 ], [ -65.012703854827237, 18.361165856577543 ], [ -65.012773424656984, 18.361115060910265 ], [ -65.012823716100172, 18.361056722836111 ], [ -65.012831427454785, 18.361053034796953 ], [ -65.012850873479522, 18.361023865759933 ], [ -65.012900998594205, 18.361002240439348 ], [ -65.012908708639202, 18.36100240938714 ], [ -65.01293167506492, 18.361009785465512 ], [ -65.012961849930832, 18.36106141670416 ], [ -65.012965035055572, 18.361145738690595 ], [ -65.012995043593037, 18.361226541585665 ], [ -65.013059918245062, 18.361282028501648 ], [ -65.013120938529482, 18.361341204766518 ], [ -65.013193358207673, 18.361389316913858 ], [ -65.013250522814815, 18.361452013579708 ], [ -65.013303664106445, 18.361518399594388 ], [ -65.013345238366185, 18.361592160377768 ], [ -65.013413970005217, 18.361643960564265 ], [ -65.01348270164425, 18.361695759441091 ], [ -65.013543554290493, 18.361758457416613 ], [ -65.013623852961473, 18.361795839413048 ], [ -65.0137541077994, 18.361840766435648 ], [ -65.013769530508625, 18.361822493877924 ], [ -65.013839100338373, 18.361771699520318 ], [ -65.013927445640263, 18.361761305955383 ], [ -65.014019646619488, 18.361751080028569 ], [ -65.014107991921378, 18.361740686463634 ], [ -65.014188961144896, 18.361708333611546 ], [ -65.014269762730294, 18.361675979449728 ], [ -65.014358275670361, 18.361665584575121 ], [ -65.014442765294916, 18.361647814931871 ], [ -65.014531110596806, 18.361641109406094 ], [ -65.014619623536873, 18.361619819361806 ], [ -65.014696737083113, 18.361580090431403 ], [ -65.014762451235526, 18.361525606724911 ], [ -65.014846940860082, 18.361507838391333 ], [ -65.014939141839307, 18.36151588371257 ], [ -65.015019440510287, 18.361549412651016 ], [ -65.015071911249379, 18.361615796046351 ], [ -65.015152042282182, 18.361660387792654 ], [ -65.015167464991464, 18.361660555430831 ], [ -65.015236364268617, 18.361683018942131 ], [ -65.015308951584984, 18.361731298727591 ], [ -65.015393273571419, 18.361750241837854 ], [ -65.015481618873309, 18.361750912390448 ], [ -65.015558732419549, 18.361703807381673 ], [ -65.01557817844423, 18.361670948995766 ], [ -65.015578513720527, 18.361623339762843 ], [ -65.015606006376117, 18.361542873453743 ], [ -65.015641544353002, 18.361418485950878 ], [ -65.0156728939956, 18.361349083759251 ], [ -65.01569217238216, 18.361349251397428 ], [ -65.015780350045929, 18.361357130390161 ], [ -65.015864672032308, 18.361379761539638 ], [ -65.015952682057957, 18.361402392689058 ], [ -65.016037004044392, 18.361425023838478 ], [ -65.016113447038038, 18.361465927545623 ], [ -65.016197769024473, 18.3614885586951 ], [ -65.01628192337273, 18.361511189844521 ], [ -65.016370267364948, 18.361515548436273 ], [ -65.016381668068448, 18.361515548436273 ], [ -65.016454925937353, 18.361483195584128 ], [ -65.016535895160928, 18.36144715338321 ], [ -65.016620552423603, 18.361422006351916 ], [ -65.016708730087373, 18.36142267690451 ], [ -65.016793387350106, 18.361401386860223 ], [ -65.016878044612838, 18.361372554409115 ], [ -65.016959012526684, 18.361336510898468 ], [ -65.017039983059931, 18.361304156736708 ], [ -65.017132184039099, 18.361290242770735 ], [ -65.017216841301831, 18.361254200569761 ], [ -65.017275010428136, 18.361192343404298 ], [ -65.017333014535609, 18.361130317291043 ], [ -65.017387329294309, 18.361064769467021 ], [ -65.017453043446721, 18.36101028837993 ], [ -65.017496126449714, 18.360994864360975 ], [ -65.017545244425946, 18.36100358154448 ], [ -65.017596876974267, 18.36102118354961 ], [ -65.017617830432584, 18.361051862639613 ], [ -65.017636773542904, 18.361085053682473 ], [ -65.017694273426287, 18.361096454385915 ], [ -65.017751605671549, 18.361122438298253 ], [ -65.017784464057399, 18.36112931146215 ], [ -65.017812793594089, 18.361115397496235 ], [ -65.017834083638377, 18.361100811667995 ], [ -65.017849340019154, 18.361084887354025 ], [ -65.017851184038761, 18.361075330670133 ], [ -65.017898793271627, 18.361136687540522 ], [ -65.017970710035399, 18.361212793948198 ], [ -65.018042459161052, 18.361307844775865 ], [ -65.01837656067238, 18.361734986766749 ], [ -65.018524586463172, 18.362132959720611 ], [ -65.018637742210387, 18.363152367274267 ], [ -65.018464570697972, 18.363163766668094 ], [ -65.018180591682039, 18.36316158737219 ], [ -65.017770550091484, 18.363158569885627 ], [ -65.017328655943913, 18.3631855596268 ], [ -65.016950129014731, 18.363182709778357 ], [ -65.016382003344745, 18.36323870091843 ], [ -65.016003644053683, 18.363205843842195 ], [ -65.015435350745577, 18.363261834982325 ], [ -65.015025307845349, 18.363258817495705 ], [ -65.014489368698946, 18.363224786952514 ], [ -65.014078990522421, 18.363251776693687 ], [ -65.013605412765628, 18.363308606024475 ], [ -65.013226215283908, 18.36339611313565 ], [ -65.012846850164067, 18.363483620246825 ], [ -65.012151654780894, 18.3636291301558 ], [ -65.011267029604653, 18.363803306187435 ], [ -65.010833852640587, 18.363876899332638 ], [ -65.01025650556295, 18.363946469162386 ], [ -65.009607075393092, 18.363980164429336 ], [ -65.009607244340941, 18.363966585739661 ], [ -65.009607913583807, 18.363870864359455 ], [ -65.009608753084194, 18.36377514297925 ], [ -65.009609591274909, 18.363679253960868 ], [ -65.009624511069774, 18.363597446546578 ], [ -65.009625349260489, 18.363501557528252 ], [ -65.009626187451204, 18.363392257458372 ], [ -65.009641273574459, 18.363310282405905 ], [ -65.009656193369267, 18.363228307353495 ], [ -65.009657031560039, 18.36313258597329 ], [ -65.009686369544909, 18.36305061092088 ], [ -65.009730123100496, 18.362955224816915 ], [ -65.009759292137517, 18.362873417402682 ], [ -65.009788627503042, 18.362791609988392 ], [ -65.009860713214664, 18.362737296539422 ], [ -65.009861551405379, 18.362721704882347 ], [ -65.009895414310449, 18.362731930809105 ], [ -65.009935144550582, 18.36277283451625 ], [ -65.010019466537017, 18.362798986066707 ], [ -65.010103619575602, 18.362825306565014 ], [ -65.010187941562037, 18.36285162444392 ], [ -65.010272097220025, 18.362877943632554 ], [ -65.010360442521915, 18.362874926145935 ], [ -65.010448786514132, 18.362868220620214 ], [ -65.010537131816022, 18.362876268560797 ], [ -65.010625478427585, 18.362865873686189 ], [ -65.010713822419802, 18.362851792082097 ], [ -65.010798479682535, 18.362826813998652 ], [ -65.010817759378767, 18.362826981636772 ], [ -65.010864193834948, 18.362772331601832 ], [ -65.01092990929709, 18.362717849205012 ], [ -65.010988078423395, 18.362655990729877 ], [ -65.011046082530868, 18.362594133564414 ], [ -65.011104251657173, 18.362532273779607 ], [ -65.011177509526078, 18.362485167461159 ], [ -65.011239369310886, 18.362426829387061 ], [ -65.011301395424198, 18.362364970911926 ], [ -65.011340118525766, 18.362314008916144 ], [ -65.011328886770116, 18.362280985511461 ], [ -65.011321679639593, 18.362233208640419 ], [ -65.011310278936151, 18.362200182616334 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_632", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 22.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.867197320862545, 18.345817916561145 ], [ -64.86716463142443, 18.345823112033941 ], [ -64.866978888360904, 18.345887149804923 ], [ -64.866896242755899, 18.345925706578043 ], [ -64.86677906369323, 18.345990247263501 ], [ -64.866703123614002, 18.346042047449998 ], [ -64.866620310370877, 18.346093679998319 ], [ -64.866482511816514, 18.346171128820856 ], [ -64.866413444901184, 18.346223096645474 ], [ -64.866344210347734, 18.346294510494829 ], [ -64.866205742550449, 18.346444043719316 ], [ -64.866171207783111, 18.346476397881077 ], [ -64.865816485470418, 18.346404481117304 ], [ -64.865596042620723, 18.346372462231784 ], [ -64.86521902443485, 18.346303395316454 ], [ -64.864745614316234, 18.346245057242356 ], [ -64.864493486547644, 18.346212870718716 ], [ -64.864033318532677, 18.346194598160992 ], [ -64.863766941521874, 18.346212200166121 ], [ -64.864056118629946, 18.3450777928457 ], [ -64.86412786644587, 18.34512758137447 ], [ -64.864194252460607, 18.34518223140941 ], [ -64.864245214456389, 18.34525146596286 ], [ -64.864306402378929, 18.345310977503971 ], [ -64.864383348287049, 18.345355904526571 ], [ -64.864460126556992, 18.345400831549171 ], [ -64.864537072465055, 18.345440729427423 ], [ -64.86462457957623, 18.345451290630535 ], [ -64.864711917739612, 18.345471742484108 ], [ -64.864719461456048, 18.345465204596451 ], [ -64.864804621633198, 18.34547945383872 ], [ -64.8648896154819, 18.345500577554503 ], [ -64.864981982789573, 18.345514825487101 ], [ -64.865074183768797, 18.345522369203593 ], [ -64.865173594497833, 18.345523207394308 ], [ -64.865265961805505, 18.34553762558437 ], [ -64.865343579575836, 18.345585736422038 ], [ -64.865428738443313, 18.345606691190028 ], [ -64.865527981534228, 18.345621108070418 ], [ -64.865620348841901, 18.345628651786853 ], [ -64.865712549821126, 18.345642901029123 ], [ -64.865804918438471, 18.345650444745615 ], [ -64.865897119417696, 18.345664861626005 ], [ -64.865989320396864, 18.345685984032116 ], [ -64.866074312935893, 18.345706938800106 ], [ -64.866173722355256, 18.345721355680496 ], [ -64.866265924644154, 18.345735772560886 ], [ -64.866358125623321, 18.345750021803156 ], [ -64.866450326602546, 18.345764271045368 ], [ -64.866542693910219, 18.345771814761861 ], [ -64.866642104639254, 18.345772652952576 ], [ -64.866734471946927, 18.345780196669068 ], [ -64.866826672926152, 18.345794613549458 ], [ -64.866919041543497, 18.345795284101996 ], [ -64.867011242522722, 18.345802827818488 ], [ -64.867110651942085, 18.345810371534981 ], [ -64.867133450729682, 18.345810706811278 ], [ -64.867197320862545, 18.345817916561145 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1168", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 16.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.031546882507882, 18.356761667258411 ], [ -65.03157605154496, 18.356674998337951 ], [ -65.03159365355009, 18.356593693838079 ], [ -65.03162282258711, 18.356512556976384 ], [ -65.031651823986067, 18.356425888055981 ], [ -65.031686692719973, 18.356350115614873 ], [ -65.03168199885198, 18.356214328718238 ], [ -65.031682669404518, 18.356127492159658 ], [ -65.0316662408664, 18.356045852383488 ], [ -65.031678310812822, 18.355959183463085 ], [ -65.031707479849842, 18.355877878963213 ], [ -65.031730781551857, 18.355796742101518 ], [ -65.03175425089205, 18.355715437601702 ], [ -65.031766320838415, 18.355628601043065 ], [ -65.03177839078478, 18.355541932122662 ], [ -65.031836058306283, 18.355443863808375 ], [ -65.031891211255697, 18.355444199084673 ], [ -65.031983244596745, 18.355439337578503 ], [ -65.032058346485258, 18.355395919299212 ], [ -65.03212221661812, 18.355336072481805 ], [ -65.032203018203518, 18.35529818626128 ], [ -65.032260015172483, 18.355364403328167 ], [ -65.032322879476453, 18.355425423612587 ], [ -65.032414912817558, 18.355409497988887 ], [ -65.032495882041076, 18.355371611768362 ], [ -65.032565284232703, 18.355317297009663 ], [ -65.032640386121216, 18.355273878730372 ], [ -65.032727055041676, 18.35524705662732 ], [ -65.032813556323958, 18.355220234524324 ], [ -65.032894357909356, 18.355182348303742 ], [ -65.032980859191696, 18.355149994141982 ], [ -65.033067360473979, 18.355139600577047 ], [ -65.033148162059376, 18.35510724641523 ], [ -65.033223263947889, 18.35506382813594 ], [ -65.033315464927114, 18.355042538091652 ], [ -65.033396266512511, 18.355004651871127 ], [ -65.033488467491736, 18.355005322423722 ], [ -65.033580333194607, 18.355011525035025 ], [ -65.033655601411624, 18.35496257469697 ], [ -65.033736404306694, 18.3549193240558 ], [ -65.033822905588977, 18.354897866373392 ], [ -65.033909406871317, 18.354876576329104 ], [ -65.034001440212364, 18.354882778940407 ], [ -65.034081738883344, 18.354921838628002 ], [ -65.034167737251209, 18.354944302139302 ], [ -65.0342540695857, 18.354956036809369 ], [ -65.034340572177655, 18.354955533894952 ], [ -65.034344929459735, 18.354955533894952 ], [ -65.034351803933305, 18.354967771479437 ], [ -65.034380133469995, 18.355011860311322 ], [ -65.034391366535317, 18.355044885025677 ], [ -65.034436796472335, 18.355116634151329 ], [ -65.034499659466633, 18.355177486797572 ], [ -65.034562357442155, 18.355243871502637 ], [ -65.03462522043651, 18.355304891787 ], [ -65.034688086050153, 18.3553657444333 ], [ -65.034745083019118, 18.355432129138308 ], [ -65.034807778375296, 18.355492981784607 ], [ -65.034876342376208, 18.355548470010262 ], [ -65.034939206680235, 18.355609322656505 ], [ -65.03501933902271, 18.355659278823452 ], [ -65.03501933902271, 18.355664810882217 ], [ -65.034767377582625, 18.355985670289783 ], [ -65.034666125453327, 18.356053731376278 ], [ -65.03444417255065, 18.356202761686291 ], [ -65.034285419228297, 18.356321952406688 ], [ -65.034094982296722, 18.356471150354821 ], [ -65.033903539536254, 18.356740880128541 ], [ -65.033741433450984, 18.357281848419234 ], [ -65.033708241098509, 18.357492569566205 ], [ -65.033797089314817, 18.358216094486068 ], [ -65.033889290293985, 18.358517844454923 ], [ -65.034013845435027, 18.358729739068963 ], [ -65.034232613212907, 18.358972142515483 ], [ -65.034420031348247, 18.359214548581406 ], [ -65.034481891133055, 18.359365590549146 ], [ -65.034552131515397, 18.359519482365329 ], [ -65.03457241442112, 18.359878395631654 ], [ -65.034469150634095, 18.360325486561692 ], [ -65.034346439512717, 18.360532015445415 ], [ -65.03426094405927, 18.36047669485788 ], [ -65.034104033446795, 18.360393378700337 ], [ -65.033761716356764, 18.360199421367724 ], [ -65.033419400576406, 18.360019210362907 ], [ -65.033120166489311, 18.359811843288469 ], [ -65.032949678496891, 18.359632638112544 ], [ -65.032695036156156, 18.359434991431101 ], [ -65.032675590131475, 18.359353688240901 ], [ -65.032675757769596, 18.359342121208954 ], [ -65.032651282600568, 18.359270204445181 ], [ -65.032596632565628, 18.359202981549458 ], [ -65.032537121024518, 18.359140283573936 ], [ -65.032502755204973, 18.359063506613666 ], [ -65.032468221747308, 18.358986895981843 ], [ -65.032428826783473, 18.358910116402228 ], [ -65.032384402675348, 18.358838033309951 ], [ -65.032339810929045, 18.358765947598386 ], [ -65.032295386820863, 18.358689170638115 ], [ -65.032290525314693, 18.35868045345461 ], [ -65.032250962712681, 18.358618092065058 ], [ -65.032206370966378, 18.358546006353436 ], [ -65.032151888569615, 18.358478617129208 ], [ -65.032087180246037, 18.358420781969528 ], [ -65.032032697849218, 18.358353559073805 ], [ -65.03196815716376, 18.358295723914125 ], [ -65.031898419695892, 18.358242582622495 ], [ -65.031838908154725, 18.358180053594765 ], [ -65.031794316408423, 18.358107969192872 ], [ -65.031759950588935, 18.358031190922873 ], [ -65.031710497336462, 18.35795910652098 ], [ -65.031711167889, 18.357873108153115 ], [ -65.031711838441595, 18.357786942147072 ], [ -65.031722567282827, 18.357701111417384 ], [ -65.031748215918867, 18.357619974555689 ], [ -65.031783922843488, 18.357543699200164 ], [ -65.031804542335237, 18.357462562338469 ], [ -65.031830190971277, 18.357311688008849 ], [ -65.031847960614527, 18.357251338277024 ], [ -65.03187159759284, 18.357169195586437 ], [ -65.031919542102003, 18.357073809482529 ], [ -65.031909148537068, 18.356970544385831 ], [ -65.03193278551538, 18.356856718086021 ], [ -65.031978718366815, 18.356786477703679 ], [ -65.031990788313237, 18.356699808783276 ], [ -65.031853325035115, 18.356823525733546 ], [ -65.03180739218368, 18.356893766115832 ], [ -65.031749892300297, 18.356958642077586 ], [ -65.031658864788085, 18.356968700366224 ], [ -65.031585439281002, 18.356924779172516 ], [ -65.031563311046, 18.356843139396346 ], [ -65.031546882507882, 18.356761667258411 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_271", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.937141140844403, 18.330367715967157 ], [ -64.937091855230051, 18.330295631565264 ], [ -64.937034020070371, 18.330231593794224 ], [ -64.93696780300354, 18.330175435016031 ], [ -64.93690192121295, 18.330095303983171 ], [ -64.936835704146063, 18.330039145204921 ], [ -64.93677820426268, 18.329959181810239 ], [ -64.936728751010151, 18.329887097408346 ], [ -64.936679465395855, 18.329815180644573 ], [ -64.936630012143382, 18.329743096242623 ], [ -64.93663872932683, 18.329711412633401 ], [ -64.936631017972218, 18.329628599390276 ], [ -64.9366484536489, 18.329541259917278 ], [ -64.936657504798973, 18.329453752806103 ], [ -64.936708131518458, 18.329382674233045 ], [ -64.936758758237943, 18.329311428021811 ], [ -64.936817599226515, 18.329248228441543 ], [ -64.936851462131585, 18.329168935599455 ], [ -64.936818940331648, 18.329089139842893 ], [ -64.936744341357553, 18.329040860057432 ], [ -64.936661360476307, 18.329000459264705 ], [ -64.93659531104754, 18.328944300486455 ], [ -64.936529093980653, 18.328887974070085 ], [ -64.936471258820973, 18.328823937608774 ], [ -64.93641359129947, 18.328759898528062 ], [ -64.936364138046997, 18.32868781412617 ], [ -64.93633161624706, 18.328608018369607 ], [ -64.936290544901738, 18.328528222613045 ], [ -64.936266237370887, 18.328448426856539 ], [ -64.936250479385365, 18.328360752107187 ], [ -64.936234553761665, 18.328273244996069 ], [ -64.936235225623932, 18.328185737884894 ], [ -64.936210916783352, 18.328105942128332 ], [ -64.936186609252502, 18.328026146371769 ], [ -64.93617906553601, 18.327938640570267 ], [ -64.936179736088548, 18.327851133459149 ], [ -64.936197170455557, 18.327763792676421 ], [ -64.936239582905955, 18.327684499834334 ], [ -64.936257017272965, 18.327597160361279 ], [ -64.936282665909005, 18.327517867519191 ], [ -64.936316528814075, 18.327438574677046 ], [ -64.936333963181028, 18.327351236513721 ], [ -64.9363348013718, 18.327263729402546 ], [ -64.936343853831545, 18.327176220981698 ], [ -64.93634452438414, 18.327088713870523 ], [ -64.93632859876044, 18.327001206759348 ], [ -64.936329436951155, 18.32691369964823 ], [ -64.936313512637184, 18.326826024898878 ], [ -64.936255676167832, 18.326777912751538 ], [ -64.936205887639062, 18.326745558589778 ], [ -64.936139502933997, 18.326729131361333 ], [ -64.936072616624244, 18.326752599391796 ], [ -64.935989131518852, 18.32677573345569 ], [ -64.935914532544757, 18.32672745367023 ], [ -64.935848483116047, 18.32667129489198 ], [ -64.93576483168215, 18.326694430265547 ], [ -64.935681347886486, 18.32671773065789 ], [ -64.935589817459856, 18.326709013474385 ], [ -64.935490240402316, 18.326676325346 ], [ -64.935407091882894, 18.3266518488673 ], [ -64.935332492908799, 18.326603570391455 ], [ -64.935249512027497, 18.326579093912756 ], [ -64.935166532455924, 18.326530646489175 ], [ -64.935092267448454, 18.326466442389687 ], [ -64.935083885541246, 18.326466442389687 ], [ -64.935044659525204, 18.326383292560593 ], [ -64.935055554694884, 18.326296120725715 ], [ -64.935086735389689, 18.32621867321285 ], [ -64.935097631869041, 18.326131501377972 ], [ -64.935088076494822, 18.326044160595302 ], [ -64.935088914685593, 18.32595682243192 ], [ -64.935069301022736, 18.325869481649249 ], [ -64.935029404454099, 18.325791531221967 ], [ -64.934999563554811, 18.325713747123132 ], [ -64.935000401745526, 18.325626407650077 ], [ -64.934991014009483, 18.325539068177079 ], [ -64.935022027066111, 18.325461785683046 ], [ -64.935043149472278, 18.325374615157841 ], [ -64.935054045951631, 18.325287443322907 ], [ -64.935054716504169, 18.325200102540236 ], [ -64.935055051780466, 18.325161379438669 ], [ -64.934934017040518, 18.325080745491391 ], [ -64.934877522985971, 18.325013690233789 ], [ -64.934814827629793, 18.324952837587489 ], [ -64.934739221517191, 18.324909754584496 ], [ -64.934657246464781, 18.324872874192806 ], [ -64.934568733524713, 18.324848062437809 ], [ -64.934486758472303, 18.324811183355848 ], [ -64.934449376475868, 18.324732224480329 ], [ -64.934481730637685, 18.324653771138628 ], [ -64.934514083489773, 18.324575484125376 ], [ -64.934502182491258, 18.324490659224523 ], [ -64.934458427625998, 18.324417736631858 ], [ -64.934382822823011, 18.324374821266986 ], [ -64.934300847770601, 18.324343974538806 ], [ -64.934218706389743, 18.324313130430028 ], [ -64.934143101586812, 18.324270215065155 ], [ -64.934086773860713, 18.32420315849788 ], [ -64.934011001419663, 18.32416024444268 ], [ -64.933941934504332, 18.324105259131443 ], [ -64.93393003350576, 18.32402060186871 ], [ -64.933962218719728, 18.323942147217338 ], [ -64.933956686660963, 18.323857489954605 ], [ -64.933912934415105, 18.323784567361997 ], [ -64.933856606689005, 18.323717678432843 ], [ -64.93381285444309, 18.32364475714985 ], [ -64.933775637465487, 18.32356579958406 ], [ -64.93383313734887, 18.323499750155293 ], [ -64.93386549151063, 18.323415260530737 ], [ -64.933847220262635, 18.323330603268005 ], [ -64.933803465397375, 18.323257679365724 ], [ -64.93377899153802, 18.323172688136367 ], [ -64.933722497483473, 18.323105800516942 ], [ -64.933678742618213, 18.323032877924277 ], [ -64.933622417511515, 18.322965990304795 ], [ -64.933559719535992, 18.322898935047249 ], [ -64.933453101676434, 18.322771027143347 ], [ -64.933371126624024, 18.322734146751657 ], [ -64.934937203474931, 18.321428413248043 ], [ -64.935090255790726, 18.321637625651761 ], [ -64.935417485447829, 18.321998885852111 ], [ -64.935568695053689, 18.322236596740254 ], [ -64.935816631868647, 18.322626355425086 ], [ -64.936055851500157, 18.323007061650117 ], [ -64.936216448842117, 18.323304619355724 ], [ -64.936406215221098, 18.323745340036282 ], [ -64.936667730725731, 18.324195951367358 ], [ -64.93682162254197, 18.324652596361943 ], [ -64.937024967610625, 18.325165904358869 ], [ -64.937158742849533, 18.325483915227721 ], [ -64.937301905824484, 18.32591943781614 ], [ -64.937454624173711, 18.326554786381905 ], [ -64.937574820722944, 18.327248474331441 ], [ -64.937757211023609, 18.328033188483516 ], [ -64.937941110067584, 18.3286670269963 ], [ -64.938124673835262, 18.329331209322845 ], [ -64.938263645856637, 18.329866813192893 ], [ -64.93842407556042, 18.330427395146444 ], [ -64.938495657047952, 18.330843975934272 ], [ -64.938575620442634, 18.331145724593512 ], [ -64.938660277705367, 18.33143070943828 ], [ -64.93875968712473, 18.331577392814268 ], [ -64.938969570081042, 18.331758944924218 ], [ -64.939269307082498, 18.33193043874553 ], [ -64.939896272431383, 18.332138476372563 ], [ -64.940275974137194, 18.332239563483085 ], [ -64.940682496636441, 18.332307456931403 ], [ -64.941049959448037, 18.332352383954003 ], [ -64.941473747366445, 18.332339140540626 ], [ -64.941827800436215, 18.332350372296276 ], [ -64.94222979539586, 18.332375181431928 ], [ -64.942626762520831, 18.332399490272451 ], [ -64.943078044404501, 18.332431844434268 ], [ -64.943459253543949, 18.33250526994135 ], [ -64.943899806586387, 18.332629154529741 ], [ -64.94415159907868, 18.332691348281173 ], [ -64.94463691150554, 18.332777849563456 ], [ -64.944996830600701, 18.332823613467099 ], [ -64.945229513654283, 18.332854124918981 ], [ -64.945394635916443, 18.332855466024114 ], [ -64.945702251910689, 18.332886479080798 ], [ -64.946010035543054, 18.332903242895156 ], [ -64.946355202481584, 18.332934591228081 ], [ -64.946715624491162, 18.332944480568926 ], [ -64.946970769746315, 18.332960910416716 ], [ -64.94742138107739, 18.332950013937364 ], [ -64.947932342140291, 18.332918161380348 ], [ -64.948308186859151, 18.332863680293201 ], [ -64.948579425376124, 18.332758235900599 ], [ -64.948843958367377, 18.332566625502011 ], [ -64.949078316492717, 18.332381888267321 ], [ -64.949282498442415, 18.332204191834705 ], [ -64.9495549104264, 18.33196245763105 ], [ -64.949865208630968, 18.3316779757007 ], [ -64.950168298395283, 18.331394164322887 ], [ -64.951853899933212, 18.332900895961188 ], [ -64.951856246867237, 18.332917155551456 ], [ -64.951858258524965, 18.332933585399246 ], [ -64.951859599630097, 18.332949846299186 ], [ -64.951860271492365, 18.332966273527632 ], [ -64.951860437820869, 18.332982703375421 ], [ -64.951860102544572, 18.332999131913539 ], [ -64.95185909671568, 18.333015560451656 ], [ -64.95185758797237, 18.333031988989774 ], [ -64.951855408676522, 18.333048248580042 ], [ -64.9518527264662, 18.333064509480039 ], [ -64.951849542651132, 18.333080604051531 ], [ -64.951845685664182, 18.333096697313351 ], [ -64.951841328382102, 18.333112622937051 ], [ -64.951836297928082, 18.333128379612901 ], [ -64.951830933507495, 18.333143971269976 ], [ -64.951824898534312, 18.333159393979201 ], [ -64.951818193008535, 18.333174481412186 ], [ -64.951811153516189, 18.333189567535442 ], [ -64.951803608490025, 18.333204153363681 ], [ -64.951795395530667, 18.333218736572519 ], [ -64.95178684467561, 18.333232987124404 ], [ -64.951777624577687, 18.333246901090376 ], [ -64.951768070513197, 18.333260478470379 ], [ -64.951758010914887, 18.333273889521877 ], [ -64.951747449711775, 18.333286798968629 ], [ -64.951736385594302, 18.333299370519796 ], [ -64.951724987510147, 18.333311777052131 ], [ -64.951713083892287, 18.333323679360319 ], [ -64.951700847617417, 18.333335246392267 ], [ -64.951688105808785, 18.333346310509796 ], [ -64.951675031343257, 18.333357039350972 ], [ -64.951661618982087, 18.333367265277786 ], [ -64.951647872654235, 18.333377154618574 ], [ -64.951633792359814, 18.333386542354674 ], [ -64.951619375479424, 18.333395428485971 ], [ -64.951604623322794, 18.333403978031299 ], [ -64.951589534580137, 18.333412023352537 ], [ -64.951574279509032, 18.333419568378702 ], [ -64.951558690471302, 18.333426609180776 ], [ -64.951542932485779, 18.333432979430199 ], [ -64.951526837914287, 18.333439014403382 ], [ -64.951488616417464, 18.333423087470067 ], [ -64.951372275545509, 18.333558371452284 ], [ -64.951290469440892, 18.333515791363709 ], [ -64.951395912523822, 18.333354189502529 ], [ -64.951352326606354, 18.333327701366102 ], [ -64.94978994041395, 18.335432064297436 ], [ -64.94968851933686, 18.335435415750624 ], [ -64.949602688607115, 18.335453689618021 ], [ -64.949516856567698, 18.335484367398351 ], [ -64.94943119347613, 18.335508842567378 ], [ -64.949345364056057, 18.335539686676213 ], [ -64.949259533326369, 18.335564161845241 ], [ -64.949173870234802, 18.335588638323941 ], [ -64.949088207143177, 18.335600540632129 ], [ -64.949002376413489, 18.335631218412516 ], [ -64.948916713321864, 18.335649489660511 ], [ -64.948830882592176, 18.335673964829539 ], [ -64.948745219500552, 18.335692069749086 ], [ -64.948659556408984, 18.335710343616483 ], [ -64.948573724369567, 18.335728448536031 ], [ -64.948481523390399, 18.335733980594739 ], [ -64.948395861608446, 18.335745881593311 ], [ -64.948310366155056, 18.335757783901556 ], [ -64.948282538223111, 18.335770190433891 ], [ -64.948210118544921, 18.335775888821104 ], [ -64.948124455453353, 18.335794161378772 ], [ -64.948032254474128, 18.335799693437536 ], [ -64.947946591382561, 18.335811595745781 ], [ -64.947854390403336, 18.335817127804489 ], [ -64.947768727311768, 18.335829031422406 ], [ -64.947676526332543, 18.335828359560139 ], [ -64.947584492991496, 18.335833891618904 ], [ -64.947492292012328, 18.335839592625462 ], [ -64.947400091033103, 18.335845123374554 ], [ -64.947314427941535, 18.335857025682799 ], [ -64.94722222696231, 18.335856356439876 ], [ -64.947070849718273, 18.335855181663192 ], [ -64.946978816377225, 18.335854343472477 ], [ -64.946893320923778, 18.335834897447796 ], [ -64.946807993108507, 18.335821655344091 ], [ -64.94672249765506, 18.335808410621041 ], [ -64.946623926426412, 18.335794999569487 ], [ -64.946538598611085, 18.335769350933504 ], [ -64.946453270795814, 18.335743534659287 ], [ -64.946367942980487, 18.335717718385126 ], [ -64.946282615165217, 18.335685531861486 ], [ -64.946203992875667, 18.335640941424856 ], [ -64.946118665060396, 18.335615123841023 ], [ -64.946040042770846, 18.335570533404336 ], [ -64.945961420481296, 18.335532310597841 ], [ -64.945882798191747, 18.335493921462898 ], [ -64.945804175902254, 18.335455699966076 ], [ -64.945725553612704, 18.335417310831076 ], [ -64.945660174736531, 18.335360313862111 ], [ -64.945601501386136, 18.335296946643666 ], [ -64.945529584622363, 18.335246153595733 ], [ -64.945477449159569, 18.335176582456313 ], [ -64.945425481334951, 18.335107012626509 ], [ -64.945373345872156, 18.335037442796761 ], [ -64.945321378047538, 18.334967874276686 ], [ -64.945235882594091, 18.334948428252005 ], [ -64.945157427942661, 18.334903836505703 ], [ -64.945210569234348, 18.334835103556941 ], [ -64.945151895883953, 18.334771737648225 ], [ -64.945113003834535, 18.334696131535566 ], [ -64.945067573897518, 18.334620360404188 ], [ -64.945002362659466, 18.334563194487373 ], [ -64.944950227196671, 18.334493624657625 ], [ -64.944891553846276, 18.33443042638703 ], [ -64.944839586021658, 18.334360856557282 ], [ -64.944780745033086, 18.334297489338837 ], [ -64.94471553379509, 18.334240492369872 ], [ -64.944656860444695, 18.334177125151427 ], [ -64.944578070517025, 18.334136724358757 ], [ -64.944592655035535, 18.33409632356603 ], [ -64.944641270097293, 18.334023399663693 ], [ -64.944680329784831, 18.333941258282834 ], [ -64.944728777208468, 18.333868334380497 ], [ -64.944719892386843, 18.33378585641367 ], [ -64.94463355874268, 18.33379440726867 ], [ -64.94457555594488, 18.33385810845374 ], [ -64.944555607005725, 18.333940252453942 ], [ -64.94453565806657, 18.334022561472977 ], [ -64.944496598379033, 18.334104705473237 ], [ -64.944457538691495, 18.334186848163768 ], [ -64.944361649673112, 18.33418617761123 ], [ -64.94427514839083, 18.334212830766432 ], [ -64.944217145592972, 18.334276534570847 ], [ -64.94412108893647, 18.33429413657592 ], [ -64.94404397539023, 18.334339231236697 ], [ -64.94394775109555, 18.334375273437672 ], [ -64.943861249813267, 18.334392875442745 ], [ -64.943774917478777, 18.334401257349953 ], [ -64.943679028460394, 18.334409805585608 ], [ -64.943662430974484, 18.33440963925716 ], [ -64.943583139442069, 18.334408967394893 ], [ -64.943496973436027, 18.33438080549638 ], [ -64.943420696770829, 18.334334537368647 ], [ -64.943334698402964, 18.334297152752868 ], [ -64.943287424446339, 18.334223559607665 ], [ -64.943239982851594, 18.334149966462462 ], [ -64.943231098029969, 18.334067488495577 ], [ -64.943145099662104, 18.334039326597065 ], [ -64.943058767327614, 18.334047708504272 ], [ -64.942972767650076, 18.334010491526612 ], [ -64.942886770591883, 18.333973109530177 ], [ -64.942800435638048, 18.333963386517837 ], [ -64.942724161592196, 18.333916949442255 ], [ -64.942637995586153, 18.333907060101467 ], [ -64.942551494303871, 18.333924828435045 ], [ -64.942465494626333, 18.333896666536532 ], [ -64.942379328620291, 18.33387755447842 ], [ -64.94229282864768, 18.333895325431399 ], [ -64.942206327365398, 18.333922147534395 ], [ -64.942119992411563, 18.333930529441602 ], [ -64.94202410339318, 18.333929857579335 ], [ -64.94190893729791, 18.333928853060172 ], [ -64.941813048279528, 18.333928182507577 ], [ -64.941726545687573, 18.333945784512707 ], [ -64.94164004440529, 18.33398182540401 ], [ -64.94155337548483, 18.334026921374402 ], [ -64.941504760423072, 18.334099842657395 ], [ -64.941437203560724, 18.334154157416037 ], [ -64.941379033124747, 18.334217861220452 ], [ -64.9413495275017, 18.33430000260131 ], [ -64.941301081387792, 18.334372926503647 ], [ -64.941233355577594, 18.334436461360212 ], [ -64.941146685347462, 18.33448155471126 ], [ -64.941050797638809, 18.334480885468338 ], [ -64.940964631632767, 18.334470993508205 ], [ -64.940878465626724, 18.334452050397942 ], [ -64.940782407660549, 18.334460433614822 ], [ -64.940705295423982, 18.33450569460399 ], [ -64.940704623561771, 18.334597226340293 ], [ -64.940694231306509, 18.334679535359328 ], [ -64.940683836431901, 18.334780287193553 ], [ -64.940663887492747, 18.33486259752226 ], [ -64.940632540469494, 18.335164512509948 ], [ -64.940612759168516, 18.335246822838656 ], [ -64.940592810229361, 18.335328965529186 ], [ -64.940591972038646, 18.335420663593936 ], [ -64.940600855550599, 18.335503141560821 ], [ -64.940590629623841, 18.335585451889528 ], [ -64.940570681994359, 18.335667763527908 ], [ -64.940560456067601, 18.335750072546944 ], [ -64.940550230140786, 18.335832382875594 ], [ -64.940530281201688, 18.335914694513974 ], [ -64.940510332262534, 18.335997003533009 ], [ -64.940519217084159, 18.336079481499894 ], [ -64.940528100596111, 18.336161959466722 ], [ -64.940527431353189, 18.336253489893352 ], [ -64.940526593162474, 18.336345021629654 ], [ -64.940535477984099, 18.336427499596482 ], [ -64.940472446042008, 18.336405202413687 ], [ -64.940409077513891, 18.336383409454925 ], [ -64.940345543966998, 18.336362287048814 ], [ -64.940282009110376, 18.336341499918944 ], [ -64.940218138977514, 18.336321384651342 ], [ -64.940154101206531, 18.336301602040692 ], [ -64.940089728159251, 18.336282492601924 ], [ -64.940025355111914, 18.336263883458287 ], [ -64.939960814426513, 18.336245778538739 ], [ -64.939896106102935, 18.336228345481402 ], [ -64.939831230141181, 18.336211412719194 ], [ -64.939766186541306, 18.336194816542957 ], [ -64.93970097530331, 18.336179058557434 ], [ -64.939635764065258, 18.336163635848152 ], [ -64.939570217550965, 18.336148883691465 ], [ -64.939504671036673, 18.336134466811131 ], [ -64.939438956884203, 18.336120720483279 ], [ -64.939373075093613, 18.336107644708079 ], [ -64.93930702435523, 18.336094905518792 ], [ -64.939240976236135, 18.336082835572427 ], [ -64.939174759169305, 18.336071268540479 ], [ -64.939108542102417, 18.336060370751454 ], [ -64.939042157397353, 18.336049978496192 ], [ -64.938975771382673, 18.336040086536059 ], [ -64.93890905271104, 18.336030698799959 ], [ -64.938842500367855, 18.336021981616511 ], [ -64.93877578038655, 18.336013599709304 ], [ -64.938708892767124, 18.336006055992812 ], [ -64.938642172785819, 18.335998847552617 ], [ -64.938575117528217, 18.335992309665016 ], [ -64.938508229908734, 18.335986274691834 ], [ -64.938441174651132, 18.335980911580862 ], [ -64.938374119393529, 18.335975882436571 ], [ -64.938306896497807, 18.335971691482939 ], [ -64.938239841240204, 18.335967834495989 ], [ -64.938172618344424, 18.335964649371249 ], [ -64.938105395448702, 18.335961968470599 ], [ -64.938038172552979, 18.335959787865079 ], [ -64.937970949657199, 18.335958280431441 ], [ -64.937903559123299, 18.335957274602549 ], [ -64.937836336227576, 18.335956938016636 ], [ -64.937769113331854, 18.335956938016636 ], [ -64.937701722797954, 18.335957777517024 ], [ -64.937634499902231, 18.335958949674364 ], [ -64.937567277006451, 18.335960793693914 ], [ -64.937500054110728, 18.335963140627939 ], [ -64.937432831214949, 18.335965990476382 ], [ -64.937365608319226, 18.335969510877419 ], [ -64.937298553061623, 18.335973535502546 ], [ -64.937231497804021, 18.335978229370596 ], [ -64.937323195868771, 18.335954926358909 ], [ -64.937406679664491, 18.335931793604686 ], [ -64.937423443478906, 18.335923914611897 ], [ -64.937475578941701, 18.335876639345656 ], [ -64.937526038023066, 18.335805394444094 ], [ -64.937576664742551, 18.335734314561364 ], [ -64.937627291462036, 18.335663068350186 ], [ -64.937710775257699, 18.335631887655381 ], [ -64.937802473322506, 18.335632559517649 ], [ -64.937885957118226, 18.335609425453754 ], [ -64.937961394282979, 18.335562151497186 ], [ -64.938011853364344, 18.335491071614456 ], [ -64.938062647722006, 18.335411946410488 ], [ -64.938121488710522, 18.335348746830164 ], [ -64.938188543968124, 18.335293593880806 ], [ -64.938255599225727, 18.335238440931448 ], [ -64.938306225945212, 18.335167194720214 ], [ -64.938365066933784, 18.335103996449618 ], [ -64.938399097476974, 18.335024703607473 ], [ -64.938457938465547, 18.334961502717533 ], [ -64.938508565185032, 18.334890256506355 ], [ -64.93855902426634, 18.33481917924297 ], [ -64.938609650985882, 18.334747931722063 ], [ -64.938660277705367, 18.334676685510885 ], [ -64.938719118693882, 18.33461348724029 ], [ -64.938769745413367, 18.33454240735756 ], [ -64.938811990225645, 18.334463114515415 ], [ -64.9388544026761, 18.33438399062112 ], [ -64.938905029395585, 18.334312744409942 ], [ -64.93895548847695, 18.334241498198708 ], [ -64.939014329465465, 18.33417829861844 ], [ -64.939073170454037, 18.3341150977285 ], [ -64.939123797173522, 18.334044020465114 ], [ -64.93915782640704, 18.33396472762297 ], [ -64.939183476352753, 18.333885267142705 ], [ -64.939225888803207, 18.333806140629065 ], [ -64.93924315553204, 18.333718802465739 ], [ -64.939285567982438, 18.333639509623652 ], [ -64.939286238535033, 18.333552002512477 ], [ -64.939311887171073, 18.333472708360659 ], [ -64.939329321538025, 18.333385370197334 ], [ -64.939305014007175, 18.333305574440772 ], [ -64.939247346485615, 18.333241535360116 ], [ -64.93924801703821, 18.333154029558614 ], [ -64.939257069497955, 18.333066522447439 ], [ -64.939165539071382, 18.333057805263934 ], [ -64.939073841006575, 18.333073060335039 ], [ -64.938982310579945, 18.333056464158801 ], [ -64.938898826784282, 18.333087643543934 ], [ -64.938840991624602, 18.333023439444446 ], [ -64.938774774557714, 18.332967279356524 ], [ -64.938691961314532, 18.332926878563796 ], [ -64.93860881279511, 18.332902403394769 ], [ -64.938525831913864, 18.332862003911771 ], [ -64.938518288197372, 18.332774329162419 ], [ -64.938426757770742, 18.332765779617091 ], [ -64.938334892067815, 18.332788912371313 ], [ -64.938251911186569, 18.332748512888259 ], [ -64.938160380759939, 18.332731915402348 ], [ -64.938068850333309, 18.332739125152216 ], [ -64.937977152268559, 18.332730407968711 ], [ -64.937885789480049, 18.332697886168773 ], [ -64.937802808598803, 18.332673410999746 ], [ -64.937719827717501, 18.332633010207076 ], [ -64.937636846836199, 18.332592440466556 ], [ -64.937553865954953, 18.332560087614411 ], [ -64.937470885073651, 18.332519685512011 ], [ -64.937387904192406, 18.332487165021746 ], [ -64.937296541403896, 18.332454643221809 ], [ -64.93721356052265, 18.332422121421928 ], [ -64.937130412003171, 18.3323976462529 ], [ -64.937113815826933, 18.33238959962199 ], [ -64.937049107503356, 18.332363614399981 ], [ -64.936982890436468, 18.332307456931403 ], [ -64.936916841007758, 18.332251130515033 ], [ -64.936833860126455, 18.332210728412633 ], [ -64.936767643059568, 18.332154570944056 ], [ -64.936709975538065, 18.332090533173073 ], [ -64.93667728609995, 18.33201073741651 ], [ -64.936669742383515, 18.331923061357543 ], [ -64.936670412936053, 18.33183555555604 ], [ -64.936671251126768, 18.331748216083042 ], [ -64.936713495939046, 18.331668923240898 ], [ -64.936714334129817, 18.331581416129723 ], [ -64.936723386589563, 18.331493909018548 ], [ -64.936740820956516, 18.33140656954555 ], [ -64.936758255323525, 18.331319230072552 ], [ -64.93675892587612, 18.331231722961377 ], [ -64.936817766864635, 18.331168523381052 ], [ -64.93686017931509, 18.331089398177085 ], [ -64.936902424127368, 18.331010105334997 ], [ -64.936944668939645, 18.330930980131029 ], [ -64.936953889037568, 18.330835594027064 ], [ -64.936979537673608, 18.330756133546856 ], [ -64.937005186309648, 18.330676840704712 ], [ -64.937030834945688, 18.330597547862624 ], [ -64.937064865488878, 18.330518255020479 ], [ -64.937115492208363, 18.330447008809301 ], [ -64.937141140844403, 18.330367715967157 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_124", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.895443170730516, 18.311142138041873 ], [ -64.894966072572686, 18.311727195164451 ], [ -64.894933383134628, 18.311754018577176 ], [ -64.894925336503718, 18.311761728622116 ], [ -64.894848390595598, 18.311768769424134 ], [ -64.894803798849296, 18.311760722793224 ], [ -64.894796255132803, 18.311702552357303 ], [ -64.894760380570006, 18.311652094585611 ], [ -64.89474831062364, 18.311632648560931 ], [ -64.894675890945393, 18.311585708570931 ], [ -64.894615708851745, 18.311523347181321 ], [ -64.894596262827008, 18.311442042681506 ], [ -64.894518981642648, 18.311480096540208 ], [ -64.894477910297383, 18.311553186770993 ], [ -64.894432647998485, 18.311626277001778 ], [ -64.894347487821335, 18.311648740513078 ], [ -64.89426635095964, 18.311682938694446 ], [ -64.894204995398923, 18.311744294255107 ], [ -64.894119835221773, 18.311766757766406 ], [ -64.894046577352867, 18.311812522979722 ], [ -64.89396929616845, 18.311854432515759 ], [ -64.893900899805715, 18.311803638158096 ], [ -64.893831665252208, 18.311853426686866 ], [ -64.89384725559961, 18.311934731186739 ], [ -64.893806016616224, 18.312007821417524 ], [ -64.893724879754529, 18.312037996283436 ], [ -64.893655645201022, 18.312087784812206 ], [ -64.893630667117577, 18.312168754035724 ], [ -64.893561432564127, 18.312218374926374 ], [ -64.89349219801062, 18.312268163455144 ], [ -64.893422795818992, 18.312321640023072 ], [ -64.893361607896452, 18.312382995583789 ], [ -64.893292374652674, 18.312436639789837 ], [ -64.893226994466829, 18.31249413967322 ], [ -64.893153736597924, 18.312539904886535 ], [ -64.893068576420774, 18.312558512720557 ], [ -64.892979560566289, 18.312569409199909 ], [ -64.892890544711804, 18.312568738647315 ], [ -64.892805384534654, 18.312587346481337 ], [ -64.892720056719384, 18.312613665669915 ], [ -64.892631040864899, 18.312620706471989 ], [ -64.892546215964046, 18.312593046178222 ], [ -64.892469772970401, 18.312549795537052 ], [ -64.892384948069491, 18.312533702275232 ], [ -64.892299621563893, 18.312556165786532 ], [ -64.89221429243895, 18.312594219645234 ], [ -64.892145057885443, 18.312643840535827 ], [ -64.892075824641665, 18.312705196096545 ], [ -64.891990664464515, 18.31272380393051 ], [ -64.89190164861003, 18.312723133377972 ], [ -64.891812463807753, 18.312722462825377 ], [ -64.891723447953268, 18.312729335989275 ], [ -64.891646166768908, 18.312767389847977 ], [ -64.89157693352513, 18.312817178376747 ], [ -64.891503674346495, 18.312862943590062 ], [ -64.891438464418172, 18.312920443473445 ], [ -64.891421866932262, 18.312970567278512 ], [ -64.890962538417682, 18.312626573806995 ], [ -64.891055746535415, 18.312481734450614 ], [ -64.891433098687912, 18.312255255318064 ], [ -64.891802574466908, 18.312086108430776 ], [ -64.892072639516925, 18.312008491970062 ], [ -64.892231057562981, 18.311919476115634 ], [ -64.892579575954699, 18.311741444406664 ], [ -64.892832375585499, 18.311683273970743 ], [ -64.893148539815456, 18.311595431583271 ], [ -64.8935051061477, 18.311454447904168 ], [ -64.893738626082325, 18.311355876675464 ], [ -64.894070884883718, 18.311157728389276 ], [ -64.894297196378147, 18.311037699478163 ], [ -64.894515796517908, 18.310931753480816 ], [ -64.894786532120463, 18.310885651681588 ], [ -64.894966743125281, 18.310887160424841 ], [ -64.895248207569011, 18.31101707998647 ], [ -64.895443170730516, 18.311142138041873 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_641", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.923740653146808, 18.334400754435535 ], [ -64.923740819475313, 18.334455069194178 ], [ -64.92374149133758, 18.3345092163147 ], [ -64.923742832442713, 18.334563363435223 ], [ -64.92374484410044, 18.334617678193865 ], [ -64.923747357362913, 18.334671825314388 ], [ -64.923750376159205, 18.33472597243491 ], [ -64.923754064198363, 18.334779950607583 ], [ -64.923758421480443, 18.334834097728105 ], [ -64.923763284296285, 18.334888078520123 ], [ -64.923768647407201, 18.334942056692853 ], [ -64.923774682380383, 18.334996037484871 ], [ -64.923781389215833, 18.335049849329096 ], [ -64.923788596346355, 18.335103659863648 ], [ -64.92379630901064, 18.335157305379425 ], [ -64.923804689608176, 18.335210949585473 ], [ -64.923813743377593, 18.335264424843729 ], [ -64.923823297442141, 18.335317901411656 ], [ -64.923833357040451, 18.335371211651136 ], [ -64.923844084572011, 18.335424520580943 ], [ -64.923855317637333, 18.335477660562901 ], [ -64.923867218635905, 18.335530635526084 ], [ -64.923879625168183, 18.335583607869921 ], [ -64.923892699633768, 18.335636413885311 ], [ -64.923906279633115, 18.335689053572196 ], [ -64.923920361237208, 18.335741523001559 ], [ -64.923935113393895, 18.335793827412147 ], [ -64.923950368465, 18.335846130513119 ], [ -64.923966294088643, 18.335898097028064 ], [ -64.923982722626761, 18.335950064852682 ], [ -64.923999654079296, 18.336001865039179 ], [ -64.924017256084426, 18.336053329949436 ], [ -64.924035359694301, 18.336104794859637 ], [ -64.924053967528323, 18.336155924493539 ], [ -64.924073247224555, 18.336206886489322 ], [ -64.924093028525533, 18.336257848485104 ], [ -64.924113311431256, 18.336308476514262 ], [ -64.924134267508919, 18.336358766647777 ], [ -64.924155725191383, 18.336409058090965 ], [ -64.924177684478593, 18.336459015567584 ], [ -64.924200149299509, 18.336508802786682 ], [ -64.924223283363403, 18.336558423677275 ], [ -64.924246751393923, 18.336607710601299 ], [ -64.924270892596326, 18.336656828577475 ], [ -64.924295701731921, 18.336705609967737 ], [ -64.924320847453544, 18.336754225029495 ], [ -64.924346497399256, 18.336802504814955 ], [ -64.924372816587834, 18.336850616962295 ], [ -64.924399469743094, 18.336898393833337 ], [ -64.924426794760564, 18.336946003066203 ], [ -64.924454622692451, 18.336993277022827 ], [ -64.924482953538813, 18.337040215703155 ], [ -64.924511788609209, 18.337086986745305 ], [ -64.924541125284406, 18.337133422511215 ], [ -64.924570963564406, 18.337179523000827 ], [ -64.924601307378111, 18.337225288214142 ], [ -64.924632151486946, 18.33727088578928 ], [ -64.924663333491424, 18.337316148088178 ], [ -64.924695183429094, 18.337361075110778 ], [ -64.924727537590911, 18.33740566685708 ], [ -64.924760228338641, 18.337449924636758 ], [ -64.924793588329294, 18.337493844520793 ], [ -64.924827283596244, 18.33753743043826 ], [ -64.924861480467939, 18.337580681079373 ], [ -64.924896181563724, 18.337623596444246 ], [ -64.924931385573984, 18.337666176532821 ], [ -64.924966926170214, 18.337708422654771 ], [ -64.925002968371132, 18.337750330881136 ], [ -64.925039513486524, 18.337791737502698 ], [ -64.925076561516391, 18.337832976486141 ], [ -64.925113943512827, 18.337873712555108 ], [ -64.925151829733352, 18.337914113347836 ], [ -64.925190052539847, 18.337954178864209 ], [ -64.925228775641472, 18.337993909104341 ], [ -64.925268004276802, 18.338033136430056 ], [ -64.925307565569142, 18.338072028479473 ], [ -64.925262973822839, 18.338056102855774 ], [ -64.925175466711664, 18.338024922160969 ], [ -64.925087959600489, 18.337993741466221 ], [ -64.925000284851194, 18.337993070913626 ], [ -64.924912611411514, 18.337992400361031 ], [ -64.924824767714426, 18.338006984879598 ], [ -64.924736926636626, 18.338021569398109 ], [ -64.924649084249154, 18.338020731207394 ], [ -64.924561240552066, 18.338027772009468 ], [ -64.924481278466999, 18.338065155315576 ], [ -64.924393268441406, 18.338094994905191 ], [ -64.924305424744318, 18.338094324352596 ], [ -64.924283633095229, 18.338102873897981 ], [ -64.923982387350463, 18.338048056224864 ], [ -64.923810893529151, 18.337985694835311 ], [ -64.92364375829959, 18.337896511342706 ], [ -64.923317199195083, 18.337737422744055 ], [ -64.922954765527777, 18.337558888120668 ], [ -64.922612279489897, 18.337403319923055 ], [ -64.922257390848699, 18.337274573828438 ], [ -64.921192720996203, 18.336817424609762 ], [ -64.920025959513964, 18.335676145435059 ], [ -64.920046746643777, 18.335584613698813 ], [ -64.919406033657424, 18.334621867837768 ], [ -64.919428832445021, 18.334583143426528 ], [ -64.924809681591114, 18.331312859823072 ], [ -64.924776321600461, 18.331356613378659 ], [ -64.924743295576434, 18.331400702210487 ], [ -64.924710773776496, 18.33144512631867 ], [ -64.924678588562529, 18.331489885703093 ], [ -64.924647072591426, 18.33153498036387 ], [ -64.924616059534799, 18.331580410300887 ], [ -64.924585380444796, 18.331626007876025 ], [ -64.924555374526676, 18.331671940727517 ], [ -64.924525870213301, 18.33171837649337 ], [ -64.924496701176281, 18.33176481225928 ], [ -64.924468201382126, 18.331811750939607 ], [ -64.924440207121734, 18.331858857258055 ], [ -64.924412545518294, 18.3319062988528 ], [ -64.924385557086794, 18.331953908085723 ], [ -64.924359070260039, 18.332002020233062 ], [ -64.924333086347701, 18.332050132380346 ], [ -64.924307605349838, 18.332098579803983 ], [ -64.924282793594841, 18.332147362503861 ], [ -64.924258318425814, 18.332196312841916 ], [ -64.924234515119053, 18.332245430818148 ], [ -64.924211213417038, 18.33229488407062 ], [ -64.924188414629441, 18.33234467259939 ], [ -64.924166117446646, 18.33239446112816 ], [ -64.924144493435733, 18.332444584933171 ], [ -64.924123369719894, 18.332494876376416 ], [ -64.924102751537873, 18.332545503095901 ], [ -64.924082633650926, 18.332596128505713 ], [ -64.924063187626189, 18.332647090501496 ], [ -64.924044244515926, 18.332698221445071 ], [ -64.924025973267931, 18.332749517407478 ], [ -64.924008034676831, 18.332800983627351 ], [ -64.923990769257671, 18.332852616175671 ], [ -64.923974173081433, 18.332904416362169 ], [ -64.923957912181436, 18.332956384186843 ], [ -64.923942489472211, 18.333008519649638 ], [ -64.923927402039226, 18.333060821440881 ], [ -64.923912985158893, 18.333113293489589 ], [ -64.92389907119292, 18.333165930557129 ], [ -64.923885826469871, 18.333218570244071 ], [ -64.923873087280583, 18.333271542587852 ], [ -64.923861017334218, 18.333324348603242 ], [ -64.923849450302271, 18.333377491204544 ], [ -64.923838386184798, 18.333430632496231 ], [ -64.923827992619863, 18.333483941425982 ], [ -64.923818269607523, 18.333537417993909 ], [ -64.9238090495096, 18.333590894561894 ], [ -64.923800332326095, 18.333644537458269 ], [ -64.923792284385513, 18.333698181664374 ], [ -64.923784740669021, 18.333751827180095 ], [ -64.923777867505123, 18.333805805352824 ], [ -64.923771498565316, 18.333859618506722 ], [ -64.923765797558758, 18.333913596679395 ], [ -64.923760602085963, 18.333967577471412 ], [ -64.923756074546418, 18.334021555644142 ], [ -64.923752052540635, 18.334075704074337 ], [ -64.923748698468046, 18.334129851194803 ], [ -64.923745848619603, 18.334183998315325 ], [ -64.923743670633428, 18.334238145435847 ], [ -64.923742160580446, 18.33429229255637 ], [ -64.923740988423106, 18.334346607315013 ], [ -64.923740653146808, 18.334400754435535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_103", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.837553705459584, 18.326878830914268 ], [ -64.837538450388479, 18.328287829514579 ], [ -64.836976527329796, 18.328294535040357 ], [ -64.836688692636528, 18.328286153133149 ], [ -64.836407228192741, 18.328271568614582 ], [ -64.83596231655855, 18.328203004613727 ], [ -64.836045297439853, 18.326840778365238 ], [ -64.836210421011685, 18.326823007412315 ], [ -64.836311339174358, 18.326801549729851 ], [ -64.836406892916443, 18.326763160594908 ], [ -64.836607052860415, 18.326732985728995 ], [ -64.836976694967916, 18.326755281602118 ], [ -64.837206694501504, 18.326750755372245 ], [ -64.837349019285739, 18.326785959382448 ], [ -64.837432000167041, 18.326833234648745 ], [ -64.837553705459584, 18.326878830914268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_538", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.959939087618352, 18.331986262247483 ], [ -64.959923495961277, 18.331903616642535 ], [ -64.95992517365238, 18.331901940261048 ], [ -64.959969262484265, 18.331860533639485 ], [ -64.96002592286726, 18.331789621394933 ], [ -64.960094823454142, 18.331736649051095 ], [ -64.960169925342655, 18.331689710370767 ], [ -64.960214180502987, 18.331612596824527 ], [ -64.96024603175033, 18.331535650916408 ], [ -64.960252904914228, 18.331452502396985 ], [ -64.960278553550268, 18.331369353877562 ], [ -64.960273021491503, 18.33128603772002 ], [ -64.960267658380587, 18.331190986892352 ], [ -64.96026832762351, 18.331107670734809 ], [ -64.960256592953385, 18.33102435457721 ], [ -64.96025726350598, 18.330941038419667 ], [ -64.960239327534225, 18.330857722262067 ], [ -64.960196244531232, 18.330780105801409 ], [ -64.960165900717527, 18.330702489340752 ], [ -64.960135390575317, 18.330625040518214 ], [ -64.960123655905193, 18.330535689387489 ], [ -64.96009314576304, 18.330458240564951 ], [ -64.960081412402587, 18.330374924407352 ], [ -64.960094654506292, 18.330291775887929 ], [ -64.96013874464785, 18.330214829979866 ], [ -64.960176798506552, 18.330137716433626 ], [ -64.960208648444222, 18.330060770525506 ], [ -64.96021552160812, 18.329977454367963 ], [ -64.960228765021498, 18.329894305848541 ], [ -64.960279056464685, 18.329823394913603 ], [ -64.96027972701728, 18.32974007875606 ], [ -64.96025541948643, 18.329686434549956 ], [ -64.960243518487857, 18.329603118392413 ], [ -64.960238824619807, 18.32956975840176 ], [ -64.960262627926568, 18.329578810861506 ], [ -64.96028660149085, 18.329587360406833 ], [ -64.960310907712085, 18.3295954070378 ], [ -64.960335216552608, 18.329602783116115 ], [ -64.960359859359812, 18.329609823918133 ], [ -64.960384500857288, 18.329616194167613 ], [ -64.960409312612285, 18.329622229140796 ], [ -64.960434289386058, 18.32962759356144 ], [ -64.960459436417352, 18.329632287429433 ], [ -64.960484748467422, 18.329636646021186 ], [ -64.960510061827165, 18.329640334060343 ], [ -64.96053537649658, 18.329643519185083 ], [ -64.960560857494443, 18.329646201395406 ], [ -64.960586338492305, 18.329648213053133 ], [ -64.960611985818673, 18.329649889434563 ], [ -64.960637466816593, 18.329650895263455 ], [ -64.960663115452633, 18.329651230539753 ], [ -64.960688764088616, 18.329651062901576 ], [ -64.960714412724656, 18.329650392348981 ], [ -64.960739893722575, 18.329649218881968 ], [ -64.960765542358615, 18.329647542500538 ], [ -64.960791023356478, 18.329645195566513 ], [ -64.960816504354398, 18.329642345718071 ], [ -64.96084181771414, 18.32963882531709 ], [ -64.960867131073883, 18.329634969639756 ], [ -64.960892276795448, 18.329630443409883 ], [ -64.960917254878893, 18.329625414265536 ], [ -64.960942232962395, 18.329619714568651 ], [ -64.960967043407663, 18.329613679595468 ], [ -64.96099168752454, 18.329606974069691 ], [ -64.961016161383895, 18.329599765629496 ], [ -64.961040468914746, 18.329592054274883 ], [ -64.961064608807476, 18.329583840005853 ], [ -64.961088581062086, 18.329575122822348 ], [ -64.961112218040398, 18.329565735086305 ], [ -64.961135687380533, 18.329556012073908 ], [ -64.961158989082548, 18.32954578614715 ], [ -64.961181955508266, 18.329534889667798 ], [ -64.961204586657743, 18.329523657912148 ], [ -64.961227050169043, 18.32951192324208 ], [ -64.961249346042166, 18.329499685657538 ], [ -64.961271139000928, 18.329486945158578 ], [ -64.961292765631129, 18.329473701745201 ], [ -64.961314054365744, 18.329460123055583 ], [ -64.961335009133791, 18.32944604145149 ], [ -64.961355460987306, 18.329431456932923 ], [ -64.961375746512431, 18.329416537138115 ], [ -64.961395694141913, 18.32940111442889 ], [ -64.961415140166594, 18.32938518880519 ], [ -64.961434250915033, 18.32936892790525 ], [ -64.961453026387119, 18.329352331728956 ], [ -64.961471298944844, 18.3293352326383 ], [ -64.961489237535943, 18.32931779827129 ], [ -64.961506839541016, 18.32929986098992 ], [ -64.961523938631728, 18.329281756070372 ], [ -64.961540533498294, 18.32926314823635 ], [ -64.961556794398291, 18.329244205126088 ], [ -64.961572552383814, 18.329224926739528 ], [ -64.961587807454919, 18.32920531307667 ], [ -64.961602728559399, 18.329185364137572 ], [ -64.961616976491996, 18.32916507992212 ], [ -64.961630890457911, 18.329144460430427 ], [ -64.961644301509466, 18.329123673300558 ], [ -64.961657209646546, 18.32910255089439 ], [ -64.961669614869209, 18.329081093211983 ], [ -64.961681517177396, 18.329059467891398 ], [ -64.961692748933046, 18.329037507294515 ], [ -64.961679673157846, 18.329120655813938 ], [ -64.961660227133109, 18.32920363669524 ], [ -64.961653353969211, 18.32928695285284 ], [ -64.961640110555834, 18.329370101372263 ], [ -64.961633237391936, 18.329453249891685 ], [ -64.961620161616736, 18.329536398411108 ], [ -64.961594512980696, 18.329619379292353 ], [ -64.961581437205439, 18.329702527811776 ], [ -64.961555788569399, 18.329785676331198 ], [ -64.961548915405501, 18.329868824850621 ], [ -64.961541874603483, 18.329951973370044 ], [ -64.961535001439529, 18.330035289527643 ], [ -64.961521758026151, 18.330118270408889 ], [ -64.961496277028289, 18.330201418928311 ], [ -64.961470628392249, 18.330284399809614 ], [ -64.961438777144906, 18.330361513355854 ], [ -64.961407093535684, 18.330438626902094 ], [ -64.961400052733609, 18.330521775421516 ], [ -64.961393179569711, 18.330604923940939 ], [ -64.961380103794511, 18.330688072460362 ], [ -64.961379434551588, 18.330771388617904 ], [ -64.961372392439898, 18.330854537137384 ], [ -64.961371721887303, 18.330937685656806 ], [ -64.961358646112046, 18.331020834176229 ], [ -64.961351606619701, 18.331104150333772 ], [ -64.961350934757434, 18.331187298853195 ], [ -64.961362669427501, 18.331270615010737 ], [ -64.961368201486266, 18.331353931168337 ], [ -64.961367530933728, 18.33143724732588 ], [ -64.961373062992436, 18.33152056348348 ], [ -64.961372392439898, 18.331603712002902 ], [ -64.961371721887303, 18.331687028160445 ], [ -64.961364681085229, 18.331770175370195 ], [ -64.961364010532691, 18.33185332519929 ], [ -64.961388150425421, 18.33193680899501 ], [ -64.961412122680031, 18.332055998405735 ], [ -64.961392676655294, 18.33213898059671 ], [ -64.961317574766781, 18.332186086915158 ], [ -64.961292093768918, 18.332269067796403 ], [ -64.961316233661648, 18.332352551592123 ], [ -64.961296787636911, 18.332435532473426 ], [ -64.961271306639048, 18.332518680992848 ], [ -64.961251190061773, 18.332553548417138 ], [ -64.961248675489628, 18.332557908318563 ], [ -64.961168544456768, 18.332524715966031 ], [ -64.961098806988844, 18.332473921608369 ], [ -64.961011299877725, 18.332466545530053 ], [ -64.960923457490253, 18.332475933266096 ], [ -64.960839135503818, 18.332502083506938 ], [ -64.960747772715308, 18.33252136320317 ], [ -64.96066026560419, 18.332524045413436 ], [ -64.96057242452639, 18.332536785912396 ], [ -64.960488102539955, 18.332562937462853 ], [ -64.96040025884281, 18.332575677961813 ], [ -64.960312585403187, 18.332591771223633 ], [ -64.960228597383377, 18.332567631330903 ], [ -64.960148466350518, 18.332520188426486 ], [ -64.960089291395377, 18.332459503418363 ], [ -64.960044364372777, 18.332388761431218 ], [ -64.96000647684258, 18.332311480246858 ], [ -64.959972112332707, 18.332234199062498 ], [ -64.959951660479135, 18.332153731443668 ], [ -64.959934895355048, 18.332069912371708 ], [ -64.959939087618352, 18.331986262247483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_570", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.895192719343356, 18.313222862685222 ], [ -64.895190540047508, 18.313224706704773 ], [ -64.895150474531079, 18.3132585696099 ], [ -64.895104374041466, 18.313328977630363 ], [ -64.895037989336458, 18.313383627665303 ], [ -64.894951320415998, 18.3134064264529 ], [ -64.894856269588388, 18.313417490570373 ], [ -64.894769768306048, 18.3134129643405 ], [ -64.894683434661886, 18.313400391479718 ], [ -64.894592910064148, 18.31337608394881 ], [ -64.894510767373561, 18.31334389742517 ], [ -64.89442862468303, 18.31331171090153 ], [ -64.89434664963062, 18.313259910715033 ], [ -64.89429367597711, 18.313188664503855 ], [ -64.8942697037225, 18.313105683622553 ], [ -64.894249754783345, 18.313022870379427 ], [ -64.894246402020485, 18.312936369097145 ], [ -64.89424707257308, 18.312853555853962 ], [ -64.894371962990363, 18.312720786443947 ], [ -64.894458799548943, 18.312693964340895 ], [ -64.894537421838493, 18.312655239929654 ], [ -64.894585701623953, 18.312639481944075 ], [ -64.894626772969218, 18.312714919108885 ], [ -64.894671532353698, 18.312786165320119 ], [ -64.894728696960783, 18.312849532538507 ], [ -64.894781502976116, 18.312920946387862 ], [ -64.894826262360596, 18.312992192599097 ], [ -64.894891808874888, 18.313047848462872 ], [ -64.894965569658268, 18.313095625333915 ], [ -64.895035139488016, 18.313147257882292 ], [ -64.895113091224971, 18.313187323398665 ], [ -64.895192719343356, 18.313222862685222 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_914", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.982529497060341, 18.371847924132055 ], [ -64.982518265304691, 18.371762261040431 ], [ -64.982542908111839, 18.371682632922045 ], [ -64.982591355535476, 18.371608704500545 ], [ -64.982603928396259, 18.371523376685275 ], [ -64.982640473511651, 18.371443748566833 ], [ -64.983612270522769, 18.372047078247078 ], [ -64.983464414989442, 18.372225612870466 ], [ -64.983390317620092, 18.372474387876139 ], [ -64.983337848190729, 18.372760881464274 ], [ -64.983275485491447, 18.373018541291572 ], [ -64.983103825341686, 18.373198919934509 ], [ -64.982822193259778, 18.373340238889909 ], [ -64.982500494351768, 18.373376951643479 ], [ -64.982152981788886, 18.373434619164982 ], [ -64.981639170877543, 18.373493795429852 ], [ -64.981078086009575, 18.373518270598822 ], [ -64.980787736744162, 18.373506535928755 ], [ -64.980323881999709, 18.373360523105362 ], [ -64.980166637420666, 18.373298999906467 ], [ -64.979946528537596, 18.373206966565419 ], [ -64.979575042410488, 18.373113927395536 ], [ -64.979322747003778, 18.373111915737809 ], [ -64.979102135206233, 18.373080232128586 ], [ -64.97891270410355, 18.373108898251189 ], [ -64.978818323828477, 18.373078052832682 ], [ -64.978376598628699, 18.373074700069822 ], [ -64.978187333854464, 18.373073191326512 ], [ -64.977651059431821, 18.373069168011057 ], [ -64.977178153537238, 18.373035472744107 ], [ -64.976736593356293, 18.373032119981247 ], [ -64.976167798443328, 18.373148293215024 ], [ -64.975851465265634, 18.373236135602497 ], [ -64.975251153071952, 18.373352141198154 ], [ -64.974935155170499, 18.373409976357834 ], [ -64.974745724067816, 18.373438642480437 ], [ -64.974398376523766, 18.373466135136084 ], [ -64.974020352509058, 18.37340293555576 ], [ -64.973642831408768, 18.373279721519907 ], [ -64.973328678836594, 18.373126667894439 ], [ -64.973046879116509, 18.372883592585652 ], [ -64.972638512597712, 18.372669518675764 ], [ -64.972292675106644, 18.372516297412176 ], [ -64.971883973311606, 18.372362573234113 ], [ -64.971506955125733, 18.372179009466436 ], [ -64.971255833186035, 18.372026458755386 ], [ -64.970878815000162, 18.371842894987708 ], [ -64.970563822927602, 18.37178019963153 ], [ -64.970218320712775, 18.371596969830478 ], [ -64.969935515163854, 18.371474258709043 ], [ -64.969590012949084, 18.371290862579542 ], [ -64.969150130459241, 18.371076788669654 ], [ -64.968899343795783, 18.370894063092692 ], [ -64.968627770002513, 18.37064092949521 ], [ -64.96833876184229, 18.370457198089412 ], [ -64.968089820508112, 18.370283022057777 ], [ -64.967891000359657, 18.370119071952956 ], [ -64.967676423535295, 18.370011280626386 ], [ -64.967424967628972, 18.369888904781249 ], [ -64.967135959468749, 18.369713387644481 ], [ -64.967797124308674, 18.368994387644875 ], [ -64.96797280777389, 18.369045183312153 ], [ -64.968057801622592, 18.369086588624043 ], [ -64.968150002601817, 18.369107712339883 ], [ -64.968227954338772, 18.369149117651773 ], [ -64.96830573843755, 18.369190356635215 ], [ -64.9683908986147, 18.369224891402553 ], [ -64.968461472963668, 18.369273003549893 ], [ -64.968539258372175, 18.369321114387503 ], [ -64.968610000359263, 18.369369226534843 ], [ -64.968694992898293, 18.369410634466078 ], [ -64.968780154385115, 18.369438462397966 ], [ -64.968865145614416, 18.369466121382061 ], [ -64.968957515541433, 18.369487243788228 ], [ -64.969042340442286, 18.369528650409791 ], [ -64.969127500619436, 18.369563183867456 ], [ -64.969219701598661, 18.369584307583295 ], [ -64.969304860466139, 18.369612135515183 ], [ -64.969397229083484, 18.369606100542001 ], [ -64.969482390570306, 18.369640632689993 ], [ -64.969510049554401, 18.369722272466106 ], [ -64.969530669046094, 18.369803913551891 ], [ -64.969551288537843, 18.369885553328061 ], [ -64.969572075667656, 18.369967191794501 ], [ -64.969614655756232, 18.370042628959311 ], [ -64.969623540577857, 18.370105325625161 ], [ -64.969650865595327, 18.370185959572439 ], [ -64.969683052119024, 18.370266593519659 ], [ -64.969719764872536, 18.370342868875184 ], [ -64.969784808472411, 18.370406068455509 ], [ -64.969864102624172, 18.370446804524477 ], [ -64.969948088024694, 18.370478823409996 ], [ -64.970032074734831, 18.370515200887212 ], [ -64.970111367576919, 18.370551578364484 ], [ -64.970190660419007, 18.3705879558417 ], [ -64.970279340997195, 18.370615448497347 ], [ -64.970363327707332, 18.370651825974619 ], [ -64.970442620549477, 18.370688203451834 ], [ -64.970526607259615, 18.370720054699177 ], [ -64.970601038595532, 18.370765316998074 ], [ -64.970680331437677, 18.370806220705219 ], [ -64.970759624279765, 18.370842599492164 ], [ -64.97083891712191, 18.370883335561132 ], [ -64.97092273619387, 18.370928765498149 ], [ -64.971006722904008, 18.370965141665749 ], [ -64.971090709614145, 18.370992635631012 ], [ -64.971217108774738, 18.370997998741927 ], [ -64.971305956991046, 18.371007721754324 ], [ -64.97139480520741, 18.371017277128487 ], [ -64.971483653423718, 18.371035884962509 ], [ -64.971540650392683, 18.37104879309959 ], [ -64.971563952094698, 18.371066898019137 ], [ -64.971643244936786, 18.371107634088105 ], [ -64.971722370140753, 18.37114853779525 ], [ -64.971796969114848, 18.371193800094147 ], [ -64.971866706582773, 18.37124342098474 ], [ -64.971941305556811, 18.37128868459331 ], [ -64.972020598398956, 18.371329586990782 ], [ -64.972043900100971, 18.371338639450585 ], [ -64.972109446615264, 18.371330257543377 ], [ -64.972198630107869, 18.371312990814545 ], [ -64.972287310686056, 18.37133159864851 ], [ -64.972376158902364, 18.371345681562275 ], [ -64.972460313250679, 18.37137317290825 ], [ -64.972534744586596, 18.37141843520709 ], [ -64.972614037428684, 18.371454812684362 ], [ -64.972702885644992, 18.371473420518328 ], [ -64.972796427729349, 18.371482975892548 ], [ -64.972880414439487, 18.371510468548138 ], [ -64.972969261346179, 18.37152455015223 ], [ -64.973053249365989, 18.37155640139963 ], [ -64.973137236076127, 18.371592946515023 ], [ -64.973226084292435, 18.371597975659313 ], [ -64.97329598939848, 18.371647764188083 ], [ -64.973328008284, 18.37172839813536 ], [ -64.973350973400045, 18.371795621031083 ], [ -64.97335550093959, 18.371809032082638 ], [ -64.973396907561153, 18.371885475076283 ], [ -64.973415515395175, 18.371898886127781 ], [ -64.973485755777517, 18.371908441502001 ], [ -64.973569742487655, 18.3719402927494 ], [ -64.973649035329743, 18.371976670226616 ], [ -64.973718772797667, 18.372026458755386 ], [ -64.97376034705735, 18.372107260340783 ], [ -64.973815835283062, 18.372174650874683 ], [ -64.973829749248978, 18.372192588156111 ], [ -64.973866964916965, 18.372237682816831 ], [ -64.973866797278788, 18.372246567638456 ], [ -64.973871323508718, 18.372264504919883 ], [ -64.973913065406578, 18.372322842993981 ], [ -64.97395296328483, 18.372373134437169 ], [ -64.973969391822948, 18.372393251014444 ], [ -64.9740232023575, 18.372429460853596 ], [ -64.974052875618668, 18.372369949312429 ], [ -64.974099311384521, 18.372298703101251 ], [ -64.974182961508745, 18.372267522406446 ], [ -64.974266446614081, 18.372244388342608 ], [ -64.974353952415584, 18.372225109956048 ], [ -64.974441459526759, 18.372217901515853 ], [ -64.974524944632151, 18.372194599813838 ], [ -64.974604405112416, 18.372159395803578 ], [ -64.974650839568653, 18.3720881495924 ], [ -64.974668275245278, 18.372004833434801 ], [ -64.974706329103981, 18.371929563908168 ], [ -64.974756788185289, 18.371862341012388 ], [ -64.974811604548734, 18.371795118116665 ], [ -64.974853849361011, 18.371720016228153 ], [ -64.974904308442376, 18.371652794642102 ], [ -64.974983770232257, 18.371617590631843 ], [ -64.975055016443491, 18.371570315365545 ], [ -64.975134475614084, 18.371535111355342 ], [ -64.975205555496814, 18.371483981721383 ], [ -64.975289205620982, 18.371456825651762 ], [ -64.975376714041829, 18.37143754595553 ], [ -64.975464221153004, 18.37144223982358 ], [ -64.975551560626002, 18.371450957007028 ], [ -64.975634709145424, 18.371475432176055 ], [ -64.975713497763422, 18.371511809653327 ], [ -64.975734286202965, 18.37151985759391 ], [ -64.975800838546149, 18.371520359198655 ], [ -64.975888344347652, 18.37152102975125 ], [ -64.975975685130322, 18.371525723619243 ], [ -64.976063024603377, 18.371542319795537 ], [ -64.976150530404823, 18.37154684602541 ], [ -64.976238037515998, 18.371535615579432 ], [ -64.976325378298725, 18.371544163815088 ], [ -64.976362929242953, 18.371544499091385 ], [ -64.976412047219185, 18.371552880998593 ], [ -64.976495026790758, 18.37157735616762 ], [ -64.976578176619853, 18.37160183264632 ], [ -64.976665682421356, 18.371602501889242 ], [ -64.976753189532531, 18.371599149126325 ], [ -64.976840530315201, 18.37159981967892 ], [ -64.976928203754881, 18.37158858792327 ], [ -64.977015710866056, 18.371581379483075 ], [ -64.977103051648726, 18.371585905712948 ], [ -64.977186198858476, 18.371610380881975 ], [ -64.977273370693354, 18.371642902681913 ], [ -64.977360711476081, 18.371647596549963 ], [ -64.977452409540831, 18.37165614609529 ], [ -64.977539581375709, 18.371676765586983 ], [ -64.977622728585459, 18.371705264071466 ], [ -64.977709900420336, 18.371725715925038 ], [ -64.977793048939759, 18.371750191094065 ], [ -64.977876197459182, 18.371778689578548 ], [ -64.977959179650156, 18.37180718806303 ], [ -64.978046517813482, 18.371823784239268 ], [ -64.978133689648359, 18.371852282723751 ], [ -64.978216839477454, 18.371880781208233 ], [ -64.978299819049084, 18.37191313537005 ], [ -64.978387158522082, 18.371921684915378 ], [ -64.978478688948712, 18.371938281091673 ], [ -64.978561837468135, 18.37196292389882 ], [ -64.978640627395805, 18.372003157053371 ], [ -64.97872796686886, 18.372011874236875 ], [ -64.978815473980035, 18.372008521473958 ], [ -64.97890298109121, 18.372005168711098 ], [ -64.978990320564208, 18.372005839263693 ], [ -64.979073971998048, 18.371978681884343 ], [ -64.9791616467474, 18.371947501189595 ], [ -64.979245130543063, 18.37191632049479 ], [ -64.979281843296633, 18.371914979389658 ], [ -64.979331631825403, 18.371939286920508 ], [ -64.979414612706648, 18.37197566439778 ], [ -64.979493402634375, 18.372016065190451 ], [ -64.979563810654838, 18.372068200653246 ], [ -64.979638409628933, 18.372112624761428 ], [ -64.979713008602971, 18.372156881231433 ], [ -64.979787607577066, 18.372201137701438 ], [ -64.979866397504736, 18.372241538494166 ], [ -64.979953569339614, 18.372266013663193 ], [ -64.980036717859036, 18.372294512147676 ], [ -64.980115507786763, 18.372330889624891 ], [ -64.980194297714434, 18.372367267102163 ], [ -64.980268896688472, 18.372411691210289 ], [ -64.980343495662567, 18.372455947680294 ], [ -64.980418094636661, 18.372500204150356 ], [ -64.980505601747836, 18.372500874702894 ], [ -64.980593108859011, 18.372497521940033 ], [ -64.980660164116614, 18.372442368990676 ], [ -64.980719005105129, 18.372379169410351 ], [ -64.980798465585394, 18.372344133038268 ], [ -64.980873735112027, 18.372300882397099 ], [ -64.980965265538657, 18.372313455257938 ], [ -64.981044055466327, 18.372353856050609 ], [ -64.981131562577502, 18.372358549918658 ], [ -64.981214543458805, 18.372383025087686 ], [ -64.98130205056998, 18.372391574633014 ], [ -64.981389390042978, 18.372400291816518 ], [ -64.981480920469608, 18.372412864677301 ], [ -64.981568259942662, 18.372421414222629 ], [ -64.981655767053837, 18.372426108090679 ], [ -64.981743106526835, 18.372442704266916 ], [ -64.981830445999833, 18.372455277127756 ], [ -64.981917785472888, 18.372471873303994 ], [ -64.981996575400558, 18.372508250781266 ], [ -64.982075365328228, 18.372544628258481 ], [ -64.982154155255898, 18.372588884728486 ], [ -64.98215834620953, 18.372588884728486 ], [ -64.982237302465649, 18.372513112287436 ], [ -64.982255911609343, 18.372427784472109 ], [ -64.982274519443308, 18.372342289018661 ], [ -64.982334869175133, 18.372274395570344 ], [ -64.982419191161569, 18.372195102728256 ], [ -64.982473505920268, 18.372127041641818 ], [ -64.982486077471378, 18.37204154618837 ], [ -64.982498819280011, 18.371950351038038 ], [ -64.982529497060341, 18.371847924132055 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_514", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 23.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.876300742634328, 18.351945758657564 ], [ -64.876077448626518, 18.352209119491476 ], [ -64.875856501552732, 18.352420008276624 ], [ -64.875665895673308, 18.352569038586637 ], [ -64.875317878886392, 18.352686720563725 ], [ -64.874685884393159, 18.352802055606787 ], [ -64.874307188516184, 18.35282904534796 ], [ -64.873864791454196, 18.352855698503163 ], [ -64.873256769215573, 18.352821667959972 ], [ -64.872888468213205, 18.352757294912635 ], [ -64.872384045037904, 18.352723096731268 ], [ -64.872100736574509, 18.352660567703595 ], [ -64.871721705421294, 18.352571048934692 ], [ -64.871377041397238, 18.352443811583385 ], [ -64.871094069519813, 18.352351107689742 ], [ -64.870779747999791, 18.352228062601739 ], [ -64.8704340781469, 18.352074672390302 ], [ -64.869962344409657, 18.351920277659644 ], [ -64.869459597615787, 18.351705199230594 ], [ -64.868862470546901, 18.351459440401811 ], [ -64.868548316665056, 18.351306220447839 ], [ -64.868203652640943, 18.351062474586513 ], [ -64.86803668504956, 18.350921323269233 ], [ -64.867827305007665, 18.350818393448833 ], [ -64.86751315112582, 18.350665338513693 ], [ -64.867016440614805, 18.350509771625696 ], [ -64.86700386644435, 18.350433831546468 ], [ -64.867004704635065, 18.350345318606458 ], [ -64.86701878754883, 18.350256973304568 ], [ -64.867061367637405, 18.349941143041292 ], [ -64.867088691345202, 18.349840224878562 ], [ -64.867116016362672, 18.349752047214849 ], [ -64.867129931638317, 18.349663534274782 ], [ -64.867144011932737, 18.349575188972949 ], [ -64.867171336950207, 18.349487011309179 ], [ -64.867279129586507, 18.349272937399292 ], [ -64.867284661645215, 18.349238067355657 ], [ -64.867355068356062, 18.349299591864167 ], [ -64.867440060895035, 18.349334292960009 ], [ -64.867510636553675, 18.349389110633069 ], [ -64.867546008202055, 18.349405706809364 ], [ -64.867575178548805, 18.349450298555666 ], [ -64.867616751498815, 18.349523221148274 ], [ -64.867658325758555, 18.349596142431267 ], [ -64.867712640517198, 18.349661018392965 ], [ -64.867792437583432, 18.349697900094327 ], [ -64.86786804107669, 18.3497388024918 ], [ -64.86794364587962, 18.349779875146737 ], [ -64.8680194196304, 18.34982077754421 ], [ -64.868099214077233, 18.349857659245572 ], [ -64.868157719789508, 18.349918679529992 ], [ -64.868195103095616, 18.349995456490262 ], [ -64.868240868308931, 18.35006854803072 ], [ -64.868299374021205, 18.35012939936729 ], [ -64.868349497826273, 18.350198299954172 ], [ -64.868412362130243, 18.350255295613465 ], [ -64.868441531167321, 18.35029184203853 ], [ -64.868479417387846, 18.350300223945737 ], [ -64.868479417387846, 18.350308270576647 ], [ -64.868542281691873, 18.350365267545612 ], [ -64.868600787404091, 18.350426120191855 ], [ -64.868655102162734, 18.350491162482058 ], [ -64.868713607875009, 18.35055201643803 ], [ -64.868789212677939, 18.35059711109875 ], [ -64.868864817480926, 18.350638013496223 ], [ -64.868940422283856, 18.35067891851304 ], [ -64.869020385678539, 18.350711775589218 ], [ -64.869100349073221, 18.350748823619085 ], [ -64.869180144829784, 18.350785702701046 ], [ -64.869268657769794, 18.350814705409675 ], [ -64.869352812118109, 18.350835492539488 ], [ -64.869441492696239, 18.350832138466956 ], [ -64.869530173274427, 18.350832810329223 ], [ -64.869614327622742, 18.350857788412668 ], [ -64.869703008200929, 18.350870527601955 ], [ -64.869795712094515, 18.350879412423581 ], [ -64.869837118716077, 18.350879747699878 ], [ -64.869883722120107, 18.350859966398843 ], [ -64.869972570336472, 18.350844543689618 ], [ -64.870061250914603, 18.350845215551885 ], [ -64.870145405262917, 18.35087019363533 ], [ -64.870174741938115, 18.350886454535271 ], [ -64.870234085841105, 18.350870864187925 ], [ -64.87031036119663, 18.350827110632338 ], [ -64.870395186097483, 18.350799616667018 ], [ -64.87048386667567, 18.35078821858292 ], [ -64.870534493395155, 18.350788721497338 ], [ -64.870568187352433, 18.35080917335091 ], [ -64.870580593884767, 18.350825266612731 ], [ -64.87061395387542, 18.350882094633846 ], [ -64.870638595372895, 18.350962897528973 ], [ -64.870688552849458, 18.351031795496453 ], [ -64.870751417153485, 18.351088792465418 ], [ -64.870801373320376, 18.351161716367756 ], [ -64.870864237624403, 18.351218713336721 ], [ -64.870944201019086, 18.351251570412899 ], [ -64.871032546320976, 18.351288618442766 ], [ -64.871116699359561, 18.351309405572579 ], [ -64.871205213609301, 18.351322312400043 ], [ -64.871293894187488, 18.351331029583491 ], [ -64.871382239489378, 18.351356007666936 ], [ -64.871470920067509, 18.351364726160114 ], [ -64.871559265369399, 18.351393727559014 ], [ -64.871698237390774, 18.351439157496031 ], [ -64.871731765019604, 18.351459609349604 ], [ -64.871782390429416, 18.351467991256811 ], [ -64.871875095632731, 18.351484921399674 ], [ -64.871963608572742, 18.351497829536811 ], [ -64.872052289150929, 18.351506546720259 ], [ -64.872132083597762, 18.351539403796494 ], [ -64.872216239255749, 18.351568406505066 ], [ -64.872296202650432, 18.351601263581301 ], [ -64.872363256598362, 18.351654237234811 ], [ -64.872443221302717, 18.351691117626501 ], [ -64.872527375651032, 18.351716094400274 ], [ -64.872607339045715, 18.351748951476509 ], [ -64.872687302440397, 18.351785833177871 ], [ -64.872731054686312, 18.351803936787746 ], [ -64.872747484534102, 18.351848362205544 ], [ -64.872780509248457, 18.351925306803992 ], [ -64.872856114051388, 18.351974258451719 ], [ -64.87293607744607, 18.352007115527954 ], [ -64.873024756714585, 18.352007952408997 ], [ -64.873113438602445, 18.351996554324842 ], [ -64.87320228550908, 18.351981131615617 ], [ -64.873282753127853, 18.351949615644514 ], [ -64.873371432396368, 18.351946261571982 ], [ -64.873404458420396, 18.351938382579192 ], [ -64.873459442421961, 18.351926815547301 ], [ -64.873548124309821, 18.351923462784384 ], [ -64.873636972526128, 18.351895971438466 ], [ -64.873721628479188, 18.351872500788602 ], [ -64.873810476695496, 18.351857079389049 ], [ -64.873899158583356, 18.351845678685606 ], [ -64.873992028805446, 18.351854563507231 ], [ -64.874080541745514, 18.351867305315807 ], [ -64.874169054685524, 18.351884235458726 ], [ -64.874253376671959, 18.351909047213667 ], [ -64.874333172428521, 18.351941904289902 ], [ -64.874417326776779, 18.351970904379129 ], [ -64.874497291481134, 18.352003761455364 ], [ -64.874586138387826, 18.351992363371266 ], [ -64.874670795650502, 18.351964869405947 ], [ -64.874759477538362, 18.351953471321849 ], [ -64.874848324444997, 18.351946095243534 ], [ -64.874937005023185, 18.351930672534252 ], [ -64.875013448016887, 18.351891108622624 ], [ -64.875098106589235, 18.351867471644312 ], [ -64.875178571588719, 18.351831932357754 ], [ -64.875250823628789, 18.351780133480929 ], [ -64.875327098984258, 18.351740403240854 ], [ -64.875399351024328, 18.351692626369811 ], [ -64.87547579401803, 18.351648871504551 ], [ -64.875539665460565, 18.351592880364421 ], [ -64.875586099916745, 18.351581314642146 ], [ -64.87562834472908, 18.351585673233899 ], [ -64.875712499077338, 18.351606460363769 ], [ -64.875792965386438, 18.351591037654543 ], [ -64.875796988701893, 18.351583326299874 ], [ -64.87597384694385, 18.351525826416491 ], [ -64.876300742634328, 18.351945758657564 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_117", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.897824973480454, 18.311442714543773 ], [ -64.897854142517531, 18.311522508990606 ], [ -64.897835533373836, 18.311607501529636 ], [ -64.897775520227981, 18.311669527642891 ], [ -64.897727240442521, 18.311743120788151 ], [ -64.897673093321998, 18.311816547604849 ], [ -64.897630679561871, 18.311889971802259 ], [ -64.897588436059266, 18.311963564947462 ], [ -64.897528421603738, 18.312025591060774 ], [ -64.897480140508605, 18.312099016567856 ], [ -64.897432028361266, 18.312172609713059 ], [ -64.89681981516901, 18.311705402205746 ], [ -64.89695794899967, 18.311575315005996 ], [ -64.897087365646883, 18.311375491647993 ], [ -64.897118377393838, 18.311260993485973 ], [ -64.897142183319943, 18.311117830511023 ], [ -64.897135813070463, 18.310988749140108 ], [ -64.897076469167473, 18.310902081529377 ], [ -64.89686909947369, 18.31057065960897 ], [ -64.896736331373347, 18.310311323400242 ], [ -64.896702636106397, 18.309873621515919 ], [ -64.896758291970173, 18.309522587242384 ], [ -64.89704780304487, 18.309277332637691 ], [ -64.897269755947548, 18.309128468656183 ], [ -64.897680972314788, 18.309016655323774 ], [ -64.898060337434629, 18.308893944202396 ], [ -64.898250271451786, 18.308855052152978 ], [ -64.898476246360246, 18.308836947233431 ], [ -64.898738266088969, 18.308921770824611 ], [ -64.898954854571002, 18.309045321446433 ], [ -64.899215699523097, 18.309322090712499 ], [ -64.898714292524687, 18.309741690296562 ], [ -64.898629636571684, 18.309713862364674 ], [ -64.898544307446684, 18.309736493514094 ], [ -64.8984552915922, 18.309735655323379 ], [ -64.898370131415049, 18.309758286472857 ], [ -64.898272733653414, 18.309784436713642 ], [ -64.898203500409636, 18.309834226552084 ], [ -64.898118340232486, 18.309856688753712 ], [ -64.898037034422941, 18.309890886935079 ], [ -64.897983894440983, 18.309956099482747 ], [ -64.897882138087539, 18.310020975444502 ], [ -64.897801001225844, 18.310051316638862 ], [ -64.897716176324991, 18.310031367699764 ], [ -64.897631351424138, 18.31000353976782 ], [ -64.897542335569653, 18.310002870524954 ], [ -64.897457175392503, 18.31002918840386 ], [ -64.897383917523598, 18.310074953617175 ], [ -64.897403363548278, 18.310156425755167 ], [ -64.897394477416981, 18.310241419603869 ], [ -64.897385761543205, 18.310326244504722 ], [ -64.897384923352433, 18.310415259049478 ], [ -64.897432866551981, 18.310485165465195 ], [ -64.897480812370816, 18.310555236899745 ], [ -64.897528755570363, 18.31062514200579 ], [ -64.897605367511801, 18.310664370641177 ], [ -64.897681978143623, 18.310703596657163 ], [ -64.897746183552783, 18.310762102369438 ], [ -64.897794128061946, 18.310832175113603 ], [ -64.897842072571166, 18.310902081529377 ], [ -64.897857495280391, 18.31098338471952 ], [ -64.897828492571819, 18.311062846509458 ], [ -64.897821788355714, 18.311135767792393 ], [ -64.897838384532008, 18.3112723928798 ], [ -64.897825810361496, 18.311357385418773 ], [ -64.897824973480454, 18.311442714543773 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_128", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.889829304564216, 18.312733526942907 ], [ -64.889740122381284, 18.312732856390312 ], [ -64.889651106526856, 18.312735873876875 ], [ -64.889562089362698, 18.312731347647002 ], [ -64.889473073508213, 18.312730677094407 ], [ -64.889388248607361, 18.312714416194467 ], [ -64.88930342501618, 18.312690611578034 ], [ -64.88922631146994, 18.31272866543668 ], [ -64.889189094492281, 18.3128056113448 ], [ -64.889160764955648, 18.312837965506617 ], [ -64.889124387478375, 18.312776945222197 ], [ -64.889092200954735, 18.31269010866356 ], [ -64.889051632523888, 18.312615006775047 ], [ -64.889023469315703, 18.312536049209257 ], [ -64.88898692420031, 18.312460947320744 ], [ -64.888950545413365, 18.312385845432232 ], [ -64.888918360199398, 18.312306887866384 ], [ -64.888881815084005, 18.312227762662417 ], [ -64.888841246653158, 18.312152660773904 ], [ -64.888796654906855, 18.312081414562726 ], [ -64.888764299435422, 18.312002456996879 ], [ -64.888727923267822, 18.311923499431089 ], [ -64.888679140567945, 18.311852253219854 ], [ -64.888638572137097, 18.311776983693221 ], [ -64.888638572137097, 18.311773128015886 ], [ -64.8886092354619, 18.311732559585039 ], [ -64.88869439563905, 18.311713784112953 ], [ -64.888743681253345, 18.311644717197623 ], [ -64.888788775914122, 18.311571626966838 ], [ -64.888822135904775, 18.311550839836968 ], [ -64.888815933293415, 18.311625606449184 ], [ -64.888804701537765, 18.311711940093346 ], [ -64.888819621332573, 18.311793579869459 ], [ -64.88884996252699, 18.311872872711604 ], [ -64.8888984112603, 18.311942610179472 ], [ -64.88890344040459, 18.311952500829989 ], [ -64.888949540894203, 18.312009665437074 ], [ -64.889008549520895, 18.312071859188507 ], [ -64.889059679154798, 18.312139082084229 ], [ -64.889116005571168, 18.312206138651504 ], [ -64.88915405942987, 18.312280568677807 ], [ -64.889218263529358, 18.312337900923012 ], [ -64.889287667030658, 18.312387857089959 ], [ -64.889346674347678, 18.312450218479512 ], [ -64.889416076539248, 18.312500174646402 ], [ -64.889480283258081, 18.312557506891665 ], [ -64.889570137303281, 18.31262741199771 ], [ -64.889626631357828, 18.31266747751414 ], [ -64.889668036669718, 18.312675188868752 ], [ -64.889771303076088, 18.3126932937883 ], [ -64.889829304564216, 18.312733526942907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_392", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.986230275417597, 18.371047954908875 ], [ -64.985295860402971, 18.371902071252521 ], [ -64.984974162804633, 18.371799309070298 ], [ -64.984784900649686, 18.37179780163666 ], [ -64.98449773650907, 18.371775169177511 ], [ -64.984317525504252, 18.371754718633667 ], [ -64.984116527369565, 18.37183920694855 ], [ -64.983612270522769, 18.372047078247078 ], [ -64.982640473511651, 18.371443748566833 ], [ -64.982694788270294, 18.371375687480395 ], [ -64.982758826041334, 18.371303770716622 ], [ -64.982965356234729, 18.37118525054882 ], [ -64.983106507552009, 18.371038567172775 ], [ -64.983255536552349, 18.37084980662263 ], [ -64.983447651175027, 18.370780907345477 ], [ -64.983727102651414, 18.370825163815482 ], [ -64.98403689925118, 18.370785265937229 ], [ -64.984508968264663, 18.370718545955924 ], [ -64.984950525826321, 18.370764143531062 ], [ -64.985340787425571, 18.370788115785672 ], [ -64.985775137856649, 18.370840586524707 ], [ -64.986156849910515, 18.370991294525879 ], [ -64.986230275417597, 18.371047954908875 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_115", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 8.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.836195668854998, 18.304972385099802 ], [ -64.836174714087008, 18.305261728536323 ], [ -64.83601026106777, 18.305644614057201 ], [ -64.835869445026788, 18.305883330774293 ], [ -64.835593680279942, 18.306090363882106 ], [ -64.835245495854849, 18.306226988969456 ], [ -64.834714585852794, 18.306379538370834 ], [ -64.834330359226726, 18.306480959447981 ], [ -64.834145286715739, 18.306740967518977 ], [ -64.834050906440666, 18.307088984305949 ], [ -64.833919142859486, 18.307523837651445 ], [ -64.833916125372923, 18.307855090624003 ], [ -64.834040512875731, 18.308222384487863 ], [ -64.834218544584701, 18.308427910162038 ], [ -64.834372268762706, 18.308640306380823 ], [ -64.834446197184207, 18.308794533473304 ], [ -64.834479557174916, 18.308986646786309 ], [ -64.834472516372841, 18.309202398387356 ], [ -64.834420045633749, 18.309465925549716 ], [ -64.834246372516589, 18.309771360938385 ], [ -64.834043530362351, 18.309985602486449 ], [ -64.833896344071889, 18.310147540933542 ], [ -64.833679923228033, 18.31029154340888 ], [ -64.833271891985532, 18.31041324739175 ], [ -64.832943991775835, 18.310469070893703 ], [ -64.832611900612562, 18.310567140517662 ], [ -64.832419619661437, 18.310705943591188 ], [ -64.832223650671096, 18.310847431494381 ], [ -64.832095073524329, 18.310991431350431 ], [ -64.832014773543676, 18.311128894628496 ], [ -64.831981748829264, 18.311320337388963 ], [ -64.831948891753086, 18.311511278544629 ], [ -64.831996668624129, 18.311963062033044 ], [ -64.832107980351736, 18.312293812091184 ], [ -64.832214599520967, 18.31253420518965 ], [ -64.832309649038962, 18.312654066462642 ], [ -64.832390450624359, 18.31275599045415 ], [ -64.832635369952754, 18.31291474377656 ], [ -64.832926725047002, 18.313047513186575 ], [ -64.833243896415468, 18.313343562148873 ], [ -64.833427963097563, 18.31359284006902 ], [ -64.833496359460355, 18.313849996981901 ], [ -64.833508094130423, 18.314154763127704 ], [ -64.833439865405808, 18.314408064363306 ], [ -64.83328999690508, 18.314825314394056 ], [ -64.833121017655913, 18.31506822337434 ], [ -64.83294516655252, 18.31527223899559 ], [ -64.832791441064785, 18.315382041979944 ], [ -64.832497237431767, 18.315541298216715 ], [ -64.832184089378757, 18.315641544517177 ], [ -64.831885693482434, 18.315704576459325 ], [ -64.831290913347516, 18.315802646083228 ], [ -64.83037728546276, 18.315882274201613 ], [ -64.829591062567374, 18.31599777557318 ], [ -64.829022936897388, 18.316219728475858 ], [ -64.828507952518976, 18.316633963639333 ], [ -64.828099586000235, 18.317275347178281 ], [ -64.827585607450715, 18.317655047574419 ], [ -64.827089901458919, 18.317766022716057 ], [ -64.826342905889248, 18.317784127635662 ], [ -64.8257239858616, 18.317569718449477 ], [ -64.825361887470535, 18.317252714719132 ], [ -64.825201290128575, 18.316832950116236 ], [ -64.82516876963831, 18.316396754355878 ], [ -64.82525174920994, 18.315973636990122 ], [ -64.825560538671198, 18.315493186069432 ], [ -64.825801267045961, 18.315128908382519 ], [ -64.826115085651566, 18.314747866881191 ], [ -64.826209465926638, 18.314417452099349 ], [ -64.826174932468973, 18.314207904419334 ], [ -64.825975443077596, 18.314066585463991 ], [ -64.825683249792576, 18.314064238529966 ], [ -64.825189723096685, 18.314129785044258 ], [ -64.824441386421825, 18.314106148065946 ], [ -64.823474115640636, 18.314045630695944 ], [ -64.82296416040657, 18.313919231535408 ], [ -64.82249158847867, 18.313688561449226 ], [ -64.822129322449484, 18.313371725357058 ], [ -64.82202270458987, 18.313039466555665 ], [ -64.821971742594087, 18.312637973200822 ], [ -64.822049357745129, 18.312132879472927 ], [ -64.822199227555529, 18.311715628132504 ], [ -64.822440626482887, 18.311281612977666 ], [ -64.822956112465988, 18.310815076022948 ], [ -64.823488363573176, 18.310523218014225 ], [ -64.824055315776206, 18.310423305680388 ], [ -64.824658310180155, 18.31035859735681 ], [ -64.825244373131625, 18.310171680826272 ], [ -64.825702528179136, 18.309983758466842 ], [ -64.826163197798849, 18.309516718597649 ], [ -64.826625040885574, 18.308927639469346 ], [ -64.826885047646954, 18.308459089547171 ], [ -64.826942044615919, 18.308215343685788 ], [ -64.826962999383909, 18.307919128395042 ], [ -64.826857052076889, 18.307534566492677 ], [ -64.826549771358941, 18.307183196942844 ], [ -64.826296637761516, 18.306919502142364 ], [ -64.826098321837151, 18.306638708251171 ], [ -64.825955829414738, 18.306253977401013 ], [ -64.825868992856158, 18.305782412611563 ], [ -64.82574477299147, 18.305380248704125 ], [ -64.825609153732955, 18.305028879154293 ], [ -64.825461967442493, 18.304704834621987 ], [ -64.82516340390805, 18.30449914261925 ], [ -64.824826786514905, 18.304364864465924 ], [ -64.824427304817732, 18.304265957960979 ], [ -64.824065374064844, 18.304167219094154 ], [ -64.823713333962473, 18.303964712216214 ], [ -64.823377891345956, 18.303663466471448 ], [ -64.823060383391578, 18.303226601468168 ], [ -64.822925937600075, 18.302878753629045 ], [ -64.822829210390978, 18.302507433830385 ], [ -64.822819656326487, 18.302196632711457 ], [ -64.822760312423497, 18.301837551807012 ], [ -64.822664589733563, 18.301370511937819 ], [ -64.822518241633873, 18.300939011355126 ], [ -64.822371390619708, 18.300591163516003 ], [ -64.822149437717087, 18.300230741506425 ], [ -64.821816508363099, 18.29968993954418 ], [ -64.821493806245542, 18.299400428469539 ], [ -64.821022072508356, 18.299001952601202 ], [ -64.820473728139348, 18.298746473379424 ], [ -64.819974334108338, 18.298634657427726 ], [ -64.819387432966209, 18.298498201288169 ], [ -64.818850320352851, 18.298386051369846 ], [ -64.818342209138393, 18.298334083545228 ], [ -64.817800402656985, 18.298269710497891 ], [ -64.817488595709108, 18.298159404599176 ], [ -64.817010156446145, 18.297944660136693 ], [ -64.816718466075599, 18.29761743047959 ], [ -64.816517803217209, 18.297269246054498 ], [ -64.816270704592966, 18.297029020594152 ], [ -64.815887148519494, 18.296831039946085 ], [ -64.815389430869971, 18.296718554751465 ], [ -64.81500403077689, 18.296736827309189 ], [ -64.814686525441857, 18.296755938057572 ], [ -64.81439232049911, 18.296710005206137 ], [ -64.814098618470837, 18.296599364031067 ], [ -64.813964171369662, 18.296425020361312 ], [ -64.813785135141529, 18.296185297815384 ], [ -64.813628393476904, 18.295967535866339 ], [ -64.813358831341361, 18.295705349809111 ], [ -64.812908052372109, 18.295441822646751 ], [ -64.812546624533695, 18.295308717960438 ], [ -64.81207204094801, 18.295153149762825 ], [ -64.811756043046557, 18.294998922670345 ], [ -64.811554039083035, 18.294780825445002 ], [ -64.811488157292445, 18.294563734048495 ], [ -64.811512966428097, 18.294325687883997 ], [ -64.811650598654012, 18.294153691148267 ], [ -64.81201437342645, 18.294026789073257 ], [ -64.812354677549138, 18.294008013601115 ], [ -64.812762039548716, 18.294076409963907 ], [ -64.813145260345891, 18.29429618357068 ], [ -64.813392694246431, 18.294493158389855 ], [ -64.813617664635672, 18.29468996557091 ], [ -64.813934165451542, 18.294779149063515 ], [ -64.814206240849614, 18.294759870676955 ], [ -64.814569512707635, 18.29469801220182 ], [ -64.814835889718438, 18.294643865081355 ], [ -64.815064549456565, 18.294510760394985 ], [ -64.815209890417748, 18.294075571773192 ], [ -64.815258674427298, 18.293707773685242 ], [ -64.815374009470361, 18.293492358670164 ], [ -64.815580203077843, 18.293255822558706 ], [ -64.815898044998846, 18.293193627497601 ], [ -64.816237847516732, 18.293218102666629 ], [ -64.816622577057217, 18.293286331391243 ], [ -64.816938239682372, 18.293462183804252 ], [ -64.817316431335257, 18.293720515493874 ], [ -64.817751955233348, 18.293987226471302 ], [ -64.818100307296561, 18.294205323696644 ], [ -64.818560809278154, 18.294493493666153 ], [ -64.819101107016252, 18.294887778580858 ], [ -64.819506622376935, 18.295150970466921 ], [ -64.819889844483782, 18.295392369394278 ], [ -64.820273400557255, 18.295568892359938 ], [ -64.820860804613801, 18.295790342348141 ], [ -64.821338573324226, 18.295885057899511 ], [ -64.82216234716384, 18.296107010802189 ], [ -64.822973883418967, 18.296317061396564 ], [ -64.823609902537271, 18.296537673194109 ], [ -64.823920869984704, 18.296755435143155 ], [ -64.824480949023837, 18.297070762492012 ], [ -64.824929381059007, 18.297301767854435 ], [ -64.82550404461665, 18.29740218310269 ], [ -64.826017184975456, 18.297382569439833 ], [ -64.826455726360166, 18.297326409351967 ], [ -64.826857387353186, 18.297186432811372 ], [ -64.827247313676139, 18.296974538197333 ], [ -64.82772474711021, 18.296763314135944 ], [ -64.828251801434988, 18.296600369859959 ], [ -64.828739293157696, 18.296664239992822 ], [ -64.829263497634031, 18.296800194527577 ], [ -64.829549655945812, 18.296981746637528 ], [ -64.829697680426989, 18.297210237427805 ], [ -64.829769932467002, 18.297521541461208 ], [ -64.829802789543237, 18.298035855287026 ], [ -64.829773451558367, 18.298501720379534 ], [ -64.829629450392702, 18.299193730637967 ], [ -64.829511768415614, 18.29975448153931 ], [ -64.829494502996454, 18.300268292450653 ], [ -64.829464997373407, 18.300758129797771 ], [ -64.829472710037692, 18.301272277295084 ], [ -64.829394758300737, 18.301594308860047 ], [ -64.829292665361379, 18.301808550408055 ], [ -64.829077586932328, 18.302069730636447 ], [ -64.828814058460239, 18.302151202774382 ], [ -64.828125569912515, 18.302169307693987 ], [ -64.82763791055163, 18.302129409815677 ], [ -64.82720104554835, 18.302018099397742 ], [ -64.826851352380004, 18.301943500423647 ], [ -64.826588328132061, 18.301965293382409 ], [ -64.826324298055226, 18.302094541081715 ], [ -64.826085078423773, 18.302259833601397 ], [ -64.825932862989021, 18.302473738563435 ], [ -64.825855246528363, 18.302747994567028 ], [ -64.825827250958298, 18.303082432664326 ], [ -64.825973599057988, 18.303489960992408 ], [ -64.826245675765733, 18.303838983608216 ], [ -64.826567373364071, 18.304248020679552 ], [ -64.826977919178717, 18.304502495382167 ], [ -64.827340185207902, 18.304565359686137 ], [ -64.827840920344045, 18.304557480693404 ], [ -64.828416588420851, 18.304550439891329 ], [ -64.828854125286341, 18.304499980809965 ], [ -64.829259641956696, 18.304453209767814 ], [ -64.829593743468024, 18.304464609161585 ], [ -64.829930697447139, 18.304563012752112 ], [ -64.83009163006534, 18.304755628979592 ], [ -64.83015197848755, 18.304995183887343 ], [ -64.83033889632776, 18.305068441756305 ], [ -64.830551629132515, 18.3050821880841 ], [ -64.830789506349163, 18.305060227487218 ], [ -64.831127967761915, 18.304991328210065 ], [ -64.831466933398758, 18.304874652061812 ], [ -64.832295736382662, 18.304570891744902 ], [ -64.83299981658746, 18.304206278781692 ], [ -64.833436847919188, 18.304011818534661 ], [ -64.833791402593761, 18.303854238679321 ], [ -64.834182670021846, 18.303680230285806 ], [ -64.834465978485241, 18.303622059849886 ], [ -64.834819527330922, 18.303625078646121 ], [ -64.83531489804642, 18.303717948868211 ], [ -64.835561158480004, 18.303846024410234 ], [ -64.83582233870834, 18.304102510770576 ], [ -64.836024007395565, 18.304386992700927 ], [ -64.836124925558238, 18.30461632168192 ], [ -64.836195668854998, 18.304972385099802 ] ], [ [ -64.824383718900322, 18.301644767941411 ], [ -64.824363937599344, 18.301776866798832 ], [ -64.824316496004542, 18.301917682839814 ], [ -64.824232341656284, 18.302040393961249 ], [ -64.824157742682189, 18.302119017560415 ], [ -64.823962779520741, 18.302232004359837 ], [ -64.823722052455594, 18.30230945449199 ], [ -64.823582911486426, 18.30238757255745 ], [ -64.823526920346296, 18.302448928118167 ], [ -64.823544354713306, 18.302563592608635 ], [ -64.823616943339346, 18.302696529656828 ], [ -64.823717692554169, 18.302794262694817 ], [ -64.823891365671386, 18.302981011587235 ], [ -64.824019273575232, 18.303123168733293 ], [ -64.824166124589397, 18.303212519864076 ], [ -64.824304426058177, 18.303240180157843 ], [ -64.824386568748764, 18.303337745557656 ], [ -64.824450103605329, 18.303452912962541 ], [ -64.824496204094942, 18.303462133060464 ], [ -64.824551357044299, 18.303480237980011 ], [ -64.824615562453459, 18.303533714547996 ], [ -64.824661327666774, 18.303560536650991 ], [ -64.824735591364572, 18.303525835555206 ], [ -64.824773143618472, 18.303464479994489 ], [ -64.824829133448929, 18.303394407250323 ], [ -64.82481169908192, 18.303270857938173 ], [ -64.824803987727307, 18.30311210461582 ], [ -64.824795773458277, 18.303006158618473 ], [ -64.824842879776725, 18.302900712916255 ], [ -64.82489015373335, 18.302768950644747 ], [ -64.824946815426017, 18.302645902937343 ], [ -64.824966093812577, 18.302549175728245 ], [ -64.824995095211477, 18.302417076870768 ], [ -64.824986714613942, 18.30232001438543 ], [ -64.824996437626282, 18.302258323548415 ], [ -64.825043711582907, 18.302144161972365 ], [ -64.825100205637455, 18.302012398391184 ], [ -64.82518435867604, 18.301898404453254 ], [ -64.825277900760398, 18.301766977458044 ], [ -64.825418046248785, 18.301591795597574 ], [ -64.825539080988733, 18.301478135626269 ], [ -64.825697163758548, 18.301356096367101 ], [ -64.826012155831108, 18.301226510772096 ], [ -64.826262104303851, 18.301140344766111 ], [ -64.826631914049472, 18.301090557547013 ], [ -64.826881359607739, 18.301057363884809 ], [ -64.827223006145232, 18.301060213733251 ], [ -64.827416795839724, 18.301053006602729 ], [ -64.827720891432932, 18.301117379650009 ], [ -64.827895570378985, 18.301189296413781 ], [ -64.828061532141533, 18.301208405852549 ], [ -64.828282982129736, 18.301218968365276 ], [ -64.828523039951961, 18.301220978713332 ], [ -64.828653293480158, 18.301098770506371 ], [ -64.828746836874188, 18.300967174563311 ], [ -64.828757398077244, 18.300835075705891 ], [ -64.828703418594898, 18.300667103595231 ], [ -64.828630998916708, 18.30052544936359 ], [ -64.828438717965525, 18.300356302476246 ], [ -64.828254986559728, 18.300248846425973 ], [ -64.82793328896139, 18.30009629440525 ], [ -64.827768333027677, 18.29997140529764 ], [ -64.827650483412413, 18.299741238125932 ], [ -64.8276521597939, 18.299556165614945 ], [ -64.82771804158449, 18.299406800028635 ], [ -64.827802698847165, 18.299248717258877 ], [ -64.827952064433475, 18.299064818214902 ], [ -64.82818407562479, 18.298916961371901 ], [ -64.828379038786238, 18.298803805624686 ], [ -64.828564949487941, 18.298664329379221 ], [ -64.828741975368018, 18.298480766921216 ], [ -64.828863848298681, 18.298278930595814 ], [ -64.828884132514133, 18.298085140901378 ], [ -64.828848425589456, 18.297952539129483 ], [ -64.828766618175166, 18.29780200007616 ], [ -64.828536451003458, 18.297738297581418 ], [ -64.828204695116483, 18.29768264040797 ], [ -64.827890541234638, 18.297724048339205 ], [ -64.827612429553767, 18.297853967900778 ], [ -64.827269274272965, 18.298018588558193 ], [ -64.827028042983784, 18.298166613039371 ], [ -64.826860069563452, 18.298350344445169 ], [ -64.826729144172987, 18.298534411127264 ], [ -64.826524960913616, 18.298656116419806 ], [ -64.826136208057676, 18.298767428147414 ], [ -64.825812498801611, 18.298844037469564 ], [ -64.825535392949575, 18.298868177362294 ], [ -64.825231297356368, 18.298803973262807 ], [ -64.824900548607957, 18.298642536420459 ], [ -64.824560912418519, 18.298436844417779 ], [ -64.824175177049199, 18.298213216443401 ], [ -64.823870747489366, 18.298192932227948 ], [ -64.823547539838046, 18.298216736844381 ], [ -64.82334419476939, 18.298241379651586 ], [ -64.822967176583518, 18.298088326026118 ], [ -64.822728293537978, 18.297962931384689 ], [ -64.822471639539515, 18.297757911244275 ], [ -64.82235462680535, 18.297439566408798 ], [ -64.822292600692037, 18.297156928498055 ], [ -64.822183469570007, 18.29697956734168 ], [ -64.822008118761687, 18.296978226236547 ], [ -64.821739228488354, 18.29710814579812 ], [ -64.821543930050609, 18.297256337917418 ], [ -64.821557507430612, 18.297501089607692 ], [ -64.821604447420611, 18.297706613972196 ], [ -64.821640154345289, 18.297839214434418 ], [ -64.821749622053289, 18.29798992243559 ], [ -64.821895633567067, 18.298167618868206 ], [ -64.821996216453442, 18.298274235418091 ], [ -64.822105685471172, 18.298407341414133 ], [ -64.822159497315397, 18.298575313524736 ], [ -64.822213141521445, 18.298761057897991 ], [ -64.822304504309955, 18.298876392941054 ], [ -64.822608095679072, 18.298984687182042 ], [ -64.822930463829948, 18.299057945051004 ], [ -64.823197008478928, 18.299183672349329 ], [ -64.823444777655766, 18.299344438639082 ], [ -64.823663880709944, 18.299610815649885 ], [ -64.823875104771389, 18.299736041343465 ], [ -64.824040229652951, 18.29983444362432 ], [ -64.824223456834659, 18.29998582217803 ], [ -64.824282633099472, 18.30007533963726 ], [ -64.824265701646937, 18.300132673192195 ], [ -64.824185067699659, 18.300144240224085 ], [ -64.824121366514646, 18.300154967755645 ], [ -64.824044923520944, 18.300155639617913 ], [ -64.824037044528211, 18.30017826945766 ], [ -64.823971665652039, 18.300265945516628 ], [ -64.823923887471324, 18.300450681441646 ], [ -64.823876110600281, 18.300626533854711 ], [ -64.823930091392299, 18.300776906579586 ], [ -64.824067050446274, 18.300936833368951 ], [ -64.824186073528551, 18.301052502378639 ], [ -64.824203341567056, 18.301167166869106 ], [ -64.824211723474264, 18.301273115485799 ], [ -64.824284812395319, 18.301353077570809 ], [ -64.824348011975644, 18.301494731802507 ], [ -64.824383718900322, 18.301644767941411 ] ], [ [ -64.834885073845214, 18.304115754183954 ], [ -64.834751633882604, 18.304170404218894 ], [ -64.834633616629219, 18.304305688201111 ], [ -64.834506546916089, 18.304473996897684 ], [ -64.834369418914264, 18.304572903402629 ], [ -64.834196081073401, 18.304630403286012 ], [ -64.833998435701631, 18.304610119070617 ], [ -64.833740272959858, 18.304607772136592 ], [ -64.833519996438611, 18.304635935344777 ], [ -64.833361913668853, 18.304724615922964 ], [ -64.833171979651695, 18.304883201607197 ], [ -64.83296058795213, 18.305081685169682 ], [ -64.832759757455619, 18.305260052154892 ], [ -64.832602009962102, 18.305318893143408 ], [ -64.832434708404037, 18.305287377172363 ], [ -64.832151733907324, 18.305295088526975 ], [ -64.832023324398676, 18.30536180850828 ], [ -64.831951573963352, 18.305413441056658 ], [ -64.831795502851321, 18.305449650895753 ], [ -64.831698106399301, 18.30546440305244 ], [ -64.831563156383709, 18.305480328676083 ], [ -64.831426700244208, 18.305509162436863 ], [ -64.83118496473088, 18.305597340100633 ], [ -64.830911380589498, 18.305705131427203 ], [ -64.830728990288833, 18.305759781462143 ], [ -64.83053335657479, 18.305802026274421 ], [ -64.830292125285609, 18.305819963555848 ], [ -64.830156003112677, 18.305808899438318 ], [ -64.82994695834708, 18.305747040963183 ], [ -64.829780158393817, 18.305665568825248 ], [ -64.829655100338414, 18.305584431963553 ], [ -64.829530377559252, 18.305463397223548 ], [ -64.829395764129629, 18.305292071040412 ], [ -64.829345640324561, 18.30525569356314 ], [ -64.829249416029882, 18.305260890345608 ], [ -64.828975830578884, 18.305388630611333 ], [ -64.828722194067041, 18.305606727836675 ], [ -64.828521195932353, 18.305825160338316 ], [ -64.828383062101693, 18.306024314453396 ], [ -64.828307457298763, 18.306273927649784 ], [ -64.82839932300169, 18.306544830890516 ], [ -64.828625299219823, 18.307037184119451 ], [ -64.828799978165819, 18.307419062501765 ], [ -64.828912128084198, 18.307750149145875 ], [ -64.828941800035693, 18.307950644366088 ], [ -64.829001814491221, 18.308096320603568 ], [ -64.829054620506554, 18.308221881573388 ], [ -64.829115808429151, 18.308402595492623 ], [ -64.829142127617729, 18.308473841703858 ], [ -64.829112288028114, 18.30856017534802 ], [ -64.828997957504214, 18.308681714312058 ], [ -64.828670895485288, 18.308919257562138 ], [ -64.828312318804933, 18.309176580803467 ], [ -64.827995482712765, 18.309434074302317 ], [ -64.827647801202147, 18.309651333336944 ], [ -64.827394332328424, 18.309849481623189 ], [ -64.827252510458607, 18.310023657654767 ], [ -64.827129128784577, 18.310113342752175 ], [ -64.826941541701444, 18.310218451868423 ], [ -64.826592016171219, 18.3105032703848 ], [ -64.826324130417106, 18.31072471906333 ], [ -64.826285573643986, 18.310786912814763 ], [ -64.826132687656639, 18.310844412698145 ], [ -64.825327521651047, 18.311263340419998 ], [ -64.825012195611862, 18.311370796470328 ], [ -64.82485494972309, 18.311369455365138 ], [ -64.824541634031959, 18.311256802532398 ], [ -64.824416743614677, 18.311165607382065 ], [ -64.824239048491734, 18.311114142471865 ], [ -64.823787766608064, 18.311180359538696 ], [ -64.823503451006161, 18.311328216381753 ], [ -64.82328200232763, 18.311496525078326 ], [ -64.823154428390353, 18.311685620904711 ], [ -64.823016294559693, 18.311884607381671 ], [ -64.822887548465133, 18.312213848696501 ], [ -64.822884698616633, 18.312534037551529 ], [ -64.82297639668144, 18.312814999080842 ], [ -64.823152250404178, 18.313066791573135 ], [ -64.823444442379468, 18.313189335056393 ], [ -64.823946853897041, 18.313253540465553 ], [ -64.824302749676747, 18.31330668175724 ], [ -64.824595948790602, 18.313319086979845 ], [ -64.824711619109962, 18.313280027292308 ], [ -64.824995430487775, 18.313192352543012 ], [ -64.825132558489543, 18.31308338774943 ], [ -64.825260131117147, 18.31288423363435 ], [ -64.825356523049948, 18.312674853592455 ], [ -64.82543162493846, 18.312475364201134 ], [ -64.8255377398836, 18.312326166252944 ], [ -64.82566464195861, 18.312207143170724 ], [ -64.825801769960378, 18.312108069027602 ], [ -64.826022214119746, 18.312069847530779 ], [ -64.826346929204703, 18.312092647628049 ], [ -64.826671644289604, 18.312105386817336 ], [ -64.826932824517996, 18.312177638857349 ], [ -64.827319733354329, 18.312271013303587 ], [ -64.827601533074414, 18.312403447437362 ], [ -64.82777772076372, 18.312605116124587 ], [ -64.82788031530788, 18.312856238064285 ], [ -64.827888864853207, 18.313066456296838 ], [ -64.827835053008982, 18.313226215448083 ], [ -64.827697086816443, 18.313405085347767 ], [ -64.827673449838187, 18.313695266975003 ], [ -64.827691554757735, 18.314005565179571 ], [ -64.82754151861883, 18.314374704372653 ], [ -64.8273086692368, 18.314622976463909 ], [ -64.827118232305224, 18.314821626354842 ], [ -64.827011279169369, 18.315060847296024 ], [ -64.826840958815069, 18.315339797167667 ], [ -64.826650689521614, 18.315518330481325 ], [ -64.826460755504456, 18.315666859186592 ], [ -64.826291440979048, 18.3158455614481 ], [ -64.826174764830796, 18.315994759396233 ], [ -64.826079378726888, 18.316114116445135 ], [ -64.826014335127013, 18.316201289589685 ], [ -64.826010647087855, 18.316347470051255 ], [ -64.826024058139353, 18.31640295827691 ], [ -64.826006120857926, 18.316495997446793 ], [ -64.826012323469286, 18.316563889585439 ], [ -64.826022046481626, 18.316644020618298 ], [ -64.826058759235138, 18.316709065527846 ], [ -64.826166047647291, 18.316729683709866 ], [ -64.826279371032683, 18.316761702595386 ], [ -64.826363525380941, 18.316783998468509 ], [ -64.826486404140496, 18.316819036150321 ], [ -64.826607103604204, 18.316839151417923 ], [ -64.826691090314341, 18.316819874341036 ], [ -64.826796367068766, 18.316780645705649 ], [ -64.826912372664424, 18.316701520501681 ], [ -64.826986133447747, 18.316652068558881 ], [ -64.827133822652627, 18.316543271403418 ], [ -64.82726038945134, 18.316464312527899 ], [ -64.827355440279007, 18.316385020995483 ], [ -64.827471781150905, 18.316265830275086 ], [ -64.827609412067147, 18.316106909314612 ], [ -64.827715191736047, 18.31600766753337 ], [ -64.827811080754373, 18.315838353007905 ], [ -64.827916860423272, 18.315718994649387 ], [ -64.82804443305082, 18.315520008172427 ], [ -64.828150547995961, 18.315380700874755 ], [ -64.828204192202065, 18.315251116589479 ], [ -64.828310307147206, 18.315101751003169 ], [ -64.828416422092346, 18.314952553054979 ], [ -64.828564614211643, 18.314803690383144 ], [ -64.828648936198078, 18.314734288191516 ], [ -64.828816909618411, 18.314705622068914 ], [ -64.828995276603621, 18.314677123584431 ], [ -64.829184037153766, 18.314668740367551 ], [ -64.829424933166649, 18.314690702274106 ], [ -64.82966549259362, 18.314732779448207 ], [ -64.829853919177197, 18.314754404768792 ], [ -64.830000433605335, 18.314775694813079 ], [ -64.830125828246764, 18.314826656808862 ], [ -64.830459763429587, 18.314969652145692 ], [ -64.830668640557008, 18.315051459559982 ], [ -64.830856730554558, 18.315103092108302 ], [ -64.831003246292426, 18.31512438215259 ], [ -64.831254703508421, 18.315126393810317 ], [ -64.831464920431358, 18.315058165085702 ], [ -64.831714702575596, 18.314985913045689 ], [ -64.831895919409249, 18.314911649347891 ], [ -64.832032710825047, 18.314862699009836 ], [ -64.832169503550574, 18.314803858021264 ], [ -64.832285510455904, 18.314724732817297 ], [ -64.832444597744882, 18.314515855689876 ], [ -64.832571667458012, 18.314366825379864 ], [ -64.832709802598345, 18.314157780614323 ], [ -64.832784735539065, 18.313988130812561 ], [ -64.832722877063929, 18.313867598987031 ], [ -64.832636878696064, 18.313794844032543 ], [ -64.832556244748787, 18.313766010271763 ], [ -64.832420625490272, 18.313694931698706 ], [ -64.832300931855457, 18.313646484275125 ], [ -64.832169503550574, 18.313652686886428 ], [ -64.832054337455304, 18.313641790407075 ], [ -64.831803718430024, 18.313627541164806 ], [ -64.831639599377411, 18.313625529507078 ], [ -64.831466933398758, 18.313583452332978 ], [ -64.831301305602778, 18.313485384018691 ], [ -64.831187145336401, 18.313364349278743 ], [ -64.831094104856788, 18.313213307311003 ], [ -64.830991679260478, 18.312952294720787 ], [ -64.830900316472025, 18.312631267675044 ], [ -64.83080107338111, 18.312039840302987 ], [ -64.830731672499155, 18.311598951984308 ], [ -64.830660426287977, 18.311378172548643 ], [ -64.830620359461875, 18.311167619039793 ], [ -64.8305704046046, 18.310906941725875 ], [ -64.8305414032057, 18.310646432050078 ], [ -64.830543750139725, 18.31037619936194 ], [ -64.830546263402198, 18.31011602496244 ], [ -64.830445346549197, 18.309821149467155 ], [ -64.830299501363925, 18.309583438578954 ], [ -64.83011208060924, 18.309461734596084 ], [ -64.830050391081954, 18.309321084883607 ], [ -64.830051898515535, 18.309160990456121 ], [ -64.83009598734742, 18.309015983461506 ], [ -64.830185004511577, 18.308865110441616 ], [ -64.830313246382048, 18.308667800346143 ], [ -64.830451046246083, 18.308489433360876 ], [ -64.830636286395247, 18.30829513944235 ], [ -64.83088975526897, 18.308066985238042 ], [ -64.831059068484706, 18.307898341265172 ], [ -64.831239111851346, 18.307780491649908 ], [ -64.831469949575649, 18.307651576607498 ], [ -64.831860212484571, 18.307374472065135 ], [ -64.832240246847334, 18.307077417274002 ], [ -64.832472760953067, 18.306859152410482 ], [ -64.832652636681587, 18.306660501209876 ], [ -64.832790770512247, 18.306451456444279 ], [ -64.833013058691165, 18.306213075003541 ], [ -64.833140128404352, 18.306074102982166 ], [ -64.833340623624565, 18.305915517297933 ], [ -64.833543298140626, 18.305808061247603 ], [ -64.833735746729985, 18.305682667915903 ], [ -64.834120140994173, 18.305471611492635 ], [ -64.834276212106204, 18.305445627580298 ], [ -64.834414010660566, 18.305414111609196 ], [ -64.834529178065509, 18.305425008088605 ], [ -64.834685752092014, 18.305496421937903 ], [ -64.834779629452669, 18.305547216295565 ], [ -64.834894796857554, 18.305558112774918 ], [ -64.835020525465552, 18.305549227953293 ], [ -64.835136195784912, 18.305510168265755 ], [ -64.835305342672257, 18.305351414943345 ], [ -64.83546426363273, 18.305152596104563 ], [ -64.835497288347142, 18.30498261102656 ], [ -64.835468119310065, 18.304732159639457 ], [ -64.835334344071157, 18.304470811772944 ], [ -64.835252536656867, 18.304351118138129 ], [ -64.835116414483934, 18.304238800581629 ], [ -64.834980962863597, 18.304147605431297 ], [ -64.834885073845214, 18.304115754183954 ] ], [ [ -64.817407291209292, 18.295396392709733 ], [ -64.817334871531045, 18.295162705136988 ], [ -64.81722138050759, 18.295037982357883 ], [ -64.81710252506349, 18.294965731627485 ], [ -64.816983335652765, 18.294940919872488 ], [ -64.816863640708277, 18.294958857153915 ], [ -64.81676842224249, 18.295024738944505 ], [ -64.816687955933389, 18.295109563845358 ], [ -64.816551833760457, 18.295279716561538 ], [ -64.816406659127722, 18.295378455428363 ], [ -64.816241367917769, 18.295467303644671 ], [ -64.816031652599634, 18.295532179606369 ], [ -64.815777345535139, 18.295568054169223 ], [ -64.815603504779858, 18.295523797699161 ], [ -64.815439387036861, 18.295489096603376 ], [ -64.815295385871138, 18.295459424651881 ], [ -64.814972682443965, 18.295351968601608 ], [ -64.814723907438292, 18.295321458459398 ], [ -64.81453481161185, 18.295310226703748 ], [ -64.814330628352423, 18.295291618869726 ], [ -64.814207918540717, 18.295361021061353 ], [ -64.814135666500647, 18.295452886764281 ], [ -64.814084704504864, 18.295525306442471 ], [ -64.814004070557587, 18.295579118286696 ], [ -64.813963837403037, 18.295662266806119 ], [ -64.813965512474795, 18.295713061163781 ], [ -64.813996694479272, 18.295758491100798 ], [ -64.814072465610707, 18.295763017330671 ], [ -64.814142035440454, 18.295787324861578 ], [ -64.814201045376819, 18.295863935493344 ], [ -64.81423021441384, 18.295935516980876 ], [ -64.814279666356697, 18.295974073753996 ], [ -64.814364323619372, 18.295979605812704 ], [ -64.814438588626842, 18.296023024091994 ], [ -64.814462894848077, 18.296080188699136 ], [ -64.814492063885098, 18.296156631692782 ], [ -64.814526429704642, 18.296213963938044 ], [ -64.81456599361627, 18.296252353072987 ], [ -64.81460069340244, 18.296266937591554 ], [ -64.81465064956933, 18.296248329757532 ], [ -64.814695745539723, 18.296210611175127 ], [ -64.81472625437226, 18.296139532602069 ], [ -64.814791465610313, 18.296102149295962 ], [ -64.814866399860648, 18.296074153725954 ], [ -64.81494619561721, 18.296065268904329 ], [ -64.815030686551438, 18.296075494831086 ], [ -64.815105285525533, 18.296085720757844 ], [ -64.815164963395148, 18.296086223672319 ], [ -64.815249789605673, 18.296067951114594 ], [ -64.815329920638476, 18.296025706302316 ], [ -64.815459672561985, 18.295988825910626 ], [ -64.815599313826226, 18.295980444003419 ], [ -64.815793774073256, 18.295953621900424 ], [ -64.815942972021446, 18.295964350741599 ], [ -64.816052272091326, 18.295998548922967 ], [ -64.816220916064196, 18.296066610009461 ], [ -64.816290150617647, 18.296078344679529 ], [ -64.816418393797846, 18.296077171212517 ], [ -64.816594581487152, 18.296045990517769 ], [ -64.816808990673337, 18.296019168414716 ], [ -64.81694360410296, 18.295996537265239 ], [ -64.81711861832531, 18.295931493665364 ], [ -64.817173938912845, 18.295860582730484 ], [ -64.817264966425, 18.295723287090539 ], [ -64.817315593144485, 18.295628739177346 ], [ -64.817386168803125, 18.295524635889876 ], [ -64.817407291209292, 18.295396392709733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_135", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 15.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.940969828415234, 18.365352450276134 ], [ -64.940973516454392, 18.365386816095679 ], [ -64.940979048513157, 18.365438616282177 ], [ -64.941013245384852, 18.365534505300502 ], [ -64.941012576141929, 18.365620503668367 ], [ -64.941001847300754, 18.365706502036289 ], [ -64.940996147603812, 18.365792500404154 ], [ -64.941004529511019, 18.36585771164215 ], [ -64.941014420161537, 18.365876822390589 ], [ -64.941078959537322, 18.36593465755027 ], [ -64.941128414099467, 18.366006741952162 ], [ -64.941203179402009, 18.3660551893758 ], [ -64.941287836664742, 18.36610363679938 ], [ -64.941367632421247, 18.366142528848798 ], [ -64.941452458631829, 18.366171865523995 ], [ -64.941527225244045, 18.366215451441462 ], [ -64.941591933567622, 18.366273454239263 ], [ -64.941616742703275, 18.366283177251603 ], [ -64.941681787612822, 18.36628837403407 ], [ -64.94177197562459, 18.366293906092835 ], [ -64.941816736318742, 18.366318213623742 ], [ -64.941831488475373, 18.366361296626735 ], [ -64.941830650284658, 18.3664472949946 ], [ -64.941840036711085, 18.366533461000643 ], [ -64.94188949127323, 18.366610406908705 ], [ -64.941933746433563, 18.366687185178648 ], [ -64.9419682812009, 18.366763963448591 ], [ -64.942002645710716, 18.366840740408918 ], [ -64.942042040674608, 18.366917519988533 ], [ -64.942071377349805, 18.366998992126526 ], [ -64.942115801457931, 18.367071076528418 ], [ -64.94218034345306, 18.367128910378426 ], [ -64.942244547552548, 18.367248940599211 ], [ -64.942193754504558, 18.367320354448566 ], [ -64.94215301843559, 18.367396462165914 ], [ -64.942102390406433, 18.367467876015269 ], [ -64.94206165564708, 18.367543982423001 ], [ -64.942025947412731, 18.367620259088142 ], [ -64.942015218571555, 18.367706257456064 ], [ -64.94197448250253, 18.367782365173412 ], [ -64.941918826638755, 18.367848917516596 ], [ -64.9418633384131, 18.367915302221604 ], [ -64.941802653404977, 18.367976993058619 ], [ -64.941806844358553, 18.368063159064604 ], [ -64.941835679429005, 18.368100708699217 ], [ -64.94185545942031, 18.368134237637662 ], [ -64.941894854384145, 18.368211014597932 ], [ -64.94193424934798, 18.368287960506052 ], [ -64.941973645621488, 18.368364738775995 ], [ -64.942008011441033, 18.36844151835561 ], [ -64.94204237726052, 18.368518296625552 ], [ -64.942066683481755, 18.368599767453873 ], [ -64.942050925496233, 18.36868559949329 ], [ -64.942045225799291, 18.368771596551483 ], [ -64.942029467813768, 18.36885759622902 ], [ -64.94204371836571, 18.368943762235062 ], [ -64.942088142473835, 18.369020540505005 ], [ -64.942137594416636, 18.369092623597226 ], [ -64.94221739148287, 18.369136378462485 ], [ -64.942286961312618, 18.3691895184445 ], [ -64.942331551749248, 18.369261602846393 ], [ -64.942365917568793, 18.369338213478215 ], [ -64.942410341676975, 18.369410297880108 ], [ -64.94244973664081, 18.369487243788228 ], [ -64.942484102460298, 18.369563854420051 ], [ -64.942538584857118, 18.369631244953894 ], [ -64.942608323634659, 18.369689247751751 ], [ -64.942672864320116, 18.369747082911431 ], [ -64.942737403695901, 18.369804919380783 ], [ -64.942802113329151, 18.369862754540463 ], [ -64.942881907776041, 18.369901646589881 ], [ -64.942946448461441, 18.369959480439888 ], [ -64.943000930858261, 18.370026870973732 ], [ -64.943030267533459, 18.370108344421396 ], [ -64.943110064599693, 18.370152096667312 ], [ -64.940241273041408, 18.372349329820736 ], [ -64.940052009576846, 18.372102063558316 ], [ -64.939868110532871, 18.371773828072378 ], [ -64.939759816291826, 18.371420446864818 ], [ -64.939634758236423, 18.370960950712117 ], [ -64.939561500367461, 18.370701280536764 ], [ -64.939381959915238, 18.370236083377449 ], [ -64.939234269400743, 18.370002563442881 ], [ -64.939086246229238, 18.369589335417913 ], [ -64.938951800437735, 18.369172085387163 ], [ -64.938699169754727, 18.368567245653935 ], [ -64.938348806033787, 18.367923181214394 ], [ -64.938107910020847, 18.367488160230721 ], [ -64.937901882741869, 18.367151207561278 ], [ -64.937699543502106, 18.366873597485096 ], [ -64.937493180946831, 18.36657905857578 ], [ -64.937158910487653, 18.36613900844776 ], [ -64.936810893700738, 18.365646319942584 ], [ -64.936373190506743, 18.365191182381636 ], [ -64.935777739819287, 18.364734703715499 ], [ -64.935275663578011, 18.364429602293399 ], [ -64.934836284002586, 18.364155011013565 ], [ -64.934271343457283, 18.363819231811135 ], [ -64.93361151972249, 18.363512956922023 ], [ -64.932857652298594, 18.363145661748547 ], [ -64.932260357591531, 18.362899904229437 ], [ -64.931663398160765, 18.362624139482534 ], [ -64.931195686429305, 18.362486174599724 ], [ -64.93082369738778, 18.362376537943874 ], [ -64.930205952136816, 18.362224657785362 ], [ -64.929616536422486, 18.362216612464124 ], [ -64.928890830897103, 18.362241087633151 ], [ -64.928265540620032, 18.362400511508099 ], [ -64.927530279720429, 18.362712317146304 ], [ -64.927043793826556, 18.363022615350815 ], [ -64.926737016023026, 18.363284633769922 ], [ -64.926450522434948, 18.36354715510339 ], [ -64.926089429872718, 18.36410756941882 ], [ -64.925871667923673, 18.364606795811596 ], [ -64.925712076410605, 18.365047348854034 ], [ -64.92558919765105, 18.365537187510824 ], [ -64.92556338137689, 18.365810436375853 ], [ -64.925619038550337, 18.366065582940735 ], [ -64.925714424654302, 18.36633816256284 ], [ -64.925887259580747, 18.36667528287046 ], [ -64.926065289979988, 18.367057496529071 ], [ -64.926337199049556, 18.367495871585334 ], [ -64.92668035564003, 18.367793764567182 ], [ -64.926873976386673, 18.367984872051352 ], [ -64.927230375080796, 18.368221912386957 ], [ -64.928329746029135, 18.368772771328167 ], [ -64.928989905040225, 18.369049037679815 ], [ -64.929900347800299, 18.369568214321475 ], [ -64.930590849315422, 18.369965181446446 ], [ -64.931062583052665, 18.370149583404839 ], [ -64.931818966358378, 18.370545209424677 ], [ -64.932633183514099, 18.370915017860682 ], [ -64.933187730494467, 18.371207378783822 ], [ -64.933731885219572, 18.371556066123333 ], [ -64.934171432433118, 18.371800482537253 ], [ -64.934588514825748, 18.372025955840968 ], [ -64.935136523918459, 18.372502048169906 ], [ -64.935459562621929, 18.372745961669466 ], [ -64.935806070665592, 18.373047375052352 ], [ -64.93618895618647, 18.373314757892047 ], [ -64.936583576377473, 18.37361667418935 ], [ -64.936930252059256, 18.373906688178522 ], [ -64.937319843105911, 18.37433466836012 ], [ -64.934805104617453, 18.376497703332177 ], [ -64.934728995590376, 18.37645730253945 ], [ -64.934645848380626, 18.37642343963438 ], [ -64.934590358845298, 18.376409693306584 ], [ -64.934555657749513, 18.37640282014263 ], [ -64.934472510539763, 18.37636895723756 ], [ -64.934389360710668, 18.376341798548594 ], [ -64.934306213500918, 18.376307935643467 ], [ -64.934223232619615, 18.376274074048069 ], [ -64.934154164394613, 18.376220597480142 ], [ -64.93411309435902, 18.376147171973059 ], [ -64.934036986641615, 18.376106771180332 ], [ -64.933967918416613, 18.376053126974284 ], [ -64.933891810699265, 18.376006188293957 ], [ -64.933822743783935, 18.375952544087852 ], [ -64.93376071767068, 18.375892361994147 ], [ -64.93369165075535, 18.375838716478427 ], [ -64.933643707555802, 18.375765292281017 ], [ -64.933574640640472, 18.375711648074969 ], [ -64.93350557241547, 18.375658002559192 ], [ -64.933429464698122, 18.375617603076137 ], [ -64.93336743858481, 18.375557420982489 ], [ -64.933319495385319, 18.375483995475406 ], [ -64.933250428469989, 18.375430351269301 ], [ -64.933181361554659, 18.375376707063253 ], [ -64.93314732970174, 18.375296911306691 ], [ -64.933085303588484, 18.375236729212986 ], [ -64.933016236673154, 18.375176379481161 ], [ -64.932947169757824, 18.375122735275056 ], [ -64.932885143644569, 18.375062553181351 ], [ -64.932830159643004, 18.374995833200046 ], [ -64.932768133529692, 18.374928945580621 ], [ -64.932706107416436, 18.374868763486916 ], [ -64.932651122105199, 18.374801875867433 ], [ -64.932582055189869, 18.374748230351713 ], [ -64.932512988274539, 18.374694587455281 ], [ -64.932429838445444, 18.374667430075988 ], [ -64.932360771530114, 18.374613785869883 ], [ -64.932291704614784, 18.374560140354163 ], [ -64.932215598207108, 18.374519740871108 ], [ -64.932139490489703, 18.374479340078381 ], [ -64.932063381462683, 18.37443893928571 ], [ -64.931987441383399, 18.374392000605383 ], [ -64.931911334975723, 18.374351599812655 ], [ -64.931849307552739, 18.37429125008083 ], [ -64.93179432355123, 18.374217824573748 ], [ -64.931718214524153, 18.3741641803677 ], [ -64.931642274444926, 18.374117074049195 ], [ -64.931601204409333, 18.37404381618029 ], [ -64.931560133064067, 18.373970558311385 ], [ -64.931504980114653, 18.373903670691902 ], [ -64.931463907459715, 18.373830412822997 ], [ -64.931401881346403, 18.373770230729292 ], [ -64.931325942576848, 18.373716586523187 ], [ -64.931242794057425, 18.373689261505717 ], [ -64.931159645538003, 18.373648860713047 ], [ -64.931083537820655, 18.37360845992032 ], [ -64.931000556939352, 18.373574597015249 ], [ -64.93091740841993, 18.373540734110122 ], [ -64.930834259900507, 18.373506871205052 ], [ -64.930758152183159, 18.373466470412325 ], [ -64.930709704759522, 18.373446186196929 ], [ -64.930675002354064, 18.373432775145432 ], [ -64.930591855144314, 18.373405450127962 ], [ -64.930501833460994, 18.373378292748612 ], [ -64.930411476501376, 18.373370916670297 ], [ -64.930321119541759, 18.373370246117702 ], [ -64.930230930220262, 18.373349626626009 ], [ -64.930147781700839, 18.373315763720882 ], [ -64.930071673983491, 18.373275362928212 ], [ -64.929988525464012, 18.373241500023084 ], [ -64.929919626186859, 18.373187855817037 ], [ -64.929843518469454, 18.373140749498532 ], [ -64.929767410752106, 18.373093810818261 ], [ -64.929691303034701, 18.373053410025534 ], [ -64.929608322153456, 18.373019547120464 ], [ -64.929525173634033, 18.372979146327737 ], [ -64.929442025114611, 18.372945283422666 ], [ -64.929372958199281, 18.372891639216562 ], [ -64.929317972888043, 18.372824751597136 ], [ -64.929241865170638, 18.372784350804409 ], [ -64.929165757453291, 18.372743950011738 ], [ -64.929089817374063, 18.372697011331411 ], [ -64.92900666885464, 18.372656442900563 ], [ -64.928930561137236, 18.372616042107836 ], [ -64.928847412617813, 18.372582179202766 ], [ -64.928778345702483, 18.372528534996661 ], [ -64.928723360391245, 18.372461815015356 ], [ -64.92866133427799, 18.372401632921651 ], [ -64.92857131259467, 18.372367770016581 ], [ -64.928488164075247, 18.372333907111511 ], [ -64.928412056357843, 18.372293506318783 ], [ -64.928357071046605, 18.372226618699301 ], [ -64.928316167339517, 18.372140117417018 ], [ -64.928281969158093, 18.372060154022336 ], [ -64.928219943044837, 18.371999971928631 ], [ -64.928171998535674, 18.371926546421548 ], [ -64.928123886388335, 18.371853288552643 ], [ -64.928068901077097, 18.371786400933161 ], [ -64.92801391576586, 18.371719680951855 ], [ -64.92794484885053, 18.371666036745808 ], [ -64.927875781935199, 18.371612392539703 ], [ -64.927813755821944, 18.371552210445998 ], [ -64.927765812622397, 18.371478784938915 ], [ -64.927703785199469, 18.371411898629162 ], [ -64.927627677482064, 18.371364958639163 ], [ -64.927544528962642, 18.371337633621692 ], [ -64.927489543651404, 18.371270913640387 ], [ -64.927420644374251, 18.371210563908562 ], [ -64.927358450622819, 18.371150381814857 ], [ -64.927296424509564, 18.371090199721152 ], [ -64.927213443628261, 18.371056336816082 ], [ -64.927158290678904, 18.370989616834777 ], [ -64.927124260135656, 18.370909653440037 ], [ -64.927055194529999, 18.370856010543662 ], [ -64.926979085502978, 18.370815608441262 ], [ -64.926908509844338, 18.370767328655802 ], [ -64.926813291378551, 18.370708152390989 ], [ -64.926744224463221, 18.370654509494557 ], [ -64.926682198349909, 18.370587620565459 ], [ -64.926599386416456, 18.370527270833577 ], [ -64.926523277389435, 18.370486870040907 ], [ -64.926454210474105, 18.370433225834802 ], [ -64.926378102756701, 18.370386119516354 ], [ -64.926301995039353, 18.370345718723627 ], [ -64.926212140994153, 18.370305317930956 ], [ -64.92612899247473, 18.370271455025829 ], [ -64.92603897079141, 18.370237593430431 ], [ -64.925948781469913, 18.370216972629066 ], [ -64.92586563295049, 18.370189647611596 ], [ -64.925789526542815, 18.370136003405491 ], [ -64.925720459627485, 18.370082360509116 ], [ -64.92563747743651, 18.370041958406716 ], [ -64.925547289424742, 18.370021338915024 ], [ -64.925464139595647, 18.369994181535674 ], [ -64.925380992385897, 18.369960318630604 ], [ -64.925297842556802, 18.369926455725476 ], [ -64.925214695347051, 18.369899298346184 ], [ -64.925138587629647, 18.369858897553456 ], [ -64.925062647550419, 18.369811792544681 ], [ -64.924993580635089, 18.369758148338576 ], [ -64.924910430805994, 18.369724285433506 ], [ -64.924855445494757, 18.369657565452201 ], [ -64.924786378579427, 18.369603919936424 ], [ -64.924710272171751, 18.369556813617976 ], [ -64.924669199516757, 18.369483555749071 ], [ -64.924621256317266, 18.36941013155166 ], [ -64.924552189401936, 18.369356487345556 ], [ -64.924511116746999, 18.36928322947665 ], [ -64.924470045401677, 18.369209802659896 ], [ -64.924429141694588, 18.369130008213006 ], [ -64.924360076088931, 18.369076362697285 ], [ -64.924276927569508, 18.369042499792215 ], [ -64.924228815422168, 18.368969075594805 ], [ -64.924166955637361, 18.36890218666565 ], [ -64.924111971635796, 18.36882876246824 ], [ -64.92404994552254, 18.368768580374592 ], [ -64.924036199194688, 18.368741924599988 ], [ -64.924008874177218, 18.36868861567018 ], [ -64.923953887556308, 18.368621895688875 ], [ -64.923891861443053, 18.368561713595227 ], [ -64.923822794527723, 18.368508069389122 ], [ -64.923767810526158, 18.36844118176964 ], [ -64.923705784412903, 18.368374295459887 ], [ -64.923636885135693, 18.368314113366182 ], [ -64.923574859022438, 18.368253931272477 ], [ -64.923519706073023, 18.368187043653052 ], [ -64.92347176156386, 18.368113784474417 ], [ -64.923423817054697, 18.368040360277007 ], [ -64.923361790941385, 18.367980178183359 ], [ -64.923299597189953, 18.367919828451477 ], [ -64.923237571076697, 18.367859646357829 ], [ -64.923175544963385, 18.367799464264124 ], [ -64.923113517540457, 18.367739282170419 ], [ -64.923051491427202, 18.367679100076714 ], [ -64.922996507425637, 18.367612212457232 ], [ -64.9229415221144, 18.367538785640534 ], [ -64.92288653549349, 18.367472066968844 ], [ -64.922831551491925, 18.367405179349419 ], [ -64.922776566180687, 18.367331752532664 ], [ -64.922707499265357, 18.367278109636288 ], [ -64.92265251395412, 18.367211388345254 ], [ -64.922611442608854, 18.367138130476349 ], [ -64.922556457297617, 18.367071244166596 ], [ -64.922501304348259, 18.367004524185234 ], [ -64.922439278234947, 18.366944342091585 ], [ -64.922398206889682, 18.366870916584503 ], [ -64.922350262380519, 18.366797491077421 ], [ -64.922302317871299, 18.366724233208515 ], [ -64.922254204414287, 18.36665080639176 ], [ -64.922213134378694, 18.366577549832471 ], [ -64.922165189869531, 18.366504124325388 ], [ -64.922103163756219, 18.36644394223174 ], [ -64.922048010806861, 18.366377054612258 ], [ -64.921972070727634, 18.36633011593193 ], [ -64.921903003812304, 18.36627647041621 ], [ -64.921875846432954, 18.3661965083312 ], [ -64.921834942725866, 18.36611654493646 ], [ -64.921869811459771, 18.36608586715613 ], [ -64.921899651049443, 18.366023841042875 ], [ -64.921944242795746, 18.365953097746115 ], [ -64.921945080986461, 18.365869446312217 ], [ -64.921945751538999, 18.365785627240257 ], [ -64.921955306913219, 18.365702143444537 ], [ -64.921982296654392, 18.365618659648817 ], [ -64.921991684390491, 18.365535008214977 ], [ -64.922009956948159, 18.36545135678108 ], [ -64.922037114327509, 18.365359491078209 ], [ -64.922064104068681, 18.365276007282489 ], [ -64.922091261448031, 18.365184141579562 ], [ -64.922109534005699, 18.365100657783842 ], [ -64.922154125752002, 18.365000577811884 ], [ -64.922190000314856, 18.364917094016164 ], [ -64.922260911249737, 18.364817181682326 ], [ -64.922279183807461, 18.364733697886606 ], [ -64.922323607915587, 18.364658595998094 ], [ -64.922376916845394, 18.364583661747758 ], [ -64.922421340953576, 18.364508727497366 ], [ -64.922474649883327, 18.364442175154238 ], [ -64.922510356808004, 18.364358691358518 ], [ -64.92251924162963, 18.364350477089431 ], [ -64.922572382921317, 18.364275542839096 ], [ -64.922616973357947, 18.364200608588703 ], [ -64.922670115959249, 18.364134056245518 ], [ -64.922723424889057, 18.364059121995183 ], [ -64.922750414630229, 18.363967256292256 ], [ -64.922795006376532, 18.36389232204192 ], [ -64.922839430484714, 18.363817220153408 ], [ -64.922892570466672, 18.363750667810223 ], [ -64.922972367532907, 18.363642541207355 ], [ -64.923025676462657, 18.363559225049755 ], [ -64.923131959045975, 18.363451266085008 ], [ -64.923185100337605, 18.36338471374188 ], [ -64.923238409267412, 18.363293015677073 ], [ -64.923283001013715, 18.363218081426737 ], [ -64.923336142305345, 18.363143147176345 ], [ -64.923389283597032, 18.363076594833217 ], [ -64.923451142072167, 18.363018424397239 ], [ -64.923513334513871, 18.362926893970609 ], [ -64.923557927569846, 18.362851959720217 ], [ -64.923620288959455, 18.362718519757607 ], [ -64.923664879396085, 18.362643585507215 ], [ -64.923727408423758, 18.362501763637397 ], [ -64.92375439947466, 18.362418279841677 ], [ -64.923808042371036, 18.362309817962512 ], [ -64.923861183662723, 18.362243265619384 ], [ -64.923914326264025, 18.362176714585871 ], [ -64.923967635193833, 18.362101779025807 ], [ -64.924003508446958, 18.362001699053849 ], [ -64.924039384319428, 18.361918216567801 ], [ -64.924119681680736, 18.361751416614538 ], [ -64.924164107098591, 18.361676481054531 ], [ -64.924244070493273, 18.361559804906278 ], [ -64.924297210475231, 18.361485039603735 ], [ -64.924341803531206, 18.361409936405551 ], [ -64.924403660696669, 18.361343551700543 ], [ -64.924465688119653, 18.361276999357358 ], [ -64.924536765383039, 18.361151942611627 ], [ -64.924590075622461, 18.361077174689683 ], [ -64.924643215604476, 18.361010622346555 ], [ -64.924723346637279, 18.360868800476737 ], [ -64.924785206422087, 18.36081079767888 ], [ -64.924838346404044, 18.360744246645368 ], [ -64.924953681447164, 18.360586162565937 ], [ -64.925024424743924, 18.360527993439632 ], [ -64.925086284528732, 18.360469990641832 ], [ -64.925148141694194, 18.360403438298647 ], [ -64.925227769812579, 18.360320457417345 ], [ -64.925280912413882, 18.360253903764544 ], [ -64.925342769579345, 18.360195734638239 ], [ -64.925501522901754, 18.360096491547324 ], [ -64.925580815743842, 18.360046870656674 ], [ -64.92564267552865, 18.359988869168546 ], [ -64.925704532694112, 18.359930697422897 ], [ -64.925775108352752, 18.359881076532247 ], [ -64.925898657664845, 18.359789881381914 ], [ -64.925969234633158, 18.359740260491321 ], [ -64.926133518704603, 18.359613693692609 ], [ -64.926234270538828, 18.359499533426174 ], [ -64.926304844887795, 18.359441530628374 ], [ -64.926384473006181, 18.359366931654279 ], [ -64.926437615607483, 18.359300379311094 ], [ -64.926490755589498, 18.359233825658293 ], [ -64.926570048431586, 18.359192586674851 ], [ -64.926640624090226, 18.359142799455753 ], [ -64.926763670487901, 18.359093681479578 ], [ -64.926842964639718, 18.359052442496136 ], [ -64.926930805717461, 18.359027967327108 ], [ -64.927036417748184, 18.358986895981843 ], [ -64.927124260135656, 18.358954206543785 ], [ -64.927203552977744, 18.358912967560343 ], [ -64.927282845819889, 18.358871728576901 ], [ -64.927370855845481, 18.358838871500666 ], [ -64.927529273891537, 18.358756393533838 ], [ -64.927599849550177, 18.358706772643245 ], [ -64.927679142392321, 18.35866553235013 ], [ -64.927766984779737, 18.358649440397983 ], [ -64.927863376712537, 18.358641895371818 ], [ -64.927910147754744, 18.358621612466038 ], [ -64.927972006229879, 18.358681626921623 ], [ -64.928045934651379, 18.358727055548968 ], [ -64.928084323786322, 18.358801991109033 ], [ -64.928089688206967, 18.358810205378063 ], [ -64.928161269694442, 18.358849600341898 ], [ -64.928223295807697, 18.35890961348781 ], [ -64.928281969158093, 18.358972814377751 ], [ -64.928356735770365, 18.359015225518476 ], [ -64.92842496449498, 18.359066356462108 ], [ -64.928493360857715, 18.359117652424516 ], [ -64.92855203420811, 18.359180853314456 ], [ -64.928620430570845, 18.359231981638686 ], [ -64.92868865929546, 18.359283280220438 ], [ -64.92872872481189, 18.359358214470774 ], [ -64.92876560520358, 18.359433147411494 ], [ -64.92879930047053, 18.359510931510329 ], [ -64.928861158945665, 18.359571113604034 ], [ -64.928907427073398, 18.359643030367806 ], [ -64.928928717117685, 18.359723833262876 ], [ -64.928968614995938, 18.359798767513212 ], [ -64.929011697998931, 18.359870684276984 ], [ -64.929086296973026, 18.359915946575882 ], [ -64.929130050528613, 18.359928184160424 ], [ -64.9291672661966, 18.359946455408419 ], [ -64.929245217933556, 18.359982834195364 ], [ -64.929332389768433, 18.360010494489131 ], [ -64.929413358991951, 18.360040835683492 ], [ -64.929487957966046, 18.360086265620509 ], [ -64.929562556940141, 18.360128510432787 ], [ -64.929650064051316, 18.360135217268237 ], [ -64.929737403524314, 18.360137564202262 ], [ -64.929822228425166, 18.360171762383629 ], [ -64.929912417746664, 18.360167571430054 ], [ -64.929997745561934, 18.360139574550317 ], [ -64.930052898511349, 18.360130523400187 ], [ -64.930087934883431, 18.360125997170314 ], [ -64.930163539686362, 18.360078723213689 ], [ -64.930248867501689, 18.360055589149852 ], [ -64.930329166172669, 18.360022730763944 ], [ -64.930399741831252, 18.359970596610822 ], [ -64.930485069646579, 18.359952156414977 ], [ -64.930570229823729, 18.359933716219132 ], [ -64.930660586783347, 18.359915274713615 ], [ -64.930750776104787, 18.359915946575882 ], [ -64.930835936281937, 18.359897506380037 ], [ -64.930921430425713, 18.359869509500356 ], [ -64.931011621056882, 18.359855932120354 ], [ -64.931101810378323, 18.359842184482829 ], [ -64.931186802917352, 18.359862133421984 ], [ -64.931271795456382, 18.359881914722962 ], [ -64.931351591212888, 18.359915946575882 ], [ -64.931426356515431, 18.359959532493349 ], [ -64.931500955489525, 18.360007978607257 ], [ -64.93158075255576, 18.360046870656674 ], [ -64.931670940567528, 18.360047542518942 ], [ -64.931756102054351, 18.360029102323097 ], [ -64.931846291375848, 18.360024911369464 ], [ -64.931941508531963, 18.360011331370174 ], [ -64.932031531524956, 18.360026418803102 ], [ -64.932106298137171, 18.360070004720569 ], [ -64.932181063439771, 18.36011359063798 ], [ -64.932260860505949, 18.360152482687397 ], [ -64.932345685406801, 18.360186682178437 ], [ -64.932425481163364, 18.360220711412012 ], [ -64.932510306064216, 18.360250049396882 ], [ -64.932590100511106, 18.360293801642797 ], [ -64.932649613361889, 18.360361193486369 ], [ -64.932704094449036, 18.36042858271054 ], [ -64.932743489412871, 18.360505362290212 ], [ -64.932818257334759, 18.360548948207622 ], [ -64.932903082235612, 18.3605687295086 ], [ -64.932988073464969, 18.360588509499962 ], [ -64.933067870531204, 18.36062740154938 ], [ -64.933142637143419, 18.36067098746679 ], [ -64.933222431590252, 18.360709879516207 ], [ -64.933266855698434, 18.3607819639181 ], [ -64.933296192373632, 18.360863437365765 ], [ -64.933330559502849, 18.360940215635708 ], [ -64.933379174564607, 18.360998887676431 ], [ -64.933384034761104, 18.361008610688828 ], [ -64.93342342972494, 18.36108538895877 ], [ -64.933472884287085, 18.361162168538385 ], [ -64.933497190508263, 18.361243639366705 ], [ -64.93353155763748, 18.361320417636648 ], [ -64.933551002352488, 18.36140188977464 ], [ -64.933575311193067, 18.361483361912633 ], [ -64.933634821424505, 18.361550752446476 ], [ -64.93371461849074, 18.361584782989723 ], [ -64.933794414247245, 18.361618982480763 ], [ -64.933874208694135, 18.361657874530181 ], [ -64.933954004450698, 18.361691903763756 ], [ -64.93403882935155, 18.361721240438953 ], [ -64.93412382189058, 18.361750578423823 ], [ -64.934208646791433, 18.361779913789348 ], [ -64.934293471692285, 18.361804556596496 ], [ -64.934378465540988, 18.361833894581366 ], [ -64.93446329044184, 18.361863229946948 ], [ -64.93454308488873, 18.361897260490139 ], [ -64.934622880645236, 18.361936152539556 ], [ -64.934707874493938, 18.361955933840534 ], [ -64.934787668940771, 18.361990132021901 ], [ -64.934867464697334, 18.362024162565149 ], [ -64.934947260453896, 18.362058193108396 ], [ -64.935032252992869, 18.362082835915544 ], [ -64.935112048749431, 18.362116866458791 ], [ -64.935196873650284, 18.362141510575611 ], [ -64.935206931938922, 18.362141510575611 ], [ -64.935282369103732, 18.362113513695931 ], [ -64.935362667774712, 18.362080656619696 ], [ -64.935452857096209, 18.362071771798071 ], [ -64.935718563554417, 18.362035561958976 ], [ -64.935808752875914, 18.362026678446966 ], [ -64.935879328534554, 18.361974710622349 ], [ -64.935964656349825, 18.361951407610661 ], [ -64.936049984165095, 18.361928273546766 ], [ -64.936140173486592, 18.361928944099361 ], [ -64.936210413868935, 18.361925758974621 ], [ -64.936230195169912, 18.361924754455458 ], [ -64.93631552298524, 18.361901619081891 ], [ -64.93640085080051, 18.361883178886046 ], [ -64.93648617861578, 18.361859878493703 ], [ -64.93656161578059, 18.361817464733633 ], [ -64.93663219143923, 18.361765496908959 ], [ -64.93670762860404, 18.361722916820383 ], [ -64.936762949191575, 18.361694753612198 ], [ -64.936782898130673, 18.361699616428041 ], [ -64.93679295641931, 18.361704476624539 ], [ -64.936797315011063, 18.361771531882141 ], [ -64.936782227578135, 18.361795336498574 ], [ -64.93674149150911, 18.361871445525651 ], [ -64.936750711607033, 18.361957611531693 ], [ -64.93678004828223, 18.362039082359956 ], [ -64.936814414101775, 18.362115860629956 ], [ -64.936845259520283, 18.362140000522686 ], [ -64.936875099109898, 18.362178558605478 ], [ -64.936904603423216, 18.362236058488861 ], [ -64.936914494073733, 18.362255335565749 ], [ -64.936958918181915, 18.362327419967642 ], [ -64.93699831314575, 18.362404199547257 ], [ -64.937007533243673, 18.362490196605506 ], [ -64.937051957351798, 18.362562281007399 ], [ -64.937121694819723, 18.362615423608702 ], [ -64.937161089783558, 18.362692200568972 ], [ -64.937180368170118, 18.362773672706965 ], [ -64.937199646556678, 18.362855144844957 ], [ -64.937234012376166, 18.3629319231149 ], [ -64.937233341823628, 18.363017921482765 ], [ -64.937252955486485, 18.363065865991985 ], [ -64.937277765931753, 18.363090005884715 ], [ -64.937362758470783, 18.363114648691862 ], [ -64.937452780154103, 18.363115319244457 ], [ -64.937542969475601, 18.363115989797052 ], [ -64.937633158797041, 18.36311666034959 ], [ -64.937728209624709, 18.363117498540305 ], [ -64.937818231308029, 18.36312286296095 ], [ -64.937908420629526, 18.363123701151665 ], [ -64.937998442312846, 18.363129065572252 ], [ -64.938083770128117, 18.363105931508414 ], [ -64.938159039654806, 18.363101740554782 ], [ -64.938168762667146, 18.363125712809392 ], [ -64.938213186775272, 18.363197797211285 ], [ -64.938282924243197, 18.363250770864795 ], [ -64.938372945926517, 18.36326585829778 ], [ -64.938522646789124, 18.363310114767785 ], [ -64.938677376796022, 18.36337348198623 ], [ -64.938767398479342, 18.363388569419158 ], [ -64.938857420162662, 18.363403489213965 ], [ -64.938926989992467, 18.363456630505652 ], [ -64.93898147238923, 18.363524021039552 ], [ -64.939056239001445, 18.363567606956963 ], [ -64.939131005613717, 18.36361119287443 ], [ -64.939210801370223, 18.363645391055798 ], [ -64.939246843571198, 18.36365142602898 ], [ -64.93929160295562, 18.36367556592171 ], [ -64.93937156635036, 18.363709764103078 ], [ -64.939451362106865, 18.363748656152495 ], [ -64.939531157863428, 18.363782686695743 ], [ -64.939605924475643, 18.363826272613153 ], [ -64.939680523449738, 18.36387472003679 ], [ -64.939750260917606, 18.36392786132842 ], [ -64.939824859891701, 18.363971447245888 ], [ -64.939899626503916, 18.364015033163298 ], [ -64.939969363971841, 18.364068174454928 ], [ -64.940023846368661, 18.364140258856878 ], [ -64.940068270476786, 18.364212343258771 ], [ -64.940142869450881, 18.364260790682408 ], [ -64.940217636063096, 18.364309070467868 ], [ -64.940287204583171, 18.364362211759556 ], [ -64.940336322559403, 18.364434799075866 ], [ -64.940351411302004, 18.364455083291318 ], [ -64.940353758236029, 18.364458436054178 ], [ -64.940368844359341, 18.364474529315999 ], [ -64.940401367468951, 18.364492298959249 ], [ -64.940481163225456, 18.364526329502496 ], [ -64.940560958982019, 18.364565221551914 ], [ -64.940640753428909, 18.364599252095161 ], [ -64.940715521350796, 18.364642838012571 ], [ -64.940759945458922, 18.364714922414521 ], [ -64.940799340422757, 18.364791700684464 ], [ -64.940838735386649, 18.364868646592527 ], [ -64.940878130350484, 18.364945424862526 ], [ -64.940917525314319, 18.365022203132469 ], [ -64.940956920278154, 18.365098981402411 ], [ -64.940976197355042, 18.365180453540404 ], [ -64.940980557256466, 18.365266451908269 ], [ -64.940969828415234, 18.365352450276134 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1156", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.906277287391276, 18.312058112860711 ], [ -64.906277957943871, 18.311974796703112 ], [ -64.906278796134586, 18.311891648183689 ], [ -64.906297571606672, 18.311808499664266 ], [ -64.906309138638619, 18.311739265110816 ], [ -64.906320704360894, 18.311654943124381 ], [ -64.906328752301476, 18.311571794604959 ], [ -64.906333109583557, 18.311488646085536 ], [ -64.906315676526219, 18.311405163599488 ], [ -64.906301930198424, 18.311321846132273 ], [ -64.906237054236726, 18.311262334591106 ], [ -64.906165137472954, 18.311182035920183 ], [ -64.906126413061656, 18.311150519949081 ], [ -64.906126579390161, 18.311122524379016 ], [ -64.906126579390161, 18.311118668701738 ], [ -64.906111157990551, 18.311037365511538 ], [ -64.906076624532886, 18.311001658586861 ], [ -64.908714913643166, 18.31062849476865 ], [ -64.908385672328336, 18.310900571476395 ], [ -64.908004629517393, 18.311115986491416 ], [ -64.907800447567638, 18.311307932166301 ], [ -64.907667510519445, 18.311559221744176 ], [ -64.90754731266054, 18.311851582667316 ], [ -64.907526359202222, 18.312001283529867 ], [ -64.907595089531583, 18.312497660074257 ], [ -64.907707574726203, 18.312796223608757 ], [ -64.907769099234713, 18.31297744044241 ], [ -64.907846211471281, 18.313204254851257 ], [ -64.907964396362786, 18.313420340418872 ], [ -64.908045700862658, 18.313557133144343 ], [ -64.908172604247341, 18.31365855422149 ], [ -64.908359854744504, 18.313695937527598 ], [ -64.908626568341276, 18.313682191199803 ], [ -64.908617180605233, 18.314338159257261 ], [ -64.908587676291859, 18.314417116823051 ], [ -64.908518775705033, 18.314468078818834 ], [ -64.908439147586591, 18.314505294486821 ], [ -64.908370249619111, 18.314556424120724 ], [ -64.908290787829173, 18.314593639788711 ], [ -64.908236137794233, 18.314658515750409 ], [ -64.908177967358256, 18.314720038949304 ], [ -64.908152486360393, 18.314746861052299 ], [ -64.908062298348568, 18.314782400338856 ], [ -64.907949645515828, 18.314791788074899 ], [ -64.907862472371278, 18.314780723957426 ], [ -64.90777915752335, 18.314755745873924 ], [ -64.907695841365808, 18.314730935428656 ], [ -64.907612691536713, 18.314695563780276 ], [ -64.907540439496643, 18.314649798566961 ], [ -64.90747187549573, 18.314597327827869 ], [ -64.907406999534032, 18.314537816286759 ], [ -64.90733843553312, 18.314485177909546 ], [ -64.907269871532208, 18.314432539532334 ], [ -64.907208683609667, 18.314373195629344 ], [ -64.907151183726285, 18.314310331325316 ], [ -64.907082619725372, 18.314247299383226 ], [ -64.906999472515622, 18.314211927734789 ], [ -64.906894363399317, 18.314172868047251 ], [ -64.906818589648594, 18.314130623234973 ], [ -64.906771987554237, 18.314060885767049 ], [ -64.906750865148069, 18.313977569609506 ], [ -64.906726053393072, 18.313897438576646 ], [ -64.906705098625082, 18.313803728854168 ], [ -64.906658496530724, 18.313733991386243 ], [ -64.906619269205009, 18.313657380754478 ], [ -64.906594457450069, 18.313577249721618 ], [ -64.906573503991694, 18.313493933564075 ], [ -64.906541651434679, 18.3133998885653 ], [ -64.906531091541297, 18.313351273503542 ], [ -64.906513320588374, 18.313319254618023 ], [ -64.906499406622402, 18.313235938460423 ], [ -64.906481973565064, 18.31315245466476 ], [ -64.906446434278564, 18.313075844032937 ], [ -64.906421622523567, 18.312995880638255 ], [ -64.906393292986934, 18.312915917243572 ], [ -64.906379545349409, 18.312832601085972 ], [ -64.906362112292129, 18.312749117290252 ], [ -64.906344676615504, 18.312665801132709 ], [ -64.906338140037519, 18.31258248497511 ], [ -64.906331602149919, 18.312499168817567 ], [ -64.906317688183947, 18.312415685021847 ], [ -64.906293213014919, 18.312314934497294 ], [ -64.906290363166477, 18.312228265576834 ], [ -64.906280137239719, 18.312141429018254 ], [ -64.906277287391276, 18.312058112860711 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_151", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.868090664531906, 18.346960536840982 ], [ -64.868082450262875, 18.347046199932549 ], [ -64.86805931619898, 18.347131695385997 ], [ -64.86802126364995, 18.347209814761072 ], [ -64.868005504354755, 18.34729531021452 ], [ -64.867989746369233, 18.347380973306088 ], [ -64.867981532100146, 18.347466468759535 ], [ -64.867980861547608, 18.347552131851103 ], [ -64.867942640050785, 18.347630418864355 ], [ -64.867934258143578, 18.347730163560072 ], [ -64.867918667796175, 18.34781582665164 ], [ -64.867865694142665, 18.347886737586578 ], [ -64.86780534441084, 18.347950440081263 ], [ -64.867722698805835, 18.347985476453346 ], [ -64.867640220839007, 18.348020512825485 ], [ -64.86753561463712, 18.34801967463477 ], [ -64.867603340447317, 18.347963180580223 ], [ -64.867648770384335, 18.347892102007165 ], [ -64.867701744037845, 18.347821191072228 ], [ -64.867754717691355, 18.34775011249917 ], [ -64.867785395471685, 18.347671993124095 ], [ -64.867815905613895, 18.347593706110843 ], [ -64.867839208625583, 18.347508210657395 ], [ -64.867862341379805, 18.347422715203948 ], [ -64.867878099365328, 18.3473372197505 ], [ -64.867901233429166, 18.347251724297109 ], [ -64.867909447698253, 18.347166061205485 ], [ -64.867917661967283, 18.347080565752037 ], [ -64.867918500157998, 18.34699490266047 ], [ -64.867904250915785, 18.346909071930725 ], [ -64.867897545390008, 18.346823408839157 ], [ -64.867883463785915, 18.346737578109412 ], [ -64.86786183846533, 18.346651747379724 ], [ -64.867832501790133, 18.346572957452054 ], [ -64.867803332753112, 18.346494335162504 ], [ -64.867774163716035, 18.346415545234834 ], [ -64.867722531167715, 18.346343628471061 ], [ -64.867678274697653, 18.346271879345409 ], [ -64.86761909843284, 18.346200130219756 ], [ -64.867559922168027, 18.346135421896179 ], [ -64.867515665697965, 18.346063672770526 ], [ -64.867456489433152, 18.345991756006754 ], [ -64.86739731316834, 18.345927047683176 ], [ -64.867330594496707, 18.345869380161673 ], [ -64.867282313401518, 18.345839037657584 ], [ -64.867374682018863, 18.345846581374076 ], [ -64.867474091438282, 18.345847251926671 ], [ -64.867502925199062, 18.345843396249336 ], [ -64.86754735061686, 18.345864015741029 ], [ -64.867621613004985, 18.345914642460514 ], [ -64.867688500624467, 18.345972309982074 ], [ -64.867732589456352, 18.346043891469549 ], [ -64.867754382415058, 18.346129889837414 ], [ -64.86779092753045, 18.346208679765141 ], [ -64.867857815149875, 18.346266347286644 ], [ -64.867916991414745, 18.346331055610221 ], [ -64.867976167679558, 18.346395763933799 ], [ -64.868042887660863, 18.346453431455359 ], [ -64.868064680619568, 18.346539262185104 ], [ -64.868078762223661, 18.346624925276672 ], [ -64.868078762223661, 18.346632133716867 ], [ -64.868077924032946, 18.346717796808434 ], [ -64.868077253480408, 18.346803459900002 ], [ -64.868076415289693, 18.346889122991627 ], [ -64.868090664531906, 18.346960536840982 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_99", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.961743040376234, 18.32677238069283 ], [ -64.961754775046359, 18.326855696850373 ], [ -64.961773047604026, 18.326897438748233 ], [ -64.961794672924611, 18.327017636607138 ], [ -64.961884024055337, 18.327111681605913 ], [ -64.961928615801639, 18.327183933645983 ], [ -64.961980583626314, 18.327256184376381 ], [ -64.962025175372617, 18.327328268778331 ], [ -64.962092398268339, 18.327386271576131 ], [ -64.962136822376522, 18.327458523616201 ], [ -64.962158782973404, 18.327544858570036 ], [ -64.962157944782632, 18.327631024576078 ], [ -64.962157274230094, 18.327717190582064 ], [ -64.962156603677499, 18.327803356588106 ], [ -64.962125758258992, 18.327882146515776 ], [ -64.962065073250869, 18.327946350615264 ], [ -64.962011765630791, 18.328017764464562 ], [ -64.961988630257224, 18.328103930470604 ], [ -64.961957784838717, 18.328182720398274 ], [ -64.961919564651566, 18.328261342687824 ], [ -64.961888717923387, 18.328340132615494 ], [ -64.961843120348249, 18.32841171410297 ], [ -64.961812274929741, 18.328490504030697 ], [ -64.961796516944219, 18.328576502398562 ], [ -64.961773215242204, 18.328662500766427 ], [ -64.961765000973116, 18.328748666772412 ], [ -64.961741700580774, 18.328834665140278 ], [ -64.961725942595251, 18.32892083114632 ], [ -64.961705992346424, 18.328954358775093 ], [ -64.961692748933046, 18.329037507294515 ], [ -64.961681517177396, 18.329059467891398 ], [ -64.961669614869209, 18.329081093211983 ], [ -64.961657209646546, 18.32910255089439 ], [ -64.961644301509466, 18.329123673300558 ], [ -64.961630890457911, 18.329144460430427 ], [ -64.961616976491996, 18.32916507992212 ], [ -64.961602728559399, 18.329185364137572 ], [ -64.961587807454919, 18.32920531307667 ], [ -64.961572552383814, 18.329224926739528 ], [ -64.961556794398291, 18.329244205126088 ], [ -64.961540533498294, 18.32926314823635 ], [ -64.961523938631728, 18.329281756070372 ], [ -64.961506839541016, 18.32929986098992 ], [ -64.961489237535943, 18.32931779827129 ], [ -64.961471298944844, 18.3293352326383 ], [ -64.961453026387119, 18.329352331728956 ], [ -64.961434250915033, 18.32936892790525 ], [ -64.961415140166594, 18.32938518880519 ], [ -64.961395694141913, 18.32940111442889 ], [ -64.961375746512431, 18.329416537138115 ], [ -64.961355460987306, 18.329431456932923 ], [ -64.961335009133791, 18.32944604145149 ], [ -64.961314054365744, 18.329460123055583 ], [ -64.961292765631129, 18.329473701745201 ], [ -64.961271139000928, 18.329486945158578 ], [ -64.961249346042166, 18.329499685657538 ], [ -64.961227050169043, 18.32951192324208 ], [ -64.961204586657743, 18.329523657912148 ], [ -64.961181955508266, 18.329534889667798 ], [ -64.961158989082548, 18.32954578614715 ], [ -64.961135687380533, 18.329556012073908 ], [ -64.961112218040398, 18.329565735086305 ], [ -64.961088581062086, 18.329575122822348 ], [ -64.961064608807476, 18.329583840005853 ], [ -64.961040468914746, 18.329592054274883 ], [ -64.961016161383895, 18.329599765629496 ], [ -64.96099168752454, 18.329606974069691 ], [ -64.960967043407663, 18.329613679595468 ], [ -64.960942232962395, 18.329619714568651 ], [ -64.960917254878893, 18.329625414265536 ], [ -64.960892276795448, 18.329630443409883 ], [ -64.960867131073883, 18.329634969639756 ], [ -64.96084181771414, 18.32963882531709 ], [ -64.960816504354398, 18.329642345718071 ], [ -64.960791023356478, 18.329645195566513 ], [ -64.960765542358615, 18.329647542500538 ], [ -64.960739893722575, 18.329649218881968 ], [ -64.960714412724656, 18.329650392348981 ], [ -64.960688764088616, 18.329651062901576 ], [ -64.960663115452633, 18.329651230539753 ], [ -64.960637466816593, 18.329650895263455 ], [ -64.960611985818673, 18.329649889434563 ], [ -64.960586338492305, 18.329648213053133 ], [ -64.960560857494443, 18.329646201395406 ], [ -64.96053537649658, 18.329643519185083 ], [ -64.960510061827165, 18.329640334060343 ], [ -64.960484748467422, 18.329636646021186 ], [ -64.960459436417352, 18.329632287429433 ], [ -64.960434289386058, 18.32962759356144 ], [ -64.960409312612285, 18.329622229140796 ], [ -64.960384500857288, 18.329616194167613 ], [ -64.960359859359812, 18.329609823918133 ], [ -64.960335216552608, 18.329602783116115 ], [ -64.960310907712085, 18.3295954070378 ], [ -64.96028660149085, 18.329587360406833 ], [ -64.960262627926568, 18.329578810861506 ], [ -64.960238824619807, 18.32956975840176 ], [ -64.960231782508117, 18.329519802234813 ], [ -64.960195069754548, 18.329442185774155 ], [ -64.960158357001035, 18.329364569313498 ], [ -64.960128014496945, 18.32928712049096 ], [ -64.960103706966095, 18.32920363669524 ], [ -64.960085769684667, 18.329120320537697 ], [ -64.960055259542457, 18.329042704076983 ], [ -64.960018546788945, 18.328965087616325 ], [ -64.959988205594527, 18.328887638793788 ], [ -64.959932717368872, 18.328821757003197 ], [ -64.959895669339062, 18.328779847467217 ], [ -64.959870857584065, 18.328755875212607 ], [ -64.95980916674705, 18.3286960283952 ], [ -64.959760048770875, 18.328624280579277 ], [ -64.959685952711254, 18.328540460197587 ], [ -64.959636834735022, 18.328468711071935 ], [ -64.959593919370207, 18.328391094611277 ], [ -64.959550836367157, 18.328313478150619 ], [ -64.959514292561437, 18.328235861689905 ], [ -64.959471543525069, 18.328122539614242 ], [ -64.959447237303834, 18.328062859125339 ], [ -64.959428629469869, 18.328044921843912 ], [ -64.959360568383431, 18.327990942361566 ], [ -64.959279934436154, 18.327960599857477 ], [ -64.959186558680244, 18.327953895641372 ], [ -64.959099386845367, 18.327965126087349 ], [ -64.959012216320161, 18.327970322869817 ], [ -64.958881123291576, 18.327999156630597 ], [ -64.958799986429881, 18.328028158029497 ], [ -64.958712814595003, 18.328027487476959 ], [ -64.958619440148766, 18.328026816924364 ], [ -64.958532434642393, 18.328014244063581 ], [ -64.95847057747693, 18.327954398555846 ], [ -64.9584464375842, 18.327870913450454 ], [ -64.958434701604403, 18.327787598602526 ], [ -64.958372844438941, 18.327727582837326 ], [ -64.958304949680951, 18.327667568381798 ], [ -64.958255665376328, 18.327595820565818 ], [ -64.958200177150616, 18.327530106413349 ], [ -64.958132282392626, 18.327475957983154 ], [ -64.95805785236638, 18.327427845835871 ], [ -64.957971014498128, 18.327403370666843 ], [ -64.957890214222402, 18.327373029472426 ], [ -64.957803210025645, 18.327354587966909 ], [ -64.957716204519215, 18.327342016415798 ], [ -64.957635570571995, 18.327299771603521 ], [ -64.957548566375237, 18.327293232406248 ], [ -64.957455193238673, 18.327280491907288 ], [ -64.957361986430612, 18.327262051711443 ], [ -64.957274814595735, 18.327261382468521 ], [ -64.957187641451185, 18.327260710606311 ], [ -64.95710047092598, 18.327271942361961 ], [ -64.957013299091102, 18.327271271809366 ], [ -64.956926127256224, 18.327276468591833 ], [ -64.956838955421347, 18.327275799348911 ], [ -64.956751615948349, 18.327280994821706 ], [ -64.956688919282499, 18.327340003448398 ], [ -64.956613817393986, 18.327387109766846 ], [ -64.956538715505474, 18.327434048447174 ], [ -64.956469816228264, 18.327487023410356 ], [ -64.956428074330404, 18.327562291627316 ], [ -64.956415501469621, 18.327574027607113 ], [ -64.956365042388256, 18.327644938541994 ], [ -64.956277870553379, 18.327662203961154 ], [ -64.956190531080381, 18.327667400743621 ], [ -64.956103191607326, 18.327696403452194 ], [ -64.956040327303356, 18.327755410769214 ], [ -64.955953323106598, 18.327754741526348 ], [ -64.955872018606783, 18.327795811561941 ], [ -64.95579691671827, 18.327842751551941 ], [ -64.955715612218398, 18.327883821587534 ], [ -64.955634307718583, 18.327912822986434 ], [ -64.95560262410936, 18.327989936532674 ], [ -64.955576975473321, 18.328072917413976 ], [ -64.955563229145525, 18.328221444809571 ], [ -64.955537580509485, 18.328310460663999 ], [ -64.955524504734228, 18.328393609183422 ], [ -64.955443200234413, 18.328434680528744 ], [ -64.955355860761415, 18.3284517796194 ], [ -64.955268688926481, 18.328457144039987 ], [ -64.955187384426665, 18.328492180412127 ], [ -64.955137092983477, 18.328563091347007 ], [ -64.955142625042242, 18.328646407504607 ], [ -64.955129381628865, 18.32872955602403 ], [ -64.955085125158803, 18.328806501932092 ], [ -64.955053441549637, 18.328883615478333 ], [ -64.955002982468272, 18.32895452641327 ], [ -64.95496492860957, 18.329031473631005 ], [ -64.954933245000348, 18.329108585867573 ], [ -64.954913798975667, 18.329191734386995 ], [ -64.954882115366445, 18.329268680295115 ], [ -64.954862501703587, 18.329369598457788 ], [ -64.95485562853969, 18.329452914615388 ], [ -64.954854790348975, 18.32953606313481 ], [ -64.95486669265722, 18.329619379292353 ], [ -64.954897035161252, 18.329696995753011 ], [ -64.95492134269216, 18.329780311910611 ], [ -64.95498269825282, 18.329876033290816 ], [ -64.954991080160028, 18.329899167354711 ], [ -64.95286308156011, 18.330044677263686 ], [ -64.953007082725833, 18.329808139842498 ], [ -64.953103139382335, 18.329628096475858 ], [ -64.953231885476896, 18.329327856559928 ], [ -64.953264910191251, 18.32914747791699 ], [ -64.953362307952943, 18.328816895497027 ], [ -64.953491221685681, 18.328486480715185 ], [ -64.953746199302714, 18.328187246628147 ], [ -64.954065047052609, 18.327767983630054 ], [ -64.954224806203797, 18.327528262393798 ], [ -64.954510964515634, 18.327259369501121 ], [ -64.954701904361627, 18.327049989459283 ], [ -64.955019243368213, 18.326811609328161 ], [ -64.955241531547188, 18.32663257048074 ], [ -64.955432136116883, 18.32648337253255 ], [ -64.955685604990663, 18.326334677498835 ], [ -64.955876209560358, 18.326185648498495 ], [ -64.956129678434081, 18.326036953464779 ], [ -64.956446514526249, 18.325858752808017 ], [ -64.956668299790749, 18.325739897363917 ], [ -64.957048000186944, 18.325592209468709 ], [ -64.957276154391252, 18.325546107669425 ], [ -64.95747145413867, 18.325540575610717 ], [ -64.957650994590892, 18.325627916393387 ], [ -64.957778064304023, 18.325700671347875 ], [ -64.957841765489093, 18.325808293726652 ], [ -64.957948887572798, 18.325924300631982 ], [ -64.958038237393851, 18.325996720310172 ], [ -64.958225321562566, 18.32607701767148 ], [ -64.958479965212973, 18.326157820566607 ], [ -64.958727062527544, 18.326238620842332 ], [ -64.958937114431649, 18.32627617178656 ], [ -64.959094694287046, 18.326284553693768 ], [ -64.959222602190891, 18.32625672576188 ], [ -64.959320670505122, 18.326200231707332 ], [ -64.959394431288501, 18.32611222168174 ], [ -64.961828200553384, 18.326261756215843 ], [ -64.961808922166824, 18.326344735787472 ], [ -64.961777070919482, 18.326427716668775 ], [ -64.961757624894801, 18.32651086649787 ], [ -64.961750751730904, 18.32659401370762 ], [ -64.961750081178309, 18.326677329865163 ], [ -64.961743040376234, 18.32677238069283 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_848", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.838579986177137, 18.3187891196186 ], [ -64.838653244046043, 18.318845947639716 ], [ -64.83869649337754, 18.318930772540625 ], [ -64.838732704526308, 18.319008389001283 ], [ -64.83878366652209, 18.319079133607715 ], [ -64.838812332644693, 18.319163789560776 ], [ -64.838855749614311, 18.319241573659554 ], [ -64.83889916920333, 18.31931919142994 ], [ -64.838935377732753, 18.319396975528718 ], [ -64.838971421243343, 18.319474590679761 ], [ -64.839022383239126, 18.319545333976521 ], [ -64.838679898510975, 18.320535237216802 ], [ -64.838410001099135, 18.320439348198477 ], [ -64.838107917163654, 18.320332227424444 ], [ -64.837837684475517, 18.320190908469044 ], [ -64.837543647170946, 18.319966105717924 ], [ -64.837361758475026, 18.319746835025569 ], [ -64.837152212104684, 18.319574000099124 ], [ -64.836878291377388, 18.319443242346779 ], [ -64.836687351531396, 18.319325560369691 ], [ -64.836592299394056, 18.319214751556558 ], [ -64.836529939314175, 18.319043091406741 ], [ -64.836563299304828, 18.318890539386018 ], [ -64.836654662093281, 18.318701778835873 ], [ -64.836739822270431, 18.31848250945319 ], [ -64.836786258036341, 18.318305649901617 ], [ -64.836807045166211, 18.318128625331212 ], [ -64.836828335210498, 18.317970207285157 ], [ -64.837939608467025, 18.317946736635292 ], [ -64.8380046520669, 18.318002895413542 ], [ -64.83793223238871, 18.318151590447258 ], [ -64.837851766079609, 18.318267932628885 ], [ -64.837756212337524, 18.318460044632218 ], [ -64.837711954557847, 18.31857672078047 ], [ -64.837718158478822, 18.318680153515345 ], [ -64.837825782167272, 18.318749890983213 ], [ -64.837919659527927, 18.318736816517685 ], [ -64.837985206042219, 18.318661714629172 ], [ -64.838129542484182, 18.318662886786512 ], [ -64.83829533660861, 18.318671102365215 ], [ -64.83842491958427, 18.31868602085035 ], [ -64.838595241248242, 18.318746705858473 ], [ -64.838579986177137, 18.3187891196186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_236", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 19.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.844948390319871, 18.330515237533916 ], [ -64.845020307083644, 18.330561840937946 ], [ -64.845067916316566, 18.330631410767694 ], [ -64.845115693187608, 18.330700980597442 ], [ -64.845157099809171, 18.330776250124131 ], [ -64.845198674068854, 18.330851519650764 ], [ -64.845246283301776, 18.330921089480512 ], [ -64.845263716359057, 18.331007590762852 ], [ -64.845335634432502, 18.331054361805002 ], [ -64.845376370501526, 18.331117058470852 ], [ -64.845415933103482, 18.331178749307867 ], [ -64.845463542336404, 18.331248319137615 ], [ -64.845527412469266, 18.33131034525087 ], [ -64.845575020392459, 18.331379915080674 ], [ -64.845638891834994, 18.33144194119393 ], [ -64.845710640960647, 18.331503967307185 ], [ -64.845733941352989, 18.331588624569918 ], [ -64.845773505264617, 18.331665738116158 ], [ -64.84584542202839, 18.331712509158365 ], [ -64.845917506430339, 18.331759112562395 ], [ -64.846005684094109, 18.331782917178828 ], [ -64.846077600857882, 18.33183723193747 ], [ -64.846157731890685, 18.331868747908572 ], [ -64.846237862923545, 18.33190780759611 ], [ -64.84626937889459, 18.33198492114235 ], [ -64.846316988127512, 18.332054323333978 ], [ -64.846372643991288, 18.332124060801846 ], [ -64.846452775024147, 18.332155409134771 ], [ -64.84652485942604, 18.332202012538801 ], [ -64.8466049904589, 18.332233528509903 ], [ -64.846693168122613, 18.332264876842828 ], [ -64.846781513424503, 18.332288681459261 ], [ -64.846837169288335, 18.332358251289008 ], [ -64.846908918413931, 18.332420277402321 ], [ -64.846997431353998, 18.332413404238423 ], [ -64.847086110622513, 18.332406531074525 ], [ -64.847166075326868, 18.332445589452391 ], [ -64.847246206359671, 18.332484650449601 ], [ -64.847336060404871, 18.332493870547523 ], [ -64.847380484513053, 18.332500408435124 ], [ -64.847277722330773, 18.332520188426486 ], [ -64.847190047581421, 18.332537959379408 ], [ -64.847111760568168, 18.332574504494801 ], [ -64.847033473554973, 18.332620437346236 ], [ -64.84695518654172, 18.332666202559551 ], [ -64.846886622540808, 18.332716829279036 ], [ -64.846822920046066, 18.332776676096444 ], [ -64.846763911419373, 18.332841215472229 ], [ -64.84670004128651, 18.332901063599309 ], [ -64.846645894166045, 18.332965771922886 ], [ -64.84660163638631, 18.333025786378471 ], [ -64.846195115196792, 18.332748848164556 ], [ -64.845881296591244, 18.332565618363503 ], [ -64.845379555626266, 18.332260182974778 ], [ -64.845128601324689, 18.332107464625608 ], [ -64.844846633966483, 18.331894396544612 ], [ -64.844566845904126, 18.3314402648125 ], [ -64.844249674535661, 18.330959813891809 ], [ -64.844132495473048, 18.330653539002697 ], [ -64.844041635598956, 18.330231090879806 ], [ -64.844031409672198, 18.329796405172431 ], [ -64.844015986962972, 18.329598256886243 ], [ -64.844082204029803, 18.32923733196219 ], [ -64.844179601791495, 18.32893692440814 ], [ -64.844276999553131, 18.32863651685409 ], [ -64.844597020770038, 18.328127233482292 ], [ -64.844724761035764, 18.327947524082276 ], [ -64.844915868519934, 18.327738311678559 ], [ -64.845232704612101, 18.327568495548348 ], [ -64.845708126388502, 18.327370848866906 ], [ -64.846125210090747, 18.327251993422806 ], [ -64.84652284645864, 18.327148560687931 ], [ -64.846949319206658, 18.328160424525151 ], [ -64.846999778288023, 18.328303084585684 ], [ -64.846915622630036, 18.328282297455814 ], [ -64.846825937532685, 18.328271400976462 ], [ -64.846730885395345, 18.328280788712505 ], [ -64.846635834567678, 18.328290008810427 ], [ -64.846546149470328, 18.328299396546527 ], [ -64.846461492207595, 18.328323871715554 ], [ -64.846392760568563, 18.328343653016532 ], [ -64.846355712538752, 18.328343150102114 ], [ -64.846265020302837, 18.328365445975237 ], [ -64.846180363040105, 18.328387909486537 ], [ -64.846095704467757, 18.328410205359717 ], [ -64.846005013541514, 18.328426633897777 ], [ -64.84595606320346, 18.328501232871872 ], [ -64.845913147838587, 18.328581531542852 ], [ -64.845870232473715, 18.328656130516947 ], [ -64.845827317108842, 18.328730561852865 ], [ -64.845772330487989, 18.328799293491898 ], [ -64.845717514124544, 18.32886802513093 ], [ -64.845668562476817, 18.32893675677002 ], [ -64.845601676167064, 18.328993753738985 ], [ -64.845540823520764, 18.329056618042955 ], [ -64.845479970874521, 18.329119482346982 ], [ -64.845407048281857, 18.32917647931589 ], [ -64.845340159352702, 18.329233643923033 ], [ -64.845273273042949, 18.329290640891998 ], [ -64.845224321395222, 18.329365239866036 ], [ -64.845163470058651, 18.329428104170063 ], [ -64.845084512492804, 18.32947353410708 ], [ -64.845011757538316, 18.329524663740983 ], [ -64.844980744481688, 18.32960513005014 ], [ -64.845028353714554, 18.329674699879888 ], [ -64.845045788081563, 18.329761201162171 ], [ -64.845069089783578, 18.329842170385746 ], [ -64.845068419230984, 18.329928504029908 ], [ -64.845055511093904, 18.330014837674071 ], [ -64.845024664365724, 18.330095303983171 ], [ -64.844981750310524, 18.330169735319089 ], [ -64.844980912119809, 18.330256236601429 ], [ -64.844974038955911, 18.330342570245591 ], [ -64.844967333430134, 18.330428903889754 ], [ -64.844948390319871, 18.330515237533916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_113", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.838050920194689, 18.317738362422347 ], [ -64.838027283216377, 18.317748254382479 ], [ -64.837999287646312, 18.317785805326764 ], [ -64.837962407254622, 18.317862414648857 ], [ -64.837939608467025, 18.317946736635292 ], [ -64.836828335210498, 18.317970207285157 ], [ -64.836778043767254, 18.317798210549427 ], [ -64.836619960997496, 18.317595199447339 ], [ -64.83627378823013, 18.317425383317129 ], [ -64.83599115031933, 18.317302504557574 ], [ -64.835361836726747, 18.317146767412169 ], [ -64.834701845353834, 18.316900171702343 ], [ -64.834451729242971, 18.316657096393499 ], [ -64.834389703129716, 18.3165362306014 ], [ -64.834354499119456, 18.316241355106058 ], [ -64.83586575698763, 18.316096514440005 ], [ -64.835932309330815, 18.316149992317605 ], [ -64.836019145889395, 18.316169605980463 ], [ -64.836105814809855, 18.316192906372805 ], [ -64.836196507045713, 18.316204977628843 ], [ -64.836283008328053, 18.316243365454113 ], [ -64.836365821571178, 18.316270524143135 ], [ -64.836452490491638, 18.316297681522485 ], [ -64.836539159412098, 18.316313439508008 ], [ -64.836621805017046, 18.316344283616843 ], [ -64.836704618260228, 18.316371442305808 ], [ -64.836783240549721, 18.316405974453801 ], [ -64.836870077108358, 18.316421901387173 ], [ -64.836952721403634, 18.316448891128346 ], [ -64.837039391633766, 18.316472360468538 ], [ -64.837122204876891, 18.316503204577316 ], [ -64.837200827166441, 18.316537739344653 ], [ -64.837275426140536, 18.316579984156931 ], [ -64.837358070435869, 18.316618373291931 ], [ -64.837424790417174, 18.316671682221738 ], [ -64.837487488392696, 18.316728845519151 ], [ -64.837550185058547, 18.316786011435909 ], [ -64.837620759407514, 18.316835632326558 ], [ -64.837695358381552, 18.316881565177994 ], [ -64.837774149618895, 18.316916098635659 ], [ -64.837778005296229, 18.316916098635659 ], [ -64.837781021473177, 18.316916098635659 ], [ -64.837805161365907, 18.316967897512484 ], [ -64.837830978949739, 18.317022213580856 ], [ -64.837868697532144, 18.317086251351839 ], [ -64.837896693102209, 18.317128997768862 ], [ -64.837914127469162, 18.317204436243344 ], [ -64.837929885454685, 18.317251039647374 ], [ -64.837947487459815, 18.317330332489519 ], [ -64.837973136095854, 18.317392358602774 ], [ -64.837998617093717, 18.317489084502199 ], [ -64.838018229446902, 18.317545244590121 ], [ -64.838029965426642, 18.317603413716427 ], [ -64.838033653465857, 18.317634260444549 ], [ -64.838041197182292, 18.317684550578122 ], [ -64.838050920194689, 18.317738362422347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_633", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 12.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.985218580528226, 18.345425306718198 ], [ -64.985217908666016, 18.345511305086063 ], [ -64.985217239423093, 18.345597471092105 ], [ -64.985193265858811, 18.345769300189716 ], [ -64.985185051589781, 18.345855298557581 ], [ -64.985161749887766, 18.345941296925446 ], [ -64.985115984674451, 18.346019751576819 ], [ -64.984995286520416, 18.346090662511756 ], [ -64.98491230563917, 18.346125866521959 ], [ -64.98483686847436, 18.346168278972414 ], [ -64.984753887593058, 18.346210691422868 ], [ -64.984595803513628, 18.346266850201062 ], [ -64.984512822632325, 18.346302054211321 ], [ -64.984422634620557, 18.346322842650864 ], [ -64.98433244529906, 18.346322170788596 ], [ -64.98424225466789, 18.346335917116392 ], [ -64.98410697068573, 18.346342119727751 ], [ -64.98400940659559, 18.346348489977231 ], [ -64.983919217274092, 18.346355027864831 ], [ -64.983821484236159, 18.346354189674116 ], [ -64.98361126600355, 18.346352680930806 ], [ -64.983521410648734, 18.346330385057684 ], [ -64.983439101629699, 18.346294007580411 ], [ -64.983349078636707, 18.346271711707232 ], [ -64.983259393539299, 18.346228125789821 ], [ -64.983139532266364, 18.346191245398131 ], [ -64.983049510583044, 18.346176325603324 ], [ -64.982959488899724, 18.346154029730144 ], [ -64.982869633544851, 18.346139109935336 ], [ -64.982787324525816, 18.346102564819944 ], [ -64.982659919536388, 18.346058643626236 ], [ -64.982585320562293, 18.346007849268631 ], [ -64.982525641383006, 18.345942805668756 ], [ -64.982406115386368, 18.345884467594601 ], [ -64.982315926064871, 18.345876756239988 ], [ -64.982225735433758, 18.345883126489468 ], [ -64.982142923500248, 18.345911289697654 ], [ -64.982052734178808, 18.345917659947133 ], [ -64.981857435741063, 18.345930568084214 ], [ -64.981767246419565, 18.345944314412009 ], [ -64.981676889459948, 18.345957893101684 ], [ -64.981586867776628, 18.345964430989284 ], [ -64.981444040077918, 18.345970465962466 ], [ -64.981391401700705, 18.345977339126421 ], [ -64.98133758985648, 18.345955378529538 ], [ -64.981255111889652, 18.345926041854341 ], [ -64.981165425482629, 18.345889496738948 ], [ -64.981082947515745, 18.345860160063751 ], [ -64.981000637187037, 18.345823782586479 ], [ -64.980880775914102, 18.345786902194789 ], [ -64.980798465585394, 18.345757565519591 ], [ -64.980716155256687, 18.345728396482571 ], [ -64.980626133573367, 18.345706100609391 ], [ -64.980543823244659, 18.345669723132175 ], [ -64.980469056632444, 18.345625969576588 ], [ -64.980379370225421, 18.345589592099316 ], [ -64.980297059896714, 18.345553046983923 ], [ -64.980222293284442, 18.345509461066513 ], [ -64.980094888295014, 18.345472580674823 ], [ -64.980012577966306, 18.345443243999625 ], [ -64.979885005338758, 18.345420780488325 ], [ -64.979795151293558, 18.345398653562995 ], [ -64.979652658871146, 18.345376021103846 ], [ -64.979562469549705, 18.345368142111113 ], [ -64.979472447866328, 18.345367471558518 ], [ -64.979382258544888, 18.345374009446118 ], [ -64.979247142200791, 18.345373003617283 ], [ -64.979157120517471, 18.345365124624493 ], [ -64.979074642550643, 18.345335787949296 ], [ -64.97896249263232, 18.345284659625065 ], [ -64.978880183613285, 18.345233863957731 ], [ -64.978752944952305, 18.345189942764023 ], [ -64.97867834597821, 18.345139148406417 ], [ -64.978603579365995, 18.34509556248895 ], [ -64.978544067824885, 18.345030518889075 ], [ -64.978439461622997, 18.344958100520557 ], [ -64.978364862648959, 18.344907304853223 ], [ -64.978299316134667, 18.344822313623922 ], [ -64.978210301589854, 18.3447726914236 ], [ -64.978127989951474, 18.344725586414825 ], [ -64.978075686850559, 18.34456046153332 ], [ -64.978009134507374, 18.344505980446172 ], [ -64.977953143367301, 18.34444177372734 ], [ -64.977876700373599, 18.344372371535712 ], [ -64.977805118886124, 18.344322750645119 ], [ -64.977749127746051, 18.344253517401341 ], [ -64.977687773495006, 18.344194173498352 ], [ -64.977611330501361, 18.344110185478542 ], [ -64.977560534834026, 18.344040950925034 ], [ -64.977494151438691, 18.343981608331774 ], [ -64.977443355771356, 18.343912372468594 ], [ -64.977382167848816, 18.343838276408974 ], [ -64.977331373491211, 18.343769209493644 ], [ -64.977265325372116, 18.343665441482472 ], [ -64.977168933439316, 18.343522278507521 ], [ -64.977128197370348, 18.343472994202841 ], [ -64.977112940989571, 18.343448182447844 ], [ -64.977052423619568, 18.343305354749191 ], [ -64.977001796900083, 18.343196894179698 ], [ -64.976951002542478, 18.343127827264368 ], [ -64.976900375822936, 18.343029254725991 ], [ -64.976839690814813, 18.342910903506038 ], [ -64.976809517258573, 18.342832113578368 ], [ -64.976769116465903, 18.342743431690508 ], [ -64.97671346060207, 18.342639832627185 ], [ -64.976698708445383, 18.342557185712508 ], [ -64.976678759506285, 18.34247353558834 ], [ -64.976653781422783, 18.342389884154443 ], [ -64.976534421754593, 18.342080424140647 ], [ -64.976528220452963, 18.341992917029472 ], [ -64.976514809401408, 18.341905408608625 ], [ -64.976508437842313, 18.341818070445299 ], [ -64.976495194428935, 18.341730563334124 ], [ -64.976495866291145, 18.341643056222949 ], [ -64.976482455239648, 18.341555549111774 ], [ -64.976483293430363, 18.341468209638776 ], [ -64.976469882378865, 18.341380702527601 ], [ -64.97645647132731, 18.341293195416426 ], [ -64.976457309518025, 18.341205855943372 ], [ -64.976450939268545, 18.341118347522581 ], [ -64.976437694545496, 18.341030840411406 ], [ -64.976431325605745, 18.340943334609904 ], [ -64.976424955356265, 18.340855995136849 ], [ -64.97644674831497, 18.340775361189628 ], [ -64.976475580766078, 18.340694894880471 ], [ -64.976490500560885, 18.340607723045594 ], [ -64.97651229351959, 18.340527089098316 ], [ -64.976527045676278, 18.340439917263438 ], [ -64.976527717538545, 18.340352410152263 ], [ -64.976528554419588, 18.340265069369593 ], [ -64.976515143368033, 18.340177563568091 ], [ -64.976508774428225, 18.340090056456916 ], [ -64.97648832257471, 18.340009254871518 ], [ -64.976425458270683, 18.339948234587098 ], [ -64.976383882701271, 18.3398739708893 ], [ -64.976342308441588, 18.339799707191503 ], [ -64.976279445447233, 18.339738686907083 ], [ -64.97620233059132, 18.339697783199995 ], [ -64.976111304388837, 18.339636595277398 ], [ -64.976034189532925, 18.339595691570253 ], [ -64.975950036494282, 18.339554787863165 ], [ -64.975865882146024, 18.33952042204362 ], [ -64.975781726488037, 18.339472812810698 ], [ -64.97570461425147, 18.33943190910361 ], [ -64.975627499395557, 18.339390837758287 ], [ -64.975550387158989, 18.339349934051199 ], [ -64.975480480743272, 18.339288913766779 ], [ -64.975403536144881, 18.339248010059634 ], [ -64.975333463400659, 18.339193695300992 ], [ -64.975242434578774, 18.339132507378395 ], [ -64.975158281540189, 18.339091436033129 ], [ -64.975088376434144, 18.339037121274487 ], [ -64.975011430526024, 18.338989512041564 ], [ -64.974822669975879, 18.338947937781882 ], [ -64.974842283638736, 18.338846181428437 ], [ -64.974880505135559, 18.338753142258554 ], [ -64.974911518192243, 18.338645853846344 ], [ -64.974949738379394, 18.338567231556851 ], [ -64.974987961185889, 18.338481568465227 ], [ -64.975033557451354, 18.338417363056124 ], [ -64.975205052582339, 18.338310409920211 ], [ -64.975389957455207, 18.338292975553259 ], [ -64.975727245400947, 18.338305548414041 ], [ -64.976127565288778, 18.338348799055211 ], [ -64.976537606879333, 18.338492967859054 ], [ -64.976990566454106, 18.338546779703279 ], [ -64.977349144444133, 18.338529345336269 ], [ -64.977781481907812, 18.338532530461009 ], [ -64.978161517580247, 18.338485088866264 ], [ -64.978310212614019, 18.338355336942811 ], [ -64.978353630893309, 18.338194571962731 ], [ -64.978376429680907, 18.337993406189923 ], [ -64.97841800394059, 18.337892488027251 ], [ -64.978529987530464, 18.337746978118219 ], [ -64.978717238027627, 18.337748486861528 ], [ -64.979989276264291, 18.337692998635873 ], [ -64.982314920236036, 18.337613035241191 ], [ -64.982950770406546, 18.337590739368011 ], [ -64.983012796519802, 18.340438408520185 ], [ -64.982525641383006, 18.340469253938636 ], [ -64.982202435041415, 18.340502781567466 ], [ -64.981983834901598, 18.340608561236309 ], [ -64.981794571437035, 18.340793632437624 ], [ -64.98171008181248, 18.341022458504199 ], [ -64.981669847348257, 18.341344995602924 ], [ -64.98172634271242, 18.34178286643504 ], [ -64.981768755162875, 18.34208427850831 ], [ -64.981812508718463, 18.34225677946813 ], [ -64.981923317531653, 18.34246565659555 ], [ -64.982087435274593, 18.34259591143342 ], [ -64.982311901439743, 18.34269800175349 ], [ -64.982717084143474, 18.342744103552718 ], [ -64.983152440403444, 18.342768912688371 ], [ -64.983670274630242, 18.342808644238175 ], [ -64.984165980622038, 18.342805291475315 ], [ -64.985021939675676, 18.342833285735651 ], [ -64.985532565462279, 18.342829934282463 ], [ -64.985922994699649, 18.342847199701623 ], [ -64.986298336504092, 18.342857259299933 ], [ -64.98668105438685, 18.342903192151368 ], [ -64.98701850997071, 18.342948788416891 ], [ -64.987378261427693, 18.343089270491248 ], [ -64.985820401465219, 18.345307960017408 ], [ -64.985745633543331, 18.345257165659746 ], [ -64.985670866931059, 18.345213579742335 ], [ -64.985581012885916, 18.345198493619023 ], [ -64.985483447486104, 18.345176364074348 ], [ -64.985347995865709, 18.345211066479862 ], [ -64.985272558700956, 18.34526085369896 ], [ -64.985211873692833, 18.345324891469943 ], [ -64.985218580528226, 18.345425306718198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1136", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.020182358759541, 18.361285045988268 ], [ -65.020145144401226, 18.361455533980688 ], [ -65.020098708635317, 18.361486714675493 ], [ -65.019923860741471, 18.361643457649791 ], [ -65.019873401660107, 18.361968506701373 ], [ -65.019790254450356, 18.362306800475949 ], [ -65.019783379976786, 18.363143314814522 ], [ -65.019316341417266, 18.363139962051605 ], [ -65.018874782545993, 18.363136610598417 ], [ -65.018637742210387, 18.363152367274267 ], [ -65.018524586463172, 18.362132959720611 ], [ -65.01837656067238, 18.361734986766749 ], [ -65.018042459161052, 18.361307844775865 ], [ -65.017970710035399, 18.361212793948198 ], [ -65.017898793271627, 18.361136687540522 ], [ -65.017851184038761, 18.361075330670133 ], [ -65.017853698610907, 18.36106292544747 ], [ -65.017848334190262, 18.361035266463375 ], [ -65.017848334190262, 18.361031578424218 ], [ -65.017830395599219, 18.360988326473375 ], [ -65.017842299217079, 18.360902998658105 ], [ -65.017871300616036, 18.360769727643287 ], [ -65.017945395365984, 18.36058884477626 ], [ -65.018007421479297, 18.360530506702105 ], [ -65.018063749205339, 18.36046697184554 ], [ -65.01812024325983, 18.360403269350797 ], [ -65.018193333490615, 18.360355827756052 ], [ -65.018271788142044, 18.360313750581952 ], [ -65.018350410431538, 18.360276871499934 ], [ -65.018429031411415, 18.360240157436692 ], [ -65.018513019431225, 18.360219371616552 ], [ -65.018597006141363, 18.360193386394542 ], [ -65.018692895159745, 18.360179641376419 ], [ -65.018703622691305, 18.360182154638892 ], [ -65.018753746496373, 18.360204450512015 ], [ -65.018816610800343, 18.360218699754284 ], [ -65.018912499818725, 18.360209313327914 ], [ -65.019005203712368, 18.36024703060059 ], [ -65.019071420779255, 18.360327330581242 ], [ -65.01917351240894, 18.360373429761182 ], [ -65.019188767480045, 18.360369909360145 ], [ -65.019280968459213, 18.36037426926157 ], [ -65.019369147432656, 18.360389524332675 ], [ -65.019453300471241, 18.360415843521309 ], [ -65.019537622457676, 18.360438473361057 ], [ -65.019629655798781, 18.360439145223324 ], [ -65.019713977785216, 18.360465464411902 ], [ -65.019790420778861, 18.360509888520085 ], [ -65.019866863772506, 18.360554480266387 ], [ -65.019923860741471, 18.360617175622565 ], [ -65.020000303735117, 18.360661767368867 ], [ -65.020030647548879, 18.360706023838873 ], [ -65.020038023627194, 18.360739048553285 ], [ -65.020052774474209, 18.360823539487512 ], [ -65.020055959598949, 18.360907861473947 ], [ -65.020062832762846, 18.360992183460382 ], [ -65.020066017887586, 18.361076505446817 ], [ -65.020096026425051, 18.3611609937617 ], [ -65.020141622690517, 18.36123475454508 ], [ -65.020182358759541, 18.361285045988268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_116", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 11.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.845221640494572, 18.316852059555004 ], [ -64.845195824220411, 18.316933196416699 ], [ -64.845164978801904, 18.317014165640273 ], [ -64.845134301021574, 18.317095136173464 ], [ -64.845093564952606, 18.317171411528989 ], [ -64.845052828883581, 18.317247519246393 ], [ -64.845007062360594, 18.317318931786019 ], [ -64.844951407806491, 18.317385316491084 ], [ -64.844905642593176, 18.317456731650054 ], [ -64.844860045017981, 18.317532839367459 ], [ -64.844784440215051, 18.317579944376234 ], [ -64.844703973905894, 18.317612801452469 ], [ -64.844623675234971, 18.317650352396697 ], [ -64.844548070431983, 18.317697626353322 ], [ -64.844467771761003, 18.317730315791437 ], [ -64.844382443945733, 18.317753617493452 ], [ -64.844297116130406, 18.31777675155729 ], [ -64.844211788315135, 18.317804748437027 ], [ -64.844174740285325, 18.317836767322547 ], [ -64.844028224547458, 18.31787163474678 ], [ -64.843960834013558, 18.317863252839629 ], [ -64.843894784584847, 18.3178521887221 ], [ -64.843831249728282, 18.317860907215277 ], [ -64.843758159497497, 18.317864092340017 ], [ -64.843711723731587, 18.317829557572679 ], [ -64.843670820024442, 18.317768706236052 ], [ -64.843627234107032, 18.317724951370792 ], [ -64.843577277940085, 18.317703493688384 ], [ -64.843559508296835, 18.317667283849289 ], [ -64.84351860458969, 18.317593859651879 ], [ -64.843471498271242, 18.317523451631416 ], [ -64.843437132451697, 18.317447008637714 ], [ -64.84338365588377, 18.317379616794142 ], [ -64.843498320374295, 18.317457402202649 ], [ -64.843563028697872, 18.317513056756809 ], [ -64.84361499652249, 18.317580279652532 ], [ -64.84365673842035, 18.317654878626627 ], [ -64.84371122081717, 18.317719754588325 ], [ -64.84378850200153, 18.317758646637742 ], [ -64.843876009112705, 18.317761831762482 ], [ -64.843963683862, 18.317752948250529 ], [ -64.844049011677328, 18.317734506745012 ], [ -64.844149594563703, 18.317689916308382 ], [ -64.844229893234683, 18.317654712298122 ], [ -64.844307844971638, 18.317617161353894 ], [ -64.844385796708593, 18.317577263475641 ], [ -64.844451343222886, 18.317522779769149 ], [ -64.844521918881526, 18.317473160188172 ], [ -64.84458511846185, 18.317416329547711 ], [ -64.844653179548288, 18.317364195394589 ], [ -64.844723587568751, 18.317312227569971 ], [ -64.844789301721221, 18.317257745173151 ], [ -64.844854848235514, 18.317203430414509 ], [ -64.844915365605516, 18.317144086511519 ], [ -64.844978565185784, 18.317087257180674 ], [ -64.845031706477414, 18.317020703527874 ], [ -64.845084847769101, 18.316954320132538 ], [ -64.845147879711249, 18.316897489492021 ], [ -64.845221640494572, 18.316852059555004 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_192", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 15.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.958605526182851, 18.369585144464338 ], [ -64.957751745115445, 18.370414618000837 ], [ -64.957589974306472, 18.370297272609719 ], [ -64.957377409139895, 18.370189479973419 ], [ -64.957182278340269, 18.370111529546136 ], [ -64.956996032362269, 18.370055035491646 ], [ -64.956747257356596, 18.370019159619119 ], [ -64.956480711397944, 18.369983117418201 ], [ -64.956249372068896, 18.369985464352169 ], [ -64.956087768898101, 18.370000216508856 ], [ -64.955616035160858, 18.369127661279038 ], [ -64.955637660481443, 18.369100671537808 ], [ -64.955853746049058, 18.369039986529685 ], [ -64.956109561856806, 18.368941415301038 ], [ -64.956353642994486, 18.368937893590328 ], [ -64.956652541805227, 18.368971925443248 ], [ -64.956785646491539, 18.368973097600588 ], [ -64.956956805036612, 18.369048368436893 ], [ -64.957144055533774, 18.3691980692995 ], [ -64.957325944229694, 18.369321283335353 ], [ -64.957513866589125, 18.369396720500163 ], [ -64.957641605545177, 18.369350115786403 ], [ -64.957802707111227, 18.369314242533278 ], [ -64.957991132385075, 18.369331675590615 ], [ -64.958312327068995, 18.369365873771983 ], [ -64.958478121193366, 18.369425386622765 ], [ -64.958605526182851, 18.369585144464338 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_90", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 23.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.877493319081054, 18.35256501396151 ], [ -64.877467335168717, 18.352641456955155 ], [ -64.877488289936707, 18.352649672533857 ], [ -64.877572444285022, 18.352674650617359 ], [ -64.877656766271457, 18.352703484378083 ], [ -64.877740920619715, 18.352728293513735 ], [ -64.877745111573347, 18.352728462461585 ], [ -64.877791547339257, 18.352732819743608 ], [ -64.877829601197902, 18.352725108388995 ], [ -64.877910067507059, 18.352693424779773 ], [ -64.87799053381616, 18.352661908808727 ], [ -64.878075191078892, 18.352638271830415 ], [ -64.878159848341625, 18.35261480249028 ], [ -64.8782445056043, 18.352595356465542 ], [ -64.878426392990548, 18.352556464416125 ], [ -64.878515241206856, 18.352545232660475 ], [ -64.878603921785043, 18.352533834576377 ], [ -64.87869260236323, 18.352526458498062 ], [ -64.878785473894993, 18.352539366635142 ], [ -64.878852864428893, 18.352547914870797 ], [ -64.87887398683506, 18.352540035878008 ], [ -64.878954620782281, 18.352508353578514 ], [ -64.879039278045013, 18.35248488292865 ], [ -64.879119744354114, 18.352453366957604 ], [ -64.879204401616846, 18.352429731288964 ], [ -64.879258548737369, 18.352410117626107 ], [ -64.879288219379191, 18.3524062606391 ], [ -64.879569852770771, 18.352996011629727 ], [ -64.879295261490938, 18.353127607572731 ], [ -64.878935677672018, 18.353265407436822 ], [ -64.878592522391273, 18.35334587243625 ], [ -64.87829412649495, 18.353431367889698 ], [ -64.87803730485831, 18.3535208866586 ], [ -64.877748967250682, 18.353549049866785 ], [ -64.877486948831574, 18.353517533895683 ], [ -64.877172627311609, 18.353394487498008 ], [ -64.877009012483029, 18.35325585075293 ], [ -64.876954530086266, 18.353091565371813 ], [ -64.876924355220297, 18.352940692351865 ], [ -64.876863167297756, 18.3527293006523 ], [ -64.876833160069964, 18.352548417785215 ], [ -64.876803488118469, 18.352337361361947 ], [ -64.876821090123599, 18.352014156329972 ], [ -64.877411511666764, 18.352258068519802 ], [ -64.877385527754484, 18.352338534828959 ], [ -64.877418552468839, 18.352415314408574 ], [ -64.877468676273907, 18.352484212376055 ], [ -64.877493319081054, 18.35256501396151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_242", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 16.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.940584595960331, 18.31848686673527 ], [ -64.940583756459944, 18.318572529826895 ], [ -64.940589457466501, 18.318658360556583 ], [ -64.940588619275786, 18.318750393897631 ], [ -64.940581578473711, 18.318836056989255 ], [ -64.940606556557157, 18.318916020383938 ], [ -64.940624995443329, 18.319001852423298 ], [ -64.940662882973584, 18.319081814508365 ], [ -64.940700769194109, 18.319161777903048 ], [ -64.940745024354442, 18.31923570763422 ], [ -64.940776373997039, 18.319315669719231 ], [ -64.940820630467044, 18.319389599450403 ], [ -64.940864885627434, 18.319463358924111 ], [ -64.940896401598479, 18.319543323628466 ], [ -64.938615518320887, 18.320180348575661 ], [ -64.938208157630982, 18.319035043466158 ], [ -64.937819907689459, 18.31806140243549 ], [ -64.937661322005226, 18.317614980748317 ], [ -64.940317882363559, 18.318147568441475 ], [ -64.940368678030836, 18.318215460580177 ], [ -64.940425842637978, 18.318283355338167 ], [ -64.940489545132664, 18.318345044865453 ], [ -64.940540170542477, 18.318412939623443 ], [ -64.940584595960331, 18.31848686673527 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_144", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 22.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.861591167360586, 18.344151927376402 ], [ -64.861614301424424, 18.344234071376604 ], [ -64.861627880114099, 18.344316212757519 ], [ -64.861665431058327, 18.344393996856297 ], [ -64.861702814364492, 18.344471780955132 ], [ -64.86173567144067, 18.344549565053967 ], [ -64.861739527118004, 18.34463623397437 ], [ -64.861781939568459, 18.344709491843332 ], [ -64.86184815663529, 18.344764812430867 ], [ -64.861924264352695, 18.34480638669055 ], [ -64.861990481419582, 18.344861708587757 ], [ -64.86206658913693, 18.344903281537768 ], [ -64.862142529216158, 18.344944855797507 ], [ -64.862228192307782, 18.344973019005693 ], [ -64.86231888454364, 18.344973689558287 ], [ -64.862409409141435, 18.34498358151842 ], [ -64.86250010137735, 18.344997997089138 ], [ -64.862586098435543, 18.344985088952058 ], [ -64.86267679198113, 18.34497670704485 ], [ -64.862762957987115, 18.34495910503972 ], [ -64.862844430125108, 18.344927925654645 ], [ -64.862916346888881, 18.344878303454323 ], [ -64.862993125158823, 18.344837902661652 ], [ -64.863039058010315, 18.34481778608432 ], [ -64.862760108138673, 18.34506337596531 ], [ -64.862714845839776, 18.345161779555838 ], [ -64.86260956908535, 18.345358586736893 ], [ -64.862518876849435, 18.345569643160161 ], [ -64.8623830899528, 18.345879103174013 ], [ -64.86227697500766, 18.346174816860014 ], [ -64.861939854700097, 18.346071551763316 ], [ -64.861625533180074, 18.345948337727464 ], [ -64.861248347356081, 18.345794781187578 ], [ -64.861059922082234, 18.345702747846531 ], [ -64.860840316113581, 18.34558053963957 ], [ -64.860683406810779, 18.345488841574763 ], [ -64.860369923481528, 18.345275439527143 ], [ -64.86018149820768, 18.345183572514543 ], [ -64.859998940268838, 18.34504895908492 ], [ -64.859712781957057, 18.344838740852367 ], [ -64.859496864027562, 18.3445733696704 ], [ -64.859690486083878, 18.344405563888245 ], [ -64.859958874752408, 18.344167854309717 ], [ -64.860212343626188, 18.343929806835604 ], [ -64.860554325439921, 18.343720763379679 ], [ -64.860955651156644, 18.343484058320371 ], [ -64.861186991795364, 18.343304182591851 ], [ -64.861183471394327, 18.343318933438866 ], [ -64.861201743952051, 18.343405602359269 ], [ -64.861248850270499, 18.343479027866351 ], [ -64.861310373469337, 18.343538708355311 ], [ -64.861371896668231, 18.343598553863046 ], [ -64.861414141480509, 18.343671811731951 ], [ -64.861451692424737, 18.343749595830786 ], [ -64.861489075730844, 18.343827379929621 ], [ -64.861526626675129, 18.343905165338072 ], [ -64.861564009981237, 18.343982949436906 ], [ -64.861592005551302, 18.344065258455942 ], [ -64.861591167360586, 18.344151927376402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_500", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 14.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.896973204070775, 18.360657745363085 ], [ -64.89686909947369, 18.360649866370295 ], [ -64.89677287648874, 18.36062924556893 ], [ -64.89668319008166, 18.360628576326008 ], [ -64.896593502364965, 18.360634442351397 ], [ -64.896503984905735, 18.360633771798803 ], [ -64.896414298498712, 18.360633102555937 ], [ -64.896331485255587, 18.360658749882305 ], [ -64.896241631210387, 18.36067769430224 ], [ -64.896151944803364, 18.36069680374095 ], [ -64.895938206169717, 18.36070820444445 ], [ -64.895855225288472, 18.360740389658417 ], [ -64.895765371243272, 18.3607595004068 ], [ -64.895627237412612, 18.360791185325695 ], [ -64.895537383367412, 18.360823370539663 ], [ -64.895447361684091, 18.360868800476737 ], [ -64.895364380802846, 18.36090098831005 ], [ -64.895294978611219, 18.360953122463172 ], [ -64.895232449583489, 18.361011795813567 ], [ -64.895163215030038, 18.361063932585978 ], [ -64.895086939674513, 18.361109362523052 ], [ -64.895024410646784, 18.361168034563775 ], [ -64.894968587144831, 18.361246656853268 ], [ -64.894871524659493, 18.361298458349438 ], [ -64.894727020579353, 18.361284207797553 ], [ -64.894782676443128, 18.36121882892138 ], [ -64.894831626781183, 18.361146744519488 ], [ -64.894894155808913, 18.361088072478765 ], [ -64.894956684836643, 18.361029397818641 ], [ -64.895019213864316, 18.360964018942525 ], [ -64.895081742892046, 18.36090534559213 ], [ -64.895151145083673, 18.360853211439007 ], [ -64.895151312721794, 18.36084667355135 ], [ -64.895220714913421, 18.36079453677894 ], [ -64.895296822630769, 18.360749106841922 ], [ -64.895379803512071, 18.360716921627898 ], [ -64.895462784393374, 18.360691271682242 ], [ -64.895594212698256, 18.360639640443537 ], [ -64.895683899105279, 18.360620528385425 ], [ -64.895863439557502, 18.360575936639123 ], [ -64.895960166766599, 18.36055699352886 ], [ -64.896056893975697, 18.360538050418597 ], [ -64.896215478350257, 18.360526149420025 ], [ -64.896304998428832, 18.360526818662947 ], [ -64.896394684835855, 18.360520952637557 ], [ -64.896484371242877, 18.360515085302552 ], [ -64.896574057649957, 18.360509216657817 ], [ -64.896704983040422, 18.360510391434502 ], [ -64.89677606161348, 18.360522292433075 ], [ -64.896856025008162, 18.360565207797947 ], [ -64.896919895141025, 18.360623210595747 ], [ -64.896973204070775, 18.360657745363085 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_260", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.997792276899588, 18.349455998252552 ], [ -64.997664536633863, 18.349533447075089 ], [ -64.997581723390738, 18.349561442645097 ], [ -64.997498574871315, 18.349625311468287 ], [ -64.9974107324839, 18.349710305316989 ], [ -64.997334289490198, 18.349758082188032 ], [ -64.997264049107855, 18.349812060360705 ], [ -64.997206549224472, 18.349878277427592 ], [ -64.997130106230827, 18.349920020635125 ], [ -64.997066236097965, 18.349980035090709 ], [ -64.996996163353742, 18.350034014573055 ], [ -64.996938495832239, 18.350100064001765 ], [ -64.996868423088017, 18.350154043484167 ], [ -64.996817125815994, 18.350226295524237 ], [ -64.996765828543914, 18.350298547564307 ], [ -64.996708161022354, 18.350364764631138 ], [ -64.996656863750331, 18.350437015361535 ], [ -64.996611936727732, 18.350509267401605 ], [ -64.996566842066954, 18.350593589388041 ], [ -64.996528117655714, 18.350672045349143 ], [ -64.996495763493897, 18.350750498690843 ], [ -64.996457206720777, 18.350828785704095 ], [ -64.996418482309537, 18.350907240355468 ], [ -64.996367185037457, 18.350979492395538 ], [ -64.996322258014857, 18.351051744435608 ], [ -64.996283533603616, 18.351136235369836 ], [ -64.996238606581016, 18.351208487409906 ], [ -64.996174736448154, 18.351268500555818 ], [ -64.996104328427691, 18.351340752595831 ], [ -64.996040459604501, 18.351400768361088 ], [ -64.995970385550606, 18.351454746533761 ], [ -64.995893942556961, 18.351502523404804 ], [ -64.995817499563316, 18.351544266612336 ], [ -64.995741056569614, 18.351586176148373 ], [ -64.995664613575968, 18.351633951709687 ], [ -64.995575597721484, 18.351663457332734 ], [ -64.995486581867056, 18.351693129284229 ], [ -64.99539790259854, 18.351698492395144 ], [ -64.995068996560008, 18.351728499622936 ], [ -64.994978973567015, 18.351713413499624 ], [ -64.994888951883695, 18.351698492395144 ], [ -64.994803960654338, 18.351673849587996 ], [ -64.994719134443812, 18.351654237234811 ], [ -64.99463933868725, 18.351620037743771 ], [ -64.99455937660224, 18.351586008510196 ], [ -64.994474550391715, 18.351561533341169 ], [ -64.9943997837795, 18.351517947423758 ], [ -64.994384863984692, 18.351513084607916 ], [ -64.994325018476957, 18.351473858591874 ], [ -64.994245221410722, 18.351439826738954 ], [ -64.994135418426424, 18.351400768361088 ], [ -64.994045396743047, 18.351380819421934 ], [ -64.993965602296214, 18.351346787569014 ], [ -64.993880608447512, 18.351327007577709 ], [ -64.993970128526087, 18.351309739539204 ], [ -64.994061657643044, 18.351312924663944 ], [ -64.994150339530904, 18.351313596526211 ], [ -64.994239018799419, 18.351311752506604 ], [ -64.99432769937755, 18.351320300742316 ], [ -64.994410681568525, 18.351344777220959 ], [ -64.994490812601327, 18.351379813593098 ], [ -64.994568092476072, 18.351420045437976 ], [ -64.994645542608282, 18.351457765330053 ], [ -64.994728354541735, 18.351490119491814 ], [ -64.994814186581152, 18.351511912450576 ], [ -64.99489951308675, 18.351531189527464 ], [ -64.994905046455187, 18.351531189527464 ], [ -64.99498517748799, 18.351550301585519 ], [ -64.995073856756505, 18.351553654348436 ], [ -64.995162704972813, 18.351554323591301 ], [ -64.995248704650351, 18.351544266612336 ], [ -64.995334869346721, 18.351529011541231 ], [ -64.995420867714586, 18.351513756470126 ], [ -64.995501501661863, 18.351482743413499 ], [ -64.995582135609141, 18.351451561409021 ], [ -64.995668470562975, 18.351415017603301 ], [ -64.995746420990258, 18.351375956606091 ], [ -64.995813477557533, 18.351318121446411 ], [ -64.995885895926051, 18.351271016437636 ], [ -64.995947419124889, 18.351210665396138 ], [ -64.996008943633399, 18.351150149335808 ], [ -64.996067784621971, 18.351084435183338 ], [ -64.996120924603929, 18.351018719721253 ], [ -64.996165851626529, 18.350947473510018 ], [ -64.996224692615044, 18.350884441567871 ], [ -64.996258555520171, 18.350807832245778 ], [ -64.996303482542771, 18.350736752363048 ], [ -64.996340195296284, 18.350660143040898 ], [ -64.996390822015769, 18.350559895430763 ], [ -64.996416303013689, 18.35050725705355 ], [ -64.996450165918759, 18.350430646421728 ], [ -64.996484028823829, 18.35035403448029 ], [ -64.996537337753637, 18.35028563942717 ], [ -64.996590646683444, 18.35021455954444 ], [ -64.996632891495722, 18.35014080007079 ], [ -64.996730792171832, 18.350019765330785 ], [ -64.996789633160347, 18.349956564440845 ], [ -64.996851156359185, 18.349893532498697 ], [ -64.99690982970958, 18.349830334228102 ], [ -64.996974202756917, 18.34977266539687 ], [ -64.997046622435107, 18.349725560388094 ], [ -64.997110827844267, 18.349667725228414 ], [ -64.99717788310187, 18.349615254489322 ], [ -64.997244770721295, 18.349562782440614 ], [ -64.997311825978898, 18.349510313011194 ], [ -64.997392459926175, 18.349473935533922 ], [ -64.997475943721895, 18.349448119259762 ], [ -64.997559259879438, 18.349419619465607 ], [ -64.997642743675158, 18.349396319073264 ], [ -64.997776015999648, 18.349368155865079 ], [ -64.99788967466128, 18.349362288530017 ], [ -64.997852961907768, 18.349394307415537 ], [ -64.997792276899588, 18.349455998252552 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_143", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 10.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.863766941521874, 18.346212200166121 ], [ -64.863406185545671, 18.346232149105276 ], [ -64.863079794079283, 18.346235501868136 ], [ -64.86263186495853, 18.346219576244494 ], [ -64.86227697500766, 18.346174816860014 ], [ -64.8623830899528, 18.345879103174013 ], [ -64.862518876849435, 18.345569643160161 ], [ -64.86260956908535, 18.345358586736893 ], [ -64.862714845839776, 18.345161779555838 ], [ -64.862760108138673, 18.34506337596531 ], [ -64.863039058010315, 18.34481778608432 ], [ -64.863074597296816, 18.344802195736975 ], [ -64.863078620612271, 18.344793144586845 ], [ -64.863213234041893, 18.34474385766282 ], [ -64.863287665377868, 18.34474084148593 ], [ -64.863440216088861, 18.344749222083465 ], [ -64.863566447611333, 18.34478576850853 ], [ -64.863663007182254, 18.34482566507711 ], [ -64.863815054978886, 18.344883835513087 ], [ -64.863959559058969, 18.344956087553157 ], [ -64.864015550199099, 18.344998667641732 ], [ -64.864056118629946, 18.3450777928457 ], [ -64.863766941521874, 18.346212200166121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_850", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 16.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.946689305302527, 18.319658657361856 ], [ -64.94667287676441, 18.319577017585743 ], [ -64.946656448226349, 18.319495377809574 ], [ -64.946623088235697, 18.319413570395341 ], [ -64.946598277790372, 18.319331930619171 ], [ -64.946556200616214, 18.319258337473968 ], [ -64.946514123442057, 18.319184576690589 ], [ -64.946454947177244, 18.319119031485968 ], [ -64.946361069816589, 18.31912640756434 ], [ -64.946283956270349, 18.319166639409218 ], [ -64.946198460816902, 18.319190276387531 ], [ -64.946113300639752, 18.319157084034998 ], [ -64.946019423279154, 18.319164461422986 ], [ -64.945916828734994, 18.319204525629743 ], [ -64.945831333281546, 18.319220115977146 ], [ -64.945745670189979, 18.319251968534161 ], [ -64.945702419548809, 18.319325057455274 ], [ -64.945667550814846, 18.319406195626641 ], [ -64.945632849719061, 18.319487498816841 ], [ -64.945623461983018, 18.319577017585743 ], [ -64.945623629621139, 18.319577520500161 ], [ -64.944665242351903, 18.319496216000289 ], [ -64.944664739437485, 18.319156916396878 ], [ -64.944802537991848, 18.318842428548407 ], [ -64.945135802622076, 18.318515197581632 ], [ -64.945452806352421, 18.31831705060506 ], [ -64.945873075179406, 18.318238259367718 ], [ -64.946113300639752, 18.318097612274585 ], [ -64.946343970725934, 18.317721264641307 ], [ -64.946496521436927, 18.317435609243944 ], [ -64.94673859091688, 18.317222373524771 ], [ -64.946994239086507, 18.317195717750224 ], [ -64.94714326939652, 18.317311555707704 ], [ -64.947305040205435, 18.317728808357799 ], [ -64.94736823978576, 18.31811286734569 ], [ -64.947550797724546, 18.318820131365555 ], [ -64.948147086602773, 18.319037390400183 ], [ -64.948709008351784, 18.318996989607456 ], [ -64.949633031111205, 18.318747376411068 ], [ -64.950322022573346, 18.318093587649457 ], [ -64.951602945631635, 18.319712972120499 ], [ -64.951509069580709, 18.319720349508486 ], [ -64.951441008494214, 18.319703584384456 ], [ -64.951423909403559, 18.319703416746279 ], [ -64.951330198371352, 18.319686317655623 ], [ -64.951236488648874, 18.319677600472119 ], [ -64.951151328471724, 18.319660501381406 ], [ -64.951066169604246, 18.319643569928871 ], [ -64.950981009427096, 18.319626638476336 ], [ -64.950895681611826, 18.319609707023801 ], [ -64.950810521434619, 18.319592775571266 ], [ -64.950716979350318, 18.319567629849644 ], [ -64.950640536356616, 18.319526224537753 ], [ -64.950555376179466, 18.319501077506459 ], [ -64.950469879416346, 18.319524882122948 ], [ -64.950384385272571, 18.319540640108471 ], [ -64.950298888509508, 18.319572491355814 ], [ -64.95022177627294, 18.319612556872244 ], [ -64.950195455774633, 18.319693861372059 ], [ -64.950203168438918, 18.319783547779139 ], [ -64.950202496576708, 18.319873234186161 ], [ -64.950184728243073, 18.319954538686034 ], [ -64.950166958599823, 18.320044057454879 ], [ -64.950123540320533, 18.320117147685664 ], [ -64.950080288369691, 18.320190071588002 ], [ -64.950028489492865, 18.320262992870937 ], [ -64.949951374636953, 18.320303226025544 ], [ -64.94983168231181, 18.320342956265677 ], [ -64.94974618554869, 18.320358546613022 ], [ -64.949660691404972, 18.320382351229512 ], [ -64.94959195845621, 18.320438845284002 ], [ -64.94952322812685, 18.320495340648222 ], [ -64.949462878395025, 18.320560047662127 ], [ -64.94936900103437, 18.320559377109532 ], [ -64.949283839547547, 18.320542445656997 ], [ -64.949190131134742, 18.320541775104459 ], [ -64.949104468043174, 18.320573626351802 ], [ -64.949035736404142, 18.320630120406349 ], [ -64.948958621548229, 18.320678400191809 ], [ -64.948889891218812, 18.3207348942463 ], [ -64.948796012548542, 18.320734223693762 ], [ -64.948736333369254, 18.320733720779344 ], [ -64.948667769368342, 18.320765907302984 ], [ -64.948599039038982, 18.320822401357475 ], [ -64.948555788397869, 18.32089532395014 ], [ -64.948478507213451, 18.3209436037356 ], [ -64.948393010450332, 18.32097562262112 ], [ -64.948315730575644, 18.32102390240658 ], [ -64.948238617029403, 18.32107218219204 ], [ -64.948152953937836, 18.32110403343944 ], [ -64.948033091355171, 18.321143931317692 ], [ -64.947947597211396, 18.321175782565035 ], [ -64.947861934119828, 18.321207801450555 ], [ -64.947768056759173, 18.32121517752887 ], [ -64.947674179398575, 18.321214506976332 ], [ -64.947580468366368, 18.321213668785617 ], [ -64.947486592315386, 18.321212998233023 ], [ -64.947367233956868, 18.32120394577322 ], [ -64.947282073779718, 18.321178800051655 ], [ -64.947205630786073, 18.321137393430092 ], [ -64.94703564570807, 18.321054747825087 ], [ -64.94695065316904, 18.321021387834435 ], [ -64.946874377813515, 18.320971934581962 ], [ -64.94679810245799, 18.320914267060402 ], [ -64.946738926193177, 18.32084872054611 ], [ -64.946679749928364, 18.32078300639364 ], [ -64.946654771844862, 18.320701366617527 ], [ -64.946638510944922, 18.320619726841414 ], [ -64.946622082406805, 18.320538087065245 ], [ -64.946622752959399, 18.320448569606071 ], [ -64.946623591150114, 18.320358881889319 ], [ -64.946615879795502, 18.320269195482297 ], [ -64.94661655034804, 18.320179509075274 ], [ -64.946617388538755, 18.320089991616044 ], [ -64.946643707727389, 18.320008685806499 ], [ -64.946669859277847, 18.319927382616356 ], [ -64.946687628921097, 18.319846076806812 ], [ -64.946688467111812, 18.319756390399789 ], [ -64.946689305302527, 18.319658657361856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_861", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.890042206316764, 18.312260619738652 ], [ -64.889914129465126, 18.312749620204727 ], [ -64.889829304564216, 18.312733526942907 ], [ -64.889771303076088, 18.3126932937883 ], [ -64.889668036669718, 18.312675188868752 ], [ -64.889626631357828, 18.31266747751414 ], [ -64.889570137303281, 18.31262741199771 ], [ -64.889480283258081, 18.312557506891665 ], [ -64.889416076539248, 18.312500174646402 ], [ -64.889346674347678, 18.312450218479512 ], [ -64.889287667030658, 18.312387857089959 ], [ -64.889218263529358, 18.312337900923012 ], [ -64.88915405942987, 18.312280568677807 ], [ -64.889116005571168, 18.312206138651504 ], [ -64.889059679154798, 18.312139082084229 ], [ -64.889008549520895, 18.312071859188507 ], [ -64.888949540894203, 18.312009665437074 ], [ -64.88890344040459, 18.311952500829989 ], [ -64.8888984112603, 18.311942610179472 ], [ -64.88884996252699, 18.311872872711604 ], [ -64.888819621332573, 18.311793579869459 ], [ -64.888804701537765, 18.311711940093346 ], [ -64.888815933293415, 18.311625606449184 ], [ -64.888822135904775, 18.311550839836968 ], [ -64.888862032473355, 18.311525861753523 ], [ -64.888915175074658, 18.311460482877351 ], [ -64.889606347142376, 18.311446736549556 ], [ -64.889710450429789, 18.311658128249121 ], [ -64.889772307595251, 18.311809337854982 ], [ -64.889786558147193, 18.311975802532004 ], [ -64.889909435597076, 18.312192893928454 ], [ -64.890042206316764, 18.312260619738652 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_539", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 7.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.942027122189415, 18.325251904036406 ], [ -64.942068696449155, 18.325326000096027 ], [ -64.942124183365138, 18.325393390629927 ], [ -64.94218688134066, 18.325460947492274 ], [ -64.94224941036839, 18.325521801448247 ], [ -64.942305066232166, 18.325589190672474 ], [ -64.942360554457878, 18.325656750154167 ], [ -64.942423249814055, 18.325717435162289 ], [ -64.942464656435618, 18.325791531221967 ], [ -64.942499023564778, 18.325872165169187 ], [ -64.942519475418351, 18.325952797806792 ], [ -64.94250472326172, 18.326039803313222 ], [ -64.942497010597378, 18.326126807509922 ], [ -64.942447223378281, 18.326200231707332 ], [ -64.942390392737821, 18.32626678536019 ], [ -64.942312945224955, 18.326313053487922 ], [ -64.942235327454625, 18.326352782418383 ], [ -64.942150837830013, 18.326385639494617 ], [ -64.94206634951513, 18.326411792354747 ], [ -64.941981858580903, 18.326444649430982 ], [ -64.941904409758365, 18.326490917558715 ], [ -64.941924695283433, 18.326571382558143 ], [ -64.941980183509145, 18.326652351781718 ], [ -64.941958390550383, 18.326732650452698 ], [ -64.941915641514015, 18.326805909631275 ], [ -64.941907931469075, 18.326893081466153 ], [ -64.941914132770705, 18.326980253301031 ], [ -64.941885300319598, 18.327073795385388 ], [ -64.94190575217317, 18.327154429332666 ], [ -64.941996947323503, 18.327161805410981 ], [ -64.942087973526043, 18.327169181489353 ], [ -64.942171961545853, 18.327203378361048 ], [ -64.942199789477741, 18.327223662576444 ], [ -64.942248738506123, 18.327245455535206 ], [ -64.942262149557678, 18.327332795008203 ], [ -64.942254270564888, 18.327419800514633 ], [ -64.942260640814368, 18.327506971039838 ], [ -64.942280926339436, 18.327587604987059 ], [ -64.942315290849308, 18.327668238934336 ], [ -64.942370946713083, 18.327735798416029 ], [ -64.942440685490681, 18.327789945536551 ], [ -64.942510421648933, 18.327844091347401 ], [ -64.942551829580168, 18.327918019768902 ], [ -64.942635816290306, 18.327952217950269 ], [ -64.942719801690771, 18.327979710605916 ], [ -64.942803788400909, 18.328007204571179 ], [ -64.942894815913121, 18.328021284865599 ], [ -64.942986012373126, 18.328028660943971 ], [ -64.943077038575666, 18.328042742548064 ], [ -64.943168233725999, 18.328043580738779 ], [ -64.943259596514451, 18.328044252600989 ], [ -64.943357832466859, 18.328044921843912 ], [ -64.943449027617191, 18.328032348983129 ], [ -64.943540390405644, 18.328026314009946 ], [ -64.943631754503826, 18.328013573510987 ], [ -64.943723115982607, 18.328000833012027 ], [ -64.943814312442612, 18.328001672512414 ], [ -64.943905507592945, 18.328002341755337 ], [ -64.943996701433605, 18.328009717833652 ], [ -64.94404565177166, 18.328016758635727 ], [ -64.94413114853478, 18.328044252600989 ], [ -64.944200884693032, 18.328098398411839 ], [ -64.944249332116613, 18.328172494471517 ], [ -64.944269617641737, 18.328253128418737 ], [ -64.94426894577947, 18.328340301563344 ], [ -64.944261234424857, 18.328427304450372 ], [ -64.94426743703616, 18.328521181811027 ], [ -64.944280680449538, 18.328608353645905 ], [ -64.944293923862915, 18.328695693118902 ], [ -64.94429325462005, 18.328782698625332 ], [ -64.944292582757782, 18.328869869150537 ], [ -64.944291744567067, 18.328957040985415 ], [ -64.944291074014473, 18.329044212820293 ], [ -64.944276321857842, 18.32913121701705 ], [ -64.94427548366707, 18.329224926739528 ], [ -64.944253690708365, 18.329305225410508 ], [ -64.944217983783687, 18.329385356443368 ], [ -64.94416819656459, 18.329458781950393 ], [ -64.94416752470238, 18.32954578614715 ], [ -64.944187808917775, 18.329626420094428 ], [ -64.944250505583625, 18.329687272740671 ], [ -64.944327283853568, 18.329728008809695 ], [ -64.944397022631165, 18.329782155930161 ], [ -64.94448100803163, 18.329802943060031 ], [ -64.944572203181963, 18.329810319138403 ], [ -64.944663565970473, 18.32980428416522 ], [ -64.944747887956908, 18.329784838140483 ], [ -64.944832377581463, 18.329758686590026 ], [ -64.944916699567898, 18.329739240565345 ], [ -64.945001189192453, 18.329713089014888 ], [ -64.945085678817065, 18.329680231938653 ], [ -64.945170168441621, 18.329647374862418 ], [ -64.945254658066176, 18.329614517786183 ], [ -64.945339147690788, 18.329581660709948 ], [ -64.945416596513326, 18.329542098107993 ], [ -64.945494212973983, 18.329502535505981 ], [ -64.945578702598539, 18.329462972904025 ], [ -64.945656151421076, 18.329423410302013 ], [ -64.945733767881734, 18.329383680061881 ], [ -64.945811216704271, 18.329344117459925 ], [ -64.945888833164929, 18.329297849332193 ], [ -64.945925545918499, 18.329284773556935 ], [ -64.946009029714219, 18.329249401908555 ], [ -64.946099889588254, 18.329228279502388 ], [ -64.946198460816902, 18.32921470081277 ], [ -64.946289320690994, 18.329208162925113 ], [ -64.946380012926852, 18.329201625037513 ], [ -64.946471040439064, 18.329187878709718 ], [ -64.9465619003131, 18.329174132381922 ], [ -64.94664538410882, 18.32914596917368 ], [ -64.946736243982855, 18.329132222845885 ], [ -64.94681235170026, 18.329067682160485 ], [ -64.946888459417607, 18.329017725993538 ], [ -64.94695702341852, 18.328960561386452 ], [ -64.947025587419432, 18.32890322914119 ], [ -64.947086942980093, 18.328802478616637 ], [ -64.947140587186198, 18.328730729491042 ], [ -64.947194231392302, 18.328637187406684 ], [ -64.947240331881858, 18.328565270642912 ], [ -64.947293808449786, 18.32849352151726 ], [ -64.947347451346218, 18.328421604753487 ], [ -64.947462787698953, 18.328205854462169 ], [ -64.947486089400968, 18.328119354489502 ], [ -64.947502015024668, 18.328025475819231 ], [ -64.947525484364803, 18.327938974536892 ], [ -64.947592707260583, 18.327823136579411 ], [ -64.947621373383186, 18.327743005546552 ], [ -64.947650207143965, 18.327662706875572 ], [ -64.947692954870661, 18.327589449006666 ], [ -64.947714580191246, 18.327509151645359 ], [ -64.947794039361838, 18.327447291860551 ], [ -64.947871154217751, 18.327402701423921 ], [ -64.947948267763991, 18.327363809374503 ], [ -64.948019681613346, 18.327313685569436 ], [ -64.948096795159586, 18.327269092513461 ], [ -64.948173907396153, 18.327230200464101 ], [ -64.948256889587071, 18.327202707808453 ], [ -64.948345570165259, 18.327186446908513 ], [ -64.948434249433774, 18.327175885705401 ], [ -64.948522762373784, 18.327187789323318 ], [ -64.948611276623524, 18.327199691631563 ], [ -64.948752929545492, 18.327223494938323 ], [ -64.948855525399324, 18.327223494938323 ], [ -64.948874802476212, 18.327229866497476 ], [ -64.948966166574337, 18.327217293636636 ], [ -64.94899432847285, 18.327204048913586 ], [ -64.949673599542052, 18.328269556956855 ], [ -64.94969002808017, 18.328295540869192 ], [ -64.948723760508472, 18.32894010953288 ], [ -64.948179105488293, 18.329740749308598 ], [ -64.947227423744778, 18.330502161758659 ], [ -64.946217403927164, 18.330830061968356 ], [ -64.945134796793241, 18.33097942755461 ], [ -64.94442971075955, 18.330887897128036 ], [ -64.943724624725917, 18.330796366701406 ], [ -64.943081732443659, 18.330447176447421 ], [ -64.942514278635883, 18.330069822985308 ], [ -64.941669885304577, 18.32910556838101 ], [ -64.941058341355244, 18.328208201396194 ], [ -64.940926745412241, 18.327368838518851 ], [ -64.940715688988917, 18.32653366528541 ], [ -64.940689537438459, 18.325666639495012 ], [ -64.940635390317937, 18.324977648032814 ], [ -64.940389631489154, 18.323856987040188 ], [ -64.939882861379886, 18.322964481561542 ], [ -64.93913050138957, 18.321824709820476 ], [ -64.938719286332002, 18.321123311826 ], [ -64.941471903346837, 18.32042157855517 ], [ -64.941471234103915, 18.320508582751927 ], [ -64.941470394603527, 18.320595754586805 ], [ -64.941441728480925, 18.320675885619664 ], [ -64.941384900459752, 18.320742437962792 ], [ -64.941363275139224, 18.320822736633772 ], [ -64.941334441378444, 18.320903035304752 ], [ -64.941305775255785, 18.320983166337612 ], [ -64.941297896263052, 18.321070170534313 ], [ -64.941304266512532, 18.32115734236919 ], [ -64.941289514355844, 18.321244346565948 ], [ -64.941323880175332, 18.321325148151345 ], [ -64.941379368401044, 18.321399244211023 ], [ -64.941357575442282, 18.321479542881946 ], [ -64.941314826405915, 18.321552968389028 ], [ -64.941293202395002, 18.321633099421888 ], [ -64.941285489730717, 18.321720271256765 ], [ -64.941291693651692, 18.321807443091643 ], [ -64.941297896263052, 18.321894614926521 ], [ -64.941318348116624, 18.321975248873798 ], [ -64.94133863233202, 18.322069126234396 ], [ -64.941358916547472, 18.322149760181674 ], [ -64.94140736266138, 18.322223856241351 ], [ -64.941477101438977, 18.322278003361873 ], [ -64.941553878399247, 18.322332150482339 ], [ -64.941637866419057, 18.322352937612209 ], [ -64.94172906156939, 18.322360313690524 ], [ -64.94182025541005, 18.322361151881296 ], [ -64.941911450560383, 18.322375233485388 ], [ -64.942002479382268, 18.322389315089481 ], [ -64.94207221554052, 18.322443462209947 ], [ -64.94214195431806, 18.322497609330469 ], [ -64.942225939718526, 18.322525101986116 ], [ -64.942317134868858, 18.322519067012934 ], [ -64.94237748460074, 18.322552762279884 ], [ -64.94248712125659, 18.322636078437426 ], [ -64.942553673599718, 18.322691566663082 ], [ -64.942601113884848, 18.322765159808284 ], [ -64.942652412466543, 18.322844620288549 ], [ -64.942650568446993, 18.322845626117441 ], [ -64.942648387841416, 18.322846631946277 ], [ -64.942616033679656, 18.322863228122571 ], [ -64.942629278402705, 18.322957105483169 ], [ -64.942663642912521, 18.323037907068624 ], [ -64.942704881895963, 18.32313865759312 ], [ -64.942739247715451, 18.323219459178574 ], [ -64.942759699569024, 18.323299925487674 ], [ -64.942758861378309, 18.323387097322552 ], [ -64.942751151333368, 18.323474101519309 ], [ -64.942743272340579, 18.323561273354187 ], [ -64.942721645710378, 18.323641572025167 ], [ -64.942713934355709, 18.323728576221868 ], [ -64.942706725915514, 18.323735280437973 ], [ -64.942650231861023, 18.32378909359187 ], [ -64.942586529366281, 18.323848940409277 ], [ -64.942543781639586, 18.323922198278183 ], [ -64.9424661664886, 18.32397533956987 ], [ -64.942423417452176, 18.324048597438775 ], [ -64.942359716267163, 18.324108444256183 ], [ -64.942289140608523, 18.324161585547813 ], [ -64.942225436804108, 18.324221432365221 ], [ -64.94217564958501, 18.324294690234183 ], [ -64.94211898658267, 18.324361242577311 ], [ -64.942069199363573, 18.324434668084393 ], [ -64.942026451636877, 18.324508093591476 ], [ -64.941997785514218, 18.324588224624335 ], [ -64.941975992555513, 18.324668523295259 ], [ -64.9419682812009, 18.324755527492016 ], [ -64.941960568536615, 18.324842530379101 ], [ -64.9419597303459, 18.324929703523651 ], [ -64.94202796038013, 18.325164898529977 ], [ -64.942027122189415, 18.325251904036406 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_974", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 9.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.850079289683606, 18.326280362740192 ], [ -64.850058168587111, 18.326419502399688 ], [ -64.850103932490754, 18.326495777755213 ], [ -64.850195630555561, 18.32660407330593 ], [ -64.850268051543424, 18.32666173951776 ], [ -64.850339966997524, 18.326763495871205 ], [ -64.850352539858306, 18.326845973838033 ], [ -64.850345163779991, 18.326934486778043 ], [ -64.850331082175899, 18.327016629468631 ], [ -64.850310797960447, 18.327072620608703 ], [ -64.850252124610051, 18.327134480393511 ], [ -64.850183895885436, 18.327187117461051 ], [ -64.850122037410301, 18.327237073627998 ], [ -64.850117175904131, 18.327241599857871 ], [ -64.850048948489246, 18.327294239544756 ], [ -64.849978203882756, 18.327344363349823 ], [ -64.849912489730343, 18.327399347351388 ], [ -64.849897569935536, 18.327407393982298 ], [ -64.849837052565533, 18.327440252368206 ], [ -64.849754574598705, 18.327469587733731 ], [ -64.849674443565846, 18.327503619586594 ], [ -64.849618118459148, 18.327570170620106 ], [ -64.849564306614923, 18.327636722963291 ], [ -64.849524911651088, 18.327710483746614 ], [ -64.84948551537758, 18.327784076891874 ], [ -64.849455843426085, 18.327862363905126 ], [ -64.849453162525435, 18.327876948423636 ], [ -64.849417958515176, 18.327937465793639 ], [ -64.849409742936473, 18.328020446674884 ], [ -64.849382585557123, 18.328099739517029 ], [ -64.849385603043743, 18.328182888036451 ], [ -64.849373031492632, 18.328221612447692 ], [ -64.849372694906663, 18.328267880575424 ], [ -64.849379903346858, 18.328352705476277 ], [ -64.84938325741939, 18.32843736273901 ], [ -64.849394487865368, 18.328522187639862 ], [ -64.849401863943683, 18.328607012540772 ], [ -64.849405050378095, 18.328691837441625 ], [ -64.849428518408615, 18.32877666365215 ], [ -64.849447964433296, 18.328857799204172 ], [ -64.849459197498618, 18.328942624105025 ], [ -64.849490879798168, 18.329019905289442 ], [ -64.849506134869273, 18.329104730190295 ], [ -64.849505465626351, 18.329189387453027 ], [ -64.849504627435635, 18.32927421235388 ], [ -64.849496245528428, 18.329308745811545 ], [ -64.849475624727063, 18.329354846301158 ], [ -64.849442767650828, 18.3294316245711 ], [ -64.849389626359198, 18.329500523848253 ], [ -64.8493088247738, 18.329530531076045 ], [ -64.849219976557492, 18.329541427555398 ], [ -64.849131463617425, 18.329506055907018 ], [ -64.849071616800018, 18.329443862155586 ], [ -64.849007580338707, 18.329385691719608 ], [ -64.84893951794254, 18.329331209322845 ], [ -64.848875647809678, 18.329269015571413 ], [ -64.84881563335415, 18.32920682181998 ], [ -64.848759809852197, 18.32914094002939 ], [ -64.848691748765702, 18.329082601955292 ], [ -64.848631903257967, 18.329012696849247 ], [ -64.848576078446342, 18.328946815058657 ], [ -64.848516231628935, 18.328877077590732 ], [ -64.848452193857952, 18.328818739516635 ], [ -64.848400393671454, 18.328745146371432 ], [ -64.848328310579177, 18.32869451965189 ], [ -64.848264271498522, 18.328636181577792 ], [ -64.848188163781117, 18.328585387220187 ], [ -64.848115911741104, 18.32853861617798 ], [ -64.848035614379796, 18.3285032445296 ], [ -64.847955314399144, 18.328464184842062 ], [ -64.847866970406926, 18.328421101839069 ], [ -64.847782648420491, 18.328385730190689 ], [ -64.847690278493474, 18.328346336536526 ], [ -64.847609813494046, 18.328311132526267 ], [ -64.847525491507611, 18.328283470922827 ], [ -64.847458771526249, 18.328260839773407 ], [ -64.847444019369618, 18.328251284399187 ], [ -64.847386687124356, 18.328189259595547 ], [ -64.847304375485976, 18.328161765630284 ], [ -64.847215193303043, 18.328157743624502 ], [ -64.847127686191868, 18.328157071762234 ], [ -64.847038501389591, 18.328153216084957 ], [ -64.846950826640295, 18.328160424525151 ], [ -64.846949319206658, 18.328160424525151 ], [ -64.847025425614333, 18.328131926040669 ], [ -64.847115113331085, 18.328119354489502 ], [ -64.847195075416096, 18.328090016504632 ], [ -64.847286607152398, 18.328074929071704 ], [ -64.847377968631179, 18.328059841638719 ], [ -64.847469331419688, 18.328052634508197 ], [ -64.847560695517814, 18.328053303751119 ], [ -64.847651889358474, 18.328054141941834 ], [ -64.847743253456656, 18.328046933501639 ], [ -64.847834782573614, 18.328031846068711 ], [ -64.847925977723946, 18.328032516621249 ], [ -64.848017509460249, 18.328017430497994 ], [ -64.848100656669999, 18.327986416131637 ], [ -64.848183972827542, 18.327955403075009 ], [ -64.848250860447024, 18.327900585401949 ], [ -64.848325963645209, 18.327853646721621 ], [ -64.848392851264634, 18.327798661410384 ], [ -64.848451524615029, 18.327735798416029 ], [ -64.848501982386722, 18.327664887481149 ], [ -64.84855244146803, 18.327593807598419 ], [ -64.848586304373157, 18.327514850032571 ], [ -64.848636763454465, 18.327443940407363 ], [ -64.848662413400177, 18.327364981531844 ], [ -64.848704656902783, 18.327278144973263 ], [ -64.84873868744603, 18.327199019769296 ], [ -64.848789146527395, 18.327128108834358 ], [ -64.848839439280255, 18.327057197899478 ], [ -64.84889811263065, 18.326994333595451 ], [ -64.848948570402342, 18.32692342266057 ], [ -64.849074300320012, 18.326789647421663 ], [ -64.849141186629765, 18.326734829748546 ], [ -64.849216288518278, 18.32668789237789 ], [ -64.849274961868673, 18.326624860435743 ], [ -64.849325420950038, 18.326553949500862 ], [ -64.849375880031403, 18.326483038565925 ], [ -64.849434553381798, 18.326420174261955 ], [ -64.84951803848719, 18.326373235581627 ], [ -64.84960118569694, 18.326350101517733 ], [ -64.849692548485393, 18.326343059406042 ], [ -64.849775864642993, 18.326303999718505 ], [ -64.849842919900595, 18.326241135414477 ], [ -64.849934451636841, 18.326210291305642 ], [ -64.850025645477501, 18.326210960548565 ], [ -64.850079289683606, 18.326280362740192 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_98", "STUDY_TYP": "NP", "FLD_ZONE": "VE", "ZONE_SUBTY": null, "SFHA_TF": "T", "STATIC_BFE": 13.0, "V_DATUM": "LOCAL TIDAL DATUM", "DEPTH": -9999.0, "LEN_UNIT": "Feet", "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.892526267024891, 18.359611683344554 ], [ -64.892542025010471, 18.359529371706174 ], [ -64.892587791533401, 18.359458125494939 ], [ -64.892633387798924, 18.359386711645584 ], [ -64.892679153012239, 18.359315299105958 ], [ -64.892735983652699, 18.359251261334919 ], [ -64.892789123634714, 18.359180015123741 ], [ -64.892834888848029, 18.359108601274386 ], [ -64.892899261895309, 18.359051770633869 ], [ -64.892971011020961, 18.359002151052948 ], [ -64.892970508106487, 18.359001648138531 ], [ -64.893001185886874, 18.358991588540221 ], [ -64.893065558934154, 18.358934760519048 ], [ -64.893133620020592, 18.358881619227418 ], [ -64.893201681107087, 18.358828310297611 ], [ -64.893288014751249, 18.358818252008973 ], [ -64.893362781363464, 18.358861836616768 ], [ -64.893302096355342, 18.358922355296386 ], [ -64.893245267024497, 18.358990081106583 ], [ -64.893173517898902, 18.359039701997176 ], [ -64.893109144851621, 18.359096531328021 ], [ -64.893048459843442, 18.359157047388351 ], [ -64.892987942473496, 18.359217398429848 ], [ -64.892942178569854, 18.359288812279203 ], [ -64.892889035968551, 18.359356538089344 ], [ -64.892832206637706, 18.359420574550711 ], [ -64.892775209668741, 18.359488300360852 ], [ -64.892725756416269, 18.359559546572086 ], [ -64.892668927085424, 18.359623753290919 ], [ -64.892593323592166, 18.359666164431644 ], [ -64.892526267024891, 18.359611683344554 ] ] ] ] } } +] +} diff --git a/data/X.geojson b/data/X.geojson new file mode 100644 index 0000000..ff82244 --- /dev/null +++ b/data/X.geojson @@ -0,0 +1,29 @@ +{ +"type": "FeatureCollection", +"name": "X", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::4269" } }, +"features": [ +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1056", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.986088788824077, 18.345546676734443 ], [ -64.986087615357064, 18.345682798907376 ], [ -64.98608694480447, 18.345768964913418 ], [ -64.986000778798484, 18.345801151437058 ], [ -64.985886115617632, 18.345859321873036 ], [ -64.985809672623986, 18.345899555027586 ], [ -64.985699534363391, 18.346003155400581 ], [ -64.985670196378521, 18.346084795176694 ], [ -64.985655276583714, 18.346166434952806 ], [ -64.985663324524296, 18.346343628471061 ], [ -64.985667346530079, 18.346429962115167 ], [ -64.985666675977484, 18.346516128121209 ], [ -64.985675394470661, 18.346611681863294 ], [ -64.985665168543846, 18.346697847869279 ], [ -64.985683607430019, 18.346779655283569 ], [ -64.985692324613524, 18.346866156565909 ], [ -64.985738760379377, 18.346993561555337 ], [ -64.985738089826839, 18.347079895199499 ], [ -64.985746808319959, 18.34718450140133 ], [ -64.985774133337486, 18.347316432620687 ], [ -64.985806821465872, 18.347393881443168 ], [ -64.985829955529709, 18.347475688857457 ], [ -64.985776815547752, 18.347570739685125 ], [ -64.985719314354697, 18.347633939265393 ], [ -64.985675897385079, 18.347706191305463 ], [ -64.985641865532159, 18.347783137213582 ], [ -64.985603308759039, 18.347860083121645 ], [ -64.985640524427026, 18.347943566917365 ], [ -64.985644715380602, 18.348029900561528 ], [ -64.985643878499559, 18.34811606656757 ], [ -64.985652426735214, 18.34824783014875 ], [ -64.985656952965144, 18.34827515516622 ], [ -64.985713614657811, 18.348307341689861 ], [ -64.985784694540541, 18.348357968409346 ], [ -64.985931545554649, 18.348427202962796 ], [ -64.985992899805694, 18.348486714503906 ], [ -64.986077221792129, 18.348628033459306 ], [ -64.986114606407909, 18.348705649920021 ], [ -64.986133046603754, 18.348787457334254 ], [ -64.986137740471804, 18.348787457334254 ], [ -64.986228097431422, 18.348788127886849 ], [ -64.986351477795722, 18.348820984963083 ], [ -64.986446360985212, 18.348848812894971 ], [ -64.98652213342632, 18.348890387154654 ], [ -64.986602767373597, 18.348922741316471 ], [ -64.98668340263049, 18.348959620398489 ], [ -64.986763867629975, 18.348996669737971 ], [ -64.986825224500365, 18.349056181279082 ], [ -64.986877023377133, 18.349124577641874 ], [ -64.986914406683297, 18.349202194102531 ], [ -64.98694642556876, 18.349352230241379 ], [ -64.986974253500705, 18.349434205293846 ], [ -64.987021192180976, 18.349507295524575 ], [ -64.987115907732345, 18.349562448473989 ], [ -64.987177264602735, 18.349621960015099 ], [ -64.987319252801058, 18.349709299488097 ], [ -64.987404580616328, 18.349732601190112 ], [ -64.987571046602966, 18.349738468525175 ], [ -64.987661402252911, 18.349734611538167 ], [ -64.987775228552721, 18.349776353436027 ], [ -64.987841445619608, 18.349831340056937 ], [ -64.987907327410198, 18.349909124155772 ], [ -64.987959127596696, 18.349977520518507 ], [ -64.988025009387286, 18.350064357077088 ], [ -64.988091058815996, 18.350119342388325 ], [ -64.988138165134501, 18.35019243261911 ], [ -64.988222990035354, 18.35028848927567 ], [ -64.988322902369134, 18.350280107368462 ], [ -64.988408230184461, 18.350303409070477 ], [ -64.988484002625569, 18.350344814382368 ], [ -64.988542005423369, 18.350355375585423 ], [ -64.988570503907852, 18.350355544533215 ], [ -64.988655999361299, 18.35037884623523 ], [ -64.988736465670399, 18.350411368035168 ], [ -64.988817099617677, 18.350448248426858 ], [ -64.988902595071124, 18.350462496359455 ], [ -64.989002675043082, 18.350445063302118 ], [ -64.9890930320027, 18.35044573254504 ], [ -64.989216078400375, 18.350505748310241 ], [ -64.989301573853822, 18.350533576242185 ], [ -64.98938706930727, 18.350547825484398 ], [ -64.989472564760717, 18.350562242364788 ], [ -64.989643555667612, 18.350590739539598 ], [ -64.989733744989053, 18.35060499009154 ], [ -64.989847571288863, 18.350637679529598 ], [ -64.989933066742253, 18.35065645500174 ], [ -64.990028117569921, 18.350679924341875 ], [ -64.990084611624468, 18.350743962112915 ], [ -64.990145967185185, 18.350803473654025 ], [ -64.990202461239676, 18.350867511425008 ], [ -64.990278232371111, 18.350908918046571 ], [ -64.990401446406963, 18.350973457422356 ], [ -64.990486775531906, 18.351001285354243 ], [ -64.990619712580099, 18.351029617510278 ], [ -64.990705208033546, 18.351043865442819 ], [ -64.990790871125114, 18.351030789667618 ], [ -64.990876701854859, 18.351008830380408 ], [ -64.990967058814476, 18.351009499623331 ], [ -64.991052554267924, 18.351023750175216 ], [ -64.991190185184109, 18.351061133481323 ], [ -64.991275512999437, 18.351088961413268 ], [ -64.991365869959054, 18.351103209345808 ], [ -64.991451699379127, 18.351081250058598 ], [ -64.991485059369779, 18.351067837697428 ], [ -64.991603245570957, 18.351159537071851 ], [ -64.99173618261915, 18.351192394148086 ], [ -64.991838440577339, 18.351231789111921 ], [ -64.991918405281695, 18.351274032614526 ], [ -64.992003230182547, 18.351303370599396 ], [ -64.9920880550834, 18.351337567471148 ], [ -64.99217304762243, 18.351362042640119 ], [ -64.992258040161403, 18.351381825250826 ], [ -64.9923482294829, 18.351372940429201 ], [ -64.992438417494668, 18.351364055607519 ], [ -64.992528608125838, 18.351359864653944 ], [ -64.992618797447278, 18.351350978522646 ], [ -64.992699096118258, 18.351313427578361 ], [ -64.992784422623913, 18.351290127186019 ], [ -64.992874613255026, 18.351276548496401 ], [ -64.992964970214643, 18.351262802168549 ], [ -64.993054990588348, 18.351263471411471 ], [ -64.993145181219461, 18.351254586589846 ], [ -64.993235370540958, 18.351255258452113 ], [ -64.993330421368569, 18.351255927694979 ], [ -64.993420609380394, 18.351261459753744 ], [ -64.993525550858521, 18.351271854628351 ], [ -64.993615741489691, 18.351272525180946 ], [ -64.993705761863339, 18.351287443666081 ], [ -64.993795783546659, 18.351302532408681 ], [ -64.993880608447512, 18.351327007577709 ], [ -64.993965602296214, 18.351346787569014 ], [ -64.994045396743047, 18.351380819421934 ], [ -64.994135418426424, 18.351400768361088 ], [ -64.994245221410722, 18.351439826738954 ], [ -64.994325018476957, 18.351473858591874 ], [ -64.994384863984692, 18.351513084607916 ], [ -64.9943997837795, 18.351517947423758 ], [ -64.994474550391715, 18.351561533341169 ], [ -64.99455937660224, 18.351586008510196 ], [ -64.99463933868725, 18.351620037743771 ], [ -64.994719134443812, 18.351654237234811 ], [ -64.994803960654338, 18.351673849587996 ], [ -64.994888951883695, 18.351698492395144 ], [ -64.994978973567015, 18.351713413499624 ], [ -64.995068996560008, 18.351728499622936 ], [ -64.995159016933655, 18.351729171485204 ], [ -64.995279213482888, 18.351739563740409 ], [ -64.995369067528088, 18.351754652483066 ], [ -64.9954086301301, 18.351831429443337 ], [ -64.995323303624446, 18.351849869639182 ], [ -64.995233112993333, 18.351863617276649 ], [ -64.995143092619685, 18.351848528534049 ], [ -64.995053069626636, 18.351838302607234 ], [ -64.994963047943315, 18.351823382812427 ], [ -64.994873027569668, 18.351803601511449 ], [ -64.994793230503433, 18.351769404639754 ], [ -64.994698348623615, 18.351744929470726 ], [ -64.994608325630622, 18.351734534596119 ], [ -64.994523334401265, 18.351714922242934 ], [ -64.99443834055262, 18.351690279435786 ], [ -64.99434848650742, 18.351665804266759 ], [ -64.9942584648241, 18.351655409392151 ], [ -64.994168444450452, 18.351640489597344 ], [ -64.99408345060175, 18.351620709606038 ], [ -64.993998625700897, 18.351596234437011 ], [ -64.9939084363794, 18.351595562574744 ], [ -64.993808356407442, 18.351594724384029 ], [ -64.993718334724122, 18.351584498457214 ], [ -64.993628145402681, 18.351583829214348 ], [ -64.993538123719304, 18.351573603287534 ], [ -64.993443074201366, 18.351572931425324 ], [ -64.993352883570196, 18.351572262182401 ], [ -64.993307287304731, 18.351643508393579 ], [ -64.993301587607789, 18.351729505451772 ], [ -64.993310806396039, 18.351815671457814 ], [ -64.993350201359931, 18.351892449727757 ], [ -64.993409714210713, 18.351964701767827 ], [ -64.993464196607476, 18.352032093611399 ], [ -64.993528737292934, 18.352104176703619 ], [ -64.993598473451186, 18.352157319304979 ], [ -64.993652955847949, 18.35222470852915 ], [ -64.993722525677754, 18.35228254368883 ], [ -64.993792264455294, 18.352335686290189 ], [ -64.993872058902184, 18.352374578339607 ], [ -64.993951854658746, 18.352413301441175 ], [ -64.994031482777132, 18.352471305548647 ], [ -64.994106081751227, 18.352519751662612 ], [ -64.994190906652079, 18.352563337580023 ], [ -64.994255448647152, 18.352621172739703 ], [ -64.994335244403715, 18.35266006478912 ], [ -64.994420235633072, 18.352684707596325 ], [ -64.994505060533925, 18.352713876633345 ], [ -64.994584857600159, 18.352748074814713 ], [ -64.994664652046993, 18.35279166073218 ], [ -64.994734389514917, 18.352844803333483 ], [ -64.99481921441577, 18.352864584634517 ], [ -64.99490923609909, 18.352874810561275 ], [ -64.99499422863812, 18.3529041459268 ], [ -64.995068827612215, 18.35295242571226 ], [ -64.995143595534103, 18.353005567003947 ], [ -64.995218360836645, 18.353049152921358 ], [ -64.99529295981074, 18.353111849587208 ], [ -64.995357500496141, 18.35317454756273 ], [ -64.995401924604323, 18.353246630655008 ], [ -64.995451377856796, 18.353318715056901 ], [ -64.995536370395826, 18.353338496357878 ], [ -64.995626559717266, 18.353339166910473 ], [ -64.995716581400586, 18.353334975956898 ], [ -64.995801909215913, 18.353316535761053 ], [ -64.995882375525014, 18.353283678684818 ], [ -64.995957812689824, 18.353241267544036 ], [ -64.996023359204116, 18.353184270575071 ], [ -64.996093767224636, 18.35313230144078 ], [ -64.996164342883219, 18.353080165977985 ], [ -64.996239947686149, 18.35302819946304 ], [ -64.996315384850959, 18.352985619374465 ], [ -64.996400545028109, 18.352967177868948 ], [ -64.996490734349607, 18.352967848421542 ], [ -64.996571033020587, 18.352934991345307 ], [ -64.996597519847342, 18.352889730356083 ], [ -64.996612774918447, 18.352861230561928 ], [ -64.996648481843124, 18.352784956516075 ], [ -64.996694079418262, 18.352713708995225 ], [ -64.996739676993457, 18.352642296455542 ], [ -64.996785442206772, 18.352570882606187 ], [ -64.996850988721064, 18.352514051965727 ], [ -64.99690647694672, 18.352447499622542 ], [ -64.996957271304325, 18.352376085773187 ], [ -64.997012759530037, 18.352309702377852 ], [ -64.99708333518862, 18.352257565605385 ], [ -64.99715877235343, 18.352215154464659 ], [ -64.997214428217262, 18.352148600811802 ], [ -64.997265390213045, 18.352034271597574 ], [ -64.997306293920133, 18.351929331429119 ], [ -64.99734200084481, 18.351853054763922 ], [ -64.99741257650345, 18.351801088248976 ], [ -64.997458174078645, 18.351724811583779 ], [ -64.997498910147613, 18.351648705176046 ], [ -64.997519529639305, 18.351567568314351 ], [ -64.99755540420216, 18.351486597781161 ], [ -64.997595972633007, 18.351410322425636 ], [ -64.997666548291591, 18.351358354600961 ], [ -64.997747182238868, 18.351301526579846 ], [ -64.997802670464523, 18.351234974236661 ], [ -64.997863355472646, 18.351173283399646 ], [ -64.997913982192188, 18.351102037188468 ], [ -64.997959579767326, 18.351030623339113 ], [ -64.997985228403365, 18.350949486477418 ], [ -64.997991095738428, 18.350863488109553 ], [ -64.997976678858038, 18.350777322103568 ], [ -64.997977349410576, 18.350691322425973 ], [ -64.997973158457, 18.350605156419988 ], [ -64.997946336353948, 18.350530726393742 ], [ -64.997943821781803, 18.350523685591668 ], [ -64.997889171746863, 18.350456295057768 ], [ -64.997854805927318, 18.350379684426002 ], [ -64.997855476479913, 18.35029351841996 ], [ -64.99784625638199, 18.350207352413975 ], [ -64.99784139487582, 18.350178183376897 ], [ -64.997821948851083, 18.350111128119295 ], [ -64.99780769960887, 18.350024962113253 ], [ -64.997783224439843, 18.349943489975317 ], [ -64.997763946053283, 18.349862185475445 ], [ -64.997739638522376, 18.349780713337452 ], [ -64.997715163353348, 18.34969924119946 ], [ -64.997735950483218, 18.349618104337765 ], [ -64.99775154083062, 18.349532105969899 ], [ -64.997792276899588, 18.349455998252552 ], [ -64.997852961907768, 18.349394307415537 ], [ -64.99788967466128, 18.349362288530017 ], [ -64.99791850842206, 18.349337310446572 ], [ -64.997961423786933, 18.349293556890984 ], [ -64.997979025792006, 18.349275619609614 ], [ -64.998054462956816, 18.349228345652989 ], [ -64.998129900121626, 18.349185933202534 ], [ -64.998206846029746, 18.349141509094409 ], [ -64.998275410030601, 18.349087864888304 ], [ -64.998335592124306, 18.349023324202847 ], [ -64.998373143068591, 18.348947719399916 ], [ -64.998421925768469, 18.348877645346079 ], [ -64.998459476712753, 18.348802041852821 ], [ -64.998596604714521, 18.348678492540671 ], [ -64.998653936959784, 18.348613784217093 ], [ -64.998725183170961, 18.348565672069753 ], [ -64.998802129079081, 18.348525606553324 ], [ -64.998831130477981, 18.348447151901951 ], [ -64.998899694478894, 18.348396189906168 ], [ -64.998985022294164, 18.348380599558766 ], [ -64.999028105297157, 18.348307676966158 ], [ -64.999057105386441, 18.348226707742583 ], [ -64.999086443371311, 18.348115731291273 ], [ -64.999083593522869, 18.348068792610945 ], [ -64.999083928799109, 18.348025877246073 ], [ -64.999141596320669, 18.347964018770938 ], [ -64.999223402425287, 18.347929485313273 ], [ -64.999301355471914, 18.347887240500995 ], [ -64.999359022993417, 18.34782538202586 ], [ -64.999402608910884, 18.34776603812287 ], [ -64.999410823179915, 18.347758326768258 ], [ -64.999427922270627, 18.347676686992145 ], [ -64.999481398838554, 18.347610805201555 ], [ -64.999567229568299, 18.347591862091235 ], [ -64.999661106928954, 18.34759270028195 ], [ -64.999750793335977, 18.347601082189158 ], [ -64.999836456427545, 18.347617343089155 ], [ -64.999926310472745, 18.347606278971625 ], [ -65.000011973564312, 18.347591359176818 ], [ -65.000097804294057, 18.347580295059345 ], [ -65.000187658339257, 18.34757325425727 ], [ -65.000269464443818, 18.347538720799605 ], [ -65.000367700396225, 18.34751223397285 ], [ -65.000453532435643, 18.347497314178042 ], [ -65.000531316534421, 18.347454901727588 ], [ -65.000593007371435, 18.347397066567908 ], [ -65.000642628262028, 18.347323305784585 ], [ -65.000671797299105, 18.347241666008415 ], [ -65.00072544150521, 18.347175951856002 ], [ -65.000787132342168, 18.347117949058145 ], [ -65.00091504024607, 18.346947461065724 ], [ -65.001005397205688, 18.346874035558642 ], [ -65.001063063417519, 18.346808321406229 ], [ -65.001112516669991, 18.346738583938304 ], [ -65.001166162185768, 18.346672702147714 ], [ -65.001231876338181, 18.346618555027192 ], [ -65.001322064350006, 18.346564743182967 ], [ -65.001399848448841, 18.346522498370689 ], [ -65.001477801495469, 18.346480253558411 ], [ -65.001555585594247, 18.346441864423412 ], [ -65.001641582652496, 18.346407330965746 ], [ -65.001727413382184, 18.346388555493604 ], [ -65.001813245421602, 18.346361901028729 ], [ -65.001899242479794, 18.346339102241132 ], [ -65.001988930196489, 18.346335917116392 ], [ -65.002074593288114, 18.346352178016389 ], [ -65.002164278385465, 18.346352848568927 ], [ -65.002253964792487, 18.346353519121521 ], [ -65.002339795522232, 18.346342455004049 ], [ -65.002429649567432, 18.346339269879309 ], [ -65.00252352692803, 18.346336084754569 ], [ -65.002609357657775, 18.346317141644306 ], [ -65.002697536631217, 18.346308592098922 ], [ -65.002844387645325, 18.346305742250479 ], [ -65.002934240380853, 18.346298533810284 ], [ -65.003024094426053, 18.346291493008266 ], [ -65.003113780833075, 18.346288307883526 ], [ -65.003199443924643, 18.346304401145346 ], [ -65.003285274654388, 18.346281769995926 ], [ -65.003363058753223, 18.346243380860926 ], [ -65.003445033805633, 18.346208847403261 ], [ -65.003526842529595, 18.346178337261051 ], [ -65.003616696574738, 18.346175152136311 ], [ -65.003702358356691, 18.346160233651176 ], [ -65.003780310093646, 18.346117819891049 ], [ -65.003846025555731, 18.346063840408704 ], [ -65.003907715083074, 18.346005837610846 ], [ -65.003993545812818, 18.345979183145971 ], [ -65.004075520865229, 18.345948673003761 ], [ -65.004161351594917, 18.345925874216164 ], [ -65.004239135693751, 18.345887485081221 ], [ -65.004325134061617, 18.345860830616289 ], [ -65.004402918160451, 18.345818585804011 ], [ -65.004480702259229, 18.345780196669068 ], [ -65.004562678621369, 18.345741807534068 ], [ -65.004636438095019, 18.345695707044456 ], [ -65.004714389831975, 18.345653463541851 ], [ -65.004736854652947, 18.345598979835358 ], [ -65.004745235250482, 18.345575678133343 ], [ -65.004786641872045, 18.34550191735002 ], [ -65.004815810909122, 18.3454204465217 ], [ -65.004832742361657, 18.345338637797738 ], [ -65.004910694098612, 18.34529639298546 ], [ -65.004996524828357, 18.345269738520585 ], [ -65.005098448819922, 18.345278288065913 ], [ -65.005188135226945, 18.345286837611241 ], [ -65.005265416411305, 18.345326232575076 ], [ -65.005346720911177, 18.345361939499753 ], [ -65.005419811141962, 18.345409213456378 ], [ -65.005505138957233, 18.345437209026443 ], [ -65.005590969686978, 18.345422290541308 ], [ -65.005672274186793, 18.345465707510925 ], [ -65.005758104916538, 18.345446932038783 ], [ -65.005831865699918, 18.34540066391105 ], [ -65.005913840752328, 18.345366130453385 ], [ -65.005995648166561, 18.345335621620848 ], [ -65.006081311258185, 18.345348025533838 ], [ -65.006170997665208, 18.345344672770921 ], [ -65.006248278849569, 18.345388258688388 ], [ -65.006333774303016, 18.345408376575335 ], [ -65.006357578919506, 18.345490351627745 ], [ -65.006434692465746, 18.345529912920085 ], [ -65.006524546510889, 18.345530583472623 ], [ -65.006614232917968, 18.345535109702496 ], [ -65.006704086963111, 18.345531756939636 ], [ -65.006789917692856, 18.345505270112881 ], [ -65.006871725107146, 18.345470736655216 ], [ -65.006957555836834, 18.345455816860408 ], [ -65.007043386566579, 18.345433018072811 ], [ -65.007125361618989, 18.345402507930601 ], [ -65.007207169033279, 18.345367974472936 ], [ -65.007288976447569, 18.345337465640398 ], [ -65.007370951499979, 18.345303098511238 ], [ -65.007633808109745, 18.34508282198999 ], [ -65.007667168100397, 18.345005205529333 ], [ -65.007708573412287, 18.344931444745953 ], [ -65.007749981343522, 18.34485785160075 ], [ -65.007803457911507, 18.34479196981016 ], [ -65.007865147438793, 18.34473396701236 ], [ -65.007930862900935, 18.344679819891837 ], [ -65.008004791322435, 18.344633719402225 ], [ -65.008090622052123, 18.344610920614628 ], [ -65.008168406150958, 18.344564821434744 ], [ -65.008242334572458, 18.344518551997282 ], [ -65.008324141986748, 18.344488041855072 ], [ -65.00840997140682, 18.3444769777376 ], [ -65.008491780130726, 18.34444646759539 ], [ -65.008581466537805, 18.344446970509807 ], [ -65.008667129629373, 18.34445937573247 ], [ -65.008773076936393, 18.34446792658747 ], [ -65.008862763343416, 18.34448033050046 ], [ -65.008956639394398, 18.344488880045844 ], [ -65.009046327111093, 18.344493407585389 ], [ -65.009140204471748, 18.344490222460649 ], [ -65.009226035201436, 18.344463566686102 ], [ -65.009287726038451, 18.344405563888245 ], [ -65.009365510137286, 18.344367174753302 ], [ -65.009455364182429, 18.344363989628562 ], [ -65.009545050589509, 18.344364661490772 ], [ -65.009627025641919, 18.344333982400769 ], [ -65.009704808431081, 18.344291737588492 ], [ -65.009774547208622, 18.344241613783424 ], [ -65.009844283366874, 18.344191489978357 ], [ -65.009905975513504, 18.344133488490229 ], [ -65.009963641725392, 18.344071628705422 ], [ -65.010025332562407, 18.344013625907564 ], [ -65.010038240699487, 18.343931818493331 ], [ -65.010016112464484, 18.343848671283581 ], [ -65.010041259495722, 18.343767031507412 ], [ -65.010098759379105, 18.343705171722604 ], [ -65.010164641169695, 18.343647170234476 ], [ -65.01023437863762, 18.343597046429409 ], [ -65.010300091480417, 18.343543065637391 ], [ -65.010385923519777, 18.343520266849794 ], [ -65.010451636362575, 18.343466287367391 ], [ -65.010513328509262, 18.343408284569591 ], [ -65.010546688499915, 18.343330500470756 ], [ -65.010551382367908, 18.343244837379189 ], [ -65.01055205161083, 18.343159175597293 ], [ -65.010573341655117, 18.343061945473778 ], [ -65.010594296423108, 18.342980304387936 ], [ -65.01061139551382, 18.342898498283375 ], [ -65.01064056455084, 18.342817026145383 ], [ -65.010681972482075, 18.342739408375053 ], [ -65.010739638693963, 18.342677383571413 ], [ -65.010797307525195, 18.342615525096278 ], [ -65.010875091623973, 18.342573280284 ], [ -65.010948852407353, 18.342527012156268 ], [ -65.011026802834635, 18.342488621711595 ], [ -65.01110458693347, 18.34244637820899 ], [ -65.011170302395556, 18.342392231088468 ], [ -65.011252108500173, 18.342361719636585 ], [ -65.011326036921673, 18.342315451508853 ], [ -65.011411867651418, 18.34228879835365 ], [ -65.011497698381106, 18.342270021571835 ], [ -65.011587384788186, 18.342278572426835 ], [ -65.011672881551306, 18.34230640035878 ], [ -65.011754184741449, 18.342345961651063 ], [ -65.011827274972234, 18.342393235607688 ], [ -65.011896175559116, 18.342444366551263 ], [ -65.011955685790554, 18.34245928634607 ], [ -65.011979994631076, 18.342475044331593 ], [ -65.012061297821276, 18.342506895578992 ], [ -65.012138579005637, 18.342546290542828 ], [ -65.012211501598301, 18.342597586505235 ], [ -65.012268164600641, 18.342660284480758 ], [ -65.012328849608764, 18.342719125469273 ], [ -65.012405961845332, 18.34276271138674 ], [ -65.012483243029692, 18.342806128356358 ], [ -65.012568570845019, 18.342849546635648 ], [ -65.012653395745872, 18.342955327614163 ], [ -65.012673009408729, 18.343037301356901 ], [ -65.012688767394252, 18.343119276409311 ], [ -65.012761857625037, 18.343166550365936 ], [ -65.01285154403206, 18.343163366550868 ], [ -65.012937374761805, 18.343140566453599 ], [ -65.013027228807005, 18.343141238315866 ], [ -65.013092104768702, 18.343196223627103 ], [ -65.01310367180065, 18.343278197369841 ], [ -65.013098811604152, 18.343363860461409 ], [ -65.013089925472855, 18.343449523553033 ], [ -65.013077352612072, 18.343496128266736 ], [ -65.013068970704865, 18.343531164638819 ], [ -65.01309277663097, 18.343613138381556 ], [ -65.013137031791302, 18.343687569717474 ], [ -65.013173073992277, 18.343765690402279 ], [ -65.01322554473137, 18.343836264751246 ], [ -65.01326577788592, 18.343910528449044 ], [ -65.013297796771383, 18.343992672449247 ], [ -65.013284888634303, 18.344074310915687 ], [ -65.01324348201274, 18.344148071699067 ], [ -65.013263095675597, 18.344230046751477 ], [ -65.013311543099235, 18.344300622410117 ], [ -65.013372228107357, 18.344363320385639 ], [ -65.01340424699282, 18.344441607398892 ], [ -65.013395362171195, 18.344527101542667 ], [ -65.0134106172423, 18.34455107379722 ], [ -65.013438780450485, 18.344609748457287 ], [ -65.01350365641224, 18.344664732458853 ], [ -65.013556127151332, 18.344731284802037 ], [ -65.013625026428485, 18.344782582074117 ], [ -65.013669282898491, 18.344856845771915 ], [ -65.013725944591158, 18.344919710075885 ], [ -65.01377020106122, 18.345001852766472 ], [ -65.013835077022918, 18.34505683807771 ], [ -65.01389559439292, 18.345135125090962 ], [ -65.013960470354618, 18.34519027804032 ], [ -65.014021155362741, 18.345249119028836 ], [ -65.014069435148258, 18.345319527049355 ], [ -65.014142525379043, 18.3453669686441 ], [ -65.014228020832434, 18.34539094089871 ], [ -65.014276468256071, 18.345461348919173 ], [ -65.014349558486856, 18.345508622875798 ], [ -65.014439244893879, 18.345501582073723 ], [ -65.014529098939079, 18.34550996398093 ], [ -65.014589783947201, 18.345568972607623 ], [ -65.014671088447074, 18.345600657526518 ], [ -65.014760607215976, 18.345628651786853 ], [ -65.014846102669367, 18.345652624041463 ], [ -65.015077108031846, 18.345687660413546 ], [ -65.015162603485237, 18.345699897998088 ], [ -65.015254301550044, 18.345706435885688 ], [ -65.015346167252915, 18.345707106438283 ], [ -65.015431662706362, 18.345719511660945 ], [ -65.015510955548507, 18.345755050947446 ], [ -65.01557180819475, 18.345814059574138 ], [ -65.015638695814232, 18.345867033227648 ], [ -65.01571161840684, 18.345914307184273 ], [ -65.01575788653463, 18.345944314412009 ], [ -65.015764759698527, 18.345948840641938 ], [ -65.015784708637625, 18.345961748779018 ], [ -65.015851596257107, 18.346020589767534 ], [ -65.015917980962115, 18.346069875381886 ], [ -65.015956705373412, 18.346099379695204 ], [ -65.01597011642491, 18.346130225113711 ], [ -65.015971457530043, 18.346167440781699 ], [ -65.015971289891922, 18.346190071931119 ], [ -65.015972798635232, 18.346224102474366 ], [ -65.015974139740365, 18.346253271511443 ], [ -65.016004649882575, 18.346302221849442 ], [ -65.016033316005178, 18.346352345654509 ], [ -65.016102215282388, 18.346433314878084 ], [ -65.01614529828538, 18.346491820590359 ], [ -65.016197098471878, 18.346567090116991 ], [ -65.016208162589407, 18.346633810098297 ], [ -65.016210341885255, 18.346722490676484 ], [ -65.016241187303763, 18.34678937829591 ], [ -65.01628192337273, 18.346836819890655 ], [ -65.016378985858125, 18.346976127188327 ], [ -65.01649700311151, 18.347118451972619 ], [ -65.016612002878276, 18.34725524469809 ], [ -65.016724151486926, 18.347389187575175 ], [ -65.016773438410951, 18.347414500934917 ], [ -65.016921127615831, 18.347451716602848 ], [ -65.017034451001166, 18.34744970494512 ], [ -65.017165376391631, 18.34741735078336 ], [ -65.017392189490806, 18.347394216719465 ], [ -65.017601403204196, 18.34737074737933 ], [ -65.017711709102912, 18.347388181746282 ], [ -65.017934666524752, 18.347473006647135 ], [ -65.018076823670867, 18.347498990559473 ], [ -65.018278996582239, 18.34762606027266 ], [ -65.018390474638295, 18.347726140244617 ], [ -65.018548054493692, 18.347800236304238 ], [ -65.01868401033812, 18.347870141410283 ], [ -65.018797164775663, 18.347902998486518 ], [ -65.018915349667168, 18.347938202496778 ], [ -65.019044095761785, 18.347956475054445 ], [ -65.019100423487828, 18.347983967710093 ], [ -65.019154235332053, 18.34803593553471 ], [ -65.019230844654203, 18.348102990792313 ], [ -65.019277112781936, 18.348132830381928 ], [ -65.019413068626363, 18.348205082421998 ], [ -65.019556397929819, 18.34832175857025 ], [ -65.019727388836714, 18.348505154699751 ], [ -65.019906092407894, 18.348713025998336 ], [ -65.020048080606159, 18.348884687457769 ], [ -65.020132402592594, 18.348983929239012 ], [ -65.020197110916172, 18.349042434951286 ], [ -65.020276403758317, 18.349119213221229 ], [ -65.020335078418384, 18.349188615412857 ], [ -65.020362403435854, 18.349311829448709 ], [ -65.020374639710667, 18.349385757870209 ], [ -65.020394757597671, 18.349447281069047 ], [ -65.020396265031252, 18.349582731379712 ], [ -65.020377489559166, 18.349673592563477 ], [ -65.020366091475012, 18.349823461064204 ], [ -65.020362403435854, 18.349943992889735 ], [ -65.020305069880919, 18.350029655981302 ], [ -65.020268524765527, 18.35009101154202 ], [ -65.020144138572391, 18.35018103322534 ], [ -65.020011535490767, 18.350229814615545 ], [ -65.019898716329521, 18.35025797913346 ], [ -65.019800143791201, 18.35034330694873 ], [ -65.019704088444371, 18.350431149336202 ], [ -65.019629152884306, 18.350477417463935 ], [ -65.019573329382354, 18.350683612381033 ], [ -65.019553380443256, 18.350909756237286 ], [ -65.019594788374491, 18.351035652483461 ], [ -65.019635355495666, 18.351285264370176 ], [ -65.019680617794506, 18.351439660410506 ], [ -65.019705595878008, 18.351521132548498 ], [ -65.019759407722233, 18.351555833644284 ], [ -65.019854961464318, 18.351539403796494 ], [ -65.019910449689974, 18.351497495570186 ], [ -65.019912796623998, 18.351402109466221 ], [ -65.019931739734261, 18.351271854628351 ], [ -65.019953197416669, 18.351173617366271 ], [ -65.019956551489202, 18.351087451360286 ], [ -65.019939283450697, 18.350981505362938 ], [ -65.019918328682706, 18.350914450105336 ], [ -65.019909443861081, 18.350853428511243 ], [ -65.019935930687836, 18.350752679296363 ], [ -65.019996112781541, 18.35065477862031 ], [ -65.020084290445311, 18.350581688389525 ], [ -65.020252263865586, 18.350511448007182 ], [ -65.020415040503394, 18.350460987616145 ], [ -65.020633305366857, 18.350329728259055 ], [ -65.020708574893547, 18.350243226976772 ], [ -65.020771103921277, 18.35014515735287 ], [ -65.020849390934472, 18.34986939391564 ], [ -65.0208897917272, 18.349731426413484 ], [ -65.020928851414737, 18.349683315575817 ], [ -65.020972772608502, 18.349650961414 ], [ -65.02107922282994, 18.349548366869897 ], [ -65.021143931153517, 18.349511989392624 ], [ -65.021298828798592, 18.349473767895802 ], [ -65.021384156613863, 18.34943739041853 ], [ -65.021458923226078, 18.349430517254632 ], [ -65.021559170836213, 18.349455998252552 ], [ -65.022161327049446, 18.349548868474642 ], [ -65.022461902241616, 18.349618774890359 ], [ -65.022674299770074, 18.34974852550414 ], [ -65.022841937914109, 18.349875428888822 ], [ -65.023032877760102, 18.35005094602559 ], [ -65.023320880091489, 18.350272396013793 ], [ -65.023442417745912, 18.350363926440423 ], [ -65.023594465542487, 18.350412875468805 ], [ -65.023669232154703, 18.350422935067115 ], [ -65.023706950737107, 18.350399298088803 ], [ -65.023719691236067, 18.350373146538345 ], [ -65.023658000399053, 18.350274910585995 ], [ -65.023564123038454, 18.350145493938783 ], [ -65.02340604026864, 18.349929743647465 ], [ -65.023168664656737, 18.349632185941857 ], [ -65.022948052859249, 18.349415931426449 ], [ -65.022689890117476, 18.349235218816887 ], [ -65.022632893148511, 18.349189118327274 ], [ -65.022530801518826, 18.349129103871746 ], [ -65.022384118142838, 18.349056348917259 ], [ -65.022272471138933, 18.348964986128749 ], [ -65.022205751157628, 18.348878652484586 ], [ -65.022161662325743, 18.348771028796136 ], [ -65.022066276221778, 18.348629542202616 ], [ -65.022014811311578, 18.348512363139946 ], [ -65.022013302568269, 18.348092597227378 ], [ -65.022012799653851, 18.347837284334048 ], [ -65.022006261766251, 18.347720440547732 ], [ -65.022006597042548, 18.347670316742665 ], [ -65.022006932318845, 18.347636956752012 ], [ -65.021969884288978, 18.347584150736623 ], [ -65.021896626420073, 18.34754257647694 ], [ -65.021862931153123, 18.34753805024701 ], [ -65.021795206652598, 18.347571074961422 ], [ -65.021702166173043, 18.347649026698377 ], [ -65.021598901076345, 18.34775799149196 ], [ -65.021494965427053, 18.347901825019505 ], [ -65.021433945142633, 18.348069966077958 ], [ -65.021343252906718, 18.348168704944783 ], [ -65.021141751857613, 18.348229222314728 ], [ -65.02098618366, 18.348254703312648 ], [ -65.020903202778698, 18.348225031361153 ], [ -65.020818714463815, 18.348169543135498 ], [ -65.020628946775162, 18.348175410470503 ], [ -65.020574129102044, 18.348151102939653 ], [ -65.020376148453977, 18.347925461997818 ], [ -65.020256454819162, 18.347606278971625 ], [ -65.020202642974937, 18.34745909268122 ], [ -65.020122009027659, 18.34723915143627 ], [ -65.020035507745376, 18.347112081723139 ], [ -65.019914137729131, 18.346994232107875 ], [ -65.019755216768601, 18.346876214854547 ], [ -65.019573329382354, 18.346836819890655 ], [ -65.019431004598118, 18.346830952555649 ], [ -65.019214080839788, 18.346791222315517 ], [ -65.019108971723483, 18.346799939499022 ], [ -65.019021801198278, 18.346780158197987 ], [ -65.018886683544565, 18.346731710774407 ], [ -65.018551239618432, 18.346651076827129 ], [ -65.01843808518089, 18.346641856729207 ], [ -65.018246642420422, 18.346612855330307 ], [ -65.018089565479499, 18.346622745980767 ], [ -65.017976577370462, 18.346591397647842 ], [ -65.017927290446437, 18.346588212523159 ], [ -65.017822015001684, 18.346606485080827 ], [ -65.017665776251476, 18.346611346586997 ], [ -65.017523619105361, 18.346590727095304 ], [ -65.017369893617627, 18.346548147006729 ], [ -65.017265959278006, 18.346494335162504 ], [ -65.017060267275326, 18.346364918515349 ], [ -65.016975945288891, 18.346296354514436 ], [ -65.016891790940633, 18.346219576244494 ], [ -65.016822890353751, 18.346149503500271 ], [ -65.016778299917121, 18.346099882609678 ], [ -65.016730355407958, 18.346066019704551 ], [ -65.016644357040093, 18.346021930872723 ], [ -65.016578475249503, 18.345979350784148 ], [ -65.016524494457428, 18.345948170089343 ], [ -65.016489124118721, 18.345920342157456 ], [ -65.01644721458274, 18.345866697951351 ], [ -65.016413184039493, 18.34580584661478 ], [ -65.016386361936441, 18.345732419798026 ], [ -65.016387032489035, 18.345644745048673 ], [ -65.016375465457088, 18.345562769996263 ], [ -65.01633322064481, 18.345486494640738 ], [ -65.016321653612863, 18.345404519588328 ], [ -65.016306901456232, 18.345363951157481 ], [ -65.016304554522208, 18.345357580908001 ], [ -65.016291814023248, 18.345322544535918 ], [ -65.01628644960266, 18.345234869786623 ], [ -65.016287120155198, 18.345147195037327 ], [ -65.016293993319096, 18.345059521597648 ], [ -65.016312936429415, 18.344977880511863 ], [ -65.01633808215098, 18.34489624073575 ], [ -65.016387535403453, 18.344826504577497 ], [ -65.01643112132092, 18.344750898464895 ], [ -65.016462302015668, 18.344669258688782 ], [ -65.016500355874371, 18.344511678833385 ], [ -65.016512593458913, 18.344429871419152 ], [ -65.016537571542358, 18.344355942997652 ], [ -65.016550478369766, 18.344274304531154 ], [ -65.016583838360418, 18.344196520432376 ], [ -65.016633292922563, 18.344126781654779 ], [ -65.016699007075033, 18.344072803482106 ], [ -65.016768912181078, 18.344018656361584 ], [ -65.016838649648946, 18.343968532556516 ], [ -65.016916432438109, 18.343930143421517 ], [ -65.017002095529676, 18.343942548644179 ], [ -65.017100331482084, 18.343904325837684 ], [ -65.017170070259681, 18.343854203342289 ], [ -65.017259755357031, 18.343854872585212 ], [ -65.017341061166519, 18.343890411871712 ], [ -65.017389508590156, 18.343960987530352 ], [ -65.017454384551911, 18.344015972841589 ], [ -65.017544070958934, 18.344020500381134 ], [ -65.017629566412381, 18.344040615648737 ], [ -65.017706847596742, 18.344080179560422 ], [ -65.017771554610647, 18.344135163561987 ], [ -65.017799216214087, 18.344144383659909 ], [ -65.017864427452082, 18.344160476921729 ], [ -65.017949921595857, 18.344180593499004 ], [ -65.018035418358977, 18.344212444746347 ], [ -65.018120912502752, 18.344236417000957 ], [ -65.01821445458711, 18.344272123925634 ], [ -65.01829995135023, 18.344284530457969 ], [ -65.01838963644758, 18.344289055378169 ], [ -65.01847949049278, 18.344285702615309 ], [ -65.018557274591615, 18.344247313480309 ], [ -65.01862717969766, 18.344189479630302 ], [ -65.018700940480983, 18.344143211502569 ], [ -65.018766654633453, 18.344089230710495 ], [ -65.018840584364625, 18.344039106905484 ], [ -65.018914343838333, 18.343992838777694 ], [ -65.018996320200415, 18.343958472958207 ], [ -65.019078127614648, 18.343927796487549 ], [ -65.019135627498088, 18.343865936702741 ], [ -65.01922162455628, 18.343847162540271 ], [ -65.019306952371551, 18.343871133485152 ], [ -65.019384233555968, 18.343914551764499 ], [ -65.019469730319031, 18.343938525328724 ], [ -65.019555056824686, 18.343970376576124 ], [ -65.019636528962678, 18.344002058875617 ], [ -65.019717833462494, 18.344033911432689 ], [ -65.019760245912948, 18.344049166503794 ], [ -65.019827636446848, 18.344073640363149 ], [ -65.019908940946664, 18.344105491610492 ], [ -65.019990245446479, 18.344141030896992 ], [ -65.020063335677264, 18.344188304853617 ], [ -65.020140450533177, 18.344235746448362 ], [ -65.020187221575384, 18.34427195759713 ], [ -65.020245893616107, 18.344333982400769 ], [ -65.020315463445854, 18.34438595153506 ], [ -65.020395929754955, 18.344417467506162 ], [ -65.020476396064112, 18.344448814529414 ], [ -65.020551331624119, 18.344490556427274 ], [ -65.020626433512632, 18.344532130686957 ], [ -65.020690469973999, 18.34459432443839 ], [ -65.020721985945045, 18.344642102619105 ], [ -65.020722825445432, 18.344643274776445 ], [ -65.020738246845042, 18.34466657647846 ], [ -65.020780826933617, 18.34473882851853 ], [ -65.020823239384015, 18.3448110805586 ], [ -65.020860287413882, 18.344888529381137 ], [ -65.020875710123107, 18.344970839709845 ], [ -65.02090739373233, 18.345048120894205 ], [ -65.020955339551165, 18.345120540572395 ], [ -65.021014011591888, 18.345182566685708 ], [ -65.021072684942283, 18.34524476043714 ], [ -65.021131359602407, 18.345306786550395 ], [ -65.021200928122482, 18.345358754375013 ], [ -65.021286926490347, 18.345385073563648 ], [ -65.021378456916977, 18.345380548643448 ], [ -65.021464622922963, 18.345355570559946 ], [ -65.021529666522838, 18.34529941047208 ], [ -65.021600242181478, 18.345243420641623 ], [ -65.02167048256382, 18.345192624974345 ], [ -65.021746255004928, 18.345152056543498 ], [ -65.021821859807858, 18.345106292639855 ], [ -65.021886903407733, 18.345050301499725 ], [ -65.021941385804496, 18.344983915485045 ], [ -65.021952785198323, 18.344901772794515 ], [ -65.021974913433326, 18.3448196314136 ], [ -65.022007938147681, 18.344742851833985 ], [ -65.022040795223916, 18.34466071045307 ], [ -65.022062923458918, 18.34457873540066 ], [ -65.022090583752686, 18.344496759038577 ], [ -65.022107347567101, 18.344414616348047 ], [ -65.022140372281456, 18.344337670439927 ], [ -65.022189322619511, 18.344266088952452 ], [ -65.022201392565876, 18.344241781421545 ], [ -65.022202063118414, 18.344240775592709 ], [ -65.022227544116333, 18.344189310682509 ], [ -65.022217485827696, 18.344107000353802 ], [ -65.022175073377241, 18.344034749623404 ], [ -65.022132493288666, 18.343962497583334 ], [ -65.022095445258856, 18.343885047451124 ], [ -65.022085386970218, 18.343802738432089 ], [ -65.022096786363988, 18.343720594431886 ], [ -65.022097624554704, 18.343633256268504 ], [ -65.022096115811451, 18.343606097579539 ], [ -65.022092930686711, 18.343545915485834 ], [ -65.022115058921713, 18.343463772795246 ], [ -65.022115729474251, 18.343376434631921 ], [ -65.022138025347431, 18.343294459579511 ], [ -65.022160153582433, 18.343212315579251 ], [ -65.022171552976204, 18.343130174198393 ], [ -65.022182952370031, 18.343048031507806 ], [ -65.022182617093733, 18.342963877159548 ], [ -65.022162668154579, 18.342905202499423 ], [ -65.022126625953661, 18.34282708443402 ], [ -65.022069964260993, 18.342764220129993 ], [ -65.022058564867166, 18.342683249596803 ], [ -65.022058397229046, 18.342682411406088 ], [ -65.022116064750549, 18.342620386602448 ], [ -65.022177755587563, 18.342562382494975 ], [ -65.022219162209126, 18.342488789349773 ], [ -65.022256545515233, 18.34239156053593 ], [ -65.022244978483286, 18.34230975312164 ], [ -65.022204912966913, 18.34223532047605 ], [ -65.022185131665879, 18.342153345423583 ], [ -65.022185802218473, 18.342067683641687 ], [ -65.022206924624641, 18.341970453518172 ], [ -65.022240284615293, 18.341892669419337 ], [ -65.022265430336859, 18.341811197281402 ], [ -65.022298622689391, 18.341733413182567 ], [ -65.022336005995498, 18.341655795412237 ], [ -65.022369198348031, 18.341578180261195 ], [ -65.022406581654138, 18.341500396162417 ], [ -65.022492412383826, 18.341489332044887 ], [ -65.022586122106361, 18.341497881590271 ], [ -65.022663403290721, 18.341537444192227 ], [ -65.022732302567931, 18.341588572516457 ], [ -65.022821988974954, 18.341593100056059 ], [ -65.022907819704699, 18.341578180261195 ], [ -65.022993650434387, 18.341567116143722 ], [ -65.023079481164132, 18.341540460369174 ], [ -65.023157265262967, 18.341502072543847 ], [ -65.023239240315377, 18.341467539086182 ], [ -65.02332104772961, 18.341437028943972 ], [ -65.023435712220135, 18.341391096092536 ], [ -65.023517519634424, 18.341360585950326 ], [ -65.023611229356902, 18.341365112180199 ], [ -65.023689516370155, 18.341386066948189 ], [ -65.023697563001065, 18.341389922625524 ], [ -65.023783058454512, 18.341410039202799 ], [ -65.023860339638873, 18.341453457482089 ], [ -65.023941644138745, 18.341489164406767 ], [ -65.024027139592192, 18.341505425306707 ], [ -65.024116825999215, 18.341521518568527 ], [ -65.024206512406238, 18.341530068113912 ], [ -65.024336934882285, 18.341542640974694 ], [ -65.02441471898112, 18.341500396162417 ], [ -65.024500548401136, 18.341489332044887 ], [ -65.024586212802433, 18.341501737267549 ], [ -65.024683945840366, 18.341510119174757 ], [ -65.024778158477261, 18.341479775360995 ], [ -65.024859965891551, 18.341441387535724 ], [ -65.024937749990386, 18.341402998400724 ], [ -65.025019725042796, 18.341368464943059 ], [ -65.025097509141631, 18.341330074498444 ], [ -65.025183507509496, 18.341303421343184 ], [ -65.025269338239184, 18.341269055523696 ], [ -65.025363383238016, 18.341257991406167 ], [ -65.025444686428159, 18.341293698330844 ], [ -65.025517610330496, 18.341340972287469 ], [ -65.025586677245769, 18.341395957598706 ], [ -65.025655576522979, 18.341447253561057 ], [ -65.025716261531102, 18.341506094549629 ], [ -65.025785998999027, 18.341455972054234 ], [ -65.025859927420527, 18.341409703926502 ], [ -65.025885073142092, 18.341328064150389 ], [ -65.025922287500407, 18.341250446380002 ], [ -65.026004262552817, 18.341219937547464 ], [ -65.026086071276779, 18.341189258457462 ], [ -65.02617575637413, 18.341189930319729 ], [ -65.026265444090825, 18.341206191219669 ], [ -65.026350939544272, 18.341218596442332 ], [ -65.026448840220382, 18.341223121362532 ], [ -65.026538526627405, 18.341227648902134 ], [ -65.026628379362933, 18.341232175132006 ], [ -65.026734326669953, 18.341240723367662 ], [ -65.026819823433073, 18.341260841254609 ], [ -65.02687648512574, 18.341323705558636 ], [ -65.026937170133863, 18.341382546547152 ], [ -65.026993830516858, 18.341453122205792 ], [ -65.02703389734296, 18.341531409219044 ], [ -65.027061891603296, 18.341613384271454 ], [ -65.027068932405371, 18.341643391499247 ], [ -65.027080668385111, 18.341709776204254 ], [ -65.027104471691928, 18.341791751256665 ], [ -65.027169347653626, 18.341846736567902 ], [ -65.027254844416746, 18.341859140480892 ], [ -65.027340338560521, 18.34188696841278 ], [ -65.027421644370008, 18.34192267664713 ], [ -65.027498925554426, 18.341962239249142 ], [ -65.027584419698144, 18.34198218818824 ], [ -65.027673770828926, 18.342018061441422 ], [ -65.027755244276591, 18.342049746360317 ], [ -65.027881140522709, 18.342105234585972 ], [ -65.027962611351029, 18.342136918195195 ], [ -65.028043915850901, 18.342168769442537 ], [ -65.028121029397141, 18.342208332044493 ], [ -65.028202501535077, 18.34224387133105 ], [ -65.028279616390989, 18.342283432623333 ], [ -65.028360919581189, 18.342322996535017 ], [ -65.028446416344309, 18.342339257434958 ], [ -65.028523697528669, 18.342382674404575 ], [ -65.028580191583217, 18.342445372380155 ], [ -65.028645067544915, 18.342500525329513 ], [ -65.028705752553037, 18.342559366318028 ], [ -65.028774819468367, 18.342610494642315 ], [ -65.02883550447649, 18.342673360255958 ], [ -65.028891998531037, 18.342736055612136 ], [ -65.028944635598577, 18.342802609264993 ], [ -65.028992915384038, 18.34287318361396 ], [ -65.029057791345792, 18.34292817023487 ], [ -65.029118476353915, 18.342987011223386 ], [ -65.029175138046583, 18.343053731204691 ], [ -65.029209671504248, 18.343116763146838 ], [ -65.02922190908879, 18.343124640829956 ], [ -65.029262143553012, 18.343198904527753 ], [ -65.029298184444258, 18.343277025212501 ], [ -65.02933020463945, 18.343355312225754 ], [ -65.02935400794621, 18.343437287278164 ], [ -65.029410669638935, 18.343503839621349 ], [ -65.02947118700888, 18.343590005627391 ], [ -65.029515443478886, 18.343664435653636 ], [ -65.029563724574075, 18.343734843674099 ], [ -65.02962038495707, 18.343797709287799 ], [ -65.029689116596103, 18.343875996301051 ], [ -65.029745779598443, 18.343938860605022 ], [ -65.02980227365299, 18.344005411638534 ], [ -65.029842505497868, 18.344079842974452 ], [ -65.029907381459566, 18.344134829595362 ], [ -65.029968066467688, 18.344193670583934 ], [ -65.030016513891326, 18.344264244932845 ], [ -65.030044341823213, 18.344346219985255 ], [ -65.030064123124248, 18.344428196347337 ], [ -65.030079713471594, 18.34451402576741 ], [ -65.030087257188086, 18.344599856497155 ], [ -65.030094800904578, 18.344685519588722 ], [ -65.030106367936526, 18.344767494641133 ], [ -65.030117934968416, 18.344849302055422 ], [ -65.030166214753933, 18.344919877714062 ], [ -65.030206447908483, 18.34499414141186 ], [ -65.030213991624976, 18.34507997345122 ], [ -65.030246010510439, 18.34515809151668 ], [ -65.030273838442383, 18.34524006656909 ], [ -65.030298816525828, 18.345291699117411 ], [ -65.030323124056679, 18.345311480418445 ], [ -65.030371571480316, 18.345381888438908 ], [ -65.030419851265776, 18.345452464097548 ], [ -65.030484727227531, 18.345507449408785 ], [ -65.030545412235654, 18.345570146074635 ], [ -65.030602073928321, 18.345633010378606 ], [ -65.030670973205474, 18.345684140012565 ], [ -65.030723443944566, 18.345750692355693 ], [ -65.030800725128984, 18.345794110634984 ], [ -65.030869624406137, 18.345845241578616 ], [ -65.030934500367891, 18.345900393218301 ], [ -65.030999376329589, 18.345955378529538 ], [ -65.031047656115049, 18.346025786550001 ], [ -65.031100294492262, 18.346092506531306 ], [ -65.031148574277779, 18.346162914551826 ], [ -65.03119702170136, 18.346233490210409 ], [ -65.031261897663114, 18.346288475521646 ], [ -65.03134320216293, 18.346320159130869 ], [ -65.03143305620813, 18.346313119638523 ], [ -65.031518886937874, 18.346290319541254 ], [ -65.031625169521135, 18.346263832714499 ], [ -65.031711167889, 18.346229466894954 ], [ -65.031796998618745, 18.346210523784691 ], [ -65.03188282934849, 18.346191749622221 ], [ -65.031968660078178, 18.346172805202286 ], [ -65.032054490807923, 18.346154029730144 ], [ -65.032144177214946, 18.346162411637351 ], [ -65.032229672668393, 18.346174816860014 ], [ -65.032315335760018, 18.346190910121834 ], [ -65.032392449306258, 18.346234328401124 ], [ -65.032457325267956, 18.346289313712361 ], [ -65.032538629767828, 18.346321164959761 ], [ -65.032603505729526, 18.346376150270999 ], [ -65.032680786913943, 18.346415712872954 ], [ -65.032753709506551, 18.346462986829579 ], [ -65.032835181644543, 18.346494838076921 ], [ -65.032949175582473, 18.346526689324264 ], [ -65.033034671035921, 18.346539094546927 ], [ -65.033109270009959, 18.346509925509906 ], [ -65.033117316640869, 18.346510093148026 ], [ -65.033203147370614, 18.346491150037764 ], [ -65.033337760800237, 18.346496011543934 ], [ -65.033423759168102, 18.346469524717179 ], [ -65.033509589897847, 18.346446725929582 ], [ -65.033611681527532, 18.346431806134774 ], [ -65.033701535572732, 18.346428621010034 ], [ -65.033791221979754, 18.346421412569839 ], [ -65.033872526479627, 18.346457119494517 ], [ -65.033945615400739, 18.346504393451141 ], [ -65.034006469356655, 18.346563234439657 ], [ -65.034079391949319, 18.346610676034402 ], [ -65.034164887402767, 18.346634648289012 ], [ -65.034250381546542, 18.346666331898234 ], [ -65.034282400432005, 18.346744618911487 ], [ -65.034314420627197, 18.346822738286562 ], [ -65.03436689136629, 18.346889290629747 ], [ -65.03445657646364, 18.346909407207022 ], [ -65.03452950036592, 18.346956681163647 ], [ -65.034594376327675, 18.347011834113005 ], [ -65.034647013395215, 18.347078386456189 ], [ -65.034666628367745, 18.3471603615086 ], [ -65.03471507448171, 18.347230769529062 ], [ -65.034783975068535, 18.347282066801142 ], [ -65.034832422492173, 18.34735633049894 ], [ -65.034884893231208, 18.347423050480245 ], [ -65.034945578239331, 18.347481891468817 ], [ -65.035010454201085, 18.347536876780055 ], [ -65.035087735385446, 18.34757643938201 ], [ -65.035160825616231, 18.347623713338635 ], [ -65.035217318361106, 18.34769043331994 ], [ -65.035278003369228, 18.347749274308455 ], [ -65.035330641746441, 18.34781582665164 ], [ -65.035403565648778, 18.34786712392372 ], [ -65.035468441610476, 18.347922109234958 ], [ -65.035537339578013, 18.347980950223473 ], [ -65.035610431118471, 18.348028391818218 ], [ -65.035687543355039, 18.348087400444911 ], [ -65.035748228363161, 18.348146241433483 ], [ -65.035763483434266, 18.348170548964333 ], [ -65.035816289449599, 18.348205920612713 ], [ -65.035893404305511, 18.348249338892003 ], [ -65.035962471220842, 18.348300468525963 ], [ -65.036027179544419, 18.3483554538372 ], [ -65.036100268465532, 18.348402727793768 ], [ -65.036177214373652, 18.348469615413251 ], [ -65.036258518873467, 18.348520912685331 ], [ -65.036302776653201, 18.348595176383071 ], [ -65.036338817544447, 18.348673463396324 ], [ -65.036407884459777, 18.348724593030283 ], [ -65.036489691874067, 18.348693915249896 ], [ -65.036563452657447, 18.348647814760341 ], [ -65.036596812648099, 18.348570029351833 ], [ -65.036646265900572, 18.348500293193581 ], [ -65.036711981362657, 18.348446146073059 ], [ -65.03679781078273, 18.348423514923638 ], [ -65.036883641512475, 18.348400716136041 ], [ -65.03694449546839, 18.348459557124613 ], [ -65.03685866342903, 18.348482355912211 ], [ -65.03684156564799, 18.348563995688323 ], [ -65.036906441609744, 18.348619148637681 ], [ -65.03699210339164, 18.348631386222223 ], [ -65.037077935431057, 18.348608587434626 ], [ -65.037171811481983, 18.348605402309886 ], [ -65.037228474484323, 18.348668098975736 ], [ -65.03726853869108, 18.348742530311654 ], [ -65.037341628921865, 18.348789804268279 ], [ -65.037398290614533, 18.348852500934129 ], [ -65.037430309500053, 18.348930620309261 ], [ -65.037429638947458, 18.349016451038949 ], [ -65.03742896839492, 18.349102114130574 ], [ -65.037477415818501, 18.349172522151036 ], [ -65.037529886557593, 18.349239242132342 ], [ -65.037590571565715, 18.349298083120914 ], [ -65.037659470842925, 18.349353236070272 ], [ -65.037728537758198, 18.349404364394502 ], [ -65.037756365690143, 18.349486339446912 ], [ -65.037771956037545, 18.349568314499322 ], [ -65.037832808683788, 18.349627155487894 ], [ -65.037918639413533, 18.349612237002759 ], [ -65.037931547550613, 18.349530429588469 ], [ -65.037936073780486, 18.349460356844304 ], [ -65.038001285018538, 18.34948030447373 ], [ -65.038086780471929, 18.349504278038012 ], [ -65.038163894018169, 18.349543840639967 ], [ -65.038082086603936, 18.349574349472505 ], [ -65.037996255874191, 18.349597149569775 ], [ -65.037999608637051, 18.349682980299519 ], [ -65.038048056060688, 18.349753388319982 ], [ -65.038088290524911, 18.34982765201778 ], [ -65.038148975533034, 18.349886660644472 ], [ -65.038197421646998, 18.349957067355263 ], [ -65.038278726146814, 18.349992775589612 ], [ -65.038364221600261, 18.35000903648961 ], [ -65.038388361492991, 18.350048934367862 ], [ -65.038412669023899, 18.350080281391115 ], [ -65.038481569610724, 18.35013141233469 ], [ -65.038562872800924, 18.350166951621247 ], [ -65.038648368254371, 18.350194947191312 ], [ -65.038725649438732, 18.350234508483595 ], [ -65.038773929224192, 18.350304916504058 ], [ -65.038826399963284, 18.35037163648542 ], [ -65.038866633117834, 18.350445901492833 ], [ -65.038880547083807, 18.350466018070165 ], [ -65.038923630086799, 18.350544975635955 ], [ -65.038970568767127, 18.350615216018298 ], [ -65.039047682313367, 18.350656956606485 ], [ -65.039107529130774, 18.350718984029413 ], [ -65.039158658764677, 18.350789392049933 ], [ -65.039218505582085, 18.350851418163188 ], [ -65.039269635216044, 18.350921826183651 ], [ -65.039333672987027, 18.350979827671836 ], [ -65.039424029946645, 18.350996928072163 ], [ -65.03951002831451, 18.3510098362093 ], [ -65.039600385274127, 18.351022910674828 ], [ -65.03968202505024, 18.351052247350026 ], [ -65.039772549648035, 18.351052919212293 ], [ -65.039806915467523, 18.35105325448859 ], [ -65.039858380377723, 18.351078232572036 ], [ -65.039926944378635, 18.351132210744709 ], [ -65.039934823371425, 18.351214522383088 ], [ -65.039973044868248, 18.351288784771214 ], [ -65.040050326052608, 18.351326503353619 ], [ -65.040105814278263, 18.351392720420506 ], [ -65.040130959999885, 18.351475030749214 ], [ -65.040087374082475, 18.351548791532537 ], [ -65.040043620526887, 18.351626575631371 ], [ -65.040008584154748, 18.351704527368327 ], [ -65.039999196418705, 18.351786671368586 ], [ -65.03997757109812, 18.351807123222159 ], [ -65.03993415281883, 18.351843834665999 ], [ -65.0399034750385, 18.351921786402954 ], [ -65.039932979351818, 18.352000073416207 ], [ -65.039962483665192, 18.352078529377252 ], [ -65.040009254707343, 18.352148768449922 ], [ -65.040064742932998, 18.35221498551681 ], [ -65.040124589750405, 18.352277180577914 ], [ -65.0401411859267, 18.352347084374287 ], [ -65.0401411859267, 18.35235948959695 ], [ -65.040114699099945, 18.352441633597152 ], [ -65.040110340508193, 18.35244146464936 ], [ -65.040065078209295, 18.352510363926569 ], [ -65.040064910571175, 18.352514388551697 ], [ -65.040047643842342, 18.352534840405269 ], [ -65.040021659930005, 18.35255110130521 ], [ -65.03998712647234, 18.352550932357417 ], [ -65.039969859743508, 18.352558980297999 ], [ -65.039909342373505, 18.352587309834632 ], [ -65.039904983781753, 18.352591500788265 ], [ -65.039852848319015, 18.352652688710805 ], [ -65.039839772543758, 18.352669118558595 ], [ -65.039818147223173, 18.352685379458535 ], [ -65.03978797235726, 18.352676997551328 ], [ -65.039766514674852, 18.352668615644177 ], [ -65.03969778303582, 18.35265570750704 ], [ -65.039676157715235, 18.352651516553465 ], [ -65.0395983736164, 18.352687892721065 ], [ -65.039520589517565, 18.352728462461585 ], [ -65.039434255873402, 18.352744220447107 ], [ -65.039348257505537, 18.352719073415813 ], [ -65.03927550255105, 18.352673140564377 ], [ -65.039228563870722, 18.352602901491707 ], [ -65.039207273826435, 18.352574066421255 ], [ -65.039185816144027, 18.352561493560472 ], [ -65.039164358461562, 18.35255730260684 ], [ -65.039155808916234, 18.35255713496872 ], [ -65.039125466412202, 18.352573395868717 ], [ -65.039082215771032, 18.352593681393785 ], [ -65.039077857179279, 18.352593681393785 ], [ -65.039056231858694, 18.352613965609237 ], [ -65.039012813579404, 18.35265067836275 ], [ -65.038926479935242, 18.35268303252451 ], [ -65.038840146291079, 18.352702981463665 ], [ -65.038749621693341, 18.35270650055503 ], [ -65.038663455687299, 18.352714045581195 ], [ -65.038633280821387, 18.352713876633345 ], [ -65.038594556410146, 18.352701137444114 ], [ -65.038573098727682, 18.352692755536907 ], [ -65.038534541954562, 18.35267599041282 ], [ -65.038495985181441, 18.352655204592622 ], [ -65.038474527499034, 18.352638608416385 ], [ -65.038444352633121, 18.35263424851496 ], [ -65.038427085904289, 18.352646487409174 ], [ -65.038409651537279, 18.352666937953018 ], [ -65.038375118079614, 18.352687223478142 ], [ -65.038366065619869, 18.352728293513735 ], [ -65.038357348436364, 18.352736507782822 ], [ -65.038357180798243, 18.352773555812632 ], [ -65.038348295976618, 18.352810437513995 ], [ -65.038335220201361, 18.352818650473353 ], [ -65.038317953472529, 18.352826698413935 ], [ -65.038279061423111, 18.352834577406725 ], [ -65.038249054195319, 18.352826195499517 ], [ -65.038244695603623, 18.352826195499517 ], [ -65.038171773010959, 18.352784453601657 ], [ -65.038145956736798, 18.352780262648082 ], [ -65.038085774643093, 18.35277556747036 ], [ -65.037995250045356, 18.352774896917765 ], [ -65.037909084039313, 18.352790822541465 ], [ -65.037822918033271, 18.35278193771984 ], [ -65.037749995440663, 18.352736172506525 ], [ -65.037672881894423, 18.352694430608665 ], [ -65.037626110852216, 18.352620166910867 ], [ -65.037579173481618, 18.352570378382097 ], [ -65.03755754685136, 18.352566187428522 ], [ -65.037471548483495, 18.35255730260684 ], [ -65.037385382477453, 18.35254422683164 ], [ -65.037295025517835, 18.352535343319687 ], [ -65.03729083456426, 18.352535343319687 ], [ -65.037218414886013, 18.352541378292869 ], [ -65.037201149466853, 18.352541378292869 ], [ -65.037123700644372, 18.352524277892485 ], [ -65.037115149789315, 18.352524277892485 ], [ -65.037080617641323, 18.352519920610405 ], [ -65.0370244575534, 18.352540035878008 ], [ -65.036938123909295, 18.35256400944229 ], [ -65.036856148856828, 18.352596363604107 ], [ -65.036774007475969, 18.352628716456195 ], [ -65.036687672522135, 18.352644474441718 ], [ -65.036601338877972, 18.352668615644177 ], [ -65.036527745732769, 18.35271320739048 ], [ -65.036471251678222, 18.3527787525951 ], [ -65.036431856714387, 18.352852513378423 ], [ -65.036410231393802, 18.35287698854745 ], [ -65.036379888889769, 18.352893249447447 ], [ -65.036358263569184, 18.352897106434455 ], [ -65.036349715333472, 18.352905319393813 ], [ -65.036267906609567, 18.352884196987645 ], [ -65.036181909551374, 18.352871122522117 ], [ -65.036108985649037, 18.35282535599913 ], [ -65.036036230694549, 18.35277556747036 ], [ -65.036019131603837, 18.352767185563152 ], [ -65.035954592228109, 18.352746064466658 ], [ -65.035886194555644, 18.35269208367464 ], [ -65.035804554779531, 18.352662748309115 ], [ -65.035727107266666, 18.352649838862362 ], [ -65.035718388773546, 18.35265386348749 ], [ -65.035671116126593, 18.352637098363402 ], [ -65.035636916635553, 18.352620334548988 ], [ -65.035624008498473, 18.352620334548988 ], [ -65.035585451725353, 18.352582952552552 ], [ -65.035568352634641, 18.352566522704763 ], [ -65.035533988124769, 18.352549758890405 ], [ -65.035486714168201, 18.352549423614107 ], [ -65.035482355576448, 18.352549423614107 ], [ -65.035417647252871, 18.352565350547422 ], [ -65.035400380524038, 18.352577586822292 ], [ -65.035318236523779, 18.35260575134015 ], [ -65.03523609514292, 18.352633914548335 ], [ -65.035158311044086, 18.35267448166951 ], [ -65.035076168353555, 18.352706835831327 ], [ -65.034990002347513, 18.352718570501395 ], [ -65.034903667393678, 18.352730306481135 ], [ -65.03482169365094, 18.352762491695103 ], [ -65.034739549650681, 18.352799036810495 ], [ -65.034661599223398, 18.352839606551015 ], [ -65.034592197031827, 18.352892412566405 ], [ -65.03454861111436, 18.352966173349728 ], [ -65.034500666605197, 18.35303574186986 ], [ -65.034500666605197, 18.353039932823435 ], [ -65.034414332961035, 18.35306809603162 ], [ -65.03433638122408, 18.353104473508893 ], [ -65.03432531710655, 18.353104473508893 ], [ -65.034281563550962, 18.353169852385065 ], [ -65.034263793907712, 18.353251995075595 ], [ -65.034215849398549, 18.353321564905343 ], [ -65.03418081302641, 18.35338308941391 ], [ -65.03416790488933, 18.353391134735148 ], [ -65.034090119480823, 18.35342767985054 ], [ -65.034081403607047, 18.353435895429243 ], [ -65.034046367234964, 18.353501440633863 ], [ -65.034024238999905, 18.353583415686273 ], [ -65.033997752173207, 18.353665558376861 ], [ -65.033975456300027, 18.353747701067391 ], [ -65.03397042715568, 18.353834034711554 ], [ -65.033961207057814, 18.353916177402141 ], [ -65.033990711371132, 18.353994632053514 ], [ -65.034033291459707, 18.354064872435856 ], [ -65.034033291459707, 18.354068895751311 ], [ -65.034045529044192, 18.354151206080019 ], [ -65.034057766628734, 18.354233684046847 ], [ -65.034087270942052, 18.354311971060099 ], [ -65.034116775255427, 18.354390425711529 ], [ -65.034189696538363, 18.354436190924844 ], [ -65.034271337624205, 18.354465527600041 ], [ -65.034357168353893, 18.354494865584911 ], [ -65.0343953885411, 18.354569295611157 ], [ -65.034420535572337, 18.354651773577984 ], [ -65.034428582203248, 18.354734083906692 ], [ -65.034419194467205, 18.354816226597279 ], [ -65.034414165322858, 18.354902560241442 ], [ -65.034414165322858, 18.354906751195017 ], [ -65.034379464227072, 18.354939272994955 ], [ -65.034344929459735, 18.354955533894952 ], [ -65.034340572177655, 18.354955533894952 ], [ -65.0342540695857, 18.354956036809369 ], [ -65.034167737251209, 18.354944302139302 ], [ -65.034081738883344, 18.354921838628002 ], [ -65.034001440212364, 18.354882778940407 ], [ -65.033909406871317, 18.354876576329104 ], [ -65.033822905588977, 18.354897866373392 ], [ -65.033736404306694, 18.3549193240558 ], [ -65.033655601411624, 18.35496257469697 ], [ -65.033580333194607, 18.355011525035025 ], [ -65.033488467491736, 18.355005322423722 ], [ -65.033396266512511, 18.355004651871127 ], [ -65.033315464927114, 18.355042538091652 ], [ -65.033223263947889, 18.35506382813594 ], [ -65.033148162059376, 18.35510724641523 ], [ -65.033067360473979, 18.355139600577047 ], [ -65.032980859191696, 18.355149994141982 ], [ -65.032894357909356, 18.355182348303742 ], [ -65.032813556323958, 18.355220234524324 ], [ -65.032727055041676, 18.35524705662732 ], [ -65.032640386121216, 18.355273878730372 ], [ -65.032565284232703, 18.355317297009663 ], [ -65.032495882041076, 18.355371611768362 ], [ -65.032414912817558, 18.355409497988887 ], [ -65.032322879476453, 18.355425423612587 ], [ -65.032260015172483, 18.355364403328167 ], [ -65.032203018203518, 18.35529818626128 ], [ -65.03212221661812, 18.355336072481805 ], [ -65.032058346485258, 18.355395919299212 ], [ -65.031983244596745, 18.355439337578503 ], [ -65.031891211255697, 18.355444199084673 ], [ -65.031836058306283, 18.355443863808375 ], [ -65.031799010276472, 18.355443528532135 ], [ -65.031713682461202, 18.35544302561766 ], [ -65.031689039653997, 18.35543950521668 ], [ -65.031678646089063, 18.355445372551685 ], [ -65.031666743780875, 18.355474709226883 ], [ -65.031660373531395, 18.355519468611362 ], [ -65.03164830358503, 18.35560177894007 ], [ -65.03164025695412, 18.355696159215142 ], [ -65.031633719066519, 18.355783666326317 ], [ -65.031628857560293, 18.355836975256068 ], [ -65.031620475653142, 18.355879052430225 ], [ -65.031602370733538, 18.355956668890883 ], [ -65.03158409817587, 18.356050546251538 ], [ -65.031586612748015, 18.356117769147261 ], [ -65.031599688523272, 18.356203767515126 ], [ -65.03160672932529, 18.356314911604613 ], [ -65.03160186781912, 18.356365035409681 ], [ -65.031566663808917, 18.356441646041503 ], [ -65.031506816991509, 18.356533176468133 ], [ -65.031493741216252, 18.356600902278274 ], [ -65.03147479810599, 18.356738700832636 ], [ -65.031473959915274, 18.356791339209849 ], [ -65.031480162526577, 18.356875325920043 ], [ -65.031485862223462, 18.356969706195116 ], [ -65.031489047348202, 18.357055369286684 ], [ -65.031492400111119, 18.357105996006169 ], [ -65.031502961314175, 18.357122592182407 ], [ -65.03151519889866, 18.357122592182407 ], [ -65.031561467026449, 18.357089902744349 ], [ -65.031642268611847, 18.357057548582532 ], [ -65.031723070197245, 18.357025194420771 ], [ -65.03175777129303, 18.357014465579539 ], [ -65.031809571479528, 18.357014800855836 ], [ -65.03181527117647, 18.357020332914601 ], [ -65.031855001416545, 18.357086549981432 ], [ -65.031854833778425, 18.357092082040197 ], [ -65.03187176523096, 18.357152599410199 ], [ -65.03187159759284, 18.357169195586437 ], [ -65.031847960614527, 18.357251338277024 ], [ -65.031830190971277, 18.357311688008849 ], [ -65.031804542335237, 18.357462562338469 ], [ -65.031783922843488, 18.357543699200164 ], [ -65.031748215918867, 18.357619974555689 ], [ -65.031722567282827, 18.357701111417384 ], [ -65.031711838441595, 18.357786942147072 ], [ -65.031711167889, 18.357873108153115 ], [ -65.031710497336462, 18.35795910652098 ], [ -65.031759950588935, 18.358031190922873 ], [ -65.031794316408423, 18.358107969192872 ], [ -65.031838908154725, 18.358180053594765 ], [ -65.031898419695892, 18.358242582622495 ], [ -65.03196815716376, 18.358295723914125 ], [ -65.032032697849218, 18.358353559073805 ], [ -65.032087180246037, 18.358420781969528 ], [ -65.032151888569615, 18.358478617129208 ], [ -65.032206370966378, 18.358546006353436 ], [ -65.032250962712681, 18.358618092065058 ], [ -65.032290525314693, 18.35868045345461 ], [ -65.032295386820863, 18.358689170638115 ], [ -65.032339810929045, 18.358765947598386 ], [ -65.032384402675348, 18.358838033309951 ], [ -65.032428826783473, 18.358910116402228 ], [ -65.032468221747308, 18.358986895981843 ], [ -65.032502755204973, 18.359063506613666 ], [ -65.032537121024518, 18.359140283573936 ], [ -65.032596632565628, 18.359202981549458 ], [ -65.032651282600568, 18.359270204445181 ], [ -65.032675757769596, 18.359342121208954 ], [ -65.032675590131475, 18.359353688240901 ], [ -65.032695036156156, 18.359434991431101 ], [ -65.032699394747908, 18.359521157437086 ], [ -65.032718673134468, 18.359602629575079 ], [ -65.032723031726221, 18.359693489449114 ], [ -65.032732251824143, 18.359779489126652 ], [ -65.032696712537586, 18.359855764482177 ], [ -65.032616246228486, 18.359893481754909 ], [ -65.032526056906988, 18.359907060444584 ], [ -65.032435867585548, 18.359896834517826 ], [ -65.032355568914568, 18.359929860541854 ], [ -65.032309803701253, 18.360005968259202 ], [ -65.032299410136318, 18.360067994372514 ], [ -65.032274264414696, 18.360072688240507 ], [ -65.032264206126058, 18.360077380798884 ], [ -65.032184242731375, 18.360057599497907 ], [ -65.032179213587085, 18.360057599497907 ], [ -65.032134118926308, 18.360066819595829 ], [ -65.032098914916105, 18.360090456574142 ], [ -65.032073266280065, 18.360171593435837 ], [ -65.032078127786235, 18.360176288613502 ], [ -65.032037559355388, 18.360247868791362 ], [ -65.032022471922403, 18.360266813211297 ], [ -65.031967821887463, 18.360194727499675 ], [ -65.031893055275248, 18.360151141582264 ], [ -65.031802865953807, 18.360160026403889 ], [ -65.031727428788997, 18.36020244016396 ], [ -65.031706809297248, 18.360283575715982 ], [ -65.031716867585942, 18.360288438531882 ], [ -65.031616787613927, 18.360268657230847 ], [ -65.031526598292487, 18.3602775407428 ], [ -65.03143640897099, 18.360286425564482 ], [ -65.031346219649549, 18.360290616518057 ], [ -65.031266423892987, 18.360256419646362 ], [ -65.031181431353957, 18.360236804673832 ], [ -65.031091577308814, 18.360212163176357 ], [ -65.031026533708939, 18.360206966393889 ], [ -65.031001387987317, 18.36021635282026 ], [ -65.030961154832767, 18.360225574227854 ], [ -65.030925950822507, 18.360258766580387 ], [ -65.030920921678216, 18.36026346044838 ], [ -65.030880353247369, 18.360330180429742 ], [ -65.030809777588729, 18.360382314582807 ], [ -65.030724449773459, 18.360410311462545 ], [ -65.030634260451961, 18.360404945732284 ], [ -65.030549603189229, 18.360366053682867 ], [ -65.030469639794546, 18.36032716163345 ], [ -65.030384814893694, 18.360293132399875 ], [ -65.030319771293819, 18.360287766669614 ], [ -65.030295799039209, 18.360285756321559 ], [ -65.030221032426994, 18.360242170404092 ], [ -65.030176609628541, 18.360170084692527 ], [ -65.030111899995234, 18.360107555664797 ], [ -65.030027075094381, 18.360087774363819 ], [ -65.029947111699698, 18.360053745130244 ], [ -65.029862286798846, 18.360033962519594 ], [ -65.029792550640593, 18.359976127359914 ], [ -65.029717782718706, 18.359932541442447 ], [ -65.029627761035385, 18.359917455319192 ], [ -65.029542936134533, 18.359897672708541 ], [ -65.029452746813035, 18.359901863662117 ], [ -65.029362557491595, 18.359910748483742 ], [ -65.029277229676268, 18.359929188679587 ], [ -65.029206654017685, 18.359981325452054 ], [ -65.029156028607872, 18.360052739301409 ], [ -65.029130881576577, 18.360076376279721 ], [ -65.02909048078385, 18.360114430138367 ], [ -65.02909048078385, 18.360119122696744 ], [ -65.029000460410202, 18.360099341395767 ], [ -65.02891563550935, 18.360074867536412 ], [ -65.028840867587462, 18.360031281618944 ], [ -65.02877113142921, 18.359978140327314 ], [ -65.028676080601599, 18.359977468465047 ], [ -65.028585723641982, 18.359986354596344 ], [ -65.028525875514902, 18.359976296307707 ], [ -65.0285008974314, 18.359966573295367 ], [ -65.028426130819184, 18.359918293509907 ], [ -65.028346336372351, 18.359884261656987 ], [ -65.028256313379302, 18.359874035730229 ], [ -65.028166125367534, 18.359868503671464 ], [ -65.028076102374541, 18.359867834428542 ], [ -65.027985914362716, 18.359867162566331 ], [ -65.027970825620116, 18.359867162566331 ], [ -65.027900920514071, 18.359842687397304 ], [ -65.027825987573351, 18.359832630418339 ], [ -65.027810898830694, 18.359832461470489 ], [ -65.027755410605039, 18.359899015123347 ], [ -65.027724566496204, 18.359979984346921 ], [ -65.027738983376594, 18.360066150352907 ], [ -65.027723225391071, 18.3601521474111 ], [ -65.027782400346211, 18.360276871499934 ], [ -65.027806707877119, 18.360358343637927 ], [ -65.027836044552316, 18.36043981446619 ], [ -65.027865548865634, 18.360521286604182 ], [ -65.027899914685179, 18.360598064874125 ], [ -65.027869236904849, 18.36067920173582 ], [ -65.027803690390499, 18.360740726244387 ], [ -65.027718196246781, 18.360773583320565 ], [ -65.027633034759958, 18.360792189844915 ], [ -65.027622976471264, 18.360796883712965 ], [ -65.027543014386254, 18.3607819639181 ], [ -65.027458020537608, 18.360752628552575 ], [ -65.027458020537608, 18.360747765736733 ], [ -65.027377723176301, 18.36078548562881 ], [ -65.027322067312468, 18.360852036662322 ], [ -65.027306475655394, 18.360933173524018 ], [ -65.027306309326946, 18.36093803633986 ], [ -65.027321227812081, 18.36096200859447 ], [ -65.027361125690391, 18.36098145461915 ], [ -65.027381074629488, 18.360981620947598 ], [ -65.027421141455591, 18.360991345269667 ], [ -65.027466068478191, 18.361010791294348 ], [ -65.027470928674688, 18.361030068371235 ], [ -65.027455673603583, 18.361058566855718 ], [ -65.027435389388131, 18.36108237147215 ], [ -65.027420303264876, 18.36108220383403 ], [ -65.027335478364023, 18.361052868468505 ], [ -65.027260542803958, 18.361028393299478 ], [ -65.027250150548696, 18.36107147630247 ], [ -65.027214611262195, 18.361147582710203 ], [ -65.027213771761808, 18.361238442584238 ], [ -65.027193153579731, 18.361319579445933 ], [ -65.027147388366416, 18.361395854801458 ], [ -65.027131796709398, 18.361481685531203 ], [ -65.02715107640563, 18.361563157669138 ], [ -65.027225841708173, 18.361606743586606 ], [ -65.027270768730773, 18.361630883479336 ], [ -65.027270433454476, 18.361678827988499 ], [ -65.02726473375759, 18.361764826356421 ], [ -65.02725400622603, 18.361850824724286 ], [ -65.027263729238371, 18.361869935472669 ], [ -65.027278984309476, 18.361883178886046 ], [ -65.027278815361683, 18.361901451443771 ], [ -65.027263392652401, 18.361912347923123 ], [ -65.027198181414406, 18.361915533047863 ], [ -65.027109837422188, 18.361914862495269 ], [ -65.027021658448746, 18.361910671541693 ], [ -65.026933314456528, 18.361910000989099 ], [ -65.026848657193852, 18.361931291033386 ], [ -65.026760479530083, 18.361926932441634 ], [ -65.026676157543648, 18.361907990641043 ], [ -65.026591835557213, 18.361889047530781 ], [ -65.02650717829448, 18.361914191942674 ], [ -65.026430063438568, 18.361953923492479 ], [ -65.026349095524722, 18.361993652422939 ], [ -65.026260750222832, 18.361992981870401 ], [ -65.026176594564845, 18.361970350720924 ], [ -65.026088250572627, 18.361973369517216 ], [ -65.025999905270737, 18.361976385694106 ], [ -65.025911559968847, 18.361986780568714 ], [ -65.025823213357285, 18.361997172823976 ], [ -65.025769235184612, 18.362018630506384 ], [ -65.025734869365067, 18.362003878349753 ], [ -65.025677703448309, 18.361941014045726 ], [ -65.025612996434404, 18.361882005419034 ], [ -65.025540409118037, 18.361833725633574 ], [ -65.025471677479004, 18.361781925447076 ], [ -65.025399090162637, 18.361730126570251 ], [ -65.025349804548341, 18.361660052516413 ], [ -65.025331364352496, 18.361575562891801 ], [ -65.025297332499576, 18.361498449345561 ], [ -65.025263470904179, 18.361421169470873 ], [ -65.025229607999051, 18.361343886976783 ], [ -65.025225752321774, 18.361332990497431 ], [ -65.025187530824951, 18.361317904374175 ], [ -65.025141430335339, 18.361328631905678 ], [ -65.025052917395328, 18.361349921949966 ], [ -65.024968260132596, 18.36137137963243 ], [ -65.024879914830706, 18.361381774507038 ], [ -65.024791569528816, 18.361384790683928 ], [ -65.024687801517643, 18.36140222636061 ], [ -65.024599288577633, 18.36141630665503 ], [ -65.024514798953078, 18.361437596699318 ], [ -65.024507087598408, 18.361437596699318 ], [ -65.024427124203726, 18.361447991573925 ], [ -65.024338778901836, 18.361454695789973 ], [ -65.024257977316438, 18.361487049951791 ], [ -65.024173320053706, 18.361512195673356 ], [ -65.024084639475575, 18.361540861796016 ], [ -65.024065361089015, 18.361558966715563 ], [ -65.024000149850963, 18.361562151840303 ], [ -65.023911636910952, 18.361572545405238 ], [ -65.023853634113152, 18.361634403880373 ], [ -65.02376897685042, 18.361663070002976 ], [ -65.02368063154853, 18.361673463567911 ], [ -65.02359228624664, 18.361672793015316 ], [ -65.02350410858287, 18.361657537944211 ], [ -65.023419954234612, 18.361620154638103 ], [ -65.02336278962747, 18.361557457972253 ], [ -65.02328249095649, 18.361523931653153 ], [ -65.023194145654656, 18.361534323908415 ], [ -65.023101944675432, 18.361540861796016 ], [ -65.023009743696207, 18.361547568631465 ], [ -65.022921566032494, 18.36153231356036 ], [ -65.022845123038849, 18.361491408543543 ], [ -65.022788126069884, 18.361428711877693 ], [ -65.022723250108129, 18.361369535612823 ], [ -65.022631216767081, 18.361361488981913 ], [ -65.022542871465191, 18.361368194507691 ], [ -65.022454526163301, 18.361378589382298 ], [ -65.022366180861411, 18.361377917520031 ], [ -65.022277835559521, 18.361377246967493 ], [ -65.022185802218473, 18.361376576414898 ], [ -65.022101480232038, 18.361357634614308 ], [ -65.022017158245603, 18.361338691504045 ], [ -65.021932836259168, 18.361316060354568 ], [ -65.021844658595455, 18.361300803973791 ], [ -65.021833259201628, 18.361300637645343 ], [ -65.02175715148428, 18.361312538643858 ], [ -65.021668638544213, 18.361326621557623 ], [ -65.021580293242323, 18.361336847484438 ], [ -65.02149211557861, 18.361321592413333 ], [ -65.021400082237562, 18.361306337342228 ], [ -65.021315927889248, 18.361283704883135 ], [ -65.021231605902813, 18.361261073733658 ], [ -65.021147451554555, 18.361231066505923 ], [ -65.02106312956812, 18.361212123395603 ], [ -65.020978807581685, 18.361193181595013 ], [ -65.020894151628625, 18.361210949928591 ], [ -65.020805805017062, 18.361224863894563 ], [ -65.02072114775433, 18.361253531326838 ], [ -65.020636322853477, 18.361282363777946 ], [ -65.020551665590745, 18.361311029900605 ], [ -65.020463487927032, 18.361302984579368 ], [ -65.020383190565724, 18.361269455640866 ], [ -65.020306578624229, 18.36124330540008 ], [ -65.020298868579289, 18.361243136452288 ], [ -65.020218065684219, 18.361275490614048 ], [ -65.020183364588377, 18.361286388403073 ], [ -65.020182358759541, 18.361285045988268 ], [ -65.020141622690517, 18.36123475454508 ], [ -65.020096026425051, 18.3611609937617 ], [ -65.020066017887586, 18.361076505446817 ], [ -65.020062832762846, 18.360992183460382 ], [ -65.020055959598949, 18.360907861473947 ], [ -65.020052774474209, 18.360823539487512 ], [ -65.020038023627194, 18.360739048553285 ], [ -65.020030647548879, 18.360706023838873 ], [ -65.020000303735117, 18.360661767368867 ], [ -65.019923860741471, 18.360617175622565 ], [ -65.019866863772506, 18.360554480266387 ], [ -65.019790420778861, 18.360509888520085 ], [ -65.019713977785216, 18.360465464411902 ], [ -65.019629655798781, 18.360439145223324 ], [ -65.019537622457676, 18.360438473361057 ], [ -65.019453300471241, 18.360415843521309 ], [ -65.019369147432656, 18.360389524332675 ], [ -65.019280968459213, 18.36037426926157 ], [ -65.019188767480045, 18.360369909360145 ], [ -65.01917351240894, 18.360373429761182 ], [ -65.019071420779255, 18.360327330581242 ], [ -65.019005203712368, 18.36024703060059 ], [ -65.018912499818725, 18.360209313327914 ], [ -65.018816610800343, 18.360218699754284 ], [ -65.018753746496373, 18.360204450512015 ], [ -65.018703622691305, 18.360182154638892 ], [ -65.018586443628635, 18.360142090432134 ], [ -65.018487369485513, 18.360168409620769 ], [ -65.018400366598485, 18.360149969424924 ], [ -65.018313193453935, 18.360149297562657 ], [ -65.018226021619057, 18.360154663292917 ], [ -65.018157960532562, 18.360100682500899 ], [ -65.018108676227939, 18.360028933375247 ], [ -65.018046816443132, 18.35996908655784 ], [ -65.017978924304487, 18.359909073411984 ], [ -65.01790449165884, 18.359860961264644 ], [ -65.017823859021235, 18.359818716452367 ], [ -65.017743391402462, 18.359776471640089 ], [ -65.017662591126737, 18.359746129135999 ], [ -65.017575585620307, 18.359721821605149 ], [ -65.017507693481662, 18.359661807149564 ], [ -65.017494450068284, 18.359646049164041 ], [ -65.017490259114709, 18.359601122141441 ], [ -65.017501658508479, 18.359566253407479 ], [ -65.017517919408476, 18.359538928390009 ], [ -65.017527810058937, 18.359487294532016 ], [ -65.017531664426599, 18.359420240584086 ], [ -65.017561002411469, 18.359338265531676 ], [ -65.017598218079456, 18.359257965551024 ], [ -65.017619508123744, 18.359195605471143 ], [ -65.017631241484139, 18.359124191621788 ], [ -65.017628728221666, 18.359042047621529 ], [ -65.017600565013481, 18.358968791062296 ], [ -65.017571228338227, 18.358914811579893 ], [ -65.017499479212631, 18.358838871500666 ], [ -65.017428734606199, 18.358762428507021 ], [ -65.017384310498016, 18.358708449024675 ], [ -65.017376097538659, 18.358681124007205 ], [ -65.017385820550999, 18.358654972456748 ], [ -65.017418173403087, 18.358623456485645 ], [ -65.017439966361849, 18.358591605238303 ], [ -65.017474667457634, 18.35853410535492 ], [ -65.017504843633219, 18.358457997637515 ], [ -65.017513728454844, 18.358236715287433 ], [ -65.017630069326799, 18.357926752359162 ], [ -65.017732831509079, 18.357651322888614 ], [ -65.017885382220129, 18.357330295842814 ], [ -65.017936679492152, 18.357071797824801 ], [ -65.017950761096245, 18.356871637880829 ], [ -65.017976074455987, 18.356376937717926 ], [ -65.017967189634362, 18.356320611301499 ], [ -65.017975739179747, 18.356260596845971 ], [ -65.017981271238455, 18.356231260170773 ], [ -65.017967860186957, 18.356231092532653 ], [ -65.017945061399359, 18.356253891320193 ], [ -65.017911198494289, 18.356288257139738 ], [ -65.017884207443444, 18.356316085071626 ], [ -65.017845149065522, 18.356350450891171 ], [ -65.017822015001684, 18.356382134500393 ], [ -65.017792343050189, 18.356422870569361 ], [ -65.017777086669412, 18.356472659098131 ], [ -65.017757640644732, 18.356556981084566 ], [ -65.017751774619342, 18.356627221466908 ], [ -65.017739200448887, 18.356696120744061 ], [ -65.017722436634472, 18.356771557908871 ], [ -65.017693436545244, 18.356837439699461 ], [ -65.017630235655247, 18.356927964297256 ], [ -65.017545578392571, 18.357083532494869 ], [ -65.017466622136396, 18.357249494257417 ], [ -65.017388335123144, 18.357386286982944 ], [ -65.017213153262674, 18.357710331515307 ], [ -65.017131178210263, 18.357860535292332 ], [ -65.016963540066229, 18.358051139862027 ], [ -65.016805960210888, 18.358158595912357 ], [ -65.016662294321463, 18.358199667257622 ], [ -65.016581660374243, 18.358237553478148 ], [ -65.016452746641505, 18.35829019185536 ], [ -65.016372615608645, 18.358299075367313 ], [ -65.016324671099483, 18.35826906944925 ], [ -65.016217885601748, 18.358188603140093 ], [ -65.01614060441733, 18.358165301438078 ], [ -65.016039518616537, 18.358147530485155 ], [ -65.015932397842505, 18.358112495422745 ], [ -65.015807339787102, 18.358105957535145 ], [ -65.0157178210182, 18.35810528698255 ], [ -65.015646574806965, 18.358070585886765 ], [ -65.015599300850397, 18.358030351422485 ], [ -65.015539956947407, 18.357990119577607 ], [ -65.01546887837435, 18.35793831939111 ], [ -65.015421101503307, 18.357902444828312 ], [ -65.015383382920902, 18.357851984437275 ], [ -65.015389753170382, 18.357825331282072 ], [ -65.015390088446679, 18.35776967541824 ], [ -65.015367960211677, 18.357730951006999 ], [ -65.015337450069467, 18.357636569422255 ], [ -65.015261845266537, 18.357556774975365 ], [ -65.015250110596412, 18.357456527365287 ], [ -65.015270897726282, 18.357362147090214 ], [ -65.015302581335504, 18.357267599176964 ], [ -65.015331079819987, 18.357205237787412 ], [ -65.015377347947719, 18.357084538323704 ], [ -65.015351866949857, 18.356935675651869 ], [ -65.01537097769824, 18.356782119111926 ], [ -65.015360416495184, 18.356605596146323 ], [ -65.015416239997137, 18.356469641611511 ], [ -65.015368798402392, 18.356315246880911 ], [ -65.015471895860969, 18.356151129137913 ], [ -65.01560064195553, 18.35588626087042 ], [ -65.015683958113129, 18.355680065953322 ], [ -65.015727710358988, 18.355471021187725 ], [ -65.015664679726569, 18.355279913703555 ], [ -65.015573149299939, 18.355123507315227 ], [ -65.015450941092922, 18.354921168075407 ], [ -65.015328900524082, 18.354726875466497 ], [ -65.015153383387315, 18.354510789898882 ], [ -65.015057829645286, 18.354448931423747 ], [ -65.014974681125864, 18.354377349936271 ], [ -65.014894717731124, 18.354279281622041 ], [ -65.014826991920984, 18.354241227763339 ], [ -65.014782567812802, 18.354306775587304 ], [ -65.014764798169551, 18.354430491227902 ], [ -65.014846773221961, 18.354648923729542 ], [ -65.014889688586834, 18.354782698968449 ], [ -65.014914163755861, 18.354884958236312 ], [ -65.014935789076446, 18.354987217504117 ], [ -65.014939141839307, 18.355133230327567 ], [ -65.014956408568139, 18.355325176002452 ], [ -65.014900920342484, 18.355488958469152 ], [ -65.014868063266249, 18.355727842824365 ], [ -65.014820956947801, 18.356120283719463 ], [ -65.014732108731494, 18.356308038440716 ], [ -65.014626161424474, 18.356423038207481 ], [ -65.014517364269011, 18.356474670755858 ], [ -65.014412422790883, 18.356453715987868 ], [ -65.014273953683926, 18.356373417316888 ], [ -65.014026352145208, 18.356167222399733 ], [ -65.013690405304658, 18.35598751430939 ], [ -65.013454538436065, 18.355950969193998 ], [ -65.013241135078715, 18.355914424078605 ], [ -65.01301365011733, 18.355880561173535 ], [ -65.012821536804324, 18.355879555344643 ], [ -65.012719612812759, 18.355878717153928 ], [ -65.012577958581062, 18.35588626087042 ], [ -65.012537557788391, 18.355973600343418 ], [ -65.012565218082102, 18.356041326153616 ], [ -65.012695975834447, 18.35617057516265 ], [ -65.013128985160392, 18.356355647673638 ], [ -65.013373904488788, 18.356493781504298 ], [ -65.013738517451998, 18.356795027249063 ], [ -65.014049318570983, 18.357037599643434 ], [ -65.014239084949963, 18.357356950307747 ], [ -65.014449638458814, 18.357696585187455 ], [ -65.014477801666999, 18.35784662132636 ], [ -65.014500768092773, 18.358031023284752 ], [ -65.014509149999924, 18.358183406357625 ], [ -65.014475957647448, 18.358275942613147 ], [ -65.014414434448611, 18.35836663353939 ], [ -65.014238582035546, 18.358430840258166 ], [ -65.013875477815645, 18.358530248367913 ], [ -65.013682861588165, 18.358569309365123 ], [ -65.01349544214321, 18.3585964654348 ], [ -65.013278350746702, 18.358563944944535 ], [ -65.013069139652657, 18.3584955485818 ], [ -65.012726319648209, 18.358298741400745 ], [ -65.012312252122854, 18.358186256206125 ], [ -65.011874716566979, 18.358107298640277 ], [ -65.011582524591688, 18.358109141350212 ], [ -65.011340118525766, 18.35813110325671 ], [ -65.01120131545224, 18.358147530485155 ], [ -65.011326204559793, 18.358306451445685 ], [ -65.011475737784281, 18.358403179964455 ], [ -65.011712945758006, 18.358480627477263 ], [ -65.011904388518474, 18.358553885346225 ], [ -65.012125167954139, 18.358615242216615 ], [ -65.012316443076429, 18.358704424399548 ], [ -65.012515764829629, 18.358825460449168 ], [ -65.012798235102309, 18.359002821605543 ], [ -65.013111215517142, 18.359158891407901 ], [ -65.013201907753057, 18.359223264455181 ], [ -65.01325354161105, 18.359254446459659 ], [ -65.013445150699965, 18.359243885256603 ], [ -65.01376533955505, 18.359249248367519 ], [ -65.014033057670986, 18.359264169471999 ], [ -65.014204551492298, 18.359266347458231 ], [ -65.014385600687831, 18.359269701530764 ], [ -65.014560447272004, 18.359260984347259 ], [ -65.014683661307856, 18.359256290479266 ], [ -65.014768821485006, 18.359228293599529 ], [ -65.014823471519946, 18.359203315516083 ], [ -65.014939477115604, 18.359171968492831 ], [ -65.015040562916454, 18.359191748484136 ], [ -65.015117173548219, 18.359215722048418 ], [ -65.015175176346077, 18.359247070381343 ], [ -65.015275926870629, 18.359319490059534 ], [ -65.015300234401479, 18.359344634471483 ], [ -65.015324541932387, 18.359388724612984 ], [ -65.015362092876614, 18.359471202579869 ], [ -65.015379694881744, 18.359579664459034 ], [ -65.015385562216807, 18.359619393389494 ], [ -65.015395955781685, 18.359657448557869 ], [ -65.015394279400255, 18.359676559306251 ], [ -65.015377180309599, 18.359701368441904 ], [ -65.015351364035382, 18.359735063708854 ], [ -65.015310460328294, 18.359790216658212 ], [ -65.015282800034527, 18.359826929411724 ], [ -65.015257821951081, 18.359849897147171 ], [ -65.015241728689205, 18.359874203368349 ], [ -65.015235861354199, 18.359902535524384 ], [ -65.015234017334592, 18.359947965461402 ], [ -65.015204513021274, 18.359983000523812 ], [ -65.015175176346077, 18.360012003232384 ], [ -65.015103930134842, 18.360087774363819 ], [ -65.015074258183347, 18.360146112437917 ], [ -65.015066211552437, 18.360192883480124 ], [ -65.015056320901977, 18.360222387793442 ], [ -65.015059003112242, 18.360296986767537 ], [ -65.015081131347301, 18.360442161400215 ], [ -65.015099068628672, 18.360496643797035 ], [ -65.015111306213214, 18.360506869723793 ], [ -65.015126728922439, 18.36050401987535 ], [ -65.015211386185172, 18.360469486417685 ], [ -65.015280620738622, 18.360453897380012 ], [ -65.01540802572805, 18.360447525820859 ], [ -65.01550760278559, 18.360457082504695 ], [ -65.015577507891635, 18.36043327657859 ], [ -65.015633499031765, 18.360406286837417 ], [ -65.015681611179104, 18.360360858210072 ], [ -65.015731399707875, 18.36031106837163 ], [ -65.015773309243855, 18.360267148487594 ], [ -65.015812032345423, 18.360231106286619 ], [ -65.01582862983139, 18.360215179353247 ], [ -65.015916639856982, 18.360181651724474 ], [ -65.0160069968166, 18.360147119576482 ], [ -65.016080589961803, 18.360108227527064 ], [ -65.016143118989532, 18.360059946431932 ], [ -65.016213694648116, 18.360005631673232 ], [ -65.016273206189283, 18.359934554409847 ], [ -65.016300698844873, 18.359898175622959 ], [ -65.016324837427931, 18.359864984580099 ], [ -65.016376136009683, 18.359831792227624 ], [ -65.016436653379685, 18.359836821371914 ], [ -65.01650655848573, 18.359864815632307 ], [ -65.016617870213338, 18.359894487583801 ], [ -65.016715100336853, 18.359905888287244 ], [ -65.016784836495049, 18.359950478723874 ], [ -65.016790369863486, 18.359958525354784 ], [ -65.016807636592318, 18.359983672386079 ], [ -65.01684870793764, 18.360045698499334 ], [ -65.016960018355576, 18.360158014746162 ], [ -65.017011316937271, 18.360211157347464 ], [ -65.017073006464614, 18.360271004164872 ], [ -65.017308707004759, 18.360385667345724 ], [ -65.017413816121064, 18.36048155636405 ], [ -65.017500485041467, 18.360535703484572 ], [ -65.017581286626921, 18.360566047298335 ], [ -65.017630404603096, 18.360643831397113 ], [ -65.017654712133947, 18.360727147554712 ], [ -65.017697627498819, 18.360804762705698 ], [ -65.017753114414802, 18.360921103577653 ], [ -65.017775242649805, 18.360960498541488 ], [ -65.017848334190262, 18.361031578424218 ], [ -65.017848334190262, 18.361035266463375 ], [ -65.017853698610907, 18.36106292544747 ], [ -65.017851184038761, 18.361075330670133 ], [ -65.017849340019154, 18.361084887354025 ], [ -65.017834083638377, 18.361100811667995 ], [ -65.017812793594089, 18.361115397496235 ], [ -65.017784464057399, 18.36112931146215 ], [ -65.017751605671549, 18.361122438298253 ], [ -65.017694273426287, 18.361096454385915 ], [ -65.017636773542904, 18.361085053682473 ], [ -65.017617830432584, 18.361051862639613 ], [ -65.017596876974267, 18.36102118354961 ], [ -65.017545244425946, 18.36100358154448 ], [ -65.017496126449714, 18.360994864360975 ], [ -65.017453043446721, 18.36101028837993 ], [ -65.017387329294309, 18.361064769467021 ], [ -65.017333014535609, 18.361130317291043 ], [ -65.017275010428136, 18.361192343404298 ], [ -65.017216841301831, 18.361254200569761 ], [ -65.017132184039099, 18.361290242770735 ], [ -65.017039983059931, 18.361304156736708 ], [ -65.016959012526684, 18.361336510898468 ], [ -65.016878044612838, 18.361372554409115 ], [ -65.016793387350106, 18.361401386860223 ], [ -65.016708730087373, 18.36142267690451 ], [ -65.016620552423603, 18.361422006351916 ], [ -65.016535895160928, 18.36144715338321 ], [ -65.016454925937353, 18.361483195584128 ], [ -65.016381668068448, 18.361515548436273 ], [ -65.016370267364948, 18.361515548436273 ], [ -65.01628192337273, 18.361511189844521 ], [ -65.016197769024473, 18.3614885586951 ], [ -65.016113447038038, 18.361465927545623 ], [ -65.016037004044392, 18.361425023838478 ], [ -65.015952682057957, 18.361402392689058 ], [ -65.015864672032308, 18.361379761539638 ], [ -65.015780350045929, 18.361357130390161 ], [ -65.01569217238216, 18.361349251397428 ], [ -65.0156728939956, 18.361349083759251 ], [ -65.015641544353002, 18.361418485950878 ], [ -65.015606006376117, 18.361542873453743 ], [ -65.015578513720527, 18.361623339762843 ], [ -65.01557817844423, 18.361670948995766 ], [ -65.015558732419549, 18.361703807381673 ], [ -65.015481618873309, 18.361750912390448 ], [ -65.015393273571419, 18.361750241837854 ], [ -65.015308951584984, 18.361731298727591 ], [ -65.015236364268617, 18.361683018942131 ], [ -65.015167464991464, 18.361660555430831 ], [ -65.015152042282182, 18.361660387792654 ], [ -65.015071911249379, 18.361615796046351 ], [ -65.015019440510287, 18.361549412651016 ], [ -65.014939141839307, 18.36151588371257 ], [ -65.014846940860082, 18.361507838391333 ], [ -65.014762451235526, 18.361525606724911 ], [ -65.014696737083113, 18.361580090431403 ], [ -65.014619623536873, 18.361619819361806 ], [ -65.014531110596806, 18.361641109406094 ], [ -65.014442765294916, 18.361647814931871 ], [ -65.014358275670361, 18.361665584575121 ], [ -65.014269762730294, 18.361675979449728 ], [ -65.014188961144896, 18.361708333611546 ], [ -65.014107991921378, 18.361740686463634 ], [ -65.014019646619488, 18.361751080028569 ], [ -65.013927445640263, 18.361761305955383 ], [ -65.013839100338373, 18.361771699520318 ], [ -65.013769530508625, 18.361822493877924 ], [ -65.0137541077994, 18.361840766435648 ], [ -65.013623852961473, 18.361795839413048 ], [ -65.013543554290493, 18.361758457416613 ], [ -65.01348270164425, 18.361695759441091 ], [ -65.013413970005217, 18.361643960564265 ], [ -65.013345238366185, 18.361592160377768 ], [ -65.013303664106445, 18.361518399594388 ], [ -65.013250522814815, 18.361452013579708 ], [ -65.013193358207673, 18.361389316913858 ], [ -65.013120938529482, 18.361341204766518 ], [ -65.013059918245062, 18.361282028501648 ], [ -65.012995043593037, 18.361226541585665 ], [ -65.012965035055572, 18.361145738690595 ], [ -65.012961849930832, 18.36106141670416 ], [ -65.01293167506492, 18.361009785465512 ], [ -65.012908708639202, 18.36100240938714 ], [ -65.012900998594205, 18.361002240439348 ], [ -65.012850873479522, 18.361023865759933 ], [ -65.012831427454785, 18.361053034796953 ], [ -65.012823716100172, 18.361056722836111 ], [ -65.012773424656984, 18.361115060910265 ], [ -65.012703854827237, 18.361165856577543 ], [ -65.012615509525347, 18.361172394465143 ], [ -65.012527165533129, 18.36117541064209 ], [ -65.012438818921567, 18.36118211747754 ], [ -65.012354161658834, 18.361207261889433 ], [ -65.012331027594939, 18.361214302691508 ], [ -65.012270174948696, 18.361235929321765 ], [ -65.012254753549087, 18.361243136452288 ], [ -65.012208651749859, 18.361261073733658 ], [ -65.012189373363299, 18.361268283483525 ], [ -65.012146794584396, 18.361319245479308 ], [ -65.012127514888164, 18.361326452609831 ], [ -65.012046714612381, 18.361344223562753 ], [ -65.012042857625431, 18.361344223562753 ], [ -65.011981502064714, 18.361332656530806 ], [ -65.011954513633214, 18.3613472397397 ], [ -65.011869855060809, 18.361372217823146 ], [ -65.011792741514569, 18.36141194937295 ], [ -65.011757537504309, 18.361492414372378 ], [ -65.011707078423001, 18.361561648925885 ], [ -65.011664330696249, 18.361634571518493 ], [ -65.011633150001501, 18.361682014422911 ], [ -65.011629126686046, 18.361711349788436 ], [ -65.011625271008711, 18.361715037827651 ], [ -65.011640024475071, 18.361795671774871 ], [ -65.011643040651961, 18.361883681800464 ], [ -65.011630804377148, 18.361968003786899 ], [ -65.011607167398836, 18.362048470096056 ], [ -65.011591575741761, 18.362070263054761 ], [ -65.011560897961431, 18.362077303856836 ], [ -65.011526196865589, 18.362084513606646 ], [ -65.011437851563699, 18.362098427572619 ], [ -65.011357049978301, 18.362127260023726 ], [ -65.011353195610695, 18.362127092385549 ], [ -65.011330061546801, 18.362137988864959 ], [ -65.011314303561278, 18.362185598097824 ], [ -65.011310278936151, 18.362200182616334 ], [ -65.011321679639593, 18.362233208640419 ], [ -65.011328886770116, 18.362280985511461 ], [ -65.011340118525766, 18.362314008916144 ], [ -65.011301395424198, 18.362364970911926 ], [ -65.011239369310886, 18.362426829387061 ], [ -65.011177509526078, 18.362485167461159 ], [ -65.011104251657173, 18.362532273779607 ], [ -65.011046082530868, 18.362594133564414 ], [ -65.010988078423395, 18.362655990729877 ], [ -65.01092990929709, 18.362717849205012 ], [ -65.010864193834948, 18.362772331601832 ], [ -65.010817759378767, 18.362826981636772 ], [ -65.010798479682535, 18.362826813998652 ], [ -65.010713822419802, 18.362851792082097 ], [ -65.010625478427585, 18.362865873686189 ], [ -65.010537131816022, 18.362876268560797 ], [ -65.010448786514132, 18.362868220620214 ], [ -65.010360442521915, 18.362874926145935 ], [ -65.010272097220025, 18.362877943632554 ], [ -65.010187941562037, 18.36285162444392 ], [ -65.010103619575602, 18.362825306565014 ], [ -65.010019466537017, 18.362798986066707 ], [ -65.009935144550582, 18.36277283451625 ], [ -65.009895414310449, 18.362731930809105 ], [ -65.009861551405379, 18.362721704882347 ], [ -65.009811595238432, 18.362700750114357 ], [ -65.009731630534077, 18.362664372637084 ], [ -65.009646136390302, 18.362650961585587 ], [ -65.009574219626529, 18.362604358181557 ], [ -65.009510349493667, 18.362547696488889 ], [ -65.009433068309306, 18.362508804439472 ], [ -65.009350255066181, 18.362482652889014 ], [ -65.009262077402411, 18.362474270981807 ], [ -65.009178761244868, 18.362504445847719 ], [ -65.009092930515123, 18.362524227148697 ], [ -65.009012296567846, 18.362564461612919 ], [ -65.008939709251536, 18.362609891549994 ], [ -65.008856393093936, 18.362640065106234 ], [ -65.008773747488931, 18.362608716773309 ], [ -65.008715409414833, 18.362546859607846 ], [ -65.008648857071648, 18.362500422532264 ], [ -65.008643492651061, 18.362500422532264 ], [ -65.008571574577616, 18.362448789983887 ], [ -65.008518602233778, 18.362381902364461 ], [ -65.00848926555858, 18.362363797444914 ], [ -65.008456576120523, 18.362440240438559 ], [ -65.00842640125461, 18.362519198004406 ], [ -65.008348449517598, 18.362556916586811 ], [ -65.008260104215708, 18.362566471960974 ], [ -65.008171758913875, 18.362565969046557 ], [ -65.008083245973808, 18.362578038992922 ], [ -65.007994899362245, 18.362590108939287 ], [ -65.007920804612297, 18.362547193574414 ], [ -65.00785157005879, 18.362495561026094 ], [ -65.00779859640528, 18.362428673406612 ], [ -65.007726679641507, 18.362382070002582 ], [ -65.007644034036559, 18.362353403879979 ], [ -65.007561220793377, 18.362324737757376 ], [ -65.007478575188429, 18.362293389424451 ], [ -65.007390062248362, 18.362295233444001 ], [ -65.007304399156794, 18.362315014744979 ], [ -65.007218903703347, 18.362294059976989 ], [ -65.007130558401457, 18.362283163497636 ], [ -65.007044727671712, 18.362305459370816 ], [ -65.006958896942024, 18.362332952026406 ], [ -65.006880945205069, 18.362373352819134 ], [ -65.006816236881491, 18.362429008682909 ], [ -65.006748846347591, 18.362482149974596 ], [ -65.006697381437391, 18.362550881613629 ], [ -65.006635355324079, 18.362609219687727 ], [ -65.006557403587124, 18.362651967414422 ], [ -65.006487330842958, 18.362702594133907 ], [ -65.006417425736913, 18.362753220853392 ], [ -65.006384568660678, 18.362832178419239 ], [ -65.006333103750478, 18.362900910058272 ], [ -65.006276442057811, 18.362964278586389 ], [ -65.006235705988786, 18.363038205698217 ], [ -65.006210895543461, 18.363122360046532 ], [ -65.006194634643521, 18.363145158834072 ], [ -65.006169656560076, 18.363198132487582 ], [ -65.006147528325073, 18.363267031764792 ], [ -65.006150210535338, 18.363282454474017 ], [ -65.006184241078586, 18.363359400382137 ], [ -65.006207710418721, 18.363441375434547 ], [ -65.006266216130996, 18.363503066271505 ], [ -65.006351711584443, 18.363521674105527 ], [ -65.006439889248156, 18.363527373802413 ], [ -65.006528234550046, 18.363538270281765 ], [ -65.006608197944786, 18.363574647759037 ], [ -65.006661339236416, 18.363618568952745 ], [ -65.006669218229149, 18.36363382402385 ], [ -65.006677097221939, 18.363654443515543 ], [ -65.006668882952908, 18.363674727730995 ], [ -65.006647425270444, 18.363687468229955 ], [ -65.006586069709726, 18.363663998889763 ], [ -65.006506106315044, 18.363630135984693 ], [ -65.006417761013154, 18.363624436287807 ], [ -65.006329415711264, 18.363628794879503 ], [ -65.006256660756776, 18.363674224816577 ], [ -65.006191952433198, 18.36373507746282 ], [ -65.006116682906566, 18.363777992827693 ], [ -65.006033366748966, 18.363808167693605 ], [ -65.005976705056298, 18.36387153491205 ], [ -65.005962623452206, 18.363955856898485 ], [ -65.00590059733895, 18.364014194972583 ], [ -65.005827842384463, 18.364059624909601 ], [ -65.005779227322705, 18.364130871120835 ], [ -65.005733126833093, 18.364202117332013 ], [ -65.005676297502248, 18.364265484550458 ], [ -65.005608906968348, 18.364318793480209 ], [ -65.005533637441715, 18.364361541206961 ], [ -65.005514861969573, 18.364369084923453 ], [ -65.005500948003657, 18.364440163496511 ], [ -65.00550564187165, 18.364524485482946 ], [ -65.005496924688202, 18.364608807469381 ], [ -65.005514861969573, 18.364693297093936 ], [ -65.005530284678855, 18.364777786718491 ], [ -65.005567165070545, 18.364854732626611 ], [ -65.005577558635423, 18.364895636333756 ], [ -65.005617456513733, 18.364926649390384 ], [ -65.005694737698093, 18.364968056011946 ], [ -65.005710663321793, 18.364973252794414 ], [ -65.005701946138288, 18.365052545636502 ], [ -65.005682667751728, 18.365136699984816 ], [ -65.005668586147635, 18.365221021971252 ], [ -65.005659868964131, 18.365305176319509 ], [ -65.005653833990948, 18.365389498305944 ], [ -65.005631705755945, 18.365473652654259 ], [ -65.005633717413673, 18.365558142278815 ], [ -65.005636064347698, 18.365593849203492 ], [ -65.00562768244049, 18.365641961350832 ], [ -65.005631202841528, 18.365678003551807 ], [ -65.00563086756523, 18.365728127356817 ], [ -65.005607565863215, 18.365810436375853 ], [ -65.005565656327235, 18.365885371935917 ], [ -65.005580073207625, 18.365968017540922 ], [ -65.005575546977695, 18.366054015908787 ], [ -65.00558242014165, 18.366136493875615 ], [ -65.005615612494125, 18.366215619079583 ], [ -65.005652492885815, 18.366291223882513 ], [ -65.00572725949803, 18.366338497839138 ], [ -65.005802026110246, 18.366382082446933 ], [ -65.005838906501936, 18.366457520921358 ], [ -65.005872098854468, 18.366536646125326 ], [ -65.005905291206943, 18.366615771329293 ], [ -65.005949715315126, 18.366687854421571 ], [ -65.005997995100586, 18.366759940133136 ], [ -65.006057506641696, 18.366821294384181 ], [ -65.006132273253968, 18.366868569650478 ], [ -65.00619932851157, 18.366922884409121 ], [ -65.006262695729959, 18.366980719568801 ], [ -65.006333774303016, 18.367031346288286 ], [ -65.006412228954446, 18.367067891403678 ], [ -65.006498562598608, 18.367079289487833 ], [ -65.006580872927259, 18.367104939433489 ], [ -65.006607192115894, 18.367119523952056 ], [ -65.006640552106546, 18.367170653585958 ], [ -65.006677432498236, 18.367246258388889 ], [ -65.006691681740449, 18.367332424394931 ], [ -65.006732417809474, 18.367408029197861 ], [ -65.006780697594934, 18.367480113599811 ], [ -65.006847920490657, 18.367534428358454 ], [ -65.006890332941111, 18.367609193660996 ], [ -65.006891171131826, 18.367612546423857 ], [ -65.006906593841052, 18.367695024390741 ], [ -65.006883459777214, 18.367777336029121 ], [ -65.006875245508127, 18.367859812686277 ], [ -65.006829647932989, 18.367931060207127 ], [ -65.006772650964024, 18.367995265616287 ], [ -65.006697213799214, 18.368041366105899 ], [ -65.006610712516931, 18.368058631525059 ], [ -65.006532257865501, 18.368018567318302 ], [ -65.006524378872768, 18.367987720590122 ], [ -65.006521193748029, 18.367975484315309 ], [ -65.006486325014066, 18.367896191473164 ], [ -65.006456988338869, 18.367814719335229 ], [ -65.006437542314188, 18.367733247197236 ], [ -65.006417761013154, 18.367713967501004 ], [ -65.006397812074056, 18.367689996556066 ], [ -65.006357746557626, 18.367694521476267 ], [ -65.006282309392816, 18.367741629104444 ], [ -65.006236711817678, 18.367813041644069 ], [ -65.006190946604363, 18.367884455493424 ], [ -65.006135290740531, 18.367951009146282 ], [ -65.006089693165393, 18.368022421685964 ], [ -65.006044095590198, 18.368093669206814 ], [ -65.005983410582076, 18.368155358734157 ], [ -65.005983410582076, 18.368160221549999 ], [ -65.005958264860453, 18.368169609286042 ], [ -65.005913840752328, 18.368102386390319 ], [ -65.005844103284403, 18.368049245098689 ], [ -65.00576413988972, 18.368039019171874 ], [ -65.005764307527841, 18.368010353049272 ], [ -65.005755087429918, 18.367924187043229 ], [ -65.005670094890945, 18.367904404432579 ], [ -65.00561008043536, 18.367894515091734 ], [ -65.00559532827873, 18.367860818515112 ], [ -65.005520561666515, 18.367812540039324 ], [ -65.005435736765605, 18.367783203364127 ], [ -65.005350408950335, 18.367801643559972 ], [ -65.005324760314295, 18.367882780421667 ], [ -65.005264075306172, 18.367944471258681 ], [ -65.005244126367018, 18.367949165126674 ], [ -65.005199199344418, 18.367924857595824 ], [ -65.005189476332077, 18.367900885341214 ], [ -65.0052052343176, 18.367810193105299 ], [ -65.005205904870195, 18.367724193427762 ], [ -65.005201211002145, 18.367690667108661 ], [ -65.00517137141253, 18.367647416467491 ], [ -65.005096772438435, 18.367603830550081 ], [ -65.005076823499337, 18.367594107537684 ], [ -65.005011779899462, 18.367574492565211 ], [ -65.004926452084135, 18.367602489444891 ], [ -65.004891415712052, 18.367607014365092 ], [ -65.004841291906985, 18.367606680398524 ], [ -65.004836262762694, 18.367601817582681 ], [ -65.00484699160387, 18.367515820524432 ], [ -65.004872807878087, 18.367434851300914 ], [ -65.004872975516207, 18.367415740552474 ], [ -65.004833245276075, 18.367358073030971 ], [ -65.004753449519569, 18.367319180981553 ], [ -65.004693937978402, 18.367256484315703 ], [ -65.004669127533134, 18.367227650554923 ], [ -65.004614142221897, 18.367222452462784 ], [ -65.004599222427089, 18.367212898398236 ], [ -65.004564353693127, 18.367174341625116 ], [ -65.004554463042609, 18.367159923435054 ], [ -65.004525126367412, 18.367078452606734 ], [ -65.004550775003452, 18.366997314435366 ], [ -65.004506350895269, 18.366925231343146 ], [ -65.004451868498506, 18.366858008447423 ], [ -65.004392190628892, 18.366795310471844 ], [ -65.004347765211037, 18.366723227379623 ], [ -65.004288253669927, 18.366660698351893 ], [ -65.004203261130954, 18.366636223182866 ], [ -65.004113239447634, 18.366635552630328 ], [ -65.004028246908604, 18.366615771329293 ], [ -65.003938057587106, 18.366610239270585 ], [ -65.003867984842941, 18.366609736356111 ], [ -65.003848035903786, 18.366609567408318 ], [ -65.003762708088516, 18.366637731926176 ], [ -65.003722642572086, 18.366632535143708 ], [ -65.003728174630851, 18.36656095234656 ], [ -65.003688779667016, 18.36648417538629 ], [ -65.003649384703181, 18.366407397116348 ], [ -65.003609989739346, 18.366330451208228 ], [ -65.003604960594998, 18.366325757340178 ], [ -65.003544275586876, 18.36627362187744 ], [ -65.003459283047846, 18.366253840576405 ], [ -65.003369261364526, 18.366238920781598 ], [ -65.003274379484708, 18.36622383334867 ], [ -65.003214698995748, 18.366161135373147 ], [ -65.003165245743276, 18.36608905228087 ], [ -65.003140939522098, 18.366007580142877 ], [ -65.003126522641708, 18.365921414136892 ], [ -65.003072038935215, 18.365854191241112 ], [ -65.003002301467291, 18.365801049949482 ], [ -65.002927702493253, 18.365757464032015 ], [ -65.002852935881037, 18.365713878114605 ], [ -65.00276794465168, 18.365689402945577 ], [ -65.00267289251434, 18.365683870886812 ], [ -65.00258287083102, 18.365673644960054 ], [ -65.00254263767647, 18.365687726564147 ], [ -65.0025173256264, 18.365730474290842 ], [ -65.002476589557432, 18.365806749646367 ], [ -65.00240601258912, 18.365858717471042 ], [ -65.002325547589692, 18.36590112992144 ], [ -65.002320518445345, 18.36591068529566 ], [ -65.002320349497552, 18.36593465755027 ], [ -65.002360079737628, 18.36596365894917 ], [ -65.002370139335994, 18.36597321432339 ], [ -65.002369970388145, 18.36597807582956 ], [ -65.002354884264889, 18.365997018939822 ], [ -65.002294534533007, 18.366015626773788 ], [ -65.002204343901894, 18.366024511595413 ], [ -65.002114323528247, 18.366019147174825 ], [ -65.002024134206749, 18.36601847662223 ], [ -65.001934112523429, 18.366012944563522 ], [ -65.001843923201932, 18.366012274010927 ], [ -65.001753732570819, 18.366021158832552 ], [ -65.001708639219771, 18.366030378930475 ], [ -65.001663544558994, 18.366030043654177 ], [ -65.001583747492816, 18.365986457736767 ], [ -65.001498922591907, 18.36595712106157 ], [ -65.001423989651244, 18.365942201266705 ], [ -65.001413931362606, 18.365937339760535 ], [ -65.001349389367476, 18.365879504600855 ], [ -65.001324746560329, 18.365831560091692 ], [ -65.001274622755261, 18.365831224815395 ], [ -65.001184433433764, 18.36584480350507 ], [ -65.001170353139344, 18.36584480350507 ], [ -65.001100111447329, 18.365869949226692 ], [ -65.001090054468364, 18.365879504600855 ], [ -65.001024843230368, 18.365888557060657 ], [ -65.001014783632058, 18.365888557060657 ], [ -65.000965330379586, 18.365816471349035 ], [ -65.000975891582641, 18.365749585039282 ], [ -65.00097606053049, 18.365730474290842 ], [ -65.001011767455111, 18.365654198935317 ], [ -65.001011767455111, 18.365649505067324 ], [ -65.001011935093288, 18.365630394318885 ], [ -65.000952088275881, 18.365591669907644 ], [ -65.000862234230681, 18.36557188860661 ], [ -65.00085720508639, 18.365571720968489 ], [ -65.000822001076131, 18.365581108704532 ], [ -65.000806578366905, 18.365638273311674 ], [ -65.000770871442228, 18.365714547357527 ], [ -65.000735498484175, 18.365757296393895 ], [ -65.000725272557361, 18.365785962516497 ], [ -65.000704485427491, 18.365867099378193 ], [ -65.000668947450663, 18.365924263985335 ], [ -65.000663918306316, 18.365943207095597 ], [ -65.000633743440403, 18.36595259483164 ], [ -65.000578590491045, 18.365961814929562 ], [ -65.00051840839734, 18.365966173521315 ], [ -65.000488401169548, 18.365965838245017 ], [ -65.000413634557333, 18.365917558459557 ], [ -65.000338867945118, 18.365873972542147 ], [ -65.00025923851706, 18.365830218986559 ], [ -65.000219341948423, 18.365806079093772 ], [ -65.000199728285622, 18.36576282845266 ], [ -65.000160164373938, 18.365686050182717 ], [ -65.00013552156679, 18.365647661047717 ], [ -65.00010568328679, 18.365613965780767 ], [ -65.000020858385938, 18.36558462910557 ], [ -64.999936033485085, 18.365555292430372 ], [ -64.999925975196447, 18.365550430924202 ], [ -64.99990150002742, 18.365478514160429 ], [ -64.999862105063585, 18.365401735890487 ], [ -64.999847352906897, 18.365363514393664 ], [ -64.99982773924404, 18.365325125258664 ], [ -64.999798234930722, 18.365243485482551 ], [ -64.999763869111177, 18.365166874850729 ], [ -64.999719445003052, 18.365094790448836 ], [ -64.999649707535127, 18.365041649157149 ], [ -64.999605283427002, 18.364969564755256 ], [ -64.999570917607457, 18.364892786485314 ], [ -64.999536384149792, 18.364816008215314 ], [ -64.999502018330247, 18.364739397583548 ], [ -64.999492295317907, 18.364710563822769 ], [ -64.999432280862379, 18.364700505534131 ], [ -64.999432280862379, 18.364686256291861 ], [ -64.999453067992249, 18.364605119430166 ], [ -64.999478716628232, 18.364523982568471 ], [ -64.999489277831344, 18.364466650323266 ], [ -64.99951442355291, 18.364444857364504 ], [ -64.999555159621934, 18.364368749647156 ], [ -64.999630595477072, 18.364326337196701 ], [ -64.999671332855712, 18.364250061841176 ], [ -64.999696981491752, 18.364168924979481 ], [ -64.999732688416429, 18.364092817262133 ], [ -64.999783315135915, 18.364021403412778 ], [ -64.99982891140138, 18.363949989563423 ], [ -64.99986461963573, 18.363873881846075 ], [ -64.99984031210488, 18.363792409708083 ], [ -64.99975531956585, 18.363772628407105 ], [ -64.99967032702682, 18.3637479855999 ], [ -64.99961081548571, 18.363685456572227 ], [ -64.999561362233237, 18.363613372170278 ], [ -64.999501683054007, 18.363550843142548 ], [ -64.999452228491805, 18.363478758740655 ], [ -64.999377630827439, 18.363430311317018 ], [ -64.999307893359514, 18.363377170025387 ], [ -64.999258440107042, 18.363305085623438 ], [ -64.999203956400549, 18.363237695089595 ], [ -64.999144278530991, 18.363170472193815 ], [ -64.999129357426511, 18.363160749181475 ], [ -64.999054256847671, 18.36316007862888 ], [ -64.999029278764169, 18.36315521712271 ], [ -64.998979657873576, 18.363106938646922 ], [ -64.998945292054032, 18.363030326705427 ], [ -64.998935569041691, 18.362991937570484 ], [ -64.998890642019092, 18.362962936171584 ], [ -64.998800620335771, 18.3629478487386 ], [ -64.998720824579209, 18.362913818195352 ], [ -64.998630802895889, 18.362898730762424 ], [ -64.998545810356916, 18.362879117099567 ], [ -64.998455788673596, 18.362873585040802 ], [ -64.998370963772686, 18.362849109871775 ], [ -64.998275745306898, 18.36284357781301 ], [ -64.998190585129748, 18.362862018008855 ], [ -64.998100395808308, 18.36287090283048 ], [ -64.998055301147531, 18.362875429060409 ], [ -64.998025629196036, 18.362827316913069 ], [ -64.997976175943563, 18.36275523251112 ], [ -64.997901409331348, 18.362711646593709 ], [ -64.997821613574843, 18.362663199170072 ], [ -64.997801999911985, 18.362615254660909 ], [ -64.997802335188283, 18.362581894670257 ], [ -64.99784290361913, 18.362505620624404 ], [ -64.997843574171668, 18.362429177630759 ], [ -64.99784474763868, 18.362417776927259 ], [ -64.997795126748088, 18.362345692525366 ], [ -64.997795462024328, 18.362316858764586 ], [ -64.997740644351268, 18.362278301991466 ], [ -64.997660848594705, 18.362239409942049 ], [ -64.997596307909305, 18.362176714585871 ], [ -64.997536796368138, 18.362114185558141 ], [ -64.99747208804456, 18.362056349088789 ], [ -64.99740754735916, 18.361998513929109 ], [ -64.99735289732422, 18.361931123395266 ], [ -64.997293385783053, 18.361868594367536 ], [ -64.997218619170837, 18.361825008450069 ], [ -64.997174195062712, 18.361752924048176 ], [ -64.997124741810183, 18.361680839646226 ], [ -64.997044946053677, 18.361641947596866 ], [ -64.996965485573412, 18.361555278676406 ], [ -64.99688568981685, 18.361516386626988 ], [ -64.996805894060344, 18.361482357393413 ], [ -64.996720901521314, 18.361457880914713 ], [ -64.996636076620462, 18.361433239417238 ], [ -64.996545887298964, 18.361432567554971 ], [ -64.996455697977524, 18.361436758508603 ], [ -64.996395683521939, 18.361436255594128 ], [ -64.996370705438494, 18.361416978517241 ], [ -64.996321252186021, 18.361344892805675 ], [ -64.996241456429459, 18.361310863572101 ], [ -64.996156631528606, 18.361276665390733 ], [ -64.996071638989577, 18.361257050418203 ], [ -64.995986814088724, 18.361227713743006 ], [ -64.995937360836251, 18.361155630650785 ], [ -64.995877681656964, 18.361092932675263 ], [ -64.995787827611821, 18.361073151374228 ], [ -64.995703002710968, 18.36103426063454 ], [ -64.995618177810059, 18.361004922649613 ], [ -64.995533186580758, 18.360985141348635 ], [ -64.995442995949588, 18.360979776928048 ], [ -64.995357835772438, 18.360998218433565 ], [ -64.995272507957168, 18.361021518825908 ], [ -64.995197070792358, 18.361063932585978 ], [ -64.995116604483258, 18.36109678835254 ], [ -64.995036305812278, 18.361129645428775 ], [ -64.99495097799695, 18.36114808562462 ], [ -64.99486078867551, 18.361152276578196 ], [ -64.994770766992133, 18.361146744519488 ], [ -64.994680577670692, 18.361141381408515 ], [ -64.994590555987372, 18.361131155481758 ], [ -64.994525680025617, 18.36110198644468 ], [ -64.994505732396192, 18.361101817496888 ], [ -64.994473544562823, 18.361094945642662 ], [ -64.994427779349508, 18.361081868557733 ], [ -64.994363072335602, 18.361071811578768 ], [ -64.994295849439879, 18.361052531882535 ], [ -64.994215884735524, 18.361022693602592 ], [ -64.994141622347399, 18.360988661749673 ], [ -64.994028466600184, 18.36096536135733 ], [ -64.993915478491147, 18.360927641465253 ], [ -64.993838532583027, 18.360878858765375 ], [ -64.993744152307954, 18.36081398280362 ], [ -64.993707104278144, 18.36076084151199 ], [ -64.993630493646322, 18.360694121530685 ], [ -64.993550027337221, 18.360633268884385 ], [ -64.993475594691631, 18.360564704883473 ], [ -64.993357746386039, 18.3604637867208 ], [ -64.993259341485839, 18.360406454475537 ], [ -64.993155070560306, 18.360366053682867 ], [ -64.993070245659396, 18.360337053593639 ], [ -64.992888359582878, 18.360215683577337 ], [ -64.992690042348841, 18.360116274157974 ], [ -64.992458869348241, 18.359950312395426 ], [ -64.992305314118028, 18.359813687308076 ], [ -64.992172712346132, 18.359750990642169 ], [ -64.992003396510995, 18.359753002299897 ], [ -64.991929300451375, 18.359724502505742 ], [ -64.991753616986102, 18.359660464734759 ], [ -64.991679520926482, 18.359618556508451 ], [ -64.991650519527582, 18.359572119432869 ], [ -64.991644316916222, 18.359494504281884 ], [ -64.991629397121415, 18.359423424399154 ], [ -64.991605257228684, 18.359366596377981 ], [ -64.991573069395372, 18.359324016289406 ], [ -64.99145957837186, 18.359201137529851 ], [ -64.991283894906644, 18.359023441097236 ], [ -64.991112903999749, 18.358891677516056 ], [ -64.990932190080514, 18.358711634149415 ], [ -64.990792547506544, 18.358616750959868 ], [ -64.990651396189321, 18.358541481433235 ], [ -64.990526505772038, 18.358517006264208 ], [ -64.990442685390349, 18.358492028180763 ], [ -64.990299523725071, 18.358466211906602 ], [ -64.990102716544015, 18.358433353520695 ], [ -64.989935246038158, 18.3584122324242 ], [ -64.989805661752825, 18.358401335944848 ], [ -64.989660654758268, 18.358382225196408 ], [ -64.989505254198775, 18.358374346203675 ], [ -64.989303250235253, 18.358351378468285 ], [ -64.989159919622125, 18.35832388712231 ], [ -64.989013236246137, 18.35829304039413 ], [ -64.988949533751452, 18.358261358094637 ], [ -64.988775692996114, 18.358187428363408 ], [ -64.988644767605649, 18.358138479335082 ], [ -64.988541334870774, 18.358103106376973 ], [ -64.988423988169984, 18.358072429906315 ], [ -64.988284513234191, 18.35802197082495 ], [ -64.988145038298399, 18.357954915567404 ], [ -64.987986620252286, 18.357877802021164 ], [ -64.987838763409286, 18.357790797824407 ], [ -64.987735665950709, 18.357712510811155 ], [ -64.987680848277648, 18.357652663993747 ], [ -64.987596693929333, 18.357590973156732 ], [ -64.987570207102578, 18.357556438389395 ], [ -64.987548917058291, 18.357527773576464 ], [ -64.987520250935688, 18.357503130769317 ], [ -64.987478341399708, 18.35744361922815 ], [ -64.987448501810036, 18.357405397731327 ], [ -64.987422350259578, 18.357362985280929 ], [ -64.987398714590938, 18.357328116546967 ], [ -64.987380440723598, 18.357290061378592 ], [ -64.987362000527753, 18.357275478169754 ], [ -64.987326628879373, 18.357284530629499 ], [ -64.987294442355733, 18.357312190923267 ], [ -64.98725789724034, 18.357356615031449 ], [ -64.987240630511508, 18.357398859843727 ], [ -64.98723694247235, 18.357423335012754 ], [ -64.987248844780538, 18.357485025849769 ], [ -64.987274828692875, 18.357583763406865 ], [ -64.98733333440515, 18.357661548815372 ], [ -64.987398210366848, 18.357754420347135 ], [ -64.987459733565686, 18.357855672476433 ], [ -64.987523100784131, 18.3579237348726 ], [ -64.987674310390048, 18.358028843988905 ], [ -64.987789645433111, 18.35808584095787 ], [ -64.987990978844039, 18.358186423844245 ], [ -64.988156102415871, 18.35828331738179 ], [ -64.988316364481534, 18.358345680081015 ], [ -64.988479308757519, 18.358485490293162 ], [ -64.988563463105777, 18.358550532583308 ], [ -64.988671924984942, 18.358607363223825 ], [ -64.988838724938262, 18.358704424399548 ], [ -64.989005692529645, 18.35878807714306 ], [ -64.98917651579842, 18.358819090199688 ], [ -64.989331916357912, 18.358843396420923 ], [ -64.98942864356701, 18.358862339531186 ], [ -64.98954431388637, 18.358876422444951 ], [ -64.989668533751058, 18.358888826357941 ], [ -64.989841368677503, 18.358913973389178 ], [ -64.989944969050498, 18.358910788264438 ], [ -64.990088298353953, 18.358928390269568 ], [ -64.990198773200518, 18.358943980616971 ], [ -64.990317796282739, 18.358979518593856 ], [ -64.990445201272223, 18.359021763406133 ], [ -64.990575959024511, 18.359100387005356 ], [ -64.990719792552056, 18.359205999036021 ], [ -64.990822890010634, 18.359333236387329 ], [ -64.991011315284481, 18.359540940047737 ], [ -64.991103516263706, 18.359676894582549 ], [ -64.991175265389302, 18.359793066506654 ], [ -64.991244332304632, 18.359883592414121 ], [ -64.991318931278727, 18.359975624445497 ], [ -64.991378944424582, 18.360028933375247 ], [ -64.991482209521337, 18.360082577581352 ], [ -64.991682203136804, 18.360174947508369 ], [ -64.991926116636307, 18.360304530484029 ], [ -64.99203625358723, 18.360373766347152 ], [ -64.992152763406978, 18.360495136363397 ], [ -64.992267763173743, 18.360600076531853 ], [ -64.992405226451865, 18.360698481432109 ], [ -64.992542688420258, 18.36079017949686 ], [ -64.992621647295778, 18.36086678881901 ], [ -64.992670931600401, 18.360956139949735 ], [ -64.992783919709495, 18.361102320411305 ], [ -64.992924569421973, 18.36121715253995 ], [ -64.993049793805881, 18.361337013812886 ], [ -64.993169656388488, 18.361451007750816 ], [ -64.993240733651874, 18.361536167927966 ], [ -64.993292032233626, 18.361594004397318 ], [ -64.993344501662989, 18.361631721670051 ], [ -64.993411724558769, 18.361678660350378 ], [ -64.993488502828711, 18.361707495420831 ], [ -64.993544495278456, 18.361708836525963 ], [ -64.993609034654241, 18.361695256526616 ], [ -64.993669216747946, 18.361691737435308 ], [ -64.993717831809704, 18.361689053915313 ], [ -64.993761754313084, 18.361690731606416 ], [ -64.993778013903409, 18.361691903763756 ], [ -64.993789582245029, 18.361693747783363 ], [ -64.993800477414709, 18.361699782756546 ], [ -64.993812547361074, 18.361712187979151 ], [ -64.993800143448084, 18.361780249065646 ], [ -64.993774493502372, 18.361861219598893 ], [ -64.993788742744584, 18.361947385604878 ], [ -64.993788073501719, 18.362038245478914 ], [ -64.993757226773539, 18.362119381030936 ], [ -64.993741636426137, 18.362205211760681 ], [ -64.993705929501459, 18.362281487116206 ], [ -64.993670222576782, 18.362357762471731 ], [ -64.993639544796451, 18.362438731695249 ], [ -64.993603837871774, 18.362515007050774 ], [ -64.993593110340214, 18.362601005418639 ], [ -64.993602496766641, 18.362687171424682 ], [ -64.993626805607164, 18.362768643562674 ], [ -64.993661171426709, 18.362845254194497 ], [ -64.993695703574701, 18.362922032464439 ], [ -64.993714983270934, 18.363003504602432 ], [ -64.993724538645154, 18.363056142979644 ], [ -64.993739792406586, 18.363139291499067 ], [ -64.993784385462561, 18.36321137590096 ], [ -64.993818751282049, 18.363288154170903 ], [ -64.993843057503284, 18.363369626308895 ], [ -64.993872561816602, 18.363451098446887 ], [ -64.993916985924784, 18.36352318284878 ], [ -64.993946322599982, 18.363604654986773 ], [ -64.993965602296214, 18.363690820992815 ], [ -64.993949844310691, 18.36377681936068 ], [ -64.993964259881352, 18.363862985366723 ], [ -64.993968450834984, 18.363948983734588 ], [ -64.99400801343694, 18.36402576200453 ], [ -64.994047577348624, 18.36407387415187 ], [ -64.994052269907002, 18.364107401780643 ], [ -64.994026622580634, 18.364183677136168 ], [ -64.994026622580634, 18.364188538642338 ], [ -64.994025950718367, 18.364274537010203 ], [ -64.994030141671942, 18.364365396884239 ], [ -64.994049587696679, 18.364446869022231 ], [ -64.994063836938892, 18.364533035028273 ], [ -64.994083282963629, 18.364614339528089 ], [ -64.994112619638827, 18.364695979304258 ], [ -64.994121839736749, 18.364781977672124 ], [ -64.994161403648377, 18.364858923580186 ], [ -64.994195769467922, 18.364935534212009 ], [ -64.994225272471567, 18.365002757107732 ], [ -64.994225104833447, 18.365017173988122 ], [ -64.994204820617995, 18.365040810966434 ], [ -64.994144638524347, 18.365054724932406 ], [ -64.994059310709019, 18.365082720502414 ], [ -64.993973982893749, 18.365106022204429 ], [ -64.993888822716599, 18.365124462400274 ], [ -64.993798465756981, 18.365133347221956 ], [ -64.993708276435484, 18.365142232043581 ], [ -64.993613059279369, 18.365155978371376 ], [ -64.993527731464098, 18.365179112435214 ], [ -64.993442403648771, 18.365202414137229 ], [ -64.993371995628308, 18.365254549600024 ], [ -64.993281637359019, 18.365268128289699 ], [ -64.993196812458166, 18.365248346988722 ], [ -64.993106790774789, 18.365233427193914 ], [ -64.993021799545488, 18.365204090518716 ], [ -64.992936805696786, 18.365184309217682 ], [ -64.992851982105606, 18.365159834048654 ], [ -64.992767157204753, 18.365130497373457 ], [ -64.992676966573583, 18.365129826820919 ], [ -64.992581749417468, 18.365133850136374 ], [ -64.992496924516615, 18.365104513461176 ], [ -64.99242718704869, 18.365051372169489 ], [ -64.992331968582903, 18.365060256991171 ], [ -64.992246808405753, 18.365078697186959 ], [ -64.992161480590482, 18.365106860395201 ], [ -64.992108674575093, 18.365110548434359 ], [ -64.992069110663465, 18.365118930341566 ], [ -64.99203189630515, 18.365127144610597 ], [ -64.991982275414557, 18.365134353050792 ], [ -64.991942880450722, 18.365131838478646 ], [ -64.991894433027085, 18.365126138781761 ], [ -64.991822516263312, 18.365111554263194 ], [ -64.991764010551037, 18.365106860395201 ], [ -64.99170097860889, 18.365099987231247 ], [ -64.991582792407712, 18.365077523720004 ], [ -64.99147936098251, 18.365071488746764 ], [ -64.991431919387765, 18.365068974174619 ], [ -64.991388164522505, 18.365052377998381 ], [ -64.991341227151906, 18.365018682731431 ], [ -64.991254558231446, 18.364956488979999 ], [ -64.991116927315204, 18.364885913321359 ], [ -64.990903187371941, 18.364846518357524 ], [ -64.990682576884126, 18.364831933839014 ], [ -64.990476549605148, 18.364812152538036 ], [ -64.990395580381573, 18.364790024303034 ], [ -64.990310252566303, 18.364766890239139 ], [ -64.99025761418909, 18.364724477788684 ], [ -64.990235485954031, 18.364685585739323 ], [ -64.990205311088118, 18.364647699518741 ], [ -64.990171951097466, 18.364605454706464 ], [ -64.990083270519278, 18.364552145776656 ], [ -64.990046222489468, 18.364536890705551 ], [ -64.989988890244206, 18.364521300358206 ], [ -64.989951842214396, 18.364508056944828 ], [ -64.98992837287426, 18.364492969511844 ], [ -64.98991714111861, 18.364483078861326 ], [ -64.98986902897127, 18.364455921482033 ], [ -64.989789400852885, 18.364412838479041 ], [ -64.989683788822163, 18.364377802106901 ], [ -64.989589743823387, 18.364357350253329 ], [ -64.989512965553445, 18.364339580610078 ], [ -64.989434510902015, 18.364275375200918 ], [ -64.989295203604343, 18.364165069302203 ], [ -64.98919093267881, 18.364105893037333 ], [ -64.989072412511007, 18.364079909125053 ], [ -64.989019606495617, 18.364086447012653 ], [ -64.988923046924697, 18.364083094249793 ], [ -64.988834869260927, 18.364062977672461 ], [ -64.988732945269362, 18.364030958786998 ], [ -64.988677457043707, 18.363998101710763 ], [ -64.988615263292274, 18.363954683431473 ], [ -64.988538149746034, 18.363900871587248 ], [ -64.988490540513169, 18.363862817728545 ], [ -64.988426502742129, 18.363839683664708 ], [ -64.988337654525822, 18.363827948994583 ], [ -64.988291051121791, 18.363808167693605 ], [ -64.988208740793084, 18.363764414138018 ], [ -64.988047472898586, 18.363668022205218 ], [ -64.987982094022414, 18.363639188444438 ], [ -64.987769193579538, 18.363570624443582 ], [ -64.987543049723286, 18.36352787671683 ], [ -64.987465936177045, 18.363483284970528 ], [ -64.987446825428606, 18.363443890006693 ], [ -64.987439784626588, 18.363385216656297 ], [ -64.987416316596068, 18.36332553747701 ], [ -64.987397539814253, 18.36324674754934 ], [ -64.987349596614763, 18.363190924047387 ], [ -64.98721280257962, 18.363020938969385 ], [ -64.987146417874555, 18.362849109871775 ], [ -64.987085397590135, 18.362651967414422 ], [ -64.986937540747135, 18.362356925590689 ], [ -64.986646520929185, 18.362102449578401 ], [ -64.986439823097612, 18.361878821603966 ], [ -64.986326499712277, 18.361808579911951 ], [ -64.986206304472717, 18.361696597631806 ], [ -64.986066995865372, 18.361581597864983 ], [ -64.985715123401121, 18.361228385605273 ], [ -64.985424606497531, 18.360935186491417 ], [ -64.985165605565044, 18.360668809480615 ], [ -64.98495521969437, 18.36047183335171 ], [ -64.984707953431951, 18.3601970744337 ], [ -64.98454567970856, 18.360075704417454 ], [ -64.984456665163748, 18.360003452377384 ], [ -64.984292547420807, 18.359934554409847 ], [ -64.984022648699295, 18.359887783367697 ], [ -64.983733474210567, 18.359894487583801 ], [ -64.983552592653155, 18.359907229392377 ], [ -64.983316390508264, 18.359874203368349 ], [ -64.983177083210592, 18.359840509411072 ], [ -64.983096952177789, 18.359820728110094 ], [ -64.983036936412532, 18.359795916355097 ], [ -64.983000392606812, 18.359776805606714 ], [ -64.982947754229599, 18.359732718084501 ], [ -64.982887907412191, 18.359689970357749 ], [ -64.982624044973534, 18.359541106376241 ], [ -64.982436122614104, 18.359448905397016 ], [ -64.982256079247463, 18.359372128436746 ], [ -64.982110904614785, 18.359293003232779 ], [ -64.982024570970623, 18.359219576416024 ], [ -64.981918456025483, 18.359120837549199 ], [ -64.981839330821515, 18.359002151052948 ], [ -64.981794236160738, 18.358897712489238 ], [ -64.981544958240647, 18.35846185331485 ], [ -64.9814594627872, 18.358430672620045 ], [ -64.98140648913369, 18.358364958467575 ], [ -64.981398945417197, 18.35830879837971 ], [ -64.981386037280117, 18.358251132167823 ], [ -64.981362400301805, 18.358207881526653 ], [ -64.981161402167174, 18.358069243471903 ], [ -64.980996613871582, 18.357927422911757 ], [ -64.980835178338907, 18.357694908806025 ], [ -64.980724369525774, 18.357508662828025 ], [ -64.980612554883692, 18.357312693837741 ], [ -64.980506942852969, 18.357177745131821 ], [ -64.980394122382052, 18.357054195819671 ], [ -64.980255988551392, 18.356859735572641 ], [ -64.980202176707166, 18.356727636715163 ], [ -64.980166972696964, 18.356618839559701 ], [ -64.979954407530329, 18.356415326852868 ], [ -64.979729101864791, 18.356311223565456 ], [ -64.979601193960946, 18.356252885491358 ], [ -64.979342695942876, 18.356159008130703 ], [ -64.97883072905114, 18.356009474906273 ], [ -64.97858363042684, 18.35594577241153 ], [ -64.978422028565717, 18.35587972298282 ], [ -64.978275343880057, 18.355782828135546 ], [ -64.978167049639012, 18.355700517806838 ], [ -64.978009134507374, 18.3556034553215 ], [ -64.977953478643542, 18.355560875232925 ], [ -64.977856080881907, 18.355512260171167 ], [ -64.977782655374824, 18.355469512444415 ], [ -64.977694645349231, 18.355418047534215 ], [ -64.977588865680389, 18.355369432472457 ], [ -64.977465316368239, 18.355340431073557 ], [ -64.977304048473741, 18.355313944246802 ], [ -64.977089136373081, 18.355359709460117 ], [ -64.976915129289296, 18.35546850661558 ], [ -64.97688361331825, 18.355503542987663 ], [ -64.976868524575593, 18.355527682880393 ], [ -64.976868356937473, 18.355541932122662 ], [ -64.976885457337801, 18.355565233824677 ], [ -64.976919821847673, 18.355597420348317 ], [ -64.977039181515863, 18.355676545552285 ], [ -64.977213860461916, 18.35579456280567 ], [ -64.977372278507971, 18.355900007198215 ], [ -64.977586854022661, 18.355980305869195 ], [ -64.977879214945801, 18.35609178523498 ], [ -64.978074178107249, 18.356184824404863 ], [ -64.978252043487714, 18.356283563271688 ], [ -64.978429907558507, 18.356352797825195 ], [ -64.978529987530464, 18.356373249678711 ], [ -64.978706341548275, 18.356436449259036 ], [ -64.978864927232507, 18.356516580291839 ], [ -64.97899484679408, 18.356579276957689 ], [ -64.979125269270128, 18.356667119345161 ], [ -64.97929978057806, 18.356765522935689 ], [ -64.979504969666266, 18.356878343406606 ], [ -64.979614605012443, 18.356939531329147 ], [ -64.979739663067903, 18.357056207477399 ], [ -64.979874276497526, 18.357193670755464 ], [ -64.979958430845784, 18.357277657465602 ], [ -64.979991790836493, 18.357354268097424 ], [ -64.980057504988906, 18.357548393068157 ], [ -64.980190777313396, 18.357783254107915 ], [ -64.980319858684254, 18.357951730442664 ], [ -64.980409209815036, 18.358094558141318 ], [ -64.980509960339589, 18.35827242221211 ], [ -64.98069503285052, 18.358458834518558 ], [ -64.980858647679099, 18.358605854480516 ], [ -64.981034332453987, 18.358764606493196 ], [ -64.981127706900224, 18.35889720957482 ], [ -64.981186044974322, 18.359021763406133 ], [ -64.981268690579327, 18.359179344571146 ], [ -64.98135502422349, 18.359327704328621 ], [ -64.981397939588362, 18.359401465111944 ], [ -64.981481255745905, 18.359520151608251 ], [ -64.981587035414748, 18.359615874298129 ], [ -64.98181150288957, 18.359726683111319 ], [ -64.98198316434906, 18.359835312628604 ], [ -64.982307376519543, 18.359978306655762 ], [ -64.982745917904253, 18.360218699754284 ], [ -64.982861754552061, 18.360253402159742 ], [ -64.982990165370381, 18.360278715519485 ], [ -64.983196026320854, 18.36030838747098 ], [ -64.983707656626677, 18.360443334867227 ], [ -64.984177715292162, 18.360612146478275 ], [ -64.984546182622978, 18.360791520601992 ], [ -64.984974833357171, 18.361165856577543 ], [ -64.985316816480633, 18.361539017776408 ], [ -64.985559219927154, 18.361803718405781 ], [ -64.985648907643906, 18.361972362378651 ], [ -64.985819395636327, 18.362172689960744 ], [ -64.986042855972642, 18.362412747782969 ], [ -64.986502687401583, 18.362855647759375 ], [ -64.986596900038535, 18.363108781356857 ], [ -64.986701507550038, 18.363292512762655 ], [ -64.98683058761128, 18.36362275990632 ], [ -64.987003925452143, 18.363954348155175 ], [ -64.98711506954163, 18.364068174454928 ], [ -64.987194697660016, 18.364090470328108 ], [ -64.987310535617553, 18.364086279374533 ], [ -64.987390666650356, 18.36407068902713 ], [ -64.9874924230038, 18.364076053447718 ], [ -64.987589150212898, 18.364099858064151 ], [ -64.987692750585893, 18.36418635934649 ], [ -64.987802721208311, 18.364302197303971 ], [ -64.987845301296886, 18.364332372169883 ], [ -64.987872626314356, 18.364375958087351 ], [ -64.987936328809099, 18.364443013344953 ], [ -64.987989805377026, 18.364465644494373 ], [ -64.988090052987161, 18.364493472426261 ], [ -64.988196000294181, 18.364540243468468 ], [ -64.988336481058809, 18.364569915419963 ], [ -64.988372523259784, 18.364585002852891 ], [ -64.988497748953364, 18.364665972076466 ], [ -64.988636553336562, 18.364742247431991 ], [ -64.988723054618902, 18.364803435354531 ], [ -64.988852638904177, 18.364852385692586 ], [ -64.988902762709245, 18.364883398749214 ], [ -64.98896143605964, 18.364945592500646 ], [ -64.989058666183155, 18.365034608355131 ], [ -64.989187244639652, 18.365194032230079 ], [ -64.989257987936412, 18.365276510196907 ], [ -64.989336274949665, 18.365360832183342 ], [ -64.989389416241295, 18.365431407841982 ], [ -64.989424452613378, 18.365484884409909 ], [ -64.989472564760717, 18.365571720968489 ], [ -64.989540625847155, 18.365744220618637 ], [ -64.98958940854709, 18.365868272845205 ], [ -64.989641711648005, 18.36599584547281 ], [ -64.989696194044825, 18.366093075596325 ], [ -64.98975805251996, 18.3661740448199 ], [ -64.989817396422893, 18.366221989329063 ], [ -64.989924684835103, 18.366291056244393 ], [ -64.989968941305108, 18.366310502269073 ], [ -64.990042869726608, 18.366349059042193 ], [ -64.990162730999543, 18.366412258622518 ], [ -64.990270187049873, 18.36646489699973 ], [ -64.990386695559948, 18.3665081476409 ], [ -64.990523991199893, 18.366553409939741 ], [ -64.990630441421331, 18.366596492942733 ], [ -64.990798079565309, 18.366701602059038 ], [ -64.990872007986809, 18.366736806069298 ], [ -64.990937888467727, 18.366761448876446 ], [ -64.990998407147401, 18.366794808867098 ], [ -64.991073341397794, 18.366825654285606 ], [ -64.991170571521309, 18.366846272467626 ], [ -64.991274339532424, 18.366840909356711 ], [ -64.991325972080801, 18.366830012877358 ], [ -64.991422364013602, 18.36681190795781 ], [ -64.99147768460108, 18.366774020427556 ], [ -64.991497801178355, 18.366769495507356 ], [ -64.991512888611339, 18.366755246265143 ], [ -64.991557815633939, 18.366765136915603 ], [ -64.991577596934917, 18.366803526050603 ], [ -64.991576926382322, 18.366889524418468 ], [ -64.991586146480245, 18.366975690424511 ], [ -64.991605592504982, 18.367057162562446 ], [ -64.99163995832447, 18.367133773194269 ], [ -64.991679353288305, 18.367210551464211 ], [ -64.991728806540834, 18.367282803504281 ], [ -64.99179351355474, 18.367340637354289 ], [ -64.99184699143234, 18.367407692611891 ], [ -64.991926787188845, 18.367461001541699 ], [ -64.99199132656463, 18.367518838011051 ], [ -64.992066094486518, 18.367562422618789 ], [ -64.992090402017425, 18.367643896066454 ], [ -64.99212493547509, 18.367720674336397 ], [ -64.99217438741789, 18.367797452606396 ], [ -64.992223840670363, 18.367869535698617 ], [ -64.99220808268484, 18.367955535376154 ], [ -64.992147231348213, 18.36803633565188 ], [ -64.992096604628728, 18.368107583172787 ], [ -64.99204597659957, 18.368178995712469 ], [ -64.991975402250659, 18.36823113248488 ], [ -64.991919746386827, 18.368307072564164 ], [ -64.991944052608005, 18.368388543392427 ], [ -64.99201882052995, 18.368436992125737 ], [ -64.99208336121535, 18.368494827285417 ], [ -64.992093250556195, 18.368523659736525 ], [ -64.992067769558275, 18.36856640746322 ], [ -64.992042122231965, 18.368647545634587 ], [ -64.991951931600795, 18.368661124324262 ], [ -64.991891246592672, 18.368727675357775 ], [ -64.991805920087074, 18.368750978369462 ], [ -64.991720592271747, 18.3687741124333 ], [ -64.991635264456477, 18.368802275641485 ], [ -64.991559827291667, 18.368844686782268 ], [ -64.991484390126857, 18.368887100542395 ], [ -64.991438624913542, 18.368958514391693 ], [ -64.991407947133212, 18.369039651253388 ], [ -64.991417333559582, 18.36912564962131 ], [ -64.991391518595094, 18.369211480350998 ], [ -64.991350782526069, 18.369287754396851 ], [ -64.991330163034377, 18.369368892568218 ], [ -64.991314405048854, 18.369454889626411 ], [ -64.991363858301327, 18.369526975338033 ], [ -64.991448515564059, 18.369580116629663 ], [ -64.991533508103032, 18.369599896620969 ], [ -64.991507859466992, 18.369681033482664 ], [ -64.991422531651722, 18.369704167546558 ], [ -64.991381795582754, 18.369780442902083 ], [ -64.991356146946714, 18.369861579763779 ], [ -64.991325469166327, 18.369942548987353 ], [ -64.991289594603529, 18.370033073585091 ], [ -64.991379616286849, 18.370043299511849 ], [ -64.991469805608347, 18.370043971374116 ], [ -64.991554630509199, 18.370068612871592 ], [ -64.991599222255502, 18.370140698583214 ], [ -64.991673821229597, 18.370188977059001 ], [ -64.991653200428175, 18.370270113920697 ], [ -64.991563180054527, 18.370264749500109 ], [ -64.991477852239257, 18.370287883563947 ], [ -64.991392524423929, 18.370306491397969 ], [ -64.991326977909637, 18.370368014596806 ], [ -64.991306189470095, 18.370458706832721 ], [ -64.991295461938591, 18.370544706510259 ], [ -64.991234776930469, 18.370606396037545 ], [ -64.991219689497484, 18.370620646589487 ], [ -64.991169230416119, 18.37066339300651 ], [ -64.991168559863581, 18.370749391374375 ], [ -64.991202924373397, 18.370835725018537 ], [ -64.991262437224179, 18.370898254046267 ], [ -64.991311890476709, 18.370970338448217 ], [ -64.991291270984959, 18.371051476619584 ], [ -64.991220695326319, 18.37110361077265 ], [ -64.991200074524954, 18.371184747634345 ], [ -64.991134360372484, 18.37124157696519 ], [ -64.991049033866886, 18.371264878667205 ], [ -64.990959012183566, 18.37126420811461 ], [ -64.990868822862069, 18.371258676055845 ], [ -64.990773772034458, 18.3712626993713 ], [ -64.990683581403289, 18.371262028818762 ], [ -64.990598254897691, 18.371280636652727 ], [ -64.990522816423208, 18.371323049103182 ], [ -64.990462131415086, 18.37140385068858 ], [ -64.990426425800081, 18.371480126044105 ], [ -64.990390718875403, 18.371556233761453 ], [ -64.990385019178518, 18.371642232129318 ], [ -64.990444529409956, 18.371714484169388 ], [ -64.990524158838014, 18.371767625461075 ], [ -64.990553495513211, 18.371849097599068 ], [ -64.990487948998918, 18.371910788436026 ], [ -64.990404465203198, 18.371883967642646 ], [ -64.990314946434296, 18.371871896386608 ], [ -64.990231462638576, 18.371837027652646 ], [ -64.990136076534668, 18.371819090371275 ], [ -64.990052592738948, 18.37179578866926 ], [ -64.989963241608223, 18.371772151690948 ], [ -64.98987372283932, 18.371760081744583 ], [ -64.989784204070418, 18.371742312101333 ], [ -64.98971329313548, 18.371650614036525 ], [ -64.989683956460283, 18.371570483003723 ], [ -64.98963115044495, 18.371467385545145 ], [ -64.989565771568778, 18.371409885661762 ], [ -64.989500560330782, 18.371352218140203 ], [ -64.98941104156188, 18.371340148193838 ], [ -64.989333760377463, 18.371294047704282 ], [ -64.989232339300372, 18.371276110422855 ], [ -64.98914282053147, 18.371269740173375 ], [ -64.989053301762567, 18.371251970530125 ], [ -64.988976020578207, 18.371211402099277 ], [ -64.988867558699042, 18.371319025787727 ], [ -64.988824978610467, 18.37139278657105 ], [ -64.988747697426049, 18.37135238577838 ], [ -64.988706626080784, 18.3712720871074 ], [ -64.988671422070524, 18.37119195607454 ], [ -64.988606043194352, 18.371134456191157 ], [ -64.988528762009992, 18.371088188063425 ], [ -64.988450810273036, 18.371133282724145 ], [ -64.988384593206149, 18.371189776778692 ], [ -64.988354083063939, 18.371269404897077 ], [ -64.988323405283609, 18.371354900350525 ], [ -64.988310832422769, 18.371440228165795 ], [ -64.988232377771396, 18.371525220704825 ], [ -64.988184097985936, 18.371599149126325 ], [ -64.988135650562299, 18.371672909909705 ], [ -64.988057531187224, 18.37171230487354 ], [ -64.987973712115206, 18.371740132805428 ], [ -64.987889893043189, 18.371762261040431 ], [ -64.987800541912463, 18.371738791700295 ], [ -64.987704988170378, 18.37172672175393 ], [ -64.987615469401476, 18.371714651807565 ], [ -64.987538020578938, 18.371674083376718 ], [ -64.987454704421395, 18.371639214642755 ], [ -64.987412962523535, 18.371627479972688 ], [ -64.987378596703991, 18.371598646211908 ], [ -64.98730131551963, 18.371552545722295 ], [ -64.987224035644886, 18.371506277594563 ], [ -64.987134515566368, 18.371482808254427 ], [ -64.987038961824283, 18.371482137701832 ], [ -64.986961010087327, 18.371527064724432 ], [ -64.986871323680248, 18.371514994778067 ], [ -64.986781972549522, 18.37149722513476 ], [ -64.986698488753802, 18.371473755794625 ], [ -64.986615004958082, 18.37145028645449 ], [ -64.986537723773722, 18.371404185964877 ], [ -64.986484582482035, 18.371335286687668 ], [ -64.986431273552284, 18.371266387410515 ], [ -64.986372432563712, 18.371157591564724 ], [ -64.986230275417597, 18.371047954908875 ], [ -64.986156849910515, 18.370991294525879 ], [ -64.985775137856649, 18.370840586524707 ], [ -64.985635662920856, 18.370783421917622 ], [ -64.985473893421556, 18.370732962836314 ], [ -64.985216399922706, 18.370688706366252 ], [ -64.985212545555044, 18.370688538728132 ], [ -64.985170468380886, 18.370639756028197 ], [ -64.985115481760033, 18.370594996643774 ], [ -64.985102908899194, 18.370577059362347 ], [ -64.985074076448086, 18.370511346519606 ], [ -64.985042560477041, 18.370459712661557 ], [ -64.985010875558146, 18.370407912475059 ], [ -64.984960751753079, 18.370375725951419 ], [ -64.984860839419298, 18.370335995711287 ], [ -64.984747683672083, 18.370285201353681 ], [ -64.984668055553698, 18.370244297646536 ], [ -64.98456663447655, 18.370194844394064 ], [ -64.984452306571995, 18.370119071952956 ], [ -64.984303276261983, 18.370008095501646 ], [ -64.98409289039131, 18.369937016928588 ], [ -64.983974033637537, 18.369890413524558 ], [ -64.98387479316591, 18.369873314433846 ], [ -64.98382651338045, 18.369875661367871 ], [ -64.983674296636025, 18.369900808399166 ], [ -64.983554435363089, 18.369909188996644 ], [ -64.983510346531205, 18.369894436840013 ], [ -64.983474639606527, 18.369865101474488 ], [ -64.983403059428724, 18.369794693453969 ], [ -64.983359473511257, 18.369728307439289 ], [ -64.983300800160862, 18.369636944650836 ], [ -64.983250843993972, 18.369498141577253 ], [ -64.983208096267276, 18.369317092381721 ], [ -64.983179093558647, 18.36916923553872 ], [ -64.983151099298311, 18.369047696574683 ], [ -64.983132156187992, 18.369013667341108 ], [ -64.983042971385714, 18.368965721522216 ], [ -64.982899808410764, 18.36886832376058 ], [ -64.982651033405091, 18.36876908328901 ], [ -64.982366049869938, 18.368732873449915 ], [ -64.982096823010693, 18.368648216187182 ], [ -64.981893980856455, 18.368559200332697 ], [ -64.98164906152806, 18.368444871118527 ], [ -64.981481591022202, 18.368397429523725 ], [ -64.981382852155377, 18.368326183312547 ], [ -64.981317305641085, 18.368240686549427 ], [ -64.981264667263872, 18.368145469393312 ], [ -64.981219404964975, 18.368069864590382 ], [ -64.981192247585625, 18.367967436374727 ], [ -64.981175651409387, 18.367833662445491 ], [ -64.981169113521787, 18.367695024390741 ], [ -64.981165090206332, 18.367576002618136 ], [ -64.98115603774653, 18.367422781354549 ], [ -64.981126701071332, 18.367293699983634 ], [ -64.98110457283633, 18.367184064637456 ], [ -64.981025615270539, 18.367078284968613 ], [ -64.980963589157227, 18.366995807001786 ], [ -64.980892845860467, 18.366944342091585 ], [ -64.980821767287409, 18.366904947127694 ], [ -64.980760747002989, 18.366909304409774 ], [ -64.980684136371167, 18.366928081191588 ], [ -64.980617751666159, 18.366964123392563 ], [ -64.980545331987969, 18.367033525584191 ], [ -64.980496884564332, 18.367101754308749 ], [ -64.980450113522181, 18.367213232364861 ], [ -64.980425973629451, 18.367358911221686 ], [ -64.980451789903611, 18.367619085621186 ], [ -64.980546505454981, 18.367862999120689 ], [ -64.980613225436286, 18.368057962282137 ], [ -64.980715819980389, 18.368272539106499 ], [ -64.980800644881242, 18.368472531412237 ], [ -64.980859821146112, 18.368708733557185 ], [ -64.98089737209034, 18.36878199142609 ], [ -64.980962918604632, 18.3688554156235 ], [ -64.981061992747755, 18.368890116719285 ], [ -64.981196941453675, 18.368888775614153 ], [ -64.981341948448232, 18.368885087574995 ], [ -64.98144655465012, 18.368866313412525 ], [ -64.981555687081823, 18.368906043652657 ], [ -64.981675045440397, 18.368943425649093 ], [ -64.981834636953465, 18.369032107536952 ], [ -64.981948966167693, 18.369062113455016 ], [ -64.982009483537638, 18.369145263284111 ], [ -64.982108054766343, 18.36921416256132 ], [ -64.982173936556933, 18.369270487668018 ], [ -64.982222047394544, 18.369283060528858 ], [ -64.982288264461431, 18.36928104887113 ], [ -64.982364373488508, 18.36931323539477 ], [ -64.982381807855461, 18.369376602613158 ], [ -64.982358003239028, 18.369468803592383 ], [ -64.982341742339031, 18.369592689490446 ], [ -64.982318105360775, 18.369672651575513 ], [ -64.982284074817528, 18.369722104827986 ], [ -64.982239147794928, 18.369758817581499 ], [ -64.982194388410505, 18.369780442902083 ], [ -64.982165554649725, 18.369802235860789 ], [ -64.982116435363821, 18.369939028586316 ], [ -64.982097828839528, 18.369991165358783 ], [ -64.982084250149853, 18.370067943628726 ], [ -64.982085255978745, 18.370114713361204 ], [ -64.982090452761213, 18.370175064402702 ], [ -64.982112748634336, 18.370261732013489 ], [ -64.982138061994078, 18.370344377618494 ], [ -64.982189023989861, 18.370443451761616 ], [ -64.982270160851556, 18.370558117561757 ], [ -64.982326319629806, 18.370619639450922 ], [ -64.982375437605981, 18.37066825451268 ], [ -64.982434278594553, 18.370699938121902 ], [ -64.982513571436641, 18.370733968665149 ], [ -64.982635275419511, 18.370768166846517 ], [ -64.982688250382694, 18.370785936489767 ], [ -64.982725466050681, 18.37080001809386 ], [ -64.982780786638216, 18.370817787737167 ], [ -64.982825378384518, 18.370827343111387 ], [ -64.982854378473746, 18.370833210446392 ], [ -64.982888075050369, 18.370848465517497 ], [ -64.982910706199789, 18.37086942159516 ], [ -64.982929816948229, 18.370893727816394 ], [ -64.982941719256416, 18.37091233565036 ], [ -64.982952280459529, 18.370945695641012 ], [ -64.982967703168754, 18.37099313854543 ], [ -64.982974073418234, 18.371030520541865 ], [ -64.982899305496346, 18.371149543624142 ], [ -64.982802747235041, 18.37125431746415 ], [ -64.982758826041334, 18.371303770716622 ], [ -64.982694788270294, 18.371375687480395 ], [ -64.982640473511651, 18.371443748566833 ], [ -64.982603928396259, 18.371523376685275 ], [ -64.982591355535476, 18.371608704500545 ], [ -64.982542908111839, 18.371682632922045 ], [ -64.982518265304691, 18.371762261040431 ], [ -64.982529497060341, 18.371847924132055 ], [ -64.982498819280011, 18.371950351038038 ], [ -64.982486077471378, 18.37204154618837 ], [ -64.982473505920268, 18.372127041641818 ], [ -64.982419191161569, 18.372195102728256 ], [ -64.982334869175133, 18.372274395570344 ], [ -64.982274519443308, 18.372342289018661 ], [ -64.982255911609343, 18.372427784472109 ], [ -64.982237302465649, 18.372513112287436 ], [ -64.98215834620953, 18.372588884728486 ], [ -64.982154155255898, 18.372588884728486 ], [ -64.982075365328228, 18.372544628258481 ], [ -64.981996575400558, 18.372508250781266 ], [ -64.981917785472888, 18.372471873303994 ], [ -64.981830445999833, 18.372455277127756 ], [ -64.981743106526835, 18.372442704266916 ], [ -64.981655767053837, 18.372426108090679 ], [ -64.981568259942662, 18.372421414222629 ], [ -64.981480920469608, 18.372412864677301 ], [ -64.981389390042978, 18.372400291816518 ], [ -64.98130205056998, 18.372391574633014 ], [ -64.981214543458805, 18.372383025087686 ], [ -64.981131562577502, 18.372358549918658 ], [ -64.981044055466327, 18.372353856050609 ], [ -64.980965265538657, 18.372313455257938 ], [ -64.980873735112027, 18.372300882397099 ], [ -64.980798465585394, 18.372344133038268 ], [ -64.980719005105129, 18.372379169410351 ], [ -64.980660164116614, 18.372442368990676 ], [ -64.980593108859011, 18.372497521940033 ], [ -64.980505601747836, 18.372500874702894 ], [ -64.980418094636661, 18.372500204150356 ], [ -64.980343495662567, 18.372455947680294 ], [ -64.980268896688472, 18.372411691210289 ], [ -64.980194297714434, 18.372367267102163 ], [ -64.980115507786763, 18.372330889624891 ], [ -64.980036717859036, 18.372294512147676 ], [ -64.979953569339614, 18.372266013663193 ], [ -64.979866397504736, 18.372241538494166 ], [ -64.979787607577066, 18.372201137701438 ], [ -64.979713008602971, 18.372156881231433 ], [ -64.979638409628933, 18.372112624761428 ], [ -64.979563810654838, 18.372068200653246 ], [ -64.979493402634375, 18.372016065190451 ], [ -64.979414612706648, 18.37197566439778 ], [ -64.979331631825403, 18.371939286920508 ], [ -64.979281843296633, 18.371914979389658 ], [ -64.979245130543063, 18.37191632049479 ], [ -64.9791616467474, 18.371947501189595 ], [ -64.979073971998048, 18.371978681884343 ], [ -64.978990320564208, 18.372005839263693 ], [ -64.97890298109121, 18.372005168711098 ], [ -64.978815473980035, 18.372008521473958 ], [ -64.97872796686886, 18.372011874236875 ], [ -64.978640627395805, 18.372003157053371 ], [ -64.978561837468135, 18.37196292389882 ], [ -64.978478688948712, 18.371938281091673 ], [ -64.978387158522082, 18.371921684915378 ], [ -64.978299819049084, 18.37191313537005 ], [ -64.978216839477454, 18.371880781208233 ], [ -64.978133689648359, 18.371852282723751 ], [ -64.978046517813482, 18.371823784239268 ], [ -64.977959179650156, 18.37180718806303 ], [ -64.977876197459182, 18.371778689578548 ], [ -64.977793048939759, 18.371750191094065 ], [ -64.977709900420336, 18.371725715925038 ], [ -64.977622728585459, 18.371705264071466 ], [ -64.977539581375709, 18.371676765586983 ], [ -64.977452409540831, 18.37165614609529 ], [ -64.977360711476081, 18.371647596549963 ], [ -64.977273370693354, 18.371642902681913 ], [ -64.977186198858476, 18.371610380881975 ], [ -64.977103051648726, 18.371585905712948 ], [ -64.977015710866056, 18.371581379483075 ], [ -64.976928203754881, 18.37158858792327 ], [ -64.976840530315201, 18.37159981967892 ], [ -64.976753189532531, 18.371599149126325 ], [ -64.976665682421356, 18.371602501889242 ], [ -64.976578176619853, 18.37160183264632 ], [ -64.976495026790758, 18.37157735616762 ], [ -64.976412047219185, 18.371552880998593 ], [ -64.976362929242953, 18.371544499091385 ], [ -64.976325378298725, 18.371544163815088 ], [ -64.976238037515998, 18.371535615579432 ], [ -64.976150530404823, 18.37154684602541 ], [ -64.976063024603377, 18.371542319795537 ], [ -64.975975685130322, 18.371525723619243 ], [ -64.975888344347652, 18.37152102975125 ], [ -64.975800838546149, 18.371520359198655 ], [ -64.975734286202965, 18.37151985759391 ], [ -64.975713497763422, 18.371511809653327 ], [ -64.975634709145424, 18.371475432176055 ], [ -64.975551560626002, 18.371450957007028 ], [ -64.975464221153004, 18.37144223982358 ], [ -64.975376714041829, 18.37143754595553 ], [ -64.975289205620982, 18.371456825651762 ], [ -64.975205555496814, 18.371483981721383 ], [ -64.975134475614084, 18.371535111355342 ], [ -64.975055016443491, 18.371570315365545 ], [ -64.974983770232257, 18.371617590631843 ], [ -64.974904308442376, 18.371652794642102 ], [ -64.974853849361011, 18.371720016228153 ], [ -64.974811604548734, 18.371795118116665 ], [ -64.974756788185289, 18.371862341012388 ], [ -64.974706329103981, 18.371929563908168 ], [ -64.974668275245278, 18.372004833434801 ], [ -64.974650839568653, 18.3720881495924 ], [ -64.974604405112416, 18.372159395803578 ], [ -64.974524944632151, 18.372194599813838 ], [ -64.974441459526759, 18.372217901515853 ], [ -64.974353952415584, 18.372225109956048 ], [ -64.974266446614081, 18.372244388342608 ], [ -64.974182961508745, 18.372267522406446 ], [ -64.974099311384521, 18.372298703101251 ], [ -64.974052875618668, 18.372369949312429 ], [ -64.9740232023575, 18.372429460853596 ], [ -64.973969391822948, 18.372393251014444 ], [ -64.97395296328483, 18.372373134437169 ], [ -64.973913065406578, 18.372322842993981 ], [ -64.973871323508718, 18.372264504919883 ], [ -64.973866797278788, 18.372246567638456 ], [ -64.973866964916965, 18.372237682816831 ], [ -64.973829749248978, 18.372192588156111 ], [ -64.973815835283062, 18.372174650874683 ], [ -64.97376034705735, 18.372107260340783 ], [ -64.973718772797667, 18.372026458755386 ], [ -64.973649035329743, 18.371976670226616 ], [ -64.973569742487655, 18.3719402927494 ], [ -64.973485755777517, 18.371908441502001 ], [ -64.973415515395175, 18.371898886127781 ], [ -64.973396907561153, 18.371885475076283 ], [ -64.97335550093959, 18.371809032082638 ], [ -64.973350973400045, 18.371795621031083 ], [ -64.973328008284, 18.37172839813536 ], [ -64.97329598939848, 18.371647764188083 ], [ -64.973226084292435, 18.371597975659313 ], [ -64.973137236076127, 18.371592946515023 ], [ -64.973053249365989, 18.37155640139963 ], [ -64.972969261346179, 18.37152455015223 ], [ -64.972880414439487, 18.371510468548138 ], [ -64.972796427729349, 18.371482975892548 ], [ -64.972702885644992, 18.371473420518328 ], [ -64.972614037428684, 18.371454812684362 ], [ -64.972534744586596, 18.37141843520709 ], [ -64.972460313250679, 18.37137317290825 ], [ -64.972376158902364, 18.371345681562275 ], [ -64.972287310686056, 18.37133159864851 ], [ -64.972198630107869, 18.371312990814545 ], [ -64.972109446615264, 18.371330257543377 ], [ -64.972043900100971, 18.371338639450585 ], [ -64.972020598398956, 18.371329586990782 ], [ -64.971941305556811, 18.37128868459331 ], [ -64.971866706582773, 18.37124342098474 ], [ -64.971796969114848, 18.371193800094147 ], [ -64.971722370140753, 18.37114853779525 ], [ -64.971643244936786, 18.371107634088105 ], [ -64.971563952094698, 18.371066898019137 ], [ -64.971540650392683, 18.37104879309959 ], [ -64.971483653423718, 18.371035884962509 ], [ -64.97139480520741, 18.371017277128487 ], [ -64.971305956991046, 18.371007721754324 ], [ -64.971217108774738, 18.370997998741927 ], [ -64.971090709614145, 18.370992635631012 ], [ -64.971006722904008, 18.370965141665749 ], [ -64.97092273619387, 18.370928765498149 ], [ -64.97083891712191, 18.370883335561132 ], [ -64.970759624279765, 18.370842599492164 ], [ -64.970680331437677, 18.370806220705219 ], [ -64.970601038595532, 18.370765316998074 ], [ -64.970526607259615, 18.370720054699177 ], [ -64.970442620549477, 18.370688203451834 ], [ -64.970363327707332, 18.370651825974619 ], [ -64.970279340997195, 18.370615448497347 ], [ -64.970190660419007, 18.3705879558417 ], [ -64.970111367576919, 18.370551578364484 ], [ -64.970032074734831, 18.370515200887212 ], [ -64.969948088024694, 18.370478823409996 ], [ -64.969864102624172, 18.370446804524477 ], [ -64.969784808472411, 18.370406068455509 ], [ -64.969719764872536, 18.370342868875184 ], [ -64.969683052119024, 18.370266593519659 ], [ -64.969650865595327, 18.370185959572439 ], [ -64.969623540577857, 18.370105325625161 ], [ -64.969614655756232, 18.370042628959311 ], [ -64.969572075667656, 18.369967191794501 ], [ -64.969551288537843, 18.369885553328061 ], [ -64.969530669046094, 18.369803913551891 ], [ -64.969510049554401, 18.369722272466106 ], [ -64.969482390570306, 18.369640632689993 ], [ -64.969397229083484, 18.369606100542001 ], [ -64.969304860466139, 18.369612135515183 ], [ -64.969219701598661, 18.369584307583295 ], [ -64.969127500619436, 18.369563183867456 ], [ -64.969042340442286, 18.369528650409791 ], [ -64.968957515541433, 18.369487243788228 ], [ -64.968865145614416, 18.369466121382061 ], [ -64.968780154385115, 18.369438462397966 ], [ -64.968694992898293, 18.369410634466078 ], [ -64.968610000359263, 18.369369226534843 ], [ -64.968539258372175, 18.369321114387503 ], [ -64.968461472963668, 18.369273003549893 ], [ -64.9683908986147, 18.369224891402553 ], [ -64.968392908962755, 18.369201420752688 ], [ -64.968391904443592, 18.36916420639443 ], [ -64.96837916263496, 18.369122129220273 ], [ -64.96836508234054, 18.369075356868393 ], [ -64.968334738526835, 18.36900847055864 ], [ -64.968312611601448, 18.368935715604152 ], [ -64.968305401851637, 18.368839491309473 ], [ -64.968304397332417, 18.3687590236907 ], [ -64.96831663360723, 18.368652239502637 ], [ -64.968304397332417, 18.3685793156003 ], [ -64.968267684578905, 18.368503209192625 ], [ -64.968219572431565, 18.368431626395477 ], [ -64.968189397565652, 18.368369432644045 ], [ -64.968156203903447, 18.368262313179684 ], [ -64.968125693761237, 18.368217218518964 ], [ -64.968037348459347, 18.368128370302657 ], [ -64.967979848575965, 18.368025774448824 ], [ -64.967980351490382, 18.367966933460309 ], [ -64.968003485554277, 18.367908261419586 ], [ -64.968042880518112, 18.367854280627512 ], [ -64.968100212763375, 18.367789741251727 ], [ -64.968173639580073, 18.367718996645294 ], [ -64.968206495346635, 18.367679100076714 ], [ -64.968254104579557, 18.367612883009826 ], [ -64.96832786536288, 18.367511294294559 ], [ -64.968405146547298, 18.367389421363896 ], [ -64.968481589540943, 18.367279786017718 ], [ -64.968588542676855, 18.367173503434401 ], [ -64.96867672165024, 18.367100413203616 ], [ -64.968771603530058, 18.367034531413026 ], [ -64.9688597825035, 18.366964291030683 ], [ -64.968989534426953, 18.366894385924638 ], [ -64.969108220923204, 18.366820122226841 ], [ -64.969200924816846, 18.366765807468198 ], [ -64.969327491615559, 18.366669918449816 ], [ -64.969514911060571, 18.366538154868636 ], [ -64.969636448714994, 18.366501442115123 ], [ -64.969773073802344, 18.366480822623373 ], [ -64.969893437989697, 18.36650496251616 ], [ -64.970034086392559, 18.366533461000643 ], [ -64.970159815000557, 18.36655173355831 ], [ -64.970251177789009, 18.3665641374713 ], [ -64.970314881593424, 18.366565981490908 ], [ -64.970396687697985, 18.366555086321171 ], [ -64.970493917821557, 18.366532622809871 ], [ -64.970566840414165, 18.366508650555318 ], [ -64.970659711945927, 18.366467411571875 ], [ -64.970751912925152, 18.366404379629728 ], [ -64.970878647361985, 18.366308490611345 ], [ -64.971087356851285, 18.36615661045289 ], [ -64.971248960022081, 18.36605368063249 ], [ -64.971314171260133, 18.365857376365852 ], [ -64.97146236337943, 18.365711028266162 ], [ -64.971596641532756, 18.365599045985959 ], [ -64.971723375969646, 18.365488740087187 ], [ -64.971863689096153, 18.365391342325552 ], [ -64.971935438221806, 18.365331160231847 ], [ -64.971970642232009, 18.365283718637102 ], [ -64.972035015279346, 18.365217501570214 ], [ -64.972111793549288, 18.365161678068262 ], [ -64.972236181052097, 18.365088755475597 ], [ -64.972313126960216, 18.365023041323184 ], [ -64.972395940203342, 18.364941904461489 ], [ -64.972465845309387, 18.364874011013171 ], [ -64.972516136752631, 18.364811481985441 ], [ -64.972524015745364, 18.364739565221669 ], [ -64.972531056547439, 18.364683406443419 ], [ -64.972512113437119, 18.364604951792046 ], [ -64.972458636869192, 18.364586846872498 ], [ -64.972367776995156, 18.364578464965291 ], [ -64.972249592103651, 18.364606292897179 ], [ -64.972159067505856, 18.364640826354844 ], [ -64.972070722203966, 18.364690950159911 ], [ -64.972004505137136, 18.364715928243356 ], [ -64.971832508401349, 18.364748785319591 ], [ -64.971728740390233, 18.364790024303034 ], [ -64.971620781425486, 18.364894630504864 ], [ -64.971545679536973, 18.364993872286107 ], [ -64.971496729198918, 18.365047013577794 ], [ -64.97144945524235, 18.365087246732344 ], [ -64.971399163799106, 18.365127312248717 ], [ -64.971345687231178, 18.365180453540404 ], [ -64.971296569255003, 18.365242312015539 ], [ -64.971247618916948, 18.365304170490674 ], [ -64.971210906163435, 18.365353120828729 ], [ -64.971134295531613, 18.365449512761529 ], [ -64.9710591936431, 18.365544395951019 ], [ -64.970977889143285, 18.365665263052847 ], [ -64.970934806140235, 18.365738688559929 ], [ -64.970908654589778, 18.365786297792795 ], [ -64.970847466667237, 18.365853855964815 ], [ -64.970809412808535, 18.365884030830784 ], [ -64.970731796347877, 18.36592828730079 ], [ -64.970660214860402, 18.365960976738847 ], [ -64.970611432160467, 18.36598947522333 ], [ -64.970571701920335, 18.36603557440327 ], [ -64.970507664149352, 18.366088549366452 ], [ -64.97044396165461, 18.366098272378792 ], [ -64.970345390425962, 18.366094584339635 ], [ -64.970224188047837, 18.366097937102495 ], [ -64.970089240651589, 18.36611134815405 ], [ -64.969933000591709, 18.366117383127232 ], [ -64.969770894506439, 18.366128950159123 ], [ -64.969677520060259, 18.366129955988015 ], [ -64.969530166131676, 18.36616935095185 ], [ -64.969353810804193, 18.366266747403813 ], [ -64.969087267464886, 18.366390298025635 ], [ -64.968938235845201, 18.366458525440578 ], [ -64.968812005632458, 18.366519882310968 ], [ -64.968652412809718, 18.366564809333568 ], [ -64.968507742401073, 18.366666564377283 ], [ -64.968349324355017, 18.366798496906256 ], [ -64.96807204955519, 18.366961273544121 ], [ -64.967861832632252, 18.367094544558938 ], [ -64.967790586421074, 18.367148525350956 ], [ -64.967731073570292, 18.367210885430836 ], [ -64.967676926449769, 18.367276433254801 ], [ -64.967622611691127, 18.367352038057788 ], [ -64.967592773411127, 18.367416243466948 ], [ -64.967564610202942, 18.367465695409749 ], [ -64.967537954428394, 18.367508275498324 ], [ -64.96748598660372, 18.367560915185209 ], [ -64.967421613556439, 18.367591760603716 ], [ -64.967359084528709, 18.367622772350671 ], [ -64.967286329574222, 18.367628808633526 ], [ -64.967151717454271, 18.367588072564502 ], [ -64.967072255664334, 18.367562759204759 ], [ -64.967023977188546, 18.367555718402741 ], [ -64.966972009363928, 18.367556890560081 ], [ -64.966928757413086, 18.367550017396184 ], [ -64.966894391593542, 18.367531578510011 ], [ -64.966828846388921, 18.367494698118321 ], [ -64.966779056550479, 18.367456308983321 ], [ -64.966741171639626, 18.367427978137016 ], [ -64.966661877487809, 18.367404173520526 ], [ -64.966568670679749, 18.367375338450131 ], [ -64.966492564272073, 18.367368298957729 ], [ -64.966430201572848, 18.367367796043311 ], [ -64.966367841492911, 18.367378860160784 ], [ -64.96629843930134, 18.367398138547344 ], [ -64.966223840327245, 18.367422278440131 ], [ -64.966189139231403, 18.367437030596761 ], [ -64.966093919455943, 18.367436192406046 ], [ -64.9660126162658, 18.367430660347281 ], [ -64.96596232351294, 18.367445077227671 ], [ -64.96590331619592, 18.367456308983321 ], [ -64.965873979520723, 18.367451112200854 ], [ -64.965836260938318, 18.367412723065911 ], [ -64.965773061357993, 18.367309793245454 ], [ -64.965731990012728, 18.367258328335254 ], [ -64.965728804887988, 18.367225303620899 ], [ -64.965680525102528, 18.367196805136416 ], [ -64.965623694462067, 18.367179872374209 ], [ -64.965539038509007, 18.367162606955048 ], [ -64.96548556194108, 18.367139137614913 ], [ -64.965423535827767, 18.367100579532121 ], [ -64.965385817245362, 18.367057330200623 ], [ -64.965356648208342, 18.367032352117178 ], [ -64.965275511346647, 18.367007037447763 ], [ -64.9651806281571, 18.366976528615226 ], [ -64.965090774111957, 18.366954400380223 ], [ -64.965056240654292, 18.366942498071978 ], [ -64.965030424380075, 18.366927410638993 ], [ -64.964990694139999, 18.366923890238013 ], [ -64.964935373552464, 18.366921710942108 ], [ -64.964892122911294, 18.366914836468538 ], [ -64.964840321415124, 18.366902766522173 ], [ -64.964823055995964, 18.366892877181328 ], [ -64.964792881130052, 18.366775195204241 ], [ -64.964781146459984, 18.366733788582678 ], [ -64.964760694606412, 18.366703948993063 ], [ -64.964731525569334, 18.366675618146701 ], [ -64.964686766184911, 18.366645610918965 ], [ -64.964661452825169, 18.366627338361241 ], [ -64.964618369822176, 18.36658710520669 ], [ -64.964562713958344, 18.36653413155318 ], [ -64.964530024520286, 18.366511834370385 ], [ -64.964487612069831, 18.366489372168758 ], [ -64.964448552382294, 18.366475625840962 ], [ -64.964406139931839, 18.366450646447788 ], [ -64.964381497124691, 18.366433381028628 ], [ -64.964330199852611, 18.366406726563753 ], [ -64.964286949211441, 18.36636230245557 ], [ -64.964249230629036, 18.366313687393813 ], [ -64.964206985816759, 18.366258199168158 ], [ -64.964182343009611, 18.36622064822393 ], [ -64.964135069052986, 18.36613381035562 ], [ -64.964074719321161, 18.366036581541778 ], [ -64.964048400132526, 18.365979584572813 ], [ -64.964031971594409, 18.365936166293523 ], [ -64.963976818645051, 18.36584312712364 ], [ -64.963922336248288, 18.365768192873247 ], [ -64.963865171641146, 18.365686217820837 ], [ -64.963821585723736, 18.365596866690112 ], [ -64.963804989547441, 18.365559651022124 ], [ -64.963825609039191, 18.365468791148089 ], [ -64.963938764786349, 18.365266284270092 ], [ -64.963980506684209, 18.365111554263194 ], [ -64.963986876933689, 18.365061933372601 ], [ -64.964054770382006, 18.364850206396738 ], [ -64.964116293580844, 18.364764208028816 ], [ -64.964151329952983, 18.364670498306339 ], [ -64.964166920300329, 18.364591037826074 ], [ -64.964185192858054, 18.364444186811966 ], [ -64.964202962501304, 18.364370761304883 ], [ -64.964198771547728, 18.364258443748383 ], [ -64.964195251146691, 18.36420396135162 ], [ -64.964214697171371, 18.364057110337455 ], [ -64.964215200085846, 18.36399039035615 ], [ -64.964269347206312, 18.363856112202768 ], [ -64.964309077446444, 18.36365142602898 ], [ -64.964309747999039, 18.363563751279685 ], [ -64.964319471011379, 18.36344104015825 ], [ -64.964315950610398, 18.363400304089282 ], [ -64.964294325289814, 18.363363088421295 ], [ -64.964247889523904, 18.36332553747701 ], [ -64.964202794863183, 18.363302907637262 ], [ -64.964187372153901, 18.363299218288432 ], [ -64.964146971361231, 18.363309108938893 ], [ -64.964034150890313, 18.36334615696876 ], [ -64.963951002370891, 18.363364597164605 ], [ -64.963895346507059, 18.363387228314025 ], [ -64.963851090037053, 18.363421426495393 ], [ -64.963817059493806, 18.363458306887082 ], [ -64.963793590153671, 18.363479094016952 ], [ -64.963763750564055, 18.363494852002475 ], [ -64.963726031981651, 18.363508263053973 ], [ -64.963679260939443, 18.363525194506565 ], [ -64.963620922865346, 18.363544472893125 ], [ -64.963538947812935, 18.363578503436315 ], [ -64.963503911440853, 18.363588058810535 ], [ -64.963454793464621, 18.363596440717743 ], [ -64.963366615800908, 18.363601972776507 ], [ -64.963300566372141, 18.36360633136826 ], [ -64.963238372620765, 18.363615719104303 ], [ -64.963198139466158, 18.36362896251768 ], [ -64.963138460286928, 18.363649582009373 ], [ -64.963069561009718, 18.363675063007292 ], [ -64.963006026153153, 18.36369802943301 ], [ -64.962951376118212, 18.363713619780413 ], [ -64.962870909809112, 18.363737759673143 ], [ -64.96280737495249, 18.36376072609886 ], [ -64.96276060391034, 18.3637863747349 ], [ -64.962696733777477, 18.363825434422438 ], [ -64.96264325720955, 18.36386834978731 ], [ -64.9626095619426, 18.363890310384193 ], [ -64.962553570802527, 18.363910929875885 ], [ -64.962477127808825, 18.36393741670264 ], [ -64.962416107524405, 18.36394697207686 ], [ -64.962346034780239, 18.363964909358231 ], [ -64.962269591786537, 18.363985361211803 ], [ -64.962202201252694, 18.363992234375701 ], [ -64.962136151823927, 18.363990557994271 ], [ -64.962080495960151, 18.363985193573683 ], [ -64.962035233661254, 18.363976141113881 ], [ -64.961951414589237, 18.363943284037646 ], [ -64.961912522539819, 18.363941775294393 ], [ -64.961869942451244, 18.36393892544595 ], [ -64.961838929394617, 18.363928867157313 ], [ -64.961819483369936, 18.363920149973808 ], [ -64.961797858049351, 18.363890310384193 ], [ -64.961768689012274, 18.363862314814128 ], [ -64.961739855251551, 18.363846556828605 ], [ -64.961693419485641, 18.36382644025133 ], [ -64.961648324824921, 18.363804982568865 ], [ -64.961599206848689, 18.363791068602893 ], [ -64.961556626760114, 18.363790733326653 ], [ -64.961496947580883, 18.363791571517368 ], [ -64.961454199854131, 18.36379123624107 ], [ -64.961423354435624, 18.363782351419445 ], [ -64.961364010532691, 18.363745973942173 ], [ -64.961312545622491, 18.36371093757009 ], [ -64.961268959705023, 18.363668692757813 ], [ -64.961220177005146, 18.363607672473393 ], [ -64.961183128975279, 18.36355671047761 ], [ -64.961160162549561, 18.363519494809623 ], [ -64.961111379849683, 18.363472053214878 ], [ -64.961067627603768, 18.363438357947928 ], [ -64.961032926507926, 18.363409691825325 ], [ -64.961001912141626, 18.363387228314025 ], [ -64.960968553460646, 18.363359735658435 ], [ -64.960914741616421, 18.36330122994616 ], [ -64.96084500283888, 18.363266193574077 ], [ -64.960801250592965, 18.363241047852455 ], [ -64.96077928868641, 18.363239706747322 ], [ -64.96076487180602, 18.36325311779882 ], [ -64.960728159052508, 18.363318329036815 ], [ -64.960691111022641, 18.363419414837665 ], [ -64.960678873438155, 18.363478758740655 ], [ -64.960694799061855, 18.36358889700125 ], [ -64.96070703664634, 18.363677912855735 ], [ -64.960715418553548, 18.363752176553533 ], [ -64.960723968098876, 18.36382023763997 ], [ -64.960754310602965, 18.36389081329861 ], [ -64.96076638054933, 18.364008327637521 ], [ -64.960782641449271, 18.364072868322978 ], [ -64.960828575610435, 18.364147299658896 ], [ -64.960911890458306, 18.364233298026818 ], [ -64.961018843594161, 18.364304544237996 ], [ -64.961180782041311, 18.364387692757418 ], [ -64.961451852920106, 18.364492131321128 ], [ -64.961683696473301, 18.364597743351851 ], [ -64.961942529767612, 18.364722969045431 ], [ -64.962098265603402, 18.364793879980311 ], [ -64.962301107757639, 18.364930169791421 ], [ -64.962490203584082, 18.365071153470524 ], [ -64.962643760123967, 18.365200570117679 ], [ -64.96278474380307, 18.365325795811259 ], [ -64.962991106358345, 18.365509862493354 ], [ -64.96309303034991, 18.365564847804592 ], [ -64.963144998174528, 18.365605080959142 ], [ -64.963256645178433, 18.365653025468305 ], [ -64.9633516960061, 18.365669956920897 ], [ -64.963470216173903, 18.36572443931766 ], [ -64.963544312233523, 18.365796356081432 ], [ -64.963616564273593, 18.365886042488512 ], [ -64.963712118015678, 18.366052339527357 ], [ -64.963800798593866, 18.366215283803285 ], [ -64.963865842193741, 18.366347215022643 ], [ -64.963927868306996, 18.366454671072916 ], [ -64.963984865275961, 18.366549218986165 ], [ -64.964038341843889, 18.366653489911698 ], [ -64.964066505052074, 18.366736469483328 ], [ -64.964089471477848, 18.366830683429953 ], [ -64.964103553081941, 18.366988095647116 ], [ -64.964116125942724, 18.367109968577836 ], [ -64.964130542823114, 18.367227482916803 ], [ -64.964148480104541, 18.367504421130661 ], [ -64.964241183998126, 18.367800470092959 ], [ -64.964305892321704, 18.367974478486417 ], [ -64.964431453291581, 18.368398938267035 ], [ -64.964518289850162, 18.368586188764198 ], [ -64.964662458654004, 18.368819205784405 ], [ -64.964729178635309, 18.368957676200978 ], [ -64.964762370987842, 18.36905524160079 ], [ -64.964797407359924, 18.369146435441451 ], [ -64.964839149257784, 18.369214831804243 ], [ -64.964903353357272, 18.369294124646331 ], [ -64.964898660798895, 18.369521443279268 ], [ -64.964933529532857, 18.369603081745709 ], [ -64.964939899782337, 18.369691428357271 ], [ -64.964932020789547, 18.369779604711368 ], [ -64.964938391039027, 18.369867951322931 ], [ -64.964959010530777, 18.369949589789371 ], [ -64.964958339978182, 18.370037767453141 ], [ -64.964943420183374, 18.370125946426526 ], [ -64.96490704139643, 18.370207081978549 ], [ -64.964821547252654, 18.370240441969202 ], [ -64.964729178635309, 18.370232899562382 ], [ -64.964636642379844, 18.370232227700171 ], [ -64.964544273762499, 18.370231558457249 ], [ -64.964437655902941, 18.370230718956861 ], [ -64.964345287285596, 18.370230048404267 ], [ -64.964245710228056, 18.370229211523224 ], [ -64.964153173972534, 18.370228539661014 ], [ -64.964060805355189, 18.370234574634196 ], [ -64.963975142263621, 18.370274641460242 ], [ -64.963910601578164, 18.370335326468364 ], [ -64.963839187728809, 18.370382263839019 ], [ -64.963795769449519, 18.370456527536817 ], [ -64.963823597381463, 18.370538334951107 ], [ -64.963829967630943, 18.37062651261482 ], [ -64.963793757791791, 18.370707817114692 ], [ -64.963778670358863, 18.370795994778405 ], [ -64.96377095900425, 18.370884172442175 ], [ -64.963770120813535, 18.370972350105944 ], [ -64.963769450260941, 18.371060695407834 ], [ -64.963747322025938, 18.371141833579202 ], [ -64.963718320627038, 18.371223136769345 ], [ -64.963667861545673, 18.371290694941365 ], [ -64.963596447696318, 18.371337633621692 ], [ -64.963517825406768, 18.371377699138122 ], [ -64.963432329953321, 18.3713974804391 ], [ -64.963339961335976, 18.371403515412283 ], [ -64.963262009599021, 18.37136227642884 ], [ -64.963198642380632, 18.371300585591882 ], [ -64.963142315964205, 18.371232356867267 ], [ -64.963071572667445, 18.37117753919415 ], [ -64.963000997008862, 18.371122553882969 ], [ -64.96293746215224, 18.371061030684075 ], [ -64.962866886493657, 18.371012918536792 ], [ -64.96281056007723, 18.370944689812177 ], [ -64.962761274462935, 18.370876293449385 ], [ -64.962712156486702, 18.370808064724827 ], [ -64.962664714891957, 18.370696250082744 ], [ -64.962644598314682, 18.370642270600399 ], [ -64.96261442344877, 18.370563649620522 ], [ -64.962584416220977, 18.370485193659476 ], [ -64.962580057629225, 18.370402046449726 ], [ -64.96258072818182, 18.370318728982454 ], [ -64.962560946880842, 18.370235412824911 ], [ -64.962515349305647, 18.370161652041531 ], [ -64.962474948512977, 18.370088058896329 ], [ -64.96243454772025, 18.370014299422621 ], [ -64.962394314565699, 18.369940538639298 ], [ -64.962389788335827, 18.369857388810203 ], [ -64.962390458888365, 18.369774241600396 ], [ -64.962388950145112, 18.369743562510394 ], [ -64.96242163958317, 18.369680027653828 ], [ -64.962462040375897, 18.369634765354931 ], [ -64.962527419252012, 18.369567542459208 ], [ -64.962634204749747, 18.369484227611281 ], [ -64.96270276875066, 18.36944332259452 ], [ -64.96273327889287, 18.369421698583608 ], [ -64.9627639566732, 18.369388841507373 ], [ -64.962798322492745, 18.36930736936938 ], [ -64.962845093534895, 18.369209802659896 ], [ -64.962967469380033, 18.36900059156585 ], [ -64.96307861346952, 18.368794061372455 ], [ -64.963135778076605, 18.368620891169712 ], [ -64.963133766418878, 18.368452079558722 ], [ -64.963075260706603, 18.368392231431642 ], [ -64.962985071385162, 18.368304725630139 ], [ -64.962926900949185, 18.368228616603062 ], [ -64.962823635852487, 18.368086459456947 ], [ -64.962762950844365, 18.368036000375639 ], [ -64.962563964367405, 18.367930389654589 ], [ -64.96241376059038, 18.367891497605171 ], [ -64.962281494094782, 18.367882948059844 ], [ -64.962194154621784, 18.367862831482512 ], [ -64.962086698571454, 18.367825111590491 ], [ -64.961937165347024, 18.367780521153804 ], [ -64.961871786470851, 18.367751184478607 ], [ -64.961806575232856, 18.367705585593797 ], [ -64.961743040376234, 18.367647247519699 ], [ -64.961637763621809, 18.367553202520924 ], [ -64.961491247883998, 18.367419931506106 ], [ -64.961435592020166, 18.367373663378316 ], [ -64.961378427413081, 18.367319013343376 ], [ -64.961323945016261, 18.367260507631158 ], [ -64.961272983020478, 18.367211222016806 ], [ -64.961043151125068, 18.366992454238869 ], [ -64.960862438515505, 18.366869909445938 ], [ -64.960799069987388, 18.366815931273266 ], [ -64.960720616645688, 18.366732447477546 ], [ -64.960617854463408, 18.366572353050003 ], [ -64.960434793610148, 18.366224671539385 ], [ -64.960187862624025, 18.365954774127545 ], [ -64.96000966196732, 18.36577271910312 ], [ -64.959863481505749, 18.36554288720771 ], [ -64.959767258520742, 18.365349432789571 ], [ -64.959667512515409, 18.365210125491899 ], [ -64.959551843505722, 18.365106860395201 ], [ -64.959461317598254, 18.365000745450004 ], [ -64.959346485469609, 18.364780133652516 ], [ -64.959285297547069, 18.364544769698341 ], [ -64.959253781576024, 18.364430608122291 ], [ -64.959286975238172, 18.364310411573058 ], [ -64.959299546789339, 18.364152496441363 ], [ -64.959304912519599, 18.3640980140446 ], [ -64.959308265282459, 18.364024923813815 ], [ -64.959334750799542, 18.363916797210948 ], [ -64.959355202653114, 18.363852088887313 ], [ -64.959381355513244, 18.36377363423594 ], [ -64.959410524550321, 18.36368193617119 ], [ -64.959437680619999, 18.363470879747865 ], [ -64.959475400512019, 18.363381863893437 ], [ -64.959527031750724, 18.363309108938893 ], [ -64.959569948425269, 18.363263343725635 ], [ -64.959616550519627, 18.363186733093812 ], [ -64.959641194636447, 18.363151361445432 ], [ -64.959667512515409, 18.36313912386089 ], [ -64.959694000651837, 18.363122527684652 ], [ -64.959727694609114, 18.363103416936212 ], [ -64.95975133158737, 18.36305061092088 ], [ -64.959791564741977, 18.362953548435485 ], [ -64.959823918903737, 18.362912141813922 ], [ -64.959879911353539, 18.362845757108914 ], [ -64.959926010533422, 18.362734949605397 ], [ -64.959953504498742, 18.362580722512917 ], [ -64.959959202885955, 18.362416938736544 ], [ -64.959956017761215, 18.362270590636854 ], [ -64.959930704401472, 18.362168835593081 ], [ -64.959885609740752, 18.362039586584103 ], [ -64.959870857584065, 18.361931793947804 ], [ -64.959851243921207, 18.361849483619096 ], [ -64.959818723430942, 18.361807406444996 ], [ -64.959790895499054, 18.361747559627588 ], [ -64.959752337416262, 18.361688718639016 ], [ -64.959730713405349, 18.361645300359726 ], [ -64.959726353503925, 18.361609259468423 ], [ -64.959714115919439, 18.361571874852643 ], [ -64.959687796730805, 18.361544717473294 ], [ -64.959652592720602, 18.361528122606728 ], [ -64.959535916572349, 18.361472968347698 ], [ -64.959504903515722, 18.361440615495553 ], [ -64.959482944228512, 18.36141831962243 ], [ -64.959465005637469, 18.361392503348213 ], [ -64.959439861225519, 18.361345898634511 ], [ -64.959389903748956, 18.361262582476968 ], [ -64.959377164559669, 18.361245818662553 ], [ -64.959355705567532, 18.361227378466708 ], [ -64.959259313634732, 18.361134340606498 ], [ -64.959095698806209, 18.361004922649613 ], [ -64.958944824476589, 18.360899144290443 ], [ -64.958913980367811, 18.36084667355135 ], [ -64.958871903193653, 18.360814822304008 ], [ -64.958814403310271, 18.360763691360432 ], [ -64.958746174585656, 18.360697306655425 ], [ -64.958652800139419, 18.360621869490615 ], [ -64.958569482672203, 18.360537882780477 ], [ -64.958550205595316, 18.360483400383657 ], [ -64.958536625595968, 18.360383655687997 ], [ -64.958538303287071, 18.360299670287532 ], [ -64.958525395149991, 18.360236301759414 ], [ -64.958538806201489, 18.360120800387847 ], [ -64.958546851522783, 18.360040332769074 ], [ -64.958511481184019, 18.359927009383739 ], [ -64.958369994590498, 18.359680916588331 ], [ -64.95828114637419, 18.359536915422609 ], [ -64.958206715038273, 18.359403978374417 ], [ -64.958108645414313, 18.359259978518423 ], [ -64.958028849657808, 18.359151684277379 ], [ -64.957952743250075, 18.359101728110488 ], [ -64.957844784285385, 18.359025954359709 ], [ -64.95771201356564, 18.358942807149958 ], [ -64.957643115598103, 18.358896874298523 ], [ -64.957587795010625, 18.358830321955338 ], [ -64.957494252926267, 18.358747507402541 ], [ -64.957489391420097, 18.35871884258961 ], [ -64.957482518256199, 18.358682297474218 ], [ -64.957464413336595, 18.358622785933051 ], [ -64.957443123292308, 18.358564446549281 ], [ -64.957402219585219, 18.358508791995177 ], [ -64.95735209447048, 18.358448106986998 ], [ -64.957298954488465, 18.358360767514 ], [ -64.95726106826794, 18.358320031445032 ], [ -64.957073481184807, 18.358232524333857 ], [ -64.956927133085117, 18.35816630726697 ], [ -64.956914727862454, 18.358165132490285 ], [ -64.956908189974854, 18.358204696401913 ], [ -64.95689762746207, 18.358353725402253 ], [ -64.956938029564469, 18.358465708992128 ], [ -64.956995026533434, 18.358572997404281 ], [ -64.957056214455974, 18.358683972545975 ], [ -64.957132825087797, 18.358805008595596 ], [ -64.95722083511339, 18.358911457507361 ], [ -64.957352263418272, 18.359041881293081 ], [ -64.957488888505623, 18.359141625988741 ], [ -64.957656022425567, 18.359197280542901 ], [ -64.957829695542728, 18.359347819596223 ], [ -64.957880323571885, 18.359465670521104 ], [ -64.957925753508903, 18.359596428273449 ], [ -64.957974199622868, 18.359748977674769 ], [ -64.958002196502548, 18.359953665158287 ], [ -64.958005046351047, 18.360120631440054 ], [ -64.95803203609222, 18.360229597543309 ], [ -64.958077801305535, 18.360325654199812 ], [ -64.958103282303398, 18.360481053449632 ], [ -64.958133457169311, 18.360569232423074 ], [ -64.958183916250675, 18.360644837226005 ], [ -64.958289694609846, 18.36086544771382 ], [ -64.958350548565818, 18.360918756643628 ], [ -64.958507959473366, 18.361068792782532 ], [ -64.958592784374218, 18.361200222397088 ], [ -64.958621284168373, 18.361281022672813 ], [ -64.958635364462793, 18.361346570496778 ], [ -64.958650956119868, 18.361394010781851 ], [ -64.958684148472344, 18.36143592162756 ], [ -64.958849104406056, 18.361552596466083 ], [ -64.958923366794181, 18.361567180984594 ], [ -64.959014563254186, 18.361634571518493 ], [ -64.959095363529912, 18.361728448879148 ], [ -64.959148504821599, 18.361819308753184 ], [ -64.959211536763689, 18.361943528617871 ], [ -64.959253278661549, 18.362010583875474 ], [ -64.959293345487652, 18.362092895513854 ], [ -64.959313125478957, 18.362155758508209 ], [ -64.959325699649469, 18.362232369140031 ], [ -64.959336428490644, 18.362325575948091 ], [ -64.959319663366614, 18.362422806071606 ], [ -64.959305918348434, 18.362496400526481 ], [ -64.959261660568757, 18.362566974875449 ], [ -64.959211201487449, 18.362668229624092 ], [ -64.959210698572974, 18.362723884178195 ], [ -64.959208688224919, 18.362791946574362 ], [ -64.959194940587452, 18.362880793480997 ], [ -64.959200641594009, 18.363006019174577 ], [ -64.959182704312639, 18.363125042256797 ], [ -64.959124867843286, 18.363243730062777 ], [ -64.959070051479841, 18.363367782289345 ], [ -64.958875926509108, 18.363621921715605 ], [ -64.958799651153583, 18.363713452142235 ], [ -64.958735779711049, 18.363829122461595 ], [ -64.958663361342531, 18.363960718404655 ], [ -64.958594125479351, 18.364068006816808 ], [ -64.958452137281085, 18.364185688793896 ], [ -64.95838223217504, 18.364220222251561 ], [ -64.958286846071076, 18.364259617215396 ], [ -64.958140161385415, 18.364293480120466 ], [ -64.958028348053062, 18.364301359113256 ], [ -64.957936649988255, 18.364318122927671 ], [ -64.957846963581233, 18.364329689959618 ], [ -64.957788290230837, 18.364332707446181 ], [ -64.957738836978365, 18.364332372169883 ], [ -64.95764009811154, 18.364336730761636 ], [ -64.957570528281792, 18.364329187045143 ], [ -64.95748285353244, 18.364304041323578 ], [ -64.957402553551788, 18.364275542839096 ], [ -64.957309683329697, 18.364236315513381 ], [ -64.957256708366515, 18.364211505068056 ], [ -64.957202730193842, 18.364135732627005 ], [ -64.95714858307332, 18.364041184713756 ], [ -64.957136176540985, 18.363904727264526 ], [ -64.957167692512087, 18.363781010314256 ], [ -64.957189822056762, 18.363641032464045 ], [ -64.957190827885597, 18.363520835914812 ], [ -64.957178925577409, 18.363432658251043 ], [ -64.957129472324937, 18.363332243002787 ], [ -64.957050850035387, 18.363199473592772 ], [ -64.956980274376747, 18.36312286296095 ], [ -64.956867453905829, 18.36306184267653 ], [ -64.956700151038149, 18.363008533746722 ], [ -64.956578781021847, 18.362987578978732 ], [ -64.956402928608838, 18.362958074665357 ], [ -64.956275691257531, 18.362955057178795 ], [ -64.956118445368759, 18.362871908659372 ], [ -64.955914095780884, 18.362726063474099 ], [ -64.955759701050283, 18.362644758974227 ], [ -64.95543398013649, 18.362478126659084 ], [ -64.955241699185308, 18.362384584574784 ], [ -64.95513659006906, 18.362335969513026 ], [ -64.955092165960878, 18.362306968114069 ], [ -64.95504690366198, 18.362279643096599 ], [ -64.954948332433332, 18.362251982802832 ], [ -64.95484607316547, 18.362220634469907 ], [ -64.954731743951299, 18.362184759907109 ], [ -64.954620935138109, 18.362165984434967 ], [ -64.954542815762977, 18.362167996092694 ], [ -64.954456314480694, 18.362176377999901 ], [ -64.954413063839525, 18.362184927545229 ], [ -64.954373333599392, 18.362199010459051 ], [ -64.954356234508737, 18.362218622812179 ], [ -64.954341985266467, 18.362247288934839 ], [ -64.954324550899514, 18.362300094950172 ], [ -64.954326227280944, 18.362334293131539 ], [ -64.954331591701532, 18.362356756642839 ], [ -64.95435774325199, 18.362381231811867 ], [ -64.954393282538547, 18.362401180751021 ], [ -64.954436533179717, 18.362426661748884 ], [ -64.954509120496027, 18.362454154404531 ], [ -64.954574331734079, 18.362478964849856 ], [ -64.954716488880194, 18.362496566854929 ], [ -64.954913128423073, 18.362566305632527 ], [ -64.955134410773155, 18.362672083991697 ], [ -64.955293164095508, 18.362753388491569 ], [ -64.955622740686636, 18.362960087632757 ], [ -64.955897499604646, 18.3632145610257 ], [ -64.956108891304211, 18.36349250506845 ], [ -64.956279044020391, 18.363710099379375 ], [ -64.956411813430464, 18.363883269582118 ], [ -64.956503176218916, 18.363996090053035 ], [ -64.956539721334309, 18.36414461744863 ], [ -64.956557993892034, 18.364453071633591 ], [ -64.956526142644634, 18.364753143911344 ], [ -64.956524130986907, 18.364989513694354 ], [ -64.956569225647684, 18.365101998888974 ], [ -64.956627228445484, 18.365194535144497 ], [ -64.956674670040229, 18.365235438851641 ], [ -64.956742731126724, 18.365263266783529 ], [ -64.956832082257449, 18.365272151605154 ], [ -64.956934509163432, 18.365315402246324 ], [ -64.957059399580714, 18.365372399215289 ], [ -64.957117737654812, 18.365416152770877 ], [ -64.957178590301112, 18.365480358180037 ], [ -64.957242125157677, 18.365549592733487 ], [ -64.95731890342762, 18.365626706279727 ], [ -64.957374391653275, 18.365683200334274 ], [ -64.957432225503283, 18.36572125419292 ], [ -64.957725424617138, 18.36583357174942 ], [ -64.957807736255518, 18.365863914253453 ], [ -64.957919215621303, 18.365874307818387 ], [ -64.958082158587615, 18.365884701383322 ], [ -64.958352057309128, 18.365879169324558 ], [ -64.958530759570579, 18.365885707212215 ], [ -64.958632851200321, 18.365907164894622 ], [ -64.958679957518768, 18.365922419965727 ], [ -64.958729912375986, 18.365948739154362 ], [ -64.958804343711961, 18.36598796648002 ], [ -64.958872069522101, 18.366030043654177 ], [ -64.958947003772494, 18.366088717004573 ], [ -64.958990254413663, 18.366128782521002 ], [ -64.959031828673346, 18.366183264917822 ], [ -64.959092850267439, 18.36637504295453 ], [ -64.959129561711279, 18.366533293362465 ], [ -64.959156383814332, 18.366718533511573 ], [ -64.959211370435241, 18.366973511128606 ], [ -64.959281944784209, 18.367185070466348 ], [ -64.959337600647984, 18.367322532434741 ], [ -64.959420750477079, 18.367458991193644 ], [ -64.959609509717552, 18.367664180281906 ], [ -64.959734401444507, 18.367848917516596 ], [ -64.959832468449065, 18.368006497371937 ], [ -64.959944618367444, 18.368255272377667 ], [ -64.960022068499654, 18.368482254424634 ], [ -64.960066995522197, 18.36853472516367 ], [ -64.960151820423107, 18.368604127355297 ], [ -64.960225579896758, 18.368701523807317 ], [ -64.960275200787407, 18.368834294527005 ], [ -64.96029565264098, 18.368946610773833 ], [ -64.960353152524362, 18.369077034559552 ], [ -64.96043881561593, 18.36919119482593 ], [ -64.960502016505927, 18.36932614353185 ], [ -64.960569741006395, 18.369464109724333 ], [ -64.96063947847432, 18.369536361764403 ], [ -64.960679208714453, 18.369595036424471 ], [ -64.9606458487238, 18.369675836700196 ], [ -64.960612488733148, 18.369756805923771 ], [ -64.960586001906393, 18.369800225512734 ], [ -64.96054375840373, 18.369808270833971 ], [ -64.960475025455025, 18.369862082678196 ], [ -64.960410149493327, 18.369919582561579 ], [ -64.960364049003715, 18.369991666963529 ], [ -64.96032934790793, 18.370067439404579 ], [ -64.960328509717215, 18.370150587924059 ], [ -64.960327840474292, 18.370233905391274 ], [ -64.96031191354092, 18.370317052601024 ], [ -64.960292299878063, 18.370400202430119 ], [ -64.96028777364819, 18.370487037679027 ], [ -64.96027184802449, 18.370573875547279 ], [ -64.960248378684355, 18.37065702275703 ], [ -64.960232620698832, 18.3707292747971 ], [ -64.960209655582787, 18.370765149359954 ], [ -64.960230273764807, 18.370846789136067 ], [ -64.960222394772018, 18.37093496679978 ], [ -64.960193393373117, 18.371016272609324 ], [ -64.9601499764035, 18.37109053499745 ], [ -64.960120973694927, 18.371171839497265 ], [ -64.96009180465785, 18.37125297635896 ], [ -64.960020224480047, 18.371300082677465 ], [ -64.959942440381212, 18.371258676055845 ], [ -64.959900361897439, 18.371176868641612 ], [ -64.959858452361402, 18.37110193439122 ], [ -64.95982358362744, 18.371020126976987 ], [ -64.959802965445419, 18.37093848851049 ], [ -64.959775137513532, 18.370856847424704 ], [ -64.959747475910092, 18.370775207648592 ], [ -64.959712608485802, 18.370693401543974 ], [ -64.959656280759759, 18.370625171509687 ], [ -64.959571120582609, 18.370597343577799 ], [ -64.959478753274936, 18.370589799861307 ], [ -64.959386552295712, 18.37056867745514 ], [ -64.959301390808889, 18.370547722687149 ], [ -64.959216399579589, 18.370513190539157 ], [ -64.959145656282772, 18.370458203918247 ], [ -64.959103745437119, 18.370376396504014 ], [ -64.959061669572634, 18.370301463563294 ], [ -64.959012551596459, 18.370233233529007 ], [ -64.958956225180088, 18.370164838475944 ], [ -64.958906939565736, 18.370096608441656 ], [ -64.958843572347291, 18.370035086552491 ], [ -64.958794285423323, 18.369966688880083 ], [ -64.958766626439228, 18.369885050413586 ], [ -64.958738798507284, 18.369803410637473 ], [ -64.958675431288896, 18.369741887438636 ], [ -64.958669059729743, 18.369646667663176 ], [ -64.958605526182851, 18.369585144464338 ], [ -64.958478121193366, 18.369425386622765 ], [ -64.958423303520306, 18.369340226445615 ], [ -64.958318362042178, 18.369297143442623 ], [ -64.958185423684313, 18.369280210680358 ], [ -64.958008734390205, 18.36921533471866 ], [ -64.957892896432668, 18.369145598560408 ], [ -64.95774939818142, 18.369070495362223 ], [ -64.957643618512577, 18.369127827607485 ], [ -64.957554098434002, 18.369211815627295 ], [ -64.957459550520753, 18.369253388577363 ], [ -64.957343712563272, 18.369189015530026 ], [ -64.957178421353262, 18.369076699283255 ], [ -64.957034924411687, 18.36898550282325 ], [ -64.95692495247954, 18.36889464425883 ], [ -64.956797884076082, 18.368840832414605 ], [ -64.956709537464519, 18.368797749411613 ], [ -64.956653882910359, 18.368818536541482 ], [ -64.956509546468396, 18.368849214321813 ], [ -64.956298992959546, 18.36883161231674 ], [ -64.956132528282524, 18.368851561255838 ], [ -64.955982156867378, 18.368940409472145 ], [ -64.955853746049058, 18.369039986529685 ], [ -64.955637660481443, 18.369100671537808 ], [ -64.955616035160858, 18.369127661279038 ], [ -64.955566078993968, 18.369147610218135 ], [ -64.955473710376623, 18.369146938355925 ], [ -64.955388550199473, 18.36912581725943 ], [ -64.955296013944007, 18.36913872539651 ], [ -64.955217391654458, 18.369178789603268 ], [ -64.955160059409195, 18.369246347775288 ], [ -64.955074396317627, 18.369272834602043 ], [ -64.955003820658987, 18.369224722454703 ], [ -64.954997450409508, 18.369136378462485 ], [ -64.95496962247762, 18.3690547373767 ], [ -64.954941962183852, 18.368973097600588 ], [ -64.954899885009695, 18.368898163350195 ], [ -64.9548505993954, 18.368829768297132 ], [ -64.954801481419167, 18.368761539572517 ], [ -64.954752363442992, 18.368686436374333 ], [ -64.954681620146232, 18.368638493174842 ], [ -64.954603836047397, 18.368597086553279 ], [ -64.954511467430052, 18.36858283731101 ], [ -64.954419098812707, 18.368582165448743 ], [ -64.954326562557242, 18.368588200421925 ], [ -64.954234026301719, 18.368594235395108 ], [ -64.954141490046254, 18.368607143532245 ], [ -64.954049121428909, 18.368613178505427 ], [ -64.953984580743452, 18.36867386351355 ], [ -64.953934289300264, 18.368741255357122 ], [ -64.953862707812789, 18.36878819272772 ], [ -64.953818451342784, 18.368821049803955 ], [ -64.953756425229471, 18.368864635721422 ], [ -64.953702110470829, 18.368930351183508 ], [ -64.953639916719396, 18.368988689257662 ], [ -64.953555091818544, 18.369017355380265 ], [ -64.953462723201199, 18.369031269346237 ], [ -64.953377730662169, 18.369060101797288 ], [ -64.953285362044824, 18.369059432554423 ], [ -64.953270106973719, 18.369059263606573 ], [ -64.953193161065656, 18.369044008535468 ], [ -64.953101127724608, 18.369021209747928 ], [ -64.953016638099996, 18.36899857859845 ], [ -64.95293214847544, 18.368975779810853 ], [ -64.952840115134393, 18.368945772583118 ], [ -64.952755625509781, 18.36892297379552 ], [ -64.952671135885225, 18.368892966567728 ], [ -64.952578934906001, 18.368877545168175 ], [ -64.952486567598385, 18.368891625462595 ], [ -64.952401573749682, 18.368920291585198 ], [ -64.95230920644201, 18.368926829472855 ], [ -64.952209126470052, 18.368926160229933 ], [ -64.952139556640304, 18.368976954587538 ], [ -64.952054562791602, 18.369005788348318 ], [ -64.951954482819644, 18.36901970231429 ], [ -64.951907711777437, 18.369092792545075 ], [ -64.951876195806392, 18.369173426492353 ], [ -64.951821713409572, 18.369246515413465 ], [ -64.951744433534884, 18.369289933692755 ], [ -64.951660111548449, 18.369252550386648 ], [ -64.951567910569224, 18.369237127677366 ], [ -64.951517617816364, 18.36921885642937 ], [ -64.951461795624084, 18.369191697740348 ], [ -64.951408317746484, 18.36913989755385 ], [ -64.951359367408429, 18.369088097367353 ], [ -64.951308071446022, 18.369028084221497 ], [ -64.951270183915824, 18.368933199722278 ], [ -64.951253587739586, 18.368863128287785 ], [ -64.951260628541604, 18.368787188208557 ], [ -64.951278230546734, 18.368737902594205 ], [ -64.951291976874529, 18.368649557292315 ], [ -64.951296670742579, 18.368596248362564 ], [ -64.951277896580109, 18.368524162650942 ], [ -64.951269682311079, 18.368480913319445 ], [ -64.951237829754007, 18.368433302776907 ], [ -64.951169099424646, 18.368403967411382 ], [ -64.951156526563864, 18.368379324604177 ], [ -64.951133223552176, 18.368321489444497 ], [ -64.951122831296914, 18.368282428447287 ], [ -64.951112436422306, 18.368230797208639 ], [ -64.951098019541917, 18.368164915418049 ], [ -64.951089637634709, 18.368140272610844 ], [ -64.951091984568734, 18.368103224581034 ], [ -64.951094500450608, 18.368066344189344 ], [ -64.951099194318601, 18.368021080580775 ], [ -64.951103720548474, 18.367990236471996 ], [ -64.951114952304124, 18.367945140501547 ], [ -64.951128194407829, 18.367904070465954 ], [ -64.951132889585551, 18.367848582240299 ], [ -64.951120819639186, 18.367758057642561 ], [ -64.951117465566654, 18.367636687626259 ], [ -64.951112940646397, 18.367497883243061 ], [ -64.951095506279444, 18.367432839643186 ], [ -64.951067509399707, 18.367367796043311 ], [ -64.951017888509114, 18.367319516257851 ], [ -64.950968267618464, 18.367274755563699 ], [ -64.950936416371121, 18.367223291963171 ], [ -64.950934404713394, 18.367052636332573 ], [ -64.950913786531373, 18.366956914952368 ], [ -64.950878582521113, 18.366884998188596 ], [ -64.950800461836309, 18.36681945036463 ], [ -64.950712116534419, 18.366709647380276 ], [ -64.950538443417258, 18.366513678389936 ], [ -64.950446411385883, 18.366420808167845 ], [ -64.950311293732113, 18.366238920781598 ], [ -64.950219764615213, 18.366067426960285 ], [ -64.950168633671581, 18.365988803361063 ], [ -64.950121193386508, 18.36589610077715 ], [ -64.950092527263905, 18.365857544004029 ], [ -64.950032511498648, 18.36580322924533 ], [ -64.949965288602925, 18.365724104041362 ], [ -64.949883985412782, 18.365621174220962 ], [ -64.9498310104496, 18.365534337662382 ], [ -64.9497497072594, 18.365439119196594 ], [ -64.949625487394712, 18.365335854099897 ], [ -64.949551391335035, 18.365215657550607 ], [ -64.949455837593007, 18.365098981402411 ], [ -64.949363467665989, 18.365026561724221 ], [ -64.949281829199492, 18.364954142045974 ], [ -64.949235896348057, 18.364892451209016 ], [ -64.949225838059419, 18.364810476156606 ], [ -64.94926254950326, 18.364708216888744 ], [ -64.949309823459885, 18.364649040623931 ], [ -64.949296412408387, 18.364590031997238 ], [ -64.94928534960053, 18.364541249297304 ], [ -64.949200189423379, 18.364468829619113 ], [ -64.949136485618965, 18.364396745217221 ], [ -64.949089883524607, 18.364335724932801 ], [ -64.949012602340247, 18.364242182848443 ], [ -64.948930794925957, 18.364190215023768 ], [ -64.948885700265237, 18.364123830318761 ], [ -64.948861225096209, 18.363978152771608 ], [ -64.948812273448482, 18.363848065571858 ], [ -64.948745050552759, 18.363758714441133 ], [ -64.948666932487299, 18.363703561491775 ], [ -64.948607922550934, 18.363636003319698 ], [ -64.948577581356574, 18.363617227847612 ], [ -64.948560817542159, 18.363607001920798 ], [ -64.948538520359364, 18.363603816796058 ], [ -64.948504491125789, 18.363604319710532 ], [ -64.948472639878446, 18.36361437799917 ], [ -64.948441794459939, 18.363637679701185 ], [ -64.948437603506306, 18.363663495975345 ], [ -64.948440284406956, 18.363694509031973 ], [ -64.948456714254746, 18.36376240248029 ], [ -64.948543886089624, 18.36387321129348 ], [ -64.948579090099884, 18.363934902130495 ], [ -64.948585627987484, 18.364006651256091 ], [ -64.948595686276121, 18.364092146709538 ], [ -64.948626866970926, 18.364204967180456 ], [ -64.948668776506906, 18.364314602526633 ], [ -64.948711188957361, 18.364383166527546 ], [ -64.948756954170619, 18.364461956455216 ], [ -64.948792158180879, 18.364534040857109 ], [ -64.948816464402114, 18.364609310383798 ], [ -64.948823171237507, 18.364660440017701 ], [ -64.948811939481857, 18.364725315979456 ], [ -64.948818812645754, 18.364806955755569 ], [ -64.948774722504254, 18.364888763169859 ], [ -64.948764665525289, 18.364974593899547 ], [ -64.948780757477437, 18.365022035494292 ], [ -64.948819649526854, 18.365070147641632 ], [ -64.948876312529194, 18.365142232043581 ], [ -64.948938171004329, 18.365179615349689 ], [ -64.949015284550569, 18.365204761071254 ], [ -64.949075299006097, 18.365283718637102 ], [ -64.949121399495709, 18.365335351185422 ], [ -64.949191304601754, 18.365509862493354 ], [ -64.949275960554814, 18.365647158133299 ], [ -64.949354081239562, 18.365709184246555 ], [ -64.949439241416712, 18.365798535377337 ], [ -64.94955625153159, 18.365901968112155 ], [ -64.949634035630368, 18.366001545169695 ], [ -64.949690529684915, 18.36605870977678 ], [ -64.949736128569725, 18.36614168934841 ], [ -64.949760268462512, 18.36621746309919 ], [ -64.949771163632192, 18.366278986298028 ], [ -64.94980402070837, 18.366391805459273 ], [ -64.949821121108755, 18.366424328568883 ], [ -64.949834364522133, 18.366449977204923 ], [ -64.949873590538175, 18.366552404110905 ], [ -64.949900915555645, 18.366618453539616 ], [ -64.949909969325063, 18.36664309634682 ], [ -64.94992488911987, 18.366693386480335 ], [ -64.94993578559928, 18.366749378930081 ], [ -64.949957578557985, 18.366804196603198 ], [ -64.949979874431108, 18.366881476477886 ], [ -64.950006193619743, 18.366942498071978 ], [ -64.950026142558897, 18.367019946894516 ], [ -64.95003083642689, 18.367062694621211 ], [ -64.95003871541968, 18.367106951091216 ], [ -64.950043575616178, 18.367143328568488 ], [ -64.950052460437803, 18.367183560413366 ], [ -64.950069728476308, 18.367206360510636 ], [ -64.950075594501698, 18.367241732159016 ], [ -64.950073247567673, 18.367280121294016 ], [ -64.950067715508908, 18.367326220473899 ], [ -64.950077104554623, 18.367352038057788 ], [ -64.950097053493778, 18.367379529403706 ], [ -64.950135610266898, 18.367397969599551 ], [ -64.950169136586055, 18.367425128288573 ], [ -64.950219764615213, 18.367457816416959 ], [ -64.950238372449178, 18.367486819125531 ], [ -64.950247423599251, 18.367515651576639 ], [ -64.950247257270803, 18.367548007048129 ], [ -64.950241388626068, 18.367576673170731 ], [ -64.950242897369378, 18.367605339293334 ], [ -64.95024910129041, 18.367625120594369 ], [ -64.950283633438403, 18.367650601592231 ], [ -64.950322860764061, 18.367674406208664 ], [ -64.950373487483546, 18.367696199167426 ], [ -64.950405338730945, 18.367718158454579 ], [ -64.950427634604068, 18.367750681564189 ], [ -64.950468707259006, 18.367794098533807 ], [ -64.950513466643486, 18.367835674103219 ], [ -64.950535762516608, 18.367873726652249 ], [ -64.950537437588423, 18.367900550064917 ], [ -64.950535259602191, 18.367945477087517 ], [ -64.950531236286736, 18.367968777479859 ], [ -64.950525367642001, 18.367986716070959 ], [ -64.95050089247303, 18.368002809332779 ], [ -64.950457475503356, 18.368018567318302 ], [ -64.950381869390753, 18.368046730526487 ], [ -64.950317665291266, 18.368067851622982 ], [ -64.950272235354248, 18.368092663377979 ], [ -64.950230659784893, 18.368113953422267 ], [ -64.950192773564311, 18.368142284268572 ], [ -64.950143655588136, 18.368167093404224 ], [ -64.950081463146375, 18.368191737521045 ], [ -64.949970151418768, 18.368217889071502 ], [ -64.949866383407652, 18.368236832181822 ], [ -64.949604866593347, 18.368224090373189 ], [ -64.949533454053665, 18.368228953189032 ], [ -64.949452149553792, 18.368253428358059 ], [ -64.949352237220012, 18.368277903527087 ], [ -64.949307142559235, 18.368277400612669 ], [ -64.949220473638832, 18.368278574079682 ], [ -64.949175211339934, 18.368290810354495 ], [ -64.949116537989539, 18.368328193660602 ], [ -64.949095583221549, 18.368360212546122 ], [ -64.949101115280257, 18.36838368319593 ], [ -64.949100947642137, 18.36842324448827 ], [ -64.949087368952462, 18.368450066591322 ], [ -64.949065073079339, 18.36846062910405 ], [ -64.949051828356289, 18.36845693975522 ], [ -64.949027522135054, 18.368449563676847 ], [ -64.948971194409012, 18.368422238659377 ], [ -64.948924257038357, 18.368407486502747 ], [ -64.948877318358029, 18.36839273434606 ], [ -64.948857034142634, 18.36835484943515 ], [ -64.948844126005554, 18.368309753464757 ], [ -64.948771034465096, 18.368273377297214 ], [ -64.948703309964571, 18.368278237493712 ], [ -64.948646815910024, 18.368283100309554 ], [ -64.948616807372616, 18.368277568250789 ], [ -64.948590320545861, 18.36829164854521 ], [ -64.948543383175206, 18.368326014364754 ], [ -64.948489906607278, 18.368363062394565 ], [ -64.948447829433121, 18.368386030129955 ], [ -64.948409943212539, 18.368416875548462 ], [ -64.948347581822986, 18.368438499559375 ], [ -64.948306678115841, 18.368449563676847 ], [ -64.948260745264406, 18.368455767597879 ], [ -64.948236940647973, 18.368462136537687 ], [ -64.948204586486156, 18.368471525583402 ], [ -64.948160162378031, 18.36848426477269 ], [ -64.948131160979074, 18.368497006581265 ], [ -64.948112385506988, 18.368516283658153 ], [ -64.948107021086344, 18.368534054611132 ], [ -64.948103499375634, 18.368548639129642 ], [ -64.948108529829653, 18.368566576411069 ], [ -64.948128814045106, 18.368587866455357 ], [ -64.948160832930569, 18.368602618611988 ], [ -64.948189665381676, 18.368614185643935 ], [ -64.948226882359336, 18.36863245820166 ], [ -64.948247166574731, 18.368645532667188 ], [ -64.948269127171613, 18.368665147639717 ], [ -64.948291423044736, 18.368681239591865 ], [ -64.948312879417529, 18.368702026721735 ], [ -64.948356801920909, 18.368728848824787 ], [ -64.948433580190851, 18.368772602380375 ], [ -64.948487727311374, 18.368794061372455 ], [ -64.948532654333974, 18.368817864679215 ], [ -64.948581437033852, 18.36885223049876 ], [ -64.948620664359566, 18.3688705043661 ], [ -64.948679002433664, 18.368883578831685 ], [ -64.948768687531071, 18.368952645747015 ], [ -64.948839767413801, 18.369010648544815 ], [ -64.948901458250759, 18.369068652652345 ], [ -64.948963149087774, 18.369117601680728 ], [ -64.949017462536744, 18.369141407606833 ], [ -64.949062558507137, 18.36913989755385 ], [ -64.949102121109149, 18.369142076849755 ], [ -64.949152580190514, 18.369185662767165 ], [ -64.949210415350194, 18.369245343256125 ], [ -64.949339329082875, 18.369364869252763 ], [ -64.949425158502947, 18.369439300588738 ], [ -64.949459021408018, 18.369455727817126 ], [ -64.949496406023854, 18.369474000374851 ], [ -64.949576872332955, 18.369530326791221 ], [ -64.949671586574652, 18.369586820845768 ], [ -64.949735456707515, 18.369658906557333 ], [ -64.949764627054208, 18.369674830871361 ], [ -64.949793628453165, 18.369689415389871 ], [ -64.949829670654083, 18.369703498303636 ], [ -64.949856157480838, 18.369713722920778 ], [ -64.949878453354017, 18.369730989649611 ], [ -64.949947183683378, 18.369782957474229 ], [ -64.950000492613185, 18.369849509817413 ], [ -64.95006939320001, 18.369901477642031 ], [ -64.950145836193713, 18.369946238336183 ], [ -64.950214735470865, 18.369998204851129 ], [ -64.950228649436838, 18.370000385456706 ], [ -64.95030693645009, 18.370013627560411 ], [ -64.950399303757763, 18.370021675500993 ], [ -64.950483625744198, 18.370051681419056 ], [ -64.950560236375964, 18.370096274475031 ], [ -64.950597956268041, 18.370177410027054 ], [ -64.950635842488623, 18.370258546888749 ], [ -64.950642715652521, 18.370354100630834 ], [ -64.950665011525643, 18.370435069854409 ], [ -64.950695186391556, 18.370516206716104 ], [ -64.950702059555454, 18.370604384379817 ], [ -64.950747655820976, 18.370678312801317 ], [ -64.950816387460009, 18.370730280625992 ], [ -64.950883276389163, 18.3707807397073 ], [ -64.950885286737218, 18.37078224845061 ], [ -64.950938595666969, 18.370848633155674 ], [ -64.950999617261061, 18.370915353136979 ], [ -64.951068347590422, 18.370967320961597 ], [ -64.951091315325868, 18.370989450506272 ], [ -64.951130710289704, 18.371065221637707 ], [ -64.951156191287566, 18.371146526137522 ], [ -64.951194746751014, 18.371221795664212 ], [ -64.951246546937512, 18.371291030217662 ], [ -64.951298348433681, 18.371360097132992 ], [ -64.951330367319201, 18.371441570580657 ], [ -64.951355848317064, 18.371523041408977 ], [ -64.951387865892912, 18.37160451354697 ], [ -64.951413346890774, 18.371685818046785 ], [ -64.951424913922722, 18.371766284355886 ], [ -64.951446874519604, 18.371862341012388 ], [ -64.951450562558762, 18.371929731546288 ], [ -64.951495658529154, 18.372005168711098 ], [ -64.951521139527074, 18.37208647321097 ], [ -64.951579477601172, 18.372149505153061 ], [ -64.951631276477997, 18.372218572068391 ], [ -64.951643681700659, 18.372306079179566 ], [ -64.951662624810922, 18.372387551317559 ], [ -64.951668324507807, 18.372475058428734 ], [ -64.951674191842869, 18.372562565539909 ], [ -64.951673353652154, 18.372649905012906 ], [ -64.951653069436702, 18.372731041874601 ], [ -64.951613171558449, 18.372805640848696 ], [ -64.951592888652669, 18.372886777710391 ], [ -64.951572604437274, 18.372967746933966 ], [ -64.951545782334222, 18.373048883795661 ], [ -64.951544942833834, 18.373136223268659 ], [ -64.951537734393639, 18.373223730379834 ], [ -64.951504374402987, 18.373304699603409 ], [ -64.951470846774214, 18.373385668826927 ], [ -64.951430948895904, 18.373460267801022 ], [ -64.951410664680509, 18.373541237024597 ], [ -64.951396918352657, 18.373628744135772 ], [ -64.951383004386742, 18.37371608360877 ], [ -64.951388871721747, 18.373803590719945 ], [ -64.951407814832066, 18.37388489521976 ], [ -64.951439833717529, 18.373966367357752 ], [ -64.951452072611744, 18.374053874468927 ], [ -64.951451400749477, 18.374141381580102 ], [ -64.951437654421682, 18.3742287210531 ], [ -64.951424243370184, 18.374253699136602 ], [ -64.951390212826936, 18.374298626159145 ], [ -64.951366409520176, 18.37438110412603 ], [ -64.951400438753694, 18.374458720586688 ], [ -64.951451903663894, 18.374525440567993 ], [ -64.951485935516814, 18.37460288939053 ], [ -64.951519964750389, 18.374686037909953 ], [ -64.951530862539414, 18.374768851153078 ], [ -64.951593894481562, 18.374830039075675 ], [ -64.951662792449042, 18.374885862577571 ], [ -64.951737560370987, 18.374930621962051 ], [ -64.951824227981717, 18.374942188993998 ], [ -64.951910730573729, 18.374970519840303 ], [ -64.951985495876272, 18.375015279224783 ], [ -64.952036960786472, 18.375081831567911 ], [ -64.95209999272862, 18.375143187128629 ], [ -64.95215145763882, 18.375215271530578 ], [ -64.952214489580967, 18.375276459453119 ], [ -64.952234438520122, 18.375309819443771 ], [ -64.952328149552272, 18.375384752384491 ], [ -64.95237173546974, 18.375469913871314 ], [ -64.95245018881144, 18.375528587221709 ], [ -64.95251757934534, 18.375582231427757 ], [ -64.952561835815345, 18.375653310000814 ], [ -64.952619838613145, 18.375719024153284 ], [ -64.95267013005639, 18.375764117504332 ], [ -64.952735845518475, 18.375850283510374 ], [ -64.952774234653475, 18.375917675353946 ], [ -64.952810610821018, 18.37600551643169 ], [ -64.952856878948808, 18.376078607972147 ], [ -64.952862747593485, 18.376160918300855 ], [ -64.95285822005394, 18.376243562596187 ], [ -64.95286509452751, 18.376326377148985 ], [ -64.952905830596478, 18.376402149590092 ], [ -64.952950421033108, 18.376474401630162 ], [ -64.952983613385641, 18.37655369447225 ], [ -64.952998031575703, 18.376636506405703 ], [ -64.953008591469086, 18.376719319648828 ], [ -64.953001885943365, 18.376738934621358 ], [ -64.952981601727913, 18.376798278524348 ], [ -64.952924604758948, 18.376862482623835 ], [ -64.952841457549198, 18.37689416754273 ], [ -64.95275110058958, 18.376893495680463 ], [ -64.952664765635745, 18.376871201117012 ], [ -64.95264967951249, 18.376874721517993 ], [ -64.95258513751736, 18.37692450873709 ], [ -64.95258513751736, 18.376928196776305 ], [ -64.9525519464745, 18.376845217204675 ], [ -64.952488411617935, 18.376787214406875 ], [ -64.952417331735205, 18.37673994045025 ], [ -64.95234239748487, 18.37669618558499 ], [ -64.95226746454415, 18.376652433339075 ], [ -64.952234270881945, 18.376573140496987 ], [ -64.952204766568627, 18.376490159615685 ], [ -64.95218666164908, 18.376407346372559 ], [ -64.952183645472132, 18.376324699457882 ], [ -64.952165540552585, 18.376241887524429 ], [ -64.952117091819332, 18.376173154575724 ], [ -64.952049868923552, 18.376118673488577 ], [ -64.951990023415817, 18.376057150289739 ], [ -64.951930342926914, 18.375995627090902 ], [ -64.951881727865157, 18.375966458053824 ], [ -64.951843841644575, 18.375987748098112 ], [ -64.951764382473982, 18.376030160548567 ], [ -64.951730350621119, 18.376051618230974 ], [ -64.951681735559362, 18.376004510602854 ], [ -64.951602945631635, 18.375967799158957 ], [ -64.951516611987529, 18.375934774444602 ], [ -64.951434135330317, 18.375905436459732 ], [ -64.951347632738361, 18.375890350336419 ], [ -64.951260797489454, 18.375907783393757 ], [ -64.951174128568994, 18.375925051432262 ], [ -64.951087459648534, 18.375924379569994 ], [ -64.951001124694699, 18.375902085006544 ], [ -64.950979165407489, 18.375819270453746 ], [ -64.950957372448784, 18.375736458520237 ], [ -64.950920324418973, 18.375660686079186 ], [ -64.950856789562408, 18.375602683281329 ], [ -64.950819741532541, 18.375526743202101 ], [ -64.950771460437409, 18.375458179201189 ], [ -64.950737766480131, 18.375436386242484 ], [ -64.950706081561236, 18.375400176403389 ], [ -64.950664339663433, 18.375323398133446 ], [ -64.950631985501616, 18.375246787501624 ], [ -64.950575994361543, 18.375183420283179 ], [ -64.950505921617321, 18.375133464116288 ], [ -64.950416570486595, 18.375123741103948 ], [ -64.95034079935516, 18.375172522494154 ], [ -64.95032135333048, 18.375253325389224 ], [ -64.950339458250028, 18.375334294612799 ], [ -64.950376506279838, 18.375411072882741 ], [ -64.95036158648503, 18.375496233059891 ], [ -64.950347337242761, 18.375509644111446 ], [ -64.950337949506718, 18.375514170341319 ], [ -64.950286652234638, 18.375450803122874 ], [ -64.950221273358466, 18.375391794496181 ], [ -64.950165282218393, 18.375328594915914 ], [ -64.95010459721027, 18.375269586289221 ], [ -64.950067715508908, 18.375188449427526 ], [ -64.950011724368835, 18.375125082209081 ], [ -64.949932097560065, 18.375088537093689 ], [ -64.949890354352533, 18.375011758823746 ], [ -64.949858001500445, 18.374935148191923 ], [ -64.949835201403175, 18.374854178968405 ], [ -64.949831179397393, 18.374768683514958 ], [ -64.94979899156408, 18.374692072883136 ], [ -64.94975724966622, 18.374615294613193 ], [ -64.949710815209983, 18.374543042573123 ], [ -64.949678461048222, 18.3744664319413 ], [ -64.949646105576733, 18.374389821309478 ], [ -64.949618446592638, 18.374331147959083 ], [ -64.949604363678873, 18.374313043039535 ], [ -64.949572178464905, 18.37423643240777 ], [ -64.949563461281457, 18.374146410724393 ], [ -64.949592461370685, 18.374065776777172 ], [ -64.949607047198867, 18.373998553881393 ], [ -64.949611907395365, 18.373985142829895 ], [ -64.949574859365555, 18.373908364559952 ], [ -64.949514174357432, 18.37384952357138 ], [ -64.94945348934931, 18.373790682582865 ], [ -64.949402361025022, 18.373722789134547 ], [ -64.94935123139112, 18.37365506332435 ], [ -64.949297084270597, 18.373588175704867 ], [ -64.949260202569235, 18.373511397434925 ], [ -64.949251485385787, 18.373425901981477 ], [ -64.949233380466239, 18.373344932757959 ], [ -64.949196332436372, 18.373268322126137 ], [ -64.949154590538512, 18.373191543856194 ], [ -64.949126762606625, 18.373150807787226 ], [ -64.949103462214282, 18.373123650407877 ], [ -64.949066414184472, 18.373047039776054 ], [ -64.949029366154662, 18.372970429144232 ], [ -64.949006567367064, 18.372889292282537 ], [ -64.948983768579467, 18.372808155420842 ], [ -64.948956108285699, 18.372727186197324 ], [ -64.948938003366152, 18.372646049335629 ], [ -64.948900955336342, 18.372569438703806 ], [ -64.948859381076602, 18.372492660433863 ], [ -64.948803389936529, 18.372429293215419 ], [ -64.948738011060357, 18.372374978456776 ], [ -64.948658215303851, 18.372333907111511 ], [ -64.948573893317416, 18.372292835766189 ], [ -64.948503652935074, 18.372242711961178 ], [ -64.948419330948639, 18.372210693075658 ], [ -64.948339535192076, 18.372174147960266 ], [ -64.948259907073691, 18.372141961436625 ], [ -64.948184972823299, 18.372092005269678 ], [ -64.948105343395241, 18.372050933924413 ], [ -64.948025548948351, 18.372018915038893 ], [ -64.947936197817626, 18.37200466579668 ], [ -64.947883893407038, 18.372071721054283 ], [ -64.947850367087881, 18.372147828771631 ], [ -64.947845505581711, 18.37215235500156 ], [ -64.947770068416901, 18.372178674190138 ], [ -64.94769429597585, 18.372223098298321 ], [ -64.947609471074941, 18.372240365027153 ], [ -64.947520119944215, 18.372230642014756 ], [ -64.94743076881349, 18.372216560410664 ], [ -64.94735063778063, 18.372247405829171 ], [ -64.947279559207573, 18.372296188529106 ], [ -64.947203786766465, 18.372340612637231 ], [ -64.947123488095485, 18.372380342877364 ], [ -64.947038663194633, 18.372397777244373 ], [ -64.9469540059319, 18.372379001772231 ], [ -64.94690237338358, 18.372374140266061 ], [ -64.946864822439295, 18.372366764187689 ], [ -64.94678033281474, 18.372339103893978 ], [ -64.946705398564347, 18.372293506318783 ], [ -64.946663656666544, 18.372216895686961 ], [ -64.946612527032585, 18.372149002238643 ], [ -64.946542286650242, 18.372099046071753 ], [ -64.9464720462679, 18.372049089904806 ], [ -64.946406667391784, 18.371990248916291 ], [ -64.946350843889832, 18.371926881697846 ], [ -64.946304408123922, 18.371854629657776 ], [ -64.946253110851842, 18.371786736209458 ], [ -64.946211368953982, 18.371709957939515 ], [ -64.946193264034434, 18.371628988715941 ], [ -64.946170465246894, 18.37154349326255 ], [ -64.946133417217027, 18.37146671499255 ], [ -64.946101230693387, 18.371390104360785 ], [ -64.946068876531626, 18.371313493728962 ], [ -64.946022440765717, 18.371241241688892 ], [ -64.945980698867857, 18.37116446341895 ], [ -64.945934263101947, 18.37109221137888 ], [ -64.945854634983561, 18.37105566757316 ], [ -64.945774839227056, 18.371019121148095 ], [ -64.945699904976664, 18.3709735235729 ], [ -64.945677106189066, 18.370892554349382 ], [ -64.945630670423213, 18.370820303618984 ], [ -64.945579540789254, 18.370752408860994 ], [ -64.945523549649181, 18.370684683050797 ], [ -64.945481807751321, 18.370607904780854 ], [ -64.945430678117418, 18.370540012642209 ], [ -64.945360437735076, 18.370490056475319 ], [ -64.945290364990854, 18.370435572768827 ], [ -64.945229679982731, 18.370376731780311 ], [ -64.945159439600388, 18.370326775613364 ], [ -64.945098754592266, 18.370267934624849 ], [ -64.944976714023426, 18.370231055542831 ], [ -64.9448873628927, 18.370225857450691 ], [ -64.944798011761918, 18.370225020569649 ], [ -64.944717713090938, 18.370255864678484 ], [ -64.944633223466383, 18.370232730614589 ], [ -64.944548733841827, 18.370209596550694 ], [ -64.944468938085265, 18.370168692843606 ], [ -64.944422167043115, 18.370141367826136 ], [ -64.944392159815322, 18.370123765821006 ], [ -64.944327619129865, 18.370061070464828 ], [ -64.944237597446545, 18.370046149360292 ], [ -64.944152604907515, 18.370021506553144 ], [ -64.944062750862372, 18.370006420429888 ], [ -64.943972730488724, 18.369991500635024 ], [ -64.943892262869895, 18.370029051579309 ], [ -64.943877175436967, 18.370038438005679 ], [ -64.943831914447742, 18.370047659413274 ], [ -64.943806935054624, 18.370047490465481 ], [ -64.943722111463444, 18.370018153790284 ], [ -64.943631754503826, 18.370031901427751 ], [ -64.943551454523174, 18.370069452372036 ], [ -64.943490769515051, 18.370131141899321 ], [ -64.943425223000702, 18.370187972539838 ], [ -64.943349619507444, 18.370235246496406 ], [ -64.943259428876331, 18.370248823876409 ], [ -64.943179634429441, 18.370209931826992 ], [ -64.943110064599693, 18.370152096667312 ], [ -64.943030267533459, 18.370108344421396 ], [ -64.943000930858261, 18.370026870973732 ], [ -64.942946448461441, 18.369959480439888 ], [ -64.942881907776041, 18.369901646589881 ], [ -64.942802113329151, 18.369862754540463 ], [ -64.942737403695901, 18.369804919380783 ], [ -64.942672864320116, 18.369747082911431 ], [ -64.942608323634659, 18.369689247751751 ], [ -64.942538584857118, 18.369631244953894 ], [ -64.942484102460298, 18.369563854420051 ], [ -64.94244973664081, 18.369487243788228 ], [ -64.942410341676975, 18.369410297880108 ], [ -64.942365917568793, 18.369338213478215 ], [ -64.942331551749248, 18.369261602846393 ], [ -64.942286961312618, 18.3691895184445 ], [ -64.94221739148287, 18.369136378462485 ], [ -64.942137594416636, 18.369092623597226 ], [ -64.942088142473835, 18.369020540505005 ], [ -64.94204371836571, 18.368943762235062 ], [ -64.942029467813768, 18.36885759622902 ], [ -64.942045225799291, 18.368771596551483 ], [ -64.942050925496233, 18.36868559949329 ], [ -64.942066683481755, 18.368599767453873 ], [ -64.94204237726052, 18.368518296625552 ], [ -64.942008011441033, 18.36844151835561 ], [ -64.941973645621488, 18.368364738775995 ], [ -64.94193424934798, 18.368287960506052 ], [ -64.941894854384145, 18.368211014597932 ], [ -64.94185545942031, 18.368134237637662 ], [ -64.941835679429005, 18.368100708699217 ], [ -64.941806844358553, 18.368063159064604 ], [ -64.941802653404977, 18.367976993058619 ], [ -64.9418633384131, 18.367915302221604 ], [ -64.941918826638755, 18.367848917516596 ], [ -64.94197448250253, 18.367782365173412 ], [ -64.942015218571555, 18.367706257456064 ], [ -64.942025947412731, 18.367620259088142 ], [ -64.94206165564708, 18.367543982423001 ], [ -64.942102390406433, 18.367467876015269 ], [ -64.94215301843559, 18.367396462165914 ], [ -64.942193754504558, 18.367320354448566 ], [ -64.942244547552548, 18.367248940599211 ], [ -64.94218034345306, 18.367128910378426 ], [ -64.942115801457931, 18.367071076528418 ], [ -64.942071377349805, 18.366998992126526 ], [ -64.942042040674608, 18.366917519988533 ], [ -64.942002645710716, 18.366840740408918 ], [ -64.9419682812009, 18.366763963448591 ], [ -64.941933746433563, 18.366687185178648 ], [ -64.94188949127323, 18.366610406908705 ], [ -64.941840036711085, 18.366533461000643 ], [ -64.941830650284658, 18.3664472949946 ], [ -64.941831488475373, 18.366361296626735 ], [ -64.941816736318742, 18.366318213623742 ], [ -64.94177197562459, 18.366293906092835 ], [ -64.941681787612822, 18.36628837403407 ], [ -64.941616742703275, 18.366283177251603 ], [ -64.941591933567622, 18.366273454239263 ], [ -64.941527225244045, 18.366215451441462 ], [ -64.941452458631829, 18.366171865523995 ], [ -64.941367632421247, 18.366142528848798 ], [ -64.941287836664742, 18.36610363679938 ], [ -64.941203179402009, 18.3660551893758 ], [ -64.941128414099467, 18.366006741952162 ], [ -64.941078959537322, 18.36593465755027 ], [ -64.941014420161537, 18.365876822390589 ], [ -64.941004529511019, 18.36585771164215 ], [ -64.940996147603812, 18.365792500404154 ], [ -64.941001847300754, 18.365706502036289 ], [ -64.941012576141929, 18.365620503668367 ], [ -64.941013245384852, 18.365534505300502 ], [ -64.940979048513157, 18.365438616282177 ], [ -64.940973516454392, 18.365386816095679 ], [ -64.940969828415234, 18.365352450276134 ], [ -64.940980557256466, 18.365266451908269 ], [ -64.940976197355042, 18.365180453540404 ], [ -64.940956920278154, 18.365098981402411 ], [ -64.940917525314319, 18.365022203132469 ], [ -64.940878130350484, 18.364945424862526 ], [ -64.940838735386649, 18.364868646592527 ], [ -64.940799340422757, 18.364791700684464 ], [ -64.940759945458922, 18.364714922414521 ], [ -64.940715521350796, 18.364642838012571 ], [ -64.940640753428909, 18.364599252095161 ], [ -64.940560958982019, 18.364565221551914 ], [ -64.940481163225456, 18.364526329502496 ], [ -64.940401367468951, 18.364492298959249 ], [ -64.940368844359341, 18.364474529315999 ], [ -64.940353758236029, 18.364458436054178 ], [ -64.940351411302004, 18.364455083291318 ], [ -64.940336322559403, 18.364434799075866 ], [ -64.940287204583171, 18.364362211759556 ], [ -64.940217636063096, 18.364309070467868 ], [ -64.940142869450881, 18.364260790682408 ], [ -64.940068270476786, 18.364212343258771 ], [ -64.940023846368661, 18.364140258856878 ], [ -64.939969363971841, 18.364068174454928 ], [ -64.939899626503916, 18.364015033163298 ], [ -64.939824859891701, 18.363971447245888 ], [ -64.939750260917606, 18.36392786132842 ], [ -64.939680523449738, 18.36387472003679 ], [ -64.939605924475643, 18.363826272613153 ], [ -64.939531157863428, 18.363782686695743 ], [ -64.939451362106865, 18.363748656152495 ], [ -64.93937156635036, 18.363709764103078 ], [ -64.93929160295562, 18.36367556592171 ], [ -64.939246843571198, 18.36365142602898 ], [ -64.939210801370223, 18.363645391055798 ], [ -64.939131005613717, 18.36361119287443 ], [ -64.939056239001445, 18.363567606956963 ], [ -64.93898147238923, 18.363524021039552 ], [ -64.938926989992467, 18.363456630505652 ], [ -64.938857420162662, 18.363403489213965 ], [ -64.938767398479342, 18.363388569419158 ], [ -64.938677376796022, 18.36337348198623 ], [ -64.938522646789124, 18.363310114767785 ], [ -64.938372945926517, 18.36326585829778 ], [ -64.938282924243197, 18.363250770864795 ], [ -64.938213186775272, 18.363197797211285 ], [ -64.938168762667146, 18.363125712809392 ], [ -64.938159039654806, 18.363101740554782 ], [ -64.938083770128117, 18.363105931508414 ], [ -64.937998442312846, 18.363129065572252 ], [ -64.937908420629526, 18.363123701151665 ], [ -64.937818231308029, 18.36312286296095 ], [ -64.937728209624709, 18.363117498540305 ], [ -64.937633158797041, 18.36311666034959 ], [ -64.937542969475601, 18.363115989797052 ], [ -64.937452780154103, 18.363115319244457 ], [ -64.937362758470783, 18.363114648691862 ], [ -64.937277765931753, 18.363090005884715 ], [ -64.937252955486485, 18.363065865991985 ], [ -64.937233341823628, 18.363017921482765 ], [ -64.937234012376166, 18.3629319231149 ], [ -64.937199646556678, 18.362855144844957 ], [ -64.937180368170118, 18.362773672706965 ], [ -64.937161089783558, 18.362692200568972 ], [ -64.937121694819723, 18.362615423608702 ], [ -64.937051957351798, 18.362562281007399 ], [ -64.937007533243673, 18.362490196605506 ], [ -64.93699831314575, 18.362404199547257 ], [ -64.936958918181915, 18.362327419967642 ], [ -64.936914494073733, 18.362255335565749 ], [ -64.936904603423216, 18.362236058488861 ], [ -64.936909632567563, 18.362205714675099 ], [ -64.936928240401528, 18.362179563124641 ], [ -64.936945171854063, 18.362155255593791 ], [ -64.936948859893221, 18.361938668421374 ], [ -64.936992948725106, 18.361739512996621 ], [ -64.937030164393093, 18.361581934450953 ], [ -64.937041396148743, 18.361412450977696 ], [ -64.937013568216855, 18.361231401782163 ], [ -64.936910973672695, 18.361006263754803 ], [ -64.93687962533977, 18.360868800476737 ], [ -64.936783736321388, 18.360618684365875 ], [ -64.93676563140184, 18.360575770310675 ], [ -64.936720201464823, 18.360405785232672 ], [ -64.936716848701963, 18.360230603372202 ], [ -64.936705449308135, 18.360054414373167 ], [ -64.936637388221698, 18.359875713421332 ], [ -64.936496069266298, 18.359601960332157 ], [ -64.936437228277782, 18.359483440164354 ], [ -64.936387272110835, 18.359346478491034 ], [ -64.936288700882187, 18.359207843055628 ], [ -64.936252658681212, 18.359157382664591 ], [ -64.936193147140102, 18.359090831631136 ], [ -64.936131791579385, 18.359045234055941 ], [ -64.936080997221779, 18.359001814466978 ], [ -64.9360427757249, 18.358961078398011 ], [ -64.935960465396249, 18.358880781036703 ], [ -64.935919226412807, 18.358812719950208 ], [ -64.935883351850009, 18.358763769612153 ], [ -64.935845634577277, 18.358709622491688 ], [ -64.935771704846104, 18.358622283018633 ], [ -64.935723089784346, 18.358576685443495 ], [ -64.935687047583372, 18.358536619927065 ], [ -64.935650837744276, 18.358511977119917 ], [ -64.935580094447459, 18.358490687075573 ], [ -64.935544219884662, 18.358493201647775 ], [ -64.935514715571344, 18.358499907173496 ], [ -64.935500298690954, 18.35851331822505 ], [ -64.935495438494456, 18.358541312485443 ], [ -64.935494598994069, 18.358566962431098 ], [ -64.935499126533614, 18.358600992974345 ], [ -64.935518906524919, 18.35863066492584 ], [ -64.935547572647579, 18.358676093553186 ], [ -64.935583614848497, 18.358718004398838 ], [ -64.935644970409214, 18.358786233123453 ], [ -64.935713031495652, 18.358906597310863 ], [ -64.935746391486362, 18.359031823004443 ], [ -64.935805567751174, 18.359124359259908 ], [ -64.935934816760209, 18.359335414373561 ], [ -64.936009751010545, 18.359495676439224 ], [ -64.936048475421842, 18.359648897702812 ], [ -64.936054678033145, 18.359766916265869 ], [ -64.936064903959959, 18.359852076443019 ], [ -64.93607144184756, 18.359937236620169 ], [ -64.936083679432045, 18.360022061521022 ], [ -64.936077141544445, 18.360114430138367 ], [ -64.936091726062955, 18.360322301436952 ], [ -64.936141682229902, 18.360498321488137 ], [ -64.936202199599848, 18.360670150585747 ], [ -64.936266907923482, 18.360886737758108 ], [ -64.93630462650583, 18.36096334838993 ], [ -64.936343686193425, 18.36105052153448 ], [ -64.936379728394343, 18.361094273780395 ], [ -64.936444771994218, 18.361145069447673 ], [ -64.936478299623047, 18.36125302841242 ], [ -64.936517359310585, 18.361364506468533 ], [ -64.93651970624461, 18.361515548436273 ], [ -64.936488190273508, 18.361595176554658 ], [ -64.936427337627265, 18.361683186580251 ], [ -64.93634636840369, 18.361795336498574 ], [ -64.936308817459462, 18.361824002621233 ], [ -64.936271769429652, 18.361858703717019 ], [ -64.936256849634788, 18.361883178886046 ], [ -64.936236397781272, 18.361909330436504 ], [ -64.936210413868935, 18.361925758974621 ], [ -64.936140173486592, 18.361928944099361 ], [ -64.936049984165095, 18.361928273546766 ], [ -64.935964656349825, 18.361951407610661 ], [ -64.935879328534554, 18.361974710622349 ], [ -64.935808752875914, 18.362026678446966 ], [ -64.935718563554417, 18.362035561958976 ], [ -64.935452857096209, 18.362071771798071 ], [ -64.935362667774712, 18.362080656619696 ], [ -64.935282369103732, 18.362113513695931 ], [ -64.935206931938922, 18.362141510575611 ], [ -64.935196873650284, 18.362141510575611 ], [ -64.935112048749431, 18.362116866458791 ], [ -64.935032252992869, 18.362082835915544 ], [ -64.934947260453896, 18.362058193108396 ], [ -64.934867464697334, 18.362024162565149 ], [ -64.934787668940771, 18.361990132021901 ], [ -64.934707874493938, 18.361955933840534 ], [ -64.934622880645236, 18.361936152539556 ], [ -64.93454308488873, 18.361897260490139 ], [ -64.93446329044184, 18.361863229946948 ], [ -64.934378465540988, 18.361833894581366 ], [ -64.934293471692285, 18.361804556596496 ], [ -64.934208646791433, 18.361779913789348 ], [ -64.93412382189058, 18.361750578423823 ], [ -64.93403882935155, 18.361721240438953 ], [ -64.933954004450698, 18.361691903763756 ], [ -64.933874208694135, 18.361657874530181 ], [ -64.933794414247245, 18.361618982480763 ], [ -64.93371461849074, 18.361584782989723 ], [ -64.933634821424505, 18.361550752446476 ], [ -64.933575311193067, 18.361483361912633 ], [ -64.933551002352488, 18.36140188977464 ], [ -64.93353155763748, 18.361320417636648 ], [ -64.933497190508263, 18.361243639366705 ], [ -64.933472884287085, 18.361162168538385 ], [ -64.93342342972494, 18.36108538895877 ], [ -64.933384034761104, 18.361008610688828 ], [ -64.933379174564607, 18.360998887676431 ], [ -64.933330559502849, 18.360940215635708 ], [ -64.933296192373632, 18.360863437365765 ], [ -64.933266855698434, 18.3607819639181 ], [ -64.933222431590252, 18.360709879516207 ], [ -64.933142637143419, 18.36067098746679 ], [ -64.933067870531204, 18.36062740154938 ], [ -64.932988073464969, 18.360588509499962 ], [ -64.932903082235612, 18.3605687295086 ], [ -64.932818257334759, 18.360548948207622 ], [ -64.932743489412871, 18.360505362290212 ], [ -64.932704094449036, 18.36042858271054 ], [ -64.932649613361889, 18.360361193486369 ], [ -64.932590100511106, 18.360293801642797 ], [ -64.932510306064216, 18.360250049396882 ], [ -64.932425481163364, 18.360220711412012 ], [ -64.932345685406801, 18.360186682178437 ], [ -64.932260860505949, 18.360152482687397 ], [ -64.932181063439771, 18.36011359063798 ], [ -64.932106298137171, 18.360070004720569 ], [ -64.932031531524956, 18.360026418803102 ], [ -64.931941508531963, 18.360011331370174 ], [ -64.931846291375848, 18.360024911369464 ], [ -64.931756102054351, 18.360029102323097 ], [ -64.931670940567528, 18.360047542518942 ], [ -64.93158075255576, 18.360046870656674 ], [ -64.931500955489525, 18.360007978607257 ], [ -64.931426356515431, 18.359959532493349 ], [ -64.931351591212888, 18.359915946575882 ], [ -64.931271795456382, 18.359881914722962 ], [ -64.931186802917352, 18.359862133421984 ], [ -64.931101810378323, 18.359842184482829 ], [ -64.931011621056882, 18.359855932120354 ], [ -64.930921430425713, 18.359869509500356 ], [ -64.930835936281937, 18.359897506380037 ], [ -64.930750776104787, 18.359915946575882 ], [ -64.930660586783347, 18.359915274713615 ], [ -64.930570229823729, 18.359933716219132 ], [ -64.930485069646579, 18.359952156414977 ], [ -64.930399741831252, 18.359970596610822 ], [ -64.930329166172669, 18.360022730763944 ], [ -64.930248867501689, 18.360055589149852 ], [ -64.930163539686362, 18.360078723213689 ], [ -64.930087934883431, 18.360125997170314 ], [ -64.930052898511349, 18.360130523400187 ], [ -64.929997745561934, 18.360139574550317 ], [ -64.929912417746664, 18.360167571430054 ], [ -64.929822228425166, 18.360171762383629 ], [ -64.929737403524314, 18.360137564202262 ], [ -64.929650064051316, 18.360135217268237 ], [ -64.929562556940141, 18.360128510432787 ], [ -64.929487957966046, 18.360086265620509 ], [ -64.929413358991951, 18.360040835683492 ], [ -64.929332389768433, 18.360010494489131 ], [ -64.929245217933556, 18.359982834195364 ], [ -64.9291672661966, 18.359946455408419 ], [ -64.929130050528613, 18.359928184160424 ], [ -64.929086296973026, 18.359915946575882 ], [ -64.929011697998931, 18.359870684276984 ], [ -64.928968614995938, 18.359798767513212 ], [ -64.928928717117685, 18.359723833262876 ], [ -64.928907427073398, 18.359643030367806 ], [ -64.928861158945665, 18.359571113604034 ], [ -64.92879930047053, 18.359510931510329 ], [ -64.92876560520358, 18.359433147411494 ], [ -64.92872872481189, 18.359358214470774 ], [ -64.92868865929546, 18.359283280220438 ], [ -64.928620430570845, 18.359231981638686 ], [ -64.92855203420811, 18.359180853314456 ], [ -64.928493360857715, 18.359117652424516 ], [ -64.92842496449498, 18.359066356462108 ], [ -64.928356735770365, 18.359015225518476 ], [ -64.928281969158093, 18.358972814377751 ], [ -64.928223295807697, 18.35890961348781 ], [ -64.928161269694442, 18.358849600341898 ], [ -64.928089688206967, 18.358810205378063 ], [ -64.928084323786322, 18.358801991109033 ], [ -64.928045934651379, 18.358727055548968 ], [ -64.927972006229879, 18.358681626921623 ], [ -64.927910147754744, 18.358621612466038 ], [ -64.927859857621229, 18.358554054294018 ], [ -64.927774193219932, 18.358527232190966 ], [ -64.927716190422132, 18.358463362058103 ], [ -64.927695738568559, 18.358408544385043 ], [ -64.927682830431479, 18.35832874862848 ], [ -64.927683500984017, 18.358292537479713 ], [ -64.927692050529402, 18.358267895982237 ], [ -64.927697079673692, 18.358247610457113 ], [ -64.927700264798432, 18.358226154084377 ], [ -64.927698420778881, 18.35821458705243 ], [ -64.927673945609854, 18.35818223289067 ], [ -64.927657852348034, 18.358157422445345 ], [ -64.927586773774976, 18.358125403559825 ], [ -64.927513683544191, 18.358088020253717 ], [ -64.927471774008154, 18.358028507402935 ], [ -64.927417460559184, 18.357958771244682 ], [ -64.927387954936194, 18.35790278010461 ], [ -64.927369011825874, 18.35784343620162 ], [ -64.927353756754769, 18.357763974411682 ], [ -64.927335148920804, 18.357647131934982 ], [ -64.927341017565539, 18.357598181596927 ], [ -64.927380243581524, 18.35754956653517 ], [ -64.927408909704184, 18.357512518505359 ], [ -64.927427014623731, 18.357478823238409 ], [ -64.927439587484514, 18.35744680435289 ], [ -64.927454004364904, 18.357416629486977 ], [ -64.927468422554966, 18.357392992508665 ], [ -64.927490046565879, 18.357345886190217 ], [ -64.927509995504977, 18.357285201182094 ], [ -64.927525921128677, 18.357236753758457 ], [ -64.927626001100634, 18.357054531095969 ], [ -64.927831525465194, 18.356844648139656 ], [ -64.92798994351125, 18.356647002767886 ], [ -64.928066721781249, 18.356564357162881 ], [ -64.928146014623337, 18.356447345738388 ], [ -64.928159090398594, 18.356246515241878 ], [ -64.928184739034577, 18.356116428042128 ], [ -64.928210220032497, 18.356016180431993 ], [ -64.92830325920238, 18.355865138464253 ], [ -64.928447428006223, 18.35577226693249 ], [ -64.928584723646168, 18.355672857513127 ], [ -64.928672901309938, 18.35556674256793 ], [ -64.92878354248495, 18.35545425737331 ], [ -64.928898877528013, 18.355322661430307 ], [ -64.929011865637108, 18.355199615032575 ], [ -64.929081938381273, 18.355125351334777 ], [ -64.929129715252316, 18.355029629954572 ], [ -64.929173133531606, 18.354931561640342 ], [ -64.929250079439726, 18.354814717853969 ], [ -64.929306908770513, 18.354723187427339 ], [ -64.929343286247786, 18.354650767749149 ], [ -64.929420232155906, 18.354559572598816 ], [ -64.929478905506301, 18.354504419649402 ], [ -64.929524167805141, 18.354453457653676 ], [ -64.929567753722608, 18.354359581602694 ], [ -64.929646543650279, 18.354260004545154 ], [ -64.929707563934699, 18.354204851595796 ], [ -64.929774954468598, 18.354164784769694 ], [ -64.929855923692116, 18.354126898549112 ], [ -64.929887439663219, 18.354105776143001 ], [ -64.929934713619843, 18.354076271829626 ], [ -64.929991040036214, 18.354036038675076 ], [ -64.930033787762909, 18.354010726625006 ], [ -64.930062956799986, 18.354002511046303 ], [ -64.930120456683369, 18.353981388640136 ], [ -64.930168401192532, 18.353960267543698 ], [ -64.930232941877989, 18.353935288150524 ], [ -64.930293962162409, 18.353918189059868 ], [ -64.930329669087087, 18.353900251778441 ], [ -64.930403597508587, 18.353872088570256 ], [ -64.930431090164177, 18.353858509880581 ], [ -64.930461265030146, 18.353842416618761 ], [ -64.930472832062037, 18.353827832100251 ], [ -64.930491439896059, 18.353796651405446 ], [ -64.930501498184697, 18.353774858446741 ], [ -64.930501665822817, 18.353763795638883 ], [ -64.930496971954767, 18.353753903678751 ], [ -64.930480040502232, 18.353743342475639 ], [ -64.930443160110542, 18.353739151522063 ], [ -64.930416505645667, 18.353738983883943 ], [ -64.930382978016894, 18.353734122377773 ], [ -64.930323466475727, 18.353735631121026 ], [ -64.930285915531499, 18.353737307502456 ], [ -64.930240150318184, 18.353734290015893 ], [ -64.930195726210002, 18.353735966397323 ], [ -64.930154654864737, 18.353742839561221 ], [ -64.930082738100964, 18.353753400764333 ], [ -64.929997913200111, 18.353749712725119 ], [ -64.929930690304332, 18.353766308901413 ], [ -64.929856594244711, 18.353778546485898 ], [ -64.929762549245936, 18.353792795728168 ], [ -64.929681747660538, 18.353815594515709 ], [ -64.929601113713261, 18.353827832100251 ], [ -64.929535902475266, 18.353852977821816 ], [ -64.929443869134161, 18.353890696404221 ], [ -64.929356026746746, 18.353947693373186 ], [ -64.929308417513823, 18.354020113051433 ], [ -64.929251923459276, 18.354088006499751 ], [ -64.929199452720241, 18.354198647674764 ], [ -64.929140276455428, 18.354320017691009 ], [ -64.929051763515361, 18.354458319159846 ], [ -64.928977332179443, 18.354528224265891 ], [ -64.928893680745603, 18.354627968961552 ], [ -64.928839198348783, 18.354717320092277 ], [ -64.928789242181836, 18.354791751428252 ], [ -64.92873040119332, 18.354861824172417 ], [ -64.928667201613052, 18.354938267166119 ], [ -64.928612886854353, 18.355006328252557 ], [ -64.928544993406035, 18.355093332449314 ], [ -64.928459162676347, 18.35518251594192 ], [ -64.928393616161998, 18.355263149889197 ], [ -64.928298900610685, 18.355339425244665 ], [ -64.928199658829442, 18.355417712257918 ], [ -64.9280910293121, 18.355555678450457 ], [ -64.927869914600194, 18.355771931656193 ], [ -64.927784251508569, 18.35584619535399 ], [ -64.927657517071736, 18.35600193118978 ], [ -64.927585097393489, 18.356096814379271 ], [ -64.927548217001856, 18.356211814146093 ], [ -64.927518881636331, 18.356302506381951 ], [ -64.927491052394714, 18.356363191390074 ], [ -64.927443443161849, 18.356435443430144 ], [ -64.927364317957881, 18.356524626922749 ], [ -64.927275469741517, 18.356699138230681 ], [ -64.927186789163386, 18.356863088335501 ], [ -64.927103305367666, 18.356937184395179 ], [ -64.926975229825644, 18.357004574929022 ], [ -64.926686221665364, 18.357130806451494 ], [ -64.926617992940749, 18.357141367654549 ], [ -64.926586141693406, 18.357143379312276 ], [ -64.926553619893468, 18.357136338510202 ], [ -64.926523277389435, 18.357128794793766 ], [ -64.926341557641308, 18.357062913003176 ], [ -64.926316748505656, 18.357058889687721 ], [ -64.926295792427993, 18.357055872201101 ], [ -64.926273328916693, 18.357058554411424 ], [ -64.926136368553045, 18.357090908573184 ], [ -64.926026900845045, 18.357101134499999 ], [ -64.92594610056932, 18.357104151986562 ], [ -64.925905027914325, 18.357096440631949 ], [ -64.925789692871263, 18.357071797824801 ], [ -64.925749293388265, 18.357067103956751 ], [ -64.925683411597674, 18.357064421746429 ], [ -64.925611996438647, 18.357064589384606 ], [ -64.92559573553865, 18.357063583555714 ], [ -64.925572433836635, 18.357059727878436 ], [ -64.925477215370847, 18.357036090900124 ], [ -64.925440837893632, 18.357028379545511 ], [ -64.925415190567264, 18.357028211907334 ], [ -64.925392559417787, 18.357032402860966 ], [ -64.925370094596815, 18.357042628787724 ], [ -64.925323323554665, 18.357069618528897 ], [ -64.925289797235564, 18.357086382343311 ], [ -64.92525190970531, 18.357100799223701 ], [ -64.925211845498552, 18.357113204446364 ], [ -64.925159876364262, 18.357120245248382 ], [ -64.925102376480879, 18.357122759820584 ], [ -64.925052755590229, 18.357116389571104 ], [ -64.925001793594447, 18.357087220534027 ], [ -64.924945299539957, 18.357067439233049 ], [ -64.924893499353459, 18.357044808083629 ], [ -64.924810015557739, 18.357013795026944 ], [ -64.924761234167477, 18.356985967095056 ], [ -64.924731225630069, 18.356956798057979 ], [ -64.924666183339866, 18.356937184395179 ], [ -64.924609855613824, 18.356927126106541 ], [ -64.924574651603564, 18.356918241284859 ], [ -64.924518494134986, 18.356900471641609 ], [ -64.924446408423421, 18.356871134966411 ], [ -64.924419252353744, 18.356859400296344 ], [ -64.924354041115748, 18.356847330349979 ], [ -64.924263684156131, 18.356829393068551 ], [ -64.924194449602624, 18.356818999503616 ], [ -64.924137117357418, 18.356799553478936 ], [ -64.924084980584951, 18.356768372784131 ], [ -64.924060002501506, 18.356748088568736 ], [ -64.923994122020588, 18.356697629487371 ], [ -64.923908123652666, 18.356631580058661 ], [ -64.923837045079608, 18.356593526199958 ], [ -64.923702599288163, 18.356553125407231 ], [ -64.923624144636733, 18.356541893651581 ], [ -64.923549879629263, 18.356532673553659 ], [ -64.92350059532464, 18.356516245015541 ], [ -64.923464719452113, 18.356492608037286 ], [ -64.923416608614502, 18.356466288848651 ], [ -64.92339464801762, 18.356437287449751 ], [ -64.92338190751866, 18.356403592182801 ], [ -64.92337520199294, 18.356363191390074 ], [ -64.9233691670197, 18.356343577727273 ], [ -64.9233495533569, 18.356302506381951 ], [ -64.923326084016708, 18.356263111418116 ], [ -64.923292053473517, 18.356140903211156 ], [ -64.923271433981768, 18.356093126340113 ], [ -64.923226170373198, 18.356034117713421 ], [ -64.92319867902728, 18.355978461849645 ], [ -64.923132963565138, 18.355898498454906 ], [ -64.923097759554935, 18.35587653785808 ], [ -64.923068927103827, 18.355859438767368 ], [ -64.923037746409022, 18.35584619535399 ], [ -64.923022322390125, 18.355843177867428 ], [ -64.923007739181287, 18.35584301022925 ], [ -64.922995166320447, 18.35585088922204 ], [ -64.922955436080315, 18.355889278356983 ], [ -64.922915538202062, 18.35593454065588 ], [ -64.922867426054722, 18.355974773810431 ], [ -64.92283188545855, 18.355990867072251 ], [ -64.922728117447377, 18.356030262036086 ], [ -64.922665757367497, 18.356054234290696 ], [ -64.922622171450087, 18.356109722516351 ], [ -64.922588811459434, 18.356133694770961 ], [ -64.922568862520279, 18.356147944013173 ], [ -64.922512536103909, 18.356171413353366 ], [ -64.922468950186442, 18.356178286517263 ], [ -64.922351268209354, 18.356196894351228 ], [ -64.922247164921941, 18.356223884092458 ], [ -64.922179606749921, 18.356238133334671 ], [ -64.922098469888226, 18.356253388405776 ], [ -64.922053710503747, 18.356265961266558 ], [ -64.922024373828549, 18.356278534127398 ], [ -64.921991013837896, 18.356293956836623 ], [ -64.921965197563736, 18.356311391203576 ], [ -64.921957653847244, 18.356324634616954 ], [ -64.921950110130751, 18.356352462548898 ], [ -64.921949942492631, 18.356371238020984 ], [ -64.921965197563736, 18.356407112583838 ], [ -64.921992857857504, 18.356446004633256 ], [ -64.922006101270881, 18.356460756789886 ], [ -64.922027056038871, 18.356472994374428 ], [ -64.922043316938812, 18.356484058491901 ], [ -64.922079694416084, 18.356503169240341 ], [ -64.922111378025306, 18.356517921397028 ], [ -64.922202573175639, 18.356598052429831 ], [ -64.922243644520904, 18.356646835129766 ], [ -64.922304832443444, 18.356709196519319 ], [ -64.922358811925847, 18.356769210974846 ], [ -64.922448329385077, 18.356857891553034 ], [ -64.922617477582037, 18.356998372317719 ], [ -64.922692076556132, 18.357040617129996 ], [ -64.922786121554907, 18.357090908573184 ], [ -64.922880334191802, 18.357110522236042 ], [ -64.923006733352395, 18.357145223331884 ], [ -64.923100275436752, 18.357236083205919 ], [ -64.923176046568187, 18.357338007197484 ], [ -64.923228350978775, 18.357434063853987 ], [ -64.923321222510538, 18.357598013958807 ], [ -64.923390792340285, 18.357730951006999 ], [ -64.923444939460808, 18.357939660496299 ], [ -64.923499589495748, 18.35810042547638 ], [ -64.923539655012178, 18.35823872694516 ], [ -64.923553904254391, 18.358300753058472 ], [ -64.92355641751692, 18.358351378468285 ], [ -64.923555914602446, 18.358404856345885 ], [ -64.923564130181205, 18.358472582156026 ], [ -64.923648955082058, 18.35856327439194 ], [ -64.923689691151083, 18.358622785933051 ], [ -64.923703605116998, 18.358704424399548 ], [ -64.923726571542716, 18.358783383275011 ], [ -64.92377853936739, 18.35890207108099 ], [ -64.923828326586488, 18.358950349556778 ], [ -64.923880966273373, 18.358990081106583 ], [ -64.923936788465653, 18.359021597077628 ], [ -64.923971489561438, 18.359100554643476 ], [ -64.923997642421568, 18.359142967093931 ], [ -64.923992948553575, 18.359345641609991 ], [ -64.923991438500593, 18.359520151608251 ], [ -64.923979034587603, 18.359590393300266 ], [ -64.923993282520144, 18.359649569565079 ], [ -64.923989763428835, 18.359714445526777 ], [ -64.923997642421568, 18.359821397353016 ], [ -64.924009040505723, 18.359866493323409 ], [ -64.923999820407801, 18.359903038438802 ], [ -64.923989091566568, 18.359934219133606 ], [ -64.923896556620775, 18.359933548581012 ], [ -64.923865877530716, 18.359925837226399 ], [ -64.923806367299278, 18.359945952494002 ], [ -64.923713997372261, 18.359937907172764 ], [ -64.923651803620828, 18.359996245246862 ], [ -64.923643423023293, 18.360084590548752 ], [ -64.923627162123353, 18.360172600574344 ], [ -64.92360335750692, 18.360253402159742 ], [ -64.923594975599713, 18.36034157851384 ], [ -64.923586426054328, 18.36042992381573 ], [ -64.923585586553941, 18.360518101479443 ], [ -64.923584917311075, 18.360606446781333 ], [ -64.92358407912036, 18.360694624445102 ], [ -64.923583408567765, 18.360782969746992 ], [ -64.923559603951333, 18.360863772642062 ], [ -64.923558764450945, 18.360951950305832 ], [ -64.923558095208023, 18.361040295607722 ], [ -64.923534122953413, 18.361128305633315 ], [ -64.92348735060159, 18.36120156350222 ], [ -64.923426163988665, 18.36114221959923 ], [ -64.923419289515095, 18.36105387429734 ], [ -64.923396827313468, 18.360972737435645 ], [ -64.923335807029048, 18.360898641376025 ], [ -64.92323572705709, 18.36088321735707 ], [ -64.923151237432535, 18.36086041856953 ], [ -64.923097928502727, 18.360793867536017 ], [ -64.923075464991427, 18.36071272936465 ], [ -64.923060880472917, 18.360624385372432 ], [ -64.923038416961617, 18.360543248510737 ], [ -64.923015953450317, 18.360462111649042 ], [ -64.922978234867912, 18.360380973477675 ], [ -64.92291604111648, 18.360439311551772 ], [ -64.922869102436152, 18.360519777860929 ], [ -64.922822162446209, 18.360593035729835 ], [ -64.92276013764257, 18.360651373803933 ], [ -64.92270565524575, 18.360717255594523 ], [ -64.922658716565479, 18.360790345825308 ], [ -64.922627200594377, 18.360871147410705 ], [ -64.922587973268662, 18.360951613719863 ], [ -64.922548745943004, 18.36103224766714 ], [ -64.922479008475079, 18.361083209662866 ], [ -64.922386472219614, 18.36108254042 ], [ -64.922294103602269, 18.361074492479418 ], [ -64.922209111063239, 18.36110315860202 ], [ -64.922116574807774, 18.36110986543747 ], [ -64.922039964175951, 18.361057728665003 ], [ -64.921971064898742, 18.361005760840385 ], [ -64.921886742912363, 18.3609682098961 ], [ -64.921817843635154, 18.360916243381155 ], [ -64.921725475017809, 18.360893444593557 ], [ -64.921632938762343, 18.36090735855953 ], [ -64.921540402506821, 18.36092143885395 ], [ -64.921448033889476, 18.360913224584863 ], [ -64.921185680194128, 18.36095530175902 ], [ -64.921093143938663, 18.36096200859447 ], [ -64.921038661541843, 18.36102772143721 ], [ -64.920991722861515, 18.361100980615845 ], [ -64.920975629599695, 18.361189156969886 ], [ -64.920998093110995, 18.361270293831581 ], [ -64.920989543565668, 18.36135847149535 ], [ -64.92097328266567, 18.361468609755946 ], [ -64.920987867184181, 18.361557122695956 ], [ -64.920979317638853, 18.361645300359726 ], [ -64.920970935731646, 18.361733478023439 ], [ -64.920993231604825, 18.361821990963506 ], [ -64.920969426988393, 18.361902624910783 ], [ -64.920945622371903, 18.361990802574496 ], [ -64.92089113997514, 18.362056516726966 ], [ -64.920821234869095, 18.362107478722749 ], [ -64.920744624237273, 18.362062720647941 ], [ -64.920737751073375, 18.361974374036379 ], [ -64.920738421625913, 18.361886196372666 ], [ -64.920739259816685, 18.361797851070776 ], [ -64.920716796305385, 18.361716715518753 ], [ -64.92070992314143, 18.361613784388624 ], [ -64.920703049977533, 18.361518063008418 ], [ -64.920696176813635, 18.361429717706528 ], [ -64.92069701500435, 18.361333997635995 ], [ -64.920690141840453, 18.361238442584238 ], [ -64.920690812393048, 18.36115009859202 ], [ -64.92068393922915, 18.361054375902143 ], [ -64.920677066065252, 18.360966030600252 ], [ -64.920615878142655, 18.360906686697263 ], [ -64.920515798170698, 18.360898641376025 ], [ -64.920423429553352, 18.360897801875637 ], [ -64.92029216888659, 18.36092630036012 ], [ -64.92023751885165, 18.360999390590905 ], [ -64.920213714235217, 18.361087400616498 ], [ -64.920189909618784, 18.361168203511568 ], [ -64.920189071428069, 18.361256547503785 ], [ -64.920180689520862, 18.361344726477228 ], [ -64.920179851330147, 18.361432902831268 ], [ -64.920179013139432, 18.361528625521146 ], [ -64.920170463594047, 18.361624177953559 ], [ -64.920154370332227, 18.361712355617328 ], [ -64.920138277070407, 18.361800534590714 ], [ -64.920099049744692, 18.361881168537991 ], [ -64.920006513489227, 18.361872952959288 ], [ -64.919945493204807, 18.361813776694419 ], [ -64.919923029693507, 18.361732639832724 ], [ -64.919916156529609, 18.361644294530834 ], [ -64.919831499266877, 18.361621495743293 ], [ -64.919799983295832, 18.361702129690514 ], [ -64.919745500899012, 18.361775387559476 ], [ -64.919692024331084, 18.361708667578171 ], [ -64.919692862521799, 18.361620489914401 ], [ -64.919693700712514, 18.361532144612511 ], [ -64.919694538903229, 18.361436424541978 ], [ -64.919687498101212, 18.361348245568536 ], [ -64.919672913582644, 18.361259732628525 ], [ -64.919673584135239, 18.361171554964756 ], [ -64.919667213885759, 18.361016992596035 ], [ -64.919644918012636, 18.36093585573434 ], [ -64.919622454501337, 18.360854718872645 ], [ -64.919576856926142, 18.360780790451088 ], [ -64.919515669003601, 18.360721446548155 ], [ -64.919428664806844, 18.36072228473887 ], [ -64.919323724638389, 18.360738210362513 ], [ -64.919268738017479, 18.36077844351712 ], [ -64.919206544266046, 18.360844157669533 ], [ -64.919144518152791, 18.360887743587 ], [ -64.919116857859024, 18.360877182383888 ], [ -64.919031866629666, 18.360898641376025 ], [ -64.918946705142844, 18.360942058345643 ], [ -64.918869257630035, 18.360985645572725 ], [ -64.918784766695751, 18.36095546939714 ], [ -64.918723746411331, 18.360896125494207 ], [ -64.918639256786776, 18.360858743497772 ], [ -64.918546720531253, 18.360872657463688 ], [ -64.91846172799228, 18.360901489914795 ], [ -64.918375729624415, 18.360890259468817 ], [ -64.918292581104993, 18.36085606128745 ], [ -64.918208091480381, 18.360818510343165 ], [ -64.918159308780503, 18.360805434567965 ], [ -64.918141706775373, 18.360811635869595 ], [ -64.918133827782583, 18.360826892250373 ], [ -64.918138186374335, 18.360884224495635 ], [ -64.918175738628292, 18.361002240439348 ], [ -64.918190155508682, 18.36111271397624 ], [ -64.91820172254063, 18.361170047531175 ], [ -64.918197195001028, 18.361201060587803 ], [ -64.918197697915446, 18.361216146711058 ], [ -64.918220161426746, 18.361239617360923 ], [ -64.91825821659512, 18.361260404490793 ], [ -64.91834270491006, 18.361290410408856 ], [ -64.918411605496885, 18.361342545871651 ], [ -64.918480503464423, 18.36140188977464 ], [ -64.918557114096188, 18.361454026547108 ], [ -64.918641436082623, 18.361491408543543 ], [ -64.918718214352566, 18.361536167927966 ], [ -64.918794824984388, 18.361580928622118 ], [ -64.918863725571271, 18.361633062775184 ], [ -64.918917033191349, 18.361699616428041 ], [ -64.918970509759333, 18.361766336409346 ], [ -64.919039241398366, 18.361818302924348 ], [ -64.919115852030188, 18.361870438387086 ], [ -64.919192631609803, 18.361915197771566 ], [ -64.919238227875269, 18.361989127502738 ], [ -64.919307127152479, 18.362041094017684 ], [ -64.919376026429632, 18.362093229480479 ], [ -64.919444758068664, 18.362152573383469 ], [ -64.919513657345874, 18.362204542517759 ], [ -64.919566966275681, 18.362271262499064 ], [ -64.919635865552834, 18.362323229014066 ], [ -64.919704764830044, 18.362375364476861 ], [ -64.919765952752584, 18.362434708379794 ], [ -64.919827140675125, 18.362494053592457 ], [ -64.919903751306947, 18.362538811667264 ], [ -64.919972650584157, 18.362590779491882 ], [ -64.920049261215979, 18.362635538876305 ], [ -64.920110449138519, 18.362694882779294 ], [ -64.920171469422939, 18.362754226682284 ], [ -64.920248247692882, 18.362798986066707 ], [ -64.920324858324705, 18.362843745451187 ], [ -64.92040934794926, 18.362881128757294 ], [ -64.920493837573815, 18.362903927544892 ], [ -64.92057815956025, 18.362948686929315 ], [ -64.92065493783025, 18.362993447623467 ], [ -64.920731548462015, 18.363045581776532 ], [ -64.920808159093838, 18.363097717239327 ], [ -64.920892481080273, 18.363135100545435 ], [ -64.920976970704828, 18.363179859929915 ], [ -64.92105358133665, 18.36322462062401 ], [ -64.921137903323086, 18.363262170258622 ], [ -64.921206802600295, 18.36331413808324 ], [ -64.921291292224851, 18.363344312949152 ], [ -64.921375949487583, 18.363366944098573 ], [ -64.921460439112138, 18.363404495042857 ], [ -64.921529338389348, 18.363456462867475 ], [ -64.921613492737606, 18.36350859833027 ], [ -64.921682392014816, 18.36356810987138 ], [ -64.921743412299236, 18.363634829852685 ], [ -64.921804600221776, 18.363694173755675 ], [ -64.921865788144316, 18.363753517658665 ], [ -64.921911385719511, 18.363827446080165 ], [ -64.921956814346856, 18.363901374501665 ], [ -64.921963856458603, 18.363989719803556 ], [ -64.921970729622501, 18.364077897467325 ], [ -64.921946925006011, 18.364158699052723 ], [ -64.921900153963861, 18.364231956921628 ], [ -64.921845671567041, 18.364297671074098 ], [ -64.921760511389891, 18.364341089353388 ], [ -64.921675518850918, 18.364362547035796 ], [ -64.921582982595396, 18.364369252561573 ], [ -64.921497990056423, 18.364390542605861 ], [ -64.921412997517393, 18.364419376366641 ], [ -64.921335548694856, 18.364470170724246 ], [ -64.921250556155883, 18.364499004485026 ], [ -64.921165563616853, 18.364535046686001 ], [ -64.921095658510808, 18.364586008681783 ], [ -64.92105659882327, 18.364659266550689 ], [ -64.921040337923273, 18.364745264918554 ], [ -64.921024244661453, 18.364833442582324 ], [ -64.920985017335738, 18.364914076529601 ], [ -64.920930367300798, 18.364987166760386 ], [ -64.92092969674826, 18.365075512062276 ], [ -64.9209908846708, 18.365134855965209 ], [ -64.92105190495522, 18.365194199868199 ], [ -64.92111292523964, 18.365260919849504 ], [ -64.921174113162181, 18.365320263752494 ], [ -64.921227422091988, 18.365386816095679 ], [ -64.921280898659916, 18.365453536076984 ], [ -64.921365220646351, 18.365490919383092 ], [ -64.921426408568891, 18.365550263286082 ], [ -64.921487596491488, 18.365609607189015 ], [ -64.921540905421239, 18.3656761595322 ], [ -64.921594214351046, 18.365742879513505 ], [ -64.921616677862346, 18.3658240163752 ], [ -64.921628747808711, 18.365933651721377 ], [ -64.921701838039496, 18.36600556848515 ], [ -64.921765875810536, 18.366063068368533 ], [ -64.921834942725866, 18.36611654493646 ], [ -64.921875846432954, 18.3661965083312 ], [ -64.921903003812304, 18.36627647041621 ], [ -64.921972070727634, 18.36633011593193 ], [ -64.922048010806861, 18.366377054612258 ], [ -64.922103163756219, 18.36644394223174 ], [ -64.922165189869531, 18.366504124325388 ], [ -64.922213134378694, 18.366577549832471 ], [ -64.922254204414287, 18.36665080639176 ], [ -64.922302317871299, 18.366724233208515 ], [ -64.922350262380519, 18.366797491077421 ], [ -64.922398206889682, 18.366870916584503 ], [ -64.922439278234947, 18.366944342091585 ], [ -64.922501304348259, 18.367004524185234 ], [ -64.922556457297617, 18.367071244166596 ], [ -64.922611442608854, 18.367138130476349 ], [ -64.92265251395412, 18.367211388345254 ], [ -64.922707499265357, 18.367278109636288 ], [ -64.922776566180687, 18.367331752532664 ], [ -64.922831551491925, 18.367405179349419 ], [ -64.92288653549349, 18.367472066968844 ], [ -64.9229415221144, 18.367538785640534 ], [ -64.922996507425637, 18.367612212457232 ], [ -64.923051491427202, 18.367679100076714 ], [ -64.923113517540457, 18.367739282170419 ], [ -64.923175544963385, 18.367799464264124 ], [ -64.923237571076697, 18.367859646357829 ], [ -64.923299597189953, 18.367919828451477 ], [ -64.923361790941385, 18.367980178183359 ], [ -64.923423817054697, 18.368040360277007 ], [ -64.92347176156386, 18.368113784474417 ], [ -64.923519706073023, 18.368187043653052 ], [ -64.923574859022438, 18.368253931272477 ], [ -64.923636885135693, 18.368314113366182 ], [ -64.923705784412903, 18.368374295459887 ], [ -64.923767810526158, 18.36844118176964 ], [ -64.923822794527723, 18.368508069389122 ], [ -64.923891861443053, 18.368561713595227 ], [ -64.923953887556308, 18.368621895688875 ], [ -64.924008874177218, 18.36868861567018 ], [ -64.924036199194688, 18.368741924599988 ], [ -64.92404994552254, 18.368768580374592 ], [ -64.924111971635796, 18.36882876246824 ], [ -64.924166955637361, 18.36890218666565 ], [ -64.924228815422168, 18.368969075594805 ], [ -64.924276927569508, 18.369042499792215 ], [ -64.924360076088931, 18.369076362697285 ], [ -64.924429141694588, 18.369130008213006 ], [ -64.924470045401677, 18.369209802659896 ], [ -64.924511116746999, 18.36928322947665 ], [ -64.924552189401936, 18.369356487345556 ], [ -64.924621256317266, 18.36941013155166 ], [ -64.924669199516757, 18.369483555749071 ], [ -64.924710272171751, 18.369556813617976 ], [ -64.924786378579427, 18.369603919936424 ], [ -64.924855445494757, 18.369657565452201 ], [ -64.924910430805994, 18.369724285433506 ], [ -64.924993580635089, 18.369758148338576 ], [ -64.925062647550419, 18.369811792544681 ], [ -64.925138587629647, 18.369858897553456 ], [ -64.925214695347051, 18.369899298346184 ], [ -64.925297842556802, 18.369926455725476 ], [ -64.925380992385897, 18.369960318630604 ], [ -64.925464139595647, 18.369994181535674 ], [ -64.925547289424742, 18.370021338915024 ], [ -64.92563747743651, 18.370041958406716 ], [ -64.925720459627485, 18.370082360509116 ], [ -64.925789526542815, 18.370136003405491 ], [ -64.92586563295049, 18.370189647611596 ], [ -64.925948781469913, 18.370216972629066 ], [ -64.92603897079141, 18.370237593430431 ], [ -64.92612899247473, 18.370271455025829 ], [ -64.926212140994153, 18.370305317930956 ], [ -64.926301995039353, 18.370345718723627 ], [ -64.926378102756701, 18.370386119516354 ], [ -64.926454210474105, 18.370433225834802 ], [ -64.926523277389435, 18.370486870040907 ], [ -64.926599386416456, 18.370527270833577 ], [ -64.926682198349909, 18.370587620565459 ], [ -64.926744224463221, 18.370654509494557 ], [ -64.926813291378551, 18.370708152390989 ], [ -64.926908509844338, 18.370767328655802 ], [ -64.926979085502978, 18.370815608441262 ], [ -64.927055194529999, 18.370856010543662 ], [ -64.927124260135656, 18.370909653440037 ], [ -64.927158290678904, 18.370989616834777 ], [ -64.927213443628261, 18.371056336816082 ], [ -64.927296424509564, 18.371090199721152 ], [ -64.927358450622819, 18.371150381814857 ], [ -64.927420644374251, 18.371210563908562 ], [ -64.927489543651404, 18.371270913640387 ], [ -64.927544528962642, 18.371337633621692 ], [ -64.927627677482064, 18.371364958639163 ], [ -64.927703785199469, 18.371411898629162 ], [ -64.927765812622397, 18.371478784938915 ], [ -64.927813755821944, 18.371552210445998 ], [ -64.927875781935199, 18.371612392539703 ], [ -64.92794484885053, 18.371666036745808 ], [ -64.92801391576586, 18.371719680951855 ], [ -64.928068901077097, 18.371786400933161 ], [ -64.928123886388335, 18.371853288552643 ], [ -64.928171998535674, 18.371926546421548 ], [ -64.928219943044837, 18.371999971928631 ], [ -64.928281969158093, 18.372060154022336 ], [ -64.928316167339517, 18.372140117417018 ], [ -64.928357071046605, 18.372226618699301 ], [ -64.928412056357843, 18.372293506318783 ], [ -64.928488164075247, 18.372333907111511 ], [ -64.92857131259467, 18.372367770016581 ], [ -64.92866133427799, 18.372401632921651 ], [ -64.928723360391245, 18.372461815015356 ], [ -64.928778345702483, 18.372528534996661 ], [ -64.928847412617813, 18.372582179202766 ], [ -64.928930561137236, 18.372616042107836 ], [ -64.92900666885464, 18.372656442900563 ], [ -64.929089817374063, 18.372697011331411 ], [ -64.929165757453291, 18.372743950011738 ], [ -64.929241865170638, 18.372784350804409 ], [ -64.929317972888043, 18.372824751597136 ], [ -64.929372958199281, 18.372891639216562 ], [ -64.929442025114611, 18.372945283422666 ], [ -64.929525173634033, 18.372979146327737 ], [ -64.929608322153456, 18.373019547120464 ], [ -64.929691303034701, 18.373053410025534 ], [ -64.929767410752106, 18.373093810818261 ], [ -64.929843518469454, 18.373140749498532 ], [ -64.929919626186859, 18.373187855817037 ], [ -64.929988525464012, 18.373241500023084 ], [ -64.930071673983491, 18.373275362928212 ], [ -64.930147781700839, 18.373315763720882 ], [ -64.930230930220262, 18.373349626626009 ], [ -64.930321119541759, 18.373370246117702 ], [ -64.930411476501376, 18.373370916670297 ], [ -64.930501833460994, 18.373378292748612 ], [ -64.930591855144314, 18.373405450127962 ], [ -64.930675002354064, 18.373432775145432 ], [ -64.930709704759522, 18.373446186196929 ], [ -64.930758152183159, 18.373466470412325 ], [ -64.930834259900507, 18.373506871205052 ], [ -64.93091740841993, 18.373540734110122 ], [ -64.931000556939352, 18.373574597015249 ], [ -64.931083537820655, 18.37360845992032 ], [ -64.931159645538003, 18.373648860713047 ], [ -64.931242794057425, 18.373689261505717 ], [ -64.931325942576848, 18.373716586523187 ], [ -64.931401881346403, 18.373770230729292 ], [ -64.931463907459715, 18.373830412822997 ], [ -64.931504980114653, 18.373903670691902 ], [ -64.931560133064067, 18.373970558311385 ], [ -64.931601204409333, 18.37404381618029 ], [ -64.931642274444926, 18.374117074049195 ], [ -64.931718214524153, 18.3741641803677 ], [ -64.93179432355123, 18.374217824573748 ], [ -64.931849307552739, 18.37429125008083 ], [ -64.931911334975723, 18.374351599812655 ], [ -64.931987441383399, 18.374392000605383 ], [ -64.932063381462683, 18.37443893928571 ], [ -64.932139490489703, 18.374479340078381 ], [ -64.932215598207108, 18.374519740871108 ], [ -64.932291704614784, 18.374560140354163 ], [ -64.932360771530114, 18.374613785869883 ], [ -64.932429838445444, 18.374667430075988 ], [ -64.932512988274539, 18.374694587455281 ], [ -64.932582055189869, 18.374748230351713 ], [ -64.932651122105199, 18.374801875867433 ], [ -64.932706107416436, 18.374868763486916 ], [ -64.932768133529692, 18.374928945580621 ], [ -64.932830159643004, 18.374995833200046 ], [ -64.932885143644569, 18.375062553181351 ], [ -64.932947169757824, 18.375122735275056 ], [ -64.933016236673154, 18.375176379481161 ], [ -64.933085303588484, 18.375236729212986 ], [ -64.93314732970174, 18.375296911306691 ], [ -64.933181361554659, 18.375376707063253 ], [ -64.933250428469989, 18.375430351269301 ], [ -64.933319495385319, 18.375483995475406 ], [ -64.93336743858481, 18.375557420982489 ], [ -64.933429464698122, 18.375617603076137 ], [ -64.93350557241547, 18.375658002559192 ], [ -64.933574640640472, 18.375711648074969 ], [ -64.933643707555802, 18.375765292281017 ], [ -64.93369165075535, 18.375838716478427 ], [ -64.93376071767068, 18.375892361994147 ], [ -64.933822743783935, 18.375952544087852 ], [ -64.933891810699265, 18.376006188293957 ], [ -64.933967918416613, 18.376053126974284 ], [ -64.934036986641615, 18.376106771180332 ], [ -64.93411309435902, 18.376147171973059 ], [ -64.934154164394613, 18.376220597480142 ], [ -64.934223232619615, 18.376274074048069 ], [ -64.934306213500918, 18.376307935643467 ], [ -64.934389360710668, 18.376341798548594 ], [ -64.934472510539763, 18.37636895723756 ], [ -64.934555657749513, 18.37640282014263 ], [ -64.934590358845298, 18.376409693306584 ], [ -64.934645848380626, 18.37642343963438 ], [ -64.934728995590376, 18.37645730253945 ], [ -64.934805104617453, 18.376497703332177 ], [ -64.934881043387009, 18.376551347538225 ], [ -64.934943069500264, 18.37661152963193 ], [ -64.935019178527341, 18.376658634640705 ], [ -64.935095284935016, 18.376705742268882 ], [ -64.935171225014244, 18.376752679639537 ], [ -64.935226377963659, 18.376819568568635 ], [ -64.935281364584569, 18.37688628854994 ], [ -64.935343389388152, 18.376953176169422 ], [ -64.935370379129324, 18.377032970616256 ], [ -64.935432406552309, 18.377093152709961 ], [ -64.935515553762059, 18.377127015615088 ], [ -64.935598703591154, 18.377160878520158 ], [ -64.935674809998829, 18.377201280622501 ], [ -64.935757958518252, 18.377235143527628 ], [ -64.935826857795462, 18.377295325621333 ], [ -64.93590296551281, 18.377348968517708 ], [ -64.93597203242814, 18.377402612723813 ], [ -64.935999022169369, 18.377482577428168 ], [ -64.936061049592297, 18.377542759521873 ], [ -64.93612307439588, 18.377609645831626 ], [ -64.93617118654322, 18.377682903700588 ], [ -64.936212257888485, 18.377756330517286 ], [ -64.93621141969777, 18.377842496523328 ], [ -64.936245450241017, 18.377922458608339 ], [ -64.936279648422385, 18.378002254364901 ], [ -64.936306638163558, 18.378082217759584 ], [ -64.936361791112972, 18.378148937740889 ], [ -64.93641677642421, 18.378215825360314 ], [ -64.936443933803503, 18.378295622426549 ], [ -64.936485005148825, 18.378368878985839 ], [ -64.936532949657988, 18.378442304492864 ], [ -64.936553066235263, 18.378528639446699 ], [ -64.936580223614612, 18.37860860153171 ], [ -64.936600340191887, 18.378694936485545 ], [ -64.936641411537153, 18.378774898570555 ], [ -64.936717519254501, 18.378815299363282 ], [ -64.936793626971905, 18.378855701465682 ], [ -64.936855653085161, 18.378915883559387 ], [ -64.936917679198473, 18.37897623198154 ], [ -64.936993786915821, 18.37901663277421 ], [ -64.937055813029133, 18.379076814867915 ], [ -64.937096884374398, 18.379150072736877 ], [ -64.937151869685636, 18.379216960356302 ], [ -64.937220936600966, 18.379270604562407 ], [ -64.937262007946231, 18.379343862431313 ], [ -64.937310120093571, 18.379417287938395 ], [ -64.937323195868771, 18.379503621582558 ], [ -64.937350353248121, 18.379583418648792 ], [ -64.937391424593386, 18.379656676517698 ], [ -64.937425455136633, 18.379736638602708 ], [ -64.937459485679881, 18.379816601997391 ], [ -64.937458815127286, 18.379902768003433 ], [ -64.937437189806701, 18.379988934009418 ], [ -64.937464347186051, 18.380068729765981 ], [ -64.937505418531316, 18.380141987634886 ], [ -64.937574485446646, 18.380195631840991 ], [ -64.937643552361976, 18.380249276047039 ], [ -64.937726700881399, 18.380283138952166 ], [ -64.937795767796729, 18.380336783158214 ], [ -64.937878748678031, 18.380370646063341 ], [ -64.937968937999472, 18.380397803442634 ], [ -64.938051918880774, 18.380438371873481 ], [ -64.938107071830132, 18.380505091854786 ], [ -64.938120147605389, 18.380591425498949 ], [ -64.938161218950654, 18.380664851006031 ], [ -64.938223245063909, 18.380725033099736 ], [ -64.938299352781314, 18.380771971780064 ], [ -64.938375460498662, 18.380819078098511 ], [ -64.938444527413992, 18.380872722304616 ], [ -64.938527675933415, 18.380899879683909 ], [ -64.938617865254912, 18.380913961288002 ], [ -64.93869397297226, 18.380954362080729 ], [ -64.93876303988759, 18.381008006286834 ], [ -64.938839147604995, 18.381048407079504 ], [ -64.93890117371825, 18.381108589173209 ], [ -64.93897024063358, 18.381162233379314 ], [ -64.93903930754891, 18.381215877585362 ], [ -64.93908725205813, 18.381289135454267 ], [ -64.939086581505535, 18.38137546909843 ], [ -64.939058083021052, 18.381454761940574 ], [ -64.939036456390795, 18.38154092794656 ], [ -64.939077529045733, 18.381614185815522 ], [ -64.93916771836723, 18.381634805307215 ], [ -64.939258242964968, 18.381622232446432 ], [ -64.939362513890558, 18.381629776162924 ], [ -64.93944566240998, 18.381656933542217 ], [ -64.939521602489208, 18.381704039860722 ], [ -64.939576755438566, 18.381770759842027 ], [ -64.939645822353896, 18.381824404048075 ], [ -64.93974271720117, 18.381858266953202 ], [ -64.939825864410921, 18.381892129858272 ], [ -64.939909014240015, 18.381925992763342 ], [ -64.939963999551253, 18.381992712744648 ], [ -64.940012110388864, 18.38206613825173 ], [ -64.940053183043858, 18.382139396120635 ], [ -64.940094254389123, 18.382212821627718 ], [ -64.940177402908546, 18.382246684532845 ], [ -64.940218977168229, 18.382246852170965 ], [ -64.940267758558491, 18.382240649559662 ], [ -64.940350908387586, 18.382267806938955 ], [ -64.940427016104934, 18.382314913257403 ], [ -64.940503122512666, 18.382362019575908 ], [ -64.940558109133576, 18.382428739557213 ], [ -64.940613094444814, 18.382495459538518 ], [ -64.940640250514434, 18.382581960820801 ], [ -64.940695237135344, 18.382648848440283 ], [ -64.940729266368919, 18.382728644196845 ], [ -64.940749384255867, 18.382815145479128 ], [ -64.940707139443589, 18.382887732795496 ], [ -64.940616613536122, 18.382900304346606 ], [ -64.940533466326372, 18.382873148276929 ], [ -64.940450316497277, 18.382845990897636 ], [ -64.940367001649406, 18.382818833518286 ], [ -64.940266920367776, 18.382767536246206 ], [ -64.940197016571403, 18.382716741888601 ], [ -64.940135996286983, 18.382657565623788 ], [ -64.940057206359313, 18.382619176488788 ], [ -64.939974056530218, 18.382589169260996 ], [ -64.939895267912163, 18.382554971079628 ], [ -64.9398342476278, 18.382495794814815 ], [ -64.939799714170135, 18.382415831420133 ], [ -64.93972980906409, 18.38236486942435 ], [ -64.939641799038441, 18.382376771732538 ], [ -64.93956284147265, 18.382367719272793 ], [ -64.939558650519018, 18.382350955458378 ], [ -64.93950651505628, 18.382283397286358 ], [ -64.939418840306928, 18.38224919910499 ], [ -64.939335691787505, 18.382219191877198 ], [ -64.939261260451588, 18.382176611788623 ], [ -64.93918699675379, 18.382130008384593 ], [ -64.93910820682612, 18.38209161924965 ], [ -64.93902941689845, 18.38205323011465 ], [ -64.938941574510977, 18.382052559562055 ], [ -64.938774774557714, 18.382042836549715 ], [ -64.938577464462185, 18.381978295864258 ], [ -64.937820745880174, 18.381578143614547 ], [ -64.937806496637961, 18.381493318713694 ], [ -64.937767604588544, 18.381417378634467 ], [ -64.937719995355621, 18.381341606193359 ], [ -64.937698705311334, 18.381257451845102 ], [ -64.937664171853669, 18.381181679403994 ], [ -64.937589908155928, 18.381134908361787 ], [ -64.937542131284886, 18.381063326874312 ], [ -64.937494522051963, 18.380987386795084 ], [ -64.937446577542801, 18.380932569122024 ], [ -64.937446745180921, 18.380915637669489 ], [ -64.937429981366506, 18.380831650959294 ], [ -64.937421934735596, 18.380743473295581 ], [ -64.937387401277931, 18.380667700854474 ], [ -64.937344150636818, 18.380596119366999 ], [ -64.937269719300843, 18.380549348324848 ], [ -64.937186570781421, 18.380515150143424 ], [ -64.937129573812456, 18.380493692461016 ], [ -64.93713007672693, 18.380451782925036 ], [ -64.937091184677513, 18.380376010483928 ], [ -64.937038881576598, 18.380308453621581 ], [ -64.936969144108673, 18.380253299362494 ], [ -64.936903765232501, 18.380198314051313 ], [ -64.936833860126455, 18.380147352055531 ], [ -64.936786083255413, 18.380075770567998 ], [ -64.936716178149368, 18.380024808572273 ], [ -64.936672927508198, 18.379953227084741 ], [ -64.936646943595917, 18.37990679262856 ], [ -64.936629509228908, 18.379881477959145 ], [ -64.936510989061105, 18.379868066907591 ], [ -64.93642314667369, 18.379867396355053 ], [ -64.936335471924338, 18.379845603396291 ], [ -64.936313512637184, 18.379841244804538 ], [ -64.936246958984327, 18.37981643435927 ], [ -64.936181580108155, 18.379761449048033 ], [ -64.936151405242242, 18.37968148565335 ], [ -64.936134641427827, 18.379597498943212 ], [ -64.936135311980422, 18.379513513542747 ], [ -64.936065574512497, 18.379458526921837 ], [ -64.935977732125082, 18.379445115870283 ], [ -64.935960130119952, 18.379445115870283 ], [ -64.935903468427284, 18.379398512466253 ], [ -64.935815793677932, 18.379376719507547 ], [ -64.935771369569807, 18.379418461405407 ], [ -64.935728118928637, 18.379355095496635 ], [ -64.935684700649347, 18.379283512699487 ], [ -64.935614795543302, 18.379232550703705 ], [ -64.935545058075377, 18.379181756346043 ], [ -64.935479511561084, 18.379126603396685 ], [ -64.935405247863287, 18.379084190946287 ], [ -64.935330816527369, 18.379041610857712 ], [ -64.935252195547491, 18.379003221722712 ], [ -64.935164351850347, 18.378989979619007 ], [ -64.935076509462931, 18.378976734895957 ], [ -64.934993360943508, 18.378950918621797 ], [ -64.934927480462591, 18.378941867471667 ], [ -64.934905518556036, 18.378933316616667 ], [ -64.934831254858238, 18.378890905475885 ], [ -64.934770234573818, 18.3788317279014 ], [ -64.934691444646148, 18.3787933387664 ], [ -64.934603769896853, 18.378779927714902 ], [ -64.934516096457173, 18.37874992048711 ], [ -64.934490446511461, 18.378665767448524 ], [ -64.934447195870348, 18.378594184651377 ], [ -64.934403777591058, 18.378522604473517 ], [ -64.934324987663331, 18.378484215338574 ], [ -64.93425072396559, 18.378437442986694 ], [ -64.934171935347536, 18.378403244805327 ], [ -64.93408426059824, 18.378385810438374 ], [ -64.933996416901095, 18.378372568334669 ], [ -64.933913268381673, 18.378346750750779 ], [ -64.933829953533802, 18.378320934476619 ], [ -64.93374663737626, 18.378295119512131 ], [ -64.93366332121866, 18.378269301928299 ], [ -64.933602468572417, 18.378209959334981 ], [ -64.933519152414817, 18.378179950797517 ], [ -64.933431308717672, 18.378179281554651 ], [ -64.933373642505842, 18.378241810582324 ], [ -64.933369116275969, 18.378258574396739 ], [ -64.933325530358502, 18.378216329584461 ], [ -64.933294852578172, 18.378207612400956 ], [ -64.933211201144275, 18.378232087569984 ], [ -64.933123023480562, 18.378252370475707 ], [ -64.933060997367249, 18.378314899503437 ], [ -64.933016908535421, 18.378331329351226 ], [ -64.932973153670162, 18.378322610858049 ], [ -64.932902745649642, 18.378317749351879 ], [ -64.932885143644569, 18.378334514475966 ], [ -64.932880617414639, 18.378342896383174 ], [ -64.932849773305804, 18.378350941704412 ], [ -64.932823789393524, 18.378304673576679 ], [ -64.932806353716842, 18.378296125340967 ], [ -64.932727565098844, 18.378261925849927 ], [ -64.932653132453254, 18.378219345761352 ], [ -64.932592281116627, 18.378160169496539 ], [ -64.932487673605124, 18.378050198874064 ], [ -64.932444424273626, 18.377978617386589 ], [ -64.932401004684664, 18.377907035899113 ], [ -64.932308972653288, 18.377885244250024 ], [ -64.932221130265816, 18.377871999526974 ], [ -64.932146196015481, 18.377913407458266 ], [ -64.932058353628008, 18.377904353688791 ], [ -64.931979562390666, 18.377870155507424 ], [ -64.931891721312866, 18.377856913403718 ], [ -64.931803711287273, 18.377868646764114 ], [ -64.931729447589476, 18.377826235623331 ], [ -64.931668427305056, 18.377767059358519 ], [ -64.931659710121551, 18.377762699457094 ], [ -64.931603886619598, 18.377710228718058 ], [ -64.931542866335235, 18.377651052453189 ], [ -64.931468602637437, 18.377608472364614 ], [ -64.931385286479838, 18.377582657400126 ], [ -64.93129308550067, 18.377577794584283 ], [ -64.93120507547502, 18.377593887846103 ], [ -64.931112706857732, 18.377609982417596 ], [ -64.93102938939046, 18.377579973880131 ], [ -64.930955127002335, 18.377537393791556 ], [ -64.930867284614862, 18.377519959424603 ], [ -64.93078413609544, 18.377494144460115 ], [ -64.930736359224397, 18.377422395334463 ], [ -64.93071506918011, 18.377338239676476 ], [ -64.930689420544127, 18.377258445229643 ], [ -64.930681373913217, 18.377174458519505 ], [ -64.930647008093672, 18.377094495124823 ], [ -64.930608116044255, 18.377018721374043 ], [ -64.930555812943339, 18.376951164511695 ], [ -64.930499318888792, 18.376883606339675 ], [ -64.930447183425997, 18.376816048167598 ], [ -64.930381804549882, 18.37676089521824 ], [ -64.930311899443836, 18.376710099550962 ], [ -64.930246520567664, 18.376655115549397 ], [ -64.930158678180192, 18.376637513544267 ], [ -64.930149960996687, 18.376637513544267 ], [ -64.930101345934929, 18.37666232267992 ], [ -64.930083576291679, 18.376683111119405 ], [ -64.930025908770176, 18.37674983110071 ], [ -64.929981484661994, 18.376820740725975 ], [ -64.929941419145564, 18.376875055484618 ], [ -64.929915099956986, 18.376874721517993 ], [ -64.929840668621011, 18.376832307757923 ], [ -64.929766404923214, 18.376789727669347 ], [ -64.929691973587296, 18.376747147580772 ], [ -64.929622236119428, 18.376696354532783 ], [ -64.929561215835008, 18.37663701062985 ], [ -64.929482425907281, 18.37659878913297 ], [ -64.929403635979611, 18.376560398688355 ], [ -64.929333898511743, 18.376505247048613 ], [ -64.929259467175768, 18.37645847469679 ], [ -64.929194088299596, 18.376403489385552 ], [ -64.92912870942348, 18.376348336436195 ], [ -64.929067521500883, 18.376310116249044 ], [ -64.92904991949581, 18.376310116249044 ], [ -64.929044722713343, 18.376398126274637 ], [ -64.929044052160748, 18.376481945346598 ], [ -64.929060815975163, 18.376570290648488 ], [ -64.929077747427698, 18.376654277358682 ], [ -64.9290418728649, 18.376729545575643 ], [ -64.92903717899685, 18.376763074514088 ], [ -64.928971129568083, 18.376779335414085 ], [ -64.928883287180668, 18.376778663551818 ], [ -64.928795612431315, 18.376761061546688 ], [ -64.928712296273773, 18.376731055628625 ], [ -64.928633506346102, 18.376692666493625 ], [ -64.92859846997402, 18.376679924684993 ], [ -64.928555722247268, 18.37665444368713 ], [ -64.928485817141222, 18.376603481691347 ], [ -64.92843804027018, 18.376531732565695 ], [ -64.928390431037315, 18.376460152387892 ], [ -64.928320525931213, 18.37640919039211 ], [ -64.928250620825168, 18.376358228396327 ], [ -64.928171830897497, 18.376324196543464 ], [ -64.928123718750157, 18.376306931124304 ], [ -64.9280975671997, 18.376281616454889 ], [ -64.92806739364346, 18.376201654369879 ], [ -64.928033026514299, 18.376125880619099 ], [ -64.927998493056634, 18.376045918534089 ], [ -64.927959601007217, 18.375970146092982 ], [ -64.927916350366047, 18.375894206013754 ], [ -64.927864214903252, 18.375830837485637 ], [ -64.927859688673379, 18.375830837485637 ], [ -64.927855330081627, 18.375830837485637 ], [ -64.927851642042469, 18.375746852085172 ], [ -64.927825825768309, 18.375696393003864 ], [ -64.927852480233184, 18.375663033013211 ], [ -64.927910147754744, 18.375596313031849 ], [ -64.927910819616955, 18.375512493959889 ], [ -64.927854324252792, 18.375448959103323 ], [ -64.927775869601362, 18.375368660432343 ], [ -64.927732452631744, 18.375297078944811 ], [ -64.927675957267581, 18.375233710416751 ], [ -64.927637065218164, 18.375157939285316 ], [ -64.927611082615499, 18.375107312565831 ], [ -64.927607057990372, 18.375073784937001 ], [ -64.927602699398619, 18.375069426345306 ], [ -64.927563639711082, 18.375002035811406 ], [ -64.927507145656534, 18.374934477639385 ], [ -64.927428355728864, 18.374896088504386 ], [ -64.927340680979569, 18.374874463183801 ], [ -64.927252838592096, 18.374873792631206 ], [ -64.927165163842801, 18.374860549217829 ], [ -64.927077321455329, 18.374847305804451 ], [ -64.927072962863576, 18.374842947212755 ], [ -64.927002219566816, 18.374888544787893 ], [ -64.926914209541223, 18.374908829003346 ], [ -64.926834749060959, 18.374946043361604 ], [ -64.926759648482118, 18.374991642246471 ], [ -64.926702314927184, 18.375016285053619 ], [ -64.926675995738606, 18.375016117415498 ], [ -64.926667278555101, 18.375015948467649 ], [ -64.926601732040808, 18.374973537326923 ], [ -64.926531826934763, 18.374918384377509 ], [ -64.926492431970928, 18.374905643878606 ], [ -64.92644415349514, 18.374905140964131 ], [ -64.926400063353583, 18.374925760455881 ], [ -64.926369051606628, 18.374950738539326 ], [ -64.926293948408443, 18.374992145160888 ], [ -64.926210296974546, 18.375016620329916 ], [ -64.926122286948953, 18.375020139421281 ], [ -64.92603913842953, 18.374985942549586 ], [ -64.925951632628028, 18.374955766374001 ], [ -64.925868316470485, 18.374929951409456 ], [ -64.925785000312885, 18.374904135135296 ], [ -64.925706210385215, 18.374869936953928 ], [ -64.92565809692826, 18.374848646909641 ], [ -64.92563261593034, 18.374845963389646 ], [ -64.925646194620015, 18.374808246116913 ], [ -64.925681901544692, 18.374728785636648 ], [ -64.925669497631702, 18.374644798926511 ], [ -64.92562624568086, 18.374573217439035 ], [ -64.92560864367573, 18.374564667893708 ], [ -64.925574111527737, 18.374505659267015 ], [ -64.925530691938775, 18.37443407777954 ], [ -64.925465314372332, 18.374378924830125 ], [ -64.925377470675187, 18.374374063323955 ], [ -64.925285269695962, 18.374360819910578 ], [ -64.925211007307837, 18.374318239822003 ], [ -64.925145628431721, 18.374263254510765 ], [ -64.925088965429325, 18.374199887292377 ], [ -64.925054433281389, 18.374123947213093 ], [ -64.924989054405216, 18.37406477094828 ], [ -64.924910264477546, 18.374026381813337 ], [ -64.924822588418522, 18.374008947446328 ], [ -64.924743798490852, 18.37397474926496 ], [ -64.924678419614679, 18.373919763953722 ], [ -64.924639361236814, 18.373852205781702 ], [ -64.924635002645061, 18.37384801482807 ], [ -64.924604660141028, 18.373801579062217 ], [ -64.924600469187396, 18.37377224238702 ], [ -64.924631985158499, 18.373692781906755 ], [ -64.924676575595129, 18.373621870971817 ], [ -64.924694849462469, 18.373538051899857 ], [ -64.924690826147014, 18.373491951410244 ], [ -64.924673559418181, 18.373454065189719 ], [ -64.924612539133761, 18.373394721286729 ], [ -64.924595103457136, 18.373386339379522 ], [ -64.924528886390249, 18.373423555047509 ], [ -64.924453784501736, 18.373464794030895 ], [ -64.924365943423936, 18.373472505385507 ], [ -64.924277933398344, 18.373488598647384 ], [ -64.924273407168471, 18.373492789600959 ], [ -64.924221270396004, 18.373425231428939 ], [ -64.924151366599631, 18.373374437071277 ], [ -64.924085986413786, 18.373319284121919 ], [ -64.924020607537614, 18.373260107857107 ], [ -64.923955228661498, 18.373204954907692 ], [ -64.923885323555453, 18.373154160550087 ], [ -64.923810893529151, 18.373111580461511 ], [ -64.923789100570445, 18.373103030916184 ], [ -64.923727745009728, 18.373085764187351 ], [ -64.92363554403056, 18.373076711727549 ], [ -64.923569828568418, 18.373059277360596 ], [ -64.923561111384913, 18.373034131638974 ], [ -64.923561949575628, 18.372945953975204 ], [ -64.923562621437895, 18.372862134903244 ], [ -64.92351467561906, 18.372832462951749 ], [ -64.923483831510225, 18.372827936721876 ], [ -64.923396155451258, 18.372814693308499 ], [ -64.923382913347552, 18.372814525670321 ], [ -64.923338655567875, 18.372752164280769 ], [ -64.923290880006505, 18.372680415155116 ], [ -64.92323874454371, 18.372612856983096 ], [ -64.92322583640663, 18.372591902215106 ], [ -64.923239581424752, 18.372529037911079 ], [ -64.923279648250855, 18.372453768384446 ], [ -64.923302447038395, 18.372370116950606 ], [ -64.923342680193002, 18.372294847423916 ], [ -64.923343349435868, 18.372211028351956 ], [ -64.9233177021095, 18.372131064957273 ], [ -64.923274282520538, 18.372059483469741 ], [ -64.92327059448138, 18.371975496759603 ], [ -64.923284677395145, 18.371887486734011 ], [ -64.92328534794774, 18.371803667661993 ], [ -64.923299261913655, 18.3717156576364 ], [ -64.923295406236377, 18.371652625694253 ], [ -64.923286855381377, 18.371631670926263 ], [ -64.923252155595208, 18.37158523516041 ], [ -64.92322583640663, 18.371572327023273 ], [ -64.923216951585005, 18.371572327023273 ], [ -64.923142184972733, 18.371596969830478 ], [ -64.923062724492524, 18.371634017860288 ], [ -64.922983264012259, 18.371667042574643 ], [ -64.922917214583492, 18.371695877645095 ], [ -64.922899612578362, 18.371695708697303 ], [ -64.922899612578362, 18.371699899650878 ], [ -64.92286457620628, 18.37167860960659 ], [ -64.922838592293942, 18.371636532432433 ], [ -64.922777572009579, 18.371572997575868 ], [ -64.922698948410357, 18.371534608440868 ], [ -64.922624518384055, 18.37149219599047 ], [ -64.922568024329564, 18.371428828772025 ], [ -64.922502645453392, 18.371369484869035 ], [ -64.922450509990597, 18.371301926697015 ], [ -64.922446151398844, 18.371289353836232 ], [ -64.922389488396504, 18.371242750432202 ], [ -64.922332828013509, 18.37117938452343 ], [ -64.922285218780644, 18.371107801726282 ], [ -64.922241800501354, 18.37103605260063 ], [ -64.922189665038559, 18.37096849442861 ], [ -64.922142055805637, 18.370896912941134 ], [ -64.922098637526346, 18.370825163815482 ], [ -64.922064270397186, 18.370746038611514 ], [ -64.922038120156344, 18.370708152390989 ], [ -64.922012136244064, 18.370678480439494 ], [ -64.921928820086464, 18.370652665475006 ], [ -64.921854556388666, 18.370610084076759 ], [ -64.921784651282621, 18.370559289719097 ], [ -64.921736874411579, 18.370487540593444 ], [ -64.921680380357088, 18.370424173375056 ], [ -64.921606116659291, 18.370373211379274 ], [ -64.921531852961493, 18.370326441646739 ], [ -64.921470832677073, 18.370267265381926 ], [ -64.921405286162781, 18.370212278761016 ], [ -64.921335548694856, 18.370161316765234 ], [ -64.921247873945561, 18.370135500491074 ], [ -64.921239156762056, 18.370131309537499 ], [ -64.921181824516793, 18.370143379483864 ], [ -64.921159863919968, 18.370147402799319 ], [ -64.92112885086334, 18.370176571836339 ], [ -64.921115272173665, 18.370218313734199 ], [ -64.921096999615941, 18.370302132806216 ], [ -64.921048049277886, 18.370373043741097 ], [ -64.921021562451131, 18.370385448963759 ], [ -64.920955680660541, 18.370393327956549 ], [ -64.920872364502998, 18.370367511682389 ], [ -64.920784689753702, 18.370354269578684 ], [ -64.920696679728053, 18.370353430078296 ], [ -64.920608837340637, 18.370356950479277 ], [ -64.920521162591285, 18.370339517421996 ], [ -64.920437846433742, 18.370313699838164 ], [ -64.920350171684447, 18.370296265471154 ], [ -64.920267023165025, 18.370262068599459 ], [ -64.920140121090014, 18.370198029518804 ], [ -64.920061331162344, 18.370159640383804 ], [ -64.919995952286172, 18.370104656382239 ], [ -64.919956724960457, 18.370054028353081 ], [ -64.919943816823377, 18.370037096900546 ], [ -64.919891681360582, 18.369969538728526 ], [ -64.919826134846289, 18.369914553417289 ], [ -64.919760755970117, 18.369859400467931 ], [ -64.919699735685697, 18.369796034559158 ], [ -64.919665202228032, 18.369737024622793 ], [ -64.919652126452831, 18.369724285433506 ], [ -64.919564284065359, 18.369723613571239 ], [ -64.919471747809894, 18.369743897786691 ], [ -64.919383905422421, 18.369751610450976 ], [ -64.919291536805076, 18.369750938588709 ], [ -64.919212746877406, 18.369712549453766 ], [ -64.919134124587856, 18.369674161628438 ], [ -64.919125239766231, 18.369669801727014 ], [ -64.919063716567393, 18.369686231574804 ], [ -64.919046114562263, 18.369686062627011 ], [ -64.919019460097388, 18.369711040710456 ], [ -64.918992805632456, 18.369752782608316 ], [ -64.918988279402583, 18.369760996877403 ], [ -64.918961458609203, 18.369811289630263 ], [ -64.918930779519201, 18.369810954353966 ], [ -64.918917536105823, 18.369806594452541 ], [ -64.918851989591531, 18.369772563909294 ], [ -64.918843272408026, 18.369768372955718 ], [ -64.918769680572495, 18.369746747635133 ], [ -64.918681836875351, 18.369741887438636 ], [ -64.918593994487878, 18.369724451762011 ], [ -64.91850179350871, 18.369719422617663 ], [ -64.918462398544875, 18.369706514480583 ], [ -64.918423003580983, 18.369685224436296 ], [ -64.91837975293987, 18.369613642948821 ], [ -64.918345219482205, 18.369537870507713 ], [ -64.918341699081168, 18.369449692843943 ], [ -64.91830280703175, 18.369373920402893 ], [ -64.91824178674733, 18.36931055449412 ], [ -64.918167523049533, 18.369259592498338 ], [ -64.918115387586795, 18.369192034326318 ], [ -64.918054368612047, 18.369132856751833 ], [ -64.918011116661205, 18.36906110762618 ], [ -64.917972224611788, 18.368985336494745 ], [ -64.917946575975748, 18.36890537179039 ], [ -64.91792528593146, 18.368821386389925 ], [ -64.917873150468665, 18.368753828217905 ], [ -64.91780324536262, 18.368698675268547 ], [ -64.91772445543495, 18.36866447577745 ], [ -64.917636780685655, 18.368647041410497 ], [ -64.917557990757984, 18.36860865358517 ], [ -64.917474843548234, 18.368574455403802 ], [ -64.91738716748921, 18.368548639129642 ], [ -64.917304018969787, 18.368518630592177 ], [ -64.917299660378092, 18.368518630592177 ], [ -64.917273173551337, 18.36852667853276 ], [ -64.917237801902957, 18.368555847569837 ], [ -64.917228918390947, 18.368564060529195 ], [ -64.917193042518477, 18.368639331365557 ], [ -64.917183991368404, 18.368672857684658 ], [ -64.917183822420554, 18.36869800340628 ], [ -64.917174769960809, 18.368718959483942 ], [ -64.917174769960809, 18.368723150437518 ], [ -64.917157167955679, 18.368731363396932 ], [ -64.917126322537172, 18.368731195758755 ], [ -64.917095644756841, 18.368722478575307 ], [ -64.917087096521129, 18.368709905714468 ], [ -64.917021717645014, 18.368650561811535 ], [ -64.916982825595596, 18.368570598416852 ], [ -64.916930688823129, 18.368503041554447 ], [ -64.916887102905662, 18.368456604478922 ], [ -64.916869668538709, 18.368443865289635 ], [ -64.916795404840911, 18.368397094247484 ], [ -64.916707731401289, 18.368375467617227 ], [ -64.916637489709274, 18.368370607420729 ], [ -64.916619887704144, 18.368374798374305 ], [ -64.916544785815631, 18.368420228311322 ], [ -64.916460966743614, 18.36844906076243 ], [ -64.916373124356198, 18.368444031618139 ], [ -64.916289977146448, 18.368414024390347 ], [ -64.916202133449303, 18.368400782286642 ], [ -64.916118986239553, 18.368374964702809 ], [ -64.916031142542408, 18.368357531645472 ], [ -64.915934750609608, 18.368335737377095 ], [ -64.915847077169985, 18.368314113366182 ], [ -64.915781195379395, 18.368305228544557 ], [ -64.915760240611405, 18.368300030452417 ], [ -64.915681449374006, 18.368265833580722 ], [ -64.915611545577633, 18.368214871584939 ], [ -64.915546165391845, 18.368159886273702 ], [ -64.915471735365543, 18.368117306185127 ], [ -64.915397470358073, 18.368074726096552 ], [ -64.915323040331828, 18.368032144698304 ], [ -64.915262186375912, 18.367972968433492 ], [ -64.91522765422792, 18.367897197302057 ], [ -64.915215249005257, 18.367813210591919 ], [ -64.915207202374347, 18.367729222572109 ], [ -64.91516831032493, 18.367653451440674 ], [ -64.915120533453887, 18.367581702315022 ], [ -64.915077281503045, 18.367510119517874 ], [ -64.915038389453628, 18.367434179438646 ], [ -64.915003857305635, 18.367358408307268 ], [ -64.914969322538298, 18.367282634556489 ], [ -64.914930430488937, 18.367206863425054 ], [ -64.914895898340944, 18.367131090984003 ], [ -64.914865891113152, 18.367051127589264 ], [ -64.914849127298737, 18.366967140879126 ], [ -64.914827334340032, 18.366933277974056 ], [ -64.914805709019447, 18.366895390443858 ], [ -64.914788945205032, 18.366811405043393 ], [ -64.91477653998237, 18.366723227379623 ], [ -64.914755249938082, 18.366639073031308 ], [ -64.914698754573919, 18.366571514859288 ], [ -64.914633209369299, 18.366516529548051 ], [ -64.914576715314752, 18.366453162329663 ], [ -64.914520221260204, 18.366389795111218 ], [ -64.914476635342794, 18.366343190397515 ], [ -64.914468084487737, 18.366322236939197 ], [ -64.914463893534162, 18.366288540362575 ], [ -64.914451992535589, 18.366239088419775 ], [ -64.914417625406429, 18.366163315978667 ], [ -64.914374208436811, 18.36608737589944 ], [ -64.914326599203889, 18.366015626773788 ], [ -64.914300950567849, 18.365935831017282 ], [ -64.914257532288559, 18.36586408189163 ], [ -64.914201038234069, 18.365800713363512 ], [ -64.914144376541344, 18.36573734745474 ], [ -64.914105652130104, 18.365661575013689 ], [ -64.914071117362766, 18.365585802572582 ], [ -64.914014456979771, 18.365522435354137 ], [ -64.913935833380549, 18.365484046219194 ], [ -64.913857043452879, 18.365445657084194 ], [ -64.913778254834881, 18.365407267949251 ], [ -64.913743218462798, 18.365385977904964 ], [ -64.913712875958709, 18.365352114999837 ], [ -64.913638612260911, 18.365301320642232 ], [ -64.913564180924993, 18.365258740553656 ], [ -64.913481032405571, 18.365228733325864 ], [ -64.9134022424779, 18.365194535144497 ], [ -64.913314567728548, 18.365172742185791 ], [ -64.913235777800878, 18.365138711642544 ], [ -64.913156987873208, 18.365104513461176 ], [ -64.91308272417541, 18.365053551465394 ], [ -64.913022039167288, 18.365001918917017 ], [ -64.912957666120008, 18.364941904461489 ], [ -64.912886419908773, 18.364896809800769 ], [ -64.91280327138935, 18.364858253027649 ], [ -64.91277410235233, 18.364827407609141 ], [ -64.91273420447402, 18.364783821691674 ], [ -64.912686595241155, 18.364737385925821 ], [ -64.912604284912447, 18.364647531880621 ], [ -64.912583833058875, 18.364603945963154 ], [ -64.912580145019717, 18.364575279840551 ], [ -64.912575283513547, 18.364549295928214 ], [ -64.912569248540365, 18.364483414137624 ], [ -64.912553658192962, 18.364394398283196 ], [ -64.912527339004328, 18.364286104042151 ], [ -64.912532703424972, 18.364192561957793 ], [ -64.912561537185695, 18.363993407842713 ], [ -64.912582659591862, 18.363814873219383 ], [ -64.912589197479463, 18.363422264686108 ], [ -64.9125637164816, 18.363044073033279 ], [ -64.912564387034195, 18.362976347223082 ], [ -64.912595064814525, 18.362913147642814 ], [ -64.91263932128453, 18.362863359114044 ], [ -64.91267636931434, 18.362791274712094 ], [ -64.912704029608108, 18.362722207796764 ], [ -64.91273252809259, 18.362600837780519 ], [ -64.912790027975973, 18.362543840811554 ], [ -64.912856747957278, 18.362511319011617 ], [ -64.912923300300463, 18.362485838013754 ], [ -64.91301047213534, 18.362459183548822 ], [ -64.91311641944236, 18.362429680545176 ], [ -64.913287410349255, 18.362383578745892 ], [ -64.913346251337771, 18.362375364476861 ], [ -64.913373576355241, 18.362366814931477 ], [ -64.913397883886148, 18.362356925590689 ], [ -64.913404086497451, 18.362338316446994 ], [ -64.91338732137342, 18.362316691126466 ], [ -64.913327475865685, 18.362287186813091 ], [ -64.913256732568868, 18.362256341394584 ], [ -64.913148773604178, 18.362182077696787 ], [ -64.913120275119695, 18.362157268561191 ], [ -64.913025559568325, 18.362113346057754 ], [ -64.91296873023748, 18.362045955523854 ], [ -64.912882061317077, 18.361945707913776 ], [ -64.912798577521357, 18.361818302924348 ], [ -64.91278080787805, 18.361779244546426 ], [ -64.91276622335954, 18.361718559538303 ], [ -64.91275314758434, 18.361665919851418 ], [ -64.912729678244148, 18.361576402392188 ], [ -64.912784998831683, 18.361364003554115 ], [ -64.912839313590325, 18.361186308431115 ], [ -64.912861441825328, 18.361055549369155 ], [ -64.912885749356235, 18.360906183782845 ], [ -64.912881055488185, 18.360628407378215 ], [ -64.91290905105825, 18.360448531649695 ], [ -64.912934532056113, 18.360358008361629 ], [ -64.912966718579753, 18.36028424757825 ], [ -64.913037126600273, 18.360182323586685 ], [ -64.913155646768075, 18.360117781591612 ], [ -64.913318591044003, 18.359993060122122 ], [ -64.913385813939783, 18.359953162243869 ], [ -64.913444152013881, 18.359931872199581 ], [ -64.913497124357718, 18.359907060444584 ], [ -64.913558984142526, 18.359887446781727 ], [ -64.913629559801166, 18.359862805284251 ], [ -64.913677335362536, 18.359837827200806 ], [ -64.913723437161764, 18.359794576559636 ], [ -64.913730645601959, 18.359772783600931 ], [ -64.913729975049421, 18.359745961497879 ], [ -64.913708685005133, 18.359664992274304 ], [ -64.913677671948449, 18.359582514307476 ], [ -64.913620842617661, 18.359428453543444 ], [ -64.913619166236231, 18.359326698499729 ], [ -64.913649173463966, 18.359256624445891 ], [ -64.913688568427858, 18.359196777628483 ], [ -64.913812620654369, 18.358968623424119 ], [ -64.913907503843916, 18.358762762473646 ], [ -64.913936672880936, 18.35868313435526 ], [ -64.913930302631456, 18.358640889542926 ], [ -64.913925441125286, 18.358571656299148 ], [ -64.913928626250026, 18.358525723447713 ], [ -64.913936002328398, 18.358443748395302 ], [ -64.913930973184051, 18.358414244081928 ], [ -64.913920411980996, 18.358379710624263 ], [ -64.913922758915021, 18.358292203513088 ], [ -64.913973050358209, 18.35821626343386 ], [ -64.914139515035174, 18.35799883545144 ], [ -64.914197685471152, 18.357870258304672 ], [ -64.914228027975241, 18.357848130069669 ], [ -64.914283348562719, 18.357838909971747 ], [ -64.914338501512134, 18.357825666558369 ], [ -64.914451824897469, 18.35782918695935 ], [ -64.914626168567224, 18.357630535758744 ], [ -64.914717866631975, 18.357297438766636 ], [ -64.914692553272232, 18.357127621326754 ], [ -64.914630527158977, 18.357002395633174 ], [ -64.914570008479302, 18.356841965929334 ], [ -64.914335819301812, 18.356595370219566 ], [ -64.914231883652519, 18.356413650471438 ], [ -64.914212437627839, 18.356355647673638 ], [ -64.914199697128879, 18.356286748396428 ], [ -64.914175054321731, 18.356224051730578 ], [ -64.914137000463029, 18.356169401695638 ], [ -64.914057372344644, 18.356082397498881 ], [ -64.913995849145806, 18.35603076495056 ], [ -64.913959470358861, 18.355977623658873 ], [ -64.913921250171711, 18.355932528998153 ], [ -64.913863078426061, 18.355888943080743 ], [ -64.913822846581184, 18.355858768214773 ], [ -64.913767525993649, 18.35579473044379 ], [ -64.913729304496826, 18.355757514775803 ], [ -64.913702650031951, 18.355728513376903 ], [ -64.913683036369093, 18.35567889248631 ], [ -64.913651688036168, 18.355617704563713 ], [ -64.913627045228964, 18.355575962665853 ], [ -64.913558648866228, 18.355528353432987 ], [ -64.913500478430251, 18.35548627625883 ], [ -64.91345203100667, 18.35545392209707 ], [ -64.913420515035568, 18.355431290947593 ], [ -64.913375420374848, 18.355406983416742 ], [ -64.913296798085298, 18.355388710859017 ], [ -64.913195209370031, 18.35532718766018 ], [ -64.913025727206445, 18.355168937252245 ], [ -64.912890107947987, 18.355028121211262 ], [ -64.912848868964545, 18.354977494491777 ], [ -64.912817017717202, 18.354977326853657 ], [ -64.912776784562595, 18.354983361826839 ], [ -64.91270838819986, 18.354949163645472 ], [ -64.912657593842255, 18.354877079243522 ], [ -64.91262808952888, 18.354806503584939 ], [ -64.912612331543357, 18.354692844923306 ], [ -64.91259087386095, 18.354597961733759 ], [ -64.912549970153805, 18.354544149889534 ], [ -64.912416194914897, 18.354496709604462 ], [ -64.912319300067622, 18.354467203981471 ], [ -64.91215736162053, 18.354395454855819 ], [ -64.911964074840512, 18.354288334081787 ], [ -64.911810518300626, 18.354218262647294 ], [ -64.911723346465749, 18.354212896917034 ], [ -64.911650423873084, 18.354233013494309 ], [ -64.911537771040287, 18.354272073181846 ], [ -64.911427297503394, 18.354250447861261 ], [ -64.911388908368451, 18.354238880829314 ], [ -64.911325205873709, 18.354238377914896 ], [ -64.911174499182266, 18.354234020632816 ], [ -64.911159244111161, 18.354245083440674 ], [ -64.911162429235901, 18.354278778707624 ], [ -64.911192436463693, 18.354307780106524 ], [ -64.911260497550131, 18.354365950542501 ], [ -64.911305089296434, 18.354428647208351 ], [ -64.911338449287086, 18.354451278357772 ], [ -64.911373318021049, 18.354490170407189 ], [ -64.911421933082806, 18.354544317527711 ], [ -64.911444396594106, 18.354569295611157 ], [ -64.911444564232227, 18.354580192090509 ], [ -64.911476415479626, 18.354590082741026 ], [ -64.911596109114441, 18.354688653969674 ], [ -64.911710941243086, 18.354785548816892 ], [ -64.911845387034532, 18.354821758656044 ], [ -64.912040014919739, 18.354992917201059 ], [ -64.912201953366832, 18.355196429907835 ], [ -64.912339919559372, 18.3553142795231 ], [ -64.912436311492172, 18.355404636482717 ], [ -64.91254946723933, 18.355496669823765 ], [ -64.912578971552705, 18.35554562016182 ], [ -64.912667149216418, 18.355621560241048 ], [ -64.91275985311006, 18.3556708458554 ], [ -64.912871500113965, 18.355751815078918 ], [ -64.912969736066373, 18.355825240586 ], [ -64.913022709719883, 18.355901348303405 ], [ -64.913080712517683, 18.355967397732115 ], [ -64.91313871531554, 18.356047864041216 ], [ -64.913191688968993, 18.356110728345243 ], [ -64.913254888549318, 18.35616571365648 ], [ -64.913327978780103, 18.356242994840841 ], [ -64.913374414545956, 18.356302506381951 ], [ -64.913415988805696, 18.356339722049938 ], [ -64.913500646068428, 18.356420355997216 ], [ -64.913600390764088, 18.356509204213523 ], [ -64.913664428535071, 18.356570392136064 ], [ -64.913709187919551, 18.356613978053531 ], [ -64.913739027509166, 18.356659072714251 ], [ -64.913761657348971, 18.356733839326466 ], [ -64.913791162971961, 18.356812461616016 ], [ -64.913795521563713, 18.356881193255049 ], [ -64.913795018649296, 18.356954786400252 ], [ -64.913785630913196, 18.357061907174284 ], [ -64.913770040565794, 18.357145390970004 ], [ -64.913750929817411, 18.357210769846176 ], [ -64.913732154345269, 18.357260223098649 ], [ -64.913708182090659, 18.357316046600602 ], [ -64.913686053855656, 18.357357453222164 ], [ -64.913609443223891, 18.357500783835292 ], [ -64.913527635809601, 18.357652161079329 ], [ -64.913476673813818, 18.357741344571934 ], [ -64.913460915828296, 18.357819631585187 ], [ -64.913401069010888, 18.357959943402022 ], [ -64.913353961382711, 18.35811031612684 ], [ -64.91334440731822, 18.358131941447425 ], [ -64.913301659591468, 18.35826605196263 ], [ -64.913276849146143, 18.3583448418903 ], [ -64.913233263228733, 18.358428996238615 ], [ -64.913194035903018, 18.35847476145193 ], [ -64.913161514103081, 18.358503930488951 ], [ -64.913033438561058, 18.3585899275472 ], [ -64.912963365816893, 18.358636867537143 ], [ -64.912839481228445, 18.358698558374158 ], [ -64.912786675213113, 18.358750526198776 ], [ -64.912696485891615, 18.35886502305118 ], [ -64.91263781254122, 18.358974658397301 ], [ -64.912599591044398, 18.359057471640483 ], [ -64.912554831659975, 18.359130897147566 ], [ -64.912543599904325, 18.359185882458746 ], [ -64.912493476099257, 18.359249417315368 ], [ -64.91245927791789, 18.359324685532329 ], [ -64.912421391697364, 18.359402469631164 ], [ -64.912295327813069, 18.359443708614549 ], [ -64.912274875959497, 18.359447396653763 ], [ -64.912267499881125, 18.359452593436174 ], [ -64.912263979480144, 18.359462150120066 ], [ -64.91226649405229, 18.359474555342729 ], [ -64.912270852644042, 18.359519817641626 ], [ -64.912270517367745, 18.359575473505402 ], [ -64.912272361387295, 18.359590896214684 ], [ -64.912279905103787, 18.359651244636837 ], [ -64.912292477964627, 18.359710925125796 ], [ -64.912309577055282, 18.359766579679899 ], [ -64.912326676145994, 18.359814693136912 ], [ -64.912333549309892, 18.359847382574969 ], [ -64.912334722776905, 18.359898847485226 ], [ -64.912332878757297, 18.359946790684717 ], [ -64.912339081368657, 18.360009991574657 ], [ -64.912347966190282, 18.360080733561745 ], [ -64.912348972019117, 18.360122141493036 ], [ -64.912345116341839, 18.360179641376419 ], [ -64.912334722776905, 18.360319954502927 ], [ -64.912345619256257, 18.360681382341397 ], [ -64.912344948703662, 18.360760338597572 ], [ -64.912318964791382, 18.360908027802395 ], [ -64.91224905968528, 18.361057393388705 ], [ -64.912209999997742, 18.361220002388393 ], [ -64.912161552574162, 18.361276831719181 ], [ -64.912113440426822, 18.361308850604701 ], [ -64.912073374910392, 18.361310526986131 ], [ -64.91202727442078, 18.361300133421253 ], [ -64.911985700161097, 18.361298289401645 ], [ -64.91194379062506, 18.361307509499568 ], [ -64.911909927719989, 18.361297786487228 ], [ -64.911884111445829, 18.361267780569108 ], [ -64.911860474467517, 18.361246656853268 ], [ -64.911715132196662, 18.361201729830668 ], [ -64.911641539051459, 18.361170550445593 ], [ -64.911576998366002, 18.36112428231786 ], [ -64.911545147118659, 18.361120257692733 ], [ -64.911455125435339, 18.361128974876181 ], [ -64.911417909767351, 18.36113249658689 ], [ -64.911393266960204, 18.361126627942213 ], [ -64.911335767076821, 18.361101817496888 ], [ -64.911256306596556, 18.361070636802083 ], [ -64.911218420375974, 18.361060913789743 ], [ -64.911158741196743, 18.36102789038506 ], [ -64.911087159709268, 18.36100827541253 ], [ -64.911009207972256, 18.36096318075181 ], [ -64.910950031707443, 18.360932839557393 ], [ -64.910872582884906, 18.36088657142966 ], [ -64.910816759382953, 18.360870813444137 ], [ -64.910759091861451, 18.360855055458558 ], [ -64.910695221728588, 18.36083946380154 ], [ -64.910647444857545, 18.360825717473688 ], [ -64.910587765678258, 18.360807947830438 ], [ -64.910492211936173, 18.36076721176147 ], [ -64.910373188853953, 18.360695797912115 ], [ -64.91030948635921, 18.360662774507432 ], [ -64.91024980717998, 18.360637627476137 ], [ -64.910184260665631, 18.36061047140646 ], [ -64.91010362671841, 18.360580462869052 ], [ -64.910030202521, 18.360534028412815 ], [ -64.909964654697035, 18.360493458672295 ], [ -64.90992693611463, 18.360476025615014 ], [ -64.909877316533652, 18.360443334867227 ], [ -64.909813612729295, 18.360406454475537 ], [ -64.90975024551085, 18.360364043334812 ], [ -64.909697608443309, 18.360317607568902 ], [ -64.909630216599737, 18.360278881847989 ], [ -64.90957053742045, 18.360249880449089 ], [ -64.909525107483432, 18.360199925591814 ], [ -64.909483365585572, 18.360170924192914 ], [ -64.909443970621737, 18.360115268329082 ], [ -64.90937121566725, 18.360012338508682 ], [ -64.909321091862182, 18.359941258625952 ], [ -64.909126297648527, 18.359683935384567 ], [ -64.909041806714299, 18.359529708292087 ], [ -64.909008446723647, 18.359462653034541 ], [ -64.908962513872211, 18.359338768446094 ], [ -64.908910378409416, 18.359192586674851 ], [ -64.908904678712531, 18.359114468609448 ], [ -64.908888920726952, 18.359093512531729 ], [ -64.908851537420844, 18.359069709224968 ], [ -64.908835108882727, 18.359068200481659 ], [ -64.908816502358434, 18.359047413351846 ], [ -64.908779955933369, 18.358982034475673 ], [ -64.908764700862264, 18.358911291178913 ], [ -64.908769059454016, 18.358857982249106 ], [ -64.908763527395251, 18.358816071403453 ], [ -64.908746094337971, 18.358760584487413 ], [ -64.908708709722191, 18.358681794559743 ], [ -64.908653556772776, 18.358607027947528 ], [ -64.908618017486276, 18.358566627154858 ], [ -64.908598403823419, 18.358528404348306 ], [ -64.908561020517311, 18.35846520607771 ], [ -64.908525313592634, 18.358428660962318 ], [ -64.908397908603206, 18.358387589617053 ], [ -64.908302354861121, 18.358362108619133 ], [ -64.908174783543188, 18.358340148022307 ], [ -64.907842355794003, 18.35829170059867 ], [ -64.907789886364583, 18.358293712256398 ], [ -64.907720316534835, 18.358262196285352 ], [ -64.907655608211257, 18.358237887444773 ], [ -64.907575812454695, 18.358230008451983 ], [ -64.907461986154942, 18.358115680547485 ], [ -64.90738403441793, 18.35789825387468 ], [ -64.907404318633382, 18.357759281853305 ], [ -64.907435499328187, 18.357606898780432 ], [ -64.90743667148547, 18.357489216803344 ], [ -64.907359056334485, 18.357415791296262 ], [ -64.90730675323357, 18.357361141261322 ], [ -64.907289486504737, 18.357325601974821 ], [ -64.90729552147792, 18.357296096351774 ], [ -64.907295855444545, 18.357256870335789 ], [ -64.90730021534597, 18.357215798990467 ], [ -64.90731630860779, 18.357163663527672 ], [ -64.907320499561365, 18.357130135898899 ], [ -64.907289654142858, 18.357125608359354 ], [ -64.907240199580713, 18.357144385141112 ], [ -64.907167613574074, 18.357162490060716 ], [ -64.907099217211282, 18.357160143126691 ], [ -64.906986061464124, 18.357167854481304 ], [ -64.906954545493022, 18.357184283019421 ], [ -64.906892016465292, 18.357183780105004 ], [ -64.906811885432489, 18.357179421513251 ], [ -64.906720187367739, 18.357147067351434 ], [ -64.906636199347872, 18.357140697101954 ], [ -64.906562272236044, 18.357091579125779 ], [ -64.906499909536819, 18.357066768680454 ], [ -64.906420953280701, 18.357039611301161 ], [ -64.906343001543689, 18.357016644875387 ], [ -64.906278796134586, 18.356988146390904 ], [ -64.906212745396147, 18.356924108619921 ], [ -64.906164299282239, 18.356871470242709 ], [ -64.906121719193607, 18.356837439699461 ], [ -64.905994817118653, 18.356799218202639 ], [ -64.905887527396771, 18.356768372784131 ], [ -64.905850479366961, 18.356760661429519 ], [ -64.905801865614876, 18.356737862641921 ], [ -64.905755262210846, 18.356728977820296 ], [ -64.905677813388309, 18.356728642543999 ], [ -64.905633221642006, 18.356719254807956 ], [ -64.905561640154531, 18.356691594514189 ], [ -64.905496931830953, 18.356679189291526 ], [ -64.905361480210615, 18.356670136831781 ], [ -64.905181939758393, 18.356635100459641 ], [ -64.90500424332572, 18.356605596146323 ], [ -64.904581124650292, 18.356460421513646 ], [ -64.904498311407167, 18.356441143127086 ], [ -64.90442421534749, 18.356410632984876 ], [ -64.90436168631976, 18.356398898314751 ], [ -64.904310891962155, 18.356392863341568 ], [ -64.904271832274617, 18.356383307967405 ], [ -64.904235119521047, 18.356349277424158 ], [ -64.904190360136624, 18.356307870802596 ], [ -64.904143756732594, 18.356287083672726 ], [ -64.904118275734675, 18.356288592416035 ], [ -64.90406932539662, 18.356297644875781 ], [ -64.903989362001937, 18.356276354831493 ], [ -64.903907386949527, 18.356262776141818 ], [ -64.903784508189972, 18.356226231026426 ], [ -64.903698342183986, 18.356225560473888 ], [ -64.903620055170734, 18.356215334547073 ], [ -64.903445879139099, 18.356222375349148 ], [ -64.903313780281621, 18.356247521070713 ], [ -64.903282431948696, 18.356272163877918 ], [ -64.902864845331976, 18.356321784768511 ], [ -64.902781864450731, 18.356354474206626 ], [ -64.902746157526053, 18.356368388172541 ], [ -64.902743140039433, 18.356382134500393 ], [ -64.902774991286833, 18.356392863341568 ], [ -64.902838358505278, 18.356405268564231 ], [ -64.902884291356713, 18.356414656300331 ], [ -64.903217220710701, 18.356482046834174 ], [ -64.903283940692006, 18.356536026316576 ], [ -64.903298860486814, 18.356543234756771 ], [ -64.903323670932139, 18.356542228927879 ], [ -64.903452919941174, 18.356561172038141 ], [ -64.903541432881184, 18.356620515941131 ], [ -64.903639836471712, 18.356663934220421 ], [ -64.903741257548859, 18.356700144059516 ], [ -64.903823064963092, 18.356730654201726 ], [ -64.903959522412322, 18.356782119111926 ], [ -64.904049208819345, 18.356810952872706 ], [ -64.904152473916042, 18.356839786633486 ], [ -64.904361183405342, 18.356914217969404 ], [ -64.904547429383342, 18.356966185794079 ], [ -64.904640803829523, 18.357017315427981 ], [ -64.90508772712144, 18.357127286050456 ], [ -64.9051968595532, 18.357156119811236 ], [ -64.905449490236208, 18.357229880594559 ], [ -64.905521406999981, 18.357282686609949 ], [ -64.905561806482979, 18.357325434336644 ], [ -64.905751071257271, 18.357402212606587 ], [ -64.905936311406379, 18.357467088568342 ], [ -64.906070254283406, 18.357580244315557 ], [ -64.906124232456136, 18.357660878262777 ], [ -64.906299583264399, 18.357742684367395 ], [ -64.906421622523567, 18.357852991575839 ], [ -64.906431682121877, 18.357926249444745 ], [ -64.906427491168301, 18.35795608903436 ], [ -64.906441740410514, 18.357982911137412 ], [ -64.906488342504872, 18.358070921163005 ], [ -64.906613234231827, 18.358189944245282 ], [ -64.906682301147157, 18.35833679525939 ], [ -64.906781710566577, 18.358421284884002 ], [ -64.90683904150211, 18.35848750195089 ], [ -64.906922526607502, 18.358583726245513 ], [ -64.906986229102245, 18.3586499433124 ], [ -64.907017074520752, 18.35868313435526 ], [ -64.907094689671737, 18.358768797446828 ], [ -64.907267693546032, 18.358838536224425 ], [ -64.907410018330268, 18.358904418015015 ], [ -64.907490484639368, 18.358946661517621 ], [ -64.907572627329955, 18.359034002300291 ], [ -64.907625768621585, 18.359093009617311 ], [ -64.907672204387495, 18.359193426175239 ], [ -64.907794580232633, 18.359337258393111 ], [ -64.907928020195243, 18.359400291644931 ], [ -64.907993231433238, 18.359469526198438 ], [ -64.908086438241298, 18.359546472106501 ], [ -64.908147792492343, 18.359594584253841 ], [ -64.908211327348909, 18.359640852381574 ], [ -64.908245022615858, 18.359675384529567 ], [ -64.908342252739374, 18.359729531650089 ], [ -64.908495138726721, 18.359834474437889 ], [ -64.908587842620364, 18.359957185559324 ], [ -64.908610976684201, 18.360045026637124 ], [ -64.908639476478356, 18.360105208730772 ], [ -64.908713738866481, 18.360169749416229 ], [ -64.908766209605574, 18.360220543773892 ], [ -64.908801582563626, 18.360281900644225 ], [ -64.908851034506426, 18.360373597399359 ], [ -64.908878359523897, 18.360413999501702 ], [ -64.908906019817664, 18.360444677282089 ], [ -64.908949605735074, 18.360479378377875 ], [ -64.908999226625724, 18.360517933841322 ], [ -64.909114561668787, 18.360562694535417 ], [ -64.909189998833597, 18.360610805373085 ], [ -64.909213803450029, 18.360639640443537 ], [ -64.909335844018869, 18.360714573384257 ], [ -64.909365683608485, 18.360728153383548 ], [ -64.909379597574457, 18.360741564435102 ], [ -64.909419327814589, 18.360768552866602 ], [ -64.909490910611737, 18.360801577580958 ], [ -64.909544219541544, 18.360855389425183 ], [ -64.909637425039932, 18.360926635636417 ], [ -64.90971487386247, 18.360974915421878 ], [ -64.909812271624105, 18.361025206865065 ], [ -64.909907490089893, 18.361098464733971 ], [ -64.909978903939248, 18.361150432558645 ], [ -64.910032548145352, 18.36118328963488 ], [ -64.91013095173588, 18.361231401782163 ], [ -64.91017453765329, 18.361256547503785 ], [ -64.910198343579452, 18.361281525587231 ], [ -64.910234049194401, 18.361308516638076 ], [ -64.910281658427323, 18.361343216424245 ], [ -64.910349216599343, 18.36137607350048 ], [ -64.910402860805448, 18.361407086557108 ], [ -64.910484166614935, 18.361466765736338 ], [ -64.910519872229941, 18.36149174381984 ], [ -64.910561781765921, 18.361505491457308 ], [ -64.910627495918391, 18.361523093462438 ], [ -64.910681140124495, 18.36153885144796 ], [ -64.910758756585153, 18.361575730529978 ], [ -64.910856321984966, 18.361603055547448 ], [ -64.910985235717703, 18.361649323675181 ], [ -64.911071234085568, 18.361677320554918 ], [ -64.911172822800836, 18.361712355617328 ], [ -64.911212385402791, 18.361748900732721 ], [ -64.911319338538704, 18.361839426640131 ], [ -64.911382538118971, 18.361896254661303 ], [ -64.911412880623061, 18.361929783599749 ], [ -64.911521342502226, 18.361992646594103 ], [ -64.911623769408209, 18.362019468697156 ], [ -64.911702559335879, 18.362158440718531 ], [ -64.911746815805884, 18.362374023371672 ], [ -64.911749498016206, 18.362405874619071 ], [ -64.911769949869779, 18.362475276810642 ], [ -64.911835999298489, 18.362532609055904 ], [ -64.911881093959209, 18.362598155570197 ], [ -64.911901042898364, 18.362680130622607 ], [ -64.91190523385194, 18.362727739855529 ], [ -64.911913951035444, 18.362758082359619 ], [ -64.911864330144851, 18.36291750623451 ], [ -64.911880423406672, 18.362979532347822 ], [ -64.911891655162322, 18.36307475081361 ], [ -64.911910598272584, 18.363151361445432 ], [ -64.911934067612719, 18.363231660116412 ], [ -64.911961560268367, 18.363365938269737 ], [ -64.912030124269222, 18.363463168393253 ], [ -64.91209466495468, 18.363516980237478 ], [ -64.912124839820592, 18.363525194506565 ], [ -64.912162055488579, 18.363596105441445 ], [ -64.912176472368969, 18.363672716073268 ], [ -64.91218787176274, 18.36374630921847 ], [ -64.912193906735922, 18.363928028966541 ], [ -64.912185524828715, 18.364191723767078 ], [ -64.912201115176117, 18.364300856198838 ], [ -64.912203629748262, 18.364398756874948 ], [ -64.91220564140599, 18.364474361677878 ], [ -64.912214023313197, 18.364548793013796 ], [ -64.912223913963714, 18.364607298726071 ], [ -64.912245204008002, 18.364703020106276 ], [ -64.912249897876052, 18.364755155569071 ], [ -64.912256100487355, 18.364784995158686 ], [ -64.912293651431582, 18.364845847804986 ], [ -64.912350313124307, 18.364909215023374 ], [ -64.912402448587045, 18.364976773195451 ], [ -64.912485597106468, 18.365010971376819 ], [ -64.912559860804265, 18.365053551465394 ], [ -64.912634124502063, 18.365100322507544 ], [ -64.91269078619473, 18.365163689725989 ], [ -64.912720793422523, 18.365252035027879 ], [ -64.912733198645185, 18.365336021738017 ], [ -64.91271492608746, 18.365419840810034 ], [ -64.912714087896745, 18.365503659882052 ], [ -64.91274862135441, 18.365583623276734 ], [ -64.912805115408958, 18.365646990495122 ], [ -64.912809306362533, 18.365672303854865 ], [ -64.912747447887398, 18.365709519522852 ], [ -64.912672513637062, 18.365750926144415 ], [ -64.912606128931998, 18.365809096580392 ], [ -64.912561537185695, 18.365880007515329 ], [ -64.91249951107244, 18.365938345589427 ], [ -64.912372273721132, 18.365916217354425 ], [ -64.91228426369554, 18.365932310616245 ], [ -64.912226596174037, 18.365994839643918 ], [ -64.91218636301943, 18.366070109170607 ], [ -64.912133054089679, 18.366136661513792 ], [ -64.912133054089679, 18.366140852467367 ], [ -64.912093323849547, 18.366161639597237 ], [ -64.912049402655782, 18.366165495274515 ], [ -64.911966086498239, 18.366139679000355 ], [ -64.911913951035444, 18.366072120828335 ], [ -64.911861815572649, 18.36600037039301 ], [ -64.911805321518159, 18.365932813530662 ], [ -64.911757544647116, 18.36586106440501 ], [ -64.911687807179192, 18.365810102409284 ], [ -64.911622428303019, 18.365755117098047 ], [ -64.911556881788727, 18.365700131786809 ], [ -64.911500387734179, 18.365636764568364 ], [ -64.911469877591969, 18.36560709261687 ], [ -64.911422435997224, 18.365598375433365 ], [ -64.911339287477801, 18.365568200567452 ], [ -64.911251445090386, 18.365567530014914 ], [ -64.911163602702914, 18.365566859462319 ], [ -64.911071234085568, 18.365566188909725 ], [ -64.910983391698096, 18.365565518357187 ], [ -64.910891023080751, 18.365585634934462 ], [ -64.910828996967496, 18.365643973008559 ], [ -64.910758253670735, 18.365693761537329 ], [ -64.910683151782223, 18.365735000520772 ], [ -64.910595141756573, 18.36574690282896 ], [ -64.910507299369158, 18.365746232276365 ], [ -64.910415098389933, 18.365741370770195 ], [ -64.910327256002518, 18.365740700217657 ], [ -64.910247795522253, 18.365777748247467 ], [ -64.910163976450235, 18.365810605323702 ], [ -64.910084683608147, 18.365847820991632 ], [ -64.910009581719635, 18.365889227613252 ], [ -64.90999633961593, 18.365897441882282 ], [ -64.909921906970283, 18.365871625608122 ], [ -64.90983859081274, 18.36584161838033 ], [ -64.909750916063444, 18.365824184013377 ], [ -64.909663073675972, 18.365823513460782 ], [ -64.909579254603955, 18.365852179583385 ], [ -64.909495604479787, 18.365880844396372 ], [ -64.909411951736274, 18.365909511828647 ], [ -64.909323941710625, 18.365913032229685 ], [ -64.909235931685032, 18.365924934537873 ], [ -64.909157141757362, 18.365890736356505 ], [ -64.909069467008067, 18.36586911103592 ], [ -64.908981959896892, 18.365839103808185 ], [ -64.908894286457269, 18.365808928942272 ], [ -64.908815496529598, 18.365774730760847 ], [ -64.908718935648949, 18.365765678301102 ], [ -64.908630925623356, 18.365777580609347 ], [ -64.908542915597764, 18.36579350623299 ], [ -64.908463622755619, 18.365826530947345 ], [ -64.908459096525746, 18.365826530947345 ], [ -64.908442332711331, 18.36584312712364 ], [ -64.908376787506711, 18.365809096580392 ], [ -64.908315765912619, 18.365745561723827 ], [ -64.908241503524494, 18.365703149273372 ], [ -64.908167238517024, 18.365656378231222 ], [ -64.908136394408245, 18.3656602339085 ], [ -64.90812750958662, 18.365676997722915 ], [ -64.90807939743928, 18.36564732577142 ], [ -64.90800060751161, 18.365613127590052 ], [ -64.907917291354011, 18.365587311315892 ], [ -64.907829616604715, 18.365565518357187 ], [ -64.90775501763062, 18.365548251628354 ], [ -64.90773741562549, 18.36556065685096 ], [ -64.907728529494193, 18.365569038758167 ], [ -64.907702379253408, 18.36554774871388 ], [ -64.907649739566523, 18.365547413437582 ], [ -64.90755720462073, 18.365567530014914 ], [ -64.907377327582537, 18.365532661280952 ], [ -64.907289654142858, 18.36551086832219 ], [ -64.907210864215187, 18.365476670140822 ], [ -64.907132074287517, 18.365442471959454 ], [ -64.907048924458422, 18.365416655685294 ], [ -64.906961083380622, 18.365415985132699 ], [ -64.906868547125157, 18.365436269348152 ], [ -64.906780703428012, 18.365431407841982 ], [ -64.906688502448844, 18.365422187744059 ], [ -64.906614240060719, 18.365371393386397 ], [ -64.906566629518125, 18.365299644260801 ], [ -64.906518853956754, 18.365227895135149 ], [ -64.906471243414217, 18.365156146009497 ], [ -64.906401339617844, 18.365101160698259 ], [ -64.906340319333424, 18.365041984433446 ], [ -64.906257169504329, 18.365007618613902 ], [ -64.906169328426529, 18.365002757107732 ], [ -64.906090035584441, 18.365039972775719 ], [ -64.906019292287624, 18.365089761304489 ], [ -64.905948548990864, 18.365139549833259 ], [ -64.905882164285856, 18.365193529315604 ], [ -64.905807062397344, 18.365234768299047 ], [ -64.905780575570589, 18.365247173521709 ], [ -64.905719052371751, 18.365242479653659 ], [ -64.905649314903826, 18.365191685296054 ], [ -64.905565997436611, 18.365165869021837 ], [ -64.905491735048486, 18.365119097979687 ], [ -64.905417471350688, 18.365076517891112 ], [ -64.905329628963216, 18.365067465431309 ], [ -64.905320911779768, 18.365067297793189 ], [ -64.905263747172626, 18.365066962516892 ], [ -64.905241618937623, 18.365087749646761 ], [ -64.905179592824368, 18.365145920082739 ], [ -64.905121925302808, 18.365208449110412 ], [ -64.905042464822543, 18.365241306186647 ], [ -64.904954622435127, 18.365249017541316 ], [ -64.904866612409535, 18.365252537942297 ], [ -64.904783463890055, 18.365226721668137 ], [ -64.90469562150264, 18.365213310616639 ], [ -64.904607779115167, 18.365204258156837 ], [ -64.904520104365872, 18.365191014743459 ], [ -64.90443242961652, 18.365173580376506 ], [ -64.904358165918779, 18.365122618380724 ], [ -64.904270491169427, 18.365100993060139 ], [ -64.904186672097467, 18.365129659182742 ], [ -64.904111737847074, 18.365170898166184 ], [ -64.904041162188435, 18.365203922880539 ], [ -64.904032277366809, 18.365203922880539 ], [ -64.903953487439139, 18.365165533745596 ], [ -64.903870338919717, 18.365135526517804 ], [ -64.903778137940492, 18.365126306419882 ], [ -64.903707897558206, 18.365125803505464 ], [ -64.903690463191197, 18.365108872052929 ], [ -64.903642686320154, 18.365037122927276 ], [ -64.903599100402744, 18.365003260022206 ], [ -64.903599435678984, 18.364965541439801 ], [ -64.903595412363529, 18.364923464265644 ], [ -64.903582504226449, 18.364881554729664 ], [ -64.903548138406961, 18.364805614650436 ], [ -64.903521986856504, 18.364776110337061 ], [ -64.903504552489494, 18.364763369838101 ], [ -64.903455937427736, 18.364792371237058 ], [ -64.903398269906234, 18.364854900264731 ], [ -64.903331885201169, 18.364913070700709 ], [ -64.903244042813753, 18.364916591101746 ], [ -64.903156200426281, 18.364898989096616 ], [ -64.903068525676986, 18.364881554729664 ], [ -64.902980683289513, 18.364868311316286 ], [ -64.902910945821588, 18.364817349320504 ], [ -64.902836682123791, 18.364770578278296 ], [ -64.902775661839371, 18.364711402013484 ], [ -64.902705756733326, 18.364660607655821 ], [ -64.902622608213903, 18.364630432789909 ], [ -64.902552703107858, 18.364579638432303 ], [ -64.902478439410061, 18.364528676436521 ], [ -64.902474248456485, 18.364511912622106 ], [ -64.902417419125641, 18.364469500171708 ], [ -64.902365283662903, 18.364401941999631 ], [ -64.902322033021733, 18.364330192874036 ], [ -64.90229202579394, 18.364250229479353 ], [ -64.902244248922898, 18.364178647991821 ], [ -64.902200998281785, 18.364106898866225 ], [ -64.90213109317574, 18.364056104508563 ], [ -64.902047944656317, 18.364030120596283 ], [ -64.901964628498718, 18.364004304322066 ], [ -64.901881313650847, 18.363978488047906 ], [ -64.901802522413448, 18.363944289866538 ], [ -64.901741502129084, 18.363885113601725 ], [ -64.901676124562584, 18.363830128290488 ], [ -64.901601859555115, 18.36378335724828 ], [ -64.901505467622314, 18.363761564289575 ], [ -64.901435228549644, 18.363744297560743 ], [ -64.901417626544514, 18.363744129922623 ], [ -64.901342523346329, 18.36378955985964 ], [ -64.901254680958857, 18.363801462167828 ], [ -64.901166838571442, 18.36380079161529 ], [ -64.901078997493642, 18.363791739155488 ], [ -64.900991321434674, 18.363770113834903 ], [ -64.900903646685322, 18.363752511829773 ], [ -64.900820330527779, 18.363726695555613 ], [ -64.900741540600109, 18.36368830642067 ], [ -64.900658393390358, 18.363658299192878 ], [ -64.900575075923086, 18.363628291965085 ], [ -64.900514224586516, 18.36356492474664 ], [ -64.900466446405801, 18.363493175621045 ], [ -64.900414310943006, 18.363425617449025 ], [ -64.900335522325008, 18.363387228314025 ], [ -64.900265783547411, 18.363336267627915 ], [ -64.900204764572663, 18.363272899099798 ], [ -64.900130499565194, 18.363230319011222 ], [ -64.900082722694151, 18.363158737523747 ], [ -64.900057410644081, 18.363049437453867 ], [ -64.899969734585113, 18.363032003086914 ], [ -64.899881724559521, 18.363035355849775 ], [ -64.899793883481721, 18.363026303389972 ], [ -64.899701682502553, 18.363021441883802 ], [ -64.899671003412493, 18.363012724700354 ], [ -64.899605624536377, 18.362957739389117 ], [ -64.899571092388385, 18.362881966948009 ], [ -64.89953672656884, 18.362806194506902 ], [ -64.899519292201887, 18.362776690193584 ], [ -64.899453410411297, 18.362776019640989 ], [ -64.899365566714152, 18.362775349088452 ], [ -64.899277725636352, 18.362770487582225 ], [ -64.899190049577385, 18.362757244168847 ], [ -64.899111259649715, 18.36272304598748 ], [ -64.899032469722044, 18.362684656852537 ], [ -64.898975975667497, 18.362621289634092 ], [ -64.898923841514375, 18.362553731462071 ], [ -64.898845051586704, 18.362515343636744 ], [ -64.898766260349362, 18.362476954501801 ], [ -64.898678419271562, 18.362472091685902 ], [ -64.898656457365007, 18.362480305954989 ], [ -64.898590744522267, 18.362454489680829 ], [ -64.898507594693172, 18.362424482453036 ], [ -64.898424278535572, 18.362394476534917 ], [ -64.898381029204131, 18.362318702784194 ], [ -64.898311290426534, 18.362263549834779 ], [ -64.898241386630161, 18.362212587838997 ], [ -64.898202494580744, 18.362136815397946 ], [ -64.898163602531326, 18.362061042956839 ], [ -64.898098222345482, 18.362001699053849 ], [ -64.898037203370791, 18.361942522789036 ], [ -64.897985066598324, 18.361874964617016 ], [ -64.897982384388001, 18.361869264920131 ], [ -64.897981212230661, 18.361866750347929 ], [ -64.897979703487351, 18.361863732861366 ], [ -64.897946343496699, 18.361795002532006 ], [ -64.897916168630786, 18.361715037827651 ], [ -64.897886161402994, 18.361635074432911 ], [ -64.897839055084546, 18.361496271359385 ], [ -64.897826648552211, 18.361412284649248 ], [ -64.897827320414478, 18.36134086949022 ], [ -64.897809718409349, 18.361328128991261 ], [ -64.897744339533176, 18.361273143680023 ], [ -64.897701087582391, 18.361201394554428 ], [ -64.897644593527843, 18.361133836382351 ], [ -64.897626991522714, 18.361125286837023 ], [ -64.897619615444398, 18.361120592968973 ], [ -64.897551554357904, 18.361066279520003 ], [ -64.897495898494128, 18.36100039641974 ], [ -64.897428006355483, 18.360946081661098 ], [ -64.897372181543858, 18.360880367508628 ], [ -64.897300266089758, 18.36083376541427 ], [ -64.897236395956895, 18.36077559366862 ], [ -64.89716028823949, 18.360732679613477 ], [ -64.897072110575778, 18.360705185648158 ], [ -64.896991979542918, 18.360669981637955 ], [ -64.896973204070775, 18.360657745363085 ], [ -64.896919895141025, 18.360623210595747 ], [ -64.896856025008162, 18.360565207797947 ], [ -64.89677606161348, 18.360522292433075 ], [ -64.896708168165105, 18.360467977674432 ], [ -64.896623846178727, 18.360448028735277 ], [ -64.89655595142068, 18.360393715286307 ], [ -64.896475820387877, 18.360358511276047 ], [ -64.896391499711115, 18.360334705349942 ], [ -64.896326120834942, 18.360309224352022 ], [ -64.896322600433905, 18.360307884556562 ], [ -64.896311367368583, 18.360303358326689 ], [ -64.896259568491814, 18.360233788496942 ], [ -64.896236266789799, 18.360152985601815 ], [ -64.896212797449607, 18.360072185326089 ], [ -64.896156973947654, 18.360006471173676 ], [ -64.896105341399334, 18.359936901343872 ], [ -64.896049685535502, 18.359871187191459 ], [ -64.895977601133552, 18.359824416149252 ], [ -64.895885064878087, 18.359823745596714 ], [ -64.895796551938076, 18.359826761773604 ], [ -64.895708038998009, 18.359837659562629 ], [ -64.895635116405401, 18.359886945176981 ], [ -64.895594212698256, 18.359963554499132 ], [ -64.895569402252931, 18.360044020808232 ], [ -64.895552638438517, 18.360128342794667 ], [ -64.895539730301437, 18.360212664781102 ], [ -64.895535036433444, 18.360297154405657 ], [ -64.895534198242672, 18.360381645339942 ], [ -64.895534198242672, 18.360385499707547 ], [ -64.895534030604551, 18.360408633771442 ], [ -64.895505867396366, 18.360408298495145 ], [ -64.895449876256293, 18.360361862729235 ], [ -64.895390197077006, 18.36029983661598 ], [ -64.895346108245121, 18.360272680546302 ], [ -64.895305875090571, 18.360272345270062 ], [ -64.895217362150561, 18.360286928478899 ], [ -64.895128849210494, 18.360278546571692 ], [ -64.895105379870358, 18.360197746295967 ], [ -64.895097668515746, 18.360159189522847 ], [ -64.895094148114708, 18.360113087723562 ], [ -64.895078725405426, 18.360028430460829 ], [ -64.895075540280743, 18.359943942145946 ], [ -64.895068164202371, 18.359859452521334 ], [ -64.895064979077631, 18.359774961587107 ], [ -64.895065649630226, 18.359690305634047 ], [ -64.895066320182821, 18.359605814699819 ], [ -64.895055088427171, 18.359521326384936 ], [ -64.895051400387956, 18.359479081572601 ], [ -64.895029272152954, 18.359438848418051 ], [ -64.895014017081849, 18.359350335478041 ], [ -64.894986524426258, 18.359261822537974 ], [ -64.894930868562426, 18.359196108385561 ], [ -64.894866998429563, 18.359137936639911 ], [ -64.89478686739676, 18.359106589616658 ], [ -64.894702545410325, 18.359071385606399 ], [ -64.894630628646553, 18.359024614564248 ], [ -64.894595089359996, 18.35894381297885 ], [ -64.894559550073495, 18.35886669943261 ], [ -64.89452015510966, 18.358785730209036 ], [ -64.894468354923163, 18.358716160379288 ], [ -64.89439643815939, 18.358669389337081 ], [ -64.894328544711072, 18.358607363223825 ], [ -64.894244390362758, 18.358572159213566 ], [ -64.894160068376323, 18.358548522235253 ], [ -64.89407993734352, 18.358517173902328 ], [ -64.89407189071261, 18.358517006264208 ], [ -64.893995615357085, 18.35849722496323 ], [ -64.893907270055195, 18.358484987378688 ], [ -64.89382311570688, 18.358457493413425 ], [ -64.89373460276687, 18.358445257138555 ], [ -64.893646089826802, 18.35844441894784 ], [ -64.893557576886792, 18.358459171104528 ], [ -64.893477445853989, 18.35842782146193 ], [ -64.893397147183009, 18.358396305490828 ], [ -64.893312825196574, 18.358376525499523 ], [ -64.893224479894684, 18.35837199926965 ], [ -64.893147533986564, 18.358417429206668 ], [ -64.893102774602141, 18.358490016523035 ], [ -64.893093889780516, 18.35857450614759 ], [ -64.893069080644864, 18.358654972456748 ], [ -64.893020128997136, 18.35872370409578 ], [ -64.892935639372581, 18.358742144291625 ], [ -64.892846791156217, 18.358764606493196 ], [ -64.892758279525879, 18.358779192321435 ], [ -64.892689378938996, 18.358832333613066 ], [ -64.892632549608209, 18.35889720957482 ], [ -64.892571696961909, 18.358958228549568 ], [ -64.892478993068323, 18.358972814377751 ], [ -64.892390481437928, 18.358975999502491 ], [ -64.892325605476231, 18.359032996471456 ], [ -64.892296770405778, 18.359113461470884 ], [ -64.892263745691423, 18.359193929089656 ], [ -64.892230888615188, 18.359270538411806 ], [ -64.892222171431683, 18.359354860398241 ], [ -64.892205407617269, 18.359439182384676 ], [ -64.892204569426553, 18.359523673318904 ], [ -64.892215968820381, 18.359608330581636 ], [ -64.892223009622398, 18.359715954270087 ], [ -64.892266595539866, 18.359789212139049 ], [ -64.892346726572669, 18.359820728110094 ], [ -64.892431048559104, 18.359844363778734 ], [ -64.892515370545539, 18.359868168395167 ], [ -64.892599524893853, 18.359907229392377 ], [ -64.892663227388539, 18.359965398518682 ], [ -64.892691056630156, 18.360003956601474 ], [ -64.892715027575036, 18.360034131467387 ], [ -64.892762636807959, 18.360103701297191 ], [ -64.892846791156217, 18.360142759675057 ], [ -64.892918707919989, 18.360189364388759 ], [ -64.892982578052852, 18.360247533515064 ], [ -64.893050471501169, 18.360301849583379 ], [ -64.893122555903119, 18.360352307355072 ], [ -64.893198495982347, 18.360395222719887 ], [ -64.893278627015206, 18.360430426730147 ], [ -64.89335892568613, 18.360461776372745 ], [ -64.893430842449959, 18.360508547414952 ], [ -64.893510973482762, 18.360547605792817 ], [ -64.893591104515622, 18.360586497842235 ], [ -64.893658997963939, 18.36064098154867 ], [ -64.893731082365832, 18.360687583643028 ], [ -64.893790761545119, 18.360749443427835 ], [ -64.893838370777985, 18.360822867625245 ], [ -64.893886147649027, 18.360892437454993 ], [ -64.89393375688195, 18.360965696633627 ], [ -64.893989412745725, 18.361031578424218 ], [ -64.894053282878588, 18.361089579912345 ], [ -64.89410089211151, 18.361159149742093 ], [ -64.89411229150528, 18.361243808314498 ], [ -64.894111453314565, 18.361332153616388 ], [ -64.894163253501063, 18.361401554498343 ], [ -64.894202816103075, 18.361478835682703 ], [ -64.894230141120545, 18.36155963857783 ], [ -64.89425361046068, 18.361640438853556 ], [ -64.894269033169905, 18.36172509742596 ], [ -64.894280264925555, 18.361809753378964 ], [ -64.89428244422146, 18.361822661516101 ], [ -64.894271547742107, 18.361896423609096 ], [ -64.894254616289572, 18.361980911924036 ], [ -64.894230141120545, 18.362068083758913 ], [ -64.894231482225678, 18.362071436521774 ], [ -64.894216897707167, 18.362124745451581 ], [ -64.894213880220548, 18.362169001921586 ], [ -64.894197954596848, 18.362193812366911 ], [ -64.894146992601122, 18.362273440485296 ], [ -64.894112794419698, 18.362353237551531 ], [ -64.894045236247678, 18.362416771098424 ], [ -64.893994106613775, 18.362512324840509 ], [ -64.893959908432407, 18.362592120597014 ], [ -64.89389218262221, 18.362655487815459 ], [ -64.89382462445019, 18.362719022672024 ], [ -64.893740470101875, 18.362766296628649 ], [ -64.893656315753617, 18.362797644961574 ], [ -64.893555732867185, 18.362812900032679 ], [ -64.893468897618277, 18.362775516726572 ], [ -64.893368983974824, 18.362704941067932 ], [ -64.893291702790407, 18.362660684597927 ], [ -64.893213583415331, 18.362703599962799 ], [ -64.893149042729874, 18.362759926379169 ], [ -64.893070923354742, 18.362798483152289 ], [ -64.892984254434339, 18.362784736824494 ], [ -64.892897251547254, 18.362792783455404 ], [ -64.892806055087249, 18.362774678535857 ], [ -64.892719050890491, 18.362791442350272 ], [ -64.892641769706131, 18.362747019551762 ], [ -64.892559794653721, 18.362711478955532 ], [ -64.892468431865211, 18.362693374035985 ], [ -64.892385953898383, 18.362727572217409 ], [ -64.892298949701626, 18.362739977440015 ], [ -64.892211945504926, 18.362743665479229 ], [ -64.892125276584466, 18.362729919151377 ], [ -64.892047827761928, 18.362690022582797 ], [ -64.891965852709518, 18.362654314348447 ], [ -64.891888571525158, 18.362614416470194 ], [ -64.891820510438663, 18.362561442816684 ], [ -64.89177088954807, 18.362486843842589 ], [ -64.891698134593526, 18.362438228780832 ], [ -64.891625379639038, 18.362389781357251 ], [ -64.8915573185526, 18.362336807703741 ], [ -64.891480037368183, 18.362292552543352 ], [ -64.89140962934772, 18.362242093462044 ], [ -64.89132111640771, 18.362222813765811 ], [ -64.891227240356727, 18.362212755477174 ], [ -64.891169906801792, 18.362221641608471 ], [ -64.891097488433275, 18.362170845941137 ], [ -64.891003946348917, 18.362114519524766 ], [ -64.890974440725927, 18.362070263054761 ], [ -64.89095180957645, 18.362048134819759 ], [ -64.890892968587934, 18.361985605792029 ], [ -64.890852066190462, 18.361912515561244 ], [ -64.890846869407994, 18.361886028734489 ], [ -64.890863799550857, 18.361842610455199 ], [ -64.890914258632222, 18.361777063940906 ], [ -64.890982656304629, 18.361710177631096 ], [ -64.891023895288072, 18.361651502971029 ], [ -64.891040657792757, 18.361604731928878 ], [ -64.891052058496257, 18.361573215957776 ], [ -64.891050548443275, 18.361540861796016 ], [ -64.891002268657815, 18.36150297557549 ], [ -64.890919624362482, 18.361473806538413 ], [ -64.890833624684944, 18.361449163731265 ], [ -64.890756343500584, 18.361409265852956 ], [ -64.89068358854604, 18.361360650791198 ], [ -64.890624747557524, 18.36129912759236 ], [ -64.890579654206476, 18.361224528618266 ], [ -64.890523998342644, 18.361152445526045 ], [ -64.890457278361339, 18.36109695730039 ], [ -64.890402963602696, 18.3610310755098 ], [ -64.890389886517767, 18.360969887587203 ], [ -64.890390724708482, 18.360946081661098 ], [ -64.890429450429451, 18.360865615351997 ], [ -64.890505893423096, 18.360826052749985 ], [ -64.890590549376157, 18.360794370450435 ], [ -64.890675206638832, 18.360774924425755 ], [ -64.89075148330403, 18.360731169560495 ], [ -64.890751649632534, 18.360723124239257 ], [ -64.890747795264872, 18.36068272344653 ], [ -64.890735222404089, 18.360662605559583 ], [ -64.890718458589674, 18.360654392600225 ], [ -64.890710075372795, 18.360650201646592 ], [ -64.890638495194992, 18.36062136657614 ], [ -64.890550148583429, 18.360592532815417 ], [ -64.890474543780499, 18.360547605792817 ], [ -64.890411679476472, 18.360490608823852 ], [ -64.890361555671461, 18.360421709546642 ], [ -64.890319813773601, 18.360364881525527 ], [ -64.890324341313146, 18.360344763638579 ], [ -64.890396424405367, 18.360296986767537 ], [ -64.890456103584654, 18.36023295030617 ], [ -64.890473371623159, 18.360200762472857 ], [ -64.890448393539714, 18.360148291733822 ], [ -64.890415033549061, 18.360107555664797 ], [ -64.890394077471399, 18.360087271449402 ], [ -64.890394077471399, 18.360083249443619 ], [ -64.890373291651201, 18.360058940603039 ], [ -64.890377650242954, 18.360034800710309 ], [ -64.890407488522897, 18.360014851771155 ], [ -64.890428612238736, 18.360006972778422 ], [ -64.890441351427967, 18.359990879516602 ], [ -64.890462810420104, 18.359966908571664 ], [ -64.890467336649976, 18.359930697422897 ], [ -64.890475886195304, 18.359902535524384 ], [ -64.890476052523809, 18.359894487583801 ], [ -64.890450908111859, 18.359874035730229 ], [ -64.890434144297444, 18.359853751514777 ], [ -64.890404975260424, 18.359813184393602 ], [ -64.890405141588872, 18.359793066506654 ], [ -64.890401119583089, 18.359776974554507 ], [ -64.890401287221209, 18.359760881292686 ], [ -64.890401622497507, 18.359720480499959 ], [ -64.890397599182052, 18.359696340607229 ], [ -64.890393408228476, 18.359692149653654 ], [ -64.890372453460486, 18.359679912069112 ], [ -64.890313443524121, 18.359655269261964 ], [ -64.890229290485479, 18.359630457506967 ], [ -64.890140777545469, 18.359613527364104 ], [ -64.890140777545469, 18.359609502738977 ], [ -64.890102891324943, 18.359605145456896 ], [ -64.890098700371311, 18.359589052195076 ], [ -64.890086461477154, 18.359548651402406 ], [ -64.890095012332154, 18.359524511509676 ], [ -64.890087133339364, 18.359463994139674 ], [ -64.890062490532216, 18.359383192554276 ], [ -64.890025273554556, 18.359306246646156 ], [ -64.889983700604546, 18.359233324053548 ], [ -64.889958387244803, 18.359221086469006 ], [ -64.889947489455778, 18.359209687075236 ], [ -64.889973473368059, 18.359145314027899 ], [ -64.890020579686563, 18.359073229626006 ], [ -64.890000129142663, 18.358992428040608 ], [ -64.889967104428251, 18.358911457507361 ], [ -64.889900049170649, 18.358858485163523 ], [ -64.889837183557006, 18.358801654523063 ], [ -64.889812542059531, 18.358720854247338 ], [ -64.889817571203821, 18.358636196984605 ], [ -64.889780186588041, 18.358559251076485 ], [ -64.889742972229726, 18.358478280543295 ], [ -64.889692848424716, 18.358409382575758 ], [ -64.889651274164976, 18.35833645998315 ], [ -64.889626631357828, 18.358255658397695 ], [ -64.889631660502118, 18.35817100113502 ], [ -64.88965345346088, 18.358090534825863 ], [ -64.889666864512378, 18.358006045201307 ], [ -64.889684466517508, 18.357921555576695 ], [ -64.889685303398551, 18.357836898314019 ], [ -64.889719670527711, 18.357760622958494 ], [ -64.889736769618423, 18.357736483065764 ], [ -64.889762584582911, 18.357688370918424 ], [ -64.889792759448824, 18.357607904609324 ], [ -64.889835676123369, 18.357535652569254 ], [ -64.889857469082074, 18.357455186260097 ], [ -64.889870880133628, 18.357370696635542 ], [ -64.889897030374414, 18.357290230326441 ], [ -64.889892839420838, 18.357274137064621 ], [ -64.889901893190256, 18.357207249445139 ], [ -64.889915304241754, 18.357122759820584 ], [ -64.889916142432526, 18.357038102557851 ], [ -64.889908431077856, 18.356953277656999 ], [ -64.889900718413571, 18.356864597078811 ], [ -64.889884626461424, 18.356779772177958 ], [ -64.889851434108891, 18.356698970592504 ], [ -64.889831148583824, 18.356618169007106 ], [ -64.889815056631676, 18.356533344106253 ], [ -64.889836849590381, 18.356452877797153 ], [ -64.889862833502718, 18.356372411487996 ], [ -64.889901556604286, 18.356296136132471 ], [ -64.889965260408701, 18.356240144992398 ], [ -64.890024939587931, 18.356180298174991 ], [ -64.890109595540991, 18.356156661196678 ], [ -64.890169274720279, 18.35609664674115 ], [ -64.890220573302031, 18.356028585654656 ], [ -64.890263487357174, 18.355952310299131 ], [ -64.890289472579184, 18.355867820674575 ], [ -64.890370106526461, 18.355832281388075 ], [ -64.890458619466472, 18.355845021886978 ], [ -64.890547132406539, 18.355853906708603 ], [ -64.890635811674997, 18.355862623892108 ], [ -64.890724324615064, 18.355871341075613 ], [ -64.890779812840719, 18.355807303304573 ], [ -64.890843684283254, 18.35575147980262 ], [ -64.890890790601702, 18.355675204447095 ], [ -64.890916774514039, 18.355594738137995 ], [ -64.890930185565537, 18.355507733941238 ], [ -64.890939404353787, 18.355423244316682 ], [ -64.890952815405342, 18.35533858705395 ], [ -64.890957844549632, 18.355254097429395 ], [ -64.89093739269606, 18.355173295843997 ], [ -64.890938064558327, 18.355088638581265 ], [ -64.890926162250082, 18.355003813680412 ], [ -64.890871847491439, 18.354938937718657 ], [ -64.890792050425205, 18.354901889688847 ], [ -64.890703537485194, 18.354885125874432 ], [ -64.890623575400184, 18.354848245482742 ], [ -64.890547970597254, 18.354807341775654 ], [ -64.890405141588872, 18.354725534361364 ], [ -64.890320988550286, 18.354688487641226 ], [ -64.890249742339051, 18.354639535993499 ], [ -64.890156869497616, 18.354626795494539 ], [ -64.890076907412606, 18.354593770780184 ], [ -64.889992753064291, 18.354564937019404 ], [ -64.889917148261361, 18.354524034621932 ], [ -64.889841543458431, 18.354483129605114 ], [ -64.889757389110116, 18.354454128206214 ], [ -64.889677424405761, 18.354421271129979 ], [ -64.889601819602831, 18.354380367422891 ], [ -64.889538956608476, 18.354323370453926 ], [ -64.889463350495873, 18.354278443431326 ], [ -64.88938355604904, 18.354229493093271 ], [ -64.889307951246053, 18.354180542755216 ], [ -64.889245254580203, 18.354123545786251 ], [ -64.889173839421176, 18.354074595448196 ], [ -64.889102425571878, 18.354025645110141 ], [ -64.889064875937265, 18.353976862410263 ], [ -64.88905246940493, 18.353954232570516 ], [ -64.889006705501288, 18.353881308668178 ], [ -64.888948032150893, 18.353820456021879 ], [ -64.888898075984002, 18.353751389106606 ], [ -64.88885214313251, 18.353686513144851 ], [ -64.888859351572705, 18.353827664462074 ], [ -64.888862871973743, 18.353912489362983 ], [ -64.888824147562502, 18.353988764718508 ], [ -64.888793805058413, 18.354073086704886 ], [ -64.888759439238925, 18.354149362060411 ], [ -64.888724904471587, 18.354225805054114 ], [ -64.888703111512825, 18.354306271363214 ], [ -64.888637901584502, 18.354527386075176 ], [ -64.888586604312422, 18.354595614799734 ], [ -64.888518543225985, 18.354647414986232 ], [ -64.888433885963252, 18.354670885636097 ], [ -64.888349396338697, 18.354690330351104 ], [ -64.888264739075964, 18.354713968639089 ], [ -64.888175890859657, 18.354725366723244 ], [ -64.888096095103094, 18.354688318693377 ], [ -64.888020321352315, 18.354647414986232 ], [ -64.887931808412304, 18.354634674487329 ], [ -64.887843296781966, 18.354617743034794 ], [ -64.887754783841899, 18.354609025851289 ], [ -64.887661912310136, 18.354600141029664 ], [ -64.887573399370126, 18.354587400530704 ], [ -64.887484886430059, 18.354578683347199 ], [ -64.887396205851871, 18.354573821841029 ], [ -64.887311548589196, 18.354593267865766 ], [ -64.887226891326463, 18.354620928159477 ], [ -64.887138043110156, 18.354640374184214 ], [ -64.887053385847423, 18.354667866839804 ], [ -64.88696051431566, 18.354671219602722 ], [ -64.886880550920921, 18.354638194888309 ], [ -64.886787679389158, 18.354633501020317 ], [ -64.886736382117135, 18.354701562106754 ], [ -64.88666010676161, 18.354741292346887 ], [ -64.886579640452453, 18.354772809627661 ], [ -64.886507388412383, 18.354820752827152 ], [ -64.886460282093935, 18.354892837229102 ], [ -64.886455420587765, 18.354977494491777 ], [ -64.88645458239705, 18.35506215175451 ], [ -64.886454079482633, 18.355122669124512 ], [ -64.886449553252703, 18.355148317760552 ], [ -64.886448882700165, 18.355232975023227 ], [ -64.88644804450945, 18.35531763228596 ], [ -64.88644318300328, 18.355402289548692 ], [ -64.88642558099815, 18.355486779173248 ], [ -64.886445697575425, 18.355591888289553 ], [ -64.886474531336205, 18.35567268987495 ], [ -64.886482242690818, 18.355757347137683 ], [ -64.886515267405173, 18.355834293045802 ], [ -64.886493809722765, 18.355874358562176 ], [ -64.886481069223805, 18.355890451823996 ], [ -64.886451564910431, 18.355890116547755 ], [ -64.886362716694123, 18.35590553925698 ], [ -64.886274036115935, 18.355912915335296 ], [ -64.886185355537805, 18.355908221467303 ], [ -64.886096674959617, 18.355903527599253 ], [ -64.88600816201955, 18.355898666093083 ], [ -64.885923504756875, 18.355918112117763 ], [ -64.885834991816807, 18.355901348303405 ], [ -64.885750837468549, 18.35587653785808 ], [ -64.885661989252185, 18.355891960567305 ], [ -64.885573308674054, 18.3558991690075 ], [ -64.885488986687619, 18.355870335246721 ], [ -64.885400473747552, 18.355865641378728 ], [ -64.885320007438452, 18.355897157349773 ], [ -64.885231159222144, 18.355904533428088 ], [ -64.885142478643957, 18.355907886191005 ], [ -64.885053965703946, 18.355903024684835 ], [ -64.884969643717511, 18.35587821423951 ], [ -64.884885489369196, 18.355853403794185 ], [ -64.884818434111594, 18.355800430140675 ], [ -64.884747021571911, 18.35575147980262 ], [ -64.884679965004636, 18.35569850614911 ], [ -64.884591619702746, 18.35566950475021 ], [ -64.884502939124616, 18.355656764251307 ], [ -64.884414427494221, 18.355652070383258 ], [ -64.884333959875448, 18.355683586354303 ], [ -64.884307975963111, 18.355751982717095 ], [ -64.884299426417783, 18.355759861709828 ], [ -64.884218960108683, 18.35579154531905 ], [ -64.884134136517446, 18.355823061290153 ], [ -64.884049477945098, 18.355846698268408 ], [ -64.883842781423198, 18.355836807617948 ], [ -64.883762816718843, 18.355799927226258 ], [ -64.883704143368448, 18.35575114452638 ], [ -64.883700120052993, 18.355742930257293 ], [ -64.883695930409033, 18.355734883626383 ], [ -64.883759800541895, 18.35567906012443 ], [ -64.88381931077339, 18.355619045668902 ], [ -64.883853508954758, 18.355570933521562 ], [ -64.883820148964105, 18.35553438840617 ], [ -64.883740185569422, 18.355501363691815 ], [ -64.88370229934884, 18.355484935153697 ], [ -64.883681679857148, 18.355440511045515 ], [ -64.883686541363318, 18.355355853782783 ], [ -64.883687379554033, 18.355267173204652 ], [ -64.8836880514163, 18.35518251594192 ], [ -64.883646475846888, 18.355109593349255 ], [ -64.883596519679998, 18.355040694072102 ], [ -64.88353365537597, 18.354983697103137 ], [ -64.883453859619465, 18.354946816711447 ], [ -64.883424356615762, 18.354934411488784 ], [ -64.88336518035095, 18.354938099527942 ], [ -64.883276667410883, 18.354933238021772 ], [ -64.883187817884902, 18.354940614100087 ], [ -64.883099138616387, 18.354943966863004 ], [ -64.883010456728584, 18.354955366256775 ], [ -64.882917417558645, 18.354966598012425 ], [ -64.882828738290129, 18.354977997406252 ], [ -64.882743913389277, 18.355009681015417 ], [ -64.882655063863297, 18.355024936086522 ], [ -64.882566718561407, 18.355000125641254 ], [ -64.882490778482179, 18.354995431773204 ], [ -64.882478039292891, 18.354991408457749 ], [ -64.882461275478477, 18.354979170873207 ], [ -64.882402434489961, 18.354946313797029 ], [ -64.882326828377359, 18.354905410089884 ], [ -64.882242675338716, 18.354876576329104 ], [ -64.882149971445074, 18.354855621561114 ], [ -64.882061458505063, 18.354842881062154 ], [ -64.881976801242331, 18.354866350402347 ], [ -64.881900524577134, 18.354906080642422 ], [ -64.881865992429141, 18.354986379313402 ], [ -64.881823075754596, 18.355058631353472 ], [ -64.881810336565366, 18.355074556977172 ], [ -64.881750991352703, 18.355106408224515 ], [ -64.881674548359001, 18.355150161780102 ], [ -64.881644710079058, 18.355178157350167 ], [ -64.881589892405998, 18.355173631120294 ], [ -64.881556197139048, 18.355165249213087 ], [ -64.881539768600931, 18.355104731843085 ], [ -64.881498194341191, 18.355031809250477 ], [ -64.881448238174301, 18.354962909973267 ], [ -64.881368273469946, 18.354929885258912 ], [ -64.881279760529935, 18.354917144759952 ], [ -64.881191247589868, 18.354900213307417 ], [ -64.881102568321353, 18.354895519439367 ], [ -64.88101388643355, 18.354906918833194 ], [ -64.88092923048049, 18.354926364857874 ], [ -64.880878602451332, 18.354922006266122 ], [ -64.880841554421465, 18.354907086471314 ], [ -64.880753210429305, 18.354878252710535 ], [ -64.880664697489237, 18.354861321257999 ], [ -64.880580375502802, 18.354836510812675 ], [ -64.880500578436624, 18.35480365373644 ], [ -64.880424807305189, 18.354762582391174 ], [ -64.88034937014038, 18.354717655368574 ], [ -64.8802735963896, 18.35467675166143 ], [ -64.880193801942767, 18.354643894585251 ], [ -64.880109479956332, 18.354623107455382 ], [ -64.880088357550164, 18.354614725548174 ], [ -64.880041754146134, 18.354638530164607 ], [ -64.880020630430352, 18.354638362526487 ], [ -64.879932117490284, 18.354621598712072 ], [ -64.879847964451699, 18.354600811582202 ], [ -64.879768001057016, 18.354567786867847 ], [ -64.879709495344741, 18.354506934221604 ], [ -64.879676302992209, 18.354434011628939 ], [ -64.879697425398376, 18.354422110630367 ], [ -64.879705974943704, 18.354418253643416 ], [ -64.879723576948834, 18.354341810649771 ], [ -64.879711674640589, 18.354256985748862 ], [ -64.879691222787017, 18.354176184163464 ], [ -64.879679320478829, 18.354091360572284 ], [ -64.879751572518899, 18.354043582391569 ], [ -64.879807059434881, 18.353979544620586 ], [ -64.879883336100079, 18.353939814380453 ], [ -64.879972184316387, 18.353912321724806 ], [ -64.880052818263664, 18.353876782438306 ], [ -64.880149042558287, 18.353818612002328 ], [ -64.880196819429329, 18.353791454622979 ], [ -64.880238226050892, 18.353767817644666 ], [ -64.880347023206355, 18.353709648518418 ], [ -64.880459339453182, 18.353669916968613 ], [ -64.880529078230722, 18.35365583536452 ], [ -64.880594960021369, 18.353619457887248 ], [ -64.880653298095467, 18.353579224732698 ], [ -64.88079260539314, 18.353550893886336 ], [ -64.880866198538342, 18.3535294375136 ], [ -64.880959405346402, 18.353485851596133 ], [ -64.881048587529335, 18.353434889600351 ], [ -64.881114804596223, 18.353383758656776 ], [ -64.881177167295448, 18.353317876866186 ], [ -64.88122796165311, 18.353255684424425 ], [ -64.881255620637148, 18.353174713891235 ], [ -64.881268193497988, 18.353075136833695 ], [ -64.881226285271623, 18.35300841685239 ], [ -64.881165263677531, 18.352908336880375 ], [ -64.88104657718128, 18.352800377915685 ], [ -64.88099662101439, 18.352766851596527 ], [ -64.880927720427508, 18.352699796338925 ], [ -64.880835016533865, 18.352691748398342 ], [ -64.880707611544437, 18.352683366491135 ], [ -64.880564951483905, 18.352652688710805 ], [ -64.88039932630727, 18.352599716366967 ], [ -64.880268400916805, 18.35255428642995 ], [ -64.88018407893037, 18.352476165745145 ], [ -64.880119035330551, 18.352398215317862 ], [ -64.880042592336849, 18.352316406593957 ], [ -64.879950391357681, 18.35225672741467 ], [ -64.879846288070212, 18.352226384910637 ], [ -64.879749728499291, 18.352236610837394 ], [ -64.879622155871687, 18.352246670435704 ], [ -64.879513526354401, 18.352290087405322 ], [ -64.879408081961799, 18.352336021566487 ], [ -64.879372877951596, 18.352382792608637 ], [ -64.879288219379191, 18.3524062606391 ], [ -64.879258548737369, 18.352410117626107 ], [ -64.879204401616846, 18.352429731288964 ], [ -64.879119744354114, 18.352453366957604 ], [ -64.879039278045013, 18.35248488292865 ], [ -64.878954620782281, 18.352508353578514 ], [ -64.87887398683506, 18.352540035878008 ], [ -64.878852864428893, 18.352547914870797 ], [ -64.878785473894993, 18.352539366635142 ], [ -64.87869260236323, 18.352526458498062 ], [ -64.878603921785043, 18.352533834576377 ], [ -64.878515241206856, 18.352545232660475 ], [ -64.878426392990548, 18.352556464416125 ], [ -64.8782445056043, 18.352595356465542 ], [ -64.878159848341625, 18.35261480249028 ], [ -64.878075191078892, 18.352638271830415 ], [ -64.87799053381616, 18.352661908808727 ], [ -64.877910067507059, 18.352693424779773 ], [ -64.877829601197902, 18.352725108388995 ], [ -64.877791547339257, 18.352732819743608 ], [ -64.877745111573347, 18.352728462461585 ], [ -64.877740920619715, 18.352728293513735 ], [ -64.877656766271457, 18.352703484378083 ], [ -64.877572444285022, 18.352674650617359 ], [ -64.877488289936707, 18.352649672533857 ], [ -64.877467335168717, 18.352641456955155 ], [ -64.877493319081054, 18.35256501396151 ], [ -64.877468676273907, 18.352484212376055 ], [ -64.877418552468839, 18.352415314408574 ], [ -64.877385527754484, 18.352338534828959 ], [ -64.877411511666764, 18.352258068519802 ], [ -64.877419558297674, 18.352252705408887 ], [ -64.877458282708972, 18.352190510347782 ], [ -64.877514944401639, 18.352126807853097 ], [ -64.877621897537495, 18.352068806364912 ], [ -64.877672859533277, 18.352010468290814 ], [ -64.877701860932177, 18.351892952642174 ], [ -64.87770303439919, 18.351753814292351 ], [ -64.877659113205482, 18.351657253411702 ], [ -64.877671183151847, 18.351555664696491 ], [ -64.87761636547873, 18.351421386543109 ], [ -64.877607145380807, 18.351207312633221 ], [ -64.877569259160282, 18.351051913383401 ], [ -64.877537240274762, 18.350875055141501 ], [ -64.877476890542937, 18.350724851364475 ], [ -64.877314784457667, 18.350685959315058 ], [ -64.877118983105504, 18.350662991579668 ], [ -64.876922846477044, 18.35066148414603 ], [ -64.876732241907291, 18.350670536605833 ], [ -64.876636855803383, 18.350691156097525 ], [ -64.876541804975716, 18.350674392283111 ], [ -64.876423955360451, 18.350689478406423 ], [ -64.876305770468946, 18.350741950455188 ], [ -64.876226309988681, 18.350864492628773 ], [ -64.876152213929061, 18.351008327465991 ], [ -64.876140311620816, 18.351088458498793 ], [ -64.876150705185751, 18.351174121590418 ], [ -64.876161098750686, 18.351270513523218 ], [ -64.876115333537371, 18.351366402541544 ], [ -64.876047607727173, 18.351435469456874 ], [ -64.87597384694385, 18.351525826416491 ], [ -64.875796988701893, 18.351583326299874 ], [ -64.875792965386438, 18.351591037654543 ], [ -64.875712499077338, 18.351606460363769 ], [ -64.87562834472908, 18.351585673233899 ], [ -64.875586099916745, 18.351581314642146 ], [ -64.875539665460565, 18.351592880364421 ], [ -64.87547579401803, 18.351648871504551 ], [ -64.875399351024328, 18.351692626369811 ], [ -64.875327098984258, 18.351740403240854 ], [ -64.875250823628789, 18.351780133480929 ], [ -64.875178571588719, 18.351831932357754 ], [ -64.875098106589235, 18.351867471644312 ], [ -64.875013448016887, 18.351891108622624 ], [ -64.874937005023185, 18.351930672534252 ], [ -64.874848324444997, 18.351946095243534 ], [ -64.874759477538362, 18.351953471321849 ], [ -64.874670795650502, 18.351964869405947 ], [ -64.874586138387826, 18.351992363371266 ], [ -64.874497291481134, 18.352003761455364 ], [ -64.874417326776779, 18.351970904379129 ], [ -64.874333172428521, 18.351941904289902 ], [ -64.874253376671959, 18.351909047213667 ], [ -64.874169054685524, 18.351884235458726 ], [ -64.874080541745514, 18.351867305315807 ], [ -64.873992028805446, 18.351854563507231 ], [ -64.873899158583356, 18.351845678685606 ], [ -64.873810476695496, 18.351857079389049 ], [ -64.873721628479188, 18.351872500788602 ], [ -64.873636972526128, 18.351895971438466 ], [ -64.873548124309821, 18.351923462784384 ], [ -64.873459442421961, 18.351926815547301 ], [ -64.873404458420396, 18.351938382579192 ], [ -64.873371432396368, 18.351946261571982 ], [ -64.873282753127853, 18.351949615644514 ], [ -64.87320228550908, 18.351981131615617 ], [ -64.873113438602445, 18.351996554324842 ], [ -64.873024756714585, 18.352007952408997 ], [ -64.87293607744607, 18.352007115527954 ], [ -64.872856114051388, 18.351974258451719 ], [ -64.872780509248457, 18.351925306803992 ], [ -64.872747484534102, 18.351848362205544 ], [ -64.872731054686312, 18.351803936787746 ], [ -64.872687302440397, 18.351785833177871 ], [ -64.872607339045715, 18.351748951476509 ], [ -64.872527375651032, 18.351716094400274 ], [ -64.872443221302717, 18.351691117626501 ], [ -64.872363256598362, 18.351654237234811 ], [ -64.872296202650432, 18.351601263581301 ], [ -64.872216239255749, 18.351568406505066 ], [ -64.872132083597762, 18.351539403796494 ], [ -64.872052289150929, 18.351506546720259 ], [ -64.871963608572742, 18.351497829536811 ], [ -64.871875095632731, 18.351484921399674 ], [ -64.871782390429416, 18.351467991256811 ], [ -64.871731765019604, 18.351459609349604 ], [ -64.871698237390774, 18.351439157496031 ], [ -64.871559265369399, 18.351393727559014 ], [ -64.871470920067509, 18.351364726160114 ], [ -64.871382239489378, 18.351356007666936 ], [ -64.871293894187488, 18.351331029583491 ], [ -64.871205213609301, 18.351322312400043 ], [ -64.871116699359561, 18.351309405572579 ], [ -64.871032546320976, 18.351288618442766 ], [ -64.870944201019086, 18.351251570412899 ], [ -64.870864237624403, 18.351218713336721 ], [ -64.870801373320376, 18.351161716367756 ], [ -64.870751417153485, 18.351088792465418 ], [ -64.870688552849458, 18.351031795496453 ], [ -64.870638595372895, 18.350962897528973 ], [ -64.87061395387542, 18.350882094633846 ], [ -64.870580593884767, 18.350825266612731 ], [ -64.870568187352433, 18.35080917335091 ], [ -64.870534493395155, 18.350788721497338 ], [ -64.87048386667567, 18.35078821858292 ], [ -64.870395186097483, 18.350799616667018 ], [ -64.87031036119663, 18.350827110632338 ], [ -64.870234085841105, 18.350870864187925 ], [ -64.870174741938115, 18.350886454535271 ], [ -64.870145405262917, 18.35087019363533 ], [ -64.870061250914603, 18.350845215551885 ], [ -64.869972570336472, 18.350844543689618 ], [ -64.869883722120107, 18.350859966398843 ], [ -64.869837118716077, 18.350879747699878 ], [ -64.869795712094515, 18.350879412423581 ], [ -64.869703008200929, 18.350870527601955 ], [ -64.869614327622742, 18.350857788412668 ], [ -64.869530173274427, 18.350832810329223 ], [ -64.869441492696239, 18.350832138466956 ], [ -64.869352812118109, 18.350835492539488 ], [ -64.869268657769794, 18.350814705409675 ], [ -64.869180144829784, 18.350785702701046 ], [ -64.869100349073221, 18.350748823619085 ], [ -64.869020385678539, 18.350711775589218 ], [ -64.868940422283856, 18.35067891851304 ], [ -64.868864817480926, 18.350638013496223 ], [ -64.868789212677939, 18.35059711109875 ], [ -64.868713607875009, 18.35055201643803 ], [ -64.868655102162734, 18.350491162482058 ], [ -64.868600787404091, 18.350426120191855 ], [ -64.868542281691873, 18.350365267545612 ], [ -64.868479417387846, 18.350308270576647 ], [ -64.868479417387846, 18.350300223945737 ], [ -64.868441531167321, 18.35029184203853 ], [ -64.868412362130243, 18.350255295613465 ], [ -64.868349497826273, 18.350198299954172 ], [ -64.868299374021205, 18.35012939936729 ], [ -64.868240868308931, 18.35006854803072 ], [ -64.868195103095616, 18.349995456490262 ], [ -64.868157719789508, 18.349918679529992 ], [ -64.868099214077233, 18.349857659245572 ], [ -64.8680194196304, 18.34982077754421 ], [ -64.86794364587962, 18.349779875146737 ], [ -64.86786804107669, 18.3497388024918 ], [ -64.867792437583432, 18.349697900094327 ], [ -64.867712640517198, 18.349661018392965 ], [ -64.867658325758555, 18.349596142431267 ], [ -64.867616751498815, 18.349523221148274 ], [ -64.867575178548805, 18.349450298555666 ], [ -64.867546008202055, 18.349405706809364 ], [ -64.867510636553675, 18.349389110633069 ], [ -64.867440060895035, 18.349334292960009 ], [ -64.867355068356062, 18.349299591864167 ], [ -64.867284661645215, 18.349238067355657 ], [ -64.867242583161442, 18.349163134414994 ], [ -64.867193466494882, 18.349094738052202 ], [ -64.867108641594029, 18.349053331430639 ], [ -64.867060863413315, 18.348971691654526 ], [ -64.866992299412402, 18.348919220915434 ], [ -64.86692356777337, 18.348866917814519 ], [ -64.866839917649202, 18.348833222547569 ], [ -64.866751235761342, 18.348813608884711 ], [ -64.866657526038864, 18.348808076826003 ], [ -64.866568845460677, 18.348798018537366 ], [ -64.866485194026836, 18.348764323270416 ], [ -64.866401542592939, 18.348730628003466 ], [ -64.866322921613119, 18.348692238868466 ], [ -64.866316886639936, 18.348605905224304 ], [ -64.866374552851767, 18.348511357311111 ], [ -64.866439093537224, 18.348450839941108 ], [ -64.866461221772227, 18.348362829915516 ], [ -64.866497431611322, 18.348281693053821 ], [ -64.866554931494704, 18.348214470158098 ], [ -64.866633387455806, 18.348174404641668 ], [ -64.866718881599581, 18.348141044651015 ], [ -64.866797503889075, 18.348100979134585 ], [ -64.866868917738429, 18.348054208092435 ], [ -64.866954414501549, 18.34802772126568 ], [ -64.867039908645324, 18.348008107602823 ], [ -64.867132109624492, 18.348008778155361 ], [ -64.86722447955151, 18.348009616346133 ], [ -64.867316846859183, 18.348017160062568 ], [ -64.867351884540994, 18.348020009911011 ], [ -64.867409047838407, 18.34802470377906 ], [ -64.867501416455752, 18.348025374331655 ], [ -64.86753561463712, 18.34801967463477 ], [ -64.867640220839007, 18.348020512825485 ], [ -64.867715825641937, 18.34803576789659 ], [ -64.867790424616032, 18.348034594429578 ], [ -64.867883128509618, 18.34801498076672 ], [ -64.868025788570208, 18.347982291328663 ], [ -64.868144979290548, 18.347930658780285 ], [ -64.86832418446653, 18.347840637096965 ], [ -64.868499701603298, 18.347801074494953 ], [ -64.868622245086556, 18.34775799149196 ], [ -64.868715284256439, 18.347695630102407 ], [ -64.868854591554111, 18.347636789113835 ], [ -64.869139576398936, 18.34755079074597 ], [ -64.869367899551037, 18.347498990559473 ], [ -64.869446689478707, 18.347422547565827 ], [ -64.869446857116884, 18.347392205061738 ], [ -64.869470829371437, 18.34733369934952 ], [ -64.869510224335329, 18.347307380160885 ], [ -64.869556827739359, 18.347309559456789 ], [ -64.869650872738134, 18.347342751809265 ], [ -64.869760340446135, 18.347332861158804 ], [ -64.86988808071186, 18.347347948591732 ], [ -64.869960500390107, 18.347363203662837 ], [ -64.87002621454252, 18.34738063802979 ], [ -64.870131658935122, 18.34737728526693 ], [ -64.87023509166994, 18.347375944161797 ], [ -64.87036685525112, 18.347368735721602 ], [ -64.870496607174573, 18.347365550596862 ], [ -64.870588975791918, 18.347362030195825 ], [ -64.870768516244141, 18.347405448475115 ], [ -64.870905979522263, 18.347453560622455 ], [ -64.871037743103443, 18.34749949347389 ], [ -64.871186941051576, 18.347576774658307 ], [ -64.871583740538426, 18.34781582665164 ], [ -64.871658507150642, 18.347896292960741 ], [ -64.871755401997916, 18.347979776756461 ], [ -64.871881465882211, 18.348062589999586 ], [ -64.872052121512752, 18.348131992191213 ], [ -64.872113309435349, 18.348147917814913 ], [ -64.872143315353412, 18.348159820123158 ], [ -64.872170306404314, 18.348172895898358 ], [ -64.872793920299955, 18.348478835511173 ], [ -64.873087957604525, 18.348645635464436 ], [ -64.873364057627725, 18.348826014107374 ], [ -64.873705367579248, 18.349033550129661 ], [ -64.874204930558051, 18.349251144440586 ], [ -64.874647661586664, 18.349358265214562 ], [ -64.874797697725512, 18.349360276872289 ], [ -64.874864752983115, 18.349366144207352 ], [ -64.87498327446059, 18.349391122290797 ], [ -64.875037924495587, 18.349385422593912 ], [ -64.875114701455857, 18.349362959082612 ], [ -64.875158622649565, 18.349338316275464 ], [ -64.875179409779435, 18.349313505830139 ], [ -64.875190810482877, 18.349294059805459 ], [ -64.875166166366057, 18.349255838308579 ], [ -64.875119562962027, 18.349126086385127 ], [ -64.875053179566635, 18.349036567616224 ], [ -64.874981596769487, 18.348942857893746 ], [ -64.874879840416099, 18.348809417931136 ], [ -64.874766015426019, 18.348692406506643 ], [ -64.874607094465489, 18.348530970973968 ], [ -64.874536852773474, 18.348458886572018 ], [ -64.874481533495612, 18.348390657847403 ], [ -64.874449010386002, 18.348272975870316 ], [ -64.874450183853014, 18.348155461531405 ], [ -64.874492262336844, 18.34802939764711 ], [ -64.874627209733092, 18.347908530545283 ], [ -64.874683871425759, 18.347861088950538 ], [ -64.874715722673102, 18.34785421578664 ], [ -64.87483021952545, 18.347753632900208 ], [ -64.874852850674927, 18.347737874914685 ], [ -64.87488805468513, 18.347669310913773 ], [ -64.874919403018055, 18.34758465365104 ], [ -64.875022332838512, 18.347434114597775 ], [ -64.87508285151813, 18.347347278039138 ], [ -64.875140014815599, 18.347289778155755 ], [ -64.875241269564242, 18.347145776990089 ], [ -64.875353250534772, 18.347008984264562 ], [ -64.875385269420235, 18.34698216216151 ], [ -64.875435897449393, 18.346939749711112 ], [ -64.87549859280557, 18.346930529613189 ], [ -64.875582579515765, 18.346919633133837 ], [ -64.875621806841423, 18.346908401378187 ], [ -64.87566874552175, 18.346867832947339 ], [ -64.875802353122538, 18.346728358011489 ], [ -64.875870078932678, 18.346654094313749 ], [ -64.875940654591318, 18.346592403476734 ], [ -64.876168977743475, 18.346478577176981 ], [ -64.876273919221603, 18.346433147239907 ], [ -64.876363940904923, 18.346366091982304 ], [ -64.876435187116101, 18.346316806368009 ], [ -64.876590756623443, 18.346247236538261 ], [ -64.876730062611443, 18.346208512126964 ], [ -64.876834501175153, 18.346188395549689 ], [ -64.876877081263729, 18.346177499070336 ], [ -64.876951009685229, 18.346110946727151 ], [ -64.877011527055174, 18.346068031362279 ], [ -64.877123341697256, 18.346022601425261 ], [ -64.877185200172391, 18.345993767664481 ], [ -64.877222415840322, 18.345926544768759 ], [ -64.877258290403176, 18.345845575545184 ], [ -64.877319813602014, 18.345693527748608 ], [ -64.877362896605007, 18.345626640129126 ], [ -64.877382677906041, 18.345545000353013 ], [ -64.877414193877087, 18.345461182590668 ], [ -64.87746213838625, 18.345363615881183 ], [ -64.877538078465477, 18.345226990793833 ], [ -64.877550651326317, 18.345131939966222 ], [ -64.877628770701392, 18.345006211358225 ], [ -64.878079214394347, 18.344669258688782 ], [ -64.878160183617865, 18.344584433787873 ], [ -64.878341232813398, 18.344349069833697 ], [ -64.878607777462378, 18.343829560535141 ], [ -64.878781115303241, 18.343425217331799 ], [ -64.878841297396946, 18.343352628705759 ], [ -64.878914722904028, 18.343249197280613 ], [ -64.879039110406893, 18.343126652487683 ], [ -64.879067776529496, 18.343055741552746 ], [ -64.879114715209823, 18.343018693522936 ], [ -64.879181770467426, 18.343012155635336 ], [ -64.879226865128146, 18.342975107605525 ], [ -64.879227368042564, 18.342914591545195 ], [ -64.879212783524054, 18.342887769442143 ], [ -64.879051683267676, 18.342777631181548 ], [ -64.878926792850393, 18.342753657617266 ], [ -64.878823192477398, 18.342662128500308 ], [ -64.878656224885958, 18.34256992752114 ], [ -64.878548601197508, 18.342519299491983 ], [ -64.878478025538925, 18.342483089652831 ], [ -64.878308040460865, 18.34230438739138 ], [ -64.878267974944492, 18.342262311526895 ], [ -64.878201254963187, 18.342199110636898 ], [ -64.878139564126172, 18.342130211359745 ], [ -64.87808709338708, 18.342072880424155 ], [ -64.878054068672725, 18.342013201244924 ], [ -64.8780227203398, 18.341935752422387 ], [ -64.877994892407912, 18.341849586416345 ], [ -64.877978799146092, 18.341770461212377 ], [ -64.877958179654343, 18.341659149484769 ], [ -64.877962873522392, 18.341625620546324 ], [ -64.877977960955377, 18.341529397561317 ], [ -64.877977290402782, 18.341502909424889 ], [ -64.877971758344017, 18.341479609032547 ], [ -64.877950803576027, 18.341469718382029 ], [ -64.877923813834855, 18.341474412250079 ], [ -64.87787637224011, 18.341503748925277 ], [ -64.877787859300042, 18.341585387391717 ], [ -64.877768245637242, 18.341605337640544 ], [ -64.877757349157832, 18.341697538619769 ], [ -64.877752320013542, 18.341838857575112 ], [ -64.877779645031012, 18.34197565030064 ], [ -64.877788865128935, 18.3420753949963 ], [ -64.877793894273225, 18.342183855565793 ], [ -64.877903529619402, 18.34252617265588 ], [ -64.877980140251225, 18.34267604246628 ], [ -64.878037807772785, 18.342946275154418 ], [ -64.878039987068632, 18.343032441160403 ], [ -64.878026240740837, 18.343102346266448 ], [ -64.877990869092457, 18.343281717770878 ], [ -64.87796153241726, 18.343443823856148 ], [ -64.877943595135832, 18.343647336562924 ], [ -64.877918952328685, 18.343782620545142 ], [ -64.877877378068945, 18.343851184546054 ], [ -64.877715439621852, 18.344001723599376 ], [ -64.877579988001514, 18.344230214389654 ], [ -64.877486781193454, 18.344319900796677 ], [ -64.877412852771954, 18.344386620777982 ], [ -64.877346132790649, 18.344470104573702 ], [ -64.877279077533046, 18.344585774893062 ], [ -64.877192240974409, 18.344697421896967 ], [ -64.877118144914789, 18.344796160763792 ], [ -64.877019070771667, 18.344877969487698 ], [ -64.876971293900624, 18.344971174986085 ], [ -64.876935251699706, 18.345066059485305 ], [ -64.876862664383339, 18.345160773726946 ], [ -64.876838524490609, 18.34524174295052 ], [ -64.876810193644246, 18.345287675801956 ], [ -64.876791585810281, 18.345309971675135 ], [ -64.876757722905154, 18.345329250061695 ], [ -64.876725368743394, 18.34534165659403 ], [ -64.876678430063066, 18.345346852066825 ], [ -64.876611039529166, 18.345343500613581 ], [ -64.876526046990193, 18.34533310573903 ], [ -64.876493692828376, 18.345332436496108 ], [ -64.876413058881099, 18.345345847547605 ], [ -64.876310296698819, 18.345354731059558 ], [ -64.876120697957958, 18.345399490444038 ], [ -64.876019779795286, 18.345440729427423 ], [ -64.875985916890215, 18.345458666708851 ], [ -64.875916849974885, 18.345472077760405 ], [ -64.875828504672995, 18.345499402777875 ], [ -64.875805036642475, 18.345500577554503 ], [ -64.875775867605455, 18.345489176851061 ], [ -64.875742171028833, 18.345484650621188 ], [ -64.875633876787788, 18.345465539872748 ], [ -64.875569336102387, 18.345455147617486 ], [ -64.87554167580862, 18.345445255657353 ], [ -64.875499263358165, 18.345425306718198 ], [ -64.875369511434712, 18.345380044419301 ], [ -64.875255349858662, 18.345341822922478 ], [ -64.875147727479884, 18.345321203430785 ], [ -64.87498763174267, 18.34528499359169 ], [ -64.874774898937972, 18.345246101542273 ], [ -64.87473382759265, 18.34523688144435 ], [ -64.874688397655632, 18.34519715251389 ], [ -64.874618158582962, 18.345109142488297 ], [ -64.874602734564064, 18.34503638753381 ], [ -64.874580773967182, 18.344924571582055 ], [ -64.874565352567629, 18.34484812858841 ], [ -64.874567865830102, 18.344635060507414 ], [ -64.874584798592309, 18.344535652397667 ], [ -64.874612123609779, 18.344393996856297 ], [ -64.874629053752642, 18.344296600404334 ], [ -64.874657719875302, 18.344222001430239 ], [ -64.874678339366994, 18.344162823855754 ], [ -64.874689069517899, 18.344088224881659 ], [ -64.874695438457707, 18.344053860371787 ], [ -64.874681524491734, 18.344034580675554 ], [ -64.874627546319061, 18.344018822690032 ], [ -64.874589492460359, 18.344006920381844 ], [ -64.874561830856919, 18.343985296370931 ], [ -64.874457559931386, 18.343950258689119 ], [ -64.874413806375799, 18.343915557593334 ], [ -64.874382122766576, 18.343860404643976 ], [ -64.874299644799692, 18.343675836357079 ], [ -64.874258239487801, 18.343585479397461 ], [ -64.874268631743064, 18.343545412571359 ], [ -64.874291430530661, 18.343465450486349 ], [ -64.874318421581506, 18.343364195737706 ], [ -64.874349265690341, 18.343276353350291 ], [ -64.874396708594759, 18.343128831783531 ], [ -64.874415316428724, 18.343058088486771 ], [ -64.874442304860281, 18.342964378764293 ], [ -64.874428727480279, 18.342918279584353 ], [ -64.874387151910867, 18.342856756385515 ], [ -64.874353290315469, 18.342816186644995 ], [ -64.874321437758454, 18.342798753587658 ], [ -64.874283383899751, 18.342792549666683 ], [ -64.874208784925656, 18.342824568552203 ], [ -64.874084397422791, 18.342831275387596 ], [ -64.873965878564661, 18.342847536287593 ], [ -64.873867473664461, 18.342865807535588 ], [ -64.873774937408996, 18.342899670440715 ], [ -64.873715593506006, 18.342916435564746 ], [ -64.873647364781391, 18.342915763702536 ], [ -64.87351090864189, 18.342916603202923 ], [ -64.873442678607603, 18.342925654352996 ], [ -64.873400601433445, 18.342917607722086 ], [ -64.873320470400586, 18.342903527427666 ], [ -64.87319105375343, 18.342926492543711 ], [ -64.873044036410818, 18.343041493620206 ], [ -64.872896682482235, 18.343184321318859 ], [ -64.872720159516632, 18.343340895345364 ], [ -64.872621754616432, 18.343459918427641 ], [ -64.872576325989087, 18.343647336562924 ], [ -64.872515473342787, 18.343920923323594 ], [ -64.872494852541422, 18.344055535443601 ], [ -64.872469371543502, 18.344189982544719 ], [ -64.872405167444015, 18.344287043720442 ], [ -64.872292346973154, 18.344383770929539 ], [ -64.872237696938157, 18.344508828984942 ], [ -64.872139124399837, 18.344656685827943 ], [ -64.872066203116844, 18.344655178394362 ], [ -64.871969308269627, 18.344593990471765 ], [ -64.871867551916239, 18.344551241435397 ], [ -64.871721705421294, 18.344518551997282 ], [ -64.871488688401143, 18.344478486480909 ], [ -64.871372013562564, 18.344463566686102 ], [ -64.871240585257681, 18.34446256085721 ], [ -64.871099601578578, 18.344447473424225 ], [ -64.870924587356228, 18.344432050715 ], [ -64.870800870405958, 18.344409922479997 ], [ -64.870746555647315, 18.344384441482134 ], [ -64.870690061592768, 18.344352925511032 ], [ -64.870641949445428, 18.344308167436282 ], [ -64.870607918902238, 18.34426340674213 ], [ -64.870563662432176, 18.344222504344657 ], [ -64.870477161149893, 18.344165673704197 ], [ -64.870376578263517, 18.344106832715624 ], [ -64.870298291250265, 18.344036593642954 ], [ -64.87022033951331, 18.343914216488201 ], [ -64.870120427179472, 18.343770384270329 ], [ -64.870093102162002, 18.343658065404156 ], [ -64.870116571502138, 18.343526804737394 ], [ -64.870128138534085, 18.343363692823289 ], [ -64.870466097032363, 18.343117936613851 ], [ -64.870427204983002, 18.343029254725991 ], [ -64.870397533031507, 18.342964715350263 ], [ -64.87037171675729, 18.342877040600911 ], [ -64.870357802791375, 18.342771428570188 ], [ -64.870341541891378, 18.342637988607578 ], [ -64.870337015661505, 18.342543271746536 ], [ -64.87032963958319, 18.34247336664049 ], [ -64.870338859681112, 18.342345795322615 ], [ -64.870349756160465, 18.34231142950307 ], [ -64.870367693441835, 18.342262311526895 ], [ -64.870407591320145, 18.342180167526635 ], [ -64.870422511114953, 18.34212786442572 ], [ -64.870447824474695, 18.342017558526948 ], [ -64.870458050401453, 18.341943799053297 ], [ -64.870454362362295, 18.34188696841278 ], [ -64.870426366792287, 18.341815220596857 ], [ -64.87038110449339, 18.341710279118672 ], [ -64.870362999573842, 18.341639703460089 ], [ -64.870356629324363, 18.341535263586707 ], [ -64.870362496659425, 18.341362597608054 ], [ -64.870389486400597, 18.341248771308244 ], [ -64.87041630850365, 18.341154223395051 ], [ -64.870436760357165, 18.341033691569521 ], [ -64.870456038743725, 18.340946352096466 ], [ -64.870466935223135, 18.340912992105814 ], [ -64.870481016827227, 18.340891199147109 ], [ -64.870503480338527, 18.340865550511069 ], [ -64.870517394304443, 18.340846941367431 ], [ -64.870527117316783, 18.340826323185354 ], [ -64.870533319928143, 18.340792460280284 ], [ -64.870555280525025, 18.340709647037158 ], [ -64.870579588055875, 18.340624151583711 ], [ -64.870592831469253, 18.340595485461108 ], [ -64.870624515078475, 18.340559443260133 ], [ -64.870657875069128, 18.340514180961236 ], [ -64.870718727715371, 18.340413933351158 ], [ -64.870757452126668, 18.340326426239983 ], [ -64.870816125477063, 18.340223664057703 ], [ -64.870835236225503, 18.340123248809448 ], [ -64.870851497125443, 18.340020318989048 ], [ -64.870872954807851, 18.339972877394302 ], [ -64.870897932891353, 18.339887884855273 ], [ -64.870917043639736, 18.339787637245138 ], [ -64.87092408444181, 18.339683198681428 ], [ -64.870929951776816, 18.33960859970739 ], [ -64.870943698104668, 18.339556464244595 ], [ -64.870962305938633, 18.339486391500373 ], [ -64.870963647043766, 18.339431573827312 ], [ -64.870973202417986, 18.33939184358718 ], [ -64.870965491063373, 18.339356974853217 ], [ -64.870949565439673, 18.33932780581614 ], [ -64.870903464950061, 18.339284890451324 ], [ -64.870799026386351, 18.339183469374177 ], [ -64.870756781574073, 18.339162682244307 ], [ -64.870708166512316, 18.339150779936119 ], [ -64.87066391004231, 18.339136865970147 ], [ -64.870619485934128, 18.339112223162999 ], [ -64.870611606941395, 18.339097806282609 ], [ -64.870614289151661, 18.33907232528469 ], [ -64.870600542823865, 18.339045670819814 ], [ -64.87055142484769, 18.339035444893 ], [ -64.87051923832405, 18.339009963895137 ], [ -64.87046291190768, 18.338968892549872 ], [ -64.870410441168588, 18.338951122906622 ], [ -64.870349923798585, 18.338933185625194 ], [ -64.87029745305955, 18.338907704627275 ], [ -64.870271301509035, 18.338891946641752 ], [ -64.87012260647532, 18.338780634914144 ], [ -64.870088408293952, 18.338752136429662 ], [ -64.870030070219855, 18.338701342072056 ], [ -64.869987825407577, 18.338675861074137 ], [ -64.869935522306605, 18.338652224095824 ], [ -64.869886907244847, 18.338642165807187 ], [ -64.869850529767632, 18.338636130834004 ], [ -64.869764531399767, 18.338606626520686 ], [ -64.869715413423535, 18.338580977884646 ], [ -64.869685238557622, 18.338561364221789 ], [ -64.869635114752555, 18.338518448856917 ], [ -64.869592869940277, 18.338475533492044 ], [ -64.869572753363002, 18.338463798821977 ], [ -64.869568059495009, 18.338494308964187 ], [ -64.869583817480532, 18.338579804417634 ], [ -64.869597563808327, 18.338635963195884 ], [ -64.869631259075277, 18.338707712321479 ], [ -64.86966311032262, 18.338777617427581 ], [ -64.869676856650415, 18.338828076508889 ], [ -64.869665792532942, 18.338936203111757 ], [ -64.869661098664892, 18.33900962861884 ], [ -64.869660260474177, 18.339096632815597 ], [ -64.86966160157931, 18.339179613696842 ], [ -64.869660931026772, 18.339253206842102 ], [ -64.869643999574237, 18.33932445305328 ], [ -64.869627068121645, 18.339413636545885 ], [ -64.869624385911379, 18.339479350698355 ], [ -64.869615836365995, 18.33953148616115 ], [ -64.869595384512479, 18.339559649369335 ], [ -64.869587002605272, 18.339585465643495 ], [ -64.869565377284687, 18.339614131766098 ], [ -64.869509553782734, 18.339642797888757 ], [ -64.869453897918902, 18.33966995526805 ], [ -64.869405953409739, 18.339690239483502 ], [ -64.869367061360322, 18.33974203967 ], [ -64.869328001672784, 18.339807586184293 ], [ -64.869301682484149, 18.339946725843788 ], [ -64.869265975559472, 18.3400602168673 ], [ -64.869241500390444, 18.34008905062808 ], [ -64.869200764321477, 18.340107993738343 ], [ -64.869065647977436, 18.340149400359905 ], [ -64.868987025687886, 18.340288706347906 ], [ -64.868847886028334, 18.340371856177001 ], [ -64.868655437439031, 18.340586935915724 ], [ -64.868586705799999, 18.340628342537343 ], [ -64.868536581994931, 18.340633539319754 ], [ -64.868477238091998, 18.340624989774426 ], [ -64.868414709064268, 18.340675616493911 ], [ -64.868350838931406, 18.340715345424371 ], [ -64.868300715126338, 18.340761279585536 ], [ -64.868240365394513, 18.340834537454441 ], [ -64.868216057863606, 18.340934617426399 ], [ -64.868205664298671, 18.340996475901534 ], [ -64.868219913540941, 18.341027321320041 ], [ -64.868235671526463, 18.341076270348424 ], [ -64.86826634930685, 18.341131089331157 ], [ -64.868299374021205, 18.341190768510444 ], [ -64.868336086774718, 18.341264696931944 ], [ -64.868335919136598, 18.341557056545412 ], [ -64.868336757327313, 18.341607014021974 ], [ -64.868352347674715, 18.341661999333212 ], [ -64.868445889759073, 18.341839863404005 ], [ -64.868691312001886, 18.34213323015598 ], [ -64.868820561010864, 18.342497003618803 ], [ -64.868903374254046, 18.342663300657648 ], [ -64.868978979056976, 18.342852230155643 ], [ -64.868954000973531, 18.343004276642546 ], [ -64.868905385911773, 18.343294627217631 ], [ -64.868902368425154, 18.343495791680766 ], [ -64.868927681784896, 18.343593358390251 ], [ -64.868985014030159, 18.343717241668969 ], [ -64.869034299644511, 18.343758145376114 ], [ -64.869057768984646, 18.343774910500201 ], [ -64.869068833102176, 18.343792846471956 ], [ -64.869061792300101, 18.343827379929621 ], [ -64.869029438138284, 18.343886388556257 ], [ -64.868980152523989, 18.343987140390482 ], [ -64.868968585492041, 18.344022678367367 ], [ -64.868969758959054, 18.344035755452239 ], [ -64.868986858049709, 18.344056038358019 ], [ -64.869043855018674, 18.344087386690944 ], [ -64.869099510882506, 18.344124602358931 ], [ -64.869107892789714, 18.344156788882572 ], [ -64.869124824242249, 18.344203224648425 ], [ -64.869238818180179, 18.344331635466745 ], [ -64.869406288686037, 18.344504136426622 ], [ -64.869499830770394, 18.344621984732157 ], [ -64.8695346995043, 18.34475056449827 ], [ -64.86958448803307, 18.344888864657378 ], [ -64.869616004004172, 18.34498173749887 ], [ -64.869605610439237, 18.345161445589213 ], [ -64.869587505519689, 18.34524325169383 ], [ -64.869538387543514, 18.345309468760718 ], [ -64.869469655904481, 18.345355067645528 ], [ -64.869402265370582, 18.34538792341209 ], [ -64.869228089338947, 18.345392282003843 ], [ -64.869184503421536, 18.345391779089425 ], [ -64.869075370989776, 18.345420780488325 ], [ -64.868980823076527, 18.34542949767183 ], [ -64.868902368425154, 18.345444249828461 ], [ -64.868837660101576, 18.345444920381055 ], [ -64.868731377518259, 18.345463695853198 ], [ -64.868621071619543, 18.345473418865538 ], [ -64.868528535364021, 18.345477274542816 ], [ -64.868455109856939, 18.345490351627745 ], [ -64.868386378217906, 18.34550342609333 ], [ -64.868308091204653, 18.345519686993271 ], [ -64.868213878567758, 18.345532595130351 ], [ -64.868124359798855, 18.345539469603921 ], [ -64.86803199118151, 18.345537121360223 ], [ -64.867985555415601, 18.345539803570546 ], [ -64.867929731913648, 18.345551539550286 ], [ -64.867855971130325, 18.345579869086976 ], [ -64.867792100997463, 18.345599147473536 ], [ -64.867745665231553, 18.345613229077628 ], [ -64.867613901650373, 18.345642230476528 ], [ -64.86750979836296, 18.345675087552763 ], [ -64.86742631456724, 18.345695539406336 ], [ -64.86735389488905, 18.345700234584058 ], [ -64.867276110790215, 18.345704927142378 ], [ -64.867237051102677, 18.345724205528938 ], [ -64.867214587591377, 18.345748680697966 ], [ -64.867177205594942, 18.345771479485563 ], [ -64.867123392441044, 18.345786902194789 ], [ -64.867011242522722, 18.345802827818488 ], [ -64.866919041543497, 18.345795284101996 ], [ -64.866826672926152, 18.345794613549458 ], [ -64.866734471946927, 18.345780196669068 ], [ -64.866642104639254, 18.345772652952576 ], [ -64.866542693910219, 18.345771814761861 ], [ -64.866450326602546, 18.345764271045368 ], [ -64.866358125623321, 18.345750021803156 ], [ -64.866265924644154, 18.345735772560886 ], [ -64.866173722355256, 18.345721355680496 ], [ -64.866074312935893, 18.345706938800106 ], [ -64.865989320396864, 18.345685984032116 ], [ -64.865897119417696, 18.345664861626005 ], [ -64.865804918438471, 18.345650444745615 ], [ -64.865712549821126, 18.345642901029123 ], [ -64.865620348841901, 18.345628651786853 ], [ -64.865527981534228, 18.345621108070418 ], [ -64.865428738443313, 18.345606691190028 ], [ -64.865343579575836, 18.345585736422038 ], [ -64.865265961805505, 18.34553762558437 ], [ -64.865173594497833, 18.345523207394308 ], [ -64.865074183768797, 18.345522369203593 ], [ -64.864981982789573, 18.345514825487101 ], [ -64.8648896154819, 18.345500577554503 ], [ -64.864804621633198, 18.34547945383872 ], [ -64.864719461456048, 18.345465204596451 ], [ -64.864711917739612, 18.345471742484108 ], [ -64.86462457957623, 18.345451290630535 ], [ -64.864537072465055, 18.345440729427423 ], [ -64.864460126556992, 18.345400831549171 ], [ -64.864383348287049, 18.345355904526571 ], [ -64.864306402378929, 18.345310977503971 ], [ -64.864245214456389, 18.34525146596286 ], [ -64.864194252460607, 18.34518223140941 ], [ -64.86412786644587, 18.34512758137447 ], [ -64.864056118629946, 18.3450777928457 ], [ -64.864015550199099, 18.344998667641732 ], [ -64.864026614316572, 18.344915183846012 ], [ -64.864094172488649, 18.344861539639908 ], [ -64.864156532568529, 18.34480303392769 ], [ -64.864167430357554, 18.344719551441642 ], [ -64.864157873673662, 18.344635898698129 ], [ -64.864158713174049, 18.344552248573905 ], [ -64.864138930563399, 18.344468429501944 ], [ -64.864134405643199, 18.344384776758375 ], [ -64.864135242524242, 18.344301126634207 ], [ -64.864135914386452, 18.344217473890694 ], [ -64.864136752577224, 18.344133822456854 ], [ -64.864147649056576, 18.344055201476976 ], [ -64.864147815385024, 18.344050338661134 ], [ -64.864148487247292, 18.343966688536909 ], [ -64.864185198691132, 18.343888232575864 ], [ -64.864211854465736, 18.343804916418321 ], [ -64.864263822290354, 18.343736521365201 ], [ -64.86428527866309, 18.343653037569482 ], [ -64.864327189508799, 18.343579610752784 ], [ -64.864379323661922, 18.343506186555373 ], [ -64.864400613706209, 18.343422701449981 ], [ -64.864447721334329, 18.343344414436729 ], [ -64.864468508464199, 18.343329831227891 ], [ -64.864530365629662, 18.343318599472241 ], [ -64.86461820932675, 18.343294627217631 ], [ -64.864700853622082, 18.343260930641009 ], [ -64.864763216321307, 18.343202426238463 ], [ -64.864810322639812, 18.343128999421708 ], [ -64.86485726132014, 18.343055575224298 ], [ -64.86491962140002, 18.342997069512023 ], [ -64.865002268314697, 18.342968234441571 ], [ -64.865084912609973, 18.342939400680848 ], [ -64.865172756307118, 18.34291056822974 ], [ -64.865255569550243, 18.342876871653118 ], [ -64.865343244299595, 18.342852899398508 ], [ -64.865431085377338, 18.342838819104088 ], [ -64.865513732292015, 18.342800262330968 ], [ -64.865596545535141, 18.342756676413558 ], [ -64.865669131541836, 18.3427080613518 ], [ -64.865736689713856, 18.342654417145695 ], [ -64.865814307484186, 18.342615691424783 ], [ -64.865871470781656, 18.342552156568161 ], [ -64.865882534899129, 18.34246867408217 ], [ -64.865883374399516, 18.342380161142103 ], [ -64.865904664443804, 18.342296677346383 ], [ -64.865951769452636, 18.34221839033313 ], [ -64.865998709442636, 18.342144963516432 ], [ -64.866035588524596, 18.342066510174675 ], [ -64.866041455859659, 18.341983026378955 ], [ -64.865969706734006, 18.341933236540513 ], [ -64.865882368570681, 18.341912785996669 ], [ -64.865794861459506, 18.341907252628232 ], [ -64.865707354348331, 18.341901554241019 ], [ -64.865619679599035, 18.341910605391092 ], [ -64.865542061828705, 18.341949331112062 ], [ -64.86546427772987, 18.342002806370317 ], [ -64.865386662578885, 18.342046561235577 ], [ -64.865324301189276, 18.342105065638123 ], [ -64.865251712563293, 18.342153682009553 ], [ -64.86517409741225, 18.342197266617347 ], [ -64.86510653924023, 18.342250744494947 ], [ -64.8650289214699, 18.342289467596515 ], [ -64.864946277174568, 18.342323330501642 ], [ -64.864905373467423, 18.34233204768509 ], [ -64.864858602425272, 18.342342273611905 ], [ -64.864770926366305, 18.342351327381323 ], [ -64.864688783675717, 18.34232115251541 ], [ -64.864601445512392, 18.342295839155668 ], [ -64.86454528542447, 18.34222157545787 ], [ -64.86451008141421, 18.34213775638591 ], [ -64.864521145531739, 18.34205410364234 ], [ -64.864552661502785, 18.34197565030064 ], [ -64.864574120494922, 18.341892334143097 ], [ -64.864590212447069, 18.341808850347377 ], [ -64.864616868221617, 18.341725366551657 ], [ -64.8646433537387, 18.341637021249767 ], [ -64.864664477454539, 18.341583040457749 ], [ -64.86465961463864, 18.341554543282939 ], [ -64.864670512427722, 18.34147089053937 ], [ -64.864681576545195, 18.341387408053322 ], [ -64.864682413426237, 18.341303756619482 ], [ -64.864683085288505, 18.341220271514089 ], [ -64.864657939566882, 18.341165790426999 ], [ -64.864595913453627, 18.341189930319729 ], [ -64.864533552064074, 18.341248436031947 ], [ -64.864471189364792, 18.341311970888569 ], [ -64.864393574213807, 18.341350695299809 ], [ -64.8642953382614, 18.341379361422412 ], [ -64.864207831150281, 18.341378689560202 ], [ -64.864110098112292, 18.341358239016301 ], [ -64.864018735323839, 18.341361927055459 ], [ -64.864012197436182, 18.341362262331756 ], [ -64.863913961483831, 18.341400819104877 ], [ -64.863841374167464, 18.341454294363132 ], [ -64.863784040612529, 18.341532581376384 ], [ -64.863752358313036, 18.341615897533927 ], [ -64.863695026067774, 18.341689324350682 ], [ -64.863653116531736, 18.341767611363935 ], [ -64.863626462066861, 18.341860818171995 ], [ -64.863594946095816, 18.341939271513695 ], [ -64.863547838467639, 18.34201269833045 ], [ -64.863505930241331, 18.34208612252786 ], [ -64.863453793468864, 18.342154686528772 ], [ -64.863386404244636, 18.34221319355072 ], [ -64.863339297926188, 18.342286451419625 ], [ -64.863297556028328, 18.342360044564828 ], [ -64.863255646492348, 18.34243347007191 ], [ -64.863203511029553, 18.342501866434645 ], [ -64.863151375566758, 18.342570261487765 ], [ -64.863135113357146, 18.342653746593101 ], [ -64.863160091440591, 18.342737564355446 ], [ -64.863174844906951, 18.342826246243305 ], [ -64.863215413337798, 18.342900508631431 ], [ -64.863235697553193, 18.342939903595266 ], [ -64.863266206385731, 18.342971756152281 ], [ -64.863291184469176, 18.343060435420796 ], [ -64.863316162552621, 18.343144254492813 ], [ -64.863315493309756, 18.343227907236326 ], [ -64.863289006483001, 18.343311389722373 ], [ -64.863272745583004, 18.343394873518093 ], [ -64.863230836047023, 18.343468300334791 ], [ -64.863204349220268, 18.343551616492391 ], [ -64.863172833249223, 18.343630069834092 ], [ -64.863115501003961, 18.343693604690657 ], [ -64.863094043321496, 18.343781951302219 ], [ -64.863077950059676, 18.343865433788267 ], [ -64.863087505433896, 18.343949252860284 ], [ -64.863097059498443, 18.344032905603797 ], [ -64.863106616182336, 18.344116555728021 ], [ -64.863110973464416, 18.344200208471534 ], [ -64.863115333365783, 18.344283858595702 ], [ -64.863114661503573, 18.344367511339215 ], [ -64.863103597386043, 18.344451161463439 ], [ -64.863077613473763, 18.344464907791235 ], [ -64.863077613473763, 18.344473961560652 ], [ -64.863095887341103, 18.344556102941567 ], [ -64.863109466030778, 18.344638245632098 ], [ -64.863108626530391, 18.344724914552557 ], [ -64.863078620612271, 18.344793144586845 ], [ -64.863074597296816, 18.344802195736975 ], [ -64.863039058010315, 18.34481778608432 ], [ -64.862993125158823, 18.344837902661652 ], [ -64.862916346888881, 18.344878303454323 ], [ -64.862844430125108, 18.344927925654645 ], [ -64.862762957987115, 18.34495910503972 ], [ -64.86267679198113, 18.34497670704485 ], [ -64.862586098435543, 18.344985088952058 ], [ -64.86250010137735, 18.344997997089138 ], [ -64.862409409141435, 18.34498358151842 ], [ -64.86231888454364, 18.344973689558287 ], [ -64.862228192307782, 18.344973019005693 ], [ -64.862142529216158, 18.344944855797507 ], [ -64.86206658913693, 18.344903281537768 ], [ -64.861990481419582, 18.344861708587757 ], [ -64.861924264352695, 18.34480638669055 ], [ -64.86184815663529, 18.344764812430867 ], [ -64.861781939568459, 18.344709491843332 ], [ -64.861739527118004, 18.34463623397437 ], [ -64.86173567144067, 18.344549565053967 ], [ -64.861702814364492, 18.344471780955132 ], [ -64.861665431058327, 18.344393996856297 ], [ -64.861627880114099, 18.344316212757519 ], [ -64.861614301424424, 18.344234071376604 ], [ -64.861591167360586, 18.344151927376402 ], [ -64.861592005551302, 18.344065258455942 ], [ -64.861564009981237, 18.343982949436906 ], [ -64.861526626675129, 18.343905165338072 ], [ -64.861489075730844, 18.343827379929621 ], [ -64.861451692424737, 18.343749595830786 ], [ -64.861414141480509, 18.343671811731951 ], [ -64.861371896668231, 18.343598553863046 ], [ -64.861310373469337, 18.343538708355311 ], [ -64.861248850270499, 18.343479027866351 ], [ -64.861201743952051, 18.343405602359269 ], [ -64.861183471394327, 18.343318933438866 ], [ -64.861186991795364, 18.343304182591851 ], [ -64.861203252695361, 18.343236958386399 ], [ -64.861218340128289, 18.343155152281838 ], [ -64.861252370671536, 18.343077869787749 ], [ -64.861276845840564, 18.343014336240856 ], [ -64.861270307952964, 18.343003607399623 ], [ -64.861286568852904, 18.34292012360396 ], [ -64.861292436187966, 18.342836472170063 ], [ -64.861298303522972, 18.342752819426551 ], [ -64.861319593567259, 18.34266950457868 ], [ -64.861351277176482, 18.342591048617578 ], [ -64.861398215856809, 18.342517624420168 ], [ -64.861450518957724, 18.34244419760347 ], [ -64.861512880347334, 18.342385693200868 ], [ -64.861565015810072, 18.34231729552846 ], [ -64.8616119544904, 18.34224387133105 ], [ -64.861669119097542, 18.342180336474485 ], [ -64.861711028633522, 18.34210690965773 ], [ -64.861752938169502, 18.34203348546032 ], [ -64.861794847705539, 18.341960058643565 ], [ -64.86183675724152, 18.341886634446155 ], [ -64.861868273212565, 18.34180817848511 ], [ -64.861879337330095, 18.341724528360942 ], [ -64.861895598230092, 18.341636183059052 ], [ -64.861927281839257, 18.34155286559178 ], [ -64.861948571883545, 18.341469383105789 ], [ -64.862021159199912, 18.341420768044031 ], [ -64.86209374651628, 18.341372152982217 ], [ -64.862156107905832, 18.341313647269999 ], [ -64.8622286952222, 18.341265032208241 ], [ -64.86227043712006, 18.341191605391487 ], [ -64.862302120729282, 18.341113152049786 ], [ -64.862328607556037, 18.341029668254066 ], [ -64.862329445746752, 18.340946016820169 ], [ -64.862268090186035, 18.340886505279059 ], [ -64.862191144277915, 18.340846607400806 ], [ -64.862109001587385, 18.340811403390546 ], [ -64.86202166211433, 18.340800842187491 ], [ -64.8619395194238, 18.340770667321578 ], [ -64.861857376733212, 18.340735630949496 ], [ -64.861780430825149, 18.340695565433066 ], [ -64.861698288134562, 18.340660529060983 ], [ -64.861610445747147, 18.340684332367744 ], [ -64.861522770997794, 18.340708305932026 ], [ -64.861435096248499, 18.340722387536118 ], [ -64.861347421499204, 18.340731439995864 ], [ -64.861259746749852, 18.340735630949496 ], [ -64.861172239638677, 18.340729931252554 ], [ -64.861084900165679, 18.340714508543329 ], [ -64.861033602893599, 18.340689530459883 ], [ -64.861002757475092, 18.340677460513518 ], [ -64.860956992261833, 18.340603364453841 ], [ -64.860895804339236, 18.340543685274611 ], [ -64.860818858431173, 18.340503787396301 ], [ -64.860736715740586, 18.340463721879928 ], [ -64.860665134253111, 18.340413933351158 ], [ -64.860567568853298, 18.340383590847068 ], [ -64.860479894104003, 18.340397672451161 ], [ -64.860427758641208, 18.340466068813896 ], [ -64.860385849105228, 18.340539494320979 ], [ -64.860343939569191, 18.340613087466238 ], [ -64.860296833250743, 18.340691374479434 ], [ -64.860249894570416, 18.340764799986516 ], [ -64.860218210961193, 18.340843254637946 ], [ -64.860176301425213, 18.340916680144971 ], [ -64.860165237307683, 18.341000163940691 ], [ -64.860133721336638, 18.341078618592121 ], [ -64.860081585873843, 18.341147014954856 ], [ -64.860003969413185, 18.341185739366097 ], [ -64.859931382096818, 18.341234354427854 ], [ -64.859848736491813, 18.341268217332981 ], [ -64.859761061742518, 18.341277268483054 ], [ -64.859673554631343, 18.341271570095842 ], [ -64.8595808507377, 18.341256147386616 ], [ -64.859493678902822, 18.341220943376356 ], [ -64.85944271690704, 18.341151707513234 ], [ -64.859391922549435, 18.341082306631279 ], [ -64.859340960553652, 18.341013072077772 ], [ -64.859305588905272, 18.340934114511981 ], [ -64.859275414039359, 18.340850295439964 ], [ -64.85926585866514, 18.340766476367946 ], [ -64.859256304600592, 18.340682824934106 ], [ -64.859339116534045, 18.340648962029036 ], [ -64.85942662364522, 18.340654660416249 ], [ -64.859514298394572, 18.340650470772346 ], [ -64.859571463001657, 18.340586935915724 ], [ -64.859618570629777, 18.340513510408698 ], [ -64.859680930709658, 18.340450143190253 ], [ -64.859753518026025, 18.340401528128496 ], [ -64.859825937704215, 18.340352913066738 ], [ -64.85990372180305, 18.340309327149271 ], [ -64.859960886410136, 18.340245792292706 ], [ -64.859992570019358, 18.340167337641333 ], [ -64.85999843735442, 18.340083853845613 ], [ -64.859994078762668, 18.340000202411773 ], [ -64.859989552532795, 18.339916550977875 ], [ -64.859974968014228, 18.339827870399688 ], [ -64.859949989930783, 18.339744051327727 ], [ -64.859909421499935, 18.33966492612376 ], [ -64.859874217489732, 18.339580939413622 ], [ -64.859833649058885, 18.339501981847775 ], [ -64.859777490280635, 18.339437608800495 ], [ -64.85970590879316, 18.339387820271725 ], [ -64.85964991765303, 18.339318418080097 ], [ -64.85959375887478, 18.339249183526647 ], [ -64.859527374169772, 18.339194533491707 ], [ -64.8594713830297, 18.339120269793909 ], [ -64.859430814598852, 18.339046006096112 ], [ -64.859428802941125, 18.339006946408574 ], [ -64.85945847489262, 18.338943076275712 ], [ -64.85948261478535, 18.338867806749022 ], [ -64.859527206531652, 18.338800919129596 ], [ -64.85959526761809, 18.338720452820439 ], [ -64.859625107207705, 18.338661947108221 ], [ -64.859651929310758, 18.338611823303154 ], [ -64.859719822759075, 18.338550803018734 ], [ -64.859773131688883, 18.338489615096137 ], [ -64.859908918585518, 18.338370424375796 ], [ -64.859985864493638, 18.338301189822289 ], [ -64.860042023271831, 18.338240001899749 ], [ -64.860080747683128, 18.338175964128766 ], [ -64.86017831308294, 18.338076051794928 ], [ -64.860284092751783, 18.338029448390898 ], [ -64.860457598230823, 18.337958034541543 ], [ -64.860560695689401, 18.337908581289071 ], [ -64.860725316346816, 18.337834317591273 ], [ -64.860872334999101, 18.337782349766655 ], [ -64.860951627841189, 18.337760556807893 ], [ -64.861054557661589, 18.337727867369836 ], [ -64.861142567687239, 18.337714623956458 ], [ -64.861256729263289, 18.337721161844058 ], [ -64.861414812033047, 18.337736416915163 ], [ -64.861593514294555, 18.337743457717238 ], [ -64.861776072233397, 18.337756198216141 ], [ -64.86195075117945, 18.337757706959451 ], [ -64.862117551132712, 18.337793916798546 ], [ -64.862203549500578, 18.337840855478873 ], [ -64.862292062440645, 18.337855775273681 ], [ -64.862494569318585, 18.337874550745823 ], [ -64.86262884747191, 18.337852087234523 ], [ -64.862913329402261, 18.337681431603926 ], [ -64.863017431380058, 18.337556876462941 ], [ -64.86307845297415, 18.337450258603383 ], [ -64.863123547634871, 18.337312124772723 ], [ -64.863154728329675, 18.337184384506998 ], [ -64.863139137982273, 18.33707491679894 ], [ -64.863134947028641, 18.336954218644962 ], [ -64.863142323107013, 18.33686905715814 ], [ -64.863111142412208, 18.336770150653138 ], [ -64.863141484916298, 18.33646119355376 ], [ -64.863199655352219, 18.336119714654444 ], [ -64.863261346189233, 18.335891223864166 ], [ -64.863307949593263, 18.335554941747318 ], [ -64.863262687294366, 18.335214468676838 ], [ -64.863244582374818, 18.334806772710635 ], [ -64.863277439451053, 18.33460527166153 ], [ -64.863333095314886, 18.334292963108965 ], [ -64.863413561623986, 18.334023064387452 ], [ -64.863387912987946, 18.333822067562437 ], [ -64.863289340449626, 18.333547141006306 ], [ -64.863214910423324, 18.333390902256099 ], [ -64.863200493542934, 18.333206667935826 ], [ -64.863217760271766, 18.333078257117506 ], [ -64.863256819959361, 18.333009190202176 ], [ -64.863361426161191, 18.332934757556586 ], [ -64.863488328236201, 18.332865524312808 ], [ -64.863539456560432, 18.332795785535211 ], [ -64.863562591933999, 18.332760918110921 ], [ -64.863535266916529, 18.332745160125398 ], [ -64.863427475589958, 18.332729066863578 ], [ -64.863252629005729, 18.332778183530081 ], [ -64.863103094471626, 18.332803162923199 ], [ -64.862932943065118, 18.332828141006644 ], [ -64.862787936070561, 18.332881785212749 ], [ -64.862686347355293, 18.332999802466134 ], [ -64.862638067569833, 18.333454100526694 ], [ -64.862618453906975, 18.33359206802885 ], [ -64.86260135481632, 18.333712598544764 ], [ -64.862592637632815, 18.333912089245757 ], [ -64.862608730894635, 18.334157679126747 ], [ -64.862657009370423, 18.334411649605215 ], [ -64.862693388157368, 18.334710045501538 ], [ -64.862721048451135, 18.334951444428896 ], [ -64.862735800607766, 18.335098464390853 ], [ -64.86272356302328, 18.335281022329696 ], [ -64.862568162463788, 18.335608084348621 ], [ -64.862502113035077, 18.335811429417276 ], [ -64.86232843991786, 18.335984430672227 ], [ -64.862248979437595, 18.336132958067822 ], [ -64.86217102770064, 18.336380056692064 ], [ -64.862143701373498, 18.336610057535324 ], [ -64.862187959153175, 18.336790268540085 ], [ -64.862213272512918, 18.336904931720937 ], [ -64.862178068502715, 18.336982548181595 ], [ -64.862120233343035, 18.33704440665673 ], [ -64.862030379297835, 18.337087489659723 ], [ -64.861931305154712, 18.337110791361738 ], [ -64.86181278498691, 18.337113641210237 ], [ -64.861545737423512, 18.337104253474138 ], [ -64.861412297460902, 18.337065865648867 ], [ -64.861227727864389, 18.33702982213822 ], [ -64.861090264586267, 18.337011884856793 ], [ -64.860967218188591, 18.33700249712075 ], [ -64.860858923947546, 18.336990427174385 ], [ -64.860738559760193, 18.337014567067115 ], [ -64.860676701285058, 18.33705882353712 ], [ -64.860608472560443, 18.337144989543162 ], [ -64.860534544138943, 18.337225623490383 ], [ -64.860454916020501, 18.337286476136683 ], [ -64.860383837447444, 18.337369793603898 ], [ -64.860321643696068, 18.337450426241503 ], [ -64.860259282306458, 18.337528377978458 ], [ -64.860197256193203, 18.337589398262878 ], [ -64.860135397718068, 18.337627955035998 ], [ -64.860064654421308, 18.337669361657561 ], [ -64.859973626909095, 18.337699536523473 ], [ -64.85988276703506, 18.337698699642431 ], [ -64.859759385361087, 18.337734069981138 ], [ -64.8596772426705, 18.337750163242958 ], [ -64.85957749797484, 18.337774470773866 ], [ -64.85943651560541, 18.337795760818153 ], [ -64.859330903574687, 18.337814536290296 ], [ -64.859193103710652, 18.337838508544849 ], [ -64.85906670455006, 18.337879412251993 ], [ -64.858961092519337, 18.337901037572578 ], [ -64.858896384195759, 18.337914448624076 ], [ -64.858837878483484, 18.337911095861216 ], [ -64.858758920917694, 18.337899361191148 ], [ -64.858671078530222, 18.337895840790111 ], [ -64.858569154538657, 18.337917466110696 ], [ -64.858526909726379, 18.337953340673494 ], [ -64.858467901099687, 18.337994914933233 ], [ -64.858387770066884, 18.338014863872331 ], [ -64.858354242438054, 18.338007152517719 ], [ -64.858266902965056, 18.337981839157976 ], [ -64.858179563492001, 18.337966416448751 ], [ -64.858092056380826, 18.337950826101348 ], [ -64.857999352487241, 18.337945126404463 ], [ -64.857911677737889, 18.337964069514726 ], [ -64.857824002988593, 18.337963398962131 ], [ -64.857736495877418, 18.337962728409593 ], [ -64.85764915640442, 18.337947305700311 ], [ -64.857561816931366, 18.337921824702448 ], [ -64.857479506602658, 18.337891649836536 ], [ -64.857402729642388, 18.337851751958226 ], [ -64.857330980516736, 18.337801963429456 ], [ -64.857264594502055, 18.337742451888346 ], [ -64.85720324025101, 18.337682772709115 ], [ -64.85714205232847, 18.337618399661778 ], [ -64.85708086440593, 18.337558888120668 ], [ -64.857014310753073, 18.337504238085728 ], [ -64.85698413588716, 18.337425280519881 ], [ -64.857010622713915, 18.337341796724218 ], [ -64.857052533559568, 18.337268371217135 ], [ -64.85710969685698, 18.33720483636057 ], [ -64.85717725633873, 18.337151359792585 ], [ -64.857234419636143, 18.33708782493602 ], [ -64.85728655640861, 18.337019428573285 ], [ -64.857312540320947, 18.336994953404258 ], [ -64.857353945632838, 18.336966790196072 ], [ -64.857370206532778, 18.336878444894182 ], [ -64.857391665524915, 18.336794961098462 ], [ -64.857428376968755, 18.33671650644709 ], [ -64.857460060577978, 18.336633191599162 ], [ -64.857476153839798, 18.33654970649377 ], [ -64.857476993340185, 18.33646605505993 ], [ -64.857462239873826, 18.336382235987912 ], [ -64.85743726179038, 18.336298416915952 ], [ -64.857391665524915, 18.336224320856275 ], [ -64.857330308654525, 18.336164810624837 ], [ -64.85724816727361, 18.336134634449252 ], [ -64.857160492524315, 18.336138825402827 ], [ -64.85707298541314, 18.336133125705942 ], [ -64.856985478301965, 18.336137316659574 ], [ -64.85689763460482, 18.336161288914127 ], [ -64.856809959855525, 18.336175202880099 ], [ -64.85672245274435, 18.336174533637177 ], [ -64.856634779304727, 18.336178724590809 ], [ -64.856547272193552, 18.336168162078025 ], [ -64.856459931410882, 18.336152739368799 ], [ -64.856372425609379, 18.336147039671914 ], [ -64.856284918498204, 18.336131616962632 ], [ -64.856197411387029, 18.336130946410094 ], [ -64.856109736637734, 18.336135137363669 ], [ -64.856017031434419, 18.336134300482627 ], [ -64.855929356685124, 18.336143351632757 ], [ -64.855841683245444, 18.336157434546521 ], [ -64.855759037640496, 18.336191128503799 ], [ -64.855676224397314, 18.336234882059387 ], [ -64.855598440298536, 18.336273438832507 ], [ -64.855350503483521, 18.336364970568752 ], [ -64.855293171238316, 18.336428504115702 ], [ -64.855241034465848, 18.336501761984607 ], [ -64.855178674385968, 18.336560267696882 ], [ -64.855106087069601, 18.33660888275864 ], [ -64.855028470608943, 18.33665246867605 ], [ -64.854966109219333, 18.336710974388325 ], [ -64.854893521903023, 18.336759589450082 ], [ -64.854820934586655, 18.33680820451184 ], [ -64.85475873952555, 18.336866711533787 ], [ -64.854686153518855, 18.336915326595545 ], [ -64.854618595346835, 18.33696896949192 ], [ -64.854551203503263, 18.337027475204195 ], [ -64.85449906935014, 18.33709587156693 ], [ -64.854462356596628, 18.33717432621836 ], [ -64.854456321623445, 18.337257810014023 ], [ -64.854440228361625, 18.337341293809743 ], [ -64.854449616097668, 18.337429974387931 ], [ -64.854469565036823, 18.337513793459948 ], [ -64.854540978886178, 18.337578334145405 ], [ -64.854617923484568, 18.337618232023658 ], [ -64.854694869392688, 18.337663159046258 ], [ -64.854725045568273, 18.337742116612048 ], [ -64.8547139814508, 18.337825600407768 ], [ -64.854672071914763, 18.337899193552971 ], [ -64.85460971052521, 18.337967422277586 ], [ -64.85454215235319, 18.338021066483691 ], [ -64.85447979096358, 18.338079572195966 ], [ -64.854422626356495, 18.338143107052531 ], [ -64.854380716820515, 18.338216532559613 ], [ -64.854338807284478, 18.338289958066639 ], [ -64.854276445894925, 18.338348463778914 ], [ -64.854198829434267, 18.338387188190154 ], [ -64.85414702924777, 18.338421218733401 ], [ -64.854143341208612, 18.338453740533339 ], [ -64.85404761982835, 18.338525489658991 ], [ -64.853971344472882, 18.338573266530034 ], [ -64.853882496256517, 18.338584665923804 ], [ -64.853800521204107, 18.338553652867176 ], [ -64.853724916401177, 18.338510737502304 ], [ -64.853649311598247, 18.338467822137432 ], [ -64.853567504183957, 18.338430941745742 ], [ -64.853478991243946, 18.338418033608662 ], [ -64.853390310665759, 18.338411328082941 ], [ -64.853301630087572, 18.338416692503529 ], [ -64.853212781871264, 18.338446029178726 ], [ -64.853124101293076, 18.338457428572497 ], [ -64.853035253076769, 18.338480897912689 ], [ -64.852946572498581, 18.338486262333276 ], [ -64.852851521670914, 18.338491459115744 ], [ -64.852775246315389, 18.338533201013604 ], [ -64.852692433072264, 18.338580810246526 ], [ -64.852615990078618, 18.338634622090751 ], [ -64.852533176835493, 18.338688433934919 ], [ -64.852469306702631, 18.338748280752327 ], [ -64.852405604207888, 18.338808295207912 ], [ -64.852258585555603, 18.338830758719212 ], [ -64.852254729878325, 18.338830758719212 ], [ -64.852166384576435, 18.338819024049144 ], [ -64.85208206259, 18.338789016821352 ], [ -64.852052055362208, 18.338707879959657 ], [ -64.852064292946693, 18.338623557973222 ], [ -64.852088097563183, 18.338542924025944 ], [ -64.852111902179615, 18.338462290078667 ], [ -64.852105029015718, 18.338377800454111 ], [ -64.852086588819873, 18.338293143191379 ], [ -64.85207569234052, 18.338208485928703 ], [ -64.85209195324046, 18.338124163942268 ], [ -64.852096479470333, 18.338039674317656 ], [ -64.852101173338383, 18.337955352331221 ], [ -64.852073848320913, 18.337875556574716 ], [ -64.852069992643635, 18.337792408055293 ], [ -64.852043170540583, 18.337708924259573 ], [ -64.852044008731298, 18.33762577574015 ], [ -64.852044679283892, 18.337542627220728 ], [ -64.852042332349868, 18.337486468442478 ], [ -64.852021712858118, 18.337399631883898 ], [ -64.851999584623115, 18.337319500851038 ], [ -64.85196991267162, 18.337239202180058 ], [ -64.851963039507723, 18.33715186270706 ], [ -64.85197142141493, 18.337064524543678 ], [ -64.851972259605645, 18.336977351399128 ], [ -64.85197309779636, 18.33689001192613 ], [ -64.852011822207658, 18.336810216169567 ], [ -64.852088432839423, 18.336767300804695 ], [ -64.852172587187738, 18.336731593880017 ], [ -64.852256741536053, 18.33669588695534 ], [ -64.852325640813206, 18.336645595512152 ], [ -64.852394707728536, 18.336595136430844 ], [ -64.852463774643866, 18.3365448449876 ], [ -64.852502499055106, 18.336465050540767 ], [ -64.852541391104523, 18.336378045034337 ], [ -64.852549773011731, 18.336290874509132 ], [ -64.852543067485954, 18.336203533726462 ], [ -64.852558993109653, 18.336116361891527 ], [ -64.852636441932191, 18.335986108363329 ], [ -64.852690253776416, 18.335921063453782 ], [ -64.852774408124674, 18.335892564969299 ], [ -64.852888737338901, 18.335878987589297 ], [ -64.852980267765531, 18.335879656832219 ], [ -64.853071798192161, 18.335865910504424 ], [ -64.853170872335284, 18.335859541564616 ], [ -64.853270114116526, 18.335831209408639 ], [ -64.853400368954397, 18.335744875764476 ], [ -64.853454348436742, 18.335679999802721 ], [ -64.853545878863372, 18.335666085836749 ], [ -64.853622321857074, 18.335644963430639 ], [ -64.853652831999284, 18.335637922628564 ], [ -64.853714355198122, 18.335572880338361 ], [ -64.853715193388837, 18.335485708503484 ], [ -64.85370060887027, 18.335398201392309 ], [ -64.853648138131234, 18.335310526643013 ], [ -64.853595332115844, 18.335244475904631 ], [ -64.853550405093245, 18.335171385673846 ], [ -64.853505310432524, 18.335098295443061 ], [ -64.853437249346086, 18.33504683053286 ], [ -64.853353597912189, 18.335016992252861 ], [ -64.853270114116526, 18.334994527431888 ], [ -64.853186462682629, 18.334964687842273 ], [ -64.853095267532296, 18.334949432771168 ], [ -64.853004072381964, 18.334926801621748 ], [ -64.852928299940913, 18.334875336711548 ], [ -64.852844983783314, 18.334816329394528 ], [ -64.852784634051488, 18.334750447603938 ], [ -64.852716740603171, 18.334691606615365 ], [ -64.852648511878556, 18.334640140395493 ], [ -64.852580450792061, 18.334588675485293 ], [ -64.852504678351011, 18.33454442032496 ], [ -64.852375596980096, 18.334492452500285 ], [ -64.852261603042223, 18.33446244527255 ], [ -64.85217040789189, 18.334447022563268 ], [ -64.852086756457993, 18.334424557742295 ], [ -64.85199556130766, 18.334394719462352 ], [ -64.851904366157328, 18.334372088312932 ], [ -64.851859439134728, 18.334298996772475 ], [ -64.851852733609007, 18.334189865650387 ], [ -64.851845860445053, 18.334102358539212 ], [ -64.85186195370693, 18.334015185394662 ], [ -64.85187033561408, 18.333928013559785 ], [ -64.851878717521288, 18.333840843034579 ], [ -64.851879555712003, 18.333753503561525 ], [ -64.851865138831613, 18.333665996450407 ], [ -64.85184301059661, 18.333585865417547 ], [ -64.85179791593589, 18.333512775186762 ], [ -64.85172231113296, 18.333453934198246 ], [ -64.851646538691853, 18.333409676418512 ], [ -64.851562887258012, 18.333387046578764 ], [ -64.851479403462292, 18.333357374627269 ], [ -64.85138032931917, 18.333349160358239 ], [ -64.851289134168837, 18.333333905287134 ], [ -64.851204979820579, 18.333369612211811 ], [ -64.85115100164785, 18.333434654502014 ], [ -64.851112275926937, 18.333514282620399 ], [ -64.851028289216799, 18.333535406336182 ], [ -64.85093692642829, 18.333527527343449 ], [ -64.850845563639837, 18.333512104634167 ], [ -64.850762247482237, 18.333475056604357 ], [ -64.850694186395799, 18.333416383253962 ], [ -64.850618413954692, 18.333364749395912 ], [ -64.850534762520851, 18.333342287194341 ], [ -64.850443399732399, 18.333334240563431 ], [ -64.850352204582066, 18.333326192622792 ], [ -64.850268553148169, 18.333303730421221 ], [ -64.850184566438031, 18.333324851517659 ], [ -64.850123044548866, 18.333389727479414 ], [ -64.850031680450741, 18.333389058236492 ], [ -64.849940150024111, 18.333388220045777 ], [ -64.849872088937616, 18.333336755135576 ], [ -64.849849960702613, 18.333256624102717 ], [ -64.849866053964433, 18.333169452267839 ], [ -64.849828670658326, 18.333088985958739 ], [ -64.849775864642993, 18.333023104168149 ], [ -64.849700259840006, 18.332971639257948 ], [ -64.849624319760778, 18.332927381478271 ], [ -64.849540835965058, 18.332897543198271 ], [ -64.84947277487862, 18.332846078288071 ], [ -64.849448299709593, 18.332795116292289 ], [ -64.84937353440705, 18.332747170473453 ], [ -64.84929139040679, 18.332711463548776 ], [ -64.849204387519762, 18.332688832399356 ], [ -64.84911302342158, 18.332666202559551 ], [ -64.849025851586703, 18.332665532007013 ], [ -64.848938847390002, 18.332664692506569 ], [ -64.848851675555125, 18.332659663362278 ], [ -64.84876484030616, 18.332645749396306 ], [ -64.848678002437907, 18.332614402373054 ], [ -64.848600387286922, 18.332574504494801 ], [ -64.848522769516592, 18.332534438978371 ], [ -64.848440626826005, 18.332498732053693 ], [ -64.848377093279112, 18.332436873578558 ], [ -64.848299475508782, 18.332392449470433 ], [ -64.848222026686244, 18.332352383954003 ], [ -64.848139716357537, 18.332316677029326 ], [ -64.848052879798956, 18.332298404471601 ], [ -64.847961015405701, 18.332319694515888 ], [ -64.847873674622974, 18.332336458330303 ], [ -64.847795387609779, 18.332375181431928 ], [ -64.847726154365944, 18.332427150566218 ], [ -64.847656918502821, 18.332483476982588 ], [ -64.847574106569368, 18.332513484210381 ], [ -64.847487102372611, 18.332512646019666 ], [ -64.847400098175854, 18.332503258283623 ], [ -64.847385178381046, 18.332501078987718 ], [ -64.847380484513053, 18.332500408435124 ], [ -64.847336060404871, 18.332493870547523 ], [ -64.847246206359671, 18.332484650449601 ], [ -64.847166075326868, 18.332445589452391 ], [ -64.847086110622513, 18.332406531074525 ], [ -64.846997431353998, 18.332413404238423 ], [ -64.846908918413931, 18.332420277402321 ], [ -64.846837169288335, 18.332358251289008 ], [ -64.846781513424503, 18.332288681459261 ], [ -64.846693168122613, 18.332264876842828 ], [ -64.8466049904589, 18.332233528509903 ], [ -64.84652485942604, 18.332202012538801 ], [ -64.846452775024147, 18.332155409134771 ], [ -64.846372643991288, 18.332124060801846 ], [ -64.846316988127512, 18.332054323333978 ], [ -64.84626937889459, 18.33198492114235 ], [ -64.846237862923545, 18.33190780759611 ], [ -64.846157731890685, 18.331868747908572 ], [ -64.846077600857882, 18.33183723193747 ], [ -64.846005684094109, 18.331782917178828 ], [ -64.845917506430339, 18.331759112562395 ], [ -64.84584542202839, 18.331712509158365 ], [ -64.845773505264617, 18.331665738116158 ], [ -64.845733941352989, 18.331588624569918 ], [ -64.845710640960647, 18.331503967307185 ], [ -64.845638891834994, 18.33144194119393 ], [ -64.845575020392459, 18.331379915080674 ], [ -64.845527412469266, 18.33131034525087 ], [ -64.845463542336404, 18.331248319137615 ], [ -64.845415933103482, 18.331178749307867 ], [ -64.845376370501526, 18.331117058470852 ], [ -64.845335634432502, 18.331054361805002 ], [ -64.845263716359057, 18.331007590762852 ], [ -64.845246283301776, 18.330921089480512 ], [ -64.845198674068854, 18.330851519650764 ], [ -64.845157099809171, 18.330776250124131 ], [ -64.845115693187608, 18.330700980597442 ], [ -64.845067916316566, 18.330631410767694 ], [ -64.845020307083644, 18.330561840937946 ], [ -64.844948390319871, 18.330515237533916 ], [ -64.844967333430134, 18.330428903889754 ], [ -64.844974038955911, 18.330342570245591 ], [ -64.844980912119809, 18.330256236601429 ], [ -64.844981750310524, 18.330169735319089 ], [ -64.845024664365724, 18.330095303983171 ], [ -64.845055511093904, 18.330014837674071 ], [ -64.845068419230984, 18.329928504029908 ], [ -64.845069089783578, 18.329842170385746 ], [ -64.845045788081563, 18.329761201162171 ], [ -64.845028353714554, 18.329674699879888 ], [ -64.844980744481688, 18.32960513005014 ], [ -64.845011757538316, 18.329524663740983 ], [ -64.845084512492804, 18.32947353410708 ], [ -64.845163470058651, 18.329428104170063 ], [ -64.845224321395222, 18.329365239866036 ], [ -64.845273273042949, 18.329290640891998 ], [ -64.845340159352702, 18.329233643923033 ], [ -64.845407048281857, 18.32917647931589 ], [ -64.845479970874521, 18.329119482346982 ], [ -64.845540823520764, 18.329056618042955 ], [ -64.845601676167064, 18.328993753738985 ], [ -64.845668562476817, 18.32893675677002 ], [ -64.845717514124544, 18.32886802513093 ], [ -64.845772330487989, 18.328799293491898 ], [ -64.845827317108842, 18.328730561852865 ], [ -64.845870232473715, 18.328656130516947 ], [ -64.845913147838587, 18.328581531542852 ], [ -64.84595606320346, 18.328501232871872 ], [ -64.846005013541514, 18.328426633897777 ], [ -64.846095704467757, 18.328410205359717 ], [ -64.846180363040105, 18.328387909486537 ], [ -64.846265020302837, 18.328365445975237 ], [ -64.846355712538752, 18.328343150102114 ], [ -64.846392760568563, 18.328343653016532 ], [ -64.846461492207595, 18.328323871715554 ], [ -64.846546149470328, 18.328299396546527 ], [ -64.846635834567678, 18.328290008810427 ], [ -64.846730885395345, 18.328280788712505 ], [ -64.846825937532685, 18.328271400976462 ], [ -64.846915622630036, 18.328282297455814 ], [ -64.846999778288023, 18.328303084585684 ], [ -64.847048559678228, 18.32830895192069 ], [ -64.847158699248496, 18.328352202561859 ], [ -64.847236148071033, 18.328389921144264 ], [ -64.847285098409088, 18.328418922543165 ], [ -64.847311920512141, 18.328443397712192 ], [ -64.847397917570333, 18.328506932568757 ], [ -64.847479892622744, 18.32854331004603 ], [ -64.847551475419891, 18.328565270642912 ], [ -64.847601934501256, 18.328592764608175 ], [ -64.847655577397632, 18.328623273440712 ], [ -64.847719447530494, 18.328666691720002 ], [ -64.847781810229776, 18.328715642058057 ], [ -64.847853222769459, 18.328753360640462 ], [ -64.847915585468684, 18.328791079222867 ], [ -64.847991190271614, 18.328861654881507 ], [ -64.848044665529869, 18.32890490552262 ], [ -64.848106860590974, 18.328965422892622 ], [ -64.848163354645521, 18.328997274139965 ], [ -64.848216663575272, 18.329054774023348 ], [ -64.848260080544947, 18.329096851197505 ], [ -64.848339877611124, 18.32914077239127 ], [ -64.848382625337877, 18.329176982230365 ], [ -64.848457055364122, 18.329246384421992 ], [ -64.848486728625289, 18.329270021400248 ], [ -64.848558645389062, 18.329307237068235 ], [ -64.848619161449392, 18.329343614545508 ], [ -64.848657384255887, 18.329363563484605 ], [ -64.848717901625832, 18.329401617343308 ], [ -64.848778417686162, 18.329449561852471 ], [ -64.848854860679808, 18.329499350381241 ], [ -64.848913366392082, 18.32955534152137 ], [ -64.848946055830197, 18.32958266653884 ], [ -64.848963322558973, 18.329612170852158 ], [ -64.8489991984315, 18.3296983368582 ], [ -64.849013950588187, 18.329722644389051 ], [ -64.849059211577355, 18.329784670502363 ], [ -64.849089721719565, 18.329838649984708 ], [ -64.849112520507163, 18.329900676098021 ], [ -64.84913548693288, 18.329962534573156 ], [ -64.849165495470345, 18.330057585400766 ], [ -64.849216120880158, 18.330148445274801 ], [ -64.84928652890062, 18.330245675398373 ], [ -64.84936347480874, 18.330343911350724 ], [ -64.849430531376015, 18.330420019068129 ], [ -64.849496076580635, 18.330497300252489 ], [ -64.849607389617915, 18.330583969172949 ], [ -64.849649131515775, 18.330679522915034 ], [ -64.849689867584743, 18.330747584001472 ], [ -64.849763125453705, 18.330811286496214 ], [ -64.849843925729431, 18.330882532707392 ], [ -64.849965798660094, 18.330919916013499 ], [ -64.850052467580554, 18.330911031191874 ], [ -64.850238545920433, 18.330871133313622 ], [ -64.850363603975836, 18.330840623171412 ], [ -64.850557226032151, 18.330827547396154 ], [ -64.850745148391582, 18.330875324267197 ], [ -64.850861992177954, 18.330915222145507 ], [ -64.851019069118877, 18.330986971271102 ], [ -64.851138092201097, 18.331058552758577 ], [ -64.851267005933835, 18.33115444177696 ], [ -64.851390890522282, 18.331255024663392 ], [ -64.851466327687092, 18.331365162923987 ], [ -64.851533885859112, 18.331487203492827 ], [ -64.851579818710547, 18.3315366567453 ], [ -64.851714096863873, 18.331619469988425 ], [ -64.85177059091842, 18.33167646695739 ], [ -64.85180579492868, 18.331710665138758 ], [ -64.85185390707602, 18.331745198596423 ], [ -64.851941246549018, 18.331759280200515 ], [ -64.852377440999703, 18.331815606616885 ], [ -64.852484058859261, 18.331837902490065 ], [ -64.852605596513683, 18.331827173648833 ], [ -64.852714058392849, 18.3317968311448 ], [ -64.852805421181358, 18.331765315173698 ], [ -64.852908183363581, 18.331731787544925 ], [ -64.852993846455206, 18.331714185539795 ], [ -64.853091747131316, 18.33170211559343 ], [ -64.853178583689896, 18.3316910514759 ], [ -64.853203394135221, 18.33168602233161 ], [ -64.853404559907972, 18.331603209088485 ], [ -64.853480164710959, 18.331563478848352 ], [ -64.853550405093245, 18.331508158260817 ], [ -64.853602708194217, 18.33144311335127 ], [ -64.853679821740457, 18.33137924452808 ], [ -64.853738662728972, 18.331340017202365 ], [ -64.853790798191767, 18.331298442942682 ], [ -64.85387562309262, 18.331264412399435 ], [ -64.85404862434757, 18.331276985260217 ], [ -64.854178712856992, 18.33133280876217 ], [ -64.854245934443043, 18.331359127950805 ], [ -64.854309805885578, 18.331391985027039 ], [ -64.854369148478895, 18.331421489340357 ], [ -64.85442178816578, 18.331450993653732 ], [ -64.854505774875918, 18.331507487708222 ], [ -64.854574003600533, 18.331549900158677 ], [ -64.854660337244695, 18.331582924873032 ], [ -64.854718675318793, 18.33160270617401 ], [ -64.854782545451656, 18.331625840237905 ], [ -64.854883463614385, 18.331669593793492 ], [ -64.854948171937963, 18.331732458097463 ], [ -64.855001479558041, 18.33180169265097 ], [ -64.855067195020183, 18.331885008808513 ], [ -64.855133578415519, 18.332010234502093 ], [ -64.855197617496231, 18.332133280899768 ], [ -64.855274897370919, 18.332312318437573 ], [ -64.855348490516121, 18.332498732053693 ], [ -64.855373637547416, 18.332586071526748 ], [ -64.855392245381381, 18.332635523469548 ], [ -64.855425605372034, 18.332685313307991 ], [ -64.855460809382294, 18.332772651471316 ], [ -64.855476398420024, 18.332838868538204 ], [ -64.855505233490476, 18.332893855159114 ], [ -64.855526857501332, 18.332946158260029 ], [ -64.855536749461521, 18.333002483366784 ], [ -64.855531886645679, 18.333053614310359 ], [ -64.855544628454311, 18.333105748463481 ], [ -64.855602966528409, 18.333165261314264 ], [ -64.855662979674264, 18.333207003212124 ], [ -64.855746632417834, 18.333234494558042 ], [ -64.855837324653749, 18.333289481178952 ], [ -64.855970764616359, 18.333352513121099 ], [ -64.856084758554289, 18.333394421347407 ], [ -64.856140917332482, 18.333424931489617 ], [ -64.856188191289107, 18.333473883137344 ], [ -64.856235968160149, 18.333505565436894 ], [ -64.856311908239377, 18.33356105366255 ], [ -64.856360858577432, 18.333611011139169 ], [ -64.856428247801659, 18.333642527110214 ], [ -64.856497314716989, 18.333665493535932 ], [ -64.856572082638877, 18.333684436646195 ], [ -64.856656069349015, 18.333693489105997 ], [ -64.856697139384607, 18.333699859355477 ], [ -64.856772745497267, 18.333714276235867 ], [ -64.856853545772992, 18.333731878240997 ], [ -64.856906519426502, 18.333739589595609 ], [ -64.85694423931858, 18.333741098338919 ], [ -64.85699855276755, 18.333737241351912 ], [ -64.857015651858205, 18.333730200549837 ], [ -64.857006431760283, 18.333717292412757 ], [ -64.85697441287482, 18.333696337644767 ], [ -64.856944405647027, 18.333685776441712 ], [ -64.856916242438842, 18.333655098661325 ], [ -64.85685723381215, 18.333627438367614 ], [ -64.856788837449415, 18.333581505516122 ], [ -64.85671625144272, 18.333547811558844 ], [ -64.856614996694077, 18.333510428252737 ], [ -64.856594544840505, 18.333483606149684 ], [ -64.856533524556085, 18.333401463459154 ], [ -64.856494129592249, 18.333360392113889 ], [ -64.856438473728417, 18.333334574529999 ], [ -64.856388517561527, 18.333308927203689 ], [ -64.856277207143592, 18.333253102392064 ], [ -64.856180312296317, 18.333218570244071 ], [ -64.856112920452802, 18.333178672365761 ], [ -64.856067490515784, 18.333154532473031 ], [ -64.856002951139999, 18.333128548560694 ], [ -64.855957521202981, 18.333108599621596 ], [ -64.855919467344279, 18.333082950985556 ], [ -64.855881413485577, 18.333053111395941 ], [ -64.855855260625447, 18.333013547484256 ], [ -64.855842521436159, 18.332969795238341 ], [ -64.855827601641352, 18.332905086914764 ], [ -64.855814693504271, 18.332845406425804 ], [ -64.855800947176476, 18.332750692184163 ], [ -64.855777979441086, 18.332667711302861 ], [ -64.855761049298223, 18.332549526411356 ], [ -64.855751661562124, 18.332476268542393 ], [ -64.855742106187904, 18.332403178311608 ], [ -64.855725007097249, 18.332311647884978 ], [ -64.855711428407574, 18.332210394446008 ], [ -64.855697011527184, 18.33216965837704 ], [ -64.855656944701082, 18.332118696381258 ], [ -64.855599949041789, 18.332078463226708 ], [ -64.855550663427493, 18.332047953084498 ], [ -64.855483608169891, 18.331989447372223 ], [ -64.855399118545279, 18.331885510413258 ], [ -64.855330385596574, 18.331766823917008 ], [ -64.855259139385396, 18.3316845135883 ], [ -64.85518470935915, 18.331577560452445 ], [ -64.855091836517659, 18.331515534339133 ], [ -64.855038527587908, 18.33144847908153 ], [ -64.854989578559525, 18.331371700811587 ], [ -64.854927049531796, 18.331333646952885 ], [ -64.854883295976208, 18.331316044947812 ], [ -64.854830322322698, 18.331312356908597 ], [ -64.854779695603213, 18.33131839188178 ], [ -64.854748179632168, 18.33131822424366 ], [ -64.854722866272425, 18.331297101837492 ], [ -64.854699060346263, 18.331276985260217 ], [ -64.854623456853005, 18.33118176679443 ], [ -64.85455958541047, 18.331142539468772 ], [ -64.854502588441505, 18.331106664905917 ], [ -64.854433522835848, 18.331030892464867 ], [ -64.854238558364727, 18.330929303749599 ], [ -64.854145688142637, 18.330884544365119 ], [ -64.85404108194075, 18.330865265978559 ], [ -64.853916359161644, 18.330856716433232 ], [ -64.853737656900137, 18.330823021166282 ], [ -64.853607569700387, 18.330780105801409 ], [ -64.853568174736552, 18.330777591229264 ], [ -64.853540179166487, 18.330781782182839 ], [ -64.853414115282192, 18.330889238233169 ], [ -64.853360806352384, 18.330953276004152 ], [ -64.853288219036074, 18.331003064532922 ], [ -64.853223678350616, 18.331051009042142 ], [ -64.853146732442497, 18.331093253854419 ], [ -64.853041790964369, 18.331134325199685 ], [ -64.852941543354291, 18.331147568613062 ], [ -64.852852527499806, 18.33116399715118 ], [ -64.852765858579346, 18.331153603586245 ], [ -64.852673825238298, 18.331137845600722 ], [ -64.852500487397378, 18.331143880573904 ], [ -64.852426894252176, 18.331154274138839 ], [ -64.852309882827683, 18.331150921375922 ], [ -64.85213201875689, 18.331110520583252 ], [ -64.852000087537533, 18.331060732054482 ], [ -64.8519088923872, 18.331008931867984 ], [ -64.851799927593618, 18.330964340121682 ], [ -64.851703703298995, 18.330902649284667 ], [ -64.851625751561983, 18.330795025596217 ], [ -64.851486444264367, 18.330716068030426 ], [ -64.851284105024547, 18.330566199529699 ], [ -64.851204644544282, 18.330465784281444 ], [ -64.8511087555259, 18.330365369033188 ], [ -64.851049243984789, 18.330333014871371 ], [ -64.850920497890229, 18.330295463927143 ], [ -64.850779849487367, 18.330251878009676 ], [ -64.850647582991769, 18.330208459730386 ], [ -64.850547839605781, 18.330157665372724 ], [ -64.850488662031239, 18.330142410301619 ], [ -64.850391431907724, 18.330130172717134 ], [ -64.850218596981279, 18.330129334526418 ], [ -64.850197474575111, 18.330130507993431 ], [ -64.850186913372056, 18.330121790809926 ], [ -64.850162439512701, 18.330099327298626 ], [ -64.850125222535041, 18.330078037254339 ], [ -64.850072585467501, 18.330058758867779 ], [ -64.850033859746588, 18.330049706408033 ], [ -64.850026818944514, 18.330043671434851 ], [ -64.850020617642883, 18.330026069429721 ], [ -64.849992788401323, 18.329980639492703 ], [ -64.849966470522361, 18.329931353878351 ], [ -64.849949202483856, 18.329885923941333 ], [ -64.849939647109636, 18.329861616410426 ], [ -64.849906287118984, 18.329808139842498 ], [ -64.849853816379948, 18.329705210022098 ], [ -64.849847781406766, 18.329643351546963 ], [ -64.849843758091311, 18.329538912983253 ], [ -64.849858845524238, 18.329350990623823 ], [ -64.849861863010858, 18.32933690901973 ], [ -64.849899581593263, 18.329289299786808 ], [ -64.849913327921058, 18.329266500999267 ], [ -64.849917015960216, 18.329249737184853 ], [ -64.849917015960216, 18.329239678896215 ], [ -64.849911483901451, 18.329222076891085 ], [ -64.849856164623645, 18.329111770992313 ], [ -64.849843758091311, 18.329082099040818 ], [ -64.849731943449228, 18.328878418695865 ], [ -64.849693051399811, 18.328810023642802 ], [ -64.849665055829803, 18.328708433617862 ], [ -64.849656673922595, 18.328663506595262 ], [ -64.849622475741228, 18.328539789644992 ], [ -64.849612920367008, 18.328475248959592 ], [ -64.849593809618568, 18.328303922776399 ], [ -64.849595822585968, 18.328245081787827 ], [ -64.849619625892785, 18.328057327066574 ], [ -64.849639071917466, 18.327855658379349 ], [ -64.849660361961753, 18.327770162925901 ], [ -64.849679807986433, 18.327733953086806 ], [ -64.849711157629031, 18.327669580039526 ], [ -64.849760441933711, 18.327584419862376 ], [ -64.849825820809883, 18.327493896574254 ], [ -64.849870412556186, 18.327438071762629 ], [ -64.849897569935536, 18.327407393982298 ], [ -64.849912489730343, 18.327399347351388 ], [ -64.849978203882756, 18.327344363349823 ], [ -64.850048948489246, 18.327294239544756 ], [ -64.850117175904131, 18.327241599857871 ], [ -64.850122037410301, 18.327237073627998 ], [ -64.850183895885436, 18.327187117461051 ], [ -64.850252124610051, 18.327134480393511 ], [ -64.850310797960447, 18.327072620608703 ], [ -64.850369472620571, 18.327008416509216 ], [ -64.850420768582921, 18.32694639039596 ], [ -64.850420768582921, 18.326941862856415 ], [ -64.850484303439487, 18.326884530611153 ], [ -64.850542809151762, 18.32682267344569 ], [ -64.850615899382547, 18.326777074560823 ], [ -64.850696030415406, 18.326745392261273 ], [ -64.850783369888404, 18.326722927440358 ], [ -64.850870374085162, 18.326723765631073 ], [ -64.850924185929387, 18.32665721459756 ], [ -64.850937094066467, 18.32657171783444 ], [ -64.850969280590107, 18.326493430821188 ], [ -64.850996605607577, 18.32641279687391 ], [ -64.851026109920895, 18.326364518398123 ], [ -64.851096685579535, 18.326314225645262 ], [ -64.851167428876295, 18.326259409281818 ], [ -64.85123079609474, 18.326199896431035 ], [ -64.851254097796755, 18.326100151735375 ], [ -64.851255103625647, 18.325979787547965 ], [ -64.85127589075546, 18.325878701747172 ], [ -64.851322829435787, 18.325822207692624 ], [ -64.851449899148975, 18.325696646722747 ], [ -64.85157126916522, 18.325654906134559 ], [ -64.851617202016655, 18.325582989370787 ], [ -64.851659446828933, 18.325507552206034 ], [ -64.851709235357703, 18.325439323481419 ], [ -64.851770255642123, 18.325378469525447 ], [ -64.851842507682193, 18.325332201397714 ], [ -64.851929847155247, 18.325289453670962 ], [ -64.852005954872595, 18.325246873582387 ], [ -64.852074518873508, 18.325193229376339 ], [ -64.852131683480593, 18.325128688690882 ], [ -64.852204103158783, 18.325075213432626 ], [ -64.852283898915346, 18.325028945304894 ], [ -64.852363527033731, 18.324989885617356 ], [ -64.852450698868608, 18.324965241500479 ], [ -64.852526806586013, 18.324922495083456 ], [ -64.852606434704398, 18.324887123435076 ], [ -64.852678686744468, 18.324840855307343 ], [ -64.852758482501031, 18.324805316020786 ], [ -64.852834422580258, 18.324762568294091 ], [ -64.852921762053256, 18.324727196645711 ], [ -64.853008766250014, 18.324717138357073 ], [ -64.853095602808594, 18.324725017349806 ], [ -64.853182439367174, 18.324733063980716 ], [ -64.853273466879386, 18.324708421173568 ], [ -64.853334151887509, 18.324684616557136 ], [ -64.853381928758552, 18.324672714248891 ], [ -64.853468932955309, 18.324666176361291 ], [ -64.853555937152009, 18.324656118072653 ], [ -64.853646963354549, 18.324631641593953 ], [ -64.853730280821765, 18.324607000096421 ], [ -64.853817620294819, 18.324567940408883 ], [ -64.853901439366837, 18.324507255400761 ], [ -64.853970003367692, 18.324450089484003 ], [ -64.85404594344692, 18.324407343066923 ], [ -64.854129594880817, 18.324353866498996 ], [ -64.854213077366808, 18.324307598371263 ], [ -64.854285498354727, 18.324257642204316 ], [ -64.854342830599933, 18.324189581117878 ], [ -64.854407538923567, 18.324132416510793 ], [ -64.854457327452337, 18.324064186476505 ], [ -64.85451465838787, 18.32399964710072 ], [ -64.854564280588193, 18.323931418376105 ], [ -64.854625468510733, 18.32387056442019 ], [ -64.85468648748548, 18.323806025044405 ], [ -64.854747509079573, 18.323745172398105 ], [ -64.854772319524898, 18.323720529590958 ], [ -64.854855300406143, 18.32369605442193 ], [ -64.854913806118418, 18.323700245375562 ], [ -64.855038696535701, 18.323678955331275 ], [ -64.855147828967461, 18.323672417443618 ], [ -64.855233492059028, 18.323680630403032 ], [ -64.855300882592928, 18.323692366382772 ], [ -64.855389729499564, 18.32364458951173 ], [ -64.855460474105996, 18.323589436562372 ], [ -64.855565749550749, 18.323571666919065 ], [ -64.855643533649584, 18.323590945305625 ], [ -64.855869008262914, 18.323659844582835 ], [ -64.856120296531117, 18.323655318352962 ], [ -64.856243847152939, 18.323592118772638 ], [ -64.856333533559962, 18.323578037168545 ], [ -64.856439145590684, 18.323534115974837 ], [ -64.85654123722037, 18.323460522829635 ], [ -64.856608626444597, 18.323338314622617 ], [ -64.856702840391165, 18.323257177760922 ], [ -64.856769726700975, 18.323186937378637 ], [ -64.85691222043306, 18.323049977014989 ], [ -64.85697776563768, 18.323028686970702 ], [ -64.857141549414052, 18.323015108281027 ], [ -64.85723944878049, 18.322974875126476 ], [ -64.857317735793686, 18.322934641971869 ], [ -64.85744732138869, 18.322831376875172 ], [ -64.85754153271597, 18.322746551974319 ], [ -64.857647481332606, 18.322680502545609 ], [ -64.857881670510153, 18.322641442858014 ], [ -64.858099601406991, 18.322653009889962 ], [ -64.858306131600386, 18.322637084266319 ], [ -64.858478127026501, 18.322624008491061 ], [ -64.858704270882754, 18.322607244676647 ], [ -64.858848774962837, 18.322586122270536 ], [ -64.85899294376668, 18.322579919659177 ], [ -64.859094364843827, 18.322580757849892 ], [ -64.859144823925192, 18.322607244676647 ], [ -64.859326712621055, 18.322742696297041 ], [ -64.859408015811255, 18.322810422107182 ], [ -64.85947322704925, 18.322915028309069 ], [ -64.85951178382237, 18.322975042764597 ], [ -64.859514633670813, 18.323075458012852 ], [ -64.85952150683471, 18.323190959384419 ], [ -64.859504575382175, 18.323332279649435 ], [ -64.859514466032692, 18.323540821500615 ], [ -64.859556040292375, 18.323682643370432 ], [ -64.859605493544905, 18.323809545445442 ], [ -64.859658467198358, 18.323877271255583 ], [ -64.859680930709658, 18.323922701192657 ], [ -64.85978654274038, 18.323992941574943 ], [ -64.859825267151678, 18.324061505575855 ], [ -64.859924006018502, 18.3241183349067 ], [ -64.859961892239028, 18.324174828961191 ], [ -64.85998552921734, 18.324250432454448 ], [ -64.860008998557475, 18.324355039966008 ], [ -64.860041520357413, 18.324409019448353 ], [ -64.860261126326066, 18.324736918348378 ], [ -64.860382328704191, 18.325086445188276 ], [ -64.860406971511338, 18.325249220516412 ], [ -64.860515433390503, 18.325503024666432 ], [ -64.860579638799663, 18.325707041597354 ], [ -64.860712408209736, 18.326044160595302 ], [ -64.860783654420914, 18.326125969319207 ], [ -64.860895804339236, 18.326214314621097 ], [ -64.861028070834891, 18.326317410770002 ], [ -64.861169892704709, 18.3264806916319 ], [ -64.861246000422057, 18.326573561854048 ], [ -64.861255723434397, 18.3266220105873 ], [ -64.861286568852904, 18.326789647421663 ], [ -64.861372567220769, 18.326876317651738 ], [ -64.861386648824862, 18.326940355422778 ], [ -64.861369885010504, 18.326998190582458 ], [ -64.861281874984854, 18.327141184609616 ], [ -64.861279863327127, 18.32717555042916 ], [ -64.861289251063226, 18.32721779655111 ], [ -64.861316743718817, 18.327257022567096 ], [ -64.861363682399144, 18.327310666773201 ], [ -64.861382457871287, 18.327365316808141 ], [ -64.861379272746547, 18.327468749543016 ], [ -64.861344236374464, 18.327655833711674 ], [ -64.861341889440439, 18.327841410446752 ], [ -64.861359826721866, 18.327954901470264 ], [ -64.861387319377457, 18.328009048590786 ], [ -64.861399892238239, 18.328020615622734 ], [ -64.861408274145447, 18.328063864954174 ], [ -64.861417997157787, 18.328131590764372 ], [ -64.861424367407267, 18.328135446441649 ], [ -64.861434760972202, 18.328133267145802 ], [ -64.861457895036096, 18.328128238001511 ], [ -64.861500139848374, 18.328113988759242 ], [ -64.86154774908124, 18.328087838518456 ], [ -64.861592843742017, 18.328081300630856 ], [ -64.86160876936566, 18.328073085052097 ], [ -64.861696947029429, 18.328005360551629 ], [ -64.861811276243657, 18.327860353557071 ], [ -64.86189794516406, 18.327709814503748 ], [ -64.861932981536199, 18.327445447841001 ], [ -64.86195410394231, 18.327298261550538 ], [ -64.86193968706192, 18.327213605597478 ], [ -64.861922923247562, 18.326999530377918 ], [ -64.861901800841395, 18.326800880486985 ], [ -64.861846815530157, 18.326567863466778 ], [ -64.861621509864619, 18.326137536351155 ], [ -64.861439119563954, 18.325946093590687 ], [ -64.861234768666407, 18.325810809608527 ], [ -64.861158493310882, 18.32574760871853 ], [ -64.861072662581194, 18.325647027141827 ], [ -64.861067633436846, 18.325487435628702 ], [ -64.860980796878266, 18.325313259597124 ], [ -64.860924805738136, 18.325176968476342 ], [ -64.860879040524821, 18.324976474565801 ], [ -64.860840316113581, 18.324883938310336 ], [ -64.860806956122929, 18.324769609096109 ], [ -64.860788013012666, 18.324624434463431 ], [ -64.860779463467338, 18.324448245464396 ], [ -64.860785163164223, 18.324276250038338 ], [ -64.860773428494156, 18.324161417909693 ], [ -64.860760687995196, 18.324055638240793 ], [ -64.860768064073511, 18.323977686503838 ], [ -64.860771584474548, 18.32380216936707 ], [ -64.860737889207599, 18.323657832925107 ], [ -64.860703188111813, 18.323596308416597 ], [ -64.860711905295261, 18.323558926420162 ], [ -64.860726825090069, 18.323499750155293 ], [ -64.860822546470331, 18.323429509773007 ], [ -64.860896642529951, 18.323350049292742 ], [ -64.861043828820414, 18.323254663188777 ], [ -64.861078865192496, 18.323210406718772 ], [ -64.861252705947834, 18.323108985641682 ], [ -64.861300482818876, 18.322981077737779 ], [ -64.861315570251804, 18.322931624485307 ], [ -64.861306014877641, 18.322891558968877 ], [ -64.861304338496154, 18.322836238381342 ], [ -64.861312217488944, 18.322699110379574 ], [ -64.861330322408492, 18.322608921058077 ], [ -64.861349433156931, 18.322569693732419 ], [ -64.861437778458821, 18.322512026210859 ], [ -64.861447166194864, 18.322500626817089 ], [ -64.861478179251492, 18.322307675313311 ], [ -64.861487902263832, 18.322257048593826 ], [ -64.861513718538049, 18.322191166803236 ], [ -64.861534170391622, 18.322140540083751 ], [ -64.861564009981237, 18.322084884219976 ], [ -64.861564177619357, 18.322051859505564 ], [ -64.861540708279222, 18.321998215299516 ], [ -64.861510365775132, 18.321973907768609 ], [ -64.861400227514537, 18.321938703758406 ], [ -64.861320767034272, 18.321902326281133 ], [ -64.861274498906539, 18.321877851112106 ], [ -64.861228398416927, 18.321813980979243 ], [ -64.861146088088219, 18.321790344000931 ], [ -64.861043493544116, 18.321745416978331 ], [ -64.860930840711319, 18.321653718913581 ], [ -64.860812320543516, 18.321547268692143 ], [ -64.860650382096424, 18.321469819869606 ], [ -64.860479055913288, 18.321445009424338 ], [ -64.860322314248606, 18.321473004994346 ], [ -64.860248218188985, 18.321531007792203 ], [ -64.860177474892225, 18.32156839109831 ], [ -64.860103714108845, 18.321585322550845 ], [ -64.859867344325835, 18.32160694787143 ], [ -64.85967707503238, 18.321640475500203 ], [ -64.859547993661465, 18.321668638708388 ], [ -64.859406843653915, 18.321707530757806 ], [ -64.859142979905585, 18.321700489955788 ], [ -64.858913148010174, 18.321689761114555 ], [ -64.85882748491855, 18.32167450604345 ], [ -64.858724053493404, 18.321634608165198 ], [ -64.858624978040609, 18.321621197113643 ], [ -64.858504447524751, 18.32163259650747 ], [ -64.858303280442271, 18.321638296204355 ], [ -64.858117537378746, 18.321634943441438 ], [ -64.857952413806913, 18.321671991471305 ], [ -64.85755762597779, 18.32172261819079 ], [ -64.85744396862583, 18.32174508170209 ], [ -64.857118415350158, 18.321809790025668 ], [ -64.856922109773848, 18.321828733135931 ], [ -64.856854551601828, 18.321842814740023 ], [ -64.856666798190247, 18.321920263562561 ], [ -64.856592534492449, 18.321984133695423 ], [ -64.856539894805564, 18.322048003828286 ], [ -64.856441492524709, 18.322076502312768 ], [ -64.856364546616589, 18.322122770440501 ], [ -64.8563031897462, 18.322119250039464 ], [ -64.856164889587092, 18.322162165404336 ], [ -64.856075706094487, 18.322190663888819 ], [ -64.855977470142079, 18.322204410216614 ], [ -64.855903540410907, 18.322238943674279 ], [ -64.855789715420826, 18.322284876525771 ], [ -64.855672871634454, 18.322313207372076 ], [ -64.855513615397683, 18.322306166570058 ], [ -64.855409175524244, 18.322314045562791 ], [ -64.855240700499223, 18.322306837122596 ], [ -64.855103069582981, 18.322267609796938 ], [ -64.855023609102773, 18.322243469904208 ], [ -64.854847252465561, 18.322227041366091 ], [ -64.854686990399898, 18.322170379673423 ], [ -64.854512648039815, 18.322122099887906 ], [ -64.854307291313432, 18.322105838987966 ], [ -64.854239733141412, 18.322134505110569 ], [ -64.854125906841603, 18.322159986108488 ], [ -64.85402817380367, 18.322182449619788 ], [ -64.853937481567755, 18.322185299468231 ], [ -64.853842598378264, 18.322220671116611 ], [ -64.853759114582544, 18.322256042764991 ], [ -64.853686862542475, 18.322302310892724 ], [ -64.853621986580777, 18.322363163539023 ], [ -64.853568510012849, 18.322431392263582 ], [ -64.853526265200514, 18.322506829428391 ], [ -64.853487708427394, 18.322585954632359 ], [ -64.853434231859467, 18.322654183356974 ], [ -64.853395675086347, 18.322729620521784 ], [ -64.853349742234911, 18.322801537285557 ], [ -64.853284866273157, 18.322858701892642 ], [ -64.853220157949579, 18.322915866499784 ], [ -64.853147905909509, 18.322965821357002 ], [ -64.853068110153004, 18.323004882354212 ], [ -64.852984626357284, 18.323036733601612 ], [ -64.852897454522406, 18.323068584848954 ], [ -64.852893598845071, 18.323072105249992 ], [ -64.852812461983376, 18.323096748057139 ], [ -64.852725290148499, 18.32311770282513 ], [ -64.852638285951741, 18.32312424071273 ], [ -64.852547426077706, 18.323141507441562 ], [ -64.852460421881005, 18.323155253769414 ], [ -64.852373250046128, 18.323168832459089 ], [ -64.852286245849371, 18.323171849945652 ], [ -64.852233439833981, 18.323171347031234 ], [ -64.85219940929079, 18.323171011754937 ], [ -64.852108717054875, 18.323170341202342 ], [ -64.85201785718084, 18.32318039949098 ], [ -64.85192330926759, 18.323179728938442 ], [ -64.85183630507089, 18.323178890747727 ], [ -64.851741924795817, 18.323174532155974 ], [ -64.851651232559902, 18.323170173564222 ], [ -64.851564396001322, 18.323165814972469 ], [ -64.851477391804565, 18.323165144419875 ], [ -64.851390387607807, 18.323171682307532 ], [ -64.851299527733772, 18.323192469437345 ], [ -64.851216043938052, 18.323220800283707 ], [ -64.851132560142389, 18.323248963491892 ], [ -64.851049243984789, 18.32327360629904 ], [ -64.850969448228227, 18.32330897794742 ], [ -64.850897196188157, 18.323355246075209 ], [ -64.850824944148144, 18.323401681841062 ], [ -64.850757219647619, 18.323454487856452 ], [ -64.850677422581384, 18.323497235583147 ], [ -64.850605170541314, 18.323543502401208 ], [ -64.850529230462087, 18.323593459877827 ], [ -64.850453122744739, 18.323636207604522 ], [ -64.850369806587139, 18.323664370812708 ], [ -64.850324209012001, 18.32367979352199 ], [ -64.850286322791476, 18.323692534020893 ], [ -64.850199150956541, 18.323706280348745 ], [ -64.850108458720683, 18.323712818236345 ], [ -64.850021454523926, 18.32371198004563 ], [ -64.849934617965346, 18.323707621453877 ], [ -64.849847781406766, 18.323685325580698 ], [ -64.849760944848128, 18.323673758548807 ], [ -64.849668240954543, 18.323674429101345 ], [ -64.849627001971101, 18.323751375009465 ], [ -64.84957922640973, 18.323821949358432 ], [ -64.84951116401362, 18.32387928291331 ], [ -64.849423321626148, 18.32389788943766 ], [ -64.849335646876852, 18.323910128331818 ], [ -64.849248307403798, 18.323857825230903 ], [ -64.84916784240437, 18.323818430267067 ], [ -64.849080166345345, 18.3238177584048 ], [ -64.848992157629425, 18.323842736488245 ], [ -64.848904313932337, 18.32386788351954 ], [ -64.848816303906688, 18.323892861602985 ], [ -64.84875511729382, 18.323956899374025 ], [ -64.848707171474985, 18.324027307394488 ], [ -64.848679512490889, 18.324110791190208 ], [ -64.848678674300174, 18.324194610262225 ], [ -64.848678002437907, 18.324278260386393 ], [ -64.848630057928744, 18.324348668406856 ], [ -64.84856887131582, 18.324412707487568 ], [ -64.848494272341782, 18.324463500535501 ], [ -64.848432915471392, 18.324527539616156 ], [ -64.848364854384897, 18.324591408439346 ], [ -64.848296962246252, 18.324648741994281 ], [ -64.848255723262866, 18.324725686592728 ], [ -64.848207946391824, 18.324796094613191 ], [ -64.848133178469936, 18.324847056608974 ], [ -64.848045503720584, 18.324852757615531 ], [ -64.847957662642841, 18.324871365449553 ], [ -64.847869986583817, 18.324877065146438 ], [ -64.847782313144194, 18.324870024344364 ], [ -64.847708552360814, 18.324824259131049 ], [ -64.847648370267166, 18.324759383169351 ], [ -64.847588354501909, 18.324694339569476 ], [ -64.847562036623003, 18.324610520497458 ], [ -64.847569580339439, 18.324526701425441 ], [ -64.847610985651329, 18.324430477130818 ], [ -64.847672173573926, 18.324366606997955 ], [ -64.847753479383414, 18.324335091026853 ], [ -64.847828078357509, 18.324284129031071 ], [ -64.847902677331604, 18.324239704922945 ], [ -64.847977276305642, 18.324188742927163 ], [ -64.848064949745321, 18.324189413479758 ], [ -64.848146255554809, 18.324157897508655 ], [ -64.848227558745009, 18.324113473400473 ], [ -64.848261924564497, 18.32403652749241 ], [ -64.848296459331834, 18.32395941394617 ], [ -64.848310708574104, 18.32387576251233 ], [ -64.848318252290539, 18.323792111078433 ], [ -64.848332501532809, 18.323708459644592 ], [ -64.848333170775732, 18.323624808210752 ], [ -64.848347421327617, 18.323541156776912 ], [ -64.848368374785935, 18.323457672981192 ], [ -64.848369214286322, 18.323373853909175 ], [ -64.848383463528592, 18.323290202475334 ], [ -64.848384132771457, 18.323206551041437 ], [ -64.848384972271901, 18.323122731969477 ], [ -64.848385641514767, 18.32303908053558 ], [ -64.848393186540932, 18.322955261463619 ], [ -64.848400730257424, 18.322871610029722 ], [ -64.848360998707619, 18.322793993569064 ], [ -64.848341386354434, 18.322710174497104 ], [ -64.848301654804629, 18.322632558036389 ], [ -64.848227895330922, 18.322586792823074 ], [ -64.848147261383701, 18.322553935746896 ], [ -64.848059586634349, 18.322546727306701 ], [ -64.847972079523174, 18.322533148617026 ], [ -64.847884403464207, 18.322525940176831 ], [ -64.847796728714911, 18.322525269624236 ], [ -64.847709055275288, 18.322537339570601 ], [ -64.847621045249639, 18.322562485292224 ], [ -64.847533370500344, 18.322574555238589 ], [ -64.847445528112871, 18.322593163072554 ], [ -64.847364223613056, 18.322624679043656 ], [ -64.847309573578116, 18.322695087064119 ], [ -64.847268502232851, 18.322772032972239 ], [ -64.847240674300906, 18.322855684406079 ], [ -64.847240002438696, 18.322939335839919 ], [ -64.847232460031876, 18.32302298727376 ], [ -64.847231620531488, 18.323106806345777 ], [ -64.847217372598891, 18.323190457779617 ], [ -64.847183005469731, 18.323273941575337 ], [ -64.847168757537133, 18.323357425371057 ], [ -64.847120813027971, 18.323428001029697 ], [ -64.847046214053876, 18.323478795387302 ], [ -64.846978151657765, 18.323542665520165 ], [ -64.846876730580618, 18.323574181491267 ], [ -64.846788889502875, 18.323599159574712 ], [ -64.8467013823917, 18.323579042997437 ], [ -64.846613875280525, 18.323552556170682 ], [ -64.84654698635137, 18.323494050458407 ], [ -64.846480100041617, 18.323435544746189 ], [ -64.84639946609434, 18.323396149782297 ], [ -64.846318832147062, 18.323356922456639 ], [ -64.846258816381862, 18.323292046494885 ], [ -64.846178182434585, 18.32325918941865 ], [ -64.846083468192887, 18.323277629614495 ], [ -64.845988920279694, 18.323296237448517 ], [ -64.845860341823254, 18.323331776735017 ], [ -64.845769481949162, 18.323359939943202 ], [ -64.845693374231814, 18.323402520031777 ], [ -64.845610058074215, 18.323427162838982 ], [ -64.845519198200179, 18.323448117606972 ], [ -64.845428169378351, 18.323465384335805 ], [ -64.845341334129387, 18.32346471378321 ], [ -64.845254497570807, 18.323453146751262 ], [ -64.845167661012226, 18.323437890370485 ], [ -64.845080656815469, 18.323433533088462 ], [ -64.844990132217731, 18.323418444345805 ], [ -64.844914862691098, 18.323374524461769 ], [ -64.844835905125251, 18.323337644070079 ], [ -64.844795001418106, 18.323257848313517 ], [ -64.844773040821224, 18.323174699794095 ], [ -64.844781422728431, 18.323091718912849 ], [ -64.844775555393426, 18.322951908700702 ], [ -64.844787625339791, 18.322865407418419 ], [ -64.844828026132461, 18.322789970253609 ], [ -64.844913689224086, 18.322709503944509 ], [ -64.844982253224941, 18.322655859738404 ], [ -64.845022486379548, 18.322580422573594 ], [ -64.845102282136054, 18.322537842485019 ], [ -64.845176378195731, 18.322489730337736 ], [ -64.845245109834764, 18.322409096390459 ], [ -64.845319373532561, 18.322350255401886 ], [ -64.845376873415944, 18.322258724975313 ], [ -64.845400844360881, 18.322101815672511 ], [ -64.845401683861269, 18.322015314390171 ], [ -64.845368994423154, 18.321868966290481 ], [ -64.845358433220099, 18.321782297370021 ], [ -64.845399336927244, 18.32164718102598 ], [ -64.845456669172506, 18.3215828079787 ], [ -64.845508300411154, 18.321512902872655 ], [ -64.845526071364077, 18.32143176601096 ], [ -64.845527244831089, 18.321296482028743 ], [ -64.845482819413292, 18.321198748990753 ], [ -64.845432529279719, 18.321111744794052 ], [ -64.845387937533417, 18.321035637076648 ], [ -64.845349045484056, 18.320948632879947 ], [ -64.845321385190289, 18.320867160741955 ], [ -64.845265394050159, 18.320801781865782 ], [ -64.845197835878139, 18.320747131830842 ], [ -64.845124745647354, 18.32069784621649 ], [ -64.845045955719684, 18.320637664122785 ], [ -64.845006560755849, 18.320594078205374 ], [ -64.844989796941434, 18.320566753187904 ], [ -64.844945372833308, 18.320479916629324 ], [ -64.844883514358173, 18.320419734535619 ], [ -64.844781422728431, 18.320429792824257 ], [ -64.844712691089399, 18.320515791192122 ], [ -64.844660890902901, 18.320591228356932 ], [ -64.844597858960753, 18.320666330245444 ], [ -64.844580256955624, 18.32074746710714 ], [ -64.844551087918603, 18.320828436330657 ], [ -64.844549746813414, 18.320974449154107 ], [ -64.844548908622698, 18.321077378974508 ], [ -64.844502808133143, 18.321152648501197 ], [ -64.844428209159048, 18.321260272189647 ], [ -64.844382108669436, 18.3213357093544 ], [ -64.844330308482938, 18.32142723978103 ], [ -64.844284375631503, 18.32150267694584 ], [ -64.844232575445005, 18.32159420737247 ], [ -64.844180775258508, 18.321664280116636 ], [ -64.844129142710131, 18.321734185222738 ], [ -64.844094441614345, 18.321814986808135 ], [ -64.844036606454665, 18.321944403455291 ], [ -64.844023698317585, 18.322112209237446 ], [ -64.84402302776499, 18.322198710519729 ], [ -64.843993858727913, 18.322279679743303 ], [ -64.843970389387778, 18.322376909866819 ], [ -64.843957984165115, 18.322485036469686 ], [ -64.84396854536817, 18.322571705390146 ], [ -64.84393954396927, 18.322652674613664 ], [ -64.84392177432602, 18.322733643837239 ], [ -64.84390400468277, 18.322814780698934 ], [ -64.843880702980755, 18.322895749922509 ], [ -64.84383979927361, 18.323025334207784 ], [ -64.843793866422118, 18.323100603734474 ], [ -64.843719602724377, 18.323148715881757 ], [ -64.843600747280277, 18.32313698121169 ], [ -64.84352178971443, 18.32309842443857 ], [ -64.843482897665012, 18.323022316721222 ], [ -64.843370580108569, 18.322902287810109 ], [ -64.843360018905457, 18.322815618889649 ], [ -64.843379129653897, 18.322583104783916 ], [ -64.843379967844612, 18.322496435863457 ], [ -64.843375106338442, 18.322409766943053 ], [ -64.84335951599104, 18.322247325581486 ], [ -64.84336605387864, 18.322160824299203 ], [ -64.84337242412812, 18.322074323016864 ], [ -64.843373262318835, 18.321987654096461 ], [ -64.84336270111578, 18.321900985176001 ], [ -64.843346943130257, 18.321760169135018 ], [ -64.843336381927145, 18.321673500214558 ], [ -64.843320121027205, 18.321592195714743 ], [ -64.843286928674672, 18.32151072357675 ], [ -64.843286928674672, 18.321505191517986 ], [ -64.843217526483102, 18.321450541483046 ], [ -64.843136221983229, 18.321401758783168 ], [ -64.8430736929555, 18.321335038801863 ], [ -64.843017701815427, 18.321268486458678 ], [ -64.842930697618669, 18.321129346799182 ], [ -64.842868336229117, 18.321068661791003 ], [ -64.842812177450867, 18.321002109447875 ], [ -64.842768759171577, 18.320929522131507 ], [ -64.842712768031504, 18.320862802150202 ], [ -64.842618723032729, 18.320807984477085 ], [ -64.842537250894736, 18.320771104085452 ], [ -64.842449240869144, 18.32075232861331 ], [ -64.842373133151739, 18.320793902872992 ], [ -64.842303395683814, 18.320847379440977 ], [ -64.842208680132501, 18.320882751089357 ], [ -64.842126537441914, 18.320912087764555 ], [ -64.842012878780281, 18.320935221828393 ], [ -64.841924701116568, 18.320934551275855 ], [ -64.841855969477479, 18.320873866267675 ], [ -64.841812552507861, 18.320801278951365 ], [ -64.841800648890001, 18.32071695696493 ], [ -64.841814059941498, 18.320626767643432 ], [ -64.84181506577039, 18.320524508375627 ], [ -64.841872900930071, 18.320404647102634 ], [ -64.841873571482608, 18.320320492754377 ], [ -64.841874409673323, 18.320236338406062 ], [ -64.841849934504296, 18.320151848781506 ], [ -64.841808695520911, 18.320081943675461 ], [ -64.841787071509998, 18.320039531225007 ], [ -64.84175086036123, 18.319961914764349 ], [ -64.84170744208194, 18.319884130665514 ], [ -64.841656647724278, 18.319806346566736 ], [ -64.841613061806868, 18.319728730106021 ], [ -64.841577019605893, 18.319650946007243 ], [ -64.84152605761011, 18.319580202710426 ], [ -64.841482640640493, 18.319502418611648 ], [ -64.841446429491725, 18.319424803460663 ], [ -64.841358251827955, 18.319417090796321 ], [ -64.841269738887945, 18.319423293407681 ], [ -64.841181225947878, 18.319436704459179 ], [ -64.841092880646045, 18.319436033906641 ], [ -64.841004536653827, 18.319428154913851 ], [ -64.840916022404087, 18.319448606767423 ], [ -64.840834717904272, 18.319482972586911 ], [ -64.840760621844595, 18.319531587648669 ], [ -64.84067194257608, 18.319559081613988 ], [ -64.840590636766592, 18.319600654563999 ], [ -64.840502123826582, 18.319613897977376 ], [ -64.840413778524692, 18.319606186622764 ], [ -64.840325768499099, 18.319563272567564 ], [ -64.840237590835329, 18.319541310661066 ], [ -64.840149245533439, 18.319540640108471 ], [ -64.840060901541221, 18.319532928753858 ], [ -64.839906337862772, 18.319524546846651 ], [ -64.839803744628341, 18.319467383549238 ], [ -64.839708358524376, 18.319438548478786 ], [ -64.839620013222486, 18.319430669485996 ], [ -64.839531666610924, 18.319429998933401 ], [ -64.839443322618706, 18.319429328380863 ], [ -64.839354808369023, 18.319435530992166 ], [ -64.839266127790836, 18.319470064449831 ], [ -64.839177448522321, 18.319497389467301 ], [ -64.839110728541016, 18.319553046640806 ], [ -64.839022383239126, 18.319545333976521 ], [ -64.838971421243343, 18.319474590679761 ], [ -64.838935377732753, 18.319396975528718 ], [ -64.83889916920333, 18.31931919142994 ], [ -64.838855749614311, 18.319241573659554 ], [ -64.838812332644693, 18.319163789560776 ], [ -64.83878366652209, 18.319079133607715 ], [ -64.838732704526308, 18.319008389001283 ], [ -64.83869649337754, 18.318930772540625 ], [ -64.838653244046043, 18.318845947639716 ], [ -64.838579986177137, 18.3187891196186 ], [ -64.838595241248242, 18.318746705858473 ], [ -64.838610327371498, 18.318704963960613 ], [ -64.83863849057974, 18.318605051626832 ], [ -64.838700685640788, 18.318502289444552 ], [ -64.838730357592283, 18.318412939623443 ], [ -64.838731363421175, 18.318295926889277 ], [ -64.83865994957182, 18.31822652469765 ], [ -64.838558862461298, 18.318232559670832 ], [ -64.838414693657455, 18.318224345401802 ], [ -64.838284943043675, 18.31822333957291 ], [ -64.838140774239832, 18.318208419778102 ], [ -64.838048070346247, 18.31810431649069 ], [ -64.838011525230854, 18.318008762748605 ], [ -64.838005322619495, 18.318003567275809 ], [ -64.8380046520669, 18.318002895413542 ], [ -64.837939608467025, 18.317946736635292 ], [ -64.837962407254622, 18.317862414648857 ], [ -64.837999287646312, 18.317785805326764 ], [ -64.838027283216377, 18.317748254382479 ], [ -64.838050920194689, 18.317738362422347 ], [ -64.838106576058465, 18.317714894391827 ], [ -64.838185867590937, 18.317681700729679 ], [ -64.838237835415555, 18.317614142557602 ], [ -64.838297683542635, 18.317550607701037 ], [ -64.83836926503011, 18.317502161587129 ], [ -64.83844470219492, 18.317461256570311 ], [ -64.83851226036694, 18.317408953469339 ], [ -64.83857596155201, 18.317352963638939 ], [ -64.838639665356368, 18.317296803551017 ], [ -64.838711245534228, 18.317244669397894 ], [ -64.838727841710465, 18.317161688516649 ], [ -64.838728513572732, 18.317078707635346 ], [ -64.838725328447993, 18.316995725444428 ], [ -64.838646706158443, 18.316957337619101 ], [ -64.838559869599862, 18.316956667066506 ], [ -64.838472696455312, 18.316974770676381 ], [ -64.838385693568227, 18.316985333189166 ], [ -64.838298857009647, 18.316992206353063 ], [ -64.838211851503218, 18.317002767556119 ], [ -64.838124848616189, 18.317005783733066 ], [ -64.838038012057552, 18.317005114490144 ], [ -64.837951175498972, 18.316989187556771 ], [ -64.837872553209479, 18.316950798421828 ], [ -64.837793930919929, 18.316916266273836 ], [ -64.837781021473177, 18.316916098635659 ], [ -64.837778005296229, 18.316916098635659 ], [ -64.837774149618895, 18.316916098635659 ], [ -64.837695358381552, 18.316881565177994 ], [ -64.837620759407514, 18.316835632326558 ], [ -64.837550185058547, 18.316786011435909 ], [ -64.837487488392696, 18.316728845519151 ], [ -64.837424790417174, 18.316671682221738 ], [ -64.837358070435869, 18.316618373291931 ], [ -64.837275426140536, 18.316579984156931 ], [ -64.837200827166441, 18.316537739344653 ], [ -64.837122204876891, 18.316503204577316 ], [ -64.837039391633766, 18.316472360468538 ], [ -64.836952721403634, 18.316448891128346 ], [ -64.836870077108358, 18.316421901387173 ], [ -64.836783240549721, 18.316405974453801 ], [ -64.836704618260228, 18.316371442305808 ], [ -64.836621805017046, 18.316344283616843 ], [ -64.836539159412098, 18.316313439508008 ], [ -64.836452490491638, 18.316297681522485 ], [ -64.836365821571178, 18.316270524143135 ], [ -64.836283008328053, 18.316243365454113 ], [ -64.836196507045713, 18.316204977628843 ], [ -64.836105814809855, 18.316192906372805 ], [ -64.836019145889395, 18.316169605980463 ], [ -64.835932309330815, 18.316149992317605 ], [ -64.83586575698763, 18.316096514440005 ], [ -64.83587045085568, 18.316013533558703 ], [ -64.8359380090277, 18.31596139940558 ], [ -64.83600573483784, 18.315909096304665 ], [ -64.836085027679985, 18.315872048274855 ], [ -64.83615660916746, 18.315823599541545 ], [ -64.83623204633227, 18.315779009104915 ], [ -64.836315194851693, 18.315745649114263 ], [ -64.836402366686571, 18.315731232233873 ], [ -64.836481659528658, 18.315698039881397 ], [ -64.836489706159568, 18.31569787224322 ], [ -64.836575033974896, 18.315679432047375 ], [ -64.836665054348543, 18.31568027023809 ], [ -64.836755244979713, 18.315676246922635 ], [ -64.836840572794983, 18.315657805417118 ], [ -64.836925900610311, 18.315629811156782 ], [ -64.837015922293631, 18.315630649347497 ], [ -64.837100914832604, 18.315650430648475 ], [ -64.837186242647931, 18.31563199045263 ], [ -64.837241898511706, 18.31556560443795 ], [ -64.837287496086901, 18.315494191898267 ], [ -64.837372823902172, 18.315471057834372 ], [ -64.837462845585492, 18.315476589893137 ], [ -64.837547670486401, 18.315510620436385 ], [ -64.837622437098617, 18.315554373991972 ], [ -64.83771229114376, 18.3155694614249 ], [ -64.837792757452917, 18.315536604348722 ], [ -64.837882945464685, 18.315527887165217 ], [ -64.837972968457734, 18.31552855640814 ], [ -64.838062990141054, 18.31554364515074 ], [ -64.838147815041907, 18.315572980516265 ], [ -64.838227609488797, 18.315612041513475 ], [ -64.83831746353394, 18.31562712894646 ], [ -64.838402791349267, 18.315603827244445 ], [ -64.838492980670708, 18.31559024855477 ], [ -64.838573448289537, 18.315557559116712 ], [ -64.838658776104808, 18.315529563546647 ], [ -64.838739242413908, 18.315496706470412 ], [ -64.838819707413393, 18.315459155526185 ], [ -64.838909730406385, 18.315469381452942 ], [ -64.838994555307238, 18.315498884456645 ], [ -64.839079380208091, 18.315518667067295 ], [ -64.839164205108943, 18.31554800243282 ], [ -64.839249028700181, 18.31557750805581 ], [ -64.839333853601033, 18.315601983224838 ], [ -64.839354808369023, 18.315614219499707 ], [ -64.839414656496103, 18.315633834472237 ], [ -64.839428904428701, 18.315720000478223 ], [ -64.839428235185778, 18.315805997536415 ], [ -64.839412309562078, 18.31589199721401 ], [ -64.839371573493111, 18.315968104931358 ], [ -64.839365872486553, 18.316054103299223 ], [ -64.839410296594679, 18.3161261863915 ], [ -64.839424547146621, 18.316212352397486 ], [ -64.839453716183641, 18.316293993483271 ], [ -64.839472994570201, 18.316375297983143 ], [ -64.839492271647089, 18.316456770121135 ], [ -64.839541726209234, 18.316528854523028 ], [ -64.839596208606054, 18.316596245056928 ], [ -64.839665778435801, 18.316649552677063 ], [ -64.839735348265606, 18.316702695278366 ], [ -64.839825368639254, 18.316717781401678 ], [ -64.839915391632246, 18.316732870144278 ], [ -64.839995018440959, 18.316766899377853 ], [ -64.840059726764537, 18.316824903485326 ], [ -64.840109181326682, 18.316887432513056 ], [ -64.840163662413829, 18.316954821737284 ], [ -64.840217978482144, 18.317022213580856 ], [ -64.840267430424944, 18.317094296673076 ], [ -64.84030682538878, 18.317171242581196 ], [ -64.84032610377534, 18.317252548390684 ], [ -64.840350412615919, 18.317334020528676 ], [ -64.840384778435407, 18.317410797488947 ], [ -64.840398858729884, 18.317496963494989 ], [ -64.840413107972097, 18.317583298448824 ], [ -64.840412437419502, 18.317669295507017 ], [ -64.84040154094015, 18.317755293874882 ], [ -64.840390813408646, 18.317841293552419 ], [ -64.840395004362222, 18.317927290610612 ], [ -64.840409253604435, 18.318013456616654 ], [ -64.840484018907034, 18.318057211481914 ], [ -64.840578903406197, 18.318067437408672 ], [ -64.840669091417965, 18.318068275599387 ], [ -64.840759114411014, 18.318064252283932 ], [ -64.840844440916612, 18.318040950581917 ], [ -64.840924908535385, 18.318003399637689 ], [ -64.841000344390523, 18.317960985877562 ], [ -64.841080810699623, 18.317928296439504 ], [ -64.84116613851495, 18.317900300869439 ], [ -64.841251467639893, 18.317872306609047 ], [ -64.84132707244288, 18.317829892848977 ], [ -64.841402509607633, 18.317782620202024 ], [ -64.841482974607118, 18.317735512573904 ], [ -64.84155355157543, 18.317683544749229 ], [ -64.841628987430511, 18.317641133608504 ], [ -64.841679781788173, 18.317569887397269 ], [ -64.84171548871285, 18.317493610732072 ], [ -64.841736275842663, 18.317412475180049 ], [ -64.841722026600451, 18.317326309174064 ], [ -64.841797463765261, 18.317283895413937 ], [ -64.841838199834228, 18.317207787696589 ], [ -64.841908775492868, 18.317155821181586 ], [ -64.841969460500991, 18.317094130344628 ], [ -64.842054620678141, 18.317075690148783 ], [ -64.842125197646453, 18.317023722324109 ], [ -64.842190910489194, 18.316966891683649 ], [ -64.842266347654004, 18.316914925168646 ], [ -64.842346813963161, 18.316882068092468 ], [ -64.842436835646481, 18.316882906283183 ], [ -64.842527024967922, 18.316888438341891 ], [ -64.842617046651242, 18.316884413716764 ], [ -64.842707069644291, 18.316899502459421 ], [ -64.842772111934494, 18.316909559438386 ], [ -64.842848890204436, 18.316949123350071 ], [ -64.842918627672304, 18.316998407654694 ], [ -64.842958357912437, 18.317026572172551 ], [ -64.842988197502109, 18.317047694578719 ], [ -64.843051397082377, 18.317106032652816 ], [ -64.843114596662645, 18.317164369417242 ], [ -64.843174611118229, 18.317228742464579 ], [ -64.843237810698497, 18.317287080538676 ], [ -64.843307548166422, 18.317336367462701 ], [ -64.84338365588377, 18.317379616794142 ], [ -64.843437132451697, 18.317447008637714 ], [ -64.843471498271242, 18.317523451631416 ], [ -64.84351860458969, 18.317593859651879 ], [ -64.843559508296835, 18.317667283849289 ], [ -64.843577277940085, 18.317703493688384 ], [ -64.843597059241063, 18.317743726842934 ], [ -64.843637795310087, 18.31781698471184 ], [ -64.843684901628535, 18.317887392732359 ], [ -64.843704682929513, 18.31797272054763 ], [ -64.843708873883145, 18.318058718915495 ], [ -64.84370803569243, 18.318144718593032 ], [ -64.843707197501715, 18.318230884599075 ], [ -64.843721446743928, 18.31831705060506 ], [ -64.843806942197375, 18.31828905372538 ], [ -64.843887240868355, 18.318251502781095 ], [ -64.843967707177455, 18.31821864570486 ], [ -64.844003414102133, 18.318142539297185 ], [ -64.843938873416732, 18.318084536499384 ], [ -64.84386410680446, 18.318040950581917 ], [ -64.843824879478802, 18.317964003364125 ], [ -64.843900316643612, 18.317921758551847 ], [ -64.843990338326932, 18.317936847294504 ], [ -64.844075666142203, 18.317913545592489 ], [ -64.844146074162666, 18.317861576458142 ], [ -64.844174740285325, 18.317836767322547 ], [ -64.844211788315135, 18.317804748437027 ], [ -64.844297116130406, 18.31777675155729 ], [ -64.844382443945733, 18.317753617493452 ], [ -64.844467771761003, 18.317730315791437 ], [ -64.844548070431983, 18.317697626353322 ], [ -64.844623675234971, 18.317650352396697 ], [ -64.844703973905894, 18.317612801452469 ], [ -64.844784440215051, 18.317579944376234 ], [ -64.844860045017981, 18.317532839367459 ], [ -64.844905642593176, 18.317456731650054 ], [ -64.844951407806491, 18.317385316491084 ], [ -64.845007062360594, 18.317318931786019 ], [ -64.845052828883581, 18.317247519246393 ], [ -64.845093564952606, 18.317171411528989 ], [ -64.845134301021574, 18.317095136173464 ], [ -64.845164978801904, 18.317014165640273 ], [ -64.845195824220411, 18.316933196416699 ], [ -64.845221640494572, 18.316852059555004 ], [ -64.845257347419249, 18.316771091641101 ], [ -64.845298083488274, 18.316694982614081 ], [ -64.845333790412951, 18.316618708568228 ], [ -64.845349213122176, 18.316580653399853 ], [ -64.845370000252046, 18.316499516538158 ], [ -64.845395648888086, 18.316418548624313 ], [ -64.845431355812764, 18.316342273268788 ], [ -64.845447281436407, 18.316256273591193 ], [ -64.845433032194194, 18.316170107585208 ], [ -64.845423812096271, 18.316083941579166 ], [ -64.845424482648809, 18.315997944520973 ], [ -64.845425320839581, 18.315911946153108 ], [ -64.845438899529199, 18.315859140137775 ], [ -64.845446107969394, 18.315830809291413 ], [ -64.845486844038419, 18.315754701574065 ], [ -64.845542499902194, 18.31568814923088 ], [ -64.845588265115509, 18.315616903019702 ], [ -64.845633861381032, 18.315545489170347 ], [ -64.845679627904019, 18.315474242959112 ], [ -64.845725393117334, 18.315397967603587 ], [ -64.8457709893828, 18.31532672139241 ], [ -64.845816588267667, 18.315274418291494 ], [ -64.845866041520139, 18.315337114957345 ], [ -64.845905604122095, 18.315394782478904 ], [ -64.845965114353532, 18.315457479144754 ], [ -64.846049940564114, 18.315477260445732 ], [ -64.846140297523732, 18.315463680446385 ], [ -64.84620986735348, 18.315516823047687 ], [ -64.846289495471865, 18.315555715097105 ], [ -64.846374488010895, 18.315580357904309 ], [ -64.846464508384543, 18.315590582521395 ], [ -64.846549334595068, 18.31561053146055 ], [ -64.846639356278388, 18.31562562020315 ], [ -64.846729377961708, 18.315635846129965 ], [ -64.846774975536903, 18.31556443228061 ], [ -64.846775812417945, 18.315478433912745 ], [ -64.84678168106268, 18.315392435544879 ], [ -64.846767430510738, 18.315306269538837 ], [ -64.846758210412816, 18.315220103532852 ], [ -64.84671881544898, 18.315143325262852 ], [ -64.846679420485145, 18.315071240860959 ], [ -64.846674392650471, 18.315071240860959 ], [ -64.846589735387795, 18.315032348811542 ], [ -64.846514967465907, 18.314988595255954 ], [ -64.846500216618892, 18.314959761495174 ], [ -64.84650071953331, 18.314902429249969 ], [ -64.84648110456078, 18.314859178608799 ], [ -64.846461324569475, 18.314825650980026 ], [ -64.84640700850116, 18.314753398939956 ], [ -64.846347498269722, 18.314690869912226 ], [ -64.84626284100699, 18.314647116356639 ], [ -64.846188074394775, 18.314603362801051 ], [ -64.846103249493865, 18.314578887632024 ], [ -64.846013060172425, 18.314587604815529 ], [ -64.845923206127225, 18.314562962008324 ], [ -64.845833184443904, 18.314547874575396 ], [ -64.845742995122407, 18.314556759397021 ], [ -64.845647944294797, 18.314555921206306 ], [ -64.845557922611476, 18.314545695279492 ], [ -64.845508804635244, 18.314537313372341 ], [ -64.845467900928156, 18.314530607846564 ], [ -64.845377879244779, 18.314520214281629 ], [ -64.845293054343927, 18.314495571474481 ], [ -64.845208061804954, 18.314470927357604 ], [ -64.845118040121577, 18.314465396608568 ], [ -64.845028186076433, 18.314450309175584 ], [ -64.844938164393113, 18.314435221742599 ], [ -64.844853171854083, 18.314415440441621 ], [ -64.844822494073753, 18.314408399639603 ], [ -64.844736328067711, 18.314397000245776 ], [ -64.844646138746214, 18.314399850094219 ], [ -64.844556117062893, 18.314395491502466 ], [ -64.844469951056908, 18.314373195629344 ], [ -64.8443876407282, 18.314343858954146 ], [ -64.844301474722158, 18.314325251120181 ], [ -64.84423810750377, 18.314267248322324 ], [ -64.844197539072923, 18.314191643519393 ], [ -64.84413048381532, 18.314137328760751 ], [ -64.844067116596875, 18.314079493601071 ], [ -64.844007605055765, 18.314017970402233 ], [ -64.843978268380567, 18.313938845198265 ], [ -64.843956475421805, 18.31385619959326 ], [ -64.843919595030172, 18.31378059479033 ], [ -64.843867794843675, 18.313712030789418 ], [ -64.843819515058158, 18.313639946387468 ], [ -64.843782802304645, 18.313564341584538 ], [ -64.84376100934594, 18.313481695979533 ], [ -64.843739216387178, 18.313399050374585 ], [ -64.843747765932562, 18.313277177443865 ], [ -64.843774755673735, 18.313198555154315 ], [ -64.843827896965365, 18.313130829344175 ], [ -64.84390718980751, 18.313095625333915 ], [ -64.843993523451672, 18.31308187900612 ], [ -64.844069128254603, 18.313035946154628 ], [ -64.844155461898765, 18.313029575905205 ], [ -64.844241795542928, 18.313037454897938 ], [ -64.844331817226248, 18.31304181348969 ], [ -64.844417983232233, 18.313063941724693 ], [ -64.844504484514573, 18.313053883436055 ], [ -64.844583609718541, 18.313018679425795 ], [ -64.844659046883351, 18.31297274657436 ], [ -64.844734651686281, 18.312930334123962 ], [ -64.844791481017069, 18.312866296352922 ], [ -64.844863230142721, 18.312816675462329 ], [ -64.844920227111686, 18.31275263769129 ], [ -64.844977726995069, 18.312687761729592 ], [ -64.844992982066174, 18.31266278364609 ], [ -64.845031203562996, 18.312587849395754 ], [ -64.845058193304169, 18.312509227106204 ], [ -64.845073951289748, 18.312426749139377 ], [ -64.845082333196956, 18.312344438810669 ], [ -64.845094235505144, 18.312261960843784 ], [ -64.845095072386187, 18.312175962475919 ], [ -64.845095911886574, 18.312089964108054 ], [ -64.845134133383453, 18.312014862219542 ], [ -64.845183586635926, 18.311943616008364 ], [ -64.845221808132749, 18.311868681757971 ], [ -64.845278637463537, 18.311804643986989 ], [ -64.845365138745876, 18.311783856857119 ], [ -64.845455328067317, 18.311781007008676 ], [ -64.845545348440965, 18.311781677561271 ], [ -64.845631851032977, 18.311768098871596 ], [ -64.845707288197787, 18.311725686421141 ], [ -64.845793621841949, 18.311733565413931 ], [ -64.8458759321706, 18.311770110529324 ], [ -64.845954385512357, 18.311810176045753 ], [ -64.846010041376132, 18.311875219645572 ], [ -64.846069554226972, 18.311936575206289 ], [ -64.846136777122695, 18.311991057603109 ], [ -64.84621137609679, 18.312034643520519 ], [ -64.846285975070828, 18.312081917477144 ], [ -64.846356886005765, 18.312132711834806 ], [ -64.84630743144362, 18.312203958045984 ], [ -64.846299218484205, 18.312286436012812 ], [ -64.84631715445596, 18.312368913979697 ], [ -64.84636912359025, 18.312437477980552 ], [ -64.84644757824168, 18.312477711135159 ], [ -64.84652620053123, 18.312517776651532 ], [ -64.84660834322176, 18.312554321766925 ], [ -64.846683108524303, 18.312601428085429 ], [ -64.846757707498398, 18.312645181641017 ], [ -64.846813532310023, 18.312710225240835 ], [ -64.84681722034918, 18.312713745641872 ], [ -64.846808166579763, 18.312796894161295 ], [ -64.846766258353398, 18.312871828411687 ], [ -64.846750500367875, 18.312954138740395 ], [ -64.846723510626703, 18.313032928668065 ], [ -64.84671881544898, 18.31311892703593 ], [ -64.846721834245272, 18.313204925403795 ], [ -64.846732395448328, 18.3132875710088 ], [ -64.846754188407033, 18.313370216613805 ], [ -64.84679106748905, 18.313445821416735 ], [ -64.84682040547392, 18.313524946620703 ], [ -64.846842029484833, 18.313607592225708 ], [ -64.846859968075933, 18.313708175112083 ], [ -64.846877905357303, 18.313790653078968 ], [ -64.846899698316008, 18.313873466322093 ], [ -64.846925345642376, 18.313952423887883 ], [ -64.846920819412503, 18.314038589893926 ], [ -64.846923838208795, 18.314124588261791 ], [ -64.846926688057238, 18.314210754267833 ], [ -64.846914784439321, 18.314293064596484 ], [ -64.846913947558278, 18.314379062964406 ], [ -64.846928195490818, 18.314461708569354 ], [ -64.846961389153023, 18.314526584531109 ], [ -64.846983851354651, 18.314545695279492 ], [ -64.847016877378678, 18.314624820483459 ], [ -64.847053756460696, 18.314700425286446 ], [ -64.8471094136342, 18.314765468886321 ], [ -64.847191722653236, 18.314791285160481 ], [ -64.847277888659221, 18.314813413395484 ], [ -64.847364223613056, 18.314824980427431 ], [ -64.847454245296376, 18.314829339019184 ], [ -64.847544434617873, 18.314826489170741 ], [ -64.847630600623859, 18.314841576603669 ], [ -64.847717100596526, 18.314831518315032 ], [ -64.847803266602511, 18.314839397307821 ], [ -64.847885744569396, 18.314865213581982 ], [ -64.847971910575382, 18.314883821415947 ], [ -64.848058245529216, 18.314877283528347 ], [ -64.848144745501827, 18.314863704838672 ], [ -64.848227558745009, 18.314835709268664 ], [ -64.848276173806767, 18.314861190266527 ], [ -64.848351612281192, 18.314907290756139 ], [ -64.848414810551844, 18.314965293553939 ], [ -64.848485721486725, 18.315016087911602 ], [ -64.848571887492767, 18.315034694435894 ], [ -64.848658222446602, 18.315046095139337 ], [ -64.848744388452587, 18.315053974132127 ], [ -64.84883055445863, 18.315072749604269 ], [ -64.848920742470398, 18.315069898446154 ], [ -64.849010931791895, 18.315070570308364 ], [ -64.849093243430275, 18.315103595022777 ], [ -64.849183097475475, 18.315125723257779 ], [ -64.849258534640285, 18.315083310807324 ], [ -64.849333970495366, 18.315037377955889 ], [ -64.849398343542703, 18.314980548625044 ], [ -64.849473780707456, 18.314938136174646 ], [ -64.849560281989795, 18.314928077886009 ], [ -64.849646615633958, 18.314921707636529 ], [ -64.849732950587793, 18.314940315470494 ], [ -64.849822970961441, 18.314940986023089 ], [ -64.849905282599821, 18.314974009427772 ], [ -64.850002343775486, 18.315028493134264 ], [ -64.850077110387758, 18.315075767090832 ], [ -64.850095719531396, 18.315090351609399 ], [ -64.850151709361796, 18.315119520646419 ], [ -64.850203678496143, 18.315188084647332 ], [ -64.850210382712191, 18.31527056261416 ], [ -64.850220943915303, 18.315353040581044 ], [ -64.850220105724588, 18.31543920658703 ], [ -64.850219435171994, 18.315525204954895 ], [ -64.850203678496143, 18.315607515283602 ], [ -64.850187920510621, 18.31568982561231 ], [ -64.850168305538091, 18.315772135941017 ], [ -64.850171323024654, 18.31585830194706 ], [ -64.850193115983359, 18.315940947552008 ], [ -64.850218596981279, 18.316020071446303 ], [ -64.850248268932773, 18.316070530527668 ], [ -64.850326723584146, 18.316107076952733 ], [ -64.850409033912854, 18.316139934028968 ], [ -64.850491345551234, 18.31617295743365 ], [ -64.850569798892934, 18.316209336220595 ], [ -64.850670884693784, 18.316253257414303 ], [ -64.850757050699826, 18.316264655498401 ], [ -64.850843551982109, 18.31625828655865 ], [ -64.850930053264392, 18.31623749942878 ], [ -64.851020074947712, 18.316238169981318 ], [ -64.851095679750699, 18.316192237129883 ], [ -64.851148821042329, 18.316124511319686 ], [ -64.851198274294802, 18.316053265108508 ], [ -64.851251415586432, 18.31598553929831 ], [ -64.851285949044097, 18.315906917008817 ], [ -64.851331714257412, 18.31583566948791 ], [ -64.851377311832607, 18.315764256948228 ], [ -64.851441684879887, 18.31570742761744 ], [ -64.851524498123013, 18.315682952448412 ], [ -64.851610831767175, 18.315676582198932 ], [ -64.851701021088672, 18.31567373235049 ], [ -64.851791210410113, 18.31566719446289 ], [ -64.85188123209349, 18.315668032653605 ], [ -64.851967565737652, 18.315675911646395 ], [ -64.852053731743638, 18.31569451948036 ], [ -64.852136042072345, 18.315723856155557 ], [ -64.852206953007283, 18.315774650513163 ], [ -64.852274008264885, 18.31583265331102 ], [ -64.852348607238923, 18.315879927267588 ], [ -64.852427229528473, 18.315916303435188 ], [ -64.852513395534515, 18.31593860061804 ], [ -64.852599561540501, 18.31595000001181 ], [ -64.852685895184663, 18.3159578790046 ], [ -64.852772061190706, 18.315965757997333 ], [ -64.852858394834868, 18.315980845430317 ], [ -64.852936849486241, 18.31601739054571 ], [ -64.853019159814949, 18.316050247621945 ], [ -64.853097614466321, 18.316090479466823 ], [ -64.853220828502174, 18.316170276533001 ], [ -64.853152935053856, 18.316198438431513 ], [ -64.853070121810731, 18.316222913600541 ], [ -64.852990996606763, 18.316258117610801 ], [ -64.852919247481111, 18.31630773850145 ], [ -64.852858562472989, 18.316371442305808 ], [ -64.852799386208176, 18.316434977162373 ], [ -64.852752615165969, 18.316506726288026 ], [ -64.852705844123818, 18.316578475413678 ], [ -64.852654882128036, 18.316646033585698 ], [ -64.852591347271471, 18.316705545126808 ], [ -64.852519765783939, 18.316753154359731 ], [ -64.852498475739651, 18.316774947318436 ], [ -64.852468971426333, 18.316794728619413 ], [ -64.852393198985226, 18.316838145589031 ], [ -64.852317258905998, 18.316881565177994 ], [ -64.852249700733978, 18.316937053403706 ], [ -64.852202929691828, 18.317012824535084 ], [ -64.852194380146443, 18.317028751468456 ], [ -64.852143585788838, 18.317076359391649 ], [ -64.852071836663185, 18.317127825611578 ], [ -64.85202104230558, 18.317195551421719 ], [ -64.851978294578828, 18.317271156224649 ], [ -64.851948287351092, 18.317317424352439 ], [ -64.851931523536678, 18.317342905350301 ], [ -64.85187653822544, 18.317410463522322 ], [ -64.851833790498688, 18.317486234653757 ], [ -64.851791210410113, 18.317562008404536 ], [ -64.851757012228745, 18.317641802851369 ], [ -64.851751983084455, 18.317725789561507 ], [ -64.851742930624653, 18.317809945219494 ], [ -64.851742092433938, 18.31789393061996 ], [ -64.85174980378855, 18.317978086277947 ], [ -64.851715437969062, 18.31805788072478 ], [ -64.851744104091665, 18.318138348343609 ], [ -64.851802274527643, 18.318202887719337 ], [ -64.85188156736973, 18.318243457459857 ], [ -64.851965218803628, 18.31826826659551 ], [ -64.852053061191043, 18.318276983779015 ], [ -64.852124307402278, 18.318293579955252 ], [ -64.852161523070208, 18.318349906371623 ], [ -64.852164875833125, 18.318354601549345 ], [ -64.852195888889753, 18.318398018518963 ], [ -64.852256070983458, 18.318462894480717 ], [ -64.852309379913265, 18.318534309639688 ], [ -64.852383308334765, 18.31858007354333 ], [ -64.852457069118088, 18.318632209006125 ], [ -64.852530829901468, 18.31868434446892 ], [ -64.852618337012643, 18.318710832605348 ], [ -64.852706011761938, 18.31872457762347 ], [ -64.852793518873113, 18.318751064450225 ], [ -64.852874152820391, 18.31878392152646 ], [ -64.852954786767668, 18.318823316490295 ], [ -64.853036091267484, 18.318791632881073 ], [ -64.853123933654956, 18.318779562934708 ], [ -64.853211943680549, 18.318760956410415 ], [ -64.853273299241266, 18.318690548389895 ], [ -64.853347898215304, 18.31863958639417 ], [ -64.853422664827519, 18.318588624398387 ], [ -64.853510507214992, 18.318570016564365 ], [ -64.853598349602464, 18.318570685807288 ], [ -64.853672110385844, 18.318616452330275 ], [ -64.853746038807344, 18.31866221754359 ], [ -64.853819799590667, 18.318714351696713 ], [ -64.853907139063722, 18.318747376411068 ], [ -64.853981067485222, 18.318792973986206 ], [ -64.854034376414972, 18.318864387835561 ], [ -64.854067401129385, 18.318942005605891 ], [ -64.854093720317962, 18.319025991006413 ], [ -64.85414032241232, 18.319097404855711 ], [ -64.854186927126023, 18.319168651066946 ], [ -64.854247109219727, 18.319233694666821 ], [ -64.854320870003107, 18.319279293551631 ], [ -64.854401671588505, 18.319312316956314 ], [ -64.8544893463378, 18.319312987508908 ], [ -64.854577021087152, 18.319313658061503 ], [ -64.854664694526775, 18.319320866501698 ], [ -64.854739462448663, 18.319276274755396 ], [ -64.854827303526463, 18.319264204809031 ], [ -64.854914979585431, 18.319277783498706 ], [ -64.855002485386933, 18.319291363497996 ], [ -64.855090161445901, 18.319298570628519 ], [ -64.855150343539606, 18.319363615538066 ], [ -64.855196946943636, 18.319434860439628 ], [ -64.855236843512216, 18.319512476900286 ], [ -64.855290152442024, 18.319583890749641 ], [ -64.855377659553199, 18.319610377576396 ], [ -64.855465335612166, 18.319623957575686 ], [ -64.855553177999639, 18.319598979492241 ], [ -64.855614701198476, 18.319528571471778 ], [ -64.855649067018021, 18.319451456615866 ], [ -64.855710422578738, 18.319387418844826 ], [ -64.855785021552776, 18.319342994736701 ], [ -64.855866326052649, 18.319304940877998 ], [ -64.855947630552464, 18.319273424906953 ], [ -64.856035471630264, 18.319274095459491 ], [ -64.856123146379559, 18.319274766012086 ], [ -64.856190201637162, 18.319333439362481 ], [ -64.856257090566316, 18.319391945074756 ], [ -64.856303692660674, 18.319463358924111 ], [ -64.856363874754379, 18.319528234885809 ], [ -64.85645138317517, 18.319548351463084 ], [ -64.856539225562642, 18.319549022015678 ], [ -64.856626731364145, 18.319562600705353 ], [ -64.856714407423112, 18.319582718592301 ], [ -64.856802080862792, 18.319589925722823 ], [ -64.85688992455988, 18.319584226025881 ], [ -64.856977599309232, 18.319578358690876 ], [ -64.857065272748855, 18.319585567131071 ], [ -64.85715294749815, 18.319599145820746 ], [ -64.857193515928998, 18.319593110847563 ], [ -64.857246155615883, 18.319599984011461 ], [ -64.857333830365235, 18.319607192451656 ], [ -64.857421671442978, 18.319594954867114 ], [ -64.857509347502003, 18.319595625419709 ], [ -64.857597188579746, 18.319596463610424 ], [ -64.857685030967218, 18.319577855776458 ], [ -64.857759629941313, 18.319533264030156 ], [ -64.857841103388978, 18.319495211481126 ], [ -64.857888878950348, 18.319424803460663 ], [ -64.857963645562563, 18.319373841464881 ], [ -64.858011591381398, 18.319303264496568 ], [ -64.858066241416338, 18.319232856476106 ], [ -64.858114016977709, 18.319162280817466 ], [ -64.858188615951804, 18.319117689071163 ], [ -64.858270088089796, 18.319079802850638 ], [ -64.858357930477212, 18.319061195016616 ], [ -64.858291042857786, 18.319002521666221 ], [ -64.858203535746611, 18.318969664589986 ], [ -64.858129774963231, 18.318923899376671 ], [ -64.858062719705629, 18.318865226026276 ], [ -64.858022989465496, 18.318787609565618 ], [ -64.857989798422693, 18.318709994414633 ], [ -64.857990636613408, 18.318626175342615 ], [ -64.858004884545949, 18.318542522599103 ], [ -64.858005556408216, 18.318458703527085 ], [ -64.857999687763481, 18.318374884455068 ], [ -64.858013937005751, 18.318291065383107 ], [ -64.858075292566468, 18.318227196559917 ], [ -64.858163134953884, 18.318208587416223 ], [ -64.858231196040379, 18.31815108753284 ], [ -64.858285344470573, 18.31813868361985 ], [ -64.858366480022596, 18.318107167648805 ], [ -64.858454154771891, 18.318120746338479 ], [ -64.858548367408844, 18.318147231855562 ], [ -64.858636042158139, 18.31816081054518 ], [ -64.858723716907434, 18.318161648735952 ], [ -64.858811726933027, 18.318136504324002 ], [ -64.858886493545242, 18.318092078906147 ], [ -64.858961092519337, 18.318047488469517 ], [ -64.859048768578305, 18.31804815771244 ], [ -64.859108949362337, 18.318113202621987 ], [ -64.859189750947735, 18.31814605838855 ], [ -64.85927759464488, 18.318133988442185 ], [ -64.85934448095469, 18.318192495464075 ], [ -64.85937197361028, 18.318229206907972 ], [ -64.859377338030868, 18.318236415348167 ], [ -64.85939778988444, 18.31826390931343 ], [ -64.859444394598142, 18.318341524464415 ], [ -64.85948429116678, 18.31841930856325 ], [ -64.85950373719146, 18.31850329658306 ], [ -64.85955034059549, 18.318574541484622 ], [ -64.859617228214972, 18.318633048506513 ], [ -64.85969786216225, 18.318672443470348 ], [ -64.859785369273368, 18.31869892898743 ], [ -64.85987321166084, 18.318686691402945 ], [ -64.859961054048313, 18.31868752959366 ], [ -64.860048896435785, 18.318668921759695 ], [ -64.860136738823201, 18.318663223372425 ], [ -64.860224748848793, 18.31863807765086 ], [ -64.860312423598145, 18.318638746893726 ], [ -64.860393225183543, 18.318671771608138 ], [ -64.860429099746341, 18.318710496019378 ], [ -64.860436978739131, 18.318719045564706 ], [ -64.860453407277248, 18.318736647569835 ], [ -64.860479558827706, 18.318820635589645 ], [ -64.860512583542061, 18.318898250740688 ], [ -64.860566060109988, 18.318969664589986 ], [ -64.860639820893368, 18.319021800052781 ], [ -64.860713581676748, 18.319074104463368 ], [ -64.860801256426043, 18.319074773706291 ], [ -64.860869317512481, 18.319017273822908 ], [ -64.860957159899954, 18.318998665988943 ], [ -64.861037961485351, 18.319031523065121 ], [ -64.861125468596526, 18.319045101754796 ], [ -64.861186824157244, 18.318981231621933 ], [ -64.861228063140629, 18.318904119385365 ], [ -64.861249017908676, 18.318820466641853 ], [ -64.861256561625112, 18.318736816517685 ], [ -64.861270810867381, 18.318653163774115 ], [ -64.861278354583874, 18.318569344702155 ], [ -64.861285898300309, 18.31848569457793 ], [ -64.861293274378681, 18.31840187550597 ], [ -64.861334513362124, 18.31832492959785 ], [ -64.861382457871287, 18.318254352629538 ], [ -64.861437107906227, 18.318183778280627 ], [ -64.861505001354544, 18.318126444725692 ], [ -64.861539534812209, 18.318049332489124 ], [ -64.861587311683252, 18.317978755520812 ], [ -64.861641961718192, 18.317908347500349 ], [ -64.861751094149952, 18.317786809845927 ], [ -64.861758637866444, 18.317702990773967 ], [ -64.861759308418982, 18.317619171701949 ], [ -64.861739862394302, 18.317535186301484 ], [ -64.861727121895342, 18.317451367229467 ], [ -64.861814796644637, 18.317452036472389 ], [ -64.861902471393989, 18.317465616471736 ], [ -64.861990481419582, 18.317440638388234 ], [ -64.862078156168877, 18.317447679190309 ], [ -64.862165830918173, 18.317448517381024 ], [ -64.862253673305645, 18.317449186623946 ], [ -64.86234118041682, 18.317469304510894 ], [ -64.862421814364097, 18.317502161587129 ], [ -64.862502615949495, 18.317535017353634 ], [ -64.862590289389118, 18.317542225793829 ], [ -64.862677965448086, 18.317549435543697 ], [ -64.862765640197438, 18.317556476345771 ], [ -64.862853314946733, 18.317557314536487 ], [ -64.862941157334205, 18.317551447201424 ], [ -64.863028998411949, 18.317545747504539 ], [ -64.863116842109093, 18.317533677558174 ], [ -64.863204515548716, 18.317534346801096 ], [ -64.863292023969564, 18.317560833627851 ], [ -64.863338627373594, 18.317632079839029 ], [ -64.863371818416454, 18.317709697609359 ], [ -64.863384560225086, 18.317793684319497 ], [ -64.863410710465871, 18.317877669719962 ], [ -64.863437030964121, 18.317961656430157 ], [ -64.863456476988858, 18.318045644449967 ], [ -64.863482796177436, 18.318129629850432 ], [ -64.863515819582176, 18.318207415258883 ], [ -64.863596453529397, 18.318246642584597 ], [ -64.863677759338941, 18.318215126613552 ], [ -64.863732409373881, 18.318144718593032 ], [ -64.863773479409474, 18.31806760373712 ], [ -64.863814718392916, 18.317990657829057 ], [ -64.863869368427856, 18.317920083480089 ], [ -64.863943967401951, 18.317869121484307 ], [ -64.863991913220787, 18.317798713463844 ], [ -64.864033152204229, 18.317721598607932 ], [ -64.864067518023717, 18.317644486371364 ], [ -64.864061483050534, 18.317560667299347 ], [ -64.864068522542937, 18.317535017353634 ], [ -64.864102722033977, 18.317483721391284 ], [ -64.864150666543139, 18.317413144422972 ], [ -64.864212022103857, 18.317349106651932 ], [ -64.864239347121327, 18.317310717516989 ], [ -64.864326351318084, 18.317228911412371 ], [ -64.864374294517575, 18.317158334444059 ], [ -64.864449062439462, 18.317107372448334 ], [ -64.864523661413557, 18.317062949649824 ], [ -64.8645984267161, 18.317011987654041 ], [ -64.86466632147409, 18.316954486460986 ], [ -64.864707560457532, 18.316877540552866 ], [ -64.864748799440918, 18.316800428316299 ], [ -64.864769754208965, 18.316716775572786 ], [ -64.864797582140852, 18.316633293086738 ], [ -64.864811831383065, 18.316549474014778 ], [ -64.864785512194487, 18.316465487304583 ], [ -64.864806465652805, 18.316381834561071 ], [ -64.864841000420142, 18.316304722324503 ], [ -64.864875366239687, 18.31622777641644 ], [ -64.86488290864645, 18.316143957344423 ], [ -64.864890452362943, 18.31606030460091 ], [ -64.86496505264671, 18.31601571416428 ], [ -64.865012997155873, 18.31594513850564 ], [ -64.86504065744964, 18.315861653400248 ], [ -64.86509530748458, 18.31579107905128 ], [ -64.865143250684127, 18.315720671030817 ], [ -64.865224556493615, 18.315682617172115 ], [ -64.865298317276995, 18.31573475263491 ], [ -64.865372076750646, 18.315780516538553 ], [ -64.865382136348956, 18.31580381955024 ], [ -64.865383477454145, 18.3158071723131 ], [ -64.86540527041285, 18.315858134308883 ], [ -64.865451704869088, 18.315935918407718 ], [ -64.865437455626818, 18.316019568531885 ], [ -64.865423206384605, 18.316103221275398 ], [ -64.865408958452008, 18.316187040347415 ], [ -64.865401413425843, 18.316270690471583 ], [ -64.865448016829873, 18.31634193799249 ], [ -64.865481210492078, 18.316419554453148 ], [ -64.865514233896761, 18.316497338551983 ], [ -64.86553368123117, 18.316581157623943 ], [ -64.865586988851248, 18.316652571473298 ], [ -64.865647172254626, 18.316717615073173 ], [ -64.865714227512228, 18.316776119475776 ], [ -64.865781113822038, 18.316834626497666 ], [ -64.865855043553211, 18.316880390401309 ], [ -64.865928804336534, 18.316932527173776 ], [ -64.865995690646344, 18.316991200524171 ], [ -64.866062745903946, 18.317049706236446 ], [ -64.866122929307323, 18.317114748526649 ], [ -64.866164000652589, 18.317150289122822 ], [ -64.866147235528501, 18.317279370493736 ], [ -64.866095101375436, 18.317443488236677 ], [ -64.866043802793683, 18.317510709822784 ], [ -64.865972556582449, 18.317558655641619 ], [ -64.865901142733151, 18.317615986577209 ], [ -64.865819670595158, 18.317654040435912 ], [ -64.865768374632751, 18.317721432279427 ], [ -64.865727303287485, 18.317798376877874 ], [ -64.865726463787098, 18.317885548712752 ], [ -64.865725625596383, 18.317972554219182 ], [ -64.865729313635541, 18.318005746571657 ], [ -64.865710370525278, 18.318087049761857 ], [ -64.865723278662358, 18.318169695366862 ], [ -64.865714393840733, 18.318267260766618 ], [ -64.865671647423653, 18.318343034517397 ], [ -64.865616494474295, 18.318407741531303 ], [ -64.865534350474036, 18.318437413482798 ], [ -64.865452207783505, 18.318467085434293 ], [ -64.86541968729324, 18.31854503848092 ], [ -64.8654099642809, 18.318627516447748 ], [ -64.865359337561415, 18.318696583363078 ], [ -64.865280715271865, 18.318736647569835 ], [ -64.865280212357447, 18.318736982846133 ], [ -64.865208463231795, 18.318782246454703 ], [ -64.86512196063984, 18.318790125447435 ], [ -64.865039819258925, 18.318819963727435 ], [ -64.86495331666697, 18.31884527839685 ], [ -64.864871175286055, 18.318874949038673 ], [ -64.864784506365595, 18.318908979581863 ], [ -64.864702362365392, 18.318938651533358 ], [ -64.864615862392725, 18.31894669947394 ], [ -64.864524833570897, 18.31895457846673 ], [ -64.864424753598939, 18.318966814741543 ], [ -64.864338084678479, 18.318987938457383 ], [ -64.864255943297564, 18.319021967690958 ], [ -64.864182853066779, 18.319069074009406 ], [ -64.864136752577224, 18.319142499516488 ], [ -64.864054608576964, 18.319176697697856 ], [ -64.864012365074359, 18.31918541488136 ], [ -64.863972467196106, 18.319206202011173 ], [ -64.863901053346751, 18.319253978882216 ], [ -64.863829639497396, 18.319321035449491 ], [ -64.863758225648041, 18.319378534023201 ], [ -64.863656636932774, 18.319406698541059 ], [ -64.863565274144321, 18.319425305065408 ], [ -64.863483969644449, 18.319453635911714 ], [ -64.863402665144633, 18.319481966758076 ], [ -64.863321360644761, 18.319510466552231 ], [ -64.863240222473394, 18.319538796088864 ], [ -64.863168809933768, 18.319586572959906 ], [ -64.863107454373051, 18.319653795855686 ], [ -64.863116842109093, 18.319740967690564 ], [ -64.863187250129556, 18.319789918028619 ], [ -64.863267716438713, 18.319848591379014 ], [ -64.863317840243781, 18.319916652465452 ], [ -64.863367461134374, 18.320023437963187 ], [ -64.863376847560801, 18.320110609798064 ], [ -64.863406519512239, 18.320188227568394 ], [ -64.863415573281713, 18.320314122504897 ], [ -64.863414735090998, 18.320401126701597 ], [ -64.863413896900283, 18.320488298536475 ], [ -64.863413057399896, 18.320594581119792 ], [ -64.863463013566786, 18.320662809844407 ], [ -64.863523029332043, 18.320740593943242 ], [ -64.863542642994844, 18.32082793341624 ], [ -64.863582373234976, 18.320905549876898 ], [ -64.863619253626666, 18.320963385036578 ], [ -64.863681615016219, 18.3210044563819 ], [ -64.863747998411611, 18.321048209937487 ], [ -64.863915973141559, 18.32112180308269 ], [ -64.864054105662547, 18.321153486691912 ], [ -64.864152844529372, 18.32115415724445 ], [ -64.864231300490417, 18.32117159161146 ], [ -64.864332889205684, 18.321180644071205 ], [ -64.864419893402442, 18.321206460345422 ], [ -64.864535731359922, 18.321243340737055 ], [ -64.864625585405122, 18.321283070977188 ], [ -64.864674534433505, 18.321327830361668 ], [ -64.864726168291497, 18.321403267526478 ], [ -64.864737398737475, 18.321450541483046 ], [ -64.864727843363255, 18.321489265894343 ], [ -64.8647013565365, 18.32151692618811 ], [ -64.864692305386427, 18.321564032506558 ], [ -64.864665818559672, 18.321583143254941 ], [ -64.864625082490647, 18.321599571793058 ], [ -64.864591553552202, 18.321638128566178 ], [ -64.864541597385312, 18.321704345633066 ], [ -64.864515110558557, 18.321734688137155 ], [ -64.864427603447382, 18.3217755918443 ], [ -64.864351663368154, 18.321813813341123 ], [ -64.864322326692957, 18.321841305996713 ], [ -64.864272204197562, 18.321921437029573 ], [ -64.864236663601332, 18.321984971886138 ], [ -64.864177991560609, 18.322042807045818 ], [ -64.864116468361772, 18.322109024112706 ], [ -64.864083777614042, 18.322178091028036 ], [ -64.864062487569754, 18.322280685572139 ], [ -64.864023932106306, 18.322372048360648 ], [ -64.863990738444102, 18.322516049526314 ], [ -64.863986716438319, 18.322624343767359 ], [ -64.864000127489817, 18.322765997999056 ], [ -64.864011022659554, 18.322843782097834 ], [ -64.864033318532677, 18.322941179859527 ], [ -64.864064668175274, 18.323016449386159 ], [ -64.864130717604041, 18.323100268458177 ], [ -64.864185198691132, 18.323195151647667 ], [ -64.864211182603469, 18.323217615158967 ], [ -64.864256949126457, 18.323284502778449 ], [ -64.864294163484715, 18.323348708187552 ], [ -64.864299529215032, 18.323409896110149 ], [ -64.864312940266529, 18.323529254468667 ], [ -64.864326854232502, 18.323596142088093 ], [ -64.864352335230365, 18.323674093825105 ], [ -64.86441251732407, 18.323780041132068 ], [ -64.864461132385827, 18.323872074473115 ], [ -64.864489463232189, 18.323952708420393 ], [ -64.864501868454852, 18.324022445888318 ], [ -64.86453405366882, 18.324080951600592 ], [ -64.864552830450634, 18.32411850254482 ], [ -64.864541263418687, 18.324172145441253 ], [ -64.864539753365705, 18.324202153978661 ], [ -64.864548136582584, 18.32427423838061 ], [ -64.864556518489792, 18.324346321472831 ], [ -64.86456037416707, 18.324416226578876 ], [ -64.864565403311417, 18.324487137513813 ], [ -64.864562384515125, 18.324604653162396 ], [ -64.864571438284599, 18.324685956352596 ], [ -64.864588872651552, 18.324757036235326 ], [ -64.864605133551549, 18.324817385967151 ], [ -64.864619215155642, 18.324881926652608 ], [ -64.864633464397855, 18.324930540404694 ], [ -64.864641846305062, 18.324988544512166 ], [ -64.864645031429802, 18.325015534253339 ], [ -64.86464352137682, 18.325049900072884 ], [ -64.864647713640124, 18.325090636141852 ], [ -64.864667662579222, 18.325129528191269 ], [ -64.864690796643117, 18.325176968476342 ], [ -64.86470957211526, 18.325211503243679 ], [ -64.864748630493125, 18.325246370667969 ], [ -64.864777799530202, 18.325264812173486 ], [ -64.864803449475914, 18.325289790256932 ], [ -64.86481099319235, 18.325318790346216 ], [ -64.864825408763068, 18.325351144507977 ], [ -64.864838484538325, 18.325395402287654 ], [ -64.864843850268585, 18.325429768107199 ], [ -64.864851392675405, 18.325460947492274 ], [ -64.864848879412932, 18.325485759247272 ], [ -64.864846532478907, 18.325507215620064 ], [ -64.864832449565142, 18.325560693497664 ], [ -64.864799426160459, 18.325620706643519 ], [ -64.86475617551929, 18.325662282212932 ], [ -64.864708566286367, 18.325710225412422 ], [ -64.86469800377364, 18.325747776356707 ], [ -64.864702866589482, 18.325836961158984 ], [ -64.864701190208052, 18.325898147771852 ], [ -64.864697334530717, 18.325962688457309 ], [ -64.864691130609742, 18.32602270422251 ], [ -64.86468844839942, 18.326064612448818 ], [ -64.864671350618437, 18.326100991235762 ], [ -64.864648384192662, 18.326140721475895 ], [ -64.864614353649472, 18.326179110610894 ], [ -64.864583674559412, 18.326205597437649 ], [ -64.8645620505485, 18.326234431198372 ], [ -64.864530365629662, 18.3262503555124 ], [ -64.864484097501872, 18.32627147922824 ], [ -64.864449062439462, 18.32629595439721 ], [ -64.864411511495234, 18.326330989459677 ], [ -64.86434462256608, 18.326385305527992 ], [ -64.864299361576855, 18.326426878478003 ], [ -64.864210010446129, 18.326471302586185 ], [ -64.864155694377814, 18.32650952539268 ], [ -64.864110264440797, 18.326555290605995 ], [ -64.864072713496512, 18.32659904285191 ], [ -64.864036337328969, 18.326635421638855 ], [ -64.864002305476049, 18.326666265747633 ], [ -64.863976155235264, 18.326707338402628 ], [ -64.863941789415719, 18.32675042140562 ], [ -64.863909938168376, 18.326807249426793 ], [ -64.863881438374221, 18.32684346057556 ], [ -64.863819747537207, 18.326927279647521 ], [ -64.863769960318109, 18.32697371541343 ], [ -64.863723355604407, 18.326985113497528 ], [ -64.863669042155436, 18.326995005457718 ], [ -64.863614727396794, 18.326997518720191 ], [ -64.863563596453218, 18.327004559522265 ], [ -64.863471564421786, 18.32706155649123 ], [ -64.863427809556526, 18.327100783816888 ], [ -64.863412220518853, 18.327120229841626 ], [ -64.863401156401324, 18.327140850642991 ], [ -64.863396294895153, 18.327167503798194 ], [ -64.863403838611646, 18.327192649519816 ], [ -64.863411549966258, 18.327235229608391 ], [ -64.863393780323008, 18.327278481559233 ], [ -64.863387073487559, 18.327319720542619 ], [ -64.863391264441134, 18.327376045649373 ], [ -64.863392271579698, 18.327432373375416 ], [ -64.863393611375159, 18.327467743714124 ], [ -64.863408700117816, 18.327506469435036 ], [ -64.863419428959048, 18.327527256564906 ], [ -64.863431666543534, 18.327533291538089 ], [ -64.863451949449313, 18.327515689532959 ], [ -64.863483299091911, 18.327480485522756 ], [ -64.863500733458864, 18.327431701513149 ], [ -64.863510456471204, 18.327388953786453 ], [ -64.863536943297959, 18.327336315409241 ], [ -64.863570638564909, 18.327247299554756 ], [ -64.863586564188608, 18.327204551828061 ], [ -64.863602322174131, 18.327175047514686 ], [ -64.863645740453421, 18.327162139377606 ], [ -64.863741963438429, 18.327143700491433 ], [ -64.863844391654084, 18.327135652550851 ], [ -64.863889151038506, 18.327144872648773 ], [ -64.863931060574487, 18.327151076569805 ], [ -64.863991576634817, 18.327141184609616 ], [ -64.864018063461572, 18.327116375473963 ], [ -64.864043210492866, 18.327085362417336 ], [ -64.864074557516119, 18.32704278232876 ], [ -64.864087299324694, 18.327000034602065 ], [ -64.864095513593782, 18.326940858337196 ], [ -64.864095847560407, 18.326911186385701 ], [ -64.864190061506974, 18.326815800281793 ], [ -64.864275724598599, 18.326744720399063 ], [ -64.86435635854582, 18.326680347351783 ], [ -64.864456941432252, 18.326567694518985 ], [ -64.864561212357785, 18.32648991042015 ], [ -64.86466900237474, 18.326469627514427 ], [ -64.864807305153192, 18.32646392650787 ], [ -64.864882742318002, 18.326445990536115 ], [ -64.86495365325294, 18.326402404618705 ], [ -64.864992880578598, 18.326347082721497 ], [ -64.86500830328788, 18.3262568934 ], [ -64.86498936017756, 18.326196377339727 ], [ -64.86498248570399, 18.326154635441867 ], [ -64.864970752343595, 18.326103504498235 ], [ -64.864979134250802, 18.326032593563355 ], [ -64.864984163395093, 18.325973586246334 ], [ -64.86501333243217, 18.325859927584702 ], [ -64.86503244318061, 18.325733193147812 ], [ -64.86502774931256, 18.325627916393387 ], [ -64.865012157655485, 18.325484919746884 ], [ -64.86500696218269, 18.325433288508236 ], [ -64.864989526506065, 18.325373944605246 ], [ -64.864975278573468, 18.325322312056869 ], [ -64.864967902495152, 18.325269506041536 ], [ -64.864966058475545, 18.325224411380816 ], [ -64.86495650179171, 18.325165235115946 ], [ -64.864947784608205, 18.325121146284062 ], [ -64.864948456470472, 18.325060964190413 ], [ -64.864936554162227, 18.324996423504956 ], [ -64.864917274465995, 18.324886620520601 ], [ -64.86491224663132, 18.324822078525528 ], [ -64.864911073164308, 18.324710265193119 ], [ -64.864917274465995, 18.324637342600511 ], [ -64.86493135737976, 18.324569615480641 ], [ -64.864942086220992, 18.324505242433361 ], [ -64.864952813752495, 18.324452773003941 ], [ -64.86495868239723, 18.324409857639068 ], [ -64.864968236461777, 18.324360404386596 ], [ -64.864991370525615, 18.324289661089836 ], [ -64.865024899464117, 18.3241922633282 ], [ -64.865040154535222, 18.324121352393263 ], [ -64.865137887573155, 18.323939465007015 ], [ -64.865146603446988, 18.323802672281545 ], [ -64.865162027465885, 18.323700076427713 ], [ -64.865189017207115, 18.32360586510049 ], [ -64.86523628985401, 18.323520202008865 ], [ -64.865292113355963, 18.323459517000742 ], [ -64.86533620349752, 18.32339883199262 ], [ -64.865421194726878, 18.323324568294822 ], [ -64.865468302354998, 18.323258351227935 ], [ -64.865524459823575, 18.323147710052922 ], [ -64.865554299413191, 18.323073111078827 ], [ -64.86557508654306, 18.323020472701614 ], [ -64.865627892558393, 18.322968169600699 ], [ -64.865718752432429, 18.322893905902902 ], [ -64.865856049382046, 18.322814613060814 ], [ -64.865996193560761, 18.322749066546464 ], [ -64.866089232730701, 18.322741522830029 ], [ -64.866161987685189, 18.322739343534124 ], [ -64.866275646346821, 18.322693075406391 ], [ -64.866333984420919, 18.322671282447686 ], [ -64.866397854553782, 18.322680167269311 ], [ -64.866453176450989, 18.322674970486844 ], [ -64.866528947582424, 18.322659044863144 ], [ -64.866584435808079, 18.322620655728201 ], [ -64.866645959006917, 18.322582266593201 ], [ -64.866680995378999, 18.322551924089169 ], [ -64.866707649843931, 18.322507835257284 ], [ -64.866740004005692, 18.322460896576956 ], [ -64.866781242989134, 18.322408425837864 ], [ -64.866836563576669, 18.322386632879159 ], [ -64.866891885473819, 18.322373221827661 ], [ -64.866959107059927, 18.322348746658633 ], [ -64.867011577798962, 18.322326953699871 ], [ -64.867052481506107, 18.322305160741166 ], [ -64.867142670827604, 18.322283703058758 ], [ -64.867224310603717, 18.322262077738174 ], [ -64.867294215709762, 18.322240452417589 ], [ -64.867361438605485, 18.322215977248561 ], [ -64.86749219635783, 18.322222682774338 ], [ -64.86755019915563, 18.322223185688756 ], [ -64.867652123147195, 18.322207260065056 ], [ -64.867745329955255, 18.322191334441413 ], [ -64.867849936157143, 18.322186640573364 ], [ -64.867963427180598, 18.322179264495048 ], [ -64.868042049470148, 18.322166021081671 ], [ -64.868106422517428, 18.322111035770433 ], [ -64.868162246019381, 18.322058732669518 ], [ -64.868232318763603, 18.322014979113931 ], [ -64.868285124778936, 18.321970890282046 ], [ -64.868358382647898, 18.321893776735806 ], [ -64.868431808154924, 18.321816663189566 ], [ -64.868493498991938, 18.321753295971121 ], [ -64.868514286121808, 18.321686911266113 ], [ -64.868508921701164, 18.321639637309488 ], [ -64.868483273065181, 18.321583813807536 ], [ -64.868460641915703, 18.321514243977788 ], [ -64.868423426247773, 18.321458420475835 ], [ -64.868371626061275, 18.321385833159468 ], [ -64.868322843361341, 18.3213160956916 ], [ -64.868250926597568, 18.321246022947378 ], [ -64.868190409227566, 18.321181649900097 ], [ -64.868080270966971, 18.3211363876012 ], [ -64.86799326677027, 18.321113421175482 ], [ -64.867941298945595, 18.321085257967297 ], [ -64.867880613937473, 18.321045863003462 ], [ -64.867831663599418, 18.320992721711775 ], [ -64.867727895588303, 18.320907729172802 ], [ -64.867669892790445, 18.320872022248125 ], [ -64.86763368295135, 18.320857940644032 ], [ -64.867603340447317, 18.320843691401762 ], [ -64.8675775241731, 18.32081351653585 ], [ -64.867574339048417, 18.320783509308058 ], [ -64.867575178548805, 18.32069633747318 ], [ -64.86757584779167, 18.320609333276479 ], [ -64.867566627693748, 18.320522161441602 ], [ -64.867567299556015, 18.320435157244845 ], [ -64.867578194725695, 18.320348153048144 ], [ -64.86757903291641, 18.320261148851387 ], [ -64.867589929395763, 18.320174144654629 ], [ -64.867621110090568, 18.320097031108389 ], [ -64.867652123147195, 18.320019917562149 ], [ -64.867703420419275, 18.319952527028249 ], [ -64.867774666630453, 18.319904750157264 ], [ -64.867846080479808, 18.319856974595893 ], [ -64.86793727563014, 18.319838365452199 ], [ -64.868018580130013, 18.319810034605894 ], [ -64.868109942918466, 18.319791426771872 ], [ -64.868201138068798, 18.319792098634139 ], [ -64.868292333219131, 18.319792935515181 ], [ -64.868383528369463, 18.319783883055436 ], [ -64.868474723519796, 18.319784722555823 ], [ -64.868565751032008, 18.319795114811086 ], [ -64.868647055531824, 18.319766783964724 ], [ -64.868718301743058, 18.319719007093681 ], [ -64.868789715592413, 18.319671231532311 ], [ -64.868810670360403, 18.319584226025881 ], [ -64.868851909343789, 18.319507280117818 ], [ -64.868893148327231, 18.319430166571578 ], [ -64.868924161383859, 18.319353053025338 ], [ -64.868935057863212, 18.319266048828581 ], [ -64.868956180269379, 18.319179213579673 ], [ -64.868987193326006, 18.319102098723761 ], [ -64.869058607175361, 18.319054321852718 ], [ -64.869109736809264, 18.318986932628491 ], [ -64.869181150658619, 18.318939154447776 ], [ -64.869262622796612, 18.318891377576733 ], [ -64.869354153223242, 18.31884376965354 ], [ -64.869435457723057, 18.318805883433015 ], [ -64.869518270966239, 18.318777886553278 ], [ -64.869601084209364, 18.318749890983213 ], [ -64.869691441168982, 18.318729103853343 ], [ -64.869774254412107, 18.318701109593007 ], [ -64.869864443733547, 18.31868752959366 ], [ -64.869954800693165, 18.31866674246379 ], [ -64.870044822376542, 18.318667414326057 ], [ -64.870142387776355, 18.318675292009118 ], [ -64.870232409459675, 18.318690379442103 ], [ -64.870322263504818, 18.318719883755421 ], [ -64.870412117550018, 18.3187421796286 ], [ -64.870494427878725, 18.31877151761347 ], [ -64.870576738207433, 18.31880806141919 ], [ -64.870651504819648, 18.31885164864633 ], [ -64.870726103793743, 18.318902441694263 ], [ -64.870793159051345, 18.318960444492063 ], [ -64.870860214308948, 18.319018279651743 ], [ -64.870905308969668, 18.319062200845508 ], [ -64.870949565439673, 18.319123053491751 ], [ -64.871014609039548, 18.319235538686371 ], [ -64.871097925197148, 18.319378534023201 ], [ -64.871149222469171, 18.319513315091001 ], [ -64.871229018225733, 18.319686989517834 ], [ -64.871266736808138, 18.319821601637841 ], [ -64.871321888447824, 18.319914305531427 ], [ -64.871353573366719, 18.319961411849931 ], [ -64.871395315264579, 18.319999968623051 ], [ -64.871436554248021, 18.320090660858909 ], [ -64.871465388008801, 18.320212366151452 ], [ -64.871497239256144, 18.320310099189442 ], [ -64.871526073016923, 18.320398612129452 ], [ -64.871529927384529, 18.32052752586219 ], [ -64.871507800459199, 18.320709413248437 ], [ -64.871488688401143, 18.32080060839877 ], [ -64.871440745201596, 18.320930360322222 ], [ -64.871380563107891, 18.321060112245675 ], [ -64.871306130462301, 18.321191708188735 ], [ -64.871237735409238, 18.321331015486408 ], [ -64.871193981853651, 18.3214414890233 ], [ -64.871153916337221, 18.321592698629161 ], [ -64.871148049002159, 18.321652880722866 ], [ -64.871164309902156, 18.321845999864763 ], [ -64.871161626382161, 18.321976087064513 ], [ -64.871153747389428, 18.322020343534518 ], [ -64.871130782273326, 18.322077340503483 ], [ -64.871092728414681, 18.322165518167196 ], [ -64.871047130839486, 18.322240955332006 ], [ -64.87101075336227, 18.322283535420581 ], [ -64.870976052266428, 18.322316224858696 ], [ -64.870884354201678, 18.322366851578181 ], [ -64.870833056929598, 18.322412113877022 ], [ -64.870805564274008, 18.322469110845987 ], [ -64.870791817946156, 18.322500459178912 ], [ -64.870778239256538, 18.322517558269624 ], [ -64.87078259784829, 18.322534657360336 ], [ -64.870792991413168, 18.322546224392227 ], [ -64.87082283100284, 18.322552259365409 ], [ -64.870902123844928, 18.322548571326251 ], [ -64.870944033380908, 18.322555947404624 ], [ -64.870997845225133, 18.322557959062351 ], [ -64.871059033147731, 18.322568352627229 ], [ -64.871180067887678, 18.322596515835471 ], [ -64.871265228064829, 18.322624343767359 ], [ -64.871347203117239, 18.322659380139442 ], [ -64.871427500478546, 18.322708665753794 ], [ -64.871498915637574, 18.322763483426854 ], [ -64.871569994210631, 18.322844117374132 ], [ -64.871684491062979, 18.322998344466612 ], [ -64.871749030438764, 18.323067076105644 ], [ -64.871784906311234, 18.323125078903502 ], [ -64.871850285187406, 18.323228176362022 ], [ -64.871939301041891, 18.323318364373847 ], [ -64.872050445131322, 18.323440741528657 ], [ -64.872154045504317, 18.323563117373737 ], [ -64.872265523560429, 18.323677111311667 ], [ -64.872331239022515, 18.32374433420739 ], [ -64.872364431375047, 18.323778363440965 ], [ -64.872444730046027, 18.323812395293885 ], [ -64.872544307103567, 18.32381826262889 ], [ -64.872654445364162, 18.323889341201948 ], [ -64.872719824240335, 18.323931249428313 ], [ -64.872795764319562, 18.323977686503838 ], [ -64.872858293347292, 18.32402378699345 ], [ -64.87293255704509, 18.324087321850016 ], [ -64.8729900556188, 18.32417935519112 ], [ -64.873040851286078, 18.324288319984703 ], [ -64.873104386142643, 18.324387560456273 ], [ -64.873121988147773, 18.324415724974131 ], [ -64.873142607639522, 18.324469369180235 ], [ -64.87316741808479, 18.324529551273883 ], [ -64.873193903601873, 18.324589733367588 ], [ -64.873226091435185, 18.324658632644798 ], [ -64.873246543288758, 18.324713115041561 ], [ -64.873268502575968, 18.324777654417346 ], [ -64.87328442950934, 18.324837836511051 ], [ -64.873300355132983, 18.324893661322676 ], [ -64.873308903368695, 18.324940935279301 ], [ -64.873320470400586, 18.324985359387426 ], [ -64.873330528689223, 18.325042523994568 ], [ -64.873344779241165, 18.325124162461009 ], [ -64.873351652405063, 18.325181328377766 ], [ -64.873352321647985, 18.325274367547706 ], [ -64.873344442655196, 18.325314265425959 ], [ -64.873311082664543, 18.325374112243367 ], [ -64.873288285186618, 18.325409651529924 ], [ -64.873235645499733, 18.325447705388569 ], [ -64.873146629645305, 18.325518447375714 ], [ -64.873095501321018, 18.325543760735457 ], [ -64.87306415167842, 18.325533536118314 ], [ -64.87302391852387, 18.325504030495324 ], [ -64.87295837331925, 18.325472180557597 ], [ -64.872886456555477, 18.325451058151486 ], [ -64.872765254177352, 18.325416189417524 ], [ -64.8726869671641, 18.325393724596552 ], [ -64.87262125301163, 18.325375118072259 ], [ -64.872567104581492, 18.325352822199079 ], [ -64.872526537460317, 18.325346450639927 ], [ -64.872468367024339, 18.325349637074339 ], [ -64.872434167533299, 18.325348128331086 ], [ -64.872415058094532, 18.325343768429661 ], [ -64.872358396401864, 18.325330692654404 ], [ -64.872297711393742, 18.325309571557966 ], [ -64.872243899549517, 18.325259280114722 ], [ -64.872214730512439, 18.325243688457704 ], [ -64.872175669515229, 18.325231284544714 ], [ -64.872132755460029, 18.325222398413416 ], [ -64.872091013562169, 18.325219717512766 ], [ -64.871983388564047, 18.325211503243679 ], [ -64.871854308502861, 18.325209322638159 ], [ -64.871796304395332, 18.325187028074652 ], [ -64.871698068442981, 18.325131875125294 ], [ -64.871651297400774, 18.325126509395034 ], [ -64.871527246483936, 18.325129191605299 ], [ -64.871410401387891, 18.325166911497377 ], [ -64.871307305238986, 18.325231452182834 ], [ -64.871171015427933, 18.325323316576089 ], [ -64.871071103094096, 18.325444686592334 ], [ -64.871019805822016, 18.325523979434422 ], [ -64.870988792765388, 18.325596400422342 ], [ -64.870966496892208, 18.325692792355142 ], [ -64.870948224334541, 18.325753140777294 ], [ -64.870920899317071, 18.325807289207489 ], [ -64.870855688079075, 18.325879373609382 ], [ -64.870820986983233, 18.325937041130942 ], [ -64.870767510415305, 18.325971742226727 ], [ -64.870715542590688, 18.32597123931231 ], [ -64.870642452359903, 18.325944080623287 ], [ -64.87055159248581, 18.32591189540932 ], [ -64.870399544689235, 18.325919102539842 ], [ -64.870254872970975, 18.325959169365944 ], [ -64.87017859761545, 18.326007112565435 ], [ -64.870089246484667, 18.32608707726979 ], [ -64.869987154854982, 18.32624566164435 ], [ -64.86990232995413, 18.326312215297207 ], [ -64.869834771782109, 18.326391506829623 ], [ -64.869778445365682, 18.326462920678978 ], [ -64.869721951311192, 18.326529137745865 ], [ -64.869640479173199, 18.326600385266715 ], [ -64.869531346741439, 18.326650004847693 ], [ -64.869293971129537, 18.326690740916661 ], [ -64.869249211745114, 18.326711695684708 ], [ -64.869240662199729, 18.326740864721728 ], [ -64.869315093535704, 18.326829377661795 ], [ -64.869411653106624, 18.326939349593886 ], [ -64.869504357000267, 18.327152248727089 ], [ -64.869567724218712, 18.327264231007291 ], [ -64.869655231329887, 18.327339166567356 ], [ -64.869706025687492, 18.327390128563138 ], [ -64.869712395936972, 18.327440252368206 ], [ -64.869701164181322, 18.327510323802699 ], [ -64.869628241588657, 18.327611241965371 ], [ -64.869568227133129, 18.327748537605316 ], [ -64.869547104726962, 18.327822802612786 ], [ -64.869512235993056, 18.327983398645074 ], [ -64.869486084442542, 18.328098230773719 ], [ -64.869415844060256, 18.328257989924964 ], [ -64.869317943384146, 18.328413725760697 ], [ -64.869243009133754, 18.32849352151726 ], [ -64.869200931959597, 18.328535933967714 ], [ -64.869114765953611, 18.328660489108699 ], [ -64.869073191693872, 18.32872972366215 ], [ -64.869047878334129, 18.328766436415719 ], [ -64.869046704867117, 18.328799125853777 ], [ -64.869034299644511, 18.328843214685662 ], [ -64.869026923566139, 18.328896020700995 ], [ -64.869019044573406, 18.328930721796837 ], [ -64.868990713727044, 18.32903482508425 ], [ -64.868950480572494, 18.329212689155042 ], [ -64.868955342078664, 18.329263483512648 ], [ -64.868970764787889, 18.329330203493953 ], [ -64.868987528602304, 18.329394911817531 ], [ -64.869001274930099, 18.329472528278245 ], [ -64.869001777844574, 18.329510246860593 ], [ -64.868998927996131, 18.329562382323388 ], [ -64.869007645179579, 18.32961317668105 ], [ -64.869033293815619, 18.329681405405665 ], [ -64.869039831703219, 18.329735049611713 ], [ -64.869055254412501, 18.329806966375486 ], [ -64.869057936622767, 18.329838147070291 ], [ -64.869076041542371, 18.329857090180553 ], [ -64.869125830071084, 18.329883577007308 ], [ -64.869190035480244, 18.329914590063936 ], [ -64.869236135969857, 18.329930180411338 ], [ -64.869279218972849, 18.329953649751474 ], [ -64.869325822376879, 18.329994721096796 ], [ -64.869364882064474, 18.330045012539983 ], [ -64.869424058329287, 18.330133190203696 ], [ -64.869455909576629, 18.330207956815968 ], [ -64.869470829371437, 18.330237125852989 ], [ -64.869505865743577, 18.330306192768319 ], [ -64.869540902115659, 18.330381127018711 ], [ -64.869566215475402, 18.330436447606246 ], [ -64.869586332052677, 18.330486571411257 ], [ -64.869599575466054, 18.330520769592624 ], [ -64.869608627925857, 18.330558488175029 ], [ -64.869624385911379, 18.330578101837887 ], [ -64.869647687613394, 18.330604421026521 ], [ -64.869724801159634, 18.330647168753217 ], [ -64.869767045971912, 18.330671308645947 ], [ -64.86985757056965, 18.330717073859262 ], [ -64.869942395470559, 18.330743728324194 ], [ -64.870034764087904, 18.330782285097314 ], [ -64.870091593418692, 18.330821009508554 ], [ -64.870123444666035, 18.330850010907454 ], [ -64.870160660334022, 18.330897787778497 ], [ -64.87019150575253, 18.330934165255769 ], [ -64.870217824941108, 18.330959813891809 ], [ -64.870244144129742, 18.330981774488635 ], [ -64.870294603211107, 18.331027036787532 ], [ -64.870333830536765, 18.331045476983377 ], [ -64.870359646810925, 18.331043465325649 ], [ -64.870375572434625, 18.331037933266884 ], [ -64.8703826132367, 18.331022678195779 ], [ -64.87038445725625, 18.330995185540189 ], [ -64.87037490188203, 18.330960316806227 ], [ -64.87033148360274, 18.330895440844472 ], [ -64.870246658701888, 18.330791840471477 ], [ -64.870176753595842, 18.330716738582964 ], [ -64.870141549585583, 18.330664267843929 ], [ -64.870095784372268, 18.330603750473927 ], [ -64.870067453525962, 18.330547759333854 ], [ -64.870030237857975, 18.330460419860799 ], [ -64.869995369124013, 18.330389844202216 ], [ -64.869924458189132, 18.330342905521888 ], [ -64.869876178403672, 18.330295463927143 ], [ -64.869816331586264, 18.330214494703569 ], [ -64.86977878064198, 18.330169400042848 ], [ -64.869703008200929, 18.330073008110048 ], [ -64.869641652640212, 18.329974772157641 ], [ -64.869572753363002, 18.329888773789776 ], [ -64.869525144130137, 18.329861448772306 ], [ -64.869485078613707, 18.329833620840418 ], [ -64.869435290084937, 18.329799255020873 ], [ -64.869378125477851, 18.329750975235413 ], [ -64.869323140166614, 18.329704874745801 ], [ -64.869275866209989, 18.329642848632545 ], [ -64.869247032449209, 18.329567914382153 ], [ -64.869233621397711, 18.329530866352343 ], [ -64.869225071852384, 18.329483760033895 ], [ -64.869234459588426, 18.329445370898895 ], [ -64.869251558679139, 18.329397091113435 ], [ -64.869278883696609, 18.329306734153818 ], [ -64.869288606708949, 18.329238673067323 ], [ -64.869302855951162, 18.329170611980885 ], [ -64.869316099364539, 18.32912954063562 ], [ -64.869333533731549, 18.32905427110893 ], [ -64.869347615335641, 18.32899794469256 ], [ -64.869363205682987, 18.328952347117365 ], [ -64.869388854319027, 18.328890991556705 ], [ -64.869408467981884, 18.328825277404235 ], [ -64.869426237625134, 18.328791246860987 ], [ -64.869452221537472, 18.328758222146632 ], [ -64.869527491064161, 18.328653783582922 ], [ -64.869556157186764, 18.328594608627782 ], [ -64.869586332052677, 18.328518668548554 ], [ -64.8696535549484, 18.328385228585887 ], [ -64.869706863878207, 18.328291517553737 ], [ -64.869764866676064, 18.328151372065349 ], [ -64.86985740293153, 18.327988427789364 ], [ -64.869901659401535, 18.327886503797856 ], [ -64.869927140399454, 18.327820119092792 ], [ -64.8699521184829, 18.327758092979536 ], [ -64.869981455158097, 18.327688021544986 ], [ -64.870009450728162, 18.327615769504973 ], [ -64.87006778880226, 18.327455841405879 ], [ -64.870077008900182, 18.327360120025673 ], [ -64.870078182367195, 18.327227016649033 ], [ -64.870076338347587, 18.327131127630651 ], [ -64.87006628005895, 18.327005900627398 ], [ -64.870075667794993, 18.326891403775051 ], [ -64.870093269800122, 18.326785122501406 ], [ -64.870105172108367, 18.326715886638283 ], [ -64.870136185164995, 18.326660230774451 ], [ -64.870198378916427, 18.326564844670543 ], [ -64.870319078380078, 18.32648873826281 ], [ -64.870389486400597, 18.326409445420722 ], [ -64.870431563574755, 18.326372397390912 ], [ -64.87045503291489, 18.326364518398123 ], [ -64.87047917280762, 18.326358649753445 ], [ -64.870512197521975, 18.326354123523515 ], [ -64.87055142484769, 18.326356805733838 ], [ -64.87062853839393, 18.326358649753445 ], [ -64.870713363294783, 18.326360661411172 ], [ -64.870800870405958, 18.326339540314677 ], [ -64.870916205449021, 18.326317578408123 ], [ -64.870971023122138, 18.326286565351495 ], [ -64.871026008433375, 18.32622655220564 ], [ -64.871088705099226, 18.326150947402652 ], [ -64.871156766185663, 18.326038963812834 ], [ -64.871181576630988, 18.325982303429839 ], [ -64.871212588377944, 18.325910051389769 ], [ -64.871242261639111, 18.325845006480222 ], [ -64.871276795096776, 18.325802930615737 ], [ -64.871308813982296, 18.325763366704052 ], [ -64.871360111254319, 18.325697318585014 ], [ -64.871389447929516, 18.325667311357222 ], [ -64.871423981387181, 18.32563244262326 ], [ -64.871471086396014, 18.325594221126437 ], [ -64.871506962268484, 18.325560693497664 ], [ -64.871589104959071, 18.325569744647737 ], [ -64.871669738906292, 18.325605451572414 ], [ -64.871774345108179, 18.325666808442804 ], [ -64.871838718155459, 18.325683069342801 ], [ -64.871926057628514, 18.325690948335534 ], [ -64.872017085140669, 18.325700168433457 ], [ -64.872119678375157, 18.325692623407292 ], [ -64.872300727570632, 18.325681894566117 ], [ -64.872362754993617, 18.325683738585667 ], [ -64.872425954573885, 18.3257095561695 ], [ -64.872510107612527, 18.325745598370474 ], [ -64.872563082575709, 18.325802595339439 ], [ -64.872650422048707, 18.325932682539189 ], [ -64.872693002137282, 18.32599705558647 ], [ -64.872791404418138, 18.32610467927492 ], [ -64.872864663596715, 18.32618464135993 ], [ -64.87291646247354, 18.326254881742273 ], [ -64.872925851519312, 18.32630198937045 ], [ -64.87291981654613, 18.326347754583708 ], [ -64.8729067394612, 18.326392009744097 ], [ -64.872854270031837, 18.326446659779037 ], [ -64.87278302251093, 18.32653466980463 ], [ -64.872732229462997, 18.326567863466778 ], [ -64.872650422048707, 18.32666056736042 ], [ -64.872544642379864, 18.326762657680433 ], [ -64.872455457577587, 18.326830383490631 ], [ -64.872392928549857, 18.326887715735893 ], [ -64.87234112836336, 18.32692979291005 ], [ -64.872228309202114, 18.326993161438111 ], [ -64.872079949444696, 18.327094245929288 ], [ -64.872010713581517, 18.327154764608963 ], [ -64.871949694606769, 18.327198516854878 ], [ -64.871888841960526, 18.327250484679496 ], [ -64.871812231328704, 18.327311672602036 ], [ -64.871742493860779, 18.327399851575478 ], [ -64.871709804422721, 18.327430528046136 ], [ -64.871661356999084, 18.327509317973863 ], [ -64.871636546553816, 18.327597830913874 ], [ -64.871625816402911, 18.327706628069336 ], [ -64.871603689477581, 18.327819280902077 ], [ -64.871567982552904, 18.327870076569411 ], [ -64.871532275628226, 18.327930257353444 ], [ -64.871497908499066, 18.328002677031634 ], [ -64.871481984185039, 18.328054812494429 ], [ -64.871470249514971, 18.328095045648979 ], [ -64.871471255343806, 18.328139469757105 ], [ -64.871480643079906, 18.328190599391064 ], [ -64.871497406894264, 18.328208201396194 ], [ -64.871512997241666, 18.328205686823992 ], [ -64.871552559843678, 18.328176350148794 ], [ -64.871583908176603, 18.328143157796319 ], [ -64.871598157418816, 18.328114994588134 ], [ -64.871622464949724, 18.328070738118072 ], [ -64.871675270965056, 18.327984572112086 ], [ -64.871749533353182, 18.327878289528769 ], [ -64.871799489520072, 18.327796817390777 ], [ -64.871855649607994, 18.327656168987971 ], [ -64.871895715124424, 18.327571679363416 ], [ -64.871952712093389, 18.327491549640229 ], [ -64.872077936477297, 18.327346038421581 ], [ -64.872139124399837, 18.327271271809366 ], [ -64.872218249603804, 18.327216789412546 ], [ -64.872366778309072, 18.327141519885913 ], [ -64.872485298476875, 18.327100783816888 ], [ -64.872553024287072, 18.327079830358571 ], [ -64.87264505762812, 18.327061891767528 ], [ -64.872743964133065, 18.327066585635521 ], [ -64.872923838551912, 18.327105646632731 ], [ -64.873007154709455, 18.327126935367346 ], [ -64.87304336454855, 18.327148394359483 ], [ -64.873073708362313, 18.327179573744615 ], [ -64.873216368422845, 18.327285522361251 ], [ -64.87327336539181, 18.327354421638461 ], [ -64.873367410390586, 18.327498924408928 ], [ -64.873394400131758, 18.327512670736724 ], [ -64.87342256334, 18.327515689532959 ], [ -64.873508729345986, 18.327551059871666 ], [ -64.873580812438263, 18.327601518953031 ], [ -64.873654405583466, 18.327677459032259 ], [ -64.873698829691591, 18.327734288363104 ], [ -64.873721797427038, 18.327852640892729 ], [ -64.873759348371266, 18.327961438048192 ], [ -64.873801425545423, 18.328072414499559 ], [ -64.873870492460753, 18.328193952153924 ], [ -64.873913406515953, 18.328262851431134 ], [ -64.873933690731349, 18.328344658845367 ], [ -64.873941906310108, 18.328378689388614 ], [ -64.873955652637903, 18.328423113496797 ], [ -64.873958167210048, 18.32846351559914 ], [ -64.873949113440631, 18.328523864021349 ], [ -64.873951292736479, 18.328601815758304 ], [ -64.873966212531286, 18.328651605596747 ], [ -64.873984149812713, 18.328704242664287 ], [ -64.874028910506809, 18.328736764464225 ], [ -64.874152290871109, 18.328775488875465 ], [ -64.874319090824429, 18.328817230773325 ], [ -64.874463594904569, 18.328866684025797 ], [ -64.874630731443801, 18.328904402608202 ], [ -64.874733158349784, 18.32894010953288 ], [ -64.87486072966766, 18.328989562785353 ], [ -64.874946560397404, 18.328994256653402 ], [ -64.875029708916827, 18.328989562785353 ], [ -64.875108666482674, 18.328958046814307 ], [ -64.875169351490797, 18.328950335459638 ], [ -64.875242441721582, 18.328960393748275 ], [ -64.875336654358478, 18.32897061967509 ], [ -64.875383760676982, 18.328966428721458 ], [ -64.875453499454522, 18.328963411234895 ], [ -64.87549557662868, 18.328965087616325 ], [ -64.875558774899275, 18.328990568614245 ], [ -64.875592471475898, 18.329002135646135 ], [ -64.875641588142457, 18.329016049612108 ], [ -64.875659860700125, 18.329012193934773 ], [ -64.875651646431095, 18.32899325082451 ], [ -64.875607892875507, 18.328950503097815 ], [ -64.875573359417842, 18.328921501698915 ], [ -64.87553714957869, 18.328892835576255 ], [ -64.875499430996342, 18.328864337091773 ], [ -64.875454503973742, 18.328841203027935 ], [ -64.875415948510295, 18.328817902635592 ], [ -64.875290553868922, 18.328759227975524 ], [ -64.875133476927942, 18.328700051710655 ], [ -64.874954105423569, 18.328631487709799 ], [ -64.874816474507327, 18.328584716667592 ], [ -64.874716897449787, 18.328559738584147 ], [ -64.874610279590229, 18.328518499600705 ], [ -64.874484383344054, 18.328456976401867 ], [ -64.874413135823204, 18.328412049379267 ], [ -64.874353121367619, 18.328344323569127 ], [ -64.874303166510401, 18.328270059871329 ], [ -64.874265949532742, 18.328214571645617 ], [ -64.874258239487801, 18.328136619908662 ], [ -64.874266118480591, 18.328039892699621 ], [ -64.874271147624881, 18.327939143484741 ], [ -64.874268128828646, 18.327820958593179 ], [ -64.874271481591506, 18.327753734387784 ], [ -64.874259076368844, 18.327720040430506 ], [ -64.874218341609549, 18.327657845369401 ], [ -64.874183806842211, 18.327570170620106 ], [ -64.874133850675321, 18.327502612448086 ], [ -64.874070986371294, 18.327445615479121 ], [ -64.874018012717784, 18.327391468358599 ], [ -64.873979120668366, 18.327340003448398 ], [ -64.873883903512251, 18.327284179946446 ], [ -64.873774603442371, 18.327240258752738 ], [ -64.873691622561068, 18.327218130517736 ], [ -64.87359774520047, 18.327181082487868 ], [ -64.873532029738328, 18.327134814360136 ], [ -64.873463633375593, 18.327064407649345 ], [ -64.873379983251425, 18.326975056518563 ], [ -64.873341257530456, 18.326906155931738 ], [ -64.87330538427733, 18.326822504497841 ], [ -64.87329750528454, 18.32676601044335 ], [ -64.873297840560838, 18.326729800604255 ], [ -64.873306725382463, 18.326682861923928 ], [ -64.87332264969649, 18.326631901237818 ], [ -64.87334712617519, 18.32656886929567 ], [ -64.873367075114288, 18.326530143574757 ], [ -64.873400098519028, 18.326468452737743 ], [ -64.873422898616241, 18.326423022800725 ], [ -64.873448882528578, 18.326359990858577 ], [ -64.873471847644623, 18.326301149870005 ], [ -64.873489449649753, 18.32625672576188 ], [ -64.873503363615725, 18.32621967773207 ], [ -64.873537060192348, 18.326169555236675 ], [ -64.873564048623848, 18.326129992634662 ], [ -64.873602437758791, 18.326084227421347 ], [ -64.873628086394831, 18.326036115274064 ], [ -64.873679217338463, 18.325973752574782 ], [ -64.873726826571328, 18.325900328377372 ], [ -64.873770578817243, 18.325823382469309 ], [ -64.873802766650556, 18.325748614547422 ], [ -64.873835288450493, 18.325668483514562 ], [ -64.873871664618093, 18.325608805645004 ], [ -64.873914078378164, 18.325548957517924 ], [ -64.874019690408886, 18.325462625183434 ], [ -64.874093617520714, 18.325387523294921 ], [ -64.874156984739159, 18.325342259686352 ], [ -64.874281539880144, 18.325299010354854 ], [ -64.874310207312476, 18.325283587645629 ], [ -64.874365861866579, 18.325246873582387 ], [ -64.874394864575152, 18.325206975704134 ], [ -64.874401065876839, 18.325189876613479 ], [ -64.874407603764439, 18.325128522362434 ], [ -64.874409615422167, 18.325079907300676 ], [ -64.874399221857232, 18.325059789413729 ], [ -64.874371058649047, 18.325033805501391 ], [ -64.874301153543001, 18.324976139289504 ], [ -64.874206270353511, 18.324889638007221 ], [ -64.874128990478766, 18.324828952999098 ], [ -64.874050200551096, 18.324762568294091 ], [ -64.873944754848878, 18.324661650131361 ], [ -64.873895973458616, 18.324607000096421 ], [ -64.873857415375824, 18.324552350061481 ], [ -64.873851715678938, 18.324527873582781 ], [ -64.873855068441799, 18.324492167967776 ], [ -64.873855571356273, 18.324427962558673 ], [ -64.873847861311276, 18.324384376641206 ], [ -64.873842161614391, 18.324352190117565 ], [ -64.873836629555683, 18.32424054311366 ], [ -64.873822043727444, 18.324177511171513 ], [ -64.873757839627956, 18.324005514435783 ], [ -64.873648873524701, 18.3238291591083 ], [ -64.873538064711511, 18.323656659458095 ], [ -64.87341937821526, 18.323534115974837 ], [ -64.873315273618118, 18.323461863934767 ], [ -64.873278897450575, 18.323447949968795 ], [ -64.873134393370435, 18.323428671582235 ], [ -64.87302391852387, 18.323410565353015 ], [ -64.87291646247354, 18.32337117038918 ], [ -64.872827112652487, 18.323318868597937 ], [ -64.87272870906196, 18.323272432832027 ], [ -64.872625945570007, 18.323214430034227 ], [ -64.872539779564022, 18.323146536585909 ], [ -64.872424781106872, 18.32306640555305 ], [ -64.872313803345889, 18.322958614226479 ], [ -64.872233338346462, 18.322856857873091 ], [ -64.872152872037304, 18.322743534487756 ], [ -64.872086487332297, 18.322667259132231 ], [ -64.871983557511896, 18.322578913830341 ], [ -64.871900576630594, 18.322512193849036 ], [ -64.871834191925586, 18.322439774170789 ], [ -64.871771830536034, 18.322361487157536 ], [ -64.871733775367659, 18.322295102452529 ], [ -64.871706116383564, 18.322189993336224 ], [ -64.871666552471879, 18.322074993569458 ], [ -64.871642915493624, 18.321979607465551 ], [ -64.871629504442069, 18.321886065381193 ], [ -64.871630176304336, 18.321816160275148 ], [ -64.871626991179596, 18.321709207139236 ], [ -64.871639730368884, 18.321654892380593 ], [ -64.871687173273301, 18.321581466873511 ], [ -64.871742995465581, 18.321488595341748 ], [ -64.871784234448967, 18.321424892847006 ], [ -64.871888674322349, 18.321338223926602 ], [ -64.871984060426314, 18.321268486458678 ], [ -64.872233003070164, 18.3210689970673 ], [ -64.872281115217504, 18.32098031648917 ], [ -64.872350517409075, 18.320852408585267 ], [ -64.872479597470317, 18.320639005227974 ], [ -64.87254883333344, 18.32047304346537 ], [ -64.872574480659807, 18.320339100588342 ], [ -64.872618066577218, 18.320230638709177 ], [ -64.872678585256892, 18.320069873729096 ], [ -64.872717980220727, 18.319986557571497 ], [ -64.872758716289752, 18.319920508142786 ], [ -64.872809341699565, 18.319783380140962 ], [ -64.872829124310215, 18.319738285480241 ], [ -64.872860137366843, 18.319710960462771 ], [ -64.87288142741113, 18.319675085899974 ], [ -64.87289400027197, 18.319642062495291 ], [ -64.872907242375618, 18.319519852978601 ], [ -64.872891653337945, 18.319441902551318 ], [ -64.872849408525667, 18.319400829896381 ], [ -64.87282526863288, 18.319361771518516 ], [ -64.872793585023715, 18.319266216466758 ], [ -64.872737592573912, 18.319151049061816 ], [ -64.872687133492548, 18.319105954401095 ], [ -64.872612368190005, 18.319054824767136 ], [ -64.872556209411755, 18.318964970721993 ], [ -64.872506085606744, 18.318879139992248 ], [ -64.872482280990255, 18.318818622622246 ], [ -64.872448250447064, 18.318744526562625 ], [ -64.872426457488302, 18.318674453818403 ], [ -64.872418075581152, 18.31861510991547 ], [ -64.872388737596282, 18.318535818382998 ], [ -64.872329395002964, 18.3184709424213 ], [ -64.87228496958511, 18.318398856709678 ], [ -64.872315647365497, 18.318320234420128 ], [ -64.87234649409362, 18.31823440369044 ], [ -64.872392090359142, 18.318162989841085 ], [ -64.872452775367265, 18.318098953379717 ], [ -64.872528381479867, 18.318049332489124 ], [ -64.872596442566362, 18.317992501848607 ], [ -64.872679254499815, 18.317957297838404 ], [ -64.872754691664625, 18.31791488538795 ], [ -64.872845048624242, 18.317894099567752 ], [ -64.87293540558386, 18.317859061885997 ], [ -64.873018386465105, 18.317831067625605 ], [ -64.873101199708231, 18.317803070745924 ], [ -64.873184014261085, 18.317767866735664 ], [ -64.873252241675971, 18.317711037404877 ], [ -64.873252241675971, 18.317703830274354 ], [ -64.87331292668415, 18.317639792503314 ], [ -64.873388365158576, 18.317590171612721 ], [ -64.87345642624507, 18.317533342281877 ], [ -64.873524653660013, 18.317476511641416 ], [ -64.873600090824823, 18.317427058388944 ], [ -64.873675529299248, 18.317384647248161 ], [ -64.873750966464058, 18.317342233488034 ], [ -64.873826571266989, 18.317299822347309 ], [ -64.873902008431799, 18.317257242258734 ], [ -64.873977445596609, 18.317214828498606 ], [ -64.874060426477911, 18.317172583686329 ], [ -64.874143407359156, 18.317137379676069 ], [ -64.874233595370981, 18.317116592546256 ], [ -64.874323784692422, 18.317110223606448 ], [ -64.874413975323591, 18.317103684409119 ], [ -64.874504164645089, 18.317090105719501 ], [ -64.874594017380559, 18.317112401592624 ], [ -64.874676327709267, 18.317148946708016 ], [ -64.874766181754467, 18.317171076252691 ], [ -64.874840948366682, 18.317214828498606 ], [ -64.8749603067252, 18.317308873497382 ], [ -64.875019819575982, 18.317373918406929 ], [ -64.875094418550077, 18.317417670652844 ], [ -64.875176727569112, 18.317454215768237 ], [ -64.87525903789782, 18.317490594555181 ], [ -64.875333636871915, 18.317534346801096 ], [ -64.875415948510295, 18.317577932718507 ], [ -64.87549825752933, 18.317607438341554 ], [ -64.875572856503368, 18.317651024258964 ], [ -64.875647455477463, 18.317709025747149 ], [ -64.875722222089678, 18.317759821414427 ], [ -64.87572658068143, 18.317763675782089 ], [ -64.87578927734728, 18.317817656574107 ], [ -64.875848622559943, 18.317889908614177 ], [ -64.87590813279138, 18.317962160654247 ], [ -64.875952390571058, 18.318034243746467 ], [ -64.876011900802553, 18.318099287346342 ], [ -64.876078956060098, 18.318157122506022 ], [ -64.876123380168281, 18.318229206907972 ], [ -64.876160260559971, 18.318308333421612 ], [ -64.87619714095166, 18.318387624954028 ], [ -64.876234022653023, 18.318466751467668 ], [ -64.876270734096863, 18.318545875361963 ], [ -64.876307614488553, 18.31862516951378 ], [ -64.876352038596679, 18.318697252606 ], [ -64.876442061589728, 18.318697924468268 ], [ -64.876532417239673, 18.318677137338398 ], [ -64.876607854404426, 18.31863472357827 ], [ -64.876668539412549, 18.318570685807288 ], [ -64.876729224420728, 18.31849943959611 ], [ -64.876740120900081, 18.31849038844598 ], [ -64.876764763707229, 18.318469936592408 ], [ -64.876876075434836, 18.31848569457793 ], [ -64.876961235611986, 18.318480831762088 ], [ -64.877100207633362, 18.318487538597537 ], [ -64.877179165199209, 18.31854771938157 ], [ -64.877209004788824, 18.318618797954628 ], [ -64.877219565991879, 18.31868635743632 ], [ -64.877173800778564, 18.318794650367693 ], [ -64.877107751349854, 18.318900766622505 ], [ -64.877049077999459, 18.319010569606803 ], [ -64.877027787955171, 18.319095728474281 ], [ -64.876972970282054, 18.319178876993703 ], [ -64.876889989400809, 18.319308126002738 ], [ -64.876840871424633, 18.319382389700536 ], [ -64.876811870025676, 18.319508453584831 ], [ -64.876808684900936, 18.319526390866201 ], [ -64.876755209642681, 18.319660333743286 ], [ -64.876723189447546, 18.319805676014141 ], [ -64.876699552469233, 18.319928219497399 ], [ -64.876716316283591, 18.320067191518774 ], [ -64.876737271051638, 18.320235164939049 ], [ -64.876736600499044, 18.320410849713994 ], [ -64.876769625213399, 18.320523837823032 ], [ -64.876867022975091, 18.320692817072199 ], [ -64.876896359650289, 18.320776803782337 ], [ -64.876900718242041, 18.32095148272839 ], [ -64.876901891708997, 18.321078720079697 ], [ -64.876921505371854, 18.321244346565948 ], [ -64.876935084061529, 18.321308719613228 ], [ -64.876953524257374, 18.32133872684102 ], [ -64.877044384131409, 18.321437130431548 ], [ -64.877161730832199, 18.321497312525253 ], [ -64.877331715910259, 18.321556991704483 ], [ -64.877440177789424, 18.321621197113643 ], [ -64.877623071004507, 18.321680373378513 ], [ -64.877863128826732, 18.321768886318523 ], [ -64.87794560679356, 18.321821859972033 ], [ -64.87801953521506, 18.321820015952426 ], [ -64.878100336800458, 18.321821692333856 ], [ -64.878221203902285, 18.321855387600806 ], [ -64.878328827590735, 18.321914563865676 ], [ -64.87840040907821, 18.322038113177769 ], [ -64.878406108775152, 18.322098965824068 ], [ -64.878381801244245, 18.322182449619788 ], [ -64.878236794249688, 18.322372551275066 ], [ -64.878086422834542, 18.322545721477809 ], [ -64.878019032300642, 18.322630211102364 ], [ -64.877953150510052, 18.322687710985804 ], [ -64.877833959789655, 18.322740684639314 ], [ -64.877698508169317, 18.322801034371139 ], [ -64.877547466201577, 18.322794161207241 ], [ -64.877417379001827, 18.322816959994782 ], [ -64.877317634306166, 18.322950567595569 ], [ -64.877282430295907, 18.323051821034539 ], [ -64.877276060046427, 18.32314016633643 ], [ -64.877199784690902, 18.323352731503007 ], [ -64.877164748318819, 18.323663364983872 ], [ -64.877165418871414, 18.323750033904332 ], [ -64.877166089423952, 18.323839551363506 ], [ -64.877158378069339, 18.323919682396365 ], [ -64.877124515164269, 18.323971316254415 ], [ -64.877120659486934, 18.32399461795643 ], [ -64.877131555966287, 18.324045747590333 ], [ -64.877129879584857, 18.324229981910605 ], [ -64.877153516563169, 18.324394434929843 ], [ -64.877215207400184, 18.324527035392066 ], [ -64.877285783058767, 18.324615717279926 ], [ -64.877368931578189, 18.324688472234413 ], [ -64.877473537780077, 18.324729374631886 ], [ -64.877649390193142, 18.324746976637016 ], [ -64.877821386928872, 18.324752342367276 ], [ -64.878072844144867, 18.324766423971369 ], [ -64.878274009917675, 18.324788049291953 ], [ -64.878466626145098, 18.324813530289873 ], [ -64.878655219057123, 18.324839177616184 ], [ -64.87865555433342, 18.324839177616184 ], [ -64.878793855802201, 18.324826103150656 ], [ -64.878930480889551, 18.324822247473321 ], [ -64.878930648527728, 18.324822247473321 ], [ -64.879112368275798, 18.324852422339234 ], [ -64.879297273148666, 18.324923165635994 ], [ -64.879458876319461, 18.325047719467364 ], [ -64.879550239107914, 18.325115949501594 ], [ -64.879639757876816, 18.325197755606212 ], [ -64.879776718240464, 18.325312086130111 ], [ -64.879920550458337, 18.325436473632976 ], [ -64.880124567389259, 18.325552982143051 ], [ -64.880282482520954, 18.325624897597152 ], [ -64.880289020408554, 18.32563042965586 ], [ -64.880298743420894, 18.325638811563067 ], [ -64.880527569487469, 18.325835955330092 ], [ -64.880698391446515, 18.325959000418152 ], [ -64.880937109473223, 18.326198724273695 ], [ -64.881119667412065, 18.326370216785335 ], [ -64.881173814532588, 18.326436433852223 ], [ -64.881207677437658, 18.326481025598525 ], [ -64.88124573129636, 18.326527796640733 ], [ -64.881277582543703, 18.326591834411715 ], [ -64.881305410475591, 18.32665201650542 ], [ -64.881335416393711, 18.326728628446915 ], [ -64.881342626143578, 18.326776405317958 ], [ -64.881359222319816, 18.326894756537911 ], [ -64.881351509655531, 18.327014282534606 ], [ -64.881339776295135, 18.327097598692148 ], [ -64.88132234061851, 18.327136827327536 ], [ -64.881312114691696, 18.327152082398641 ], [ -64.881304907561173, 18.327193321382083 ], [ -64.881278923648836, 18.327267583770208 ], [ -64.881265008373248, 18.327315193003074 ], [ -64.881255285360908, 18.327350733599303 ], [ -64.881244725467468, 18.327390128563138 ], [ -64.881226788186098, 18.327411921521843 ], [ -64.881209689095385, 18.327432708651713 ], [ -64.881195941457918, 18.327460199997631 ], [ -64.881179177643503, 18.327527925807829 ], [ -64.881180352420188, 18.327590288507054 ], [ -64.881200301359343, 18.327632196733362 ], [ -64.881244893105645, 18.327691709584201 ], [ -64.88126987118909, 18.327711489575506 ], [ -64.881291496509675, 18.327763457400124 ], [ -64.881336591170395, 18.327821461507654 ], [ -64.881370454075466, 18.327861860990652 ], [ -64.881419404413521, 18.327880302496169 ], [ -64.881507748405738, 18.327868566516429 ], [ -64.881596261345805, 18.327834703611359 ], [ -64.881678405346008, 18.327859514056627 ], [ -64.881732049552113, 18.327839229841231 ], [ -64.881763565523158, 18.327865716667986 ], [ -64.881790555264331, 18.327921038565194 ], [ -64.881838833740176, 18.328023631799624 ], [ -64.881896836537976, 18.328080964044887 ], [ -64.881949811501158, 18.328145001815869 ], [ -64.881974117722336, 18.328176853063269 ], [ -64.882018709468639, 18.328193784515804 ], [ -64.882108060599421, 18.328234520584772 ], [ -64.882185341783781, 18.328272742081595 ], [ -64.882269831408394, 18.328339126786659 ], [ -64.882323812200411, 18.328411043550432 ], [ -64.882359182539119, 18.328525372764602 ], [ -64.882380641531256, 18.328608522593697 ], [ -64.882420370461659, 18.328688149402467 ], [ -64.882462281307369, 18.32876191018579 ], [ -64.882504189533677, 18.328831816601507 ], [ -64.882523301591789, 18.328945976867942 ], [ -64.882548782589652, 18.32904287171516 ], [ -64.882584154238032, 18.329123673300558 ], [ -64.882590021573094, 18.329223082719921 ], [ -64.882610136840697, 18.329395750008246 ], [ -64.882617680557189, 18.329525669569875 ], [ -64.882603432624592, 18.329653577473721 ], [ -64.882594881769592, 18.329791040751843 ], [ -64.882630085779851, 18.329899167354711 ], [ -64.882675012802395, 18.329963708040168 ], [ -64.882760675894019, 18.330065296755379 ], [ -64.882831754467077, 18.330165879641811 ], [ -64.882924458360719, 18.330262942127206 ], [ -64.883007440551637, 18.330396549727936 ], [ -64.883114058411252, 18.330551112096714 ], [ -64.883091090675805, 18.330759318671539 ], [ -64.883156135585352, 18.330918071993949 ], [ -64.883220674961137, 18.331108676563645 ], [ -64.883268285503732, 18.331362480713665 ], [ -64.883316062374774, 18.33156867563082 ], [ -64.88333114849803, 18.331743019300575 ], [ -64.883263422687833, 18.331900934432213 ], [ -64.88317859778698, 18.332121881505998 ], [ -64.883110033786124, 18.332262529908803 ], [ -64.883047841344364, 18.332354060335433 ], [ -64.882993191309424, 18.332425977099206 ], [ -64.882922615650784, 18.332486828435833 ], [ -64.882857907327207, 18.332550364602071 ], [ -64.88275933478883, 18.332635860055518 ], [ -64.882669817329656, 18.332691013004876 ], [ -64.882574766501989, 18.332730575606888 ], [ -64.882523469229909, 18.332742645553253 ], [ -64.882436297395031, 18.332716996917213 ], [ -64.882331523555024, 18.332668717131696 ], [ -64.882267987388786, 18.332604007498446 ], [ -64.882192719171826, 18.332529577472201 ], [ -64.882077382819034, 18.332457659398756 ], [ -64.881930868390896, 18.332450955182651 ], [ -64.881780329337573, 18.332481632963038 ], [ -64.881576816630741, 18.332544161990711 ], [ -64.881359891562738, 18.332578695448376 ], [ -64.881257129380458, 18.332654467889483 ], [ -64.881136766502777, 18.332741304448064 ], [ -64.88095990826082, 18.332770473485141 ], [ -64.880834012014702, 18.332808527343843 ], [ -64.880781205999313, 18.332842893163331 ], [ -64.88080551353022, 18.332894693349829 ], [ -64.88091313721867, 18.332935932333271 ], [ -64.880960914089712, 18.332992091111521 ], [ -64.881005170559717, 18.333096025451084 ], [ -64.881065017377125, 18.333257127017191 ], [ -64.881065686620047, 18.333351842568504 ], [ -64.881011036585051, 18.333450412487537 ], [ -64.880910455008348, 18.333576310043327 ], [ -64.880676767435602, 18.333748642055355 ], [ -64.880569311385329, 18.3337940706827 ], [ -64.88046034659169, 18.333893481411792 ], [ -64.880403014346484, 18.333943102302385 ], [ -64.880383735959924, 18.33399037625901 ], [ -64.880375354052717, 18.3340787215609 ], [ -64.880327577181674, 18.334232278100785 ], [ -64.880271921317842, 18.334414499453658 ], [ -64.880188437522122, 18.334613319602113 ], [ -64.880093889608929, 18.334740724591541 ], [ -64.879923569254629, 18.334868966462068 ], [ -64.879762971912669, 18.334959658697983 ], [ -64.879726259159156, 18.334988661406555 ], [ -64.879725084382471, 18.335122267697614 ], [ -64.879738329105521, 18.335261742633463 ], [ -64.879831032999107, 18.335350255573474 ], [ -64.879863554799044, 18.335413959377888 ], [ -64.879878642232029, 18.335537842656606 ], [ -64.879872774896967, 18.335650830765644 ], [ -64.879858860931051, 18.335748228527336 ], [ -64.879801193409492, 18.335860713721956 ], [ -64.879757941458649, 18.335991806750542 ], [ -64.879514867459534, 18.336258855623612 ], [ -64.879414955125753, 18.336469743099087 ], [ -64.879333985902178, 18.336656324353385 ], [ -64.879299284806393, 18.336721032676962 ], [ -64.879238767436391, 18.336787082105673 ], [ -64.879165509567429, 18.3368144071232 ], [ -64.879077834818133, 18.336838379377753 ], [ -64.878857223020646, 18.336914654733278 ], [ -64.878746917121873, 18.336932256738407 ], [ -64.878617500474718, 18.336915829509962 ], [ -64.878517755779058, 18.336916498752885 ], [ -64.878391356618465, 18.336920186792042 ], [ -64.87828775624547, 18.336900740767305 ], [ -64.878197231647732, 18.336872074644702 ], [ -64.87807586163143, 18.33686805263892 ], [ -64.877983325375965, 18.336885820972498 ], [ -64.877877042792647, 18.336895880570808 ], [ -64.877752152375365, 18.336913482575937 ], [ -64.877567247502554, 18.336919683877625 ], [ -64.877372954893644, 18.336913482575937 ], [ -64.877000965852119, 18.336854472639573 ], [ -64.876851767903986, 18.336837373548917 ], [ -64.876735929946449, 18.336820609734502 ], [ -64.876612212996179, 18.336797308032487 ], [ -64.876468211830513, 18.33677769436963 ], [ -64.876348518195698, 18.33675036935216 ], [ -64.876198984971211, 18.33671667408521 ], [ -64.87607376058736, 18.336688678515145 ], [ -64.875941157505736, 18.33667174706261 ], [ -64.875742171028833, 18.33667007068118 ], [ -64.87555927781375, 18.336731929156315 ], [ -64.875310167531723, 18.336777359093333 ], [ -64.875143702854757, 18.336839386516317 ], [ -64.874977239487407, 18.336917170615095 ], [ -64.874761487886417, 18.336931250909515 ], [ -64.874620168931017, 18.336977686675425 ], [ -64.874355134335019, 18.33694935582912 ], [ -64.874173079310651, 18.336910631417823 ], [ -64.874073502253111, 18.336909960865228 ], [ -64.873924470633426, 18.336892861774572 ], [ -64.873808632675946, 18.33686017364613 ], [ -64.87365993764223, 18.336795631651057 ], [ -64.87351107628001, 18.3367470165893 ], [ -64.873379143750981, 18.336682475903842 ], [ -64.873313263270063, 18.33661860577098 ], [ -64.87324754911765, 18.336554735638117 ], [ -64.873131877488618, 18.336506289524152 ], [ -64.87299977863114, 18.336441916476872 ], [ -64.872883774345155, 18.336440910648037 ], [ -64.872767601111377, 18.336440072457265 ], [ -64.872568614634417, 18.336438394766162 ], [ -64.872370466348229, 18.336439400595054 ], [ -64.872266698337114, 18.336459015567584 ], [ -64.872237194023739, 18.336483489426939 ], [ -64.872231997241272, 18.33652221383818 ], [ -64.872226800458805, 18.336570158347342 ], [ -64.872245743569067, 18.336622964362732 ], [ -64.872263513212374, 18.336667054504289 ], [ -64.872284300342187, 18.33670527469144 ], [ -64.872317827971017, 18.336719188657355 ], [ -64.872366106446805, 18.336745843122287 ], [ -64.872463170241872, 18.33678071185625 ], [ -64.87256325021383, 18.336812395465415 ], [ -64.872813197376843, 18.336915492923993 ], [ -64.87294546518217, 18.33696410798575 ], [ -64.873028446063415, 18.336988081550032 ], [ -64.873135062613358, 18.337029151585625 ], [ -64.873296499455705, 18.33708614855459 ], [ -64.873443350469813, 18.337153874364787 ], [ -64.873596905700083, 18.337210872643425 ], [ -64.873740740537301, 18.3372599906196 ], [ -64.873886081498483, 18.33730139593149 ], [ -64.874037292414016, 18.337345987677793 ], [ -64.874135694694871, 18.337369624656105 ], [ -64.874251867928649, 18.337370630484941 ], [ -64.874417494414956, 18.337387729575653 ], [ -64.874550097496524, 18.337404661028188 ], [ -64.874748413420889, 18.337469704628063 ], [ -64.874947230949999, 18.337487138995016 ], [ -64.875096596536309, 18.337472554476506 ], [ -64.875278986836975, 18.337489821205338 ], [ -64.87551116566641, 18.337475907239423 ], [ -64.87566069889084, 18.337445397097213 ], [ -64.87574401504844, 18.337398626055005 ], [ -64.875827332515655, 18.337351687374678 ], [ -64.875976696792293, 18.337353028479868 ], [ -64.876026317682886, 18.337353363756108 ], [ -64.876175684578868, 18.337338779237598 ], [ -64.876647249368261, 18.337425951072476 ], [ -64.876985375504717, 18.337492168139363 ], [ -64.877174471331159, 18.337537095161963 ], [ -64.877406985436892, 18.337644718850413 ], [ -64.87753120530158, 18.337701548181201 ], [ -64.877576467600477, 18.337715797423471 ], [ -64.877647713811655, 18.337720994205938 ], [ -64.877728515397109, 18.33774178264548 ], [ -64.877814178488677, 18.337767263643343 ], [ -64.877913084993622, 18.337771118011005 ], [ -64.877980307889402, 18.337761562636786 ], [ -64.87800813582129, 18.337735411086328 ], [ -64.878036299029475, 18.337672211506003 ], [ -64.878046189679992, 18.337644383574116 ], [ -64.878067312086102, 18.337639858653915 ], [ -64.878317092920668, 18.337617226194766 ], [ -64.878453550369898, 18.337579675250538 ], [ -64.878528149343992, 18.337577160678393 ], [ -64.87859285766757, 18.337590068815473 ], [ -64.878670977042646, 18.337627787397878 ], [ -64.878858564125778, 18.337672714420478 ], [ -64.879021843678061, 18.33771730616678 ], [ -64.879126952794309, 18.337730549580158 ], [ -64.879215968648793, 18.337742116612048 ], [ -64.879268271749709, 18.337696016122493 ], [ -64.879281515163086, 18.337655950606063 ], [ -64.879280174057953, 18.337626613930865 ], [ -64.879279000590941, 18.337581686908266 ], [ -64.879315378068213, 18.337499879493976 ], [ -64.879345385295949, 18.33740264937046 ], [ -64.879407745375886, 18.337321177232468 ], [ -64.879453679536994, 18.33726267152025 ], [ -64.879536828056416, 18.33719528098635 ], [ -64.879587454775901, 18.337152365621478 ], [ -64.879639590238696, 18.33712956683388 ], [ -64.879699939970521, 18.337082126548808 ], [ -64.879743861164229, 18.337019260935165 ], [ -64.879778059345654, 18.336908619760095 ], [ -64.879795158436309, 18.336845420179827 ], [ -64.879836900334169, 18.336759757088203 ], [ -64.879879814389369, 18.336656156715208 ], [ -64.879930442418527, 18.336561608802015 ], [ -64.880040579369449, 18.336293221443157 ], [ -64.880131774519782, 18.336213090410297 ], [ -64.880278962119917, 18.336120386516711 ], [ -64.880390944400119, 18.336058526731847 ], [ -64.880437044889675, 18.336030363523662 ], [ -64.880522540343122, 18.335785445504996 ], [ -64.880570820128582, 18.335655859909991 ], [ -64.880643072168652, 18.335511858744269 ], [ -64.880682299494367, 18.335415634449646 ], [ -64.88071716822833, 18.335316226339899 ], [ -64.880757066106582, 18.335253863640673 ], [ -64.880965606648033, 18.335079184694621 ], [ -64.881143807304795, 18.334967202414418 ], [ -64.881339273380718, 18.334832421346675 ], [ -64.881474557362935, 18.334818004466285 ], [ -64.881514455241188, 18.334823033610576 ], [ -64.881661809169771, 18.334876677816681 ], [ -64.881738252163416, 18.334925629464408 ], [ -64.881824919774203, 18.334976088545716 ], [ -64.881917457339341, 18.335052531539418 ], [ -64.882000773496941, 18.335116904586698 ], [ -64.882045700519541, 18.335130984881118 ], [ -64.882120465822084, 18.335139366788326 ], [ -64.882159191542996, 18.335142216636768 ], [ -64.882177965705466, 18.335141547393846 ], [ -64.882189029822939, 18.335130483276373 ], [ -64.882196239572806, 18.33511589744819 ], [ -64.882214678458979, 18.335069630630073 ], [ -64.882258768600536, 18.334976925426815 ], [ -64.882323978528859, 18.33483644466213 ], [ -64.882361864749441, 18.334741227506015 ], [ -64.882398746450804, 18.334646007730555 ], [ -64.882448702617694, 18.33454291158165 ], [ -64.882511734559841, 18.334434952616903 ], [ -64.882578119264849, 18.334381642377423 ], [ -64.882678365565312, 18.33430335536417 ], [ -64.882757155492982, 18.334192043636563 ], [ -64.882829239894875, 18.334114428485577 ], [ -64.882929656452802, 18.334020214538953 ], [ -64.883029736424817, 18.333941927525757 ], [ -64.883079188367617, 18.333894319602507 ], [ -64.883125959409767, 18.333819050075874 ], [ -64.883229559782762, 18.333712264578139 ], [ -64.88333282487946, 18.333649400274112 ], [ -64.883464085546223, 18.333581171549497 ], [ -64.88356416551818, 18.333518642521824 ], [ -64.883656701773702, 18.333451587264221 ], [ -64.883740857431633, 18.333400791596887 ], [ -64.883820819516643, 18.333358883370579 ], [ -64.883896759595871, 18.333318313630059 ], [ -64.88394470410509, 18.333310937551744 ], [ -64.884048807392503, 18.333302724592329 ], [ -64.884102786874848, 18.333309596446554 ], [ -64.884140337819133, 18.333331893629406 ], [ -64.884211920616281, 18.333397103557729 ], [ -64.88429003868174, 18.333490814589879 ], [ -64.884332451132138, 18.333594247324754 ], [ -64.884346700374408, 18.333658788010212 ], [ -64.884405876639221, 18.333839837205687 ], [ -64.884417612618961, 18.333874704629977 ], [ -64.884425322663901, 18.333916112561212 ], [ -64.884416773118573, 18.333964895261147 ], [ -64.884395818350583, 18.334046032122842 ], [ -64.884371007905258, 18.334112752104147 ], [ -64.884340665401226, 18.33418734976857 ], [ -64.884336977362011, 18.334253400506952 ], [ -64.884394478555123, 18.334363872734173 ], [ -64.884417276032991, 18.334518770379248 ], [ -64.884455497529871, 18.334627401206205 ], [ -64.884505118420464, 18.334671656366538 ], [ -64.884551889462671, 18.334714571731411 ], [ -64.884592291565014, 18.334736701276086 ], [ -64.884639396573789, 18.3347383763479 ], [ -64.884692873141773, 18.33474323785407 ], [ -64.884713492633466, 18.334763523379138 ], [ -64.884736123782886, 18.334801074323423 ], [ -64.884758588603859, 18.334849017522913 ], [ -64.884780044976651, 18.334860753502653 ], [ -64.884816590092043, 18.334862262245963 ], [ -64.884834359735294, 18.334832756622973 ], [ -64.884826983656922, 18.334743740768488 ], [ -64.884805190698216, 18.334623713167048 ], [ -64.884793958942566, 18.334509719229118 ], [ -64.884796138238471, 18.33442841341963 ], [ -64.884848442649059, 18.334309056370785 ], [ -64.884900576802181, 18.334212830766432 ], [ -64.884985066426736, 18.334116103557335 ], [ -64.885093695944079, 18.33398182540401 ], [ -64.885186232199544, 18.333864312374715 ], [ -64.885250103642079, 18.33377026737594 ], [ -64.885310619702409, 18.333637999570669 ], [ -64.885371807624949, 18.333501543431112 ], [ -64.885419249219694, 18.333419736016822 ], [ -64.885465349709307, 18.333386542354674 ], [ -64.885586049172957, 18.333333402372659 ], [ -64.885663497995495, 18.333345639957201 ], [ -64.88577179223654, 18.333385202559157 ], [ -64.88589869431155, 18.333469021631174 ], [ -64.886001791770127, 18.333552336479102 ], [ -64.88611545043176, 18.333680916245214 ], [ -64.886217877337742, 18.333846710369585 ], [ -64.886356011168346, 18.334035972524532 ], [ -64.886486936558811, 18.334186680525647 ], [ -64.886633787572976, 18.334364878563065 ], [ -64.88672447980889, 18.33448692044152 ], [ -64.886796228934543, 18.334621532561528 ], [ -64.886935200955918, 18.334712058468938 ], [ -64.886973422452741, 18.334805265276998 ], [ -64.887055900419568, 18.335105002278453 ], [ -64.887052212380411, 18.335213127571706 ], [ -64.887054224038138, 18.335300803630673 ], [ -64.887108706434958, 18.335395351543866 ], [ -64.887163524108018, 18.335452514841336 ], [ -64.887231920470754, 18.335505991409264 ], [ -64.887285564676858, 18.335537339742189 ], [ -64.887340717626216, 18.335551756622579 ], [ -64.887407940521996, 18.335584447370309 ], [ -64.887476504522851, 18.335627530373301 ], [ -64.887515564210446, 18.335624008662649 ], [ -64.887565855653634, 18.335638425543038 ], [ -64.887585804592732, 18.335634906451673 ], [ -64.887566023291754, 18.335570364456544 ], [ -64.887532998577399, 18.335491406890696 ], [ -64.887513552552718, 18.335410772943476 ], [ -64.887491591955836, 18.335286888355029 ], [ -64.887496453462006, 18.335205751493334 ], [ -64.887532830939278, 18.335001735872083 ], [ -64.887555629726819, 18.334874332192328 ], [ -64.887576584494809, 18.334799733218233 ], [ -64.887623523175137, 18.334671153452121 ], [ -64.887660738843124, 18.334587669656401 ], [ -64.887722932594556, 18.334575264433738 ], [ -64.887776912076902, 18.334574427552695 ], [ -64.887821503823204, 18.33457358936198 ], [ -64.887862072254052, 18.334564872178532 ], [ -64.887871627628272, 18.3345455924823 ], [ -64.887872801095284, 18.334516089478598 ], [ -64.887884200489054, 18.33450703570918 ], [ -64.887934324294122, 18.33448943370405 ], [ -64.887947902983797, 18.334472671199308 ], [ -64.887946729516784, 18.334455907384893 ], [ -64.887921416157042, 18.334424894328265 ], [ -64.887827538796387, 18.334344091433195 ], [ -64.887773894590339, 18.334301177377995 ], [ -64.887732655606897, 18.33423747357358 ], [ -64.887695439938909, 18.33416874324422 ], [ -64.887682867078126, 18.334065478147522 ], [ -64.887681023058576, 18.333970930234329 ], [ -64.887689740242024, 18.333893649049912 ], [ -64.887708012799749, 18.333819050075874 ], [ -64.887720418022411, 18.333794573597174 ], [ -64.887822174375799, 18.333725843267814 ], [ -64.887899455560159, 18.33369164508639 ], [ -64.887917057565289, 18.333678569311189 ], [ -64.887926948215807, 18.333632301183457 ], [ -64.887950082279644, 18.333598941192804 ], [ -64.888010432011527, 18.333560887334102 ], [ -64.888187290253427, 18.333487460517347 ], [ -64.888324418255195, 18.333393081551947 ], [ -64.8883780624613, 18.333358714422729 ], [ -64.888428689180785, 18.333294677961419 ], [ -64.888478812985852, 18.333258971036742 ], [ -64.888544191862024, 18.333209516474597 ], [ -64.888571684517615, 18.333168446439004 ], [ -64.888567828840337, 18.333131063132896 ], [ -64.888556597084687, 18.333103067562831 ], [ -64.888538658493587, 18.333081945156664 ], [ -64.888449811586952, 18.333051602652631 ], [ -64.88837320095513, 18.333018745576396 ], [ -64.888188798996737, 18.332955378357951 ], [ -64.887979586593019, 18.332874409134433 ], [ -64.887828712263399, 18.332839708038591 ], [ -64.887636262364424, 18.332767288360401 ], [ -64.887508523408371, 18.332715991088321 ], [ -64.887444150361091, 18.332677769591498 ], [ -64.887412131475571, 18.332631166187468 ], [ -64.887427889461094, 18.332533265511358 ], [ -64.887447000209534, 18.332298907386075 ], [ -64.887395870575631, 18.332088689153466 ], [ -64.887478013266161, 18.332028842336058 ], [ -64.887615308906106, 18.33195591974345 ], [ -64.887855199090154, 18.33183706429935 ], [ -64.887943209115747, 18.331822144504542 ], [ -64.888100956609264, 18.331753245227333 ], [ -64.888310336651102, 18.33161846415959 ], [ -64.888498929563127, 18.331526430818485 ], [ -64.888615270435082, 18.33145317294958 ], [ -64.888748878035813, 18.331306154297295 ], [ -64.888852646046985, 18.331111694050264 ], [ -64.888888352971662, 18.331014463926749 ], [ -64.888938475467, 18.330868618741476 ], [ -64.88896580048447, 18.330788990623034 ], [ -64.888958258077707, 18.330722605918027 ], [ -64.888964963603428, 18.330652533173861 ], [ -64.889004023291022, 18.330627387452239 ], [ -64.889109970597985, 18.330643983628477 ], [ -64.889203345044223, 18.330693436880949 ], [ -64.889278279294558, 18.330764180177766 ], [ -64.889365114543523, 18.330875994819792 ], [ -64.889447761458143, 18.331003399809219 ], [ -64.88953459801678, 18.331097612446172 ], [ -64.889618920003215, 18.331190483977934 ], [ -64.889768619556094, 18.331312859823072 ], [ -64.889910441425911, 18.33141629255789 ], [ -64.890028123402999, 18.331564987591605 ], [ -64.890169777634696, 18.331694907153235 ], [ -64.890409501490296, 18.331931612212543 ], [ -64.890586693698822, 18.332076954483398 ], [ -64.890665317298044, 18.332164629232693 ], [ -64.890787190228707, 18.332271750006726 ], [ -64.8910079683547, 18.332421115593036 ], [ -64.891087428834965, 18.332736106355924 ], [ -64.891018529557755, 18.332899553546326 ], [ -64.89086983452404, 18.333062331493863 ], [ -64.890745783607144, 18.333225274460119 ], [ -64.890679063625839, 18.333417724359094 ], [ -64.890543610695829, 18.333733219346129 ], [ -64.890374631446662, 18.334096154618237 ], [ -64.890237838721191, 18.334554309665748 ], [ -64.890169777634696, 18.334759666392188 ], [ -64.890101382581634, 18.334980782413766 ], [ -64.890016725318901, 18.335185971502028 ], [ -64.889915470570259, 18.335390991642441 ], [ -64.889831148583824, 18.335532982460109 ], [ -64.889630653363611, 18.335721406424284 ], [ -64.889397133428986, 18.335862054827089 ], [ -64.889180546256625, 18.335986946554044 ], [ -64.889013577355513, 18.336112338576072 ], [ -64.888800342946013, 18.336169335545037 ], [ -64.888691713428727, 18.336166150420297 ], [ -64.88864460711028, 18.336196326595939 ], [ -64.88860470923197, 18.336243097638089 ], [ -64.888584088430605, 18.336353737503487 ], [ -64.888413266471559, 18.336487512742394 ], [ -64.888234061295577, 18.336743497497935 ], [ -64.888081342946407, 18.336999144357833 ], [ -64.887978413126007, 18.337203159979083 ], [ -64.887925607110617, 18.33731111894383 ], [ -64.887822844928394, 18.337489319600593 ], [ -64.887784455793394, 18.337658632816328 ], [ -64.887744893191439, 18.337769273991398 ], [ -64.887608603380329, 18.338017713720831 ], [ -64.887441132874471, 18.338265985812086 ], [ -64.887401067358041, 18.338443179330284 ], [ -64.887348931895303, 18.338696145289589 ], [ -64.887213647913086, 18.338999067415784 ], [ -64.887112729750413, 18.339156647271125 ], [ -64.887058079715473, 18.339432914932445 ], [ -64.886951964770276, 18.33963944512584 ], [ -64.886883568407541, 18.339691245312338 ], [ -64.886770412660326, 18.339712032442208 ], [ -64.886509567708288, 18.339864415515081 ], [ -64.886259283959305, 18.340036579888988 ], [ -64.88602576402468, 18.340192986277373 ], [ -64.885676406132575, 18.340316870865763 ], [ -64.88547641382678, 18.340426170935643 ], [ -64.885284803428192, 18.340516527895261 ], [ -64.884968134974201, 18.340703947340273 ], [ -64.884818266473474, 18.340781899077228 ], [ -64.884635037982093, 18.340859683176063 ], [ -64.884451475524088, 18.341000666855166 ], [ -64.88430127043739, 18.341110302201344 ], [ -64.884184426651018, 18.341188589214539 ], [ -64.883984099068925, 18.341329405255522 ], [ -64.883867422920673, 18.341407692268774 ], [ -64.883651337353058, 18.341469215467612 ], [ -64.883484872676092, 18.341531241580924 ], [ -64.883335339451662, 18.341561750413462 ], [ -64.88320290662756, 18.341544820270542 ], [ -64.883086733393782, 18.341543982079827 ], [ -64.883003583564687, 18.341574995136511 ], [ -64.882936360668907, 18.341669375411527 ], [ -64.882869474359154, 18.341732238405882 ], [ -64.882818847639669, 18.341826787628747 ], [ -64.882784649458245, 18.341953185479667 ], [ -64.882783139405319, 18.342127361511302 ], [ -64.882780792471294, 18.342380830385025 ], [ -64.882795378299477, 18.342618373635048 ], [ -64.882761012479989, 18.342744774105313 ], [ -64.882826222408312, 18.34287201145662 ], [ -64.882891936560782, 18.342951807213183 ], [ -64.883024035418202, 18.34300042227494 ], [ -64.88322386139555, 18.342922804504553 ], [ -64.883275661582047, 18.342685596530828 ], [ -64.883360317535107, 18.34249633437588 ], [ -64.883477831874018, 18.342322996535017 ], [ -64.883611774751103, 18.342181677579617 ], [ -64.883811767056898, 18.342072377509737 ], [ -64.883961804505418, 18.341978500149082 ], [ -64.884078814620295, 18.341868697164784 ], [ -64.884228515482846, 18.341822429037052 ], [ -64.884528084846181, 18.341698041534187 ], [ -64.884728077151976, 18.341588909102427 ], [ -64.884978193262839, 18.341448259389949 ], [ -64.885295364631304, 18.341213398350192 ], [ -64.885445568408329, 18.341103764313686 ], [ -64.885595772185354, 18.340994128967509 ], [ -64.885745808324202, 18.340900251606911 ], [ -64.885912273001225, 18.340822467508076 ], [ -64.886145122383198, 18.340760944309238 ], [ -64.886377133574513, 18.340762788328789 ], [ -64.886525660970108, 18.340859012623469 ], [ -64.88652364931238, 18.341080797887969 ], [ -64.886570587992708, 18.341397801618257 ], [ -64.886601936325633, 18.341603996535412 ], [ -64.886566564677253, 18.341857130132837 ], [ -64.88658148447206, 18.342047230478443 ], [ -64.886579640452453, 18.342253091428972 ], [ -64.886627920237913, 18.342411843441653 ], [ -64.886709392375906, 18.342570933349975 ], [ -64.886857081580786, 18.342762039524473 ], [ -64.886938218442481, 18.342952811732346 ], [ -64.886969734413583, 18.343143082335473 ], [ -64.886951461855858, 18.343333016352631 ], [ -64.886883233131243, 18.343538371769341 ], [ -64.886798743506688, 18.343727636543576 ], [ -64.886697825344015, 18.343885216398974 ], [ -64.88651392630004, 18.34405788237757 ], [ -64.886403788039388, 18.34411571753725 ], [ -64.886274203754112, 18.344212612384524 ], [ -64.886131376055403, 18.344261396394074 ], [ -64.886041186733962, 18.344292072864789 ], [ -64.885924007671292, 18.344352925511032 ], [ -64.885671879902702, 18.344400870020195 ], [ -64.885506253416452, 18.344419980768635 ], [ -64.885375328025987, 18.34445820357513 ], [ -64.885019432246281, 18.344608573680659 ], [ -64.884800161553926, 18.344693398581512 ], [ -64.884592457893518, 18.344789959462105 ], [ -64.884439236629873, 18.344859025067763 ], [ -64.884264390045701, 18.344899259531985 ], [ -64.884087531803743, 18.345015766732388 ], [ -64.883993822081266, 18.34513395162395 ], [ -64.883913523410286, 18.345270911987598 ], [ -64.88369559382312, 18.345604847170421 ], [ -64.88361244661337, 18.345712303220751 ], [ -64.88354153436876, 18.345789081490693 ], [ -64.883513203522398, 18.345884970509076 ], [ -64.883434245956607, 18.346014387156231 ], [ -64.883358976429918, 18.346081777690131 ], [ -64.883288568409455, 18.346160233651176 ], [ -64.883242467919843, 18.346243380860926 ], [ -64.883142221619437, 18.346397440315286 ], [ -64.883110536700542, 18.346485450340879 ], [ -64.8831076868521, 18.346552337960304 ], [ -64.883130820915937, 18.346574801471604 ], [ -64.883180778392557, 18.346575304386022 ], [ -64.883237438775552, 18.346572454537579 ], [ -64.883290916653152, 18.346544291329394 ], [ -64.883334668899067, 18.346487461998606 ], [ -64.883381942855692, 18.346404984031722 ], [ -64.883452518514275, 18.346326026465931 ], [ -64.88350297759564, 18.346275567384566 ], [ -64.883563328637138, 18.346222090816639 ], [ -64.88362350942117, 18.346190742483714 ], [ -64.883724093617218, 18.346105749944684 ], [ -64.88384412252833, 18.346084124624099 ], [ -64.883964653044188, 18.346098206228191 ], [ -64.884182247355113, 18.346097535675653 ], [ -64.884335971533176, 18.346112623108581 ], [ -64.884478463955588, 18.346123687226111 ], [ -64.884575526440926, 18.346121005015789 ], [ -64.884679126813921, 18.346116981700334 ], [ -64.884773171812697, 18.346084795176694 ], [ -64.884857493799132, 18.346043053278834 ], [ -64.884924549056734, 18.345977674402661 ], [ -64.884996801096804, 18.345907601658496 ], [ -64.885087494642391, 18.345881114831741 ], [ -64.885127894125446, 18.345861501168883 ], [ -64.885175000443894, 18.345831327612643 ], [ -64.885268710166372, 18.345836858361736 ], [ -64.885414052437227, 18.345870888904926 ], [ -64.885502565377294, 18.345899891613556 ], [ -64.885526872908144, 18.345944818636156 ], [ -64.885523520145284, 18.346029642227336 ], [ -64.885505415225737, 18.346128381094161 ], [ -64.885462667498985, 18.346219911520734 ], [ -64.885429475146509, 18.346342119727751 ], [ -64.885393935859952, 18.346457287132694 ], [ -64.885375998578525, 18.346534400678934 ], [ -64.885367616671374, 18.346649735721996 ], [ -64.885357558382736, 18.346946622875009 ], [ -64.885356384915724, 18.347089282935542 ], [ -64.885361750645984, 18.34731777372582 ], [ -64.885381865913587, 18.347546432154218 ], [ -64.885351691047674, 18.347613822688118 ], [ -64.885198972698504, 18.347871817791713 ], [ -64.884987078084464, 18.348119754606728 ], [ -64.884842574004324, 18.348283537073428 ], [ -64.884699913943791, 18.348503813594618 ], [ -64.884647610842876, 18.348569360108911 ], [ -64.884629841199626, 18.348613951855214 ], [ -64.884626320798588, 18.348741021568401 ], [ -64.884628332456316, 18.348790474820873 ], [ -64.884701757963398, 18.348849986361984 ], [ -64.884773339450874, 18.348848309980553 ], [ -64.884825474913669, 18.348808579740421 ], [ -64.884875598718736, 18.348733645490029 ], [ -64.884988586827774, 18.348614622407808 ], [ -64.885218251085064, 18.348477326767863 ], [ -64.885324868944622, 18.348416977036038 ], [ -64.885436683586704, 18.348314214853758 ], [ -64.885588228468862, 18.348207094079726 ], [ -64.885700881301602, 18.348149594196343 ], [ -64.885748658172645, 18.348053369901663 ], [ -64.88578637675505, 18.347971227211133 ], [ -64.885801799464332, 18.3478959576845 ], [ -64.885830130310637, 18.347761847169295 ], [ -64.885811690114792, 18.34761801364175 ], [ -64.886052250851435, 18.347484070764665 ], [ -64.886230282560348, 18.347421877013232 ], [ -64.886366572371458, 18.347366388787577 ], [ -64.886398926533218, 18.347331352415495 ], [ -64.886374619002368, 18.34727938459082 ], [ -64.88625207551911, 18.347188859993082 ], [ -64.886208489601643, 18.347099005947882 ], [ -64.886238832105732, 18.347016863257352 ], [ -64.886323321730288, 18.34694679051313 ], [ -64.886388197692042, 18.346857774658702 ], [ -64.886477884099065, 18.346776134882532 ], [ -64.886582825577193, 18.346717629170314 ], [ -64.886697657705838, 18.346768255889799 ], [ -64.886826403800455, 18.346824414668049 ], [ -64.886922628095078, 18.346876717768964 ], [ -64.886990689181573, 18.346951819657477 ], [ -64.887046009769051, 18.347010828284169 ], [ -64.887094121916391, 18.347046702846967 ], [ -64.887101665632883, 18.347023736421249 ], [ -64.887094792468986, 18.346968583471892 ], [ -64.887056906248461, 18.346831623108244 ], [ -64.887021366961903, 18.346675049081739 ], [ -64.886939727185791, 18.346531886106732 ], [ -64.886825230333443, 18.346356704246261 ], [ -64.886694137304801, 18.346181522385791 ], [ -64.886628758428685, 18.346070043020006 ], [ -64.886564050105051, 18.345879606088431 ], [ -64.88656539121024, 18.345736946027898 ], [ -64.886552985987578, 18.345571319541648 ], [ -64.88658802235966, 18.345445927519563 ], [ -64.886657256913168, 18.345300417610588 ], [ -64.886726491466618, 18.345158929707395 ], [ -64.886804443203573, 18.34499330453076 ], [ -64.886903684984816, 18.344823821057503 ], [ -64.886998735812483, 18.344629863724947 ], [ -64.887136031452428, 18.344480833414934 ], [ -64.887230747003741, 18.34434370541311 ], [ -64.887361504756086, 18.343955455471587 ], [ -64.887408778712711, 18.343631578577401 ], [ -64.887453202820836, 18.343393532412904 ], [ -64.887429733480701, 18.343306695854324 ], [ -64.887454879202267, 18.343195385436388 ], [ -64.887465440405379, 18.343145429269498 ], [ -64.887447670762128, 18.343095305464431 ], [ -64.887420513382779, 18.343056413415013 ], [ -64.887408275798236, 18.343006457248123 ], [ -64.887451526439406, 18.342911237472606 ], [ -64.887469296082656, 18.342814007349091 ], [ -64.887492262508431, 18.342615525096278 ], [ -64.887596198157667, 18.342389213601905 ], [ -64.887691081347214, 18.342173966225005 ], [ -64.887713041944039, 18.341989228990315 ], [ -64.887774900419174, 18.34184019737063 ], [ -64.887880177173599, 18.341754367950557 ], [ -64.887977742573412, 18.34166250224763 ], [ -64.888087713195887, 18.341484302900597 ], [ -64.888096764346017, 18.341398136894554 ], [ -64.888000206084712, 18.341154726309469 ], [ -64.887944047306462, 18.341093035472511 ], [ -64.887903143599374, 18.340967977417051 ], [ -64.8880729610392, 18.340743173356259 ], [ -64.888148901118427, 18.340519879348449 ], [ -64.888180752365827, 18.340198685974258 ], [ -64.888170191162715, 18.340056025913725 ], [ -64.88829591846104, 18.339796522066763 ], [ -64.888355766588177, 18.339707506212335 ], [ -64.888396167380847, 18.33967314039279 ], [ -64.88845483942157, 18.3396231842259 ], [ -64.8885173684493, 18.339569875296093 ], [ -64.888540168546569, 18.339501646571478 ], [ -64.888509992370928, 18.33946091050251 ], [ -64.888479651176567, 18.339376420877898 ], [ -64.888473448565264, 18.33924583076373 ], [ -64.888430868476632, 18.339038127103322 ], [ -64.888513346443517, 18.338909213370584 ], [ -64.888600183002097, 18.338575445825882 ], [ -64.888634045907168, 18.338368412718069 ], [ -64.888640416156647, 18.338205971356501 ], [ -64.888601690435735, 18.338120811179351 ], [ -64.888552909045472, 18.338066328782588 ], [ -64.888555591255795, 18.338037997936226 ], [ -64.888665226601972, 18.337971948507516 ], [ -64.888733286378738, 18.337896511342706 ], [ -64.888862871973743, 18.337809674784125 ], [ -64.888980721589007, 18.337652430205026 ], [ -64.889085495428958, 18.337600630018528 ], [ -64.88923871538293, 18.337607670820603 ], [ -64.889379700371705, 18.337608844287615 ], [ -64.889555888061068, 18.337608509011318 ], [ -64.889689160385501, 18.337546147621708 ], [ -64.889738613638031, 18.337453611366243 ], [ -64.889840537629539, 18.337360236920063 ], [ -64.889947323127274, 18.337290499452138 ], [ -64.890043881388578, 18.337239369818235 ], [ -64.890128707599104, 18.337130069748298 ], [ -64.890225602446321, 18.33704608303816 ], [ -64.890313109557496, 18.336917170615095 ], [ -64.890450237559264, 18.336758080706772 ], [ -64.890698843617145, 18.336529254640254 ], [ -64.89079288861592, 18.336494050629994 ], [ -64.891015679709312, 18.336571165485907 ], [ -64.89118181041971, 18.33662983752663 ], [ -64.891242158841862, 18.336601675628117 ], [ -64.89130200565927, 18.336621121652797 ], [ -64.891477690434215, 18.336740478701643 ], [ -64.891623369290983, 18.3368434085221 ], [ -64.891801734966521, 18.337036024749523 ], [ -64.891877339769508, 18.337167117778165 ], [ -64.891913046694128, 18.33726937704597 ], [ -64.89187901746061, 18.33735118446026 ], [ -64.891852026409765, 18.337388903042665 ], [ -64.891596545878258, 18.337631978351453 ], [ -64.89153636378461, 18.337735243448151 ], [ -64.89140191930278, 18.337940097260116 ], [ -64.89138431729765, 18.338066664058829 ], [ -64.891383311468815, 18.338177472872019 ], [ -64.891448521397137, 18.338304710223326 ], [ -64.891513732635133, 18.338431947574634 ], [ -64.89157877754468, 18.338574942911464 ], [ -64.891610627482407, 18.338717770610174 ], [ -64.891642312401245, 18.338892114279929 ], [ -64.891626888382348, 18.339102332512482 ], [ -64.89158330246488, 18.339506340439527 ], [ -64.8916892497719, 18.339583621623888 ], [ -64.8917521153856, 18.339644641908308 ], [ -64.89192394448321, 18.339817979749228 ], [ -64.891990327878545, 18.339859889285208 ], [ -64.892029722842381, 18.339914371682028 ], [ -64.892085547654005, 18.340029371448793 ], [ -64.892134999596806, 18.340068431136331 ], [ -64.892211611538301, 18.340094079772371 ], [ -64.892248322982141, 18.340088044799188 ], [ -64.892268608507266, 18.340053176065226 ], [ -64.892293250004741, 18.339913198215015 ], [ -64.892310852009871, 18.339808424375008 ], [ -64.892346056020131, 18.339588986044532 ], [ -64.892344548586493, 18.339391508310882 ], [ -64.892448985840531, 18.33925538613795 ], [ -64.892472790456964, 18.339204591780344 ], [ -64.892506653362034, 18.339153965060859 ], [ -64.892597177959829, 18.339087915632092 ], [ -64.892733970685299, 18.339076180962024 ], [ -64.892857352359329, 18.33908992728982 ], [ -64.893043430699151, 18.339164693902035 ], [ -64.893197993067929, 18.339253039203925 ], [ -64.893463699526137, 18.339511872498292 ], [ -64.893542489453864, 18.339667608334025 ], [ -64.893705601367969, 18.339985617893205 ], [ -64.89375388115343, 18.340144371215615 ], [ -64.893832335804802, 18.340351235375635 ], [ -64.893858152078963, 18.340587606468318 ], [ -64.893824959726487, 18.340735966225736 ], [ -64.893775841750312, 18.340884158345034 ], [ -64.893619435361927, 18.340966636311919 ], [ -64.893253648931704, 18.341097729340504 ], [ -64.892987271920902, 18.341201497351676 ], [ -64.892798343732636, 18.341324376111231 ], [ -64.892698096122501, 18.341402829452932 ], [ -64.892647637041136, 18.341481619380602 ], [ -64.892530625616644, 18.341636685973469 ], [ -64.892401545555458, 18.341799462611277 ], [ -64.892251006502136, 18.341964083268692 ], [ -64.892178417876096, 18.342050249274735 ], [ -64.892099461619978, 18.34223414831871 ], [ -64.892052521629978, 18.342454089563603 ], [ -64.892009773903226, 18.342813338106225 ], [ -64.891964343966208, 18.342910400591563 ], [ -64.891863593441656, 18.343126149573266 ], [ -64.891734679708918, 18.343429911199848 ], [ -64.891658573301243, 18.343786142255851 ], [ -64.89163493632293, 18.343948414669569 ], [ -64.891545751520653, 18.344196686760824 ], [ -64.891532172830978, 18.344429871419152 ], [ -64.891487916360973, 18.3445574440467 ], [ -64.891458244409478, 18.34471854561275 ], [ -64.891418515479018, 18.34503923607258 ], [ -64.891425556281092, 18.345309636398838 ], [ -64.891550445388702, 18.345599315111656 ], [ -64.891624373810203, 18.345694199610875 ], [ -64.89166980374722, 18.345712806135168 ], [ -64.891714564441315, 18.345750021803156 ], [ -64.891723447953268, 18.345772317676278 ], [ -64.891750772970738, 18.345789081490693 ], [ -64.89176938080476, 18.345798133950439 ], [ -64.891780947836708, 18.345734599093873 ], [ -64.891781450751125, 18.345684810565103 ], [ -64.89176954844288, 18.345612055610616 ], [ -64.891756975582098, 18.345514491520476 ], [ -64.891757813772813, 18.345422456869755 ], [ -64.891745074583525, 18.345362442414228 ], [ -64.89173769850521, 18.34512490047382 ], [ -64.891771058495863, 18.344990285734525 ], [ -64.891787485724308, 18.344826335629705 ], [ -64.891773571758335, 18.34468937657573 ], [ -64.891823527925283, 18.344550570882802 ], [ -64.891860074350348, 18.344294253470309 ], [ -64.891924278449778, 18.344197189675242 ], [ -64.891961829394063, 18.344025695853929 ], [ -64.892012959027966, 18.343883706345991 ], [ -64.892063921023748, 18.343741550509549 ], [ -64.892131311557648, 18.343615317677461 ], [ -64.892198869729668, 18.343473329479139 ], [ -64.892249831725451, 18.343347096647051 ], [ -64.892333484468963, 18.343268643305294 ], [ -64.892367346064418, 18.343173926444308 ], [ -64.892434568960141, 18.343079378531058 ], [ -64.892501791855864, 18.342984830617866 ], [ -64.892574211534111, 18.342875364219481 ], [ -64.892718212699776, 18.342803950370126 ], [ -64.892918541591541, 18.342734883454796 ], [ -64.893084669682594, 18.34270453964109 ], [ -64.893336797451127, 18.342750138525901 ], [ -64.893515164436337, 18.34274192425687 ], [ -64.893614741493877, 18.342768912688371 ], [ -64.893670732634007, 18.342811660415123 ], [ -64.893817751286292, 18.3428559181948 ], [ -64.893976336970525, 18.342973263585918 ], [ -64.89419242253814, 18.343100837523195 ], [ -64.894325024310035, 18.343186668252883 ], [ -64.894437677142776, 18.343257579187821 ], [ -64.894546809574535, 18.343363526494841 ], [ -64.894609506240386, 18.343437287278164 ], [ -64.894715285909285, 18.343543234585184 ], [ -64.894837158839948, 18.343719254636369 ], [ -64.894914607662486, 18.343877337406184 ], [ -64.895094315752829, 18.344019660880747 ], [ -64.895291961124599, 18.344046985898217 ], [ -64.895476865997466, 18.344121752510432 ], [ -64.895558170497281, 18.34434538179454 ], [ -64.895556661753972, 18.344507152603512 ], [ -64.895459263992336, 18.34467445547125 ], [ -64.895309563129729, 18.344855169390485 ], [ -64.895247537016473, 18.345097406508557 ], [ -64.895226749886604, 18.345286503644616 ], [ -64.895145613024908, 18.345414745515143 ], [ -64.895091130628089, 18.345551202964373 ], [ -64.895099344897176, 18.345758236072186 ], [ -64.895088280779646, 18.345872900562711 ], [ -64.895103703488928, 18.346006005249023 ], [ -64.895076043195161, 18.346126872350851 ], [ -64.895054920788994, 18.346250924577419 ], [ -64.895073863899256, 18.346375144442106 ], [ -64.895099512535296, 18.346493161695491 ], [ -64.895168579450626, 18.346601958850954 ], [ -64.895194898639261, 18.346640515624074 ], [ -64.895238987471089, 18.346649232807522 ], [ -64.895281567559664, 18.346641186176612 ], [ -64.895322638904986, 18.346554852532449 ], [ -64.895473010320131, 18.346429459200749 ], [ -64.895533862966431, 18.346397943229704 ], [ -64.895594380336377, 18.346334743649379 ], [ -64.895605444453906, 18.346265006181511 ], [ -64.895625728669302, 18.346185378063126 ], [ -64.895723629345412, 18.346052441014933 ], [ -64.895776100084504, 18.345909278039926 ], [ -64.895843825894644, 18.345751530546409 ], [ -64.895978439324324, 18.345546676734443 ], [ -64.896024036899462, 18.345435197368715 ], [ -64.896135013350772, 18.345324723831823 ], [ -64.896186478261029, 18.345172173120773 ], [ -64.896353278214292, 18.345042085921023 ], [ -64.89642452442547, 18.344935635699585 ], [ -64.896476659888265, 18.344829185478147 ], [ -64.896464087027482, 18.3446248345806 ], [ -64.896480180289302, 18.344548391586954 ], [ -64.896533153942812, 18.344296263818364 ], [ -64.896586965787037, 18.344223508863877 ], [ -64.896664246971397, 18.344126112411857 ], [ -64.896706324145555, 18.344093255335679 ], [ -64.896842446318487, 18.344061067502309 ], [ -64.897012934310908, 18.344072466896137 ], [ -64.897157269443255, 18.344083532323282 ], [ -64.897202196465855, 18.344107169301594 ], [ -64.897306133424763, 18.344174558525822 ], [ -64.897464048556401, 18.34424412835557 ], [ -64.897540491550103, 18.344247648756607 ], [ -64.897620454944786, 18.344287043720442 ], [ -64.897740651494018, 18.344403719868694 ], [ -64.897811393481106, 18.344474127889157 ], [ -64.897853471964936, 18.344544703547797 ], [ -64.897925221090588, 18.344612095391312 ], [ -64.898049608593396, 18.344622822922872 ], [ -64.898187239509639, 18.344665739597417 ], [ -64.898312465203219, 18.344688537075342 ], [ -64.898554030459024, 18.344775542581715 ], [ -64.898723009708192, 18.344873441948153 ], [ -64.898945802111257, 18.344937814995433 ], [ -64.899092653125365, 18.344968995690238 ], [ -64.89918300877531, 18.344970504433547 ], [ -64.89940798047428, 18.345002524628683 ], [ -64.899612834286245, 18.345053150038495 ], [ -64.89969564752937, 18.345069578576613 ], [ -64.900048356874663, 18.345151385990903 ], [ -64.900424033955346, 18.34521793964376 ], [ -64.900589660441653, 18.34523520506292 ], [ -64.900849668512649, 18.345281305552533 ], [ -64.901025016701624, 18.345265379928833 ], [ -64.901111350345786, 18.345252639429873 ], [ -64.901212939061054, 18.345266721033965 ], [ -64.901324083150485, 18.34526152556117 ], [ -64.901534469021215, 18.345290190374158 ], [ -64.901782070559932, 18.345351043020401 ], [ -64.901947529408062, 18.345364286433778 ], [ -64.902115502828337, 18.345344337494623 ], [ -64.902237878673418, 18.345286837611241 ], [ -64.902309124884653, 18.345256662745328 ], [ -64.902407863751478, 18.34520150979597 ], [ -64.902409540132908, 18.345192792612465 ], [ -64.902352040249525, 18.345158426792977 ], [ -64.902286326097055, 18.345070416767328 ], [ -64.902166967738538, 18.345025992659203 ], [ -64.901901764194747, 18.345008055377775 ], [ -64.90165097753129, 18.344989616491603 ], [ -64.901444951561984, 18.344959944540108 ], [ -64.901248310709434, 18.344948711474785 ], [ -64.901141692849819, 18.344928762535687 ], [ -64.900988640534024, 18.344902108070755 ], [ -64.900882189002914, 18.344875788882177 ], [ -64.900738187837192, 18.344862714416593 ], [ -64.900521599355159, 18.344830192616655 ], [ -64.900311045846308, 18.344780402778213 ], [ -64.900046512855056, 18.344744360577295 ], [ -64.899905027571208, 18.344724914552557 ], [ -64.899803940460686, 18.34467613185268 ], [ -64.89963579940229, 18.344636904526965 ], [ -64.89951728054416, 18.344585608564557 ], [ -64.899435471820198, 18.344581751577607 ], [ -64.899347798380575, 18.34455425892196 ], [ -64.89921972152888, 18.344495754519414 ], [ -64.89911863572803, 18.344454178950002 ], [ -64.89905493454296, 18.344383604601035 ], [ -64.898923338599957, 18.34425586433531 ], [ -64.898812863753392, 18.344132313713544 ], [ -64.898722843379744, 18.344042459668344 ], [ -64.898598120600582, 18.343992503501454 ], [ -64.898563587142917, 18.343968698884964 ], [ -64.898490161635834, 18.343865433788267 ], [ -64.898364599356341, 18.343681199468051 ], [ -64.898296204303222, 18.343560501314016 ], [ -64.898142143539246, 18.343460587670506 ], [ -64.897985569512741, 18.343408956431858 ], [ -64.897633529410314, 18.343273000587374 ], [ -64.897350389894768, 18.343240815373406 ], [ -64.897284005189761, 18.343208461211645 ], [ -64.897148553569423, 18.343060939644886 ], [ -64.897028189382013, 18.342894473658248 ], [ -64.89678092311965, 18.342718287278558 ], [ -64.896542709317032, 18.34257646540874 ], [ -64.896200559865122, 18.342234314647158 ], [ -64.896035939207707, 18.342003813508825 ], [ -64.895847346295682, 18.341839863404005 ], [ -64.895679372875406, 18.341648420643537 ], [ -64.895515925685004, 18.341378020317279 ], [ -64.895367230651289, 18.341297554008179 ], [ -64.895144942472314, 18.341131089331157 ], [ -64.895063135058081, 18.341003684341729 ], [ -64.894998091458206, 18.340860689004899 ], [ -64.894916786958333, 18.340669916797026 ], [ -64.894867836620278, 18.340574529383446 ], [ -64.894860460541963, 18.340318211970896 ], [ -64.894842355622416, 18.340101623488863 ], [ -64.894826765275013, 18.339961310362355 ], [ -64.894831123866766, 18.33986257149553 ], [ -64.894831962057481, 18.339751259767922 ], [ -64.894842858536833, 18.339652520901097 ], [ -64.894953332073726, 18.339609605536225 ], [ -64.895026925218929, 18.33957188695382 ], [ -64.895110241376528, 18.339585298005375 ], [ -64.895296152078231, 18.339675990241233 ], [ -64.895379300597654, 18.339692586417527 ], [ -64.895486421371686, 18.33965838823616 ], [ -64.895596727270402, 18.339611449555832 ], [ -64.895690604631056, 18.339561325750765 ], [ -64.895707871359889, 18.33950097601894 ], [ -64.895725305726842, 18.339405589914975 ], [ -64.895739387330934, 18.33932294430997 ], [ -64.895776938275219, 18.339224540719442 ], [ -64.895837790921462, 18.339135860141312 ], [ -64.895948599734652, 18.33904500026722 ], [ -64.896022528156152, 18.338966545615847 ], [ -64.896083045526154, 18.338918768744804 ], [ -64.896106682504467, 18.338880714886102 ], [ -64.89609042160447, 18.338839140626419 ], [ -64.895931333005819, 18.338732858043102 ], [ -64.895871150912114, 18.338738725378164 ], [ -64.895764365414436, 18.338747442561612 ], [ -64.895610976512671, 18.338752471705959 ], [ -64.895510896540657, 18.338758171402844 ], [ -64.895332361917326, 18.338677872731864 ], [ -64.895192384067059, 18.338577289845489 ], [ -64.895016699292171, 18.338461451887952 ], [ -64.894870686468721, 18.338380817940731 ], [ -64.89473221736182, 18.338217203112151 ], [ -64.894643536783633, 18.338063646572266 ], [ -64.894591233682718, 18.337935906306541 ], [ -64.894495344664335, 18.337855607635561 ], [ -64.894340782295558, 18.337801460515038 ], [ -64.894158391994893, 18.337675731907041 ], [ -64.894189069775223, 18.337599624189693 ], [ -64.894252772269965, 18.337547824003195 ], [ -64.894279929649315, 18.337504908638323 ], [ -64.894220082831907, 18.337498035474425 ], [ -64.894050097753848, 18.337487138995016 ], [ -64.893879777399547, 18.337520666623845 ], [ -64.89368984338239, 18.337500047132153 ], [ -64.893465375907624, 18.33743466825598 ], [ -64.893329756649109, 18.33731246004902 ], [ -64.893092213399029, 18.337027307566075 ], [ -64.892960617456026, 18.336821784511187 ], [ -64.892730451593991, 18.336598321555527 ], [ -64.892665071408146, 18.336502767813499 ], [ -64.892632549608209, 18.336224320856275 ], [ -64.892611762478339, 18.33614486037601 ], [ -64.892522411347613, 18.336018293577297 ], [ -64.892425348862218, 18.335962972989819 ], [ -64.892293250004741, 18.335848643775591 ], [ -64.892143381504013, 18.335726938483049 ], [ -64.891990495516666, 18.335633900622781 ], [ -64.891887062781848, 18.335551925570371 ], [ -64.891638790690592, 18.335382106820816 ], [ -64.891470314355843, 18.335186808383071 ], [ -64.891455226922915, 18.335032078376173 ], [ -64.891461932448635, 18.334885396309858 ], [ -64.89147417134285, 18.334756985491538 ], [ -64.891507531333502, 18.334707532239065 ], [ -64.891606771805073, 18.334645338487633 ], [ -64.89179033557275, 18.334686242194778 ], [ -64.892019833501536, 18.334803421257448 ], [ -64.892381092392213, 18.334837619438815 ], [ -64.892679153012239, 18.334903333591228 ], [ -64.892910828927256, 18.334952785534028 ], [ -64.893140996098964, 18.33501682461474 ], [ -64.893263205615597, 18.335169710602088 ], [ -64.893251134359559, 18.335591654500831 ], [ -64.893286003093522, 18.335694250354663 ], [ -64.893386419651449, 18.335818133633381 ], [ -64.893512649864192, 18.335834897447796 ], [ -64.893767795119345, 18.335829031422406 ], [ -64.89390509075929, 18.335842945388379 ], [ -64.89422963820607, 18.335911509389234 ], [ -64.894406664086148, 18.335969847463389 ], [ -64.894538930581746, 18.336005720716514 ], [ -64.894725344197923, 18.336030698799959 ], [ -64.894744622584483, 18.336015108452557 ], [ -64.894731379171105, 18.335973198916577 ], [ -64.894685111043316, 18.335912513908454 ], [ -64.894532727970443, 18.335780247412856 ], [ -64.894410184487185, 18.335666588751224 ], [ -64.894296022911135, 18.335534992808164 ], [ -64.894215724240155, 18.335382777373411 ], [ -64.894243216895745, 18.335296108452951 ], [ -64.89434530852543, 18.335278506447821 ], [ -64.894652253967138, 18.335245818319436 ], [ -64.894981327643791, 18.335222684255541 ], [ -64.895378630045059, 18.335289236598726 ], [ -64.896025713280892, 18.335246990476776 ], [ -64.896161667815704, 18.335138025683193 ], [ -64.896266274017535, 18.335099468910073 ], [ -64.896623175626132, 18.335082537457481 ], [ -64.89690799283278, 18.335155461359818 ], [ -64.89706389630669, 18.335230226662361 ], [ -64.897220135056898, 18.335252354897364 ], [ -64.897363130393728, 18.335216815610863 ], [ -64.897440243939968, 18.335175576627421 ], [ -64.897747357019796, 18.335212121742813 ], [ -64.897882138087539, 18.335356793461074 ], [ -64.898091518129434, 18.335342208942564 ], [ -64.898196793574186, 18.335390991642441 ], [ -64.898352864686217, 18.335590648671996 ], [ -64.898507931279141, 18.335733476370649 ], [ -64.898572973569287, 18.335995831375669 ], [ -64.898668359673252, 18.336229014724324 ], [ -64.898661823095324, 18.336344349767387 ], [ -64.898577667437337, 18.33655590910513 ], [ -64.898523855593112, 18.336738131767675 ], [ -64.898522683435772, 18.336874421578727 ], [ -64.898561909451814, 18.337246913534671 ], [ -64.898493682036872, 18.337468028246633 ], [ -64.898358061468684, 18.337815374481011 ], [ -64.898239876577179, 18.338051911902198 ], [ -64.898071735518727, 18.338304039670732 ], [ -64.897887836474808, 18.338476706959057 ], [ -64.897805192179476, 18.338571590148604 ], [ -64.897751715611548, 18.338639483596921 ], [ -64.897764288472331, 18.338700336243164 ], [ -64.897940811437991, 18.338833440929534 ], [ -64.898043405982094, 18.338910051561299 ], [ -64.898169302228212, 18.339127310595927 ], [ -64.898262172450359, 18.33928740502347 ], [ -64.898383711414397, 18.339385976252117 ], [ -64.898555708150184, 18.339415312927315 ], [ -64.898624438479544, 18.33942084498608 ], [ -64.898754525679294, 18.339391508310882 ], [ -64.89900615053341, 18.339546741232255 ], [ -64.899105561262502, 18.339547411784793 ], [ -64.899254925539083, 18.339532827266282 ], [ -64.89951912456371, 18.339677498984543 ], [ -64.899667315373335, 18.339789481264745 ], [ -64.899947103435693, 18.340029371448793 ], [ -64.90024181260253, 18.340459195649998 ], [ -64.900193531507341, 18.340860689004899 ], [ -64.900224713511818, 18.341139638876541 ], [ -64.900227898636558, 18.341333596209097 ], [ -64.90024181260253, 18.341564935538145 ], [ -64.900245331693839, 18.341721175598025 ], [ -64.900261927870133, 18.341837850436605 ], [ -64.900302497610653, 18.341963747992395 ], [ -64.900362678394686, 18.342049913998437 ], [ -64.900498466600993, 18.3421137841313 ], [ -64.900730308844459, 18.342283769209303 ], [ -64.900776744610312, 18.34247806050854 ], [ -64.900739528942381, 18.342695319543168 ], [ -64.900740702409394, 18.342753491288818 ], [ -64.900744222810431, 18.342892966224611 ], [ -64.900778923906216, 18.342962199468388 ], [ -64.900822006909209, 18.342987011223386 ], [ -64.900876656944149, 18.342975107605525 ], [ -64.900926780749217, 18.342928002596693 ], [ -64.900999704651554, 18.342829094782076 ], [ -64.901020156505126, 18.342706720246611 ], [ -64.901045300917019, 18.342576799375365 ], [ -64.901061395488512, 18.34238854304931 ], [ -64.901021328662409, 18.342204307419365 ], [ -64.900975731087271, 18.34208964423857 ], [ -64.900994172592789, 18.341829805115367 ], [ -64.901001882637729, 18.341666022648667 ], [ -64.901006576505779, 18.341508778069624 ], [ -64.901024178510909, 18.341319010380914 ], [ -64.901025688563834, 18.341159755453816 ], [ -64.901041612877862, 18.340972336008804 ], [ -64.900996350578964, 18.340752227125733 ], [ -64.900947567879086, 18.340422482896486 ], [ -64.900860396044209, 18.340123081171328 ], [ -64.900722597489846, 18.339924429970665 ], [ -64.900536017545221, 18.33980490397397 ], [ -64.900428727823396, 18.33966006461759 ], [ -64.900151789609481, 18.339419000966473 ], [ -64.899989349557643, 18.339255553776127 ], [ -64.89993134545017, 18.338999737968379 ], [ -64.899834785879193, 18.338666473338094 ], [ -64.899804275736983, 18.338365395231449 ], [ -64.899757001780415, 18.338079907472206 ], [ -64.899659605328395, 18.337825768045946 ], [ -64.899594895695145, 18.337651089099893 ], [ -64.899513592504945, 18.33746031689202 ], [ -64.89946564668611, 18.337254121974865 ], [ -64.899450728200975, 18.337063852681467 ], [ -64.899386187515518, 18.336857490126192 ], [ -64.89944955342429, 18.336625981849295 ], [ -64.89957997721001, 18.336598992108122 ], [ -64.899615850463135, 18.336591952615777 ], [ -64.89959607047183, 18.336539649514805 ], [ -64.89957964062404, 18.336502767813499 ], [ -64.899584837406508, 18.336468569632075 ], [ -64.89964418261917, 18.336421630951804 ], [ -64.899754319570093, 18.336368824936415 ], [ -64.899871498632763, 18.336354575694202 ], [ -64.900037460395311, 18.336355916799334 ], [ -64.900269471586569, 18.336357760818942 ], [ -64.900476001780021, 18.3363745246333 ], [ -64.900618661840554, 18.336383577093102 ], [ -64.900736343817641, 18.336405537689927 ], [ -64.900788646918556, 18.336387600408557 ], [ -64.900797028825764, 18.336371842423034 ], [ -64.900765680492839, 18.336344349767387 ], [ -64.900723938594979, 18.336307973599844 ], [ -64.900653196607891, 18.336192469608932 ], [ -64.900577590495288, 18.336050312462817 ], [ -64.900467453544309, 18.335774547715914 ], [ -64.900544733419054, 18.335418651936209 ], [ -64.900575412509056, 18.335366182506846 ], [ -64.900666103435299, 18.335335838693084 ], [ -64.900967516818184, 18.335403733451074 ], [ -64.901161641788974, 18.335491743476666 ], [ -64.901478142604844, 18.335561982549336 ], [ -64.901597334634914, 18.335563157326021 ], [ -64.901745357806362, 18.335585285561024 ], [ -64.901991785878067, 18.335645132378431 ], [ -64.902112652979895, 18.335645801621354 ], [ -64.902219270839453, 18.335688716986226 ], [ -64.902292863984655, 18.335741690639736 ], [ -64.902365283662903, 18.335771028624606 ], [ -64.902462681424538, 18.335861719550792 ], [ -64.902548009239865, 18.335908825869296 ], [ -64.902728890797221, 18.335939168373329 ], [ -64.903091492102703, 18.335913184461049 ], [ -64.903275223508501, 18.335914694513974 ], [ -64.903346637357856, 18.335912513908454 ], [ -64.903405310708251, 18.336114854457946 ], [ -64.903442358738062, 18.336264554010825 ], [ -64.903579486739886, 18.336430851049727 ], [ -64.903639836471712, 18.336436550746612 ], [ -64.903708400472624, 18.336444932653819 ], [ -64.903856257315624, 18.336493212439279 ], [ -64.903932700309269, 18.33653847473812 ], [ -64.904036300682264, 18.336612570797797 ], [ -64.904102182472855, 18.336615755922537 ], [ -64.90417376396033, 18.336587592714352 ], [ -64.904263785643707, 18.336556748605517 ], [ -64.904347437077547, 18.336503942590184 ], [ -64.904368391845537, 18.336381565435374 ], [ -64.904383814554762, 18.336279641443809 ], [ -64.904389681889825, 18.336238234822247 ], [ -64.904396052139305, 18.336122733450679 ], [ -64.904427232834109, 18.335865576537799 ], [ -64.904517589793727, 18.335760298473701 ], [ -64.904679360602643, 18.335676983625831 ], [ -64.904818835538492, 18.335652171870834 ], [ -64.905032071257608, 18.335667594580059 ], [ -64.905200547592358, 18.335684527342266 ], [ -64.905349074987953, 18.335706486629476 ], [ -64.905548229103033, 18.335750575461361 ], [ -64.905695749360063, 18.335773038972661 ], [ -64.905862382984878, 18.335848140861174 ], [ -64.906009066360866, 18.335936150886766 ], [ -64.906075953980348, 18.335929780637287 ], [ -64.906174691537444, 18.335824000968444 ], [ -64.906285669298484, 18.335807238463701 ], [ -64.906442578601229, 18.335777229926236 ], [ -64.906634690604619, 18.335715037484476 ], [ -64.906917162186915, 18.335653849561936 ], [ -64.907097373191732, 18.335452682479456 ], [ -64.907173479599408, 18.335435918665041 ], [ -64.907403814409292, 18.335351430350158 ], [ -64.90761671616184, 18.335295271571908 ], [ -64.907640016554183, 18.335227210485471 ], [ -64.907734564467376, 18.335090248812151 ], [ -64.907818552487186, 18.334980110551498 ], [ -64.907867167548943, 18.334917413885648 ], [ -64.907959368528168, 18.334805768191416 ], [ -64.908036314436231, 18.334688924405043 ], [ -64.908263462811703, 18.334559506448215 ], [ -64.908387516347943, 18.334382817154108 ], [ -64.908505029377181, 18.334225403627215 ], [ -64.908522631382311, 18.334098838138175 ], [ -64.908486421543216, 18.333915105422705 ], [ -64.908489941944254, 18.333828773088214 ], [ -64.908534533690556, 18.33376356054049 ], [ -64.908551297504971, 18.333625260381382 ], [ -64.908567224438286, 18.333459801533252 ], [ -64.908534367362108, 18.333467345249744 ], [ -64.908478711498276, 18.333507578404294 ], [ -64.908393382373333, 18.333717796636904 ], [ -64.908308892748721, 18.333891302115944 ], [ -64.908174949871693, 18.334048545385315 ], [ -64.907939922503431, 18.334363371129427 ], [ -64.907839507255176, 18.334473509390023 ], [ -64.907683268504968, 18.334630921607243 ], [ -64.907639010725291, 18.334720440376145 ], [ -64.907576481697618, 18.334844157326415 ], [ -64.907544965726515, 18.334935518805196 ], [ -64.907506576591572, 18.334988827735003 ], [ -64.907450082537025, 18.33502805637039 ], [ -64.907422757519555, 18.335060576860656 ], [ -64.907043392399657, 18.335004082806108 ], [ -64.906934596553867, 18.335041130835918 ], [ -64.906849604014894, 18.335033588429155 ], [ -64.906848095271584, 18.334995534570453 ], [ -64.906843232455742, 18.334933339509348 ], [ -64.90686184159938, 18.334878355507783 ], [ -64.906865697276714, 18.334852371595446 ], [ -64.906856812455089, 18.334828230393043 ], [ -64.906795792170669, 18.334789673619923 ], [ -64.906747177108912, 18.334763354431345 ], [ -64.906721696110992, 18.334987655577663 ], [ -64.906663190398774, 18.335054541887473 ], [ -64.906485326327982, 18.335134337643979 ], [ -64.906445428449672, 18.335146073623775 ], [ -64.906262367596469, 18.335184293810926 ], [ -64.906157426118284, 18.33518697733092 ], [ -64.906113840200874, 18.335171385673846 ], [ -64.906109146332824, 18.335140707893459 ], [ -64.905860706603448, 18.335091254640986 ], [ -64.905517048408228, 18.335029900389941 ], [ -64.905303477412758, 18.33498094874227 ], [ -64.90505704934111, 18.334905680525253 ], [ -64.904942049574288, 18.334878521836288 ], [ -64.90483241422811, 18.334869804652783 ], [ -64.904715235165497, 18.334771905286345 ], [ -64.904626219311012, 18.334592866438868 ], [ -64.904496132111262, 18.334408298152027 ], [ -64.904316424020919, 18.33423915126474 ], [ -64.904242495599419, 18.334050893629012 ], [ -64.904329835072417, 18.33380530243835 ], [ -64.904422036051642, 18.333620397565539 ], [ -64.904547429383342, 18.333403810393179 ], [ -64.90461213770692, 18.333213038185306 ], [ -64.90467801949751, 18.333058140540231 ], [ -64.904820511919922, 18.332895196264246 ], [ -64.90503626221124, 18.332762259216054 ], [ -64.905172552022293, 18.332605349913308 ], [ -64.905308506557105, 18.332477609647583 ], [ -64.905579577435958, 18.332333273205563 ], [ -64.905814438475659, 18.332124396078143 ], [ -64.905957098536248, 18.3319381501002 ], [ -64.906204363488939, 18.33171167096765 ], [ -64.906353561437129, 18.331466919277375 ], [ -64.906387928566289, 18.331041621306042 ], [ -64.906409552577202, 18.330672817389257 ], [ -64.906412236097196, 18.330362519184689 ], [ -64.906390778414732, 18.330148948189276 ], [ -64.906329421544399, 18.330025063600829 ], [ -64.906287178041737, 18.329937724127831 ], [ -64.906177877971857, 18.329821886170294 ], [ -64.906111325628729, 18.32971593886333 ], [ -64.905965311495606, 18.329591886636763 ], [ -64.905882833528779, 18.329488956816306 ], [ -64.905719555286169, 18.329370269010383 ], [ -64.905616959432393, 18.329321318672328 ], [ -64.905536159156668, 18.329263483512648 ], [ -64.905433899888806, 18.32916658866543 ], [ -64.905382098392636, 18.329148651384003 ], [ -64.905361983125033, 18.32917295891491 ], [ -64.905389474470951, 18.329312601488823 ], [ -64.905450831341341, 18.329434474419543 ], [ -64.905516713131931, 18.329560705941958 ], [ -64.905620647471551, 18.329735552526131 ], [ -64.905754256382011, 18.329877039119708 ], [ -64.905869925391698, 18.329983489341146 ], [ -64.905990961441319, 18.330160012306749 ], [ -64.905971012502164, 18.330335529443516 ], [ -64.905896078251828, 18.330487241963851 ], [ -64.905907310007478, 18.330604421026521 ], [ -64.905832374447414, 18.330761833243741 ], [ -64.905715531970714, 18.330830061968356 ], [ -64.905572032409793, 18.331086045414224 ], [ -64.905576223363369, 18.331308501231319 ], [ -64.905537500261801, 18.331542524080305 ], [ -64.905302303945746, 18.331786437579865 ], [ -64.905135671630603, 18.331902275537345 ], [ -64.904907516116623, 18.332058514287553 ], [ -64.904587327261595, 18.332219949820228 ], [ -64.90424920112514, 18.332322712002508 ], [ -64.90402758349876, 18.332420445040441 ], [ -64.903879056103222, 18.332565618363503 ], [ -64.903618714065544, 18.332891508225089 ], [ -64.903483094807086, 18.332978343473997 ], [ -64.903280085014671, 18.333064509480039 ], [ -64.903015887299773, 18.333121003534586 ], [ -64.902757389281703, 18.333224269940956 ], [ -64.902691507491113, 18.333418896516434 ], [ -64.902523701708958, 18.333639340675802 ], [ -64.902373330293813, 18.333764735317175 ], [ -64.902205859787955, 18.333953494557647 ], [ -64.90200586748216, 18.334078552613107 ], [ -64.901756421923892, 18.33415566746902 ], [ -64.901523740179982, 18.334217189358185 ], [ -64.901109338688059, 18.334198078609745 ], [ -64.900893420758564, 18.334243845132733 ], [ -64.900693763729066, 18.334305703607868 ], [ -64.900515230415351, 18.334267482111045 ], [ -64.900358990355471, 18.33425323155916 ], [ -64.900281541532991, 18.33431291073839 ], [ -64.900017680404005, 18.33437108248404 ], [ -64.899792877652885, 18.334500331493075 ], [ -64.899503869492605, 18.334576605538928 ], [ -64.899295327641482, 18.33456822363172 ], [ -64.899144619640367, 18.3345476054497 ], [ -64.898899197397554, 18.334537210575093 ], [ -64.898579345128439, 18.334548274692565 ], [ -64.898496699523491, 18.334586831465685 ], [ -64.898313134446141, 18.334543414496068 ], [ -64.898113646364436, 18.334452722260153 ], [ -64.897880964620583, 18.334219705240002 ], [ -64.897870906331889, 18.334122641444935 ], [ -64.897885323212279, 18.33404150458324 ], [ -64.897925556366886, 18.33383614916653 ], [ -64.897926394557601, 18.333733888589052 ], [ -64.897918515564811, 18.333686614632427 ], [ -64.897949024397349, 18.333665996450407 ], [ -64.897979534539559, 18.333611177467617 ], [ -64.897992945591056, 18.333338599155127 ], [ -64.898002668603453, 18.333179844523102 ], [ -64.898019936641958, 18.333088315406144 ], [ -64.898061007987224, 18.333062834408281 ], [ -64.898064193111964, 18.333041544363994 ], [ -64.897971152632351, 18.333019751405288 ], [ -64.897905607427731, 18.332966776442106 ], [ -64.897878952962856, 18.332873570943718 ], [ -64.897863027339156, 18.332810202415601 ], [ -64.897836371564551, 18.332738286961501 ], [ -64.897804017402791, 18.332669890598709 ], [ -64.897752552492591, 18.332590765394741 ], [ -64.897733945968241, 18.332517507525836 ], [ -64.897777196609411, 18.332292537136595 ], [ -64.897773340932133, 18.332258338955228 ], [ -64.897661191013754, 18.332220788010943 ], [ -64.897592459374721, 18.332228164089315 ], [ -64.897522889544973, 18.332342828579783 ], [ -64.897477794884253, 18.332470904121806 ], [ -64.897466395490426, 18.332648600554421 ], [ -64.897520710249125, 18.332888993652944 ], [ -64.897525739393416, 18.332954706495741 ], [ -64.897500258395553, 18.333035677028931 ], [ -64.897455331372953, 18.333142796493291 ], [ -64.897379391293725, 18.333357039350972 ], [ -64.897356760144248, 18.333432979430199 ], [ -64.897317531508918, 18.333521660008387 ], [ -64.89731920920002, 18.333642359472094 ], [ -64.897447955294581, 18.333687957047232 ], [ -64.897490032468738, 18.333741601253337 ], [ -64.897422139020421, 18.333797760031587 ], [ -64.897370840438668, 18.334016526499795 ], [ -64.897240922186768, 18.33413605249649 ], [ -64.89712793407773, 18.334176957513307 ], [ -64.897026176414613, 18.33420243851117 ], [ -64.896952080354993, 18.33420176664896 ], [ -64.896861723395375, 18.33418282353864 ], [ -64.896765500410368, 18.334195062432855 ], [ -64.896730127452315, 18.334161702442202 ], [ -64.896705988869257, 18.334090791507265 ], [ -64.896693583646595, 18.333943940493157 ], [ -64.896685369377565, 18.333637161379954 ], [ -64.896665085162113, 18.333450915401954 ], [ -64.896616805376652, 18.333319488406744 ], [ -64.896425027339887, 18.332961580969311 ], [ -64.896315894908184, 18.332884635061191 ], [ -64.896162841282717, 18.332817915079886 ], [ -64.896088577584919, 18.332811712468583 ], [ -64.895954634707834, 18.332969123376074 ], [ -64.895605109177609, 18.333108767259716 ], [ -64.895305204537976, 18.333280596357326 ], [ -64.895161873924849, 18.333406157327204 ], [ -64.895054082598278, 18.333484779616697 ], [ -64.894966910763401, 18.333478409367217 ], [ -64.894877894908916, 18.333453096007474 ], [ -64.894800949000853, 18.333405151498312 ], [ -64.894666503209351, 18.333354692416947 ], [ -64.89448645984271, 18.333304064387789 ], [ -64.894370286608932, 18.333327701366102 ], [ -64.894296190549255, 18.333397272505522 ], [ -64.894214047858725, 18.333491317504354 ], [ -64.894098377539365, 18.333571782503782 ], [ -64.894052444687873, 18.333605479080404 ], [ -64.893992765508642, 18.333620231237092 ], [ -64.893947335571568, 18.333606652547417 ], [ -64.893826803746038, 18.333558205123779 ], [ -64.893727729602972, 18.333547979197022 ], [ -64.893606862501144, 18.333543116381179 ], [ -64.893452300132367, 18.333539932566111 ], [ -64.893271586213132, 18.333515122120787 ], [ -64.893127585047409, 18.333465501230137 ], [ -64.892993809808502, 18.333404144359804 ], [ -64.892805050568029, 18.333359889199414 ], [ -64.892661551007109, 18.333257797569729 ], [ -64.892523249538328, 18.333023607082566 ], [ -64.892505479895078, 18.332953365390551 ], [ -64.892524925919759, 18.332839037486053 ], [ -64.892631543779316, 18.332731078521306 ], [ -64.892658365882369, 18.332690510090458 ], [ -64.892692228787496, 18.332539300484541 ], [ -64.892701282556914, 18.332434359006413 ], [ -64.892698263760678, 18.332318856325173 ], [ -64.892674962058663, 18.332094724126648 ], [ -64.892662221559704, 18.331914010207413 ], [ -64.892604554038144, 18.33171183860577 ], [ -64.892545377773331, 18.331475804099 ], [ -64.892528613958916, 18.331322582835412 ], [ -64.892528111044498, 18.331176402373842 ], [ -64.892557950634114, 18.33106928159981 ], [ -64.892646966488599, 18.330978757002072 ], [ -64.892793314588289, 18.330933494703174 ], [ -64.893090704655776, 18.330901475817655 ], [ -64.893369822165539, 18.330901978732129 ], [ -64.893504267956985, 18.330952940727911 ], [ -64.893683808409207, 18.331015302117464 ], [ -64.89384725559961, 18.331082692651364 ], [ -64.89399343606118, 18.331181096241892 ], [ -64.894030484091047, 18.33119786005625 ], [ -64.89412201451762, 18.331180090413 ], [ -64.894247407849377, 18.331165338256312 ], [ -64.89449618285505, 18.331142204192474 ], [ -64.894726685303056, 18.331162153131572 ], [ -64.89487353631722, 18.331155279967675 ], [ -64.894984512768531, 18.331128457864679 ], [ -64.895083251635356, 18.331071125619417 ], [ -64.895211327177378, 18.331005914381365 ], [ -64.895247537016473, 18.330968363437137 ], [ -64.895309227853431, 18.330886723661024 ], [ -64.895335044127648, 18.330795696148812 ], [ -64.895346778797716, 18.330720426622179 ], [ -64.895347784626551, 18.330591345251264 ], [ -64.895339905633818, 18.330548932800866 ], [ -64.895302019413236, 18.330458575841249 ], [ -64.895288775999859, 18.330429909718589 ], [ -64.895267988870046, 18.330385485610464 ], [ -64.895255583647383, 18.330377438979554 ], [ -64.895237646365956, 18.330366710138321 ], [ -64.895197413211406, 18.330374421492934 ], [ -64.895148798149648, 18.330400405405271 ], [ -64.895009826128273, 18.330611964743014 ], [ -64.895000438392231, 18.330648845134647 ], [ -64.894956852474763, 18.330726629233482 ], [ -64.894905219926386, 18.330773735551929 ], [ -64.894866160238848, 18.330811789410632 ], [ -64.894803463572998, 18.330855040051802 ], [ -64.894730038065916, 18.330917736717652 ], [ -64.894597436294021, 18.330944391182527 ], [ -64.894398952731535, 18.33091354576402 ], [ -64.89426467457821, 18.330841461362127 ], [ -64.8941892374134, 18.330796199063229 ], [ -64.89389855287169, 18.330536862854501 ], [ -64.893702080966932, 18.330366542500144 ], [ -64.893549362617762, 18.330225894097339 ], [ -64.893422963457169, 18.330132854927456 ], [ -64.893269240588779, 18.330033613146213 ], [ -64.893120711883512, 18.329953314475233 ], [ -64.892986769006484, 18.329872848166076 ], [ -64.892847629346932, 18.329893300019648 ], [ -64.892805887449072, 18.329918948655688 ], [ -64.892717877423479, 18.329960187639131 ], [ -64.892512855973393, 18.329953817389651 ], [ -64.892344714914941, 18.329974101605046 ], [ -64.89219870340122, 18.329955996685499 ], [ -64.892080518509658, 18.329978124920501 ], [ -64.892007594607378, 18.330005282299851 ], [ -64.891857390830353, 18.330004108832838 ], [ -64.891739876491386, 18.329967731355623 ], [ -64.891612471501958, 18.329945100206146 ], [ -64.891505184399477, 18.329936550660818 ], [ -64.891417005426035, 18.329861784048603 ], [ -64.891327151380892, 18.329794728791001 ], [ -64.891278705266927, 18.3297881909034 ], [ -64.89120913543718, 18.329795231705418 ], [ -64.89111726842458, 18.329783832311648 ], [ -64.89111257455653, 18.329763715734373 ], [ -64.89114342128471, 18.329743934433338 ], [ -64.891225899251594, 18.329725997151968 ], [ -64.89130854354687, 18.329703533640668 ], [ -64.891413149748757, 18.329564058704818 ], [ -64.891483725407397, 18.329427265979348 ], [ -64.891507194747533, 18.329328694750643 ], [ -64.891564528302467, 18.329240349448753 ], [ -64.891613478640522, 18.329196092978748 ], [ -64.89163812144767, 18.329148483745882 ], [ -64.891643484558585, 18.329079081554255 ], [ -64.891632420441113, 18.32904957724088 ], [ -64.891608449496175, 18.329032478150225 ], [ -64.891555140566368, 18.329024431519315 ], [ -64.891467967421818, 18.329023594638272 ], [ -64.89137895156739, 18.329038345485287 ], [ -64.891341735899402, 18.329050415431652 ], [ -64.89126378547212, 18.329092995520227 ], [ -64.891156663388415, 18.32915535690978 ], [ -64.891012328256124, 18.329172623638613 ], [ -64.890839659658127, 18.32920665418186 ], [ -64.890642349562654, 18.329149489574718 ], [ -64.890526680552966, 18.32913339762257 ], [ -64.890423415456269, 18.329114285564515 ], [ -64.890350828139901, 18.329081931402698 ], [ -64.890137592420729, 18.328926530843205 ], [ -64.889972804125193, 18.328861822519627 ], [ -64.889839530491031, 18.32876191018579 ], [ -64.889740791624206, 18.328664680062275 ], [ -64.889666361597961, 18.328562923708887 ], [ -64.889500398525684, 18.328251452037307 ], [ -64.889480283258081, 18.328219600789964 ], [ -64.889415407296383, 18.327978704777024 ], [ -64.889350698972805, 18.327788101517001 ], [ -64.889288002306955, 18.327570002981986 ], [ -64.889255983421435, 18.327287867985603 ], [ -64.889218766443776, 18.327029872882008 ], [ -64.889185575400973, 18.326868606297126 ], [ -64.889012405198173, 18.326670793287235 ], [ -64.888881815084005, 18.32643827787183 ], [ -64.888817105450755, 18.32624767461175 ], [ -64.888719206084318, 18.326072660389457 ], [ -64.888587945417612, 18.325913236514509 ], [ -64.88848032041949, 18.325812484680284 ], [ -64.88844075912715, 18.325793878155935 ], [ -64.888382084467082, 18.325788512425675 ], [ -64.888256692445054, 18.325812484680284 ], [ -64.888225847026547, 18.325830423271327 ], [ -64.888178237793625, 18.325880210490425 ], [ -64.888130460922639, 18.325939554393415 ], [ -64.888103303543289, 18.325979621219517 ], [ -64.888084694399652, 18.326047682305955 ], [ -64.888060891092834, 18.326149103383102 ], [ -64.888091904149519, 18.326243314710325 ], [ -64.888196007436932, 18.326326967453895 ], [ -64.88859029235158, 18.326803730335428 ], [ -64.888742004871915, 18.327059041919028 ], [ -64.888889860405243, 18.327404376495679 ], [ -64.88890997829219, 18.327708472088887 ], [ -64.888955072952967, 18.327945512424549 ], [ -64.88904811212285, 18.328260839773407 ], [ -64.88906236136512, 18.328514308647129 ], [ -64.88897720118797, 18.328766940639809 ], [ -64.88884225248205, 18.329035160360547 ], [ -64.888706633223535, 18.329366580971225 ], [ -64.888473280927087, 18.32950722937403 ], [ -64.888174717392644, 18.329520640425528 ], [ -64.887792502424304, 18.329612673766633 ], [ -64.887625870109161, 18.329706383489111 ], [ -64.887492094870254, 18.329816018835288 ], [ -64.887225550221274, 18.329972257585496 ], [ -64.887207780578024, 18.330098824384208 ], [ -64.887272991816076, 18.330226061735516 ], [ -64.887370892492129, 18.330401075957809 ], [ -64.887502656073309, 18.330513058238012 ], [ -64.887551438773244, 18.330624202327499 ], [ -64.887534004406234, 18.330719085516989 ], [ -64.887433924434276, 18.330781614544719 ], [ -64.887284558847966, 18.330796199063229 ], [ -64.887068976194826, 18.330794522681799 ], [ -64.886919945884813, 18.330761665605564 ], [ -64.886588189997838, 18.330774909018942 ], [ -64.88600648563812, 18.330928465558884 ], [ -64.885525699441132, 18.330924609881549 ], [ -64.885242893892212, 18.331017313775192 ], [ -64.884977522710244, 18.331031060102987 ], [ -64.884778368595164, 18.331045309345257 ], [ -64.884630008837746, 18.330949085050577 ], [ -64.884514673794683, 18.330868954017717 ], [ -64.884342174144479, 18.330677511257306 ], [ -64.884128938425306, 18.330422366002097 ], [ -64.883932298882428, 18.330151630399541 ], [ -64.883850994382556, 18.329976783815368 ], [ -64.883736666478057, 18.329769918345676 ], [ -64.883639267406693, 18.329531536904881 ], [ -64.88357522963571, 18.329277732754917 ], [ -64.883599035561815, 18.329206151267385 ], [ -64.883568525419605, 18.329114285564515 ], [ -64.883564500794478, 18.32903163995951 ], [ -64.883584283405128, 18.3289721284184 ], [ -64.883591825811948, 18.328921836975155 ], [ -64.883562656774927, 18.328897361806185 ], [ -64.883533152461553, 18.32889048864223 ], [ -64.8834773289596, 18.3288822743732 ], [ -64.883456375501282, 18.32887087497943 ], [ -64.88344497479784, 18.328843047047485 ], [ -64.883357467686665, 18.328739615622339 ], [ -64.88333114849803, 18.328680774633767 ], [ -64.883329473426272, 18.32864623986643 ], [ -64.88332846759738, 18.328627464394344 ], [ -64.88330684096718, 18.328594942594407 ], [ -64.8832555436951, 18.32844390062661 ], [ -64.883181616583272, 18.328430489575112 ], [ -64.883110705648335, 18.328424957516347 ], [ -64.883092096504697, 18.328410205359717 ], [ -64.883048679535079, 18.328327056840294 ], [ -64.883016828287737, 18.328242734853859 ], [ -64.882986653421767, 18.328162939097297 ], [ -64.88298095241521, 18.328107284543137 ], [ -64.882983803573325, 18.328052800836701 ], [ -64.883003583564687, 18.327989602566049 ], [ -64.883005596532087, 18.327959258752344 ], [ -64.883014144767742, 18.327912990624611 ], [ -64.883033758430599, 18.327756585545899 ], [ -64.882996879348582, 18.327578552527314 ], [ -64.88302001341242, 18.327470425924446 ], [ -64.883007271603844, 18.327317707575219 ], [ -64.882949939358582, 18.327168006712668 ], [ -64.882908366408515, 18.327065244530388 ], [ -64.882870478878317, 18.326997352391743 ], [ -64.882861426418572, 18.326871622474073 ], [ -64.882850194662922, 18.32676919556809 ], [ -64.882787834582984, 18.326701469757893 ], [ -64.882758831874412, 18.326580939242035 ], [ -64.882751455796097, 18.326495945393333 ], [ -64.882741900421877, 18.32643978661514 ], [ -64.882689766268754, 18.326389161205327 ], [ -64.882635451510112, 18.326342388853448 ], [ -64.882576944488164, 18.326320597204415 ], [ -64.882512068526466, 18.326341384334285 ], [ -64.882447361512561, 18.326333002427077 ], [ -64.882386842832886, 18.32631137579682 ], [ -64.882257593823851, 18.326287069575585 ], [ -64.882178134653259, 18.32623124476396 ], [ -64.882128009538576, 18.326192186386095 ], [ -64.882020050573828, 18.326040472556087 ], [ -64.881925671608428, 18.325953972583477 ], [ -64.881869848106476, 18.32585690878841 ], [ -64.881787370139591, 18.325798235438015 ], [ -64.881620067271911, 18.325727996365345 ], [ -64.881440694457808, 18.325651218095402 ], [ -64.881293508167403, 18.325595897507867 ], [ -64.88118437442597, 18.325577623640527 ], [ -64.88109267636122, 18.325540575610717 ], [ -64.881042386227705, 18.325497661555517 ], [ -64.881008523322578, 18.325449046493759 ], [ -64.880938281630563, 18.325378972439864 ], [ -64.880883968181593, 18.325337902404272 ], [ -64.880809704483795, 18.325281239401932 ], [ -64.880758742488013, 18.325212509072571 ], [ -64.880706439387097, 18.325162551596009 ], [ -64.8806930283356, 18.325154338636594 ], [ -64.880679282007748, 18.325145789091266 ], [ -64.88066419457482, 18.325136401355167 ], [ -64.880586410475985, 18.325075044484834 ], [ -64.880536119032797, 18.324977145118396 ], [ -64.88045213232266, 18.324868346653261 ], [ -64.88033830602285, 18.324745804479676 ], [ -64.880219282940629, 18.324618230542399 ], [ -64.880196650481537, 18.324579172164533 ], [ -64.880150886577894, 18.324558551363168 ], [ -64.880071592426077, 18.324518990070828 ], [ -64.879893728355341, 18.324429806578223 ], [ -64.879670100380906, 18.324350681374256 ], [ -64.879482513297773, 18.324232999397168 ], [ -64.879315544396661, 18.324147671581898 ], [ -64.879194678604506, 18.324058488089292 ], [ -64.879139022740674, 18.324001491120328 ], [ -64.879052856734688, 18.323965281281232 ], [ -64.878925787021558, 18.323910128331818 ], [ -64.878827048154733, 18.323872242111293 ], [ -64.878731997327066, 18.323822453582522 ], [ -64.878562850439778, 18.32375858344966 ], [ -64.878511720805875, 18.323737963957967 ], [ -64.878476684433735, 18.323710638940497 ], [ -64.878455394389448, 18.323660179859132 ], [ -64.878476516795615, 18.323569990537635 ], [ -64.87851440301614, 18.323444094291517 ], [ -64.87854642190166, 18.32331199543404 ], [ -64.878607106909783, 18.323167826630197 ], [ -64.87870383411888, 18.32301494064285 ], [ -64.878768374804338, 18.322917542881214 ], [ -64.878816822227918, 18.322889212034852 ], [ -64.878850685133045, 18.322864233951407 ], [ -64.878895779793766, 18.322809919192764 ], [ -64.878923607725653, 18.322781085431984 ], [ -64.878967696557538, 18.322753089861919 ], [ -64.879022681868776, 18.322725764844449 ], [ -64.879114212295406, 18.322667929684769 ], [ -64.879169197606643, 18.322633563865281 ], [ -64.879367178254711, 18.322530801683001 ], [ -64.879494750882259, 18.322428039500721 ], [ -64.879597513064539, 18.322293090794801 ], [ -64.879650485408376, 18.322207595341354 ], [ -64.879726091520979, 18.322125787927121 ], [ -64.879788955825006, 18.322055547544778 ], [ -64.879891718007286, 18.321920766476978 ], [ -64.879970675573077, 18.321827392030798 ], [ -64.880054494645094, 18.32174994320826 ], [ -64.880126914323284, 18.321658915696048 ], [ -64.880159100846925, 18.321621532389941 ], [ -64.880169997326277, 18.321607953700266 ], [ -64.880175529385042, 18.321591357524028 ], [ -64.880162118333544, 18.32141919315012 ], [ -64.880125573218152, 18.321282232786473 ], [ -64.880059691427562, 18.321101854143535 ], [ -64.880030856357109, 18.321008144421057 ], [ -64.879997832952427, 18.320923487158325 ], [ -64.879920887044307, 18.320823407186367 ], [ -64.879824495111507, 18.320693990539212 ], [ -64.879696754845781, 18.32055317449823 ], [ -64.879531295997651, 18.320461476433479 ], [ -64.879427191400566, 18.320403138359325 ], [ -64.879242790751846, 18.320329043609377 ], [ -64.878928301593703, 18.320318984011067 ], [ -64.878799890775383, 18.320324180793534 ], [ -64.878658571819983, 18.320324348431654 ], [ -64.878603083594328, 18.320274559902884 ], [ -64.878567879584068, 18.320211361632289 ], [ -64.878588666713938, 18.320130726375339 ], [ -64.87858481103666, 18.320084122971309 ], [ -64.878624206000495, 18.319991419077667 ], [ -64.878754796114663, 18.319815901940899 ], [ -64.879034919453261, 18.319629320686659 ], [ -64.879073643864558, 18.319589758084646 ], [ -64.879102980539756, 18.319520189564571 ], [ -64.879153439621064, 18.319480960929184 ], [ -64.879238599798214, 18.319426813808718 ], [ -64.879343876552696, 18.319344169513386 ], [ -64.879436412808161, 18.319265545914163 ], [ -64.879614276878954, 18.319153898910258 ], [ -64.879712009916886, 18.319154738410646 ], [ -64.879809575316699, 18.319155576601361 ], [ -64.879899597000019, 18.31916345559415 ], [ -64.879981907328727, 18.319199999399871 ], [ -64.880056506302822, 18.319250793757476 ], [ -64.880100930410947, 18.319322879469098 ], [ -64.880160441952114, 18.319387921759301 ], [ -64.880235040926152, 18.319431507676711 ], [ -64.880332606325965, 18.319446595109696 ], [ -64.880422460371165, 18.319468890982819 ], [ -64.880512482054485, 18.319476769975608 ], [ -64.880617757499238, 18.319470567364306 ], [ -64.88070778049223, 18.319471237916844 ], [ -64.880797968504055, 18.319457660536841 ], [ -64.880888159135225, 18.319451122649241 ], [ -64.880978348456665, 18.319451959530284 ], [ -64.881106423998688, 18.319402673915931 ], [ -64.881181861163498, 18.319353220663459 ], [ -64.881235170093305, 18.319281806814161 ], [ -64.881288311384935, 18.319210560602926 ], [ -64.88133407659825, 18.319139146753571 ], [ -64.881394592658523, 18.319075108982588 ], [ -64.88146265505469, 18.319018279651743 ], [ -64.881553010704636, 18.31899749252193 ], [ -64.881591233511131, 18.318919037870501 ], [ -64.881554353119441, 18.318839745028413 ], [ -64.881532726489183, 18.318753579022371 ], [ -64.881510933530478, 18.318667245378208 ], [ -64.881511605392745, 18.318581248320015 ], [ -64.88151244358346, 18.318495248642478 ], [ -64.881550831408731, 18.318387961539997 ], [ -64.881589220543731, 18.318309337940775 ], [ -64.881634819428598, 18.318238091729597 ], [ -64.881695504436721, 18.31817405526823 ], [ -64.881741100702186, 18.318102641418932 ], [ -64.881809329426801, 18.318045810778415 ], [ -64.881892142669926, 18.318003399637689 ], [ -64.881960371394541, 18.317946570306844 ], [ -64.881997923648498, 18.317932656340872 ], [ -64.882037318612333, 18.317900637455409 ], [ -64.882127506624101, 18.317887057456062 ], [ -64.882217697255271, 18.317887729318329 ], [ -64.882315261345411, 18.317888567509044 ], [ -64.882405284338404, 18.3179036536323 ], [ -64.882495304712052, 18.317911532625089 ], [ -64.882577447402639, 18.317948077740482 ], [ -64.882667470395631, 18.317955956733215 ], [ -64.8827576584074, 18.317956628595482 ], [ -64.882847512452599, 18.317978924468662 ], [ -64.882937535445592, 18.317986803461395 ], [ -64.88302755581924, 18.317994682454184 ], [ -64.883117746450409, 18.318002561446917 ], [ -64.883207766824057, 18.318010440439707 ], [ -64.883297788507377, 18.318018485760945 ], [ -64.88338781150037, 18.318019157623212 ], [ -64.883477999512195, 18.318005577623865 ], [ -64.88356098039344, 18.317977583363472 ], [ -64.88363641755825, 18.317935003274897 ], [ -64.883719230801375, 18.317899965593142 ], [ -64.883769523554292, 18.317885213436455 ], [ -64.883827189766123, 18.31787951373957 ], [ -64.883891227537163, 18.317870965503914 ], [ -64.883935986921585, 18.317862079372617 ], [ -64.884006394942048, 18.317856548623524 ], [ -64.884067416536141, 18.317844812643784 ], [ -64.884157101633548, 18.317824194461707 ], [ -64.884227509654011, 18.317827882500922 ], [ -64.884265563512713, 18.317855710432809 ], [ -64.884306802496098, 18.317892589514827 ], [ -64.884338486105321, 18.317929471216132 ], [ -64.884354244090844, 18.317963332811587 ], [ -64.88438844358194, 18.318076657506595 ], [ -64.884397662370191, 18.318113370260107 ], [ -64.884416437842276, 18.318153266828745 ], [ -64.884454660648771, 18.318184113556867 ], [ -64.884476619935981, 18.31823004640836 ], [ -64.884520876405986, 18.318288550810905 ], [ -64.884568318000731, 18.31834688888506 ], [ -64.884612742108914, 18.31838091942825 ], [ -64.884625148641248, 18.318423668464675 ], [ -64.884647275566579, 18.318466751467668 ], [ -64.884672422597873, 18.31851570049605 ], [ -64.884694381885026, 18.318558783499043 ], [ -64.884722712731389, 18.318604716350535 ], [ -64.884747858452954, 18.318663054424633 ], [ -64.884760263675616, 18.318715023558923 ], [ -64.884807537632241, 18.31878274936912 ], [ -64.884838550688869, 18.318886851346861 ], [ -64.884889345046531, 18.318939154447776 ], [ -64.884942989252579, 18.31901895151401 ], [ -64.884996633458684, 18.319107966058823 ], [ -64.885088331523434, 18.319227994969935 ], [ -64.885164271602662, 18.319323213435723 ], [ -64.885208528072667, 18.319381720457613 ], [ -64.885255969667469, 18.319443074708659 ], [ -64.885306428748777, 18.319526055589961 ], [ -64.885337944719879, 18.319578191052699 ], [ -64.885362922803324, 18.319645581586599 ], [ -64.88541053203619, 18.319694868510624 ], [ -64.885464679156712, 18.319722862771016 ], [ -64.885486807391715, 18.319747505578164 ], [ -64.885518323362817, 18.319790420943036 ], [ -64.885543636722559, 18.319827302644399 ], [ -64.885581690581262, 18.319858146753234 ], [ -64.885604321730682, 18.319840041833629 ], [ -64.885655786640882, 18.319806849481154 ], [ -64.885736252949982, 18.319749518545564 ], [ -64.885813366496222, 18.319719510008099 ], [ -64.885874219142522, 18.319704757851468 ], [ -64.885935071788765, 18.319696040667964 ], [ -64.886024758195845, 18.319687658760756 ], [ -64.886092148729745, 18.319666871630886 ], [ -64.886182170413065, 18.319603336774321 ], [ -64.886243693611902, 18.319521361721911 ], [ -64.886327345045743, 18.319464029476649 ], [ -64.886475201888743, 18.319382724976833 ], [ -64.886552315434983, 18.319352717749041 ], [ -64.886603780345183, 18.319316507909946 ], [ -64.886703189764603, 18.319283818471888 ], [ -64.886934027488905, 18.319230678489873 ], [ -64.887065455793788, 18.319194971565196 ], [ -64.887139384215288, 18.319165130665908 ], [ -64.887177773350288, 18.319150044542596 ], [ -64.887286738143871, 18.319141828963893 ], [ -64.887328312403554, 18.319135961628831 ], [ -64.887357146164334, 18.319133279418566 ], [ -64.887376424550894, 18.3191212094722 ], [ -64.887428057099271, 18.31906655943726 ], [ -64.887562838167014, 18.319015766389271 ], [ -64.887615308906106, 18.31902163241466 ], [ -64.887641963370982, 18.319060524464078 ], [ -64.887649507087474, 18.319122550577333 ], [ -64.887670461855464, 18.319192455683378 ], [ -64.887694434110074, 18.319241742607403 ], [ -64.887748078316122, 18.319291194550203 ], [ -64.887782611773787, 18.319363781866571 ], [ -64.887789820213982, 18.319461851490473 ], [ -64.887843632058207, 18.319490683941581 ], [ -64.887883697574637, 18.319532425839441 ], [ -64.887918397360806, 18.319579030553143 ], [ -64.887928624597237, 18.319659161585946 ], [ -64.887925271834376, 18.319721186389529 ], [ -64.887930300978667, 18.319778015720374 ], [ -64.887946058964189, 18.319819423651609 ], [ -64.887983274632177, 18.319886812875836 ], [ -64.888007246886787, 18.319930901707721 ], [ -64.888031051503219, 18.319993095459154 ], [ -64.888025351806334, 18.320031653541946 ], [ -64.888016634622829, 18.320096192917674 ], [ -64.888018813918734, 18.320145144565402 ], [ -64.888021160852702, 18.320189064449437 ], [ -64.88803121914134, 18.320284785829699 ], [ -64.888046809488742, 18.320339100588342 ], [ -64.888052006271209, 18.320372628217115 ], [ -64.888086538419202, 18.320434821968547 ], [ -64.888123923034982, 18.320486789793222 ], [ -64.888180081813232, 18.320559544747709 ], [ -64.888214782909017, 18.320614027144529 ], [ -64.888308827907849, 18.320666497883565 ], [ -64.888459534599292, 18.32074763474526 ], [ -64.888550728439952, 18.320820724976045 ], [ -64.888591130542352, 18.320844194316237 ], [ -64.888642260176255, 18.32087302807696 ], [ -64.888714512216325, 18.32094846524177 ], [ -64.888859351572705, 18.321078720079697 ], [ -64.888907462410373, 18.321138399258928 ], [ -64.888977033549793, 18.321206125069125 ], [ -64.889030845394018, 18.321242670184517 ], [ -64.889054985286748, 18.321253231387573 ], [ -64.889095386079475, 18.321276868365885 ], [ -64.889127572603115, 18.32130033770602 ], [ -64.889154393396495, 18.321323807046213 ], [ -64.889170320329868, 18.321357334674985 ], [ -64.889183731381365, 18.32137560723271 ], [ -64.889218766443776, 18.321380971653298 ], [ -64.889232346443123, 18.321378624719273 ], [ -64.889305269035788, 18.321379127633691 ], [ -64.889364611629048, 18.321387341902778 ], [ -64.889415910210801, 18.321403267526478 ], [ -64.889464357634438, 18.32141919315012 ], [ -64.889529064648343, 18.321442830128433 ], [ -64.889580195591918, 18.321474346099535 ], [ -64.889607016385298, 18.321489936446881 ], [ -64.889650099388291, 18.321516087997338 ], [ -64.889693016062836, 18.321550118540586 ], [ -64.889762753530761, 18.321607450785848 ], [ -64.889843555116158, 18.321636452184748 ], [ -64.889884123547006, 18.321644498815658 ], [ -64.890018904614749, 18.321676517701178 ], [ -64.890107920469234, 18.321705686738255 ], [ -64.890148153623784, 18.321731838288713 ], [ -64.890212860637689, 18.321755642905146 ], [ -64.890261140423206, 18.321784309027748 ], [ -64.890306905636464, 18.321810628216383 ], [ -64.890358036580096, 18.321834265194695 ], [ -64.890398437372767, 18.321852537752363 ], [ -64.890425427113996, 18.321855387600806 ], [ -64.890441686704264, 18.321852873028661 ], [ -64.890455434341732, 18.321832421175088 ], [ -64.890463648610819, 18.321809287111193 ], [ -64.890450571525889, 18.321762683707163 ], [ -64.890437495750689, 18.321713565730988 ], [ -64.890427271133547, 18.321654054189878 ], [ -64.890407657470689, 18.321421540084145 ], [ -64.890397765510556, 18.321307881422513 ], [ -64.890393071642507, 18.321232947172177 ], [ -64.890372284512637, 18.321150301567172 ], [ -64.890369937578612, 18.32110889494561 ], [ -64.890378488433669, 18.321052233252942 ], [ -64.890444873138676, 18.32088241581306 ], [ -64.890546126577647, 18.320738582285514 ], [ -64.890619718413177, 18.320664318587717 ], [ -64.890668836389409, 18.32060799217129 ], [ -64.890739748633962, 18.320546636610629 ], [ -64.890775120282342, 18.320510762047775 ], [ -64.890818872528257, 18.320464661558219 ], [ -64.890867824175984, 18.320421075640752 ], [ -64.890897831403777, 18.320390397860422 ], [ -64.890979469870217, 18.320326527727559 ], [ -64.891063625528204, 18.320280762514244 ], [ -64.891134367515292, 18.320232315090607 ], [ -64.891213326390755, 18.320176157622029 ], [ -64.89127350848446, 18.320142963959881 ], [ -64.891306196612902, 18.320114968389817 ], [ -64.891382305639922, 18.320076746892994 ], [ -64.891420190550775, 18.320064174032154 ], [ -64.89149328078156, 18.320051936447669 ], [ -64.891539382580845, 18.320041878159032 ], [ -64.891582631912343, 18.320034502080716 ], [ -64.891642143453453, 18.320032490422989 ], [ -64.891772064324698, 18.320007679977664 ], [ -64.891890918459126, 18.320006003596234 ], [ -64.891926291417178, 18.319993430735394 ], [ -64.891974906478993, 18.319983540084934 ], [ -64.89203441671043, 18.319976164006562 ], [ -64.892120917992713, 18.319979516769479 ], [ -64.892272296546423, 18.319978175664289 ], [ -64.892342535619093, 18.319986389933376 ], [ -64.892415459521374, 18.319997286412729 ], [ -64.892485698594044, 18.320000471537469 ], [ -64.892528950544886, 18.319995610031299 ], [ -64.892574882086649, 18.319993430735394 ], [ -64.892647804679314, 18.319996615860134 ], [ -64.892753751986334, 18.319994939478704 ], [ -64.892767330675952, 18.319994939478704 ], [ -64.892821310158354, 18.320005835958057 ], [ -64.892869757581991, 18.320019079371434 ], [ -64.892929101484924, 18.320032490422989 ], [ -64.893045274718759, 18.320038525396171 ], [ -64.893099421839224, 18.320041542882734 ], [ -64.893137140421629, 18.320044392731177 ], [ -64.893185755483387, 18.320047410217796 ], [ -64.893258678076052, 18.320050596652209 ], [ -64.893288517665667, 18.320050762980657 ], [ -64.893334282878982, 18.320058978559416 ], [ -64.893380215730417, 18.320072220663121 ], [ -64.893425980943732, 18.320080268603704 ], [ -64.89346654937458, 18.320085799352739 ], [ -64.89350980001575, 18.320091331411504 ], [ -64.893569143918739, 18.320102061562409 ], [ -64.893636534452639, 18.320110442159944 ], [ -64.89370409262466, 18.320123853211442 ], [ -64.893739128996742, 18.320131899842352 ], [ -64.893774165368825, 18.320137265572612 ], [ -64.893806519530642, 18.320145310893849 ], [ -64.893849770171812, 18.320156039735082 ], [ -64.89387927448513, 18.320169115510339 ], [ -64.893914310857213, 18.320184873495862 ], [ -64.89395471164994, 18.320200799119561 ], [ -64.893992430232345, 18.320219071677229 ], [ -64.89402210218384, 18.320227119617812 ], [ -64.8940544563456, 18.320232482728784 ], [ -64.894086810507417, 18.320245726142161 ], [ -64.894127211300088, 18.320251090562749 ], [ -64.894178508572168, 18.320254108049312 ], [ -64.8942407023236, 18.320259807746254 ], [ -64.894351343498613, 18.320286462211129 ], [ -64.89439174429134, 18.320286797487427 ], [ -64.89444304156342, 18.320292329546191 ], [ -64.894461984673683, 18.320295179394634 ], [ -64.894491656625178, 18.320298029243077 ], [ -64.894542953897201, 18.320303562611514 ], [ -64.89457799026934, 18.320316804715162 ], [ -64.894602297800191, 18.320324683707952 ], [ -64.89464538080324, 18.320335412549184 ], [ -64.894667006123768, 18.320340610641324 ], [ -64.894715621185526, 18.320348823600682 ], [ -64.894747975347343, 18.320348991238859 ], [ -64.894772282878193, 18.3203493265151 ], [ -64.894802122467866, 18.320352008725422 ], [ -64.89483984105027, 18.320357540784187 ], [ -64.894880241842941, 18.320365587415097 ], [ -64.894926342332553, 18.320363408119249 ], [ -64.894969592973723, 18.32036374339549 ], [ -64.894999264925218, 18.320363911033667 ], [ -64.895028936876656, 18.320364247619636 ], [ -64.895077551938471, 18.320372292940874 ], [ -64.895117952731141, 18.320380507209904 ], [ -64.895142260262048, 18.320388386202694 ], [ -64.895206968585626, 18.320409508608805 ], [ -64.895271844547324, 18.320415209615362 ], [ -64.895333870660636, 18.320426104785099 ], [ -64.895368907032719, 18.320433983777832 ], [ -64.895406625615124, 18.320444712619064 ], [ -64.895457922887203, 18.320460638242764 ], [ -64.895479380569611, 18.320468517235497 ], [ -64.895519781362339, 18.320479078438609 ], [ -64.895552135524099, 18.32049232185193 ], [ -64.895573760844684, 18.320502883055042 ], [ -64.895603265158002, 18.320523670184912 ], [ -64.895648862733196, 18.320557700728102 ], [ -64.895675684836249, 18.320578487857972 ], [ -64.895694460308391, 18.320596760415697 ], [ -64.895724132259829, 18.32061754754551 ], [ -64.895750954362882, 18.320641016885702 ], [ -64.895785655458724, 18.320677394362917 ], [ -64.895831420672039, 18.320706228123697 ], [ -64.895868971616267, 18.320732379674155 ], [ -64.895966034101662, 18.320769260065845 ], [ -64.895990173994392, 18.320785018051367 ], [ -64.895998220625302, 18.320790214833835 ], [ -64.896052032469527, 18.320811337240002 ], [ -64.896073657790112, 18.320821730804937 ], [ -64.896103162103429, 18.320840003362605 ], [ -64.896119423003427, 18.320845367783249 ], [ -64.896151777165187, 18.320855928986305 ], [ -64.896181281478562, 18.32086649018936 ], [ -64.896205589009412, 18.320877051392415 ], [ -64.896237775533052, 18.320900520732607 ], [ -64.896272811905192, 18.320913764145985 ], [ -64.896307680639097, 18.32093723348612 ], [ -64.896331988170004, 18.320955506043845 ], [ -64.896361492483322, 18.320971264029367 ], [ -64.89639384664514, 18.32098702201489 ], [ -64.896439611858455, 18.32100797678288 ], [ -64.896466433961507, 18.321033960695218 ], [ -64.89649040621606, 18.32106262681782 ], [ -64.896517228319112, 18.321086096158012 ], [ -64.896546732632487, 18.321106883287882 ], [ -64.896565340466452, 18.321140578554832 ], [ -64.896592162569505, 18.32117175924958 ], [ -64.896613620251912, 18.32120042537224 ], [ -64.896629545875612, 18.321218530291787 ], [ -64.89665100355802, 18.32124719641439 ], [ -64.896677658022952, 18.321291285246275 ], [ -64.896690901436273, 18.32131458694829 ], [ -64.896704312487827, 18.321332691867838 ], [ -64.896720238111527, 18.321356161207973 ], [ -64.896741695793935, 18.321384659692455 ], [ -64.896757621417635, 18.32140796139447 ], [ -64.896781761310365, 18.321441824299598 ], [ -64.896805733564918, 18.321473004994346 ], [ -64.896813612557708, 18.321506532623175 ], [ -64.896851163501935, 18.321535198745778 ], [ -64.896875303394722, 18.321548442159155 ], [ -64.896899610925573, 18.321564032506558 ], [ -64.896921068608037, 18.321579790492081 ], [ -64.896945208500767, 18.321598063049805 ], [ -64.89696113412441, 18.321623879323965 ], [ -64.89697722738623, 18.321639469671368 ], [ -64.89699332064805, 18.32165522765689 ], [ -64.897025674809868, 18.32167601478676 ], [ -64.89704445028201, 18.321678864635203 ], [ -64.897063393392273, 18.321676350063058 ], [ -64.897082336502535, 18.321676517701178 ], [ -64.897109326243708, 18.321676685339298 ], [ -64.897125587143705, 18.321674338405273 ], [ -64.89713111920247, 18.321661430268193 ], [ -64.89712324020968, 18.321643325348646 ], [ -64.897120725637535, 18.321620023646631 ], [ -64.897142686234361, 18.321573755518898 ], [ -64.897138998195203, 18.321537210403505 ], [ -64.897114355388055, 18.321502341669543 ], [ -64.897080492482928, 18.321476022480965 ], [ -64.897051154498058, 18.321456408818108 ], [ -64.89703321852636, 18.321432268925378 ], [ -64.89701075501506, 18.32140611737492 ], [ -64.89699952325941, 18.321386503712063 ], [ -64.89697052186051, 18.321336379906995 ], [ -64.896945711415185, 18.321310228356538 ], [ -64.896927940462263, 18.321275359622575 ], [ -64.896912351424533, 18.321236299935038 ], [ -64.89691285433895, 18.321184332110363 ], [ -64.89691084137155, 18.321149631014578 ], [ -64.896895083386028, 18.321127838055872 ], [ -64.896870441888495, 18.321101518867238 ], [ -64.896852504607125, 18.321073188020932 ], [ -64.896814283110302, 18.321025243511713 ], [ -64.896805398288677, 18.321012167736512 ], [ -64.896794166533027, 18.321003450553007 ], [ -64.8967762292516, 18.320981657594302 ], [ -64.896753764430628, 18.320948968156188 ], [ -64.896731302229, 18.320924828263458 ], [ -64.89670867107958, 18.320905214600657 ], [ -64.896681848976527, 18.320870345866695 ], [ -64.896636754315807, 18.320835309494555 ], [ -64.896542038764437, 18.320769427703965 ], [ -64.896478671545992, 18.320740761581362 ], [ -64.896435923819297, 18.32070572520928 ], [ -64.896411113373972, 18.32068812320415 ], [ -64.896383955994622, 18.320668509541292 ], [ -64.896343387563775, 18.320642190352714 ], [ -64.89630717772468, 18.320624420709407 ], [ -64.896277841049482, 18.320615535887782 ], [ -64.896171558466165, 18.320573626351802 ], [ -64.89610165336012, 18.320512270791085 ], [ -64.896061084929272, 18.320488130898354 ], [ -64.896022695794329, 18.320461811709777 ], [ -64.895966369377959, 18.320418058154189 ], [ -64.895937032702705, 18.320391738965554 ], [ -64.895792360984444, 18.320321164616587 ], [ -64.895747098685604, 18.320310099189442 ], [ -64.895672499711509, 18.320279086132814 ], [ -64.895643163036311, 18.320263663423532 ], [ -64.895593374507541, 18.320245893780282 ], [ -64.895543418340594, 18.320239020616384 ], [ -64.895439315053181, 18.320212198513332 ], [ -64.895348622817266, 18.320198452185537 ], [ -64.895255751285504, 18.320184705857741 ], [ -64.895187857837186, 18.320166768576314 ], [ -64.895124490618741, 18.320140281749559 ], [ -64.895027092857106, 18.320115638942411 ], [ -64.894970598802558, 18.320097870608777 ], [ -64.894911590175866, 18.320088816839359 ], [ -64.894793572922481, 18.320083452418714 ], [ -64.894718638672146, 18.320100216233129 ], [ -64.894650577585651, 18.320099714628384 ], [ -64.894593748254863, 18.320099210404294 ], [ -64.894537086562195, 18.320090157944492 ], [ -64.894482939441673, 18.320065850413641 ], [ -64.894444382668553, 18.320050260066239 ], [ -64.894397108711928, 18.320008685806499 ], [ -64.894340614657438, 18.319982366617921 ], [ -64.894295687634838, 18.319938613062334 ], [ -64.89427305648536, 18.319912461511876 ], [ -64.894151015916577, 18.319863678811942 ], [ -64.894090163270278, 18.319819926566026 ], [ -64.89404490097138, 18.319793438429599 ], [ -64.894006679474558, 18.319764939945117 ], [ -64.893972816569487, 18.319738788394659 ], [ -64.89392755427059, 18.319725378652834 ], [ -64.893879945037725, 18.319714145587511 ], [ -64.893786905867785, 18.319719846594069 ], [ -64.89369604599375, 18.319716995435954 ], [ -64.893648604399004, 18.319710123581729 ], [ -64.893605521395955, 18.319705428404006 ], [ -64.893569143918739, 18.319709451719461 ], [ -64.893532766441467, 18.319713475034916 ], [ -64.893485157208602, 18.319713139758619 ], [ -64.893453305961202, 18.319706435542571 ], [ -64.893419275418012, 18.319706098956601 ], [ -64.893312657558397, 18.319703081469981 ], [ -64.893274100785277, 18.319700566897836 ], [ -64.893224144618387, 18.319700231621539 ], [ -64.893178714681369, 18.319702075641146 ], [ -64.893115347462924, 18.319695034839071 ], [ -64.893026834522914, 18.319683467807181 ], [ -64.892954414844667, 18.319669889117506 ], [ -64.892877302608099, 18.319654131131983 ], [ -64.892802703634061, 18.319629655962956 ], [ -64.892739335105944, 18.319598810544448 ], [ -64.892685187985421, 18.319576683619118 ], [ -64.892632884884506, 18.319576179394971 ], [ -64.892574043895934, 18.319569307540746 ], [ -64.892512855973393, 18.319557906837304 ], [ -64.892440268657026, 18.319542148851781 ], [ -64.892383774602536, 18.319528737800226 ], [ -64.892304481760391, 18.319508622532624 ], [ -64.892220662688374, 18.319497055500676 ], [ -64.892181939586806, 18.319496718914763 ], [ -64.892141203517838, 18.319492025046713 ], [ -64.892018826363028, 18.319462856009636 ], [ -64.891971384768283, 18.319449444958138 ], [ -64.891926122469386, 18.319431842953009 ], [ -64.891873987006591, 18.319414074619431 ], [ -64.89175177879963, 18.319384905582353 ], [ -64.89168623359501, 18.319360596741831 ], [ -64.891631749888518, 18.319349197348004 ], [ -64.891581961359748, 18.319335787606178 ], [ -64.89155933152, 18.319327069113001 ], [ -64.89151406791143, 18.319320195949103 ], [ -64.891473331842462, 18.319308965503126 ], [ -64.891430248839413, 18.319291194550203 ], [ -64.89139185970447, 18.319273592545073 ], [ -64.891367050568817, 18.319264707723448 ], [ -64.891346597405573, 18.319253812553768 ], [ -64.891303849678877, 18.319229503713188 ], [ -64.891283565463425, 18.319212069346236 ], [ -64.891265460543877, 18.319192455683378 ], [ -64.891254396426405, 18.319166305442593 ], [ -64.891245511604723, 18.319142331878311 ], [ -64.891232100553225, 18.319127076807206 ], [ -64.891218689501727, 18.319103104552653 ], [ -64.891201087496597, 18.319038060952778 ], [ -64.891203938654712, 18.31896430147907 ], [ -64.891206619555362, 18.318916690936476 ], [ -64.891205110812052, 18.3188385715614 ], [ -64.89120125644439, 18.318754081936845 ], [ -64.891201759358864, 18.31870848436165 ], [ -64.891197568405232, 18.318660876438457 ], [ -64.891188849912055, 18.31861527755359 ], [ -64.891187005892505, 18.318567500682548 ], [ -64.891189689412442, 18.318532799586762 ], [ -64.891217348396538, 18.318474461512608 ], [ -64.891235957540232, 18.31843573841104 ], [ -64.891254396426405, 18.318401203643703 ], [ -64.891277530490242, 18.318351416424605 ], [ -64.891298151291664, 18.318314871309212 ], [ -64.89131206525758, 18.318280168903755 ], [ -64.891310219928357, 18.318245467807913 ], [ -64.891333690578165, 18.31814605838855 ], [ -64.891325642637582, 18.31808520574225 ], [ -64.891314578520053, 18.318063412783545 ], [ -64.891307874304005, 18.31804178746296 ], [ -64.89129228264693, 18.318013456616654 ], [ -64.891274177727382, 18.317998201545549 ], [ -64.891238135526407, 18.317982612507819 ], [ -64.891204106292832, 18.317967188488865 ], [ -64.891167896453737, 18.31795394638516 ], [ -64.891129673647242, 18.317923268604829 ], [ -64.891102517577565, 18.317901306698275 ], [ -64.891073348540544, 18.317872975851969 ], [ -64.891044010555675, 18.317851016564759 ], [ -64.891023727649895, 18.31783140159223 ], [ -64.890951475609825, 18.31778965969437 ], [ -64.890910739540857, 18.317776248642872 ], [ -64.890858770406567, 18.317754120407869 ], [ -64.890768245808772, 18.317736184436114 ], [ -64.890720470247402, 18.317737859507872 ], [ -64.890633298412524, 18.317695951281564 ], [ -64.890567584260111, 18.317688910479546 ], [ -64.890522320651542, 18.317673486460592 ], [ -64.890468007202571, 18.317644821647662 ], [ -64.890409332542504, 18.317613976229154 ], [ -64.890368765421329, 18.317576760561167 ], [ -64.890310258399381, 18.317517750624802 ], [ -64.890278911376129, 18.317478524608816 ], [ -64.890215710486132, 18.317428233165572 ], [ -64.890181847581061, 18.317408450554922 ], [ -64.890129881066116, 18.317388501615824 ], [ -64.890080092537346, 18.317364195394589 ], [ -64.890034996566897, 18.317344412783939 ], [ -64.889992082511753, 18.317313736313224 ], [ -64.889960566540651, 18.317276520645294 ], [ -64.889924859615974, 18.317211309407242 ], [ -64.889916142432526, 18.317172248410031 ], [ -64.889894014197466, 18.317117767322884 ], [ -64.889876075606423, 18.317080885621579 ], [ -64.889862833502718, 18.317041659605536 ], [ -64.889833832103818, 18.316989356504621 ], [ -64.889795610606939, 18.316950129178906 ], [ -64.889755208504596, 18.316902015721894 ], [ -64.889698883397898, 18.316851725588378 ], [ -64.889667367426796, 18.316827753333769 ], [ -64.889613051358481, 18.316805625098766 ], [ -64.889554210369909, 18.316783495554091 ], [ -64.889481959639568, 18.316745944609863 ], [ -64.889291857984233, 18.316681571562526 ], [ -64.889251120605593, 18.316668329458821 ], [ -64.889217259010138, 18.316652739111476 ], [ -64.889194626551046, 18.316641842632066 ], [ -64.889174343645323, 18.316630778514593 ], [ -64.889151880134023, 18.316593730484783 ], [ -64.889084154323825, 18.316562885066276 ], [ -64.88899815595596, 18.316529691404071 ], [ -64.888943841197317, 18.316511923070493 ], [ -64.888905284424197, 18.316507229202443 ], [ -64.88881023359653, 18.316469678258215 ], [ -64.888733455326587, 18.316429948018083 ], [ -64.888562129143395, 18.316300699009048 ], [ -64.888433718325132, 18.31618921964332 ], [ -64.888243784307974, 18.316120488004231 ], [ -64.888085366261862, 18.31606717907448 ], [ -64.888006073419774, 18.31604270259578 ], [ -64.887909178572556, 18.31596592563551 ], [ -64.887726620633714, 18.31582795944297 ], [ -64.887613967800974, 18.315727376556595 ], [ -64.887489747936229, 18.315674235264908 ], [ -64.887376927465311, 18.315591085435813 ], [ -64.887257401468673, 18.31550123139067 ], [ -64.887216833037826, 18.315470554919955 ], [ -64.887151454161653, 18.315417916542742 ], [ -64.887077358102033, 18.315337114957345 ], [ -64.887007285357811, 18.315304090242989 ], [ -64.886894129610596, 18.31525765447708 ], [ -64.88682875073448, 18.315218091875124 ], [ -64.886776782909806, 18.315185234798889 ], [ -64.886693299114086, 18.315128070191747 ], [ -64.886516943786603, 18.31506822337434 ], [ -64.886464808323808, 18.315052633026994 ], [ -64.88638568311984, 18.31502161997031 ], [ -64.88634712634672, 18.315006197261084 ], [ -64.886306557915873, 18.314975519480754 ], [ -64.886194072721253, 18.314866219410874 ], [ -64.88614461946878, 18.314822465855286 ], [ -64.886101704103908, 18.314800337620227 ], [ -64.88607236742871, 18.314776365365674 ], [ -64.886022746538117, 18.314747699243014 ], [ -64.885973125647467, 18.314708304279179 ], [ -64.885939430380517, 18.314673435545274 ], [ -64.88591478757337, 18.314636387515407 ], [ -64.885894503357918, 18.314612247622676 ], [ -64.885840523875572, 18.314564135475337 ], [ -64.88578637675505, 18.314513844032149 ], [ -64.88574144973245, 18.314478806350394 ], [ -64.885714292353157, 18.314467743542536 ], [ -64.885682608743934, 18.314454500129159 ], [ -64.885626114689387, 18.314432371894156 ], [ -64.88558085239049, 18.314416781546754 ], [ -64.885506085778275, 18.314388115424151 ], [ -64.885469875939179, 18.314385600852006 ], [ -64.885440371625862, 18.314383253917981 ], [ -64.885399467918717, 18.314393647482916 ], [ -64.885274074587016, 18.314462043845651 ], [ -64.885178185568634, 18.314524237597084 ], [ -64.885115656540904, 18.314582240394884 ], [ -64.885069892637262, 18.314608727221639 ], [ -64.885048098368884, 18.314627167417484 ], [ -64.885024126114274, 18.314645607613329 ], [ -64.884982887130889, 18.314665891828781 ], [ -64.884945839101022, 18.314677961775146 ], [ -64.884913484939261, 18.314681817452424 ], [ -64.884880963139324, 18.314677458860729 ], [ -64.884822457427049, 18.314683158557614 ], [ -64.884768311616199, 18.314689025892619 ], [ -64.884735788506589, 18.314688690616379 ], [ -64.884681641386123, 18.314688355340081 ], [ -64.884599498695536, 18.314679302880279 ], [ -64.884519200024556, 18.314683661472031 ], [ -64.884491204454491, 18.314678967603982 ], [ -64.884393471416558, 18.314685337853462 ], [ -64.884303282095118, 18.314706124983331 ], [ -64.884220302523488, 18.314734120553396 ], [ -64.884130279530495, 18.314733282362681 ], [ -64.884040257847175, 18.314725403369891 ], [ -64.883957947518468, 18.314696065385021 ], [ -64.883867759506643, 18.314695396142099 ], [ -64.88377773651365, 18.314694725589561 ], [ -64.88368771483033, 18.314686678958594 ], [ -64.883597694456682, 18.314671759163787 ], [ -64.883515382818302, 18.314642254850469 ], [ -64.883425528773103, 18.314620126615466 ], [ -64.883335508399455, 18.314605039182482 ], [ -64.883245654354255, 18.314582743309359 ], [ -64.883155631361262, 18.314567655876374 ], [ -64.883073322342227, 18.314538319201176 ], [ -64.882953459759619, 18.314501606447664 ], [ -64.882893949528182, 18.314436562847789 ], [ -64.882879866614417, 18.314335979961356 ], [ -64.882887411640525, 18.314335979961356 ], [ -64.882925465499227, 18.314263895559463 ], [ -64.883001070302157, 18.314221483109009 ], [ -64.883083883545282, 18.314186279098806 ], [ -64.883166695478792, 18.314158283528741 ], [ -64.883234925513079, 18.314101454197896 ], [ -64.88331036136816, 18.314059041747498 ], [ -64.883393174611342, 18.314031046177433 ], [ -64.883475987854467, 18.313995842167174 ], [ -64.883551592657398, 18.313946221276581 ], [ -64.883634405900523, 18.313911017266321 ], [ -64.883710010703453, 18.313854355573653 ], [ -64.88378561550644, 18.313811943123255 ], [ -64.883861052671193, 18.313769530672801 ], [ -64.883936489836003, 18.313719909782151 ], [ -64.883997174844126, 18.313655872011168 ], [ -64.884027852624513, 18.313577249721618 ], [ -64.883990973542495, 18.31349795687953 ], [ -64.883969346912238, 18.313411790873488 ], [ -64.883924922804113, 18.313339706471595 ], [ -64.883872954979438, 18.313267622069645 ], [ -64.883820988464493, 18.313195370029575 ], [ -64.883761644561503, 18.313123285627682 ], [ -64.883694587994228, 18.313065282829882 ], [ -64.883635076453118, 18.313000239230007 ], [ -64.883583108628443, 18.312928154828057 ], [ -64.883531140803825, 18.312856070426164 ], [ -64.883479340617328, 18.312783818386094 ], [ -64.883434916509145, 18.312711733984145 ], [ -64.883375404968035, 18.31264669038427 ], [ -64.883315893426925, 18.312581814422572 ], [ -64.883248839478995, 18.312523811624715 ], [ -64.883166695478792, 18.312480058069127 ], [ -64.883084386459757, 18.312436472151717 ], [ -64.882994363466764, 18.312435633961002 ], [ -64.882904341783387, 18.312427754968212 ], [ -64.882814321409739, 18.312405626733209 ], [ -64.882739722435701, 18.312361873177622 ], [ -64.882672665868427, 18.312296829577747 ], [ -64.882605610610824, 18.312231785977872 ], [ -64.882546266707834, 18.312152325497607 ], [ -64.882486756476396, 18.312087449535909 ], [ -64.882427243625614, 18.312022405936034 ], [ -64.882360188368011, 18.311964403138234 ], [ -64.882308389491186, 18.311892318736284 ], [ -64.882256420356839, 18.311820235644063 ], [ -64.882196908815729, 18.311755190734516 ], [ -64.882137398584291, 18.311690147134641 ], [ -64.882062799610196, 18.311639352776979 ], [ -64.881988200636101, 18.311581349979178 ], [ -64.881906056635898, 18.311537596423591 ], [ -64.881831457661804, 18.311486802065929 ], [ -64.881764402404201, 18.311428966906249 ], [ -64.881719979605748, 18.311349674064161 ], [ -64.881645380631653, 18.311298879706499 ], [ -64.881555191310156, 18.311305249955979 ], [ -64.881465000679043, 18.311318828645653 ], [ -64.881367436588903, 18.31131094965292 ], [ -64.88126987118909, 18.31130290302201 ], [ -64.88117984950577, 18.311287984536818 ], [ -64.881105250531675, 18.311244229671559 ], [ -64.881038195274073, 18.311179186071683 ], [ -64.88094867650517, 18.311113974833688 ], [ -64.880926380632047, 18.31109939162485 ], [ -64.88083937643529, 18.311085141072908 ], [ -64.88074918711385, 18.311084302882193 ], [ -64.880659165430473, 18.311083633639328 ], [ -64.880569311385329, 18.311061336456476 ], [ -64.880487001056622, 18.311024792650755 ], [ -64.880396979373302, 18.311009703908098 ], [ -64.880322211451357, 18.310966117990688 ], [ -64.880276615185892, 18.311037531840043 ], [ -64.880275776995177, 18.31112353151758 ], [ -64.88029002623739, 18.311209697523566 ], [ -64.880311819196152, 18.311295863529608 ], [ -64.880311148643557, 18.31138202953565 ], [ -64.88032539788577, 18.311468195541636 ], [ -64.880339647128039, 18.311554361547678 ], [ -64.880346352653817, 18.311640526243991 ], [ -64.880360601896029, 18.311726692250033 ], [ -64.880359762395642, 18.311812690617899 ], [ -64.880351549436227, 18.311898688985764 ], [ -64.88032824642454, 18.311984519715509 ], [ -64.880304946032197, 18.312070350445197 ], [ -64.880281644330182, 18.312156348813062 ], [ -64.880228503038552, 18.312227595024297 ], [ -64.880175360437249, 18.312298841235474 ], [ -64.880129596533607, 18.312370255084829 ], [ -64.880076455241976, 18.312441501296007 ], [ -64.880015770233797, 18.312505539067047 ], [ -64.879940333069044, 18.31255515995764 ], [ -64.879857352187742, 18.3125903639679 ], [ -64.879767162866244, 18.312603942657574 ], [ -64.879676973544804, 18.312610312907054 ], [ -64.879579240506871, 18.312623891596729 ], [ -64.879489218823494, 18.312623221044134 ], [ -64.879399029502054, 18.312615342051345 ], [ -64.878904329339093, 18.31251811192783 ], [ -64.878814475293893, 18.312495816054707 ], [ -64.878717245170378, 18.312459103301137 ], [ -64.878627391125235, 18.312436975066134 ], [ -64.878537369441858, 18.312414679193012 ], [ -64.878440139318343, 18.312385174879637 ], [ -64.878357828989635, 18.312348629764244 ], [ -64.87829077373209, 18.312283586164369 ], [ -64.878216174757995, 18.312240000246959 ], [ -64.878140569955065, 18.312282412697357 ], [ -64.878064965152078, 18.312339074390025 ], [ -64.877989360349147, 18.312403112161064 ], [ -64.877906547106022, 18.312438316171267 ], [ -64.877816190146405, 18.312459103301137 ], [ -64.877726168463084, 18.312458265110422 ], [ -64.877628770701392, 18.312428760797104 ], [ -64.877546460372685, 18.312392215681712 ], [ -64.877471693760469, 18.312348629764244 ], [ -64.877397094786375, 18.312297835406639 ], [ -64.877330039528772, 18.312240000246959 ], [ -64.877270527987662, 18.312174956647084 ], [ -64.877211016446552, 18.312109913047209 ], [ -64.877136417472457, 18.312066327129742 ], [ -64.877061818498419, 18.312015365133959 ], [ -64.877017394390236, 18.311943280732066 ], [ -64.876965426565619, 18.311871197639789 ], [ -64.876921002457436, 18.311799111928224 ], [ -64.876891665782239, 18.311719986724256 ], [ -64.876884960256461, 18.311633988356391 ], [ -64.876878254730741, 18.311547822350349 ], [ -64.876901556432756, 18.311461991620661 ], [ -64.876902226985294, 18.311375825614618 ], [ -64.876917984970873, 18.311289994884874 ], [ -64.876971293900624, 18.311221598522138 ], [ -64.877001971681011, 18.311142808594468 ], [ -64.877010185950041, 18.311056811536275 ], [ -64.877018567857249, 18.310970979496858 ], [ -64.877049245637579, 18.310892189569188 ], [ -64.877087467134402, 18.310813734917815 ], [ -64.877125688631281, 18.310735112628265 ], [ -64.877163910128104, 18.310656491648388 ], [ -64.877187211830119, 18.31057065960897 ], [ -64.877202969815642, 18.310484662550778 ], [ -64.877263654823764, 18.310420623470122 ], [ -64.877331715910259, 18.31036379544895 ], [ -64.877407153075012, 18.31032138168888 ], [ -64.877490133956314, 18.31028617767862 ], [ -64.877580490915932, 18.310258349746732 ], [ -64.877663304159057, 18.31023035548634 ], [ -64.877753661118675, 18.31020956835647 ], [ -64.8778364743618, 18.310181403838612 ], [ -64.87791191152661, 18.310138991388214 ], [ -64.877994892407912, 18.31009674657588 ], [ -64.87806295349435, 18.310039918554764 ], [ -64.878123638502473, 18.309975879474052 ], [ -64.878206954660072, 18.309897592460857 ], [ -64.878260095951703, 18.309826347559294 ], [ -64.878253390425925, 18.309740181553309 ], [ -64.878224053750728, 18.309661056349341 ], [ -64.87814945477669, 18.309603053551484 ], [ -64.877872348924654, 18.309514874578099 ], [ -64.877782494879455, 18.309499788454787 ], [ -64.877692640834255, 18.309470282831796 ], [ -64.877602619150935, 18.309462403839007 ], [ -64.877512597467614, 18.309454524846217 ], [ -64.877422408146117, 18.309453855603351 ], [ -64.877332386462797, 18.309445807662769 ], [ -64.877242364779477, 18.309445138419846 ], [ -64.877152175458036, 18.309451676307447 ], [ -64.877061986136539, 18.309450836807059 ], [ -64.876971964453219, 18.309450167564194 ], [ -64.876888983571916, 18.309485371574397 ], [ -64.876798961888596, 18.309491740514204 ], [ -64.876715981007351, 18.309519737393941 ], [ -64.876633167764169, 18.309547731654277 ], [ -64.876550354521044, 18.309575728534014 ], [ -64.876467542587591, 18.309603890432527 ], [ -64.876384560396616, 18.309638926804666 ], [ -64.876301747153491, 18.309667091322524 ], [ -64.876226309988681, 18.309716544574997 ], [ -64.876165624980558, 18.309780582345979 ], [ -64.876090187815748, 18.309822993486762 ], [ -64.876007206934503, 18.309858197496965 ], [ -64.875931769769693, 18.309907818387614 ], [ -64.875848788888391, 18.309943022397874 ], [ -64.87575859956695, 18.309963809527687 ], [ -64.875668411555125, 18.309970179777167 ], [ -64.875578220924012, 18.309976717664824 ], [ -64.875488200550365, 18.309975879474052 ], [ -64.87539063384088, 18.30995358360093 ], [ -64.87530077979568, 18.309931455365927 ], [ -64.875203382033988, 18.309916201604494 ], [ -64.875165832399432, 18.309908825526179 ], [ -64.87511805552839, 18.309884013771182 ], [ -64.875028032535397, 18.309861717898002 ], [ -64.874953433561302, 18.309818133290264 ], [ -64.874901465736684, 18.309746047578642 ], [ -64.874872296699607, 18.309652505494284 ], [ -64.874858047457394, 18.309566339488299 ], [ -64.874836254498632, 18.309480173482257 ], [ -64.874822006566092, 18.309394007476271 ], [ -64.874815299730642, 18.309307841470229 ], [ -64.874808595514594, 18.309221675464244 ], [ -64.874801888679144, 18.309135678406051 ], [ -64.874810102948175, 18.309049678728456 ], [ -64.874840780728562, 18.308970888800786 ], [ -64.874871627456685, 18.308892266511236 ], [ -64.874934825727337, 18.308831078588696 ], [ -64.875010765806564, 18.308789673276806 ], [ -64.87507430066313, 18.308729992787846 ], [ -64.875156443353717, 18.308700488474528 ], [ -64.875232383432945, 18.308659083162638 ], [ -64.875314527433147, 18.308629746487441 ], [ -64.875402871425365, 18.308606277147248 ], [ -64.875497586976735, 18.308577108110228 ], [ -64.875579729667265, 18.308547602487181 ], [ -64.875668074969155, 18.308524302094838 ], [ -64.875750217659743, 18.308482895473276 ], [ -64.875838562961633, 18.308459592461588 ], [ -64.875920874600013, 18.30842405448476 ], [ -64.876003015980871, 18.308388681526708 ], [ -64.876097731532241, 18.308347276214818 ], [ -64.876173671611468, 18.308305869593198 ], [ -64.876249611690696, 18.308264461661963 ], [ -64.876325551769924, 18.30822288740228 ], [ -64.876401659487328, 18.308175447117208 ], [ -64.876477599566556, 18.308127836574613 ], [ -64.876541134423121, 18.308068326343175 ], [ -64.876604501641566, 18.308008647163888 ], [ -64.876655631275469, 18.307936898038292 ], [ -64.876687817799109, 18.307858946301337 ], [ -64.876701061212486, 18.3077749595912 ], [ -64.876676753681636, 18.307690469966587 ], [ -64.876664851373391, 18.307606147980152 ], [ -64.876621433094101, 18.307533728301962 ], [ -64.876584385064291, 18.307455106012412 ], [ -64.876509283175778, 18.30739442100429 ], [ -64.876440551536746, 18.307333735996167 ], [ -64.876359079398753, 18.307297023242654 ], [ -64.876271069373161, 18.307272211487657 ], [ -64.876182891709391, 18.307271542244735 ], [ -64.876094714045678, 18.307282774000385 ], [ -64.876006536381908, 18.307288138420972 ], [ -64.875918358718195, 18.307281432895252 ], [ -64.875843256829683, 18.3072386851685 ], [ -64.875787265689553, 18.307166096542517 ], [ -64.875743847410263, 18.307093510535822 ], [ -64.875694058881493, 18.307020923219454 ], [ -64.875657010851683, 18.306942468568081 ], [ -64.875613592572392, 18.306869881251714 ], [ -64.875589117403365, 18.306785559265279 ], [ -64.875571012483817, 18.306701069640724 ], [ -64.8755275955142, 18.306622614989294 ], [ -64.875484175925237, 18.306550026363311 ], [ -64.875428184785108, 18.306477440356616 ], [ -64.875359285507955, 18.306422790321676 ], [ -64.875303294367825, 18.306356237978491 ], [ -64.875247135589575, 18.306289517997186 ], [ -64.875197514698982, 18.306216929371146 ], [ -64.875147727479884, 18.306138308391326 ], [ -64.875110679450074, 18.306059853739896 ], [ -64.875067259861112, 18.305987434061706 ], [ -64.875036583390397, 18.305907135390726 ], [ -64.875005736662217, 18.305828680739353 ], [ -64.874993331439555, 18.305797164768251 ], [ -64.874992997472987, 18.305796158939415 ], [ -64.874974892553439, 18.305750226087923 ], [ -64.874963156573642, 18.305665904101488 ], [ -64.874963828435909, 18.30558174975323 ], [ -64.874970867928312, 18.305497595404916 ], [ -64.874996851840592, 18.305413608694778 ], [ -64.875029038364232, 18.305335656957823 ], [ -64.875061224887929, 18.305257705220868 ], [ -64.875099614022872, 18.305179921122033 ], [ -64.875106654824947, 18.305095766773775 ], [ -64.875138841348587, 18.30501781503682 ], [ -64.875145883460277, 18.304933660688505 ], [ -64.875121406981577, 18.30484933870207 ], [ -64.875046306402737, 18.304800556002192 ], [ -64.874964832955129, 18.304769878221805 ], [ -64.874870621627849, 18.304745067776537 ], [ -64.874782276325959, 18.304762334505369 ], [ -64.874700133635372, 18.304797706153749 ], [ -64.874687391826797, 18.304828551572257 ], [ -64.874667945802059, 18.304875657890705 ], [ -64.874623186417637, 18.3049474070163 ], [ -64.874541546641524, 18.30491672923597 ], [ -64.874491925750874, 18.304844141919602 ], [ -64.874461081642039, 18.304759652295047 ], [ -64.874405090501966, 18.30468706497868 ], [ -64.874329988613454, 18.304644317251984 ], [ -64.874254885415269, 18.304583632243862 ], [ -64.874179783526756, 18.304534849543927 ], [ -64.874098311388764, 18.304498136790414 ], [ -64.874016671612651, 18.304461424036845 ], [ -64.873935199474658, 18.304424711283332 ], [ -64.873860097586146, 18.304381963556636 ], [ -64.873775272685293, 18.304376096221574 ], [ -64.873706205769963, 18.304321781462932 ], [ -64.873660440556648, 18.304248523593969 ], [ -64.873672007588596, 18.304215163603317 ], [ -64.873687765574118, 18.304169733666299 ], [ -64.873764377515613, 18.304129165235452 ], [ -64.873847358396858, 18.304104522428304 ], [ -64.873930505606609, 18.304079879621099 ], [ -64.874016840560444, 18.304058421938691 ], [ -64.874109544454086, 18.304059092491286 ], [ -64.874192691663836, 18.304028079434659 ], [ -64.874266118480591, 18.303978123267711 ], [ -64.874322946501707, 18.303915258963741 ], [ -64.874383128595412, 18.303855579784454 ], [ -64.874456555412166, 18.303808641104126 ], [ -64.874542887746657, 18.303790368546458 ], [ -64.874632406515559, 18.303784836487694 ], [ -64.874718741469394, 18.303775951666069 ], [ -64.874808092600119, 18.303782992468086 ], [ -64.874897611369022, 18.303787015783541 ], [ -64.874986962499804, 18.303790871460876 ], [ -64.87506960679508, 18.303816855373213 ], [ -64.875152252400085, 18.303849209534974 ], [ -64.875228024841192, 18.303894136557574 ], [ -64.875303798591915, 18.303942248704914 ], [ -64.87537956972335, 18.303987175727514 ], [ -64.875455509802578, 18.304032102750114 ], [ -64.875531283553357, 18.304077029772657 ], [ -64.875604204836293, 18.304083902936611 ], [ -64.875635385531098, 18.304084238212852 ], [ -64.875724905609673, 18.304078538515967 ], [ -64.875811237944163, 18.304057080833559 ], [ -64.875891033700725, 18.304023050290311 ], [ -64.875967645642163, 18.303979296734724 ], [ -64.876041069839573, 18.303932358054396 ], [ -64.876107789820878, 18.303879049124589 ], [ -64.876164786789843, 18.303809982209259 ], [ -64.876185407591265, 18.303727839518729 ], [ -64.876212563660886, 18.303648881952881 ], [ -64.876243073803096, 18.303569924387091 ], [ -64.876240559230951, 18.303484428933643 ], [ -64.876253971592121, 18.303471856072861 ], [ -64.876326892875113, 18.303466156375919 ], [ -64.876409538480118, 18.303492140288256 ], [ -64.876488663684086, 18.303527679574813 ], [ -64.876574829690071, 18.303537905501571 ], [ -64.876651441631566, 18.303494151945984 ], [ -64.876731236078456, 18.303456768639876 ], [ -64.876811199473138, 18.303419386643441 ], [ -64.876900718242041, 18.303417038399743 ], [ -64.876993422135627, 18.303430449451298 ], [ -64.877050251466471, 18.303367585147271 ], [ -64.877070368043746, 18.303336069176225 ], [ -64.877098028337514, 18.303297009488631 ], [ -64.877164748318819, 18.30324370055888 ], [ -64.877231468300124, 18.303187374142453 ], [ -64.877295003156689, 18.303130880087963 ], [ -64.877361723137994, 18.303077571158155 ], [ -64.877418720106959, 18.303014706854128 ], [ -64.877482087325404, 18.302955027674898 ], [ -64.877532546406769, 18.302885793121391 ], [ -64.877595913625157, 18.30282946670502 ], [ -64.877652910594122, 18.30276660240105 ], [ -64.877706554800227, 18.302700552972283 ], [ -64.877766736893932, 18.302640873793052 ], [ -64.877833456875237, 18.302578009489025 ], [ -64.87796320879869, 18.302528388598432 ], [ -64.878049542442852, 18.30251648759986 ], [ -64.878132188047857, 18.302542471512197 ], [ -64.878214666014685, 18.302574824364285 ], [ -64.87829731161969, 18.302600809586295 ], [ -64.878370569488595, 18.302553869596295 ], [ -64.878456735494638, 18.302567280647793 ], [ -64.878532507935688, 18.302612207670393 ], [ -64.878614985902573, 18.30264774695695 ], [ -64.878667456641608, 18.302717819701115 ], [ -64.878693272915825, 18.30279711254326 ], [ -64.87869260236323, 18.302882607996708 ], [ -64.878681873521998, 18.302964750687238 ], [ -64.878704337033298, 18.303047397601915 ], [ -64.878723447781738, 18.30312970662095 ], [ -64.878729315116743, 18.303215369712518 ], [ -64.878731829688945, 18.303300865165966 ], [ -64.87873115913635, 18.303389378105976 ], [ -64.878726968182775, 18.303474873559423 ], [ -64.878719592104403, 18.303560369012871 ], [ -64.878705678138488, 18.303642511703458 ], [ -64.878685058646738, 18.303724654393989 ], [ -64.878664439155045, 18.303806797084576 ], [ -64.878627223487058, 18.303885587012246 ], [ -64.878600066107765, 18.303964544578037 ], [ -64.878549774664521, 18.304033779131544 ], [ -64.878539716375883, 18.304039981742847 ], [ -64.878484731064646, 18.304091949567521 ], [ -64.878424046056523, 18.304153640404479 ], [ -64.878368390192747, 18.304220192747664 ], [ -64.878317763473262, 18.304291438958842 ], [ -64.87826210760943, 18.304362685170076 ], [ -64.878216342396115, 18.304434099019375 ], [ -64.8781705771828, 18.304505345230609 ], [ -64.878129841113832, 18.304586314454127 ], [ -64.878084243538638, 18.304662422171532 ], [ -64.878058427264477, 18.304743559033227 ], [ -64.877992880750185, 18.304800388364015 ], [ -64.877912414441028, 18.30483324544025 ], [ -64.877832115770104, 18.304865934878364 ], [ -64.877771430761925, 18.304927625715322 ], [ -64.877740752981595, 18.305013456445067 ], [ -64.87774494393517, 18.305099622451053 ], [ -64.877774280610424, 18.305181094589045 ], [ -64.877813507936082, 18.305257872858988 ], [ -64.877867990332902, 18.305330124899058 ], [ -64.877922472729722, 18.305397515432958 ], [ -64.87799707170376, 18.305445795218418 ], [ -64.878071838315975, 18.305494242642055 ], [ -64.878157166131302, 18.30546624707199 ], [ -64.878232603296112, 18.305419140753543 ], [ -64.878303178954695, 18.305362311422755 ], [ -64.878358834818528, 18.30529575907957 ], [ -64.878444162633798, 18.305267763509505 ], [ -64.878519599798608, 18.305225351059107 ], [ -64.878609621481928, 18.305240438492035 ], [ -64.878669133023095, 18.305303135157885 ], [ -64.878748928779601, 18.305342027207303 ], [ -64.878823527753696, 18.30538561312477 ], [ -64.878883039294806, 18.30544830979062 ], [ -64.878952609124553, 18.30550145108225 ], [ -64.87901212066572, 18.30556398010998 ], [ -64.879066603062483, 18.305631370643823 ], [ -64.879095939737681, 18.305713010419993 ], [ -64.879125276412879, 18.305794482557985 ], [ -64.879144554799439, 18.305880648563971 ], [ -64.879139358016971, 18.30590462081858 ], [ -64.879163833185999, 18.305963126530798 ], [ -64.879228373871456, 18.306020960380806 ], [ -64.879318395554776, 18.306026493749243 ], [ -64.879408584876273, 18.306027164301838 ], [ -64.879498606559594, 18.306023140986383 ], [ -64.879588628242914, 18.306028673045148 ], [ -64.879678649926234, 18.306038898971906 ], [ -64.879758444373124, 18.306073097153273 ], [ -64.879833212295011, 18.306116683070741 ], [ -64.879923233978332, 18.306127076635676 ], [ -64.879957598488204, 18.306203854905618 ], [ -64.879966819895799, 18.306289853273483 ], [ -64.879926083826774, 18.306366128629008 ], [ -64.879855508168134, 18.306418096453626 ], [ -64.879819801243514, 18.306494371809151 ], [ -64.879814101546572, 18.306580370177016 ], [ -64.879793314416759, 18.306661507038712 ], [ -64.879742686387544, 18.306732753249946 ], [ -64.879687031833441, 18.306799305593074 ], [ -64.879671273847919, 18.306885136322819 ], [ -64.879630370140774, 18.306970967052564 ], [ -64.879649648527334, 18.307052271552379 ], [ -64.879663897769547, 18.307138437558422 ], [ -64.879703291423709, 18.307215383466485 ], [ -64.879757775130201, 18.307282606362264 ], [ -64.879817285361639, 18.307345303028114 ], [ -64.879886856501059, 18.307398444319745 ], [ -64.879966652257622, 18.307437336369162 ], [ -64.880051477158474, 18.307457116360467 ], [ -64.880141498841795, 18.307477066609295 ], [ -64.880231520525172, 18.307482597358387 ], [ -64.880316513064145, 18.307502379969037 ], [ -64.880406199471224, 18.307531716644235 ], [ -64.880491192010197, 18.307551665583389 ], [ -64.880581381331695, 18.307547474629757 ], [ -64.880666541508845, 18.307529034433912 ], [ -64.88074633726535, 18.30756323261528 ], [ -64.880800818352498, 18.30763062314918 ], [ -64.88084524246068, 18.30770270755113 ], [ -64.880869551301203, 18.30778417837945 ], [ -64.88093409198666, 18.30784201353913 ], [ -64.880998631362445, 18.307900017646602 ], [ -64.881073399284332, 18.307943603564013 ], [ -64.881122852536805, 18.30801568665629 ], [ -64.8811974515109, 18.308059272573701 ], [ -64.881277247267406, 18.308098164623118 ], [ -64.881362072168258, 18.308117947233825 ], [ -64.881452092541963, 18.30813303335708 ], [ -64.881542115534955, 18.308148122099738 ], [ -64.881637166362566, 18.30814409747461 ], [ -64.881722494177893, 18.308120963410715 ], [ -64.881768259391208, 18.30804954956136 ], [ -64.881818886110693, 18.307978303350183 ], [ -64.881888454630769, 18.308031444641813 ], [ -64.881963222552656, 18.30807503055928 ], [ -64.882053076597856, 18.30810453618227 ], [ -64.882137901498709, 18.308124317483248 ], [ -64.882228089510534, 18.308129849542013 ], [ -64.882318112503526, 18.308125826226558 ], [ -64.882408300515294, 18.308121635272983 ], [ -64.882478374569189, 18.30811744431935 ], [ -64.882511399283544, 18.308114928437533 ], [ -64.882577113436014, 18.308058100416417 ], [ -64.882652550600824, 18.308006132591743 ], [ -64.882733015600252, 18.307973275515508 ], [ -64.882823204921692, 18.30796438938421 ], [ -64.882913226605069, 18.307960367378428 ], [ -64.88299855442034, 18.307941927182583 ], [ -64.883088743741837, 18.307937902557455 ], [ -64.883169042412817, 18.30790504548122 ], [ -64.883249508721917, 18.307867494536993 ], [ -64.883339362767117, 18.30788258327965 ], [ -64.883414129379332, 18.30792616919706 ], [ -64.883499121918305, 18.307945950498038 ], [ -64.883589143601625, 18.30794678737908 ], [ -64.883648656452465, 18.30800931640681 ], [ -64.88368302096228, 18.308086094676753 ], [ -64.883717386781825, 18.308162874256368 ], [ -64.883751752601313, 18.308239652526368 ], [ -64.883806234998133, 18.308307043060211 ], [ -64.883850491468138, 18.308383987658658 ], [ -64.883910003009248, 18.308446516686388 ], [ -64.883969683498208, 18.308509213352238 ], [ -64.884044282472303, 18.308552800579321 ], [ -64.884124076919136, 18.308586997451016 ], [ -64.884208901820045, 18.308616335435886 ], [ -64.884299091141486, 18.308617004678808 ], [ -64.884389112824806, 18.308612981363353 ], [ -64.884474440640133, 18.308589679661338 ], [ -64.884554906949234, 18.308556991532953 ], [ -64.884640067126384, 18.308533688521266 ], [ -64.884725059665413, 18.308553471131916 ], [ -64.884815081348734, 18.30855900319068 ], [ -64.884900409164004, 18.308540561685163 ], [ -64.884985736979331, 18.308517427621268 ], [ -64.885071064794602, 18.308489433360876 ], [ -64.885161086477922, 18.308494965419641 ], [ -64.885215568874742, 18.30856218831542 ], [ -64.885275080415852, 18.308624883671598 ], [ -64.885334591956962, 18.308687581647121 ], [ -64.885389074353782, 18.308754972181021 ], [ -64.885463673327877, 18.308803250656808 ], [ -64.885528214013277, 18.308861253454609 ], [ -64.885602812987372, 18.308919257562138 ], [ -64.885662324528482, 18.308981786589811 ], [ -64.885746981791215, 18.309030401651569 ], [ -64.885822418956025, 18.308987989201171 ], [ -64.885902717627005, 18.308974241563703 ], [ -64.885933060131038, 18.308968709504938 ], [ -64.8860193937752, 18.308989161358511 ], [ -64.88610589505754, 18.309001735528966 ], [ -64.886180326393458, 18.308958986492598 ], [ -64.886263139636583, 18.308932164389546 ], [ -64.88633270946633, 18.308983798247539 ], [ -64.88635668172094, 18.309066611490721 ], [ -64.886418037281658, 18.309126289360279 ], [ -64.886471010935168, 18.309193513565731 ], [ -64.886494983189721, 18.309276494446976 ], [ -64.886547956843231, 18.309343883671204 ], [ -64.886605121450373, 18.309407250889649 ], [ -64.886649880834796, 18.309478498410499 ], [ -64.886702854488306, 18.309545887634727 ], [ -64.886739231965578, 18.309620989523239 ], [ -64.886779800396425, 18.309696091411752 ], [ -64.886774938890255, 18.309778738326429 ], [ -64.886729006038763, 18.309849146346892 ], [ -64.886699501725445, 18.309927768636442 ], [ -64.886690449265643, 18.310010246603269 ], [ -64.886689778713105, 18.310092890898602 ], [ -64.886730347143953, 18.310168160425235 ], [ -64.886808298880908, 18.31020420262621 ], [ -64.886886250617863, 18.310240244827185 ], [ -64.886972584262026, 18.310260530352252 ], [ -64.887054894590733, 18.310288859888942 ], [ -64.887099486337036, 18.310360107409792 ], [ -64.887148436675034, 18.310431353621027 ], [ -64.887226220773869, 18.310475273505062 ], [ -64.887308363464456, 18.310507460028703 ], [ -64.887390506154986, 18.31054350353935 ], [ -64.887468625530119, 18.310579544430595 ], [ -64.887546577267074, 18.310619609947025 ], [ -64.887628719957604, 18.310647774464883 ], [ -64.887715053601767, 18.310664201693328 ], [ -64.887801554884106, 18.310680631541118 ], [ -64.887888056166389, 18.310689179776773 ], [ -64.887974725086849, 18.3106781156593 ], [ -64.888057369382182, 18.310647271550465 ], [ -64.88813196835622, 18.310600666836763 ], [ -64.888214615270897, 18.310569821418255 ], [ -64.88830111655318, 18.310586249956373 ], [ -64.888349899253114, 18.31065749747728 ], [ -64.888419469082862, 18.310709296354105 ], [ -64.888373536231427, 18.310779704374568 ], [ -64.888381079947919, 18.310862517617693 ], [ -64.888409243156104, 18.310933597500423 ], [ -64.888441597317865, 18.3110122184803 ], [ -64.888489541827084, 18.311082123586345 ], [ -64.888525247442033, 18.311159740047003 ], [ -64.888573360899045, 18.311229645153048 ], [ -64.88864158962366, 18.31128043951071 ], [ -64.888730605478145, 18.311285133378703 ], [ -64.88881978897075, 18.311274236899351 ], [ -64.8889049491479, 18.311259484742664 ], [ -64.888847616902638, 18.311324695980716 ], [ -64.888846946350043, 18.311409688519689 ], [ -64.888915175074658, 18.311460482877351 ], [ -64.888862032473355, 18.311525861753523 ], [ -64.888822135904775, 18.311550839836968 ], [ -64.888788775914122, 18.311571626966838 ], [ -64.888743681253345, 18.311644717197623 ], [ -64.88869439563905, 18.311713784112953 ], [ -64.8886092354619, 18.311732559585039 ], [ -64.888520219607415, 18.311735577071659 ], [ -64.888435059430265, 18.311762063898414 ], [ -64.888365824876814, 18.311811684789006 ], [ -64.888385270901495, 18.311892990598551 ], [ -64.888412931195262, 18.311978317104149 ], [ -64.888448638119939, 18.312055933564807 ], [ -64.888496582629102, 18.312129694348187 ], [ -64.88855257245956, 18.312195911415074 ], [ -64.88860470923197, 18.312262128481962 ], [ -64.888632201887617, 18.312343432981777 ], [ -64.88865583886593, 18.312424905119769 ], [ -64.88865097735976, 18.312509897658799 ], [ -64.888650305497492, 18.312594890197772 ], [ -64.88865768288548, 18.312680050374922 ], [ -64.888664891325675, 18.312765042913952 ], [ -64.88866891464113, 18.312780633261355 ], [ -64.888674614338015, 18.31286344650448 ], [ -64.888677967100932, 18.31294843904351 ], [ -64.888725911610095, 18.313018344149555 ], [ -64.88881492746458, 18.313011470985657 ], [ -64.88890008764173, 18.31298883983618 ], [ -64.888977367516418, 18.312950785977478 ], [ -64.88905062538538, 18.312905020764163 ], [ -64.889131931194868, 18.312870990220972 ], [ -64.889160764955648, 18.312837965506617 ], [ -64.889189094492281, 18.3128056113448 ], [ -64.88922631146994, 18.31272866543668 ], [ -64.88930342501618, 18.312690611578034 ], [ -64.889388248607361, 18.312714416194467 ], [ -64.889473073508213, 18.312730677094407 ], [ -64.889562089362698, 18.312731347647002 ], [ -64.889651106526856, 18.312735873876875 ], [ -64.889740122381284, 18.312732856390312 ], [ -64.889829304564216, 18.312733526942907 ], [ -64.889914129465126, 18.312749620204727 ], [ -64.889982527137533, 18.312800414562332 ], [ -64.890030471646696, 18.312870487306554 ], [ -64.889993254669093, 18.312947433214617 ], [ -64.889976324526174, 18.313028402438192 ], [ -64.889971629348508, 18.313113562615342 ], [ -64.889995098688644, 18.313194867115158 ], [ -64.890034996566897, 18.313268627898537 ], [ -64.890095178660602, 18.31333098928809 ], [ -64.890134910210406, 18.31340475007147 ], [ -64.890191067678984, 18.313470967138358 ], [ -64.890255274397816, 18.313529472850576 ], [ -64.890298860315227, 18.313561827012393 ], [ -64.890323669450879, 18.313580267208238 ], [ -64.890400112444581, 18.31362335021123 ], [ -64.890480746391802, 18.313654866182276 ], [ -64.890517460455044, 18.313717395210006 ], [ -64.890544450196217, 18.313790653078968 ], [ -64.890543610695829, 18.313875813256118 ], [ -64.890538750499331, 18.313964661472426 ], [ -64.890570432798881, 18.314042277933083 ], [ -64.890647043430647, 18.314081505258798 ], [ -64.890736060594804, 18.314093742843284 ], [ -64.890882073418254, 18.314048648182563 ], [ -64.890947283346577, 18.313991148299181 ], [ -64.890988523639692, 18.313918058068396 ], [ -64.891045688246777, 18.313852679192223 ], [ -64.891090950545674, 18.313779588961438 ], [ -64.891132020581267, 18.313706498730653 ], [ -64.89117711655166, 18.313629552822533 ], [ -64.89122640085634, 18.313560485907203 ], [ -64.891259425570695, 18.313483372360963 ], [ -64.891280381648357, 18.313402403137445 ], [ -64.891309381737585, 18.31332143391387 ], [ -64.891322289874722, 18.313236441374897 ], [ -64.891367553483235, 18.313163351144112 ], [ -64.891388506941553, 18.313082381920538 ], [ -64.891417509650182, 18.313001412696963 ], [ -64.891421866932262, 18.312970567278512 ], [ -64.891438464418172, 18.312920443473445 ], [ -64.891503674346495, 18.312862943590062 ], [ -64.89157693352513, 18.312817178376747 ], [ -64.891646166768908, 18.312767389847977 ], [ -64.891723447953268, 18.312729335989275 ], [ -64.891812463807753, 18.312722462825377 ], [ -64.89190164861003, 18.312723133377972 ], [ -64.891990664464515, 18.31272380393051 ], [ -64.892075824641665, 18.312705196096545 ], [ -64.892145057885443, 18.312643840535827 ], [ -64.89221429243895, 18.312594219645234 ], [ -64.892299621563893, 18.312556165786532 ], [ -64.892384948069491, 18.312533702275232 ], [ -64.892469772970401, 18.312549795537052 ], [ -64.892546215964046, 18.312593046178222 ], [ -64.892631040864899, 18.312620706471989 ], [ -64.892720056719384, 18.312613665669915 ], [ -64.892805384534654, 18.312587346481337 ], [ -64.892890544711804, 18.312568738647315 ], [ -64.892979560566289, 18.312569409199909 ], [ -64.893068576420774, 18.312558512720557 ], [ -64.893153736597924, 18.312539904886535 ], [ -64.893226994466829, 18.31249413967322 ], [ -64.893292374652674, 18.312436639789837 ], [ -64.893361607896452, 18.312382995583789 ], [ -64.893422795818992, 18.312321640023072 ], [ -64.89349219801062, 18.312268163455144 ], [ -64.893561432564127, 18.312218374926374 ], [ -64.893630667117577, 18.312168754035724 ], [ -64.893655645201022, 18.312087784812206 ], [ -64.893724879754529, 18.312037996283436 ], [ -64.893806016616224, 18.312007821417524 ], [ -64.89384725559961, 18.311934731186739 ], [ -64.893831665252208, 18.311853426686866 ], [ -64.893900899805715, 18.311803638158096 ], [ -64.89396929616845, 18.311854432515759 ], [ -64.894046577352867, 18.311812522979722 ], [ -64.894119835221773, 18.311766757766406 ], [ -64.894204995398923, 18.311744294255107 ], [ -64.89426635095964, 18.311682938694446 ], [ -64.894347487821335, 18.311648740513078 ], [ -64.894432647998485, 18.311626277001778 ], [ -64.894477910297383, 18.311553186770993 ], [ -64.894518981642648, 18.311480096540208 ], [ -64.894596262827008, 18.311442042681506 ], [ -64.894615708851745, 18.311523347181321 ], [ -64.894675890945393, 18.311585708570931 ], [ -64.89474831062364, 18.311632648560931 ], [ -64.894760380570006, 18.311652094585611 ], [ -64.894796255132803, 18.311702552357303 ], [ -64.894803798849296, 18.311760722793224 ], [ -64.894848390595598, 18.311768769424134 ], [ -64.894925336503718, 18.311761728622116 ], [ -64.894933383134628, 18.311754018577176 ], [ -64.894966072572686, 18.311727195164451 ], [ -64.894977974880931, 18.311762063898414 ], [ -64.894965234381971, 18.311831466090041 ], [ -64.894907902136708, 18.311896844966157 ], [ -64.894846714214168, 18.311958200526874 ], [ -64.894781335337996, 18.312015700410257 ], [ -64.894744287308185, 18.312092647628049 ], [ -64.89473540248656, 18.312177638857349 ], [ -64.89471293897526, 18.312230109596442 ], [ -64.894711430231951, 18.312233462359302 ], [ -64.894702377772148, 18.312254584765469 ], [ -64.894669353057793, 18.312331698311709 ], [ -64.894644374974348, 18.312412667535284 ], [ -64.894627443521813, 18.312493804396979 ], [ -64.894578157907461, 18.312566726989587 ], [ -64.894497021045765, 18.312597069493677 ], [ -64.894411860868615, 18.312615677327642 ], [ -64.894326700691465, 18.312630429484329 ], [ -64.894241540514315, 18.312656916311084 ], [ -64.894156212699045, 18.312683235499662 ], [ -64.89407507583735, 18.312713578003752 ], [ -64.894001817968388, 18.312759343217067 ], [ -64.893968793254032, 18.31283628912513 ], [ -64.893947838486042, 18.312917425986825 ], [ -64.893914813771687, 18.312994371894945 ], [ -64.893889835688185, 18.31307534111852 ], [ -64.893816410181159, 18.313128985324568 ], [ -64.893767124566807, 18.313205931232687 ], [ -64.893750360752392, 18.313286900456205 ], [ -64.893737452615312, 18.313371892995235 ], [ -64.893732591109142, 18.313456885534265 ], [ -64.893732423470965, 18.313483875275438 ], [ -64.893743990502912, 18.31353969877739 ], [ -64.893759413212194, 18.313621003277206 ], [ -64.89378305019045, 18.313702307777078 ], [ -64.893818757115127, 18.313779924237735 ], [ -64.893870892577922, 18.313846141304623 ], [ -64.89395974079423, 18.31385452321183 ], [ -64.894048756648715, 18.313866760796316 ], [ -64.894133413911447, 18.313894588728203 ], [ -64.894218741726718, 18.313868269539626 ], [ -64.894303901903868, 18.313845638390148 ], [ -64.894421416242835, 18.313838932864428 ], [ -64.89451043209732, 18.313831892062353 ], [ -64.894599447951748, 18.313836418292226 ], [ -64.894684272852601, 18.313852679192223 ], [ -64.894773288707086, 18.313853349744818 ], [ -64.894862472199691, 18.313846308942743 ], [ -64.894955679007751, 18.313835412463391 ], [ -64.895044694862236, 18.313828371661316 ], [ -64.895129855039386, 18.313813619504685 ], [ -64.895215015216536, 18.313795011670663 ], [ -64.895300175393686, 18.313772548159363 ], [ -64.895385335570836, 18.313749917009943 ], [ -64.895470495747986, 18.313731309175978 ], [ -64.895567725871501, 18.313720580334746 ], [ -64.895592703954947, 18.313639611111171 ], [ -64.895544759445784, 18.313569538367005 ], [ -64.895598068375591, 18.31350432712901 ], [ -64.895667302929041, 18.313450682922905 ], [ -64.895728490851582, 18.313389327362188 ], [ -64.895793869727754, 18.313331827478805 ], [ -64.895875006589449, 18.313301652612893 ], [ -64.895964022443934, 18.313298467488153 ], [ -64.896053038298362, 18.313302993718025 ], [ -64.896129648930184, 18.31334238868186 ], [ -64.896181616754802, 18.313408438110628 ], [ -64.896233752217597, 18.313474655177515 ], [ -64.896281696726817, 18.31354456028356 ], [ -64.896321426966949, 18.313618321066883 ], [ -64.896407928249232, 18.313699290290458 ], [ -64.896479342098587, 18.313766010271763 ], [ -64.896688219226007, 18.313986957345548 ], [ -64.896841440489595, 18.314221818385306 ], [ -64.896894917057523, 18.314349223374734 ], [ -64.8969240860946, 18.314456679425064 ], [ -64.896958116637848, 18.314549886233124 ], [ -64.896993655924348, 18.314671926801964 ], [ -64.897059370076818, 18.314770664359116 ], [ -64.897115864131365, 18.314911146433417 ], [ -64.897133801412735, 18.31500234158375 ], [ -64.897157772357673, 18.315134272803107 ], [ -64.897205718176508, 18.315255810457529 ], [ -64.897263218059891, 18.315413725589167 ], [ -64.897310994930933, 18.315481282451515 ], [ -64.897350222256648, 18.315579854989835 ], [ -64.89739783148957, 18.315735926101922 ], [ -64.897430688565748, 18.31580834447044 ], [ -64.897482656390423, 18.3159035642459 ], [ -64.897528589241858, 18.316087295651755 ], [ -64.897566809429009, 18.316170276533001 ], [ -64.897612743590173, 18.316229285159693 ], [ -64.897684827992066, 18.316312601317293 ], [ -64.897709469489598, 18.316349314070806 ], [ -64.897725564061091, 18.316378315469706 ], [ -64.897762612090901, 18.316445706003606 ], [ -64.897810890566689, 18.316523993016858 ], [ -64.897857998194809, 18.316583001643551 ], [ -64.897904097374749, 18.316625414094005 ], [ -64.897950031535856, 18.316679727542976 ], [ -64.898018260260471, 18.316770084502593 ], [ -64.898111299430411, 18.316968400426958 ], [ -64.898194111363864, 18.317120114256909 ], [ -64.898215905632242, 18.317212315236134 ], [ -64.898236691452439, 18.317308539530757 ], [ -64.898241386630161, 18.317354135796279 ], [ -64.898253287628734, 18.317378444636859 ], [ -64.898284637271331, 18.317381125537452 ], [ -64.898378345684137, 18.317426221507844 ], [ -64.898502062634407, 18.317532167505192 ], [ -64.898731225286951, 18.317892924791067 ], [ -64.898889643333007, 18.31815242863803 ], [ -64.8989691025036, 18.318248989518622 ], [ -64.899068848508932, 18.318309674526745 ], [ -64.899280072570377, 18.318394665756102 ], [ -64.899524152398385, 18.318468258901305 ], [ -64.89970654269905, 18.31856699776813 ], [ -64.899791536547696, 18.31868920597509 ], [ -64.899858759443475, 18.318805211570748 ], [ -64.89988843139497, 18.319155407653568 ], [ -64.899925982339198, 18.31929505153721 ], [ -64.900032263612843, 18.319406864869563 ], [ -64.900144582479015, 18.319501580420933 ], [ -64.900316074990599, 18.319648096158801 ], [ -64.900423029436183, 18.319674582985499 ], [ -64.900527131413924, 18.319692352628806 ], [ -64.900613297419966, 18.319712972120499 ], [ -64.900773728433421, 18.319753709499139 ], [ -64.900794346615442, 18.319777009891482 ], [ -64.900880512621484, 18.319811878625444 ], [ -64.901031889865521, 18.319864349364536 ], [ -64.901084529552406, 18.319964261698374 ], [ -64.901161306512677, 18.320050260066239 ], [ -64.901226685388849, 18.320056462677542 ], [ -64.901313521947429, 18.320014385503441 ], [ -64.901370518916394, 18.319963758783899 ], [ -64.901428018799777, 18.319867366851099 ], [ -64.901446626633742, 18.319767957431736 ], [ -64.901441263522827, 18.319702578555564 ], [ -64.901407903532174, 18.319652790026794 ], [ -64.901403543630749, 18.319602667531399 ], [ -64.901320562749447, 18.319553715883728 ], [ -64.901228529408399, 18.319518848459438 ], [ -64.901121577582217, 18.319478111080741 ], [ -64.901041446549414, 18.319449109681841 ], [ -64.901000373894419, 18.319388927588136 ], [ -64.900947735517207, 18.319269067624873 ], [ -64.900859894439463, 18.319083324561291 ], [ -64.900777750439204, 18.318960613439913 ], [ -64.900716059602189, 18.318854832461341 ], [ -64.900659900823996, 18.318811749458348 ], [ -64.900576584666396, 18.318799679511983 ], [ -64.900514727500934, 18.318713848782238 ], [ -64.900459237965606, 18.318605220574625 ], [ -64.900235943957796, 18.31851553285793 ], [ -64.900137875643566, 18.318392486460198 ], [ -64.900024553567903, 18.318292072521615 ], [ -64.899942409567643, 18.318227865802783 ], [ -64.899969231670696, 18.31817539637342 ], [ -64.899965878907835, 18.318121415581345 ], [ -64.899951629665566, 18.318083698308612 ], [ -64.899916259326858, 18.318047822436142 ], [ -64.899875020343416, 18.318036759628342 ], [ -64.899836797536921, 18.317954280351785 ], [ -64.899792542376588, 18.317849675459627 ], [ -64.899744430229248, 18.317767700407217 ], [ -64.899693803509763, 18.317743391566637 ], [ -64.8995784684667, 18.317728471771829 ], [ -64.899536054706573, 18.317703996602802 ], [ -64.89945910879851, 18.317622693412659 ], [ -64.899332709637918, 18.317556139759802 ], [ -64.899208323444725, 18.317400405233684 ], [ -64.89919306837362, 18.317317087766469 ], [ -64.899154679238677, 18.317253386581399 ], [ -64.89900296540867, 18.317108210639049 ], [ -64.898771123165204, 18.316829597353376 ], [ -64.898728040162212, 18.316758854056616 ], [ -64.898724518451502, 18.316736055269018 ], [ -64.898712617452929, 18.316714262310313 ], [ -64.898696859467407, 18.316685093273236 ], [ -64.898677413442726, 18.316662628452264 ], [ -64.898639862498442, 18.316641507355826 ], [ -64.898608849441814, 18.316606469674014 ], [ -64.898578002713634, 18.316557016421541 ], [ -64.898529052375579, 18.316483592224131 ], [ -64.898491836707592, 18.31643179203769 ], [ -64.898433332305046, 18.316374961397173 ], [ -64.898353536548484, 18.316311929455026 ], [ -64.898257981496727, 18.31619374456352 ], [ -64.898194615587954, 18.316084947408058 ], [ -64.898165780517559, 18.316018227426753 ], [ -64.898163099616909, 18.315758221975045 ], [ -64.898040219547681, 18.315464519946772 ], [ -64.897947516963711, 18.315290176277017 ], [ -64.897929747320461, 18.315180876207137 ], [ -64.897919352445854, 18.315084987188754 ], [ -64.897916502597411, 18.314963952448807 ], [ -64.897946677463324, 18.314817269072819 ], [ -64.897932260582934, 18.314756081150222 ], [ -64.897927568024613, 18.314704448601901 ], [ -64.897927903300854, 18.314675782479242 ], [ -64.897937291036953, 18.314614762194822 ], [ -64.897946846411173, 18.314527255083703 ], [ -64.897965118968841, 18.314435054104479 ], [ -64.898029659654298, 18.314295914444983 ], [ -64.898097888378913, 18.314103465855624 ], [ -64.898121022442751, 18.314036913512496 ], [ -64.898153207656719, 18.313959297051781 ], [ -64.898192939206524, 18.313856534869558 ], [ -64.898223615677239, 18.313796855690271 ], [ -64.898252952352436, 18.313784618105785 ], [ -64.898273908430099, 18.313776906751116 ], [ -64.898306596558484, 18.313772380521243 ], [ -64.898369797448481, 18.313720077420328 ], [ -64.898416736128752, 18.313672635825583 ], [ -64.898419418339074, 18.313650339952403 ], [ -64.898392093321604, 18.313614130113308 ], [ -64.898353536548484, 18.31357657916908 ], [ -64.898305089124904, 18.313525952449538 ], [ -64.898264353055879, 18.313440456996148 ], [ -64.898227305026069, 18.313379604349848 ], [ -64.898186904233341, 18.313324283762313 ], [ -64.898120853494959, 18.31326980136555 ], [ -64.898041394324366, 18.31318648520795 ], [ -64.897971824494618, 18.313110377490602 ], [ -64.897867050654611, 18.313031587562932 ], [ -64.897795972081553, 18.312979619738257 ], [ -64.897778705352721, 18.312945924471308 ], [ -64.897752386164086, 18.312876522279737 ], [ -64.897736460540443, 18.312804605515907 ], [ -64.897718858535313, 18.312687594091415 ], [ -64.897694048089988, 18.312608301249327 ], [ -64.897677116637453, 18.312526996749455 ], [ -64.897669572920961, 18.31250369504744 ], [ -64.897644427199396, 18.312480393345425 ], [ -64.897585586210823, 18.312460276768149 ], [ -64.897517188538416, 18.312405626733209 ], [ -64.897481984528156, 18.312369081617817 ], [ -64.897457006444711, 18.312343265343657 ], [ -64.897433035499773, 18.312299008873651 ], [ -64.897431862032761, 18.312296997215924 ], [ -64.897407385554061, 18.312251902555147 ], [ -64.897432028361266, 18.312172609713059 ], [ -64.897480140508605, 18.312099016567856 ], [ -64.897528421603738, 18.312025591060774 ], [ -64.897588436059266, 18.311963564947462 ], [ -64.897630679561871, 18.311889971802259 ], [ -64.897673093321998, 18.311816547604849 ], [ -64.897727240442521, 18.311743120788151 ], [ -64.897775520227981, 18.311669527642891 ], [ -64.897835533373836, 18.311607501529636 ], [ -64.897854142517531, 18.311522508990606 ], [ -64.897824973480454, 18.311442714543773 ], [ -64.897825810361496, 18.311357385418773 ], [ -64.897838384532008, 18.3112723928798 ], [ -64.897821788355714, 18.311135767792393 ], [ -64.897828492571819, 18.311062846509458 ], [ -64.897857495280391, 18.31098338471952 ], [ -64.897842072571166, 18.310902081529377 ], [ -64.897794128061946, 18.310832175113603 ], [ -64.897746183552783, 18.310762102369438 ], [ -64.897681978143623, 18.310703596657163 ], [ -64.897605367511801, 18.310664370641177 ], [ -64.897528755570363, 18.31062514200579 ], [ -64.897480812370816, 18.310555236899745 ], [ -64.897432866551981, 18.310485165465195 ], [ -64.897384923352433, 18.310415259049478 ], [ -64.897385761543205, 18.310326244504722 ], [ -64.897394477416981, 18.310241419603869 ], [ -64.897403363548278, 18.310156425755167 ], [ -64.897383917523598, 18.310074953617175 ], [ -64.897457175392503, 18.31002918840386 ], [ -64.897542335569653, 18.310002870524954 ], [ -64.897631351424138, 18.31000353976782 ], [ -64.897716176324991, 18.310031367699764 ], [ -64.897801001225844, 18.310051316638862 ], [ -64.897882138087539, 18.310020975444502 ], [ -64.897983894440983, 18.309956099482747 ], [ -64.898037034422941, 18.309890886935079 ], [ -64.898118340232486, 18.309856688753712 ], [ -64.898203500409636, 18.309834226552084 ], [ -64.898272733653414, 18.309784436713642 ], [ -64.898370131415049, 18.309758286472857 ], [ -64.8984552915922, 18.309735655323379 ], [ -64.898544307446684, 18.309736493514094 ], [ -64.898629636571684, 18.309713862364674 ], [ -64.898714292524687, 18.309741690296562 ], [ -64.898729716543642, 18.309822993486762 ], [ -64.898725021365919, 18.309907987335407 ], [ -64.89877699050021, 18.309974035454502 ], [ -64.898837172593915, 18.310036396844055 ], [ -64.898909592272162, 18.310083335524382 ], [ -64.898973796371592, 18.310145696913935 ], [ -64.899042192734385, 18.310200346948875 ], [ -64.899110421459, 18.310255164621992 ], [ -64.89919105540622, 18.31029439194765 ], [ -64.89925526081538, 18.310352897659925 ], [ -64.899303206634272, 18.31042280276597 ], [ -64.899343104512525, 18.31049656354935 ], [ -64.899427929413378, 18.310524391481238 ], [ -64.899500347781895, 18.310571331471237 ], [ -64.89956857650651, 18.310625981506178 ], [ -64.899636972869303, 18.310676774554167 ], [ -64.899668656478525, 18.310754391014825 ], [ -64.899696316772236, 18.310835695514641 ], [ -64.899687433260283, 18.31092068805367 ], [ -64.899694809338655, 18.311005849540493 ], [ -64.899698160791843, 18.31109084076985 ], [ -64.899758342885548, 18.311153202159403 ], [ -64.899859428686398, 18.311161751704731 ], [ -64.899883568579128, 18.311173654012975 ], [ -64.899866638436208, 18.311246911881881 ], [ -64.899837635727636, 18.311327881105456 ], [ -64.899824727590556, 18.311416730631436 ], [ -64.899811819453475, 18.311501554222616 ], [ -64.899807125585426, 18.311586546761646 ], [ -64.899875355619713, 18.311641196796586 ], [ -64.899915253498023, 18.311714957579909 ], [ -64.899963196697513, 18.311785031633804 ], [ -64.900003094575766, 18.311858791107511 ], [ -64.900051040394658, 18.311928696213556 ], [ -64.900111053540513, 18.311991057603109 ], [ -64.90012731444051, 18.311995080918564 ], [ -64.900171235634218, 18.312053418992662 ], [ -64.900227394412468, 18.312119636059549 ], [ -64.900299815400331, 18.312170430417154 ], [ -64.900384471353391, 18.312209657742869 ], [ -64.900465106610341, 18.312241341352092 ], [ -64.900554122464769, 18.312238156227352 ], [ -64.900623355708603, 18.312188367698582 ], [ -64.900652524745624, 18.312107566113184 ], [ -64.900681527454196, 18.312026596889609 ], [ -64.900714550858936, 18.311949484653042 ], [ -64.900731483621144, 18.311868514119851 ], [ -64.900736177489136, 18.311783521580821 ], [ -64.900757298585631, 18.311690817687179 ], [ -64.900774230038166, 18.311609848463661 ], [ -64.900799209431284, 18.311528880549758 ], [ -64.900832232836024, 18.311451765693846 ], [ -64.900881350812199, 18.311382531140396 ], [ -64.900934659742006, 18.311317319902344 ], [ -64.900975731087271, 18.311244229671559 ], [ -64.901020825747992, 18.311171139440773 ], [ -64.901037758510199, 18.311090002579078 ], [ -64.901002217914026, 18.310993107731861 ], [ -64.900917393013174, 18.310973158792763 ], [ -64.900918063565712, 18.310887998615556 ], [ -64.900963325864609, 18.310814908384771 ], [ -64.900993836006819, 18.310766963875608 ], [ -64.901008420525329, 18.310744165088011 ], [ -64.901065586442144, 18.310678953850015 ], [ -64.901139179587346, 18.310609886934685 ], [ -64.901208412831124, 18.310560266044035 ], [ -64.901285526377364, 18.310522213495062 ], [ -64.901370855502364, 18.310495892996755 ], [ -64.901451991054387, 18.310465550492722 ], [ -64.901537152541209, 18.31043923261376 ], [ -64.901626334724142, 18.310428334824735 ], [ -64.901711159624995, 18.310444429396227 ], [ -64.901767318403245, 18.310510646463115 ], [ -64.901803026637594, 18.3105882616141 ], [ -64.901859184106172, 18.310654311042867 ], [ -64.90195121744722, 18.31076327583645 ], [ -64.901986924371897, 18.310852460638728 ], [ -64.901990277134757, 18.310937619506205 ], [ -64.901977368997677, 18.311022612045235 ], [ -64.901956414229687, 18.311103582578426 ], [ -64.90193545946164, 18.311184550492328 ], [ -64.901942835540012, 18.311269710669478 ], [ -64.901933950718387, 18.311354704518124 ], [ -64.901941326796702, 18.311439695747481 ], [ -64.901952726190473, 18.311524855924631 ], [ -64.90197217221521, 18.311606160424503 ], [ -64.90197217221521, 18.311617895094571 ], [ -64.90197703372138, 18.311704061100556 ], [ -64.90199647974606, 18.311785365600429 ], [ -64.90205263852431, 18.311851582667316 ], [ -64.90211684393347, 18.311910088379534 ], [ -64.902177026027175, 18.311972449769144 ], [ -64.90223720812088, 18.312034643520519 ], [ -64.90229336689913, 18.312100860587407 ], [ -64.902314992219658, 18.312128520881174 ], [ -64.902320356640303, 18.312135226406951 ], [ -64.902345334723748, 18.312167077654294 ], [ -64.902393279232911, 18.312240838437674 ], [ -64.902428986157588, 18.312318454898332 ], [ -64.90246066976681, 18.31239607135899 ], [ -64.902458322832786, 18.312444183506329 ], [ -64.902443905952396, 18.312498665903149 ], [ -64.90241389872466, 18.312581143869977 ], [ -64.902389088279335, 18.31263378224719 ], [ -64.902347178743355, 18.312692958512002 ], [ -64.902308621970235, 18.312747105632525 ], [ -64.902247434047638, 18.312816172547855 ], [ -64.902158250555033, 18.312911223375522 ], [ -64.902071078720155, 18.312986660540332 ], [ -64.902011734817165, 18.313045669167025 ], [ -64.901912493035923, 18.313120938693658 ], [ -64.901736975899155, 18.313193861286322 ], [ -64.901585933931415, 18.31326041362945 ], [ -64.901412931366792, 18.313439115890958 ], [ -64.901313355618981, 18.313552439276293 ], [ -64.901194835451122, 18.31364564608441 ], [ -64.901131634561182, 18.3137629927852 ], [ -64.901095592360207, 18.313898947319956 ], [ -64.901054521014942, 18.314015958744505 ], [ -64.900979251488309, 18.314162139206019 ], [ -64.900946394412074, 18.314283341584144 ], [ -64.900913369697719, 18.314510826545586 ], [ -64.900958296720319, 18.314602524610336 ], [ -64.900969528475912, 18.314683158557614 ], [ -64.900993500730522, 18.314823470374449 ], [ -64.901017472985131, 18.314962276067376 ], [ -64.901034404437667, 18.315060009105309 ], [ -64.901121911548842, 18.315199316402982 ], [ -64.901168851538841, 18.315250781313182 ], [ -64.901202713134239, 18.315287829342992 ], [ -64.901264403971254, 18.315337785509939 ], [ -64.901395999914257, 18.315374162987155 ], [ -64.901505802898612, 18.315351028923317 ], [ -64.901563638058292, 18.315328899378585 ], [ -64.90158677212213, 18.315314819084165 ], [ -64.901639913413817, 18.315175176510252 ], [ -64.90169908967863, 18.315007369418424 ], [ -64.901747872378508, 18.314859178608799 ], [ -64.901811408544802, 18.314690031721511 ], [ -64.90196094045956, 18.314454500129159 ], [ -64.902139810359188, 18.314325754034599 ], [ -64.902336114625825, 18.314201031255436 ], [ -64.902551362002725, 18.314063232701074 ], [ -64.902795275502228, 18.313876651446833 ], [ -64.903018234233741, 18.31371638938117 ], [ -64.903135078020114, 18.31362318257311 ], [ -64.903256950950833, 18.31353651365265 ], [ -64.903358036751627, 18.31345638261979 ], [ -64.903441688185524, 18.313377760330297 ], [ -64.903485441741111, 18.313323445571598 ], [ -64.903515281330726, 18.313282374226333 ], [ -64.903531039316249, 18.313249517150098 ], [ -64.903563058201769, 18.3131621776771 ], [ -64.903597759297554, 18.312944248089877 ], [ -64.903631789840802, 18.312827069027207 ], [ -64.903669340785086, 18.312688599920307 ], [ -64.903715441274642, 18.312561697845297 ], [ -64.903759194830229, 18.312469496866072 ], [ -64.903810324464189, 18.312393892063142 ], [ -64.903842008073354, 18.312346115192099 ], [ -64.903845360836272, 18.312343265343657 ], [ -64.903878050274329, 18.312314599220997 ], [ -64.90393119156596, 18.312241508990212 ], [ -64.903960192964917, 18.312160539766694 ], [ -64.904009478579212, 18.312091472851364 ], [ -64.904062619870899, 18.312026093975192 ], [ -64.904103691216164, 18.311949148067129 ], [ -64.904140906884152, 18.311872034520889 ], [ -64.904194048175782, 18.311806824592509 ], [ -64.904202932997407, 18.311721830743863 ], [ -64.904215841134487, 18.311636838204834 ], [ -64.904208465056172, 18.311547989988526 ], [ -64.904225396508707, 18.311466853126831 ], [ -64.904250374592152, 18.311378172548643 ], [ -64.904279375991052, 18.311297204634741 ], [ -64.904296307443644, 18.311216234101551 ], [ -64.904385323298072, 18.311228471686036 ], [ -64.904470483475222, 18.311202152497458 ], [ -64.904559666967828, 18.311191256018105 ], [ -64.904644827144978, 18.311164770501023 ], [ -64.904722108329395, 18.31112671664232 ], [ -64.9047953661983, 18.311080950119333 ], [ -64.90488052637545, 18.311058486608033 ], [ -64.904892763959992, 18.311050776563093 ], [ -64.904977924137143, 18.31102831174212 ], [ -64.905063084314293, 18.311001992553486 ], [ -64.905148076853266, 18.311018085815306 ], [ -64.905233069392295, 18.311003333658675 ], [ -64.905294424953013, 18.310941978097958 ], [ -64.905379585130163, 18.310919346948538 ], [ -64.905464912945433, 18.310889172082568 ], [ -64.905550073122583, 18.310870565558275 ], [ -64.905631209984278, 18.31084022174457 ], [ -64.905720225838763, 18.310833180942495 ], [ -64.905796836470586, 18.310872409577883 ], [ -64.905857018564234, 18.31093862664477 ], [ -64.905966150995994, 18.310958909550493 ], [ -64.906050975896846, 18.310975002812313 ], [ -64.906076624532886, 18.311001658586861 ], [ -64.906111157990551, 18.311037365511538 ], [ -64.906126579390161, 18.311118668701738 ], [ -64.906126579390161, 18.311122524379016 ], [ -64.906126413061656, 18.311150519949081 ], [ -64.906126076475687, 18.311189748584468 ], [ -64.906117528240031, 18.311306591061168 ], [ -64.906093891261719, 18.311386722093971 ], [ -64.906039744141196, 18.311452100970143 ], [ -64.905978053304239, 18.311509936129823 ], [ -64.905904963073453, 18.311556874810151 ], [ -64.905828183493838, 18.311596437412106 ], [ -64.905751238895391, 18.311643376092434 ], [ -64.905685692381098, 18.311697690851076 ], [ -64.905624001544084, 18.311755526010757 ], [ -64.905538841366933, 18.311879076632579 ], [ -64.905499949317516, 18.311955519626224 ], [ -64.90547631233926, 18.312035649349411 ], [ -64.905490896857771, 18.312119803697669 ], [ -64.905516879460436, 18.312200437644947 ], [ -64.905554430404663, 18.312277383553067 ], [ -64.905595838335898, 18.312350809060149 ], [ -64.905621989886356, 18.312431275369249 ], [ -64.905625007372976, 18.312515429717507 ], [ -64.905616625465768, 18.312599248789525 ], [ -64.905570188390186, 18.312672003744012 ], [ -64.905496931830953, 18.312726150864535 ], [ -64.905462229425439, 18.31277342482116 ], [ -64.905446640387765, 18.312798905819022 ], [ -64.905411604015626, 18.312875348812724 ], [ -64.905391655076528, 18.312959167884685 ], [ -64.905387128846598, 18.313043154594823 ], [ -64.905401713365166, 18.313127308943137 ], [ -64.905424009238288, 18.313207775252238 ], [ -64.905480838569133, 18.313270304279968 ], [ -64.905560801963816, 18.31330383190874 ], [ -64.905645123950251, 18.313282541864453 ], [ -64.905729445936686, 18.31325404337997 ], [ -64.905810079883963, 18.313218168817173 ], [ -64.905887024482354, 18.313174918176003 ], [ -64.905944860951706, 18.313113227339045 ], [ -64.905980064961966, 18.31303695198352 ], [ -64.905999846262944, 18.312952965273382 ], [ -64.906000515505866, 18.312868978563245 ], [ -64.906005209373859, 18.31278147145207 ], [ -64.906021136307231, 18.312697484741932 ], [ -64.906041085246386, 18.312609977630757 ], [ -64.906117863516329, 18.312570415028745 ], [ -64.906182404201786, 18.31262573561628 ], [ -64.906196987410624, 18.312709889964594 ], [ -64.906203860574522, 18.312793876674732 ], [ -64.906214758363546, 18.31287803102299 ], [ -64.906221631527444, 18.312962017733128 ], [ -64.906239904085169, 18.313046339719563 ], [ -64.906308300447904, 18.31309797226794 ], [ -64.906376695500967, 18.31314960481626 ], [ -64.906410558406094, 18.31322655072438 ], [ -64.906428832273434, 18.313310705072695 ], [ -64.906451128146614, 18.313391339019915 ], [ -64.906484823413564, 18.313471972967193 ], [ -64.906499406622402, 18.313556127315508 ], [ -64.906460514572984, 18.313632402671033 ], [ -64.906439393476489, 18.313650004676106 ], [ -64.906394969368364, 18.313686717429675 ], [ -64.906318191098421, 18.313729968070788 ], [ -64.906265217444911, 18.313770033587218 ], [ -64.906230516349069, 18.313801046643846 ], [ -64.906178548524451, 18.313867096072613 ], [ -64.906101267340091, 18.313982934030093 ], [ -64.906048292376909, 18.314071949884578 ], [ -64.906032031476911, 18.314190302414261 ], [ -64.906022142136123, 18.314329609711876 ], [ -64.906012419123726, 18.314439747972528 ], [ -64.906004706459441, 18.314568494067089 ], [ -64.905999510986646, 18.314670418058654 ], [ -64.905990123250604, 18.314740992407621 ], [ -64.905976712199049, 18.314788770588336 ], [ -64.905919212315666, 18.314881809758219 ], [ -64.905815947218969, 18.315005861984787 ], [ -64.905745203922208, 18.315130081849475 ], [ -64.905589803362716, 18.315216080217397 ], [ -64.905512857454653, 18.315300737480072 ], [ -64.905448315459523, 18.3154665316045 ], [ -64.905377573472435, 18.315580357904309 ], [ -64.905331136396853, 18.315669372449065 ], [ -64.905293585452625, 18.31573777012153 ], [ -64.905244804062363, 18.315772135941017 ], [ -64.905209432413983, 18.315814045476998 ], [ -64.905172718350798, 18.315883615306802 ], [ -64.905140197860533, 18.316033482497858 ], [ -64.905110861185335, 18.316210844963848 ], [ -64.905068616373001, 18.316331375479706 ], [ -64.905034250553513, 18.316507061564323 ], [ -64.905002734582411, 18.316615020529071 ], [ -64.90497993579487, 18.316735383406751 ], [ -64.904968201124746, 18.316830938458509 ], [ -64.904963004342335, 18.316941244357281 ], [ -64.904964177809291, 18.317049369650476 ], [ -64.904956969369096, 18.317126149230091 ], [ -64.904971553887663, 18.317205274434059 ], [ -64.904971050973245, 18.317265624165941 ], [ -64.90497691830825, 18.317344749369909 ], [ -64.905000555286563, 18.317410966436739 ], [ -64.905015810357668, 18.317423874573876 ], [ -64.905095438476053, 18.317461090241807 ], [ -64.905201050506776, 18.317499814653104 ], [ -64.905274476013858, 18.317540381774279 ], [ -64.905332646449835, 18.317580113324084 ], [ -64.905365168249773, 18.317598218243631 ], [ -64.905417471350688, 18.317615148386494 ], [ -64.905537332623624, 18.317636773707079 ], [ -64.905550073122583, 18.317643648180649 ], [ -64.905557113924658, 18.317640629384357 ], [ -64.905559125582386, 18.31762906235241 ], [ -64.905564322364853, 18.317573072522009 ], [ -64.905571027890574, 18.317517415348561 ], [ -64.905562645983423, 18.317451533557914 ], [ -64.905530124183485, 18.317373749459136 ], [ -64.905501121474856, 18.317323962240039 ], [ -64.905505146099983, 18.317219019452239 ], [ -64.905521406999981, 18.317112401592624 ], [ -64.905538841366933, 18.317025901620013 ], [ -64.905564153417004, 18.316967731184036 ], [ -64.905570188390186, 18.316898999545003 ], [ -64.905570188390186, 18.316873518547084 ], [ -64.905581421455508, 18.316835798655006 ], [ -64.905597849993626, 18.316702192363948 ], [ -64.905588294619406, 18.316625246455828 ], [ -64.905588965172001, 18.316412178374833 ], [ -64.905583599441741, 18.316296171469503 ], [ -64.905597849993626, 18.316233979027743 ], [ -64.905645291588371, 18.316132390312475 ], [ -64.905709496997531, 18.316072543495068 ], [ -64.905772026025261, 18.3159550291561 ], [ -64.905841092940591, 18.315852266973877 ], [ -64.905950560648591, 18.315766436244132 ], [ -64.906016776405806, 18.315654789240227 ], [ -64.906169831340947, 18.315438033120017 ], [ -64.906383569974537, 18.315224294486427 ], [ -64.906488176176424, 18.315131255316487 ], [ -64.906552549223704, 18.315051291921804 ], [ -64.906603008305069, 18.314982895559069 ], [ -64.906661177431374, 18.314952888331277 ], [ -64.906734436609952, 18.314914499196334 ], [ -64.906778525441837, 18.314887174178864 ], [ -64.906828481608727, 18.314865716496399 ], [ -64.906912468318865, 18.314859681523217 ], [ -64.907000478344457, 18.314856830365102 ], [ -64.907088654698555, 18.31484291639913 ], [ -64.907176832362325, 18.314817939625357 ], [ -64.907268530427075, 18.314825986256267 ], [ -64.90735637412422, 18.314844929366586 ], [ -64.907447904550793, 18.314864040114969 ], [ -64.9075396026156, 18.314882983225232 ], [ -64.907627443693343, 18.314894717895299 ], [ -64.907715287390488, 18.314899076487052 ], [ -64.907803297416081, 18.314903435078804 ], [ -64.907851912477838, 18.314899747039647 ], [ -64.907891307441673, 18.314896729553027 ], [ -64.907975629428108, 18.314868231068601 ], [ -64.908010161576101, 18.314861190266527 ], [ -64.908061626486358, 18.31484291639913 ], [ -64.908119798231951, 18.314781562148141 ], [ -64.908152486360393, 18.314746861052299 ], [ -64.908177967358256, 18.314720038949304 ], [ -64.908236137794233, 18.314658515750409 ], [ -64.908290787829173, 18.314593639788711 ], [ -64.908370249619111, 18.314556424120724 ], [ -64.908439147586591, 18.314505294486821 ], [ -64.908518775705033, 18.314468078818834 ], [ -64.908587676291859, 18.314417116823051 ], [ -64.908617180605233, 18.314338159257261 ], [ -64.908700161486479, 18.314314689917069 ], [ -64.908790349498304, 18.314315360469664 ], [ -64.908876684452139, 18.314329944988174 ], [ -64.908951952669099, 18.314375207287071 ], [ -64.909008949638064, 18.314437568676624 ], [ -64.909084220474426, 18.314479478212661 ], [ -64.909159488691387, 18.314521387748641 ], [ -64.909216654608144, 18.314583749138194 ], [ -64.909299298903477, 18.314615432747416 ], [ -64.909381776870305, 18.314646948718519 ], [ -64.909468110514467, 18.314661533237029 ], [ -64.909550757429145, 18.314689696445214 ], [ -64.90963943669766, 18.314683493833911 ], [ -64.90972610561812, 18.314663544894756 ], [ -64.909809086499365, 18.314640075554564 ], [ -64.909892235018788, 18.314613253451569 ], [ -64.9099787376108, 18.314610403603126 ], [ -64.910057693866918, 18.314645439975209 ], [ -64.910085857075103, 18.314724900455474 ], [ -64.910088706923602, 18.314807378422302 ], [ -64.91010228561322, 18.314890190355754 ], [ -64.910137658571273, 18.314966130434982 ], [ -64.910162300068805, 18.315045424586799 ], [ -64.910201192118222, 18.315121532304147 ], [ -64.910272773605698, 18.315170147365905 ], [ -64.910355419210703, 18.315194957811229 ], [ -64.91044912893318, 18.315195628363824 ], [ -64.910535630215463, 18.315192946153502 ], [ -64.910621963859626, 18.315197137107077 ], [ -64.910712153181123, 18.31519780635 ], [ -64.910802174864443, 18.315198478212267 ], [ -64.910881132430291, 18.315237034985387 ], [ -64.910956401956923, 18.315278776883247 ], [ -64.911042567962966, 18.315300234565655 ], [ -64.911129069245249, 18.315311131045007 ], [ -64.911215402889411, 18.31531884239962 ], [ -64.911294360455202, 18.315353877462087 ], [ -64.911358733502539, 18.315409366997415 ], [ -64.911397625551956, 18.315485307076642 ], [ -64.911447581718846, 18.315554541630092 ], [ -64.911457640007484, 18.315637187235097 ], [ -64.911453281415731, 18.31571983153043 ], [ -64.911452443225016, 18.315809183970828 ], [ -64.911451940310599, 18.31587121008414 ], [ -64.911446240613714, 18.315899540930445 ], [ -64.911490664721839, 18.315971625332395 ], [ -64.911546488223792, 18.31603666893227 ], [ -64.911602144087624, 18.316101712532145 ], [ -64.911631480762821, 18.31618787853813 ], [ -64.911713791091529, 18.316220903252486 ], [ -64.911788557703744, 18.316264489169953 ], [ -64.911863156677839, 18.316308075087363 ], [ -64.911945467006547, 18.316337410452945 ], [ -64.912027944973374, 18.316366748437815 ], [ -64.912110255302082, 18.31639977315217 ], [ -64.912184854276177, 18.316446879470618 ], [ -64.912271020282162, 18.31646196559393 ], [ -64.91242072114477, 18.316520472615821 ], [ -64.912461457213738, 18.316596077418808 ], [ -64.912524656794062, 18.316653912578488 ], [ -64.912614846115503, 18.316658271170184 ], [ -64.912704867798823, 18.316658940413106 ], [ -64.912780304963633, 18.316616529272324 ], [ -64.912863118206758, 18.316592054103353 ], [ -64.91293486733241, 18.316542433212703 ], [ -64.912995552340533, 18.316482083480878 ], [ -64.9130746775445, 18.316446710522825 ], [ -64.913161178826783, 18.316429611432113 ], [ -64.913248183023541, 18.316437490424903 ], [ -64.913311550241986, 18.316495325584583 ], [ -64.913382461176866, 18.316546121251861 ], [ -64.913423029607713, 18.316621726054791 ], [ -64.913403583583033, 18.316704036383499 ], [ -64.913357818369718, 18.316778970633891 ], [ -64.913323452550173, 18.316857591613768 ], [ -64.913300150848158, 18.316939903252148 ], [ -64.91329948029562, 18.317025901620013 ], [ -64.913299145019323, 18.317054566432944 ], [ -64.913279866632763, 18.317110054658599 ], [ -64.91324164513594, 18.317188510619701 ], [ -64.913232257399841, 18.317223210405814 ], [ -64.913218343433925, 18.317274507677894 ], [ -64.913217672881331, 18.317360507355431 ], [ -64.913201914895808, 18.317446504413624 ], [ -64.913111725574311, 18.317445667532581 ], [ -64.913021871529168, 18.317423539297579 ], [ -64.912946434364358, 18.317465950438304 ], [ -64.912863621121232, 18.317493947318042 ], [ -64.91278080787805, 18.317521941578434 ], [ -64.91269061855661, 18.317528479466034 ], [ -64.912600429235113, 18.317542059465381 ], [ -64.912510072275495, 18.317562846595251 ], [ -64.912419715315878, 18.317583632415392 ], [ -64.912336902072752, 18.317618836425652 ], [ -64.912253921191507, 18.317661250185779 ], [ -64.912170940310205, 18.317696454195982 ], [ -64.912095503145395, 18.317738866646437 ], [ -64.912020065980585, 18.317781277787162 ], [ -64.911966924688954, 18.317852525308069 ], [ -64.911966086498239, 18.317938691314055 ], [ -64.912025598039349, 18.318003733604257 ], [ -64.912092820935072, 18.318061568763937 ], [ -64.912182674980272, 18.318083864637117 ], [ -64.912280072741964, 18.318098953379717 ], [ -64.912369926787107, 18.318128288745243 ], [ -64.912459948470485, 18.3181433774879 ], [ -64.912550137791925, 18.318144046730822 ], [ -64.912640327113422, 18.318123259600952 ], [ -64.912730516434863, 18.318116889351472 ], [ -64.912820538118183, 18.318117559904067 ], [ -64.91291072743968, 18.318118230456605 ], [ -64.913000749123, 18.318126109449395 ], [ -64.913090770806321, 18.318133988442185 ], [ -64.913195712284448, 18.31814924351329 ], [ -64.913293277684261, 18.31816433225589 ], [ -64.913383131729461, 18.318193667621415 ], [ -64.913495281647783, 18.31823758881518 ], [ -64.913585470969281, 18.318245467807913 ], [ -64.913675492652601, 18.318253346800702 ], [ -64.913742547910203, 18.318311349598503 ], [ -64.913802059451314, 18.31837639450805 ], [ -64.913891913496514, 18.31839852143338 ], [ -64.913982102817954, 18.318399359624095 ], [ -64.914050163904449, 18.31834253160298 ], [ -64.914080840375107, 18.318263740365637 ], [ -64.914089055953866, 18.318177743307444 ], [ -64.914142197245496, 18.318106495786537 ], [ -64.914067598271401, 18.318048494298409 ], [ -64.913977576588081, 18.318047822436142 ], [ -64.913887554904761, 18.318047151883547 ], [ -64.913797533221441, 18.318024857320097 ], [ -64.913707846814418, 18.317988310895032 ], [ -64.913618160407339, 18.31793734889925 ], [ -64.913588823732141, 18.317858223695282 ], [ -64.913649341102143, 18.317794187233972 ], [ -64.913739362785464, 18.317802066226704 ], [ -64.913821839442619, 18.31783140159223 ], [ -64.913926614592299, 18.317853866413202 ], [ -64.914016636275619, 18.317875994648205 ], [ -64.914091402887891, 18.317919580565672 ], [ -64.914158458145494, 18.317977583363472 ], [ -64.914248478519141, 18.317978252606395 ], [ -64.914323916993567, 18.317935841465612 ], [ -64.914406897874869, 18.317900637455409 ], [ -64.914482335039679, 18.317858223695282 ], [ -64.914565148282804, 18.317823019685022 ], [ -64.914611416410537, 18.317797035772742 ], [ -64.914640753085735, 18.317780608544297 ], [ -64.914723566328917, 18.317752611664559 ], [ -64.914828843083342, 18.317724617404167 ], [ -64.914911656326467, 18.317696620524487 ], [ -64.915002013286085, 18.317683041834812 ], [ -64.915091867331284, 18.317698130577412 ], [ -64.915174176350263, 18.317727467252666 ], [ -64.915264199343312, 18.317749595487669 ], [ -64.91533879831735, 18.317793347733584 ], [ -64.915428483414757, 18.317851350531384 ], [ -64.915503082388796, 18.317909354638857 ], [ -64.915570137646398, 18.317967188488865 ], [ -64.915614563064253, 18.318039272890815 ], [ -64.915658987172435, 18.31811135860238 ], [ -64.915741297501086, 18.318140695277577 ], [ -64.915831319184463, 18.318162989841085 ], [ -64.915921173229606, 18.31818511938576 ], [ -64.916003483558313, 18.318221664501152 ], [ -64.916085792577348, 18.318250999866677 ], [ -64.916160560499236, 18.318294585784145 ], [ -64.916235159473331, 18.318345381451422 ], [ -64.916294669704769, 18.318410423741625 ], [ -64.916302045783141, 18.318417633491492 ], [ -64.916324006379966, 18.318489548945593 ], [ -64.916368430488149, 18.318561633347485 ], [ -64.916412854596331, 18.318633717749435 ], [ -64.916472367447113, 18.31869876134931 ], [ -64.916547132749656, 18.318742348576393 ], [ -64.916637154432976, 18.318743017819315 ], [ -64.916727177425969, 18.318750896812105 ], [ -64.916817197799617, 18.318758775804838 ], [ -64.916899509437997, 18.318795320920231 ], [ -64.916981818457032, 18.318824657595428 ], [ -64.917064296423916, 18.318853995580298 ], [ -64.917154319416909, 18.31885466482322 ], [ -64.917237131350362, 18.318826670562828 ], [ -64.917312568515172, 18.318784256802758 ], [ -64.917402925474789, 18.318763469672888 ], [ -64.91749311479623, 18.318749724654765 ], [ -64.917583305427399, 18.318750561535808 ], [ -64.917665614446435, 18.318779899520678 ], [ -64.91770987091644, 18.318859023414973 ], [ -64.91771674539001, 18.318945189420958 ], [ -64.917670978867022, 18.319016604579986 ], [ -64.917595541702212, 18.319066225470635 ], [ -64.917570229652142, 18.31910562043447 ], [ -64.917547261916752, 18.319129926655648 ], [ -64.917522954385845, 18.319165465942206 ], [ -64.917503340723044, 18.319204190353446 ], [ -64.917485906356035, 18.319252973053381 ], [ -64.917474843548234, 18.319293876760526 ], [ -64.917457241543104, 18.319352885387161 ], [ -64.917446008477782, 18.319410049994303 ], [ -64.917428406472652, 18.319465036615213 ], [ -64.917414827782977, 18.319548686739381 ], [ -64.917412145572712, 18.319620269536529 ], [ -64.917398566883037, 18.319693693733939 ], [ -64.9173586703144, 18.319852614694469 ], [ -64.91734542559135, 18.319915981912914 ], [ -64.917330002882125, 18.319968955566367 ], [ -64.917312400876995, 18.320013714950846 ], [ -64.917294798871865, 18.320066688604356 ], [ -64.917253559888479, 18.320148160742349 ], [ -64.917216345530164, 18.320231644538012 ], [ -64.917155994488667, 18.320290317888464 ], [ -64.917063290595024, 18.320385703992372 ], [ -64.917007299454951, 18.320424093127372 ], [ -64.916912583903581, 18.320482431201469 ], [ -64.916803117505196, 18.320528700638874 ], [ -64.916708737230124, 18.320560550576545 ], [ -64.916629444388036, 18.320576308562124 ], [ -64.916573619576411, 18.320592234185767 ], [ -64.916507236181076, 18.320601957198107 ], [ -64.916419561431724, 18.320609333276479 ], [ -64.916336077636004, 18.320612853677517 ], [ -64.916261309714116, 18.320606148151739 ], [ -64.916177827228069, 18.320601286645569 ], [ -64.916066683138638, 18.320592234185767 ], [ -64.915981521651815, 18.320576811476542 ], [ -64.915912622374606, 18.320569603036347 ], [ -64.915852441590573, 18.320558874195115 ], [ -64.915806507429465, 18.32055015701161 ], [ -64.915753535085628, 18.320541272189985 ], [ -64.915689832590886, 18.320527190585892 ], [ -64.915620933313733, 18.320516461744717 ], [ -64.91553610841288, 18.320500536121017 ], [ -64.915458324314045, 18.320486454516924 ], [ -64.91539629820079, 18.320489304365367 ], [ -64.91533879831735, 18.320511767876667 ], [ -64.91522798950416, 18.320567926654917 ], [ -64.915171160173372, 18.320640178694987 ], [ -64.915125393650385, 18.320708911643692 ], [ -64.915099746324017, 18.320746628916424 ], [ -64.915058004426157, 18.320801614227662 ], [ -64.915050293071545, 18.320841344467738 ], [ -64.915046102117969, 18.32092432534904 ], [ -64.915047106637132, 18.321010658993202 ], [ -64.915032020513877, 18.321081402289963 ], [ -64.915000504542775, 18.32115901875062 ], [ -64.914976532288165, 18.321219200844325 ], [ -64.91494350757381, 18.321265636610235 ], [ -64.914921210391014, 18.321329506743098 ], [ -64.914895563064647, 18.321375942509007 ], [ -64.91489153843952, 18.321408799585186 ], [ -64.914881815427179, 18.3214864160459 ], [ -64.914859688501792, 18.321539892613828 ], [ -64.91482146700497, 18.321574090795195 ], [ -64.914763128930872, 18.321618514903378 ], [ -64.914677464529632, 18.321678361720785 ], [ -64.914557436928192, 18.32174994320826 ], [ -64.914457356956234, 18.321820015952426 ], [ -64.914399186520257, 18.321847340969896 ], [ -64.914328275585319, 18.321883047894573 ], [ -64.914275469569986, 18.321917246075941 ], [ -64.914173880854719, 18.321947420941854 ], [ -64.914126774536271, 18.321966028775876 ], [ -64.914063072041529, 18.322007100121141 ], [ -64.914008757282886, 18.322011793989191 ], [ -64.913856541848133, 18.322027887251011 ], [ -64.913673816271171, 18.322031575290168 ], [ -64.913500478430251, 18.322057894478746 ], [ -64.913348095357378, 18.322099971652904 ], [ -64.913315405919263, 18.322111706322971 ], [ -64.913251703424578, 18.322152777668293 ], [ -64.913186492186526, 18.322169541482651 ], [ -64.913097643970218, 18.322184293639339 ], [ -64.91297979435501, 18.322205918959924 ], [ -64.91288004965935, 18.322239614226874 ], [ -64.91278365772655, 18.322285547078309 ], [ -64.912701179759665, 18.322331647567921 ], [ -64.912628424805177, 18.322365510472991 ], [ -64.912575618789845, 18.322399708654416 ], [ -64.91250101981575, 18.322454526327476 ], [ -64.912435473301457, 18.322491909633584 ], [ -64.912415524362302, 18.322496938777931 ], [ -64.91232131172535, 18.322508338171701 ], [ -64.912227099088454, 18.322537004294304 ], [ -64.912146968055595, 18.322581260764366 ], [ -64.912092653296952, 18.322598192216901 ], [ -64.912030627183697, 18.322654686271392 ], [ -64.911937588013757, 18.322726435397044 ], [ -64.911875897176742, 18.322745043231009 ], [ -64.911816050359334, 18.322765327446461 ], [ -64.911746983444004, 18.322795837588671 ], [ -64.911690657027634, 18.322830035770039 ], [ -64.911631816039119, 18.322857193149389 ], [ -64.911562916761909, 18.322873956963747 ], [ -64.911490329445542, 18.322894073541022 ], [ -64.911390584749881, 18.322879489022512 ], [ -64.911348842852021, 18.322889547311149 ], [ -64.911298048494416, 18.322909831526601 ], [ -64.911270723476946, 18.322926930617257 ], [ -64.911252618557342, 18.322931959761604 ], [ -64.911234513637794, 18.322923074939979 ], [ -64.911177013754411, 18.322883009423549 ], [ -64.911138959895766, 18.322873956963747 ], [ -64.911010716715566, 18.322855684406079 ], [ -64.910927568196144, 18.322839423506082 ], [ -64.910895214034383, 18.322821989139129 ], [ -64.910828661691198, 18.322776391563934 ], [ -64.910787255069636, 18.322755436795944 ], [ -64.910715003029566, 18.322734146751657 ], [ -64.910617605267873, 18.322700451484707 ], [ -64.910538144787665, 18.322679161440419 ], [ -64.910480309627985, 18.322673461743534 ], [ -64.910389952668368, 18.322660721244574 ], [ -64.910332117508688, 18.322641107581774 ], [ -64.910294398926283, 18.322620152813727 ], [ -64.910252993614392, 18.322580087297354 ], [ -64.910209910611343, 18.322548571326251 ], [ -64.910168502680108, 18.322522419775794 ], [ -64.910137824899778, 18.322506494152094 ], [ -64.910084013055553, 18.322464584616114 ], [ -64.910047970854578, 18.322447150249161 ], [ -64.909964989973332, 18.322406917094554 ], [ -64.909936157522225, 18.322401217397669 ], [ -64.9099158719971, 18.322439103618251 ], [ -64.909929953601193, 18.322484198278971 ], [ -64.909960128467105, 18.322548403688131 ], [ -64.910001367450548, 18.322595342368459 ], [ -64.910008240614445, 18.322647310193076 ], [ -64.910023830961848, 18.322713024345546 ], [ -64.910045121006135, 18.322768512571201 ], [ -64.910089712752438, 18.322838082400949 ], [ -64.9101470449977, 18.322902455448229 ], [ -64.910159451530035, 18.322945706089399 ], [ -64.910186104685238, 18.322987447987259 ], [ -64.910199012822318, 18.323027681141809 ], [ -64.910191301467705, 18.323092892379805 ], [ -64.910172023081145, 18.323171513359682 ], [ -64.910167330522768, 18.323225997066174 ], [ -64.910145537564063, 18.323273271022799 ], [ -64.910111002796725, 18.323324735932999 ], [ -64.910094909534905, 18.323369495317422 ], [ -64.910085689436983, 18.323453648356065 ], [ -64.910069428537042, 18.323510646634702 ], [ -64.910058868643603, 18.323593459877827 ], [ -64.910051155979318, 18.323664203174587 ], [ -64.910025842619575, 18.323786242433755 ], [ -64.91000404966087, 18.323826979812395 ], [ -64.909974042433078, 18.323852460810315 ], [ -64.909922577522877, 18.323876599393373 ], [ -64.909865580553912, 18.32388565316279 ], [ -64.909807074841638, 18.323890682307137 ], [ -64.909735997578252, 18.323891352859675 ], [ -64.909633234086357, 18.323904260996812 ], [ -64.90949644136083, 18.323931753652403 ], [ -64.909414970532509, 18.323970478063643 ], [ -64.909319081514127, 18.324022781164615 ], [ -64.909267616603927, 18.324048094524358 ], [ -64.909204750990284, 18.324080281047998 ], [ -64.909156135928527, 18.324092183356186 ], [ -64.909116070412097, 18.324121686359888 ], [ -64.909072819770927, 18.324179858105538 ], [ -64.909022529637411, 18.324246075172425 ], [ -64.908982462811309, 18.324282620287818 ], [ -64.908943570761892, 18.324310614548153 ], [ -64.908904009469609, 18.324331570625873 ], [ -64.908871990584089, 18.324347328611395 ], [ -64.908832091396164, 18.32436744518867 ], [ -64.908789678945709, 18.324390745581013 ], [ -64.908737712430764, 18.324425950900945 ], [ -64.908708040479269, 18.324453108280238 ], [ -64.908683228724271, 18.324471882442708 ], [ -64.908659928331929, 18.32448462425134 ], [ -64.908649533457321, 18.324496694197705 ], [ -64.908645511451539, 18.324508930472518 ], [ -64.908646180694461, 18.324525527958428 ], [ -64.908654731549461, 18.32453927428628 ], [ -64.908669817672774, 18.324552350061481 ], [ -64.908691945907776, 18.324554026442911 ], [ -64.908740560969534, 18.324546818002716 ], [ -64.908793199346746, 18.324536592075958 ], [ -64.908846005362079, 18.324527204339915 ], [ -64.908885904550061, 18.324510105249203 ], [ -64.908928315690787, 18.324502729170888 ], [ -64.908965698996894, 18.324502392584918 ], [ -64.908993526928839, 18.324503232085306 ], [ -64.909024707623587, 18.324495185454396 ], [ -64.909060583496114, 18.324476409982253 ], [ -64.909121268504236, 18.324465513502901 ], [ -64.9091737379336, 18.324454617023548 ], [ -64.909220845561777, 18.324437517932836 ], [ -64.909285887851979, 18.324405834323613 ], [ -64.909327294473542, 18.324381694430883 ], [ -64.909444305898035, 18.324352693031983 ], [ -64.909544219541544, 18.324331738263993 ], [ -64.90967531257013, 18.324305585403863 ], [ -64.909849654930213, 18.324244397481266 ], [ -64.909950740731063, 18.324228976081713 ], [ -64.91002483679074, 18.324217241411645 ], [ -64.910053502913343, 18.324212044629178 ], [ -64.910180572626473, 18.324162759014825 ], [ -64.910204712519203, 18.324133422339628 ], [ -64.910231869898553, 18.324132248872615 ], [ -64.910260872607125, 18.324142473489758 ], [ -64.910318371180836, 18.32417583348041 ], [ -64.910400346233246, 18.32423400522606 ], [ -64.91042649778376, 18.324242387133211 ], [ -64.910410236883763, 18.324221432365221 ], [ -64.910349216599343, 18.324162256100408 ], [ -64.91025953019232, 18.324087154211895 ], [ -64.910245114621603, 18.324064689390923 ], [ -64.910243939844918, 18.323993778455986 ], [ -64.910239245976868, 18.323922868830778 ], [ -64.91021292678829, 18.323812060017588 ], [ -64.910185098856402, 18.3237393050631 ], [ -64.910147715550238, 18.323666382470435 ], [ -64.910137154347183, 18.323623131829322 ], [ -64.910181075540947, 18.323568146518085 ], [ -64.910292554906675, 18.323444597205935 ], [ -64.910365812775638, 18.323346528891705 ], [ -64.910437058986815, 18.323265894944427 ], [ -64.910479136160973, 18.323212753652797 ], [ -64.910526745393838, 18.323147374776624 ], [ -64.91056664458182, 18.323147710052922 ], [ -64.910647612495666, 18.32319330762806 ], [ -64.910816591744833, 18.32333462658346 ], [ -64.910883144088018, 18.323367986574112 ], [ -64.911004178827966, 18.323394807367492 ], [ -64.911067378408234, 18.323410901938985 ], [ -64.911085315689661, 18.323426659924507 ], [ -64.911149521098821, 18.323482986340935 ], [ -64.911204171133761, 18.323531266126395 ], [ -64.911224790625454, 18.323557082400555 ], [ -64.911249601070779, 18.323574181491267 ], [ -64.911261671017144, 18.323588766009777 ], [ -64.911287487291304, 18.323600165403548 ], [ -64.911306765677864, 18.323613408816925 ], [ -64.911317326880976, 18.323635872328225 ], [ -64.911333252504619, 18.323672249805497 ], [ -64.911354877825204, 18.323700076427713 ], [ -64.911384549776699, 18.323714997532193 ], [ -64.911405169268392, 18.323733436418365 ], [ -64.911428638608584, 18.323738802148682 ], [ -64.911443223127094, 18.3237233794394 ], [ -64.911454454882744, 18.323690522363165 ], [ -64.911458645836319, 18.323621455447835 ], [ -64.911466357190989, 18.323571331642825 ], [ -64.911483121005347, 18.32351450231198 ], [ -64.911494185122876, 18.323485165636782 ], [ -64.911532574257876, 18.32343369941691 ], [ -64.911574651431977, 18.323397658525607 ], [ -64.911601305896909, 18.323354240246317 ], [ -64.911635001163859, 18.323325574123714 ], [ -64.911686130797762, 18.323274109213514 ], [ -64.911720664255427, 18.323257177760922 ], [ -64.911767770573874, 18.323245443090855 ], [ -64.911804148051147, 18.323224991237282 ], [ -64.911926523896227, 18.323179226023967 ], [ -64.91204655280734, 18.323110997299409 ], [ -64.912206311958585, 18.323041427469605 ], [ -64.912288119372874, 18.323014437728432 ], [ -64.912331872928462, 18.322969845982129 ], [ -64.912359365584052, 18.322926930617257 ], [ -64.912390546278857, 18.322882171232834 ], [ -64.912405298435488, 18.322849481794719 ], [ -64.912407310093215, 18.322820145119522 ], [ -64.912417200743732, 18.322810589745359 ], [ -64.912451063648803, 18.322798016884519 ], [ -64.91249464956627, 18.322774212268087 ], [ -64.912538403121857, 18.322732973284644 ], [ -64.91258768873621, 18.322676311591977 ], [ -64.912602608531017, 18.322643622153919 ], [ -64.912638986008233, 18.322619649899309 ], [ -64.912693300766932, 18.322614956031259 ], [ -64.912831099321295, 18.322574555238589 ], [ -64.912893795987145, 18.322561144187034 ], [ -64.913010975049758, 18.322536166103589 ], [ -64.9131420680784, 18.322495765310919 ], [ -64.913229072275158, 18.322475816371764 ], [ -64.913298139190431, 18.322440109447086 ], [ -64.91333954581205, 18.322424686737861 ], [ -64.913397883886148, 18.322416640106951 ], [ -64.913472147583946, 18.322405073075004 ], [ -64.913571892279606, 18.322386968155456 ], [ -64.913675157376304, 18.322363498815264 ], [ -64.913802059451314, 18.322347237915324 ], [ -64.913908005448661, 18.322356793289543 ], [ -64.914021665419966, 18.322385291774026 ], [ -64.914106825597116, 18.322384285945134 ], [ -64.914155775935171, 18.322365510472991 ], [ -64.914175892512446, 18.322348411382336 ], [ -64.914199529490759, 18.322324606765903 ], [ -64.914221656416089, 18.322279679743303 ], [ -64.914251162039079, 18.322224694432066 ], [ -64.914273122635961, 18.322192004993951 ], [ -64.914297765443109, 18.322173900074404 ], [ -64.914354930050251, 18.322151101286863 ], [ -64.914502116340657, 18.322083207838546 ], [ -64.914551569593129, 18.322023025744841 ], [ -64.914633377007419, 18.321975248873798 ], [ -64.91471501547386, 18.321943062350158 ], [ -64.91483420750393, 18.321907858339898 ], [ -64.914892713216204, 18.321910037635746 ], [ -64.914950379428035, 18.321943229988278 ], [ -64.91502045348193, 18.321999053490231 ], [ -64.915061860103492, 18.322018499514911 ], [ -64.915087341101355, 18.322003076805686 ], [ -64.915139979478568, 18.321974075406786 ], [ -64.91520032921045, 18.321919257733668 ], [ -64.91524391512786, 18.321900649899703 ], [ -64.91527124014533, 18.321862763679178 ], [ -64.91532052445001, 18.321832085898791 ], [ -64.915367798406635, 18.321789338172096 ], [ -64.915411553271838, 18.321758492753588 ], [ -64.91544625436768, 18.321715577388716 ], [ -64.915464525615675, 18.321705351461958 ], [ -64.915475591042878, 18.321684731970208 ], [ -64.915493863600545, 18.321657239314618 ], [ -64.91550878339541, 18.321614156311625 ], [ -64.915512639072688, 18.321576102452923 ], [ -64.915528060472298, 18.321479375243825 ], [ -64.915544825596328, 18.32141734913057 ], [ -64.915576006291133, 18.32137091336466 ], [ -64.91559260246737, 18.321339900308033 ], [ -64.915605341656658, 18.321317604434853 ], [ -64.91564540848276, 18.321290279417383 ], [ -64.91570810514861, 18.321245184756663 ], [ -64.91579175658245, 18.321209142555688 ], [ -64.915860320583363, 18.321199419543348 ], [ -64.915909606197715, 18.321191708188735 ], [ -64.915984371500258, 18.321210651298998 ], [ -64.916086798406241, 18.32123596465874 ], [ -64.916195764509496, 18.321259266360755 ], [ -64.916300369401654, 18.321268318820557 ], [ -64.916418051378741, 18.321281562233935 ], [ -64.916533386421861, 18.321294638009135 ], [ -64.916608320672196, 18.32129530856173 ], [ -64.916700018737004, 18.321326656894655 ], [ -64.916783168566099, 18.321360016885308 ], [ -64.916857767540137, 18.321382983311025 ], [ -64.916958181478719, 18.321396059086283 ], [ -64.917033115729112, 18.321394717981093 ], [ -64.917129676609704, 18.321356664122447 ], [ -64.91720075387309, 18.321306037402906 ], [ -64.917261103604972, 18.321255578321598 ], [ -64.917340565394852, 18.321217356824775 ], [ -64.917409295724212, 18.32118114698568 ], [ -64.917463107568437, 18.321138566897105 ], [ -64.917516919412662, 18.32109615444665 ], [ -64.917583639394024, 18.321053741996195 ], [ -64.917641809829945, 18.321005126934438 ], [ -64.917738873625012, 18.320879565964617 ], [ -64.917810621440992, 18.320784012222532 ], [ -64.91787063589652, 18.320682926421682 ], [ -64.917948756581325, 18.320553677412647 ], [ -64.91802653937043, 18.320435660159262 ], [ -64.918198871382458, 18.320335412549184 ], [ -64.918394505096501, 18.320286126934832 ], [ -64.918596006145606, 18.320236842630152 ], [ -64.918738164601393, 18.320215383638072 ], [ -64.918823491107048, 18.320206331178269 ], [ -64.918879649885241, 18.320200296205087 ], [ -64.918999678796354, 18.320187555706184 ], [ -64.919028344919013, 18.320190405554627 ], [ -64.919115684392011, 18.320186717515469 ], [ -64.919202856226889, 18.320178670884559 ], [ -64.919290028061766, 18.320179341437097 ], [ -64.919372506028651, 18.320206331178269 ], [ -64.919459342587231, 18.320237679511195 ], [ -64.919541820554059, 18.320264669252424 ], [ -64.919628824750816, 18.320282774171972 ], [ -64.919715996585694, 18.320292329546191 ], [ -64.919803168420572, 18.320293000098729 ], [ -64.919895034123499, 18.320276237593987 ], [ -64.919973488774872, 18.320237344234954 ], [ -64.920060660609749, 18.320238014787492 ], [ -64.920134421393129, 18.320194764146379 ], [ -64.920212708406325, 18.320155872096962 ], [ -64.920299880241259, 18.320169786062877 ], [ -64.920387219714257, 18.320144137426894 ], [ -64.920446898893545, 18.320144641650984 ], [ -64.920477241397577, 18.320149334209361 ], [ -64.920564413232455, 18.320154363353652 ], [ -64.92065175270551, 18.320137431901117 ], [ -64.920739092178508, 18.320120668086702 ], [ -64.920812852961888, 18.320077417445532 ], [ -64.920873035055592, 18.320016564799289 ], [ -64.920951322068845, 18.319977672749872 ], [ -64.920964397844045, 18.319974487625132 ], [ -64.921038829179963, 18.319956382705584 ], [ -64.921112589963343, 18.319913132064414 ], [ -64.921199929436341, 18.319892009658304 ], [ -64.921287268909396, 18.319870719614016 ], [ -64.921374608382393, 18.319862672983106 ], [ -64.921461780217271, 18.319863343535644 ], [ -64.921534870448056, 18.319912127545251 ], [ -64.921607793040721, 18.319956551653434 ], [ -64.921694797237478, 18.319979181493181 ], [ -64.921786662940349, 18.319979852045776 ], [ -64.921873834775226, 18.319976164006562 ], [ -64.921952289426656, 18.319937271957201 ], [ -64.922039461261534, 18.319929226635907 ], [ -64.922122274504659, 18.319903576690251 ], [ -64.922205255385961, 18.319873569462459 ], [ -64.922292427220839, 18.319865522831549 ], [ -64.922379934331957, 18.319844232787261 ], [ -64.922467106166891, 18.319844904649528 ], [ -64.922554278001769, 18.319836856708889 ], [ -64.922609933865544, 18.319771645470894 ], [ -64.922688388516917, 18.319732753421476 ], [ -64.922775391404002, 18.319746667387449 ], [ -64.922848315306339, 18.319799808679079 ], [ -64.922870611179462, 18.319839538919211 ], [ -64.922889219013484, 18.319872898909864 ], [ -64.922927608148427, 18.319948000798377 ], [ -64.922876310876347, 18.320014720779682 ], [ -64.92288335036875, 18.320100719147547 ], [ -64.92289039248044, 18.320186549877292 ], [ -64.922881172382517, 18.320354524607239 ], [ -64.922876478514524, 18.320440354027312 ], [ -64.922864073291862, 18.320522496717899 ], [ -64.922839933399132, 18.320604471770309 ], [ -64.922796347481665, 18.320678735468107 ], [ -64.922830713301209, 18.3207573577576 ], [ -64.92286139108154, 18.320836147685327 ], [ -64.922860552890825, 18.320921978415015 ], [ -64.92283255732076, 18.321000097790147 ], [ -64.922785114416342, 18.32107067344873 ], [ -64.922762987491012, 18.3210914605786 ], [ -64.922721916145747, 18.32113001735172 ], [ -64.922662739880934, 18.321193049293868 ], [ -64.922630888633535, 18.321271168669 ], [ -64.922626193455869, 18.321356999398688 ], [ -64.922559307146059, 18.3214124876244 ], [ -64.922469285462739, 18.321415505110963 ], [ -64.922383453423322, 18.321403602802718 ], [ -64.922308688120779, 18.32144785927278 ], [ -64.922222522114794, 18.321473340270643 ], [ -64.922182791874661, 18.32154760396844 ], [ -64.922119759932514, 18.32160694787143 ], [ -64.922068295022314, 18.321673667852735 ], [ -64.922040467090369, 18.321729491354688 ], [ -64.922040131814072, 18.321759330944303 ], [ -64.921980955549259, 18.321822362886451 ], [ -64.921910212252499, 18.321870307395614 ], [ -64.921851035987686, 18.321933339337761 ], [ -64.921815161424831, 18.322011458712893 ], [ -64.921767719830086, 18.322082034371533 ], [ -64.921685241863258, 18.322115059085888 ], [ -64.921633776953058, 18.322181779067193 ], [ -64.921590191035591, 18.322256210403111 ], [ -64.921539229039809, 18.322274315322659 ], [ -64.921507880706883, 18.322285379440189 ], [ -64.921421714700898, 18.322307172398894 ], [ -64.921339404372191, 18.322332653396813 ], [ -64.921272349114588, 18.322388141622469 ], [ -64.921213172849718, 18.322451173564616 ], [ -64.921130862521068, 18.322480342601636 ], [ -64.921052407869638, 18.322517055355206 ], [ -64.921032123654243, 18.322599030407616 ], [ -64.92101971843158, 18.322681005460026 ], [ -64.92101502456353, 18.322767003827892 ], [ -64.92101820968827, 18.322852834557636 ], [ -64.92102139481301, 18.322938665287325 ], [ -64.921055760632555, 18.323017455215052 ], [ -64.921133544731333, 18.323066573191227 ], [ -64.921195570844645, 18.323126755284932 ], [ -64.921265308312513, 18.323216944606372 ], [ -64.921343092411348, 18.323258686504232 ], [ -64.921417020832848, 18.32330411644125 ], [ -64.921432443542074, 18.323319036236057 ], [ -64.921494804931683, 18.323346528891705 ], [ -64.921556831044938, 18.32340671098541 ], [ -64.921603099172671, 18.323477957196587 ], [ -64.921629753637603, 18.323556579486137 ], [ -64.921613492737606, 18.323638722176668 ], [ -64.921597064199489, 18.323720697229135 ], [ -64.921592370331496, 18.323806527958823 ], [ -64.921587844101566, 18.323892357378895 ], [ -64.921614498566498, 18.323970980978117 ], [ -64.921637297354039, 18.324053291306825 ], [ -64.921656072826181, 18.324135601635533 ], [ -64.921651378958188, 18.324221432365221 ], [ -64.921729330695143, 18.324259486223923 ], [ -64.921787333492944, 18.324323356356786 ], [ -64.921813987957819, 18.324405665375821 ], [ -64.921805438412491, 18.324491497415238 ], [ -64.921754141140411, 18.324558385034663 ], [ -64.921671663173584, 18.324587554071741 ], [ -64.921585497167541, 18.324609347030446 ], [ -64.921499331161556, 18.324630972351031 ], [ -64.921416853194728, 18.324667685104544 ], [ -64.921365555922648, 18.324734405085906 ], [ -64.921310235335113, 18.324801291395659 ], [ -64.921289951119718, 18.324883266448069 ], [ -64.921287268909396, 18.324931547543201 ], [ -64.921285257251668, 18.324969098487486 ], [ -64.921245527011536, 18.325043528513731 ], [ -64.921210155363156, 18.325069346097564 ], [ -64.921186350746723, 18.325104213521854 ], [ -64.921134885836523, 18.325171102451009 ], [ -64.921094485043795, 18.325320131451349 ], [ -64.921113428154058, 18.325402443089729 ], [ -64.921191212252893, 18.325440329310254 ], [ -64.921277210620758, 18.325455918347984 ], [ -64.921354994719593, 18.325493804568509 ], [ -64.921428923141093, 18.325539234505527 ], [ -64.921498828247138, 18.325588352481759 ], [ -64.921576779984093, 18.325626238702284 ], [ -64.921658587398326, 18.325656916482615 ], [ -64.921748441443526, 18.325657588344882 ], [ -64.921834272173271, 18.325676865421769 ], [ -64.921920102903016, 18.32569631144645 ], [ -64.922005933632704, 18.325715591142682 ], [ -64.922071983061471, 18.325772085197229 ], [ -64.922126130181994, 18.325839809697754 ], [ -64.922211960911682, 18.325862777433144 ], [ -64.922219839904471, 18.325862943761592 ], [ -64.922297791641427, 18.325882223457825 ], [ -64.922367695437799, 18.325935029473214 ], [ -64.922429722860727, 18.325995211566919 ], [ -64.922487893296704, 18.326059249337902 ], [ -64.922530138108982, 18.326134183588294 ], [ -64.922568694882102, 18.326209116528958 ], [ -64.922599205024312, 18.326287738818507 ], [ -64.922614124819177, 18.326373738496045 ], [ -64.922629044613984, 18.32645604751508 ], [ -64.922695094042695, 18.326512541569628 ], [ -64.922757120156007, 18.326572892611125 ], [ -64.922827025262052, 18.3266220105873 ], [ -64.92291285599174, 18.326641287664188 ], [ -64.923002876365388, 18.326641959526455 ], [ -64.923092730410588, 18.326642628769378 ], [ -64.92317889641663, 18.326632236514115 ], [ -64.923264559508198, 18.32665520163016 ], [ -64.92333848923937, 18.326700631567178 ], [ -64.923412416351198, 18.326746061504195 ], [ -64.923482321457243, 18.326795179480371 ], [ -64.923564296509653, 18.326821833945303 ], [ -64.923626322622965, 18.326882183677128 ], [ -64.923613917400303, 18.326964158729538 ], [ -64.923632694182118, 18.327046470367918 ], [ -64.923659348646993, 18.327125091347796 ], [ -64.92371751908297, 18.327188961480658 ], [ -64.923783399563888, 18.327245624482998 ], [ -64.923849450302271, 18.327302118537546 ], [ -64.923903597422793, 18.327369675399893 ], [ -64.923926396210391, 18.327451985728601 ], [ -64.923913823349608, 18.327534128419131 ], [ -64.92385079140746, 18.327593304684001 ], [ -64.923803348503043, 18.327663881652256 ], [ -64.923736294555113, 18.327719368568296 ], [ -64.923646105233615, 18.327752225644474 ], [ -64.923559939227573, 18.327770330564022 ], [ -64.92347762758925, 18.327799499601099 ], [ -64.923437897349118, 18.327866388530254 ], [ -64.92343823393503, 18.327899076658639 ], [ -64.9233691670197, 18.327952385588446 ], [ -64.923293728545275, 18.327993456933712 ], [ -64.92323086555092, 18.328052634508197 ], [ -64.92320504927676, 18.328135949356124 ], [ -64.923216951585005, 18.328219600789964 ], [ -64.923234887556703, 18.328303253533477 ], [ -64.923277970559695, 18.328375168987577 ], [ -64.9232960754793, 18.328458820421474 ], [ -64.923339158482293, 18.328530737185247 ], [ -64.923382241485285, 18.328602653949019 ], [ -64.92343169604743, 18.328674738350912 ], [ -64.923499923462373, 18.328728885471435 ], [ -64.923549210386398, 18.328800969873384 ], [ -64.923586089468415, 18.328878753972162 ], [ -64.923629172471408, 18.328950670735935 ], [ -64.923709975366478, 18.328987215851328 ], [ -64.923778204091093, 18.32904136297185 ], [ -64.923815084482783, 18.329119147070685 ], [ -64.92383318940233, 18.329202966142645 ], [ -64.923838721461095, 18.329286449938365 ], [ -64.923875434214608, 18.3293642340372 ], [ -64.923950033188703, 18.329412681460838 ], [ -64.924018260603646, 18.329466828581303 ], [ -64.924061343606638, 18.329538745345076 ], [ -64.924110798168783, 18.329610829747025 ], [ -64.924179025583726, 18.329664976867548 ], [ -64.924240885368533, 18.329731193934435 ], [ -64.924221439343853, 18.329814510091978 ], [ -64.924233172704248, 18.329898161525819 ], [ -64.924307771678286, 18.329946441311336 ], [ -64.924350854681336, 18.330018358075108 ], [ -64.924294025350491, 18.330083569313103 ], [ -64.924293356107626, 18.330167053108823 ], [ -64.924298888166334, 18.330250704542664 ], [ -64.924291847364316, 18.330334188338384 ], [ -64.924291175502049, 18.330417672134104 ], [ -64.924290506259126, 18.330501155929824 ], [ -64.924296038317891, 18.330584807363664 ], [ -64.924301570376656, 18.330668291159384 ], [ -64.924307605349838, 18.330680361105749 ], [ -64.924330404137436, 18.330721600089191 ], [ -64.924432829733746, 18.330908181343432 ], [ -64.924531737548364, 18.331033239398835 ], [ -64.924720664426957, 18.331197357141832 ], [ -64.924786044612802, 18.331282182042685 ], [ -64.924809681591114, 18.331312859823072 ], [ -64.919428832445021, 18.334583143426528 ], [ -64.919406033657424, 18.334621867837768 ], [ -64.919400333960539, 18.334631592159838 ], [ -64.919430173550154, 18.334709711534913 ], [ -64.919425479682104, 18.334794033521348 ], [ -64.919425312043984, 18.334801743566288 ], [ -64.919408715867746, 18.334885396309858 ], [ -64.919463868817104, 18.334954295587011 ], [ -64.919503096142819, 18.335030906218833 ], [ -64.919542323468477, 18.335107347902806 ], [ -64.919581550794192, 18.335183790896508 ], [ -64.919604852496207, 18.335267777606646 ], [ -64.919627986560101, 18.335351765626456 ], [ -64.919667213885759, 18.335428208620101 ], [ -64.919658496702311, 18.335512026382446 ], [ -64.919681630766149, 18.335596014402256 ], [ -64.919696885837254, 18.335679833474273 ], [ -64.919728066532059, 18.335763818874739 ], [ -64.919735274972254, 18.335847805584876 ], [ -64.919718678795959, 18.335931457018717 ], [ -64.919718008243422, 18.336015108452557 ], [ -64.919741142307259, 18.336099096472424 ], [ -64.919764276371154, 18.336183081872889 ], [ -64.919795457065959, 18.336267068583027 ], [ -64.919778860889664, 18.336350887654987 ], [ -64.919786069329859, 18.336442250443497 ], [ -64.919793277770054, 18.336526069515514 ], [ -64.919760588331997, 18.336609720949355 ], [ -64.919704261915626, 18.336677782035792 ], [ -64.919624130882767, 18.33672287669657 ], [ -64.919536288495294, 18.336729749860467 ], [ -64.919487841071714, 18.33680552361119 ], [ -64.919519021766462, 18.336889509011655 ], [ -64.919550202461267, 18.33697366335997 ], [ -64.919597308779714, 18.337050106353615 ], [ -64.919644582736339, 18.337126716985438 ], [ -64.919699735685697, 18.33719561757232 ], [ -64.919738963011412, 18.337272226894413 ], [ -64.919778190337126, 18.337348669888115 ], [ -64.919833343286484, 18.337417736803445 ], [ -64.919896710504929, 18.337486636080598 ], [ -64.919967956716107, 18.337540615563 ], [ -64.920023277303642, 18.337609514840153 ], [ -64.92006233699118, 18.337686125471976 ], [ -64.920085471055074, 18.337777655898606 ], [ -64.920100726126179, 18.337861642608743 ], [ -64.920115981197284, 18.337945461680761 ], [ -64.920155208522942, 18.338029616029019 ], [ -64.920170463594047, 18.338113435101036 ], [ -64.920193597657942, 18.338197421811174 ], [ -64.920224778352747, 18.338281408521311 ], [ -64.920264005678405, 18.338365562869626 ], [ -64.9202712141186, 18.338449381941587 ], [ -64.920270543566005, 18.338525657297112 ], [ -64.920278254920674, 18.338557676182631 ], [ -64.920341286862822, 18.338649541885559 ], [ -64.92040448644309, 18.338711065084397 ], [ -64.920459807030625, 18.338779964361549 ], [ -64.920499034356283, 18.338856407355252 ], [ -64.920546140674787, 18.338933017987017 ], [ -64.920625601155052, 18.338971742398314 ], [ -64.92071310826617, 18.33899521173845 ], [ -64.920800783015522, 18.339011137362149 ], [ -64.920888793041115, 18.338981465410654 ], [ -64.920921314841053, 18.338897813976814 ], [ -64.920922153031768, 18.338814162542974 ], [ -64.920962553824438, 18.338738222463689 ], [ -64.921026926871775, 18.338677872731864 ], [ -64.921099178911845, 18.338625066716531 ], [ -64.921187188937438, 18.338595227126859 ], [ -64.921274863686733, 18.338596065317631 ], [ -64.921362706074206, 18.338596735870169 ], [ -64.921450213185381, 18.338627916564974 ], [ -64.921513412765648, 18.338689272125691 ], [ -64.921608798869613, 18.338720452820439 ], [ -64.921696473618908, 18.338744089798752 ], [ -64.921783980730083, 18.338760015422451 ], [ -64.921871990755676, 18.338730175832779 ], [ -64.921952121788479, 18.338692792526672 ], [ -64.921968717964774, 18.338609141092832 ], [ -64.921945583900879, 18.338525154382694 ], [ -64.922009956948159, 18.338464637012692 ], [ -64.922089249790304, 18.338503361423989 ], [ -64.922168710270569, 18.338542085835229 ], [ -64.922256385019864, 18.338558011458929 ], [ -64.922335845500129, 18.338596735870169 ], [ -64.922431399242214, 18.338605117777377 ], [ -64.922519409267807, 18.338582989542374 ], [ -64.922583613367294, 18.338522472172372 ], [ -64.922671623392887, 18.338508055291982 ], [ -64.922759467089975, 18.338493470773471 ], [ -64.922839430484714, 18.338455919829244 ], [ -64.922927440510307, 18.338433791594184 ], [ -64.923015282897722, 18.338419207075674 ], [ -64.923102957647075, 18.338420045266389 ], [ -64.92319080003449, 18.338420715818984 ], [ -64.923278307145665, 18.338436641442684 ], [ -64.923358604506973, 18.338391546781907 ], [ -64.92344628056594, 18.338384505979889 ], [ -64.92351836496789, 18.338362377744886 ], [ -64.92353764335445, 18.338339578957289 ], [ -64.923625653380043, 18.338309739367674 ], [ -64.923713494457843, 18.338302866203719 ], [ -64.923801338154988, 18.338288281685209 ], [ -64.92388934818058, 18.338258609733714 ], [ -64.924283633095229, 18.338102873897981 ], [ -64.924305424744318, 18.338094324352596 ], [ -64.924393268441406, 18.338094994905191 ], [ -64.924481278466999, 18.338065155315576 ], [ -64.924561240552066, 18.338027772009468 ], [ -64.924649084249154, 18.338020731207394 ], [ -64.924736926636626, 18.338021569398109 ], [ -64.924824767714426, 18.338006984879598 ], [ -64.924912611411514, 18.337992400361031 ], [ -64.925000284851194, 18.337993070913626 ], [ -64.925087959600489, 18.337993741466221 ], [ -64.925175466711664, 18.338024922160969 ], [ -64.925262973822839, 18.338056102855774 ], [ -64.925307565569142, 18.338072028479473 ], [ -64.925350482243687, 18.338087283550578 ], [ -64.925429941414222, 18.338126007961819 ], [ -64.925493142304219, 18.338187363522536 ], [ -64.925540416260844, 18.338263974154358 ], [ -64.925611662472022, 18.338317785998584 ], [ -64.925650888488065, 18.338394228992229 ], [ -64.925706210385215, 18.338463295907559 ], [ -64.925753315394047, 18.338539906539381 ], [ -64.925792542719705, 18.338616349533027 ], [ -64.92582372341451, 18.338700336243164 ], [ -64.925838978485615, 18.338784322953302 ], [ -64.92584618692581, 18.338868142025319 ], [ -64.925861443306587, 18.338951961097337 ], [ -64.92586865043711, 18.339035947807474 ], [ -64.925891953448797, 18.339119766879435 ], [ -64.925923132833873, 18.33920392122775 ], [ -64.925938387904978, 18.339287740299767 ], [ -64.925953642976083, 18.339371727009905 ], [ -64.925968730409068, 18.339455546081865 ], [ -64.925992033420755, 18.33953953279206 ], [ -64.926031259436797, 18.339616143423825 ], [ -64.926086412386155, 18.339692754055648 ], [ -64.926125473383365, 18.339776740765785 ], [ -64.926134356895318, 18.339795851514225 ], [ -64.926164699399408, 18.3398608951141 ], [ -64.926211973356033, 18.339937338107745 ], [ -64.926251200681691, 18.340013948739568 ], [ -64.926314401571688, 18.340075304300285 ], [ -64.92633770196403, 18.340159291010423 ], [ -64.926336863773315, 18.340243110082383 ], [ -64.926336194530393, 18.340326929154401 ], [ -64.926335522668126, 18.340410580588241 ], [ -64.92635865673202, 18.340494567298379 ], [ -64.926398220643648, 18.340540667787991 ], [ -64.92643409389683, 18.340617110781693 ], [ -64.926497462424891, 18.340686176387351 ], [ -64.926496622924503, 18.340769995459311 ], [ -64.926511877995608, 18.340853815841001 ], [ -64.926535179697623, 18.340937802551139 ], [ -64.926599386416456, 18.340877452819313 ], [ -64.926632074544898, 18.340793801385416 ], [ -64.926632912735613, 18.340702438596963 ], [ -64.926593685409898, 18.340625995603318 ], [ -64.926586310641255, 18.340542176531301 ], [ -64.926579100891388, 18.340458189821163 ], [ -64.926595864705746, 18.340374538387323 ], [ -64.926683874731395, 18.340344866435828 ], [ -64.926771884756988, 18.34030748312972 ], [ -64.926867438499073, 18.340331120107976 ], [ -64.926930638079341, 18.340392474359021 ], [ -64.926985958666876, 18.340461542584023 ], [ -64.927057204878054, 18.340515354428248 ], [ -64.927104478834679, 18.340591965060071 ], [ -64.927167678414946, 18.340653320620788 ], [ -64.927255353164242, 18.340669246244431 ], [ -64.927335484197101, 18.340624151583711 ], [ -64.927415615229904, 18.340586768277603 ], [ -64.927495578624644, 18.340549217333376 ], [ -64.927583253373939, 18.340572854311631 ], [ -64.927622313061477, 18.340649297305333 ], [ -64.927605716885239, 18.340732947429501 ], [ -64.927525585852379, 18.340778043399894 ], [ -64.927437911103084, 18.340777372847356 ], [ -64.927349901077491, 18.340791788418016 ], [ -64.927269770044632, 18.340844594433406 ], [ -64.927237080606574, 18.340928079538799 ], [ -64.927196512175726, 18.341004019618026 ], [ -64.927211768556504, 18.341087837380371 ], [ -64.927275134465276, 18.341149361888881 ], [ -64.927338334045544, 18.341210717449599 ], [ -64.927377561371259, 18.341294870488184 ], [ -64.927392816442364, 18.341378689560202 ], [ -64.927415950506202, 18.341462677580012 ], [ -64.927471103455616, 18.341539288211834 ], [ -64.927534470674004, 18.341600811410672 ], [ -64.927605716885239, 18.341654623254897 ], [ -64.927685177365504, 18.341693346356465 ], [ -64.927764637845712, 18.341739614484197 ], [ -64.927852144956887, 18.34176325146251 ], [ -64.927939819706239, 18.341763923324777 ], [ -64.928019950739042, 18.341726372380492 ], [ -64.928107793126514, 18.341711955500159 ], [ -64.92819546787581, 18.341712626052697 ], [ -64.928283310263282, 18.341698041534187 ], [ -64.928379031643487, 18.341698712086782 ], [ -64.92846687403096, 18.341699550277497 ], [ -64.928570642042075, 18.341677422042494 ], [ -64.928650940713055, 18.341632327381717 ], [ -64.928730904107738, 18.341594944075609 ], [ -64.928795277155075, 18.341534425395935 ], [ -64.928835845585922, 18.341458654264557 ], [ -64.928892172002293, 18.341390425539942 ], [ -64.929004321920615, 18.341345666155519 ], [ -64.929068694967896, 18.341285316423637 ], [ -64.929172798255308, 18.341225134329932 ], [ -64.929221413317123, 18.341149361888881 ], [ -64.929253935117003, 18.341065878093161 ], [ -64.929278577924208, 18.340982225349649 ], [ -64.929327192985966, 18.340906454218214 ], [ -64.92933591016947, 18.340822635146196 ], [ -64.929336580722008, 18.340738982402684 ], [ -64.929337251274603, 18.340655164640339 ], [ -64.929377819705451, 18.340579224561111 ], [ -64.929442192752731, 18.340518874829286 ], [ -64.929498519169101, 18.340450646104671 ], [ -64.929547134230916, 18.340374872353891 ], [ -64.929627265263719, 18.340329779002843 ], [ -64.929675712687356, 18.340254006561736 ], [ -64.929596419845211, 18.340207738434003 ], [ -64.929581164774106, 18.340123751723866 ], [ -64.929668671885281, 18.340139677347565 ], [ -64.929756346634576, 18.340163314325878 ], [ -64.929836477667436, 18.340110508310488 ], [ -64.929924320054909, 18.340111346501203 ], [ -64.929939407487836, 18.34019516557322 ], [ -64.929954494920821, 18.340294407354463 ], [ -64.930001768877389, 18.340370850348108 ], [ -64.930024902941284, 18.340454837058303 ], [ -64.930040158012389, 18.340538823768441 ], [ -64.930023561836151, 18.340622475202281 ], [ -64.930022891283556, 18.340706126636121 ], [ -64.930014174100052, 18.340789944398466 ], [ -64.930005289278427, 18.340881308496591 ], [ -64.929996739733099, 18.340964959930488 ], [ -64.929988022549594, 18.341048779002449 ], [ -64.930027249875309, 18.341125221996151 ], [ -64.930050383939204, 18.341209207396616 ], [ -64.930097657895772, 18.341285650390262 ], [ -64.930160857476096, 18.341354718615264 ], [ -64.930240317956304, 18.341393443026504 ], [ -64.930319610798449, 18.341439711154294 ], [ -64.930399071278714, 18.341486146920147 ], [ -64.930478364120802, 18.341524871331444 ], [ -64.930581461579379, 18.341594104575222 ], [ -64.930669136328675, 18.341610031508594 ], [ -64.93075681107797, 18.341625957132237 ], [ -64.930852532458232, 18.341611540251847 ], [ -64.930910702894209, 18.341612043166322 ], [ -64.930940374845648, 18.34161220949477 ], [ -64.93101966637812, 18.341650935215739 ], [ -64.931107174798967, 18.341682114600815 ], [ -64.931176912266835, 18.34173592644504 ], [ -64.931256371437428, 18.341774652166009 ], [ -64.931344047496395, 18.34178303407316 ], [ -64.93143155460757, 18.341806503413352 ], [ -64.931519060409073, 18.341829971443815 ], [ -64.931614783099008, 18.341838353351022 ], [ -64.931710335531363, 18.341846736567902 ], [ -64.931798011590388, 18.34185511847511 ], [ -64.931885686339683, 18.341863331434467 ], [ -64.931973361088978, 18.341871714651347 ], [ -64.932061203476451, 18.341872385203942 ], [ -64.932148878225746, 18.341880599472972 ], [ -64.932236552975098, 18.34188898138018 ], [ -64.932324226414721, 18.341889650623102 ], [ -64.932420115433104, 18.341875235052385 ], [ -64.932507959130191, 18.341852939179262 ], [ -64.932596135484289, 18.341808012156662 ], [ -64.932684145509882, 18.341785882611987 ], [ -64.932764276542741, 18.341740789260882 ], [ -64.932844407575544, 18.341695694600162 ], [ -64.932924538608404, 18.341658311294054 ], [ -64.932988745327179, 18.341597793924052 ], [ -64.933068876360039, 18.341560410617944 ], [ -64.933149007392899, 18.341522858364044 ], [ -64.933237017418492, 18.341493020084044 ], [ -64.933303903728245, 18.341461839389297 ], [ -64.933316979503502, 18.341455635468265 ], [ -64.933404989529095, 18.341441052259427 ], [ -64.933492833226239, 18.341418924024424 ], [ -64.933565085266252, 18.341366118009034 ], [ -64.933597773394695, 18.341282634213371 ], [ -64.933661978803855, 18.341222115533697 ], [ -64.933742277474835, 18.341177188511097 ], [ -64.933822240869517, 18.341139638876541 ], [ -64.93391025089511, 18.341117510641482 ], [ -64.933998094592255, 18.341110637477584 ], [ -64.93412566591013, 18.341111643306476 ], [ -64.934213174330978, 18.341127401291999 ], [ -64.934300847770601, 18.341135783199206 ], [ -64.934396233874565, 18.341182218965116 ], [ -64.93447569435483, 18.341220943376356 ], [ -64.934563201466005, 18.341252124071161 ], [ -64.934650540939003, 18.341283303456237 ], [ -64.934738215688299, 18.341306774106101 ], [ -64.934833938378233, 18.341292357225711 ], [ -64.934914069411036, 18.341254806281427 ], [ -64.935002079436629, 18.341217422975319 ], [ -64.935089920514429, 18.341202838456809 ], [ -64.935170051547288, 18.341165455150701 ], [ -64.935250182580091, 18.341127904206417 ], [ -64.935330313612951, 18.341090520900309 ], [ -64.935410277007634, 18.341052969956081 ], [ -64.935442295893097, 18.341038050161274 ], [ -64.935488900606799, 18.341008042933481 ], [ -64.935561152646869, 18.340955236918091 ], [ -64.935641282370057, 18.340917685973864 ], [ -64.935721245764739, 18.340880301358084 ], [ -64.935809255790332, 18.340858174432753 ], [ -64.935897098177804, 18.340843589914186 ], [ -64.935985108203397, 18.340813750324571 ], [ -64.936072950590869, 18.340806877160674 ], [ -64.936160792978285, 18.340784748925671 ], [ -64.936248803003878, 18.340762453052491 ], [ -64.93633664539135, 18.340755579888594 ], [ -64.936407891602585, 18.340809390423146 ], [ -64.936471091182852, 18.340878458648149 ], [ -64.936542505032207, 18.340932438130551 ], [ -64.936629844505205, 18.340963618825299 ], [ -64.936717686892678, 18.340964289377894 ], [ -64.93680569691827, 18.340934448478606 ], [ -64.936893539305743, 18.340912321553276 ], [ -64.936981716969456, 18.340874938247111 ], [ -64.937069559356928, 18.340845097347824 ], [ -64.937157569382521, 18.340822970422494 ], [ -64.937245411769993, 18.340808385903983 ], [ -64.937333421795586, 18.340778546314311 ], [ -64.937413552828389, 18.340741163008204 ], [ -64.937493516223128, 18.340703612063976 ], [ -64.937581526248721, 18.340673940112481 ], [ -64.937669536274313, 18.340659355593971 ], [ -64.937757378661786, 18.340644771075404 ], [ -64.937845221049201, 18.340630186556893 ], [ -64.937933063436674, 18.340608058321891 ], [ -64.938020905824146, 18.340608728874486 ], [ -64.938108580573441, 18.340601854400916 ], [ -64.938204301953647, 18.340602526263126 ], [ -64.938291976702999, 18.340618451886826 ], [ -64.938371269545087, 18.340664887652736 ], [ -64.938458944294382, 18.340680813276379 ], [ -64.938530190505617, 18.340734625120604 ], [ -64.938601604354915, 18.340788436964829 ], [ -64.93868106483518, 18.340827161376126 ], [ -64.938768571946355, 18.340858342070874 ], [ -64.938856246695707, 18.340866723978081 ], [ -64.938951968075912, 18.340867394530676 ], [ -64.939039810463385, 18.340852810012109 ], [ -64.939047689456117, 18.340852977650286 ], [ -64.939109547931253, 18.340797657062751 ], [ -64.939186661477493, 18.340752562402031 ], [ -64.939273330397953, 18.340716520201056 ], [ -64.939369387054455, 18.340689864426508 ], [ -64.939455888336795, 18.340672262421378 ], [ -64.939542221980901, 18.340663714185723 ], [ -64.93962872326324, 18.340646112180593 ], [ -64.939715056907403, 18.340637562635209 ], [ -64.939801390551565, 18.340629179418386 ], [ -64.939888059472025, 18.340602358625006 ], [ -64.939965173018265, 18.340557096326108 ], [ -64.940032731190286, 18.340502613929289 ], [ -64.940100289362306, 18.340448299170646 ], [ -64.940158458488611, 18.340384595366288 ], [ -64.940226017970303, 18.340330114279141 ], [ -64.940312685581091, 18.34028501961842 ], [ -64.940399354501551, 18.340249145055566 ], [ -64.940485857093506, 18.34022232295257 ], [ -64.940572358375789, 18.34020472094744 ], [ -64.940658858348456, 18.340177898844388 ], [ -64.940745528578532, 18.340132804183668 ], [ -64.940833203327884, 18.34010983775795 ], [ -64.940946860679844, 18.340056528828143 ], [ -64.941060016427002, 18.340062899077623 ], [ -64.9411362930922, 18.340087709522891 ], [ -64.941268559587854, 18.340186113113418 ], [ -64.941341648508967, 18.340248977417446 ], [ -64.941420272108132, 18.340327934983293 ], [ -64.941484811483917, 18.340393313859408 ], [ -64.941507107357097, 18.340434049928433 ], [ -64.941580031259377, 18.340510325283958 ], [ -64.941647589431398, 18.340562125470456 ], [ -64.941713134636075, 18.340592131388519 ], [ -64.941780692808095, 18.340614260933194 ], [ -64.941895526246412, 18.340653152982611 ], [ -64.941967275372008, 18.340703109149558 ], [ -64.942083782572411, 18.340795476457231 ], [ -64.942314621606386, 18.340850629406589 ], [ -64.942626093277966, 18.340931097025361 ], [ -64.942890458631041, 18.340997984644844 ], [ -64.943103191435796, 18.341016089564391 ], [ -64.943335536593679, 18.341033356293224 ], [ -64.943525639558629, 18.341096388235371 ], [ -64.943736694672282, 18.341177860373364 ], [ -64.943903663573394, 18.341273580443897 ], [ -64.944069121111852, 18.341412049550854 ], [ -64.944152941493485, 18.341499055057227 ], [ -64.944282356831025, 18.341586225582432 ], [ -64.94438143097409, 18.341672728174444 ], [ -64.944473631953315, 18.341753362121722 ], [ -64.944638084972553, 18.34190976851005 ], [ -64.944768675086721, 18.341987886575509 ], [ -64.94485199124432, 18.342310256036058 ], [ -64.944927260770953, 18.3424413490647 ], [ -64.944938827802901, 18.342617201477708 ], [ -64.944870766716463, 18.343009305786893 ], [ -64.944807734774315, 18.343214328546651 ], [ -64.944728944846588, 18.343499479719924 ], [ -64.94465183261002, 18.343708524485521 ], [ -64.94431923853233, 18.344087220362439 ], [ -64.944213792830112, 18.344339180492909 ], [ -64.944142546618878, 18.344622320008455 ], [ -64.944137685112707, 18.34480957181529 ], [ -64.944070797493282, 18.345039906625118 ], [ -64.943953284463987, 18.345443914552163 ], [ -64.943792519483907, 18.345774833558096 ], [ -64.943548773622524, 18.346092506531306 ], [ -64.943418517474981, 18.346247907090799 ], [ -64.943260937619584, 18.346401631268861 ], [ -64.943061280590086, 18.346590224180886 ], [ -64.942885092900781, 18.346817038589677 ], [ -64.942851231305326, 18.346937235138967 ], [ -64.942837148391561, 18.347005799139822 ], [ -64.942840668792599, 18.347069501634564 ], [ -64.942864808685329, 18.347176622408597 ], [ -64.942922477516561, 18.347232445910549 ], [ -64.942970420716051, 18.347286425392895 ], [ -64.943046025518981, 18.347373261951475 ], [ -64.943100341587353, 18.347446687458557 ], [ -64.943191032513539, 18.34750418734194 ], [ -64.943250208778409, 18.347539056075902 ], [ -64.943262112396269, 18.347538385523308 ], [ -64.943274013394841, 18.347532350550125 ], [ -64.943297818011274, 18.347512904525445 ], [ -64.943305697004064, 18.347474012476027 ], [ -64.943317096397834, 18.347399078225635 ], [ -64.943313575996797, 18.347305536141334 ], [ -64.943332351468939, 18.347228925509512 ], [ -64.943448859979014, 18.347022898230534 ], [ -64.943603254709672, 18.346841513758704 ], [ -64.943722445430012, 18.346696674402324 ], [ -64.943830236756639, 18.346478409538804 ], [ -64.944076329552047, 18.346301216020606 ], [ -64.944274142561937, 18.346053614481889 ], [ -64.944431554779158, 18.345759075572573 ], [ -64.94459667835099, 18.345511137447943 ], [ -64.944638923163268, 18.345348696086376 ], [ -64.944670271496193, 18.34520301853928 ], [ -64.944722909873406, 18.34496396654589 ], [ -64.944777727546523, 18.344715526816515 ], [ -64.944844615165948, 18.344580410472417 ], [ -64.944967493925503, 18.344423165893375 ], [ -64.94508165550161, 18.34428318935278 ], [ -64.945178215072531, 18.344079507698154 ], [ -64.945256166809486, 18.343899130364889 ], [ -64.945331101059878, 18.343756133718387 ], [ -64.945490692572946, 18.343519428659079 ], [ -64.945567973757306, 18.343351121272178 ], [ -64.945682470609711, 18.343175939411708 ], [ -64.945709963265301, 18.343002266294491 ], [ -64.945737120644651, 18.342773103642003 ], [ -64.945809707960962, 18.342616026701023 ], [ -64.945846755990829, 18.342289133629947 ], [ -64.945821442631086, 18.34203365309844 ], [ -64.945771821740436, 18.341934914231672 ], [ -64.945719853915818, 18.341831649134974 ], [ -64.945696887490044, 18.341565941367037 ], [ -64.945686326286989, 18.341324542439679 ], [ -64.945625138364449, 18.341094711853941 ], [ -64.945563615165611, 18.340889187489381 ], [ -64.945514664827556, 18.340695565433066 ], [ -64.945503600710026, 18.340526586183898 ], [ -64.945479963731714, 18.340333299403881 ], [ -64.945430845755538, 18.340163984878416 ], [ -64.945368819642283, 18.340018642607561 ], [ -64.945257172638378, 18.339776405489488 ], [ -64.945167150955058, 18.339659896979413 ], [ -64.945133288049931, 18.33947381863959 ], [ -64.945086684645901, 18.339359489425362 ], [ -64.945073441232523, 18.339279023116262 ], [ -64.945071429574796, 18.339102500150602 ], [ -64.945044607471743, 18.339050699964105 ], [ -64.945016947178033, 18.339020022183774 ], [ -64.944965146991535, 18.339019519269357 ], [ -64.944889206912251, 18.33904181514248 ], [ -64.94482148110211, 18.339029912834292 ], [ -64.94477001619191, 18.33899521173845 ], [ -64.944706482645017, 18.338964198681822 ], [ -64.944631379446832, 18.33888758805 ], [ -64.94450011878007, 18.338856072078954 ], [ -64.944412780616688, 18.338817347667657 ], [ -64.944405067952403, 18.338782981848169 ], [ -64.944417473175065, 18.338737384272974 ], [ -64.94446156200695, 18.338711065084397 ], [ -64.944613106889108, 18.338689439763812 ], [ -64.944735650372365, 18.338655576858741 ], [ -64.94487277837419, 18.338634454452574 ], [ -64.944940504184331, 18.338638645406206 ], [ -64.944964644077061, 18.338600926823801 ], [ -64.944997333515175, 18.338521131067239 ], [ -64.945034046268688, 18.338422559838591 ], [ -64.945110656900511, 18.338301189822289 ], [ -64.945168492060191, 18.338270512041959 ], [ -64.945234038574483, 18.338332705793391 ], [ -64.945297405792928, 18.338382661960281 ], [ -64.945399665060734, 18.338378638644826 ], [ -64.945491698401838, 18.338349804884047 ], [ -64.945546348436778, 18.338320971123323 ], [ -64.945731923862184, 18.338301357460466 ], [ -64.945817251677454, 18.338266321088383 ], [ -64.945885312763949, 18.338260286115144 ], [ -64.945966784901884, 18.338260956667739 ], [ -64.946026296443051, 18.338272691337806 ], [ -64.946061668091431, 18.338302195651181 ], [ -64.946085137431567, 18.338346284483066 ], [ -64.946119000336637, 18.338364389402614 ], [ -64.946181864640664, 18.338369753823201 ], [ -64.946392585787692, 18.338369753823201 ], [ -64.946512949975045, 18.338411328082941 ], [ -64.946558547550239, 18.338431277022039 ], [ -64.94658922533057, 18.338444352797296 ], [ -64.946643540089212, 18.338452902342624 ], [ -64.946711768813827, 18.338458266763212 ], [ -64.94679491733325, 18.338516101922892 ], [ -64.946917963730982, 18.338574104720749 ], [ -64.947017205512225, 18.338631939880429 ], [ -64.947092307400737, 18.338697318756601 ], [ -64.947106891919248, 18.338756495021414 ], [ -64.947160703763473, 18.338825394298567 ], [ -64.94724133771075, 18.338926815375714 ], [ -64.947327168440495, 18.339034606702285 ], [ -64.947391541487775, 18.339137368884565 ], [ -64.947448035542266, 18.339238287047294 ], [ -64.947557503250323, 18.339688898378313 ], [ -64.94758181078123, 18.339842790194552 ], [ -64.947633443329551, 18.339937505745866 ], [ -64.947661438899615, 18.340116878559968 ], [ -64.947647524933643, 18.340553240648831 ], [ -64.947648698400656, 18.340819785297754 ], [ -64.947622546850198, 18.341001671374329 ], [ -64.947578624346818, 18.341252626985579 ], [ -64.947531519337986, 18.341406517492089 ], [ -64.947484413019538, 18.341628470394767 ], [ -64.94750151211025, 18.341849754054522 ], [ -64.947560520736943, 18.341978332510962 ], [ -64.947675352865531, 18.342084781422727 ], [ -64.947747604905601, 18.3421473104504 ], [ -64.947872326375091, 18.342296005484172 ], [ -64.947939718218663, 18.342463308351853 ], [ -64.947958326052628, 18.342580321086075 ], [ -64.947978777906201, 18.342791711475968 ], [ -64.947956482033021, 18.343012324583128 ], [ -64.947920272193926, 18.343262105417693 ], [ -64.947868974921903, 18.343498810477001 ], [ -64.947848858344571, 18.343678852534026 ], [ -64.947907196418726, 18.343797875616247 ], [ -64.947957655500034, 18.343889238404756 ], [ -64.947989674385553, 18.344157962349584 ], [ -64.947978107353606, 18.344313027632779 ], [ -64.947945417915548, 18.344404894645322 ], [ -64.947835614931194, 18.34454939741579 ], [ -64.947626402527533, 18.344960110868612 ], [ -64.94763176694812, 18.345130263584736 ], [ -64.94757057902558, 18.345635524950751 ], [ -64.947619026449161, 18.345837025999856 ], [ -64.947685914068643, 18.346020757405711 ], [ -64.947781132534431, 18.346143971441506 ], [ -64.947902670188796, 18.346197112733194 ], [ -64.948007946943278, 18.346339437517429 ], [ -64.948030913368996, 18.346512272443874 ], [ -64.948003755989646, 18.346710253091942 ], [ -64.948024543119516, 18.346884261485457 ], [ -64.948073827424196, 18.347094982632427 ], [ -64.948251691494931, 18.347203276873472 ], [ -64.948360489960066, 18.347295645490817 ], [ -64.948435424210459, 18.347348619144327 ], [ -64.948530641366574, 18.347427911986415 ], [ -64.948640110384304, 18.347454901727588 ], [ -64.948695094385812, 18.347448866754405 ], [ -64.948744046033539, 18.347331352415495 ], [ -64.948875139062181, 18.347221214154899 ], [ -64.948978739435177, 18.347136892168464 ], [ -64.949058198605769, 18.347017198533649 ], [ -64.949056523533955, 18.346840340291692 ], [ -64.949048812179342, 18.346608496738554 ], [ -64.949002376413489, 18.346437338193539 ], [ -64.948848818563874, 18.346291660646386 ], [ -64.948637092897684, 18.346191749622221 ], [ -64.948453026215589, 18.346079095479809 ], [ -64.948303492991101, 18.345946996622331 ], [ -64.948174076343946, 18.345841384591608 ], [ -64.948141219267711, 18.345670896599188 ], [ -64.948184637547058, 18.345409381094498 ], [ -64.948151780470823, 18.345232522852598 ], [ -64.948174243982123, 18.345010067035503 ], [ -64.948189665381676, 18.344813930407042 ], [ -64.948306342839601, 18.344528275009679 ], [ -64.948388653168251, 18.344400702382075 ], [ -64.948455205511436, 18.344317890448622 ], [ -64.948479679370791, 18.344261730360699 ], [ -64.948503150020656, 18.344099456637309 ], [ -64.948498622481054, 18.343844646658454 ], [ -64.948446991242406, 18.343626884709352 ], [ -64.948431233256827, 18.343435275620436 ], [ -64.948439112249616, 18.343277025212501 ], [ -64.948476829522349, 18.343096142345473 ], [ -64.948567858344234, 18.342795065548501 ], [ -64.948645976409637, 18.34262457755608 ], [ -64.948760474571657, 18.342425926355418 ], [ -64.948840605604516, 18.342207492544105 ], [ -64.948881174035364, 18.342033988374737 ], [ -64.948935487484334, 18.341849251140047 ], [ -64.949032717607849, 18.341627967480292 ], [ -64.949127602107012, 18.341433508542934 ], [ -64.949231536446632, 18.341220105185641 ], [ -64.949299263566502, 18.341117006417392 ], [ -64.949381070980735, 18.341018268860239 ], [ -64.949414094385475, 18.340929253005811 ], [ -64.949429183128075, 18.340758932651511 ], [ -64.949423986345607, 18.340568830996176 ], [ -64.949416442629115, 18.340461710222201 ], [ -64.949404540320927, 18.340269932185436 ], [ -64.949408228360085, 18.34002166009418 ], [ -64.949453824625607, 18.33965201798668 ], [ -64.94946321236165, 18.339573060420832 ], [ -64.949480311452305, 18.339429059255167 ], [ -64.949470588439965, 18.339169387770085 ], [ -64.949475283617687, 18.339107361656829 ], [ -64.949464722414632, 18.338992697166304 ], [ -64.949478636380547, 18.338858586651099 ], [ -64.949504955569182, 18.338761356527584 ], [ -64.949544181585225, 18.338670161377252 ], [ -64.949729758320302, 18.338622719782506 ], [ -64.949794131367582, 18.338556167439322 ], [ -64.949845596277783, 18.338507720015741 ], [ -64.949941820572462, 18.338465810479704 ], [ -64.950164779303975, 18.338522472172372 ], [ -64.950421768578735, 18.338594724212442 ], [ -64.950477089166213, 18.338610314559844 ], [ -64.950693845286423, 18.338648536056667 ], [ -64.950783027469356, 18.338667479166929 ], [ -64.950877910658846, 18.338784155315182 ], [ -64.951094331502759, 18.338871159511882 ], [ -64.951323492845631, 18.338946093762274 ], [ -64.951565394687407, 18.339137368884565 ], [ -64.951863456617104, 18.339297966226525 ], [ -64.952009300492705, 18.339408775039715 ], [ -64.952142406488747, 18.339544059021932 ], [ -64.952319431059095, 18.33974053092669 ], [ -64.952420684498065, 18.339851172101703 ], [ -64.952456391422743, 18.33993968504177 ], [ -64.952468796645405, 18.340037250441583 ], [ -64.952505341760798, 18.340168846384586 ], [ -64.95261095379152, 18.340269093994721 ], [ -64.952727629939773, 18.340390799287263 ], [ -64.952755793147958, 18.340467242280909 ], [ -64.952801223084975, 18.340586265363186 ], [ -64.952810946097316, 18.340762116466578 ], [ -64.952884203966278, 18.341006198913874 ], [ -64.952908177530503, 18.341055484528226 ], [ -64.952949079927976, 18.341139471238364 ], [ -64.953006412173238, 18.341257153215452 ], [ -64.953027534579348, 18.341363100522472 ], [ -64.953077490746296, 18.341499055057227 ], [ -64.953035916486556, 18.341695862238282 ], [ -64.95300758564025, 18.341894681077065 ], [ -64.952978585551023, 18.342173966225005 ], [ -64.952954109072323, 18.342447047451913 ], [ -64.952921922548626, 18.342584510729978 ], [ -64.952858890606535, 18.342689956432253 ], [ -64.95272478009133, 18.342822390565971 ], [ -64.952561166572423, 18.342917272445845 ], [ -64.95241196862429, 18.342986339361119 ], [ -64.952306522922015, 18.343029088397543 ], [ -64.952107536445112, 18.343147942531971 ], [ -64.951951466642697, 18.343229248341459 ], [ -64.951868987366197, 18.343300828519318 ], [ -64.951832106974507, 18.343362519356276 ], [ -64.951778799354372, 18.343458912598749 ], [ -64.951764382473982, 18.343607103408374 ], [ -64.951734038660277, 18.343772060651759 ], [ -64.951713754444825, 18.343947408840677 ], [ -64.951723812733462, 18.344139689791859 ], [ -64.951733032831385, 18.344386285501685 ], [ -64.951698667011897, 18.344555432388972 ], [ -64.951649381397544, 18.344648137592287 ], [ -64.951555505346562, 18.344813427492625 ], [ -64.951458944465969, 18.34495726102017 ], [ -64.951349476757912, 18.345086677667325 ], [ -64.951240848550299, 18.345266553395845 ], [ -64.951186532481984, 18.345425139080078 ], [ -64.951121322553604, 18.345594956519903 ], [ -64.951105395620289, 18.345728564120691 ], [ -64.951071366386714, 18.345808695153551 ], [ -64.950995257359637, 18.345895028797713 ], [ -64.950879588349949, 18.345961748779018 ], [ -64.950783699331623, 18.346046908956168 ], [ -64.950664508611226, 18.346169955353844 ], [ -64.950559399494921, 18.346283446377356 ], [ -64.950470551278613, 18.346401295992564 ], [ -64.950437357616408, 18.346481427025424 ], [ -64.950446411385883, 18.346540938566534 ], [ -64.950463676805043, 18.346594079858164 ], [ -64.950487816697773, 18.346609167291149 ], [ -64.950536599397651, 18.346613693521022 ], [ -64.950594434557331, 18.346593074029329 ], [ -64.950688479556163, 18.346550158664456 ], [ -64.950838012780594, 18.346485617978999 ], [ -64.950929375569046, 18.346441361508994 ], [ -64.950975477368331, 18.346403307650291 ], [ -64.951086787786267, 18.346344801938017 ], [ -64.951220730663351, 18.346248410005217 ], [ -64.951272530849849, 18.346162243999231 ], [ -64.951344616561414, 18.346052273376756 ], [ -64.951383173334534, 18.345919168690443 ], [ -64.951450897835059, 18.345777849735043 ], [ -64.951523989375517, 18.345664526349708 ], [ -64.951613674472867, 18.345579198534381 ], [ -64.951697828821182, 18.345438717769696 ], [ -64.951772930709694, 18.34528700655909 ], [ -64.951797573516842, 18.34518742950155 ], [ -64.951829424764185, 18.345077457569403 ], [ -64.951890445048605, 18.344955081724265 ], [ -64.952036122595757, 18.344774201476582 ], [ -64.952110387603227, 18.344649645025925 ], [ -64.952138046587322, 18.344538500936437 ], [ -64.952197559438105, 18.344186294505562 ], [ -64.952227397718048, 18.344099791913607 ], [ -64.952291101522462, 18.344005076362237 ], [ -64.952351283616167, 18.343965347431777 ], [ -64.952426887109425, 18.343931987441124 ], [ -64.952487070512802, 18.343898627450471 ], [ -64.95252244085151, 18.343805754609036 ], [ -64.952577761439045, 18.343683212435451 ], [ -64.952725115367571, 18.343553125235701 ], [ -64.95287481753985, 18.343466287367391 ], [ -64.953014961718566, 18.343365873428809 ], [ -64.953180923481113, 18.343341061673868 ], [ -64.953330456705601, 18.343322621478023 ], [ -64.953478648824898, 18.343366207395434 ], [ -64.953632708279201, 18.343378612618096 ], [ -64.953702613385246, 18.343367883776864 ], [ -64.953749384427454, 18.343355478554258 ], [ -64.953749216789276, 18.343302506210421 ], [ -64.953726250363559, 18.343192200311648 ], [ -64.953671767966739, 18.343079547478908 ], [ -64.953641425462706, 18.343011486392413 ], [ -64.953608736024648, 18.342930852445136 ], [ -64.953581243369001, 18.34277394314239 ], [ -64.953574202566983, 18.34255349767335 ], [ -64.953576046586534, 18.34234814225664 ], [ -64.953604377432896, 18.342134403622993 ], [ -64.953652154303938, 18.341994927377527 ], [ -64.953736476290374, 18.341941115533302 ], [ -64.953890368106556, 18.34188244349258 ], [ -64.953948538542534, 18.341840533956599 ], [ -64.954006876616631, 18.34174564945738 ], [ -64.954062867756704, 18.341574324583917 ], [ -64.954067058710336, 18.341453791448714 ], [ -64.954034201634101, 18.341152714651741 ], [ -64.953995980137279, 18.340942830385814 ], [ -64.953933115833252, 18.340768654354179 ], [ -64.953815266218044, 18.340541169392736 ], [ -64.953684340827579, 18.340294407354463 ], [ -64.953565988297896, 18.340009087233398 ], [ -64.953507985500096, 18.339899116610923 ], [ -64.953483342692891, 18.339729969723635 ], [ -64.953424501704376, 18.339520757319917 ], [ -64.953381083425086, 18.339325458882172 ], [ -64.953307155003586, 18.339160167672162 ], [ -64.953190814131631, 18.338856574993372 ], [ -64.95291119370745, 18.338449717217884 ], [ -64.952755960786078, 18.338146962729809 ], [ -64.952642637400743, 18.337734908171853 ], [ -64.952586647570342, 18.337585877861841 ], [ -64.95251774698346, 18.337478254173391 ], [ -64.952440968713518, 18.337389070680786 ], [ -64.952375589837345, 18.337344143658186 ], [ -64.952246676104608, 18.3372599906196 ], [ -64.952220021639732, 18.337219085602783 ], [ -64.952082558361667, 18.337151527430763 ], [ -64.95199069265874, 18.337130572662772 ], [ -64.951879717517102, 18.3371252095518 ], [ -64.951804111404442, 18.33713593708336 ], [ -64.951768907394239, 18.337110791361738 ], [ -64.951745439363719, 18.337085814587965 ], [ -64.951748121574042, 18.337049771077375 ], [ -64.951805284871455, 18.336987074411468 ], [ -64.951879045654834, 18.336931250909515 ], [ -64.951954819405614, 18.336902584786912 ], [ -64.95202338340647, 18.336894036551257 ], [ -64.952103680767777, 18.336895880570808 ], [ -64.952146094527905, 18.336885988610675 ], [ -64.952191187878952, 18.336870565901393 ], [ -64.952210467575185, 18.336818765714895 ], [ -64.952227565356225, 18.336751376490724 ], [ -64.952245167361298, 18.336629669888509 ], [ -64.95225103469636, 18.336494553544412 ], [ -64.952261092984998, 18.336411069748692 ], [ -64.952271655497725, 18.336280479634524 ], [ -64.95228691056883, 18.336163300571855 ], [ -64.952315910658115, 18.336095408433209 ], [ -64.952361340595132, 18.336012761518589 ], [ -64.95241850651189, 18.335947885556834 ], [ -64.952438621779493, 18.335896253008457 ], [ -64.952528643462813, 18.335777397564414 ], [ -64.952594023648658, 18.335575059634266 ], [ -64.952606427561648, 18.335509679448421 ], [ -64.952661748149183, 18.335388309432176 ], [ -64.952683541107888, 18.335311866438474 ], [ -64.952831900865306, 18.335328296286264 ], [ -64.952919910890898, 18.335377580590944 ], [ -64.953040777992726, 18.335946376813524 ], [ -64.953036587039151, 18.336037069049439 ], [ -64.953068941200968, 18.336218956435687 ], [ -64.953147563490461, 18.336573175833962 ], [ -64.953176732527538, 18.336745341517542 ], [ -64.953236244068648, 18.336937285882698 ], [ -64.953282176920084, 18.337119340907122 ], [ -64.953375886642618, 18.337168123607 ], [ -64.953601192308156, 18.337163932653425 ], [ -64.953914843275584, 18.33721791213577 ], [ -64.954186919983272, 18.33722478660934 ], [ -64.954646583774149, 18.337218751636158 ], [ -64.955056626674377, 18.3372420520285 ], [ -64.955494162230195, 18.337271723979995 ], [ -64.955655262486573, 18.337280944077918 ], [ -64.955828600327493, 18.337284967393373 ], [ -64.956135042854726, 18.337296031510903 ], [ -64.956525638420544, 18.33733995270461 ], [ -64.956544079926061, 18.337341796724218 ], [ -64.956780617347249, 18.33736224857779 ], [ -64.957060908324024, 18.337375491991168 ], [ -64.957421999576525, 18.337422933585913 ], [ -64.957542700349848, 18.337450593879623 ], [ -64.957928100442928, 18.337758545150166 ], [ -64.958350882532443, 18.337899696467446 ], [ -64.958694039122861, 18.338024083970254 ], [ -64.958998468682694, 18.338196918896756 ], [ -64.959277753830577, 18.338332873431511 ], [ -64.959518817481694, 18.338456422743661 ], [ -64.959696178638012, 18.338591706725879 ], [ -64.959843364928474, 18.338693127802969 ], [ -64.960029947492387, 18.338808462846032 ], [ -64.960131534897982, 18.338890773174739 ], [ -64.96021569055597, 18.339010802085852 ], [ -64.960254916571955, 18.339087077441377 ], [ -64.96029414389767, 18.339141559838197 ], [ -64.960396067889235, 18.339185816308202 ], [ -64.960486761434822, 18.339224540719442 ], [ -64.96067853947153, 18.33938882610056 ], [ -64.96094994562668, 18.339564510875505 ], [ -64.961221016505533, 18.339767520667863 ], [ -64.961401896753216, 18.339877491290338 ], [ -64.961480686680886, 18.339964830763336 ], [ -64.961724098575644, 18.340096929620813 ], [ -64.961911013796566, 18.340169014022763 ], [ -64.962119890923987, 18.340338831462645 ], [ -64.962277303141207, 18.340540835426168 ], [ -64.962389117783232, 18.340654326449624 ], [ -64.962462878566612, 18.340772846617426 ], [ -64.962667900016697, 18.341014748459258 ], [ -64.96275758642372, 18.341122538476156 ], [ -64.962788431842228, 18.341214739455381 ], [ -64.962809051333977, 18.341248436031947 ], [ -64.962823971128785, 18.341263020550514 ], [ -64.96286990398022, 18.341274419944284 ], [ -64.962912651706972, 18.341308953401949 ], [ -64.962936791599702, 18.341350360023512 ], [ -64.96297752766867, 18.341472903506769 ], [ -64.962998817712958, 18.3414950304321 ], [ -64.963095880198352, 18.341591926589047 ], [ -64.963183890223945, 18.341713296605292 ], [ -64.963225967398103, 18.34175235629283 ], [ -64.96326670346707, 18.341775825633022 ], [ -64.963272235525835, 18.341814213458292 ], [ -64.963258992112458, 18.341838857575112 ], [ -64.96322982307538, 18.341901720569467 ], [ -64.9632234528259, 18.341977325372397 ], [ -64.963230661266095, 18.342135240504035 ], [ -64.963247089804213, 18.342239680377418 ], [ -64.963259327388755, 18.34236607953801 ], [ -64.96325396296811, 18.34244285649828 ], [ -64.963248095633105, 18.342628265595238 ], [ -64.96324423995577, 18.342925989629293 ], [ -64.963176011231155, 18.343174095392101 ], [ -64.963135778076605, 18.343341230621661 ], [ -64.963131251846733, 18.343527810566286 ], [ -64.963134101695175, 18.343702321874161 ], [ -64.963135778076605, 18.343838108770797 ], [ -64.96311079999316, 18.343920420409177 ], [ -64.96307710472621, 18.343983283403531 ], [ -64.96303217770361, 18.344029551531264 ], [ -64.962884991413205, 18.344095768598152 ], [ -64.962758256976315, 18.344112532412566 ], [ -64.96252926327162, 18.34417673782167 ], [ -64.96249892076753, 18.344195680931989 ], [ -64.962285685048414, 18.344246307651474 ], [ -64.962155933124905, 18.344285033372387 ], [ -64.962083345808594, 18.344312189442064 ], [ -64.961928112887222, 18.344369856963567 ], [ -64.961845634920394, 18.344432888905715 ], [ -64.961753769217466, 18.344481168691175 ], [ -64.961638098898106, 18.34451234938598 ], [ -64.961424695540813, 18.344516875615852 ], [ -64.961294609650736, 18.344481671605649 ], [ -64.961138201952735, 18.344425849413369 ], [ -64.961028232639933, 18.344364324904802 ], [ -64.960859419719213, 18.34425871287408 ], [ -64.960708042475176, 18.344140864568544 ], [ -64.960568233572758, 18.343999711941649 ], [ -64.96036991764845, 18.343838948271184 ], [ -64.960158189362858, 18.343699976249809 ], [ -64.960095661644857, 18.343621352650644 ], [ -64.959994071619917, 18.343561505833236 ], [ -64.959822577798604, 18.343446170790116 ], [ -64.959732557424957, 18.343385150505696 ], [ -64.959676901561124, 18.343335195648478 ], [ -64.959533234362027, 18.343246347432171 ], [ -64.959342629792332, 18.343167891471126 ], [ -64.959236851433161, 18.343104022647935 ], [ -64.959152695775174, 18.343033279351118 ], [ -64.959073739518999, 18.343006623576571 ], [ -64.959017748378926, 18.343003438451831 ], [ -64.958955722265671, 18.343024897443911 ], [ -64.958876260475733, 18.343070996623851 ], [ -64.958782215476958, 18.343143082335473 ], [ -64.958695380227994, 18.343215165427694 ], [ -64.958594294427201, 18.343259589535876 ], [ -64.958585912519993, 18.343274175364058 ], [ -64.958609380550456, 18.343351790515044 ], [ -64.958633689391036, 18.343376602270041 ], [ -64.958702419720396, 18.343407446378876 ], [ -64.958762603123773, 18.343428402456539 ], [ -64.958788753364558, 18.343421864568938 ], [ -64.958848432543789, 18.343408453517384 ], [ -64.958999643459379, 18.343384982867576 ], [ -64.959145991559069, 18.343416332510174 ], [ -64.959240539472319, 18.343459581841671 ], [ -64.959317148794412, 18.343543903828106 ], [ -64.959379845460319, 18.343597884620124 ], [ -64.959455451572921, 18.343667117863959 ], [ -64.959518148238772, 18.343730820358644 ], [ -64.959576486312869, 18.343812292496636 ], [ -64.959604649521054, 18.343885216398974 ], [ -64.959571120582609, 18.343934334375149 ], [ -64.959517645324354, 18.343976577877754 ], [ -64.959459808855001, 18.344011781888014 ], [ -64.959380517322529, 18.344042794944642 ], [ -64.959285297547069, 18.344097612617702 ], [ -64.959161580596799, 18.344194842741217 ], [ -64.959064519421077, 18.344282014576095 ], [ -64.958966283468726, 18.34438595153506 ], [ -64.958859833247288, 18.344474295527277 ], [ -64.958757741617603, 18.34455107379722 ], [ -64.958639052501951, 18.34465869748567 ], [ -64.958597479551941, 18.34477084740405 ], [ -64.958600832314801, 18.344852319541985 ], [ -64.958682973695659, 18.34491384274088 ], [ -64.958746508552281, 18.344923230476923 ], [ -64.958876932337944, 18.344866065869837 ], [ -64.959023783352109, 18.344781911521522 ], [ -64.959264510417199, 18.34464411296716 ], [ -64.959590566607289, 18.34451084064267 ], [ -64.959889131451462, 18.344428362675842 ], [ -64.96020747497721, 18.344455184778894 ], [ -64.960449544457163, 18.344481337639024 ], [ -64.960792532099788, 18.344617961416702 ], [ -64.961033931027146, 18.34470496561346 ], [ -64.961298631656518, 18.344825329800813 ], [ -64.961449842572051, 18.344968828052117 ], [ -64.961549585958096, 18.345107464797195 ], [ -64.961673136579861, 18.345290694598248 ], [ -64.961717056463954, 18.345410554561511 ], [ -64.961754439770061, 18.345542485780868 ], [ -64.961767515545262, 18.345701909655816 ], [ -64.961746896053569, 18.345870218352388 ], [ -64.961721247417529, 18.346070713572601 ], [ -64.961692078380509, 18.346281769995926 ], [ -64.961650839397066, 18.346414707044119 ], [ -64.961594010066221, 18.346509254957311 ], [ -64.961546903747774, 18.346583853931406 ], [ -64.961483536529329, 18.346676893101289 ], [ -64.961383791833669, 18.346748306950644 ], [ -64.961229900017486, 18.346812344721684 ], [ -64.960840979523368, 18.346981323970795 ], [ -64.96062975546198, 18.34712817498496 ], [ -64.96051090001788, 18.347211658780679 ], [ -64.96042004145346, 18.3472567534414 ], [ -64.960310907712085, 18.347304195036145 ], [ -64.960193561011295, 18.34736605351128 ], [ -64.960028772715702, 18.34745289006986 ], [ -64.959957023590107, 18.34749915819765 ], [ -64.959850070454195, 18.347534194569732 ], [ -64.959743787870934, 18.347582474355193 ], [ -64.959632643781447, 18.347632095245842 ], [ -64.959563576866117, 18.347656067500395 ], [ -64.959518483515069, 18.347674172419943 ], [ -64.959454110467732, 18.34769194206325 ], [ -64.959399460432792, 18.347705353114748 ], [ -64.959339947582009, 18.347723290396175 ], [ -64.959288651619602, 18.347736701447673 ], [ -64.959216567217709, 18.347750280137348 ], [ -64.959078433387049, 18.347761679531118 ], [ -64.959017076516659, 18.347770396714623 ], [ -64.958978353415091, 18.34777257601047 ], [ -64.958935773326516, 18.347786154700145 ], [ -64.958917668406968, 18.34779805700839 ], [ -64.958921187498333, 18.347808450573325 ], [ -64.958938958451256, 18.347827393683588 ], [ -64.958972318441909, 18.347832087551637 ], [ -64.959020933503666, 18.347840134182547 ], [ -64.959083127255099, 18.347851868852615 ], [ -64.959194271344529, 18.347840637096965 ], [ -64.959274568705837, 18.347837787248523 ], [ -64.959334918437719, 18.34783996654437 ], [ -64.959382361342136, 18.347829237703138 ], [ -64.959427454693184, 18.347820352881513 ], [ -64.959486967543967, 18.347802415600142 ], [ -64.959559219584037, 18.347783137213582 ], [ -64.959646054832945, 18.34775782385384 ], [ -64.959734567773012, 18.34773083411261 ], [ -64.959869348840755, 18.347697306483838 ], [ -64.959999603678682, 18.347665622874615 ], [ -64.960153998409282, 18.347600076360322 ], [ -64.96026044863072, 18.347549617278958 ], [ -64.96044820335203, 18.347482562021355 ], [ -64.960590360498088, 18.347428079624592 ], [ -64.960788508784333, 18.347368735721602 ], [ -64.960953799994286, 18.34731140347634 ], [ -64.961097130607413, 18.34721350280023 ], [ -64.961197713493846, 18.347201432853865 ], [ -64.961283208947293, 18.347226578575487 ], [ -64.961442632822184, 18.347339734322702 ], [ -64.961591160217779, 18.347423553394663 ], [ -64.961705321793886, 18.347473006647135 ], [ -64.961806910509097, 18.347522627537785 ], [ -64.961972536995404, 18.347523801004797 ], [ -64.962048979989049, 18.347524471557392 ], [ -64.962279147160757, 18.347440987761672 ], [ -64.962369336482254, 18.34733219060621 ], [ -64.962485677354152, 18.347126163327232 ], [ -64.962538315731422, 18.346943940664687 ], [ -64.962578548885972, 18.346700865355899 ], [ -64.962669911674425, 18.346445887738867 ], [ -64.962787426013392, 18.346118155167346 ], [ -64.962941653105872, 18.345949009589731 ], [ -64.9631205230055, 18.345913805579471 ], [ -64.963310457022658, 18.346061325836558 ], [ -64.96338539127305, 18.346244386689762 ], [ -64.963498044105791, 18.346488803103739 ], [ -64.963612038043721, 18.346574801471604 ], [ -64.963802139698998, 18.346698015507457 ], [ -64.963903225499848, 18.346808321406229 ], [ -64.963952846390441, 18.346966907090405 ], [ -64.964015710694468, 18.347077045351057 ], [ -64.964077569169604, 18.347296483681532 ], [ -64.964126687145779, 18.347515922012008 ], [ -64.964142780407599, 18.347657073329287 ], [ -64.964130039908696, 18.347757656215663 ], [ -64.964081760123179, 18.347838625439238 ], [ -64.964031468679991, 18.347935855562753 ], [ -64.963976483368754, 18.34799402599873 ], [ -64.963957372620371, 18.348047502566658 ], [ -64.963889479172053, 18.348229054676608 ], [ -64.963897358164786, 18.348492581838968 ], [ -64.963926862478161, 18.348629374564496 ], [ -64.964000623261484, 18.348781087084774 ], [ -64.964081089570641, 18.348931458499976 ], [ -64.964120987448894, 18.349034053044079 ], [ -64.964125681316943, 18.349094402775904 ], [ -64.964128698803506, 18.349134971206752 ], [ -64.964114617199414, 18.349186939031426 ], [ -64.964080251379926, 18.349224153389741 ], [ -64.964042365159344, 18.349275954885854 ], [ -64.963989559144011, 18.349334125321832 ], [ -64.963914624893619, 18.349484664375154 ], [ -64.963868021489589, 18.349767134647777 ], [ -64.963827955973215, 18.349864363461677 ], [ -64.963771294280491, 18.349932258219667 ], [ -64.963683787169373, 18.349998307648377 ], [ -64.963607008899373, 18.350017249448968 ], [ -64.963538444898518, 18.350076929937927 ], [ -64.963435515078061, 18.350157396247027 ], [ -64.963399472877143, 18.350200982164495 ], [ -64.963373153688508, 18.35028379540762 ], [ -64.963367453991623, 18.350361747144575 ], [ -64.963386397101885, 18.350498204593805 ], [ -64.963411878099805, 18.350549166589587 ], [ -64.963426965532733, 18.350570288995698 ], [ -64.963454290550203, 18.350567271509135 ], [ -64.963474910041896, 18.350552854628745 ], [ -64.963490500389298, 18.350513962579328 ], [ -64.963504581993391, 18.35046685626088 ], [ -64.96351246098618, 18.350340120514318 ], [ -64.963526542590273, 18.350267031593205 ], [ -64.963566272830406, 18.350210705176835 ], [ -64.963594771314888, 18.350190253323262 ], [ -64.963675740538463, 18.350155887503718 ], [ -64.963737096099123, 18.350135268012025 ], [ -64.963844887425751, 18.350092185009032 ], [ -64.963923677353421, 18.35003434853968 ], [ -64.963990900249144, 18.349927564351617 ], [ -64.964033815614016, 18.34988230205272 ], [ -64.964071869472718, 18.349819102472452 ], [ -64.964137583625131, 18.349694378383617 ], [ -64.964179493161168, 18.349580887360162 ], [ -64.964262138766173, 18.349479132316389 ], [ -64.964364900948397, 18.349408389019629 ], [ -64.964423574298792, 18.349324905223909 ], [ -64.964439332284371, 18.349264220215787 ], [ -64.964458609361259, 18.349184758425849 ], [ -64.964453916802881, 18.349148885172724 ], [ -64.964444696704959, 18.349100270110966 ], [ -64.964429441633854, 18.349018630334854 ], [ -64.964384682249431, 18.348858871183609 ], [ -64.964357189593784, 18.348781422361071 ], [ -64.964306730512476, 18.348617639894371 ], [ -64.964269347206312, 18.348522421428584 ], [ -64.964265994443451, 18.348394513524738 ], [ -64.964288960869169, 18.348303653650703 ], [ -64.964320141563974, 18.348232407439468 ], [ -64.964358530698973, 18.348139368269585 ], [ -64.964434303140024, 18.348020177549188 ], [ -64.964474536294574, 18.347900148638075 ], [ -64.964488785536844, 18.34782387328255 ], [ -64.964501190759506, 18.347767043951762 ], [ -64.964506890456391, 18.347693953720977 ], [ -64.964518122212041, 18.34762136640461 ], [ -64.964516948745029, 18.347545091049085 ], [ -64.964512087238859, 18.347463283634795 ], [ -64.964532874368729, 18.347422715203948 ], [ -64.964553493860421, 18.347396228377193 ], [ -64.964587189127371, 18.34736454476797 ], [ -64.964628092834516, 18.34737544124738 ], [ -64.964707553314781, 18.3474205359081 ], [ -64.964794054597064, 18.34751877186045 ], [ -64.964869324123697, 18.347625724996362 ], [ -64.964961525102922, 18.34770987934462 ], [ -64.965033944781112, 18.347777940431115 ], [ -64.96512748686547, 18.347913559689573 ], [ -64.965185824939567, 18.348057728493416 ], [ -64.965216335081777, 18.348182115996281 ], [ -64.965300154153795, 18.348379761368051 ], [ -64.965402916336075, 18.348545723130599 ], [ -64.965513389872967, 18.348660052344826 ], [ -64.96563492752739, 18.348795839241461 ], [ -64.96572494921071, 18.348913688856726 ], [ -64.965783622561105, 18.349020641992581 ], [ -64.965817988380593, 18.349130947891297 ], [ -64.965857718620725, 18.349259023433319 ], [ -64.965867441633065, 18.349407886105212 ], [ -64.965874313487348, 18.34949522557821 ], [ -64.965875655902153, 18.349562616112109 ], [ -64.965906836596957, 18.349605531476982 ], [ -64.96594204060716, 18.349632353580034 ], [ -64.965964167532491, 18.349646770460424 ], [ -64.966045976256453, 18.349638556191337 ], [ -64.966061062379765, 18.349620786548087 ], [ -64.966083693529185, 18.34957669640653 ], [ -64.966097104580683, 18.349532441246197 ], [ -64.966103476139835, 18.349486676032882 ], [ -64.966117725382105, 18.349296574377604 ], [ -64.966105989402308, 18.349129606786164 ], [ -64.966069445596588, 18.349013265914209 ], [ -64.966018651238983, 18.348912347751536 ], [ -64.96591957709586, 18.348758958849771 ], [ -64.965807593505986, 18.348587800304756 ], [ -64.965674153543375, 18.348329469924863 ], [ -64.965579270353885, 18.348110366870628 ], [ -64.965502324445765, 18.347950104804966 ], [ -64.9654567281803, 18.347834434485605 ], [ -64.965409621861852, 18.347690265681763 ], [ -64.96534742811042, 18.347585156565515 ], [ -64.96531691796821, 18.34744467580083 ], [ -64.965289928227037, 18.347339734322702 ], [ -64.965290597469902, 18.347254574145552 ], [ -64.965373747298997, 18.347014348685207 ], [ -64.965438455622575, 18.346893146307082 ], [ -64.965541553081152, 18.346747804036227 ], [ -64.965655044104665, 18.346619896132324 ], [ -64.965706172428895, 18.346466171954319 ], [ -64.96573902950513, 18.346317309282426 ], [ -64.96577155261474, 18.346200465496054 ], [ -64.965792338434881, 18.346156209026049 ], [ -64.965867441633065, 18.346080604223118 ], [ -64.965992667326645, 18.345990917816039 ], [ -64.966113868395098, 18.345936939643366 ], [ -64.966219984649911, 18.345911122059533 ], [ -64.966331799291993, 18.345883629403886 ], [ -64.966478481358308, 18.345889999653366 ], [ -64.966561966463701, 18.345920845071873 ], [ -64.966689539091249, 18.345998126256234 ], [ -64.966843932512234, 18.346126537074554 ], [ -64.966950382733671, 18.346174147617148 ], [ -64.967039064621531, 18.346228963980536 ], [ -64.967181054129469, 18.346361565752431 ], [ -64.967358581614292, 18.346450581606916 ], [ -64.967504260471117, 18.346474889137767 ], [ -64.967662844845677, 18.346548314644849 ], [ -64.967900555733877, 18.346688460133237 ], [ -64.96810121859221, 18.346765741317654 ], [ -64.968286795327288, 18.346867665309162 ], [ -64.968461472963668, 18.346959195735792 ], [ -64.968593236544848, 18.347037650387222 ], [ -64.968700524957001, 18.347110740618007 ], [ -64.96878099257583, 18.347175784217825 ], [ -64.968855925516493, 18.347269158664062 ], [ -64.968908900479676, 18.347390696318485 ], [ -64.968969751816303, 18.347540732457333 ], [ -64.969008643865664, 18.347678698649872 ], [ -64.969034963054298, 18.34799721112347 ], [ -64.969058600032611, 18.348209776290048 ], [ -64.969067484854236, 18.348387807998961 ], [ -64.969123978908783, 18.348548572979041 ], [ -64.969147783525216, 18.348616131151118 ], [ -64.969181981706583, 18.348678324902551 ], [ -64.969256749628471, 18.348746385988989 ], [ -64.969310895439321, 18.348858032992894 ], [ -64.969340735028936, 18.348942690255626 ], [ -64.969385160446791, 18.349029191537909 ], [ -64.969436456409198, 18.349117033925381 ], [ -64.969484234589913, 18.349224489975654 ], [ -64.969502170561611, 18.349297747844616 ], [ -64.969520275481159, 18.349337644413197 ], [ -64.969555982405836, 18.349372179180534 ], [ -64.969593030435647, 18.349376873048584 ], [ -64.969622031834604, 18.349358265214562 ], [ -64.969636783991234, 18.349325408138384 ], [ -64.969642483688176, 18.349269919912672 ], [ -64.969639633839734, 18.349202529378829 ], [ -64.969644999569994, 18.349111837142914 ], [ -64.969632425399539, 18.349024162393619 ], [ -64.969622031834604, 18.348943696084461 ], [ -64.969601244704734, 18.348807573911529 ], [ -64.969563693760449, 18.348734482371071 ], [ -64.969503008752326, 18.348656867220086 ], [ -64.969422542443226, 18.348567348451184 ], [ -64.969371246480819, 18.348469615413251 ], [ -64.969351128593871, 18.348245147938428 ], [ -64.969345596535106, 18.348085891701601 ], [ -64.969354146080491, 18.347889084520546 ], [ -64.969347775831011, 18.34768892457663 ], [ -64.969326988701141, 18.34753620622746 ], [ -64.969354481356788, 18.347305368503157 ], [ -64.969372587586008, 18.347202773959054 ], [ -64.969372418638159, 18.34708324796236 ], [ -64.969332856036203, 18.346986856029559 ], [ -64.969291617052761, 18.346921309515267 ], [ -64.969152645031386, 18.346785354980454 ], [ -64.969032280843976, 18.346647388787972 ], [ -64.968973439855461, 18.346540435652116 ], [ -64.968900852539093, 18.346408169156462 ], [ -64.968813177789798, 18.346237345887744 ], [ -64.968749476604728, 18.346113126023056 ], [ -64.968707902345045, 18.345921850900709 ], [ -64.968628272916931, 18.345751196579783 ], [ -64.96849785044094, 18.345490015041776 ], [ -64.968418892875093, 18.34528013208552 ], [ -64.96838553288444, 18.345065890537455 ], [ -64.968387376904047, 18.344857013410035 ], [ -64.968394417706065, 18.34465852984755 ], [ -64.968460802411073, 18.344465579653502 ], [ -64.968541102391725, 18.344221329567972 ], [ -64.968553338666595, 18.344191826564327 ], [ -64.968632128594265, 18.344002729428212 ], [ -64.968605138853093, 18.343667285502079 ], [ -64.968590555644255, 18.343476345656086 ], [ -64.968608323977833, 18.343298650533086 ], [ -64.968503382499648, 18.343243665221848 ], [ -64.968504555966661, 18.343104356614504 ], [ -64.968432303926591, 18.342714431601223 ], [ -64.968360219524698, 18.342610663590108 ], [ -64.968252932422217, 18.342527347432565 ], [ -64.968110438690132, 18.342448891471463 ], [ -64.96790877131258, 18.342344286579305 ], [ -64.967838866206534, 18.342312770608203 ], [ -64.967782707428285, 18.34225040921865 ], [ -64.967670222233664, 18.342141275477218 ], [ -64.967541642467552, 18.342008842653172 ], [ -64.967477604696512, 18.341910271424467 ], [ -64.967384399198124, 18.341762582219644 ], [ -64.967261351490777, 18.341627633513724 ], [ -64.967149704486872, 18.341412721413064 ], [ -64.967125901180111, 18.341350526352016 ], [ -64.967086169630306, 18.341265198536689 ], [ -64.967073764407644, 18.341136118475504 ], [ -64.967076949532384, 18.341064034073554 ], [ -64.967112991733359, 18.340955907470686 ], [ -64.967097570333749, 18.340863035938924 ], [ -64.967030850352444, 18.340772176064888 ], [ -64.967010063222574, 18.340666396395989 ], [ -64.967011235379914, 18.340529602360846 ], [ -64.967055996074066, 18.340357270348818 ], [ -64.967178873523949, 18.340195668487638 ], [ -64.967248443353697, 18.340125595743473 ], [ -64.967301249369029, 18.340088380075485 ], [ -64.967374005633246, 18.340082177464183 ], [ -64.967428151444039, 18.340094415048668 ], [ -64.967557066486449, 18.34016767291763 ], [ -64.967685980219187, 18.340245959930826 ], [ -64.967917153219787, 18.340389625820251 ], [ -64.96817548359968, 18.340479312227274 ], [ -64.968439178400217, 18.340602358625006 ], [ -64.968629278745823, 18.340832861073011 ], [ -64.968890795560128, 18.341109799286869 ], [ -64.969064971591763, 18.341309623954544 ], [ -64.969343249601138, 18.341491342392942 ], [ -64.969454896605043, 18.341541801474307 ], [ -64.969574422601681, 18.341596117542622 ], [ -64.969621528920129, 18.341688149573997 ], [ -64.969685231414871, 18.341726706347117 ], [ -64.969812971680597, 18.341742968556787 ], [ -64.969885223720667, 18.341720671373935 ], [ -64.969921099593137, 18.341703573592952 ], [ -64.969934676973139, 18.34167658254205 ], [ -64.969941048532291, 18.341635343558664 ], [ -64.969950268630214, 18.341605505278665 ], [ -64.969993854547624, 18.341586562168402 ], [ -64.970045988700747, 18.341562086999375 ], [ -64.970120252398544, 18.341501737267549 ], [ -64.970144057014977, 18.341410542117217 ], [ -64.970189486952052, 18.341321190986491 ], [ -64.970216141416927, 18.341302080238052 ], [ -64.97028973456213, 18.341289338429419 ], [ -64.970346396254797, 18.341278275621619 ], [ -64.970412445683564, 18.341220440461939 ], [ -64.970433735727852, 18.341144500382711 ], [ -64.97044396165461, 18.341021453984979 ], [ -64.970486877019482, 18.340875105885289 ], [ -64.970529624746177, 18.340755915164891 ], [ -64.970563990565722, 18.340432708823244 ], [ -64.970547059113187, 18.340214946874198 ], [ -64.970529792384355, 18.340039765013728 ], [ -64.97053565971936, 18.339894087466575 ], [ -64.970558626145134, 18.33968101938558 ], [ -64.970599026937805, 18.339617316890838 ], [ -64.9710208045081, 18.339471471705565 ], [ -64.97133227617968, 18.339325626520292 ], [ -64.971501590705088, 18.339309030344054 ], [ -64.971621787254378, 18.339364183293412 ], [ -64.971724214160361, 18.339373571029455 ], [ -64.971820941369458, 18.339322609033673 ], [ -64.972042391357661, 18.339261588749309 ], [ -64.972291334001511, 18.339272485228662 ], [ -64.972386049552881, 18.339314394764642 ], [ -64.972515298561859, 18.339460407588092 ], [ -64.972661311385309, 18.339694765713375 ], [ -64.972854598165327, 18.339911689471705 ], [ -64.972975465267155, 18.340058372847693 ], [ -64.973033468065012, 18.340146382873343 ], [ -64.973151652956517, 18.340344698797651 ], [ -64.97322172439101, 18.340403707424343 ], [ -64.973357008373227, 18.340516863171558 ], [ -64.973503859387392, 18.340615602038383 ], [ -64.973640318146295, 18.340629013089881 ], [ -64.973744589071828, 18.340550726076629 ], [ -64.973821870256245, 18.340444275855191 ], [ -64.973799405435273, 18.340299101222513 ], [ -64.973777446148063, 18.340089888818795 ], [ -64.973696979838962, 18.33991085128099 ], [ -64.973623889608177, 18.339835581754357 ], [ -64.973552977363568, 18.339627207541355 ], [ -64.973513582399733, 18.339458060654067 ], [ -64.973433787952843, 18.339218170469962 ], [ -64.973405457106537, 18.339136027779432 ], [ -64.97341652122401, 18.339078192619752 ], [ -64.973476368041418, 18.339020692736369 ], [ -64.973552308120645, 18.338933017987017 ], [ -64.973601426096877, 18.33889563468091 ], [ -64.973657920151368, 18.338878367952077 ], [ -64.973752131478648, 18.338884570563437 ], [ -64.974045499540296, 18.338866800920187 ], [ -64.974531650157928, 18.338896472871625 ], [ -64.974610606414046, 18.338901166739674 ], [ -64.974822669975879, 18.338947937781882 ], [ -64.975011430526024, 18.338989512041564 ], [ -64.975088376434144, 18.339037121274487 ], [ -64.975158281540189, 18.339091436033129 ], [ -64.975242434578774, 18.339132507378395 ], [ -64.975333463400659, 18.339193695300992 ], [ -64.975403536144881, 18.339248010059634 ], [ -64.975480480743272, 18.339288913766779 ], [ -64.975550387158989, 18.339349934051199 ], [ -64.975627499395557, 18.339390837758287 ], [ -64.97570461425147, 18.33943190910361 ], [ -64.975781726488037, 18.339472812810698 ], [ -64.975865882146024, 18.33952042204362 ], [ -64.975950036494282, 18.339554787863165 ], [ -64.976034189532925, 18.339595691570253 ], [ -64.976111304388837, 18.339636595277398 ], [ -64.97620233059132, 18.339697783199995 ], [ -64.976279445447233, 18.339738686907083 ], [ -64.976342308441588, 18.339799707191503 ], [ -64.976383882701271, 18.3398739708893 ], [ -64.976425458270683, 18.339948234587098 ], [ -64.97648832257471, 18.340009254871518 ], [ -64.976508774428225, 18.340090056456916 ], [ -64.976515143368033, 18.340177563568091 ], [ -64.976528554419588, 18.340265069369593 ], [ -64.976527717538545, 18.340352410152263 ], [ -64.976527045676278, 18.340439917263438 ], [ -64.97651229351959, 18.340527089098316 ], [ -64.976490500560885, 18.340607723045594 ], [ -64.976475580766078, 18.340694894880471 ], [ -64.97644674831497, 18.340775361189628 ], [ -64.976424955356265, 18.340855995136849 ], [ -64.976431325605745, 18.340943334609904 ], [ -64.976437694545496, 18.341030840411406 ], [ -64.976450939268545, 18.341118347522581 ], [ -64.976457309518025, 18.341205855943372 ], [ -64.97645647132731, 18.341293195416426 ], [ -64.976469882378865, 18.341380702527601 ], [ -64.976483293430363, 18.341468209638776 ], [ -64.976482455239648, 18.341555549111774 ], [ -64.976495866291145, 18.341643056222949 ], [ -64.976495194428935, 18.341730563334124 ], [ -64.976508437842313, 18.341818070445299 ], [ -64.976514809401408, 18.341905408608625 ], [ -64.976528220452963, 18.341992917029472 ], [ -64.976534421754593, 18.342080424140647 ], [ -64.976533752511727, 18.342167763613645 ], [ -64.976553701450825, 18.342309082569045 ], [ -64.97653190849212, 18.342389716516323 ], [ -64.976490500560885, 18.342463477299702 ], [ -64.976400143601268, 18.342548468529003 ], [ -64.976361586828148, 18.342690794622968 ], [ -64.976338452764253, 18.342776288766743 ], [ -64.97631515237191, 18.34288324321227 ], [ -64.976351362211062, 18.343033279351118 ], [ -64.976395449733218, 18.343112069278845 ], [ -64.976469545792895, 18.343198235284831 ], [ -64.976558395318875, 18.343298816861591 ], [ -64.976661994382198, 18.343413816628356 ], [ -64.976735922803698, 18.343499982634341 ], [ -64.976824772329678, 18.343607775270641 ], [ -64.976920996624358, 18.343715397649419 ], [ -64.976987547657814, 18.343794522853386 ], [ -64.977061308441193, 18.343909188653527 ], [ -64.977105564911199, 18.343980936469507 ], [ -64.977164742485741, 18.344045478464636 ], [ -64.977224086388674, 18.344110185478542 ], [ -64.977290806370036, 18.344167854309717 ], [ -64.977327685451996, 18.344232227357054 ], [ -64.977408989951869, 18.344325600493562 ], [ -64.977549973630971, 18.344440935536625 ], [ -64.977728675892479, 18.3445349805354 ], [ -64.977818194661381, 18.34454990163988 ], [ -64.977907545792107, 18.344572028565267 ], [ -64.977981978437697, 18.344622487646575 ], [ -64.978048697109386, 18.344680156477807 ], [ -64.978127989951474, 18.344725586414825 ], [ -64.978210301589854, 18.3447726914236 ], [ -64.978299316134667, 18.344822313623922 ], [ -64.978364862648959, 18.344907304853223 ], [ -64.978439461622997, 18.344958100520557 ], [ -64.978544067824885, 18.345030518889075 ], [ -64.978603579365995, 18.34509556248895 ], [ -64.97867834597821, 18.345139148406417 ], [ -64.978752944952305, 18.345189942764023 ], [ -64.978880183613285, 18.345233863957731 ], [ -64.97896249263232, 18.345284659625065 ], [ -64.979074642550643, 18.345335787949296 ], [ -64.979157120517471, 18.345365124624493 ], [ -64.979247142200791, 18.345373003617283 ], [ -64.979382258544888, 18.345374009446118 ], [ -64.979472447866328, 18.345367471558518 ], [ -64.979562469549705, 18.345368142111113 ], [ -64.979652658871146, 18.345376021103846 ], [ -64.979795151293558, 18.345398653562995 ], [ -64.979885005338758, 18.345420780488325 ], [ -64.980012577966306, 18.345443243999625 ], [ -64.980094888295014, 18.345472580674823 ], [ -64.980222293284442, 18.345509461066513 ], [ -64.980297059896714, 18.345553046983923 ], [ -64.980379370225421, 18.345589592099316 ], [ -64.980469056632444, 18.345625969576588 ], [ -64.980543823244659, 18.345669723132175 ], [ -64.980626133573367, 18.345706100609391 ], [ -64.980716155256687, 18.345728396482571 ], [ -64.980798465585394, 18.345757565519591 ], [ -64.980880775914102, 18.345786902194789 ], [ -64.981000637187037, 18.345823782586479 ], [ -64.981082947515745, 18.345860160063751 ], [ -64.981165425482629, 18.345889496738948 ], [ -64.981255111889652, 18.345926041854341 ], [ -64.98133758985648, 18.345955378529538 ], [ -64.981391401700705, 18.345977339126421 ], [ -64.981444040077918, 18.345970465962466 ], [ -64.981586867776628, 18.345964430989284 ], [ -64.981676889459948, 18.345957893101684 ], [ -64.981767246419565, 18.345944314412009 ], [ -64.981857435741063, 18.345930568084214 ], [ -64.982052734178808, 18.345917659947133 ], [ -64.982142923500248, 18.345911289697654 ], [ -64.982225735433758, 18.345883126489468 ], [ -64.982315926064871, 18.345876756239988 ], [ -64.982406115386368, 18.345884467594601 ], [ -64.982525641383006, 18.345942805668756 ], [ -64.982585320562293, 18.346007849268631 ], [ -64.982659919536388, 18.346058643626236 ], [ -64.982787324525816, 18.346102564819944 ], [ -64.982869633544851, 18.346139109935336 ], [ -64.982959488899724, 18.346154029730144 ], [ -64.983049510583044, 18.346176325603324 ], [ -64.983139532266364, 18.346191245398131 ], [ -64.983259393539299, 18.346228125789821 ], [ -64.983349078636707, 18.346271711707232 ], [ -64.983439101629699, 18.346294007580411 ], [ -64.983521410648734, 18.346330385057684 ], [ -64.98361126600355, 18.346352680930806 ], [ -64.983821484236159, 18.346354189674116 ], [ -64.983919217274092, 18.346355027864831 ], [ -64.98400940659559, 18.346348489977231 ], [ -64.98410697068573, 18.346342119727751 ], [ -64.98424225466789, 18.346335917116392 ], [ -64.98433244529906, 18.346322170788596 ], [ -64.984422634620557, 18.346322842650864 ], [ -64.984512822632325, 18.346302054211321 ], [ -64.984595803513628, 18.346266850201062 ], [ -64.984753887593058, 18.346210691422868 ], [ -64.98483686847436, 18.346168278972414 ], [ -64.98491230563917, 18.346125866521959 ], [ -64.984995286520416, 18.346090662511756 ], [ -64.985115984674451, 18.346019751576819 ], [ -64.985161749887766, 18.345941296925446 ], [ -64.985185051589781, 18.345855298557581 ], [ -64.985193265858811, 18.345769300189716 ], [ -64.985217239423093, 18.345597471092105 ], [ -64.985217908666016, 18.345511305086063 ], [ -64.985218580528226, 18.345425306718198 ], [ -64.985211873692833, 18.345324891469943 ], [ -64.985272558700956, 18.34526085369896 ], [ -64.985347995865709, 18.345211066479862 ], [ -64.985483447486104, 18.345176364074348 ], [ -64.985581012885916, 18.345198493619023 ], [ -64.985670866931059, 18.345213579742335 ], [ -64.985745633543331, 18.345257165659746 ], [ -64.985820401465219, 18.345307960017408 ], [ -64.985902542846077, 18.345351545934818 ], [ -64.985977309458292, 18.345395131852285 ], [ -64.986044198387447, 18.345474593642223 ], [ -64.986088788824077, 18.345546676734443 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_563", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.830050391081954, 18.309321084883607 ], [ -64.83011208060924, 18.309461734596084 ], [ -64.830299501363925, 18.309583438578954 ], [ -64.830445346549197, 18.309821149467155 ], [ -64.830546263402198, 18.31011602496244 ], [ -64.830543750139725, 18.31037619936194 ], [ -64.8305414032057, 18.310646432050078 ], [ -64.8305704046046, 18.310906941725875 ], [ -64.830620359461875, 18.311167619039793 ], [ -64.830660426287977, 18.311378172548643 ], [ -64.830731672499155, 18.311598951984308 ], [ -64.83080107338111, 18.312039840302987 ], [ -64.830900316472025, 18.312631267675044 ], [ -64.830991679260478, 18.312952294720787 ], [ -64.831094104856788, 18.313213307311003 ], [ -64.831187145336401, 18.313364349278743 ], [ -64.831301305602778, 18.313485384018691 ], [ -64.831466933398758, 18.313583452332978 ], [ -64.831639599377411, 18.313625529507078 ], [ -64.831803718430024, 18.313627541164806 ], [ -64.832054337455304, 18.313641790407075 ], [ -64.832169503550574, 18.313652686886428 ], [ -64.832300931855457, 18.313646484275125 ], [ -64.832420625490272, 18.313694931698706 ], [ -64.832556244748787, 18.313766010271763 ], [ -64.832636878696064, 18.313794844032543 ], [ -64.832722877063929, 18.313867598987031 ], [ -64.832784735539065, 18.313988130812561 ], [ -64.832709802598345, 18.314157780614323 ], [ -64.832571667458012, 18.314366825379864 ], [ -64.832444597744882, 18.314515855689876 ], [ -64.832285510455904, 18.314724732817297 ], [ -64.832169503550574, 18.314803858021264 ], [ -64.832032710825047, 18.314862699009836 ], [ -64.831895919409249, 18.314911649347891 ], [ -64.831714702575596, 18.314985913045689 ], [ -64.831464920431358, 18.315058165085702 ], [ -64.831254703508421, 18.315126393810317 ], [ -64.831003246292426, 18.31512438215259 ], [ -64.830856730554558, 18.315103092108302 ], [ -64.830668640557008, 18.315051459559982 ], [ -64.830459763429587, 18.314969652145692 ], [ -64.830125828246764, 18.314826656808862 ], [ -64.830000433605335, 18.314775694813079 ], [ -64.829853919177197, 18.314754404768792 ], [ -64.82966549259362, 18.314732779448207 ], [ -64.829424933166649, 18.314690702274106 ], [ -64.829184037153766, 18.314668740367551 ], [ -64.828995276603621, 18.314677123584431 ], [ -64.828816909618411, 18.314705622068914 ], [ -64.828648936198078, 18.314734288191516 ], [ -64.828564614211643, 18.314803690383144 ], [ -64.828416422092346, 18.314952553054979 ], [ -64.828310307147206, 18.315101751003169 ], [ -64.828204192202065, 18.315251116589479 ], [ -64.828150547995961, 18.315380700874755 ], [ -64.82804443305082, 18.315520008172427 ], [ -64.827916860423272, 18.315718994649387 ], [ -64.827811080754373, 18.315838353007905 ], [ -64.827715191736047, 18.31600766753337 ], [ -64.827609412067147, 18.316106909314612 ], [ -64.827471781150905, 18.316265830275086 ], [ -64.827355440279007, 18.316385020995483 ], [ -64.82726038945134, 18.316464312527899 ], [ -64.827133822652627, 18.316543271403418 ], [ -64.826986133447747, 18.316652068558881 ], [ -64.826912372664424, 18.316701520501681 ], [ -64.826796367068766, 18.316780645705649 ], [ -64.826691090314341, 18.316819874341036 ], [ -64.826607103604204, 18.316839151417923 ], [ -64.826486404140496, 18.316819036150321 ], [ -64.826363525380941, 18.316783998468509 ], [ -64.826279371032683, 18.316761702595386 ], [ -64.826166047647291, 18.316729683709866 ], [ -64.826058759235138, 18.316709065527846 ], [ -64.826022046481626, 18.316644020618298 ], [ -64.826012323469286, 18.316563889585439 ], [ -64.826006120857926, 18.316495997446793 ], [ -64.826024058139353, 18.31640295827691 ], [ -64.826010647087855, 18.316347470051255 ], [ -64.826014335127013, 18.316201289589685 ], [ -64.826079378726888, 18.316114116445135 ], [ -64.826174764830796, 18.315994759396233 ], [ -64.826291440979048, 18.3158455614481 ], [ -64.826460755504456, 18.315666859186592 ], [ -64.826650689521614, 18.315518330481325 ], [ -64.826840958815069, 18.315339797167667 ], [ -64.827011279169369, 18.315060847296024 ], [ -64.827118232305224, 18.314821626354842 ], [ -64.8273086692368, 18.314622976463909 ], [ -64.82754151861883, 18.314374704372653 ], [ -64.827691554757735, 18.314005565179571 ], [ -64.827673449838187, 18.313695266975003 ], [ -64.827697086816443, 18.313405085347767 ], [ -64.827835053008982, 18.313226215448083 ], [ -64.827888864853207, 18.313066456296838 ], [ -64.82788031530788, 18.312856238064285 ], [ -64.82777772076372, 18.312605116124587 ], [ -64.827601533074414, 18.312403447437362 ], [ -64.827319733354329, 18.312271013303587 ], [ -64.826932824517996, 18.312177638857349 ], [ -64.826671644289604, 18.312105386817336 ], [ -64.826346929204703, 18.312092647628049 ], [ -64.826022214119746, 18.312069847530779 ], [ -64.825801769960378, 18.312108069027602 ], [ -64.82566464195861, 18.312207143170724 ], [ -64.8255377398836, 18.312326166252944 ], [ -64.82543162493846, 18.312475364201134 ], [ -64.825356523049948, 18.312674853592455 ], [ -64.825260131117147, 18.31288423363435 ], [ -64.825132558489543, 18.31308338774943 ], [ -64.824995430487775, 18.313192352543012 ], [ -64.824711619109962, 18.313280027292308 ], [ -64.824595948790602, 18.313319086979845 ], [ -64.824302749676747, 18.31330668175724 ], [ -64.823946853897041, 18.313253540465553 ], [ -64.823444442379468, 18.313189335056393 ], [ -64.823152250404178, 18.313066791573135 ], [ -64.82297639668144, 18.312814999080842 ], [ -64.822884698616633, 18.312534037551529 ], [ -64.822887548465133, 18.312213848696501 ], [ -64.823016294559693, 18.311884607381671 ], [ -64.823154428390353, 18.311685620904711 ], [ -64.82328200232763, 18.311496525078326 ], [ -64.823503451006161, 18.311328216381753 ], [ -64.823787766608064, 18.311180359538696 ], [ -64.824239048491734, 18.311114142471865 ], [ -64.824416743614677, 18.311165607382065 ], [ -64.824541634031959, 18.311256802532398 ], [ -64.82485494972309, 18.311369455365138 ], [ -64.825012195611862, 18.311370796470328 ], [ -64.825327521651047, 18.311263340419998 ], [ -64.826132687656639, 18.310844412698145 ], [ -64.826285573643986, 18.310786912814763 ], [ -64.826324130417106, 18.31072471906333 ], [ -64.826592016171219, 18.3105032703848 ], [ -64.826941541701444, 18.310218451868423 ], [ -64.827129128784577, 18.310113342752175 ], [ -64.827252510458607, 18.310023657654767 ], [ -64.827394332328424, 18.309849481623189 ], [ -64.827647801202147, 18.309651333336944 ], [ -64.827995482712765, 18.309434074302317 ], [ -64.828312318804933, 18.309176580803467 ], [ -64.828670895485288, 18.308919257562138 ], [ -64.828997957504214, 18.308681714312058 ], [ -64.829112288028114, 18.30856017534802 ], [ -64.829142127617729, 18.308473841703858 ], [ -64.829115808429151, 18.308402595492623 ], [ -64.829054620506554, 18.308221881573388 ], [ -64.829001814491221, 18.308096320603568 ], [ -64.828941800035693, 18.307950644366088 ], [ -64.828912128084198, 18.307750149145875 ], [ -64.828799978165819, 18.307419062501765 ], [ -64.828625299219823, 18.307037184119451 ], [ -64.82839932300169, 18.306544830890516 ], [ -64.828307457298763, 18.306273927649784 ], [ -64.828383062101693, 18.306024314453396 ], [ -64.828521195932353, 18.305825160338316 ], [ -64.828722194067041, 18.305606727836675 ], [ -64.828975830578884, 18.305388630611333 ], [ -64.829249416029882, 18.305260890345608 ], [ -64.829345640324561, 18.30525569356314 ], [ -64.829395764129629, 18.305292071040412 ], [ -64.829530377559252, 18.305463397223548 ], [ -64.829655100338414, 18.305584431963553 ], [ -64.829780158393817, 18.305665568825248 ], [ -64.82994695834708, 18.305747040963183 ], [ -64.830156003112677, 18.305808899438318 ], [ -64.830292125285609, 18.305819963555848 ], [ -64.83053335657479, 18.305802026274421 ], [ -64.830728990288833, 18.305759781462143 ], [ -64.830911380589498, 18.305705131427203 ], [ -64.83118496473088, 18.305597340100633 ], [ -64.831426700244208, 18.305509162436863 ], [ -64.831563156383709, 18.305480328676083 ], [ -64.831698106399301, 18.30546440305244 ], [ -64.831795502851321, 18.305449650895753 ], [ -64.831951573963352, 18.305413441056658 ], [ -64.832023324398676, 18.30536180850828 ], [ -64.832151733907324, 18.305295088526975 ], [ -64.832434708404037, 18.305287377172363 ], [ -64.832602009962102, 18.305318893143408 ], [ -64.832759757455619, 18.305260052154892 ], [ -64.83296058795213, 18.305081685169682 ], [ -64.833171979651695, 18.304883201607197 ], [ -64.833361913668853, 18.304724615922964 ], [ -64.833519996438611, 18.304635935344777 ], [ -64.833740272959858, 18.304607772136592 ], [ -64.833998435701631, 18.304610119070617 ], [ -64.834196081073401, 18.304630403286012 ], [ -64.834369418914264, 18.304572903402629 ], [ -64.834506546916089, 18.304473996897684 ], [ -64.834633616629219, 18.304305688201111 ], [ -64.834751633882604, 18.304170404218894 ], [ -64.834885073845214, 18.304115754183954 ], [ -64.834980962863597, 18.304147605431297 ], [ -64.835116414483934, 18.304238800581629 ], [ -64.835252536656867, 18.304351118138129 ], [ -64.835334344071157, 18.304470811772944 ], [ -64.835468119310065, 18.304732159639457 ], [ -64.835497288347142, 18.30498261102656 ], [ -64.83546426363273, 18.305152596104563 ], [ -64.835305342672257, 18.305351414943345 ], [ -64.835136195784912, 18.305510168265755 ], [ -64.835020525465552, 18.305549227953293 ], [ -64.834894796857554, 18.305558112774918 ], [ -64.834779629452669, 18.305547216295565 ], [ -64.834685752092014, 18.305496421937903 ], [ -64.834529178065509, 18.305425008088605 ], [ -64.834414010660566, 18.305414111609196 ], [ -64.834276212106204, 18.305445627580298 ], [ -64.834120140994173, 18.305471611492635 ], [ -64.833735746729985, 18.305682667915903 ], [ -64.833543298140626, 18.305808061247603 ], [ -64.833340623624565, 18.305915517297933 ], [ -64.833140128404352, 18.306074102982166 ], [ -64.833013058691165, 18.306213075003541 ], [ -64.832790770512247, 18.306451456444279 ], [ -64.832652636681587, 18.306660501209876 ], [ -64.832472760953067, 18.306859152410482 ], [ -64.832240246847334, 18.307077417274002 ], [ -64.831860212484571, 18.307374472065135 ], [ -64.831469949575649, 18.307651576607498 ], [ -64.831239111851346, 18.307780491649908 ], [ -64.831059068484706, 18.307898341265172 ], [ -64.83088975526897, 18.308066985238042 ], [ -64.830636286395247, 18.30829513944235 ], [ -64.830451046246083, 18.308489433360876 ], [ -64.830313246382048, 18.308667800346143 ], [ -64.830185004511577, 18.308865110441616 ], [ -64.83009598734742, 18.309015983461506 ], [ -64.830051898515535, 18.309160990456121 ], [ -64.830050391081954, 18.309321084883607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_601", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.046353855543316, 18.357181097894681 ], [ -65.046353183681049, 18.357268940282154 ], [ -65.046314626907929, 18.357380754924179 ], [ -65.046300712942013, 18.357444122142624 ], [ -65.046281266917276, 18.357504136598152 ], [ -65.046284452042016, 18.357551075278479 ], [ -65.046299707113121, 18.357580747229974 ], [ -65.046330049617211, 18.357610251543292 ], [ -65.046360224483124, 18.357668924893687 ], [ -65.046401798742806, 18.357721563270957 ], [ -65.046451419633456, 18.357757437833754 ], [ -65.046492324650274, 18.357767496122392 ], [ -65.046594248641838, 18.357787780337787 ], [ -65.046655602892827, 18.357798006264602 ], [ -65.046727016742182, 18.35780823219136 ], [ -65.046777811099844, 18.357837904142855 ], [ -65.046818379530691, 18.35787713146857 ], [ -65.046827934904854, 18.357955250843645 ], [ -65.046776469994654, 18.358003698267282 ], [ -65.046724837446334, 18.358071590405928 ], [ -65.046652753044384, 18.358149208176258 ], [ -65.046601120496064, 18.358207378612235 ], [ -65.046559713874501, 18.358275272060553 ], [ -65.046497520123069, 18.358401671221145 ], [ -65.046466171790144, 18.35847945531998 ], [ -65.046434991095339, 18.358547684044538 ], [ -65.046403307486116, 18.358674249533635 ], [ -65.046402470605074, 18.3587912622678 ], [ -65.046391069901631, 18.358927718407358 ], [ -65.046400122361376, 18.359083958467238 ], [ -65.046419568386113, 18.359210860542248 ], [ -65.046459633902487, 18.359299038205961 ], [ -65.046530712475544, 18.359367768535321 ], [ -65.046571114577944, 18.359416886511553 ], [ -65.046621572349636, 18.359495342472599 ], [ -65.046692315646396, 18.359593409477156 ], [ -65.046814357524909, 18.359682091365016 ], [ -65.04690588664181, 18.359731544617489 ], [ -65.046967074564407, 18.359751493556644 ], [ -65.047099508698182, 18.359801282085414 ], [ -65.047221716905142, 18.359841178653994 ], [ -65.047333866823465, 18.359880910203799 ], [ -65.047456075030425, 18.359920806772379 ], [ -65.04752748887978, 18.359931201646987 ], [ -65.04763980643628, 18.359941761540369 ], [ -65.047742065704085, 18.359942433402637 ], [ -65.047854550898705, 18.359933548581012 ], [ -65.04794658423981, 18.359924496121209 ], [ -65.048048843507615, 18.359895828688934 ], [ -65.04814104448684, 18.359877054526464 ], [ -65.048212625974315, 18.359858111416202 ], [ -65.04830482695354, 18.359839168305939 ], [ -65.048448157566611, 18.359811005097754 ], [ -65.048540190907715, 18.359782337665422 ], [ -65.048653011378576, 18.359744117478272 ], [ -65.048734818792866, 18.359735063708854 ], [ -65.048857194638003, 18.359765072246262 ], [ -65.048989293495481, 18.359844197450229 ], [ -65.049060372068539, 18.359903204767249 ], [ -65.049111166426144, 18.359942599731085 ], [ -65.049161793145629, 18.360011331370174 ], [ -65.049212252226994, 18.360089618383427 ], [ -65.049262878946479, 18.360138905307394 ], [ -65.049333622243239, 18.360191374736814 ], [ -65.049384584239021, 18.360230266786232 ], [ -65.049441078293569, 18.360269158835649 ], [ -65.049496231242927, 18.360355158513187 ], [ -65.049526238470719, 18.360433445526439 ], [ -65.049566639263389, 18.360482563502615 ], [ -65.049546019771697, 18.360521286604182 ], [ -65.049484496572859, 18.360550120364962 ], [ -65.049402689158569, 18.360559340462885 ], [ -65.049310655817521, 18.360568394232359 ], [ -65.049249132618684, 18.36057778065873 ], [ -65.049147040988942, 18.360567219455675 ], [ -65.049044949359256, 18.360566550212752 ], [ -65.048963141945023, 18.360565878350485 ], [ -65.048799862392741, 18.360554981871132 ], [ -65.048718054978451, 18.360554480266387 ], [ -65.048585620844733, 18.360514413440285 ], [ -65.048493587503685, 18.360513744197419 ], [ -65.048411780089396, 18.360532687307682 ], [ -65.048329637398808, 18.360571076442625 ], [ -65.04826794656185, 18.36061952255659 ], [ -65.04818597150944, 18.360648188679193 ], [ -65.048124113034305, 18.36072580644958 ], [ -65.04808656209002, 18.360775090754203 ], [ -65.048045826021053, 18.360843488426667 ], [ -65.048037444113845, 18.360939377444993 ], [ -65.048050016974628, 18.361047167461948 ], [ -65.048059572348848, 18.361156467531828 ], [ -65.048048508231318, 18.361242299571245 ], [ -65.048058231243715, 18.36129108096145 ], [ -65.04802721818703, 18.36133969733288 ], [ -65.0479450754965, 18.361397698821008 ], [ -65.047873158732727, 18.361445978606525 ], [ -65.047789674937007, 18.361458886743605 ], [ -65.047699653253687, 18.361425191476656 ], [ -65.047618348753815, 18.361375739533855 ], [ -65.047588006249782, 18.361326787886128 ], [ -65.047557663745692, 18.361277837548073 ], [ -65.04749681109945, 18.361238274946061 ], [ -65.047466636233537, 18.361179601595666 ], [ -65.047375105806907, 18.361110534680336 ], [ -65.047314253160607, 18.36106141670416 ], [ -65.047273517091639, 18.361041635403183 ], [ -65.047191878625199, 18.361031241838248 ], [ -65.047059107905454, 18.361020514306688 ], [ -65.046926170857262, 18.361029231490193 ], [ -65.046885267150117, 18.36103878555474 ], [ -65.046803292097707, 18.361057728665003 ], [ -65.046741768898869, 18.361086562425783 ], [ -65.046700697553604, 18.361115397496235 ], [ -65.046669852135096, 18.361134843520915 ], [ -65.046619057777434, 18.36111489458176 ], [ -65.046578321708466, 18.36108538895877 ], [ -65.046537920915739, 18.361036272292267 ], [ -65.046528031574951, 18.36098732064454 ], [ -65.046538759106454, 18.360919091919925 ], [ -65.046539429659049, 18.360850864504982 ], [ -65.046581003918789, 18.360753634381467 ], [ -65.046591732759964, 18.36068540434718 ], [ -65.046633474657824, 18.360578452520997 ], [ -65.046651411939251, 18.360492117567162 ], [ -65.046675887108279, 18.360393378700337 ], [ -65.046686952535424, 18.36026664557312 ], [ -65.046677395851589, 18.360188358559867 ], [ -65.046637162696982, 18.360110071546615 ], [ -65.046617213757884, 18.360051398196219 ], [ -65.046587038891971, 18.359982834195364 ], [ -65.046556864026002, 18.359933882547637 ], [ -65.046536747448727, 18.359884933519254 ], [ -65.046506572582814, 18.359835983181199 ], [ -65.046466004151966, 18.359786865205024 ], [ -65.046425603359296, 18.359737747228792 ], [ -65.046344298859424, 18.359669015589759 ], [ -65.046303730428576, 18.359639343638264 ], [ -65.046201974075188, 18.359589890385791 ], [ -65.046089825466538, 18.359549992507539 ], [ -65.046038694522906, 18.359559380243581 ], [ -65.045926041690166, 18.359587877418392 ], [ -65.045792435399051, 18.359684438299041 ], [ -65.045751196415608, 18.359732884412949 ], [ -65.045668549500988, 18.359849394232697 ], [ -65.045585903895983, 18.359965901433156 ], [ -65.045479788950843, 18.36008308049577 ], [ -65.045387587971618, 18.36015063866779 ], [ -65.045256494943033, 18.360275696723249 ], [ -65.045153229846335, 18.360401760607544 ], [ -65.04506119650523, 18.360420703717807 ], [ -65.044969164473855, 18.360420034474885 ], [ -65.044846788628774, 18.360389859608972 ], [ -65.044704296206362, 18.360320457417345 ], [ -65.044653669486877, 18.360271339441169 ], [ -65.044501286413947, 18.360162877562004 ], [ -65.044369018608677, 18.360093641698882 ], [ -65.044287715418534, 18.360044357394202 ], [ -65.044155616561056, 18.359945786165497 ], [ -65.043973392588839, 18.359729868236059 ], [ -65.043922933507474, 18.359651413584629 ], [ -65.043883035629221, 18.359534065574167 ], [ -65.043873481564674, 18.359446224496423 ], [ -65.043843474336938, 18.359367937483171 ], [ -65.043823525397784, 18.359299541120379 ], [ -65.043803407510836, 18.359270035497389 ], [ -65.043794021084409, 18.359152856434719 ], [ -65.043733168438166, 18.359093849117698 ], [ -65.043661754588811, 18.359093346203281 ], [ -65.043600399028094, 18.359083120276523 ], [ -65.043549603360816, 18.359053614653476 ], [ -65.043519262166399, 18.359014388637434 ], [ -65.043540049296269, 18.358965773575676 ], [ -65.043561004064259, 18.358916989566126 ], [ -65.043561339340556, 18.358858485163523 ], [ -65.043623533091989, 18.358761421368513 ], [ -65.043634597209518, 18.358654134265976 ], [ -65.043645158412573, 18.358595628553758 ], [ -65.043686731362584, 18.358522203046675 ], [ -65.043757643607194, 18.358503427574533 ], [ -65.043832410219409, 18.358519017921935 ], [ -65.043912876528509, 18.35850225410752 ], [ -65.043973392588839, 18.358451795026212 ], [ -65.044034917097349, 18.358413238253092 ], [ -65.044086380697877, 18.358374512532123 ], [ -65.044117227426057, 18.358345512442895 ], [ -65.044148408120861, 18.358267559396268 ], [ -65.044159638566839, 18.358160439931908 ], [ -65.044180762282622, 18.358072765182612 ], [ -65.044202052326909, 18.35796564440858 ], [ -65.044222670508987, 18.357926752359162 ], [ -65.044233231712042, 18.357887691361952 ], [ -65.044254186480032, 18.357829354597527 ], [ -65.044285368484509, 18.357761293511032 ], [ -65.044306658528797, 18.357654171427384 ], [ -65.044338005552049, 18.357566497987705 ], [ -65.044358792681919, 18.357508159913607 ], [ -65.044400368251274, 18.357440098827169 ], [ -65.044420986433295, 18.357401206777752 ], [ -65.044462225416737, 18.357352759354114 ], [ -65.044503799676477, 18.357265252242939 ], [ -65.044566162375702, 18.357129130070007 ], [ -65.044566831618624, 18.357051178333052 ], [ -65.044567503480835, 18.356973058957976 ], [ -65.044537496253099, 18.356885048932384 ], [ -65.044538500772262, 18.356768037507834 ], [ -65.044508327216022, 18.356699473506978 ], [ -65.044498604203682, 18.356631077144186 ], [ -65.044448646727062, 18.356494116780539 ], [ -65.044418639499327, 18.356415829767286 ], [ -65.044368684642052, 18.356278869403639 ], [ -65.044358961629712, 18.356220363691421 ], [ -65.044308333600554, 18.356151632052388 ], [ -65.044278158734642, 18.356092958701993 ], [ -65.044247985178401, 18.356034117713421 ], [ -65.044273129590295, 18.355986676118675 ], [ -65.044299785364899, 18.355946778240423 ], [ -65.044361308563737, 18.355917944479643 ], [ -65.044412604526144, 18.355898666093083 ], [ -65.044463735469719, 18.355889278356983 ], [ -65.044514697465502, 18.355889781271458 ], [ -65.044545375245832, 18.355889948909578 ], [ -65.044596337241614, 18.355919620861073 ], [ -65.044677809379607, 18.355949460450688 ], [ -65.044759447846047, 18.355959854015623 ], [ -65.04481040984183, 18.355969912304261 ], [ -65.044830526419105, 18.356018862642316 ], [ -65.044809405322667, 18.356096814379271 ], [ -65.044819128335007, 18.356165043103886 ], [ -65.044828682399555, 18.356243162479018 ], [ -65.044848297372027, 18.356350618529291 ], [ -65.044888696855082, 18.356409459517863 ], [ -65.04492909764781, 18.356458577494038 ], [ -65.04500017753054, 18.356527476771191 ], [ -65.045081480720683, 18.356576762385544 ], [ -65.045173178785433, 18.356616492625676 ], [ -65.045254650923425, 18.356646332215291 ], [ -65.045346181350055, 18.356695785467821 ], [ -65.045417427561233, 18.356735348069776 ], [ -65.045529746427405, 18.356745909272831 ], [ -65.04562161082066, 18.356756302837766 ], [ -65.045723702450346, 18.356766864040821 ], [ -65.045805677502756, 18.356728307267701 ], [ -65.045856974774836, 18.356709196519319 ], [ -65.045918331645225, 18.356699976421396 ], [ -65.046071217632516, 18.356759487962506 ], [ -65.046132571883561, 18.356750267864584 ], [ -65.046173307952529, 18.356770049165561 ], [ -65.046213708745256, 18.356819167141794 ], [ -65.046254109537983, 18.356878008130309 ], [ -65.046283278575004, 18.356959647906422 ], [ -65.046314291631631, 18.357024691506297 ], [ -65.046334240570786, 18.357073641844352 ], [ -65.046343963583126, 18.357142038207144 ], [ -65.046353855543316, 18.357181097894681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_397", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.817407291209292, 18.295396392709733 ], [ -64.817386168803125, 18.295524635889876 ], [ -64.817315593144485, 18.295628739177346 ], [ -64.817264966425, 18.295723287090539 ], [ -64.817173938912845, 18.295860582730484 ], [ -64.81711861832531, 18.295931493665364 ], [ -64.81694360410296, 18.295996537265239 ], [ -64.816808990673337, 18.296019168414716 ], [ -64.816594581487152, 18.296045990517769 ], [ -64.816418393797846, 18.296077171212517 ], [ -64.816290150617647, 18.296078344679529 ], [ -64.816220916064196, 18.296066610009461 ], [ -64.816052272091326, 18.295998548922967 ], [ -64.815942972021446, 18.295964350741599 ], [ -64.815793774073256, 18.295953621900424 ], [ -64.815599313826226, 18.295980444003419 ], [ -64.815459672561985, 18.295988825910626 ], [ -64.815329920638476, 18.296025706302316 ], [ -64.815249789605673, 18.296067951114594 ], [ -64.815164963395148, 18.296086223672319 ], [ -64.815105285525533, 18.296085720757844 ], [ -64.815030686551438, 18.296075494831086 ], [ -64.81494619561721, 18.296065268904329 ], [ -64.814866399860648, 18.296074153725954 ], [ -64.814791465610313, 18.296102149295962 ], [ -64.81472625437226, 18.296139532602069 ], [ -64.814695745539723, 18.296210611175127 ], [ -64.81465064956933, 18.296248329757532 ], [ -64.81460069340244, 18.296266937591554 ], [ -64.81456599361627, 18.296252353072987 ], [ -64.814526429704642, 18.296213963938044 ], [ -64.814492063885098, 18.296156631692782 ], [ -64.814462894848077, 18.296080188699136 ], [ -64.814438588626842, 18.296023024091994 ], [ -64.814364323619372, 18.295979605812704 ], [ -64.814279666356697, 18.295974073753996 ], [ -64.81423021441384, 18.295935516980876 ], [ -64.814201045376819, 18.295863935493344 ], [ -64.814142035440454, 18.295787324861578 ], [ -64.814072465610707, 18.295763017330671 ], [ -64.813996694479272, 18.295758491100798 ], [ -64.813965512474795, 18.295713061163781 ], [ -64.813963837403037, 18.295662266806119 ], [ -64.814004070557587, 18.295579118286696 ], [ -64.814084704504864, 18.295525306442471 ], [ -64.814135666500647, 18.295452886764281 ], [ -64.814207918540717, 18.295361021061353 ], [ -64.814330628352423, 18.295291618869726 ], [ -64.81453481161185, 18.295310226703748 ], [ -64.814723907438292, 18.295321458459398 ], [ -64.814972682443965, 18.295351968601608 ], [ -64.815295385871138, 18.295459424651881 ], [ -64.815439387036861, 18.295489096603376 ], [ -64.815603504779858, 18.295523797699161 ], [ -64.815777345535139, 18.295568054169223 ], [ -64.816031652599634, 18.295532179606369 ], [ -64.816241367917769, 18.295467303644671 ], [ -64.816406659127722, 18.295378455428363 ], [ -64.816551833760457, 18.295279716561538 ], [ -64.816687955933389, 18.295109563845358 ], [ -64.81676842224249, 18.295024738944505 ], [ -64.816863640708277, 18.294958857153915 ], [ -64.816983335652765, 18.294940919872488 ], [ -64.81710252506349, 18.294965731627485 ], [ -64.81722138050759, 18.295037982357883 ], [ -64.817334871531045, 18.295162705136988 ], [ -64.817407291209292, 18.295396392709733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_534", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.969668299962336, 18.335955933497416 ], [ -64.969680872823119, 18.335882003766244 ], [ -64.969698810104546, 18.335537842656606 ], [ -64.969700318847856, 18.335351430350158 ], [ -64.969727643865326, 18.335267108363723 ], [ -64.969767374105459, 18.335165350700663 ], [ -64.969858570565464, 18.334953457396296 ], [ -64.969888576483527, 18.334850023351805 ], [ -64.969898802410341, 18.334760170616278 ], [ -64.969918248435022, 18.334679367721208 ], [ -64.969928474361836, 18.334589513676008 ], [ -64.969929144914374, 18.334499659630808 ], [ -64.969911039994827, 18.334418522769113 ], [ -64.969873991965017, 18.33433738721709 ], [ -64.969827557508779, 18.3342649675389 ], [ -64.969800063543516, 18.334183829367532 ], [ -64.969781958623969, 18.33410286145363 ], [ -64.969763686066244, 18.334021724591935 ], [ -64.969736193410654, 18.333940586420567 ], [ -64.969736863963249, 18.333850732375367 ], [ -64.969737702153964, 18.333760710692047 ], [ -64.969719429596239, 18.333679741468529 ], [ -64.969720267786954, 18.333589721094881 ], [ -64.969702162867407, 18.333508750561634 ], [ -64.969674502573639, 18.333427615009612 ], [ -64.969656397654092, 18.333346478147917 ], [ -64.969638292734544, 18.333265507614669 ], [ -64.969629575551039, 18.333175487241022 ], [ -64.969630246103634, 18.333085633195878 ], [ -64.969631085604021, 18.332995611512501 ], [ -64.969641311530836, 18.332905757467358 ], [ -64.969641980773702, 18.332815903422158 ], [ -64.969652206700516, 18.332726049376959 ], [ -64.969661594436559, 18.332641224476106 ], [ -64.969722782359156, 18.332423965441478 ], [ -64.969732840647794, 18.332414576395763 ], [ -64.969792855103321, 18.332348695914845 ], [ -64.969862761519039, 18.332292537136595 ], [ -64.969922774664894, 18.332226655346005 ], [ -64.969992679770996, 18.332170496567755 ], [ -64.970052695536197, 18.332104614777165 ], [ -64.970132323654582, 18.332057842425343 ], [ -64.970211950463295, 18.332020628067028 ], [ -64.970301301594077, 18.33199296777326 ], [ -64.970390820362979, 18.331965139841373 ], [ -64.970480171493705, 18.331946867283648 ], [ -64.970569690262607, 18.33191920698988 ], [ -64.97065904139339, 18.331891545386441 ], [ -64.970748392524115, 18.331873274138445 ], [ -64.9708280206425, 18.331836058470458 ], [ -64.970878144447568, 18.331760621305705 ], [ -64.970938158903152, 18.331694907153235 ], [ -64.971008399285495, 18.331610249890502 ], [ -64.971048800078165, 18.33150631424121 ], [ -64.97103974761842, 18.331402210953797 ], [ -64.971030527520497, 18.331316883138527 ], [ -64.971021475060695, 18.3312315553232 ], [ -64.97111216729661, 18.331042962411232 ], [ -64.971182072402655, 18.330977248258762 ], [ -64.971271926447855, 18.330911701744469 ], [ -64.971341663915723, 18.330855375328099 ], [ -64.971392122997088, 18.330761162691147 ], [ -64.97141257485066, 18.330676170152117 ], [ -64.97144308499287, 18.330591177613144 ], [ -64.971463536846443, 18.330506017435994 ], [ -64.971495555731906, 18.330317256885849 ], [ -64.971538806373076, 18.330227738116946 ], [ -64.971563784456521, 18.330161185773761 ], [ -64.971603849972951, 18.330088933733691 ], [ -64.971631845543016, 18.330007796871996 ], [ -64.971656991264581, 18.329909393281469 ], [ -64.971700577182048, 18.329793555323988 ], [ -64.971752712644843, 18.329733037953986 ], [ -64.971859833418819, 18.329643854461381 ], [ -64.971981873987659, 18.329575122822348 ], [ -64.972079271749351, 18.329546959614163 ], [ -64.972146159368776, 18.329547462528581 ], [ -64.972216902665537, 18.329688781483981 ], [ -64.972292172192226, 18.329852061036263 ], [ -64.972425779793014, 18.330170238233563 ], [ -64.972567434024654, 18.330529151499832 ], [ -64.972620072401867, 18.330719085516989 ], [ -64.972702215092454, 18.330919748375379 ], [ -64.972751835983047, 18.331099121189425 ], [ -64.972826937871559, 18.331286708272614 ], [ -64.972893825491042, 18.33142551134614 ], [ -64.9729779798393, 18.331548223777247 ], [ -64.973130027635932, 18.33168753107492 ], [ -64.973163387626585, 18.331777217481942 ], [ -64.973128183616325, 18.331923397943513 ], [ -64.973160537778142, 18.332118864019378 ], [ -64.973244189211982, 18.332306617431016 ], [ -64.973351980538609, 18.332648934521046 ], [ -64.973552308120645, 18.333130392580301 ], [ -64.973677198537928, 18.333472877308509 ], [ -64.973761017609945, 18.333644203491644 ], [ -64.973895966315865, 18.333791725058404 ], [ -64.974030747383665, 18.333971599477195 ], [ -64.974105681634001, 18.334073858745057 ], [ -64.974129318612313, 18.334301846620917 ], [ -64.974304834439408, 18.334709711534913 ], [ -64.974480351576176, 18.335101480567801 ], [ -64.974535504525534, 18.335199885468001 ], [ -64.974473478412278, 18.335431727711466 ], [ -64.974457386460131, 18.335625349767781 ], [ -64.974398376523766, 18.335742528830451 ], [ -64.974222859386998, 18.335928105565529 ], [ -64.97405572546711, 18.335972696002159 ], [ -64.973923626609633, 18.336188781569774 ], [ -64.973770740622285, 18.336284502949979 ], [ -64.973452228148687, 18.336240581756272 ], [ -64.973177301592557, 18.336190122674907 ], [ -64.973047214392807, 18.33613362862036 ], [ -64.972850574849872, 18.336073112560086 ], [ -64.972706406046029, 18.336154249421782 ], [ -64.972505072635101, 18.336234882059387 ], [ -64.972390072868336, 18.336261368886142 ], [ -64.972303236309699, 18.336370166041547 ], [ -64.972216399751119, 18.336451639489212 ], [ -64.972129563192539, 18.336560602973179 ], [ -64.971970474593888, 18.336644589683317 ], [ -64.971789090122058, 18.336677782035792 ], [ -64.971564119732818, 18.336710639112027 ], [ -64.971346860698191, 18.3367020895667 ], [ -64.971194645263438, 18.336700916099687 ], [ -64.970977553866987, 18.336678452588387 ], [ -64.97073146107158, 18.33663503561877 ], [ -64.970535994995657, 18.336612738435917 ], [ -64.970441782358762, 18.336612067883379 ], [ -64.970318569632582, 18.336618102856562 ], [ -64.970181441630814, 18.336540821672145 ], [ -64.970091250999644, 18.336453817475444 ], [ -64.969957978675154, 18.336407716985832 ], [ -64.969820683035209, 18.336365136897257 ], [ -64.969675676040652, 18.336363963430244 ], [ -64.969516419803881, 18.336355916799334 ], [ -64.969316427498086, 18.336366980916807 ], [ -64.969497645641411, 18.336253489893352 ], [ -64.969649356852074, 18.336068249744244 ], [ -64.969668299962336, 18.335955933497416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_1153", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.849970324890023, 18.314845432281004 ], [ -64.849898408126251, 18.314895053171597 ], [ -64.849894720087093, 18.314895053171597 ], [ -64.849849793064493, 18.314883821415947 ], [ -64.849842584624298, 18.314844426452112 ], [ -64.849850295978911, 18.314819279420874 ], [ -64.849906957671578, 18.314787597121324 ], [ -64.849914501388071, 18.314787597121324 ], [ -64.849970324890023, 18.314845432281004 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_556", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.941379534729492, 18.319328242580013 ], [ -64.941406859746962, 18.319408373612873 ], [ -64.941454973203975, 18.319481966758076 ], [ -64.941520687356387, 18.319539131365161 ], [ -64.9415443243347, 18.319619094759844 ], [ -64.941467378426637, 18.319658489723679 ], [ -64.941389091413384, 18.319694196648356 ], [ -64.941305607617664, 18.319714145587511 ], [ -64.941189768350512, 18.319741805881279 ], [ -64.941113159028362, 18.319698219963811 ], [ -64.941036548396539, 18.319654801684521 ], [ -64.940966475652374, 18.319605180793928 ], [ -64.940896401598479, 18.319543323628466 ], [ -64.940864885627434, 18.319463358924111 ], [ -64.940820630467044, 18.319389599450403 ], [ -64.940776373997039, 18.319315669719231 ], [ -64.940745024354442, 18.31923570763422 ], [ -64.940700769194109, 18.319161777903048 ], [ -64.940662882973584, 18.319081814508365 ], [ -64.940624995443329, 18.319001852423298 ], [ -64.940606556557157, 18.318916020383938 ], [ -64.940581578473711, 18.318836056989255 ], [ -64.940588619275786, 18.318750393897631 ], [ -64.940589457466501, 18.318658360556583 ], [ -64.940583756459944, 18.318572529826895 ], [ -64.940584595960331, 18.31848686673527 ], [ -64.940540170542477, 18.318412939623443 ], [ -64.940489545132664, 18.318345044865453 ], [ -64.940425842637978, 18.318283355338167 ], [ -64.940368678030836, 18.318215460580177 ], [ -64.940317882363559, 18.318147568441475 ], [ -64.940325092113426, 18.318061905349907 ], [ -64.940389800437003, 18.317995016420809 ], [ -64.940467249259541, 18.317952771608475 ], [ -64.940525418385789, 18.317885716350929 ], [ -64.940583756459944, 18.317818828731447 ], [ -64.940635725594234, 18.317751773473844 ], [ -64.940719377028074, 18.317715732582542 ], [ -64.940809397401722, 18.317704165550595 ], [ -64.940899085118474, 18.317710869766699 ], [ -64.940982401276017, 18.317736015488322 ], [ -64.941078290294399, 18.317779770353582 ], [ -64.941161271175702, 18.317817152350017 ], [ -64.941257160194027, 18.3178607395771 ], [ -64.941320861379097, 18.317922596742562 ], [ -64.941390935432935, 18.317978252606395 ], [ -64.941474082642685, 18.318015635912502 ], [ -64.941544155386907, 18.318077494387637 ], [ -64.941614229440745, 18.318139352862772 ], [ -64.941690838762895, 18.318182772451735 ], [ -64.941767449394717, 18.318232393342385 ], [ -64.94188915468726, 18.31824563544609 ], [ -64.94197900873246, 18.318240272335117 ], [ -64.942068862777603, 18.318234740276409 ], [ -64.942165088381955, 18.318241613440307 ], [ -64.942254773479306, 18.318254687905835 ], [ -64.942338089636905, 18.318279833627457 ], [ -64.942421239466, 18.318304979349023 ], [ -64.942498185374063, 18.318323922459342 ], [ -64.942510924563351, 18.31831788748616 ], [ -64.942581166255366, 18.318367508376753 ], [ -64.942631960612971, 18.318435235496622 ], [ -64.942650399499144, 18.318521232554815 ], [ -64.942649728946606, 18.318607064594232 ], [ -64.942642520506411, 18.318692726376128 ], [ -64.942654590452776, 18.318778724743993 ], [ -64.942660291459333, 18.318864555473738 ], [ -64.942665989846546, 18.318950387513098 ], [ -64.942665320603624, 18.319036216933171 ], [ -64.942664482412908, 18.319121880024738 ], [ -64.94264453347381, 18.319207544426035 ], [ -64.942637491362063, 18.319293373846051 ], [ -64.942623912672389, 18.319379036937676 ], [ -64.942578316406923, 18.319452294806581 ], [ -64.942532717522056, 18.319525385037366 ], [ -64.942461806587175, 18.319580035072306 ], [ -64.94243531976042, 18.319604845517631 ], [ -64.94239709957327, 18.319640887718606 ], [ -64.94230087527859, 18.319640049527834 ], [ -64.942220241331313, 18.319644408119586 ], [ -64.942105241564548, 18.319636864403151 ], [ -64.942021925406948, 18.319609539385681 ], [ -64.941945482413303, 18.319568970954833 ], [ -64.941865685347068, 18.319528402523986 ], [ -64.941799972504327, 18.319471405555021 ], [ -64.941748338646278, 18.319404351607091 ], [ -64.94171766217562, 18.319321035449491 ], [ -64.94170441745257, 18.319237717982276 ], [ -64.941698216150883, 18.319154401824676 ], [ -64.94168497142789, 18.319071085667133 ], [ -64.941643732444447, 18.31899430739719 ], [ -64.941609703210872, 18.318914176364331 ], [ -64.941579025430542, 18.3188340466412 ], [ -64.94155521950438, 18.31875391560834 ], [ -64.941489505351967, 18.318700102454443 ], [ -64.941406021556247, 18.318672946384822 ], [ -64.94131901735949, 18.318658863471057 ], [ -64.941231845524612, 18.318668252516773 ], [ -64.941148026452652, 18.31869423642911 ], [ -64.941105615311869, 18.318770342836785 ], [ -64.941129252290182, 18.318850473869645 ], [ -64.941191446041614, 18.31891082360147 ], [ -64.941267887725587, 18.318951392032318 ], [ -64.941340642680075, 18.318998498350766 ], [ -64.941374842171115, 18.319075276620708 ], [ -64.9413879166367, 18.319161945541168 ], [ -64.94138037422988, 18.319245094060591 ], [ -64.941379534729492, 18.319328242580013 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_141", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.041409703762326, 18.35527438164479 ], [ -65.041472232790056, 18.355332887357065 ], [ -65.041462509777659, 18.355416538790905 ], [ -65.041421438432394, 18.35548929374545 ], [ -65.041384558040704, 18.355464315661948 ], [ -65.041351868602646, 18.35545878360324 ], [ -65.041316832230564, 18.355469009529997 ], [ -65.041266205511079, 18.35548610862071 ], [ -65.041178363123606, 18.355485438068115 ], [ -65.041208370351399, 18.355406145226027 ], [ -65.041242736170886, 18.355324673088035 ], [ -65.041321861374854, 18.355284439933484 ], [ -65.041409703762326, 18.35527438164479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_106", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.841864686660983, 18.324300725207365 ], [ -64.841823950592016, 18.324335426303151 ], [ -64.841779192517208, 18.324408684172113 ], [ -64.841745495940586, 18.324489150481213 ], [ -64.841711800673693, 18.324565927441483 ], [ -64.841663354559728, 18.324635666219081 ], [ -64.841629657983106, 18.324712444489023 ], [ -64.84155221047024, 18.324750329399876 ], [ -64.841464199134975, 18.324749660156954 ], [ -64.841372333432048, 18.324748821966239 ], [ -64.841280803005418, 18.324730549408571 ], [ -64.84119664865716, 18.324698361575258 ], [ -64.841120038025338, 18.324655615158179 ], [ -64.84105063583371, 18.324605994267586 ], [ -64.84097016952461, 18.324573806434273 ], [ -64.840893558892787, 18.324531060017193 ], [ -64.840842764535182, 18.324464003449918 ], [ -64.840814098412523, 18.324383203174193 ], [ -64.84078559992804, 18.324284799583666 ], [ -64.840760789482772, 18.324203997998268 ], [ -64.8407468755168, 18.324119676011833 ], [ -64.840773363653227, 18.324048765076896 ], [ -64.840776882744592, 18.324039377340853 ], [ -64.840861540007324, 18.324019093125457 ], [ -64.840946198579672, 18.32399160046981 ], [ -64.84101995805338, 18.32394667344721 ], [ -64.841086510396565, 18.323891185221555 ], [ -64.841175190974695, 18.32388246803805 ], [ -64.841263033362168, 18.323864529447007 ], [ -64.8413476906249, 18.323837204429537 ], [ -64.841432347887633, 18.323816921523758 ], [ -64.841524045952383, 18.323807198511417 ], [ -64.84161591165531, 18.323797475499077 ], [ -64.841703921680903, 18.323819268457783 ], [ -64.841765780156038, 18.32387928291331 ], [ -64.841787071509998, 18.323960084498765 ], [ -64.841800984166298, 18.3240444064852 ], [ -64.841825794611566, 18.324125208070598 ], [ -64.841854460734226, 18.324206008346323 ], [ -64.841864686660983, 18.324293684405291 ], [ -64.841864686660983, 18.324300725207365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_226", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.05825733461495, 18.350821578573573 ], [ -65.05826035210157, 18.350870361273451 ], [ -65.058249958536635, 18.350902715435268 ], [ -65.058238894419162, 18.350999945558783 ], [ -65.058251802556242, 18.351090973070995 ], [ -65.058254484766508, 18.351175293747701 ], [ -65.058257502253127, 18.351233633131528 ], [ -65.058256831700533, 18.351311583558811 ], [ -65.058229339044942, 18.351347124154984 ], [ -65.058181897450197, 18.351349972693754 ], [ -65.058124062290517, 18.351346284654596 ], [ -65.058093719786427, 18.351323319538551 ], [ -65.058046445829802, 18.351280907088096 ], [ -65.05801627096389, 18.351235140565166 ], [ -65.057996322024792, 18.351176636162563 ], [ -65.057979558210377, 18.351137576475026 ], [ -65.057966314797, 18.351098515477759 ], [ -65.057956424146482, 18.351059623428341 ], [ -65.057950053897002, 18.351014027162876 ], [ -65.057943516009402, 18.350975135113458 ], [ -65.057940330884662, 18.350942613313521 ], [ -65.0579438512857, 18.350926520051701 ], [ -65.057944186561997, 18.350900536139363 ], [ -65.057954580126932, 18.350864829214743 ], [ -65.05795826816609, 18.350835660177665 ], [ -65.05798257569694, 18.350761227532075 ], [ -65.05800001006395, 18.350696520518113 ], [ -65.058017444430902, 18.350654443344013 ], [ -65.058024652871097, 18.350602643157515 ], [ -65.058024988147395, 18.35055386045758 ], [ -65.058018617897915, 18.350495522383483 ], [ -65.058002189359797, 18.350433662598675 ], [ -65.057982072782522, 18.35040432723315 ], [ -65.057941504351675, 18.35037163648542 ], [ -65.057887189593032, 18.350355041618798 ], [ -65.05783639523537, 18.3503481684549 ], [ -65.057785433239644, 18.350347833178603 ], [ -65.057730950842824, 18.350347330264185 ], [ -65.057686862010939, 18.350337271975548 ], [ -65.057687197287237, 18.350308101628798 ], [ -65.057697758490292, 18.350266024454697 ], [ -65.05770144652945, 18.35021740939294 ], [ -65.057712175370682, 18.350152533431185 ], [ -65.057705805121202, 18.350097380481827 ], [ -65.057672780406847, 18.34998037036695 ], [ -65.057669595282107, 18.34995120132993 ], [ -65.057639588054315, 18.349885990091877 ], [ -65.057636402929575, 18.34984056015486 ], [ -65.057626512279114, 18.349808038354922 ], [ -65.057609748464699, 18.349775516554985 ], [ -65.057596505051322, 18.349742993445375 ], [ -65.057589631887424, 18.349736456867447 ], [ -65.057579908875084, 18.349690859292309 ], [ -65.057586949677102, 18.349651967242892 ], [ -65.057590470078139, 18.349632521218155 ], [ -65.057614442332749, 18.349610056397182 ], [ -65.057638414587302, 18.349597317207952 ], [ -65.057682671057364, 18.349578037511719 ], [ -65.05773028029023, 18.349572003848209 ], [ -65.057814937552962, 18.349608212377632 ], [ -65.057835054130237, 18.349656996387182 ], [ -65.05783790397868, 18.349722039987057 ], [ -65.057854500154917, 18.349777192936415 ], [ -65.057874281455952, 18.349835866286867 ], [ -65.057914514610502, 18.34991398435227 ], [ -65.057948042239275, 18.349959583237137 ], [ -65.0579953161959, 18.350005348450452 ], [ -65.058039069751487, 18.350064020491175 ], [ -65.058058851052465, 18.350129065400722 ], [ -65.058058515776167, 18.35018103322534 ], [ -65.05808198511636, 18.350226629490805 ], [ -65.05811568038331, 18.350262505363332 ], [ -65.05815272841312, 18.350301731379318 ], [ -65.058179718154292, 18.350327884239505 ], [ -65.058219951308843, 18.35038018734042 ], [ -65.058250126174812, 18.350438693052638 ], [ -65.058276948277808, 18.350494013640173 ], [ -65.058286671290205, 18.350539611215368 ], [ -65.058286336013907, 18.350581688389525 ], [ -65.05825884335826, 18.350633488576023 ], [ -65.058251299641768, 18.350720994377468 ], [ -65.058254484766508, 18.350756702611818 ], [ -65.058264375417025, 18.350789224411756 ], [ -65.05825733461495, 18.350821578573573 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_100", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.9419597303459, 18.324929703523651 ], [ -64.941960568536615, 18.324842530379101 ], [ -64.9419682812009, 18.324755527492016 ], [ -64.941975992555513, 18.324668523295259 ], [ -64.941997785514218, 18.324588224624335 ], [ -64.942026451636877, 18.324508093591476 ], [ -64.942069199363573, 18.324434668084393 ], [ -64.94211898658267, 18.324361242577311 ], [ -64.94217564958501, 18.324294690234183 ], [ -64.942225436804108, 18.324221432365221 ], [ -64.942289140608523, 18.324161585547813 ], [ -64.942359716267163, 18.324108444256183 ], [ -64.942423417452176, 18.324048597438775 ], [ -64.9424661664886, 18.32397533956987 ], [ -64.942543781639586, 18.323922198278183 ], [ -64.942586529366281, 18.323848940409277 ], [ -64.942650231861023, 18.32378909359187 ], [ -64.942706725915514, 18.323735280437973 ], [ -64.942713934355709, 18.323728576221868 ], [ -64.942721645710378, 18.323641572025167 ], [ -64.942743272340579, 18.323561273354187 ], [ -64.942751151333368, 18.323474101519309 ], [ -64.942758861378309, 18.323387097322552 ], [ -64.942759699569024, 18.323299925487674 ], [ -64.942739247715451, 18.323219459178574 ], [ -64.942704881895963, 18.32313865759312 ], [ -64.942663642912521, 18.323037907068624 ], [ -64.942629278402705, 18.322957105483169 ], [ -64.942616033679656, 18.322863228122571 ], [ -64.942648387841416, 18.322846631946277 ], [ -64.942650568446993, 18.322845626117441 ], [ -64.942652412466543, 18.322844620288549 ], [ -64.942693482502193, 18.322823665520559 ], [ -64.942756011529866, 18.322897761580236 ], [ -64.942797419461101, 18.322971857639857 ], [ -64.942796747598891, 18.323059029474734 ], [ -64.942809992321941, 18.323146201309612 ], [ -64.942865646876044, 18.323213759481632 ], [ -64.942935385653641, 18.323267906602155 ], [ -64.943026411856124, 18.323275281370854 ], [ -64.943110901480736, 18.323242425604292 ], [ -64.943174603975422, 18.323182578786884 ], [ -64.943238306470164, 18.323122731969477 ], [ -64.943288094998934, 18.323049474100515 ], [ -64.943351629855499, 18.323003038334662 ], [ -64.943351797493676, 18.322989627283107 ], [ -64.943401418384269, 18.322916201776081 ], [ -64.943458247715114, 18.322849649432897 ], [ -64.943507868605707, 18.322776391563934 ], [ -64.943543744478234, 18.322696260531131 ], [ -64.943544413721099, 18.322602383170477 ], [ -64.943545251911814, 18.322515211335599 ], [ -64.943532008498437, 18.322428039500721 ], [ -64.943476352634661, 18.322360648966821 ], [ -64.943413655968811, 18.322299796320578 ], [ -64.943322628456599, 18.322285714716486 ], [ -64.943231434615939, 18.322284876525771 ], [ -64.943140239465606, 18.322277500447399 ], [ -64.943049043005601, 18.322276829894861 ], [ -64.942957681526764, 18.322282864868043 ], [ -64.942873359540329, 18.322302310892724 ], [ -64.942746960379793, 18.322314716115386 ], [ -64.942655763919788, 18.322314045562791 ], [ -64.942564568769455, 18.322313207372076 ], [ -64.942473373619066, 18.322305831293761 ], [ -64.942402799270155, 18.322358972585391 ], [ -64.942366923397628, 18.322445809143971 ], [ -64.942317134868858, 18.322519067012934 ], [ -64.942225939718526, 18.322525101986116 ], [ -64.94214195431806, 18.322497609330469 ], [ -64.94207221554052, 18.322443462209947 ], [ -64.942002479382268, 18.322389315089481 ], [ -64.941911450560383, 18.322375233485388 ], [ -64.94182025541005, 18.322361151881296 ], [ -64.94172906156939, 18.322360313690524 ], [ -64.941637866419057, 18.322352937612209 ], [ -64.941553878399247, 18.322332150482339 ], [ -64.941477101438977, 18.322278003361873 ], [ -64.94140736266138, 18.322223856241351 ], [ -64.941358916547472, 18.322149760181674 ], [ -64.94133863233202, 18.322069126234396 ], [ -64.941318348116624, 18.321975248873798 ], [ -64.941297896263052, 18.321894614926521 ], [ -64.941291693651692, 18.321807443091643 ], [ -64.941285489730717, 18.321720271256765 ], [ -64.941293202395002, 18.321633099421888 ], [ -64.941314826405915, 18.321552968389028 ], [ -64.941357575442282, 18.321479542881946 ], [ -64.941379368401044, 18.321399244211023 ], [ -64.941323880175332, 18.321325148151345 ], [ -64.941289514355844, 18.321244346565948 ], [ -64.941304266512532, 18.32115734236919 ], [ -64.941297896263052, 18.321070170534313 ], [ -64.941305775255785, 18.320983166337612 ], [ -64.941334441378444, 18.320903035304752 ], [ -64.941363275139224, 18.320822736633772 ], [ -64.941384900459752, 18.320742437962792 ], [ -64.941441728480925, 18.320675885619664 ], [ -64.941470394603527, 18.320595754586805 ], [ -64.941471234103915, 18.320508582751927 ], [ -64.941471903346837, 18.32042157855517 ], [ -64.941465700735534, 18.320334406720292 ], [ -64.94143820938956, 18.320253605134894 ], [ -64.941438375718064, 18.320247067247294 ], [ -64.941474754504952, 18.320223431578654 ], [ -64.941568630555935, 18.320237511873074 ], [ -64.941657143495945, 18.320323510240939 ], [ -64.941722354733997, 18.320377824999582 ], [ -64.941811539536275, 18.320392074241852 ], [ -64.941900889357328, 18.320392744794447 ], [ -64.941990074159605, 18.320402467806787 ], [ -64.94207925765221, 18.320416549410879 ], [ -64.94216860747332, 18.320408335141792 ], [ -64.942242200618523, 18.320364078671787 ], [ -64.942319146526586, 18.320322839688401 ], [ -64.942406653637761, 18.320313116676004 ], [ -64.942493994420488, 18.320317307629637 ], [ -64.942581667860111, 18.320300543815222 ], [ -64.942629781317123, 18.320295179394634 ], [ -64.942630450560046, 18.320295179394634 ], [ -64.942669176280958, 18.320290820802882 ], [ -64.942756346806163, 18.320308925722429 ], [ -64.942836311510518, 18.320344297370809 ], [ -64.942916105957408, 18.320379669019189 ], [ -64.942995901713914, 18.320411687904709 ], [ -64.943075866418326, 18.320443539152052 ], [ -64.943155660865159, 18.320475558037572 ], [ -64.943239313608728, 18.32049701571998 ], [ -64.943326651772054, 18.32051160023849 ], [ -64.943414158883229, 18.320505397627187 ], [ -64.943487416752134, 18.320460805880884 ], [ -64.943575091501486, 18.320433648501535 ], [ -64.943662430974484, 18.320430798653092 ], [ -64.943746082408325, 18.320459297137575 ], [ -64.943833421881379, 18.320477402057122 ], [ -64.94390584155957, 18.320523167270437 ], [ -64.94398932535529, 18.320548145353882 ], [ -64.944076832466465, 18.320555856708552 ], [ -64.944160317571857, 18.320584187554857 ], [ -64.944221671822845, 18.320643866734144 ], [ -64.944275818943368, 18.320710419077329 ], [ -64.94432996606389, 18.320776971420457 ], [ -64.944373049066883, 18.32085039692754 ], [ -64.944427028549285, 18.320916949270725 ], [ -64.944433734075005, 18.321000433066445 ], [ -64.944425687444095, 18.321083916862108 ], [ -64.9444213288524, 18.321167400657828 ], [ -64.944398697702923, 18.32124719641439 ], [ -64.94436533771227, 18.321320119007055 ], [ -64.94436533771227, 18.321323471769915 ], [ -64.94434287420097, 18.321403435164598 ], [ -64.944316555012392, 18.32148323092116 ], [ -64.944315047578755, 18.321589513504421 ], [ -64.944285878541677, 18.321667297603256 ], [ -64.944288894718625, 18.321750949037096 ], [ -64.944284368488752, 18.321844826397751 ], [ -64.944309012605572, 18.321942391797563 ], [ -64.944377910573053, 18.321995197812896 ], [ -64.944465250046107, 18.322002741529388 ], [ -64.944552589519105, 18.322006932483021 ], [ -64.94463992899216, 18.322021517001531 ], [ -64.94472341278788, 18.322050015486013 ], [ -64.944784935986718, 18.322109694665244 ], [ -64.944846291547435, 18.322169373844531 ], [ -64.944937319059591, 18.322176917561023 ], [ -64.945024658532645, 18.322191502079534 ], [ -64.945100766249993, 18.322233914529988 ], [ -64.945114680215966, 18.322317565963829 ], [ -64.945110489262333, 18.322387135793576 ], [ -64.945110321624213, 18.322401049759549 ], [ -64.94513144403038, 18.322484701193389 ], [ -64.945163630554021, 18.322561479463332 ], [ -64.945217610036366, 18.322628031806516 ], [ -64.945297573431048, 18.322666923855934 ], [ -64.945384912904103, 18.322674467572426 ], [ -64.945465211575083, 18.322643789792039 ], [ -64.945509635683209, 18.322571202475729 ], [ -64.945553892153214, 18.322498447521184 ], [ -64.945587419782044, 18.322422172165659 ], [ -64.945606362892306, 18.322338688369996 ], [ -64.945675932722054, 18.322287055821619 ], [ -64.945763272195109, 18.322308681142204 ], [ -64.945850779306284, 18.322302310892724 ], [ -64.945913140695836, 18.322243637542329 ], [ -64.945950188725647, 18.322167362186804 ], [ -64.945961923395714, 18.322084046029261 ], [ -64.945988074946172, 18.322004250272698 ], [ -64.946017914535844, 18.321924454516136 ], [ -64.946058650604812, 18.321848179160611 ], [ -64.946073402761499, 18.321820518866843 ], [ -64.946080443563517, 18.321766539384498 ], [ -64.946089831299616, 18.321745249340211 ], [ -64.946090334214034, 18.321744075873198 ], [ -64.946113803554169, 18.321690264028973 ], [ -64.946147331182999, 18.321613988673448 ], [ -64.946158898214946, 18.321530504877728 ], [ -64.946148672288132, 18.321447021082065 ], [ -64.946142134400532, 18.321363369648168 ], [ -64.946135596512931, 18.321279885852448 ], [ -64.946092513509882, 18.321206460345422 ], [ -64.946068373617152, 18.32112666458886 ], [ -64.946055465480072, 18.321083916862108 ], [ -64.946020932022407, 18.32100613276333 ], [ -64.945978854848306, 18.32093237197995 ], [ -64.945936945312269, 18.32085056456566 ], [ -64.945894868138112, 18.320776971420457 ], [ -64.945827812880509, 18.320637831760962 ], [ -64.945802834797064, 18.320556191984849 ], [ -64.945786573897124, 18.32047455220868 ], [ -64.945761595813678, 18.320392912432567 ], [ -64.945745502551802, 18.320278750856517 ], [ -64.945737791197189, 18.320189064449437 ], [ -64.945729912204456, 18.320099378042414 ], [ -64.945713651304459, 18.320017739575974 ], [ -64.945697222766341, 18.319936098490189 ], [ -64.945681129504521, 18.319829983544992 ], [ -64.945673250511788, 18.319740297137969 ], [ -64.945648440066464, 18.319658657361856 ], [ -64.945623629621139, 18.319577520500161 ], [ -64.945623461983018, 18.319577017585743 ], [ -64.945632849719061, 18.319487498816841 ], [ -64.945667550814846, 18.319406195626641 ], [ -64.945702419548809, 18.319325057455274 ], [ -64.945745670189979, 18.319251968534161 ], [ -64.945831333281546, 18.319220115977146 ], [ -64.945916828734994, 18.319204525629743 ], [ -64.946019423279154, 18.319164461422986 ], [ -64.946113300639752, 18.319157084034998 ], [ -64.946198460816902, 18.319190276387531 ], [ -64.946283956270349, 18.319166639409218 ], [ -64.946361069816589, 18.31912640756434 ], [ -64.946454947177244, 18.319119031485968 ], [ -64.946514123442057, 18.319184576690589 ], [ -64.946556200616214, 18.319258337473968 ], [ -64.946598277790372, 18.319331930619171 ], [ -64.946623088235697, 18.319413570395341 ], [ -64.946656448226349, 18.319495377809574 ], [ -64.94667287676441, 18.319577017585743 ], [ -64.946689305302527, 18.319658657361856 ], [ -64.946688467111812, 18.319756390399789 ], [ -64.946687628921097, 18.319846076806812 ], [ -64.946669859277847, 18.319927382616356 ], [ -64.946643707727389, 18.320008685806499 ], [ -64.946617388538755, 18.320089991616044 ], [ -64.94661655034804, 18.320179509075274 ], [ -64.946615879795502, 18.320269195482297 ], [ -64.946623591150114, 18.320358881889319 ], [ -64.946622752959399, 18.320448569606071 ], [ -64.946622082406805, 18.320538087065245 ], [ -64.946638510944922, 18.320619726841414 ], [ -64.946654771844862, 18.320701366617527 ], [ -64.946679749928364, 18.32078300639364 ], [ -64.946738926193177, 18.32084872054611 ], [ -64.94679810245799, 18.320914267060402 ], [ -64.946874377813515, 18.320971934581962 ], [ -64.94695065316904, 18.321021387834435 ], [ -64.94703564570807, 18.321054747825087 ], [ -64.947205630786073, 18.321137393430092 ], [ -64.947282073779718, 18.321178800051655 ], [ -64.947367233956868, 18.32120394577322 ], [ -64.947486592315386, 18.321212998233023 ], [ -64.947580468366368, 18.321213668785617 ], [ -64.947674179398575, 18.321214506976332 ], [ -64.947768056759173, 18.32121517752887 ], [ -64.947861934119828, 18.321207801450555 ], [ -64.947947597211396, 18.321175782565035 ], [ -64.948033091355171, 18.321143931317692 ], [ -64.948152953937836, 18.32110403343944 ], [ -64.948238617029403, 18.32107218219204 ], [ -64.948315730575644, 18.32102390240658 ], [ -64.948393010450332, 18.32097562262112 ], [ -64.948478507213451, 18.3209436037356 ], [ -64.948555788397869, 18.32089532395014 ], [ -64.948599039038982, 18.320822401357475 ], [ -64.948667769368342, 18.320765907302984 ], [ -64.948736333369254, 18.320733720779344 ], [ -64.948796012548542, 18.320734223693762 ], [ -64.948889891218812, 18.3207348942463 ], [ -64.948958621548229, 18.320678400191809 ], [ -64.949035736404142, 18.320630120406349 ], [ -64.949104468043174, 18.320573626351802 ], [ -64.949190131134742, 18.320541775104459 ], [ -64.949283839547547, 18.320542445656997 ], [ -64.94936900103437, 18.320559377109532 ], [ -64.949462878395025, 18.320560047662127 ], [ -64.94952322812685, 18.320495340648222 ], [ -64.94959195845621, 18.320438845284002 ], [ -64.949660691404972, 18.320382351229512 ], [ -64.94974618554869, 18.320358546613022 ], [ -64.94983168231181, 18.320342956265677 ], [ -64.949951374636953, 18.320303226025544 ], [ -64.950028489492865, 18.320262992870937 ], [ -64.950080288369691, 18.320190071588002 ], [ -64.950123540320533, 18.320117147685664 ], [ -64.950166958599823, 18.320044057454879 ], [ -64.950184728243073, 18.319954538686034 ], [ -64.950202496576708, 18.319873234186161 ], [ -64.950203168438918, 18.319783547779139 ], [ -64.950195455774633, 18.319693861372059 ], [ -64.95022177627294, 18.319612556872244 ], [ -64.950298888509508, 18.319572491355814 ], [ -64.950384385272571, 18.319540640108471 ], [ -64.950469879416346, 18.319524882122948 ], [ -64.950555376179466, 18.319501077506459 ], [ -64.950640536356616, 18.319526224537753 ], [ -64.950716979350318, 18.319567629849644 ], [ -64.950810521434619, 18.319592775571266 ], [ -64.950895681611826, 18.319609707023801 ], [ -64.950981009427096, 18.319626638476336 ], [ -64.951066169604246, 18.319643569928871 ], [ -64.951151328471724, 18.319660501381406 ], [ -64.951236488648874, 18.319677600472119 ], [ -64.951330198371352, 18.319686317655623 ], [ -64.951423909403559, 18.319703416746279 ], [ -64.951441008494214, 18.319703584384456 ], [ -64.951509069580709, 18.319720349508486 ], [ -64.951602945631635, 18.319712972120499 ], [ -64.951688608723259, 18.319680954544651 ], [ -64.951765723579172, 18.319632673449519 ], [ -64.951826072001325, 18.319567965125941 ], [ -64.951886255404702, 18.319503256802363 ], [ -64.95192967237432, 18.319430335519371 ], [ -64.951955823924777, 18.319349029709883 ], [ -64.95196521166082, 18.319259510940981 ], [ -64.951982982613799, 18.319178038802988 ], [ -64.952009132854585, 18.319096735612845 ], [ -64.952018520590627, 18.31900721553427 ], [ -64.952010641597894, 18.31891753043692 ], [ -64.951994380697897, 18.318835889351078 ], [ -64.951977953469452, 18.318754418522758 ], [ -64.951953141714455, 18.318672609798853 ], [ -64.95193671448601, 18.318590971332355 ], [ -64.951911736402565, 18.318509331556243 ], [ -64.951895475502624, 18.318427690470457 ], [ -64.951870497419179, 18.318346050694345 ], [ -64.951816181350807, 18.318237085900705 ], [ -64.951816851903402, 18.318148909546665 ], [ -64.951817691403789, 18.318060730573222 ], [ -64.951818360646712, 18.317972554219182 ], [ -64.951834621546652, 18.317884542883917 ], [ -64.951850714808472, 18.317796532858267 ], [ -64.951866809379965, 18.317708522832675 ], [ -64.951882902641842, 18.317620512807082 ], [ -64.951883739522884, 18.317532336453041 ], [ -64.95191525549393, 18.317444492755897 ], [ -64.951962026536137, 18.317371402525112 ], [ -64.952008797578287, 18.317298313603999 ], [ -64.952055568620437, 18.317225223373214 ], [ -64.952132849804855, 18.317181637455747 ], [ -64.95219487591811, 18.317123465710154 ], [ -64.952272157102527, 18.317079881102359 ], [ -64.95234943959656, 18.317036461513396 ], [ -64.9524114644002, 18.316978123439299 ], [ -64.952504000655665, 18.316949458626311 ], [ -64.95256602676892, 18.316891120552214 ], [ -64.952643307953338, 18.316847702272923 ], [ -64.952705334066593, 18.316789364198826 ], [ -64.952767360179905, 18.316731192453176 ], [ -64.952803570019, 18.316696995581481 ], [ -64.952829387602833, 18.316672854379078 ], [ -64.952891412406473, 18.316614517614596 ], [ -64.952938183448623, 18.31652667522718 ], [ -64.952939021639338, 18.316438665201588 ], [ -64.952955114901158, 18.316350487537818 ], [ -64.952971208162978, 18.316262477512225 ], [ -64.952987301424798, 18.316174467486633 ], [ -64.953003563634468, 18.31608645746104 ], [ -64.953004232877333, 18.315998278487598 ], [ -64.953005071068048, 18.315910268462005 ], [ -64.952990318911418, 18.315821924469788 ], [ -64.952960311683626, 18.315733579167897 ], [ -64.952945727165115, 18.315645233866007 ], [ -64.952931142646548, 18.315557056202294 ], [ -64.95288554507141, 18.315483126471065 ], [ -64.9528709605529, 18.315394950117025 ], [ -64.952825362977705, 18.315321189333645 ], [ -64.952779933040688, 18.315247260912145 ], [ -64.952734335465493, 18.315173500128822 ], [ -64.952687732061463, 18.315116838436154 ], [ -64.95267348281925, 18.315099570397649 ], [ -64.952627886553728, 18.315025810923942 ], [ -64.95259787801632, 18.314937297983874 ], [ -64.952552448079302, 18.314863537200551 ], [ -64.952522274523005, 18.314775191898661 ], [ -64.952507688694823, 18.314686846596771 ], [ -64.952462258757805, 18.314613085813392 ], [ -64.952416662492283, 18.314539325030069 ], [ -64.952371232555265, 18.314450812090001 ], [ -64.952341224017857, 18.314362299149991 ], [ -64.952311216790065, 18.314273953848101 ], [ -64.95231205498078, 18.314185776184331 ], [ -64.9523122226189, 18.314156439509134 ], [ -64.952315910658115, 18.313951920973466 ], [ -64.95231691648695, 18.313903976464303 ], [ -64.9523170854348, 18.313877321999371 ], [ -64.952317587039545, 18.313814625333521 ], [ -64.952318426539932, 18.313725274202795 ], [ -64.952300487948833, 18.313635923072013 ], [ -64.952291938403505, 18.313546571941288 ], [ -64.9522926089561, 18.313457220810506 ], [ -64.952302834882857, 18.3133680373179 ], [ -64.952303505435452, 18.313278686187175 ], [ -64.952304343626167, 18.31318950269457 ], [ -64.952323789650848, 18.313100319201965 ], [ -64.952324461513115, 18.31301113570936 ], [ -64.952306522922015, 18.312921616940457 ], [ -64.952279197904545, 18.31284098299318 ], [ -64.952289257502855, 18.312751799500575 ], [ -64.95234591788585, 18.312680888565637 ], [ -64.952402579578518, 18.31260980999258 ], [ -64.952450022482992, 18.312538731419522 ], [ -64.952506682865987, 18.312467820484642 ], [ -64.95258195239262, 18.312414846831132 ], [ -64.952629226349245, 18.312343768258074 ], [ -64.95267666794399, 18.312272689685017 ], [ -64.952724109538735, 18.312192726290334 ], [ -64.952743555563416, 18.312103542797729 ], [ -64.952753613852053, 18.312014360614796 ], [ -64.952763839778868, 18.311916123352717 ], [ -64.952755122595363, 18.311826772221991 ], [ -64.9527745686201, 18.311737756367506 ], [ -64.952850005784853, 18.311666845432626 ], [ -64.952925276621215, 18.311613871779116 ], [ -64.952981937004211, 18.311542793206058 ], [ -64.95295461198674, 18.311462326896901 ], [ -64.952936674705313, 18.311372808128056 ], [ -64.952928125159985, 18.311283456997273 ], [ -64.952947571184666, 18.311194273504668 ], [ -64.953022673073178, 18.311150353620633 ], [ -64.953116215157536, 18.311142138041873 ], [ -64.953200704782148, 18.311107101669791 ], [ -64.953275806670661, 18.31105396037816 ], [ -64.953276644861376, 18.310964776885555 ], [ -64.953230544371763, 18.310893027759903 ], [ -64.95327781963806, 18.310821950496518 ], [ -64.95325049462059, 18.31074131654924 ], [ -64.953185617349163, 18.310678284607093 ], [ -64.95314890459565, 18.3105976493502 ], [ -64.953131134952343, 18.310481477426038 ], [ -64.953159801075003, 18.310401346393235 ], [ -64.953216630405791, 18.310330266510505 ], [ -64.953226688694429, 18.3102410830179 ], [ -64.953180588204873, 18.310169333892247 ], [ -64.953153263187346, 18.31008869994497 ], [ -64.953172709212083, 18.309999685400214 ], [ -64.953201376644358, 18.309919554367355 ], [ -64.953285864959298, 18.309884350357152 ], [ -64.953351746749888, 18.309822490572344 ], [ -64.953352584940603, 18.309733139441562 ], [ -64.953297096714948, 18.309661222677789 ], [ -64.953297431991189, 18.309607747419534 ], [ -64.953297767267486, 18.309571033356292 ], [ -64.953279829986116, 18.309481683535239 ], [ -64.953261892704688, 18.309392163456664 ], [ -64.953271950993326, 18.309302981273731 ], [ -64.953319392588071, 18.309231901391001 ], [ -64.953329450876709, 18.309142719208069 ], [ -64.953358116999368, 18.309062588175266 ], [ -64.953321404245798, 18.308981954227988 ], [ -64.953331630172613, 18.308892769425711 ], [ -64.953332300725151, 18.308803419604601 ], [ -64.953398350153918, 18.308741393491346 ], [ -64.953511841177374, 18.308581634340101 ], [ -64.953494406810421, 18.308438637693598 ], [ -64.953495077363016, 18.308349286562873 ], [ -64.953523743485619, 18.308269155530013 ], [ -64.953571185080364, 18.308198078266628 ], [ -64.953646454606996, 18.308145104613118 ], [ -64.953730776593432, 18.30811895306266 ], [ -64.953824318677789, 18.308110737483958 ], [ -64.953899420566302, 18.308066817599865 ], [ -64.953928254327082, 18.307986517619213 ], [ -64.953891541573569, 18.307897000159983 ], [ -64.953873604292141, 18.307807649029257 ], [ -64.953920878248766, 18.3077365704562 ], [ -64.954005367873322, 18.30771041759607 ], [ -64.954089689859757, 18.307684267355285 ], [ -64.954183231944114, 18.307676053086197 ], [ -64.954276774028472, 18.307658953995542 ], [ -64.954361263653027, 18.307632802445085 ], [ -64.954454638099264, 18.307642356509575 ], [ -64.954548012545445, 18.307643196010019 ], [ -64.95457936087837, 18.307630120234762 ], [ -64.954639375333954, 18.307616541545087 ], [ -64.95470475421007, 18.30755518598437 ], [ -64.954797458103712, 18.307546970405667 ], [ -64.954871218887092, 18.307591897428267 ], [ -64.954973142878657, 18.307601454112159 ], [ -64.955047741852695, 18.307548983373067 ], [ -64.95501136437548, 18.307469019978384 ], [ -64.954974986898208, 18.307389056583702 ], [ -64.954947829518915, 18.307309093189019 ], [ -64.95501320839503, 18.307247569990125 ], [ -64.95509652455263, 18.307274895007652 ], [ -64.955189228446272, 18.307257795916939 ], [ -64.9552361671266, 18.307187387896477 ], [ -64.955237005317315, 18.307098874956409 ], [ -64.95532954157278, 18.307117315152254 ], [ -64.955412690092203, 18.307144472531604 ], [ -64.955505393985845, 18.307136258262517 ], [ -64.955598265517608, 18.307128211631607 ], [ -64.955672696853526, 18.307084458076019 ], [ -64.955747295827621, 18.307031987336984 ], [ -64.955821894801716, 18.306979348959771 ], [ -64.955831953090353, 18.306891002348209 ], [ -64.955786187877038, 18.306819757446647 ], [ -64.955740422663723, 18.306748511235469 ], [ -64.955704045186451, 18.306668547840786 ], [ -64.955778644160546, 18.306624961923319 ], [ -64.955871515692309, 18.306607862832664 ], [ -64.955973439683873, 18.306599816201754 ], [ -64.956066143577516, 18.306600654392469 ], [ -64.956149292096939, 18.306627810462089 ], [ -64.956242163628701, 18.306619597502731 ], [ -64.956335035160521, 18.306602666050196 ], [ -64.956436959152029, 18.306603504240911 ], [ -64.956510719935409, 18.306648263625334 ], [ -64.956584479409116, 18.306701907831439 ], [ -64.956676849336134, 18.306738116360862 ], [ -64.956769553229719, 18.306738788223129 ], [ -64.956871477221284, 18.306739626413844 ], [ -64.956964347443375, 18.306722527323132 ], [ -64.957048000186944, 18.306687826227346 ], [ -64.957131651620784, 18.306661842315009 ], [ -64.957214800140207, 18.306697884515984 ], [ -64.957335164327617, 18.306707775166444 ], [ -64.957400543203732, 18.306646251967607 ], [ -64.95748436227575, 18.306611550871821 ], [ -64.957577066169392, 18.306612221424416 ], [ -64.957660717603233, 18.306586237512079 ], [ -64.957743698484535, 18.306622278403381 ], [ -64.957817625596363, 18.306667205425924 ], [ -64.957909660247083, 18.306729903401504 ], [ -64.957974033294363, 18.306792263481384 ], [ -64.958019798507678, 18.306863511002234 ], [ -64.958046954577355, 18.306943474396917 ], [ -64.958083333364243, 18.307023436481927 ], [ -64.958110489433921, 18.307103233548162 ], [ -64.958174862481201, 18.307165762575892 ], [ -64.958220627694516, 18.307237007477397 ], [ -64.958294388477896, 18.307281768171549 ], [ -64.958368150570948, 18.307326527555972 ], [ -64.95845129909037, 18.307353852573442 ], [ -64.958534447609793, 18.307389893464745 ], [ -64.958617596129216, 18.30741705215371 ], [ -64.958691524550716, 18.30746197917631 ], [ -64.958765285334039, 18.307506738560789 ], [ -64.958838878479298, 18.307560381457165 ], [ -64.958931582372884, 18.307569938141057 ], [ -64.959023949680557, 18.307597263158527 ], [ -64.959107099509652, 18.307633305359502 ], [ -64.959190414357579, 18.307660461429123 ], [ -64.959273562877001, 18.30768778644665 ], [ -64.959356711396424, 18.30772382995724 ], [ -64.959467521519286, 18.307760038486663 ], [ -64.959550836367157, 18.307787197175685 ], [ -64.959643372622679, 18.307796752549905 ], [ -64.959717133406002, 18.307841679572505 ], [ -64.959809838609317, 18.307851233636995 ], [ -64.959920981389132, 18.307860956649392 ], [ -64.960013686592447, 18.307861628511603 ], [ -64.960096833802197, 18.307897669402905 ], [ -64.960142431377335, 18.307968915614083 ], [ -64.960141760824797, 18.30805742855415 ], [ -64.96013170253616, 18.308145941494161 ], [ -64.960084763855832, 18.30821634951468 ], [ -64.960047046583099, 18.308295811304561 ], [ -64.960027766886867, 18.308384156606451 ], [ -64.95997160941829, 18.30845456462697 ], [ -64.95992466942829, 18.308524972647433 ], [ -64.959881083510879, 18.308599067397381 ], [ -64.959864822610882, 18.308636787289458 ], [ -64.95982676875218, 18.308713230283161 ], [ -64.959799277406262, 18.308794868749601 ], [ -64.959766420330027, 18.308871311743246 ], [ -64.959717637630149, 18.308942559264153 ], [ -64.959674219350802, 18.309018834619678 ], [ -64.959641528603072, 18.309095277613324 ], [ -64.959629961571125, 18.309182280500409 ], [ -64.959693831703987, 18.309244140285216 ], [ -64.959768264349634, 18.309290574741397 ], [ -64.959848395382437, 18.309327119856789 ], [ -64.959928357467447, 18.309358300551594 ], [ -64.960008488500307, 18.309389648884519 ], [ -64.960072190994993, 18.309446479524979 ], [ -64.960119801537587, 18.309518396288752 ], [ -64.960162046349865, 18.309566842402717 ], [ -64.960178139611685, 18.309585282598562 ], [ -64.96022541356831, 18.309633059469604 ], [ -64.96023312361325, 18.309721572409615 ], [ -64.960207139700913, 18.309801703442474 ], [ -64.960147629469475, 18.309865573575337 ], [ -64.960079902349662, 18.309921229439112 ], [ -64.960003794632257, 18.309960959679245 ], [ -64.959927686914909, 18.310008568912167 ], [ -64.95984319859997, 18.310056010506912 ], [ -64.959758707665742, 18.310103619739834 ], [ -64.959690981855545, 18.310159444551459 ], [ -64.959639853531314, 18.31023136000556 ], [ -64.959588722587739, 18.310303276769332 ], [ -64.959571120582609, 18.310391454433045 ], [ -64.959511776679619, 18.310455324565908 ], [ -64.959480597294487, 18.310471585465905 ], [ -64.959435670271944, 18.310494888477592 ], [ -64.959351180647332, 18.310534449769875 ], [ -64.959266857351224, 18.31055792041974 ], [ -64.959148841407512, 18.310581220812082 ], [ -64.959056303842374, 18.31058843056195 ], [ -64.958963601258404, 18.310595806640265 ], [ -64.958845751643196, 18.31060284744234 ], [ -64.958813565119556, 18.310596978797605 ], [ -64.958615249195191, 18.310604019599623 ], [ -64.958488848724926, 18.310619107032608 ], [ -64.958396312469461, 18.310618436480013 ], [ -64.958312493397443, 18.310585579403778 ], [ -64.95822012608977, 18.310576863530002 ], [ -64.958127588524633, 18.310560098405915 ], [ -64.958035053578783, 18.31055942785332 ], [ -64.957951234506822, 18.310534617408052 ], [ -64.9578586982513, 18.310517853593637 ], [ -64.957766329633955, 18.310509136410133 ], [ -64.95767379337849, 18.31050829952909 ], [ -64.957581257122968, 18.310507627666823 ], [ -64.957480171322175, 18.31051483741669 ], [ -64.95739584933574, 18.31053830544721 ], [ -64.957303145442097, 18.310553729466108 ], [ -64.957210441548455, 18.310569150865717 ], [ -64.95712611956202, 18.310600500508315 ], [ -64.957033414358705, 18.310623968538778 ], [ -64.956948926043822, 18.31065548450988 ], [ -64.956864604057387, 18.310678953850015 ], [ -64.956771900163744, 18.31069420892112 ], [ -64.956687578177309, 18.310717679570928 ], [ -64.956594874283667, 18.310733100970538 ], [ -64.956502170390081, 18.310756571620345 ], [ -64.956417680765469, 18.310787918643598 ], [ -64.956324976871826, 18.31081138798379 ], [ -64.956240654885448, 18.310834858633598 ], [ -64.956156332899013, 18.310858326664118 ], [ -64.956080225181609, 18.310897890575745 ], [ -64.955995903195173, 18.310921358606265 ], [ -64.955894817394324, 18.310944661617953 ], [ -64.955802113500738, 18.310968129648415 ], [ -64.955717623876126, 18.310999645619461 ], [ -64.955633301889691, 18.311030993952443 ], [ -64.955548812265135, 18.311062509923488 ], [ -64.955519643228058, 18.311080950119333 ], [ -64.955472704547731, 18.31111011915641 ], [ -64.955396596830383, 18.311157896027396 ], [ -64.955320489112978, 18.311197458629408 ], [ -64.955235999488423, 18.311237022541036 ], [ -64.955160059409195, 18.311276583833376 ], [ -64.9551173116825, 18.311348500597148 ], [ -64.955049418234182, 18.311412370730011 ], [ -64.9549984562384, 18.311484287493784 ], [ -64.954955708511648, 18.311556205567229 ], [ -64.95492134269216, 18.311636336600088 ], [ -64.954912290232357, 18.311724680592306 ], [ -64.954894688227228, 18.311812858256019 ], [ -64.954910781489048, 18.311901371196086 ], [ -64.95491832520554, 18.311997930767006 ], [ -64.954917654652945, 18.312086276068896 ], [ -64.95491681646223, 18.312174621370787 ], [ -64.954899214457157, 18.312262966672677 ], [ -64.954881612452027, 18.31235114433639 ], [ -64.954880941899432, 18.312439657276457 ], [ -64.954888653254045, 18.312528002578347 ], [ -64.954896196970537, 18.312616515518357 ], [ -64.954912122594237, 18.312729168351154 ], [ -64.954945147308592, 18.312809802298375 ], [ -64.954986553930155, 18.312882389614742 ], [ -64.955011196737303, 18.31296302356202 ], [ -64.955069534811457, 18.313027731885597 ], [ -64.95514480433809, 18.313084561216442 ], [ -64.955228623410108, 18.31310937166171 ], [ -64.95532954157278, 18.313110042214305 ], [ -64.955422245466423, 18.31310266613599 ], [ -64.955514949360065, 18.313087411064885 ], [ -64.9555992713465, 18.313055895093783 ], [ -64.955691975240086, 18.313040472384557 ], [ -64.955784679133728, 18.313033263944362 ], [ -64.955877215389251, 18.3130339344969 ], [ -64.955969751644716, 18.313034605049495 ], [ -64.956062455538358, 18.31301130334748 ], [ -64.956146777524793, 18.312979787376435 ], [ -64.956231099511228, 18.312956318036242 ], [ -64.956324137371439, 18.312916755434287 ], [ -64.956425224481961, 18.312885407101362 ], [ -64.956509546468396, 18.31286193776117 ], [ -64.956602418000159, 18.312830589428245 ], [ -64.956678524407891, 18.312791026826289 ], [ -64.956754633434912, 18.312751464224277 ], [ -64.956822359245109, 18.312687594091415 ], [ -64.956881869476547, 18.312623723958552 ], [ -64.956941213379537, 18.312560021463867 ], [ -64.956983962415904, 18.312487937061917 ], [ -64.957009946328242, 18.312407806029114 ], [ -64.957044144509609, 18.312327674996254 ], [ -64.957070128421947, 18.312247543963394 ], [ -64.957154450408382, 18.312224074623259 ], [ -64.957246819025727, 18.312240838437674 ], [ -64.957313202421062, 18.312297164854044 ], [ -64.957313706645152, 18.312297667768462 ], [ -64.957355113266715, 18.312370255084829 ], [ -64.957388137981127, 18.312450889032107 ], [ -64.957412613150098, 18.312539401972117 ], [ -64.957437088319125, 18.312620035919394 ], [ -64.957470113033537, 18.312700669866672 ], [ -64.957520069200427, 18.31277342482116 ], [ -64.95756130818387, 18.312862105399347 ], [ -64.957628194493623, 18.312918767092015 ], [ -64.957703465329985, 18.31296771743007 ], [ -64.957787284401945, 18.313000406868127 ], [ -64.957862721566755, 18.313041142937095 ], [ -64.95795492254598, 18.31309009327515 ], [ -64.958038741617941, 18.313114903720475 ], [ -64.958122559380286, 18.313147593158533 ], [ -64.958206547400096, 18.313172403603858 ], [ -64.958315847469976, 18.313189335056393 ], [ -64.958398994679726, 18.313214480778015 ], [ -64.958424644625438, 18.31321699535016 ], [ -64.958453478386218, 18.313219677560483 ], [ -64.958546182279861, 18.313212301482167 ], [ -64.958638718535326, 18.313212972034705 ], [ -64.958731253481176, 18.31321381022542 ], [ -64.958832171643849, 18.313214480778015 ], [ -64.958924875537491, 18.31320727233782 ], [ -64.959017411792956, 18.313199896259505 ], [ -64.959143644625044, 18.31320090208834 ], [ -64.959236179570894, 18.313193526010025 ], [ -64.959362578731486, 18.31317843857704 ], [ -64.959455282625072, 18.313163015867815 ], [ -64.959531391652149, 18.313115406634893 ], [ -64.959615713638584, 18.313083890663847 ], [ -64.959675223870022, 18.313020188169105 ], [ -64.959717971596717, 18.312948103767212 ], [ -64.959760551685292, 18.31287618700344 ], [ -64.959811682628924, 18.312804270239667 ], [ -64.959896004615359, 18.312780800899475 ], [ -64.959954341379785, 18.312853555853962 ], [ -64.960012679453882, 18.31291826417754 ], [ -64.960087782652067, 18.312975093508385 ], [ -64.960163218507205, 18.313015829577353 ], [ -64.960238655672015, 18.313056565646377 ], [ -64.960331025599032, 18.313075005842222 ], [ -64.96033940750624, 18.313075005842222 ], [ -64.96040646145417, 18.31311574191119 ], [ -64.960481730980803, 18.313164524611125 ], [ -64.960548618600285, 18.313221353941913 ], [ -64.960632437672245, 18.31325404337997 ], [ -64.960707708508608, 18.313294779448995 ], [ -64.96080007581628, 18.31331958989432 ], [ -64.960892612071746, 18.313336521346855 ], [ -64.960985149636883, 18.31333719189945 ], [ -64.96102655494883, 18.31340977921576 ], [ -64.961025716758058, 18.31349812451765 ], [ -64.961016665607985, 18.313586469819541 ], [ -64.96096553466441, 18.313658386583313 ], [ -64.960914405030451, 18.313730470985263 ], [ -64.960871824941876, 18.313802387749035 ], [ -64.960829078524853, 18.313874304512808 ], [ -64.960786498436278, 18.313946388914701 ], [ -64.960718436040111, 18.314026184671263 ], [ -64.960642329632435, 18.314073793904186 ], [ -64.960582816781653, 18.314145710667958 ], [ -64.9605400690549, 18.314217795069851 ], [ -64.96048072646164, 18.314289544195503 ], [ -64.960454742549302, 18.314369675228306 ], [ -64.960428758636965, 18.314449973899286 ], [ -64.960444850589113, 18.314538486839353 ], [ -64.960469493396317, 18.314618953148454 ], [ -64.960493968565288, 18.314699587095731 ], [ -64.960476535508008, 18.314787764759444 ], [ -64.960458933502878, 18.314876110061334 ], [ -64.96041618446651, 18.314948026825107 ], [ -64.960331862480075, 18.314971496165299 ], [ -64.96025575476267, 18.315019105398164 ], [ -64.96018802895253, 18.315074928900117 ], [ -64.960120135504212, 18.315130583454277 ], [ -64.960077555415637, 18.315202669165842 ], [ -64.960026425781678, 18.315282632560525 ], [ -64.959950319374002, 18.315322195162537 ], [ -64.959857781808807, 18.315313477979032 ], [ -64.959791061827502, 18.315256648648244 ], [ -64.959741274608405, 18.31516780043188 ], [ -64.959691318441514, 18.315095213115569 ], [ -64.959632980367417, 18.315030504791991 ], [ -64.959574642293319, 18.314965628830237 ], [ -64.959499371456957, 18.314924892761269 ], [ -64.959432483837531, 18.314868231068601 ], [ -64.959340116529859, 18.314851299616009 ], [ -64.959247580274337, 18.314850629063471 ], [ -64.959146494473543, 18.314849958510877 ], [ -64.959053958218021, 18.314849120320162 ], [ -64.958961254324379, 18.314864543029387 ], [ -64.958868716759241, 18.314879964428997 ], [ -64.958784394772806, 18.314903435078804 ], [ -64.958708288365074, 18.314942996371144 ], [ -64.958640393607084, 18.314998653544592 ], [ -64.958564287199408, 18.315054309408424 ], [ -64.958496561389211, 18.315110132910377 ], [ -64.958428666631221, 18.31516578746448 ], [ -64.958386086542646, 18.315237873176102 ], [ -64.958326576311208, 18.315301574361115 ], [ -64.95825063623198, 18.31534130591092 ], [ -64.958191123381198, 18.315413055036572 ], [ -64.958114849335345, 18.315460664269494 ], [ -64.958038741617941, 18.315508441140537 ], [ -64.957996161529366, 18.315580357904309 ], [ -64.957936649988255, 18.315644228037172 ], [ -64.957894068590008, 18.315716143491272 ], [ -64.957826176451363, 18.315771968302897 ], [ -64.957750236372135, 18.315811530904853 ], [ -64.957665745437907, 18.315843045566282 ], [ -64.957589639030175, 18.31589065610882 ], [ -64.957496935136533, 18.31590607750843 ], [ -64.957404397571395, 18.315913287258297 ], [ -64.957311862625602, 18.31591261539603 ], [ -64.95721932637008, 18.315903899522198 ], [ -64.957135507298119, 18.315871042445963 ], [ -64.957042971042597, 18.315862325262515 ], [ -64.956956468450642, 18.315844555619208 ], [ -64.956858066169787, 18.315865678025375 ], [ -64.956856891393102, 18.315866013301672 ], [ -64.956856557426477, 18.315866851492387 ], [ -64.956785478853419, 18.315914963639727 ], [ -64.956710712241204, 18.31595955538603 ], [ -64.956629406431659, 18.315991238995252 ], [ -64.956554641129117, 18.316035829431883 ], [ -64.956480042155079, 18.316080422487858 ], [ -64.956405275542807, 18.31613138448364 ], [ -64.956337214456369, 18.316182514117543 ], [ -64.956275858895651, 18.316246550578853 ], [ -64.956214503334934, 18.316310588349893 ], [ -64.956153147774273, 18.316374627430548 ], [ -64.956098665377453, 18.316438831530036 ], [ -64.956050720868291, 18.316515946385948 ], [ -64.955995903195173, 18.316599262543491 ], [ -64.955968242901406, 18.316683081615508 ], [ -64.955933709443741, 18.316766565411228 ], [ -64.955912754675751, 18.316850384483246 ], [ -64.955905210959259, 18.316934203555206 ], [ -64.955890961717046, 18.317024391567031 ], [ -64.955870006949056, 18.317114582198201 ], [ -64.955842179017111, 18.317198233632041 ], [ -64.955874197902631, 18.317411469351214 ], [ -64.955920801306661, 18.317482883200569 ], [ -64.955960699184914, 18.317567037548827 ], [ -64.956020881278619, 18.317632079839029 ], [ -64.956088104174398, 18.317684216611497 ], [ -64.956148286268103, 18.317749260211372 ], [ -64.956201762836031, 18.317820506422549 ], [ -64.956234955188506, 18.317898290521384 ], [ -64.956254568851364, 18.317982277231522 ], [ -64.956287593565719, 18.318060061330357 ], [ -64.956320785918251, 18.318137676481342 ], [ -64.956367389322281, 18.318209091640369 ], [ -64.956434612218004, 18.318261225793435 ], [ -64.956515246165281, 18.318300620757327 ], [ -64.956577942831132, 18.31833934647824 ], [ -64.956589174586782, 18.318346219642137 ], [ -64.956663103008282, 18.31839198354578 ], [ -64.956726805503024, 18.318431378509615 ], [ -64.956802075029657, 18.318480162519222 ], [ -64.956885894101674, 18.318521064916638 ], [ -64.956969713173692, 18.318553921992873 ], [ -64.957053699883829, 18.318578564800077 ], [ -64.957162999953709, 18.318587449621702 ], [ -64.95725570253768, 18.318572194550597 ], [ -64.957348406431322, 18.318556771841315 ], [ -64.95744094399646, 18.318549395763 ], [ -64.957533480251925, 18.318550233953715 ], [ -64.957626184145568, 18.318534812554162 ], [ -64.95771888803921, 18.31852743647579 ], [ -64.957811424294675, 18.318520226725923 ], [ -64.957904128188318, 18.318496757385788 ], [ -64.957988616503258, 18.318465241414685 ], [ -64.958072938489693, 18.318441773384222 ], [ -64.95815742942392, 18.318410257413177 ], [ -64.958249964369713, 18.318395002342072 ], [ -64.958334455303998, 18.31836348637097 ], [ -64.958418777290433, 18.318340015721162 ], [ -64.958511313545898, 18.31834873290461 ], [ -64.958586581762859, 18.318397515604545 ], [ -64.958585912519993, 18.318485860906435 ], [ -64.958543163483569, 18.318557946618 ], [ -64.958467057075893, 18.31859750791034 ], [ -64.958382735089458, 18.318620978560148 ], [ -64.958290031195816, 18.318636399959757 ], [ -64.958214091116588, 18.318675962561713 ], [ -64.958154579575478, 18.318739832694575 ], [ -64.958145359477555, 18.318828010358345 ], [ -64.958127925110546, 18.318916355660235 ], [ -64.958127085610158, 18.319004700962125 ], [ -64.958092721100343, 18.319084831994928 ], [ -64.958083668640541, 18.319173178606491 ], [ -64.958099760592688, 18.319261691546501 ], [ -64.958073776680408, 18.319349867900598 ], [ -64.95806439025398, 18.319454306464309 ], [ -64.9580384063417, 18.319542484128078 ], [ -64.95802080433657, 18.319630661791791 ], [ -64.95800320233144, 18.319719007093681 ], [ -64.95797738605728, 18.319799138126541 ], [ -64.957951402144943, 18.319879269159344 ], [ -64.957908822056368, 18.319951353561294 ], [ -64.957856182369483, 18.320199960928846 ], [ -64.957812093537598, 18.320265507443139 ], [ -64.957757780088627, 18.320331892148147 ], [ -64.957636242434205, 18.320369610730552 ], [ -64.957588130286865, 18.32033323325328 ], [ -64.95754555019829, 18.320276237593987 ], [ -64.95750850216848, 18.320201469672099 ], [ -64.957422336162495, 18.320193087764892 ], [ -64.957336336484957, 18.320179509075274 ], [ -64.95725570253768, 18.320147993104172 ], [ -64.957207926976309, 18.320078255636304 ], [ -64.957151934526507, 18.320013548622342 ], [ -64.957082366006432, 18.319961579488051 ], [ -64.957001898387659, 18.319927548944804 ], [ -64.956915901329467, 18.319906258900517 ], [ -64.956827053113159, 18.319905588347979 ], [ -64.956735521376856, 18.319907432367529 ], [ -64.956646674470164, 18.319911958597402 ], [ -64.956557658615736, 18.319931739898436 ], [ -64.956481886174629, 18.319974990539549 ], [ -64.956408795943844, 18.320020588114744 ], [ -64.956354313547081, 18.320087140457929 ], [ -64.956313577478056, 18.320140784663977 ], [ -64.956262783120451, 18.320201972586574 ], [ -64.956209306552466, 18.320257628450349 ], [ -64.956155829984539, 18.320324683707952 ], [ -64.956131522453688, 18.320408838056267 ], [ -64.956089780555828, 18.320481593010754 ], [ -64.956053905993031, 18.320559880024007 ], [ -64.955994394451864, 18.320626935281609 ], [ -64.955940917883936, 18.320693990539212 ], [ -64.955869839310878, 18.320743946706102 ], [ -64.955810495407889, 18.32080530226682 ], [ -64.955762886175023, 18.32087788958313 ], [ -64.955721144277163, 18.320950644537675 ], [ -64.955644198369043, 18.3209950686458 ], [ -64.955608323806246, 18.321073355659053 ], [ -64.95554311256825, 18.321129179161005 ], [ -64.955477901330198, 18.321179135327952 ], [ -64.955472033995193, 18.321179135327952 ], [ -64.955424424762271, 18.32125189028244 ], [ -64.955394249896358, 18.321330177295692 ], [ -64.955352507998498, 18.32140293225018 ], [ -64.955264162696608, 18.321413493453235 ], [ -64.95521068612868, 18.321480548710838 ], [ -64.955139607555623, 18.321530504877728 ], [ -64.955074396317627, 18.321586328379681 ], [ -64.954997618047685, 18.321630584849743 ], [ -64.954926539474627, 18.321686240713518 ], [ -64.954849761204628, 18.321724965124815 ], [ -64.954772815296565, 18.321774921291706 ], [ -64.954684134718377, 18.321819177761711 ], [ -64.954607356448435, 18.321857902173008 ], [ -64.954530578178492, 18.321902326281133 ], [ -64.954453632270372, 18.32195228244808 ], [ -64.954365286968482, 18.321962843651136 ], [ -64.954282641363477, 18.321995868365491 ], [ -64.954217430125482, 18.322051691867443 ], [ -64.954134616882357, 18.322112879789984 ], [ -64.954046103942289, 18.322134672748746 ], [ -64.953980892704294, 18.322190328612521 ], [ -64.953898247099289, 18.322229053023818 ], [ -64.953804202100514, 18.322222682774338 ], [ -64.953716024436801, 18.322205080769209 ], [ -64.953627846773031, 18.322204410216614 ], [ -64.953539501471141, 18.322214971419726 ], [ -64.953450988531131, 18.322236764378431 ], [ -64.953362643229241, 18.322264257034021 ], [ -64.953274131598846, 18.322286049992783 ], [ -64.953185952625461, 18.322279679743303 ], [ -64.953109844908056, 18.322234082168109 ], [ -64.953063409142203, 18.322160656661026 ], [ -64.952981266451616, 18.322131990538423 ], [ -64.95288705381472, 18.322153783497129 ], [ -64.952821674938548, 18.322214971419726 ], [ -64.952744896668605, 18.322253863469086 ], [ -64.952668118398663, 18.322292587880384 ], [ -64.95263207750736, 18.322370874893636 ], [ -64.9525903356095, 18.322443629848124 ], [ -64.952572564656577, 18.322468775569689 ], [ -64.95251925572677, 18.322496435863457 ], [ -64.952454044488775, 18.322552091727289 ], [ -64.952377267528448, 18.322590816138529 ], [ -64.952335525630588, 18.322663571093074 ], [ -64.952282047752988, 18.322730626350619 ], [ -64.952222703850055, 18.322791981911337 ], [ -64.952157492612002, 18.322847637775169 ], [ -64.952080715651732, 18.322886362186409 ], [ -64.952032937471017, 18.322959117140897 ], [ -64.951991195573157, 18.323031872095441 ], [ -64.951949286037177, 18.323104459411752 ], [ -64.951913411474322, 18.323182914063182 ], [ -64.951883405556259, 18.323261367404882 ], [ -64.951859264353857, 18.323317359854627 ], [ -64.951853229380674, 18.323339823365927 ], [ -64.951840825467684, 18.32342397640457 ], [ -64.951822383962167, 18.3235081320625 ], [ -64.951815847384239, 18.323592286410815 ], [ -64.951809140548789, 18.32367660839725 ], [ -64.951808469996195, 18.323760761435835 ], [ -64.951784331413137, 18.323844917093822 ], [ -64.951760022572614, 18.32392907144208 ], [ -64.951771086690087, 18.324013393428515 ], [ -64.95177075141379, 18.324041556636701 ], [ -64.951752478856122, 18.32412001128813 ], [ -64.951734207608069, 18.324204165636388 ], [ -64.951657260390334, 18.324242890047685 ], [ -64.951580483430064, 18.324281614458926 ], [ -64.951509572495127, 18.324331738263993 ], [ -64.951438492612397, 18.324381694430883 ], [ -64.951350148620179, 18.324397786383031 ], [ -64.951261803318289, 18.324397117140165 ], [ -64.951173625654576, 18.324390914528806 ], [ -64.951085446681134, 18.324390243976268 ], [ -64.951026102778144, 18.324451599536928 ], [ -64.950943458482811, 18.324478924554398 ], [ -64.950860811568191, 18.324512115597258 ], [ -64.950789734304806, 18.324562073073821 ], [ -64.950707087390128, 18.324595096478561 ], [ -64.950618743397911, 18.324611357378501 ], [ -64.950536096483233, 18.324644383402529 ], [ -64.950447752491016, 18.324660644302526 ], [ -64.950370974221073, 18.324699367404094 ], [ -64.95029402831301, 18.324738093125063 ], [ -64.950217248733338, 18.324776817536303 ], [ -64.950134604438063, 18.324809842250659 ], [ -64.950051957523385, 18.324854266358841 ], [ -64.949975011615265, 18.324892989460409 ], [ -64.949886667623048, 18.324920314477879 ], [ -64.94980402070837, 18.324947808443198 ], [ -64.949719363445695, 18.324965241500479 ], [ -64.949636216235945, 18.324991897275083 ], [ -64.949575194641852, 18.325052414645029 ], [ -64.949533117467695, 18.325125169599517 ], [ -64.9495099834038, 18.325207144651984 ], [ -64.949506129036195, 18.325301523617384 ], [ -64.94954736801958, 18.325371765309342 ], [ -64.94956497002471, 18.325388695452261 ], [ -64.949611404480947, 18.325462122268959 ], [ -64.94965180658329, 18.325541078525134 ], [ -64.949651136030752, 18.325625400511569 ], [ -64.949673933508677, 18.325709891445797 ], [ -64.949661529595687, 18.325794044484439 ], [ -64.949666726378155, 18.325878366470874 ], [ -64.949683656521017, 18.325962688457309 ], [ -64.94969472063849, 18.326047179391537 ], [ -64.94969975109251, 18.326131501377972 ], [ -64.949722548570435, 18.326215823364407 ], [ -64.94975138364083, 18.326294779620582 ], [ -64.949780048453817, 18.326373738496045 ], [ -64.949803016189207, 18.32645806048248 ], [ -64.949714503249197, 18.326474321382477 ], [ -64.94966102537154, 18.32654137664008 ], [ -64.949613417448347, 18.326613962646718 ], [ -64.949559773242242, 18.32668101790432 ], [ -64.949518031344383, 18.326753772858808 ], [ -64.949458687441449, 18.326815128419526 ], [ -64.949405043235345, 18.326887715735893 ], [ -64.949345699332355, 18.326949072606283 ], [ -64.949292221454755, 18.327016126554213 ], [ -64.94922114419137, 18.327066082721103 ], [ -64.949156100591495, 18.327121738584935 ], [ -64.949079153373759, 18.327166162693061 ], [ -64.94899432847285, 18.327204048913586 ], [ -64.948966166574337, 18.327217293636636 ], [ -64.948874802476212, 18.327229866497476 ], [ -64.948855525399324, 18.327223494938323 ], [ -64.948790983404194, 18.327202541480005 ], [ -64.948735327540419, 18.327134981998256 ], [ -64.948715044634639, 18.327054349360708 ], [ -64.948638097416904, 18.32700690645629 ], [ -64.948561320456577, 18.326966170387266 ], [ -64.948484542186634, 18.326925266680121 ], [ -64.948414803409094, 18.326871119559655 ], [ -64.948323609568433, 18.326857037955506 ], [ -64.948266947875709, 18.326923591608363 ], [ -64.948196372217126, 18.326976731590321 ], [ -64.948105009428616, 18.326982598925383 ], [ -64.948027560606079, 18.327022330475188 ], [ -64.948005767647373, 18.327102627836496 ], [ -64.947983973378996, 18.327182758869299 ], [ -64.947948267763991, 18.327262889902158 ], [ -64.947891606071323, 18.327329609883463 ], [ -64.947813989610665, 18.327369172485476 ], [ -64.947750454754043, 18.327429020612556 ], [ -64.947714580191246, 18.327509151645359 ], [ -64.947692954870661, 18.327589449006666 ], [ -64.947650207143965, 18.327662706875572 ], [ -64.947621373383186, 18.327743005546552 ], [ -64.947592707260583, 18.327823136579411 ], [ -64.947525484364803, 18.327938974536892 ], [ -64.947502015024668, 18.328025475819231 ], [ -64.947486089400968, 18.328119354489502 ], [ -64.947462787698953, 18.328205854462169 ], [ -64.947347451346218, 18.328421604753487 ], [ -64.947293808449786, 18.32849352151726 ], [ -64.947240331881858, 18.328565270642912 ], [ -64.947194231392302, 18.328637187406684 ], [ -64.947140587186198, 18.328730729491042 ], [ -64.947086942980093, 18.328802478616637 ], [ -64.947025587419432, 18.32890322914119 ], [ -64.94695702341852, 18.328960561386452 ], [ -64.946888459417607, 18.329017725993538 ], [ -64.94681235170026, 18.329067682160485 ], [ -64.946736243982855, 18.329132222845885 ], [ -64.94664538410882, 18.32914596917368 ], [ -64.9465619003131, 18.329174132381922 ], [ -64.946471040439064, 18.329187878709718 ], [ -64.946380012926852, 18.329201625037513 ], [ -64.946289320690994, 18.329208162925113 ], [ -64.946198460816902, 18.32921470081277 ], [ -64.946099889588254, 18.329228279502388 ], [ -64.946009029714219, 18.329249401908555 ], [ -64.945925545918499, 18.329284773556935 ], [ -64.945888833164929, 18.329297849332193 ], [ -64.945811216704271, 18.329344117459925 ], [ -64.945733767881734, 18.329383680061881 ], [ -64.945656151421076, 18.329423410302013 ], [ -64.945578702598539, 18.329462972904025 ], [ -64.945494212973983, 18.329502535505981 ], [ -64.945416596513326, 18.329542098107993 ], [ -64.945339147690788, 18.329581660709948 ], [ -64.945254658066176, 18.329614517786183 ], [ -64.945170168441621, 18.329647374862418 ], [ -64.945085678817065, 18.329680231938653 ], [ -64.945001189192453, 18.329713089014888 ], [ -64.944916699567898, 18.329739240565345 ], [ -64.944832377581463, 18.329758686590026 ], [ -64.944747887956908, 18.329784838140483 ], [ -64.944663565970473, 18.32980428416522 ], [ -64.944572203181963, 18.329810319138403 ], [ -64.94448100803163, 18.329802943060031 ], [ -64.944397022631165, 18.329782155930161 ], [ -64.944327283853568, 18.329728008809695 ], [ -64.944250505583625, 18.329687272740671 ], [ -64.944187808917775, 18.329626420094428 ], [ -64.94416752470238, 18.32954578614715 ], [ -64.94416819656459, 18.329458781950393 ], [ -64.944217983783687, 18.329385356443368 ], [ -64.944253690708365, 18.329305225410508 ], [ -64.94427548366707, 18.329224926739528 ], [ -64.944276321857842, 18.32913121701705 ], [ -64.944291074014473, 18.329044212820293 ], [ -64.944291744567067, 18.328957040985415 ], [ -64.944292582757782, 18.328869869150537 ], [ -64.94429325462005, 18.328782698625332 ], [ -64.944293923862915, 18.328695693118902 ], [ -64.944280680449538, 18.328608353645905 ], [ -64.94426743703616, 18.328521181811027 ], [ -64.944261234424857, 18.328427304450372 ], [ -64.94426894577947, 18.328340301563344 ], [ -64.944269617641737, 18.328253128418737 ], [ -64.944249332116613, 18.328172494471517 ], [ -64.944200884693032, 18.328098398411839 ], [ -64.94413114853478, 18.328044252600989 ], [ -64.94404565177166, 18.328016758635727 ], [ -64.943996701433605, 18.328009717833652 ], [ -64.943905507592945, 18.328002341755337 ], [ -64.943814312442612, 18.328001672512414 ], [ -64.943723115982607, 18.328000833012027 ], [ -64.943631754503826, 18.328013573510987 ], [ -64.943540390405644, 18.328026314009946 ], [ -64.943449027617191, 18.328032348983129 ], [ -64.943357832466859, 18.328044921843912 ], [ -64.943259596514451, 18.328044252600989 ], [ -64.943168233725999, 18.328043580738779 ], [ -64.943077038575666, 18.328042742548064 ], [ -64.942986012373126, 18.328028660943971 ], [ -64.942894815913121, 18.328021284865599 ], [ -64.942803788400909, 18.328007204571179 ], [ -64.942719801690771, 18.327979710605916 ], [ -64.942635816290306, 18.327952217950269 ], [ -64.942551829580168, 18.327918019768902 ], [ -64.942510421648933, 18.327844091347401 ], [ -64.942440685490681, 18.327789945536551 ], [ -64.942370946713083, 18.327735798416029 ], [ -64.942315290849308, 18.327668238934336 ], [ -64.942280926339436, 18.327587604987059 ], [ -64.942260640814368, 18.327506971039838 ], [ -64.942254270564888, 18.327419800514633 ], [ -64.942262149557678, 18.327332795008203 ], [ -64.942248738506123, 18.327245455535206 ], [ -64.942199789477741, 18.327223662576444 ], [ -64.942171961545853, 18.327203378361048 ], [ -64.942087973526043, 18.327169181489353 ], [ -64.941996947323503, 18.327161805410981 ], [ -64.94190575217317, 18.327154429332666 ], [ -64.941885300319598, 18.327073795385388 ], [ -64.941914132770705, 18.326980253301031 ], [ -64.941907931469075, 18.326893081466153 ], [ -64.941915641514015, 18.326805909631275 ], [ -64.941958390550383, 18.326732650452698 ], [ -64.941980183509145, 18.326652351781718 ], [ -64.941924695283433, 18.326571382558143 ], [ -64.941904409758365, 18.326490917558715 ], [ -64.941981858580903, 18.326444649430982 ], [ -64.94206634951513, 18.326411792354747 ], [ -64.942150837830013, 18.326385639494617 ], [ -64.942235327454625, 18.326352782418383 ], [ -64.942312945224955, 18.326313053487922 ], [ -64.942390392737821, 18.32626678536019 ], [ -64.942447223378281, 18.326200231707332 ], [ -64.942497010597378, 18.326126807509922 ], [ -64.94250472326172, 18.326039803313222 ], [ -64.942519475418351, 18.325952797806792 ], [ -64.942499023564778, 18.325872165169187 ], [ -64.942464656435618, 18.325791531221967 ], [ -64.942423249814055, 18.325717435162289 ], [ -64.942360554457878, 18.325656750154167 ], [ -64.942305066232166, 18.325589190672474 ], [ -64.94224941036839, 18.325521801448247 ], [ -64.94218688134066, 18.325460947492274 ], [ -64.942124183365138, 18.325393390629927 ], [ -64.942068696449155, 18.325326000096027 ], [ -64.942027122189415, 18.325251904036406 ], [ -64.94202796038013, 18.325164898529977 ], [ -64.9419597303459, 18.324929703523651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_640", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.964133895585974, 18.33203001580307 ], [ -64.964124843126228, 18.332114002513208 ], [ -64.964128195889089, 18.332198156861523 ], [ -64.964131716290126, 18.332282143571661 ], [ -64.964126854783956, 18.332366130281798 ], [ -64.964130375184936, 18.332439052874463 ], [ -64.964134566138569, 18.332451122820828 ], [ -64.964150659400389, 18.332535277169086 ], [ -64.964137248348891, 18.332619096241103 ], [ -64.964119813981881, 18.332703082951241 ], [ -64.964123334382919, 18.332787237299556 ], [ -64.964110090969541, 18.332871056371516 ], [ -64.964088298010836, 18.332955043081654 ], [ -64.964062481736619, 18.333034837528544 ], [ -64.964024260239796, 18.333110611279324 ], [ -64.963977489197646, 18.333182191457126 ], [ -64.963914121979201, 18.333241871946086 ], [ -64.963842540491726, 18.333293335546614 ], [ -64.963838181899973, 18.333297192533564 ], [ -64.963633495726128, 18.333469189269351 ], [ -64.96340634604104, 18.333682592626644 ], [ -64.963299392905128, 18.333911251055042 ], [ -64.96329218446499, 18.334028430117712 ], [ -64.963281958538175, 18.334197912281297 ], [ -64.963325209179345, 18.334413493624822 ], [ -64.963457978589361, 18.334701329627705 ], [ -64.963606673623133, 18.334860250588235 ], [ -64.96375486574243, 18.335105168606958 ], [ -64.963797613469126, 18.335392332747631 ], [ -64.963765762221783, 18.335607244848234 ], [ -64.963642548185931, 18.335964984647546 ], [ -64.963489997474881, 18.336236224474192 ], [ -64.963083307337513, 18.336390954481089 ], [ -64.963066711161275, 18.336562949907147 ], [ -64.963095544922055, 18.336706615796572 ], [ -64.963041397801533, 18.336825303602552 ], [ -64.962978533497562, 18.336868555553338 ], [ -64.962822127109177, 18.337045077209325 ], [ -64.962602185864284, 18.337340958533503 ], [ -64.962512667095382, 18.337658632816328 ], [ -64.962430859681092, 18.337941941279723 ], [ -64.962286187962832, 18.338171437898836 ], [ -64.962137995843534, 18.338310577558389 ], [ -64.961945714892352, 18.338443011692107 ], [ -64.961804898851369, 18.338514928455879 ], [ -64.961651677587781, 18.338550300104316 ], [ -64.961447495638083, 18.338573098891857 ], [ -64.961192851987676, 18.338546779703279 ], [ -64.961014317364288, 18.338545438598089 ], [ -64.960658421584583, 18.338433121041646 ], [ -64.960442672602937, 18.338334046898524 ], [ -64.960163553783502, 18.338173617194741 ], [ -64.96002424648583, 18.338075213604213 ], [ -64.959802462531002, 18.337927524399333 ], [ -64.959586375653714, 18.337840687840753 ], [ -64.959383365861299, 18.337741613697631 ], [ -64.959294686592841, 18.337668020552428 ], [ -64.959091675490754, 18.337569114047483 ], [ -64.958964773415744, 18.337495017987806 ], [ -64.958774336484169, 18.337420586651888 ], [ -64.958494548421811, 18.337345317125198 ], [ -64.958367312380233, 18.337307933819091 ], [ -64.957998676101568, 18.337207686209013 ], [ -64.95768033126609, 18.337168626521418 ], [ -64.95733449246535, 18.337163429739007 ], [ -64.957185128188712, 18.337159071147255 ], [ -64.956377112334621, 18.337101068349398 ], [ -64.956108891304211, 18.337069720016473 ], [ -64.95574226668333, 18.337050610577762 ], [ -64.955596421498001, 18.33702361952686 ], [ -64.955495838611625, 18.336993613608797 ], [ -64.955020416835225, 18.336937621158995 ], [ -64.954859148940727, 18.336927898146655 ], [ -64.954617414737072, 18.33687727142717 ], [ -64.95445245880336, 18.336803007729372 ], [ -64.954262021871784, 18.336716338808912 ], [ -64.954124558593719, 18.336616092508507 ], [ -64.954006373702214, 18.33641626653116 ], [ -64.953951556029097, 18.336205211417564 ], [ -64.953849967313829, 18.335897761751767 ], [ -64.953756425229471, 18.335764155460708 ], [ -64.953736811566614, 18.335670444428501 ], [ -64.953724741620249, 18.335516049697901 ], [ -64.953710660016156, 18.335361488638796 ], [ -64.953657686362646, 18.335064935452408 ], [ -64.953626505667899, 18.334836278333626 ], [ -64.953609909491604, 18.334645504816081 ], [ -64.953610747682376, 18.33433269334904 ], [ -64.953631031897771, 18.334214339509742 ], [ -64.953672606157511, 18.334098501552205 ], [ -64.953682329169851, 18.333999596356932 ], [ -64.953705630871866, 18.333952488728812 ], [ -64.953719209561541, 18.333924997382837 ], [ -64.953774194872722, 18.333868669656795 ], [ -64.953836891538629, 18.33379088555796 ], [ -64.953903611519934, 18.333749143660157 ], [ -64.953963625975462, 18.333724165576655 ], [ -64.954054485849497, 18.333720646485347 ], [ -64.954116679600929, 18.333710588196709 ], [ -64.954169653254439, 18.333732044569444 ], [ -64.954200666311067, 18.333767920441915 ], [ -64.954246599162559, 18.3337960836501 ], [ -64.95428867633666, 18.333796417616725 ], [ -64.954381883144777, 18.333765404560097 ], [ -64.954521693356867, 18.333739085371519 ], [ -64.954645745583377, 18.333735732608602 ], [ -64.954776335697602, 18.333753671199702 ], [ -64.954982195338403, 18.333755347581132 ], [ -64.955137428259775, 18.333739589595609 ], [ -64.955277741386283, 18.333651747208137 ], [ -64.955340102775835, 18.333603635060797 ], [ -64.955386873818043, 18.333565916478392 ], [ -64.955480248264223, 18.333539094375396 ], [ -64.955662135650471, 18.333506740213579 ], [ -64.955839329168668, 18.333491148556504 ], [ -64.955987688926143, 18.333494502629094 ], [ -64.956122805270184, 18.333493329162081 ], [ -64.956222549965844, 18.333487797103317 ], [ -64.956302680998704, 18.333441864251824 ], [ -64.956367054045984, 18.333423256417859 ], [ -64.956478030497351, 18.333400960544736 ], [ -64.956564699417754, 18.333376150099411 ], [ -64.956635777990812, 18.333336587497399 ], [ -64.956751279362379, 18.333295179566164 ], [ -64.956829232409007, 18.333251258372457 ], [ -64.956918248263491, 18.333201303515239 ], [ -64.957033918582852, 18.333144977098812 ], [ -64.957116061273382, 18.333113964042184 ], [ -64.957247321940145, 18.333059984559839 ], [ -64.957420492142887, 18.332997789498734 ], [ -64.957662393984663, 18.332932411932234 ], [ -64.957858864579805, 18.332879103002426 ], [ -64.957918377430587, 18.332864518483916 ], [ -64.95800169358813, 18.332833002512871 ], [ -64.95799984956858, 18.332814059402551 ], [ -64.957945870086178, 18.332647259449288 ], [ -64.95792558456111, 18.332632674930778 ], [ -64.957930278429103, 18.332611217248314 ], [ -64.957958441637288, 18.332566122587593 ], [ -64.957927262252213, 18.332507281599078 ], [ -64.95784679463344, 18.332421618507453 ], [ -64.957630878013617, 18.332211903189318 ], [ -64.957556111401402, 18.332156582601783 ], [ -64.957491403077825, 18.33207477518755 ], [ -64.95745234339023, 18.3320120785217 ], [ -64.957422336162495, 18.331818959379802 ], [ -64.95739115546769, 18.331754417384673 ], [ -64.957327452972947, 18.331564987591605 ], [ -64.957317897598784, 18.331528945390687 ], [ -64.957328291163719, 18.331476139375297 ], [ -64.957332314479174, 18.331455352245428 ], [ -64.957076833947667, 18.331247313308722 ], [ -64.957056885008569, 18.331248989690209 ], [ -64.956963175286035, 18.331346555090022 ], [ -64.956816827186344, 18.331564819953485 ], [ -64.956786987596729, 18.331577728090565 ], [ -64.956755303987507, 18.331570016735952 ], [ -64.956725967312309, 18.331539506593742 ], [ -64.956728314246334, 18.331484688920625 ], [ -64.956738540173092, 18.331446970338277 ], [ -64.956723285101987, 18.331388296987825 ], [ -64.956642651154709, 18.3313214093684 ], [ -64.956599232875419, 18.331307830678725 ], [ -64.956565705246646, 18.331296263646777 ], [ -64.956475013010731, 18.331236919743844 ], [ -64.956294131453376, 18.331099456465722 ], [ -64.956127331500056, 18.330928130282587 ], [ -64.955940247331398, 18.330803742779722 ], [ -64.955846202332566, 18.330738699179847 ], [ -64.955761712708011, 18.330658735785164 ], [ -64.955635816461893, 18.330576425456456 ], [ -64.955568928842411, 18.330526804565864 ], [ -64.955397937935516, 18.330370398177479 ], [ -64.955272209327518, 18.330261601022016 ], [ -64.955222923713222, 18.330234778918964 ], [ -64.955198783820435, 18.330221367867466 ], [ -64.955186210959653, 18.330190857725256 ], [ -64.955142122127768, 18.330117264580053 ], [ -64.95509166304646, 18.330049874046153 ], [ -64.95508529279698, 18.330049706408033 ], [ -64.95501320839503, 18.329959517086536 ], [ -64.954991080160028, 18.329899167354711 ], [ -64.95498269825282, 18.329876033290816 ], [ -64.95492134269216, 18.329780311910611 ], [ -64.954897035161252, 18.329696995753011 ], [ -64.95486669265722, 18.329619379292353 ], [ -64.954854790348975, 18.32953606313481 ], [ -64.95485562853969, 18.329452914615388 ], [ -64.954862501703587, 18.329369598457788 ], [ -64.954882115366445, 18.329268680295115 ], [ -64.954913798975667, 18.329191734386995 ], [ -64.954933245000348, 18.329108585867573 ], [ -64.95496492860957, 18.329031473631005 ], [ -64.955002982468272, 18.32895452641327 ], [ -64.955053441549637, 18.328883615478333 ], [ -64.955085125158803, 18.328806501932092 ], [ -64.955129381628865, 18.32872955602403 ], [ -64.955142625042242, 18.328646407504607 ], [ -64.955137092983477, 18.328563091347007 ], [ -64.955187384426665, 18.328492180412127 ], [ -64.955268688926481, 18.328457144039987 ], [ -64.955355860761415, 18.3284517796194 ], [ -64.955443200234413, 18.328434680528744 ], [ -64.955524504734228, 18.328393609183422 ], [ -64.955537580509485, 18.328310460663999 ], [ -64.955563229145525, 18.328221444809571 ], [ -64.955576975473321, 18.328072917413976 ], [ -64.95560262410936, 18.327989936532674 ], [ -64.955634307718583, 18.327912822986434 ], [ -64.955715612218398, 18.327883821587534 ], [ -64.95579691671827, 18.327842751551941 ], [ -64.955872018606783, 18.327795811561941 ], [ -64.955953323106598, 18.327754741526348 ], [ -64.956040327303356, 18.327755410769214 ], [ -64.956103191607326, 18.327696403452194 ], [ -64.956190531080381, 18.327667400743621 ], [ -64.956277870553379, 18.327662203961154 ], [ -64.956365042388256, 18.327644938541994 ], [ -64.956415501469621, 18.327574027607113 ], [ -64.956428074330404, 18.327562291627316 ], [ -64.956469816228264, 18.327487023410356 ], [ -64.956538715505474, 18.327434048447174 ], [ -64.956613817393986, 18.327387109766846 ], [ -64.956688919282499, 18.327340003448398 ], [ -64.956751615948349, 18.327280994821706 ], [ -64.956838955421347, 18.327275799348911 ], [ -64.956926127256224, 18.327276468591833 ], [ -64.957013299091102, 18.327271271809366 ], [ -64.95710047092598, 18.327271942361961 ], [ -64.957187641451185, 18.327260710606311 ], [ -64.957274814595735, 18.327261382468521 ], [ -64.957361986430612, 18.327262051711443 ], [ -64.957455193238673, 18.327280491907288 ], [ -64.957548566375237, 18.327293232406248 ], [ -64.957635570571995, 18.327299771603521 ], [ -64.957716204519215, 18.327342016415798 ], [ -64.957803210025645, 18.327354587966909 ], [ -64.957890214222402, 18.327373029472426 ], [ -64.957971014498128, 18.327403370666843 ], [ -64.95805785236638, 18.327427845835871 ], [ -64.958132282392626, 18.327475957983154 ], [ -64.958200177150616, 18.327530106413349 ], [ -64.958255665376328, 18.327595820565818 ], [ -64.958304949680951, 18.327667568381798 ], [ -64.958372844438941, 18.327727582837326 ], [ -64.958434701604403, 18.327787598602526 ], [ -64.9584464375842, 18.327870913450454 ], [ -64.95847057747693, 18.327954398555846 ], [ -64.958532434642393, 18.328014244063581 ], [ -64.958619440148766, 18.328026816924364 ], [ -64.958712814595003, 18.328027487476959 ], [ -64.958799986429881, 18.328028158029497 ], [ -64.958881123291576, 18.327999156630597 ], [ -64.959012216320161, 18.327970322869817 ], [ -64.959099386845367, 18.327965126087349 ], [ -64.959186558680244, 18.327953895641372 ], [ -64.959279934436154, 18.327960599857477 ], [ -64.959360568383431, 18.327990942361566 ], [ -64.959428629469869, 18.328044921843912 ], [ -64.959447237303834, 18.328062859125339 ], [ -64.959471543525069, 18.328122539614242 ], [ -64.959514292561437, 18.328235861689905 ], [ -64.959550836367157, 18.328313478150619 ], [ -64.959593919370207, 18.328391094611277 ], [ -64.959636834735022, 18.328468711071935 ], [ -64.959685952711254, 18.328540460197587 ], [ -64.959760048770875, 18.328624280579277 ], [ -64.95980916674705, 18.3286960283952 ], [ -64.959870857584065, 18.328755875212607 ], [ -64.959895669339062, 18.328779847467217 ], [ -64.959932717368872, 18.328821757003197 ], [ -64.959988205594527, 18.328887638793788 ], [ -64.960018546788945, 18.328965087616325 ], [ -64.960055259542457, 18.329042704076983 ], [ -64.960085769684667, 18.329120320537697 ], [ -64.960103706966095, 18.32920363669524 ], [ -64.960128014496945, 18.32928712049096 ], [ -64.960158357001035, 18.329364569313498 ], [ -64.960195069754548, 18.329442185774155 ], [ -64.960231782508117, 18.329519802234813 ], [ -64.960238824619807, 18.32956975840176 ], [ -64.960243518487857, 18.329603118392413 ], [ -64.96025541948643, 18.329686434549956 ], [ -64.96027972701728, 18.32974007875606 ], [ -64.960279056464685, 18.329823394913603 ], [ -64.960228765021498, 18.329894305848541 ], [ -64.96021552160812, 18.329977454367963 ], [ -64.960208648444222, 18.330060770525506 ], [ -64.960176798506552, 18.330137716433626 ], [ -64.96013874464785, 18.330214829979866 ], [ -64.960094654506292, 18.330291775887929 ], [ -64.960081412402587, 18.330374924407352 ], [ -64.96009314576304, 18.330458240564951 ], [ -64.960123655905193, 18.330535689387489 ], [ -64.960135390575317, 18.330625040518214 ], [ -64.960165900717527, 18.330702489340752 ], [ -64.960196244531232, 18.330780105801409 ], [ -64.960239327534225, 18.330857722262067 ], [ -64.96025726350598, 18.330941038419667 ], [ -64.960256592953385, 18.33102435457721 ], [ -64.96026832762351, 18.331107670734809 ], [ -64.960267658380587, 18.331190986892352 ], [ -64.960273021491503, 18.33128603772002 ], [ -64.960278553550268, 18.331369353877562 ], [ -64.960252904914228, 18.331452502396985 ], [ -64.96024603175033, 18.331535650916408 ], [ -64.960214180502987, 18.331612596824527 ], [ -64.960169925342655, 18.331689710370767 ], [ -64.960094823454142, 18.331736649051095 ], [ -64.96002592286726, 18.331789621394933 ], [ -64.959969262484265, 18.331860533639485 ], [ -64.95992517365238, 18.331901940261048 ], [ -64.959923495961277, 18.331903616642535 ], [ -64.959906564508742, 18.331919542266178 ], [ -64.959837497593412, 18.331984418227933 ], [ -64.959768599625875, 18.332037391881443 ], [ -64.959687293816387, 18.332084330561713 ], [ -64.959618226901057, 18.332137304215223 ], [ -64.959555531544879, 18.332196312841916 ], [ -64.959517476376504, 18.332273257440363 ], [ -64.959485792767282, 18.332350372296276 ], [ -64.959460145440914, 18.332433353177521 ], [ -64.959453272277017, 18.332516500387271 ], [ -64.959496187641889, 18.332594118157658 ], [ -64.959564247418712, 18.332648265278181 ], [ -64.959638512426181, 18.332696377425464 ], [ -64.959706573512619, 18.332750356907866 ], [ -64.959780835900744, 18.332798469055206 ], [ -64.959861469848022, 18.332840712557811 ], [ -64.959948475354395, 18.332853285418594 ], [ -64.960035813517777, 18.332836187637554 ], [ -64.96011091540629, 18.332789248957283 ], [ -64.960192053577657, 18.332760079920206 ], [ -64.960279391740983, 18.332748848164556 ], [ -64.96036673252371, 18.332725714100661 ], [ -64.960454070687035, 18.332702580036823 ], [ -64.960541411469762, 18.332679445972929 ], [ -64.960628749633088, 18.332668381855456 ], [ -64.960715921467965, 18.332663017434811 ], [ -64.960803094612515, 18.332669722960588 ], [ -64.960890266447393, 18.332670393513183 ], [ -64.960977436972598, 18.332665029092539 ], [ -64.961064608807476, 18.332665699645133 ], [ -64.961145745669171, 18.332636530608056 ], [ -64.961227050169043, 18.332595626900968 ], [ -64.961248675489628, 18.332557908318563 ], [ -64.961251190061773, 18.332553548417138 ], [ -64.961271306639048, 18.332518680992848 ], [ -64.961296787636911, 18.332435532473426 ], [ -64.961316233661648, 18.332352551592123 ], [ -64.961292093768918, 18.332269067796403 ], [ -64.961317574766781, 18.332186086915158 ], [ -64.961392676655294, 18.33213898059671 ], [ -64.961412122680031, 18.332055998405735 ], [ -64.961388150425421, 18.33193680899501 ], [ -64.961364010532691, 18.33185332519929 ], [ -64.961364681085229, 18.331770175370195 ], [ -64.961371721887303, 18.331687028160445 ], [ -64.961372392439898, 18.331603712002902 ], [ -64.961373062992436, 18.33152056348348 ], [ -64.961367530933728, 18.33143724732588 ], [ -64.961368201486266, 18.331353931168337 ], [ -64.961362669427501, 18.331270615010737 ], [ -64.961350934757434, 18.331187298853195 ], [ -64.961351606619701, 18.331104150333772 ], [ -64.961358646112046, 18.331020834176229 ], [ -64.961371721887303, 18.330937685656806 ], [ -64.961372392439898, 18.330854537137384 ], [ -64.961379434551588, 18.330771388617904 ], [ -64.961380103794511, 18.330688072460362 ], [ -64.961393179569711, 18.330604923940939 ], [ -64.961400052733609, 18.330521775421516 ], [ -64.961407093535684, 18.330438626902094 ], [ -64.961438777144906, 18.330361513355854 ], [ -64.961470628392249, 18.330284399809614 ], [ -64.961496277028289, 18.330201418928311 ], [ -64.961521758026151, 18.330118270408889 ], [ -64.961535001439529, 18.330035289527643 ], [ -64.961541874603483, 18.329951973370044 ], [ -64.961548915405501, 18.329868824850621 ], [ -64.961555788569399, 18.329785676331198 ], [ -64.961581437205439, 18.329702527811776 ], [ -64.961594512980696, 18.329619379292353 ], [ -64.961620161616736, 18.329536398411108 ], [ -64.961633237391936, 18.329453249891685 ], [ -64.961640110555834, 18.329370101372263 ], [ -64.961653353969211, 18.32928695285284 ], [ -64.961660227133109, 18.32920363669524 ], [ -64.961679673157846, 18.329120655813938 ], [ -64.961692748933046, 18.329037507294515 ], [ -64.961705992346424, 18.328954358775093 ], [ -64.961725942595251, 18.32892083114632 ], [ -64.961741700580774, 18.328834665140278 ], [ -64.961765000973116, 18.328748666772412 ], [ -64.961773215242204, 18.328662500766427 ], [ -64.961796516944219, 18.328576502398562 ], [ -64.961812274929741, 18.328490504030697 ], [ -64.961843120348249, 18.32841171410297 ], [ -64.961888717923387, 18.328340132615494 ], [ -64.961919564651566, 18.328261342687824 ], [ -64.961957784838717, 18.328182720398274 ], [ -64.961988630257224, 18.328103930470604 ], [ -64.962011765630791, 18.328017764464562 ], [ -64.962065073250869, 18.327946350615264 ], [ -64.962125758258992, 18.327882146515776 ], [ -64.962156603677499, 18.327803356588106 ], [ -64.962157274230094, 18.327717190582064 ], [ -64.962157944782632, 18.327631024576078 ], [ -64.962158782973404, 18.327544858570036 ], [ -64.962136822376522, 18.327458523616201 ], [ -64.962092398268339, 18.327386271576131 ], [ -64.962025175372617, 18.327328268778331 ], [ -64.961980583626314, 18.327256184376381 ], [ -64.961928615801639, 18.327183933645983 ], [ -64.961884024055337, 18.327111681605913 ], [ -64.961794672924611, 18.327017636607138 ], [ -64.961773047604026, 18.326897438748233 ], [ -64.961754775046359, 18.326855696850373 ], [ -64.961743040376234, 18.32677238069283 ], [ -64.961750081178309, 18.326677329865163 ], [ -64.961750751730904, 18.32659401370762 ], [ -64.961757624894801, 18.32651086649787 ], [ -64.961777070919482, 18.326427716668775 ], [ -64.961808922166824, 18.326344735787472 ], [ -64.961828200553384, 18.326261756215843 ], [ -64.961797690411231, 18.326184138445512 ], [ -64.961754775046359, 18.326106523294527 ], [ -64.961792828905004, 18.326029577386407 ], [ -64.961825015428701, 18.325910889580484 ], [ -64.961794506596164, 18.32583327311977 ], [ -64.961763995144281, 18.325755824297289 ], [ -64.961764665696819, 18.325672508139689 ], [ -64.961771706498894, 18.325589359620267 ], [ -64.961778579662791, 18.325506211100844 ], [ -64.961816633521494, 18.325429097554604 ], [ -64.961854519742019, 18.325352151646541 ], [ -64.961873965766699, 18.325269003127119 ], [ -64.961912019625402, 18.325180153601082 ], [ -64.961956276095407, 18.325103209002691 ], [ -64.962000532565469, 18.325026263094571 ], [ -64.962038418785994, 18.324949149548331 ], [ -64.962082675255999, 18.324872203640268 ], [ -64.962133135647036, 18.324801291395659 ], [ -64.962195831003214, 18.324742284078638 ], [ -64.962258695307185, 18.324683275451946 ], [ -64.96233983216888, 18.324654274053046 ], [ -64.962421136668752, 18.324619236371291 ], [ -64.962452987916095, 18.324608004615641 ], [ -64.962486515544924, 18.324604316576483 ], [ -64.962574525570517, 18.324613035069603 ], [ -64.962649459820852, 18.324657625506234 ], [ -64.962728752662997, 18.324706240567991 ], [ -64.962808045505085, 18.324746810308511 ], [ -64.962891361662685, 18.324791402054814 ], [ -64.962979371688277, 18.324800119238319 ], [ -64.963063358398415, 18.324776817536303 ], [ -64.96313510752401, 18.324725352626103 ], [ -64.96321507091875, 18.324685956352596 ], [ -64.963299057628888, 18.324650586013888 ], [ -64.963383211977145, 18.324619236371291 ], [ -64.963471389640915, 18.324599790346554 ], [ -64.963550682483003, 18.324636504409796 ], [ -64.963621425779763, 18.324692998464286 ], [ -64.96367942857762, 18.324761562465198 ], [ -64.963720835199183, 18.324837836511051 ], [ -64.963766265136201, 18.324910257498914 ], [ -64.963794931258803, 18.324990556169894 ], [ -64.963861483601988, 18.325047050224441 ], [ -64.963949493627581, 18.325039674146126 ], [ -64.964033647975896, 18.325012349128656 ], [ -64.964130039908696, 18.324997094057551 ], [ -64.964218049934289, 18.324993741294634 ], [ -64.964306059959881, 18.325002458478139 ], [ -64.964398093300929, 18.325015197667426 ], [ -64.964482247649244, 18.324983850644173 ], [ -64.964570256365164, 18.324980496571584 ], [ -64.964658100062252, 18.324997094057551 ], [ -64.964741583857972, 18.325029783495609 ], [ -64.964791372386742, 18.325098178548672 ], [ -64.964815847555769, 18.325178478529324 ], [ -64.964836131771222, 18.325262631567966 ], [ -64.964847866441289, 18.325346787225897 ], [ -64.964855577795902, 18.325430941574211 ], [ -64.964875862011354, 18.325515094612797 ], [ -64.964875191458759, 18.325599082632607 ], [ -64.964891117082459, 18.325683235671249 ], [ -64.964903019390647, 18.32576739132918 ], [ -64.964902348838109, 18.325851376729702 ], [ -64.964914251146297, 18.325935532387632 ], [ -64.96492196250091, 18.326019685426274 ], [ -64.964933697171034, 18.326103839774532 ], [ -64.964933026618439, 18.32618782648467 ], [ -64.964932522394349, 18.326249518631357 ], [ -64.964940737973052, 18.326273489576295 ], [ -64.964990358863702, 18.32634205357715 ], [ -64.965040147392472, 18.326410451249615 ], [ -64.965085577329489, 18.326482703289628 ], [ -64.96514793740937, 18.326547242665413 ], [ -64.965206109155019, 18.32661178335087 ], [ -64.965238630954957, 18.326683364838345 ], [ -64.965263441400282, 18.32675628743101 ], [ -64.965262770847687, 18.32684027545082 ], [ -64.965278864109507, 18.326928451804861 ], [ -64.965299148324959, 18.327012773791296 ], [ -64.965340387308345, 18.327089050456493 ], [ -64.96537324438458, 18.327169347817801 ], [ -64.965410123466597, 18.327261716435146 ], [ -64.965409454223675, 18.327345704454956 ], [ -64.965396209500625, 18.327429689855421 ], [ -64.965357820365682, 18.327505463606201 ], [ -64.965365533029967, 18.327589449006666 ], [ -64.96539419915257, 18.327671424059076 ], [ -64.965389840560817, 18.327683326367321 ], [ -64.965384979054647, 18.327755410769214 ], [ -64.965346757557825, 18.327831015572144 ], [ -64.965316750330032, 18.327910978966884 ], [ -64.965282552148665, 18.327990607085269 ], [ -64.965244163013722, 18.328066379526376 ], [ -64.965189010064307, 18.328134106646189 ], [ -64.965142405350605, 18.328205686823992 ], [ -64.965099826571702, 18.328281460574772 ], [ -64.965049032214097, 18.32834901743712 ], [ -64.964993879264682, 18.328416744556989 ], [ -64.964926487421167, 18.328472231472972 ], [ -64.964854739605187, 18.328523696383172 ], [ -64.964795563340374, 18.32858723254941 ], [ -64.964757174205374, 18.328663003680845 ], [ -64.964710570801344, 18.328734752806497 ], [ -64.964659608805562, 18.328802310978517 ], [ -64.964604623494324, 18.328870036788658 ], [ -64.964537065322304, 18.32892552501437 ], [ -64.964453078612166, 18.328956873347295 ], [ -64.964389711393721, 18.329005656047173 ], [ -64.964385520440146, 18.329009511724507 ], [ -64.964355513212354, 18.329089307481013 ], [ -64.964337911207224, 18.329185364137572 ], [ -64.964299689710401, 18.329260968940503 ], [ -64.964282087705271, 18.32934495565064 ], [ -64.964277226199101, 18.329428942360778 ], [ -64.964263982785724, 18.329512929070916 ], [ -64.964263312233129, 18.329596915781053 ], [ -64.964237328320849, 18.329684758168526 ], [ -64.964224084907471, 18.329768744878663 ], [ -64.964223414354876, 18.329852731588801 ], [ -64.964193407127084, 18.329932527345363 ], [ -64.964117634686033, 18.329975945624653 ], [ -64.964045885560381, 18.330023554857576 ], [ -64.963986709295568, 18.330087089714141 ], [ -64.963960893021408, 18.330166885470646 ], [ -64.963914121979201, 18.330262606850908 ], [ -64.963867350937051, 18.330334355976504 ], [ -64.963828961802051, 18.330409960779491 ], [ -64.963798954574258, 18.330489924174174 ], [ -64.963768947346523, 18.330569719930679 ], [ -64.963755703933145, 18.330657562318152 ], [ -64.963734078612561, 18.330741549028289 ], [ -64.963716476607431, 18.330826206291022 ], [ -64.963712285653855, 18.330838108599266 ], [ -64.963711615101261, 18.330922262947524 ], [ -64.963723349771328, 18.331006417295839 ], [ -64.963735252079573, 18.331090404005977 ], [ -64.963751345341393, 18.331174725992412 ], [ -64.963767438603213, 18.33125888034067 ], [ -64.963795937087696, 18.331343034688985 ], [ -64.963837343709258, 18.33141947768263 ], [ -64.963878582692701, 18.331495753038155 ], [ -64.963915630722511, 18.3315721960318 ], [ -64.963969442566736, 18.331640592394592 ], [ -64.964010849188298, 18.331716867750117 ], [ -64.964047897218109, 18.331793310743763 ], [ -64.964084945247919, 18.331869586099288 ], [ -64.964126184231361, 18.331945861454813 ], [ -64.964133895585974, 18.33203001580307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_597", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.051112764555853, 18.363838174921398 ], [ -65.051139085054103, 18.363827948994583 ], [ -65.051221060106514, 18.363832810500753 ], [ -65.051257437583786, 18.363800623977113 ], [ -65.051268669339436, 18.363745471027755 ], [ -65.051226592165278, 18.36369182682165 ], [ -65.051149310980918, 18.363648576180537 ], [ -65.051070856329488, 18.36361152815067 ], [ -65.051053254324415, 18.36349552255507 ], [ -65.050990725296685, 18.36338655776143 ], [ -65.050863655583555, 18.36327390492869 ], [ -65.05077145460433, 18.363198132487582 ], [ -65.050616220373286, 18.36310844608056 ], [ -65.050433328467875, 18.36305564006517 ], [ -65.050282789414553, 18.363013395252892 ], [ -65.05019645577039, 18.363012724700354 ], [ -65.05010006383759, 18.362929743819052 ], [ -65.05004709018408, 18.362816085157419 ], [ -65.049983555327515, 18.362671413439159 ], [ -65.049887331032892, 18.362557419501229 ], [ -65.04975942312899, 18.362371173523229 ], [ -65.049716843040414, 18.362309147409974 ], [ -65.049706617113657, 18.362226669443089 ], [ -65.049729415901254, 18.362072442350609 ], [ -65.049752047050674, 18.361938668421374 ], [ -65.04984944481231, 18.361887872754096 ], [ -65.049979196735762, 18.361847639599546 ], [ -65.050108781021095, 18.361817800009874 ], [ -65.05026686379091, 18.361783601828506 ], [ -65.050390077826705, 18.361706489591938 ], [ -65.05050943618528, 18.361604396652581 ], [ -65.05061890389328, 18.361409602438926 ], [ -65.050717978036403, 18.361152948440463 ], [ -65.050805485147578, 18.36099905662428 ], [ -65.050893159896873, 18.360824711644852 ], [ -65.051056773415723, 18.360568394232359 ], [ -65.05112315943046, 18.360373263432734 ], [ -65.051156687059233, 18.360219036340254 ], [ -65.051071862158381, 18.360033125638552 ], [ -65.051019056142991, 18.359899015123347 ], [ -65.050934063604018, 18.359733556275216 ], [ -65.050892489344278, 18.359537587284876 ], [ -65.050926184611228, 18.359362908338824 ], [ -65.050970607409738, 18.359208681246344 ], [ -65.051035652319285, 18.359147493323803 ], [ -65.051165068966441, 18.359158725079453 ], [ -65.051337064392499, 18.359211363456666 ], [ -65.051541750566344, 18.359254111183361 ], [ -65.051606123613624, 18.359295685443101 ], [ -65.051648537373751, 18.359368105121291 ], [ -65.051777114520519, 18.359472039460911 ], [ -65.051906197201049, 18.359514116635069 ], [ -65.052057071530669, 18.359535743265269 ], [ -65.052207778222112, 18.359557368585854 ], [ -65.05230467306933, 18.359578658630141 ], [ -65.052401063692457, 18.359661807149564 ], [ -65.052518579341097, 18.359796420579244 ], [ -65.052614803635777, 18.359900188590359 ], [ -65.052711195568577, 18.359983169471661 ], [ -65.052915546466068, 18.360046367742257 ], [ -65.052990814683085, 18.360088109640117 ], [ -65.05308704028738, 18.36018148539597 ], [ -65.053096594351928, 18.360346272381889 ], [ -65.053095422194588, 18.360490442495404 ], [ -65.053148228209977, 18.360634946575487 ], [ -65.053277140633043, 18.36068741731458 ], [ -65.053416784516628, 18.360760507545365 ], [ -65.053566988293653, 18.360854217267843 ], [ -65.053651645556386, 18.361060747461238 ], [ -65.053693890368663, 18.361164012557992 ], [ -65.053811907622048, 18.361236933840928 ], [ -65.053962614313491, 18.361279178653206 ], [ -65.054092029651031, 18.361280184482098 ], [ -65.054243240566564, 18.361240118965668 ], [ -65.054328902348459, 18.36132309984697 ], [ -65.054371148470466, 18.361436590870426 ], [ -65.054606678753089, 18.361654520457648 ], [ -65.054735592485827, 18.361717218433171 ], [ -65.054853777377332, 18.361769521534086 ], [ -65.055036167677997, 18.361873792459676 ], [ -65.055164913772614, 18.361957108617219 ], [ -65.05533657654172, 18.362071605469566 ], [ -65.055529862012122, 18.362175875085484 ], [ -65.055690963578172, 18.362249132954389 ], [ -65.05579858595695, 18.362291210128546 ], [ -65.055905539092805, 18.362384584574784 ], [ -65.056034117549245, 18.362488521533692 ], [ -65.056151296611915, 18.362674598563899 ], [ -65.056247856182836, 18.362747353518387 ], [ -65.056369393837258, 18.362885654987167 ], [ -65.056439634219601, 18.362993781590035 ], [ -65.056513059726683, 18.363108948994977 ], [ -65.056585982319291, 18.363135603459853 ], [ -65.056688409225274, 18.363186397817515 ], [ -65.056789997940541, 18.363194444448425 ], [ -65.056952774578349, 18.363203999822645 ], [ -65.056998875067961, 18.36321606976901 ], [ -65.057009100994776, 18.363261834982325 ], [ -65.056987475674191, 18.363298380097717 ], [ -65.056857723750738, 18.363338613252267 ], [ -65.056749429509694, 18.363409859463445 ], [ -65.056726965998394, 18.363512789283902 ], [ -65.056694108922159, 18.363594931974433 ], [ -65.056639458887219, 18.363687132953658 ], [ -65.056582126642013, 18.363764917052436 ], [ -65.056541558211109, 18.363789392221463 ], [ -65.056422199852591, 18.363870864359455 ], [ -65.056271157884851, 18.363900703949071 ], [ -65.056120115917111, 18.363899698120235 ], [ -65.055926326222675, 18.36385711803166 ], [ -65.05588559015365, 18.363820405278148 ], [ -65.055905539092805, 18.363754020573083 ], [ -65.055895816080465, 18.363620077696055 ], [ -65.055853738906308, 18.363485799542673 ], [ -65.05582272584968, 18.363320843609017 ], [ -65.055715437437527, 18.36324808865453 ], [ -65.0556076461109, 18.363247250463758 ], [ -65.055563558588688, 18.36337046449961 ], [ -65.05553053256466, 18.363463000755132 ], [ -65.055518965532713, 18.363555537010598 ], [ -65.055550481503815, 18.363658802107295 ], [ -65.055549978589397, 18.363730886509245 ], [ -65.05553841155745, 18.363833648691468 ], [ -65.055419388475173, 18.36388427541101 ], [ -65.055268012540864, 18.363924340927383 ], [ -65.055149323425212, 18.363944122228418 ], [ -65.05501973913988, 18.363974129456153 ], [ -65.054785045738299, 18.363956527451023 ], [ -65.054653114518999, 18.3639117680666 ], [ -65.054582538860359, 18.363863153004843 ], [ -65.054578850821201, 18.363778663380288 ], [ -65.054489834966716, 18.363694509031973 ], [ -65.054431330564114, 18.363643044121773 ], [ -65.054397801625669, 18.36351664496118 ], [ -65.054326724362284, 18.363445063473705 ], [ -65.054302081555136, 18.363361412039865 ], [ -65.054281125477416, 18.363268708146222 ], [ -65.054206192536753, 18.363212381729852 ], [ -65.054165287519936, 18.363144320643357 ], [ -65.054164450638893, 18.36310056708777 ], [ -65.054209376351821, 18.363090341161012 ], [ -65.054325381947478, 18.36314549411037 ], [ -65.054379530377616, 18.36311498396816 ], [ -65.054427305938987, 18.363030326705427 ], [ -65.054430993978201, 18.362983388025157 ], [ -65.054421607551774, 18.362920858997427 ], [ -65.054406855395086, 18.36286436494288 ], [ -65.054381876001969, 18.362806026868782 ], [ -65.054339129584946, 18.362754226682284 ], [ -65.054318342455076, 18.362651130533379 ], [ -65.054297721653711, 18.362548031765186 ], [ -65.054221613936306, 18.362518695089932 ], [ -65.054157911441621, 18.362485335099279 ], [ -65.053996309580441, 18.362473768067389 ], [ -65.053877620464846, 18.362483323441552 ], [ -65.05374820381769, 18.362482317612717 ], [ -65.053615434407618, 18.362495225749797 ], [ -65.05352172468514, 18.362491034796221 ], [ -65.053349057396815, 18.362510313182781 ], [ -65.053261216319015, 18.362705277653902 ], [ -65.053217461453755, 18.362787419034817 ], [ -65.05303373135763, 18.362837542839827 ], [ -65.052828877545664, 18.362846427661452 ], [ -65.052721252547542, 18.362814744052287 ], [ -65.05261413177351, 18.362731595532864 ], [ -65.052527965767467, 18.362710305488577 ], [ -65.052430400367655, 18.362771493411117 ], [ -65.052376422194982, 18.362781384061634 ], [ -65.052247676100421, 18.362708293830849 ], [ -65.052151450496069, 18.362604693457854 ], [ -65.052087246396582, 18.362542499706421 ], [ -65.051964701603652, 18.362522215490969 ], [ -65.051838805357477, 18.362581894670257 ], [ -65.051773426481361, 18.362674095649425 ], [ -65.051643508229404, 18.362734949605397 ], [ -65.051610148238751, 18.362878781823269 ], [ -65.051608807133618, 18.363043570118805 ], [ -65.051575279504789, 18.36318740364635 ], [ -65.051606292561473, 18.363362585506877 ], [ -65.051658929629014, 18.363517483151895 ], [ -65.051744594030254, 18.363590238106383 ], [ -65.051776445277596, 18.363662490146453 ], [ -65.051786168289937, 18.363786039458603 ], [ -65.051730680064281, 18.363991563823163 ], [ -65.051644011143821, 18.364052751745703 ], [ -65.051557508551866, 18.364072700684858 ], [ -65.051492466261664, 18.364071527217845 ], [ -65.051449886173089, 18.364041017075635 ], [ -65.051374951922753, 18.363978823324203 ], [ -65.051292306317748, 18.363941775294393 ], [ -65.051170601025206, 18.363905230179 ], [ -65.051117124457278, 18.363863655919261 ], [ -65.051112764555853, 18.363838174921398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_554", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.933024787528154, 18.322516720078909 ], [ -64.933113300468221, 18.322517390631504 ], [ -64.933188905271152, 18.322560305996319 ], [ -64.933245399325699, 18.322633396227104 ], [ -64.933238358523624, 18.322718053489837 ], [ -64.933174488390762, 18.322765830360879 ], [ -64.933104583284717, 18.322807739896859 ], [ -64.933092010423934, 18.322801537285557 ], [ -64.933003162207569, 18.322812936679327 ], [ -64.932933089463404, 18.322866748523552 ], [ -64.932850442548727, 18.322896420475047 ], [ -64.932882796710544, 18.322817965823674 ], [ -64.932934095292239, 18.322745881421724 ], [ -64.932934764535162, 18.322661224159049 ], [ -64.932967118696979, 18.322582769507619 ], [ -64.933024787528154, 18.322516720078909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_396", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.822008118761687, 18.296978226236547 ], [ -64.822183469570007, 18.29697956734168 ], [ -64.822292600692037, 18.297156928498055 ], [ -64.82235462680535, 18.297439566408798 ], [ -64.822471639539515, 18.297757911244275 ], [ -64.822728293537978, 18.297962931384689 ], [ -64.822967176583518, 18.298088326026118 ], [ -64.82334419476939, 18.298241379651586 ], [ -64.823547539838046, 18.298216736844381 ], [ -64.823870747489366, 18.298192932227948 ], [ -64.824175177049199, 18.298213216443401 ], [ -64.824560912418519, 18.298436844417779 ], [ -64.824900548607957, 18.298642536420459 ], [ -64.825231297356368, 18.298803973262807 ], [ -64.825535392949575, 18.298868177362294 ], [ -64.825812498801611, 18.298844037469564 ], [ -64.826136208057676, 18.298767428147414 ], [ -64.826524960913616, 18.298656116419806 ], [ -64.826729144172987, 18.298534411127264 ], [ -64.826860069563452, 18.298350344445169 ], [ -64.827028042983784, 18.298166613039371 ], [ -64.827269274272965, 18.298018588558193 ], [ -64.827612429553767, 18.297853967900778 ], [ -64.827890541234638, 18.297724048339205 ], [ -64.828204695116483, 18.29768264040797 ], [ -64.828536451003458, 18.297738297581418 ], [ -64.828766618175166, 18.29780200007616 ], [ -64.828848425589456, 18.297952539129483 ], [ -64.828884132514133, 18.298085140901378 ], [ -64.828863848298681, 18.298278930595814 ], [ -64.828741975368018, 18.298480766921216 ], [ -64.828564949487941, 18.298664329379221 ], [ -64.828379038786238, 18.298803805624686 ], [ -64.82818407562479, 18.298916961371901 ], [ -64.827952064433475, 18.299064818214902 ], [ -64.827802698847165, 18.299248717258877 ], [ -64.82771804158449, 18.299406800028635 ], [ -64.8276521597939, 18.299556165614945 ], [ -64.827650483412413, 18.299741238125932 ], [ -64.827768333027677, 18.29997140529764 ], [ -64.82793328896139, 18.30009629440525 ], [ -64.828254986559728, 18.300248846425973 ], [ -64.828438717965525, 18.300356302476246 ], [ -64.828630998916708, 18.30052544936359 ], [ -64.828703418594898, 18.300667103595231 ], [ -64.828757398077244, 18.300835075705891 ], [ -64.828746836874188, 18.300967174563311 ], [ -64.828653293480158, 18.301098770506371 ], [ -64.828523039951961, 18.301220978713332 ], [ -64.828282982129736, 18.301218968365276 ], [ -64.828061532141533, 18.301208405852549 ], [ -64.827895570378985, 18.301189296413781 ], [ -64.827720891432932, 18.301117379650009 ], [ -64.827416795839724, 18.301053006602729 ], [ -64.827223006145232, 18.301060213733251 ], [ -64.826881359607739, 18.301057363884809 ], [ -64.826631914049472, 18.301090557547013 ], [ -64.826262104303851, 18.301140344766111 ], [ -64.826012155831108, 18.301226510772096 ], [ -64.825697163758548, 18.301356096367101 ], [ -64.825539080988733, 18.301478135626269 ], [ -64.825418046248785, 18.301591795597574 ], [ -64.825277900760398, 18.301766977458044 ], [ -64.82518435867604, 18.301898404453254 ], [ -64.825100205637455, 18.302012398391184 ], [ -64.825043711582907, 18.302144161972365 ], [ -64.824996437626282, 18.302258323548415 ], [ -64.824986714613942, 18.30232001438543 ], [ -64.824995095211477, 18.302417076870768 ], [ -64.824966093812577, 18.302549175728245 ], [ -64.824946815426017, 18.302645902937343 ], [ -64.82489015373335, 18.302768950644747 ], [ -64.824842879776725, 18.302900712916255 ], [ -64.824795773458277, 18.303006158618473 ], [ -64.824803987727307, 18.30311210461582 ], [ -64.82481169908192, 18.303270857938173 ], [ -64.824829133448929, 18.303394407250323 ], [ -64.824773143618472, 18.303464479994489 ], [ -64.824735591364572, 18.303525835555206 ], [ -64.824661327666774, 18.303560536650991 ], [ -64.824615562453459, 18.303533714547996 ], [ -64.824551357044299, 18.303480237980011 ], [ -64.824496204094942, 18.303462133060464 ], [ -64.824450103605329, 18.303452912962541 ], [ -64.824386568748764, 18.303337745557656 ], [ -64.824304426058177, 18.303240180157843 ], [ -64.824166124589397, 18.303212519864076 ], [ -64.824019273575232, 18.303123168733293 ], [ -64.823891365671386, 18.302981011587235 ], [ -64.823717692554169, 18.302794262694817 ], [ -64.823616943339346, 18.302696529656828 ], [ -64.823544354713306, 18.302563592608635 ], [ -64.823526920346296, 18.302448928118167 ], [ -64.823582911486426, 18.30238757255745 ], [ -64.823722052455594, 18.30230945449199 ], [ -64.823962779520741, 18.302232004359837 ], [ -64.824157742682189, 18.302119017560415 ], [ -64.824232341656284, 18.302040393961249 ], [ -64.824316496004542, 18.301917682839814 ], [ -64.824363937599344, 18.301776866798832 ], [ -64.824383718900322, 18.301644767941411 ], [ -64.824348011975644, 18.301494731802507 ], [ -64.824284812395319, 18.301353077570809 ], [ -64.824211723474264, 18.301273115485799 ], [ -64.824203341567056, 18.301167166869106 ], [ -64.824186073528551, 18.301052502378639 ], [ -64.824067050446274, 18.300936833368951 ], [ -64.823930091392299, 18.300776906579586 ], [ -64.823876110600281, 18.300626533854711 ], [ -64.823923887471324, 18.300450681441646 ], [ -64.823971665652039, 18.300265945516628 ], [ -64.824037044528211, 18.30017826945766 ], [ -64.824044923520944, 18.300155639617913 ], [ -64.824121366514646, 18.300154967755645 ], [ -64.824185067699659, 18.300144240224085 ], [ -64.824265701646937, 18.300132673192195 ], [ -64.824282633099472, 18.30007533963726 ], [ -64.824223456834659, 18.29998582217803 ], [ -64.824040229652951, 18.29983444362432 ], [ -64.823875104771389, 18.299736041343465 ], [ -64.823663880709944, 18.299610815649885 ], [ -64.823444777655766, 18.299344438639082 ], [ -64.823197008478928, 18.299183672349329 ], [ -64.822930463829948, 18.299057945051004 ], [ -64.822608095679072, 18.298984687182042 ], [ -64.822304504309955, 18.298876392941054 ], [ -64.822213141521445, 18.298761057897991 ], [ -64.822159497315397, 18.298575313524736 ], [ -64.822105685471172, 18.298407341414133 ], [ -64.821996216453442, 18.298274235418091 ], [ -64.821895633567067, 18.298167618868206 ], [ -64.821749622053289, 18.29798992243559 ], [ -64.821640154345289, 18.297839214434418 ], [ -64.821604447420611, 18.297706613972196 ], [ -64.821557507430612, 18.297501089607692 ], [ -64.821543930050609, 18.297256337917418 ], [ -64.821739228488354, 18.29710814579812 ], [ -64.822008118761687, 18.296978226236547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_91", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": "", "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.040694391801878, 18.354012401696764 ], [ -65.040760608868766, 18.354067387008001 ], [ -65.040800339108898, 18.354119187194499 ], [ -65.040768823137796, 18.354222117014956 ], [ -65.040698582755454, 18.354282131470484 ], [ -65.040625157248428, 18.354330075979647 ], [ -65.040545529129986, 18.354365950542501 ], [ -65.04046254824874, 18.354416912538284 ], [ -65.040376717518996, 18.354440549516539 ], [ -65.040335981450028, 18.354367460595427 ], [ -65.040365318125225, 18.354282802023079 ], [ -65.040403874898345, 18.354207364858269 ], [ -65.040458357295108, 18.354140980153261 ], [ -65.040541338176411, 18.354099239565073 ], [ -65.040620966294796, 18.354057328719364 ], [ -65.040694391801878, 18.354012401696764 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_696", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.864820045652152, 18.31385770833657 ], [ -64.864782159431627, 18.313908335056055 ], [ -64.86472901813994, 18.313979748905354 ], [ -64.864646037258694, 18.314021993717688 ], [ -64.864570600093884, 18.314064406168086 ], [ -64.864487619212582, 18.314092401738151 ], [ -64.864397597529262, 18.314091731185556 ], [ -64.864307574536269, 18.314076643752628 ], [ -64.864225265517234, 18.314040098637236 ], [ -64.864226102398277, 18.31395410026937 ], [ -64.864271867611592, 18.313882686420015 ], [ -64.864332386291267, 18.313818648648976 ], [ -64.864393071299389, 18.313754610877993 ], [ -64.864453756307512, 18.313690573106953 ], [ -64.86452181739395, 18.313633743776165 ], [ -64.864582502402072, 18.313569706005126 ], [ -64.864620722589279, 18.313491083715633 ], [ -64.864658945395774, 18.313412629064203 ], [ -64.864652238560325, 18.313326463058218 ], [ -64.864615359478307, 18.31324733785425 ], [ -64.86466112338195, 18.313175924004895 ], [ -64.864743936625075, 18.313140719994635 ], [ -64.864833959618068, 18.31315580742762 ], [ -64.864834796499167, 18.31315597506574 ], [ -64.864923812353595, 18.313178103300743 ], [ -64.864968236461777, 18.313250187702693 ], [ -64.865012660569903, 18.313322272104585 ], [ -64.865026909812173, 18.313408438110628 ], [ -64.865026071621458, 18.313494436478493 ], [ -64.865002937557563, 18.313580267208238 ], [ -64.86496454842262, 18.313658889497731 ], [ -64.864918952157097, 18.313730303347086 ], [ -64.86487318563411, 18.31380154955832 ], [ -64.864835299413585, 18.313837088844821 ], [ -64.864820045652152, 18.31385770833657 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_693", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.874491422836456, 18.315978666134413 ], [ -64.874467116615222, 18.316060641186823 ], [ -64.874419507382356, 18.316134903574948 ], [ -64.874379775832551, 18.316209336220595 ], [ -64.874308864897614, 18.316260967459243 ], [ -64.874230411555914, 18.316297681522485 ], [ -64.874151789266364, 18.316334394275998 ], [ -64.874065623260378, 18.316348643518211 ], [ -64.873979457254336, 18.316370436476973 ], [ -64.873885578584009, 18.316377142002693 ], [ -64.873791702533083, 18.316376302502306 ], [ -64.873697825172428, 18.316368089542948 ], [ -64.873611994442683, 18.316352499195546 ], [ -64.873518283410533, 18.316344283616843 ], [ -64.873432117404491, 18.316358534168728 ], [ -64.873346286674803, 18.316327856388398 ], [ -64.87326833624752, 18.316289970167816 ], [ -64.873174626524985, 18.316289131977101 ], [ -64.87308862815712, 18.316273541629698 ], [ -64.873002797427375, 18.31625040756586 ], [ -64.872916965388015, 18.316234817218458 ], [ -64.87283113465827, 18.316204139438128 ], [ -64.872761229552225, 18.316151333422738 ], [ -64.87269920343897, 18.31609098238124 ], [ -64.87263717863533, 18.316030801597208 ], [ -64.87260666849312, 18.31594832363038 ], [ -64.872560400365387, 18.315873220432195 ], [ -64.872506085606744, 18.31582795944297 ], [ -64.872499043494997, 18.315738273035947 ], [ -64.872554365392205, 18.315671553054642 ], [ -64.87260197462507, 18.315597289356845 ], [ -64.872665006567217, 18.315537945453855 ], [ -64.872704735497678, 18.315463514117937 ], [ -64.872713452681182, 18.315373995349034 ], [ -64.872792076280405, 18.31532990651715 ], [ -64.872885618364762, 18.315353040581044 ], [ -64.872971615422955, 18.31536863092839 ], [ -64.87305778142894, 18.315354380376505 ], [ -64.873144116382775, 18.3153252126491 ], [ -64.873230282388818, 18.315310963406887 ], [ -64.873308735730518, 18.315274250653317 ], [ -64.87338735932974, 18.315237537899804 ], [ -64.87346598161929, 18.31519344906792 ], [ -64.873544436270663, 18.315156736314407 ], [ -64.873630602276705, 18.315134943355702 ], [ -64.873716934611139, 18.315113318035117 ], [ -64.873810645643346, 18.315121532304147 ], [ -64.873904521694328, 18.315129746573234 ], [ -64.873990184785896, 18.315160255405772 ], [ -64.874076015515641, 18.31518338946961 ], [ -64.874153968562268, 18.315221444637984 ], [ -64.874223872358641, 18.315274250653317 ], [ -64.874285898471896, 18.31533443143735 ], [ -64.874324287606896, 18.315409534635535 ], [ -64.874347086394437, 18.315491844964242 ], [ -64.874385475529436, 18.315566946852755 ], [ -64.874408275626706, 18.315649257181462 ], [ -64.874446663451977, 18.315724359069975 ], [ -64.874469463549246, 18.315806669398683 ], [ -64.874484383344054, 18.315888978417718 ], [ -64.874491422836456, 18.315978666134413 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_639", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.94453565806657, 18.335306000413141 ], [ -64.944546051631505, 18.335336175279053 ], [ -64.94450967415429, 18.335489899457116 ], [ -64.944491736872862, 18.335536501551474 ], [ -64.94448084039351, 18.335583272593624 ], [ -64.94443457357545, 18.335653346647518 ], [ -64.944371205047332, 18.335689556486614 ], [ -64.944318231393822, 18.335746050541104 ], [ -64.944264754825895, 18.335852834729167 ], [ -64.944250337945505, 18.335892901555269 ], [ -64.94420792549505, 18.335942688774367 ], [ -64.944172387518222, 18.335992644941257 ], [ -64.944126453357057, 18.336029022418529 ], [ -64.944087562617369, 18.336068921606454 ], [ -64.94405218965926, 18.336122230536262 ], [ -64.944020338411917, 18.336152068816205 ], [ -64.943942555622755, 18.33622515904699 ], [ -64.943889580659629, 18.336285005864397 ], [ -64.943868290615342, 18.33631836585505 ], [ -64.943857395445605, 18.336348373082842 ], [ -64.943779777675275, 18.33641794291259 ], [ -64.943726804021765, 18.3364643786785 ], [ -64.943610464459539, 18.336543840468437 ], [ -64.943522285486097, 18.336610223863772 ], [ -64.943469145504139, 18.33666990304306 ], [ -64.943448021788299, 18.336689851982158 ], [ -64.943419690941994, 18.336719860519622 ], [ -64.943398568535827, 18.336736287748067 ], [ -64.943373759400174, 18.336759589450082 ], [ -64.943348947645234, 18.336789596677875 ], [ -64.943324138509581, 18.33682278903035 ], [ -64.943313408358676, 18.336849443495282 ], [ -64.943316762431209, 18.336876265598335 ], [ -64.943330507449389, 18.336906608102367 ], [ -64.943319610969979, 18.336950026381658 ], [ -64.943301842636401, 18.336969976630485 ], [ -64.943259765462244, 18.336986237530425 ], [ -64.943207125775359, 18.336995960542822 ], [ -64.943186003369249, 18.33700584988361 ], [ -64.943168401364119, 18.33700903500835 ], [ -64.943147278957952, 18.33701222013309 ], [ -64.943098160981776, 18.33701859038257 ], [ -64.943045354966443, 18.337044909571148 ], [ -64.943031105724174, 18.33707491679894 ], [ -64.943044684413849, 18.3371252095518 ], [ -64.943065471543719, 18.337165609034855 ], [ -64.943107213441579, 18.337189246013168 ], [ -64.943145771524371, 18.337199639578103 ], [ -64.943205281755809, 18.337210200781158 ], [ -64.943264794606591, 18.337220594346093 ], [ -64.943320784436992, 18.337221098570183 ], [ -64.943369902413224, 18.33721472701103 ], [ -64.943397897983232, 18.337211709524468 ], [ -64.943443495558427, 18.337208692037848 ], [ -64.943489094443237, 18.337209028623818 ], [ -64.943541731510834, 18.337195951538888 ], [ -64.943619012695194, 18.33717985958674 ], [ -64.943650697614089, 18.337163429739007 ], [ -64.943745245527282, 18.337167453054462 ], [ -64.943801235357739, 18.337184719783295 ], [ -64.943839624492682, 18.33720165123583 ], [ -64.943878013627682, 18.337225455852263 ], [ -64.943937526478464, 18.337235849417198 ], [ -64.943962001647492, 18.337239369818235 ], [ -64.944010950675874, 18.337256636547068 ], [ -64.944052861521527, 18.337270215236686 ], [ -64.944084377492629, 18.33728060880162 ], [ -64.944133158882835, 18.33730441341811 ], [ -64.944157634051862, 18.337317992107728 ], [ -64.944199543587843, 18.33733509119844 ], [ -64.94424497352486, 18.337355375413836 ], [ -64.94426576065473, 18.337368954103511 ], [ -64.944300629388692, 18.337399464245721 ], [ -64.944321416518562, 18.337429639111633 ], [ -64.944342203648432, 18.337463334378583 ], [ -64.944362487863827, 18.3375471534506 ], [ -64.944411438201882, 18.337564252541256 ], [ -64.94443926613377, 18.337581183993848 ], [ -64.94445670050078, 18.337588057157745 ], [ -64.944484696070788, 18.337588224795866 ], [ -64.944530293645983, 18.33759526559794 ], [ -64.944607239554045, 18.337612699964893 ], [ -64.944628195631765, 18.337622758253531 ], [ -64.944652501852943, 18.337649747994703 ], [ -64.944655520649235, 18.337693333912171 ], [ -64.944648144570863, 18.337743457717238 ], [ -64.94465116074781, 18.337793749160426 ], [ -64.944650825471513, 18.337837167439716 ], [ -64.94464328175502, 18.337910760584919 ], [ -64.944625176835473, 18.337967589915763 ], [ -64.94461428035612, 18.338011008195053 ], [ -64.94460003111385, 18.338054426474343 ], [ -64.944578573431443, 18.338090971589736 ], [ -64.94456432418923, 18.338114440929871 ], [ -64.944557115749035, 18.338141095394803 ], [ -64.944549908618512, 18.338167749859679 ], [ -64.944532137665533, 18.338201109850331 ], [ -64.944503806819228, 18.338231117078124 ], [ -64.944468435170847, 18.338264309430599 ], [ -64.94442619035857, 18.338293981382094 ], [ -64.944398027150385, 18.338313930321249 ], [ -64.94437321670506, 18.338337064385144 ], [ -64.944352095608565, 18.338360366087159 ], [ -64.944323763452587, 18.338383667789174 ], [ -64.944270957437197, 18.338403281452031 ], [ -64.944221839461022, 18.338422895114832 ], [ -64.94415159907868, 18.338435803251912 ], [ -64.944105833865365, 18.338465642841584 ], [ -64.944084543821077, 18.338482239017821 ], [ -64.944070463526657, 18.338495482431199 ], [ -64.944042131370622, 18.338525322020814 ], [ -64.944010447761457, 18.338548456084709 ], [ -64.943960994508927, 18.338585001200101 ], [ -64.943908188493594, 18.338611320388679 ], [ -64.943859070517419, 18.338631101689714 ], [ -64.943799392647804, 18.338633951538156 ], [ -64.943718925029032, 18.338626575459784 ], [ -64.943585652704542, 18.338635627919587 ], [ -64.943473167509921, 18.338671502482384 ], [ -64.943410135567774, 18.338664294042189 ], [ -64.943325982529132, 18.338666976252512 ], [ -64.943186003369249, 18.338649206609261 ], [ -64.943098328619953, 18.338651888819584 ], [ -64.943028255875731, 18.338651385905109 ], [ -64.942982659610266, 18.338654403391729 ], [ -64.942951143639164, 18.338654068115432 ], [ -64.942916105957408, 18.338653732839134 ], [ -64.942888110387344, 18.338646859675237 ], [ -64.942849722562073, 18.338629928222701 ], [ -64.942800770914346, 18.338609476369129 ], [ -64.942776295745318, 18.338599250442314 ], [ -64.942737740281871, 18.338592209640296 ], [ -64.942660794373751, 18.338574775273344 ], [ -64.942597762431603, 18.338571087234129 ], [ -64.942541603653353, 18.338562034774384 ], [ -64.942473708895363, 18.338543594578539 ], [ -64.942387710527498, 18.338515431370354 ], [ -64.942311436481646, 18.338468995604444 ], [ -64.942234993488, 18.338422559838591 ], [ -64.942148993810463, 18.338394396630349 ], [ -64.942072718454938, 18.338348128502616 ], [ -64.942005998473633, 18.338283420179039 ], [ -64.941929890756228, 18.338227931953384 ], [ -64.941872893787263, 18.338163391267926 ], [ -64.941815896818298, 18.338098850582526 ], [ -64.941758901159062, 18.338025089799146 ], [ -64.941740459653545, 18.337942611832318 ], [ -64.941750685580303, 18.337860133865433 ], [ -64.94176108045491, 18.337777823536726 ], [ -64.941809695516667, 18.337704900944118 ], [ -64.941858141630632, 18.33763214598963 ], [ -64.941897370265963, 18.337531730741375 ], [ -64.94194598532772, 18.33745880814871 ], [ -64.941975489641095, 18.337376497820003 ], [ -64.9419952696324, 18.337294355129416 ], [ -64.942015218571555, 18.337212044800765 ], [ -64.942035167510653, 18.337129734472057 ], [ -64.942029970728186, 18.33708782493602 ], [ -64.94202611636058, 18.337056476603095 ], [ -64.941998119480843, 18.336970142958933 ], [ -64.941950845524218, 18.336887329715807 ], [ -64.94186501479453, 18.336840893949898 ], [ -64.94177868246004, 18.33683100460911 ], [ -64.941692516453998, 18.336821281596769 ], [ -64.941596627435672, 18.336820442096382 ], [ -64.94151046142963, 18.336810719083985 ], [ -64.941414572411247, 18.33680988089327 ], [ -64.941318514445072, 18.336809211650404 ], [ -64.941222794374539, 18.336799319690215 ], [ -64.941126905356157, 18.3367984814995 ], [ -64.941021628601732, 18.33677937075106 ], [ -64.940935630233867, 18.336741987444952 ], [ -64.940849464227824, 18.336713991874888 ], [ -64.940763464550287, 18.33667660856878 ], [ -64.940687190504434, 18.336630172802927 ], [ -64.940601192136569, 18.33659295713494 ], [ -64.940563473554164, 18.336510143891815 ], [ -64.940535477984099, 18.336427499596482 ], [ -64.940526593162474, 18.336345021629654 ], [ -64.940527431353189, 18.336253489893352 ], [ -64.940528100596111, 18.336161959466722 ], [ -64.940519217084159, 18.336079481499894 ], [ -64.940510332262534, 18.335997003533009 ], [ -64.940530281201688, 18.335914694513974 ], [ -64.940550230140786, 18.335832382875594 ], [ -64.940560456067601, 18.335750072546944 ], [ -64.940570681994359, 18.335667763527908 ], [ -64.940590629623841, 18.335585451889528 ], [ -64.940600855550599, 18.335503141560821 ], [ -64.940591972038646, 18.335420663593936 ], [ -64.940592810229361, 18.335328965529186 ], [ -64.940612759168516, 18.335246822838656 ], [ -64.940632540469494, 18.335164512509948 ], [ -64.940663887492747, 18.33486259752226 ], [ -64.940683836431901, 18.334780287193553 ], [ -64.940694231306509, 18.334679535359328 ], [ -64.940704623561771, 18.334597226340293 ], [ -64.940705295423982, 18.33450569460399 ], [ -64.940782407660549, 18.334460433614822 ], [ -64.940878465626724, 18.334452050397942 ], [ -64.940964631632767, 18.334470993508205 ], [ -64.941050797638809, 18.334480885468338 ], [ -64.941146685347462, 18.33448155471126 ], [ -64.941233355577594, 18.334436461360212 ], [ -64.941301081387792, 18.334372926503647 ], [ -64.9413495275017, 18.33430000260131 ], [ -64.941379033124747, 18.334217861220452 ], [ -64.941437203560724, 18.334154157416037 ], [ -64.941504760423072, 18.334099842657395 ], [ -64.94155337548483, 18.334026921374402 ], [ -64.94164004440529, 18.33398182540401 ], [ -64.941726545687573, 18.333945784512707 ], [ -64.941813048279528, 18.333928182507577 ], [ -64.94190893729791, 18.333928853060172 ], [ -64.94202410339318, 18.333929857579335 ], [ -64.942119992411563, 18.333930529441602 ], [ -64.942206327365398, 18.333922147534395 ], [ -64.94229282864768, 18.333895325431399 ], [ -64.942379328620291, 18.33387755447842 ], [ -64.942465494626333, 18.333896666536532 ], [ -64.942551494303871, 18.333924828435045 ], [ -64.942637995586153, 18.333907060101467 ], [ -64.942724161592196, 18.333916949442255 ], [ -64.942800435638048, 18.333963386517837 ], [ -64.942886770591883, 18.333973109530177 ], [ -64.942972767650076, 18.334010491526612 ], [ -64.943058767327614, 18.334047708504272 ], [ -64.943145099662104, 18.334039326597065 ], [ -64.943231098029969, 18.334067488495577 ], [ -64.943239982851594, 18.334149966462462 ], [ -64.943287424446339, 18.334223559607665 ], [ -64.943334698402964, 18.334297152752868 ], [ -64.943420696770829, 18.334334537368647 ], [ -64.943496973436027, 18.33438080549638 ], [ -64.943583139442069, 18.334408967394893 ], [ -64.943662430974484, 18.33440963925716 ], [ -64.943693780617082, 18.334416846387683 ], [ -64.943724289449619, 18.334426401761903 ], [ -64.943761169841309, 18.334457248490082 ], [ -64.943797548628197, 18.334483901645285 ], [ -64.94386728478645, 18.334516423445223 ], [ -64.943960157627885, 18.334555650770938 ], [ -64.944032912582372, 18.33458901076159 ], [ -64.944078173571597, 18.334612144825428 ], [ -64.94411471868699, 18.334626730653667 ], [ -64.94414187606634, 18.334640140395493 ], [ -64.9441836179642, 18.334677357373153 ], [ -64.94422535986206, 18.334704513442773 ], [ -64.944309012605572, 18.334772071614793 ], [ -64.94437506072461, 18.334829403860056 ], [ -64.944434069351303, 18.334896794393956 ], [ -64.944478996373903, 18.33498094874227 ], [ -64.944502800990335, 18.335054709525593 ], [ -64.944523085205788, 18.33514523543306 ], [ -64.944536328619165, 18.335239111483986 ], [ -64.94453565806657, 18.335306000413141 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_544", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.838809818072548, 18.326156813428042 ], [ -64.83881568540761, 18.326245326368053 ], [ -64.838861115344628, 18.32632780564461 ], [ -64.838900173722493, 18.326403913361958 ], [ -64.838939067081583, 18.32648001976969 ], [ -64.838925153115611, 18.3265619948221 ], [ -64.838838987109625, 18.32659284155028 ], [ -64.838752653465463, 18.326623685659058 ], [ -64.838673025347077, 18.326660902636718 ], [ -64.838593397228635, 18.326698118304705 ], [ -64.83851360147213, 18.326741536583995 ], [ -64.838433973353688, 18.32677875094231 ], [ -64.838354345235302, 18.326815966610241 ], [ -64.83826164134166, 18.326821667616798 ], [ -64.838116299070805, 18.326820326511665 ], [ -64.838010184125665, 18.32684480037102 ], [ -64.837917646560527, 18.326856536350761 ], [ -64.837831480554485, 18.326868437349333 ], [ -64.837738945608692, 18.32687413835589 ], [ -64.837646240405377, 18.326879670414655 ], [ -64.837553705459584, 18.326878830914268 ], [ -64.837432000167041, 18.326833234648745 ], [ -64.837349019285739, 18.326785959382448 ], [ -64.837316162209504, 18.326673306549708 ], [ -64.837265869456644, 18.326527293726258 ], [ -64.837210885455079, 18.326403576775988 ], [ -64.837155564867544, 18.326291260529217 ], [ -64.837062860973958, 18.326169555236675 ], [ -64.836960434067919, 18.326094788624459 ], [ -64.836803021850756, 18.326124794542523 ], [ -64.836713000167379, 18.326218170298432 ], [ -64.836608561603668, 18.326356136490915 ], [ -64.836544356194565, 18.326465267613003 ], [ -64.836505631783268, 18.32658144084678 ], [ -64.8364648957143, 18.326681857404708 ], [ -64.836406892916443, 18.326763160594908 ], [ -64.836311339174358, 18.326801549729851 ], [ -64.836210421011685, 18.326823007412315 ], [ -64.836045297439853, 18.326840778365238 ], [ -64.835940858876143, 18.326848320772058 ], [ -64.835853854679385, 18.32685586448855 ], [ -64.835766850482685, 18.326855027607451 ], [ -64.835679846285927, 18.32685435574524 ], [ -64.835584124905722, 18.326853517554525 ], [ -64.835497120708965, 18.326852848311603 ], [ -64.835410284150385, 18.326843794542128 ], [ -64.835323447591804, 18.326834743392055 ], [ -64.835227893849719, 18.32681730771543 ], [ -64.835141057291139, 18.32680004229627 ], [ -64.835054220732502, 18.326782775567438 ], [ -64.834967216535802, 18.326773721797963 ], [ -64.834871662793716, 18.326772883607248 ], [ -64.834784658596959, 18.326772214364325 ], [ -64.834697654400259, 18.326763160594908 ], [ -64.834610817841622, 18.326754109444778 ], [ -64.834515264099537, 18.32674505567536 ], [ -64.834428427540956, 18.326727622618023 ], [ -64.834341423344256, 18.326726950755813 ], [ -64.834254419147499, 18.326726112565041 ], [ -64.834158697767293, 18.326725443322175 ], [ -64.834071693570536, 18.326724603821788 ], [ -64.833984857011956, 18.326715551361985 ], [ -64.833915790096626, 18.326665259918798 ], [ -64.833811686809213, 18.326622847468343 ], [ -64.833724850250576, 18.32661379631827 ], [ -64.833646898513621, 18.326571551505992 ], [ -64.833560229593218, 18.32654590156028 ], [ -64.83349099503971, 18.326495442478915 ], [ -64.83343953012951, 18.32642855485949 ], [ -64.8334314834986, 18.32634540764974 ], [ -64.833406170138858, 18.326262257820645 ], [ -64.83337213959561, 18.326178775334597 ], [ -64.83334682754554, 18.326087243598295 ], [ -64.833312795692677, 18.326003927440695 ], [ -64.83326133078242, 18.325937041130942 ], [ -64.833209699543772, 18.32587015351146 ], [ -64.833201820550983, 18.325787003682365 ], [ -64.833141469509485, 18.325719948424762 ], [ -64.833072402594155, 18.325661276384039 ], [ -64.83301222050045, 18.325594221126437 ], [ -64.83296058795213, 18.325527333507011 ], [ -64.832882637524847, 18.325485256332854 ], [ -64.832813570609517, 18.325434797251489 ], [ -64.832744502384514, 18.325376122591422 ], [ -64.832675435469184, 18.325325663510114 ], [ -64.832597483732229, 18.325283418697779 ], [ -64.832510814811769, 18.325241175195174 ], [ -64.832424145891309, 18.325207144651984 ], [ -64.832346361792474, 18.325165067477826 ], [ -64.832277294877144, 18.325106226489254 ], [ -64.832199344449862, 18.325055767407946 ], [ -64.832103958345954, 18.325021735555026 ], [ -64.832052493435754, 18.324954849245216 ], [ -64.831956770745819, 18.324945795475799 ], [ -64.831922741512301, 18.324862480627871 ], [ -64.831923578393344, 18.324779332108449 ], [ -64.831889547850096, 18.324696015950906 ], [ -64.831907652769644, 18.324613035069603 ], [ -64.831917209453536, 18.324530054188358 ], [ -64.831926595879906, 18.324447073307056 ], [ -64.831953417982959, 18.32436426006393 ], [ -64.832006391636469, 18.32428982741834 ], [ -64.832050649416146, 18.324207183123008 ], [ -64.832086187393031, 18.324124369879883 ], [ -64.832156427775317, 18.324050272510533 ], [ -64.832506120943719, 18.323862016184478 ], [ -64.832532272494177, 18.323845587646417 ], [ -64.832619445638727, 18.32381591438525 ], [ -64.832745172937052, 18.323810551274278 ], [ -64.83283117261459, 18.32379864896609 ], [ -64.83292370756044, 18.323805688458435 ], [ -64.833009370652007, 18.323831672370773 ], [ -64.833095201381752, 18.32384508342227 ], [ -64.833187737637218, 18.323845922922658 ], [ -64.83328027389274, 18.32385296241506 ], [ -64.833372810148205, 18.323853634277327 ], [ -64.83345864087795, 18.323867045328825 ], [ -64.833544303969518, 18.323893029241162 ], [ -64.833636672586863, 18.32391281054214 ], [ -64.83372250462628, 18.323926053955518 ], [ -64.833808334046296, 18.323945667618375 ], [ -64.833907408189418, 18.32395287605857 ], [ -64.833999944444884, 18.323953714249285 ], [ -64.834092480700406, 18.323954383492151 ], [ -64.834185016955871, 18.323955222992538 ], [ -64.834277553211393, 18.323955893545133 ], [ -64.834370089466859, 18.323963101985328 ], [ -64.834455920196604, 18.323976345398705 ], [ -64.834548456452069, 18.32397718358942 ], [ -64.834680555309546, 18.32398455835812 ], [ -64.834779797090789, 18.323985397858507 ], [ -64.834872333346254, 18.323986236049222 ], [ -64.834964869601777, 18.32398690660176 ], [ -64.835057405857242, 18.323994115041955 ], [ -64.835090095295357, 18.324019596039875 ], [ -64.835136363423089, 18.324019931316172 ], [ -64.835143068948867, 18.324019931316172 ], [ -64.835222697067252, 18.323982715648185 ], [ -64.835308527796997, 18.323996125390011 ], [ -64.835394358526685, 18.324009536441565 ], [ -64.835486894782207, 18.324010208303775 ], [ -64.835506676083185, 18.324023116440912 ], [ -64.835565852347997, 18.324048765076896 ], [ -64.835651683077742, 18.324068377430081 ], [ -64.83573734616931, 18.324088160040731 ], [ -64.835803395598077, 18.324101234506315 ], [ -64.835823009260935, 18.324120346564428 ], [ -64.835842120009318, 18.324202656893135 ], [ -64.835881179696855, 18.324278764610483 ], [ -64.835953431736925, 18.324329894244386 ], [ -64.83603909482855, 18.324355878156723 ], [ -64.83611805239434, 18.324394267291723 ], [ -64.836176893382913, 18.324457968476736 ], [ -64.836249145422983, 18.324515468360119 ], [ -64.83630278962903, 18.324579004526413 ], [ -64.836307986411498, 18.324585373466164 ], [ -64.836343693336175, 18.324603982609858 ], [ -64.836443438031836, 18.324681599070516 ], [ -64.836502614296705, 18.324715125389616 ], [ -64.836564974376586, 18.324792909488451 ], [ -64.836667402592241, 18.324897014085536 ], [ -64.836769829498223, 18.325018216463661 ], [ -64.836863539220701, 18.325126509395034 ], [ -64.836921374380381, 18.325185016416924 ], [ -64.836981890440711, 18.325228433386599 ], [ -64.837065375546103, 18.325255089161146 ], [ -64.837230331479759, 18.325237150570047 ], [ -64.837383720381524, 18.325180993101469 ], [ -64.837545323552376, 18.325090133227434 ], [ -64.837626125137774, 18.325036990626131 ], [ -64.837696365520117, 18.325029280581191 ], [ -64.837787056446359, 18.325019222292553 ], [ -64.83793994243365, 18.325016540082231 ], [ -64.837966598208254, 18.325015031338921 ], [ -64.837993923225724, 18.325007318674636 ], [ -64.838086627119367, 18.325001786615871 ], [ -64.838185701262432, 18.325002458478139 ], [ -64.838271699630297, 18.324990556169894 ], [ -64.83835786563634, 18.324966081000866 ], [ -64.838450737168102, 18.324947976081319 ], [ -64.838536903174145, 18.324910760413388 ], [ -64.83862306918013, 18.324898858105144 ], [ -64.838709067547995, 18.324886954487226 ], [ -64.838801771441638, 18.324862480627871 ], [ -64.838901179551385, 18.324850578319683 ], [ -64.838993717116523, 18.324845046260918 ], [ -64.839086253371988, 18.324845884451634 ], [ -64.83917878962751, 18.324846555004228 ], [ -64.839271493521153, 18.324828450084681 ], [ -64.839357659527138, 18.324810177526956 ], [ -64.839450194472988, 18.324817385967151 ], [ -64.839542395452156, 18.324849740128968 ], [ -64.839621354327676, 18.324888129263911 ], [ -64.839693606367746, 18.324939257588198 ], [ -64.839732664745611, 18.325015366615219 ], [ -64.839778263630421, 18.325091474332623 ], [ -64.839777425439706, 18.325179987272634 ], [ -64.839770049361391, 18.325268332574524 ], [ -64.839732832383731, 18.325343434463036 ], [ -64.839729479620871, 18.325349972350637 ], [ -64.839662928587359, 18.325406297457334 ], [ -64.839589838356574, 18.325456253624282 ], [ -64.839516580487668, 18.325506043462724 ], [ -64.839450026834811, 18.325562368569422 ], [ -64.839383308163178, 18.325618696295464 ], [ -64.839316754510321, 18.325674853764042 ], [ -64.839236958753816, 18.325718439681509 ], [ -64.839157164306926, 18.32576202559892 ], [ -64.839070829353091, 18.325818016738992 ], [ -64.838997571484185, 18.325867974215612 ], [ -64.838937558338273, 18.32593066957179 ], [ -64.838884080460673, 18.325999570158672 ], [ -64.83887838207346, 18.326020357288485 ], [ -64.838836975451898, 18.326075007323425 ], [ -64.838809818072548, 18.326156813428042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_574", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.862255348377403, 18.307128379269784 ], [ -64.862276304455065, 18.30704707346024 ], [ -64.862301450176687, 18.306965770270097 ], [ -64.862305641130263, 18.306954203238149 ], [ -64.862309999722015, 18.306919334504187 ], [ -64.862269766567465, 18.306887986171262 ], [ -64.862204890605767, 18.306868037232164 ], [ -64.862188964982067, 18.306833000860024 ], [ -64.862250152904608, 18.306806346395149 ], [ -64.86233950403539, 18.306795449915796 ], [ -64.862428855166115, 18.306807855138459 ], [ -64.862513846395473, 18.306835683070346 ], [ -64.862578388390602, 18.306894356420742 ], [ -64.862615604058533, 18.306817075236381 ], [ -64.862664888363213, 18.306747673044754 ], [ -64.862738482818088, 18.306701740193262 ], [ -64.86281995495608, 18.306667542011894 ], [ -64.862901593422521, 18.306637031869684 ], [ -64.862987090185641, 18.306614568358384 ], [ -64.863068562323633, 18.306584225854351 ], [ -64.863100245932856, 18.306576682137859 ], [ -64.863181550432671, 18.306569472387991 ], [ -64.863270901563453, 18.306566456211101 ], [ -64.863360251384506, 18.306570982440974 ], [ -64.863449602515288, 18.306579531986301 ], [ -64.863542978271141, 18.306584225854351 ], [ -64.863632329401923, 18.306577185052276 ], [ -64.863721680532649, 18.306577855604871 ], [ -64.863811199301551, 18.306570814802797 ], [ -64.863896359478701, 18.306587074393121 ], [ -64.863964754531764, 18.306641893375854 ], [ -64.864004821357867, 18.306715989435531 ], [ -64.864090315501642, 18.306693358286111 ], [ -64.864163742318397, 18.306647425434619 ], [ -64.864253261087299, 18.306636528955266 ], [ -64.864338421264449, 18.306656645532541 ], [ -64.864423581441599, 18.306676762109817 ], [ -64.864512763624532, 18.306681288339746 ], [ -64.864598260387652, 18.306658824828446 ], [ -64.86460312058415, 18.306573497013119 ], [ -64.864628267615387, 18.306492192513304 ], [ -64.864713595430715, 18.306477271408824 ], [ -64.86479908957449, 18.306454809207196 ], [ -64.864880729350602, 18.306420443387651 ], [ -64.86496622480405, 18.306401835553686 ], [ -64.865043673626587, 18.306359758379529 ], [ -64.865113243456335, 18.306309969850759 ], [ -64.865194715594328, 18.306275604031214 ], [ -64.86527618773232, 18.306245261527181 ], [ -64.865357827508433, 18.306214919023091 ], [ -64.865443156633376, 18.306196311189126 ], [ -64.865528650777151, 18.306177534407311 ], [ -64.865613812263973, 18.306193796616981 ], [ -64.865656727628846, 18.306244423336466 ], [ -64.865670137370671, 18.306260181321989 ], [ -64.86567349144326, 18.306345509137316 ], [ -64.865648344411966, 18.306426813637131 ], [ -64.865602914474948, 18.306500071506036 ], [ -64.865553628860596, 18.306569641335841 ], [ -64.865500153602341, 18.306635020211957 ], [ -64.865438796731951, 18.306696711048971 ], [ -64.865369228211875, 18.306746499577741 ], [ -64.865299824710576, 18.306796454434959 ], [ -64.865226231565373, 18.306842388596124 ], [ -64.865148616414388, 18.306884464460552 ], [ -64.86507921422276, 18.306934254298994 ], [ -64.864997574446647, 18.306972308157697 ], [ -64.864916102308655, 18.307002818299907 ], [ -64.864830605545535, 18.307029137488541 ], [ -64.86474511140176, 18.307051768637962 ], [ -64.86465961463864, 18.307066688432769 ], [ -64.864574120494922, 18.307085296266735 ], [ -64.86448476936414, 18.307096191436472 ], [ -64.86439927260102, 18.307114968218229 ], [ -64.864313778457245, 18.307141287406864 ], [ -64.864309587503669, 18.307141287406864 ], [ -64.864267341381719, 18.307148663485179 ], [ -64.864181847237944, 18.307167438957322 ], [ -64.864096350474824, 18.307190070106742 ], [ -64.864010856331049, 18.307216556933497 ], [ -64.863921337562147, 18.30722745341285 ], [ -64.863850594265386, 18.307242373207714 ], [ -64.863834333365446, 18.307246061246872 ], [ -64.863748836602326, 18.307264835409285 ], [ -64.863667364464334, 18.307295179223047 ], [ -64.863581870320559, 18.307313787057012 ], [ -64.863496373557439, 18.307340272574095 ], [ -64.863407022426713, 18.307343459008507 ], [ -64.863321528282938, 18.307358211165194 ], [ -64.863232177152156, 18.3073575406126 ], [ -64.863142826021431, 18.307360724427667 ], [ -64.863053474890648, 18.307363743223959 ], [ -64.862963956121803, 18.307374807341432 ], [ -64.862878795944596, 18.307358546441492 ], [ -64.862793634457773, 18.307342285541495 ], [ -64.86270428463672, 18.307337759311622 ], [ -64.862623315413146, 18.307305908064279 ], [ -64.86253413192054, 18.307293670479737 ], [ -64.86244897174339, 18.307273553902462 ], [ -64.862363979204417, 18.307245725970574 ], [ -64.86232039328695, 18.307223262459274 ], [ -64.862287200934475, 18.307206163368562 ], [ -64.862255348377403, 18.307128379269784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DFIRM_ID": "780000", "VERSION_ID": "1.1.1.0", "FLD_AR_ID": "780000_232", "STUDY_TYP": "NP", "FLD_ZONE": "X", "ZONE_SUBTY": "AREA OF MINIMAL FLOOD HAZARD", "SFHA_TF": "F", "STATIC_BFE": -9999.0, "V_DATUM": null, "DEPTH": -9999.0, "LEN_UNIT": null, "VELOCITY": -9999.0, "VEL_UNIT": null, "AR_REVERT": null, "AR_SUBTRV": null, "BFE_REVERT": -9999.0, "DEP_REVERT": -9999.0, "DUAL_ZONE": null, "SOURCE_CIT": "780000_FIS2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.931790635512016, 18.329272033057975 ], [ -64.931811757918183, 18.329184861223098 ], [ -64.931812596108898, 18.32909768938822 ], [ -64.931782756519283, 18.329019737651265 ], [ -64.931742691002853, 18.328941953552487 ], [ -64.931713019051358, 18.328864169453652 ], [ -64.931683179461743, 18.328786217716697 ], [ -64.931673790415971, 18.328698878243642 ], [ -64.931725088997723, 18.328631487709799 ], [ -64.931766327981165, 18.328554206525382 ], [ -64.931787450387276, 18.328467034690505 ], [ -64.931798345557013, 18.328379862855627 ], [ -64.9317991850574, 18.328292523382629 ], [ -64.931799855609938, 18.328205351547751 ], [ -64.931800692490981, 18.328118012074697 ], [ -64.931781080137853, 18.328030672601699 ], [ -64.931771692401753, 18.327943334438316 ], [ -64.931761466474995, 18.327943165490524 ], [ -64.931741851502466, 18.327860519885519 ], [ -64.931712179550971, 18.327782735786684 ], [ -64.931723077339996, 18.327695563951806 ], [ -64.931784432900713, 18.327628173417907 ], [ -64.93180555530688, 18.327541001583029 ], [ -64.931775714407536, 18.327463217484251 ], [ -64.931715365985383, 18.327394822431131 ], [ -64.931655016253558, 18.327326592396901 ], [ -64.931563821103225, 18.327306475819569 ], [ -64.931472625952892, 18.327286360551966 ], [ -64.931391992005615, 18.32721779655111 ], [ -64.931300796855282, 18.327207401676503 ], [ -64.931209434066773, 18.327197009421241 ], [ -64.931087727464558, 18.327186280580008 ], [ -64.930996365985777, 18.327166162693061 ], [ -64.930925790327137, 18.327117212355006 ], [ -64.930865440595312, 18.327048817301943 ], [ -64.930794864936672, 18.326980419629535 ], [ -64.930724289278032, 18.326931301653303 ], [ -64.930694448378745, 18.326853517554525 ], [ -64.930664610098802, 18.32677573345569 ], [ -64.930634938147307, 18.326697781718735 ], [ -64.930584645394447, 18.326629554303793 ], [ -64.930554974752624, 18.326551768895285 ], [ -64.930489092962034, 18.326524443877815 ], [ -64.930400746350472, 18.326499633432547 ], [ -64.930312234720077, 18.326474655349045 ], [ -64.930280383472734, 18.32643693676664 ], [ -64.930255908303707, 18.32640776772962 ], [ -64.930218524997599, 18.326328811473445 ], [ -64.930187511940971, 18.326250021545775 ], [ -64.930169239383247, 18.326165196644922 ], [ -64.930170077574019, 18.32608053938219 ], [ -64.930164377877077, 18.325995880809785 ], [ -64.930190529427534, 18.325911392494902 ], [ -64.930229086200654, 18.325833105481649 ], [ -64.930286753722214, 18.325767054743267 ], [ -64.930338050994294, 18.325694802703197 ], [ -64.930414326349819, 18.325653062115009 ], [ -64.93050300692795, 18.325647696384692 ], [ -64.930591519868017, 18.325672674468194 ], [ -64.930680032808027, 18.325673346330404 ], [ -64.930737700329587, 18.325607295592022 ], [ -64.930770054491347, 18.325528842250321 ], [ -64.930707190187377, 18.325467820656229 ], [ -64.930650863771007, 18.325400934346419 ], [ -64.930664107184384, 18.325316443412191 ], [ -64.930740550178029, 18.325274701514331 ], [ -64.93084817386648, 18.325275539705046 ], [ -64.930924449222005, 18.325233799116859 ], [ -64.930994689604347, 18.325179819634513 ], [ -64.931083370182478, 18.325168420240686 ], [ -64.93105235712585, 18.325089630313016 ], [ -64.931065768177405, 18.325005139378788 ], [ -64.93105386586916, 18.324920314477879 ], [ -64.931086220030977, 18.324841861136179 ], [ -64.93115629146547, 18.324788049291953 ], [ -64.93124497335333, 18.324779667384746 ], [ -64.931333821569638, 18.324768267990976 ], [ -64.931422502147825, 18.324756868597149 ], [ -64.931505146443158, 18.324721329310648 ], [ -64.931569017885693, 18.324661313545448 ], [ -64.931601204409333, 18.324582860203691 ], [ -64.931589468429593, 18.324492167967776 ], [ -64.931583267127905, 18.324473895410108 ], [ -64.93165317223395, 18.324432153512248 ], [ -64.931742020450258, 18.324414719145295 ], [ -64.931824666055263, 18.324379012220618 ], [ -64.931875963327343, 18.324306926508996 ], [ -64.931914520100463, 18.324228639495743 ], [ -64.931978390233326, 18.324168626349888 ], [ -64.932067238449633, 18.324151191982878 ], [ -64.932155751389644, 18.324157897508655 ], [ -64.932244430658159, 18.324170638007615 ], [ -64.932333112546019, 18.324153203640606 ], [ -64.932289526628608, 18.324080281047998 ], [ -64.932239401513868, 18.324007358455333 ], [ -64.932214760016336, 18.32392253355448 ], [ -64.932259853367441, 18.323832176594863 ], [ -64.932323723500303, 18.323772162139335 ], [ -64.932400166493949, 18.323724385268292 ], [ -64.932457666377331, 18.323658335839525 ], [ -64.932508963649411, 18.323586083799455 ], [ -64.932547689370324, 18.323507796786203 ], [ -64.932580043532141, 18.323429509773007 ], [ -64.932612396384229, 18.323351055121577 ], [ -64.932669897577341, 18.323278969410012 ], [ -64.932721193539692, 18.323206886317735 ], [ -64.932810043065729, 18.323189284312605 ], [ -64.932892687361004, 18.323153745026104 ], [ -64.932893359223272, 18.323069087763372 ], [ -64.932919343135609, 18.322984598138817 ], [ -64.932977009347439, 18.322918548710049 ], [ -64.933053284702964, 18.322876806812189 ], [ -64.933135931617642, 18.322847134860751 ], [ -64.933212205663494, 18.322805560601012 ], [ -64.933288482328692, 18.322763818703152 ], [ -64.933371126624024, 18.322734146751657 ], [ -64.933453101676434, 18.322771027143347 ], [ -64.933559719535992, 18.322898935047249 ], [ -64.933622417511515, 18.322965990304795 ], [ -64.933678742618213, 18.323032877924277 ], [ -64.933722497483473, 18.323105800516942 ], [ -64.93377899153802, 18.323172688136367 ], [ -64.933803465397375, 18.323257679365724 ], [ -64.933847220262635, 18.323330603268005 ], [ -64.93386549151063, 18.323415260530737 ], [ -64.93383313734887, 18.323499750155293 ], [ -64.933775637465487, 18.32356579958406 ], [ -64.93381285444309, 18.32364475714985 ], [ -64.933856606689005, 18.323717678432843 ], [ -64.933912934415105, 18.323784567361997 ], [ -64.933956686660963, 18.323857489954605 ], [ -64.933962218719728, 18.323942147217338 ], [ -64.93393003350576, 18.32402060186871 ], [ -64.933941934504332, 18.324105259131443 ], [ -64.934011001419663, 18.32416024444268 ], [ -64.934086773860713, 18.32420315849788 ], [ -64.934143101586812, 18.324270215065155 ], [ -64.934218706389743, 18.324313130430028 ], [ -64.934300847770601, 18.324343974538806 ], [ -64.934382822823011, 18.324374821266986 ], [ -64.934458427625998, 18.324417736631858 ], [ -64.934502182491258, 18.324490659224523 ], [ -64.934514083489773, 18.324575484125376 ], [ -64.934481730637685, 18.324653771138628 ], [ -64.934449376475868, 18.324732224480329 ], [ -64.934486758472303, 18.324811183355848 ], [ -64.934568733524713, 18.324848062437809 ], [ -64.934657246464781, 18.324872874192806 ], [ -64.934739221517191, 18.324909754584496 ], [ -64.934814827629793, 18.324952837587489 ], [ -64.934877522985971, 18.325013690233789 ], [ -64.934934017040518, 18.325080745491391 ], [ -64.935055051780466, 18.325161379438669 ], [ -64.935054716504169, 18.325200102540236 ], [ -64.935054045951631, 18.325287443322907 ], [ -64.935043149472278, 18.325374615157841 ], [ -64.935022027066111, 18.325461785683046 ], [ -64.934991014009483, 18.325539068177079 ], [ -64.935000401745526, 18.325626407650077 ], [ -64.934999563554811, 18.325713747123132 ], [ -64.935029404454099, 18.325791531221967 ], [ -64.935069301022736, 18.325869481649249 ], [ -64.935088914685593, 18.32595682243192 ], [ -64.935088076494822, 18.326044160595302 ], [ -64.935097631869041, 18.326131501377972 ], [ -64.935086735389689, 18.32621867321285 ], [ -64.935055554694884, 18.326296120725715 ], [ -64.935044659525204, 18.326383292560593 ], [ -64.935083885541246, 18.326466442389687 ], [ -64.935092267448454, 18.326466442389687 ], [ -64.935166532455924, 18.326530646489175 ], [ -64.935249512027497, 18.326579093912756 ], [ -64.935332492908799, 18.326603570391455 ], [ -64.935407091882894, 18.3266518488673 ], [ -64.935490240402316, 18.326676325346 ], [ -64.935589817459856, 18.326709013474385 ], [ -64.935681347886486, 18.32671773065789 ], [ -64.93576483168215, 18.326694430265547 ], [ -64.935848483116047, 18.32667129489198 ], [ -64.935914532544757, 18.32672745367023 ], [ -64.935989131518852, 18.32677573345569 ], [ -64.936072616624244, 18.326752599391796 ], [ -64.936139502933997, 18.326729131361333 ], [ -64.936205887639062, 18.326745558589778 ], [ -64.936255676167832, 18.326777912751538 ], [ -64.936313512637184, 18.326826024898878 ], [ -64.936329436951155, 18.32691369964823 ], [ -64.93632859876044, 18.327001206759348 ], [ -64.93634452438414, 18.327088713870523 ], [ -64.936343853831545, 18.327176220981698 ], [ -64.9363348013718, 18.327263729402546 ], [ -64.936333963181028, 18.327351236513721 ], [ -64.936316528814075, 18.327438574677046 ], [ -64.936282665909005, 18.327517867519191 ], [ -64.936257017272965, 18.327597160361279 ], [ -64.936239582905955, 18.327684499834334 ], [ -64.936197170455557, 18.327763792676421 ], [ -64.936179736088548, 18.327851133459149 ], [ -64.93617906553601, 18.327938640570267 ], [ -64.936186609252502, 18.328026146371769 ], [ -64.936210916783352, 18.328105942128332 ], [ -64.936235225623932, 18.328185737884894 ], [ -64.936234553761665, 18.328273244996069 ], [ -64.936250479385365, 18.328360752107187 ], [ -64.936266237370887, 18.328448426856539 ], [ -64.936290544901738, 18.328528222613045 ], [ -64.93633161624706, 18.328608018369607 ], [ -64.936364138046997, 18.32868781412617 ], [ -64.93641359129947, 18.328759898528062 ], [ -64.936471258820973, 18.328823937608774 ], [ -64.936529093980653, 18.328887974070085 ], [ -64.93659531104754, 18.328944300486455 ], [ -64.936661360476307, 18.329000459264705 ], [ -64.936744341357553, 18.329040860057432 ], [ -64.936818940331648, 18.329089139842893 ], [ -64.936851462131585, 18.329168935599455 ], [ -64.936817599226515, 18.329248228441543 ], [ -64.936758758237943, 18.329311428021811 ], [ -64.936708131518458, 18.329382674233045 ], [ -64.936657504798973, 18.329453752806103 ], [ -64.9366484536489, 18.329541259917278 ], [ -64.936631017972218, 18.329628599390276 ], [ -64.93663872932683, 18.329711412633401 ], [ -64.936630012143382, 18.329743096242623 ], [ -64.936679465395855, 18.329815180644573 ], [ -64.936728751010151, 18.329887097408346 ], [ -64.93677820426268, 18.329959181810239 ], [ -64.936835704146063, 18.330039145204921 ], [ -64.93690192121295, 18.330095303983171 ], [ -64.93696780300354, 18.330175435016031 ], [ -64.937034020070371, 18.330231593794224 ], [ -64.937091855230051, 18.330295631565264 ], [ -64.937141140844403, 18.330367715967157 ], [ -64.937115492208363, 18.330447008809301 ], [ -64.937064865488878, 18.330518255020479 ], [ -64.937030834945688, 18.330597547862624 ], [ -64.937005186309648, 18.330676840704712 ], [ -64.936979537673608, 18.330756133546856 ], [ -64.936953889037568, 18.330835594027064 ], [ -64.936944668939645, 18.330930980131029 ], [ -64.936902424127368, 18.331010105334997 ], [ -64.93686017931509, 18.331089398177085 ], [ -64.936817766864635, 18.331168523381052 ], [ -64.93675892587612, 18.331231722961377 ], [ -64.936758255323525, 18.331319230072552 ], [ -64.936740820956516, 18.33140656954555 ], [ -64.936723386589563, 18.331493909018548 ], [ -64.936714334129817, 18.331581416129723 ], [ -64.936713495939046, 18.331668923240898 ], [ -64.936671251126768, 18.331748216083042 ], [ -64.936670412936053, 18.33183555555604 ], [ -64.936669742383515, 18.331923061357543 ], [ -64.93667728609995, 18.33201073741651 ], [ -64.936709975538065, 18.332090533173073 ], [ -64.936767643059568, 18.332154570944056 ], [ -64.936833860126455, 18.332210728412633 ], [ -64.936916841007758, 18.332251130515033 ], [ -64.936982890436468, 18.332307456931403 ], [ -64.937049107503356, 18.332363614399981 ], [ -64.937113815826933, 18.33238959962199 ], [ -64.937130412003171, 18.3323976462529 ], [ -64.93721356052265, 18.332422121421928 ], [ -64.937296541403896, 18.332454643221809 ], [ -64.937387904192406, 18.332487165021746 ], [ -64.937470885073651, 18.332519685512011 ], [ -64.937553865954953, 18.332560087614411 ], [ -64.937636846836199, 18.332592440466556 ], [ -64.937719827717501, 18.332633010207076 ], [ -64.937802808598803, 18.332673410999746 ], [ -64.937885789480049, 18.332697886168773 ], [ -64.937977152268559, 18.332730407968711 ], [ -64.938068850333309, 18.332739125152216 ], [ -64.938160380759939, 18.332731915402348 ], [ -64.938251911186569, 18.332748512888259 ], [ -64.938334892067815, 18.332788912371313 ], [ -64.938426757770742, 18.332765779617091 ], [ -64.938518288197372, 18.332774329162419 ], [ -64.938525831913864, 18.332862003911771 ], [ -64.93860881279511, 18.332902403394769 ], [ -64.938691961314532, 18.332926878563796 ], [ -64.938774774557714, 18.332967279356524 ], [ -64.938840991624602, 18.333023439444446 ], [ -64.938898826784282, 18.333087643543934 ], [ -64.938982310579945, 18.333056464158801 ], [ -64.939073841006575, 18.333073060335039 ], [ -64.939165539071382, 18.333057805263934 ], [ -64.939257069497955, 18.333066522447439 ], [ -64.93924801703821, 18.333154029558614 ], [ -64.939247346485615, 18.333241535360116 ], [ -64.939305014007175, 18.333305574440772 ], [ -64.939329321538025, 18.333385370197334 ], [ -64.939311887171073, 18.333472708360659 ], [ -64.939286238535033, 18.333552002512477 ], [ -64.939285567982438, 18.333639509623652 ], [ -64.93924315553204, 18.333718802465739 ], [ -64.939225888803207, 18.333806140629065 ], [ -64.939183476352753, 18.333885267142705 ], [ -64.93915782640704, 18.33396472762297 ], [ -64.939123797173522, 18.334044020465114 ], [ -64.939073170454037, 18.3341150977285 ], [ -64.939014329465465, 18.33417829861844 ], [ -64.93895548847695, 18.334241498198708 ], [ -64.938905029395585, 18.334312744409942 ], [ -64.9388544026761, 18.33438399062112 ], [ -64.938811990225645, 18.334463114515415 ], [ -64.938769745413367, 18.33454240735756 ], [ -64.938719118693882, 18.33461348724029 ], [ -64.938660277705367, 18.334676685510885 ], [ -64.938609650985882, 18.334747931722063 ], [ -64.93855902426634, 18.33481917924297 ], [ -64.938508565185032, 18.334890256506355 ], [ -64.938457938465547, 18.334961502717533 ], [ -64.938399097476974, 18.335024703607473 ], [ -64.938365066933784, 18.335103996449618 ], [ -64.938306225945212, 18.335167194720214 ], [ -64.938255599225727, 18.335238440931448 ], [ -64.938188543968124, 18.335293593880806 ], [ -64.938121488710522, 18.335348746830164 ], [ -64.938062647722006, 18.335411946410488 ], [ -64.938011853364344, 18.335491071614456 ], [ -64.937961394282979, 18.335562151497186 ], [ -64.937885957118226, 18.335609425453754 ], [ -64.937802473322506, 18.335632559517649 ], [ -64.937710775257699, 18.335631887655381 ], [ -64.937627291462036, 18.335663068350186 ], [ -64.937576664742551, 18.335734314561364 ], [ -64.937526038023066, 18.335805394444094 ], [ -64.937475578941701, 18.335876639345656 ], [ -64.937423443478906, 18.335923914611897 ], [ -64.937406679664491, 18.335931793604686 ], [ -64.937323195868771, 18.335954926358909 ], [ -64.937231497804021, 18.335978229370596 ], [ -64.937139799739271, 18.335977389870152 ], [ -64.93704810167452, 18.335976720627286 ], [ -64.936965120793218, 18.335944197517676 ], [ -64.936907453271658, 18.335880159746637 ], [ -64.936823801837818, 18.335919219434231 ], [ -64.936732271411188, 18.335910669888847 ], [ -64.936640740984558, 18.335893907384161 ], [ -64.936557760103312, 18.335853506591434 ], [ -64.936483161129217, 18.335805225496301 ], [ -64.936400180247915, 18.335772703696364 ], [ -64.93631719936667, 18.335732302903637 ], [ -64.936251149937902, 18.335676145435059 ], [ -64.936193314778222, 18.335612106354404 ], [ -64.936144029163927, 18.335540021952511 ], [ -64.936069430189832, 18.335491743476666 ], [ -64.936011595030152, 18.335427704396011 ], [ -64.935953927508592, 18.335363666624971 ], [ -64.935887878079882, 18.335299462525541 ], [ -64.935846806734617, 18.335219497821129 ], [ -64.935805903027472, 18.335139703374296 ], [ -64.935756449774999, 18.335067786610523 ], [ -64.935698783563112, 18.335003579891691 ], [ -64.935657710908174, 18.334923785444801 ], [ -64.935608426603494, 18.334851867371356 ], [ -64.935559139679469, 18.334779784279135 ], [ -64.935509686426997, 18.334707867515363 ], [ -64.935485378896146, 18.334628070449128 ], [ -64.935427711374587, 18.334564032678088 ], [ -64.935378258122114, 18.334491949585868 ], [ -64.935320590600554, 18.334427910505212 ], [ -64.935262755440874, 18.334363872734173 ], [ -64.935213469826579, 18.334291789641952 ], [ -64.935147252759691, 18.33423562955403 ], [ -64.935055723642733, 18.334219033377735 ], [ -64.934988667075459, 18.334274187636822 ], [ -64.934905015641618, 18.33430536833157 ], [ -64.934822202398436, 18.3342649675389 ], [ -64.934772750455636, 18.33419288313695 ], [ -64.934723463531668, 18.334120966373177 ], [ -64.934699156000761, 18.334041170616672 ], [ -64.934666466562703, 18.333961373550437 ], [ -64.934700498415566, 18.333882080708349 ], [ -64.934767552363496, 18.333826929068607 ], [ -64.934842989528306, 18.333779821440487 ], [ -64.934860423895316, 18.333692483277105 ], [ -64.934812479386096, 18.333445552291039 ], [ -64.934804935669604, 18.333357877541687 ], [ -64.934797391953168, 18.333270370430569 ], [ -64.934781467639141, 18.333182694371544 ], [ -64.934765540705769, 18.333095188570042 ], [ -64.934741234484591, 18.333015391503864 ], [ -64.934758164627453, 18.332974152520421 ], [ -64.934758499903751, 18.332934423589961 ], [ -64.934750957496931, 18.332846747530994 ], [ -64.934743412470766, 18.332759240419819 ], [ -64.934735868754331, 18.332671734618316 ], [ -64.934728325037838, 18.332584059869021 ], [ -64.934687253692516, 18.332504264112458 ], [ -64.934688091883288, 18.332416757001283 ], [ -64.934688762435826, 18.332329249890108 ], [ -64.934697814895628, 18.33224191041711 ], [ -64.934698654396016, 18.332154403305935 ], [ -64.934691109369851, 18.33206672855664 ], [ -64.934691779922446, 18.331979221445465 ], [ -64.934684237515626, 18.33189171433429 ], [ -64.934676692489461, 18.331804207223115 ], [ -64.934677364351728, 18.33171670011194 ], [ -64.934694797409009, 18.331629360638942 ], [ -64.934636963559001, 18.331565155229782 ], [ -64.934637800440044, 18.331477648118607 ], [ -64.93468004656205, 18.33139852291464 ], [ -64.934697479619331, 18.331311183441585 ], [ -64.934748107648488, 18.331239937230407 ], [ -64.934806948637004, 18.331176737650139 ], [ -64.934857574046873, 18.331105491438905 ], [ -64.934866626506619, 18.331018151965907 ], [ -64.934875678966421, 18.330930644854732 ], [ -64.934851371435514, 18.330850849098169 ], [ -64.934877021381226, 18.330771556256082 ], [ -64.934919432522008, 18.330692431052114 ], [ -64.934953295427079, 18.330613138209969 ], [ -64.934995707877476, 18.330533845367881 ], [ -64.935079191673196, 18.330502664673077 ], [ -64.935170889738004, 18.330503335225671 ], [ -64.935229730726519, 18.330440303283524 ], [ -64.935263762579439, 18.330361010441436 ], [ -64.935272813729512, 18.330273503330261 ], [ -64.935298462365552, 18.330194210488116 ], [ -64.935307514825354, 18.330106703376998 ], [ -64.935283208604119, 18.330026907620436 ], [ -64.935275663578011, 18.329939400509261 ], [ -64.935293600859382, 18.329796405172431 ], [ -64.935294775636066, 18.32965324219748 ], [ -64.935209446511124, 18.329667323801573 ], [ -64.935128478597221, 18.329637484211901 ], [ -64.935057733990789, 18.329588533873846 ], [ -64.934987159641821, 18.329529860523451 ], [ -64.934957486380654, 18.329451908786496 ], [ -64.934836620588499, 18.329325006711485 ], [ -64.934755651364981, 18.32929516712187 ], [ -64.934674680831733, 18.329265495170375 ], [ -64.934583485681401, 18.3292453785931 ], [ -64.934492122892948, 18.329244708040505 ], [ -64.934400761414111, 18.329244037487967 ], [ -64.934309229677808, 18.329243199297252 ], [ -64.934227757539816, 18.329271697781735 ], [ -64.934156343690518, 18.329319642290898 ], [ -64.934074871552525, 18.32934814077538 ], [ -64.934003291374722, 18.329396085284543 ], [ -64.93395199279297, 18.329463475818443 ], [ -64.933890469594132, 18.329530866352343 ], [ -64.933818889416273, 18.329588533873846 ], [ -64.933737417278337, 18.329626755370725 ], [ -64.933645885542035, 18.32963564019235 ], [ -64.933564413404042, 18.329664138676833 ], [ -64.933492833226239, 18.329721806198336 ], [ -64.933421250429035, 18.329769750707555 ], [ -64.933339779600772, 18.329798081553861 ], [ -64.933258307462779, 18.329826580038343 ], [ -64.933166609397972, 18.329874356909386 ], [ -64.933084969621859, 18.329912578406208 ], [ -64.932983379596919, 18.329921463227834 ], [ -64.932891850479962, 18.329930348049459 ], [ -64.932800486381836, 18.329929677496921 ], [ -64.932709123593327, 18.329929006944326 ], [ -64.932617762114546, 18.329928336391731 ], [ -64.932536791581299, 18.329898496802116 ], [ -64.932455822357781, 18.329859101838281 ], [ -64.932364628517121, 18.329838985261006 ], [ -64.932273433366788, 18.329828591696071 ], [ -64.932181901630486, 18.329827921143476 ], [ -64.932080480553338, 18.329827082952761 ], [ -64.931999512639436, 18.329797411001266 ], [ -64.931928769342676, 18.329748293025091 ], [ -64.931888871464423, 18.329670341288136 ], [ -64.931899767943776, 18.329583169453258 ], [ -64.931910664423128, 18.32949599761838 ], [ -64.931860372979941, 18.329427768893765 ], [ -64.931810249174873, 18.32935954016915 ], [ -64.931790635512016, 18.329272033057975 ] ] ] ] } } +] +} diff --git a/data/parcel_value.geojson b/data/parcel_value.geojson new file mode 100644 index 0000000..a8752f2 --- /dev/null +++ b/data/parcel_value.geojson @@ -0,0 +1,24098 @@ +{ +"type": "FeatureCollection", +"name": "parcel_value", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::32161" } }, +"features": [ +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601062100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88035267, "LATITUDE": 18.33102047, "OBJECTID_1": 38137, "PARCEL_NO_": "107601062100", "Tax_Legal_": "7-44 MARIENDAHL RED HOOK QTR.", "Name": "WILLOCK, CHARLESWORTH & YVETTE", "Address": "PO Box 304405", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31100, "Improved_V": 197500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.49181439100001, "SHAPE_Area": 887.79988641900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364176.6841000020504, 255775.291600000113249 ], [ 364153.430500000715256, 255759.902499999850988 ], [ 364135.463299997150898, 255786.564300000667572 ], [ 364158.720399998128414, 255801.531199999153614 ], [ 364176.6841000020504, 255775.291600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701041300", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-40", "ACRE": ".287", "LONGITUDE": -64.85873962, "LATITUDE": 18.33097681, "OBJECTID_1": 39344, "PARCEL_NO_": "107701041300", "Tax_Legal_": "SMITH BAY ESTATE 19-2-40 1,2&3 EASTEND QTR", "Name": "GEORGE, L. ALPHONSO", "Address": "PO Box 304968", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.842507756, "SHAPE_Area": 986.77926223700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366428.880199998617172, 255774.304099999368191 ], [ 366428.531400002539158, 255815.253400001674891 ], [ 366430.140399999916553, 255815.688799999654293 ], [ 366446.225299999117851, 255820.675599999725819 ], [ 366450.418700002133846, 255801.711500000208616 ], [ 366458.658100001513958, 255781.091699998825788 ], [ 366444.99210000038147, 255776.124699998646975 ], [ 366439.353299997746944, 255775.445300001651049 ], [ 366432.101899996399879, 255774.752700001001358 ], [ 366428.880199998617172, 255774.304099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601062700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87963169, "LATITUDE": 18.33099635, "OBJECTID_1": 38143, "PARCEL_NO_": "107601062700", "Tax_Legal_": "7-49 MARIENDAHL RED HOOK QTR.", "Name": "WATLEY, J. & HODGE, D", "Address": "PO Box 6713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29000, "Improved_V": 94100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.97889513200001, "SHAPE_Area": 892.99251680500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364251.734099999070168, 255768.517499998211861 ], [ 364229.254399999976158, 255756.934500001370907 ], [ 364213.664800003170967, 255788.470899999141693 ], [ 364233.712899997830391, 255801.511700000613928 ], [ 364251.734099999070168, 255768.517499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601061800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88101957000001, "LATITUDE": 18.33096433, "OBJECTID_1": 38134, "PARCEL_NO_": "107601061800", "Tax_Legal_": "7-21 ESTATE MARIENDAHL RED HOOK QUARTER", "Name": "STEVENS, JERE", "Address": "PO Box 8213", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.245614695, "SHAPE_Area": 841.75955583699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364089.758799999952316, 255756.214999999850988 ], [ 364067.092100001871586, 255766.584100000560284 ], [ 364078.177299998700619, 255790.528400000184774 ], [ 364079.780900001525879, 255791.596999999135733 ], [ 364081.370200000703335, 255794.354299999773502 ], [ 364086.197300001978874, 255795.660300001502037 ], [ 364088.6216000020504, 255795.046900000423193 ], [ 364091.060300000011921, 255792.744800001382828 ], [ 364103.431900002062321, 255760.337699998170137 ], [ 364089.758799999952316, 255756.214999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86126072, "LATITUDE": 18.33099011, "OBJECTID_1": 39334, "PARCEL_NO_": "107701040200", "Tax_Legal_": "19-2-95 ESTATE SMITH BAY EASTEND QTR.", "Name": "KNIGHT, SAMUEL", "Address": "6533 EST. NAZARETH PILLSBURY HEIGHTS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34700, "Improved_V": 17500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.525069226, "SHAPE_Area": 1339.7023159099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366195.809199996292591, 255777.885000001639128 ], [ 366152.243100002408028, 255780.48369999974966 ], [ 366152.786899998784065, 255811.307799998670816 ], [ 366195.543099999427795, 255809.124600000679493 ], [ 366195.809199996292591, 255777.885000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701044400", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-29A", "ACRE": "0.32", "LONGITUDE": -64.85799696, "LATITUDE": 18.33082288, "OBJECTID_1": 39374, "PARCEL_NO_": "107701044400", "Tax_Legal_": "SMITH BAY ESTATE 19-2-29A EAST END QTR.", "Name": "STERLING, DORCAS & ELDINE", "Address": "6523 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34500, "Improved_V": 141800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.00561102, "SHAPE_Area": 2026.4043731500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366519.473200000822544, 255741.481699999421835 ], [ 366490.836800001561642, 255790.009899999946356 ], [ 366495.645900003612041, 255793.42680000141263 ], [ 366504.457800000905991, 255800.253899998962879 ], [ 366517.281499996781349, 255809.435899998992682 ], [ 366522.889700002968311, 255813.703699998557568 ], [ 366545.809900000691414, 255773.572399999946356 ], [ 366544.21169999986887, 255771.870600000023842 ], [ 366525.070600003004074, 255747.015900000929832 ], [ 366519.473200000822544, 255741.481699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602050200", "MAP": "A9-457-T94", "PARCEL_NAM": "37-45", "ACRE": "0.25", "LONGITUDE": -64.86655587, "LATITUDE": 18.33098636, "OBJECTID_1": 38515, "PARCEL_NO_": "107602050200", "Tax_Legal_": "37-45 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "BEDMINSTER, ELSIE & EVARISTE", "Address": "14QM Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27800, "Improved_V": 176800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.77198324, "SHAPE_Area": 1060.3922008699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365633.789599999785423, 255775.607099998742342 ], [ 365595.892899997532368, 255775.296999998390675 ], [ 365594.852899998426437, 255802.730599999427795 ], [ 365632.740599997341633, 255804.096200000494719 ], [ 365633.789599999785423, 255775.607099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601064400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87902215, "LATITUDE": 18.33091166, "OBJECTID_1": 38159, "PARCEL_NO_": "107601064400", "Tax_Legal_": "MARIENDAHL ESTATE 7-94 RED HOOK QUARTER", "Name": "FRANCIS, GARFIELD & MARY T", "Address": "PO Box 305317", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.262370207, "SHAPE_Area": 853.25042804600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364315.546099998056889, 255755.740899998694658 ], [ 364309.106299996376038, 255754.421599999070168 ], [ 364293.83500000089407, 255748.597100000828505 ], [ 364279.031800001859665, 255782.462000001221895 ], [ 364298.298799999058247, 255792.54109999909997 ], [ 364315.546099998056889, 255755.740899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601062800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8798541, "LATITUDE": 18.33087914, "OBJECTID_1": 38144, "PARCEL_NO_": "107601062800", "Tax_Legal_": "7-47 ESTATE MARIENDAHL RED HOOK QUARTER", "Name": "THOMPSON, GERTRUDE", "Address": "20 Hansborough St", "City": "Dorchester Center", "State": "Massachusetts", "Zip": 2124, "Country": "United States", "Land_Value": 30200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.931278072, "SHAPE_Area": 983.96799635800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364229.254399999976158, 255756.934500001370907 ], [ 364204.366599999368191, 255744.065200001001358 ], [ 364188.004799999296665, 255771.584499999880791 ], [ 364213.664800003170967, 255788.470899999141693 ], [ 364229.254399999976158, 255756.934500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601065700", "MAP": null, "PARCEL_NAM": "7-81", "ACRE": null, "LONGITUDE": -64.87751594, "LATITUDE": 18.33088496, "OBJECTID_1": 38172, "PARCEL_NO_": "107601065700", "Tax_Legal_": "7-81 ESTATE MARIENDAHL REDHOOK, QTR.", "Name": "JOSEPH, ROBERT", "Address": "PO Box 302062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27500, "Improved_V": 93000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.116712377, "SHAPE_Area": 1007.88022296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364473.592299997806549, 255755.978999998420477 ], [ 364447.871200002729893, 255746.269299998879433 ], [ 364437.898800000548363, 255781.018100000917912 ], [ 364462.81530000269413, 255790.510099999606609 ], [ 364475.199500001966953, 255756.625399999320507 ], [ 364473.592299997806549, 255755.978999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86050612, "LATITUDE": 18.33091652, "OBJECTID_1": 39339, "PARCEL_NO_": "107701040700", "Tax_Legal_": "19-2-87 ESTATE SMITH BAY 1,2,3 EAST END QTR", "Name": "PROPHETE, ANTONIO & VANDERHORST, M", "Address": "PO Box 304996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37400, "Improved_V": 83400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.68148075100001, "SHAPE_Area": 1172.2176337799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366237.048000000417233, 255764.501400001347065 ], [ 366238.3800999969244, 255797.442899998277426 ], [ 366238.315399996936321, 255805.041700001806021 ], [ 366272.189499996602535, 255804.2635000012815 ], [ 366271.467699997127056, 255794.336199998855591 ], [ 366273.217000000178814, 255778.307399999350309 ], [ 366271.622299998998642, 255776.183400001376867 ], [ 366270.015100002288818, 255775.537000000476837 ], [ 366237.048000000417233, 255764.501400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701050800", "MAP": "A9-457-T94", "PARCEL_NAM": "37-2", "ACRE": "0.24", "LONGITUDE": -64.86576015, "LATITUDE": 18.33090549, "OBJECTID_1": 39382, "PARCEL_NO_": "107701050800", "Tax_Legal_": "FRYDENHOJ ESTATE 37-2\nEAST END QUARTER", "Name": "TRUST AGREEMENT OF SONIA J FRANCIS", "Address": "PO Box 503372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27800, "Improved_V": 112300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.509108564, "SHAPE_Area": 1097.0196892700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365721.892099998891354, 255782.366099998354912 ], [ 365702.798199996352196, 255758.567499998956919 ], [ 365700.037600003182888, 255760.837000001221895 ], [ 365670.336999997496605, 255785.253600001335144 ], [ 365671.601800002157688, 255785.837999999523163 ], [ 365691.680500000715256, 255795.290500000119209 ], [ 365701.325699999928474, 255798.958000000566244 ], [ 365705.351800002157688, 255799.624200001358986 ], [ 365719.987700000405312, 255785.389699999243021 ], [ 365721.892099998891354, 255782.366099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601062000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88059553, "LATITUDE": 18.33086944, "OBJECTID_1": 38136, "PARCEL_NO_": "107601062000", "Tax_Legal_": "7-43 MARIENDAHL RED HOOK QTR.", "Name": "SIMON, JEREMIAH & MARY", "Address": "PO Box 10111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34000, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.59655680500001, "SHAPE_Area": 1079.02928838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364153.430500000715256, 255759.902499999850988 ], [ 364130.176899999380112, 255744.5135000012815 ], [ 364126.958800002932549, 255743.642700001597404 ], [ 364122.921899996697903, 255744.243000000715256 ], [ 364118.051600001752377, 255748.00279999896884 ], [ 364109.801500000059605, 255769.888999998569489 ], [ 364135.463299997150898, 255786.564300000667572 ], [ 364153.430500000715256, 255759.902499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701010400", "MAP": null, "PARCEL_NAM": "169-1", "ACRE": null, "LONGITUDE": -64.86468572, "LATITUDE": 18.33091551, "OBJECTID_1": 39126, "PARCEL_NO_": "107701010400", "Tax_Legal_": "FRYDENHOJ ESTATE 169-1 RED HOOK QTR", "Name": "FAHIE, FREDERICK & GRASALIA", "Address": "PO Box 503166", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37200, "Improved_V": 331000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.551366399, "SHAPE_Area": 859.03717471899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365827.387299999594688, 255767.481300000101328 ], [ 365795.883599996566772, 255773.978500001132488 ], [ 365794.161300003528595, 255786.841099999845028 ], [ 365794.954999998211861, 255788.325300000607967 ], [ 365795.691200003027916, 255796.563900001347065 ], [ 365798.090400002896786, 255798.905600000172853 ], [ 365803.732699997723103, 255799.162900000810623 ], [ 365807.782300002872944, 255797.085099998861551 ], [ 365832.038199998438358, 255789.473099999129772 ], [ 365827.387299999594688, 255767.481300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601064200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87926658000001, "LATITUDE": 18.33080655, "OBJECTID_1": 38157, "PARCEL_NO_": "107601064200", "Tax_Legal_": "7-96 MARIENDAHL RED HOOK QTR.", "Name": "POTTER, GLASTON & PRISCILLA", "Address": "PO Box 10312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 187200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.28925407200001, "SHAPE_Area": 1211.8757164900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364293.83500000089407, 255748.597100000828505 ], [ 364257.664200000464916, 255735.002199999988079 ], [ 364251.734099999070168, 255768.517499998211861 ], [ 364279.031800001859665, 255782.462000001221895 ], [ 364293.83500000089407, 255748.597100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86081919, "LATITUDE": 18.33084113, "OBJECTID_1": 39338, "PARCEL_NO_": "107701040600", "Tax_Legal_": "SMITH BAY 19-2-88 EASTEND QTR.", "Name": "PIERRE, GLOUSTER", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47200, "Improved_V": 379300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.12635491200001, "SHAPE_Area": 1217.1525129 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366208.904399998486042, 255755.193999998271465 ], [ 366205.648599997162819, 255758.756000000983477 ], [ 366205.319499999284744, 255797.383400000631809 ], [ 366238.3800999969244, 255797.442899998277426 ], [ 366237.048000000417233, 255764.501400001347065 ], [ 366208.904399998486042, 255755.193999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601061200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88159622000001, "LATITUDE": 18.3307656, "OBJECTID_1": 38128, "PARCEL_NO_": "107601061200", "Tax_Legal_": "MARIENDAHL 7-18 RED HOOK QTR.", "Name": "ADAMS, CARLTON & ISLYN", "Address": "PO Box 502112", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30700, "Improved_V": 185100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.64151935300001, "SHAPE_Area": 1354.59387743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364050.292599998414516, 255750.825699999928474 ], [ 364044.767099998891354, 255736.848299998790026 ], [ 364037.614600002765656, 255724.546399999409914 ], [ 363997.8445999994874, 255754.8293999992311 ], [ 364012.165799997746944, 255777.533700000494719 ], [ 364050.292599998414516, 255750.825699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601065500", "MAP": null, "PARCEL_NAM": "7-83", "ACRE": null, "LONGITUDE": -64.87775331, "LATITUDE": 18.33080595, "OBJECTID_1": 38170, "PARCEL_NO_": "107601065500", "Tax_Legal_": "7-83 MARIENDAHL RED HOOK QTR.", "Name": "GILBERT, HAROLD & ROSALIN", "Address": "6083 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29800, "Improved_V": 173800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.610364285, "SHAPE_Area": 908.73808013799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364430.990800000727177, 255740.009399998933077 ], [ 364424.560099996626377, 255737.634700000286102 ], [ 364413.774099998176098, 255773.2212999984622 ], [ 364422.627400003373623, 255775.193599998950958 ], [ 364437.898800000548363, 255781.018100000917912 ], [ 364447.871200002729893, 255746.269299998879433 ], [ 364430.990800000727177, 255740.009399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701016800", "MAP": null, "PARCEL_NAM": "169-9", "ACRE": null, "LONGITUDE": -64.86509356000001, "LATITUDE": 18.33082793, "OBJECTID_1": 39185, "PARCEL_NO_": "107701016800", "Tax_Legal_": "169-9 FRYDENHOJ RED HOOK QTR", "Name": "PETERS, CAROLYN & EGENE", "Address": "PO Box 304079", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 203000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.61128417500001, "SHAPE_Area": 1029.84105172 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365787.86540000140667, 255768.635499998927116 ], [ 365753.377400003373623, 255746.821699999272823 ], [ 365754.131599999964237, 255752.949599999934435 ], [ 365756.232199996709824, 255790.330400001257658 ], [ 365786.064000003039837, 255790.785599999129772 ], [ 365786.195299997925758, 255775.376899998635054 ], [ 365787.86540000140667, 255768.635499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011100", "MAP": null, "PARCEL_NAM": "169-2", "ACRE": null, "LONGITUDE": -64.86438895000001, "LATITUDE": 18.33082912, "OBJECTID_1": 39133, "PARCEL_NO_": "107701011100", "Tax_Legal_": "169-2 EST FRYDENHOL REDHOOK QTR", "Name": "VENZEN, JANETTE M", "Address": "6532 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25500, "Improved_V": 45800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.177391087, "SHAPE_Area": 604.66325220800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365862.1199000030756, 255760.58839999884367 ], [ 365827.387299999594688, 255767.481300000101328 ], [ 365832.038199998438358, 255789.473099999129772 ], [ 365845.783299997448921, 255785.152699999511242 ], [ 365853.894900001585484, 255779.519499998539686 ], [ 365858.788599997758865, 255773.015700001269579 ], [ 365862.1199000030756, 255760.58839999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701051000", "MAP": "A9-457-T94", "PARCEL_NAM": "37-3", "ACRE": "0.25", "LONGITUDE": -64.86594457, "LATITUDE": 18.33075635, "OBJECTID_1": 39384, "PARCEL_NO_": "107701051000", "Tax_Legal_": "37-3 FRYDENHOJ RED HOOK QUARTER", "Name": "JOSIAH, ALFREDO", "Address": "P.O. BOX 3153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29300, "Improved_V": 194900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.48573416100001, "SHAPE_Area": 932.29019993600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365691.201700001955032, 255742.747600000351667 ], [ 365689.995800003409386, 255741.014899998903275 ], [ 365687.891199998557568, 255742.981699999421835 ], [ 365654.100100003182888, 255774.560699999332428 ], [ 365657.160099998116493, 255777.276099998503923 ], [ 365662.766500003635883, 255781.754900000989437 ], [ 365670.336999997496605, 255785.253600001335144 ], [ 365700.037600003182888, 255760.837000001221895 ], [ 365702.798199996352196, 255758.567499998956919 ], [ 365691.201700001955032, 255742.747600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701042000", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-25", "ACRE": null, "LONGITUDE": -64.85974109, "LATITUDE": 18.33070118, "OBJECTID_1": 39351, "PARCEL_NO_": "107701042000", "Tax_Legal_": "19-2-25 ESTATE SMITH BAY 1,2,3, EAST END QTR", "Name": "Louis Sorhaindo", "Address": "PO Box 503242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053242, "Country": "United States", "Land_Value": 43400, "Improved_V": 162500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.31286160900001, "SHAPE_Area": 1242.3312733499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366355.555399999022484, 255745.06810000166297 ], [ 366325.94200000166893, 255741.797600001096725 ], [ 366315.130800001323223, 255780.339200001209974 ], [ 366342.074799999594688, 255789.185600001364946 ], [ 366355.555399999022484, 255745.06810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601081700", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-17", "ACRE": "0.27", "LONGITUDE": -64.87693223, "LATITUDE": 18.33048021, "OBJECTID_1": 38207, "PARCEL_NO_": "107601081700", "Tax_Legal_": "10-17 MARIENDAHL No.4 RED HOOK QUARTER", "Name": "JOSEPH, HYANCINTH & NORMA", "Address": "6087 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26600, "Improved_V": 87500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.48384901599999, "SHAPE_Area": 1384.33852269 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364521.935099996626377, 255760.596500001847744 ], [ 364526.39580000191927, 255761.104899998754263 ], [ 364534.595499999821186, 255694.656700000166893 ], [ 364496.562799997627735, 255709.9375 ], [ 364497.320600003004074, 255715.643199998885393 ], [ 364502.068599998950958, 255726.236800000071526 ], [ 364521.935099996626377, 255760.596500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601062900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88011499, "LATITUDE": 18.33073347, "OBJECTID_1": 38145, "PARCEL_NO_": "107601062900", "Tax_Legal_": "7-45 ESTATE MARIENDAHL RED HOOK QTR.", "Name": "REED, LENNIE G. & COREEN D. R.", "Address": "PO BOX 9467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 252600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.111494701, "SHAPE_Area": 1050.26347007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364186.703299999237061, 255735.054699998348951 ], [ 364173.055299997329712, 255727.97690000012517 ], [ 364159.135799996554852, 255752.771999999880791 ], [ 364188.004799999296665, 255771.584499999880791 ], [ 364204.366599999368191, 255744.065200001001358 ], [ 364186.703299999237061, 255735.054699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601065300", "MAP": null, "PARCEL_NAM": "7-85", "ACRE": null, "LONGITUDE": -64.87798371, "LATITUDE": 18.33073868, "OBJECTID_1": 38168, "PARCEL_NO_": "107601065300", "Tax_Legal_": "7-85 MARIENDAHL RED HOOK QTR.", "Name": "SAUNDERS, JR. OTHNIEL & E", "Address": "PO Box 6072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31100, "Improved_V": 98000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.915246497, "SHAPE_Area": 993.24639642399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364424.560099996626377, 255737.634700000286102 ], [ 364400.444399997591972, 255728.782499998807907 ], [ 364388.825199998915195, 255767.528599999845028 ], [ 364413.774099998176098, 255773.2212999984622 ], [ 364424.560099996626377, 255737.634700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701042500", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-28", "ACRE": null, "LONGITUDE": -64.85824129, "LATITUDE": 18.33061322, "OBJECTID_1": 39356, "PARCEL_NO_": "107701042500", "Tax_Legal_": "SMITH BAY ESTATE 19-2-28 EAST END QUARTER", "Name": "PATRONISE JAMES and DORCIA ULYSSES-DIALLO", "Address": "39 St Stanislaus St", "City": "Rochester", "State": "New York", "Zip": 14621, "Country": "United States", "Land_Value": 44500, "Improved_V": 274900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.480714522, "SHAPE_Area": 1751.0947283400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366496.280699998140335, 255718.916000001132488 ], [ 366467.577799998223782, 255775.254099998623133 ], [ 366479.609600000083447, 255782.740899998694658 ], [ 366490.836800001561642, 255790.009899999946356 ], [ 366519.473200000822544, 255741.481699999421835 ], [ 366496.280699998140335, 255718.916000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701042200", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-11", "ACRE": "0.35", "LONGITUDE": -64.85927173, "LATITUDE": 18.33063561, "OBJECTID_1": 39353, "PARCEL_NO_": "107701042200", "Tax_Legal_": "19-2-11 ESTATE SMITH BAY EASTEND QTR.", "Name": "ALESTER S CARTY and DEBRA T CARTY", "Address": "PO Box 6406", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046406, "Country": "United States", "Land_Value": 41000, "Improved_V": 335200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.05111763400001, "SHAPE_Area": 1403.5620898100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366407.791900001466274, 255767.068999998271465 ], [ 366398.68469999730587, 255734.767200000584126 ], [ 366379.981100000441074, 255740.339999999850988 ], [ 366358.972000002861023, 255745.44539999961853 ], [ 366355.555399999022484, 255745.06810000166297 ], [ 366383.396700002253056, 255785.289099998772144 ], [ 366384.238300003111362, 255784.314300000667572 ], [ 366387.70440000295639, 255780.299899999052286 ], [ 366391.768299996852875, 255776.533500000834465 ], [ 366397.45380000025034, 255771.724899999797344 ], [ 366404.744800001382828, 255767.773800000548363 ], [ 366407.791900001466274, 255767.068999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601061300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88114525, "LATITUDE": 18.33068621, "OBJECTID_1": 38129, "PARCEL_NO_": "107601061300", "Tax_Legal_": "7-19 MARIENDAHL No.4 RED HOOK QTR.", "Name": "TODMAN, CLARENCE E", "Address": "PO Box 12402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 103900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.81759272, "SHAPE_Area": 1021.24506992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364089.758799999952316, 255756.214999999850988 ], [ 364079.607600003480911, 255717.290699999779463 ], [ 364053.65089999884367, 255735.232299998402596 ], [ 364067.092100001871586, 255766.584100000560284 ], [ 364089.758799999952316, 255756.214999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601080200", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-2", "ACRE": "0.28", "LONGITUDE": -64.87719742, "LATITUDE": 18.33067544, "OBJECTID_1": 38194, "PARCEL_NO_": "107601080200", "Tax_Legal_": "10-2 MARIENDAHL RED HOOK QTR.", "Name": "SAUNDERS, TONYA L", "Address": "PO Box 6072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35200, "Improved_V": 145500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.999241243, "SHAPE_Area": 1251.86843288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364470.642200000584126, 255723.657499998807907 ], [ 364473.592299997806549, 255755.978999998420477 ], [ 364475.199500001966953, 255756.625399999320507 ], [ 364499.31700000166893, 255765.266499999910593 ], [ 364516.219099998474121, 255771.534600000828505 ], [ 364517.198100000619888, 255766.54280000180006 ], [ 364497.138999998569489, 255736.962200000882149 ], [ 364489.232299998402596, 255718.532299999147654 ], [ 364470.642200000584126, 255723.657499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701050600", "MAP": "A9-464-T95", "PARCEL_NAM": "37-8", "ACRE": "0.25", "LONGITUDE": -64.86551267, "LATITUDE": 18.33066717, "OBJECTID_1": 39380, "PARCEL_NO_": "107701050600", "Tax_Legal_": "FRYDENHOJ ESTATE 37-8 RED HOOK QUARTER", "Name": "ELOI, FELIX & DAPHNE", "Address": "4317 James Wade Dr", "City": "Snellville", "State": "Georgia", "Zip": 30039, "Country": "United States", "Land_Value": 27800, "Improved_V": 152200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.792923609, "SHAPE_Area": 956.13911452599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365718.020099997520447, 255732.38910000026226 ], [ 365705.745600000023842, 255753.397999998182058 ], [ 365726.495800003409386, 255778.687899999320507 ], [ 365737.071299999952316, 255767.797600001096725 ], [ 365742.807199999690056, 255757.07880000025034 ], [ 365744.466600000858307, 255751.603900000452995 ], [ 365718.020099997520447, 255732.38910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601065100", "MAP": "C9-287A-T82", "PARCEL_NAM": "7-87", "ACRE": "0.23", "LONGITUDE": -64.87820465, "LATITUDE": 18.33067683, "OBJECTID_1": 38166, "PARCEL_NO_": "107601065100", "Tax_Legal_": "7-87 MARIENDAHL RED HOOD QTR.", "Name": "PINDER, ASTREL (TRUSTEE)", "Address": "PO Box 10883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 35800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.38999074399999, "SHAPE_Area": 953.32974476899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364393.209200002253056, 255726.190200001001358 ], [ 364379.543200001120567, 255721.223200000822544 ], [ 364365.5050999969244, 255759.949499998241663 ], [ 364388.825199998915195, 255767.528599999845028 ], [ 364400.444399997591972, 255728.782499998807907 ], [ 364393.209200002253056, 255726.190200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701051100", "MAP": "A9-457-T94", "PARCEL_NAM": "37-4", "ACRE": "0.25", "LONGITUDE": -64.86608308, "LATITUDE": 18.33060961, "OBJECTID_1": 39385, "PARCEL_NO_": "107701051100", "Tax_Legal_": "37-4 ESTATE FRYDENHOJ RED HOOK QTR.", "Name": "HUGHES, DOUGLAS & JOYCE ABRAHAM", "Address": "6261 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30200, "Improved_V": 140200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.56786011099999, "SHAPE_Area": 1198.58009253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365681.688299998641014, 255729.078899998217821 ], [ 365676.47240000218153, 255721.584800001233816 ], [ 365674.214500002563, 255723.253499999642372 ], [ 365640.117700003087521, 255754.245799999684095 ], [ 365642.003799997270107, 255757.942499998956919 ], [ 365649.95719999819994, 255770.884300000965595 ], [ 365654.100100003182888, 255774.560699999332428 ], [ 365687.891199998557568, 255742.981699999421835 ], [ 365689.995800003409386, 255741.014899998903275 ], [ 365681.688299998641014, 255729.078899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86127877, "LATITUDE": 18.33069257, "OBJECTID_1": 39335, "PARCEL_NO_": "107701040300", "Tax_Legal_": "SMITH BAY ESTATE 19-2-1 EAST END QUARTER", "Name": "DOBSON, RUSSELL S.", "Address": "114 La Paloma", "City": "Santa Fe", "State": "New Mexico", "Zip": 87505, "Country": "United States", "Land_Value": 50000, "Improved_V": 2700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.219324951, "SHAPE_Area": 1529.9098878100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366184.803099997341633, 255744.653200000524521 ], [ 366150.961400002241135, 255741.631999999284744 ], [ 366152.243100002408028, 255780.48369999974966 ], [ 366195.809199996292591, 255777.885000001639128 ], [ 366195.996200002729893, 255755.932799998670816 ], [ 366194.423100002110004, 255751.275800000876188 ], [ 366192.00959999859333, 255750.622800000011921 ], [ 366184.803099997341633, 255744.653200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602050300", "MAP": "A9-457-T94", "PARCEL_NAM": "37-44", "ACRE": "0.25", "LONGITUDE": -64.86656123, "LATITUDE": 18.33073222, "OBJECTID_1": 38516, "PARCEL_NO_": "107602050300", "Tax_Legal_": "FRYDENHOJ 37-44 RED HOOK QTR.", "Name": "THOMAS, LANIE", "Address": "6506 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29300, "Improved_V": 119500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.517091338, "SHAPE_Area": 1040.47700267 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365625.175499998033047, 255745.5614 ], [ 365596.949199996888638, 255745.963599998503923 ], [ 365595.892899997532368, 255775.296999998390675 ], [ 365633.789599999785423, 255775.607099998742342 ], [ 365633.87950000166893, 255765.053199999034405 ], [ 365633.103799998760223, 255761.458299998193979 ], [ 365632.319099999964237, 255758.918699998408556 ], [ 365629.937899999320507, 255754.466299999505281 ], [ 365625.175499998033047, 255745.5614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701041900", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-24", "ACRE": "0.28", "LONGITUDE": -64.86002259, "LATITUDE": 18.3306351, "OBJECTID_1": 39350, "PARCEL_NO_": "107701041900", "Tax_Legal_": "SMITH BAY ESTATE 19-2-24 EAST END QUARTER", "Name": "LEWIS, ANNETTE & ROBENET", "Address": "6519 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32800, "Improved_V": 198100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.35994821200001, "SHAPE_Area": 1252.8962187499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366325.94200000166893, 255741.797600001096725 ], [ 366295.37219999730587, 255733.314699999988079 ], [ 366284.575499996542931, 255770.167700000107288 ], [ 366315.130800001323223, 255780.339200001209974 ], [ 366325.94200000166893, 255741.797600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601061900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88091481, "LATITUDE": 18.33063734, "OBJECTID_1": 38135, "PARCEL_NO_": "107601061900", "Tax_Legal_": "7-39 MARIENDAHL RED HOOK QTR.", "Name": "MONSANTO, E. , R. , E. , R", "Address": "PO Box 9728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 45000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.032651573, "SHAPE_Area": 883.88746613299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364112.585500001907349, 255727.059799998998642 ], [ 364079.607600003480911, 255717.290699999779463 ], [ 364089.758799999952316, 255756.214999999850988 ], [ 364103.431900002062321, 255760.337699998170137 ], [ 364113.330700002610683, 255734.243099998682737 ], [ 364112.585500001907349, 255727.059799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011400", "MAP": null, "PARCEL_NAM": "169-3", "ACRE": "0.319", "LONGITUDE": -64.86448674, "LATITUDE": 18.33062592, "OBJECTID_1": 39135, "PARCEL_NO_": "107701011400", "Tax_Legal_": "FRYDENHOJ 169-3 RED HOOK QTR", "Name": "VINCENT SAMUEL FAMILY REVOC TRUST & MARIA A NEGRON", "Address": "169-3 ESTATE FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42700, "Improved_V": 291900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.360270136, "SHAPE_Area": 1839.85518572 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365862.1199000030756, 255760.58839999884367 ], [ 365864.004100002348423, 255728.728700000792742 ], [ 365813.922799997031689, 255738.873500000685453 ], [ 365811.446299999952316, 255745.608199998736382 ], [ 365800.832999996840954, 255760.931200001388788 ], [ 365795.883599996566772, 255773.978500001132488 ], [ 365827.387299999594688, 255767.481300000101328 ], [ 365862.1199000030756, 255760.58839999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601064000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87955288000001, "LATITUDE": 18.33068806, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.19677554800001, "SHAPE_Area": 959.11820231299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364257.664200000464916, 255735.002199999988079 ], [ 364223.903399996459484, 255722.482500001788139 ], [ 364229.254399999976158, 255756.934500001370907 ], [ 364251.734099999070168, 255768.517499998211861 ], [ 364257.664200000464916, 255735.002199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011200", "MAP": "F9-2592-T70", "PARCEL_NAM": "162", "ACRE": "0.23", "LONGITUDE": -64.86392516, "LATITUDE": 18.3307157, "OBJECTID_1": 39134, "PARCEL_NO_": "107701011200", "Tax_Legal_": "162 FRYDENHOJ RED HOOK QTR", "Name": "ALCANTARA, RAMONA, ZOILITA & ALEX", "Address": "PO Box 307498", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32100, "Improved_V": 115400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.92908160299999, "SHAPE_Area": 1027.37227138 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365913.04169999808073, 255746.439699999988079 ], [ 365872.668499998748302, 255752.86430000141263 ], [ 365868.482299998402596, 255770.984099999070168 ], [ 365869.263400003314018, 255773.945799998939037 ], [ 365913.617799997329712, 255773.464400000870228 ], [ 365913.04169999808073, 255746.439699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601064900", "MAP": null, "PARCEL_NAM": "7-89", "ACRE": null, "LONGITUDE": -64.87846678, "LATITUDE": 18.33058145, "OBJECTID_1": 38164, "PARCEL_NO_": "107601064900", "Tax_Legal_": "MARIENDAHL 7-89 RED HOOK QTR.", "Name": "BLYDEN, SHEILA", "Address": "PO Box 6673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28700, "Improved_V": 66300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.181108362, "SHAPE_Area": 1483.61350816 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364353.82039999961853, 255711.724500000476837 ], [ 364344.17339999973774, 255708.268100000917912 ], [ 364334.222499996423721, 255740.483899999409914 ], [ 364339.792999997735023, 255749.184399999678135 ], [ 364342.991200000047684, 255752.377000000327826 ], [ 364365.5050999969244, 255759.949499998241663 ], [ 364379.543200001120567, 255721.223200000822544 ], [ 364353.82039999961853, 255711.724500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601063800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87987954, "LATITUDE": 18.3305596, "OBJECTID_1": 38154, "PARCEL_NO_": "107601063800", "Tax_Legal_": "7-99EST.MARIENDAHL RED HOOK QTR.", "Name": "JACOBS, WELDEN & TURNBULL, B", "Address": "PO Box 9494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.95758773399999, "SHAPE_Area": 1238.6838280500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364223.903399996459484, 255722.482500001788139 ], [ 364217.472599998116493, 255720.107799999415874 ], [ 364185.351400002837181, 255704.435100000351667 ], [ 364186.703299999237061, 255735.054699998348951 ], [ 364204.366599999368191, 255744.065200001001358 ], [ 364229.254399999976158, 255756.934500001370907 ], [ 364223.903399996459484, 255722.482500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701042400", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-27", "ACRE": null, "LONGITUDE": -64.85850524, "LATITUDE": 18.33053589, "OBJECTID_1": 39355, "PARCEL_NO_": "107701042400", "Tax_Legal_": "SMITH BAY ESTATE 19-2-27 EASTEND QUARTER", "Name": "JOHN-LEWIS, JOSEPH & HYACINTH", "Address": "PO BOX 302184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48300, "Improved_V": 669800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.14277384799999, "SHAPE_Area": 1567.4374916899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366496.280699998140335, 255718.916000001132488 ], [ 366455.04730000346899, 255731.666299998760223 ], [ 366448.589599996805191, 255732.457800000905991 ], [ 366442.652300000190735, 255766.817499998956919 ], [ 366448.287500001490116, 255767.919100001454353 ], [ 366467.577799998223782, 255775.254099998623133 ], [ 366496.280699998140335, 255718.916000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601061000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88173558, "LATITUDE": 18.33057652, "OBJECTID_1": 38126, "PARCEL_NO_": "107601061000", "Tax_Legal_": "7-16 EST. MARIENDAHL RED HOOK QTR.", "Name": "WILKINSON, MARLENE & SYLVESTER, T.B.& J.N.", "Address": "PO Box 307123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 14300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.575455855, "SHAPE_Area": 1179.64413328 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364027.658600002527237, 255707.825699999928474 ], [ 363983.076800003647804, 255731.395199999213219 ], [ 363997.8445999994874, 255754.8293999992311 ], [ 364037.614600002765656, 255724.546399999409914 ], [ 364027.658600002527237, 255707.825699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701016700", "MAP": null, "PARCEL_NAM": "169-8", "ACRE": "169-8", "LONGITUDE": -64.86504173, "LATITUDE": 18.33053041, "OBJECTID_1": 39184, "PARCEL_NO_": "107701016700", "Tax_Legal_": "FRYDENHOJ 169-8\nRED HOOK QTR", "Name": "LISTON and ALMA DAVIS (LIFE ESTATE)", "Address": "PO Box 301912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36700, "Improved_V": 206400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.447694262, "SHAPE_Area": 1557.3963887699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365803.431699998676777, 255739.843100000172853 ], [ 365754.494800001382828, 255710.311700001358986 ], [ 365753.377400003373623, 255746.821699999272823 ], [ 365787.86540000140667, 255768.635499998927116 ], [ 365792.805799998342991, 255756.6435999982059 ], [ 365795.262500002980232, 255752.230799999088049 ], [ 365800.150700002908707, 255746.360199999064207 ], [ 365803.431699998676777, 255739.843100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601019900", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-3", "ACRE": "0.26", "LONGITUDE": -64.87753591000001, "LATITUDE": 18.33057508, "OBJECTID_1": 37922, "PARCEL_NO_": "107601019900", "Tax_Legal_": "10-3 MARIENDAHL RED HOOK QTR.", "Name": "GILBERT, HAROLD & ROSALIN", "Address": "6083 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 138500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.93501108199999, "SHAPE_Area": 1126.0947361399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364470.642200000584126, 255723.657499998807907 ], [ 364457.012199997901917, 255714.468899998813868 ], [ 364455.363600000739098, 255718.677299998700619 ], [ 364451.333800002932549, 255718.433200001716614 ], [ 364449.704999998211861, 255720.31980000063777 ], [ 364443.276100002229214, 255717.734000001102686 ], [ 364443.304899998009205, 255714.356800001114607 ], [ 364440.092200003564358, 255712.852800000458956 ], [ 364430.990800000727177, 255740.009399998933077 ], [ 364447.871200002729893, 255746.269299998879433 ], [ 364473.592299997806549, 255755.978999998420477 ], [ 364470.642200000584126, 255723.657499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601063000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88040605, "LATITUDE": 18.33057681, "OBJECTID_1": 38146, "PARCEL_NO_": "107601063000", "Tax_Legal_": "7-42 MARIENDAHL RED HOOK QTR.", "Name": "Paulina,J & D, Jr. Vanterpool & Desiree Sewer", "Address": "7-42 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 50100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.07612434399999, "SHAPE_Area": 952.30921618100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364173.055299997329712, 255727.97690000012517 ], [ 364140.937700003385544, 255711.881999999284744 ], [ 364128.663199998438358, 255732.890900000929832 ], [ 364159.135799996554852, 255752.771999999880791 ], [ 364173.055299997329712, 255727.97690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701041800", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-23", "ACRE": "0.28", "LONGITUDE": -64.860335, "LATITUDE": 18.3305471, "OBJECTID_1": 39349, "PARCEL_NO_": "107701041800", "Tax_Legal_": "SMITH BAY ESTATE 19-2-23 EAST END QUARTER", "Name": "POLEON, MARY", "Address": "6546 Estate Nazareth, Box 14", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31200, "Improved_V": 190800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.96692995699999, "SHAPE_Area": 1386.4242146900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366295.37219999730587, 255733.314699999988079 ], [ 366259.975400000810623, 255723.525800000876188 ], [ 366249.194799996912479, 255758.479100000113249 ], [ 366284.575499996542931, 255770.167700000107288 ], [ 366295.37219999730587, 255733.314699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701050700", "MAP": "A9-464-T95", "PARCEL_NAM": "37-7", "ACRE": ".27", "LONGITUDE": -64.86571826, "LATITUDE": 18.3304531, "OBJECTID_1": 39381, "PARCEL_NO_": "107701050700", "Tax_Legal_": "37-7 ESTATE FRYDENHOJ RED HOOK QTR.", "Name": "HENDERSON, HENRY & RACHEL C.", "Address": "PO Box 9498", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31600, "Improved_V": 297000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.15930503300001, "SHAPE_Area": 1001.21064861 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365681.688299998641014, 255729.078899998217821 ], [ 365691.201700001955032, 255742.747600000351667 ], [ 365702.798199996352196, 255758.567499998956919 ], [ 365705.745600000023842, 255753.397999998182058 ], [ 365718.020099997520447, 255732.38910000026226 ], [ 365719.058399997651577, 255705.166499998420477 ], [ 365700.410700000822544, 255717.04619999974966 ], [ 365681.688299998641014, 255729.078899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701042300", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-21", "ACRE": "0.28", "LONGITUDE": -64.85889692000001, "LATITUDE": 18.33055355, "OBJECTID_1": 39354, "PARCEL_NO_": "107701042300", "Tax_Legal_": "SMITH BAY ESTATE 19-2-21 EASTEND QUARTER", "Name": "CLAIRMONT, SHEM D.", "Address": "PO Box 11986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.677136972, "SHAPE_Area": 1405.5398707500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366414.44030000269413, 255765.531100001186132 ], [ 366428.151299998164177, 255765.221099998801947 ], [ 366440.235200002789497, 255766.586599998176098 ], [ 366442.652300000190735, 255766.817499998956919 ], [ 366448.589599996805191, 255732.457800000905991 ], [ 366403.425300002098083, 255733.354699999094009 ], [ 366398.68469999730587, 255734.767200000584126 ], [ 366407.791900001466274, 255767.068999998271465 ], [ 366414.44030000269413, 255765.531100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601064500", "MAP": null, "PARCEL_NAM": "7-93", "ACRE": "0.26", "LONGITUDE": -64.8789769, "LATITUDE": 18.33056085, "OBJECTID_1": 38160, "PARCEL_NO_": "107601064500", "Tax_Legal_": "7-93 MARIENDAHL RED HOOK QTR.", "Name": "FREDERICKS, ISBORNE", "Address": "PO Box 9025", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31100, "Improved_V": 117800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.019277561, "SHAPE_Area": 904.22685304200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364306.226300001144409, 255713.868099998682737 ], [ 364286.012800000607967, 255720.246599998325109 ], [ 364283.58669999986887, 255721.071100000292063 ], [ 364274.625500001013279, 255731.7635000012815 ], [ 364311.602600000798702, 255745.365100000053644 ], [ 364322.063100002706051, 255747.983800001442432 ], [ 364324.483800001442432, 255747.792500000447035 ], [ 364326.108999997377396, 255746.328200001269579 ], [ 364326.132399998605251, 255743.584100000560284 ], [ 364306.226300001144409, 255713.868099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701051200", "MAP": "A9-457-T94", "PARCEL_NAM": "37-5", "ACRE": "0.25", "LONGITUDE": -64.86619822, "LATITUDE": 18.33043289, "OBJECTID_1": 39386, "PARCEL_NO_": "107701051200", "Tax_Legal_": "37-5 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "BLYDEN, STEPFEN R. & SANDRA PRICE-BLYDEN", "Address": "PO BOX 11835", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25500, "Improved_V": 120100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.535469388, "SHAPE_Area": 1009.52867721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365676.47240000218153, 255721.584800001233816 ], [ 365662.768299996852875, 255701.894900001585484 ], [ 365661.005699999630451, 255704.48030000180006 ], [ 365655.293200001120567, 255712.455099999904633 ], [ 365652.035599999129772, 255716.228100001811981 ], [ 365632.552799999713898, 255731.478500001132488 ], [ 365630.105099998414516, 255734.835900001227856 ], [ 365632.486299999058247, 255739.288400001823902 ], [ 365640.117700003087521, 255754.245799999684095 ], [ 365674.214500002563, 255723.253499999642372 ], [ 365676.47240000218153, 255721.584800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701041700", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-22", "ACRE": "0.31", "LONGITUDE": -64.86067203, "LATITUDE": 18.33045293, "OBJECTID_1": 39348, "PARCEL_NO_": "107701041700", "Tax_Legal_": "SMITH BAY ESTATE 19-2-22 EASTEND QTR.", "Name": "POLEON, JACKSON & MARY", "Address": "6546 Estate Nazareth, Box 14", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.68900099300001, "SHAPE_Area": 1355.1890319900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366259.975400000810623, 255723.525800000876188 ], [ 366227.002899996936321, 255713.123500000685453 ], [ 366225.374099999666214, 255715.010000001639128 ], [ 366215.493400000035763, 255738.99379999935627 ], [ 366213.866300001740456, 255740.669199999421835 ], [ 366213.83219999819994, 255744.679699998348951 ], [ 366214.624099999666214, 255746.374899998307228 ], [ 366217.827799998223782, 255748.934300001710653 ], [ 366249.194799996912479, 255758.479100000113249 ], [ 366259.975400000810623, 255723.525800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601064800", "MAP": null, "PARCEL_NAM": "7-91", "ACRE": null, "LONGITUDE": -64.87874519, "LATITUDE": 18.33039689, "OBJECTID_1": 38163, "PARCEL_NO_": "107601064800", "Tax_Legal_": "MARIENDAHL 7-91 RED HOOK QTR.", "Name": "CALLWOOD, CYNTHIA", "Address": "PO Box 531", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 40900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.460160172, "SHAPE_Area": 742.69832414200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364323.273999996483326, 255700.497699998319149 ], [ 364299.962899997830391, 255691.863099999725819 ], [ 364323.889700002968311, 255722.878600001335144 ], [ 364334.222499996423721, 255740.483899999409914 ], [ 364344.17339999973774, 255708.268100000917912 ], [ 364336.938100002706051, 255705.675700001418591 ], [ 364323.273999996483326, 255700.497699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011500", "MAP": "F9-2592-T70", "PARCEL_NAM": "163", "ACRE": "0.23", "LONGITUDE": -64.86392829, "LATITUDE": 18.33049353, "OBJECTID_1": 39136, "PARCEL_NO_": "107701011500", "Tax_Legal_": "163 ESTATE FRYDENHOJ No.3 RED HOOK QTR.", "Name": "NORTH BEACH LLC", "Address": "6172 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25900, "Improved_V": 169200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.50211537199999, "SHAPE_Area": 985.84038912599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365912.436700001358986, 255722.792300000786781 ], [ 365872.891500003635883, 255726.690499998629093 ], [ 365873.618699997663498, 255735.984600000083447 ], [ 365872.668499998748302, 255752.86430000141263 ], [ 365913.04169999808073, 255746.439699999988079 ], [ 365912.436700001358986, 255722.792300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701050500", "MAP": "A9-464-T95", "PARCEL_NAM": "37-9", "ACRE": "0.25", "LONGITUDE": -64.86544399, "LATITUDE": 18.33040454, "OBJECTID_1": 39379, "PARCEL_NO_": "107701050500", "Tax_Legal_": "FRYDENHOJ ESTATE 37-9 RED HOOK QUARTER", "Name": "FRANCIS, ERMINE", "Address": "PO Box 7004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33400, "Improved_V": 229000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.936977472, "SHAPE_Area": 881.504367849 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365745.598399996757507, 255713.405299998819828 ], [ 365719.058399997651577, 255705.166499998420477 ], [ 365718.020099997520447, 255732.38910000026226 ], [ 365744.466600000858307, 255751.603900000452995 ], [ 365745.598399996757507, 255713.405299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701010800", "MAP": "D3-214-T50", "PARCEL_NAM": "34", "ACRE": "3.68", "LONGITUDE": -64.86226645000001, "LATITUDE": 18.32981064, "OBJECTID_1": 39130, "PARCEL_NO_": "107701010800", "Tax_Legal_": "34 FRYDENHOJ No. 3 RED HOOK QUARTER", "Name": "BLAZKOVA,MESEKE & OTHERS, TRUSTEES", "Address": "3725 Bonita Dr", "City": "Plano", "State": "Texas", "Zip": 75025, "Country": "United States", "Land_Value": 254900, "Improved_V": 554300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 508.32966057499999, "SHAPE_Area": 15058.8566956 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366128.761500000953674, 255602.550799999386072 ], [ 366126.369599997997284, 255599.364799998700619 ], [ 366116.69200000166893, 255599.496700000017881 ], [ 366113.472199998795986, 255598.837000001221895 ], [ 366108.655900001525879, 255596.264499999582767 ], [ 366103.870099999010563, 255590.10359999909997 ], [ 366103.489600002765656, 255588.286299999803305 ], [ 366009.711599998176098, 255615.649700000882149 ], [ 365999.854099996387959, 255618.526000000536442 ], [ 366020.684000000357628, 255700.035799998790026 ], [ 366009.844099998474121, 255741.954700000584126 ], [ 366014.584899999201298, 255753.392499998211861 ], [ 366137.662299998104572, 255693.604899998754263 ], [ 366136.23309999704361, 255672.061700001358986 ], [ 366130.838799998164177, 255642.675500001758337 ], [ 366129.517499998211861, 255608.467599999159575 ], [ 366128.761500000953674, 255602.550799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601080400", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-4", "ACRE": "0.26", "LONGITUDE": -64.87788062, "LATITUDE": 18.33045425, "OBJECTID_1": 38195, "PARCEL_NO_": "107601080400", "Tax_Legal_": "10-4 MARIENDAHL RED HOOK QTR.", "Name": "JONES, CHARLES & MONA", "Address": "PO Box 368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32700, "Improved_V": 126400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.3449476, "SHAPE_Area": 1067.45503482 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364440.092200003564358, 255712.852800000458956 ], [ 364407.93860000371933, 255700.979499999433756 ], [ 364393.209200002253056, 255726.190200001001358 ], [ 364400.444399997591972, 255728.782499998807907 ], [ 364424.560099996626377, 255737.634700000286102 ], [ 364430.990800000727177, 255740.009399998933077 ], [ 364440.092200003564358, 255712.852800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601061100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8812858, "LATITUDE": 18.33038785, "OBJECTID_1": 38127, "PARCEL_NO_": "107601061100", "Tax_Legal_": "7-17ESTATE MARIENDAHL RED HOOK QTR.", "Name": "TONGE, CHARLES & JANETTE", "Address": "PO BOX 2502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 159000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.790810212, "SHAPE_Area": 1157.49548407 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364079.607600003480911, 255717.290699999779463 ], [ 364061.359099999070168, 255682.310899998992682 ], [ 364046.697999998927116, 255699.500599998980761 ], [ 364034.585400000214577, 255701.51240000128746 ], [ 364036.167400002479553, 255705.113899998366833 ], [ 364047.301100000739098, 255723.359099999070168 ], [ 364048.901199996471405, 255724.849800001829863 ], [ 364053.65089999884367, 255735.232299998402596 ], [ 364079.607600003480911, 255717.290699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601063600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88027053, "LATITUDE": 18.3303791, "OBJECTID_1": 38152, "PARCEL_NO_": "107601063600", "Tax_Legal_": "7-101 EST.MARIENDAHL RED HOOK QTR.", "Name": "SIMMONDS, HENRY", "Address": "PO BOX 2322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.90405225200001, "SHAPE_Area": 1223.8747939 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364185.351400002837181, 255704.435100000351667 ], [ 364148.413900002837181, 255686.189800001680851 ], [ 364140.937700003385544, 255711.881999999284744 ], [ 364173.055299997329712, 255727.97690000012517 ], [ 364186.703299999237061, 255735.054699998348951 ], [ 364185.351400002837181, 255704.435100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602050400", "MAP": "A9-457-T94", "PARCEL_NAM": "37-43", "ACRE": "0.24", "LONGITUDE": -64.86663076000001, "LATITUDE": 18.33043027, "OBJECTID_1": 38517, "PARCEL_NO_": "107602050400", "Tax_Legal_": "FRYDENHOJ ESTATE 37-43 No.3 RED HOOK QTR.", "Name": "ALEXANDER, MARTIN", "Address": "PO Box 502486", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.95083177699999, "SHAPE_Area": 762.01782215599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365599.022200003266335, 255691.940600000321865 ], [ 365596.949199996888638, 255745.963599998503923 ], [ 365625.175499998033047, 255745.5614 ], [ 365599.022200003266335, 255691.940600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601063100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88060699, "LATITUDE": 18.33030228, "OBJECTID_1": 38147, "PARCEL_NO_": "107601063100", "Tax_Legal_": "7-41 ESTATE MARIENDAHL RED HOOK QTR.", "Name": "AKOON, NELL A.,MARVELYN A. MOTAMED & STELLA FELIX", "Address": "PO BOX 302592", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35200, "Improved_V": 109900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.779435127, "SHAPE_Area": 1168.1363800399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364148.413900002837181, 255686.189800001680851 ], [ 364137.175899997353554, 255680.187199998646975 ], [ 364132.348800003528595, 255678.881099998950958 ], [ 364124.276600003242493, 255679.87049999833107 ], [ 364119.413599997758865, 255682.785999998450279 ], [ 364115.337099999189377, 255688.030000001192093 ], [ 364113.659699998795986, 255695.615699999034405 ], [ 364117.538400001823902, 255713.590399999171495 ], [ 364127.064900003373623, 255731.189100001007318 ], [ 364128.663199998438358, 255732.890900000929832 ], [ 364140.937700003385544, 255711.881999999284744 ], [ 364148.413900002837181, 255686.189800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601060900", "MAP": null, "PARCEL_NAM": "7-15", "ACRE": null, "LONGITUDE": -64.88185178000001, "LATITUDE": 18.33036004, "OBJECTID_1": 38125, "PARCEL_NO_": "107601060900", "Tax_Legal_": "EST MARIENDAHL 7-15 REDHOOK QTR", "Name": "BROOKS, CLEMENT", "Address": "PO Box 303874", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36100, "Improved_V": 123200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.45214152700001, "SHAPE_Area": 1558.6013148500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364016.296700000762939, 255680.610300000756979 ], [ 363967.001500003039837, 255706.258900001645088 ], [ 363981.932300001382828, 255729.579100001603365 ], [ 363983.076800003647804, 255731.395199999213219 ], [ 364027.658600002527237, 255707.825699999928474 ], [ 364024.0996999964118, 255701.848700001835823 ], [ 364020.174199998378754, 255689.362100001424551 ], [ 364016.296700000762939, 255680.610300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601064300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87942824, "LATITUDE": 18.33038154, "OBJECTID_1": 38158, "PARCEL_NO_": "107601064300", "Tax_Legal_": "7-95 MARIENDAHL RED HOOK QTR.", "Name": "EVELYN, LISLE & PETRONELIA", "Address": "PO BOX 9204", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39500, "Improved_V": 93000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.533684212, "SHAPE_Area": 1255.02400805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364286.012800000607967, 255720.246599998325109 ], [ 364240.3496999964118, 255685.042399998754263 ], [ 364227.202299997210503, 255713.854600001126528 ], [ 364274.625500001013279, 255731.7635000012815 ], [ 364283.58669999986887, 255721.071100000292063 ], [ 364286.012800000607967, 255720.246599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601063200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88102035, "LATITUDE": 18.33028637, "OBJECTID_1": 38148, "PARCEL_NO_": "107601063200", "Tax_Legal_": "7-40 MARIENDAHL RED HOOK QTR.", "Name": "GREENAWAY, ELIZABETH", "Address": "PO Box 303326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36100, "Improved_V": 39800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.751739706, "SHAPE_Area": 1449.7418967000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364104.754299998283386, 255699.764600001275539 ], [ 364074.389600001275539, 255667.218800000846386 ], [ 364061.359099999070168, 255682.310899998992682 ], [ 364079.607600003480911, 255717.290699999779463 ], [ 364112.585500001907349, 255727.059799998998642 ], [ 364110.243900001049042, 255717.963599998503923 ], [ 364107.086900003254414, 255709.916200000792742 ], [ 364104.754299998283386, 255699.764600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701016600", "MAP": null, "PARCEL_NAM": "169-7", "ACRE": "0.447", "LONGITUDE": -64.86499222, "LATITUDE": 18.33023663, "OBJECTID_1": 39183, "PARCEL_NO_": "107701016600", "Tax_Legal_": "169-7 FRYDENHOJ RED HOOK QTR.", "Name": "FRANCIS, STANFORD & IVA", "Address": "P.O.BOX 5371", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.897802165, "SHAPE_Area": 1856.87551553 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365804.531099997460842, 255705.443900000303984 ], [ 365755.614000000059605, 255673.590599998831749 ], [ 365754.494800001382828, 255710.311700001358986 ], [ 365803.431699998676777, 255739.843100000172853 ], [ 365806.725299999117851, 255731.848499998450279 ], [ 365808.404500000178814, 255724.05180000141263 ], [ 365804.531099997460842, 255705.443900000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86103927000001, "LATITUDE": 18.33029839, "OBJECTID_1": 39347, "PARCEL_NO_": "107701041600", "Tax_Legal_": "19-2-2 SMITH BAY EAST END QUARTER", "Name": "SMITH, VINCENT E & WILMA O HART", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38700, "Improved_V": 263000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.37335550200001, "SHAPE_Area": 1195.9628026800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366208.290500000119209, 255732.602000001817942 ], [ 366218.17119999974966, 255708.618200000375509 ], [ 366219.054899998009205, 255699.54839999973774 ], [ 366181.127599999308586, 255702.82660000026226 ], [ 366179.328000001609325, 255724.765599999576807 ], [ 366186.521799996495247, 255732.212799999862909 ], [ 366193.699500001966953, 255741.559599999338388 ], [ 366196.107699997723103, 255742.845899999141693 ], [ 366204.190600000321865, 255740.589999999850988 ], [ 366208.290500000119209, 255732.602000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011700", "MAP": null, "PARCEL_NAM": "169-4", "ACRE": "0.219", "LONGITUDE": -64.86444767, "LATITUDE": 18.33031527, "OBJECTID_1": 39138, "PARCEL_NO_": "107701011700", "Tax_Legal_": "FRYDENHOJ 169-4 RED HOOK QTR", "Name": "DONOVAN, DEBORAH D", "Address": "PO Box 9312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.99104000299999, "SHAPE_Area": 1551.2692074199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365864.004100002348423, 255728.728700000792742 ], [ 365860.137900002300739, 255709.276500001549721 ], [ 365856.988200001418591, 255700.384799998253584 ], [ 365854.605200000107288, 255696.143399998545647 ], [ 365813.41499999910593, 255703.827799998223782 ], [ 365817.275700002908707, 255723.91330000013113 ], [ 365816.406400002539158, 255731.29450000077486 ], [ 365813.922799997031689, 255738.873500000685453 ], [ 365864.004100002348423, 255728.728700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601080500", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-5", "ACRE": "0.27", "LONGITUDE": -64.87820926000001, "LATITUDE": 18.33034641, "OBJECTID_1": 38196, "PARCEL_NO_": "107601080500", "Tax_Legal_": "10-5 MARIENDAHL RED HOOK QTR.", "Name": "LEERDAM, MAXINE V., ROY D. , JR. & RAY D.", "Address": "394-316 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 166500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.970728221, "SHAPE_Area": 1023.11728261 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364407.93860000371933, 255700.979499999433756 ], [ 364395.876299999654293, 255697.0810999982059 ], [ 364382.228299997746944, 255690.003299999982119 ], [ 364353.82039999961853, 255711.724500000476837 ], [ 364379.543200001120567, 255721.223200000822544 ], [ 364393.209200002253056, 255726.190200001001358 ], [ 364407.93860000371933, 255700.979499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601080800", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-13", "ACRE": "0.27", "LONGITUDE": -64.87738171, "LATITUDE": 18.33029555, "OBJECTID_1": 38198, "PARCEL_NO_": "107601080800", "Tax_Legal_": "10-13 MARIENDAHL RED HOOK QTR.", "Name": "FARRELL, HERMAN", "Address": "2224 Misty Creek Trl", "City": "Stockbridge", "State": "Georgia", "Zip": 30281, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.01548697300001, "SHAPE_Area": 1073.3266723500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364463.685599997639656, 255688.348000001162291 ], [ 364445.801100000739098, 255705.300200000405312 ], [ 364458.660800002515316, 255710.260600000619888 ], [ 364457.012199997901917, 255714.468899998813868 ], [ 364470.642200000584126, 255723.657499998807907 ], [ 364489.232299998402596, 255718.532299999147654 ], [ 364478.30179999768734, 255676.435300000011921 ], [ 364463.685599997639656, 255688.348000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601064600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87925896, "LATITUDE": 18.33025589, "OBJECTID_1": 38161, "PARCEL_NO_": "107601064600", "Tax_Legal_": "7-92 MARIENDAHL RED HOOK QTR.", "Name": "PRYCE, IRA & ROMALTA", "Address": "4605TUTU Park Mall269-133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35000, "Improved_V": 37200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.378151046, "SHAPE_Area": 1284.55457847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364286.269900001585484, 255690.062300000339746 ], [ 364238.839599996805191, 255672.997699998319149 ], [ 364236.427799999713898, 255672.133600000292063 ], [ 364240.3496999964118, 255685.042399998754263 ], [ 364286.012800000607967, 255720.246599998325109 ], [ 364306.226300001144409, 255713.868099998682737 ], [ 364286.269900001585484, 255690.062300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701051300", "MAP": "A9-457-T94", "PARCEL_NAM": "37-6", "ACRE": "0.25", "LONGITUDE": -64.86593752, "LATITUDE": 18.33024325, "OBJECTID_1": 39387, "PARCEL_NO_": "107701051300", "Tax_Legal_": "FRYDENHOJ ESTATE 37-6 RED HOOK QUARTER", "Name": "CLARKE, ORVIN", "Address": "PO Box 301864", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.598144547, "SHAPE_Area": 810.78562249499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365662.768299996852875, 255701.894900001585484 ], [ 365681.688299998641014, 255729.078899998217821 ], [ 365700.410700000822544, 255717.04619999974966 ], [ 365680.481299996376038, 255690.074200000613928 ], [ 365674.887500002980232, 255684.117800001055002 ], [ 365662.768299996852875, 255701.894900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701042900", "MAP": "D9-5264-T92", "PARCEL_NAM": "19-2-18", "ACRE": ".264", "LONGITUDE": -64.85952437, "LATITUDE": 18.33030789, "OBJECTID_1": 39359, "PARCEL_NO_": "107701042900", "Tax_Legal_": "19-2-18 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "DOUGLAS, MARYSE & OTHERS", "Address": "PO Box 12304", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.48876695200001, "SHAPE_Area": 838.69603587799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366374.597599998116493, 255709.687399998307228 ], [ 366363.318300001323223, 255708.539599999785423 ], [ 366348.037900000810623, 255703.770500000566244 ], [ 366338.947300001978874, 255729.660599999129772 ], [ 366354.220499999821186, 255735.274000000208616 ], [ 366376.030500002205372, 255730.808499999344349 ], [ 366374.597599998116493, 255709.687399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601064100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87974648, "LATITUDE": 18.33018552, "OBJECTID_1": 38156, "PARCEL_NO_": "107601064100", "Tax_Legal_": "7-98 MARIENDAHL REDHOOK QTR.", "Name": "FRANCIS, EDWARD & CORINTHIA", "Address": "PO Box 305825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 209500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.21421733099999, "SHAPE_Area": 1249.2362890500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364236.427799999713898, 255672.133600000292063 ], [ 364214.723899997770786, 255664.145500000566244 ], [ 364199.089299999177456, 255700.95890000090003 ], [ 364227.202299997210503, 255713.854600001126528 ], [ 364240.3496999964118, 255685.042399998754263 ], [ 364236.427799999713898, 255672.133600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011600", "MAP": "F9-2756-T71", "PARCEL_NAM": "177", "ACRE": "0.23", "LONGITUDE": -64.86398329, "LATITUDE": 18.33027118, "OBJECTID_1": 39137, "PARCEL_NO_": "107701011600", "Tax_Legal_": "177 FRYDENHOJ RED HOOK QTR", "Name": "BOLLENTINI, NICOLE", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 25900, "Improved_V": 193800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.873356754, "SHAPE_Area": 887.7147288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365895.719999998807907, 255697.324299998581409 ], [ 365866.663900002837181, 255700.464000001549721 ], [ 365870.587600000202656, 255713.161699999123812 ], [ 365872.891500003635883, 255726.690499998629093 ], [ 365912.436700001358986, 255722.792300000786781 ], [ 365896.488499999046326, 255701.7635000012815 ], [ 365895.719999998807907, 255697.324299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602050500", "MAP": "A9-457-T94", "PARCEL_NAM": "37-42", "ACRE": "0.29", "LONGITUDE": -64.86653383, "LATITUDE": 18.33003088, "OBJECTID_1": 38518, "PARCEL_NO_": "107602050500", "Tax_Legal_": "ESTATE FRYDENHOJ 37-42 RED HOOK QTR.", "Name": "ANNIE MARIAN GEORGE CAGAN and BRICE CAGAN TRUST", "Address": "6232 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32300, "Improved_V": 259500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.199616394, "SHAPE_Area": 1171.1481453199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365630.238799996674061, 255661.084199998527765 ], [ 365600.754900000989437, 255660.891199998557568 ], [ 365600.852399997413158, 255666.41330000013113 ], [ 365600.789399996399879, 255673.800999999046326 ], [ 365602.3462999984622, 255680.357700001448393 ], [ 365605.5337999984622, 255684.816700000315905 ], [ 365620.593000002205372, 255715.548599999397993 ], [ 365622.173299998044968, 255719.361200001090765 ], [ 365627.815600000321865, 255719.618500001728535 ], [ 365629.874200001358986, 255667.284099999815226 ], [ 365630.238799996674061, 255661.084199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701052100", "MAP": "A9-457-T94", "PARCEL_NAM": "37-33", "ACRE": "0.30", "LONGITUDE": -64.86631454, "LATITUDE": 18.33005641, "OBJECTID_1": 39395, "PARCEL_NO_": "107701052100", "Tax_Legal_": "FRYDENHOJ ESTATE 37-33 RED HOOK QUARTER", "Name": "FRANCIS JOSEPH LIV TRUST & DAPHNIE HILAIRE REVOC", "Address": "PO BOX 6773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58700, "Improved_V": 410800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.95244707500001, "SHAPE_Area": 1280.02732586 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365657.059600003063679, 255661.259799998253584 ], [ 365630.238799996674061, 255661.084199998527765 ], [ 365629.874200001358986, 255667.284099999815226 ], [ 365627.815600000321865, 255719.618500001728535 ], [ 365634.280500002205372, 255717.982599999755621 ], [ 365645.640799999237061, 255709.631900001317263 ], [ 365649.717299997806549, 255704.387899998575449 ], [ 365652.170400001108646, 255700.397199999541044 ], [ 365655.65820000320673, 255669.606100000441074 ], [ 365657.059600003063679, 255661.259799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601060800", "MAP": "D9-8964-T015", "PARCEL_NAM": "7-14", "ACRE": ".29", "LONGITUDE": -64.88197563, "LATITUDE": 18.33013577, "OBJECTID_1": 38124, "PARCEL_NO_": "107601060800", "Tax_Legal_": "REM 7-14 MARIENDAHL NO. 4 RED HOOK QTR.", "Name": "CHINNERY, CLARICIA C.", "Address": "PO BOX 503143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 36100, "Improved_V": 37200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.47708740100001, "SHAPE_Area": 1469.19657818 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363996.94990000128746, 255658.973299998790026 ], [ 363995.730899997055531, 255657.852299999445677 ], [ 363972.027699999511242, 255667.563799999654293 ], [ 363973.095100000500679, 255670.224399998784065 ], [ 363975.843400001525879, 255676.241300001740456 ], [ 363954.768899999558926, 255686.288600001484156 ], [ 363961.245099999010563, 255696.901299998164177 ], [ 363965.220899999141693, 255703.477800000458956 ], [ 363967.001500003039837, 255706.258900001645088 ], [ 364016.296700000762939, 255680.610300000756979 ], [ 364014.636100001633167, 255676.862199999392033 ], [ 364012.249600000679493, 255673.043000001460314 ], [ 363996.94990000128746, 255658.973299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701051400", "MAP": "A9-457-T94", "PARCEL_NAM": "37-11", "ACRE": "0.30", "LONGITUDE": -64.86575959, "LATITUDE": 18.33007165, "OBJECTID_1": 39388, "PARCEL_NO_": "107701051400", "Tax_Legal_": "FRYDENHOJ ESTATE 37-11 RED HOOK QUARTER", "Name": "BELTOU, JOHN & SONIA", "Address": "PO Box 7822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40100, "Improved_V": 242800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.51476454300001, "SHAPE_Area": 1455.5283407300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365720.026600003242493, 255686.175999999046326 ], [ 365695.252099998295307, 255660.008699998259544 ], [ 365682.234200000762939, 255673.6233000010252 ], [ 365674.887500002980232, 255684.117800001055002 ], [ 365680.481299996376038, 255690.074200000613928 ], [ 365700.410700000822544, 255717.04619999974966 ], [ 365719.058399997651577, 255705.166499998420477 ], [ 365720.026600003242493, 255686.175999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601080700", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-12", "ACRE": "0.25", "LONGITUDE": -64.87766039, "LATITUDE": 18.33014167, "OBJECTID_1": 38197, "PARCEL_NO_": "107601080700", "Tax_Legal_": "MARIENDAHL 10-12 RED HOOK QTR.", "Name": "CORNEL L. & DENISE D DONADELLE (LIFE ESTATE)", "Address": "PO Box 434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040434, "Country": "United States", "Land_Value": 29000, "Improved_V": 158100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.98142579099999, "SHAPE_Area": 995.37057251399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364463.685599997639656, 255688.348000001162291 ], [ 364437.314699999988079, 255660.267799999564886 ], [ 364420.88459999859333, 255695.808100000023842 ], [ 364445.801100000739098, 255705.300200000405312 ], [ 364463.685599997639656, 255688.348000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601066400", "MAP": "D9-4700-T89", "PARCEL_NAM": "7-11A", "ACRE": "0.23", "LONGITUDE": -64.88206043, "LATITUDE": 18.3295364, "OBJECTID_1": 38179, "PARCEL_NO_": "107601066400", "Tax_Legal_": "7-11A ESTATE MARIENDAHL RED HOOK QUARTER", "Name": "STEVENS, DAVID", "Address": "PO BOX 305440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28700, "Improved_V": 250400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.515169593, "SHAPE_Area": 861.70636549000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364001.342100001871586, 255637.751499999314547 ], [ 363959.811599999666214, 255581.210299998521805 ], [ 363956.589900001883507, 255580.761799998581409 ], [ 363957.300899997353554, 255591.955600000917912 ], [ 363958.855999998748302, 255598.723299998790026 ], [ 363965.972599998116493, 255615.246800001710653 ], [ 363973.159199997782707, 255623.53830000013113 ], [ 363997.562899999320507, 255647.08669999986887 ], [ 364001.342100001871586, 255637.751499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601063900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87997587, "LATITUDE": 18.33009071, "OBJECTID_1": 38155, "PARCEL_NO_": "107601063900", "Tax_Legal_": "MARIENDAHL ESTATE 7-100 REDHOOK QTR", "Name": "GUMBS, MARY & ALCENDA M & CITRINA T & ALISTER D", "Address": "PO Box 307963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 328700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.03414467, "SHAPE_Area": 862.61001947199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364214.723899997770786, 255664.145500000566244 ], [ 364193.822700001299381, 255656.586199998855591 ], [ 364179.016000002622604, 255690.873199999332428 ], [ 364199.089299999177456, 255700.95890000090003 ], [ 364214.723899997770786, 255664.145500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701050400", "MAP": "A9-464-T95", "PARCEL_NAM": "37-10", "ACRE": "0.30", "LONGITUDE": -64.86543159, "LATITUDE": 18.33013452, "OBJECTID_1": 39378, "PARCEL_NO_": "107701050400", "Tax_Legal_": "FRYDENHOJ ESTATE 37-10 RED HOOK QUARTER", "Name": "MASSICOT, MARIA E.", "Address": "173B-62 Anna's Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.043556072, "SHAPE_Area": 702.61546452000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365746.692400000989437, 255679.639299999922514 ], [ 365720.026600003242493, 255686.175999999046326 ], [ 365719.058399997651577, 255705.166499998420477 ], [ 365745.598399996757507, 255713.405299998819828 ], [ 365746.692400000989437, 255679.639299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601063300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88093074, "LATITUDE": 18.33000038, "OBJECTID_1": 38149, "PARCEL_NO_": "107601063300", "Tax_Legal_": "7-105 MARIENDAHL RED HOOK QTR.", "Name": "REGISTE, ANDY & PENN-REGISTE, MELISA", "Address": "PO Box 306515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 140200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.63223648799999, "SHAPE_Area": 1146.8559515500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364111.391800001263618, 255677.865200001746416 ], [ 364102.08110000193119, 255634.936999998986721 ], [ 364074.389600001275539, 255667.218800000846386 ], [ 364104.754299998283386, 255699.764600001275539 ], [ 364104.824500001966953, 255691.532600000500679 ], [ 364105.664899997413158, 255687.5287000015378 ], [ 364108.132399998605251, 255681.849300000816584 ], [ 364111.391800001263618, 255677.865200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701043200", "MAP": "D9-5264-T92", "PARCEL_NAM": "19-2-15", "ACRE": ".488", "LONGITUDE": -64.8584225, "LATITUDE": 18.32999962, "OBJECTID_1": 39362, "PARCEL_NO_": "107701043200", "Tax_Legal_": "SMITH BAY ESTATE 19-2-15 EAST END QUARTER", "Name": "HENRY, VERONICA-TRUSTEE", "Address": "PO Box 502636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 64300, "Improved_V": 454500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.86028043600001, "SHAPE_Area": 1810.49220384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366495.923900000751019, 255666.139699999243021 ], [ 366476.540100000798702, 255669.780699998140335 ], [ 366444.197700001299381, 255680.070700000971556 ], [ 366448.146499998867512, 255689.813299998641014 ], [ 366455.986699998378754, 255716.053100001066923 ], [ 366464.88849999755621, 255712.326200000941753 ], [ 366512.728799998760223, 255681.264800000935793 ], [ 366495.923900000751019, 255666.139699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601012800", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-11", "ACRE": "0.29", "LONGITUDE": -64.87791191, "LATITUDE": 18.3300275, "OBJECTID_1": 37915, "PARCEL_NO_": "107601012800", "Tax_Legal_": "10-11 MARIENDAHL NO.4 RED HOOK QTR.", "Name": "DESIR, ARISNOL", "Address": "6067 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34700, "Improved_V": 81600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.30058761699999, "SHAPE_Area": 1198.51610469 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364437.314699999988079, 255660.267799999564886 ], [ 364414.026900000870228, 255648.889199998229742 ], [ 364390.34179999679327, 255684.159099999815226 ], [ 364400.782499998807907, 255689.099700000137091 ], [ 364420.88459999859333, 255695.808100000023842 ], [ 364437.314699999988079, 255660.267799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011900", "MAP": null, "PARCEL_NAM": "169-6", "ACRE": null, "LONGITUDE": -64.86496443, "LATITUDE": 18.32992234, "OBJECTID_1": 39139, "PARCEL_NO_": "107701011900", "Tax_Legal_": "FRYDENHOJ 169-6 RED HOOK QTR.", "Name": "CHARLESWELLS, CARLTON & C", "Address": "Po Box 2661", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.589855336, "SHAPE_Area": 1987.68589843 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365800.902400001883507, 255658.129200000315905 ], [ 365756.677500002086163, 255643.412900000810623 ], [ 365755.614000000059605, 255673.590599998831749 ], [ 365804.531099997460842, 255705.443900000303984 ], [ 365813.41499999910593, 255703.827799998223782 ], [ 365800.902400001883507, 255658.129200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601063700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88020344, "LATITUDE": 18.32999892, "OBJECTID_1": 38153, "PARCEL_NO_": "107601063700", "Tax_Legal_": "7-102 MARIENDAHL RED HOOK QTR.", "Name": "WEBSTER, JOHNSON & JACQUELINE (LIFE ESTATE)", "Address": "PO Box 11442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 228200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.026425367, "SHAPE_Area": 1079.45368813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364193.822700001299381, 255656.586199998855591 ], [ 364164.883599996566772, 255646.005699999630451 ], [ 364152.513800002634525, 255678.201799999922514 ], [ 364179.016000002622604, 255690.873199999332428 ], [ 364193.822700001299381, 255656.586199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012000", "MAP": null, "PARCEL_NAM": "169-5", "ACRE": null, "LONGITUDE": -64.86457215, "LATITUDE": 18.33000835, "OBJECTID_1": 39140, "PARCEL_NO_": "107701012000", "Tax_Legal_": "169-5 EST FRYDENHOJ RED HOOK QTR", "Name": "GONZALES, MERALDO C. & JANE", "Address": "PO Box 9425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38700, "Improved_V": 247700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.718141282, "SHAPE_Area": 1352.9097412799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365854.605200000107288, 255696.143399998545647 ], [ 365836.554200001060963, 255669.82209999859333 ], [ 365800.902400001883507, 255658.129200000315905 ], [ 365813.41499999910593, 255703.827799998223782 ], [ 365854.605200000107288, 255696.143399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701043600", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-3", "ACRE": ".278", "LONGITUDE": -64.86100731000001, "LATITUDE": 18.33001481, "OBJECTID_1": 39366, "PARCEL_NO_": "107701043600", "Tax_Legal_": "SMITH BAY ESTATE 19-2-3 EASTEND QTR.", "Name": "MONTICEUX, SYLVIA & GLEN F. R", "Address": "PO Box 303765", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.95251198400001, "SHAPE_Area": 1244.30329383 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366226.317100003361702, 255698.974599998444319 ], [ 366218.521899998188019, 255667.457800000905991 ], [ 366177.300999999046326, 255678.730599999427795 ], [ 366181.127599999308586, 255702.82660000026226 ], [ 366219.054899998009205, 255699.54839999973774 ], [ 366226.317100003361702, 255698.974599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601080900", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-14", "ACRE": "0.25", "LONGITUDE": -64.87749968, "LATITUDE": 18.32995192, "OBJECTID_1": 38199, "PARCEL_NO_": "107601080900", "Tax_Legal_": "10-14 MARIENDAHL RED HOOK QTR.", "Name": "JONES, LLOYD S.", "Address": "7716 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 67300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.699135828, "SHAPE_Area": 962.86574092599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364478.30179999768734, 255676.435300000011921 ], [ 364475.92059999704361, 255671.982799999415874 ], [ 364475.143100000917912, 255668.598900001496077 ], [ 364467.195000000298023, 255655.023899998515844 ], [ 364455.220799997448921, 255640.782600000500679 ], [ 364437.314699999988079, 255660.267799999564886 ], [ 364463.685599997639656, 255688.348000001162291 ], [ 364478.30179999768734, 255676.435300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601081900", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-19", "ACRE": "0.30", "LONGITUDE": -64.87702897, "LATITUDE": 18.3299273, "OBJECTID_1": 38208, "PARCEL_NO_": "107601081900", "Tax_Legal_": "10-19 EST MARIENDAHL RED HOOK QTR", "Name": "GUMBS, DORETH & OLIVER", "Address": "PO Box 305992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45900, "Improved_V": 57100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.69658991700001, "SHAPE_Area": 1205.26200672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364538.178999997675419, 255665.617600001394749 ], [ 364520.523100003600121, 255642.372600000351667 ], [ 364497.008199997246265, 255653.527300000190735 ], [ 364480.95269999653101, 255661.143500000238419 ], [ 364483.234899997711182, 255665.28770000115037 ], [ 364485.599899999797344, 255671.639800000935793 ], [ 364487.194600000977516, 255673.763799998909235 ], [ 364489.446800000965595, 255682.460400000214577 ], [ 364514.088699996471405, 255673.955200001597404 ], [ 364537.465700000524521, 255665.886700000613928 ], [ 364538.178999997675419, 255665.617600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701043300", "MAP": "D9-5264-T92", "PARCEL_NAM": "19-2-12", "ACRE": ".374", "LONGITUDE": -64.85930804, "LATITUDE": 18.32996685, "OBJECTID_1": 39363, "PARCEL_NO_": "107701043300", "Tax_Legal_": "SMITH BAY ESTATE 19-2-12 No.1,2&3 EASTEND QTR.", "Name": "FLEMING, GEOFFREY R", "Address": "7073 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.48656068599999, "SHAPE_Area": 1822.49645401 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366335.309500001370907, 255683.401299998164177 ], [ 366335.280699998140335, 255686.778599999845028 ], [ 366351.335100002586842, 255695.353700000792742 ], [ 366360.983800001442432, 255698.59910000115633 ], [ 366370.645199999213219, 255700.366900000721216 ], [ 366378.713699996471405, 255699.799699999392033 ], [ 366393.250699996948242, 255697.174400001764297 ], [ 366412.66160000115633, 255690.367199998348951 ], [ 366412.101599998772144, 255661.442800000309944 ], [ 366395.151100002229214, 255663.41499999910593 ], [ 366384.634800001978874, 255667.339699998497963 ], [ 366372.484399996697903, 255673.784200001507998 ], [ 366359.542000003159046, 255678.533399999141693 ], [ 366335.309500001370907, 255683.401299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701043700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86064739, "LATITUDE": 18.32993786, "OBJECTID_1": 39367, "PARCEL_NO_": "107701043700", "Tax_Legal_": "SMITH BAY ESTATE 19-2-4 EAST END QUARTER", "Name": "RYAN, PAUL", "Address": "6600 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.776368195, "SHAPE_Area": 1191.19449373 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366261.053199999034405, 255691.659499999135733 ], [ 366253.277800001204014, 255657.820900000631809 ], [ 366218.521899998188019, 255667.457800000905991 ], [ 366226.317100003361702, 255698.974599998444319 ], [ 366235.208099998533726, 255696.514199998229742 ], [ 366261.053199999034405, 255691.659499999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601060700", "MAP": "D9-8964-T015", "PARCEL_NAM": "7-13", "ACRE": ".30", "LONGITUDE": -64.88218445, "LATITUDE": 18.32991668, "OBJECTID_1": 38123, "PARCEL_NO_": "107601060700", "Tax_Legal_": "7-13 EST. MARIENDAHL RED HOOK QTR.", "Name": "ANDREW WEEKS & KERTIS GUMBS LIVING TRUST", "Address": "PO Box 10302", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29800, "Improved_V": 244200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.791375211, "SHAPE_Area": 1251.44495807 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363995.730899997055531, 255657.852299999445677 ], [ 363994.647399999201298, 255656.855900000780821 ], [ 363975.982100002467632, 255638.638000000268221 ], [ 363934.020000003278255, 255652.708500001579523 ], [ 363949.066500000655651, 255676.9712999984622 ], [ 363995.730899997055531, 255657.852299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601063400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88070457000001, "LATITUDE": 18.32984011, "OBJECTID_1": 38150, "PARCEL_NO_": "107601063400", "Tax_Legal_": "7-104 EST MARIENDAHL #4 RED HOOK QTR", "Name": "LETTSOME, PATRICIA & MONICA ANTHONY", "Address": "PO Box 307852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.14574164199999, "SHAPE_Area": 1232.04780009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364102.08110000193119, 255634.936999998986721 ], [ 364111.391800001263618, 255677.865200001746416 ], [ 364116.269299998879433, 255673.261100001633167 ], [ 364122.7449000030756, 255670.358800001442432 ], [ 364126.783699996769428, 255669.547499999403954 ], [ 364133.232400000095367, 255669.811299998313189 ], [ 364138.356200002133846, 255636.28940000012517 ], [ 364112.631499998271465, 255627.001800000667572 ], [ 364106.967500001192093, 255629.277499999850988 ], [ 364102.08110000193119, 255634.936999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601063500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88044238000001, "LATITUDE": 18.32989837, "OBJECTID_1": 38151, "PARCEL_NO_": "107601063500", "Tax_Legal_": "MARIENDAHL 7-103 RED HOOK QTR.", "Name": "CUFFY, VIRGINIA", "Address": "PO Box 11001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 165000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.852900721, "SHAPE_Area": 818.27318772700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364164.883599996566772, 255646.005699999630451 ], [ 364138.356200002133846, 255636.28940000012517 ], [ 364133.232400000095367, 255669.811299998313189 ], [ 364140.474799998104572, 255671.559399999678135 ], [ 364152.513800002634525, 255678.201799999922514 ], [ 364164.883599996566772, 255646.005699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701043800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86032932000001, "LATITUDE": 18.32986077, "OBJECTID_1": 39368, "PARCEL_NO_": "107701043800", "Tax_Legal_": "19-2-5 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "VIDAL, EUNICE, DANLEY & CICILIE", "Address": "34 Sherlock Pl", "City": "Brooklyn", "State": "New York", "Zip": 11233, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.28717398699999, "SHAPE_Area": 1194.00591295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366294.993900001049042, 255683.071400001645088 ], [ 366284.803099997341633, 255648.790800001472235 ], [ 366253.277800001204014, 255657.820900000631809 ], [ 366261.053199999034405, 255691.659499999135733 ], [ 366294.993900001049042, 255683.071400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701051500", "MAP": "A9-464-T95", "PARCEL_NAM": "37-12", "ACRE": "0.33", "LONGITUDE": -64.86552733000001, "LATITUDE": 18.32981306, "OBJECTID_1": 39389, "PARCEL_NO_": "107701051500", "Tax_Legal_": "37-12 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "ALEXANDER, LUCY & JOHN-BAPTIST, D", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44100, "Improved_V": 190600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.78126022199999, "SHAPE_Area": 1860.9650300400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365748.013099998235703, 255644.109200000762939 ], [ 365706.613899998366833, 255636.352099999785423 ], [ 365705.897799998521805, 255640.886300001293421 ], [ 365703.444700002670288, 255644.877000000327826 ], [ 365701.801500000059605, 255648.452199999243021 ], [ 365700.969999998807907, 255651.400699999183416 ], [ 365695.252099998295307, 255660.008699998259544 ], [ 365720.026600003242493, 255686.175999999046326 ], [ 365746.692400000989437, 255679.639299999922514 ], [ 365746.814699999988079, 255665.285900000482798 ], [ 365748.013099998235703, 255644.109200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701043400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85888836, "LATITUDE": 18.32986932, "OBJECTID_1": 39364, "PARCEL_NO_": "107701043400", "Tax_Legal_": "SMITH BAY ESTATE 19-2-13 EASTEND QTR.", "Name": "HENRY, VERONICA-TRUSTEE", "Address": "PO Box 502636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.397329769, "SHAPE_Area": 770.27030593400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366443.405699998140335, 255678.375399999320507 ], [ 366437.144000001251698, 255656.159400001168251 ], [ 366414.524099998176098, 255661.040500000119209 ], [ 366412.101599998772144, 255661.442800000309944 ], [ 366412.66160000115633, 255690.367199998348951 ], [ 366432.86429999768734, 255685.255199998617172 ], [ 366435.306599996984005, 255682.530999999493361 ], [ 366435.322800002992153, 255680.631299998611212 ], [ 366443.405699998140335, 255678.375399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701043900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86001916, "LATITUDE": 18.32977596, "OBJECTID_1": 39369, "PARCEL_NO_": "107701043900", "Tax_Legal_": "SMITH BAY ESTATE 19-2-6 EAST END QUARTER", "Name": "MASON RICHARDS, ANNMARIE A.", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37400, "Improved_V": 184100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.61746736200001, "SHAPE_Area": 1249.3225408200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366327.312899999320507, 255675.525400001555681 ], [ 366318.75280000269413, 255639.147300001233816 ], [ 366284.803099997341633, 255648.790800001472235 ], [ 366294.993900001049042, 255683.071400001645088 ], [ 366322.466099999845028, 255676.541200000792742 ], [ 366327.312899999320507, 255675.525400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012200", "MAP": null, "PARCEL_NAM": "32 REM", "ACRE": null, "LONGITUDE": -64.86468728, "LATITUDE": 18.3296526, "OBJECTID_1": 39142, "PARCEL_NO_": "107701012200", "Tax_Legal_": "FRYDENHOJ ESTATE 32 No.3 RED HOOK QUARTER", "Name": "FRYDENHOJ ESTATE CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 243500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.02289086000002, "SHAPE_Area": 3524.1428669699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365800.902400001883507, 255658.129200000315905 ], [ 365845.129100002348423, 255672.634399998933077 ], [ 365856.386900000274181, 255676.315200001001358 ], [ 365858.798600003123283, 255677.179299999028444 ], [ 365857.511500000953674, 255638.960799999535084 ], [ 365854.31139999628067, 255635.979299999773502 ], [ 365790.787100002169609, 255614.983300000429153 ], [ 365787.565499998629093, 255614.534800000488758 ], [ 365782.713200002908707, 255616.183800000697374 ], [ 365763.23589999973774, 255630.800900001078844 ], [ 365756.677500002086163, 255643.412900000810623 ], [ 365800.902400001883507, 255658.129200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601014600", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-20", "ACRE": "0.29", "LONGITUDE": -64.8771659, "LATITUDE": 18.32972377, "OBJECTID_1": 37920, "PARCEL_NO_": "107601014600", "Tax_Legal_": "10-20 MARIENDAHL RED HOOK QTR.", "Name": "BROWN, ELVINA", "Address": "Po Box 10209", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41600, "Improved_V": 233000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.076555547, "SHAPE_Area": 1140.8160835199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364516.53830000013113, 255636.851500000804663 ], [ 364503.042000003159046, 255617.519000001251698 ], [ 364468.116400003433228, 255641.521499998867512 ], [ 364475.294100001454353, 255650.868299998342991 ], [ 364480.95269999653101, 255661.143500000238419 ], [ 364497.008199997246265, 255653.527300000190735 ], [ 364520.523100003600121, 255642.372600000351667 ], [ 364516.53830000013113, 255636.851500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701043500", "MAP": "D9-5264-T92", "PARCEL_NAM": "19-2-14", "ACRE": ".242", "LONGITUDE": -64.85853995, "LATITUDE": 18.32976785, "OBJECTID_1": 39365, "PARCEL_NO_": "107701043500", "Tax_Legal_": "SMITH BAY ESTATE 19-2-14 EASTEND QRT #1,2,3", "Name": "COLE, CLIFFORD & DAHLIA", "Address": "143 Deer Run Rd", "City": "Palm Bay", "State": "Florida", "Zip": 32909, "Country": "United States", "Land_Value": 24500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.47057682100001, "SHAPE_Area": 1153.4977846500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366471.118900001049042, 255643.560699999332428 ], [ 366443.607100002467632, 255654.734600000083447 ], [ 366437.144000001251698, 255656.159400001168251 ], [ 366443.405699998140335, 255678.375399999320507 ], [ 366444.197700001299381, 255680.070700000971556 ], [ 366476.540100000798702, 255669.780699998140335 ], [ 366495.923900000751019, 255666.139699999243021 ], [ 366471.118900001049042, 255643.560699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601081000", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-15", "ACRE": "0.25", "LONGITUDE": -64.87775455000001, "LATITUDE": 18.32972789, "OBJECTID_1": 38200, "PARCEL_NO_": "107601081000", "Tax_Legal_": "10-15 MARIENDAHL RED HOOK QTR", "Name": "DAVIS, DOTHLYN", "Address": "PO Box 8226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 47400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.789506626, "SHAPE_Area": 1002.0117492099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364455.220799997448921, 255640.782600000500679 ], [ 364435.998800002038479, 255625.426600001752377 ], [ 364426.36259999871254, 255620.703600000590086 ], [ 364419.122000001370907, 255618.744500000029802 ], [ 364414.026900000870228, 255648.889199998229742 ], [ 364437.314699999988079, 255660.267799999564886 ], [ 364455.220799997448921, 255640.782600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701044000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85971691, "LATITUDE": 18.32970141, "OBJECTID_1": 39370, "PARCEL_NO_": "107701044000", "Tax_Legal_": "19-2-7 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "BAPTISTE, JR., WILBERT H. & BERRICIA", "Address": "PO Box 9976", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.61645379500001, "SHAPE_Area": 1228.63929132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366357.200400002300739, 255669.437199998646975 ], [ 366350.278099998831749, 255630.117199998348951 ], [ 366318.75280000269413, 255639.147300001233816 ], [ 366327.312899999320507, 255675.525400001555681 ], [ 366350.73369999974966, 255671.284099999815226 ], [ 366357.200400002300739, 255669.437199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701052200", "MAP": "A9-464-T95", "PARCEL_NAM": "37-34", "ACRE": "0.29", "LONGITUDE": -64.86627414, "LATITUDE": 18.3296673, "OBJECTID_1": 39396, "PARCEL_NO_": "107701052200", "Tax_Legal_": "37-34 FRYDENHOJ RED HOOK QUARTER", "Name": "FABIAN, ANTOINETTE FLOYD", "Address": "PO Box 502941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.26897675799999, "SHAPE_Area": 981.62896168700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365662.681699998676777, 255628.093699999153614 ], [ 365632.197499997913837, 255625.894400000572205 ], [ 365631.760200001299381, 255635.213300000876188 ], [ 365630.238799996674061, 255661.084199998527765 ], [ 365657.059600003063679, 255661.259799998253584 ], [ 365661.604500003159046, 255634.190999999642372 ], [ 365662.681699998676777, 255628.093699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602050600", "MAP": "A9-457-T94", "PARCEL_NAM": "37-41", "ACRE": "0.28", "LONGITUDE": -64.86655571, "LATITUDE": 18.32965968, "OBJECTID_1": 38519, "PARCEL_NO_": "107602050600", "Tax_Legal_": "ESTATE FRYDENHOJ 37-41 RED HOOK QUARTER", "Name": "CALLWOOD, BENJAMIN & DANIEL", "Address": "7322 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.13363777399999, "SHAPE_Area": 1117.9678055100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365632.197499997913837, 255625.894400000572205 ], [ 365600.187200002372265, 255623.584899999201298 ], [ 365600.308600001037121, 255635.589200001209974 ], [ 365600.754900000989437, 255660.891199998557568 ], [ 365630.238799996674061, 255661.084199998527765 ], [ 365631.760200001299381, 255635.213300000876188 ], [ 365632.197499997913837, 255625.894400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701051600", "MAP": "A9-464-T95", "PARCEL_NAM": "37-13", "ACRE": "0.33", "LONGITUDE": -64.86549135, "LATITUDE": 18.32951746, "OBJECTID_1": 39390, "PARCEL_NO_": "107701051600", "Tax_Legal_": "FRYDENHOJ ESTATE 37-13 RED HOOK QUARTER", "Name": "ABRAHAM, IAN & ERNICE", "Address": "6208 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021431, "Country": "United States", "Land_Value": 30500, "Improved_V": 73500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.36042781800001, "SHAPE_Area": 1026.4626702099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365751.914499998092651, 255622.233899999409914 ], [ 365711.001800000667572, 255609.686299998313189 ], [ 365710.159500002861023, 255613.901200000196695 ], [ 365706.613899998366833, 255636.352099999785423 ], [ 365748.013099998235703, 255644.109200000762939 ], [ 365748.713200002908707, 255631.73759999871254 ], [ 365751.914499998092651, 255622.233899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701044100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85942975, "LATITUDE": 18.32961503, "OBJECTID_1": 39371, "PARCEL_NO_": "107701044100", "Tax_Legal_": "SMITH BAY ESTATE 19-2-8 EAST END QUARTER", "Name": "SANCHEZ, CLAUDIA", "Address": "PO Box 306054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.19578542299999, "SHAPE_Area": 1250.5140945799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366385.527500003576279, 255657.214600000530481 ], [ 366384.229500003159046, 255620.262600000947714 ], [ 366350.278099998831749, 255630.117199998348951 ], [ 366357.200400002300739, 255669.437199998646975 ], [ 366367.711300000548363, 255666.145799998193979 ], [ 366385.527500003576279, 255657.214600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601081600", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-22", "ACRE": "0.33", "LONGITUDE": -64.87749122, "LATITUDE": 18.32936904, "OBJECTID_1": 38206, "PARCEL_NO_": "107601081600", "Tax_Legal_": "MARIENDAHL 10-22 RED HOOK QTR.", "Name": "RENOLD MOTHE and EDLINE CASTOR", "Address": "PO Box 12215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42800, "Improved_V": 98800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.955335039, "SHAPE_Area": 1237.1376294199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364483.009400002658367, 255589.168499998748302 ], [ 364469.530500002205372, 255570.183400001376867 ], [ 364434.486800000071526, 255613.592999998480082 ], [ 364440.105899997055531, 255616.594300001859665 ], [ 364446.507799997925758, 255622.346200000494719 ], [ 364455.325099997222424, 255628.540100000798702 ], [ 364483.009400002658367, 255589.168499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701044200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85910841, "LATITUDE": 18.32952816, "OBJECTID_1": 39372, "PARCEL_NO_": "107701044200", "Tax_Legal_": "19-2-9 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "CUFFY, ROSEANNIE", "Address": "PO Box 307843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.83035809200001, "SHAPE_Area": 1364.9770432299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366424.295199997723103, 255649.932500001043081 ], [ 366416.562899999320507, 255611.028000000864267 ], [ 366384.229500003159046, 255620.262600000947714 ], [ 366385.527500003576279, 255657.214600000530481 ], [ 366396.03830000013113, 255653.923099998384714 ], [ 366410.568099997937679, 255652.142200000584126 ], [ 366422.678999997675419, 255650.341400001198053 ], [ 366424.295199997723103, 255649.932500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701044300", "MAP": "D9-5264-T92", "PARCEL_NAM": "19-2-10", "ACRE": ".288", "LONGITUDE": -64.85879577, "LATITUDE": 18.32946583, "OBJECTID_1": 39373, "PARCEL_NO_": "107701044300", "Tax_Legal_": "19-2-10 ESTATE SMITH BAY No.1,2&3 EASTEND QTR", "Name": "CUFFY, ROSEANNIE", "Address": "PO Box 307843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 592500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.67286512800001, "SHAPE_Area": 1219.45356685 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366435.154899999499321, 255605.691700000315905 ], [ 366416.562899999320507, 255611.028000000864267 ], [ 366424.295199997723103, 255649.932500001043081 ], [ 366440.455600000917912, 255646.054000001400709 ], [ 366455.019599996507168, 255640.262600000947714 ], [ 366455.042999997735023, 255637.518500000238419 ], [ 366463.136699996888638, 255633.996199999004602 ], [ 366435.154899999499321, 255605.691700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602050700", "MAP": "A9-457-T94", "PARCEL_NAM": "37-40", "ACRE": "0.30", "LONGITUDE": -64.8665522, "LATITUDE": 18.3293456, "OBJECTID_1": 38520, "PARCEL_NO_": "107602050700", "Tax_Legal_": "ESTATE FRYDENHOJ 37-40 RED HOOK QUARTER", "Name": "JEAN BAPTISTE, VICTOR & MARLYN", "Address": "6207 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42900, "Improved_V": 301800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.08695716400001, "SHAPE_Area": 1104.05276607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365600.187200002372265, 255623.584899999201298 ], [ 365632.197499997913837, 255625.894400000572205 ], [ 365633.730599999427795, 255593.221799999475479 ], [ 365599.896099999547005, 255589.356300000101328 ], [ 365599.870899997651577, 255592.3114 ], [ 365600.187200002372265, 255623.584899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701052300", "MAP": "A9-464-T95", "PARCEL_NAM": "37-35", "ACRE": "0.30", "LONGITUDE": -64.86624077, "LATITUDE": 18.32936627, "OBJECTID_1": 39397, "PARCEL_NO_": "107701052300", "Tax_Legal_": "37-35 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "LETTSOME, KELVIN & MURIEL", "Address": "PO Box 11264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47600, "Improved_V": 416000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.78741777900001, "SHAPE_Area": 1066.1512778199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365632.197499997913837, 255625.894400000572205 ], [ 365662.681699998676777, 255628.093699999153614 ], [ 365668.382299996912479, 255595.827500000596046 ], [ 365633.730599999427795, 255593.221799999475479 ], [ 365632.197499997913837, 255625.894400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701052700", "MAP": "A9-464-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86541203, "LATITUDE": 18.32926963, "OBJECTID_1": 39401, "PARCEL_NO_": "107701052700", "Tax_Legal_": "FRYDENHOJ ESTATE 37-14 RED H OOK QUARTER", "Name": "THOMAS, GEORGE", "Address": "P.O. BOX 4956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42700, "Improved_V": 124300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.779221377, "SHAPE_Area": 1399.1739233000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365759.581900000572205, 255586.441399998962879 ], [ 365719.139899998903275, 255581.577199999243021 ], [ 365718.46000000089407, 255586.104800000786781 ], [ 365717.621299996972084, 255589.897599998861551 ], [ 365711.001800000667572, 255609.686299998313189 ], [ 365751.914499998092651, 255622.233899999409914 ], [ 365758.640699997544289, 255602.265700001269579 ], [ 365759.581900000572205, 255586.441399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701051800", "MAP": "A9-464-T95", "PARCEL_NAM": "37-31", "ACRE": "0.25", "LONGITUDE": -64.86586683, "LATITUDE": 18.32935267, "OBJECTID_1": 39392, "PARCEL_NO_": "107701051800", "Tax_Legal_": "FRYDENHOJ ESTATE 37-31 RED HOOK QUARTER", "Name": "HAMILTON, ELLEN & O'BRYAN, JAN", "Address": "PO Box 9964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.770792427, "SHAPE_Area": 976.478591295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365707.133799999952316, 255590.445099998265505 ], [ 365678.088600002229214, 255592.318300001323223 ], [ 365672.136900000274181, 255628.366599999368191 ], [ 365698.75959999859333, 255626.895700000226498 ], [ 365701.315200001001358, 255610.873500000685453 ], [ 365707.133799999952316, 255590.445099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701052800", "MAP": "A9-464-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86538263, "LATITUDE": 18.32901815, "OBJECTID_1": 39402, "PARCEL_NO_": "107701052800", "Tax_Legal_": "FRYDENHOJ ESTATE 37-15 RED HOOK QUARTER", "Name": "FORBES, OMA F", "Address": "PO Box 11523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.852365486, "SHAPE_Area": 915.01631897300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365719.139899998903275, 255581.577199999243021 ], [ 365759.581900000572205, 255586.441399998962879 ], [ 365761.377899996936321, 255564.924499999731779 ], [ 365722.734300002455711, 255557.642200000584126 ], [ 365719.139899998903275, 255581.577199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701052400", "MAP": "A9-464-T95", "PARCEL_NAM": "37-36", "ACRE": "0.29", "LONGITUDE": -64.86621104, "LATITUDE": 18.32908284, "OBJECTID_1": 39398, "PARCEL_NO_": "107701052400", "Tax_Legal_": "FRYDENHOJ ESTATE 37-36 RED HOOK QUARTER", "Name": "CANNONIER, EVAN & BLYDEN, ETHE", "Address": "P.O. BOX 3512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 300800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.685418685, "SHAPE_Area": 1121.1581812899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365673.480899997055531, 255565.260600000619888 ], [ 365634.794100001454353, 255563.044100001454353 ], [ 365633.730599999427795, 255593.221799999475479 ], [ 365668.382299996912479, 255595.827500000596046 ], [ 365673.480899997055531, 255565.260600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601060500", "MAP": "C9-278-T82", "PARCEL_NAM": "7-5", "ACRE": "0.31", "LONGITUDE": -64.88218087, "LATITUDE": 18.32887347, "OBJECTID_1": 38122, "PARCEL_NO_": "107601060500", "Tax_Legal_": "7-5 MARIENDAHL RED HOOK QTR.", "Name": "ROACH, VIOLA L", "Address": "7846 Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30800, "Improved_V": 197200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.01768802500001, "SHAPE_Area": 770.78449801199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363978.890799999237061, 255518.671700000762939 ], [ 363958.756399996578693, 255515.762699998915195 ], [ 363956.589900001883507, 255580.761799998581409 ], [ 363959.811599999666214, 255581.210299998521805 ], [ 363967.269799999892712, 255557.628899998962879 ], [ 363978.890799999237061, 255518.671700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701051900", "MAP": "A9-464-T95", "PARCEL_NAM": "37-30", "ACRE": "0.25", "LONGITUDE": -64.86580375, "LATITUDE": 18.32902213, "OBJECTID_1": 39393, "PARCEL_NO_": "107701051900", "Tax_Legal_": "FRYDENHOJ ESTATE 37-30 RED HOOK QTR.", "Name": "STERLING, AUSTIN & SONIA", "Address": "PO Box 5385", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.76503985, "SHAPE_Area": 1107.1136150699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365713.89360000193119, 255554.192299999296665 ], [ 365683.248400002717972, 255554.574799999594688 ], [ 365682.368299998342991, 255563.22239999845624 ], [ 365678.088600002229214, 255592.318300001323223 ], [ 365707.133799999952316, 255590.445099998265505 ], [ 365709.63910000026226, 255580.333099998533726 ], [ 365711.323600001633167, 255571.903200000524521 ], [ 365713.89360000193119, 255554.192299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011000", "MAP": "G9-2277-T73", "PARCEL_NAM": "23", "ACRE": null, "LONGITUDE": -64.86246986, "LATITUDE": 18.32912853, "OBJECTID_1": 39132, "PARCEL_NO_": "107701011000", "Tax_Legal_": "FRYDENHOJ ESTATE 23 REM.&23B RED HOOK QUARTER", "Name": "MORRELL, WAYNE & JOHNSON, STEPHANE", "Address": "PO Box 6453", "City": "Fullerton", "State": "California", "Zip": 92834, "Country": "United States", "Land_Value": 184400, "Improved_V": 473100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.45781080099999, "SHAPE_Area": 3585.8349316 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366101.685000002384186, 255562.6435999982059 ], [ 366102.366200000047684, 255555.799800001084805 ], [ 366080.295100003480911, 255562.014299999922514 ], [ 366072.105800002813339, 255564.320199999958277 ], [ 365999.54900000244379, 255584.750100001692772 ], [ 365989.535300001502037, 255587.569699998944998 ], [ 365999.854099996387959, 255618.526000000536442 ], [ 366009.711599998176098, 255615.649700000882149 ], [ 366103.489600002765656, 255588.286299999803305 ], [ 366102.320500001311302, 255582.702599998563528 ], [ 366101.685000002384186, 255562.6435999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86172051, "LATITUDE": 18.32901454, "OBJECTID_1": 39262, "PARCEL_NO_": "107701030300", "Tax_Legal_": "FRYDENHOJ ESTATE 172&36-7 RED HOOK ST THOMAS", "Name": "SINGH, HARRY & SAVITRI", "Address": "30 Foster St", "City": "Bergenfield", "State": "New Jersey", "Zip": 7621, "Country": "United States", "Land_Value": 17600, "Improved_V": 180400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.954623531, "SHAPE_Area": 751.63607423600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366141.228399999439716, 255558.956399999558926 ], [ 366110.505900003015995, 255568.415300000458956 ], [ 366112.775499999523163, 255585.954599998891354 ], [ 366113.560300000011921, 255588.494199998676777 ], [ 366115.966600000858307, 255589.991500001400709 ], [ 366119.188299998641014, 255590.440099999308586 ], [ 366128.073899999260902, 255588.613000001758337 ], [ 366138.586499996483326, 255585.110399998724461 ], [ 366143.446000002324581, 255582.61710000038147 ], [ 366141.228399999439716, 255558.956399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701053700", "MAP": "A9-541-T000", "PARCEL_NAM": "32-14", "ACRE": "0.29", "LONGITUDE": -64.86505059, "LATITUDE": 18.32886093, "OBJECTID_1": 39410, "PARCEL_NO_": "107701053700", "Tax_Legal_": "32-14 FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "ROGERS, DENNIS & JACQUELINE", "Address": "PO Box 307545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32300, "Improved_V": 239800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.18297469000001, "SHAPE_Area": 1291.2784440200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365764.061200000345707, 255533.915800001472235 ], [ 365761.377899996936321, 255564.924499999731779 ], [ 365759.581900000572205, 255586.441399998962879 ], [ 365791.999799996614456, 255567.286100000143051 ], [ 365793.76349999755621, 255549.56870000064373 ], [ 365784.912100002169609, 255547.385299999266863 ], [ 365789.893799997866154, 255530.538600001484156 ], [ 365791.529799997806549, 255527.807799998670816 ], [ 365764.061200000345707, 255533.915800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702031300", "MAP": "A9-537-T99", "PARCEL_NAM": "M-A", "ACRE": ".7528", "LONGITUDE": -64.85446793, "LATITUDE": 18.32886576, "OBJECTID_1": 39564, "PARCEL_NO_": "107702031300", "Tax_Legal_": "M-1 REM. & M-A ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "TONGE, SHERMA L.", "Address": "PO Box 502351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30700, "Improved_V": 228200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 447.309003835, "SHAPE_Area": 3221.0954063700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366857.018100000917912, 255549.737100001424551 ], [ 366808.054200001060963, 255563.780799999833107 ], [ 366809.526600003242493, 255580.258099999278784 ], [ 367020.917099997401237, 255565.945199999958277 ], [ 366996.00959999859333, 255555.397700000554323 ], [ 366966.154399998486042, 255557.686500001698732 ], [ 366955.665200002491474, 255558.445000000298023 ], [ 366929.038900002837181, 255560.337999999523163 ], [ 366910.038500003516674, 255561.73589999973774 ], [ 366903.218900002539158, 255562.23759999871254 ], [ 366875.86540000140667, 255554.836599998176098 ], [ 366857.018100000917912, 255549.737100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701052500", "MAP": "A9-457-T94", "PARCEL_NAM": "37-37", "ACRE": "0.25", "LONGITUDE": -64.86621597, "LATITUDE": 18.32880533, "OBJECTID_1": 39399, "PARCEL_NO_": "107701052500", "Tax_Legal_": "FRYDENHOJ ESTATE 37-37 RED HOOK QUARTER", "Name": "JOSEPH, JEAN NOUDIEU", "Address": "PO BOX 10575", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.73421735700001, "SHAPE_Area": 1150.3443089299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365636.721400000154972, 255526.118500001728535 ], [ 365634.794100001454353, 255563.044100001454353 ], [ 365673.480899997055531, 255565.260600000619888 ], [ 365673.531199999153614, 255559.350400000810623 ], [ 365674.351899996399879, 255557.668400000780821 ], [ 365673.592399999499321, 255552.173700001090765 ], [ 365672.017499998211861, 255547.727899998426437 ], [ 365667.226400002837181, 255542.200199998915195 ], [ 365664.823600001633167, 255540.280699998140335 ], [ 365654.420699998736382, 255530.907499998807907 ], [ 365647.99719999730587, 255527.688499998301268 ], [ 365636.721400000154972, 255526.118500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86174573, "LATITUDE": 18.32881211, "OBJECTID_1": 39263, "PARCEL_NO_": "107701030400", "Tax_Legal_": "FRYDENHOJ 36-6 3 RED HOOK QTR", "Name": "FRETT, RUTH", "Address": "BOX 2332", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19400, "Improved_V": 172800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.778307931, "SHAPE_Area": 626.02302146099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366139.761500000953674, 255541.845800001174212 ], [ 366110.728799998760223, 255542.241500001400709 ], [ 366112.273100003600121, 255550.275699999183416 ], [ 366110.505900003015995, 255568.415300000458956 ], [ 366141.228399999439716, 255558.956399999558926 ], [ 366139.734499998390675, 255545.011999998241663 ], [ 366139.761500000953674, 255541.845800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701052900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86534463, "LATITUDE": 18.32875182, "OBJECTID_1": 39403, "PARCEL_NO_": "107701052900", "Tax_Legal_": "FRYDENHOJ ESTATE 37-16 RED HOOK QTR.", "Name": "FAHIE, ELVIN", "Address": "7473 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.20468222, "SHAPE_Area": 1415.6970232399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365764.061200000345707, 255533.915800001472235 ], [ 365764.946699999272823, 255524.634899999946356 ], [ 365727.852700002491474, 255524.753499999642372 ], [ 365724.496200002729893, 255540.135800000280142 ], [ 365722.734300002455711, 255557.642200000584126 ], [ 365761.377899996936321, 255564.924499999731779 ], [ 365764.061200000345707, 255533.915800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602050900", "MAP": "A9-457-T94", "PARCEL_NAM": "37-38", "ACRE": "0.27", "LONGITUDE": -64.86651829, "LATITUDE": 18.32879281, "OBJECTID_1": 38522, "PARCEL_NO_": "107602050900", "Tax_Legal_": "37-38 ESTATE FRYDENHOJ No.3 RED HOOK QTR.", "Name": "HESSER, GORDON & ELIZBETH", "Address": "6528 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35700, "Improved_V": 240100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.90298516, "SHAPE_Area": 1011.62724167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365600.943300001323223, 255561.078299999237061 ], [ 365634.794100001454353, 255563.044100001454353 ], [ 365636.721400000154972, 255526.118500001728535 ], [ 365629.45380000025034, 255527.325599998235703 ], [ 365612.463699996471405, 255533.941599998623133 ], [ 365607.598800003528595, 255537.068199999630451 ], [ 365603.520499996840954, 255542.523200001567602 ], [ 365601.859300002455711, 255548.209100000560284 ], [ 365600.943300001323223, 255561.078299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702032400", "MAP": "A9-537-T99", "PARCEL_NAM": "M-15", "ACRE": ".28", "LONGITUDE": -64.85340747, "LATITUDE": 18.32864559, "OBJECTID_1": 39574, "PARCEL_NO_": "107702032400", "Tax_Legal_": "NAZARETH ESTATE LOT M-15 No1 REDHOOK QTR", "Name": "DONOVAN, DUANE", "Address": "PO Box 8584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.633038223, "SHAPE_Area": 877.75792172000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367017.988600000739098, 255531.090799998492002 ], [ 367012.355200000107288, 255529.778099998831749 ], [ 367010.749799996614456, 255528.9206000007689 ], [ 367005.935300000011921, 255526.136999998241663 ], [ 367004.356799997389317, 255522.113299999386072 ], [ 366997.929700002074242, 255519.316399998962879 ], [ 366992.29450000077486, 255518.214800000190735 ], [ 366996.00959999859333, 255555.397700000554323 ], [ 367020.917099997401237, 255565.945199999958277 ], [ 367017.988600000739098, 255531.090799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702032500", "MAP": null, "PARCEL_NAM": "M-16", "ACRE": null, "LONGITUDE": -64.85313195000001, "LATITUDE": 18.32868918, "OBJECTID_1": 39575, "PARCEL_NO_": "107702032500", "Tax_Legal_": "NAZARETH ESTATE LOT M-16 No.1 REDHOOK QTR", "Name": "GREAUX, JASMIN", "Address": "PO Box 503082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.029118571, "SHAPE_Area": 1156.3900675100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367053.997500002384186, 255563.682799998670816 ], [ 367051.043799996376038, 255531.783500000834465 ], [ 367025.270599998533726, 255528.195000000298023 ], [ 367017.988600000739098, 255531.090799998492002 ], [ 367020.917099997401237, 255565.945199999958277 ], [ 367053.997500002384186, 255563.682799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701052000", "MAP": "A9-457-T94", "PARCEL_NAM": "37-29", "ACRE": "0.24", "LONGITUDE": -64.86580611, "LATITUDE": 18.32869648, "OBJECTID_1": 39394, "PARCEL_NO_": "107701052000", "Tax_Legal_": "37-29 FRYDENHOJ ESTATE RED HOOK QUARTER", "Name": "STERLING, AUSTIN", "Address": "PO Box 305385", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28100, "Improved_V": 308100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.89633132099999, "SHAPE_Area": 1300.38302056 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365719.823700003325939, 255520.677000001072884 ], [ 365694.003700003027916, 255522.57660000026226 ], [ 365661.727899998426437, 255525.056699998676777 ], [ 365672.143399998545647, 255532.952399998903275 ], [ 365676.934500001370907, 255538.480000000447035 ], [ 365680.906700000166893, 255545.47859999909997 ], [ 365682.479800000786781, 255550.135499998927116 ], [ 365683.248400002717972, 255554.574799999594688 ], [ 365713.89360000193119, 255554.192299999296665 ], [ 365713.935000002384186, 255549.337499998509884 ], [ 365714.793399997055531, 255543.222800001502037 ], [ 365717.298699997365475, 255533.110800001770258 ], [ 365718.98139999806881, 255524.892000000923872 ], [ 365719.823700003325939, 255520.677000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702031700", "MAP": "A9-537-T99", "PARCEL_NAM": "M-8", "ACRE": ".30", "LONGITUDE": -64.85516785, "LATITUDE": 18.32860736, "OBJECTID_1": 39568, "PARCEL_NO_": "107702031700", "Tax_Legal_": "NAZARETH ESTATE LOT M-8 No.1 REDHOOK QTR", "Name": "HANLEY, COLIN C. & GECELL", "Address": "6228 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36300, "Improved_V": 178900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.53530197399999, "SHAPE_Area": 1314.5182241299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366835.213899999856949, 255552.460299998521805 ], [ 366832.325699999928474, 255505.900800000876188 ], [ 366830.315600000321865, 255506.334499999880791 ], [ 366823.017399996519089, 255511.129900000989437 ], [ 366814.909299999475479, 255516.340799998492002 ], [ 366804.387699998915195, 255520.898800000548363 ], [ 366808.054200001060963, 255563.780799999833107 ], [ 366835.428999997675419, 255555.929299999028444 ], [ 366835.213899999856949, 255552.460299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702032000", "MAP": "A9-537-T99", "PARCEL_NAM": "M-11", "ACRE": ".24", "LONGITUDE": -64.85444291, "LATITUDE": 18.32864811, "OBJECTID_1": 39571, "PARCEL_NO_": "107702032000", "Tax_Legal_": "NAZARETH ESTATE LOT M-11 No.1 REDHOOK QTR", "Name": "SMITH, JUNE K.", "Address": "PO BOX 306646", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.304994798, "SHAPE_Area": 824.08985957899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366899.525399997830391, 255522.521800000220537 ], [ 366885.097000002861023, 255520.134300000965595 ], [ 366887.054399996995926, 255554.849399998784065 ], [ 366887.226999998092651, 255557.910799998790026 ], [ 366903.218900002539158, 255562.23759999871254 ], [ 366910.038500003516674, 255561.73589999973774 ], [ 366905.283100001513958, 255523.417899999767542 ], [ 366899.525399997830391, 255522.521800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702032100", "MAP": "A9-537-T99", "PARCEL_NAM": "M-12", "ACRE": ".24", "LONGITUDE": -64.85422527, "LATITUDE": 18.32865394, "OBJECTID_1": 39572, "PARCEL_NO_": "107702032100", "Tax_Legal_": "M-12 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "Masikia and Sherlikia Lewis Revocable Living Trust", "Address": "2419 Adel Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.14214678099999, "SHAPE_Area": 909.49255806799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366933.90820000320673, 255559.991900000721216 ], [ 366931.595100000500679, 255524.88230000063777 ], [ 366926.113899998366833, 255525.061500001698732 ], [ 366912.410199999809265, 255524.527100000530481 ], [ 366905.283100001513958, 255523.417899999767542 ], [ 366910.038500003516674, 255561.73589999973774 ], [ 366929.038900002837181, 255560.337999999523163 ], [ 366933.90820000320673, 255559.991900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702032200", "MAP": "A9-537-T99", "PARCEL_NAM": "M-13", "ACRE": ".23", "LONGITUDE": -64.85400558000001, "LATITUDE": 18.3286486, "OBJECTID_1": 39573, "PARCEL_NO_": "107702032200", "Tax_Legal_": "NAZARETH ESTATE M-13 No.1 RED HOOK QTR.", "Name": "TRUST AGREEMENT OF LOTITIA V DONOVAN", "Address": "7102 Bolongo Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.76976704099999, "SHAPE_Area": 732.89364829099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366931.595100000500679, 255524.88230000063777 ], [ 366933.90820000320673, 255559.991900000721216 ], [ 366955.665200002491474, 255558.445000000298023 ], [ 366951.924900002777576, 255524.217300001531839 ], [ 366931.595100000500679, 255524.88230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85249319, "LATITUDE": 18.32865268, "OBJECTID_1": 39442, "PARCEL_NO_": "107702010300", "Tax_Legal_": "18-25 SMITH BAY ESTATE NO 1,2&3 EAST END QTR", "Name": "LOVELAND FAMILY TRUST", "Address": "PO Box 8985", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 205800, "Improved_V": 168900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.18582277900001, "SHAPE_Area": 1251.0734971100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367123.108400002121925, 255558.895599998533726 ], [ 367118.867600001394749, 255521.361699998378754 ], [ 367112.397299997508526, 255523.630800001323223 ], [ 367082.544600002467632, 255534.048799999058247 ], [ 367083.850900001823902, 255561.605099998414516 ], [ 367123.108400002121925, 255558.895599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702023200", "MAP": "A9-537-T99", "PARCEL_NAM": "M-14", "ACRE": ".23", "LONGITUDE": -64.85366378000001, "LATITUDE": 18.3286118, "OBJECTID_1": 39544, "PARCEL_NO_": "107702023200", "Tax_Legal_": "NAZARETH ESTATE M-14 No.1 RED HOOK QTR.", "Name": "HODGE, SANDRA", "Address": "HIDDEN VALLEY BLDG.12 APT.211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39400, "Improved_V": 213900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.57844223399999, "SHAPE_Area": 1097.8374871200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366992.29450000077486, 255518.214800000190735 ], [ 366989.879100002348423, 255517.772900000214577 ], [ 366972.109700001776218, 255521.216099999845028 ], [ 366962.41780000180006, 255523.03660000115633 ], [ 366966.154399998486042, 255557.686500001698732 ], [ 366996.00959999859333, 255555.397700000554323 ], [ 366992.29450000077486, 255518.214800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702031800", "MAP": "A9-537-T99", "PARCEL_NAM": "M-9", "ACRE": ".27", "LONGITUDE": -64.85492927, "LATITUDE": 18.32854608, "OBJECTID_1": 39569, "PARCEL_NO_": "107702031800", "Tax_Legal_": "M-9 NAZARETH No.1 REDHOOK QTR", "Name": "RYAN, LESLIE J", "Address": "PO Box 43070", "City": "Jacksonville", "State": "Florida", "Zip": 32203, "Country": "United States", "Land_Value": 40000, "Improved_V": 207800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.78056939199999, "SHAPE_Area": 1125.14725469 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366844.021099999547005, 255506.657699998468161 ], [ 366835.970600001513958, 255505.114199999719858 ], [ 366832.325699999928474, 255505.900800000876188 ], [ 366835.213899999856949, 255552.460299998521805 ], [ 366835.428999997675419, 255555.929299999028444 ], [ 366857.018100000917912, 255549.737100001424551 ], [ 366859.880500003695488, 255548.916200000792742 ], [ 366857.822599999606609, 255511.213799998164177 ], [ 366851.258100003004074, 255509.039000000804663 ], [ 366844.021099999547005, 255506.657699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702016200", "MAP": "D9-8875-T014", "PARCEL_NAM": "18-26-1", "ACRE": ".358", "LONGITUDE": -64.85195477000001, "LATITUDE": 18.32853443, "OBJECTID_1": 39539, "PARCEL_NO_": "107702016200", "Tax_Legal_": "18-26-1 SMITH BAY 1,2&3 EASTEND QUARTER", "Name": "PIETER & BARBARA P. STOEKEN REV. FAM. TRST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41400, "Improved_V": 329800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.63993413399999, "SHAPE_Area": 1054.06699024 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367135.932499997317791, 255492.93299999833107 ], [ 367132.605599999427795, 255487.671799998730421 ], [ 367135.567100003361702, 255515.552999999374151 ], [ 367138.052599996328354, 255517.771699998527765 ], [ 367146.703000001609325, 255525.354600001126528 ], [ 367151.147299997508526, 255532.179299999028444 ], [ 367163.273199997842312, 255544.651000000536442 ], [ 367160.244499996304512, 255556.360599998384714 ], [ 367173.764399997889996, 255555.441399998962879 ], [ 367196.808300003409386, 255553.874800000339746 ], [ 367189.580300003290176, 255550.438099998980761 ], [ 367184.774800002574921, 255546.59910000115633 ], [ 367175.993500001728535, 255536.183600001037121 ], [ 367167.995099999010563, 255528.518800001591444 ], [ 367155.979500003159046, 255519.13230000063777 ], [ 367145.589199997484684, 255508.281500000506639 ], [ 367136.027400001883507, 255493.082899998873472 ], [ 367135.932499997317791, 255492.93299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702031900", "MAP": "A9-537-T99", "PARCEL_NAM": "M-10", "ACRE": ".25", "LONGITUDE": -64.85467645, "LATITUDE": 18.3285901, "OBJECTID_1": 39570, "PARCEL_NO_": "107702031900", "Tax_Legal_": "NAZARETH ESTATE M-10 No.1 REDHOOK QTR", "Name": "AIDA S. PICKERING THE TRUST AGREEMENT", "Address": "PO Box 1232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.58550834799999, "SHAPE_Area": 1033.49569479 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366872.164700001478195, 255515.96510000154376 ], [ 366857.822599999606609, 255511.213799998164177 ], [ 366859.880500003695488, 255548.916200000792742 ], [ 366857.018100000917912, 255549.737100001424551 ], [ 366875.86540000140667, 255554.836599998176098 ], [ 366887.226999998092651, 255557.910799998790026 ], [ 366887.054399996995926, 255554.849399998784065 ], [ 366885.097000002861023, 255520.134300000965595 ], [ 366883.420699998736382, 255519.856899999082088 ], [ 366872.164700001478195, 255515.96510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031600", "MAP": "A9-538-T99", "PARCEL_NAM": "F-1", "ACRE": null, "LONGITUDE": -64.86045532, "LATITUDE": 18.32863429, "OBJECTID_1": 39274, "PARCEL_NO_": "107701031600", "Tax_Legal_": "F-1 ESTATE NAZARETH #4 RED HOOK QTR", "Name": "GUMBS, SELWYN D.", "Address": "PO Box 502464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 40100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.288202805, "SHAPE_Area": 1510.0784499399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366298.642800003290176, 255538.713199999183416 ], [ 366259.352899998426437, 255512.638300001621246 ], [ 366255.288900002837181, 255516.404699999839067 ], [ 366227.723300002515316, 255533.910900000482798 ], [ 366239.688500002026558, 255549.207600001245737 ], [ 366249.375, 255548.020300000905991 ], [ 366272.75450000166893, 255548.633799999952316 ], [ 366279.212200000882149, 255547.842300001531839 ], [ 366291.340999998152256, 255543.930799998342991 ], [ 366296.200499996542931, 255541.4375 ], [ 366298.642800003290176, 255538.713199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8512171, "LATITUDE": 18.32857091, "OBJECTID_1": 39450, "PARCEL_NO_": "107702010600", "Tax_Legal_": "SMITH BAY ESTATE 18-1 1,2&3 EASTEND", "Name": "LEWIS, NEIL & KATHERINE S. BARTLEY", "Address": "6501 Red Hook Plaza-Siute 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85900, "Improved_V": 178200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.97170617800001, "SHAPE_Area": 2229.20751578 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367276.159599997103214, 255515.471900001168251 ], [ 367269.669600002467632, 255520.062800001353025 ], [ 367259.957900002598763, 255524.205200001597404 ], [ 367249.457800000905991, 255526.230200000107288 ], [ 367240.58839999884367, 255526.157600000500679 ], [ 367225.300800003111362, 255522.232799999415874 ], [ 367218.069200001657009, 255519.218299999833107 ], [ 367207.639300003647804, 255513.011300001293421 ], [ 367203.605899997055531, 255513.189300000667572 ], [ 367201.167199999094009, 255515.491399999707937 ], [ 367202.709700003266335, 255523.736699998378754 ], [ 367204.155100002884865, 255543.380199998617172 ], [ 367200.86150000244379, 255551.374800000339746 ], [ 367196.808300003409386, 255553.874800000339746 ], [ 367279.912500001490116, 255548.222100000828505 ], [ 367276.159599997103214, 255515.471900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86176575, "LATITUDE": 18.32860068, "OBJECTID_1": 39264, "PARCEL_NO_": "107701030500", "Tax_Legal_": "36-5 FRYDENHOJ RED HOOK QUARTER", "Name": "JOSEPH, QUINTON & CAROLI", "Address": "PO Box 240064", "City": "Dorchester Center", "State": "Massachusetts", "Zip": 2124, "Country": "United States", "Land_Value": 21100, "Improved_V": 112800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.06210210899999, "SHAPE_Area": 764.99748684199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366137.545699998736382, 255517.97410000115633 ], [ 366103.677000001072884, 255518.119100000709295 ], [ 366110.728799998760223, 255542.241500001400709 ], [ 366139.761500000953674, 255541.845800001174212 ], [ 366139.086400002241135, 255526.430500000715256 ], [ 366137.545699998736382, 255517.97410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031700", "MAP": "A9-538-T99", "PARCEL_NAM": "F-2", "ACRE": ".25", "LONGITUDE": -64.86023851, "LATITUDE": 18.32844279, "OBJECTID_1": 39275, "PARCEL_NO_": "107701031700", "Tax_Legal_": "F-2 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "HANLEY, ALPHONSO A.", "Address": "PO BOX 600146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.64077526700001, "SHAPE_Area": 1152.5105307199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366266.142200000584126, 255496.558899998664856 ], [ 366265.857600003480911, 255499.752599999308586 ], [ 366261.800599999725819, 255509.280799999833107 ], [ 366259.352899998426437, 255512.638300001621246 ], [ 366298.642800003290176, 255538.713199999183416 ], [ 366301.086900003254414, 255535.777899999171495 ], [ 366301.975900001823902, 255526.07490000128746 ], [ 366300.598899997770786, 255498.410399999469519 ], [ 366266.142200000584126, 255496.558899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701053800", "MAP": "A9-541-T000", "PARCEL_NAM": "32-15", "ACRE": "0.26", "LONGITUDE": -64.86496964, "LATITUDE": 18.3284674, "OBJECTID_1": 39411, "PARCEL_NO_": "107701053800", "Tax_Legal_": "PAR 32-15 FRYDENHOJ 3 RED HOOK", "Name": "FRYDENHOJ ESTATES CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 130300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.76104011800001, "SHAPE_Area": 1109.9238615300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365809.547399997711182, 255495.235700000077486 ], [ 365770.023699998855591, 255496.600999999791384 ], [ 365768.173699997365475, 255524.450199998915195 ], [ 365764.946699999272823, 255524.634899999946356 ], [ 365764.061200000345707, 255533.915800001472235 ], [ 365791.529799997806549, 255527.807799998670816 ], [ 365799.71339999884367, 255513.731499999761581 ], [ 365801.338600002229214, 255512.267099998891354 ], [ 365802.170100003480911, 255509.318599998950958 ], [ 365803.795299999415874, 255507.854299999773502 ], [ 365807.074500001966953, 255501.548300001770258 ], [ 365809.547399997711182, 255495.235700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601060400", "MAP": "C9-278-T82", "PARCEL_NAM": "7-4", "ACRE": "0.24", "LONGITUDE": -64.88212894, "LATITUDE": 18.32850031, "OBJECTID_1": 38121, "PARCEL_NO_": "107601060400", "Tax_Legal_": "7-4 MARIENDAHL RED HOOK QTR.", "Name": "RITTER, JENNIFER", "Address": "PO Box 11692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.61915441799999, "SHAPE_Area": 852.39855960700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363988.839900001883507, 255486.666900001466274 ], [ 363954.985500000417233, 255485.1233000010252 ], [ 363958.756399996578693, 255515.762699998915195 ], [ 363978.890799999237061, 255518.671700000762939 ], [ 363988.839900001883507, 255486.666900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602051000", "MAP": "A9-457-T94", "PARCEL_NAM": "37-25", "ACRE": "0.24", "LONGITUDE": -64.86649676, "LATITUDE": 18.32843312, "OBJECTID_1": 38523, "PARCEL_NO_": "107602051000", "Tax_Legal_": "FRYDENHOJ 37-25 RED HOOK QUARTER", "Name": "LUKE, SHERLENE", "Address": "PO Box 502322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29000, "Improved_V": 233400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.07316828800001, "SHAPE_Area": 1157.7489768800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365650.714599996805191, 255492.669199999421835 ], [ 365603.126000002026558, 255494.17960000038147 ], [ 365602.859899997711182, 255525.419199999421835 ], [ 365606.074299998581409, 255526.712099999189377 ], [ 365627.110399998724461, 255518.440499998629093 ], [ 365636.791500002145767, 255517.886500000953674 ], [ 365640.01860000193119, 255517.701799999922514 ], [ 365650.714599996805191, 255492.669199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701052600", "MAP": "A9-457-T94", "PARCEL_NAM": "37-26", "ACRE": "0.23", "LONGITUDE": -64.86609881, "LATITUDE": 18.32846791, "OBJECTID_1": 39400, "PARCEL_NO_": "107701052600", "Tax_Legal_": "FRYDENHOJ ESTATE 37-26 RED HOOK QUARTER", "Name": "TUITT, DANIEL E", "Address": "PO Box 306096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.284460717, "SHAPE_Area": 1045.2433362199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365678.859999999403954, 255501.765500001609325 ], [ 365650.714599996805191, 255492.669199999421835 ], [ 365640.01860000193119, 255517.701799999922514 ], [ 365650.491599999368191, 255518.842999998480082 ], [ 365661.727899998426437, 255525.056699998676777 ], [ 365694.003700003027916, 255522.57660000026226 ], [ 365678.859999999403954, 255501.765500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701053000", "MAP": "A9-471-T95", "PARCEL_NAM": "37-17", "ACRE": null, "LONGITUDE": -64.86530974, "LATITUDE": 18.32843592, "OBJECTID_1": 39404, "PARCEL_NO_": "107701053000", "Tax_Legal_": "FRYDENHOJ ESTATE 37-17 RED HOOK QUARTER", "Name": "CELESTINE, PRISCILLA & MARTIN", "Address": "PO Box 6024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30200, "Improved_V": 349800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.237099637, "SHAPE_Area": 1170.8572701200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365764.946699999272823, 255524.634899999946356 ], [ 365767.656900003552437, 255490.459899999201298 ], [ 365728.115199998021126, 255493.936000000685453 ], [ 365732.07490000128746, 255502.412099998444319 ], [ 365731.201999999582767, 255510.215399999171495 ], [ 365728.675200000405312, 255522.860399998724461 ], [ 365727.852700002491474, 255524.753499999642372 ], [ 365764.946699999272823, 255524.634899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85256636, "LATITUDE": 18.32827902, "OBJECTID_1": 39452, "PARCEL_NO_": "107702010800", "Tax_Legal_": "SMITH BAY ESTATE 18-24 1,2&3 EASTEND", "Name": "C CHARLES REVOCABLE TRUST", "Address": "PO BOX 304837", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.5971503, "SHAPE_Area": 1617.9054093300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367079.730800002813339, 255474.689599998295307 ], [ 367082.544600002467632, 255534.048799999058247 ], [ 367112.397299997508526, 255523.630800001323223 ], [ 367111.835500001907349, 255494.917500000447035 ], [ 367109.5675999969244, 255477.167100001126528 ], [ 367079.730800002813339, 255474.689599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86181365, "LATITUDE": 18.32838952, "OBJECTID_1": 39265, "PARCEL_NO_": "107701030600", "Tax_Legal_": "FRYDENHOJ 36-4&3A RED HOOK QTR", "Name": "PHILLIPS, TESROY", "Address": "6544 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33700, "Improved_V": 50400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.598505871, "SHAPE_Area": 808.82347406600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366136.096699997782707, 255498.75279999896884 ], [ 366099.875600002706051, 255491.067999999970198 ], [ 366102.883299998939037, 255516.635000001639128 ], [ 366103.677000001072884, 255518.119100000709295 ], [ 366137.545699998736382, 255517.97410000115633 ], [ 366136.096699997782707, 255498.75279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701034000", "MAP": "A9-538-T99", "PARCEL_NAM": "R-37", "ACRE": "0.24", "LONGITUDE": -64.85794024, "LATITUDE": 18.32828709, "OBJECTID_1": 39292, "PARCEL_NO_": "107701034000", "Tax_Legal_": "NAZARETH ESTATE R-37 No.1 RED HOOK QTR.", "Name": "BOUGOUNEAI, CHERYL E. & MAYNARD", "Address": "PO Box 306906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 72300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.771297086, "SHAPE_Area": 920.56846059400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366539.434600003063679, 255480.733399998396635 ], [ 366521.66330000013113, 255484.387699998915195 ], [ 366511.980400003492832, 255485.152800001204014 ], [ 366512.5996999964118, 255507.111600000411272 ], [ 366523.774800002574921, 255520.502000000327826 ], [ 366546.516999997198582, 255501.267499998211861 ], [ 366539.434600003063679, 255480.733399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87372381, "LATITUDE": 18.32817152, "OBJECTID_1": 38318, "PARCEL_NO_": "107602012400", "Tax_Legal_": "2B-38 MARIENDAHL RED HOOK QTR", "Name": "MONSANTO JR., LEON A. & DONNA C.", "Address": "PO Box 9054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 111300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.87529769899999, "SHAPE_Area": 1632.3376904 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364891.33500000089407, 255499.313000001013279 ], [ 364891.875699996948242, 255498.068599998950958 ], [ 364889.4746999964118, 255495.938000001013279 ], [ 364888.688199996948242, 255493.609600000083447 ], [ 364887.079199999570847, 255493.174199998378754 ], [ 364885.464699998497963, 255493.372099999338388 ], [ 364882.2179000005126, 255495.878600001335144 ], [ 364877.441200003027916, 255488.662399999797344 ], [ 364880.689800001680851, 255485.944699998944998 ], [ 364879.926600001752377, 255480.87220000103116 ], [ 364876.767899997532368, 255473.035900000482798 ], [ 364872.811899997293949, 255464.137600000947714 ], [ 364870.419900000095367, 255460.95160000026226 ], [ 364868.832500003278255, 255457.983300000429153 ], [ 364866.451300002634525, 255453.530900001525879 ], [ 364864.869199998676777, 255449.929299999028444 ], [ 364860.904200002551079, 255442.086399998515844 ], [ 364858.535599999129772, 255436.156399998813868 ], [ 364855.312200002372265, 255435.9189000017941 ], [ 364848.768200002610683, 255446.842199999839067 ], [ 364843.879900000989437, 255452.712900001555681 ], [ 364843.843999996781349, 255456.934399999678135 ], [ 364847.852200001478195, 255459.711500000208616 ], [ 364842.949600003659725, 255467.270700000226498 ], [ 364838.140500001609325, 255463.853799998760223 ], [ 364834.103500001132488, 255464.454100001603365 ], [ 364826.780199997127056, 255472.204599998891354 ], [ 364838.820900000631809, 255478.635999999940395 ], [ 364881.611100003123283, 255501.856300000101328 ], [ 364891.33500000089407, 255499.313000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031000", "MAP": null, "PARCEL_NAM": "M-42", "ACRE": null, "LONGITUDE": -64.85555774, "LATITUDE": 18.32830701, "OBJECTID_1": 39269, "PARCEL_NO_": "107701031000", "Tax_Legal_": "FRYDENHOJ ESTATE 40 RED HOOK QUARTER", "Name": "BRATHWAITE, JR., DONALD", "Address": "765 E. 165TH STREET, 3A", "City": "BRONX", "State": "New York", "Zip": 10456, "Country": "United States", "Land_Value": 84900, "Improved_V": 147300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.881424814, "SHAPE_Area": 757.12277963300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366783.126900002360344, 255476.487900000065565 ], [ 366760.91160000115633, 255512.943599998950958 ], [ 366769.748700000345707, 255516.815600000321865 ], [ 366776.98929999768734, 255518.774700000882149 ], [ 366783.441600002348423, 255518.616399999707937 ], [ 366793.945200003683567, 255516.169300001114607 ], [ 366785.399499997496605, 255478.10249999910593 ], [ 366783.126900002360344, 255476.487900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702034600", "MAP": "A9-566-T001", "PARCEL_NAM": "M-46", "ACRE": ".24", "LONGITUDE": -64.85588051000001, "LATITUDE": 18.32768067, "OBJECTID_1": 39591, "PARCEL_NO_": "107702034600", "Tax_Legal_": "NAZARETH ESTATE M-46 No.1 RED HOOK QTR.", "Name": "DOUGLAS, JANET K. & SERRANO, ANGEL", "Address": "PO Box 307856", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 14300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.04209346099999, "SHAPE_Area": 890.22907564800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366743.995399996638298, 255420.922200001776218 ], [ 366736.905381371965632, 255422.730656987114344 ], [ 366730.00745726301102, 255425.171460902580293 ], [ 366723.357900001108646, 255428.224700000137091 ], [ 366721.375431605440099, 255429.999202265666099 ], [ 366719.535499997437, 255431.921100001782179 ], [ 366721.607199996709824, 255433.462699998170137 ], [ 366733.270099997520447, 255440.872900001704693 ], [ 366743.32490000128746, 255448.208599999547005 ], [ 366749.287000000476837, 255452.444600000977516 ], [ 366756.901900000870228, 255443.249600000679493 ], [ 366762.928900003433228, 255435.794300001114607 ], [ 366766.745800003409386, 255431.085799999535084 ], [ 366767.602099999785423, 255423.980999998748302 ], [ 366767.876199997961521, 255422.062600001692772 ], [ 366755.951264535600785, 255421.168561395897996 ], [ 366743.995399996638298, 255420.922200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702030700", "MAP": "A9-537-T99", "PARCEL_NAM": "M-24", "ACRE": ".26", "LONGITUDE": -64.85416731, "LATITUDE": 18.32822658, "OBJECTID_1": 39558, "PARCEL_NO_": "107702030700", "Tax_Legal_": "NAZARETH ESTATE LOT M-24 NO.1 REDHOOK QTR", "Name": "GREAUX, ARLEEN", "Address": "PO Box 307071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42700, "Improved_V": 65700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.14680510900001, "SHAPE_Area": 1105.99653711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366941.579099997878075, 255515.249299999326468 ], [ 366938.182499997317791, 255473.563499998301268 ], [ 366925.735600002110004, 255474.81810000166297 ], [ 366911.008400000631809, 255476.238499999046326 ], [ 366914.770599998533726, 255515.188900001347065 ], [ 366930.221000000834465, 255516.229200001806021 ], [ 366941.579099997878075, 255515.249299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702030600", "MAP": "A9-537-T99", "PARCEL_NAM": "M-23", "ACRE": ".24", "LONGITUDE": -64.8539268, "LATITUDE": 18.32820973, "OBJECTID_1": 39557, "PARCEL_NO_": "107702030600", "Tax_Legal_": "NAZARETH ESTATE M-23 No.1 RED HOOK QTR.", "Name": "MANIMAMBU, TAMBUORA", "Address": "PO Box 9343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.44447172599999, "SHAPE_Area": 1017.78326596 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366966.808300003409386, 255513.026200000196695 ], [ 366961.223099999129772, 255471.260000001639128 ], [ 366954.789800003170967, 255471.889499999582767 ], [ 366938.182499997317791, 255473.563499998301268 ], [ 366941.579099997878075, 255515.249299999326468 ], [ 366959.271600000560284, 255513.722699999809265 ], [ 366966.808300003409386, 255513.026200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107602019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87375257, "LATITUDE": 18.32753016, "OBJECTID_1": 38370, "PARCEL_NO_": "107602019900", "Tax_Legal_": "2B MARIENDAHL RED HOOK", "Name": "MONSANTO, L & JENSEN, M", "Address": "PO Box 172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 293700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 924.03545849299996, "SHAPE_Area": 4217.14250154 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364865.952500000596046, 255417.429800000041723 ], [ 364873.297399997711182, 255407.146299999207258 ], [ 364878.208999998867512, 255398.531700000166893 ], [ 364879.839599996805191, 255396.434099998325109 ], [ 364881.462999999523163, 255395.180799998342991 ], [ 364889.659199997782707, 255379.627000000327826 ], [ 364891.282600000500679, 255378.373700000345707 ], [ 364895.402300000190735, 255368.063799999654293 ], [ 364897.027500003576279, 255366.599500000476837 ], [ 364901.16160000115633, 255354.600999999791384 ], [ 364907.741499997675419, 255339.4560999982059 ], [ 364907.854800000786781, 255326.158100001513958 ], [ 364905.505999997258186, 255317.906300000846386 ], [ 364900.73650000244379, 255309.84569999948144 ], [ 364896.726499997079372, 255307.279699999839067 ], [ 364893.508400000631809, 255306.409000001847744 ], [ 364887.052500002086163, 255306.989500001072884 ], [ 364882.176899999380112, 255311.382500000298023 ], [ 364878.080600000917912, 255318.948399998247623 ], [ 364873.984300002455711, 255326.514199998229742 ], [ 364872.348300002515316, 255329.245000001043081 ], [ 364868.262800000607967, 255335.544399999082088 ], [ 364865.816899999976158, 255338.690799999982119 ], [ 364859.310599997639656, 255345.181400001049042 ], [ 364845.479299999773502, 255359.633699998259544 ], [ 364843.861199997365475, 255360.253699999302626 ], [ 364843.042300000786781, 255361.724700000137091 ], [ 364832.48480000346899, 255370.504200000315905 ], [ 364826.799199998378754, 255375.312800001353025 ], [ 364813.810099996626377, 255385.55009999871254 ], [ 364807.314599998295307, 255390.774300001561642 ], [ 364795.938199996948242, 255401.024700000882149 ], [ 364786.993199996650219, 255409.817499998956919 ], [ 364781.295100003480911, 255416.10359999909997 ], [ 364773.960900001227856, 255425.120600000023842 ], [ 364767.38459999859333, 255439.843400001525879 ], [ 364775.411700002849102, 255444.130899999290705 ], [ 364780.352099999785423, 255432.138999998569489 ], [ 364789.327600002288818, 255419.758000001311302 ], [ 364809.649099998176098, 255400.714800000190735 ], [ 364811.274300001561642, 255399.250399999320507 ], [ 364835.634499996900558, 255379.395899999886751 ], [ 364852.689300000667572, 255365.181099999696016 ], [ 364864.072999998927116, 255354.086300000548363 ], [ 364867.325199998915195, 255350.946600001305342 ], [ 364870.582800000905991, 255347.173500001430511 ], [ 364874.657600000500679, 255342.140599999576807 ], [ 364880.375500001013279, 255333.532600000500679 ], [ 364884.468199998140335, 255326.388900000602007 ], [ 364888.584200002253056, 255316.501200001686811 ], [ 364891.820299997925758, 255315.261100001633167 ], [ 364895.823100000619888, 255318.671399999409914 ], [ 364898.193499997258186, 255324.390299998223782 ], [ 364898.971000000834465, 255327.77419999986887 ], [ 364898.083800002932549, 255337.266100000590086 ], [ 364897.246899999678135, 255340.847899999469519 ], [ 364886.549099996685982, 255366.091499999165535 ], [ 364877.52139999717474, 255384.593899998813868 ], [ 364867.726899996399879, 255398.445900000631809 ], [ 364857.119000002741814, 255413.135600000619888 ], [ 364850.558799996972084, 255425.958599999547005 ], [ 364843.192299999296665, 255438.775100000202656 ], [ 364842.3716000020504, 255440.457100000232458 ], [ 364837.479800000786781, 255446.749899998307228 ], [ 364835.851000003516674, 255448.636399999260902 ], [ 364827.706900000572205, 255458.068900000303984 ], [ 364818.754799999296665, 255467.706000000238419 ], [ 364826.780199997127056, 255472.204599998891354 ], [ 364834.103500001132488, 255464.454100001603365 ], [ 364838.140500001609325, 255463.853799998760223 ], [ 364842.949600003659725, 255467.270700000226498 ], [ 364847.852200001478195, 255459.711500000208616 ], [ 364843.843999996781349, 255456.934399999678135 ], [ 364843.879900000989437, 255452.712900001555681 ], [ 364848.768200002610683, 255446.842199999839067 ], [ 364855.312200002372265, 255435.9189000017941 ], [ 364858.535599999129772, 255436.156399998813868 ], [ 364860.904200002551079, 255442.086399998515844 ], [ 364864.869199998676777, 255449.929299999028444 ], [ 364866.451300002634525, 255453.530900001525879 ], [ 364868.832500003278255, 255457.983300000429153 ], [ 364870.419900000095367, 255460.95160000026226 ], [ 364872.811899997293949, 255464.137600000947714 ], [ 364876.767899997532368, 255473.035900000482798 ], [ 364879.926600001752377, 255480.87220000103116 ], [ 364880.689800001680851, 255485.944699998944998 ], [ 364877.441200003027916, 255488.662399999797344 ], [ 364882.2179000005126, 255495.878600001335144 ], [ 364885.464699998497963, 255493.372099999338388 ], [ 364887.079199999570847, 255493.174199998378754 ], [ 364888.688199996948242, 255493.609600000083447 ], [ 364889.4746999964118, 255495.938000001013279 ], [ 364891.875699996948242, 255498.068599998950958 ], [ 364896.810699999332428, 255486.709899999201298 ], [ 364891.236599996685982, 255478.431699998676777 ], [ 364887.260799996554852, 255471.855200000107288 ], [ 364884.888599999248981, 255466.34739999845624 ], [ 364882.493000000715256, 255463.583599999547005 ], [ 364881.715499997138977, 255460.199700001627207 ], [ 364876.141400001943111, 255451.921399999409914 ], [ 364875.360299997031689, 255448.959699999541044 ], [ 364872.964699998497963, 255446.195900000631809 ], [ 364872.187200002372265, 255442.812100000679493 ], [ 364870.587200000882149, 255441.321299999952316 ], [ 364868.222199998795986, 255434.969099998474121 ], [ 364866.62389999628067, 255433.267299998551607 ], [ 364865.050899997353554, 255428.610399998724461 ], [ 364864.320100001990795, 255419.738499999046326 ], [ 364865.952500000596046, 255417.429800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702033000", "MAP": "A9-538-T99", "PARCEL_NAM": "R-38", "ACRE": null, "LONGITUDE": -64.85765385000001, "LATITUDE": 18.32822299, "OBJECTID_1": 39580, "PARCEL_NO_": "107702033000", "Tax_Legal_": "NAZARETH ESTATE R-38 No.1 RED HOOK QTR.", "Name": "PETERSON, CAROL E", "Address": "2036 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.56795772300001, "SHAPE_Area": 804.40084786199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366562.054499998688698, 255475.852299999445677 ], [ 366539.434600003063679, 255480.733399998396635 ], [ 366546.516999997198582, 255501.267499998211861 ], [ 366560.136200003325939, 255511.722500000149012 ], [ 366578.062100000679493, 255489.915500000119209 ], [ 366562.054499998688698, 255475.852299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702030800", "MAP": "A9-537-T99", "PARCEL_NAM": "M-25", "ACRE": ".24", "LONGITUDE": -64.8544057, "LATITUDE": 18.32824286, "OBJECTID_1": 39559, "PARCEL_NO_": "107702030800", "Tax_Legal_": "NAZARETH ESTATE LOT M-25 No.1 REDHOOK QTR", "Name": "BAILEY, KELVIN S.,JR.", "Address": "6521 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.042802053, "SHAPE_Area": 856.50004469400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366914.770599998533726, 255515.188900001347065 ], [ 366911.008400000631809, 255476.238499999046326 ], [ 366901.524599999189377, 255477.153099998831749 ], [ 366893.66160000115633, 255477.945700000971556 ], [ 366885.116099998354912, 255510.160500001162291 ], [ 366892.358499996364117, 255511.908500000834465 ], [ 366905.237899996340275, 255514.546999998390675 ], [ 366914.770599998533726, 255515.188900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85108976, "LATITUDE": 18.32809077, "OBJECTID_1": 39451, "PARCEL_NO_": "107702010700", "Tax_Legal_": "SMITH BAY ESTATE 18-2 1,2 &3 EASTEND QTR", "Name": "WINTERHALTER, LISA M.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83700, "Improved_V": 273200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.795614223, "SHAPE_Area": 2636.70902746 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367267.901600003242493, 255443.632500000298023 ], [ 367241.286100000143051, 255444.25899999961257 ], [ 367233.635499998927116, 255490.425900001078844 ], [ 367221.368100002408028, 255510.590500000864267 ], [ 367238.250399999320507, 255516.639299999922514 ], [ 367249.536899998784065, 255516.942800000309944 ], [ 367260.850500002503395, 255514.079999998211861 ], [ 367268.141500003635883, 255510.128899998962879 ], [ 367274.511799998581409, 255504.060400001704693 ], [ 367267.901600003242493, 255443.632500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702030500", "MAP": "A9-537-T99", "PARCEL_NAM": "M-22", "ACRE": ".24", "LONGITUDE": -64.85370804, "LATITUDE": 18.32817956, "OBJECTID_1": 39556, "PARCEL_NO_": "107702030500", "Tax_Legal_": "NAZARETH ESTATE M-22 No.1 RED HOOK QTR.", "Name": "ALCENDOR, SAMSON & NATHALY", "Address": "PO Box 8435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.05220742200001, "SHAPE_Area": 939.37450420799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366961.223099999129772, 255471.260000001639128 ], [ 366966.808300003409386, 255513.026200000196695 ], [ 366969.762699998915195, 255512.753100000321865 ], [ 366988.33839999884367, 255509.316500000655651 ], [ 366984.6503000035882, 255468.967500001192093 ], [ 366961.223099999129772, 255471.260000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701053300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86601285, "LATITUDE": 18.32821183, "OBJECTID_1": 39407, "PARCEL_NO_": "107701053300", "Tax_Legal_": "FRYDENHOJ ESTATE 37-27 RED HOOK QUARTER", "Name": "WALTER, ANTHONY", "Address": "PO Box 10713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 284600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.55557370299999, "SHAPE_Area": 1633.39360425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365698.423699997365475, 255477.016600001603365 ], [ 365686.379399999976158, 255471.007399998605251 ], [ 365675.940499998629093, 255465.855700001120567 ], [ 365642.062799997627735, 255467.056099999696016 ], [ 365650.714599996805191, 255492.669199999421835 ], [ 365678.859999999403954, 255501.765500001609325 ], [ 365692.574500001966953, 255501.033399999141693 ], [ 365691.845499999821186, 255491.950399998575449 ], [ 365707.181699998676777, 255490.175999999046326 ], [ 365716.090700000524521, 255485.604899998754263 ], [ 365698.423699997365475, 255477.016600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601060100", "MAP": "C9-278-T82", "PARCEL_NAM": "7-3", "ACRE": "0.26", "LONGITUDE": -64.88211321, "LATITUDE": 18.32825395, "OBJECTID_1": 38120, "PARCEL_NO_": "107601060100", "Tax_Legal_": "MARIENDAHL ESTATE 7-1,7-2&7-3 RED HOOK QTR.", "Name": "RITTER, JENNIFER", "Address": "PO Box 11692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 87100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.16658719599999, "SHAPE_Area": 963.12008978699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363995.486400000751019, 255463.712099999189377 ], [ 363951.985100001096725, 255458.712000001221895 ], [ 363954.985500000417233, 255485.1233000010252 ], [ 363988.839900001883507, 255486.666900001466274 ], [ 363989.664200000464916, 255484.562699999660254 ], [ 363995.486400000751019, 255463.712099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702030400", "MAP": "A9-537-T99", "PARCEL_NAM": "M-21", "ACRE": ".24", "LONGITUDE": -64.85347641, "LATITUDE": 18.32814714, "OBJECTID_1": 39555, "PARCEL_NO_": "107702030400", "Tax_Legal_": "NAZARETH ESTATE LOT M-21 No.1 REDHOOK QTR", "Name": "RILEY, AUGUSTUS", "Address": "PO BOX 302906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 845300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.95715586, "SHAPE_Area": 1057.4974872400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367014.1925999969244, 255503.406399998813868 ], [ 367012.09009999781847, 255466.236800000071526 ], [ 366984.6503000035882, 255468.967500001192093 ], [ 366988.33839999884367, 255509.316500000655651 ], [ 367010.144799999892712, 255505.27309999987483 ], [ 367014.1925999969244, 255503.406399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702031100", "MAP": null, "PARCEL_NAM": "M-41", "ACRE": null, "LONGITUDE": -64.85571492, "LATITUDE": 18.3281689, "OBJECTID_1": 39562, "PARCEL_NO_": "107702031100", "Tax_Legal_": "NAZARETH ESTATE LOT M-41 No.1 REDHOOK QTR", "Name": "RICHARDSON, CHRISTIAN L. & SANDRA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34300, "Improved_V": 319800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.81516621, "SHAPE_Area": 952.04293034900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366775.781199999153614, 255471.268800001591444 ], [ 366764.572899997234344, 255463.305300001055002 ], [ 366743.359200000762939, 255495.95380000025034 ], [ 366752.913199998438358, 255505.278799999505281 ], [ 366760.91160000115633, 255512.943599998950958 ], [ 366783.126900002360344, 255476.487900000065565 ], [ 366775.781199999153614, 255471.268800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702030900", "MAP": "A9-537-T99", "PARCEL_NAM": "M-26", "ACRE": ".26", "LONGITUDE": -64.85465197000001, "LATITUDE": 18.32820069, "OBJECTID_1": 39560, "PARCEL_NO_": "107702030900", "Tax_Legal_": "NAZARETH ESTATE LOT M-26 No.1 REDHOOK QTR", "Name": "McDOWEL, CORINTHIA O", "Address": "PO Box 6602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 45100, "Improved_V": 188800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.847952337, "SHAPE_Area": 853.24805238099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366885.116099998354912, 255510.160500001162291 ], [ 366893.66160000115633, 255477.945700000971556 ], [ 366882.155199997127056, 255479.105500001460314 ], [ 366869.69820000231266, 255473.66950000077486 ], [ 366854.046499997377396, 255500.061500001698732 ], [ 366858.581500001251698, 255501.288499999791384 ], [ 366873.053700000047684, 255506.262099999934435 ], [ 366879.486299999058247, 255508.425599999725819 ], [ 366885.116099998354912, 255510.160500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701053900", "MAP": "A9-541-T000", "PARCEL_NAM": "32-16", "ACRE": "0.31", "LONGITUDE": -64.86490906, "LATITUDE": 18.32820307, "OBJECTID_1": 39412, "PARCEL_NO_": "107701053900", "Tax_Legal_": "32-16 FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "HENRY, CAROL", "Address": "PO Box 11223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36300, "Improved_V": 141400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.22447993700001, "SHAPE_Area": 1146.85801036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365820.218299999833107, 255473.15819999948144 ], [ 365769.452899999916553, 255468.94310000166297 ], [ 365767.656900003552437, 255490.459899999201298 ], [ 365770.883900001645088, 255490.275199998170137 ], [ 365770.023699998855591, 255496.600999999791384 ], [ 365809.547399997711182, 255495.235700000077486 ], [ 365815.299500003457069, 255482.617199998348951 ], [ 365820.218299999833107, 255473.15819999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86182037, "LATITUDE": 18.32813357, "OBJECTID_1": 39266, "PARCEL_NO_": "107701030700", "Tax_Legal_": "36-3 FRYDENHOJ NO.3 RED HOOK QTR", "Name": "TODMAN, IRA E. & OTHERS", "Address": "PO Box 8797", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 114300, "Improved_V": 179800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.68222539300001, "SHAPE_Area": 1193.4921836000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366132.405000001192093, 255458.825899999588728 ], [ 366097.697599999606609, 255462.763700000941753 ], [ 366099.990699999034405, 255477.559000000357628 ], [ 366099.160999998450279, 255480.296399999409914 ], [ 366099.875600002706051, 255491.067999999970198 ], [ 366136.096699997782707, 255498.75279999896884 ], [ 366132.405000001192093, 255458.825899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602051100", "MAP": "A9-464-T95", "PARCEL_NAM": "37-24", "ACRE": "0.25", "LONGITUDE": -64.86648359, "LATITUDE": 18.32819658, "OBJECTID_1": 38524, "PARCEL_NO_": "107602051100", "Tax_Legal_": "ESTATE FRYDENHOJ 37-24 RED HOOK QUARTER", "Name": "CREQUE, ORLANDO & BERNICE", "Address": "PO Box 304143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28100, "Improved_V": 212200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.37326345100001, "SHAPE_Area": 1138.85688777 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365642.062799997627735, 255467.056099999696016 ], [ 365603.356200002133846, 255467.161499999463558 ], [ 365603.126000002026558, 255494.17960000038147 ], [ 365650.714599996805191, 255492.669199999421835 ], [ 365642.062799997627735, 255467.056099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702030300", "MAP": "A9-537-T99", "PARCEL_NAM": "M-20", "ACRE": ".27", "LONGITUDE": -64.85320223, "LATITUDE": 18.3281013, "OBJECTID_1": 39554, "PARCEL_NO_": "107702030300", "Tax_Legal_": "NAZARETH ESTATE LOT M-20 No.1 REDHOOK QTR", "Name": "DONOVAN, DALE D", "Address": "PO Box 9312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.31439271799999, "SHAPE_Area": 1162.00660771 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367045.179499998688698, 255462.918999999761581 ], [ 367012.09009999781847, 255466.236800000071526 ], [ 367014.1925999969244, 255503.406399998813868 ], [ 367019.833200000226498, 255503.874800000339746 ], [ 367023.848600000143051, 255505.807500001043081 ], [ 367047.384499996900558, 255488.057199999690056 ], [ 367045.179499998688698, 255462.918999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701053100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86526532000001, "LATITUDE": 18.32811556, "OBJECTID_1": 39405, "PARCEL_NO_": "107701053100", "Tax_Legal_": "FRYDENHOJ ESTATE 37-18 RED HOOK QTR.", "Name": "PAUL, ALKIN A. & RAQUEL CABAN", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36100, "Improved_V": 58000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.535182271, "SHAPE_Area": 1304.80826129 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365769.452899999916553, 255468.94310000166297 ], [ 365771.308300003409386, 255440.46059999987483 ], [ 365755.08500000089407, 255451.72690000012517 ], [ 365751.019199997186661, 255455.7043999992311 ], [ 365743.690499998629093, 255464.088199999183416 ], [ 365734.722199998795986, 255475.624899998307228 ], [ 365729.781800001859665, 255487.616799999028444 ], [ 365728.955700002610683, 255489.932100001722574 ], [ 365728.115199998021126, 255493.936000000685453 ], [ 365767.656900003552437, 255490.459899999201298 ], [ 365769.452899999916553, 255468.94310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031800", "MAP": "A9-538-T99", "PARCEL_NAM": "F-3", "ACRE": null, "LONGITUDE": -64.86019838, "LATITUDE": 18.32815233, "OBJECTID_1": 39276, "PARCEL_NO_": "107701031800", "Tax_Legal_": "F-3 ESTATE NAZARETH #1 RED HOOK QTR", "Name": "SMITH, LETISHMA", "Address": "PO Box 8657", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.33646679899999, "SHAPE_Area": 1144.23851132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366267.485299997031689, 255481.485599998384714 ], [ 366266.142200000584126, 255496.558899998664856 ], [ 366300.598899997770786, 255498.410399999469519 ], [ 366301.453699998557568, 255492.7179000005126 ], [ 366303.935599997639656, 255485.349899999797344 ], [ 366307.212999999523163, 255479.254999998956919 ], [ 366312.101199999451637, 255473.384399998933077 ], [ 366311.373999997973442, 255464.090300001204014 ], [ 366284.753100000321865, 255465.350099999457598 ], [ 366267.485299997031689, 255481.485599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87342363, "LATITUDE": 18.32794498, "OBJECTID_1": 38318, "PARCEL_NO_": "107602012400", "Tax_Legal_": "2B-38 MARIENDAHL RED HOOK QTR", "Name": "MONSANTO JR., LEON A. & DONNA C.", "Address": "PO Box 9054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 111300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.59988109299999, "SHAPE_Area": 1823.34873707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364919.01630000025034, 255435.807000000029802 ], [ 364865.952500000596046, 255417.429800000041723 ], [ 364864.320100001990795, 255419.738499999046326 ], [ 364865.050899997353554, 255428.610399998724461 ], [ 364866.62389999628067, 255433.267299998551607 ], [ 364868.222199998795986, 255434.969099998474121 ], [ 364870.587200000882149, 255441.321299999952316 ], [ 364872.187200002372265, 255442.812100000679493 ], [ 364872.964699998497963, 255446.195900000631809 ], [ 364875.360299997031689, 255448.959699999541044 ], [ 364876.141400001943111, 255451.921399999409914 ], [ 364881.715499997138977, 255460.199700001627207 ], [ 364882.493000000715256, 255463.583599999547005 ], [ 364884.888599999248981, 255466.34739999845624 ], [ 364887.260799996554852, 255471.855200000107288 ], [ 364891.236599996685982, 255478.431699998676777 ], [ 364896.810699999332428, 255486.709899999201298 ], [ 364915.726300001144409, 255443.37950000166893 ], [ 364919.01630000025034, 255435.807000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012300", "MAP": "D9-5776-T94", "PARCEL_NAM": "23A-4", "ACRE": ".24", "LONGITUDE": -64.86245935, "LATITUDE": 18.32851211, "OBJECTID_1": 39143, "PARCEL_NO_": "107701012300", "Tax_Legal_": "FRYDENHOJ ESTATE 23A RED HOOK QTR", "Name": "MORRELL, JOSEPH J. & WAYNE & JOHNSON, S.", "Address": "PO Box 6453", "City": "Fullerton", "State": "California", "Zip": 92834, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.35714154, "SHAPE_Area": 973.96523367700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366065.987400002777576, 255531.822000000625849 ], [ 366064.236000001430511, 255499.307599999010563 ], [ 366047.668799996376038, 255502.173000000417233 ], [ 366026.676700003445148, 255524.542100001126528 ], [ 366030.867700003087521, 255529.822000000625849 ], [ 366035.079800002276897, 255532.16440000012517 ], [ 366039.256502202595584, 255533.797065807011677 ], [ 366043.609630869876128, 255534.874428194161737 ], [ 366048.065700002014637, 255535.378299999982119 ], [ 366056.082649606280029, 255533.971854178409558 ], [ 366064.044299997389317, 255532.280200000852346 ], [ 366065.987400002777576, 255531.822000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701054300", "MAP": "A9-541-T000", "PARCEL_NAM": "32-20", "ACRE": "0.26", "LONGITUDE": -64.86438678, "LATITUDE": 18.32810543, "OBJECTID_1": 39415, "PARCEL_NO_": "107701054300", "Tax_Legal_": "FRYDENHOJ ESTATE 32-20 No.3 RED HOOK QUARTER", "Name": "TURNBULL WHEATLEY, KAREN", "Address": "PO Box 306352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.67305708500001, "SHAPE_Area": 1078.4362567000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365868.722900003194809, 255458.7787000015378 ], [ 365834.082000002264977, 255454.906599998474121 ], [ 365829.067900002002716, 255475.552700001746416 ], [ 365827.437299996614456, 255477.650299999862909 ], [ 365824.955399997532368, 255485.018300000578165 ], [ 365855.537799999117851, 255492.023600000888109 ], [ 365868.722900003194809, 255458.7787000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701053200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86556273, "LATITUDE": 18.32796062, "OBJECTID_1": 39406, "PARCEL_NO_": "107701053200", "Tax_Legal_": "FRYDENHOJ ESTATE 37-19 RED HOOK QTR.", "Name": "ALLEN, EWALDO & ESTHER M. WILLIAMS", "Address": "PO Box 8714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.044515338, "SHAPE_Area": 1549.23002376 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365757.619000002741814, 255438.23759999871254 ], [ 365713.325699999928474, 255431.542300000786781 ], [ 365698.423699997365475, 255477.016600001603365 ], [ 365716.090700000524521, 255485.604899998754263 ], [ 365722.593299999833107, 255479.536400001496077 ], [ 365727.513899996876717, 255469.866399999707937 ], [ 365737.306500002741814, 255456.225400000810623 ], [ 365747.068599998950958, 255446.172899998724461 ], [ 365757.619000002741814, 255438.23759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702031200", "MAP": null, "PARCEL_NAM": "M-40", "ACRE": null, "LONGITUDE": -64.85589682, "LATITUDE": 18.32802693, "OBJECTID_1": 39563, "PARCEL_NO_": "107702031200", "Tax_Legal_": "NAZARETH ESTATE LOT M-40 No.1 REDHOOK QTR", "Name": "LETTSOME, ORVIN EMMANUEL", "Address": "434 Randal Ln", "City": "La Vergne", "State": "Tennessee", "Zip": 37086, "Country": "United States", "Land_Value": 37700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.751502665, "SHAPE_Area": 968.554727566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366756.544799998402596, 255457.601300001144409 ], [ 366743.32490000128746, 255448.208599999547005 ], [ 366723.576899997889996, 255479.356499999761581 ], [ 366733.716300003230572, 255486.967599999159575 ], [ 366736.119099996984005, 255488.887099999934435 ], [ 366743.359200000762939, 255495.95380000025034 ], [ 366764.572899997234344, 255463.305300001055002 ], [ 366756.544799998402596, 255457.601300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601060100", "MAP": "C9-278-T82", "PARCEL_NAM": "7-2", "ACRE": "0.28", "LONGITUDE": -64.88206915000001, "LATITUDE": 18.32804173, "OBJECTID_1": 38120, "PARCEL_NO_": "107601060100", "Tax_Legal_": "MARIENDAHL ESTATE 7-1,7-2&7-3 RED HOOK QTR.", "Name": "RITTER, JENNIFER", "Address": "PO Box 11692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 87100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.84504797299999, "SHAPE_Area": 1048.9868917399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364002.13289999961853, 255440.75730000063777 ], [ 363965.094700001180172, 255434.332499999552965 ], [ 363952.0371999964118, 255452.590700000524521 ], [ 363951.985100001096725, 255458.712000001221895 ], [ 363995.486400000751019, 255463.712099999189377 ], [ 364002.13289999961853, 255440.75730000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701054000", "MAP": "A9-541-T000", "PARCEL_NAM": "32-17", "ACRE": "0.26", "LONGITUDE": -64.8648786, "LATITUDE": 18.32796395, "OBJECTID_1": 39413, "PARCEL_NO_": "107701054000", "Tax_Legal_": "FRYDENHOJ ESTATE 32-17 No.3 RED HOOK QUARTER", "Name": "MARTIN, ALGERNON & BERNADINE", "Address": "4605 Tutu Park Mall Ste 133 PMB 143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022005, "Country": "United States", "Land_Value": 37200, "Improved_V": 23400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.41390804100001, "SHAPE_Area": 1485.9115033400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365771.308300003409386, 255440.46059999987483 ], [ 365769.452899999916553, 255468.94310000166297 ], [ 365820.218299999833107, 255473.15819999948144 ], [ 365823.553199999034405, 255460.308800000697374 ], [ 365823.578400000929832, 255457.353700000792742 ], [ 365821.202600002288818, 255452.26799999922514 ], [ 365815.571000002324581, 255450.744300000369549 ], [ 365809.950199998915195, 255447.954100001603365 ], [ 365801.937399998307228, 255441.977899998426437 ], [ 365799.52929999679327, 255440.691599998623133 ], [ 365794.705799996852875, 255438.96339999884367 ], [ 365790.686800003051758, 255437.452799998223782 ], [ 365780.202899999916553, 255437.578099999576807 ], [ 365771.308300003409386, 255440.46059999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701032600", "MAP": "A9-538-T99", "PARCEL_NAM": "T-2", "ACRE": null, "LONGITUDE": -64.85815296, "LATITUDE": 18.32788226, "OBJECTID_1": 39282, "PARCEL_NO_": "107701032600", "Tax_Legal_": "NAZARETH ESTATE LOT T-2 No.1 REDHOOK QTR", "Name": "GARNETTE, FRANCES & CLAXTON,CLEM,EDWIN,IVAN & ANGELICA", "Address": "3715 Tomlin Dr", "City": "Cocoa", "State": "Florida", "Zip": 32926, "Country": "United States", "Land_Value": 34300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.735655783, "SHAPE_Area": 867.31138915300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366496.299800001084805, 255430.101199999451637 ], [ 366495.146700002253056, 255473.404899999499321 ], [ 366505.608999997377396, 255475.8125 ], [ 366515.282999999821186, 255476.102800000458956 ], [ 366515.642599999904633, 255433.886999998241663 ], [ 366515.653399996459484, 255432.621500000357628 ], [ 366506.575199998915195, 255431.532999999821186 ], [ 366496.299800001084805, 255430.101199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86649966, "LATITUDE": 18.32795222, "OBJECTID_1": 38527, "PARCEL_NO_": "107602051500", "Tax_Legal_": "37-23 ESTATE FRYDENHOJ RED HOOK QTR.", "Name": "MAYNARD, JUDY J.", "Address": "PO Box 301911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.48292093500001, "SHAPE_Area": 1054.60707925 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365643.903800003230572, 255440.262299999594688 ], [ 365603.582699999213219, 255440.565499998629093 ], [ 365603.356200002133846, 255467.161499999463558 ], [ 365642.062799997627735, 255467.056099999696016 ], [ 365643.903800003230572, 255440.262299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701032500", "MAP": "A9-538-T99", "PARCEL_NAM": "T-1", "ACRE": null, "LONGITUDE": -64.85833708, "LATITUDE": 18.32787162, "OBJECTID_1": 39281, "PARCEL_NO_": "107701032500", "Tax_Legal_": "NAZARETH ESTATE LOT T-1 No.1 REDHOOK QTR", "Name": "GUISHARD, THELCA M", "Address": "PO Box 502641", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 34300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.607006079, "SHAPE_Area": 717.57570296999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366470.887299999594688, 255459.860500000417233 ], [ 366479.081600002944469, 255466.096200000494719 ], [ 366487.114200003445148, 255469.750500001013279 ], [ 366495.146700002253056, 255473.404899999499321 ], [ 366496.299800001084805, 255430.101199999451637 ], [ 366490.154799997806549, 255429.09739999845624 ], [ 366470.60980000346899, 255454.516399998217821 ], [ 366470.215412779536564, 255454.974271626502741 ], [ 366469.903935800655745, 255455.492122765368549 ], [ 366469.684300577791873, 255456.055104185361415 ], [ 366469.562805086548906, 255456.647072559513617 ], [ 366469.54293317446718, 255457.25105336838169 ], [ 366469.625254662707448, 255457.84972763955011 ], [ 366469.80740900686942, 255458.425928563985508 ], [ 366470.084172984526958, 255458.963133749231929 ], [ 366470.447610469826031, 255459.445938994263997 ], [ 366470.887299999594688, 255459.860500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85257874, "LATITUDE": 18.32780751, "OBJECTID_1": 39453, "PARCEL_NO_": "107702010900", "Tax_Legal_": "18-22 SMITH BAY 1,2&3 EAST END QUARTER", "Name": "LAVITT SAWYER FAMILY TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67300, "Improved_V": 435300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.043646432, "SHAPE_Area": 1658.18732073 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367077.181400001049042, 255420.907600000500679 ], [ 367079.730800002813339, 255474.689599998295307 ], [ 367109.5675999969244, 255477.167100001126528 ], [ 367109.709700003266335, 255460.491799999028444 ], [ 367111.347499996423721, 255457.549899999052286 ], [ 367115.395199999213219, 255455.683200001716614 ], [ 367112.371399998664856, 255432.015999998897314 ], [ 367097.090999998152256, 255427.246899999678135 ], [ 367077.181400001049042, 255420.907600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86185851, "LATITUDE": 18.32784892, "OBJECTID_1": 39267, "PARCEL_NO_": "107701030800", "Tax_Legal_": "FRYDENHOJ ESTATE 36-2 RED HOOK", "Name": "SUERO, MAGALY", "Address": "PO Box 10533", "City": "San Juan", "State": "Puerto Rico", "Zip": 922, "Country": "United States", "Land_Value": 33400, "Improved_V": 230500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.877769442, "SHAPE_Area": 1007.7986173100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366129.438699997961521, 255428.404100000858307 ], [ 366094.699000000953674, 255436.14130000025034 ], [ 366097.697599999606609, 255462.763700000941753 ], [ 366132.405000001192093, 255458.825899999588728 ], [ 366129.438699997961521, 255428.404100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701054400", "MAP": "A9-541-T000", "PARCEL_NAM": "32-21", "ACRE": "0.23", "LONGITUDE": -64.86432018000001, "LATITUDE": 18.32778609, "OBJECTID_1": 39416, "PARCEL_NO_": "107701054400", "Tax_Legal_": "FRYDENHOJ ESTATE 32-21 No.3 RED HOOK QUARTER", "Name": "FRYDENHOJ ESTATES CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.87131474700001, "SHAPE_Area": 1367.42133218 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365869.050200000405312, 255423.678100001066923 ], [ 365842.540799997746944, 255410.247299998998642 ], [ 365841.680500000715256, 255414.861000001430511 ], [ 365838.356299996376038, 255426.443900000303984 ], [ 365834.920699998736382, 255451.113800000399351 ], [ 365834.082000002264977, 255454.906599998474121 ], [ 365868.722900003194809, 255458.7787000015378 ], [ 365874.2483000010252, 255426.311700001358986 ], [ 365869.050200000405312, 255423.678100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85214303, "LATITUDE": 18.32773281, "OBJECTID_1": 39454, "PARCEL_NO_": "107702011000", "Tax_Legal_": "SMITH BAY ESTATE 18-21 1,2&3 EASTEND", "Name": "GARCIA, JOSE & MARGARET M.", "Address": "6300 Estate Frydenhoj-Box 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.09574864300001, "SHAPE_Area": 1852.4529917299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367164.526399999856949, 255462.418099999427795 ], [ 367164.605499997735023, 255453.130699999630451 ], [ 367167.177299998700619, 255435.208799999207258 ], [ 367164.803300000727177, 255429.912000000476837 ], [ 367162.402300000190735, 255427.781399998813868 ], [ 367157.648999996483326, 255417.821100000292063 ], [ 367112.371399998664856, 255432.015999998897314 ], [ 367115.395199999213219, 255455.683200001716614 ], [ 367121.026799999177456, 255457.206999998539686 ], [ 367127.389200001955032, 255467.602600000798702 ], [ 367128.992899999022484, 255468.67119999974966 ], [ 367137.149499997496605, 255457.761100001633167 ], [ 367164.526399999856949, 255462.418099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602012300", "MAP": "D9-5715-T94", "PARCEL_NAM": "2B-41", "ACRE": ".27", "LONGITUDE": -64.87407616, "LATITUDE": 18.32773174, "OBJECTID_1": 38317, "PARCEL_NO_": "107602012300", "Tax_Legal_": "2B-41 MARIENDAHL RED HOOK QTR", "Name": "MONSANTO, LEON", "Address": "PO Box 9054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32300, "Improved_V": 168000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.30393923899999, "SHAPE_Area": 1609.55370307 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364849.347499996423721, 255419.544100001454353 ], [ 364813.287399999797344, 255397.609600000083447 ], [ 364811.274300001561642, 255399.250399999320507 ], [ 364809.649099998176098, 255400.714800000190735 ], [ 364789.327600002288818, 255419.758000001311302 ], [ 364835.851000003516674, 255448.636399999260902 ], [ 364837.479800000786781, 255446.749899998307228 ], [ 364842.3716000020504, 255440.457100000232458 ], [ 364843.192299999296665, 255438.775100000202656 ], [ 364850.558799996972084, 255425.958599999547005 ], [ 364849.82240171340527, 255423.892248878633836 ], [ 364849.415352227806579, 255421.736697881045984 ], [ 364849.347499996423721, 255419.544100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601060100", "MAP": "C9-278-T82", "PARCEL_NAM": "7-1", "ACRE": "0.27", "LONGITUDE": -64.88198228, "LATITUDE": 18.3278541, "OBJECTID_1": 38120, "PARCEL_NO_": "107601060100", "Tax_Legal_": "MARIENDAHL ESTATE 7-1,7-2&7-3 RED HOOK QTR.", "Name": "RITTER, JENNIFER", "Address": "PO Box 11692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 87100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.789068348, "SHAPE_Area": 636.31947483399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363978.974600002169609, 255414.181099999696016 ], [ 363965.094700001180172, 255434.332499999552965 ], [ 364002.13289999961853, 255440.75730000063777 ], [ 364006.28490000218153, 255426.647999998182058 ], [ 363978.974600002169609, 255414.181099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701032100", "MAP": null, "PARCEL_NAM": "F-6", "ACRE": null, "LONGITUDE": -64.85965135, "LATITUDE": 18.32781127, "OBJECTID_1": 39277, "PARCEL_NO_": "107701032100", "Tax_Legal_": "PARCEL No.F-6 OF TRACT 1 NAZARET REDHOOK QTR.", "Name": "TYSON, SYLVIA", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 25600, "Improved_V": 170400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.446006815, "SHAPE_Area": 642.4472861 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366362.258000001311302, 255454.374299999326468 ], [ 366360.033299997448921, 255431.55799999833107 ], [ 366327.743000000715256, 255435.726700000464916 ], [ 366340.453400000929832, 255458.206599999219179 ], [ 366362.258000001311302, 255454.374299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701032200", "MAP": null, "PARCEL_NAM": "F-7", "ACRE": null, "LONGITUDE": -64.85934583, "LATITUDE": 18.32777581, "OBJECTID_1": 39278, "PARCEL_NO_": "107701032200", "Tax_Legal_": "F-7 NAZARETH No.1 REDHOOK QUARTER", "Name": "FREEMAN, PHYLLIS A, N. CALLWOOD, R. HYDMAN, AND L. RICHARDS", "Address": "6539 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27000, "Improved_V": 194100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.644014763, "SHAPE_Area": 861.67470216799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366398.579899996519089, 255450.238600000739098 ], [ 366397.168600000441074, 255426.584600001573563 ], [ 366360.033299997448921, 255431.55799999833107 ], [ 366362.258000001311302, 255454.374299999326468 ], [ 366398.579899996519089, 255450.238600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701017500", "MAP": "D9-5467-T93", "PARCEL_NAM": "22-1B", "ACRE": ".25", "LONGITUDE": -64.86233376, "LATITUDE": 18.32779026, "OBJECTID_1": 39192, "PARCEL_NO_": "107701017500", "Tax_Legal_": "22-1B FRYDENHOJ NO.3 RED HOOK QTR", "Name": "JOYCELYN TAMAR FAM REVOCABLE TRUST", "Address": "PO Box 307432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 171500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.994079011, "SHAPE_Area": 996.52242156499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366086.745300002396107, 255442.688299998641014 ], [ 366086.590899996459484, 255441.352299999445677 ], [ 366083.904500000178814, 255421.721000000834465 ], [ 366056.510600000619888, 255424.619600001722574 ], [ 366035.319200001657009, 255467.825199998915195 ], [ 366067.446400001645088, 255446.689800001680851 ], [ 366086.745300002396107, 255442.688299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701032300", "MAP": null, "PARCEL_NAM": "F-8", "ACRE": null, "LONGITUDE": -64.85902172, "LATITUDE": 18.3277401, "OBJECTID_1": 39279, "PARCEL_NO_": "107701032300", "Tax_Legal_": "NAZARETH PARCEL No.F-8 TRACT 1 No.1 REDHOOK QTR.", "Name": "MATTHEWS, DELTA M. & DENIS C", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27800, "Improved_V": 182200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.383211437, "SHAPE_Area": 791.54788701899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366430.040399998426437, 255448.807300001382828 ], [ 366428.65259999781847, 255422.409299999475479 ], [ 366397.168600000441074, 255426.584600001573563 ], [ 366398.579899996519089, 255450.238600000739098 ], [ 366430.040399998426437, 255448.807300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701032400", "MAP": "A9-538-T99", "PARCEL_NAM": "F-9", "ACRE": null, "LONGITUDE": -64.85865601, "LATITUDE": 18.32772615, "OBJECTID_1": 39280, "PARCEL_NO_": "107701032400", "Tax_Legal_": "F-9 ESTATE NAZARETH RED HOOK QTR.", "Name": "FOSTER, JENNIFER U.", "Address": "PO Box 10934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.296051027, "SHAPE_Area": 1201.2567953299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366437.682099997997284, 255422.883400000631809 ], [ 366428.65259999781847, 255422.409299999475479 ], [ 366430.040399998426437, 255448.807300001382828 ], [ 366440.438299998641014, 255448.892400000244379 ], [ 366446.636877994169481, 255449.935397175577236 ], [ 366452.888749802892562, 255450.586788887681905 ], [ 366459.169200003147125, 255450.844000000506639 ], [ 366463.382727957970928, 255449.301032985560596 ], [ 366467.424199998378754, 255447.351399999111891 ], [ 366476.405414810986258, 255436.50279550650157 ], [ 366485.031199999153614, 255425.369500000029802 ], [ 366481.043099999427795, 255425.160100001841784 ], [ 366461.461099997162819, 255424.131900001317263 ], [ 366437.682099997997284, 255422.883400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701054600", "MAP": "A9-541-T000", "PARCEL_NAM": "32-23", "ACRE": "0.23", "LONGITUDE": -64.8646957, "LATITUDE": 18.32762603, "OBJECTID_1": 39418, "PARCEL_NO_": "107701054600", "Tax_Legal_": "32-23 ESTATE FRYDENHOJ No.3 REDHOOK QTR", "Name": "TATUM, JR. , HALKEITH & CAROL", "Address": "PO Box 502054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27000, "Improved_V": 139900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.35431793000001, "SHAPE_Area": 943.71454635400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365801.560900002717972, 255391.523400001227856 ], [ 365803.630900003015995, 255432.492499999701977 ], [ 365806.039099998772144, 255433.778799999505281 ], [ 365814.859999999403954, 255439.550500001758337 ], [ 365819.672700002789497, 255442.545200001448393 ], [ 365824.501599997282028, 255443.6402000002563 ], [ 365827.744800001382828, 255441.555799998342991 ], [ 365828.648199997842312, 255430.164200000464916 ], [ 365829.467100001871586, 255428.693199999630451 ], [ 365819.99099999666214, 255405.184300001710653 ], [ 365819.199000000953674, 255403.489000000059605 ], [ 365817.606200002133846, 255401.153999999165535 ], [ 365812.015900000929832, 255394.775400001555681 ], [ 365801.560900002717972, 255391.523400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87330226, "LATITUDE": 18.3275482, "OBJECTID_1": 38316, "PARCEL_NO_": "107602012200", "Tax_Legal_": "3L-14 MARIENDAHL NO.4 RED HOOK QTR", "Name": "MONSANTO, JR., LEON A & TAMIKA O. MONSANTO", "Address": "PO Box 302188", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.27465424799999, "SHAPE_Area": 2785.6142230800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364938.763400003314018, 255389.528099998831749 ], [ 364897.027500003576279, 255366.599500000476837 ], [ 364895.402300000190735, 255368.063799999654293 ], [ 364891.282600000500679, 255378.373700000345707 ], [ 364889.659199997782707, 255379.627000000327826 ], [ 364881.462999999523163, 255395.180799998342991 ], [ 364879.839599996805191, 255396.434099998325109 ], [ 364878.208999998867512, 255398.531700000166893 ], [ 364873.297399997711182, 255407.146299999207258 ], [ 364865.952500000596046, 255417.429800000041723 ], [ 364919.01630000025034, 255435.807000000029802 ], [ 364938.763400003314018, 255389.528099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701057700", "MAP": "D9-6189-T97", "PARCEL_NAM": "28-22", "ACRE": null, "LONGITUDE": -64.86514147, "LATITUDE": 18.32778166, "OBJECTID_1": 39438, "PARCEL_NO_": "107701057700", "Tax_Legal_": "28-22 FRYDENHOJ #3 RED HOOK QTR.", "Name": "TODMAN T. & FRYDENHOJ CORP", "Address": "PO Box 10483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.297621041, "SHAPE_Area": 77.954469003699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365772.204499997198582, 255429.91330000013113 ], [ 365768.158600002527237, 255431.568900000303984 ], [ 365757.619000002741814, 255438.23759999871254 ], [ 365771.308300003409386, 255440.46059999987483 ], [ 365772.204499997198582, 255429.91330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701057700", "MAP": null, "PARCEL_NAM": "28-22", "ACRE": null, "LONGITUDE": -64.8653996, "LATITUDE": 18.32765526, "OBJECTID_1": 39438, "PARCEL_NO_": "107701057700", "Tax_Legal_": "28-22 FRYDENHOJ #3 RED HOOK QTR.", "Name": "TODMAN T. & FRYDENHOJ CORP", "Address": "PO Box 10483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.11481357900001, "SHAPE_Area": 1252.8931163100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365736.156000003218651, 255401.964999999850988 ], [ 365728.947800002992153, 255396.206500001251698 ], [ 365713.325699999928474, 255431.542300000786781 ], [ 365757.619000002741814, 255438.23759999871254 ], [ 365768.158600002527237, 255431.568900000303984 ], [ 365772.204499997198582, 255429.91330000013113 ], [ 365736.156000003218651, 255401.964999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602019900", "MAP": "F9-4054-T73", "PARCEL_NAM": "2B-42", "ACRE": ".28", "LONGITUDE": -64.87392486, "LATITUDE": 18.32748799, "OBJECTID_1": 38370, "PARCEL_NO_": "107602019900", "Tax_Legal_": "2B MARIENDAHL RED HOOK", "Name": "MONSANTO, L & JENSEN, M", "Address": "PO Box 172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 293700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.58852317500001, "SHAPE_Area": 992.749856701 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364863.634999997913837, 255390.439899999648333 ], [ 364840.663800001144409, 255375.204100001603365 ], [ 364835.634499996900558, 255379.395899999886751 ], [ 364813.287399999797344, 255397.609600000083447 ], [ 364849.347499996423721, 255419.544100001454353 ], [ 364848.7647997175809, 255415.766626155062113 ], [ 364848.7647997175809, 255411.944473845825996 ], [ 364849.347499996423721, 255408.166999999433756 ], [ 364850.310123469098471, 255403.216733016946819 ], [ 364851.728799998760223, 255398.377399999648333 ], [ 364852.870475770207122, 255396.601718894875376 ], [ 364854.242718099907506, 255394.997531268192688 ], [ 364855.820101610443089, 255393.594560059078503 ], [ 364857.573399998247623, 255392.418800000101328 ], [ 364859.49614372162614, 255391.4814786715433 ], [ 364861.52957122202497, 255390.817635844286997 ], [ 364863.634999997913837, 255390.439899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86190196, "LATITUDE": 18.327592, "OBJECTID_1": 39268, "PARCEL_NO_": "107701030900", "Tax_Legal_": "FRYDENHOJ ESTATE 36-1 & P. OF TRACT I. NAZARETH RED HOOK QUARTER", "Name": "ROGERS, GRACELYN & GRANT, ELTON", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.40646403299999, "SHAPE_Area": 1028.2213325099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366127.228399999439716, 255403.89919999986887 ], [ 366124.803999997675419, 255404.512600000947714 ], [ 366090.953299999237061, 255402.546799998730421 ], [ 366094.699000000953674, 255436.14130000025034 ], [ 366129.438699997961521, 255428.404100000858307 ], [ 366127.228399999439716, 255403.89919999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601053700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88223035, "LATITUDE": 18.32750004, "OBJECTID_1": 38112, "PARCEL_NO_": "107601053700", "Tax_Legal_": "9A EST. MARIENDAHL RED HOOK QTR.", "Name": "SCHULER, STEPHEN M", "Address": "PO Box 9692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.153209799, "SHAPE_Area": 1121.0922409100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363967.837600000202656, 255413.072200000286102 ], [ 363982.406599998474121, 255389.933400001376867 ], [ 363984.360699996352196, 255387.101700000464916 ], [ 363951.809799998998642, 255365.721200000494719 ], [ 363951.154700003564358, 255366.87950000166893 ], [ 363938.838799998164177, 255392.743200000375509 ], [ 363938.925899997353554, 255392.830800000578165 ], [ 363939.076800003647804, 255392.824700001627207 ], [ 363967.837600000202656, 255413.072200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702015300", "MAP": "D9-3800-T86", "PARCEL_NAM": "18A-6", "ACRE": null, "LONGITUDE": -64.85120314, "LATITUDE": 18.32766268, "OBJECTID_1": 39517, "PARCEL_NO_": "107702015300", "Tax_Legal_": "SMITH BAY ESTATE 18A-6 EAST END QTR.", "Name": "FIRSTBANK PUERTO RICO", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.709018407, "SHAPE_Area": 956.988498112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367209.965800002217293, 255429.226199999451637 ], [ 367211.537000000476837, 255434.094200000166893 ], [ 367213.86429999768734, 255444.879000000655651 ], [ 367241.286100000143051, 255444.25899999961257 ], [ 367267.901600003242493, 255443.632500000298023 ], [ 367266.449000000953674, 255424.833299998193979 ], [ 367209.965800002217293, 255429.226199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701054500", "MAP": null, "PARCEL_NAM": "32-22", "ACRE": null, "LONGITUDE": -64.86492129, "LATITUDE": 18.32753349, "OBJECTID_1": 39417, "PARCEL_NO_": "107701054500", "Tax_Legal_": "FRYDENHOJ ESTATE 32-22 No.3 REDHOOK QTR", "Name": "TATUM, CAROL & ARIEL", "Address": "PO Box 502054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.29430713799999, "SHAPE_Area": 874.86600976099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365801.560900002717972, 255391.523400001227856 ], [ 365774.943599998950958, 255392.361000001430511 ], [ 365774.01860000193119, 255406.285700000822544 ], [ 365789.957800000905991, 255428.369800001382828 ], [ 365798.814599998295307, 255429.920000001788139 ], [ 365803.630900003015995, 255432.492499999701977 ], [ 365801.560900002717972, 255391.523400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702011400", "MAP": "B9-135-T66", "PARCEL_NAM": "18-5", "ACRE": null, "LONGITUDE": -64.8516659, "LATITUDE": 18.32746251, "OBJECTID_1": 39464, "PARCEL_NO_": "107702011400", "Tax_Legal_": "18-5 SMITH BAY ESTATE 18-5 NO.1,2&3 EAST END QTR", "Name": "LANCE CHRISTOPHER MAANUM TRUST", "Address": "6100 Red Hook Quarter", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172500, "Improved_V": 40200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.568547043, "SHAPE_Area": 1661.9060808300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367209.965800002217293, 255429.226199999451637 ], [ 367208.408900000154972, 255422.66950000077486 ], [ 367204.713600002229214, 255383.164799999445677 ], [ 367176.456699997186661, 255387.1554000005126 ], [ 367177.236000001430511, 255390.328200001269579 ], [ 367176.10419999808073, 255428.526799999177456 ], [ 367173.566600002348423, 255442.438200000673532 ], [ 367211.537000000476837, 255434.094200000166893 ], [ 367209.965800002217293, 255429.226199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701054800", "MAP": "A9-541-T000", "PARCEL_NAM": "32-25", "ACRE": "0.27", "LONGITUDE": -64.8642483, "LATITUDE": 18.32744158, "OBJECTID_1": 39420, "PARCEL_NO_": "107701054800", "Tax_Legal_": "FRYDENHOJ ESTATE 32-25 No.3 RED HOOK QUARTER", "Name": "FRYDENHOJ ESTATES CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.05870442, "SHAPE_Area": 1263.0740470400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365870.448100000619888, 255379.787200000137091 ], [ 365850.262800000607967, 255374.343499999493361 ], [ 365850.061899997293949, 255377.565999999642372 ], [ 365843.370399996638298, 255405.797800000756979 ], [ 365842.540799997746944, 255410.247299998998642 ], [ 365869.050200000405312, 255423.678100001066923 ], [ 365874.2483000010252, 255426.311700001358986 ], [ 365876.100400000810623, 255415.463799998164177 ], [ 365877.158699996769428, 255381.596999999135733 ], [ 365870.448100000619888, 255379.787200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85229622, "LATITUDE": 18.32741608, "OBJECTID_1": 39465, "PARCEL_NO_": "107702011500", "Tax_Legal_": "SMITH BAY 18-20 1,2&3 EASTEND", "Name": "PATRICK COLIN CUTY", "Address": "3300 VETERANS DRIVE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026532, "Country": "United States", "Land_Value": 78700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.401980915, "SHAPE_Area": 1999.17153957 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367111.19030000269413, 255381.343899998813868 ], [ 367097.090999998152256, 255427.246899999678135 ], [ 367112.371399998664856, 255432.015999998897314 ], [ 367157.648999996483326, 255417.821100000292063 ], [ 367152.888400003314018, 255408.705099999904633 ], [ 367151.288400001823902, 255407.214400000870228 ], [ 367148.909000001847744, 255402.550799999386072 ], [ 367144.162799999117851, 255391.746199999004602 ], [ 367140.168999999761581, 255387.280600000172853 ], [ 367133.752700001001358, 255383.217300001531839 ], [ 367124.901199996471405, 255381.033900000154972 ], [ 367111.19030000269413, 255381.343899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107702011300", "MAP": "D9-7646-T005", "PARCEL_NAM": "18A", "ACRE": "1.041", "LONGITUDE": -64.85122616, "LATITUDE": 18.32722731, "OBJECTID_1": 39463, "PARCEL_NO_": "107702011300", "Tax_Legal_": "SMITH BAY ESTATE 18A REM EAST END QUARTER", "Name": "SCIMITAR LLC", "Address": "6812 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.197182602, "SHAPE_Area": 4149.9965456899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367232.541799999773502, 255334.840999998152256 ], [ 367226.085900001227856, 255335.421500001102686 ], [ 367229.745200000703335, 255379.147799998521805 ], [ 367204.713600002229214, 255383.164799999445677 ], [ 367208.408900000154972, 255422.66950000077486 ], [ 367209.965800002217293, 255429.226199999451637 ], [ 367266.449000000953674, 255424.833299998193979 ], [ 367259.031400002539158, 255348.989999998360872 ], [ 367257.555500000715256, 255332.934799998998642 ], [ 367232.541799999773502, 255334.840999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701017700", "MAP": "D9-5637-T93", "PARCEL_NAM": "22-2A", "ACRE": ".24", "LONGITUDE": -64.86234206, "LATITUDE": 18.32751157, "OBJECTID_1": 39194, "PARCEL_NO_": "107701017700", "Tax_Legal_": "22-2A ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "MADURO, EUNELL R. & CHERYL C", "Address": "PO Box 12191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44000, "Improved_V": 125100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.23078920500001, "SHAPE_Area": 925.65642790899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366082.089299999177456, 255401.840999998152256 ], [ 366081.584200002253056, 255398.405799999833107 ], [ 366061.625600002706051, 255399.990699999034405 ], [ 366035.11879999935627, 255386.67339999973774 ], [ 366045.046499997377396, 255404.2837999984622 ], [ 366048.278899997472763, 255410.017700001597404 ], [ 366056.510600000619888, 255424.619600001722574 ], [ 366083.904500000178814, 255421.721000000834465 ], [ 366083.554399996995926, 255419.162599999457598 ], [ 366082.089299999177456, 255401.840999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85263035, "LATITUDE": 18.32732985, "OBJECTID_1": 39466, "PARCEL_NO_": "107702011600", "Tax_Legal_": "SMITH BAY ESTATE 18-19 1,2&3 EASTEND", "Name": "CUTY, PATRICK C", "Address": "6267 Crump Rd", "City": "Kiln", "State": "Mississippi", "Zip": 39556, "Country": "United States", "Land_Value": 47400, "Improved_V": 109700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.259553557, "SHAPE_Area": 1410.7662797400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367074.557300001382828, 255365.55180000141263 ], [ 367077.181400001049042, 255420.907600000500679 ], [ 367097.090999998152256, 255427.246899999678135 ], [ 367111.19030000269413, 255381.343899998813868 ], [ 367107.153399996459484, 255381.944099999964237 ], [ 367101.516400001943111, 255381.053599998354912 ], [ 367079.042099997401237, 255368.83729999884963 ], [ 367074.557300001382828, 255365.55180000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701054700", "MAP": "A9-541-T000", "PARCEL_NAM": "32-24", "ACRE": null, "LONGITUDE": -64.86461477, "LATITUDE": 18.32725434, "OBJECTID_1": 39419, "PARCEL_NO_": "107701054700", "Tax_Legal_": "PAR 32-11 FRYDENHOJ 3 RED HOOK QTR", "Name": "FRYDENHOJ ESTATES CORP", "Address": "6243 Estate Frydenhoj #10", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021435, "Country": "United States", "Land_Value": 34700, "Improved_V": 211400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.926924227, "SHAPE_Area": 950.86372118600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365802.669299997389317, 255356.068799998611212 ], [ 365811.303099997341633, 255383.792700000107288 ], [ 365818.529399998486042, 255387.440400000661612 ], [ 365823.325900003314018, 255392.334800001233816 ], [ 365824.92230000346899, 255394.247800000011921 ], [ 365828.899999998509884, 255400.613099999725819 ], [ 365832.038900002837181, 255410.771299999207258 ], [ 365834.461400002241135, 255410.368900001049042 ], [ 365834.491999998688698, 255406.780600000172853 ], [ 365838.681800000369549, 255388.238699998706579 ], [ 365831.642599999904633, 255362.638700000941753 ], [ 365802.669299997389317, 255356.068799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85207756, "LATITUDE": 18.32709974, "OBJECTID_1": 39468, "PARCEL_NO_": "107702011800", "Tax_Legal_": "SMITH BAY ESTATE 18-17 1,2&3 EASTEND QUARTER", "Name": "TRUPP, E & TATE, S", "Address": "6292 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73400, "Improved_V": 98900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.01775770099999, "SHAPE_Area": 1886.9134009899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367120.115500003099442, 255374.872999999672174 ], [ 367129.785899996757507, 255375.585400000214577 ], [ 367138.628300003707409, 255378.824200000613928 ], [ 367142.638300001621246, 255381.3902000002563 ], [ 367149.828599996864796, 255389.259500000625849 ], [ 367157.747900001704693, 255406.211800001561642 ], [ 367160.129000000655651, 255410.664200000464916 ], [ 367161.729099996387959, 255412.155000001192093 ], [ 367165.688699997961521, 255420.631099998950958 ], [ 367168.112999998033047, 255420.017700001597404 ], [ 367168.334200002253056, 255394.054999999701977 ], [ 367167.601599998772144, 255385.394200000911951 ], [ 367165.330099999904633, 255368.065900001674891 ], [ 367159.903499998152256, 255342.479200001806021 ], [ 367123.53320000320673, 255352.313999999314547 ], [ 367116.890299998223782, 255374.846599999815226 ], [ 367120.115500003099442, 255374.872999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602011600", "MAP": "D9-4815-T89", "PARCEL_NAM": "2B-43", "ACRE": ".322", "LONGITUDE": -64.87365684, "LATITUDE": 18.32725686, "OBJECTID_1": 38314, "PARCEL_NO_": "107602011600", "Tax_Legal_": "2B-43 MARIENDAHL NO.4 RED HOOK QTR", "Name": "CHRISTIAN, ELLISO & JUDITH", "Address": "PO Box 7277", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35000, "Improved_V": 138100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.596350586, "SHAPE_Area": 1143.44802061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364863.634999997913837, 255390.439899999648333 ], [ 364869.720499999821186, 255389.381499998271465 ], [ 364873.972099997103214, 255389.613600000739098 ], [ 364877.52139999717474, 255384.593899998813868 ], [ 364886.549099996685982, 255366.091499999165535 ], [ 364889.436899997293949, 255359.277100000530481 ], [ 364870.582800000905991, 255347.173500001430511 ], [ 364867.325199998915195, 255350.946600001305342 ], [ 364864.072999998927116, 255354.086300000548363 ], [ 364852.689300000667572, 255365.181099999696016 ], [ 364840.663800001144409, 255375.204100001603365 ], [ 364863.634999997913837, 255390.439899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601055100", "MAP": "D9-6144-T96", "PARCEL_NAM": "9-1", "ACRE": "0.13", "LONGITUDE": -64.88212751, "LATITUDE": 18.32732463, "OBJECTID_1": 38118, "PARCEL_NO_": "107601055100", "Tax_Legal_": "9-1,9-2 & 9-3 MARIENDAHL NO.4 RED HOOK QTR", "Name": "KING, ROBERT L. & MYSTOOKO", "Address": "13-2 & 3 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130700, "Improved_V": 290700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.387829173, "SHAPE_Area": 578.61740621599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363992.497900001704693, 255375.122299998998642 ], [ 363959.068599998950958, 255352.841099999845028 ], [ 363958.523000001907349, 255353.852000001817942 ], [ 363951.809799998998642, 255365.721200000494719 ], [ 363984.360699996352196, 255387.101700000464916 ], [ 363991.387599997222424, 255376.919100001454353 ], [ 363992.497900001704693, 255375.122299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012600", "MAP": "D3-151-T47", "PARCEL_NAM": "10", "ACRE": "2.0", "LONGITUDE": -64.86267162, "LATITUDE": 18.32682367, "OBJECTID_1": 39146, "PARCEL_NO_": "107701012600", "Tax_Legal_": "PAR 10 REM FRYDENHOJ 3 RED HOOK QTR", "Name": "GEORGE, ALBERT & BEATRICE", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040035, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.189559094, "SHAPE_Area": 6913.22407853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365996.235500000417233, 255274.102000001817942 ], [ 365993.640500001609325, 255277.627300001680851 ], [ 365987.049300000071526, 255278.957499999552965 ], [ 365991.881599999964237, 255319.996199999004602 ], [ 365995.14130000025034, 255347.679699998348951 ], [ 365999.056800000369549, 255380.932300001382828 ], [ 366012.081799998879433, 255379.631900001317263 ], [ 366077.85809999704361, 255373.065000001341105 ], [ 366077.518500000238419, 255370.755499999970198 ], [ 366074.735699996352196, 255351.829900000244379 ], [ 366071.676519142696634, 255337.289615816087462 ], [ 366068.122100003063679, 255322.862399999052286 ], [ 366065.369499996304512, 255312.936000000685453 ], [ 366058.298696492565796, 255305.093726040882757 ], [ 366050.923199996352196, 255297.537300001829863 ], [ 366040.409665119135752, 255291.916827710869256 ], [ 366029.66403150575934, 255286.75393291877117 ], [ 366018.706202573142946, 255282.058178509585559 ], [ 366007.556474773504306, 255277.83826211449923 ], [ 365996.235500000417233, 255274.102000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701056900", "MAP": null, "PARCEL_NAM": "28-14", "ACRE": null, "LONGITUDE": -64.86549654, "LATITUDE": 18.32718077, "OBJECTID_1": 39435, "PARCEL_NO_": "107701056900", "Tax_Legal_": "28-14 FRYDENHOJ #3 RED HOOK QTR.", "Name": "TODMAN T. & FRYDENHOJ CORP", "Address": "PO Box 10483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.37869238, "SHAPE_Area": 673.597616797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365728.947800002992153, 255396.206500001251698 ], [ 365744.000200003385544, 255366.876299999654293 ], [ 365726.170299999415874, 255343.621399998664856 ], [ 365722.837099999189377, 255356.259799998253584 ], [ 365717.905799999833107, 255367.196299999952316 ], [ 365728.947800002992153, 255396.206500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86192516, "LATITUDE": 18.32731075, "OBJECTID_1": 39269, "PARCEL_NO_": "107701031000", "Tax_Legal_": "FRYDENHOJ ESTATE 40 RED HOOK QUARTER", "Name": "BRATHWAITE, JR., DONALD", "Address": "765 E. 165TH STREET, 3A", "City": "BRONX", "State": "New York", "Zip": 10456, "Country": "United States", "Land_Value": 84900, "Improved_V": 147300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.96489775699999, "SHAPE_Area": 1208.9809632399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366124.281800001859665, 255371.155600000172853 ], [ 366087.204099997878075, 255369.374400001019239 ], [ 366087.157300002872944, 255374.862500000745058 ], [ 366088.732199996709824, 255379.308299999684095 ], [ 366090.953299999237061, 255402.546799998730421 ], [ 366124.803999997675419, 255404.512600000947714 ], [ 366127.228399999439716, 255403.89919999986887 ], [ 366126.465199999511242, 255398.826699998229742 ], [ 366124.281800001859665, 255371.155600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87302382, "LATITUDE": 18.32695561, "OBJECTID_1": 38370, "PARCEL_NO_": "107602019900", "Tax_Legal_": "2B MARIENDAHL RED HOOK", "Name": "MONSANTO, L & JENSEN, M", "Address": "PO Box 172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 293700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.27091884100003, "SHAPE_Area": 4234.762988 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364972.48929999768734, 255311.488400001078844 ], [ 364930.794799998402596, 255283.704999998211861 ], [ 364907.741499997675419, 255339.4560999982059 ], [ 364901.16160000115633, 255354.600999999791384 ], [ 364897.027500003576279, 255366.599500000476837 ], [ 364938.763400003314018, 255389.528099998831749 ], [ 364972.48929999768734, 255311.488400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601055100", "MAP": "D9-6144-T96", "PARCEL_NAM": "9-2", "ACRE": "0.13", "LONGITUDE": -64.88205458, "LATITUDE": 18.32720691, "OBJECTID_1": 38118, "PARCEL_NO_": "107601055100", "Tax_Legal_": "9-1,9-2 & 9-3 MARIENDAHL NO.4 RED HOOK QTR", "Name": "KING, ROBERT L. & MYSTOOKO", "Address": "13-2 & 3 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130700, "Improved_V": 290700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.640326186, "SHAPE_Area": 636.14610811199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364000.844300001859665, 255361.811000000685453 ], [ 363966.598899997770786, 255339.108600001782179 ], [ 363965.896700002253056, 255340.191300000995398 ], [ 363959.068599998950958, 255352.841099999845028 ], [ 363992.497900001704693, 255375.122299998998642 ], [ 363999.564000003039837, 255363.687100000679493 ], [ 364000.844300001859665, 255361.811000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701054900", "MAP": "A9-541-T000", "PARCEL_NAM": "32-26", "ACRE": "0.25", "LONGITUDE": -64.86421303, "LATITUDE": 18.32709765, "OBJECTID_1": 39421, "PARCEL_NO_": "107701054900", "Tax_Legal_": "FRYDENHOJ ESTATE 32-26 No.3 RED HOOK QUARTER", "Name": "FRYFDENHOJ ESTATES CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.914654149, "SHAPE_Area": 990.79062347399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365871.416900001466274, 255345.678399998694658 ], [ 365846.676500000059605, 255345.088899999856949 ], [ 365849.492899999022484, 255349.697000000625849 ], [ 365850.995899997651577, 255362.585999999195337 ], [ 365850.262800000607967, 255374.343499999493361 ], [ 365870.448100000619888, 255379.787200000137091 ], [ 365877.158699996769428, 255381.596999999135733 ], [ 365883.392200000584126, 255345.963700000196695 ], [ 365871.416900001466274, 255345.678399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601055100", "MAP": "D9-6144-T96", "PARCEL_NAM": "9-3", "ACRE": "0.14", "LONGITUDE": -64.88197287, "LATITUDE": 18.32707861, "OBJECTID_1": 38118, "PARCEL_NO_": "107601055100", "Tax_Legal_": "9-1,9-2 & 9-3 MARIENDAHL NO.4 RED HOOK QTR", "Name": "KING, ROBERT L. & MYSTOOKO", "Address": "13-2 & 3 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130700, "Improved_V": 290700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.517971723, "SHAPE_Area": 734.388743535 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364011.027800001204014, 255346.789099998772144 ], [ 363974.098200000822544, 255324.004299998283386 ], [ 363968.347999997437, 255336.411699999123812 ], [ 363966.598899997770786, 255339.108600001782179 ], [ 364000.844300001859665, 255361.811000000685453 ], [ 364007.729599997401237, 255351.721599999815226 ], [ 364011.027800001204014, 255346.789099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701057000", "MAP": null, "PARCEL_NAM": "28-15", "ACRE": null, "LONGITUDE": -64.86536573, "LATITUDE": 18.32687425, "OBJECTID_1": 39436, "PARCEL_NO_": "107701057000", "Tax_Legal_": "28-15 FRYDENHOJ #3 RED HOOK QTR.", "Name": "TODMAN T. & FRYDENHOJ CORP", "Address": "PO Box 10483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25900, "Improved_V": 192600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.03814434700001, "SHAPE_Area": 1200.0328947099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365744.000200003385544, 255366.876299999654293 ], [ 365764.52929999679327, 255326.874699998646975 ], [ 365736.983199998736382, 255304.868700001388788 ], [ 365733.578100003302097, 255325.950199998915195 ], [ 365726.170299999415874, 255343.621399998664856 ], [ 365744.000200003385544, 255366.876299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702015400", "MAP": "D9-4905-T90", "PARCEL_NAM": "18A-7", "ACRE": null, "LONGITUDE": -64.8514476, "LATITUDE": 18.32697319, "OBJECTID_1": 39518, "PARCEL_NO_": "107702015400", "Tax_Legal_": "SMITH BAY ESTATE 18A-7 EASTEND QTR.", "Name": "RED HOOK VILLAS INC", "Address": "RED HOOK BOX 51", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.490785367, "SHAPE_Area": 1138.17587355 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367226.085900001227856, 255335.421500001102686 ], [ 367201.878499999642372, 255337.334300000220537 ], [ 367202.449299998581409, 255364.992199998348951 ], [ 367204.713600002229214, 255383.164799999445677 ], [ 367229.745200000703335, 255379.147799998521805 ], [ 367226.085900001227856, 255335.421500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8619543, "LATITUDE": 18.32697398, "OBJECTID_1": 39270, "PARCEL_NO_": "107701031100", "Tax_Legal_": "FRYDENHOJ ESTATE 39 RED HOOK QTR", "Name": "CHINNERY, RUSSELL G", "Address": "233 NW 20th Ter", "City": "Miami", "State": "Florida", "Zip": 33127, "Country": "United States", "Land_Value": 54800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.64022244099999, "SHAPE_Area": 1510.2512435900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366119.82880000025034, 255325.945099998265505 ], [ 366084.302500002086163, 255331.353799998760223 ], [ 366086.541599996387959, 255352.481499999761581 ], [ 366087.204099997878075, 255369.374400001019239 ], [ 366124.281800001859665, 255371.155600000172853 ], [ 366123.556500002741814, 255361.650400001555681 ], [ 366119.82880000025034, 255325.945099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012500", "MAP": "F9-1825-T66", "PARCEL_NAM": "143", "ACRE": null, "LONGITUDE": -64.86356682, "LATITUDE": 18.32680362, "OBJECTID_1": 39145, "PARCEL_NO_": "107701012500", "Tax_Legal_": "REMAINDER 143 FRYDENHOJ 3 RED HOOK QTR", "Name": "FRANCIS, MIGUEL A", "Address": "P.O. BOX 5525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.55087285499999, "SHAPE_Area": 1289.8404805099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365909.7533999979496, 255312.337799999862909 ], [ 365901.315700002014637, 255311.085900001227856 ], [ 365914.649300001561642, 255333.977099999785423 ], [ 365944.053700000047684, 255347.532299999147654 ], [ 365951.955600000917912, 255351.175000000745058 ], [ 365957.842699997127056, 255348.450199998915195 ], [ 365956.457699999213219, 255327.83390000090003 ], [ 365955.876500003039837, 255319.181400001049042 ], [ 365930.000399999320507, 255315.342000000178814 ], [ 365909.7533999979496, 255312.337799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85256479, "LATITUDE": 18.32695442, "OBJECTID_1": 39467, "PARCEL_NO_": "107702011700", "Tax_Legal_": "18-18 SMITH BAY ESTATE EASTEND QUARTER", "Name": "MARSH, STEPHEN J. & JUNE R. (TRUSTEES)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86100, "Improved_V": 455000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.505486515, "SHAPE_Area": 1288.5110634299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367073.026600003242493, 255333.259199999272823 ], [ 367074.163900002837181, 255357.253199998289347 ], [ 367074.301299996674061, 255357.399500001221895 ], [ 367079.906000003218651, 255362.089400000870228 ], [ 367103.179300002753735, 255375.156599998474121 ], [ 367108.011799998581409, 255375.8293999992311 ], [ 367116.890299998223782, 255374.846599999815226 ], [ 367123.53320000320673, 255352.313999999314547 ], [ 367094.597599998116493, 255341.3114 ], [ 367073.026600003242493, 255333.259199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701017900", "MAP": "D9-5811-T94", "PARCEL_NAM": "143-3", "ACRE": ".24", "LONGITUDE": -64.8632008, "LATITUDE": 18.32677271, "OBJECTID_1": 39196, "PARCEL_NO_": "107701017900", "Tax_Legal_": "143-3 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "FRANCIS, MICHELLE A", "Address": "P.O. BOX 5525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.991544538, "SHAPE_Area": 1055.2569679600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365991.881599999964237, 255319.996199999004602 ], [ 365990.611699998378754, 255309.211800001561642 ], [ 365959.93129999935627, 255312.471099998801947 ], [ 365955.457599997520447, 255312.946299999952316 ], [ 365956.457699999213219, 255327.83390000090003 ], [ 365957.842699997127056, 255348.450199998915195 ], [ 365972.399599999189377, 255341.712600000202656 ], [ 365993.299599997699261, 255332.039200000464916 ], [ 365991.881599999964237, 255319.996199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055400", "MAP": "A9-541-T000", "PARCEL_NAM": "32-31", "ACRE": null, "LONGITUDE": -64.86491241, "LATITUDE": 18.32684632, "OBJECTID_1": 39423, "PARCEL_NO_": "107701055400", "Tax_Legal_": "FRYDENHOJ ESTATE 32-31 No.3 RED HOOK QUARTER", "Name": "FRYDENHOJ ESTATES CORP", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.585262804, "SHAPE_Area": 1101.83935952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365792.590000003576279, 255308.701299998909235 ], [ 365781.350199997425079, 255302.909800000488758 ], [ 365777.720299996435642, 255350.376200001686811 ], [ 365802.669299997389317, 255356.068799998611212 ], [ 365810.211999997496605, 255322.566599998623133 ], [ 365807.800200000405312, 255321.702500000596046 ], [ 365801.362300001084805, 255320.172200001776218 ], [ 365791.704599998891354, 255317.982200000435114 ], [ 365792.590000003576279, 255308.701299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602011200", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-23", "ACRE": "0.33", "LONGITUDE": -64.87385128, "LATITUDE": 18.32680212, "OBJECTID_1": 38310, "PARCEL_NO_": "107602011200", "Tax_Legal_": "2B-23 MARIENDAL NO.4 RED HOOK QTR", "Name": "HODGE, DENNIS", "Address": "PO Box 7503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.90736129699999, "SHAPE_Area": 1455.95434645 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364859.310599997639656, 255345.181400001049042 ], [ 364870.145199999213219, 255303.895799998193979 ], [ 364870.204499997198582, 255296.93019999936223 ], [ 364824.943099997937679, 255309.225299999117851 ], [ 364823.263899996876717, 255317.022100001573563 ], [ 364821.62610000371933, 255319.964000001549721 ], [ 364817.547799997031689, 255325.418999999761581 ], [ 364859.310599997639656, 255345.181400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055000", "MAP": "A9-541-T000", "PARCEL_NAM": "32-27", "ACRE": "0.28", "LONGITUDE": -64.86433885, "LATITUDE": 18.32681148, "OBJECTID_1": 39422, "PARCEL_NO_": "107701055000", "Tax_Legal_": "FRYDENHOJ ESTATE 32-27 No.3 RED HOOK QUARTER", "Name": "LESTRADE, SYLVESTER & VENCILLA", "Address": "6030 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.87140414800001, "SHAPE_Area": 1009.20802359 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365883.392200000584126, 255345.963700000196695 ], [ 365839.5878000035882, 255302.221900001168251 ], [ 365837.831500001251698, 255307.52760000154376 ], [ 365831.943000003695488, 255325.31700000166893 ], [ 365834.363600000739098, 255327.197299998253584 ], [ 365837.563699997961521, 255330.178800001740456 ], [ 365846.676500000059605, 255345.088899999856949 ], [ 365871.416900001466274, 255345.678399998694658 ], [ 365883.392200000584126, 255345.963700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87323763000001, "LATITUDE": 18.32660429, "OBJECTID_1": 38315, "PARCEL_NO_": "107602011700", "Tax_Legal_": "3L-3 MARIENDAHL NO.4 RED HOOK QTR", "Name": "MONSANTO, MARVIN A. & MARVIN A. MONSANTO, JR.", "Address": "12903 Brant Rock Dr", "City": "Houston", "State": "Texas", "Zip": 77082, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.57392890700001, "SHAPE_Area": 1096.4759867600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364930.794799998402596, 255283.704999998211861 ], [ 364910.748499996960163, 255270.453099999576807 ], [ 364893.508400000631809, 255306.409000001847744 ], [ 364896.726499997079372, 255307.279699999839067 ], [ 364900.73650000244379, 255309.84569999948144 ], [ 364905.505999997258186, 255317.906300000846386 ], [ 364907.854800000786781, 255326.158100001513958 ], [ 364907.741499997675419, 255339.4560999982059 ], [ 364930.794799998402596, 255283.704999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021900", "MAP": "A9-406-T92", "PARCEL_NAM": "6M-6", "ACRE": null, "LONGITUDE": -64.83729128, "LATITUDE": 18.32637384, "OBJECTID_1": 40154, "PARCEL_NO_": "107802021900", "Tax_Legal_": "6M-6 ESTATE NAZARETH No. 1 RED HOOK QUARTER", "Name": "RICHARDSON, MEAGHAN P. & CYRIL E. (TRUSTEES)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 235000, "Improved_V": 692200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.82771367700002, "SHAPE_Area": 2614.1278571799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368736.807199999690056, 255289.313099998980761 ], [ 368722.622699998319149, 255250.566899999976158 ], [ 368719.375900000333786, 255253.073399998247623 ], [ 368713.683100000023842, 255258.726300001144409 ], [ 368710.412900000810623, 255263.97690000012517 ], [ 368706.314800001680851, 255271.753800000995398 ], [ 368703.055399999022484, 255275.737900000065565 ], [ 368698.960900001227856, 255283.092700000852346 ], [ 368696.522200003266335, 255285.394799999892712 ], [ 368684.251299999654293, 255305.981499999761581 ], [ 368699.580200001597404, 255305.051500000059605 ], [ 368701.445299997925758, 255370.083599999547005 ], [ 368718.37610000371933, 255370.433200001716614 ], [ 368713.793499998748302, 255340.420499999076128 ], [ 368713.035800002515316, 255334.714699998497963 ], [ 368713.071699999272823, 255330.493200000375509 ], [ 368717.178800001740456, 255321.660799998790026 ], [ 368722.074199996888638, 255314.945900000631809 ], [ 368727.838899999856949, 255300.849800001829863 ], [ 368736.807199999690056, 255289.313099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83678435, "LATITUDE": 18.32645479, "OBJECTID_1": 40081, "PARCEL_NO_": "107802012100", "Tax_Legal_": "6M REMAINDER ESTATE NAZARETH No.1 RED HOOK QUARTER", "Name": "LIONSTONE DEVELOPMENT(STT)LLC", "Address": "6649 Westwood Blvd", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 240500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 453.19158406100001, "SHAPE_Area": 8083.9960042299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368801.69709999859333, 255244.670200001448393 ], [ 368788.909299999475479, 255231.266600001603365 ], [ 368781.68129999935627, 255227.829900000244379 ], [ 368772.01630000025034, 255226.484299998730421 ], [ 368774.32379999756813, 255239.590999998152256 ], [ 368775.040200002491474, 255250.151500001549721 ], [ 368776.588100001215935, 255257.7635000012815 ], [ 368781.100500002503395, 255296.008400000631809 ], [ 368775.513800002634525, 255289.207699999213219 ], [ 368767.511900000274181, 255281.964999999850988 ], [ 368757.062200002372265, 255278.079799998551607 ], [ 368747.368400000035763, 255280.111400000751019 ], [ 368736.807199999690056, 255289.313099998980761 ], [ 368727.838899999856949, 255300.849800001829863 ], [ 368722.074199996888638, 255314.945900000631809 ], [ 368717.178800001740456, 255321.660799998790026 ], [ 368713.071699999272823, 255330.493200000375509 ], [ 368713.035800002515316, 255334.714699998497963 ], [ 368713.793499998748302, 255340.420499999076128 ], [ 368718.37610000371933, 255370.433200001716614 ], [ 368758.745600000023842, 255364.430799998342991 ], [ 368777.305200003087521, 255362.894000001251698 ], [ 368807.176500000059605, 255358.70549999922514 ], [ 368804.296499997377396, 255318.151999998837709 ], [ 368802.982400000095367, 255283.099700000137091 ], [ 368801.481299996376038, 255269.999600000679493 ], [ 368801.69709999859333, 255244.670200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802012300", "MAP": "D9-2415-T83", "PARCEL_NAM": "6M-2", "ACRE": null, "LONGITUDE": -64.83755136000001, "LATITUDE": 18.32668407, "OBJECTID_1": 40083, "PARCEL_NO_": "107802012300", "Tax_Legal_": "NAZARETH ESTATE 6-M-2 RED HOOK QTR.", "Name": "KHALID W HAMED", "Address": "6205 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 326600, "Improved_V": 554700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.311220045, "SHAPE_Area": 1966.9182792500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368684.251299999654293, 255305.981499999761581 ], [ 368671.188400000333786, 255324.872999999672174 ], [ 368659.005599997937679, 255335.116900000721216 ], [ 368662.178800001740456, 255341.264600001275539 ], [ 368662.162600003182888, 255343.164299998432398 ], [ 368663.757200002670288, 255345.28830000013113 ], [ 368672.4324000030756, 255368.157400000840425 ], [ 368701.445299997925758, 255370.083599999547005 ], [ 368699.580200001597404, 255305.051500000059605 ], [ 368684.251299999654293, 255305.981499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8360079, "LATITUDE": 18.32656485, "OBJECTID_1": 40067, "PARCEL_NO_": "107802010700", "Tax_Legal_": "E-3,E-4,E-5&E-6 CABRITA CONDOS STG.III 6E NAZARETH RED HOOK QTR", "Name": "CABRITA GRAND ESTATES", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 565800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 533.10146958799999, "SHAPE_Area": 6300.0574454799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368902.6199000030756, 255324.445099998265505 ], [ 368895.368500001728535, 255323.752500001341105 ], [ 368885.712499998509884, 255321.351500000804663 ], [ 368877.678199999034405, 255317.90819999948144 ], [ 368862.431999996304512, 255309.128600001335144 ], [ 368845.618100002408028, 255295.058800000697374 ], [ 368822.47240000218153, 255267.004999998956919 ], [ 368816.021899998188019, 255266.952199999243021 ], [ 368813.590300001204014, 255268.410000000149012 ], [ 368811.957900002598763, 255270.718600001186132 ], [ 368815.773699998855591, 255296.0810999982059 ], [ 368822.11089999973774, 255309.43189999833703 ], [ 368827.695799998939037, 255316.44370000064373 ], [ 368837.294200003147125, 255325.599199999123812 ], [ 368833.223099999129772, 255330.21000000089407 ], [ 368822.823700003325939, 255320.414599999785423 ], [ 368818.847900003194809, 255313.838100001215935 ], [ 368813.273900002241135, 255305.559799998998642 ], [ 368810.152900002896786, 255293.290899999439716 ], [ 368808.612199999392033, 255284.834499999880791 ], [ 368807.858000002801418, 255278.706599999219179 ], [ 368804.889899998903275, 255248.495999999344349 ], [ 368801.69709999859333, 255244.670200001448393 ], [ 368801.481299996376038, 255269.999600000679493 ], [ 368802.982400000095367, 255283.099700000137091 ], [ 368804.296499997377396, 255318.151999998837709 ], [ 368807.176500000059605, 255358.70549999922514 ], [ 368823.311800003051758, 255357.7820999994874 ], [ 368837.8074000030756, 255360.011700000613928 ], [ 368845.040899999439716, 255362.815099999308586 ], [ 368853.0608000010252, 255367.947000000625849 ], [ 368860.304999999701977, 255369.483899999409914 ], [ 368868.364600002765656, 255369.972100000828505 ], [ 368890.152999997138977, 255368.039500001817942 ], [ 368894.19709999859333, 255366.594900000840425 ], [ 368904.689999997615814, 255365.414200000464916 ], [ 368903.228399999439716, 255347.670400001108646 ], [ 368902.6199000030756, 255324.445099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802012200", "MAP": "D9-7490-T004", "PARCEL_NAM": "6M-1", "ACRE": ".50", "LONGITUDE": -64.83797777, "LATITUDE": 18.32680398, "OBJECTID_1": 40082, "PARCEL_NO_": "107802012200", "Tax_Legal_": "ESTATE NAZARETH 6M-1 RED HOOK QTR.", "Name": "ST JOHN FOSTER, ELIZABETH (TRUSTEE)", "Address": "PO Box 502097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 250000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.77146192500001, "SHAPE_Area": 1348.04056021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368659.005599997937679, 255335.116900000721216 ], [ 368652.517399996519089, 255339.496800001710653 ], [ 368637.973200000822544, 255342.966299999505281 ], [ 368618.618100002408028, 255343.230099998414516 ], [ 368606.545000001788139, 255340.598099999129772 ], [ 368599.973999999463558, 255354.687600001692772 ], [ 368628.13740000128746, 255361.673099998384714 ], [ 368654.709799997508526, 255366.112500000745058 ], [ 368672.4324000030756, 255368.157400000840425 ], [ 368663.757200002670288, 255345.28830000013113 ], [ 368662.162600003182888, 255343.164299998432398 ], [ 368662.178800001740456, 255341.264600001275539 ], [ 368659.005599997937679, 255335.116900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85226129, "LATITUDE": 18.32672625, "OBJECTID_1": 39471, "PARCEL_NO_": "107702012100", "Tax_Legal_": "SMITH BAY ESTATE 18-16 EASTEND 1,2,&3", "Name": "ARBOUR, CAROLE T", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60100, "Improved_V": 343800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.49988672800001, "SHAPE_Area": 1842.07121667 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367159.903499998152256, 255342.479200001806021 ], [ 367155.193300001323223, 255327.453000001609325 ], [ 367148.82379999756813, 255317.901599999517202 ], [ 367139.225299999117851, 255308.745999999344349 ], [ 367128.79900000244379, 255302.116799999028444 ], [ 367094.597599998116493, 255341.3114 ], [ 367123.53320000320673, 255352.313999999314547 ], [ 367159.903499998152256, 255342.479200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107702013100", "MAP": "D9-8626-T012", "PARCEL_NAM": "17A REM", "ACRE": ".133", "LONGITUDE": -64.85100256, "LATITUDE": 18.32648084, "OBJECTID_1": 39479, "PARCEL_NO_": "107702013100", "Tax_Legal_": "17A-REM SMITH BAY NO. 1&2 EAST END QTR", "Name": "ONE STOP INC.", "Address": "7003 Estate Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43100, "Improved_V": 304700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.781237975, "SHAPE_Area": 641.19215711499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367278.106499999761581, 255303.238699998706579 ], [ 367274.997900001704693, 255298.657999999821186 ], [ 367268.959100000560284, 255294.38060000166297 ], [ 367257.390799999237061, 255284.291700001806021 ], [ 367251.549099996685982, 255280.74549999833107 ], [ 367256.093900002539158, 255315.190999999642372 ], [ 367257.555500000715256, 255332.934799998998642 ], [ 367278.106499999761581, 255303.238699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83376965, "LATITUDE": 18.32613735, "OBJECTID_1": 40050, "PARCEL_NO_": "107802010200", "Tax_Legal_": "NAZARETH 6A RED HOOK QTR", "Name": "CABRITE DEV. CO.", "Address": "PO Box 10152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013152, "Country": "United States", "Land_Value": 525700, "Improved_V": 1189000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 783.604959839, "SHAPE_Area": 16274.335465599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368972.483199998736382, 255358.580800000578165 ], [ 368982.173299998044968, 255356.971400000154972 ], [ 368998.299599997699261, 255357.103399999439716 ], [ 369010.403200000524521, 255356.146999999880791 ], [ 369028.941200003027916, 255357.143100000917912 ], [ 369036.203400000929832, 255356.569200001657009 ], [ 369064.4746999964118, 255350.890000000596046 ], [ 369068.533299997448921, 255347.756799999624491 ], [ 369078.246799997985363, 255343.403299998492002 ], [ 369085.494599997997284, 255344.518100000917912 ], [ 369090.314499996602535, 255346.668499998748302 ], [ 369091.959499999880791, 255342.88230000063777 ], [ 369102.493699997663498, 255336.846799999475479 ], [ 369104.178199999034405, 255328.416799999773502 ], [ 369107.4070999994874, 255328.021099999547005 ], [ 369113.836000002920628, 255330.606800001114607 ], [ 369117.077399998903275, 255328.733500000089407 ], [ 369118.724200002849102, 255324.736200001090765 ], [ 369115.549300000071526, 255318.799600001424551 ], [ 369115.576300002634525, 255315.633400000631809 ], [ 369121.227700002491474, 255314.835299998521805 ], [ 369125.255699999630451, 255315.290500000119209 ], [ 369129.245899997651577, 255320.178300000727177 ], [ 369130.790100000798702, 255328.212499998509884 ], [ 369133.1875, 255330.7652000002563 ], [ 369136.412799999117851, 255330.791600000113249 ], [ 369138.851499997079372, 255328.489500001072884 ], [ 369138.144100002944469, 255316.873599998652935 ], [ 369136.55120000243187, 255314.538499999791384 ], [ 369133.342200003564358, 255312.612399999052286 ], [ 369126.891699999570847, 255312.559599999338388 ], [ 369122.913999997079372, 255306.194299999624491 ], [ 369118.911200001835823, 255302.784000001847744 ], [ 369119.742700003087521, 255299.835499998182058 ], [ 369120.563400000333786, 255298.153499998152256 ], [ 369124.611199997365475, 255296.286800000816584 ], [ 369127.814800001680851, 255298.846099998801947 ], [ 369127.874200001358986, 255291.880499999970198 ], [ 369139.326200000941753, 255272.764699999243021 ], [ 369140.978399999439716, 255268.134199999272823 ], [ 369150.806999996304512, 255250.271699998527765 ], [ 369155.706000000238419, 255243.13459999859333 ], [ 369164.647399999201298, 255234.763999998569489 ], [ 369172.753600001335144, 255229.76410000026226 ], [ 369176.045400001108646, 255221.980599999427795 ], [ 369184.164300002157688, 255215.503100000321865 ], [ 369185.807499997317791, 255211.927999999374151 ], [ 369186.662299998104572, 255206.235500000417233 ], [ 369189.101099997758865, 255203.933400001376867 ], [ 369199.628100000321865, 255198.742199998348951 ], [ 369206.924500003457069, 255194.157900001853704 ], [ 369214.4358000010252, 255193.064100001007318 ], [ 369189.840499997138977, 255162.166799999773502 ], [ 369183.787699997425079, 255165.048700001090765 ], [ 369175.670699998736382, 255171.315099999308586 ], [ 369169.177000001072884, 255176.328200001269579 ], [ 369146.481600001454353, 255190.074599999934435 ], [ 369128.616800002753735, 255204.704900000244379 ], [ 369112.332400001585484, 255223.147900000214577 ], [ 369111.506300002336502, 255225.463199999183416 ], [ 369089.478699997067451, 255255.469200000166893 ], [ 369078.096799999475479, 255266.353000000119209 ], [ 369066.73650000244379, 255274.703699998557568 ], [ 369045.668099999427795, 255286.774700000882149 ], [ 368976.915700003504753, 255311.543200001120567 ], [ 368956.722000002861023, 255315.599800001829863 ], [ 368962.8074000030756, 255358.501600001007318 ], [ 368972.483199998736382, 255358.580800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802020600", "MAP": null, "PARCEL_NAM": "6L-21", "ACRE": null, "LONGITUDE": -64.83868785, "LATITUDE": 18.32660908, "OBJECTID_1": 40141, "PARCEL_NO_": "107802020600", "Tax_Legal_": "NAZARETH ESTATE 6L-21 RED HOOK QTR.", "Name": "FOSTER, JOHN P. & SHANE", "Address": "10615 Floral Park Dr", "City": "Austin", "State": "Texas", "Zip": 78159, "Country": "United States", "Land_Value": 249000, "Improved_V": 1080800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.77745208100001, "SHAPE_Area": 1810.66299248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368578.453500002622604, 255325.16950000077486 ], [ 368572.015600003302097, 255323.639199998229742 ], [ 368572.089299999177456, 255314.984900001436472 ], [ 368556.000799998641014, 255310.420299999415874 ], [ 368539.914200000464916, 255305.644600000232458 ], [ 368535.036700002849102, 255310.248700000345707 ], [ 368528.580799996852875, 255310.829100001603365 ], [ 368526.9070999994874, 255317.992600001394749 ], [ 368538.083999998867512, 255331.171900000423193 ], [ 368548.510300002992153, 255337.801100000739098 ], [ 368568.589000001549721, 255347.253600001335144 ], [ 368584.677400000393391, 255351.818199999630451 ], [ 368599.973999999463558, 255354.687600001692772 ], [ 368606.545000001788139, 255340.598099999129772 ], [ 368589.659199997782707, 255334.971500001847744 ], [ 368583.246399998664856, 255330.486099999397993 ], [ 368581.64639999717474, 255328.995299998670816 ], [ 368578.453500002622604, 255325.16950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85257372, "LATITUDE": 18.32657121, "OBJECTID_1": 39470, "PARCEL_NO_": "107702012000", "Tax_Legal_": "SMITH BAY ESTATE 18-15 1,2&3 EASTEND", "Name": "MARSH, STEPHEN J. & JUNE R. (TRUSTEES)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.63120038900001, "SHAPE_Area": 1789.97996352 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367071.865800000727177, 255308.772199999541044 ], [ 367073.026600003242493, 255333.259199999272823 ], [ 367094.597599998116493, 255341.3114 ], [ 367128.79900000244379, 255302.116799999028444 ], [ 367115.959100000560284, 255294.834499999880791 ], [ 367109.549999997019768, 255289.926899999380112 ], [ 367105.55799999833107, 255285.250199999660254 ], [ 367071.865800000727177, 255308.772199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86195886, "LATITUDE": 18.32660706, "OBJECTID_1": 39271, "PARCEL_NO_": "107701031200", "Tax_Legal_": "FRYDENHOJ ESTATE 39A RED HOOK QTR", "Name": "DONOVAN, LEROY & STARR JOHNSON & STEPHANIE BRANCH", "Address": "PO Box 11002", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62500, "Improved_V": 103100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.19836581000001, "SHAPE_Area": 1164.55765361 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366114.635899998247623, 255272.918099999427795 ], [ 366112.996299996972084, 255276.071100000292063 ], [ 366109.744099996984005, 255279.210900001227856 ], [ 366096.693899996578693, 255296.624800000339746 ], [ 366094.237199999392033, 255301.03770000115037 ], [ 366088.483300000429153, 255313.867300000041723 ], [ 366085.164499998092651, 255324.81700000166893 ], [ 366084.302500002086163, 255331.353799998760223 ], [ 366119.82880000025034, 255325.945099998265505 ], [ 366114.635899998247623, 255272.918099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701018100", "MAP": "D9-5811-T94", "PARCEL_NAM": "143-2", "ACRE": ".27", "LONGITUDE": -64.863655, "LATITUDE": 18.32651854, "OBJECTID_1": 39198, "PARCEL_NO_": "107701018100", "Tax_Legal_": "143-2 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "FRANCIS-GREEN, DENISE L", "Address": "P.O. BOX 5525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.71085019399999, "SHAPE_Area": 2048.0001532599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365953.627400003373623, 255285.702599998563528 ], [ 365953.25620000064373, 255280.176600001752377 ], [ 365931.098899997770786, 255280.975900001823902 ], [ 365884.751299999654293, 255282.647799998521805 ], [ 365901.315700002014637, 255311.085900001227856 ], [ 365909.7533999979496, 255312.337799999862909 ], [ 365930.000399999320507, 255315.342000000178814 ], [ 365955.876500003039837, 255319.181400001049042 ], [ 365954.631300002336502, 255300.645700000226498 ], [ 365953.627400003373623, 255285.702599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107702015100", "MAP": "D9-1870-T81", "PARCEL_NAM": "18A-4", "ACRE": null, "LONGITUDE": -64.85147246, "LATITUDE": 18.32662257, "OBJECTID_1": 39515, "PARCEL_NO_": "107702015100", "Tax_Legal_": "SMITH BAY ESTATE 18A-4 EAST END QTR", "Name": "FIVE H HOLDINGS INC", "Address": "PO Box 24363", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 74500, "Improved_V": 408900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.370900584, "SHAPE_Area": 751.72222212400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367200.544600002467632, 255304.603799998760223 ], [ 367201.277199998497963, 255313.264699999243021 ], [ 367201.991800002753735, 255324.036299999803305 ], [ 367201.878499999642372, 255337.334300000220537 ], [ 367226.085900001227856, 255335.421500001102686 ], [ 367222.336599998176098, 255302.249099999666214 ], [ 367200.544600002467632, 255304.603799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107702015200", "MAP": "D9-1870-T81", "PARCEL_NAM": "18A-5", "ACRE": null, "LONGITUDE": -64.85117686, "LATITUDE": 18.32666445, "OBJECTID_1": 39516, "PARCEL_NO_": "107702015200", "Tax_Legal_": "SMITH BAY ESTATE 18A-5 EAST END QTR.", "Name": "FIVE H HOLDINGS INC", "Address": "PO Box 24363", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 3900, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.294337252800005, "SHAPE_Area": 449.68733307999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367257.555500000715256, 255332.934799998998642 ], [ 367256.093900002539158, 255315.190999999642372 ], [ 367230.270300000905991, 255317.512800000607967 ], [ 367232.541799999773502, 255334.840999998152256 ], [ 367257.555500000715256, 255332.934799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701018000", "MAP": "D9-5811-T94", "PARCEL_NAM": "143-1", "ACRE": ".24", "LONGITUDE": -64.86321924000001, "LATITUDE": 18.32649593, "OBJECTID_1": 39197, "PARCEL_NO_": "107701018000", "Tax_Legal_": "143-1 ESTATE FRYDENHOJ RED HOOK QTR.", "Name": "FRANCIS, HECTOR R", "Address": "P.O. BOX 5525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.473859557, "SHAPE_Area": 1093.47074266 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365990.611699998378754, 255309.211800001561642 ], [ 365987.049300000071526, 255278.957499999552965 ], [ 365953.25620000064373, 255280.176600001752377 ], [ 365953.627400003373623, 255285.702599998563528 ], [ 365954.631300002336502, 255300.645700000226498 ], [ 365955.457599997520447, 255312.946299999952316 ], [ 365959.93129999935627, 255312.471099998801947 ], [ 365990.611699998378754, 255309.211800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602011300", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-22", "ACRE": "0.37", "LONGITUDE": -64.8738702, "LATITUDE": 18.32655703, "OBJECTID_1": 38311, "PARCEL_NO_": "107602011300", "Tax_Legal_": "2B-22 MARIENDAL NO.4 RED HOOK QTR", "Name": "FRETT, E & WOODLEY, R", "Address": "PO Box 10613", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44200, "Improved_V": 205600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.152615883, "SHAPE_Area": 883.20582498900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364870.254799999296665, 255291.019999999552965 ], [ 364841.375, 255273.473900001496077 ], [ 364825.859099999070168, 255296.356100000441074 ], [ 364824.943099997937679, 255309.225299999117851 ], [ 364870.204499997198582, 255296.93019999936223 ], [ 364870.254799999296665, 255291.019999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802020500", "MAP": "A9-406-T92", "PARCEL_NAM": "6M-3", "ACRE": ".50", "LONGITUDE": -64.83796594, "LATITUDE": 18.32643708, "OBJECTID_1": 40140, "PARCEL_NO_": "107802020500", "Tax_Legal_": "6M-3 NAZARETH No.1 RED HOOK QUARTER", "Name": "THOMAS, FELIX A.", "Address": "2945 Eskridge Rd", "City": "Fairfax", "State": "Virginia", "Zip": 22031, "Country": "United States", "Land_Value": 179500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.83326258700001, "SHAPE_Area": 1805.3043425799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368636.082900002598763, 255280.889299999922514 ], [ 368610.652099996805191, 255331.765799999237061 ], [ 368615.480999998748302, 255332.860800001770258 ], [ 368621.119800001382828, 255333.540300000458956 ], [ 368630.790100000798702, 255334.252700001001358 ], [ 368635.631599999964237, 255333.870099999010563 ], [ 368640.478399999439716, 255332.854299999773502 ], [ 368646.939699999988079, 255331.640599999576807 ], [ 368655.045999996364117, 255326.640700001269579 ], [ 368656.669399999082088, 255325.387499999254942 ], [ 368663.16669999808073, 255319.952199999243021 ], [ 368672.144000001251698, 255307.360100001096725 ], [ 368636.082900002598763, 255280.889299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107801021300", "MAP": "A9-405-T92", "PARCEL_NAM": "6L-28", "ACRE": ".50", "LONGITUDE": -64.8382865, "LATITUDE": 18.32626468, "OBJECTID_1": 40047, "PARCEL_NO_": "107801021300", "Tax_Legal_": "6L-28 NAZARETH No.1 RED HOOK QUARTER", "Name": "THOMAS, FELIX A.", "Address": "2945 Eskridge Rd", "City": "Fairfax", "State": "Virginia", "Zip": 22031, "Country": "United States", "Land_Value": 179500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.85027518499999, "SHAPE_Area": 2623.4908919200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368620.888899996876717, 255265.988400001078844 ], [ 368611.259900003671646, 255260.42119999974966 ], [ 368590.367700003087521, 255251.806499999016523 ], [ 368591.141599997878075, 255255.612500000745058 ], [ 368592.718299999833107, 255259.847199998795986 ], [ 368590.043999999761581, 255289.800599999725819 ], [ 368585.965700000524521, 255295.255699999630451 ], [ 368585.146799996495247, 255296.726599998772144 ], [ 368583.492799997329712, 255301.568300001323223 ], [ 368582.646899998188019, 255306.205400001257658 ], [ 368583.37049999833107, 255315.921599999070168 ], [ 368589.749099999666214, 255324.417599998414516 ], [ 368603.407799996435642, 255330.228900000452995 ], [ 368610.652099996805191, 255331.765799999237061 ], [ 368636.082900002598763, 255280.889299999922514 ], [ 368638.545000001788139, 255275.843199998140335 ], [ 368620.888899996876717, 255265.988400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107702014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85121784, "LATITUDE": 18.32639138, "OBJECTID_1": 39513, "PARCEL_NO_": "107702014900", "Tax_Legal_": "SMITH BAY ESTATE 18A-2 EAST END QTR", "Name": "FIVE H HOLDINGS INC", "Address": "PO Box 24363", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 90200, "Improved_V": 272900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.657574485, "SHAPE_Area": 1083.71121982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367251.549099996685982, 255280.74549999833107 ], [ 367225.874799996614456, 255265.547800000756979 ], [ 367230.270300000905991, 255317.512800000607967 ], [ 367256.093900002539158, 255315.190999999642372 ], [ 367251.549099996685982, 255280.74549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602011400", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-21", "ACRE": "0.34", "LONGITUDE": -64.873727, "LATITUDE": 18.32631079, "OBJECTID_1": 38312, "PARCEL_NO_": "107602011400", "Tax_Legal_": "2B-21 MARIENDAHL NO.4 RED HOOK QTR", "Name": "CHRISTOPHER, E & FREDERICKS", "Address": "PO Box 10613", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.636855037, "SHAPE_Area": 1815.09013061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364884.287600003182888, 255252.926899999380112 ], [ 364872.26129999756813, 255244.80689999833703 ], [ 364858.62950000166893, 255235.8293999992311 ], [ 364822.700400002300739, 255288.519799999892712 ], [ 364823.483300000429153, 255291.270399998873472 ], [ 364825.859099999070168, 255296.356100000441074 ], [ 364841.375, 255273.473900001496077 ], [ 364870.254799999296665, 255291.019999999552965 ], [ 364892.305799998342991, 255258.269799999892712 ], [ 364884.287600003182888, 255252.926899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86218169, "LATITUDE": 18.3262799, "OBJECTID_1": 39223, "PARCEL_NO_": "107701021700", "Tax_Legal_": "4B-2 EST.FRYDENHOJ RED HOOK QUARTER", "Name": "GERALD, JEROME & SYLETTE M. BLACKMAN GERALD", "Address": "PO BOX 502091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 35800, "Improved_V": 168500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.199852835, "SHAPE_Area": 1236.30342946 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366107.539200000464916, 255254.072700001299381 ], [ 366085.763300001621246, 255254.527699999511242 ], [ 366063.181199997663498, 255254.976199999451637 ], [ 366066.260799996554852, 255272.100000001490116 ], [ 366067.011399999260902, 255278.649999998509884 ], [ 366066.871100001037121, 255295.114199999719858 ], [ 366069.26129999756813, 255298.511199999600649 ], [ 366078.931599996984005, 255299.223700001835823 ], [ 366088.718900002539158, 255286.215999998152256 ], [ 366107.539200000464916, 255254.072700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107702015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85151834, "LATITUDE": 18.32624951, "OBJECTID_1": 39514, "PARCEL_NO_": "107702015000", "Tax_Legal_": "SMITH BAY ESTATE 18A-3 EAST END QTR.", "Name": "FIVE H HOLDINGS INC", "Address": "PO Box 24363", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 90200, "Improved_V": 1384300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.934896635, "SHAPE_Area": 1062.9430925199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367217.851199999451637, 255260.837999999523163 ], [ 367195.385999999940395, 255247.566399998962879 ], [ 367200.544600002467632, 255304.603799998760223 ], [ 367222.336599998176098, 255302.249099999666214 ], [ 367217.851199999451637, 255260.837999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702013700", "MAP": "D3-216-T50", "PARCEL_NAM": "REDHOOK WHARF", "ACRE": "0.50", "LONGITUDE": -64.85037703, "LATITUDE": 18.32622694, "OBJECTID_1": 39486, "PARCEL_NO_": "107702013700", "Tax_Legal_": "SMITH BAY ESTATE 1 RED HOOK QT", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 418200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 313.64783745800003, "SHAPE_Area": 2649.6615883700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367282.993500001728535, 255281.214000001549721 ], [ 367294.246799997985363, 255297.105999998748302 ], [ 367298.923699997365475, 255304.35359999909997 ], [ 367383.010399997234344, 255278.021800000220537 ], [ 367380.611299999058247, 255275.680100001394749 ], [ 367382.24549999833107, 255273.160399999469519 ], [ 367372.625500001013279, 255266.537799999117851 ], [ 367368.55969999730587, 255270.515299998223782 ], [ 367361.308300003409386, 255269.822599999606609 ], [ 367357.301899999380112, 255266.834499999880791 ], [ 367356.509999997913837, 255265.139299999922514 ], [ 367356.538800001144409, 255261.761999998241663 ], [ 367365.582599997520447, 255241.359999999403954 ], [ 367347.908500000834465, 255233.61600000038743 ], [ 367346.256300002336502, 255238.246500000357628 ], [ 367359.105099998414516, 255244.473400000482798 ], [ 367352.528800003230572, 255259.196100000292063 ], [ 367350.898199997842312, 255261.293699998408556 ], [ 367345.223399996757507, 255264.835799999535084 ], [ 367336.348600000143051, 255265.396499998867512 ], [ 367322.670000001788139, 255261.907000001519918 ], [ 367307.355499997735023, 255261.148400001227856 ], [ 367282.993500001728535, 255281.214000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802013300", "MAP": "A9-406-T92", "PARCEL_NAM": "6D-1-A", "ACRE": ".517", "LONGITUDE": -64.83531256000001, "LATITUDE": 18.32630066, "OBJECTID_1": 40093, "PARCEL_NO_": "107802013300", "Tax_Legal_": "6D-1-A NAZARETH No.1 RED HOOK QUARTER", "Name": "HEDRINGTON, CLINTON T., JR. & DIONNE A. WELLS", "Address": "PO Box 1207", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 185200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.33612681599999, "SHAPE_Area": 1664.45745685 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368954.410899996757507, 255302.915300000458956 ], [ 368954.553000003099442, 255286.240100000053644 ], [ 368955.402400001883507, 255281.180799998342991 ], [ 368938.424900002777576, 255286.319200001657009 ], [ 368925.507700003683567, 255288.113299999386072 ], [ 368913.413099996745586, 255288.014299999922514 ], [ 368904.552599996328354, 255286.886300001293421 ], [ 368897.319200001657009, 255284.082899998873472 ], [ 368894.106499999761581, 255282.578899998217821 ], [ 368888.207000002264977, 255312.505899999290705 ], [ 368899.475599996745586, 255314.920200001448393 ], [ 368912.376599997282028, 255315.025800000876188 ], [ 368955.184900000691414, 255306.7212999984622 ], [ 368954.410899996757507, 255302.915300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83583573, "LATITUDE": 18.32611147, "OBJECTID_1": 40070, "PARCEL_NO_": "107802010800", "Tax_Legal_": "6D-8 NAZARETH No.1 RED HOOK QUARTER", "Name": "HODGE, JOSEPH E. & ZULMA O.", "Address": "P O BOX 5048", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 188100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.60801728499999, "SHAPE_Area": 2067.7621359599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368871.831900000572205, 255246.932900000363588 ], [ 368830.576899997889996, 255262.2162000015378 ], [ 368849.725199997425079, 255286.226500000804663 ], [ 368856.92620000243187, 255292.829300001263618 ], [ 368860.128100000321865, 255295.599700000137091 ], [ 368872.950000002980232, 255304.992800001055002 ], [ 368888.207000002264977, 255312.505899999290705 ], [ 368894.106499999761581, 255282.578899998217821 ], [ 368890.091099999845028, 255280.646200001239777 ], [ 368886.892899997532368, 255277.453699998557568 ], [ 368880.505300000309944, 255270.013099998235703 ], [ 368874.968999996781349, 255257.302200000733137 ], [ 368873.392300002276897, 255253.067400000989437 ], [ 368871.831900000572205, 255246.932900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021500", "MAP": "A9-406-T92", "PARCEL_NAM": "6M-4", "ACRE": ".50", "LONGITUDE": -64.83774577, "LATITUDE": 18.32610628, "OBJECTID_1": 40150, "PARCEL_NO_": "107802021500", "Tax_Legal_": "6M-4 ESTATE NAZARETH No.1 RED HOOK QUARTER", "Name": "BOHNER FAMILY TRUST", "Address": "233 Chamberlain Hill Rd", "City": "Higganum", "State": "Connecticut", "Zip": 6441, "Country": "United States", "Land_Value": 215000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.66215411300001, "SHAPE_Area": 1921.3837477 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368694.220100000500679, 255271.654899999499321 ], [ 368654.946400001645088, 255243.68019999936223 ], [ 368638.545000001788139, 255275.843199998140335 ], [ 368636.082900002598763, 255280.889299999922514 ], [ 368672.144000001251698, 255307.360100001096725 ], [ 368681.146499998867512, 255291.812800001353025 ], [ 368694.220100000500679, 255271.654899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701019000", "MAP": "D9-5991-T95", "PARCEL_NAM": "29-K", "ACRE": "0.30", "LONGITUDE": -64.86612065, "LATITUDE": 18.3260955, "OBJECTID_1": 39204, "PARCEL_NO_": "107701019000", "Tax_Legal_": "29-K ESTATE FRYDENHOJ REDHOOK QTR.", "Name": "WALTERS, RAYMOND & MONICA", "Address": "PO Box 9582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.50123574599999, "SHAPE_Area": 1112.8137249399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365681.27139999717474, 255218.708799999207258 ], [ 365672.394799999892712, 255219.480500001460314 ], [ 365646.283500000834465, 255255.57490000128746 ], [ 365647.861900001764297, 255259.598600000143051 ], [ 365654.125399999320507, 255281.60359999909997 ], [ 365679.390799999237061, 255250.146299999207258 ], [ 365681.27139999717474, 255218.708799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802010200", "MAP": "D9-1417-T78", "PARCEL_NAM": "6A", "ACRE": null, "LONGITUDE": -64.83452328, "LATITUDE": 18.32618006, "OBJECTID_1": 40050, "PARCEL_NO_": "107802010200", "Tax_Legal_": "NAZARETH 6A RED HOOK QTR", "Name": "CABRITE DEV. CO.", "Address": "PO Box 10152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013152, "Country": "United States", "Land_Value": 525700, "Improved_V": 1189000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.786852014, "SHAPE_Area": 606.78914252799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369057.267499998211861, 255250.350499998778105 ], [ 369035.28490000218153, 255275.079599998891354 ], [ 369023.161499999463558, 255278.357900001108646 ], [ 369021.538000002503395, 255279.611099999397993 ], [ 368954.410899996757507, 255302.915300000458956 ], [ 368955.184900000691414, 255306.7212999984622 ], [ 368975.378600001335144, 255302.664700001478195 ], [ 369026.340000003576279, 255283.872299998998642 ], [ 369044.991200000047684, 255271.57039999961853 ], [ 369055.59740000218153, 255257.09180000051856 ], [ 369057.267499998211861, 255250.350499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802010500", "MAP": "A9-406-T92", "PARCEL_NAM": "6D-1", "ACRE": "0.80", "LONGITUDE": -64.83435138, "LATITUDE": 18.32589588, "OBJECTID_1": 40065, "PARCEL_NO_": "107802010500", "Tax_Legal_": "6D-1 NAZARETH RED HOOK QTR.", "Name": "CABRITA POINT TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 309000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 357.425421524, "SHAPE_Area": 3435.54766737 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369078.68299999833107, 255197.541299998760223 ], [ 369041.461400002241135, 255212.64640000090003 ], [ 369041.436200000345707, 255215.601500000804663 ], [ 369040.574100002646446, 255222.138399999588728 ], [ 369037.282399997115135, 255229.921900000423193 ], [ 369034.814900003373623, 255235.601199999451637 ], [ 369029.086199998855591, 255245.47580000013113 ], [ 369027.446599997580051, 255248.628699999302626 ], [ 369016.880000002682209, 255258.463700000196695 ], [ 369007.155699998140335, 255264.083599999547005 ], [ 368996.635899998247623, 255268.430500000715256 ], [ 368955.402400001883507, 255281.180799998342991 ], [ 368954.553000003099442, 255286.240100000053644 ], [ 368954.410899996757507, 255302.915300000458956 ], [ 369021.538000002503395, 255279.611099999397993 ], [ 369023.161499999463558, 255278.357900001108646 ], [ 369035.28490000218153, 255275.079599998891354 ], [ 369057.267499998211861, 255250.350499998778105 ], [ 369058.896300002932549, 255248.464000001549721 ], [ 369060.530599996447563, 255245.944200001657009 ], [ 369061.349500000476837, 255244.473299998790026 ], [ 369062.981899999082088, 255242.164599999785423 ], [ 369063.802599996328354, 255240.482599999755621 ], [ 369078.68299999833107, 255197.541299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602012900", "MAP": "D9-5063-T91", "PARCEL_NAM": "2-O", "ACRE": "0.36", "LONGITUDE": -64.87347595, "LATITUDE": 18.32597802, "OBJECTID_1": 38323, "PARCEL_NO_": "107602012900", "Tax_Legal_": "2-0 MARIENDAHL REDHOOK QTR.", "Name": "PHILLIP, MYRTLE", "Address": "PO Box 503131", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 43100, "Improved_V": 62900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.23275330199999, "SHAPE_Area": 1422.0827627599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364884.737199999392033, 255200.157200001180172 ], [ 364861.361299999058247, 255199.121500000357628 ], [ 364866.141599997878075, 255205.915600001811981 ], [ 364870.891400001943111, 255216.298099998384714 ], [ 364872.489600002765656, 255217.999899998307228 ], [ 364884.287600003182888, 255252.926899999380112 ], [ 364892.305799998342991, 255258.269799999892712 ], [ 364901.927599996328354, 255264.681400001049042 ], [ 364905.280500002205372, 255249.721200000494719 ], [ 364904.569499999284744, 255238.527399998158216 ], [ 364904.623499996960163, 255232.195099998265505 ], [ 364900.667400002479553, 255223.296799998730421 ], [ 364884.737199999392033, 255200.157200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602051300", "MAP": "A9-402-T95", "PARCEL_NAM": "29-C", "ACRE": "0.37", "LONGITUDE": -64.86656785, "LATITUDE": 18.32616504, "OBJECTID_1": 38525, "PARCEL_NO_": "107602051300", "Tax_Legal_": "29-C ESTATE FRYDENHOJ #3 RED HOOK QTR", "Name": "KING, HUBERT", "Address": "PO Box 9533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.63331745599999, "SHAPE_Area": 1101.7513932899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365600.196000002324581, 255270.185300000011921 ], [ 365642.12780000269413, 255270.106300000101328 ], [ 365639.778999999165535, 255261.854400001466274 ], [ 365638.207800000905991, 255256.986400000751019 ], [ 365637.413999997079372, 255255.502300001680851 ], [ 365631.838200002908707, 255247.435100000351667 ], [ 365626.228200003504753, 255243.378400001674891 ], [ 365622.218199998140335, 255240.8125 ], [ 365608.546800002455711, 255236.478700000792742 ], [ 365603.700000002980232, 255237.494500000029802 ], [ 365599.637800000607967, 255241.049800001084805 ], [ 365600.196000002324581, 255270.185300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702013600", "MAP": null, "PARCEL_NAM": "16-3", "ACRE": null, "LONGITUDE": -64.85086294, "LATITUDE": 18.32609334, "OBJECTID_1": 39484, "PARCEL_NO_": "107702013600", "Tax_Legal_": "16-3 ESTATE SMITH BAY 1,2& 3 EAST END QTR.", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 138000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.66143795799999, "SHAPE_Area": 1151.1121407799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367258.32150000333786, 255243.0152000002563 ], [ 367257.277800001204014, 255270.870999999344349 ], [ 367282.993500001728535, 255281.214000001549721 ], [ 367307.355499997735023, 255261.148400001227856 ], [ 367297.712099999189377, 255257.269799999892712 ], [ 367285.700099997222424, 255247.461199998855591 ], [ 367280.867700003087521, 255246.78830000013113 ], [ 367276.019000001251698, 255248.0152000002563 ], [ 367268.763999998569489, 255247.744699999690056 ], [ 367261.534100003540516, 255244.519200000911951 ], [ 367258.32150000333786, 255243.0152000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701058800", "MAP": "D9-5860-T95", "PARCEL_NAM": "28-A", "ACRE": ".11", "LONGITUDE": -64.86507829, "LATITUDE": 18.32601661, "OBJECTID_1": 39439, "PARCEL_NO_": "107701058800", "Tax_Legal_": "28A & 29G ESTATE FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "CONNOR, CATILDA", "Address": "2600 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026310, "Country": "United States", "Land_Value": 31600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.286630601, "SHAPE_Area": 742.95783024000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365783.17849999666214, 255221.708999998867512 ], [ 365783.120800003409386, 255217.785399999469519 ], [ 365778.824400000274181, 255220.773699998855591 ], [ 365755.306500002741814, 255236.41330000013113 ], [ 365760.095799997448921, 255242.151999998837709 ], [ 365771.299699999392033, 255252.165100000798702 ], [ 365783.31700000166893, 255261.340500000864267 ], [ 365784.920699998736382, 255262.409099999815226 ], [ 365786.579973037471063, 255263.371732439700281 ], [ 365788.348089251492638, 255264.115784376946976 ], [ 365790.196400001645088, 255264.629200000315905 ], [ 365785.930200003087521, 255246.897399999201298 ], [ 365785.083499997854233, 255240.75899999961257 ], [ 365783.17849999666214, 255221.708999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701018900", "MAP": "D9-5991-T95", "PARCEL_NAM": "29-J", "ACRE": "0.38", "LONGITUDE": -64.86616208, "LATITUDE": 18.32583262, "OBJECTID_1": 39203, "PARCEL_NO_": "107701018900", "Tax_Legal_": "29-J ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "RAWLINS, JEROME & PATRICIA", "Address": "PO Box 10887", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.25321140899999, "SHAPE_Area": 1194.43734767 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365678.312600001692772, 255191.667399998754263 ], [ 365666.292199999094009, 255190.110399998724461 ], [ 365662.096100002527237, 255197.864700000733137 ], [ 365638.386500000953674, 255237.149099998176098 ], [ 365642.061599999666214, 255240.067600000649691 ], [ 365646.283500000834465, 255255.57490000128746 ], [ 365672.394799999892712, 255219.480500001460314 ], [ 365681.27139999717474, 255218.708799999207258 ], [ 365679.01070000231266, 255200.114000000059605 ], [ 365678.312600001692772, 255191.667399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802013600", "MAP": "A9-406-T92", "PARCEL_NAM": "6D-12", "ACRE": ".510", "LONGITUDE": -64.83515061, "LATITUDE": 18.32592003, "OBJECTID_1": 40096, "PARCEL_NO_": "107802013600", "Tax_Legal_": "6D-12 NAZARETH No.1 RED HOOK PLAZA", "Name": "BEVERLY B DREW PETRUS LIVING TRUST", "Address": "PO Box 307187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 163000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.6710864, "SHAPE_Area": 2509.4528652899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368970.209200002253056, 255246.893699999898672 ], [ 368956.545000001788139, 255241.715599998831749 ], [ 368948.535800002515316, 255235.317299999296665 ], [ 368942.961800001561642, 255227.039000000804663 ], [ 368945.447200000286102, 255219.2489 ], [ 368894.196400001645088, 255272.024999998509884 ], [ 368900.612800002098083, 255276.088300000876188 ], [ 368908.657899998128414, 255278.265099998563528 ], [ 368923.974200002849102, 255278.812600001692772 ], [ 368943.354500003159046, 255275.593699999153614 ], [ 368987.017700001597404, 255261.596700001507998 ], [ 368970.209200002253056, 255246.893699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86226015, "LATITUDE": 18.32592844, "OBJECTID_1": 39239, "PARCEL_NO_": "107701023600", "Tax_Legal_": "FRYDENHOJ ESTATE 4B-4 REDHOOK QTR.", "Name": "RAWLINS, CASPER & FRANCES", "Address": "PO Box 7452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.61852697399999, "SHAPE_Area": 1075.3697883100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366087.714000001549721, 255214.8581000007689 ], [ 366057.081299997866154, 255213.763000000268221 ], [ 366063.181199997663498, 255254.976199999451637 ], [ 366085.763300001621246, 255254.527699999511242 ], [ 366087.714000001549721, 255214.8581000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021400", "MAP": "A9-405-T92", "PARCEL_NAM": "6L-27", "ACRE": ".50", "LONGITUDE": -64.83799214, "LATITUDE": 18.32575185, "OBJECTID_1": 40149, "PARCEL_NO_": "107802021400", "Tax_Legal_": "6L-27 NAZARETH No.1 RED HOOK QUARTER", "Name": "THOMAS, FELIX A.", "Address": "2945 Eskridge Rd", "City": "Fairfax", "State": "Virginia", "Zip": 22031, "Country": "United States", "Land_Value": 182300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.411456816, "SHAPE_Area": 2002.14898857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368654.964400000870228, 255241.569400001317263 ], [ 368660.865699999034405, 255211.43129999935627 ], [ 368655.237700000405312, 255209.485399998724461 ], [ 368639.962700001895428, 255204.083000000566244 ], [ 368627.076099999248981, 255202.288800001144409 ], [ 368624.488099999725819, 255222.110399998724461 ], [ 368623.550599999725819, 255237.512600000947714 ], [ 368621.871399998664856, 255245.309300001710653 ], [ 368620.888899996876717, 255265.988400001078844 ], [ 368638.545000001788139, 255275.843199998140335 ], [ 368654.946400001645088, 255243.68019999936223 ], [ 368654.964400000870228, 255241.569400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021600", "MAP": "A9-406-T92", "PARCEL_NAM": "6M-5 & 6L-27A COMB", "ACRE": "0.50", "LONGITUDE": -64.83760046, "LATITUDE": 18.32581526, "OBJECTID_1": 40151, "PARCEL_NO_": "107802021600", "Tax_Legal_": "6M-5&6L-27A NAZARETH No.1 RED HOOK QUARTER", "Name": "THOMAS, FELIX A.", "Address": "2945 Eskridge Rd", "City": "Fairfax", "State": "Virginia", "Zip": 22031, "Country": "United States", "Land_Value": 179500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.25627351899999, "SHAPE_Area": 1423.4439075600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368668.095499999821186, 255214.656899999827147 ], [ 368659.046300001442432, 255235.692200001329184 ], [ 368654.964400000870228, 255241.569400001317263 ], [ 368654.946400001645088, 255243.68019999936223 ], [ 368694.220100000500679, 255271.654899999499321 ], [ 368701.577600002288818, 255259.893800001591444 ], [ 368702.463100001215935, 255250.613000001758337 ], [ 368701.673000000417233, 255248.706700000911951 ], [ 368698.501599997282028, 255242.347899999469519 ], [ 368690.526600003242493, 255231.938999999314547 ], [ 368682.526399999856949, 255224.485300000756979 ], [ 368668.095499999821186, 255214.656899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802013500", "MAP": "A9-406-T92", "PARCEL_NAM": "6D-11", "ACRE": ".527", "LONGITUDE": -64.83547388, "LATITUDE": 18.32578819, "OBJECTID_1": 40095, "PARCEL_NO_": "107802013500", "Tax_Legal_": "6D-11 NAZARETH No.1 RED HOOK QUARTER", "Name": "VANTERPOOL, NIEL & SHIVONNE", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 188100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.48534489799999, "SHAPE_Area": 1479.1860938299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368945.447200000286102, 255219.2489 ], [ 368879.201999999582767, 255233.694299999624491 ], [ 368879.182199999690056, 255236.016199998557568 ], [ 368880.713899999856949, 255245.528000000864267 ], [ 368885.429499998688698, 255259.920899998396635 ], [ 368887.810699999332428, 255264.373399998992682 ], [ 368894.196400001645088, 255272.024999998509884 ], [ 368945.447200000286102, 255219.2489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021300", "MAP": "A9-405-T92", "PARCEL_NAM": "6L-26", "ACRE": null, "LONGITUDE": -64.83832601, "LATITUDE": 18.32568764, "OBJECTID_1": 40148, "PARCEL_NO_": "107802021300", "Tax_Legal_": "6L-26 NAZARETH No.1 RED HOOK QUARTER", "Name": "THOMAS, FELIX A.", "Address": "2945 Eskridge Rd", "City": "Fairfax", "State": "Virginia", "Zip": 22031, "Country": "United States", "Land_Value": 179500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.89082361000001, "SHAPE_Area": 2236.9501341700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368590.367700003087521, 255251.806499999016523 ], [ 368611.259900003671646, 255260.42119999974966 ], [ 368620.888899996876717, 255265.988400001078844 ], [ 368621.871399998664856, 255245.309300001710653 ], [ 368623.550599999725819, 255237.512600000947714 ], [ 368624.488099999725819, 255222.110399998724461 ], [ 368627.076099999248981, 255202.288800001144409 ], [ 368611.750799998641014, 255202.796700000762939 ], [ 368590.75789999961853, 255206.002300001680851 ], [ 368564.878600001335144, 255214.867600001394749 ], [ 368573.711999997496605, 255219.161699999123812 ], [ 368580.104999996721745, 255225.969000000506639 ], [ 368587.2449000030756, 255239.748599998652935 ], [ 368588.798199996352196, 255246.727400001138449 ], [ 368590.367700003087521, 255251.806499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701017400", "MAP": "A9-402-T92", "PARCEL_NAM": "29-B", "ACRE": "0.29", "LONGITUDE": -64.86634207, "LATITUDE": 18.32574411, "OBJECTID_1": 39191, "PARCEL_NO_": "107701017400", "Tax_Legal_": "29-B ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "WALTERS, MELVIN & PARROTT, LOR", "Address": "PO Box 503013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 38700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.26983338, "SHAPE_Area": 1133.8762050299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365666.292199999094009, 255190.110399998724461 ], [ 365641.275700002908707, 255186.870099999010563 ], [ 365636.321099996566772, 255194.487300001084805 ], [ 365619.499899998307228, 255224.524599999189377 ], [ 365627.774099998176098, 255228.721599999815226 ], [ 365638.386500000953674, 255237.149099998176098 ], [ 365662.096100002527237, 255197.864700000733137 ], [ 365666.292199999094009, 255190.110399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802010200", "MAP": "D9-1417-T78", "PARCEL_NAM": "6A", "ACRE": "1.59", "LONGITUDE": -64.83348913, "LATITUDE": 18.32527835, "OBJECTID_1": 40050, "PARCEL_NO_": "107802010200", "Tax_Legal_": "NAZARETH 6A RED HOOK QTR", "Name": "CABRITE DEV. CO.", "Address": "PO Box 10152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013152, "Country": "United States", "Land_Value": 525700, "Improved_V": 1189000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.50878189299999, "SHAPE_Area": 3989.99826983 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369169.272299997508526, 255165.140999998897314 ], [ 369142.127400003373623, 255133.254799999296665 ], [ 369122.632100000977516, 255149.982700001448393 ], [ 369095.014300003647804, 255173.610300000756979 ], [ 369094.148599997162819, 255180.569299999624491 ], [ 369072.671999998390675, 255240.555100001394749 ], [ 369065.262299999594688, 255258.4375 ], [ 369062.818199999630451, 255261.372800000011921 ], [ 369061.173199996352196, 255265.159000001847744 ], [ 369062.776900000870228, 255266.227600000798702 ], [ 369071.698399998247623, 255260.178899999707937 ], [ 369082.266800001263618, 255250.13289999961853 ], [ 369110.82940000295639, 255210.258900001645088 ], [ 369126.284199997782707, 255194.553399998694658 ], [ 369128.721100002527237, 255192.462400000542402 ], [ 369141.711999997496605, 255182.013999998569489 ], [ 369169.272299997508526, 255165.140999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802010900", "MAP": "D9-1758-T81", "PARCEL_NAM": "6D-4", "ACRE": null, "LONGITUDE": -64.83613518, "LATITUDE": 18.32572476, "OBJECTID_1": 40071, "PARCEL_NO_": "107802010900", "Tax_Legal_": "6D-4 NAZARETH RED HOOK QTR", "Name": "ALIGNED DEVELOPMENT STRATEGIES INCORPORATED", "Address": "1900 L St NW", "City": "Washington", "State": "District of Columbia", "Zip": 20036, "Country": "United States", "Land_Value": 265000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.97934762200001, "SHAPE_Area": 2425.2859680800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368869.635899998247623, 255220.73930000141263 ], [ 368794.695600003004074, 255214.637600000947714 ], [ 368790.647799998521805, 255216.504299998283386 ], [ 368790.610100001096725, 255220.936900001019239 ], [ 368791.403800003230572, 255222.421100001782179 ], [ 368807.404200002551079, 255237.328600000590086 ], [ 368830.576899997889996, 255262.2162000015378 ], [ 368871.831900000572205, 255246.932900000363588 ], [ 368870.289399996399879, 255238.687600001692772 ], [ 368869.635899998247623, 255220.73930000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701058800", "MAP": "D9-5860-T95", "PARCEL_NAM": "29-G", "ACRE": ".20", "LONGITUDE": -64.86521281, "LATITUDE": 18.32579505, "OBJECTID_1": 39439, "PARCEL_NO_": "107701058800", "Tax_Legal_": "28A & 29G ESTATE FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "CONNOR, CATILDA", "Address": "2600 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026310, "Country": "United States", "Land_Value": 31600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.23285143800001, "SHAPE_Area": 933.92968704299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365782.966899998486042, 255207.315600000321865 ], [ 365783.093900002539158, 255205.855200000107288 ], [ 365778.5287000015378, 255205.860800001770258 ], [ 365739.913000002503395, 255201.048500001430511 ], [ 365742.639300003647804, 255208.867400001734495 ], [ 365750.506399996578693, 255231.940999999642372 ], [ 365751.30009999871254, 255233.425200000405312 ], [ 365755.306500002741814, 255236.41330000013113 ], [ 365778.824400000274181, 255220.773699998855591 ], [ 365783.120800003409386, 255217.785399999469519 ], [ 365782.966899998486042, 255207.315600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802010600", "MAP": "A9-406-T92", "PARCEL_NAM": "6D-3", "ACRE": "0.51", "LONGITUDE": -64.83449537, "LATITUDE": 18.32563735, "OBJECTID_1": 40066, "PARCEL_NO_": "107802010600", "Tax_Legal_": "6D-3 NAZARETH RED HOOK QTR.", "Name": "SPRUANCE, THOMAS W.", "Address": "27 Selborne Dr", "City": "Wilmington", "State": "Delaware", "Zip": 19807, "Country": "United States", "Land_Value": 295200, "Improved_V": 913600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.82727703399999, "SHAPE_Area": 2057.8059305199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368998.84009999781847, 255198.998700000345707 ], [ 368997.7550999969244, 255231.709300000220537 ], [ 368996.088500000536442, 255238.028499998152256 ], [ 368992.825499996542931, 255242.434799998998642 ], [ 368982.314599998295307, 255245.726199999451637 ], [ 368979.895700000226498, 255245.706399999558926 ], [ 368969.446000002324581, 255241.821199998259544 ], [ 368970.209200002253056, 255246.893699999898672 ], [ 368987.017700001597404, 255261.596700001507998 ], [ 368995.915899999439716, 255258.292100001126528 ], [ 369005.623999997973442, 255254.571800000965595 ], [ 369015.355499997735023, 255248.107599999755621 ], [ 369025.124700002372265, 255237.210700001567602 ], [ 369028.4003000035882, 255231.326900001615286 ], [ 369031.722699999809265, 255219.954999998211861 ], [ 369032.627899996936321, 255208.352299999445677 ], [ 369031.846799999475479, 255205.390599999576807 ], [ 369028.686200000345707, 255197.765299998223782 ], [ 369022.26630000025034, 255194.124200001358986 ], [ 369014.212200000882149, 255193.00279999896884 ], [ 369005.32660000026226, 255194.829900000244379 ], [ 368998.84009999781847, 255198.998700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602051400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86657943, "LATITUDE": 18.32566911, "OBJECTID_1": 38526, "PARCEL_NO_": "107602051400", "Tax_Legal_": "FRYDENHOJ ESTATE 29-A RED HOOK QTR.", "Name": "LEBLANC, SR , ALLEN & PHYLLIS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50800, "Improved_V": 250900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.91471582700001, "SHAPE_Area": 1103.50741894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365641.275700002908707, 255186.870099999010563 ], [ 365603.141699999570847, 255181.930799998342991 ], [ 365602.491899996995926, 255189.988499999046326 ], [ 365601.030599996447563, 255219.442600000649691 ], [ 365613.276500001549721, 255221.367800001055002 ], [ 365619.499899998307228, 255224.524599999189377 ], [ 365636.321099996566772, 255194.487300001084805 ], [ 365641.275700002908707, 255186.870099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802012600", "MAP": "D9-3929-T87", "PARCEL_NAM": "6D-A", "ACRE": null, "LONGITUDE": -64.83480891000001, "LATITUDE": 18.32558111, "OBJECTID_1": 40086, "PARCEL_NO_": "107802012600", "Tax_Legal_": "6D-A NAZARETH RED HOOK QTR.", "Name": "THOMAS W SPRUANCE FAMILY 2012 IRREVOCABLE GST TRUS", "Address": "27 Selborne Dr", "City": "Wilmington", "State": "Delaware", "Zip": 19807, "Country": "United States", "Land_Value": 277200, "Improved_V": 660800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.53363141400001, "SHAPE_Area": 2235.41780195 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368972.240800000727177, 255197.725499998778105 ], [ 368969.002899996936321, 255199.176699999719858 ], [ 368961.699400000274181, 255204.605399999767542 ], [ 368952.770599998533726, 255211.498399998992682 ], [ 368947.063500002026558, 255218.839899998158216 ], [ 368945.447200000286102, 255219.2489 ], [ 368942.961800001561642, 255227.039000000804663 ], [ 368948.535800002515316, 255235.317299999296665 ], [ 368956.545000001788139, 255241.715599998831749 ], [ 368970.209200002253056, 255246.893699999898672 ], [ 368969.446000002324581, 255241.821199998259544 ], [ 368979.895700000226498, 255245.706399999558926 ], [ 368982.314599998295307, 255245.726199999451637 ], [ 368992.825499996542931, 255242.434799998998642 ], [ 368996.088500000536442, 255238.028499998152256 ], [ 368997.7550999969244, 255231.709300000220537 ], [ 368998.84009999781847, 255198.998700000345707 ], [ 368998.931800000369549, 255188.23369999974966 ], [ 368981.146200001239777, 255193.57660000026226 ], [ 368972.240800000727177, 255197.725499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802013700", "MAP": null, "PARCEL_NAM": "6P", "ACRE": null, "LONGITUDE": -64.83694953, "LATITUDE": 18.32506411, "OBJECTID_1": 40097, "PARCEL_NO_": "107802013700", "Tax_Legal_": "PAR 6P REM NAZARETH 1 RED HOOK QTR", "Name": "ALLISON PETRUS & BEVERLY DREW-PETRUS (CO-TRUSTEES)", "Address": "PO Box 307187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037187, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 520.92267068000001, "SHAPE_Area": 14785.8223409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368818.628899998962879, 255150.238800000399351 ], [ 368792.678700000047684, 255072.766199998557568 ], [ 368756.967200003564358, 255099.91609999909997 ], [ 368729.439300000667572, 255112.989700000733137 ], [ 368710.852799996733665, 255117.692699998617172 ], [ 368680.97240000218153, 255122.936599999666214 ], [ 368678.434799998998642, 255136.848000001162291 ], [ 368669.540200002491474, 255139.730500001460314 ], [ 368672.661200001835823, 255151.999400001019239 ], [ 368687.104699999094009, 255160.350299999117851 ], [ 368686.251599997282028, 255165.831799998879433 ], [ 368699.944499999284744, 255167.632599998265505 ], [ 368690.629100002348423, 255219.907499998807907 ], [ 368692.230999998748302, 255221.187199998646975 ], [ 368703.411499999463558, 255233.944299999624491 ], [ 368708.179200001060963, 255242.215999998152256 ], [ 368712.192800000309944, 255244.3597999997437 ], [ 368716.227899998426437, 255243.970600001513958 ], [ 368739.756599999964237, 255227.064599998295307 ], [ 368752.70440000295639, 255221.682199999690056 ], [ 368767.252199999988079, 255217.790399998426437 ], [ 368807.742200002074242, 255197.645799998193979 ], [ 368818.628899998962879, 255150.238800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021600", "MAP": "A9-406-T92", "PARCEL_NAM": "6M-5 & 6L-27A COMB", "ACRE": "0.50", "LONGITUDE": -64.83778007, "LATITUDE": 18.32563605, "OBJECTID_1": 40151, "PARCEL_NO_": "107802021600", "Tax_Legal_": "6M-5&6L-27A NAZARETH No.1 RED HOOK QUARTER", "Name": "THOMAS, FELIX A.", "Address": "2945 Eskridge Rd", "City": "Fairfax", "State": "Virginia", "Zip": 22031, "Country": "United States", "Land_Value": 179500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.681973048000003, "SHAPE_Area": 134.80385077599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368654.964400000870228, 255241.569400001317263 ], [ 368659.046300001442432, 255235.692200001329184 ], [ 368668.095499999821186, 255214.656899999827147 ], [ 368660.865699999034405, 255211.43129999935627 ], [ 368654.964400000870228, 255241.569400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022600", "MAP": "D9-5387-T92", "PARCEL_NAM": "4B-5", "ACRE": null, "LONGITUDE": -64.8623047, "LATITUDE": 18.32559015, "OBJECTID_1": 39232, "PARCEL_NO_": "107701022600", "Tax_Legal_": "4B-5 & 4B-13 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "HERCULES, ELZEVA", "Address": "PO Box 307272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 51500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.88798426100001, "SHAPE_Area": 1130.1776211700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366087.714000001549721, 255214.8581000007689 ], [ 366080.780900001525879, 255176.804499998688698 ], [ 366078.360100001096725, 255176.995799999684095 ], [ 366048.501400001347065, 255179.706700000911951 ], [ 366052.423299998044968, 255192.615600001066923 ], [ 366057.081299997866154, 255213.763000000268221 ], [ 366087.714000001549721, 255214.8581000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022300", "MAP": "D9-5387-T92", "PARCEL_NAM": "4B-8", "ACRE": null, "LONGITUDE": -64.86202157, "LATITUDE": 18.32557863, "OBJECTID_1": 39229, "PARCEL_NO_": "107701022300", "Tax_Legal_": "4B-8 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "KING, WAYNLEY & ROMALIA", "Address": "PO Box 7656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.84786604000001, "SHAPE_Area": 1128.72943448 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366112.20549999922514, 255179.594900000840425 ], [ 366111.433300003409386, 255175.577799998223782 ], [ 366080.780900001525879, 255176.804499998688698 ], [ 366087.714000001549721, 255214.8581000007689 ], [ 366115.13400000333786, 255214.449299998581409 ], [ 366112.20549999922514, 255179.594900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802013400", "MAP": "A9-406-T92", "PARCEL_NAM": "6D-10", "ACRE": ".565", "LONGITUDE": -64.83538606, "LATITUDE": 18.32550944, "OBJECTID_1": 40094, "PARCEL_NO_": "107802013400", "Tax_Legal_": "6D-10 NAZARETH No.1 RED HOOK QUARTER", "Name": "BEVERLY B DREW PETRUS LIVING TRUST", "Address": "PO Box 307187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 179000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.693143744, "SHAPE_Area": 2037.2950733099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368961.699400000274181, 255204.605399999767542 ], [ 368945.623499996960163, 255198.563200000673532 ], [ 368895.673500001430511, 255193.299199998378754 ], [ 368893.232900001108646, 255195.812300000339746 ], [ 368889.152800001204014, 255201.478500001132488 ], [ 368880.961999997496605, 255216.399099998176098 ], [ 368878.48200000077486, 255223.556000001728535 ], [ 368879.201999999582767, 255233.694299999624491 ], [ 368945.447200000286102, 255219.2489 ], [ 368947.063500002026558, 255218.839899998158216 ], [ 368952.770599998533726, 255211.498399998992682 ], [ 368961.699400000274181, 255204.605399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602012800", "MAP": "D9-5063-T91", "PARCEL_NAM": "2-N", "ACRE": "0.33", "LONGITUDE": -64.87372857, "LATITUDE": 18.32551511, "OBJECTID_1": 38322, "PARCEL_NO_": "107602012800", "Tax_Legal_": "2N MARIENDAHL REDHOOK QTR.", "Name": "FERGUSSON, VICTORIA", "Address": "PO Box 502991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39500, "Improved_V": 184300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.037917515, "SHAPE_Area": 1226.76925428 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364861.776699997484684, 255150.362300001084805 ], [ 364835.820000000298023, 255168.303899999707937 ], [ 364858.182800002396107, 255193.60700000077486 ], [ 364861.361299999058247, 255199.121500000357628 ], [ 364884.737199999392033, 255200.157200001180172 ], [ 364876.063699997961521, 255177.076999999582767 ], [ 364861.776699997484684, 255150.362300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021700", "MAP": "A9-405-T92", "PARCEL_NAM": "6L-10", "ACRE": "0.57", "LONGITUDE": -64.8377408, "LATITUDE": 18.32528057, "OBJECTID_1": 40152, "PARCEL_NO_": "107802021700", "Tax_Legal_": "NAZARETH ESTATE 6L-10 RED HOOK QUARTER", "Name": "WIEBRACH, MATHIAS & JEANNE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 199600, "Improved_V": 549800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.269375309, "SHAPE_Area": 2676.1679928600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368686.251599997282028, 255165.831799998879433 ], [ 368642.755699999630451, 255160.198399998247623 ], [ 368638.725900001823902, 255159.9543999992311 ], [ 368623.947999998927116, 255190.864199999719858 ], [ 368623.931800000369549, 255192.763900000602007 ], [ 368643.259900003671646, 255195.666299998760223 ], [ 368660.95380000025034, 255201.08839999884367 ], [ 368675.404500000178814, 255208.594999998807907 ], [ 368681.014499999582767, 255212.651700001209974 ], [ 368690.629100002348423, 255219.907499998807907 ], [ 368699.944499999284744, 255167.632599998265505 ], [ 368686.251599997282028, 255165.831799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802011000", "MAP": "D9-1758-T81", "PARCEL_NAM": "6D-5", "ACRE": null, "LONGITUDE": -64.83603131, "LATITUDE": 18.32544572, "OBJECTID_1": 40072, "PARCEL_NO_": "107802011000", "Tax_Legal_": "6D-5 NAZARETH RED HOOK QTR", "Name": "DOWE, CARLTON", "Address": "PO Box 1143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 213000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.890290126, "SHAPE_Area": 1777.9859528300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368878.678000003099442, 255200.54839999973774 ], [ 368857.906199999153614, 255177.791400000452995 ], [ 368844.91889999806881, 255187.817499998956919 ], [ 368834.38289999961853, 255194.064100001007318 ], [ 368827.09009999781847, 255198.226300001144409 ], [ 368819.799199998378754, 255202.177400000393391 ], [ 368794.695600003004074, 255214.637600000947714 ], [ 368869.635899998247623, 255220.73930000141263 ], [ 368872.936700001358986, 255211.900400001555681 ], [ 368875.384400002658367, 255208.543000001460314 ], [ 368876.2212999984622, 255204.961199998855591 ], [ 368877.846500001847744, 255203.496899999678135 ], [ 368878.678000003099442, 255200.54839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802012500", "MAP": "D9-3430-T86", "PARCEL_NAM": "6D-1-D", "ACRE": null, "LONGITUDE": -64.83399391, "LATITUDE": 18.32521686, "OBJECTID_1": 40085, "PARCEL_NO_": "107802012500", "Tax_Legal_": "6D-1-D NAZARETH RED HOOK QTR.", "Name": "MICHAEL J ALLIET TRUST", "Address": "9053Estate Thomas ROYAL PALMS PROFESSIONAL BLDG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 314100, "Improved_V": 746600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.027333414, "SHAPE_Area": 2050.9934914099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369062.954199999570847, 255150.760800000280142 ], [ 369058.929799996316433, 255149.883499998599291 ], [ 369054.007399998605251, 255159.764600001275539 ], [ 369033.592399999499321, 255189.783900000154972 ], [ 369039.175499998033047, 255197.006799999624491 ], [ 369041.517099998891354, 255206.103000000119209 ], [ 369041.461400002241135, 255212.64640000090003 ], [ 369078.68299999833107, 255197.541299998760223 ], [ 369085.297100000083447, 255178.385899998247623 ], [ 369086.188000001013279, 255168.471799999475479 ], [ 369086.405599996447563, 255162.581799998879433 ], [ 369083.442199997603893, 255158.771800000220537 ], [ 369080.055600002408028, 255156.020100001245737 ], [ 369076.66889999806881, 255154.326799999922514 ], [ 369072.964699998497963, 255152.73930000141263 ], [ 369069.048900000751019, 255151.786800000816584 ], [ 369062.954199999570847, 255150.760800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021100", "MAP": "A9-405-T92", "PARCEL_NAM": "6L-12", "ACRE": "0.58", "LONGITUDE": -64.83881627, "LATITUDE": 18.32521134, "OBJECTID_1": 40146, "PARCEL_NO_": "107802021100", "Tax_Legal_": "6L-12 NAZARETH No.1 RED HOOK QTR", "Name": "YAJAK DEVELOPMENT CORPORATION", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 225000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.71034604499999, "SHAPE_Area": 2367.1581490399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368547.749300003051758, 255143.166600000113249 ], [ 368519.076999999582767, 255195.916499998420477 ], [ 368521.485100001096725, 255197.2027000002563 ], [ 368530.325800001621246, 255200.65260000154376 ], [ 368535.951999999582767, 255202.809599999338388 ], [ 368539.974600002169609, 255203.897999998182058 ], [ 368541.583599999547005, 255204.333299998193979 ], [ 368554.477399997413158, 255205.28319999948144 ], [ 368560.130599997937679, 255204.274000000208616 ], [ 368584.7550999969244, 255153.390900000929832 ], [ 368547.749300003051758, 255143.166600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021200", "MAP": "A9-405-T92", "PARCEL_NAM": "6L-11", "ACRE": "0.53", "LONGITUDE": -64.83837264, "LATITUDE": 18.32523329, "OBJECTID_1": 40147, "PARCEL_NO_": "107802021200", "Tax_Legal_": "6L-11 NAZARETH No.1 RED HOOK QUARTER", "Name": "YAJAK DEVELOPMENT CORPORATION", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 188100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.29162227899999, "SHAPE_Area": 2188.7835024000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368584.7550999969244, 255153.390900000929832 ], [ 368560.130599997937679, 255204.274000000208616 ], [ 368565.781999997794628, 255203.475900001823902 ], [ 368598.108199998736382, 255195.08559999987483 ], [ 368601.338799998164177, 255194.478799998760223 ], [ 368608.601000003516674, 255193.905000001192093 ], [ 368623.931800000369549, 255192.763900000602007 ], [ 368623.947999998927116, 255190.864199999719858 ], [ 368638.725900001823902, 255159.9543999992311 ], [ 368620.995999999344349, 255158.753800000995398 ], [ 368616.91950000077486, 255163.997800000011921 ], [ 368612.891500003635883, 255163.542599998414516 ], [ 368604.036499999463558, 255161.781399998813868 ], [ 368603.251800000667572, 255159.241799999028444 ], [ 368584.7550999969244, 255153.390900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802013800", "MAP": "A9-406-T92", "PARCEL_NAM": "6D-9", "ACRE": "0.52", "LONGITUDE": -64.83516258, "LATITUDE": 18.32526218, "OBJECTID_1": 40098, "PARCEL_NO_": "107802013800", "Tax_Legal_": "6D-9 NAZARETH No.1 RED HOOK QUARTER", "Name": "JAMES, DALE G. & MARIAN P. PRESCOD", "Address": "4604 Brightwood Rd", "City": "Olney", "State": "Maryland", "Zip": 20832, "Country": "United States", "Land_Value": 166000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.667013346, "SHAPE_Area": 1714.5868794 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368972.240800000727177, 255197.725499998778105 ], [ 368949.175999999046326, 255160.173200000077486 ], [ 368932.99040000140667, 255167.006799999624491 ], [ 368915.168799996376038, 255176.571299999952316 ], [ 368905.430100001394749, 255183.879799999296665 ], [ 368902.181500002741814, 255186.597500000149012 ], [ 368895.673500001430511, 255193.299199998378754 ], [ 368945.623499996960163, 255198.563200000673532 ], [ 368961.699400000274181, 255204.605399999767542 ], [ 368969.002899996936321, 255199.176699999719858 ], [ 368972.240800000727177, 255197.725499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022400", "MAP": "D9-5407-T92", "PARCEL_NAM": "4B-11", "ACRE": ".23", "LONGITUDE": -64.86235912, "LATITUDE": 18.32526583, "OBJECTID_1": 39230, "PARCEL_NO_": "107701022400", "Tax_Legal_": "4B-11 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "JARVIS, IVOR G. & PATRICK G", "Address": "P.O. BOX 1904", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.98580469700001, "SHAPE_Area": 856.463560917 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366048.541400000452995, 255175.010299999266863 ], [ 366078.360100001096725, 255176.995799999684095 ], [ 366073.818999998271465, 255142.128199998289347 ], [ 366051.233199998736382, 255142.998799998313189 ], [ 366051.069600000977516, 255162.206999998539686 ], [ 366048.569700002670288, 255171.6858000010252 ], [ 366048.541400000452995, 255175.010299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602012700", "MAP": "D9-5063-T91", "PARCEL_NAM": "2-M", "ACRE": "0.53", "LONGITUDE": -64.87387792, "LATITUDE": 18.32518935, "OBJECTID_1": 38321, "PARCEL_NO_": "107602012700", "Tax_Legal_": "2-M MARIENDAHL REDHOOK QTR.", "Name": "LOUIS, VINCENT", "Address": "6006 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52800, "Improved_V": 136800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.764794268, "SHAPE_Area": 2009.38570071 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364875.7483000010252, 255119.445900000631809 ], [ 364846.683300003409386, 255123.640900000929832 ], [ 364807.0337999984622, 255139.781700000166893 ], [ 364808.606799997389317, 255144.438700001686811 ], [ 364810.210500001907349, 255145.50730000063777 ], [ 364811.797899998724461, 255148.475600000470877 ], [ 364819.801700003445148, 255155.507199998944998 ], [ 364823.014399997889996, 255157.011100001633167 ], [ 364828.620800003409386, 255161.489999998360872 ], [ 364835.820000000298023, 255168.303899999707937 ], [ 364861.776699997484684, 255150.362300001084805 ], [ 364871.470399998128414, 255148.330699998885393 ], [ 364882.940399996936321, 255127.104100000113249 ], [ 364875.7483000010252, 255119.445900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86690066, "LATITUDE": 18.32466739, "OBJECTID_1": 38501, "PARCEL_NO_": "107602041700", "Tax_Legal_": "175 FRYDENHOJ RED HOOK", "Name": "HUGGINS, ADRIEN", "Address": "PO Box 503181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 148200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 423.49200666600001, "SHAPE_Area": 4240.3831378599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365625.923900000751019, 254995.129900000989437 ], [ 365609.021899998188019, 254991.403000000864267 ], [ 365605.715700000524521, 255000.875100001692772 ], [ 365541.383000001311302, 255169.434500001370907 ], [ 365569.569799996912479, 255173.675999999046326 ], [ 365625.923900000751019, 254995.129900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802011800", "MAP": "D9-4993-T90", "PARCEL_NAM": "6D-6", "ACRE": null, "LONGITUDE": -64.83559786, "LATITUDE": 18.32511864, "OBJECTID_1": 40079, "PARCEL_NO_": "107802011800", "Tax_Legal_": "6D-6(REMAINDER)NAZARETH No.1 RED HOOK QUARTER", "Name": "FEDDERSEN DEVELOPMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 182300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.712471792, "SHAPE_Area": 1704.1177332100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368925.789300002157688, 255160.403999999165535 ], [ 368917.911399997770786, 255138.596900001168251 ], [ 368906.578100003302097, 255143.781500000506639 ], [ 368890.370899997651577, 255153.147999998182058 ], [ 368857.906199999153614, 255177.791400000452995 ], [ 368878.678000003099442, 255200.54839999973774 ], [ 368898.229099996387959, 255177.276999998837709 ], [ 368909.587600000202656, 255169.137299999594688 ], [ 368911.207400001585484, 255168.306200001388788 ], [ 368925.789300002157688, 255160.403999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022500", "MAP": "D9-5407-T92", "PARCEL_NAM": "4B-12", "ACRE": ".24", "LONGITUDE": -64.8620804, "LATITUDE": 18.32525049, "OBJECTID_1": 39231, "PARCEL_NO_": "107701022500", "Tax_Legal_": "4B-12 ESTATE FRYDENDAHL RED HOOK QUARTER", "Name": "FRANCIS, JOSEPH, SR., JOSEPH, JR. & MARGARET", "Address": "PO Box 306183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.11832326699999, "SHAPE_Area": 1178.00613832 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366078.360100001096725, 255176.995799999684095 ], [ 366080.780900001525879, 255176.804499998688698 ], [ 366111.433300003409386, 255175.577799998223782 ], [ 366109.858499996364117, 255171.131900001317263 ], [ 366109.921400003135204, 255163.744100000709295 ], [ 366110.756499998271465, 255160.373500000685453 ], [ 366108.502999998629093, 255140.934399999678135 ], [ 366073.818999998271465, 255142.128199998289347 ], [ 366078.360100001096725, 255176.995799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021000", "MAP": "A9-405-T92", "PARCEL_NAM": "6L-13", "ACRE": "0.53", "LONGITUDE": -64.8391666, "LATITUDE": 18.32505478, "OBJECTID_1": 40145, "PARCEL_NO_": "107802021000", "Tax_Legal_": "6L-13 NAZARETH No.1 RED HOOK QUARTER", "Name": "YAJAK DEVELOPMENT CORPORATION", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 188100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.608826948, "SHAPE_Area": 2110.4010644499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368519.076999999582767, 255195.916499998420477 ], [ 368547.749300003051758, 255143.166600000113249 ], [ 368535.681500002741814, 255139.901500001549721 ], [ 368480.108900003135204, 255132.058400001376867 ], [ 368488.866899996995926, 255145.217799998819828 ], [ 368492.812100000679493, 255155.382599998265505 ], [ 368495.994199998676777, 255160.474899999797344 ], [ 368503.11259999871254, 255176.787399999797344 ], [ 368512.660599999129772, 255191.853199999779463 ], [ 368519.076999999582767, 255195.916499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802011900", "MAP": "D9-1919-T81", "PARCEL_NAM": "6D-7", "ACRE": ".78", "LONGITUDE": -64.83454916, "LATITUDE": 18.3251209, "OBJECTID_1": 40080, "PARCEL_NO_": "107802011900", "Tax_Legal_": "6D-7 ESTATE NAZARETH RED HOOK QUARTER", "Name": "HODGE, RHYS S", "Address": "PO Box 6520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 254400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.49129401800002, "SHAPE_Area": 3275.55195796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368998.931800000369549, 255188.23369999974966 ], [ 369012.673299998044968, 255184.335400000214577 ], [ 369025.56530000269413, 255185.496399998664856 ], [ 369027.176100000739098, 255185.720600001513958 ], [ 369033.592399999499321, 255189.783900000154972 ], [ 369054.007399998605251, 255159.764600001275539 ], [ 369058.929799996316433, 255149.883499998599291 ], [ 369051.681999996304512, 255148.768699999898672 ], [ 369042.825099997222424, 255147.218600001186132 ], [ 369028.280900001525879, 255150.688200000673532 ], [ 369015.361900001764297, 255152.693399999290705 ], [ 368983.905000001192093, 255153.702500000596046 ], [ 368964.531900003552437, 255156.076999999582767 ], [ 368949.175999999046326, 255160.173200000077486 ], [ 368972.240800000727177, 255197.725499998778105 ], [ 368981.146200001239777, 255193.57660000026226 ], [ 368998.931800000369549, 255188.23369999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86708589, "LATITUDE": 18.32449159, "OBJECTID_1": 38500, "PARCEL_NO_": "107602041600", "Tax_Legal_": "ESTATE FRYDENHOJ 54 RED HOOK QTR", "Name": "BENJAMIN, CONCHITA & VIVIKAH A", "Address": "45 Est Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 193400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 408.870290748, "SHAPE_Area": 4648.8691782599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365560.358999997377396, 255024.357500001788139 ], [ 365555.325199998915195, 255047.325500000268221 ], [ 365550.291299998760223, 255070.293400000780821 ], [ 365543.623199999332428, 255095.781199999153614 ], [ 365539.413599997758865, 255116.644999999552965 ], [ 365528.548600003123283, 255161.519000001251698 ], [ 365527.691899999976158, 255167.422600001096725 ], [ 365541.383000001311302, 255169.434500001370907 ], [ 365605.715700000524521, 255000.875100001692772 ], [ 365569.48200000077486, 254994.667899999767542 ], [ 365560.358999997377396, 255024.357500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83247797, "LATITUDE": 18.32509719, "OBJECTID_1": 40050, "PARCEL_NO_": "107802010200", "Tax_Legal_": "NAZARETH 6A RED HOOK QTR", "Name": "CABRITE DEV. CO.", "Address": "PO Box 10152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013152, "Country": "United States", "Land_Value": 525700, "Improved_V": 1189000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.35694431, "SHAPE_Area": 1722.5766351300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369189.840499997138977, 255162.166799999773502 ], [ 369214.4358000010252, 255193.064100001007318 ], [ 369220.649700000882149, 255192.159299999475479 ], [ 369239.293799996376038, 255180.701699998229742 ], [ 369247.347999997437, 255181.823100000619888 ], [ 369251.384900003671646, 255181.222899999469519 ], [ 369253.816500000655651, 255179.765099998563528 ], [ 369254.308600001037121, 255178.202199999243021 ], [ 369229.778800003230572, 255143.151200000196695 ], [ 369189.840499997138977, 255162.166799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86765682, "LATITUDE": 18.32517483, "OBJECTID_1": 38490, "PARCEL_NO_": "107602040500", "Tax_Legal_": "FRYDENHOJ ESTATE 48-13 No.3 RED HOOK QTR.", "Name": "TURNBULL, BERNICE A.", "Address": "PO Box 301932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.173181451, "SHAPE_Area": 1353.49101417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365499.925899997353554, 255113.788699999451637 ], [ 365496.706000000238419, 255113.129099998623133 ], [ 365494.306900002062321, 255110.787399999797344 ], [ 365483.398599997162819, 255160.727299999445677 ], [ 365527.691899999976158, 255167.422600001096725 ], [ 365528.548600003123283, 255161.519000001251698 ], [ 365499.925899997353554, 255113.788699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83601083000001, "LATITUDE": 18.32498761, "OBJECTID_1": 40084, "PARCEL_NO_": "107802012400", "Tax_Legal_": "6O(REMAINDER)NAZARETH No.1 RED HOOK QUARTER", "Name": "FEDDERSEN DEVELOPMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 216900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.05327964099999, "SHAPE_Area": 2687.50581732 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368868.924199998378754, 255114.975600000470877 ], [ 368868.524800002574921, 255113.025600001215935 ], [ 368862.571699999272823, 255116.46510000154376 ], [ 368853.840400002896786, 255122.418299999088049 ], [ 368845.241400003433228, 255127.974500000476837 ], [ 368836.510200001299381, 255135.38289999961853 ], [ 368830.689300000667572, 255142.394400000572205 ], [ 368825.000799998641014, 255155.359000001102686 ], [ 368821.825800001621246, 255166.074599999934435 ], [ 368818.386200003325939, 255181.023600000888109 ], [ 368815.211199998855591, 255189.357999999076128 ], [ 368813.226800002157688, 255192.665300000458956 ], [ 368823.942400000989437, 255192.665300000458956 ], [ 368835.848700001835823, 255187.373599998652935 ], [ 368842.992499999701977, 255181.288199998438358 ], [ 368854.501900002360344, 255171.366300001740456 ], [ 368865.482100002467632, 255162.502700001001358 ], [ 368877.785199999809265, 255154.565200001001358 ], [ 368884.796700000762939, 255151.125599998980761 ], [ 368883.160899996757507, 255147.600600000470877 ], [ 368868.924199998378754, 255114.975600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86748084, "LATITUDE": 18.32503533, "OBJECTID_1": 38491, "PARCEL_NO_": "107602040600", "Tax_Legal_": "48-12 FRYDENHOJ NO.3 EAST END QTR", "Name": "ELWYN A. PRINGLE SR. & E A. PRINGLE JR. TRUST", "Address": "PO Box 9513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 127100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.844299396, "SHAPE_Area": 942.01100352499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365539.413599997758865, 255116.644999999552965 ], [ 365505.584499999880791, 255112.146299999207258 ], [ 365499.925899997353554, 255113.788699999451637 ], [ 365528.548600003123283, 255161.519000001251698 ], [ 365539.413599997758865, 255116.644999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86795246, "LATITUDE": 18.32513545, "OBJECTID_1": 38489, "PARCEL_NO_": "107602040400", "Tax_Legal_": "47-2INC POR OF 46&48 FRYDENHOJ", "Name": "REY, JOSELINE C.", "Address": "702 Palm Beach Trace Dr", "City": "West Palm Beach", "State": "Florida", "Zip": 33411, "Country": "United States", "Land_Value": 33200, "Improved_V": 200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.516691759, "SHAPE_Area": 1237.0694784699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365494.306900002062321, 255110.787399999797344 ], [ 365491.891500003635883, 255110.345400001853704 ], [ 365445.61879999935627, 255146.697000000625849 ], [ 365443.937899999320507, 255154.704799998551607 ], [ 365483.398599997162819, 255160.727299999445677 ], [ 365494.306900002062321, 255110.787399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040200", "MAP": null, "PARCEL_NAM": "26", "ACRE": null, "LONGITUDE": -64.86790087, "LATITUDE": 18.32361482, "OBJECTID_1": 38487, "PARCEL_NO_": "107602040200", "Tax_Legal_": "FRYDENHOJ (REM)26,26B&26C REDHOOK QTR.", "Name": "DAAS CORPORATION", "Address": "PO Box 502967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052967, "Country": "United States", "Land_Value": 382900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 980.83736691000001, "SHAPE_Area": 8046.4770449099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365507.789599999785423, 254860.254799999296665 ], [ 365506.455600000917912, 254860.610399998724461 ], [ 365536.996200002729893, 254773.334399998188019 ], [ 365527.0625, 254768.028499998152256 ], [ 365520.028300002217293, 254763.527300000190735 ], [ 365490.966600000858307, 254879.634799998253584 ], [ 365432.9341000020504, 255111.829100001603365 ], [ 365426.987000003457069, 255135.6239 ], [ 365423.005599997937679, 255151.553800001740456 ], [ 365424.60980000346899, 255151.802400000393391 ], [ 365443.937899999320507, 255154.704799998551607 ], [ 365445.61879999935627, 255146.697000000625849 ], [ 365456.446199998259544, 255106.255699999630451 ], [ 365456.465899996459484, 255103.933800000697374 ], [ 365462.297100000083447, 255082.027800001204014 ], [ 365471.441699996590614, 255049.805300001055002 ], [ 365478.10980000346899, 255024.317600000649691 ], [ 365489.752400003373623, 254982.827399998903275 ], [ 365489.835100002586842, 254973.117800001055002 ], [ 365492.300800003111362, 254967.649500001221895 ], [ 365494.746699996292591, 254964.503199998289347 ], [ 365511.33330000191927, 254910.598999999463558 ], [ 365528.665100000798702, 254863.877999998629093 ], [ 365529.518100000917912, 254858.396600000560284 ], [ 365531.69990000128746, 254851.79280000180006 ], [ 365524.219800002872944, 254854.440099999308586 ], [ 365506.262500002980232, 254911.091099999845028 ], [ 365494.091600000858307, 254908.339400000870228 ], [ 365507.789599999785423, 254860.254799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602043100", "MAP": "A9-363-T89", "PARCEL_NAM": "27A", "ACRE": ".253", "LONGITUDE": -64.86857656, "LATITUDE": 18.32510044, "OBJECTID_1": 38511, "PARCEL_NO_": "107602043100", "Tax_Legal_": "ESTATE FRYDENHOJ 27A RED HOOK QTR.", "Name": "BENJAMIN JR., CLIFFORD & OTHERS", "Address": "P.O. BOX 2144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.80785401, "SHAPE_Area": 1013.59426386 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365409.472699999809265, 255123.733399998396635 ], [ 365389.938400000333786, 255120.728500001132488 ], [ 365383.606600001454353, 255145.629399999976158 ], [ 365394.812200002372265, 255147.336599998176098 ], [ 365404.477099999785423, 255148.682300001382828 ], [ 365423.005599997937679, 255151.553800001740456 ], [ 365426.987000003457069, 255135.6239 ], [ 365429.200300000607967, 255126.768100000917912 ], [ 365409.472699999809265, 255123.733399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107901010100", "MAP": "D9-1744-T81", "PARCEL_NAM": "6F", "ACRE": "1.223", "LONGITUDE": -64.8322128, "LATITUDE": 18.32480572, "OBJECTID_1": 41824, "PARCEL_NO_": "107901010100", "Tax_Legal_": "NAZARETH ESTATE 6-F No.1 RED HOOK QTR.", "Name": "ANDREW J SMITH REVOCABLE TRUST", "Address": "6501 RED HOOK PMB 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 658300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.23100157499999, "SHAPE_Area": 3997.7149158500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369183.787699997425079, 255165.048700001090765 ], [ 369229.778800003230572, 255143.151200000196695 ], [ 369254.308600001037121, 255178.202199999243021 ], [ 369255.473999999463558, 255174.501400001347065 ], [ 369259.527199998497963, 255172.001400001347065 ], [ 369262.732600003480911, 255174.349700000137091 ], [ 369267.574100002646446, 255173.967099998146296 ], [ 369273.292000003159046, 255165.359099999070168 ], [ 369277.348800003528595, 255162.436999998986721 ], [ 369278.181999996304512, 255159.277399998158216 ], [ 369275.781099997460842, 255157.146800000220537 ], [ 369270.142300002276897, 255156.467399999499321 ], [ 369269.368400000035763, 255152.661299999803305 ], [ 369270.99719999730587, 255150.77479999884963 ], [ 369274.209799997508526, 255152.278799999505281 ], [ 369276.632399998605251, 255151.876400001347065 ], [ 369279.879199996590614, 255149.369899999350309 ], [ 369282.290899999439716, 255150.234000001102686 ], [ 369285.485600002110004, 255153.848700001835823 ], [ 369287.10360000282526, 255153.228700000792742 ], [ 369289.617899999022484, 255142.061299998313189 ], [ 369290.526699997484684, 255130.036400001496077 ], [ 369287.470499999821186, 255110.168600000441074 ], [ 369240.752899996936321, 255104.08669999986887 ], [ 369235.83049999922514, 255113.967799998819828 ], [ 369229.365599997341633, 255115.603700000792742 ], [ 369219.630500003695488, 255122.490100000053644 ], [ 369213.997100003063679, 255121.177400000393391 ], [ 369210.721500001847744, 255127.061200000345707 ], [ 369209.88459999859333, 255130.64299999922514 ], [ 369204.989200003445148, 255137.357900001108646 ], [ 369199.2550999969244, 255147.865600001066923 ], [ 369183.787699997425079, 255165.048700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050800", "MAP": "D9-6881-T001", "PARCEL_NAM": "133", "ACRE": "6.80", "LONGITUDE": -64.86853835, "LATITUDE": 18.32294962, "OBJECTID_1": 39058, "PARCEL_NO_": "107604050800", "Tax_Legal_": "FRYDENHOJ ESTATE 133 RED HOOK QTR", "Name": "LANG, TAMARA", "Address": "P.O.BOX 2664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 366600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1102.9838067000001, "SHAPE_Area": 28614.402350699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365487.42119999974966, 254688.5439000017941 ], [ 365495.890699997544289, 254640.906100001186132 ], [ 365469.738099999725819, 254681.85530000180006 ], [ 365458.566699996590614, 254698.98759999871254 ], [ 365454.216700002551079, 254705.370700001716614 ], [ 365445.225000001490116, 254719.651500001549721 ], [ 365423.976800002157688, 254752.830400001257658 ], [ 365408.453599996864796, 254776.55689999833703 ], [ 365394.562899999320507, 254797.974800001829863 ], [ 365379.034400001168251, 254822.334499999880791 ], [ 365370.046300001442432, 254836.19310000166297 ], [ 365356.972699999809265, 254856.351100001484156 ], [ 365352.885300002992153, 254862.861600000411272 ], [ 365357.56139999628067, 254881.898200001567602 ], [ 365364.568199999630451, 254911.297600001096725 ], [ 365375.507799997925758, 254952.339299999177456 ], [ 365373.810599997639656, 254962.246800001710653 ], [ 365372.118900001049042, 254971.521099999547005 ], [ 365366.998700000345707, 255004.620799999684095 ], [ 365356.806900002062321, 255065.121300000697374 ], [ 365356.756499998271465, 255071.031500000506639 ], [ 365355.892700001597404, 255077.779399998486042 ], [ 365353.399999998509884, 255086.413800001144409 ], [ 365346.492799997329712, 255139.975099999457598 ], [ 365383.606600001454353, 255145.629399999976158 ], [ 365466.006399996578693, 254821.580099999904633 ], [ 365476.419100001454353, 254780.630899999290705 ], [ 365490.328199997544289, 254725.93129999935627 ], [ 365487.266599997878075, 254706.696699999272823 ], [ 365487.42119999974966, 254688.5439000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107801020100", "MAP": "F9-946-T62", "PARCEL_NAM": "9C", "ACRE": "1.75", "LONGITUDE": -64.84791261, "LATITUDE": 18.32476975, "OBJECTID_1": 40038, "PARCEL_NO_": "107801020100", "Tax_Legal_": "9C NAZARETH RED HOOK QTR", "Name": "JACK ROCK B A C LLC", "Address": "11 Times Sq", "City": "New York", "State": "New York", "Zip": 10036, "Country": "United States", "Land_Value": 530900, "Improved_V": 377200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 329.29846215399999, "SHAPE_Area": 7495.16896851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367646.416000001132488, 255121.224199999123812 ], [ 367630.435400001704693, 255103.994800001382828 ], [ 367618.473800003528595, 255088.276000000536442 ], [ 367587.241599999368191, 255062.900299999862909 ], [ 367556.432700000703335, 255082.490899998694658 ], [ 367553.187600001692772, 255084.786400001496077 ], [ 367528.015699997544289, 255105.267499998211861 ], [ 367535.974600002169609, 255117.576099999248981 ], [ 367545.556800000369549, 255128.631400000303984 ], [ 367546.346900001168251, 255130.53770000115037 ], [ 367560.732900001108646, 255145.643100000917912 ], [ 367564.73929999768734, 255148.63120000064373 ], [ 367571.146600000560284, 255153.749800000339746 ], [ 367582.386399999260902, 255159.541400000452995 ], [ 367591.228900000452995, 255162.780099999159575 ], [ 367602.497500002384186, 255165.194400001317263 ], [ 367607.328199997544289, 255166.078299999237061 ], [ 367619.428300000727177, 255165.544100001454353 ], [ 367628.321099996566772, 255162.872600000351667 ], [ 367634.800399996340275, 255159.548200000077486 ], [ 367640.602799996733665, 255141.019400000572205 ], [ 367645.537799999117851, 255129.660799998790026 ], [ 367646.416000001132488, 255121.224199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86802513000001, "LATITUDE": 18.32495307, "OBJECTID_1": 38488, "PARCEL_NO_": "107602040300", "Tax_Legal_": "FRYDENHOJ 46-8 & POR OF 47 RED HOOK QTR", "Name": "BASS, VANZELL A. & BONNIE C", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 154100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.032627975, "SHAPE_Area": 780.05791903500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365445.61879999935627, 255146.697000000625849 ], [ 365491.891500003635883, 255110.345400001853704 ], [ 365456.465899996459484, 255103.933800000697374 ], [ 365456.446199998259544, 255106.255699999630451 ], [ 365445.61879999935627, 255146.697000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86413442, "LATITUDE": 18.32478255, "OBJECTID_1": 39210, "PARCEL_NO_": "107701020200", "Tax_Legal_": "17 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "HARRIGAN, KENNETH", "Address": "PO Box 7323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 126400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.05116471700001, "SHAPE_Area": 5459.0165049300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365917.75620000064373, 255092.538499999791384 ], [ 365831.336999997496605, 255053.484900001436472 ], [ 365831.616999998688698, 255081.673000000417233 ], [ 365830.165399998426437, 255094.322000000625849 ], [ 365829.436599999666214, 255100.672899998724461 ], [ 365829.329899996519089, 255109.319400001317263 ], [ 365921.201700001955032, 255160.527800001204014 ], [ 365920.466399997472763, 255146.018899999558926 ], [ 365918.957000002264977, 255116.233500000089407 ], [ 365917.75620000064373, 255092.538499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602012600", "MAP": "D9-5063-T91", "PARCEL_NAM": "2-L", "ACRE": "0.38", "LONGITUDE": -64.87380351, "LATITUDE": 18.32490888, "OBJECTID_1": 38320, "PARCEL_NO_": "107602012600", "Tax_Legal_": "MARIENDAHL ESTATE 2-L REDHOOK QTR.", "Name": "ROBERTS, MCKEEVER & DELMAR JOHNSON", "Address": "6030 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45400, "Improved_V": 96600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.364502821, "SHAPE_Area": 1340.9365304600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364879.013899996876717, 255086.497499998658895 ], [ 364861.737099997699261, 255080.1064000017941 ], [ 364857.433300003409386, 255092.276000000536442 ], [ 364857.417099997401237, 255094.175700001418591 ], [ 364855.786499999463558, 255096.273299999535084 ], [ 364854.953199997544289, 255099.432900000363588 ], [ 364850.057800002396107, 255106.147799998521805 ], [ 364841.935400001704693, 255113.047400001436472 ], [ 364809.517399996519089, 255132.2027000002563 ], [ 364807.066100001335144, 255135.982299998402596 ], [ 364807.0337999984622, 255139.781700000166893 ], [ 364846.683300003409386, 255123.640900000929832 ], [ 364875.7483000010252, 255119.445900000631809 ], [ 364879.013899996876717, 255086.497499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802013100", "MAP": "D9-4917-T90", "PARCEL_NAM": "6D-6-B", "ACRE": ".69", "LONGITUDE": -64.83373121, "LATITUDE": 18.32479147, "OBJECTID_1": 40091, "PARCEL_NO_": "107802013100", "Tax_Legal_": "6D-6-B ESTATE NAZARETH NO.1 REDHOOK QTR", "Name": "STRANBERG, AARON CHARLES AND MARIA TERESA STRANBERG", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 234200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.6189815, "SHAPE_Area": 2398.3942906900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369122.632100000977516, 255149.982700001448393 ], [ 369093.210299998521805, 255101.401500001549721 ], [ 369080.2787000015378, 255104.884199999272823 ], [ 369061.690399996936321, 255109.79839999973774 ], [ 369063.836000002920628, 255141.902100000530481 ], [ 369071.87389999628067, 255144.923200000077486 ], [ 369080.70380000025034, 255149.639600001275539 ], [ 369089.504900000989437, 255157.7331000007689 ], [ 369092.710400000214577, 255160.081399999558926 ], [ 369094.292499996721745, 255163.68299999833107 ], [ 369095.077200002968311, 255166.222500000149012 ], [ 369095.849299997091293, 255170.239599999040365 ], [ 369095.014300003647804, 255173.610300000756979 ], [ 369122.632100000977516, 255149.982700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86923691, "LATITUDE": 18.32492915, "OBJECTID_1": 38381, "PARCEL_NO_": "107602021200", "Tax_Legal_": "1-1 EST FRYDENHOJ RED HOOK QTR", "Name": "JEFFREY JOSEPH GRIMM", "Address": "PO Box 502914", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052914, "Country": "United States", "Land_Value": 28800, "Improved_V": 140700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.625844223, "SHAPE_Area": 1147.02787964 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365353.399999998509884, 255086.413800001144409 ], [ 365346.883000001311302, 255094.171000000089407 ], [ 365325.069399997591972, 255099.058699999004602 ], [ 365319.916799999773502, 255135.957899998873472 ], [ 365346.492799997329712, 255139.975099999457598 ], [ 365353.399999998509884, 255086.413800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802022000", "MAP": "A9-405-T92", "PARCEL_NAM": "6L-9", "ACRE": "0.51", "LONGITUDE": -64.83783251, "LATITUDE": 18.32493078, "OBJECTID_1": 40155, "PARCEL_NO_": "107802022000", "Tax_Legal_": "6M-7 ESTATE NAZARETH No.1 RED HOOK QUARTER", "Name": "CABRITA GRAND ESTATES LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 239500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.82118568499999, "SHAPE_Area": 1612.54691832 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368647.897399999201298, 255124.565699998289347 ], [ 368640.550700001418591, 255135.060300000011921 ], [ 368625.887800000607967, 255152.460999999195337 ], [ 368620.995999999344349, 255158.753800000995398 ], [ 368638.725900001823902, 255159.9543999992311 ], [ 368642.755699999630451, 255160.198399998247623 ], [ 368686.251599997282028, 255165.831799998879433 ], [ 368687.104699999094009, 255160.350299999117851 ], [ 368672.661200001835823, 255151.999400001019239 ], [ 368669.540200002491474, 255139.730500001460314 ], [ 368678.434799998998642, 255136.848000001162291 ], [ 368680.97240000218153, 255122.936599999666214 ], [ 368672.894900001585484, 255124.559200000017881 ], [ 368647.897399999201298, 255124.565699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022700", "MAP": "D9-5518-T93", "PARCEL_NAM": "4B-14", "ACRE": "0.35", "LONGITUDE": -64.86222018, "LATITUDE": 18.32499425, "OBJECTID_1": 39233, "PARCEL_NO_": "107701022700", "Tax_Legal_": "FRYDENHOJ ESTATE 4B-14 RED HOOK QTR.", "Name": "FRANCIS, JOSEPH & MARGARET", "Address": "PO Box 306183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 181600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.57488470800001, "SHAPE_Area": 1368.29653394 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366059.499600000679493, 255119.212900001555681 ], [ 366047.399499997496605, 255119.74720000103116 ], [ 366051.233199998736382, 255142.998799998313189 ], [ 366073.818999998271465, 255142.128199998289347 ], [ 366108.502999998629093, 255140.934399999678135 ], [ 366106.285499997437, 255117.273800000548363 ], [ 366059.499600000679493, 255119.212900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86947624, "LATITUDE": 18.32493647, "OBJECTID_1": 38380, "PARCEL_NO_": "107602021100", "Tax_Legal_": "1-2 FRYDENHOJ RED HOOK QTR", "Name": "SMITH, PEGGY Y", "Address": "6247 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 135500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.953369337, "SHAPE_Area": 779.89178970199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365325.069399997591972, 255099.058699999004602 ], [ 365302.476400002837181, 255100.773600000888109 ], [ 365297.366999998688698, 255132.606899999082088 ], [ 365319.916799999773502, 255135.957899998873472 ], [ 365325.069399997591972, 255099.058699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702015700", "MAP": "D9-7100-T002", "PARCEL_NAM": "100 REM", "ACRE": "0.82", "LONGITUDE": -64.85390058, "LATITUDE": 18.32425969, "OBJECTID_1": 39535, "PARCEL_NO_": "107702015700", "Tax_Legal_": "NAZARETH 100 REMAINDER OF TRACK #2 No.2 RED HOOK QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.44384378699999, "SHAPE_Area": 3936.9641427299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367009.474899999797344, 255064.488400001078844 ], [ 367003.453400000929832, 255060.233199998736382 ], [ 366994.623499996960163, 255055.516800001263618 ], [ 366988.990099996328354, 255054.204199999570847 ], [ 366985.793600000441074, 255050.800500001758337 ], [ 366985.012500002980232, 255047.838799998164177 ], [ 366981.006099998950958, 255044.850699998438358 ], [ 366977.782600000500679, 255044.613200001418591 ], [ 366975.34570000320673, 255046.704199999570847 ], [ 366974.519599996507168, 255049.019499998539686 ], [ 366969.685300000011921, 255048.557700000703335 ], [ 366963.254600003361702, 255046.183100000023842 ], [ 366953.625600002706051, 255040.615800000727177 ], [ 366943.229900002479553, 255030.398299999535084 ], [ 366938.462099999189377, 255022.126600001007318 ], [ 366931.230499997735023, 255019.112100001424551 ], [ 366922.416799999773502, 255012.496100001037121 ], [ 366916.031000003218651, 255004.844399999827147 ], [ 366912.857900001108646, 254998.696699999272823 ], [ 366895.774300001561642, 255016.288800001144409 ], [ 366925.766099996864796, 255050.424199998378754 ], [ 366932.551100000739098, 255045.030999999493361 ], [ 366942.364100001752377, 255050.818199999630451 ], [ 366949.409299999475479, 255063.902100000530481 ], [ 366942.171999998390675, 255069.694099999964237 ], [ 366956.48759999871254, 255083.280200000852346 ], [ 366995.452200002968311, 255108.133900001645088 ], [ 367009.474899999797344, 255064.488400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040100", "MAP": "A9-363-T89", "PARCEL_NAM": "27", "ACRE": "3.419", "LONGITUDE": -64.86813909, "LATITUDE": 18.32338812, "OBJECTID_1": 38486, "PARCEL_NO_": "107602040100", "Tax_Legal_": "FRYDENHOJ ESTATE REM.OF 27 RED HOOK QTR", "Name": "DAAS CORPORATION", "Address": "PO Box 502967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052967, "Country": "United States", "Land_Value": 389400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 840.58060377200002, "SHAPE_Area": 14228.7259548 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365490.966600000858307, 254879.634799998253584 ], [ 365520.028300002217293, 254763.527300000190735 ], [ 365515.032499998807907, 254760.330600000917912 ], [ 365509.41889999806881, 254756.696100000292063 ], [ 365508.45440000295639, 254755.668999999761581 ], [ 365504.198499999940395, 254777.085700001567602 ], [ 365502.412399999797344, 254776.395799998193979 ], [ 365490.188199996948242, 254771.673900000751019 ], [ 365479.724500000476837, 254767.631999999284744 ], [ 365476.419100001454353, 254780.630899999290705 ], [ 365466.006399996578693, 254821.580099999904633 ], [ 365389.938400000333786, 255120.728500001132488 ], [ 365409.472699999809265, 255123.733399998396635 ], [ 365429.200300000607967, 255126.768100000917912 ], [ 365432.9341000020504, 255111.829100001603365 ], [ 365490.966600000858307, 254879.634799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802011700", "MAP": "D9-4937-T90", "PARCEL_NAM": null, "ACRE": ".533", "LONGITUDE": -64.83287096, "LATITUDE": 18.32439559, "OBJECTID_1": 40078, "PARCEL_NO_": "107802011700", "Tax_Legal_": "6D-2 ESTATE NAZARETH No.1 REDHOOK QUARTER", "Name": "ANDREW J SMITH REVOCABLE TRUST", "Address": "6501 RED HOOK PMB 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 227600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.77455065699999, "SHAPE_Area": 2306.1872778400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369155.238799996674061, 255108.664200000464916 ], [ 369205.616300001740456, 255115.434200000017881 ], [ 369209.306699998676777, 255103.829300001263618 ], [ 369211.052400000393391, 255088.222699999809265 ], [ 369206.27929999679327, 255080.584300000220537 ], [ 369199.888099998235703, 255073.565900001674891 ], [ 369189.452799998223782, 255067.991999998688698 ], [ 369181.400499999523163, 255066.659600000828505 ], [ 369166.879600003361702, 255067.385099999606609 ], [ 369153.141800001263618, 255070.861299999058247 ], [ 369155.238799996674061, 255108.664200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86981278, "LATITUDE": 18.32491815, "OBJECTID_1": 38379, "PARCEL_NO_": "107602021000", "Tax_Legal_": "FRYDENHOJ 1-3 RED HOOK QTR", "Name": "BUNTIN, S. , C. , A. &", "Address": "PO Box 30231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.18871207699999, "SHAPE_Area": 1434.33670972 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365302.476400002837181, 255100.773600000888109 ], [ 365288.765500001609325, 255101.083599999547005 ], [ 365256.523800000548363, 255099.553100001066923 ], [ 365252.47070000320673, 255102.053100001066923 ], [ 365247.435000002384186, 255125.232200000435114 ], [ 365297.366999998688698, 255132.606899999082088 ], [ 365302.476400002837181, 255100.773600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014700", "MAP": "F9-839-T61", "PARCEL_NAM": "112", "ACRE": ".03", "LONGITUDE": -64.86474425, "LATITUDE": 18.32498358, "OBJECTID_1": 39165, "PARCEL_NO_": "107701014700", "Tax_Legal_": "112 EST FRYDENHOJ RED HOOK QTR", "Name": "SMART, ROY V. & SKELTON, R", "Address": "PO Box 7132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41100, "Improved_V": 81800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.550291400699997, "SHAPE_Area": 230.18006644499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365820.43469999730587, 255118.175900001078844 ], [ 365805.498999997973442, 255118.561299998313189 ], [ 365804.74040000140667, 255133.336599998176098 ], [ 365804.631499998271465, 255135.456900000572205 ], [ 365804.532200001180172, 255137.391100000590086 ], [ 365816.507600001990795, 255134.000900000333786 ], [ 365818.188426779874135, 255127.869217484723777 ], [ 365819.646999999880791, 255121.680900000035763 ], [ 365820.43469999730587, 255118.175900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802013900", "MAP": "D9-4918-T90", "PARCEL_NAM": "6D-6-D", "ACRE": ".50", "LONGITUDE": -64.83497072, "LATITUDE": 18.32484346, "OBJECTID_1": 40099, "PARCEL_NO_": "107802013900", "Tax_Legal_": "6D-6-D NAZARETH No.1 RED HOOK QUARTER", "Name": "CABRITA POINT ASSOCIATES LLC", "Address": "134 Weingart Rd", "City": "Harwinton", "State": "Connecticut", "Zip": 6791, "Country": "United States", "Land_Value": 179500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.38540815499999, "SHAPE_Area": 1722.2476084 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368996.080600000917912, 255144.30290000140667 ], [ 368997.097300000488758, 255119.613299999386072 ], [ 368949.451099999248981, 255127.878100000321865 ], [ 368922.763700000941753, 255136.947799999266863 ], [ 368917.911399997770786, 255138.596900001168251 ], [ 368925.789300002157688, 255160.403999999165535 ], [ 368933.883000001311302, 255156.881599999964237 ], [ 368939.546999998390675, 255154.605999998748302 ], [ 368955.725400000810623, 255148.616700001060963 ], [ 368974.297600001096725, 255145.602299999445677 ], [ 368996.080600000917912, 255144.30290000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107602025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87074834000001, "LATITUDE": 18.32381625, "OBJECTID_1": 38426, "PARCEL_NO_": "107602025800", "Tax_Legal_": "EST.FRYDENHOJ 1-81 REDHOOK QTR.", "Name": "CASSEUS, ANTOINETTE", "Address": "6014, 1-81 ESTATE FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32600, "Improved_V": 150000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3636.9620986999998, "SHAPE_Area": 16588.102056600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365252.47070000320673, 255102.053100001066923 ], [ 365256.523800000548363, 255099.553100001066923 ], [ 365288.765500001609325, 255101.083599999547005 ], [ 365302.476400002837181, 255100.773600000888109 ], [ 365325.069399997591972, 255099.058699999004602 ], [ 365346.883000001311302, 255094.171000000089407 ], [ 365353.399999998509884, 255086.413800001144409 ], [ 365355.892700001597404, 255077.779399998486042 ], [ 365356.756499998271465, 255071.031500000506639 ], [ 365356.806900002062321, 255065.121300000697374 ], [ 365356.072499997913837, 255056.671500001102686 ], [ 365354.501199997961521, 255051.80350000038743 ], [ 365350.525399997830391, 255045.227099999785423 ], [ 365345.718099996447563, 255041.59910000115633 ], [ 365336.872000001370907, 255038.782499998807907 ], [ 365327.998999997973442, 255039.132100000977516 ], [ 365321.525100000202656, 255041.823300000280142 ], [ 365316.667499996721745, 255044.105599999427795 ], [ 365306.059500001370907, 255058.795299999415874 ], [ 365303.61540000140667, 255061.730599999427795 ], [ 365299.493900001049042, 255072.251600001007318 ], [ 365296.191399998962879, 255081.301600001752377 ], [ 365293.711300000548363, 255088.458399999886751 ], [ 365291.265399999916553, 255091.604800000786781 ], [ 365287.219400003552437, 255093.260499998927116 ], [ 365267.068800002336502, 255092.251200001686811 ], [ 365253.368699997663498, 255091.294700000435114 ], [ 365249.353299997746944, 255089.361999999731779 ], [ 365247.812600001692772, 255080.905600000172853 ], [ 365254.419600002467632, 255062.594500001519918 ], [ 365255.24210000038147, 255060.701400000602007 ], [ 365262.619400002062321, 255046.618500001728535 ], [ 365271.589500002563, 255034.870700001716614 ], [ 365275.666000001132488, 255029.6266999989748 ], [ 365285.417300000786781, 255020.840599998831749 ], [ 365291.101000003516674, 255016.243099998682737 ], [ 365305.71000000089407, 255005.174699999392033 ], [ 365317.068499997258186, 254997.035000000149012 ], [ 365333.270199999213219, 254988.301699999719858 ], [ 365342.181000001728535, 254983.519499998539686 ], [ 365355.107199996709824, 254980.669900000095367 ], [ 365359.961300000548363, 254978.809799998998642 ], [ 365372.118900001049042, 254971.521099999547005 ], [ 365373.810599997639656, 254962.246800001710653 ], [ 365344.909299999475479, 254947.23369999974966 ], [ 365310.431999996304512, 254924.153400000184774 ], [ 365307.228399999439716, 254921.594099998474121 ], [ 365300.021899998188019, 254915.624499998986721 ], [ 365286.41889999806881, 254903.26969999819994 ], [ 365253.529100000858307, 254883.157699998468161 ], [ 365214.941200003027916, 254869.331900000572205 ], [ 365196.475100003182888, 254859.892700001597404 ], [ 365189.256099998950958, 254855.400600001215935 ], [ 365186.057800002396107, 254852.208000000566244 ], [ 365184.452399998903275, 254851.350499998778105 ], [ 365173.214299999177456, 254845.347899999469519 ], [ 365149.940200001001358, 254834.7162000015378 ], [ 365138.353200003504753, 254832.167399998754263 ], [ 365137.876900002360344, 254829.151099998503923 ], [ 365138.988200001418591, 254821.372400000691414 ], [ 365140.601000003516674, 254815.459699999541044 ], [ 365137.236000001430511, 254809.167599998414516 ], [ 365131.51799999922514, 254817.775600001215935 ], [ 365133.805699996650219, 254833.204100001603365 ], [ 365119.322700001299381, 254829.497000001370907 ], [ 365113.626299999654293, 254835.57209999859333 ], [ 365133.249899998307228, 254837.924199998378754 ], [ 365155.078000001609325, 254844.274300001561642 ], [ 365155.854489953664597, 254846.291330370004289 ], [ 365156.301615917414892, 254848.405905155959772 ], [ 365156.4080837497022, 254850.564611424400937 ], [ 365156.171204134821892, 254852.71292150465888 ], [ 365155.596960514725652, 254854.796570327656809 ], [ 365154.699857950792648, 254856.762926130322739 ], [ 365153.502556734485552, 254858.562319903314346 ], [ 365152.035300001502037, 254860.149300001561642 ], [ 365133.878100000321865, 254864.734299998730421 ], [ 365130.289200000464916, 254867.372499998658895 ], [ 365127.850400000810623, 254869.674600001424551 ], [ 365124.580200001597404, 254874.925200000405312 ], [ 365122.123499996960163, 254879.337999999523163 ], [ 365107.464299999177456, 254896.316599998623133 ], [ 365097.693199999630451, 254907.424600001424551 ], [ 365092.788800001144409, 254915.194899998605251 ], [ 365085.461900003254414, 254923.367600001394749 ], [ 365080.555699996650219, 254931.348999999463558 ], [ 365077.283600002527237, 254936.810699999332428 ], [ 365073.990099996328354, 254944.805300001055002 ], [ 365070.662299998104572, 254956.810400001704693 ], [ 365067.39750000089407, 254961.427700001746416 ], [ 365064.134499996900558, 254965.833999998867512 ], [ 365054.390399999916553, 254973.775800000876188 ], [ 365052.766999997198582, 254975.028999999165535 ], [ 365038.978799998760223, 254984.415399998426437 ], [ 365030.073399998247623, 254988.564399998635054 ], [ 365026.835500001907349, 254990.015500001609325 ], [ 365011.465199999511242, 254995.800400000065565 ], [ 365000.140900000929832, 254999.929499998688698 ], [ 364983.150799997150898, 255006.545499999076128 ], [ 364961.30120000243187, 255015.654800001531839 ], [ 364958.063400000333786, 255017.105900000780821 ], [ 364952.397600002586842, 255019.592700000852346 ], [ 364941.841899998486042, 255028.161100000143051 ], [ 364936.95719999819994, 255033.609600000083447 ], [ 364935.330200001597404, 255035.285000000149012 ], [ 364933.697800002992153, 255037.593699999153614 ], [ 364932.05460000038147, 255041.168800000101328 ], [ 364926.333099998533726, 255050.199000000953674 ], [ 364920.620600000023842, 255058.173799999058247 ], [ 364930.280199997127056, 255060.152699999511242 ], [ 364934.356700003147125, 255054.908700000494719 ], [ 364941.723200000822544, 255042.092300001531839 ], [ 364951.488799996674061, 255031.617600001394749 ], [ 364957.977099999785423, 255027.237700000405312 ], [ 364987.108599998056889, 255015.232700001448393 ], [ 365005.718599997460842, 255007.785700000822544 ], [ 365017.854599997401237, 255003.029800001531839 ], [ 365022.690700002014637, 255003.280499998480082 ], [ 365024.301500000059605, 255003.504799999296665 ], [ 365026.684500001370907, 255007.746199999004602 ], [ 365025.046700000762939, 255010.688099998980761 ], [ 365021.726099997758865, 255021.848799999803305 ], [ 365019.20830000191927, 255033.438400000333786 ], [ 365015.963299997150898, 255035.733800001442432 ], [ 365014.320100001990795, 255039.309000000357628 ], [ 365014.257100000977516, 255046.696800000965595 ], [ 365017.44820000231266, 255050.733600001782179 ], [ 365019.858199998736382, 255051.808800000697374 ], [ 365021.465400002896786, 255052.455299999564886 ], [ 365027.100599996745586, 255053.55689999833703 ], [ 365031.963600002229214, 255050.641399998217821 ], [ 365053.710699997842312, 255053.5636 ], [ 365065.791000001132488, 255055.351199999451637 ], [ 365081.089400000870228, 255058.009500000625849 ], [ 365105.237400002777576, 255063.062300000339746 ], [ 365112.476199999451637, 255065.232500001788139 ], [ 365124.52589999884367, 255070.608399998396635 ], [ 365134.984600000083447, 255073.438299998641014 ], [ 365137.398199997842312, 255074.091299999505281 ], [ 365149.474899999797344, 255076.301100000739098 ], [ 365161.57320000231266, 255075.977899998426437 ], [ 365172.859700001776218, 255076.281399998813868 ], [ 365182.533699996769428, 255076.571600001305342 ], [ 365184.144500002264977, 255076.795899998396635 ], [ 365193.793300002813339, 255080.041299998760223 ], [ 365221.130599997937679, 255089.342099998146296 ], [ 365242.022799998521805, 255097.956799998879433 ], [ 365244.423699997365475, 255100.087400000542402 ], [ 365241.798000000417233, 255124.341699998825788 ], [ 365247.435000002384186, 255125.232200000435114 ], [ 365252.47070000320673, 255102.053100001066923 ] ], [ [ 365217.995200000703335, 255078.761700000613928 ], [ 365218.022200003266335, 255075.595499999821186 ], [ 365217.327399998903275, 255062.502099998295307 ], [ 365215.899999998509884, 255040.747699998319149 ], [ 365213.736400000751019, 255010.754700001329184 ], [ 365210.611800000071526, 254998.907900001853704 ], [ 365209.818099997937679, 254997.423799999058247 ], [ 365205.820699997246265, 254993.380300000309944 ], [ 365200.232299998402596, 254986.790600001811981 ], [ 365193.013199999928474, 254982.298599999397993 ], [ 365180.157200001180172, 254976.916000001132488 ], [ 365168.103900000452995, 254971.962200000882149 ], [ 365156.037900000810623, 254968.486000001430511 ], [ 365150.406300000846386, 254966.962200000882149 ], [ 365144.758599996566772, 254967.338199999183416 ], [ 365139.904500000178814, 254969.198300000280142 ], [ 365135.846000000834465, 254972.331500001251698 ], [ 365127.682099997997284, 254984.085900001227856 ], [ 365118.699400000274181, 254997.311299998313189 ], [ 365114.651699997484684, 254999.177999999374151 ], [ 365111.424599997699261, 254999.362700000405312 ], [ 365087.319799996912479, 254989.243999999016523 ], [ 365074.380999997258186, 254993.571100000292063 ], [ 365103.307499997317791, 255005.629099998623133 ], [ 365105.708499997854233, 255007.75959999859333 ], [ 365106.498599998652935, 255009.666000001132488 ], [ 365105.651000000536442, 255014.514199998229742 ], [ 365103.194300003349781, 255018.927000001072884 ], [ 365099.929499998688698, 255023.544399999082088 ], [ 365095.822400003671646, 255032.3766999989748 ], [ 365092.527000002563, 255040.582400001585484 ], [ 365090.871200002729893, 255045.635099999606609 ], [ 365090.027099996805191, 255050.061099998652935 ], [ 365061.044799998402596, 255044.546599999070168 ], [ 365036.875200003385544, 255042.026700001209974 ], [ 365028.828299999237061, 255040.061000000685453 ], [ 365028.056199997663498, 255036.0439000017941 ], [ 365033.871200002729893, 255016.037599999457598 ], [ 365035.498199999332428, 255014.362199999392033 ], [ 365035.5287000015378, 255010.773800000548363 ], [ 365040.487099997699261, 254996.67119999974966 ], [ 365044.56360000371933, 254991.427200000733137 ], [ 365055.103200003504753, 254984.758499998599291 ], [ 365066.467100001871586, 254975.985500000417233 ], [ 365071.346400000154972, 254971.170299999415874 ], [ 365077.064300000667572, 254962.562300000339746 ], [ 365078.703900001943111, 254959.409299999475479 ], [ 365082.001000002026558, 254950.992499999701977 ], [ 365090.226000003516674, 254932.0614 ], [ 365095.117799997329712, 254925.768699999898672 ], [ 365111.413099996745586, 254906.059200000017881 ], [ 365124.468699999153614, 254888.012099999934435 ], [ 365129.335400000214577, 254884.674400001764297 ], [ 365137.402099996805191, 254884.318199999630451 ], [ 365153.479800000786781, 254890.149300001561642 ], [ 365164.723200000822544, 254895.518699999898672 ], [ 365177.536100000143051, 254905.967099998146296 ], [ 365207.161100000143051, 254930.69649999961257 ], [ 365211.172899998724461, 254933.051300000399351 ], [ 365213.581000000238419, 254934.337600000202656 ], [ 365216.799099996685982, 254935.208299998193979 ], [ 365224.041500002145767, 254936.956300001591444 ], [ 365229.6875, 254936.791499998420477 ], [ 365238.585699997842312, 254933.486800000071526 ], [ 365241.013599999248981, 254932.451200000941753 ], [ 365245.06139999628067, 254930.584499999880791 ], [ 365249.076800003647804, 254932.517200000584126 ], [ 365253.920000001788139, 254931.923500001430511 ], [ 365257.170400001108646, 254928.994800001382828 ], [ 365258.028899997472763, 254922.880100000649691 ], [ 365256.439699999988079, 254920.122900001704693 ], [ 365253.226999998092651, 254918.618999999016523 ], [ 365247.577399998903275, 254919.206000000238419 ], [ 365245.962999999523163, 254919.403900001198053 ], [ 365244.341399997472763, 254920.446100000292063 ], [ 365243.515299998223782, 254922.761399999260902 ], [ 365231.370200000703335, 254928.572599999606609 ], [ 365224.106200002133846, 254929.357500001788139 ], [ 365214.452100001275539, 254926.745400000363588 ], [ 365198.439099997282028, 254913.315400000661612 ], [ 365173.619599997997284, 254892.42509999871254 ], [ 365168.032200001180172, 254889.23930000141263 ], [ 365133.911300003528595, 254878.008699998259544 ], [ 365133.473483520851005, 254876.94191321276594 ], [ 365133.221294325543568, 254875.81669415498618 ], [ 365133.161915044824127, 254874.665090308524668 ], [ 365133.297036866366398, 254873.519900624873117 ], [ 365133.622811371169519, 254872.413741373107769 ], [ 365134.12996014097007, 254871.378117192478385 ], [ 365134.804039017704781, 254870.442523805308156 ], [ 365135.625849489297252, 254869.633607946307166 ], [ 365136.571985484391917, 254868.974408434005454 ], [ 365137.615500003099442, 254868.48369999974966 ], [ 365144.284482702380046, 254866.401477470353711 ], [ 365151.087559452222195, 254864.811154345516115 ], [ 365157.988499999046326, 254863.721200000494719 ], [ 365167.252151337219402, 254864.337368862354197 ], [ 365176.466748175327666, 254865.471434685925487 ], [ 365185.603359713219106, 254867.119836877915077 ], [ 365194.633299998939037, 254869.277399998158216 ], [ 365212.448499999940395, 254877.966400001198053 ], [ 365221.285599999129772, 254881.83839999884367 ], [ 365250.240900002419949, 254890.519099999219179 ], [ 365280.711800001561642, 254910.611299999058247 ], [ 365287.912799999117851, 254917.214099999517202 ], [ 365304.717699997127056, 254932.339299999177456 ], [ 365320.766599997878075, 254941.547699999064207 ], [ 365340.012000001966953, 254954.159699998795986 ], [ 365347.229299999773502, 254958.862799998372793 ], [ 365360.069200001657009, 254966.145100001245737 ], [ 365360.047600001096725, 254968.677999999374151 ], [ 365347.10700000077486, 254973.2162000015378 ], [ 365339.027699999511242, 254975.049899999052286 ], [ 365313.105200000107288, 254988.980999998748302 ], [ 365311.485399998724461, 254989.812100000679493 ], [ 365296.071999996900558, 255000.662799999117851 ], [ 365287.954899996519089, 255006.929200001060963 ], [ 365279.024300001561642, 255014.033300001174212 ], [ 365269.258699998259544, 255024.508099999278784 ], [ 365261.094800002872944, 255036.262499999254942 ], [ 365254.570600003004074, 255044.863899998366833 ], [ 365252.941799998283386, 255046.750399999320507 ], [ 365248.017599999904633, 255056.842599999159575 ], [ 365245.548299998044968, 255062.732999999076128 ], [ 365244.720399998128414, 255065.259399998933077 ], [ 365238.912600003182888, 255084.421399999409914 ], [ 365237.289200000464916, 255085.674600001424551 ], [ 365233.252300001680851, 255086.274900000542402 ], [ 365217.995200000703335, 255078.761700000613928 ] ], [ [ 365118.564499996602535, 255013.142200000584126 ], [ 365124.219499997794628, 255011.921900000423193 ], [ 365156.405500002205372, 255019.995799999684095 ], [ 365182.959899999201298, 255026.546000000089407 ], [ 365189.397799998521805, 255028.076299998909235 ], [ 365191.811300002038479, 255028.729299999773502 ], [ 365198.216899998486042, 255034.059099998325109 ], [ 365201.415100000798702, 255037.2516999989748 ], [ 365204.602600000798702, 255041.710700001567602 ], [ 365206.188299998641014, 255044.890099998563528 ], [ 365206.089400000870228, 255056.499499998986721 ], [ 365206.762599997222424, 255072.125900000333786 ], [ 365205.94370000064373, 255073.596799999475479 ], [ 365201.109399996697903, 255073.135099999606609 ], [ 365189.054300002753735, 255068.392400000244379 ], [ 365179.396499998867512, 255066.202399998903275 ], [ 365150.358499996364117, 255067.231300000101328 ], [ 365139.894400000572205, 255065.034699998795986 ], [ 365129.430299997329712, 255062.838100001215935 ], [ 365116.577899999916553, 255057.033399999141693 ], [ 365102.904799997806549, 255052.910700000822544 ], [ 365100.510999999940395, 255049.9358000010252 ], [ 365100.550599999725819, 255045.292100001126528 ], [ 365102.20269999653101, 255040.661499999463558 ], [ 365103.847699999809265, 255036.875300001353025 ], [ 365107.942199997603893, 255029.520599998533726 ], [ 365110.400700002908707, 255024.896600000560284 ], [ 365113.688900001347065, 255017.535300001502037 ], [ 365118.564499996602535, 255013.142200000584126 ] ], [ [ 365174.997400000691414, 255014.659600000828505 ], [ 365156.488200001418591, 255010.286200001835823 ], [ 365129.127499997615814, 255003.729400001466274 ], [ 365127.527500003576279, 255002.238699998706579 ], [ 365127.550899997353554, 254999.494699999690056 ], [ 365142.240699999034405, 254978.927700001746416 ], [ 365151.129900000989437, 254976.67850000038743 ], [ 365164.806699998676777, 254980.379000000655651 ], [ 365183.288900002837181, 254987.918499998748302 ], [ 365187.304300002753735, 254989.851199999451637 ], [ 365193.727799996733665, 254993.070199999958277 ], [ 365198.527900002896786, 254997.542500000447035 ], [ 365202.509199999272823, 255003.485700000077486 ], [ 365204.875900000333786, 255009.626800000667572 ], [ 365204.737499997019768, 255025.879799999296665 ], [ 365199.923000000417233, 255023.096200000494719 ], [ 365192.702100001275539, 255018.815200001001358 ], [ 365174.997400000691414, 255014.659600000828505 ] ], [ [ 365324.700000002980232, 255047.759899999946356 ], [ 365329.550499998033047, 255046.322000000625849 ], [ 365335.997400000691414, 255046.796900000423193 ], [ 365341.629000000655651, 255048.320700000971556 ], [ 365345.633599996566772, 255051.519799999892712 ], [ 365348.011200003325939, 255056.394499998539686 ], [ 365349.526699997484684, 255067.805900000035763 ], [ 365346.987300001084805, 255081.928399998694658 ], [ 365342.908900000154972, 255087.383400000631809 ], [ 365323.517899997532368, 255091.86879999935627 ], [ 365303.349299997091293, 255092.970300000160933 ], [ 365301.745700001716614, 255091.901700001209974 ], [ 365301.788800001144409, 255086.835799999535084 ], [ 365304.279700003564358, 255078.412500001490116 ], [ 365310.031800001859665, 255065.7939000017941 ], [ 365313.29839999973774, 255060.965500000864267 ], [ 365319.014499999582767, 255052.568500000983477 ], [ 365324.700000002980232, 255047.759899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87024325, "LATITUDE": 18.32485959, "OBJECTID_1": 38378, "PARCEL_NO_": "107602020900", "Tax_Legal_": "1-4 FRYDENHOJ RED HOOK QTR", "Name": "WEBSTER, KEN C., SR.", "Address": "PO Box 307768", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 139400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.6537822, "SHAPE_Area": 704.742708763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365221.130599997937679, 255089.342099998146296 ], [ 365216.039200000464916, 255119.064599998295307 ], [ 365241.798000000417233, 255124.341699998825788 ], [ 365244.423699997365475, 255100.087400000542402 ], [ 365242.022799998521805, 255097.956799998879433 ], [ 365221.130599997937679, 255089.342099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021900", "MAP": "A9-405-T92", "PARCEL_NAM": "6L-8", "ACRE": "0.50", "LONGITUDE": -64.83829772, "LATITUDE": 18.32482112, "OBJECTID_1": 40154, "PARCEL_NO_": "107802021900", "Tax_Legal_": "6M-6 ESTATE NAZARETH No. 1 RED HOOK QUARTER", "Name": "RICHARDSON, MEAGHAN P. & CYRIL E. (TRUSTEES)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 235000, "Improved_V": 692200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.045557003, "SHAPE_Area": 1883.1720904199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368647.897399999201298, 255124.565699998289347 ], [ 368636.612700000405312, 255124.051199998706579 ], [ 368616.483599998056889, 255120.508900001645088 ], [ 368600.409500002861023, 255114.25560000166297 ], [ 368592.389600001275539, 255109.123799998313189 ], [ 368571.20610000193119, 255134.70380000025034 ], [ 368568.751199997961521, 255138.905600000172853 ], [ 368571.969200000166893, 255139.776299998164177 ], [ 368604.94709999859333, 255149.545400001108646 ], [ 368617.023800000548363, 255151.755199998617172 ], [ 368625.887800000607967, 255152.460999999195337 ], [ 368640.550700001418591, 255135.060300000011921 ], [ 368647.897399999201298, 255124.565699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87048587, "LATITUDE": 18.32479212, "OBJECTID_1": 38377, "PARCEL_NO_": "107602020800", "Tax_Legal_": "1-5 FRYDENHOJ RED HOOK QTR", "Name": "SIMMONDS, NORMA", "Address": "PO Box 306401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036401, "Country": "United States", "Land_Value": 27400, "Improved_V": 158200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.96268924500001, "SHAPE_Area": 887.12087408399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365193.793300002813339, 255080.041299998760223 ], [ 365189.47580000013113, 255113.56980000063777 ], [ 365216.039200000464916, 255119.064599998295307 ], [ 365221.130599997937679, 255089.342099998146296 ], [ 365193.793300002813339, 255080.041299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802019900", "MAP": "D9-4916-T90", "PARCEL_NAM": "6D-6-A", "ACRE": ".65", "LONGITUDE": -64.83336351, "LATITUDE": 18.32456829, "OBJECTID_1": 40106, "PARCEL_NO_": "107802019900", "Tax_Legal_": "6D-6-A ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "PETRUS, ALLISON & BEVERLY B. DREW (TRUSTEES)", "Address": "PO Box 307187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 208300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.619450551, "SHAPE_Area": 2650.3836142199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369153.141800001263618, 255070.861299999058247 ], [ 369144.236400000751019, 255075.010200001299381 ], [ 369115.869800001382828, 255091.876600001007318 ], [ 369093.210299998521805, 255101.401500001549721 ], [ 369122.632100000977516, 255149.982700001448393 ], [ 369142.127400003373623, 255133.254799999296665 ], [ 369155.238799996674061, 255108.664200000464916 ], [ 369153.141800001263618, 255070.861299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802013000", "MAP": "A9-406-T92", "PARCEL_NAM": "6-0-4", "ACRE": ".571", "LONGITUDE": -64.83552862000001, "LATITUDE": 18.32466574, "OBJECTID_1": 40090, "PARCEL_NO_": "107802013000", "Tax_Legal_": "6-O-4 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "YAJAK DEVELOPMENT CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 181600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.271439055, "SHAPE_Area": 2207.5482026200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368868.924199998378754, 255114.975600000470877 ], [ 368883.160899996757507, 255147.600600000470877 ], [ 368884.796700000762939, 255151.125599998980761 ], [ 368898.819700002670288, 255140.674600001424551 ], [ 368913.371799997985363, 255132.604800000786781 ], [ 368930.126599997282028, 255124.553599998354912 ], [ 368931.742799997329712, 255124.144600000232458 ], [ 368924.369499996304512, 255091.710099998861551 ], [ 368910.055699996650219, 255095.429999999701977 ], [ 368894.857600003480911, 255098.076999999582767 ], [ 368889.559199996292591, 255098.473400000482798 ], [ 368879.240500003099442, 255104.691199999302626 ], [ 368872.625900000333786, 255109.850600000470877 ], [ 368868.524800002574921, 255113.025600001215935 ], [ 368868.924199998378754, 255114.975600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86746471, "LATITUDE": 18.32479945, "OBJECTID_1": 38493, "PARCEL_NO_": "107602040800", "Tax_Legal_": "48-11 FRYDENHOJ RED HOOK QTR", "Name": "CECILIA P SENTHILL HARRIGAN LIVING TRUST", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040582, "Country": "United States", "Land_Value": 42200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.172653047, "SHAPE_Area": 733.67950365599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365543.623199999332428, 255095.781199999153614 ], [ 365506.56700000166893, 255091.467099998146296 ], [ 365506.484300002455711, 255101.17680000141263 ], [ 365508.071699999272823, 255104.145100001245737 ], [ 365505.584499999880791, 255112.146299999207258 ], [ 365539.413599997758865, 255116.644999999552965 ], [ 365543.623199999332428, 255095.781199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87075915, "LATITUDE": 18.32473415, "OBJECTID_1": 38376, "PARCEL_NO_": "107602020600", "Tax_Legal_": "FRYDENHOJ ESTATE 1-6 RED HOOK QTR", "Name": "SIMMONDS, AL K.", "Address": "PO Box 306401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 225600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.02399924900001, "SHAPE_Area": 1084.7302534200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365161.57320000231266, 255075.977899998426437 ], [ 365158.081799998879433, 255107.191199999302626 ], [ 365189.47580000013113, 255113.56980000063777 ], [ 365193.793300002813339, 255080.041299998760223 ], [ 365184.144500002264977, 255076.795899998396635 ], [ 365182.533699996769428, 255076.571600001305342 ], [ 365172.859700001776218, 255076.281399998813868 ], [ 365161.57320000231266, 255075.977899998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802013200", "MAP": "D9-4918-T90", "PARCEL_NAM": "6D-6-C", "ACRE": ".51", "LONGITUDE": -64.83429344, "LATITUDE": 18.32474403, "OBJECTID_1": 40092, "PARCEL_NO_": "107802013200", "Tax_Legal_": "6D-6-C ESTATE NAZARETH NO.1 REDHOOK QTR", "Name": "AGDA LLC", "Address": "20929 Ventura Blvd", "City": "WOODLAND HILLS", "State": "California", "Zip": 91363, "Country": "United States", "Land_Value": 302600, "Improved_V": 2547400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.791244538, "SHAPE_Area": 1761.5578056899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369061.690399996936321, 255109.79839999973774 ], [ 368997.097300000488758, 255119.613299999386072 ], [ 368996.080600000917912, 255144.30290000140667 ], [ 369013.022100001573563, 255143.386100001633167 ], [ 369043.708800002932549, 255138.148800000548363 ], [ 369063.836000002920628, 255141.902100000530481 ], [ 369061.690399996936321, 255109.79839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022800", "MAP": "D9-5805-T94", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86240822000001, "LATITUDE": 18.32468107, "OBJECTID_1": 39234, "PARCEL_NO_": "107701022800", "Tax_Legal_": "4B-15A,4B-15B & 4B-15AA R.O.W FRYDENHOJ NO.3 REDHOOK QTR", "Name": "NESBITT, GILROY W. & PAULINE G.", "Address": "PO Box 9776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.94904612400001, "SHAPE_Area": 536.06947926199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366046.191399998962879, 255072.241200000047684 ], [ 366065.379299998283386, 255091.607799999415874 ], [ 366060.404799997806549, 255107.610199999064207 ], [ 366045.074000000953674, 255108.751299999654293 ], [ 366047.399499997496605, 255119.74720000103116 ], [ 366059.499600000679493, 255119.212900001555681 ], [ 366068.493100002408028, 255104.721099998801947 ], [ 366072.648699998855591, 255090.189599998295307 ], [ 366063.854800000786781, 255081.2516999989748 ], [ 366058.260999999940395, 255075.295299999415874 ], [ 366058.300499998033047, 255070.651599999517202 ], [ 366060.735600002110004, 255068.771699998527765 ], [ 366055.125600002706051, 255064.714999999850988 ], [ 366046.191399998962879, 255072.241200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022800", "MAP": "D9-5518-T93", "PARCEL_NAM": "4B-15", "ACRE": "0.97", "LONGITUDE": -64.86217093, "LATITUDE": 18.32453138, "OBJECTID_1": 39234, "PARCEL_NO_": "107701022800", "Tax_Legal_": "4B-15A,4B-15B & 4B-15AA R.O.W FRYDENHOJ NO.3 REDHOOK QTR", "Name": "NESBITT, GILROY W. & PAULINE G.", "Address": "PO Box 9776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.35107597699999, "SHAPE_Area": 3000.3284613300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366100.381599999964237, 255053.052999999374151 ], [ 366098.1891999989748, 255026.437300000339746 ], [ 366093.315399996936321, 255030.619300000369549 ], [ 366060.832699999213219, 255057.373399998992682 ], [ 366055.125600002706051, 255064.714999999850988 ], [ 366060.735600002110004, 255068.771699998527765 ], [ 366058.300499998033047, 255070.651599999517202 ], [ 366058.260999999940395, 255075.295299999415874 ], [ 366063.854800000786781, 255081.2516999989748 ], [ 366072.648699998855591, 255090.189599998295307 ], [ 366068.493100002408028, 255104.721099998801947 ], [ 366059.499600000679493, 255119.212900001555681 ], [ 366106.285499997437, 255117.273800000548363 ], [ 366104.05349999666214, 255095.30180000141263 ], [ 366100.381599999964237, 255053.052999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802021800", "MAP": "A9-405-T92", "PARCEL_NAM": "6L-7", "ACRE": "0.51", "LONGITUDE": -64.83882074, "LATITUDE": 18.32470073, "OBJECTID_1": 40153, "PARCEL_NO_": "107802021800", "Tax_Legal_": "NAZARETH ESTATE 6L-9 RED HOOK QUARTER", "Name": "HODGE, RHYS S", "Address": "PO Box 6520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 226400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.91857892499999, "SHAPE_Area": 1747.86313498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368592.389600001275539, 255109.123799998313189 ], [ 368585.147100001573563, 255107.375700000673532 ], [ 368558.537000000476837, 255107.368999999016523 ], [ 368532.799800001084805, 255099.559000000357628 ], [ 368513.209100000560284, 255127.47410000115633 ], [ 368536.565200001001358, 255130.831700000911951 ], [ 368568.751199997961521, 255138.905600000172853 ], [ 368571.20610000193119, 255134.70380000025034 ], [ 368592.389600001275539, 255109.123799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86791038, "LATITUDE": 18.32473769, "OBJECTID_1": 38492, "PARCEL_NO_": "107602040700", "Tax_Legal_": "46-7&(PORT. 47)FRYDENHJ No.3 RED HOOK QTR.", "Name": "TURNBULL, BERNICE A. (LIFE ESTATE)", "Address": "PO Box 301932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43100, "Improved_V": 395500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.15266465400001, "SHAPE_Area": 801.33613131899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365497.708400003612041, 255090.128100000321865 ], [ 365462.297100000083447, 255082.027800001204014 ], [ 365456.465899996459484, 255103.933800000697374 ], [ 365491.891500003635883, 255110.345400001853704 ], [ 365494.306900002062321, 255110.787399999797344 ], [ 365492.753600001335144, 255103.808600001037121 ], [ 365494.389600001275539, 255101.077799998223782 ], [ 365496.821099996566772, 255099.620000001043081 ], [ 365497.708400003612041, 255090.128100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87103107, "LATITUDE": 18.32470247, "OBJECTID_1": 38375, "PARCEL_NO_": "107602020500", "Tax_Legal_": "FRYDENHOJ ESTATE 1-7 RED HOOK QTR", "Name": "E GLASTON & JOYCE I FAHIE TRUST", "Address": "5777 Spring Mill Cir", "City": "Stonecrest", "State": "Georgia", "Zip": 300384051, "Country": "United States", "Land_Value": 28800, "Improved_V": 202000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.678460616, "SHAPE_Area": 747.63670747699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365134.984600000083447, 255073.438299998641014 ], [ 365133.933799996972084, 255102.138399999588728 ], [ 365158.081799998879433, 255107.191199999302626 ], [ 365161.57320000231266, 255075.977899998426437 ], [ 365149.474899999797344, 255076.301100000739098 ], [ 365137.398199997842312, 255074.091299999505281 ], [ 365134.984600000083447, 255073.438299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022900", "MAP": "D9-5814-T94", "PARCEL_NAM": "4B-1 REM", "ACRE": "0.409", "LONGITUDE": -64.86258529, "LATITUDE": 18.3246672, "OBJECTID_1": 39235, "PARCEL_NO_": "107701022900", "Tax_Legal_": "4B-1 (REM) & 4C-1 EST. FRYDENHOJ NO. 3 RED HOOK QUARTER", "Name": "NESBITT, GILROY W. & PAULINE G.", "Address": "PO Box 9776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 109200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.92972171299999, "SHAPE_Area": 1365.7234897000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366019.193899996578693, 255081.221200000494719 ], [ 366019.881999999284744, 255095.328000001609325 ], [ 366019.670299999415874, 255112.68470000103116 ], [ 366019.386500000953674, 255112.7347999997437 ], [ 366019.405000001192093, 255113.026399999856949 ], [ 366045.074000000953674, 255108.751299999654293 ], [ 366060.404799997806549, 255107.610199999064207 ], [ 366065.379299998283386, 255091.607799999415874 ], [ 366046.191399998962879, 255072.241200000047684 ], [ 366019.193899996578693, 255081.221200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87130616, "LATITUDE": 18.32464863, "OBJECTID_1": 38374, "PARCEL_NO_": "107602020400", "Tax_Legal_": "FRYDENHOJ 1-8 RED HOOK QTR", "Name": "CHARLESWELL, ELIAS & LURYIEL", "Address": "PO Box 8675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.55323714399999, "SHAPE_Area": 973.58640893200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365105.237400002777576, 255063.062300000339746 ], [ 365100.930699996650219, 255095.324400000274181 ], [ 365133.933799996972084, 255102.138399999588728 ], [ 365134.984600000083447, 255073.438299998641014 ], [ 365124.52589999884367, 255070.608399998396635 ], [ 365112.476199999451637, 255065.232500001788139 ], [ 365105.237400002777576, 255063.062300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802020700", "MAP": "D9-3161-T85", "PARCEL_NAM": "6L-6", "ACRE": null, "LONGITUDE": -64.83934862, "LATITUDE": 18.32460561, "OBJECTID_1": 40142, "PARCEL_NO_": "107802020700", "Tax_Legal_": "NAZARETH 6L-6\nRED HOOK QTR.", "Name": "Laurence Cohen&Revocable Liv Trust of Wendy Cohen", "Address": "312 Bent Rd", "City": "Wyncote", "State": "Pennsylvania", "Zip": 19095, "Country": "United States", "Land_Value": 287100, "Improved_V": 1310500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.79188157900001, "SHAPE_Area": 1809.30413795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368532.799800001084805, 255099.559000000357628 ], [ 368518.32209999859333, 255095.218699999153614 ], [ 368486.134300000965595, 255087.355799999088049 ], [ 368458.500299997627735, 255112.883099999278784 ], [ 368464.927400000393391, 255115.679900001734495 ], [ 368471.331200003623962, 255121.22069999948144 ], [ 368513.209100000560284, 255127.47410000115633 ], [ 368532.799800001084805, 255099.559000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87157112, "LATITUDE": 18.32458861, "OBJECTID_1": 38373, "PARCEL_NO_": "107602020300", "Tax_Legal_": "1-9 FRYDENHOJ RED HOOK QTR", "Name": "GUMBS, SYLVIA, EARLINE & PATRICE GUMBS ANDREWS", "Address": "6032 FRYDENHOJ #1-9-1401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 74600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.867398611, "SHAPE_Area": 841.50636203399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365081.089400000870228, 255058.009500000625849 ], [ 365074.367299996316433, 255089.829599998891354 ], [ 365100.930699996650219, 255095.324400000274181 ], [ 365105.237400002777576, 255063.062300000339746 ], [ 365081.089400000870228, 255058.009500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802012900", "MAP": "A9-406-T92", "PARCEL_NAM": "6-0-3", "ACRE": ".54", "LONGITUDE": -64.83498805000001, "LATITUDE": 18.32449897, "OBJECTID_1": 40089, "PARCEL_NO_": "107802012900", "Tax_Legal_": "6-O-3 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "FEDDERSEN DEVELOPMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 191000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.15383199799999, "SHAPE_Area": 1996.97753429 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368985.571400001645088, 255075.078600000590086 ], [ 368965.715999998152256, 255081.75279999896884 ], [ 368931.106700003147125, 255089.959199998527765 ], [ 368924.369499996304512, 255091.710099998861551 ], [ 368931.742799997329712, 255124.144600000232458 ], [ 368948.722099997103214, 255118.795200001448393 ], [ 368986.678099997341633, 255112.139699999243021 ], [ 368985.571400001645088, 255075.078600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86742944, "LATITUDE": 18.32458919, "OBJECTID_1": 38495, "PARCEL_NO_": "107602041000", "Tax_Legal_": "48-10 FRYDENHOJ RED HOOK QTR", "Name": "POTTER, CHERYL", "Address": "PO Box 5143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.264218976, "SHAPE_Area": 1001.49990353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365550.291299998760223, 255070.293400000780821 ], [ 365513.242299996316433, 255065.135099999606609 ], [ 365509.930699996650219, 255075.240499999374151 ], [ 365506.56700000166893, 255091.467099998146296 ], [ 365543.623199999332428, 255095.781199999153614 ], [ 365550.291299998760223, 255070.293400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602021500", "MAP": "B9-57-T60", "PARCEL_NAM": "1-19", "ACRE": "0.175", "LONGITUDE": -64.86975416, "LATITUDE": 18.32459971, "OBJECTID_1": 38384, "PARCEL_NO_": "107602021500", "Tax_Legal_": "1-19 FRYDENHOJ RED HOOK QTR", "Name": "ROGERS, ROSELYN", "Address": "PO Box 7923", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 145400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.099568033, "SHAPE_Area": 671.72318189199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365299.493900001049042, 255072.251600001007318 ], [ 365275.3800999969244, 255063.188299998641014 ], [ 365272.935999996960163, 255066.123599998652935 ], [ 365267.068800002336502, 255092.251200001686811 ], [ 365287.219400003552437, 255093.260499998927116 ], [ 365291.265399999916553, 255091.604800000786781 ], [ 365293.711300000548363, 255088.458399999886751 ], [ 365296.191399998962879, 255081.301600001752377 ], [ 365299.493900001049042, 255072.251600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86944379000001, "LATITUDE": 18.32458333, "OBJECTID_1": 38383, "PARCEL_NO_": "107602021400", "Tax_Legal_": "1-20 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "DESIR, ARISNOL", "Address": "6162 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 131700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.978476089799997, "SHAPE_Area": 610.19279578500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365323.517899997532368, 255091.86879999935627 ], [ 365327.790399998426437, 255063.617199998348951 ], [ 365313.29839999973774, 255060.965500000864267 ], [ 365310.031800001859665, 255065.7939000017941 ], [ 365304.279700003564358, 255078.412500001490116 ], [ 365301.788800001144409, 255086.835799999535084 ], [ 365301.745700001716614, 255091.901700001209974 ], [ 365303.349299997091293, 255092.970300000160933 ], [ 365323.517899997532368, 255091.86879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602021600", "MAP": "B9-57-T60", "PARCEL_NAM": "1-18", "ACRE": "0.196", "LONGITUDE": -64.86996579, "LATITUDE": 18.32458411, "OBJECTID_1": 38385, "PARCEL_NO_": "107602021600", "Tax_Legal_": "1-18 FRYDENHOJ\nRED HOOK QTR", "Name": "Millener, Sr &Jr,Angele,Joe'lle,&Je'Rome Rogers", "Address": "PO BOX 10183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37500, "Improved_V": 192300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.879959044200007, "SHAPE_Area": 550.02651402200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365267.068800002336502, 255092.251200001686811 ], [ 365272.935999996960163, 255066.123599998652935 ], [ 365254.419600002467632, 255062.594500001519918 ], [ 365247.812600001692772, 255080.905600000172853 ], [ 365249.353299997746944, 255089.361999999731779 ], [ 365253.368699997663498, 255091.294700000435114 ], [ 365267.068800002336502, 255092.251200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87181978, "LATITUDE": 18.32454199, "OBJECTID_1": 38372, "PARCEL_NO_": "107602020200", "Tax_Legal_": "1-10 FRYDENHOJ RED HOOK QTR", "Name": "RICHARDSON, ANGEL & DOROTHY", "Address": "6013 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32700, "Improved_V": 218200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.667462853, "SHAPE_Area": 892.39607897400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365053.710699997842312, 255053.5636 ], [ 365046.997699998319149, 255084.328299999237061 ], [ 365074.367299996316433, 255089.829599998891354 ], [ 365081.089400000870228, 255058.009500000625849 ], [ 365065.791000001132488, 255055.351199999451637 ], [ 365053.710699997842312, 255053.5636 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86924855, "LATITUDE": 18.32457439, "OBJECTID_1": 38382, "PARCEL_NO_": "107602021300", "Tax_Legal_": "1-21 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "ROGERS, GEORGE D. & CORELLE A.", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 158300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.772099446499993, "SHAPE_Area": 512.835036661 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365323.517899997532368, 255091.86879999935627 ], [ 365342.908900000154972, 255087.383400000631809 ], [ 365346.987300001084805, 255081.928399998694658 ], [ 365349.526699997484684, 255067.805900000035763 ], [ 365327.790399998426437, 255063.617199998348951 ], [ 365323.517899997532368, 255091.86879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107901010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83225703, "LATITUDE": 18.3242976, "OBJECTID_1": 41825, "PARCEL_NO_": "107901010200", "Tax_Legal_": "NAZARETH ESTATE 6G RED HOOK QTR.", "Name": "PATTERSON REVOCABLE LIVING TRUST", "Address": "540 Game Creek Cv", "City": "Eads", "State": "Tennessee", "Zip": 38028, "Country": "United States", "Land_Value": 422800, "Improved_V": 854000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.51124434399998, "SHAPE_Area": 3761.8247111400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369206.43129999935627, 255068.587099999189377 ], [ 369213.659199997782707, 255071.594700001180172 ], [ 369218.739200003445148, 255078.897199999541044 ], [ 369220.644299998879433, 255085.882199998944998 ], [ 369220.644299998879433, 255089.869800001382828 ], [ 369220.713799998164177, 255089.990499999374151 ], [ 369220.644299998879433, 255090.330200001597404 ], [ 369220.644299998879433, 255100.646000001579523 ], [ 369219.056800000369549, 255107.472300000488758 ], [ 369216.486199997365475, 255112.96510000154376 ], [ 369213.997100003063679, 255121.177400000393391 ], [ 369219.630500003695488, 255122.490100000053644 ], [ 369229.365599997341633, 255115.603700000792742 ], [ 369235.83049999922514, 255113.967799998819828 ], [ 369240.752899996936321, 255104.08669999986887 ], [ 369287.470499999821186, 255110.168600000441074 ], [ 369285.92620000243187, 255102.134399998933077 ], [ 369275.713799998164177, 255070.386799998581409 ], [ 369269.331699997186661, 255062.313000001013279 ], [ 369255.739399999380112, 255048.691799998283386 ], [ 369251.756399996578693, 255042.959600001573563 ], [ 369244.237300001084805, 255035.723200000822544 ], [ 369206.43129999935627, 255068.587099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8678535, "LATITUDE": 18.32450359, "OBJECTID_1": 38494, "PARCEL_NO_": "107602040900", "Tax_Legal_": "46-6&POR OF 47 FRYDENHOJ EAST END QTR", "Name": "NATHAN, PATRICIA A", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 263400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.385948082, "SHAPE_Area": 1110.4342617899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365504.405199997127056, 255061.263099998235703 ], [ 365471.441699996590614, 255049.805300001055002 ], [ 365462.297100000083447, 255082.027800001204014 ], [ 365497.708400003612041, 255090.128100000321865 ], [ 365498.563199996948242, 255084.435499999672174 ], [ 365500.245999999344349, 255076.216699998825788 ], [ 365504.405199997127056, 255061.263099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802020800", "MAP": "D9-3161-T85", "PARCEL_NAM": "6L-5", "ACRE": null, "LONGITUDE": -64.83987198, "LATITUDE": 18.32440532, "OBJECTID_1": 40143, "PARCEL_NO_": "107802020800", "Tax_Legal_": "NAZARETH ESTATE 6L-5 RED HOOK QTR.", "Name": "SHELTON FAMILY PARTNERSHIP LP", "Address": "46 Shelton Ln", "City": "Montgomery City", "State": "Missouri", "Zip": 63361, "Country": "United States", "Land_Value": 301500, "Improved_V": 1025900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.39306254900001, "SHAPE_Area": 2464.2623964999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368486.134300000965595, 255087.355799999088049 ], [ 368475.681000001728535, 255083.892799999564886 ], [ 368468.458400003612041, 255079.822900000959635 ], [ 368452.432800002396107, 255067.87049999833107 ], [ 368442.785899996757507, 255064.414000000804663 ], [ 368424.2550999969244, 255062.573600001633167 ], [ 368415.434199996292591, 255056.801899999380112 ], [ 368403.062600001692772, 255089.209100000560284 ], [ 368421.532200001180172, 255098.226199999451637 ], [ 368440.829800002276897, 255104.716899998486042 ], [ 368458.500299997627735, 255112.883099999278784 ], [ 368486.134300000965595, 255087.355799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85205106, "LATITUDE": 18.32334086, "OBJECTID_1": 39512, "PARCEL_NO_": "107702014800", "Tax_Legal_": "NAZARETH ESTATE 10 RED HOOK QUARTER", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 191700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1768.27647817, "SHAPE_Area": 28896.611670800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367528.015699997544289, 255105.267499998211861 ], [ 367553.187600001692772, 255084.786400001496077 ], [ 367556.432700000703335, 255082.490899998694658 ], [ 367534.924800001084805, 255051.495200000703335 ], [ 367518.048000000417233, 255044.813200000673532 ], [ 367500.397200003266335, 255034.325100000947714 ], [ 367489.987099997699261, 255025.79619999974966 ], [ 367485.998700000345707, 255020.697299998253584 ], [ 367476.398400001227856, 255011.75279999896884 ], [ 367462.779200002551079, 255001.297699999064207 ], [ 367452.349299997091293, 254995.090700000524521 ], [ 367444.31139999628067, 254992.069600000977516 ], [ 367432.241899996995926, 254989.015500001609325 ], [ 367420.157999999821186, 254987.649999998509884 ], [ 367406.445200003683567, 254988.171100001782179 ], [ 367395.94879999756813, 254989.773899998515844 ], [ 367375.738799996674061, 254995.730200000107288 ], [ 367365.244199998676777, 254997.122000001370907 ], [ 367349.119699999690056, 254996.778900001198053 ], [ 367333.022299997508526, 254993.26969999819994 ], [ 367324.181599996984005, 254989.81980000063777 ], [ 367310.551600001752377, 254980.63120000064373 ], [ 367284.927599996328354, 254959.523200001567602 ], [ 367279.337399996817112, 254953.14469999819994 ], [ 367272.928199999034405, 254948.237100001424551 ], [ 367263.297399997711182, 254942.880899999290705 ], [ 367250.428800001740456, 254938.975900001823902 ], [ 367230.299800001084805, 254935.433699999004602 ], [ 367211.765399999916553, 254934.015399999916553 ], [ 367135.946800000965595, 254936.35020000115037 ], [ 367112.569200001657009, 254935.525600001215935 ], [ 367094.848300002515316, 254933.269600000232458 ], [ 367078.748999997973442, 254929.971400000154972 ], [ 367064.269500002264977, 254925.842099998146296 ], [ 367052.2162000015378, 254920.888300001621246 ], [ 367037.767300002276897, 254913.170699998736382 ], [ 367029.749099999666214, 254907.8277000002563 ], [ 367019.339000001549721, 254899.298799999058247 ], [ 366987.408399999141693, 254861.2516999989748 ], [ 366982.604699999094009, 254857.20160000026226 ], [ 366972.174800001084805, 254850.994500000029802 ], [ 366960.110600002110004, 254847.307199999690056 ], [ 366948.825900003314018, 254846.792700000107288 ], [ 366927.0320999994874, 254849.358500000089407 ], [ 366887.439999997615814, 254858.744800001382828 ], [ 366859.983999997377396, 254863.375199999660254 ], [ 366831.734300002455711, 254866.521499998867512 ], [ 366796.233199998736382, 254868.975099999457598 ], [ 366792.982799999415874, 254871.903900001198053 ], [ 366792.948600001633167, 254875.91440000012517 ], [ 366799.960900001227856, 254904.680500000715256 ], [ 366802.347499996423721, 254908.499699998646975 ], [ 366803.952899999916553, 254909.357200000435114 ], [ 366828.687799997627735, 254940.168200001120567 ], [ 366848.653200000524521, 254962.918600000441074 ], [ 366890.818899996578693, 254935.399399999529123 ], [ 366892.514200001955032, 254925.703000001609325 ], [ 366899.895099997520447, 254911.197900000959635 ], [ 366907.227399997413158, 254902.392000000923872 ], [ 366919.402999997138977, 254892.992400001734495 ], [ 366933.162500001490116, 254886.983300000429153 ], [ 366946.891400001943111, 254884.562600001692772 ], [ 366963.010399997234344, 254885.538899999111891 ], [ 366972.664599999785423, 254888.151000000536442 ], [ 366982.302599996328354, 254892.662900000810623 ], [ 366996.699299998581409, 254906.501800000667572 ], [ 367010.320299997925758, 254916.745700001716614 ], [ 367026.362099997699261, 254926.79839999973774 ], [ 367045.632600001990795, 254936.455400001257658 ], [ 367069.750100001692772, 254945.096500001847744 ], [ 367089.868299998342991, 254949.905200000852346 ], [ 367112.421700000762939, 254952.833999998867512 ], [ 367132.57769999653101, 254953.210099998861551 ], [ 367172.117600001394749, 254949.945099998265505 ], [ 367190.659199997782707, 254950.519000001251698 ], [ 367209.182800002396107, 254953.20380000025034 ], [ 367226.882100000977516, 254957.99269999936223 ], [ 367245.364399999380112, 254965.532200001180172 ], [ 367258.207800000905991, 254972.392299998551607 ], [ 367275.039700001478195, 254984.351300001144409 ], [ 367283.043499998748302, 254991.38289999961853 ], [ 367297.478000000119209, 255000.789200000464916 ], [ 367329.667499996721745, 255008.440900001674891 ], [ 367340.122599996626377, 255011.692899998277426 ], [ 367362.586099997162819, 255025.175700001418591 ], [ 367377.866499997675419, 255029.94480000063777 ], [ 367384.281000003218651, 255034.219099998474121 ], [ 367392.311800003051758, 255038.084600001573563 ], [ 367408.394900001585484, 255043.282400000840425 ], [ 367425.309399999678135, 255045.531800001859665 ], [ 367443.795299999415874, 255052.64919999986887 ], [ 367467.081200003623962, 255064.238800000399351 ], [ 367479.125600002706051, 255070.247999999672174 ], [ 367500.780900001525879, 255083.935300000011921 ], [ 367528.015699997544289, 255105.267499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602021700", "MAP": "B9-57-T60", "PARCEL_NAM": "1-17", "ACRE": "0.148", "LONGITUDE": -64.87024812, "LATITUDE": 18.32453732, "OBJECTID_1": 38386, "PARCEL_NO_": "107602021700", "Tax_Legal_": "1-17 FRYDENHOJ RED HOOK QTR", "Name": "Berzan A, Berzan A Jr, Travis D, & Breanna Rogers", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 235500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.897775074899997, "SHAPE_Area": 522.79118373999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365227.831000000238419, 255060.054900001734495 ], [ 365217.327399998903275, 255062.502099998295307 ], [ 365218.022200003266335, 255075.595499999821186 ], [ 365217.995200000703335, 255078.761700000613928 ], [ 365233.252300001680851, 255086.274900000542402 ], [ 365237.289200000464916, 255085.674600001424551 ], [ 365238.912600003182888, 255084.421399999409914 ], [ 365244.720399998128414, 255065.259399998933077 ], [ 365227.831000000238419, 255060.054900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87204825000001, "LATITUDE": 18.32450411, "OBJECTID_1": 38371, "PARCEL_NO_": "107602020100", "Tax_Legal_": "FRYDENHOJ 1-11 RED HOOK QTR", "Name": "BRADY, A & L", "Address": "PO Box 8525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.930531785, "SHAPE_Area": 651.89496044400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365031.963600002229214, 255050.641399998217821 ], [ 365026.873999997973442, 255080.152800001204014 ], [ 365046.997699998319149, 255084.328299999237061 ], [ 365053.710699997842312, 255053.5636 ], [ 365031.963600002229214, 255050.641399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802011200", "MAP": null, "PARCEL_NAM": "6J", "ACRE": "0.77", "LONGITUDE": -64.83584465, "LATITUDE": 18.32422911, "OBJECTID_1": 40073, "PARCEL_NO_": "107802011200", "Tax_Legal_": "PAR 6J REM NAZARETH 1 RED HOOK QTR", "Name": "VROHIDIS, IPPOCRATIS & ASHII ALEXANDRA ANN", "Address": "3750 W Bde Maka Ska Pkwy", "City": "Minneapolis", "State": "Minnesota", "Zip": 554101117, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.150722242, "SHAPE_Area": 3021.6507658300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368851.697499997913837, 255043.477000001817942 ], [ 368841.537299998104572, 255047.144200000911951 ], [ 368833.716600000858307, 255049.588100001215935 ], [ 368855.245600000023842, 255111.486200001090765 ], [ 368872.592000000178814, 255099.592700000852346 ], [ 368890.431900002062321, 255089.364500001072884 ], [ 368898.669100001454353, 255085.749699998646975 ], [ 368897.98369999974966, 255081.81870000064373 ], [ 368895.813000001013279, 255082.265099998563528 ], [ 368894.965999998152256, 255078.314100001007318 ], [ 368889.758100003004074, 255035.774999998509884 ], [ 368867.944499999284744, 255040.66270000115037 ], [ 368859.876000002026558, 255041.229899998754263 ], [ 368851.697499997913837, 255043.477000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602026000", "MAP": "D9-4626-T89", "PARCEL_NAM": "1-65", "ACRE": null, "LONGITUDE": -64.87234502, "LATITUDE": 18.32447174, "OBJECTID_1": 38428, "PARCEL_NO_": "107602026000", "Tax_Legal_": "1-65 EST.FRYDENHOJ RED HOOK QUARTER", "Name": "ELLEN JANE EVANS HODGE REVOCABLE TRUST", "Address": "6324 Estate Winteberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.378091971, "SHAPE_Area": 1107.36648122 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365014.257100000977516, 255046.696800000965595 ], [ 364979.495800003409386, 255056.966899998486042 ], [ 364990.651100002229214, 255072.679099999368191 ], [ 365026.873999997973442, 255080.152800001204014 ], [ 365031.963600002229214, 255050.641399998217821 ], [ 365027.100599996745586, 255053.55689999833703 ], [ 365021.465400002896786, 255052.455299999564886 ], [ 365019.858199998736382, 255051.808800000697374 ], [ 365017.44820000231266, 255050.733600001782179 ], [ 365014.257100000977516, 255046.696800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802012800", "MAP": "A9-406-T92", "PARCEL_NAM": "6-0-2", "ACRE": ".506", "LONGITUDE": -64.8344875, "LATITUDE": 18.32440736, "OBJECTID_1": 40088, "PARCEL_NO_": "107802012800", "Tax_Legal_": "6-O-2 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "FEDDERSEN, KIRST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 182300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.61716080299999, "SHAPE_Area": 1737.19642084 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369004.012199997901917, 255073.427600000053644 ], [ 368985.571400001645088, 255075.078600000590086 ], [ 368986.678099997341633, 255112.139699999243021 ], [ 369010.905299998819828, 255107.905000001192093 ], [ 369035.933300003409386, 255104.310199998319149 ], [ 369035.446299999952316, 255071.652199998497963 ], [ 369035.420100003480911, 255069.897799998521805 ], [ 369031.723399996757507, 255070.811099998652935 ], [ 369020.795100003480911, 255072.926600001752377 ], [ 369004.012199997901917, 255073.427600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86415164, "LATITUDE": 18.32414165, "OBJECTID_1": 39211, "PARCEL_NO_": "107701020300", "Tax_Legal_": "17D FRYDENHOJ RED HOOK", "Name": "HARRIGAN, ALLAN", "Address": "PO Box 7323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.28883098900002, "SHAPE_Area": 6553.8413452900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365876.721199996769428, 254993.171799998730421 ], [ 365841.3783999979496, 254977.050500001758337 ], [ 365834.679700002074242, 255006.126600001007318 ], [ 365832.944799996912479, 255020.466699998825788 ], [ 365831.182899996638298, 255037.973099999129772 ], [ 365831.336999997496605, 255053.484900001436472 ], [ 365917.75620000064373, 255092.538499999791384 ], [ 365917.004000000655651, 255077.695900000631809 ], [ 365913.5675999969244, 255009.885200001299381 ], [ 365876.721199996769428, 254993.171799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701023800", "MAP": "D9-5665-T94", "PARCEL_NAM": "4C", "ACRE": null, "LONGITUDE": -64.86251711, "LATITUDE": 18.32437115, "OBJECTID_1": 39241, "PARCEL_NO_": "107701023800", "Tax_Legal_": "4B-15 REM & 4C REM FRYDENHOJ NO.3 REDHOOK QTR", "Name": "OGISTE, ESKIETH & BERNARD, AVONEL V.", "Address": "PO Box 9904", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.897256672, "SHAPE_Area": 756.38673561899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366018.671899996697903, 255070.521099999547005 ], [ 366019.193899996578693, 255081.221200000494719 ], [ 366046.191399998962879, 255072.241200000047684 ], [ 366055.125600002706051, 255064.714999999850988 ], [ 366060.832699999213219, 255057.373399998992682 ], [ 366093.315399996936321, 255030.619300000369549 ], [ 366084.411799997091293, 255034.557199999690056 ], [ 366018.671899996697903, 255070.521099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701015600", "MAP": "F9-682-T61", "PARCEL_NAM": "105", "ACRE": ".08", "LONGITUDE": -64.8647039, "LATITUDE": 18.32431442, "OBJECTID_1": 39173, "PARCEL_NO_": "107701015600", "Tax_Legal_": "105&164 FRYDENHOJ 3 RED HOOK QTR", "Name": "RAMOS, PEDRO", "Address": "6202 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 146500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.42692564399999, "SHAPE_Area": 470.654918861 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365810.155900001525879, 255030.857400000095367 ], [ 365807.055399999022484, 255029.253299999982119 ], [ 365807.107699997723103, 255030.936500001698732 ], [ 365808.441799998283386, 255039.569699998944998 ], [ 365808.728500001132488, 255041.425500001758337 ], [ 365813.881700001657009, 255045.604600001126528 ], [ 365810.682899996638298, 255073.666400000452995 ], [ 365822.720499999821186, 255075.171999998390675 ], [ 365822.374300003051758, 255035.680599998682737 ], [ 365810.155900001525879, 255030.857400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602026200", "MAP": "D9-5597-T93", "PARCEL_NAM": "1-64", "ACRE": null, "LONGITUDE": -64.87281658000001, "LATITUDE": 18.32438047, "OBJECTID_1": 38430, "PARCEL_NO_": "107602026200", "Tax_Legal_": "1-64 EST FRYDENHOJ RED HOOK QTR", "Name": "JOHN, VERONIQUE & PAUL", "Address": "PO Box 8062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27300, "Improved_V": 94200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.199916487, "SHAPE_Area": 1237.8319294400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364979.495800003409386, 255056.966899998486042 ], [ 364957.977099999785423, 255027.237700000405312 ], [ 364951.488799996674061, 255031.617600001394749 ], [ 364941.723200000822544, 255042.092300001531839 ], [ 364934.356700003147125, 255054.908700000494719 ], [ 364930.280199997127056, 255060.152699999511242 ], [ 364990.651100002229214, 255072.679099999368191 ], [ 364979.495800003409386, 255056.966899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602021800", "MAP": "D9-233-T60", "PARCEL_NAM": "1-16", "ACRE": null, "LONGITUDE": -64.87059826, "LATITUDE": 18.3244416, "OBJECTID_1": 38387, "PARCEL_NO_": "107602021800", "Tax_Legal_": "FRYDENHOJ 1-16 RED HOOK QTR", "Name": "ONICK, PAUL", "Address": "PO Box 10728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.028945535199995, "SHAPE_Area": 464.32589192799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365181.160199999809265, 255048.484999999403954 ], [ 365179.396499998867512, 255066.202399998903275 ], [ 365189.054300002753735, 255068.392400000244379 ], [ 365201.109399996697903, 255073.135099999606609 ], [ 365205.94370000064373, 255073.596799999475479 ], [ 365206.762599997222424, 255072.125900000333786 ], [ 365206.089400000870228, 255056.499499998986721 ], [ 365181.160199999809265, 255048.484999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802012700", "MAP": "A9-406-T92", "PARCEL_NAM": "6-0-1", "ACRE": ".546", "LONGITUDE": -64.83392617, "LATITUDE": 18.32430791, "OBJECTID_1": 40087, "PARCEL_NO_": "107802012700", "Tax_Legal_": "6-O-1 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "WALTER FEDDERSEN REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 193900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.38974505, "SHAPE_Area": 2503.4112550599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369110.286700002849102, 255084.653799999505281 ], [ 369104.0574000030756, 255058.638300001621246 ], [ 369056.441799998283386, 255063.314800001680851 ], [ 369041.922799997031689, 255063.829300001263618 ], [ 369041.870600000023842, 255069.950599998235703 ], [ 369035.420100003480911, 255069.897799998521805 ], [ 369035.933300003409386, 255104.310199998319149 ], [ 369057.730700001120567, 255101.322200000286102 ], [ 369077.928099997341633, 255096.843499999493361 ], [ 369086.014600001275539, 255094.165399998426437 ], [ 369097.340800002217293, 255089.825199998915195 ], [ 369110.286700002849102, 255084.653799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601054100", "MAP": "D9-6712-T000", "PARCEL_NAM": "3B-1", "ACRE": "1.31", "LONGITUDE": -64.87815277, "LATITUDE": 18.32404919, "OBJECTID_1": 38115, "PARCEL_NO_": "107601054100", "Tax_Legal_": "3B-1 ESTATE MARIENDAHL 3 RED HOOK QTR", "Name": "FOSTER, JOHN P. & OTHERS", "Address": "9100 Port of Sale Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023602, "Country": "United States", "Land_Value": 141700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.26551583399998, "SHAPE_Area": 5006.9399483500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364421.115500003099442, 254985.626800000667572 ], [ 364412.518899999558926, 254974.010800000280142 ], [ 364390.734099999070168, 254975.521200001239777 ], [ 364377.824100002646446, 254976.471000000834465 ], [ 364351.350199997425079, 254980.355900000780821 ], [ 364371.97919999808073, 255057.283399999141693 ], [ 364403.047100000083447, 255044.649599999189377 ], [ 364433.809299997985363, 255030.546999998390675 ], [ 364448.251599997282028, 255022.293999999761581 ], [ 364421.115500003099442, 254985.626800000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602022900", "MAP": "B9-57-T60", "PARCEL_NAM": "1-23", "ACRE": "0.165", "LONGITUDE": -64.86959318, "LATITUDE": 18.32433732, "OBJECTID_1": 38398, "PARCEL_NO_": "107602022900", "Tax_Legal_": "1-23 FRYDENHOJ RED HOOK QTR", "Name": "SMITH, LEONICE", "Address": "PO Box 10581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52300, "Improved_V": 146300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.78467730099999, "SHAPE_Area": 907.88572761600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365321.525100000202656, 255041.823300000280142 ], [ 365315.205899998545647, 255026.361800000071526 ], [ 365289.238499999046326, 255045.56980000063777 ], [ 365275.3800999969244, 255063.188299998641014 ], [ 365299.493900001049042, 255072.251600001007318 ], [ 365303.61540000140667, 255061.730599999427795 ], [ 365306.059500001370907, 255058.795299999415874 ], [ 365316.667499996721745, 255044.105599999427795 ], [ 365321.525100000202656, 255041.823300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602021900", "MAP": "D9-233-T60", "PARCEL_NAM": "1-15", "ACRE": null, "LONGITUDE": -64.8709035, "LATITUDE": 18.32440098, "OBJECTID_1": 38388, "PARCEL_NO_": "107602021900", "Tax_Legal_": "FRYDENHOJ ESTATE 1-15 RED HOOK QTR", "Name": "FAHIE, JASON W.", "Address": "189-06 Nashville Blvd", "City": "Springfield Gardens", "State": "New York", "Zip": 11413, "Country": "United States", "Land_Value": 24700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.778967095, "SHAPE_Area": 756.65598935599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365181.160199999809265, 255048.484999999403954 ], [ 365147.329300001263618, 255044.197299998253584 ], [ 365139.894400000572205, 255065.034699998795986 ], [ 365150.358499996364117, 255067.231300000101328 ], [ 365179.396499998867512, 255066.202399998903275 ], [ 365181.160199999809265, 255048.484999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86737275, "LATITUDE": 18.32436667, "OBJECTID_1": 38497, "PARCEL_NO_": "107602041200", "Tax_Legal_": "48-9 FRYDENHOJ RED HOOK", "Name": "CECILIA P SENTHILL HARRIGAN LIVING TRUST", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040582, "Country": "United States", "Land_Value": 42200, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.161028098, "SHAPE_Area": 887.28856554200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365555.325199998915195, 255047.325500000268221 ], [ 365519.089699998497963, 255041.3293999992311 ], [ 365513.242299996316433, 255065.135099999606609 ], [ 365550.291299998760223, 255070.293400000780821 ], [ 365555.325199998915195, 255047.325500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602025700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86927395, "LATITUDE": 18.32438921, "OBJECTID_1": 38425, "PARCEL_NO_": "107602025700", "Tax_Legal_": "1-22 FRYDENHOJ RED HOOK", "Name": "RHYMER, IVAN C, IVAN R., REBA Y, & REA L", "Address": "404-118 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.891419355599993, "SHAPE_Area": 502.87741028400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365313.29839999973774, 255060.965500000864267 ], [ 365327.790399998426437, 255063.617199998348951 ], [ 365349.526699997484684, 255067.805900000035763 ], [ 365348.011200003325939, 255056.394499998539686 ], [ 365345.633599996566772, 255051.519799999892712 ], [ 365341.629000000655651, 255048.320700000971556 ], [ 365335.997400000691414, 255046.796900000423193 ], [ 365329.550499998033047, 255046.322000000625849 ], [ 365324.700000002980232, 255047.759899999946356 ], [ 365319.014499999582767, 255052.568500000983477 ], [ 365313.29839999973774, 255060.965500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602022000", "MAP": null, "PARCEL_NAM": "1-14", "ACRE": null, "LONGITUDE": -64.87125535, "LATITUDE": 18.32434245, "OBJECTID_1": 38389, "PARCEL_NO_": "107602022000", "Tax_Legal_": "FRYDENHOJ 1-14 RED HOOK QTR", "Name": "HENDRICKSON, SHERRWYNA", "Address": "PO Box 502933", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 43100, "Improved_V": 173200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.80047353800001, "SHAPE_Area": 820.91024392300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365139.894400000572205, 255065.034699998795986 ], [ 365147.329300001263618, 255044.197299998253584 ], [ 365103.847699999809265, 255036.875300001353025 ], [ 365102.20269999653101, 255040.661499999463558 ], [ 365100.550599999725819, 255045.292100001126528 ], [ 365100.510999999940395, 255049.9358000010252 ], [ 365102.904799997806549, 255052.910700000822544 ], [ 365116.577899999916553, 255057.033399999141693 ], [ 365129.430299997329712, 255062.838100001215935 ], [ 365139.894400000572205, 255065.034699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602022800", "MAP": "B9-57-T60", "PARCEL_NAM": "1-24", "ACRE": "0.178", "LONGITUDE": -64.8698592, "LATITUDE": 18.32434742, "OBJECTID_1": 38397, "PARCEL_NO_": "107602022800", "Tax_Legal_": "1-24 FRYDENHOJ RED HOOK QTR", "Name": "CHOYA TODMAN & DARREN D ROACH", "Address": "PO Box 166", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040166, "Country": "United States", "Land_Value": 24700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.466968239300002, "SHAPE_Area": 581.42883048099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365289.238499999046326, 255045.56980000063777 ], [ 365271.589500002563, 255034.870700001716614 ], [ 365262.619400002062321, 255046.618500001728535 ], [ 365255.24210000038147, 255060.701400000602007 ], [ 365254.419600002467632, 255062.594500001519918 ], [ 365272.935999996960163, 255066.123599998652935 ], [ 365275.3800999969244, 255063.188299998641014 ], [ 365289.238499999046326, 255045.56980000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86247521, "LATITUDE": 18.32386738, "OBJECTID_1": 39219, "PARCEL_NO_": "107701021300", "Tax_Legal_": "4H FRYDENHOJ \nNo.3 RED HOOK QTR", "Name": "ASFOUR, IBRAHIM & ABLA", "Address": "5521 Curacao Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 222800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 341.36842094799999, "SHAPE_Area": 7074.8887333000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366015.451999999582767, 254957.078899998217821 ], [ 366015.648699998855591, 254964.094399999827147 ], [ 366016.071999996900558, 254974.889400001615286 ], [ 366016.495300002396107, 254990.341099999845028 ], [ 366017.130300000309944, 255003.04109999909997 ], [ 366017.342000000178814, 255016.3761 ], [ 366018.4003000035882, 255042.622900001704693 ], [ 366018.612000003457069, 255069.292899999767542 ], [ 366018.671899996697903, 255070.521099999547005 ], [ 366084.411799997091293, 255034.557199999690056 ], [ 366093.315399996936321, 255030.619300000369549 ], [ 366098.1891999989748, 255026.437300000339746 ], [ 366094.279100000858307, 254976.463300000876188 ], [ 366079.701700001955032, 254963.471200000494719 ], [ 366073.943800002336502, 254957.041499998420477 ], [ 366015.451999999582767, 254957.078899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602023500", "MAP": "B9-57-T60", "PARCEL_NAM": "1-25", "ACRE": "0.104", "LONGITUDE": -64.8701581, "LATITUDE": 18.32436077, "OBJECTID_1": 38404, "PARCEL_NO_": "107602023500", "Tax_Legal_": "1-25 FRYDENHOJ RED HOOK QTR", "Name": "REY, THOMAS & EVAONIE", "Address": "16750 SW 248 St", "City": "Homestead", "State": "Florida", "Zip": 33031, "Country": "United States", "Land_Value": 12500, "Improved_V": 134200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.095199457099994, "SHAPE_Area": 387.81809541899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365254.570600003004074, 255044.863899998366833 ], [ 365232.011900000274181, 255042.568300001323223 ], [ 365227.831000000238419, 255060.054900001734495 ], [ 365244.720399998128414, 255065.259399998933077 ], [ 365245.548299998044968, 255062.732999999076128 ], [ 365248.017599999904633, 255056.842599999159575 ], [ 365252.941799998283386, 255046.750399999320507 ], [ 365254.570600003004074, 255044.863899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602023100", "MAP": "B9-57-T60", "PARCEL_NAM": "1-39", "ACRE": "0.203", "LONGITUDE": -64.86908972000001, "LATITUDE": 18.32413406, "OBJECTID_1": 38400, "PARCEL_NO_": "107602023100", "Tax_Legal_": "FRYDENHOJ ESTATE 1-39 RED HOOK QTR", "Name": "HARRIGAN, JOYCE I & CHARLES", "Address": "6739 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 137000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.429059661, "SHAPE_Area": 836.65657851599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365366.998700000345707, 255004.620799999684095 ], [ 365343.527500003576279, 255014.772300001233816 ], [ 365336.872000001370907, 255038.782499998807907 ], [ 365345.718099996447563, 255041.59910000115633 ], [ 365350.525399997830391, 255045.227099999785423 ], [ 365354.501199997961521, 255051.80350000038743 ], [ 365356.072499997913837, 255056.671500001102686 ], [ 365356.806900002062321, 255065.121300000697374 ], [ 365366.998700000345707, 255004.620799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802020900", "MAP": "D9-4899-T90", "PARCEL_NAM": "6L-4", "ACRE": null, "LONGITUDE": -64.84040158000001, "LATITUDE": 18.32421524, "OBJECTID_1": 40144, "PARCEL_NO_": "107802020900", "Tax_Legal_": "EST.NARAZETH 6L-4 RED HOOK QTR.", "Name": "COULTER, THOMAS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021373, "Country": "United States", "Land_Value": 421700, "Improved_V": 1862800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.27457343500001, "SHAPE_Area": 1810.7532586100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368415.434199996292591, 255056.801899999380112 ], [ 368399.374499998986721, 255048.859999999403954 ], [ 368383.282399997115135, 255044.717500001192093 ], [ 368378.473300002515316, 255041.300700001418591 ], [ 368368.813699997961521, 255039.321800000965595 ], [ 368365.511100001633167, 255048.371800001710653 ], [ 368357.325699999928474, 255062.659099999815226 ], [ 368354.0304000005126, 255070.864799998700619 ], [ 368403.062600001692772, 255089.209100000560284 ], [ 368415.434199996292591, 255056.801899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602025900", "MAP": "D9-5024-T90", "PARCEL_NAM": "1-63", "ACRE": null, "LONGITUDE": -64.87323893, "LATITUDE": 18.32427692, "OBJECTID_1": 38427, "PARCEL_NO_": "107602025900", "Tax_Legal_": "FRYDENHOJ 1-63 RED HOOK QUARTER", "Name": "BEAUSOLIEL, DAVIS", "Address": "6036 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27300, "Improved_V": 190800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.07072944799999, "SHAPE_Area": 966.52184172800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364936.95719999819994, 255033.609600000083447 ], [ 364911.268500000238419, 255020.100400000810623 ], [ 364890.835600003600121, 255052.230500001460314 ], [ 364920.620600000023842, 255058.173799999058247 ], [ 364926.333099998533726, 255050.199000000953674 ], [ 364932.05460000038147, 255041.168800000101328 ], [ 364933.697800002992153, 255037.593699999153614 ], [ 364935.330200001597404, 255035.285000000149012 ], [ 364936.95719999819994, 255033.609600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602026400", "MAP": "A9-530-T99", "PARCEL_NAM": "1-66", "ACRE": "0.27", "LONGITUDE": -64.87255515, "LATITUDE": 18.32423233, "OBJECTID_1": 38432, "PARCEL_NO_": "107602026400", "Tax_Legal_": "FRYDENHOJ ESTATE 1-66 No.3 RED HOOK QTR.", "Name": "PHYLLIS P WARNER REV. FAM. TRUST", "Address": "PO Box 303565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31900, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.17643525700001, "SHAPE_Area": 1349.74446947 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365014.320100001990795, 255039.309000000357628 ], [ 364987.108599998056889, 255015.232700001448393 ], [ 364957.977099999785423, 255027.237700000405312 ], [ 364979.495800003409386, 255056.966899998486042 ], [ 365014.257100000977516, 255046.696800000965595 ], [ 365014.320100001990795, 255039.309000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86777873, "LATITUDE": 18.32424759, "OBJECTID_1": 38496, "PARCEL_NO_": "107602041100", "Tax_Legal_": "46-5 FRYDENHOJ RED HOOK QTR", "Name": "TODMAN, MARGARET & MARIO (TRUSTEES)", "Address": "PO Box 10472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 133800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.64692730199999, "SHAPE_Area": 946.947833307 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365511.087700001895428, 255034.08669999986887 ], [ 365478.10980000346899, 255024.317600000649691 ], [ 365471.441699996590614, 255049.805300001055002 ], [ 365504.405199997127056, 255061.263099998235703 ], [ 365508.5608000010252, 255046.731600001454353 ], [ 365511.087700001895428, 255034.08669999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107602022600", "MAP": "D9-9018-T015", "PARCEL_NAM": "1-27", "ACRE": ".15", "LONGITUDE": -64.87059573000001, "LATITUDE": 18.32427087, "OBJECTID_1": 38395, "PARCEL_NO_": "107602022600", "Tax_Legal_": "1-27 FRYDENHOJ RED HOOK QTR", "Name": "VIL, LEON & MYRLENE SIMILIEN", "Address": "PO Box 503292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21600, "Improved_V": 32200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.032743601000007, "SHAPE_Area": 464.42432112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365185.431999996304512, 255027.133600000292063 ], [ 365181.160199999809265, 255048.484999999403954 ], [ 365206.089400000870228, 255056.499499998986721 ], [ 365206.188299998641014, 255044.890099998563528 ], [ 365204.602600000798702, 255041.710700001567602 ], [ 365201.415100000798702, 255037.2516999989748 ], [ 365198.216899998486042, 255034.059099998325109 ], [ 365191.811300002038479, 255028.729299999773502 ], [ 365189.397799998521805, 255028.076299998909235 ], [ 365185.431999996304512, 255027.133600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83333597, "LATITUDE": 18.32401378, "OBJECTID_1": 40076, "PARCEL_NO_": "107802011500", "Tax_Legal_": "NAZARETH 6-Q RED HOOK QTR.", "Name": "AHMET SAYAN and CARMEN MERCEDES QUINONES", "Address": "9149 Estate Thomas Ste 104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023132, "Country": "United States", "Land_Value": 437200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.00297493299999, "SHAPE_Area": 2828.23148055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369158.485799998044968, 255059.820300001651049 ], [ 369178.954199999570847, 255024.019400000572205 ], [ 369151.089599996805191, 255027.781399998813868 ], [ 369126.104699999094009, 255026.310300000011921 ], [ 369097.039700001478195, 255030.505399998277426 ], [ 369104.0574000030756, 255058.638300001621246 ], [ 369110.286700002849102, 255084.653799999505281 ], [ 369128.108300000429153, 255075.089299999177456 ], [ 369144.324500001966953, 255064.667399998754263 ], [ 369152.416400000452995, 255061.356100000441074 ], [ 369158.485799998044968, 255059.820300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802011300", "MAP": null, "PARCEL_NAM": "6I", "ACRE": "1.10", "LONGITUDE": -64.83520187000001, "LATITUDE": 18.32411731, "OBJECTID_1": 40074, "PARCEL_NO_": "107802011300", "Tax_Legal_": "6I ESTATE NAZARETH RED HOOK QTR", "Name": "ANDREW J. SMITH REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 683800, "Improved_V": 1133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.845116281, "SHAPE_Area": 4155.2350147300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368931.701399996876717, 255083.179999999701977 ], [ 368948.114000000059605, 255079.612100001424551 ], [ 368962.597699999809265, 255074.829199999570847 ], [ 368985.42339999973774, 255070.121800001710653 ], [ 368984.669200003147125, 255063.993999999016523 ], [ 368981.697499997913837, 255034.205400001257658 ], [ 368939.758500002324581, 255035.128699999302626 ], [ 368903.476199999451637, 255034.620700001716614 ], [ 368889.758100003004074, 255035.774999998509884 ], [ 368895.035400003194809, 255078.881299998611212 ], [ 368895.813000001013279, 255082.265099998563528 ], [ 368897.98369999974966, 255081.81870000064373 ], [ 368899.393700003623962, 255089.905799999833107 ], [ 368913.278399996459484, 255086.073699999600649 ], [ 368922.75, 255084.585999999195337 ], [ 368931.701399996876717, 255083.179999999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602022100", "MAP": "B9-57-T60", "PARCEL_NAM": "1-13", "ACRE": "0.212", "LONGITUDE": -64.87167868, "LATITUDE": 18.32420101, "OBJECTID_1": 38390, "PARCEL_NO_": "107602022100", "Tax_Legal_": "1-13 FRYDENHOJ RED HOOK QTR", "Name": "SMITH, CHARLES", "Address": "93 Essex Ct", "City": "West Hempstead", "State": "New York", "Zip": 11552, "Country": "United States", "Land_Value": 28800, "Improved_V": 157900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.09955024200001, "SHAPE_Area": 840.31474144100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365066.912000000476837, 255018.418999999761581 ], [ 365061.044799998402596, 255044.546599999070168 ], [ 365090.027099996805191, 255050.061099998652935 ], [ 365090.871200002729893, 255045.635099999606609 ], [ 365092.527000002563, 255040.582400001585484 ], [ 365095.822400003671646, 255032.3766999989748 ], [ 365099.929499998688698, 255023.544399999082088 ], [ 365066.912000000476837, 255018.418999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602022500", "MAP": "D9-233-T60", "PARCEL_NAM": "1-28", "ACRE": null, "LONGITUDE": -64.87085428, "LATITUDE": 18.32420639, "OBJECTID_1": 38394, "PARCEL_NO_": "107602022500", "Tax_Legal_": "1-28 FRYDENHOJ RED HOOK QTR", "Name": "SPENCER, JEANNETTE M B", "Address": "PO Box 1573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24700, "Improved_V": 128300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.31200054200001, "SHAPE_Area": 726.01996273700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365156.405500002205372, 255019.995799999684095 ], [ 365147.329300001263618, 255044.197299998253584 ], [ 365181.160199999809265, 255048.484999999403954 ], [ 365182.959899999201298, 255026.546000000089407 ], [ 365156.405500002205372, 255019.995799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602022200", "MAP": "B9-57-T60", "PARCEL_NAM": "1-12", "ACRE": "0.196", "LONGITUDE": -64.87198174, "LATITUDE": 18.32416481, "OBJECTID_1": 38391, "PARCEL_NO_": "107602022200", "Tax_Legal_": "1-12 FRYDENHOJ RED HOOK QTR", "Name": "RIVIERE, FENRICK & LYDIA", "Address": "PO Box 306511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 90500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.29733449699999, "SHAPE_Area": 899.54472438000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365061.044799998402596, 255044.546599999070168 ], [ 365066.912000000476837, 255018.418999999761581 ], [ 365035.498199999332428, 255014.362199999392033 ], [ 365033.871200002729893, 255016.037599999457598 ], [ 365028.056199997663498, 255036.0439000017941 ], [ 365028.828299999237061, 255040.061000000685453 ], [ 365036.875200003385544, 255042.026700001209974 ], [ 365061.044799998402596, 255044.546599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802020300", "MAP": "D9-9254-T018", "PARCEL_NAM": "6L-24", "ACRE": "0.78", "LONGITUDE": -64.84147746, "LATITUDE": 18.32384002, "OBJECTID_1": 40138, "PARCEL_NO_": "107802020300", "Tax_Legal_": "6L-24&6L-25 NAZARETH CABRITA CONDOS STG.II RED HOOK", "Name": "DEVELOPMENT PARTNERS INTERNATIONAL LLC", "Address": "824 8th Ave", "City": "Bethlehem", "State": "Pennsylvania", "Zip": 18018, "Country": "United States", "Land_Value": 557300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 460.70470727200001, "SHAPE_Area": 3112.6346324900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368198.566699996590614, 255021.365299999713898 ], [ 368198.50789999961853, 255021.306400001049042 ], [ 368203.429099999368191, 255017.972600001841784 ], [ 368210.096600003540516, 255013.6864 ], [ 368219.578335181926377, 255009.690923012734856 ], [ 368229.146700002253056, 255005.907600000500679 ], [ 368232.949658580881078, 255004.667537563247606 ], [ 368236.890542833018117, 255003.982205446547596 ], [ 368240.888873956690077, 255003.865599166165339 ], [ 368244.862999998033047, 255004.320099998265505 ], [ 368253.752999998629093, 255006.225099999457598 ], [ 368261.690499998629093, 255008.765099998563528 ], [ 368278.200499996542931, 255014.480099998414516 ], [ 368294.710600003600121, 255021.306400001049042 ], [ 368299.731950541085098, 255023.846860260440735 ], [ 368304.523397224314976, 255026.798120708350325 ], [ 368309.051409416249953, 255030.139528366737068 ], [ 368313.284299999475479, 255033.847699999809265 ], [ 368345.351899996399879, 255064.645199999213219 ], [ 368348.209399998188019, 255066.86769999936223 ], [ 368351.066899999976158, 255069.566500000655651 ], [ 368350.991499997675419, 255069.694699998944998 ], [ 368354.0304000005126, 255070.864799998700619 ], [ 368357.325699999928474, 255062.659099999815226 ], [ 368365.511100001633167, 255048.371800001710653 ], [ 368368.813699997961521, 255039.321800000965595 ], [ 368354.325300000607967, 255036.247900001704693 ], [ 368333.427699998021126, 255028.266399998217821 ], [ 368314.119300000369549, 255023.042100001126528 ], [ 368302.883100003004074, 255016.828400000929832 ], [ 368251.417599998414516, 255000.153000000864267 ], [ 368217.656700000166893, 254987.633299998939037 ], [ 368203.943999998271465, 254988.15430000051856 ], [ 368186.988099999725819, 254990.759700000286102 ], [ 368176.256099998950958, 255020.013900000602007 ], [ 368198.566699996590614, 255021.365299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602023400", "MAP": "B9-57-T60", "PARCEL_NAM": "1-37", "ACRE": "0.17", "LONGITUDE": -64.86963991, "LATITUDE": 18.32412246, "OBJECTID_1": 38403, "PARCEL_NO_": "107602023400", "Tax_Legal_": "1-37 FRYDENHOJ RED HOOK QTR", "Name": "Shirley Lewis (Life Estate)", "Address": "PO Box 503175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23300, "Improved_V": 161600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.56255125, "SHAPE_Area": 854.69643222800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365315.205899998545647, 255026.361800000071526 ], [ 365305.71000000089407, 255005.174699999392033 ], [ 365291.101000003516674, 255016.243099998682737 ], [ 365285.417300000786781, 255020.840599998831749 ], [ 365275.666000001132488, 255029.6266999989748 ], [ 365271.589500002563, 255034.870700001716614 ], [ 365289.238499999046326, 255045.56980000063777 ], [ 365315.205899998545647, 255026.361800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602022400", "MAP": null, "PARCEL_NAM": "1-29", "ACRE": null, "LONGITUDE": -64.87119003, "LATITUDE": 18.32414587, "OBJECTID_1": 38393, "PARCEL_NO_": "107602022400", "Tax_Legal_": "1-29 FRYDENHOJ RED HOOK QTR", "Name": "FREEMAN, ENA", "Address": "PO Box 9799", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.18934019, "SHAPE_Area": 1122.0083546799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365103.847699999809265, 255036.875300001353025 ], [ 365147.329300001263618, 255044.197299998253584 ], [ 365156.405500002205372, 255019.995799999684095 ], [ 365124.219499997794628, 255011.921900000423193 ], [ 365118.564499996602535, 255013.142200000584126 ], [ 365113.688900001347065, 255017.535300001502037 ], [ 365110.400700002908707, 255024.896600000560284 ], [ 365107.942199997603893, 255029.520599998533726 ], [ 365103.847699999809265, 255036.875300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602023700", "MAP": "B9-57-T60", "PARCEL_NAM": "1-35", "ACRE": "0.143", "LONGITUDE": -64.87030377000001, "LATITUDE": 18.32412699, "OBJECTID_1": 38406, "PARCEL_NO_": "107602023700", "Tax_Legal_": "1-35 FRYDENHOJ RED HOOK QTR", "Name": "JOSEPH, INNOCENT & ROWENA", "Address": "P.O. BOX 4653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 19100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.242037829699996, "SHAPE_Area": 563.89640134399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365237.871799997985363, 255017.285100001841784 ], [ 365213.736400000751019, 255010.754700001329184 ], [ 365215.899999998509884, 255040.747699998319149 ], [ 365232.011900000274181, 255042.568300001323223 ], [ 365237.871799997985363, 255017.285100001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602023000", "MAP": "B9-57-T60", "PARCEL_NAM": "1-38", "ACRE": "0.139", "LONGITUDE": -64.86931089, "LATITUDE": 18.32413875, "OBJECTID_1": 38399, "PARCEL_NO_": "107602023000", "Tax_Legal_": "1-38 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "CADET, MARIE VICTORIA", "Address": "PO Box 503201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.110574678600003, "SHAPE_Area": 418.87956935 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365343.527500003576279, 255014.772300001233816 ], [ 365315.205899998545647, 255026.361800000071526 ], [ 365321.525100000202656, 255041.823300000280142 ], [ 365327.998999997973442, 255039.132100000977516 ], [ 365336.872000001370907, 255038.782499998807907 ], [ 365343.527500003576279, 255014.772300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83267678, "LATITUDE": 18.32391345, "OBJECTID_1": 40077, "PARCEL_NO_": "107802011600", "Tax_Legal_": "NAZARETH 6H RED HOOK QTR", "Name": "FEDDERSEN, WALTER & JANE", "Address": "PO Box 502134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 299300, "Improved_V": 1200600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.60316691000003, "SHAPE_Area": 2788.5354856499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369206.43129999935627, 255068.587099999189377 ], [ 369244.237300001084805, 255035.723200000822544 ], [ 369241.358900003135204, 255032.953099999576807 ], [ 369233.344300001859665, 255027.188000001013279 ], [ 369225.317100003361702, 255022.900499999523163 ], [ 369218.107100002467632, 255017.353000000119209 ], [ 369216.528599999845028, 255013.329300001263618 ], [ 369213.337499998509884, 255009.292399998754263 ], [ 369207.779700003564358, 254999.114399999380112 ], [ 369204.574199996888638, 254996.766199998557568 ], [ 369200.544399999082088, 254996.522100001573563 ], [ 369198.118299998342991, 254997.346599999815226 ], [ 369195.67960000038147, 254999.648699998855591 ], [ 369196.423000000417233, 255007.043000001460314 ], [ 369198.814900003373623, 255010.228999998420477 ], [ 369202.823100000619888, 255013.006000000983477 ], [ 369202.772799998521805, 255018.916299998760223 ], [ 369199.527699999511242, 255021.21169999986887 ], [ 369194.689900003373623, 255021.172100000083447 ], [ 369184.996100001037121, 255023.203699998557568 ], [ 369178.954199999570847, 255024.019400000572205 ], [ 369158.485799998044968, 255059.820300001651049 ], [ 369163.729900002479553, 255058.493400000035763 ], [ 369182.284100003540516, 255057.589800000190735 ], [ 369192.748199999332428, 255059.786400001496077 ], [ 369203.987999998033047, 255065.577899999916553 ], [ 369206.43129999935627, 255068.587099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602026600", "MAP": "A9-530-T99", "PARCEL_NAM": "1-67", "ACRE": "0.23", "LONGITUDE": -64.8723352, "LATITUDE": 18.32406968, "OBJECTID_1": 38434, "PARCEL_NO_": "107602026600", "Tax_Legal_": "1-67 EST FRYDENHOJ REDHOOK QTR", "Name": "RODRIQUEZ, PRISCILLA A. LOPEZ", "Address": "PO Box 8421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 78400, "Improved_V": 97000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.527622849, "SHAPE_Area": 740.74197915599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364987.108599998056889, 255015.232700001448393 ], [ 365014.320100001990795, 255039.309000000357628 ], [ 365015.963299997150898, 255035.733800001442432 ], [ 365019.20830000191927, 255033.438400000333786 ], [ 365021.726099997758865, 255021.848799999803305 ], [ 365025.046700000762939, 255010.688099998980761 ], [ 365026.684500001370907, 255007.746199999004602 ], [ 365024.301500000059605, 255003.504799999296665 ], [ 365022.690700002014637, 255003.280499998480082 ], [ 365017.854599997401237, 255003.029800001531839 ], [ 365005.718599997460842, 255007.785700000822544 ], [ 364987.108599998056889, 255015.232700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602026300", "MAP": "A9-530-T99", "PARCEL_NAM": "1-62", "ACRE": "0.23", "LONGITUDE": -64.87304326, "LATITUDE": 18.3240193, "OBJECTID_1": 38431, "PARCEL_NO_": "107602026300", "Tax_Legal_": "1-62 EST FRYDENHOJ REDHOOK QTR", "Name": "THOMAS, WARDFORD", "Address": "PO Box 10596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26200, "Improved_V": 230500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.19360368, "SHAPE_Area": 1111.5416176599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364958.063400000333786, 255017.105900000780821 ], [ 364940.578100003302097, 254987.198600001633167 ], [ 364919.444899998605251, 255006.868400000035763 ], [ 364911.268500000238419, 255020.100400000810623 ], [ 364936.95719999819994, 255033.609600000083447 ], [ 364941.841899998486042, 255028.161100000143051 ], [ 364952.397600002586842, 255019.592700000852346 ], [ 364958.063400000333786, 255017.105900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802011400", "MAP": "D9-1835-T81", "PARCEL_NAM": "6N", "ACRE": "1.00", "LONGITUDE": -64.83421739000001, "LATITUDE": 18.32402444, "OBJECTID_1": 40075, "PARCEL_NO_": "107802011400", "Tax_Legal_": "NAZARETH 6N RED HOOK QTR", "Name": "STEINBERG, MITCHELL & RANDY", "Address": "85 Coves Run", "City": "OYSTER BAY COVE", "State": "New York", "Zip": 11791, "Country": "United States", "Land_Value": 557000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.89909806899999, "SHAPE_Area": 3760.7134242400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369104.0574000030756, 255058.638300001621246 ], [ 369097.039700001478195, 255030.505399998277426 ], [ 369063.961099997162819, 255032.556699998676777 ], [ 369032.17059999704361, 255032.404599998146296 ], [ 369001.8733000010252, 255032.25959999859333 ], [ 368981.697499997913837, 255034.205400001257658 ], [ 368984.669200003147125, 255063.993999999016523 ], [ 368985.42339999973774, 255070.121800001710653 ], [ 369003.774300001561642, 255067.837799999862909 ], [ 369021.73309999704361, 255066.291600000113249 ], [ 369035.630400002002716, 255063.84739999845624 ], [ 369041.922799997031689, 255063.829300001263618 ], [ 369056.441799998283386, 255063.314800001680851 ], [ 369104.0574000030756, 255058.638300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86774904000001, "LATITUDE": 18.32398669, "OBJECTID_1": 38498, "PARCEL_NO_": "107602041300", "Tax_Legal_": "46-4&POR OF 47 FRYDENHOJ RED HOOK QTR", "Name": "WHITE, TERRANCE", "Address": "6206 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40500, "Improved_V": 27700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.50933645800001, "SHAPE_Area": 893.16335892300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365478.10980000346899, 255024.317600000649691 ], [ 365511.087700001895428, 255034.08669999986887 ], [ 365511.199199996888638, 255020.999800000339746 ], [ 365509.627899996936321, 255016.131799999624491 ], [ 365492.921899996697903, 254989.397300001233816 ], [ 365489.752400003373623, 254982.827399998903275 ], [ 365478.10980000346899, 255024.317600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8659623, "LATITUDE": 18.32334408, "OBJECTID_1": 39156, "PARCEL_NO_": "107701013800", "Tax_Legal_": "33 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "ROBLES, CLEVIA & PETERSEN, GER", "Address": "1555 N Astor St", "City": "Chicago", "State": "Illinois", "Zip": 60610, "Country": "United States", "Land_Value": 135700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 383.03704186800002, "SHAPE_Area": 4553.5561587399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365712.087099999189377, 254914.353000000119209 ], [ 365718.791199997067451, 254884.6435999982059 ], [ 365695.564499996602535, 254866.08839999884367 ], [ 365683.986699998378754, 254899.979699999094009 ], [ 365670.770999997854233, 254936.812899999320507 ], [ 365637.693099997937679, 255033.434099998325109 ], [ 365698.693400003015995, 254972.083000000566244 ], [ 365712.087099999189377, 254914.353000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701015400", "MAP": "F9-2609-T70", "PARCEL_NAM": "107", "ACRE": ".10", "LONGITUDE": -64.86471271000001, "LATITUDE": 18.32399103, "OBJECTID_1": 39172, "PARCEL_NO_": "107701015400", "Tax_Legal_": "107 FRYDENHOJ RED HOOK QUARTER", "Name": "BRESSENDORF, HANS J", "Address": "PO Box 9644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.545685352099994, "SHAPE_Area": 519.35133008800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365825.822899997234344, 255004.576400000602007 ], [ 365826.405199997127056, 255002.254599999636412 ], [ 365817.000500001013279, 255002.382699999958277 ], [ 365806.155900001525879, 255002.5304000005126 ], [ 365806.790899999439716, 255013.563499998301268 ], [ 365807.902099996805191, 255020.786699999123812 ], [ 365807.055399999022484, 255029.253299999982119 ], [ 365810.155900001525879, 255030.857400000095367 ], [ 365822.374300003051758, 255035.680599998682737 ], [ 365822.353100001811981, 255033.256700001657009 ], [ 365823.182700000703335, 255030.519299998879433 ], [ 365823.245700001716614, 255023.131599999964237 ], [ 365825.822899997234344, 255004.576400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602023800", "MAP": "B9-57-T60", "PARCEL_NAM": "1-34", "ACRE": "0.18", "LONGITUDE": -64.87062398, "LATITUDE": 18.32395102, "OBJECTID_1": 38407, "PARCEL_NO_": "107602023800", "Tax_Legal_": "1-34 FRYDENHOJ RED HOOK QTR", "Name": "SALOME PARSONS", "Address": "PO Box 303332", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033332, "Country": "United States", "Land_Value": 26700, "Improved_V": 189500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.329110908, "SHAPE_Area": 661.766527537 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365183.288900002837181, 254987.918499998748302 ], [ 365174.997400000691414, 255014.659600000828505 ], [ 365192.702100001275539, 255018.815200001001358 ], [ 365199.923000000417233, 255023.096200000494719 ], [ 365204.737499997019768, 255025.879799999296665 ], [ 365204.875900000333786, 255009.626800000667572 ], [ 365202.509199999272823, 255003.485700000077486 ], [ 365198.527900002896786, 254997.542500000447035 ], [ 365193.727799996733665, 254993.070199999958277 ], [ 365187.304300002753735, 254989.851199999451637 ], [ 365183.288900002837181, 254987.918499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602023300", "MAP": "B9-57-T60", "PARCEL_NAM": "1-41", "ACRE": "0.204", "LONGITUDE": -64.86935963000001, "LATITUDE": 18.32394986, "OBJECTID_1": 38402, "PARCEL_NO_": "107602023300", "Tax_Legal_": "1-41 FRYDENHOJ RED HOOK QUARTER", "Name": "FAULKNER, CLARA(LIFE ESTATE)", "Address": "PO Box 3872", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25100, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.586879375, "SHAPE_Area": 822.69577352800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365343.527500003576279, 255014.772300001233816 ], [ 365333.270199999213219, 254988.301699999719858 ], [ 365317.068499997258186, 254997.035000000149012 ], [ 365305.71000000089407, 255005.174699999392033 ], [ 365315.205899998545647, 255026.361800000071526 ], [ 365343.527500003576279, 255014.772300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602022300", "MAP": "B9-57-T60", "PARCEL_NAM": "1-30", "ACRE": "0.25", "LONGITUDE": -64.87161432000001, "LATITUDE": 18.3239888, "OBJECTID_1": 38392, "PARCEL_NO_": "107602022300", "Tax_Legal_": "1-30 EST FRYDENHOJ RED HOOK QTR", "Name": "ROGERS, MILLARD OMADO & STACYANN SILEY", "Address": "6159 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.5991226, "SHAPE_Area": 757.25222115899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365074.380999997258186, 254993.571100000292063 ], [ 365066.912000000476837, 255018.418999999761581 ], [ 365099.929499998688698, 255023.544399999082088 ], [ 365103.194300003349781, 255018.927000001072884 ], [ 365105.651000000536442, 255014.514199998229742 ], [ 365106.498599998652935, 255009.666000001132488 ], [ 365105.708499997854233, 255007.75959999859333 ], [ 365103.307499997317791, 255005.629099998623133 ], [ 365074.380999997258186, 254993.571100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602024800", "MAP": "B9-57-T60", "PARCEL_NAM": "1-43", "ACRE": "0.321", "LONGITUDE": -64.86995076, "LATITUDE": 18.3239144, "OBJECTID_1": 38416, "PARCEL_NO_": "107602024800", "Tax_Legal_": "1-43 FRYDENHOJ RED HOOK QTR", "Name": "JNO BAPTISTE, TIMOTHY & LOUVAI", "Address": "PO Box 6215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40100, "Improved_V": 181700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.280242206, "SHAPE_Area": 1473.3891269600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365260.385099999606609, 254984.977600000798702 ], [ 365247.37389999628067, 254979.149900000542402 ], [ 365246.224500000476837, 254983.367400001734495 ], [ 365245.39299999922514, 254986.315900001674891 ], [ 365237.871799997985363, 255017.285100001841784 ], [ 365269.258699998259544, 255024.508099999278784 ], [ 365279.024300001561642, 255014.033300001174212 ], [ 365287.954899996519089, 255006.929200001060963 ], [ 365295.826999999582767, 255000.852000001817942 ], [ 365260.385099999606609, 254984.977600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87190953, "LATITUDE": 18.32392203, "OBJECTID_1": 38436, "PARCEL_NO_": "107602026800", "Tax_Legal_": "1-68 EST FRYDENHOJ REDHOOK QTR", "Name": "PARADISE DEVELOPMENT CORPORATION", "Address": "PO Box 12288", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.469095606, "SHAPE_Area": 899.46094358100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365074.380999997258186, 254993.571100000292063 ], [ 365055.103200003504753, 254984.758499998599291 ], [ 365044.56360000371933, 254991.427200000733137 ], [ 365040.487099997699261, 254996.67119999974966 ], [ 365035.5287000015378, 255010.773800000548363 ], [ 365035.498199999332428, 255014.362199999392033 ], [ 365066.912000000476837, 255018.418999999761581 ], [ 365074.380999997258186, 254993.571100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602026500", "MAP": "A9-530-T99", "PARCEL_NAM": "1-61", "ACRE": "0.23", "LONGITUDE": -64.87278869, "LATITUDE": 18.32385725, "OBJECTID_1": 38433, "PARCEL_NO_": "107602026500", "Tax_Legal_": "FRYDENHOJ ESTATE 1-61 No.3 RED HOOK QTR.", "Name": "DANIEL, ELLMEADE,SHANTELL,ELLMEADE JR.&TYSON,SHENELL", "Address": "PO Box 7662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.16203175699999, "SHAPE_Area": 1098.5172483599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364983.150799997150898, 255006.545499999076128 ], [ 364969.729400001466274, 254972.871800001710653 ], [ 364947.892399996519089, 254980.503499999642372 ], [ 364940.578100003302097, 254987.198600001633167 ], [ 364958.063400000333786, 255017.105900000780821 ], [ 364961.30120000243187, 255015.654800001531839 ], [ 364983.150799997150898, 255006.545499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602024700", "MAP": "B9-57-T60", "PARCEL_NAM": "1-44", "ACRE": "0.210", "LONGITUDE": -64.87026518, "LATITUDE": 18.32390721, "OBJECTID_1": 38415, "PARCEL_NO_": "107602024700", "Tax_Legal_": "FRYDENHOJ 1-44 RED HOOK QTR", "Name": "RANDOPH ADAMS", "Address": "975 Briarwood Dr", "City": "Haverhill", "State": "Florida", "Zip": 33415, "Country": "United States", "Land_Value": 28800, "Improved_V": 93600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.11502983600001, "SHAPE_Area": 623.98067871600006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365245.39299999922514, 254986.315900001674891 ], [ 365210.611800000071526, 254998.907900001853704 ], [ 365213.736400000751019, 255010.754700001329184 ], [ 365237.871799997985363, 255017.285100001841784 ], [ 365245.39299999922514, 254986.315900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107801021100", "MAP": "D9-6004-T95", "PARCEL_NAM": "6L-29", "ACRE": ".64", "LONGITUDE": -64.84289081, "LATITUDE": 18.32376773, "OBJECTID_1": 40045, "PARCEL_NO_": "107801021100", "Tax_Legal_": "6L-29 NAZARETH No.1 RED HOOK QUARTER", "Name": "DEVELOPMENT PARTNERS INTERNATONAL LLC", "Address": "824 8th Ave", "City": "Bethlehem", "State": "Pennsylvania", "Zip": 18018, "Country": "United States", "Land_Value": 192500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.56311734299999, "SHAPE_Area": 2129.8020249699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368088.713299997150898, 254978.767499998211861 ], [ 368086.234999999403954, 254985.713300000876188 ], [ 368080.445100001990795, 255002.764400001615286 ], [ 368096.485100001096725, 255013.028200000524521 ], [ 368114.949400000274181, 255022.678599998354912 ], [ 368134.232500001788139, 255030.857900001108646 ], [ 368157.552599996328354, 255038.437100000679493 ], [ 368168.819399997591972, 255041.062399998307228 ], [ 368173.763400003314018, 255028.648299999535084 ], [ 368168.135399997234344, 255026.702399998903275 ], [ 368164.116400003433228, 255025.191899999976158 ], [ 368162.518200002610683, 255023.490100000053644 ], [ 368101.556699998676777, 254985.627599999308586 ], [ 368088.713299997150898, 254978.767499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602023900", "MAP": "B9-57-T60", "PARCEL_NAM": "1-33", "ACRE": "0.204", "LONGITUDE": -64.87082629, "LATITUDE": 18.3238719, "OBJECTID_1": 38408, "PARCEL_NO_": "107602023900", "Tax_Legal_": "1-33 FRYDENHOJ RED HOOK QTR", "Name": "MU'MIN, AMEEDAH", "Address": "PO Box 8233", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29700, "Improved_V": 147700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.019298822500005, "SHAPE_Area": 573.34329847000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365164.806699998676777, 254980.379000000655651 ], [ 365156.488200001418591, 255010.286200001835823 ], [ 365174.997400000691414, 255014.659600000828505 ], [ 365183.288900002837181, 254987.918499998748302 ], [ 365164.806699998676777, 254980.379000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602023200", "MAP": "B9-57-T60", "PARCEL_NAM": "1-40", "ACRE": "0.286", "LONGITUDE": -64.8690874, "LATITUDE": 18.32382026, "OBJECTID_1": 38401, "PARCEL_NO_": "107602023200", "Tax_Legal_": "1 40 FRYDENHOJ RED HOOK QTR", "Name": "REGISTE, AMOS & MIRIAN", "Address": "6514 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41800, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.177175331, "SHAPE_Area": 939.54464626900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365372.118900001049042, 254971.521099999547005 ], [ 365359.961300000548363, 254978.809799998998642 ], [ 365355.107199996709824, 254980.669900000095367 ], [ 365342.181000001728535, 254983.519499998539686 ], [ 365333.270199999213219, 254988.301699999719858 ], [ 365343.527500003576279, 255014.772300001233816 ], [ 365366.998700000345707, 255004.620799999684095 ], [ 365372.118900001049042, 254971.521099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602024300", "MAP": "B9-57-T60", "PARCEL_NAM": "1-32", "ACRE": "0.20", "LONGITUDE": -64.87103757, "LATITUDE": 18.32383055, "OBJECTID_1": 38411, "PARCEL_NO_": "107602024300", "Tax_Legal_": "1-32 FRYDENHOJ NO.3 RED HOOK QTR", "Name": "DIAZ, MURIEL D & EST. L. ROBINSON & OTHERS", "Address": "PO Box 11504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31200, "Improved_V": 108900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.721064149, "SHAPE_Area": 807.12273556699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365156.488200001418591, 255010.286200001835823 ], [ 365164.806699998676777, 254980.379000000655651 ], [ 365151.129900000989437, 254976.67850000038743 ], [ 365142.240699999034405, 254978.927700001746416 ], [ 365127.550899997353554, 254999.494699999690056 ], [ 365127.527500003576279, 255002.238699998706579 ], [ 365129.127499997615814, 255003.729400001466274 ], [ 365156.488200001418591, 255010.286200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050900", "MAP": null, "PARCEL_NAM": "2D", "ACRE": null, "LONGITUDE": -64.87753604, "LATITUDE": 18.32378122, "OBJECTID_1": 38095, "PARCEL_NO_": "107601050900", "Tax_Legal_": "MARIENDAHL 2D RED HOOK QTR", "Name": "THE MICHELE SCHULTERBRANDT AGURKIS TRUST", "Address": "P.O. BOX 5325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.1067383, "SHAPE_Area": 1327.17718851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364412.518899999558926, 254974.010800000280142 ], [ 364476.853299997746944, 255002.676199998706579 ], [ 364479.230700001120567, 254999.465799998492002 ], [ 364481.676600001752377, 254996.319400001317263 ], [ 364486.626000002026558, 254983.272100001573563 ], [ 364487.459200002253056, 254980.11259999871254 ], [ 364487.493400000035763, 254976.102099999785423 ], [ 364488.362700000405312, 254968.720899999141693 ], [ 364466.577799998223782, 254970.2314000017941 ], [ 364460.123700000345707, 254970.600699998438358 ], [ 364453.66780000180006, 254971.181200001388788 ], [ 364427.041599996387959, 254973.074200000613928 ], [ 364412.518899999558926, 254974.010800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013400", "MAP": "B9-167-T67", "PARCEL_NAM": "8-4", "ACRE": ".24", "LONGITUDE": -64.8653644, "LATITUDE": 18.32380346, "OBJECTID_1": 39152, "PARCEL_NO_": "107701013400", "Tax_Legal_": "8-4 FRYDENHOJ RED HOOK", "Name": "STANLEY A PHILLIPS, SR. (LIFE ESTATE)", "Address": "P.O. BOX 1902", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27300, "Improved_V": 99500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.383375024, "SHAPE_Area": 660.06200733799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365757.453500002622604, 254984.385099999606609 ], [ 365742.99210000038147, 254978.145100001245737 ], [ 365729.162500001490116, 254992.386199999600649 ], [ 365748.353900000452995, 255011.330600000917912 ], [ 365751.566600002348423, 255012.834600001573563 ], [ 365759.61710000038147, 255014.378100000321865 ], [ 365757.453500002622604, 254984.385099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013500", "MAP": "B9-167-T67", "PARCEL_NAM": "8-3", "ACRE": ".23", "LONGITUDE": -64.86512371000001, "LATITUDE": 18.32376666, "OBJECTID_1": 39153, "PARCEL_NO_": "107701013500", "Tax_Legal_": "FRYDENHOJ 8-3 3 RED HOOK QTR", "Name": "PETERS CONSULTING CONSTRUCTION DEVELOPMENT", "Address": "PO Box 304079", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.93940668600001, "SHAPE_Area": 1041.4143731300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365784.245300002396107, 254963.072900000959635 ], [ 365757.453500002622604, 254984.385099999606609 ], [ 365759.61710000038147, 255014.378100000321865 ], [ 365765.26129999756813, 255014.424300000071526 ], [ 365771.724399998784065, 255012.999600000679493 ], [ 365780.638800002634525, 255007.795200001448393 ], [ 365786.338699996471405, 255001.297899998724461 ], [ 365785.035400003194809, 254964.979200001806021 ], [ 365784.245300002396107, 254963.072900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86395341, "LATITUDE": 18.32359281, "OBJECTID_1": 39213, "PARCEL_NO_": "107701020500", "Tax_Legal_": "17AA FRYDENHOJ 3 RED HOOK QTR", "Name": "HAROLD RABSATT AND ALVARA RABSATT JOINT LIVING TRU", "Address": "PO Box 754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38700, "Improved_V": 122900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.53821184500001, "SHAPE_Area": 1913.5333987900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365913.5675999969244, 255009.885200001299381 ], [ 365910.08839999884367, 254941.229899998754263 ], [ 365882.796999998390675, 254942.559000000357628 ], [ 365882.757399998605251, 254947.202799998223782 ], [ 365881.907999999821186, 254952.262099999934435 ], [ 365876.721199996769428, 254993.171799998730421 ], [ 365913.5675999969244, 255009.885200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602026700", "MAP": "A9-530-T99", "PARCEL_NAM": "1-60", "ACRE": "0.23", "LONGITUDE": -64.87252282, "LATITUDE": 18.32376289, "OBJECTID_1": 38435, "PARCEL_NO_": "107602026700", "Tax_Legal_": "1-60 EST FRYDENHOJ REDHOOK QTR", "Name": "PARADISE DEVELOPMENT CORP", "Address": "PO Box 12288", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.99481706399999, "SHAPE_Area": 1077.58294527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365011.465199999511242, 254995.800400000065565 ], [ 364998.036700002849102, 254962.970899999141693 ], [ 364969.729400001466274, 254972.871800001710653 ], [ 364983.150799997150898, 255006.545499999076128 ], [ 365000.140900000929832, 254999.929499998688698 ], [ 365011.465199999511242, 254995.800400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602024900", "MAP": "B9-57-T60", "PARCEL_NAM": "1-42", "ACRE": "0.226", "LONGITUDE": -64.86968943, "LATITUDE": 18.32374074, "OBJECTID_1": 38417, "PARCEL_NO_": "107602024900", "Tax_Legal_": "1-42 FRYDENHOJ RED HOOK QTR", "Name": "SHIRLEY FREDERICKS BENJAMIN & FRANCES THOMAS", "Address": "1-42 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 121700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.855154414, "SHAPE_Area": 887.81160506100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365318.701099999248981, 254985.973700001835823 ], [ 365276.963500000536442, 254966.490899998694658 ], [ 365273.377700001001358, 254974.925500001758337 ], [ 365267.709600001573563, 254988.258200000971556 ], [ 365295.826999999582767, 255000.852000001817942 ], [ 365296.071999996900558, 255000.662799999117851 ], [ 365311.485399998724461, 254989.812100000679493 ], [ 365313.105200000107288, 254988.980999998748302 ], [ 365318.701099999248981, 254985.973700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041500", "MAP": "A9-58-T66", "PARCEL_NAM": "47-1", "ACRE": ".27", "LONGITUDE": -64.86750503, "LATITUDE": 18.32371182, "OBJECTID_1": 38499, "PARCEL_NO_": "107602041500", "Tax_Legal_": "47-1 48-7&8 FRYDENHOJ RED HOOK QTR", "Name": "TRUST AGREEMENT OF RALDA V SIMMONDS", "Address": "PO Box 7755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 134300, "Improved_V": 332000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.402157743, "SHAPE_Area": 1363.3603119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365548.555699996650219, 254990.063700001686811 ], [ 365546.145700000226498, 254988.988499999046326 ], [ 365542.14469999819994, 254985.367199998348951 ], [ 365532.629000000655651, 254966.502000000327826 ], [ 365527.821699999272823, 254962.874000001698732 ], [ 365521.3783999979496, 254961.97690000012517 ], [ 365511.681100003421307, 254964.430700000375509 ], [ 365502.766699999570847, 254969.635000001639128 ], [ 365498.686599999666214, 254975.301199998706579 ], [ 365500.227300003170967, 254983.757500000298023 ], [ 365515.338600002229214, 255008.368099998682737 ], [ 365548.555699996650219, 254990.063700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8545237, "LATITUDE": 18.32366959, "OBJECTID_1": 39475, "PARCEL_NO_": "107702012600", "Tax_Legal_": "NAZARETH ESTATE TRACK A OF 1&2 RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 630900, "Improved_V": 8800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.67804872299999, "SHAPE_Area": 1143.1114466700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366896.223899997770786, 254963.519099999219179 ], [ 366870.21509999781847, 254987.581999998539686 ], [ 366895.774300001561642, 255016.288800001144409 ], [ 366912.857900001108646, 254998.696699999272823 ], [ 366911.274099998176098, 254995.30629999935627 ], [ 366910.489399999380112, 254992.766699999570847 ], [ 366909.724399998784065, 254987.905299998819828 ], [ 366904.146700002253056, 254980.049199998378754 ], [ 366896.223899997770786, 254963.519099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602014100", "MAP": "B9-57-T60", "PARCEL_NAM": "1-31", "ACRE": "0.199", "LONGITUDE": -64.87140922, "LATITUDE": 18.32375872, "OBJECTID_1": 38335, "PARCEL_NO_": "107602014100", "Tax_Legal_": "1-31 FRYDENHOJ RED HOOK QTR", "Name": "SMITH, OSCAR & MAUREEN", "Address": "4131 Firewater Ct", "City": "Orlando", "State": "Florida", "Zip": 32829, "Country": "United States", "Land_Value": 25200, "Improved_V": 143600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.98772696899999, "SHAPE_Area": 701.76401379699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365105.245600000023842, 254967.436999998986721 ], [ 365087.319799996912479, 254989.243999999016523 ], [ 365111.424599997699261, 254999.362700000405312 ], [ 365114.651699997484684, 254999.177999999374151 ], [ 365118.699400000274181, 254997.311299998313189 ], [ 365127.682099997997284, 254984.085900001227856 ], [ 365105.245600000023842, 254967.436999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602024600", "MAP": "B9-57-T60", "PARCEL_NAM": "1-45", "ACRE": "0.259", "LONGITUDE": -64.87035072, "LATITUDE": 18.32371222, "OBJECTID_1": 38414, "PARCEL_NO_": "107602024600", "Tax_Legal_": "1-45 FRYDENHOJ RED HOOK QTR", "Name": "MADURO, CLOZANAH & IRA C", "Address": "6007 Frydenhoj 1-45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 182700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.43802951500001, "SHAPE_Area": 1029.8868233200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365247.37389999628067, 254979.149900000542402 ], [ 365206.099399998784065, 254960.663100000470877 ], [ 365200.232299998402596, 254986.790600001811981 ], [ 365205.820699997246265, 254993.380300000309944 ], [ 365209.818099997937679, 254997.423799999058247 ], [ 365210.611800000071526, 254998.907900001853704 ], [ 365245.39299999922514, 254986.315900001674891 ], [ 365246.224500000476837, 254983.367400001734495 ], [ 365247.37389999628067, 254979.149900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86682052, "LATITUDE": 18.32368135, "OBJECTID_1": 38502, "PARCEL_NO_": "107602041900", "Tax_Legal_": "54-A EST FRYDENHOJ NO.3 RED HOOK QTR", "Name": "BROWN (LIFE ESTATE), ALVIN W.", "Address": "821 NW 196 Ter", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.00397132099999, "SHAPE_Area": 1324.8091731899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365569.48200000077486, 254994.667899999767542 ], [ 365605.715700000524521, 255000.875100001692772 ], [ 365609.021899998188019, 254991.403000000864267 ], [ 365618.094499997794628, 254967.623599998652935 ], [ 365580.25900000333786, 254960.136799998581409 ], [ 365579.420299999415874, 254963.92960000038147 ], [ 365569.48200000077486, 254994.667899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602026900", "MAP": "A9-530-T99", "PARCEL_NAM": "1-59", "ACRE": "0.23", "LONGITUDE": -64.87226081, "LATITUDE": 18.32364728, "OBJECTID_1": 38437, "PARCEL_NO_": "107602026900", "Tax_Legal_": "FRYDENHOJ ESTATE 1-59 REDHOOK QTR", "Name": "THOMAS, SERAPHINE & JOSEPH", "Address": "PO Box 306334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 179700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.28442684699999, "SHAPE_Area": 1168.9855978200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365038.978799998760223, 254984.415399998426437 ], [ 365023.185199998319149, 254945.233800001442432 ], [ 364998.036700002849102, 254962.970899999141693 ], [ 365011.465199999511242, 254995.800400000065565 ], [ 365026.835500001907349, 254990.015500001609325 ], [ 365030.073399998247623, 254988.564399998635054 ], [ 365038.978799998760223, 254984.415399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87166007, "LATITUDE": 18.32366776, "OBJECTID_1": 38438, "PARCEL_NO_": "107602027000", "Tax_Legal_": "1-69 EST FRYDENHOJ REDHOOK QTR", "Name": "RYAN, WILMOTH", "Address": "PO Box 8743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34600, "Improved_V": 234700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.68110822400001, "SHAPE_Area": 992.82010622500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365105.245600000023842, 254967.436999998986721 ], [ 365082.001000002026558, 254950.992499999701977 ], [ 365078.703900001943111, 254959.409299999475479 ], [ 365077.064300000667572, 254962.562300000339746 ], [ 365071.346400000154972, 254971.170299999415874 ], [ 365066.467100001871586, 254975.985500000417233 ], [ 365055.103200003504753, 254984.758499998599291 ], [ 365074.380999997258186, 254993.571100000292063 ], [ 365087.319799996912479, 254989.243999999016523 ], [ 365105.245600000023842, 254967.436999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604022800", "MAP": "F9-3436-T76", "PARCEL_NAM": "175A", "ACRE": "1.00", "LONGITUDE": -64.86636891000001, "LATITUDE": 18.32287989, "OBJECTID_1": 38937, "PARCEL_NO_": "107604022800", "Tax_Legal_": "175A FRYDENHOJ RED HOOK QTR", "Name": "VANTERPOOL, HAROLD & M", "Address": "6211 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 110300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 440.92978196600001, "SHAPE_Area": 3216.4166444100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365646.967500001192093, 254796.663100000470877 ], [ 365636.487199999392033, 254796.366200000047684 ], [ 365643.669200003147125, 254899.860800001770258 ], [ 365632.116499997675419, 254930.796999998390675 ], [ 365621.389899998903275, 254959.418000001460314 ], [ 365618.094499997794628, 254967.623599998652935 ], [ 365609.021899998188019, 254991.403000000864267 ], [ 365625.923900000751019, 254995.129900000989437 ], [ 365658.252999998629093, 254891.747499998658895 ], [ 365661.562799997627735, 254881.853199999779463 ], [ 365660.02929999679327, 254872.552600000053644 ], [ 365656.146899998188019, 254855.0 ], [ 365664.344899997115135, 254839.235100001096725 ], [ 365661.943999998271465, 254837.104499999433756 ], [ 365657.971799999475479, 254830.105900000780821 ], [ 365650.975699998438358, 254799.440099999308586 ], [ 365646.967500001192093, 254796.663100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602028200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87005342, "LATITUDE": 18.32349971, "OBJECTID_1": 38450, "PARCEL_NO_": "107602028200", "Tax_Legal_": "1-76 EST FRYDENHOJ REDHOOK QTR", "Name": "PILGRIM, CLAIRE", "Address": "PO Box 12125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39900, "Improved_V": 27400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.87931428900001, "SHAPE_Area": 1159.67789642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365266.500900000333786, 254969.601199999451637 ], [ 365253.920000001788139, 254931.923500001430511 ], [ 365249.076800003647804, 254932.517200000584126 ], [ 365245.06139999628067, 254930.584499999880791 ], [ 365241.013599999248981, 254932.451200000941753 ], [ 365238.585699997842312, 254933.486800000071526 ], [ 365229.6875, 254936.791499998420477 ], [ 365251.909500002861023, 254981.181400001049042 ], [ 365260.385099999606609, 254984.977600000798702 ], [ 365267.709600001573563, 254988.258200000971556 ], [ 365272.116599999368191, 254977.892000000923872 ], [ 365268.930500000715256, 254973.188200000673532 ], [ 365266.500900000333786, 254969.601199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86955259, "LATITUDE": 18.32360649, "OBJECTID_1": 38418, "PARCEL_NO_": "107602025000", "Tax_Legal_": "1-50&52A FRYDENHOJ RED HOOK QTR", "Name": "MILLER, GLENN A and ENA", "Address": "PO Box 8365", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42400, "Improved_V": 178300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.39192511799999, "SHAPE_Area": 856.86595656300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365276.963500000536442, 254966.490899998694658 ], [ 365318.701099999248981, 254985.973700001835823 ], [ 365339.027699999511242, 254975.049899999052286 ], [ 365327.778899997472763, 254970.313799999654293 ], [ 365305.230899997055531, 254966.7516999989748 ], [ 365307.691200003027916, 254961.916700001806021 ], [ 365283.344099998474121, 254951.482400000095367 ], [ 365276.963500000536442, 254966.490899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701016100", "MAP": "B9-167-T67", "PARCEL_NAM": "8-5", "ACRE": ".24", "LONGITUDE": -64.86559421, "LATITUDE": 18.32357246, "OBJECTID_1": 39179, "PARCEL_NO_": "107701016100", "Tax_Legal_": "8-5 FRYDENHOJ RED HOOK", "Name": "VINCENT SAMUEL FAMILY REVOC TRUST", "Address": "169-3 ESTATE FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31400, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.45659724500001, "SHAPE_Area": 963.28844316799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365742.99210000038147, 254978.145100001245737 ], [ 365737.434199996292591, 254967.967099998146296 ], [ 365724.727399997413158, 254945.065000001341105 ], [ 365698.693400003015995, 254972.083000000566244 ], [ 365699.445799998939037, 254978.421900000423193 ], [ 365704.319600000977516, 254974.239999998360872 ], [ 365708.356600001454353, 254973.639699999243021 ], [ 365711.574600003659725, 254974.510400000959635 ], [ 365729.162500001490116, 254992.386199999600649 ], [ 365742.99210000038147, 254978.145100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86426994, "LATITUDE": 18.32356816, "OBJECTID_1": 39212, "PARCEL_NO_": "107701020400", "Tax_Legal_": "17A ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "HODGE, WHITFIELD", "Address": "PO Box 307724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35100, "Improved_V": 172100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.259869049, "SHAPE_Area": 1121.32665367 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365881.907999999821186, 254952.262099999934435 ], [ 365867.370999999344349, 254954.887299999594688 ], [ 365854.461000002920628, 254955.837099999189377 ], [ 365844.763599999248981, 254958.290899999439716 ], [ 365843.134800001978874, 254960.177400000393391 ], [ 365841.3783999979496, 254977.050500001758337 ], [ 365876.721199996769428, 254993.171799998730421 ], [ 365881.907999999821186, 254952.262099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602024500", "MAP": "B9-57-T60", "PARCEL_NAM": "1-46 REM", "ACRE": "6,988 sq ft", "LONGITUDE": -64.87060503, "LATITUDE": 18.32360304, "OBJECTID_1": 38413, "PARCEL_NO_": "107602024500", "Tax_Legal_": "1-46 FRYDENHOJ RED HOOK QTR", "Name": "BERKELEY, DEBRA", "Address": "4105 Moreland Dr", "City": "Valrico", "State": "Florida", "Zip": 33596, "Country": "United States", "Land_Value": 20500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.894875258, "SHAPE_Area": 567.35379786 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365186.035099998116493, 254949.521999999880791 ], [ 365187.088600002229214, 254956.325100000947714 ], [ 365182.236900001764297, 254967.223400000482798 ], [ 365180.157200001180172, 254976.916000001132488 ], [ 365193.013199999928474, 254982.298599999397993 ], [ 365200.232299998402596, 254986.790600001811981 ], [ 365206.099399998784065, 254960.663100000470877 ], [ 365197.27139999717474, 254955.735700000077486 ], [ 365186.035099998116493, 254949.521999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602027100", "MAP": "A9-530-T99", "PARCEL_NAM": "1-58", "ACRE": "0.23", "LONGITUDE": -64.87202525, "LATITUDE": 18.32351444, "OBJECTID_1": 38439, "PARCEL_NO_": "107602027100", "Tax_Legal_": "1-58 EST FRYDENHOJ REDHOOK QTR", "Name": "THOMAS, JOSEPH & SERAPHINE", "Address": "PO Box 6334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.69141483499999, "SHAPE_Area": 1204.21608631 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365067.39750000089407, 254961.427700001746416 ], [ 365036.217500001192093, 254929.930700000375509 ], [ 365027.240099996328354, 254942.522799998521805 ], [ 365023.185199998319149, 254945.233800001442432 ], [ 365038.978799998760223, 254984.415399998426437 ], [ 365052.766999997198582, 254975.028999999165535 ], [ 365054.390399999916553, 254973.775800000876188 ], [ 365064.134499996900558, 254965.833999998867512 ], [ 365067.39750000089407, 254961.427700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602024200", "MAP": "B9-57-T60", "PARCEL_NAM": "1-49", "ACRE": "0.206", "LONGITUDE": -64.8712526, "LATITUDE": 18.32356768, "OBJECTID_1": 38410, "PARCEL_NO_": "107602024200", "Tax_Legal_": "1-49 FRYDENHOJ RED HOOK QTR", "Name": "REY, RANDOLPH VIONEY", "Address": "BOX 3798", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30300, "Improved_V": 197400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.82415128700001, "SHAPE_Area": 793.50880640599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365144.758599996566772, 254967.338199999183416 ], [ 365125.620999999344349, 254942.0614 ], [ 365123.17509999871254, 254945.207800000905991 ], [ 365105.245600000023842, 254967.436999998986721 ], [ 365127.682099997997284, 254984.085900001227856 ], [ 365135.846000000834465, 254972.331500001251698 ], [ 365139.904500000178814, 254969.198300000280142 ], [ 365144.758599996566772, 254967.338199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601051200", "MAP": "A9-78-T67", "PARCEL_NAM": "33-77", "ACRE": "0.14", "LONGITUDE": -64.87824651, "LATITUDE": 18.32358681, "OBJECTID_1": 38096, "PARCEL_NO_": "107601051200", "Tax_Legal_": "33-77 NADIR RED HOOK QTR", "Name": "JOYCE ROBLES POTTER TRUST", "Address": "PO Box 7191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18200, "Improved_V": 89600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.006760253, "SHAPE_Area": 594.78950329099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364399.8733000010252, 254943.932000000029802 ], [ 364398.267899997532368, 254943.074499998241663 ], [ 364395.863300003111362, 254941.366099998354912 ], [ 364370.734499998390675, 254956.781300000846386 ], [ 364377.824100002646446, 254976.471000000834465 ], [ 364390.734099999070168, 254975.521200001239777 ], [ 364399.8733000010252, 254943.932000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602028000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87033034, "LATITUDE": 18.3234722, "OBJECTID_1": 38448, "PARCEL_NO_": "107602028000", "Tax_Legal_": "1-75 ESTATE FRYDENHOJ No.3 RED HOOK QTR.", "Name": "LEWIS, DONALD & ROSEITA", "Address": "PO Box 502334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31500, "Improved_V": 159500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.682872092, "SHAPE_Area": 1234.12166733 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365251.909500002861023, 254981.181400001049042 ], [ 365229.6875, 254936.791499998420477 ], [ 365224.041500002145767, 254936.956300001591444 ], [ 365216.799099996685982, 254935.208299998193979 ], [ 365213.581000000238419, 254934.337600000202656 ], [ 365211.172899998724461, 254933.051300000399351 ], [ 365207.161100000143051, 254930.69649999961257 ], [ 365197.27139999717474, 254955.735700000077486 ], [ 365206.099399998784065, 254960.663100000470877 ], [ 365247.37389999628067, 254979.149900000542402 ], [ 365251.909500002861023, 254981.181400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701015300", "MAP": "F9-28-T56", "PARCEL_NAM": "57", "ACRE": ".28", "LONGITUDE": -64.86469535000001, "LATITUDE": 18.32366349, "OBJECTID_1": 39171, "PARCEL_NO_": "107701015300", "Tax_Legal_": "ESTATE FRYDENHOJ 57 RED HOOK QUARTER", "Name": "BRESSENDORFF (LIFE ESTATE), ESTHER", "Address": "PO Box 502038", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39700, "Improved_V": 51600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.74692228399999, "SHAPE_Area": 1060.37710975 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365833.408699996769428, 254966.008400000631809 ], [ 365833.627099998295307, 254961.109600000083447 ], [ 365820.578199997544289, 254961.459199998527765 ], [ 365803.748199999332428, 254961.910100001841784 ], [ 365804.448899999260902, 254973.731699999421835 ], [ 365804.654700003564358, 254977.203200001269579 ], [ 365806.155900001525879, 255002.5304000005126 ], [ 365817.000500001013279, 255002.382699999958277 ], [ 365826.405199997127056, 255002.254599999636412 ], [ 365829.996500000357628, 254987.934200000017881 ], [ 365832.508900001645088, 254976.977899998426437 ], [ 365833.408699996769428, 254966.008400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601051300", "MAP": "A9-78-T67", "PARCEL_NAM": "33-76", "ACRE": "0.09", "LONGITUDE": -64.87808125, "LATITUDE": 18.32360108, "OBJECTID_1": 38097, "PARCEL_NO_": "107601051300", "Tax_Legal_": "33-76 NADIR RED HOOK QUARTER", "Name": "FRANCIS, FIDELIA", "Address": "33-76 Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 63400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.701678713800007, "SHAPE_Area": 484.58015703799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364411.138300001621246, 254946.768399998545647 ], [ 364404.695000000298023, 254945.871300000697374 ], [ 364399.8733000010252, 254943.932000000029802 ], [ 364390.734099999070168, 254975.521200001239777 ], [ 364412.518899999558926, 254974.010800000280142 ], [ 364411.138300001621246, 254946.768399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601051400", "MAP": "A9-78-T67", "PARCEL_NAM": "33-75", "ACRE": "0.09", "LONGITUDE": -64.87793232, "LATITUDE": 18.32358588, "OBJECTID_1": 38098, "PARCEL_NO_": "107601051400", "Tax_Legal_": "33-75 NADIR RED HOOK QTR", "Name": "TYSON, TIFFANY T.", "Address": "7132 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 74900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.690607864499995, "SHAPE_Area": 384.66998614099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364427.041599996387959, 254973.074200000613928 ], [ 364424.852799996733665, 254946.036299999803305 ], [ 364411.138300001621246, 254946.768399998545647 ], [ 364412.518899999558926, 254974.010800000280142 ], [ 364427.041599996387959, 254973.074200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013600", "MAP": "B9-167-T67", "PARCEL_NAM": "8-2", "ACRE": ".24", "LONGITUDE": -64.86522778, "LATITUDE": 18.32348465, "OBJECTID_1": 39154, "PARCEL_NO_": "107701013600", "Tax_Legal_": "FRYDENHOJ ESTATE 8-2 No.3 RED HOOK QTR.", "Name": "PETERS, FELIX, NEWTON, F. & OTHERS", "Address": "BOX 4079", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78400, "Improved_V": 206000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.31921151200001, "SHAPE_Area": 1345.7440914599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365784.245300002396107, 254963.072900000959635 ], [ 365781.907200001180172, 254953.554499998688698 ], [ 365777.949400000274181, 254944.867300000041723 ], [ 365773.971799999475479, 254938.501899998635054 ], [ 365772.368199996650219, 254937.433400001376867 ], [ 365767.586000002920628, 254930.850299999117851 ], [ 365737.434199996292591, 254967.967099998146296 ], [ 365742.99210000038147, 254978.145100001245737 ], [ 365757.453500002622604, 254984.385099999606609 ], [ 365784.245300002396107, 254963.072900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601051500", "MAP": "A9-78-T67", "PARCEL_NAM": "33-74", "ACRE": "0.09", "LONGITUDE": -64.87777218, "LATITUDE": 18.32359008, "OBJECTID_1": 38099, "PARCEL_NO_": "107601051500", "Tax_Legal_": "NADIR 33-74 RED HOOK QTR", "Name": "BASS, MARIE T", "Address": "PO Box 304817", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10800, "Improved_V": 74900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.642925321299998, "SHAPE_Area": 503.13172440900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364453.66780000180006, 254971.181200001388788 ], [ 364433.740199998021126, 254943.998100001364946 ], [ 364424.852799996733665, 254946.036299999803305 ], [ 364427.041599996387959, 254973.074200000613928 ], [ 364453.66780000180006, 254971.181200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86722764, "LATITUDE": 18.32347631, "OBJECTID_1": 38503, "PARCEL_NO_": "107602042000", "Tax_Legal_": "48-6 FRYDENHOJ(POR 47) NO. 3 RED HOOK QTR", "Name": "FITHO DHAITY", "Address": "PO Box 10657", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013657, "Country": "United States", "Land_Value": 33200, "Improved_V": 1000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.04264788500001, "SHAPE_Area": 941.84248922999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365562.7179000005126, 254936.772900000214577 ], [ 365529.583599999547005, 254945.36769999936223 ], [ 365533.525200001895428, 254955.954599998891354 ], [ 365535.134300000965595, 254956.390000000596046 ], [ 365539.137100003659725, 254959.800200000405312 ], [ 365544.703900001943111, 254968.922800000756979 ], [ 365548.651000000536442, 254978.876499999314547 ], [ 365553.460100002586842, 254982.293400000780821 ], [ 365556.690700002014637, 254981.686500001698732 ], [ 365561.5574000030756, 254978.348900001496077 ], [ 365564.084200002253056, 254965.703899998217821 ], [ 365562.550700001418591, 254956.403299998492002 ], [ 365561.891800001263618, 254939.088199999183416 ], [ 365562.7179000005126, 254936.772900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601051600", "MAP": "A9-78-T67", "PARCEL_NAM": "33-73", "ACRE": "0.10", "LONGITUDE": -64.87762491, "LATITUDE": 18.32353838, "OBJECTID_1": 38100, "PARCEL_NO_": "107601051600", "Tax_Legal_": "33-73 & 129 NADIR RED HOOK QTR", "Name": "REHENIA F JOSHUA FAMILY TRUST", "Address": "PO Box 211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14400, "Improved_V": 83000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.050148217599997, "SHAPE_Area": 520.61525290300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364449.298000000417233, 254944.640799999237061 ], [ 364438.160899996757507, 254938.796900000423193 ], [ 364433.740199998021126, 254943.998100001364946 ], [ 364453.66780000180006, 254971.181200001388788 ], [ 364460.123700000345707, 254970.600699998438358 ], [ 364464.216399997472763, 254963.456999998539686 ], [ 364465.88120000064373, 254957.348900001496077 ], [ 364466.135200001299381, 254953.475600000470877 ], [ 364449.298000000417233, 254944.640799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602024400", "MAP": "B9-57-T60", "PARCEL_NAM": "1-47 REM", "ACRE": "8,065 sq ft", "LONGITUDE": -64.87081732, "LATITUDE": 18.32350507, "OBJECTID_1": 38412, "PARCEL_NO_": "107602024400", "Tax_Legal_": "1-47 FRYDENHOJ RED HOOK QTR", "Name": "JOSEPH, VERNICE (TRUSTEE)", "Address": "PO Box 307131", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 255300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.36987592, "SHAPE_Area": 735.71309297799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365182.236900001764297, 254967.223400000482798 ], [ 365186.035099998116493, 254949.521999999880791 ], [ 365163.562700003385544, 254937.0945999994874 ], [ 365156.037900000810623, 254968.486000001430511 ], [ 365168.103900000452995, 254971.962200000882149 ], [ 365178.267599999904633, 254976.139499999582767 ], [ 365182.236900001764297, 254967.223400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85470044, "LATITUDE": 18.32341816, "OBJECTID_1": 39475, "PARCEL_NO_": "107702012600", "Tax_Legal_": "NAZARETH ESTATE TRACK A OF 1&2 RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 630900, "Improved_V": 8800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.00764838500001, "SHAPE_Area": 1205.66657106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366890.818899996578693, 254935.399399999529123 ], [ 366848.653200000524521, 254962.918600000441074 ], [ 366870.21509999781847, 254987.581999998539686 ], [ 366896.223899997770786, 254963.519099999219179 ], [ 366889.148699998855591, 254942.140700001269579 ], [ 366890.818899996578693, 254935.399399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602025200", "MAP": "B9-57-T60", "PARCEL_NAM": "1-52", "ACRE": "0.179", "LONGITUDE": -64.86929545, "LATITUDE": 18.32351716, "OBJECTID_1": 38420, "PARCEL_NO_": "107602025200", "Tax_Legal_": "1-52&1-50A FRYDENHOJ RED HOOK QTR", "Name": "JENNINGS, DANIEL & PARSON, KELVIN", "Address": "PO Box 12376", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 185000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.15328108200001, "SHAPE_Area": 826.95261764199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365320.766599997878075, 254941.547699999064207 ], [ 365307.691200003027916, 254961.916700001806021 ], [ 365327.778899997472763, 254970.313799999654293 ], [ 365347.10700000077486, 254973.2162000015378 ], [ 365360.047600001096725, 254968.677999999374151 ], [ 365360.069200001657009, 254966.145100001245737 ], [ 365347.229299999773502, 254958.862799998372793 ], [ 365340.012000001966953, 254954.159699998795986 ], [ 365320.766599997878075, 254941.547699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107702014400", "MAP": null, "PARCEL_NAM": "9A-10", "ACRE": "0.50", "LONGITUDE": -64.85026068000001, "LATITUDE": 18.32341026, "OBJECTID_1": 39493, "PARCEL_NO_": "107702014400", "Tax_Legal_": "NAZARETH ESTATE 9A-10 RED HOOK QTR", "Name": "LEWIS, DOREEN & CEDRICK", "Address": "BOX 3142", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86600, "Improved_V": 243000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.86047877300001, "SHAPE_Area": 1842.7486270300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367350.427699998021126, 254937.894499998539686 ], [ 367348.001599997282028, 254938.719000000506639 ], [ 367342.364600002765656, 254937.828499998897314 ], [ 367339.162699997425079, 254935.058100000023842 ], [ 367338.376199997961521, 254932.729600001126528 ], [ 367314.653300002217293, 254972.432100001722574 ], [ 367329.888700000941753, 254982.478199999779463 ], [ 367341.95099999755621, 254986.376600001007318 ], [ 367354.837700001895428, 254988.170899998396635 ], [ 367365.32150000333786, 254988.0456000007689 ], [ 367374.203500002622604, 254986.640599999576807 ], [ 367350.427699998021126, 254937.894499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602028600", "MAP": "A9-530-T99", "PARCEL_NAM": "1-77", "ACRE": ".27", "LONGITUDE": -64.86984883, "LATITUDE": 18.32333741, "OBJECTID_1": 38456, "PARCEL_NO_": "107602028600", "Tax_Legal_": "1-77 FRYDENHOJ NO.3 RED HOOK QTR", "Name": "SAMUEL, KURT DANNY", "Address": "6613 Nadir 11-B7", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.77893136399999, "SHAPE_Area": 1417.81238125 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365287.912799999117851, 254917.214099999517202 ], [ 365283.970600001513958, 254913.599300000816584 ], [ 365277.439699999988079, 254916.072900000959635 ], [ 365258.028899997472763, 254922.880100000649691 ], [ 365257.170400001108646, 254928.994800001382828 ], [ 365253.920000001788139, 254931.923500001430511 ], [ 365266.500900000333786, 254969.601199999451637 ], [ 365268.930500000715256, 254973.188200000673532 ], [ 365272.116599999368191, 254977.892000000923872 ], [ 365273.377700001001358, 254974.925500001758337 ], [ 365283.344099998474121, 254951.482400000095367 ], [ 365295.145199999213219, 254923.723700001835823 ], [ 365287.912799999117851, 254917.214099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602024000", "MAP": "B9-57-T60", "PARCEL_NAM": "1-48", "ACRE": "0.273", "LONGITUDE": -64.87105556, "LATITUDE": 18.3234014, "OBJECTID_1": 38409, "PARCEL_NO_": "107602024000", "Tax_Legal_": "1-48 FRYDENHOJ RED HOOK QTR", "Name": "REY, VICTOR & YIONE", "Address": "BOX 3798", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.68393456, "SHAPE_Area": 1012.7333975 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365163.562700003385544, 254937.0945999994874 ], [ 365140.29110000282526, 254923.816399998962879 ], [ 365125.620999999344349, 254942.0614 ], [ 365144.758599996566772, 254967.338199999183416 ], [ 365150.406300000846386, 254966.962200000882149 ], [ 365156.037900000810623, 254968.486000001430511 ], [ 365163.562700003385544, 254937.0945999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107702014500", "MAP": null, "PARCEL_NAM": "9A-11", "ACRE": "0.50", "LONGITUDE": -64.84993965, "LATITUDE": 18.3232632, "OBJECTID_1": 39494, "PARCEL_NO_": "107702014500", "Tax_Legal_": "NAZARETH ESTATE 9A-11 RED HOOK QTR", "Name": "CARPENTER, PAMELA", "Address": "9A-11 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63300, "Improved_V": 813000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.91817901300001, "SHAPE_Area": 2300.2698402599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367399.760300002992153, 254920.988600000739098 ], [ 367353.771700002253056, 254923.989700000733137 ], [ 367355.366300001740456, 254926.113699998706579 ], [ 367355.303400002419949, 254933.501400001347065 ], [ 367354.484499998390675, 254934.97239999845624 ], [ 367350.427699998021126, 254937.894499998539686 ], [ 367374.203500002622604, 254986.640599999576807 ], [ 367395.218000002205372, 254980.901999998837709 ], [ 367399.760300002992153, 254920.988600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602027200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87147754, "LATITUDE": 18.32341292, "OBJECTID_1": 38440, "PARCEL_NO_": "107602027200", "Tax_Legal_": "1-70 EST FEYDENHOJ REDHOOK QTR", "Name": "CASIMIR, PHILLIP", "Address": "6885 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 193300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.77668488800001, "SHAPE_Area": 907.54536643400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365123.17509999871254, 254945.207800000905991 ], [ 365095.117799997329712, 254925.768699999898672 ], [ 365090.226000003516674, 254932.0614 ], [ 365082.001000002026558, 254950.992499999701977 ], [ 365105.245600000023842, 254967.436999998986721 ], [ 365123.17509999871254, 254945.207800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013900", "MAP": null, "PARCEL_NAM": "61 REM", "ACRE": null, "LONGITUDE": -64.86566757, "LATITUDE": 18.32330386, "OBJECTID_1": 39157, "PARCEL_NO_": "107701013900", "Tax_Legal_": "61 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "RICHARDS, ESTHER", "Address": "6210 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 47700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.73270408100001, "SHAPE_Area": 818.18846294699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365736.114699997007847, 254933.548000000417233 ], [ 365712.087099999189377, 254914.353000000119209 ], [ 365698.693400003015995, 254972.083000000566244 ], [ 365724.727399997413158, 254945.065000001341105 ], [ 365736.114699997007847, 254933.548000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601052500", "MAP": "A9-78-T67", "PARCEL_NAM": "33-78", "ACRE": "0.10", "LONGITUDE": -64.87831198000001, "LATITUDE": 18.32343645, "OBJECTID_1": 38109, "PARCEL_NO_": "107601052500", "Tax_Legal_": "NADIR 33-78 RED HOOK QTR", "Name": "CHINNERY, LUTHER", "Address": "7129 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.484818650899996, "SHAPE_Area": 395.56255910800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364395.863300003111362, 254941.366099998354912 ], [ 364391.862300001084805, 254937.744699999690056 ], [ 364389.488300003111362, 254932.447900000959635 ], [ 364365.241400003433228, 254939.00450000166893 ], [ 364366.004600003361702, 254944.076999999582767 ], [ 364370.734499998390675, 254956.781300000846386 ], [ 364395.863300003111362, 254941.366099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013700", "MAP": "B9-167-T67", "PARCEL_NAM": "8-1", "ACRE": ".26", "LONGITUDE": -64.86538627, "LATITUDE": 18.32330948, "OBJECTID_1": 39155, "PARCEL_NO_": "107701013700", "Tax_Legal_": "FRYDENHOJ 8-1 RED HOOK QTR", "Name": "JOHNSON, ARTHUR", "Address": "PO Box 1671", "City": "Saint Charles", "State": "Missouri", "Zip": 63301, "Country": "United States", "Land_Value": 84900, "Improved_V": 70300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.51012838400001, "SHAPE_Area": 992.56361980099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365767.586000002920628, 254930.850299999117851 ], [ 365762.780500002205372, 254927.011300001293421 ], [ 365753.198299996554852, 254915.956000000238419 ], [ 365736.114699997007847, 254933.548000000417233 ], [ 365724.727399997413158, 254945.065000001341105 ], [ 365737.434199996292591, 254967.967099998146296 ], [ 365767.586000002920628, 254930.850299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602027300", "MAP": "A9-530-T99", "PARCEL_NAM": "1-57", "ACRE": null, "LONGITUDE": -64.87187896, "LATITUDE": 18.32331762, "OBJECTID_1": 38441, "PARCEL_NO_": "107602027300", "Tax_Legal_": "1-57 EST FRYDENHOJ REDHOOK QTR", "Name": "WILLIAMS, LORINDA", "Address": "PO BOX 307078", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.207092343, "SHAPE_Area": 1011.62913244 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365080.555699996650219, 254931.348999999463558 ], [ 365046.827200002968311, 254915.029800001531839 ], [ 365036.217500001192093, 254929.930700000375509 ], [ 365067.39750000089407, 254961.427700001746416 ], [ 365070.662299998104572, 254956.810400001704693 ], [ 365073.990099996328354, 254944.805300001055002 ], [ 365077.283600002527237, 254936.810699999332428 ], [ 365080.555699996650219, 254931.348999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86759765, "LATITUDE": 18.32331469, "OBJECTID_1": 38505, "PARCEL_NO_": "107602042200", "Tax_Legal_": "FRYDENHOJ 46-3 No.3 RED HOOK QTR", "Name": "TRACEY, TRICIA C.", "Address": "6225 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40500, "Improved_V": 1800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.48080810600001, "SHAPE_Area": 759.549209701 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365494.746699996292591, 254964.503199998289347 ], [ 365502.050300002098083, 254959.074499998241663 ], [ 365511.763800002634525, 254954.721000000834465 ], [ 365518.228699997067451, 254953.085200000554323 ], [ 365523.068300001323223, 254952.913699999451637 ], [ 365524.000500001013279, 254938.144799999892712 ], [ 365523.228399999439716, 254934.127700001001358 ], [ 365520.870600000023842, 254926.931200001388788 ], [ 365519.274099998176098, 254925.018300000578165 ], [ 365518.509199999272823, 254920.156899999827147 ], [ 365511.33330000191927, 254910.598999999463558 ], [ 365494.746699996292591, 254964.503199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602025100", "MAP": "B9-57-T60", "PARCEL_NAM": "1-51", "ACRE": "0.171", "LONGITUDE": -64.86958665, "LATITUDE": 18.32337687, "OBJECTID_1": 38419, "PARCEL_NO_": "107602025100", "Tax_Legal_": "1 51 FRYDENHOJ RED HOOK QTR", "Name": "FRANCIS, WINSTON A", "Address": "1-51 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.23819711199999, "SHAPE_Area": 751.89739745099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365295.145199999213219, 254923.723700001835823 ], [ 365283.344099998474121, 254951.482400000095367 ], [ 365307.691200003027916, 254961.916700001806021 ], [ 365320.766599997878075, 254941.547699999064207 ], [ 365304.717699997127056, 254932.339299999177456 ], [ 365295.145199999213219, 254923.723700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86904512, "LATITUDE": 18.32328986, "OBJECTID_1": 38423, "PARCEL_NO_": "107602025500", "Tax_Legal_": "52KA FRYDENHOJ No.3 REDHOOK QTR.", "Name": "MILLS, MARIA and MARK", "Address": "52K Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 3500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.58193962499999, "SHAPE_Area": 1112.0499455500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365364.568199999630451, 254911.297600001096725 ], [ 365342.765399999916553, 254914.918800000101328 ], [ 365344.909299999475479, 254947.23369999974966 ], [ 365373.810599997639656, 254962.246800001710653 ], [ 365375.507799997925758, 254952.339299999177456 ], [ 365364.568199999630451, 254911.297600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042100", "MAP": "D9-5687-T94", "PARCEL_NAM": "48-4-1", "ACRE": null, "LONGITUDE": -64.86697996, "LATITUDE": 18.32347459, "OBJECTID_1": 38504, "PARCEL_NO_": "107602042100", "Tax_Legal_": "EST. FRYDENHOJ 48-4-1,54B & 54C RED HOOK QTR", "Name": "BENJAMIN, CONCHITA", "Address": "PO Box 8815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.122701637699997, "SHAPE_Area": 94.890694728900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365582.744499996304512, 254952.346700001507998 ], [ 365571.448899999260902, 254953.098600000143051 ], [ 365572.975199997425079, 254963.243599999696016 ], [ 365579.420299999415874, 254963.92960000038147 ], [ 365580.25900000333786, 254960.136799998581409 ], [ 365582.744499996304512, 254952.346700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701015200", "MAP": "F9-520-T60", "PARCEL_NAM": "100", "ACRE": ".21", "LONGITUDE": -64.86469792, "LATITUDE": 18.32337886, "OBJECTID_1": 39170, "PARCEL_NO_": "107701015200", "Tax_Legal_": "1OO ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "BENJAMIN, SR., KENNETH R. & LEMA O.M. & SHELLEY M.", "Address": "PO Box 7814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39700, "Improved_V": 172900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.675523294, "SHAPE_Area": 781.08463600899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365835.237099997699261, 254940.692099999636412 ], [ 365835.266599997878075, 254937.228999998420477 ], [ 365800.119999997317791, 254937.554099999368191 ], [ 365800.414399996399879, 254939.5304000005126 ], [ 365802.738799996674061, 254955.134100001305342 ], [ 365803.748199999332428, 254961.910100001841784 ], [ 365820.578199997544289, 254961.459199998527765 ], [ 365833.627099998295307, 254961.109600000083447 ], [ 365834.405699998140335, 254943.640599999576807 ], [ 365835.237099997699261, 254940.692099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601051700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87758118000001, "LATITUDE": 18.3233976, "OBJECTID_1": 38101, "PARCEL_NO_": "107601051700", "Tax_Legal_": "33-72 NADIR RED HOOK QTR", "Name": "CHRISTIAN, RANDOLPH", "Address": "PO Box 8753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.557689627800002, "SHAPE_Area": 408.37715984499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364466.135200001299381, 254953.475600000470877 ], [ 364467.73480000346899, 254929.077599998563528 ], [ 364450.773500002920628, 254932.316300000995398 ], [ 364439.465300001204014, 254934.545699998736382 ], [ 364439.441899999976158, 254937.289799999445677 ], [ 364438.160899996757507, 254938.796900000423193 ], [ 364449.298000000417233, 254944.640799999237061 ], [ 364466.135200001299381, 254953.475600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86667696000001, "LATITUDE": 18.32332222, "OBJECTID_1": 38504, "PARCEL_NO_": "107602042100", "Tax_Legal_": "EST. FRYDENHOJ 48-4-1,54B & 54C RED HOOK QTR", "Name": "BENJAMIN, CONCHITA", "Address": "PO Box 8815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.55055227099999, "SHAPE_Area": 1134.94427739 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365632.116499997675419, 254930.796999998390675 ], [ 365595.906199999153614, 254921.845800001174212 ], [ 365586.770599998533726, 254953.012899998575449 ], [ 365621.389899998903275, 254959.418000001460314 ], [ 365632.116499997675419, 254930.796999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602026100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87068092, "LATITUDE": 18.32327315, "OBJECTID_1": 38429, "PARCEL_NO_": "107602026100", "Tax_Legal_": "1-74 EST.FRYDENHOJ RED HOOK QUARTER", "Name": "BRATHWAITE, NIKIA S.", "Address": "7743 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 152800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.151192565, "SHAPE_Area": 1148.05049792 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365177.536100000143051, 254905.967099998146296 ], [ 365163.562700003385544, 254937.0945999994874 ], [ 365186.035099998116493, 254949.521999999880791 ], [ 365197.27139999717474, 254955.735700000077486 ], [ 365207.161100000143051, 254930.69649999961257 ], [ 365177.536100000143051, 254905.967099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107702014300", "MAP": null, "PARCEL_NAM": "9A-9", "ACRE": "0.40", "LONGITUDE": -64.85054021000001, "LATITUDE": 18.32316058, "OBJECTID_1": 39492, "PARCEL_NO_": "107702014300", "Tax_Legal_": "NAZARETH ESTATE 9A-9 RED HOOK QTR", "Name": "FOSTER, GAVIN N.", "Address": "17060 Hamilton Station Rd", "City": "Hamilton", "State": "Virginia", "Zip": 20158, "Country": "United States", "Land_Value": 121200, "Improved_V": 557400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.933946238, "SHAPE_Area": 1879.1735530200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367338.376199997961521, 254932.729600001126528 ], [ 367338.442699998617172, 254924.919700000435114 ], [ 367336.839100003242493, 254923.851100001484156 ], [ 367336.050800003111362, 254921.73369999974966 ], [ 367331.256099998950958, 254916.628199998289347 ], [ 367319.29619999974966, 254900.698300000280142 ], [ 367287.441899999976158, 254948.355900000780821 ], [ 367292.231200002133846, 254954.0945999994874 ], [ 367314.653300002217293, 254972.432100001722574 ], [ 367338.376199997961521, 254932.729600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86216887, "LATITUDE": 18.32318538, "OBJECTID_1": 39321, "PARCEL_NO_": "107701038200", "Tax_Legal_": "NAZARETH PARCEL \"N\" OF TRACT 1 NO.1 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2417600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.66332496199999, "SHAPE_Area": 527.89693538899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366090.43469999730587, 254895.495799999684095 ], [ 366076.437899999320507, 254929.367300000041723 ], [ 366077.177599996328354, 254937.183899998664856 ], [ 366079.535400003194809, 254944.380300000309944 ], [ 366092.319600000977516, 254958.206000000238419 ], [ 366090.893899999558926, 254936.240699999034405 ], [ 366090.43469999730587, 254895.495799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86259454, "LATITUDE": 18.32326479, "OBJECTID_1": 39222, "PARCEL_NO_": "107701021600", "Tax_Legal_": "ESTATE FRYDENHOJ 4D RED HOOK QTR.", "Name": "ROYER, JOHN F. & GRACE", "Address": "PO BOX 502801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 75600, "Improved_V": 28200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.344984361, "SHAPE_Area": 1922.36787682 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366013.123099997639656, 254922.272100001573563 ], [ 366014.662299998104572, 254932.011799998581409 ], [ 366014.441899999976158, 254932.135800000280142 ], [ 366014.590300001204014, 254932.132599998265505 ], [ 366015.013700000941753, 254941.445999998599291 ], [ 366015.451999999582767, 254957.078899998217821 ], [ 366073.943800002336502, 254957.041499998420477 ], [ 366065.421899996697903, 254947.525400001555681 ], [ 366062.327899999916553, 254928.247600000351667 ], [ 366063.041900001466274, 254922.773699998855591 ], [ 366065.54900000244379, 254918.490699999034405 ], [ 366056.375399999320507, 254918.0152000002563 ], [ 366045.092399999499321, 254917.289599999785423 ], [ 366013.123099997639656, 254922.272100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8641703, "LATITUDE": 18.32323114, "OBJECTID_1": 39214, "PARCEL_NO_": "107701020600", "Tax_Legal_": "17AB FRYDENHOJ RED HOOK", "Name": "HODGE, CHRISTEEN(Life Estate)", "Address": "PO Box 301912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45200, "Improved_V": 138200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.59883401499999, "SHAPE_Area": 1769.26379434 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365910.08839999884367, 254941.229899998754263 ], [ 365909.038800001144409, 254920.518500000238419 ], [ 365845.913400001823902, 254917.9814000017941 ], [ 365844.16950000077486, 254933.377000000327826 ], [ 365844.815800003707409, 254952.169599998742342 ], [ 365847.231100000441074, 254952.6114999987185 ], [ 365855.310400001704693, 254950.777800001204014 ], [ 365882.757399998605251, 254947.202799998223782 ], [ 365882.796999998390675, 254942.559000000357628 ], [ 365910.08839999884367, 254941.229899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602025400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86930202000001, "LATITUDE": 18.32322519, "OBJECTID_1": 38422, "PARCEL_NO_": "107602025400", "Tax_Legal_": "FRYDENHOJ 52K RED HOOK QTR", "Name": "MILLS, MARIA and MARK", "Address": "52K Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 158200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.134396345, "SHAPE_Area": 588.49174095900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365342.765399999916553, 254914.918800000101328 ], [ 365307.228399999439716, 254921.594099998474121 ], [ 365310.431999996304512, 254924.153400000184774 ], [ 365344.909299999475479, 254947.23369999974966 ], [ 365342.765399999916553, 254914.918800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601052600", "MAP": "A9-78-T67", "PARCEL_NAM": "33-79", "ACRE": "0.09", "LONGITUDE": -64.87835403, "LATITUDE": 18.32329645, "OBJECTID_1": 38110, "PARCEL_NO_": "107601052600", "Tax_Legal_": "33-79 NADIR RED HOOK QTR", "Name": "RUAN, ST CLAUDE IRAD and ROSE ANDINA", "Address": "PO Box 303598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9600, "Improved_V": 73500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.67925157000001, "SHAPE_Area": 364.92476432900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364365.241400003433228, 254939.00450000166893 ], [ 364389.488300003111362, 254932.447900000959635 ], [ 364389.508100003004074, 254930.1261 ], [ 364385.521499998867512, 254924.816100001335144 ], [ 364370.271700002253056, 254916.458599999547005 ], [ 364365.458999998867512, 254913.463899999856949 ], [ 364365.241400003433228, 254939.00450000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602027400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87132529, "LATITUDE": 18.32321802, "OBJECTID_1": 38442, "PARCEL_NO_": "107602027400", "Tax_Legal_": "1-71 EST FRYDENHOJ REDHOOK QTR", "Name": "JOSEPH, KEITHROY", "Address": "SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32900, "Improved_V": 59200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.004182661, "SHAPE_Area": 894.95092405000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365140.29110000282526, 254923.816399998962879 ], [ 365111.413099996745586, 254906.059200000017881 ], [ 365095.117799997329712, 254925.768699999898672 ], [ 365123.17509999871254, 254945.207800000905991 ], [ 365125.620999999344349, 254942.0614 ], [ 365140.29110000282526, 254923.816399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86726756, "LATITUDE": 18.32311609, "OBJECTID_1": 38507, "PARCEL_NO_": "107602042400", "Tax_Legal_": "FRYDENHOJ 48-5 RED HOOK QTR", "Name": "MILLS, IVAN A", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 58000, "Improved_V": 491700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.68699960699999, "SHAPE_Area": 1475.44358986 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365562.7179000005126, 254936.772900000214577 ], [ 365562.869000002741814, 254919.042300000786781 ], [ 365559.8074000030756, 254899.807700000703335 ], [ 365555.863899998366833, 254889.43189999833703 ], [ 365551.882700003683567, 254883.488699998706579 ], [ 365548.684399999678135, 254880.296100001782179 ], [ 365529.799400001764297, 254920.038199998438358 ], [ 365528.937299996614456, 254926.575100000947714 ], [ 365528.806000001728535, 254941.983800001442432 ], [ 365529.583599999547005, 254945.36769999936223 ], [ 365562.7179000005126, 254936.772900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030200", "MAP": "F9-3477-T76", "PARCEL_NAM": "19 REM", "ACRE": ".24", "LONGITUDE": -64.87356087000001, "LATITUDE": 18.32321035, "OBJECTID_1": 38465, "PARCEL_NO_": "107602030200", "Tax_Legal_": "19 ESTATE NADIR NO.2 RED HOOK QTR", "Name": "STUART, DANNA", "Address": "PO Box 302651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25900, "Improved_V": 128000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.435270524, "SHAPE_Area": 1134.80583035 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364854.122000001370907, 254911.08559999987483 ], [ 364872.802799999713898, 254939.252099998295307 ], [ 364885.347099997103214, 254939.250500001013279 ], [ 364900.268100000917912, 254939.22239999845624 ], [ 364898.298799999058247, 254905.621800001710653 ], [ 364854.122000001370907, 254911.08559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030900", "MAP": null, "PARCEL_NAM": "20-7", "ACRE": null, "LONGITUDE": -64.87271249, "LATITUDE": 18.32327295, "OBJECTID_1": 38471, "PARCEL_NO_": "107602030900", "Tax_Legal_": "NADIR 20-7 & 20-9 RED HOOK QTR", "Name": "ADAMS, J, D,J,D C,N & ANETTE ADAMS-HENRY", "Address": "BOX 4591", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 298100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.878348805, "SHAPE_Area": 619.26012667099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364997.362300001084805, 254924.935400001704693 ], [ 364971.003200002014637, 254917.997900001704693 ], [ 364942.598899997770786, 254939.296900000423193 ], [ 364975.659500002861023, 254939.3564000017941 ], [ 364994.3108000010252, 254927.054499998688698 ], [ 364997.362300001084805, 254924.935400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601051800", "MAP": "A9-78-T67", "PARCEL_NAM": "33-71", "ACRE": "0.09", "LONGITUDE": -64.87761035, "LATITUDE": 18.32325734, "OBJECTID_1": 38102, "PARCEL_NO_": "107601051800", "Tax_Legal_": "33-71 NADIR RED HOOK QTR", "Name": "BACHAN, JOYCIE", "Address": "7136 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 89000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.886317647200002, "SHAPE_Area": 406.62652819599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364463.012000001966953, 254915.528900001198053 ], [ 364457.414599999785423, 254909.994699999690056 ], [ 364446.036300003528595, 254920.456199999898672 ], [ 364437.114699997007847, 254926.504900000989437 ], [ 364439.495899997651577, 254930.957400001585484 ], [ 364439.465300001204014, 254934.545699998736382 ], [ 364450.773500002920628, 254932.316300000995398 ], [ 364467.73480000346899, 254929.077599998563528 ], [ 364463.012000001966953, 254915.528900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602027800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8709364, "LATITUDE": 18.32310896, "OBJECTID_1": 38446, "PARCEL_NO_": "107602027800", "Tax_Legal_": "FRYDENHOJ ESTATE 1-73 No.3 RED HOOK QTR.", "Name": "ETIENNE, VERONICA", "Address": "1-54 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 94200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.06418157100001, "SHAPE_Area": 988.56418031400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365153.479800000786781, 254890.149300001561642 ], [ 365140.29110000282526, 254923.816399998962879 ], [ 365163.562700003385544, 254937.0945999994874 ], [ 365177.536100000143051, 254905.967099998146296 ], [ 365164.723200000822544, 254895.518699999898672 ], [ 365153.479800000786781, 254890.149300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701015100", "MAP": "D9-1838-T81", "PARCEL_NAM": "96", "ACRE": ".20", "LONGITUDE": -64.86470463000001, "LATITUDE": 18.32318184, "OBJECTID_1": 39169, "PARCEL_NO_": "107701015100", "Tax_Legal_": "96 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SELLO, EDWARD E.T.& GABRIEL", "Address": "PO Box 502305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 25100, "Improved_V": 151100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.41205777899999, "SHAPE_Area": 761.374225282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365837.065600000321865, 254915.375900000333786 ], [ 365837.403899997472763, 254913.736900001764297 ], [ 365833.020400002598763, 254914.645799998193979 ], [ 365792.976300001144409, 254922.949099998921156 ], [ 365800.119999997317791, 254937.554099999368191 ], [ 365835.266599997878075, 254937.228999998420477 ], [ 365835.332500003278255, 254929.504900000989437 ], [ 365837.065600000321865, 254915.375900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601051900", "MAP": "A9-78-T67", "PARCEL_NAM": "33-70", "ACRE": "0.08", "LONGITUDE": -64.87770904, "LATITUDE": 18.32315373, "OBJECTID_1": 38103, "PARCEL_NO_": "107601051900", "Tax_Legal_": "33-70 NADIR RED HOOK QTR", "Name": "HENLEY, YVONNE, DONNA, JULIET, LENA & JULIEN SR.", "Address": "PO Box 7476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9600, "Improved_V": 108000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.021065167499998, "SHAPE_Area": 386.37130530100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364449.414399996399879, 254902.540899999439716 ], [ 364439.770999997854233, 254898.662300001829863 ], [ 364438.919699996709824, 254903.932700000703335 ], [ 364434.854000002145767, 254907.910199999809265 ], [ 364431.497500002384186, 254923.292599998414516 ], [ 364434.715499997138977, 254924.16330000013113 ], [ 364437.114699997007847, 254926.504900000989437 ], [ 364446.036300003528595, 254920.456199999898672 ], [ 364457.414599999785423, 254909.994699999690056 ], [ 364449.414399996399879, 254902.540899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86608177, "LATITUDE": 18.32309758, "OBJECTID_1": 38510, "PARCEL_NO_": "107602042800", "Tax_Legal_": "118 FRYDENHOJ 1 2 3 RED HOOK QTR", "Name": "WILLIAMS, LUNSFORD A.", "Address": "PO Box 10889", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.312130337, "SHAPE_Area": 436.58196668199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365670.770999997854233, 254936.812899999320507 ], [ 365683.986699998378754, 254899.979699999094009 ], [ 365672.721699997782707, 254897.143300000578165 ], [ 365660.314099997282028, 254933.771999999880791 ], [ 365670.770999997854233, 254936.812899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602027500", "MAP": "A9-530-T99", "PARCEL_NAM": "1-56", "ACRE": null, "LONGITUDE": -64.87177963000001, "LATITUDE": 18.32311065, "OBJECTID_1": 38443, "PARCEL_NO_": "107602027500", "Tax_Legal_": "1-56 ESTATE FRYDENHOJ No.3 RED HOOK QTR.", "Name": "WILLIAMS, LORINDA", "Address": "PO BOX 307078", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.449271044, "SHAPE_Area": 870.77949170900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365092.788800001144409, 254915.194899998605251 ], [ 365062.335900001227856, 254892.991999998688698 ], [ 365046.827200002968311, 254915.029800001531839 ], [ 365080.555699996650219, 254931.348999999463558 ], [ 365085.461900003254414, 254923.367600001394749 ], [ 365092.788800001144409, 254915.194899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107702014200", "MAP": null, "PARCEL_NAM": "9A-8", "ACRE": "0.42", "LONGITUDE": -64.85076743, "LATITUDE": 18.3229277, "OBJECTID_1": 39491, "PARCEL_NO_": "107702014200", "Tax_Legal_": "NAZARETH ESTATE 9A-8 RED HOOK QTR", "Name": "NELSON, ROBERT N.", "Address": "9A-8 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86600, "Improved_V": 490700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.74758280099999, "SHAPE_Area": 1884.8744686800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367319.29619999974966, 254900.698300000280142 ], [ 367312.906900003552437, 254893.468899998813868 ], [ 367307.289700001478195, 254890.256499998271465 ], [ 367274.288400001823902, 254883.2314000017941 ], [ 367273.016400001943111, 254937.894200000911951 ], [ 367280.237199999392033, 254942.175200000405312 ], [ 367287.441899999976158, 254948.355900000780821 ], [ 367319.29619999974966, 254900.698300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601052000", "MAP": "A9-78-T67", "PARCEL_NAM": "33-69", "ACRE": "0.08", "LONGITUDE": -64.87785132, "LATITUDE": 18.32311233, "OBJECTID_1": 38104, "PARCEL_NO_": "107601052000", "Tax_Legal_": "33-69 NADIR RED HOOK QTR", "Name": "THOMAS, AZALIA", "Address": "ESTATE NADIR 33-69", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9600, "Improved_V": 72200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.170758917499995, "SHAPE_Area": 413.17943501899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364435.751999996602535, 254897.151799999177456 ], [ 364422.888800002634525, 254892.613499999046326 ], [ 364417.822499997913837, 254919.381000000983477 ], [ 364431.497500002384186, 254923.292599998414516 ], [ 364434.854000002145767, 254907.910199999809265 ], [ 364438.919699996709824, 254903.932700000703335 ], [ 364439.770999997854233, 254898.662300001829863 ], [ 364435.751999996602535, 254897.151799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014000", "MAP": null, "PARCEL_NAM": "61A", "ACRE": null, "LONGITUDE": -64.86552923000001, "LATITUDE": 18.32303834, "OBJECTID_1": 39158, "PARCEL_NO_": "107701014000", "Tax_Legal_": "61A FRYDENHOJ RED HOOK QTR", "Name": "Ingrid,P,J, P & A Smith, Jr. & Kim Scatliffe", "Address": "P O BOX 2143", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13700, "Improved_V": 143300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.40846329, "SHAPE_Area": 1035.45652247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365753.198299996554852, 254915.956000000238419 ], [ 365738.016800001263618, 254899.577599998563528 ], [ 365718.791199997067451, 254884.6435999982059 ], [ 365712.087099999189377, 254914.353000000119209 ], [ 365736.114699997007847, 254933.548000000417233 ], [ 365753.198299996554852, 254915.956000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601052100", "MAP": "A9-78-T67", "PARCEL_NAM": "33-68", "ACRE": "0.09", "LONGITUDE": -64.87799371, "LATITUDE": 18.32308158, "OBJECTID_1": 38105, "PARCEL_NO_": "107601052100", "Tax_Legal_": "33-68 NADIR RED HOOK QTR", "Name": "MALONE, MARILYN & ELTON", "Address": "PO Box 962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8400, "Improved_V": 89900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.016988488199999, "SHAPE_Area": 427.98742588900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364422.888800002634525, 254892.613499999046326 ], [ 364406.794900000095367, 254888.682100001722574 ], [ 364404.126000002026558, 254918.002300001680851 ], [ 364417.822499997913837, 254919.381000000983477 ], [ 364422.888800002634525, 254892.613499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601052200", "MAP": "A9-78-T67", "PARCEL_NAM": "33-67", "ACRE": "0.10", "LONGITUDE": -64.87813781, "LATITUDE": 18.32306711, "OBJECTID_1": 38106, "PARCEL_NO_": "107601052200", "Tax_Legal_": "33-67 NADIR RED HOOK QTR", "Name": "GRIFFIN, EDELTA & OTHERS", "Address": "PO Box 6162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12000, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.183734946200005, "SHAPE_Area": 471.21866824900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364406.794900000095367, 254888.682100001722574 ], [ 364393.114600002765656, 254885.403799999505281 ], [ 364387.215000003576279, 254915.330800000578165 ], [ 364392.846600003540516, 254916.854499999433756 ], [ 364404.126000002026558, 254918.002300001680851 ], [ 364406.794900000095367, 254888.682100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602027600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87117506, "LATITUDE": 18.32300253, "OBJECTID_1": 38444, "PARCEL_NO_": "107602027600", "Tax_Legal_": "FRYDENHOJ ESTATE 1-72 REDHOOK QTR", "Name": "SMITH, KAFAR", "Address": "41 Hazel St", "City": "Providence", "State": "Rhode Island", "Zip": 2908, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.41153341899999, "SHAPE_Area": 958.94880976100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365111.413099996745586, 254906.059200000017881 ], [ 365140.29110000282526, 254923.816399998962879 ], [ 365153.479800000786781, 254890.149300001561642 ], [ 365137.402099996805191, 254884.318199999630451 ], [ 365129.335400000214577, 254884.674400001764297 ], [ 365124.468699999153614, 254888.012099999934435 ], [ 365111.413099996745586, 254906.059200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602031000", "MAP": null, "PARCEL_NAM": "20K", "ACRE": "0.10", "LONGITUDE": -64.872494, "LATITUDE": 18.32312042, "OBJECTID_1": 38472, "PARCEL_NO_": "107602031000", "Tax_Legal_": "NADIR 20K RED HOOK QTR", "Name": "BEAZER, LUCILLE F", "Address": "BOX 2411", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.670830564599996, "SHAPE_Area": 436.41332919799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365016.223300002515316, 254910.557500001043081 ], [ 364989.667099997401237, 254904.218400001525879 ], [ 364971.003200002014637, 254917.997900001704693 ], [ 365002.422499999403954, 254921.421399999409914 ], [ 365016.223300002515316, 254910.557500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601052300", "MAP": "A9-78-T67", "PARCEL_NAM": "33-66", "ACRE": null, "LONGITUDE": -64.87827532, "LATITUDE": 18.32303341, "OBJECTID_1": 38107, "PARCEL_NO_": "107601052300", "Tax_Legal_": "33-66 NADIR RED HOOK QTR", "Name": "MARDENBOROUGH, JAMES", "Address": "7200 Regatta 8-K", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 74900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.2006282408, "SHAPE_Area": 416.242378981 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364393.114600002765656, 254885.403799999505281 ], [ 364383.465800002217293, 254882.158399999141693 ], [ 364370.35980000346899, 254906.115800000727177 ], [ 364387.215000003576279, 254915.330800000578165 ], [ 364393.114600002765656, 254885.403799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107702014100", "MAP": null, "PARCEL_NAM": "9A-7", "ACRE": "0.40", "LONGITUDE": -64.85109415, "LATITUDE": 18.3228747, "OBJECTID_1": 39490, "PARCEL_NO_": "107702014100", "Tax_Legal_": "NAZARETH ESTATE 9A-7 RED HOOK QTR", "Name": "NELSON, ROBERT M.", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 105600, "Improved_V": 355800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.26666414, "SHAPE_Area": 1794.49564106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367274.288400001823902, 254883.2314000017941 ], [ 367258.189099997282028, 254879.933200001716614 ], [ 367237.22860000282526, 254879.339499998837709 ], [ 367240.042099997401237, 254927.702899999916553 ], [ 367260.165700003504753, 254931.878400001674891 ], [ 367273.016400001943111, 254937.894200000911951 ], [ 367274.288400001823902, 254883.2314000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030500", "MAP": null, "PARCEL_NAM": "20-6", "ACRE": "0.24", "LONGITUDE": -64.87277691, "LATITUDE": 18.32301437, "OBJECTID_1": 38467, "PARCEL_NO_": "107602030500", "Tax_Legal_": "20-6 & 20-8-1 NADIR RED HOOK QTR", "Name": "CHARLES, MICHEL L. & CLAUDIA", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.638879503, "SHAPE_Area": 1103.15191267 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364981.620200000703335, 254902.252700001001358 ], [ 364995.503700003027916, 254881.679200001060963 ], [ 364955.987899996340275, 254892.673900000751019 ], [ 364951.070200003683567, 254891.447999998927116 ], [ 364942.85137272888096, 254896.982098910899367 ], [ 364934.239100001752377, 254901.881499998271465 ], [ 364938.322200000286102, 254907.10190000012517 ], [ 364966.385799996554852, 254921.460299998521805 ], [ 364971.003200002014637, 254917.997900001704693 ], [ 364981.620200000703335, 254902.252700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86927303, "LATITUDE": 18.32298964, "OBJECTID_1": 38424, "PARCEL_NO_": "107602025600", "Tax_Legal_": "52KB ESTATE FRYDENHOJ REDHOOK QTR.", "Name": "WILLIAMS, MARSHA & WEEKS, SHENELL", "Address": "6140 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.940250142, "SHAPE_Area": 1582.67299512 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365357.56139999628067, 254881.898200001567602 ], [ 365306.670199997723103, 254892.458599999547005 ], [ 365307.454899996519089, 254894.998100001364946 ], [ 365308.997400000691414, 254903.243400000035763 ], [ 365307.228399999439716, 254921.594099998474121 ], [ 365342.765399999916553, 254914.918800000101328 ], [ 365364.568199999630451, 254911.297600001096725 ], [ 365357.56139999628067, 254881.898200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86743527, "LATITUDE": 18.3229098, "OBJECTID_1": 38506, "PARCEL_NO_": "107602042300", "Tax_Legal_": "FRYDENHOJ 46-2 & POR OF 47 RED HOOK QTR", "Name": "BENJAMIN, MAE & SHELLY", "Address": "PO Box 7814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.081239651, "SHAPE_Area": 1092.3057838300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365548.684399999678135, 254880.296100001782179 ], [ 365543.882500000298023, 254876.03489999845624 ], [ 365531.836400002241135, 254870.236800000071526 ], [ 365529.446199998259544, 254866.839699998497963 ], [ 365528.665100000798702, 254863.877999998629093 ], [ 365511.33330000191927, 254910.598999999463558 ], [ 365518.509199999272823, 254920.156899999827147 ], [ 365529.799400001764297, 254920.038199998438358 ], [ 365548.684399999678135, 254880.296100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86272574, "LATITUDE": 18.32294194, "OBJECTID_1": 39225, "PARCEL_NO_": "107701021900", "Tax_Legal_": "ESTATE FRYDENHOJ 4E-1 RED HOOK QUARTER", "Name": "BENJAMIN, GEORGE A. & BRENDA D", "Address": "7382 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.63357574700001, "SHAPE_Area": 1265.8969301100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366008.219499997794628, 254891.242899999022484 ], [ 366013.123099997639656, 254922.272100001573563 ], [ 366045.092399999499321, 254917.289599999785423 ], [ 366056.375399999320507, 254918.0152000002563 ], [ 366029.273599997162819, 254881.063099998980761 ], [ 366007.490599997341633, 254882.362500000745058 ], [ 366008.221400000154972, 254891.234400000423193 ], [ 366008.219499997794628, 254891.242899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602027700", "MAP": "A9-530-T99", "PARCEL_NAM": "1-55", "ACRE": "0.23", "LONGITUDE": -64.87163872000001, "LATITUDE": 18.32294405, "OBJECTID_1": 38445, "PARCEL_NO_": "107602027700", "Tax_Legal_": "FRYDENHOJ ESTATE 1-55 REDHOOK QTR", "Name": "NORRIS, DAMIAN & SORHAINDO, DONA R.", "Address": "PO Box 306874", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036874, "Country": "United States", "Land_Value": 32900, "Improved_V": 57400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.403927346, "SHAPE_Area": 875.71786153699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365107.464299999177456, 254896.316599998623133 ], [ 365077.005999997258186, 254874.746899999678135 ], [ 365062.335900001227856, 254892.991999998688698 ], [ 365092.788800001144409, 254915.194899998605251 ], [ 365097.693199999630451, 254907.424600001424551 ], [ 365107.464299999177456, 254896.316599998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86412057, "LATITUDE": 18.32302993, "OBJECTID_1": 39215, "PARCEL_NO_": "107701020700", "Tax_Legal_": "17AC FRYDENHOJ NO. 3 RED HOOK QTR", "Name": "BENJAMIN, CELIA E. & KEVIN U. & ARLENE D. LUCILLE O.", "Address": "9991 SW", "City": "Miami", "State": "Florida", "Zip": 33196, "Country": "United States", "Land_Value": 46000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.326245027, "SHAPE_Area": 1019.75060252 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365909.038800001144409, 254920.518500000238419 ], [ 365908.070500001311302, 254901.410100001841784 ], [ 365848.452799998223782, 254903.858899999409914 ], [ 365845.913400001823902, 254917.9814000017941 ], [ 365909.038800001144409, 254920.518500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87000625, "LATITUDE": 18.32274111, "OBJECTID_1": 38944, "PARCEL_NO_": "107604030200", "Tax_Legal_": "52P FRYDENHOJ RED HOOK QTR", "Name": "SMITH, HENRY & OTHERS", "Address": "6115 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.62882813, "SHAPE_Area": 2574.6842757099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365199.506800003349781, 254852.676699999719858 ], [ 365201.182800002396107, 254862.299100000411272 ], [ 365214.941200003027916, 254869.331900000572205 ], [ 365253.529100000858307, 254883.157699998468161 ], [ 365286.41889999806881, 254903.26969999819994 ], [ 365300.021899998188019, 254915.624499998986721 ], [ 365301.91610000282526, 254906.491399999707937 ], [ 365300.460900001227856, 254898.686200000345707 ], [ 365296.674900002777576, 254892.159099999815226 ], [ 365289.324299998581409, 254879.486699998378754 ], [ 365284.321299999952316, 254868.1266999989748 ], [ 365279.29110000282526, 254855.289799999445677 ], [ 365273.119800001382828, 254855.242600001394749 ], [ 365199.506800003349781, 254852.676699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601052400", "MAP": "A9-78-T67", "PARCEL_NAM": "33-65", "ACRE": "0.09", "LONGITUDE": -64.87842502, "LATITUDE": 18.32294011, "OBJECTID_1": 38108, "PARCEL_NO_": "107601052400", "Tax_Legal_": "33-65 NADIR RED HOOK QTR", "Name": "TROTMAN, GLORIA A", "Address": "PO BOX 3724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10800, "Improved_V": 113100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.654119658599996, "SHAPE_Area": 602.02465799599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364383.465800002217293, 254882.158399999141693 ], [ 364363.405100002884865, 254870.595100000500679 ], [ 364351.915299996733665, 254894.1435999982059 ], [ 364370.35980000346899, 254906.115800000727177 ], [ 364383.465800002217293, 254882.158399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602031100", "MAP": null, "PARCEL_NAM": "20J", "ACRE": "0.11", "LONGITUDE": -64.87233684, "LATITUDE": 18.3230111, "OBJECTID_1": 38473, "PARCEL_NO_": "107602031100", "Tax_Legal_": "20J NADIR RED HOOK QTR", "Name": "MONACE, YENNI", "Address": "PO Box 9918", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10900, "Improved_V": 161900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.764636483499999, "SHAPE_Area": 392.15821191399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365031.669100001454353, 254895.907400000840425 ], [ 365003.45889999717474, 254894.40989999845624 ], [ 364989.667099997401237, 254904.218400001525879 ], [ 365016.223300002515316, 254910.557500001043081 ], [ 365031.669100001454353, 254895.907400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86242879, "LATITUDE": 18.32286715, "OBJECTID_1": 39226, "PARCEL_NO_": "107701022000", "Tax_Legal_": "4E-2 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "QUEELEY, WILLIAM", "Address": "6504 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41800, "Improved_V": 189200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.121465825, "SHAPE_Area": 1248.3488374900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366080.70160000026226, 254878.215999998152256 ], [ 366029.273599997162819, 254881.063099998980761 ], [ 366056.375399999320507, 254918.0152000002563 ], [ 366065.54900000244379, 254918.490699999034405 ], [ 366068.753799997270107, 254913.015799999237061 ], [ 366079.939699999988079, 254888.502000000327826 ], [ 366080.70160000026226, 254878.215999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107702013800", "MAP": null, "PARCEL_NAM": "9A-4", "ACRE": null, "LONGITUDE": -64.85236159, "LATITUDE": 18.32290822, "OBJECTID_1": 39487, "PARCEL_NO_": "107702013800", "Tax_Legal_": "NAZARETH ESTATE 9A-4&9A-5-1 RED HOOK QTR", "Name": "VESSUP LANE LLC", "Address": "PO Box B", "City": "Kingsville", "State": "Texas", "Zip": 78364, "Country": "United States", "Land_Value": 94600, "Improved_V": 215100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.34588071900001, "SHAPE_Area": 1725.6449636100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367145.199299998581409, 254891.462999999523163 ], [ 367126.652300000190735, 254891.522300001233816 ], [ 367114.571999996900558, 254889.734600000083447 ], [ 367098.479900002479553, 254885.592199999839067 ], [ 367099.759900003671646, 254924.654899999499321 ], [ 367120.706000000238419, 254926.937300000339746 ], [ 367148.124200001358986, 254926.739500001072884 ], [ 367145.199299998581409, 254891.462999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107702014000", "MAP": null, "PARCEL_NAM": "9A-6", "ACRE": "0.40", "LONGITUDE": -64.85146247, "LATITUDE": 18.32286305, "OBJECTID_1": 39489, "PARCEL_NO_": "107702014000", "Tax_Legal_": "NAZARETH ESTATE 9A-6 RED HOOK QTR", "Name": "VESSUP LANE LLC", "Address": "PO Box B", "City": "Kingsville", "State": "Texas", "Zip": 78364, "Country": "United States", "Land_Value": 86600, "Improved_V": 758700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.37054331900001, "SHAPE_Area": 1906.1544483499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367237.22860000282526, 254879.339499998837709 ], [ 367211.401399999856949, 254882.083399999886751 ], [ 367195.24099999666214, 254885.961899999529123 ], [ 367194.908299997448921, 254925.011500000953674 ], [ 367219.097699999809265, 254925.209499999880791 ], [ 367240.042099997401237, 254927.702899999916553 ], [ 367237.22860000282526, 254879.339499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107702013900", "MAP": null, "PARCEL_NAM": "9A-5", "ACRE": "0.35", "LONGITUDE": -64.85190091, "LATITUDE": 18.3228973, "OBJECTID_1": 39488, "PARCEL_NO_": "107702013900", "Tax_Legal_": "NAZARETH ESTATE REM.9A-5 RED HOOK QTR", "Name": "JOHN M. & ERNA M. LYNCH SR TRUST", "Address": "PO Box 1523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 79700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.71553510199999, "SHAPE_Area": 1763.6856296200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367195.24099999666214, 254885.961899999529123 ], [ 367176.663500003516674, 254889.609600000083447 ], [ 367145.199299998581409, 254891.462999999523163 ], [ 367148.124200001358986, 254926.739500001072884 ], [ 367194.908299997448921, 254925.011500000953674 ], [ 367195.24099999666214, 254885.961899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014800", "MAP": "F9-453-T59", "PARCEL_NAM": "94", "ACRE": ".24", "LONGITUDE": -64.86493095, "LATITUDE": 18.32279141, "OBJECTID_1": 39166, "PARCEL_NO_": "107701014800", "Tax_Legal_": "94 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "HAYNES, EARL V", "Address": "4408 Grove Landing Dr", "City": "Grovetown", "State": "Georgia", "Zip": 30813, "Country": "United States", "Land_Value": 35600, "Improved_V": 1100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.53194255299999, "SHAPE_Area": 970.27626945600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365803.553000003099442, 254873.238800000399351 ], [ 365797.400499999523163, 254860.811799999326468 ], [ 365776.16160000115633, 254870.758799999952316 ], [ 365783.675599999725819, 254885.633400000631809 ], [ 365784.5625, 254887.388999998569489 ], [ 365780.826999999582767, 254888.098600000143051 ], [ 365783.023299999535084, 254905.622400000691414 ], [ 365814.239900000393391, 254894.824400000274181 ], [ 365807.421099998056889, 254881.051600001752377 ], [ 365803.553000003099442, 254873.238800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704030300", "MAP": null, "PARCEL_NAM": "9A-3", "ACRE": "0.40", "LONGITUDE": -64.85280046, "LATITUDE": 18.32279716, "OBJECTID_1": 39972, "PARCEL_NO_": "107704030300", "Tax_Legal_": "9A 3 NAZARETH 1 RED HOOK QTR", "Name": "EDDIE FREEMAN REVOCBLE TRUST", "Address": "PO BOX 3479", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86600, "Improved_V": 424300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.33075022899999, "SHAPE_Area": 2038.14850735 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367098.479900002479553, 254885.592199999839067 ], [ 367092.851899996399879, 254883.646299999207258 ], [ 367078.426399998366833, 254873.184599999338388 ], [ 367072.832599997520447, 254867.228199999779463 ], [ 367071.225299999117851, 254866.581799998879433 ], [ 367060.843999996781349, 254854.675599999725819 ], [ 367053.105200000107288, 254911.185300000011921 ], [ 367074.805500000715256, 254919.595600001513958 ], [ 367099.759900003671646, 254924.654899999499321 ], [ 367098.479900002479553, 254885.592199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107702014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85006295, "LATITUDE": 18.32284032, "OBJECTID_1": 39495, "PARCEL_NO_": "107702014600", "Tax_Legal_": "NAZARETH ESTATE 9A-12 RED HOOK QTR", "Name": "CARPENTER, PAMELA F.", "Address": "6911 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 108200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.658610977, "SHAPE_Area": 2405.7141964100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367392.069399997591972, 254877.229299999773502 ], [ 367386.391000002622604, 254881.193599998950958 ], [ 367380.732400000095367, 254882.835999999195337 ], [ 367328.268200002610683, 254888.739399999380112 ], [ 367325.01240000128746, 254892.301399998366833 ], [ 367325.780900001525879, 254896.740600001066923 ], [ 367344.119300000369549, 254921.166499998420477 ], [ 367348.154500000178814, 254920.777300000190735 ], [ 367350.568000003695488, 254921.430399999022484 ], [ 367353.771700002253056, 254923.989700000733137 ], [ 367399.760300002992153, 254920.988600000739098 ], [ 367392.069399997591972, 254877.229299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602031400", "MAP": null, "PARCEL_NAM": "20-10", "ACRE": "0.11", "LONGITUDE": -64.87245101000001, "LATITUDE": 18.32290586, "OBJECTID_1": 38476, "PARCEL_NO_": "107602031400", "Tax_Legal_": "EST NADIR 20-10 RED HOOK QRT", "Name": "MARIO ADAMS & DOREEN ADAMS REVOCABLE LIVING TRUST", "Address": "PO Box 8960", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011960, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.17406079200001, "SHAPE_Area": 402.79417824400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365003.45889999717474, 254894.40989999845624 ], [ 365019.748800002038479, 254875.333700001239777 ], [ 364995.503700003027916, 254881.679200001060963 ], [ 364981.620200000703335, 254902.252700001001358 ], [ 364989.667099997401237, 254904.218400001525879 ], [ 365003.45889999717474, 254894.40989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602031500", "MAP": "F9-3106-T73", "PARCEL_NAM": "20", "ACRE": ".24", "LONGITUDE": -64.8732153, "LATITUDE": 18.32284948, "OBJECTID_1": 38477, "PARCEL_NO_": "107602031500", "Tax_Legal_": "20 EST NADIR RED HOOK QTR", "Name": "CHRISTIAN, JR., ERIC", "Address": "PO BOX 11226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28700, "Improved_V": 79600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.95200426400001, "SHAPE_Area": 1214.6842322 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364945.442199997603893, 254889.502099998295307 ], [ 364947.101599998772144, 254884.027300000190735 ], [ 364948.001400001347065, 254873.057799998670816 ], [ 364947.201999999582767, 254870.514899998903275 ], [ 364930.119499996304512, 254887.957699999213219 ], [ 364924.434600003063679, 254880.291700001806021 ], [ 364911.373000003397465, 254862.678300000727177 ], [ 364903.925700001418591, 254852.635800000280142 ], [ 364902.258900001645088, 254850.095800001174212 ], [ 364901.084100000560284, 254851.146600000560284 ], [ 364900.036399997770786, 254852.083799999207258 ], [ 364899.9983000010252, 254853.746199999004602 ], [ 364899.790299996733665, 254862.828899998217821 ], [ 364900.434000000357628, 254875.725999999791384 ], [ 364901.492299996316433, 254896.930700000375509 ], [ 364906.13400000333786, 254898.415399998426437 ], [ 364914.069700002670288, 254900.953699998557568 ], [ 364923.162699997425079, 254903.862199999392033 ], [ 364925.018100000917912, 254902.666299998760223 ], [ 364945.442199997603893, 254889.502099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86412372, "LATITUDE": 18.32286538, "OBJECTID_1": 39216, "PARCEL_NO_": "107701020800", "Tax_Legal_": "17AD ESTATE FRYDENHOJ No.1 RED HOOK QTR.", "Name": "ILES, IVORLEE", "Address": "443 NORTH EAST 103 STREET", "City": "Miami Shores", "State": "Florida", "Zip": 33138, "Country": "United States", "Land_Value": 41100, "Improved_V": 107200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.06916924800001, "SHAPE_Area": 1129.73857163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365908.070500001311302, 254901.410100001841784 ], [ 365907.050200000405312, 254881.276099998503923 ], [ 365851.845299996435642, 254884.254999998956919 ], [ 365850.956299997866154, 254893.958000000566244 ], [ 365848.452799998223782, 254903.858899999409914 ], [ 365908.070500001311302, 254901.410100001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602031200", "MAP": null, "PARCEL_NAM": "20E", "ACRE": "0.12", "LONGITUDE": -64.87219596, "LATITUDE": 18.32286631, "OBJECTID_1": 38474, "PARCEL_NO_": "107602031200", "Tax_Legal_": "NADIR 20E RED HOOK QTR. 2", "Name": "MARIO ADAMS & DOREEN ADAMS REVOCABLE LIVING TRUST", "Address": "PO Box 8960", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011960, "Country": "United States", "Land_Value": 14400, "Improved_V": 124600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.85349547200001, "SHAPE_Area": 569.51578863600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365048.76349999755621, 254877.048900000751019 ], [ 365019.748800002038479, 254875.333700001239777 ], [ 365003.45889999717474, 254894.40989999845624 ], [ 365031.669100001454353, 254895.907400000840425 ], [ 365048.76349999755621, 254877.048900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602027900", "MAP": "A9-530-T99", "PARCEL_NAM": "1-54", "ACRE": "10,309 sq ft", "LONGITUDE": -64.87148374, "LATITUDE": 18.32276776, "OBJECTID_1": 38447, "PARCEL_NO_": "107602027900", "Tax_Legal_": "FRYDENHOJ ESTATE 1-54 No.3 RED HOOK QTR.", "Name": "JN-CHARLES, VICTORIA", "Address": "6017 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32900, "Improved_V": 133200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.55441312400001, "SHAPE_Area": 1001.92373866 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365124.580200001597404, 254874.925200000405312 ], [ 365095.723800003528595, 254854.635099999606609 ], [ 365077.005999997258186, 254874.746899999678135 ], [ 365107.464299999177456, 254896.316599998623133 ], [ 365122.123499996960163, 254879.337999999523163 ], [ 365124.580200001597404, 254874.925200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86596617, "LATITUDE": 18.32277009, "OBJECTID_1": 39181, "PARCEL_NO_": "107701016300", "Tax_Legal_": "FRYDENHOJ ESTATE 117 No.3 RED HOOK QTR.", "Name": "BRIN, JAVAITE", "Address": "6212 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 194700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.36058262900001, "SHAPE_Area": 428.751595275 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365684.283399999141693, 254865.151700001209974 ], [ 365680.151100002229214, 254876.939100001007318 ], [ 365675.198100000619888, 254890.408599998801947 ], [ 365672.721699997782707, 254897.143300000578165 ], [ 365683.986699998378754, 254899.979699999094009 ], [ 365695.564499996602535, 254866.08839999884367 ], [ 365685.951700001955032, 254858.621500000357628 ], [ 365684.283399999141693, 254865.151700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704030200", "MAP": null, "PARCEL_NAM": "9A-2", "ACRE": "0.40", "LONGITUDE": -64.85311512, "LATITUDE": 18.32260297, "OBJECTID_1": 39971, "PARCEL_NO_": "107704030200", "Tax_Legal_": "9A-2 NAZARETH RED HOOK QTR", "Name": "AVERY, MORGAN R.& MARGARET H.", "Address": "6902 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68400, "Improved_V": 55600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.71770514299999, "SHAPE_Area": 1777.985701 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367060.843999996781349, 254854.675599999725819 ], [ 367038.446999996900558, 254833.38289999961853 ], [ 367022.650600001215935, 254889.193399999290705 ], [ 367028.246200002729893, 254894.938700001686811 ], [ 367037.058100000023842, 254901.765799999237061 ], [ 367053.105200000107288, 254911.185300000011921 ], [ 367060.843999996781349, 254854.675599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042700", "MAP": "A9-58-T66", "PARCEL_NAM": "48-3", "ACRE": null, "LONGITUDE": -64.86684593, "LATITUDE": 18.32271418, "OBJECTID_1": 38509, "PARCEL_NO_": "107602042700", "Tax_Legal_": "FRYDENHOJ ESTATE 48-3 No.3 RED HOOK QTR.", "Name": "DORELIEN, SHAIL S", "Address": "PO Box 7024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36000, "Improved_V": 183400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.53305131600001, "SHAPE_Area": 888.30555695500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365603.868900001049042, 254882.503100000321865 ], [ 365603.375399999320507, 254862.733399998396635 ], [ 365603.086499996483326, 254858.689100001007318 ], [ 365599.493600003421307, 254859.124600000679493 ], [ 365595.138599999248981, 254858.580299999564886 ], [ 365589.476999998092651, 254857.056000001728535 ], [ 365582.944399997591972, 254854.22520000115037 ], [ 365576.30290000140667, 254852.809799998998642 ], [ 365569.661499999463558, 254852.047699999064207 ], [ 365572.270700000226498, 254856.635600000619888 ], [ 365591.587099999189377, 254893.394799999892712 ], [ 365595.843400001525879, 254899.576999999582767 ], [ 365602.687600001692772, 254900.311000000685453 ], [ 365604.194099999964237, 254895.526999998837709 ], [ 365603.868900001049042, 254882.503100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86937311, "LATITUDE": 18.3227333, "OBJECTID_1": 38943, "PARCEL_NO_": "107604030100", "Tax_Legal_": "52KC EST FRYDENHOJ RED HOOK QTR", "Name": "WEEKES, JOHN & AUBREY", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41100, "Improved_V": 182200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.440124166, "SHAPE_Area": 1634.0925707599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365306.670199997723103, 254892.458599999547005 ], [ 365357.56139999628067, 254881.898200001567602 ], [ 365352.885300002992153, 254862.861600000411272 ], [ 365344.0320999994874, 254860.889299999922514 ], [ 365338.420299999415874, 254857.043600000441074 ], [ 365292.028599999845028, 254861.671700000762939 ], [ 365294.507799997925758, 254869.317400000989437 ], [ 365297.947300001978874, 254878.710099998861551 ], [ 365302.445299997925758, 254886.912200000137091 ], [ 365306.670199997723103, 254892.458599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042500", "MAP": "D9-7726-T006", "PARCEL_NAM": "48-2", "ACRE": ".247", "LONGITUDE": -64.86707409, "LATITUDE": 18.32271931, "OBJECTID_1": 38508, "PARCEL_NO_": "107602042500", "Tax_Legal_": "48-2, 48-4, 54-B-1 & 54-C-1 FRYDENHOJ", "Name": "VICTOR, FRANKLYN", "Address": "PO Box 308034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.66716274199999, "SHAPE_Area": 1261.25106198 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365572.270700000226498, 254856.635600000619888 ], [ 365569.661499999463558, 254852.047699999064207 ], [ 365562.25789999961853, 254851.612199999392033 ], [ 365556.378600001335144, 254852.265399999916553 ], [ 365550.499200001358986, 254853.02760000154376 ], [ 365542.660099998116493, 254855.858399998396635 ], [ 365538.362400002777576, 254861.424300000071526 ], [ 365538.340800002217293, 254863.95719999819994 ], [ 365547.984200000762939, 254867.835799999535084 ], [ 365556.792499996721745, 254875.085099998861551 ], [ 365557.582599997520447, 254876.991399999707937 ], [ 365561.578199997544289, 254881.245999999344349 ], [ 365566.322599999606609, 254892.261700000613928 ], [ 365568.276199996471405, 254896.62049999833107 ], [ 365595.843400001525879, 254899.576999999582767 ], [ 365591.587099999189377, 254893.394799999892712 ], [ 365572.270700000226498, 254856.635600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86611682, "LATITUDE": 18.32278938, "OBJECTID_1": 39052, "PARCEL_NO_": "107604050100", "Tax_Legal_": "126 FRYDENHOJ RED HOOK QTR", "Name": "VANTERPOOL, MARJORIE", "Address": "6211 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10400, "Improved_V": 69100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.802970169800005, "SHAPE_Area": 284.84104832600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365680.151100002229214, 254876.939100001007318 ], [ 365660.02929999679327, 254872.552600000053644 ], [ 365661.562799997627735, 254881.853199999779463 ], [ 365658.252999998629093, 254891.747499998658895 ], [ 365675.198100000619888, 254890.408599998801947 ], [ 365680.151100002229214, 254876.939100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030600", "MAP": "F9-2943-T72", "PARCEL_NAM": "2D-F", "ACRE": ".23", "LONGITUDE": -64.8731181, "LATITUDE": 18.32268431, "OBJECTID_1": 38468, "PARCEL_NO_": "107602030600", "Tax_Legal_": "20F NADIR RED HOOK QTR", "Name": "LEONARD, RONDELL A. & DWIGHT J.", "Address": "64-28 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27500, "Improved_V": 161500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.65168398700001, "SHAPE_Area": 960.00182903899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364945.915200002491474, 254854.461399998515844 ], [ 364942.184600003063679, 254850.889499999582767 ], [ 364938.374600000679493, 254850.095800001174212 ], [ 364932.421400003135204, 254851.048300001770258 ], [ 364927.341399997472763, 254852.635800000280142 ], [ 364919.562600001692772, 254853.191399998962879 ], [ 364913.053900003433228, 254851.762699998915195 ], [ 364908.971699997782707, 254849.630499999970198 ], [ 364906.386399999260902, 254847.158900000154972 ], [ 364902.258900001645088, 254850.095800001174212 ], [ 364903.925700001418591, 254852.635800000280142 ], [ 364911.373000003397465, 254862.678300000727177 ], [ 364924.434600003063679, 254880.291700001806021 ], [ 364930.119499996304512, 254887.957699999213219 ], [ 364947.201999999582767, 254870.514899998903275 ], [ 364946.153300002217293, 254858.747699998319149 ], [ 364945.915200002491474, 254854.461399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87770125, "LATITUDE": 18.32256631, "OBJECTID_1": 38736, "PARCEL_NO_": "107603050100", "Tax_Legal_": "4 NADIR RED HOOK QTR", "Name": "KEITH, LLOYD D. & CARMELITA F.", "Address": "155-30 116th Ave", "City": "Jamaica", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 94200, "Improved_V": 24500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.84174704399999, "SHAPE_Area": 3299.6308488300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364405.712700001895428, 254826.400699999183416 ], [ 364383.960299998521805, 254824.111699998378754 ], [ 364391.141599997878075, 254833.036400001496077 ], [ 364391.935300000011921, 254834.520599998533726 ], [ 364406.319499999284744, 254849.837000001221895 ], [ 364420.725199997425079, 254862.62049999833107 ], [ 364432.178800001740456, 254868.570199999958277 ], [ 364455.294699996709824, 254870.322900000959635 ], [ 364464.197700001299381, 254870.997900001704693 ], [ 364485.961000002920628, 254872.020399998873472 ], [ 364486.02929999679327, 254863.999400001019239 ], [ 364486.072499997913837, 254858.933499999344349 ], [ 364487.908100001513958, 254832.772900000214577 ], [ 364411.353299997746944, 254826.868999999016523 ], [ 364405.712700001895428, 254826.400699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87641898, "LATITUDE": 18.3226525, "OBJECTID_1": 38739, "PARCEL_NO_": "107603050400", "Tax_Legal_": "4B NADIR RED HOOK QTR", "Name": "FRANCOIS, DORIS N", "Address": "PO Box 502434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 34400, "Improved_V": 36400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.539458973, "SHAPE_Area": 1179.1121421299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364587.831500001251698, 254840.556800000369549 ], [ 364562.045699998736382, 254838.445999998599291 ], [ 364565.755300000309944, 254876.262099999934435 ], [ 364597.190700002014637, 254877.785900000482798 ], [ 364594.197499997913837, 254850.530299998819828 ], [ 364595.037900000810623, 254846.526399999856949 ], [ 364598.308100000023842, 254841.27589999884367 ], [ 364587.831500001251698, 254840.556800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036300", "MAP": "A9-78-T67", "PARCEL_NAM": "33-64", "ACRE": "0.09", "LONGITUDE": -64.87883684000001, "LATITUDE": 18.32263142, "OBJECTID_1": 38685, "PARCEL_NO_": "107603036300", "Tax_Legal_": "33-64 NADIR NO.2 RED HOOK QTR", "Name": "MARTA A. GARCIA & ENRIQUE G. SALAS LIV. TRSTS", "Address": "PO Box 7172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9600, "Improved_V": 90300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.899349879799999, "SHAPE_Area": 551.56333845899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364340.162299998104572, 254851.228399999439716 ], [ 364326.598800003528595, 254836.941100001335144 ], [ 364307.907999999821186, 254853.886700000613928 ], [ 364316.6875, 254864.513300001621246 ], [ 364320.683100000023842, 254868.767799999564886 ], [ 364323.229000002145767, 254870.951799999922514 ], [ 364334.461400002241135, 254857.868700001388788 ], [ 364340.162299998104572, 254851.228399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87669862, "LATITUDE": 18.32264299, "OBJECTID_1": 38738, "PARCEL_NO_": "107603050300", "Tax_Legal_": "NADIR 4HA RED HOOK QTR", "Name": "REGISTE, FRANCIS & OTHERS", "Address": "20 Hamlin Rd", "City": "Falmouth", "State": "Maine", "Zip": 4105, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.12689523099999, "SHAPE_Area": 1039.4574498300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364557.211400002241135, 254837.984200000762939 ], [ 364536.258000001311302, 254836.546100001782179 ], [ 364536.738899998366833, 254874.758000001311302 ], [ 364565.755300000309944, 254876.262099999934435 ], [ 364562.045699998736382, 254838.445999998599291 ], [ 364557.211400002241135, 254837.984200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011800", "MAP": null, "PARCEL_NAM": "166", "ACRE": "0.23", "LONGITUDE": -64.86409156000001, "LATITUDE": 18.33006986, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.54331039100001, "SHAPE_Area": 523.90025858299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365858.798600003123283, 255677.179299999028444 ], [ 365856.386900000274181, 255676.315200001001358 ], [ 365866.663900002837181, 255700.464000001549721 ], [ 365895.719999998807907, 255697.324299998581409 ], [ 365894.985600002110004, 255688.874499998986721 ], [ 365858.798600003123283, 255677.179299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031500", "MAP": null, "PARCEL_NAM": "F-A", "ACRE": null, "LONGITUDE": -64.86093875, "LATITUDE": 18.3287992, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.49408272299999, "SHAPE_Area": 689.25506921 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366227.723300002515316, 255533.910900000482798 ], [ 366172.586499996483326, 255569.556699998676777 ], [ 366172.568499997258186, 255571.667399998754263 ], [ 366174.177599996328354, 255572.102800000458956 ], [ 366209.76860000193119, 255559.095199998468161 ], [ 366224.341600000858307, 255552.248399998992682 ], [ 366239.688500002026558, 255549.207600001245737 ], [ 366227.723300002515316, 255533.910900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701057800", "MAP": "A9-541-T000", "PARCEL_NAM": "32-18", "ACRE": "0.26", "LONGITUDE": -64.86469608, "LATITUDE": 18.32870655, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.188563227, "SHAPE_Area": 1237.6632898 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365841.539099998772144, 255526.106100000441074 ], [ 365809.369400002062321, 255516.132500000298023 ], [ 365803.635300002992153, 255526.640299998223782 ], [ 365801.180399999022484, 255530.842099998146296 ], [ 365798.737999998033047, 255533.566300000995398 ], [ 365793.76349999755621, 255549.56870000064373 ], [ 365791.999799996614456, 255567.286100000143051 ], [ 365822.79619999974966, 255549.173000000417233 ], [ 365841.539099998772144, 255526.106100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85193831, "LATITUDE": 18.32820842, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.11243646599999, "SHAPE_Area": 2264.4387214100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367164.526399999856949, 255462.418099999427795 ], [ 367137.149499997496605, 255457.761100001633167 ], [ 367128.992899999022484, 255468.67119999974966 ], [ 367131.363200001418591, 255474.390099998563528 ], [ 367134.539899997413158, 255480.115699999034405 ], [ 367136.138199999928474, 255481.817499998956919 ], [ 367136.919299997389317, 255484.779199998825788 ], [ 367138.519400000572205, 255486.269900001585484 ], [ 367142.484399996697903, 255494.112900000065565 ], [ 367151.256700001657009, 255505.583700001239777 ], [ 367161.650700002908707, 255516.01240000128746 ], [ 367165.660700000822544, 255518.578299999237061 ], [ 367178.464599996805191, 255530.082100000232458 ], [ 367188.055799998342991, 255540.081999998539686 ], [ 367188.844099998474121, 255542.199400000274181 ], [ 367192.852300003170967, 255544.976500000804663 ], [ 367196.892899997532368, 255543.954100001603365 ], [ 367194.599799998104572, 255529.158700000494719 ], [ 367192.233000002801418, 255523.017700001597404 ], [ 367190.634800001978874, 255521.315799999982119 ], [ 367189.050899997353554, 255517.925400000065565 ], [ 367188.269799999892712, 255514.963700000196695 ], [ 367181.896600000560284, 255505.834499999880791 ], [ 367175.555799998342991, 255492.905900001525879 ], [ 367167.600599996745586, 255480.175200000405312 ], [ 367165.262500002980232, 255470.656800001859665 ], [ 367164.526399999856949, 255462.418099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701054200", "MAP": "A9-541-T000", "PARCEL_NAM": "32-19", "ACRE": "0.25", "LONGITUDE": -64.86451176, "LATITUDE": 18.32840026, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.95735273, "SHAPE_Area": 1147.791113 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365855.537799999117851, 255492.023600000888109 ], [ 365824.955399997532368, 255485.018300000578165 ], [ 365823.32660000026226, 255486.904800001531839 ], [ 365820.844700001180172, 255494.272700000554323 ], [ 365818.396999999880791, 255497.630199998617172 ], [ 365815.936700001358986, 255502.465199999511242 ], [ 365813.462099999189377, 255508.988899998366833 ], [ 365809.369400002062321, 255516.132500000298023 ], [ 365841.539099998772144, 255526.106100000441074 ], [ 365855.537799999117851, 255492.023600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85142626, "LATITUDE": 18.32801526, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.65104816100001, "SHAPE_Area": 2239.6749785900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367241.286100000143051, 255444.25899999961257 ], [ 367213.86429999768734, 255444.879000000655651 ], [ 367184.529500000178814, 255480.73589999973774 ], [ 367199.730800002813339, 255494.792500000447035 ], [ 367221.368100002408028, 255510.590500000864267 ], [ 367233.635499998927116, 255490.425900001078844 ], [ 367241.286100000143051, 255444.25899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031900", "MAP": "D9-9107-T016", "PARCEL_NAM": "F-4", "ACRE": null, "LONGITUDE": -64.86018994, "LATITUDE": 18.32791351, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.250512824, "SHAPE_Area": 1037.0691336699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366276.635799996554852, 255442.302999999374151 ], [ 366276.477300003170967, 255442.937100000679493 ], [ 366272.4949000030756, 255457.273800000548363 ], [ 366268.247000001370907, 255472.937800001353025 ], [ 366267.485299997031689, 255481.485599998384714 ], [ 366284.753100000321865, 255465.350099999457598 ], [ 366311.373999997973442, 255464.090300001204014 ], [ 366309.982600003480911, 255438.114399999380112 ], [ 366276.635799996554852, 255442.302999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702011100", "MAP": "B9-135-T66", "PARCEL_NAM": "18-4", "ACRE": null, "LONGITUDE": -64.85167657, "LATITUDE": 18.32783581, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.10038079399999, "SHAPE_Area": 1148.9004940699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367213.86429999768734, 255444.879000000655651 ], [ 367211.537000000476837, 255434.094200000166893 ], [ 367173.566600002348423, 255442.438200000673532 ], [ 367171.855099998414516, 255454.034400001168251 ], [ 367172.593099996447563, 255462.061999998986721 ], [ 367174.93469999730587, 255471.15819999948144 ], [ 367178.921300001442432, 255476.468100000172853 ], [ 367184.529500000178814, 255480.73589999973774 ], [ 367213.86429999768734, 255444.879000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701032000", "MAP": "A9-538-T99", "PARCEL_NAM": "F-5", "ACRE": null, "LONGITUDE": -64.85989, "LATITUDE": 18.32788021, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.133697385, "SHAPE_Area": 665.17015137500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366340.453400000929832, 255458.206599999219179 ], [ 366327.743000000715256, 255435.726700000464916 ], [ 366309.982600003480911, 255438.114399999380112 ], [ 366311.373999997973442, 255464.090300001204014 ], [ 366312.101199999451637, 255473.384399998933077 ], [ 366318.609300002455711, 255466.682700000703335 ], [ 366326.713799998164177, 255461.893800001591444 ], [ 366333.1858000010252, 255459.413699999451637 ], [ 366340.453400000929832, 255458.206599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86594855, "LATITUDE": 18.32700075, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.69911843300002, "SHAPE_Area": 721.97459439099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365709.876800000667572, 255363.119800001382828 ], [ 365703.023199997842312, 255376.892099998891354 ], [ 365698.02250000089407, 255381.892700001597404 ], [ 365695.42960000038147, 255384.115200001746416 ], [ 365692.83669999986887, 255384.300400000065565 ], [ 365690.058600001037121, 255382.818799998611212 ], [ 365688.947300001978874, 255380.5962999984622 ], [ 365686.354400001466274, 255374.669599998742342 ], [ 365680.057300001382828, 255337.257500000298023 ], [ 365679.5016999989748, 255334.849800001829863 ], [ 365674.871500000357628, 255327.441500000655651 ], [ 365660.417700000107288, 255300.231300000101328 ], [ 365652.307800002396107, 255305.653299998492002 ], [ 365672.093400001525879, 255332.8125 ], [ 365674.50110000371933, 255336.701900001615286 ], [ 365680.427699998021126, 255365.779599998146296 ], [ 365682.0945999994874, 255371.521099999547005 ], [ 365683.391099996864796, 255377.262499999254942 ], [ 365687.095200002193451, 255384.300400000065565 ], [ 365690.984600000083447, 255389.301100000739098 ], [ 365695.244400002062321, 255390.412300001829863 ], [ 365697.837300002574921, 255389.856699999421835 ], [ 365701.541500002145767, 255386.893399998545647 ], [ 365717.905799999833107, 255367.196299999952316 ], [ 365709.876800000667572, 255363.119800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055100", "MAP": "A9-541-T000", "PARCEL_NAM": "32-28", "ACRE": null, "LONGITUDE": -64.8646171, "LATITUDE": 18.32699537, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.182704344, "SHAPE_Area": 1083.96499808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365810.211999997496605, 255322.566599998623133 ], [ 365802.669299997389317, 255356.068799998611212 ], [ 365831.642599999904633, 255362.638700000941753 ], [ 365838.681800000369549, 255388.238699998706579 ], [ 365840.380699999630451, 255378.120099999010563 ], [ 365841.237400002777576, 255372.216499999165535 ], [ 365842.160599999129772, 255358.502900000661612 ], [ 365841.383100003004074, 255355.119100000709295 ], [ 365829.450199998915195, 255336.022999998182058 ], [ 365819.8445999994874, 255327.71169999986887 ], [ 365810.211999997496605, 255322.566599998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701012700", "MAP": "D9-6189-T97", "PARCEL_NAM": "ROW", "ACRE": ".28", "LONGITUDE": -64.86552189, "LATITUDE": 18.32663828, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.18862693099999, "SHAPE_Area": 1057.0706137100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365717.905799999833107, 255367.196299999952316 ], [ 365722.837099999189377, 255356.259799998253584 ], [ 365726.170299999415874, 255343.621399998664856 ], [ 365733.578100003302097, 255325.950199998915195 ], [ 365736.983199998736382, 255304.868700001388788 ], [ 365737.153999999165535, 255284.816199999302626 ], [ 365735.615099996328354, 255276.148800000548363 ], [ 365734.96169999986887, 255258.200500000268221 ], [ 365738.266000002622604, 255248.939399998635054 ], [ 365726.113799996674061, 255255.594999998807907 ], [ 365725.968199998140335, 255272.692299999296665 ], [ 365728.261200003325939, 255287.487700000405312 ], [ 365727.282300002872944, 255307.744600001722574 ], [ 365725.56360000371933, 255320.185100000351667 ], [ 365723.076300002634525, 255328.186299998313189 ], [ 365717.322400003671646, 255341.015900000929832 ], [ 365713.145199999213219, 255358.080299999564886 ], [ 365711.521799996495247, 255359.333599999547005 ], [ 365709.876800000667572, 255363.119800001382828 ], [ 365717.905799999833107, 255367.196299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87349619, "LATITUDE": 18.32656363, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.13986541899999, "SHAPE_Area": 1535.6959821200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364910.748499996960163, 255270.453099999576807 ], [ 364901.927599996328354, 255264.681400001049042 ], [ 364892.305799998342991, 255258.269799999892712 ], [ 364870.254799999296665, 255291.019999999552965 ], [ 364870.204499997198582, 255296.93019999936223 ], [ 364870.145199999213219, 255303.895799998193979 ], [ 364859.310599997639656, 255345.181400001049042 ], [ 364865.816899999976158, 255338.690799999982119 ], [ 364868.262800000607967, 255335.544399999082088 ], [ 364872.348300002515316, 255329.245000001043081 ], [ 364873.984300002455711, 255326.514199998229742 ], [ 364878.080600000917912, 255318.948399998247623 ], [ 364882.176899999380112, 255311.382500000298023 ], [ 364887.052500002086163, 255306.989500001072884 ], [ 364893.508400000631809, 255306.409000001847744 ], [ 364910.748499996960163, 255270.453099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.835211, "LATITUDE": 18.32668034, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.16098612100001, "SHAPE_Area": 2336.0970921200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368962.8074000030756, 255358.501600001007318 ], [ 368956.722000002861023, 255315.599800001829863 ], [ 368914.718199998140335, 255324.122000001370907 ], [ 368902.6199000030756, 255324.445099998265505 ], [ 368903.228399999439716, 255347.670400001108646 ], [ 368904.689999997615814, 255365.414200000464916 ], [ 368928.899099998176098, 255363.290399998426437 ], [ 368945.064999997615814, 255358.778599999845028 ], [ 368962.8074000030756, 255358.501600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055200", "MAP": "A9-541-T000", "PARCEL_NAM": "32-29", "ACRE": "0.28", "LONGITUDE": -64.86459933, "LATITUDE": 18.32660195, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.68117485499999, "SHAPE_Area": 605.12433720900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365839.5878000035882, 255302.221900001168251 ], [ 365817.271600000560284, 255285.313499998301268 ], [ 365816.944799996912479, 255289.480099998414516 ], [ 365812.706500001251698, 255313.721099998801947 ], [ 365824.750799998641014, 255319.73030000180006 ], [ 365831.943000003695488, 255325.31700000166893 ], [ 365837.831500001251698, 255307.52760000154376 ], [ 365839.5878000035882, 255302.221900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055300", "MAP": "A9-541-T000", "PARCEL_NAM": "32-30", "ACRE": "0.35", "LONGITUDE": -64.8648524, "LATITUDE": 18.32648158, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.52531881, "SHAPE_Area": 1111.46868236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365817.271600000560284, 255285.313499998301268 ], [ 365800.362300001084805, 255272.501899998635054 ], [ 365797.713799998164177, 255275.179400000721216 ], [ 365791.268700003623962, 255274.493400000035763 ], [ 365783.228900000452995, 255271.683299999684095 ], [ 365781.350199997425079, 255302.909800000488758 ], [ 365792.590000003576279, 255308.701299998909235 ], [ 365803.864000000059605, 255310.482400000095367 ], [ 365812.706500001251698, 255313.721099998801947 ], [ 365816.944799996912479, 255289.480099998414516 ], [ 365817.271600000560284, 255285.313499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802020200", "MAP": "D9-3341-T86", "PARCEL_NAM": "6L-22", "ACRE": null, "LONGITUDE": -64.84013752, "LATITUDE": 18.3258613, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 613.95932988599998, "SHAPE_Area": 9870.5818649299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368539.914200000464916, 255305.644600000232458 ], [ 368538.508299998939037, 255281.357299998402596 ], [ 368524.810000002384186, 255280.189699999988079 ], [ 368517.531599998474121, 255282.66330000013113 ], [ 368509.407399997115135, 255289.773899998515844 ], [ 368504.560500003397465, 255290.789700001478195 ], [ 368502.958599999547005, 255289.510099999606609 ], [ 368502.976599998772144, 255287.399300001561642 ], [ 368506.279200002551079, 255278.349300000816584 ], [ 368503.903399996459484, 255273.263599999248981 ], [ 368486.238300003111362, 255264.464200001209974 ], [ 368466.929899998009205, 255259.239900000393391 ], [ 368446.91780000180006, 255241.97749999910593 ], [ 368408.409000001847744, 255218.86430000141263 ], [ 368390.74379999935627, 255210.064800001680851 ], [ 368368.258799999952316, 255199.114999998360872 ], [ 368336.117799997329712, 255185.764199998229742 ], [ 368311.989500001072884, 255178.389499999582767 ], [ 368293.928800001740456, 255216.027499999850988 ], [ 368338.124899998307228, 255234.120999999344349 ], [ 368372.66330000013113, 255250.024599999189377 ], [ 368398.382600001990795, 255259.94539999961853 ], [ 368415.248599998652935, 255267.893899999558926 ], [ 368446.554499998688698, 255284.615499999374151 ], [ 368489.116499997675419, 255305.228799998760223 ], [ 368502.798600003123283, 255308.296100001782179 ], [ 368514.038400001823902, 255314.087600000202656 ], [ 368526.9070999994874, 255317.992600001394749 ], [ 368528.580799996852875, 255310.829100001603365 ], [ 368535.036700002849102, 255310.248700000345707 ], [ 368539.914200000464916, 255305.644600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701012700", "MAP": "D9-5860-T95", "PARCEL_NAM": "28-B", "ACRE": ".09", "LONGITUDE": -64.86512984, "LATITUDE": 18.32615627, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.87194077000001, "SHAPE_Area": 453.85682824000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365783.31700000166893, 255261.340500000864267 ], [ 365771.299699999392033, 255252.165100000798702 ], [ 365760.095799997448921, 255242.151999998837709 ], [ 365755.306500002741814, 255236.41330000013113 ], [ 365747.196599997580051, 255241.835299998521805 ], [ 365766.393500000238419, 255260.146499998867512 ], [ 365776.00450000166893, 255267.824499998241663 ], [ 365783.228900000452995, 255271.683299999684095 ], [ 365791.268700003623962, 255274.493400000035763 ], [ 365797.713799998164177, 255275.179400000721216 ], [ 365790.492899999022484, 255270.898400001227856 ], [ 365784.920699998736382, 255262.409099999815226 ], [ 365783.31700000166893, 255261.340500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020100", "MAP": null, "PARCEL_NAM": "19REM", "ACRE": null, "LONGITUDE": -64.86412648, "LATITUDE": 18.32559977, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 446.24648208399998, "SHAPE_Area": 10651.520447499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365921.201700001955032, 255160.527800001204014 ], [ 365829.329899996519089, 255109.319400001317263 ], [ 365829.293399997055531, 255112.272900000214577 ], [ 365829.224899999797344, 255117.817899998277426 ], [ 365825.531499996781349, 255133.430399999022484 ], [ 365834.964000001549721, 255143.127399999648333 ], [ 365838.626999996602535, 255146.893100000917912 ], [ 365837.193400003015995, 255178.590500000864267 ], [ 365836.240099996328354, 255199.668999999761581 ], [ 365835.933200001716614, 255206.454900000244379 ], [ 365835.577399998903275, 255214.322399999946356 ], [ 365834.976599998772144, 255227.607999999076128 ], [ 365833.843999996781349, 255252.650400001555681 ], [ 365837.581299997866154, 255253.061200000345707 ], [ 365860.066600002348423, 255255.688200000673532 ], [ 365875.74213777174009, 255256.361291743116453 ], [ 365891.405000001192093, 255257.283399999141693 ], [ 365926.222499996423721, 255259.605099998414516 ], [ 365921.201700001955032, 255160.527800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86200013, "LATITUDE": 18.32592958, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.25883477599999, "SHAPE_Area": 1102.3490216299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366115.13400000333786, 255214.449299998581409 ], [ 366087.714000001549721, 255214.8581000007689 ], [ 366085.763300001621246, 255254.527699999511242 ], [ 366107.539200000464916, 255254.072700001299381 ], [ 366117.362400002777576, 255236.843400001525879 ], [ 366115.13400000333786, 255214.449299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701018700", "MAP": "D9-5860-T95", "PARCEL_NAM": "29-F", "ACRE": "0.29", "LONGITUDE": -64.86552343, "LATITUDE": 18.32577131, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.49295963599999, "SHAPE_Area": 944.29040639200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365739.225199997425079, 255231.004299998283386 ], [ 365745.68469999730587, 255230.0016999989748 ], [ 365750.506399996578693, 255231.940999999642372 ], [ 365742.639300003647804, 255208.867400001734495 ], [ 365739.913000002503395, 255201.048500001430511 ], [ 365714.129600003361702, 255197.835400000214577 ], [ 365698.772200003266335, 255195.147799998521805 ], [ 365706.183499999344349, 255203.872800000011921 ], [ 365734.351400002837181, 255235.186299998313189 ], [ 365736.802699998021126, 255231.406700000166893 ], [ 365739.225199997425079, 255231.004299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83625059000001, "LATITUDE": 18.32446296, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.70549504100001, "SHAPE_Area": 3330.3234746399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368833.716600000858307, 255049.588100001215935 ], [ 368828.837200000882149, 255051.112900000065565 ], [ 368816.489100001752377, 255058.300900001078844 ], [ 368807.26070000231266, 255064.864000000059605 ], [ 368792.678700000047684, 255072.766199998557568 ], [ 368818.628899998962879, 255150.238800000399351 ], [ 368821.91889999806881, 255142.666400000452995 ], [ 368834.952899999916553, 255127.152100000530481 ], [ 368845.503300003707409, 255119.216899998486042 ], [ 368855.245600000023842, 255111.486200001090765 ], [ 368833.716600000858307, 255049.588100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802020200", "MAP": "D9-3342-T86", "PARCEL_NAM": "6L-23", "ACRE": null, "LONGITUDE": -64.84178319, "LATITUDE": 18.32436552, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.873699144, "SHAPE_Area": 1185.9151560099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368219.60809999704361, 255042.533599998801947 ], [ 368208.211900003254414, 255055.105900000780821 ], [ 368212.221900001168251, 255057.671799998730421 ], [ 368221.825699999928474, 255066.194200001657009 ], [ 368227.424900002777576, 255071.517299998551607 ], [ 368234.602600000798702, 255080.864199999719858 ], [ 368240.164099998772144, 255090.620000001043081 ], [ 368240.943400003015995, 255093.79280000180006 ], [ 368244.118299998342991, 255099.729400001466274 ], [ 368247.251900002360344, 255110.520799998193979 ], [ 368247.214100003242493, 255114.953499998897314 ], [ 368267.431199997663498, 255108.152899999171495 ], [ 368243.574500001966953, 255068.905299998819828 ], [ 368219.60809999704361, 255042.533599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86733161, "LATITUDE": 18.32415665, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.263684473, "SHAPE_Area": 884.31214679300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365560.358999997377396, 255024.357500001788139 ], [ 365520.086599998176098, 255018.961599998176098 ], [ 365519.089699998497963, 255041.3293999992311 ], [ 365555.325199998915195, 255047.325500000268221 ], [ 365560.358999997377396, 255024.357500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107702014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84942279000001, "LATITUDE": 18.32320579, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 374.89849733300002, "SHAPE_Area": 5993.8515629800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367441.830600000917912, 254904.656500000506639 ], [ 367392.069399997591972, 254877.229299999773502 ], [ 367399.760300002992153, 254920.988600000739098 ], [ 367395.218000002205372, 254980.901999998837709 ], [ 367406.524400003254414, 254978.883600000292063 ], [ 367421.847900003194809, 254978.586800001561642 ], [ 367434.736299999058247, 254980.170000001788139 ], [ 367446.805799998342991, 254983.22410000115633 ], [ 367471.004199996590614, 254982.366599999368191 ], [ 367483.750500001013279, 255000.625 ], [ 367493.496399998664856, 254992.472100000828505 ], [ 367491.903599999845028, 254990.137099999934435 ], [ 367468.097199998795986, 254944.979299999773502 ], [ 367452.150799997150898, 254923.739399999380112 ], [ 367441.830600000917912, 254904.656500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86657858, "LATITUDE": 18.32305885, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.62837613600001, "SHAPE_Area": 1149.2379830699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365643.669200003147125, 254899.860800001770258 ], [ 365604.194099999964237, 254895.526999998837709 ], [ 365595.906199999153614, 254921.845800001174212 ], [ 365597.898400001227856, 254922.338300000876188 ], [ 365632.116499997675419, 254930.796999998390675 ], [ 365643.669200003147125, 254899.860800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86652539000001, "LATITUDE": 18.3225756, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.78951574600001, "SHAPE_Area": 2675.96942111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365636.487199999392033, 254796.366200000047684 ], [ 365629.22860000282526, 254796.517900001257658 ], [ 365626.795299999415874, 254798.186700001358986 ], [ 365625.155699998140335, 254801.339699998497963 ], [ 365621.727300003170967, 254825.165199998766184 ], [ 365614.845200002193451, 254848.890299998223782 ], [ 365611.796599999070168, 254854.22520000115037 ], [ 365608.094800002872944, 254856.2939000017941 ], [ 365603.086499996483326, 254858.689100001007318 ], [ 365603.375399999320507, 254862.733399998396635 ], [ 365603.868900001049042, 254882.503100000321865 ], [ 365604.194099999964237, 254895.526999998837709 ], [ 365643.669200003147125, 254899.860800001770258 ], [ 365636.487199999392033, 254796.366200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704063100", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".57", "LONGITUDE": -64.84939905, "LATITUDE": 18.32258693, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.597897128, "SHAPE_Area": 2447.8335426399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367476.796899996697903, 254870.323399998247623 ], [ 367434.263700000941753, 254846.332800000905991 ], [ 367421.249499998986721, 254859.525199998170137 ], [ 367396.138700000941753, 254872.829599998891354 ], [ 367392.069399997591972, 254877.229299999773502 ], [ 367441.830600000917912, 254904.656500000506639 ], [ 367476.796899996697903, 254870.323399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603050200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87712312, "LATITUDE": 18.32264253, "OBJECTID_1": 38737, "PARCEL_NO_": "107603050200", "Tax_Legal_": "4H NADIR ESTATE RED HOOK QTR", "Name": "LANG, MARVA ELENORA", "Address": "6314 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 76300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.70479537400001, "SHAPE_Area": 1380.8920704499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364536.738899998366833, 254874.758000001311302 ], [ 364507.248800002038479, 254834.197799999266863 ], [ 364487.908100001513958, 254832.772900000214577 ], [ 364486.072499997913837, 254858.933499999344349 ], [ 364486.02929999679327, 254863.999400001019239 ], [ 364485.961000002920628, 254872.020399998873472 ], [ 364536.738899998366833, 254874.758000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603054900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87692089, "LATITUDE": 18.32256962, "OBJECTID_1": 38779, "PARCEL_NO_": "107603054900", "Tax_Legal_": "4HB EST NADIR RED HOOK QTR", "Name": "REGISTE, THOMAS", "Address": "PO BOX 502964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 15300, "Improved_V": 99100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.46736733199999, "SHAPE_Area": 552.32234026200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364523.364200003445148, 254835.596200000494719 ], [ 364507.248800002038479, 254834.197799999266863 ], [ 364536.738899998366833, 254874.758000001311302 ], [ 364536.258000001311302, 254836.546100001782179 ], [ 364523.364200003445148, 254835.596200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86414845, "LATITUDE": 18.32265616, "OBJECTID_1": 39600, "PARCEL_NO_": "107703010600", "Tax_Legal_": "FRYDENHOJ ESTATE 17AE RED HOOK", "Name": "SAMUEL O. & EDNA L. HODGE JOINT LIVING TRUST", "Address": "6153 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41600, "Improved_V": 144300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.88242076200001, "SHAPE_Area": 1540.96610799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365907.050200000405312, 254881.276099998503923 ], [ 365905.703699998557568, 254854.706599999219179 ], [ 365881.916199997067451, 254856.636700000613928 ], [ 365840.763700000941753, 254859.8885000012815 ], [ 365848.699199996888638, 254874.941100001335144 ], [ 365851.845299996435642, 254884.254999998956919 ], [ 365907.050200000405312, 254881.276099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602031300", "MAP": null, "PARCEL_NAM": "20D", "ACRE": "0.16", "LONGITUDE": -64.8720679, "LATITUDE": 18.32271422, "OBJECTID_1": 38475, "PARCEL_NO_": "107602031300", "Tax_Legal_": "NADIR 20D RED HOOK QTR", "Name": "MARIO ADAMS & DOREEN ADAMS REVOCABLE LIVING TRUST", "Address": "PO Box 8960", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011960, "Country": "United States", "Land_Value": 17500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.288395187600003, "SHAPE_Area": 431.306225821 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365058.557899996638298, 254863.196800000965595 ], [ 365032.782899998128414, 254859.819499999284744 ], [ 365019.748800002038479, 254875.333700001239777 ], [ 365048.76349999755621, 254877.048900000751019 ], [ 365058.557899996638298, 254863.196800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603050600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87578126, "LATITUDE": 18.32265456, "OBJECTID_1": 38741, "PARCEL_NO_": "107603050600", "Tax_Legal_": "4E EST NADIR RED HOOK QTR", "Name": "SCATLIFFE, IRIS", "Address": "PO Box 8102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.28372433200001, "SHAPE_Area": 964.73477569199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364628.917400002479553, 254845.114999998360872 ], [ 364628.698100000619888, 254870.866599999368191 ], [ 364645.623400002717972, 254871.849500000476837 ], [ 364668.191200003027916, 254873.089699998497963 ], [ 364665.835199996829033, 254865.682100001722574 ], [ 364663.563699997961521, 254848.353900000452995 ], [ 364661.164599999785423, 254846.012200001627207 ], [ 364659.557300001382828, 254845.365800000727177 ], [ 364628.917400002479553, 254845.114999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030700", "MAP": null, "PARCEL_NAM": "20-1", "ACRE": "0.23", "LONGITUDE": -64.8727794, "LATITUDE": 18.32261967, "OBJECTID_1": 38469, "PARCEL_NO_": "107602030700", "Tax_Legal_": "NADIR 20-1 RED HOOK QTR", "Name": "STEVENS, MICHELLE P. DONAVAN", "Address": "#68 ANNA'S FANCY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27500, "Improved_V": 213100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.442535857, "SHAPE_Area": 840.82345210400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364978.108300000429153, 254841.217999998480082 ], [ 364957.943300001323223, 254841.897300001233816 ], [ 364951.462200000882149, 254845.432799998670816 ], [ 364949.826200000941753, 254848.163699999451637 ], [ 364949.788500003516674, 254852.5962999984622 ], [ 364951.311200000345707, 254863.163499999791384 ], [ 364954.439300000667572, 254874.588100001215935 ], [ 364977.01969999819994, 254874.350699998438358 ], [ 364977.183300003409386, 254855.142599999904633 ], [ 364978.108300000429153, 254841.217999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014900", "MAP": "F9-450-T59", "PARCEL_NAM": "93", "ACRE": ".30", "LONGITUDE": -64.86468541000001, "LATITUDE": 18.32268609, "OBJECTID_1": 39167, "PARCEL_NO_": "107701014900", "Tax_Legal_": "ESTATE FRYDENHOJ 93 RED HOOK QUARTER", "Name": "DURANT, FILIMON", "Address": "PO Box 10008", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41100, "Improved_V": 104100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.11249915900001, "SHAPE_Area": 1167.1943843399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365838.215300001204014, 254875.066399998962879 ], [ 365824.725599996745586, 254849.413699999451637 ], [ 365799.640000000596046, 254859.763000000268221 ], [ 365797.400499999523163, 254860.811799999326468 ], [ 365803.553000003099442, 254873.238800000399351 ], [ 365807.421099998056889, 254881.051600001752377 ], [ 365814.239900000393391, 254894.824400000274181 ], [ 365842.161200001835823, 254885.166200000792742 ], [ 365842.178599998354912, 254883.120400000363588 ], [ 365838.215300001204014, 254875.066399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86258088, "LATITUDE": 18.3226006, "OBJECTID_1": 39652, "PARCEL_NO_": "107703016300", "Tax_Legal_": "FRYDENHOJ ESTATE 4-F RED HOOK QRE.", "Name": "PHILLIPS, J. & YOUNG, J", "Address": "PO Box 502441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 96100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.513684764, "SHAPE_Area": 2273.64316267 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366080.70160000026226, 254878.215999998152256 ], [ 366080.891699999570847, 254875.650199998170137 ], [ 366079.939699999988079, 254863.274300001561642 ], [ 366077.800700001418591, 254848.158900000154972 ], [ 366004.533299997448921, 254850.885299999266863 ], [ 366007.490599997341633, 254882.362500000745058 ], [ 366029.273599997162819, 254881.063099998980761 ], [ 366080.70160000026226, 254878.215999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603050500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87608162, "LATITUDE": 18.32264707, "OBJECTID_1": 38740, "PARCEL_NO_": "107603050500", "Tax_Legal_": "4D NADIR RED HOOK QTR", "Name": "POWELL, OSBORNE L", "Address": "PO Box 307462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27200, "Improved_V": 222500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.063777665, "SHAPE_Area": 666.61825277699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364628.917400002479553, 254845.114999998360872 ], [ 364607.137999996542931, 254845.992199998348951 ], [ 364602.289399996399879, 254847.219099998474121 ], [ 364600.662299998104572, 254848.894499998539686 ], [ 364602.100500002503395, 254869.382399998605251 ], [ 364628.698100000619888, 254870.866599999368191 ], [ 364628.917400002479553, 254845.114999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014200", "MAP": null, "PARCEL_NAM": "3", "ACRE": "0.18", "LONGITUDE": -64.86541643, "LATITUDE": 18.32255427, "OBJECTID_1": 39160, "PARCEL_NO_": "107701014200", "Tax_Legal_": "3 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.52031255999998, "SHAPE_Area": 3719.8082715400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365756.370600000023842, 254827.5337999984622 ], [ 365751.303999997675419, 254816.825399998575449 ], [ 365707.89919999986887, 254827.125300001353025 ], [ 365710.498700000345707, 254833.796599999070168 ], [ 365717.568499997258186, 254852.247000001370907 ], [ 365699.803700000047684, 254857.815999999642372 ], [ 365703.672600001096725, 254860.877399999648333 ], [ 365712.480899997055531, 254868.1266999989748 ], [ 365726.902800001204014, 254879.010499998927116 ], [ 365744.524800002574921, 254892.875799998641014 ], [ 365746.17119999974966, 254894.681600000709295 ], [ 365769.029500000178814, 254890.339600000530481 ], [ 365775.135899998247623, 254889.17960000038147 ], [ 365784.5625, 254887.388999998569489 ], [ 365783.675599999725819, 254885.633400000631809 ], [ 365776.16160000115633, 254870.758799999952316 ], [ 365772.99210000038147, 254864.188999999314547 ], [ 365759.534800000488758, 254834.736800000071526 ], [ 365756.370600000023842, 254827.5337999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704030100", "MAP": null, "PARCEL_NAM": "9A-1", "ACRE": "0.40", "LONGITUDE": -64.85336879, "LATITUDE": 18.32237677, "OBJECTID_1": 39970, "PARCEL_NO_": "107704030100", "Tax_Legal_": "9A 1 NAZARETH RED HOOK QTR", "Name": "ELIZEE, NESLEY & ST. TILLIA", "Address": "9A1 EST. NAZARETH", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86600, "Improved_V": 477200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.528444686, "SHAPE_Area": 1885.21753728 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367038.446999996900558, 254833.38289999961853 ], [ 367026.456600002944469, 254821.041299998760223 ], [ 367016.84740000218153, 254813.152199998497963 ], [ 366989.90820000320673, 254851.772999998182058 ], [ 366996.310199998319149, 254857.524900000542402 ], [ 367022.650600001215935, 254889.193399999290705 ], [ 367038.446999996900558, 254833.38289999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86610781, "LATITUDE": 18.32264717, "OBJECTID_1": 39053, "PARCEL_NO_": "107604050200", "Tax_Legal_": "FRYDENHOJ 125 RED HOOK QTR", "Name": "DAVIS, MERRILL & LORAINE", "Address": "PO Box 304073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.973823284999995, "SHAPE_Area": 354.88290458400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365684.283399999141693, 254865.151700001209974 ], [ 365656.146899998188019, 254855.0 ], [ 365660.02929999679327, 254872.552600000053644 ], [ 365680.151100002229214, 254876.939100001007318 ], [ 365684.283399999141693, 254865.151700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87433579, "LATITUDE": 18.32255493, "OBJECTID_1": 38746, "PARCEL_NO_": "107603051100", "Tax_Legal_": "NADIR 18B RED HOOK QTR", "Name": "CALLWOOD, E & BLYDEN, I", "Address": "PO Box 7512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32300, "Improved_V": 191200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.38839665899999, "SHAPE_Area": 595.32392113100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364810.236800000071526, 254833.097300000488758 ], [ 364791.091499999165535, 254834.087699998170137 ], [ 364790.811800003051758, 254866.91609999909997 ], [ 364803.757299996912479, 254867.338500000536442 ], [ 364808.761799998581409, 254853.341499999165535 ], [ 364810.769100002944469, 254844.594200000166893 ], [ 364811.147699996829033, 254837.726399999111891 ], [ 364810.236800000071526, 254833.097300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87453959, "LATITUDE": 18.32256869, "OBJECTID_1": 38745, "PARCEL_NO_": "107603051000", "Tax_Legal_": "18A NADIR RED HOOK QTR", "Name": "FAHIE, J. , ROMNEY, B. , DAWSON, J. , P", "Address": "PO Box 468", "City": "East End Tortola", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 26400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.00992668000001, "SHAPE_Area": 801.03783550799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364791.091499999165535, 254834.087699998170137 ], [ 364765.6233000010252, 254835.405200000852346 ], [ 364765.82150000333786, 254866.078299999237061 ], [ 364790.811800003051758, 254866.91609999909997 ], [ 364791.091499999165535, 254834.087699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85238181, "LATITUDE": 18.32246077, "OBJECTID_1": 39977, "PARCEL_NO_": "107704030800", "Tax_Legal_": "9A-17 NAZARETH 1 RED HOOK QTR", "Name": "VIRGIN ISLANDS MONTESSORI SCHOOL INC", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79700, "Improved_V": 78700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.21619584499999, "SHAPE_Area": 1577.3941259799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367140.866700001060963, 254832.110199999064207 ], [ 367125.541400000452995, 254832.618099998682737 ], [ 367123.131399996578693, 254831.542899999767542 ], [ 367119.92059999704361, 254829.827899999916553 ], [ 367093.739100001752377, 254874.15430000051856 ], [ 367111.420500002801418, 254881.054000001400709 ], [ 367133.169299997389317, 254883.765099998563528 ], [ 367140.866700001060963, 254832.110199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85204689, "LATITUDE": 18.32245681, "OBJECTID_1": 39978, "PARCEL_NO_": "107704030900", "Tax_Legal_": "EST NAZARETH 9A-16 RED HOOK QTR", "Name": "MILLER, KEITH", "Address": "75 Hunnewell Ave", "City": "Newton", "State": "Massachusetts", "Zip": 2458, "Country": "United States", "Land_Value": 105600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.70238559399999, "SHAPE_Area": 1988.4481074099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367178.346199996769428, 254881.390700001269579 ], [ 367173.061700001358986, 254839.128699999302626 ], [ 367175.561499997973442, 254829.649999998509884 ], [ 367160.225400000810623, 254831.424300000071526 ], [ 367140.866700001060963, 254832.110199999064207 ], [ 367133.169299997389317, 254883.765099998563528 ], [ 367150.909999996423721, 254883.699200000613928 ], [ 367178.346199996769428, 254881.390700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020400", "MAP": "D9-3828-T86", "PARCEL_NAM": "5-34", "ACRE": null, "LONGITUDE": -64.84523905, "LATITUDE": 18.32111723, "OBJECTID_1": 40198, "PARCEL_NO_": "107803020400", "Tax_Legal_": "5 REMAINDER ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "FOSTER, JOHN F. TRUSTEE", "Address": "6900 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 369800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 837.07099983800003, "SHAPE_Area": 35996.749488699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367883.045299999415874, 254889.269200000911951 ], [ 367975.659400001168251, 254619.194200001657009 ], [ 367938.975400000810623, 254571.186799999326468 ], [ 367855.935999996960163, 254569.240600001066923 ], [ 367852.659500002861023, 254568.937699999660254 ], [ 367853.658900000154972, 254598.841899998486042 ], [ 367845.83049999922514, 254619.609299998730421 ], [ 367830.158100001513958, 254660.85530000180006 ], [ 367803.769900001585484, 254729.455899998545647 ], [ 367798.098700001835823, 254732.575899999588728 ], [ 367779.67119999974966, 254813.273899998515844 ], [ 367777.275600001215935, 254810.510000001639128 ], [ 367771.586499996483326, 254815.740800000727177 ], [ 367784.462300002574921, 254818.801500000059605 ], [ 367883.045299999415874, 254889.269200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "107701038200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86175884, "LATITUDE": 18.32226027, "OBJECTID_1": 39321, "PARCEL_NO_": "107701038200", "Tax_Legal_": "NAZARETH PARCEL \"N\" OF TRACT 1 NO.1 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2417600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.46384543200003, "SHAPE_Area": 4073.9958314400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366149.40990000218153, 254787.898600000888109 ], [ 366126.84570000320673, 254786.236299999058247 ], [ 366098.6283999979496, 254785.583200000226498 ], [ 366114.002999998629093, 254873.946100000292063 ], [ 366159.214000001549721, 254867.561099998652935 ], [ 366149.40990000218153, 254787.898600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85170546000001, "LATITUDE": 18.32241393, "OBJECTID_1": 39979, "PARCEL_NO_": "107704031000", "Tax_Legal_": "NAZARETH 9A-15 RED HOOK", "Name": "DEWINDT, ANNA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79700, "Improved_V": 93800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.73941443000001, "SHAPE_Area": 1714.6664469299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367216.314800001680851, 254873.257699999958277 ], [ 367202.196800000965595, 254826.70160000026226 ], [ 367175.561499997973442, 254829.649999998509884 ], [ 367173.061700001358986, 254839.128699999302626 ], [ 367178.346199996769428, 254881.390700001269579 ], [ 367188.842699997127056, 254879.787799999117851 ], [ 367208.240900002419949, 254874.458200000226498 ], [ 367216.314800001680851, 254873.257699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704031300", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".61", "LONGITUDE": -64.85050108, "LATITUDE": 18.32239404, "OBJECTID_1": 39982, "PARCEL_NO_": "107704031300", "Tax_Legal_": "9-30 NAZARETH 1 RED HOOK QTR", "Name": "SHIRLEY SUE BEER (LIFE ESTATE)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 151200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.37497400399999, "SHAPE_Area": 2097.2946597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367340.456399999558926, 254877.862300001084805 ], [ 367339.278899997472763, 254826.76799999922514 ], [ 367328.791500002145767, 254827.315499998629093 ], [ 367294.098399996757507, 254829.564699999988079 ], [ 367305.754399999976158, 254881.166900001466274 ], [ 367317.037299998104572, 254881.892499998211861 ], [ 367326.732900001108646, 254879.64979999884963 ], [ 367340.456399999558926, 254877.862300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604014800", "MAP": null, "PARCEL_NAM": "20C", "ACRE": "0.28", "LONGITUDE": -64.87202465, "LATITUDE": 18.32253331, "OBJECTID_1": 38902, "PARCEL_NO_": "107604014800", "Tax_Legal_": "NADIR 20C RED HOOK QTR", "Name": "DOWE, HENRY ALFRED", "Address": "PO Box 303251", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36300, "Improved_V": 89000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.072779776, "SHAPE_Area": 1087.11484346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365026.505000002682209, 254839.503100000321865 ], [ 365015.063799999654293, 254857.352400001138449 ], [ 365032.782899998128414, 254859.819499999284744 ], [ 365058.557899996638298, 254863.196800000965595 ], [ 365074.07209999859333, 254840.525699999183416 ], [ 365029.771600000560284, 254834.674699999392033 ], [ 365026.505000002682209, 254839.503100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84646145000001, "LATITUDE": 18.3223973, "OBJECTID_1": 40196, "PARCEL_NO_": "107803020100", "Tax_Legal_": "9G NAZARETH RED HOOK QTR", "Name": "LORSH, JAY & PATRICIA", "Address": "108 Washington Ave", "City": "Cambridge", "State": "Massachusetts", "Zip": 2140, "Country": "United States", "Land_Value": 231500, "Improved_V": 615900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.90167441400001, "SHAPE_Area": 3664.5666797899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367703.35809999704361, 254873.655299998819828 ], [ 367725.096199996769428, 254877.63289999961853 ], [ 367743.580200001597404, 254884.961399998515844 ], [ 367749.229800000786781, 254884.374299999326468 ], [ 367750.846000000834465, 254883.965399999171495 ], [ 367765.395599998533726, 254879.86259999871254 ], [ 367779.932599999010563, 254877.237399999052286 ], [ 367798.486800000071526, 254876.333700001239777 ], [ 367784.115199998021126, 254859.539700001478195 ], [ 367778.541199997067451, 254851.261500000953674 ], [ 367768.222800001502037, 254831.967500001192093 ], [ 367761.899899996817112, 254816.928100001066923 ], [ 367698.674900002777576, 254855.462900001555681 ], [ 367703.35809999704361, 254873.655299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85091165, "LATITUDE": 18.32238384, "OBJECTID_1": 39981, "PARCEL_NO_": "107704031200", "Tax_Legal_": "9A-13 NAZARETH NO 1 RED HOOK QTR", "Name": "SHIRLEY SUE BEER (LIFE ESTATE)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86600, "Improved_V": 334200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.60440308599999, "SHAPE_Area": 2237.3725496900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367294.098399996757507, 254829.564699999988079 ], [ 367245.750299997627735, 254825.580400001257658 ], [ 367257.460100002586842, 254870.85020000115037 ], [ 367265.516099996864796, 254871.760499998927116 ], [ 367305.754399999976158, 254881.166900001466274 ], [ 367294.098399996757507, 254829.564699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604030500", "MAP": null, "PARCEL_NAM": "52L REM", "ACRE": null, "LONGITUDE": -64.86951633, "LATITUDE": 18.32249521, "OBJECTID_1": 38947, "PARCEL_NO_": "107604030500", "Tax_Legal_": "52L ESTATE FRYDENHOJ RED HOOK QTR", "Name": "CROPPER, E. & NISBETT, HENREITA", "Address": "23458 Yee St", "City": "Moreno Valley", "State": "California", "Zip": 92553, "Country": "United States", "Land_Value": 60300, "Improved_V": 92300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.79243315100001, "SHAPE_Area": 1115.6998870499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365322.797899998724461, 254829.622499998658895 ], [ 365284.41330000013113, 254838.187899999320507 ], [ 365292.028599999845028, 254861.671700000762939 ], [ 365338.420299999415874, 254857.043600000441074 ], [ 365336.827399998903275, 254854.708599999547005 ], [ 365332.833599999547005, 254850.242899999022484 ], [ 365329.653300002217293, 254844.939599998295307 ], [ 365324.873000003397465, 254838.145399998873472 ], [ 365324.889200001955032, 254836.245700001716614 ], [ 365322.797899998724461, 254829.622499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8661007, "LATITUDE": 18.32252859, "OBJECTID_1": 39054, "PARCEL_NO_": "107604050300", "Tax_Legal_": "FRYDENHOJ 123 RED HOOK QTR", "Name": "DAVIS, LORRAINE & MERRIL & L", "Address": "PO Box 304073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7400, "Improved_V": 34600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.594647828299998, "SHAPE_Area": 330.79821907299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365685.951700001955032, 254858.621500000357628 ], [ 365669.931599996984005, 254846.035799998790026 ], [ 365664.344899997115135, 254839.235100001096725 ], [ 365656.146899998188019, 254855.0 ], [ 365684.283399999141693, 254865.151700001209974 ], [ 365685.951700001955032, 254858.621500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704031400", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".55", "LONGITUDE": -64.85011538000001, "LATITUDE": 18.32238193, "OBJECTID_1": 39983, "PARCEL_NO_": "107704031400", "Tax_Legal_": "NAZARETH ESTATE 9-31 RED HOOK QTR", "Name": "COWAN, PERRY D", "Address": "6933 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 108300, "Improved_V": 314300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.62452363400001, "SHAPE_Area": 2058.9985975300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367388.127700001001358, 254866.642299998551607 ], [ 367374.71169999986887, 254832.335400000214577 ], [ 367373.163800001144409, 254824.723299998790026 ], [ 367339.278899997472763, 254826.76799999922514 ], [ 367340.456399999558926, 254877.862300001084805 ], [ 367379.195299997925758, 254873.957499999552965 ], [ 367383.237700000405312, 254872.723999999463558 ], [ 367388.127700001001358, 254866.642299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036200", "MAP": "A9-78-T67", "PARCEL_NAM": "33-63", "ACRE": "0.94", "LONGITUDE": -64.87895275, "LATITUDE": 18.32250548, "OBJECTID_1": 38684, "PARCEL_NO_": "107603036200", "Tax_Legal_": "33-63 NADIR RED HOOK QTR", "Name": "MILLARD, ALPHA & BELINDA", "Address": "P.O. BOX 4344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10800, "Improved_V": 93700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.347888914500004, "SHAPE_Area": 386.45483142099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364321.836499996483326, 254828.036200001835823 ], [ 364297.573399998247623, 254836.492499999701977 ], [ 364299.149999998509884, 254840.727200001478195 ], [ 364307.907999999821186, 254853.886700000613928 ], [ 364326.598800003528595, 254836.941100001335144 ], [ 364321.836499996483326, 254828.036200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8651115, "LATITUDE": 18.32244232, "OBJECTID_1": 39597, "PARCEL_NO_": "107703010200", "Tax_Legal_": "FRYDENHOJ ESTATE 92 RED HOOK QUARTER", "Name": "HAYNES, EARL V", "Address": "4408 Grove Landing Dr", "City": "Grovetown", "State": "Georgia", "Zip": 30813, "Country": "United States", "Land_Value": 40100, "Improved_V": 2900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.324256848, "SHAPE_Area": 658.27657906699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365790.79389999806881, 254856.946400001645088 ], [ 365777.35639999806881, 254825.172400001436472 ], [ 365759.534800000488758, 254834.736800000071526 ], [ 365772.99210000038147, 254864.188999999314547 ], [ 365790.79389999806881, 254856.946400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604013100", "MAP": null, "PARCEL_NAM": "20-2", "ACRE": "0.14", "LONGITUDE": -64.8724697, "LATITUDE": 18.32253226, "OBJECTID_1": 38889, "PARCEL_NO_": "107604013100", "Tax_Legal_": "NADIR 20-2 RED HOOK QTR", "Name": "THOMAS LIFE ESTATE, IRIS", "Address": "6407 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16200, "Improved_V": 115700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.37529629700001, "SHAPE_Area": 596.06544198799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365015.063799999654293, 254857.352400001138449 ], [ 365016.019400000572205, 254839.839499998837709 ], [ 364978.108300000429153, 254841.217999998480082 ], [ 364977.183300003409386, 254855.142599999904633 ], [ 365015.063799999654293, 254857.352400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85261039, "LATITUDE": 18.32230875, "OBJECTID_1": 39976, "PARCEL_NO_": "107704030700", "Tax_Legal_": "9A-18 NAZARETH 1 RED HOOK", "Name": "LEOPOLD DYER TRUST", "Address": "PO Box 307016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79700, "Improved_V": 332600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.10303686899999, "SHAPE_Area": 1333.6623785500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367103.070699997246265, 254819.979600001126528 ], [ 367093.443499997258186, 254814.201299998909235 ], [ 367088.632600001990795, 254810.99549999833107 ], [ 367080.130699999630451, 254862.432799998670816 ], [ 367093.739100001752377, 254874.15430000051856 ], [ 367119.92059999704361, 254829.827899999916553 ], [ 367103.070699997246265, 254819.979600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701016200", "MAP": "D3-289-T68", "PARCEL_NAM": "3A", "ACRE": "0.50", "LONGITUDE": -64.86584032, "LATITUDE": 18.32242043, "OBJECTID_1": 39180, "PARCEL_NO_": "107701016200", "Tax_Legal_": "3A FRYDENHOJ RED HOOK QTR", "Name": "GIMINEZ, JOHN & NORMA", "Address": "PO Box 323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 51000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.151434115, "SHAPE_Area": 767.902516719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365710.498700000345707, 254833.796599999070168 ], [ 365707.89919999986887, 254827.125300001353025 ], [ 365672.526900000870228, 254835.519000001251698 ], [ 365675.638700000941753, 254838.694299999624491 ], [ 365699.803700000047684, 254857.815999999642372 ], [ 365717.568499997258186, 254852.247000001370907 ], [ 365710.498700000345707, 254833.796599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85134809, "LATITUDE": 18.32235846, "OBJECTID_1": 39980, "PARCEL_NO_": "107704031100", "Tax_Legal_": "EST NAZARETH 9A-14 RED HOOK ATR", "Name": "HODGE, DAWN JONELLE", "Address": "BOX 5048", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.36066509700001, "SHAPE_Area": 1966.7448088900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367245.750299997627735, 254825.580400001257658 ], [ 367241.722300000488758, 254825.125199999660254 ], [ 367236.887999996542931, 254824.663499999791384 ], [ 367202.196800000965595, 254826.70160000026226 ], [ 367216.314800001680851, 254873.257699999958277 ], [ 367235.687899999320507, 254870.883099999278784 ], [ 367257.460100002586842, 254870.85020000115037 ], [ 367245.750299997627735, 254825.580400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050600", "MAP": "D9-1182-T73", "PARCEL_NAM": "46-1-A", "ACRE": ".27", "LONGITUDE": -64.86721408, "LATITUDE": 18.3223764, "OBJECTID_1": 39055, "PARCEL_NO_": "107604050600", "Tax_Legal_": "46-1A&B&48-1A&B FRYDNHOJ RED HOOK QTR", "Name": "POLICEMANS BENEV. ASSOC", "Address": "PO Box 302959", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 136800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.695529037, "SHAPE_Area": 958.40701145900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365554.605499997735023, 254847.836100000888109 ], [ 365566.707400001585484, 254847.090799998492002 ], [ 365568.417000003159046, 254847.269799999892712 ], [ 365574.624399997293949, 254823.008799999952316 ], [ 365570.947599999606609, 254822.638700000941753 ], [ 365541.936499997973442, 254820.501400001347065 ], [ 365537.795199997723103, 254833.344200000166893 ], [ 365529.518100000917912, 254858.396600000560284 ], [ 365533.590999998152256, 254853.574799999594688 ], [ 365540.063100002706051, 254851.0945999994874 ], [ 365554.605499997735023, 254847.836100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603020300", "MAP": "F9-180-T57", "PARCEL_NAM": "3-88", "ACRE": "0.22", "LONGITUDE": -64.88139874, "LATITUDE": 18.32237272, "OBJECTID_1": 38581, "PARCEL_NO_": "107603020300", "Tax_Legal_": "3-88 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "MARK, CLAUDIA", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27700, "Improved_V": 233800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.82132720600001, "SHAPE_Area": 801.46051316900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364062.495200000703335, 254839.86769999936223 ], [ 364068.568000003695488, 254836.095800001174212 ], [ 364066.285800002515316, 254820.034000001847744 ], [ 364067.946900002658367, 254814.348099999129772 ], [ 364067.1621999964118, 254811.808600001037121 ], [ 364046.268200002610683, 254803.404899999499321 ], [ 364035.370099999010563, 254831.224800001829863 ], [ 364062.495200000703335, 254839.86769999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86909516, "LATITUDE": 18.32239875, "OBJECTID_1": 39000, "PARCEL_NO_": "107604040500", "Tax_Legal_": "12Y ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "ROUMOU, IRENE,SUSANNA,NATHALIE,WENDELL,SHERITA", "Address": "PO Box 1595", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.845655706, "SHAPE_Area": 608.23659372700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365346.031300000846386, 254815.520500000566244 ], [ 365343.517099998891354, 254826.687899999320507 ], [ 365343.369599997997284, 254843.996300000697374 ], [ 365356.972699999809265, 254856.351100001484156 ], [ 365370.046300001442432, 254836.19310000166297 ], [ 365346.031300000846386, 254815.520500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8701983, "LATITUDE": 18.32248547, "OBJECTID_1": 38946, "PARCEL_NO_": "107604030400", "Tax_Legal_": "52BA FRYDENHOJ RED HOOK QTR", "Name": "POTTER, MARGARETH", "Address": "52BA Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.75645318299999, "SHAPE_Area": 1376.83938242 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365196.476300001144409, 254835.278099998831749 ], [ 365199.506800003349781, 254852.676699999719858 ], [ 365273.119800001382828, 254855.242600001394749 ], [ 365279.29110000282526, 254855.289799999445677 ], [ 365275.996200002729893, 254845.291600000113249 ], [ 365273.837499998509884, 254837.224899999797344 ], [ 365266.015799999237061, 254837.241500001400709 ], [ 365231.3496999964118, 254836.324499998241663 ], [ 365196.476300001144409, 254835.278099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604044100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86947085, "LATITUDE": 18.32158636, "OBJECTID_1": 39035, "PARCEL_NO_": "107604044100", "Tax_Legal_": "74J FRYDENHOJ RED HOOK QTR", "Name": "SHARIFA L & SHAUSAME L MALONE & TIFFANY N MACTAVIOUS", "Address": "PO Box 307544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037544, "Country": "United States", "Land_Value": 37800, "Improved_V": 165200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 409.522921053, "SHAPE_Area": 1784.03214671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365317.276699997484684, 254688.629000000655651 ], [ 365317.10368729417678, 254684.288789256330347 ], [ 365316.359299067175016, 254680.009391066356329 ], [ 365315.05656168871792, 254675.865692474122625 ], [ 365313.218272324709687, 254671.930205856828252 ], [ 365310.876599997282028, 254668.271800000220537 ], [ 365307.839427571510896, 254665.209014998981729 ], [ 365304.54734142794041, 254662.422038656950463 ], [ 365301.0253000035882, 254659.932000000029802 ], [ 365298.158900000154972, 254661.0304000005126 ], [ 365300.511399999260902, 254668.860100001096725 ], [ 365311.136200003325939, 254746.840599998831749 ], [ 365311.116400003433228, 254749.162500001490116 ], [ 365310.26690000295639, 254754.221799999475479 ], [ 365310.873700000345707, 254777.658100001513958 ], [ 365313.145099997520447, 254794.986400000751019 ], [ 365317.03999999910593, 254811.0614 ], [ 365317.01129999756813, 254814.4386 ], [ 365318.607699997723103, 254816.351500000804663 ], [ 365324.889200001955032, 254836.245700001716614 ], [ 365324.873000003397465, 254838.145399998873472 ], [ 365329.653300002217293, 254844.939599998295307 ], [ 365332.833599999547005, 254850.242899999022484 ], [ 365336.827399998903275, 254854.708599999547005 ], [ 365335.365900002419949, 254836.964800000190735 ], [ 365331.366700001060963, 254833.13230000063777 ], [ 365330.576499998569489, 254831.225999999791384 ], [ 365321.199299998581409, 254796.107799999415874 ], [ 365320.407300002872944, 254794.412500001490116 ], [ 365318.238399997353554, 254765.052799999713898 ], [ 365317.54169999808073, 254752.170400001108646 ], [ 365319.235299997031689, 254742.684999998658895 ], [ 365320.066799998283386, 254739.7364999987185 ], [ 365321.71000000089407, 254736.161400001496077 ], [ 365320.135099999606609, 254731.715500000864267 ], [ 365318.599799998104572, 254722.625900000333786 ], [ 365317.107699997723103, 254708.470400001853704 ], [ 365315.581299997866154, 254698.325500000268221 ], [ 365317.276699997484684, 254688.629000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604018500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87321562, "LATITUDE": 18.32242527, "OBJECTID_1": 38906, "PARCEL_NO_": "107604018500", "Tax_Legal_": "NADIR 20-5 RED HOOK QTR", "Name": "CHALWELL, CLAUDIUS & INA", "Address": "6418 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 133500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.05741024700001, "SHAPE_Area": 723.069086803 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364905.558100000023842, 254838.513199999928474 ], [ 364907.003692841622978, 254841.620900164125487 ], [ 364908.962152412103023, 254844.433723494003061 ], [ 364911.375131959212013, 254846.867869890469592 ], [ 364914.17074359615799, 254848.850820860505337 ], [ 364917.265699997544289, 254850.323499999940395 ], [ 364926.428800001740456, 254849.660900000482798 ], [ 364936.124300003051758, 254847.418200001120567 ], [ 364941.791900001466274, 254844.720400001853704 ], [ 364945.042300000786781, 254841.791700001806021 ], [ 364949.131399996578693, 254835.070199999958277 ], [ 364912.836499996483326, 254836.039700001478195 ], [ 364906.587399996817112, 254812.346099998801947 ], [ 364895.26129999756813, 254816.686299998313189 ], [ 364896.035199999809265, 254820.492300000041723 ], [ 364899.199400000274181, 254827.69539999961853 ], [ 364905.558100000023842, 254838.513199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86488724, "LATITUDE": 18.32234577, "OBJECTID_1": 39605, "PARCEL_NO_": "107703011000", "Tax_Legal_": "FRYDENHOJ ESTATE 91&90A RED HOOK QUARTER", "Name": "HAYNES, EARL V", "Address": "4408 Grove Landing Dr", "City": "Grovetown", "State": "Georgia", "Zip": 30813, "Country": "United States", "Land_Value": 43100, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.24857924299999, "SHAPE_Area": 1150.26032207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365801.657200001180172, 254812.283500000834465 ], [ 365777.35639999806881, 254825.172400001436472 ], [ 365790.79389999806881, 254856.946400001645088 ], [ 365822.355200000107288, 254843.694699998944998 ], [ 365808.858300000429153, 254818.886300001293421 ], [ 365801.657200001180172, 254812.283500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803010200", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".46", "LONGITUDE": -64.84907298, "LATITUDE": 18.32228846, "OBJECTID_1": 40160, "PARCEL_NO_": "107803010200", "Tax_Legal_": "9-48 NAZARETH RED HOOK QTR.", "Name": "WEISS, A. JEFFREY & ROST, ANN", "Address": "6934 Vessup Lane", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99600, "Improved_V": 970100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.842780516, "SHAPE_Area": 2065.80848608 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367506.88400000333786, 254840.805399999022484 ], [ 367463.575099997222424, 254813.219900000840425 ], [ 367456.224799998104572, 254824.136599998921156 ], [ 367454.603200003504753, 254825.178800001740456 ], [ 367451.33839999884367, 254829.796100001782179 ], [ 367434.263700000941753, 254846.332800000905991 ], [ 367476.796899996697903, 254870.323399998247623 ], [ 367506.88400000333786, 254840.805399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050600", "MAP": "D9-1182-T73", "PARCEL_NAM": "48-1-A", "ACRE": ".26", "LONGITUDE": -64.86685765, "LATITUDE": 18.32239135, "OBJECTID_1": 39055, "PARCEL_NO_": "107604050600", "Tax_Legal_": "46-1A&B&48-1A&B FRYDNHOJ RED HOOK QTR", "Name": "POLICEMANS BENEV. ASSOC", "Address": "PO Box 302959", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 136800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.32077965800001, "SHAPE_Area": 994.63520122900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365574.624399997293949, 254823.008799999952316 ], [ 365568.417000003159046, 254847.269799999892712 ], [ 365582.014700002968311, 254848.693799998611212 ], [ 365590.858999997377396, 254851.721500001847744 ], [ 365595.675300002098083, 254854.293999999761581 ], [ 365602.13120000064373, 254853.713599998503923 ], [ 365604.562700003385544, 254852.255800001323223 ], [ 365607.008599996566772, 254849.109400000423193 ], [ 365612.037100002169609, 254826.774700000882149 ], [ 365574.624399997293949, 254823.008799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704033400", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".56", "LONGITUDE": -64.84971821000001, "LATITUDE": 18.32220315, "OBJECTID_1": 39996, "PARCEL_NO_": "107704033400", "Tax_Legal_": "9-34 NAZARETH ESTATE RED HOOK QUARTER", "Name": "HILARY ACTIVILLE and CATHERINE MORVAN ACTIVILLE", "Address": "PO Box 502485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 118700, "Improved_V": 390200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.786980927, "SHAPE_Area": 2368.60498272 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367437.629199996590614, 254829.894999999552965 ], [ 367406.436599999666214, 254799.875500001013279 ], [ 367373.163800001144409, 254824.723299998790026 ], [ 367374.71169999986887, 254832.335400000214577 ], [ 367388.127700001001358, 254866.642299998551607 ], [ 367417.291599996387959, 254850.837900001555681 ], [ 367437.629199996590614, 254829.894999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603020200", "MAP": "F9-180-57", "PARCEL_NAM": "3-87", "ACRE": "0.22", "LONGITUDE": -64.88162433, "LATITUDE": 18.32229036, "OBJECTID_1": 38580, "PARCEL_NO_": "107603020200", "Tax_Legal_": "3-87 BOVONI NOS.1&2 FRENCHMAN'S BAY QTR", "Name": "TOUSSAINT, PHILLIP & T", "Address": "PO Box 11915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71900, "Improved_V": 151400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.462440579, "SHAPE_Area": 707.29645539099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364013.434299997985363, 254824.235300000756979 ], [ 364035.370099999010563, 254831.224800001829863 ], [ 364046.268200002610683, 254803.404899999499321 ], [ 364024.567900002002716, 254794.994600001722574 ], [ 364013.434299997985363, 254824.235300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85284607, "LATITUDE": 18.32216556, "OBJECTID_1": 39975, "PARCEL_NO_": "107704030600", "Tax_Legal_": "9A-19 NAZARETH RED HOOK QTR", "Name": "SANDERS, MATTHEW WILLIAM & MARK RICHARD", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79700, "Improved_V": 426800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.391137603, "SHAPE_Area": 1370.0003945399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367066.183499999344349, 254795.824200000613928 ], [ 367061.374399997293949, 254792.407299999147654 ], [ 367056.146300002932549, 254838.171799998730421 ], [ 367068.152900002896786, 254848.613699998706579 ], [ 367080.130699999630451, 254862.432799998670816 ], [ 367088.632600001990795, 254810.99549999833107 ], [ 367066.183499999344349, 254795.824200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019700", "MAP": null, "PARCEL_NAM": "3-69", "ACRE": null, "LONGITUDE": -64.88034523, "LATITUDE": 18.32231631, "OBJECTID_1": 38573, "PARCEL_NO_": "107603019700", "Tax_Legal_": "3-60,67,68,69,76,98,& 100&104 BOVONI (EASTERN) 1 & 2 FRENCHMANS BAY QUARTER", "Name": "LIMA, AGUSTIN J.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.714987773399997, "SHAPE_Area": 536.04544376399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364165.922499999403954, 254834.482299998402596 ], [ 364179.901900000870228, 254806.533500000834465 ], [ 364163.2212999984622, 254799.929099999368191 ], [ 364150.722800001502037, 254830.174699999392033 ], [ 364165.922499999403954, 254834.482299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052000", "MAP": "G9-1412-T69", "PARCEL_NAM": "5C", "ACRE": ".27", "LONGITUDE": -64.8761971, "LATITUDE": 18.3222512, "OBJECTID_1": 38748, "PARCEL_NO_": "107603052000", "Tax_Legal_": "EST NADIR 5 RED HOOK QTR", "Name": "BLYDEN, JOSEPH", "Address": "PO Box 11676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274200, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.92455307899999, "SHAPE_Area": 1030.69578843 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364615.39639999717474, 254823.137499999254942 ], [ 364609.044699996709824, 254787.29839999973774 ], [ 364601.173000000417233, 254788.948100000619888 ], [ 364588.228900000452995, 254793.908399999141693 ], [ 364586.895700000226498, 254794.719799999147654 ], [ 364588.185999996960163, 254798.942499998956919 ], [ 364601.024700000882149, 254840.959800001233816 ], [ 364615.258699998259544, 254839.303700000047684 ], [ 364618.255599997937679, 254839.270100001245737 ], [ 364615.39639999717474, 254823.137499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052000", "MAP": "G9-1413-T69", "PARCEL_NAM": "5D", "ACRE": ".27", "LONGITUDE": -64.87640259, "LATITUDE": 18.32231633, "OBJECTID_1": 38748, "PARCEL_NO_": "107603052000", "Tax_Legal_": "EST NADIR 5 RED HOOK QTR", "Name": "BLYDEN, JOSEPH", "Address": "PO Box 11676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274200, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.18495618599999, "SHAPE_Area": 1090.2882788 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364588.185999996960163, 254798.942499998956919 ], [ 364586.895700000226498, 254794.719799999147654 ], [ 364572.828000001609325, 254803.281599998474121 ], [ 364563.883199997246265, 254805.903499998152256 ], [ 364571.150200001895428, 254839.191300000995398 ], [ 364587.831500001251698, 254840.556800000369549 ], [ 364598.308100000023842, 254841.27589999884367 ], [ 364601.024700000882149, 254840.959800001233816 ], [ 364588.185999996960163, 254798.942499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032700", "MAP": "D9-6159-T96", "PARCEL_NAM": "52A-1", "ACRE": ".23", "LONGITUDE": -64.87083574, "LATITUDE": 18.32234717, "OBJECTID_1": 38971, "PARCEL_NO_": "107604032700", "Tax_Legal_": "52A-1 ESTATE FRYDENHOJ #3 REDHOOK QTR.", "Name": "FORBES, MARILYN A. PENN", "Address": "PO Box 9661", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 121200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.87965590100001, "SHAPE_Area": 1054.11701591 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365185.119499996304512, 254822.032400000840425 ], [ 365164.769199997186661, 254806.545099999755621 ], [ 365152.280900001525879, 254819.350900001823902 ], [ 365151.203026005066931, 254821.052030579739949 ], [ 365150.421467124484479, 254822.908054101018934 ], [ 365149.957767082378268, 254824.867809153627604 ], [ 365149.824707801220939, 254826.877274959028 ], [ 365150.025957069068681, 254828.881060458399588 ], [ 365150.555967436404899, 254830.823931171005825 ], [ 365151.400129132089205, 254832.652331736200722 ], [ 365152.535172782838345, 254834.315862170624314 ], [ 365153.929810834757518, 254835.768667147029191 ], [ 365155.54559999704361, 254836.97069999948144 ], [ 365173.214299999177456, 254845.347899999469519 ], [ 365184.452399998903275, 254851.350499998778105 ], [ 365186.057800002396107, 254852.208000000566244 ], [ 365189.256099998950958, 254855.400600001215935 ], [ 365185.119499996304512, 254822.032400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85561972000001, "LATITUDE": 18.32233531, "OBJECTID_1": 40024, "PARCEL_NO_": "107704040200", "Tax_Legal_": "9LB ROW NAZARETH RED HOOK QUARTER", "Name": "MULLER BAY HOLDING LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.664118325, "SHAPE_Area": 549.94038887500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366793.096100002527237, 254858.605900000780821 ], [ 366779.692699998617172, 254822.821400001645088 ], [ 366764.31700000166893, 254829.239399999380112 ], [ 366776.971600003540516, 254858.262800000607967 ], [ 366793.096100002527237, 254858.605900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704040800", "MAP": "D9-2684-T84", "PARCEL_NAM": "9L-5", "ACRE": ".63", "LONGITUDE": -64.85533515, "LATITUDE": 18.32228129, "OBJECTID_1": 40029, "PARCEL_NO_": "107704040800", "Tax_Legal_": "NAZARETH 9L-5 RED HOOK QTR.", "Name": "BAILEY, JOSEPH & CAESERENE", "Address": "PO Box 6226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.148759963, "SHAPE_Area": 1948.1932743299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366839.079300001263618, 254856.238000001758337 ], [ 366818.530500002205372, 254807.307199999690056 ], [ 366779.692699998617172, 254822.821400001645088 ], [ 366793.096100002527237, 254858.605900000780821 ], [ 366839.079300001263618, 254856.238000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85581575, "LATITUDE": 18.32232868, "OBJECTID_1": 40023, "PARCEL_NO_": "107704040100", "Tax_Legal_": "SCULPTURE PARCEL OF 9 NAZARETH RED HOOK QUARTER", "Name": "MULLER BAY HOLDING LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.52308646500001, "SHAPE_Area": 425.68977592599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366764.31700000166893, 254829.239399999380112 ], [ 366756.226899996399879, 254832.339600000530481 ], [ 366735.210600003600121, 254838.289299998432398 ], [ 366735.190800003707409, 254840.611200001090765 ], [ 366752.089199997484684, 254844.760299999266863 ], [ 366764.146200001239777, 254849.291900001466274 ], [ 366772.97240000218153, 254854.430399999022484 ], [ 366776.971600003540516, 254858.262800000607967 ], [ 366764.31700000166893, 254829.239399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603030200", "MAP": "D9-3681-T86", "PARCEL_NAM": "33-24", "ACRE": "0.13", "LONGITUDE": -64.87938866, "LATITUDE": 18.32237214, "OBJECTID_1": 38624, "PARCEL_NO_": "107603030200", "Tax_Legal_": "NADIR ESTATE 33-24 RED HOOK QTR", "Name": "RHYMER-BROWNE, LISA M", "Address": "6791 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13200, "Improved_V": 83800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.590665428899996, "SHAPE_Area": 453.383538886 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364247.655699998140335, 254827.429099999368191 ], [ 364257.160800002515316, 254835.716899998486042 ], [ 364283.146099999547005, 254826.241900000721216 ], [ 364279.217000000178814, 254814.177400000393391 ], [ 364259.840300001204014, 254816.97410000115633 ], [ 364247.655699998140335, 254827.429099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86260942, "LATITUDE": 18.32233759, "OBJECTID_1": 39651, "PARCEL_NO_": "107703016200", "Tax_Legal_": "FRYDENHOJ ESTATE 4G RED HOOK QTR.", "Name": "DONOVAN, NATALIE D.", "Address": "4427 Pen Lucy Rd", "City": "Baltimore", "State": "Maryland", "Zip": 21229, "Country": "United States", "Land_Value": 89100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.42923584900001, "SHAPE_Area": 2007.3573247899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366077.800700001418591, 254848.158900000154972 ], [ 366076.369699999690056, 254838.046599999070168 ], [ 366073.922899998724461, 254820.307300001382828 ], [ 366035.421300001442432, 254822.007199998944998 ], [ 366002.3462999984622, 254823.636300001293421 ], [ 366004.533299997448921, 254850.885299999266863 ], [ 366077.800700001418591, 254848.158900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052000", "MAP": "G9-1412-T69", "PARCEL_NAM": "5B", "ACRE": ".258", "LONGITUDE": -64.87599052, "LATITUDE": 18.32223803, "OBJECTID_1": 38748, "PARCEL_NO_": "107603052000", "Tax_Legal_": "EST NADIR 5 RED HOOK QTR", "Name": "BLYDEN, JOSEPH", "Address": "PO Box 11676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274200, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.492683575, "SHAPE_Area": 1254.4742618600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364618.255599997937679, 254839.270100001245737 ], [ 364637.032700002193451, 254839.05970000103116 ], [ 364641.42960000038147, 254839.09569999948144 ], [ 364636.770900003612041, 254807.824000000953674 ], [ 364634.219300001859665, 254790.696199998259544 ], [ 364630.212899997830391, 254787.708099998533726 ], [ 364623.778599999845028, 254785.75560000166297 ], [ 364615.713600002229214, 254785.900699999183416 ], [ 364609.044699996709824, 254787.29839999973774 ], [ 364615.39639999717474, 254823.137499999254942 ], [ 364618.255599997937679, 254839.270100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8790058, "LATITUDE": 18.32237951, "OBJECTID_1": 38683, "PARCEL_NO_": "107603036100", "Tax_Legal_": "33-62 NADIR NO.2 RED HOOK QTR", "Name": "TROTMAN (Life Estate), LYDIA", "Address": "PO Box 7685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12200, "Improved_V": 91900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.831575581099997, "SHAPE_Area": 391.22207749 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364318.717299997806549, 254815.556200001388788 ], [ 364291.246899999678135, 254821.875199999660254 ], [ 364294.389499999582767, 254831.611299999058247 ], [ 364297.573399998247623, 254836.492499999701977 ], [ 364321.836499996483326, 254828.036200001835823 ], [ 364321.046300001442432, 254826.129900000989437 ], [ 364318.717299997806549, 254815.556200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052000", "MAP": "G9-1412-T69", "PARCEL_NAM": "5A", "ACRE": ".332", "LONGITUDE": -64.87575334, "LATITUDE": 18.32226215, "OBJECTID_1": 38748, "PARCEL_NO_": "107603052000", "Tax_Legal_": "EST NADIR 5 RED HOOK QTR", "Name": "BLYDEN, JOSEPH", "Address": "PO Box 11676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274200, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.42143401800001, "SHAPE_Area": 1154.16591722 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364663.185400001704693, 254798.110500000417233 ], [ 364664.027699999511242, 254793.842799998819828 ], [ 364659.688500002026558, 254794.266199998557568 ], [ 364651.803900003433228, 254794.424899999052286 ], [ 364646.618100002408028, 254794.213300000876188 ], [ 364639.042700000107288, 254792.424499999731779 ], [ 364636.632799997925758, 254791.349300000816584 ], [ 364634.219300001859665, 254790.696199998259544 ], [ 364636.770900003612041, 254807.824000000953674 ], [ 364641.42960000038147, 254839.09569999948144 ], [ 364657.996799997985363, 254839.231300000101328 ], [ 364664.768500000238419, 254838.187100000679493 ], [ 364664.027699999511242, 254833.636300001293421 ], [ 364664.133500002324581, 254824.217099998146296 ], [ 364662.01690000295639, 254806.9662000015378 ], [ 364663.075199998915195, 254800.827899999916553 ], [ 364663.185400001704693, 254798.110500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052000", "MAP": "G9-1413-T69", "PARCEL_NAM": "5E", "ACRE": ".26", "LONGITUDE": -64.8767115, "LATITUDE": 18.3223354, "OBJECTID_1": 38748, "PARCEL_NO_": "107603052000", "Tax_Legal_": "EST NADIR 5 RED HOOK QTR", "Name": "BLYDEN, JOSEPH", "Address": "PO Box 11676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274200, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.44479094299999, "SHAPE_Area": 1153.4661038199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364571.150200001895428, 254839.191300000995398 ], [ 364563.883199997246265, 254805.903499998152256 ], [ 364562.318999998271465, 254806.361999999731779 ], [ 364558.2837999984622, 254806.7511 ], [ 364539.734999999403954, 254807.021499998867512 ], [ 364529.506899997591972, 254809.048099998384714 ], [ 364529.56360000371933, 254836.05290000140667 ], [ 364536.258000001311302, 254836.546100001782179 ], [ 364557.211400002241135, 254837.984200000762939 ], [ 364562.045699998736382, 254838.445999998599291 ], [ 364571.150200001895428, 254839.191300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704040700", "MAP": "D9-2684-T84", "PARCEL_NAM": "9L-4", "ACRE": ".56", "LONGITUDE": -64.85490514, "LATITUDE": 18.32216891, "OBJECTID_1": 40028, "PARCEL_NO_": "107704040700", "Tax_Legal_": "NAZARETH 9L-4 RED HOOK QTR.", "Name": "BAILEY, JOSEPH & CEASERENE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 125400, "Improved_V": 506400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.34960134299999, "SHAPE_Area": 3088.4086889599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366875.746299996972084, 254811.575199998915195 ], [ 366865.498000003397465, 254784.049199998378754 ], [ 366840.381899997591972, 254797.986900001764297 ], [ 366828.236800000071526, 254803.798099998384714 ], [ 366818.530500002205372, 254807.307199999690056 ], [ 366839.079300001263618, 254856.238000001758337 ], [ 366857.640600003302097, 254854.490100000053644 ], [ 366889.135399997234344, 254849.048300001770258 ], [ 366875.746299996972084, 254811.575199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024000", "MAP": null, "PARCEL_NAM": "3-70", "ACRE": null, "LONGITUDE": -64.88052125, "LATITUDE": 18.32226317, "OBJECTID_1": 38608, "PARCEL_NO_": "107603024000", "Tax_Legal_": "3-70 ESTATE BOVONI FRENCHMAN BAY QTR.", "Name": "DOUGLAS, THERESA L.", "Address": "PO Box 502562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26300, "Improved_V": 157300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.67605993, "SHAPE_Area": 743.15480485199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364129.870200000703335, 254824.265099998563528 ], [ 364150.722800001502037, 254830.174699999392033 ], [ 364163.2212999984622, 254799.929099999368191 ], [ 364142.325499996542931, 254791.736600000411272 ], [ 364129.870200000703335, 254824.265099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603020100", "MAP": "F9-180-T57", "PARCEL_NAM": "3-86", "ACRE": "0.22", "LONGITUDE": -64.8818388, "LATITUDE": 18.32222176, "OBJECTID_1": 38579, "PARCEL_NO_": "107603020100", "Tax_Legal_": "BOVONI 3-86 FRENCHMANS BAY QTR", "Name": "HAYNES, VIVIAN S", "Address": "2E-50A Estate Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.39744951, "SHAPE_Area": 788.962568003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363989.378200002014637, 254816.570199999958277 ], [ 364013.434299997985363, 254824.235300000756979 ], [ 364024.567900002002716, 254794.994600001722574 ], [ 364002.063100002706051, 254786.366700001060963 ], [ 363989.378200002014637, 254816.570199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87194819, "LATITUDE": 18.32229323, "OBJECTID_1": 38858, "PARCEL_NO_": "107604010600", "Tax_Legal_": "20B NADIR RED HOOK QTR", "Name": "CHARLES, MARVLYN", "Address": "PO Box 9380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59800, "Improved_V": 132000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.02840158500001, "SHAPE_Area": 1776.8795829600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365047.735299997031689, 254808.434999998658895 ], [ 365020.308100000023842, 254809.688200000673532 ], [ 365020.106700003147125, 254833.328999999910593 ], [ 365029.771600000560284, 254834.674699999392033 ], [ 365074.07209999859333, 254840.525699999183416 ], [ 365080.601700000464916, 254831.291000001132488 ], [ 365084.843599997460842, 254806.62779999896884 ], [ 365047.735299997031689, 254808.434999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87758285, "LATITUDE": 18.32215642, "OBJECTID_1": 38748, "PARCEL_NO_": "107603052000", "Tax_Legal_": "EST NADIR 5 RED HOOK QTR", "Name": "BLYDEN, JOSEPH", "Address": "PO Box 11676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274200, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 418.70763161899998, "SHAPE_Area": 7489.6167333800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364400.520300000905991, 254767.792199999094009 ], [ 364392.458800002932549, 254786.243999999016523 ], [ 364390.130500003695488, 254800.531500000506639 ], [ 364393.656999997794628, 254825.132100000977516 ], [ 364405.712700001895428, 254826.400699999183416 ], [ 364411.353299997746944, 254826.868999999016523 ], [ 364487.908100001513958, 254832.772900000214577 ], [ 364507.248800002038479, 254834.197799999266863 ], [ 364523.364200003445148, 254835.596200000494719 ], [ 364529.56360000371933, 254836.05290000140667 ], [ 364529.506899997591972, 254809.048099998384714 ], [ 364524.388099998235703, 254810.062300000339746 ], [ 364511.440399996936321, 254815.44480000063777 ], [ 364507.450199998915195, 254810.557000000029802 ], [ 364517.966399997472763, 254806.632199998944998 ], [ 364527.663699999451637, 254804.17850000038743 ], [ 364528.498800002038479, 254800.807799998670816 ], [ 364497.227099999785423, 254780.075800001621246 ], [ 364500.49549999833107, 254775.036299999803305 ], [ 364500.353200003504753, 254772.891499999910593 ], [ 364400.520300000905991, 254767.792199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87309881, "LATITUDE": 18.32231494, "OBJECTID_1": 38854, "PARCEL_NO_": "107604010100", "Tax_Legal_": "2OA ESTATE NADIR RED HOOK QTR", "Name": "FRETT, DANTE A", "Address": "1153 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 42700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.19422523700001, "SHAPE_Area": 992.31027824099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364953.163000002503395, 254835.103199999779463 ], [ 364952.547200001776218, 254812.722199998795986 ], [ 364906.587399996817112, 254812.346099998801947 ], [ 364912.836499996483326, 254836.039700001478195 ], [ 364949.131399996578693, 254835.070199999958277 ], [ 364953.163000002503395, 254835.103199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87279659, "LATITUDE": 18.32231056, "OBJECTID_1": 38855, "PARCEL_NO_": "107604010300", "Tax_Legal_": "20AA NADIR RED HOOK QTR", "Name": "THE SAUTER-FRETT FAMILY TRUST", "Address": "PO Box 301738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15600, "Improved_V": 90900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.555870852799998, "SHAPE_Area": 455.98580915000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364973.326200000941753, 254834.634899999946356 ], [ 364972.714000001549721, 254811.831799998879433 ], [ 364952.547200001776218, 254812.722199998795986 ], [ 364953.163000002503395, 254835.103199999779463 ], [ 364973.326200000941753, 254834.634899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704040900", "MAP": null, "PARCEL_NAM": "9K", "ACRE": "0.32", "LONGITUDE": -64.85361458, "LATITUDE": 18.32215217, "OBJECTID_1": 40030, "PARCEL_NO_": "107704040900", "Tax_Legal_": "9K EST. NAZARETH RED HOOK QTR.", "Name": "VANLOW, MADLYN & ARTHUR", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71400, "Improved_V": 477000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.09017502099999, "SHAPE_Area": 1501.31427119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367016.84740000218153, 254813.152199998497963 ], [ 366993.631599999964237, 254793.33049999922514 ], [ 366962.605099998414516, 254838.46169999986887 ], [ 366976.276500001549721, 254842.795499999076128 ], [ 366981.895499996840954, 254845.796799998730421 ], [ 366989.90820000320673, 254851.772999998182058 ], [ 367016.84740000218153, 254813.152199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603030400", "MAP": "A9-78-T67", "PARCEL_NAM": "33-21", "ACRE": "0.10", "LONGITUDE": -64.87964901, "LATITUDE": 18.32227164, "OBJECTID_1": 38626, "PARCEL_NO_": "107603030400", "Tax_Legal_": "NADIR 33-21 RED HOOK QTR", "Name": "DALY, LAWRENCE O & INEZ J. B", "Address": "PO Box 306366", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10800, "Improved_V": 86800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.531793415600006, "SHAPE_Area": 463.04806155799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364246.030500002205372, 254828.893399998545647 ], [ 364247.655699998140335, 254827.429099999368191 ], [ 364245.490299999713898, 254797.647199999541044 ], [ 364240.666799999773502, 254795.9189000017941 ], [ 364238.258699998259544, 254794.632699999958277 ], [ 364225.134700000286102, 254820.700899999588728 ], [ 364246.030500002205372, 254828.893399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604035600", "MAP": "D9-5625-T93", "PARCEL_NAM": "52B REM", "ACRE": "0.255", "LONGITUDE": -64.87007911000001, "LATITUDE": 18.32230026, "OBJECTID_1": 38996, "PARCEL_NO_": "107604035600", "Tax_Legal_": "52B REM ESTATE FRYDENHOJ NO.3 RED HOOK QTR", "Name": "VIDAL, ALTON", "Address": "394-31 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31400, "Improved_V": 99500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.822962295, "SHAPE_Area": 1000.67362618 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365268.591399997472763, 254812.953099999576807 ], [ 365227.104000002145767, 254812.733800001442432 ], [ 365227.499799996614456, 254814.972600001841784 ], [ 365231.3496999964118, 254836.324499998241663 ], [ 365266.015799999237061, 254837.241500001400709 ], [ 365273.837499998509884, 254837.224899999797344 ], [ 365272.701399996876717, 254834.043699998408556 ], [ 365268.591399997472763, 254812.953099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87259255, "LATITUDE": 18.32230131, "OBJECTID_1": 38856, "PARCEL_NO_": "107604010400", "Tax_Legal_": "NADIR 20G RED HOOK QTR", "Name": "ADAMS, ORTHLIE", "Address": "6436, 20G ESTATE NADIR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13200, "Improved_V": 129100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.042977191999995, "SHAPE_Area": 529.17498353300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364995.910099998116493, 254833.975400000810623 ], [ 364996.107900001108646, 254810.756700001657009 ], [ 364972.714000001549721, 254811.831799998879433 ], [ 364973.326200000941753, 254834.634899999946356 ], [ 364995.910099998116493, 254833.975400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86930688, "LATITUDE": 18.32217463, "OBJECTID_1": 38999, "PARCEL_NO_": "107604040300", "Tax_Legal_": "FRYDENHOJ ESTATE 74B RED HOOK QUARTER", "Name": "KRATT, NORMA & OTHERS", "Address": "10 Old Country Ln", "City": "Kingston", "State": "New York", "Zip": 12401, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.30223509, "SHAPE_Area": 438.79514124799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365335.365900002419949, 254836.964800000190735 ], [ 365336.267499998211861, 254825.784200001507998 ], [ 365341.339100003242493, 254798.383499998599291 ], [ 365321.199299998581409, 254796.107799999415874 ], [ 365330.576499998569489, 254831.225999999791384 ], [ 365331.366700001060963, 254833.13230000063777 ], [ 365335.365900002419949, 254836.964800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87236942, "LATITUDE": 18.32229251, "OBJECTID_1": 38857, "PARCEL_NO_": "107604010500", "Tax_Legal_": "20H NADIR RED HOOK QTR", "Name": "AUGUISTE, STEPHEN S. & LAVERN D.", "Address": "3160 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.290960649300004, "SHAPE_Area": 565.76964141400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365020.308100000023842, 254809.688200000673532 ], [ 365013.854000002145767, 254810.057599999010563 ], [ 364996.107900001108646, 254810.756700001657009 ], [ 364995.910099998116493, 254833.975400000810623 ], [ 365020.106700003147125, 254833.328999999910593 ], [ 365020.308100000023842, 254809.688200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036500", "MAP": "A9-78-T67", "PARCEL_NAM": "33-22", "ACRE": "0.08", "LONGITUDE": -64.87952049, "LATITUDE": 18.32224368, "OBJECTID_1": 38687, "PARCEL_NO_": "107603036500", "Tax_Legal_": "NADIR 33-22 RED HOOK QTR", "Name": "BAILEY, EVA, ALPHEUS F., AVRIL C., & ALONZO E.", "Address": "PO Box 8977", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 86300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.015901960999997, "SHAPE_Area": 313.522211787 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364247.655699998140335, 254827.429099999368191 ], [ 364259.840300001204014, 254816.97410000115633 ], [ 364257.590400002896786, 254797.112900000065565 ], [ 364245.490299999713898, 254797.647199999541044 ], [ 364247.655699998140335, 254827.429099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704040600", "MAP": "D9-2684-T84", "PARCEL_NAM": "9L-3", "ACRE": ".67", "LONGITUDE": -64.85434283, "LATITUDE": 18.32209999, "OBJECTID_1": 40027, "PARCEL_NO_": "107704040600", "Tax_Legal_": "9L-3 NAZARETH RED HOOK QTR.", "Name": "SPRAUVE, MARGARET E", "Address": "PO Box 7133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 132400, "Improved_V": 543100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.71954702699998, "SHAPE_Area": 2746.7214585699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366949.518200002610683, 254765.527300000190735 ], [ 366937.468400001525879, 254760.151299998164177 ], [ 366939.055900000035763, 254763.119600001722574 ], [ 366939.036100000143051, 254765.441500000655651 ], [ 366928.305900000035763, 254794.484600000083447 ], [ 366875.746299996972084, 254811.575199998915195 ], [ 366889.135399997234344, 254849.048300001770258 ], [ 366923.880500003695488, 254840.67790000140667 ], [ 366941.641000002622604, 254838.290100000798702 ], [ 366936.180200003087521, 254816.713899999856949 ], [ 366945.473999999463558, 254766.971900001168251 ], [ 366949.518200002610683, 254765.527300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.869029, "LATITUDE": 18.32222689, "OBJECTID_1": 39001, "PARCEL_NO_": "107604040600", "Tax_Legal_": "12X ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "HARRIGAN, F. & NILES", "Address": "PO Box 503042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 14800, "Improved_V": 287000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.02612657900001, "SHAPE_Area": 566.45024298299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365379.034400001168251, 254822.334499999880791 ], [ 365349.409400001168251, 254797.605200000107288 ], [ 365346.031300000846386, 254815.520500000566244 ], [ 365370.046300001442432, 254836.19310000166297 ], [ 365379.034400001168251, 254822.334499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703010100", "MAP": "D3-289-T68", "PARCEL_NAM": "59", "ACRE": null, "LONGITUDE": -64.86579138, "LATITUDE": 18.32212378, "OBJECTID_1": 39596, "PARCEL_NO_": "107703010100", "Tax_Legal_": "FRYDENHOJ ESTATE 59 RED HOOK QUARTER", "Name": "GIMENEZ, JOHN & NORMA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 191700, "Improved_V": 229800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.628544062, "SHAPE_Area": 2988.26929488 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365751.303999997675419, 254816.825399998575449 ], [ 365748.449600003659725, 254810.792500000447035 ], [ 365734.977799996733665, 254783.028999999165535 ], [ 365687.304700002074242, 254794.460099998861551 ], [ 365666.326200000941753, 254795.977099999785423 ], [ 365663.09009999781847, 254797.217199999839067 ], [ 365661.461300000548363, 254799.103700000792742 ], [ 365660.624499998986721, 254802.685499999672174 ], [ 365666.864600002765656, 254827.434500001370907 ], [ 365670.842200003564358, 254833.799800001084805 ], [ 365672.526900000870228, 254835.519000001251698 ], [ 365751.303999997675419, 254816.825399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019700", "MAP": "F9-3946-T57", "PARCEL_NAM": "3-98", "ACRE": "0.22", "LONGITUDE": -64.88214401, "LATITUDE": 18.32220856, "OBJECTID_1": 38573, "PARCEL_NO_": "107603019700", "Tax_Legal_": "3-60,67,68,69,76,98,& 100&104 BOVONI (EASTERN) 1 & 2 FRENCHMANS BAY QUARTER", "Name": "LIMA, AGUSTIN J.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.002215085, "SHAPE_Area": 734.44574500099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363980.795100003480911, 254821.867499999701977 ], [ 363983.777800001204014, 254814.681000001728535 ], [ 363992.320799998939037, 254794.09739999845624 ], [ 363968.197999998927116, 254786.089499998837709 ], [ 363958.283100001513958, 254814.083799999207258 ], [ 363961.499300003051758, 254815.165600001811981 ], [ 363980.795100003480911, 254821.867499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86514472, "LATITUDE": 18.3221728, "OBJECTID_1": 39598, "PARCEL_NO_": "107703010300", "Tax_Legal_": "FRYDENHOJ ESTATE 90 RED HOOK QUARTER", "Name": "INDUSTRIOUS, DORIS", "Address": "6205 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40100, "Improved_V": 203100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.689946448, "SHAPE_Area": 949.58734528900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365756.370600000023842, 254827.5337999984622 ], [ 365759.534800000488758, 254834.736800000071526 ], [ 365777.35639999806881, 254825.172400001436472 ], [ 365801.657200001180172, 254812.283500000834465 ], [ 365777.575699999928474, 254799.420800000429153 ], [ 365748.449600003659725, 254810.792500000447035 ], [ 365756.370600000023842, 254827.5337999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603020500", "MAP": "D9-4498-T88", "PARCEL_NAM": "3-72", "ACRE": "0.22", "LONGITUDE": -64.88100145, "LATITUDE": 18.32210795, "OBJECTID_1": 38583, "PARCEL_NO_": "107603020500", "Tax_Legal_": "BOVONI 3-72 OF 3 FRENCHMANS BAY QTR", "Name": "BLAKE, NICK", "Address": "PO Box 1684", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 71900, "Improved_V": 233000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.680851964, "SHAPE_Area": 1187.17724978 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364077.95099999755621, 254809.551199998706579 ], [ 364103.935599997639656, 254816.915199998766184 ], [ 364116.60980000346899, 254781.3935999982059 ], [ 364087.676100000739098, 254770.179900001734495 ], [ 364081.094300001859665, 254785.535900000482798 ], [ 364077.95099999755621, 254809.551199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87903713, "LATITUDE": 18.32225292, "OBJECTID_1": 38682, "PARCEL_NO_": "107603036000", "Tax_Legal_": "33-62 & 33-117 ESTATE NADIR RED HOOK QTR", "Name": "WARNER, ELISE", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11700, "Improved_V": 89400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.998825364400005, "SHAPE_Area": 420.240928962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364316.41889999806881, 254801.394099999219179 ], [ 364287.335900001227856, 254807.699999999254942 ], [ 364291.246899999678135, 254821.875199999660254 ], [ 364318.717299997806549, 254815.556200001388788 ], [ 364316.41889999806881, 254801.394099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803019700", "MAP": "B9-510-T85", "PARCEL_NAM": "9 REM", "ACRE": null, "LONGITUDE": -64.84757171, "LATITUDE": 18.32145302, "OBJECTID_1": 40195, "PARCEL_NO_": "107803019700", "Tax_Legal_": "9 REM.ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "REDHOOK HAYES B REM LLC", "Address": "1000 Blackbeards Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 342200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 501.03816745799998, "SHAPE_Area": 9694.4134723499992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367566.450800001621246, 254663.763300001621246 ], [ 367570.433799996972084, 254669.495400000363588 ], [ 367577.553900003433228, 254685.596799999475479 ], [ 367579.922499999403954, 254691.526799999177456 ], [ 367581.491999998688698, 254696.605900000780821 ], [ 367583.828199997544289, 254706.335299998521805 ], [ 367585.370700001716614, 254714.580600000917912 ], [ 367586.837700001895428, 254731.691199999302626 ], [ 367587.546899996697903, 254743.096000000834465 ], [ 367586.571599997580051, 254762.930799998342991 ], [ 367690.669299997389317, 254848.642400000244379 ], [ 367692.296300001442432, 254846.967000000178814 ], [ 367706.071999996900558, 254839.058200001716614 ], [ 367682.256599999964237, 254794.955800000578165 ], [ 367667.17400000244379, 254766.967999998480082 ], [ 367652.089699998497963, 254739.191300000995398 ], [ 367635.412399999797344, 254709.079500000923872 ], [ 367618.744199998676777, 254677.912300001829863 ], [ 367610.007799997925758, 254662.219900000840425 ], [ 367579.357199996709824, 254663.235599998384714 ], [ 367566.450800001621246, 254663.763300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603070100", "MAP": "F9-1683-T66", "PARCEL_NAM": "17", "ACRE": "2.26", "LONGITUDE": -64.87425143, "LATITUDE": 18.32168943, "OBJECTID_1": 38845, "PARCEL_NO_": "107603070100", "Tax_Legal_": "17 EST NADIR RED HOOK QTR", "Name": "VESSUP, MELVINA", "Address": "16335 130th Ave", "City": "Jamaica", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 196300, "Improved_V": 79200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 475.48880689600003, "SHAPE_Area": 6429.6749777300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364859.895099997520447, 254783.767000000923872 ], [ 364832.39130000025034, 254735.761599998921156 ], [ 364880.355700001120567, 254738.384100001305342 ], [ 364883.979400001466274, 254721.179699998348951 ], [ 364885.305799998342991, 254716.150499999523163 ], [ 364860.95610000193119, 254715.995700001716614 ], [ 364835.445699997246265, 254715.833500001579523 ], [ 364821.312899999320507, 254715.743599999696016 ], [ 364784.038000002503395, 254715.506599999964237 ], [ 364782.373199999332428, 254721.614700000733137 ], [ 364774.929399996995926, 254743.507500000298023 ], [ 364759.370300002396107, 254771.455600000917912 ], [ 364749.584899999201298, 254784.252199999988079 ], [ 364750.324699997901917, 254792.06870000064373 ], [ 364752.732799999415874, 254793.355000000447035 ], [ 364765.604999996721745, 254796.837799999862909 ], [ 364780.073700003325939, 254802.233600001782179 ], [ 364794.529799997806549, 254809.106899999082088 ], [ 364796.453299999237061, 254810.367400001734495 ], [ 364795.488300003111362, 254783.227600000798702 ], [ 364810.807099997997284, 254791.508200000971556 ], [ 364819.877899996936321, 254767.940000001341105 ], [ 364859.895099997520447, 254783.767000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604018700", "MAP": "D9-3097-T85", "PARCEL_NAM": "17-3", "ACRE": "0.237", "LONGITUDE": -64.8740608, "LATITUDE": 18.32217573, "OBJECTID_1": 38908, "PARCEL_NO_": "107604018700", "Tax_Legal_": "NADIR 17-3 RED HOOK QTR.", "Name": "AMEY, ARTHUR", "Address": "83-37 ST. JAMES AVENUE", "City": "Elmhurst", "State": "New York", "Zip": 11373, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.77705565, "SHAPE_Area": 630.27877333200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364821.030199997127056, 254821.989399999380112 ], [ 364841.241999998688698, 254815.822000000625849 ], [ 364848.536499999463558, 254811.448699999600649 ], [ 364853.413999997079372, 254806.8445999994874 ], [ 364810.807099997997284, 254791.508200000971556 ], [ 364821.030199997127056, 254821.989399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603030300", "MAP": "A9-78-T67", "PARCEL_NAM": "33-23", "ACRE": "0.09", "LONGITUDE": -64.87937154, "LATITUDE": 18.32220527, "OBJECTID_1": 38625, "PARCEL_NO_": "107603030300", "Tax_Legal_": "33-23 NADIR NO 2 RED HOOK QTR", "Name": "UNA E. COUSINS & WADE A. FRANCIS", "Address": "PO Box 7683", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 83500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.611938871800007, "SHAPE_Area": 373.17954073499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364257.590400002896786, 254797.112900000065565 ], [ 364259.840300001204014, 254816.97410000115633 ], [ 364279.217000000178814, 254814.177400000393391 ], [ 364276.925700001418591, 254799.171000000089407 ], [ 364274.530199997127056, 254796.407200001180172 ], [ 364270.507600001990795, 254795.318799998611212 ], [ 364257.590400002896786, 254797.112900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704040400", "MAP": "D9-2684-T84", "PARCEL_NAM": "9L-1", "ACRE": "0.629", "LONGITUDE": -64.85390833, "LATITUDE": 18.32197256, "OBJECTID_1": 40025, "PARCEL_NO_": "107704040400", "Tax_Legal_": "9L-1 NAZARETH RED HOOK QTR.", "Name": "FRANCIS, MARIANA & SIEDAH", "Address": "6705 Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89300, "Improved_V": 199600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.22499694300001, "SHAPE_Area": 2605.62124657 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366993.631599999964237, 254793.33049999922514 ], [ 366976.004199996590614, 254780.098400000482798 ], [ 366949.518200002610683, 254765.527300000190735 ], [ 366945.473999999463558, 254766.971900001168251 ], [ 366936.180200003087521, 254816.713899999856949 ], [ 366941.641000002622604, 254838.290100000798702 ], [ 366951.323899999260902, 254837.524999998509884 ], [ 366962.605099998414516, 254838.46169999986887 ], [ 366993.631599999964237, 254793.33049999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85307477000001, "LATITUDE": 18.32201342, "OBJECTID_1": 39974, "PARCEL_NO_": "107704030500", "Tax_Legal_": "9A-20 ESTATE NAZARETH RED HOOK QUARTER", "Name": "Virgin Islands Montessori School", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.65994299299999, "SHAPE_Area": 972.30831097400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367061.374399997293949, 254792.407299999147654 ], [ 367048.552599996328354, 254783.014199998229742 ], [ 367028.153800003230572, 254811.133799999952316 ], [ 367034.561099998652935, 254816.252500001341105 ], [ 367056.146300002932549, 254838.171799998730421 ], [ 367061.374399997293949, 254792.407299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803010300", "MAP": "D9-338-T62", "PARCEL_NAM": "9-47", "ACRE": ".48", "LONGITUDE": -64.84883043000001, "LATITUDE": 18.32201888, "OBJECTID_1": 40161, "PARCEL_NO_": "107803010300", "Tax_Legal_": "9-47 ESTATE NAZARETH #1 REDHOOK QTR", "Name": "WEISS, JEFFREY & ROST, ANNMARIE", "Address": "6934 Vessup Lane", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.885250867, "SHAPE_Area": 1966.9163941199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367533.718900002539158, 254814.427299998700619 ], [ 367480.750399999320507, 254784.862799998372793 ], [ 367470.138899996876717, 254799.974700000137091 ], [ 367463.575099997222424, 254813.219900000840425 ], [ 367506.88400000333786, 254840.805399999022484 ], [ 367533.718900002539158, 254814.427299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86894434, "LATITUDE": 18.32207282, "OBJECTID_1": 39002, "PARCEL_NO_": "107604040700", "Tax_Legal_": "12W FRYDENHOJ RED HOOK QTR", "Name": "RABSATT, ALCEDO", "Address": "6530 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14600, "Improved_V": 143000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.657212262, "SHAPE_Area": 905.50144257600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365394.562899999320507, 254797.974800001829863 ], [ 365348.736199997365475, 254781.978799998760223 ], [ 365349.409400001168251, 254797.605200000107288 ], [ 365379.034400001168251, 254822.334499999880791 ], [ 365394.562899999320507, 254797.974800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86441952, "LATITUDE": 18.32196429, "OBJECTID_1": 39603, "PARCEL_NO_": "107703010800", "Tax_Legal_": "FRYDENHOJ ESTATE 17B RED HOOK QUARTER", "Name": "HARRIGAN, KENNETH", "Address": "PO Box 7323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67100, "Improved_V": 80200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.623863599, "SHAPE_Area": 1974.23530323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365868.935400001704693, 254771.248700000345707 ], [ 365870.628899998962879, 254761.763399999588728 ], [ 365840.0033999979496, 254759.824000000953674 ], [ 365827.354900002479553, 254824.737199999392033 ], [ 365843.472199998795986, 254825.924600001424551 ], [ 365853.158699996769428, 254824.737300001084805 ], [ 365858.009199999272823, 254823.299400001764297 ], [ 365864.745600000023842, 254789.790600001811981 ], [ 365868.935400001704693, 254771.248700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604030600", "MAP": null, "PARCEL_NAM": "52M REM", "ACRE": null, "LONGITUDE": -64.86959314000001, "LATITUDE": 18.32198874, "OBJECTID_1": 38948, "PARCEL_NO_": "107604030600", "Tax_Legal_": "EST. FRYDENHOJ 52M RED HOOK QTR.", "Name": "CHRISTOPHER, CLARISTINE", "Address": "5807 Fernhill Dr", "City": "Orlando", "State": "Florida", "Zip": 32808, "Country": "United States", "Land_Value": 31900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.453694912, "SHAPE_Area": 773.95492231100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365315.994499996304512, 254806.746700000017881 ], [ 365313.145099997520447, 254794.986400000751019 ], [ 365310.873700000345707, 254777.658100001513958 ], [ 365310.714199997484684, 254771.497999999672174 ], [ 365288.311200000345707, 254775.374600000679493 ], [ 365289.272200003266335, 254784.464899998158216 ], [ 365294.718800000846386, 254810.180900000035763 ], [ 365315.994499996304512, 254806.746700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86466231, "LATITUDE": 18.32191996, "OBJECTID_1": 39646, "PARCEL_NO_": "107703015700", "Tax_Legal_": "FRYDENHOJ ESTATE 18B RED HOOK QTR", "Name": "PONDT, CHARLES & DAWN", "Address": "6216 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.766906659, "SHAPE_Area": 1335.4455137499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365840.0033999979496, 254759.824000000953674 ], [ 365811.760899998247623, 254762.125900000333786 ], [ 365809.761699996888638, 254807.494699999690056 ], [ 365816.161799997091293, 254813.457699999213219 ], [ 365820.144900001585484, 254819.189800001680851 ], [ 365821.723300002515316, 254823.213500000536442 ], [ 365827.354900002479553, 254824.737199999392033 ], [ 365840.0033999979496, 254759.824000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704011900", "MAP": "D9-6174-T97", "PARCEL_NAM": "2V-14C", "ACRE": "0.30", "LONGITUDE": -64.85628891, "LATITUDE": 18.32201589, "OBJECTID_1": 39780, "PARCEL_NO_": "107704011900", "Tax_Legal_": "NAZARETH ESTATE 2V-14C RED HOOK QUARTER", "Name": "CURTIS, AVON & KING, DAVID", "Address": "PO Box 1322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.75652592099999, "SHAPE_Area": 1346.9099563 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366695.802400000393391, 254776.99720000103116 ], [ 366671.216899998486042, 254763.301899999380112 ], [ 366665.938199996948242, 254761.670800000429153 ], [ 366668.05969999730587, 254765.690499998629093 ], [ 366674.635099999606609, 254770.356800001114607 ], [ 366705.154700003564358, 254787.042300000786781 ], [ 366704.247500002384186, 254790.441799998283386 ], [ 366692.467699997127056, 254827.50899999961257 ], [ 366704.628300003707409, 254831.284000001847744 ], [ 366715.911300003528595, 254832.009700000286102 ], [ 366730.931599996984005, 254818.807599999010563 ], [ 366720.66330000013113, 254791.227899998426437 ], [ 366719.510499998927116, 254788.131700001657009 ], [ 366713.886100001633167, 254787.348600000143051 ], [ 366695.802400000393391, 254776.99720000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704050100", "MAP": "A9-314-T85", "PARCEL_NAM": "9M-1", "ACRE": ".76", "LONGITUDE": -64.85551496, "LATITUDE": 18.32187385, "OBJECTID_1": 40031, "PARCEL_NO_": "107704050100", "Tax_Legal_": "9M-1 NAZARETH RED HOOK QTR.", "Name": "HORII, JUNJI & HELEN K. KIM", "Address": "6264 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 205800, "Improved_V": 334400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.76308734000003, "SHAPE_Area": 3680.3955604600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366821.425999999046326, 254751.391100000590086 ], [ 366826.292599998414516, 254748.05350000038743 ], [ 366792.0962999984622, 254765.047100000083447 ], [ 366791.843000002205372, 254765.26969999819994 ], [ 366730.931599996984005, 254818.807599999010563 ], [ 366715.911300003528595, 254832.009700000286102 ], [ 366719.944600000977516, 254831.831599999219179 ], [ 366744.180699996650219, 254826.541499998420477 ], [ 366760.351899996399879, 254821.396499998867512 ], [ 366784.634800001978874, 254810.618400000035763 ], [ 366825.083499997854233, 254795.328499998897314 ], [ 366843.709600001573563, 254785.981800001114607 ], [ 366831.825300000607967, 254761.186599999666214 ], [ 366821.425999999046326, 254751.391100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84671757, "LATITUDE": 18.32191783, "OBJECTID_1": 40191, "PARCEL_NO_": "107803013500", "Tax_Legal_": "9-64 NAZARETH ESTATE NO.1 RED HOOK QTR.", "Name": "VICTORINE, URSULA", "Address": "PO BOX 6254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 113500, "Improved_V": 300600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.21468093199999, "SHAPE_Area": 2783.14462409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367757.125, 254809.500700000673532 ], [ 367745.222699999809265, 254786.816300000995398 ], [ 367742.848700001835823, 254781.519600000232458 ], [ 367738.912500001490116, 254770.299400001764297 ], [ 367682.256599999964237, 254794.955800000578165 ], [ 367706.071999996900558, 254839.058200001716614 ], [ 367757.125, 254809.500700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703017100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86281698000001, "LATITUDE": 18.32200989, "OBJECTID_1": 39660, "PARCEL_NO_": "107703017100", "Tax_Legal_": "4J FRYDENHOJ NO 3 RED HOOK QTR", "Name": "JAMES GEORGE FAMILY TRUST", "Address": "PO Box 503053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 54800, "Improved_V": 112100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.99607249100001, "SHAPE_Area": 1677.98849617 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366038.1908999979496, 254780.866599999368191 ], [ 366038.292099997401237, 254778.406100001186132 ], [ 365997.706900000572205, 254776.319499999284744 ], [ 365997.885999999940395, 254779.270199999213219 ], [ 366002.3462999984622, 254823.636300001293421 ], [ 366035.421300001442432, 254822.007199998944998 ], [ 366038.1908999979496, 254780.866599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704032900", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".66", "LONGITUDE": -64.85212429000001, "LATITUDE": 18.32203418, "OBJECTID_1": 39991, "PARCEL_NO_": "107704032900", "Tax_Legal_": "9-26&25-1 NAZARETH 1 RED HOOK QTR", "Name": "WHITE, DOUGLAS", "Address": "6814 Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 106500, "Improved_V": 185500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.269345445, "SHAPE_Area": 2526.1336107500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367175.561499997973442, 254829.649999998509884 ], [ 367184.72410000115633, 254795.316700000315905 ], [ 367173.448299996554852, 254793.746800001710653 ], [ 367162.994999997317791, 254790.283700000494719 ], [ 367155.78490000218153, 254784.736299999058247 ], [ 367153.39299999922514, 254781.550299998372793 ], [ 367103.070699997246265, 254819.979600001126528 ], [ 367119.92059999704361, 254829.827899999916553 ], [ 367123.131399996578693, 254831.542899999767542 ], [ 367125.541400000452995, 254832.618099998682737 ], [ 367140.866700001060963, 254832.110199999064207 ], [ 367160.225400000810623, 254831.424300000071526 ], [ 367175.561499997973442, 254829.649999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035900", "MAP": "A9-78-T67", "PARCEL_NAM": "33-60", "ACRE": "0.09", "LONGITUDE": -64.87906314, "LATITUDE": 18.32212019, "OBJECTID_1": 38681, "PARCEL_NO_": "107603035900", "Tax_Legal_": "33-60 NADIR RED HOOK QTR", "Name": "HANSBY (LIFE ESTATE), JANET M", "Address": "PO Box 7122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 97800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.827454685199996, "SHAPE_Area": 453.85863772699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364314.127599999308586, 254786.387699998915195 ], [ 364285.859899997711182, 254791.644799999892712 ], [ 364287.335900001227856, 254807.699999999254942 ], [ 364316.41889999806881, 254801.394099999219179 ], [ 364314.874600000679493, 254793.359900001436472 ], [ 364314.127599999308586, 254786.387699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86246705000001, "LATITUDE": 18.32201883, "OBJECTID_1": 39653, "PARCEL_NO_": "107703016400", "Tax_Legal_": "FRYDENHOJ ESTATE REMAINDER #4 REDHOOK QTR", "Name": "BEATRICE POTTER DONADELLE REVOC LIV TR", "Address": "PO Box 11754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73900, "Improved_V": 114400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.60494411799999, "SHAPE_Area": 1532.60699471 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366073.922899998724461, 254820.307300001382828 ], [ 366073.513800002634525, 254817.340900000184774 ], [ 366073.037799999117851, 254803.061000000685453 ], [ 366074.70380000025034, 254792.589099999517202 ], [ 366077.664200000464916, 254785.41160000115633 ], [ 366074.286799997091293, 254782.475099999457598 ], [ 366061.871299996972084, 254780.492800001055002 ], [ 366038.292099997401237, 254778.406100001186132 ], [ 366038.1908999979496, 254780.866599999368191 ], [ 366035.421300001442432, 254822.007199998944998 ], [ 366073.922899998724461, 254820.307300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87290388, "LATITUDE": 18.32194909, "OBJECTID_1": 38859, "PARCEL_NO_": "107604010700", "Tax_Legal_": "16 ESTATE NADIR RED HOOK QTR", "Name": "MONSANTO, MILLICENT", "Address": "PO Box 10725", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 97300, "Improved_V": 134100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.461687563, "SHAPE_Area": 2529.7906033 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364928.762500002980232, 254765.031500000506639 ], [ 364928.742700003087521, 254767.353399999439716 ], [ 364930.204300001263618, 254785.097199998795986 ], [ 364923.730400003492832, 254787.788400001823902 ], [ 364917.958499997854233, 254802.728799998760223 ], [ 364906.587399996817112, 254812.346099998801947 ], [ 364933.258699998259544, 254805.176100000739098 ], [ 364980.847300000488758, 254803.665699999779463 ], [ 364980.18299999833107, 254786.983899999409914 ], [ 364978.026600003242493, 254756.146600000560284 ], [ 364931.215599998831749, 254761.040800001472235 ], [ 364930.376900002360344, 254764.833599999547005 ], [ 364928.762500002980232, 254765.031500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87262146, "LATITUDE": 18.32209286, "OBJECTID_1": 38867, "PARCEL_NO_": "107604011400", "Tax_Legal_": "NADIR ESTATE 16-M RED HOOK QTR.", "Name": "HENDRICKS, DOROTHY & CRAIG", "Address": "6037 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35400, "Improved_V": 258200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.92847801, "SHAPE_Area": 1468.7187569299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365013.854000002145767, 254810.057599999010563 ], [ 365012.435500003397465, 254787.247900001704693 ], [ 365002.847900003194809, 254776.825800001621246 ], [ 364999.624499998986721, 254776.588300000876188 ], [ 364996.37219999730587, 254779.728100001811981 ], [ 364991.57209999859333, 254775.255899999290705 ], [ 364980.18299999833107, 254786.983899999409914 ], [ 364980.847300000488758, 254803.665699999779463 ], [ 364933.258699998259544, 254805.176100000739098 ], [ 364906.587399996817112, 254812.346099998801947 ], [ 364952.547200001776218, 254812.722199998795986 ], [ 364972.714000001549721, 254811.831799998879433 ], [ 364996.107900001108646, 254810.756700001657009 ], [ 365013.854000002145767, 254810.057599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604034300", "MAP": "F9-2665-T70", "PARCEL_NAM": "52C", "ACRE": null, "LONGITUDE": -64.87055876, "LATITUDE": 18.32199822, "OBJECTID_1": 38985, "PARCEL_NO_": "107604034300", "Tax_Legal_": "52C ESTATE FRYDENHOJ RED HOOK QTR", "Name": "GEORGE, LYDEN & KERNE", "Address": "60-26 ESTATE SMITH BAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 23200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.58481430399999, "SHAPE_Area": 922.37264470800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365200.777999997138977, 254770.724199999123812 ], [ 365185.221900001168251, 254770.663899999111891 ], [ 365192.503100000321865, 254812.466600000858307 ], [ 365204.779700003564358, 254812.582899998873472 ], [ 365212.614399999380112, 254812.657200001180172 ], [ 365212.124899998307228, 254806.605700001120567 ], [ 365211.880199998617172, 254803.580699998885393 ], [ 365209.225199997425079, 254770.756999999284744 ], [ 365200.777999997138977, 254770.724199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704033000", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".64", "LONGITUDE": -64.85154619, "LATITUDE": 18.32201272, "OBJECTID_1": 39992, "PARCEL_NO_": "107704033000", "Tax_Legal_": "9-27 & 9-28-1 NAZARETH NO.1 RED HOOK QTR", "Name": "ROMANO, CHARLES FRANCIS", "Address": "10122 Country Club Rd NE", "City": "Cumberland", "State": "Maryland", "Zip": 21502, "Country": "United States", "Land_Value": 118500, "Improved_V": 334000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.50124395200001, "SHAPE_Area": 1980.2802525300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367241.722300000488758, 254825.125199999660254 ], [ 367231.567500002682209, 254786.623100001364946 ], [ 367229.985399998724461, 254783.021499998867512 ], [ 367218.64130000025034, 254789.472600001841784 ], [ 367208.935000002384186, 254792.981699999421835 ], [ 367196.01240000128746, 254795.409099999815226 ], [ 367184.72410000115633, 254795.316700000315905 ], [ 367175.561499997973442, 254829.649999998509884 ], [ 367202.196800000965595, 254826.70160000026226 ], [ 367236.887999996542931, 254824.663499999791384 ], [ 367241.722300000488758, 254825.125199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704033100", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".63", "LONGITUDE": -64.85104011, "LATITUDE": 18.32191404, "OBJECTID_1": 39993, "PARCEL_NO_": "107704033100", "Tax_Legal_": "9-28 REM NAZARETH NO.1 RED HOOK QTR", "Name": "Anthony, Lyndal, Joan-Ann, Lyndal Jr., & Jolysa", "Address": "PO Box 10069", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 146000, "Improved_V": 293800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.850398179, "SHAPE_Area": 2888.9295694100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367235.652999997138977, 254780.323699999600649 ], [ 367231.567500002682209, 254786.623100001364946 ], [ 367241.722300000488758, 254825.125199999660254 ], [ 367245.750299997627735, 254825.580400001257658 ], [ 367294.098399996757507, 254829.564699999988079 ], [ 367280.129699997603893, 254765.489000000059605 ], [ 367264.789899997413158, 254767.685499999672174 ], [ 367249.42509999871254, 254772.837099999189377 ], [ 367235.652999997138977, 254780.323699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704033200", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".59", "LONGITUDE": -64.85063872000001, "LATITUDE": 18.32189056, "OBJECTID_1": 39994, "PARCEL_NO_": "107704033200", "Tax_Legal_": "9-29 NAZARETH NO 1 RED HOOK QTR", "Name": "EVE E. MATTHEWS TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 115200, "Improved_V": 197400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.22689820599999, "SHAPE_Area": 2322.9073472199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367294.098399996757507, 254829.564699999988079 ], [ 367328.791500002145767, 254827.315499998629093 ], [ 367322.795900002121925, 254773.859700001776218 ], [ 367315.558899998664856, 254771.478500001132488 ], [ 367309.939800001680851, 254768.477200001478195 ], [ 367302.697400003671646, 254766.729200001806021 ], [ 367291.419799998402596, 254765.370299998670816 ], [ 367280.129699997603893, 254765.489000000059605 ], [ 367294.098399996757507, 254829.564699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87216061, "LATITUDE": 18.32205631, "OBJECTID_1": 38868, "PARCEL_NO_": "107604011500", "Tax_Legal_": "16L NADIR RED HOOK QTR", "Name": "MEYERS, C & OTHERS", "Address": "615 NW 210th St", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.970119975, "SHAPE_Area": 912.2272221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365016.504900000989437, 254782.848200000822544 ], [ 365012.435500003397465, 254787.247900001704693 ], [ 365013.854000002145767, 254810.057599999010563 ], [ 365020.308100000023842, 254809.688200000673532 ], [ 365047.735299997031689, 254808.434999998658895 ], [ 365047.954700000584126, 254782.683400001376867 ], [ 365016.504900000989437, 254782.848200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704033600", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".62", "LONGITUDE": -64.84935658000001, "LATITUDE": 18.32183426, "OBJECTID_1": 39998, "PARCEL_NO_": "107704033600", "Tax_Legal_": "9-35 NAZARETH RED HOOK", "Name": "WEISS, RICHARD and KRISTIE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 152900, "Improved_V": 832100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.913881062, "SHAPE_Area": 2498.9837166399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367474.352099999785423, 254778.688799999654293 ], [ 367444.728900000452995, 254753.748399998992682 ], [ 367430.0371999964118, 254774.526399999856949 ], [ 367421.895000003278255, 254783.747800000011921 ], [ 367410.495099999010563, 254796.742300000041723 ], [ 367406.436599999666214, 254799.875500001013279 ], [ 367437.629199996590614, 254829.894999999552965 ], [ 367443.314800001680851, 254825.086399998515844 ], [ 367451.462399996817112, 254815.231699999421835 ], [ 367452.288500003516674, 254812.916400000452995 ], [ 367457.180299997329712, 254806.623700000345707 ], [ 367465.387299999594688, 254789.803300000727177 ], [ 367471.101599998772144, 254781.617499999701977 ], [ 367474.352099999785423, 254778.688799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87338539, "LATITUDE": 18.32189146, "OBJECTID_1": 38861, "PARCEL_NO_": "107604010800", "Tax_Legal_": "16-D ESTATE NADIR RED HOOK QUARTER", "Name": "FREDERICKS, ELVIS & ESTRADA, ANN-M", "Address": "PO Box 11396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.22914821699999, "SHAPE_Area": 1582.41761739 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364924.765100002288818, 254760.988000001758337 ], [ 364921.550599999725819, 254759.695099998265505 ], [ 364907.117899999022484, 254750.077799998223782 ], [ 364885.264700002968311, 254759.609200000762939 ], [ 364881.874099999666214, 254779.002099998295307 ], [ 364885.767200000584126, 254795.288199998438358 ], [ 364890.493600003421307, 254808.414599999785423 ], [ 364909.960100002586842, 254795.063999999314547 ], [ 364916.437600001692772, 254791.950599998235703 ], [ 364917.335600003600121, 254781.192200001329184 ], [ 364919.007600001990795, 254774.239799998700619 ], [ 364920.657999999821186, 254769.820300001651049 ], [ 364924.765100002288818, 254760.988000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704011300", "MAP": "D9-6174-T97", "PARCEL_NAM": "2V-14A-1", "ACRE": "0.25", "LONGITUDE": -64.85656954, "LATITUDE": 18.32203194, "OBJECTID_1": 39777, "PARCEL_NO_": "107704011300", "Tax_Legal_": "NAZARETH ESTATE 2V-14A-1 RED HOOK QTR", "Name": "COTES, YONNY VALENCIA", "Address": "6234 Estate Frydenhoj", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34600, "Improved_V": 143000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.904867424, "SHAPE_Area": 1119.9203325000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366700.656499996781349, 254801.741500001400709 ], [ 366666.810599997639656, 254785.205400001257658 ], [ 366664.492499999701977, 254791.979800000786781 ], [ 366656.379000000655651, 254815.690400000661612 ], [ 366678.088299997150898, 254823.045299999415874 ], [ 366692.467699997127056, 254827.50899999961257 ], [ 366700.656499996781349, 254801.741500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704033300", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".49", "LONGITUDE": -64.85025368, "LATITUDE": 18.32193204, "OBJECTID_1": 39995, "PARCEL_NO_": "107704033300", "Tax_Legal_": "9-32 NAZARETH NO.1 RED HOOK QTR", "Name": "DONNELINGER, JAMES, L. CIRRA, E & A KAZMIERSKI", "Address": "89 Evergreen Dr", "City": "Random Lake", "State": "Wisconsin", "Zip": 530751657, "Country": "United States", "Land_Value": 97600, "Improved_V": 196100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.76872125, "SHAPE_Area": 2032.44424527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367360.674599997699261, 254776.280699998140335 ], [ 367352.597099997103214, 254777.903299998492002 ], [ 367341.306900002062321, 254778.021999999880791 ], [ 367322.795900002121925, 254773.859700001776218 ], [ 367328.791500002145767, 254827.315499998629093 ], [ 367339.278899997472763, 254826.76799999922514 ], [ 367373.163800001144409, 254824.723299998790026 ], [ 367360.674599997699261, 254776.280699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604013800", "MAP": "G9-1458-T70", "PARCEL_NAM": "17-2", "ACRE": "0.244", "LONGITUDE": -64.87398409, "LATITUDE": 18.32199827, "OBJECTID_1": 38892, "PARCEL_NO_": "107604013800", "Tax_Legal_": "17-2 NADIR RED HOOK QTR", "Name": "SMITH, T. & OTHERS/N. SMITH", "Address": "PO Box 1632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27800, "Improved_V": 43100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.99530688900001, "SHAPE_Area": 1179.5363403599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364810.807099997997284, 254791.508200000971556 ], [ 364853.413999997079372, 254806.8445999994874 ], [ 364867.29389999806881, 254786.693199999630451 ], [ 364819.877899996936321, 254767.940000001341105 ], [ 364810.807099997997284, 254791.508200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87181116, "LATITUDE": 18.32204286, "OBJECTID_1": 38869, "PARCEL_NO_": "107604011600", "Tax_Legal_": "16-B ESTATE NADIR RED HOOK QUARTER", "Name": "STROUDE, ANASTASIA", "Address": "6015 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23900, "Improved_V": 90900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.38367626300001, "SHAPE_Area": 981.07380671400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365084.843599997460842, 254806.62779999896884 ], [ 365089.886500000953674, 254782.604400001466274 ], [ 365047.954700000584126, 254782.683400001376867 ], [ 365047.735299997031689, 254808.434999998658895 ], [ 365084.843599997460842, 254806.62779999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87105088, "LATITUDE": 18.32194347, "OBJECTID_1": 38955, "PARCEL_NO_": "107604031300", "Tax_Legal_": "ESTATE FRYDENHOJ 2H RED HOOK QTR", "Name": "BURTON, GOLDINE & KNIGHT, EMME", "Address": "PO Box 502773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.47691703000001, "SHAPE_Area": 1343.9366989499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365149.181000001728535, 254767.698699999600649 ], [ 365129.311999998986721, 254767.161899998784065 ], [ 365128.695600003004074, 254770.467500001192093 ], [ 365129.325699999928474, 254791.15989999845624 ], [ 365137.236000001430511, 254809.167599998414516 ], [ 365140.601000003516674, 254815.459699999541044 ], [ 365161.002400003373623, 254790.612799998372793 ], [ 365171.679099999368191, 254777.609700001776218 ], [ 365174.380500003695488, 254774.319699998944998 ], [ 365177.4070999994874, 254770.633600000292063 ], [ 365179.152000002563, 254768.508499998599291 ], [ 365171.344099998474121, 254768.297499999403954 ], [ 365149.181000001728535, 254767.698699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604030800", "MAP": null, "PARCEL_NAM": "52C-B", "ACRE": null, "LONGITUDE": -64.87007136, "LATITUDE": 18.32196899, "OBJECTID_1": 38950, "PARCEL_NO_": "107604030800", "Tax_Legal_": "52CB ESTATE FRYDENHOJ No.3 RED HOOK QTR.", "Name": "AUGUISTE, AUGUSTINA A. & GREGORY", "Address": "PO Box 9847", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 103700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.769337471, "SHAPE_Area": 915.86233655599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365237.168099999427795, 254770.86540000140667 ], [ 365238.546700000762939, 254805.028599999845028 ], [ 365257.817800000309944, 254804.730900000780821 ], [ 365262.380999997258186, 254804.509399998933077 ], [ 365267.598700001835823, 254804.256099998950958 ], [ 365263.498499996960163, 254780.417199999094009 ], [ 365263.015799999237061, 254770.965599998831749 ], [ 365260.934399999678135, 254771.127700001001358 ], [ 365257.932700000703335, 254770.945900000631809 ], [ 365237.168099999427795, 254770.86540000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8559388, "LATITUDE": 18.32165555, "OBJECTID_1": 39782, "PARCEL_NO_": "107704012100", "Tax_Legal_": "NAZARETH ESTATE 2V-15 RED HOOK QTR", "Name": "HALL, OSWALD & JUANITA", "Address": "PO Box 7102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 97500, "Improved_V": 37000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.70362928600002, "SHAPE_Area": 4491.4997682000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366791.843000002205372, 254765.26969999819994 ], [ 366786.8462999984622, 254740.342300001531839 ], [ 366705.464400000870228, 254733.132399998605251 ], [ 366703.779899999499321, 254741.562300000339746 ], [ 366719.510499998927116, 254788.131700001657009 ], [ 366730.931599996984005, 254818.807599999010563 ], [ 366791.843000002205372, 254765.26969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604034200", "MAP": null, "PARCEL_NAM": "52C-A", "ACRE": null, "LONGITUDE": -64.87032747000001, "LATITUDE": 18.32196409, "OBJECTID_1": 38984, "PARCEL_NO_": "107604034200", "Tax_Legal_": "FRYDENHOJ 52CA RED HOOK QTR", "Name": "DONOVAN, LEANARDO", "Address": "PO Box 9917", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.774904522, "SHAPE_Area": 914.43961833900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365232.89580000191927, 254770.848799999803305 ], [ 365209.225199997425079, 254770.756999999284744 ], [ 365211.880199998617172, 254803.580699998885393 ], [ 365236.955399997532368, 254805.053199999034405 ], [ 365238.546700000762939, 254805.028599999845028 ], [ 365237.168099999427795, 254770.86540000140667 ], [ 365232.89580000191927, 254770.848799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704033500", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".48", "LONGITUDE": -64.84985964000001, "LATITUDE": 18.32180873, "OBJECTID_1": 39997, "PARCEL_NO_": "107704033500", "Tax_Legal_": "NAZARETH ESTATE 9-33 RED HOOK QTR", "Name": "CAROLYN C TYSON RESTATED AND AMEND TRUST AGREE", "Address": "6805 Estate Nazareth Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103900, "Improved_V": 264300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.728781857, "SHAPE_Area": 2141.88701403 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367421.895000003278255, 254783.747800000011921 ], [ 367390.670000001788139, 254757.527800001204014 ], [ 367384.973700001835823, 254763.602899998426437 ], [ 367377.670100003480911, 254769.031500000506639 ], [ 367371.997100003063679, 254772.36259999871254 ], [ 367360.674599997699261, 254776.280699998140335 ], [ 367373.163800001144409, 254824.723299998790026 ], [ 367406.436599999666214, 254799.875500001013279 ], [ 367410.495099999010563, 254796.742300000041723 ], [ 367421.895000003278255, 254783.747800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052000", "MAP": "G9-1413-T69", "PARCEL_NAM": "5E", "ACRE": ".39", "LONGITUDE": -64.87668311, "LATITUDE": 18.32199626, "OBJECTID_1": 38748, "PARCEL_NO_": "107603052000", "Tax_Legal_": "EST NADIR 5 RED HOOK QTR", "Name": "BLYDEN, JOSEPH", "Address": "PO Box 11676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274200, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.73765322, "SHAPE_Area": 1717.2673732200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364617.676299996674061, 254779.7489 ], [ 364617.891500003635883, 254778.895100001245737 ], [ 364597.235799998044968, 254777.84010000154376 ], [ 364500.353200003504753, 254772.891499999910593 ], [ 364500.49549999833107, 254775.036299999803305 ], [ 364534.972699999809265, 254798.116599999368191 ], [ 364544.625100001692772, 254800.939800001680851 ], [ 364557.526100002229214, 254801.045400001108646 ], [ 364567.221600003540516, 254798.802700001746416 ], [ 364575.317100003361702, 254795.069299999624491 ], [ 364580.998999997973442, 254790.682799998670816 ], [ 364585.858499996364117, 254788.189500000327826 ], [ 364597.182800002396107, 254784.060300000011921 ], [ 364610.922499999403954, 254780.373100001364946 ], [ 364617.676299996674061, 254779.7489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86532165, "LATITUDE": 18.32199868, "OBJECTID_1": 39599, "PARCEL_NO_": "107703010400", "Tax_Legal_": "FRYDENHOJ ESTATE 89&174 RED HOOK QUARTER", "Name": "CAINES, M. & L. & C. & A", "Address": "6219 Est. Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 131900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.41158105300001, "SHAPE_Area": 599.38435737299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365777.575699999928474, 254799.420800000429153 ], [ 365746.275200001895428, 254782.065999999642372 ], [ 365740.63459999859333, 254781.597699999809265 ], [ 365734.977799996733665, 254783.028999999165535 ], [ 365748.449600003659725, 254810.792500000447035 ], [ 365777.575699999928474, 254799.420800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019900", "MAP": "F9-3925-57", "PARCEL_NAM": "3-74", "ACRE": null, "LONGITUDE": -64.8815346, "LATITUDE": 18.32192738, "OBJECTID_1": 38575, "PARCEL_NO_": "107603019900", "Tax_Legal_": "POR.3 BOVONI/EASTERN PT. FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE RAMON", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 173700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.508112754, "SHAPE_Area": 1019.79638641 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364058.735100001096725, 254759.810600001364946 ], [ 364034.6266999989748, 254750.114000000059605 ], [ 364020.604699999094009, 254786.940699998289347 ], [ 364044.714900001883507, 254796.426100000739098 ], [ 364058.735100001096725, 254759.810600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704032000", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".61", "LONGITUDE": -64.85241997, "LATITUDE": 18.32176699, "OBJECTID_1": 39988, "PARCEL_NO_": "107704032000", "Tax_Legal_": "9-25-2 & 9-26-1 NAZARETH 1 RED HOOK QTR", "Name": "WHITE, DOUGLAS", "Address": "6814 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.16070693099999, "SHAPE_Area": 2691.82973335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367153.39299999922514, 254781.550299998372793 ], [ 367149.397399999201298, 254777.295699998736382 ], [ 367146.215300001204014, 254772.203400000929832 ], [ 367143.067299999296665, 254763.100600000470877 ], [ 367140.74549999833107, 254751.682599999010563 ], [ 367093.108300000429153, 254758.892099998891354 ], [ 367093.443499997258186, 254814.201299998909235 ], [ 367103.070699997246265, 254819.979600001126528 ], [ 367153.39299999922514, 254781.550299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704010500", "MAP": "D9-448-T64", "PARCEL_NAM": "2V-13B", "ACRE": "0.29", "LONGITUDE": -64.85717843, "LATITUDE": 18.32180531, "OBJECTID_1": 39771, "PARCEL_NO_": "107704010500", "Tax_Legal_": "2V-13B ESTATE NAZARETH RED HOOK QTR", "Name": "BRICE, BERNARD", "Address": "PO Box 308233", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33000, "Improved_V": 119700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.92813675400001, "SHAPE_Area": 1326.72055643 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366635.411899998784065, 254772.223700001835823 ], [ 366636.348499998450279, 254768.48200000077486 ], [ 366622.056100003421307, 254763.568999998271465 ], [ 366603.744000002741814, 254759.437600001692772 ], [ 366602.627400003373623, 254762.564100001007318 ], [ 366601.156999997794628, 254766.686900001019239 ], [ 366591.249300003051758, 254793.836899999529123 ], [ 366625.409999996423721, 254805.299100000411272 ], [ 366635.411899998784065, 254772.223700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86495129, "LATITUDE": 18.32186378, "OBJECTID_1": 39647, "PARCEL_NO_": "107703015800", "Tax_Legal_": "FRYDENHOJ ESTATE 18A RED HOOK QTR", "Name": "CHARLESWELL, KELLY", "Address": "PO Box 11123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38600, "Improved_V": 117000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.25556061, "SHAPE_Area": 1262.2564439800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365811.760899998247623, 254762.125900000333786 ], [ 365788.34009999781847, 254766.367199998348951 ], [ 365767.327399998903275, 254771.89469999819994 ], [ 365764.076999999582767, 254774.823499999940395 ], [ 365764.030299998819828, 254780.311500001698732 ], [ 365766.427599996328354, 254782.864199999719858 ], [ 365804.155299998819828, 254803.015799999237061 ], [ 365809.761699996888638, 254807.494699999690056 ], [ 365811.760899998247623, 254762.125900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035800", "MAP": "A9-78-T67", "PARCEL_NAM": "33-59", "ACRE": "0.09", "LONGITUDE": -64.87907978, "LATITUDE": 18.3219809, "OBJECTID_1": 38680, "PARCEL_NO_": "107603035800", "Tax_Legal_": "33-59&115 NADIR RED HOOK QTR", "Name": "PHILLIPS, CAROLINE", "Address": "7121 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 198700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.476107516799999, "SHAPE_Area": 440.41298239600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364313.441799998283386, 254772.238800000399351 ], [ 364284.38570000231266, 254775.378499999642372 ], [ 364285.859899997711182, 254791.644799999892712 ], [ 364314.127599999308586, 254786.387699998915195 ], [ 364313.441799998283386, 254772.238800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704036200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85283196, "LATITUDE": 18.32122794, "OBJECTID_1": 40021, "PARCEL_NO_": "107704036200", "Tax_Legal_": "9E-4 EST. NAZARETH REDHOOK QTR.", "Name": "Virgin Islands Montessori School", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 215600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 403.86297855200002, "SHAPE_Area": 4666.3206718199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367092.695799998939037, 254712.659200001507998 ], [ 367097.909500002861023, 254668.583299998193979 ], [ 367051.217100001871586, 254659.546300001442432 ], [ 367029.914899997413158, 254699.057599999010563 ], [ 367073.383900001645088, 254707.857099998742342 ], [ 367066.183499999344349, 254795.824200000613928 ], [ 367088.632600001990795, 254810.99549999833107 ], [ 367093.443499997258186, 254814.201299998909235 ], [ 367093.108300000429153, 254758.892099998891354 ], [ 367092.695799998939037, 254712.659200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704040500", "MAP": "D9-2684-T84", "PARCEL_NAM": "9L-2", "ACRE": ".59", "LONGITUDE": -64.854447, "LATITUDE": 18.32179461, "OBJECTID_1": 40026, "PARCEL_NO_": "107704040500", "Tax_Legal_": "9L-2 NAZARETH RED HOOK QTR.", "Name": "HEDRINGTON, IVERINE", "Address": "BOX 3661", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.45277112400001, "SHAPE_Area": 2401.62603924 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366937.468400001525879, 254760.151299998164177 ], [ 366923.784500002861023, 254757.295099999755621 ], [ 366912.490699999034405, 254757.835999999195337 ], [ 366898.713299997150898, 254765.955899998545647 ], [ 366880.090800002217293, 254774.880499999970198 ], [ 366865.498000003397465, 254784.049199998378754 ], [ 366875.746299996972084, 254811.575199998915195 ], [ 366928.305900000035763, 254794.484600000083447 ], [ 366939.036100000143051, 254765.441500000655651 ], [ 366939.055900000035763, 254763.119600001722574 ], [ 366937.468400001525879, 254760.151299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604043900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86932694, "LATITUDE": 18.32191297, "OBJECTID_1": 39033, "PARCEL_NO_": "107604043900", "Tax_Legal_": "74BI ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SAMUEL O. & EDNA L. HODGE JOINT LIVING TRUST", "Address": "6153 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12300, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.852182904, "SHAPE_Area": 620.23602838399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365341.558499999344349, 254772.631900001317263 ], [ 365318.238399997353554, 254765.052799999713898 ], [ 365320.407300002872944, 254794.412500001490116 ], [ 365321.199299998581409, 254796.107799999415874 ], [ 365341.339100003242493, 254798.383499998599291 ], [ 365341.558499999344349, 254772.631900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8795659, "LATITUDE": 18.32194082, "OBJECTID_1": 38659, "PARCEL_NO_": "107603033700", "Tax_Legal_": "NADIR ESTATE 33-38 RED HOOK QTR", "Name": "TODMAN, SMITH, CARLA A", "Address": "PO Box 9451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 65500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.155848308100005, "SHAPE_Area": 375.13652839000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364257.671300001442432, 254787.614399999380112 ], [ 364254.62950000166893, 254766.057900000363588 ], [ 364236.899599999189377, 254764.857400000095367 ], [ 364241.559500001370907, 254785.793800000101328 ], [ 364246.370399996638298, 254788.999499998986721 ], [ 364257.671300001442432, 254787.614399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603020800", "MAP": "F9-178-T57", "PARCEL_NAM": "3-75", "ACRE": "0.22", "LONGITUDE": -64.88172783, "LATITUDE": 18.32185322, "OBJECTID_1": 38584, "PARCEL_NO_": "107603020800", "Tax_Legal_": "EST BOVONI EAST. PT 3-75 FRENCHMANS BAY QTR", "Name": "FEDEE, ANTHONY", "Address": "PO Box 502775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24100, "Improved_V": 48200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.65578454, "SHAPE_Area": 714.27632996700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364017.7516999989748, 254743.220899999141693 ], [ 364015.289599999785423, 254748.267000000923872 ], [ 364004.530599996447563, 254780.687399998307228 ], [ 364020.604699999094009, 254786.940699998289347 ], [ 364034.6266999989748, 254750.114000000059605 ], [ 364017.7516999989748, 254743.220899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604040900", "MAP": null, "PARCEL_NAM": "12V", "ACRE": null, "LONGITUDE": -64.86890009, "LATITUDE": 18.32186141, "OBJECTID_1": 39004, "PARCEL_NO_": "107604040900", "Tax_Legal_": "12-V ESTATE FRYDENHOJ RED HOOK", "Name": "HARRIGAN (LIFE ESTATE), DEBELTO", "Address": "6142 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.10555791300001, "SHAPE_Area": 1401.4041308599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365408.453599996864796, 254776.55689999833703 ], [ 365349.769100002944469, 254755.389400001615286 ], [ 365348.914200000464916, 254761.081999998539686 ], [ 365348.736199997365475, 254781.978799998760223 ], [ 365394.562899999320507, 254797.974800001829863 ], [ 365408.453599996864796, 254776.55689999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019800", "MAP": "F9-151-T57", "PARCEL_NAM": "3-84", "ACRE": "0.22", "LONGITUDE": -64.88225958, "LATITUDE": 18.32189093, "OBJECTID_1": 38574, "PARCEL_NO_": "107603019800", "Tax_Legal_": "3-84 BOVONI (EASTERN) 1 & 2 FRENCHMANS BAY QUARTER", "Name": "VANHOLTEN, MYRTLE", "Address": "3-84 Bovoni", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.07202211800001, "SHAPE_Area": 634.27727826499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363978.107500001788139, 254758.728500001132488 ], [ 363958.016199998557568, 254750.753600001335144 ], [ 363948.097699999809265, 254779.170000001788139 ], [ 363968.197999998927116, 254786.089499998837709 ], [ 363978.107500001788139, 254758.728500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85344242, "LATITUDE": 18.32168816, "OBJECTID_1": 39973, "PARCEL_NO_": "107704030400", "Tax_Legal_": "9E 2 NAZARETH&9A-20-1 RED HOOK QTR", "Name": "Virgin Islands Montessori School", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102400, "Improved_V": 614600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.28782977, "SHAPE_Area": 2222.9972305400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367035.746899999678135, 254771.721500001847744 ], [ 367008.616300001740456, 254738.146600000560284 ], [ 366972.084100000560284, 254766.97859999909997 ], [ 366989.722300000488758, 254778.944200001657009 ], [ 367028.153800003230572, 254811.133799999952316 ], [ 367035.746899999678135, 254771.721500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87940279, "LATITUDE": 18.32193492, "OBJECTID_1": 38660, "PARCEL_NO_": "107603033800", "Tax_Legal_": "33-39 NADIR RED HOOK QTR", "Name": "GRANT, RUDEL K. & TISHA K. FAULKNER-GRANT", "Address": "PO BOX 8655", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 72000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.575722132799996, "SHAPE_Area": 373.35121702599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364273.982799999415874, 254766.005199998617172 ], [ 364254.62950000166893, 254766.057900000363588 ], [ 364257.671300001442432, 254787.614399999380112 ], [ 364271.39299999922514, 254786.037900000810623 ], [ 364274.639899998903275, 254783.531399998813868 ], [ 364273.982799999415874, 254766.005199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84623297, "LATITUDE": 18.32161087, "OBJECTID_1": 40197, "PARCEL_NO_": "107803020200", "Tax_Legal_": "NAZARETH 5-17 RED HOOK QTR", "Name": "HALL, GAYANN I", "Address": "3299 N Hill Ct", "City": "Middletown", "State": "Maryland", "Zip": 21769, "Country": "United States", "Land_Value": 134100, "Improved_V": 428200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.620030931, "SHAPE_Area": 2424.4306409300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367798.098700001835823, 254732.575899999588728 ], [ 367740.659999996423721, 254754.481699999421835 ], [ 367747.807099997997284, 254767.416900001466274 ], [ 367756.489500001072884, 254789.441700000315905 ], [ 367758.881499998271465, 254792.627599999308586 ], [ 367759.662600003182888, 254795.589299999177456 ], [ 367761.250100001692772, 254798.557599999010563 ], [ 367764.4375, 254803.016699999570847 ], [ 367767.60530000180006, 254809.797600001096725 ], [ 367771.586499996483326, 254815.740800000727177 ], [ 367777.275600001215935, 254810.510000001639128 ], [ 367779.67119999974966, 254813.273899998515844 ], [ 367798.098700001835823, 254732.575899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8752248, "LATITUDE": 18.32189153, "OBJECTID_1": 38759, "PARCEL_NO_": "107603052600", "Tax_Legal_": "17A-1 NADIR RED HOOK QTR", "Name": "QUETEL, ROBERT L. & ANNETTE", "Address": "PO Box 305932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32400, "Improved_V": 184500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.118658573, "SHAPE_Area": 637.34310007500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364718.091899998486042, 254789.482900001108646 ], [ 364717.548199996352196, 254758.658700000494719 ], [ 364704.616599999368191, 254762.141499999910593 ], [ 364694.129100002348423, 254762.688900001347065 ], [ 364695.522399999201298, 254788.45380000025034 ], [ 364718.091899998486042, 254789.482900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052700", "MAP": null, "PARCEL_NAM": "17A-1", "ACRE": null, "LONGITUDE": -64.87497315, "LATITUDE": 18.32185108, "OBJECTID_1": 38760, "PARCEL_NO_": "107603052700", "Tax_Legal_": "NADIR 17A-2 RED HOOK QTR", "Name": "AYALA, LYDIA", "Address": "17A-2 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 90200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.31236735, "SHAPE_Area": 977.24429808100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364757.888999998569489, 254756.033599998801947 ], [ 364731.282399997115135, 254755.604800000786781 ], [ 364728.863499999046326, 254755.58500000089407 ], [ 364717.548199996352196, 254758.658700000494719 ], [ 364718.091899998486042, 254789.482900001108646 ], [ 364735.024499997496605, 254789.621399998664856 ], [ 364738.260499998927116, 254788.381400000303984 ], [ 364739.891099996864796, 254786.2837999984622 ], [ 364739.909100003540516, 254784.173000000417233 ], [ 364743.195500001311302, 254777.022700000554323 ], [ 364750.527800001204014, 254768.21680000051856 ], [ 364757.888999998569489, 254756.033599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603021200", "MAP": "F9-186-T57", "PARCEL_NAM": "3-63", "ACRE": "0.22", "LONGITUDE": -64.88086068, "LATITUDE": 18.32179022, "OBJECTID_1": 38587, "PARCEL_NO_": "107603021200", "Tax_Legal_": "BOVONI 3-63 FRENCHMAN BAY QTR", "Name": "ALEXANDER, J & TUITT, L", "Address": "1695 Clara Ward Ave", "City": "Apopka", "State": "Florida", "Zip": 32703, "Country": "United States", "Land_Value": 27700, "Improved_V": 81600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.44286546699999, "SHAPE_Area": 1045.0728254000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364130.651600003242493, 254742.245099999010563 ], [ 364112.153099998831749, 254736.60530000180006 ], [ 364109.732400000095367, 254736.796599999070168 ], [ 364096.648000001907349, 254758.221000000834465 ], [ 364087.676100000739098, 254770.179900001734495 ], [ 364116.60980000346899, 254781.3935999982059 ], [ 364130.651600003242493, 254742.245099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87223953, "LATITUDE": 18.32178079, "OBJECTID_1": 38866, "PARCEL_NO_": "107604011300", "Tax_Legal_": "ESTATE NADIR 16-K RED HOOK QTR.", "Name": "BAILEY, LLOYD & JEFFREY", "Address": "PO Box 53", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38200, "Improved_V": 275500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.29716807299999, "SHAPE_Area": 1262.76775765 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365041.666000001132488, 254763.633499998599291 ], [ 365018.473499998450279, 254741.067800000309944 ], [ 364995.729599997401237, 254760.513300001621246 ], [ 365016.504900000989437, 254782.848200000822544 ], [ 365047.954700000584126, 254782.683400001376867 ], [ 365041.666000001132488, 254763.633499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87177628000001, "LATITUDE": 18.32175866, "OBJECTID_1": 38870, "PARCEL_NO_": "107604011700", "Tax_Legal_": "16-J NADIR RED HOOK QTR.", "Name": "REESEERSAM PRASHAD", "Address": "PO Box 7794", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010794, "Country": "United States", "Land_Value": 32900, "Improved_V": 76800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.92739733400001, "SHAPE_Area": 1721.22168382 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365089.886500000953674, 254782.604400001466274 ], [ 365093.260999999940395, 254765.111299999058247 ], [ 365093.374300003051758, 254751.813299998641014 ], [ 365091.027300000190735, 254743.350400000810623 ], [ 365085.464000001549721, 254733.805599998682737 ], [ 365041.666000001132488, 254763.633499998599291 ], [ 365047.954700000584126, 254782.683400001376867 ], [ 365089.886500000953674, 254782.604400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604066600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86637166, "LATITUDE": 18.32152255, "OBJECTID_1": 39121, "PARCEL_NO_": "107604066600", "Tax_Legal_": "83 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SVB 155 SPRING LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 394700, "Improved_V": 809600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.98464774799999, "SHAPE_Area": 3354.8711343099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365658.064499996602535, 254724.559900000691414 ], [ 365651.318400003015995, 254664.554099999368191 ], [ 365626.638099998235703, 254721.980700001120567 ], [ 365619.63740000128746, 254786.51799999922514 ], [ 365631.726700000464916, 254787.250199999660254 ], [ 365663.982799999415874, 254787.092000000178814 ], [ 365658.064499996602535, 254724.559900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86602532000001, "LATITUDE": 18.32166219, "OBJECTID_1": 39644, "PARCEL_NO_": "107703015500", "Tax_Legal_": "FRYDENHOJ ESTATE 102 RED HOOK QTR", "Name": "MARK D WENNER REVOCABLE LIVING TRUST", "Address": "PO BOX 11910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.216667898, "SHAPE_Area": 2180.52966741 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365712.429899998009205, 254779.467000000178814 ], [ 365675.040299996733665, 254719.632599998265505 ], [ 365658.064499996602535, 254724.559900000691414 ], [ 365663.982799999415874, 254787.092000000178814 ], [ 365684.961300000548363, 254785.574999999254942 ], [ 365712.429899998009205, 254779.467000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604066500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86664344, "LATITUDE": 18.32165827, "OBJECTID_1": 39120, "PARCEL_NO_": "107604066500", "Tax_Legal_": "75 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "SVB 155 SPRING LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 211700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.32096099699999, "SHAPE_Area": 1057.4992984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365626.638099998235703, 254721.980700001120567 ], [ 365617.720100000500679, 254727.607200000435114 ], [ 365607.180500000715256, 254734.27589999884367 ], [ 365601.106600001454353, 254784.677600000053644 ], [ 365619.63740000128746, 254786.51799999922514 ], [ 365626.638099998235703, 254721.980700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035700", "MAP": "A9-78-T67", "PARCEL_NAM": "33-58", "ACRE": "0.09", "LONGITUDE": -64.87909344000001, "LATITUDE": 18.32184729, "OBJECTID_1": 38679, "PARCEL_NO_": "107603035700", "Tax_Legal_": "33-58 NADIR RED HOOK QTR", "Name": "WILKINS, OLMOND & RITA J", "Address": "# 33-58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12200, "Improved_V": 75100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.873171772399999, "SHAPE_Area": 424.49701736899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364312.743299998342991, 254759.567499998956919 ], [ 364282.909800000488758, 254759.323300000280142 ], [ 364284.38570000231266, 254775.378499999642372 ], [ 364313.441799998283386, 254772.238800000399351 ], [ 364312.743299998342991, 254759.567499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704010100", "MAP": "D9-448-T64", "PARCEL_NAM": "REM 2V-12", "ACRE": "0.28", "LONGITUDE": -64.85749106, "LATITUDE": 18.32171636, "OBJECTID_1": 39767, "PARCEL_NO_": "107704010100", "Tax_Legal_": "NAZARETH ESTATE 2V-12 RED HOOK QTR", "Name": "BAILEY, EMELDA & OTHERS", "Address": "6521 Estate Nazarteh", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41600, "Improved_V": 131500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.780053587, "SHAPE_Area": 1224.0225174 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366602.627400003373623, 254762.564100001007318 ], [ 366603.744000002741814, 254759.437600001692772 ], [ 366593.13629999756813, 254755.976199999451637 ], [ 366570.804499998688698, 254750.281500000506639 ], [ 366568.994400002062321, 254755.868999999016523 ], [ 366559.083099998533726, 254783.441100001335144 ], [ 366591.249300003051758, 254793.836899999529123 ], [ 366602.627400003373623, 254762.564100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87599099000001, "LATITUDE": 18.32170262, "OBJECTID_1": 38758, "PARCEL_NO_": "107603052400", "Tax_Legal_": "6 EST NADIR RED HOOK QTR", "Name": "ROBERTS, VIOLA ALTHEA", "Address": "8145 Aouthgate Blvd", "City": "Pompano Beach", "State": "Florida", "Zip": 33068, "Country": "United States", "Land_Value": 121300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.96638455900001, "SHAPE_Area": 3731.5147153500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364660.521200001239777, 254732.22749999910593 ], [ 364660.584100000560284, 254724.839699998497963 ], [ 364614.593699999153614, 254728.051899999380112 ], [ 364589.579999998211861, 254729.958099998533726 ], [ 364588.421300001442432, 254771.322999998927116 ], [ 364587.929499998688698, 254777.364799998700619 ], [ 364597.235799998044968, 254777.84010000154376 ], [ 364660.911200001835823, 254781.092500001192093 ], [ 364660.944399997591972, 254777.193900000303984 ], [ 364661.050499998033047, 254764.740200001746416 ], [ 364660.521200001239777, 254732.22749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604066400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86681051, "LATITUDE": 18.3216802, "OBJECTID_1": 39119, "PARCEL_NO_": "107604066400", "Tax_Legal_": "49 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SVB 155 SPRING LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 156800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.97217248600001, "SHAPE_Area": 773.08204241500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365607.180500000715256, 254734.27589999884367 ], [ 365591.855200000107288, 254734.7837999984622 ], [ 365585.003700003027916, 254781.801600001752377 ], [ 365601.106600001454353, 254784.677600000053644 ], [ 365607.180500000715256, 254734.27589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85310033, "LATITUDE": 18.32140043, "OBJECTID_1": 39984, "PARCEL_NO_": "107704031600", "Tax_Legal_": "9E-3 NAZARETH RED HOOK QTR", "Name": "Virgin Islands Montessori School", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.25643726700002, "SHAPE_Area": 3892.5561229599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367035.746899999678135, 254771.721500001847744 ], [ 367039.738899998366833, 254776.398200001567602 ], [ 367048.552599996328354, 254783.014199998229742 ], [ 367061.374399997293949, 254792.407299999147654 ], [ 367066.183499999344349, 254795.824200000613928 ], [ 367073.383900001645088, 254707.857099998742342 ], [ 367029.914899997413158, 254699.057599999010563 ], [ 367008.616300001740456, 254738.146600000560284 ], [ 367035.746899999678135, 254771.721500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050900", "MAP": "A9-363-T89", "PARCEL_NAM": "27B", "ACRE": ".216", "LONGITUDE": -64.86777815000001, "LATITUDE": 18.32166622, "OBJECTID_1": 39060, "PARCEL_NO_": "107604050900", "Tax_Legal_": "FRYDENHOJ ESTATE 27B RED HOOK QTR", "Name": "DAAS CORPORATION", "Address": "PO Box 502967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052967, "Country": "United States", "Land_Value": 71900, "Improved_V": 118500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.622536329, "SHAPE_Area": 753.63986439600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365495.844700001180172, 254740.964099999517202 ], [ 365490.328199997544289, 254725.93129999935627 ], [ 365479.724500000476837, 254767.631999999284744 ], [ 365490.188199996948242, 254771.673900000751019 ], [ 365502.412399999797344, 254776.395799998193979 ], [ 365504.198499999940395, 254777.085700001567602 ], [ 365508.45440000295639, 254755.668999999761581 ], [ 365507.021600000560284, 254754.143300000578165 ], [ 365502.2179000005126, 254750.093299999833107 ], [ 365495.844700001180172, 254740.964099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603030900", "MAP": "A9-78-T67", "PARCEL_NAM": "33-16", "ACRE": "0.12", "LONGITUDE": -64.88004579, "LATITUDE": 18.32177761, "OBJECTID_1": 38631, "PARCEL_NO_": "107603030900", "Tax_Legal_": "33-16 NADIR RED HOOK QTR", "Name": "KING (LIFE ESTATE), MARJORIE A", "Address": "PO Box 7701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14400, "Improved_V": 90800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.316331353199999, "SHAPE_Area": 488.15476511600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364215.161499999463558, 254760.879799999296665 ], [ 364186.301500000059605, 254741.011799998581409 ], [ 364184.48030000180006, 254765.483800001442432 ], [ 364211.05629999935627, 254769.500999998301268 ], [ 364211.902099996805191, 254764.863899998366833 ], [ 364215.161499999463558, 254760.879799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603021100", "MAP": "D9-7131-T002", "PARCEL_NAM": "3-62 REM & 3-61-A", "ACRE": "0.17", "LONGITUDE": -64.88117217, "LATITUDE": 18.32167238, "OBJECTID_1": 38586, "PARCEL_NO_": "107603021100", "Tax_Legal_": "3-62 REM.& 3-61-A BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "GILLARD, SARAH & CYRIL", "Address": "PO Box 1684", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23100, "Improved_V": 139000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.502266284, "SHAPE_Area": 1017.75444117 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364072.757100000977516, 254722.984000001102686 ], [ 364058.735100001096725, 254759.810600001364946 ], [ 364078.824600003659725, 254767.996599998325109 ], [ 364082.919100001454353, 254760.641800001263618 ], [ 364086.173100002110004, 254757.290899999439716 ], [ 364095.159400001168251, 254743.643399998545647 ], [ 364100.074600003659725, 254734.606600001454353 ], [ 364072.757100000977516, 254722.984000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86538458, "LATITUDE": 18.32114043, "OBJECTID_1": 39609, "PARCEL_NO_": "107703011400", "Tax_Legal_": "FRYDENHOJ ESTATE 50 RED HOOK QUARTER", "Name": "MARK D WENNER REVOCABLE LIVING TRUST", "Address": "PO BOX 11910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 306400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 627.00623216700001, "SHAPE_Area": 12622.4983331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365809.819799996912479, 254716.936299998313189 ], [ 365786.126299999654293, 254666.484600000083447 ], [ 365746.923299998044968, 254583.00789999961853 ], [ 365738.120999999344349, 254564.264600001275539 ], [ 365734.259199999272823, 254556.041600000113249 ], [ 365728.775799997150898, 254564.496399998664856 ], [ 365719.076700001955032, 254567.161299999803305 ], [ 365723.002199999988079, 254579.647900000214577 ], [ 365725.367200002074242, 254586.000100001692772 ], [ 365757.591600000858307, 254684.211199998855591 ], [ 365759.155699998140335, 254689.923599999397993 ], [ 365741.422200001776218, 254689.145100001245737 ], [ 365729.32209999859333, 254689.679400000721216 ], [ 365690.574199996888638, 254694.639600001275539 ], [ 365675.040299996733665, 254719.632599998265505 ], [ 365712.429899998009205, 254779.467000000178814 ], [ 365742.331699997186661, 254771.690200001001358 ], [ 365770.642599999904633, 254761.367199998348951 ], [ 365790.84179999679327, 254756.677400000393391 ], [ 365797.304799996316433, 254755.252599999308586 ], [ 365801.358000002801418, 254752.752700001001358 ], [ 365807.065099999308586, 254745.411100000143051 ], [ 365807.544100001454353, 254740.459399998188019 ], [ 365809.819799996912479, 254716.936299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86075862, "LATITUDE": 18.32157969, "OBJECTID_1": 39742, "PARCEL_NO_": "107703030300", "Tax_Legal_": "NAZARETH ESTATE 2F RED HOOK QTR", "Name": "BLODGETT, RANDOLPH C., JR. & BETTY P.", "Address": "PO Box 7433", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92800, "Improved_V": 147600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.55031903700001, "SHAPE_Area": 2194.6537059399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366259.530500002205372, 254734.548900000751019 ], [ 366262.039300002157688, 254724.014699999243021 ], [ 366220.89580000191927, 254726.211100000888109 ], [ 366213.151699997484684, 254783.354100000113249 ], [ 366243.789800003170967, 254783.815900001674891 ], [ 366246.214100003242493, 254783.202500000596046 ], [ 366249.459100000560284, 254780.907000001519918 ], [ 366252.882200002670288, 254757.714699998497963 ], [ 366256.208099998533726, 254745.920699998736382 ], [ 366259.499899998307228, 254738.137200001627207 ], [ 366259.530500002205372, 254734.548900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86117674, "LATITUDE": 18.32140804, "OBJECTID_1": 39741, "PARCEL_NO_": "107703030200", "Tax_Legal_": "2E NAZARETH ESTATE NO.1 RED HOOK QTR", "Name": "WHITSELL, LISA", "Address": "2300 Moss Pl", "City": "Erie", "State": "Colorado", "Zip": 80516, "Country": "United States", "Land_Value": 160000, "Improved_V": 337400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.30485151, "SHAPE_Area": 5549.4400472500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366220.89580000191927, 254726.211100000888109 ], [ 366227.810199998319149, 254671.805599998682737 ], [ 366218.103900000452995, 254675.314699999988079 ], [ 366205.147200003266335, 254681.752599999308586 ], [ 366188.927400000393391, 254692.596700001507998 ], [ 366164.623000003397465, 254705.907699998468161 ], [ 366153.51690000295639, 254779.066300000995398 ], [ 366213.151699997484684, 254783.354100000113249 ], [ 366220.89580000191927, 254726.211100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604041200", "MAP": "F9-510-T60", "PARCEL_NAM": "12U", "ACRE": ".42", "LONGITUDE": -64.86877974, "LATITUDE": 18.32159323, "OBJECTID_1": 39007, "PARCEL_NO_": "107604041200", "Tax_Legal_": "12U FRYDENHOJ NO. 3 RED HOOK QUARTER", "Name": "ROGERS, ASHLEY B. & DELPHA WILLIAMS (TRUSTEES)", "Address": "PO Box 8416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69000, "Improved_V": 193700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.33125612500001, "SHAPE_Area": 2656.0069021099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365382.132100000977516, 254724.988699998706579 ], [ 365363.440600000321865, 254718.296000000089407 ], [ 365362.973999999463558, 254719.822700001299381 ], [ 365357.185900002717972, 254736.662799999117851 ], [ 365355.555299997329712, 254738.760400000959635 ], [ 365350.616700001060963, 254750.541200000792742 ], [ 365349.769100002944469, 254755.389400001615286 ], [ 365408.453599996864796, 254776.55689999833703 ], [ 365423.976800002157688, 254752.830400001257658 ], [ 365430.675599999725819, 254742.370299998670816 ], [ 365382.132100000977516, 254724.988699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86033195, "LATITUDE": 18.32165518, "OBJECTID_1": 39744, "PARCEL_NO_": "107703030500", "Tax_Legal_": "NAZARETH ESTATE 2V-8A RED HOOK QTR", "Name": "SMITH, ROSETTA, RUTH & KEN", "Address": "6508 Estate Nazareth 2V-8A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47500, "Improved_V": 228100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.26805545, "SHAPE_Area": 1563.0991394800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366273.239600002765656, 254734.449999999254942 ], [ 366270.800899997353554, 254736.752000000327826 ], [ 366265.057800002396107, 254748.315200001001358 ], [ 366261.731799997389317, 254760.109200000762939 ], [ 366260.884199999272823, 254764.957400001585484 ], [ 366260.776299998164177, 254777.622099999338388 ], [ 366261.570000000298023, 254779.106300000101328 ], [ 366264.768299996852875, 254782.298900000751019 ], [ 366267.984499998390675, 254783.380699999630451 ], [ 366291.376599997282028, 254782.516600001603365 ], [ 366296.228900000452995, 254780.867600001394749 ], [ 366301.178199999034405, 254767.820300001651049 ], [ 366306.883500002324581, 254760.689800001680851 ], [ 366310.126800000667572, 254758.605399999767542 ], [ 366273.239600002765656, 254734.449999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704012000", "MAP": "D9-448-T64", "PARCEL_NAM": "2V-14B", "ACRE": "0.43", "LONGITUDE": -64.85646963000001, "LATITUDE": 18.32159111, "OBJECTID_1": 39781, "PARCEL_NO_": "107704012000", "Tax_Legal_": "NAZARETH ESTATE 2V-14B REM. RED HOOK QTR", "Name": "E'BAS, CASMORE D & CORNWALL, S", "Address": "PO Box 502931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 49000, "Improved_V": 25400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.62826121200001, "SHAPE_Area": 1578.48151684 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366660.131899997591972, 254739.338899999856949 ], [ 366656.558799996972084, 254738.892299998551607 ], [ 366665.938199996948242, 254761.670800000429153 ], [ 366671.216899998486042, 254763.301899999380112 ], [ 366695.802400000393391, 254776.99720000103116 ], [ 366713.886100001633167, 254787.348600000143051 ], [ 366719.510499998927116, 254788.131700001657009 ], [ 366703.779899999499321, 254741.562300000339746 ], [ 366701.343000002205372, 254743.653299998492002 ], [ 366697.300599999725819, 254744.886799998581409 ], [ 366693.272600002586842, 254744.431600000709295 ], [ 366689.268100000917912, 254741.232500001788139 ], [ 366687.488399997353554, 254737.664000000804663 ], [ 366667.947999998927116, 254739.562199998646975 ], [ 366660.131899997591972, 254739.338899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84688255, "LATITUDE": 18.32160094, "OBJECTID_1": 40190, "PARCEL_NO_": "107803013400", "Tax_Legal_": "NAZARETH ESTATE 9-63 RED HOOK QTR.", "Name": "STOEKEN, PAUL ROBERTS & JESSICA SOLETHER STOEKEN", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 110000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.09375215599999, "SHAPE_Area": 1964.02529684 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367738.912500001490116, 254770.299400001764297 ], [ 367723.025399997830391, 254742.093899998813868 ], [ 367667.17400000244379, 254766.967999998480082 ], [ 367682.256599999964237, 254794.955800000578165 ], [ 367738.912500001490116, 254770.299400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87960263, "LATITUDE": 18.32174668, "OBJECTID_1": 38658, "PARCEL_NO_": "107603033600", "Tax_Legal_": "NADIR 33-37 RED HOOK QTR", "Name": "MARILYN P ARTHUR", "Address": "PO Box 11024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014022, "Country": "United States", "Land_Value": 10800, "Improved_V": 99900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.101221101700006, "SHAPE_Area": 384.75397001900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364252.384999997913837, 254745.563499998301268 ], [ 364233.850599996745586, 254744.145199999213219 ], [ 364233.773299999535084, 254753.221599999815226 ], [ 364236.899599999189377, 254764.857400000095367 ], [ 364254.62950000166893, 254766.057900000363588 ], [ 364252.384999997913837, 254745.563499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8794168, "LATITUDE": 18.32175319, "OBJECTID_1": 38661, "PARCEL_NO_": "107603033900", "Tax_Legal_": "33-40 NADIR RED HOOK QTR", "Name": "ISSAC, TRECIA", "Address": "PO Box 924", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10800, "Improved_V": 103100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.675778079400004, "SHAPE_Area": 407.05064730100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364274.950900003314018, 254747.014699999243021 ], [ 364252.384999997913837, 254745.563499998301268 ], [ 364254.62950000166893, 254766.057900000363588 ], [ 364273.982799999415874, 254766.005199998617172 ], [ 364274.115900002419949, 254750.385400000959635 ], [ 364274.950900003314018, 254747.014699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87094597, "LATITUDE": 18.32167239, "OBJECTID_1": 38956, "PARCEL_NO_": "107604031400", "Tax_Legal_": "ESTATE FRYDENHOJ 2 G RED HOOK QTR", "Name": "BROWNE, JONOTHAN S. & AGATHA A", "Address": "6044 Est Frydenhohj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.24586507000001, "SHAPE_Area": 1454.6283096100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365191.791199997067451, 254747.130399998277426 ], [ 365137.847300000488758, 254737.400699999183416 ], [ 365134.532200001180172, 254747.928300000727177 ], [ 365132.903399996459484, 254749.814800001680851 ], [ 365130.385499998927116, 254761.40430000051856 ], [ 365129.311999998986721, 254767.161899998784065 ], [ 365149.181000001728535, 254767.698699999600649 ], [ 365171.344099998474121, 254768.297499999403954 ], [ 365179.152000002563, 254768.508499998599291 ], [ 365181.833200000226498, 254765.285799998790026 ], [ 365196.275200001895428, 254747.927499998360872 ], [ 365191.791199997067451, 254747.130399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704050200", "MAP": "A9-314-T85", "PARCEL_NAM": null, "ACRE": ".51", "LONGITUDE": -64.854865, "LATITUDE": 18.3215731, "OBJECTID_1": 40032, "PARCEL_NO_": "107704050200", "Tax_Legal_": "9M-2 NAZARETH RED HOOK QTR.", "Name": "Virgin Islands Telephone Company", "Address": "PO Box 6100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 165000, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.56688885700001, "SHAPE_Area": 1650.33403415 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366889.895999997854233, 254759.761999998241663 ], [ 366865.972800001502037, 254728.324299998581409 ], [ 366831.825300000607967, 254761.186599999666214 ], [ 366843.709600001573563, 254785.981800001114607 ], [ 366856.670000001788139, 254779.121800001710653 ], [ 366876.129399999976158, 254766.61540000140667 ], [ 366889.895999997854233, 254759.761999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703032300", "MAP": "D9-448-T64", "PARCEL_NAM": "2V-12B", "ACRE": "0.27", "LONGITUDE": -64.85779539000001, "LATITUDE": 18.32163621, "OBJECTID_1": 39761, "PARCEL_NO_": "107703032300", "Tax_Legal_": "NAZARETH ESTATE 2V-12B RED HOOK QTR", "Name": "Romney, Adina T. & Todman, Dorothy J. (Life Interest)", "Address": "PO Box 10466", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33900, "Improved_V": 189500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.219563956, "SHAPE_Area": 1134.6448831499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366568.994400002062321, 254755.868999999016523 ], [ 366570.804499998688698, 254750.281500000506639 ], [ 366567.008100003004074, 254749.276599999517202 ], [ 366557.4054000005126, 254746.820099998265505 ], [ 366534.068599998950958, 254743.470300000160933 ], [ 366531.72240000218153, 254776.884399998933077 ], [ 366559.083099998533726, 254783.441100001335144 ], [ 366568.994400002062321, 254755.868999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85990336, "LATITUDE": 18.32174588, "OBJECTID_1": 39747, "PARCEL_NO_": "107703030800", "Tax_Legal_": "NAZARETH ESTATE 2V-9A RED HOOK QTR", "Name": "WYNTER, JACQUELINE", "Address": "PO Box 504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52000, "Improved_V": 208200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.266550956399996, "SHAPE_Area": 534.62234851400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366326.226000003516674, 254761.903599999845028 ], [ 366322.1908999979496, 254762.29280000180006 ], [ 366314.901699997484684, 254766.032800000160933 ], [ 366306.748700000345707, 254776.520700000226498 ], [ 366306.723499998450279, 254779.475900001823902 ], [ 366309.129900000989437, 254780.973200000822544 ], [ 366344.625600002706051, 254779.152800001204014 ], [ 366347.051700003445148, 254778.328299999237061 ], [ 366347.087700001895428, 254774.106699999421835 ], [ 366333.468500003218651, 254763.651599999517202 ], [ 366326.226000003516674, 254761.903599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86933191, "LATITUDE": 18.32172984, "OBJECTID_1": 39003, "PARCEL_NO_": "107604040800", "Tax_Legal_": "74BH ESTATE FRYDENHOJ RED HOOK", "Name": "WARNER, HYACINTH, AUBREY & DAUWALD", "Address": "6137 Est Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.440517014899996, "SHAPE_Area": 300.75593007600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365341.666400000452995, 254759.967199999839067 ], [ 365317.54169999808073, 254752.170400001108646 ], [ 365318.238399997353554, 254765.052799999713898 ], [ 365341.558499999344349, 254772.631900001317263 ], [ 365341.666400000452995, 254759.967199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8617213, "LATITUDE": 18.32155906, "OBJECTID_1": 39740, "PARCEL_NO_": "107703030100", "Tax_Legal_": "2EA ESTATE NAZARETH RED HOOK QTR.", "Name": "NASIRAH LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90600, "Improved_V": 92800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.76820389700001, "SHAPE_Area": 2835.7376735299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366164.623000003397465, 254705.907699998468161 ], [ 366150.84009999781847, 254714.660900000482798 ], [ 366130.590599998831749, 254725.260899998247623 ], [ 366128.1537000015378, 254727.35190000012517 ], [ 366110.249399997293949, 254746.625999998301268 ], [ 366102.895499996840954, 254757.964800000190735 ], [ 366101.272100001573563, 254759.218100000172853 ], [ 366094.713699996471405, 254771.829999998211861 ], [ 366095.485799998044968, 254775.847100000828505 ], [ 366097.899400003254414, 254776.500199999660254 ], [ 366123.699600003659725, 254776.922400001436472 ], [ 366153.51690000295639, 254779.066300000995398 ], [ 366164.623000003397465, 254705.907699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87015218000001, "LATITUDE": 18.32170281, "OBJECTID_1": 38987, "PARCEL_NO_": "107604034600", "Tax_Legal_": "52D-B FRYDENHOJ RED HOOD QTR.", "Name": "JOHNSON, REYNELL R", "Address": "BOX 5682", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.473397562, "SHAPE_Area": 936.16121948800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365261.596600003540516, 254747.045400001108646 ], [ 365224.037000000476837, 254745.65430000051856 ], [ 365224.26410000026226, 254770.81529999896884 ], [ 365232.89580000191927, 254770.848799999803305 ], [ 365257.932700000703335, 254770.945900000631809 ], [ 365260.934399999678135, 254771.127700001001358 ], [ 365263.015799999237061, 254770.965599998831749 ], [ 365261.596600003540516, 254747.045400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704034100", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".63", "LONGITUDE": -64.85170462000001, "LATITUDE": 18.32155471, "OBJECTID_1": 40002, "PARCEL_NO_": "107704034100", "Tax_Legal_": "NAZARETH 9 18 RED HOOK QTR", "Name": "HOSIE, HELGA L. & JOSEPH E", "Address": "PO Box 1641", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 154700, "Improved_V": 545600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.121502808, "SHAPE_Area": 2474.0505677199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367215.892599999904633, 254733.510299999266863 ], [ 367190.988600000739098, 254722.540699999779463 ], [ 367185.268899999558926, 254731.3597999997437 ], [ 367160.694700002670288, 254776.332699999213219 ], [ 367163.891199998557568, 254779.736400000751019 ], [ 367168.703900001943111, 254782.731100000441074 ], [ 367176.74719999730587, 254785.118900001049042 ], [ 367187.218500003218651, 254786.471200000494719 ], [ 367200.934799998998642, 254785.528000000864267 ], [ 367208.207800000905991, 254783.687699999660254 ], [ 367216.299699999392033, 254780.376400001347065 ], [ 367215.892599999904633, 254733.510299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603021000", "MAP": "D9-7131-T002", "PARCEL_NAM": "3-61 REM & 3-62-A", "ACRE": "0.22", "LONGITUDE": -64.88140359000001, "LATITUDE": 18.32159317, "OBJECTID_1": 38585, "PARCEL_NO_": "107603021000", "Tax_Legal_": "3-61 REM.&3-62-A BOVONI No.1&2 FRENCHMAN'S BAY QTR.", "Name": "WEST, JAMES R. & CATHERINE A", "Address": "PO Box 10636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 160200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.15634625499999, "SHAPE_Area": 1024.7316725600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364072.757100000977516, 254722.984000001102686 ], [ 364049.460400000214577, 254712.660799998790026 ], [ 364034.6266999989748, 254750.114000000059605 ], [ 364058.735100001096725, 254759.810600001364946 ], [ 364072.757100000977516, 254722.984000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603054200", "MAP": "D9-3576-T86", "PARCEL_NAM": "17A-6", "ACRE": "0.26", "LONGITUDE": -64.87547113, "LATITUDE": 18.32162825, "OBJECTID_1": 38772, "PARCEL_NO_": "107603054200", "Tax_Legal_": "17A-6 NADIR RED HOOK QTR", "Name": "QUETEL, AMELIA S.", "Address": "PO Box 305932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.61516694100001, "SHAPE_Area": 1223.5352257300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364690.902099996805191, 254762.873599998652935 ], [ 364691.019000001251698, 254749.153499998152256 ], [ 364712.083800002932549, 254737.504700001329184 ], [ 364712.14130000025034, 254730.750100001692772 ], [ 364691.976300001144409, 254731.429499998688698 ], [ 364660.521200001239777, 254732.22749999910593 ], [ 364661.050499998033047, 254764.740200001746416 ], [ 364690.902099996805191, 254762.873599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603031000", "MAP": "A9-78-T67", "PARCEL_NAM": "33-15", "ACRE": "0.11", "LONGITUDE": -64.87997571, "LATITUDE": 18.32166985, "OBJECTID_1": 38632, "PARCEL_NO_": "107603031000", "Tax_Legal_": "NADIR 33-15 RED HOOK QTR", "Name": "CHINNERY, INGRID & OTHERS", "Address": "720 Lenox Ave", "City": "New York", "State": "New York", "Zip": 10039, "Country": "United States", "Land_Value": 13200, "Improved_V": 107600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.125456041199996, "SHAPE_Area": 433.17805010500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364224.070500001311302, 254756.308600001037121 ], [ 364197.678000003099442, 254730.761399999260902 ], [ 364186.301500000059605, 254741.011799998581409 ], [ 364215.161499999463558, 254760.879799999296665 ], [ 364218.404799997806549, 254758.795400001108646 ], [ 364224.070500001311302, 254756.308600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603010600", "MAP": "F9-145-T57", "PARCEL_NAM": "3-77", "ACRE": "0.22", "LONGITUDE": -64.8821563, "LATITUDE": 18.32161895, "OBJECTID_1": 38532, "PARCEL_NO_": "107603010600", "Tax_Legal_": "3-77 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "RAWLINS, JOSEPH", "Address": "7103 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022504, "Country": "United States", "Land_Value": 26300, "Improved_V": 115800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.369682774, "SHAPE_Area": 748.062733858 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363990.475500002503395, 254726.743500001728535 ], [ 363970.387800000607967, 254718.346400000154972 ], [ 363958.016199998557568, 254750.753600001335144 ], [ 363978.107500001788139, 254758.728500001132488 ], [ 363990.475500002503395, 254726.743500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87047686, "LATITUDE": 18.32164412, "OBJECTID_1": 38989, "PARCEL_NO_": "107604034800", "Tax_Legal_": "52DA FRYDENHOJ NO.3 RED HOOK QTR.", "Name": "TYSON, LYDIA N.", "Address": "PO Box 305347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.19659820699999, "SHAPE_Area": 1294.6496139799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365223.969200000166893, 254738.138399999588728 ], [ 365223.759400002658367, 254714.893199998885393 ], [ 365223.511699996888638, 254715.190900001674891 ], [ 365181.833200000226498, 254765.285799998790026 ], [ 365180.795800000429153, 254766.532699998468161 ], [ 365185.221900001168251, 254770.663899999111891 ], [ 365200.777999997138977, 254770.724199999123812 ], [ 365222.304300002753735, 254770.807700000703335 ], [ 365224.26410000026226, 254770.81529999896884 ], [ 365223.969200000166893, 254738.138399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85945269, "LATITUDE": 18.32150421, "OBJECTID_1": 39751, "PARCEL_NO_": "107703031200", "Tax_Legal_": "NAZARETH ESTATE 2V-10A RED HOOK QTR", "Name": "VILLANUEVA, GLORIA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41600, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.33213913700001, "SHAPE_Area": 2075.16558639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366404.79619999974966, 254720.539099998772144 ], [ 366382.215899996459484, 254720.776399999856949 ], [ 366366.921099998056889, 254717.695900000631809 ], [ 366346.38570000231266, 254761.857500001788139 ], [ 366364.795999996364117, 254777.840199999511242 ], [ 366377.700599998235703, 254777.523600000888109 ], [ 366399.846799999475479, 254733.586300000548363 ], [ 366404.79619999974966, 254720.539099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85917887, "LATITUDE": 18.32162213, "OBJECTID_1": 39752, "PARCEL_NO_": "107703031300", "Tax_Legal_": "NAZARETH ESTATE 2V-10A&10CA RED HOOK QTR", "Name": "SMITH, ELOISE & LEWIS, ANTONIO", "Address": "2V-10B ESTATE NAZARETH", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41600, "Improved_V": 230800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.69141774400001, "SHAPE_Area": 1231.8769565299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366377.700599998235703, 254777.523600000888109 ], [ 366423.685599997639656, 254774.944699998944998 ], [ 366417.504799999296665, 254743.230099998414516 ], [ 366399.846799999475479, 254733.586300000548363 ], [ 366377.700599998235703, 254777.523600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603053500", "MAP": "D9-3576-T86", "PARCEL_NAM": "17A", "ACRE": "0.23", "LONGITUDE": -64.87516663, "LATITUDE": 18.32164468, "OBJECTID_1": 38768, "PARCEL_NO_": "107603053500", "Tax_Legal_": "17A NADIR-INC. 7A-5 & PART OF 17A-6", "Name": "QUETEL, ROBERT & ANNETTE", "Address": "PO Box 305932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29800, "Improved_V": 77900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.71734504099999, "SHAPE_Area": 906.862930076 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364723.433300003409386, 254730.420400001108646 ], [ 364712.14130000025034, 254730.750100001692772 ], [ 364712.083800002932549, 254737.504700001329184 ], [ 364691.019000001251698, 254749.153499998152256 ], [ 364690.902099996805191, 254762.873599998652935 ], [ 364694.129100002348423, 254762.688900001347065 ], [ 364704.616599999368191, 254762.141499999910593 ], [ 364717.548199996352196, 254758.658700000494719 ], [ 364728.863499999046326, 254755.58500000089407 ], [ 364731.282399997115135, 254755.604800000786781 ], [ 364730.691899999976158, 254730.268699999898672 ], [ 364723.433300003409386, 254730.420400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035600", "MAP": "A9-78-T67", "PARCEL_NAM": "33-57", "ACRE": "0.09", "LONGITUDE": -64.87909742, "LATITUDE": 18.32171173, "OBJECTID_1": 38678, "PARCEL_NO_": "107603035600", "Tax_Legal_": "NADIR 33-57 RED HOOK QTR", "Name": "ACOSTA, HIPOLITE & OTHERS", "Address": "7115 Nadir Homes 33-57 Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 73900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.952327171199997, "SHAPE_Area": 460.49586582900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364315.250399999320507, 254749.24439999833703 ], [ 364286.302299998700619, 254739.719399999827147 ], [ 364283.802400000393391, 254749.198100000619888 ], [ 364282.909800000488758, 254759.323300000280142 ], [ 364312.743299998342991, 254759.567499998956919 ], [ 364314.429700002074242, 254750.926399998366833 ], [ 364315.250399999320507, 254749.24439999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703012200", "MAP": "G9-658-T62", "PARCEL_NAM": "41-1-2", "ACRE": ".46", "LONGITUDE": -64.8623913, "LATITUDE": 18.32155847, "OBJECTID_1": 39616, "PARCEL_NO_": "107703012200", "Tax_Legal_": "FRYDENHOJ ESTATE 41-1-2 RED HOOK QTR", "Name": "NOEL U. BOYNES, SR & BERNICE C BOYNES JOINT LIVING", "Address": "PO Box 165", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 52400, "Improved_V": 131600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.48766771699999, "SHAPE_Area": 2133.3720680900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366090.754100002348423, 254759.712799999862909 ], [ 366087.019199997186661, 254728.493000000715256 ], [ 366038.580200001597404, 254728.270100001245737 ], [ 366038.371899999678135, 254769.931600000709295 ], [ 366050.096699997782707, 254770.441399998962879 ], [ 366071.300999999046326, 254772.130199998617172 ], [ 366081.45160000026226, 254772.459800001233816 ], [ 366090.754100002348423, 254759.712799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87196012, "LATITUDE": 18.32155772, "OBJECTID_1": 38871, "PARCEL_NO_": "107604011800", "Tax_Legal_": "16-I NADIR RED HOOK QTR.", "Name": "DOOBAY, HAIMNARINE", "Address": "PO Box 483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040483, "Country": "United States", "Land_Value": 28500, "Improved_V": 32300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.885120089, "SHAPE_Area": 1320.55311525 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365085.464000001549721, 254733.805599998682737 ], [ 365071.058300003409386, 254721.022100001573563 ], [ 365018.473499998450279, 254741.067800000309944 ], [ 365041.666000001132488, 254763.633499998599291 ], [ 365085.464000001549721, 254733.805599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85899234, "LATITUDE": 18.32144906, "OBJECTID_1": 39753, "PARCEL_NO_": "107703031400", "Tax_Legal_": "NAZARETH ESTATE 2V-10C RED HOOK QTR", "Name": "BALY, BERTRAND & DORIS", "Address": "PO Box 8836", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37500, "Improved_V": 159600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.59731926699999, "SHAPE_Area": 1143.0263913199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366399.846799999475479, 254733.586300000548363 ], [ 366417.504799999296665, 254743.230099998414516 ], [ 366423.685599997639656, 254774.944699998944998 ], [ 366432.560400001704693, 254774.384100001305342 ], [ 366435.222099997103214, 254745.90819999948144 ], [ 366437.858599998056889, 254720.387499999254942 ], [ 366404.79619999974966, 254720.539099998772144 ], [ 366399.846799999475479, 254733.586300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86282158, "LATITUDE": 18.32155371, "OBJECTID_1": 39615, "PARCEL_NO_": "107703012100", "Tax_Legal_": "FRYDENHOJ ESTATE 41-5-1 RED HOOK QTR", "Name": "GEORGE, MONA", "Address": "9153 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.96986360099999, "SHAPE_Area": 1684.7470842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366038.371899999678135, 254769.931600000709295 ], [ 366038.580200001597404, 254728.270100001245737 ], [ 366028.156599998474121, 254728.222199998795986 ], [ 366020.899800002574921, 254728.162799999117851 ], [ 365997.514899998903275, 254728.182500001043081 ], [ 365997.965199999511242, 254769.982700001448393 ], [ 366010.596799999475479, 254769.221700001507998 ], [ 366028.986299999058247, 254769.596999999135733 ], [ 366034.99099999666214, 254769.784600000828505 ], [ 366038.371899999678135, 254769.931600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703031700", "MAP": "D9-448-T64", "PARCEL_NAM": "REM 2V-10", "ACRE": "0.36", "LONGITUDE": -64.85860943, "LATITUDE": 18.32160325, "OBJECTID_1": 39755, "PARCEL_NO_": "107703031700", "Tax_Legal_": "NAZARETH 2V-10 RED HOOK QTR", "Name": "SERRANO, NILSA E. & GORDON, ELTON", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 53500, "Improved_V": 175400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.515241675, "SHAPE_Area": 1762.58748511 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366432.560400001704693, 254774.384100001305342 ], [ 366478.538199998438358, 254772.649399999529123 ], [ 366492.59009999781847, 254772.764400001615286 ], [ 366490.209399998188019, 254744.402899999171495 ], [ 366488.846600003540516, 254739.227299999445677 ], [ 366435.222099997103214, 254745.90819999948144 ], [ 366432.560400001704693, 254774.384100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704034200", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".45", "LONGITUDE": -64.85132282, "LATITUDE": 18.32145859, "OBJECTID_1": 40003, "PARCEL_NO_": "107704034200", "Tax_Legal_": "9-17 NAZARETH No.1 RED HOOK QTR.", "Name": "NOEL TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95300, "Improved_V": 589800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.70493955399999, "SHAPE_Area": 1610.7567069700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367253.551899999380112, 254761.682900000363588 ], [ 367249.885399997234344, 254718.800900001078844 ], [ 367215.892599999904633, 254733.510299999266863 ], [ 367216.299699999392033, 254780.376400001347065 ], [ 367245.463600002229214, 254764.572000000625849 ], [ 367253.551899999380112, 254761.682900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86320833000001, "LATITUDE": 18.32155767, "OBJECTID_1": 39614, "PARCEL_NO_": "107703012000", "Tax_Legal_": "FRYDENHOJ ESTATE 41-5-4 RED HOOK", "Name": "CLYDE E. KNIGHT REVOCABLE TRUST", "Address": "PO Box 6544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57500, "Improved_V": 170100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.054076047, "SHAPE_Area": 1717.6473028 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365997.514899998903275, 254728.182500001043081 ], [ 365975.744499996304512, 254728.004299998283386 ], [ 365956.39299999922514, 254727.846000000834465 ], [ 365956.850400000810623, 254768.80180000141263 ], [ 365968.936099998652935, 254769.956199999898672 ], [ 365997.965199999511242, 254769.982700001448393 ], [ 365997.514899998903275, 254728.182500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603031100", "MAP": "A9-78-T67", "PARCEL_NAM": "33-14", "ACRE": "0.10", "LONGITUDE": -64.87989366, "LATITUDE": 18.3215672, "OBJECTID_1": 38633, "PARCEL_NO_": "107603031100", "Tax_Legal_": "NADIR 33-14 RED HOOK QTR", "Name": "CHARLES, LAWRENCE & JOYCE", "Address": "33-14 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 99500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.966428638, "SHAPE_Area": 513.09036854800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364225.135799996554852, 254725.919900000095367 ], [ 364200.174300000071526, 254721.704799998551607 ], [ 364197.678000003099442, 254730.761399999260902 ], [ 364224.070500001311302, 254756.308600001037121 ], [ 364223.424300000071526, 254737.515999998897314 ], [ 364225.135799996554852, 254725.919900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87322181, "LATITUDE": 18.32149835, "OBJECTID_1": 38863, "PARCEL_NO_": "107604011000", "Tax_Legal_": "16 E ESTATE NADIR RED HOOK QUARTER", "Name": "RABSATT, JOSEPH & JUANITA", "Address": "PO Box 10627", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42800, "Improved_V": 149200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.48699756799999, "SHAPE_Area": 1265.1535744600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364908.276699997484684, 254708.712900001555681 ], [ 364898.507399998605251, 254719.6097999997437 ], [ 364908.033900000154972, 254737.208599999547005 ], [ 364907.117899999022484, 254750.077799998223782 ], [ 364921.550599999725819, 254759.695099998265505 ], [ 364924.765100002288818, 254760.988000001758337 ], [ 364932.109999999403954, 254750.704500000923872 ], [ 364939.418999999761581, 254744.642599999904633 ], [ 364922.790299996733665, 254708.831700000911951 ], [ 364908.276699997484684, 254708.712900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86357771, "LATITUDE": 18.32153598, "OBJECTID_1": 39613, "PARCEL_NO_": "107703011900", "Tax_Legal_": "FRYDENHOJ ESTATE 41-5-3\nRED HOOK QTR", "Name": "CALVARY PROPERTIES LLC", "Address": "PO Box 491", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 52700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.06593765900001, "SHAPE_Area": 1430.16735208 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365956.39299999922514, 254727.846000000834465 ], [ 365914.462899997830391, 254727.713899999856949 ], [ 365923.037399999797344, 254762.403400000184774 ], [ 365939.937600001692772, 254766.341400001198053 ], [ 365956.850400000810623, 254768.80180000141263 ], [ 365956.39299999922514, 254727.846000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87342608, "LATITUDE": 18.32156793, "OBJECTID_1": 38862, "PARCEL_NO_": "107604010900", "Tax_Legal_": "16C NADIR RED HOOK QTR", "Name": "FAHIE, ELVIN", "Address": "7473 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24600, "Improved_V": 32300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.12424279299999, "SHAPE_Area": 530.45102763099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364898.507399998605251, 254719.6097999997437 ], [ 364892.001199997961521, 254726.100499998778105 ], [ 364885.264700002968311, 254759.609200000762939 ], [ 364907.117899999022484, 254750.077799998223782 ], [ 364908.033900000154972, 254737.208599999547005 ], [ 364898.507399998605251, 254719.6097999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604011100", "MAP": "D9-3176-T85", "PARCEL_NAM": "16G", "ACRE": "0.35", "LONGITUDE": -64.87252964, "LATITUDE": 18.32151492, "OBJECTID_1": 38864, "PARCEL_NO_": "107604011100", "Tax_Legal_": "16G ESTATE NADIR RED HOOK QTR", "Name": "MAHONEY, RITA", "Address": "PO Box 12084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48800, "Improved_V": 15600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.64111442800001, "SHAPE_Area": 1252.5557080799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365018.473499998450279, 254741.067800000309944 ], [ 364984.075400002300739, 254708.699999999254942 ], [ 364966.88570000231266, 254738.745700001716614 ], [ 364975.728200003504753, 254741.984499998390675 ], [ 364983.746399998664856, 254747.327500000596046 ], [ 364995.729599997401237, 254760.513300001621246 ], [ 365018.473499998450279, 254741.067800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703031800", "MAP": "D9-448-T64", "PARCEL_NAM": "REM 2V-11", "ACRE": "0.30", "LONGITUDE": -64.85814812, "LATITUDE": 18.32159137, "OBJECTID_1": 39756, "PARCEL_NO_": "107703031800", "Tax_Legal_": "NAZARETH ESTATE 2V-11 RED HOOK QTR", "Name": "CASIMIR, THOMAS & VERONICA", "Address": "6217 EST. FRYDENHOJ 127-3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.20316435800001, "SHAPE_Area": 1385.0578472899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366513.969899997115135, 254740.902199998497963 ], [ 366488.846600003540516, 254739.227299999445677 ], [ 366490.209399998188019, 254744.402899999171495 ], [ 366492.59009999781847, 254772.764400001615286 ], [ 366506.759099997580051, 254772.880399998277426 ], [ 366531.72240000218153, 254776.884399998933077 ], [ 366534.068599998950958, 254743.470300000160933 ], [ 366525.02419999986887, 254742.24210000038147 ], [ 366513.969899997115135, 254740.902199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603010500", "MAP": "F9-930-T62", "PARCEL_NAM": "3-78", "ACRE": "0.22", "LONGITUDE": -64.88240917, "LATITUDE": 18.32151438, "OBJECTID_1": 38531, "PARCEL_NO_": "107603010500", "Tax_Legal_": "78 OF 3 BOVONI FRENCHMAN'S BAY QTR", "Name": "INDUSTRIOUS, GERARD", "Address": "BOX 1874", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.86243574, "SHAPE_Area": 804.84912420600006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363930.453199997544289, 254737.790800001472235 ], [ 363952.967299997806549, 254746.828699998557568 ], [ 363964.763400003314018, 254715.978399999439716 ], [ 363942.263999998569489, 254706.717199999839067 ], [ 363930.453199997544289, 254737.790800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704034000", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".41", "LONGITUDE": -64.85197362, "LATITUDE": 18.32137571, "OBJECTID_1": 40001, "PARCEL_NO_": "107704034000", "Tax_Legal_": "9-19 NAZARETH 1 RED HOOK QTR", "Name": "JOSEPH, SHIRLEY J.", "Address": "PO Box 430", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 88800, "Improved_V": 447400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.27517585199999, "SHAPE_Area": 1493.82431077 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367154.790899999439716, 254712.111900001764297 ], [ 367150.669399999082088, 254722.63289999961853 ], [ 367148.975900001823902, 254732.118200000375509 ], [ 367149.647299997508526, 254747.955800000578165 ], [ 367152.7449000030756, 254762.968800000846386 ], [ 367155.9054000005126, 254770.594000000506639 ], [ 367160.694700002670288, 254776.332699999213219 ], [ 367185.268899999558926, 254731.3597999997437 ], [ 367190.988600000739098, 254722.540699999779463 ], [ 367154.790899999439716, 254712.111900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803010500", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".63", "LONGITUDE": -64.84901453000001, "LATITUDE": 18.32145319, "OBJECTID_1": 40162, "PARCEL_NO_": "107803010500", "Tax_Legal_": "NAZARETH 9-38 RED HOOK QTR", "Name": "BRYAN, GREGORY R", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.50897214899999, "SHAPE_Area": 2099.8482954599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367512.507700003683567, 254748.60359999909997 ], [ 367472.436599999666214, 254719.566899999976158 ], [ 367452.063000001013279, 254744.7314000017941 ], [ 367444.728900000452995, 254753.748399998992682 ], [ 367474.352099999785423, 254778.688799999654293 ], [ 367476.790799997746944, 254776.386700000613928 ], [ 367492.987199999392033, 254768.28660000115633 ], [ 367497.045699998736382, 254765.153400000184774 ], [ 367505.987099997699261, 254756.782800000160933 ], [ 367512.507700003683567, 254748.60359999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019700", "MAP": "F9-3943-T57", "PARCEL_NAM": "3-60", "ACRE": "1.76", "LONGITUDE": -64.88159549, "LATITUDE": 18.32151716, "OBJECTID_1": 38573, "PARCEL_NO_": "107603019700", "Tax_Legal_": "3-60,67,68,69,76,98,& 100&104 BOVONI (EASTERN) 1 & 2 FRENCHMANS BAY QUARTER", "Name": "LIMA, AGUSTIN J.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.21196972600001, "SHAPE_Area": 739.29430778200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364049.460400000214577, 254712.660799998790026 ], [ 364035.803400002419949, 254706.638399999588728 ], [ 364033.38629999756813, 254706.407499998807907 ], [ 364031.764700002968311, 254707.449700001627207 ], [ 364017.7516999989748, 254743.220899999141693 ], [ 364034.6266999989748, 254750.114000000059605 ], [ 364049.460400000214577, 254712.660799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052800", "MAP": null, "PARCEL_NAM": "17A-3", "ACRE": null, "LONGITUDE": -64.87483582, "LATITUDE": 18.32159082, "OBJECTID_1": 38761, "PARCEL_NO_": "107603052800", "Tax_Legal_": "17A-3 NADIR RED HOOK QTR", "Name": "MATTHIAS, COURTNEY AND JUTA", "Address": "PO Box 7694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.776857052, "SHAPE_Area": 870.52647545499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364757.888999998569489, 254756.033599998801947 ], [ 364762.796999998390675, 254747.841099999845028 ], [ 364770.210199996829033, 254729.536699999123812 ], [ 364730.691899999976158, 254730.268699999898672 ], [ 364731.282399997115135, 254755.604800000786781 ], [ 364757.888999998569489, 254756.033599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86932436, "LATITUDE": 18.32161508, "OBJECTID_1": 39005, "PARCEL_NO_": "107604041000", "Tax_Legal_": "74BG ESTATE FRYDENHOJ RED HOOK", "Name": "WARNER, HYACINTH, AUBREY & DAUWALD", "Address": "6137 Est Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 74300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.636213983299996, "SHAPE_Area": 319.90588902399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365343.390500001609325, 254746.893500000238419 ], [ 365320.066799998283386, 254739.7364999987185 ], [ 365319.235299997031689, 254742.684999998658895 ], [ 365317.54169999808073, 254752.170400001108646 ], [ 365341.666400000452995, 254759.967199999839067 ], [ 365343.390500001609325, 254746.893500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85542036, "LATITUDE": 18.32114458, "OBJECTID_1": 39788, "PARCEL_NO_": "107704012800", "Tax_Legal_": "NAZARETH ESTATE 2-OA RED HOOK QTR", "Name": "SCOTLAND, SKELFORD & HERMINA", "Address": "PO Box 11877", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 126600, "Improved_V": 74500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.93659878199998, "SHAPE_Area": 3681.942692 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366826.292599998414516, 254748.05350000038743 ], [ 366821.024300001561642, 254703.891800001263618 ], [ 366815.712700001895428, 254664.796000000089407 ], [ 366772.146700002253056, 254667.394799999892712 ], [ 366780.670900002121925, 254707.994500000029802 ], [ 366786.8462999984622, 254740.342300001531839 ], [ 366791.843000002205372, 254765.26969999819994 ], [ 366792.0962999984622, 254765.047100000083447 ], [ 366826.292599998414516, 254748.05350000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035500", "MAP": "A9-78-T67", "PARCEL_NAM": "33-56", "ACRE": "0.09", "LONGITUDE": -64.87903896, "LATITUDE": 18.32157425, "OBJECTID_1": 38677, "PARCEL_NO_": "107603035500", "Tax_Legal_": "33-56, 33-104 & 33-112 NADIR NO.2 RED HOOK QTR", "Name": "DUNLOP, PATRICK,DERESE A. DUNLOP-HARLEY", "Address": "PO Box 7143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 79500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.068402524800007, "SHAPE_Area": 458.38766488099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364286.615000002086163, 254738.6875 ], [ 364315.837899997830391, 254748.077399998903275 ], [ 364321.812399998307228, 254736.210299998521805 ], [ 364293.693899996578693, 254723.947900000959635 ], [ 364290.421899996697903, 254729.409499999135733 ], [ 364288.780500002205372, 254732.773600000888109 ], [ 364287.131899997591972, 254736.981899999082088 ], [ 364286.615000002086163, 254738.6875 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107703011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86400177, "LATITUDE": 18.32144138, "OBJECTID_1": 39612, "PARCEL_NO_": "107703011700", "Tax_Legal_": "41-5-2 FRYDENHOJ No.3 RED HOOK QTR.", "Name": "GEORGE D. & JACKLIN I. ROGERS LIV TRST.", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.044247549, "SHAPE_Area": 2146.1440084400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365914.462899997830391, 254727.713899999856949 ], [ 365909.786899998784065, 254708.677200000733137 ], [ 365889.589500002563, 254713.155900001525879 ], [ 365865.375, 254715.913100000470877 ], [ 365869.095399998128414, 254752.462699998170137 ], [ 365898.090300001204014, 254756.499699998646975 ], [ 365923.037399999797344, 254762.403400000184774 ], [ 365914.462899997830391, 254727.713899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87941553, "LATITUDE": 18.32161935, "OBJECTID_1": 38662, "PARCEL_NO_": "107603034000", "Tax_Legal_": "33-41 NADIR RED HOOK QTR", "Name": "JARVIS, R.A", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9600, "Improved_V": 55900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.205658221899995, "SHAPE_Area": 227.736129269 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364276.626500003039837, 254739.6402000002563 ], [ 364255.718099996447563, 254732.925200000405312 ], [ 364252.384999997913837, 254745.563499998301268 ], [ 364274.950900003314018, 254747.014699999243021 ], [ 364276.626500003039837, 254739.6402000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87960703, "LATITUDE": 18.32159358, "OBJECTID_1": 38657, "PARCEL_NO_": "107603033500", "Tax_Legal_": "NADIR 33-36 RED HOOK QTR", "Name": "RAMON, J & CORTIJO, ANN M", "Address": "7160 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 91600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.867481795299994, "SHAPE_Area": 271.13914507800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364255.718099996447563, 254732.925200000405312 ], [ 364233.159400001168251, 254730.629599999636412 ], [ 364233.850599996745586, 254744.145199999213219 ], [ 364252.384999997913837, 254745.563499998301268 ], [ 364255.718099996447563, 254732.925200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604031000", "MAP": null, "PARCEL_NAM": "52N", "ACRE": null, "LONGITUDE": -64.8697297, "LATITUDE": 18.32127685, "OBJECTID_1": 38952, "PARCEL_NO_": "107604031000", "Tax_Legal_": "52N FRYDENHOJ RED HOOK QTR", "Name": "THOMAS, VIVECA", "Address": "8 A", "City": "New York", "State": "New York", "Zip": 10009, "Country": "United States", "Land_Value": 107900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.603374428, "SHAPE_Area": 3010.3760792899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365269.953100003302097, 254753.680700000375509 ], [ 365311.116400003433228, 254749.162500001490116 ], [ 365311.136200003325939, 254746.840599998831749 ], [ 365300.511399999260902, 254668.860100001096725 ], [ 365295.693300001323223, 254666.498599998652935 ], [ 365283.612999998033047, 254664.710999999195337 ], [ 365280.3733000010252, 254666.3733000010252 ], [ 365271.415799997746944, 254676.643500000238419 ], [ 365269.763599999248981, 254681.274099998176098 ], [ 365269.953100003302097, 254753.680700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85975836, "LATITUDE": 18.32137488, "OBJECTID_1": 39748, "PARCEL_NO_": "107703030900", "Tax_Legal_": "NAZARETH ESTATE 2V-9B 1 RED HOOK QTR", "Name": "CHRISTOPHER, MITCHEL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.638713782, "SHAPE_Area": 1544.3775346800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366324.21169999986887, 254714.391100000590086 ], [ 366323.884400002658367, 254752.807399999350309 ], [ 366330.334899999201298, 254752.860199999064207 ], [ 366335.162000000476837, 254754.166299998760223 ], [ 366339.980099998414516, 254756.527800001204014 ], [ 366346.38570000231266, 254761.857500001788139 ], [ 366366.921099998056889, 254717.695900000631809 ], [ 366354.075800001621246, 254711.046900000423193 ], [ 366345.220799997448921, 254709.285700000822544 ], [ 366337.962200000882149, 254709.437399998307228 ], [ 366324.21169999986887, 254714.391100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704034400", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".44", "LONGITUDE": -64.85031489000001, "LATITUDE": 18.32148206, "OBJECTID_1": 40005, "PARCEL_NO_": "107704034400", "Tax_Legal_": "NAZARETH 9-15 RED HOOK QTR. 1", "Name": "VANASSCHE, NICHOLAS P.", "Address": "5328 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.593704761, "SHAPE_Area": 1805.5584081100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367381.834700003266335, 254753.444699998944998 ], [ 367348.11710000038147, 254735.859099999070168 ], [ 367303.737499997019768, 254739.295499999076128 ], [ 367307.605400003492832, 254758.536699999123812 ], [ 367313.238799996674061, 254759.849399998784065 ], [ 367323.679499998688698, 254764.78999999910593 ], [ 367337.35809999704361, 254768.279399998486042 ], [ 367349.447400003671646, 254769.011599998921156 ], [ 367359.945600003004074, 254767.197700001299381 ], [ 367370.465400002896786, 254762.85080000013113 ], [ 367376.141999997198582, 254759.097600001841784 ], [ 367381.834700003266335, 254753.444699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604045100", "MAP": "D9-9259-T018", "PARCEL_NAM": "12S-1", "ACRE": "0.23", "LONGITUDE": -64.86841146, "LATITUDE": 18.32128329, "OBJECTID_1": 39045, "PARCEL_NO_": "107604045100", "Tax_Legal_": "12S-1 FRYDENJOJ NO.3 RED HOOK QTR", "Name": "ROGERS, JOSEPH & OTHERS", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 298700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.86380391200001, "SHAPE_Area": 1032.1609369600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365404.884300000965595, 254697.619899999350309 ], [ 365430.675599999725819, 254742.370299998670816 ], [ 365445.225000001490116, 254719.651500001549721 ], [ 365448.950300000607967, 254713.734999999403954 ], [ 365422.138800002634525, 254692.452799998223782 ], [ 365417.221699997782707, 254693.879999998956919 ], [ 365404.884300000965595, 254697.619899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8601042, "LATITUDE": 18.32142042, "OBJECTID_1": 39746, "PARCEL_NO_": "107703030700", "Tax_Legal_": "NAZARETH ESTATE 2V-8B RED HOOK QTR", "Name": "PENHA, LEOPOLD JR & Y", "Address": "PO Box 1464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.65210688900001, "SHAPE_Area": 1291.0199462800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366324.21169999986887, 254714.391100000590086 ], [ 366281.347699999809265, 254729.239000000059605 ], [ 366273.239600002765656, 254734.449999999254942 ], [ 366310.126800000667572, 254758.605399999767542 ], [ 366315.803300000727177, 254754.852200001478195 ], [ 366323.884400002658367, 254752.807399999350309 ], [ 366324.21169999986887, 254714.391100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87083091, "LATITUDE": 18.32143851, "OBJECTID_1": 38959, "PARCEL_NO_": "107604031500", "Tax_Legal_": "2F FRYDENHOJ RED HOOK QTR", "Name": "PENN, ROSIE M. & SHERILL L", "Address": "PO Box 7261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51300, "Improved_V": 85100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.07532455899999, "SHAPE_Area": 1936.4113053900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365206.547499999403954, 254718.753499999642372 ], [ 365130.001800000667572, 254711.794199999421835 ], [ 365131.576700001955032, 254716.240100000053644 ], [ 365133.176700003445148, 254717.730799999088049 ], [ 365136.346199996769428, 254724.300700001418591 ], [ 365137.899499997496605, 254731.279500000178814 ], [ 365137.847300000488758, 254737.400699999183416 ], [ 365191.791199997067451, 254747.130399998277426 ], [ 365196.275200001895428, 254747.927499998360872 ], [ 365209.655599996447563, 254731.845100000500679 ], [ 365208.883799999952316, 254728.482900001108646 ], [ 365206.547499999403954, 254718.753499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86444833, "LATITUDE": 18.32144822, "OBJECTID_1": 39611, "PARCEL_NO_": "107703011600", "Tax_Legal_": "FRYDENHOJ ESTATE 41-5-1 3 RED HOOK QTR", "Name": "RICHARDSON, DIANE PATRICIA", "Address": "PO Box 502623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 41100, "Improved_V": 87200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.36688933100001, "SHAPE_Area": 1414.17006079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365865.375, 254715.913100000470877 ], [ 365840.350500002503395, 254719.085700001567602 ], [ 365834.691899999976158, 254720.728199999779463 ], [ 365830.640600003302097, 254723.017000000923872 ], [ 365823.31360000371933, 254731.189699999988079 ], [ 365821.666799999773502, 254735.186999998986721 ], [ 365820.831799998879433, 254738.557700000703335 ], [ 365820.768799997866154, 254745.94539999961853 ], [ 365821.559000000357628, 254747.851799998432398 ], [ 365823.958099998533726, 254750.193399999290705 ], [ 365826.371699996292591, 254750.846500001847744 ], [ 365844.918600000441074, 254750.787200000137091 ], [ 365869.095399998128414, 254752.462699998170137 ], [ 365865.375, 254715.913100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603021600", "MAP": "D9-3737-T86", "PARCEL_NAM": "3-46", "ACRE": null, "LONGITUDE": -64.88069932000001, "LATITUDE": 18.32142252, "OBJECTID_1": 38589, "PARCEL_NO_": "107603021600", "Tax_Legal_": "3-46 BOVONI FRENCHMAN BAY QTR.", "Name": "FERGUS, RICHARD", "Address": "PO Box 10916", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33800, "Improved_V": 164800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.269095225, "SHAPE_Area": 726.36202683700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364125.386799998581409, 254697.661299999803305 ], [ 364113.011600002646446, 254730.490600001066923 ], [ 364114.606299996376038, 254732.614599999040365 ], [ 364132.300200000405312, 254738.036800000816584 ], [ 364143.872699998319149, 254704.7787000015378 ], [ 364125.386799998581409, 254697.661299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8470361, "LATITUDE": 18.32134816, "OBJECTID_1": 40189, "PARCEL_NO_": "107803013300", "Tax_Legal_": "9-62 ESTATE NAZARETH RED HOOK QUARTER", "Name": "HARRIGAN, KIM & KERRY", "Address": "PO BOX 1168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 108200, "Improved_V": 462100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.791753876, "SHAPE_Area": 1944.36128136 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367723.025399997830391, 254742.093899998813868 ], [ 367703.914800003170967, 254713.651000000536442 ], [ 367652.089699998497963, 254739.191300000995398 ], [ 367667.17400000244379, 254766.967999998480082 ], [ 367723.025399997830391, 254742.093899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87290504000001, "LATITUDE": 18.32139891, "OBJECTID_1": 38865, "PARCEL_NO_": "107604011200", "Tax_Legal_": "16-F ESTATE NADIR REDHOOK QTR.", "Name": "ESTRADA, ANN MARIE,WARREN JR.,ARKIM,AKILAH & RAKIM", "Address": "PO Box 11396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.24065232800001, "SHAPE_Area": 1411.9542687400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364984.075400002300739, 254708.699999999254942 ], [ 364938.918300002813339, 254708.752599999308586 ], [ 364922.790299996733665, 254708.831700000911951 ], [ 364939.418999999761581, 254744.642599999904633 ], [ 364941.848700001835823, 254743.396000001579523 ], [ 364952.372100003063679, 254738.626899998635054 ], [ 364961.246899999678135, 254738.066300000995398 ], [ 364966.88570000231266, 254738.745700001716614 ], [ 364984.075400002300739, 254708.699999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024400", "MAP": "D9-8043-T007", "PARCEL_NAM": "3-59", "ACRE": ".22", "LONGITUDE": -64.88181412, "LATITUDE": 18.32135704, "OBJECTID_1": 38612, "PARCEL_NO_": "107603024400", "Tax_Legal_": "3-59 BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "TURNBULL, ALMIRA", "Address": "PO Box 304803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.166616304, "SHAPE_Area": 1171.6189498799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364031.084200002253056, 254692.667599998414516 ], [ 364006.965000003576279, 254684.23759999871254 ], [ 363990.475500002503395, 254726.743500001728535 ], [ 364013.779399998486042, 254736.222300000488758 ], [ 364031.084200002253056, 254692.667599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704050300", "MAP": "A9-314-T85", "PARCEL_NAM": null, "ACRE": ".56", "LONGITUDE": -64.85444097, "LATITUDE": 18.32129086, "OBJECTID_1": 40033, "PARCEL_NO_": "107704050300", "Tax_Legal_": "9M-3 EST NARARETH RED HOOK QTR", "Name": "RHYMER, VANLEY & JANICE A", "Address": "PO Box 10417", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75400, "Improved_V": 138400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.08988905800001, "SHAPE_Area": 2593.2793893799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366943.396700002253056, 254726.847100000828505 ], [ 366914.649999998509884, 254693.681200001388788 ], [ 366865.972800001502037, 254728.324299998581409 ], [ 366889.895999997854233, 254759.761999998241663 ], [ 366901.232900001108646, 254754.155299998819828 ], [ 366915.827500000596046, 254744.775499999523163 ], [ 366923.926600001752377, 254740.619899999350309 ], [ 366943.396700002253056, 254726.847100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86929325, "LATITUDE": 18.32149129, "OBJECTID_1": 39006, "PARCEL_NO_": "107604041100", "Tax_Legal_": "ESTATE FRYDENHOJ 74BF RED HOOK", "Name": "CHINNERY, JOSEPH", "Address": "3102 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.536256768100003, "SHAPE_Area": 378.456176777 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365349.140799999237061, 254734.486000001430511 ], [ 365324.233199998736382, 254723.9386 ], [ 365321.71000000089407, 254736.161400001496077 ], [ 365320.066799998283386, 254739.7364999987185 ], [ 365343.390500001609325, 254746.893500000238419 ], [ 365349.140799999237061, 254734.486000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87934597, "LATITUDE": 18.32147238, "OBJECTID_1": 38663, "PARCEL_NO_": "107603034100", "Tax_Legal_": "33-42 NADIR RED HOOK QTR", "Name": "GOMEZ, WILBERT & VERNA", "Address": "PO Box 9454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11700, "Improved_V": 90300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.630588440899999, "SHAPE_Area": 417.813330732 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364277.450800001621246, 254737.535999998450279 ], [ 364278.282300002872944, 254734.587499998509884 ], [ 364280.749799996614456, 254728.90819999948144 ], [ 364285.666799999773502, 254719.660300001502037 ], [ 364265.571900002658367, 254712.107500001788139 ], [ 364264.152500003576279, 254714.441300000995398 ], [ 364258.966700002551079, 254728.622999999672174 ], [ 364260.130900003015995, 254731.692200001329184 ], [ 364265.384900003671646, 254734.05970000103116 ], [ 364277.450800001621246, 254737.535999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704034300", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".43", "LONGITUDE": -64.85091763, "LATITUDE": 18.32135754, "OBJECTID_1": 40004, "PARCEL_NO_": "107704034300", "Tax_Legal_": "9 16 NAZARETH 1 RED HOOK QTR", "Name": "FRETT, STEPHEN & ROSLYN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 86600, "Improved_V": 236700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.11573809500001, "SHAPE_Area": 2074.82817221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367303.737499997019768, 254739.295499999076128 ], [ 367298.289300002157688, 254716.241700001060963 ], [ 367287.7820999994874, 254719.111000001430511 ], [ 367276.488300003111362, 254719.651900000870228 ], [ 367266.825099997222424, 254718.095100000500679 ], [ 367253.153800003230572, 254713.761399999260902 ], [ 367249.116800002753735, 254714.361600000411272 ], [ 367249.885399997234344, 254718.800900001078844 ], [ 367253.551899999380112, 254761.682900000363588 ], [ 367266.485299997031689, 254757.989000000059605 ], [ 367281.015100002288818, 254756.208099998533726 ], [ 367295.526900000870228, 254756.537999998778105 ], [ 367307.605400003492832, 254758.536699999123812 ], [ 367303.737499997019768, 254739.295499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035400", "MAP": "A9-78-T67", "PARCEL_NAM": "33-55", "ACRE": "0.09", "LONGITUDE": -64.87897538, "LATITUDE": 18.32145895, "OBJECTID_1": 38676, "PARCEL_NO_": "107603035400", "Tax_Legal_": "NADIR 33-55 RED HOOK QTR", "Name": "HENRY, LEROY G.", "Address": "PO BOX 9235", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11700, "Improved_V": 71200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.444858296199996, "SHAPE_Area": 420.75247726200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364321.812399998307228, 254736.210299998521805 ], [ 364323.450199998915195, 254733.268399998545647 ], [ 364328.33839999884367, 254727.397799998521805 ], [ 364302.683799996972084, 254709.878199998289347 ], [ 364293.693899996578693, 254723.947900000959635 ], [ 364321.812399998307228, 254736.210299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704031900", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".42", "LONGITUDE": -64.85243897, "LATITUDE": 18.32134127, "OBJECTID_1": 39987, "PARCEL_NO_": "107704031900", "Tax_Legal_": "9-24 NAZARETH RED HOOK QTR", "Name": "VIRGIN ISLANDS MONTESSORI SCHOOL INC", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79100, "Improved_V": 494200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.259245612, "SHAPE_Area": 1961.3874822099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367143.466499999165535, 254716.241099998354912 ], [ 367092.695799998939037, 254712.659200001507998 ], [ 367093.108300000429153, 254758.892099998891354 ], [ 367140.74549999833107, 254751.682599999010563 ], [ 367140.131599999964237, 254729.090500000864267 ], [ 367141.82150000333786, 254720.027399998158216 ], [ 367143.466499999165535, 254716.241099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87219113, "LATITUDE": 18.32137642, "OBJECTID_1": 38872, "PARCEL_NO_": "107604011900", "Tax_Legal_": "16-H ESTATE NADIR RED HOOK QTR.", "Name": "SIMON, DEAN", "Address": "6007 Estate Frydenhoj 1-45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 70100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.75131964, "SHAPE_Area": 1631.8660326700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365071.058300003409386, 254721.022100001573563 ], [ 365055.840800002217293, 254708.865200001746416 ], [ 365014.717100001871586, 254708.739700000733137 ], [ 364984.075400002300739, 254708.699999999254942 ], [ 365018.473499998450279, 254741.067800000309944 ], [ 365071.058300003409386, 254721.022100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704010200", "MAP": "D9-448-T64", "PARCEL_NAM": "2V-12C", "ACRE": "0.27", "LONGITUDE": -64.85751884, "LATITUDE": 18.32139137, "OBJECTID_1": 39768, "PARCEL_NO_": "107704010200", "Tax_Legal_": "NAZARETH ESTATE 2V-12C RED HOOK QTR", "Name": "JOSEPH, GREGORY & MATHUNA", "Address": "PO Box 8345", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.583686091, "SHAPE_Area": 1234.60390072 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366601.509499996900558, 254725.315499998629093 ], [ 366576.571299999952316, 254718.3564000017941 ], [ 366562.070299997925758, 254716.760000001639128 ], [ 366557.806800000369549, 254743.956199999898672 ], [ 366557.4054000005126, 254746.820099998265505 ], [ 366570.804499998688698, 254750.281500000506639 ], [ 366593.13629999756813, 254755.976199999451637 ], [ 366594.009900003671646, 254753.7516999989748 ], [ 366601.509499996900558, 254725.315499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603054500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87652602, "LATITUDE": 18.32135273, "OBJECTID_1": 38775, "PARCEL_NO_": "107603054500", "Tax_Legal_": "NADIR 6A-2 RED HOOK QTR.", "Name": "DURAN, ANGEL", "Address": "PO Box 10505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81000, "Improved_V": 5200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.97882247300001, "SHAPE_Area": 2350.8153331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364614.593699999153614, 254728.051899999380112 ], [ 364575.451200000941753, 254684.668499998748302 ], [ 364566.583599999547005, 254684.384799998253584 ], [ 364534.833499997854233, 254719.799800001084805 ], [ 364530.764200001955032, 254724.199400000274181 ], [ 364529.8716000020504, 254734.324599999934435 ], [ 364589.579999998211861, 254729.958099998533726 ], [ 364614.593699999153614, 254728.051899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87015918, "LATITUDE": 18.32145307, "OBJECTID_1": 38988, "PARCEL_NO_": "107604034700", "Tax_Legal_": "52D-C FRYDENHOJ RED HOOK QTR", "Name": "NIBBS, IRIS", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 152600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.417388128, "SHAPE_Area": 1143.57914134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365261.398400001227856, 254716.669300001114607 ], [ 365223.759400002658367, 254714.893199998885393 ], [ 365223.969200000166893, 254738.138399999588728 ], [ 365224.037000000476837, 254745.65430000051856 ], [ 365261.596600003540516, 254747.045400001108646 ], [ 365261.196999996900558, 254740.310100000351667 ], [ 365261.398400001227856, 254716.669300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87157138000001, "LATITUDE": 18.32131972, "OBJECTID_1": 38890, "PARCEL_NO_": "107604013600", "Tax_Legal_": "32 ESTATE NADIR RED HOOK QTR", "Name": "SMITH, WILBURN", "Address": "PO Box 7552", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.453114095, "SHAPE_Area": 715.97486318100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365099.476999998092651, 254698.034400001168251 ], [ 365070.354500003159046, 254708.984000001102686 ], [ 365088.777400001883507, 254723.489100001752377 ], [ 365098.334399998188019, 254737.499499998986721 ], [ 365107.331500001251698, 254722.585499998182058 ], [ 365107.412500001490116, 254713.087000001221895 ], [ 365099.476999998092651, 254698.034400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603021500", "MAP": "F9-187-T57", "PARCEL_NAM": "3-47", "ACRE": "0.22", "LONGITUDE": -64.88099915, "LATITUDE": 18.3212921, "OBJECTID_1": 38588, "PARCEL_NO_": "107603021500", "Tax_Legal_": "3-47 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "FENTON, SAMUEL W. & ROMNEY, MARY", "Address": "PO Box 8687", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27700, "Improved_V": 129600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.26340193, "SHAPE_Area": 1284.7888686599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364095.129399999976158, 254680.026900000870228 ], [ 364090.047600001096725, 254677.973700001835823 ], [ 364088.418700002133846, 254683.004399999976158 ], [ 364075.226400002837181, 254717.093600001186132 ], [ 364103.346600003540516, 254729.144900001585484 ], [ 364116.542599998414516, 254694.633600000292063 ], [ 364118.17790000140667, 254689.339099999517202 ], [ 364095.129399999976158, 254680.026900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019400", "MAP": "F9-3941-T57", "PARCEL_NAM": "3-58", "ACRE": "0.22", "LONGITUDE": -64.88202533, "LATITUDE": 18.32128097, "OBJECTID_1": 38571, "PARCEL_NO_": "107603019400", "Tax_Legal_": "3-58 BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "CABAN, VICTORIA", "Address": "PO BOX 502896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26300, "Improved_V": 189500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.60081645099999, "SHAPE_Area": 1004.7348097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364006.965000003576279, 254684.23759999871254 ], [ 363985.257500000298023, 254676.671599999070168 ], [ 363970.387800000607967, 254718.346400000154972 ], [ 363990.475500002503395, 254726.743500001728535 ], [ 364006.965000003576279, 254684.23759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603054000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87552339, "LATITUDE": 18.32130848, "OBJECTID_1": 38771, "PARCEL_NO_": "107603054000", "Tax_Legal_": "15A-3 NADIR RED HOOK QTR", "Name": "REHENIA ALMARA LATORTUE MONSANTO (Life Estate)", "Address": "PO Box 9728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34000, "Improved_V": 94800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.565990255, "SHAPE_Area": 1335.35986693 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364660.087099999189377, 254688.52760000154376 ], [ 364660.584100000560284, 254724.839699998497963 ], [ 364660.521200001239777, 254732.22749999910593 ], [ 364691.976300001144409, 254731.429499998688698 ], [ 364690.619000002741814, 254701.44310000166297 ], [ 364689.927799999713898, 254687.927400000393391 ], [ 364660.087099999189377, 254688.52760000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703032200", "MAP": "D9-448-T64", "PARCEL_NAM": "2V-11A", "ACRE": "0.32", "LONGITUDE": -64.85863043000001, "LATITUDE": 18.32136037, "OBJECTID_1": 39760, "PARCEL_NO_": "107703032200", "Tax_Legal_": "NAZARETH ESTATE 2V-11A RED HOOK QTR", "Name": "DOWE, EVELYN", "Address": "PO Box 10560", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46100, "Improved_V": 258100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.250832398, "SHAPE_Area": 1176.3932650300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366488.846600003540516, 254739.227299999445677 ], [ 366488.421599999070168, 254735.955200001597404 ], [ 366484.510399997234344, 254716.119800001382828 ], [ 366476.586800001561642, 254717.749099999666214 ], [ 366465.278599999845028, 254719.97859999909997 ], [ 366437.858599998056889, 254720.387499999254942 ], [ 366435.222099997103214, 254745.90819999948144 ], [ 366469.082900002598763, 254741.683800000697374 ], [ 366488.846600003540516, 254739.227299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603053000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87522341, "LATITUDE": 18.32134871, "OBJECTID_1": 38763, "PARCEL_NO_": "107603053000", "Tax_Legal_": "15A-4 NADIR RED HOOK QTR", "Name": "WILLIAMS, NORA FREDERICKS", "Address": "227 Ranchlands", "City": "Bushkill", "State": "Pennsylvania", "Zip": 18324, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.156543149, "SHAPE_Area": 1006.94690209 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364723.433300003409386, 254730.420400001108646 ], [ 364722.108400002121925, 254696.63459999859333 ], [ 364690.619000002741814, 254701.44310000166297 ], [ 364691.976300001144409, 254731.429499998688698 ], [ 364712.14130000025034, 254730.750100001692772 ], [ 364723.433300003409386, 254730.420400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704034500", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".44", "LONGITUDE": -64.8499831, "LATITUDE": 18.32123833, "OBJECTID_1": 40006, "PARCEL_NO_": "107704034500", "Tax_Legal_": "NAZARETH 9-13 RED HOOK QTR. 1", "Name": "VANASSCHE, NICHOLAS P.", "Address": "5328 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.30410953099999, "SHAPE_Area": 1749.22186947 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367405.5253000035882, 254717.541600000113249 ], [ 367366.186800003051758, 254697.165699999779463 ], [ 367362.079700000584126, 254705.997999999672174 ], [ 367348.11710000038147, 254735.859099999070168 ], [ 367381.834700003266335, 254753.444699998944998 ], [ 367388.355400003492832, 254745.265399999916553 ], [ 367395.743400000035763, 254729.916000001132488 ], [ 367405.5253000035882, 254717.541600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8549327, "LATITUDE": 18.32110316, "OBJECTID_1": 39791, "PARCEL_NO_": "107704013300", "Tax_Legal_": "NAZARETH ESTATE 2-OB REDHOOK QTR.", "Name": "EDWARDS, MEDORA V and PHILBERT", "Address": "1408 4th Street Sugar Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.56443249799997, "SHAPE_Area": 2465.4567315999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366887.136500000953674, 254705.066199999302626 ], [ 366860.981299996376038, 254651.656500000506639 ], [ 366852.88400000333786, 254655.600999999791384 ], [ 366865.481100000441074, 254691.378899998962879 ], [ 366821.024300001561642, 254703.891800001263618 ], [ 366826.292599998414516, 254748.05350000038743 ], [ 366887.136500000953674, 254705.066199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87483194000001, "LATITUDE": 18.32131128, "OBJECTID_1": 38762, "PARCEL_NO_": "107603052900", "Tax_Legal_": "15A-1 NADIR RED HOOK QTR", "Name": "FREDERICKS, VERA", "Address": "PO Box 8086", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37600, "Improved_V": 232800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.68391409899999, "SHAPE_Area": 1891.1751015899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364770.210199996829033, 254729.536699999123812 ], [ 364775.188299998641014, 254713.112100001424551 ], [ 364776.052199997007847, 254706.364199999719858 ], [ 364772.924099996685982, 254694.939500000327826 ], [ 364768.930299997329712, 254690.473900001496077 ], [ 364742.300399996340275, 254692.789000000804663 ], [ 364722.108400002121925, 254696.63459999859333 ], [ 364723.433300003409386, 254730.420400001108646 ], [ 364730.691899999976158, 254730.268699999898672 ], [ 364770.210199996829033, 254729.536699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035300", "MAP": "A9-78-T67", "PARCEL_NAM": "33-54", "ACRE": "0.09", "LONGITUDE": -64.87889374, "LATITUDE": 18.32135549, "OBJECTID_1": 38675, "PARCEL_NO_": "107603035300", "Tax_Legal_": "33-54 NADIR RED HOOK QTR", "Name": "PICKERING, L. & FRETTE, E", "Address": "PO Box 1601", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 10800, "Improved_V": 67600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.996750045499994, "SHAPE_Area": 460.75116788600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364328.33839999884367, 254727.397799998521805 ], [ 364331.596000000834465, 254723.624800000339746 ], [ 364336.478799998760223, 254718.38740000128746 ], [ 364313.279200002551079, 254696.666000001132488 ], [ 364305.954099997878075, 254704.627599999308586 ], [ 364302.683799996972084, 254709.878199998289347 ], [ 364328.33839999884367, 254727.397799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603031200", "MAP": "A9-78-T67", "PARCEL_NAM": "33-13", "ACRE": "0.09", "LONGITUDE": -64.87989455, "LATITUDE": 18.32139767, "OBJECTID_1": 38634, "PARCEL_NO_": "107603031200", "Tax_Legal_": "33-13 NADIR RED HOOK QTR", "Name": "ST CLAIR RICHARDS & IDALIA RICHARDS (LIFE ESTATE)", "Address": "7163 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 87600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.364343628499995, "SHAPE_Area": 392.58385800999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364226.883299998939037, 254710.102099999785423 ], [ 364201.912799999117851, 254706.942499998956919 ], [ 364201.090300001204014, 254708.83559999987483 ], [ 364200.174300000071526, 254721.704799998551607 ], [ 364225.135799996554852, 254725.919900000095367 ], [ 364226.883299998939037, 254710.102099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84638719, "LATITUDE": 18.3212356, "OBJECTID_1": 40199, "PARCEL_NO_": "107803020500", "Tax_Legal_": "NAZARETH 5-16 RED HOOK QTR", "Name": "RUSSELL, SHANNON and LE", "Address": "1010 Bianco Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27607, "Country": "United States", "Land_Value": 161900, "Improved_V": 508500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.68130892, "SHAPE_Area": 2128.8679345700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367766.891699999570847, 254704.245000001043081 ], [ 367760.399899996817112, 254709.046999998390675 ], [ 367755.542199999094009, 254711.329300001263618 ], [ 367741.802500002086163, 254715.016499999910593 ], [ 367728.097000002861023, 254714.693300001323223 ], [ 367715.224799998104572, 254711.210400000214577 ], [ 367714.398699998855591, 254713.525699999183416 ], [ 367720.784500002861023, 254721.177299998700619 ], [ 367726.345899999141693, 254730.933100000023842 ], [ 367727.947800002992153, 254732.212799999862909 ], [ 367740.659999996423721, 254754.481699999421835 ], [ 367798.098700001835823, 254732.575899999588728 ], [ 367766.891699999570847, 254704.245000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86923766, "LATITUDE": 18.32135337, "OBJECTID_1": 39008, "PARCEL_NO_": "107604041300", "Tax_Legal_": "FRYDENHOJ ESTATE 74BE No.3 RED HOOK QTR", "Name": "ASENCIO, HERMINIO", "Address": "55 Boundary Ave", "City": "Providence", "State": "Rhode Island", "Zip": 2902, "Country": "United States", "Land_Value": 13300, "Improved_V": 1400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.809562739699999, "SHAPE_Area": 500.40994689199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365327.571699999272823, 254710.666999999433756 ], [ 365324.233199998736382, 254723.9386 ], [ 365349.140799999237061, 254734.486000001430511 ], [ 365356.555799998342991, 254715.970499999821186 ], [ 365342.877300001680851, 254712.480999998748302 ], [ 365328.394199997186661, 254708.773899998515844 ], [ 365327.571699999272823, 254710.666999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603054600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87599553, "LATITUDE": 18.32126391, "OBJECTID_1": 38776, "PARCEL_NO_": "107603054600", "Tax_Legal_": "6A-3 NADIR NO.2 RED HOOK QTR.", "Name": "WARNER, JAMES A. & CANDY M. G.", "Address": "PO Box 305424", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 88200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.591621882, "SHAPE_Area": 2577.9612646300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364652.022100001573563, 254688.672699999064207 ], [ 364620.588500000536442, 254686.937699999660254 ], [ 364575.451200000941753, 254684.668499998748302 ], [ 364614.593699999153614, 254728.051899999380112 ], [ 364660.584100000560284, 254724.839699998497963 ], [ 364660.087099999189377, 254688.52760000154376 ], [ 364652.022100001573563, 254688.672699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85787077000001, "LATITUDE": 18.32132637, "OBJECTID_1": 39768, "PARCEL_NO_": "107704010200", "Tax_Legal_": "NAZARETH ESTATE 2V-12C RED HOOK QTR", "Name": "JOSEPH, GREGORY & MATHUNA", "Address": "PO Box 8345", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.88549217400001, "SHAPE_Area": 1135.6231996900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366562.070299997925758, 254716.760000001639128 ], [ 366546.770099997520447, 254714.312800001353025 ], [ 366534.707800000905991, 254710.41440000012517 ], [ 366523.430200003087521, 254709.055500000715256 ], [ 366524.776699997484684, 254740.308400001376867 ], [ 366525.02419999986887, 254742.24210000038147 ], [ 366534.068599998950958, 254743.470300000160933 ], [ 366557.4054000005126, 254746.820099998265505 ], [ 366557.806800000369549, 254743.956199999898672 ], [ 366562.070299997925758, 254716.760000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803010900", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".55", "LONGITUDE": -64.84882323, "LATITUDE": 18.32106212, "OBJECTID_1": 40166, "PARCEL_NO_": "107803010900", "Tax_Legal_": "NAZARETH 9-38-1 & 9-39 RED HOOK QTR", "Name": "CHALLENGER, WALTER L", "Address": "PO Box 861", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 122200, "Improved_V": 280000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.458262749, "SHAPE_Area": 2838.37991104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367512.507700003683567, 254748.60359999909997 ], [ 367518.240000002086163, 254738.30689999833703 ], [ 367521.544399999082088, 254729.045800000429153 ], [ 367523.320600003004074, 254709.850900001823902 ], [ 367521.826700001955032, 254695.906399998813868 ], [ 367514.693899996578693, 254681.282600000500679 ], [ 367511.488499999046326, 254678.934399999678135 ], [ 367506.697300001978874, 254673.406700000166893 ], [ 367471.158500000834465, 254680.293000001460314 ], [ 367472.436599999666214, 254719.566899999976158 ], [ 367512.507700003683567, 254748.60359999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8703552, "LATITUDE": 18.32107966, "OBJECTID_1": 38954, "PARCEL_NO_": "107604031200", "Tax_Legal_": "FRYDENHOJ 2-1 RED HOOK QTR", "Name": "HERMAN, CALISTRO", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.24848609399999, "SHAPE_Area": 2133.1147846700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365249.67230000346899, 254673.299199998378754 ], [ 365244.945900000631809, 254660.172699999064207 ], [ 365195.631399996578693, 254674.967799998819828 ], [ 365198.737999998033047, 254688.925400000065565 ], [ 365206.547499999403954, 254718.753499999642372 ], [ 365208.883799999952316, 254728.482900001108646 ], [ 365209.655599996447563, 254731.845100000500679 ], [ 365223.511699996888638, 254715.190900001674891 ], [ 365223.759400002658367, 254714.893199998885393 ], [ 365252.026500001549721, 254680.91780000180006 ], [ 365249.67230000346899, 254673.299199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604041500", "MAP": null, "PARCEL_NAM": "12T", "ACRE": null, "LONGITUDE": -64.86888035, "LATITUDE": 18.3212498, "OBJECTID_1": 39010, "PARCEL_NO_": "107604041500", "Tax_Legal_": "ESTATE FRYDENHOJ 12T RED HOOK QTR", "Name": "BOWRY, WARREN & AMANDA", "Address": "PO Box 305784", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19900, "Improved_V": 197500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.16516332400001, "SHAPE_Area": 562.13964596899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365363.440600000321865, 254718.296000000089407 ], [ 365382.132100000977516, 254724.988699998706579 ], [ 365396.201800003647804, 254700.251899998635054 ], [ 365386.506300002336502, 254702.494500000029802 ], [ 365381.688199996948242, 254700.133099999278784 ], [ 365380.115099996328354, 254695.476100001484156 ], [ 365370.439400002360344, 254695.396899998188019 ], [ 365363.440600000321865, 254718.296000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85598935, "LATITUDE": 18.32123631, "OBJECTID_1": 39787, "PARCEL_NO_": "107704012700", "Tax_Legal_": "NAZARETH ESTATE 2X-7A RED HOOK QTR", "Name": "DELUGO, ROBERT C. & JOAN E.", "Address": "PO Box 10035", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.22779541099999, "SHAPE_Area": 2775.4867465000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366780.670900002121925, 254707.994500000029802 ], [ 366741.193899996578693, 254703.871700000017881 ], [ 366694.465599998831749, 254699.05629999935627 ], [ 366694.435000002384186, 254702.644600000232458 ], [ 366700.671499997377396, 254727.815799999982119 ], [ 366703.878799997270107, 254729.953000001609325 ], [ 366705.464400000870228, 254733.132399998605251 ], [ 366786.8462999984622, 254740.342300001531839 ], [ 366780.670900002121925, 254707.994500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87928131, "LATITUDE": 18.32132764, "OBJECTID_1": 38664, "PARCEL_NO_": "107603034200", "Tax_Legal_": "33-43 NADIR RED HOOK QTR", "Name": "RHYMER, MYRNA", "Address": "7114 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 86400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.261806689500006, "SHAPE_Area": 339.98890422599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364293.017099998891354, 254708.743599999696016 ], [ 364270.541000001132488, 254696.738400001078844 ], [ 364265.571900002658367, 254712.107500001788139 ], [ 364285.666799999773502, 254719.660300001502037 ], [ 364293.017099998891354, 254708.743599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603025400", "MAP": "F9-184-T57", "PARCEL_NAM": "3-49", "ACRE": "0.33", "LONGITUDE": -64.88132337, "LATITUDE": 18.32116602, "OBJECTID_1": 38618, "PARCEL_NO_": "107603025400", "Tax_Legal_": "3- 49 BOVONI NO. 1&2 FRENCHMANS BAY QUARTER", "Name": "A & J PROPERTIES LLC", "Address": "PO Box 9355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36100, "Improved_V": 284700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.441544607, "SHAPE_Area": 1800.71586437 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364070.956900000572205, 254670.260600000619888 ], [ 364050.061800003051758, 254661.818399999290705 ], [ 364048.239799998700619, 254666.632399998605251 ], [ 364035.887900002300739, 254696.717700000852346 ], [ 364035.868100002408028, 254699.039599999785423 ], [ 364037.466399997472763, 254700.741399999707937 ], [ 364075.226400002837181, 254717.093600001186132 ], [ 364088.418700002133846, 254683.004399999976158 ], [ 364090.047600001096725, 254677.973700001835823 ], [ 364070.956900000572205, 254670.260600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803010800", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".55", "LONGITUDE": -64.84927661, "LATITUDE": 18.32110435, "OBJECTID_1": 40165, "PARCEL_NO_": "107803010800", "Tax_Legal_": "NAZARETH ESTATE 9-37 RED HOOK QTR", "Name": "KLOTZBACH, THOMAS W. & STARKEY, CLAIRE E.", "Address": "3077 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 200000, "Improved_V": 1000000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.95445970599999, "SHAPE_Area": 2115.5941073399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367471.158500000834465, 254680.293000001460314 ], [ 367439.656499996781349, 254686.579100001603365 ], [ 367438.772900000214577, 254695.648899998515844 ], [ 367435.493699997663498, 254701.954799998551607 ], [ 367416.80290000140667, 254718.900499999523163 ], [ 367452.063000001013279, 254744.7314000017941 ], [ 367472.436599999666214, 254719.566899999976158 ], [ 367471.158500000834465, 254680.293000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603010800", "MAP": "F9-441-T59", "PARCEL_NAM": "3-57", "ACRE": "0.22", "LONGITUDE": -64.88228424, "LATITUDE": 18.32119439, "OBJECTID_1": 38533, "PARCEL_NO_": "107603010800", "Tax_Legal_": "3-57 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "INDUSTRIOUS (LIFE ESTATE), PERLA C", "Address": "3-57 Estate Boboni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29900, "Improved_V": 186100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.201333068, "SHAPE_Area": 1018.4351793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363979.622299998998642, 254675.570000000298023 ], [ 363957.921999998390675, 254667.159800000488758 ], [ 363942.263999998569489, 254706.717199999839067 ], [ 363964.763400003314018, 254715.978399999439716 ], [ 363979.622299998998642, 254675.570000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86037667, "LATITUDE": 18.32110015, "OBJECTID_1": 39745, "PARCEL_NO_": "107703030600", "Tax_Legal_": "NAZARETH ESTATE 2V-1 RED HOOK QTR", "Name": "DURANT, ANGELA R", "Address": "PO Box 7806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.893937325, "SHAPE_Area": 1371.19256425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366299.223200000822544, 254713.342199999839067 ], [ 366282.634099997580051, 254672.887499999254942 ], [ 366265.696099996566772, 254673.382199998944998 ], [ 366262.039300002157688, 254724.014699999243021 ], [ 366259.530500002205372, 254734.548900000751019 ], [ 366261.949400000274181, 254734.56870000064373 ], [ 366263.594400003552437, 254730.782400000840425 ], [ 366273.33669999986887, 254723.051699999719858 ], [ 366299.223200000822544, 254713.342199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703032100", "MAP": "D9-448-T64", "PARCEL_NAM": "2V-11B", "ACRE": "0.29", "LONGITUDE": -64.85820274, "LATITUDE": 18.32130853, "OBJECTID_1": 39759, "PARCEL_NO_": "107703032100", "Tax_Legal_": "NAZARETH ESTATE 2V-11B RED HOOK QTR", "Name": "THOMAS, JUREEN,JEFF,JULIEN HODGE,JEWEL PENN,JAMAL WALLACE", "Address": "PO Box 11492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41800, "Improved_V": 212500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.78143951000001, "SHAPE_Area": 1080.4754835700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366525.02419999986887, 254742.24210000038147 ], [ 366523.430200003087521, 254709.055500000715256 ], [ 366511.330099999904633, 254709.589699998497963 ], [ 366494.358000002801418, 254714.094900000840425 ], [ 366484.510399997234344, 254716.119800001382828 ], [ 366488.421599999070168, 254735.955200001597404 ], [ 366488.846600003540516, 254739.227299999445677 ], [ 366513.969899997115135, 254740.902199998497963 ], [ 366525.02419999986887, 254742.24210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035200", "MAP": "A9--78-T67", "PARCEL_NAM": "33-53", "ACRE": "0.09", "LONGITUDE": -64.87879882, "LATITUDE": 18.32126198, "OBJECTID_1": 38674, "PARCEL_NO_": "107603035200", "Tax_Legal_": "33-53 NADIR RED HOOK QTR", "Name": "AUBREY AND ANIS a/k/a AGNES FRETT FAMILY REVOCABLE", "Address": "33-53 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 86500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.963877303999993, "SHAPE_Area": 448.41191167300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364345.409400001168251, 254711.283300001174212 ], [ 364334.239699997007847, 254697.259700000286102 ], [ 364326.279100000858307, 254685.162200000137091 ], [ 364315.7179000005126, 254694.363899998366833 ], [ 364313.279200002551079, 254696.666000001132488 ], [ 364336.478799998760223, 254718.38740000128746 ], [ 364345.409400001168251, 254711.283300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603070800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87434209, "LATITUDE": 18.32124721, "OBJECTID_1": 38851, "PARCEL_NO_": "107603070800", "Tax_Legal_": "NADIR 15C RED HOOK QTR", "Name": "DONOVAN, J. , V. , T. , M. , C", "Address": "6605 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40500, "Improved_V": 144400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.058659968, "SHAPE_Area": 759.63935687000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364784.038000002503395, 254715.506599999964237 ], [ 364821.312899999320507, 254715.743599999696016 ], [ 364812.458499997854233, 254692.307799998670816 ], [ 364781.811499997973442, 254692.901299998164177 ], [ 364784.943199999630451, 254703.903799999505281 ], [ 364784.038000002503395, 254715.506599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603070200", "MAP": "F9-1683-T66", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8743328, "LATITUDE": 18.32099376, "OBJECTID_1": 38846, "PARCEL_NO_": "107603070200", "Tax_Legal_": "EST NADIR 15 RED HOOK QTR", "Name": "DONOVAN, IDALIA", "Address": "PO Box 503123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 92300, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 358.49850165700002, "SHAPE_Area": 2661.04965881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364821.312899999320507, 254715.743599999696016 ], [ 364835.445699997246265, 254715.833500001579523 ], [ 364839.135200001299381, 254684.504599999636412 ], [ 364842.630199998617172, 254652.869100000709295 ], [ 364842.687700003385544, 254646.114599999040365 ], [ 364837.039899997413158, 254646.490600001066923 ], [ 364832.639700002968311, 254689.728700000792742 ], [ 364810.100699998438358, 254685.111299999058247 ], [ 364813.644299998879433, 254647.776799999177456 ], [ 364811.223499998450279, 254647.967999998480082 ], [ 364811.200199998915195, 254650.712099999189377 ], [ 364755.5304000005126, 254654.267200000584126 ], [ 364756.288199998438358, 254659.972899999469519 ], [ 364759.461300000548363, 254666.120600000023842 ], [ 364764.252400003373623, 254671.648299999535084 ], [ 364771.464299999177456, 254676.984600000083447 ], [ 364781.811499997973442, 254692.901299998164177 ], [ 364812.458499997854233, 254692.307799998670816 ], [ 364821.312899999320507, 254715.743599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604045100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8694097, "LATITUDE": 18.32130873, "OBJECTID_1": 39045, "PARCEL_NO_": "107604045100", "Tax_Legal_": "12S-1 FRYDENJOJ NO.3 RED HOOK QTR", "Name": "ROGERS, JOSEPH & OTHERS", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 298700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.395376251999998, "SHAPE_Area": 111.996142775 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365327.571699999272823, 254710.666999999433756 ], [ 365317.107699997723103, 254708.470400001853704 ], [ 365318.599799998104572, 254722.625900000333786 ], [ 365324.233199998736382, 254723.9386 ], [ 365327.571699999272823, 254710.666999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704035000", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".51", "LONGITUDE": -64.85041528000001, "LATITUDE": 18.32115138, "OBJECTID_1": 40011, "PARCEL_NO_": "107704035000", "Tax_Legal_": "NAZARETH 9-14 RED HOOK QTR", "Name": "VANASSCHE, NICHOLAS P.", "Address": "5328 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 133800, "Improved_V": 412800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.688235642, "SHAPE_Area": 2190.7404361099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367362.079700000584126, 254705.997999999672174 ], [ 367325.190700002014637, 254682.053700000047684 ], [ 367320.223399996757507, 254697.21169999986887 ], [ 367315.326200000941753, 254704.137699998915195 ], [ 367306.386600002646446, 254712.297200001776218 ], [ 367298.289300002157688, 254716.241700001060963 ], [ 367303.737499997019768, 254739.295499999076128 ], [ 367348.11710000038147, 254735.859099999070168 ], [ 367362.079700000584126, 254705.997999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86349802, "LATITUDE": 18.32121381, "OBJECTID_1": 39617, "PARCEL_NO_": "107703012300", "Tax_Legal_": "FRYDENHOJ ESTATE 41-5-5 RED HOOK", "Name": "JAMES, GEORGE & WINIFRED", "Address": "BOX 3203", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68500, "Improved_V": 234500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.78322443100001, "SHAPE_Area": 1978.4943700700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365975.744499996304512, 254728.004299998283386 ], [ 365967.321000002324581, 254675.584199998527765 ], [ 365960.800300002098083, 254683.7635000012815 ], [ 365948.622900001704693, 254693.374099999666214 ], [ 365929.192299999296665, 254702.503199998289347 ], [ 365909.786899998784065, 254708.677200000733137 ], [ 365914.462899997830391, 254727.713899999856949 ], [ 365956.39299999922514, 254727.846000000834465 ], [ 365975.744499996304512, 254728.004299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.863059, "LATITUDE": 18.32110643, "OBJECTID_1": 39618, "PARCEL_NO_": "107703012400", "Tax_Legal_": "FRYDENHOJ ESTATE 41-2-1 RED HOOK QTR", "Name": "SANTANA, JOSE A", "Address": "6155 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.46450308300001, "SHAPE_Area": 2653.1898195200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365975.744499996304512, 254728.004299998283386 ], [ 365997.514899998903275, 254728.182500001043081 ], [ 366020.899800002574921, 254728.162799999117851 ], [ 366016.4070999994874, 254687.596099998801947 ], [ 366016.428700000047684, 254685.063099998980761 ], [ 366006.826700001955032, 254676.329700000584126 ], [ 365995.594099998474121, 254669.693900000303984 ], [ 365982.729000002145767, 254665.366700001060963 ], [ 365975.46679999679327, 254665.940600000321865 ], [ 365969.78490000218153, 254670.326999999582767 ], [ 365967.321000002324581, 254675.584199998527765 ], [ 365975.744499996304512, 254728.004299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86244281, "LATITUDE": 18.32112237, "OBJECTID_1": 39619, "PARCEL_NO_": "107703012500", "Tax_Legal_": "FRYDENHOJ ESTATE 41-2 REMAINDER RED HOOK QTR", "Name": "MITCHAM, GERON", "Address": "PO Box 303449", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.21799069600002, "SHAPE_Area": 3308.3201770199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366087.369800001382828, 254687.332600001245737 ], [ 366086.727099999785423, 254668.11769999936223 ], [ 366055.334899999201298, 254661.528000000864267 ], [ 366052.802699998021126, 254674.806200001388788 ], [ 366045.394799999892712, 254692.477400001138449 ], [ 366041.318300001323223, 254697.721400000154972 ], [ 366034.840800002217293, 254700.834800001233816 ], [ 366027.587600000202656, 254700.353199999779463 ], [ 366021.973999999463558, 254696.718699999153614 ], [ 366019.585600003600121, 254693.110500000417233 ], [ 366018.81530000269413, 254688.882399998605251 ], [ 366016.4070999994874, 254687.596099998801947 ], [ 366020.899800002574921, 254728.162799999117851 ], [ 366028.156599998474121, 254728.222199998795986 ], [ 366087.019100002944469, 254728.493000000715256 ], [ 366087.369800001382828, 254687.332600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703012700", "MAP": "A9-16-62", "PARCEL_NAM": "2W-7", "ACRE": "0.16", "LONGITUDE": -64.86203969, "LATITUDE": 18.32108694, "OBJECTID_1": 39621, "PARCEL_NO_": "107703012700", "Tax_Legal_": "NAZARETH ESTATE 2W-7 RED HOOK QTR", "Name": "HODGE, CLIFTON L. & TERRI LYN", "Address": "PO Box 502325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28100, "Improved_V": 202800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.220455816, "SHAPE_Area": 674.19281035300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366100.243900001049042, 254685.848000001162291 ], [ 366087.310500003397465, 254685.558899998664856 ], [ 366087.369800001382828, 254687.332600001245737 ], [ 366087.180500000715256, 254709.561799999326468 ], [ 366113.780299998819828, 254710.769000001251698 ], [ 366116.207900002598763, 254686.204700000584126 ], [ 366100.243900001049042, 254685.848000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8566006, "LATITUDE": 18.32119607, "OBJECTID_1": 39778, "PARCEL_NO_": "107704011400", "Tax_Legal_": "2V-6 NAZARETH RED HOOK QUARTER", "Name": "SMITH, NORMA DENISE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51700, "Improved_V": 294100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.180829026, "SHAPE_Area": 1386.1678629200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366694.465599998831749, 254699.05629999935627 ], [ 366657.405799999833107, 254695.16440000012517 ], [ 366656.279399998486042, 254732.729800000786781 ], [ 366669.178599998354912, 254733.046500001102686 ], [ 366687.732799999415874, 254732.142900001257658 ], [ 366690.180500000715256, 254728.785399999469519 ], [ 366692.612000003457069, 254727.3277000002563 ], [ 366696.650700002908707, 254726.51630000025034 ], [ 366700.671499997377396, 254727.815799999982119 ], [ 366694.435000002384186, 254702.644600000232458 ], [ 366694.465599998831749, 254699.05629999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86581861000001, "LATITUDE": 18.3207367, "OBJECTID_1": 39610, "PARCEL_NO_": "107703011500", "Tax_Legal_": "FRYDENHOJ ESTATE 101-A RED HOOK QTR", "Name": "SVB 155 SPRING LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 404.19358788400001, "SHAPE_Area": 6866.9328662300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365725.367200002074242, 254586.000100001692772 ], [ 365692.029600001871586, 254618.446699999272823 ], [ 365682.281999997794628, 254626.810699999332428 ], [ 365670.072200000286102, 254640.220800001174212 ], [ 365663.517399996519089, 254652.410500001162291 ], [ 365659.437299996614456, 254658.076699998229742 ], [ 365651.318400003015995, 254664.554099999368191 ], [ 365658.064499996602535, 254724.559900000691414 ], [ 365675.040299996733665, 254719.632599998265505 ], [ 365666.298500001430511, 254704.573399998247623 ], [ 365687.38849999755621, 254689.969500001519918 ], [ 365710.006599999964237, 254685.299400001764297 ], [ 365730.189599998295307, 254682.509300000965595 ], [ 365739.868900001049042, 254682.166299998760223 ], [ 365757.591600000858307, 254684.211199998855591 ], [ 365725.367200002074242, 254586.000100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85697527000001, "LATITUDE": 18.32115901, "OBJECTID_1": 39773, "PARCEL_NO_": "107704010700", "Tax_Legal_": "NAZARETH ESTATE 2V-6A 1 RED HOOK", "Name": "RONAN (LIFE ESTATE), HARRIS", "Address": "6517 Est Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50200, "Improved_V": 89700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.32159843299999, "SHAPE_Area": 1479.5280211 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366657.405799999833107, 254695.16440000012517 ], [ 366614.705399997532368, 254690.804099999368191 ], [ 366613.652699999511242, 254719.715300001204014 ], [ 366628.121399998664856, 254725.111099999397993 ], [ 366635.347599998116493, 254728.758799999952316 ], [ 366646.61259999871254, 254731.595199998468161 ], [ 366656.279399998486042, 254732.729800000786781 ], [ 366657.405799999833107, 254695.16440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84720029, "LATITUDE": 18.32108821, "OBJECTID_1": 40188, "PARCEL_NO_": "107803013200", "Tax_Legal_": "9-61 NAZARETH NO.1 RED HOOK QTR.", "Name": "JOSEPH, CAMISHA YVONNE", "Address": "PO BOX 303444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 103100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.47457656399999, "SHAPE_Area": 1966.5782601400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367703.914800003170967, 254713.651000000536442 ], [ 367700.727300003170967, 254709.191899999976158 ], [ 367698.351599998772144, 254704.106199998408556 ], [ 367697.57940000295639, 254700.089099999517202 ], [ 367688.844800002872944, 254684.185600001364946 ], [ 367635.412399999797344, 254709.079500000923872 ], [ 367652.089699998497963, 254739.191300000995398 ], [ 367703.914800003170967, 254713.651000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87088225, "LATITUDE": 18.32120433, "OBJECTID_1": 38960, "PARCEL_NO_": "107604031600", "Tax_Legal_": "2E ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "PENN, DUDLEY L", "Address": "PO Box 7261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.41143277800001, "SHAPE_Area": 1901.21363086 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365163.245800003409386, 254690.323699999600649 ], [ 365163.227799996733665, 254692.434500001370907 ], [ 365156.775499999523163, 254692.592700000852346 ], [ 365156.793499998748302, 254690.48200000077486 ], [ 365120.495099999010563, 254691.873599998652935 ], [ 365128.403599999845028, 254710.092399999499321 ], [ 365130.001800000667572, 254711.794199999421835 ], [ 365206.547499999403954, 254718.753499999642372 ], [ 365198.737999998033047, 254688.925400000065565 ], [ 365163.245800003409386, 254690.323699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035100", "MAP": "A9-78-T67", "PARCEL_NAM": "33-52", "ACRE": "0.09", "LONGITUDE": -64.87869309, "LATITUDE": 18.3211778, "OBJECTID_1": 38673, "PARCEL_NO_": "107603035100", "Tax_Legal_": "33-52 NADIR RED HOOK QTR", "Name": "EUGENE LAMBERT", "Address": "7104 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 68800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.464948123799999, "SHAPE_Area": 468.15493560800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364353.530100002884865, 254704.594799999147654 ], [ 364341.681699998676777, 254675.578000001609325 ], [ 364334.392599999904633, 254679.317999999970198 ], [ 364326.279100000858307, 254685.162200000137091 ], [ 364334.239699997007847, 254697.259700000286102 ], [ 364345.409400001168251, 254711.283300001174212 ], [ 364353.530100002884865, 254704.594799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603031300", "MAP": "A9-78-T67", "PARCEL_NAM": "33-12", "ACRE": "0.09", "LONGITUDE": -64.87987981000001, "LATITUDE": 18.32125992, "OBJECTID_1": 38635, "PARCEL_NO_": "107603031300", "Tax_Legal_": "33-12 NADIR RED HOOK QTR", "Name": "HENRY, JULIO", "Address": "PO BOX 8596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 65500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.960369151999998, "SHAPE_Area": 385.00932159600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364228.623599998652935, 254695.128699999302626 ], [ 364203.656700000166893, 254691.546900000423193 ], [ 364201.912799999117851, 254706.942499998956919 ], [ 364226.883299998939037, 254710.102099999785423 ], [ 364228.623599998652935, 254695.128699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604044200", "MAP": null, "PARCEL_NAM": "12R", "ACRE": null, "LONGITUDE": -64.868273, "LATITUDE": 18.32113826, "OBJECTID_1": 39036, "PARCEL_NO_": "107604044200", "Tax_Legal_": "12R ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "FAULKNER, RHEA S", "Address": "PO Box 111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.236715146700007, "SHAPE_Area": 494.51241638400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365458.566699996590614, 254698.98759999871254 ], [ 365440.293099999427795, 254684.353300001472235 ], [ 365435.01630000025034, 254687.481699999421835 ], [ 365428.538800001144409, 254690.595100000500679 ], [ 365422.138800002634525, 254692.452799998223782 ], [ 365448.950300000607967, 254713.734999999403954 ], [ 365454.216700002551079, 254705.370700001716614 ], [ 365458.566699996590614, 254698.98759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8606907, "LATITUDE": 18.32108727, "OBJECTID_1": 39743, "PARCEL_NO_": "107703030400", "Tax_Legal_": "NAZARETH 2FA RED HOOK QTR", "Name": "PORTENIO LLC", "Address": "PO Box 303708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111100, "Improved_V": 92300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.79560107699999, "SHAPE_Area": 2077.2087722400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366220.89580000191927, 254726.211100000888109 ], [ 366262.039300002157688, 254724.014699999243021 ], [ 366265.696099996566772, 254673.382199998944998 ], [ 366257.63120000064373, 254673.527300000190735 ], [ 366240.712999999523163, 254671.700100000947714 ], [ 366227.810199998319149, 254671.805599998682737 ], [ 366220.89580000191927, 254726.211100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704035200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85148246, "LATITUDE": 18.32107522, "OBJECTID_1": 40013, "PARCEL_NO_": "107704035200", "Tax_Legal_": "NAZARETH 9H 1 RED HOOK QTR", "Name": "NORWOOD CHILDREN LLC", "Address": "7171 Woodmont Ave", "City": "Bethesda", "State": "Maryland", "Zip": 20815, "Country": "United States", "Land_Value": 206800, "Improved_V": 835400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.21631830300001, "SHAPE_Area": 2155.8454625499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367249.116800002753735, 254714.361600000411272 ], [ 367246.697899997234344, 254714.34180000051856 ], [ 367241.887000001966953, 254711.135999999940395 ], [ 367241.138199999928474, 254704.374899998307228 ], [ 367243.585900001227856, 254701.017499998211861 ], [ 367227.585600003600121, 254686.109999999403954 ], [ 367204.332000002264977, 254670.720899999141693 ], [ 367196.027900002896786, 254698.939500000327826 ], [ 367190.988600000739098, 254722.540699999779463 ], [ 367215.892599999904633, 254733.510299999266863 ], [ 367249.885399997234344, 254718.800900001078844 ], [ 367249.116800002753735, 254714.361600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87921686, "LATITUDE": 18.32120415, "OBJECTID_1": 38665, "PARCEL_NO_": "107603034300", "Tax_Legal_": "NADIR ESTATE 33-44 RED HOOK QTR", "Name": "INDUSTRIOUS, LOUIS & PEARL", "Address": "71 12 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 75700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.520819464200002, "SHAPE_Area": 405.09391944800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364299.553900003433228, 254698.664599999785423 ], [ 364281.973300002515316, 254679.944499999284744 ], [ 364270.541000001132488, 254696.738400001078844 ], [ 364293.017099998891354, 254708.743599999696016 ], [ 364297.92509999871254, 254700.551100000739098 ], [ 364299.553900003433228, 254698.664599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87009896000001, "LATITUDE": 18.32116092, "OBJECTID_1": 38951, "PARCEL_NO_": "107604030900", "Tax_Legal_": "FRYDENHOJ 52D RED HOOK QTR", "Name": "BENJAMIN, CONCHITA & VIVIKAH A", "Address": "PO Box 8815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.96378916099999, "SHAPE_Area": 937.17441302300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365252.026500001549721, 254680.91780000180006 ], [ 365223.759400002658367, 254714.893199998885393 ], [ 365261.398400001227856, 254716.669300001114607 ], [ 365260.912100002169609, 254679.090700000524521 ], [ 365262.566100001335144, 254674.249099999666214 ], [ 365264.207500003278255, 254670.885000001639128 ], [ 365265.839900001883507, 254668.576299998909235 ], [ 365249.67230000346899, 254673.299199998378754 ], [ 365252.026500001549721, 254680.91780000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86577976, "LATITUDE": 18.32108407, "OBJECTID_1": 39640, "PARCEL_NO_": "107703015100", "Tax_Legal_": "FRYDENHOJ ESTATE 50A RED HOOK QUARTER", "Name": "SVB 155 SPRING LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.33740462399999, "SHAPE_Area": 750.36034352700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365675.040299996733665, 254719.632599998265505 ], [ 365690.574199996888638, 254694.639600001275539 ], [ 365729.32209999859333, 254689.679400000721216 ], [ 365741.422200001776218, 254689.145100001245737 ], [ 365759.155699998140335, 254689.923599999397993 ], [ 365757.591600000858307, 254684.211199998855591 ], [ 365739.868900001049042, 254682.166299998760223 ], [ 365730.189599998295307, 254682.509300000965595 ], [ 365710.006599999964237, 254685.299400001764297 ], [ 365687.38849999755621, 254689.969500001519918 ], [ 365666.298500001430511, 254704.573399998247623 ], [ 365675.040299996733665, 254719.632599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86912098000001, "LATITUDE": 18.32120195, "OBJECTID_1": 39009, "PARCEL_NO_": "107604041400", "Tax_Legal_": "74 BD FRYDENHOJ No.3 RED HOOK QTR", "Name": "SELLO, EDWARD T and GABRIEL M", "Address": "96 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 42500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.177552984100004, "SHAPE_Area": 301.43908547699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365362.174999997019768, 254695.626200001686811 ], [ 365347.7449000030756, 254692.851199999451637 ], [ 365347.049099996685982, 254696.049899999052286 ], [ 365342.877300001680851, 254712.480999998748302 ], [ 365356.555799998342991, 254715.970499999821186 ], [ 365361.532200001180172, 254699.756999999284744 ], [ 365362.174999997019768, 254695.626200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87329178, "LATITUDE": 18.32092618, "OBJECTID_1": 38897, "PARCEL_NO_": "107604014300", "Tax_Legal_": "NADIR 14E RED HOOK QTR", "Name": "JUDITH DONADELLE", "Address": "PO Box 12107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8015107, "Country": "United States", "Land_Value": 19700, "Improved_V": 135700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.54083824599999, "SHAPE_Area": 858.16870188200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364922.437100000679493, 254655.633299998939037 ], [ 364922.358900003135204, 254644.72690000012517 ], [ 364901.365000002086163, 254646.966299999505281 ], [ 364903.10360000282526, 254653.364100001752377 ], [ 364905.319300003349781, 254677.235800001770258 ], [ 364904.396099999547005, 254690.949299998581409 ], [ 364901.892700001597404, 254700.85020000115037 ], [ 364896.973899997770786, 254710.309200000017881 ], [ 364914.869199998676777, 254692.090500000864267 ], [ 364916.51240000128746, 254688.515399999916553 ], [ 364921.46000000089407, 254675.679099999368191 ], [ 364922.437100000679493, 254655.633299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704050400", "MAP": "A9-314-T85", "PARCEL_NAM": null, "ACRE": ".64", "LONGITUDE": -64.85393375, "LATITUDE": 18.32087269, "OBJECTID_1": 40034, "PARCEL_NO_": "107704050400", "Tax_Legal_": "NAZARETH 9M-4 RED HOOK QTR.", "Name": "VIRGIN ISLANDS MONTESSORI SCHOOL INC", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.90201759899998, "SHAPE_Area": 2854.2073985400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367023.339599996805191, 254618.999299999326468 ], [ 367019.338600002229214, 254615.377999998629093 ], [ 366978.742499999701977, 254647.976300001144409 ], [ 366914.649999998509884, 254693.681200001388788 ], [ 366943.396700002253056, 254726.847100000828505 ], [ 366957.215499997138977, 254713.872400000691414 ], [ 366963.737999998033047, 254705.48200000077486 ], [ 366970.285599999129772, 254694.136599998921156 ], [ 366973.593500003218651, 254684.453299999237061 ], [ 366976.0574000030756, 254679.196199998259544 ], [ 366977.684399999678135, 254677.520700000226498 ], [ 366979.325800001621246, 254674.156700000166893 ], [ 366985.891400001943111, 254660.700399998575449 ], [ 367002.219099998474121, 254637.191599998623133 ], [ 367003.045199997723103, 254634.876299999654293 ], [ 367009.556800000369549, 254627.752399999648333 ], [ 367023.339599996805191, 254618.999299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803010700", "MAP": "D9-338-T62", "PARCEL_NAM": "9-44", "ACRE": ".56", "LONGITUDE": -64.84829069, "LATITUDE": 18.32092132, "OBJECTID_1": 40164, "PARCEL_NO_": "107803010700", "Tax_Legal_": "9-44 ESTATE NAZARETH #1 RED HOOK QTR", "Name": "DELIA M. THOMAS LIVING TRUST", "Address": "PO Box 306285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 110000, "Improved_V": 449800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.483446187, "SHAPE_Area": 3192.4087974499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367566.450800001621246, 254663.763300001621246 ], [ 367560.883900001645088, 254654.640700001269579 ], [ 367513.997299998998642, 254668.400199998170137 ], [ 367521.997500002384186, 254675.853999998420477 ], [ 367530.719499997794628, 254693.234999999403954 ], [ 367532.960400000214577, 254714.151599999517202 ], [ 367586.837700001895428, 254731.691199999302626 ], [ 367585.370700001716614, 254714.580600000917912 ], [ 367583.828199997544289, 254706.335299998521805 ], [ 367581.491999998688698, 254696.605900000780821 ], [ 367579.922499999403954, 254691.526799999177456 ], [ 367577.553900003433228, 254685.596799999475479 ], [ 367570.433799996972084, 254669.495400000363588 ], [ 367566.450800001621246, 254663.763300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035000", "MAP": "A9-78-T67", "PARCEL_NAM": "33-51", "ACRE": "0.09", "LONGITUDE": -64.87857053, "LATITUDE": 18.32111881, "OBJECTID_1": 38672, "PARCEL_NO_": "107603035000", "Tax_Legal_": "NADIR 33-51 RED HOOK QTR", "Name": "BRUNN, CECELIA", "Address": "7103 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12200, "Improved_V": 107400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.117981371599996, "SHAPE_Area": 426.79546563000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364364.892200000584126, 254696.032900001853704 ], [ 364364.910199999809265, 254693.922200001776218 ], [ 364354.633100003004074, 254669.773400001227856 ], [ 364345.729500003159046, 254673.711300000548363 ], [ 364341.681699998676777, 254675.578000001609325 ], [ 364353.530100002884865, 254704.594799999147654 ], [ 364364.892200000584126, 254696.032900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604044900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86926161, "LATITUDE": 18.32117241, "OBJECTID_1": 39043, "PARCEL_NO_": "107604044900", "Tax_Legal_": "74BD-1 FRYDENHOJ RED HOOK QTR", "Name": "FORBES, WALTER & GLORIA", "Address": "BOX 5682", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66200, "Improved_V": 105900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.945213572300005, "SHAPE_Area": 313.12815929800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365332.281199999153614, 254689.877399999648333 ], [ 365331.479500003159046, 254689.810699999332428 ], [ 365330.955200001597404, 254692.118500001728535 ], [ 365328.394199997186661, 254708.773899998515844 ], [ 365342.877300001680851, 254712.480999998748302 ], [ 365347.049099996685982, 254696.049899999052286 ], [ 365347.7449000030756, 254692.851199999451637 ], [ 365332.281199999153614, 254689.877399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84598728, "LATITUDE": 18.32087265, "OBJECTID_1": 40200, "PARCEL_NO_": "107803020600", "Tax_Legal_": "5-18 ESTATE NAZARETH RED HOOK QTR", "Name": "BLYDEN, ALICIA", "Address": "PO BOX 305169", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120200, "Improved_V": 231300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.84372558800001, "SHAPE_Area": 2835.5718005799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367830.158100001513958, 254660.85530000180006 ], [ 367788.298199996352196, 254652.491200000047684 ], [ 367781.723600000143051, 254667.00279999896884 ], [ 367776.716700002551079, 254686.80460000038147 ], [ 367772.579099997878075, 254699.225299999117851 ], [ 367766.891699999570847, 254704.245000001043081 ], [ 367798.098700001835823, 254732.575899999588728 ], [ 367803.769900001585484, 254729.455899998545647 ], [ 367830.158100001513958, 254660.85530000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87314323, "LATITUDE": 18.32115512, "OBJECTID_1": 38903, "PARCEL_NO_": "107604014900", "Tax_Legal_": "14H NADIR RED HOOK QTR", "Name": "LEWIS, JEAN", "Address": "PO Box 8822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18500, "Improved_V": 230200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.264651004, "SHAPE_Area": 562.10875002199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364938.918300002813339, 254708.752599999308586 ], [ 364932.028399996459484, 254665.633200000971556 ], [ 364927.894299998879433, 254677.631700001657009 ], [ 364926.263700000941753, 254679.729200001806021 ], [ 364922.134999997913837, 254691.094500001519918 ], [ 364920.493600003421307, 254694.458599999547005 ], [ 364908.276699997484684, 254708.712900001555681 ], [ 364922.790299996733665, 254708.831700000911951 ], [ 364938.918300002813339, 254708.752599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87224985, "LATITUDE": 18.3211474, "OBJECTID_1": 38888, "PARCEL_NO_": "107604013000", "Tax_Legal_": "14D NADIR RED HOOK QTR", "Name": "RIVERA, VICTOR", "Address": "PO Box 713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.03546623700001, "SHAPE_Area": 986.26510594700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365055.840800002217293, 254708.865200001746416 ], [ 365031.010600000619888, 254689.241399999707937 ], [ 365022.223899997770786, 254679.459199998527765 ], [ 364993.180399999022484, 254681.121300000697374 ], [ 365014.717100001871586, 254708.739700000733137 ], [ 365055.840800002217293, 254708.865200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604034500", "MAP": null, "PARCEL_NAM": "22", "ACRE": null, "LONGITUDE": -64.87208556, "LATITUDE": 18.32046107, "OBJECTID_1": 38986, "PARCEL_NO_": "107604034500", "Tax_Legal_": "22 NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 256600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 530.41952406999997, "SHAPE_Area": 10381.0564075 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365099.476999998092651, 254698.034400001168251 ], [ 365075.755900003015995, 254638.603100001811981 ], [ 365075.238399997353554, 254608.965599998831749 ], [ 365075.387599997222424, 254591.446100000292063 ], [ 365091.69370000064373, 254570.470199998468161 ], [ 365074.739500001072884, 254572.864500001072884 ], [ 365061.840300001204014, 254572.547899998724461 ], [ 365048.14919999986887, 254570.535999998450279 ], [ 365036.08330000191927, 254567.05970000103116 ], [ 365025.637199997901917, 254562.752399999648333 ], [ 365015.203699998557568, 254556.967399999499321 ], [ 365000.783600002527237, 254545.872600000351667 ], [ 364987.203900001943111, 254530.773800000548363 ], [ 364979.254100002348423, 254517.409800000488758 ], [ 364974.417999997735023, 254517.159099999815226 ], [ 364971.979299999773502, 254519.461199998855591 ], [ 364972.69030000269413, 254530.655000001192093 ], [ 364975.026500001549721, 254540.384399998933077 ], [ 365019.981100000441074, 254658.753600001335144 ], [ 365027.137299999594688, 254670.633400000631809 ], [ 365039.116899996995926, 254684.241500001400709 ], [ 365070.354500003159046, 254708.984000001102686 ], [ 365099.476999998092651, 254698.034400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604045000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86939953, "LATITUDE": 18.32115711, "OBJECTID_1": 39044, "PARCEL_NO_": "107604045000", "Tax_Legal_": "FRYDENHOJ ESTATE 74H&182 No.5 RED HOOK QTR.", "Name": "FORBES, CILVINITA O", "Address": "PO Box 305682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8000, "Improved_V": 53100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.328444057799999, "SHAPE_Area": 273.88102060300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365331.479500003159046, 254689.810699999332428 ], [ 365317.276699997484684, 254688.629000000655651 ], [ 365315.581299997866154, 254698.325500000268221 ], [ 365317.107699997723103, 254708.470400001853704 ], [ 365327.571699999272823, 254710.666999999433756 ], [ 365328.394199997186661, 254708.773899998515844 ], [ 365330.955200001597404, 254692.118500001728535 ], [ 365331.479500003159046, 254689.810699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86171015, "LATITUDE": 18.32106259, "OBJECTID_1": 39665, "PARCEL_NO_": "107703020100", "Tax_Legal_": "NAZARETH ESTATE 2W-73 RED HOOK QTR", "Name": "O'GARROW, DENNIS & HELEN", "Address": "PO Box 11143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28800, "Improved_V": 348800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.02965838900001, "SHAPE_Area": 809.16400388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366142.330300003290176, 254672.372499998658895 ], [ 366131.803300000727177, 254677.563700001686811 ], [ 366127.733999997377396, 254681.963300000876188 ], [ 366125.271899998188019, 254687.009399998933077 ], [ 366123.430900000035763, 254713.803199999034405 ], [ 366125.828299999237061, 254716.355999998748302 ], [ 366130.669699996709824, 254715.973400000482798 ], [ 366151.752499997615814, 254702.213799998164177 ], [ 366142.330300003290176, 254672.372499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85743201, "LATITUDE": 18.32098672, "OBJECTID_1": 39769, "PARCEL_NO_": "107704010300", "Tax_Legal_": "2V-5 NAZARETH ESTATE RED HOOK QUARTER", "Name": "MAXINE A NUNEZ LIFE INTEREST", "Address": "PO Box 1093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57500, "Improved_V": 240700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.55971478699999, "SHAPE_Area": 2350.5631963400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366614.705399997532368, 254690.804099999368191 ], [ 366614.887000001966953, 254669.485199999064207 ], [ 366560.862300001084805, 254669.254099998623133 ], [ 366558.119599997997284, 254707.228500001132488 ], [ 366570.210699997842312, 254707.749600000679493 ], [ 366580.674800001084805, 254709.946199998259544 ], [ 366597.571400001645088, 254714.306400001049042 ], [ 366613.652699999511242, 254719.715300001204014 ], [ 366614.705399997532368, 254690.804099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704033900", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".49", "LONGITUDE": -64.85183515, "LATITUDE": 18.32092745, "OBJECTID_1": 40000, "PARCEL_NO_": "107704033900", "Tax_Legal_": "NAZARETH ESTATE 9-20 No.1 RED HOOK QTR.", "Name": "PAPP, JULIAN &OTTILIA I. & WILLIAM D. &KRISTINA P. BUSH", "Address": "6501 Red Hook Plza", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97600, "Improved_V": 507800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.89181150100001, "SHAPE_Area": 2135.3381834299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367205.998499996960163, 254664.401700001209974 ], [ 367167.335100002586842, 254659.441199999302626 ], [ 367162.293999999761581, 254683.253499999642372 ], [ 367154.790899999439716, 254712.111900001764297 ], [ 367190.988600000739098, 254722.540699999779463 ], [ 367196.027900002896786, 254698.939500000327826 ], [ 367204.332000002264977, 254670.720899999141693 ], [ 367205.998499996960163, 254664.401700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87911937, "LATITUDE": 18.32110176, "OBJECTID_1": 38666, "PARCEL_NO_": "107603034400", "Tax_Legal_": "33-45 NADIR RED HOOK QTR", "Name": "THOMPSON, EDNA & SAMUEL", "Address": "7109 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11700, "Improved_V": 72600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.499898985800002, "SHAPE_Area": 358.11652990699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364308.509700000286102, 254688.605399999767542 ], [ 364294.15429999679327, 254669.911699999123812 ], [ 364281.973300002515316, 254679.944499999284744 ], [ 364299.553900003433228, 254698.664599999785423 ], [ 364308.509700000286102, 254688.605399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603053900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87504796, "LATITUDE": 18.32111565, "OBJECTID_1": 38770, "PARCEL_NO_": "107603053900", "Tax_Legal_": "NADIR ESTATE 15A-2 RED HOOK QTR", "Name": "FREDERICKS, IDA E. -LIFE ESTATE", "Address": "PO Box 11396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39500, "Improved_V": 165300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.62922636100001, "SHAPE_Area": 990.94897671599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364706.10980000346899, 254681.515999998897314 ], [ 364706.865800000727177, 254687.432799998670816 ], [ 364689.927799999713898, 254687.927400000393391 ], [ 364690.619000002741814, 254701.44310000166297 ], [ 364722.108400002121925, 254696.63459999859333 ], [ 364742.300399996340275, 254692.789000000804663 ], [ 364768.930299997329712, 254690.473900001496077 ], [ 364768.950000002980232, 254688.151999998837709 ], [ 364765.757200002670288, 254684.326200000941753 ], [ 364760.947999998927116, 254680.909299999475479 ], [ 364706.10980000346899, 254681.515999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8600639, "LATITUDE": 18.32099406, "OBJECTID_1": 39749, "PARCEL_NO_": "107703031000", "Tax_Legal_": "NAZARETH ESTATE 2V-1A RED HOOK QTR", "Name": "BAILEY, MARCUS,GRACE & PETER", "Address": "PO Box 11671", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51400, "Improved_V": 104900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.07556834799999, "SHAPE_Area": 1513.3146523800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366334.808899998664856, 254700.967799998819828 ], [ 366329.414599999785423, 254671.581700000911951 ], [ 366282.634099997580051, 254672.887499999254942 ], [ 366299.223200000822544, 254713.342199999839067 ], [ 366334.808899998664856, 254700.967799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603022100", "MAP": "F9-177-T57", "PARCEL_NAM": "3-41", "ACRE": "0.22", "LONGITUDE": -64.88086084, "LATITUDE": 18.32097418, "OBJECTID_1": 38591, "PARCEL_NO_": "107603022100", "Tax_Legal_": "3-41 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "GEORGE, A & B", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24100, "Improved_V": 70000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.29441031099999, "SHAPE_Area": 805.97628248199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364095.129399999976158, 254680.026900000870228 ], [ 364118.17790000140667, 254689.339099999517202 ], [ 364123.176500000059605, 254673.156399998813868 ], [ 364123.197700001299381, 254670.666499998420477 ], [ 364125.145199999213219, 254653.758299998939037 ], [ 364108.753600001335144, 254646.620000001043081 ], [ 364105.610200002789497, 254652.747600000351667 ], [ 364095.129399999976158, 254680.026900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603031400", "MAP": "A9-78-T67", "PARCEL_NAM": "33-11", "ACRE": "0.92", "LONGITUDE": -64.87986646, "LATITUDE": 18.32112598, "OBJECTID_1": 38636, "PARCEL_NO_": "107603031400", "Tax_Legal_": "NADIR ESTATE 33-11 RED HOOK QTR", "Name": "YVONNE E MOOLENAAR REVOC TR", "Address": "7166 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 89200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.141156124600002, "SHAPE_Area": 359.98654233299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364230.347699999809265, 254682.055100001394749 ], [ 364206.208700001239777, 254675.946899998933077 ], [ 364203.656700000166893, 254691.546900000423193 ], [ 364228.623599998652935, 254695.128699999302626 ], [ 364229.510799996554852, 254685.636799998581409 ], [ 364230.347699999809265, 254682.055100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603034900", "MAP": "A9-78-T67", "PARCEL_NAM": "33-50", "ACRE": "0.10", "LONGITUDE": -64.87843007, "LATITUDE": 18.32103962, "OBJECTID_1": 38671, "PARCEL_NO_": "107603034900", "Tax_Legal_": "NADIR ESTATE 33-50 RED HOOK QTR", "Name": "ENGLAND, LUCIA", "Address": "45 East St", "City": "Hartford", "State": "Connecticut", "Zip": 6120, "Country": "United States", "Land_Value": 13600, "Improved_V": 78100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.821328753100005, "SHAPE_Area": 510.87615496199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364381.934399999678135, 254683.295699998736382 ], [ 364374.049300000071526, 254662.332899998873472 ], [ 364354.633100003004074, 254669.773400001227856 ], [ 364364.910199999809265, 254693.922200001776218 ], [ 364364.892200000584126, 254696.032900001853704 ], [ 364381.934399999678135, 254683.295699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603011400", "MAP": "F9-167-T57", "PARCEL_NAM": "3-50", "ACRE": null, "LONGITUDE": -64.88167192, "LATITUDE": 18.32100187, "OBJECTID_1": 38536, "PARCEL_NO_": "107603011400", "Tax_Legal_": "3-50 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "LYNTON, GLADSTONE A. & OTHERS", "Address": "PO Box 9277", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 201200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.287032037, "SHAPE_Area": 973.58501053299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364045.09179999679327, 254657.529599998146296 ], [ 364020.976199999451637, 254648.677400000393391 ], [ 364006.965000003576279, 254684.23759999871254 ], [ 364031.084200002253056, 254692.667599998414516 ], [ 364045.09179999679327, 254657.529599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85959926, "LATITUDE": 18.32098611, "OBJECTID_1": 39750, "PARCEL_NO_": "107703031100", "Tax_Legal_": "NAZARETH ESTATE 2V-2A RED HOOK QTR", "Name": "FREEMAN, JEFFREY E", "Address": "6903 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.08232823, "SHAPE_Area": 1663.5223460699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366387.935599997639656, 254711.957299999892712 ], [ 366377.795199997723103, 254671.766499999910593 ], [ 366329.414599999785423, 254671.581700000911951 ], [ 366334.808899998664856, 254700.967799998819828 ], [ 366339.653899997472763, 254700.163100000470877 ], [ 366351.743199996650219, 254700.895300000905991 ], [ 366360.589299999177456, 254703.711899999529123 ], [ 366368.611000001430511, 254708.632699999958277 ], [ 366379.87780000269413, 254711.258099999278784 ], [ 366387.935599997639656, 254711.957299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85920623, "LATITUDE": 18.32101252, "OBJECTID_1": 39754, "PARCEL_NO_": "107703031600", "Tax_Legal_": "2V-2 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "TORRES, ANTONIO & OPHELIA", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50500, "Improved_V": 321300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.57008253699999, "SHAPE_Area": 1427.0186888000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366426.647600002586842, 254711.218699999153614 ], [ 366410.053099997341633, 254671.397300001233816 ], [ 366377.795199997723103, 254671.766499999910593 ], [ 366387.935599997639656, 254711.957299999892712 ], [ 366426.647600002586842, 254711.218699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85878599, "LATITUDE": 18.32098433, "OBJECTID_1": 39757, "PARCEL_NO_": "107703031900", "Tax_Legal_": "2V-3 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "ARACELIS CORREA HARRIS TRUST", "Address": "PO Box 304615", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 80200, "Improved_V": 209400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.717084551, "SHAPE_Area": 2205.4589566700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366471.818999998271465, 254709.47749999910593 ], [ 366472.968800000846386, 254669.168000001460314 ], [ 366410.053099997341633, 254671.397300001233816 ], [ 366426.647600002586842, 254711.218699999153614 ], [ 366463.743299998342991, 254710.888999998569489 ], [ 366471.818999998271465, 254709.47749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704031800", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".42", "LONGITUDE": -64.85238892, "LATITUDE": 18.32096993, "OBJECTID_1": 39986, "PARCEL_NO_": "107704031800", "Tax_Legal_": "9-23 EST. NAZARETH RED HOOK QTR", "Name": "VIRGIN ISLANDS MONTESSORI SCHOOL INC", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.06236022499999, "SHAPE_Area": 2224.9515521799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367154.263300001621246, 254679.388099998235703 ], [ 367097.909500002861023, 254668.583299998193979 ], [ 367092.695799998939037, 254712.659200001507998 ], [ 367143.466499999165535, 254716.241099998354912 ], [ 367154.263300001621246, 254679.388099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704034600", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".52", "LONGITUDE": -64.84975296, "LATITUDE": 18.32091471, "OBJECTID_1": 40007, "PARCEL_NO_": "107704034600", "Tax_Legal_": "NAZARETH ESTATE 9-12 RED HOOK QTR", "Name": "DIOCESE OF ST THOMAS IN THE VI", "Address": "PO Box 301825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106300, "Improved_V": 271800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.949083468, "SHAPE_Area": 2103.2510542099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367405.5253000035882, 254717.541600000113249 ], [ 367419.351300001144409, 254703.722600001841784 ], [ 367427.470100000500679, 254697.245099999010563 ], [ 367430.781700000166893, 254687.139699999243021 ], [ 367430.002400003373623, 254683.967000000178814 ], [ 367425.234600000083447, 254675.695300001651049 ], [ 367421.208400003612041, 254675.028999999165535 ], [ 367417.207500003278255, 254671.407699998468161 ], [ 367416.451499998569489, 254665.490899998694658 ], [ 367378.488300003111362, 254672.990699999034405 ], [ 367366.186800003051758, 254697.165699999779463 ], [ 367405.5253000035882, 254717.541600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85834467, "LATITUDE": 18.32096115, "OBJECTID_1": 39758, "PARCEL_NO_": "107703032000", "Tax_Legal_": "NAZARETH ESTATE 2V-4 1 RED HOOK QTR", "Name": "RIDGE ROAD INVESTMENT CO LLC", "Address": "2V-4 Estate Nazareth", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46400, "Improved_V": 222100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.341999179, "SHAPE_Area": 1460.55127281 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366514.63629999756813, 254700.117600001394749 ], [ 366511.677199997007847, 254668.851500000804663 ], [ 366472.968800000846386, 254669.168000001460314 ], [ 366471.818999998271465, 254709.47749999910593 ], [ 366497.669600002467632, 254703.989500001072884 ], [ 366509.794799998402596, 254700.500199999660254 ], [ 366514.63629999756813, 254700.117600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86917274, "LATITUDE": 18.32104917, "OBJECTID_1": 39011, "PARCEL_NO_": "107604041600", "Tax_Legal_": "74BC FRYDENHOJ RED HOOK", "Name": "THOMPSON, MICHAEL R", "Address": "2529 99th St", "City": "East Elmhurst", "State": "New York", "Zip": 11369, "Country": "United States", "Land_Value": 18100, "Improved_V": 40800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.885543409899995, "SHAPE_Area": 337.06119391300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365331.479500003159046, 254689.810699999332428 ], [ 365332.281199999153614, 254689.877399999648333 ], [ 365362.174999997019768, 254695.626200001686811 ], [ 365362.385200001299381, 254694.275600001215935 ], [ 365364.863499999046326, 254687.329799998551607 ], [ 365334.30629999935627, 254677.36939999833703 ], [ 365331.479500003159046, 254689.810699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85791608, "LATITUDE": 18.32094118, "OBJECTID_1": 39763, "PARCEL_NO_": "107703032500", "Tax_Legal_": "NAZARETH ESTATE 2V-5A RED HOOK QTR", "Name": "TERESITA NUNEZ LIFE INTEREST", "Address": "PO Box 1093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46400, "Improved_V": 207300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.019531736, "SHAPE_Area": 1547.52539658 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366560.862300001084805, 254669.254099998623133 ], [ 366511.677199997007847, 254668.851500000804663 ], [ 366514.63629999756813, 254700.117600001394749 ], [ 366522.703000001609325, 254699.761399999260902 ], [ 366532.3716000020504, 254700.684900000691414 ], [ 366558.119599997997284, 254707.228500001132488 ], [ 366560.862300001084805, 254669.254099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87900753, "LATITUDE": 18.32100632, "OBJECTID_1": 38667, "PARCEL_NO_": "107603034500", "Tax_Legal_": "33-46 NADIR RED HOOK QTR", "Name": "NICHOLSON, EMELDA", "Address": "PO Box 924", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10800, "Improved_V": 89200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.906386385299996, "SHAPE_Area": 389.66927791799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364310.675899997353554, 254661.084800001233816 ], [ 364307.332599997520447, 254660.889499999582767 ], [ 364300.651500001549721, 254664.476399999111891 ], [ 364294.15429999679327, 254669.911699999123812 ], [ 364308.509700000286102, 254688.605399999767542 ], [ 364318.262699998915195, 254679.608199998736382 ], [ 364319.886100001633167, 254678.354899998754263 ], [ 364312.751599997282028, 254663.942200001329184 ], [ 364310.675899997353554, 254661.084800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85582975, "LATITUDE": 18.32093987, "OBJECTID_1": 39789, "PARCEL_NO_": "107704012900", "Tax_Legal_": "2V-7B ESTATE NAZARETH RED HOOK QTR", "Name": "WILLIAMS, SR. , TERRANCE & ANGELLA", "Address": "PO Box 363368", "City": "San Juan", "State": "Puerto Rico", "Zip": 923, "Country": "United States", "Land_Value": 47900, "Improved_V": 116800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.54091051099999, "SHAPE_Area": 1432.63614063 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366772.146700002253056, 254667.394799999892712 ], [ 366735.03830000013113, 254669.201999999582767 ], [ 366741.193899996578693, 254703.871700000017881 ], [ 366780.670900002121925, 254707.994500000029802 ], [ 366772.146700002253056, 254667.394799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86149781, "LATITUDE": 18.32094171, "OBJECTID_1": 39666, "PARCEL_NO_": "107703020200", "Tax_Legal_": "NAZARETH ESTATE 2W-72 RED HOOK QTR", "Name": "O'GARROW, DENNIS & HELEN", "Address": "PO Box 11143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.85916338600001, "SHAPE_Area": 768.31716665199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366177.674999997019768, 254688.282699998468161 ], [ 366161.760999999940395, 254663.243400000035763 ], [ 366142.330300003290176, 254672.372499998658895 ], [ 366151.752499997615814, 254702.213799998164177 ], [ 366177.674999997019768, 254688.282699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603011300", "MAP": "F9-142-T57", "PARCEL_NAM": "3-51", "ACRE": "0.22", "LONGITUDE": -64.88189115, "LATITUDE": 18.32092784, "OBJECTID_1": 38535, "PARCEL_NO_": "107603011300", "Tax_Legal_": "3-51 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "COIPEL, THOMAS & ROSALIND", "Address": "6575 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25100, "Improved_V": 195700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.21847448699999, "SHAPE_Area": 901.59024170700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364020.976199999451637, 254648.677400000393391 ], [ 363997.661399997770786, 254640.464999999850988 ], [ 363994.339100003242493, 254651.836899999529123 ], [ 363985.257500000298023, 254676.671599999070168 ], [ 364006.965000003576279, 254684.23759999871254 ], [ 364020.976199999451637, 254648.677400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603022200", "MAP": "F9-136-T57", "PARCEL_NAM": "3-40", "ACRE": "0.22", "LONGITUDE": -64.88107179, "LATITUDE": 18.32088171, "OBJECTID_1": 38592, "PARCEL_NO_": "107603022200", "Tax_Legal_": "3-40 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "GEORGE, A & B", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26300, "Improved_V": 202400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.64465282800001, "SHAPE_Area": 958.19783326699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364070.956900000572205, 254670.260600000619888 ], [ 364095.129399999976158, 254680.026900000870228 ], [ 364105.610200002789497, 254652.747600000351667 ], [ 364108.753600001335144, 254646.620000001043081 ], [ 364083.63740000128746, 254635.515999998897314 ], [ 364081.505400002002716, 254642.628899998962879 ], [ 364070.956900000572205, 254670.260600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604044500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86885382, "LATITUDE": 18.32099471, "OBJECTID_1": 39039, "PARCEL_NO_": "107604044500", "Tax_Legal_": "12P EST FRYDENHOJ RED HOOK QTR", "Name": "GEORGE, ALBERT", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.201076762100001, "SHAPE_Area": 277.26847493899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365380.115099996328354, 254695.476100001484156 ], [ 365380.13849999755621, 254692.732099998742342 ], [ 365390.793200001120567, 254672.554299999028444 ], [ 365391.628300003707409, 254669.183699999004602 ], [ 365390.030000001192093, 254667.481800001114607 ], [ 365385.192100003361702, 254667.442200001329184 ], [ 365381.131800003349781, 254670.786499999463558 ], [ 365375.399499997496605, 254681.083200000226498 ], [ 365373.738300003111362, 254686.769099999219179 ], [ 365371.281599998474121, 254691.182000000029802 ], [ 365370.439400002360344, 254695.396899998188019 ], [ 365380.115099996328354, 254695.476100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704035100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85079544, "LATITUDE": 18.32087382, "OBJECTID_1": 40012, "PARCEL_NO_": "107704035100", "Tax_Legal_": "NAZARETH 9H-3 RED HOOK QTR", "Name": "SCHMIDT, BRYAN K", "Address": "5326 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 210300, "Improved_V": 812500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.903532504, "SHAPE_Area": 2108.1021290100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367272.972800001502037, 254659.039299998432398 ], [ 367263.689800001680851, 254707.514800000935793 ], [ 367273.343999996781349, 254710.126899998635054 ], [ 367283.824199996888638, 254710.423799999058247 ], [ 367292.709899999201298, 254708.596700001507998 ], [ 367302.425200000405312, 254704.0320999994874 ], [ 367309.746699996292591, 254696.49269999936223 ], [ 367314.658299997448921, 254687.878100000321865 ], [ 367318.887699998915195, 254664.692400000989437 ], [ 367272.972800001502037, 254659.039299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87598679, "LATITUDE": 18.32091946, "OBJECTID_1": 38784, "PARCEL_NO_": "107603060300", "Tax_Legal_": "NADIR 7C RED HOOK QTR", "Name": "DONOVAN, NOAMI", "Address": "6605 Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31100, "Improved_V": 328700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.49699790700001, "SHAPE_Area": 1260.3843375399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364652.022100001573563, 254688.672699999064207 ], [ 364629.040100000798702, 254641.410700000822544 ], [ 364603.976099997758865, 254649.227099999785423 ], [ 364620.588500000536442, 254686.937699999660254 ], [ 364652.022100001573563, 254688.672699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87570738, "LATITUDE": 18.3209018, "OBJECTID_1": 38785, "PARCEL_NO_": "107603060400", "Tax_Legal_": "7D NADIR RED HOOK QTR", "Name": "LEONARD, EZEKIEL", "Address": "4046 W 132nd St", "City": "Hawthorne", "State": "California", "Zip": 90250, "Country": "United States", "Land_Value": 49100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.620494839, "SHAPE_Area": 1575.3534750900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364689.927799999713898, 254687.927400000393391 ], [ 364649.255400002002716, 254634.821199998259544 ], [ 364629.040100000798702, 254641.410700000822544 ], [ 364652.022100001573563, 254688.672699999064207 ], [ 364660.087099999189377, 254688.52760000154376 ], [ 364689.927799999713898, 254687.927400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87412714, "LATITUDE": 18.32090908, "OBJECTID_1": 38904, "PARCEL_NO_": "107604015000", "Tax_Legal_": "15-D EST. NADIR RED HOOK QTR.", "Name": "GOMEZ, EZRA A. JR. & ENA A", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27800, "Improved_V": 290600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.401747409, "SHAPE_Area": 931.88313469000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364837.039899997413158, 254646.490600001066923 ], [ 364813.644299998879433, 254647.776799999177456 ], [ 364810.100699998438358, 254685.111299999058247 ], [ 364832.639700002968311, 254689.728700000792742 ], [ 364837.039899997413158, 254646.490600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87098122, "LATITUDE": 18.32098011, "OBJECTID_1": 38961, "PARCEL_NO_": "107604031700", "Tax_Legal_": "FRYDENHOJ 2D & 2E-1 RED HOOK QTR", "Name": "BLYDEN, DEVON & FLAVIA", "Address": "PO Box 306271", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57000, "Improved_V": 78500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.95370481, "SHAPE_Area": 2016.2790666200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365133.610100001096725, 254666.860800001770258 ], [ 365111.018899999558926, 254668.364700000733137 ], [ 365118.900399997830391, 254689.749600000679493 ], [ 365120.495099999010563, 254691.873599998652935 ], [ 365156.793499998748302, 254690.48200000077486 ], [ 365163.245800003409386, 254690.323699999600649 ], [ 365198.737999998033047, 254688.925400000065565 ], [ 365195.631399996578693, 254674.967799998819828 ], [ 365192.506800003349781, 254663.120999999344349 ], [ 365133.610100001096725, 254666.860800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603060500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87547714, "LATITUDE": 18.32082193, "OBJECTID_1": 38786, "PARCEL_NO_": "107603060500", "Tax_Legal_": "7E NADIR RED HOOK QTR.", "Name": "JOSEPH, ALEXIA", "Address": "6A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42900, "Improved_V": 202000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.271320425, "SHAPE_Area": 1700.5419069500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364705.445600003004074, 254664.834199998527765 ], [ 364668.711199998855591, 254622.736999999731779 ], [ 364649.255400002002716, 254634.821199998259544 ], [ 364689.927799999713898, 254687.927400000393391 ], [ 364706.865800000727177, 254687.432799998670816 ], [ 364706.10980000346899, 254681.515999998897314 ], [ 364705.445600003004074, 254664.834199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604042100", "MAP": "F9-515-T60", "PARCEL_NAM": "12O", "ACRE": null, "LONGITUDE": -64.86863377, "LATITUDE": 18.32097919, "OBJECTID_1": 39016, "PARCEL_NO_": "107604042100", "Tax_Legal_": "12-0 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "JOSEPH, JOHN & CLARICE", "Address": "8748 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.175042411500002, "SHAPE_Area": 459.81539895700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365409.422899998724461, 254662.785399999469519 ], [ 365398.883299998939037, 254669.454100001603365 ], [ 365398.017599999904633, 254676.413100000470877 ], [ 365391.482600003480911, 254686.281100001186132 ], [ 365389.00789999961853, 254692.804699998348951 ], [ 365391.419699996709824, 254693.668800000101328 ], [ 365418.098099999129772, 254685.654500000178814 ], [ 365409.422899998724461, 254662.785399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603060200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87628013, "LATITUDE": 18.32095473, "OBJECTID_1": 38783, "PARCEL_NO_": "107603060200", "Tax_Legal_": "7B NADIR RED HOOK QTR", "Name": "GOMEZ-MOSES (TRUSTEE), IVY", "Address": "PO Box 9686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31100, "Improved_V": 147800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.089583549, "SHAPE_Area": 1190.26093343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364603.976099997758865, 254649.227099999785423 ], [ 364595.093999996781349, 254650.632100000977516 ], [ 364586.224600002169609, 254650.559500001370907 ], [ 364584.604800000786781, 254651.390599999576807 ], [ 364575.539300002157688, 254674.325599998235703 ], [ 364575.451200000941753, 254684.668499998748302 ], [ 364620.588500000536442, 254686.937699999660254 ], [ 364603.976099997758865, 254649.227099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8545799, "LATITUDE": 18.32078151, "OBJECTID_1": 39793, "PARCEL_NO_": "107704013500", "Tax_Legal_": "NAZARETH ESTATE 2Y-1 RED HOOK QUARTER", "Name": "RODNEY L RENNER & DERON R BOYLES", "Address": "9785 Coleman Rd", "City": "Roswell", "State": "Georgia", "Zip": 30075, "Country": "United States", "Land_Value": 85700, "Improved_V": 131200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.595863804, "SHAPE_Area": 2020.1925153499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366923.643500000238419, 254679.189399998635054 ], [ 366881.261399999260902, 254637.468100000172853 ], [ 366869.890299998223782, 254647.085400000214577 ], [ 366860.981299996376038, 254651.656500000506639 ], [ 366887.136500000953674, 254705.066199999302626 ], [ 366923.643500000238419, 254679.189399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85621421, "LATITUDE": 18.32093112, "OBJECTID_1": 39784, "PARCEL_NO_": "107704012300", "Tax_Legal_": "2V-7A ESTATE NAZARETH RED HOOK QTR", "Name": "SIDIROPOULOS, EVDOKIA & HELEN", "Address": "PO Box 502625", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39900, "Improved_V": 192200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.06002564, "SHAPE_Area": 1374.50879642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366735.03830000013113, 254669.201999999582767 ], [ 366695.521799996495247, 254669.722899999469519 ], [ 366694.465599998831749, 254699.05629999935627 ], [ 366741.193899996578693, 254703.871700000017881 ], [ 366735.03830000013113, 254669.201999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87943787, "LATITUDE": 18.32098923, "OBJECTID_1": 38653, "PARCEL_NO_": "107603033100", "Tax_Legal_": "33-32&33-93 NADIR NO.2 RED HOOK QTR", "Name": "WILLIAMS, ESTHER", "Address": "PO Box 8714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13200, "Improved_V": 111300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.592849112799996, "SHAPE_Area": 485.68727989899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364277.198299996554852, 254672.517099998891354 ], [ 364255.564599998295307, 254656.296900000423193 ], [ 364249.864600002765656, 254662.794199999421835 ], [ 364244.963799998164177, 254670.142299998551607 ], [ 364266.622800000011921, 254683.407400000840425 ], [ 364271.439099997282028, 254685.980000000447035 ], [ 364277.975900001823902, 254675.901000000536442 ], [ 364278.796599999070168, 254674.218899998813868 ], [ 364277.198299996554852, 254672.517099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85506258, "LATITUDE": 18.32086911, "OBJECTID_1": 39792, "PARCEL_NO_": "107704013400", "Tax_Legal_": "NAZARETH ESTATE 2-O RED HOOK QTR", "Name": "STEVE AND MELISSA LOWE TRUST", "Address": "PO Box 6081", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 66300, "Improved_V": 199400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.156618431, "SHAPE_Area": 1576.46039991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366852.88400000333786, 254655.600999999791384 ], [ 366843.174099996685982, 254659.532299999147654 ], [ 366829.430799998342991, 254663.641699999570847 ], [ 366815.712700001895428, 254664.796000000089407 ], [ 366821.024300001561642, 254703.891800001263618 ], [ 366865.481100000441074, 254691.378899998962879 ], [ 366852.88400000333786, 254655.600999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704035300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85125903, "LATITUDE": 18.32067794, "OBJECTID_1": 40014, "PARCEL_NO_": "107704035300", "Tax_Legal_": "NAZARETH 9H-2 RED HOOK QTR", "Name": "BAST, THADDEUS & BETTY", "Address": "PO Box 11051", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 258900, "Improved_V": 433000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.28976388800001, "SHAPE_Area": 3687.7124970099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367231.377199999988079, 254619.646499998867512 ], [ 367210.969499997794628, 254648.82149999961257 ], [ 367205.998499996960163, 254664.401700001209974 ], [ 367204.332000002264977, 254670.720899999141693 ], [ 367227.585600003600121, 254686.109999999403954 ], [ 367243.585900001227856, 254701.017499998211861 ], [ 367246.017499998211861, 254699.55970000103116 ], [ 367251.65990000218153, 254699.81700000166893 ], [ 367254.865299999713898, 254702.165199998766184 ], [ 367256.45099999755621, 254705.3445999994874 ], [ 367263.689800001680851, 254707.514800000935793 ], [ 367272.972800001502037, 254659.039299998432398 ], [ 367243.480899997055531, 254618.690099999308586 ], [ 367231.377199999988079, 254619.646499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603031500", "MAP": "A9-78-T67", "PARCEL_NAM": "33-10", "ACRE": "0.10", "LONGITUDE": -64.8798374, "LATITUDE": 18.32099035, "OBJECTID_1": 38637, "PARCEL_NO_": "107603031500", "Tax_Legal_": "NADIR ESTATE 33-10 RED HOOK QTR", "Name": "ESTRILL, CECILE DOANE-", "Address": "PO Box 7093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 80200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.385886898899997, "SHAPE_Area": 397.35061084300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364234.479999996721745, 254670.267599999904633 ], [ 364212.009300000965595, 254657.629200000315905 ], [ 364206.208700001239777, 254675.946899998933077 ], [ 364230.347699999809265, 254682.055100001394749 ], [ 364234.479999996721745, 254670.267599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8473498, "LATITUDE": 18.32081601, "OBJECTID_1": 40187, "PARCEL_NO_": "107803013100", "Tax_Legal_": "ESTATE NAZARETH 9-60 RED HOOK QUARTER", "Name": "VOLETHA FRETT and RAEMON RICHARDS", "Address": "6259 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 116900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.390833746, "SHAPE_Area": 2054.0626785499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367688.844800002872944, 254684.185600001364946 ], [ 367680.916599996387959, 254668.288699999451637 ], [ 367677.818999998271465, 254653.275699999183416 ], [ 367618.744199998676777, 254677.912300001829863 ], [ 367635.412399999797344, 254709.079500000923872 ], [ 367688.844800002872944, 254684.185600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704034900", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".59", "LONGITUDE": -64.85020542, "LATITUDE": 18.32074568, "OBJECTID_1": 40010, "PARCEL_NO_": "107704034900", "Tax_Legal_": "NAZARETH 9 11 1 RED HOOK QTR", "Name": "CURTIS DE CAMP KAYE DE CAMP LIVING REVOC TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 147700, "Improved_V": 267000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.087930736, "SHAPE_Area": 2340.9479484799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367378.488300003111362, 254672.990699999034405 ], [ 367381.070799998939037, 254653.802299998700619 ], [ 367331.988300003111362, 254641.368200000375509 ], [ 367325.190700002014637, 254682.053700000047684 ], [ 367362.079700000584126, 254705.997999999672174 ], [ 367366.186800003051758, 254697.165699999779463 ], [ 367378.488300003111362, 254672.990699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85659375, "LATITUDE": 18.32091177, "OBJECTID_1": 39779, "PARCEL_NO_": "107704011500", "Tax_Legal_": "2V-6C ESTATE NAZARETH RED HOOK QTR", "Name": "GERARD & OCTAVIA CASTOR JOINT LIV TR", "Address": "PO Box 9435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49300, "Improved_V": 208600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.70473709199999, "SHAPE_Area": 1012.81829418 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366695.521799996495247, 254669.722899999469519 ], [ 366659.237800002098083, 254669.425999999046326 ], [ 366657.405799999833107, 254695.16440000012517 ], [ 366694.465599998831749, 254699.05629999935627 ], [ 366695.521799996495247, 254669.722899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86912926, "LATITUDE": 18.32093452, "OBJECTID_1": 39012, "PARCEL_NO_": "107604041700", "Tax_Legal_": "74BB ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "THOMPSON, MICHAEL", "Address": "2529 99th St", "City": "East Elmhurst", "State": "New York", "Zip": 11369, "Country": "United States", "Land_Value": 17200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.872920629899994, "SHAPE_Area": 535.39018244500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365371.438100002706051, 254672.81810000166297 ], [ 365337.666500002145767, 254661.564800001680851 ], [ 365334.30629999935627, 254677.36939999833703 ], [ 365364.863499999046326, 254687.329799998551607 ], [ 365367.34179999679327, 254680.383900001645088 ], [ 365371.438100002706051, 254672.81810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603011200", "MAP": "F9-161-T57", "PARCEL_NAM": "3-52", "ACRE": "0.22", "LONGITUDE": -64.88215398, "LATITUDE": 18.32084797, "OBJECTID_1": 38534, "PARCEL_NO_": "107603011200", "Tax_Legal_": "3-52 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "SMALLS, PAUL", "Address": "7492 Estate Bovoni Number 5", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27700, "Improved_V": 219800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.712936404, "SHAPE_Area": 874.01162203499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363992.035199999809265, 254638.308100000023842 ], [ 363971.128700003027916, 254631.381999999284744 ], [ 363958.744499996304512, 254665.266699999570847 ], [ 363957.921999998390675, 254667.159800000488758 ], [ 363979.622299998998642, 254675.570000000298023 ], [ 363992.035199999809265, 254638.308100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87886974, "LATITUDE": 18.32091856, "OBJECTID_1": 38668, "PARCEL_NO_": "107603034600", "Tax_Legal_": "33-47 NADIR RED HOOK QTR", "Name": "TODMAN, HERALDO & LILLIAN", "Address": "PO Box 7384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 66800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.645705909200004, "SHAPE_Area": 315.685175329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364310.023500002920628, 254656.839400000870228 ], [ 364321.29619999974966, 254677.378499999642372 ], [ 364330.431100003421307, 254671.052999999374151 ], [ 364333.672600001096725, 254669.17960000038147 ], [ 364325.747900001704693, 254652.860599998384714 ], [ 364310.023500002920628, 254656.839400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84671634, "LATITUDE": 18.32072041, "OBJECTID_1": 40201, "PARCEL_NO_": "107803020700", "Tax_Legal_": "5-14 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "BLUMENTHAL, CHARLOTTE S", "Address": "Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 184600, "Improved_V": 767100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.921440295, "SHAPE_Area": 2412.4337900199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367740.129799999296665, 254627.399000000208616 ], [ 367689.798600003123283, 254666.883699998259544 ], [ 367700.912600003182888, 254687.450800001621246 ], [ 367711.308300003409386, 254697.668400000780821 ], [ 367717.724600002169609, 254701.731699999421835 ], [ 367723.34910000115633, 254704.099700000137091 ], [ 367729.785199999809265, 254705.841099999845028 ], [ 367739.457299999892712, 254706.342500001192093 ], [ 367740.129799999296665, 254627.399000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84637965, "LATITUDE": 18.32062853, "OBJECTID_1": 40202, "PARCEL_NO_": "107803020800", "Tax_Legal_": "EST NAZARETH 5-15 RED HOOK QTR", "Name": "GRYBOWSKI FAMILY TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 142800, "Improved_V": 438400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.25309661599999, "SHAPE_Area": 2483.6692566800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367739.457299999892712, 254706.342500001192093 ], [ 367750.769100002944469, 254703.690900001674891 ], [ 367759.681699998676777, 254698.697599999606609 ], [ 367764.557300001382828, 254694.304499998688698 ], [ 367773.700099997222424, 254662.293099999427795 ], [ 367779.455700002610683, 254649.252399999648333 ], [ 367781.082699999213219, 254647.576999999582767 ], [ 367784.455399997532368, 254630.294900000095367 ], [ 367740.129799999296665, 254627.399000000208616 ], [ 367739.457299999892712, 254706.342500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8627229, "LATITUDE": 18.32074487, "OBJECTID_1": 39620, "PARCEL_NO_": "107703012600", "Tax_Legal_": "41-5-10 ESTATE FRYDENHOY No.1 RED HOOK QTR.", "Name": "HODGE, LERONE & JOY VANTERPOOL HODGE", "Address": "PO Box 11516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47800, "Improved_V": 70400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.54345888200001, "SHAPE_Area": 1528.2931745799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366029.021499998867512, 254626.693300001323223 ], [ 366004.510200001299381, 254664.278400000184774 ], [ 366010.930200003087521, 254667.919599998742342 ], [ 366022.935000002384186, 254678.572500001639128 ], [ 366026.912600003182888, 254684.937800001353025 ], [ 366027.68469999730587, 254688.954900000244379 ], [ 366029.279399998486042, 254691.078899998217821 ], [ 366034.113600000739098, 254691.540699999779463 ], [ 366036.552400000393391, 254689.238600000739098 ], [ 366040.643299996852875, 254682.306000001728535 ], [ 366043.125100001692772, 254674.938000001013279 ], [ 366046.481700003147125, 254659.555700000375509 ], [ 366044.087899997830391, 254656.580800000578165 ], [ 366044.122100003063679, 254652.570300001651049 ], [ 366044.955300003290176, 254649.410700000822544 ], [ 366049.013899996876717, 254646.277499999850988 ], [ 366029.021499998867512, 254626.693300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603022300", "MAP": "F9-136-T57", "PARCEL_NAM": "3-39", "ACRE": "0.22", "LONGITUDE": -64.88128454, "LATITUDE": 18.32079719, "OBJECTID_1": 38593, "PARCEL_NO_": "107603022300", "Tax_Legal_": "PAR 3-39A BOVONI 1 & 2 FRENCHMAN'S BAY QTR", "Name": "DENISE GEORGE COUNTS", "Address": "PO Box 301812", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8031812, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.419205187, "SHAPE_Area": 847.63382764400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364050.061800003051758, 254661.818399999290705 ], [ 364070.956900000572205, 254670.260600000619888 ], [ 364081.505400002002716, 254642.628899998962879 ], [ 364083.63740000128746, 254635.515999998897314 ], [ 364077.821099996566772, 254632.343400001525879 ], [ 364064.073299996554852, 254626.262699998915195 ], [ 364059.979900002479553, 254635.970899999141693 ], [ 364058.658500000834465, 254639.105000000447035 ], [ 364050.061800003051758, 254661.818399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604042300", "MAP": "F9-515-T60", "PARCEL_NAM": "12N", "ACRE": null, "LONGITUDE": -64.86845585, "LATITUDE": 18.32089337, "OBJECTID_1": 39017, "PARCEL_NO_": "107604042300", "Tax_Legal_": "12N ESTATE FRYDENHOJ RED HOOK QTR", "Name": "MAYNARD, ALBERTHA", "Address": "254 E 184th St", "City": "Bronx", "State": "New York", "Zip": 10458, "Country": "United States", "Land_Value": 15900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.075609811600003, "SHAPE_Area": 516.15150664500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365439.143100000917912, 254676.327599998563528 ], [ 365423.203900001943111, 254654.243400000035763 ], [ 365409.422899998724461, 254662.785399999469519 ], [ 365418.098099999129772, 254685.654500000178814 ], [ 365431.036899998784065, 254681.327399998903275 ], [ 365439.143100000917912, 254676.327599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85697036000001, "LATITUDE": 18.32089466, "OBJECTID_1": 39774, "PARCEL_NO_": "107704010800", "Tax_Legal_": "2V-6 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "PARKER, WINSTON", "Address": "215-229 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45200, "Improved_V": 225100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.396475423, "SHAPE_Area": 1026.2637822500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366659.237800002098083, 254669.425999999046326 ], [ 366614.887000001966953, 254669.485199999064207 ], [ 366614.705399997532368, 254690.804099999368191 ], [ 366657.405799999833107, 254695.16440000012517 ], [ 366659.237800002098083, 254669.425999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87249144, "LATITUDE": 18.32086839, "OBJECTID_1": 38887, "PARCEL_NO_": "107604012900", "Tax_Legal_": "14C EST NADIR RED HOOK QTR", "Name": "RODRIQUEZ, ALICE", "Address": "7083 ESTATE TUTU 148-151", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29800, "Improved_V": 32900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.36285153899999, "SHAPE_Area": 1029.3298018200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365022.223899997770786, 254679.459199998527765 ], [ 365013.467699997127056, 254666.088599998503923 ], [ 365006.354800000786781, 254649.142900001257658 ], [ 364968.450900003314018, 254649.677099999040365 ], [ 364993.180399999022484, 254681.121300000697374 ], [ 365022.223899997770786, 254679.459199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803041200", "MAP": null, "PARCEL_NAM": "3", "ACRE": "9.75", "LONGITUDE": -64.84172412, "LATITUDE": 18.31970965, "OBJECTID_1": 40512, "PARCEL_NO_": "107803041200", "Tax_Legal_": "3 & 4-9 NAZARETH NO.1 RED HOOK QTR.", "Name": "RC HOTELS(VIRGIN ISLANDS)INC.", "Address": "14185 Dallas Parkway", "City": "Dallas", "State": "Texas", "Zip": 752541319, "Country": "United States", "Land_Value": 4779800, "Improved_V": 25226700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 919.73551161499995, "SHAPE_Area": 35971.632264799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368293.461900003254414, 254418.934399999678135 ], [ 368273.835299998521805, 254451.070999998599291 ], [ 368126.619599997997284, 254599.32039999961853 ], [ 368111.537799999117851, 254665.902499999850988 ], [ 368229.727700002491474, 254706.555399999022484 ], [ 368237.015000000596046, 254703.026500001549721 ], [ 368243.533900000154972, 254695.058299999684095 ], [ 368246.066100001335144, 254681.780099999159575 ], [ 368247.009099997580051, 254665.744699999690056 ], [ 368245.538500003516674, 254649.05629999935627 ], [ 368249.706699997186661, 254633.0472999997437 ], [ 368261.151600003242493, 254614.775800000876188 ], [ 368272.64130000025034, 254591.227400001138449 ], [ 368280.79619999974966, 254580.528400000184774 ], [ 368292.993299998342991, 254568.595899999141693 ], [ 368314.878899998962879, 254555.265000000596046 ], [ 368326.204999998211861, 254550.924699999392033 ], [ 368333.463600002229214, 254550.772999998182058 ], [ 368342.316899999976158, 254552.745299998670816 ], [ 368349.541299998760223, 254556.604200001806021 ], [ 368355.943300001323223, 254562.356100000441074 ], [ 368366.387599997222424, 254566.874499998986721 ], [ 368376.860600002110004, 254568.015700001269579 ], [ 368372.126999996602535, 254555.733500000089407 ], [ 368385.186300002038479, 254537.264199998229742 ], [ 368411.25620000064373, 254506.024599999189377 ], [ 368406.423699997365475, 254505.351799998432398 ], [ 368403.212899997830391, 254503.636799998581409 ], [ 368359.174999997019768, 254466.968199998140335 ], [ 368330.370700001716614, 254440.55689999833703 ], [ 368328.75450000166893, 254440.965900000184774 ], [ 368295.902500003576279, 254416.42119999974966 ], [ 368293.461900003254414, 254418.934399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86130452, "LATITUDE": 18.32083688, "OBJECTID_1": 39686, "PARCEL_NO_": "107703022500", "Tax_Legal_": "NAZARETH ESTATE 2W-71 RED HOOK QTR", "Name": "GONZALES, JORGE & KAREN", "Address": "PO Box 10131", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23400, "Improved_V": 78100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.915657717, "SHAPE_Area": 619.63997799599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366196.310099996626377, 254677.880499999970198 ], [ 366181.193400003015995, 254653.903200000524521 ], [ 366161.760999999940395, 254663.243400000035763 ], [ 366177.674999997019768, 254688.282699998468161 ], [ 366196.310099996626377, 254677.880499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87934403, "LATITUDE": 18.32088041, "OBJECTID_1": 38652, "PARCEL_NO_": "107603033000", "Tax_Legal_": "33-31 NADIR RED HOOK QTR", "Name": "FRANCIS, GENEVIVE", "Address": "7413 Lanham Ln", "City": "Fort Washington", "State": "Maryland", "Zip": 20744, "Country": "United States", "Land_Value": 12000, "Improved_V": 109400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.856243351800003, "SHAPE_Area": 438.87877824200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364286.922600001096725, 254666.897199999541044 ], [ 364270.187899999320507, 254643.539900001138449 ], [ 364255.564599998295307, 254656.296900000423193 ], [ 364277.198299996554852, 254672.517099998891354 ], [ 364278.796599999070168, 254674.218899998813868 ], [ 364287.716399997472763, 254668.381299998611212 ], [ 364286.922600001096725, 254666.897199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86203285000001, "LATITUDE": 18.32086223, "OBJECTID_1": 39622, "PARCEL_NO_": "107703012800", "Tax_Legal_": "NAZARETH ESTATE 2W-8 RED HOOK QTR", "Name": "CHRISTOPHER, CARL", "Address": "PO Box 11057", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33400, "Improved_V": 297600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.73130598900001, "SHAPE_Area": 771.15082865199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366116.427599996328354, 254683.981699999421835 ], [ 366118.243500001728535, 254660.14299999922514 ], [ 366085.173900000751019, 254661.138900000602007 ], [ 366086.727099999785423, 254668.11769999936223 ], [ 366087.310500003397465, 254685.558899998664856 ], [ 366100.243900001049042, 254685.848000001162291 ], [ 366116.207900002598763, 254686.204700000584126 ], [ 366116.427599996328354, 254683.981699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86795273, "LATITUDE": 18.32075919, "OBJECTID_1": 39020, "PARCEL_NO_": "107604042600", "Tax_Legal_": "12D FRYDENHOJ RED HOOK QTR", "Name": "BENJAMIN, ALICIA A", "Address": "PO Box 8961", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21200, "Improved_V": 78300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.61937063, "SHAPE_Area": 847.03659918100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365495.890699997544289, 254640.906100001186132 ], [ 365496.812100000679493, 254627.4037000015378 ], [ 365465.961800001561642, 254651.84910000115633 ], [ 365461.842200003564358, 254662.159000001847744 ], [ 365455.316200003027916, 254670.971500001847744 ], [ 365469.738099999725819, 254681.85530000180006 ], [ 365495.890699997544289, 254640.906100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603031600", "MAP": "A9-78-T67", "PARCEL_NAM": "33-9", "ACRE": "0.09", "LONGITUDE": -64.87977554, "LATITUDE": 18.3208589, "OBJECTID_1": 38638, "PARCEL_NO_": "107603031600", "Tax_Legal_": "NADIR ESTATE 33-9 RED HOOK QTR", "Name": "TROTMAN, EILEEN", "Address": "7169 Nadir Home", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 147000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.003124376399995, "SHAPE_Area": 416.24202509200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364241.835699997842312, 254658.717700000852346 ], [ 364220.209100000560284, 254641.653200000524521 ], [ 364212.009300000965595, 254657.629200000315905 ], [ 364234.479999996721745, 254670.267599999904633 ], [ 364237.755599997937679, 254664.383799999952316 ], [ 364241.835699997842312, 254658.717700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603022400", "MAP": "F9-407-T59", "PARCEL_NAM": "3-25", "ACRE": "0.50", "LONGITUDE": -64.88049658, "LATITUDE": 18.3207723, "OBJECTID_1": 38594, "PARCEL_NO_": "107603022400", "Tax_Legal_": "25 OF 3 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "GOMEZ, HUGH", "Address": "PO Box 10130", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 11900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.37935684600001, "SHAPE_Area": 813.90863500499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364133.023699998855591, 254653.10869999974966 ], [ 364176.8125, 254667.719700001180172 ], [ 364148.54619999974966, 254629.456500001251698 ], [ 364153.441600002348423, 254622.741599999368191 ], [ 364147.012699998915195, 254620.155900001525879 ], [ 364140.48309999704361, 254629.390500001609325 ], [ 364135.551700003445148, 254640.326999999582767 ], [ 364133.049999997019768, 254650.0168999992311 ], [ 364133.023699998855591, 254653.10869999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87871507, "LATITUDE": 18.32085574, "OBJECTID_1": 38669, "PARCEL_NO_": "107603034700", "Tax_Legal_": "NADIR 33-48 RED HOOK QTR", "Name": "SPROTT, A R & DELVILLE, H A", "Address": "7105 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11700, "Improved_V": 60900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.910700525300001, "SHAPE_Area": 347.05237626299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364351.478000000119209, 254661.514899998903275 ], [ 364344.355999998748302, 254645.624600000679493 ], [ 364325.747900001704693, 254652.860599998384714 ], [ 364333.672600001096725, 254669.17960000038147 ], [ 364341.768100000917912, 254665.446199998259544 ], [ 364351.478000000119209, 254661.514899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8792338, "LATITUDE": 18.32080392, "OBJECTID_1": 38651, "PARCEL_NO_": "107603032900", "Tax_Legal_": "NADIR 33-30 RED HOOK QTR", "Name": "BRATHWAITE, IVY", "Address": "PO Box 301942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10800, "Improved_V": 138200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.004103532299993, "SHAPE_Area": 395.73099524399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364286.922600001096725, 254666.897199999541044 ], [ 364287.716399997472763, 254668.381299998611212 ], [ 364290.959600001573563, 254666.296900000423193 ], [ 364295.009099997580051, 254664.219099998474121 ], [ 364286.384199999272823, 254635.439800001680851 ], [ 364280.718500003218651, 254637.926600001752377 ], [ 364274.24099999666214, 254641.03999999910593 ], [ 364271.809500001370907, 254642.497699998319149 ], [ 364270.187899999320507, 254643.539900001138449 ], [ 364286.922600001096725, 254666.897199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87042091000001, "LATITUDE": 18.32073645, "OBJECTID_1": 38963, "PARCEL_NO_": "107604031900", "Tax_Legal_": "FRYDENHOJ ESTATE 2-2 No.3 RED HOOK QTR.", "Name": "HERMAN, CELIA ICENA", "Address": "12925 S.W.190 TERRACE", "City": "Miami", "State": "Florida", "Zip": 33177, "Country": "United States", "Land_Value": 60600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.629678684, "SHAPE_Area": 1706.32906957 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365187.040700003504753, 254642.177999999374151 ], [ 365187.821800000965595, 254645.139699999243021 ], [ 365192.506800003349781, 254663.120999999344349 ], [ 365195.631399996578693, 254674.967799998819828 ], [ 365244.945900000631809, 254660.172699999064207 ], [ 365241.805200003087521, 254650.225600000470877 ], [ 365234.735399998724461, 254628.214000001549721 ], [ 365187.040700003504753, 254642.177999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604042500", "MAP": "F9-515-T60", "PARCEL_NAM": "12E", "ACRE": null, "LONGITUDE": -64.86830058, "LATITUDE": 18.32079787, "OBJECTID_1": 39019, "PARCEL_NO_": "107604042500", "Tax_Legal_": "12E EST FRYDENHOJ RED HOOK", "Name": "MACSHEEN, LEVI", "Address": "PO Box 1506", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17200, "Improved_V": 31800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.731161891, "SHAPE_Area": 495.64375465799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365456.259099997580051, 254654.936099998652935 ], [ 365432.931800000369549, 254648.201299998909235 ], [ 365423.203900001943111, 254654.243400000035763 ], [ 365439.143100000917912, 254676.327599998563528 ], [ 365444.013400003314018, 254672.567699998617172 ], [ 365449.709700003266335, 254666.492600001394749 ], [ 365456.259099997580051, 254654.936099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86995619, "LATITUDE": 18.32076323, "OBJECTID_1": 38953, "PARCEL_NO_": "107604031100", "Tax_Legal_": "52E FRYDENHOJ RED HOOK QTR.", "Name": "VENZEN, GLADYS", "Address": "6115 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.430353715, "SHAPE_Area": 922.096933853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365262.013300001621246, 254644.480399999767542 ], [ 365241.805200003087521, 254650.225600000470877 ], [ 365244.945900000631809, 254660.172699999064207 ], [ 365249.67230000346899, 254673.299199998378754 ], [ 365265.839900001883507, 254668.576299998909235 ], [ 365270.731700003147125, 254662.283599998801947 ], [ 365276.406499996781349, 254658.741399999707937 ], [ 365280.454199999570847, 254656.874699998646975 ], [ 365282.875, 254656.683400001376867 ], [ 365290.138999998569489, 254655.898499999195337 ], [ 365283.837700001895428, 254638.326200000941753 ], [ 365262.013300001621246, 254644.480399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87909702, "LATITUDE": 18.32076137, "OBJECTID_1": 38650, "PARCEL_NO_": "107603032800", "Tax_Legal_": "33-29&33-89 NADIR No.2 RED HOOK QTR.", "Name": "MODESTE, THOMAS & MARIE", "Address": "8473 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 95600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.859539969300002, "SHAPE_Area": 472.07038646699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364307.811499997973442, 254652.065400000661612 ], [ 364306.393799997866154, 254632.765099998563528 ], [ 364295.271700002253056, 254633.401599999517202 ], [ 364286.384199999272823, 254635.439800001680851 ], [ 364295.009099997580051, 254664.219099998474121 ], [ 364305.691100001335144, 254658.565000001341105 ], [ 364307.993500001728535, 254654.543299999088049 ], [ 364307.811499997973442, 254652.065400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86906345, "LATITUDE": 18.32078403, "OBJECTID_1": 39013, "PARCEL_NO_": "107604041800", "Tax_Legal_": "74BA ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "JACKSON, AMERICUS & AGNES", "Address": "P.O. BOX 2024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.244122014, "SHAPE_Area": 780.39837349300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365374.018899999558926, 254653.840799998492002 ], [ 365361.978100001811981, 254647.409499999135733 ], [ 365340.22749999910593, 254644.909400001168251 ], [ 365337.666500002145767, 254661.564800001680851 ], [ 365371.438100002706051, 254672.81810000166297 ], [ 365375.532600000500679, 254665.463300000876188 ], [ 365378.784800000488758, 254662.323600001633167 ], [ 365382.026199996471405, 254660.450199998915195 ], [ 365389.293799996376038, 254659.243200000375509 ], [ 365374.018899999558926, 254653.840799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86108808, "LATITUDE": 18.32072572, "OBJECTID_1": 39687, "PARCEL_NO_": "107703022600", "Tax_Legal_": "NAZARETH ESTATE 2W-70 RED HOOK", "Name": "LYNCH, MILTON A. & TERRY A. F.", "Address": "PO Box 8986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.452484392, "SHAPE_Area": 838.10020749900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366222.223600000143051, 254665.004799999296665 ], [ 366208.73929999768734, 254638.718899998813868 ], [ 366198.194300003349781, 254646.020799998193979 ], [ 366181.193400003015995, 254653.903200000524521 ], [ 366196.310099996626377, 254677.880499999970198 ], [ 366210.085799999535084, 254669.971700001507998 ], [ 366222.223600000143051, 254665.004799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87135159, "LATITUDE": 18.3207522, "OBJECTID_1": 38962, "PARCEL_NO_": "107604031800", "Tax_Legal_": "2C ESTATE FRYDENHOJ RED HOOK QTR", "Name": "ROGERS, AUBREY A & OTHERS", "Address": "7595 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.684134814, "SHAPE_Area": 736.43339298900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365126.586999997496605, 254639.361200001090765 ], [ 365099.186099998652935, 254636.385000001639128 ], [ 365111.018899999558926, 254668.364700000733137 ], [ 365133.610100001096725, 254666.860800001770258 ], [ 365126.586999997496605, 254639.361200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603060700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87537339, "LATITUDE": 18.32054477, "OBJECTID_1": 38788, "PARCEL_NO_": "107603060700", "Tax_Legal_": "7J NADIR RED HOOK QTR", "Name": "JOSEPH, ALEXIA and FERNANDO", "Address": "6416 Nadir 6A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40200, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.875629659, "SHAPE_Area": 1299.02358353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364703.395199999213219, 254621.543200001120567 ], [ 364702.67339999973774, 254611.615899998694658 ], [ 364702.09910000115633, 254584.380100000649691 ], [ 364698.805500000715256, 254592.374699998646975 ], [ 364696.359600000083447, 254595.521099999547005 ], [ 364681.712899997830391, 254611.022100001573563 ], [ 364668.711199998855591, 254622.736999999731779 ], [ 364705.445600003004074, 254664.834199998527765 ], [ 364705.492299996316433, 254659.346099998801947 ], [ 364704.077500000596046, 254636.114199999719858 ], [ 364703.395199999213219, 254621.543200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803011100", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".46", "LONGITUDE": -64.84912902000001, "LATITUDE": 18.32070268, "OBJECTID_1": 40168, "PARCEL_NO_": "107803011100", "Tax_Legal_": "NAZARETH 9 40 1 RED HOOK QTR", "Name": "GARTNER, KARL & TAMMY J.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.41979797100001, "SHAPE_Area": 1741.9871217299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367506.697300001978874, 254673.406700000166893 ], [ 367492.307800002396107, 254658.723499998450279 ], [ 367473.884900003671646, 254644.218299999833107 ], [ 367434.201200000941753, 254664.369600001722574 ], [ 367433.333700001239777, 254671.539700001478195 ], [ 367437.298699997365475, 254679.382599998265505 ], [ 367439.656499996781349, 254686.579100001603365 ], [ 367471.158500000834465, 254680.293000001460314 ], [ 367506.697300001978874, 254673.406700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603034800", "MAP": "A9-78-T67", "PARCEL_NAM": "33-48", "ACRE": "0.10", "LONGITUDE": -64.8785507, "LATITUDE": 18.32079161, "OBJECTID_1": 38670, "PARCEL_NO_": "107603034800", "Tax_Legal_": "33-49 NADIR RED HOOK QTR", "Name": "A. E. Powell-Henry, C. C. Powell & K. O. Benjamin", "Address": "PO Box 12262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11700, "Improved_V": 76700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.953342953299995, "SHAPE_Area": 305.52318361099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364367.661799997091293, 254654.892400000244379 ], [ 364361.344300001859665, 254639.219700001180172 ], [ 364344.355999998748302, 254645.624600000679493 ], [ 364351.478000000119209, 254661.514899998903275 ], [ 364367.661799997091293, 254654.892400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604042000", "MAP": "D9-8084-T012", "PARCEL_NAM": "12M", "ACRE": ".146", "LONGITUDE": -64.8686841, "LATITUDE": 18.32070885, "OBJECTID_1": 39015, "PARCEL_NO_": "107604042000", "Tax_Legal_": "12M FRYDENHOJ NO. 3 RED HOOK QTR", "Name": "MATTHEW, NADINE", "Address": "2415 Ulke Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.21301598100001, "SHAPE_Area": 1043.20138071 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365409.602700002491474, 254641.677499998360872 ], [ 365395.123199999332428, 254637.548200000077486 ], [ 365379.839299999177456, 254633.201299998909235 ], [ 365374.018899999558926, 254653.840799998492002 ], [ 365389.293799996376038, 254659.243200000375509 ], [ 365394.117299996316433, 254660.971400000154972 ], [ 365398.112899996340275, 254665.225999999791384 ], [ 365398.883299998939037, 254669.454100001603365 ], [ 365409.422899998724461, 254662.785399999469519 ], [ 365423.203900001943111, 254654.243400000035763 ], [ 365432.931800000369549, 254648.201299998909235 ], [ 365409.602700002491474, 254641.677499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87096505, "LATITUDE": 18.32075991, "OBJECTID_1": 38979, "PARCEL_NO_": "107604033500", "Tax_Legal_": "FRYDENHOJ 2CA RED HOOK QTR", "Name": "ABBOTT, JULIEN & LISTON", "Address": "118 Stephenville Pkwy", "City": "Edison", "State": "New Jersey", "Zip": 8820, "Country": "United States", "Land_Value": 53300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.48604486, "SHAPE_Area": 1359.1056849 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365150.758400000631809, 254641.669900000095367 ], [ 365126.586999997496605, 254639.361200001090765 ], [ 365133.610100001096725, 254666.860800001770258 ], [ 365192.506800003349781, 254663.120999999344349 ], [ 365187.821800000965595, 254645.139699999243021 ], [ 365150.758400000631809, 254641.669900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603015100", "MAP": "F9-130-T57", "PARCEL_NAM": "REM 3-38", "ACRE": "0.21", "LONGITUDE": -64.88154436000001, "LATITUDE": 18.32069162, "OBJECTID_1": 38568, "PARCEL_NO_": "107603015100", "Tax_Legal_": "3-38A BOVONI FRENCHMANS BAY QTR.", "Name": "HENDRICKSON, EDWARD", "Address": "PO Box 4981", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 1200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.21439311100001, "SHAPE_Area": 901.76456636099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364038.97919999808073, 254614.299300000071526 ], [ 364026.887100003659725, 254633.501400001347065 ], [ 364020.976199999451637, 254648.677400000393391 ], [ 364045.09179999679327, 254657.529599998146296 ], [ 364056.637299999594688, 254627.437699999660254 ], [ 364056.660700000822544, 254624.69370000064373 ], [ 364043.027099996805191, 254615.927299998700619 ], [ 364038.97919999808073, 254614.299300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603031700", "MAP": "A9-78-T67", "PARCEL_NAM": "33-8", "ACRE": "0.05", "LONGITUDE": -64.87969069, "LATITUDE": 18.32073961, "OBJECTID_1": 38639, "PARCEL_NO_": "107603031700", "Tax_Legal_": "33-8 NADIR RED HOOK QTR", "Name": "LATTIN, MILAGROS", "Address": "PO Box 7302", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 95200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.226150488900004, "SHAPE_Area": 445.00547603699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364250.787799999117851, 254649.080699998885393 ], [ 364232.427799999713898, 254627.187800001353025 ], [ 364220.209100000560284, 254641.653200000524521 ], [ 364241.835699997842312, 254658.717700000852346 ], [ 364245.095100000500679, 254654.733600001782179 ], [ 364250.787799999117851, 254649.080699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704017900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85435362, "LATITUDE": 18.32058383, "OBJECTID_1": 39888, "PARCEL_NO_": "107704017900", "Tax_Legal_": "2Y2-5 NAZARETH RED HOOK QTR", "Name": "EDDY, DAVID S.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43300, "Improved_V": 209000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.27488057599999, "SHAPE_Area": 1751.9442425100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366946.35869999974966, 254663.121100001037121 ], [ 366907.223399996757507, 254618.893300000578165 ], [ 366881.261399999260902, 254637.468100000172853 ], [ 366923.643500000238419, 254679.189399998635054 ], [ 366946.35869999974966, 254663.121100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061000", "MAP": "A9-557-T000", "PARCEL_NAM": "7F REM", "ACRE": "0.22", "LONGITUDE": -64.87668631, "LATITUDE": 18.32070163, "OBJECTID_1": 38791, "PARCEL_NO_": "107603061000", "Tax_Legal_": "7G EST NADIR RED HOOK QTR", "Name": "LAKE, JOEL", "Address": "7216 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.25574026300001, "SHAPE_Area": 1069.88172652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364583.967500001192093, 254631.542599998414516 ], [ 364535.401100002229214, 254631.241599999368191 ], [ 364529.068099997937679, 254639.325899999588728 ], [ 364519.638999998569489, 254650.744800001382828 ], [ 364573.967299997806549, 254653.414000000804663 ], [ 364578.231600001454353, 254642.261399999260902 ], [ 364580.700900003314018, 254636.370999999344349 ], [ 364582.327899999916553, 254634.695599999278784 ], [ 364583.967500001192093, 254631.542599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8789306, "LATITUDE": 18.32073833, "OBJECTID_1": 38649, "PARCEL_NO_": "107603032700", "Tax_Legal_": "33-28 NADIR RED HOOK QTR", "Name": "ESTRILL, KENNETH & SHIRLEY", "Address": "PO Box 2752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10800, "Improved_V": 70300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.682194136500001, "SHAPE_Area": 325.743228305 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364308.179899998009205, 254632.662900000810623 ], [ 364310.023500002920628, 254656.839400000870228 ], [ 364325.747900001704693, 254652.860599998384714 ], [ 364320.285300001502037, 254631.495400000363588 ], [ 364317.056500002741814, 254631.891199998557568 ], [ 364308.179899998009205, 254632.662900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603066200", "MAP": "D9-5308-T92", "PARCEL_NAM": "13A-1", "ACRE": "0.231", "LONGITUDE": -64.87505168, "LATITUDE": 18.3207353, "OBJECTID_1": 38838, "PARCEL_NO_": "107603066200", "Tax_Legal_": "13A-1 ESTATE NADIR RED HOOK QUARTER", "Name": "FREDERICKS, LYN", "Address": "6434 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.941413885, "SHAPE_Area": 984.82085376800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364746.623199999332428, 254658.627300001680851 ], [ 364745.878100000321865, 254651.443999998271465 ], [ 364750.04450000077486, 254635.646099999547005 ], [ 364704.077500000596046, 254636.114199999719858 ], [ 364705.492299996316433, 254659.346099998801947 ], [ 364746.623199999332428, 254658.627300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704031700", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".44", "LONGITUDE": -64.85231649000001, "LATITUDE": 18.3205862, "OBJECTID_1": 39985, "PARCEL_NO_": "107704031700", "Tax_Legal_": "9-22 NAZARETH RED HOOK QTR.", "Name": "VIRGIN ISLANDS MONTESSORI SCHOOL INC", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.836739499, "SHAPE_Area": 2644.6823911000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367097.909500002861023, 254668.583299998193979 ], [ 367154.263300001621246, 254679.388099998235703 ], [ 367158.506999999284744, 254654.513799998909235 ], [ 367159.435599997639656, 254640.167100001126528 ], [ 367157.855400003492832, 254636.354400001466274 ], [ 367153.058799996972084, 254631.46000000089407 ], [ 367148.238899998366833, 254629.309599999338388 ], [ 367103.925899997353554, 254624.936200000345707 ], [ 367097.909500002861023, 254668.583299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603022500", "MAP": "D9-9092-T016", "PARCEL_NAM": "3-26", "ACRE": ".16", "LONGITUDE": -64.88076141000001, "LATITUDE": 18.32061298, "OBJECTID_1": 38595, "PARCEL_NO_": "107603022500", "Tax_Legal_": "3-26 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "MARY, DEVON, MONICA MATTHEWS & OTHERS", "Address": "PO Box 304843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.845967554, "SHAPE_Area": 565.70732778800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364108.666500002145767, 254640.969000000506639 ], [ 364124.593000002205372, 254648.538100000470877 ], [ 364125.863300003111362, 254641.725400000810623 ], [ 364129.171300001442432, 254632.042199999094009 ], [ 364134.091899998486042, 254622.372099999338388 ], [ 364138.173799999058247, 254616.494899999350309 ], [ 364121.298799999058247, 254609.601799998432398 ], [ 364108.666500002145767, 254640.969000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86959334, "LATITUDE": 18.3204517, "OBJECTID_1": 38998, "PARCEL_NO_": "107604040200", "Tax_Legal_": "FRYDENHOJ 74F RED HOOK QTR", "Name": "CANTON, LORNE VAYGHN", "Address": "74F Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39400, "Improved_V": 33000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.67230082500001, "SHAPE_Area": 2757.3604047099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365298.158900000154972, 254661.0304000005126 ], [ 365340.22749999910593, 254644.909400001168251 ], [ 365324.306199997663498, 254620.714400000870228 ], [ 365311.570600003004074, 254601.189599998295307 ], [ 365300.41889999806881, 254585.05519999936223 ], [ 365295.638599999248981, 254578.261100001633167 ], [ 365272.205200001597404, 254583.979899998754263 ], [ 365298.158900000154972, 254661.0304000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87878145000001, "LATITUDE": 18.32069632, "OBJECTID_1": 38648, "PARCEL_NO_": "107603032600", "Tax_Legal_": "33-27 NADIR RED HOOK QTR", "Name": "MONTOUTE, BURLIE", "Address": "PO Box 502992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 10800, "Improved_V": 73500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.522210303899996, "SHAPE_Area": 389.34963743200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364344.355999998748302, 254645.624600000679493 ], [ 364336.460100002586842, 254625.928300000727177 ], [ 364327.55290000140667, 254630.28830000013113 ], [ 364320.285300001502037, 254631.495400000363588 ], [ 364325.747900001704693, 254652.860599998384714 ], [ 364344.355999998748302, 254645.624600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86166558, "LATITUDE": 18.32062708, "OBJECTID_1": 39667, "PARCEL_NO_": "107703020300", "Tax_Legal_": "NAZARETH 2W 53 RED HOOK QTR", "Name": "BLAKE, CYRIL, AUDREY & WENDY", "Address": "6501 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 222700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.723990914, "SHAPE_Area": 887.12038394399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366149.149499997496605, 254629.154100000858307 ], [ 366126.542099997401237, 254632.557700000703335 ], [ 366128.073899999260902, 254642.069400001317263 ], [ 366127.877899996936321, 254665.076999999582767 ], [ 366129.474299997091293, 254666.989900000393391 ], [ 366132.699500001966953, 254667.01630000025034 ], [ 366161.037399999797344, 254653.527199998497963 ], [ 366149.149499997496605, 254629.154100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603011700", "MAP": "D9-3546-T86", "PARCEL_NAM": "REM 3-37", "ACRE": "0.21", "LONGITUDE": -64.8817739, "LATITUDE": 18.32059867, "OBJECTID_1": 38539, "PARCEL_NO_": "107603011700", "Tax_Legal_": "3 37 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "HENDRICKSON, EDWARD", "Address": "PO Box 4981", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 26300, "Improved_V": 64000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.693197989, "SHAPE_Area": 962.56218696400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364026.887100003659725, 254633.501400001347065 ], [ 364034.99099999666214, 254612.695099998265505 ], [ 364021.321400001645088, 254608.150299999862909 ], [ 364014.075400002300739, 254606.824400000274181 ], [ 364010.042000003159046, 254607.002500001341105 ], [ 364006.793399997055531, 254609.720100000500679 ], [ 363997.661399997770786, 254640.464999999850988 ], [ 364017.992200002074242, 254647.626400001347065 ], [ 364026.887100003659725, 254633.501400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84743144, "LATITUDE": 18.32053793, "OBJECTID_1": 40186, "PARCEL_NO_": "107803013000", "Tax_Legal_": "NAZARETH ESTATE 9-59 RED HOOK QTR.", "Name": "BELLOT, KENT", "Address": "PO Box 10045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 130400, "Improved_V": 306600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.45569603300001, "SHAPE_Area": 2067.59315135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367677.818999998271465, 254653.275699999183416 ], [ 367677.917900003492832, 254641.666400000452995 ], [ 367680.419600002467632, 254631.976500000804663 ], [ 367682.872699998319149, 254627.985800001770258 ], [ 367683.723899997770786, 254622.715500000864267 ], [ 367619.039099998772144, 254643.295400001108646 ], [ 367610.007799997925758, 254662.219900000840425 ], [ 367618.744199998676777, 254677.912300001829863 ], [ 367677.818999998271465, 254653.275699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603070300", "MAP": "D9-7932-T007", "PARCEL_NAM": "13-1 CONS", "ACRE": ".553", "LONGITUDE": -64.87446362, "LATITUDE": 18.32056517, "OBJECTID_1": 38847, "PARCEL_NO_": "107603070300", "Tax_Legal_": "NADIR 13-1 (CONSOLIDATED) RED HOOK QTR", "Name": "WILLIE, FELIX,TASCHENA, and BIBIANA", "Address": "PO Box 303516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39300, "Improved_V": 301900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.91781666, "SHAPE_Area": 2762.1793013199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364763.058799996972084, 254622.453699998557568 ], [ 364755.575400002300739, 254648.990200001746416 ], [ 364755.5304000005126, 254654.267200000584126 ], [ 364811.200199998915195, 254650.712099999189377 ], [ 364811.223499998450279, 254647.967999998480082 ], [ 364822.821400001645088, 254647.272199999541044 ], [ 364818.637299999594688, 254624.810600001364946 ], [ 364801.761399999260902, 254599.647599998861551 ], [ 364768.882799997925758, 254601.392000000923872 ], [ 364763.058799996972084, 254622.453699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86301044, "LATITUDE": 18.3205578, "OBJECTID_1": 39637, "PARCEL_NO_": "107703014700", "Tax_Legal_": "FRYDENHOJ ESTAYTE 41-5-6 RED HOOK", "Name": "HARRIGAN, ROY A", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 53900, "Improved_V": 214800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.992372426, "SHAPE_Area": 1619.0116881599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366025.82320000231266, 254623.500700000673532 ], [ 365980.718299999833107, 254617.432000000029802 ], [ 365976.442199997603893, 254646.105700001120567 ], [ 365976.39360000193119, 254651.804900001734495 ], [ 365979.588299997150898, 254655.419599998742342 ], [ 365993.266800001263618, 254658.909099999815226 ], [ 366004.510200001299381, 254664.278400000184774 ], [ 366029.021499998867512, 254626.693300001323223 ], [ 366025.82320000231266, 254623.500700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603031800", "MAP": "A9-78-T67", "PARCEL_NAM": "33-7", "ACRE": "0.09", "LONGITUDE": -64.87957871, "LATITUDE": 18.32064291, "OBJECTID_1": 38640, "PARCEL_NO_": "107603031800", "Tax_Legal_": "33-7 NADIR No.2 RED HOOK QTR", "Name": "TESTAMARK (Life Estate), PATRICIA", "Address": "PO Box 8285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 93600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.831109363899998, "SHAPE_Area": 454.02916122900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364262.979599997401237, 254637.781399998813868 ], [ 364243.804300002753735, 254616.937300000339746 ], [ 364232.427799999713898, 254627.187800001353025 ], [ 364250.787799999117851, 254649.080699998885393 ], [ 364262.979599997401237, 254637.781399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86086812000001, "LATITUDE": 18.32062384, "OBJECTID_1": 39696, "PARCEL_NO_": "107703023500", "Tax_Legal_": "NAZARETH ESTATE 2W-69 RED HOOK", "Name": "CHALWELL, S. E. & BAPTISTE, JR. , G", "Address": "6418 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 305900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.02574424700001, "SHAPE_Area": 694.69940346299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366244.013800002634525, 254662.861099999397993 ], [ 366225.774300001561642, 254626.8260000012815 ], [ 366208.73929999768734, 254638.718899998813868 ], [ 366222.223600000143051, 254665.004799999296665 ], [ 366223.847000002861023, 254663.751600001007318 ], [ 366227.07769999653101, 254663.14469999819994 ], [ 366237.566899999976158, 254662.386199999600649 ], [ 366244.013800002634525, 254662.861099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86068095, "LATITUDE": 18.32056669, "OBJECTID_1": 39697, "PARCEL_NO_": "107703023600", "Tax_Legal_": "NAZARETH ESTATE 2W-68 RED HOOK QTR", "Name": "CALLWOOD, AUDREY WALLACE, TRUSTEE", "Address": "PO Box 302793", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42400, "Improved_V": 292500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.641523186, "SHAPE_Area": 979.714762748 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366263.465999998152256, 254651.199099998921156 ], [ 366242.001299999654293, 254615.137499999254942 ], [ 366225.774300001561642, 254626.8260000012815 ], [ 366244.013800002634525, 254662.861099999397993 ], [ 366259.321199998259544, 254664.464099999517202 ], [ 366263.465999998152256, 254651.199099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86035208, "LATITUDE": 18.32064726, "OBJECTID_1": 39703, "PARCEL_NO_": "107703024200", "Tax_Legal_": "NAZARETH ESTATE 2W-74 RED HOOK", "Name": "CALLWOOD, AUDREY WALLACE, TRUSTEE", "Address": "PO Box 302793", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.511880459, "SHAPE_Area": 949.67160848599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366297.446199998259544, 254637.967199999839067 ], [ 366269.259499996900558, 254633.72580000013113 ], [ 366263.465999998152256, 254651.199099998921156 ], [ 366259.321199998259544, 254664.464099999517202 ], [ 366296.41330000013113, 254664.556600000709295 ], [ 366297.446199998259544, 254637.967199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85998418, "LATITUDE": 18.32065715, "OBJECTID_1": 39704, "PARCEL_NO_": "107703024300", "Tax_Legal_": "2W-6 NAZARETH RED HOOK QTR", "Name": "LYNCH, ELAINE A. & ROBERT A", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37500, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.99279575400001, "SHAPE_Area": 1017.50157638 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366314.357199996709824, 254640.638799998909235 ], [ 366297.446199998259544, 254637.967199999839067 ], [ 366296.41330000013113, 254664.556600000709295 ], [ 366341.595600001513958, 254661.548900000751019 ], [ 366348.177400000393391, 254646.192899998277426 ], [ 366314.357199996709824, 254640.638799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603022600", "MAP": "F9-181-T57", "PARCEL_NAM": "3-27", "ACRE": "0.22", "LONGITUDE": -64.88094142, "LATITUDE": 18.32054074, "OBJECTID_1": 38596, "PARCEL_NO_": "107603022600", "Tax_Legal_": "ESTATE BOVONI 3-27 FRENCHMAN", "Name": "Stella,Christian&Jason Casimir & Tashire McDuffie", "Address": "7495 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.113530536, "SHAPE_Area": 822.37005953300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364086.309399999678135, 254630.847300000488758 ], [ 364101.086499996483326, 254637.366700001060963 ], [ 364108.666500002145767, 254640.969000000506639 ], [ 364121.298799999058247, 254609.601799998432398 ], [ 364097.993000000715256, 254600.334100000560284 ], [ 364086.309399999678135, 254630.847300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704034800", "MAP": "D9-338-T62", "PARCEL_NAM": "9-8", "ACRE": ".59", "LONGITUDE": -64.84978817, "LATITUDE": 18.32042823, "OBJECTID_1": 40009, "PARCEL_NO_": "107704034800", "Tax_Legal_": "9-8 ESTATE NAZARETH RED HOOK QTR", "Name": "KING, DONALD B. & ANDREA B", "Address": "6100 Red Hook Qtrs", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 160200, "Improved_V": 461000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.573788186, "SHAPE_Area": 2109.6367810500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367384.713299997150898, 254604.858399998396635 ], [ 367381.958099998533726, 254644.310300000011921 ], [ 367381.070799998939037, 254653.802299998700619 ], [ 367378.488300003111362, 254672.990699999034405 ], [ 367416.451499998569489, 254665.490899998694658 ], [ 367416.482100002467632, 254661.90260000154376 ], [ 367410.319300003349781, 254628.077199999243021 ], [ 367403.41669999808073, 254586.435199998319149 ], [ 367384.713299997150898, 254604.858399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86204663, "LATITUDE": 18.32061346, "OBJECTID_1": 39623, "PARCEL_NO_": "107703012900", "Tax_Legal_": "NAZARETH ESTATE 2W-9 RED HOOK QTR", "Name": "RICHARDSON, DIANE C.", "Address": "PO Box 12425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 245400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.84779161099999, "SHAPE_Area": 1065.66915842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366118.243500001728535, 254660.14299999922514 ], [ 366119.163099996745586, 254646.851700000464916 ], [ 366116.900600001215935, 254628.467999998480082 ], [ 366080.573299996554852, 254633.236900001764297 ], [ 366085.173900000751019, 254661.138900000602007 ], [ 366118.243500001728535, 254660.14299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86822996, "LATITUDE": 18.3205846, "OBJECTID_1": 39022, "PARCEL_NO_": "107604042800", "Tax_Legal_": "12F EST FRYDENHOJ RED HOOK", "Name": "WILLIAMS, ELSINA", "Address": "138-162 Dr M Luther King Jr Blvd", "City": "Newark", "State": "New Jersey", "Zip": 7104, "Country": "United States", "Land_Value": 37800, "Improved_V": 76000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.89049271, "SHAPE_Area": 692.232497997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365442.898900002241135, 254614.085700001567602 ], [ 365432.931800000369549, 254648.201299998909235 ], [ 365456.259099997580051, 254654.936099998652935 ], [ 365457.896899998188019, 254651.994199998676777 ], [ 365458.854299999773502, 254634.270199999213219 ], [ 365458.073100000619888, 254631.308499999344349 ], [ 365456.500100001692772, 254626.651500001549721 ], [ 365451.723300002515316, 254619.435300000011921 ], [ 365442.898900002241135, 254614.085700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87862302000001, "LATITUDE": 18.32063454, "OBJECTID_1": 38647, "PARCEL_NO_": "107603032500", "Tax_Legal_": "33-26 NADIR RED HOOK QTR", "Name": "PETERSEN, MABEL & AUTNEY", "Address": "7186 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 128600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.233777878200002, "SHAPE_Area": 376.46832204100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364356.608999997377396, 254627.148699998855591 ], [ 364355.034500002861023, 254623.435899998992682 ], [ 364350.486199997365475, 254624.932599999010563 ], [ 364348.655699998140335, 254619.819899998605251 ], [ 364338.889899998903275, 254624.681600000709295 ], [ 364336.460100002586842, 254625.928300000727177 ], [ 364344.355999998748302, 254645.624600000679493 ], [ 364361.344300001859665, 254639.219700001180172 ], [ 364356.608999997377396, 254627.148699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86895231, "LATITUDE": 18.32060997, "OBJECTID_1": 39029, "PARCEL_NO_": "107604043500", "Tax_Legal_": "FRYDENHOJ 12L RED KOOK QTR", "Name": "BRUNELLE, GERALD K and JAYNE B. MAYER", "Address": "11871 Section", "City": "Miami", "State": "Florida", "Zip": 33102, "Country": "United States", "Land_Value": 13800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.685560974200001, "SHAPE_Area": 325.09737473899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365379.839299999177456, 254633.201299998909235 ], [ 365368.648000001907349, 254621.71059999987483 ], [ 365361.978100001811981, 254647.409499999135733 ], [ 365374.018899999558926, 254653.840799998492002 ], [ 365379.839299999177456, 254633.201299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87294442, "LATITUDE": 18.32056419, "OBJECTID_1": 38874, "PARCEL_NO_": "107604012100", "Tax_Legal_": "NADIR 14F RED HOOK QTR", "Name": "NIBBS, IDALIA", "Address": "115-93 224th St", "City": "Cambria Heights", "State": "New York", "Zip": 11411, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.764135049, "SHAPE_Area": 811.54743457400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364949.4391999989748, 254609.624800000339746 ], [ 364930.078699998557568, 254610.521800000220537 ], [ 364947.483199998736382, 254649.927600000053644 ], [ 364968.450900003314018, 254649.677099999040365 ], [ 364949.4391999989748, 254609.624800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87266384, "LATITUDE": 18.32055003, "OBJECTID_1": 38886, "PARCEL_NO_": "107604012800", "Tax_Legal_": "14B NADIR RED HOOK QTR", "Name": "WILLIAMS, ALVIN & JENNIFER", "Address": "PO Box 10441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35800, "Improved_V": 270200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.41850105699999, "SHAPE_Area": 1619.6971665399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365006.354800000786781, 254649.142900001257658 ], [ 364990.577399998903275, 254608.061599999666214 ], [ 364955.891500003635883, 254609.466499999165535 ], [ 364949.4391999989748, 254609.624800000339746 ], [ 364968.450900003314018, 254649.677099999040365 ], [ 365006.354800000786781, 254649.142900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603070900", "MAP": "D9-7932-T007", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.87413356, "LATITUDE": 18.32047666, "OBJECTID_1": 38852, "PARCEL_NO_": "107603070900", "Tax_Legal_": "13-4 NADIR(Consolidated) NO.2 RED HOOK QTR", "Name": "HODGE, ADA F. H.", "Address": "PO Box 12017", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.39432135300001, "SHAPE_Area": 1126.9702795400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364830.2550999969244, 254617.022399999201298 ], [ 364829.702799998223782, 254609.365699999034405 ], [ 364825.211199998855591, 254610.080200001597404 ], [ 364814.707000002264977, 254589.672899998724461 ], [ 364811.745099999010563, 254585.187100000679493 ], [ 364807.006999999284744, 254588.331799998879433 ], [ 364802.487300001084805, 254591.331599999219179 ], [ 364801.761399999260902, 254599.647599998861551 ], [ 364818.637299999594688, 254624.810600001364946 ], [ 364822.821400001645088, 254647.272300001233816 ], [ 364837.039899997413158, 254646.490600001066923 ], [ 364842.687700003385544, 254646.114599999040365 ], [ 364840.457599997520447, 254623.931499999016523 ], [ 364840.578599996864796, 254618.292199999094009 ], [ 364830.2550999969244, 254617.022399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87013067, "LATITUDE": 18.32051645, "OBJECTID_1": 38964, "PARCEL_NO_": "107604032000", "Tax_Legal_": "52G FRYDENHOJ RED HOOK QTR", "Name": "HERNAN, SR. , BIRCH, & SMITH", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.82423528299999, "SHAPE_Area": 912.48210521 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365248.633299998939037, 254605.951799999922514 ], [ 365230.037799999117851, 254611.710200000554323 ], [ 365234.735399998724461, 254628.214000001549721 ], [ 365241.805200003087521, 254650.225600000470877 ], [ 365262.013300001621246, 254644.480399999767542 ], [ 365252.675700001418591, 254604.718299999833107 ], [ 365248.633299998939037, 254605.951799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703027000", "MAP": "A9-359-T88", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85823601, "LATITUDE": 18.3193836, "OBJECTID_1": 39730, "PARCEL_NO_": "107703027000", "Tax_Legal_": "NAZARETH ESTATE 2U RED HOOK QUARTER", "Name": "FOUR POINT REALTY MANAGEMENT L", "Address": "5194 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1056800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 901.86733653700003, "SHAPE_Area": 28453.1383212 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366442.972999997437, 254404.000100001692772 ], [ 366469.315200001001358, 254435.457499999552965 ], [ 366417.139399997889996, 254502.15819999948144 ], [ 366413.862000003457069, 254508.253100000321865 ], [ 366410.608000002801418, 254511.603999998420477 ], [ 366408.945000000298023, 254517.500999998301268 ], [ 366409.582299999892712, 254537.348999999463558 ], [ 366411.115800000727177, 254546.649700000882149 ], [ 366414.265500001609325, 254555.541400000452995 ], [ 366419.053000003099442, 254561.491200000047684 ], [ 366423.856700003147125, 254565.541299998760223 ], [ 366432.71000000089407, 254567.513599999248981 ], [ 366439.96679999679327, 254567.572999998927116 ], [ 366448.850599996745586, 254565.956900000572205 ], [ 366460.938100002706051, 254566.900299999862909 ], [ 366475.401399999856949, 254572.929200001060963 ], [ 366485.834899999201298, 254578.714200001209974 ], [ 366492.244099996984005, 254583.621800001710653 ], [ 366500.238799996674061, 254591.708799999207258 ], [ 366511.390600003302097, 254607.843100000172853 ], [ 366520.989000000059605, 254616.998700000345707 ], [ 366524.169299997389317, 254622.302099999040365 ], [ 366526.523500002920628, 254629.920699998736382 ], [ 366527.241700001060963, 254640.270199999213219 ], [ 366521.505800001323223, 254650.989000000059605 ], [ 366517.441899999976158, 254654.755399998277426 ], [ 366517.407700002193451, 254658.765900000929832 ], [ 366519.810400001704693, 254660.685400001704693 ], [ 366538.359200000762939, 254660.415100000798702 ], [ 366539.302199997007847, 254644.379700001329184 ], [ 366586.217600002884865, 254627.242899999022484 ], [ 366586.276900000870228, 254620.277300000190735 ], [ 366592.797499999403954, 254612.098000001162291 ], [ 366594.292599998414516, 254531.261399999260902 ], [ 366586.231200002133846, 254530.984299998730421 ], [ 366585.408699996769428, 254532.877500001341105 ], [ 366578.117799997329712, 254536.828600000590086 ], [ 366575.71679999679327, 254534.697999998927116 ], [ 366574.134800001978874, 254531.096400000154972 ], [ 366573.373400002717972, 254525.812899999320507 ], [ 366568.582299999892712, 254520.285199999809265 ], [ 366566.9966000020504, 254517.105799999088049 ], [ 366549.380000002682209, 254502.607299998402596 ], [ 366541.379799999296665, 254495.153499998152256 ], [ 366537.395000003278255, 254489.632500000298023 ], [ 366533.51630000025034, 254471.657800000160933 ], [ 366533.611599996685982, 254460.470600001513958 ], [ 366536.080899998545647, 254454.580200001597404 ], [ 366536.15820000320673, 254445.503800000995398 ], [ 366532.1824000030756, 254438.927400000393391 ], [ 366530.609300002455711, 254434.270399998873472 ], [ 366523.435199998319149, 254424.501400001347065 ], [ 366522.664899997413158, 254420.273200001567602 ], [ 366522.708099998533726, 254415.207400001585484 ], [ 366527.574699997901917, 254411.869699999690056 ], [ 366528.39360000193119, 254410.398699998855591 ], [ 366540.509900003671646, 254407.964800000190735 ], [ 366542.939599998295307, 254406.718100000172853 ], [ 366543.000699996948242, 254399.541400000452995 ], [ 366540.589000001549721, 254398.677299998700619 ], [ 366539.798900000751019, 254396.771000001579523 ], [ 366540.628499999642372, 254394.033599998801947 ], [ 366539.060900002717972, 254388.743400000035763 ], [ 366535.049099996685982, 254386.3885000012815 ], [ 366533.461599998176098, 254383.420200001448393 ], [ 366535.932700000703335, 254377.318799998611212 ], [ 366535.138999998569489, 254375.834600001573563 ], [ 366532.725500002503395, 254375.181600000709295 ], [ 366527.88400000333786, 254375.564100001007318 ], [ 366516.557899996638298, 254379.904399998486042 ], [ 366509.300999999046326, 254379.844999998807907 ], [ 366506.090199999511242, 254378.129999998956919 ], [ 366504.490099996328354, 254376.639199998229742 ], [ 366504.509900003671646, 254374.317400000989437 ], [ 366502.100000001490116, 254373.242199998348951 ], [ 366503.750399999320507, 254368.822700001299381 ], [ 366502.971000000834465, 254365.649900000542402 ], [ 366495.726800002157688, 254364.113000001758337 ], [ 366490.879900000989437, 254365.128800000995398 ], [ 366485.197999998927116, 254369.5152000002563 ], [ 366477.11150000244379, 254372.193300001323223 ], [ 366475.486299999058247, 254373.657600000500679 ], [ 366465.778099998831749, 254377.377900000661612 ], [ 366463.368199996650219, 254376.302700001746416 ], [ 366456.10419999808073, 254377.087600000202656 ], [ 366452.886100001633167, 254376.216899998486042 ], [ 366449.687899999320507, 254373.024300001561642 ], [ 366442.972999997437, 254404.000100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86792886000001, "LATITUDE": 18.32044218, "OBJECTID_1": 39021, "PARCEL_NO_": "107604042700", "Tax_Legal_": "FRYDENHOJ 12C RED HOOK", "Name": "HILAIRE GIBSON BENJAMIN & ALICIA BENJAMIN", "Address": "12B Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.23352042499999, "SHAPE_Area": 1168.81144096 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365496.812100000679493, 254627.4037000015378 ], [ 365494.535199999809265, 254610.708599999547005 ], [ 365492.188199996948242, 254602.245700001716614 ], [ 365488.239399999380112, 254592.503100000321865 ], [ 365459.804499998688698, 254617.390500001609325 ], [ 365464.564999997615814, 254626.506400000303984 ], [ 365466.130900003015995, 254632.007699999958277 ], [ 365466.899400003254414, 254636.446899998933077 ], [ 365465.961800001561642, 254651.84910000115633 ], [ 365496.812100000679493, 254627.4037000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85765319, "LATITUDE": 18.32059582, "OBJECTID_1": 39770, "PARCEL_NO_": "107704010400", "Tax_Legal_": "2UG NAZARETH No.1 RED HOOK QUARTER", "Name": "DARBY STINSON CARSTARPHEN TRUST", "Address": "6192 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79200, "Improved_V": 231300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.111845442, "SHAPE_Area": 1155.11173162 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366538.359200000762939, 254660.415100000798702 ], [ 366583.519900001585484, 254659.94029999896884 ], [ 366585.956799998879433, 254657.849300000816584 ], [ 366586.78830000013113, 254654.900800000876188 ], [ 366586.217600002884865, 254627.242899999022484 ], [ 366539.302199997007847, 254644.379700001329184 ], [ 366538.359200000762939, 254660.415100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803011000", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".53", "LONGITUDE": -64.8486247, "LATITUDE": 18.32047957, "OBJECTID_1": 40167, "PARCEL_NO_": "107803011000", "Tax_Legal_": "NAZARETH ESTATE 9-43 RED HOOK QUARTER", "Name": "RHYMER, SYLVANIE B", "Address": "143-A-2 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.10178554699999, "SHAPE_Area": 2316.1829237100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367560.883900001645088, 254654.640700001269579 ], [ 367553.707999996840954, 254645.082699999213219 ], [ 367529.745200000703335, 254618.288800001144409 ], [ 367474.793700002133846, 254632.193399999290705 ], [ 367485.997599996626377, 254642.206500001251698 ], [ 367498.815800003707409, 254652.021699998527765 ], [ 367500.406900003552437, 254654.567899998277426 ], [ 367502.012299999594688, 254655.425400000065565 ], [ 367513.997299998998642, 254668.400199998170137 ], [ 367560.883900001645088, 254654.640700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604014200", "MAP": "D9-3762-T86", "PARCEL_NAM": "13-3", "ACRE": null, "LONGITUDE": -64.87381544, "LATITUDE": 18.32052455, "OBJECTID_1": 38896, "PARCEL_NO_": "107604014200", "Tax_Legal_": "EST NADIR 13-3 RED HOOK QTR", "Name": "ANDRE, N. & C", "Address": "PO Box 10513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 78400, "Improved_V": 247400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.429272322, "SHAPE_Area": 1649.53115383 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364881.593900002539158, 254622.579500000923872 ], [ 364878.002199999988079, 254616.279199998825788 ], [ 364848.303300000727177, 254618.734200000762939 ], [ 364847.165200002491474, 254593.80009999871254 ], [ 364828.614600002765656, 254594.281500000506639 ], [ 364830.255000002682209, 254617.022399999201298 ], [ 364840.578599996864796, 254618.292199999094009 ], [ 364840.457599997520447, 254623.931499999016523 ], [ 364842.687700003385544, 254646.114599999040365 ], [ 364891.089800000190735, 254643.766600001603365 ], [ 364887.148199997842312, 254633.17960000038147 ], [ 364881.593900002539158, 254622.579500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704012400", "MAP": "G9-540-T60", "PARCEL_NAM": "2GA", "ACRE": null, "LONGITUDE": -64.8562195, "LATITUDE": 18.32055005, "OBJECTID_1": 39785, "PARCEL_NO_": "107704012400", "Tax_Legal_": "2Ga NAZARETH NO.1 RED HOOK QTR.", "Name": "AC HOME GROUP LLC", "Address": "21142 Palese Dr", "City": "Estero", "State": "Florida", "Zip": 33928, "Country": "United States", "Land_Value": 94700, "Improved_V": 90900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.27207134499997, "SHAPE_Area": 2083.7631634300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366687.534199997782707, 254660.791600000113249 ], [ 366750.433799996972084, 254660.462099999189377 ], [ 366753.67339999973774, 254658.799800001084805 ], [ 366756.115699999034405, 254656.075599998235703 ], [ 366757.012000001966953, 254645.528200000524521 ], [ 366755.467699997127056, 254637.494100000709295 ], [ 366746.6216000020504, 254634.677400000393391 ], [ 366737.762999996542931, 254633.33839999884367 ], [ 366728.087200000882149, 254633.259199999272823 ], [ 366711.140299998223782, 254634.809200000017881 ], [ 366704.702399998903275, 254633.278900001198053 ], [ 366698.277000002563, 254630.271000001579523 ], [ 366690.276799999177456, 254622.817200001329184 ], [ 366685.543300002813339, 254610.535100001841784 ], [ 366684.05290000140667, 254596.168499998748302 ], [ 366686.550999999046326, 254586.900800000876188 ], [ 366680.087899997830391, 254588.325599998235703 ], [ 366683.910899996757507, 254612.843699999153614 ], [ 366687.534199997782707, 254660.791600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603011600", "MAP": "F9-188-T57", "PARCEL_NAM": "3-36", "ACRE": "0.22", "LONGITUDE": -64.88205381, "LATITUDE": 18.32052008, "OBJECTID_1": 38538, "PARCEL_NO_": "107603011600", "Tax_Legal_": "BOVONI 3-36 FRENCHMAN BAY QTR.", "Name": "ALLEN, ELROY & JOYCELYN", "Address": "7489 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29900, "Improved_V": 44600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.289247745, "SHAPE_Area": 811.377443567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363981.129900000989437, 254593.255899999290705 ], [ 363971.128700003027916, 254631.381999999284744 ], [ 363992.035199999809265, 254638.308100000023842 ], [ 364000.350100003182888, 254608.822999998927116 ], [ 363999.583400003612041, 254604.172699999064207 ], [ 363990.749899998307228, 254599.878499999642372 ], [ 363981.129900000989437, 254593.255899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704033800", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".47", "LONGITUDE": -64.85169792000001, "LATITUDE": 18.32050277, "OBJECTID_1": 39999, "PARCEL_NO_": "107704033800", "Tax_Legal_": "9-21 ESTATE NAZARETH RED HOOK QTR", "Name": "ALEXANDER, ROMAIN & CHERISE TAYLOR-", "Address": "2706 Baynard Blvd", "City": "Wilmington", "State": "Delaware", "Zip": 19802, "Country": "United States", "Land_Value": 96700, "Improved_V": 278300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.110909959, "SHAPE_Area": 1669.98802432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367231.377199999988079, 254619.646499998867512 ], [ 367196.64469999819994, 254626.53940000012517 ], [ 367178.882399998605251, 254629.138300001621246 ], [ 367174.021200001239777, 254631.842700000852346 ], [ 367170.76349999755621, 254635.615699999034405 ], [ 367169.120399996638298, 254639.190900001674891 ], [ 367167.335100002586842, 254659.441199999302626 ], [ 367205.998499996960163, 254664.401700001209974 ], [ 367210.969499997794628, 254648.82149999961257 ], [ 367231.377199999988079, 254619.646499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061000", "MAP": "A9-557-T000", "PARCEL_NAM": "7G", "ACRE": "0.24", "LONGITUDE": -64.87656092, "LATITUDE": 18.32050173, "OBJECTID_1": 38791, "PARCEL_NO_": "107603061000", "Tax_Legal_": "7G EST NADIR RED HOOK QTR", "Name": "LAKE, JOEL", "Address": "7216 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.03623407200001, "SHAPE_Area": 1067.0136199900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364595.899599999189377, 254609.838599998503923 ], [ 364554.854800000786781, 254606.460999999195337 ], [ 364550.264200001955032, 254612.268300000578165 ], [ 364535.401100002229214, 254631.241599999368191 ], [ 364583.967500001192093, 254631.542599998414516 ], [ 364593.801500000059605, 254613.046900000423193 ], [ 364595.899599999189377, 254609.838599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704035400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85078266, "LATITUDE": 18.32041693, "OBJECTID_1": 40015, "PARCEL_NO_": "107704035400", "Tax_Legal_": "NAZARETH ESTATE 9H REM. No.1 RED HOOK QTR.", "Name": "MELBOURNE, GLEN & KATHRYN A.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 208800, "Improved_V": 448700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.14600928300001, "SHAPE_Area": 3298.6202392099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367318.887699998915195, 254664.692400000989437 ], [ 367323.11879999935627, 254641.2956000007689 ], [ 367322.630800001323223, 254603.928100001066923 ], [ 367320.228100001811981, 254602.008600000292063 ], [ 367302.440600000321865, 254607.5625 ], [ 367280.623400002717972, 254612.872400000691414 ], [ 367243.480899997055531, 254618.690099999308586 ], [ 367272.972800001502037, 254659.039299998432398 ], [ 367318.887699998915195, 254664.692400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84680054, "LATITUDE": 18.3202767, "OBJECTID_1": 40203, "PARCEL_NO_": "107803020900", "Tax_Legal_": "NAZARETH 5-12 RED HOOK QTR", "Name": "WILLIAM RICHARD BREDENBECK REVOCABLE TRUST", "Address": "4545 Tiedeman Rd", "City": "Brooklyn", "State": "Ohio", "Zip": 44144, "Country": "United States", "Land_Value": 165500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.927182276, "SHAPE_Area": 2603.5735024400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367740.129799999296665, 254627.399000000208616 ], [ 367734.838100001215935, 254585.9814000017941 ], [ 367700.11089999973774, 254592.24100000038743 ], [ 367698.390399999916553, 254604.892599999904633 ], [ 367690.898000001907349, 254632.484499998390675 ], [ 367689.267399996519089, 254634.582100000232458 ], [ 367686.767599999904633, 254644.0608000010252 ], [ 367687.4695999994874, 254656.309999998658895 ], [ 367689.798600003123283, 254666.883699998259544 ], [ 367740.129799999296665, 254627.399000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87612248000001, "LATITUDE": 18.32049937, "OBJECTID_1": 38793, "PARCEL_NO_": "107603061200", "Tax_Legal_": "7H NADIR ESTATE RED HOOK QTR", "Name": "HARRIGAN, ADENA, LIFE INT.", "Address": "PO Box 11352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35000, "Improved_V": 155900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.91519114600001, "SHAPE_Area": 1011.96745079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364615.712200000882149, 254596.760899998247623 ], [ 364598.560199998319149, 254622.3739 ], [ 364594.453199997544289, 254631.206199999898672 ], [ 364590.353299997746944, 254639.194200001657009 ], [ 364591.949699997901917, 254641.107099998742342 ], [ 364596.785800002515316, 254641.357799999415874 ], [ 364607.287600003182888, 254639.121700000017881 ], [ 364619.420100003480911, 254634.788100000470877 ], [ 364635.00789999961853, 254603.462699998170137 ], [ 364615.712200000882149, 254596.760899998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604043000", "MAP": "G9-1013-T68", "PARCEL_NAM": "12G", "ACRE": null, "LONGITUDE": -64.86843039, "LATITUDE": 18.32051125, "OBJECTID_1": 39024, "PARCEL_NO_": "107604043000", "Tax_Legal_": "12G ESTATE FRYDENHOJ RED HOOK QTR", "Name": "JENNINGS, THOMAS & CARLETHA", "Address": "6146 Frydenhoj 12G", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19700, "Improved_V": 174400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.76915407, "SHAPE_Area": 843.97279251400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365417.926600001752377, 254611.137099999934435 ], [ 365409.602700002491474, 254641.677499998360872 ], [ 365432.931800000369549, 254648.201299998909235 ], [ 365442.898900002241135, 254614.085700001567602 ], [ 365432.440200001001358, 254611.255899999290705 ], [ 365417.926600001752377, 254611.137099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603022700", "MAP": "F9-152-T57", "PARCEL_NAM": "3-28", "ACRE": "0.22", "LONGITUDE": -64.88114862, "LATITUDE": 18.32045376, "OBJECTID_1": 38597, "PARCEL_NO_": "107603022700", "Tax_Legal_": "3-28 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "A&J PROPERTIES LLC", "Address": "PO Box 304843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24100, "Improved_V": 48200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.81895610700001, "SHAPE_Area": 736.101171905 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364067.117600001394749, 254618.230000000447035 ], [ 364074.119699999690056, 254625.4695999994874 ], [ 364086.309399999678135, 254630.847300000488758 ], [ 364097.993000000715256, 254600.334100000560284 ], [ 364075.493600003421307, 254591.072900000959635 ], [ 364067.117600001394749, 254618.230000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604041900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86916321, "LATITUDE": 18.32050387, "OBJECTID_1": 39014, "PARCEL_NO_": "107604041900", "Tax_Legal_": "FRYDENHOJ ESTATE 74C RED HOOK QTR", "Name": "WILLIAMS, JOHN", "Address": "PO Box 12086", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74400, "Improved_V": 1500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.382011549, "SHAPE_Area": 1207.3668831499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365368.648000001907349, 254621.71059999987483 ], [ 365369.468699999153614, 254620.028599999845028 ], [ 365350.246699996292591, 254604.672499999403954 ], [ 365324.306199997663498, 254620.714400000870228 ], [ 365340.22749999910593, 254644.909400001168251 ], [ 365361.978100001811981, 254647.409499999135733 ], [ 365368.648000001907349, 254621.71059999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704034700", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".40", "LONGITUDE": -64.84938982, "LATITUDE": 18.32045358, "OBJECTID_1": 40008, "PARCEL_NO_": "107704034700", "Tax_Legal_": "9-7&9-8A NAZARETH RED HOOK QTR", "Name": "THOMAS, VINCENT & CHARMAINE", "Address": "PO Box 305359", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82300, "Improved_V": 306200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.34288406900001, "SHAPE_Area": 1947.34130504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367473.884900003671646, 254644.218299999833107 ], [ 367454.727600000798702, 254621.263399999588728 ], [ 367450.762599997222424, 254613.420499999076128 ], [ 367410.319300003349781, 254628.077199999243021 ], [ 367416.482100002467632, 254661.90260000154376 ], [ 367418.096500001847744, 254661.704700000584126 ], [ 367420.542400002479553, 254658.558299999684095 ], [ 367427.001900002360344, 254657.555700000375509 ], [ 367429.415399998426437, 254658.208700001239777 ], [ 367432.620899997651577, 254660.557000000029802 ], [ 367434.201200000941753, 254664.369600001722574 ], [ 367473.884900003671646, 254644.218299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86144045, "LATITUDE": 18.3205292, "OBJECTID_1": 39685, "PARCEL_NO_": "107703022400", "Tax_Legal_": "NAZARETH 2W-54 RED HOOK QTR", "Name": "FRANK A. & JULIA R. ODLUM MD LIV TR", "Address": "PO Box 12138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 219300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.578576997400006, "SHAPE_Area": 590.78933784499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366180.469800002872944, 254644.186999998986721 ], [ 366170.1908999979496, 254620.249299999326468 ], [ 366152.387299999594688, 254627.703000001609325 ], [ 366149.149499997496605, 254629.154100000858307 ], [ 366161.037399999797344, 254653.527199998497963 ], [ 366180.469800002872944, 254644.186999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603031900", "MAP": "A9-78-T67", "PARCEL_NAM": "33-6", "ACRE": "0.09", "LONGITUDE": -64.87947351, "LATITUDE": 18.32054338, "OBJECTID_1": 38641, "PARCEL_NO_": "107603031900", "Tax_Legal_": "33-6&33-86 NADIR RED HOOK QTR", "Name": "JAZMAA HOLDINGS, LLC", "Address": "PO Box 12355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8015355, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.940390678699998, "SHAPE_Area": 428.58301547000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364272.709299996495247, 254631.528200000524521 ], [ 364258.415100000798702, 254605.657800000160933 ], [ 364243.804300002753735, 254616.937300000339746 ], [ 364262.979599997401237, 254637.781399998813868 ], [ 364264.604800000786781, 254636.31700000166893 ], [ 364266.226400002837181, 254635.27479999884963 ], [ 364272.709299996495247, 254631.528200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87088482, "LATITUDE": 18.32055989, "OBJECTID_1": 38966, "PARCEL_NO_": "107604032200", "Tax_Legal_": "2 BA FRYDENH/J RED HOOK", "Name": "RABSATT, SANFORD", "Address": "6024 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.520001772, "SHAPE_Area": 859.80276534400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365181.585299998521805, 254619.968499999493361 ], [ 365145.304799996316433, 254619.249400001019239 ], [ 365150.758400000631809, 254641.669900000095367 ], [ 365187.821800000965595, 254645.139699999243021 ], [ 365187.040700003504753, 254642.177999999374151 ], [ 365181.585299998521805, 254619.968499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84827395000001, "LATITUDE": 18.32009915, "OBJECTID_1": 40182, "PARCEL_NO_": "107803012500", "Tax_Legal_": "NAZARETH ESTATE 9-67 RED HOOK QTR.", "Name": "ASHTIAN, ELROY & JULIET P", "Address": "PO Box 1017", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 146300, "Improved_V": 206600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.055465013, "SHAPE_Area": 3411.72249336 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367566.450800001621246, 254663.763300001621246 ], [ 367582.558300003409386, 254571.436099998652935 ], [ 367576.170800000429153, 254563.995600000023842 ], [ 367554.524400003254414, 254549.252900000661612 ], [ 367553.703699998557568, 254550.934999998658895 ], [ 367549.652400001883507, 254553.223900001496077 ], [ 367544.812700003385544, 254553.395300000905991 ], [ 367541.600000001490116, 254551.891399998217821 ], [ 367537.541500002145767, 254555.024599999189377 ], [ 367552.568300001323223, 254589.555799998342991 ], [ 367520.960299998521805, 254608.295499999076128 ], [ 367529.745200000703335, 254618.288800001144409 ], [ 367553.707999996840954, 254645.082699999213219 ], [ 367560.883900001645088, 254654.640700001269579 ], [ 367566.450800001621246, 254663.763300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803016700", "MAP": null, "PARCEL_NAM": "9-66", "ACRE": null, "LONGITUDE": -64.84800684, "LATITUDE": 18.32023171, "OBJECTID_1": 40192, "PARCEL_NO_": "107803016700", "Tax_Legal_": "9-66 ESTATE NAZARETH #1 REDHOOK QTR", "Name": "PHILISTIN, CLAUDE", "Address": "PO BOX 304376", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.01612618, "SHAPE_Area": 1783.9466329700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367608.225500002503395, 254587.478199999779463 ], [ 367593.780199997127056, 254579.33839999884367 ], [ 367582.558300003409386, 254571.436099998652935 ], [ 367566.450800001621246, 254663.763300001621246 ], [ 367579.357199996709824, 254663.235599998384714 ], [ 367608.225500002503395, 254587.478199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604035000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86993256, "LATITUDE": 18.32046882, "OBJECTID_1": 38990, "PARCEL_NO_": "107604035000", "Tax_Legal_": "FRYDENHOJ 52FA RED HOOK QTR", "Name": "MERCER, ELTERA", "Address": "6022 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 135400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.536290013, "SHAPE_Area": 848.058612713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365270.463100001215935, 254599.16440000012517 ], [ 365252.675700001418591, 254604.718299999833107 ], [ 365262.013300001621246, 254644.480399999767542 ], [ 365283.837700001895428, 254638.326200000941753 ], [ 365270.463100001215935, 254599.16440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8477819, "LATITUDE": 18.32033369, "OBJECTID_1": 40184, "PARCEL_NO_": "107803012800", "Tax_Legal_": "NAZARETH ESTATE 9-65 RED HOOK QUARTER", "Name": "JOSEPH, WILHEMINA", "Address": "6031 Estate Frydnhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 108100, "Improved_V": 159700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.38478250399999, "SHAPE_Area": 2281.9668737900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367639.554799996316433, 254601.455699998885393 ], [ 367634.713299997150898, 254601.838300000876188 ], [ 367632.299800001084805, 254601.185199998319149 ], [ 367628.298799999058247, 254597.563900001347065 ], [ 367627.523000001907349, 254593.969000000506639 ], [ 367616.250799998641014, 254591.97690000012517 ], [ 367608.225500002503395, 254587.478199999779463 ], [ 367579.357199996709824, 254663.235599998384714 ], [ 367610.007799997925758, 254662.219900000840425 ], [ 367619.039099998772144, 254643.295400001108646 ], [ 367639.554799996316433, 254601.455699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86055235000001, "LATITUDE": 18.3204217, "OBJECTID_1": 39702, "PARCEL_NO_": "107703024100", "Tax_Legal_": "NAZARETH ESTATE 2W-67 1 RED HOOK QTR", "Name": "FLAX, SYDNEY & MARION", "Address": "PO Box 502040", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21600, "Improved_V": 146600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.39682053200001, "SHAPE_Area": 641.852916628 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366269.259499996900558, 254633.72580000013113 ], [ 366269.453699998557568, 254610.929299999028444 ], [ 366258.975199997425079, 254610.421300001442432 ], [ 366253.325599998235703, 254611.008299998939037 ], [ 366242.001299999654293, 254615.137499999254942 ], [ 366263.465999998152256, 254651.199099998921156 ], [ 366269.259499996900558, 254633.72580000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87052266000001, "LATITUDE": 18.32041081, "OBJECTID_1": 38965, "PARCEL_NO_": "107604032100", "Tax_Legal_": "2-3 FRYDENHOJ RED HOOK QTR", "Name": "RABSATT, ESTRIDGE", "Address": "6606 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.908601033, "SHAPE_Area": 2029.04551446 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365183.377700001001358, 254598.873799998313189 ], [ 365176.106499999761581, 254600.503100000321865 ], [ 365181.585299998521805, 254619.968499999493361 ], [ 365187.040700003504753, 254642.177999999374151 ], [ 365234.735399998724461, 254628.214000001549721 ], [ 365230.037799999117851, 254611.710200000554323 ], [ 365222.9662000015378, 254589.909699998795986 ], [ 365183.377700001001358, 254598.873799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87129437, "LATITUDE": 18.32054012, "OBJECTID_1": 38967, "PARCEL_NO_": "107604032300", "Tax_Legal_": "2B FRYDENHOJ RED HOOK QTR", "Name": "TESTAMARK, LORRAINE", "Address": "6408 Coki Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.914958157, "SHAPE_Area": 1024.4931675600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365145.304799996316433, 254619.249400001019239 ], [ 365097.737800002098083, 254618.226799998432398 ], [ 365094.951999999582767, 254618.239000000059605 ], [ 365099.186099998652935, 254636.385000001639128 ], [ 365126.586999997496605, 254639.361200001090765 ], [ 365150.758400000631809, 254641.669900000095367 ], [ 365145.304799996316433, 254619.249400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107803041100", "MAP": null, "PARCEL_NAM": "7-A", "ACRE": null, "LONGITUDE": -64.84320956000001, "LATITUDE": 18.32034355, "OBJECTID_1": 40511, "PARCEL_NO_": "107803041100", "Tax_Legal_": "NAZARETH 7A & 7A-1 RED HOOK QTR", "Name": "RC HOTELS(VIRGIN ISLANDS)INC.", "Address": "1200 Bartow Rd", "City": "Lakeland", "State": "Florida", "Zip": 33801, "Country": "United States", "Land_Value": 329300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.21690972, "SHAPE_Area": 2907.5659833499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368126.619599997997284, 254599.32039999961853 ], [ 368109.755400002002716, 254591.160799998790026 ], [ 368106.357500001788139, 254611.397999998182058 ], [ 368053.01860000193119, 254625.315799999982119 ], [ 368048.020700000226498, 254644.062199998646975 ], [ 368111.537799999117851, 254665.902499999850988 ], [ 368126.619599997997284, 254599.32039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603011500", "MAP": "F9-152-T57", "PARCEL_NAM": "3-35", "ACRE": "0.22", "LONGITUDE": -64.88225434, "LATITUDE": 18.32043264, "OBJECTID_1": 38537, "PARCEL_NO_": "107603011500", "Tax_Legal_": "3-35 ESTATE BOVONI 1 &2 FRENCHMANS BAY QTR.", "Name": "NEGRON, JOSE & LUZ APONTE", "Address": "PO Box 11458", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 249500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.533499629, "SHAPE_Area": 992.65046808199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363981.129900000989437, 254593.255899999290705 ], [ 363968.304399996995926, 254584.285000000149012 ], [ 363963.480899997055531, 254582.556699998676777 ], [ 363961.054799996316433, 254583.381299998611212 ], [ 363947.020199999213219, 254621.685400001704693 ], [ 363971.128700003027916, 254631.381999999284744 ], [ 363981.129900000989437, 254593.255899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604034000", "MAP": "F9-815-T61", "PARCEL_NAM": "2K", "ACRE": null, "LONGITUDE": -64.87167723, "LATITUDE": 18.32049035, "OBJECTID_1": 38983, "PARCEL_NO_": "107604034000", "Tax_Legal_": "2K FRYDENHOJ RED HOOK QTR", "Name": "ROGERS, AUBREY A & OTHERS", "Address": "7595 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9300, "Improved_V": 99700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.633090293199999, "SHAPE_Area": 430.09760389799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365092.427199997007847, 254634.86600000038743 ], [ 365091.193800002336502, 254629.150100000202656 ], [ 365089.755599997937679, 254608.662300001829863 ], [ 365075.238399997353554, 254608.965599998831749 ], [ 365075.755900003015995, 254638.603100001811981 ], [ 365092.427199997007847, 254634.86600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604043200", "MAP": "G9-1013-T68", "PARCEL_NAM": "12H", "ACRE": null, "LONGITUDE": -64.86862422, "LATITUDE": 18.32047675, "OBJECTID_1": 39026, "PARCEL_NO_": "107604043200", "Tax_Legal_": "12H ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "ELLIOTT, VERNON & EDRIS", "Address": "PO Box 7483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.135220261900002, "SHAPE_Area": 506.36702455699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365417.926600001752377, 254611.137099999934435 ], [ 365399.397600002586842, 254609.08559999987483 ], [ 365395.123199999332428, 254637.548200000077486 ], [ 365409.602700002491474, 254641.677499998360872 ], [ 365417.926600001752377, 254611.137099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603060800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87586354, "LATITUDE": 18.32048217, "OBJECTID_1": 38789, "PARCEL_NO_": "107603060800", "Tax_Legal_": "NADIR 7-&7HA RED HOOK QTR", "Name": "BROWN, MILDRED", "Address": "PO Box 9863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.426575653, "SHAPE_Area": 648.06514986800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364646.263899996876717, 254607.354499999433756 ], [ 364635.00789999961853, 254603.462699998170137 ], [ 364619.420100003480911, 254634.788100000470877 ], [ 364646.100299999117851, 254626.562699999660254 ], [ 364665.561499997973442, 254613.845300000160933 ], [ 364646.263899996876717, 254607.354499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84580141000001, "LATITUDE": 18.32035381, "OBJECTID_1": 40205, "PARCEL_NO_": "107803021100", "Tax_Legal_": "5-19 NAZARETH RED HOOK QTR.", "Name": "MORGAN, TRUSTEES, VERNON & URSULA", "Address": "PO BOX 502362", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 137600, "Improved_V": 464700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.78385095499999, "SHAPE_Area": 2363.98436924 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367845.83049999922514, 254619.609299998730421 ], [ 367851.10249999910593, 254605.623500000685453 ], [ 367823.514300003647804, 254605.913699999451637 ], [ 367818.328500002622604, 254607.183699999004602 ], [ 367804.115699999034405, 254612.802499998360872 ], [ 367793.331500001251698, 254616.744300000369549 ], [ 367792.457400001585484, 254637.537599999457598 ], [ 367788.298199996352196, 254652.491200000047684 ], [ 367830.158100001513958, 254660.85530000180006 ], [ 367845.83049999922514, 254619.609299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603032000", "MAP": "A9-78-T67", "PARCEL_NAM": "33-5", "ACRE": "0.09", "LONGITUDE": -64.87935369, "LATITUDE": 18.32047434, "OBJECTID_1": 38642, "PARCEL_NO_": "107603032000", "Tax_Legal_": "33-5 & 33-85 ESTATE NADIR RED HOOK QTR", "Name": "HENRY, IONA", "Address": "PO Box 7684", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 89900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.724564897700006, "SHAPE_Area": 422.11251562199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364282.417400002479553, 254627.80799999833107 ], [ 364274.607799999415874, 254597.979899998754263 ], [ 364258.415100000798702, 254605.657800000160933 ], [ 364272.709299996495247, 254631.528200000524521 ], [ 364276.757100000977516, 254629.661499999463558 ], [ 364282.417400002479553, 254627.80799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703025300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85988643, "LATITUDE": 18.32045363, "OBJECTID_1": 39713, "PARCEL_NO_": "107703025300", "Tax_Legal_": "NAZARETH ESTATE 2W-64 RED HOOK QTR", "Name": "FLAX, SYDNEY & MARION", "Address": "PO Box 502040", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28100, "Improved_V": 180000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.690670686, "SHAPE_Area": 835.03808745100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366350.643100000917912, 254640.724700000137091 ], [ 366326.730599999427795, 254608.020500000566244 ], [ 366322.673900000751019, 254610.942600000649691 ], [ 366317.832400001585484, 254611.325199998915195 ], [ 366316.226999998092651, 254610.467700000852346 ], [ 366314.357199996709824, 254640.638799998909235 ], [ 366348.177400000393391, 254646.192899998277426 ], [ 366350.643100000917912, 254640.724700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86123565, "LATITUDE": 18.32043827, "OBJECTID_1": 39688, "PARCEL_NO_": "107703022700", "Tax_Legal_": "NAZARETH ESTATE 2W-55 RED HOOK QTR", "Name": "SAMUEL, ALBURN & VERONICA", "Address": "PO Box 11143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 203200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.765077862, "SHAPE_Area": 657.25423026500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366203.154399998486042, 254631.707100000232458 ], [ 366193.665700003504753, 254609.675700001418591 ], [ 366175.856700003147125, 254617.762600000947714 ], [ 366170.1908999979496, 254620.249299999326468 ], [ 366180.469800002872944, 254644.186999998986721 ], [ 366190.181500002741814, 254640.044599998742342 ], [ 366203.154399998486042, 254631.707100000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604043400", "MAP": "G9-1013-T68", "PARCEL_NAM": "12I", "ACRE": null, "LONGITUDE": -64.86877117, "LATITUDE": 18.32045556, "OBJECTID_1": 39028, "PARCEL_NO_": "107604043400", "Tax_Legal_": "12I FRYDENHOJ RED HOOK QTR", "Name": "GONZALEZ, INES", "Address": "37 Mead Ln", "City": "Westbury", "State": "New York", "Zip": 11590, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.047233558399995, "SHAPE_Area": 408.07228439900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365399.397600002586842, 254609.08559999987483 ], [ 365392.153300002217293, 254607.548599999397993 ], [ 365387.338799998164177, 254604.765000000596046 ], [ 365379.839299999177456, 254633.201299998909235 ], [ 365395.123199999332428, 254637.548200000077486 ], [ 365399.397600002586842, 254609.08559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704035500", "MAP": "D9-338-T62", "PARCEL_NAM": "9-10", "ACRE": ".61", "LONGITUDE": -64.85016141, "LATITUDE": 18.32030505, "OBJECTID_1": 40016, "PARCEL_NO_": "107704035500", "Tax_Legal_": "9-10&9-9A ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "BRAGG, AURA TRUST", "Address": "PO Box 302235", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 129100, "Improved_V": 357000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.55623119500001, "SHAPE_Area": 2584.428494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367384.713299997150898, 254604.858399998396635 ], [ 367338.870300002396107, 254590.762099999934435 ], [ 367332.378499999642372, 254595.564100001007318 ], [ 367331.988300003111362, 254641.368200000375509 ], [ 367381.070799998939037, 254653.802299998700619 ], [ 367381.958099998533726, 254644.310300000011921 ], [ 367384.713299997150898, 254604.858399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603032100", "MAP": "A9-78-T67", "PARCEL_NAM": "33-4", "ACRE": "0.09", "LONGITUDE": -64.87922484000001, "LATITUDE": 18.32043801, "OBJECTID_1": 38643, "PARCEL_NO_": "107603032100", "Tax_Legal_": "33-4 NADIR RED HOOK QTR", "Name": "STEELE, GLENCIA & EDMUND", "Address": "BOX 3574", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10800, "Improved_V": 63100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.267212071599999, "SHAPE_Area": 432.32910709100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364293.723800003528595, 254625.789599999785423 ], [ 364290.764700002968311, 254594.523499999195337 ], [ 364274.607799999415874, 254597.979899998754263 ], [ 364282.417400002479553, 254627.80799999833107 ], [ 364289.68860000371933, 254626.178800001740456 ], [ 364293.723800003528595, 254625.789599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603032200", "MAP": "A9-78-T67", "PARCEL_NAM": "33-3", "ACRE": "0.09", "LONGITUDE": -64.87909178, "LATITUDE": 18.32043114, "OBJECTID_1": 38644, "PARCEL_NO_": "107603032200", "Tax_Legal_": "33-3&33-83 NADIR RED HOOK QTR", "Name": "MC FARLANE, LELIA C", "Address": "PO Box 8542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 100400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.292454939500004, "SHAPE_Area": 417.43391717100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364307.668499998748302, 254598.03940000012517 ], [ 364290.764700002968311, 254594.523499999195337 ], [ 364293.723800003528595, 254625.789599999785423 ], [ 364305.83110000193119, 254624.410999998450279 ], [ 364307.668499998748302, 254598.03940000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604044400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86888619, "LATITUDE": 18.32038299, "OBJECTID_1": 39038, "PARCEL_NO_": "107604044400", "Tax_Legal_": "FRYDENHOJ ESTATW 12K RED HOOK QT", "Name": "E'BAS, CASMORE", "Address": "PO Box 502931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 11300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.542253859, "SHAPE_Area": 384.582975369 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365387.338799998164177, 254604.765000000596046 ], [ 365383.336000002920628, 254601.354800000786781 ], [ 365382.547700002789497, 254599.237399999052286 ], [ 365376.12780000269413, 254595.596200000494719 ], [ 365369.468699999153614, 254620.028599999845028 ], [ 365368.648000001907349, 254621.71059999987483 ], [ 365379.839299999177456, 254633.201299998909235 ], [ 365387.338799998164177, 254604.765000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603032300", "MAP": "A9-78-T67", "PARCEL_NAM": "33-2", "ACRE": "0.09", "LONGITUDE": -64.87894293, "LATITUDE": 18.32043944, "OBJECTID_1": 38645, "PARCEL_NO_": "107603032300", "Tax_Legal_": "33-2&82 NADIR RED HOOK QTR", "Name": "MAHONEY, SR. , D. L. , C. S. & W. A", "Address": "Est Nadir Homes 7190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 79700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.111988997099999, "SHAPE_Area": 431.47331296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364325.209499999880791, 254621.403200000524521 ], [ 364321.390100002288818, 254596.462900001555681 ], [ 364307.668499998748302, 254598.03940000012517 ], [ 364305.83110000193119, 254624.410999998450279 ], [ 364313.901399999856949, 254623.632699999958277 ], [ 364325.209499999880791, 254621.403200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86010361, "LATITUDE": 18.32039756, "OBJECTID_1": 39712, "PARCEL_NO_": "107703025200", "Tax_Legal_": "NAZARETH ESTAE 2W-65 RED HOOK QTR", "Name": "BLAKE, ALOMA A", "Address": "PO Box 7402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 122000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.211587952599999, "SHAPE_Area": 561.51436403699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366297.703400000929832, 254607.782999999821186 ], [ 366297.446199998259544, 254637.967199999839067 ], [ 366314.357199996709824, 254640.638799998909235 ], [ 366316.226999998092651, 254610.467700000852346 ], [ 366314.617899999022484, 254610.032299999147654 ], [ 366313.021499998867512, 254608.11939999833703 ], [ 366309.805200003087521, 254607.037599999457598 ], [ 366297.703400000929832, 254607.782999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603023000", "MAP": "G9-695-T63", "PARCEL_NAM": "3-24", "ACRE": ".26", "LONGITUDE": -64.88057439000001, "LATITUDE": 18.32029952, "OBJECTID_1": 38600, "PARCEL_NO_": "107603023000", "Tax_Legal_": "3-24 BOVONI (EASTERN) NO 1 & 2 FRENCHMANS BAY QTR", "Name": "CHALLENGER, ETTA & ONNEKA", "Address": "7104 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.19229327599999, "SHAPE_Area": 1086.10083642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364135.811599999666214, 254572.554800000041723 ], [ 364133.663199998438358, 254578.039000000804663 ], [ 364121.298799999058247, 254609.601799998432398 ], [ 364138.173799999058247, 254616.494899999350309 ], [ 364145.163843978429213, 254608.640195568528725 ], [ 364152.684406139072962, 254601.291846004343824 ], [ 364160.698899999260902, 254594.485599998384714 ], [ 364163.514390035998076, 254592.7340224305226 ], [ 364166.193199999630451, 254590.779800001531839 ], [ 364170.700199998915195, 254585.913100000470877 ], [ 364135.811599999666214, 254572.554800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703025400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85970516, "LATITUDE": 18.32029593, "OBJECTID_1": 39714, "PARCEL_NO_": "107703025400", "Tax_Legal_": "NAZARETH ESTATE 2W-63 1 RED HOOK", "Name": "SYDNEY E FLAX TRUST & MARION E FLAX", "Address": "PO BOX 5032040", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28100, "Improved_V": 243600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.119420948, "SHAPE_Area": 1055.62633308 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366372.004600003361702, 254594.247800000011921 ], [ 366328.404399998486042, 254600.857099998742342 ], [ 366326.730599999427795, 254608.020500000566244 ], [ 366350.643100000917912, 254640.724700000137091 ], [ 366372.004600003361702, 254594.247800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86031533000001, "LATITUDE": 18.32039451, "OBJECTID_1": 39705, "PARCEL_NO_": "107703024400", "Tax_Legal_": "NAZARETH ESTATE 2W-66 RED HOOK QTR", "Name": "BLAKE, ALOMA A", "Address": "PO Box 7402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.94829561500001, "SHAPE_Area": 737.50702367500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366297.703400000929832, 254607.782999999821186 ], [ 366280.747400000691414, 254610.388399999588728 ], [ 366269.453699998557568, 254610.929299999028444 ], [ 366269.259499996900558, 254633.72580000013113 ], [ 366297.446199998259544, 254637.967199999839067 ], [ 366297.703400000929832, 254607.782999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603032400", "MAP": "A9-78-T67", "PARCEL_NAM": "33-80", "ACRE": "0.09", "LONGITUDE": -64.87875437, "LATITUDE": 18.32038501, "OBJECTID_1": 38646, "PARCEL_NO_": "107603032400", "Tax_Legal_": "33-80&33-81 NADIR RED HOOK QTR", "Name": "PETERSON, AUSTIN", "Address": "33-26 ESTATE NADIR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 41400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.8072319061, "SHAPE_Area": 557.51542463600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364350.311300002038479, 254609.154199998825788 ], [ 364345.620899997651577, 254591.806099999696016 ], [ 364321.390100002288818, 254596.462900001555681 ], [ 364325.209499999880791, 254621.403200000524521 ], [ 364350.311300002038479, 254609.154199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603012300", "MAP": "F9-185-T57", "PARCEL_NAM": "3-29", "ACRE": "0.22", "LONGITUDE": -64.88142724, "LATITUDE": 18.32031494, "OBJECTID_1": 38544, "PARCEL_NO_": "107603012300", "Tax_Legal_": "3-29 BOVONI FRENCHMAN BAY QTR", "Name": "RAMIREZ, ALFREDO", "Address": "PO BOX 11056", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 25000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.873341913, "SHAPE_Area": 1009.24356143 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364045.811099998652935, 254573.098099999129772 ], [ 364032.638599999248981, 254604.86540000140667 ], [ 364046.299099996685982, 254610.465599998831749 ], [ 364056.725500002503395, 254617.094900000840425 ], [ 364059.952500000596046, 254616.910199999809265 ], [ 364071.526799999177456, 254583.441100001335144 ], [ 364045.811099998652935, 254573.098099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604014400", "MAP": null, "PARCEL_NAM": "13-5", "ACRE": null, "LONGITUDE": -64.87378996, "LATITUDE": 18.32035805, "OBJECTID_1": 38898, "PARCEL_NO_": "107604014400", "Tax_Legal_": "NADIR 13-5A RED HOOK QTR", "Name": "ANDRE, NOEL E. & CHRISTINE", "Address": "PO Box 10513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.948194621599995, "SHAPE_Area": 578.61840593 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364878.002199999988079, 254616.279199998825788 ], [ 364864.909500002861023, 254593.311999998986721 ], [ 364847.165200002491474, 254593.80009999871254 ], [ 364848.303300000727177, 254618.734200000762939 ], [ 364878.002199999988079, 254616.279199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8620763, "LATITUDE": 18.32040582, "OBJECTID_1": 39624, "PARCEL_NO_": "107703013000", "Tax_Legal_": "NAZARETH ESTATE 2W-10 RED HOOK QTR", "Name": "HIGGINS, SUSAN", "Address": "PO Box 10023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31200, "Improved_V": 226100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.789880313, "SHAPE_Area": 594.53608485100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366116.900600001215935, 254628.467999998480082 ], [ 366113.813799999654293, 254612.188499998301268 ], [ 366081.534299999475479, 254615.090700000524521 ], [ 366080.573299996554852, 254633.236900001764297 ], [ 366116.900600001215935, 254628.467999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603040600", "MAP": "D9-606-T66", "PARCEL_NAM": "26A", "ACRE": "0.87", "LONGITUDE": -64.87756776000001, "LATITUDE": 18.31993368, "OBJECTID_1": 38718, "PARCEL_NO_": "107603040600", "Tax_Legal_": "26A NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 149200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.14207540699999, "SHAPE_Area": 3893.4516469599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364502.210900001227856, 254570.89469999819994 ], [ 364468.250799998641014, 254510.735700000077486 ], [ 364448.393100000917912, 254524.296999998390675 ], [ 364432.75620000064373, 254535.330099999904633 ], [ 364420.341399997472763, 254544.658599998801947 ], [ 364420.233900003135204, 254545.427400000393391 ], [ 364444.787299998104572, 254587.337499998509884 ], [ 364452.941100001335144, 254599.785700000822544 ], [ 364497.373099997639656, 254573.627500001341105 ], [ 364502.210900001227856, 254570.89469999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86171204, "LATITUDE": 18.3203444, "OBJECTID_1": 39668, "PARCEL_NO_": "107703020400", "Tax_Legal_": "NAZARETH ESTATE 2W-52 RED HOOK", "Name": "COMPTON, DOROTHY J", "Address": "6518 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 150300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.27976230199999, "SHAPE_Area": 745.08130981900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366152.387299999594688, 254627.703000001609325 ], [ 366143.774999998509884, 254597.446100000292063 ], [ 366125.98759999871254, 254603.000100001692772 ], [ 366122.740800000727177, 254605.506599999964237 ], [ 366121.898500002920628, 254609.721599999815226 ], [ 366125.804200001060963, 254624.530099999159575 ], [ 366126.542099997401237, 254632.557700000703335 ], [ 366149.149499997496605, 254629.154100000858307 ], [ 366152.387299999594688, 254627.703000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86106679, "LATITUDE": 18.32033955, "OBJECTID_1": 39695, "PARCEL_NO_": "107703023400", "Tax_Legal_": "NAZARETH ESTATE 2W-56 RED HOOK QTR", "Name": "GEORGE, MELIKA A.", "Address": "PO Box 9577", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.653124591299999, "SHAPE_Area": 369.86079945199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366216.138099998235703, 254622.103000000119209 ], [ 366205.841300003230572, 254600.276099998503923 ], [ 366199.347599998116493, 254605.289200000464916 ], [ 366193.665700003504753, 254609.675700001418591 ], [ 366203.154399998486042, 254631.707100000232458 ], [ 366216.138099998235703, 254622.103000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84730748, "LATITUDE": 18.32017594, "OBJECTID_1": 40185, "PARCEL_NO_": "107803012900", "Tax_Legal_": "NAZARETH ESTATE 9-58 RED HOOK QTR.", "Name": "TOUSSANT, M. , M. R. , M. O. B. & M", "Address": "PO Box 6594", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 106300, "Improved_V": 335800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.82796436199999, "SHAPE_Area": 2417.4547048499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367683.723899997770786, 254622.715500000864267 ], [ 367690.375799998641014, 254599.127399999648333 ], [ 367691.28999999910593, 254586.469300001859665 ], [ 367689.718800000846386, 254581.601300001144409 ], [ 367645.303199999034405, 254589.259300000965595 ], [ 367645.24210000038147, 254596.436000000685453 ], [ 367641.982699997723103, 254600.420099999755621 ], [ 367639.554799996316433, 254601.455699998885393 ], [ 367619.039099998772144, 254643.295400001108646 ], [ 367683.723899997770786, 254622.715500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032400", "MAP": "D9-191-T58", "PARCEL_NAM": "2A", "ACRE": "0.40", "LONGITUDE": -64.87119543, "LATITUDE": 18.32033661, "OBJECTID_1": 38968, "PARCEL_NO_": "107604032400", "Tax_Legal_": "2A ESTATE FRYDENHOJ RED HOOK QTR", "Name": "TESTAMARK, DAISY", "Address": "PO Box 502306", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 57700, "Improved_V": 185600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.71003036499999, "SHAPE_Area": 2071.5459544199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365181.585299998521805, 254619.968499999493361 ], [ 365176.106499999761581, 254600.503100000321865 ], [ 365173.553199999034405, 254600.079100001603365 ], [ 365157.837499998509884, 254597.469200000166893 ], [ 365103.218500003218651, 254588.398800000548363 ], [ 365102.996799997985363, 254588.212099999189377 ], [ 365097.151399999856949, 254591.515399999916553 ], [ 365096.060900002717972, 254596.967799998819828 ], [ 365095.357699997723103, 254602.637299999594688 ], [ 365094.447999998927116, 254609.97239999845624 ], [ 365094.951999999582767, 254618.239000000059605 ], [ 365097.737800002098083, 254618.226799998432398 ], [ 365145.304799996316433, 254619.249400001019239 ], [ 365181.585299998521805, 254619.968499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86149489, "LATITUDE": 18.32027293, "OBJECTID_1": 39684, "PARCEL_NO_": "107703022300", "Tax_Legal_": "NAZARETH ESTATE 2W-51 RED HOOK QTR", "Name": "RABSATT, ADOLPH & UNA", "Address": "6516 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 187900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.873123369, "SHAPE_Area": 758.01942138899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366175.856700003147125, 254617.762600000947714 ], [ 366166.421899996697903, 254589.398800000548363 ], [ 366143.774999998509884, 254597.446100000292063 ], [ 366152.387299999594688, 254627.703000001609325 ], [ 366170.1908999979496, 254620.249299999326468 ], [ 366175.856700003147125, 254617.762600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604043600", "MAP": "B9-397-T73", "PARCEL_NAM": null, "ACRE": ".34", "LONGITUDE": -64.86914889000001, "LATITUDE": 18.3201741, "OBJECTID_1": 39030, "PARCEL_NO_": "107604043600", "Tax_Legal_": "114-1 ESTATE FRYDENHOJ NO.3 RED HOOK QTR", "Name": "REHENIA BRUNN LIV TRUST (LIFE ESTATE)", "Address": "PO Box 302274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82200, "Improved_V": 77200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.47029344800001, "SHAPE_Area": 1248.47094745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365376.12780000269413, 254595.596200000494719 ], [ 365356.8716000020504, 254584.250700000673532 ], [ 365334.517800003290176, 254557.892099998891354 ], [ 365326.217299997806549, 254585.688499998301268 ], [ 365350.246699996292591, 254604.672499999403954 ], [ 365369.468699999153614, 254620.028599999845028 ], [ 365376.12780000269413, 254595.596200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603022900", "MAP": "F9-157-T57", "PARCEL_NAM": "3-23", "ACRE": "0.22", "LONGITUDE": -64.88081822, "LATITUDE": 18.32023419, "OBJECTID_1": 38599, "PARCEL_NO_": "107603022900", "Tax_Legal_": "3-23 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "PHILBERT, JAMES & JUDY GEORGE", "Address": "PO Box 10696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 188600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.097126691, "SHAPE_Area": 988.74758312400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364112.817299999296665, 254563.653400000184774 ], [ 364111.172799997031689, 254567.72239999845624 ], [ 364097.993000000715256, 254600.334100000560284 ], [ 364121.298799999058247, 254609.601799998432398 ], [ 364133.663199998438358, 254578.039000000804663 ], [ 364135.811599999666214, 254572.554800000041723 ], [ 364115.93129999935627, 254564.640500001609325 ], [ 364112.817299999296665, 254563.653400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87560955, "LATITUDE": 18.32021842, "OBJECTID_1": 38796, "PARCEL_NO_": "107603061500", "Tax_Legal_": "7N&7-I-A NADIR RED HOOK QTR", "Name": "AUSTIN HARRIGAN,JOEL and DELREASE BENJAMIN", "Address": "6409 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43100, "Improved_V": 210100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.68147277599999, "SHAPE_Area": 1330.9374795799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364657.902999997138977, 254566.286499999463558 ], [ 364646.263899996876717, 254607.354499999433756 ], [ 364665.561499997973442, 254613.845300000160933 ], [ 364688.336000002920628, 254590.8114 ], [ 364690.031400002539158, 254581.114900000393391 ], [ 364688.451099999248981, 254577.302299998700619 ], [ 364686.0574000030756, 254574.327399998903275 ], [ 364682.04559999704361, 254571.972600001841784 ], [ 364657.902999997138977, 254566.286499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061100", "MAP": "A9-557-T000", "PARCEL_NAM": "7K REM", "ACRE": "0.22", "LONGITUDE": -64.87639851, "LATITUDE": 18.32027407, "OBJECTID_1": 38792, "PARCEL_NO_": "107603061100", "Tax_Legal_": "7K NADIR RED HOOK QTR", "Name": "TATEM, SYDNEY", "Address": "3070 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22900, "Improved_V": 102000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.21441281400001, "SHAPE_Area": 1107.45008917 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364611.140299998223782, 254586.337200000882149 ], [ 364578.126299999654293, 254576.844500001519918 ], [ 364569.827899999916553, 254587.519400000572205 ], [ 364554.854800000786781, 254606.460999999195337 ], [ 364595.899599999189377, 254609.838599998503923 ], [ 364610.141699999570847, 254588.060499999672174 ], [ 364611.140299998223782, 254586.337200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020400", "MAP": "D9-6956-T001", "PARCEL_NAM": "5-REM", "ACRE": null, "LONGITUDE": -64.84505217, "LATITUDE": 18.31951228, "OBJECTID_1": 40198, "PARCEL_NO_": "107803020400", "Tax_Legal_": "5 REMAINDER ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "FOSTER, JOHN F. TRUSTEE", "Address": "6900 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 369800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 330.87632068, "SHAPE_Area": 5890.1182420799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367878.339400000870228, 254495.119100000709295 ], [ 367871.425700001418591, 254491.912999998778105 ], [ 367857.982299998402596, 254518.351799998432398 ], [ 367857.087999999523163, 254520.110500000417233 ], [ 367851.401500001549721, 254531.293999999761581 ], [ 367852.659500002861023, 254568.937699999660254 ], [ 367855.935999996960163, 254569.240600001066923 ], [ 367938.975400000810623, 254571.186799999326468 ], [ 367941.394299998879433, 254571.206599999219179 ], [ 367952.825499996542931, 254564.013000000268221 ], [ 367952.631700001657009, 254525.454599998891354 ], [ 367911.513899996876717, 254523.432399999350309 ], [ 367910.839800000190735, 254520.286800000816584 ], [ 367908.368299998342991, 254517.815200001001358 ], [ 367906.570799998939037, 254514.444899998605251 ], [ 367907.469499997794628, 254500.738899998366833 ], [ 367909.350000001490116, 254497.163400001823902 ], [ 367884.782700002193451, 254496.016199998557568 ], [ 367878.339400000870228, 254495.119100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803021300", "MAP": "B9-225-T69", "PARCEL_NAM": "5-32", "ACRE": null, "LONGITUDE": -64.84417238, "LATITUDE": 18.31998952, "OBJECTID_1": 40207, "PARCEL_NO_": "107803021300", "Tax_Legal_": null, "Name": "WYNDHAM ST THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 203800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.182466019, "SHAPE_Area": 4673.1268539599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367938.975400000810623, 254571.186799999326468 ], [ 367975.659400001168251, 254619.194200001657009 ], [ 368036.764700002968311, 254640.170400001108646 ], [ 368041.782399997115135, 254619.102099999785423 ], [ 368028.949699997901917, 254610.975499998778105 ], [ 367988.415799997746944, 254541.616200000047684 ], [ 367941.394299998879433, 254571.206599999219179 ], [ 367938.975400000810623, 254571.186799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86288992, "LATITUDE": 18.32022592, "OBJECTID_1": 39639, "PARCEL_NO_": "107703015000", "Tax_Legal_": "FRYDENHOJ ESTATE 41-5-7 3 RED HOOK QTR", "Name": "TURNBULL, WILBOUR & ILEAN", "Address": "6221 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51300, "Improved_V": 122100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.356277374, "SHAPE_Area": 1703.86182833 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366041.342799998819828, 254600.196299999952316 ], [ 366035.8783999979496, 254579.042300000786781 ], [ 366020.545900002121925, 254580.394400000572205 ], [ 366012.464800000190735, 254582.4391999989748 ], [ 366001.941299997270107, 254587.208200000226498 ], [ 365997.074699997901917, 254590.545899998396635 ], [ 365988.935999996960163, 254599.345199998468161 ], [ 365981.589299999177456, 254609.839800000190735 ], [ 365980.718299999833107, 254617.432000000029802 ], [ 366025.82320000231266, 254623.500700000673532 ], [ 366029.235500000417233, 254601.57490000128746 ], [ 366041.342799998819828, 254600.196299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85626078, "LATITUDE": 18.32011456, "OBJECTID_1": 39786, "PARCEL_NO_": "107704012500", "Tax_Legal_": "2G&2X-8 NAZARETH ESTATE RED HOOK QUARTER", "Name": "DELUGO, ROBERT & JOAN E", "Address": "PO Box 10035", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 113500, "Improved_V": 373700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.79585573599999, "SHAPE_Area": 2150.4001167900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366729.632600001990795, 254546.51240000128746 ], [ 366692.996100001037121, 254587.586899999529123 ], [ 366690.517800003290176, 254594.532699998468161 ], [ 366691.212600000202656, 254607.626200001686811 ], [ 366692.762299999594688, 254615.027100000530481 ], [ 366695.944399997591972, 254620.11939999833703 ], [ 366702.348200000822544, 254625.660199999809265 ], [ 366710.387900002300739, 254628.470300000160933 ], [ 366715.222199998795986, 254628.932000000029802 ], [ 366728.137599997222424, 254627.348999999463558 ], [ 366729.632600001990795, 254546.51240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604042900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8680521, "LATITUDE": 18.32021097, "OBJECTID_1": 39023, "PARCEL_NO_": "107604042900", "Tax_Legal_": "FRYDENHOJ 12B RED HOOK QTR", "Name": "HILAIRE GIBSON BENJAMIN & ALICIA BENJAMIN", "Address": "12B ESTATE FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23000, "Improved_V": 387400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.99554704799999, "SHAPE_Area": 961.67281594999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365488.239399999380112, 254592.503100000321865 ], [ 365485.859999999403954, 254587.839499998837709 ], [ 365481.076099999248981, 254581.467599999159575 ], [ 365469.863200001418591, 254572.509899999946356 ], [ 365442.965400002896786, 254606.275800000876188 ], [ 365452.603399999439716, 254610.787599999457598 ], [ 365457.410700000822544, 254614.415600001811981 ], [ 365459.804499998688698, 254617.390500001609325 ], [ 365488.239399999380112, 254592.503100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603012200", "MAP": "F9-101-T57", "PARCEL_NAM": "3-30", "ACRE": "0.22", "LONGITUDE": -64.88165144, "LATITUDE": 18.32023157, "OBJECTID_1": 38543, "PARCEL_NO_": "107603012200", "Tax_Legal_": "3-30 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "LLOYD, ELKIN", "Address": "PO Box 308447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27700, "Improved_V": 152400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.07493658200001, "SHAPE_Area": 765.67676047999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364025.719800002872944, 254565.123199999332428 ], [ 364022.417300000786781, 254574.173200000077486 ], [ 364013.387800000607967, 254592.886599998921156 ], [ 364014.143700003623962, 254598.803399998694658 ], [ 364016.546499997377396, 254600.722899999469519 ], [ 364032.638599999248981, 254604.86540000140667 ], [ 364045.811099998652935, 254573.098099999129772 ], [ 364025.719800002872944, 254565.123199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86090667000001, "LATITUDE": 18.32022632, "OBJECTID_1": 39698, "PARCEL_NO_": "107703023700", "Tax_Legal_": "NAZARETH ESTATE 2W-57 RED HOOK QTR", "Name": "POMPEY, CYNTHIA E., JOHN A. & NICOLE POMPEY-BROWNE", "Address": "PO Box 9534", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.085570498, "SHAPE_Area": 604.406635897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366234.796599999070168, 254608.956900000572205 ], [ 366231.774599999189377, 254585.078499998897314 ], [ 366213.945799998939037, 254595.487300001084805 ], [ 366205.841300003230572, 254600.276099998503923 ], [ 366216.138099998235703, 254622.103000000119209 ], [ 366234.796599999070168, 254608.956900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803011200", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".64", "LONGITUDE": -64.8489279, "LATITUDE": 18.3201845, "OBJECTID_1": 40169, "PARCEL_NO_": "107803011200", "Tax_Legal_": "NAZARETH 9-42 RED HOOK QUARTER", "Name": "WALTERS, CLARENCE", "Address": "PO Box 307142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 127200, "Improved_V": 269400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.78372151900001, "SHAPE_Area": 1954.23407247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367520.960299998521805, 254608.295499999076128 ], [ 367481.643399998545647, 254585.386700000613928 ], [ 367459.76690000295639, 254597.662200000137091 ], [ 367455.699299998581409, 254601.85080000013113 ], [ 367455.681400001049042, 254603.961599998176098 ], [ 367462.02759999781847, 254616.256900001317263 ], [ 367474.793700002133846, 254632.193399999290705 ], [ 367529.745200000703335, 254618.288800001144409 ], [ 367520.960299998521805, 254608.295499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87588449, "LATITUDE": 18.32017231, "OBJECTID_1": 38795, "PARCEL_NO_": "107603061400", "Tax_Legal_": "7M NADIR RED HOOK QTR", "Name": "VAN HOLTEN, ALMANDO & RUTH (LIFE ESTATE)", "Address": "PO Box 303415", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 108000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.744713961, "SHAPE_Area": 1133.49457985 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364657.902999997138977, 254566.286499999463558 ], [ 364637.782899998128414, 254561.688900001347065 ], [ 364634.545100003480911, 254563.140099998563528 ], [ 364615.712200000882149, 254596.760899998247623 ], [ 364635.00789999961853, 254603.462699998170137 ], [ 364646.263899996876717, 254607.354499999433756 ], [ 364657.902999997138977, 254566.286499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87025016, "LATITUDE": 18.32020639, "OBJECTID_1": 38972, "PARCEL_NO_": "107604032800", "Tax_Legal_": "FRYDENHOJ 52F RED HOOK QTR.", "Name": "BENJAMIN, JOHN", "Address": "PO Box 1657", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 27600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.563555403, "SHAPE_Area": 644.31857732000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365248.633299998939037, 254605.951799999922514 ], [ 365237.620099999010563, 254573.564399998635054 ], [ 365219.820000000298023, 254580.595899999141693 ], [ 365222.9662000015378, 254589.909699998795986 ], [ 365230.037799999117851, 254611.710200000554323 ], [ 365248.633299998939037, 254605.951799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033900", "MAP": "F9-995-T62", "PARCEL_NAM": "2L", "ACRE": ".03", "LONGITUDE": -64.87167996, "LATITUDE": 18.32028252, "OBJECTID_1": 38982, "PARCEL_NO_": "107604033900", "Tax_Legal_": "2L&2M FRYDENHOJ RED HOOK", "Name": "RABSATT, SANFORD", "Address": "6024 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9300, "Improved_V": 62700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.926961778500001, "SHAPE_Area": 261.94957605100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365091.510300002992153, 254592.000199999660254 ], [ 365075.387599997222424, 254591.446100000292063 ], [ 365075.238399997353554, 254608.965599998831749 ], [ 365089.755599997937679, 254608.662300001829863 ], [ 365091.510300002992153, 254592.000199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704036000", "MAP": "D9-338-T62", "PARCEL_NAM": "9-6", "ACRE": ".48", "LONGITUDE": -64.8495042, "LATITUDE": 18.32006189, "OBJECTID_1": 40019, "PARCEL_NO_": "107704036000", "Tax_Legal_": "9-6 NAZARETH RED HOOK QUARTER", "Name": "NEUMANN ZEPEDA FAMILY TRUST", "Address": "3300 Veterans Drive Sta", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98700, "Improved_V": 189800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.01819646499999, "SHAPE_Area": 2127.9337561799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367415.613899998366833, 254574.502700001001358 ], [ 367403.41669999808073, 254586.435199998319149 ], [ 367410.319300003349781, 254628.077199999243021 ], [ 367450.762599997222424, 254613.420499999076128 ], [ 367447.598499998450279, 254606.217399999499321 ], [ 367446.847900003194809, 254599.667399998754263 ], [ 367448.491099998354912, 254596.092300001531839 ], [ 367454.185599997639656, 254590.228199999779463 ], [ 367432.66330000013113, 254560.92119999974966 ], [ 367415.613899998366833, 254574.502700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86127697000001, "LATITUDE": 18.3201839, "OBJECTID_1": 39689, "PARCEL_NO_": "107703022800", "Tax_Legal_": "2W-50 NAZARETH ESTATE 1 RED HOOK QUARTER", "Name": "HODGE, AUSTIN & JEANNY", "Address": "PO Box 9722", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 183400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.087357251, "SHAPE_Area": 740.40184203800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366199.347599998116493, 254605.289200000464916 ], [ 366188.2804000005126, 254579.234099999070168 ], [ 366176.130000002682209, 254585.678599998354912 ], [ 366166.421899996697903, 254589.398800000548363 ], [ 366175.856700003147125, 254617.762600000947714 ], [ 366193.665700003504753, 254609.675700001418591 ], [ 366199.347599998116493, 254605.289200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603022800", "MAP": "F9-146-T57", "PARCEL_NAM": "3-22", "ACRE": "0.22", "LONGITUDE": -64.8810376, "LATITUDE": 18.32014531, "OBJECTID_1": 38598, "PARCEL_NO_": "107603022800", "Tax_Legal_": "3-22 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "A&J PROPERTIES LLC", "Address": "PO Box 304843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 60600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.10950139600001, "SHAPE_Area": 1020.0959946200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364090.365099996328354, 254553.014299999922514 ], [ 364089.409148984996136, 254553.839870029507438 ], [ 364088.584708754904568, 254554.796795584057691 ], [ 364087.9096329700551, 254555.864353963959729 ], [ 364087.398540732741822, 254557.019426660757745 ], [ 364087.0625, 254558.236999999731779 ], [ 364075.493600003421307, 254591.072900000959635 ], [ 364097.993000000715256, 254600.334100000560284 ], [ 364111.172799997031689, 254567.72239999845624 ], [ 364112.817299999296665, 254563.653400000184774 ], [ 364107.31088278547395, 254561.376429259340512 ], [ 364102.08770432905294, 254558.508741497411393 ], [ 364097.210900001227856, 254555.08500000089407 ], [ 364095.02258406591136, 254554.107295976340538 ], [ 364092.728439922560938, 254553.41336914873682 ], [ 364090.365099996328354, 254553.014299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84635155, "LATITUDE": 18.32010406, "OBJECTID_1": 40204, "PARCEL_NO_": "107803021000", "Tax_Legal_": "5-13 NAZARETH RED HOOK QTR", "Name": "GRYBOWSKI FAMILY TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 146000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.03208994299999, "SHAPE_Area": 2280.7777250200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367784.455399997532368, 254630.294900000095367 ], [ 367784.570500001311302, 254616.785900000482798 ], [ 367781.514300003647804, 254596.918099999427795 ], [ 367779.169100001454353, 254588.243999999016523 ], [ 367772.828299999237061, 254575.315400000661612 ], [ 367771.264200001955032, 254569.603100001811981 ], [ 367734.838100001215935, 254585.9814000017941 ], [ 367740.129799999296665, 254627.399000000208616 ], [ 367784.455399997532368, 254630.294900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024900", "MAP": "F9-3937-T57", "PARCEL_NAM": "3-31", "ACRE": "0.22", "LONGITUDE": -64.88192698, "LATITUDE": 18.3201596, "OBJECTID_1": 38617, "PARCEL_NO_": "107603024900", "Tax_Legal_": "3-31 BOVONI NO. 1&2 FRENCHMANS BAY QTR", "Name": "A & J PROPERTIES LLC", "Address": "PO Box 9355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 100300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.644562177, "SHAPE_Area": 970.35047897599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363993.548199996352196, 254555.360700000077486 ], [ 363981.977600000798702, 254588.407699998468161 ], [ 363990.794799998402596, 254594.601500000804663 ], [ 363998.021099999547005, 254598.249299999326468 ], [ 364002.050899997353554, 254598.493299998342991 ], [ 364004.478799998760223, 254597.457800000905991 ], [ 364006.107600003480911, 254595.571199998259544 ], [ 364019.267499998211861, 254565.281500000506639 ], [ 363993.548199996352196, 254555.360700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86208294, "LATITUDE": 18.32023774, "OBJECTID_1": 39625, "PARCEL_NO_": "107703013100", "Tax_Legal_": "NAZARETH ESTATE 2W-11&12 1 RED HOOK QTR", "Name": "NESBITT, GILROY & PAULINE", "Address": "PO Box 9776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77300, "Improved_V": 190500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.19146197000001, "SHAPE_Area": 598.0223666000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366113.813799999654293, 254612.188499998301268 ], [ 366109.960199996829033, 254591.258699998259544 ], [ 366083.312399998307228, 254595.68470000103116 ], [ 366081.534299999475479, 254615.090700000524521 ], [ 366113.813799999654293, 254612.188499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604035500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87006337, "LATITUDE": 18.3201429, "OBJECTID_1": 38995, "PARCEL_NO_": "107604035500", "Tax_Legal_": "52G-A ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SMITH, DEBORAH A. & MCKENZIE", "Address": "109-15 130TH ST. S. OZONE PK", "City": "South Ozone Park", "State": "New York", "Zip": 11420, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.823514297, "SHAPE_Area": 793.84545544900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365257.847999997437, 254565.497299998998642 ], [ 365237.620099999010563, 254573.564399998635054 ], [ 365248.633299998939037, 254605.951799999922514 ], [ 365252.675700001418591, 254604.718299999833107 ], [ 365270.463100001215935, 254599.16440000012517 ], [ 365266.535800002515316, 254586.888799998909235 ], [ 365257.847999997437, 254565.497299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85218925, "LATITUDE": 18.31999519, "OBJECTID_1": 39902, "PARCEL_NO_": "107704020400", "Tax_Legal_": "2Y-6 NAZARETH RED HOOK QTR", "Name": "SCATLIFFE, V. & PENN, GLAYDS", "Address": "PO Box 754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 116200, "Improved_V": 455600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.78013511399999, "SHAPE_Area": 1924.2782787199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367165.656999997794628, 254572.456900000572205 ], [ 367122.236599996685982, 254557.958299998193979 ], [ 367111.504600003361702, 254587.212499998509884 ], [ 367118.747000001370907, 254588.960499998182058 ], [ 367136.423000000417233, 254596.493400000035763 ], [ 367142.828500002622604, 254601.82319999858737 ], [ 367154.779399998486042, 254618.808499999344349 ], [ 367159.59570000320673, 254621.381000000983477 ], [ 367165.239799998700619, 254621.427200000733137 ], [ 367165.656999997794628, 254572.456900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8518012, "LATITUDE": 18.32007365, "OBJECTID_1": 39904, "PARCEL_NO_": "107704020700", "Tax_Legal_": "NAZARETH ESTATE 2Y-10 RED HOOK QTR.", "Name": "ERIN ELISA LIPPINCOTT and BRIAN MICHAEL STUSS", "Address": "72 2nd Pl", "City": "Brooklyn", "State": "New York", "Zip": 11231, "Country": "United States", "Land_Value": 121500, "Improved_V": 696900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.114123914, "SHAPE_Area": 1875.09119943 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367206.417499996721745, 254615.220400001853704 ], [ 367200.375200003385544, 254567.252700001001358 ], [ 367165.656999997794628, 254572.456900000572205 ], [ 367165.239799998700619, 254621.427200000733137 ], [ 367180.572400003671646, 254620.075100000947714 ], [ 367206.417499996721745, 254615.220400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603070500", "MAP": "G9-1213-T69", "PARCEL_NAM": "13-8", "ACRE": ".231", "LONGITUDE": -64.87446927000001, "LATITUDE": 18.32016524, "OBJECTID_1": 38848, "PARCEL_NO_": "107603070500", "Tax_Legal_": "NADIR 13-8 RED HOOK QTR", "Name": "FLEMING (LIFE ESTATE), MARIGA", "Address": "2943 Shady Acres Loop", "City": "Rocklin", "State": "California", "Zip": 95765, "Country": "United States", "Land_Value": 27500, "Improved_V": 126000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.746398924, "SHAPE_Area": 978.81438354399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364801.761399999260902, 254599.647599998861551 ], [ 364804.660800002515316, 254566.432199999690056 ], [ 364778.840800002217293, 254568.331799998879433 ], [ 364773.06360000371933, 254583.905499998480082 ], [ 364768.882799997925758, 254601.392000000923872 ], [ 364801.761399999260902, 254599.647599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604043100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86827823, "LATITUDE": 18.32012604, "OBJECTID_1": 39025, "PARCEL_NO_": "107604043100", "Tax_Legal_": "12A ESTATE FRYDENHOJ NO.3 RED HOOK QTR", "Name": "THE M. CHRISTIAN & EVELYNE P. NYE REVOCABLE TRUST", "Address": "6193 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35300, "Improved_V": 68700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.250551207, "SHAPE_Area": 1141.2419350299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365469.863200001418591, 254572.509899999946356 ], [ 365457.804499998688698, 254568.189300000667572 ], [ 365440.882700003683567, 254566.784200001507998 ], [ 365418.8766999989748, 254594.257399998605251 ], [ 365419.629100002348423, 254600.5962999984622 ], [ 365422.831000000238419, 254603.366799999028444 ], [ 365435.726599998772144, 254604.105599999427795 ], [ 365442.965400002896786, 254606.275800000876188 ], [ 365469.863200001418591, 254572.509899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704050500", "MAP": "A9-314-T85", "PARCEL_NAM": null, "ACRE": ".42", "LONGITUDE": -64.85280167000001, "LATITUDE": 18.32019573, "OBJECTID_1": 40035, "PARCEL_NO_": "107704050500", "Tax_Legal_": "2Y-27&9M-5 NAZARETH RED HOOK QTR.", "Name": "MARTIN FAMILY TRUST", "Address": "PO Box 7403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 137300, "Improved_V": 434800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.32955208499999, "SHAPE_Area": 1749.1349479 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367132.299699999392033, 254607.225499998778105 ], [ 367048.565499998629093, 254592.1858000010252 ], [ 367019.338600002229214, 254615.377999998629093 ], [ 367023.339599996805191, 254618.999299999326468 ], [ 367033.854099996387959, 254615.285700000822544 ], [ 367052.420800000429153, 254612.904500000178814 ], [ 367089.493199996650219, 254615.318900000303984 ], [ 367133.80799999833107, 254619.481199998408556 ], [ 367137.846799999475479, 254618.669900000095367 ], [ 367139.484600000083447, 254615.728000000119209 ], [ 367138.703500002622604, 254612.76630000025034 ], [ 367132.299699999392033, 254607.225499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803041000", "MAP": null, "PARCEL_NAM": "8-2", "ACRE": null, "LONGITUDE": -64.84284553000001, "LATITUDE": 18.31935171, "OBJECTID_1": 40510, "PARCEL_NO_": "107803041000", "Tax_Legal_": "NAZARETH ESTATE 8-2 1 RED HOOK QTR", "Name": "RC HOTELS(VIRGIN ISLANDS)INC.", "Address": "1200 Bartow Rd", "City": "Lakeland", "State": "Florida", "Zip": 33801, "Country": "United States", "Land_Value": 399600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 697.08947772, "SHAPE_Area": 15894.561736400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368109.755400002002716, 254591.160799998790026 ], [ 368259.424199998378754, 254438.920800000429153 ], [ 368275.748199999332428, 254415.834100000560284 ], [ 368270.111199997365475, 254414.943599998950958 ], [ 368223.231799997389317, 254427.858800001442432 ], [ 368193.972599998116493, 254454.850400000810623 ], [ 368192.34740000218153, 254456.314699999988079 ], [ 368187.477200001478195, 254460.074499998241663 ], [ 368182.619499996304512, 254462.356800001114607 ], [ 368175.346500001847744, 254464.19709999859333 ], [ 368164.052699998021126, 254464.738000001758337 ], [ 368147.028499998152256, 254475.364399999380112 ], [ 368090.30969999730587, 254507.408599998801947 ], [ 368027.208700001239777, 254531.379000000655651 ], [ 368037.554099999368191, 254547.506799999624491 ], [ 368052.561200000345707, 254584.359900001436472 ], [ 368055.626400001347065, 254603.1722999997437 ], [ 368053.01860000193119, 254625.315799999982119 ], [ 368106.357500001788139, 254611.397999998182058 ], [ 368109.755400002002716, 254591.160799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032600", "MAP": "G9-1577-T70", "PARCEL_NAM": "2U", "ACRE": "0.52", "LONGITUDE": -64.87080442, "LATITUDE": 18.31999298, "OBJECTID_1": 38970, "PARCEL_NO_": "107604032600", "Tax_Legal_": "2U&2V FRYDENHOJ RED HOOK QTR", "Name": "DORIS SIMMONDS", "Address": "PO Box 502963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052963, "Country": "United States", "Land_Value": 96400, "Improved_V": 80000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.094449887, "SHAPE_Area": 1737.2396271299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365157.837499998509884, 254597.469200000166893 ], [ 365173.553199999034405, 254600.079100001603365 ], [ 365179.383900001645088, 254594.40819999948144 ], [ 365185.904600001871586, 254586.228900000452995 ], [ 365186.732500001788139, 254583.702599998563528 ], [ 365189.174800001084805, 254580.978300001472235 ], [ 365194.107900001108646, 254569.830699998885393 ], [ 365195.86259999871254, 254553.168699998408556 ], [ 365193.565999999642372, 254538.7956000007689 ], [ 365184.909999996423721, 254539.983800001442432 ], [ 365181.417499996721745, 254540.380699999630451 ], [ 365155.13629999756813, 254558.155499998480082 ], [ 365155.480499997735023, 254560.648699998855591 ], [ 365159.3412000015378, 254580.734200000762939 ], [ 365157.837499998509884, 254597.469200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604044600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86865642, "LATITUDE": 18.32018268, "OBJECTID_1": 39040, "PARCEL_NO_": "107604044600", "Tax_Legal_": "12J & 12Z-1 FRYDENHOJ (CONS) NO. 3 RED HOOK QTR", "Name": "ROGERS, GEORGE DEVON & JOVAN ASEEM", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58900, "Improved_V": 142000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.739725850300005, "SHAPE_Area": 454.028155852 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365411.673900000751019, 254587.865600001066923 ], [ 365410.10980000346899, 254582.153299998492002 ], [ 365408.515100002288818, 254580.02930000051856 ], [ 365406.126800000667572, 254576.42119999974966 ], [ 365402.894299998879433, 254577.239100001752377 ], [ 365393.132299996912479, 254587.291700001806021 ], [ 365389.070100001990795, 254590.846999999135733 ], [ 365389.023400001227856, 254596.335099998861551 ], [ 365393.827100001275539, 254600.385200001299381 ], [ 365404.291199997067451, 254602.581700000911951 ], [ 365413.961499996483326, 254603.294199999421835 ], [ 365414.791199997067451, 254600.556699998676777 ], [ 365411.673900000751019, 254587.865600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "107603040500", "MAP": "D3-219-T51", "PARCEL_NAM": "23", "ACRE": "1.64", "LONGITUDE": -64.87819728, "LATITUDE": 18.31988049, "OBJECTID_1": 38717, "PARCEL_NO_": "107603040500", "Tax_Legal_": "23 EST NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 220800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 368.45934106700003, "SHAPE_Area": 7342.4826530500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364419.685199998319149, 254500.625199999660254 ], [ 364414.912299998104572, 254486.11939999833703 ], [ 364404.561899997293949, 254488.219399999827147 ], [ 364401.331200003623962, 254488.826200000941753 ], [ 364348.735699996352196, 254510.138399999588728 ], [ 364358.962399996817112, 254540.197399999946356 ], [ 364354.101199999451637, 254542.901799999177456 ], [ 364366.016099996864796, 254564.10869999974966 ], [ 364365.101800002157688, 254576.766800001263618 ], [ 364365.085699997842312, 254578.666499998420477 ], [ 364370.594999998807907, 254594.543600000441074 ], [ 364372.168099999427795, 254599.200599998235703 ], [ 364377.357699997723103, 254615.517499998211861 ], [ 364388.600900001823902, 254610.818799998611212 ], [ 364411.36429999768734, 254601.305599998682737 ], [ 364444.787299998104572, 254587.337499998509884 ], [ 364420.233900003135204, 254545.427400000393391 ], [ 364422.546400003135204, 254528.893300000578165 ], [ 364424.467299997806549, 254515.159000001847744 ], [ 364419.685199998319149, 254500.625199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032500", "MAP": "G9-1275-T69", "PARCEL_NAM": "2Q", "ACRE": "0.26", "LONGITUDE": -64.87114629, "LATITUDE": 18.32010845, "OBJECTID_1": 38969, "PARCEL_NO_": "107604032500", "Tax_Legal_": "2Q FRYDENHOJ RED HOOK QTR", "Name": "THOMSON, ELEANOR A.", "Address": "5960 Maxifield Ct", "City": "Manassas", "State": "Virginia", "Zip": 20112, "Country": "United States", "Land_Value": 37500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.619733258, "SHAPE_Area": 1109.13996595 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365102.996799997985363, 254588.212099999189377 ], [ 365103.218500003218651, 254588.398800000548363 ], [ 365157.837499998509884, 254597.469200000166893 ], [ 365159.3412000015378, 254580.734200000762939 ], [ 365155.480499997735023, 254560.648699998855591 ], [ 365155.13629999756813, 254558.155499998480082 ], [ 365146.769000001251698, 254563.397599998861551 ], [ 365111.585900001227856, 254583.358300000429153 ], [ 365102.996799997985363, 254588.212099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703027800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8606629, "LATITUDE": 18.32010433, "OBJECTID_1": 39732, "PARCEL_NO_": "107703027800", "Tax_Legal_": "NAZARETH ESTATE 2W-58 RED HOOK QTR", "Name": "DURANT, WINIFRED", "Address": "PO Box 502984", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.59295327700001, "SHAPE_Area": 760.40180133000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366262.277800001204014, 254601.371300000697374 ], [ 366260.105200000107288, 254572.433699999004602 ], [ 366253.651100002229214, 254572.803100001066923 ], [ 366235.825900003314018, 254582.789700001478195 ], [ 366231.774599999189377, 254585.078499998897314 ], [ 366234.796599999070168, 254608.956900000572205 ], [ 366240.4695999994874, 254605.625799998641014 ], [ 366248.557899996638298, 254602.736699998378754 ], [ 366262.277800001204014, 254601.371300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604045600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86948487, "LATITUDE": 18.32001863, "OBJECTID_1": 39050, "PARCEL_NO_": "107604045600", "Tax_Legal_": "74A-2 ESTATE FRYDENHOJ REDHOOK QTR.", "Name": "TOUSSAINT, ERNESTIN & ESRA", "Address": "6224 EST. FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32600, "Improved_V": 64100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.72964808, "SHAPE_Area": 1174.46672272 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365334.517800003290176, 254557.892099998891354 ], [ 365312.244099996984005, 254547.547699999064207 ], [ 365310.185300000011921, 254551.355599999427795 ], [ 365295.638599999248981, 254578.261100001633167 ], [ 365300.41889999806881, 254585.05519999936223 ], [ 365311.570600003004074, 254601.189599998295307 ], [ 365326.217299997806549, 254585.688499998301268 ], [ 365334.517800003290176, 254557.892099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032600", "MAP": "G9-1577-T70", "PARCEL_NAM": "2V", "ACRE": "0.19", "LONGITUDE": -64.87052448, "LATITUDE": 18.31998827, "OBJECTID_1": 38970, "PARCEL_NO_": "107604032600", "Tax_Legal_": "2U&2V FRYDENHOJ RED HOOK QTR", "Name": "DORIS SIMMONDS", "Address": "PO Box 502963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052963, "Country": "United States", "Land_Value": 96400, "Improved_V": 80000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.79994205099999, "SHAPE_Area": 1063.5980947800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365206.980400003492832, 254540.15260000154376 ], [ 365194.690600000321865, 254501.441199999302626 ], [ 365195.435699999332428, 254508.624499998986721 ], [ 365197.592799998819828, 254524.347300000488758 ], [ 365201.541000001132488, 254549.2043999992311 ], [ 365202.262800000607967, 254559.131700001657009 ], [ 365201.443899996578693, 254560.602699998766184 ], [ 365200.542300000786781, 254571.78319999948144 ], [ 365193.161399997770786, 254586.28830000013113 ], [ 365183.377700001001358, 254598.873799998313189 ], [ 365222.9662000015378, 254589.909699998795986 ], [ 365219.820000000298023, 254580.595899999141693 ], [ 365206.980400003492832, 254540.15260000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85139773, "LATITUDE": 18.32003255, "OBJECTID_1": 39905, "PARCEL_NO_": "107704020800", "Tax_Legal_": "2Y-11 NAZARETH RED HOOK QTR.", "Name": "MAYNARD, PAUL", "Address": "PO Box 11125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 132100, "Improved_V": 544400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.076602799, "SHAPE_Area": 2154.82634379 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367265.418600000441074, 254599.238000001758337 ], [ 367225.403300002217293, 254563.657800000160933 ], [ 367200.375200003385544, 254567.252700001001358 ], [ 367206.417499996721745, 254615.220400001853704 ], [ 367256.479000002145767, 254607.397399999201298 ], [ 367262.970899999141693, 254602.595400001853704 ], [ 367265.418600000441074, 254599.238000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603012000", "MAP": "F9-101-T57", "PARCEL_NAM": "3-32", "ACRE": "0..22", "LONGITUDE": -64.88212897, "LATITUDE": 18.32006835, "OBJECTID_1": 38542, "PARCEL_NO_": "107603012000", "Tax_Legal_": "3-32 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "KUVACH, ANGELINA", "Address": "PO Box 304452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.052213162, "SHAPE_Area": 681.25424954699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363974.259700000286102, 254547.814500000327826 ], [ 363964.355599999427795, 254574.542399998754263 ], [ 363964.330399997532368, 254577.497499998658895 ], [ 363974.769299998879433, 254582.649099998176098 ], [ 363981.977600000798702, 254588.407699998468161 ], [ 363993.548199996352196, 254555.360700000077486 ], [ 363974.259700000286102, 254547.814500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604014500", "MAP": "F9-2249-T68", "PARCEL_NAM": "13-6", "ACRE": null, "LONGITUDE": -64.87397828, "LATITUDE": 18.32011754, "OBJECTID_1": 38899, "PARCEL_NO_": "107604014500", "Tax_Legal_": "NADIR 13-6 RED HOOK QTR", "Name": "SIMEINA, TIMOTHY", "Address": "PO BOX 121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25200, "Improved_V": 117700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.813118761, "SHAPE_Area": 781.59345975999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364864.909500002861023, 254593.311999998986721 ], [ 364848.925300002098083, 254576.504799999296665 ], [ 364841.752999998629093, 254566.524700000882149 ], [ 364837.786200001835823, 254558.892900001257658 ], [ 364826.494199998676777, 254559.222600001841784 ], [ 364828.614600002765656, 254594.281500000506639 ], [ 364847.165200002491474, 254593.80009999871254 ], [ 364864.909500002861023, 254593.311999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803021200", "MAP": "D9-9409-T019", "PARCEL_NAM": "CONS 5-20 & 5-21", "ACRE": "1.19", "LONGITUDE": -64.84580495, "LATITUDE": 18.31978069, "OBJECTID_1": 40206, "PARCEL_NO_": "107803021200", "Tax_Legal_": "5-20 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "WIND THOMAS LLC", "Address": "PO Box 2906", "City": "Atlantic Beach", "State": "North Carolina", "Zip": 28512, "Country": "United States", "Land_Value": 161600, "Improved_V": 468400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.147467732, "SHAPE_Area": 4802.8881081999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367853.658900000154972, 254598.841899998486042 ], [ 367851.401500001549721, 254531.293999999761581 ], [ 367812.243100002408028, 254533.410700000822544 ], [ 367773.343599997460842, 254545.379700001329184 ], [ 367784.089699998497963, 254578.574000000953674 ], [ 367788.058300003409386, 254585.994699999690056 ], [ 367791.164899997413158, 254599.952300000935793 ], [ 367792.280500002205372, 254608.022900000214577 ], [ 367806.316399998962879, 254602.678700000047684 ], [ 367806.977799996733665, 254600.82660000026226 ], [ 367806.911700002849102, 254598.842300001531839 ], [ 367806.647100001573563, 254597.453200001269579 ], [ 367813.7246999964118, 254595.270399998873472 ], [ 367814.584600001573563, 254596.9239999987185 ], [ 367816.899700000882149, 254597.387099999934435 ], [ 367819.646300002932549, 254596.089200001209974 ], [ 367821.098899997770786, 254606.505199998617172 ], [ 367823.514300003647804, 254605.913699999451637 ], [ 367851.10249999910593, 254605.623500000685453 ], [ 367853.658900000154972, 254598.841899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86109719, "LATITUDE": 18.32007224, "OBJECTID_1": 39694, "PARCEL_NO_": "107703023300", "Tax_Legal_": "NAZAREH ESTATE 2W-49 1 RED HOOK", "Name": "LUGO, JUAN & JOAQUIN", "Address": "8th St", "City": "Carolina", "State": "Puerto Rico", "Zip": 983, "Country": "United States", "Land_Value": 30000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.952972001700005, "SHAPE_Area": 531.21873558499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366213.945799998939037, 254595.487300001084805 ], [ 366206.123599998652935, 254567.136700000613928 ], [ 366198.004699997603893, 254573.614199999719858 ], [ 366188.2804000005126, 254579.234099999070168 ], [ 366199.347599998116493, 254605.289200000464916 ], [ 366205.841300003230572, 254600.276099998503923 ], [ 366213.945799998939037, 254595.487300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704017800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85341027, "LATITUDE": 18.32011199, "OBJECTID_1": 39887, "PARCEL_NO_": "107704017800", "Tax_Legal_": "2Y-2-1 NAZARETH RED HOOK QTR", "Name": "ROBLES, LOUIS A. & SHARON A., CO-TRUSTEES", "Address": "BOX 3545", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36000, "Improved_V": 254700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.17026321500001, "SHAPE_Area": 1125.40362463 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367047.015799999237061, 254584.784800000488758 ], [ 367022.04169999808073, 254582.0472999997437 ], [ 367000.078299999237061, 254582.147999998182058 ], [ 366999.090999998152256, 254590.6385000012815 ], [ 366998.794399999082088, 254592.888099998235703 ], [ 366994.328500002622604, 254626.754200000315905 ], [ 366994.546700000762939, 254627.275400001555681 ], [ 367015.344800002872944, 254610.912300001829863 ], [ 367040.513199999928474, 254590.853300001472235 ], [ 367047.015799999237061, 254584.784800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603023300", "MAP": "F9-296-T58", "PARCEL_NAM": "3-9", "ACRE": ".37", "LONGITUDE": -64.88039474, "LATITUDE": 18.32000171, "OBJECTID_1": 38603, "PARCEL_NO_": "107603023300", "Tax_Legal_": "3-9 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "SOUFFRONT, ROY & MELANIE", "Address": "1289 Balboa Ct", "City": "Sunnyvale", "State": "California", "Zip": 94086, "Country": "United States", "Land_Value": 40500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.04809905100001, "SHAPE_Area": 1331.1735316199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364178.938699997961521, 254549.456599999219179 ], [ 364147.675399996340275, 254538.875199999660254 ], [ 364136.215800002217293, 254567.307900000363588 ], [ 364176.308600001037121, 254582.520399998873472 ], [ 364180.865435525018256, 254578.949402306549018 ], [ 364185.556599996984005, 254575.556800000369549 ], [ 364178.938699997961521, 254549.456599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "107604045300", "MAP": "B9-397-T73", "PARCEL_NAM": null, "ACRE": ".35", "LONGITUDE": -64.86910077, "LATITUDE": 18.31994515, "OBJECTID_1": 39047, "PARCEL_NO_": "107604045300", "Tax_Legal_": "114-2 FRYDENHOJ RED HOOK QTR.", "Name": "VENZEN, O. &J.H.& D.V. DELGARDE& T.V. WHITE& D.V.TURNBULL", "Address": "PO Box 502086", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39900, "Improved_V": 46000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.663612925, "SHAPE_Area": 1225.54764325 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365361.588899999856949, 254557.60190000012517 ], [ 365342.834499999880791, 254528.195999998599291 ], [ 365334.517800003290176, 254557.892099998891354 ], [ 365356.8716000020504, 254584.250700000673532 ], [ 365376.12780000269413, 254595.596200000494719 ], [ 365380.279799997806549, 254581.486999999731779 ], [ 365361.588899999856949, 254557.60190000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86240686, "LATITUDE": 18.32004706, "OBJECTID_1": 39638, "PARCEL_NO_": "107703014900", "Tax_Legal_": "FRYDENHOJ ESTATE 41-5-8 RED HOOK QTR", "Name": "VAN BEVERHOUDT, MURLENE", "Address": "9142 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43800, "Improved_V": 69800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.79144918, "SHAPE_Area": 1241.8325044400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366081.150600001215935, 254565.480599999427795 ], [ 366081.226099997758865, 254556.615299999713898 ], [ 366069.941299997270107, 254556.10080000013113 ], [ 366067.434299997985363, 254566.423799999058247 ], [ 366063.359499998390675, 254571.456700000911951 ], [ 366056.06139999628067, 254576.252099998295307 ], [ 366051.210900001227856, 254577.690099999308586 ], [ 366035.8783999979496, 254579.042300000786781 ], [ 366041.342799998819828, 254600.196299999952316 ], [ 366083.312399998307228, 254595.68470000103116 ], [ 366081.840000003576279, 254579.207299999892712 ], [ 366081.150600001215935, 254565.480599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061300", "MAP": "A9-557-T000", "PARCEL_NAM": "7L REM", "ACRE": "0.228", "LONGITUDE": -64.87621668, "LATITUDE": 18.32003937, "OBJECTID_1": 38794, "PARCEL_NO_": "107603061300", "Tax_Legal_": "7L NADIR RED HOOK QTR", "Name": "TOBIAS, ELDRIDGE ST CLAIR", "Address": "PO Box 302353", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.29722776200001, "SHAPE_Area": 923.99468342299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364595.102300003170967, 254555.006799999624491 ], [ 364587.470200002193451, 254567.57209999859333 ], [ 364578.126299999654293, 254576.844500001519918 ], [ 364611.140299998223782, 254586.337200000882149 ], [ 364624.872900001704693, 254562.638700000941753 ], [ 364624.899899996817112, 254559.472500000149012 ], [ 364623.296300001442432, 254558.403900001198053 ], [ 364613.636699996888638, 254556.425000000745058 ], [ 364602.378899998962879, 254552.744300000369549 ], [ 364598.345499999821186, 254552.922400001436472 ], [ 364595.102300003170967, 254555.006799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603013000", "MAP": "F9-93-T57", "PARCEL_NAM": "3-21", "ACRE": "0.22", "LONGITUDE": -64.88130017, "LATITUDE": 18.31998805, "OBJECTID_1": 38552, "PARCEL_NO_": "107603013000", "Tax_Legal_": "3-21 EST BOVONI FRENCHMAN BAY E PART", "Name": "WEBSTER, ELLECIA", "Address": "7481 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 189600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.273991787, "SHAPE_Area": 1140.9864395100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364086.3766999989748, 254544.088100001215935 ], [ 364061.461900003254414, 254534.385000001639128 ], [ 364045.811099998652935, 254573.098099999129772 ], [ 364071.526799999177456, 254583.441100001335144 ], [ 364086.3766999989748, 254544.088100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86041067, "LATITUDE": 18.3200677, "OBJECTID_1": 39706, "PARCEL_NO_": "107703024500", "Tax_Legal_": "NAZARETH ESTATE 2W-59 RED HOOK QTR", "Name": "DURANT, WINIFRED & MELISSA", "Address": "Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26500, "Improved_V": 327700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.974511046, "SHAPE_Area": 780.23161086599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366279.469300001859665, 254571.114500001072884 ], [ 366261.7195999994874, 254572.235800001770258 ], [ 366260.105200000107288, 254572.433699999004602 ], [ 366262.277800001204014, 254601.371300000697374 ], [ 366277.597699999809265, 254601.496700000017881 ], [ 366289.708599999547005, 254599.695999998599291 ], [ 366285.11710000038147, 254570.738600000739098 ], [ 366279.469300001859665, 254571.114500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604043300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86845507, "LATITUDE": 18.32003908, "OBJECTID_1": 39027, "PARCEL_NO_": "107604043300", "Tax_Legal_": "12J & 12Z-2 FRYDENHOJ (CONS) NO. 3 RED HOOK QTR", "Name": "ROGERS, GEORGE D & URIEL A.", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42500, "Improved_V": 100500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.927673932600001, "SHAPE_Area": 405.26405659699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365440.882700003683567, 254566.784200001507998 ], [ 365423.957400001585484, 254565.801300000399351 ], [ 365418.298799999058247, 254567.443799998611212 ], [ 365413.433899998664856, 254570.57039999961853 ], [ 365412.615000002086163, 254572.041299998760223 ], [ 365412.577299997210503, 254576.473999999463558 ], [ 365414.961999997496605, 254580.504299998283386 ], [ 365418.8766999989748, 254594.257399998605251 ], [ 365440.882700003683567, 254566.784200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603026700", "MAP": "D9-7274-T003", "PARCEL_NAM": "3-71", "ACRE": ".222", "LONGITUDE": -64.88074344, "LATITUDE": 18.32219313, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.22028471599999, "SHAPE_Area": 989.85545258299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364103.935599997639656, 254816.915199998766184 ], [ 364129.870200000703335, 254824.265099998563528 ], [ 364142.325499996542931, 254791.736600000411272 ], [ 364116.60980000346899, 254781.3935999982059 ], [ 364103.935599997639656, 254816.915199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603026600", "MAP": "F9-3918-T57", "PARCEL_NAM": "3-66", "ACRE": "0.33", "LONGITUDE": -64.88029971, "LATITUDE": 18.32200928, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.77450949000001, "SHAPE_Area": 1812.76665415 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364205.898299999535084, 254816.882199998944998 ], [ 364184.336499996483326, 254782.370099999010563 ], [ 364180.304899998009205, 254782.337099999189377 ], [ 364180.509900003671646, 254758.274099998176098 ], [ 364181.334200002253056, 254756.169900000095367 ], [ 364171.662000000476837, 254755.668600000441074 ], [ 364157.173600003123283, 254752.594700001180172 ], [ 364142.325499996542931, 254791.736600000411272 ], [ 364163.2212999984622, 254799.929099999368191 ], [ 364196.974899999797344, 254813.293200001120567 ], [ 364205.898299999535084, 254816.882199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603010100", "MAP": "F9-1637-T57", "PARCEL_NAM": "3-99", "ACRE": "0.22", "LONGITUDE": -64.88236196, "LATITUDE": 18.32214551, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.552593965, "SHAPE_Area": 694.87322793400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363968.197999998927116, 254786.089499998837709 ], [ 363948.097699999809265, 254779.170000001788139 ], [ 363934.162000000476837, 254805.864900000393391 ], [ 363958.283100001513958, 254814.083799999207258 ], [ 363968.197999998927116, 254786.089499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603020600", "MAP": "F9-179-T57", "PARCEL_NAM": "3-73", "ACRE": "0.22", "LONGITUDE": -64.88132374, "LATITUDE": 18.32201117, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.04070511800001, "SHAPE_Area": 866.78115504799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364058.735100001096725, 254759.810600001364946 ], [ 364044.714900001883507, 254796.426100000739098 ], [ 364065.612499997019768, 254804.407600000500679 ], [ 364068.843199998140335, 254803.800799999386072 ], [ 364072.242799997329712, 254783.35249999910593 ], [ 364074.7246999964118, 254775.984600000083447 ], [ 364078.824600003659725, 254767.996599998325109 ], [ 364058.735100001096725, 254759.810600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603025600", "MAP": null, "PARCEL_NAM": "3-85", "ACRE": "0.22", "LONGITUDE": -64.88205031, "LATITUDE": 18.32196257, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.01613873399999, "SHAPE_Area": 727.12327045200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364002.215899996459484, 254768.425000000745058 ], [ 363978.107500001788139, 254758.728500001132488 ], [ 363968.197999998927116, 254786.089499998837709 ], [ 363992.320799998939037, 254794.09739999845624 ], [ 364002.215899996459484, 254768.425000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603010700", "MAP": "F9-3948-T57", "PARCEL_NAM": "3-76", "ACRE": null, "LONGITUDE": -64.88194992, "LATITUDE": 18.32169832, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.671339782, "SHAPE_Area": 866.44067613100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364013.779399998486042, 254736.222300000488758 ], [ 363990.475500002503395, 254726.743500001728535 ], [ 363978.107500001788139, 254758.728500001132488 ], [ 364002.215899996459484, 254768.425000000745058 ], [ 364009.663400001823902, 254746.110100001096725 ], [ 364013.779399998486042, 254736.222300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704033700", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".49", "LONGITUDE": -64.84955623, "LATITUDE": 18.32146284, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.86671083600001, "SHAPE_Area": 2076.18688806 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367452.063000001013279, 254744.7314000017941 ], [ 367416.80290000140667, 254718.900499999523163 ], [ 367410.296599999070168, 254725.391100000590086 ], [ 367402.951700001955032, 254735.674600001424551 ], [ 367396.380699999630451, 254749.76410000026226 ], [ 367390.670000001788139, 254757.527800001204014 ], [ 367421.895000003278255, 254783.747800000011921 ], [ 367430.0371999964118, 254774.526399999856949 ], [ 367444.728900000452995, 254753.748399998992682 ], [ 367452.063000001013279, 254744.7314000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603025000", "MAP": "F9-135-T57", "PARCEL_NAM": "3-45", "ACRE": null, "LONGITUDE": -64.88049744, "LATITUDE": 18.32149479, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.518537147, "SHAPE_Area": 881.37067786600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364156.542599998414516, 254747.55799999833107 ], [ 364166.306999996304512, 254714.070700000971556 ], [ 364143.872699998319149, 254704.7787000015378 ], [ 364132.300200000405312, 254738.036800000816584 ], [ 364137.929999999701977, 254739.771600000560284 ], [ 364150.778800003230572, 254745.998500000685453 ], [ 364156.542599998414516, 254747.55799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85378377000001, "LATITUDE": 18.32134736, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.56614258299999, "SHAPE_Area": 2919.4319487100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367003.076499998569489, 254725.857900001108646 ], [ 366984.8800999969244, 254684.756799999624491 ], [ 366968.502099998295307, 254714.175900001078844 ], [ 366956.292300000786781, 254727.585900001227856 ], [ 366948.168099999427795, 254734.696600001305342 ], [ 366942.491499997675419, 254738.449799999594688 ], [ 366925.786700002849102, 254746.307399999350309 ], [ 366927.215400002896786, 254749.641199998557568 ], [ 366941.661700002849102, 254755.356199998408556 ], [ 366972.084100000560284, 254766.97859999909997 ], [ 367008.616300001740456, 254738.146600000560284 ], [ 367003.076499998569489, 254725.857900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86941389, "LATITUDE": 18.32141787, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.199793708599998, "SHAPE_Area": 39.828773473699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365321.71000000089407, 254736.161400001496077 ], [ 365324.233199998736382, 254723.9386 ], [ 365318.599799998104572, 254722.625900000333786 ], [ 365320.135099999606609, 254731.715500000864267 ], [ 365321.71000000089407, 254736.161400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603053600", "MAP": null, "PARCEL_NAM": "15A", "ACRE": null, "LONGITUDE": -64.87502077000001, "LATITUDE": 18.32094729, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.298361175, "SHAPE_Area": 1034.85904203 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364760.947999998927116, 254680.909299999475479 ], [ 364750.563100002706051, 254669.425299998372793 ], [ 364748.176500000059605, 254665.606100000441074 ], [ 364746.623199999332428, 254658.627300001680851 ], [ 364705.492299996316433, 254659.346099998801947 ], [ 364705.445600003004074, 254664.834199998527765 ], [ 364706.10980000346899, 254681.515999998897314 ], [ 364760.947999998927116, 254680.909299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "11111111111", "MAP": "F9-3940-T57", "PARCEL_NAM": "3-53", "ACRE": "0.21", "LONGITUDE": -64.88236621, "LATITUDE": 18.32076252, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.62487657600001, "SHAPE_Area": 942.10022964999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363971.128700003027916, 254631.381999999284744 ], [ 363947.020199999213219, 254621.685400001704693 ], [ 363934.628799997270107, 254656.41440000012517 ], [ 363958.744499996304512, 254665.266699999570847 ], [ 363971.128700003027916, 254631.381999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86243782, "LATITUDE": 18.32044778, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.66470013200001, "SHAPE_Area": 2827.0592457600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366080.573299996554852, 254633.236900001764297 ], [ 366081.534299999475479, 254615.090700000524521 ], [ 366083.312399998307228, 254595.68470000103116 ], [ 366041.342799998819828, 254600.196299999952316 ], [ 366029.235500000417233, 254601.57490000128746 ], [ 366025.82320000231266, 254623.500700000673532 ], [ 366029.021499998867512, 254626.693300001323223 ], [ 366049.013899996876717, 254646.277499999850988 ], [ 366053.857100002467632, 254645.683899998664856 ], [ 366056.270700000226498, 254646.336899999529123 ], [ 366059.472599998116493, 254649.107299998402596 ], [ 366060.26630000025034, 254650.591499999165535 ], [ 366059.400600001215935, 254657.550500001758337 ], [ 366058.574500001966953, 254659.865800000727177 ], [ 366055.334899999201298, 254661.528000000864267 ], [ 366086.727099999785423, 254668.11769999936223 ], [ 366085.173900000751019, 254661.138900000602007 ], [ 366080.573299996554852, 254633.236900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85694692, "LATITUDE": 18.32042837, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.95394539700001, "SHAPE_Area": 1916.1084422 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366655.274499997496605, 254661.372000001370907 ], [ 366654.244499996304512, 254592.969200000166893 ], [ 366638.892200000584126, 254596.643300000578165 ], [ 366626.759800001978874, 254600.97690000012517 ], [ 366623.027400001883507, 254660.474800001829863 ], [ 366655.274499997496605, 254661.372000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85666648, "LATITUDE": 18.32040358, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.88161027199999, "SHAPE_Area": 2094.9157914100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366687.534199997782707, 254660.791600000113249 ], [ 366683.910899996757507, 254612.843699999153614 ], [ 366680.087899997830391, 254588.325599998235703 ], [ 366672.813100002706051, 254590.377000000327826 ], [ 366654.244499996304512, 254592.969200000166893 ], [ 366655.274499997496605, 254661.372000001370907 ], [ 366687.534199997782707, 254660.791600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85722568, "LATITUDE": 18.32045887, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.24528501200001, "SHAPE_Area": 1582.92940699 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366626.759800001978874, 254600.97690000012517 ], [ 366615.446199998259544, 254603.839600000530481 ], [ 366607.35249999910593, 254607.361999999731779 ], [ 366600.04900000244379, 254612.790600001811981 ], [ 366593.530100002884865, 254620.758799999952316 ], [ 366595.659599997103214, 254654.762299999594688 ], [ 366596.438900001347065, 254657.935100000351667 ], [ 366598.839900001883507, 254660.065699998289347 ], [ 366623.027400001883507, 254660.474800001829863 ], [ 366626.759800001978874, 254600.97690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013600", "MAP": "D9-7973-T007", "PARCEL_NAM": "2C-1", "ACRE": ".500", "LONGITUDE": -64.85497573000001, "LATITUDE": 18.32036799, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.356235744, "SHAPE_Area": 1757.3393011000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366872.408100001513958, 254608.082800000905991 ], [ 366833.584600001573563, 254596.860399998724461 ], [ 366828.764799997210503, 254647.171000000089407 ], [ 366827.897299997508526, 254654.341099999845028 ], [ 366839.214500002563, 254651.056200001388788 ], [ 366853.778499998152256, 254645.264800000935793 ], [ 366865.883100003004074, 254638.8445999994874 ], [ 366869.228799998760223, 254633.50959999859333 ], [ 366870.340000003576279, 254630.546300001442432 ], [ 366872.408100001513958, 254608.082800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604045800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86935182000001, "LATITUDE": 18.32029214, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.761125702, "SHAPE_Area": 680.66069052299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365350.246699996292591, 254604.672499999403954 ], [ 365326.217299997806549, 254585.688499998301268 ], [ 365311.570600003004074, 254601.189599998295307 ], [ 365324.306199997663498, 254620.714400000870228 ], [ 365350.246699996292591, 254604.672499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85723962, "LATITUDE": 18.31985559, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.142374913, "SHAPE_Area": 2296.52364842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366625.193899996578693, 254595.475699998438358 ], [ 366627.351400002837181, 254531.532000001519918 ], [ 366625.745899997651577, 254530.674499999731779 ], [ 366625.781900003552437, 254526.452899999916553 ], [ 366622.567400000989437, 254525.160000000149012 ], [ 366617.718800000846386, 254526.386900000274181 ], [ 366601.502599999308586, 254536.808899998664856 ], [ 366599.090899996459484, 254535.944699998944998 ], [ 366594.292599998414516, 254531.261399999260902 ], [ 366592.797499999403954, 254612.098000001162291 ], [ 366600.927199997007847, 254604.354100000113249 ], [ 366609.029899999499321, 254599.776299998164177 ], [ 366625.193899996578693, 254595.475699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033800", "MAP": "F9-116-T63", "PARCEL_NAM": "2M", "ACRE": null, "LONGITUDE": -64.87163238, "LATITUDE": 18.32012631, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.300298588000004, "SHAPE_Area": 234.88617806 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365091.510300002992153, 254592.000199999660254 ], [ 365096.499200001358986, 254574.309200000017881 ], [ 365096.526199996471405, 254571.14299999922514 ], [ 365094.920699998736382, 254570.285500001162291 ], [ 365091.69370000064373, 254570.470199998468161 ], [ 365075.387599997222424, 254591.446100000292063 ], [ 365091.510300002992153, 254592.000199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85971912, "LATITUDE": 18.3200592, "OBJECTID_1": 39716, "PARCEL_NO_": "107703025600", "Tax_Legal_": "NAZARETH ESTATE 2W-62 RED HOOK QTR", "Name": "WALTERS, MELVIN M", "Address": "PO Box 503013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 51200, "Improved_V": 204100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.54466908200001, "SHAPE_Area": 1031.54285779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366376.122500002384186, 254584.149000000208616 ], [ 366351.209499999880791, 254574.2347999997437 ], [ 366334.332699999213219, 254567.552799999713898 ], [ 366324.419600002467632, 254595.335999999195337 ], [ 366326.824100002646446, 254597.044399999082088 ], [ 366328.404399998486042, 254600.857099998742342 ], [ 366372.004600003361702, 254594.247800000011921 ], [ 366376.122500002384186, 254584.149000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704050500", "MAP": "A9-314-T85", "PARCEL_NAM": null, "ACRE": ".11", "LONGITUDE": -64.85272124, "LATITUDE": 18.32008637, "OBJECTID_1": 40035, "PARCEL_NO_": "107704050500", "Tax_Legal_": "2Y-27&9M-5 NAZARETH RED HOOK QTR.", "Name": "MARTIN FAMILY TRUST", "Address": "PO Box 7403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 137300, "Improved_V": 434800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.84417826200001, "SHAPE_Area": 529.26436175799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367055.876199997961521, 254585.912799999117851 ], [ 367048.565499998629093, 254592.1858000010252 ], [ 367132.299699999392033, 254607.225499998778105 ], [ 367115.448100000619888, 254597.588300000876188 ], [ 367088.083800002932549, 254591.453699998557568 ], [ 367055.876199997961521, 254585.912799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8601847, "LATITUDE": 18.32004626, "OBJECTID_1": 39711, "PARCEL_NO_": "107703025100", "Tax_Legal_": "NAZARETH ESTATE 2W-60 RED HOOK QTR", "Name": "ANACLERIO, ERIC and CLAIRE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36300, "Improved_V": 146600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.933112823, "SHAPE_Area": 634.19282450599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366311.497000001370907, 254597.763399999588728 ], [ 366306.901900000870228, 254569.228100001811981 ], [ 366285.11710000038147, 254570.738600000739098 ], [ 366289.708599999547005, 254599.695999998599291 ], [ 366311.497000001370907, 254597.763399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803011300", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".55", "LONGITUDE": -64.84860928000001, "LATITUDE": 18.31994334, "OBJECTID_1": 40170, "PARCEL_NO_": "107803011300", "Tax_Legal_": "NAZARETH ESTATE 9-41 RED HOOK QUARTER", "Name": "JOHN VENZEN and SEANA ARCHIBALD-VENZEN", "Address": "1622 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.537048201, "SHAPE_Area": 1902.1485984399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367537.541500002145767, 254555.024599999189377 ], [ 367500.269500002264977, 254576.03999999910593 ], [ 367481.643399998545647, 254585.386700000613928 ], [ 367520.960299998521805, 254608.295499999076128 ], [ 367552.568300001323223, 254589.555799998342991 ], [ 367537.541500002145767, 254555.024599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603011901", "MAP": "F9-103-T57", "PARCEL_NAM": "3-33", "ACRE": "0.22", "LONGITUDE": -64.88239199, "LATITUDE": 18.31998484, "OBJECTID_1": 38541, "PARCEL_NO_": "107603011901", "Tax_Legal_": "3-33 EST. BOVONI FRENCHMAN BAY QTR.", "Name": "VALESQUEZ, PAULINA", "Address": "PO Box 502593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.095744474, "SHAPE_Area": 927.89728847200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363968.673900000751019, 254542.820000000298023 ], [ 363946.378700003027916, 254535.222600001841784 ], [ 363945.311599999666214, 254538.289500001817942 ], [ 363932.927400000393391, 254572.174199998378754 ], [ 363953.029399998486042, 254578.882599998265505 ], [ 363956.258299998939037, 254578.486900001764297 ], [ 363967.010099999606609, 254546.910799998790026 ], [ 363968.673900000751019, 254542.820000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85998557000001, "LATITUDE": 18.32000674, "OBJECTID_1": 39715, "PARCEL_NO_": "107703025500", "Tax_Legal_": "NAZARETH ESTATE 2W-61 RED HOOK QTR", "Name": "LETTSOME, ALFRED", "Address": "8027 Leesburg Pike", "City": "Vienna", "State": "Virginia", "Zip": 22182, "Country": "United States", "Land_Value": 18700, "Improved_V": 183900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.307753393, "SHAPE_Area": 540.74916406900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366334.332699999213219, 254567.552799999713898 ], [ 366306.901900000870228, 254569.228100001811981 ], [ 366311.497000001370907, 254597.763399999588728 ], [ 366314.745600000023842, 254595.045699998736382 ], [ 366318.788000002503395, 254593.812300000339746 ], [ 366322.011399999260902, 254594.049699999392033 ], [ 366324.419600002467632, 254595.335999999195337 ], [ 366334.332699999213219, 254567.552799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86210879, "LATITUDE": 18.32001536, "OBJECTID_1": 39626, "PARCEL_NO_": "107703013200", "Tax_Legal_": "FRYDENHOJ ESTATE 101-B RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.329382619, "SHAPE_Area": 761.50627888899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366109.960199996829033, 254591.258699998259544 ], [ 366106.164200000464916, 254563.574400000274181 ], [ 366081.150600001215935, 254565.480599999427795 ], [ 366081.840000003576279, 254579.207299999892712 ], [ 366083.312399998307228, 254595.68470000103116 ], [ 366109.960199996829033, 254591.258699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703028200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8609088, "LATITUDE": 18.31995632, "OBJECTID_1": 39736, "PARCEL_NO_": "107703028200", "Tax_Legal_": "NAZARETH ESTATE 2W-48 RED HOOK QTR.", "Name": "WILKINSON, EMILY MORRIS", "Address": "PO Box 10195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 203200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.00027412199999, "SHAPE_Area": 796.40077692700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366235.825900003314018, 254582.789700001478195 ], [ 366232.051500000059605, 254552.572399999946356 ], [ 366220.719899997115135, 254557.545899998396635 ], [ 366206.123599998652935, 254567.136700000613928 ], [ 366213.945799998939037, 254595.487300001084805 ], [ 366231.774599999189377, 254585.078499998897314 ], [ 366235.825900003314018, 254582.789700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704035600", "MAP": "D9-7814-T006", "PARCEL_NAM": "9-9 REM", "ACRE": ".513", "LONGITUDE": -64.84994218, "LATITUDE": 18.31990417, "OBJECTID_1": 40017, "PARCEL_NO_": "107704035600", "Tax_Legal_": "9-9 REM ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "EHRLICH, YIGAL H. & ELIZABETH K.", "Address": "4082 Estate Judiths Fancy", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 110000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.43863340499999, "SHAPE_Area": 2244.78240942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367415.613899998366833, 254574.502700001001358 ], [ 367389.231100000441074, 254543.714800000190735 ], [ 367363.234099999070168, 254570.485399998724461 ], [ 367361.616099998354912, 254571.105500001460314 ], [ 367359.98369999974966, 254573.414099998772144 ], [ 367358.365699999034405, 254574.034200001507998 ], [ 367357.546800002455711, 254575.505100000649691 ], [ 367355.928800001740456, 254576.125199999660254 ], [ 367355.109899997711182, 254577.596099998801947 ], [ 367338.870300002396107, 254590.762099999934435 ], [ 367384.713299997150898, 254604.858399998396635 ], [ 367403.41669999808073, 254586.435199998319149 ], [ 367415.613899998366833, 254574.502700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85070165, "LATITUDE": 18.3198851, "OBJECTID_1": 39907, "PARCEL_NO_": "107704021100", "Tax_Legal_": "9-J-1 NAZARETH 1 RED HOOK", "Name": "KEVIN AND CHRISTINE O'NEIL REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 139000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.31960560900001, "SHAPE_Area": 2069.8939103399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367294.184399999678135, 254535.511999998241663 ], [ 367287.588200002908707, 254552.556600000709295 ], [ 367281.778599999845028, 254571.929699998348951 ], [ 367276.735699996352196, 254595.953099999576807 ], [ 367276.6925999969244, 254601.019000001251698 ], [ 367280.702600002288818, 254603.584899999201298 ], [ 367287.160300001502037, 254602.793400000780821 ], [ 367308.183700002729893, 254595.999400001019239 ], [ 367325.182800002396107, 254588.328000001609325 ], [ 367334.108000002801418, 254581.857200000435114 ], [ 367294.184399999678135, 254535.511999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603038400", "MAP": "D9-6897-T001", "PARCEL_NAM": "33P", "ACRE": ".09", "LONGITUDE": -64.88010793, "LATITUDE": 18.31994836, "OBJECTID_1": 38706, "PARCEL_NO_": "107603038400", "Tax_Legal_": "PCL 33-P EST NADIR No.2 RED HOOK QTR", "Name": "SERRANO, JR., ANTONIO", "Address": "9285 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10400, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.050559772, "SHAPE_Area": 656.34964499099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364187.105800002813339, 254574.495600000023842 ], [ 364204.401600003242493, 254562.648299999535084 ], [ 364206.368699997663498, 254561.776999998837709 ], [ 364204.072599999606609, 254541.319600000977516 ], [ 364177.498999997973442, 254543.778400000184774 ], [ 364185.556599996984005, 254575.556800000369549 ], [ 364187.105800002813339, 254574.495600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86176262, "LATITUDE": 18.32000485, "OBJECTID_1": 39669, "PARCEL_NO_": "107703020500", "Tax_Legal_": "NAZARETH ESTATE 2W-24 RED HOOK QTR", "Name": "KAREN A WOODS LIVING TRUST", "Address": "PO Box 11007", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 127300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.631664371, "SHAPE_Area": 710.61557658499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366142.442900002002716, 254564.504599999636412 ], [ 366115.807599999010563, 254567.453000001609325 ], [ 366118.842299997806549, 254589.853799998760223 ], [ 366121.239600002765656, 254592.406500000506639 ], [ 366125.263999998569489, 254593.2837999984622 ], [ 366149.521700002253056, 254585.460799999535084 ], [ 366142.442900002002716, 254564.504599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033400", "MAP": "G9-1577-T70", "PARCEL_NAM": "2Y", "ACRE": "0.43", "LONGITUDE": -64.87114079, "LATITUDE": 18.31982791, "OBJECTID_1": 38978, "PARCEL_NO_": "107604033400", "Tax_Legal_": "2Y FRYDENHOJ RED HOOK QTR", "Name": "HERMON, SR., PATRICK", "Address": "6022 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.971605818, "SHAPE_Area": 1605.5310306399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365173.596500001847744, 254535.0912000015378 ], [ 365150.961000002920628, 254517.697799999266863 ], [ 365150.249099999666214, 254518.967500001192093 ], [ 365146.096000000834465, 254526.374699998646975 ], [ 365138.729500003159046, 254539.191100001335144 ], [ 365130.639200001955032, 254548.17509999871254 ], [ 365123.179200001060963, 254554.122999999672174 ], [ 365115.3158999979496, 254559.869199998676777 ], [ 365108.057499997317791, 254563.498399998992682 ], [ 365104.226700000464916, 254566.925999999046326 ], [ 365101.706399999558926, 254576.603900000452995 ], [ 365103.117700003087521, 254579.527399998158216 ], [ 365109.065600000321865, 254580.636399999260902 ], [ 365147.172200001776218, 254559.970100000500679 ], [ 365157.2533999979496, 254553.215700000524521 ], [ 365166.898299999535084, 254545.543400000780821 ], [ 365175.009999997913837, 254539.910199999809265 ], [ 365177.549500003457069, 254538.128800000995398 ], [ 365173.596500001847744, 254535.0912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604045500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86967855, "LATITUDE": 18.31979673, "OBJECTID_1": 39049, "PARCEL_NO_": "107604045500", "Tax_Legal_": "74A-1 ESTATE FRYDENHOJ RED HOOK QTR.", "Name": "MC CLEAN (LIFE ESTATE), FONTAINE", "Address": "PO Box 12304", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32600, "Improved_V": 35100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.205627308, "SHAPE_Area": 1042.3809226599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365312.244099996984005, 254547.547699999064207 ], [ 365292.133900001645088, 254516.381999999284744 ], [ 365290.485299997031689, 254520.590399999171495 ], [ 365278.921800002455711, 254552.793000001460314 ], [ 365295.638599999248981, 254578.261100001633167 ], [ 365310.185300000011921, 254551.355599999427795 ], [ 365312.244099996984005, 254547.547699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604045200", "MAP": "F9-2439-T68", "PARCEL_NAM": "74E", "ACRE": ".24", "LONGITUDE": -64.86987238, "LATITUDE": 18.31979217, "OBJECTID_1": 39046, "PARCEL_NO_": "107604045200", "Tax_Legal_": "74E FRYDENHOJ RED HOOK QTR", "Name": "HARRIS, MARILYN L", "Address": "5988 Parkton Rd", "City": "Hope Mills", "State": "North Carolina", "Zip": 28348, "Country": "United States", "Land_Value": 34600, "Improved_V": 76200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.27348827200001, "SHAPE_Area": 1533.9655826000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365286.857600003480911, 254512.818599998950958 ], [ 365251.710400000214577, 254528.71680000051856 ], [ 365255.700599998235703, 254533.604600001126528 ], [ 365272.205200001597404, 254583.979899998754263 ], [ 365295.638599999248981, 254578.261100001633167 ], [ 365278.921800002455711, 254552.793000001460314 ], [ 365290.485299997031689, 254520.590399999171495 ], [ 365286.857600003480911, 254512.818599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603012900", "MAP": "F9-96-T57", "PARCEL_NAM": "3-20", "ACRE": "0.22", "LONGITUDE": -64.8815168, "LATITUDE": 18.3199058, "OBJECTID_1": 38551, "PARCEL_NO_": "107603012900", "Tax_Legal_": "3 20 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "WALLACE, DALE ERNESTO", "Address": "PO Box 1213", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 28500, "Improved_V": 900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.483255055, "SHAPE_Area": 918.86503941299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364061.461900003254414, 254534.385000001639128 ], [ 364040.566100001335144, 254526.192400000989437 ], [ 364025.719800002872944, 254565.123199999332428 ], [ 364045.811099998652935, 254573.098099999129772 ], [ 364061.461900003254414, 254534.385000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85116167, "LATITUDE": 18.31975233, "OBJECTID_1": 39906, "PARCEL_NO_": "107704021000", "Tax_Legal_": "2Y-12 NAZARETH 1 RED HOOK QTR", "Name": "MAYO, JOSEPH & BILLY E", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 137300, "Improved_V": 507200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.266391688, "SHAPE_Area": 2155.5920111800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367277.885499998927116, 254555.6435999982059 ], [ 367241.896300002932549, 254520.729699999094009 ], [ 367225.403300002217293, 254563.657800000160933 ], [ 367265.418600000441074, 254599.238000001758337 ], [ 367267.049199998378754, 254597.140399999916553 ], [ 367271.251599997282028, 254577.120900001376867 ], [ 367277.885499998927116, 254555.6435999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87946327, "LATITUDE": 18.31963616, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 403.12515603999998, "SHAPE_Area": 3619.7171875899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364282.427500002086163, 254531.971599999815226 ], [ 364296.087999999523163, 254537.571800000965595 ], [ 364310.535099998116493, 254545.500500001013279 ], [ 364317.747000001370907, 254550.836899999529123 ], [ 364334.383500002324581, 254560.287200000137091 ], [ 364346.596199996769428, 254571.9712999984622 ], [ 364350.60980000346899, 254574.115100000053644 ], [ 364352.224200002849102, 254573.917199999094009 ], [ 364352.24040000140667, 254572.017499998211861 ], [ 364347.481700003147125, 254562.690400000661612 ], [ 364334.724500000476837, 254545.698499999940395 ], [ 364318.727700002491474, 254530.368900001049042 ], [ 364304.300399996340275, 254520.118299998342991 ], [ 364283.424400001764297, 254509.603799998760223 ], [ 364268.953900001943111, 254504.419199999421835 ], [ 364250.444700002670288, 254500.045800000429153 ], [ 364231.915700003504753, 254497.994300000369549 ], [ 364212.562399998307228, 254498.046999998390675 ], [ 364184.3091000020504, 254501.61540000140667 ], [ 364182.603000000119209, 254512.578299999237061 ], [ 364183.32660000026226, 254522.294599998742342 ], [ 364185.722099997103214, 254525.058400001376867 ], [ 364189.746500000357628, 254525.935699999332428 ], [ 364196.21679999679327, 254523.666600000113249 ], [ 364206.71679999679327, 254521.641600001603365 ], [ 364230.103500001132488, 254521.410900000482798 ], [ 364247.018100000917912, 254523.660199999809265 ], [ 364282.427500002086163, 254531.971599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87026852, "LATITUDE": 18.31983547, "OBJECTID_1": 38973, "PARCEL_NO_": "107604032900", "Tax_Legal_": "52H FRYDENHOJ RED HOOK QTR", "Name": "LU SHAVON HENLEY & LUSHAVON HENLEY (ITF) HENLEY V & HEAVON L JOHN-BAPT", "Address": "PO Box 863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040863, "Country": "United States", "Land_Value": 48900, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.10805681900001, "SHAPE_Area": 1776.4550769699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365206.980400003492832, 254540.15260000154376 ], [ 365219.820000000298023, 254580.595899999141693 ], [ 365237.620099999010563, 254573.564399998635054 ], [ 365257.847999997437, 254565.497299998998642 ], [ 365249.160199999809265, 254544.105700001120567 ], [ 365248.44200000166893, 254533.756299998611212 ], [ 365251.710400000214577, 254528.71680000051856 ], [ 365249.348999999463558, 254521.942400000989437 ], [ 365206.980400003492832, 254540.15260000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603023200", "MAP": "F9-160-T57", "PARCEL_NAM": "3-10", "ACRE": ".22", "LONGITUDE": -64.88065597000001, "LATITUDE": 18.31984941, "OBJECTID_1": 38602, "PARCEL_NO_": "107603023200", "Tax_Legal_": "3-10 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "SOUFFRONT, ROY & MELANIE", "Address": "1289 Balboa Ct", "City": "Sunnyvale", "State": "California", "Zip": 94086, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.901729023, "SHAPE_Area": 860.29793151399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364151.824600003659725, 254528.580600000917912 ], [ 364132.537900000810623, 254520.823399998247623 ], [ 364117.305100001394749, 254560.089800000190735 ], [ 364136.215800002217293, 254567.307900000363588 ], [ 364151.824600003659725, 254528.580600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "107604044700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86900605, "LATITUDE": 18.31976514, "OBJECTID_1": 39041, "PARCEL_NO_": "107604044700", "Tax_Legal_": "114-3 EST FRYDENHOJ RED HOOK QTR", "Name": "VENTURE ENTERPRISES, INC.", "Address": "BOX 2274", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120900, "Improved_V": 89000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.53266877, "SHAPE_Area": 1238.20162278 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365342.834499999880791, 254528.195999998599291 ], [ 365361.588899999856949, 254557.60190000012517 ], [ 365380.279799997806549, 254581.486999999731779 ], [ 365387.770400002598763, 254554.106100000441074 ], [ 365381.364799998700619, 254548.776299998164177 ], [ 365372.585299998521805, 254538.14979999884963 ], [ 365355.884700000286102, 254510.7820999994874 ], [ 365342.834499999880791, 254528.195999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86150184, "LATITUDE": 18.3199248, "OBJECTID_1": 39683, "PARCEL_NO_": "107703022200", "Tax_Legal_": "NAZARETH ESTATE 2W-25 1 RED HOOK", "Name": "REGISTE, LINCOLN A", "Address": "6514 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 109300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.773568395699996, "SHAPE_Area": 626.873308726 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366171.561899997293949, 254553.977200001478195 ], [ 366142.442900002002716, 254564.504599999636412 ], [ 366149.521700002253056, 254585.460799999535084 ], [ 366163.266800001263618, 254581.140299998223782 ], [ 366172.188400000333786, 254575.091699998825788 ], [ 366173.856700003147125, 254568.5614 ], [ 366171.561899997293949, 254553.977200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036700", "MAP": "G3-152-T75", "PARCEL_NAM": "33J", "ACRE": ".07", "LONGITUDE": -64.87994812, "LATITUDE": 18.31989589, "OBJECTID_1": 38689, "PARCEL_NO_": "107603036700", "Tax_Legal_": "33B&33J NADIR RED HOOK QTR", "Name": "STEPHENS, VALERIA", "Address": "7 Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8400, "Improved_V": 57500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.599808622700003, "SHAPE_Area": 169.27374741700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364213.957099996507168, 254558.416000001132488 ], [ 364212.962899997830391, 254538.932100001722574 ], [ 364204.072599999606609, 254541.319600000977516 ], [ 364206.368699997663498, 254561.776999998837709 ], [ 364213.957099996507168, 254558.416000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85616789, "LATITUDE": 18.31960494, "OBJECTID_1": 39787, "PARCEL_NO_": "107704012700", "Tax_Legal_": "NAZARETH ESTATE 2X-7A RED HOOK QTR", "Name": "DELUGO, ROBERT C. & JOAN E.", "Address": "PO Box 10035", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.87224141499999, "SHAPE_Area": 1447.6163367900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366732.073100000619888, 254543.999200001358986 ], [ 366754.870999999344349, 254518.2212999984622 ], [ 366750.060099996626377, 254515.015500001609325 ], [ 366736.383400000631809, 254511.315000001341105 ], [ 366723.484200000762939, 254510.9983000010252 ], [ 366692.216700002551079, 254584.414099998772144 ], [ 366692.996100001037121, 254587.586899999529123 ], [ 366729.632600001990795, 254546.51240000128746 ], [ 366732.073100000619888, 254543.999200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107803041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84216492, "LATITUDE": 18.31920665, "OBJECTID_1": 40513, "PARCEL_NO_": "107803041400", "Tax_Legal_": "TRACT #4 CONSOLIDATED NAZARETH No.1 RED HOOK QTR.", "Name": "RC ST THOMAS LLC", "Address": "1200 S Bartow Rd", "City": "Lakeland", "State": "Florida", "Zip": 33801, "Country": "United States", "Land_Value": 644600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 525.064336196, "SHAPE_Area": 4437.4657604200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368293.461900003254414, 254418.934399999678135 ], [ 368275.748199999332428, 254415.834100000560284 ], [ 368259.424199998378754, 254438.920800000429153 ], [ 368109.755400002002716, 254591.160799998790026 ], [ 368126.619599997997284, 254599.32039999961853 ], [ 368273.835299998521805, 254451.070999998599291 ], [ 368293.461900003254414, 254418.934399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603014900", "MAP": "F9-1799-T66", "PARCEL_NAM": "3-19A", "ACRE": "0.11", "LONGITUDE": -64.88183447, "LATITUDE": 18.3199243, "OBJECTID_1": 38566, "PARCEL_NO_": "107603014900", "Tax_Legal_": "3-19A BOVONI FRENCHMAN BAY QTR", "Name": "YVONNE SUTTON", "Address": "PO Box 8495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011495, "Country": "United States", "Land_Value": 13200, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.077984879599995, "SHAPE_Area": 525.68648179100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364025.870899997651577, 254547.392599999904633 ], [ 364000.959700003266335, 254537.267299998551607 ], [ 363993.548199996352196, 254555.360700000077486 ], [ 364019.267499998211861, 254565.281500000506639 ], [ 364025.870899997651577, 254547.392599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703026100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8595431, "LATITUDE": 18.31984191, "OBJECTID_1": 39721, "PARCEL_NO_": "107703026100", "Tax_Legal_": "NAZARETH ESTATE 2W-42&43A RED HOOK QTR", "Name": "2W NAZARETH LLC", "Address": "PO Box 304457", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42400, "Improved_V": 178400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.14773126599999, "SHAPE_Area": 1019.62677811 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366385.988799996674061, 254561.853900000452995 ], [ 366362.794600002467632, 254539.499200001358986 ], [ 366357.933300003409386, 254542.203600000590086 ], [ 366352.292700000107288, 254541.735300000756979 ], [ 366351.209499999880791, 254574.2347999997437 ], [ 366376.122500002384186, 254584.149000000208616 ], [ 366385.988799996674061, 254561.853900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86067731, "LATITUDE": 18.31985453, "OBJECTID_1": 39699, "PARCEL_NO_": "107703023800", "Tax_Legal_": "NAZARETH 2W-47 RED HOOK QTR", "Name": "CALLWOOD, J. & FURETT, NEAL B", "Address": "PO Box 304513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31700, "Improved_V": 33200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.210406992, "SHAPE_Area": 741.167230432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366261.7195999994874, 254572.235800001770258 ], [ 366257.910999998450279, 254546.029100000858307 ], [ 366245.798299998044968, 254548.040899999439716 ], [ 366232.051500000059605, 254552.572399999946356 ], [ 366235.825900003314018, 254582.789700001478195 ], [ 366253.651100002229214, 254572.803100001066923 ], [ 366260.105200000107288, 254572.433699999004602 ], [ 366261.7195999994874, 254572.235800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603023100", "MAP": "F9-150-T57", "PARCEL_NAM": "3-11", "ACRE": ".22", "LONGITUDE": -64.88087352, "LATITUDE": 18.31976511, "OBJECTID_1": 38601, "PARCEL_NO_": "107603023100", "Tax_Legal_": "3-11 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "SOUFFRONT, ROY & MELANIE", "Address": "1289 Balboa Ct", "City": "Sunnyvale", "State": "California", "Zip": 94086, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.58527603, "SHAPE_Area": 1223.7636729000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364127.7162000015378, 254518.884100001305342 ], [ 364104.410499997437, 254509.616399999707937 ], [ 364092.297499999403954, 254544.320000000298023 ], [ 364094.312856584787369, 254547.534284008201212 ], [ 364096.827784071676433, 254550.374781074817292 ], [ 364099.774262506747618, 254552.764665733440779 ], [ 364103.072599999606609, 254554.639299999922514 ], [ 364117.305100001394749, 254560.089800000190735 ], [ 364132.537900000810623, 254520.823399998247623 ], [ 364127.7162000015378, 254518.884100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803011400", "MAP": "D9-338-T62", "PARCEL_NAM": "9-3", "ACRE": ".42", "LONGITUDE": -64.84917029, "LATITUDE": 18.31975379, "OBJECTID_1": 40171, "PARCEL_NO_": "107803011400", "Tax_Legal_": "NAZARETH ESTATE 9-3 RED HOOK QTR", "Name": "STANLEY, JOYCE T", "Address": "PO Box 600172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 482100, "Improved_V": 72700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.11265758499999, "SHAPE_Area": 1834.40785443 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367493.068400003015995, 254569.437100000679493 ], [ 367470.010799996554852, 254531.040500000119209 ], [ 367439.1587999984622, 254555.697000000625849 ], [ 367432.66330000013113, 254560.92119999974966 ], [ 367454.185599997639656, 254590.228199999779463 ], [ 367472.016199998557568, 254579.608399998396635 ], [ 367493.068400003015995, 254569.437100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8466418, "LATITUDE": 18.31972162, "OBJECTID_1": 40209, "PARCEL_NO_": "107803021500", "Tax_Legal_": "5-11 NAZARETH NO.1 RED HOOK QTR", "Name": "ENGELHARDT, ALICE E", "Address": "6501 Deer Hill Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 123700, "Improved_V": 53200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.15397216700001, "SHAPE_Area": 3361.4236346500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367715.111900001764297, 254535.157499998807907 ], [ 367689.101300001144409, 254559.431400001049042 ], [ 367697.045699998736382, 254573.428599998354912 ], [ 367698.620600000023842, 254577.874499998986721 ], [ 367700.179200001060963, 254584.219999998807907 ], [ 367700.11089999973774, 254592.24100000038743 ], [ 367734.838100001215935, 254585.9814000017941 ], [ 367771.264200001955032, 254569.603100001811981 ], [ 367764.986299999058247, 254549.286699999123812 ], [ 367763.397100001573563, 254546.529500000178814 ], [ 367761.062700003385544, 254536.589000001549721 ], [ 367758.67790000140667, 254532.558699999004602 ], [ 367715.111900001764297, 254535.157499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8527105, "LATITUDE": 18.31981016, "OBJECTID_1": 39900, "PARCEL_NO_": "107704020200", "Tax_Legal_": "2Y-4 NAZARETH RED HOOK QTR", "Name": "KLEIN, JOHN M", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 110000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.64517999700001, "SHAPE_Area": 1858.66435662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367122.236599996685982, 254557.958299998193979 ], [ 367058.676399998366833, 254541.183899998664856 ], [ 367064.005900003015995, 254578.1689000017941 ], [ 367103.459499999880791, 254585.035700000822544 ], [ 367111.504600003361702, 254587.212499998509884 ], [ 367122.236599996685982, 254557.958299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603037200", "MAP": "C9-161-T73", "PARCEL_NAM": "33H", "ACRE": "0.08", "LONGITUDE": -64.879093, "LATITUDE": 18.31990895, "OBJECTID_1": 38694, "PARCEL_NO_": "107603037200", "Tax_Legal_": "EST NADIR 33H RED HOOK QTR", "Name": "COLON, MARIA ANTONIA", "Address": "6444 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9100, "Improved_V": 80000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.881501657200005, "SHAPE_Area": 347.65179405700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364290.421400003135204, 254540.159099999815226 ], [ 364284.267499998211861, 254552.297200001776218 ], [ 364306.366599999368191, 254561.543000001460314 ], [ 364311.608000002801418, 254561.857799999415874 ], [ 364314.952299997210503, 254559.508099999278784 ], [ 364314.389700002968311, 254554.709300000220537 ], [ 364305.427199997007847, 254547.853300001472235 ], [ 364290.421400003135204, 254540.159099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803019700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8473704, "LATITUDE": 18.31981231, "OBJECTID_1": 40195, "PARCEL_NO_": "107803019700", "Tax_Legal_": "9 REM.ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "REDHOOK HAYES B REM LLC", "Address": "1000 Blackbeards Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 342200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.29965385400001, "SHAPE_Area": 2048.69983899 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367689.718800000846386, 254581.601300001144409 ], [ 367688.944799996912479, 254577.795299999415874 ], [ 367669.083700001239777, 254542.802299998700619 ], [ 367605.9054000005126, 254575.84910000115633 ], [ 367621.1587999984622, 254583.784400001168251 ], [ 367630.825599998235703, 254584.918999999761581 ], [ 367634.867899999022484, 254583.685499999672174 ], [ 367640.506700001657009, 254584.364900000393391 ], [ 367643.712200000882149, 254586.713199999183416 ], [ 367645.303199999034405, 254589.259300000965595 ], [ 367689.718800000846386, 254581.601300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": "D3-331-T76", "PARCEL_NAM": "33L", "ACRE": "0.02", "LONGITUDE": -64.87976457000001, "LATITUDE": 18.31985357, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.689000714800002, "SHAPE_Area": 164.986828597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364234.573499999940395, 254549.945599999278784 ], [ 364236.504100002348423, 254538.891199998557568 ], [ 364223.097499996423721, 254538.897999998182058 ], [ 364222.241899996995926, 254554.663699999451637 ], [ 364229.746399998664856, 254551.095499999821186 ], [ 364234.573499999940395, 254549.945599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87549207000001, "LATITUDE": 18.31969429, "OBJECTID_1": 38800, "PARCEL_NO_": "107603061900", "Tax_Legal_": "8F ESTATE NADIR No.2 RED HOOK QTR.", "Name": "STEPHEN, FRANCIS", "Address": "PO Box 502713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 76800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.29222956800001, "SHAPE_Area": 1891.54739012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364698.786799997091293, 254499.915600001811981 ], [ 364698.796999998390675, 254498.717099998146296 ], [ 364668.765799999237061, 254504.258900001645088 ], [ 364663.831299997866154, 254532.982299998402596 ], [ 364659.591099999845028, 254557.434399999678135 ], [ 364682.929200001060963, 254562.902800001204014 ], [ 364688.57880000025034, 254562.315699998289347 ], [ 364692.633699998259544, 254559.604699999094009 ], [ 364698.691500000655651, 254511.102800000458956 ], [ 364698.756899997591972, 254503.427099999040365 ], [ 364698.786799997091293, 254499.915600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603012700", "MAP": "F9-155-T57", "PARCEL_NAM": "3-18", "ACRE": "0.22", "LONGITUDE": -64.88201232, "LATITUDE": 18.31976831, "OBJECTID_1": 38548, "PARCEL_NO_": "107603012700", "Tax_Legal_": "3-18 BOVONI RED HOOK QTR", "Name": "SMITH, LILLIAN", "Address": "PO Box 8665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 12900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.644009354, "SHAPE_Area": 812.485014632 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364009.960400000214577, 254521.931099999696016 ], [ 363987.459200002253056, 254512.881000000983477 ], [ 363974.259700000286102, 254547.814500000327826 ], [ 363993.548199996352196, 254555.360700000077486 ], [ 364000.959700003266335, 254537.267299998551607 ], [ 364009.960400000214577, 254521.931099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703026000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85976156, "LATITUDE": 18.31978462, "OBJECTID_1": 39720, "PARCEL_NO_": "107703026000", "Tax_Legal_": "NAZARETH ESTATE 2W-43 RED HOOK QTR", "Name": "OLIVA BASIL CHRISTIAN & JANET LAVENE CHRISTIAN REV", "Address": "PO Box 8322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.380021192100003, "SHAPE_Area": 530.365834404 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366352.292700000107288, 254541.735300000756979 ], [ 366345.853000000119209, 254540.416000001132488 ], [ 366333.747500002384186, 254541.583500001579523 ], [ 366334.332699999213219, 254567.552799999713898 ], [ 366351.209499999880791, 254574.2347999997437 ], [ 366352.292700000107288, 254541.735300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85043944, "LATITUDE": 18.31957589, "OBJECTID_1": 39908, "PARCEL_NO_": "107704021200", "Tax_Legal_": "NAZARETH 2Y-14 RED HOOK QTR", "Name": "KEVIN AND CHRISTINE O'NEIL REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172000, "Improved_V": 452600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.70181879800001, "SHAPE_Area": 3055.7336660300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367367.416799999773502, 254552.787799999117851 ], [ 367321.105599999427795, 254499.002099998295307 ], [ 367304.849899999797344, 254514.067800000309944 ], [ 367299.95440000295639, 254520.782699998468161 ], [ 367294.184399999678135, 254535.511999998241663 ], [ 367334.108000002801418, 254581.857200000435114 ], [ 367354.406099997460842, 254565.55799999833107 ], [ 367367.416799999773502, 254552.787799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86121284, "LATITUDE": 18.3197598, "OBJECTID_1": 39693, "PARCEL_NO_": "107703023200", "Tax_Legal_": "2W-32 NAZARETH NO.1 RED HOOK QTR", "Name": "Sylvia D Ross, Jonice A and Joran A Percival, Jr.", "Address": "PO Box 502703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31700, "Improved_V": 206000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.35172414199999, "SHAPE_Area": 657.68361380900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366192.712999999523163, 254532.19649999961257 ], [ 366178.955300003290176, 254537.994600001722574 ], [ 366181.095499999821186, 254570.731600001454353 ], [ 366183.507299996912479, 254571.59569999948144 ], [ 366194.853200003504753, 254564.933600001037121 ], [ 366205.409000001847744, 254556.365100000053644 ], [ 366192.712999999523163, 254532.19649999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86046362, "LATITUDE": 18.31981588, "OBJECTID_1": 39707, "PARCEL_NO_": "107703024600", "Tax_Legal_": "2W-6 NAZARETH ESTATE RED HOOK QUARTER", "Name": "THOMAS, MADIA", "Address": "6522 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24600, "Improved_V": 124000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.068749015799995, "SHAPE_Area": 480.32457567699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366279.469300001859665, 254571.114500001072884 ], [ 366277.266099996864796, 254545.765299998223782 ], [ 366257.910999998450279, 254546.029100000858307 ], [ 366261.7195999994874, 254572.235800001770258 ], [ 366279.469300001859665, 254571.114500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85326182, "LATITUDE": 18.31977374, "OBJECTID_1": 39899, "PARCEL_NO_": "107704020100", "Tax_Legal_": "2Y-3 NAZARETH RED HOOK QTR", "Name": "KLEIN, JOHN M", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.44782733900001, "SHAPE_Area": 2024.2753285900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367058.676399998366833, 254541.183899998664856 ], [ 367057.934799998998642, 254533.578499998897314 ], [ 367053.874499998986721, 254536.922699999064207 ], [ 367044.965499997138977, 254541.493900001049042 ], [ 367032.840199999511242, 254544.983199998736382 ], [ 367020.727600000798702, 254546.995000001043081 ], [ 367005.357299998402596, 254552.779800001531839 ], [ 366989.963600002229214, 254561.308699999004602 ], [ 366981.850100003182888, 254567.152899999171495 ], [ 366980.224899999797344, 254568.617199998348951 ], [ 366980.20160000026226, 254571.361299999058247 ], [ 366981.806999996304512, 254572.218800000846386 ], [ 367013.251400001347065, 254572.687199998646975 ], [ 367064.005900003015995, 254578.1689000017941 ], [ 367058.676399998366833, 254541.183899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603037100", "MAP": "C9-161-T73", "PARCEL_NAM": "33G", "ACRE": "0.09", "LONGITUDE": -64.87933294, "LATITUDE": 18.31981863, "OBJECTID_1": 38693, "PARCEL_NO_": "107603037100", "Tax_Legal_": "33G EST NADIR RED HOOK QTR", "Name": "Bryan, Carlyle", "Address": "2154 Hospital St", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 10800, "Improved_V": 27400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.6319023617, "SHAPE_Area": 383.931858503 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364290.421400003135204, 254540.159099999815226 ], [ 364278.517599999904633, 254535.989000000059605 ], [ 364263.389499999582767, 254530.416900001466274 ], [ 364260.39360000193119, 254545.623700000345707 ], [ 364284.267499998211861, 254552.297200001776218 ], [ 364290.421400003135204, 254540.159099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86024978, "LATITUDE": 18.31980717, "OBJECTID_1": 39710, "PARCEL_NO_": "107703025000", "Tax_Legal_": "NAZARETH ESTATE 2W-45 1 RED HOOK QUARTER", "Name": "PENN, AVA", "Address": "PO Box 306952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24600, "Improved_V": 108600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.590888812, "SHAPE_Area": 668.40394987100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366306.901900000870228, 254569.228100001811981 ], [ 366303.078900001943111, 254544.71000000089407 ], [ 366277.266099996864796, 254545.765299998223782 ], [ 366279.469300001859665, 254571.114500001072884 ], [ 366285.11710000038147, 254570.738600000739098 ], [ 366306.901900000870228, 254569.228100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603065000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87573938, "LATITUDE": 18.31979563, "OBJECTID_1": 38827, "PARCEL_NO_": "107603065000", "Tax_Legal_": "8BA NADIR RED HOOK QTR", "Name": "RICHARDSON, EDWARD B", "Address": "PO Box 8883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4800, "Improved_V": 61700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.820235049700003, "SHAPE_Area": 408.49858216899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364663.831299997866154, 254532.982299998402596 ], [ 364650.185099996626377, 254525.693399999290705 ], [ 364644.299900002777576, 254553.931800000369549 ], [ 364659.591099999845028, 254557.434399999678135 ], [ 364663.831299997866154, 254532.982299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703014300", "MAP": "A9-28-T64", "PARCEL_NAM": "41-6", "ACRE": "11.6 +/-", "LONGITUDE": -64.86436944, "LATITUDE": 18.31922537, "OBJECTID_1": 39634, "PARCEL_NO_": "107703014300", "Tax_Legal_": "FRYDENHOJ ESTATE 41-6 RED HOOK QTR", "Name": "CLARENBACH TRUST", "Address": "4770 Dream Catcher Ave", "City": "Las Vegas", "State": "Nevada", "Zip": 891295323, "Country": "United States", "Land_Value": 478300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 964.55968491, "SHAPE_Area": 33294.424225800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365983.490699999034405, 254481.299400001764297 ], [ 365969.902099996805191, 254467.256000000983477 ], [ 365961.07940000295639, 254461.695300001651049 ], [ 365949.035099998116493, 254455.686099998652935 ], [ 365932.101400002837181, 254444.959399998188019 ], [ 365912.943400003015995, 254432.803700000047684 ], [ 365906.534299999475479, 254427.896099999547005 ], [ 365894.480999998748302, 254422.942299999296665 ], [ 365871.902400001883507, 254422.968600001186132 ], [ 365840.414899997413158, 254427.566100001335144 ], [ 365824.279600001871586, 254428.489500001072884 ], [ 365812.210100002586842, 254425.435400001704693 ], [ 365805.788400001823902, 254422.005300000309944 ], [ 365802.59009999781847, 254418.812699999660254 ], [ 365795.354900002479553, 254416.220400001853704 ], [ 365790.502599999308586, 254417.86939999833703 ], [ 365782.387299999594688, 254423.924699999392033 ], [ 365773.48369999974966, 254427.86259999871254 ], [ 365767.020599998533726, 254429.287399999797344 ], [ 365759.765600003302097, 254429.0168999992311 ], [ 365719.561499997973442, 254415.600099999457598 ], [ 365694.596400000154972, 254411.807199999690056 ], [ 365678.137500002980232, 254450.724800001829863 ], [ 365682.987899996340275, 254449.286800000816584 ], [ 365687.017700001597404, 254449.530900001525879 ], [ 365689.420400001108646, 254451.450399998575449 ], [ 365696.655699998140335, 254454.042700000107288 ], [ 365698.201800003647804, 254461.865800000727177 ], [ 365704.601899996399879, 254467.82880000025034 ], [ 365703.775799997150898, 254470.144099999219179 ], [ 365704.553400002419949, 254473.528000000864267 ], [ 365707.764200001955032, 254475.243000000715256 ], [ 365714.218299999833107, 254474.873599998652935 ], [ 365722.306599996984005, 254471.984499998390675 ], [ 365726.336400002241135, 254472.22859999909997 ], [ 365727.925599999725819, 254474.985800001770258 ], [ 365734.32039999961853, 254481.582100000232458 ], [ 365738.33219999819994, 254483.936900001019239 ], [ 365740.677400000393391, 254492.61089999973774 ], [ 365743.058600001037121, 254497.063400000333786 ], [ 365752.728900000452995, 254497.775800000876188 ], [ 365759.166799999773502, 254499.306200001388788 ], [ 365761.569600000977516, 254501.225699998438358 ], [ 365765.543600000441074, 254508.013199999928474 ], [ 365765.520199999213219, 254510.757199998944998 ], [ 365758.186099998652935, 254519.77419999986887 ], [ 365757.064699999988079, 254525.520500000566244 ], [ 365756.499700002372265, 254528.415300000458956 ], [ 365748.677500002086163, 254537.140500001609325 ], [ 365744.288199998438358, 254542.036400001496077 ], [ 365741.012599997222424, 254547.920200001448393 ], [ 365736.946800000965595, 254551.897700000554323 ], [ 365926.702899999916553, 254551.221000000834465 ], [ 365937.108900003135204, 254551.183899998664856 ], [ 366060.310500003397465, 254550.744600001722574 ], [ 366059.525799997150898, 254548.205099999904633 ], [ 366055.546400003135204, 254542.050799999386072 ], [ 366006.638199999928474, 254509.142099998891354 ], [ 365997.043399997055531, 254499.564300000667572 ], [ 365983.490699999034405, 254481.299400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703025700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85998532000001, "LATITUDE": 18.31978397, "OBJECTID_1": 39717, "PARCEL_NO_": "107703025700", "Tax_Legal_": "2W-44 NAZARETH NO.1 RED HOOK QTR", "Name": "OLIVA B. & JANET L. CHRISTIAN REV. FAM. TRST", "Address": "PO Box 8322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26400, "Improved_V": 269200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.099718423, "SHAPE_Area": 738.61373554700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366333.747500002384186, 254541.583500001579523 ], [ 366303.078900001943111, 254544.71000000089407 ], [ 366306.901900000870228, 254569.228100001811981 ], [ 366334.332699999213219, 254567.552799999713898 ], [ 366333.747500002384186, 254541.583500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86178923, "LATITUDE": 18.31976308, "OBJECTID_1": 39670, "PARCEL_NO_": "107703020600", "Tax_Legal_": "NAZARETH ESTATE 2W-23 RED HOOK QTR", "Name": "BURT, CHRISTINA", "Address": "10th Street Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 237800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.572292848, "SHAPE_Area": 816.90984728299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366142.442900002002716, 254564.504599999636412 ], [ 366145.090199999511242, 254537.717399999499321 ], [ 366128.960400000214577, 254538.007599998265505 ], [ 366112.832299999892712, 254538.08669999986887 ], [ 366113.620600000023842, 254540.204100001603365 ], [ 366115.807599999010563, 254567.453000001609325 ], [ 366142.442900002002716, 254564.504599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87587019, "LATITUDE": 18.31974912, "OBJECTID_1": 38798, "PARCEL_NO_": "107603061700", "Tax_Legal_": "NADIR ESTATE 8BB RED HOOK QTR", "Name": "ROJAS, EDA, LIFE ESTATE", "Address": "PO Box 7541", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6000, "Improved_V": 43700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.692394454799995, "SHAPE_Area": 428.15676037399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364650.185099996626377, 254525.693399999290705 ], [ 364637.339800000190735, 254519.044399999082088 ], [ 364630.619599997997284, 254550.653400000184774 ], [ 364644.299900002777576, 254553.931800000369549 ], [ 364650.185099996626377, 254525.693399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604045700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86945876, "LATITUDE": 18.31964014, "OBJECTID_1": 39051, "PARCEL_NO_": "107604045700", "Tax_Legal_": "74A-3 ESTATE FRYDENHOJ REDHOOK QTR.", "Name": "WILLIAMS, JEROME & JASON H", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32600, "Improved_V": 25300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.29405801799999, "SHAPE_Area": 1374.7988917099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365292.133900001645088, 254516.381999999284744 ], [ 365312.244099996984005, 254547.547699999064207 ], [ 365334.517800003290176, 254557.892099998891354 ], [ 365342.834499999880791, 254528.195999998599291 ], [ 365296.555699996650219, 254504.402899999171495 ], [ 365292.133900001645088, 254516.381999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86213135, "LATITUDE": 18.31977667, "OBJECTID_1": 39627, "PARCEL_NO_": "107703013300", "Tax_Legal_": "2W-13 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "MOHR, NICHOLAS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 60000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.773153534800002, "SHAPE_Area": 576.83165329099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366106.164200000464916, 254563.574400000274181 ], [ 366103.939499996602535, 254540.758099999278784 ], [ 366079.746500000357628, 254540.982299998402596 ], [ 366081.226099997758865, 254556.615299999713898 ], [ 366081.150600001215935, 254565.480599999427795 ], [ 366106.164200000464916, 254563.574400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603037000", "MAP": "C9-161-T73", "PARCEL_NAM": "33F", "ACRE": "0.05", "LONGITUDE": -64.87950752, "LATITUDE": 18.31977089, "OBJECTID_1": 38692, "PARCEL_NO_": "107603037000", "Tax_Legal_": "33F EST NADIR RED HOOK QTR", "Name": "WILLIAMS, JOAN", "Address": "PO Box 6541", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6000, "Improved_V": 78200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.769192738500003, "SHAPE_Area": 185.268087557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364263.389499999582767, 254530.416900001466274 ], [ 364251.206900000572205, 254527.779399998486042 ], [ 364248.568199999630451, 254541.961899999529123 ], [ 364260.39360000193119, 254545.623700000345707 ], [ 364263.389499999582767, 254530.416900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603012500", "MAP": "F9-141-T57", "PARCEL_NAM": "3-17", "ACRE": "0.11", "LONGITUDE": -64.88230961, "LATITUDE": 18.31975796, "OBJECTID_1": 38546, "PARCEL_NO_": "107603012500", "Tax_Legal_": "3-17 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "HENNEMAN, MYRON B", "Address": "1153 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.239510400499995, "SHAPE_Area": 327.636529311 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363946.378700003027916, 254535.222600001841784 ], [ 363968.673900000751019, 254542.820000000298023 ], [ 363973.598999999463558, 254530.710499998182058 ], [ 363951.097800001502037, 254521.660500001162291 ], [ 363946.378700003027916, 254535.222600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603012801", "MAP": "F9-1799-T66", "PARCEL_NAM": "3-19", "ACRE": "0.11", "LONGITUDE": -64.8817655, "LATITUDE": 18.31977154, "OBJECTID_1": 38550, "PARCEL_NO_": "107603012801", "Tax_Legal_": "3-19 BOVONI FRENCHMAN BAY QTR", "Name": "PASQUAL, DIEGO", "Address": "3-19 BOVONI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 96100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.731441533600005, "SHAPE_Area": 452.752578992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364032.46339999884367, 254530.770100001245737 ], [ 364009.960400000214577, 254521.931099999696016 ], [ 364000.959700003266335, 254537.267299998551607 ], [ 364025.870899997651577, 254547.392599999904633 ], [ 364032.46339999884367, 254530.770100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86152832000001, "LATITUDE": 18.31971398, "OBJECTID_1": 39682, "PARCEL_NO_": "107703022100", "Tax_Legal_": "NAZARETH ESTATE 2W-26 1 RED HOOK", "Name": "BROWN, IDA MAE F", "Address": "PO Box 10546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26000, "Improved_V": 162300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.005518159, "SHAPE_Area": 713.16984251899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366170.129100002348423, 254532.856100000441074 ], [ 366145.945100001990795, 254532.024900000542402 ], [ 366145.090199999511242, 254537.717399999499321 ], [ 366142.442900002002716, 254564.504599999636412 ], [ 366171.561899997293949, 254553.977200001478195 ], [ 366170.129100002348423, 254532.856100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85206578, "LATITUDE": 18.31967985, "OBJECTID_1": 39903, "PARCEL_NO_": "107704020500", "Tax_Legal_": "2Y-7 NAZARETH RED HOOK QTR.", "Name": "RUAN, ST. CLAUD I. & ROSE A", "Address": "PO Box 303598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146000, "Improved_V": 479800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.067071027, "SHAPE_Area": 2141.0365774500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367186.064800001680851, 254543.282000001519918 ], [ 367184.419799998402596, 254547.068199999630451 ], [ 367181.194499999284744, 254547.041799999773502 ], [ 367177.956699997186661, 254548.492899999022484 ], [ 367175.50900000333786, 254551.850400000810623 ], [ 367169.882799997925758, 254549.693399999290705 ], [ 367169.954700000584126, 254541.250300001353025 ], [ 367165.156400002539158, 254536.566899999976158 ], [ 367150.711099997162819, 254528.427200000733137 ], [ 367133.836099997162819, 254521.534099999815226 ], [ 367122.236599996685982, 254557.958299998193979 ], [ 367165.656999997794628, 254572.456900000572205 ], [ 367200.375200003385544, 254567.252700001001358 ], [ 367186.064800001680851, 254543.282000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84761313, "LATITUDE": 18.31959225, "OBJECTID_1": 40181, "PARCEL_NO_": "107803012400", "Tax_Legal_": "NAZARETH ESTATE 9-56 RED HOOK QUARTER", "Name": "JONES, CALVIN A", "Address": "PO Box 10437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 106500, "Improved_V": 341000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.27263207199999, "SHAPE_Area": 2561.8762396699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367669.083700001239777, 254542.802299998700619 ], [ 367657.971600003540516, 254522.02419999986887 ], [ 367648.371299996972084, 254513.079700000584126 ], [ 367622.441699996590614, 254527.855099998414516 ], [ 367615.13629999756813, 254533.494800001382828 ], [ 367582.67339999973774, 254557.927099999040365 ], [ 367590.664599999785423, 254566.436200000345707 ], [ 367605.9054000005126, 254575.84910000115633 ], [ 367669.083700001239777, 254542.802299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87603859, "LATITUDE": 18.31969703, "OBJECTID_1": 38797, "PARCEL_NO_": "107603061600", "Tax_Legal_": "8BC NADIR RED HOOK QTR", "Name": "CYPRE, JOSEPH & MERLINE", "Address": "7843 Estate Brookman", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6600, "Improved_V": 123600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.70517659399999, "SHAPE_Area": 801.84606179299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364618.072899997234344, 254508.965300001204014 ], [ 364613.08389999717474, 254526.656300000846386 ], [ 364608.141800001263618, 254538.859299998730421 ], [ 364606.516500003635883, 254540.323600001633167 ], [ 364606.484200000762939, 254544.123100001364946 ], [ 364609.695000000298023, 254545.838100001215935 ], [ 364630.619599997997284, 254550.653400000184774 ], [ 364637.339800000190735, 254519.044399999082088 ], [ 364618.072899997234344, 254508.965300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604060800", "MAP": null, "PARCEL_NAM": "2-6", "ACRE": "0.73", "LONGITUDE": -64.87120445, "LATITUDE": 18.31925914, "OBJECTID_1": 39066, "PARCEL_NO_": "107604060800", "Tax_Legal_": "FRYDENHOJ ESTATE 2-6 RED HOOK QTR", "Name": "HUMPHREY HERMAN SR TRUST", "Address": "PO Box 6022", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046022, "Country": "United States", "Land_Value": 200800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 311.36777990399997, "SHAPE_Area": 3910.1810704300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365171.552100002765656, 254472.543099999427795 ], [ 365157.963600002229214, 254446.314899999648333 ], [ 365147.571299999952316, 254447.859999999403954 ], [ 365145.154100000858307, 254447.629099998623133 ], [ 365140.398999996483326, 254437.879900000989437 ], [ 365137.983599998056889, 254437.437899999320507 ], [ 365137.195299997925758, 254435.320500001311302 ], [ 365132.3412000015378, 254437.180599998682737 ], [ 365131.47919999808073, 254443.717500001192093 ], [ 365129.035099998116493, 254446.652800001204014 ], [ 365126.598200000822544, 254448.74379999935627 ], [ 365122.561200000345707, 254449.344000000506639 ], [ 365120.208800002932549, 254441.514299999922514 ], [ 365116.546999998390675, 254442.340399999171495 ], [ 365115.918300002813339, 254451.938000001013279 ], [ 365112.373499996960163, 254506.044799998402596 ], [ 365109.136200003325939, 254555.459100000560284 ], [ 365111.181800000369549, 254554.586599998176098 ], [ 365120.92230000346899, 254547.066899999976158 ], [ 365130.69879999756813, 254535.325699999928474 ], [ 365151.17849999666214, 254497.707600001245737 ], [ 365155.253200002014637, 254492.674699999392033 ], [ 365157.71169999986887, 254488.050700001418591 ], [ 365171.552100002765656, 254472.543099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036600", "MAP": "C9-161-T73", "PARCEL_NAM": "33A", "ACRE": ".07", "LONGITUDE": -64.88012206000001, "LATITUDE": 18.31976899, "OBJECTID_1": 38688, "PARCEL_NO_": "107603036600", "Tax_Legal_": "EST NADIR 33A RED HOOK QTR", "Name": "DANIEL, SR , HORTENSE & JAMES", "Address": "7008 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8400, "Improved_V": 4300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.968272877199993, "SHAPE_Area": 356.81652417800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364183.256399996578693, 254530.526700001209974 ], [ 364175.95830000191927, 254535.32209999859333 ], [ 364176.741200000047684, 254538.072700001299381 ], [ 364177.498999997973442, 254543.778400000184774 ], [ 364204.072599999606609, 254541.319600000977516 ], [ 364202.046599999070168, 254525.093600001186132 ], [ 364191.285400003194809, 254528.471500001847744 ], [ 364186.538999997079372, 254529.931699998676777 ], [ 364183.256399996578693, 254530.526700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703026300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85939011000001, "LATITUDE": 18.31963799, "OBJECTID_1": 39723, "PARCEL_NO_": "107703026300", "Tax_Legal_": "2W-41 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "CONOW, BRIDGET NILES", "Address": "PO Box 503241", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 34300, "Improved_V": 161000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.577104158, "SHAPE_Area": 759.55141333899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366399.9712999984622, 254529.671000000089407 ], [ 366402.440499998629093, 254523.780600000172853 ], [ 366365.281800001859665, 254531.497999999672174 ], [ 366365.236900001764297, 254536.774999998509884 ], [ 366362.794600002467632, 254539.499200001358986 ], [ 366385.988799996674061, 254561.853900000452995 ], [ 366399.9712999984622, 254529.671000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036900", "MAP": "C9-161-T73", "PARCEL_NAM": "33D", "ACRE": "0.06", "LONGITUDE": -64.87974904, "LATITUDE": 18.31973082, "OBJECTID_1": 38691, "PARCEL_NO_": "107603036900", "Tax_Legal_": "33D EST NADIR RED HOOK QTR", "Name": "GEORGE, MARJORIE", "Address": "4865 W McEachern Woods Dr", "City": "Powder Springs", "State": "Georgia", "Zip": 30127, "Country": "United States", "Land_Value": 7200, "Improved_V": 54800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.117967199399999, "SHAPE_Area": 188.869333044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364237.927799999713898, 254525.681000001728535 ], [ 364224.990800000727177, 254523.68129999935627 ], [ 364223.097499996423721, 254538.897999998182058 ], [ 364236.504100002348423, 254538.891199998557568 ], [ 364237.927799999713898, 254525.681000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87680144, "LATITUDE": 18.31918674, "OBJECTID_1": 38720, "PARCEL_NO_": "107603040800", "Tax_Legal_": "24 NADIR RED HOOK QTR", "Name": "DONASTORG, ELEANOR", "Address": "PO Box 7782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 151700, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.19453983699998, "SHAPE_Area": 5512.45143267 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364582.943999998271465, 254492.271099999547005 ], [ 364573.201700001955032, 254475.456300001591444 ], [ 364571.599799998104572, 254474.176699999719858 ], [ 364574.844899997115135, 254471.88120000064373 ], [ 364555.087999999523163, 254424.645599998533726 ], [ 364506.630199998617172, 254433.537200000137091 ], [ 364496.938199996948242, 254435.357700001448393 ], [ 364507.181199997663498, 254463.5168999992311 ], [ 364516.6266999989748, 254490.614199999719858 ], [ 364519.783699996769428, 254498.66160000115633 ], [ 364558.887100003659725, 254537.348400000482798 ], [ 364582.943999998271465, 254492.271099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036800", "MAP": "D9-7739-T006", "PARCEL_NAM": "33C", "ACRE": ".04", "LONGITUDE": -64.87986028, "LATITUDE": 18.31972727, "OBJECTID_1": 38690, "PARCEL_NO_": "107603036800", "Tax_Legal_": "EST NADIR 33C RED HOOK QTR", "Name": "DANET, VINCENT", "Address": "PO Box 12426", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4800, "Improved_V": 86100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.527334669399998, "SHAPE_Area": 160.17612630400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364224.990800000727177, 254523.68129999935627 ], [ 364213.64469999819994, 254524.249600000679493 ], [ 364212.962899997830391, 254538.932100001722574 ], [ 364223.097499996423721, 254538.897999998182058 ], [ 364224.990800000727177, 254523.68129999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036700", "MAP": "C9-161-T73", "PARCEL_NAM": "33B", "ACRE": null, "LONGITUDE": -64.87996102, "LATITUDE": 18.31973515, "OBJECTID_1": 38689, "PARCEL_NO_": "107603036700", "Tax_Legal_": "33B&33J NADIR RED HOOK QTR", "Name": "STEPHENS, VALERIA", "Address": "7 Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8400, "Improved_V": 57500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.884387852499998, "SHAPE_Area": 159.40237340900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364213.64469999819994, 254524.249600000679493 ], [ 364202.046599999070168, 254525.093600001186132 ], [ 364204.072599999606609, 254541.319600000977516 ], [ 364212.962899997830391, 254538.932100001722574 ], [ 364213.64469999819994, 254524.249600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803011500", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".55", "LONGITUDE": -64.8487774, "LATITUDE": 18.31950763, "OBJECTID_1": 40172, "PARCEL_NO_": "107803011500", "Tax_Legal_": "NAZARETH ESTATE 9-2 RED HOOK QTR", "Name": "WAGNER, JR., JEFFREY D. and HEATHER", "Address": "6501 Red Hook Plaza", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8020000, "Country": "United States", "Land_Value": 116900, "Improved_V": 367600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.73085280699999, "SHAPE_Area": 2578.5599261900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367537.642200000584126, 254543.204199999570847 ], [ 367517.055699996650219, 254498.706000000238419 ], [ 367475.694600000977516, 254526.442899998277426 ], [ 367470.010799996554852, 254531.040500000119209 ], [ 367493.068400003015995, 254569.437100000679493 ], [ 367532.770199999213219, 254547.17509999871254 ], [ 367537.642200000584126, 254543.204199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86237174, "LATITUDE": 18.31948088, "OBJECTID_1": 39655, "PARCEL_NO_": "107703016600", "Tax_Legal_": "FRYDENHOJ ESTATE 41-3-A RED HOOK QUARTER", "Name": "SMITH, STEVE & JOSEPH, MARVELY", "Address": "9114 Post Oak Ct", "City": "Tampa", "State": "Florida", "Zip": 33615, "Country": "United States", "Land_Value": 32900, "Improved_V": 25100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.49398861, "SHAPE_Area": 1391.9574939500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366078.346100002527237, 254516.061799999326468 ], [ 366076.93129999935627, 254492.829900000244379 ], [ 366076.268799997866154, 254475.936999998986721 ], [ 366044.410800002515316, 254524.016699999570847 ], [ 366062.851700000464916, 254536.410999998450279 ], [ 366064.437399998307228, 254539.590399999171495 ], [ 366066.039200000464916, 254540.870099999010563 ], [ 366068.413199998438358, 254546.166900001466274 ], [ 366069.941299997270107, 254556.10080000013113 ], [ 366081.226099997758865, 254556.615299999713898 ], [ 366079.746500000357628, 254540.982299998402596 ], [ 366078.346100002527237, 254516.061799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019600", "MAP": "F9-144-T57", "PARCEL_NAM": "3-107", "ACRE": null, "LONGITUDE": -64.88249087, "LATITUDE": 18.31959723, "OBJECTID_1": 38572, "PARCEL_NO_": "107603019600", "Tax_Legal_": "3-38,64 &107 BOVONI FRENCHMAN'S BAY QTR", "Name": "LIMA JR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98200, "Improved_V": 242300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.976000649, "SHAPE_Area": 864.86053925099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363923.383299998939037, 254527.386599998921156 ], [ 363946.378700003027916, 254535.222600001841784 ], [ 363951.097800001502037, 254521.660500001162291 ], [ 363957.697499997913837, 254504.19370000064373 ], [ 363958.49099999666214, 254502.289700001478195 ], [ 363935.052599996328354, 254493.720199998468161 ], [ 363934.38459999859333, 254495.770300000905991 ], [ 363923.383299998939037, 254527.386599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86100718, "LATITUDE": 18.31963627, "OBJECTID_1": 39690, "PARCEL_NO_": "107703022900", "Tax_Legal_": "NAZARETH ESTATE 2W-33 RED HOOK QUARTER", "Name": "BETTY L MAHONEY TRUST", "Address": "PO Box 293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31700, "Improved_V": 152200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.396114334, "SHAPE_Area": 726.275571593 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366231.326099999248981, 254543.067299999296665 ], [ 366218.606700003147125, 254521.642700001597404 ], [ 366216.98870000243187, 254522.262699998915195 ], [ 366192.712999999523163, 254532.19649999961257 ], [ 366205.409000001847744, 254556.365100000053644 ], [ 366215.948600001633167, 254549.696400001645088 ], [ 366231.326099999248981, 254543.067299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062100", "MAP": null, "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.87489302, "LATITUDE": 18.3194023, "OBJECTID_1": 38802, "PARCEL_NO_": "107603062100", "Tax_Legal_": "9 EST NADIR RED HOOK QTR", "Name": "TERESA & MARK SABINO TRUSTEES", "Address": "PO Box 785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 196600, "Improved_V": 161900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.18235297899997, "SHAPE_Area": 4680.5184884800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364705.97070000320673, 254529.136700000613928 ], [ 364777.380000002682209, 254530.303399998694658 ], [ 364777.560900002717972, 254529.269000001251698 ], [ 364782.485100001096725, 254519.17680000141263 ], [ 364796.311099998652935, 254505.357799999415874 ], [ 364805.234399996697903, 254499.098099999129772 ], [ 364705.62389999628067, 254454.586399998515844 ], [ 364704.797799997031689, 254456.901700001209974 ], [ 364705.471100002527237, 254472.528099998831749 ], [ 364707.748000003397465, 254489.223200000822544 ], [ 364707.562700003385544, 254510.964299999177456 ], [ 364705.97070000320673, 254529.136700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603023600", "MAP": "F9-3919-T57", "PARCEL_NAM": "3-8", "ACRE": ".333", "LONGITUDE": -64.88037687000001, "LATITUDE": 18.31970073, "OBJECTID_1": 38604, "PARCEL_NO_": "107603023600", "Tax_Legal_": "3-8 BOVONI 1 & 2 FRENCHMANS BAY QTR.", "Name": "SERRANO, ANTONIO", "Address": "9285 Estate Thomas 14PJ", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.37627159300001, "SHAPE_Area": 794.68100674899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364167.376599997282028, 254501.47690000012517 ], [ 364162.545900002121925, 254500.592999998480082 ], [ 364151.824600003659725, 254528.580600000917912 ], [ 364147.675399996340275, 254538.875199999660254 ], [ 364178.938699997961521, 254549.456599999219179 ], [ 364177.498999997973442, 254543.778400000184774 ], [ 364176.741200000047684, 254538.072700001299381 ], [ 364175.95830000191927, 254535.32209999859333 ], [ 364167.376599997282028, 254501.47690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033300", "MAP": "G9-1577-T70", "PARCEL_NAM": "2-S", "ACRE": "0.13", "LONGITUDE": -64.87086492, "LATITUDE": 18.31956148, "OBJECTID_1": 38977, "PARCEL_NO_": "107604033300", "Tax_Legal_": "2P&2S FRYDENHOJ No.3 RED HOOK QTR", "Name": "FLEMING, ELVIN DON", "Address": "PO Box 1672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38900, "Improved_V": 155400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.323958928, "SHAPE_Area": 633.23784839799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365165.173500001430511, 254506.375999998301268 ], [ 365159.820000000298023, 254501.897100001573563 ], [ 365150.961000002920628, 254517.697799999266863 ], [ 365173.596500001847744, 254535.0912000015378 ], [ 365177.549500003457069, 254538.128800000995398 ], [ 365183.933399997651577, 254533.650499999523163 ], [ 365190.449000000953674, 254527.522300001233816 ], [ 365165.173500001430511, 254506.375999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603013500", "MAP": "F9-95-T57", "PARCEL_NAM": "3-13", "ACRE": "0.22", "LONGITUDE": -64.88138886, "LATITUDE": 18.31958311, "OBJECTID_1": 38557, "PARCEL_NO_": "107603013500", "Tax_Legal_": "3-13 ESTATE BOVONI FRENCHMAN", "Name": "BIG LORNE SEWAGE REMOVAL LLC", "Address": "PO BOX 503041", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.702180369, "SHAPE_Area": 805.25036627700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364074.634400002658367, 254502.61769999936223 ], [ 364052.133199997246265, 254493.567600000649691 ], [ 364040.566100001335144, 254526.192400000989437 ], [ 364061.461900003254414, 254534.385000001639128 ], [ 364074.634400002658367, 254502.61769999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85261833, "LATITUDE": 18.3195236, "OBJECTID_1": 39901, "PARCEL_NO_": "107704020300", "Tax_Legal_": "NAZARETH ESTATE 2Y-5 No.1 RED HOOK QTR.", "Name": "HUTTA, JAMES T.", "Address": "470 Silver Ln", "City": "Columbus", "State": "Ohio", "Zip": 43230, "Country": "United States", "Land_Value": 144200, "Improved_V": 567000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.77416720400001, "SHAPE_Area": 2259.8423128899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367133.836099997162819, 254521.534099999815226 ], [ 367126.600900001823902, 254518.941700000315905 ], [ 367108.091600000858307, 254514.568399999290705 ], [ 367091.981600001454353, 254512.536699999123812 ], [ 367083.104900002479553, 254513.308400001376867 ], [ 367057.934799998998642, 254533.578499998897314 ], [ 367058.676399998366833, 254541.183899998664856 ], [ 367122.236599996685982, 254557.958299998193979 ], [ 367133.836099997162819, 254521.534099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603012600", "MAP": null, "PARCEL_NAM": "3-17A", "ACRE": "0.11", "LONGITUDE": -64.88225239, "LATITUDE": 18.31962008, "OBJECTID_1": 38547, "PARCEL_NO_": "107603012600", "Tax_Legal_": "3-17A BOVONI FRENCHMAN BAY QTR", "Name": "HENNEMAN, AUDIE", "Address": "1153 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.265577418600003, "SHAPE_Area": 468.49555911300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363981.010499998927116, 254512.617199998348951 ], [ 363957.697499997913837, 254504.19370000064373 ], [ 363951.097800001502037, 254521.660500001162291 ], [ 363973.598999999463558, 254530.710499998182058 ], [ 363981.010499998927116, 254512.617199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603013400", "MAP": "F9-114-T57", "PARCEL_NAM": "3-14", "ACRE": "0.22", "LONGITUDE": -64.88166898, "LATITUDE": 18.31953902, "OBJECTID_1": 38556, "PARCEL_NO_": "107603013400", "Tax_Legal_": "ESTATE BOVONI 3-14 FRENCHMANS BAY QTR", "Name": "ANDREY, ROSETTA", "Address": "PO Box 10268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 192100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.90308531, "SHAPE_Area": 886.77996589300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364045.668300002813339, 254495.203400000929832 ], [ 364023.156300000846386, 254487.419799998402596 ], [ 364009.960400000214577, 254521.931099999696016 ], [ 364032.46339999884367, 254530.770100001245737 ], [ 364039.081200003623962, 254511.192600000649691 ], [ 364045.668300002813339, 254495.203400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87042527, "LATITUDE": 18.31943854, "OBJECTID_1": 38975, "PARCEL_NO_": "107604033000", "Tax_Legal_": "52J FRYDENHOJ RED HOOK QTR", "Name": "SMITH, DEBORAH A", "Address": "2440 Hunter Ave", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 46400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.62497976200001, "SHAPE_Area": 2140.7002742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365194.690600000321865, 254501.441199999302626 ], [ 365206.980400003492832, 254540.15260000154376 ], [ 365249.348999999463558, 254521.942400000989437 ], [ 365238.321299999952316, 254491.243599999696016 ], [ 365202.820200003683567, 254493.697299998253584 ], [ 365194.990900002419949, 254466.190999999642372 ], [ 365182.822400003671646, 254474.746300000697374 ], [ 365194.690600000321865, 254501.441199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84699996000001, "LATITUDE": 18.31936523, "OBJECTID_1": 40216, "PARCEL_NO_": "107803022200", "Tax_Legal_": "NAZARETH 5 9 RED HOOK QTR", "Name": "BARNETT, FRANK", "Address": "PO Box 1745", "City": "Goldenrod", "State": "Florida", "Zip": 32733, "Country": "United States", "Land_Value": 144200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.26523993500001, "SHAPE_Area": 2205.03873178 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367710.622800000011921, 254494.168600000441074 ], [ 367697.741599999368191, 254491.741099998354912 ], [ 367688.908100001513958, 254487.446899998933077 ], [ 367665.273299999535084, 254516.806600000709295 ], [ 367689.101300001144409, 254559.431400001049042 ], [ 367715.111900001764297, 254535.157499998807907 ], [ 367710.622800000011921, 254494.168600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85102566, "LATITUDE": 18.31933609, "OBJECTID_1": 39909, "PARCEL_NO_": "107704021300", "Tax_Legal_": "2Y-13 NAZARETH No.1 RED HOOK QTR", "Name": "NEW WITTY WAY LLC", "Address": "9053 Esate Thmas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 144200, "Improved_V": 534300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.035576195, "SHAPE_Area": 2401.7953128099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367296.817299999296665, 254510.413499999791384 ], [ 367264.049800001084805, 254475.948100000619888 ], [ 367235.510600000619888, 254513.078099999576807 ], [ 367241.896300002932549, 254520.729699999094009 ], [ 367277.885499998927116, 254555.6435999982059 ], [ 367282.044699996709824, 254540.690000001341105 ], [ 367289.476000003516674, 254520.27479999884963 ], [ 367296.817299999296665, 254510.413499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84806331, "LATITUDE": 18.3194532, "OBJECTID_1": 40179, "PARCEL_NO_": "107803012200", "Tax_Legal_": "NAZARETH ESTATE 9-54 RED HOOK QUARTER", "Name": "LETTSOME, JULIAN", "Address": "PO Box 11264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.25397927, "SHAPE_Area": 1863.9398333199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367579.863499999046326, 254509.141499999910593 ], [ 367562.246899999678135, 254494.642900001257658 ], [ 367557.02250000089407, 254539.985300000756979 ], [ 367582.67339999973774, 254557.927099999040365 ], [ 367615.13629999756813, 254533.494800001382828 ], [ 367579.863499999046326, 254509.141499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803011600", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".47", "LONGITUDE": -64.84933877, "LATITUDE": 18.3194111, "OBJECTID_1": 40173, "PARCEL_NO_": "107803011600", "Tax_Legal_": "NAZARETH ESTATE 9-4 1 RED HOOK QTR", "Name": "JIMEZ PAUL EMANUEL ASHBY SR IRREVOCABLE TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 150600, "Improved_V": 452600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.865615206, "SHAPE_Area": 2008.9589705000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367475.694600000977516, 254526.442899998277426 ], [ 367454.219099998474121, 254491.647799998521805 ], [ 367449.336199998855591, 254496.885200001299381 ], [ 367437.988499999046326, 254503.758400000631809 ], [ 367413.644500002264977, 254521.713199999183416 ], [ 367439.1587999984622, 254555.697000000625849 ], [ 367470.010799996554852, 254531.040500000119209 ], [ 367475.694600000977516, 254526.442899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603065100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87579477, "LATITUDE": 18.3195418, "OBJECTID_1": 38828, "PARCEL_NO_": "107603065100", "Tax_Legal_": "8B ESTATE NADIR No.2 RED HOOK QTR.", "Name": "ELLA MAY STOUT LIV TR", "Address": "Nadir Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41900, "Improved_V": 159000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.61551013299999, "SHAPE_Area": 797.48157237700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364668.765799999237061, 254504.258900001645088 ], [ 364618.308300003409386, 254505.65819999948144 ], [ 364618.072899997234344, 254508.965300001204014 ], [ 364637.339800000190735, 254519.044399999082088 ], [ 364650.185099996626377, 254525.693399999290705 ], [ 364663.831299997866154, 254532.982299998402596 ], [ 364668.765799999237061, 254504.258900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603029900", "MAP": "F9-160-T57", "PARCEL_NAM": "3-7", "ACRE": ".24", "LONGITUDE": -64.88055865, "LATITUDE": 18.31954061, "OBJECTID_1": 38622, "PARCEL_NO_": "107603029900", "Tax_Legal_": "3-7,92,99 & 101 BOVONI NO. 1&2 FRENCHMANS BAY QUARTER", "Name": "A J PROPERTIES LLC", "Address": "PO Box 8355", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 222800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.413656546, "SHAPE_Area": 762.52840290899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364162.545900002121925, 254500.592999998480082 ], [ 364156.10980000346899, 254498.851500000804663 ], [ 364138.433799996972084, 254491.318599998950958 ], [ 364127.7162000015378, 254518.884100001305342 ], [ 364132.537900000810623, 254520.823399998247623 ], [ 364151.824600003659725, 254528.580600000917912 ], [ 364162.545900002121925, 254500.592999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85020995000001, "LATITUDE": 18.31934949, "OBJECTID_1": 39911, "PARCEL_NO_": "107704021500", "Tax_Legal_": "2Y-16 NAZARETH RED HOOK QTR.", "Name": "JIMEZ PAUL EMANUEL ASHBY SR IRREVOCABLE TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 163400, "Improved_V": 1524500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.89341992000001, "SHAPE_Area": 1850.0657042299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367384.502199999988079, 254534.984700001776218 ], [ 367342.229699999094009, 254480.387699998915195 ], [ 367321.105599999427795, 254499.002099998295307 ], [ 367367.416799999773502, 254552.787799999117851 ], [ 367377.985100001096725, 254542.741799999028444 ], [ 367384.502199999988079, 254534.984700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86077047000001, "LATITUDE": 18.31953721, "OBJECTID_1": 39708, "PARCEL_NO_": "107703024700", "Tax_Legal_": "NAZARETH ESTATE 2W-34 RED HOOK QTR", "Name": "RYAN, IRVIN L", "Address": "PO Box 7973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.356037586, "SHAPE_Area": 640.57510868199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366251.530599996447563, 254537.744199998676777 ], [ 366246.906800001859665, 254512.586199998855591 ], [ 366239.642800003290176, 254513.371100001037121 ], [ 366225.07880000025034, 254519.162599999457598 ], [ 366218.606700003147125, 254521.642700001597404 ], [ 366231.326099999248981, 254543.067299999296665 ], [ 366238.606299996376038, 254540.382599998265505 ], [ 366251.530599996447563, 254537.744199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86214831, "LATITUDE": 18.31955581, "OBJECTID_1": 39628, "PARCEL_NO_": "107703013400", "Tax_Legal_": "NAZARETH ESTATE 2W-14 1 RED HOOK QTR", "Name": "WYATT, MARY and STANLEY", "Address": "PO Box 11161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 82800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.740252065899995, "SHAPE_Area": 608.66284617999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366103.939499996602535, 254540.758099999278784 ], [ 366102.542700000107288, 254515.415399998426437 ], [ 366078.346100002527237, 254516.061799999326468 ], [ 366079.746500000357628, 254540.982299998402596 ], [ 366103.939499996602535, 254540.758099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603013300", "MAP": "F9-100-T57", "PARCEL_NAM": "3-15", "ACRE": "0.22", "LONGITUDE": -64.88188273, "LATITUDE": 18.31946317, "OBJECTID_1": 38555, "PARCEL_NO_": "107603013300", "Tax_Legal_": "3-15 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "NORTH CARIB CONFER OF SEVENTH DAY ADVENTISTS", "Address": "P.O. BOX 580, CHRISTIANSTED", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 28500, "Improved_V": 116200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.066014661, "SHAPE_Area": 895.11940468800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364023.156300000846386, 254487.419799998402596 ], [ 363999.843400001525879, 254478.996300000697374 ], [ 363987.459200002253056, 254512.881000000983477 ], [ 364009.960400000214577, 254521.931099999696016 ], [ 364023.156300000846386, 254487.419799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704017300", "MAP": null, "PARCEL_NAM": "2G-C", "ACRE": null, "LONGITUDE": -64.85591336, "LATITUDE": 18.31955817, "OBJECTID_1": 39882, "PARCEL_NO_": "107704017300", "Tax_Legal_": "2G C NAZARETH RED HOOK QTR", "Name": "DELUGO, ROBERT C. & JOAN E.", "Address": "PO Box 10035", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.49447188000001, "SHAPE_Area": 409.26351876699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366759.683700002729893, 254521.215999998152256 ], [ 366754.870999999344349, 254518.2212999984622 ], [ 366732.073100000619888, 254543.999200001358986 ], [ 366760.30120000243187, 254543.385899998247623 ], [ 366759.683700002729893, 254521.215999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107603042300", "MAP": null, "PARCEL_NAM": "25E-1", "ACRE": "0.16", "LONGITUDE": -64.87770747, "LATITUDE": 18.31939252, "OBJECTID_1": 38734, "PARCEL_NO_": "107603042300", "Tax_Legal_": "25E-1 NADIR RED HOOK QTR", "Name": "ROLLINS, SAMUEL & FRANCINA", "Address": "25E-1 NADIR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20700, "Improved_V": 95400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.292804812, "SHAPE_Area": 564.59188075300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364460.035800002515316, 254496.509700000286102 ], [ 364459.38740000128746, 254481.091600000858307 ], [ 364452.197300001978874, 254481.221000000834465 ], [ 364440.097199998795986, 254481.755199998617172 ], [ 364440.003700003027916, 254492.731300000101328 ], [ 364439.265000000596046, 254498.103199999779463 ], [ 364431.883100003004074, 254505.643800001591444 ], [ 364434.899300001561642, 254513.581300001591444 ], [ 364431.089299999177456, 254520.2489 ], [ 364460.035800002515316, 254496.509700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86178024, "LATITUDE": 18.31954241, "OBJECTID_1": 39671, "PARCEL_NO_": "107703020700", "Tax_Legal_": "NAZARETH ESTATE 2W-22 1 RED HOOK", "Name": "DENNIS C LEONARD TRUST", "Address": "PO Box 11249", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.013098349, "SHAPE_Area": 645.34062960599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366112.187799997627735, 254519.083000000566244 ], [ 366112.832299999892712, 254538.08669999986887 ], [ 366125.774700000882149, 254533.337400000542402 ], [ 366128.960400000214577, 254538.007599998265505 ], [ 366145.090199999511242, 254537.717399999499321 ], [ 366145.945100001990795, 254532.024900000542402 ], [ 366146.886200003325939, 254516.200599998235703 ], [ 366112.187799997627735, 254519.083000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86116657, "LATITUDE": 18.3194621, "OBJECTID_1": 39565, "PARCEL_NO_": "107702031400", "Tax_Legal_": "M-2 & M-1-1 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "LAURENT, CLAUDETTE & DANIX D", "Address": "PO Box 10724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35700, "Improved_V": 250200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.3462139, "SHAPE_Area": 745.93329643699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366216.98870000243187, 254522.262699998915195 ], [ 366193.009700000286102, 254497.368500001728535 ], [ 366188.933200001716614, 254502.612500000745058 ], [ 366184.822499997913837, 254511.866999998688698 ], [ 366180.67230000346899, 254525.7652000002563 ], [ 366178.955300003290176, 254537.994600001722574 ], [ 366192.712999999523163, 254532.19649999961257 ], [ 366216.98870000243187, 254522.262699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703024900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86053543, "LATITUDE": 18.31949995, "OBJECTID_1": 39709, "PARCEL_NO_": "107703024900", "Tax_Legal_": "NAZARETH ESTATE 2W-35 RED HOOK QTR", "Name": "SMITH WILLIAMS LIVING TRUST", "Address": "PO BOX 6285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42900, "Improved_V": 213000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.973661717, "SHAPE_Area": 645.68240624800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366274.118199996650219, 254536.662500001490116 ], [ 366274.3412000015378, 254510.488699998706579 ], [ 366263.857299998402596, 254510.614000000059605 ], [ 366246.906800001859665, 254512.586199998855591 ], [ 366251.530599996447563, 254537.744199998676777 ], [ 366263.637900002300739, 254536.365600001066923 ], [ 366274.118199996650219, 254536.662500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86030373, "LATITUDE": 18.31949527, "OBJECTID_1": 39718, "PARCEL_NO_": "107703025800", "Tax_Legal_": "NAZARETH ESTATE 2W-36 RED HOOK QTR", "Name": "ODETTE CORP", "Address": "PO Box 1176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.47166197599999, "SHAPE_Area": 626.26158007100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366298.404500000178814, 254535.514699999243021 ], [ 366297.971900001168251, 254509.239199999719858 ], [ 366287.244000002741814, 254510.383200000971556 ], [ 366274.3412000015378, 254510.488699998706579 ], [ 366274.118199996650219, 254536.662500001490116 ], [ 366288.635399997234344, 254536.359099999070168 ], [ 366298.404500000178814, 254535.514699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604043700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86935076, "LATITUDE": 18.31942895, "OBJECTID_1": 39031, "PARCEL_NO_": "107604043700", "Tax_Legal_": "74A REM. ESTATE FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "SETORIE, LARRY & KATHERINA", "Address": "PO Box 307325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 63100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.391876247, "SHAPE_Area": 1181.7345277300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365355.884700000286102, 254510.7820999994874 ], [ 365351.129600003361702, 254501.032800000160933 ], [ 365343.15820000320673, 254490.201799999922514 ], [ 365321.292400002479553, 254501.210799999535084 ], [ 365301.20830000191927, 254492.391600001603365 ], [ 365298.737199999392033, 254498.493099998682737 ], [ 365296.555699996650219, 254504.402899999171495 ], [ 365342.834499999880791, 254528.195999998599291 ], [ 365355.884700000286102, 254510.7820999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86150296, "LATITUDE": 18.31946689, "OBJECTID_1": 39681, "PARCEL_NO_": "107703022000", "Tax_Legal_": "NAZARETH 2W-27 RED HOOK QTR", "Name": "CORRIOLAN, LOCHARD", "Address": "6517 Estate Nazareth", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.607797985, "SHAPE_Area": 681.42700623500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366175.958499997854233, 254511.161200001835823 ], [ 366151.036499999463558, 254502.302299998700619 ], [ 366147.741099998354912, 254510.508000001311302 ], [ 366146.886200003325939, 254516.200599998235703 ], [ 366145.945100001990795, 254532.024900000542402 ], [ 366170.129100002348423, 254532.856100000441074 ], [ 366170.978500001132488, 254527.796799998730421 ], [ 366172.648699998855591, 254521.055500000715256 ], [ 366175.958499997854233, 254511.161200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84840376, "LATITUDE": 18.31925356, "OBJECTID_1": 40177, "PARCEL_NO_": "107803012000", "Tax_Legal_": "NAZARETH ESTATE 9-51 RED HOOK QTR.", "Name": "JOHN LEWIS, AUGUSTIES & ATHENI", "Address": "PO Box 11951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 110000, "Improved_V": 267800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.88930003499999, "SHAPE_Area": 1924.7901279600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367562.246899999678135, 254494.642900001257658 ], [ 367567.289800003170967, 254470.619500000029802 ], [ 367517.055699996650219, 254498.706000000238419 ], [ 367537.642200000584126, 254543.204199999570847 ], [ 367539.292599998414516, 254538.784699998795986 ], [ 367542.541199997067451, 254536.067099999636412 ], [ 367544.967299997806549, 254535.242600001394749 ], [ 367549.803400002419949, 254535.493200000375509 ], [ 367552.21339999884367, 254536.568399999290705 ], [ 367553.80799999833107, 254538.692400000989437 ], [ 367557.02250000089407, 254539.985300000756979 ], [ 367562.246899999678135, 254494.642900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85990102, "LATITUDE": 18.31945747, "OBJECTID_1": 39722, "PARCEL_NO_": "107703026200", "Tax_Legal_": "NAZARETH ESTATE 2W-38 1 RED HOOK", "Name": "ODETTE CORP", "Address": "PO Box 1176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.324611511900002, "SHAPE_Area": 585.08131314100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366341.088899999856949, 254531.722199998795986 ], [ 366338.093800000846386, 254504.677700001746416 ], [ 366323.564000003039837, 254506.458599999547005 ], [ 366320.335100002586842, 254506.854400001466274 ], [ 366316.989100001752377, 254507.211199998855591 ], [ 366318.923100002110004, 254533.741300001740456 ], [ 366326.562700003385544, 254533.081000000238419 ], [ 366341.088899999856949, 254531.722199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603013200", "MAP": null, "PARCEL_NAM": "3-16", "ACRE": "0.22", "LONGITUDE": -64.88215694, "LATITUDE": 18.31937957, "OBJECTID_1": 38554, "PARCEL_NO_": "107603013200", "Tax_Legal_": "3-16 BOVONI FRENCHMANS BAY QTR", "Name": "FAHIE, ALFRED & L", "Address": "7473 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 216200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.642677216, "SHAPE_Area": 919.20670838000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363994.217200003564358, 254476.839299999177456 ], [ 363972.515100002288818, 254468.6402000002563 ], [ 363957.697499997913837, 254504.19370000064373 ], [ 363981.010499998927116, 254512.617199998348951 ], [ 363994.217200003564358, 254476.839299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703026400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85968247, "LATITUDE": 18.31940877, "OBJECTID_1": 39725, "PARCEL_NO_": "107703026400", "Tax_Legal_": "NAZARETH ESTATE 2W-39 RED HOOK QTR", "Name": "JULIE F HEFFLIN REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21100, "Improved_V": 172500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.27273584700001, "SHAPE_Area": 621.937482004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366360.503300003707409, 254524.492800001055002 ], [ 366370.380500003695488, 254500.931200001388788 ], [ 366338.093800000846386, 254504.677700001746416 ], [ 366341.088899999856949, 254531.722199998795986 ], [ 366348.354699999094009, 254530.726199999451637 ], [ 366349.997900001704693, 254527.151000000536442 ], [ 366354.056400001049042, 254524.017900001257658 ], [ 366358.091600000858307, 254523.628699999302626 ], [ 366360.503300003707409, 254524.492800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703026500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85939846, "LATITUDE": 18.31941019, "OBJECTID_1": 39726, "PARCEL_NO_": "107703026500", "Tax_Legal_": "NAZARETH ESTATE 2W-40 1 RED HOOK QTR", "Name": "PENN, CLYDE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41800, "Improved_V": 111300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.906825625, "SHAPE_Area": 982.17883943799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366402.440499998629093, 254523.780600000172853 ], [ 366397.015699997544289, 254497.982799999415874 ], [ 366370.380500003695488, 254500.931200001388788 ], [ 366360.503300003707409, 254524.492800001055002 ], [ 366363.712399996817112, 254526.4189000017941 ], [ 366365.301600001752377, 254529.176100000739098 ], [ 366365.281800001859665, 254531.497999999672174 ], [ 366402.440499998629093, 254523.780600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84611182, "LATITUDE": 18.31927852, "OBJECTID_1": 40210, "PARCEL_NO_": "107803021600", "Tax_Legal_": "EST NAZARETH 5-22 RED HOOK QTR", "Name": "CEBALO, TONY & JANICE", "Address": "88 Inverness Dr", "City": "BLUFFTON", "State": "South Carolina", "Zip": 29910, "Country": "United States", "Land_Value": 110000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.03389148100001, "SHAPE_Area": 2310.4886206900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367802.582000002264977, 254490.277100000530481 ], [ 367797.879000000655651, 254474.406599998474121 ], [ 367758.961999997496605, 254499.208299998193979 ], [ 367763.702799998223782, 254510.646099999547005 ], [ 367772.304300002753735, 254542.169399999082088 ], [ 367773.343599997460842, 254545.379700001329184 ], [ 367812.243100002408028, 254533.410700000822544 ], [ 367810.003799997270107, 254523.413100000470877 ], [ 367802.582000002264977, 254490.277100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603014300", "MAP": "F9-98-T57", "PARCEL_NAM": "3-5", "ACRE": ".22", "LONGITUDE": -64.88106879, "LATITUDE": 18.31936078, "OBJECTID_1": 38563, "PARCEL_NO_": "107603014300", "Tax_Legal_": "3-5 BOVONI No.1&2 FRENCHMAN'S BAY QTR", "Name": "RODRIQUEZ SALDANA, ALTAGRACIA J. A.", "Address": "7455 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 177900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.73637542, "SHAPE_Area": 864.14402448400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364097.139300003647804, 254511.245600000023842 ], [ 364106.256800003349781, 254482.189300000667572 ], [ 364106.296400003135204, 254477.5456000007689 ], [ 364104.700000002980232, 254475.632699999958277 ], [ 364087.031199999153614, 254467.255399998277426 ], [ 364082.91330000013113, 254477.354200001806021 ], [ 364074.634400002658367, 254502.61769999936223 ], [ 364097.139300003647804, 254511.245600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604044300", "MAP": "G9-1003-T65", "PARCEL_NAM": "74D", "ACRE": ".258", "LONGITUDE": -64.8698381, "LATITUDE": 18.31935132, "OBJECTID_1": 39037, "PARCEL_NO_": "107604044300", "Tax_Legal_": "74D FRYDENHOJ RED HOOK", "Name": "FRETT, ALVIN", "Address": "PO Box 1007", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041007, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.26822941500001, "SHAPE_Area": 997.57296044400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365301.20830000191927, 254492.391600001603365 ], [ 365280.3125, 254484.199000000953674 ], [ 365264.195299997925758, 254483.011599998921156 ], [ 365255.120800003409386, 254507.002000000327826 ], [ 365286.857600003480911, 254512.818599998950958 ], [ 365290.485299997031689, 254520.590399999171495 ], [ 365292.133900001645088, 254516.381999999284744 ], [ 365298.737199999392033, 254498.493099998682737 ], [ 365301.20830000191927, 254492.391600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107603041700", "MAP": "F9-2760-T71", "PARCEL_NAM": "25B-1", "ACRE": null, "LONGITUDE": -64.87899262000001, "LATITUDE": 18.31934306, "OBJECTID_1": 38728, "PARCEL_NO_": "107603041700", "Tax_Legal_": "25B-1 NADIR EAST END QTR", "Name": "VIGL OPERATIONS LLC", "Address": "1044 Queen Cross St", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 16900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.287587363, "SHAPE_Area": 911.14930969099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364341.837700001895428, 254502.614900000393391 ], [ 364300.684199996292591, 254471.326099999248981 ], [ 364282.916599996387959, 254474.558200001716614 ], [ 364284.450099997222424, 254483.858800001442432 ], [ 364332.347800001502037, 254510.463100001215935 ], [ 364341.837700001895428, 254502.614900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604062700", "MAP": "F9-183-T57", "PARCEL_NAM": "66", "ACRE": ".02", "LONGITUDE": -64.86894197, "LATITUDE": 18.31938658, "OBJECTID_1": 39084, "PARCEL_NO_": "107604062700", "Tax_Legal_": "66 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "GEORGE, ALBERT", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4200, "Improved_V": 33600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.009074618200003, "SHAPE_Area": 237.939612329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365379.388300001621246, 254496.8310999982059 ], [ 365379.433499999344349, 254491.52309999987483 ], [ 365373.212399996817112, 254495.018899999558926 ], [ 365363.342000000178814, 254500.56529999896884 ], [ 365367.498099997639656, 254508.593899998813868 ], [ 365370.530000001192093, 254514.450899999588728 ], [ 365371.852300003170967, 254516.622099999338388 ], [ 365372.302799999713898, 254517.361900001764297 ], [ 365382.222099997103214, 254500.503100000321865 ], [ 365379.388300001621246, 254496.8310999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86256989, "LATITUDE": 18.31931074, "OBJECTID_1": 39656, "PARCEL_NO_": "107703016700", "Tax_Legal_": "FRYDENHOJ ESTATE 41-3-B RED HOOK QUARTER", "Name": "HEDRINGTON, MAUREEN", "Address": "PO Box 8293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35600, "Improved_V": 95200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.706367984, "SHAPE_Area": 988.647918925 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366076.268799997866154, 254475.936999998986721 ], [ 366075.510999999940395, 254470.231300000101328 ], [ 366042.222099997103214, 254496.978799998760223 ], [ 366012.327399998903275, 254503.911299999803305 ], [ 366020.352700002491474, 254508.40989999845624 ], [ 366024.364500001072884, 254510.764800000935793 ], [ 366044.410800002515316, 254524.016699999570847 ], [ 366076.268799997866154, 254475.936999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84998588000001, "LATITUDE": 18.31916153, "OBJECTID_1": 39912, "PARCEL_NO_": "107704021600", "Tax_Legal_": "2Y-18 NAZARETH RED HOOK QTR.", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 191500, "Improved_V": 1386100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.798070615, "SHAPE_Area": 2516.51770326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367382.608300000429153, 254473.329900000244379 ], [ 367369.041199997067451, 254456.753499999642372 ], [ 367342.229699999094009, 254480.387699998915195 ], [ 367384.502199999988079, 254534.984700001776218 ], [ 367399.944399997591972, 254520.756700001657009 ], [ 367412.929899998009205, 254510.941599998623133 ], [ 367382.608300000429153, 254473.329900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603042100", "MAP": "G9-2439-T74", "PARCEL_NAM": "24D", "ACRE": "0.22", "LONGITUDE": -64.87629916, "LATITUDE": 18.31927885, "OBJECTID_1": 38732, "PARCEL_NO_": "107603042100", "Tax_Legal_": "24D NADIR RED HOOK QTR", "Name": "HARRIGAN, SWINSTON C., MORLINE A. & HULITA HARRIGAN-COX", "Address": "170 Parsons Ave", "City": "Freeport", "State": "New York", "Zip": 11520, "Country": "United States", "Land_Value": 25200, "Improved_V": 215800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.27127544300001, "SHAPE_Area": 959.77281491099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364607.907300002872944, 254471.729600001126528 ], [ 364607.590700000524521, 254467.115699999034405 ], [ 364573.319899998605251, 254468.235100001096725 ], [ 364574.844899997115135, 254471.88120000064373 ], [ 364593.937399998307228, 254502.434900000691414 ], [ 364597.103299997746944, 254509.426899999380112 ], [ 364601.115099996328354, 254511.781800001859665 ], [ 364605.963799998164177, 254510.554900001734495 ], [ 364608.510399997234344, 254495.588100001215935 ], [ 364607.907300002872944, 254471.729600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84660877, "LATITUDE": 18.3192741, "OBJECTID_1": 40215, "PARCEL_NO_": "107803022100", "Tax_Legal_": "5-10 NAZARETH RED HOOK QTR", "Name": "FRANK, GERALDINE & BARNETT, DR", "Address": "2409 Whitehall Cir", "City": "Winter Park", "State": "Florida", "Zip": 32792, "Country": "United States", "Land_Value": 108200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.485278854, "SHAPE_Area": 1880.11097778 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367758.67790000140667, 254532.558699999004602 ], [ 367757.925499998033047, 254526.219700001180172 ], [ 367749.309600003063679, 254496.385000001639128 ], [ 367747.803099997341633, 254483.918200001120567 ], [ 367747.020199999213219, 254481.167599998414516 ], [ 367745.421899996697903, 254479.465700000524521 ], [ 367743.814699999988079, 254478.819299999624491 ], [ 367739.777699999511242, 254479.41950000077486 ], [ 367733.258900001645088, 254487.387699998915195 ], [ 367725.15259999781847, 254492.387600000947714 ], [ 367721.108499996364117, 254493.83219999819994 ], [ 367710.622800000011921, 254494.168600000441074 ], [ 367715.111900001764297, 254535.157499998807907 ], [ 367758.67790000140667, 254532.558699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603013100", "MAP": "F9-94-T57", "PARCEL_NAM": "3-105", "ACRE": "0.22", "LONGITUDE": -64.88237605, "LATITUDE": 18.31929249, "OBJECTID_1": 38553, "PARCEL_NO_": "107603013100", "Tax_Legal_": "3-105 BOVONI NOS.1&2 FRENCHMAN'S BAY QTR", "Name": "SALINA, MANUEL G", "Address": "7468 Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.52643291699999, "SHAPE_Area": 945.50120041499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363935.052599996328354, 254493.720199998468161 ], [ 363958.49099999666214, 254502.289700001478195 ], [ 363972.515100002288818, 254468.6402000002563 ], [ 363945.976899996399879, 254460.19029999896884 ], [ 363935.052599996328354, 254493.720199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86101555, "LATITUDE": 18.3193007, "OBJECTID_1": 39691, "PARCEL_NO_": "107703023000", "Tax_Legal_": "NAZARETH ESTATE 2W-30 1 RED HOOK QTR", "Name": "BENJAMIN, F. A. G. & A. G", "Address": "PO Box 7906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.887642677, "SHAPE_Area": 663.07523934999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366222.909800000488758, 254498.65819999948144 ], [ 366217.321299999952316, 254483.213199999183416 ], [ 366208.426700003445148, 254486.09569999948144 ], [ 366201.137599997222424, 254489.835700001567602 ], [ 366193.009700000286102, 254497.368500001728535 ], [ 366216.98870000243187, 254522.262699998915195 ], [ 366218.606700003147125, 254521.642700001597404 ], [ 366220.64469999819994, 254520.861800000071526 ], [ 366222.065200001001358, 254506.937300000339746 ], [ 366221.959600001573563, 254506.682500001043081 ], [ 366222.221900001168251, 254505.401500001549721 ], [ 366222.909800000488758, 254498.65819999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703026600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85926056, "LATITUDE": 18.31865335, "OBJECTID_1": 39727, "PARCEL_NO_": "107703026600", "Tax_Legal_": "NAZARETH ESTATE 2UB RED HOOK QTR", "Name": "FOUR POINTS REALTY MANAGEMENT LLC", "Address": "5194 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 327700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 405.76675429099998, "SHAPE_Area": 3829.07151995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366407.369400002062321, 254418.485199999064207 ], [ 366403.404399998486042, 254410.642299998551607 ], [ 366397.828500002622604, 254402.575100000947714 ], [ 366397.095899999141693, 254393.914299998432398 ], [ 366399.604800000786781, 254383.380199998617172 ], [ 366402.079499997198582, 254376.856499999761581 ], [ 366405.360500000417233, 254370.339499998837709 ], [ 366407.802799999713898, 254367.615200001746416 ], [ 366411.090999998152256, 254360.253899998962879 ], [ 366404.712399996817112, 254351.75789999961853 ], [ 366399.867299996316433, 254352.562600001692772 ], [ 366394.997100003063679, 254356.322500001639128 ], [ 366394.973700001835823, 254359.066500000655651 ], [ 366388.514200001955032, 254360.069099999964237 ], [ 366384.568999998271465, 254349.90430000051856 ], [ 366380.539200000464916, 254349.660199999809265 ], [ 366382.094300001859665, 254356.427999999374151 ], [ 366382.049300000071526, 254361.704900000244379 ], [ 366377.958400003612041, 254368.637499999254942 ], [ 366375.532300002872944, 254369.462099999189377 ], [ 366374.700800001621246, 254372.410599999129772 ], [ 366372.265699997544289, 254374.290500000119209 ], [ 366376.245099999010563, 254380.444699998944998 ], [ 366374.605499997735023, 254383.597699999809265 ], [ 366376.984899997711182, 254388.261300001293421 ], [ 366376.160599999129772, 254390.365499999374151 ], [ 366390.824199996888638, 254467.534600000828505 ], [ 366397.015699997544289, 254497.982799999415874 ], [ 366402.440499998629093, 254523.780600000172853 ], [ 366410.608000002801418, 254511.603999998420477 ], [ 366413.862000003457069, 254508.253100000321865 ], [ 366417.139399997889996, 254502.15819999948144 ], [ 366420.486900001764297, 254487.831300001591444 ], [ 366418.890500001609325, 254485.918400000780821 ], [ 366418.100299999117851, 254484.012099999934435 ], [ 366417.311999998986721, 254481.89469999819994 ], [ 366414.185699999332428, 254470.258900001645088 ], [ 366413.413500003516674, 254466.241799999028444 ], [ 366411.924999997019768, 254451.664200000464916 ], [ 366412.05799999833107, 254436.044399999082088 ], [ 366410.515500001609325, 254427.799100000411272 ], [ 366407.369400002062321, 254418.485199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84773935, "LATITUDE": 18.31925388, "OBJECTID_1": 40180, "PARCEL_NO_": "107803012300", "Tax_Legal_": "9-55 ESTATE NAZARETH RED HOOK QTR", "Name": "BENJAMIN, JOSEPH & SHIRLEY J", "Address": "PO Box 306016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 126900, "Improved_V": 895900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.62260028099999, "SHAPE_Area": 1807.85810541 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367648.371299996972084, 254513.079700000584126 ], [ 367628.384300000965595, 254492.862199999392033 ], [ 367618.015600003302097, 254479.478399999439716 ], [ 367579.863499999046326, 254509.141499999910593 ], [ 367615.13629999756813, 254533.494800001382828 ], [ 367622.441699996590614, 254527.855099998414516 ], [ 367648.371299996972084, 254513.079700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603014200", "MAP": "F9-91-T57", "PARCEL_NAM": "3-4", "ACRE": "0.24", "LONGITUDE": -64.88130338000001, "LATITUDE": 18.31936526, "OBJECTID_1": 38562, "PARCEL_NO_": "107603014200", "Tax_Legal_": "3-4 BOVONI FRENCHMAN BAY QTR", "Name": "SMITH, JANET D. & WILFRED W", "Address": "2816 Dupont Ave", "City": "Jacksonville", "State": "Florida", "Zip": 32217, "Country": "United States", "Land_Value": 31100, "Improved_V": 176000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.107585038099998, "SHAPE_Area": 412.79474399200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364080.128300003707409, 254485.852699998766184 ], [ 364059.36879999935627, 254477.334100000560284 ], [ 364052.133199997246265, 254493.567600000649691 ], [ 364074.634400002658367, 254502.61769999936223 ], [ 364080.128300003707409, 254485.852699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107603041600", "MAP": "G9-1463-T70", "PARCEL_NAM": "25C", "ACRE": "0.23", "LONGITUDE": -64.87881079, "LATITUDE": 18.31928836, "OBJECTID_1": 38727, "PARCEL_NO_": "107603041600", "Tax_Legal_": "25C REM NADIR NO. 2 RED HOOK QTR", "Name": "VIGL OPERATIONS, LLC", "Address": "1044 Queen Cross St", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.63042882400001, "SHAPE_Area": 788.07942598800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364357.256800003349781, 254497.114799998700619 ], [ 364324.913199998438358, 254466.880300000309944 ], [ 364300.684199996292591, 254471.326099999248981 ], [ 364341.837700001895428, 254502.614900000393391 ], [ 364346.237300001084805, 254498.976300001144409 ], [ 364348.618500001728535, 254500.722600001841784 ], [ 364354.492299996316433, 254498.182599999010563 ], [ 364357.256800003349781, 254497.114799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86179484, "LATITUDE": 18.31935629, "OBJECTID_1": 39672, "PARCEL_NO_": "107703020800", "Tax_Legal_": "NAZARETH ESTATE 2W-21 RED HOOK QTR", "Name": "DENNIS C LEONARD TRUST", "Address": "PO Box 11249", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26000, "Improved_V": 225500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.191105295, "SHAPE_Area": 787.80726577500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366151.036499999463558, 254502.302299998700619 ], [ 366116.462200000882149, 254490.620299998670816 ], [ 366113.163199998438358, 254499.248199999332428 ], [ 366111.48759999871254, 254506.622699998319149 ], [ 366112.187799997627735, 254519.083000000566244 ], [ 366146.886200003325939, 254516.200599998235703 ], [ 366147.741099998354912, 254510.508000001311302 ], [ 366151.036499999463558, 254502.302299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703027900", "MAP": "D9-2749-T84", "PARCEL_NAM": "2W-76-2", "ACRE": "2W-76-2", "LONGITUDE": -64.86058382, "LATITUDE": 18.31930744, "OBJECTID_1": 39733, "PARCEL_NO_": "107703027900", "Tax_Legal_": "NAZARETH ESTATE REM. 2W-30-1,2W-5-5-2,2W-76-1A&2 RED HOOK QUARTER", "Name": "BAILEY, KELVIN S", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.03759750200001, "SHAPE_Area": 1466.31513574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366320.335100002586842, 254506.854400001466274 ], [ 366317.989900000393391, 254498.180399999022484 ], [ 366284.070900000631809, 254504.235500000417233 ], [ 366280.051899999380112, 254502.725000001490116 ], [ 366263.977799996733665, 254496.471700001507998 ], [ 366227.00789999961853, 254482.02589999884367 ], [ 366224.587099999189377, 254482.217199999839067 ], [ 366222.909800000488758, 254498.65819999948144 ], [ 366223.629699997603893, 254498.525499999523163 ], [ 366225.195100001990795, 254498.236900001764297 ], [ 366224.452899999916553, 254512.697900000959635 ], [ 366224.101899996399879, 254519.537000000476837 ], [ 366225.07880000025034, 254519.162599999457598 ], [ 366239.642800003290176, 254513.371100001037121 ], [ 366246.906800001859665, 254512.586199998855591 ], [ 366263.857299998402596, 254510.614000000059605 ], [ 366274.3412000015378, 254510.488699998706579 ], [ 366287.244000002741814, 254510.383200000971556 ], [ 366297.971900001168251, 254509.239199999719858 ], [ 366316.989100001752377, 254507.211199998855591 ], [ 366320.335100002586842, 254506.854400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86215278, "LATITUDE": 18.31932831, "OBJECTID_1": 39629, "PARCEL_NO_": "107703013500", "Tax_Legal_": "NAZARETH ESTATE 2W-15 No.1 RED HOOK QTR.", "Name": "FRANCIS, CURTIS", "Address": "6705 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 135100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.56617166700001, "SHAPE_Area": 634.44791399099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366102.542700000107288, 254515.415399998426437 ], [ 366102.634400002658367, 254504.650400001555681 ], [ 366106.791799999773502, 254489.907900001853704 ], [ 366076.93129999935627, 254492.829900000244379 ], [ 366078.346100002527237, 254516.061799999326468 ], [ 366102.542700000107288, 254515.415399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107603041000", "MAP": "F9-2873-T71", "PARCEL_NAM": "25D", "ACRE": "0.13", "LONGITUDE": -64.87787937, "LATITUDE": 18.31937764, "OBJECTID_1": 38722, "PARCEL_NO_": "107603041000", "Tax_Legal_": "NADIR 25D RED HOOK QTR", "Name": "DONOVAN, J. , V. , T. , M. , C", "Address": "6605 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.357824237800003, "SHAPE_Area": 485.986892619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364440.003700003027916, 254492.731300000101328 ], [ 364440.097199998795986, 254481.755199998617172 ], [ 364436.061999998986721, 254482.144400000572205 ], [ 364425.563799999654293, 254483.958299998193979 ], [ 364414.912299998104572, 254486.11939999833703 ], [ 364419.685199998319149, 254500.625199999660254 ], [ 364423.429499998688698, 254512.004900000989437 ], [ 364429.621799997985363, 254507.345400001853704 ], [ 364431.883100003004074, 254505.643800001591444 ], [ 364439.265000000596046, 254498.103199999779463 ], [ 364440.003700003027916, 254492.731300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803011700", "MAP": "D9-338-T62", "PARCEL_NAM": null, "ACRE": ".47", "LONGITUDE": -64.84896115, "LATITUDE": 18.31913381, "OBJECTID_1": 40174, "PARCEL_NO_": "107803011700", "Tax_Legal_": "NAZARETH 9-1 RED HOOK QTR", "Name": "FIRSTBANK PUERTO RICO", "Address": "PO Box 2192", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 101800, "Improved_V": 346400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.307204235, "SHAPE_Area": 2188.8658118600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367517.055699996650219, 254498.706000000238419 ], [ 367494.809799998998642, 254459.682700000703335 ], [ 367472.90089999884367, 254475.757599998265505 ], [ 367454.219099998474121, 254491.647799998521805 ], [ 367475.694600000977516, 254526.442899998277426 ], [ 367517.055699996650219, 254498.706000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604060700", "MAP": "G9-245-T52", "PARCEL_NAM": "27", "ACRE": "0.88", "LONGITUDE": -64.8716769, "LATITUDE": 18.31936871, "OBJECTID_1": 39065, "PARCEL_NO_": "107604060700", "Tax_Legal_": "NADIR ESTATE 27 RED HOOK", "Name": "TROPICAL MARINE, INC.", "Address": "PO Box 10298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 360700, "Improved_V": 673700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.21457212600001, "SHAPE_Area": 4374.9080597299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365114.792099997401237, 254469.128899998962879 ], [ 365055.834700003266335, 254454.085400000214577 ], [ 365054.422200001776218, 254499.831700000911951 ], [ 365052.951800003647804, 254523.617300000041723 ], [ 365109.574500001966953, 254548.769499998539686 ], [ 365112.373499996960163, 254506.044799998402596 ], [ 365112.761399999260902, 254500.124899998307228 ], [ 365114.792099997401237, 254469.128899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107603041100", "MAP": "F9-2884-T71", "PARCEL_NAM": "25F", "ACRE": "0.37", "LONGITUDE": -64.87733421, "LATITUDE": 18.31935634, "OBJECTID_1": 38723, "PARCEL_NO_": "107603041100", "Tax_Legal_": "25F&25J NADIR NO.2 RED HOOK QTR", "Name": "LAKE (LIFE INTEREST), INVIS", "Address": "PO Box 502611", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 64800, "Improved_V": 331600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.84466579100001, "SHAPE_Area": 941.04052059900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364516.6266999989748, 254490.614199999719858 ], [ 364488.486699998378754, 254480.884700000286102 ], [ 364464.339000001549721, 254481.048300001770258 ], [ 364464.284000001847744, 254500.074999999254942 ], [ 364463.325599998235703, 254500.099399998784065 ], [ 364468.250799998641014, 254510.735700000077486 ], [ 364481.543099999427795, 254499.635499998927116 ], [ 364519.783699996769428, 254498.66160000115633 ], [ 364516.6266999989748, 254490.614199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107603041500", "MAP": "G9-1921-T71", "PARCEL_NAM": "25G", "ACRE": "0.10", "LONGITUDE": -64.87851669, "LATITUDE": 18.31921728, "OBJECTID_1": 38726, "PARCEL_NO_": "107603041500", "Tax_Legal_": "25G NADIR RED HOOK QTR", "Name": "ROSEMARIE RIVERA & LUZ M. WADE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 306400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.33595319299999, "SHAPE_Area": 1482.4432540600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364392.803300000727177, 254483.114700000733137 ], [ 364374.985500000417233, 254457.790899999439716 ], [ 364324.913199998438358, 254466.880300000309944 ], [ 364357.256800003349781, 254497.114799998700619 ], [ 364384.496100001037121, 254486.593800000846386 ], [ 364392.803300000727177, 254483.114700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603014100", "MAP": "F9-97-T57", "PARCEL_NAM": "3-3", "ACRE": "0.24", "LONGITUDE": -64.88153442, "LATITUDE": 18.31918845, "OBJECTID_1": 38561, "PARCEL_NO_": "107603014100", "Tax_Legal_": "3 3 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GARCIA, PABLO", "Address": "7106 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32600, "Improved_V": 147400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.30481244699999, "SHAPE_Area": 1097.83889909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364045.668300002813339, 254495.203400000929832 ], [ 364055.559900000691414, 254469.953099999576807 ], [ 364058.009400002658367, 254466.38459999859333 ], [ 364061.328100003302097, 254455.434900000691414 ], [ 364038.848499998450279, 254443.851799998432398 ], [ 364033.895499996840954, 254457.321299999952316 ], [ 364023.156300000846386, 254487.419799998402596 ], [ 364045.668300002813339, 254495.203400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87571405, "LATITUDE": 18.3193023, "OBJECTID_1": 38801, "PARCEL_NO_": "107603062000", "Tax_Legal_": "8C NADIR RED HOOK QTR", "Name": "BAPTIST, W & E", "Address": "BOX 3742", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74900, "Improved_V": 210200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.531237103, "SHAPE_Area": 2521.4074076100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364668.765799999237061, 254504.258900001645088 ], [ 364698.796999998390675, 254498.717099998146296 ], [ 364698.85869999974966, 254491.47239999845624 ], [ 364696.567500002682209, 254476.465999998152256 ], [ 364695.848499998450279, 254470.192299999296665 ], [ 364670.806500002741814, 254471.435300000011921 ], [ 364651.202600002288818, 254472.408399999141693 ], [ 364651.4391999989748, 254473.141399998217821 ], [ 364645.472900003194809, 254472.692800000309944 ], [ 364616.996200002729893, 254474.106300000101328 ], [ 364618.195100001990795, 254494.611900001764297 ], [ 364618.988899998366833, 254496.096099998801947 ], [ 364618.308300003409386, 254505.65819999948144 ], [ 364668.765799999237061, 254504.258900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86143046, "LATITUDE": 18.31924743, "OBJECTID_1": 39680, "PARCEL_NO_": "107703021900", "Tax_Legal_": "NAZARETH ESTATE 2W-28 RED HOOK QTR", "Name": "SMITH, GILBERT & ESTHER", "Address": "PO Box 8534", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 170700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.470040424, "SHAPE_Area": 644.57471053300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366184.167199999094009, 254494.129799999296665 ], [ 366161.757700003683567, 254474.314699999988079 ], [ 366159.265000000596046, 254482.949099998921156 ], [ 366151.036499999463558, 254502.302299998700619 ], [ 366175.958499997854233, 254511.161200001835823 ], [ 366179.268200002610683, 254501.2668999992311 ], [ 366184.167199999094009, 254494.129799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603063600", "MAP": null, "PARCEL_NAM": "9B REM", "ACRE": null, "LONGITUDE": -64.87484704000001, "LATITUDE": 18.31881183, "OBJECTID_1": 38817, "PARCEL_NO_": "107603063600", "Tax_Legal_": "9B ESTATE NADIR RED HOOK QTR.", "Name": "SABINO, TEREASA & MARK(TRUSTEE)", "Address": "PO Box 785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.94126010700001, "SHAPE_Area": 4473.380487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364782.378300003707409, 254437.060600001364946 ], [ 364789.832900002598763, 254413.901299998164177 ], [ 364752.144799999892712, 254389.105999998748302 ], [ 364747.288900002837181, 254391.177200000733137 ], [ 364739.985399998724461, 254396.605799999088049 ], [ 364731.839500002563, 254406.249499998986721 ], [ 364709.768799997866154, 254441.32149999961257 ], [ 364706.473399996757507, 254449.527100000530481 ], [ 364705.62389999628067, 254454.586399998515844 ], [ 364762.005599997937679, 254479.780999999493361 ], [ 364782.378300003707409, 254437.060600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84571702, "LATITUDE": 18.31914367, "OBJECTID_1": 40211, "PARCEL_NO_": "107803021700", "Tax_Legal_": "5-23 NAZARETH RED HOOK QTR", "Name": "SKAREDOFF, MICHAEL N.", "Address": "312 N Monroe St", "City": "Hinsdale", "State": "Illinois", "Zip": 60521, "Country": "United States", "Land_Value": 136100, "Improved_V": 6100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.24121907599999, "SHAPE_Area": 2891.8100119599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367839.085400000214577, 254464.822500001639128 ], [ 367828.741800002753735, 254448.483600001782179 ], [ 367802.582000002264977, 254490.277100000530481 ], [ 367810.003799997270107, 254523.413100000470877 ], [ 367812.243100002408028, 254533.410700000822544 ], [ 367851.401500001549721, 254531.293999999761581 ], [ 367850.73369999974966, 254520.385099999606609 ], [ 367847.879399999976158, 254473.760400000959635 ], [ 367839.085400000214577, 254464.822500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604043800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86957165, "LATITUDE": 18.31917475, "OBJECTID_1": 39032, "PARCEL_NO_": "107604043800", "Tax_Legal_": "55 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "GRAMMER, ALLEN", "Address": "6150 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63000, "Improved_V": 67300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.630246658, "SHAPE_Area": 1587.6940047099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365343.15820000320673, 254490.201799999922514 ], [ 365335.170500002801418, 254481.270500000566244 ], [ 365318.331500001251698, 254470.155799999833107 ], [ 365297.453699998557568, 254459.85249999910593 ], [ 365280.57150000333786, 254453.803700000047684 ], [ 365280.3125, 254484.199000000953674 ], [ 365301.20830000191927, 254492.391600001603365 ], [ 365321.292400002479553, 254501.210799999535084 ], [ 365343.15820000320673, 254490.201799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703028100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85960749, "LATITUDE": 18.31918865, "OBJECTID_1": 39735, "PARCEL_NO_": "107703028100", "Tax_Legal_": "NAZARETH ESTATE 2W-76-3 RED HOOK QTR.", "Name": "BELLOT, CUTHBERT D", "Address": "PO Box 502212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 66800, "Improved_V": 171500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.46096717099999, "SHAPE_Area": 1817.6451710900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366316.436599999666214, 254491.20160000026226 ], [ 366317.989900000393391, 254498.180399999022484 ], [ 366320.335100002586842, 254506.854400001466274 ], [ 366323.564000003039837, 254506.458599999547005 ], [ 366338.093800000846386, 254504.677700001746416 ], [ 366370.380500003695488, 254500.931200001388788 ], [ 366397.015699997544289, 254497.982799999415874 ], [ 366390.824199996888638, 254467.534600000828505 ], [ 366316.436599999666214, 254491.20160000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87423579, "LATITUDE": 18.31879885, "OBJECTID_1": 38802, "PARCEL_NO_": "107603062100", "Tax_Legal_": "9 EST NADIR RED HOOK QTR", "Name": "TERESA & MARK SABINO TRUSTEES", "Address": "PO Box 785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 196600, "Improved_V": 161900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.71035907599997, "SHAPE_Area": 3031.6469303099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364812.539800003170967, 254493.458299998193979 ], [ 364817.453199997544289, 254484.632599998265505 ], [ 364817.489200003445148, 254480.410999998450279 ], [ 364819.155699998140335, 254474.091899998486042 ], [ 364835.57150000333786, 254440.240200001746416 ], [ 364842.194600000977516, 254420.029399998486042 ], [ 364843.108800001442432, 254407.371300000697374 ], [ 364841.541199997067451, 254402.0810999982059 ], [ 364837.572499997913837, 254394.660300001502037 ], [ 364789.832900002598763, 254413.901299998164177 ], [ 364782.378300003707409, 254437.060600001364946 ], [ 364804.618699997663498, 254476.717099998146296 ], [ 364804.714000001549721, 254465.529899999499321 ], [ 364806.46509999781847, 254449.290100000798702 ], [ 364812.096699997782707, 254450.813799999654293 ], [ 364811.214900001883507, 254459.672499999403954 ], [ 364812.539800003170967, 254493.458299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86256363, "LATITUDE": 18.31912699, "OBJECTID_1": 39657, "PARCEL_NO_": "107703016800", "Tax_Legal_": "41-3-C FRYDENHOJ NO.3 RED HOOK QTR.", "Name": "GEORGE D. & JACKLIN I. ROGERS LIV TRST.", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98000, "Improved_V": 150900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.87479264699999, "SHAPE_Area": 1033.84076826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366075.572200000286102, 254463.05460000038147 ], [ 366048.191699996590614, 254458.819699998944998 ], [ 366048.173699997365475, 254460.930500000715256 ], [ 366046.483800001442432, 254469.993700001388788 ], [ 366043.208200000226498, 254475.877500001341105 ], [ 366041.577600002288818, 254477.975099999457598 ], [ 366039.137100003659725, 254480.488200001418591 ], [ 366036.700199998915195, 254482.579199999570847 ], [ 366010.739900000393391, 254500.942999999970198 ], [ 366012.327399998903275, 254503.911299999803305 ], [ 366042.222099997103214, 254496.978799998760223 ], [ 366075.510999999940395, 254470.231300000101328 ], [ 366075.572200000286102, 254463.05460000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603014000", "MAP": "D9-982-T71", "PARCEL_NAM": "3-2", "ACRE": "0.18", "LONGITUDE": -64.88177486, "LATITUDE": 18.31917109, "OBJECTID_1": 38560, "PARCEL_NO_": "107603014000", "Tax_Legal_": "BOVONI ESTATE 3-2 FRENCHMAN BAY QTR", "Name": "HUNT, C. , C. , J. , A. , W. & Y", "Address": "PO Box 304747", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21500, "Improved_V": 78000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.032368873, "SHAPE_Area": 799.29265248900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364033.895499996840954, 254457.321299999952316 ], [ 364010.586199998855591, 254448.475699998438358 ], [ 363999.843400001525879, 254478.996300000697374 ], [ 364023.156300000846386, 254487.419799998402596 ], [ 364033.895499996840954, 254457.321299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84726958, "LATITUDE": 18.31900765, "OBJECTID_1": 40217, "PARCEL_NO_": "107803022300", "Tax_Legal_": "5-6 NAZARETH NO.1 RED HOOK QTR", "Name": "TRUSTEES, SHERMAN LYONS FAMILY TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 122200, "Improved_V": 330500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.26839074399999, "SHAPE_Area": 2224.1830760399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367694.615299999713898, 254480.105399999767542 ], [ 367669.081200003623962, 254448.443399999290705 ], [ 367665.89190000295639, 254444.195500001311302 ], [ 367633.294200003147125, 254484.458599999547005 ], [ 367665.273299999535084, 254516.806600000709295 ], [ 367688.908100001513958, 254487.446899998933077 ], [ 367694.615299999713898, 254480.105399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803021800", "MAP": "F9-2055-T67", "PARCEL_NAM": "5-31", "ACRE": null, "LONGITUDE": -64.84544929, "LATITUDE": 18.31916159, "OBJECTID_1": 40212, "PARCEL_NO_": "107803021800", "Tax_Legal_": "5-31 NAZARETH 1 RED HOOK", "Name": "SKAREDOFF, MICHAEL N.", "Address": "312 N Monroe St", "City": "Hinsdale", "State": "Illinois", "Zip": 60521, "Country": "United States", "Land_Value": 14000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.89249190300001, "SHAPE_Area": 610.22092912599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367853.467799998819828, 254480.350000001490116 ], [ 367847.879399999976158, 254473.760400000959635 ], [ 367850.73369999974966, 254520.385099999606609 ], [ 367851.401500001549721, 254531.293999999761581 ], [ 367857.087999999523163, 254520.110500000417233 ], [ 367857.982299998402596, 254518.351799998432398 ], [ 367871.425700001418591, 254491.912999998778105 ], [ 367866.291500002145767, 254489.532000001519918 ], [ 367853.467799998819828, 254480.350000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8617043, "LATITUDE": 18.3191697, "OBJECTID_1": 39673, "PARCEL_NO_": "107703020900", "Tax_Legal_": "2W-20 NAZARETH RED HOOK QUARTER", "Name": "RITTER, ZANDRA A", "Address": "PO Box 7312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 243600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.711157911, "SHAPE_Area": 815.12049370700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366159.265000000596046, 254482.949099998921156 ], [ 366131.164599999785423, 254468.575800001621246 ], [ 366122.19990000128746, 254479.690400000661612 ], [ 366116.462200000882149, 254490.620299998670816 ], [ 366151.036499999463558, 254502.302299998700619 ], [ 366159.265000000596046, 254482.949099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86004928, "LATITUDE": 18.31885357, "OBJECTID_1": 39692, "PARCEL_NO_": "107703023100", "Tax_Legal_": "NAZARETH ESTATE 2W-31 1 RED HOOK QTR", "Name": "BENJAMIN, F. A. G. & A. G", "Address": "PO Box 7906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44600, "Improved_V": 162100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 452.00699949199998, "SHAPE_Area": 10437.3712051 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366250.061200000345707, 254426.27479999884963 ], [ 366236.091300003230572, 254456.980099998414516 ], [ 366227.058200001716614, 254476.115699999034405 ], [ 366247.163900002837181, 254482.401900000870228 ], [ 366259.208200000226498, 254488.411100000143051 ], [ 366263.977799996733665, 254496.471700001507998 ], [ 366280.051899999380112, 254502.725000001490116 ], [ 366316.436599999666214, 254491.20160000026226 ], [ 366390.824199996888638, 254467.534600000828505 ], [ 366376.160599999129772, 254390.365499999374151 ], [ 366364.841600000858307, 254393.861400000751019 ], [ 366359.975000001490116, 254397.199099998921156 ], [ 366355.898500002920628, 254402.442999999970198 ], [ 366343.704899996519089, 254413.953400000929832 ], [ 366336.417499996721745, 254417.482299998402596 ], [ 366325.910300001502037, 254420.351700000464916 ], [ 366310.574100002646446, 254422.125999998301268 ], [ 366300.898400001227856, 254422.046799998730421 ], [ 366293.650600001215935, 254420.932000000029802 ], [ 366283.967600002884865, 254421.69709999859333 ], [ 366280.751400001347065, 254420.615299999713898 ], [ 366279.153099998831749, 254418.913499999791384 ], [ 366275.922499999403954, 254419.520300000905991 ], [ 366273.483800001442432, 254421.822399999946356 ], [ 366272.655900001525879, 254424.348799999803305 ], [ 366266.173000000417233, 254428.095400001853704 ], [ 366257.30179999768734, 254428.233899999409914 ], [ 366250.061200000345707, 254426.27479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87042669, "LATITUDE": 18.31914595, "OBJECTID_1": 38976, "PARCEL_NO_": "107604033100", "Tax_Legal_": "EST.FRYDENHOJ 45 RED HOOK QTR", "Name": "BENJAMIN, CONCHITA, ACACIA & JOHN", "Address": "PO Box 8815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 142900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.78795456700001, "SHAPE_Area": 1212.7261073899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365228.118000000715256, 254458.440600000321865 ], [ 365224.939499996602535, 254452.926199998706579 ], [ 365207.954800002276897, 254458.908900000154972 ], [ 365194.990900002419949, 254466.190999999642372 ], [ 365202.820200003683567, 254493.697299998253584 ], [ 365238.321299999952316, 254491.243599999696016 ], [ 365230.481200002133846, 254465.003800000995398 ], [ 365228.118000000715256, 254458.440600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85074822, "LATITUDE": 18.31898116, "OBJECTID_1": 39910, "PARCEL_NO_": "107704021400", "Tax_Legal_": "2Y-15 NAZARETH NO. 1 RED HOOK QTR.", "Name": "BALLOWE, JR., STEVE EXCELL and KIMBERLY MURTHA", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 135600, "Improved_V": 457700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.806391787, "SHAPE_Area": 2407.6763179599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367331.772799998521805, 254477.346799999475479 ], [ 367292.85809999704361, 254438.63569999858737 ], [ 367286.8800999969244, 254446.370799999684095 ], [ 367268.124499998986721, 254470.915199998766184 ], [ 367264.049800001084805, 254475.948100000619888 ], [ 367296.817299999296665, 254510.413499999791384 ], [ 367306.586599998176098, 254499.516600001603365 ], [ 367322.827899999916553, 254486.139499999582767 ], [ 367331.772799998521805, 254477.346799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84960646, "LATITUDE": 18.31904217, "OBJECTID_1": 39916, "PARCEL_NO_": "107704022000", "Tax_Legal_": "NAZARETH ESTATE 9J-2 RED HOOK QTR", "Name": "FEDERMAN, ASHER J. & HENYA SHMOTKIN", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.071488829, "SHAPE_Area": 1713.65443043 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367421.717699997127056, 254455.387800000607967 ], [ 367387.167700000107288, 254478.985500000417233 ], [ 367412.929899998009205, 254510.941599998623133 ], [ 367428.350500002503395, 254499.246599998325109 ], [ 367443.753200002014637, 254489.662300001829863 ], [ 367447.817100003361702, 254485.895899999886751 ], [ 367421.717699997127056, 254455.387800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85882807, "LATITUDE": 18.31879656, "OBJECTID_1": 39728, "PARCEL_NO_": "107703026800", "Tax_Legal_": "NAZARETH ESTATE 2UC RED HOOK", "Name": "FOUR POINT REALTY MANAGEMENT L", "Address": "5194 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 215500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.25617171900001, "SHAPE_Area": 1735.4339998800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366442.972999997437, 254404.000100001692772 ], [ 366442.152300000190735, 254405.682100001722574 ], [ 366420.486900001764297, 254487.831300001591444 ], [ 366417.139399997889996, 254502.15819999948144 ], [ 366469.315200001001358, 254435.457499999552965 ], [ 366442.972999997437, 254404.000100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107603041400", "MAP": "C9-161-T73", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87813471, "LATITUDE": 18.31911921, "OBJECTID_1": 38725, "PARCEL_NO_": "107603041400", "Tax_Legal_": "25B NADIR RED HOOK QTR", "Name": "VIGL OPERATIONS LLC", "Address": "1044 Queen Cross St", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 42500, "Improved_V": 374500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.67867035, "SHAPE_Area": 1002.56011302 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364424.199000000953674, 254474.60530000180006 ], [ 364417.790200002491474, 254449.908599998801947 ], [ 364374.985500000417233, 254457.790899999439716 ], [ 364392.803300000727177, 254483.114700000733137 ], [ 364403.069899998605251, 254478.815000001341105 ], [ 364417.833700001239777, 254475.798799999058247 ], [ 364424.199000000953674, 254474.60530000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84799577, "LATITUDE": 18.31897558, "OBJECTID_1": 40178, "PARCEL_NO_": "107803012100", "Tax_Legal_": "NAZARETH 9-53 RED HOOK QTR.", "Name": "BENJAMIN, JOSEPH", "Address": "9-55 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.34524113800001, "SHAPE_Area": 2050.4917777199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367618.015600003302097, 254479.478399999439716 ], [ 367612.430699996650219, 254472.466600000858307 ], [ 367611.644199997186661, 254470.138199999928474 ], [ 367610.040600001811981, 254469.069600000977516 ], [ 367603.676399998366833, 254458.885000001639128 ], [ 367601.293399997055531, 254454.6435999982059 ], [ 367599.718500003218651, 254450.197799999266863 ], [ 367598.120300002396107, 254448.495900001376867 ], [ 367593.366899996995926, 254438.535599999129772 ], [ 367567.289800003170967, 254470.619500000029802 ], [ 367562.246899999678135, 254494.642900001257658 ], [ 367579.863499999046326, 254509.141499999910593 ], [ 367618.015600003302097, 254479.478399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604062500", "MAP": "F9-308-T58", "PARCEL_NAM": "78", "ACRE": ".0189", "LONGITUDE": -64.86905418000001, "LATITUDE": 18.31912329, "OBJECTID_1": 39082, "PARCEL_NO_": "107604062500", "Tax_Legal_": "78 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.391925940199997, "SHAPE_Area": 299.44468209199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365368.385799996554852, 254463.177200000733137 ], [ 365365.538999997079372, 254460.145899999886751 ], [ 365361.565499998629093, 254464.981699999421835 ], [ 365349.282999999821186, 254479.93019999936223 ], [ 365353.965599998831749, 254486.04619999974966 ], [ 365355.417000003159046, 254487.94200000166893 ], [ 365374.522200003266335, 254470.242400001734495 ], [ 365372.264600001275539, 254468.063999999314547 ], [ 365371.142599999904633, 254466.981199998408556 ], [ 365369.175899997353554, 254465.083500001579523 ], [ 365368.385799996554852, 254463.177200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86295464, "LATITUDE": 18.31924369, "OBJECTID_1": 39643, "PARCEL_NO_": "107703015400", "Tax_Legal_": "41-7&41 REMAINDER FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "No. 41 FRYDENHOJ LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021409, "Country": "United States", "Land_Value": 843000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 11.0262025155, "SHAPE_Area": 5.4467352739399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366006.79110000282526, 254491.200399998575449 ], [ 366004.359499998390675, 254492.658100001513958 ], [ 366007.563199996948242, 254495.217500001192093 ], [ 366006.79110000282526, 254491.200399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603014100", "MAP": "G9-1129-T68", "PARCEL_NAM": "3-1", "ACRE": "0.31", "LONGITUDE": -64.88201962, "LATITUDE": 18.3189965, "OBJECTID_1": 38561, "PARCEL_NO_": "107603014100", "Tax_Legal_": "3 3 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GARCIA, PABLO", "Address": "7106 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32600, "Improved_V": 147400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.20590462800001, "SHAPE_Area": 1190.7701845900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363989.072899997234344, 254418.113200001418591 ], [ 363972.515100002288818, 254468.6402000002563 ], [ 363994.217200003564358, 254476.839299999177456 ], [ 364005.786100000143051, 254444.003400001674891 ], [ 364006.719999998807907, 254429.023400001227856 ], [ 364004.326300002634525, 254426.048500001430511 ], [ 363989.072899997234344, 254418.113200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603014800", "MAP": "F9-1178-T63", "PARCEL_NAM": "REM 3-4A", "ACRE": "0.24", "LONGITUDE": -64.88123938, "LATITUDE": 18.31920513, "OBJECTID_1": 38565, "PARCEL_NO_": "107603014800", "Tax_Legal_": "3-4A EST BOVONI FRENCHMAN BAY QTR", "Name": "SMITH, JANET D.", "Address": "P O BOX 2231", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15600, "Improved_V": 20000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.878070299699999, "SHAPE_Area": 437.13410167500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364070.9679000005126, 254459.735700000077486 ], [ 364068.550800003111362, 254459.504799999296665 ], [ 364066.930900000035763, 254460.335900001227856 ], [ 364062.820299997925758, 254469.590399999171495 ], [ 364059.36879999935627, 254477.334100000560284 ], [ 364080.128300003707409, 254485.852699998766184 ], [ 364082.91330000013113, 254477.354200001806021 ], [ 364087.031199999153614, 254467.255399998277426 ], [ 364070.9679000005126, 254459.735700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86129491, "LATITUDE": 18.31907023, "OBJECTID_1": 39679, "PARCEL_NO_": "107703021800", "Tax_Legal_": "NAZARETH ESTATE 2W-29 RED HOOK QTR", "Name": "REGISTE, AMOS & MARIAN", "Address": "6514 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31200, "Improved_V": 279500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.408446833, "SHAPE_Area": 801.25193191899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366186.019000001251698, 254466.069499999284744 ], [ 366166.732199996709824, 254458.312300000339746 ], [ 366161.757700003683567, 254474.314699999988079 ], [ 366184.167199999094009, 254494.129799999296665 ], [ 366189.872599996626377, 254486.999299999326468 ], [ 366195.554499998688698, 254482.612799998372793 ], [ 366204.465300001204014, 254477.830600000917912 ], [ 366210.933799996972084, 254475.772599998861551 ], [ 366186.019000001251698, 254466.069499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86217602000001, "LATITUDE": 18.31909204, "OBJECTID_1": 39630, "PARCEL_NO_": "107703013600", "Tax_Legal_": "NAZARETH ESTATE 2W-16\nRED HOOK QTR", "Name": "Elza I Woods Fam Revo Trust &Kimika &Kianaya Woods", "Address": "P.O. BOX 1932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 153200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.800569419, "SHAPE_Area": 791.29505541399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366075.510999999940395, 254470.231300000101328 ], [ 366076.268799997866154, 254475.936999998986721 ], [ 366076.93129999935627, 254492.829900000244379 ], [ 366106.791799999773502, 254489.907900001853704 ], [ 366102.817800000309944, 254483.120400000363588 ], [ 366104.53830000013113, 254470.468800000846386 ], [ 366074.826999999582767, 254455.871300000697374 ], [ 366075.572200000286102, 254463.05460000038147 ], [ 366075.510999999940395, 254470.231300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803042800", "MAP": null, "PARCEL_NAM": "8-1-10", "ACRE": null, "LONGITUDE": -64.84384269, "LATITUDE": 18.31908679, "OBJECTID_1": 40523, "PARCEL_NO_": "107803042800", "Tax_Legal_": "ESTATE NAZARETH 8-1-10 & 8-1-11 COWPET BCH RESORT.", "Name": "WORLDMARK THE CLUB", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 949400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.53411880199999, "SHAPE_Area": 1396.9768808199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368060.531900003552437, 254500.620999999344349 ], [ 368055.796499997377396, 254488.549899999052286 ], [ 368040.564699999988079, 254478.081700000911951 ], [ 368027.683399997651577, 254475.654199998825788 ], [ 367988.809600003063679, 254495.389899998903275 ], [ 367996.836800001561642, 254499.677499998360872 ], [ 368007.246899999678135, 254508.206399999558926 ], [ 368060.531900003552437, 254500.620999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703017200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86283793, "LATITUDE": 18.31898522, "OBJECTID_1": 39661, "PARCEL_NO_": "107703017200", "Tax_Legal_": "FRYDENHOJ ESTATE 41-3-F RED HOOK QTR.", "Name": "FRETT, VOLETHA & SHORN ROBERTSON", "Address": "6259 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 941500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.10704937599999, "SHAPE_Area": 1156.13210207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366006.79110000282526, 254491.200399998575449 ], [ 366033.552199997007847, 254473.476399999111891 ], [ 366035.182800002396107, 254471.378899998962879 ], [ 366038.478200003504753, 254463.173200000077486 ], [ 366039.403200000524521, 254449.248599998652935 ], [ 366000.718199998140335, 254446.820999998599291 ], [ 366006.79110000282526, 254491.200399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86997485000001, "LATITUDE": 18.31906365, "OBJECTID_1": 38997, "PARCEL_NO_": "107604040100", "Tax_Legal_": "31 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "HERMAN, LOUELLA", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54800, "Improved_V": 95300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.38401999200001, "SHAPE_Area": 1033.2440107699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365264.195299997925758, 254483.011599998921156 ], [ 365280.3125, 254484.199000000953674 ], [ 365280.57150000333786, 254453.803700000047684 ], [ 365261.257700003683567, 254449.212600000202656 ], [ 365248.354900002479553, 254449.31810000166297 ], [ 365248.882500000298023, 254482.041900001466274 ], [ 365264.195299997925758, 254483.011599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107603041300", "MAP": "G9-1921-T71", "PARCEL_NAM": "25H", "ACRE": "0.41", "LONGITUDE": -64.87765606000001, "LATITUDE": 18.3190496, "OBJECTID_1": 38724, "PARCEL_NO_": "107603041300", "Tax_Legal_": "25H NADIR No.2 RED HOOK QTR", "Name": "FLEMING, ELVIN DON", "Address": "PO Box 1672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53200, "Improved_V": 60000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.979183199, "SHAPE_Area": 1731.0039568499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364485.245399996638298, 254471.210099998861551 ], [ 364476.748099997639656, 254438.99210000038147 ], [ 364417.790200002491474, 254449.908599998801947 ], [ 364424.199000000953674, 254474.60530000180006 ], [ 364427.993699997663498, 254473.893800001591444 ], [ 364451.012500002980232, 254472.30629999935627 ], [ 364485.245399996638298, 254471.210099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603041800", "MAP": "C9-86-T68", "PARCEL_NAM": "25A", "ACRE": "1.93", "LONGITUDE": -64.87820008, "LATITUDE": 18.3188719, "OBJECTID_1": 38729, "PARCEL_NO_": "107603041800", "Tax_Legal_": "25A NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 227200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 520.70584879, "SHAPE_Area": 5810.3656057099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364476.748099997639656, 254438.99210000038147 ], [ 364496.938199996948242, 254435.357700001448393 ], [ 364478.009300000965595, 254385.595800001174212 ], [ 364390.409699998795986, 254445.673700001090765 ], [ 364370.264499999582767, 254444.031199999153614 ], [ 364288.877300001680851, 254437.454500000923872 ], [ 364278.301700003445148, 254448.344799999147654 ], [ 364282.916599996387959, 254474.558200001716614 ], [ 364300.684199996292591, 254471.326099999248981 ], [ 364324.913199998438358, 254466.880300000309944 ], [ 364374.985500000417233, 254457.790899999439716 ], [ 364417.790200002491474, 254449.908599998801947 ], [ 364476.748099997639656, 254438.99210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604062300", "MAP": "F9-307-T58", "PARCEL_NAM": "77", "ACRE": ".02", "LONGITUDE": -64.86916932, "LATITUDE": 18.31900523, "OBJECTID_1": 39080, "PARCEL_NO_": "107604062300", "Tax_Legal_": "77 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.403180208400002, "SHAPE_Area": 226.093647586 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365353.198899999260902, 254447.432000000029802 ], [ 365352.323700003325939, 254446.963199999183416 ], [ 365339.335699997842312, 254469.745999999344349 ], [ 365342.256300002336502, 254471.700300000607967 ], [ 365344.881399996578693, 254474.6875 ], [ 365360.196199998259544, 254454.854299999773502 ], [ 365354.779200002551079, 254451.244600001722574 ], [ 365353.198899999260902, 254447.432000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87547533, "LATITUDE": 18.31906907, "OBJECTID_1": 38805, "PARCEL_NO_": "107603062400", "Tax_Legal_": "8D NADIR RED HOOK QTR", "Name": "TOBIAS, ELDRIDGE ST CLAIR", "Address": "BOX 2353", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 54000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.8529942527, "SHAPE_Area": 414.629758563 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364695.848499998450279, 254470.192299999296665 ], [ 364695.066299997270107, 254463.365899998694658 ], [ 364695.946400001645088, 254454.718299999833107 ], [ 364670.961499996483326, 254453.247299998998642 ], [ 364670.806500002741814, 254471.435300000011921 ], [ 364695.848499998450279, 254470.192299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84855708000001, "LATITUDE": 18.31890107, "OBJECTID_1": 40175, "PARCEL_NO_": "107803011800", "Tax_Legal_": "NAZARETH ESTATE 9-50 RED HOOK QTR.", "Name": "TRAN, FATAMA THI", "Address": "PO Box 681", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 137300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.543930948, "SHAPE_Area": 2204.4408245099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367567.289800003170967, 254470.619500000029802 ], [ 367530.467399999499321, 254438.865200001746416 ], [ 367526.405199997127056, 254442.4206000007689 ], [ 367513.4341000020504, 254450.546999998390675 ], [ 367494.809799998998642, 254459.682700000703335 ], [ 367517.055699996650219, 254498.706000000238419 ], [ 367567.289800003170967, 254470.619500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87569481, "LATITUDE": 18.31895022, "OBJECTID_1": 38804, "PARCEL_NO_": "107603062300", "Tax_Legal_": "8GB-1 NADIR No.2 RED HOOK QTR", "Name": "TURNBULL, EDITH", "Address": "8GA Estate Nadir", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.509380666, "SHAPE_Area": 1040.7333067699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364670.376299999654293, 254427.278000000864267 ], [ 364670.725100003182888, 254422.647900000214577 ], [ 364658.189400002360344, 254423.373199999332428 ], [ 364655.047399997711182, 254428.208000000566244 ], [ 364644.387299999594688, 254449.019000001251698 ], [ 364648.296599999070168, 254463.405299998819828 ], [ 364651.202600002288818, 254472.408399999141693 ], [ 364670.806500002741814, 254471.435300000011921 ], [ 364670.961499996483326, 254453.247299998998642 ], [ 364670.376299999654293, 254427.278000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603013800", "MAP": "D9-5654-T94", "PARCEL_NAM": "3-103 REM", "ACRE": "0.17", "LONGITUDE": -64.8822097, "LATITUDE": 18.31881098, "OBJECTID_1": 38558, "PARCEL_NO_": "107603013800", "Tax_Legal_": "BOVONI ESTATE 3-103 REM. No.1&2 FRENCHMAN BAY QTR.", "Name": "LIMA, DIEGO A", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20300, "Improved_V": 48600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.268843299, "SHAPE_Area": 891.87268839299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363953.216399997472763, 254437.814699999988079 ], [ 363979.261500000953674, 254448.053100001066923 ], [ 363989.072899997234344, 254418.113200001418591 ], [ 363969.795100003480911, 254409.300599999725819 ], [ 363966.573499999940395, 254408.852099999785423 ], [ 363963.339199997484684, 254409.881099998950958 ], [ 363961.712200000882149, 254411.556499999016523 ], [ 363953.216399997472763, 254437.814699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84625682, "LATITUDE": 18.31882051, "OBJECTID_1": 40214, "PARCEL_NO_": "107803022000", "Tax_Legal_": "EST NAZARETH 5-24 RED HOOK QTR", "Name": "WHITE, E. MARCUS & MARGOT H. ZIMMERMANN", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 155000, "Improved_V": 102400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.17257617600001, "SHAPE_Area": 2156.8685053899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367797.879000000655651, 254474.406599998474121 ], [ 367784.536700002849102, 254431.44539999961853 ], [ 367750.639200001955032, 254434.967700000852346 ], [ 367751.278300002217293, 254454.604600001126528 ], [ 367753.576800003647804, 254468.766699999570847 ], [ 367755.921999998390675, 254477.440699998289347 ], [ 367758.961999997496605, 254499.208299998193979 ], [ 367797.879000000655651, 254474.406599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85901654, "LATITUDE": 18.31872717, "OBJECTID_1": 39728, "PARCEL_NO_": "107703026800", "Tax_Legal_": "NAZARETH ESTATE 2UC RED HOOK", "Name": "FOUR POINT REALTY MANAGEMENT L", "Address": "5194 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 215500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.46912180300001, "SHAPE_Area": 1358.42449121 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366442.152300000190735, 254405.682100001722574 ], [ 366407.369400002062321, 254418.485199999064207 ], [ 366410.515500001609325, 254427.799100000411272 ], [ 366412.05799999833107, 254436.044399999082088 ], [ 366411.924999997019768, 254451.664200000464916 ], [ 366413.413500003516674, 254466.241799999028444 ], [ 366414.185699999332428, 254470.258900001645088 ], [ 366417.311999998986721, 254481.89469999819994 ], [ 366418.100299999117851, 254484.012099999934435 ], [ 366418.890500001609325, 254485.918400000780821 ], [ 366420.486900001764297, 254487.831300001591444 ], [ 366442.152300000190735, 254405.682100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87597001, "LATITUDE": 18.31907153, "OBJECTID_1": 38803, "PARCEL_NO_": "107603062200", "Tax_Legal_": "7G-3 ESTATE NADIR No.2 RED HOOK QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.384477248, "SHAPE_Area": 694.79165689399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364626.6503000035882, 254448.66270000115037 ], [ 364615.36370000243187, 254448.359299998730421 ], [ 364616.787500001490116, 254470.535700000822544 ], [ 364616.996200002729893, 254474.106300000101328 ], [ 364645.472900003194809, 254472.692800000309944 ], [ 364651.202600002288818, 254472.408399999141693 ], [ 364648.296599999070168, 254463.405299998819828 ], [ 364633.10080000013113, 254448.715500000864267 ], [ 364626.6503000035882, 254448.66270000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803042800", "MAP": null, "PARCEL_NAM": "8-1-11", "ACRE": null, "LONGITUDE": -64.84427717, "LATITUDE": 18.31868165, "OBJECTID_1": 40523, "PARCEL_NO_": "107803042800", "Tax_Legal_": "ESTATE NAZARETH 8-1-10 & 8-1-11 COWPET BCH RESORT.", "Name": "WORLDMARK THE CLUB", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 949400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 572.05292982900005, "SHAPE_Area": 14344.3967469 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367930.711199998855591, 254405.410700000822544 ], [ 367932.287900000810623, 254409.645500000566244 ], [ 367875.380300000309944, 254463.853000000119209 ], [ 367896.162799999117851, 254485.343499999493361 ], [ 367901.785400003194809, 254487.922699999064207 ], [ 367960.655199997127056, 254487.348999999463558 ], [ 367975.149099998176098, 254489.789700001478195 ], [ 367983.993299998342991, 254492.817400000989437 ], [ 367988.809600003063679, 254495.389899998903275 ], [ 368027.683399997651577, 254475.654199998825788 ], [ 368040.564699999988079, 254478.081700000911951 ], [ 368055.796499997377396, 254488.549899999052286 ], [ 368060.531900003552437, 254500.620999999344349 ], [ 368087.255300000309944, 254487.329700000584126 ], [ 368083.470100000500679, 254458.378899998962879 ], [ 368065.722199998795986, 254459.289099998772144 ], [ 368056.303599998354912, 254429.025699999183416 ], [ 368041.806100003421307, 254427.007199998944998 ], [ 368039.351199999451637, 254431.20890000090003 ], [ 368029.73480000346899, 254424.164200000464916 ], [ 368039.525700002908707, 254410.734299998730421 ], [ 368006.60530000180006, 254394.210700001567602 ], [ 367967.121200002729893, 254390.932199999690056 ], [ 367938.882299996912479, 254392.811999998986721 ], [ 367930.711199998855591, 254405.410700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86159255, "LATITUDE": 18.31898357, "OBJECTID_1": 39674, "PARCEL_NO_": "107703021000", "Tax_Legal_": "NAZARETH ESTATE 2W-19 1 RED HOOK", "Name": "COMBERBATCH, MONIQUE", "Address": "PO Box 7235", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31700, "Improved_V": 141700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.024749176, "SHAPE_Area": 664.82876682899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366166.732199996709824, 254458.312300000339746 ], [ 366144.230999998748302, 254449.262200001627207 ], [ 366143.401299998164177, 254451.999600000679493 ], [ 366131.164599999785423, 254468.575800001621246 ], [ 366159.265000000596046, 254482.949099998921156 ], [ 366161.757700003683567, 254474.314699999988079 ], [ 366166.732199996709824, 254458.312300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604062200", "MAP": "F9-309-T58", "PARCEL_NAM": "79", "ACRE": ".023", "LONGITUDE": -64.86924217000001, "LATITUDE": 18.31896319, "OBJECTID_1": 39079, "PARCEL_NO_": "107604062200", "Tax_Legal_": "79 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10500, "Improved_V": 192100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.557548747799999, "SHAPE_Area": 231.57008407399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365347.000600002706051, 254444.112399999052286 ], [ 365344.927299998700619, 254443.002099998295307 ], [ 365331.35869999974966, 254464.408300001174212 ], [ 365339.335699997842312, 254469.745999999344349 ], [ 365352.323700003325939, 254446.963199999183416 ], [ 365347.000600002706051, 254444.112399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84594981, "LATITUDE": 18.31865114, "OBJECTID_1": 40213, "PARCEL_NO_": "107803021900", "Tax_Legal_": "NAZARETH ESTATE 5-25&5-26-1 No.1 RED HOOK QTR.", "Name": "YU, XINGBIN AND AIMIN YUAN", "Address": "6603 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021004, "Country": "United States", "Land_Value": 123700, "Improved_V": 533000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.23545142899999, "SHAPE_Area": 2003.4234478000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367828.741800002753735, 254448.483600001782179 ], [ 367804.858199998736382, 254412.402300000190735 ], [ 367801.731799997389317, 254400.766499999910593 ], [ 367801.033399999141693, 254388.095199998468161 ], [ 367784.536700002849102, 254431.44539999961853 ], [ 367797.879000000655651, 254474.406599998474121 ], [ 367802.582000002264977, 254490.277100000530481 ], [ 367828.741800002753735, 254448.483600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8504317, "LATITUDE": 18.3186635, "OBJECTID_1": 39913, "PARCEL_NO_": "107704021700", "Tax_Legal_": "2Y-17 NAZARETH 1 RED HOOK QTR.", "Name": "ERASMUS REVOCABLE TRUST", "Address": "1771 Irongate Way", "City": "Sacramento", "State": "California", "Zip": 95835, "Country": "United States", "Land_Value": 156400, "Improved_V": 514900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.05041542199999, "SHAPE_Area": 2976.8130959300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367370.303199999034405, 254439.50620000064373 ], [ 367320.499600000679493, 254402.555100001394749 ], [ 367314.602200001478195, 254410.500700000673532 ], [ 367292.85809999704361, 254438.63569999858737 ], [ 367331.772799998521805, 254477.346799999475479 ], [ 367348.824100002646446, 254463.554200001060963 ], [ 367361.017700001597404, 254452.043800000101328 ], [ 367366.708599999547005, 254446.602000001817942 ], [ 367367.540100000798702, 254443.653400000184774 ], [ 367369.167099997401237, 254441.978000000119209 ], [ 367370.303199999034405, 254439.50620000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703021600", "MAP": "D9-7441-T004", "PARCEL_NAM": "2W-5-1-AA", "ACRE": ".405", "LONGITUDE": -64.86109546, "LATITUDE": 18.31902093, "OBJECTID_1": 39678, "PARCEL_NO_": "107703021600", "Tax_Legal_": "NAZARETH ESTATE 2W-5-1,2W-5-1-A &2W-5-1B REDHOOK QTR.", "Name": "SCHAIER, SCOTT & SARAH", "Address": "21 Durham Point Rd", "City": "Durham", "State": "New Hampshire", "Zip": 3824, "Country": "United States", "Land_Value": 171300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.428849190400001, "SHAPE_Area": 61.259531872499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366210.933799996972084, 254475.772599998861551 ], [ 366202.673000000417233, 254464.699700001627207 ], [ 366195.337600000202656, 254469.698600001633167 ], [ 366210.933799996972084, 254475.772599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84928546, "LATITUDE": 18.31880459, "OBJECTID_1": 40231, "PARCEL_NO_": "107803030100", "Tax_Legal_": "9J-3 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "CHABAD LUBAVITCH OF THE U S VIRGIN ISLANDS INC", "Address": "19 Main Street", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.338384249, "SHAPE_Area": 1660.71289123 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367462.473899997770786, 254427.551199998706579 ], [ 367421.717699997127056, 254455.387800000607967 ], [ 367447.817100003361702, 254485.895899999886751 ], [ 367466.50620000064373, 254469.161400001496077 ], [ 367477.866499997675419, 254460.810600001364946 ], [ 367462.473899997770786, 254427.551199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603014700", "MAP": "D9-982-T71", "PARCEL_NAM": "3-2A", "ACRE": "0.12", "LONGITUDE": -64.88170411, "LATITUDE": 18.31896523, "OBJECTID_1": 38564, "PARCEL_NO_": "107603014700", "Tax_Legal_": "BOVONI ESTATE 3-2A FRENCHMAN BAY QTR", "Name": "JOHN-BAPTISTE, E. & J", "Address": "PO Box 9919", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14400, "Improved_V": 83800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.407885323399995, "SHAPE_Area": 397.60547227299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364038.848499998450279, 254443.851799998432398 ], [ 364018.778800003230572, 254433.344000000506639 ], [ 364014.732799999415874, 254434.999600000679493 ], [ 364010.586199998855591, 254448.475699998438358 ], [ 364033.895499996840954, 254457.321299999952316 ], [ 364038.848499998450279, 254443.851799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703014500", "MAP": "B9-236-T69", "PARCEL_NAM": "41-6-1", "ACRE": null, "LONGITUDE": -64.86621519000001, "LATITUDE": 18.31830508, "OBJECTID_1": 39635, "PARCEL_NO_": "107703014500", "Tax_Legal_": "FRYDENHOJ 41-6-1 RED HOOK QTR", "Name": "COMPASS POINT MARINA, INC.", "Address": "6249 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 571700, "Improved_V": 1775500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 504.86693184199999, "SHAPE_Area": 13181.560069 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365713.148299999535084, 254310.975600000470877 ], [ 365653.511399999260902, 254294.099599998444319 ], [ 365648.833599999547005, 254293.642400000244379 ], [ 365649.5320999994874, 254306.313700001686811 ], [ 365647.050200000405312, 254313.681699998676777 ], [ 365644.546700000762939, 254323.582600001245737 ], [ 365638.80009999871254, 254335.567899998277426 ], [ 365641.883199997246265, 254352.269499998539686 ], [ 365638.595100000500679, 254359.630899999290705 ], [ 365635.355400003492832, 254361.293099999427795 ], [ 365632.815999999642372, 254375.415600001811981 ], [ 365629.522399999201298, 254383.410199999809265 ], [ 365623.016199998557568, 254389.90089999884367 ], [ 365623.786499999463558, 254394.129000000655651 ], [ 365622.145099997520447, 254397.493099998682737 ], [ 365614.028099998831749, 254403.759500000625849 ], [ 365604.321699999272823, 254407.2685999982059 ], [ 365597.003799997270107, 254414.385899998247623 ], [ 365595.349799998104572, 254419.22749999910593 ], [ 365597.657300002872944, 254432.334199998527765 ], [ 365600.043799996376038, 254436.153400000184774 ], [ 365601.552199997007847, 254448.409200001507998 ], [ 365604.707299999892712, 254456.667700000107288 ], [ 365612.707500003278255, 254464.121399998664856 ], [ 365616.722900003194809, 254466.054099999368191 ], [ 365632.823899999260902, 254469.141199998557568 ], [ 365643.304200001060963, 254469.438099998980761 ], [ 365648.961000002920628, 254468.006700001657009 ], [ 365659.495200000703335, 254461.971200000494719 ], [ 365670.826700001955032, 254456.997699998319149 ], [ 365678.137500002980232, 254450.724800001829863 ], [ 365694.596400000154972, 254411.807199999690056 ], [ 365697.897200003266335, 254402.968199998140335 ], [ 365718.836099997162819, 254406.094900000840425 ], [ 365713.148299999535084, 254310.975600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86193026, "LATITUDE": 18.31887069, "OBJECTID_1": 39632, "PARCEL_NO_": "107703013800", "Tax_Legal_": "NAZARETH ESTATE 2W-18 RED HOOK QTR", "Name": "ARCHER, CAROLYN", "Address": "PO Box 1212", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.2748123, "SHAPE_Area": 791.46414985199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366101.636699996888638, 254432.448300000280142 ], [ 366104.53830000013113, 254470.468800000846386 ], [ 366116.615000002086163, 254472.678599998354912 ], [ 366117.439300000667572, 254470.574400000274181 ], [ 366135.384999997913837, 254446.445500001311302 ], [ 366101.636699996888638, 254432.448300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84755313, "LATITUDE": 18.3186833, "OBJECTID_1": 40219, "PARCEL_NO_": "107803022500", "Tax_Legal_": "5-5 NAZARETH RED HOOK QTR", "Name": "LEWIS, BEN", "Address": "PO Box 1510", "City": "Clarksburg", "State": "Maryland", "Zip": 20871, "Country": "United States", "Land_Value": 140800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.68184712300001, "SHAPE_Area": 2510.8129538399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367655.578900001943111, 254424.268300000578165 ], [ 367649.229099996387959, 254412.395100001245737 ], [ 367600.670500002801418, 254433.10700000077486 ], [ 367603.843599997460842, 254439.254700001329184 ], [ 367606.233800001442432, 254442.651700001209974 ], [ 367608.598800003528595, 254449.003899998962879 ], [ 367610.994300000369549, 254451.767700001597404 ], [ 367618.141400001943111, 254464.702899999916553 ], [ 367633.294200003147125, 254484.458599999547005 ], [ 367665.89190000295639, 254444.195500001311302 ], [ 367655.578900001943111, 254424.268300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84682749, "LATITUDE": 18.31876624, "OBJECTID_1": 40218, "PARCEL_NO_": "107803022400", "Tax_Legal_": "5-8 NAZARETH No.1 RED HOOK QTR.", "Name": "STEAVE EMANUEL and WENDY AIME BAILEY", "Address": "PO Box 307438", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 134300, "Improved_V": 20000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.00874492099999, "SHAPE_Area": 2692.4271721599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367741.075000002980232, 254421.801600001752377 ], [ 367669.081200003623962, 254448.443399999290705 ], [ 367694.615299999713898, 254480.105399999767542 ], [ 367697.023400001227856, 254481.391600001603365 ], [ 367697.878300003707409, 254475.699099998921156 ], [ 367706.731499999761581, 254477.671399999409914 ], [ 367705.867700003087521, 254484.419300001114607 ], [ 367715.538000002503395, 254485.131799999624491 ], [ 367721.191200003027916, 254484.122600000351667 ], [ 367725.240699999034405, 254482.044799998402596 ], [ 367730.116400003433228, 254477.651700001209974 ], [ 367735.037000000476837, 254467.981699999421835 ], [ 367739.205200001597404, 254451.972699999809265 ], [ 367740.054700002074242, 254446.913400001823902 ], [ 367741.075000002980232, 254421.801600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84371685000001, "LATITUDE": 18.31825133, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 534.61718663600004, "SHAPE_Area": 8537.5200372399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368056.072700001299381, 254361.473799999803305 ], [ 367996.421700000762939, 254359.085799999535084 ], [ 367981.938699997961521, 254355.378699999302626 ], [ 367979.5287000015378, 254354.30350000038743 ], [ 367970.695299997925758, 254350.009300000965595 ], [ 367966.683499999344349, 254347.654399998486042 ], [ 367938.882299996912479, 254392.811999998986721 ], [ 367967.121200002729893, 254390.932199999690056 ], [ 368006.60530000180006, 254394.210700001567602 ], [ 368039.525700002908707, 254410.734299998730421 ], [ 368029.73480000346899, 254424.164200000464916 ], [ 368039.351199999451637, 254431.20890000090003 ], [ 368041.806100003421307, 254427.007199998944998 ], [ 368056.303599998354912, 254429.025699999183416 ], [ 368065.722199998795986, 254459.289099998772144 ], [ 368083.470100000500679, 254458.378899998962879 ], [ 368087.255300000309944, 254487.329700000584126 ], [ 368105.069700002670288, 254478.609600000083447 ], [ 368093.76799999922514, 254385.424800001084805 ], [ 368056.072700001299381, 254361.473799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86217963, "LATITUDE": 18.31880278, "OBJECTID_1": 39765, "PARCEL_NO_": "107703033700", "Tax_Legal_": "NAZARETH ESTATE 9-36 RED HOOK QTR", "Name": "BRYAN, GREGORY R", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70600, "Improved_V": 263900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.117825342, "SHAPE_Area": 1044.0495738899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366101.636699996888638, 254432.448300000280142 ], [ 366072.710199996829033, 254420.390299998223782 ], [ 366074.826999999582767, 254455.871300000697374 ], [ 366104.53830000013113, 254470.468800000846386 ], [ 366101.636699996888638, 254432.448300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019700", "MAP": null, "PARCEL_NAM": "3-104", "ACRE": null, "LONGITUDE": -64.88252409, "LATITUDE": 18.31878339, "OBJECTID_1": 38573, "PARCEL_NO_": "107603019700", "Tax_Legal_": "3-60,67,68,69,76,98,& 100&104 BOVONI (EASTERN) 1 & 2 FRENCHMANS BAY QUARTER", "Name": "LIMA, AGUSTIN J.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.38919821, "SHAPE_Area": 1238.1739197 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363941.203699998557568, 254452.551899999380112 ], [ 363956.086000002920628, 254409.399500001221895 ], [ 363956.123800002038479, 254404.966899998486042 ], [ 363954.529100000858307, 254402.8429000005126 ], [ 363937.661300003528595, 254395.105399999767542 ], [ 363926.148100003600121, 254421.397900000214577 ], [ 363917.093500003218651, 254443.066399998962879 ], [ 363941.203699998557568, 254452.551899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604062000", "MAP": "F9-321-T58", "PARCEL_NAM": "81", "ACRE": ".0262", "LONGITUDE": -64.86940487, "LATITUDE": 18.31886877, "OBJECTID_1": 39077, "PARCEL_NO_": "107604062000", "Tax_Legal_": "ESTATE FRYDENHOJ 81 RED HOOK QUARTER", "Name": "COMMISSIONG, SIDNEY & RUTH", "Address": "PO Box 396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.708543891000005, "SHAPE_Area": 272.849393937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365332.607199996709824, 254436.723299998790026 ], [ 365324.425499998033047, 254433.120299998670816 ], [ 365314.133000001311302, 254453.921700000762939 ], [ 365316.043200001120567, 254454.799100000411272 ], [ 365320.686700001358986, 254456.93189999833703 ], [ 365323.564900003373623, 254458.94819999858737 ], [ 365327.61089999973774, 254452.176399998366833 ], [ 365335.961300000548363, 254438.200300000607967 ], [ 365332.607199996709824, 254436.723299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87543435000001, "LATITUDE": 18.31883271, "OBJECTID_1": 38806, "PARCEL_NO_": "107603062500", "Tax_Legal_": "8E NADIR RED HOOK QTR", "Name": "TOBIAS, ELRIDGE", "Address": "BOX 2353", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18400, "Improved_V": 94500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.320610703, "SHAPE_Area": 1040.1945349099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364709.909000001847744, 254424.857299998402596 ], [ 364712.637299999594688, 254420.223200000822544 ], [ 364670.725100003182888, 254422.647900000214577 ], [ 364670.376299999654293, 254427.278000000864267 ], [ 364670.961499996483326, 254453.247299998998642 ], [ 364695.946400001645088, 254454.718299999833107 ], [ 364698.449799999594688, 254444.817400000989437 ], [ 364700.920900002121925, 254438.715900000184774 ], [ 364709.909000001847744, 254424.857299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703024000", "MAP": null, "PARCEL_NAM": "2W-4B", "ACRE": null, "LONGITUDE": -64.86137267, "LATITUDE": 18.31873142, "OBJECTID_1": 39701, "PARCEL_NO_": "107703024000", "Tax_Legal_": "NAZARETH 2W-4 RED HOOK QTR", "Name": "GREGOIRE, RAPHAEL, ANTOINE & NICHOLAS", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109600, "Improved_V": 347800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.704295847, "SHAPE_Area": 1946.83541915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366201.6266999989748, 254432.4222999997437 ], [ 366214.775799997150898, 254403.399000000208616 ], [ 366209.138800002634525, 254402.508400000631809 ], [ 366194.364500001072884, 254432.996100001037121 ], [ 366151.005199998617172, 254411.320799998939037 ], [ 366146.712899997830391, 254441.894200000911951 ], [ 366144.230999998748302, 254449.262200001627207 ], [ 366166.732199996709824, 254458.312300000339746 ], [ 366186.019000001251698, 254466.069499999284744 ], [ 366201.6266999989748, 254432.4222999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604061600", "MAP": "G9-386-T56", "PARCEL_NAM": "58", "ACRE": "0.04", "LONGITUDE": -64.8704336, "LATITUDE": 18.31873898, "OBJECTID_1": 39073, "PARCEL_NO_": "107604061600", "Tax_Legal_": "58 FRYDENHOJ RED HOOK QTR", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20900, "Improved_V": 98800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.1879163296, "SHAPE_Area": 424.52515161100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365205.011900000274181, 254425.743099998682737 ], [ 365213.4679000005126, 254445.534200001507998 ], [ 365223.942699998617172, 254441.561000000685453 ], [ 365226.983599998056889, 254440.859299998730421 ], [ 365222.016400001943111, 254417.438499998301268 ], [ 365219.599200002849102, 254417.207600001245737 ], [ 365208.138599999248981, 254418.921399999409914 ], [ 365204.143399998545647, 254424.302600000053644 ], [ 365205.011900000274181, 254425.743099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86244746, "LATITUDE": 18.31874095, "OBJECTID_1": 39658, "PARCEL_NO_": "107703016900", "Tax_Legal_": "FRYDENHOJ ESTATE 41-3-D RED HOOK QUARTER", "Name": "FRETT, VOLETHA", "Address": "6259 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37400, "Improved_V": 154300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.01968107100001, "SHAPE_Area": 1252.7269754199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366048.191699996590614, 254458.819699998944998 ], [ 366075.572200000286102, 254463.05460000038147 ], [ 366074.826999999582767, 254455.871300000697374 ], [ 366072.710199996829033, 254420.390299998223782 ], [ 366072.762299999594688, 254414.269000001251698 ], [ 366042.9054000005126, 254416.768800001591444 ], [ 366046.766099996864796, 254436.854299999773502 ], [ 366048.191699996590614, 254458.819699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84977344000001, "LATITUDE": 18.31870652, "OBJECTID_1": 39915, "PARCEL_NO_": "107704021900", "Tax_Legal_": "2Y-20 NAZARETH RED HOOK QTR.", "Name": "LAMBERTIS, ALBION V & DESIREE SUSAN MARIE RITTER", "Address": "2Y-20 ESTATE NAZARETH", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 150600, "Improved_V": 565700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.63439614399999, "SHAPE_Area": 2241.6870195299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367427.259400002658367, 254438.020500000566244 ], [ 367400.105499997735023, 254407.189699999988079 ], [ 367394.371399998664856, 254417.697399999946356 ], [ 367391.929099999368191, 254420.421700000762939 ], [ 367391.099399998784065, 254423.159099999815226 ], [ 367389.474200002849102, 254424.623500000685453 ], [ 367387.008500002324581, 254430.091699998825788 ], [ 367385.370700001716614, 254433.033599998801947 ], [ 367382.928400002419949, 254435.757800001651049 ], [ 367379.641999997198582, 254442.908100001513958 ], [ 367378.016800001263618, 254444.372499998658895 ], [ 367373.103399999439716, 254453.19819999858737 ], [ 367369.041199997067451, 254456.753499999642372 ], [ 367382.608300000429153, 254473.329900000244379 ], [ 367387.167700000107288, 254478.985500000417233 ], [ 367421.717699997127056, 254455.387800000607967 ], [ 367434.513700000941753, 254446.64809999987483 ], [ 367427.259400002658367, 254438.020500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704014000", "MAP": null, "PARCEL_NAM": "2H-25", "ACRE": "0.91", "LONGITUDE": -64.85217233, "LATITUDE": 18.31858608, "OBJECTID_1": 39796, "PARCEL_NO_": "107704014000", "Tax_Legal_": "2H-25 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "B & R INC.", "Address": "6280 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 198200, "Improved_V": 1604400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.64395868, "SHAPE_Area": 2911.6539246399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367186.350000001490116, 254415.150499999523163 ], [ 367142.970899999141693, 254395.797100000083447 ], [ 367112.8783999979496, 254425.94819999858737 ], [ 367120.767099998891354, 254446.488899998366833 ], [ 367148.779500000178814, 254471.204999998211861 ], [ 367152.033500000834465, 254467.854100000113249 ], [ 367170.061899997293949, 254434.015599999576807 ], [ 367171.683499999344349, 254432.973400000482798 ], [ 367172.50959999859333, 254430.65819999948144 ], [ 367186.350000001490116, 254415.150499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604061400", "MAP": "F9-203-T57", "PARCEL_NAM": "71", "ACRE": "0.282", "LONGITUDE": -64.86993985, "LATITUDE": 18.31870695, "OBJECTID_1": 39071, "PARCEL_NO_": "107604061400", "Tax_Legal_": "71 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109800, "Improved_V": 31600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.91623967800001, "SHAPE_Area": 1293.2818657600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365298.198499999940395, 254421.657200001180172 ], [ 365282.335799999535084, 254417.340199999511242 ], [ 365274.927500002086163, 254414.82660000026226 ], [ 365268.445100001990795, 254414.165199998766184 ], [ 365256.67119999974966, 254413.900600001215935 ], [ 365240.928400002419949, 254413.239100001752377 ], [ 365241.19650000333786, 254415.885600000619888 ], [ 365241.984200000762939, 254438.311299998313189 ], [ 365251.16889999806881, 254437.459100000560284 ], [ 365252.853900000452995, 254437.302799999713898 ], [ 365261.697700001299381, 254437.375 ], [ 365273.02419999986887, 254439.388199999928474 ], [ 365277.1587999984622, 254440.123100001364946 ], [ 365291.13459999859333, 254444.883000001311302 ], [ 365298.198499999940395, 254421.657200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87587533, "LATITUDE": 18.31883238, "OBJECTID_1": 38807, "PARCEL_NO_": "107603062600", "Tax_Legal_": "8G & REMAINDER 8GB ESTATE NADIR RED HOOK QTR", "Name": "GOMEZ, WILFRED", "Address": "PO Box 304144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33800, "Improved_V": 127400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.686538656899998, "SHAPE_Area": 517.42382239200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364655.047399997711182, 254428.208000000566244 ], [ 364658.189400002360344, 254423.373199999332428 ], [ 364654.424599997699261, 254423.590999998152256 ], [ 364633.145300000905991, 254424.82209999859333 ], [ 364631.648199997842312, 254429.916299998760223 ], [ 364626.6503000035882, 254448.66270000115037 ], [ 364633.10080000013113, 254448.715500000864267 ], [ 364644.387299999594688, 254449.019000001251698 ], [ 364655.047399997711182, 254428.208000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603041900", "MAP": "D3-351-T80", "PARCEL_NAM": "24Be", "ACRE": "2.09", "LONGITUDE": -64.87777099, "LATITUDE": 18.31836021, "OBJECTID_1": 38730, "PARCEL_NO_": "107603041900", "Tax_Legal_": "24BE NADIR RED HOOK QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 230900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 707.93909569300001, "SHAPE_Area": 11021.5022954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364503.934900000691414, 254434.043499998748302 ], [ 364492.390799999237061, 254385.256700001657009 ], [ 364606.965400002896786, 254392.984000001102686 ], [ 364384.203000001609325, 254322.344300001859665 ], [ 364370.264499999582767, 254444.031199999153614 ], [ 364390.409699998795986, 254445.673700001090765 ], [ 364478.009300000965595, 254385.595800001174212 ], [ 364496.938199996948242, 254435.357700001448393 ], [ 364503.934900000691414, 254434.043499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8482198, "LATITUDE": 18.31862712, "OBJECTID_1": 40176, "PARCEL_NO_": "107803011900", "Tax_Legal_": "9-52 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "ANNA'S RETREAT CHURCH OF GOD,INC", "Address": "PO Box 8089", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 108200, "Improved_V": 612200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.629201322, "SHAPE_Area": 2067.8474171600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367593.366899996995926, 254438.535599999129772 ], [ 367584.635999999940395, 254422.21000000089407 ], [ 367571.82490000128746, 254411.550500001758337 ], [ 367567.809500001370907, 254409.61769999936223 ], [ 367563.781499996781349, 254409.162599999457598 ], [ 367560.543700002133846, 254410.613699998706579 ], [ 367544.270000003278255, 254427.790199998766184 ], [ 367532.897100001573563, 254437.618500001728535 ], [ 367530.467399999499321, 254438.865200001746416 ], [ 367567.289800003170967, 254470.619500000029802 ], [ 367593.366899996995926, 254438.535599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063000", "MAP": null, "PARCEL_NAM": "71A", "ACRE": "0.07", "LONGITUDE": -64.87027439000001, "LATITUDE": 18.31870516, "OBJECTID_1": 39086, "PARCEL_NO_": "107604063000", "Tax_Legal_": "71A FRYDENHOJ 3 RED HOOK QTR", "Name": "FOG, J. B. , P. B. , J. B. & P. H. , TRUSTE", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.654113718900007, "SHAPE_Area": 423.38217743600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365222.016400001943111, 254417.438499998301268 ], [ 365226.983599998056889, 254440.859299998730421 ], [ 365232.683300003409386, 254439.543999999761581 ], [ 365235.834299996495247, 254439.126400001347065 ], [ 365241.984200000762939, 254438.311299998313189 ], [ 365241.19650000333786, 254415.885600000619888 ], [ 365240.928400002419949, 254413.239100001752377 ], [ 365229.826700001955032, 254415.415399998426437 ], [ 365222.016400001943111, 254417.438499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703017300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86284828, "LATITUDE": 18.31870039, "OBJECTID_1": 39662, "PARCEL_NO_": "107703017300", "Tax_Legal_": "FRYDENHOJ ESTATE 41-3-G RED HOOK QTR.", "Name": "CASTORO, CARLO & CAROLYN", "Address": "6249 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.970405497, "SHAPE_Area": 1137.41008291 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366033.229599997401237, 254416.689599998295307 ], [ 365996.927599996328354, 254418.503499999642372 ], [ 366000.718199998140335, 254446.820999998599291 ], [ 366039.403200000524521, 254449.248599998652935 ], [ 366036.330799996852875, 254431.280499998480082 ], [ 366033.964000001549721, 254425.139400001615286 ], [ 366033.229599997401237, 254416.689599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84889811, "LATITUDE": 18.31851401, "OBJECTID_1": 40344, "PARCEL_NO_": "107803034200", "Tax_Legal_": "8-46 NAZARETH RED HOOK QTR.", "Name": "EVELYN LEONARD SHOEMAKER REVOCABLE TRUST", "Address": "6607 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.19424360100001, "SHAPE_Area": 1919.49779889 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367522.040299996733665, 254386.867199998348951 ], [ 367462.473899997770786, 254427.551199998706579 ], [ 367477.866499997675419, 254460.810600001364946 ], [ 367489.22860000282526, 254452.248799998313189 ], [ 367494.087999999523163, 254449.755399998277426 ], [ 367503.900399997830391, 254433.792599998414516 ], [ 367510.404899999499321, 254427.513099998235703 ], [ 367516.131800003349781, 254417.849599998444319 ], [ 367521.118900001049042, 254400.369699999690056 ], [ 367522.040299996733665, 254386.867199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86214443, "LATITUDE": 18.31852873, "OBJECTID_1": 39700, "PARCEL_NO_": "107703023900", "Tax_Legal_": "2W-3 NAZARETH NO.1 RED HOOK QTR", "Name": "ALBERS, KENNETH J. & CHARMAGNE S.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53300, "Improved_V": 330500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.35664066300001, "SHAPE_Area": 1110.264883 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366112.332800000905991, 254407.415699999779463 ], [ 366087.419799998402596, 254397.501499999314547 ], [ 366071.329499997198582, 254393.147900000214577 ], [ 366072.762299999594688, 254414.269000001251698 ], [ 366072.710199996829033, 254420.390299998223782 ], [ 366101.636699996888638, 254432.448300000280142 ], [ 366135.384999997913837, 254446.445500001311302 ], [ 366136.205700002610683, 254444.7635000012815 ], [ 366104.876400001347065, 254430.785999998450279 ], [ 366112.332800000905991, 254407.415699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8450551, "LATITUDE": 18.31830543, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.251444642, "SHAPE_Area": 2858.3777180699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367912.536499999463558, 254361.776700001209974 ], [ 367878.51129999756813, 254380.285599999129772 ], [ 367881.382299996912479, 254421.894499998539686 ], [ 367879.663599997758865, 254434.334899999201298 ], [ 367873.839599996805191, 254455.396600000560284 ], [ 367874.601000003516674, 254460.68019999936223 ], [ 367929.069799996912479, 254408.77479999884963 ], [ 367912.536499999463558, 254361.776700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703015900", "MAP": "D9-2489-T83", "PARCEL_NAM": "2W-2A", "ACRE": ".24", "LONGITUDE": -64.86184128, "LATITUDE": 18.31860581, "OBJECTID_1": 39648, "PARCEL_NO_": "107703015900", "Tax_Legal_": "NAZARETH ESTATE 2W-2-A RED HOOK QTR.", "Name": "LAQUA, MICHAEL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35800, "Improved_V": 145700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.02865694499999, "SHAPE_Area": 976.64547779899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366134.088799998164177, 254409.282499998807907 ], [ 366113.164300002157688, 254404.467199999839067 ], [ 366112.332800000905991, 254407.415699999779463 ], [ 366104.876400001347065, 254430.785999998450279 ], [ 366136.205700002610683, 254444.7635000012815 ], [ 366137.861400000751019, 254439.710799999535084 ], [ 366141.331200003623962, 254411.030499998480082 ], [ 366134.088799998164177, 254409.282499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87591543000001, "LATITUDE": 18.31861496, "OBJECTID_1": 38808, "PARCEL_NO_": "107603062700", "Tax_Legal_": "8AD ESTATE NADIR RED HOOK QTR", "Name": "VENZEN, ALTURO", "Address": "6532 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39500, "Improved_V": 102100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.24259259799999, "SHAPE_Area": 1135.60719799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364654.424599997699261, 254423.590999998152256 ], [ 364664.928199999034405, 254404.224199999123812 ], [ 364643.229699999094009, 254395.602800000458956 ], [ 364639.131599999964237, 254403.379799999296665 ], [ 364615.800599999725819, 254397.067099999636412 ], [ 364614.112499997019768, 254405.919199999421835 ], [ 364614.583400003612041, 254425.895899999886751 ], [ 364654.424599997699261, 254423.590999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85019973, "LATITUDE": 18.31833728, "OBJECTID_1": 39914, "PARCEL_NO_": "107704021800", "Tax_Legal_": "2Y-19 NAZARETH 1 RED HOOK", "Name": "CHANOWITZ, RIVKAH RACHEL", "Address": "6574 N State Road 7", "City": "Pompano Beach", "State": "Florida", "Zip": 33073, "Country": "United States", "Land_Value": 161600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.51960677599999, "SHAPE_Area": 2333.8489979199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367387.996399998664856, 254408.77930000051856 ], [ 367346.937100000679493, 254368.333399999886751 ], [ 367340.695500001311302, 254376.517099998891354 ], [ 367338.247800000011921, 254379.874499998986721 ], [ 367333.365000002086163, 254385.111900001764297 ], [ 367331.732600003480911, 254387.4206000007689 ], [ 367320.499600000679493, 254402.555100001394749 ], [ 367370.303199999034405, 254439.50620000064373 ], [ 367372.453500002622604, 254434.8277000002563 ], [ 367374.078699998557568, 254433.363400001078844 ], [ 367382.267700001597404, 254418.653900001198053 ], [ 367387.996399998664856, 254408.77930000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87544576000001, "LATITUDE": 18.31858575, "OBJECTID_1": 38809, "PARCEL_NO_": "107603062800", "Tax_Legal_": "8AB NADIR RED HOOK QTR", "Name": "BADEAU, JR., ODRIGUE", "Address": "PO Box 502784", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 34700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.21451708500001, "SHAPE_Area": 1402.9714163199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364712.637299999594688, 254420.223200000822544 ], [ 364720.545699998736382, 254406.790300000458956 ], [ 364673.939699999988079, 254387.621500000357628 ], [ 364664.928199999034405, 254404.224199999123812 ], [ 364654.424599997699261, 254423.590999998152256 ], [ 364712.637299999594688, 254420.223200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84690288, "LATITUDE": 18.31835264, "OBJECTID_1": 40220, "PARCEL_NO_": "107803022600", "Tax_Legal_": "5-7 NAZARETH RED HOOK QTR", "Name": "MAHAFFEY, WILLIAM & KATHRYN", "Address": "PO Box 503328", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 266200, "Improved_V": 705200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.218363356, "SHAPE_Area": 4089.4003940600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367741.075000002980232, 254421.801600001752377 ], [ 367740.581500001251698, 254385.067299999296665 ], [ 367742.264300003647804, 254376.848400000482798 ], [ 367744.739000000059605, 254370.324799999594688 ], [ 367726.197400003671646, 254369.750799998641014 ], [ 367694.636100001633167, 254383.002500001341105 ], [ 367655.578900001943111, 254424.268300000578165 ], [ 367665.89190000295639, 254444.195500001311302 ], [ 367669.081200003623962, 254448.443399999290705 ], [ 367741.075000002980232, 254421.801600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803041900", "MAP": "D9-2682-T84", "PARCEL_NAM": "8-3-C", "ACRE": "0.327", "LONGITUDE": -64.84239672, "LATITUDE": 18.31849343, "OBJECTID_1": 40515, "PARCEL_NO_": "107803041900", "Tax_Legal_": "8-3-C&D,&8-4A NAZARETH RED HOOK QTR.", "Name": "WATERPOINT PROP. ASSOC.", "Address": "6221 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 170500, "Improved_V": 398800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.57079477600001, "SHAPE_Area": 1191.4904804800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368203.85700000077486, 254430.444400001317263 ], [ 368177.022699996829033, 254396.43129999935627 ], [ 368160.13629999756813, 254451.195900000631809 ], [ 368169.803000003099442, 254452.33049999922514 ], [ 368177.884099997580051, 254450.285700000822544 ], [ 368183.558899998664856, 254446.743599999696016 ], [ 368189.255199998617172, 254440.668499998748302 ], [ 368197.372299998998642, 254434.402100000530481 ], [ 368203.85700000077486, 254430.444400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84946399, "LATITUDE": 18.31841034, "OBJECTID_1": 39917, "PARCEL_NO_": "107704022100", "Tax_Legal_": "2Y-22 NAZARETH RED HOOK QTR.", "Name": "CHABAD LUBAVITCH OF THE US VIRGIN ISLANDS INC", "Address": "6501 Red Hook Plz Ste 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 125600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.30645935199999, "SHAPE_Area": 2398.4342657900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367456.840499997138977, 254408.222699999809265 ], [ 367420.106499999761581, 254376.933400001376867 ], [ 367415.63400000333786, 254382.829900000244379 ], [ 367414.806100003421307, 254385.356300000101328 ], [ 367412.365599997341633, 254387.86939999833703 ], [ 367411.537699997425079, 254390.395799998193979 ], [ 367400.105499997735023, 254407.189699999988079 ], [ 367427.259400002658367, 254438.020500000566244 ], [ 367434.513700000941753, 254446.64809999987483 ], [ 367462.473899997770786, 254427.551199998706579 ], [ 367471.941100001335144, 254421.085099998861551 ], [ 367461.3462999984622, 254412.060699999332428 ], [ 367456.840499997138977, 254408.222699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84836449, "LATITUDE": 18.31813321, "OBJECTID_1": 40233, "PARCEL_NO_": "107803030300", "Tax_Legal_": "8-47 NAZARETH RED HOOK QTR", "Name": "SOLDIEW, IRIC & BEULAH R", "Address": "6604 EST. NAZARETH 8/47", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 122200, "Improved_V": 539300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.77725838000001, "SHAPE_Area": 2621.1079780499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367556.292000003159046, 254341.76240000128746 ], [ 367526.203100003302097, 254371.491500001400709 ], [ 367529.367200002074242, 254378.694499999284744 ], [ 367530.152000002563, 254381.234099999070168 ], [ 367531.681900002062321, 254390.956900000572205 ], [ 367529.128100000321865, 254406.76799999922514 ], [ 367524.977799996733665, 254420.666200000792742 ], [ 367517.616700001060963, 254432.849399998784065 ], [ 367515.179799996316433, 254434.940400000661612 ], [ 367515.959100000560284, 254438.113200001418591 ], [ 367533.811300002038479, 254424.960400000214577 ], [ 367566.344300001859665, 254392.296100001782179 ], [ 367580.132500000298023, 254382.909699998795986 ], [ 367581.795500002801418, 254377.012699998915195 ], [ 367578.669200003147125, 254365.377000000327826 ], [ 367568.260799996554852, 254356.636999998241663 ], [ 367558.67679999768734, 254345.792700000107288 ], [ 367556.292000003159046, 254341.76240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603063800", "MAP": null, "PARCEL_NAM": "9A", "ACRE": null, "LONGITUDE": -64.8744074, "LATITUDE": 18.31843051, "OBJECTID_1": 38819, "PARCEL_NO_": "107603063800", "Tax_Legal_": "NADIR ESTATE 9A RED HOOK QTR", "Name": "MILLER, CHERYL D. & HOLMES, HORAC", "Address": "116 Black Rock Rd", "City": "Stamford", "State": "Connecticut", "Zip": 6903, "Country": "United States", "Land_Value": 47800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.730147321, "SHAPE_Area": 1868.45043751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364837.572499997913837, 254394.660300001502037 ], [ 364832.797600001096725, 254387.232999999076128 ], [ 364826.392099998891354, 254381.903200000524521 ], [ 364819.1621999964118, 254378.677600000053644 ], [ 364808.692699998617172, 254377.11430000141263 ], [ 364794.985399998724461, 254377.002099998295307 ], [ 364782.876400001347065, 254378.591699998825788 ], [ 364755.386200003325939, 254387.232700001448393 ], [ 364752.144799999892712, 254389.105999998748302 ], [ 364789.832900002598763, 254413.901299998164177 ], [ 364837.572499997913837, 254394.660300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703016100", "MAP": "B9-236-T69", "PARCEL_NAM": "41-6-2", "ACRE": null, "LONGITUDE": -64.86551316000001, "LATITUDE": 18.31820497, "OBJECTID_1": 39650, "PARCEL_NO_": "107703016100", "Tax_Legal_": "FRYDENHOJ ESTATE 41-6-2 RED HOOK QTR.", "Name": "SECOND STOREY LIVING INC", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 400000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.30227983600003, "SHAPE_Area": 3150.38962838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365735.719400003552437, 254317.362700000405312 ], [ 365713.148299999535084, 254310.975600000470877 ], [ 365718.836099997162819, 254406.094900000840425 ], [ 365729.294799998402596, 254408.924699999392033 ], [ 365761.45380000025034, 254420.164799999445677 ], [ 365771.13849999755621, 254419.1886 ], [ 365778.424099996685982, 254415.870700001716614 ], [ 365780.05290000140667, 254413.984200000762939 ], [ 365780.092500001192093, 254409.340500000864267 ], [ 365765.675899997353554, 254397.823399998247623 ], [ 365759.282999999821186, 254391.016100000590086 ], [ 365756.876599997282028, 254389.518800001591444 ], [ 365748.890799999237061, 254380.376400001347065 ], [ 365744.128499999642372, 254371.471500001847744 ], [ 365741.758100003004074, 254365.752599999308586 ], [ 365740.18860000371933, 254360.673500001430511 ], [ 365739.412900000810623, 254357.078499998897314 ], [ 365738.69650000333786, 254346.51799999922514 ], [ 365737.148599997162819, 254338.905999999493361 ], [ 365736.362099997699261, 254336.577500000596046 ], [ 365735.575499996542931, 254334.249000001698732 ], [ 365733.988099999725819, 254331.280699998140335 ], [ 365728.408600002527237, 254323.63569999858737 ], [ 365735.719400003552437, 254317.362700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84626553, "LATITUDE": 18.31828563, "OBJECTID_1": 40221, "PARCEL_NO_": "107803022700", "Tax_Legal_": "NAZARETH ESTATE 5-26&5-25-1 No.1 RED HOOK QTR.", "Name": "MARSTON JOHN GRAHAM WINKLES REVOCABLE TRUST", "Address": "6500 Deerhill Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132100, "Improved_V": 470100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.272545901, "SHAPE_Area": 2517.9647624300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367801.866700001060963, 254384.935600001364946 ], [ 367756.050700001418591, 254367.673099998384714 ], [ 367751.115699999034405, 254379.031800001859665 ], [ 367749.422200001776218, 254388.517099998891354 ], [ 367750.205099999904633, 254391.267799999564886 ], [ 367750.639200001955032, 254434.967700000852346 ], [ 367784.536700002849102, 254431.44539999961853 ], [ 367801.033399999141693, 254388.095199998468161 ], [ 367801.866700001060963, 254384.935600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84776315000001, "LATITUDE": 18.31830235, "OBJECTID_1": 40229, "PARCEL_NO_": "107803023500", "Tax_Legal_": "5-4 NAZARETH RED HOOK QTR.", "Name": "VARLACK, G. & SMITH, TAFARA", "Address": "PO Box 164", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 116900, "Improved_V": 203200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.50635492699999, "SHAPE_Area": 2463.9261260799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367626.992200002074242, 254372.316399998962879 ], [ 367613.229099996387959, 254378.747600000351667 ], [ 367589.772299997508526, 254387.210499998182058 ], [ 367579.230899997055531, 254394.090300001204014 ], [ 367576.781400002539158, 254397.6587999984622 ], [ 367577.546400003135204, 254402.520300000905991 ], [ 367588.751999996602535, 254412.322299998253584 ], [ 367598.30009999871254, 254427.388099998235703 ], [ 367600.670500002801418, 254433.10700000077486 ], [ 367649.229099996387959, 254412.395100001245737 ], [ 367626.992200002074242, 254372.316399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703017400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86291309000001, "LATITUDE": 18.31839029, "OBJECTID_1": 39663, "PARCEL_NO_": "107703017400", "Tax_Legal_": "FRYDENHOJ ESTATE 41-3-H RED HOOK QTR.", "Name": "CASTORO, CARLO & CAROLYN", "Address": "6249 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.83858137600001, "SHAPE_Area": 1389.91239096 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366033.407700002193451, 254395.79280000180006 ], [ 366022.223600000143051, 254383.457899998873472 ], [ 365990.860100001096725, 254373.490899998694658 ], [ 365996.927599996328354, 254418.503499999642372 ], [ 366033.229599997401237, 254416.689599998295307 ], [ 366031.777000002563, 254397.890399999916553 ], [ 366033.407700002193451, 254395.79280000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87374003, "LATITUDE": 18.31844093, "OBJECTID_1": 38916, "PARCEL_NO_": "107604020700", "Tax_Legal_": "11B-8 NADIR RED HOOK QTR", "Name": "LIBURD (LIFE ESTATE), MILLICENT", "Address": "130 Bridgemill Ave", "City": "Madison", "State": "Alabama", "Zip": 357560000, "Country": "United States", "Land_Value": 27800, "Improved_V": 226300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.310034454, "SHAPE_Area": 679.12798478699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364888.337899997830391, 254398.875500001013279 ], [ 364882.752999998629093, 254391.863699998706579 ], [ 364881.966499999165535, 254389.535199999809265 ], [ 364880.362800002098083, 254388.466600000858307 ], [ 364871.590499997138977, 254376.995799999684095 ], [ 364848.056400001049042, 254394.535000000149012 ], [ 364850.432199999690056, 254399.620700001716614 ], [ 364852.771999999880791, 254408.927999999374151 ], [ 364888.337899997830391, 254398.875500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603063100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87558795, "LATITUDE": 18.31827745, "OBJECTID_1": 38812, "PARCEL_NO_": "107603063100", "Tax_Legal_": "8AA NADIR RED HOOK QTR", "Name": "RYLAND HUYGHUE a/k/a RYLAND A HUYGHE FAMILY REVOCABLE TRUST", "Address": "6752 ESTATE SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021343, "Country": "United States", "Land_Value": 53700, "Improved_V": 151000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.412603115, "SHAPE_Area": 2004.27593445 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364707.012900002300739, 254386.203499998897314 ], [ 364675.755500003695488, 254363.782800000160933 ], [ 364645.300800003111362, 254341.790899999439716 ], [ 364628.138099998235703, 254368.670400001108646 ], [ 364673.939699999988079, 254387.621500000357628 ], [ 364720.545699998736382, 254406.790300000458956 ], [ 364725.446599997580051, 254399.442200001329184 ], [ 364707.012900002300739, 254386.203499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86248014, "LATITUDE": 18.31844755, "OBJECTID_1": 39659, "PARCEL_NO_": "107703017000", "Tax_Legal_": "FRYDENHOJ ESTATE 41-3-E RED HOOK QTR.", "Name": "ROGERS, URIEL A. & DANIEL, SHEILA", "Address": "6415 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.029917228, "SHAPE_Area": 619.04394222300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366071.329499997198582, 254393.147900000214577 ], [ 366041.46000000089407, 254397.125300001353025 ], [ 366042.122400000691414, 254414.018199998885393 ], [ 366042.9054000005126, 254416.768800001591444 ], [ 366072.762299999594688, 254414.269000001251698 ], [ 366071.329499997198582, 254393.147900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603063000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87576207, "LATITUDE": 18.31839425, "OBJECTID_1": 38811, "PARCEL_NO_": "107603063000", "Tax_Legal_": "8AC NADIR RED HOOK QTR", "Name": "JOHN-LEWIS, STEPHEN", "Address": "395 Virginia Ave", "City": "Jersey City", "State": "New Jersey", "Zip": 7304, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.25967105000001, "SHAPE_Area": 608.23852555799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364628.138099998235703, 254368.670400001108646 ], [ 364624.866099998354912, 254374.132100000977516 ], [ 364648.974500000476837, 254383.828600000590086 ], [ 364643.229699999094009, 254395.602800000458956 ], [ 364664.928199999034405, 254404.224199999123812 ], [ 364673.939699999988079, 254387.621500000357628 ], [ 364628.138099998235703, 254368.670400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703026900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85895973, "LATITUDE": 18.31829176, "OBJECTID_1": 39729, "PARCEL_NO_": "107703026900", "Tax_Legal_": "NAZARETH ESTATE 2UA RED HOOK QUARTER", "Name": "FOUR POINT REALTY MANAGEMENT L", "Address": "5194 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.28587202200001, "SHAPE_Area": 1395.1901811499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366449.687899999320507, 254373.024300001561642 ], [ 366451.352600000798702, 254366.916200000792742 ], [ 366451.383199997246265, 254363.327899999916553 ], [ 366448.969700001180172, 254362.674800001084805 ], [ 366440.89750000089407, 254363.664200000464916 ], [ 366436.89299999922514, 254360.464999999850988 ], [ 366432.873999997973442, 254358.954500000923872 ], [ 366422.097000002861023, 254393.485599998384714 ], [ 366397.828500002622604, 254402.575100000947714 ], [ 366403.404399998486042, 254410.642299998551607 ], [ 366407.369400002062321, 254418.485199999064207 ], [ 366442.152300000190735, 254405.682100001722574 ], [ 366442.972999997437, 254404.000100001692772 ], [ 366449.687899999320507, 254373.024300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87596442, "LATITUDE": 18.31841233, "OBJECTID_1": 38810, "PARCEL_NO_": "107603062900", "Tax_Legal_": "8A NADIR RED HOOK QTR", "Name": "FREEMAN, ANGELO A. & MONIQUE Y", "Address": "PO Box 304766", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 190600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.818604786400002, "SHAPE_Area": 594.960527103 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364624.866099998354912, 254374.132100000977516 ], [ 364620.771600000560284, 254381.486900001764297 ], [ 364615.800599999725819, 254397.067099999636412 ], [ 364639.131599999964237, 254403.379799999296665 ], [ 364643.229699999094009, 254395.602800000458956 ], [ 364648.974500000476837, 254383.828600000590086 ], [ 364624.866099998354912, 254374.132100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84730816, "LATITUDE": 18.31811314, "OBJECTID_1": 40228, "PARCEL_NO_": "107803023400", "Tax_Legal_": "5-3 NAZARETH RED HOOK QTR", "Name": "JOSEPH G LLAMAS and SARA CHURCHILL LLAMAS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132100, "Improved_V": 773100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.07716288899999, "SHAPE_Area": 2731.4872756200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367694.636100001633167, 254383.002500001341105 ], [ 367667.566699996590614, 254342.250999998301268 ], [ 367656.983999997377396, 254353.985599998384714 ], [ 367652.925399996340275, 254357.11879999935627 ], [ 367640.760600000619888, 254365.251899998635054 ], [ 367626.992200002074242, 254372.316399998962879 ], [ 367649.229099996387959, 254412.395100001245737 ], [ 367655.578900001943111, 254424.268300000578165 ], [ 367694.636100001633167, 254383.002500001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603063500", "MAP": null, "PARCEL_NAM": "10B", "ACRE": null, "LONGITUDE": -64.87507931, "LATITUDE": 18.31835209, "OBJECTID_1": 38816, "PARCEL_NO_": "107603063500", "Tax_Legal_": "10B ESTATE NAIDR RED HOOK QTR", "Name": "GRAHAM, IRENE, RUPERT, JANICE & C", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49000, "Improved_V": 347800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.869049575600002, "SHAPE_Area": 581.17211500600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364744.945500001311302, 254382.292100001126528 ], [ 364725.719899997115135, 254367.358199998736382 ], [ 364707.012900002300739, 254386.203499998897314 ], [ 364725.446599997580051, 254399.442200001329184 ], [ 364734.404100000858307, 254389.171900000423193 ], [ 364741.707699999213219, 254383.743200000375509 ], [ 364744.945500001311302, 254382.292100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86194076, "LATITUDE": 18.31831278, "OBJECTID_1": 39751, "PARCEL_NO_": "107703031200", "Tax_Legal_": "NAZARETH ESTATE 2V-10A RED HOOK QTR", "Name": "VILLANUEVA, GLORIA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41600, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.75114814599999, "SHAPE_Area": 1374.93696421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366123.07379999756813, 254377.106100000441074 ], [ 366115.856499999761581, 254372.403000000864267 ], [ 366101.389600001275539, 254366.796100001782179 ], [ 366087.419799998402596, 254397.501499999314547 ], [ 366112.332800000905991, 254407.415699999779463 ], [ 366113.164300002157688, 254404.467199999839067 ], [ 366134.088799998164177, 254409.282499998807907 ], [ 366141.331200003623962, 254411.030499998480082 ], [ 366140.618400000035763, 254400.047800000756979 ], [ 366135.856100000441074, 254391.142900001257658 ], [ 366123.07379999756813, 254377.106100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803042000", "MAP": "D9-2682-T84", "PARCEL_NAM": "8-3-B", "ACRE": "0.590", "LONGITUDE": -64.84210037, "LATITUDE": 18.31825543, "OBJECTID_1": 40516, "PARCEL_NO_": "107803042000", "Tax_Legal_": "8-3-B NAZARETH RED HOOK QUARTER", "Name": "RICHARD WARBURG REVOC TR", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 291500, "Improved_V": 1370600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.26002037399999, "SHAPE_Area": 2170.41618647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368245.1875, 254406.295800000429153 ], [ 368233.733400002121925, 254382.984600000083447 ], [ 368180.633599996566772, 254384.928599998354912 ], [ 368178.380400002002716, 254392.028000000864267 ], [ 368177.022699996829033, 254396.43129999935627 ], [ 368203.85700000077486, 254430.444400001317263 ], [ 368208.716399997472763, 254427.951099999248981 ], [ 368224.104699999094009, 254420.055500000715256 ], [ 368237.036300003528595, 254416.572700001299381 ], [ 368244.330799996852875, 254412.199400000274181 ], [ 368245.149700000882149, 254410.728500001132488 ], [ 368245.1875, 254406.295800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803042400", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-Z", "ACRE": "1.09", "LONGITUDE": -64.84097923, "LATITUDE": 18.31815626, "OBJECTID_1": 40520, "PARCEL_NO_": "107803042400", "Tax_Legal_": "7-Z NAZARETH RED HOOK QTR.", "Name": "PLATA PROPERTIES LLC", "Address": "6115 ESTATE SMITH BAY", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 8020000, "Country": "United States", "Land_Value": 598400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.52170761400001, "SHAPE_Area": 3174.6208256599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368345.61259999871254, 254355.188700001686811 ], [ 368343.994599997997284, 254355.808800000697374 ], [ 368328.678199999034405, 254355.261199999600649 ], [ 368318.207000002264977, 254353.909000001847744 ], [ 368296.006800003349781, 254404.178599998354912 ], [ 368306.436700001358986, 254410.38569999858737 ], [ 368319.242399998009205, 254421.67850000038743 ], [ 368328.07940000295639, 254425.550500001758337 ], [ 368335.325499996542931, 254426.876400001347065 ], [ 368344.196699999272823, 254426.737900000065565 ], [ 368360.3462999984622, 254424.125799998641014 ], [ 368345.61259999871254, 254355.188700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84997441, "LATITUDE": 18.31806324, "OBJECTID_1": 39918, "PARCEL_NO_": "107704022200", "Tax_Legal_": "2Y-21 NAZARETH 1 RED HOOK", "Name": "TODMAN, CLARENCE A", "Address": "PO Box 306808", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 151200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.076084909, "SHAPE_Area": 2105.3504077900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367346.937100000679493, 254368.333399999886751 ], [ 367387.996399998664856, 254408.77930000051856 ], [ 367394.52419999986887, 254399.755699999630451 ], [ 367396.169200003147125, 254395.969500001519918 ], [ 367400.243900001049042, 254390.936599999666214 ], [ 367401.888899996876717, 254387.150400001555681 ], [ 367412.502300001680851, 254371.827399998903275 ], [ 367365.975299999117851, 254343.371199999004602 ], [ 367346.937100000679493, 254368.333399999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704014100", "MAP": "D9-625-T66", "PARCEL_NAM": "2H-24", "ACRE": ".19", "LONGITUDE": -64.85198059, "LATITUDE": 18.31826429, "OBJECTID_1": 39797, "PARCEL_NO_": "107704014100", "Tax_Legal_": "2H-24 NAZARETH RED HOOK QTR", "Name": "SECRET HARBOUR BEACH RESORT AS", "Address": "6280 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41400, "Improved_V": 1800400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.194475227, "SHAPE_Area": 927.79945717400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367194.495800003409386, 254405.506900001317263 ], [ 367171.21339999884367, 254393.495099999010563 ], [ 367175.370899997651577, 254378.752599999308586 ], [ 367159.295000001788139, 254372.710400000214577 ], [ 367142.970899999141693, 254395.797100000083447 ], [ 367186.350000001490116, 254415.150499999523163 ], [ 367190.412100002169609, 254411.595199998468161 ], [ 367194.495800003409386, 254405.506900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804020100", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-Y", "ACRE": "1.09", "LONGITUDE": -64.84044737000001, "LATITUDE": 18.31812708, "OBJECTID_1": 41810, "PARCEL_NO_": "107804020100", "Tax_Legal_": "7-Y ESTATE NAZARETH RED HOOK QUARTER", "Name": "deHAAS, MICHAEL A. & GAIL G", "Address": "6011 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 693600, "Improved_V": 1039000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.97389408700002, "SHAPE_Area": 4270.7597665599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368446.817800000309944, 254401.824400000274181 ], [ 368365.032399997115135, 254347.326099999248981 ], [ 368360.163999997079372, 254350.874899998307228 ], [ 368354.510799996554852, 254351.884100001305342 ], [ 368345.61259999871254, 254355.188700001686811 ], [ 368360.3462999984622, 254424.125799998641014 ], [ 368400.717699997127056, 254417.912399999797344 ], [ 368440.30969999730587, 254408.526099998503923 ], [ 368441.93129999935627, 254407.483899999409914 ], [ 368446.817800000309944, 254401.824400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84891142, "LATITUDE": 18.31812367, "OBJECTID_1": 40232, "PARCEL_NO_": "107803030200", "Tax_Legal_": "NAZARETH ESTATE 8-45 RED HOOK", "Name": "EVELYN LEONARD SHOEMAKER REVOCABLE TRUST", "Address": "6607 Cabrita Point Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80100, "Improved_V": 485000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.29486598700001, "SHAPE_Area": 2142.9082782700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367496.51519999653101, 254354.149900000542402 ], [ 367502.216899998486042, 254347.441599998623133 ], [ 367475.32209999859333, 254353.146899998188019 ], [ 367472.259099997580051, 254406.31810000166297 ], [ 367471.941100001335144, 254421.085099998861551 ], [ 367522.040299996733665, 254386.867199998348951 ], [ 367520.478000000119209, 254380.943799998611212 ], [ 367518.883400000631809, 254378.81980000063777 ], [ 367516.504000000655651, 254374.156300000846386 ], [ 367496.51519999653101, 254354.149900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87395279, "LATITUDE": 18.31826935, "OBJECTID_1": 38915, "PARCEL_NO_": "107604020600", "Tax_Legal_": "NADIR 11B-5 RED HOOK", "Name": "BLYDEN, DONALD", "Address": "PO Box 12386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 134800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.169141481699995, "SHAPE_Area": 459.64502444599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364860.284100003540516, 254379.014199998229742 ], [ 364839.492700003087521, 254358.578999999910593 ], [ 364829.690999999642372, 254373.275400001555681 ], [ 364838.506499998271465, 254379.680300001055002 ], [ 364845.660800002515316, 254391.771200001239777 ], [ 364860.284100003540516, 254379.014199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603063400", "MAP": null, "PARCEL_NAM": "10E", "ACRE": null, "LONGITUDE": -64.8753101, "LATITUDE": 18.31817537, "OBJECTID_1": 38815, "PARCEL_NO_": "107603063400", "Tax_Legal_": "10E NADIR RED HOOK QTR", "Name": "MALONE, ANDREW & JOYCELYN W", "Address": "PO Box 502662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29000, "Improved_V": 94700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.03880538300001, "SHAPE_Area": 1157.07090453 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364705.734700001776218, 254346.92960000038147 ], [ 364700.938199996948242, 254342.035199999809265 ], [ 364697.732699997723103, 254339.686900001019239 ], [ 364675.755500003695488, 254363.782800000160933 ], [ 364707.012900002300739, 254386.203499998897314 ], [ 364725.719899997115135, 254367.358199998736382 ], [ 364705.734700001776218, 254346.92960000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86224019, "LATITUDE": 18.31818191, "OBJECTID_1": 39649, "PARCEL_NO_": "107703016000", "Tax_Legal_": "2W-2B NAZARETH NO.1 RED HOOK QTR.", "Name": "S. & J. RAY, T. & J. HILDEBRANT", "Address": "8168 Pmb Crown Bay Marina", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40500, "Improved_V": 103000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.161098102, "SHAPE_Area": 868.82367626300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366101.389600001275539, 254366.796100001782179 ], [ 366070.042400002479553, 254354.929400000721216 ], [ 366071.329499997198582, 254393.147900000214577 ], [ 366087.419799998402596, 254397.501499999314547 ], [ 366101.389600001275539, 254366.796100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603063900", "MAP": null, "PARCEL_NAM": "10H", "ACRE": null, "LONGITUDE": -64.8749281, "LATITUDE": 18.31824833, "OBJECTID_1": 38820, "PARCEL_NO_": "107603063900", "Tax_Legal_": "10H NADIR RED HOOK QTR", "Name": "FERRIS, FITZROY & CARMELLA", "Address": "1208 N 7th St", "City": "Temple", "State": "Texas", "Zip": 76501, "Country": "United States", "Land_Value": 15400, "Improved_V": 71000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.018056986100007, "SHAPE_Area": 290.20423701499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364757.889700002968311, 254377.331799998879433 ], [ 364737.863099999725819, 254361.758000001311302 ], [ 364725.719899997115135, 254367.358199998736382 ], [ 364744.945500001311302, 254382.292100001126528 ], [ 364752.232900001108646, 254378.763099998235703 ], [ 364757.889700002968311, 254377.331799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803042300", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-1", "ACRE": "1.06", "LONGITUDE": -64.8415337, "LATITUDE": 18.31793781, "OBJECTID_1": 40519, "PARCEL_NO_": "107803042300", "Tax_Legal_": "NAZARETH 7-1 RED HOOK QTR.", "Name": "TURNER, THOMAS R. & MAXINE S.", "Address": "1225 Cave St", "City": "La Jolla", "State": "California", "Zip": 920373602, "Country": "United States", "Land_Value": 584600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.13091060900001, "SHAPE_Area": 4512.7950128499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368264.513800002634525, 254409.409299999475479 ], [ 368272.594899997115135, 254407.364500001072884 ], [ 368282.281499996781349, 254406.177200000733137 ], [ 368287.95440000295639, 254402.846200000494719 ], [ 368291.987800002098083, 254402.668099999427795 ], [ 368296.006800003349781, 254404.178599998354912 ], [ 368318.207000002264977, 254353.909000001847744 ], [ 368301.290600001811981, 254351.870700001716614 ], [ 368297.275200001895428, 254349.938000001013279 ], [ 368287.678599998354912, 254340.571299999952316 ], [ 368283.670400001108646, 254337.794300001114607 ], [ 368270.814300000667572, 254332.411699999123812 ], [ 368263.570100001990795, 254330.874800000339746 ], [ 368259.554700002074242, 254328.942099999636412 ], [ 368256.379799999296665, 254323.005499999970198 ], [ 368229.523400001227856, 254351.916600000113249 ], [ 368255.682099997997284, 254404.904100000858307 ], [ 368259.683100000023842, 254408.525400001555681 ], [ 368264.513800002634525, 254409.409299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84558529, "LATITUDE": 18.31758608, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 354.16841016000001, "SHAPE_Area": 4729.6348733799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367869.602300003170967, 254384.856699999421835 ], [ 367864.310599997639656, 254343.439100001007318 ], [ 367864.386100001633167, 254334.573699999600649 ], [ 367861.369400002062321, 254310.062199998646975 ], [ 367855.176100000739098, 254279.825100000947714 ], [ 367851.236199997365475, 254269.027100000530481 ], [ 367849.637999996542931, 254267.325300000607967 ], [ 367841.693499997258186, 254253.328099999576807 ], [ 367809.34570000320673, 254264.251299999654293 ], [ 367817.318999998271465, 254274.871199999004602 ], [ 367818.901000000536442, 254278.472800001502037 ], [ 367827.452200002968311, 254315.906300000846386 ], [ 367834.291799999773502, 254364.936000000685453 ], [ 367834.765500001609325, 254403.992199998348951 ], [ 367869.602300003170967, 254384.856699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87386843, "LATITUDE": 18.31816985, "OBJECTID_1": 38934, "PARCEL_NO_": "107604022500", "Tax_Legal_": "NADIR 11B-5A RED HOOK QTR", "Name": "BLYDEN, DONALD D", "Address": "PO Box 12386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.750272398899995, "SHAPE_Area": 349.26496235299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364846.02589999884367, 254348.922200001776218 ], [ 364839.492700003087521, 254358.578999999910593 ], [ 364860.284100003540516, 254379.014199998229742 ], [ 364868.404799997806549, 254372.325699999928474 ], [ 364855.62610000371933, 254357.866700001060963 ], [ 364846.02589999884367, 254348.922200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603064000", "MAP": null, "PARCEL_NAM": "10HA", "ACRE": null, "LONGITUDE": -64.87478292, "LATITUDE": 18.31818211, "OBJECTID_1": 38821, "PARCEL_NO_": "107603064000", "Tax_Legal_": "10H NADIR RED HOOK QTR", "Name": "MALONE, ELTON & LILLIAN", "Address": "PO Box 9224", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32700, "Improved_V": 106800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.662152426600002, "SHAPE_Area": 472.32497273600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364773.258100003004074, 254371.758000001311302 ], [ 364760.529799997806549, 254351.388900000602007 ], [ 364737.863099999725819, 254361.758000001311302 ], [ 364757.889700002968311, 254377.331799998879433 ], [ 364773.258100003004074, 254371.758000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87319897, "LATITUDE": 18.31808171, "OBJECTID_1": 38924, "PARCEL_NO_": "107604021500", "Tax_Legal_": "11B-1 NADIR\nRED HOOK QTR", "Name": "Thelma Mercer & Lena Magdealene Mercer", "Address": "455 Lincoln Ave", "City": "Brentwood", "State": "New York", "Zip": 11717, "Country": "United States", "Land_Value": 33700, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.763870935, "SHAPE_Area": 1271.4476105199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364955.644799999892712, 254354.46339999884367 ], [ 364928.411799997091293, 254332.920099999755621 ], [ 364895.939900003373623, 254358.407800000160933 ], [ 364913.52589999884367, 254376.494600001722574 ], [ 364955.644799999892712, 254354.46339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84926279, "LATITUDE": 18.31792824, "OBJECTID_1": 40259, "PARCEL_NO_": "107803033100", "Tax_Legal_": "2Y-24 NAZARETH RED HOOK QTR.", "Name": "SMITH, MARLENE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 151500, "Improved_V": 857400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.608425721, "SHAPE_Area": 3947.5751535999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367475.32209999859333, 254353.146899998188019 ], [ 367477.801600001752377, 254310.104699999094009 ], [ 367465.466399997472763, 254307.244100000709295 ], [ 367460.639300003647804, 254305.938000001013279 ], [ 367458.143100000917912, 254314.994600001722574 ], [ 367444.457299999892712, 254312.349500000476837 ], [ 367437.803700000047684, 254336.148600000888109 ], [ 367425.437399998307228, 254367.922499999403954 ], [ 367423.806800000369549, 254370.020100001245737 ], [ 367422.15820000320673, 254374.228500001132488 ], [ 367420.106499999761581, 254376.933400001376867 ], [ 367456.840499997138977, 254408.222699999809265 ], [ 367461.3462999984622, 254412.060699999332428 ], [ 367471.941100001335144, 254421.085099998861551 ], [ 367472.259099997580051, 254406.31810000166297 ], [ 367475.32209999859333, 254353.146899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87415524, "LATITUDE": 18.31808991, "OBJECTID_1": 38939, "PARCEL_NO_": "107604023400", "Tax_Legal_": "10N NADIR RED HOOK QTR", "Name": "JEFFERS, F. & WILLIAMS, M. & OTHERS", "Address": "2244 Madison St", "City": "Hollywood", "State": "Florida", "Zip": 33020, "Country": "United States", "Land_Value": 31500, "Improved_V": 101200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.28956071600001, "SHAPE_Area": 956.069481838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364829.690999999642372, 254373.275400001555681 ], [ 364839.492700003087521, 254358.578999999910593 ], [ 364846.02589999884367, 254348.922200001776218 ], [ 364826.758900001645088, 254338.843100000172853 ], [ 364818.678900003433228, 254334.712900001555681 ], [ 364799.818199999630451, 254368.195099998265505 ], [ 364810.382700003683567, 254368.051100000739098 ], [ 364820.047600001096725, 254369.396800000220537 ], [ 364829.690999999642372, 254373.275400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87371395, "LATITUDE": 18.31804514, "OBJECTID_1": 38936, "PARCEL_NO_": "107604022700", "Tax_Legal_": "11B-6 NADIR RED HOOK QTR", "Name": "ROACH, HEZEKIAH", "Address": "PO Box 503274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.36472673199999, "SHAPE_Area": 826.68930865000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364892.665299996733665, 254355.791900001466274 ], [ 364879.120600000023842, 254344.971200000494719 ], [ 364859.095899999141693, 254329.1864 ], [ 364849.297899998724461, 254343.46059999987483 ], [ 364874.065200001001358, 254370.472100000828505 ], [ 364875.300200000405312, 254371.897100001573563 ], [ 364892.665299996733665, 254355.791900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804020200", "MAP": "D9-2685-T84", "PARCEL_NAM": "7-X", "ACRE": "1.08", "LONGITUDE": -64.84020022, "LATITUDE": 18.31769829, "OBJECTID_1": 41811, "PARCEL_NO_": "107804020200", "Tax_Legal_": "NAZARETH 7-X RED HOOK QTR.", "Name": "7X NAZARETH LLC", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 579500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.11504521000001, "SHAPE_Area": 5158.81363728 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368439.545800000429153, 254308.883699998259544 ], [ 368389.709100000560284, 254290.321699999272823 ], [ 368386.426299996674061, 254297.049899999052286 ], [ 368383.836499996483326, 254317.082600001245737 ], [ 368380.523199997842312, 254327.399000000208616 ], [ 368374.819700002670288, 254334.318399999290705 ], [ 368371.544100001454353, 254340.202300000935793 ], [ 368365.854900002479553, 254345.43299999833107 ], [ 368365.032399997115135, 254347.326099999248981 ], [ 368446.817800000309944, 254401.824400000274181 ], [ 368449.301399998366833, 254394.245299998670816 ], [ 368450.197599999606609, 254383.697999998927116 ], [ 368440.114799998700619, 254336.752700001001358 ], [ 368438.721500001847744, 254310.987900000065565 ], [ 368439.545800000429153, 254308.883699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603065900", "MAP": null, "PARCEL_NAM": "10 'O'", "ACRE": null, "LONGITUDE": -64.87457654000001, "LATITUDE": 18.31809484, "OBJECTID_1": 38835, "PARCEL_NO_": "107603065900", "Tax_Legal_": "10-0 EST NADIR RED HOOK QTR", "Name": "LEONARD, ELROY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 141000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.076167888, "SHAPE_Area": 657.107514616 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364788.445000000298023, 254368.81529999896884 ], [ 364792.450199998915195, 254336.639199998229742 ], [ 364780.768500000238419, 254342.055300001055002 ], [ 364760.529799997806549, 254351.388900000602007 ], [ 364773.258100003004074, 254371.758000001311302 ], [ 364788.445000000298023, 254368.81529999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603065800", "MAP": null, "PARCEL_NAM": "10P", "ACRE": null, "LONGITUDE": -64.87436402, "LATITUDE": 18.31802619, "OBJECTID_1": 38834, "PARCEL_NO_": "107603065800", "Tax_Legal_": "10P EST NADIR RED HOOK QTR", "Name": "SAUNDERS ARNOLD, SARAAN A", "Address": "Po Box 304423", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.35647435, "SHAPE_Area": 680.53824845899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364818.678900003433228, 254334.712900001555681 ], [ 364808.29280000180006, 254329.403900001198053 ], [ 364797.769400000572205, 254334.172899998724461 ], [ 364792.450199998915195, 254336.639199998229742 ], [ 364788.445000000298023, 254368.81529999896884 ], [ 364791.02759999781847, 254368.314899999648333 ], [ 364799.818199999630451, 254368.195099998265505 ], [ 364818.678900003433228, 254334.712900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604060200", "MAP": "G3-89-T56", "PARCEL_NAM": "31", "ACRE": ".058", "LONGITUDE": -64.87255565, "LATITUDE": 18.31810033, "OBJECTID_1": 39061, "PARCEL_NO_": "107604060200", "Tax_Legal_": "NADIR ESTATE 31 RED HOOK QTR", "Name": "LOVENLUND, JAMES E", "Address": "6616 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11100, "Improved_V": 170700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.888332149799993, "SHAPE_Area": 359.44179483300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365001.692699998617172, 254352.284200001507998 ], [ 364996.8716000020504, 254344.838199999183416 ], [ 364977.381099998950958, 254358.652100000530481 ], [ 364981.38570000231266, 254361.851300001144409 ], [ 364987.769599996507168, 254369.714000001549721 ], [ 365005.32490000128746, 254360.133900001645088 ], [ 365006.396600000560284, 254359.549100000411272 ], [ 365001.692699998617172, 254352.284200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603064100", "MAP": "G9-2423-T74", "PARCEL_NAM": "10J", "ACRE": "0.274", "LONGITUDE": -64.87492697, "LATITUDE": 18.31801995, "OBJECTID_1": 38822, "PARCEL_NO_": "107603064100", "Tax_Legal_": "10J&10S NADIR RED HOOK QTR", "Name": "OLLIVIERE, TAFARI DESHAWN LEWIS", "Address": "1T Estate Contant", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.16392051700001, "SHAPE_Area": 1383.9573115400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364780.768500000238419, 254342.055300001055002 ], [ 364773.547700002789497, 254337.774300001561642 ], [ 364757.500500001013279, 254328.354899998754263 ], [ 364714.631099998950958, 254343.835999999195337 ], [ 364705.734700001776218, 254346.92960000038147 ], [ 364725.719899997115135, 254367.358199998736382 ], [ 364737.863099999725819, 254361.758000001311302 ], [ 364760.529799997806549, 254351.388900000602007 ], [ 364780.768500000238419, 254342.055300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603063300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87558851, "LATITUDE": 18.31800282, "OBJECTID_1": 38814, "PARCEL_NO_": "107603063300", "Tax_Legal_": "10A NADIR RED HOOK QTR", "Name": "RABSATT, ELLICE", "Address": "6530 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16900, "Improved_V": 86700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.849150917, "SHAPE_Area": 941.75668476299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364655.088100001215935, 254328.78319999948144 ], [ 364645.300800003111362, 254341.790899999439716 ], [ 364675.755500003695488, 254363.782800000160933 ], [ 364697.732699997723103, 254339.686900001019239 ], [ 364694.527199998497963, 254337.338700000196695 ], [ 364692.930799998342991, 254335.425799999386072 ], [ 364691.327200002968311, 254334.357200000435114 ], [ 364684.118900001049042, 254328.598700001835823 ], [ 364673.541500002145767, 254339.699999999254942 ], [ 364655.088100001215935, 254328.78319999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804020400", "MAP": "D9-2685-T84", "PARCEL_NAM": "7-V", "ACRE": "0.908", "LONGITUDE": -64.83958909, "LATITUDE": 18.31775874, "OBJECTID_1": 41813, "PARCEL_NO_": "107804020400", "Tax_Legal_": "NAZARETH ESTATE 7-V No.1 RED HOOK QTR", "Name": "7V NAZARETH LLC", "Address": "6005 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 383700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.149740302, "SHAPE_Area": 3814.4326893299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368522.965400002896786, 254360.862199999392033 ], [ 368457.367399998009205, 254299.319200001657009 ], [ 368448.429700002074242, 254307.267599999904633 ], [ 368445.953199997544289, 254314.002399999648333 ], [ 368446.653399996459484, 254326.462600000202656 ], [ 368448.188699997961521, 254335.552200000733137 ], [ 368456.80460000038147, 254365.386900000274181 ], [ 368459.914800003170967, 254378.922400001436472 ], [ 368463.895999997854233, 254384.865600001066923 ], [ 368467.900600001215935, 254388.064699999988079 ], [ 368471.115000002086163, 254389.357599999755621 ], [ 368475.93129999935627, 254391.93019999936223 ], [ 368481.588100001215935, 254390.498799998313189 ], [ 368489.674599997699261, 254387.820799998939037 ], [ 368505.905100002884865, 254375.710200000554323 ], [ 368522.965400002896786, 254360.862199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84613732, "LATITUDE": 18.31788832, "OBJECTID_1": 40222, "PARCEL_NO_": "107803022800", "Tax_Legal_": "EST NAZARETH 5-27 RED HOOK QTR", "Name": "AMORSO, WILLIAM L", "Address": "9110 Harrington Dr", "City": "Potomac", "State": "Maryland", "Zip": 20854, "Country": "United States", "Land_Value": 113500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.047434391, "SHAPE_Area": 1728.71255619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367801.866700001060963, 254384.935600001364946 ], [ 367806.070900000631809, 254364.704999998211861 ], [ 367807.071400001645088, 254341.915100000798702 ], [ 367806.299199998378754, 254337.897999998182058 ], [ 367767.590800002217293, 254338.214499998837709 ], [ 367759.317299999296665, 254362.844700001180172 ], [ 367756.050700001418591, 254367.673099998384714 ], [ 367801.866700001060963, 254384.935600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84696219, "LATITUDE": 18.31783341, "OBJECTID_1": 40227, "PARCEL_NO_": "107803023300", "Tax_Legal_": "5-2 NAZARETH 1 RED HOOK", "Name": "KAREN K. RICE and PATRICK W CAUFIELD", "Address": "6501 Red Hook Plz Ste 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 122200, "Improved_V": 287000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.316592974, "SHAPE_Area": 2159.0844193100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367726.197400003671646, 254369.750799998641014 ], [ 367711.265900000929832, 254324.032400000840425 ], [ 367699.959499999880791, 254326.050799999386072 ], [ 367683.0287000015378, 254325.701099999248981 ], [ 367667.566699996590614, 254342.250999998301268 ], [ 367694.636100001633167, 254383.002500001341105 ], [ 367726.197400003671646, 254369.750799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87340065, "LATITUDE": 18.31791779, "OBJECTID_1": 38914, "PARCEL_NO_": "107604020400", "Tax_Legal_": "11B-3 NADIR RED HOOK QTR", "Name": "EDWARDS, DORIS", "Address": "PO Box 303941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 283700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.13041207000001, "SHAPE_Area": 1030.09723532 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364928.411799997091293, 254332.920099999755621 ], [ 364906.801399998366833, 254313.955899998545647 ], [ 364879.120600000023842, 254344.971200000494719 ], [ 364895.939900003373623, 254358.407800000160933 ], [ 364928.411799997091293, 254332.920099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8502841, "LATITUDE": 18.31774088, "OBJECTID_1": 39926, "PARCEL_NO_": "107704023000", "Tax_Legal_": "2-H-20 NAZARETH No.1 RED HOOK QTR", "Name": "Hessellund-Jensen, Peter L. & Peter Mark Sahmel, Co-Trustees", "Address": "400 MAIN ON ATLANTIC", "City": "Stamford", "State": "Connecticut", "Zip": 6901, "Country": "United States", "Land_Value": 105600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.23881454799999, "SHAPE_Area": 1330.0022544200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367358.864100001752377, 254326.214400000870228 ], [ 367323.537399999797344, 254308.193399999290705 ], [ 367342.403399996459484, 254365.343100000172853 ], [ 367340.695500001311302, 254376.517099998891354 ], [ 367365.975299999117851, 254343.371199999004602 ], [ 367373.314800001680851, 254333.721000000834465 ], [ 367358.864100001752377, 254326.214400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8451929, "LATITUDE": 18.3174307, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.14947440499998, "SHAPE_Area": 4517.5582996800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367912.536499999463558, 254361.776700001209974 ], [ 367903.482900001108646, 254288.664200000464916 ], [ 367882.131399996578693, 254239.304699998348951 ], [ 367850.590000003576279, 254250.234499998390675 ], [ 367855.370300002396107, 254257.028599999845028 ], [ 367859.337099999189377, 254264.660500001162291 ], [ 367863.282399997115135, 254274.825199998915195 ], [ 367865.623999997973442, 254283.921399999409914 ], [ 367871.790399998426437, 254317.324700001627207 ], [ 367873.284299999475479, 254331.269099999219179 ], [ 367873.190800003707409, 254342.245200000703335 ], [ 367878.51129999756813, 254380.285599999129772 ], [ 367912.536499999463558, 254361.776700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84778371, "LATITUDE": 18.31783649, "OBJECTID_1": 40343, "PARCEL_NO_": "107803034100", "Tax_Legal_": "8-56-7 NAZARETH RED HOOK QTR.", "Name": "HERBERT, RAYNARD A", "Address": "6223 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113500, "Improved_V": 363700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.0445101, "SHAPE_Area": 1604.6316765700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367608.081200003623962, 254320.44370000064373 ], [ 367601.512100003659725, 254334.32209999859333 ], [ 367599.888599999248981, 254335.575399998575449 ], [ 367586.793399997055531, 254358.26630000025034 ], [ 367589.10809999704361, 254370.5287000015378 ], [ 367590.699100002646446, 254373.074799999594688 ], [ 367593.105499997735023, 254374.572200000286102 ], [ 367596.328900001943111, 254374.809599999338388 ], [ 367601.179399996995926, 254373.371700000017881 ], [ 367618.977600000798702, 254366.551300000399351 ], [ 367627.884800001978874, 254362.191199999302626 ], [ 367643.285700000822544, 254352.817999999970198 ], [ 367608.081200003623962, 254320.44370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803042100", "MAP": "D9-2682-T84", "PARCEL_NAM": "8-3-A", "ACRE": ".53", "LONGITUDE": -64.8421672, "LATITUDE": 18.31791513, "OBJECTID_1": 40517, "PARCEL_NO_": "107803042100", "Tax_Legal_": "8-3-A ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "KRIEG, JOHN B", "Address": "13 Sarah Nash Ct", "City": "Dallas", "State": "Texas", "Zip": 75225, "Country": "United States", "Land_Value": 322700, "Improved_V": 1451400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.42093218599999, "SHAPE_Area": 1557.00106845 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368228.556999996304512, 254370.695999998599291 ], [ 368226.957000002264977, 254369.205299999564886 ], [ 368224.543399997055531, 254368.552200000733137 ], [ 368220.50110000371933, 254369.785700000822544 ], [ 368217.335199996829033, 254362.793699998408556 ], [ 368219.766699999570847, 254361.335900001227856 ], [ 368220.601800002157688, 254357.965300001204014 ], [ 368220.673699997365475, 254349.522100001573563 ], [ 368196.622800000011921, 254333.071100000292063 ], [ 368186.673699997365475, 254365.075899999588728 ], [ 368182.523500002920628, 254378.97410000115633 ], [ 368180.633599996566772, 254384.928599998354912 ], [ 368233.733400002121925, 254382.984600000083447 ], [ 368230.920199997723103, 254377.259199999272823 ], [ 368228.538999997079372, 254372.806800000369549 ], [ 368228.556999996304512, 254370.695999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109502010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87240228, "LATITUDE": 18.31348662, "OBJECTID_1": 42244, "PARCEL_NO_": "109502010200", "Tax_Legal_": "BOVONI CAY FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2037300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4459.87461661, "SHAPE_Area": 213682.424566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365206.318400003015995, 253231.175299998372793 ], [ 365212.066899999976158, 253218.978999998420477 ], [ 365218.578500002622604, 253211.855099998414516 ], [ 365219.444200001657009, 253204.896099999547005 ], [ 365218.675599999725819, 253200.456799998879433 ], [ 365218.821299999952316, 253183.359400000423193 ], [ 365219.656300000846386, 253179.988800000399351 ], [ 365208.375200003385544, 253179.052099999040365 ], [ 365196.235500000417233, 253184.230000000447035 ], [ 365185.739100001752377, 253185.832899998873472 ], [ 365180.055299997329712, 253190.430399999022484 ], [ 365175.982400000095367, 253195.252199999988079 ], [ 365139.475400000810623, 253221.129000000655651 ], [ 365105.56530000269413, 253226.128899998962879 ], [ 365090.214800000190735, 253229.59180000051856 ], [ 365082.119300000369549, 253233.325199998915195 ], [ 365054.652500003576279, 253239.222100000828505 ], [ 365034.478500001132488, 253240.956900000572205 ], [ 365025.605499997735023, 253241.306400001049042 ], [ 365016.761200003325939, 253238.2787000015378 ], [ 364991.745800003409386, 253240.396000001579523 ], [ 364975.623099997639656, 253239.841899998486042 ], [ 364962.729299999773502, 253238.892000000923872 ], [ 364951.473300002515316, 253235.000199999660254 ], [ 364945.020999997854233, 253235.158500000834465 ], [ 364934.492200002074242, 253240.560699999332428 ], [ 364923.108499996364117, 253251.655499998480082 ], [ 364915.776199996471405, 253260.461399998515844 ], [ 364914.12219999730587, 253265.302999999374151 ], [ 364910.851999998092651, 253270.553599998354912 ], [ 364900.353699997067451, 253272.367499999701977 ], [ 364893.077100001275539, 253274.629999998956919 ], [ 364889.83389999717474, 253276.714400000870228 ], [ 364883.383400000631809, 253276.66160000115633 ], [ 364874.54450000077486, 253273.000700000673532 ], [ 364869.710299998521805, 253272.538899999111891 ], [ 364863.248999997973442, 253273.752599999308586 ], [ 364853.542700000107288, 253277.261700000613928 ], [ 364848.699400000274181, 253277.855399999767542 ], [ 364847.068800002336502, 253279.953000001609325 ], [ 364846.235500000417233, 253283.11259999871254 ], [ 364848.625699996948242, 253286.50959999859333 ], [ 364851.841899998486042, 253287.591400001198053 ], [ 364854.998800002038479, 253295.638799998909235 ], [ 364854.926899999380112, 253304.081999998539686 ], [ 364852.446800000965595, 253311.238800000399351 ], [ 364851.56139999628067, 253320.51969999819994 ], [ 364856.336300000548363, 253327.94709999859333 ], [ 364859.44650000333786, 253341.482500001788139 ], [ 364860.159299999475479, 253352.465199999511242 ], [ 364863.3378000035882, 253357.979600001126528 ], [ 364868.16669999808073, 253359.074599999934435 ], [ 364870.590999998152256, 253358.461199998855591 ], [ 364890.838699996471405, 253348.072200000286102 ], [ 364897.291000001132488, 253347.914000000804663 ], [ 364897.274899996817112, 253349.813700001686811 ], [ 364894.033399999141693, 253351.686999998986721 ], [ 364892.402800001204014, 253353.784600000828505 ], [ 364885.943300001323223, 253354.787200000137091 ], [ 364883.508199997246265, 253356.667100001126528 ], [ 364875.360600002110004, 253366.521800000220537 ], [ 364874.523699998855591, 253370.103500001132488 ], [ 364875.284999996423721, 253375.387099999934435 ], [ 364876.861699998378754, 253379.621899999678135 ], [ 364880.841099999845028, 253385.776200000196695 ], [ 364884.86370000243187, 253386.864599999040365 ], [ 364887.268200002610683, 253388.572999998927116 ], [ 364899.251400001347065, 253401.758900001645088 ], [ 364909.65259999781847, 253411.343199998140335 ], [ 364944.952299997210503, 253432.5304000005126 ], [ 364972.35080000013113, 253434.654500000178814 ], [ 364980.419299997389317, 253434.087200000882149 ], [ 364992.540899999439716, 253431.019999999552965 ], [ 364997.380599997937679, 253430.848499998450279 ], [ 365006.23030000180006, 253433.243000000715256 ], [ 365011.851099997758865, 253436.03319999948144 ], [ 365014.196299999952316, 253444.70719999819994 ], [ 365013.336000002920628, 253451.032999999821186 ], [ 365011.694600000977516, 253454.397100001573563 ], [ 365007.630699999630451, 253458.163499999791384 ], [ 365005.987499997019768, 253461.738600000739098 ], [ 365007.484999999403954, 253475.260899998247623 ], [ 364999.301399998366833, 253489.337200000882149 ], [ 364990.275600001215935, 253507.628400001674891 ], [ 364985.268700003623962, 253527.430300001055002 ], [ 364984.402999997138977, 253534.389299999922514 ], [ 364972.096100002527237, 253559.197599999606609 ], [ 364971.192699998617172, 253570.589200001209974 ], [ 364971.864200003445148, 253586.426699999719858 ], [ 364973.385099999606609, 253597.204999998211861 ], [ 364970.806100003421307, 253615.971200000494719 ], [ 364970.703599996864796, 253628.002700001001358 ], [ 364958.279899999499321, 253666.531100001186132 ], [ 364957.430399999022484, 253671.590399999171495 ], [ 364959.660499997437, 253693.773499999195337 ], [ 364959.56700000166893, 253704.749600000679493 ], [ 364956.156499996781349, 253726.464299999177456 ], [ 364939.985299997031689, 253731.609299998730421 ], [ 364931.058399997651577, 253738.291200000792742 ], [ 364931.799900002777576, 253745.896699998527765 ], [ 364933.376599997282028, 253750.131400000303984 ], [ 364932.552299998700619, 253752.235599998384714 ], [ 364926.873999997973442, 253756.19990000128746 ], [ 364907.484700001776218, 253760.474199999123812 ], [ 364895.355800002813339, 253764.38569999858737 ], [ 364873.500900000333786, 253774.128199998289347 ], [ 364871.857699997723103, 253777.703400000929832 ], [ 364870.995600000023842, 253784.240200001746416 ], [ 364871.751599997282028, 253790.157000001519918 ], [ 364875.730999998748302, 253796.311299998313189 ], [ 364907.936800003051758, 253802.063299998641014 ], [ 364919.187399998307228, 253806.58839999884367 ], [ 364947.368699997663498, 253811.463100001215935 ], [ 364951.350000001490116, 253817.406300000846386 ], [ 364951.3175999969244, 253821.205699998885393 ], [ 364949.663599997758865, 253826.0472999997437 ], [ 364945.601499997079372, 253829.602699998766184 ], [ 364932.659100003540516, 253834.35190000012517 ], [ 364928.607799999415874, 253836.640799999237061 ], [ 364926.13849999755621, 253842.531199999153614 ], [ 364921.23589999973774, 253850.090399999171495 ], [ 364904.096500001847744, 253874.225900001823902 ], [ 364902.402999997138977, 253883.711199998855591 ], [ 364902.334700003266335, 253891.732200000435114 ], [ 364903.873599998652935, 253900.399700000882149 ], [ 364903.826800003647804, 253905.887699998915195 ], [ 364899.712499998509884, 253915.564399998635054 ], [ 364898.863099999725819, 253920.623599998652935 ], [ 364897.243199996650219, 253921.454799998551607 ], [ 364892.407200001180172, 253921.204100001603365 ], [ 364886.754000000655651, 253922.213300000876188 ], [ 364881.885499998927116, 253925.761999998241663 ], [ 364873.701899997889996, 253939.838300000876188 ], [ 364870.446099996566772, 253943.400299999862909 ], [ 364869.594800002872944, 253948.6706000007689 ], [ 364870.35980000346899, 253953.532000001519918 ], [ 364886.358400002121925, 253968.650600001215935 ], [ 364891.973800003528595, 253972.074099998921156 ], [ 364896.79730000346899, 253973.802299998700619 ], [ 364941.943599998950958, 253975.016199998557568 ], [ 364942.731899999082088, 253977.133600000292063 ], [ 364918.542499996721745, 253976.935600001364946 ], [ 364904.824400000274181, 253978.089899998158216 ], [ 364889.466700002551079, 253982.397199999541044 ], [ 364868.464900001883507, 253986.65819999948144 ], [ 364860.376599997282028, 253989.5472999997437 ], [ 364840.184600003063679, 253993.392900001257658 ], [ 364832.898999996483326, 253996.710700001567602 ], [ 364825.59179999679327, 254002.561500001698732 ], [ 364822.364799998700619, 254002.746199999004602 ], [ 364816.73139999806881, 254001.433499999344349 ], [ 364808.706000000238419, 253996.934900000691414 ], [ 364803.871699996292591, 253996.473099999129772 ], [ 364793.364500001072884, 253999.342500001192093 ], [ 364783.647399999201298, 254004.118099998682737 ], [ 364772.254699997603893, 254016.268300000578165 ], [ 364749.589900001883507, 254026.426300000399351 ], [ 364732.55120000243187, 254038.741399999707937 ], [ 364726.790200002491474, 254052.415300000458956 ], [ 364725.926299996674061, 254059.16330000013113 ], [ 364712.755599997937679, 254090.719500001519918 ], [ 364711.893500000238419, 254097.256299998611212 ], [ 364712.597300000488758, 254109.294399999082088 ], [ 364714.16499999910593, 254114.584600001573563 ], [ 364718.120999999344349, 254123.482900001108646 ], [ 364719.717500001192093, 254125.395799998193979 ], [ 364724.539200000464916, 254127.335099998861551 ], [ 364744.660999998450279, 254131.721700001507998 ], [ 364751.093500003218651, 254133.885299999266863 ], [ 364759.914399996399879, 254139.657000001519918 ], [ 364767.023800000548363, 254157.024900000542402 ], [ 364772.608599998056889, 254164.036699999123812 ], [ 364790.270199999213219, 254173.258200000971556 ], [ 364826.514700002968311, 254178.198899999260902 ], [ 364859.514200001955032, 254185.435100000351667 ], [ 364884.508000001311302, 254185.85080000013113 ], [ 364916.814499996602535, 254179.782400000840425 ], [ 364921.672100000083447, 254177.500100001692772 ], [ 364936.203699998557568, 254175.508099999278784 ], [ 364953.125500001013279, 254176.913100000470877 ], [ 364958.755300000309944, 254178.647999998182058 ], [ 364969.986199997365475, 254185.494899999350309 ], [ 364974.818599998950958, 254186.167700000107288 ], [ 364990.950300000607967, 254185.666499998420477 ], [ 365000.60980000346899, 254187.645399998873472 ], [ 365026.39750000089407, 254189.545200001448393 ], [ 365040.842699997127056, 254197.684999998658895 ], [ 365056.151900000870228, 254199.076799999922514 ], [ 365063.423100002110004, 254197.447599999606609 ], [ 365069.898800000548363, 254194.545299999415874 ], [ 365073.152800001204014, 254191.194400001317263 ], [ 365075.614900000393391, 254186.148299999535084 ], [ 365088.600400000810623, 254176.333200000226498 ], [ 365095.117399998009205, 254168.576099999248981 ], [ 365101.618299998342991, 254162.718699999153614 ], [ 365108.068800002336502, 254162.771499998867512 ], [ 365110.455399997532368, 254166.590700000524521 ], [ 365111.213100001215935, 254172.296399999409914 ], [ 365110.354699999094009, 254178.411100000143051 ], [ 365108.682700000703335, 254185.363499999046326 ], [ 365101.323399998247623, 254197.33559999987483 ], [ 365095.569499999284744, 254210.165199998766184 ], [ 365093.85080000013113, 254222.605700001120567 ], [ 365093.795000001788139, 254229.149099998176098 ], [ 365099.320500001311302, 254243.126499999314547 ], [ 365103.202899999916553, 254260.679000001400709 ], [ 365101.554300002753735, 254264.88740000128746 ], [ 365096.714599996805191, 254265.058899998664856 ], [ 365094.520400002598763, 254238.654199998825788 ], [ 365091.32039999961853, 254235.672699999064207 ], [ 365080.852700002491474, 254233.898299999535084 ], [ 365075.186899997293949, 254236.385099999606609 ], [ 365069.503200002014637, 254240.982599999755621 ], [ 365066.24379999935627, 254244.966699998825788 ], [ 365064.595200002193451, 254249.17509999871254 ], [ 365063.725900001823902, 254256.55629999935627 ], [ 365062.057499997317791, 254263.086500000208616 ], [ 365061.224299997091293, 254266.246100001037121 ], [ 365061.99099999666214, 254270.89640000090003 ], [ 365064.383000001311302, 254274.082400001585484 ], [ 365077.224600002169609, 254281.153599999845028 ], [ 365081.24719999730587, 254282.241999998688698 ], [ 365086.119199998676777, 254278.271099999547005 ], [ 365087.719300001859665, 254279.761799998581409 ], [ 365087.651000000536442, 254287.782800000160933 ], [ 365085.203199997544289, 254291.140299998223782 ], [ 365084.368199996650219, 254294.510899998247623 ], [ 365085.151100002229214, 254297.261599998921156 ], [ 365093.165700003504753, 254303.026700001209974 ], [ 365105.228000000119209, 254306.92509999871254 ], [ 365108.453199997544289, 254306.951499998569489 ], [ 365111.707299999892712, 254303.600600000470877 ], [ 365115.742399998009205, 254303.211500000208616 ], [ 365121.373999997973442, 254304.735199999064207 ], [ 365127.822700001299381, 254304.999099999666214 ], [ 365136.724500000476837, 254301.272300001233816 ], [ 365143.216399997472763, 254296.470199998468161 ], [ 365149.683100000023842, 254294.6233000010252 ], [ 365162.591300003230572, 254293.88459999859333 ], [ 365165.809299997985363, 254294.755300000309944 ], [ 365173.008599996566772, 254301.569200001657009 ], [ 365181.849299997091293, 254305.019099999219179 ], [ 365189.025100000202656, 254314.576999999582767 ], [ 365195.439699999988079, 254318.851399999111891 ], [ 365201.069499999284744, 254320.586199998855591 ], [ 365206.684900000691414, 254324.009700000286102 ], [ 365209.902999997138977, 254324.880399998277426 ], [ 365214.697700001299381, 254329.98589999973774 ], [ 365215.487800002098083, 254331.892200000584126 ], [ 365222.76799999922514, 254329.207600001245737 ], [ 365226.821099996566772, 254326.707600001245737 ], [ 365234.848300002515316, 254330.995200000703335 ], [ 365240.434900000691414, 254337.795899998396635 ], [ 365244.459299996495247, 254338.673200000077486 ], [ 365249.304399996995926, 254337.868500001728535 ], [ 365259.750500001013279, 254342.175900001078844 ], [ 365263.746100001037121, 254346.430399999022484 ], [ 365266.956900000572205, 254348.145500000566244 ], [ 365270.182199999690056, 254348.171900000423193 ], [ 365275.034500002861023, 254346.522799998521805 ], [ 365286.322800002992153, 254346.615200001746416 ], [ 365291.140900000929832, 254348.976700000464916 ], [ 365299.958200000226498, 254355.1706000007689 ], [ 365303.192500002682209, 254354.141600001603365 ], [ 365304.826700001955032, 254351.621800001710653 ], [ 365306.512999996542931, 254342.980799999088049 ], [ 365303.338100001215935, 254337.044199999421835 ], [ 365307.407399997115135, 254332.644499998539686 ], [ 365312.259700000286102, 254330.99549999833107 ], [ 365312.356799997389317, 254319.597199998795986 ], [ 365314.79730000346899, 254317.084100000560284 ], [ 365319.658600002527237, 254314.379599999636412 ], [ 365321.307099997997284, 254310.171300001442432 ], [ 365315.772600002586842, 254297.249299999326468 ], [ 365316.645499996840954, 254289.445900000631809 ], [ 365318.286899998784065, 254286.081900000572205 ], [ 365323.133799999952316, 254285.066100001335144 ], [ 365326.3445999994874, 254286.781100001186132 ], [ 365329.569899998605251, 254286.807500001043081 ], [ 365320.972000002861023, 254254.861999999731779 ], [ 365310.568999998271465, 254245.488699998706579 ], [ 365310.606799997389317, 254241.056099999696016 ], [ 365313.063500002026558, 254236.643199998885393 ], [ 365311.501199997961521, 254230.719799999147654 ], [ 365302.689300000667572, 254223.892700001597404 ], [ 365268.152699999511242, 254207.778000000864267 ], [ 365253.729000002145767, 254197.10530000180006 ], [ 365234.42790000140667, 254191.036699999123812 ], [ 365228.835799999535084, 254184.869199998676777 ], [ 365224.078900001943111, 254175.3310999982059 ], [ 365220.08330000191927, 254171.076499998569489 ], [ 365205.596600003540516, 254167.791499998420477 ], [ 365195.269199997186661, 254149.552999999374151 ], [ 365192.870099999010563, 254147.211300000548363 ], [ 365175.352399997413158, 254121.103399999439716 ], [ 365164.283399999141693, 254095.259399998933077 ], [ 365149.999899998307228, 254068.122499998658895 ], [ 365146.045699998736382, 254059.013199999928474 ], [ 365140.464400000870228, 254051.579199999570847 ], [ 365133.328100003302097, 254037.377500001341105 ], [ 365116.613099999725819, 254011.698399998247623 ], [ 365111.813000001013279, 254007.226100001484156 ], [ 365098.146999999880791, 254002.259100001305342 ], [ 365069.3733000010252, 253972.259500000625849 ], [ 365049.3108000010252, 253960.907299999147654 ], [ 365042.9070999994874, 253955.366500001400709 ], [ 365038.150100000202656, 253945.828299999237061 ], [ 365027.982699997723103, 253908.803700000047684 ], [ 365026.445600003004074, 253899.925200000405312 ], [ 365020.911100000143051, 253887.003199998289347 ], [ 365019.347099997103214, 253881.290899999439716 ], [ 365023.454099997878075, 253872.458599999547005 ], [ 365023.497299998998642, 253867.392700001597404 ], [ 365017.070200003683567, 253864.595899999141693 ], [ 365013.877300001680851, 253860.769999999552965 ], [ 365013.099799998104572, 253857.386199999600649 ], [ 365013.162699997425079, 253849.998399998992682 ], [ 365010.045299999415874, 253837.307300001382828 ], [ 365005.318999998271465, 253824.180799998342991 ], [ 365002.925200000405312, 253821.205899998545647 ], [ 365002.205200001597404, 253811.067499998956919 ], [ 365007.92849999666214, 253801.826200000941753 ], [ 365007.185099996626377, 253794.43189999833703 ], [ 365005.590499997138977, 253792.307900000363588 ], [ 364999.978699997067451, 253788.46229999884963 ], [ 364991.129000000655651, 253786.067800000309944 ], [ 364988.729800000786781, 253783.726199999451637 ], [ 364988.112300001084805, 253761.55629999935627 ], [ 364989.793300002813339, 253753.548500001430511 ], [ 364989.976700000464916, 253732.018399998545647 ], [ 364992.543099999427795, 253714.729800000786781 ], [ 364995.820500001311302, 253708.634899999946356 ], [ 365001.50959999859333, 253703.404100000858307 ], [ 365003.145599998533726, 253700.673300001770258 ], [ 365003.986100003123283, 253696.669399999082088 ], [ 365010.515699997544289, 253687.43470000103116 ], [ 365018.717299997806549, 253671.247600000351667 ], [ 365026.830799996852875, 253665.403400000184774 ], [ 365034.101999998092651, 253663.77419999986887 ], [ 365042.967799998819828, 253664.268899999558926 ], [ 365063.953500002622604, 253661.907600000500679 ], [ 365087.345600001513958, 253661.043600000441074 ], [ 365099.452899999916553, 253659.66499999910593 ], [ 365102.697899997234344, 253657.369500000029802 ], [ 365105.138400003314018, 253654.8564000017941 ], [ 365105.181599996984005, 253649.790500000119209 ], [ 365104.391400001943111, 253647.884199999272823 ], [ 365100.383299998939037, 253645.107099998742342 ], [ 365100.406599998474121, 253642.363099999725819 ], [ 365106.06700000166893, 253640.50959999859333 ], [ 365109.310199998319149, 253638.425200000405312 ], [ 365110.129100002348423, 253636.954300001263618 ], [ 365108.577600002288818, 253629.764400001615286 ], [ 365103.784699998795986, 253624.447799999266863 ], [ 365100.570299997925758, 253623.155000001192093 ], [ 365095.736000001430511, 253622.693199999630451 ], [ 365077.190800003707409, 253622.541400000452995 ], [ 365067.523999996483326, 253621.406800001859665 ], [ 365065.110500000417233, 253620.753800000995398 ], [ 365064.318599998950958, 253619.058600001037121 ], [ 365072.408699996769428, 253615.958399999886751 ], [ 365088.569099999964237, 253612.079900000244379 ], [ 365095.050200000405312, 253608.544300001114607 ], [ 365101.55460000038147, 253602.264699999243021 ], [ 365107.22580000013113, 253599.144799999892712 ], [ 365117.790500000119209, 253589.520899999886751 ], [ 365121.055299997329712, 253584.903599999845028 ], [ 365121.901199996471405, 253580.266399998217821 ], [ 365122.01630000025034, 253566.757399998605251 ], [ 365119.624300003051758, 253563.571400001645088 ], [ 365109.147699996829033, 253562.852400001138449 ], [ 365104.376299999654293, 253555.002900000661612 ], [ 365105.274400003254414, 253544.244500000029802 ], [ 365106.093299999833107, 253542.773499999195337 ], [ 365111.75900000333786, 253540.286800000816584 ], [ 365113.398599997162819, 253537.133799999952316 ], [ 365112.617499999701977, 253534.172100000083447 ], [ 365109.399400003254414, 253533.301399998366833 ], [ 365100.530000001192093, 253533.228799998760223 ], [ 365098.100299999117851, 253534.475400000810623 ], [ 365097.270599998533726, 253537.212900001555681 ], [ 365094.831799998879433, 253539.514899998903275 ], [ 365089.178700000047684, 253540.524099998176098 ], [ 365083.503899998962879, 253544.066300000995398 ], [ 365075.410199999809265, 253547.588599998503923 ], [ 365071.367899999022484, 253548.82209999859333 ], [ 365066.531800001859665, 253548.571400001645088 ], [ 365064.938900001347065, 253546.236400000751019 ], [ 365065.800999999046326, 253539.699499998241663 ], [ 365062.588299997150898, 253538.195599999278784 ], [ 365057.730700001120567, 253540.477800000458956 ], [ 365055.31530000269413, 253540.035900000482798 ], [ 365052.964699998497963, 253531.995099999010563 ], [ 365051.488799996674061, 253515.939899999648333 ], [ 365049.917499996721745, 253511.071899998933077 ], [ 365044.316500000655651, 253505.959800001233816 ], [ 365038.693899996578693, 253503.380699999630451 ], [ 365031.446000002324581, 253502.265900000929832 ], [ 365031.489200003445148, 253497.199999999254942 ], [ 365034.82769999653101, 253483.928399998694658 ], [ 365033.236699998378754, 253481.38230000063777 ], [ 365038.898900002241135, 253479.317699998617172 ], [ 365050.248400002717972, 253472.233399998396635 ], [ 365055.971699997782707, 253462.99210000038147 ], [ 365057.625699996948242, 253458.150499999523163 ], [ 365061.714800000190735, 253451.429000001400709 ], [ 365064.97240000218153, 253447.655900001525879 ], [ 365069.029100000858307, 253444.733800001442432 ], [ 365072.295699998736382, 253439.9054000005126 ], [ 365075.591099999845028, 253431.699700001627207 ], [ 365082.912699997425079, 253424.160300001502037 ], [ 365085.367600001394749, 253419.958500001579523 ], [ 365089.514200001955032, 253406.482500001788139 ], [ 365092.789800003170967, 253400.598700001835823 ], [ 365094.472599998116493, 253392.379799999296665 ], [ 365093.702200002968311, 253388.151599999517202 ], [ 365090.538099996745586, 253380.948499999940395 ], [ 365090.575900003314018, 253376.515900000929832 ], [ 365094.668600000441074, 253369.37220000103116 ], [ 365109.362000003457069, 253348.383099999278784 ], [ 365117.583400003612041, 253329.874099999666214 ], [ 365121.735399998724461, 253315.764899998903275 ], [ 365125.925200000405312, 253297.222899999469519 ], [ 365126.781900003552437, 253291.319299999624491 ], [ 365129.23139999806881, 253287.750799998641014 ], [ 365154.410499997437, 253266.425299998372793 ], [ 365173.05460000038147, 253254.967799998819828 ], [ 365179.526699997484684, 253252.48759999871254 ], [ 365185.204999998211861, 253248.523299999535084 ], [ 365194.101400002837181, 253245.429699998348951 ], [ 365206.318400003015995, 253231.175299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8497715, "LATITUDE": 18.31773282, "OBJECTID_1": 39919, "PARCEL_NO_": "107704022300", "Tax_Legal_": "2Y-23 NAZARETH NO 1 RED HOOK", "Name": "PESCATORE, CHRISTOPHER & ANABELA", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 137300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.206852895, "SHAPE_Area": 2379.24355767 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367431.441299997270107, 254325.752999998629093 ], [ 367395.329800002276897, 254305.192400000989437 ], [ 367373.314800001680851, 254333.721000000834465 ], [ 367365.975299999117851, 254343.371199999004602 ], [ 367412.502300001680851, 254371.827399998903275 ], [ 367419.874200001358986, 254358.37779999896884 ], [ 367424.001000002026558, 254347.223600000143051 ], [ 367431.441299997270107, 254325.752999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84855389000001, "LATITUDE": 18.31773818, "OBJECTID_1": 40261, "PARCEL_NO_": "107803033300", "Tax_Legal_": "8-48 NAZARETH RED HOOK QTR", "Name": "WEBSTER, CRISBIN & BROWN, ILKA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120400, "Improved_V": 356400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.02386992199999, "SHAPE_Area": 1753.5614902 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367556.292000003159046, 254341.76240000128746 ], [ 367552.299999997019768, 254337.085700001567602 ], [ 367547.5287000015378, 254329.236200001090765 ], [ 367546.747500002384186, 254326.274500001221895 ], [ 367534.848899997770786, 254303.167899999767542 ], [ 367502.216899998486042, 254347.441599998623133 ], [ 367519.831699997186661, 254362.151200000196695 ], [ 367525.414800003170967, 254369.374099999666214 ], [ 367526.203100003302097, 254371.491500001400709 ], [ 367556.292000003159046, 254341.76240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604023500", "MAP": null, "PARCEL_NAM": "10Q", "ACRE": null, "LONGITUDE": -64.87405911, "LATITUDE": 18.31784325, "OBJECTID_1": 38940, "PARCEL_NO_": "107604023500", "Tax_Legal_": "10Q EST NADIR RED HOOK QTR", "Name": "PITT, C. & DURAND, S", "Address": "1860 Fairview Dr SW", "City": "Austell", "State": "Georgia", "Zip": 30106, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.334943512, "SHAPE_Area": 1091.19875551 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364856.691299997270107, 254327.478000000119209 ], [ 364835.039599999785423, 254313.368599999696016 ], [ 364823.812399998307228, 254306.099500000476837 ], [ 364814.831399999558926, 254319.113800000399351 ], [ 364808.29280000180006, 254329.403900001198053 ], [ 364826.758900001645088, 254338.843100000172853 ], [ 364846.02589999884367, 254348.922200001776218 ], [ 364849.297899998724461, 254343.46059999987483 ], [ 364859.095899999141693, 254329.1864 ], [ 364856.691299997270107, 254327.478000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703015600", "MAP": "G9-2664-T77", "PARCEL_NAM": "2W-1A-1", "ACRE": null, "LONGITUDE": -64.86214396, "LATITUDE": 18.31759295, "OBJECTID_1": 39645, "PARCEL_NO_": "107703015600", "Tax_Legal_": "NAZARETH ESTATEW 2W-1A-1 RED HOOK QTR", "Name": "VACCARO, ANNETTE SUEYUEN", "Address": "PO Box 502786", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 140500, "Improved_V": 229000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.08046384400001, "SHAPE_Area": 2485.20006552 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366068.713899999856949, 254330.034099999815226 ], [ 366115.28490000218153, 254344.846099998801947 ], [ 366115.357699997723103, 254336.301899999380112 ], [ 366115.002700001001358, 254283.314500000327826 ], [ 366109.354900002479553, 254283.690499998629093 ], [ 366105.354000002145767, 254280.069099999964237 ], [ 366097.298000000417233, 254279.1587999984622 ], [ 366090.825900003314018, 254281.638999998569489 ], [ 366088.374600000679493, 254285.418600000441074 ], [ 366088.358499996364117, 254287.318300001323223 ], [ 366086.729599997401237, 254289.204799998551607 ], [ 366070.599799998104572, 254289.495000001043081 ], [ 366067.360200002789497, 254291.157200001180172 ], [ 366067.925499998033047, 254319.448399998247623 ], [ 366068.713899999856949, 254330.034099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84660347000001, "LATITUDE": 18.31773227, "OBJECTID_1": 40226, "PARCEL_NO_": "107803023200", "Tax_Legal_": "5-1 NAZARETH\nRED HOOK QTR", "Name": "JM JP LIVING REVOCABLE TRUST AGREEMENT", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 139000, "Improved_V": 641000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.56648064199999, "SHAPE_Area": 1856.87376872 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367744.739000000059605, 254370.324799999594688 ], [ 367752.953100003302097, 254352.660100001841784 ], [ 367757.92230000346899, 254337.291000001132488 ], [ 367757.978000000119209, 254330.747499998658895 ], [ 367755.611199997365475, 254324.606499999761581 ], [ 367750.825499996542931, 254318.445599999278784 ], [ 367747.616400003433228, 254316.519499998539686 ], [ 367741.986599996685982, 254314.784600000828505 ], [ 367735.537900000810623, 254314.520799998193979 ], [ 367725.836999997496605, 254317.396699998527765 ], [ 367720.160499997437, 254321.149900000542402 ], [ 367711.265900000929832, 254324.032400000840425 ], [ 367726.197400003671646, 254369.750799998641014 ], [ 367744.739000000059605, 254370.324799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603065500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87494169, "LATITUDE": 18.31788986, "OBJECTID_1": 38832, "PARCEL_NO_": "107603065500", "Tax_Legal_": "10JA EST.NADIR /ROADWAY RED HOOK QTR", "Name": "MOOREHEAD, R & THOMAS, E", "Address": "PO Box 956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.47548813500001, "SHAPE_Area": 378.11593453400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364746.231899999082088, 254325.940600000321865 ], [ 364722.775100000202656, 254334.403499998152256 ], [ 364708.216600000858307, 254339.561700001358986 ], [ 364714.631099998950958, 254343.835999999195337 ], [ 364757.500500001013279, 254328.354899998754263 ], [ 364773.547700002789497, 254337.774300001561642 ], [ 364759.982400000095367, 254320.986900001764297 ], [ 364746.231899999082088, 254325.940600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87361739000001, "LATITUDE": 18.3177447, "OBJECTID_1": 38913, "PARCEL_NO_": "107604020300", "Tax_Legal_": "11B-4 NADIR NO.2 RED HOOK QTR", "Name": "CHARLES L M KILLGALLEN 2001 REVOCABLE TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91500, "Improved_V": 181900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.26777071199999, "SHAPE_Area": 1444.8917599599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364906.801399998366833, 254313.955899998545647 ], [ 364877.189000003039837, 254287.749000001698732 ], [ 364856.691299997270107, 254327.478000000119209 ], [ 364859.095899999141693, 254329.1864 ], [ 364879.120600000023842, 254344.971200000494719 ], [ 364906.801399998366833, 254313.955899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603063200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.875607, "LATITUDE": 18.31785652, "OBJECTID_1": 38813, "PARCEL_NO_": "107603063200", "Tax_Legal_": "10A-1 ESTATE NADIR RED HOOK QTR", "Name": "CALLWOOD, DELIA L", "Address": "9416 Foster Ave", "City": "Brooklyn", "State": "New York", "Zip": 11236, "Country": "United States", "Land_Value": 6000, "Improved_V": 35000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.604076930700003, "SHAPE_Area": 347.22222094099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364668.906900003552437, 254315.808499999344349 ], [ 364655.088100001215935, 254328.78319999948144 ], [ 364673.541500002145767, 254339.699999999254942 ], [ 364684.118900001049042, 254328.598700001835823 ], [ 364668.906900003552437, 254315.808499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603065400", "MAP": null, "PARCEL_NAM": "10 REM", "ACRE": null, "LONGITUDE": -64.87521548, "LATITUDE": 18.3177543, "OBJECTID_1": 38831, "PARCEL_NO_": "107603065400", "Tax_Legal_": "REM 10 EST NADIR RED HOOK QTR", "Name": "BLYDEN, JOYCE C, DIONNE J & DAPHNE L. WALLACE", "Address": "6532 Estate Nadir", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.10589076399999, "SHAPE_Area": 862.098600734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364722.775100000202656, 254334.403499998152256 ], [ 364719.927500002086163, 254290.050500001758337 ], [ 364706.978000000119209, 254295.644099999219179 ], [ 364701.999799996614456, 254312.068599998950958 ], [ 364701.981799997389317, 254314.179400000721216 ], [ 364698.704499997198582, 254320.274300001561642 ], [ 364698.605599999427795, 254331.883600000292063 ], [ 364701.006499998271465, 254334.014199998229742 ], [ 364708.216600000858307, 254339.561700001358986 ], [ 364722.775100000202656, 254334.403499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703021500", "MAP": "D9-1703-T81", "PARCEL_NAM": "2W-1D", "ACRE": null, "LONGITUDE": -64.86173945, "LATITUDE": 18.31755721, "OBJECTID_1": 39677, "PARCEL_NO_": "107703021500", "Tax_Legal_": "NAZARETH ESTATE 2W-1D RED HOOK QTR.", "Name": "OESTERGAARD, KARL EJNER & VIVI", "Address": "19-2-15 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.479844243, "SHAPE_Area": 2675.4901765300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366115.357699997723103, 254336.301899999380112 ], [ 366120.177599996328354, 254338.452300000935793 ], [ 366149.908699996769428, 254350.727899998426437 ], [ 366148.346400000154972, 254344.804499998688698 ], [ 366149.215599998831749, 254337.42339999973774 ], [ 366150.847999997437, 254335.114700000733137 ], [ 366151.686700001358986, 254331.321899998933077 ], [ 366149.321699999272823, 254324.969700001180172 ], [ 366146.918999999761581, 254323.050200000405312 ], [ 366145.3800999969244, 254314.382800001651049 ], [ 366147.034100003540516, 254309.541200000792742 ], [ 366149.474600002169609, 254307.028000000864267 ], [ 366150.300700001418591, 254304.712799999862909 ], [ 366154.337600000202656, 254304.112500000745058 ], [ 366156.738600000739098, 254306.243099998682737 ], [ 366158.31700000166893, 254310.266800001263618 ], [ 366159.922499999403954, 254311.124299999326468 ], [ 366163.149499997496605, 254310.939599998295307 ], [ 366165.586400002241135, 254308.848600000143051 ], [ 366166.513199999928474, 254294.712999999523163 ], [ 366165.723099999129772, 254292.806600000709295 ], [ 366157.744499996304512, 254282.820000000298023 ], [ 366149.720899999141693, 254278.110199999064207 ], [ 366136.854099996387959, 254273.994100000709295 ], [ 366127.986400000751019, 254273.710499998182058 ], [ 366119.090000003576279, 254276.804099999368191 ], [ 366115.018899999558926, 254281.414799999445677 ], [ 366115.002700001001358, 254283.314500000327826 ], [ 366115.357699997723103, 254336.301899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603064500", "MAP": null, "PARCEL_NAM": "10C", "ACRE": null, "LONGITUDE": -64.87501302, "LATITUDE": 18.31766389, "OBJECTID_1": 38824, "PARCEL_NO_": "107603064500", "Tax_Legal_": "NADIR 10C RED HOOK QTR", "Name": "BLYDEN, JOYCE C, DIONNE J & DAPHNE L. WALLACE", "Address": "6532 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021505, "Country": "United States", "Land_Value": 26300, "Improved_V": 131000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.18659565499999, "SHAPE_Area": 1089.8389212899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364746.231899999082088, 254325.940600000321865 ], [ 364742.608599998056889, 254277.99269999936223 ], [ 364735.312200002372265, 254282.577100001275539 ], [ 364719.927500002086163, 254290.050500001758337 ], [ 364722.775100000202656, 254334.403499998152256 ], [ 364746.231899999082088, 254325.940600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": "B9-339-T71", "PARCEL_NAM": "8-1-8", "ACRE": ".5", "LONGITUDE": -64.8441387, "LATITUDE": 18.31773175, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.05136278399999, "SHAPE_Area": 2229.63174841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367942.675700001418591, 254326.137499999254942 ], [ 367945.073100000619888, 254328.690200001001358 ], [ 367955.468800000846386, 254338.907800000160933 ], [ 367957.864399999380112, 254341.671599999070168 ], [ 367966.683499999344349, 254347.654399998486042 ], [ 367970.695299997925758, 254350.009300000965595 ], [ 367979.5287000015378, 254354.30350000038743 ], [ 367981.938699997961521, 254355.378699999302626 ], [ 367996.421700000762939, 254359.085799999535084 ], [ 368056.072700001299381, 254361.473799999803305 ], [ 368051.518899999558926, 254328.083799999207258 ], [ 368046.609099999070168, 254336.487300001084805 ], [ 368036.865000002086163, 254344.429099999368191 ], [ 368027.954199999570847, 254349.211399998515844 ], [ 368011.045100003480911, 254346.32880000025034 ], [ 368005.420699998736382, 254343.960700001567602 ], [ 367981.35360000282526, 254329.409400001168251 ], [ 367956.496299996972084, 254312.951699998229742 ], [ 367941.079300001263618, 254324.224599998444319 ], [ 367942.675700001418591, 254326.137499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603065200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87545949, "LATITUDE": 18.31774481, "OBJECTID_1": 38830, "PARCEL_NO_": "107603065200", "Tax_Legal_": "10G NADIR RED HOOK QTR", "Name": "TRUST AGREEMENT OF ABRAHAM BENJAMIN RABSATT", "Address": "6531 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4400, "Improved_V": 110400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.944787862, "SHAPE_Area": 458.79479356299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364699.692400000989437, 254298.961899999529123 ], [ 364681.881599999964237, 254307.259899999946356 ], [ 364668.906900003552437, 254315.808499999344349 ], [ 364684.118900001049042, 254328.598700001835823 ], [ 364691.327200002968311, 254334.357200000435114 ], [ 364692.248599998652935, 254320.854699999094009 ], [ 364699.692400000989437, 254298.961899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84883604, "LATITUDE": 18.31748564, "OBJECTID_1": 40260, "PARCEL_NO_": "107803033200", "Tax_Legal_": "8-44 NAZARETH RED HOOK QTR", "Name": "HEDRINGTON, IVERINE", "Address": "PO Box 303661", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 134100, "Improved_V": 319600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.93606525199999, "SHAPE_Area": 3111.8533724 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367479.241599999368191, 254285.106699999421835 ], [ 367475.32209999859333, 254353.146899998188019 ], [ 367502.216899998486042, 254347.441599998623133 ], [ 367534.848899997770786, 254303.167899999767542 ], [ 367530.889200001955032, 254294.691799998283386 ], [ 367527.701700001955032, 254290.232700001448393 ], [ 367519.699699997901917, 254282.989999998360872 ], [ 367510.877099998295307, 254277.429400000721216 ], [ 367506.085900001227856, 254271.901799999177456 ], [ 367479.241599999368191, 254285.106699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603065700", "MAP": "G9-2423-T74", "PARCEL_NAM": "10R", "ACRE": "0.31", "LONGITUDE": -64.87442389, "LATITUDE": 18.3177398, "OBJECTID_1": 38833, "PARCEL_NO_": "107603065700", "Tax_Legal_": "10R NADIR RED HOOK QTR", "Name": "PASCAL, PETER & JOAN B., CO-TRUSTEES", "Address": "PO Box 8101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 123800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.60346316, "SHAPE_Area": 997.75547973400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364823.812399998307228, 254306.099500000476837 ], [ 364819.798799999058247, 254303.955699998885393 ], [ 364808.5625, 254297.741999998688698 ], [ 364802.124600000679493, 254296.21169999986887 ], [ 364802.045500002801418, 254305.499200001358986 ], [ 364759.982400000095367, 254320.986900001764297 ], [ 364784.071099996566772, 254333.005300000309944 ], [ 364814.831399999558926, 254319.113800000399351 ], [ 364823.812399998307228, 254306.099500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804020500", "MAP": "D9-2685-T84", "PARCEL_NAM": "7-U", "ACRE": "1.024", "LONGITUDE": -64.83929804, "LATITUDE": 18.31743014, "OBJECTID_1": 41814, "PARCEL_NO_": "107804020500", "Tax_Legal_": "NAZARETH 7-U RED HOOK QTR.", "Name": "HANLINE, ROBERT S", "Address": "PO Box 494", "City": "Shelby", "State": "Ohio", "Zip": 44875, "Country": "United States", "Land_Value": 463800, "Improved_V": 1150700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.60253638, "SHAPE_Area": 4096.6345796100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368534.893899999558926, 254285.810499999672174 ], [ 368478.495200000703335, 254280.282699998468161 ], [ 368478.437600001692772, 254287.037200000137091 ], [ 368472.748499996960163, 254292.267900001257658 ], [ 368467.914200000464916, 254291.806200001388788 ], [ 368464.679999999701977, 254292.835200000554323 ], [ 368457.367399998009205, 254299.319200001657009 ], [ 368522.965400002896786, 254360.862199999392033 ], [ 368536.778800003230572, 254348.520700000226498 ], [ 368540.887699998915195, 254339.477299999445677 ], [ 368543.401900000870228, 254328.309900000691414 ], [ 368542.698100000619888, 254316.271800000220537 ], [ 368541.936700001358986, 254310.988299999386072 ], [ 368540.390600003302097, 254303.165199998766184 ], [ 368534.893899999558926, 254285.810499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84747784, "LATITUDE": 18.31752865, "OBJECTID_1": 40342, "PARCEL_NO_": "107803034000", "Tax_Legal_": "NAZARETH ESTATE 8-56-2 No.1 RED HOOK QTR.", "Name": "BAILEY, LINDA B", "Address": "PO Box 6226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 125600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.82050145299999, "SHAPE_Area": 2774.12672453 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367626.845799997448921, 254294.843800000846386 ], [ 367617.924199998378754, 254300.892499998211861 ], [ 367613.048600003123283, 254305.285599999129772 ], [ 367608.081200003623962, 254320.44370000064373 ], [ 367643.285700000822544, 254352.817999999970198 ], [ 367650.587399996817112, 254347.600499998778105 ], [ 367674.193499997258186, 254321.618099998682737 ], [ 367676.673500001430511, 254314.461199998855591 ], [ 367677.612899996340275, 254298.847899999469519 ], [ 367644.624200001358986, 254290.345300000160933 ], [ 367626.845799997448921, 254294.843800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87384211, "LATITUDE": 18.3175964, "OBJECTID_1": 38911, "PARCEL_NO_": "107604020100", "Tax_Legal_": "10D NADIR RED HOOK QTR", "Name": "LEONARD, CHRISTIANA", "Address": "37 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 92900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.50431314900001, "SHAPE_Area": 1099.88015625 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364877.189000003039837, 254287.749000001698732 ], [ 364860.380500003695488, 254273.046000000089407 ], [ 364835.039599999785423, 254313.368599999696016 ], [ 364856.691299997270107, 254327.478000000119209 ], [ 364877.189000003039837, 254287.749000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603064900", "MAP": "D9-4203-T88", "PARCEL_NAM": "2 REM", "ACRE": "0.51", "LONGITUDE": -64.87464772, "LATITUDE": 18.31721252, "OBJECTID_1": 38826, "PARCEL_NO_": "107603064900", "Tax_Legal_": "2 EST NADIR RED HOOK QTR", "Name": "MANGROVE VENTURES INC", "Address": "6600 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 264000, "Improved_V": 36000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.72569387599998, "SHAPE_Area": 3349.4654559700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364802.124600000679493, 254296.21169999986887 ], [ 364798.526399999856949, 254245.308699999004602 ], [ 364784.784999996423721, 254249.206999998539686 ], [ 364774.256099998950958, 254254.609299998730421 ], [ 364766.956200003623962, 254259.615800000727177 ], [ 364756.393200002610683, 254269.028499998152256 ], [ 364742.608599998056889, 254277.99269999936223 ], [ 364742.889700002968311, 254281.713300000876188 ], [ 364802.09009999781847, 254300.257800001651049 ], [ 364802.124600000679493, 254296.21169999986887 ] ] ], [ [ [ 364798.605599999427795, 254236.021200001239777 ], [ 364797.122400000691414, 254220.810400001704693 ], [ 364779.343999996781349, 254225.308899998664856 ], [ 364754.385999999940395, 254220.671700000762939 ], [ 364748.754399999976158, 254219.147900000214577 ], [ 364747.15259999781847, 254217.868299998342991 ], [ 364744.698499999940395, 254214.270599998533726 ], [ 364738.001299999654293, 254268.139800000935793 ], [ 364737.726400002837181, 254268.799499999731779 ], [ 364741.901100002229214, 254266.376800000667572 ], [ 364744.933200001716614, 254264.107200000435114 ], [ 364768.682099997997284, 254246.331000000238419 ], [ 364783.253300003707409, 254239.695300001651049 ], [ 364798.605599999427795, 254236.021200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84812295, "LATITUDE": 18.31752558, "OBJECTID_1": 40234, "PARCEL_NO_": "107803030400", "Tax_Legal_": "8-49 NAZARETH NO.1 RED HOOK QTR", "Name": "YVONNE E. BOWSKY REV. TRUST", "Address": "PO Box 8164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.544487309, "SHAPE_Area": 2061.7213946799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367578.506599999964237, 254289.804200001060963 ], [ 367545.334499999880791, 254302.831599999219179 ], [ 367557.218800000846386, 254327.626800000667572 ], [ 367563.58839999884367, 254337.178100001066923 ], [ 367569.97240000218153, 254345.040800001472235 ], [ 367572.375100001692772, 254346.960299998521805 ], [ 367577.204000003635883, 254348.055300001055002 ], [ 367580.434600003063679, 254347.448499999940395 ], [ 367583.676100000739098, 254345.575199998915195 ], [ 367591.86150000244379, 254331.287799999117851 ], [ 367594.303800001740456, 254328.5636 ], [ 367597.57940000295639, 254322.679800000041723 ], [ 367601.715300001204014, 254310.470199998468161 ], [ 367603.394400000572205, 254302.673500001430511 ], [ 367578.506599999964237, 254289.804200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803042200", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-2", "ACRE": "1.04", "LONGITUDE": -64.84194403, "LATITUDE": 18.31741979, "OBJECTID_1": 40518, "PARCEL_NO_": "107803042200", "Tax_Legal_": "NAZARETH 7-2 RED HOOK QTR.", "Name": "RLF NAZARETH LLC", "Address": "6115 ESTATE SMITH BAY", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 8020000, "Country": "United States", "Land_Value": 575400, "Improved_V": 1198900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.48339438599999, "SHAPE_Area": 3494.9501464300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368214.057099997997284, 254274.31870000064373 ], [ 368196.622800000011921, 254333.071100000292063 ], [ 368220.673699997365475, 254349.522100001573563 ], [ 368229.523400001227856, 254351.916600000113249 ], [ 368256.379799999296665, 254323.005499999970198 ], [ 368256.424800001084805, 254317.728500001132488 ], [ 368262.236199997365475, 254298.144400000572205 ], [ 368262.302699998021126, 254290.334499999880791 ], [ 368260.715300001204014, 254287.366200000047684 ], [ 368258.305299997329712, 254286.291000001132488 ], [ 368249.426899999380112, 254287.273800000548363 ], [ 368241.390799999237061, 254284.041600000113249 ], [ 368238.190700002014637, 254281.060100000351667 ], [ 368236.619400002062321, 254276.192099999636412 ], [ 368231.831900000572205, 254270.242300000041723 ], [ 368228.622800000011921, 254268.316199999302626 ], [ 368223.784999996423721, 254268.276599999517202 ], [ 368220.572300001978874, 254266.772599998861551 ], [ 368218.173100002110004, 254264.431000001728535 ], [ 368214.057099997997284, 254274.31870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85072292, "LATITUDE": 18.31754109, "OBJECTID_1": 39869, "PARCEL_NO_": "107704015800", "Tax_Legal_": "EST NAZARETH 2H-22 RED HOOK QTR", "Name": "PANTUSCO, FRANK S. & TERRIE L", "Address": "RED HOOK PLAZA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73700, "Improved_V": 412400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.83580349100001, "SHAPE_Area": 1292.55737993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367323.294699996709824, 254336.689100001007318 ], [ 367308.366800002753735, 254290.548500001430511 ], [ 367283.29730000346899, 254298.998199999332428 ], [ 367283.821299999952316, 254332.144099999219179 ], [ 367288.655599996447563, 254332.605900000780821 ], [ 367323.294699996709824, 254336.689100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84615276, "LATITUDE": 18.31747543, "OBJECTID_1": 40223, "PARCEL_NO_": "107803022900", "Tax_Legal_": "5-28 NAZARETH RED HOOK QTR", "Name": "BEER, BEN", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 116900, "Improved_V": 492200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.75371241799999, "SHAPE_Area": 1906.57534872 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367806.299199998378754, 254337.897999998182058 ], [ 367797.814599998295307, 254292.654599998146296 ], [ 367793.873000003397465, 254282.067600000649691 ], [ 367788.300700001418591, 254273.578299999237061 ], [ 367758.125500001013279, 254313.439100001007318 ], [ 367761.325599998235703, 254316.4206000007689 ], [ 367762.110299997031689, 254318.960099998861551 ], [ 367765.295999996364117, 254323.630300000309944 ], [ 367767.637599997222424, 254332.726399999111891 ], [ 367767.590800002217293, 254338.214499998837709 ], [ 367806.299199998378754, 254337.897999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604020200", "MAP": null, "PARCEL_NAM": "10F", "ACRE": null, "LONGITUDE": -64.87400501, "LATITUDE": 18.31746001, "OBJECTID_1": 38912, "PARCEL_NO_": "107604020200", "Tax_Legal_": "10F NADIR RED HOOK", "Name": "INNISS, LARRY", "Address": "193 Southside Ave", "City": "Freeport", "State": "New York", "Zip": 11520, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.12852026600001, "SHAPE_Area": 1037.07339867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364860.380500003695488, 254273.046000000089407 ], [ 364841.972000002861023, 254256.852200001478195 ], [ 364819.798799999058247, 254303.955699998885393 ], [ 364823.812399998307228, 254306.099500000476837 ], [ 364835.039599999785423, 254313.368599999696016 ], [ 364860.380500003695488, 254273.046000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84993133, "LATITUDE": 18.3173495, "OBJECTID_1": 39924, "PARCEL_NO_": "107704022800", "Tax_Legal_": "2H 16 NAZARETH No. 1 RED HOOK QTR", "Name": "HASKIN PLESSER, LAUREN", "Address": "6288 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.70907153799999, "SHAPE_Area": 2194.7393874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367395.329800002276897, 254305.192400000989437 ], [ 367425.499700002372265, 254265.964899998158216 ], [ 367387.620899997651577, 254263.5439000017941 ], [ 367390.810199998319149, 254267.791900001466274 ], [ 367390.75450000166893, 254274.335299998521805 ], [ 367389.093299999833107, 254280.021200001239777 ], [ 367385.032999999821186, 254283.365499999374151 ], [ 367380.182499997317791, 254284.80350000038743 ], [ 367376.957299999892712, 254284.777100000530481 ], [ 367372.133799999952316, 254283.048799999058247 ], [ 367367.335500001907349, 254278.365499999374151 ], [ 367360.879600003361702, 254278.945999998599291 ], [ 367358.864100001752377, 254326.214400000870228 ], [ 367373.314800001680851, 254333.721000000834465 ], [ 367395.329800002276897, 254305.192400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85105432, "LATITUDE": 18.31753513, "OBJECTID_1": 39868, "PARCEL_NO_": "107704015500", "Tax_Legal_": "2D-1 NAZARETH NO.1 RED HOOK QTR.", "Name": "ROSEBERRY, DAN T. & MARGUERITE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81900, "Improved_V": 471000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.82167148900001, "SHAPE_Area": 1153.5754812800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367283.29730000346899, 254298.998199999332428 ], [ 367252.673699997365475, 254296.847699999809265 ], [ 367243.538099996745586, 254328.014699999243021 ], [ 367283.821299999952316, 254332.144099999219179 ], [ 367283.29730000346899, 254298.998199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85034868, "LATITUDE": 18.31736888, "OBJECTID_1": 39925, "PARCEL_NO_": "107704022900", "Tax_Legal_": "2H-19 NAZARETH RED HOOK QTR", "Name": "UNCONTAINED LLC", "Address": "6600 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.22300586399999, "SHAPE_Area": 1572.5448814900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367360.879600003361702, 254278.945999998599291 ], [ 367339.909999996423721, 254279.407600000500679 ], [ 367327.828000001609325, 254277.8310999982059 ], [ 367318.173799999058247, 254275.218899998813868 ], [ 367314.941299997270107, 254276.036899998784065 ], [ 367314.10809999704361, 254279.196400001645088 ], [ 367323.537399999797344, 254308.193399999290705 ], [ 367358.864100001752377, 254326.214400000870228 ], [ 367360.879600003361702, 254278.945999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84950223, "LATITUDE": 18.31727553, "OBJECTID_1": 39920, "PARCEL_NO_": "107704022400", "Tax_Legal_": "2Y-25 REM & 2Y-26A NAZARETH No.1 RED HOOK QTR", "Name": "Marie Anne Sonny and Barbara Sonny, Trustees", "Address": "6001 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132100, "Improved_V": 607900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.90803288000001, "SHAPE_Area": 2370.6478601399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367429.579800002276897, 254260.298700001090765 ], [ 367425.499700002372265, 254265.964899998158216 ], [ 367395.329800002276897, 254305.192400000989437 ], [ 367431.441299997270107, 254325.752999998629093 ], [ 367438.116499997675419, 254299.420899998396635 ], [ 367448.571599997580051, 254302.672899998724461 ], [ 367455.970499999821186, 254286.057000000029802 ], [ 367445.072300001978874, 254240.160500001162291 ], [ 367429.579800002276897, 254260.298700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603064700", "MAP": null, "PARCEL_NAM": "10M", "ACRE": null, "LONGITUDE": -64.87422262, "LATITUDE": 18.31732111, "OBJECTID_1": 38825, "PARCEL_NO_": "107603064700", "Tax_Legal_": "10M NADIR RED HOOK QTR", "Name": "FREDERICKS, GARRY E. & BARRY E", "Address": "6410 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36500, "Improved_V": 91200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.21657583199999, "SHAPE_Area": 1730.58460246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364802.124600000679493, 254296.21169999986887 ], [ 364808.5625, 254297.741999998688698 ], [ 364819.798799999058247, 254303.955699998885393 ], [ 364841.972000002861023, 254256.852200001478195 ], [ 364829.146499998867512, 254247.881299998611212 ], [ 364825.125799998641014, 254246.581900000572205 ], [ 364813.85360000282526, 254244.589800000190735 ], [ 364798.526399999856949, 254245.308699999004602 ], [ 364802.124600000679493, 254296.21169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84683794, "LATITUDE": 18.3172379, "OBJECTID_1": 40225, "PARCEL_NO_": "107803023100", "Tax_Legal_": "5-30 NAZARETH RED HOOK", "Name": "MILES, RAYMOND", "Address": "PO Box 7666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 147700, "Improved_V": 298900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.47028939500001, "SHAPE_Area": 2519.1558335599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367733.645900003612041, 254252.654899999499321 ], [ 367715.095299996435642, 254253.136300001293421 ], [ 367710.244800001382828, 254254.574299998581409 ], [ 367702.140399999916553, 254259.363099999725819 ], [ 367697.257500000298023, 254264.600499998778105 ], [ 367693.163000002503395, 254271.955200001597404 ], [ 367689.028999999165535, 254283.953699998557568 ], [ 367687.346199996769428, 254292.172600001096725 ], [ 367687.229299999773502, 254305.892700001597404 ], [ 367686.367299996316433, 254312.42960000038147 ], [ 367687.14299999922514, 254316.024500001221895 ], [ 367689.554799996316433, 254316.888599999248981 ], [ 367698.424199998378754, 254316.961199998855591 ], [ 367712.962999999523163, 254314.124899998307228 ], [ 367724.299900002777576, 254308.518199998885393 ], [ 367734.807199999690056, 254305.648899998515844 ], [ 367733.645900003612041, 254252.654899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84642404, "LATITUDE": 18.31718814, "OBJECTID_1": 40224, "PARCEL_NO_": "107803023000", "Tax_Legal_": "5 29 NAZARETH RED HOOK QTR", "Name": "RAYMOND MILES REVOCABLE TRUST", "Address": "PO Box 502666", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 133800, "Improved_V": 416800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.70613319, "SHAPE_Area": 2172.9502554000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367788.300700001418591, 254273.578299999237061 ], [ 367777.901399999856949, 254263.782900001853704 ], [ 367749.755900003015995, 254254.686599999666214 ], [ 367733.645900003612041, 254252.654899999499321 ], [ 367734.807199999690056, 254305.648899998515844 ], [ 367742.065800003707409, 254305.49720000103116 ], [ 367748.503700003027916, 254307.027499999850988 ], [ 367754.126299999654293, 254309.606699999421835 ], [ 367758.125500001013279, 254313.439100001007318 ], [ 367788.300700001418591, 254273.578299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803033000", "MAP": "D9-8317-T009", "PARCEL_NAM": "2Y-26", "ACRE": null, "LONGITUDE": -64.84915811, "LATITUDE": 18.31699866, "OBJECTID_1": 40258, "PARCEL_NO_": "107803033000", "Tax_Legal_": "2Y-26 REM & 2Y-25A NAZARETH NO. 1 RED HOOK QUARTER", "Name": "MENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 127400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.07159094399998, "SHAPE_Area": 2802.87780066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367483.91889999806881, 254203.911800000816584 ], [ 367473.61150000244379, 254203.030600000172853 ], [ 367459.751400001347065, 254220.860100001096725 ], [ 367445.072300001978874, 254240.160500001162291 ], [ 367455.970499999821186, 254286.057000000029802 ], [ 367448.571599997580051, 254302.672899998724461 ], [ 367460.639300003647804, 254305.938000001013279 ], [ 367465.466399997472763, 254307.244100000709295 ], [ 367477.801600001752377, 254310.104699999094009 ], [ 367479.241599999368191, 254285.106699999421835 ], [ 367483.466300003230572, 254211.769099999219179 ], [ 367483.91889999806881, 254203.911800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84841426, "LATITUDE": 18.31713172, "OBJECTID_1": 40262, "PARCEL_NO_": "107803033400", "Tax_Legal_": "8-50 NAZARETH NO.1 RED HOOK QUARTER", "Name": "YVONNE E BOWSKY REV.TRUST", "Address": "PO Box 8164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55900, "Improved_V": 487800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.42679055400001, "SHAPE_Area": 2139.6304229699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367555.582599997520447, 254260.303399998694658 ], [ 367526.660499997437, 254243.025199998170137 ], [ 367515.930699996650219, 254252.139499999582767 ], [ 367512.671300001442432, 254256.123599998652935 ], [ 367511.848800003528595, 254258.016699999570847 ], [ 367511.800300002098083, 254263.715900000184774 ], [ 367512.593999996781349, 254265.199999999254942 ], [ 367517.383299998939037, 254270.938799999654293 ], [ 367527.809600003063679, 254277.567999999970198 ], [ 367534.207999996840954, 254283.74210000038147 ], [ 367539.7837999984622, 254291.809300001710653 ], [ 367545.334499999880791, 254302.831599999219179 ], [ 367578.506599999964237, 254289.804200001060963 ], [ 367565.411100000143051, 254255.574099998921156 ], [ 367555.582599997520447, 254260.303399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84802082, "LATITUDE": 18.317106, "OBJECTID_1": 40263, "PARCEL_NO_": "107803033500", "Tax_Legal_": "8-51 NAZARETH NO.1 RED HOOK QTR.", "Name": "YVONNE E BOWSKY REV.TRUST", "Address": "PO Box 8164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.52224833099999, "SHAPE_Area": 1351.63004168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367603.953599996864796, 254237.027899999171495 ], [ 367565.411100000143051, 254255.574099998921156 ], [ 367578.506599999964237, 254289.804200001060963 ], [ 367603.394400000572205, 254302.673500001430511 ], [ 367602.708599999547005, 254288.524599999189377 ], [ 367597.231600001454353, 254268.848099999129772 ], [ 367596.549400001764297, 254254.276999998837709 ], [ 367599.864500001072884, 254243.749499998986721 ], [ 367603.953599996864796, 254237.027899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804020300", "MAP": "D9-2685-T84", "PARCEL_NAM": "7-W", "ACRE": "0.91", "LONGITUDE": -64.84001486, "LATITUDE": 18.31703811, "OBJECTID_1": 41812, "PARCEL_NO_": "107804020300", "Tax_Legal_": "7-W ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "MFVI HOUSE LLC", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 596300, "Improved_V": 2561100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.85017274399999, "SHAPE_Area": 3887.4512403700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368473.698700003325939, 254275.388199999928474 ], [ 368450.700400002300739, 254230.026000000536442 ], [ 368445.866099998354912, 254229.5641999989748 ], [ 368435.371500000357628, 254230.956000000238419 ], [ 368429.709299996495247, 254233.020599998533726 ], [ 368416.72919999808073, 254242.202500000596046 ], [ 368412.613099999725819, 254252.090199999511242 ], [ 368405.251999996602535, 254264.273400001227856 ], [ 368401.195299997925758, 254267.195500001311302 ], [ 368389.709100000560284, 254290.321699999272823 ], [ 368439.545800000429153, 254308.883699998259544 ], [ 368440.379100002348423, 254305.72410000115633 ], [ 368443.645700000226498, 254300.895700000226498 ], [ 368449.342100001871586, 254294.820599999278784 ], [ 368460.702399998903275, 254286.469799999147654 ], [ 368463.146499998867512, 254283.534499999135733 ], [ 368473.698700003325939, 254275.388199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704015400", "MAP": "A9-24-T64", "PARCEL_NAM": "2D-2", "ACRE": null, "LONGITUDE": -64.85093985, "LATITUDE": 18.31721956, "OBJECTID_1": 39867, "PARCEL_NO_": "107704015400", "Tax_Legal_": "2D-2 NAZARETH RED HOOK QTR", "Name": "ROSEBERRY, DAN THOMAS & MARGUERITE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 140800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.8360007, "SHAPE_Area": 1779.26278355 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367308.366800002753735, 254290.548500001430511 ], [ 367294.155199997127056, 254254.968499999493361 ], [ 367246.426399998366833, 254272.942999999970198 ], [ 367249.608400002121925, 254278.035300001502037 ], [ 367251.976999998092651, 254283.965300001204014 ], [ 367252.756399996578693, 254287.138000000268221 ], [ 367252.673699997365475, 254296.847699999809265 ], [ 367283.29730000346899, 254298.998199999332428 ], [ 367308.366800002753735, 254290.548500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84719796, "LATITUDE": 18.31699872, "OBJECTID_1": 40340, "PARCEL_NO_": "107803033800", "Tax_Legal_": "8-56-4 NAZARETH RED HOOK QTR.", "Name": "VICTOR, AGNES & KISHMA N.", "Address": "1712 Sugar Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.31905775899997, "SHAPE_Area": 2550.8098985199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367701.659500002861023, 254221.151200000196695 ], [ 367696.164599999785423, 254203.585499998182058 ], [ 367685.578199997544289, 254215.742300000041723 ], [ 367686.359399996697903, 254218.703999999910593 ], [ 367680.634199999272823, 254228.156300000846386 ], [ 367676.600900001823902, 254228.334399998188019 ], [ 367669.230800002813339, 254241.572999998927116 ], [ 367649.620399996638298, 254271.809999998658895 ], [ 367637.405199997127056, 254285.853199999779463 ], [ 367626.845799997448921, 254294.843800000846386 ], [ 367644.624200001358986, 254290.345300000160933 ], [ 367677.612899996340275, 254298.847899999469519 ], [ 367680.179300002753735, 254281.559300001710653 ], [ 367685.137699998915195, 254267.456599999219179 ], [ 367692.493400000035763, 254255.906599998474121 ], [ 367697.363600000739098, 254252.146800000220537 ], [ 367701.659500002861023, 254221.151200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704025900", "MAP": "D9-7318-T003", "PARCEL_NAM": "2H-1-REM", "ACRE": ".50", "LONGITUDE": -64.85088012, "LATITUDE": 18.31654291, "OBJECTID_1": 39969, "PARCEL_NO_": "107704025900", "Tax_Legal_": "2H-1,2H-2A & GREENBELT EASEMENT NAZARETH RED HOOK QUARTER", "Name": "WHITE BAY GROUP LLLP", "Address": "6100 RED HOOK PLAZA SUITE C-1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 259600, "Improved_V": 467800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.96855376500002, "SHAPE_Area": 2273.3284107600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367311.690099999308586, 254236.3597999997437 ], [ 367308.677799999713898, 254232.864900000393391 ], [ 367304.366899996995926, 254225.784600000828505 ], [ 367297.479000002145767, 254220.330400001257658 ], [ 367300.021799996495247, 254205.217399999499321 ], [ 367301.801100000739098, 254204.459199998527765 ], [ 367287.628499999642372, 254169.211100000888109 ], [ 367277.1554000005126, 254168.069899998605251 ], [ 367266.702100001275539, 254164.606800001114607 ], [ 367263.500200003385544, 254161.836399998515844 ], [ 367264.362300001084805, 254155.299600001424551 ], [ 367260.375699996948242, 254149.989599999040365 ], [ 367251.509900003671646, 254149.494800001382828 ], [ 367263.358199998736382, 254178.511599998921156 ], [ 367279.14639999717474, 254218.326400000602007 ], [ 367294.155199997127056, 254254.968499999493361 ], [ 367308.366800002753735, 254290.548500001430511 ], [ 367302.0996999964118, 254268.965700000524521 ], [ 367301.410199999809265, 254255.238899998366833 ], [ 367303.07320000231266, 254249.341899998486042 ], [ 367306.355999998748302, 254242.613800000399351 ], [ 367311.690099999308586, 254236.3597999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032900", "MAP": "A9-35-T65", "PARCEL_NAM": "8-43", "ACRE": null, "LONGITUDE": -64.84888418, "LATITUDE": 18.31689076, "OBJECTID_1": 40257, "PARCEL_NO_": "107803032900", "Tax_Legal_": "NAZARETH 8-43 RED HOOK QTR", "Name": "MARSHALL REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93100, "Improved_V": 970300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.17544615700001, "SHAPE_Area": 1777.46810456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367483.466300003230572, 254211.769099999219179 ], [ 367479.241599999368191, 254285.106699999421835 ], [ 367506.085900001227856, 254271.901799999177456 ], [ 367503.697599999606609, 254268.293600000441074 ], [ 367502.983000002801418, 254257.521999999880791 ], [ 367504.640500001609325, 254252.258200000971556 ], [ 367509.534199997782707, 254245.754399999976158 ], [ 367526.599799998104572, 254230.27309999987483 ], [ 367488.040700003504753, 254213.070099998265505 ], [ 367483.466300003230572, 254211.769099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84760614, "LATITUDE": 18.31692579, "OBJECTID_1": 40341, "PARCEL_NO_": "107803033900", "Tax_Legal_": "8-56-3 NAZARETH RED HOOK QTR.", "Name": "MARIO AUSTIN VERWEIJ REVOCABLE TRUST", "Address": "3017 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125600, "Improved_V": 368000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.33704439100001, "SHAPE_Area": 2420.7738039699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367633.185900002717972, 254213.202500000596046 ], [ 367627.458999998867512, 254222.86600000038743 ], [ 367614.415899999439716, 254239.435600001364946 ], [ 367609.529500000178814, 254245.095100000500679 ], [ 367606.237700000405312, 254252.878699999302626 ], [ 367605.398999996483326, 254256.671500001102686 ], [ 367606.122599996626377, 254266.387699998915195 ], [ 367611.592399999499321, 254286.908500000834465 ], [ 367615.60419999808073, 254289.263399999588728 ], [ 367619.639300003647804, 254288.874200001358986 ], [ 367626.133000001311302, 254283.861099999397993 ], [ 367635.078000001609325, 254275.068399999290705 ], [ 367642.410300001502037, 254266.262499999254942 ], [ 367664.475599996745586, 254231.823800001293421 ], [ 367633.185900002717972, 254213.202500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704015300", "MAP": "A9-24-T64", "PARCEL_NAM": "2D-3", "ACRE": null, "LONGITUDE": -64.85107559, "LATITUDE": 18.31692189, "OBJECTID_1": 39866, "PARCEL_NO_": "107704015300", "Tax_Legal_": "2D-3 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "VASBINDER, JOHN & SUSAN ANDREWS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 106100, "Improved_V": 81400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.97461179499999, "SHAPE_Area": 1896.02591108 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367279.14639999717474, 254218.326400000602007 ], [ 367247.588699996471405, 254231.155999999493361 ], [ 367235.218900002539158, 254263.352000001817942 ], [ 367243.231700003147125, 254269.328200001269579 ], [ 367246.426399998366833, 254272.942999999970198 ], [ 367294.155199997127056, 254254.968499999493361 ], [ 367279.14639999717474, 254218.326400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85035094, "LATITUDE": 18.31696648, "OBJECTID_1": 39923, "PARCEL_NO_": "107704022700", "Tax_Legal_": "2H 18 NAZARETH RED HOOK QTR", "Name": "ROXANA S GRBINICH", "Address": "6274 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021112, "Country": "United States", "Land_Value": 140700, "Improved_V": 298900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.73830662500001, "SHAPE_Area": 1771.3469786600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367354.855200000107288, 254228.867499999701977 ], [ 367339.502899996936321, 254232.541499998420477 ], [ 367323.328100003302097, 254238.10869999974966 ], [ 367316.832699999213219, 254243.332800000905991 ], [ 367314.386799998581409, 254246.479200001806021 ], [ 367311.930100001394749, 254250.892099998891354 ], [ 367310.270700000226498, 254256.366900000721216 ], [ 367310.218500003218651, 254262.488200001418591 ], [ 367313.427599996328354, 254264.414299998432398 ], [ 367331.933200001716614, 254269.209800001233816 ], [ 367348.854999996721745, 254270.614900000393391 ], [ 367366.610100001096725, 254268.860399998724461 ], [ 367368.2550999969244, 254265.074099998921156 ], [ 367370.69200000166893, 254262.983199998736382 ], [ 367354.855200000107288, 254228.867499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84603689, "LATITUDE": 18.31643655, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1037.64132488, "SHAPE_Area": 14919.1811129 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367779.645199999213219, 254248.387299999594688 ], [ 367761.199000000953674, 254236.626200001686811 ], [ 367750.788800001144409, 254228.097199998795986 ], [ 367741.197599999606609, 254218.097300000488758 ], [ 367734.734499998390675, 254219.522100001573563 ], [ 367730.711900003254414, 254218.433699999004602 ], [ 367727.506499998271465, 254216.085400000214577 ], [ 367725.911799997091293, 254213.961399998515844 ], [ 367725.188199996948242, 254204.245200000703335 ], [ 367731.692699998617172, 254197.965700000524521 ], [ 367739.757600001990795, 254197.820599999278784 ], [ 367744.568499997258186, 254201.026299998164177 ], [ 367746.947899997234344, 254205.689899999648333 ], [ 367746.899300001561642, 254211.388999998569489 ], [ 367756.494199998676777, 254220.966699998825788 ], [ 367770.912500001490116, 254232.272700000554323 ], [ 367781.342399999499321, 254238.479800000786781 ], [ 367794.160700000822544, 254248.295000001788139 ], [ 367809.34570000320673, 254264.251299999654293 ], [ 367841.693499997258186, 254253.328099999576807 ], [ 367832.913999997079372, 254242.70160000026226 ], [ 367823.383900001645088, 254225.524999998509884 ], [ 367812.412000000476837, 254188.282699998468161 ], [ 367806.960199996829033, 254165.651099998503923 ], [ 367798.934900000691414, 254161.152399998158216 ], [ 367795.749200001358986, 254156.482299998402596 ], [ 367794.993199996650219, 254150.565499998629093 ], [ 367795.866099998354912, 254142.762200001627207 ], [ 367799.9425999969244, 254137.518199998885393 ], [ 367805.613799996674061, 254134.398200001567602 ], [ 367812.876000002026558, 254133.824400000274181 ], [ 367819.306699998676777, 254136.199000000953674 ], [ 367823.309500001370907, 254139.609299998730421 ], [ 367826.482600003480911, 254145.756999999284744 ], [ 367825.588200002908707, 254156.093199998140335 ], [ 367823.950400002300739, 254159.035100001841784 ], [ 367819.88459999859333, 254163.012600000947714 ], [ 367816.646799996495247, 254164.463799998164177 ], [ 367827.543200001120567, 254210.571400001645088 ], [ 367833.066899999976158, 254224.759899999946356 ], [ 367834.666900001466274, 254226.250599998980761 ], [ 367837.035499997437, 254232.180599998682737 ], [ 367839.431100003421307, 254234.944400001317263 ], [ 367841.01129999756813, 254238.757100000977516 ], [ 367850.590000003576279, 254250.234499998390675 ], [ 367882.131399996578693, 254239.304699998348951 ], [ 367884.557599999010563, 254238.480200000107288 ], [ 367869.543300002813339, 254202.471400000154972 ], [ 367868.002599999308586, 254194.015000000596046 ], [ 367861.703199997544289, 254176.231600001454353 ], [ 367860.225400000810623, 254160.387499999254942 ], [ 367864.465599998831749, 254135.935400001704693 ], [ 367865.295299999415874, 254133.197900000959635 ], [ 367863.72580000013113, 254128.11879999935627 ], [ 367821.838899999856949, 254122.920899998396635 ], [ 367787.050599999725819, 254136.357200000435114 ], [ 367742.554200001060963, 254153.513799998909235 ], [ 367713.107900001108646, 254202.457600001245737 ], [ 367701.659500002861023, 254221.151200000196695 ], [ 367697.363600000739098, 254252.146800000220537 ], [ 367703.04559999704361, 254247.760400000959635 ], [ 367715.174400001764297, 254243.848900001496077 ], [ 367736.946699999272823, 254243.815999999642372 ], [ 367753.053099997341633, 254246.269799999892712 ], [ 367782.803999997675419, 254256.223600000143051 ], [ 367794.00959999859333, 254266.025600001215935 ], [ 367796.396200001239777, 254269.844799999147654 ], [ 367800.445699997246265, 254267.767000000923872 ], [ 367786.853500001132488, 254254.145799998193979 ], [ 367779.645199999213219, 254248.387299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84989253000001, "LATITUDE": 18.31690399, "OBJECTID_1": 39922, "PARCEL_NO_": "107704022600", "Tax_Legal_": "2H 17 NAZARETH No.1 RED HOOK QTR", "Name": "SCHNELL, MICHAEL CHRISTOPHER & JESSICA MICHELLE", "Address": "6288 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 118600, "Improved_V": 194400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.508672378, "SHAPE_Area": 1897.38958499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367370.69200000166893, 254262.983199998736382 ], [ 367373.936999998986721, 254260.687699999660254 ], [ 367380.39469999819994, 254259.896200001239777 ], [ 367384.417300000786781, 254260.984600000083447 ], [ 367387.620899997651577, 254263.5439000017941 ], [ 367425.499700002372265, 254265.964899998158216 ], [ 367429.579800002276897, 254260.298700001090765 ], [ 367384.762500002980232, 254220.457400001585484 ], [ 367371.006700001657009, 254226.044399999082088 ], [ 367354.855200000107288, 254228.867499999701977 ], [ 367370.69200000166893, 254262.983199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704015200", "MAP": "A9-24-T64", "PARCEL_NAM": "2D-5", "ACRE": ".54", "LONGITUDE": -64.85156442, "LATITUDE": 18.31678114, "OBJECTID_1": 39865, "PARCEL_NO_": "107704015200", "Tax_Legal_": "2D-5 NAZARETH 1 RED HOOK", "Name": "SECRET HARBOUR BEACH ASS", "Address": "6280 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 140800, "Improved_V": 70900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.85673943099999, "SHAPE_Area": 2657.7019269799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367247.588699996471405, 254231.155999999493361 ], [ 367215.595100000500679, 254200.496599998325109 ], [ 367213.154600001871586, 254203.009799998253584 ], [ 367207.479900002479553, 254206.551899999380112 ], [ 367197.798699997365475, 254207.105999998748302 ], [ 367187.286100000143051, 254210.608500000089407 ], [ 367177.558200001716614, 254216.650600001215935 ], [ 367173.483499996364117, 254221.683499999344349 ], [ 367179.844099998474121, 254232.290199998766184 ], [ 367186.229800000786781, 254239.941899999976158 ], [ 367191.834499999880791, 254244.631799999624491 ], [ 367203.070699997246265, 254250.845499999821186 ], [ 367220.768200002610683, 254255.845499999821186 ], [ 367233.613499999046326, 254262.494500000029802 ], [ 367235.218900002539158, 254263.352000001817942 ], [ 367247.588699996471405, 254231.155999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85252839, "LATITUDE": 18.31649866, "OBJECTID_1": 39860, "PARCEL_NO_": "107704014700", "Tax_Legal_": "2D-12 NAZARETH NO.1 RED HOOK QTR", "Name": "BASSIL, MADELEINE A.", "Address": "2 Acentury Rd", "City": "Palisades", "State": "New York", "Zip": 10964, "Country": "United States", "Land_Value": 210900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.94850343, "SHAPE_Area": 2703.0247077099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367148.561999998986721, 254202.907400000840425 ], [ 367139.078199997544289, 254190.160100001841784 ], [ 367131.927500002086163, 254177.646999999880791 ], [ 367127.895900003612041, 254177.614000000059605 ], [ 367127.114799998700619, 254174.652300000190735 ], [ 367099.70549999922514, 254173.794700000435114 ], [ 367088.39919999986887, 254175.813099998980761 ], [ 367081.138800002634525, 254176.175900001078844 ], [ 367070.631499998271465, 254179.045200001448393 ], [ 367077.829000003635883, 254186.070199999958277 ], [ 367081.813799999654293, 254191.5912000015378 ], [ 367085.759099997580051, 254201.756000000983477 ], [ 367092.895400002598763, 254215.957699999213219 ], [ 367104.849799998104572, 254232.520799998193979 ], [ 367108.464599996805191, 254234.700800001621246 ], [ 367148.561999998986721, 254202.907400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84957621, "LATITUDE": 18.31674288, "OBJECTID_1": 39921, "PARCEL_NO_": "107704022500", "Tax_Legal_": "2H-15&2H-14A NAZARETH RED HOOK QTR", "Name": "THEODORE R. LYNN REVOCABLE TRUST", "Address": "14 Hunters Way", "City": "Hamden", "State": "Connecticut", "Zip": 6514, "Country": "United States", "Land_Value": 199900, "Improved_V": 240500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.100469363, "SHAPE_Area": 2097.1241727699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367415.524700000882149, 254206.354800000786781 ], [ 367406.678599998354912, 254203.538199998438358 ], [ 367401.777800001204014, 254210.886399999260902 ], [ 367396.117399998009205, 254212.739900000393391 ], [ 367387.998599998652935, 254219.217300001531839 ], [ 367384.762500002980232, 254220.457400001585484 ], [ 367429.579800002276897, 254260.298700001090765 ], [ 367445.072300001978874, 254240.160500001162291 ], [ 367459.751400001347065, 254220.860100001096725 ], [ 367447.6908999979496, 254216.750599998980761 ], [ 367444.472800001502037, 254215.879900000989437 ], [ 367437.23759999871254, 254213.287500001490116 ], [ 367418.740900002419949, 254207.436599999666214 ], [ 367415.524700000882149, 254206.354800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84830428, "LATITUDE": 18.31681779, "OBJECTID_1": 40256, "PARCEL_NO_": "107803032800", "Tax_Legal_": "NAZARETH 8-52 RED HOOK QTR", "Name": "MARSHALL REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88800, "Improved_V": 668500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.56372266899999, "SHAPE_Area": 1420.31417607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367583.047100000083447, 254230.101799998432398 ], [ 367563.953400000929832, 254215.308800000697374 ], [ 367548.43860000371933, 254222.430300001055002 ], [ 367532.175700001418591, 254238.340300001204014 ], [ 367529.061599999666214, 254240.985599998384714 ], [ 367526.660499997437, 254243.025199998170137 ], [ 367555.582599997520447, 254260.303399998694658 ], [ 367565.411100000143051, 254255.574099998921156 ], [ 367572.010399997234344, 254247.772900000214577 ], [ 367585.281599998474121, 254232.084899999201298 ], [ 367583.047100000083447, 254230.101799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": "D9-5817-T94", "PARCEL_NAM": "19C", "ACRE": "1.002", "LONGITUDE": -64.88392452, "LATITUDE": 18.31644632, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.991374415, "SHAPE_Area": 3982.8507106900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363780.332900002598763, 254121.296000000089407 ], [ 363746.887500002980232, 254166.407400000840425 ], [ 363803.776000000536442, 254209.091699998825788 ], [ 363810.343400001525879, 254195.424400001764297 ], [ 363816.869400002062321, 254186.611900001764297 ], [ 363827.443199999630451, 254175.932599999010563 ], [ 363841.24040000140667, 254165.490899998694658 ], [ 363780.332900002598763, 254121.296000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016300", "MAP": "D9-7318-T003", "PARCEL_NAM": "2H-2-REM", "ACRE": ".53", "LONGITUDE": -64.85059564, "LATITUDE": 18.31646123, "OBJECTID_1": 39873, "PARCEL_NO_": "107704016300", "Tax_Legal_": "2H-2&2H-1A NAZARETH No.1 RED HOOK QTR.", "Name": "SPARKS, SUSANA", "Address": "16525 SW Whitetail Ln", "City": "Beaverton", "State": "Oregon", "Zip": 97007, "Country": "United States", "Land_Value": 172900, "Improved_V": 439400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.824063317, "SHAPE_Area": 2036.8337393300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367292.519400000572205, 254181.375100001692772 ], [ 367297.059399999678135, 254181.665100000798702 ], [ 367296.162100002169609, 254190.43470000103116 ], [ 367313.686599999666214, 254234.019000001251698 ], [ 367317.745099999010563, 254230.885800000280142 ], [ 367323.412600003182888, 254228.187899999320507 ], [ 367341.200099997222424, 254222.63399999961257 ], [ 367319.153800003230572, 254160.181000001728535 ], [ 367311.862800002098083, 254164.132100000977516 ], [ 367303.778099998831749, 254166.598999999463558 ], [ 367287.628499999642372, 254169.211100000888109 ], [ 367292.519400000572205, 254181.375100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016000", "MAP": "A9-24-T64", "PARCEL_NAM": "2D-4", "ACRE": null, "LONGITUDE": -64.8512376, "LATITUDE": 18.31650681, "OBJECTID_1": 39870, "PARCEL_NO_": "107704016000", "Tax_Legal_": "2D-4 NAZARETH No.1 RED HOOK QUARTER", "Name": "SUBEL HOLDINGS II LLC", "Address": "6100 Red Hook Quarter", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.60760516799999, "SHAPE_Area": 2332.95057331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367263.358199998736382, 254178.511599998921156 ], [ 367227.122699998319149, 254172.515500001609325 ], [ 367223.863300003111362, 254176.499600000679493 ], [ 367223.839900001883507, 254179.243700001388788 ], [ 367221.298699997365475, 254193.577199999243021 ], [ 367219.673500001430511, 254195.041600000113249 ], [ 367218.845600001513958, 254197.567899998277426 ], [ 367215.595100000500679, 254200.496599998325109 ], [ 367247.588699996471405, 254231.155999999493361 ], [ 367279.14639999717474, 254218.326400000602007 ], [ 367263.358199998736382, 254178.511599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84727831, "LATITUDE": 18.31639408, "OBJECTID_1": 40339, "PARCEL_NO_": "107803033700", "Tax_Legal_": "NAZARETH ESTAT 8-56-5 No.1 RED HOOK QTR.", "Name": "SHARPLESS, CHARLES E & CRYSTAL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125600, "Improved_V": 334200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.13434960500001, "SHAPE_Area": 2526.7277197200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367693.023800000548363, 254193.638399999588728 ], [ 367675.729099996387959, 254141.356699999421835 ], [ 367672.493100002408028, 254142.596799999475479 ], [ 367670.050800003111362, 254145.320999998599291 ], [ 367666.73200000077486, 254156.270700000226498 ], [ 367656.890799999237061, 254175.610800001770258 ], [ 367633.185900002717972, 254213.202500000596046 ], [ 367664.475599996745586, 254231.823800001293421 ], [ 367673.483499996364117, 254215.643300000578165 ], [ 367693.023800000548363, 254193.638399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032600", "MAP": "D9-9050-T016", "PARCEL_NAM": "8-42 REM", "ACRE": ".541", "LONGITUDE": -64.84862132000001, "LATITUDE": 18.31647949, "OBJECTID_1": 40254, "PARCEL_NO_": "107803032600", "Tax_Legal_": "8-42 NAZARETH No.1 red hook quarter", "Name": "HONEY BADGER I LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168900, "Improved_V": 548600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.094344191, "SHAPE_Area": 2159.0896968000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367516.429899998009205, 254176.364100001752377 ], [ 367519.339400000870228, 254186.304699998348951 ], [ 367509.708599999547005, 254195.194699998944998 ], [ 367500.996500000357628, 254196.318799998611212 ], [ 367488.040700003504753, 254213.070099998265505 ], [ 367526.599799998104572, 254230.27309999987483 ], [ 367540.41499999910593, 254217.720600001513958 ], [ 367545.324799999594688, 254209.31700000166893 ], [ 367547.000399999320507, 254201.942499998956919 ], [ 367547.923600003123283, 254188.228900000452995 ], [ 367544.788199998438358, 254177.648600000888109 ], [ 367542.406999997794628, 254173.196100000292063 ], [ 367540.009700000286102, 254170.643399998545647 ], [ 367535.996100001037121, 254168.499600000679493 ], [ 367519.880599997937679, 254167.101199999451637 ], [ 367519.839299999177456, 254171.956000000238419 ], [ 367516.429899998009205, 254176.364100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84797379, "LATITUDE": 18.31652428, "OBJECTID_1": 40255, "PARCEL_NO_": "107803032700", "Tax_Legal_": "8-53 NAZARETH RED HOOK QTR", "Name": "FEDERMAN, ELIYAHU & SHAINA", "Address": "5333 Collins Ave", "City": "Miami Beach", "State": "Florida", "Zip": 33140, "Country": "United States", "Land_Value": 58400, "Improved_V": 381000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.24517004200001, "SHAPE_Area": 1176.4062295700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367617.784000001847744, 254191.706900000572205 ], [ 367598.152300000190735, 254178.346500001847744 ], [ 367596.352700002491474, 254182.714699998497963 ], [ 367589.814000003039837, 254193.004799999296665 ], [ 367579.229500003159046, 254204.950500000268221 ], [ 367567.867399998009205, 254213.512299999594688 ], [ 367563.953400000929832, 254215.308800000697374 ], [ 367583.047100000083447, 254230.101799998432398 ], [ 367585.281599998474121, 254232.084899999201298 ], [ 367614.775600001215935, 254197.219799999147654 ], [ 367617.784000001847744, 254191.706900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804020700", "MAP": "D9-2685-T84", "PARCEL_NAM": "7-S", "ACRE": "0.82", "LONGITUDE": -64.83927106, "LATITUDE": 18.3163174, "OBJECTID_1": 41815, "PARCEL_NO_": "107804020700", "Tax_Legal_": "NAZARETH 7-S RED HOOK QTR.", "Name": "SUSAN PROCTER DUSENBERRY REVOC TR", "Address": "11 E 86th St", "City": "New York", "State": "New York", "Zip": 10028, "Country": "United States", "Land_Value": 474000, "Improved_V": 1243500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.39836107100001, "SHAPE_Area": 3076.66813099 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368546.337999999523163, 254172.969099998474121 ], [ 368493.328199997544289, 254148.259500000625849 ], [ 368494.917400002479553, 254151.016699999570847 ], [ 368493.945699997246265, 254170.429400000721216 ], [ 368489.818800002336502, 254181.583500001579523 ], [ 368481.608199998736382, 254198.8260000012815 ], [ 368478.348800003528595, 254202.810100000351667 ], [ 368528.871399998664856, 254235.520899999886751 ], [ 368530.604500003159046, 254221.3918999992311 ], [ 368535.690499998629093, 254192.302600000053644 ], [ 368538.167000003159046, 254185.567800000309944 ], [ 368539.804799996316433, 254182.625900000333786 ], [ 368546.337999999523163, 254172.969099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016400", "MAP": "D9-391-T63", "PARCEL_NAM": "2H-3", "ACRE": null, "LONGITUDE": -64.85035286, "LATITUDE": 18.31641715, "OBJECTID_1": 39874, "PARCEL_NO_": "107704016400", "Tax_Legal_": "2H-3 NAZARETH 1 RED HOOK QTR", "Name": "SPARKS, SUSANA", "Address": "16525 SW Whitetail Ln", "City": "Beaverton", "State": "Oregon", "Zip": 97007, "Country": "United States", "Land_Value": 196700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.65890884199999, "SHAPE_Area": 1340.04039438 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367366.238899998366833, 254217.772700000554323 ], [ 367332.103299997746944, 254154.587400000542402 ], [ 367319.153800003230572, 254160.181000001728535 ], [ 367341.200099997222424, 254222.63399999961257 ], [ 367366.238899998366833, 254217.772700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84933205, "LATITUDE": 18.3164467, "OBJECTID_1": 40253, "PARCEL_NO_": "107803032500", "Tax_Legal_": "NAZARETH ESTATE 2H-14&2H-15A No.1 RED HOPOK QTR.", "Name": "INIAMA, GRACE E.", "Address": "PO Box 306867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 113500, "Improved_V": 202000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.610116718, "SHAPE_Area": 2302.0132970099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367459.751400001347065, 254220.860100001096725 ], [ 367473.61150000244379, 254203.030600000172853 ], [ 367483.91889999806881, 254203.911800000816584 ], [ 367485.343099996447563, 254179.189599998295307 ], [ 367475.429200001060963, 254178.980799999088049 ], [ 367423.026000000536442, 254177.707499999552965 ], [ 367416.460500001907349, 254191.163800001144409 ], [ 367406.678599998354912, 254203.538199998438358 ], [ 367415.524700000882149, 254206.354800000786781 ], [ 367418.740900002419949, 254207.436599999666214 ], [ 367437.23759999871254, 254213.287500001490116 ], [ 367444.472800001502037, 254215.879900000989437 ], [ 367447.6908999979496, 254216.750599998980761 ], [ 367459.751400001347065, 254220.860100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804021000", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-P", "ACRE": "0.955", "LONGITUDE": -64.83866474, "LATITUDE": 18.31633677, "OBJECTID_1": 41818, "PARCEL_NO_": "107804021000", "Tax_Legal_": "7-P NAZARETH RED HOOK QUARTER", "Name": "WALTER FEDDERSEN REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 443600, "Improved_V": 1091400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.20358719699999, "SHAPE_Area": 3591.7989673699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368608.059000000357628, 254216.326299998909235 ], [ 368599.700300000607967, 254156.307300001382828 ], [ 368580.381099998950958, 254152.349500000476837 ], [ 368569.866700001060963, 254156.063099998980761 ], [ 368568.230700001120567, 254158.7939000017941 ], [ 368568.20549999922514, 254161.749000001698732 ], [ 368570.602899998426437, 254164.30180000141263 ], [ 368566.528200000524521, 254169.334699999541044 ], [ 368560.070500001311302, 254170.126200001686811 ], [ 368551.105700001120567, 254181.240800000727177 ], [ 368545.350100003182888, 254194.281500000506639 ], [ 368543.616999998688698, 254208.410599999129772 ], [ 368541.97919999808073, 254211.35249999910593 ], [ 368541.925200000405312, 254217.684799998998642 ], [ 368543.5253000035882, 254219.175599999725819 ], [ 368567.631899997591972, 254229.083200000226498 ], [ 368576.524700000882149, 254226.411699999123812 ], [ 368608.059000000357628, 254216.326299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803034300", "MAP": "D9-2601-T84", "PARCEL_NAM": "8-56-6", "ACRE": ".803", "LONGITUDE": -64.84689545000001, "LATITUDE": 18.31617076, "OBJECTID_1": 40345, "PARCEL_NO_": "107803034300", "Tax_Legal_": "NAZARETH 8-56-6 RED HOOK QTR.", "Name": "KOZYN, THOMAS", "Address": "6629 Cabrita Point Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 160400, "Improved_V": 331400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.04510165400001, "SHAPE_Area": 2945.09973906 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367693.023800000548363, 254193.638399999588728 ], [ 367696.164599999785423, 254203.585499998182058 ], [ 367701.659500002861023, 254221.151200000196695 ], [ 367713.107900001108646, 254202.457600001245737 ], [ 367742.554200001060963, 254153.513799998909235 ], [ 367702.411200001835823, 254132.920299999415874 ], [ 367675.729099996387959, 254141.356699999421835 ], [ 367693.023800000548363, 254193.638399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85009423, "LATITUDE": 18.31630944, "OBJECTID_1": 39875, "PARCEL_NO_": "107704016500", "Tax_Legal_": "NAZARETH 2H-4 RED HOOK QTR", "Name": "KELLY, JASON and CHERYL COHEN-KELLY", "Address": "7324 W 89th St", "City": "Los Angeles", "State": "California", "Zip": 90045, "Country": "United States", "Land_Value": 191100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.760336473, "SHAPE_Area": 2855.1473876700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367408.442299999296665, 254185.820799998939037 ], [ 367347.549199998378754, 254139.937300000339746 ], [ 367345.91669999808073, 254142.245999999344349 ], [ 367332.103299997746944, 254154.587400000542402 ], [ 367366.238899998366833, 254217.772700000554323 ], [ 367377.561499997973442, 254213.854600001126528 ], [ 367389.717299997806549, 254206.776900000870228 ], [ 367402.722599998116493, 254194.639899998903275 ], [ 367408.442299999296665, 254185.820799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010300", "MAP": "D9-7891-T006", "PARCEL_NAM": "18-M", "ACRE": "19.92", "LONGITUDE": -64.88894641, "LATITUDE": 18.31488096, "OBJECTID_1": 42228, "PARCEL_NO_": "109402010300", "Tax_Legal_": "BOVONI ESTATE 18M WESTERN PORTION", "Name": "BOLONGO INVESTMENTS LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 1643300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1803.1019017199999, "SHAPE_Area": 82020.4246346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363445.435400001704693, 254075.015799999237061 ], [ 363446.995200000703335, 254065.420800000429153 ], [ 363358.116800002753735, 253894.292300000786781 ], [ 363465.662100002169609, 253859.28660000115633 ], [ 363441.272399999201298, 253852.484000001102686 ], [ 363408.180900000035763, 253846.630100000649691 ], [ 363377.63849999755621, 253840.797699999064207 ], [ 363352.729900002479553, 253831.972199998795986 ], [ 363318.258500002324581, 253808.369300000369549 ], [ 363271.619699999690056, 253776.555399999022484 ], [ 363223.943899996578693, 253746.759899999946356 ], [ 363207.708099998533726, 253713.794900000095367 ], [ 363198.301899999380112, 253723.054000001400709 ], [ 363196.644299998879433, 253728.317699998617172 ], [ 363193.375900000333786, 253733.357200000435114 ], [ 363219.750399999320507, 253761.015299998223782 ], [ 363255.098700001835823, 253776.503299999982119 ], [ 363250.908900000154972, 253795.045200001448393 ], [ 363283.902999997138977, 253802.914700001478195 ], [ 363264.353699997067451, 253825.974899999797344 ], [ 363235.844999998807907, 253859.516600001603365 ], [ 363206.533699996769428, 253892.62950000166893 ], [ 363182.462999999523163, 253878.500300001353025 ], [ 363162.405900001525879, 253866.514899998903275 ], [ 363157.443899996578693, 253881.039700001478195 ], [ 363155.800700001418591, 253884.614900000393391 ], [ 363150.894500002264977, 253892.5962999984622 ], [ 363149.251299999654293, 253896.171399999409914 ], [ 363146.805399999022484, 253899.317800000309944 ], [ 363139.478500001132488, 253907.490499999374151 ], [ 363134.611800000071526, 253910.828099999576807 ], [ 363123.229900002479553, 253921.711899999529123 ], [ 363152.10249999910593, 253940.102200001478195 ], [ 363134.146099999547005, 253965.497600000351667 ], [ 363105.269900001585484, 253947.529399998486042 ], [ 363101.713799998164177, 253986.341499999165535 ], [ 363102.061499997973442, 254040.173200000077486 ], [ 363164.034299999475479, 254053.979299999773502 ], [ 363159.830099999904633, 254074.209899999201298 ], [ 363099.828500002622604, 254112.982200000435114 ], [ 363100.419100001454353, 254138.318199999630451 ], [ 363102.800200000405312, 254142.770700000226498 ], [ 363242.767700001597404, 254182.757500000298023 ], [ 363264.379199996590614, 254106.940699998289347 ], [ 363445.435400001704693, 254075.015799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032300", "MAP": "A9-35-T65", "PARCEL_NAM": "8-41", "ACRE": null, "LONGITUDE": -64.84884419, "LATITUDE": 18.31619176, "OBJECTID_1": 40251, "PARCEL_NO_": "107803032300", "Tax_Legal_": "8-41 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "HONEY BADGER I LLC", "Address": "6510 Red Hook", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 170600, "Improved_V": 587900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.09514459900001, "SHAPE_Area": 1951.1567691499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367487.773900002241135, 254136.993000000715256 ], [ 367483.466300003230572, 254211.769099999219179 ], [ 367488.040700003504753, 254213.070099998265505 ], [ 367519.839299999177456, 254171.956000000238419 ], [ 367519.880599997937679, 254167.101199999451637 ], [ 367520.764300003647804, 254158.031399998813868 ], [ 367522.535099998116493, 254139.4695999994874 ], [ 367487.773900002241135, 254136.993000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85189298, "LATITUDE": 18.3163205, "OBJECTID_1": 39864, "PARCEL_NO_": "107704015100", "Tax_Legal_": "2D 8 NAZARETH\nRED HOOK QTR", "Name": "SECRET HARBOR ESTATES LLC", "Address": "1353 Ave Luis Vigoreaux", "City": "Guaynabo", "State": "Puerto Rico", "Zip": 966, "Country": "United States", "Land_Value": 122200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.73319319500001, "SHAPE_Area": 2869.9055466700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367209.443099997937679, 254165.404800001531839 ], [ 367175.485399998724461, 254151.939599998295307 ], [ 367140.924599997699261, 254162.732999999076128 ], [ 367150.368400000035763, 254190.041400000452995 ], [ 367162.329999998211861, 254205.760200001299381 ], [ 367176.030100002884865, 254206.716699998825788 ], [ 367192.183300003409386, 254203.682500001043081 ], [ 367200.277000002563, 254200.160199999809265 ], [ 367206.765299998223782, 254195.780299998819828 ], [ 367210.820200003683567, 254193.069299999624491 ], [ 367213.267899997532368, 254189.711800001561642 ], [ 367214.120999999344349, 254184.230399999767542 ], [ 367214.142599999904633, 254181.697399999946356 ], [ 367213.384800001978874, 254175.991700001060963 ], [ 367210.197300001978874, 254171.532600000500679 ], [ 367209.443099997937679, 254165.404800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804021100", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-O", "ACRE": "0.841", "LONGITUDE": -64.83806709, "LATITUDE": 18.31618311, "OBJECTID_1": 41819, "PARCEL_NO_": "107804021100", "Tax_Legal_": "NAZARETH ESTATE 7-O&7-P-1 RED HOOK QTR.", "Name": "FPF FAMILY REVOCABLE TRUST", "Address": "6002 NAZARETH", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 303300, "Improved_V": 1011300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.00683626099999, "SHAPE_Area": 3901.31895528 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368685.837200000882149, 254173.266499999910593 ], [ 368685.144199997186661, 254159.961899999529123 ], [ 368682.777400001883507, 254153.820799998939037 ], [ 368674.768200002610683, 254147.422499999403954 ], [ 368612.601300001144409, 254156.412900000810623 ], [ 368599.700300000607967, 254156.307300001382828 ], [ 368608.059000000357628, 254216.326299998909235 ], [ 368623.423900000751019, 254211.174699999392033 ], [ 368641.231100000441074, 254203.298900000751019 ], [ 368662.288699999451637, 254192.494300000369549 ], [ 368680.119300000369549, 254181.874499998986721 ], [ 368683.375100001692772, 254178.312600001692772 ], [ 368685.837200000882149, 254173.266499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032100", "MAP": "A9-35-T65", "PARCEL_NAM": "8-39", "ACRE": null, "LONGITUDE": -64.84811308, "LATITUDE": 18.31616194, "OBJECTID_1": 40249, "PARCEL_NO_": "107803032100", "Tax_Legal_": "8-39 NAZARETH RED HOOK QTR", "Name": "HONEY BADGER I LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93100, "Improved_V": 539200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.00981561500001, "SHAPE_Area": 1963.43484102 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367606.396999999880791, 254139.522700000554323 ], [ 367574.148199997842312, 254129.450300000607967 ], [ 367574.35980000346899, 254132.837000001221895 ], [ 367556.490000002086163, 254185.329599998891354 ], [ 367557.565099999308586, 254192.318599998950958 ], [ 367556.64190000295639, 254206.032200001180172 ], [ 367558.245600000023842, 254207.100699998438358 ], [ 367560.664499998092651, 254207.12049999833107 ], [ 367565.525799997150898, 254204.41609999909997 ], [ 367576.902300000190735, 254194.165600001811981 ], [ 367586.689499996602535, 254181.157900001853704 ], [ 367606.396999999880791, 254139.522700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401022900", "MAP": "D9-3833-T87", "PARCEL_NAM": "108", "ACRE": "3.86", "LONGITUDE": -64.89787907, "LATITUDE": 18.31542518, "OBJECTID_1": 42218, "PARCEL_NO_": "109401022900", "Tax_Legal_": "EST. BOLONGO BAY #108 FRENCHMAN BAY QTR.", "Name": "CHRISTIAN FELLOWSHIP MINISTRIE", "Address": "PO Box 308802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 147800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 610.34280390799995, "SHAPE_Area": 17288.6425308 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362320.95440000295639, 253914.512299999594688 ], [ 362316.9695999994874, 253908.991300001740456 ], [ 362297.805799998342991, 253981.450599998235703 ], [ 362291.958499997854233, 254005.256299998611212 ], [ 362285.299400001764297, 254029.688700001686811 ], [ 362248.439900003373623, 254096.936900001019239 ], [ 362261.146700002253056, 254119.839000001549721 ], [ 362271.402199998497963, 254146.520799998193979 ], [ 362276.990599997341633, 254153.110399998724461 ], [ 362283.398000001907349, 254158.229100000113249 ], [ 362296.252199999988079, 254163.822700001299381 ], [ 362303.51799999922514, 254162.826699998229742 ], [ 362308.39190000295639, 254158.644799999892712 ], [ 362310.038599997758865, 254154.64750000089407 ], [ 362314.116999998688698, 254149.192400000989437 ], [ 362314.948399998247623, 254146.243900001049042 ], [ 362316.573700003325939, 254144.779500000178814 ], [ 362319.044699996709824, 254138.678100001066923 ], [ 362320.670000001788139, 254137.213700000196695 ], [ 362322.323899999260902, 254132.372099999338388 ], [ 362324.771600000560284, 254129.014600001275539 ], [ 362325.604900002479553, 254125.855000000447035 ], [ 362327.23369999974966, 254123.968499999493361 ], [ 362335.4712999984622, 254103.559900000691414 ], [ 362337.101899996399879, 254101.46229999884963 ], [ 362337.942400000989437, 254097.458399999886751 ], [ 362363.511699996888638, 254030.32880000025034 ], [ 362389.181699998676777, 253951.378800000995398 ], [ 362386.791500002145767, 253947.981800001114607 ], [ 362353.027099996805191, 253935.884199999272823 ], [ 362336.969200000166893, 253927.731199998408556 ], [ 362326.55009999871254, 253920.257699999958277 ], [ 362320.95440000295639, 253914.512299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": "D9-5817-T94", "PARCEL_NAM": "19B", "ACRE": "1.002", "LONGITUDE": -64.8844892, "LATITUDE": 18.31606769, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.91015389799998, "SHAPE_Area": 4278.4311294400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363685.397299997508526, 254124.979699999094009 ], [ 363739.857799999415874, 254161.206300001591444 ], [ 363731.161399997770786, 254154.7972999997437 ], [ 363732.463699996471405, 254155.734700001776218 ], [ 363739.857799999415874, 254161.206300001591444 ], [ 363739.874399997293949, 254161.218100000172853 ], [ 363746.887500002980232, 254166.407400000840425 ], [ 363780.332900002598763, 254121.296000000089407 ], [ 363719.425399996340275, 254077.101100001484156 ], [ 363686.780900001525879, 254122.852400001138449 ], [ 363685.397299997508526, 254124.979699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804021600", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-M-2", "ACRE": "1.27", "LONGITUDE": -64.83613213, "LATITUDE": 18.31601699, "OBJECTID_1": 41822, "PARCEL_NO_": "107804021600", "Tax_Legal_": "NAZARETH 7-M-2 RED HOOK QTR.", "Name": "SAMELSON, HEATHER A. AND BRIAN D SAMELSON", "Address": "4971 Bonita Bay Boulevard unit 2604", "City": "Bonita Springs", "State": "Florida", "Zip": 341340000, "Country": "United States", "Land_Value": 762100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.97848062499997, "SHAPE_Area": 4532.53636439 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368845.292900003492832, 254197.369600001722574 ], [ 368850.973099999129772, 254193.194299999624491 ], [ 368859.840700000524521, 254193.477899998426437 ], [ 368861.458700001239777, 254192.857900001108646 ], [ 368872.829800002276897, 254183.240699999034405 ], [ 368876.069399997591972, 254181.578400000929832 ], [ 368888.185699999332428, 254179.144499998539686 ], [ 368893.853299997746944, 254176.446600001305342 ], [ 368895.494699999690056, 254173.082600001245737 ], [ 368894.713500000536442, 254170.120900001376867 ], [ 368889.895400002598763, 254167.759399998933077 ], [ 368886.679200001060963, 254166.677600000053644 ], [ 368877.811499997973442, 254166.393899999558926 ], [ 368874.60249999910593, 254164.467799998819828 ], [ 368876.238499999046326, 254161.736999999731779 ], [ 368877.854699999094009, 254161.328000001609325 ], [ 368880.293399997055531, 254159.026000000536442 ], [ 368879.517700001597404, 254155.431000001728535 ], [ 368880.397699996829033, 254146.783399999141693 ], [ 368879.607600003480911, 254144.877099998295307 ], [ 368875.608400002121925, 254141.044700000435114 ], [ 368863.546099998056889, 254137.146299999207258 ], [ 368859.546899996697903, 254133.313900001347065 ], [ 368857.162100002169609, 254129.283599998801947 ], [ 368849.174500003457069, 254120.352299999445677 ], [ 368845.157300002872944, 254118.63060000166297 ], [ 368836.2753000035882, 254120.035599999129772 ], [ 368828.167199999094009, 254125.246599998325109 ], [ 368825.751900002360344, 254124.80460000038147 ], [ 368824.187799997627735, 254119.092300001531839 ], [ 368821.774300001561642, 254118.439300000667572 ], [ 368811.936700001358986, 254137.357200000435114 ], [ 368818.385399997234344, 254137.620999999344349 ], [ 368815.124200001358986, 254141.816199999302626 ], [ 368807.041299998760223, 254144.07209999859333 ], [ 368806.157600000500679, 254153.1418999992311 ], [ 368827.485699996352196, 254205.245400000363588 ], [ 368831.528099998831749, 254204.011999998241663 ], [ 368833.162299998104572, 254201.492199998348951 ], [ 368838.021700002253056, 254198.9989 ], [ 368845.292900003492832, 254197.369600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84990943, "LATITUDE": 18.31605412, "OBJECTID_1": 39876, "PARCEL_NO_": "107704016600", "Tax_Legal_": "2H 5 NAZARETH RED HOOK QTR", "Name": "LOCKER, DANIEL & GESINE", "Address": "175 W 73 St", "City": "New York", "State": "New York", "Zip": 10023, "Country": "United States", "Land_Value": 222100, "Improved_V": 93800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.0693479, "SHAPE_Area": 2193.2902117200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367423.268799997866154, 254149.211899999529123 ], [ 367358.983199998736382, 254122.932300001382828 ], [ 367347.549199998378754, 254139.937300000339746 ], [ 367408.442299999296665, 254185.820799998939037 ], [ 367410.069300003349781, 254184.145399998873472 ], [ 367413.359300002455711, 254176.572900000959635 ], [ 367415.806999996304512, 254173.215500000864267 ], [ 367423.268799997866154, 254149.211899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85290566, "LATITUDE": 18.31612306, "OBJECTID_1": 39861, "PARCEL_NO_": "107704014800", "Tax_Legal_": "NAZARETH 2D-11 RED HOOK QTR", "Name": "KLEIN, JOHN M", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 264100, "Improved_V": 1704300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.53061547499999, "SHAPE_Area": 2811.9941193599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367126.371399998664856, 254167.258000001311302 ], [ 367102.981100000441074, 254167.910900000482798 ], [ 367098.46509999781847, 254130.088199999183416 ], [ 367087.160599999129772, 254131.895500000566244 ], [ 367082.29389999806881, 254135.233199998736382 ], [ 367071.021700002253056, 254133.241099998354912 ], [ 367056.490099996328354, 254135.2331000007689 ], [ 367052.433399997651577, 254138.155200000852346 ], [ 367049.157799996435642, 254144.039000000804663 ], [ 367043.479400001466274, 254148.003299999982119 ], [ 367028.922700002789497, 254152.950399998575449 ], [ 367025.668600000441074, 254156.301300000399351 ], [ 367021.54900000244379, 254166.611099999397993 ], [ 367023.942699998617172, 254169.585999999195337 ], [ 367048.93299999833107, 254170.423900000751019 ], [ 367069.029700003564358, 254177.765500001609325 ], [ 367070.631499998271465, 254179.045200001448393 ], [ 367081.138800002634525, 254176.175900001078844 ], [ 367088.39919999986887, 254175.813099998980761 ], [ 367099.70549999922514, 254173.794700000435114 ], [ 367127.114799998700619, 254174.652300000190735 ], [ 367126.371399998664856, 254167.258000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016100", "MAP": "A9-24-T64", "PARCEL_NAM": "2D-6", "ACRE": null, "LONGITUDE": -64.85134065, "LATITUDE": 18.31598051, "OBJECTID_1": 39871, "PARCEL_NO_": "107704016100", "Tax_Legal_": "NAZARETH 2D-6\nRED HOOK QTR", "Name": "SECRET HARBOR ESTATES LLC", "Address": "1353 Ave Luis Vigoreaux", "City": "Guaynabo", "State": "Puerto Rico", "Zip": 966, "Country": "United States", "Land_Value": 181300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.88330422499999, "SHAPE_Area": 2064.19041771 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367251.509900003671646, 254149.494800001382828 ], [ 367249.116099998354912, 254146.519900001585484 ], [ 367248.338600002229214, 254143.136100001633167 ], [ 367250.802400000393391, 254137.878899998962879 ], [ 367251.651900000870228, 254132.819600000977516 ], [ 367250.0878000035882, 254127.107299998402596 ], [ 367246.081500001251698, 254124.119199998676777 ], [ 367242.094800002872944, 254118.809200000017881 ], [ 367242.141599997878075, 254113.321199998259544 ], [ 367243.80460000038147, 254107.424199998378754 ], [ 367242.208099998533726, 254105.511300001293421 ], [ 367239.796400003135204, 254104.647100001573563 ], [ 367233.387199997901917, 254099.739500001072884 ], [ 367225.351099997758865, 254096.507399998605251 ], [ 367218.361100003123283, 254159.778200000524521 ], [ 367221.582800000905991, 254160.226799998432398 ], [ 367226.390100002288818, 254163.854699999094009 ], [ 367227.122699998319149, 254172.515500001609325 ], [ 367263.358199998736382, 254178.511599998921156 ], [ 367251.509900003671646, 254149.494800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84925194, "LATITUDE": 18.31609716, "OBJECTID_1": 40252, "PARCEL_NO_": "107803032400", "Tax_Legal_": "NAZARETH 2H-13 RED HOOK QTR", "Name": "STEPHEN BAJOR AND SANDRA KAY BAJOR REVOC FAM TRUST", "Address": "6263 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 191200, "Improved_V": 312800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.063221056, "SHAPE_Area": 2488.6946780500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367479.017599999904633, 254136.369199998676777 ], [ 367433.891099996864796, 254132.833500001579523 ], [ 367433.000299997627735, 254142.747600000351667 ], [ 367430.462700001895428, 254156.659000001847744 ], [ 367423.026000000536442, 254177.707499999552965 ], [ 367475.429200001060963, 254178.980799999088049 ], [ 367485.343099996447563, 254179.189599998295307 ], [ 367485.404500000178814, 254178.124200001358986 ], [ 367487.773900002241135, 254136.993000000715256 ], [ 367479.017599999904633, 254136.369199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032200", "MAP": "A9-35-T65", "PARCEL_NAM": "8-40", "ACRE": null, "LONGITUDE": -64.84840636, "LATITUDE": 18.31599743, "OBJECTID_1": 40250, "PARCEL_NO_": "107803032200", "Tax_Legal_": "NAZARETH ESTATE 8-40 No1 RED HOOK QTR", "Name": "OBRIEN USZENSKI, KELLY (trustee)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80100, "Improved_V": 403100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.58247086700001, "SHAPE_Area": 1740.4196716700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367574.35980000346899, 254132.837000001221895 ], [ 367574.148199997842312, 254129.450300000607967 ], [ 367569.828500002622604, 254130.684500001370907 ], [ 367569.703199997544289, 254130.720300000160933 ], [ 367523.703900001943111, 254126.08729999884963 ], [ 367522.535099998116493, 254139.4695999994874 ], [ 367520.764300003647804, 254158.031399998813868 ], [ 367535.270700000226498, 254158.994500000029802 ], [ 367543.310500003397465, 254161.804499998688698 ], [ 367546.515900000929832, 254164.152800001204014 ], [ 367550.50789999961853, 254168.829500000923872 ], [ 367554.462200000882149, 254177.938900001347065 ], [ 367556.037000000476837, 254182.384700000286102 ], [ 367556.490000002086163, 254185.329599998891354 ], [ 367574.35980000346899, 254132.837000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401023300", "MAP": "D9-2558-T84", "PARCEL_NAM": "18-K", "ACRE": "26.0", "LONGITUDE": -64.89206838, "LATITUDE": 18.31419989, "OBJECTID_1": 42222, "PARCEL_NO_": "109401023300", "Tax_Legal_": "18K ESTATE BOVONI WESTERN POR. WESTERN PORTION", "Name": "BOLONGO INVESTMENTS LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 546000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1556.2055061399999, "SHAPE_Area": 110282.89309899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362749.859099999070168, 253735.004599999636412 ], [ 362761.878200002014637, 253743.968899998813868 ], [ 362755.370200000703335, 253750.6706000007689 ], [ 362744.954599998891354, 253742.774900000542402 ], [ 362739.321299999952316, 253741.462200000882149 ], [ 362734.465400002896786, 253743.533399999141693 ], [ 362732.82940000295639, 253746.264299999922514 ], [ 362732.793399997055531, 253750.485800001770258 ], [ 362731.972699999809265, 253752.167899999767542 ], [ 362734.377300001680851, 253753.876299999654293 ], [ 362735.966499999165535, 253756.633499998599291 ], [ 362740.638999998569489, 253776.092399999499321 ], [ 362744.571599997580051, 253787.734700001776218 ], [ 362746.169900000095367, 253789.436500001698732 ], [ 362752.51070000231266, 253802.365100000053644 ], [ 362758.891099996864796, 253810.649999998509884 ], [ 362759.675800003111362, 253813.189599998295307 ], [ 362758.790399998426437, 253822.470400001853704 ], [ 362748.185999996960163, 253836.738000001758337 ], [ 362744.13289999961853, 253839.237900000065565 ], [ 362737.669799998402596, 253840.66270000115037 ], [ 362735.238300003111362, 253842.12049999833107 ], [ 362723.827600002288818, 253856.381400000303984 ], [ 362720.555600002408028, 253861.843100000172853 ], [ 362738.242299996316433, 253868.109600000083447 ], [ 362755.907499998807907, 253876.909000001847744 ], [ 362770.343800000846386, 253886.104100000113249 ], [ 362795.957000002264977, 253908.47859999909997 ], [ 362803.134700000286102, 253917.825500000268221 ], [ 362809.482699997723103, 253929.909800000488758 ], [ 362811.082699999213219, 253931.400499999523163 ], [ 362817.391199998557568, 253948.128499999642372 ], [ 362819.718400001525879, 253958.91330000013113 ], [ 362825.020900003612041, 253999.064500000327826 ], [ 362831.210699997842312, 254029.723700001835823 ], [ 362834.344200000166893, 254040.5152000002563 ], [ 362839.117399998009205, 254048.153599999845028 ], [ 362845.512100003659725, 254054.749800000339746 ], [ 362852.72580000013113, 254059.875100001692772 ], [ 362870.38910000026226, 254068.885600000619888 ], [ 362898.516599997878075, 254080.092700000852346 ], [ 362914.567299999296665, 254089.089999999850988 ], [ 362930.5945999994874, 254100.831300001591444 ], [ 362941.847000002861023, 254105.145300000905991 ], [ 362997.374700002372265, 254118.265399999916553 ], [ 363056.14019999653101, 254129.934300001710653 ], [ 363090.734300002455711, 254139.294399999082088 ], [ 363093.970399998128414, 254138.054400000721216 ], [ 363092.819899998605251, 254083.7939000017941 ], [ 363095.373700000345707, 254067.982799999415874 ], [ 363096.0912000015378, 253983.762299999594688 ], [ 363098.819399997591972, 253947.476599998772144 ], [ 363100.478799998760223, 253942.0016999989748 ], [ 363104.573299996554852, 253934.646999999880791 ], [ 363112.733499996364117, 253923.314699999988079 ], [ 363135.488300003111362, 253902.602699998766184 ], [ 363137.129600003361702, 253899.238600000739098 ], [ 363137.167400002479553, 253894.805900000035763 ], [ 363130.799599997699261, 253885.043499998748302 ], [ 363124.408500000834465, 253878.025100000202656 ], [ 363111.60639999806881, 253866.310199998319149 ], [ 363101.962999999523163, 253862.431600000709295 ], [ 363089.889899998903275, 253859.799699999392033 ], [ 363080.214100003242493, 253859.720499999821186 ], [ 363070.523999996483326, 253861.329900000244379 ], [ 363023.9341000020504, 253840.261399999260902 ], [ 363024.216399997472763, 253807.122000001370907 ], [ 363024.265000000596046, 253801.422899998724461 ], [ 363022.747599996626377, 253790.222500000149012 ], [ 363022.798000000417233, 253784.312300000339746 ], [ 363021.246500000357628, 253777.122499998658895 ], [ 363018.071599997580051, 253771.1858000010252 ], [ 363009.265100002288818, 253763.725499998778105 ], [ 363006.081200003623962, 253758.844300001859665 ], [ 363006.102799996733665, 253756.311299998313189 ], [ 363009.381999999284744, 253750.005399998277426 ], [ 363006.986400000751019, 253747.241599999368191 ], [ 363002.155699998140335, 253746.357599999755621 ], [ 362994.868400000035763, 253749.886599998921156 ], [ 362984.454599998891354, 253741.779800001531839 ], [ 362978.833800002932549, 253738.989599999040365 ], [ 362975.63910000026226, 253735.374800000339746 ], [ 362965.20380000025034, 253729.800999999046326 ], [ 362966.040700003504753, 253726.219300001859665 ], [ 362964.49099999666214, 253718.818300001323223 ], [ 362962.113399997353554, 253713.94370000064373 ], [ 362958.099899999797344, 253711.799899999052286 ], [ 362950.851999998092651, 253710.685100000351667 ], [ 362948.42230000346899, 253711.931800000369549 ], [ 362949.174699999392033, 253718.270799998193979 ], [ 362945.875699996948242, 253726.898600000888109 ], [ 362942.627099998295307, 253729.616200000047684 ], [ 362939.398199997842312, 253730.011999998241663 ], [ 362932.152199998497963, 253728.686099998652935 ], [ 362927.352099999785423, 253724.213899999856949 ], [ 362921.73309999704361, 253721.212600000202656 ], [ 362918.534800000488758, 253718.019999999552965 ], [ 362915.363499999046326, 253711.661200001835823 ], [ 362912.95889999717474, 253709.952799998223782 ], [ 362900.894799999892712, 253706.265500001609325 ], [ 362896.056999996304512, 253706.225900001823902 ], [ 362892.810099996626377, 253708.732400000095367 ], [ 362894.34179999679327, 253718.244199998676777 ], [ 362887.065200001001358, 253720.506599999964237 ], [ 362862.875900000333786, 253720.308699999004602 ], [ 362854.017200000584126, 253718.9695999994874 ], [ 362842.728799998760223, 253718.877199999988079 ], [ 362830.657499998807907, 253716.034200001507998 ], [ 362823.463699996471405, 253708.587000001221895 ], [ 362817.939999997615814, 253694.398600000888109 ], [ 362810.717299997806549, 253690.328699998557568 ], [ 362808.292999997735023, 253690.942099999636412 ], [ 362803.467699997127056, 253689.425000000745058 ], [ 362801.892800003290176, 253684.979100000113249 ], [ 362800.291000001132488, 253683.699400000274181 ], [ 362799.506300002336502, 253681.15989999845624 ], [ 362797.907999999821186, 253679.458099998533726 ], [ 362749.859099999070168, 253735.004599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84766397, "LATITUDE": 18.3160197, "OBJECTID_1": 40248, "PARCEL_NO_": "107803032000", "Tax_Legal_": "NAZARETH ESTATE 8-54 No.1 RED HOOK QTR.", "Name": "HONEY BADGER I LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109100, "Improved_V": 1272700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.635122774, "SHAPE_Area": 1950.2215984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367654.923199996352196, 254122.610199999064207 ], [ 367625.991300001740456, 254111.185499999672174 ], [ 367625.931900002062321, 254118.151099998503923 ], [ 367605.383900001645088, 254163.790199998766184 ], [ 367601.276799999177456, 254172.622499998658895 ], [ 367599.646200001239777, 254174.720100000500679 ], [ 367598.152300000190735, 254178.346500001847744 ], [ 367617.784000001847744, 254191.706900000572205 ], [ 367626.24379999935627, 254176.204300001263618 ], [ 367654.923199996352196, 254122.610199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85246217, "LATITUDE": 18.31602209, "OBJECTID_1": 39862, "PARCEL_NO_": "107704014900", "Tax_Legal_": "2D-10 NAZARETH RED HOOK QTR", "Name": "ONE NAZARETH LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 207800, "Improved_V": 200200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.773574454, "SHAPE_Area": 1375.3626702500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367138.566799998283386, 254155.536499999463558 ], [ 367131.622800000011921, 254118.749400001019239 ], [ 367129.994000002741814, 254120.635899998247623 ], [ 367117.05349999666214, 254125.174100000411272 ], [ 367115.412100002169609, 254128.538199998438358 ], [ 367110.536399997770786, 254132.931200001388788 ], [ 367105.707599997520447, 254131.836199998855591 ], [ 367103.310199998319149, 254129.283500000834465 ], [ 367098.46509999781847, 254130.088199999183416 ], [ 367102.981100000441074, 254167.910900000482798 ], [ 367126.371399998664856, 254167.258000001311302 ], [ 367128.806500002741814, 254165.378100000321865 ], [ 367128.8496999964118, 254160.312199998646975 ], [ 367138.566799998283386, 254155.536499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89485579, "LATITUDE": 18.31467228, "OBJECTID_1": 41943, "PARCEL_NO_": "109401010800", "Tax_Legal_": "14 EST. BOVONI FRENCHMANS BAY QTR.", "Name": "HODGE, RHYS & THE CARMEN V RUAN LIVING TRUST", "Address": "PO Box 6520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 76800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 749.93241229499995, "SHAPE_Area": 24098.1240999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362726.102700002491474, 253873.287500001490116 ], [ 362701.970899999141693, 253866.33500000089407 ], [ 362689.892399996519089, 253864.336300000548363 ], [ 362673.775100000202656, 253863.149000000208616 ], [ 362627.016199998557568, 253861.921900000423193 ], [ 362606.872699998319149, 253860.068300001323223 ], [ 362585.134700000286102, 253856.090700000524521 ], [ 362565.828100003302097, 253850.655299998819828 ], [ 362572.870999999344349, 253875.833099998533726 ], [ 362572.851199999451637, 253878.155000001192093 ], [ 362573.630500003695488, 253881.3277000002563 ], [ 362580.716499999165535, 253901.439599998295307 ], [ 362583.85360000282526, 253911.808899998664856 ], [ 362584.645599998533726, 253913.504099998623133 ], [ 362585.433899998664856, 253915.621500000357628 ], [ 362587.010600000619888, 253919.856300000101328 ], [ 362592.543300002813339, 253932.989399999380112 ], [ 362594.915399998426437, 253938.49720000103116 ], [ 362598.09570000320673, 253943.800599999725819 ], [ 362583.884900003671646, 254002.790500000119209 ], [ 362579.689699999988079, 254021.965599998831749 ], [ 362577.875699996948242, 254045.593299999833107 ], [ 362581.777800001204014, 254060.823899999260902 ], [ 362583.266400001943111, 254075.401599999517202 ], [ 362581.509900003671646, 254092.274700000882149 ], [ 362582.937299996614456, 254114.028999999165535 ], [ 362582.807800002396107, 254129.226700000464916 ], [ 362702.646600000560284, 253976.320300001651049 ], [ 362726.102700002491474, 253873.287500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016200", "MAP": "D9-9384-T019", "PARCEL_NAM": "RECONF 2D-7", "ACRE": "0.92", "LONGITUDE": -64.85168733, "LATITUDE": 18.31584186, "OBJECTID_1": 39872, "PARCEL_NO_": "107704016200", "Tax_Legal_": "2D-7 NAZARETH\nRED HOOK QTR", "Name": "SECRET HARBOR ESTATES LLC", "Address": "1353 Ave Luis Vigoreaux", "City": "Guaynabo", "State": "Puerto Rico", "Zip": 966, "Country": "United States", "Land_Value": 350000, "Improved_V": 191700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.930974878, "SHAPE_Area": 2838.2947286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367218.361100003123283, 254159.778200000524521 ], [ 367225.351099997758865, 254096.507399998605251 ], [ 367220.531199999153614, 254094.35700000077486 ], [ 367215.722099997103214, 254090.940099999308586 ], [ 367213.283399999141693, 254093.242199998348951 ], [ 367210.8429000005126, 254095.755300000309944 ], [ 367201.145499996840954, 254098.209100000560284 ], [ 367195.504900000989437, 254097.740699999034405 ], [ 367193.102200001478195, 254095.821199998259544 ], [ 367192.324600003659725, 254092.437399998307228 ], [ 367182.693899996578693, 254087.081199999898672 ], [ 367176.373999997973442, 254143.944400001317263 ], [ 367175.485399998724461, 254151.939599998295307 ], [ 367209.443099997937679, 254165.404800001531839 ], [ 367213.516099996864796, 254160.582899998873472 ], [ 367218.361100003123283, 254159.778200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704015000", "MAP": "D9-9384-T019", "PARCEL_NAM": "RECONF 2D-9", "ACRE": "0.68", "LONGITUDE": -64.85209344, "LATITUDE": 18.31580748, "OBJECTID_1": 39863, "PARCEL_NO_": "107704015000", "Tax_Legal_": "2D-9 NAZARETH\n1 RED HOOK", "Name": "SECRET HARBOR ESTATES LLC", "Address": "1353 Ave Luis Vigoreaux", "City": "Guaynabo", "State": "Puerto Rico", "Zip": 966, "Country": "United States", "Land_Value": 202600, "Improved_V": 79700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.322198004, "SHAPE_Area": 2873.6526379100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367176.373999997973442, 254143.944400001317263 ], [ 367182.693899996578693, 254087.081199999898672 ], [ 367177.055100001394749, 254086.401799999177456 ], [ 367175.424500003457069, 254088.499400001019239 ], [ 367172.18299999833107, 254090.372699998319149 ], [ 367164.962200000882149, 254086.091699998825788 ], [ 367161.729699999094009, 254086.909600000828505 ], [ 367159.280199997127056, 254090.478199999779463 ], [ 367154.438799999654293, 254090.860700000077486 ], [ 367153.677400000393391, 254085.577199999243021 ], [ 367152.086300000548363, 254083.030999999493361 ], [ 367146.407999999821186, 254086.995299998670816 ], [ 367144.773800000548363, 254089.515099998563528 ], [ 367144.754000000655651, 254091.836899999529123 ], [ 367140.637900002300739, 254101.724599998444319 ], [ 367138.939000003039837, 254111.843199998140335 ], [ 367137.30120000243187, 254114.785100001841784 ], [ 367131.622800000011921, 254118.749400001019239 ], [ 367138.566799998283386, 254155.536499999463558 ], [ 367140.924599997699261, 254162.732999999076128 ], [ 367175.485399998724461, 254151.939599998295307 ], [ 367176.373999997973442, 254143.944400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804020800", "MAP": "D9-2685-T84", "PARCEL_NAM": "7-R", "ACRE": "1.29", "LONGITUDE": -64.83914709, "LATITUDE": 18.31573848, "OBJECTID_1": 41816, "PARCEL_NO_": "107804020800", "Tax_Legal_": "NAZARETH 7-R RED HOOK QTR.", "Name": "MOSSMAN, BARRY & BROOKE", "Address": "1 Lawson Ln", "City": "Burlington", "State": "Vermont", "Zip": 5401, "Country": "United States", "Land_Value": 785700, "Improved_V": 924400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.56332902399998, "SHAPE_Area": 4675.9366162899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368561.859300002455711, 254149.453699998557568 ], [ 368548.689699999988079, 254086.228900000452995 ], [ 368547.080600000917912, 254085.793499998748302 ], [ 368547.922899998724461, 254081.578600000590086 ], [ 368544.706699997186661, 254080.496800001710653 ], [ 368541.501199997961521, 254078.148499999195337 ], [ 368533.425499998033047, 254079.560100000351667 ], [ 368530.17509999871254, 254082.488800000399351 ], [ 368527.752499997615814, 254082.891100000590086 ], [ 368522.070600003004074, 254087.27760000154376 ], [ 368519.604900002479553, 254092.745799999684095 ], [ 368517.17339999973774, 254094.203600000590086 ], [ 368515.564300000667572, 254093.768199998885393 ], [ 368510.710299998521805, 254095.628400001674891 ], [ 368511.469800002872944, 254101.122999999672174 ], [ 368509.022100001573563, 254104.480500001460314 ], [ 368491.274300001561642, 254105.390700001269579 ], [ 368486.389600001275539, 254110.839099999517202 ], [ 368485.558100000023842, 254113.787599999457598 ], [ 368487.095200002193451, 254122.666200000792742 ], [ 368484.534199997782707, 254139.321600001305342 ], [ 368486.936999998986721, 254141.241099998354912 ], [ 368490.956000000238419, 254142.751600001007318 ], [ 368493.328199997544289, 254148.259500000625849 ], [ 368546.337999999523163, 254172.969099998474121 ], [ 368561.859300002455711, 254149.453699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84984994, "LATITUDE": 18.31577134, "OBJECTID_1": 39877, "PARCEL_NO_": "107704016700", "Tax_Legal_": "NAZARETH 2H 6 RED HOOK QTR", "Name": "FOSTER, DEAN A. & SHERYL Y.", "Address": "126 Rutland Rd", "City": "Brooklyn", "State": "New York", "Zip": 11225, "Country": "United States", "Land_Value": 219300, "Improved_V": 347100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.72120259100001, "SHAPE_Area": 2107.9338169299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367424.411399997770786, 254109.746700000017881 ], [ 367362.42960000038147, 254096.995999999344349 ], [ 367363.1891999989748, 254102.490600001066923 ], [ 367358.983199998736382, 254122.932300001382828 ], [ 367423.268799997866154, 254149.211899999529123 ], [ 367425.174500003457069, 254114.819200001657009 ], [ 367424.411399997770786, 254109.746700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804021300", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-M-3", "ACRE": "1.29", "LONGITUDE": -64.83716857, "LATITUDE": 18.31570041, "OBJECTID_1": 41821, "PARCEL_NO_": "107804021300", "Tax_Legal_": "NAZARETH 7-M-3 REDHOOK QTR", "Name": "BALMOS, SCOTT and DEBORAH RAMOS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 800000, "Improved_V": 869800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 432.66365637600001, "SHAPE_Area": 5867.3924985000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368821.774300001561642, 254118.439300000667572 ], [ 368819.3462999984622, 254119.474800001829863 ], [ 368815.320200003683567, 254118.808600001037121 ], [ 368813.730899997055531, 254116.051399998366833 ], [ 368807.300200000405312, 254113.676699999719858 ], [ 368793.5929000005126, 254113.564500000327826 ], [ 368785.513599999248981, 254115.398299999535084 ], [ 368773.42790000140667, 254114.243900001049042 ], [ 368763.806100003421307, 254107.832299999892712 ], [ 368758.151100002229214, 254109.052600000053644 ], [ 368750.834899999201298, 254115.958799999207258 ], [ 368748.414200000464916, 254116.150100000202656 ], [ 368749.265500001609325, 254110.879700001329184 ], [ 368755.764499999582767, 254105.233399998396635 ], [ 368757.400499999523163, 254102.502599999308586 ], [ 368754.985200002789497, 254102.060600001364946 ], [ 368751.740199998021126, 254104.356100000441074 ], [ 368740.453599996864796, 254104.052600000053644 ], [ 368737.210299998521805, 254106.136999998241663 ], [ 368733.149999998509884, 254109.481300000101328 ], [ 368731.559000000357628, 254106.935100000351667 ], [ 368732.399400003254414, 254102.931200001388788 ], [ 368734.840000003576279, 254100.418099999427795 ], [ 368728.414599999785423, 254097.410199999809265 ], [ 368727.653300002217293, 254092.126600001007318 ], [ 368724.456799998879433, 254088.722899999469519 ], [ 368718.805399999022484, 254089.521099999547005 ], [ 368710.758500002324581, 254087.555399999022484 ], [ 368700.263800002634525, 254088.94709999859333 ], [ 368696.185500003397465, 254094.402199998497963 ], [ 368694.533299997448921, 254099.032699998468161 ], [ 368692.0945999994874, 254101.334800001233816 ], [ 368687.238799996674061, 254103.405999999493361 ], [ 368683.205399997532368, 254103.583999998867512 ], [ 368677.57379999756813, 254102.060300000011921 ], [ 368674.364699997007847, 254100.134199999272823 ], [ 368674.877899996936321, 254134.546599999070168 ], [ 368680.502300001680851, 254136.914700001478195 ], [ 368684.499700002372265, 254140.958200000226498 ], [ 368690.046800002455711, 254152.402699999511242 ], [ 368693.243299998342991, 254155.80629999935627 ], [ 368697.262299999594688, 254157.316899999976158 ], [ 368709.36599999666214, 254156.360500000417233 ], [ 368720.693899996578693, 254151.809099998325109 ], [ 368731.210100002586842, 254147.884399998933077 ], [ 368754.647100001573563, 254141.743400000035763 ], [ 368782.067100003361702, 254141.334600001573563 ], [ 368807.041299998760223, 254144.07209999859333 ], [ 368815.124200001358986, 254141.816199999302626 ], [ 368818.385399997234344, 254137.620999999344349 ], [ 368811.936700001358986, 254137.357200000435114 ], [ 368821.774300001561642, 254118.439300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804020900", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-Q", "ACRE": "0.89", "LONGITUDE": -64.83863876, "LATITUDE": 18.3156802, "OBJECTID_1": 41817, "PARCEL_NO_": "107804020900", "Tax_Legal_": "7-Q NAZARETH NO. 1 RED HOOK QTR.", "Name": "SARAH LOEWENSTEIN & MARY MALLETTE IRREV. TRST", "Address": "PO Box 1301", "City": "Dillon", "State": "Montana", "Zip": 59725, "Country": "United States", "Land_Value": 750000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.53029558200001, "SHAPE_Area": 3370.2776820600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368612.601300001144409, 254156.412900000810623 ], [ 368604.991300001740456, 254103.155000001192093 ], [ 368595.337099999189377, 254100.542899999767542 ], [ 368593.749700002372265, 254097.574599999934435 ], [ 368587.327899999916553, 254094.144499998539686 ], [ 368584.084700003266335, 254096.228900000452995 ], [ 368577.6216000020504, 254097.6537000015378 ], [ 368577.716899998486042, 254086.466499999165535 ], [ 368571.325800001621246, 254079.448100000619888 ], [ 368567.304999999701977, 254078.148600000888109 ], [ 368560.850900001823902, 254078.51799999922514 ], [ 368558.423000000417233, 254079.553599998354912 ], [ 368555.172499999403954, 254082.482299998402596 ], [ 368548.689699999988079, 254086.228900000452995 ], [ 368561.859300002455711, 254149.453699998557568 ], [ 368569.866700001060963, 254156.063099998980761 ], [ 368580.381099998950958, 254152.349500000476837 ], [ 368599.700300000607967, 254156.307300001382828 ], [ 368612.601300001144409, 254156.412900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804021200", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-N", "ACRE": "0.82", "LONGITUDE": -64.83803933, "LATITUDE": 18.31572658, "OBJECTID_1": 41820, "PARCEL_NO_": "107804021200", "Tax_Legal_": "NAZARETH 7N RED HOOK QUARTER", "Name": "7N NAZARETH LLC", "Address": "6115 ESTATE SMITH BAY", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 8020000, "Country": "United States", "Land_Value": 573800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.40739792300002, "SHAPE_Area": 3233.4291928299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368674.364699997007847, 254100.134199999272823 ], [ 368671.963799998164177, 254098.003600001335144 ], [ 368660.707800000905991, 254094.111800000071526 ], [ 368653.43299999833107, 254096.163199998438358 ], [ 368644.572499997913837, 254095.035199999809265 ], [ 368642.139200001955032, 254096.703999999910593 ], [ 368641.291500002145767, 254101.552299998700619 ], [ 368630.737499997019768, 254109.909600000828505 ], [ 368628.324000000953674, 254109.256599999964237 ], [ 368623.509499996900558, 254106.473000001162291 ], [ 368622.670800000429153, 254110.265799999237061 ], [ 368618.617700003087521, 254112.765700001269579 ], [ 368612.898000001907349, 254121.584899999201298 ], [ 368610.4628000035882, 254123.464800000190735 ], [ 368611.351899996399879, 254113.761700000613928 ], [ 368609.802199997007847, 254106.360800001770258 ], [ 368608.205700002610683, 254104.447900000959635 ], [ 368604.991300001740456, 254103.155000001192093 ], [ 368612.601300001144409, 254156.412900000810623 ], [ 368674.768200002610683, 254147.422499999403954 ], [ 368674.877899996936321, 254134.546599999070168 ], [ 368674.364699997007847, 254100.134199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89848912, "LATITUDE": 18.31555829, "OBJECTID_1": 42009, "PARCEL_NO_": "109401020100", "Tax_Legal_": "46 BOLONGO FRENCHMAN", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38200, "Improved_V": 252200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.26955093000001, "SHAPE_Area": 2163.5054404399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362245.032300002872944, 254023.659600000828505 ], [ 362236.812700003385544, 254041.957499999552965 ], [ 362228.668700002133846, 254051.390000000596046 ], [ 362229.406700000166893, 254059.417599998414516 ], [ 362235.720499999821186, 254075.51240000128746 ], [ 362238.913400001823902, 254079.338199999183416 ], [ 362248.439900003373623, 254096.936900001019239 ], [ 362285.299400001764297, 254029.688700001686811 ], [ 362245.032300002872944, 254023.659600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401010100", "MAP": "G9-558-T60", "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.8970885, "LATITUDE": 18.31529556, "OBJECTID_1": 41936, "PARCEL_NO_": "109401010100", "Tax_Legal_": "BOLONGO ESTATE 10 No.3 FRENCHMAN'S BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 261400, "Improved_V": 195400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 406.2741173, "SHAPE_Area": 6575.9656105000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362454.340199999511242, 253969.855099998414516 ], [ 362396.354000002145767, 253961.358899999409914 ], [ 362370.721699997782707, 254035.876299999654293 ], [ 362353.391800001263618, 254082.386100001633167 ], [ 362419.383500002324581, 254097.702799998223782 ], [ 362410.711900003254414, 254074.411499999463558 ], [ 362409.11370000243187, 254072.709699999541044 ], [ 362408.359499998390675, 254066.581799998879433 ], [ 362408.443999998271465, 254056.661100000143051 ], [ 362413.400600001215935, 254042.769499998539686 ], [ 362416.76070000231266, 254026.964899998158216 ], [ 362420.050700001418591, 254019.392499998211861 ], [ 362433.095499999821186, 254002.611800000071526 ], [ 362441.210799999535084, 253996.556499999016523 ], [ 362454.154899999499321, 253991.596200000494719 ], [ 362457.398199997842312, 253989.511799998581409 ], [ 362457.42509999871254, 253986.345600001513958 ], [ 362454.340199999511242, 253969.855099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803031600", "MAP": "8-36", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84879604, "LATITUDE": 18.31570225, "OBJECTID_1": 40244, "PARCEL_NO_": "107803031600", "Tax_Legal_": "NAZARETH ESTATE 8-36 RED HOOK QTR", "Name": "ASIA TRUST LIMITED, TRUSTEE", "Address": "Ste 201 PMB 6501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 186000, "Improved_V": 679800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.47392399500001, "SHAPE_Area": 1712.74263707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367490.846100002527237, 254083.661100000143051 ], [ 367487.773900002241135, 254136.993000000715256 ], [ 367522.535099998116493, 254139.4695999994874 ], [ 367524.322200000286102, 254119.008200000971556 ], [ 367526.944300003349781, 254095.176100000739098 ], [ 367514.853200003504753, 254094.654899999499321 ], [ 367514.869400002062321, 254092.755199998617172 ], [ 367490.846100002527237, 254083.661100000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84796552, "LATITUDE": 18.31569149, "OBJECTID_1": 40246, "PARCEL_NO_": "107803031800", "Tax_Legal_": "8-38 ESTATRE NAZARETH No.1 RED HOOK QTR.", "Name": "KELLY OBRIEN USZENSKI REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 116200, "Improved_V": 12400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.848936735, "SHAPE_Area": 1674.09532872 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367600.349299997091293, 254092.188299998641014 ], [ 367594.708700001239777, 254091.719900000840425 ], [ 367572.927500002086163, 254092.808200001716614 ], [ 367574.01349999755621, 254125.405900001525879 ], [ 367574.148199997842312, 254129.450300000607967 ], [ 367606.396999999880791, 254139.522700000554323 ], [ 367617.091300003230572, 254114.701200000941753 ], [ 367617.154200002551079, 254107.313400000333786 ], [ 367614.778399996459484, 254102.227800000458956 ], [ 367609.184600003063679, 254096.27140000090003 ], [ 367600.349299997091293, 254092.188299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109302020100", "MAP": "D9-4902-T90", "PARCEL_NAM": "22", "ACRE": "2.987", "LONGITUDE": -64.90474328000001, "LATITUDE": 18.31478093, "OBJECTID_1": 41920, "PARCEL_NO_": "109302020100", "Tax_Legal_": "FRENCHMAN'S BAY #22 FRENCHMAN BAY QTR.", "Name": "SANCTUARY HOLDINGS LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 222400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 501.223661827, "SHAPE_Area": 11303.9207582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361634.322200000286102, 253962.932500001043081 ], [ 361660.435300000011921, 253926.627099998295307 ], [ 361638.976099997758865, 253898.253400001674891 ], [ 361613.9966000020504, 253896.149099998176098 ], [ 361587.42059999704361, 253892.131900001317263 ], [ 361580.160199999809265, 253892.494699999690056 ], [ 361572.883599996566772, 253894.757199998944998 ], [ 361561.534100003540516, 253901.841499999165535 ], [ 361555.026100002229214, 253908.543200001120567 ], [ 361549.288400001823902, 253919.473099999129772 ], [ 361548.469499997794628, 253920.943999998271465 ], [ 361547.643399998545647, 253923.259300000965595 ], [ 361546.779500000178814, 253930.007199998944998 ], [ 361546.752599999308586, 253933.17339999973774 ], [ 361548.989900000393391, 253954.512200001627207 ], [ 361568.99719999730587, 254058.656500000506639 ], [ 361575.181599996984005, 254089.949000000953674 ], [ 361591.525399997830391, 254064.540399998426437 ], [ 361596.825400002300739, 254010.332800000905991 ], [ 361615.570200003683567, 253987.054800000041723 ], [ 361625.319700002670288, 253978.479800000786781 ], [ 361634.322200000286102, 253962.932500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84919507, "LATITUDE": 18.31569274, "OBJECTID_1": 40243, "PARCEL_NO_": "107803031500", "Tax_Legal_": "2H-12 NAZARETH RED HOOK QTR", "Name": "MILES, DAVID", "Address": "6272 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 182500, "Improved_V": 493800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.17359548300001, "SHAPE_Area": 2398.3581661500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367487.773900002241135, 254136.993000000715256 ], [ 367490.846100002527237, 254083.661100000143051 ], [ 367483.149099998176098, 254085.482700001448393 ], [ 367439.851800002157688, 254095.729800000786781 ], [ 367439.000500001013279, 254101.000199999660254 ], [ 367437.3699000030756, 254103.097800001502037 ], [ 367434.053000003099442, 254113.836399998515844 ], [ 367434.755000002682209, 254126.08559999987483 ], [ 367433.891099996864796, 254132.833500001579523 ], [ 367479.017599999904633, 254136.369199998676777 ], [ 367487.773900002241135, 254136.993000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107803030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8457905, "LATITUDE": 18.31551676, "OBJECTID_1": 40236, "PARCEL_NO_": "107803030700", "Tax_Legal_": "8-58&8-1-1 NAZARETH RED HOOK QTR", "Name": "ST THOMAS YACHT CLUB INC", "Address": "6224 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 420800, "Improved_V": 71400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.79050771599998, "SHAPE_Area": 4367.2661894299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367858.624700002372265, 254064.326799999922514 ], [ 367794.943999998271465, 254061.694699998944998 ], [ 367790.572499997913837, 254101.555599998682737 ], [ 367789.710500001907349, 254108.092500001192093 ], [ 367787.050599999725819, 254136.357200000435114 ], [ 367821.838899999856949, 254122.920899998396635 ], [ 367863.72580000013113, 254128.11879999935627 ], [ 367857.519799999892712, 254099.359299998730421 ], [ 367858.624700002372265, 254064.326799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302010600", "MAP": "A9-138-T70", "PARCEL_NAM": "74", "ACRE": "1.00", "LONGITUDE": -64.89913646, "LATITUDE": 18.3155679, "OBJECTID_1": 41834, "PARCEL_NO_": "109302010600", "Tax_Legal_": "BOLONGO 74 FRENCHMAN BAY QTR", "Name": "MATURINE, JONA & VERA", "Address": "747 E 92nd St", "City": "Brooklyn", "State": "New York", "Zip": 11236, "Country": "United States", "Land_Value": 74900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.245325417, "SHAPE_Area": 3483.38090199 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362227.120800003409386, 254043.778000000864267 ], [ 362169.346799999475479, 254010.374499998986721 ], [ 362157.700599998235703, 254052.286800000816584 ], [ 362150.208200000226498, 254079.878800000995398 ], [ 362203.347499996423721, 254089.390700001269579 ], [ 362212.488499999046326, 254057.590399999171495 ], [ 362215.751500003039837, 254053.184099998325109 ], [ 362221.426299996674061, 254049.642000000923872 ], [ 362227.120800003409386, 254043.778000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84837494, "LATITUDE": 18.31568313, "OBJECTID_1": 40245, "PARCEL_NO_": "107803031700", "Tax_Legal_": "8-37 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "KLEIN FAMILY TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125000, "Improved_V": 214300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.72690108699999, "SHAPE_Area": 1591.8722285399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367574.01349999755621, 254125.405900001525879 ], [ 367572.927500002086163, 254092.808200001716614 ], [ 367543.077799998223782, 254094.463700000196695 ], [ 367541.45440000295639, 254095.717000000178814 ], [ 367541.393200002610683, 254102.893699999898672 ], [ 367532.523800000548363, 254102.821100000292063 ], [ 367532.574100002646446, 254096.910900000482798 ], [ 367530.97410000115633, 254095.420099999755621 ], [ 367526.944300003349781, 254095.176100000739098 ], [ 367524.322200000286102, 254119.008200000971556 ], [ 367523.703900001943111, 254126.08729999884963 ], [ 367569.703199997544289, 254130.720300000160933 ], [ 367569.828500002622604, 254130.684500001370907 ], [ 367574.148199997842312, 254129.450300000607967 ], [ 367574.01349999755621, 254125.405900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84747582, "LATITUDE": 18.31553182, "OBJECTID_1": 40247, "PARCEL_NO_": "107803031900", "Tax_Legal_": "8-55 ESTATE NAZARETH RED HOOK QTR", "Name": "ROY, JOSEPH R. & SARAH", "Address": "31 Westville Rd", "City": "Plaistow", "State": "New Hampshire", "Zip": 3865, "Country": "United States", "Land_Value": 111700, "Improved_V": 729400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.98119311599999, "SHAPE_Area": 1659.5193940300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367667.219300001859665, 254099.068399999290705 ], [ 367668.160499997437, 254083.244100000709295 ], [ 367671.488200001418591, 254071.239000000059605 ], [ 367613.284500002861023, 254088.283399999141693 ], [ 367623.671300001442432, 254099.55629999935627 ], [ 367626.032600000500679, 254106.330600000917912 ], [ 367625.991300001740456, 254111.185499999672174 ], [ 367654.923199996352196, 254122.610199999064207 ], [ 367667.219300001859665, 254099.068399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107803030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84647759000001, "LATITUDE": 18.31543572, "OBJECTID_1": 40235, "PARCEL_NO_": "107803030600", "Tax_Legal_": "8-57-3 NAZARETH RED HOOK QTR", "Name": "ST THOMAS YACHT CLUB INC", "Address": "6224 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 245000, "Improved_V": 6700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.08891854500001, "SHAPE_Area": 3913.4082646900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367712.979500003159046, 254122.874299999326468 ], [ 367790.572499997913837, 254101.555599998682737 ], [ 367794.943999998271465, 254061.694699998944998 ], [ 367719.976700000464916, 254058.759100001305342 ], [ 367712.979500003159046, 254122.874299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401010200", "MAP": "D9-5002-T90", "PARCEL_NAM": "5A", "ACRE": "0.64", "LONGITUDE": -64.89669678, "LATITUDE": 18.31543735, "OBJECTID_1": 41937, "PARCEL_NO_": "109401010200", "Tax_Legal_": "5 ESTATE BOLONGO FRENCHMEN BAY", "Name": "THOMAS, JOAN", "Address": "PO Box 10814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84900, "Improved_V": 258300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.67464207699999, "SHAPE_Area": 2622.3198461100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362460.120099999010563, 254072.061200000345707 ], [ 362470.773400001227856, 254020.274900000542402 ], [ 362438.710900001227856, 254006.035199999809265 ], [ 362435.462300002574921, 254008.752900000661612 ], [ 362425.67509999871254, 254021.760600000619888 ], [ 362422.385099999606609, 254029.333000000566244 ], [ 362419.854699999094009, 254042.400100000202656 ], [ 362414.068400003015995, 254059.029100000858307 ], [ 362414.003700003027916, 254066.627999998629093 ], [ 362460.120099999010563, 254072.061200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84991038, "LATITUDE": 18.31550991, "OBJECTID_1": 39878, "PARCEL_NO_": "107704016800", "Tax_Legal_": "2H 7 NAZARETH RED HOOK QTR", "Name": "WAGNER TRUST", "Address": "4790 Caughlin Pkwy", "City": "Reno", "State": "Nevada", "Zip": 89519, "Country": "United States", "Land_Value": 188300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.64682998399999, "SHAPE_Area": 1236.5535863 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367418.907399997115135, 254093.236400000751019 ], [ 367360.246200002729893, 254069.32490000128746 ], [ 367362.54110000282526, 254083.909099999815226 ], [ 367362.42960000038147, 254096.995999999344349 ], [ 367424.411399997770786, 254109.746700000017881 ], [ 367423.63740000128746, 254105.940699998289347 ], [ 367420.435599997639656, 254103.170299999415874 ], [ 367418.907399997115135, 254093.236400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90374318000001, "LATITUDE": 18.31537955, "OBJECTID_1": 41922, "PARCEL_NO_": "109302020300", "Tax_Legal_": "21-35 (LOT 30) FRENCHMANS BAY FRENCHMANS BAY", "Name": "HUNTE, TAI C.", "Address": "PO BOX 10445", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79500, "Improved_V": 431000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.78529183399999, "SHAPE_Area": 2410.47774918 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361733.73309999704361, 254030.8739 ], [ 361692.0996999964118, 253995.913800001144409 ], [ 361675.037699997425079, 254010.972899999469519 ], [ 361662.730800002813339, 254035.781199999153614 ], [ 361716.552400000393391, 254059.864199999719858 ], [ 361719.032499998807907, 254052.707299999892712 ], [ 361721.498099997639656, 254047.239100001752377 ], [ 361733.73309999704361, 254030.8739 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84915525, "LATITUDE": 18.31528717, "OBJECTID_1": 40242, "PARCEL_NO_": "107803031400", "Tax_Legal_": "2H-11 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "FRENCH CAP VI LLC", "Address": "6501 Redhook Plaza---", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 197000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.42603939200001, "SHAPE_Area": 2112.7341300899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367459.355099998414516, 254042.876800000667572 ], [ 367436.329800002276897, 254089.364500001072884 ], [ 367437.479599997401237, 254090.221999999135733 ], [ 367439.851800002157688, 254095.729800000786781 ], [ 367483.149099998176098, 254085.482700001448393 ], [ 367490.846100002527237, 254083.661100000143051 ], [ 367493.579099997878075, 254036.219000000506639 ], [ 367489.567299999296665, 254033.864100001752377 ], [ 367487.14299999922514, 254034.477600000798702 ], [ 367483.071900002658367, 254039.088300000876188 ], [ 367474.965599998831749, 254044.088199999183416 ], [ 367472.517899997532368, 254047.445700000971556 ], [ 367464.465499997138977, 254046.113200001418591 ], [ 367459.355099998414516, 254042.876800000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302010200", "MAP": "A9-138-T70", "PARCEL_NAM": "83", "ACRE": "0.55", "LONGITUDE": -64.89964078, "LATITUDE": 18.31537665, "OBJECTID_1": 41830, "PARCEL_NO_": "109302010200", "Tax_Legal_": "BOLONGO 83 FRENCHMAN BAY QTR", "Name": "JLD TRUST", "Address": "Mt Vernal Baptist Church Rd", "City": "Rockwood", "State": "Tennessee", "Zip": 37854, "Country": "United States", "Land_Value": 41600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.497201445, "SHAPE_Area": 2203.84710713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362169.346799999475479, 254010.374499998986721 ], [ 362089.395999997854233, 254024.496700000017881 ], [ 362093.262100003659725, 254043.949000000953674 ], [ 362157.700599998235703, 254052.286800000816584 ], [ 362169.346799999475479, 254010.374499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84996306, "LATITUDE": 18.3151777, "OBJECTID_1": 39879, "PARCEL_NO_": "107704016900", "Tax_Legal_": "2H-8 NAZARETH RED HOOK QTR", "Name": "ESP TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 164500, "Improved_V": 175700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.34122106800001, "SHAPE_Area": 2709.1929705299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367424.601999998092651, 254087.372400000691414 ], [ 367372.054300002753735, 254008.415500000119209 ], [ 367360.638199999928474, 254023.30970000103116 ], [ 367357.350100003182888, 254030.671000000089407 ], [ 367354.855599999427795, 254039.516600001603365 ], [ 367354.006099998950958, 254044.575899999588728 ], [ 367357.946000002324581, 254055.3739 ], [ 367360.246200002729893, 254069.32490000128746 ], [ 367418.907399997115135, 254093.236400000751019 ], [ 367420.545199997723103, 254090.29450000077486 ], [ 367424.601999998092651, 254087.372400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8487934, "LATITUDE": 18.31524853, "OBJECTID_1": 40241, "PARCEL_NO_": "107803031300", "Tax_Legal_": "8-35 ESTATE NAZARETH RED HOOK QTR", "Name": "FRENCH CAP VI LLC", "Address": "6501 Redhook Plaza---", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 244600, "Improved_V": 342400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.33618085099999, "SHAPE_Area": 1521.74387776 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367493.579099997878075, 254036.219000000506639 ], [ 367490.846100002527237, 254083.661100000143051 ], [ 367514.869400002062321, 254092.755199998617172 ], [ 367514.9324000030756, 254085.367499999701977 ], [ 367519.762999996542931, 254086.251400001347065 ], [ 367527.021600000560284, 254086.099700000137091 ], [ 367515.362099997699261, 254034.919599998742342 ], [ 367511.3108000010252, 254037.208500001579523 ], [ 367508.092699997127056, 254036.337799999862909 ], [ 367505.691799998283386, 254034.20719999819994 ], [ 367501.663800001144409, 254033.752000000327826 ], [ 367495.994400002062321, 254036.660900000482798 ], [ 367493.579099997878075, 254036.219000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90283011, "LATITUDE": 18.31532124, "OBJECTID_1": 41927, "PARCEL_NO_": "109302020800", "Tax_Legal_": "21-60 (LOT 84) FRENCHMANS BAY FRENCHMAN'S BAY QTR.", "Name": "SANCTUARY HOLDINGS LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.475953006, "SHAPE_Area": 2137.7190946199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361748.262900002300739, 254029.092999998480082 ], [ 361796.503200002014637, 254045.741999998688698 ], [ 361837.041799999773502, 254019.898200001567602 ], [ 361833.030000001192093, 254017.543299999088049 ], [ 361833.067800000309944, 254013.110700000077486 ], [ 361827.457699999213219, 254009.054000001400709 ], [ 361811.365699999034405, 254004.911499999463558 ], [ 361796.045699998736382, 254004.786100000143051 ], [ 361783.929499998688698, 254007.220100000500679 ], [ 361775.029500000178814, 254010.735800001770258 ], [ 361767.736699998378754, 254014.897999998182058 ], [ 361748.262900002300739, 254029.092999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704017100", "MAP": "D9-9088-T016", "PARCEL_NAM": "2H-10", "ACRE": "1.04", "LONGITUDE": -64.8496193, "LATITUDE": 18.31499556, "OBJECTID_1": 39881, "PARCEL_NO_": "107704017100", "Tax_Legal_": "NAZARETH 2H 10 RED HOOK QTR", "Name": "BARNARD, GEOFFREY & ANN", "Address": "5500 Veterans Dr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 181500, "Improved_V": 518100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.02145726399999, "SHAPE_Area": 4659.2137107899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367436.329800002276897, 254089.364500001072884 ], [ 367459.355099998414516, 254042.876800000667572 ], [ 367458.049199998378754, 254042.049899999052286 ], [ 367457.278899997472763, 254037.821699999272823 ], [ 367458.967000000178814, 254028.9695999994874 ], [ 367459.006599999964237, 254024.325899999588728 ], [ 367457.413699999451637, 254021.990800000727177 ], [ 367455.003799997270107, 254020.915600001811981 ], [ 367448.546099998056889, 254021.707100000232458 ], [ 367441.253300003707409, 254025.869300000369549 ], [ 367437.990299999713898, 254030.275600001215935 ], [ 367433.969499997794628, 254028.976100001484156 ], [ 367434.007299996912479, 254024.543499998748302 ], [ 367438.078400000929832, 254019.932700000703335 ], [ 367443.029600001871586, 254006.674300000071526 ], [ 367443.887999996542931, 254000.55970000103116 ], [ 367441.497900001704693, 253997.162599999457598 ], [ 367436.663599997758865, 253996.700800001621246 ], [ 367431.811300002038479, 253998.349899999797344 ], [ 367426.116800002753735, 254004.213899999856949 ], [ 367425.279899999499321, 254007.7956000007689 ], [ 367423.660099998116493, 254008.626800000667572 ], [ 367420.434799998998642, 254008.600400000810623 ], [ 367418.033900000154972, 254006.469799999147654 ], [ 367417.265299998223782, 254002.030499998480082 ], [ 367411.6841000020504, 253994.596599999815226 ], [ 367406.871399998664856, 253991.60190000012517 ], [ 367393.943400003015995, 253994.662500001490116 ], [ 367380.988499999046326, 254000.889199998229742 ], [ 367375.310099996626377, 254004.853500001132488 ], [ 367372.054300002753735, 254008.415500000119209 ], [ 367424.601999998092651, 254087.372400000691414 ], [ 367427.836199998855591, 254086.343400001525879 ], [ 367431.05969999730587, 254086.580800000578165 ], [ 367433.473200000822544, 254087.233899999409914 ], [ 367436.329800002276897, 254089.364500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84768314, "LATITUDE": 18.31514191, "OBJECTID_1": 40238, "PARCEL_NO_": "107803031000", "Tax_Legal_": "8-32 NAZARETH RED HOOK", "Name": "HONEY BADGER II LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 231600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.04457672900003, "SHAPE_Area": 3116.0746189400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367673.156599998474121, 254064.708700001239777 ], [ 367654.629399999976158, 254062.446100000292063 ], [ 367626.787900000810623, 254017.677499998360872 ], [ 367616.289599999785423, 254019.491500001400709 ], [ 367601.779600001871586, 254018.950500000268221 ], [ 367598.574100002646446, 254016.602200001478195 ], [ 367589.731700003147125, 254013.363499999046326 ], [ 367609.274499997496605, 254085.717399999499321 ], [ 367613.284500002861023, 254088.283399999141693 ], [ 367671.488200001418591, 254071.239000000059605 ], [ 367673.156599998474121, 254064.708700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89890793, "LATITUDE": 18.31516178, "OBJECTID_1": 41835, "PARCEL_NO_": "109302010700", "Tax_Legal_": "BOLONGO BAY 44 FRENCHMAN BAY QTR", "Name": "VI EMPLOYEE BENEFIT CONSULTANTS INC", "Address": "4003 WEYMOUTH RHYMER HIGHWAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47600, "Improved_V": 268700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.736351, "SHAPE_Area": 2894.5441249300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362184.877099998295307, 253985.803700000047684 ], [ 362174.335699997842312, 253992.683499999344349 ], [ 362173.495300002396107, 253996.687399998307228 ], [ 362169.346799999475479, 254010.374499998986721 ], [ 362227.120800003409386, 254043.778000000864267 ], [ 362229.557700000703335, 254041.686999998986721 ], [ 362235.279200002551079, 254032.656800001859665 ], [ 362246.86429999768734, 253997.92119999974966 ], [ 362193.795100003480911, 253980.177200000733137 ], [ 362189.741999998688698, 253982.677099999040365 ], [ 362184.877099998295307, 253985.803700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8959908, "LATITUDE": 18.31511845, "OBJECTID_1": 41939, "PARCEL_NO_": "109401010400", "Tax_Legal_": "6 ESTATE BOLONGO FRENCHMAN S BAY QTR", "Name": "MAYNARD, PAUL", "Address": "PO Box 11125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 100200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 395.47875134200001, "SHAPE_Area": 4886.7372022500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362463.848700001835823, 253989.564599998295307 ], [ 362462.20549999922514, 253993.139699999243021 ], [ 362456.523500002920628, 253997.526200000196695 ], [ 362448.440600000321865, 253999.7820999994874 ], [ 362438.710900001227856, 254006.035199999809265 ], [ 362470.773400001227856, 254020.274900000542402 ], [ 362515.840000003576279, 254039.174899999052286 ], [ 362520.735399998724461, 254032.46000000089407 ], [ 362532.111900001764297, 254022.209499999880791 ], [ 362541.820000000298023, 254018.48930000141263 ], [ 362550.693099997937679, 254018.139699999243021 ], [ 362559.542700000107288, 254020.534200001507998 ], [ 362567.5591000020504, 254026.088199999183416 ], [ 362573.122400000691414, 254035.633000001311302 ], [ 362574.718800000846386, 254037.545899998396635 ], [ 362577.875699996948242, 254045.593299999833107 ], [ 362579.689699999988079, 254021.965599998831749 ], [ 362583.884900003671646, 254002.790500000119209 ], [ 362509.183799996972084, 253968.615200001746416 ], [ 362507.340999998152256, 253995.620099999010563 ], [ 362463.848700001835823, 253989.564599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84839593, "LATITUDE": 18.31513449, "OBJECTID_1": 40240, "PARCEL_NO_": "107803031200", "Tax_Legal_": "8-34 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "SCHMIDT, PATRICK W. & DEWEY J. CATON (TRUSTEES)", "Address": "2635 N Terrace Ave", "City": "Milwaukee", "State": "Wisconsin", "Zip": 53211, "Country": "United States", "Land_Value": 263800, "Improved_V": 525400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.357135392, "SHAPE_Area": 3339.8098888099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367576.231899999082088, 254083.547100000083447 ], [ 367567.255599997937679, 254001.358300000429153 ], [ 367559.980800002813339, 254003.409699998795986 ], [ 367555.079999998211861, 254010.757800001651049 ], [ 367544.522399999201298, 254019.537399999797344 ], [ 367539.634199999272823, 254025.407999999821186 ], [ 367538.793700002133846, 254029.411899998784065 ], [ 367536.333400003612041, 254034.246899999678135 ], [ 367531.477600000798702, 254036.31810000166297 ], [ 367522.624300003051758, 254034.345800001174212 ], [ 367515.362099997699261, 254034.919599998742342 ], [ 367527.021600000560284, 254086.099700000137091 ], [ 367576.231899999082088, 254083.547100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84805397, "LATITUDE": 18.3150868, "OBJECTID_1": 40239, "PARCEL_NO_": "107803031100", "Tax_Legal_": "8-33 NAZARETH RED HOOK QTR", "Name": "BOYD HOLDINGS USVI LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 235600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.00583284499999, "SHAPE_Area": 2078.0618246499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367576.231899999082088, 254083.547100000083447 ], [ 367596.400499999523163, 254082.445599999278784 ], [ 367602.039300002157688, 254083.125100001692772 ], [ 367609.274499997496605, 254085.717399999499321 ], [ 367589.731700003147125, 254013.363499999046326 ], [ 367588.946900002658367, 254010.823899999260902 ], [ 367585.755900003015995, 254006.787000000476837 ], [ 367576.927799999713898, 254001.859600000083447 ], [ 367571.294399999082088, 254000.546999998390675 ], [ 367567.255599997937679, 254001.358300000429153 ], [ 367576.231899999082088, 254083.547100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90431943, "LATITUDE": 18.31513337, "OBJECTID_1": 41921, "PARCEL_NO_": "109302020200", "Tax_Legal_": "21-61 (LOT 83) FRENCHMANS BAY FRENCHMAN'S BAY QTR.", "Name": "SMITH, ELVIS B", "Address": "PO Box 961", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 80400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.13840227700001, "SHAPE_Area": 2632.6826589399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361672.692500002682209, 254002.298900000751019 ], [ 361634.322200000286102, 253962.932500001043081 ], [ 361625.319700002670288, 253978.479800000786781 ], [ 361615.570200003683567, 253987.054800000041723 ], [ 361596.825400002300739, 254010.332800000905991 ], [ 361656.312700003385544, 254031.929000001400709 ], [ 361666.170100003480911, 254010.6891999989748 ], [ 361672.692500002682209, 254002.298900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90211653, "LATITUDE": 18.31512107, "OBJECTID_1": 41926, "PARCEL_NO_": "109302020700", "Tax_Legal_": "21-31 (LOT 26) FRENCHMANS BAY FRENCHMANS BAY", "Name": "WRIGHT, KENNETH J", "Address": "85 Hill Rd", "City": "Redding", "State": "Connecticut", "Zip": 6896, "Country": "United States", "Land_Value": 77000, "Improved_V": 489000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.84440700600001, "SHAPE_Area": 2291.8410324199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361909.777099996805191, 254000.861800000071526 ], [ 361888.946099996566772, 253985.07039999961853 ], [ 361862.461800001561642, 253970.288199998438358 ], [ 361837.963200002908707, 254006.395700000226498 ], [ 361851.607600003480911, 254013.895700000226498 ], [ 361844.311200000345707, 254018.480000000447035 ], [ 361860.315200001001358, 254032.965399999171495 ], [ 361909.777099996805191, 254000.861800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90343753000001, "LATITUDE": 18.31510839, "OBJECTID_1": 41923, "PARCEL_NO_": "109302020400", "Tax_Legal_": "21-34 (LOT 29) FRENCHMANS BAY FRENCHMANS BAY", "Name": "RICHARDS (LIFE ESTATE), EDECIA A", "Address": "2839 Field Spring Dr", "City": "Lithonia", "State": "Georgia", "Zip": 30058, "Country": "United States", "Land_Value": 79500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.725800142, "SHAPE_Area": 2397.3741176499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361764.568999998271465, 254008.11710000038147 ], [ 361743.880000002682209, 253975.650400001555681 ], [ 361738.313100002706051, 253966.527899999171495 ], [ 361711.573499999940395, 253981.718800000846386 ], [ 361692.0996999964118, 253995.913800001144409 ], [ 361733.73309999704361, 254030.8739 ], [ 361764.568999998271465, 254008.11710000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504060400", "MAP": "A9-379-T90", "PARCEL_NAM": "17E", "ACRE": "2.73", "LONGITUDE": -64.88713716, "LATITUDE": 18.31440836, "OBJECTID_1": 37857, "PARCEL_NO_": "107504060400", "Tax_Legal_": "BOVONI ESTATE 17-E FRENCHMAN'S BAY QTR.", "Name": "DRY MARINA LLC", "Address": "7411 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 277800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 564.91889241199999, "SHAPE_Area": 11958.896654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363430.448600001633167, 253913.352099999785423 ], [ 363430.855599999427795, 253913.285100001841784 ], [ 363434.295199997723103, 253918.047600001096725 ], [ 363430.855599999427795, 253921.222600001841784 ], [ 363427.680600002408028, 253926.249699998646975 ], [ 363423.976400002837181, 253931.012200001627207 ], [ 363417.097300000488758, 253937.362199999392033 ], [ 363411.276399999856949, 253945.035100001841784 ], [ 363411.276399999856949, 253954.2956000007689 ], [ 363416.038900002837181, 253962.762299999594688 ], [ 363426.357699997723103, 253975.46229999884963 ], [ 363440.380599997937679, 253992.131099998950958 ], [ 363446.466099999845028, 254002.185300000011921 ], [ 363452.022299997508526, 254012.239399999380112 ], [ 363456.255699999630451, 254023.352000001817942 ], [ 363460.224399998784065, 254036.581199999898672 ], [ 363465.251500003039837, 254041.872800000011921 ], [ 363470.555299997329712, 254042.133699998259544 ], [ 363474.631800003349781, 254036.889699999243021 ], [ 363477.921800002455711, 254029.317200001329184 ], [ 363479.550599999725819, 254027.430700000375509 ], [ 363481.193800002336502, 254023.855599999427795 ], [ 363482.854999996721745, 254018.169700000435114 ], [ 363484.483800001442432, 254016.283100001513958 ], [ 363486.126999996602535, 254012.708000000566244 ], [ 363486.963899999856949, 254009.126299999654293 ], [ 363494.348399996757507, 253994.199099998921156 ], [ 363500.973300002515316, 253973.777199998497963 ], [ 363501.874899998307228, 253962.596599999815226 ], [ 363494.846500001847744, 253935.730200000107288 ], [ 363491.050499998033047, 253908.045899998396635 ], [ 363489.057700000703335, 253858.000399999320507 ], [ 363465.662100002169609, 253859.28660000115633 ], [ 363358.116800002753735, 253894.292300000786781 ], [ 363423.287900000810623, 253911.291000001132488 ], [ 363430.691200003027916, 253913.205600000917912 ], [ 363430.448600001633167, 253913.352099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89831635, "LATITUDE": 18.31512286, "OBJECTID_1": 42010, "PARCEL_NO_": "109401020200", "Tax_Legal_": "45 BOLONGO FRENCHMAN BAY QTR", "Name": "PEOLA O HARRIGAN TRUST", "Address": "PO BOX 600139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 163400, "Improved_V": 111000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.662770682, "SHAPE_Area": 1774.7536533699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362291.958499997854233, 254005.256299998611212 ], [ 362297.805799998342991, 253981.450599998235703 ], [ 362255.029899999499321, 253985.955699998885393 ], [ 362251.651799999177456, 254003.870999999344349 ], [ 362245.032300002872944, 254023.659600000828505 ], [ 362285.299400001764297, 254029.688700001686811 ], [ 362291.958499997854233, 254005.256299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302010400", "MAP": "A9-138-T70", "PARCEL_NAM": "84", "ACRE": "0.70", "LONGITUDE": -64.89971439, "LATITUDE": 18.31507436, "OBJECTID_1": 41832, "PARCEL_NO_": "109302010400", "Tax_Legal_": "BOLONGO 84 FRENCHMAN BAY QTR", "Name": "LECIA P RICHMOND LIVING REVOCABLE TRUST", "Address": "7173 Bolongo Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 274800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.16828555800001, "SHAPE_Area": 3184.9827231099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362123.921300001442432, 253973.44539999961853 ], [ 362112.521899998188019, 253969.095400001853704 ], [ 362106.673199996352196, 253974.688000001013279 ], [ 362078.299999997019768, 254001.818900000303984 ], [ 362086.284000001847744, 254011.172400001436472 ], [ 362088.647200003266335, 254017.735599998384714 ], [ 362089.395999997854233, 254024.496700000017881 ], [ 362169.346799999475479, 254010.374499998986721 ], [ 362173.495300002396107, 253996.687399998307228 ], [ 362174.335699997842312, 253992.683499999344349 ], [ 362123.921300001442432, 253973.44539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803030900", "MAP": "A9-35-T65", "PARCEL_NAM": "8-31", "ACRE": null, "LONGITUDE": -64.84730151, "LATITUDE": 18.31486256, "OBJECTID_1": 40237, "PARCEL_NO_": "107803030900", "Tax_Legal_": "8-31 NAZARETH 1 RED HOOK", "Name": "MARSHALL, ROBERT", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 368100, "Improved_V": 1222500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.565105851, "SHAPE_Area": 3272.5771646600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367698.646799996495247, 254006.866599999368191 ], [ 367677.147900000214577, 253974.815499998629093 ], [ 367668.975100003182888, 253987.625300001353025 ], [ 367663.271499998867512, 253994.544700000435114 ], [ 367653.54900000244379, 253999.953600000590086 ], [ 367630.018500000238419, 254017.070700000971556 ], [ 367626.787900000810623, 254017.677499998360872 ], [ 367654.629399999976158, 254062.446100000292063 ], [ 367673.156599998474121, 254064.708700001239777 ], [ 367679.781499996781349, 254044.286899998784065 ], [ 367683.0625, 254037.769799999892712 ], [ 367683.078699998557568, 254035.870099999010563 ], [ 367687.194799996912479, 254025.982400000095367 ], [ 367688.823600001633167, 254024.095899999141693 ], [ 367690.481200002133846, 254018.832100000232458 ], [ 367692.108199998736382, 254017.156700000166893 ], [ 367698.646799996495247, 254006.866599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90301177000001, "LATITUDE": 18.31491133, "OBJECTID_1": 41924, "PARCEL_NO_": "109302020500", "Tax_Legal_": "21-33 (LOT 28) FRENCHMANS BAY FRENCHMANS BAY", "Name": "WESSELHOFT, YVONNE V. & ECEDRO A", "Address": "P.O.BOX 4493", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77800, "Improved_V": 569800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.07538804500001, "SHAPE_Area": 2292.7760947400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361800.948299996554852, 253997.22690000012517 ], [ 361800.523199997842312, 253952.471599999815226 ], [ 361790.039399996399879, 253952.596799999475479 ], [ 361770.666299998760223, 253954.971400000154972 ], [ 361752.074400000274181, 253960.307700000703335 ], [ 361749.633799999952316, 253962.820799998939037 ], [ 361749.587099999189377, 253968.308899998664856 ], [ 361751.982699997723103, 253971.072700001299381 ], [ 361743.880000002682209, 253975.650400001555681 ], [ 361764.568999998271465, 254008.11710000038147 ], [ 361774.291500002145767, 254002.708200000226498 ], [ 361789.652800001204014, 253997.978799998760223 ], [ 361800.948299996554852, 253997.22690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302010300", "MAP": "A9-138-T70", "PARCEL_NAM": "86", "ACRE": "0.50", "LONGITUDE": -64.90052147, "LATITUDE": 18.31516277, "OBJECTID_1": 41831, "PARCEL_NO_": "109302010300", "Tax_Legal_": "BOLONGO 86 FRENCHMAN BAY QTR", "Name": "WILLIAM A SLOSKY FAMILY TRUST", "Address": "3341 NE 17th Way", "City": "Oakland Park", "State": "Florida", "Zip": 33334, "Country": "United States", "Land_Value": 50800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.935576892, "SHAPE_Area": 2679.26979962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362068.622500002384186, 254001.950800001621246 ], [ 362065.40259999781847, 254001.29109999909997 ], [ 362061.365699999034405, 254001.891399998217821 ], [ 362057.355700001120567, 253999.325399998575449 ], [ 362057.400700002908707, 253994.048500001430511 ], [ 362054.997900001704693, 253992.129000000655651 ], [ 362059.871699996292591, 253987.947000000625849 ], [ 362026.171999998390675, 253968.250599998980761 ], [ 362015.337499998509884, 254009.536200001835823 ], [ 362009.50450000166893, 254031.653299998492002 ], [ 362006.489699997007847, 254042.815600000321865 ], [ 362024.849899999797344, 254036.186200000345707 ], [ 362081.425399996340275, 254015.758099999278784 ], [ 362080.620099999010563, 254013.447999998927116 ], [ 362076.633500002324581, 254008.138099998235703 ], [ 362068.622500002384186, 254001.950800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90253354, "LATITUDE": 18.31488484, "OBJECTID_1": 41925, "PARCEL_NO_": "109302020600", "Tax_Legal_": "21-32 (LOT 27) FRENCHMANS BAY FRENCHMANS BAY", "Name": "PASKALIDES, PROCTOR H.", "Address": "6200 Gabriel St", "City": "Bowie", "State": "Maryland", "Zip": 20720, "Country": "United States", "Land_Value": 79500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.484447335, "SHAPE_Area": 2350.6490240200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361800.948299996554852, 253997.22690000012517 ], [ 361818.674599997699261, 253998.849599998444319 ], [ 361831.543300002813339, 254002.754599999636412 ], [ 361834.754100002348423, 254004.4695999994874 ], [ 361863.329300001263618, 253963.118099998682737 ], [ 361848.063299998641014, 253956.660300001502037 ], [ 361837.601000003516674, 253954.252700001001358 ], [ 361832.770300000905991, 253953.36879999935627 ], [ 361823.911700002849102, 253952.029699999839067 ], [ 361800.523199997842312, 253952.471599999815226 ], [ 361800.948299996554852, 253997.22690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109302020800", "MAP": "D9-4972-T90", "PARCEL_NAM": "21-60", "ACRE": "0.532", "LONGITUDE": -64.90405127, "LATITUDE": 18.31482317, "OBJECTID_1": 41927, "PARCEL_NO_": "109302020800", "Tax_Legal_": "21-60 (LOT 84) FRENCHMANS BAY FRENCHMAN'S BAY QTR.", "Name": "SANCTUARY HOLDINGS LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.95819826499999, "SHAPE_Area": 2317.5412735700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361698.66889999806881, 253982.035399999469519 ], [ 361660.435300000011921, 253926.627099998295307 ], [ 361634.322200000286102, 253962.932500001043081 ], [ 361672.692500002682209, 254002.298900000751019 ], [ 361698.66889999806881, 253982.035399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90188736, "LATITUDE": 18.31472547, "OBJECTID_1": 41933, "PARCEL_NO_": "109302021400", "Tax_Legal_": "FRENCHMANS BAY (LOT 90) 21-54 FRENCHMANS BAY", "Name": "WRIGHT, KENNETH J.", "Address": "85 Hill Rd", "City": "Redding", "State": "Connecticut", "Zip": 6896, "Country": "United States", "Land_Value": 85500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.80129439699999, "SHAPE_Area": 2652.1684490799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361890.374600000679493, 253912.043699998408556 ], [ 361870.629299998283386, 253958.111600000411272 ], [ 361866.543799996376038, 253964.410999998450279 ], [ 361862.461800001561642, 253970.288199998438358 ], [ 361888.946099996566772, 253985.07039999961853 ], [ 361909.777099996805191, 254000.861800000071526 ], [ 361919.911399997770786, 253947.115899998694658 ], [ 361890.374600000679493, 253912.043699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302010500", "MAP": "A9-138-T70", "PARCEL_NAM": "85", "ACRE": "0.50", "LONGITUDE": -64.90019362, "LATITUDE": 18.31488393, "OBJECTID_1": 41833, "PARCEL_NO_": "109302010500", "Tax_Legal_": "85 ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "LIBURD, LYNIA M.", "Address": "PO Box 307353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.418456467, "SHAPE_Area": 1677.0683529600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362112.521899998188019, 253969.095400001853704 ], [ 362093.707599997520447, 253961.915800001472235 ], [ 362089.119099996984005, 253962.346200000494719 ], [ 362026.171999998390675, 253968.250599998980761 ], [ 362059.871699996292591, 253987.947000000625849 ], [ 362078.299999997019768, 254001.818900000303984 ], [ 362106.673199996352196, 253974.688000001013279 ], [ 362112.521899998188019, 253969.095400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401010700", "MAP": "D9-5529-T93", "PARCEL_NAM": "1 REM", "ACRE": "1.00", "LONGITUDE": -64.89564454000001, "LATITUDE": 18.31470586, "OBJECTID_1": 41942, "PARCEL_NO_": "109401010700", "Tax_Legal_": "1 BOLONGO FRENCHMANS BAY QTR", "Name": "HODGE, RHYS S. & JEAN", "Address": "PO Box 6520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 84100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.27216859599997, "SHAPE_Area": 4224.2912459899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362564.28999999910593, 253936.557799998670816 ], [ 362556.230400003492832, 253936.069699998944998 ], [ 362510.292199999094009, 253933.160500001162291 ], [ 362509.183799996972084, 253968.615200001746416 ], [ 362583.884900003671646, 254002.790500000119209 ], [ 362598.09570000320673, 253943.800599999725819 ], [ 362594.915399998426437, 253938.49720000103116 ], [ 362564.28999999910593, 253936.557799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89882297, "LATITUDE": 18.31475072, "OBJECTID_1": 41836, "PARCEL_NO_": "109302010800", "Tax_Legal_": "BOLONGO 42 FRENCHMAN BAY", "Name": "BALDWIN, TAMMY G. & BRYAN E.", "Address": "2631 N SHIELDS BLVD", "City": "MOORE", "State": "Oklahoma", "Zip": 731600000, "Country": "United States", "Land_Value": 50300, "Improved_V": 297300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.63051671900001, "SHAPE_Area": 2937.0171434399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362246.86429999768734, 253997.92119999974966 ], [ 362248.572200000286102, 253986.74720000103116 ], [ 362248.721500001847744, 253969.227600000798702 ], [ 362244.031099997460842, 253951.879599999636412 ], [ 362238.458800002932549, 253943.3902000002563 ], [ 362232.847000002861023, 253939.544599998742342 ], [ 362226.419900000095367, 253936.747800000011921 ], [ 362215.955799996852875, 253934.551199998706579 ], [ 362192.579899996519089, 253933.515500001609325 ], [ 362190.95830000191927, 253934.557700000703335 ], [ 362189.016599997878075, 253973.171999998390675 ], [ 362187.36259999871254, 253978.013599999248981 ], [ 362188.145599998533726, 253980.764199998229742 ], [ 362189.741999998688698, 253982.677099999040365 ], [ 362193.795100003480911, 253980.177200000733137 ], [ 362246.86429999768734, 253997.92119999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89938896, "LATITUDE": 18.31470535, "OBJECTID_1": 41837, "PARCEL_NO_": "109302010900", "Tax_Legal_": "BOLONGO 41 FRENCHMAN BAY", "Name": "NIEBOER, SCOTT D.J. & ISELAH K.", "Address": "7150 BOLONGO BAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59400, "Improved_V": 132600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.873964473, "SHAPE_Area": 2933.2241151200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362123.921300001442432, 253973.44539999961853 ], [ 362174.335699997842312, 253992.683499999344349 ], [ 362184.877099998295307, 253985.803700000047684 ], [ 362184.083400003612041, 253984.319499999284744 ], [ 362181.671700000762939, 253983.455400001257658 ], [ 362180.098600000143051, 253978.798500001430511 ], [ 362182.526500001549721, 253977.762899998575449 ], [ 362184.1570999994874, 253975.665300000458956 ], [ 362186.105999998748302, 253936.206799998879433 ], [ 362184.505999997258186, 253934.715999998152256 ], [ 362176.450099997222424, 253933.805700000375509 ], [ 362170.015699997544289, 253931.853199999779463 ], [ 362147.541500002145767, 253919.636900000274181 ], [ 362123.921300001442432, 253973.44539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89632217, "LATITUDE": 18.31466631, "OBJECTID_1": 41940, "PARCEL_NO_": "109401010500", "Tax_Legal_": "BOLONGO ESTATE 2-A-2 FRENCHMAN BAY QTR", "Name": "SMITH, PATRICK E. & LEWIS, CEREESE", "Address": "PO Box 304867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38300, "Improved_V": 71200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.437494431, "SHAPE_Area": 3465.0820655900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362510.292199999094009, 253933.160500001162291 ], [ 362459.654500000178814, 253913.958799999207258 ], [ 362457.9628000035882, 253923.232999999076128 ], [ 362456.154200002551079, 253946.227400001138449 ], [ 362456.872400000691414, 253956.576900001615286 ], [ 362463.917000003159046, 253981.543600000441074 ], [ 362463.848700001835823, 253989.564599998295307 ], [ 362507.340999998152256, 253995.620099999010563 ], [ 362509.183799996972084, 253968.615200001746416 ], [ 362510.292199999094009, 253933.160500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90376108, "LATITUDE": 18.31460424, "OBJECTID_1": 41928, "PARCEL_NO_": "109302020900", "Tax_Legal_": "21-59 EST. FRENCHMANS BAY FRENCHMANS BAY QTR.", "Name": "HARPGROVE LTD.", "Address": "PO Box 502698", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 60800, "Improved_V": 105500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.231930637, "SHAPE_Area": 2708.5059690200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361730.289499998092651, 253961.81810000166297 ], [ 361701.738799996674061, 253905.64469999819994 ], [ 361660.435300000011921, 253926.627099998295307 ], [ 361698.66889999806881, 253982.035399999469519 ], [ 361705.162600003182888, 253977.022300001233816 ], [ 361730.289499998092651, 253961.81810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401020300", "MAP": "G9-1394-T69", "PARCEL_NAM": "45A", "ACRE": "0.55", "LONGITUDE": -64.89818241, "LATITUDE": 18.31469025, "OBJECTID_1": 42011, "PARCEL_NO_": "109401020300", "Tax_Legal_": "BOLONGO ESTATE 45A No.3 FRENCHMAN'S BAY QTR.", "Name": "LEWIS, MELVIN & LUCITA A.", "Address": "PO Box 303521", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41600, "Improved_V": 379600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.38516462699999, "SHAPE_Area": 1844.09825348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362316.517599999904633, 253910.700500000268221 ], [ 362284.157700002193451, 253932.328600000590086 ], [ 362298.844099998474121, 253954.228000000119209 ], [ 362253.62049999833107, 253962.090599998831749 ], [ 362255.157600000500679, 253970.969099998474121 ], [ 362255.029899999499321, 253985.955699998885393 ], [ 362297.805799998342991, 253981.450599998235703 ], [ 362316.517599999904633, 253910.700500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89981989, "LATITUDE": 18.3144976, "OBJECTID_1": 41838, "PARCEL_NO_": "109302011000", "Tax_Legal_": "BOLONGO 38 3 FRENCHMAN BAY QTR", "Name": "NAJAWICZ, PETER R. & JULIE", "Address": "PO Box 11295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64100, "Improved_V": 360400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.02903324, "SHAPE_Area": 2992.6398729699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362089.119099996984005, 253962.346200000494719 ], [ 362093.707599997520447, 253961.915800001472235 ], [ 362123.921300001442432, 253973.44539999961853 ], [ 362147.541500002145767, 253919.636900000274181 ], [ 362115.434600003063679, 253902.275600001215935 ], [ 362108.991300001740456, 253901.378499999642372 ], [ 362094.468699999153614, 253902.315099999308586 ], [ 362093.637199997901917, 253905.263599999248981 ], [ 362092.012000001966953, 253906.727899998426437 ], [ 362089.587700001895428, 253907.341400001198053 ], [ 362089.119099996984005, 253962.346200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90029641, "LATITUDE": 18.31457426, "OBJECTID_1": 41839, "PARCEL_NO_": "109302011100", "Tax_Legal_": "BOLONGO BAY 38-1 FRENCHMAN BAY 3", "Name": "Pamela Sue Balash Living Revoc Trust & Andre Webber", "Address": "7147 Bolongo Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022727, "Country": "United States", "Land_Value": 47600, "Improved_V": 193400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.25184073700001, "SHAPE_Area": 2522.4712978900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362089.119099996984005, 253962.346200000494719 ], [ 362089.587700001895428, 253907.341400001198053 ], [ 362086.375, 253905.837400000542402 ], [ 362033.678800001740456, 253938.969999998807907 ], [ 362026.171999998390675, 253968.250599998980761 ], [ 362089.119099996984005, 253962.346200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89674945, "LATITUDE": 18.31435627, "OBJECTID_1": 41938, "PARCEL_NO_": "109401010300", "Tax_Legal_": "11 BOLONGO FRENCHMANS BAY QTR", "Name": "FIRST CHURCH OF GOD U. S. V. I. IN", "Address": "PO Box 307634", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 172100, "Improved_V": 124800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 349.85138199900001, "SHAPE_Area": 3749.0725421000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362454.340199999511242, 253969.855099998414516 ], [ 362450.430900000035763, 253955.468699999153614 ], [ 362451.487099997699261, 253926.135400000959635 ], [ 362454.863399997353554, 253908.431099999696016 ], [ 362460.637100003659725, 253893.279599998146296 ], [ 362462.26410000026226, 253891.604200001806021 ], [ 362490.880599997937679, 253845.397799998521805 ], [ 362488.481499999761581, 253843.056200001388788 ], [ 362453.540299996733665, 253874.434200000017881 ], [ 362435.641400001943111, 253893.075100000947714 ], [ 362426.667700000107288, 253905.245000001043081 ], [ 362425.045999996364117, 253906.287200000137091 ], [ 362424.219999998807907, 253908.60249999910593 ], [ 362422.598300002515316, 253909.64469999819994 ], [ 362420.137999996542931, 253914.479699999094009 ], [ 362414.429099999368191, 253922.032400000840425 ], [ 362413.599399998784065, 253924.769799999892712 ], [ 362410.338200002908707, 253928.964999999850988 ], [ 362406.241899996995926, 253936.530799999833107 ], [ 362398.848399996757507, 253952.513399999588728 ], [ 362396.354000002145767, 253961.358899999409914 ], [ 362454.340199999511242, 253969.855099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90341605, "LATITUDE": 18.31444601, "OBJECTID_1": 41929, "PARCEL_NO_": "109302021000", "Tax_Legal_": "21-58 ESTATE FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "HARPGROVE LTD.", "Address": "PO Box 502698", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 77000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.12798338900001, "SHAPE_Area": 2341.2022441899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361760.223800003528595, 253950.241900000721216 ], [ 361745.39299999922514, 253892.703099999576807 ], [ 361701.738799996674061, 253905.64469999819994 ], [ 361730.289499998092651, 253961.81810000166297 ], [ 361742.434600003063679, 253956.006900001317263 ], [ 361760.223800003528595, 253950.241900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401023500", "MAP": "D9-7139-T002", "PARCEL_NAM": "43-A", "ACRE": "0.46", "LONGITUDE": -64.89834709, "LATITUDE": 18.31455477, "OBJECTID_1": 42224, "PARCEL_NO_": "109401023500", "Tax_Legal_": "43-A BOLONGO NO.3 FRENCHMAN'S BAY QTR", "Name": "HYNDMAN, RASHAAD", "Address": "7185 Bolongo Bay Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.096144904, "SHAPE_Area": 1420.8054979799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362298.844099998474121, 253954.228000000119209 ], [ 362273.364000000059605, 253916.233800001442432 ], [ 362249.8733000010252, 253933.410000000149012 ], [ 362242.529899999499321, 253938.779500000178814 ], [ 362244.921899996697903, 253941.965500000864267 ], [ 362250.483400002121925, 253951.7212999984622 ], [ 362250.465400002896786, 253953.832100000232458 ], [ 362252.056400001049042, 253956.378199998289347 ], [ 362253.62049999833107, 253962.090599998831749 ], [ 362298.844099998474121, 253954.228000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90222338, "LATITUDE": 18.31443129, "OBJECTID_1": 41932, "PARCEL_NO_": "109302021300", "Tax_Legal_": "21-55 (LOT 89) FRENCHMANS BAY FRENCHMANS BAY", "Name": "HOBROS VI PROPERTIES LLC", "Address": "235 3rd Ave N", "City": "Saint Petersburg", "State": "Florida", "Zip": 33701, "Country": "United States", "Land_Value": 76100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.28916268200001, "SHAPE_Area": 2273.2078543600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361841.347699999809265, 253893.066199999302626 ], [ 361837.98759999871254, 253908.870700001716614 ], [ 361836.861199997365475, 253946.436200000345707 ], [ 361839.276600003242493, 253946.878100000321865 ], [ 361854.562399998307228, 253951.013999998569489 ], [ 361870.629299998283386, 253958.111600000411272 ], [ 361890.374600000679493, 253912.043699998408556 ], [ 361855.011900000274181, 253898.244300000369549 ], [ 361841.347699999809265, 253893.066199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010300", "MAP": "D9-2558-T84", "PARCEL_NAM": "18A", "ACRE": null, "LONGITUDE": -64.89022377000001, "LATITUDE": 18.31449852, "OBJECTID_1": 42228, "PARCEL_NO_": "109402010300", "Tax_Legal_": "BOVONI ESTATE 18M WESTERN PORTION", "Name": "BOLONGO INVESTMENTS LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 1643300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.21342603299999, "SHAPE_Area": 1108.13439442 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363105.269900001585484, 253947.529399998486042 ], [ 363134.146099999547005, 253965.497600000351667 ], [ 363152.10249999910593, 253940.102200001478195 ], [ 363123.229900002479553, 253921.711899999529123 ], [ 363117.540799997746944, 253926.942600000649691 ], [ 363107.746399998664856, 253940.794599998742342 ], [ 363105.269900001585484, 253947.529399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90303458, "LATITUDE": 18.3143732, "OBJECTID_1": 41930, "PARCEL_NO_": "109302021100", "Tax_Legal_": "FRENCHMAN'S BAY 21-57(LOT 87) FRENCHMAN'S BAY QTR.", "Name": "MCGOWAN, NATHANIEL C. A/K/A NATHANIEL CHAUNCEY", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.61699927800001, "SHAPE_Area": 2442.6437726 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361797.357299998402596, 253945.479600001126528 ], [ 361794.603200003504753, 253890.150499999523163 ], [ 361745.39299999922514, 253892.703099999576807 ], [ 361760.223800003528595, 253950.241900000721216 ], [ 361765.072499997913837, 253949.015000000596046 ], [ 361776.378799997270107, 253946.996599998325109 ], [ 361784.449100002646446, 253946.218299999833107 ], [ 361797.357299998402596, 253945.479600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90262799, "LATITUDE": 18.31436075, "OBJECTID_1": 41931, "PARCEL_NO_": "109302021200", "Tax_Legal_": "21-56 (LOT 88) FRENCHMANS BAY FRENCHMANS BAY", "Name": "SMALL, KEITH T. & ESTHER C. A", "Address": "11 Valente Dr", "City": "Worcester", "State": "Massachusetts", "Zip": 1604, "Country": "United States", "Land_Value": 75300, "Improved_V": 197000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.85949975899999, "SHAPE_Area": 2292.7784625300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361797.357299998402596, 253945.479600001126528 ], [ 361821.561099998652935, 253943.988899998366833 ], [ 361836.861199997365475, 253946.436200000345707 ], [ 361837.98759999871254, 253908.870700001716614 ], [ 361841.347699999809265, 253893.066199999302626 ], [ 361820.4087999984622, 253889.939500000327826 ], [ 361794.603200003504753, 253890.150499999523163 ], [ 361797.357299998402596, 253945.479600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109601010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86476767000001, "LATITUDE": 18.31381861, "OBJECTID_1": 42247, "PARCEL_NO_": "109601010300", "Tax_Legal_": "COCULUS ROCK RED HOOK", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 921500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 636.31530371500003, "SHAPE_Area": 21550.637379100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365777.373199999332428, 253971.299100000411272 ], [ 365786.206699997186661, 253975.593299999833107 ], [ 365796.672600001096725, 253977.57880000025034 ], [ 365813.606899999082088, 253977.506299998611212 ], [ 365828.937700003385544, 253976.365200001746416 ], [ 365845.88459999859333, 253974.815099999308586 ], [ 365852.349500000476837, 253973.179299999028444 ], [ 365860.457599997520447, 253967.968299999833107 ], [ 365863.715199999511242, 253964.195300001651049 ], [ 365866.182700000703335, 253958.515999998897314 ], [ 365880.825800001621246, 253943.437100000679493 ], [ 365888.167099997401237, 253933.575800001621246 ], [ 365895.477899998426437, 253927.302799999713898 ], [ 365898.744499996304512, 253922.474399998784065 ], [ 365901.238899998366833, 253913.628899998962879 ], [ 365902.133299998939037, 253903.292599998414516 ], [ 365897.432099997997284, 253887.210999999195337 ], [ 365895.837499998509884, 253885.087000001221895 ], [ 365895.853699997067451, 253883.187300000339746 ], [ 365892.687799997627735, 253876.195300001651049 ], [ 365889.512900002300739, 253870.258699998259544 ], [ 365887.912799999117851, 253868.76799999922514 ], [ 365887.142499998211861, 253864.539799999445677 ], [ 365879.144100002944469, 253856.875 ], [ 365870.290799997746944, 253854.902699999511242 ], [ 365864.684399999678135, 253850.423799999058247 ], [ 365863.903300002217293, 253847.462099999189377 ], [ 365863.996799997985363, 253836.486000001430511 ], [ 365860.802100002765656, 253832.871300000697374 ], [ 365856.779500000178814, 253831.782900001853704 ], [ 365853.581200003623962, 253828.590300001204014 ], [ 365852.063900001347065, 253817.389899998903275 ], [ 365856.144000001251698, 253811.723799999803305 ], [ 365863.435000002384186, 253807.772700000554323 ], [ 365865.117799997329712, 253799.553800001740456 ], [ 365859.541900001466274, 253791.486600000411272 ], [ 365851.530900001525879, 253785.299300000071526 ], [ 365842.686700001358986, 253782.271600000560284 ], [ 365832.204599998891354, 253782.185899998992682 ], [ 365816.864900000393391, 253784.38230000063777 ], [ 365807.156800001859665, 253788.102600000798702 ], [ 365799.864000000059605, 253792.264800000935793 ], [ 365791.737899996340275, 253799.586500000208616 ], [ 365788.48929999768734, 253802.304099999368191 ], [ 365783.581299997866154, 253810.496599998325109 ], [ 365781.952500000596046, 253812.383099999278784 ], [ 365772.973399996757507, 253825.1864 ], [ 365769.679799996316433, 253833.181000001728535 ], [ 365767.930500000715256, 253849.209699999541044 ], [ 365769.264399997889996, 253881.940200001001358 ], [ 365764.262900002300739, 253901.10869999974966 ], [ 365759.358499996364117, 253908.879099998623133 ], [ 365743.970200002193451, 253916.774700000882149 ], [ 365730.167599998414516, 253927.849700000137091 ], [ 365724.469499997794628, 253934.135800000280142 ], [ 365719.548900000751019, 253943.805900000035763 ], [ 365714.6858000010252, 253946.721400000154972 ], [ 365714.649899996817112, 253950.942899998277426 ], [ 365717.05799999833107, 253952.229200001806021 ], [ 365752.552000001072884, 253950.619899999350309 ], [ 365756.567299999296665, 253952.552600000053644 ], [ 365762.976499997079372, 253957.460200000554323 ], [ 365769.356799997389317, 253965.745099999010563 ], [ 365777.373199999332428, 253971.299100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401020400", "MAP": "D9-7139-T002", "PARCEL_NAM": "43-B", "ACRE": "0.46", "LONGITUDE": -64.89867632000001, "LATITUDE": 18.31432185, "OBJECTID_1": 42012, "PARCEL_NO_": "109401020400", "Tax_Legal_": "43-B BOLONGO NO.1 FRENCHMAN'S BAY QTR", "Name": "TODMAN, THERESA", "Address": "7185 Bolongo Bay Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.49251930299999, "SHAPE_Area": 1908.21673362 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362249.8733000010252, 253933.410000000149012 ], [ 362273.364000000059605, 253916.233800001442432 ], [ 362263.750200003385544, 253909.432500001043081 ], [ 362250.119400002062321, 253899.789299998432398 ], [ 362230.019100002944469, 253892.869800001382828 ], [ 362189.645400002598763, 253927.657999999821186 ], [ 362195.052799999713898, 253927.203000001609325 ], [ 362203.918600000441074, 253927.697700001299381 ], [ 362217.61879999935627, 253928.654199998825788 ], [ 362227.278300002217293, 253930.633099999278784 ], [ 362238.523500002920628, 253935.791400000452995 ], [ 362242.529899999499321, 253938.779500000178814 ], [ 362249.8733000010252, 253933.410000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90020053000001, "LATITUDE": 18.31406876, "OBJECTID_1": 41840, "PARCEL_NO_": "109302011200", "Tax_Legal_": "35 BOLONGO FRENCHMAN BAY QTR", "Name": "TURNBULL, JULIAN", "Address": "14PA-1 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.80227313, "SHAPE_Area": 3660.3939875800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362116.586199998855591, 253861.754999998956919 ], [ 362057.818899996578693, 253850.297200001776218 ], [ 362033.678800001740456, 253938.969999998807907 ], [ 362086.375, 253905.837400000542402 ], [ 362084.778599999845028, 253903.924499999731779 ], [ 362084.79839999973774, 253901.602600000798702 ], [ 362087.242499999701977, 253898.667300000786781 ], [ 362090.473099999129772, 253898.060499999672174 ], [ 362095.332599997520447, 253895.567099999636412 ], [ 362108.237199999392033, 253895.250599998980761 ], [ 362110.67230000346899, 253893.370700001716614 ], [ 362111.554099999368191, 253884.511900000274181 ], [ 362113.224299997091293, 253877.770599998533726 ], [ 362115.691799998283386, 253872.091299999505281 ], [ 362116.586199998855591, 253861.754999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "D9-730-T68", "PARCEL_NAM": "58", "ACRE": "3.58", "LONGITUDE": -64.89746773, "LATITUDE": 18.31383958, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 449.988260771, "SHAPE_Area": 13034.3667513 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362368.248400002717972, 253797.764600001275539 ], [ 362356.194899998605251, 253785.044100001454353 ], [ 362323.158399999141693, 253803.669300001114607 ], [ 362302.203299999237061, 253828.751800000667572 ], [ 362287.280799999833107, 253845.791000001132488 ], [ 362284.257200002670288, 253850.626400001347065 ], [ 362297.247000001370907, 253857.745200000703335 ], [ 362302.853399999439716, 253862.22410000115633 ], [ 362314.015900000929832, 253877.092000000178814 ], [ 362324.274999998509884, 253903.351500000804663 ], [ 362329.058899998664856, 253909.723499998450279 ], [ 362337.060900002717972, 253916.9662000015378 ], [ 362358.736000001430511, 253928.331500001251698 ], [ 362385.266999997198582, 253937.625700000673532 ], [ 362390.103100001811981, 253937.876400001347065 ], [ 362394.145400002598763, 253936.642900001257658 ], [ 362398.205799996852875, 253933.298599999397993 ], [ 362399.854400001466274, 253929.090300001204014 ], [ 362403.936300002038479, 253923.213100001215935 ], [ 362407.20830000191927, 253917.751400001347065 ], [ 362412.112700000405312, 253909.981100000441074 ], [ 362413.755900003015995, 253906.405900001525879 ], [ 362416.194600000977516, 253904.103900000452995 ], [ 362417.020700000226498, 253901.788600001484156 ], [ 362425.989000000059605, 253890.251899998635054 ], [ 362434.125900000333786, 253881.663600001484156 ], [ 362440.973700001835823, 253874.514199998229742 ], [ 362411.914399996399879, 253843.846799999475479 ], [ 362383.942900002002716, 253814.327500000596046 ], [ 362368.248400002717972, 253797.764600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011600", "MAP": "D9-5966-T95", "PARCEL_NAM": "8-5", "ACRE": "0.51", "LONGITUDE": -64.8443092, "LATITUDE": 18.31421161, "OBJECTID_1": 42262, "PARCEL_NO_": "109701011600", "Tax_Legal_": "8-5 ESTATE NAZARETH\nRED HOOK QTR", "Name": "ANGELFISH PARADISE LLC", "Address": "400 N Michigan Ave", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 426400, "Improved_V": 1713400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.908826925, "SHAPE_Area": 2525.7933579 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367964.144799999892712, 253983.075100000947714 ], [ 367977.88629999756813, 253979.17680000141263 ], [ 367988.415100000798702, 253973.774500001221895 ], [ 367998.994199998676777, 253962.462000001221895 ], [ 368008.686200000345707, 253960.641499999910593 ], [ 368011.101499997079372, 253961.083500001579523 ], [ 368015.869300000369549, 253969.355200000107288 ], [ 368019.888199999928474, 253970.865699999034405 ], [ 368023.135099999606609, 253968.359099999070168 ], [ 368023.250100001692772, 253954.850099999457598 ], [ 368008.054300002753735, 253940.160300001502037 ], [ 367971.892499998211861, 253925.509899999946356 ], [ 367963.778999999165535, 253931.354200001806021 ], [ 367952.443899996578693, 253936.749800000339746 ], [ 367946.785300001502037, 253938.392299998551607 ], [ 367964.144799999892712, 253983.075100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401011900", "MAP": "D9-5529-T93", "PARCEL_NAM": "1-D", "ACRE": "0.50", "LONGITUDE": -64.89567159000001, "LATITUDE": 18.31433179, "OBJECTID_1": 42008, "PARCEL_NO_": "109401011900", "Tax_Legal_": "1-D ESTATE BOLONGO FRENCHMAN'S BAY QTR.", "Name": "HUNTE, WISHBURNE I. & MAUREEN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54100, "Improved_V": 334900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.48426898700001, "SHAPE_Area": 2428.2058717599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362587.010600000619888, 253919.856300000101328 ], [ 362585.433899998664856, 253915.621500000357628 ], [ 362584.645599998533726, 253913.504099998623133 ], [ 362583.85360000282526, 253911.808899998664856 ], [ 362580.716499999165535, 253901.439599998295307 ], [ 362515.645499996840954, 253902.30970000103116 ], [ 362520.203500002622604, 253905.58839999884367 ], [ 362526.039099998772144, 253907.839400000870228 ], [ 362524.168499998748302, 253913.43129999935627 ], [ 362520.937899999320507, 253914.038199998438358 ], [ 362520.108199998736382, 253916.775600001215935 ], [ 362511.258500002324581, 253914.381099998950958 ], [ 362510.292199999094009, 253933.160500001162291 ], [ 362556.230400003492832, 253936.069699998944998 ], [ 362564.28999999910593, 253936.557799998670816 ], [ 362594.915399998426437, 253938.49720000103116 ], [ 362592.543300002813339, 253932.989399999380112 ], [ 362587.010600000619888, 253919.856300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401010600", "MAP": "B9-453-T75", "PARCEL_NAM": "2B", "ACRE": "0.35", "LONGITUDE": -64.89628203, "LATITUDE": 18.31423044, "OBJECTID_1": 41941, "PARCEL_NO_": "109401010600", "Tax_Legal_": "BOLONGO 2B & 1A FRENCHMANS BAY QTR", "Name": "DOUMENG, PAUL A. & COLLEEN M.", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34900, "Improved_V": 249400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.252269748, "SHAPE_Area": 1560.2051393300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362512.167400002479553, 253902.356199998408556 ], [ 362504.13120000064373, 253899.124099999666214 ], [ 362503.350100003182888, 253896.162399999797344 ], [ 362473.619000002741814, 253883.886700000613928 ], [ 362465.440800003707409, 253897.329700000584126 ], [ 362459.654500000178814, 253913.958799999207258 ], [ 362510.292199999094009, 253933.160500001162291 ], [ 362511.258500002324581, 253914.381099998950958 ], [ 362512.167400002479553, 253902.356199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302012600", "MAP": "A9-22-T64", "PARCEL_NAM": "39", "ACRE": null, "LONGITUDE": -64.89914329, "LATITUDE": 18.31413529, "OBJECTID_1": 41919, "PARCEL_NO_": "109302012600", "Tax_Legal_": "BOLONGO 33,36,39&39A FRENCHMAN BAY QTR", "Name": "CARIBBEAN ROOTS, INC.", "Address": "P.O. BOX 4526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 139800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.262569864, "SHAPE_Area": 3571.17944721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362189.645400002598763, 253927.657999999821186 ], [ 362230.019100002944469, 253892.869800001382828 ], [ 362197.258799999952316, 253857.560100000351667 ], [ 362177.034500002861023, 253865.205099999904633 ], [ 362138.770999997854233, 253907.954999998211861 ], [ 362173.285999998450279, 253926.602600000798702 ], [ 362181.334700003266335, 253928.357200000435114 ], [ 362189.645400002598763, 253927.657999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302012600", "MAP": "A9-22-T64", "PARCEL_NAM": "36", "ACRE": null, "LONGITUDE": -64.89952603, "LATITUDE": 18.31389485, "OBJECTID_1": 41919, "PARCEL_NO_": "109302012600", "Tax_Legal_": "BOLONGO 33,36,39&39A FRENCHMAN BAY QTR", "Name": "CARIBBEAN ROOTS, INC.", "Address": "P.O. BOX 4526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 139800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.24304387800001, "SHAPE_Area": 2973.6945628799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362120.867700003087521, 253832.448100000619888 ], [ 362123.054700002074242, 253859.697000000625849 ], [ 362121.314400002360344, 253874.670400001108646 ], [ 362118.846900001168251, 253880.349800001829863 ], [ 362117.16950000077486, 253887.935400001704693 ], [ 362117.110200002789497, 253894.901000000536442 ], [ 362119.505800001323223, 253897.664799999445677 ], [ 362138.770999997854233, 253907.954999998211861 ], [ 362177.034500002861023, 253865.205099999904633 ], [ 362197.258799999952316, 253857.560100000351667 ], [ 362120.867700003087521, 253832.448100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8439434, "LATITUDE": 18.3137949, "OBJECTID_1": 42261, "PARCEL_NO_": "109701011500", "Tax_Legal_": "8-5B&8-6 ESTATE NAZARETH RED HOOK QTR", "Name": "BLACK MAGIC FLIGHTOPS LLC", "Address": "PO BOX 6254", "City": "San Juan", "State": "Puerto Rico", "Zip": 914, "Country": "United States", "Land_Value": 486800, "Improved_V": 324200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.05725856800001, "SHAPE_Area": 2902.4606139399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368023.250100001692772, 253954.850099999457598 ], [ 368023.314900003373623, 253947.251299999654293 ], [ 368024.959899999201298, 253943.464999999850988 ], [ 368025.825499996542931, 253936.506000000983477 ], [ 368029.939800001680851, 253926.8293999992311 ], [ 368034.849600002169609, 253918.425900001078844 ], [ 368038.11259999871254, 253914.019600000232458 ], [ 368047.851300001144409, 253906.710999999195337 ], [ 368051.890100002288818, 253905.899700000882149 ], [ 368053.590800002217293, 253895.570000000298023 ], [ 368052.098600000143051, 253881.414599999785423 ], [ 368052.193999998271465, 253870.227400001138449 ], [ 367999.612800002098083, 253889.850900001823902 ], [ 367988.977899998426437, 253907.706799998879433 ], [ 367984.905000001192093, 253912.528599999845028 ], [ 368008.054300002753735, 253940.160300001502037 ], [ 368023.250100001692772, 253954.850099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302011400", "MAP": "D9-7423-T004", "PARCEL_NAM": "37-REM", "ACRE": ".61", "LONGITUDE": -64.89865847, "LATITUDE": 18.31387741, "OBJECTID_1": 41841, "PARCEL_NO_": "109302011400", "Tax_Legal_": "37 EST. BOLONGO FRENCHMAN BAY", "Name": "ZAPPA, RICHARD A. & JUNE W.", "Address": "501 Rockwood Rd", "City": "Wilmington", "State": "Delaware", "Zip": 19802, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.99738413099999, "SHAPE_Area": 2362.1161183 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362250.119400002062321, 253899.789299998432398 ], [ 362258.441200003027916, 253875.708399999886751 ], [ 362260.695799998939037, 253870.532400000840425 ], [ 362270.055900000035763, 253855.106699999421835 ], [ 362270.670999996364117, 253853.728000000119209 ], [ 362263.4358000010252, 253851.13569999858737 ], [ 362256.214900001883507, 253846.854699999094009 ], [ 362248.212899997830391, 253839.611999999731779 ], [ 362197.258799999952316, 253857.560100000351667 ], [ 362230.019100002944469, 253892.869800001382828 ], [ 362250.119400002062321, 253899.789299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401029900", "MAP": "D9-2559-T84", "PARCEL_NAM": "18-1", "ACRE": null, "LONGITUDE": -64.8907254, "LATITUDE": 18.31364806, "OBJECTID_1": 42225, "PARCEL_NO_": "109401029900", "Tax_Legal_": "UNDIVIDED 1/4 INT. IN 18-I, 18-J 18-K, 18-4 BOVONI", "Name": "BOLONGO INVESTMENTS LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 279500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 354.868536968, "SHAPE_Area": 2505.5351650699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363111.044600002467632, 253837.596900001168251 ], [ 363102.95269999653101, 253840.90819999948144 ], [ 363090.031900003552437, 253843.124400001019239 ], [ 363077.150700002908707, 253840.697000000625849 ], [ 363056.278300002217293, 253829.760400000959635 ], [ 363042.621299996972084, 253823.738000001758337 ], [ 363031.417499996721745, 253813.724899999797344 ], [ 363024.216399997472763, 253807.122000001370907 ], [ 363023.9341000020504, 253840.261399999260902 ], [ 363070.523999996483326, 253861.329900000244379 ], [ 363080.214100003242493, 253859.720499999821186 ], [ 363089.889899998903275, 253859.799699999392033 ], [ 363101.962999999523163, 253862.431600000709295 ], [ 363111.60639999806881, 253866.310199998319149 ], [ 363124.408500000834465, 253878.025100000202656 ], [ 363130.799599997699261, 253885.043499998748302 ], [ 363137.167400002479553, 253894.805900000035763 ], [ 363137.129600003361702, 253899.238600000739098 ], [ 363142.809799998998642, 253895.063200000673532 ], [ 363148.52589999884367, 253886.666299998760223 ], [ 363146.101599998772144, 253887.279699999839067 ], [ 363141.272699996829033, 253886.18470000103116 ], [ 363137.307700000703335, 253878.34180000051856 ], [ 363130.126400001347065, 253869.417100001126528 ], [ 363118.913500003516674, 253860.459399998188019 ], [ 363110.882799997925758, 253856.594000000506639 ], [ 363111.044600002467632, 253837.596900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84573685, "LATITUDE": 18.3139305, "OBJECTID_1": 42265, "PARCEL_NO_": "109701011900", "Tax_Legal_": "8-19 NAZARETH RED HOOK QTR.", "Name": "RAYMOND T SCHILT and YOSHIKO TAMURA SCHILT", "Address": "524 E 72nd St", "City": "New York", "State": "New York", "Zip": 10021, "Country": "United States", "Land_Value": 328500, "Improved_V": 2025900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.42739381000001, "SHAPE_Area": 1847.77196725 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367863.164399996399879, 253910.05460000038147 ], [ 367837.389399997889996, 253906.677200000733137 ], [ 367823.710799999535084, 253903.187800001353025 ], [ 367806.828599996864796, 253897.138999998569489 ], [ 367801.665299996733665, 253935.304699998348951 ], [ 367860.508100003004074, 253937.897199999541044 ], [ 367863.164399996399879, 253910.05460000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84513357, "LATITUDE": 18.31394899, "OBJECTID_1": 42266, "PARCEL_NO_": "109701012000", "Tax_Legal_": "8-20 ESTATE NAZARETH RED HOOK QTR", "Name": "VILLA GRANDE INVESTMENTS LLC", "Address": "6501 Red Hook Plaza-number201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 183900, "Improved_V": 145400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.30890871299999, "SHAPE_Area": 1830.8367548399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367932.320200003683567, 253932.574299998581409 ], [ 367925.295400001108646, 253905.285799998790026 ], [ 367920.434199996292591, 253907.990200001746416 ], [ 367913.163000002503395, 253909.61939999833703 ], [ 367863.164399996399879, 253910.05460000038147 ], [ 367860.508100003004074, 253937.897199999541044 ], [ 367895.993000000715256, 253937.343299999833107 ], [ 367915.362499997019768, 253935.390900000929832 ], [ 367932.320200003683567, 253932.574299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84454486, "LATITUDE": 18.31373956, "OBJECTID_1": 42267, "PARCEL_NO_": "109701012100", "Tax_Legal_": "8-21 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "FEDDERSEN, FRAUKE (TRUSTEE)", "Address": "6002 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 277100, "Improved_V": 523400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.43700205499999, "SHAPE_Area": 2325.54366286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367932.320200003683567, 253932.574299998581409 ], [ 367943.630199998617172, 253930.133799999952316 ], [ 367952.528399996459484, 253926.829100001603365 ], [ 367960.627499997615814, 253922.673500001430511 ], [ 367971.183300003409386, 253914.105099998414516 ], [ 367979.321900002658367, 253905.305799998342991 ], [ 367985.849799998104572, 253896.282200001180172 ], [ 367989.159500002861023, 253886.387899998575449 ], [ 367990.01799999922514, 253880.273200001567602 ], [ 367988.426899999380112, 253877.727000001817942 ], [ 367969.950099997222424, 253869.554299999028444 ], [ 367965.112199999392033, 253869.514699999243021 ], [ 367926.91160000115633, 253904.876800000667572 ], [ 367925.295400001108646, 253905.285799998790026 ], [ 367932.320200003683567, 253932.574299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "D9-1203-T74", "PARCEL_NAM": "52-1", "ACRE": null, "LONGITUDE": -64.89666587000001, "LATITUDE": 18.31363966, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.45916545899999, "SHAPE_Area": 2145.0750574899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362411.914399996399879, 253843.846799999475479 ], [ 362440.973700001835823, 253874.514199998229742 ], [ 362448.77080000191927, 253866.373599998652935 ], [ 362482.900200001895428, 253835.62220000103116 ], [ 362486.143500000238419, 253833.537799999117851 ], [ 362467.736699998378754, 253817.133000001311302 ], [ 362423.263700000941753, 253831.545499999076128 ], [ 362411.914399996399879, 253843.846799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89009908, "LATITUDE": 18.31355265, "OBJECTID_1": 42232, "PARCEL_NO_": "109402010800", "Tax_Legal_": "18E BOVONI/WESTERN PART FRENCHMAN BAY QTR.", "Name": "FETT, WILLIAM", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70800, "Improved_V": 208200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.97238309900001, "SHAPE_Area": 3064.4982534800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363169.453400000929832, 253796.489500001072884 ], [ 363142.058499999344349, 253793.943300001323223 ], [ 363142.79110000282526, 253802.604100000113249 ], [ 363137.865099996328354, 253812.907400000840425 ], [ 363135.419200003147125, 253816.053700000047684 ], [ 363128.938100002706051, 253819.589299999177456 ], [ 363126.492200002074242, 253822.735700000077486 ], [ 363124.021099999547005, 253828.837200000882149 ], [ 363111.044600002467632, 253837.596900001168251 ], [ 363110.882799997925758, 253856.594000000506639 ], [ 363118.913500003516674, 253860.459399998188019 ], [ 363130.126400001347065, 253869.417100001126528 ], [ 363137.307700000703335, 253878.34180000051856 ], [ 363141.272699996829033, 253886.18470000103116 ], [ 363146.101599998772144, 253887.279699999839067 ], [ 363148.52589999884367, 253886.666299998760223 ], [ 363154.294200003147125, 253872.147999998182058 ], [ 363155.960699997842312, 253865.828899998217821 ], [ 363169.453400000929832, 253796.489500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010300", "MAP": "D9-2559-T84", "PARCEL_NAM": "18-3", "ACRE": null, "LONGITUDE": -64.88978075, "LATITUDE": 18.31374421, "OBJECTID_1": 42228, "PARCEL_NO_": "109402010300", "Tax_Legal_": "BOVONI ESTATE 18M WESTERN PORTION", "Name": "BOLONGO INVESTMENTS LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 1643300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.755353832799997, "SHAPE_Area": 560.23779988000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363165.792900003492832, 253847.544199999421835 ], [ 363162.405900001525879, 253866.514899998903275 ], [ 363182.462999999523163, 253878.500300001353025 ], [ 363188.371500000357628, 253847.517900001257658 ], [ 363165.792900003492832, 253847.544199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90006155, "LATITUDE": 18.3135484, "OBJECTID_1": 41842, "PARCEL_NO_": "109302011700", "Tax_Legal_": "BOLONGO 32 3 FRENCHMAN BAY QTR", "Name": "CHARLESWELL, JUNIEL", "Address": "PO BOX 302445", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49600, "Improved_V": 138500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.26849699799999, "SHAPE_Area": 2869.2689196199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362057.818899996578693, 253850.297200001776218 ], [ 362116.586199998855591, 253861.754999998956919 ], [ 362116.654500000178814, 253853.734000001102686 ], [ 362115.905799999833107, 253846.972899999469519 ], [ 362115.32599999755621, 253820.370400000363588 ], [ 362116.164700001478195, 253816.577599998563528 ], [ 362074.482799999415874, 253787.316599998623133 ], [ 362063.660899996757507, 253827.124699998646975 ], [ 362057.818899996578693, 253850.297200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302012600", "MAP": "A9-22-T64", "PARCEL_NAM": "33", "ACRE": null, "LONGITUDE": -64.8992006, "LATITUDE": 18.31343634, "OBJECTID_1": 41919, "PARCEL_NO_": "109302012600", "Tax_Legal_": "BOLONGO 33,36,39&39A FRENCHMAN BAY QTR", "Name": "CARIBBEAN ROOTS, INC.", "Address": "P.O. BOX 4526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 139800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.02047611199998, "SHAPE_Area": 4524.0218592800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362232.663900002837181, 253771.723700001835823 ], [ 362221.350400000810623, 253774.586500000208616 ], [ 362206.788199998438358, 253780.166799999773502 ], [ 362188.156700000166893, 253790.146800000220537 ], [ 362134.73870000243187, 253813.352099999785423 ], [ 362123.392800003290176, 253820.014199998229742 ], [ 362121.758599996566772, 253822.534000001847744 ], [ 362120.867700003087521, 253832.448100000619888 ], [ 362197.258799999952316, 253857.560100000351667 ], [ 362232.663900002837181, 253771.723700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302011900", "MAP": "A9-22-T64", "PARCEL_NAM": "34", "ACRE": null, "LONGITUDE": -64.89863918, "LATITUDE": 18.31329027, "OBJECTID_1": 41843, "PARCEL_NO_": "109302011900", "Tax_Legal_": "34 BOLONGO FRENCHMAN BAY QTR", "Name": "BRISCOE, THOMAS RAY", "Address": "2841 Shoreview Dr", "City": "Naples", "State": "Florida", "Zip": 34112, "Country": "United States", "Land_Value": 78700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.77806720199999, "SHAPE_Area": 3507.0354637199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362248.212899997830391, 253839.611999999731779 ], [ 362246.621899999678135, 253837.065900001674891 ], [ 362245.124399997293949, 253823.543699998408556 ], [ 362249.234999999403954, 253814.289200000464916 ], [ 362251.682700000703335, 253810.931699998676777 ], [ 362252.516000002622604, 253807.772100001573563 ], [ 362254.963699996471405, 253804.414700001478195 ], [ 362256.601499997079372, 253801.472800001502037 ], [ 362259.061800003051758, 253796.637699998915195 ], [ 362260.714000001549721, 253792.007199998944998 ], [ 362263.15990000218153, 253788.860800001770258 ], [ 362265.618400000035763, 253784.236900001764297 ], [ 362271.365099996328354, 253772.251600001007318 ], [ 362275.446999996900558, 253766.374400001019239 ], [ 362278.760399997234344, 253756.057900000363588 ], [ 362280.475500002503395, 253744.039599999785423 ], [ 362278.879100002348423, 253742.1266999989748 ], [ 362274.843900002539158, 253742.515900000929832 ], [ 362271.586300000548363, 253746.288899999111891 ], [ 362245.61710000038147, 253765.708099998533726 ], [ 362232.663900002837181, 253771.723700001835823 ], [ 362197.258799999952316, 253857.560100000351667 ], [ 362248.212899997830391, 253839.611999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84511584000001, "LATITUDE": 18.31361276, "OBJECTID_1": 42269, "PARCEL_NO_": "109701012300", "Tax_Legal_": "8-23 NAZARETH RED HOOK QTR", "Name": "JOANNE M RAPP REVOCABLE TRUST", "Address": "509 Stickney Bridge Rd", "City": "Jay", "State": "New York", "Zip": 12941, "Country": "United States", "Land_Value": 275900, "Improved_V": 426100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.59300981800001, "SHAPE_Area": 1989.2150941299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367886.160099998116493, 253861.05799999833107 ], [ 367857.590300001204014, 253901.776299998164177 ], [ 367864.841700002551079, 253902.469000000506639 ], [ 367914.035800002515316, 253901.816100001335144 ], [ 367920.504299998283386, 253899.758099999278784 ], [ 367924.5574000030756, 253897.258200000971556 ], [ 367939.193300001323223, 253883.023600000888109 ], [ 367886.160099998116493, 253861.05799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401022100", "MAP": "C9-168-T73", "PARCEL_NAM": "13", "ACRE": "5.00", "LONGITUDE": -64.89456579, "LATITUDE": 18.31279339, "OBJECTID_1": 42044, "PARCEL_NO_": "109401022100", "Tax_Legal_": "13 ESTATE BOVONI WESTERN PORTION", "Name": "VIALET, FREDERICK", "Address": "PO Box 546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 398000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 770.09464385599995, "SHAPE_Area": 21362.5546068 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362622.012500002980232, 253597.380699999630451 ], [ 362617.158399999141693, 253599.240800000727177 ], [ 362615.52419999986887, 253601.760600000619888 ], [ 362616.147100001573563, 253623.297200001776218 ], [ 362618.560699999332428, 253623.950199998915195 ], [ 362618.540899999439716, 253626.272100001573563 ], [ 362616.895900003612041, 253630.058299999684095 ], [ 362615.994300000369549, 253641.238899998366833 ], [ 362622.443000003695488, 253641.50279999896884 ], [ 362623.22410000115633, 253644.464499998837709 ], [ 362628.009800001978874, 253650.625399999320507 ], [ 362630.322700001299381, 253663.098799999803305 ], [ 362644.609700001776218, 253689.813499998301268 ], [ 362644.537799999117851, 253698.256700001657009 ], [ 362640.337200000882149, 253718.065099999308586 ], [ 362633.782399997115135, 253730.254900000989437 ], [ 362628.093299999833107, 253735.485700000077486 ], [ 362627.227600000798702, 253742.444699998944998 ], [ 362624.761900000274181, 253747.912900000810623 ], [ 362622.308799996972084, 253751.903599999845028 ], [ 362614.994499996304512, 253758.598700001835823 ], [ 362606.898999996483326, 253762.33219999819994 ], [ 362616.231299996376038, 253802.727400001138449 ], [ 362627.901600003242493, 253852.640999998897314 ], [ 362681.107400000095367, 253854.342999998480082 ], [ 362705.26799999922514, 253857.918299999088049 ], [ 362714.119499996304512, 253860.101700000464916 ], [ 362719.837399996817112, 253851.493599999696016 ], [ 362730.432800002396107, 253838.281399998813868 ], [ 362735.299400001764297, 253834.943799998611212 ], [ 362740.952600002288818, 253833.934599999338388 ], [ 362745.007500000298023, 253831.223499998450279 ], [ 362753.165899999439716, 253820.102400001138449 ], [ 362753.223499998450279, 253813.347800001502037 ], [ 362750.028800003230572, 253809.7331000007689 ], [ 362744.460100002586842, 253800.821600001305342 ], [ 362737.340000003576279, 253784.720199998468161 ], [ 362733.409100003540516, 253772.866799999028444 ], [ 362730.302599996328354, 253758.909200001507998 ], [ 362706.2533999979496, 253742.247099999338388 ], [ 362704.716300003230572, 253733.368599999696016 ], [ 362700.798100002110004, 253720.037599999457598 ], [ 362692.939900003373623, 253695.908599998801947 ], [ 362689.770400002598763, 253689.338799998164177 ], [ 362689.790200002491474, 253687.0168999992311 ], [ 362684.282700002193451, 253670.928700000047684 ], [ 362684.304300002753735, 253668.395799998193979 ], [ 362676.86150000244379, 253595.507599998265505 ], [ 362675.259700000286102, 253594.227899998426437 ], [ 362672.039800003170967, 253593.568300001323223 ], [ 362661.556000001728535, 253593.693599998950958 ], [ 362659.936099998652935, 253594.524700000882149 ], [ 362658.298299998044968, 253597.466600000858307 ], [ 362656.626400001347065, 253604.418999999761581 ], [ 362658.197700001299381, 253609.287000000476837 ], [ 362661.404899999499321, 253611.424199998378754 ], [ 362661.388700000941753, 253613.323899999260902 ], [ 362658.134700000286102, 253616.674800001084805 ], [ 362651.677000001072884, 253617.466299999505281 ], [ 362644.434600003063679, 253615.718299999833107 ], [ 362642.832800000905991, 253614.4386 ], [ 362640.48929999768734, 253605.55350000038743 ], [ 362629.262100003659725, 253598.284400001168251 ], [ 362622.012500002980232, 253597.380699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84559114, "LATITUDE": 18.31352646, "OBJECTID_1": 42270, "PARCEL_NO_": "109701012400", "Tax_Legal_": "8-24 ESTATE NAZARETH\nRED HOOK QTR", "Name": "ELIZABETH S FOSTER & CHARLES PESSLER", "Address": "6501 Red Hook Plz Ste 201 PMB 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 281700, "Improved_V": 308400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.26664169599999, "SHAPE_Area": 2397.8792515800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367845.981200002133846, 253844.686099998652935 ], [ 367845.11370000243187, 253851.856100000441074 ], [ 367843.461499996483326, 253856.486699998378754 ], [ 367840.185900002717972, 253862.37049999833107 ], [ 367836.933700002729893, 253865.510299999266863 ], [ 367831.26070000231266, 253868.841299999505281 ], [ 367798.898500002920628, 253881.453200001269579 ], [ 367799.685099996626377, 253883.781599998474121 ], [ 367821.374600000679493, 253893.458399999886751 ], [ 367839.070299997925758, 253898.669399999082088 ], [ 367857.590300001204014, 253901.776299998164177 ], [ 367886.160099998116493, 253861.05799999833107 ], [ 367845.981200002133846, 253844.686099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010500", "MAP": null, "PARCEL_NAM": "n", "ACRE": null, "LONGITUDE": -64.88922301, "LATITUDE": 18.31347888, "OBJECTID_1": 42230, "PARCEL_NO_": "109402010500", "Tax_Legal_": "18A REM BOVONI/WESTERN POR NOS 1&2 FRENCHMAN'S BAY QTR", "Name": "BANKS, TRUSTEE, DONNA L", "Address": "11004 Laforce Ln", "City": "King George", "State": "Virginia", "Zip": 22485, "Country": "United States", "Land_Value": 27400, "Improved_V": 125900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.48911776899999, "SHAPE_Area": 1420.4665519800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363210.413400001823902, 253815.82319999858737 ], [ 363204.742299996316433, 253818.94310000166297 ], [ 363209.524400003254414, 253825.526200000196695 ], [ 363235.844999998807907, 253859.516600001603365 ], [ 363264.353699997067451, 253825.974899999797344 ], [ 363242.680299997329712, 253814.398499999195337 ], [ 363210.413400001823902, 253815.82319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401020600", "MAP": null, "PARCEL_NAM": "49", "ACRE": null, "LONGITUDE": -64.89821988, "LATITUDE": 18.31333846, "OBJECTID_1": 42014, "PARCEL_NO_": "109401020600", "Tax_Legal_": "49 BOLONGO FRENCHMAN BAY QTR", "Name": "NILES, NAVARRO & LARAINE C. S", "Address": "PO Box 303523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.43031972399999, "SHAPE_Area": 2561.7888242899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362282.664300002157688, 253771.077500000596046 ], [ 362280.198600001633167, 253776.545800000429153 ], [ 362274.477099999785423, 253785.5760000012815 ], [ 362273.645599998533726, 253788.524500001221895 ], [ 362271.199699997901917, 253791.670800000429153 ], [ 362269.547499999403954, 253796.301399998366833 ], [ 362267.101599998772144, 253799.447799999266863 ], [ 362266.268299996852875, 253802.607299998402596 ], [ 362263.80799999833107, 253807.442400000989437 ], [ 362262.170199997723103, 253810.384300000965595 ], [ 362259.722499996423721, 253813.741700001060963 ], [ 362256.428900003433228, 253821.736299999058247 ], [ 362254.801899999380112, 253823.411800000816584 ], [ 362253.977600000798702, 253825.515999998897314 ], [ 362254.722800001502037, 253832.699200000613928 ], [ 362257.114799998700619, 253835.885200001299381 ], [ 362265.129299998283386, 253841.650299999862909 ], [ 362276.378100000321865, 253846.386500000953674 ], [ 362317.935199998319149, 253795.6418999992311 ], [ 362295.558100000023842, 253772.027399998158216 ], [ 362282.664300002157688, 253771.077500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021800", "MAP": "D9-8747-T013", "PARCEL_NAM": "50", "ACRE": "1.19", "LONGITUDE": -64.89564981, "LATITUDE": 18.31326029, "OBJECTID_1": 42020, "PARCEL_NO_": "109401021800", "Tax_Legal_": "50 BOLONGO FRENCHMAN BAY QTR", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 628600, "Improved_V": 3055900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.26702756899999, "SHAPE_Area": 5474.2153136099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362589.335299998521805, 253836.282299999147654 ], [ 362588.582900002598763, 253829.943300001323223 ], [ 362578.898199997842312, 253830.91950000077486 ], [ 362575.766400001943111, 253819.916999999433756 ], [ 362579.074400000274181, 253810.233800001442432 ], [ 362616.231299996376038, 253802.727400001138449 ], [ 362606.898999996483326, 253762.33219999819994 ], [ 362580.990900002419949, 253774.574599999934435 ], [ 362567.242200002074242, 253779.317299999296665 ], [ 362552.7195999994874, 253780.253899998962879 ], [ 362527.725699998438358, 253779.838199999183416 ], [ 362514.833700001239777, 253778.677200000733137 ], [ 362493.900200001895428, 253774.917300000786781 ], [ 362489.875799998641014, 253774.03999999910593 ], [ 362489.876999996602535, 253774.055100001394749 ], [ 362494.385399997234344, 253787.393699999898672 ], [ 362511.316799998283386, 253822.133699998259544 ], [ 362519.30120000243187, 253822.199099998921156 ], [ 362526.543600000441074, 253823.94709999859333 ], [ 362538.584299996495247, 253830.378400001674891 ], [ 362558.671999998390675, 253838.775499999523163 ], [ 362584.411100000143051, 253846.374400001019239 ], [ 362583.665899999439716, 253839.191199999302626 ], [ 362589.335299998521805, 253836.282299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84392496, "LATITUDE": 18.31333374, "OBJECTID_1": 42260, "PARCEL_NO_": "109701011400", "Tax_Legal_": "8-7 ESTATE NAZARETH RED HOOK QTR", "Name": "CHASE, JEFFREY & CATHLEEN", "Address": "PO Box 8179", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 328600, "Improved_V": 999500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.49677654499999, "SHAPE_Area": 2558.0492461499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368019.554099999368191, 253820.775400001555681 ], [ 367991.727700002491474, 253868.888099998235703 ], [ 367996.527800001204014, 253873.360399998724461 ], [ 367998.907200001180172, 253878.023899998515844 ], [ 367999.612800002098083, 253889.850900001823902 ], [ 368052.193999998271465, 253870.227400001138449 ], [ 368052.361199997365475, 253850.597100000828505 ], [ 368046.8158999979496, 253838.941500000655651 ], [ 368041.997800000011921, 253836.580099999904633 ], [ 368038.000399999320507, 253832.53660000115633 ], [ 368033.232699997723103, 253824.264899998903275 ], [ 368027.622599996626377, 253820.208200000226498 ], [ 368019.554099999368191, 253820.775400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84489927, "LATITUDE": 18.31337952, "OBJECTID_1": 42268, "PARCEL_NO_": "109701012200", "Tax_Legal_": "8-22 ESTATE NAZARETH\nNo.1 RED HOOK QTR", "Name": "MBA LIVING REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 282700, "Improved_V": 690400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.740580962, "SHAPE_Area": 1612.8843697899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367904.122000001370907, 253835.029399998486042 ], [ 367886.160099998116493, 253861.05799999833107 ], [ 367939.193300001323223, 253883.023600000888109 ], [ 367953.827399998903275, 253869.000100001692772 ], [ 367953.064300000667572, 253863.927600000053644 ], [ 367951.475000001490116, 253861.170400001108646 ], [ 367929.79450000077486, 253850.438299998641014 ], [ 367904.122000001370907, 253835.029399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501020900", "MAP": null, "PARCEL_NAM": "1-15", "ACRE": null, "LONGITUDE": -64.87706391, "LATITUDE": 18.31342081, "OBJECTID_1": 42242, "PARCEL_NO_": "109501020900", "Tax_Legal_": "1-20 BOVONI FRENCHMAN BAY QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 583700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.701700413, "SHAPE_Area": 852.48393362499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364537.691899999976158, 253816.342700000852346 ], [ 364502.077500000596046, 253832.094300001859665 ], [ 364500.313799999654293, 253849.811799999326468 ], [ 364507.559799998998642, 253851.137600000947714 ], [ 364528.561700001358986, 253846.876600001007318 ], [ 364535.062600001692772, 253841.019099999219179 ], [ 364538.348899997770786, 253833.868900001049042 ], [ 364537.691899999976158, 253816.342700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501020900", "MAP": "D9-7289-T003", "PARCEL_NAM": "1-20-1", "ACRE": "1.109", "LONGITUDE": -64.87975324, "LATITUDE": 18.31242515, "OBJECTID_1": 42242, "PARCEL_NO_": "109501020900", "Tax_Legal_": "1-20 BOVONI FRENCHMAN BAY QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 583700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.79654155200001, "SHAPE_Area": 3171.6146443500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364262.840700000524521, 253717.378699999302626 ], [ 364194.668300002813339, 253683.457400001585484 ], [ 364196.277000002563, 253714.985700000077486 ], [ 364221.048299998044968, 253743.716299999505281 ], [ 364273.973899997770786, 253749.284400001168251 ], [ 364301.256099998950958, 253742.203000001609325 ], [ 364268.654799997806549, 253725.837900001555681 ], [ 364262.840700000524521, 253717.378699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84593485000001, "LATITUDE": 18.31321259, "OBJECTID_1": 42274, "PARCEL_NO_": "109701012800", "Tax_Legal_": "8-28 ESTATE NAZARETH RED HOOK QTR", "Name": "BRYAN, CARL & ELIZABETH", "Address": "DOROTHEA #3C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 316900, "Improved_V": 1316200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.324636231, "SHAPE_Area": 2466.47360123 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367833.3733000010252, 253810.174600001424551 ], [ 367791.365900002419949, 253819.118900001049042 ], [ 367788.025600001215935, 253832.601599998772144 ], [ 367786.272699996829033, 253849.052499998360872 ], [ 367787.732500001788139, 253867.007399998605251 ], [ 367790.090300001204014, 253874.203899998217821 ], [ 367791.701099999248981, 253874.428199999034405 ], [ 367828.109200000762939, 253860.160700000822544 ], [ 367834.606499999761581, 253854.725499998778105 ], [ 367836.262199997901917, 253849.672800000756979 ], [ 367837.189000003039837, 253835.537099998444319 ], [ 367835.691500000655651, 253822.014800000935793 ], [ 367833.3733000010252, 253810.174600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402011000", "MAP": "D9-2559-T84", "PARCEL_NAM": "18-C", "ACRE": null, "LONGITUDE": -64.8894352, "LATITUDE": 18.31317024, "OBJECTID_1": 42234, "PARCEL_NO_": "109402011000", "Tax_Legal_": "18C BOVONI/WESTERN PART FRENCHMAN BAY QTR.", "Name": "OGARRO, ANTONIO", "Address": "8168 Crown Bay Marnia", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59400, "Improved_V": 258300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.19424381600001, "SHAPE_Area": 2705.8690801799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363210.413400001823902, 253815.82319999858737 ], [ 363216.081000000238419, 253813.125300001353025 ], [ 363222.562100000679493, 253809.589800000190735 ], [ 363250.908900000154972, 253795.045200001448393 ], [ 363255.098700001835823, 253776.503299999982119 ], [ 363219.750399999320507, 253761.015299998223782 ], [ 363198.460799999535084, 253799.048900000751019 ], [ 363175.9003000035882, 253796.964499998837709 ], [ 363168.326999999582767, 253834.054900001734495 ], [ 363189.355800002813339, 253826.627700001001358 ], [ 363204.742299996316433, 253818.94310000166297 ], [ 363210.413400001823902, 253815.82319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84429313, "LATITUDE": 18.31315474, "OBJECTID_1": 42259, "PARCEL_NO_": "109701011300", "Tax_Legal_": "8-8 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "BROWN, AUDAIN AND ADELLE BROWN", "Address": "PO Box 10188", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 490900, "Improved_V": 1266100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.32631259600001, "SHAPE_Area": 2410.6480503399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368019.554099999368191, 253820.775400001555681 ], [ 368015.522600002586842, 253820.742400001734495 ], [ 368006.669299997389317, 253818.770100001245737 ], [ 368000.247599996626377, 253815.34010000154376 ], [ 367990.634800001978874, 253807.873100001364946 ], [ 367978.534699998795986, 253808.407400000840425 ], [ 367969.685000002384186, 253806.012899998575449 ], [ 367955.571299999952316, 253853.604600001126528 ], [ 367976.456299997866154, 253863.0636 ], [ 367991.727700002491474, 253868.888099998235703 ], [ 368019.554099999368191, 253820.775400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89982827, "LATITUDE": 18.31295326, "OBJECTID_1": 41844, "PARCEL_NO_": "109302012000", "Tax_Legal_": "31 EST BOLONGO 3 FRENCHMAN BAY", "Name": "SEAGATE DEV. CORP. C/O", "Address": "6117 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.819070979, "SHAPE_Area": 5198.1346351499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362159.456699997186661, 253751.492899999022484 ], [ 362095.314900003373623, 253708.326999999582767 ], [ 362074.482799999415874, 253787.316599998623133 ], [ 362116.164700001478195, 253816.577599998563528 ], [ 362119.461900003254414, 253808.160799998790026 ], [ 362124.362700000405312, 253800.812600001692772 ], [ 362128.430200003087521, 253796.624099999666214 ], [ 362134.913099996745586, 253792.877399999648333 ], [ 362143.843699999153614, 253785.773299999535084 ], [ 362151.174199998378754, 253777.17850000038743 ], [ 362153.634499996900558, 253772.343499999493361 ], [ 362155.259700000286102, 253770.879099998623133 ], [ 362158.562299996614456, 253761.829100001603365 ], [ 362159.424300000071526, 253755.292300000786781 ], [ 362158.630599997937679, 253753.808100000023842 ], [ 362159.456699997186661, 253751.492899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88904863, "LATITUDE": 18.31327606, "OBJECTID_1": 42237, "PARCEL_NO_": "109402011700", "Tax_Legal_": "18A-1 BOVONI WESTERN PART FRENCHMAN'S BAY QTR.", "Name": "R & G INVESTMENTS LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 204200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.540928525, "SHAPE_Area": 1019.79868422 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363210.413400001823902, 253815.82319999858737 ], [ 363242.680299997329712, 253814.398499999195337 ], [ 363264.353699997067451, 253825.974899999797344 ], [ 363283.902999997138977, 253802.914700001478195 ], [ 363250.908900000154972, 253795.045200001448393 ], [ 363222.562100000679493, 253809.589800000190735 ], [ 363216.081000000238419, 253813.125300001353025 ], [ 363210.413400001823902, 253815.82319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84537066, "LATITUDE": 18.31313336, "OBJECTID_1": 42271, "PARCEL_NO_": "109701012500", "Tax_Legal_": "8-25 ESTATE NAZARETH RED HOOK QTR", "Name": "CONNOR, MICHAEL F. & TIENEKE LOUW", "Address": "2369 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026252, "Country": "United States", "Land_Value": 319800, "Improved_V": 272200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.17087960800001, "SHAPE_Area": 2101.4655832600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367904.122000001370907, 253835.029399998486042 ], [ 367890.50280000269413, 253824.574400000274181 ], [ 367881.710600003600121, 253815.425400000065565 ], [ 367876.127599999308586, 253808.202500000596046 ], [ 367843.052599996328354, 253809.831700000911951 ], [ 367846.085400000214577, 253832.443500000983477 ], [ 367845.981200002133846, 253844.686099998652935 ], [ 367886.160099998116493, 253861.05799999833107 ], [ 367904.122000001370907, 253835.029399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "A9-45-T65", "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.89704159, "LATITUDE": 18.31298692, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.90566242900002, "SHAPE_Area": 4024.2218559500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362370.560599997639656, 253769.671500001102686 ], [ 362363.158399999141693, 253777.592500001192093 ], [ 362364.645099997520447, 253780.280099999159575 ], [ 362357.610500000417233, 253784.245999999344349 ], [ 362368.248400002717972, 253797.764600001275539 ], [ 362383.942900002002716, 253814.327500000596046 ], [ 362462.623000003397465, 253754.818500000983477 ], [ 362441.851300001144409, 253732.061500001698732 ], [ 362436.246699996292591, 253727.371599998325109 ], [ 362370.560599997639656, 253769.671500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501020900", "MAP": null, "PARCEL_NAM": "1-14", "ACRE": null, "LONGITUDE": -64.87713701, "LATITUDE": 18.31317493, "OBJECTID_1": 42242, "PARCEL_NO_": "109501020900", "Tax_Legal_": "1-20 BOVONI FRENCHMAN BAY QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 583700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.06201567400001, "SHAPE_Area": 1402.93410971 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364537.691899999976158, 253816.342700000852346 ], [ 364534.540399998426437, 253807.662099998444319 ], [ 364531.343900002539158, 253804.258400000631809 ], [ 364529.783399999141693, 253798.1239 ], [ 364521.025499999523163, 253784.964499998837709 ], [ 364517.855899997055531, 253778.394600000232458 ], [ 364486.910400003194809, 253814.027300000190735 ], [ 364502.077500000596046, 253832.094300001859665 ], [ 364537.691899999976158, 253816.342700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302012200", "MAP": "A9-22-T64", "PARCEL_NAM": "29", "ACRE": null, "LONGITUDE": -64.89911889, "LATITUDE": 18.31282783, "OBJECTID_1": 41846, "PARCEL_NO_": "109302012200", "Tax_Legal_": "29 BOLONGO FRENCHMAN BAY QTR", "Name": "SEAGATE DEV. CORP. C/O", "Address": "6117 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 339.37541822499998, "SHAPE_Area": 4114.7601904000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362221.837700001895428, 253717.384100001305342 ], [ 362200.541900001466274, 253690.945700000971556 ], [ 362197.835299998521805, 253695.233899999409914 ], [ 362164.316200003027916, 253748.999499998986721 ], [ 362167.535999998450279, 253749.659200001507998 ], [ 362169.137900002300739, 253750.938799999654293 ], [ 362169.931599996984005, 253752.423000000417233 ], [ 362169.893799997866154, 253756.855599999427795 ], [ 362165.014600001275539, 253761.670899998396635 ], [ 362163.346199996769428, 253768.201099999248981 ], [ 362161.706600002944469, 253771.354100000113249 ], [ 362155.162600003182888, 253782.277399998158216 ], [ 362148.64919999986887, 253789.612399999052286 ], [ 362139.71679999679327, 253796.927499998360872 ], [ 362133.235699996352196, 253800.463100001215935 ], [ 362128.358300000429153, 253805.067200001329184 ], [ 362125.088100001215935, 253810.317800000309944 ], [ 362129.128600001335144, 253809.295400001108646 ], [ 362146.131300002336502, 253801.201900001615286 ], [ 362184.166500002145767, 253785.25899999961257 ], [ 362205.225900001823902, 253774.243400000035763 ], [ 362218.168300002813339, 253769.494199998676777 ], [ 362221.837700001895428, 253717.384100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84469927000001, "LATITUDE": 18.31300221, "OBJECTID_1": 42258, "PARCEL_NO_": "109701011200", "Tax_Legal_": "8-9 ESTATE NAZARETH 1 RED HOOK", "Name": "HARBISON, KIMBERLY A & DOUGLAS L", "Address": "3275 E Robertson Blvd", "City": "Chowchilla", "State": "California", "Zip": 93610, "Country": "United States", "Land_Value": 391100, "Improved_V": 1861600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.85456657099999, "SHAPE_Area": 2368.3511852699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367969.685000002384186, 253806.012899998575449 ], [ 367944.833200000226498, 253788.921999998390675 ], [ 367937.639300003647804, 253781.474899999797344 ], [ 367909.827299997210503, 253827.898899998515844 ], [ 367931.479000002145767, 253842.008299998939037 ], [ 367955.571299999952316, 253853.604600001126528 ], [ 367969.685000002384186, 253806.012899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501020900", "MAP": null, "PARCEL_NAM": "1-13", "ACRE": null, "LONGITUDE": -64.87732764, "LATITUDE": 18.31297018, "OBJECTID_1": 42242, "PARCEL_NO_": "109501020900", "Tax_Legal_": "1-20 BOVONI FRENCHMAN BAY QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 583700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.94381971199999, "SHAPE_Area": 1390.4236355099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364517.855899997055531, 253778.394600000232458 ], [ 364516.275700002908707, 253774.581999998539686 ], [ 364505.888899996876717, 253763.309000000357628 ], [ 364501.905900001525879, 253757.576900001615286 ], [ 364500.300499998033047, 253756.719399999827147 ], [ 364466.109899997711182, 253794.64750000089407 ], [ 364486.910400003194809, 253814.027300000190735 ], [ 364517.855899997055531, 253778.394600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401020700", "MAP": null, "PARCEL_NAM": "48", "ACRE": null, "LONGITUDE": -64.89791353, "LATITUDE": 18.31286035, "OBJECTID_1": 42015, "PARCEL_NO_": "109401020700", "Tax_Legal_": "BOLONGO 48 3 FRENCHMAN BAY", "Name": "NAIK, PRASHANTI", "Address": "PO Box 743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43600, "Improved_V": 395200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.188317676, "SHAPE_Area": 3197.17031628 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362336.111299999058247, 253735.111999999731779 ], [ 362336.325499996542931, 253716.60020000115037 ], [ 362300.141999997198582, 253723.168600000441074 ], [ 362294.574400000274181, 253737.455400001257658 ], [ 362289.323399998247623, 253746.645199999213219 ], [ 362287.611800000071526, 253758.241300001740456 ], [ 362282.664300002157688, 253771.077500000596046 ], [ 362295.558100000023842, 253772.027399998158216 ], [ 362317.935199998319149, 253795.6418999992311 ], [ 362325.168700002133846, 253798.44539999961853 ], [ 362341.773400001227856, 253772.210799999535084 ], [ 362342.057300001382828, 253764.216899998486042 ], [ 362342.758799999952316, 253744.468199998140335 ], [ 362336.111299999058247, 253735.111999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010900", "MAP": "D9-2559-T84", "PARCEL_NAM": "18-D", "ACRE": null, "LONGITUDE": -64.88978197, "LATITUDE": 18.31291619, "OBJECTID_1": 42233, "PARCEL_NO_": "109402010900", "Tax_Legal_": "18D ESTATE BOVONI/WESTERN PART No.1&2 FRENCHMAN'S BAY QTR.", "Name": "PETIT, PHILIPPE", "Address": "159 James Ave N", "City": "Minneapolis", "State": "Minnesota", "Zip": 55405, "Country": "United States", "Land_Value": 91700, "Improved_V": 239600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.55054865899999, "SHAPE_Area": 3861.6655156299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363193.375900000333786, 253733.357200000435114 ], [ 363189.30290000140667, 253738.179000001400709 ], [ 363186.066899999976158, 253739.419100001454353 ], [ 363161.843400001525879, 253743.231600001454353 ], [ 363157.811800003051758, 253743.198600001633167 ], [ 363148.922600001096725, 253745.447900000959635 ], [ 363145.68299999833107, 253747.110199999064207 ], [ 363143.231600001454353, 253750.889800000935793 ], [ 363143.213699996471405, 253753.000599998980761 ], [ 363140.751599997282028, 253758.046700000762939 ], [ 363134.261500000953674, 253762.637600000947714 ], [ 363135.003100000321865, 253770.243000000715256 ], [ 363138.980700001120567, 253776.608399998396635 ], [ 363140.544799998402596, 253782.320700000971556 ], [ 363142.058499999344349, 253793.943300001323223 ], [ 363169.453400000929832, 253796.489500001072884 ], [ 363175.9003000035882, 253796.964499998837709 ], [ 363198.460799999535084, 253799.048900000751019 ], [ 363219.750399999320507, 253761.015299998223782 ], [ 363193.375900000333786, 253733.357200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84654216, "LATITUDE": 18.31281526, "OBJECTID_1": 42252, "PARCEL_NO_": "109701010500", "Tax_Legal_": "8-16 ESTATE NAZARETH RED HOOK QTR", "Name": "PATRICK D SANDERS AND KELLY M SANDERS FAMILY TRUST", "Address": "3036 Maddie Ct", "City": "Lewis Center", "State": "Ohio", "Zip": 43035, "Country": "United States", "Land_Value": 311300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.56923275400001, "SHAPE_Area": 3117.9441551700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367791.572700001299381, 253794.844900000840425 ], [ 367713.63910000026226, 253761.487500000745058 ], [ 367709.553599998354912, 253767.786899998784065 ], [ 367707.0591000020504, 253776.632399998605251 ], [ 367706.906300000846386, 253794.574099998921156 ], [ 367709.274899996817112, 253800.504099998623133 ], [ 367713.281300000846386, 253803.492199998348951 ], [ 367720.527300000190735, 253804.81810000166297 ], [ 367740.67790000140667, 253805.827399998903275 ], [ 367747.900499999523163, 253809.897300001233816 ], [ 367749.493400000035763, 253812.232299998402596 ], [ 367749.372900001704693, 253826.374600000679493 ], [ 367748.548600003123283, 253828.478799998760223 ], [ 367779.174099996685982, 253830.418200001120567 ], [ 367780.018200002610683, 253825.99210000038147 ], [ 367783.354900002479553, 253812.931600000709295 ], [ 367786.659299999475479, 253803.6706000007689 ], [ 367789.945699997246265, 253796.520300000905991 ], [ 367791.572700001299381, 253794.844900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84501471, "LATITUDE": 18.31275671, "OBJECTID_1": 42257, "PARCEL_NO_": "109701011100", "Tax_Legal_": "8-10 ESTATE NAZARETH 1 RED HOOK", "Name": "HULSMAN, HOWARD J. (TRUSTEE)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 425800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.14964179099999, "SHAPE_Area": 2232.3524806300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367937.639300003647804, 253781.474899999797344 ], [ 367919.31530000269413, 253755.360399998724461 ], [ 367877.880500003695488, 253791.751600001007318 ], [ 367883.431199997663498, 253802.773899998515844 ], [ 367891.41160000115633, 253812.549499999731779 ], [ 367899.409999996423721, 253820.214299999177456 ], [ 367909.827299997210503, 253827.898899998515844 ], [ 367937.639300003647804, 253781.474899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "D9-730-T68", "PARCEL_NAM": "55-1", "ACRE": "1.10", "LONGITUDE": -64.89732248, "LATITUDE": 18.31256549, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.553626823, "SHAPE_Area": 3382.1508553100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362396.909999996423721, 253741.475400000810623 ], [ 362425.813900001347065, 253721.163499999791384 ], [ 362395.428599998354912, 253691.362700000405312 ], [ 362392.032200001180172, 253687.779699999839067 ], [ 362378.557599999010563, 253694.750999998301268 ], [ 362363.296999998390675, 253702.646200001239777 ], [ 362343.792599998414516, 253712.736999999731779 ], [ 362343.588500000536442, 253721.112500000745058 ], [ 362343.049400001764297, 253736.287900000810623 ], [ 362362.640399999916553, 253759.302799999713898 ], [ 362396.909999996423721, 253741.475400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87751696, "LATITUDE": 18.31266643, "OBJECTID_1": 42242, "PARCEL_NO_": "109501020900", "Tax_Legal_": "1-20 BOVONI FRENCHMAN BAY QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 583700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.84813007, "SHAPE_Area": 1555.2697674399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364481.967500001192093, 253731.660300001502037 ], [ 364452.284999996423721, 253713.685499999672174 ], [ 364451.448100000619888, 253717.267299998551607 ], [ 364453.7195999994874, 253734.595499999821186 ], [ 364456.093599997460842, 253739.892299998551607 ], [ 364464.891099996864796, 253748.407999999821186 ], [ 364467.265100002288818, 253753.704799998551607 ], [ 364467.212899997830391, 253759.826099999248981 ], [ 364464.686099998652935, 253772.471000000834465 ], [ 364466.109899997711182, 253794.64750000089407 ], [ 364500.300499998033047, 253756.719399999827147 ], [ 364497.899499997496605, 253754.588799998164177 ], [ 364493.077799998223782, 253752.649500001221895 ], [ 364489.879600003361702, 253749.456900000572205 ], [ 364481.841600000858307, 253746.4358000010252 ], [ 364480.265000000596046, 253742.201099999248981 ], [ 364480.311700001358986, 253736.712999999523163 ], [ 364481.967500001192093, 253731.660300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84585857, "LATITUDE": 18.31277481, "OBJECTID_1": 42273, "PARCEL_NO_": "109701012700", "Tax_Legal_": "8-27 NAZARETH 1 RED HOOK", "Name": "NICOLOSI, DANIEL I. & ANN L.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 269700, "Improved_V": 1484600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.568293985, "SHAPE_Area": 1520.4654874600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367833.3733000010252, 253810.174600001424551 ], [ 367840.212200000882149, 253764.634399998933077 ], [ 367840.267899997532368, 253758.090900000184774 ], [ 367818.393200002610683, 253770.155299998819828 ], [ 367816.757200002670288, 253772.886199999600649 ], [ 367815.135600000619888, 253773.928399998694658 ], [ 367816.704999998211861, 253779.007399998605251 ], [ 367811.81139999628067, 253785.511300001293421 ], [ 367806.977099999785423, 253785.049499999731779 ], [ 367796.329599998891354, 253804.383000001311302 ], [ 367791.365900002419949, 253819.118900001049042 ], [ 367833.3733000010252, 253810.174600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302012300", "MAP": "A9-22-T64", "PARCEL_NAM": "30", "ACRE": null, "LONGITUDE": -64.89863398, "LATITUDE": 18.31260231, "OBJECTID_1": 41847, "PARCEL_NO_": "109302012300", "Tax_Legal_": "30 BOLONGO FRENCHMAN BAY QTR", "Name": "SEAGATE DEV. CORP. C/O", "Address": "6117 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.09203614, "SHAPE_Area": 3315.3137327200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362200.541900001466274, 253690.945700000971556 ], [ 362221.837700001895428, 253717.384100001305342 ], [ 362218.168300002813339, 253769.494199998676777 ], [ 362230.293499998748302, 253766.004799999296665 ], [ 362245.678199999034405, 253758.531399998813868 ], [ 362267.594300001859665, 253741.612199999392033 ], [ 362276.535700000822544, 253733.241599999368191 ], [ 362278.220200002193451, 253724.811599999666214 ], [ 362277.437299996614456, 253722.061000000685453 ], [ 362272.664099998772144, 253714.422600001096725 ], [ 362251.825900003314018, 253699.475499998778105 ], [ 362238.103699997067451, 253692.146000001579523 ], [ 362237.584200002253056, 253692.085400000214577 ], [ 362200.541900001466274, 253690.945700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84555231, "LATITUDE": 18.31270386, "OBJECTID_1": 42272, "PARCEL_NO_": "109701012600", "Tax_Legal_": "8-26 ESTATE NAZARETH 1 RED HOOK", "Name": "JOSEPH W BOYD JR REVOCABLE TRUST", "Address": "PO Box 62209", "City": "Virginia Beach", "State": "Virginia", "Zip": 23466, "Country": "United States", "Land_Value": 196000, "Improved_V": 1309000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.486135797, "SHAPE_Area": 1595.0124608199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367876.127599999308586, 253808.202500000596046 ], [ 367869.761600002646446, 253798.228999998420477 ], [ 367863.525100000202656, 253773.057799998670816 ], [ 367860.445500001311302, 253755.934099998325109 ], [ 367858.060699999332428, 253751.903799999505281 ], [ 367855.656199999153614, 253750.195300001651049 ], [ 367840.267899997532368, 253758.090900000184774 ], [ 367840.212200000882149, 253764.634399998933077 ], [ 367833.3733000010252, 253810.174600001424551 ], [ 367843.052599996328354, 253809.831700000911951 ], [ 367876.127599999308586, 253808.202500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302012100", "MAP": "A9-22-T64", "PARCEL_NAM": "31", "ACRE": null, "LONGITUDE": -64.89947937, "LATITUDE": 18.31249913, "OBJECTID_1": 41845, "PARCEL_NO_": "109302012100", "Tax_Legal_": "28 EST BOLONGO 3 FRENCHMAN BAY", "Name": "SEAGATE DEV. CORP. C/O", "Address": "6117 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.296159402, "SHAPE_Area": 3505.94812245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362200.541900001466274, 253690.945700000971556 ], [ 362143.851899996399879, 253689.201400000602007 ], [ 362095.314900003373623, 253708.326999999582767 ], [ 362159.456699997186661, 253751.492899999022484 ], [ 362161.89360000193119, 253749.401900000870228 ], [ 362164.316200003027916, 253748.999499998986721 ], [ 362197.835299998521805, 253695.233899999409914 ], [ 362200.541900001466274, 253690.945700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401029900", "MAP": null, "PARCEL_NAM": "18-4", "ACRE": null, "LONGITUDE": -64.89411708, "LATITUDE": 18.31252414, "OBJECTID_1": 42225, "PARCEL_NO_": "109401029900", "Tax_Legal_": "UNDIVIDED 1/4 INT. IN 18-I, 18-J 18-K, 18-4 BOVONI", "Name": "BOLONGO INVESTMENTS LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 279500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.43035991400001, "SHAPE_Area": 1675.6943598099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362719.41160000115633, 253712.168400000780821 ], [ 362709.795199997723103, 253705.123599998652935 ], [ 362707.405000001192093, 253701.726500000804663 ], [ 362700.270499996840954, 253687.313799999654293 ], [ 362698.677599996328354, 253684.978700000792742 ], [ 362696.285700000822544, 253681.792700000107288 ], [ 362692.30629999935627, 253675.638399999588728 ], [ 362684.304300002753735, 253668.395799998193979 ], [ 362684.282700002193451, 253670.928700000047684 ], [ 362689.790200002491474, 253687.0168999992311 ], [ 362689.770400002598763, 253689.338799998164177 ], [ 362692.939900003373623, 253695.908599998801947 ], [ 362700.798100002110004, 253720.037599999457598 ], [ 362704.716300003230572, 253733.368599999696016 ], [ 362731.972699999809265, 253752.167899999767542 ], [ 362732.793399997055531, 253750.485800001770258 ], [ 362732.82940000295639, 253746.264299999922514 ], [ 362734.465400002896786, 253743.533399999141693 ], [ 362739.321299999952316, 253741.462200000882149 ], [ 362744.954599998891354, 253742.774900000542402 ], [ 362755.370200000703335, 253750.6706000007689 ], [ 362761.878200002014637, 253743.968899998813868 ], [ 362749.859099999070168, 253735.004599999636412 ], [ 362719.41160000115633, 253712.168400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8462622, "LATITUDE": 18.31259751, "OBJECTID_1": 42253, "PARCEL_NO_": "109701010600", "Tax_Legal_": "8-15 ESTATE NAZARETH RED HOOK QTR", "Name": "POWERS, CHRISTOPHER M. and ELIZABETH M.", "Address": "991 Faversham Way", "City": "Green Bay", "State": "Wisconsin", "Zip": 54313, "Country": "United States", "Land_Value": 485700, "Improved_V": 695700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.32486362, "SHAPE_Area": 1535.52692768 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367811.993000000715256, 253764.192299999296665 ], [ 367802.401799999177456, 253754.192400000989437 ], [ 367799.160400003194809, 253756.065699998289347 ], [ 367787.036899998784065, 253759.344000000506639 ], [ 367777.343199998140335, 253761.375599998980761 ], [ 367763.626900002360344, 253762.318799998611212 ], [ 367759.573700003325939, 253764.818799998611212 ], [ 367755.508000001311302, 253768.796300001442432 ], [ 367743.40429999679327, 253769.752700001001358 ], [ 367737.776299998164177, 253767.806800000369549 ], [ 367726.53830000013113, 253761.804200001060963 ], [ 367716.070600003004074, 253760.029800001531839 ], [ 367713.63910000026226, 253761.487500000745058 ], [ 367791.572700001299381, 253794.844900000840425 ], [ 367802.218400001525879, 253775.722500000149012 ], [ 367811.993000000715256, 253764.192299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401020800", "MAP": "F9-2741-T71", "PARCEL_NAM": "47", "ACRE": null, "LONGITUDE": -64.89803328000001, "LATITUDE": 18.31238548, "OBJECTID_1": 42016, "PARCEL_NO_": "109401020800", "Tax_Legal_": "BOLONGO 47 O FRENCHMAN BAY QTR", "Name": "BANKS, JOSEPH, JR. & CHARLOTTE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 215400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.84229346800001, "SHAPE_Area": 2235.1651731699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362298.161799997091293, 253670.638700000941753 ], [ 362274.361299999058247, 253704.515099998563528 ], [ 362276.706799998879433, 253706.908399999141693 ], [ 362283.954300001263618, 253714.303899999707937 ], [ 362285.53999999910593, 253717.483300000429153 ], [ 362287.109399996697903, 253722.562399998307228 ], [ 362289.377300001680851, 253740.312800001353025 ], [ 362289.323399998247623, 253746.645199999213219 ], [ 362294.574400000274181, 253737.45549999922514 ], [ 362300.141999997198582, 253723.168600000441074 ], [ 362336.325499996542931, 253716.60020000115037 ], [ 362323.411300003528595, 253681.401399999856949 ], [ 362313.298000000417233, 253677.391600001603365 ], [ 362301.63400000333786, 253672.187800001353025 ], [ 362298.161799997091293, 253670.638700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011000", "MAP": "A3-35-T65", "PARCEL_NAM": "8-11", "ACRE": null, "LONGITUDE": -64.84517681, "LATITUDE": 18.3123583, "OBJECTID_1": 42256, "PARCEL_NO_": "109701011000", "Tax_Legal_": "8-11 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "HULSMAN, HOWARD J. (TRUSTEE)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 399200, "Improved_V": 1309700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.98518954900001, "SHAPE_Area": 2455.8359347800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367919.31530000269413, 253755.360399998724461 ], [ 367912.949299998581409, 253745.386900000274181 ], [ 367910.613099999725819, 253735.657499998807907 ], [ 367906.67679999768734, 253724.437300000339746 ], [ 367905.962200000882149, 253713.665699999779463 ], [ 367904.403599999845028, 253707.320099998265505 ], [ 367899.668200001120567, 253695.249000001698732 ], [ 367869.381499998271465, 253748.196699999272823 ], [ 367868.562600001692772, 253749.667700000107288 ], [ 367873.191899999976158, 253774.192400000989437 ], [ 367877.880500003695488, 253791.751600001007318 ], [ 367919.31530000269413, 253755.360399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401023200", "MAP": null, "PARCEL_NAM": "18J", "ACRE": ".41", "LONGITUDE": -64.89374212, "LATITUDE": 18.31229408, "OBJECTID_1": 42221, "PARCEL_NO_": "109401023200", "Tax_Legal_": "18J ESTATE BOVONI WESTERN POR. WESTERN PORTION", "Name": "BOLONGO INVESTMENTS LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 41600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.67140052, "SHAPE_Area": 2764.9345812199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362797.907999999821186, 253679.458099998533726 ], [ 362790.670999996364117, 253677.076799999922514 ], [ 362785.897799998521805, 253669.438400000333786 ], [ 362785.92119999974966, 253666.694299999624491 ], [ 362783.522100001573563, 253664.352699998766184 ], [ 362778.649999998509884, 253668.323600001633167 ], [ 362775.431999996304512, 253667.452899999916553 ], [ 362765.824500001966953, 253659.352699998766184 ], [ 362764.215499997138977, 253658.917300000786781 ], [ 362719.41160000115633, 253712.168400000780821 ], [ 362749.859099999070168, 253735.004599999636412 ], [ 362797.907999999821186, 253679.458099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701010700", "MAP": "A9-35-T65", "PARCEL_NAM": "8-14", "ACRE": null, "LONGITUDE": -64.8458793, "LATITUDE": 18.31225545, "OBJECTID_1": 42254, "PARCEL_NO_": "109701010700", "Tax_Legal_": "8-14 ESTATE NAZARETH RED HOOK QTR", "Name": "BOYD HOLDINGS USVI LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 541000, "Improved_V": 1200000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.28065818799999, "SHAPE_Area": 1924.2777324000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367840.267899997532368, 253758.090900000184774 ], [ 367837.292599998414516, 253728.724599998444319 ], [ 367804.512500002980232, 253695.736800000071526 ], [ 367802.871100001037121, 253699.100900001823902 ], [ 367798.798199996352196, 253703.922699999064207 ], [ 367793.87219999730587, 253714.225900001823902 ], [ 367800.240000002086163, 253723.988400001078844 ], [ 367800.189599998295307, 253729.898600000888109 ], [ 367805.770900003612041, 253737.332499999552965 ], [ 367808.936800003051758, 253744.324499998241663 ], [ 367808.913400001823902, 253747.068500000983477 ], [ 367807.275600001215935, 253750.010499998927116 ], [ 367804.831500001251698, 253752.945799998939037 ], [ 367802.401799999177456, 253754.192400000989437 ], [ 367811.993000000715256, 253764.192299999296665 ], [ 367818.393200002610683, 253770.155299998819828 ], [ 367840.267899997532368, 253758.090900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501020100", "MAP": "C9-313-T88 / D9-497-T65", "PARCEL_NAM": "1-2", "ACRE": "0.24", "LONGITUDE": -64.87744664, "LATITUDE": 18.31229717, "OBJECTID_1": 42239, "PARCEL_NO_": "109501020100", "Tax_Legal_": "1-2 BOVONI FRENCHMAN BAY QTR", "Name": "GOVI-DEPARTMENT OF HOUSING PARKS & RECREATION", "Address": "Sub Base Building", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.835050989, "SHAPE_Area": 1376.8918769700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364513.571900002658367, 253713.342700000852346 ], [ 364475.070299997925758, 253689.385200001299381 ], [ 364454.772200003266335, 253705.684300001710653 ], [ 364453.134400002658367, 253708.626200001686811 ], [ 364452.284999996423721, 253713.685499999672174 ], [ 364481.967500001192093, 253731.660300001502037 ], [ 364483.607100002467632, 253728.50730000063777 ], [ 364491.700800001621246, 253724.984999999403954 ], [ 364508.678300000727177, 253719.846599999815226 ], [ 364513.571900002658367, 253713.342700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401023100", "MAP": null, "PARCEL_NAM": "18I", "ACRE": null, "LONGITUDE": -64.89396046, "LATITUDE": 18.3120121, "OBJECTID_1": 42220, "PARCEL_NO_": "109401023100", "Tax_Legal_": "18I ESTATE BOVONI WESTERN POR. WESTERN PORTION", "Name": "BOLONGO INVESTMENTS LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 38600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.946579396, "SHAPE_Area": 3120.5810476900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362738.622100003063679, 253634.221000000834465 ], [ 362696.285700000822544, 253681.792700000107288 ], [ 362698.677599996328354, 253684.978700000792742 ], [ 362700.270499996840954, 253687.313799999654293 ], [ 362707.405000001192093, 253701.726500000804663 ], [ 362709.795199997723103, 253705.123599998652935 ], [ 362719.41160000115633, 253712.168400000780821 ], [ 362764.215499997138977, 253658.917300000786781 ], [ 362756.156000003218651, 253658.429200001060963 ], [ 362754.555900000035763, 253656.938400000333786 ], [ 362753.778399996459484, 253653.55460000038147 ], [ 362755.421599999070168, 253649.979400001466274 ], [ 362771.592799998819828, 253644.834399998188019 ], [ 362773.230599999427795, 253641.892499998211861 ], [ 362774.879199996590614, 253637.684099998325109 ], [ 362774.121399998664856, 253631.978399999439716 ], [ 362772.537600003182888, 253628.587999999523163 ], [ 362767.73929999768734, 253623.904599998146296 ], [ 362765.383299998939037, 253616.497099999338388 ], [ 362763.777800001204014, 253615.639600001275539 ], [ 362759.721100002527237, 253618.561700001358986 ], [ 362758.079700000584126, 253621.925700001418591 ], [ 362752.437299996614456, 253621.668499998748302 ], [ 362750.810300000011921, 253623.343899998813868 ], [ 362750.788699999451637, 253625.876800000667572 ], [ 362745.914899997413158, 253630.058800000697374 ], [ 362746.697800002992153, 253632.809399999678135 ], [ 362745.862700000405312, 253636.180100001394749 ], [ 362743.436599999666214, 253637.004599999636412 ], [ 362741.021300002932549, 253636.562699999660254 ], [ 362738.622100003063679, 253634.221000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-408-T92", "PARCEL_NAM": "56A", "ACRE": null, "LONGITUDE": -64.89829604000001, "LATITUDE": 18.31196439, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.48426223500002, "SHAPE_Area": 1770.1636425300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362286.799300000071526, 253644.063900001347065 ], [ 362294.629000000655651, 253608.794599998742342 ], [ 362296.788599997758865, 253609.604100000113249 ], [ 362298.393299996852875, 253610.205600000917912 ], [ 362300.270499996840954, 253608.174699999392033 ], [ 362300.894100002944469, 253600.478500001132488 ], [ 362301.770499996840954, 253589.661800000816584 ], [ 362302.17679999768734, 253584.646999999880791 ], [ 362299.735699996352196, 253589.00279999896884 ], [ 362289.68299999833107, 253606.940600000321865 ], [ 362289.44709999859333, 253607.361600000411272 ], [ 362276.720100000500679, 253630.071400001645088 ], [ 362255.317299999296665, 253668.262200001627207 ], [ 362256.892099998891354, 253672.708099998533726 ], [ 362267.975500002503395, 253696.863499999046326 ], [ 362268.754799999296665, 253700.036200001835823 ], [ 362274.361299999058247, 253704.515099998563528 ], [ 362287.477300003170967, 253685.846400000154972 ], [ 362280.175700001418591, 253673.900499999523163 ], [ 362286.799300000071526, 253644.063900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021100", "MAP": "A9-408-T92", "PARCEL_NAM": "55A", "ACRE": "0.36", "LONGITUDE": -64.8977133, "LATITUDE": 18.31208958, "OBJECTID_1": 42018, "PARCEL_NO_": "109401021100", "Tax_Legal_": "55 EST BOLONGO FRENCHMAN BAY QTR", "Name": "TERRITORIAL DEV CORP C/O", "Address": "7101 E Watergate", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.3946816, "SHAPE_Area": 1489.30167334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362305.819700002670288, 253644.487100001424551 ], [ 362325.028800003230572, 253679.644099999219179 ], [ 362369.770599998533726, 253699.296999998390675 ], [ 362378.557599999010563, 253694.750999998301268 ], [ 362386.497900001704693, 253690.64299999922514 ], [ 362332.331299997866154, 253664.562800001353025 ], [ 362312.113399997353554, 253622.514400001615286 ], [ 362305.819700002670288, 253644.487100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": null, "PARCEL_NAM": "1-3", "ACRE": null, "LONGITUDE": -64.87723813, "LATITUDE": 18.31212077, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.31942733100001, "SHAPE_Area": 1078.3488011699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364525.866200000047684, 253690.011999998241663 ], [ 364498.606200002133846, 253671.634799998253584 ], [ 364475.070299997925758, 253689.385200001299381 ], [ 364513.571900002658367, 253713.342700000852346 ], [ 364520.91499999910593, 253703.270399998873472 ], [ 364525.866200000047684, 253690.011999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89427625, "LATITUDE": 18.31178433, "OBJECTID_1": 42219, "PARCEL_NO_": "109401023000", "Tax_Legal_": "BOVONI 18F/WESTERN PART FRENCHMAN BAY QTR.", "Name": "CARIFEST CORPORATION", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 77800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.787810756, "SHAPE_Area": 2631.6600079499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362738.622100003063679, 253634.221000000834465 ], [ 362734.633699998259544, 253629.122099999338388 ], [ 362714.537000000476837, 253621.7804000005126 ], [ 362712.163000002503395, 253616.48369999974966 ], [ 362712.215199999511242, 253610.362399999052286 ], [ 362709.826800003647804, 253606.754299998283386 ], [ 362703.374499998986721, 253606.912500001490116 ], [ 362701.738499999046326, 253609.643399998545647 ], [ 362697.696199998259544, 253610.876800000667572 ], [ 362694.492499999701977, 253608.317499998956919 ], [ 362692.066399998962879, 253609.142000000923872 ], [ 362687.196099996566772, 253612.901799999177456 ], [ 362683.992499999701977, 253610.342500001192093 ], [ 362684.008599996566772, 253608.442800000309944 ], [ 362681.64360000193119, 253602.090599998831749 ], [ 362676.86150000244379, 253595.507599998265505 ], [ 362684.304300002753735, 253668.395799998193979 ], [ 362692.30629999935627, 253675.638399999588728 ], [ 362696.285700000822544, 253681.792700000107288 ], [ 362738.622100003063679, 253634.221000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": null, "PARCEL_NAM": "1-4", "ACRE": null, "LONGITUDE": -64.877058, "LATITUDE": 18.31191792, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.715899808, "SHAPE_Area": 975.88523494599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364545.426299996674061, 253665.685199998319149 ], [ 364517.34740000218153, 253648.778999999165535 ], [ 364514.885300002992153, 253653.825100000947714 ], [ 364509.988099999725819, 253660.7511 ], [ 364503.498000003397465, 253665.342099998146296 ], [ 364498.606200002133846, 253671.634799998253584 ], [ 364525.866200000047684, 253690.011999998241663 ], [ 364529.136399999260902, 253684.761399999260902 ], [ 364533.992299996316433, 253682.690200001001358 ], [ 364538.907499998807907, 253673.653400000184774 ], [ 364545.426299996674061, 253665.685199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109402010200", "MAP": "D9-7289-T003", "PARCEL_NAM": "1A REM", "ACRE": null, "LONGITUDE": -64.88076366, "LATITUDE": 18.31074872, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 917.26629886800004, "SHAPE_Area": 11619.960782599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364251.341099999845028, 253456.828899998217821 ], [ 364280.045500002801418, 253486.405699998140335 ], [ 364267.297399997711182, 253468.358399998396635 ], [ 364262.260499998927116, 253460.493299998342991 ], [ 364254.531300000846386, 253452.421900000423193 ], [ 364248.946400001645088, 253445.410100001841784 ], [ 364244.146300002932549, 253440.937899999320507 ], [ 364228.916299998760223, 253430.258499998599291 ], [ 364224.904500000178814, 253427.9037000015378 ], [ 364222.492700003087521, 253427.039599999785423 ], [ 364212.039499998092651, 253423.576499998569489 ], [ 364203.162799999117851, 253424.348200000822544 ], [ 364195.886200003325939, 253426.610700000077486 ], [ 364192.64299999922514, 253428.695099998265505 ], [ 364182.006300002336502, 253446.762099999934435 ], [ 364177.897399999201298, 253455.805500000715256 ], [ 364169.731799997389317, 253467.771000001579523 ], [ 364151.023000001907349, 253486.827399998903275 ], [ 364135.607699997723103, 253497.889199998229742 ], [ 364123.469899997115135, 253502.856100000441074 ], [ 364113.776100002229214, 253504.887699998915195 ], [ 364100.878700003027916, 253504.359900001436472 ], [ 364075.1199000030756, 253499.082899998873472 ], [ 364067.863099999725819, 253499.023499999195337 ], [ 364059.785599999129772, 253500.646099999547005 ], [ 364034.523800000548363, 253531.681200001388788 ], [ 364031.262500002980232, 253535.876400001347065 ], [ 364028.821999996900558, 253538.389499999582767 ], [ 364197.246799997985363, 253645.52589999884367 ], [ 364196.295299999415874, 253601.340900000184774 ], [ 364167.188900001347065, 253584.425299998372793 ], [ 364125.593599997460842, 253568.566899999976158 ], [ 364121.055299997329712, 253551.8597999997437 ], [ 364131.831000000238419, 253522.87779999896884 ], [ 364164.376000002026558, 253502.221000000834465 ], [ 364158.215400002896786, 253492.865299999713898 ], [ 364184.481600001454353, 253476.80689999833703 ], [ 364180.637699998915195, 253470.184399999678135 ], [ 364188.945500001311302, 253456.299600001424551 ], [ 364208.549300000071526, 253444.061200000345707 ], [ 364228.742399998009205, 253454.311299998313189 ], [ 364251.341099999845028, 253456.828899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109302012500", "MAP": "A9-188-T72", "PARCEL_NAM": "59-1A", "ACRE": null, "LONGITUDE": -64.89885803, "LATITUDE": 18.31146867, "OBJECTID_1": 41883, "PARCEL_NO_": "109302012500", "Tax_Legal_": "59-1A & 56-1 EST BOLONGO RECREATIONAL PAVILION BLDG. NO. 5A FRENCHMAN BAY QTR", "Name": "PAVALION AT REGATTA POINT LLC", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 71800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 847.91565897700002, "SHAPE_Area": 11094.343770400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362244.647399999201298, 253695.296000000089407 ], [ 362247.902199998497963, 253686.777800001204014 ], [ 362239.028999999165535, 253682.61430000141263 ], [ 362226.507799997925758, 253671.537799999117851 ], [ 362219.765600003302097, 253647.940200001001358 ], [ 362209.36089999973774, 253637.292100001126528 ], [ 362192.31530000269413, 253619.847800001502037 ], [ 362219.123499996960163, 253629.479499999433756 ], [ 362221.246699996292591, 253637.887499999254942 ], [ 362223.253600001335144, 253645.83500000089407 ], [ 362244.197899997234344, 253648.328400000929832 ], [ 362244.946699999272823, 253655.089499998837709 ], [ 362244.898100003600121, 253660.788699999451637 ], [ 362245.672100000083447, 253664.594700001180172 ], [ 362246.450499996542931, 253667.329500000923872 ], [ 362247.13910000026226, 253681.705299999564886 ], [ 362247.902199998497963, 253686.777800001204014 ], [ 362255.317299999296665, 253668.262200001627207 ], [ 362252.051700003445148, 253665.386900000274181 ], [ 362249.80629999935627, 253662.018800001591444 ], [ 362249.431999996304512, 253655.656800001859665 ], [ 362249.057800002396107, 253652.101500000804663 ], [ 362250.180500000715256, 253641.99720000103116 ], [ 362251.116099998354912, 253636.570799998939037 ], [ 362258.173199996352196, 253616.989900000393391 ], [ 362261.457800000905991, 253610.050700001418591 ], [ 362263.948600001633167, 253601.627300001680851 ], [ 362272.152000002563, 253585.229100000113249 ], [ 362273.796999998390675, 253581.442899998277426 ], [ 362274.624899998307228, 253578.916600000113249 ], [ 362281.310900002717972, 253551.317999999970198 ], [ 362282.324400000274181, 253547.537300001829863 ], [ 362274.289899997413158, 253538.282000001519918 ], [ 362274.290799997746944, 253538.26969999819994 ], [ 362243.947300001978874, 253520.927499998360872 ], [ 362219.747900001704693, 253549.425599999725819 ], [ 362201.2871999964118, 253539.353100001811981 ], [ 362196.470899999141693, 253536.780499998480082 ], [ 362192.151399999856949, 253534.397399999201298 ], [ 362187.931699998676777, 253546.667300000786781 ], [ 362183.301500000059605, 253560.888700000941753 ], [ 362184.955099999904633, 253589.331399999558926 ], [ 362185.285899996757507, 253603.552799999713898 ], [ 362162.465499997138977, 253646.217000000178814 ], [ 362145.598300002515316, 253660.967500001192093 ], [ 362136.071099996566772, 253656.942699998617172 ], [ 362125.637599997222424, 253651.157699998468161 ], [ 362111.748700000345707, 253672.364500001072884 ], [ 362126.989500001072884, 253681.777399998158216 ], [ 362129.395900003612041, 253683.274700000882149 ], [ 362153.734499998390675, 253665.953200001269579 ], [ 362164.54389999806881, 253656.929800000041723 ], [ 362175.138800002634525, 253662.227200001478195 ], [ 362177.225699998438358, 253658.856100000441074 ], [ 362179.472999997437, 253659.819299999624491 ], [ 362185.301100000739098, 253652.068199999630451 ], [ 362190.415299996733665, 253650.241399999707937 ], [ 362198.415399998426437, 253644.087499998509884 ], [ 362214.348200000822544, 253649.984000001102686 ], [ 362222.815600000321865, 253673.945799998939037 ], [ 362228.4341000020504, 253681.329999998211861 ], [ 362226.352200001478195, 253691.739799998700619 ], [ 362237.584200002253056, 253692.085400000214577 ], [ 362238.103699997067451, 253692.146000001579523 ], [ 362244.647399999201298, 253695.296000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": null, "PARCEL_NAM": "1-5", "ACRE": null, "LONGITUDE": -64.87691719, "LATITUDE": 18.31165513, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.10694720199999, "SHAPE_Area": 1202.85278118 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364545.426299996674061, 253665.685199998319149 ], [ 364552.807199999690056, 253651.18019999936223 ], [ 364553.689000003039837, 253642.32149999961257 ], [ 364553.769900001585484, 253632.822900000959635 ], [ 364549.860600002110004, 253618.436599999666214 ], [ 364519.958800002932549, 253626.21339999884367 ], [ 364519.859899997711182, 253637.822700001299381 ], [ 364517.34740000218153, 253648.778999999165535 ], [ 364545.426299996674061, 253665.685199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": null, "PARCEL_NAM": "1-6", "ACRE": null, "LONGITUDE": -64.87697209, "LATITUDE": 18.31134635, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.61626463299999, "SHAPE_Area": 995.88462567800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364549.860600002110004, 253618.436599999666214 ], [ 364549.110100001096725, 253611.886500000953674 ], [ 364545.211599998176098, 253596.23369999974966 ], [ 364545.290700003504753, 253586.946199998259544 ], [ 364512.163599997758865, 253594.696600001305342 ], [ 364517.669299997389317, 253610.995900001376867 ], [ 364520.001900002360344, 253621.14750000089407 ], [ 364519.958800002932549, 253626.21339999884367 ], [ 364549.860600002110004, 253618.436599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": null, "PARCEL_NAM": "1-7", "ACRE": null, "LONGITUDE": -64.87703944, "LATITUDE": 18.31107335, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.72699374499999, "SHAPE_Area": 1040.4754253900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364545.290700003504753, 253586.946199998259544 ], [ 364540.596699997782707, 253570.020300000905991 ], [ 364539.09910000115633, 253556.498100001364946 ], [ 364504.341399997472763, 253566.346099998801947 ], [ 364512.163599997758865, 253594.696600001305342 ], [ 364545.290700003504753, 253586.946199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-408-T92", "PARCEL_NAM": "59B", "ACRE": "0.22", "LONGITUDE": -64.89793446, "LATITUDE": 18.31088503, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.30303050200001, "SHAPE_Area": 1088.69634892 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362337.98870000243187, 253516.715599998831749 ], [ 362321.133500002324581, 253507.500700000673532 ], [ 362294.17059999704361, 253556.278400000184774 ], [ 362298.074100002646446, 253558.0945999994874 ], [ 362312.202500000596046, 253564.668000001460314 ], [ 362314.895999997854233, 253560.658300001174212 ], [ 362337.98870000243187, 253516.715599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": null, "PARCEL_NAM": "1-8", "ACRE": null, "LONGITUDE": -64.87710358, "LATITUDE": 18.31079793, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.66884453399999, "SHAPE_Area": 1189.49511403 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364539.09910000115633, 253556.498100001364946 ], [ 364537.581799998879433, 253545.297699999064207 ], [ 364532.916599996387959, 253524.994500000029802 ], [ 364496.548000000417233, 253534.618299998342991 ], [ 364498.135399997234344, 253537.586599998176098 ], [ 364504.341399997472763, 253566.346099998801947 ], [ 364539.09910000115633, 253556.498100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": null, "PARCEL_NAM": "1-12", "ACRE": null, "LONGITUDE": -64.87760234, "LATITUDE": 18.31067566, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.83153063, "SHAPE_Area": 1820.0251838700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364463.228399999439716, 253564.954100001603365 ], [ 364490.795900002121925, 253547.236800000071526 ], [ 364487.669600002467632, 253535.601100001484156 ], [ 364485.362099997699261, 253522.49439999833703 ], [ 364482.176399998366833, 253517.824299998581409 ], [ 364480.574600003659725, 253516.544599998742342 ], [ 364478.971000000834465, 253515.475999999791384 ], [ 364466.933799996972084, 253508.622499998658895 ], [ 364456.478699997067451, 253505.37049999833107 ], [ 364446.806599996984005, 253504.869199998676777 ], [ 364437.920999996364117, 253506.696299999952316 ], [ 364463.228399999439716, 253564.954100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109402010200", "MAP": "D9-8341-T09", "PARCEL_NAM": "1A-8", "ACRE": "28.4", "LONGITUDE": -64.87793384, "LATITUDE": 18.30525937, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2941.2915695000002, "SHAPE_Area": 89886.70602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364507.797499999403954, 253056.578499998897314 ], [ 364514.704599998891354, 253055.147300001233816 ], [ 364639.954199999570847, 252979.437399998307228 ], [ 364601.9087999984622, 252730.883400000631809 ], [ 364570.322999998927116, 252730.955600000917912 ], [ 364557.439999997615814, 252728.739199999719858 ], [ 364554.238099999725819, 252725.968800000846386 ], [ 364542.168600000441074, 252722.914700001478195 ], [ 364533.351300001144409, 252716.720899999141693 ], [ 364530.133299998939037, 252715.850099999457598 ], [ 364518.004399999976158, 252719.761700000613928 ], [ 364509.979099996387959, 252715.263000000268221 ], [ 364500.429200001060963, 252700.408300001174212 ], [ 364498.929899998009205, 252687.097100000828505 ], [ 364486.914300002157688, 252677.710700001567602 ], [ 364486.160099998116493, 252671.582800000905991 ], [ 364483.782499998807907, 252666.708200000226498 ], [ 364481.381599999964237, 252664.577599998563528 ], [ 364474.913099996745586, 252666.635600000619888 ], [ 364470.913900002837181, 252662.803199999034405 ], [ 364469.331900000572205, 252659.20160000026226 ], [ 364468.593900002539158, 252651.1739999987185 ], [ 364457.424199998378754, 252637.150400001555681 ], [ 364455.080799996852875, 252628.265299998223782 ], [ 364447.069799996912479, 252622.078000001609325 ], [ 364439.020999997854233, 252620.323399998247623 ], [ 364418.861400000751019, 252620.369500000029802 ], [ 364400.262299999594688, 252626.55009999871254 ], [ 364394.614500001072884, 252626.926100000739098 ], [ 364385.763099998235703, 252624.74269999936223 ], [ 364381.749499998986721, 252622.598900001496077 ], [ 364373.68639999628067, 252622.532900001853704 ], [ 364367.219700001180172, 252624.379799999296665 ], [ 364358.3125, 252628.739900000393391 ], [ 364349.310000002384186, 252644.287099998444319 ], [ 364349.288400001823902, 252646.820099998265505 ], [ 364352.438100002706051, 252655.711800001561642 ], [ 364351.588699996471405, 252660.771099999547005 ], [ 364353.194099999964237, 252661.628600001335144 ], [ 364353.973399996757507, 252664.801399998366833 ], [ 364354.551399998366833, 252691.614999998360872 ], [ 364354.517200000584126, 252695.625500001013279 ], [ 364352.071299999952316, 252698.771899998188019 ], [ 364347.946199998259544, 252709.714999999850988 ], [ 364347.068000003695488, 252718.151500001549721 ], [ 364347.759199999272823, 252731.667199999094009 ], [ 364346.097999997437, 252737.353100001811981 ], [ 364346.047700002789497, 252743.263300001621246 ], [ 364349.782499998807907, 252778.124299999326468 ], [ 364352.145700000226498, 252784.687600001692772 ], [ 364355.254100002348423, 252798.434099998325109 ], [ 364364.771600000560284, 252817.088199999183416 ], [ 364371.152000002563, 252825.373100001364946 ], [ 364378.369199998676777, 252830.076200000941753 ], [ 364379.153999999165535, 252832.615699999034405 ], [ 364385.532499998807907, 252841.111699998378754 ], [ 364388.739799998700619, 252843.2489 ], [ 364397.533699996769428, 252852.186799999326468 ], [ 364407.083599999547005, 252867.041499998420477 ], [ 364410.202799998223782, 252879.521499998867512 ], [ 364414.972300000488758, 252887.582100000232458 ], [ 364418.919399999082088, 252897.535799998790026 ], [ 364419.668099999427795, 252904.296999998390675 ], [ 364418.816899999976158, 252909.567299999296665 ], [ 364411.477300003170967, 252919.217599999159575 ], [ 364404.996299996972084, 252922.753100000321865 ], [ 364400.962899997830391, 252922.931200001388788 ], [ 364398.570900000631809, 252919.745200000703335 ], [ 364395.342100001871586, 252920.140999998897314 ], [ 364392.066500000655651, 252926.02479999884963 ], [ 364389.633199997246265, 252927.693599998950958 ], [ 364384.79169999808073, 252928.076200000941753 ], [ 364382.380000002682209, 252927.212099999189377 ], [ 364372.759900003671646, 252920.589400000870228 ], [ 364361.482400000095367, 252919.230599999427795 ], [ 364357.438199996948242, 252920.67509999871254 ], [ 364353.365299999713898, 252925.496899999678135 ], [ 364357.32490000128746, 252933.973099999129772 ], [ 364354.058300003409386, 252938.801500000059605 ], [ 364350.847499996423721, 252937.086500000208616 ], [ 364346.8158999979496, 252937.05350000038743 ], [ 364344.386200003325939, 252938.300200000405312 ], [ 364336.227700002491474, 252949.421300001442432 ], [ 364332.979099996387959, 252952.138999998569489 ], [ 364330.51519999653101, 252957.396099999547005 ], [ 364318.362999998033047, 252964.051699999719858 ], [ 364315.90990000218153, 252968.042399998754263 ], [ 364312.659500002861023, 252970.971099998801947 ], [ 364308.559600003063679, 252978.959100000560284 ], [ 364296.317400000989437, 252996.168600000441074 ], [ 364296.274300001561642, 253001.234400000423193 ], [ 364294.609499998390675, 253007.342500001192093 ], [ 364290.531199999153614, 253012.797600001096725 ], [ 364285.677100002765656, 253014.657699998468161 ], [ 364278.413099996745586, 253015.442600000649691 ], [ 364247.767800003290176, 253015.825100000947714 ], [ 364234.020999997854233, 253020.356600001454353 ], [ 364217.093800000846386, 253019.584800001233816 ], [ 364214.637100003659725, 253023.997699998319149 ], [ 364214.595799997448921, 253028.85249999910593 ], [ 364221.791400000452995, 253036.088599998503923 ], [ 364221.769799999892712, 253038.621500000357628 ], [ 364220.115900002419949, 253043.463100001215935 ], [ 364222.477300003170967, 253050.237399999052286 ], [ 364227.261200003325939, 253056.609400000423193 ], [ 364232.073899999260902, 253059.604100000113249 ], [ 364234.469499997794628, 253062.367899999022484 ], [ 364234.424500003457069, 253067.644900001585484 ], [ 364229.500299997627735, 253077.737100001424551 ], [ 364228.663400001823902, 253081.318799998611212 ], [ 364227.688100002706051, 253101.153599999845028 ], [ 364238.897299997508526, 253110.533500000834465 ], [ 364242.077600002288818, 253115.836899999529123 ], [ 364242.039899997413158, 253120.269499998539686 ], [ 364240.369699999690056, 253127.010800000280142 ], [ 364229.64130000025034, 253155.8429000005126 ], [ 364283.317199997603893, 253197.023200001567602 ], [ 364345.986699998378754, 253237.407400000840425 ], [ 364347.523699998855591, 253232.590300001204014 ], [ 364353.26860000193119, 253220.815999999642372 ], [ 364367.143100000917912, 253201.297899998724461 ], [ 364381.917499996721745, 253170.810199998319149 ], [ 364392.538000002503395, 253154.64299999922514 ], [ 364401.49549999833107, 253144.372699998319149 ], [ 364410.472900003194809, 253131.780600000172853 ], [ 364411.29900000244379, 253129.465300001204014 ], [ 364418.634900003671646, 253120.237199999392033 ], [ 364428.393399998545647, 253110.606800001114607 ], [ 364434.071699999272823, 253106.642499998211861 ], [ 364447.906700000166893, 253091.768100000917912 ], [ 364451.17509999871254, 253086.72859999909997 ], [ 364457.679499998688698, 253080.449000000953674 ], [ 364480.414499998092651, 253062.058800000697374 ], [ 364484.483900003135204, 253057.659200001507998 ], [ 364484.510799996554852, 253054.493000000715256 ], [ 364482.093699999153614, 253054.262099999934435 ], [ 364475.628799997270107, 253055.897999998182058 ], [ 364461.872900001704693, 253061.484900001436472 ], [ 364448.943199999630451, 253064.756599999964237 ], [ 364440.068300001323223, 253065.317200001329184 ], [ 364423.152000002563, 253063.278900001198053 ], [ 364386.142499998211861, 253053.476799998432398 ], [ 364376.517099998891354, 253047.487399999052286 ], [ 364356.504900000989437, 253030.225000001490116 ], [ 364344.520000003278255, 253017.250199999660254 ], [ 364338.945900000631809, 253008.971999999135733 ], [ 364337.394400000572205, 253001.7820999994874 ], [ 364337.518500000238419, 252987.217700000852346 ], [ 364344.109200000762939, 252970.80629999935627 ], [ 364353.101000003516674, 252956.525499999523163 ], [ 364370.926100000739098, 252946.538899999111891 ], [ 364383.8074000030756, 252948.966400001198053 ], [ 364403.070699997246265, 252959.467599999159575 ], [ 364407.098700001835823, 252959.922800000756979 ], [ 364419.222199998795986, 252956.644499998539686 ], [ 364427.328500002622604, 252951.644600000232458 ], [ 364439.514799997210503, 252940.97859999909997 ], [ 364449.307499997317791, 252927.337600000202656 ], [ 364455.038000002503395, 252917.252099998295307 ], [ 364459.171999998390675, 252905.253600001335144 ], [ 364459.217000000178814, 252899.976599998772144 ], [ 364456.049300000071526, 252893.195700000971556 ], [ 364443.25620000064373, 252880.425400000065565 ], [ 364431.418600000441074, 252850.142099998891354 ], [ 364418.675899997353554, 252831.461599998176098 ], [ 364378.694700002670288, 252791.870900001376867 ], [ 364371.518799997866154, 252782.313000001013279 ], [ 364358.970299996435642, 252740.835900001227856 ], [ 364367.625, 252671.456999998539686 ], [ 364370.085299998521805, 252666.622000001370907 ], [ 364376.573600001633167, 252662.24210000038147 ], [ 364380.60869999974966, 252661.853000000119209 ], [ 364386.240299999713898, 252663.3766999989748 ], [ 364395.829700000584126, 252673.587699998170137 ], [ 364426.804799996316433, 252729.147700000554323 ], [ 364433.996899999678135, 252736.805900000035763 ], [ 364449.273699998855591, 252741.99720000103116 ], [ 364455.652199998497963, 252750.493200000375509 ], [ 364465.792599998414516, 252790.683899998664856 ], [ 364483.206000000238419, 252829.034400001168251 ], [ 364489.598999999463558, 252835.841699998825788 ], [ 364520.019500002264977, 252861.844099998474121 ], [ 364527.199000000953674, 252870.979899998754263 ], [ 364531.934399999678135, 252883.050999999046326 ], [ 364532.055600002408028, 252963.47859999909997 ], [ 364517.959799997508526, 253008.959499999880791 ], [ 364514.687799997627735, 253014.421100001782179 ], [ 364511.385300002992153, 253023.471099998801947 ], [ 364507.301600001752377, 253029.559399999678135 ], [ 364506.461099997162819, 253033.563299998641014 ], [ 364500.718000002205372, 253045.126400001347065 ], [ 364502.267700001597404, 253052.527399998158216 ], [ 364507.797499999403954, 253056.578499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": null, "PARCEL_NAM": "1-9", "ACRE": null, "LONGITUDE": -64.87717708, "LATITUDE": 18.31049896, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.44818127600001, "SHAPE_Area": 1295.10906802 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364532.916599996387959, 253524.994500000029802 ], [ 364526.653099998831749, 253502.989500001072884 ], [ 364522.709600001573563, 253492.613699998706579 ], [ 364517.927500002086163, 253486.030600000172853 ], [ 364486.279899999499321, 253509.414099998772144 ], [ 364490.282700002193451, 253512.824400000274181 ], [ 364493.464800000190735, 253517.916600000113249 ], [ 364496.587600000202656, 253529.974500000476837 ], [ 364496.548000000417233, 253534.618299998342991 ], [ 364532.916599996387959, 253524.994500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010200", "MAP": "D9-7344-T004", "PARCEL_NAM": "B-1-2", "ACRE": "19.7", "LONGITUDE": -64.83148333, "LATITUDE": 18.30777323, "OBJECTID_1": 42277, "PARCEL_NO_": "109801010200", "Tax_Legal_": "B-1REM,B-1-1,B-1-2,B-2REM,B-2-1,B-2-2 GREAT ST. JAMES ISLAND NO. 6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2759500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1869.9523116299999, "SHAPE_Area": 80754.509184900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369379.261600002646446, 253138.250599998980761 ], [ 369338.997500002384186, 253113.132199998944998 ], [ 369316.574699997901917, 253102.49210000038147 ], [ 369301.578400000929832, 253100.868999999016523 ], [ 369280.643399998545647, 253091.733899999409914 ], [ 369256.680500000715256, 253085.556400001049042 ], [ 369243.315499998629093, 253069.02760000154376 ], [ 369217.903800003230572, 253056.869500000029802 ], [ 369198.482799999415874, 253046.255800001323223 ], [ 369180.53660000115633, 253038.638999998569489 ], [ 369159.627599999308586, 253026.520199999213219 ], [ 369146.197300001978874, 253017.450899999588728 ], [ 369125.314400002360344, 253002.348400000482798 ], [ 369107.407200001180172, 252990.256000000983477 ], [ 369099.954599998891354, 252984.222899999469519 ], [ 369077.453400000929832, 252982.534299999475479 ], [ 369050.475299999117851, 252977.822700001299381 ], [ 369041.495700001716614, 252974.760299999266863 ], [ 369016.044600002467632, 252967.078099999576807 ], [ 369001.035099998116493, 252966.947000000625849 ], [ 368981.548699997365475, 252963.792899999767542 ], [ 368981.951700001955032, 253030.231300000101328 ], [ 368985.234499998390675, 253031.014499999582767 ], [ 368995.379299998283386, 253028.228999998420477 ], [ 369008.851300001144409, 253030.741700001060963 ], [ 369023.320500001311302, 253029.431000001728535 ], [ 369051.291000001132488, 253027.280099999159575 ], [ 369065.265799999237061, 253027.402199998497963 ], [ 369086.355899997055531, 253040.519799999892712 ], [ 369108.455899998545647, 253048.377099998295307 ], [ 369125.753600001335144, 253054.276399999856949 ], [ 369150.08110000193119, 253063.758699998259544 ], [ 369158.862499997019768, 253074.174100000411272 ], [ 369164.423900000751019, 253083.929900001734495 ], [ 369167.579000003635883, 253092.188400000333786 ], [ 369169.915299996733665, 253101.91780000180006 ], [ 369174.643399998545647, 253114.833200000226498 ], [ 369177.818300001323223, 253120.769799999892712 ], [ 369177.802199997007847, 253122.669599998742342 ], [ 369179.396799996495247, 253124.793499998748302 ], [ 369184.108800001442432, 253139.60869999974966 ], [ 369201.664300002157688, 253161.283900000154972 ], [ 369224.039599999785423, 253185.109499998390675 ], [ 369243.360600002110004, 253188.856199998408556 ], [ 369249.731899999082088, 253198.19649999961257 ], [ 369250.513099998235703, 253201.15819999948144 ], [ 369252.901399999856949, 253204.76630000025034 ], [ 369252.885300002992153, 253206.666000001132488 ], [ 369264.90259999781847, 253215.841400001198053 ], [ 369272.897399999201298, 253223.928399998694658 ], [ 369282.467100001871586, 253236.461199998855591 ], [ 369288.816899999976158, 253248.334399998188019 ], [ 369296.818899996578693, 253255.577100001275539 ], [ 369310.429099999368191, 253267.087600000202656 ], [ 369312.839000001549721, 253268.162799999117851 ], [ 369322.450000002980232, 253275.840799998492002 ], [ 369339.292700000107288, 253286.533300001174212 ], [ 369354.544299997389317, 253294.679699998348951 ], [ 369375.382500000298023, 253309.626800000667572 ], [ 369401.784100003540516, 253334.118599999696016 ], [ 369407.361699998378754, 253341.974800001829863 ], [ 369412.109700001776218, 253352.568300001323223 ], [ 369414.415299996733665, 253365.886100001633167 ], [ 369411.751800000667572, 253394.572999998927116 ], [ 369405.850500002503395, 253424.711100000888109 ], [ 369402.524599999189377, 253436.505100000649691 ], [ 369398.381499998271465, 253449.559000000357628 ], [ 369396.750900000333786, 253451.656599998474121 ], [ 369384.39190000295639, 253482.586199998855591 ], [ 369385.790500000119209, 253507.717700000852346 ], [ 369511.156300000846386, 253557.928599998354912 ], [ 369527.36879999935627, 253547.928800001740456 ], [ 369527.000399999320507, 253341.678599998354912 ], [ 369526.949500001966953, 253313.189300000667572 ], [ 369456.875200003385544, 253232.891399998217821 ], [ 369427.127899996936321, 253198.804000001400709 ], [ 369396.79730000346899, 253162.247699998319149 ], [ 369379.261600002646446, 253138.250599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": "A9-365-T89", "PARCEL_NAM": "1-21", "ACRE": "12.5", "LONGITUDE": -64.87654368, "LATITUDE": 18.30957502, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1152.5032504200001, "SHAPE_Area": 39653.377277699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364517.927500002086163, 253486.030600000172853 ], [ 364497.145000003278255, 253464.540100000798702 ], [ 364493.975500002503395, 253457.970300000160933 ], [ 364493.215899996459484, 253452.475600000470877 ], [ 364490.017700001597404, 253449.282999999821186 ], [ 364489.290500000119209, 253439.989000000059605 ], [ 364487.729999996721745, 253433.854499999433756 ], [ 364488.572300001978874, 253429.639499999582767 ], [ 364492.646999999880791, 253424.606600001454353 ], [ 364498.303800001740456, 253423.175200000405312 ], [ 364502.382100000977516, 253417.720199998468161 ], [ 364505.630699999630451, 253415.002599999308586 ], [ 364520.165899999439716, 253412.58839999884367 ], [ 364528.225400000810623, 253413.076499998569489 ], [ 364547.541000001132488, 253417.456500001251698 ], [ 364561.208700001239777, 253422.212400000542402 ], [ 364571.672799997031689, 253424.409000001847744 ], [ 364586.944200001657009, 253430.233500000089407 ], [ 364595.793799996376038, 253432.627999998629093 ], [ 364600.606499999761581, 253435.622699998319149 ], [ 364605.37610000371933, 253443.683299999684095 ], [ 364617.388099998235703, 253453.491900000721216 ], [ 364627.016999997198582, 253459.059099998325109 ], [ 364647.910999998450279, 253467.462799999862909 ], [ 364675.318499997258186, 253468.531500000506639 ], [ 364719.676399998366833, 253467.627999998629093 ], [ 364730.176500000059605, 253465.603000000119209 ], [ 364740.692699998617172, 253461.678300000727177 ], [ 364763.362999998033047, 253450.886900000274181 ], [ 364770.618000000715256, 253451.157400000840425 ], [ 364774.619000002741814, 253454.778799999505281 ], [ 364776.20099999755621, 253458.380300000309944 ], [ 364776.870700001716614, 253474.428899999707937 ], [ 364778.467100001871586, 253476.34180000051856 ], [ 364781.690600000321865, 253476.579300001263618 ], [ 364788.1537000015378, 253475.154500000178814 ], [ 364792.208599999547005, 253472.443500000983477 ], [ 364795.464400000870228, 253468.881499998271465 ], [ 364797.172399997711182, 253457.707600001245737 ], [ 364797.247900001704693, 253448.842199999839067 ], [ 364787.008599996566772, 253420.260800000280142 ], [ 364784.814400002360344, 253393.856199998408556 ], [ 364778.424999997019768, 253386.6266999989748 ], [ 364521.642899997532368, 253333.86259999871254 ], [ 364378.603799998760223, 253370.477600000798702 ], [ 364433.959499999880791, 253498.431200001388788 ], [ 364445.271300002932549, 253495.779599998146296 ], [ 364451.723600000143051, 253495.621300000697374 ], [ 364459.777699999511242, 253496.74269999936223 ], [ 364474.246399998664856, 253502.138399999588728 ], [ 364486.279899999499321, 253509.414099998772144 ], [ 364517.927500002086163, 253486.030600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010300", "MAP": "D9-7347-T004", "PARCEL_NAM": "C-1-2", "ACRE": "2.89", "LONGITUDE": -64.83035317, "LATITUDE": 18.30705794, "OBJECTID_1": 42278, "PARCEL_NO_": "109801010300", "Tax_Legal_": "C-1REM,C-1-1,C-1-2,C-2REM,C-2-1,C-2-2 GREAT ST. JAMES ISLAND No.6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2739100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 418.87342629300002, "SHAPE_Area": 9128.1068144199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369456.875200003385544, 253232.891399998217821 ], [ 369552.983499996364117, 253174.236000001430511 ], [ 369508.342600002884865, 253144.454100001603365 ], [ 369473.847099997103214, 253141.168099999427795 ], [ 369410.873000003397465, 253133.157000001519918 ], [ 369379.261600002646446, 253138.250599998980761 ], [ 369396.79730000346899, 253162.247699998319149 ], [ 369427.127899996936321, 253198.804000001400709 ], [ 369456.875200003385544, 253232.891399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109702010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83328802, "LATITUDE": 18.30940221, "OBJECTID_1": 42275, "PARCEL_NO_": "109702010100", "Tax_Legal_": "FISH CAY RED HOOK QTR", "Name": "EVANS, JR. JAMES & WILLIAM", "Address": "PO Box 7579", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010579, "Country": "United States", "Land_Value": 75500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 466.58065649000002, "SHAPE_Area": 12104.978440700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369160.975000001490116, 253488.779199998825788 ], [ 369169.016500003635883, 253491.378100000321865 ], [ 369175.420299999415874, 253496.9189000017941 ], [ 369176.206799998879433, 253499.247400000691414 ], [ 369178.616800002753735, 253500.322599999606609 ], [ 369184.260999999940395, 253500.36879999935627 ], [ 369190.723999999463558, 253498.943999998271465 ], [ 369197.208700001239777, 253494.986299999058247 ], [ 369201.281599998474121, 253490.164500001817942 ], [ 369204.54280000180006, 253485.969300001859665 ], [ 369210.347099997103214, 253467.229499999433756 ], [ 369224.129900000989437, 253458.476399999111891 ], [ 369225.785700000822544, 253453.423700001090765 ], [ 369228.328699998557568, 253438.879000000655651 ], [ 369225.220299996435642, 253425.132500000298023 ], [ 369221.282300002872944, 253414.123399998992682 ], [ 369215.66330000013113, 253411.122099999338388 ], [ 369212.459600001573563, 253408.562800001353025 ], [ 369210.069399997591972, 253405.165699999779463 ], [ 369201.968500003218651, 253409.532400000840425 ], [ 369193.082900002598763, 253411.359499998390675 ], [ 369180.998999997973442, 253409.993999999016523 ], [ 369163.355400003492832, 253398.661699999123812 ], [ 369147.374899998307228, 253381.432300001382828 ], [ 369136.138599999248981, 253375.218600001186132 ], [ 369132.92059999704361, 253374.347899999469519 ], [ 369126.462899997830391, 253375.139400001615286 ], [ 369122.442100003361702, 253373.839999999850988 ], [ 369118.439300000667572, 253370.429699998348951 ], [ 369115.26799999922514, 253364.070999998599291 ], [ 369110.460699997842312, 253360.442999999970198 ], [ 369102.408399999141693, 253359.110599998384714 ], [ 369092.716399997472763, 253360.931099999696016 ], [ 369084.611900001764297, 253365.719900000840425 ], [ 369080.5371999964118, 253370.75279999896884 ], [ 369078.07150000333786, 253376.221000000834465 ], [ 369077.22749999910593, 253380.647100001573563 ], [ 369078.696199998259544, 253397.546599999070168 ], [ 369081.81360000371933, 253410.237700000405312 ], [ 369084.196599997580051, 253414.479100000113249 ], [ 369091.379699997603893, 253423.192699998617172 ], [ 369102.617700003087521, 253429.195300001651049 ], [ 369108.198899999260902, 253436.629299998283386 ], [ 369109.773800000548363, 253441.075100000947714 ], [ 369108.107199996709824, 253447.394299998879433 ], [ 369108.866800002753735, 253452.888999998569489 ], [ 369112.005699999630451, 253463.047100000083447 ], [ 369116.802199997007847, 253467.941500000655651 ], [ 369132.838600002229214, 253478.627500001341105 ], [ 369151.311800003051758, 253487.22239999845624 ], [ 369155.332599997520447, 253488.521899998188019 ], [ 369160.975000001490116, 253488.779199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109601010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86626467000001, "LATITUDE": 18.30729764, "OBJECTID_1": 42245, "PARCEL_NO_": "109601010100", "Tax_Legal_": "CAS CAY FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2551600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1809.17025059, "SHAPE_Area": 49395.452769900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365737.671499997377396, 253047.017700001597404 ], [ 365719.03999999910593, 253056.997699998319149 ], [ 365702.87049999833107, 253061.931600000709295 ], [ 365685.860699996352196, 253070.86939999833703 ], [ 365676.093199998140335, 253081.55519999936223 ], [ 365665.526600003242493, 253091.390099998563528 ], [ 365652.573499999940395, 253097.405799999833107 ], [ 365648.511399999260902, 253100.961199998855591 ], [ 365641.220399998128414, 253104.912300001829863 ], [ 365636.3699000030756, 253106.35020000115037 ], [ 365615.389600001275539, 253108.078400000929832 ], [ 365609.730999998748302, 253109.720800001174212 ], [ 365574.096799999475479, 253127.794300001114607 ], [ 365565.204000003635883, 253130.465700000524521 ], [ 365561.955399997532368, 253133.183299999684095 ], [ 365554.6824000030756, 253135.023699998855591 ], [ 365551.458999998867512, 253134.786200001835823 ], [ 365538.536399997770786, 253137.213500000536442 ], [ 365532.870600000023842, 253139.700300000607967 ], [ 365519.139899998903275, 253142.332100000232458 ], [ 365493.334299996495247, 253142.543099999427795 ], [ 365483.640600003302097, 253144.574700001627207 ], [ 365474.718999996781349, 253150.623399998992682 ], [ 365456.956799998879433, 253153.222199998795986 ], [ 365451.296400003135204, 253155.075800001621246 ], [ 365438.332500003278255, 253162.357900001108646 ], [ 365436.700000002980232, 253164.666600000113249 ], [ 365419.679399996995926, 253174.870900001376867 ], [ 365413.151600003242493, 253183.894499998539686 ], [ 365402.642499998211861, 253186.974899999797344 ], [ 365395.324600003659725, 253194.092099998146296 ], [ 365392.034599997103214, 253201.664599999785423 ], [ 365391.190499998629093, 253206.090599998831749 ], [ 365391.172499999403954, 253208.201400000602007 ], [ 365392.75280000269413, 253212.013999998569489 ], [ 365392.713200002908707, 253216.657800000160933 ], [ 365391.080799996852875, 253218.966400001198053 ], [ 365383.796999998390675, 253222.07319999858737 ], [ 365373.291599996387959, 253224.731499999761581 ], [ 365368.416000001132488, 253229.124499998986721 ], [ 365365.126000002026558, 253236.697000000625849 ], [ 365365.102600000798702, 253239.440999999642372 ], [ 365357.669600002467632, 253260.067299999296665 ], [ 365342.126599997282028, 253286.115699999034405 ], [ 365334.734999999403954, 253301.887200001627207 ], [ 365337.069399997591972, 253311.8277000002563 ], [ 365344.306400001049042, 253314.208999998867512 ], [ 365364.464199997484684, 253314.374000001698732 ], [ 365387.87610000371933, 253311.188099998980761 ], [ 365399.185999996960163, 253308.747499998658895 ], [ 365412.159000001847744, 253300.410000000149012 ], [ 365417.059799998998642, 253293.061799999326468 ], [ 365423.567800000309944, 253286.360100001096725 ], [ 365431.684900000691414, 253280.093699999153614 ], [ 365438.115599997341633, 253282.468400001525879 ], [ 365441.297700002789497, 253287.560699999332428 ], [ 365446.135600000619888, 253287.600299999117851 ], [ 365455.845499999821186, 253283.668999999761581 ], [ 365475.468500003218651, 253251.9543999992311 ], [ 365487.642300002276897, 253242.765999998897314 ], [ 365497.443899996578693, 253228.069600000977516 ], [ 365504.769100002944469, 253220.107999999076128 ], [ 365510.490599997341633, 253211.077799998223782 ], [ 365521.84009999781847, 253203.993500001728535 ], [ 365536.411300003528595, 253197.357799999415874 ], [ 365549.330200001597404, 253195.352600000798702 ], [ 365559.052799999713898, 253189.94370000064373 ], [ 365572.002300001680851, 253184.35020000115037 ], [ 365578.490599997341633, 253179.970300000160933 ], [ 365594.668999999761581, 253173.980999998748302 ], [ 365610.05179999768734, 253166.718699999153614 ], [ 365616.500500001013279, 253166.982500001788139 ], [ 365621.324000000953674, 253168.710799999535084 ], [ 365643.110600002110004, 253166.989199999719858 ], [ 365657.676399998366833, 253160.986699998378754 ], [ 365663.354800000786781, 253157.022399999201298 ], [ 365708.648500002920628, 253140.92790000140667 ], [ 365715.10980000346899, 253139.714200001209974 ], [ 365752.229000002145767, 253136.640500001609325 ], [ 365764.341600000858307, 253134.628699999302626 ], [ 365778.050700001418591, 253134.529800001531839 ], [ 365784.476099997758865, 253137.53770000115037 ], [ 365799.767200000584126, 253141.040300000458956 ], [ 365816.689000003039837, 253142.44539999961853 ], [ 365823.902699999511242, 253147.570700000971556 ], [ 365832.755900003015995, 253149.543000001460314 ], [ 365842.429899998009205, 253149.833299998193979 ], [ 365855.311099998652935, 253152.26069999858737 ], [ 365875.400600001215935, 253160.446699999272823 ], [ 365901.985500000417233, 253163.408500000834465 ], [ 365925.318199999630451, 253169.510099999606609 ], [ 365933.354400001466274, 253172.742199998348951 ], [ 365936.554399996995926, 253175.723700001835823 ], [ 365946.204999998211861, 253178.758000001311302 ], [ 365967.131399996578693, 253183.362300001084805 ], [ 365984.054899998009205, 253184.55629999935627 ], [ 366041.304899998009205, 253184.813700001686811 ], [ 366052.613099999725819, 253182.584300000220537 ], [ 366060.715800002217293, 253178.006499998271465 ], [ 366067.173500001430511, 253177.214999999850988 ], [ 366082.493400000035763, 253177.340399999171495 ], [ 366086.539300002157688, 253175.68470000103116 ], [ 366087.367200002074242, 253173.158399999141693 ], [ 366092.237499997019768, 253169.398600000888109 ], [ 366105.998700000345707, 253163.178399998694658 ], [ 366106.016699999570847, 253161.067600000649691 ], [ 366102.021099999547005, 253156.813000001013279 ], [ 366102.863399997353554, 253152.598099999129772 ], [ 366102.0912000015378, 253148.581000000238419 ], [ 366094.917199999094009, 253138.811900001019239 ], [ 366093.342299997806549, 253134.366099998354912 ], [ 366090.122400000691414, 253133.706500001251698 ], [ 366078.780100002884865, 253139.946400001645088 ], [ 366066.685400001704693, 253139.84739999845624 ], [ 366057.036700002849102, 253136.602099999785423 ], [ 366044.195000000298023, 253129.530900001525879 ], [ 366020.07039999961853, 253121.734099999070168 ], [ 365981.430299997329712, 253114.029500000178814 ], [ 365964.497699998319149, 253113.890900000929832 ], [ 365944.289599999785423, 253119.636199999600649 ], [ 365932.146300002932549, 253125.236299999058247 ], [ 365916.793999999761581, 253128.910300001502037 ], [ 365906.308399997651577, 253129.246700000017881 ], [ 365883.745999999344349, 253127.3733000010252 ], [ 365869.230599999427795, 253127.465599998831749 ], [ 365856.345799997448921, 253125.460299998521805 ], [ 365841.056400001049042, 253121.746599998325109 ], [ 365817.745300002396107, 253113.111999999731779 ], [ 365816.962300002574921, 253110.361400000751019 ], [ 365807.353100001811981, 253102.472300000488758 ], [ 365779.249099999666214, 253088.521200001239777 ], [ 365772.87950000166893, 253078.969900000840425 ], [ 365770.530699998140335, 253070.717999998480082 ], [ 365766.524300001561642, 253067.729899998754263 ], [ 365757.669200003147125, 253065.968699999153614 ], [ 365753.653800003230572, 253064.035999998450279 ], [ 365748.907700002193451, 253053.231300000101328 ], [ 365737.671499997377396, 253047.017700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109501020500", "MAP": "D9-542-T65", "PARCEL_NAM": "1-16", "ACRE": null, "LONGITUDE": -64.87837196, "LATITUDE": 18.30831282, "OBJECTID_1": 42241, "PARCEL_NO_": "109501020500", "Tax_Legal_": "1-16 BOVONI 1-2 FRENCHMAN BAY", "Name": "EDWARDS, PHILBERT & MEDORA", "Address": "1408 4th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 171900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.92372403799999, "SHAPE_Area": 4025.4955319599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364350.52589999884367, 253258.790399998426437 ], [ 364349.633299998939037, 253268.915600001811981 ], [ 364348.778499998152256, 253274.6081000007689 ], [ 364347.102899998426437, 253281.982700001448393 ], [ 364344.612000003457069, 253290.406100001186132 ], [ 364340.540899999439716, 253295.016800001263618 ], [ 364338.906700000166893, 253297.536499999463558 ], [ 364350.943899996578693, 253304.390099998563528 ], [ 364432.584600001573563, 253281.204700000584126 ], [ 364412.881700001657009, 253227.636700000613928 ], [ 364350.52589999884367, 253258.790399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109502010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87254184, "LATITUDE": 18.30633939, "OBJECTID_1": 42243, "PARCEL_NO_": "109502010100", "Tax_Legal_": "PATRICIA CAY FRENCHMAN BAY QTR", "Name": "VIALET, FREDERICK", "Address": "PO Box 546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1474600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1916.1416979099999, "SHAPE_Area": 131264.841151 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365160.766400001943111, 252898.96339999884367 ], [ 365132.423199996352196, 252913.085799999535084 ], [ 365095.233900003135204, 252924.391600001603365 ], [ 365076.683300003409386, 252924.873100001364946 ], [ 365066.960799999535084, 252930.281899999827147 ], [ 365060.440200001001358, 252938.461199998855591 ], [ 365053.890799999237061, 252950.017700001597404 ], [ 365036.879100002348423, 252959.166600000113249 ], [ 365005.371799997985363, 252966.085900001227856 ], [ 364983.531199999153614, 252974.139800000935793 ], [ 364961.744599997997284, 252975.861299999058247 ], [ 364943.201200000941753, 252975.498500000685453 ], [ 364913.38740000128746, 252972.932399999350309 ], [ 364906.150399997830391, 252970.551199998706579 ], [ 364888.407899998128414, 252970.828200001269579 ], [ 364870.696000002324581, 252967.516800001263618 ], [ 364819.928900003433228, 252963.512699998915195 ], [ 364800.518100000917912, 252970.319899998605251 ], [ 364789.168499998748302, 252977.404199998825788 ], [ 364781.827200002968311, 252987.265500001609325 ], [ 364772.007600001990795, 253004.072599999606609 ], [ 364763.689099997282028, 253033.979800000786781 ], [ 364754.575199998915195, 253062.614000000059605 ], [ 364730.8091000020504, 253107.382399998605251 ], [ 364720.955300003290176, 253128.199999999254942 ], [ 364715.914200000464916, 253152.012299999594688 ], [ 364710.099200002849102, 253172.0185999982059 ], [ 364701.868900001049042, 253191.582899998873472 ], [ 364696.060999996960163, 253210.744899999350309 ], [ 364692.666799999773502, 253230.559900000691414 ], [ 364695.802100002765656, 253241.140299998223782 ], [ 364711.885200001299381, 253246.338199999183416 ], [ 364730.412399999797344, 253248.600699998438358 ], [ 364744.116099998354912, 253249.135099999606609 ], [ 364763.51799999922514, 253243.383200000971556 ], [ 364779.629799999296665, 253245.203899998217821 ], [ 364798.999300003051758, 253243.251499999314547 ], [ 364805.476800002157688, 253240.138099998235703 ], [ 364828.179399996995926, 253225.5472999997437 ], [ 364853.279399998486042, 253213.509300000965595 ], [ 364870.267700001597404, 253207.104499999433756 ], [ 364909.208099998533726, 253179.558800000697374 ], [ 364916.457699999213219, 253180.462499998509884 ], [ 364925.994999997317791, 253196.794799998402596 ], [ 364936.475199997425079, 253197.091699998825788 ], [ 364942.149999998509884, 253193.549499999731779 ], [ 364947.876900002360344, 253183.886100001633167 ], [ 364944.770300000905991, 253169.92850000038743 ], [ 364941.805799998342991, 253139.295699998736382 ], [ 364945.207299999892712, 253118.636300001293421 ], [ 364951.706299997866154, 253112.989999998360872 ], [ 364958.916400000452995, 253118.537399999797344 ], [ 364966.835699997842312, 253135.489700000733137 ], [ 364970.775499999523163, 253146.287799999117851 ], [ 364969.859499998390675, 253159.157000001519918 ], [ 364972.195699997246265, 253168.886399999260902 ], [ 364975.352700002491474, 253176.933800000697374 ], [ 364991.421400003135204, 253183.820300001651049 ], [ 365001.928599998354912, 253180.9510000012815 ], [ 365014.912299998104572, 253171.346900001168251 ], [ 365026.249200001358986, 253165.740200001746416 ], [ 365042.123700000345707, 253195.423200000077486 ], [ 365059.805100001394749, 253202.322900000959635 ], [ 365079.984499998390675, 253199.954999998211861 ], [ 365088.902500003576279, 253194.328400000929832 ], [ 365095.403300002217293, 253188.471000000834465 ], [ 365113.235699996352196, 253177.640099998563528 ], [ 365146.389799997210503, 253166.723499998450279 ], [ 365161.02929999679327, 253152.066799998283386 ], [ 365165.091399997472763, 253148.511399999260902 ], [ 365169.95269999653101, 253145.807000000029802 ], [ 365172.431000001728535, 253138.861200001090765 ], [ 365186.226400002837181, 253128.630499999970198 ], [ 365199.975000001490116, 253123.887899998575449 ], [ 365216.97410000115633, 253116.216600000858307 ], [ 365223.518100000917912, 253105.293299999088049 ], [ 365237.843999996781349, 253032.794300001114607 ], [ 365250.976999998092651, 253005.670699998736382 ], [ 365258.402800001204014, 252985.888700000941753 ], [ 365264.894299998879433, 252953.199799999594688 ], [ 365281.298500001430511, 252907.691399998962879 ], [ 365311.461099997162819, 252873.824599999934435 ], [ 365324.69030000269413, 252849.482900001108646 ], [ 365310.931900002062321, 252828.845400001853704 ], [ 365273.89019999653101, 252818.261999998241663 ], [ 365251.135999999940395, 252812.970400001853704 ], [ 365242.669299997389317, 252820.907900001853704 ], [ 365232.085900001227856, 252837.312100000679493 ], [ 365204.569200001657009, 252849.482900001108646 ], [ 365183.931699998676777, 252869.062100000679493 ], [ 365160.766400001943111, 252898.96339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109402010200", "MAP": "D9-8341-T09", "PARCEL_NAM": "1A-8", "ACRE": "28.4", "LONGITUDE": -64.87787986, "LATITUDE": 18.3050587, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1053.06406588, "SHAPE_Area": 28961.286369199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364377.297100000083447, 252671.958399999886751 ], [ 364370.461800001561642, 252717.076400000602007 ], [ 364368.653200000524521, 252740.070799998939037 ], [ 364371.768799997866154, 252752.973000001162291 ], [ 364379.617899999022484, 252778.157400000840425 ], [ 364385.195600003004074, 252786.0135000012815 ], [ 364425.983000002801418, 252825.610700000077486 ], [ 364439.519500002264977, 252845.775400001555681 ], [ 364451.362499997019768, 252875.425500001758337 ], [ 364464.157399997115135, 252887.984700001776218 ], [ 364468.106200002133846, 252897.727299999445677 ], [ 364468.836999997496605, 252906.599199999123812 ], [ 364463.875100001692772, 252921.124099999666214 ], [ 364457.329199999570847, 252932.258499998599291 ], [ 364445.913199998438358, 252947.152699999511242 ], [ 364432.911499999463558, 252958.867499999701977 ], [ 364423.183600001037121, 252964.909600000828505 ], [ 364407.825900003314018, 252969.216899998486042 ], [ 364400.576300002634525, 252968.313099998980761 ], [ 364380.508400000631809, 252957.594200000166893 ], [ 364372.457800000905991, 252956.050700001418591 ], [ 364359.493900001049042, 252963.332800000905991 ], [ 364352.136399999260902, 252975.093899998813868 ], [ 364346.371699996292591, 252989.190000001341105 ], [ 364345.470100000500679, 253000.37049999833107 ], [ 364349.435099996626377, 253008.21339999884367 ], [ 364371.817699998617172, 253031.194699998944998 ], [ 364390.245999999344349, 253045.066599998623133 ], [ 364415.98870000243187, 253052.243400000035763 ], [ 364441.756499998271465, 253056.46510000154376 ], [ 364479.750299997627735, 253045.377000000327826 ], [ 364489.463799998164177, 253041.023499999195337 ], [ 364496.790700003504753, 253032.850900001823902 ], [ 364514.057800002396107, 252993.728799998760223 ], [ 364524.003200002014637, 252962.146200001239777 ], [ 364522.244199998676777, 252884.660399999469519 ], [ 364519.098099999129772, 252875.346599999815226 ], [ 364513.515100002288818, 252868.123700000345707 ], [ 364483.897299997508526, 252842.550000000745058 ], [ 364475.90429999679327, 252834.252000000327826 ], [ 364456.898000001907349, 252793.566500000655651 ], [ 364447.554899998009205, 252754.437699999660254 ], [ 364443.562899999320507, 252749.760899998247623 ], [ 364429.092500001192093, 252744.576299998909235 ], [ 364418.698499999940395, 252734.147599998861551 ], [ 364416.328100003302097, 252728.428700000047684 ], [ 364387.721699997782707, 252678.798700001090765 ], [ 364382.133199997246265, 252672.208999998867512 ], [ 364377.297100000083447, 252671.958399999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "110302010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.81620619, "LATITUDE": 18.29587358, "OBJECTID_1": 42280, "PARCEL_NO_": "110302010100", "Tax_Legal_": "DOG ISLAND RED HOOK", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1921300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1411.16224887, "SHAPE_Area": 53688.617750400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370920.418499998748302, 252024.808100000023842 ], [ 370938.674800001084805, 252021.633099999278784 ], [ 370968.043600000441074, 252016.870600000023842 ], [ 370983.124899998307228, 252012.1081000007689 ], [ 371002.174900002777576, 252005.758099999278784 ], [ 371022.018700003623962, 251997.820599999278784 ], [ 371033.13120000064373, 251991.470499999821186 ], [ 371052.181199997663498, 251988.295499999076128 ], [ 371080.756300002336502, 251985.12049999833107 ], [ 371095.837600000202656, 251986.708000000566244 ], [ 371102.187600001692772, 251993.851799998432398 ], [ 371112.506399996578693, 252003.376800000667572 ], [ 371126.000100001692772, 252003.376800000667572 ], [ 371139.493900001049042, 251998.61430000141263 ], [ 371156.162699997425079, 251995.439300000667572 ], [ 371167.275200001895428, 251985.914299998432398 ], [ 371167.275200001895428, 251976.389299999922514 ], [ 371176.224200002849102, 251958.590500000864267 ], [ 371184.355599999427795, 251950.635499998927116 ], [ 371193.33839999884367, 251937.410100001841784 ], [ 371191.783299997448921, 251930.642400000244379 ], [ 371187.829000003635883, 251921.532999999821186 ], [ 371187.069499999284744, 251916.038400001823902 ], [ 371187.21509999781847, 251898.940999999642372 ], [ 371184.905900001525879, 251886.045400001108646 ], [ 371180.109399996697903, 251881.151000000536442 ], [ 371167.233499996364117, 251878.090300001204014 ], [ 371137.364000000059605, 251882.067699998617172 ], [ 371134.127999998629093, 251883.307799998670816 ], [ 371122.844999998807907, 251882.582100000232458 ], [ 371117.217000000178814, 251880.636199999600649 ], [ 371109.162900000810623, 251879.514800000935793 ], [ 371080.947300001978874, 251878.650600001215935 ], [ 371068.015799999237061, 251882.133400000631809 ], [ 371057.476199999451637, 251888.802099999040365 ], [ 371050.188799999654293, 251892.3310999982059 ], [ 371042.92119999974966, 251893.538100000470877 ], [ 371032.44990000128746, 251892.185899998992682 ], [ 371021.989399999380112, 251889.567099999636412 ], [ 371021.228100001811981, 251884.283599998801947 ], [ 371022.066699996590614, 251880.490800000727177 ], [ 371020.51519999653101, 251873.300900001078844 ], [ 371018.117899999022484, 251870.748100001364946 ], [ 371010.038599997758865, 251872.581799998879433 ], [ 371004.347599998116493, 251878.023699998855591 ], [ 371005.107199996709824, 251883.518399998545647 ], [ 371007.465000003576279, 251890.714800000190735 ], [ 371007.432599999010563, 251894.514199998229742 ], [ 371005.784000001847744, 251898.722600001841784 ], [ 371002.553400002419949, 251899.329500000923872 ], [ 370994.531599998474121, 251894.408700000494719 ], [ 370988.903599999845028, 251892.462799999862909 ], [ 370981.626999996602535, 251894.72520000115037 ], [ 370975.981100000441074, 251894.890099998563528 ], [ 370967.133199997246265, 251892.284600000828505 ], [ 370958.351899996399879, 251881.869100000709295 ], [ 370955.17339999973774, 251876.354699999094009 ], [ 370955.203900001943111, 251872.76630000025034 ], [ 370952.864100001752377, 251863.459100000560284 ], [ 370952.972000002861023, 251850.794300001114607 ], [ 370951.406099997460842, 251845.293099999427795 ], [ 370945.819499999284744, 251838.492400001734495 ], [ 370942.615800000727177, 251835.93299999833107 ], [ 370923.325499996542931, 251828.598000001162291 ], [ 370917.68129999935627, 251828.55180000141263 ], [ 370913.635300002992153, 251830.207400001585484 ], [ 370910.38849999755621, 251832.713899999856949 ], [ 370901.502899996936321, 251834.54109999909997 ], [ 370885.383799999952316, 251833.564800001680851 ], [ 370873.283699996769428, 251834.098999999463558 ], [ 370860.361199997365475, 251836.526399999856949 ], [ 370858.718000002205372, 251840.101500000804663 ], [ 370863.446199998259544, 251853.0168999992311 ], [ 370860.188500002026558, 251856.789900001138449 ], [ 370856.153399996459484, 251857.179099999368191 ], [ 370834.429700002074242, 251851.512899998575449 ], [ 370820.711599998176098, 251852.667199999094009 ], [ 370815.853900000452995, 251854.949400000274181 ], [ 370811.78999999910593, 251858.715799998492002 ], [ 370808.51799999922514, 251864.177499998360872 ], [ 370808.487400002777576, 251867.765799999237061 ], [ 370810.873999997973442, 251871.585099998861551 ], [ 370817.299300000071526, 251874.592999998480082 ], [ 370824.478799998760223, 251883.728700000792742 ], [ 370830.789099998772144, 251900.245700001716614 ], [ 370831.548600003123283, 251905.740299999713898 ], [ 370825.821699999272823, 251915.403799999505281 ], [ 370824.968699999153614, 251920.885200001299381 ], [ 370828.17230000346899, 251923.444600000977516 ], [ 370837.848099999129772, 251923.523800000548363 ], [ 370845.088699996471405, 251925.482900001108646 ], [ 370846.670800000429153, 251929.084399998188019 ], [ 370848.981799997389317, 251941.768899999558926 ], [ 370849.708999998867512, 251951.063000001013279 ], [ 370860.893100000917912, 251963.397999998182058 ], [ 370863.234700001776218, 251972.494100000709295 ], [ 370861.5591000020504, 251979.868700001388788 ], [ 370854.250200003385544, 251985.930599998682737 ], [ 370841.302400000393391, 251991.313099998980761 ], [ 370831.606899999082088, 251993.555700000375509 ], [ 370821.884400002658367, 251998.964600000530481 ], [ 370819.44030000269413, 252001.899900000542402 ], [ 370820.167499996721745, 252011.193999998271465 ], [ 370824.121699996292591, 252020.303399998694658 ], [ 370814.055799998342991, 252022.426899999380112 ], [ 370806.912000000476837, 252031.951900001615286 ], [ 370805.324500001966953, 252040.683100000023842 ], [ 370806.118199996650219, 252048.620700001716614 ], [ 370808.499499998986721, 252055.764400001615286 ], [ 370806.912000000476837, 252064.495700001716614 ], [ 370805.324500001966953, 252071.639499999582767 ], [ 370801.355700001120567, 252078.78319999948144 ], [ 370795.799500003457069, 252088.308200001716614 ], [ 370794.211999997496605, 252100.214499998837709 ], [ 370797.387000001966953, 252109.739500001072884 ], [ 370805.324500001966953, 252116.883299998939037 ], [ 370812.468299999833107, 252118.470800001174212 ], [ 370813.262000001966953, 252121.645799998193979 ], [ 370813.262000001966953, 252126.408300001174212 ], [ 370814.849500000476837, 252132.758299998939037 ], [ 370824.374499998986721, 252135.933299999684095 ], [ 370829.930799998342991, 252133.552099999040365 ], [ 370831.518299996852875, 252130.377099998295307 ], [ 370836.280799999833107, 252116.883299998939037 ], [ 370844.218299999833107, 252112.120799999684095 ], [ 370852.949600003659725, 252104.977000001817942 ], [ 370852.949600003659725, 252094.65819999948144 ], [ 370845.012100003659725, 252089.895700000226498 ], [ 370845.805799998342991, 252086.72069999948144 ], [ 370852.949600003659725, 252081.164500001817942 ], [ 370858.505900003015995, 252073.227000001817942 ], [ 370860.887100003659725, 252062.114399999380112 ], [ 370862.474600002169609, 252046.239399999380112 ], [ 370872.793399997055531, 252037.508099999278784 ], [ 370895.812200002372265, 252029.570599999278784 ], [ 370920.418499998748302, 252024.808100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052300", "MAP": "A9-557-T000", "PARCEL_NAM": "6B REM", "ACRE": "0.77", "LONGITUDE": -64.87709607, "LATITUDE": 18.32174575, "OBJECTID_1": 38757, "PARCEL_NO_": "107603052300", "Tax_Legal_": "6B ESTATE NADIR NO.2 RED HOOK QTR", "Name": "ROBERTS, VIOLA ALTHEA", "Address": "8145 Aouthgate Blvd", "City": "Pompano Beach", "State": "Florida", "Zip": 33068, "Country": "United States", "Land_Value": 117200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 549.92469362500003, "SHAPE_Area": 4604.6357382899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364588.421300001442432, 254771.322999998927116 ], [ 364589.579999998211861, 254729.958099998533726 ], [ 364529.8716000020504, 254734.324599999934435 ], [ 364528.027000002563, 254761.540600001811981 ], [ 364527.762999996542931, 254766.492899999022484 ], [ 364499.780900001525879, 254764.264699999243021 ], [ 364435.090899996459484, 254759.158599998801947 ], [ 364435.367600001394749, 254752.971700001507998 ], [ 364436.130699999630451, 254730.973900001496077 ], [ 364431.934399999678135, 254736.988600000739098 ], [ 364421.825499996542931, 254743.868200000375509 ], [ 364409.751000002026558, 254748.6418999992311 ], [ 364396.339199997484684, 254750.614199999719858 ], [ 364389.382600001990795, 254755.550700001418591 ], [ 364378.033100001513958, 254762.635000001639128 ], [ 364373.162799999117851, 254766.394799999892712 ], [ 364379.850199997425079, 254766.736400000751019 ], [ 364500.353200003504753, 254772.891499999910593 ], [ 364587.929499998688698, 254777.364799998700619 ], [ 364588.421300001442432, 254771.322999998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603055000", "MAP": "A9-620-T003", "PARCEL_NAM": null, "ACRE": ".094", "LONGITUDE": -64.8779328, "LATITUDE": 18.32158022, "OBJECTID_1": 38780, "PARCEL_NO_": "107603055000", "Tax_Legal_": "6B-1 ESTATE NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 12200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.086871538, "SHAPE_Area": 324.47502832800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364396.339199997484684, 254750.614199999719858 ], [ 364409.751000002026558, 254748.6418999992311 ], [ 364421.825499996542931, 254743.868200000375509 ], [ 364431.934399999678135, 254736.988600000739098 ], [ 364436.130699999630451, 254730.973900001496077 ], [ 364436.43639999628067, 254722.160799998790026 ], [ 364396.339199997484684, 254750.614199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052200", "MAP": "A9-557-T000", "PARCEL_NAM": "6C", "ACRE": "0.93", "LONGITUDE": -64.87737744, "LATITUDE": 18.32160788, "OBJECTID_1": 38756, "PARCEL_NO_": "107603052200", "Tax_Legal_": "6C ESTATE NADIR No.2 RED HOOK QTR.", "Name": "HUSSEIN, MUSA H. & ABDUL-SAMAD, HUSAM", "Address": "9B CONTANT", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.01502272699997, "SHAPE_Area": 3704.2759863900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364528.027000002563, 254761.540600001811981 ], [ 364529.8716000020504, 254734.324599999934435 ], [ 364504.857900001108646, 254736.230799999088049 ], [ 364469.973600000143051, 254704.202500000596046 ], [ 364439.656499996781349, 254727.722100000828505 ], [ 364436.14639999717474, 254730.951299998909235 ], [ 364436.130699999630451, 254730.973900001496077 ], [ 364435.367600001394749, 254752.971700001507998 ], [ 364435.090899996459484, 254759.158599998801947 ], [ 364499.780900001525879, 254764.264699999243021 ], [ 364527.762999996542931, 254766.492899999022484 ], [ 364528.027000002563, 254761.540600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603059900", "MAP": "A9-557-T000", "PARCEL_NAM": "6C-1", "ACRE": "0.06", "LONGITUDE": -64.87764117, "LATITUDE": 18.32136539, "OBJECTID_1": 38781, "PARCEL_NO_": "107603059900", "Tax_Legal_": "6C-1 ESTATE NADIR REDHOOK QTR", "Name": "GOV'T OF THE VI PROP. & PRECUREM", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.380488405600005, "SHAPE_Area": 242.52178625 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364436.130699999630451, 254730.973900001496077 ], [ 364436.14639999717474, 254730.951299998909235 ], [ 364439.656499996781349, 254727.722100000828505 ], [ 364469.973600000143051, 254704.202500000596046 ], [ 364465.652500003576279, 254700.235100001096725 ], [ 364436.43639999628067, 254722.160799998790026 ], [ 364436.130699999630451, 254730.973900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "107603040100", "MAP": "G3-157-T76", "PARCEL_NAM": "43A", "ACRE": "6,534 sq fT", "LONGITUDE": -64.87745716000001, "LATITUDE": 18.32099724, "OBJECTID_1": 38713, "PARCEL_NO_": "107603040100", "Tax_Legal_": "PCL OF NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 219300, "Improved_V": 114700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.779238119, "SHAPE_Area": 702.15996419099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364449.008299998939037, 254683.943599998950958 ], [ 364456.81530000269413, 254694.90260000154376 ], [ 364473.056699998676777, 254682.986000001430511 ], [ 364487.678300000727177, 254670.440099999308586 ], [ 364492.919799998402596, 254665.22239999845624 ], [ 364485.531900003552437, 254652.098499998450279 ], [ 364449.008299998939037, 254683.943599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85690129, "LATITUDE": 18.31979059, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.25695394, "SHAPE_Area": 2333.20057004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366663.178700000047684, 254585.442999999970198 ], [ 366667.719099998474121, 254525.740699999034405 ], [ 366646.715499997138977, 254530.212799999862909 ], [ 366630.583800002932549, 254530.714099999517202 ], [ 366627.351400002837181, 254531.532000001519918 ], [ 366625.193899996578693, 254595.475699998438358 ], [ 366637.329899996519089, 254590.719900000840425 ], [ 366651.875900000333786, 254587.039200000464916 ], [ 366663.178700000047684, 254585.442999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85651144000001, "LATITUDE": 18.31970261, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.827292871, "SHAPE_Area": 2432.94499468 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366723.484200000762939, 254510.9983000010252 ], [ 366715.390500001609325, 254514.520700000226498 ], [ 366711.335500001907349, 254517.231699999421835 ], [ 366696.663699999451637, 254535.687899999320507 ], [ 366695.065399996936321, 254533.986000001430511 ], [ 366697.541900001466274, 254527.251299999654293 ], [ 366697.561700001358986, 254524.929400000721216 ], [ 366695.151799999177456, 254523.854299999773502 ], [ 366691.933700002729893, 254522.983500000089407 ], [ 366683.066100001335144, 254522.69990000128746 ], [ 366675.019100002944469, 254520.734200000762939 ], [ 366667.719099998474121, 254525.740699999034405 ], [ 366663.178700000047684, 254585.442999999970198 ], [ 366675.289599999785423, 254583.642299998551607 ], [ 366684.185999996960163, 254580.548700001090765 ], [ 366689.018500000238419, 254581.221500001847744 ], [ 366692.216700002551079, 254584.414099998772144 ], [ 366723.484200000762939, 254510.9983000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603023500", "MAP": "F9-98-T57", "PARCEL_NAM": "3-12", "ACRE": "0.22", "LONGITUDE": -64.8811749, "LATITUDE": 18.31966619, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.79073218000001, "SHAPE_Area": 875.63291279800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364097.139300003647804, 254511.245600000023842 ], [ 364074.634400002658367, 254502.61769999936223 ], [ 364061.461900003254414, 254534.385000001639128 ], [ 364086.3766999989748, 254544.088100001215935 ], [ 364097.139300003647804, 254511.245600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704023400", "MAP": "B9-100-T64", "PARCEL_NAM": "2Y-9", "ACRE": ".62", "LONGITUDE": -64.85153519000001, "LATITUDE": 18.31952492, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.385273678, "SHAPE_Area": 2455.15433179 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367235.510600000619888, 254513.078099999576807 ], [ 367227.476199999451637, 254509.634799998253584 ], [ 367203.373199999332428, 254499.305100001394749 ], [ 367188.543099999427795, 254536.336199998855591 ], [ 367186.064800001680851, 254543.282000001519918 ], [ 367200.375200003385544, 254567.252700001001358 ], [ 367225.403300002217293, 254563.657800000160933 ], [ 367241.896300002932549, 254520.729699999094009 ], [ 367235.510600000619888, 254513.078099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603023400", "MAP": "F9-3923-T57", "PARCEL_NAM": "3-6", "ACRE": ".24", "LONGITUDE": -64.88078533, "LATITUDE": 18.31945178, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.17730766699999, "SHAPE_Area": 777.93145323099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364138.433799996972084, 254491.318599998950958 ], [ 364120.765100002288818, 254482.941300000995398 ], [ 364116.737099997699261, 254482.486200001090765 ], [ 364114.310999996960163, 254483.310699999332428 ], [ 364111.866899996995926, 254486.245999999344349 ], [ 364104.410499997437, 254509.616399999707937 ], [ 364127.7162000015378, 254518.884100001305342 ], [ 364138.433799996972084, 254491.318599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704023400", "MAP": "B9-100-T64", "PARCEL_NAM": "2Y-8", "ACRE": ".64", "LONGITUDE": -64.85201603, "LATITUDE": 18.31925998, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.976484497, "SHAPE_Area": 2593.1115384499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367196.141500003635883, 254496.290600001811981 ], [ 367155.964400000870228, 254479.707499999552965 ], [ 367150.273400001227856, 254485.149399999529123 ], [ 367142.986000001430511, 254488.678300000727177 ], [ 367117.952600002288818, 254492.906399998813868 ], [ 367106.637199997901917, 254495.980200000107288 ], [ 367105.012000001966953, 254497.444600000977516 ], [ 367104.986900001764297, 254500.399700000882149 ], [ 367106.588699996471405, 254501.679299999028444 ], [ 367129.12049999833107, 254507.141100000590086 ], [ 367144.393700003623962, 254512.75450000166893 ], [ 367188.543099999427795, 254536.336199998855591 ], [ 367203.373199999332428, 254499.305100001394749 ], [ 367196.141500003635883, 254496.290600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704023400", "MAP": "D9-1538-T80", "PARCEL_NAM": "2H-23-C", "ACRE": ".52", "LONGITUDE": -64.85139832, "LATITUDE": 18.31901523, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.44504899399999, "SHAPE_Area": 1774.32768175 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367258.51349999755621, 254463.237199999392033 ], [ 367236.897699996829033, 254444.906199999153614 ], [ 367219.790700003504753, 254465.242300000041723 ], [ 367196.141500003635883, 254496.290600001811981 ], [ 367203.373199999332428, 254499.305100001394749 ], [ 367227.476199999451637, 254509.634799998253584 ], [ 367235.706600002944469, 254490.070500001311302 ], [ 367258.51349999755621, 254463.237199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107603041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87728603, "LATITUDE": 18.31900421, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.001138389, "SHAPE_Area": 728.74155250199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364496.938199996948242, 254435.357700001448393 ], [ 364476.748099997639656, 254438.99210000038147 ], [ 364486.121699996292591, 254474.532499998807907 ], [ 364507.181199997663498, 254463.5168999992311 ], [ 364496.938199996948242, 254435.357700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704023400", "MAP": null, "PARCEL_NAM": "2H-23", "ACRE": null, "LONGITUDE": -64.85163613, "LATITUDE": 18.31874321, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.09131071399997, "SHAPE_Area": 4506.3225728400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367250.772200003266335, 254425.388099998235703 ], [ 367226.735699996352196, 254407.248399998992682 ], [ 367211.514700002968311, 254395.513700000941753 ], [ 367207.418399997055531, 254403.079500000923872 ], [ 367199.25280000269413, 254415.045000001788139 ], [ 367178.90429999679327, 254437.254399999976158 ], [ 367162.517399996519089, 254467.728799998760223 ], [ 367160.854400001466274, 254473.625900000333786 ], [ 367155.964400000870228, 254479.707499999552965 ], [ 367196.141500003635883, 254496.290600001811981 ], [ 367219.790700003504753, 254465.242300000041723 ], [ 367236.897699996829033, 254444.906199999153614 ], [ 367250.772200003266335, 254425.388099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040800", "MAP": null, "PARCEL_NAM": "8-1", "ACRE": null, "LONGITUDE": -64.84284424000001, "LATITUDE": 18.31773726, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 643.00525271900005, "SHAPE_Area": 21875.9804229 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368105.069700002670288, 254478.609600000083447 ], [ 368160.13629999756813, 254451.195900000631809 ], [ 368178.380400002002716, 254392.028000000864267 ], [ 368182.523500002920628, 254378.97410000115633 ], [ 368186.673699997365475, 254365.075899999588728 ], [ 368182.190099999308586, 254323.453699998557568 ], [ 368214.057099997997284, 254274.31870000064373 ], [ 368218.173100002110004, 254264.431000001728535 ], [ 368214.173900000751019, 254260.598499998450279 ], [ 368199.72860000282526, 254252.458799999207258 ], [ 368188.478000000119209, 254247.933699999004602 ], [ 368169.158900000154972, 254243.975900001823902 ], [ 368152.237099997699261, 254242.570900000631809 ], [ 368145.765100002288818, 254245.050999999046326 ], [ 368138.448899999260902, 254251.95719999819994 ], [ 368136.020999997854233, 254252.992800001055002 ], [ 368123.922700002789497, 254253.315999999642372 ], [ 368118.260499998927116, 254255.38060000166297 ], [ 368111.77589999884367, 254259.338300000876188 ], [ 368099.589500002563, 254270.004299998283386 ], [ 368087.365299999713898, 254285.103000000119209 ], [ 368069.466399997472763, 254303.74379999935627 ], [ 368051.518899999558926, 254328.083799999207258 ], [ 368056.072700001299381, 254361.473799999803305 ], [ 368093.76799999922514, 254385.424800001084805 ], [ 368105.069700002670288, 254478.609600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107603084500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88135366, "LATITUDE": 18.31878487, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.262291499, "SHAPE_Area": 897.16424899200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364058.538000002503395, 254404.327399998903275 ], [ 364042.147399999201298, 254435.223999999463558 ], [ 364065.431599996984005, 254447.024700000882149 ], [ 364081.019500002264977, 254415.699400000274181 ], [ 364058.538000002503395, 254404.327399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704023400", "MAP": "C9-231-T79", "PARCEL_NAM": "2H-23-B", "ACRE": ".60", "LONGITUDE": -64.85106705, "LATITUDE": 18.31864723, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.204414485, "SHAPE_Area": 1267.7877662599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367298.380599997937679, 254421.555900000035763 ], [ 367278.237199999392033, 254419.702300000935793 ], [ 367271.720200002193451, 254427.459399998188019 ], [ 367258.898299999535084, 254418.066300000995398 ], [ 367252.374099999666214, 254426.66780000180006 ], [ 367250.772200003266335, 254425.388099998235703 ], [ 367236.897699996829033, 254444.906199999153614 ], [ 367258.51349999755621, 254463.237199999392033 ], [ 367282.945600003004074, 254434.939500000327826 ], [ 367298.380599997937679, 254421.555900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107603084400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88154581000001, "LATITUDE": 18.31869317, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.32701701000001, "SHAPE_Area": 689.84872444300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364024.484099999070168, 254426.213500000536442 ], [ 364042.147399999201298, 254435.223999999463558 ], [ 364058.538000002503395, 254404.327399998903275 ], [ 364040.872900001704693, 254395.528000000864267 ], [ 364024.484099999070168, 254426.213500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84545638, "LATITUDE": 18.3183837, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.91795088200001, "SHAPE_Area": 1395.6136966700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367869.602300003170967, 254384.856699999421835 ], [ 367834.765500001609325, 254403.992199998348951 ], [ 367836.304399996995926, 254412.659600000828505 ], [ 367850.600400000810623, 254438.318900000303984 ], [ 367855.427500002086163, 254439.625 ], [ 367862.689699999988079, 254439.051199998706579 ], [ 367868.36259999871254, 254435.720100000500679 ], [ 367871.625699996948242, 254431.313900001347065 ], [ 367872.539899997413158, 254418.655699998140335 ], [ 367871.130400002002716, 254394.790600001811981 ], [ 367869.602300003170967, 254384.856699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704023400", "MAP": "C9-231-T79", "PARCEL_NAM": "2H-23-A", "ACRE": ".55", "LONGITUDE": -64.8510354, "LATITUDE": 18.31832898, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.26022851299999, "SHAPE_Area": 2566.7296766999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367306.69370000064373, 254392.281899999827147 ], [ 367247.958800002932549, 254377.024599999189377 ], [ 367226.735699996352196, 254407.248399998992682 ], [ 367250.772200003266335, 254425.388099998235703 ], [ 367252.374099999666214, 254426.66780000180006 ], [ 367258.898299999535084, 254418.066300000995398 ], [ 367271.720200002193451, 254427.459399998188019 ], [ 367278.237199999392033, 254419.702300000935793 ], [ 367298.380599997937679, 254421.555900000035763 ], [ 367306.69370000064373, 254392.281899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704023400", "MAP": "A9-24-T64", "PARCEL_NAM": "2H-21", "ACRE": ".44", "LONGITUDE": -64.8506688, "LATITUDE": 18.31793516, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.853506122, "SHAPE_Area": 2114.1468031300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367288.655599996447563, 254332.605900000780821 ], [ 367278.612999998033047, 254375.586800001561642 ], [ 367313.210799999535084, 254384.52479999884963 ], [ 367318.858499996364117, 254384.148800000548363 ], [ 367325.332400001585484, 254381.457600001245737 ], [ 367331.035899996757507, 254374.538199998438358 ], [ 367332.713299997150898, 254366.952500000596046 ], [ 367323.294699996709824, 254336.689100001007318 ], [ 367288.655599996447563, 254332.605900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704023400", "MAP": "A9-24-T64", "PARCEL_NAM": "2D-14", "ACRE": ".38", "LONGITUDE": -64.85110376, "LATITUDE": 18.31785748, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.11656468499999, "SHAPE_Area": 1957.7265446 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367283.821299999952316, 254332.144099999219179 ], [ 367243.538099996745586, 254328.014699999243021 ], [ 367233.659100003540516, 254351.787500001490116 ], [ 367232.0320999994874, 254353.462900001555681 ], [ 367230.378200002014637, 254358.304499998688698 ], [ 367228.749300003051758, 254360.190999999642372 ], [ 367228.720600001513958, 254363.568300001323223 ], [ 367231.128700003027916, 254364.854600001126528 ], [ 367239.994599997997284, 254365.349300000816584 ], [ 367278.612999998033047, 254375.586800001561642 ], [ 367288.655599996447563, 254332.605900000780821 ], [ 367283.821299999952316, 254332.144099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704023400", "MAP": "D9-625-T66", "PARCEL_NAM": "2D-15", "ACRE": ".76", "LONGITUDE": -64.85171837, "LATITUDE": 18.31762303, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.05686444099999, "SHAPE_Area": 3665.24670019 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367218.281700000166893, 254358.416600000113249 ], [ 367227.287799999117851, 254342.447200000286102 ], [ 367229.107199996709824, 254318.186299998313189 ], [ 367227.557499997317791, 254310.785399999469519 ], [ 367224.406000003218651, 254302.104699999094009 ], [ 367218.844499997794628, 254292.348900001496077 ], [ 367217.240900002419949, 254291.280299998819828 ], [ 367214.854299999773502, 254287.461100000888109 ], [ 367192.986800000071526, 254298.681200001388788 ], [ 367159.103699997067451, 254300.514800000935793 ], [ 367159.88120000064373, 254303.898699998855591 ], [ 367159.690600000321865, 254326.272999998182058 ], [ 367157.941299997270107, 254342.30180000141263 ], [ 367177.249600000679493, 254347.526099998503923 ], [ 367218.281700000166893, 254358.416600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704023400", "MAP": "A9-24-T64", "PARCEL_NAM": "2D-A", "ACRE": ".84", "LONGITUDE": -64.8518796, "LATITUDE": 18.3171558, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.98070322699999, "SHAPE_Area": 3176.5791603600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367174.930699996650219, 254241.11600000038743 ], [ 367170.949500001966953, 254235.172800000756979 ], [ 367139.3091000020504, 254257.711899999529123 ], [ 367140.905500002205372, 254259.624800000339746 ], [ 367150.410400003194809, 254279.756499998271465 ], [ 367157.580899998545647, 254289.947700001299381 ], [ 367158.360299997031689, 254293.12049999833107 ], [ 367159.103699997067451, 254300.514800000935793 ], [ 367192.986800000071526, 254298.681200001388788 ], [ 367214.854299999773502, 254287.461100000888109 ], [ 367221.360500000417233, 254280.970499999821186 ], [ 367217.467399999499321, 254264.684399999678135 ], [ 367202.183499999344349, 254260.337400000542402 ], [ 367196.560900002717972, 254257.758299998939037 ], [ 367190.137299999594688, 254254.539299998432398 ], [ 367181.323600001633167, 254247.923300001770258 ], [ 367174.930699996650219, 254241.11600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804020600", "MAP": "D9-2685-T84", "PARCEL_NAM": "7-T", "ACRE": "1.00", "LONGITUDE": -64.8394382, "LATITUDE": 18.31683785, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.50675893300001, "SHAPE_Area": 4299.8656978400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368473.698700003325939, 254275.388199999928474 ], [ 368478.495200000703335, 254280.282699998468161 ], [ 368534.893899999558926, 254285.810499999672174 ], [ 368528.628600001335144, 254264.016600001603365 ], [ 368527.849299997091293, 254260.843800000846386 ], [ 368527.107699997723103, 254253.238400001078844 ], [ 368530.399499997496605, 254245.454799998551607 ], [ 368528.871399998664856, 254235.520899999886751 ], [ 368478.348800003528595, 254202.810100000351667 ], [ 368473.457000002264977, 254209.102899998426437 ], [ 368469.396700002253056, 254212.447200000286102 ], [ 368466.108499996364117, 254219.808499999344349 ], [ 368461.211300000548363, 254226.734499998390675 ], [ 368457.163500003516674, 254228.601199999451637 ], [ 368450.700400002300739, 254230.026000000536442 ], [ 368473.698700003325939, 254275.388199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107803030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84645709, "LATITUDE": 18.31584465, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.957233648, "SHAPE_Area": 2003.2515332299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367787.050599999725819, 254136.357200000435114 ], [ 367789.710500001907349, 254108.092500001192093 ], [ 367702.411200001835823, 254132.920299999415874 ], [ 367742.554200001060963, 254153.513799998909235 ], [ 367787.050599999725819, 254136.357200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107803033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84620419, "LATITUDE": 18.31483939, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 687.13508239199996, "SHAPE_Area": 19712.647169200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367896.353399999439716, 253989.697399999946356 ], [ 367850.758599996566772, 253946.472300000488758 ], [ 367802.394299998879433, 253944.387699998915195 ], [ 367789.469899997115135, 253947.026099998503923 ], [ 367778.134700000286102, 253952.421799998730421 ], [ 367749.725000001490116, 253974.354100000113249 ], [ 367729.452100001275539, 253987.698100000619888 ], [ 367712.384700000286102, 254003.390500001609325 ], [ 367704.233400002121925, 254013.667300000786781 ], [ 367698.494000002741814, 254024.808299999684095 ], [ 367696.865099996328354, 254026.69480000063777 ], [ 367688.63120000064373, 254046.68129999935627 ], [ 367681.181999996304512, 254069.207400001585484 ], [ 367681.163999997079372, 254071.318199999630451 ], [ 367679.524400003254414, 254074.471099998801947 ], [ 367677.855999998748302, 254081.001400001347065 ], [ 367676.140900000929832, 254093.01969999819994 ], [ 367676.882500000298023, 254100.625100001692772 ], [ 367675.064900003373623, 254124.674899999052286 ], [ 367675.833400003612041, 254129.114199999719858 ], [ 367679.841600000858307, 254131.891199998557568 ], [ 367683.066799998283386, 254131.917599998414516 ], [ 367712.979500003159046, 254122.874299999326468 ], [ 367719.976700000464916, 254058.759100001305342 ], [ 367794.943999998271465, 254061.694699998944998 ], [ 367858.624700002372265, 254064.326799999922514 ], [ 367860.442299999296665, 254040.277100000530481 ], [ 367870.351800002157688, 254012.916000001132488 ], [ 367885.020099997520447, 253994.881999999284744 ], [ 367892.327200002968311, 253989.031199999153614 ], [ 367896.353399999439716, 253989.697399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402011200", "MAP": "D9-2559-T84", "PARCEL_NAM": "18-H", "ACRE": null, "LONGITUDE": -64.88951641, "LATITUDE": 18.31371707, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.68933112900001, "SHAPE_Area": 2391.9245805400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363235.844999998807907, 253859.516600001603365 ], [ 363209.524400003254414, 253825.526200000196695 ], [ 363205.458700001239777, 253829.503699999302626 ], [ 363203.855099998414516, 253828.435100000351667 ], [ 363200.631599999964237, 253828.197599999606609 ], [ 363182.018100000917912, 253836.066799998283386 ], [ 363167.464900001883507, 253840.59180000051856 ], [ 363165.792900003492832, 253847.544199999421835 ], [ 363188.371500000357628, 253847.517900001257658 ], [ 363182.462999999523163, 253878.500300001353025 ], [ 363206.533699996769428, 253892.62950000166893 ], [ 363235.844999998807907, 253859.516600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401022000", "MAP": "G9-2516-T76", "PARCEL_NAM": "50-1", "ACRE": null, "LONGITUDE": -64.89519813, "LATITUDE": 18.31349484, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.60824727299999, "SHAPE_Area": 1731.77356947 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362616.231299996376038, 253802.727400001138449 ], [ 362579.074400000274181, 253810.233800001442432 ], [ 362575.766400001943111, 253819.916999999433756 ], [ 362578.898199997842312, 253830.91950000077486 ], [ 362588.582900002598763, 253829.943300001323223 ], [ 362589.335299998521805, 253836.282299999147654 ], [ 362590.04450000077486, 253847.687100000679493 ], [ 362611.784299999475479, 253851.453600000590086 ], [ 362627.901600003242493, 253852.640999998897314 ], [ 362616.231299996376038, 253802.727400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021400", "MAP": "A9-46-T65", "PARCEL_NAM": "53", "ACRE": null, "LONGITUDE": -64.89679114, "LATITUDE": 18.31324001, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.97823024000002, "SHAPE_Area": 3558.3281547400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362383.942900002002716, 253814.327500000596046 ], [ 362411.914399996399879, 253843.846799999475479 ], [ 362423.263700000941753, 253831.545499999076128 ], [ 362489.875799998641014, 253774.03999999910593 ], [ 362485.851400002837181, 253773.16270000115037 ], [ 362471.415100000798702, 253763.967500001192093 ], [ 362462.623000003397465, 253754.818500000983477 ], [ 362383.942900002002716, 253814.327500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603040200", "MAP": "A9-558-T000", "PARCEL_NAM": "26 REM", "ACRE": "0.70", "LONGITUDE": -64.87731211000001, "LATITUDE": 18.32041184, "OBJECTID_1": 38714, "PARCEL_NO_": "107603040200", "Tax_Legal_": "26 EST NADIR RED HOOK QTR", "Name": "KING, DAVID N", "Address": "PO Box 1322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 223800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.782714406, "SHAPE_Area": 2675.2814213699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364514.007799997925758, 254591.792300000786781 ], [ 364502.210900001227856, 254570.89469999819994 ], [ 364497.373099997639656, 254573.627500001341105 ], [ 364452.941100001335144, 254599.785700000822544 ], [ 364475.291799999773502, 254633.907999999821186 ], [ 364479.649499997496605, 254641.649000000208616 ], [ 364485.531900003552437, 254652.098499998450279 ], [ 364493.800999999046326, 254645.201200000941753 ], [ 364502.664599999785423, 254637.660599999129772 ], [ 364512.068199999630451, 254627.022300001233816 ], [ 364502.532300002872944, 254616.229299999773502 ], [ 364503.733199998736382, 254613.672100000083447 ], [ 364514.007799997925758, 254591.792300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603040400", "MAP": "A9-558-T000", "PARCEL_NAM": "24A REM", "ACRE": "0.98", "LONGITUDE": -64.87667179, "LATITUDE": 18.31985211, "OBJECTID_1": 38716, "PARCEL_NO_": "107603040400", "Tax_Legal_": "24A NADIR REDHOOK QTR", "Name": "DONASTORG, ELEANOR", "Address": "PO Box 7782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 103300, "Improved_V": 227400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 374.36421701799998, "SHAPE_Area": 4148.3003368999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364514.007799997925758, 254591.792300000786781 ], [ 364531.414399996399879, 254605.38399999961257 ], [ 364560.12049999833107, 254573.277100000530481 ], [ 364577.911200001835823, 254553.378800000995398 ], [ 364588.188199996948242, 254548.429699998348951 ], [ 364589.528200000524521, 254546.728500001132488 ], [ 364592.775100000202656, 254544.221900001168251 ], [ 364597.666900001466274, 254537.929200001060963 ], [ 364600.197300001978874, 254524.862100001424551 ], [ 364599.4324000030756, 254520.000700000673532 ], [ 364597.832299999892712, 254518.509899999946356 ], [ 364591.491499997675419, 254505.581300001591444 ], [ 364589.891500003635883, 254504.090599998831749 ], [ 364588.313000001013279, 254500.066899999976158 ], [ 364585.121899999678135, 254496.030000001192093 ], [ 364582.943999998271465, 254492.271099999547005 ], [ 364558.887100003659725, 254537.348400000482798 ], [ 364519.783699996769428, 254498.66160000115633 ], [ 364534.68639999628067, 254547.75730000063777 ], [ 364514.007799997925758, 254591.792300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603042400", "MAP": "A9-558-T000", "PARCEL_NAM": "24A-1", "ACRE": "0.11", "LONGITUDE": -64.87666025, "LATITUDE": 18.32016609, "OBJECTID_1": 38735, "PARCEL_NO_": "107603042400", "Tax_Legal_": "24A-1 ESTATE NADIR No.2 RED HOOK QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.35625201799999, "SHAPE_Area": 525.67572468900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364531.414399996399879, 254605.38399999961257 ], [ 364538.789700001478195, 254611.142900001257658 ], [ 364588.188199996948242, 254548.429699998348951 ], [ 364577.911200001835823, 254553.378800000995398 ], [ 364560.12049999833107, 254573.277100000530481 ], [ 364531.414399996399879, 254605.38399999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603040200", "MAP": "A9-558-T000", "PARCEL_NAM": "26C", "ACRE": "0.13", "LONGITUDE": -64.87716877, "LATITUDE": 18.32074266, "OBJECTID_1": 38714, "PARCEL_NO_": "107603040200", "Tax_Legal_": "26 EST NADIR RED HOOK QTR", "Name": "KING, DAVID N", "Address": "PO Box 1322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 223800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.87326954300001, "SHAPE_Area": 485.033346929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364502.664599999785423, 254637.660599999129772 ], [ 364493.800999999046326, 254645.201200000941753 ], [ 364485.531900003552437, 254652.098499998450279 ], [ 364492.919799998402596, 254665.22239999845624 ], [ 364499.877199999988079, 254658.296500001102686 ], [ 364510.458200000226498, 254646.772999998182058 ], [ 364519.51630000025034, 254635.452199999243021 ], [ 364512.068199999630451, 254627.022300001233816 ], [ 364502.664599999785423, 254637.660599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109803010100", "MAP": "D9-8021-T007", "PARCEL_NAM": "C", "ACRE": "11.8", "LONGITUDE": -64.82454833, "LATITUDE": 18.3018674, "OBJECTID_1": 42279, "PARCEL_NO_": "109803010100", "Tax_Legal_": "A,B & C LITTLE ST JAMES ISLAND 6B RED HOOK QTR", "Name": "NAUTILUS INC", "Address": "9053 Estate Thomas", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3220000, "Improved_V": 4093700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1148.52260821, "SHAPE_Area": 54707.935017800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369914.607199996709824, 252557.067200001329184 ], [ 369952.583200000226498, 252571.090500000864267 ], [ 369986.273900002241135, 252591.842300001531839 ], [ 369997.48309999704361, 252601.222199998795986 ], [ 370008.656400002539158, 252614.823600001633167 ], [ 370018.209899999201298, 252629.25620000064373 ], [ 370029.331000000238419, 252648.978900000452995 ], [ 370031.678099997341633, 252657.441799998283386 ], [ 370035.635899998247623, 252666.129099998623133 ], [ 370043.504799999296665, 252688.991599999368191 ], [ 370044.264399997889996, 252694.486200001090765 ], [ 370056.078500002622604, 252727.5135000012815 ], [ 370059.2533999979496, 252733.450100000947714 ], [ 370060.781599998474121, 252743.38399999961257 ], [ 370058.125299997627735, 252771.226599998772144 ], [ 370059.568899996578693, 252791.081199999898672 ], [ 370065.956399999558926, 252798.521800000220537 ], [ 370066.735799998044968, 252801.694600000977516 ], [ 370073.132299996912479, 252808.079700000584126 ], [ 370077.153099998831749, 252809.379200000315905 ], [ 370082.804499998688698, 252808.5810999982059 ], [ 370096.580099999904633, 252800.6722999997437 ], [ 370111.988200001418591, 252790.454799998551607 ], [ 370116.867399998009205, 252785.639600001275539 ], [ 370132.19990000128746, 252784.287399999797344 ], [ 370140.302599996328354, 252779.709699999541044 ], [ 370150.003499999642372, 252776.833799999207258 ], [ 370158.923299998044968, 252770.996100001037121 ], [ 370162.992600001394749, 252766.596500001847744 ], [ 370163.81870000064373, 252764.281199999153614 ], [ 370172.787100002169609, 252752.744500000029802 ], [ 370174.408699996769428, 252751.702300000935793 ], [ 370178.494199998676777, 252745.402899999171495 ], [ 370183.375200003385544, 252740.376600001007318 ], [ 370186.64360000193119, 252735.337099999189377 ], [ 370194.773299999535084, 252727.593199998140335 ], [ 370204.547899998724461, 252716.063000001013279 ], [ 370209.450499996542931, 252708.503800000995398 ], [ 370216.034100003540516, 252692.936799999326468 ], [ 370217.745600000023842, 252681.340599998831749 ], [ 370215.375200003385544, 252675.621700000017881 ], [ 370213.771600000560284, 252674.553100001066923 ], [ 370212.1824000030756, 252671.795899998396635 ], [ 370206.56870000064373, 252668.161299999803305 ], [ 370167.190700002014637, 252652.429200001060963 ], [ 370151.157999999821186, 252641.321100000292063 ], [ 370145.564099997282028, 252635.364700000733137 ], [ 370133.615099996328354, 252618.168400000780821 ], [ 370125.686800003051758, 252602.271499998867512 ], [ 370121.804499998688698, 252584.718899998813868 ], [ 370123.467500001192093, 252578.821899998933077 ], [ 370125.931400001049042, 252573.564699999988079 ], [ 370131.640299998223782, 252566.012099999934435 ], [ 370155.996899999678135, 252546.579700000584126 ], [ 370160.076999999582767, 252540.913600001484156 ], [ 370160.910300001502037, 252537.754000000655651 ], [ 370162.539099998772144, 252535.867499999701977 ], [ 370168.350500002503395, 252516.283399999141693 ], [ 370187.79730000346899, 252505.254599999636412 ], [ 370191.87389999628067, 252500.010600000619888 ], [ 370193.516999997198582, 252496.435499999672174 ], [ 370194.440200001001358, 252482.721900001168251 ], [ 370192.86540000140667, 252478.276099998503923 ], [ 370191.26349999755621, 252476.996399998664856 ], [ 370189.683300003409386, 252473.183800000697374 ], [ 370188.083200000226498, 252471.692999999970198 ], [ 370185.743400000035763, 252462.385800000280142 ], [ 370185.546099998056889, 252459.144900001585484 ], [ 369992.295800000429153, 252460.500999998301268 ], [ 369914.607199996709824, 252557.067200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109803010100", "MAP": "D9-8021-T007", "PARCEL_NAM": "B", "ACRE": "23", "LONGITUDE": -64.82344966, "LATITUDE": 18.29875953, "OBJECTID_1": 42279, "PARCEL_NO_": "109803010100", "Tax_Legal_": "A,B & C LITTLE ST JAMES ISLAND 6B RED HOOK QTR", "Name": "NAUTILUS INC", "Address": "9053 Estate Thomas", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3220000, "Improved_V": 4093700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1582.95139178, "SHAPE_Area": 107832.75860299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370265.032899998128414, 252336.589699998497963 ], [ 370280.392399996519089, 252332.071299999952316 ], [ 370288.448299996554852, 252332.981600001454353 ], [ 370292.495999999344349, 252331.114900000393391 ], [ 370296.529399998486042, 252330.936799999326468 ], [ 370302.954700000584126, 252333.944699998944998 ], [ 370310.195299997925758, 252335.903799999505281 ], [ 370318.253100000321865, 252336.603100001811981 ], [ 370331.987400002777576, 252333.549100000411272 ], [ 370337.651299998164177, 252331.273400001227856 ], [ 370354.689999997615814, 252318.958299998193979 ], [ 370355.514300003647804, 252316.854200001806021 ], [ 370359.585400000214577, 252312.243400000035763 ], [ 370362.891599997878075, 252302.771299999207258 ], [ 370365.414800003170967, 252290.548500001430511 ], [ 370366.420699998736382, 252267.125300001353025 ], [ 370368.119599997997284, 252257.006799999624491 ], [ 370372.287900000810623, 252240.997800000011921 ], [ 370376.414700001478195, 252229.843600001186132 ], [ 370388.674900002777576, 252210.523299999535084 ], [ 370390.298299998044968, 252209.269999999552965 ], [ 370404.997100003063679, 252187.647700000554323 ], [ 370411.499799996614456, 252181.579199999570847 ], [ 370415.579899996519089, 252175.913100000470877 ], [ 370419.643799997866154, 252172.146699998527765 ], [ 370435.145400002598763, 252150.953099999576807 ], [ 370435.976800002157688, 252148.004599999636412 ], [ 370438.424599997699261, 252144.647100001573563 ], [ 370442.572999998927116, 252130.96000000089407 ], [ 370444.266500003635883, 252121.474599998444319 ], [ 370442.957800000905991, 252085.789099998772144 ], [ 370427.088699996471405, 252055.472899999469519 ], [ 370407.0675999969244, 252039.265900000929832 ], [ 370375.650100000202656, 252035.63120000064373 ], [ 370337.694099999964237, 252042.286699999123812 ], [ 370319.001500003039837, 252059.443399999290705 ], [ 370308.359399996697903, 252078.1435999982059 ], [ 370301.790899999439716, 252082.784299999475479 ], [ 370296.384400002658367, 252083.210900001227856 ], [ 370291.886500000953674, 252080.035900000482798 ], [ 370288.711499996483326, 252073.685899998992682 ], [ 370284.478200003504753, 252066.806699998676777 ], [ 370278.392700001597404, 252061.515000000596046 ], [ 370273.365599997341633, 252060.192099999636412 ], [ 370268.603100001811981, 252060.192099999636412 ], [ 370263.840599998831749, 252065.219200000166893 ], [ 370264.634400002658367, 252072.098400000482798 ], [ 370266.48650000244379, 252077.654599998146296 ], [ 370265.957299999892712, 252082.417100001126528 ], [ 370263.046899996697903, 252088.502599999308586 ], [ 370259.871899999678135, 252095.117199998348951 ], [ 370258.54900000244379, 252106.229699999094009 ], [ 370258.54900000244379, 252112.579700000584126 ], [ 370260.930200003087521, 252120.781800001859665 ], [ 370263.311499997973442, 252127.131799999624491 ], [ 370267.015600003302097, 252131.629700001329184 ], [ 370271.513599999248981, 252135.863099999725819 ], [ 370272.836499996483326, 252142.742300000041723 ], [ 370272.571900002658367, 252149.092300001531839 ], [ 370268.603100001811981, 252154.11939999833703 ], [ 370265.163500003516674, 252159.146499998867512 ], [ 370261.723999999463558, 252163.379799999296665 ], [ 370258.408299997448921, 252167.660599999129772 ], [ 370236.596500001847744, 252172.337200000882149 ], [ 370226.146799996495247, 252168.451999999582767 ], [ 370215.711499996483326, 252162.878199998289347 ], [ 370210.078100003302097, 252161.565499998629093 ], [ 370201.203299999237061, 252162.126200001686811 ], [ 370193.186899997293949, 252156.57209999859333 ], [ 370185.949799999594688, 252154.190900001674891 ], [ 370184.358800001442432, 252151.64469999819994 ], [ 370181.153300002217293, 252149.296500001102686 ], [ 370174.718999996781349, 252147.344000000506639 ], [ 370169.879299998283386, 252147.515399999916553 ], [ 370165.0253000035882, 252149.375599998980761 ], [ 370144.059399999678135, 252149.415100000798702 ], [ 370136.773800000548363, 252152.732900001108646 ], [ 370132.708099998533726, 252156.710400000214577 ], [ 370127.758699998259544, 252169.757699999958277 ], [ 370110.655299998819828, 252189.671599999070168 ], [ 370105.790500000119209, 252192.798200000077486 ], [ 370094.453500002622604, 252198.404899999499321 ], [ 370083.127400003373623, 252202.745200000703335 ], [ 370070.193999998271465, 252206.438999999314547 ], [ 370054.040799997746944, 252209.473200000822544 ], [ 370045.948899999260902, 252212.784499999135733 ], [ 370039.464199997484684, 252216.742199998348951 ], [ 370034.615599997341633, 252217.969099998474121 ], [ 370026.518299996852875, 252221.913600001484156 ], [ 370014.331900000572205, 252232.579599998891354 ], [ 370007.848999999463558, 252236.326200000941753 ], [ 370004.591399997472763, 252240.099300000816584 ], [ 370002.161700002849102, 252241.345899999141693 ], [ 369998.126500003039837, 252241.735100001096725 ], [ 369987.442199997603893, 252241.282699998468161 ], [ 369992.295800000429153, 252460.500999998301268 ], [ 370185.546099998056889, 252459.144900001585484 ], [ 370185.035999998450279, 252450.769799999892712 ], [ 370188.381700001657009, 252436.653999999165535 ], [ 370190.836599998176098, 252432.452199999243021 ], [ 370190.854599997401237, 252430.341400001198053 ], [ 370194.13740000128746, 252423.613299999386072 ], [ 370199.018500000238419, 252418.587000001221895 ], [ 370204.748999997973442, 252408.501400001347065 ], [ 370206.374200001358986, 252407.037000000476837 ], [ 370208.026399999856949, 252402.406500000506639 ], [ 370210.47410000115633, 252399.0489999987185 ], [ 370215.425200000405312, 252385.790699999779463 ], [ 370223.562100000679493, 252377.202399998903275 ], [ 370224.38459999859333, 252375.309300001710653 ], [ 370226.00620000064373, 252374.267099998891354 ], [ 370235.786200001835823, 252362.103700000792742 ], [ 370238.257299996912479, 252356.002199999988079 ], [ 370242.335600003600121, 252350.547200001776218 ], [ 370247.211300000548363, 252346.154100000858307 ], [ 370265.032899998128414, 252336.589699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109803010100", "MAP": "D9-8021-T007", "PARCEL_NAM": "A", "ACRE": "36.7", "LONGITUDE": -64.82740487, "LATITUDE": 18.29962558, "OBJECTID_1": 42279, "PARCEL_NO_": "109803010100", "Tax_Legal_": "A,B & C LITTLE ST JAMES ISLAND 6B RED HOOK QTR", "Name": "NAUTILUS INC", "Address": "9053 Estate Thomas", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3220000, "Improved_V": 4093700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1528.5526375500001, "SHAPE_Area": 145104.565841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369589.897900000214577, 252171.266199998557568 ], [ 369591.226400002837181, 252204.629900000989437 ], [ 369596.764499999582767, 252217.129700001329184 ], [ 369599.156499996781349, 252220.315699998289347 ], [ 369603.038800001144409, 252237.868200000375509 ], [ 369604.32599999755621, 252276.08669999986887 ], [ 369607.412699997425079, 252292.366200000047684 ], [ 369609.009199999272823, 252294.279100000858307 ], [ 369618.487099997699261, 252317.576900001615286 ], [ 369630.380400002002716, 252341.316700000315905 ], [ 369637.446599997580051, 252363.750500001013279 ], [ 369637.41610000282526, 252367.338799998164177 ], [ 369638.976499997079372, 252373.473299998790026 ], [ 369638.789499998092651, 252395.425500001758337 ], [ 369629.653999999165535, 252426.592599999159575 ], [ 369622.231700003147125, 252445.952500000596046 ], [ 369621.317500002682209, 252458.610599998384714 ], [ 369618.763700000941753, 252474.421700000762939 ], [ 369614.586499996483326, 252491.486099999397993 ], [ 369612.102799996733665, 252499.065099999308586 ], [ 369603.929999999701977, 252511.875 ], [ 369602.28320000320673, 252515.872299998998642 ], [ 369602.200499996542931, 252525.581900000572205 ], [ 369625.326399996876717, 252555.957499999552965 ], [ 369629.327399998903275, 252559.578899998217821 ], [ 369633.3445999994874, 252561.300500001758337 ], [ 369649.476199999451637, 252560.799199998378754 ], [ 369653.502400003373623, 252561.465500000864267 ], [ 369667.922499999403954, 252572.560400001704693 ], [ 369683.971400000154972, 252581.768699999898672 ], [ 369691.215700000524521, 252583.305700000375509 ], [ 369701.703100003302097, 252582.758200000971556 ], [ 369723.532899998128414, 252575.970800001174212 ], [ 369765.545699998736382, 252566.393300000578165 ], [ 369767.979000002145767, 252564.724399998784065 ], [ 369796.284400001168251, 252555.034699998795986 ], [ 369805.960199996829033, 252555.113899998366833 ], [ 369830.185500003397465, 252551.090300001204014 ], [ 369845.519900001585484, 252549.527100000530481 ], [ 369874.547100000083447, 252549.764600001275539 ], [ 369897.905000001192093, 252552.911100000143051 ], [ 369913.99889999628067, 252556.842500001192093 ], [ 369914.607199996709824, 252557.067200001329184 ], [ 369992.295800000429153, 252460.500999998301268 ], [ 369987.442199997603893, 252241.282699998468161 ], [ 369979.58669999986887, 252240.950100000947714 ], [ 369955.438699997961521, 252235.897300001233816 ], [ 369940.959299996495247, 252231.76799999922514 ], [ 369936.141199998557568, 252229.406500000506639 ], [ 369923.322899997234344, 252219.591299999505281 ], [ 369900.846799999475479, 252207.586100000888109 ], [ 369891.196299999952316, 252204.55180000141263 ], [ 369871.857299998402596, 252202.915899999439716 ], [ 369861.335699997842312, 252207.473900001496077 ], [ 369857.304200001060963, 252207.440900001674891 ], [ 369854.100500002503395, 252204.881499998271465 ], [ 369850.947200000286102, 252196.412000000476837 ], [ 369842.98650000244379, 252184.314500000327826 ], [ 369838.992700003087521, 252179.848799999803305 ], [ 369825.337600000202656, 252173.615299999713898 ], [ 369822.141099996864796, 252170.21169999986887 ], [ 369821.35639999806881, 252167.672100000083447 ], [ 369818.953599996864796, 252165.752599999308586 ], [ 369802.08219999819994, 252158.437399998307228 ], [ 369787.649499997496605, 252148.820000000298023 ], [ 369779.606100000441074, 252146.432199999690056 ], [ 369772.387100003659725, 252141.940099999308586 ], [ 369765.952799998223782, 252139.98759999871254 ], [ 369746.694799996912479, 252128.853100001811981 ], [ 369730.595499999821186, 252125.554999999701977 ], [ 369710.523999996483326, 252115.258200000971556 ], [ 369697.66610000282526, 252110.08669999986887 ], [ 369693.640000000596046, 252109.420499999076128 ], [ 369642.037799999117851, 252108.787099998444319 ], [ 369636.382799997925758, 252110.00730000063777 ], [ 369631.523400001227856, 252112.500700000673532 ], [ 369626.649499997496605, 252116.682700000703335 ], [ 369623.381099998950958, 252121.722199998795986 ], [ 369619.265000000596046, 252131.609900001436472 ], [ 369609.484999999403954, 252143.773299999535084 ], [ 369600.55799999833107, 252150.455200001597404 ], [ 369596.474299997091293, 252156.543499998748302 ], [ 369592.410400003194809, 252160.309900000691414 ], [ 369590.77080000191927, 252163.462900001555681 ], [ 369589.897900000214577, 252171.266199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107702020100", "MAP": "A9-720-T007", "PARCEL_NAM": "REM 17", "ACRE": "47.436", "LONGITUDE": -64.85445328, "LATITUDE": 18.33026502, "OBJECTID_1": 39542, "PARCEL_NO_": "107702020100", "Tax_Legal_": "*17 REM SMITH BAY NO.1,2&3 RED HOOK QTR", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 1759800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2521.3885434, "SHAPE_Area": 205227.18368700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366435.154899999499321, 255605.691700000315905 ], [ 366463.136699996888638, 255633.996199999004602 ], [ 366471.118900001049042, 255643.560699999332428 ], [ 366495.923900000751019, 255666.139699999243021 ], [ 366512.728799998760223, 255681.264800000935793 ], [ 366550.3378000035882, 255715.347600001841784 ], [ 366574.327600002288818, 255738.975400000810623 ], [ 366579.9358000010252, 255743.243099998682737 ], [ 366595.936200000345707, 255758.150600001215935 ], [ 366597.539800003170967, 255759.219200000166893 ], [ 366628.743199996650219, 255787.972199998795986 ], [ 366658.346600003540516, 255815.234499998390675 ], [ 366683.149899996817112, 255838.024500001221895 ], [ 366695.932199999690056, 255852.061299998313189 ], [ 366759.035700000822544, 255922.449700001627207 ], [ 366784.630900003015995, 255946.934999998658895 ], [ 366815.821800000965595, 255977.165600001811981 ], [ 366823.821999996900558, 255984.619300000369549 ], [ 366876.621399998664856, 256034.025199998170137 ], [ 366901.413900002837181, 256058.081599999219179 ], [ 366920.608999997377396, 256076.603900000452995 ], [ 366935.804799996316433, 256091.293699998408556 ], [ 366978.993199996650219, 256133.021499998867512 ], [ 366990.59570000320673, 256122.733600001782179 ], [ 366834.319300003349781, 255976.97580000013113 ], [ 367010.889200001955032, 255842.559999998658895 ], [ 367059.406099997460842, 255821.085299998521805 ], [ 367124.625600002706051, 255816.313200000673532 ], [ 367204.161499999463558, 255771.772999998182058 ], [ 367238.362000003457069, 255704.962799999862909 ], [ 367254.269199997186661, 255687.464899998158216 ], [ 367287.674300000071526, 255667.580899998545647 ], [ 367274.153200000524521, 255564.184200000017881 ], [ 367278.130000002682209, 255549.072399999946356 ], [ 367277.090599998831749, 255548.414099998772144 ], [ 367196.808300003409386, 255553.874800000339746 ], [ 367133.068300001323223, 255558.208200000226498 ], [ 367083.850900001823902, 255561.605099998414516 ], [ 367053.997500002384186, 255563.682799998670816 ], [ 367020.917099997401237, 255565.945199999958277 ], [ 366809.526600003242493, 255580.258099999278784 ], [ 366618.306500002741814, 255593.258499998599291 ], [ 366435.154899999499321, 255605.691700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87268216, "LATITUDE": 18.32519385, "OBJECTID_1": 38338, "PARCEL_NO_": "107602015000", "Tax_Legal_": "2-50 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "MERRIFIELD, ASHTON & JULIETTE", "Address": "PO Box 307261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33500, "Improved_V": 236500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 377.991543643, "SHAPE_Area": 1405.0975827300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364909.417499996721745, 255142.730599999427795 ], [ 364913.564499996602535, 255163.488099999725819 ], [ 364921.516800001263618, 255171.90819999948144 ], [ 364934.614900000393391, 255176.586100000888109 ], [ 364950.05179999768734, 255175.182700000703335 ], [ 364972.505599997937679, 255164.423599999397993 ], [ 364993.555900000035763, 255153.664500001817942 ], [ 365005.718400001525879, 255136.356499999761581 ], [ 365010.864000000059605, 255114.838300000876188 ], [ 365014.606299996376038, 255102.675799999386072 ], [ 365030.511100001633167, 255088.642200000584126 ], [ 365034.830600000917912, 255085.09569999948144 ], [ 365022.706699997186661, 255082.605599999427795 ], [ 365007.589500002563, 255100.804699998348951 ], [ 365001.508299998939037, 255124.661800000816584 ], [ 364995.894900001585484, 255139.163199998438358 ], [ 364983.264600001275539, 255150.857799999415874 ], [ 364958.472000002861023, 255163.020300000905991 ], [ 364943.970600001513958, 255168.165899999439716 ], [ 364927.598099999129772, 255164.891399998217821 ], [ 364920.581299997866154, 255156.939100001007318 ], [ 364918.261699996888638, 255145.758299998939037 ], [ 364909.417499996721745, 255142.730599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602015500", "MAP": "D9-6744-T000", "PARCEL_NAM": "2-40", "ACRE": "0.408", "LONGITUDE": -64.8734618, "LATITUDE": 18.32475569, "OBJECTID_1": 38343, "PARCEL_NO_": "107602015500", "Tax_Legal_": "2-40 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "CELESTINE, JONES", "Address": "PO Box 304307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.87122530600001, "SHAPE_Area": 2433.7001890500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364872.272399999201298, 255054.189500000327826 ], [ 364870.683200001716614, 255051.432300001382828 ], [ 364867.332000002264977, 255066.181400001049042 ], [ 364865.696000002324581, 255068.912200000137091 ], [ 364861.737099997699261, 255080.1064000017941 ], [ 364879.013899996876717, 255086.497499998658895 ], [ 364875.7483000010252, 255119.445900000631809 ], [ 364882.940399996936321, 255127.104100000113249 ], [ 364909.497500002384186, 255133.339600000530481 ], [ 364909.651199996471405, 255115.290399998426437 ], [ 364913.095799997448921, 255089.565200001001358 ], [ 364910.979999996721745, 255084.075199998915195 ], [ 364899.563000001013279, 255068.978300001472235 ], [ 364896.043200001120567, 255066.244199998676777 ], [ 364889.950199998915195, 255061.511399999260902 ], [ 364886.901299998164177, 255059.88289999961853 ], [ 364882.725699998438358, 255057.65260000154376 ], [ 364877.605999998748302, 255055.956500001251698 ], [ 364872.272399999201298, 255054.189500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602015800", "MAP": "D9-7058-T002", "PARCEL_NAM": "2-43", "ACRE": ".321", "LONGITUDE": -64.87289244, "LATITUDE": 18.32563329, "OBJECTID_1": 38346, "PARCEL_NO_": "107602015800", "Tax_Legal_": "#2-43 ESTATE MARIENDAHL RED HOOK QTR.", "Name": "MARTIN, MALCOLM", "Address": "PO Box 4103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 125500, "Improved_V": 52500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.13125247299999, "SHAPE_Area": 1534.0044147900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364924.33500000089407, 255207.07039999961853 ], [ 364955.197499997913837, 255210.266699999570847 ], [ 364976.247800000011921, 255200.443199999630451 ], [ 364965.258000001311302, 255167.89640000090003 ], [ 364950.05179999768734, 255175.182700000703335 ], [ 364934.614900000393391, 255176.586100000888109 ], [ 364926.712200000882149, 255173.763700000941753 ], [ 364927.130300000309944, 255205.120999999344349 ], [ 364924.33500000089407, 255207.07039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87255382, "LATITUDE": 18.32569272, "OBJECTID_1": 38338, "PARCEL_NO_": "107602015000", "Tax_Legal_": "2-50 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "MERRIFIELD, ASHTON & JULIETTE", "Address": "PO Box 307261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33500, "Improved_V": 236500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 311.04223529500001, "SHAPE_Area": 1127.7148009099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364944.438400000333786, 255251.43189999833703 ], [ 364959.407499998807907, 255251.43189999833703 ], [ 364958.939699999988079, 255243.011700000613928 ], [ 364958.939699999988079, 255238.801699999719858 ], [ 364967.359899997711182, 255230.381499998271465 ], [ 364970.634400002658367, 255221.961399998515844 ], [ 364970.634400002658367, 255215.880100000649691 ], [ 364978.586800001561642, 255206.524399999529123 ], [ 364991.217000000178814, 255204.185499999672174 ], [ 365006.186200000345707, 255193.426399998366833 ], [ 365013.670800000429153, 255179.860599998384714 ], [ 365018.816399998962879, 255170.037099998444319 ], [ 365018.816399998962879, 255159.745799999684095 ], [ 365011.331799998879433, 255151.793400000780821 ], [ 365000.880000002682209, 255143.241900000721216 ], [ 364993.555900000035763, 255153.664500001817942 ], [ 365009.92849999666214, 255162.552499998360872 ], [ 365011.331799998879433, 255169.569299999624491 ], [ 365008.057300001382828, 255176.586100000888109 ], [ 365001.508299998939037, 255188.280699998140335 ], [ 364989.81360000371933, 255198.104299999773502 ], [ 364976.247800000011921, 255200.443199999630451 ], [ 364964.085400000214577, 255210.734499998390675 ], [ 364963.617600001394749, 255219.622400000691414 ], [ 364960.810900002717972, 255226.171399999409914 ], [ 364950.987400002777576, 255235.059399999678135 ], [ 364944.438400000333786, 255251.43189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602015900", "MAP": "D9-8302-T009", "PARCEL_NAM": "REM 2", "ACRE": "1.354", "LONGITUDE": -64.87278029, "LATITUDE": 18.32610428, "OBJECTID_1": 38347, "PARCEL_NO_": "107602015900", "Tax_Legal_": "2 REM ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "FRANCIS, ALBERT", "Address": "394-36 Hidden Vly", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 162700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 568.81144717999996, "SHAPE_Area": 8082.8027027400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365032.533299997448921, 255173.080299999564886 ], [ 365018.816399998962879, 255165.464899998158216 ], [ 365018.816399998962879, 255170.037099998444319 ], [ 365013.670800000429153, 255179.860599998384714 ], [ 365006.186200000345707, 255193.426399998366833 ], [ 364991.217000000178814, 255204.185499999672174 ], [ 364978.586800001561642, 255206.524399999529123 ], [ 364970.634400002658367, 255215.880100000649691 ], [ 364970.634400002658367, 255221.961399998515844 ], [ 364967.359899997711182, 255230.381499998271465 ], [ 364958.939699999988079, 255238.801699999719858 ], [ 364958.939699999988079, 255243.011700000613928 ], [ 364959.407499998807907, 255251.43189999833703 ], [ 364944.438400000333786, 255251.43189999833703 ], [ 364950.987400002777576, 255235.059399999678135 ], [ 364960.810900002717972, 255226.171399999409914 ], [ 364963.617600001394749, 255219.622400000691414 ], [ 364964.085400000214577, 255210.734499998390675 ], [ 364976.247800000011921, 255200.443199999630451 ], [ 364955.197499997913837, 255210.266699999570847 ], [ 364924.33500000089407, 255207.07039999961853 ], [ 364900.762000001966953, 255223.509500000625849 ], [ 364904.623499996960163, 255232.195099998265505 ], [ 364904.569499999284744, 255238.527399998158216 ], [ 364905.280500002205372, 255249.721200000494719 ], [ 364901.927599996328354, 255264.681400001049042 ], [ 364910.748499996960163, 255270.453099999576807 ], [ 364930.794799998402596, 255283.704999998211861 ], [ 364972.48929999768734, 255311.488400001078844 ], [ 364974.951399996876717, 255306.442299999296665 ], [ 365032.533299997448921, 255173.080299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602013600", "MAP": "D9-7114-T002", "PARCEL_NAM": "2-51", "ACRE": "0.24", "LONGITUDE": -64.87211527, "LATITUDE": 18.3249626, "OBJECTID_1": 38330, "PARCEL_NO_": "107602013600", "Tax_Legal_": "2-51 MARIENDAHL NO.4 REDHOOK QTR", "Name": "LEWIS, HUBERT E. & THELCA M.", "Address": "PO Box 502191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052191, "Country": "United States", "Land_Value": 28700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.91324952299999, "SHAPE_Area": 1112.3486113199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365060.352300003170967, 255109.213199999183416 ], [ 365014.606299996376038, 255102.675799999386072 ], [ 365010.864000000059605, 255114.838300000876188 ], [ 365008.36370000243187, 255125.294399999082088 ], [ 365007.366099998354912, 255129.465799998492002 ], [ 365051.085100002586842, 255130.488899998366833 ], [ 365052.924199998378754, 255126.266699999570847 ], [ 365060.352300003170967, 255109.213199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87247556, "LATITUDE": 18.3246788, "OBJECTID_1": 38342, "PARCEL_NO_": "107602015400", "Tax_Legal_": "MARIENDAHL ESTATE 2-38 No.4 RED HOOK QTR.", "Name": "BASSUE, FLOYD & EDITH", "Address": "P.O. BOX 4315", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45900, "Improved_V": 60100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.59162546900001, "SHAPE_Area": 836.509268163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364969.137299999594688, 255087.521200001239777 ], [ 365007.589500002563, 255100.804699998348951 ], [ 365022.706699997186661, 255082.605599999427795 ], [ 364974.182599999010563, 255072.639299999922514 ], [ 364969.137299999594688, 255087.521200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87256536, "LATITUDE": 18.32485938, "OBJECTID_1": 38341, "PARCEL_NO_": "107602015300", "Tax_Legal_": "2-37 ESTATE MARIENDAHL #3 RED HOOK QTR", "Name": "TAVERNIER, PETER & SANDRA", "Address": "PO Box 9515", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23200, "Improved_V": 266200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.68356513500001, "SHAPE_Area": 1005.5414546 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364961.499600000679493, 255110.049899999052286 ], [ 365001.508299998939037, 255124.661800000816584 ], [ 365007.589500002563, 255100.804699998348951 ], [ 364969.137299999594688, 255087.521200001239777 ], [ 364961.499600000679493, 255110.049899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87261624, "LATITUDE": 18.32506907, "OBJECTID_1": 38328, "PARCEL_NO_": "107602013400", "Tax_Legal_": "MARIENDAHL ESTATE 2-36 No.4 RED HOOK QTR.", "Name": "GREENAWAY, LEO & REGISTE, CHRISTAL", "Address": "PO Box 502184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28700, "Improved_V": 139400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.985472182, "SHAPE_Area": 935.740048516 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364957.480800002813339, 255121.904100000858307 ], [ 364982.848300002515316, 255151.062100000679493 ], [ 364983.264600001275539, 255150.857799999415874 ], [ 364995.894900001585484, 255139.163199998438358 ], [ 365001.508299998939037, 255124.661800000816584 ], [ 364961.499600000679493, 255110.049899999052286 ], [ 364957.480800002813339, 255121.904100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87282719, "LATITUDE": 18.32525713, "OBJECTID_1": 38339, "PARCEL_NO_": "107602015100", "Tax_Legal_": "2-35 ESTATE MARIENDAHL 4 REDHOOK QTR", "Name": "BREDY, FLORES & LINOUZE", "Address": "PO Box 307572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 191500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.032476038, "SHAPE_Area": 1046.1105779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364927.987899996340275, 255164.969399999827147 ], [ 364943.970600001513958, 255168.165899999439716 ], [ 364958.472000002861023, 255163.020300000905991 ], [ 364982.848300002515316, 255151.062100000679493 ], [ 364957.480800002813339, 255121.904100000858307 ], [ 364950.519599996507168, 255142.437699999660254 ], [ 364927.987899996340275, 255164.969399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87292386, "LATITUDE": 18.32462122, "OBJECTID_1": 38324, "PARCEL_NO_": "107602013000", "Tax_Legal_": "MARIENDAHL ESTATE 2-32 No.4 RED HOOK QTR.", "Name": "BREDY, FRITZNOL, RUDY & CHRISTINE", "Address": "P O OX 503201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39400, "Improved_V": 245500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.788211198, "SHAPE_Area": 1102.84339219 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364928.956500001251698, 255063.370400000363588 ], [ 364922.407499998807907, 255079.245400000363588 ], [ 364920.482400000095367, 255085.919199999421835 ], [ 364966.643500000238419, 255094.877199999988079 ], [ 364974.182599999010563, 255072.639299999922514 ], [ 364967.278800003230572, 255071.2212999984622 ], [ 364928.956500001251698, 255063.370400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87304651, "LATITUDE": 18.32511244, "OBJECTID_1": 38326, "PARCEL_NO_": "107602013200", "Tax_Legal_": "MARIENDAHL 2-34 RED HOOK QTR.", "Name": "BEAUSOLEIL, MICHAEL", "Address": "PO Box 12325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.69193338400001, "SHAPE_Area": 1475.5088598499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364917.092299997806549, 255104.727899998426437 ], [ 364918.533299997448921, 255113.885400000959635 ], [ 364919.262199997901917, 255122.968400001525879 ], [ 364918.261699996888638, 255145.758299998939037 ], [ 364920.581299997866154, 255156.939100001007318 ], [ 364927.598099999129772, 255164.891399998217821 ], [ 364927.987899996340275, 255164.969399999827147 ], [ 364950.519599996507168, 255142.437699999660254 ], [ 364957.701399996876717, 255121.253600001335144 ], [ 364917.092299997806549, 255104.727899998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87297454, "LATITUDE": 18.32482692, "OBJECTID_1": 38327, "PARCEL_NO_": "107602013300", "Tax_Legal_": "MARIENDAHL ESTATE 2-33 No.4 RED HOOK QTR.", "Name": "ALEXIS D JOSPEH and JERELYN WILLIAMS", "Address": "PO Box 9647", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.85882069300001, "SHAPE_Area": 1063.1575772399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364920.482400000095367, 255085.919199999421835 ], [ 364919.232500001788139, 255090.252099998295307 ], [ 364917.092299997806549, 255104.727899998426437 ], [ 364957.701399996876717, 255121.253600001335144 ], [ 364966.643500000238419, 255094.877199999988079 ], [ 364920.482400000095367, 255085.919199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602013800", "MAP": "D9-6744-T000", "PARCEL_NAM": "2-41", "ACRE": "0.314", "LONGITUDE": -64.87345637, "LATITUDE": 18.32532818, "OBJECTID_1": 38332, "PARCEL_NO_": "107602013800", "Tax_Legal_": "MARIENDAHL ESTATE 2-41 No.4 RED HOOK QTR.", "Name": "ESPRIT, ERIC B. & ROSELLA L.", "Address": "6027 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.132082653, "SHAPE_Area": 2019.6898996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364861.776699997484684, 255150.362300001084805 ], [ 364876.063799999654293, 255177.076999999582767 ], [ 364881.429499998688698, 255191.355399999767542 ], [ 364916.80460000038147, 255166.918800000101328 ], [ 364913.564499996602535, 255163.488099999725819 ], [ 364909.417499996721745, 255142.730599999427795 ], [ 364909.497500002384186, 255133.339600000530481 ], [ 364882.940399996936321, 255127.104100000113249 ], [ 364871.470399998128414, 255148.330699998885393 ], [ 364861.776699997484684, 255150.362300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602015700", "MAP": "D9-6744-T000", "PARCEL_NAM": "2-42", "ACRE": "0.311", "LONGITUDE": -64.87329205, "LATITUDE": 18.32566904, "OBJECTID_1": 38345, "PARCEL_NO_": "107602015700", "Tax_Legal_": "MARIENDAHL ESTATE 2-42 No.4 RED HOOK QTR", "Name": "LUKE, ROSELLA", "Address": "6027 FRYDENJOH", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.60988561400001, "SHAPE_Area": 1580.15845145 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364881.429499998688698, 255191.355399999767542 ], [ 364884.737199999392033, 255200.157200001180172 ], [ 364900.667400002479553, 255223.296799998730421 ], [ 364900.762000001966953, 255223.509500000625849 ], [ 364927.130300000309944, 255205.120999999344349 ], [ 364926.712200000882149, 255173.763700000941753 ], [ 364921.516800001263618, 255171.90819999948144 ], [ 364916.80460000038147, 255166.918800000101328 ], [ 364881.429499998688698, 255191.355399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603070600", "MAP": "C9-146-72", "PARCEL_NAM": "13 REM", "ACRE": ".24", "LONGITUDE": -64.87428986, "LATITUDE": 18.31963364, "OBJECTID_1": 38849, "PARCEL_NO_": "107603070600", "Tax_Legal_": "NADIR ESTATE 13 REM. No.2 RED HOOK QTR.", "Name": "LEONARD, RUDELL & MERIEL (LIFE ESTATE)", "Address": "6428 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31100, "Improved_V": 116000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.52934282300001, "SHAPE_Area": 931.05901903899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364785.276100002229214, 254536.986699998378754 ], [ 364828.568199999630451, 254540.9510000012815 ], [ 364826.690200001001358, 254536.214999999850988 ], [ 364825.095600001513958, 254534.091099999845028 ], [ 364818.054499998688698, 254508.702199999243021 ], [ 364816.465300001204014, 254505.945000000298023 ], [ 364813.250799998641014, 254504.652100000530481 ], [ 364804.331000000238419, 254510.489700000733137 ], [ 364792.956299997866154, 254520.529100000858307 ], [ 364788.060900002717972, 254527.243999999016523 ], [ 364786.412299998104572, 254531.452399998903275 ], [ 364785.276100002229214, 254536.986699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604018900", "MAP": "D9-7932-T007", "PARCEL_NAM": "13-10", "ACRE": ".32", "LONGITUDE": -64.87430254, "LATITUDE": 18.31988242, "OBJECTID_1": 38910, "PARCEL_NO_": "107604018900", "Tax_Legal_": "13-10 NADIR (RECONF) NO. 2 RED HOOK QTR", "Name": "BIDDLE, LOWELL", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021736, "Country": "United States", "Land_Value": 40300, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.55852323299999, "SHAPE_Area": 1404.2917231399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364778.840800002217293, 254568.331799998879433 ], [ 364804.660800002515316, 254566.432199999690056 ], [ 364804.890600003302097, 254568.576900001615286 ], [ 364826.987099997699261, 254567.371399998664856 ], [ 364826.494199998676777, 254559.222600001841784 ], [ 364837.786200001835823, 254558.892900001257658 ], [ 364836.205899998545647, 254555.080200001597404 ], [ 364833.016599997878075, 254550.832299999892712 ], [ 364832.235500000417233, 254547.870600000023842 ], [ 364830.637199997901917, 254546.168699998408556 ], [ 364828.568199999630451, 254540.9510000012815 ], [ 364785.276100002229214, 254536.986699998378754 ], [ 364778.840800002217293, 254568.331799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604018800", "MAP": "D9-7932-T007", "PARCEL_NAM": "13-9", "ACRE": ".242", "LONGITUDE": -64.87418678, "LATITUDE": 18.32015622, "OBJECTID_1": 38909, "PARCEL_NO_": "107604018800", "Tax_Legal_": "13-9 RE-CONFIGURED ESTATE NADIR NO.2 RED HOOK QTR", "Name": "LAKE, CURT E.", "Address": "PO Box 8686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 138800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.349968733, "SHAPE_Area": 686.69841060800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364828.614600002765656, 254594.281500000506639 ], [ 364826.987099997699261, 254567.371399998664856 ], [ 364804.890600003302097, 254568.576900001615286 ], [ 364804.660800002515316, 254566.432199999690056 ], [ 364802.487300001084805, 254591.331599999219179 ], [ 364807.006999999284744, 254588.331799998879433 ], [ 364811.745099999010563, 254585.187100000679493 ], [ 364814.707000002264977, 254589.672899998724461 ], [ 364825.211199998855591, 254610.080200001597404 ], [ 364829.702799998223782, 254609.365699999034405 ], [ 364828.614600002765656, 254594.281500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701034900", "MAP": "D9-6848-T000", "PARCEL_NAM": "M-37", "ACRE": ".23", "LONGITUDE": -64.85696832, "LATITUDE": 18.3277208, "OBJECTID_1": 39294, "PARCEL_NO_": "107701034900", "Tax_Legal_": "M-37 ESTATE NAZARETH No.1 RED HOOK QTR", "Name": "HIPPOLYTE, CLAUDIUS", "Address": "PO Box 9604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.72127655099999, "SHAPE_Area": 1601.9732098100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366607.079599998891354, 255420.687899999320507 ], [ 366611.644799999892712, 255458.478900000452995 ], [ 366639.656499996781349, 255453.478300001472235 ], [ 366652.562600001692772, 255453.854200001806021 ], [ 366652.055500000715256, 255431.875999998301268 ], [ 366662.043700002133846, 255424.525299999862909 ], [ 366650.123700000345707, 255420.959199998527765 ], [ 366642.342677199863829, 255419.355715449375566 ], [ 366634.482400000095367, 255418.201799999922514 ], [ 366631.997100003063679, 255417.932399999350309 ], [ 366617.021099999547005, 255419.501800000667572 ], [ 366607.079599998891354, 255420.687899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702034800", "MAP": "A9-566-T001", "PARCEL_NAM": "M-27", "ACRE": ".25", "LONGITUDE": -64.85490016, "LATITUDE": 18.3280999, "OBJECTID_1": 39593, "PARCEL_NO_": "107702034800", "Tax_Legal_": "M-27 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "BIRMINGHAM, DONALD", "Address": "PO BOX 502044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 40000, "Improved_V": 53100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.502317393, "SHAPE_Area": 971.08867279900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366854.046499997377396, 255500.061500001698732 ], [ 366869.69820000231266, 255473.66950000077486 ], [ 366860.463799998164177, 255469.639800000935793 ], [ 366856.193599998950958, 255453.390500001609325 ], [ 366836.920100003480911, 255475.745999999344349 ], [ 366830.64130000025034, 255482.1722999997437 ], [ 366830.701200000941753, 255482.409400001168251 ], [ 366830.660300001502037, 255487.150400001555681 ], [ 366831.822899997234344, 255496.753699999302626 ], [ 366834.435300000011921, 255496.024599999189377 ], [ 366843.295699998736382, 255497.15260000154376 ], [ 366854.046499997377396, 255500.061500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702034200", "MAP": "D9-6848-T000", "PARCEL_NAM": "M-39", "ACRE": ".24", "LONGITUDE": -64.85609, "LATITUDE": 18.32788012, "OBJECTID_1": 39588, "PARCEL_NO_": "107702034200", "Tax_Legal_": "NAZARETH ESTATE M-39 No.1 RED HOOK QTR.", "Name": "SQUIABRO, LYNETTE & HECTOR", "Address": "P O BOX 4106", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.198730191, "SHAPE_Area": 933.79309322400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366721.607199996709824, 255433.462699998170137 ], [ 366719.535499997437, 255431.921100001782179 ], [ 366716.620113946322817, 255435.710535604477627 ], [ 366714.25620000064373, 255439.866399999707937 ], [ 366711.899619973264635, 255449.289151452598162 ], [ 366710.134468828793615, 255458.840379426255822 ], [ 366708.967600002884865, 255468.482999999076128 ], [ 366709.000399999320507, 255469.741200000047684 ], [ 366716.088899999856949, 255473.735500000417233 ], [ 366723.576899997889996, 255479.356499999761581 ], [ 366743.32490000128746, 255448.208599999547005 ], [ 366733.270099997520447, 255440.872900001704693 ], [ 366721.607199996709824, 255433.462699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702034000", "MAP": "A9-566-T001", "PARCEL_NAM": "M-44", "ACRE": null, "LONGITUDE": -64.85537151, "LATITUDE": 18.32793179, "OBJECTID_1": 39586, "PARCEL_NO_": "107702034000", "Tax_Legal_": "M-44 NAZARETH No.1 RED HOOK QUARTER", "Name": "GILKES, CECIL, EUGENE & CHRISTOPHR", "Address": "PO Box 377", "City": "CONYERS", "State": "Georgia", "Zip": 30012, "Country": "United States", "Land_Value": 50900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.21049427299999, "SHAPE_Area": 1412.65510346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366785.412299998104572, 255478.159800000488758 ], [ 366790.589100003242493, 255478.112500000745058 ], [ 366805.690200001001358, 255478.637800000607967 ], [ 366819.204700000584126, 255478.754200000315905 ], [ 366825.229299999773502, 255479.084800001233816 ], [ 366824.018799997866154, 255473.659200001507998 ], [ 366818.185900002717972, 255458.594500001519918 ], [ 366812.504100002348423, 255449.062800001353025 ], [ 366804.045000001788139, 255438.91440000012517 ], [ 366795.107100002467632, 255432.016499999910593 ], [ 366793.328100003302097, 255437.043999999761581 ], [ 366791.286200001835823, 255443.348299998790026 ], [ 366785.055399999022484, 255451.394499998539686 ], [ 366778.821099996566772, 255459.835799999535084 ], [ 366774.395999997854233, 255465.921900000423193 ], [ 366772.125600002706051, 255468.671500001102686 ], [ 366775.781199999153614, 255471.268800001591444 ], [ 366785.399499997496605, 255478.10249999910593 ], [ 366785.412299998104572, 255478.159800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702034500", "MAP": "A9-566-T001", "PARCEL_NAM": "M-45", "ACRE": ".25", "LONGITUDE": -64.85561943, "LATITUDE": 18.32777375, "OBJECTID_1": 39590, "PARCEL_NO_": "107702034500", "Tax_Legal_": "NAZARETH ESTATE M-45 No.1 RED HOOK QTR.", "Name": "LEVINE, AURELIE V", "Address": "PMB 111@133 TUTU PARK MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41000, "Improved_V": 141400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.043482248, "SHAPE_Area": 1163.1256049399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366767.876199997961521, 255422.062600001692772 ], [ 366767.602099999785423, 255423.980999998748302 ], [ 366766.745800003409386, 255431.085799999535084 ], [ 366762.928900003433228, 255435.794300001114607 ], [ 366756.901900000870228, 255443.249600000679493 ], [ 366749.287000000476837, 255452.444600000977516 ], [ 366756.544799998402596, 255457.601300001144409 ], [ 366764.572899997234344, 255463.305300001055002 ], [ 366772.125600002706051, 255468.671500001102686 ], [ 366774.395999997854233, 255465.921900000423193 ], [ 366778.821099996566772, 255459.835799999535084 ], [ 366785.055399999022484, 255451.394499998539686 ], [ 366791.286200001835823, 255443.348299998790026 ], [ 366793.328100003302097, 255437.043999999761581 ], [ 366795.107100002467632, 255432.016499999910593 ], [ 366795.258599996566772, 255430.367800001055002 ], [ 366790.011338790762238, 255427.343162743141875 ], [ 366784.41998985921964, 255425.015288642171072 ], [ 366778.57660000026226, 255423.422499999403954 ], [ 366767.876199997961521, 255422.062600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702034300", "MAP": "A9-566-T001", "PARCEL_NAM": "M-43", "ACRE": ".24", "LONGITUDE": -64.85530988, "LATITUDE": 18.32821869, "OBJECTID_1": 39589, "PARCEL_NO_": "107702034300", "Tax_Legal_": "NAZARETH ESTATE M-43 No.1 RED HOOK QTR.", "Name": "PELTIER, DAVID", "Address": "P O OX 304428", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.87951761900001, "SHAPE_Area": 1103.14213956 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366825.229299999773502, 255479.084800001233816 ], [ 366819.204700000584126, 255478.754200000315905 ], [ 366805.690200001001358, 255478.637800000607967 ], [ 366790.589100003242493, 255478.112500000745058 ], [ 366785.412299998104572, 255478.159800000488758 ], [ 366793.945200003683567, 255516.169300001114607 ], [ 366810.137999996542931, 255508.491300001740456 ], [ 366825.7516999989748, 255498.658700000494719 ], [ 366826.235200002789497, 255493.236600000411272 ], [ 366826.315200001001358, 255483.951999999582767 ], [ 366825.229299999773502, 255479.084800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702033100", "MAP": "A9-566-T001", "PARCEL_NAM": "M-28", "ACRE": ".24", "LONGITUDE": -64.85500027000001, "LATITUDE": 18.32788071, "OBJECTID_1": 39581, "PARCEL_NO_": "107702033100", "Tax_Legal_": "M-28 NAZARETH No.1 RED HOOK QUARTER", "Name": "RICHARDSON, KALI", "Address": "PO Box 304091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 14500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.61612024599999, "SHAPE_Area": 871.056156225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366856.193599998950958, 255453.390500001609325 ], [ 366852.783100001513958, 255434.000399999320507 ], [ 366833.409599997103214, 255444.896600000560284 ], [ 366822.424199998378754, 255451.123799998313189 ], [ 366819.855099998414516, 255452.538199998438358 ], [ 366823.735399998724461, 255460.420400001108646 ], [ 366828.20269999653101, 255472.509899999946356 ], [ 366830.64130000025034, 255482.1722999997437 ], [ 366836.920100003480911, 255475.745999999344349 ], [ 366856.193599998950958, 255453.390500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702034700", "MAP": "A9-566-T001", "PARCEL_NAM": "T-10", "ACRE": ".24", "LONGITUDE": -64.8571058, "LATITUDE": 18.32738428, "OBJECTID_1": 39592, "PARCEL_NO_": "107702034700", "Tax_Legal_": "T-10 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "PHILLIP, STEVEN", "Address": "PO Box 246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 76900, "Improved_V": 269000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.97527906100001, "SHAPE_Area": 1044.7679521099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366631.283299997448921, 255404.494800001382828 ], [ 366630.19990000128746, 255380.215500000864267 ], [ 366599.960100002586842, 255383.515700001269579 ], [ 366602.186800003051758, 255409.009399998933077 ], [ 366602.787500001490116, 255415.886100001633167 ], [ 366617.024300001561642, 255414.55629999935627 ], [ 366617.021099999547005, 255419.501800000667572 ], [ 366631.997100003063679, 255417.932399999350309 ], [ 366631.283299997448921, 255404.494800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702033200", "MAP": "A9-566-T001", "PARCEL_NAM": "M-29", "ACRE": ".25", "LONGITUDE": -64.85515023000001, "LATITUDE": 18.32760369, "OBJECTID_1": 39582, "PARCEL_NO_": "107702033200", "Tax_Legal_": "M-29 NAZARETH No.1 RED HOOK QTR", "Name": "HENDRICKS, DORNA MARIA", "Address": "PO Box 12046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41000, "Improved_V": 510300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.89418917200001, "SHAPE_Area": 1099.02980235 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366841.979900002479553, 255419.090399999171495 ], [ 366826.612400002777576, 255403.35080000013113 ], [ 366822.409800000488758, 255406.673000000417233 ], [ 366807.597199998795986, 255418.793999999761581 ], [ 366798.659400001168251, 255426.866500001400709 ], [ 366797.744400002062321, 255427.692899998277426 ], [ 366803.009649609331973, 255431.819151379022514 ], [ 366807.946331190236378, 255436.333348855056101 ], [ 366812.52593157190131, 255441.20941942758509 ], [ 366816.722000002861023, 255446.419199999421835 ], [ 366822.094899997115135, 255443.218699999153614 ], [ 366849.066600002348423, 255427.053800001740456 ], [ 366841.979900002479553, 255419.090399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702033300", "MAP": "A9-566-T001", "PARCEL_NAM": "M-30", "ACRE": ".26", "LONGITUDE": -64.85536162, "LATITUDE": 18.32744595, "OBJECTID_1": 39583, "PARCEL_NO_": "107702033300", "Tax_Legal_": "M-30 NAZARETH ESTATE TRACK No.1 RED HOOK QTR", "Name": "JOHN, CONDON, STEPHANIE", "Address": "PO Box 302604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.391768367, "SHAPE_Area": 996.40432219800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366811.988799996674061, 255393.544300001114607 ], [ 366800.320699997246265, 255386.726799998432398 ], [ 366791.675999999046326, 255398.110700000077486 ], [ 366778.231899999082088, 255417.082100000232458 ], [ 366776.152500003576279, 255420.016399998217821 ], [ 366783.310222856758628, 255421.314799772750121 ], [ 366790.406099997460842, 255422.917100001126528 ], [ 366794.134668377402704, 255425.213700137624983 ], [ 366797.744400002062321, 255427.692899998277426 ], [ 366798.659400001168251, 255426.866500001400709 ], [ 366807.597199998795986, 255418.793999999761581 ], [ 366822.409800000488758, 255406.673000000417233 ], [ 366826.612400002777576, 255403.35080000013113 ], [ 366820.295100003480911, 255398.357299998402596 ], [ 366811.988799996674061, 255393.544300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702033400", "MAP": "A9-566-T001", "PARCEL_NAM": "M-31", "ACRE": ".31", "LONGITUDE": -64.85561539, "LATITUDE": 18.32737713, "OBJECTID_1": 39584, "PARCEL_NO_": "107702033400", "Tax_Legal_": "M-31 NAZARETH No.1 RED HOOK QUARTER", "Name": "ROSS, HILTON", "Address": "PO Box 66", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.392642059, "SHAPE_Area": 1117.0677376900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366772.938299998641014, 255381.354299999773502 ], [ 366768.173600003123283, 255380.720600001513958 ], [ 366765.34179999679327, 255386.425400000065565 ], [ 366759.070100001990795, 255399.212699998170137 ], [ 366752.252400003373623, 255413.624499998986721 ], [ 366750.520300000905991, 255417.285999998450279 ], [ 366760.535705149115529, 255418.033165995060699 ], [ 366770.509400002658367, 255419.212999999523163 ], [ 366776.152500003576279, 255420.016399998217821 ], [ 366778.231899999082088, 255417.082100000232458 ], [ 366791.675999999046326, 255398.110700000077486 ], [ 366800.320699997246265, 255386.726799998432398 ], [ 366794.772900000214577, 255384.703400000929832 ], [ 366780.884700000286102, 255381.817899998277426 ], [ 366772.938299998641014, 255381.354299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701037800", "MAP": "A9-566-T001", "PARCEL_NAM": "M-32", "ACRE": ".25", "LONGITUDE": -64.85588726, "LATITUDE": 18.32736409, "OBJECTID_1": 39317, "PARCEL_NO_": "107701037800", "Tax_Legal_": "M-32 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "WILLIAMS, REBA", "Address": "PO Box 11212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.75719786499999, "SHAPE_Area": 1068.5621652699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366748.813500002026558, 255417.202100001275539 ], [ 366750.520300000905991, 255417.285999998450279 ], [ 366752.252400003373623, 255413.624499998986721 ], [ 366759.070100001990795, 255399.212699998170137 ], [ 366765.34179999679327, 255386.425400000065565 ], [ 366768.173600003123283, 255380.720600001513958 ], [ 366758.2449000030756, 255379.647199999541044 ], [ 366747.910199999809265, 255379.558200001716614 ], [ 366735.780000001192093, 255380.243999999016523 ], [ 366733.916400000452995, 255388.920499999076128 ], [ 366728.000200003385544, 255417.23589999973774 ], [ 366726.883400000631809, 255422.581000000238419 ], [ 366727.435099996626377, 255422.388000000268221 ], [ 366732.575221530569252, 255420.349860798014561 ], [ 366737.882424402749166, 255418.7979399029864 ], [ 366743.310827020904981, 255417.745653912192211 ], [ 366748.813500002026558, 255417.202100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701037900", "MAP": "A9-566-T001", "PARCEL_NAM": "M-33", "ACRE": ".24", "LONGITUDE": -64.85614534, "LATITUDE": 18.32743958, "OBJECTID_1": 39318, "PARCEL_NO_": "107701037900", "Tax_Legal_": "M-33 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "COLBOURNE, SANDRA A.", "Address": "6501 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.40971440800001, "SHAPE_Area": 1125.98557196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366733.916400000452995, 255388.920499999076128 ], [ 366735.780000001192093, 255380.243999999016523 ], [ 366733.590400002896786, 255380.620200000703335 ], [ 366730.80460000038147, 255380.991300001740456 ], [ 366727.417400002479553, 255381.94990000128746 ], [ 366723.432300001382828, 255383.100999999791384 ], [ 366720.644799999892712, 255383.669599998742342 ], [ 366717.660199999809265, 255384.039099998772144 ], [ 366713.484899997711182, 255384.200699999928474 ], [ 366709.11429999768734, 255383.965500000864267 ], [ 366708.890000000596046, 255386.926899999380112 ], [ 366707.379699997603893, 255400.743000000715256 ], [ 366705.843900002539158, 255417.522300001233816 ], [ 366704.59009999781847, 255431.583799999207258 ], [ 366704.048600003123283, 255437.657000001519918 ], [ 366705.413153940811753, 255437.912011437350884 ], [ 366706.800018968991935, 255437.972374298289651 ], [ 366708.181569276028313, 255437.836886179662542 ], [ 366709.530284917738754, 255437.50824595199083 ], [ 366710.819300003349781, 255436.993000000715256 ], [ 366712.159541978617199, 255435.526512892858591 ], [ 366713.228432437346783, 255433.85190661760862 ], [ 366713.994300000369549, 255432.018800001591444 ], [ 366716.676294232776854, 255428.990806093643187 ], [ 366719.761374849244021, 255426.374679613625631 ], [ 366723.186920736392494, 255424.2235228214995 ], [ 366726.883400000631809, 255422.581000000238419 ], [ 366728.000200003385544, 255417.23589999973774 ], [ 366733.916400000452995, 255388.920499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038000", "MAP": "A9-566-T001", "PARCEL_NAM": "M-34", "ACRE": ".26", "LONGITUDE": -64.85636206, "LATITUDE": 18.32745457, "OBJECTID_1": 39319, "PARCEL_NO_": "107701038000", "Tax_Legal_": "M-34 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "MASSICOTT, PATRICK", "Address": "PO Box 502546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 52500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.399948806, "SHAPE_Area": 1179.33704298 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366685.217100001871586, 255382.082800000905991 ], [ 366681.702100001275539, 255428.126899998635054 ], [ 366702.035099998116493, 255436.887200001627207 ], [ 366703.020697161846329, 255437.32742767239688 ], [ 366704.048600003123283, 255437.657000001519918 ], [ 366704.59009999781847, 255431.583799999207258 ], [ 366705.843900002539158, 255417.522300001233816 ], [ 366707.379699997603893, 255400.743000000715256 ], [ 366708.890000000596046, 255386.926899999380112 ], [ 366709.11429999768734, 255383.965500000864267 ], [ 366698.589299999177456, 255382.886999998241663 ], [ 366687.863899998366833, 255382.004399999976158 ], [ 366685.217100001871586, 255382.082800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038100", "MAP": "A9-566-T001", "PARCEL_NAM": "M-35", "ACRE": ".23", "LONGITUDE": -64.85658342000001, "LATITUDE": 18.32740109, "OBJECTID_1": 39320, "PARCEL_NO_": "107701038100", "Tax_Legal_": "M-35 NAZARETH NO.1 RED HOOK QTR", "Name": "DARWIN FRANCIS EMMANUEL", "Address": "200 OSWALD HARRIS COURT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023117, "Country": "United States", "Land_Value": 46400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.31010504700001, "SHAPE_Area": 1026.7386863199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366681.702100001275539, 255428.126899998635054 ], [ 366685.217100001871586, 255382.082800000905991 ], [ 366682.694899998605251, 255382.157499998807907 ], [ 366679.516699999570847, 255381.932500001043081 ], [ 366677.140299998223782, 255380.924300000071526 ], [ 366668.803199999034405, 255379.667100001126528 ], [ 366660.45380000025034, 255378.879200000315905 ], [ 366659.202500000596046, 255418.35080000013113 ], [ 366670.8141999989748, 255423.446299999952316 ], [ 366676.553300000727177, 255425.912599999457598 ], [ 366681.702100001275539, 255428.126899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702034100", "MAP": "D9-6848-T000", "PARCEL_NAM": "M-38", "ACRE": ".23", "LONGITUDE": -64.85653101, "LATITUDE": 18.3277922, "OBJECTID_1": 39587, "PARCEL_NO_": "107702034100", "Tax_Legal_": "NAZARETH ESTATE M-38 No.1 RED HOOK QTR.", "Name": "PETERSEN, SR. , MILTON A", "Address": "2036 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.627510602, "SHAPE_Area": 1355.65801089 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366662.043700002133846, 255424.525299999862909 ], [ 366652.055500000715256, 255431.875999998301268 ], [ 366652.562600001692772, 255453.854200001806021 ], [ 366659.810699999332428, 255454.065400000661612 ], [ 366679.934399999678135, 255458.240899998694658 ], [ 366701.390100002288818, 255466.71339999884367 ], [ 366702.315200001001358, 255457.991399999707937 ], [ 366702.954000003635883, 255453.057900000363588 ], [ 366703.010099999606609, 255446.539000000804663 ], [ 366702.439400002360344, 255443.570700000971556 ], [ 366701.063500002026558, 255441.780799999833107 ], [ 366699.485500000417233, 255440.384300000965595 ], [ 366688.600500002503395, 255434.956500001251698 ], [ 366676.12389999628067, 255429.712499998509884 ], [ 366672.200199998915195, 255427.9386 ], [ 366662.043700002133846, 255424.525299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601091100", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-11", "ACRE": ".26", "LONGITUDE": -64.87629281, "LATITUDE": 18.32685353, "OBJECTID_1": 38228, "PARCEL_NO_": "107601091100", "Tax_Legal_": "3G-11 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "PLASKETT, GERMAINE C.", "Address": "PO Box 7991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 25100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.446721709, "SHAPE_Area": 1142.85792 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364605.575099997222424, 255316.580600000917912 ], [ 364605.193099997937679, 255315.916799999773502 ], [ 364606.875399999320507, 255311.836899999529123 ], [ 364601.53490000218153, 255310.153799999505281 ], [ 364600.313199996948242, 255308.505699999630451 ], [ 364599.911799997091293, 255307.274099998176098 ], [ 364581.429499998688698, 255300.975600000470877 ], [ 364577.321199998259544, 255299.712400000542402 ], [ 364575.157399997115135, 255311.976599998772144 ], [ 364572.096699997782707, 255332.831000000238419 ], [ 364571.50959999859333, 255336.552700001746416 ], [ 364573.705899998545647, 255337.348299998790026 ], [ 364598.767800003290176, 255344.931000001728535 ], [ 364602.464199997484684, 255346.190699998289347 ], [ 364605.575099997222424, 255316.580600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601095800", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-58", "ACRE": ".28", "LONGITUDE": -64.87771633, "LATITUDE": 18.32712087, "OBJECTID_1": 38274, "PARCEL_NO_": "107601095800", "Tax_Legal_": "3G-58 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "FRETT, SHIRLEAN", "Address": "PO Box 11533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35200, "Improved_V": 155300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.11184656500001, "SHAPE_Area": 1158.94407796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364413.717399999499321, 255359.664000000804663 ], [ 364446.274300001561642, 255372.28999999910593 ], [ 364446.350000001490116, 255372.389499999582767 ], [ 364448.735399998724461, 255366.517000000923872 ], [ 364458.736599996685982, 255348.620900001376867 ], [ 364463.971100002527237, 255339.766499999910593 ], [ 364458.369999997317791, 255337.5962999984622 ], [ 364445.207299999892712, 255335.437399998307228 ], [ 364434.903499998152256, 255336.168699998408556 ], [ 364425.817800000309944, 255338.957499999552965 ], [ 364417.510799996554852, 255347.075300000607967 ], [ 364413.717399999499321, 255359.664000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601094000", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-40", "ACRE": ".25", "LONGITUDE": -64.87707538, "LATITUDE": 18.32821702, "OBJECTID_1": 38256, "PARCEL_NO_": "107601094000", "Tax_Legal_": "3G-40 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "GUMBS BAXTER, VELDA", "Address": "PO Box 10104", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 149000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.77085495, "SHAPE_Area": 1315.3923054500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364530.224500000476837, 255486.659000001847744 ], [ 364518.697499997913837, 255452.166000001132488 ], [ 364478.094899997115135, 255466.052099999040365 ], [ 364481.103900000452995, 255473.716499999165535 ], [ 364484.720299996435642, 255484.392000000923872 ], [ 364490.043399997055531, 255488.122000001370907 ], [ 364498.682300001382828, 255489.423700001090765 ], [ 364522.16950000077486, 255488.395100001245737 ], [ 364530.224500000476837, 255486.659000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601097900", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-79", "ACRE": ".24", "LONGITUDE": -64.87824721, "LATITUDE": 18.32779386, "OBJECTID_1": 38295, "PARCEL_NO_": "107601097900", "Tax_Legal_": "3G-79 MARIENDAHL NO.4 RED HOOK QTR", "Name": "BARON, RAMADIN", "Address": "PO BOX 6621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.08855730099999, "SHAPE_Area": 660.41704116400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364377.801100000739098, 255440.560100000351667 ], [ 364382.954599998891354, 255438.901000000536442 ], [ 364391.212999999523163, 255436.514699999243021 ], [ 364396.643299996852875, 255435.426399998366833 ], [ 364397.020900003612041, 255431.651000000536442 ], [ 364399.198499999940395, 255417.749299999326468 ], [ 364399.227799996733665, 255417.34010000154376 ], [ 364392.200099997222424, 255417.2804000005126 ], [ 364385.208700001239777, 255415.992800001055002 ], [ 364374.918799996376038, 255415.086500000208616 ], [ 364364.632299996912479, 255413.770899999886751 ], [ 364359.316200003027916, 255413.138099998235703 ], [ 364372.32379999756813, 255432.810300000011921 ], [ 364377.801100000739098, 255440.560100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601090100", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-1", "ACRE": ".22", "LONGITUDE": -64.87876408, "LATITUDE": 18.32652101, "OBJECTID_1": 38218, "PARCEL_NO_": "107601090100", "Tax_Legal_": "3G-1 ESTATE MARIENDAHL No.3 RED HOOK QUARTER", "Name": "Juan,Gladisbevel & Gladisvel ITF J & J Tavarez", "Address": "2206 Torve Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31600, "Improved_V": 231100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.80716706300001, "SHAPE_Area": 1444.03684673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364325.590999998152256, 255306.171500001102686 ], [ 364331.163000002503395, 255310.646999999880791 ], [ 364344.727399997413158, 255295.621700000017881 ], [ 364356.25959999859333, 255285.399999998509884 ], [ 364352.399499997496605, 255281.9070999994874 ], [ 364345.035199999809265, 255274.776399999856949 ], [ 364330.560500003397465, 255263.272900000214577 ], [ 364324.952899999916553, 255259.126600001007318 ], [ 364318.109399996697903, 255265.575300000607967 ], [ 364306.081500001251698, 255275.299400001764297 ], [ 364301.498700000345707, 255281.401799999177456 ], [ 364311.698399998247623, 255292.952100001275539 ], [ 364325.590999998152256, 255306.171500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601093100", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-31", "ACRE": ".28", "LONGITUDE": -64.87540899, "LATITUDE": 18.32732067, "OBJECTID_1": 38248, "PARCEL_NO_": "107601093100", "Tax_Legal_": "3G-31 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "GILPIN, SANDRA", "Address": "PO Box 11734", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.77989141800001, "SHAPE_Area": 1202.5170775 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364684.018399998545647, 255400.205200001597404 ], [ 364704.516099996864796, 255382.4391999989748 ], [ 364702.582099996507168, 255379.573499999940395 ], [ 364677.087600000202656, 255343.267799999564886 ], [ 364676.641099996864796, 255342.673099998384714 ], [ 364676.636799998581409, 255342.727400001138449 ], [ 364662.933499999344349, 255388.364900000393391 ], [ 364678.6587999984622, 255395.55970000103116 ], [ 364684.018399998545647, 255400.205200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601093000", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-30", "ACRE": ".27", "LONGITUDE": -64.8756016, "LATITUDE": 18.3272037, "OBJECTID_1": 38247, "PARCEL_NO_": "107601093000", "Tax_Legal_": "3G-30 ESTATE MARIENDAHL No.4 RED HOOK QTR", "Name": "CHALLENGER, KEVIN", "Address": "PO Box 10446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.718239455, "SHAPE_Area": 802.28161022699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364658.91499999910593, 255338.210999999195337 ], [ 364648.044900000095367, 255384.111699998378754 ], [ 364662.246399998664856, 255388.050500001758337 ], [ 364662.933499999344349, 255388.364900000393391 ], [ 364676.636799998581409, 255342.727400001138449 ], [ 364676.641099996864796, 255342.673099998384714 ], [ 364676.458499997854233, 255342.429900001734495 ], [ 364674.584399998188019, 255341.891100000590086 ], [ 364658.91499999910593, 255338.210999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601095900", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-29", "ACRE": ".27", "LONGITUDE": -64.87580238, "LATITUDE": 18.32716609, "OBJECTID_1": 38275, "PARCEL_NO_": "107601095900", "Tax_Legal_": "3G-29 ESTATE MARIENDAHL No.4 RED HOOK QTR.", "Name": "BONEY, PHILYENCIA", "Address": "PO Box 303558", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40200, "Improved_V": 61700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.98594614699999, "SHAPE_Area": 1236.7898487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364652.759900003671646, 255336.7179000005126 ], [ 364634.077500000596046, 255332.0929000005126 ], [ 364621.814099997282028, 255378.952500000596046 ], [ 364636.357500001788139, 255380.870200000703335 ], [ 364639.84570000320673, 255381.837600000202656 ], [ 364648.044900000095367, 255384.111699998378754 ], [ 364658.91499999910593, 255338.210999999195337 ], [ 364656.496699996292591, 255337.64299999922514 ], [ 364652.759900003671646, 255336.7179000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092500", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-25", "ACRE": ".26", "LONGITUDE": -64.87685807, "LATITUDE": 18.32700881, "OBJECTID_1": 38242, "PARCEL_NO_": "107601092500", "Tax_Legal_": "3G-25 ESTATE MARIENDAHL No.4 REDHOOK QTR.", "Name": "ABBOTT, ANGELA", "Address": "PO Box 307422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 211800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.05105604, "SHAPE_Area": 1099.5258139800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364540.082000002264977, 255363.963199999183416 ], [ 364543.259499996900558, 255345.513900000602007 ], [ 364546.470499999821186, 255327.420899998396635 ], [ 364533.467299997806549, 255322.267099998891354 ], [ 364522.793300002813339, 255318.08219999819994 ], [ 364516.681800000369549, 255317.135800000280142 ], [ 364514.960900001227856, 255335.215300001204014 ], [ 364513.798600003123283, 255348.267799999564886 ], [ 364513.272799998521805, 255353.523899998515844 ], [ 364533.957000002264977, 255361.575599998235703 ], [ 364540.082000002264977, 255363.963199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601091200", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-12", "ACRE": ".24", "LONGITUDE": -64.87654477, "LATITUDE": 18.32676866, "OBJECTID_1": 38229, "PARCEL_NO_": "107601091200", "Tax_Legal_": "3G-12 MARIENDAHL NO.4 REDHOOK QTR", "Name": "FREGISTE, EVERAD & MARIA", "Address": "PO BOX 502451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.467594537, "SHAPE_Area": 901.98697692799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364553.890299998223782, 255292.061500001698732 ], [ 364550.575800001621246, 255304.900100000202656 ], [ 364548.417499996721745, 255313.89750000089407 ], [ 364547.1841000020504, 255319.059999998658895 ], [ 364546.930500000715256, 255320.220300000160933 ], [ 364548.308799996972084, 255320.75560000166297 ], [ 364554.881399996578693, 255322.858600001782179 ], [ 364550.816200003027916, 255329.055799998342991 ], [ 364571.50959999859333, 255336.552700001746416 ], [ 364572.096699997782707, 255332.831000000238419 ], [ 364575.157399997115135, 255311.976599998772144 ], [ 364577.240500003099442, 255300.169700000435114 ], [ 364576.909299999475479, 255299.70890000090003 ], [ 364563.355599999427795, 255295.089999999850988 ], [ 364553.890299998223782, 255292.061500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601091300", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-13", "ACRE": ".25", "LONGITUDE": -64.87675593, "LATITUDE": 18.32667062, "OBJECTID_1": 38230, "PARCEL_NO_": "107601091300", "Tax_Legal_": "3G-13 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "ROGERS, KIRSI W.", "Address": "PO Box 8834", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.27412768000001, "SHAPE_Area": 605.69498380599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364532.877499997615814, 255285.715799998492002 ], [ 364531.033399999141693, 255294.831399999558926 ], [ 364528.541299998760223, 255308.112199999392033 ], [ 364527.568300001323223, 255314.172400001436472 ], [ 364530.238399997353554, 255314.460700001567602 ], [ 364539.687200002372265, 255317.407000001519918 ], [ 364546.930500000715256, 255320.220300000160933 ], [ 364547.1841000020504, 255319.059999998658895 ], [ 364548.417499996721745, 255313.89750000089407 ], [ 364550.575800001621246, 255304.900100000202656 ], [ 364553.890299998223782, 255292.061500001698732 ], [ 364537.065099999308586, 255286.678100001066923 ], [ 364532.877499997615814, 255285.715799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601091400", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-14", "ACRE": ".25", "LONGITUDE": -64.87699932, "LATITUDE": 18.32661901, "OBJECTID_1": 38231, "PARCEL_NO_": "107601091400", "Tax_Legal_": "3G-14 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "BAKER, TESSA", "Address": "7859 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 38900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.15708796, "SHAPE_Area": 932.26373240299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364501.464500002563, 255278.496700000017881 ], [ 364499.209499999880791, 255295.152100000530481 ], [ 364497.629699997603893, 255306.075800001621246 ], [ 364497.294600002467632, 255308.200100000947714 ], [ 364498.980999998748302, 255308.872600000351667 ], [ 364505.968999996781349, 255310.569600000977516 ], [ 364514.611400000751019, 255311.461899999529123 ], [ 364522.007799997925758, 255313.571899998933077 ], [ 364527.568300001323223, 255314.172400001436472 ], [ 364528.541299998760223, 255308.112199999392033 ], [ 364531.033399999141693, 255294.831399999558926 ], [ 364532.877499997615814, 255285.715799998492002 ], [ 364501.464500002563, 255278.496700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601091500", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-15", "ACRE": ".26", "LONGITUDE": -64.87728749, "LATITUDE": 18.3265583, "OBJECTID_1": 38232, "PARCEL_NO_": "107601091500", "Tax_Legal_": "3G-15 ESTATE MARIENDAHL No.4 RED HOOK QTR.", "Name": "HODGE, RASHEED & JUELIS", "Address": "PO Box 9453", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37300, "Improved_V": 184600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.69389985, "SHAPE_Area": 900.39567024099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364469.960699997842312, 255272.757100000977516 ], [ 364469.300499998033047, 255280.118000000715256 ], [ 364468.291599996387959, 255293.854800000786781 ], [ 364467.788999997079372, 255300.501499999314547 ], [ 364467.710400000214577, 255301.894799999892712 ], [ 364471.440800003707409, 255302.087799999862909 ], [ 364480.491700001060963, 255303.39299999922514 ], [ 364489.539099998772144, 255305.107500001788139 ], [ 364497.294600002467632, 255308.200100000947714 ], [ 364497.629699997603893, 255306.075800001621246 ], [ 364499.209499999880791, 255295.152100000530481 ], [ 364501.464500002563, 255278.496700000017881 ], [ 364492.665799997746944, 255276.474599998444319 ], [ 364469.960699997842312, 255272.757100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092100", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-21", "ACRE": ".23", "LONGITUDE": -64.87807755, "LATITUDE": 18.32689472, "OBJECTID_1": 38238, "PARCEL_NO_": "107601092100", "Tax_Legal_": "3G-21 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "TODMAN, ANN MARIE", "Address": "PO Box 502163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30100, "Improved_V": 128600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.02668351, "SHAPE_Area": 1019.13141666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364398.925399996340275, 255303.571800000965595 ], [ 364398.913500003516674, 255303.907000001519918 ], [ 364376.885899998247623, 255323.820599999278784 ], [ 364397.108999997377396, 255341.284800000488758 ], [ 364406.705799996852875, 255349.34739999845624 ], [ 364408.620899997651577, 255350.950199998915195 ], [ 364408.836999997496605, 255349.867600001394749 ], [ 364410.547100000083447, 255342.512499999254942 ], [ 364416.777400001883507, 255336.424100000411272 ], [ 364420.937899999320507, 255331.546399999409914 ], [ 364421.059000000357628, 255331.330200001597404 ], [ 364416.142800003290176, 255323.71059999987483 ], [ 364405.118100002408028, 255308.6891999989748 ], [ 364400.407200001180172, 255302.733300000429153 ], [ 364399.063400000333786, 255303.760400000959635 ], [ 364398.925399996340275, 255303.571800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601091600", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-16", "ACRE": ".29", "LONGITUDE": -64.87762291, "LATITUDE": 18.32651641, "OBJECTID_1": 38233, "PARCEL_NO_": "107601091600", "Tax_Legal_": "3G-16 ESTATE MARIENDAHL No.4 RED HOOK QTR.", "Name": "CODOGAN, SHERYL & CECIL", "Address": "PO Box 303182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.41433979000001, "SHAPE_Area": 1257.26458551 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364437.593900002539158, 255267.914900001138449 ], [ 364422.04559999704361, 255269.9364 ], [ 364416.104400001466274, 255271.256599999964237 ], [ 364425.174599997699261, 255275.752599999308586 ], [ 364432.079999998211861, 255285.565999999642372 ], [ 364438.821599997580051, 255297.151599999517202 ], [ 364444.071699999272823, 255307.427600000053644 ], [ 364451.237999998033047, 255304.372699998319149 ], [ 364461.971100002527237, 255301.597899999469519 ], [ 364467.710400000214577, 255301.894799999892712 ], [ 364467.788999997079372, 255300.501499999314547 ], [ 364468.291599996387959, 255293.854800000786781 ], [ 364469.300499998033047, 255280.118000000715256 ], [ 364469.960699997842312, 255272.757100000977516 ], [ 364447.830200001597404, 255269.133499998599291 ], [ 364437.593900002539158, 255267.914900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601091700", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-17", "ACRE": ".26", "LONGITUDE": -64.87802783, "LATITUDE": 18.3265226, "OBJECTID_1": 38234, "PARCEL_NO_": "107601091700", "Tax_Legal_": "3G-17 ESTATE MARIENDAHL No.4 RED HOOK QTR.", "Name": "PEREZ, MIGUEL A.", "Address": "PO Box 11878", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.807795093, "SHAPE_Area": 822.973696303 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364416.104400001466274, 255271.256599999964237 ], [ 364396.098099999129772, 255275.702500000596046 ], [ 364382.743299998342991, 255281.46339999884367 ], [ 364385.687399998307228, 255285.467500001192093 ], [ 364399.063400000333786, 255303.760400000959635 ], [ 364402.505800001323223, 255301.129299998283386 ], [ 364415.965400002896786, 255292.080099999904633 ], [ 364430.082500003278255, 255282.727299999445677 ], [ 364425.174599997699261, 255275.752599999308586 ], [ 364416.104400001466274, 255271.256599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092200", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-22", "ACRE": ".24", "LONGITUDE": -64.87786749, "LATITUDE": 18.32670413, "OBJECTID_1": 38239, "PARCEL_NO_": "107601092200", "Tax_Legal_": "3G-22 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "CHARLESWELL, C. C & THOMAS, MAXINE", "Address": "PO Box 7054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34400, "Improved_V": 251900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.003909292, "SHAPE_Area": 1017.54225242 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364400.407200001180172, 255302.733300000429153 ], [ 364405.118100002408028, 255308.6891999989748 ], [ 364416.142800003290176, 255323.71059999987483 ], [ 364421.059000000357628, 255331.330200001597404 ], [ 364423.447400003671646, 255327.064100001007318 ], [ 364426.354900002479553, 255324.222899999469519 ], [ 364430.94820000231266, 255316.892400000244379 ], [ 364434.288400001823902, 255311.598299998790026 ], [ 364444.071699999272823, 255307.427600000053644 ], [ 364438.821599997580051, 255297.151599999517202 ], [ 364432.079999998211861, 255285.565999999642372 ], [ 364430.082500003278255, 255282.727299999445677 ], [ 364415.965400002896786, 255292.080099999904633 ], [ 364402.505800001323223, 255301.129299998283386 ], [ 364400.407200001180172, 255302.733300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092000", "MAP": "A9-640-T003", "PARCEL_NAM": "3G-20", "ACRE": ".23", "LONGITUDE": -64.87819288, "LATITUDE": 18.32710402, "OBJECTID_1": 38237, "PARCEL_NO_": "107601092000", "Tax_Legal_": "3G-20 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "COKER, CALVIN & CAROLETTE", "Address": "PO Box 9596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 229600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.89860717900001, "SHAPE_Area": 1126.92039927 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364377.438799999654293, 255324.298000000417233 ], [ 364376.138700000941753, 255324.257599998265505 ], [ 364365.349299997091293, 255334.068500000983477 ], [ 364361.944099999964237, 255337.481499999761581 ], [ 364364.846199996769428, 255340.077300000935793 ], [ 364374.23589999973774, 255349.9831000007689 ], [ 364385.674599997699261, 255361.13459999859333 ], [ 364390.568400003015995, 255366.907999999821186 ], [ 364395.465700000524521, 255372.272100001573563 ], [ 364399.944200001657009, 255378.451400000602007 ], [ 364401.989699997007847, 255380.1064000017941 ], [ 364402.813400000333786, 255380.113400001078844 ], [ 364403.246200002729893, 255377.660599999129772 ], [ 364404.104699999094009, 255373.573699999600649 ], [ 364408.620899997651577, 255350.950199998915195 ], [ 364406.705799996852875, 255349.34739999845624 ], [ 364397.108999997377396, 255341.284800000488758 ], [ 364377.438799999654293, 255324.298000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601091900", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-19", "ACRE": ".23", "LONGITUDE": -64.87845604, "LATITUDE": 18.32683198, "OBJECTID_1": 38236, "PARCEL_NO_": "107601091900", "Tax_Legal_": "3G-19 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "ALBERT, DAVIDSON", "Address": "PO Box 502067", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052067, "Country": "United States", "Land_Value": 27700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.136087910100002, "SHAPE_Area": 590.88352785999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364356.52250000089407, 255298.587600000202656 ], [ 364351.279799997806549, 255303.222500000149012 ], [ 364348.396700002253056, 255316.589400000870228 ], [ 364353.415299996733665, 255329.215900000184774 ], [ 364354.217299997806549, 255330.57039999961853 ], [ 364361.944099999964237, 255337.481499999761581 ], [ 364365.349299997091293, 255334.068500000983477 ], [ 364376.138700000941753, 255324.257599998265505 ], [ 364376.884300000965595, 255324.280799999833107 ], [ 364376.882200002670288, 255324.263900000602007 ], [ 364362.170400001108646, 255305.664099998772144 ], [ 364356.52250000089407, 255298.587600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601091800", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-18", "ACRE": ".24", "LONGITUDE": -64.87829148, "LATITUDE": 18.32667425, "OBJECTID_1": 38235, "PARCEL_NO_": "107601091800", "Tax_Legal_": "3G-18 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "WARD, IRA & SYLVIE", "Address": "PO BOX 503140", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 36500, "Improved_V": 314500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.210190504, "SHAPE_Area": 959.45680003999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364382.743299998342991, 255281.46339999884367 ], [ 364369.364399999380112, 255287.234700001776218 ], [ 364356.52250000089407, 255298.587600000202656 ], [ 364362.170400001108646, 255305.664099998772144 ], [ 364376.882200002670288, 255324.263900000602007 ], [ 364376.884300000965595, 255324.280799999833107 ], [ 364377.438799999654293, 255324.298000000417233 ], [ 364376.885899998247623, 255323.820599999278784 ], [ 364398.913500003516674, 255303.907000001519918 ], [ 364398.925399996340275, 255303.571800000965595 ], [ 364385.687399998307228, 255285.467500001192093 ], [ 364382.743299998342991, 255281.46339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601090200", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-2", "ACRE": ".22", "LONGITUDE": -64.8785413, "LATITUDE": 18.32631795, "OBJECTID_1": 38219, "PARCEL_NO_": "107601090200", "Tax_Legal_": "3G-2 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "CHARLES, MARGARETTA", "Address": "PO Box 6522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.56069171, "SHAPE_Area": 1219.12443435 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364345.035199999809265, 255274.776399999856949 ], [ 364352.399499997496605, 255281.9070999994874 ], [ 364356.25959999859333, 255285.399999998509884 ], [ 364367.267599999904633, 255277.537099998444319 ], [ 364376.96509999781847, 255273.081500001251698 ], [ 364373.881800003349781, 255268.616900000721216 ], [ 364364.248999997973442, 255253.508600000292063 ], [ 364357.347300000488758, 255243.251800000667572 ], [ 364354.020099997520447, 255237.859400000423193 ], [ 364349.226199999451637, 255239.227099999785423 ], [ 364340.929499998688698, 255246.116799999028444 ], [ 364329.735799998044968, 255254.619699999690056 ], [ 364324.952899999916553, 255259.126600001007318 ], [ 364330.560500003397465, 255263.272900000214577 ], [ 364345.035199999809265, 255274.776399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601090300", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-3", "ACRE": ".22", "LONGITUDE": -64.87828963, "LATITUDE": 18.32621986, "OBJECTID_1": 38220, "PARCEL_NO_": "107601090300", "Tax_Legal_": "3G-3 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "JOSEPH, DARIUS & JANET", "Address": "PO Box 8406", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26600, "Improved_V": 127800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.917222839, "SHAPE_Area": 1119.0251429100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364364.248999997973442, 255253.508600000292063 ], [ 364373.881800003349781, 255268.616900000721216 ], [ 364376.96509999781847, 255273.081500001251698 ], [ 364401.077899999916553, 255266.791200000792742 ], [ 364398.899400003254414, 255262.416700001806021 ], [ 364393.862700000405312, 255250.804099999368191 ], [ 364387.729599997401237, 255237.597800001502037 ], [ 364385.026900000870228, 255231.113699998706579 ], [ 364380.186700001358986, 255231.301600001752377 ], [ 364360.374700002372265, 255236.046399999409914 ], [ 364354.020099997520447, 255237.859400000423193 ], [ 364357.347300000488758, 255243.251800000667572 ], [ 364364.248999997973442, 255253.508600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601090400", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-4", "ACRE": ".23", "LONGITUDE": -64.87799966, "LATITUDE": 18.32617686, "OBJECTID_1": 38221, "PARCEL_NO_": "107601090400", "Tax_Legal_": "3G-4 ESTATE MARIENDAHL NO.4 REDHOOK QTR", "Name": "PRICE, VALERIE", "Address": "PO BOX 11451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33000, "Improved_V": 17500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.924689215, "SHAPE_Area": 1147.62851796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364393.862700000405312, 255250.804099999368191 ], [ 364398.899400003254414, 255262.416700001806021 ], [ 364401.077899999916553, 255266.791200000792742 ], [ 364407.78320000320673, 255264.090900000184774 ], [ 364423.023199997842312, 255262.106499999761581 ], [ 364431.516400001943111, 255261.868400000035763 ], [ 364431.203699998557568, 255260.803800001740456 ], [ 364427.65089999884367, 255246.804900001734495 ], [ 364423.644199997186661, 255231.838700000196695 ], [ 364420.138899996876717, 255231.640900000929832 ], [ 364397.492499999701977, 255230.629700001329184 ], [ 364385.026900000870228, 255231.113699998706579 ], [ 364387.729599997401237, 255237.597800001502037 ], [ 364393.862700000405312, 255250.804099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601090600", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-6", "ACRE": ".23", "LONGITUDE": -64.87726684, "LATITUDE": 18.32620716, "OBJECTID_1": 38223, "PARCEL_NO_": "107601090600", "Tax_Legal_": "3G-6 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "CHARLESWELL, JELANI", "Address": "PO Box 10248", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.272436087, "SHAPE_Area": 900.11808755000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364471.198700003325939, 255234.552099999040365 ], [ 364473.944899998605251, 255265.963599998503923 ], [ 364480.389399997889996, 255266.953600000590086 ], [ 364493.960500001907349, 255269.525499999523163 ], [ 364495.966300003230572, 255269.94200000166893 ], [ 364501.225599996745586, 255250.385999999940395 ], [ 364505.222000002861023, 255238.150100000202656 ], [ 364497.122000001370907, 255236.798599999397993 ], [ 364479.013300001621246, 255235.006999999284744 ], [ 364471.198700003325939, 255234.552099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601090500", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-5", "ACRE": ".24", "LONGITUDE": -64.87757554, "LATITUDE": 18.32618555, "OBJECTID_1": 38222, "PARCEL_NO_": "107601090500", "Tax_Legal_": "3G-5 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "RAYMOND, EVANDER", "Address": "PO Box 502131", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27600, "Improved_V": 122400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.42560547100001, "SHAPE_Area": 1104.78325625 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364431.632600001990795, 255232.289299998432398 ], [ 364439.041199997067451, 255261.421799998730421 ], [ 364460.64360000193119, 255263.919900000095367 ], [ 364468.142200000584126, 255265.072000000625849 ], [ 364473.944899998605251, 255265.963599998503923 ], [ 364471.198700003325939, 255234.552099999040365 ], [ 364465.906499996781349, 255234.243999999016523 ], [ 364454.310999996960163, 255233.568900000303984 ], [ 364431.632600001990795, 255232.289299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601090700", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-7", "ACRE": ".23", "LONGITUDE": -64.87697793, "LATITUDE": 18.32626421, "OBJECTID_1": 38224, "PARCEL_NO_": "107601090700", "Tax_Legal_": "3G-7 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "HYDE, ROBERT O.", "Address": "PO Box 925", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 33000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.71671083499999, "SHAPE_Area": 1126.29852968 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364541.242700003087521, 255248.936299998313189 ], [ 364541.118600003421307, 255248.446800000965595 ], [ 364537.810999996960163, 255247.379999998956919 ], [ 364515.220299996435642, 255239.818399999290705 ], [ 364505.222000002861023, 255238.150100000202656 ], [ 364501.225599996745586, 255250.385999999940395 ], [ 364495.966300003230572, 255269.94200000166893 ], [ 364520.687399998307228, 255275.075100000947714 ], [ 364526.519299998879433, 255276.635200001299381 ], [ 364537.762299999594688, 255255.426199998706579 ], [ 364541.242700003087521, 255248.936299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601091000", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-10", "ACRE": ".23", "LONGITUDE": -64.87606181, "LATITUDE": 18.32654702, "OBJECTID_1": 38227, "PARCEL_NO_": "107601091000", "Tax_Legal_": "3G-10 ESTATE MARIENDAHL NO. 4 RED HOOK QUARTER", "Name": "MEADE, DWIGHT", "Address": "2199 Catherineburg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.754770906, "SHAPE_Area": 893.84212785199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364605.914399996399879, 255271.149900000542402 ], [ 364600.289300002157688, 255281.674899999052286 ], [ 364592.886900000274181, 255297.454700000584126 ], [ 364622.976899996399879, 255307.470199998468161 ], [ 364622.967100001871586, 255307.560600001364946 ], [ 364623.388800002634525, 255307.473700001835823 ], [ 364632.641599997878075, 255285.034299999475479 ], [ 364634.02589999884367, 255281.347800001502037 ], [ 364633.92059999704361, 255281.194200001657009 ], [ 364626.515699997544289, 255278.840799998492002 ], [ 364608.44879999756813, 255272.136500000953674 ], [ 364605.914399996399879, 255271.149900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601090900", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-9", "ACRE": ".23", "LONGITUDE": -64.8763542, "LATITUDE": 18.32644963, "OBJECTID_1": 38226, "PARCEL_NO_": "107601090900", "Tax_Legal_": "3G-9 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "GEORGE, ELRON J. & NESHA C.", "Address": "PO Box 303666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42300, "Improved_V": 71500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.78515128800001, "SHAPE_Area": 1022.42784135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364574.035999998450279, 255259.224599998444319 ], [ 364571.140100002288818, 255264.725699998438358 ], [ 364560.024899996817112, 255286.632199998944998 ], [ 364571.223099999129772, 255290.243900001049042 ], [ 364592.886900000274181, 255297.454700000584126 ], [ 364600.289300002157688, 255281.674899999052286 ], [ 364605.914399996399879, 255271.149900000542402 ], [ 364585.868600003421307, 255263.346599999815226 ], [ 364574.035999998450279, 255259.224599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601090800", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-8", "ACRE": ".23", "LONGITUDE": -64.87666301, "LATITUDE": 18.32635421, "OBJECTID_1": 38225, "PARCEL_NO_": "107601090800", "Tax_Legal_": "3G-8 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "PETERSEN, MONICA J.", "Address": "6213 Est Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.85387494899999, "SHAPE_Area": 1060.2340173699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364541.44820000231266, 255248.553100001066923 ], [ 364537.762299999594688, 255255.426199998706579 ], [ 364526.519299998879433, 255276.635200001299381 ], [ 364541.236100003123283, 255280.572299998253584 ], [ 364560.024899996817112, 255286.632199998944998 ], [ 364571.140100002288818, 255264.725699998438358 ], [ 364574.035999998450279, 255259.224599998444319 ], [ 364567.798100002110004, 255257.051600001752377 ], [ 364541.44820000231266, 255248.553100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092300", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-23", "ACRE": ".26", "LONGITUDE": -64.87741513, "LATITUDE": 18.32684254, "OBJECTID_1": 38240, "PARCEL_NO_": "107601092300", "Tax_Legal_": "3G-23 MARIENDAHL NO.4 RED HOOK QTR", "Name": "TIUS, YOLENE", "Address": "PO Box 304731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37300, "Improved_V": 15700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.36439019400001, "SHAPE_Area": 1324.54956539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364490.773100003600121, 255342.613699998706579 ], [ 364491.26410000026226, 255340.108300000429153 ], [ 364493.747100003063679, 255326.28319999948144 ], [ 364496.150600001215935, 255312.205400001257658 ], [ 364490.729500003159046, 255310.440099999308586 ], [ 364480.463899999856949, 255306.668099999427795 ], [ 364471.413000002503395, 255305.362900000065565 ], [ 364459.04619999974966, 255306.486099999397993 ], [ 364447.880300000309944, 255311.713700000196695 ], [ 364440.815800003707409, 255319.023299999535084 ], [ 364431.266099996864796, 255327.949400000274181 ], [ 364433.737400002777576, 255327.970400001853704 ], [ 364444.872000001370907, 255326.427299998700619 ], [ 364453.102600000798702, 255327.316100001335144 ], [ 364464.19539999961853, 255330.685699999332428 ], [ 364475.686200000345707, 255335.696400001645088 ], [ 364490.773100003600121, 255342.613699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092400", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-24", "ACRE": ".25", "LONGITUDE": -64.87709298, "LATITUDE": 18.32693918, "OBJECTID_1": 38241, "PARCEL_NO_": "107601092400", "Tax_Legal_": "3G-24 ESTATE MARIENDAHL NO.4 RED HOOK QUARTER", "Name": "FEVRIER, EVERSON", "Address": "PO Box 10305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.604955295, "SHAPE_Area": 743.95084038699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364513.272799998521805, 255353.523899998515844 ], [ 364513.798600003123283, 255348.267799999564886 ], [ 364514.960900001227856, 255335.215300001204014 ], [ 364516.681800000369549, 255317.135800000280142 ], [ 364508.806900002062321, 255315.916200000792742 ], [ 364499.766400001943111, 255313.38289999961853 ], [ 364496.150600001215935, 255312.205400001257658 ], [ 364493.747100003063679, 255326.28319999948144 ], [ 364491.26410000026226, 255340.108300000429153 ], [ 364490.773100003600121, 255342.613699998706579 ], [ 364496.611900001764297, 255345.290800001472235 ], [ 364511.376900002360344, 255352.785900000482798 ], [ 364513.272799998521805, 255353.523899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092800", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-28", "ACRE": ".28", "LONGITUDE": -64.87604892, "LATITUDE": 18.32711366, "OBJECTID_1": 38245, "PARCEL_NO_": "107601092800", "Tax_Legal_": "3G-28 ESTATE MARIENDAHL No.4 RED HOOK QTR.", "Name": "LAWRENCE, DIANE", "Address": "PO Box 600195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40200, "Improved_V": 188400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.78382198400001, "SHAPE_Area": 1347.77427083 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364621.814099997282028, 255378.952500000596046 ], [ 364634.077500000596046, 255332.0929000005126 ], [ 364629.627199999988079, 255330.991200000047684 ], [ 364625.668600000441074, 255330.011199999600649 ], [ 364604.659500002861023, 255325.295299999415874 ], [ 364602.464199997484684, 255346.190699998289347 ], [ 364602.388599999248981, 255346.164900001138449 ], [ 364597.707400001585484, 255371.579100001603365 ], [ 364596.972800001502037, 255375.676899999380112 ], [ 364615.861199997365475, 255378.167500000447035 ], [ 364621.814099997282028, 255378.952500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092700", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-27", "ACRE": ".23", "LONGITUDE": -64.87633511, "LATITUDE": 18.32716097, "OBJECTID_1": 38244, "PARCEL_NO_": "107601092700", "Tax_Legal_": "3G-27 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "THOMAS, FRANK", "Address": "7138 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.83909764000001, "SHAPE_Area": 997.12399845699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364596.972800001502037, 255375.676899999380112 ], [ 364597.707400001585484, 255371.579100001603365 ], [ 364602.388599999248981, 255346.164900001138449 ], [ 364598.767800003290176, 255344.931000001728535 ], [ 364598.555299997329712, 255344.866700001060963 ], [ 364573.705899998545647, 255337.348299998790026 ], [ 364571.735299997031689, 255336.634399998933077 ], [ 364571.588799998164177, 255336.741700001060963 ], [ 364571.714599996805191, 255337.395899999886751 ], [ 364569.874200001358986, 255352.924499999731779 ], [ 364567.419299997389317, 255371.092300001531839 ], [ 364586.572700001299381, 255374.305500000715256 ], [ 364592.094499997794628, 255375.033599998801947 ], [ 364596.972800001502037, 255375.676899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601094500", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-45", "ACRE": ".26", "LONGITUDE": -64.87556081, "LATITUDE": 18.32772571, "OBJECTID_1": 38261, "PARCEL_NO_": "107601094500", "Tax_Legal_": "3G-45 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "DORSETT, DONNIE E.", "Address": "PO Box 303704", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28500, "Improved_V": 216900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.52337829000001, "SHAPE_Area": 1284.99174969 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364653.546099998056889, 255393.9814000017941 ], [ 364649.829599998891354, 255447.442899998277426 ], [ 364670.457000002264977, 255439.707100000232458 ], [ 364679.165600001811981, 255432.821100000292063 ], [ 364685.828699998557568, 255424.280000001192093 ], [ 364685.095499999821186, 255413.628899998962879 ], [ 364678.571699999272823, 255405.794399999082088 ], [ 364667.517200000584126, 255397.921399999409914 ], [ 364657.653099998831749, 255395.381000000983477 ], [ 364653.546099998056889, 255393.9814000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601094600", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-46", "ACRE": ".25", "LONGITUDE": -64.87580413000001, "LATITUDE": 18.32768245, "OBJECTID_1": 38262, "PARCEL_NO_": "107601094600", "Tax_Legal_": "3G-46 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "MONTOUTE, KETURAH", "Address": "7050 Estate Brookman", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27800, "Improved_V": 72100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.30854886099999, "SHAPE_Area": 1287.5225436400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364626.045800000429153, 255387.110100001096725 ], [ 364625.798699997365475, 255416.171300001442432 ], [ 364640.923199996352196, 255450.783100001513958 ], [ 364649.829599998891354, 255447.442899998277426 ], [ 364653.546099998056889, 255393.9814000017941 ], [ 364649.028099998831749, 255392.441700000315905 ], [ 364627.652400001883507, 255387.346900001168251 ], [ 364626.045800000429153, 255387.110100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601094100", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-41", "ACRE": ".23", "LONGITUDE": -64.87675486000001, "LATITUDE": 18.3281408, "OBJECTID_1": 38257, "PARCEL_NO_": "107601094100", "Tax_Legal_": "3G-41 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "TURNBULL, DEBERA", "Address": "PO Box 11634", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 168900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.004577856, "SHAPE_Area": 1136.01330214 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364559.677599996328354, 255478.833599999547005 ], [ 364546.719099998474121, 255442.582499999552965 ], [ 364518.697499997913837, 255452.166000001132488 ], [ 364530.224500000476837, 255486.659000001847744 ], [ 364547.754399999976158, 255482.880699999630451 ], [ 364559.677599996328354, 255478.833599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601094200", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-41", "ACRE": ".23", "LONGITUDE": -64.87649221, "LATITUDE": 18.32805418, "OBJECTID_1": 38258, "PARCEL_NO_": "107601094200", "Tax_Legal_": "3G-42 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "LAURENCE, DOMIINIC & MARILYN", "Address": "PO Box 7941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33000, "Improved_V": 145100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.112267226, "SHAPE_Area": 1118.3308920100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364586.806199997663498, 255469.624400001019239 ], [ 364574.54280000180006, 255433.066799998283386 ], [ 364546.719099998474121, 255442.582499999552965 ], [ 364559.677599996328354, 255478.833599999547005 ], [ 364586.585400000214577, 255469.700100000947714 ], [ 364586.806199997663498, 255469.624400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601094300", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-43", "ACRE": ".23", "LONGITUDE": -64.87623036, "LATITUDE": 18.32796967, "OBJECTID_1": 38259, "PARCEL_NO_": "107601094300", "Tax_Legal_": "3G-43 ESTATE MARIENDAHL NO. 4 RED HOOK QUARTER", "Name": "JAMES, TISHA D.", "Address": "PO Box 1472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35900, "Improved_V": 153700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.95327024100001, "SHAPE_Area": 1133.25677838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364615.744699999690056, 255459.702100001275539 ], [ 364601.230999998748302, 255423.939500000327826 ], [ 364574.54280000180006, 255433.066799998283386 ], [ 364586.806199997663498, 255469.624400001019239 ], [ 364615.744699999690056, 255459.702100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601094400", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-44", "ACRE": ".23", "LONGITUDE": -64.87598281, "LATITUDE": 18.32788491, "OBJECTID_1": 38260, "PARCEL_NO_": "107601094400", "Tax_Legal_": "3G-44 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "INNIS, BERYL LOUISE", "Address": "PO Box 307828", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26600, "Improved_V": 283700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.69615219299999, "SHAPE_Area": 1008.9842855000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364601.230999998748302, 255423.939500000327826 ], [ 364615.744699999690056, 255459.702100001275539 ], [ 364632.027300000190735, 255454.119300000369549 ], [ 364640.923199996352196, 255450.783100001513958 ], [ 364625.798699997365475, 255416.171300001442432 ], [ 364625.804099999368191, 255415.529199998825788 ], [ 364623.989799998700619, 255416.155900001525879 ], [ 364601.230999998748302, 255423.939500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601094700", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-47", "ACRE": null, "LONGITUDE": -64.87607256, "LATITUDE": 18.32754558, "OBJECTID_1": 38263, "PARCEL_NO_": "107601094700", "Tax_Legal_": "3G-47 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "STEELE, KIM D.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.71483067299999, "SHAPE_Area": 887.3781879 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364587.12219999730587, 255382.271899998188019 ], [ 364599.250699996948242, 255394.368299998342991 ], [ 364606.664899997413158, 255422.081000000238419 ], [ 364623.989799998700619, 255416.155900001525879 ], [ 364625.804099999368191, 255415.529199998825788 ], [ 364626.045800000429153, 255387.110100001096725 ], [ 364609.962600000202656, 255384.739900000393391 ], [ 364593.505000002682209, 255382.552799999713898 ], [ 364587.12219999730587, 255382.271899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601094800", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-48", "ACRE": null, "LONGITUDE": -64.87629565, "LATITUDE": 18.32757146, "OBJECTID_1": 38264, "PARCEL_NO_": "107601094800", "Tax_Legal_": "3G-48 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "CATTA, KIRI J", "Address": "PO BOX 821", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.77910083500001, "SHAPE_Area": 1017.65711144 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364563.273100003600121, 255379.537300001829863 ], [ 364575.711400002241135, 255396.965199999511242 ], [ 364588.034199997782707, 255428.452799998223782 ], [ 364606.664899997413158, 255422.081000000238419 ], [ 364599.250699996948242, 255394.368299998342991 ], [ 364587.12219999730587, 255382.271899998188019 ], [ 364581.975900001823902, 255382.045400001108646 ], [ 364572.928599998354912, 255380.330800000578165 ], [ 364563.273100003600121, 255379.537300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601095100", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-51", "ACRE": ".26", "LONGITUDE": -64.87710257000001, "LATITUDE": 18.32756312, "OBJECTID_1": 38267, "PARCEL_NO_": "107601095100", "Tax_Legal_": "3G-51 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "NELSON, ROBERT & ELIZABETH", "Address": "PO Box 306299", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39900, "Improved_V": 225300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.340218841, "SHAPE_Area": 1439.89685581 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364543.342500001192093, 255407.396000001579523 ], [ 364486.600100003182888, 255378.324599999934435 ], [ 364478.106700003147125, 255390.169700000435114 ], [ 364472.007600001990795, 255402.041999999433756 ], [ 364505.970799997448921, 255419.747699998319149 ], [ 364543.342500001192093, 255407.396000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601095400", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-54", "ACRE": ".28", "LONGITUDE": -64.87752015, "LATITUDE": 18.32822232, "OBJECTID_1": 38270, "PARCEL_NO_": "107601095400", "Tax_Legal_": "3G-54 ESTATE MARIENDAHL NO.3 RED HOOK QTR", "Name": "HARRIS SR, CALVIN E.", "Address": "PO BOX 306476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35200, "Improved_V": 175000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.35930523799999, "SHAPE_Area": 1146.5565675099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364463.931100003421307, 255452.572900000959635 ], [ 364433.522200003266335, 255456.893800001591444 ], [ 364434.476599998772144, 255459.697299998253584 ], [ 364438.42679999768734, 255467.922200001776218 ], [ 364442.393899999558926, 255474.149399999529123 ], [ 364445.969200000166893, 255479.174499999731779 ], [ 364450.946400001645088, 255484.8108000010252 ], [ 364456.536700002849102, 255489.253699999302626 ], [ 364473.826899997889996, 255501.228500001132488 ], [ 364477.617600001394749, 255496.204799998551607 ], [ 364477.659299999475479, 255491.292100001126528 ], [ 364474.852700002491474, 255482.261100001633167 ], [ 364467.215000003576279, 255460.087699998170137 ], [ 364463.931100003421307, 255452.572900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601095700", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-57", "ACRE": ".25", "LONGITUDE": -64.8774221, "LATITUDE": 18.32721406, "OBJECTID_1": 38273, "PARCEL_NO_": "107601095700", "Tax_Legal_": "3G-57 ESTATE MARIENDAHL No.4 RED HOOK QTR.", "Name": "JOSEPH DORMOY, NORMALLY Z.", "Address": "PO Box 9602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 163300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.81690777, "SHAPE_Area": 1193.11044827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364446.413000002503395, 255372.234499998390675 ], [ 364473.215700000524521, 255385.486600000411272 ], [ 364477.387299999594688, 255377.881000000983477 ], [ 364487.816399998962879, 255362.411699999123812 ], [ 364492.39919999986887, 255356.309399999678135 ], [ 364492.430500000715256, 255352.624899998307228 ], [ 364490.793499998748302, 255351.382699999958277 ], [ 364478.897799998521805, 255345.549699999392033 ], [ 364463.971100002527237, 255339.766499999910593 ], [ 364458.736599996685982, 255348.620900001376867 ], [ 364448.735399998724461, 255366.517000000923872 ], [ 364446.413000002503395, 255372.234499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601095600", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-56", "ACRE": ".26", "LONGITUDE": -64.87759327000001, "LATITUDE": 18.3275554, "OBJECTID_1": 38272, "PARCEL_NO_": "107601095600", "Tax_Legal_": "3G-56 MARIENDAHL\nNO.4 RED HOOK QTR", "Name": "Franklin D, Charlene,Chanika & Akil Brathwaite,Sr.", "Address": "173-158 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37300, "Improved_V": 151700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.24617059299999, "SHAPE_Area": 1269.38122899 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364432.6587999984622, 255420.355500001460314 ], [ 364457.923699997365475, 255426.143800001591444 ], [ 364457.649999998509884, 255422.339999999850988 ], [ 364461.070200003683567, 255407.629999998956919 ], [ 364473.215700000524521, 255385.486600000411272 ], [ 364446.413000002503395, 255372.234499998390675 ], [ 364440.728799998760223, 255386.228100001811981 ], [ 364435.770999997854233, 255401.969300001859665 ], [ 364432.6587999984622, 255420.355500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092900", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-59", "ACRE": ".25", "LONGITUDE": -64.87783373000001, "LATITUDE": 18.32738391, "OBJECTID_1": 38246, "PARCEL_NO_": "107601092900", "Tax_Legal_": "3G-59 ESTATE MARIENDAHL No. 4 RED HOOK QTR.", "Name": "BRUNN, ROY & SHERRIL", "Address": "7103 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.660674652, "SHAPE_Area": 978.06718532800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364408.584700003266335, 255395.340999998152256 ], [ 364437.131899997591972, 255397.648600000888109 ], [ 364440.728799998760223, 255386.228100001811981 ], [ 364446.350000001490116, 255372.389499999582767 ], [ 364446.274300001561642, 255372.28999999910593 ], [ 364413.717399999499321, 255359.664000000804663 ], [ 364413.696099996566772, 255359.734900001436472 ], [ 364411.92339999973774, 255374.45890000090003 ], [ 364409.770099997520447, 255385.495000001043081 ], [ 364408.584700003266335, 255395.340999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601096000", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-60", "ACRE": ".23", "LONGITUDE": -64.87788498, "LATITUDE": 18.32772706, "OBJECTID_1": 38276, "PARCEL_NO_": "107601096000", "Tax_Legal_": "3G-60 MARIENDAHL #4 RED HOOK QUARTER", "Name": "DORSETT, CHERYL", "Address": "PO Box 502023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.17241371199999, "SHAPE_Area": 959.654211713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364405.17620000243187, 255436.700199998915195 ], [ 364431.237099997699261, 255437.082400001585484 ], [ 364431.476300001144409, 255434.298700001090765 ], [ 364432.596699997782707, 255420.722600001841784 ], [ 364435.770999997854233, 255401.969300001859665 ], [ 364435.921999998390675, 255401.489999998360872 ], [ 364408.337999999523163, 255399.352600000798702 ], [ 364407.903499998152256, 255411.27250000089407 ], [ 364406.127400003373623, 255426.405900001525879 ], [ 364405.17620000243187, 255436.700199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601096300", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-63", "ACRE": ".23", "LONGITUDE": -64.87757425, "LATITUDE": 18.3285159, "OBJECTID_1": 38279, "PARCEL_NO_": "107601096300", "Tax_Legal_": "3G-63 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "PATRICK, VALECIA C.", "Address": "PO Box 305418", "City": "ST, THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.179483803, "SHAPE_Area": 914.99136659099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364452.288099996745586, 255485.877099998295307 ], [ 364431.02080000191927, 255506.659800000488758 ], [ 364434.650600001215935, 255511.39750000089407 ], [ 364441.991300001740456, 255520.057599999010563 ], [ 364448.546499997377396, 255524.207499999552965 ], [ 364453.890399999916553, 255525.481199998408556 ], [ 364462.207800000905991, 255516.135200001299381 ], [ 364471.785300001502037, 255503.934099998325109 ], [ 364473.826899997889996, 255501.228500001132488 ], [ 364456.536700002849102, 255489.253699999302626 ], [ 364452.288099996745586, 255485.877099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601095500", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-55", "ACRE": ".26", "LONGITUDE": -64.87764555, "LATITUDE": 18.32791621, "OBJECTID_1": 38271, "PARCEL_NO_": "107601095500", "Tax_Legal_": "3G-55 MARIENDAHL NO. 4 RED HOOK QTR", "Name": "RHYMER, CLAUDETTE J. & WAYNE A.", "Address": "PO Box 307825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38700, "Improved_V": 151400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.958688806, "SHAPE_Area": 899.87669753900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364433.522200003266335, 255456.893800001591444 ], [ 364463.931100003421307, 255452.572900000959635 ], [ 364460.750200003385544, 255445.293699998408556 ], [ 364458.386799998581409, 255432.581700000911951 ], [ 364457.923699997365475, 255426.143800001591444 ], [ 364432.6587999984622, 255420.355500001460314 ], [ 364432.596699997782707, 255420.722600001841784 ], [ 364431.476300001144409, 255434.298700001090765 ], [ 364430.807199999690056, 255442.084800001233816 ], [ 364431.338899999856949, 255450.480399999767542 ], [ 364433.522200003266335, 255456.893800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601096100", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-61", "ACRE": ".20", "LONGITUDE": -64.87790843000001, "LATITUDE": 18.32803002, "OBJECTID_1": 38277, "PARCEL_NO_": "107601096100", "Tax_Legal_": "3G-61 MARIENDAHL NO.4 RED HOOK QTR", "Name": "ROBERTS, IVES & GLORIA", "Address": "73 Leighton Rd", "City": "Hyde Park", "State": "Massachusetts", "Zip": 2136, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.714449307, "SHAPE_Area": 752.86186479800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364413.628300003707409, 255481.508000001311302 ], [ 364415.129199996590614, 255465.726399999111891 ], [ 364433.294399999082088, 255456.890299998223782 ], [ 364433.433399997651577, 255456.633099999278784 ], [ 364431.338899999856949, 255450.480399999767542 ], [ 364430.807199999690056, 255442.084800001233816 ], [ 364431.237099997699261, 255437.082400001585484 ], [ 364405.17620000243187, 255436.700199998915195 ], [ 364404.766599997878075, 255441.133400000631809 ], [ 364405.835299998521805, 255460.79450000077486 ], [ 364411.45549999922514, 255478.037799999117851 ], [ 364413.628300003707409, 255481.508000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601096200", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-62", "ACRE": ".23", "LONGITUDE": -64.87777893000001, "LATITUDE": 18.32829223, "OBJECTID_1": 38278, "PARCEL_NO_": "107601096200", "Tax_Legal_": "3G-62 ESTATE BOVONI No.4 RED HOOK QUARTER", "Name": "OTTO, SR. , CLEON H. & TRACELYN", "Address": "PO Box 302430", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26600, "Improved_V": 50100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.83994825400001, "SHAPE_Area": 1071.4544153300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364431.02080000191927, 255506.659800000488758 ], [ 364452.288099996745586, 255485.877099998295307 ], [ 364450.946400001645088, 255484.8108000010252 ], [ 364445.969200000166893, 255479.174499999731779 ], [ 364442.393899999558926, 255474.149399999529123 ], [ 364438.42679999768734, 255467.922200001776218 ], [ 364434.476599998772144, 255459.697299998253584 ], [ 364433.433399997651577, 255456.633099999278784 ], [ 364433.294399999082088, 255456.890299998223782 ], [ 364415.129199996590614, 255465.726399999111891 ], [ 364413.628300003707409, 255481.508000001311302 ], [ 364422.021600000560284, 255494.913600001484156 ], [ 364431.02080000191927, 255506.659800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601095000", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-50", "ACRE": ".24", "LONGITUDE": -64.87703279, "LATITUDE": 18.32733394, "OBJECTID_1": 38266, "PARCEL_NO_": "107601095000", "Tax_Legal_": "3G-50 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "FREEMAN, DORINA", "Address": "PO Box 12355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.198186908, "SHAPE_Area": 980.2901451 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364528.966399997472763, 255368.170800000429153 ], [ 364520.620200000703335, 255363.431699998676777 ], [ 364509.79730000346899, 255359.743500001728535 ], [ 364505.717000000178814, 255358.488899998366833 ], [ 364502.270300000905991, 255358.030900001525879 ], [ 364496.036499999463558, 255364.5287000015378 ], [ 364489.778399996459484, 255373.892099998891354 ], [ 364486.600100003182888, 255378.324599999934435 ], [ 364522.647799998521805, 255396.793299999088049 ], [ 364530.051299996674061, 255368.830400001257658 ], [ 364528.966399997472763, 255368.170800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601094900", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-49", "ACRE": null, "LONGITUDE": -64.87669453, "LATITUDE": 18.32745503, "OBJECTID_1": 38265, "PARCEL_NO_": "107601094900", "Tax_Legal_": "3G-49 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "ANTHONY, LUEN KELMO", "Address": "PO BOX 302494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.28100917099999, "SHAPE_Area": 1230.345569 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364532.31360000371933, 255369.593400001525879 ], [ 364530.622000001370907, 255369.110800001770258 ], [ 364530.385300002992153, 255368.976399999111891 ], [ 364530.1875, 255368.913100000470877 ], [ 364530.051299996674061, 255368.830400001257658 ], [ 364522.647799998521805, 255396.793299999088049 ], [ 364543.342500001192093, 255407.396000001579523 ], [ 364575.512100003659725, 255396.763700000941753 ], [ 364575.550399996340275, 255396.739700000733137 ], [ 364563.273100003600121, 255379.537300001829863 ], [ 364561.814900003373623, 255379.417500000447035 ], [ 364553.388800002634525, 255377.347600001841784 ], [ 364553.064800001680851, 255377.293200001120567 ], [ 364550.616499997675419, 255376.161899998784065 ], [ 364543.744599997997284, 255373.122600000351667 ], [ 364536.760099999606609, 255371.016100000590086 ], [ 364532.31360000371933, 255369.593400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602028900", "MAP": "D9-6791-T000", "PARCEL_NAM": "3J-1A", "ACRE": ".25", "LONGITUDE": -64.87984744000001, "LATITUDE": 18.32551667, "OBJECTID_1": 38460, "PARCEL_NO_": "107602028900", "Tax_Legal_": "3J-1A ESTATE MARIENDAHL NO. 4 RED HOOK QUARTER", "Name": "ROGERS, GEORGE D. & CARVELLE A.", "Address": "6155 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.414795924, "SHAPE_Area": 1189.62652512 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364244.593400001525879, 255158.558800000697374 ], [ 364232.439499996602535, 255144.772799998521805 ], [ 364227.170999996364117, 255149.601300001144409 ], [ 364199.5675999969244, 255171.540199998766184 ], [ 364185.518299996852875, 255184.379999998956919 ], [ 364196.939499996602535, 255199.364900000393391 ], [ 364210.741599999368191, 255188.439399998635054 ], [ 364238.251999996602535, 255164.156199999153614 ], [ 364244.593400001525879, 255158.558800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010200", "MAP": "D9-6791-T000", "PARCEL_NAM": "3J-1 REM", "ACRE": "0.35", "LONGITUDE": -64.879016, "LATITUDE": 18.32491891, "OBJECTID_1": 38302, "PARCEL_NO_": "107602010200", "Tax_Legal_": "PAR 3R-1-2, 3R-1-4 THRU 3R-1-6,3R-1 REM & 3J-1 REM MARIENDAL 4 RED HOOK QTR No.4 RED HOOK QTR", "Name": "LEON MONSANTO SR SIBILINGS FAMILY TRUST", "Address": "PO Box 304352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.71810471500001, "SHAPE_Area": 1418.3927457499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364341.243299998342991, 255098.803199999034405 ], [ 364337.071599997580051, 255081.802200000733137 ], [ 364333.3716000020504, 255083.300200000405312 ], [ 364327.5016999989748, 255085.533700000494719 ], [ 364321.23369999974966, 255088.098499998450279 ], [ 364307.474299997091293, 255094.107599999755621 ], [ 364284.0050999969244, 255103.837900001555681 ], [ 364267.329700000584126, 255113.897799998521805 ], [ 364276.077100001275539, 255130.768399998545647 ], [ 364277.678000003099442, 255134.953299999237061 ], [ 364288.645099997520447, 255126.689800001680851 ], [ 364293.614500001072884, 255122.94539999961853 ], [ 364308.365199998021126, 255111.831000000238419 ], [ 364332.904100000858307, 255102.107599999755621 ], [ 364341.243299998342991, 255098.803199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601090700", "MAP": "A9-604-T003", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87675146, "LATITUDE": 18.3261833, "OBJECTID_1": 38224, "PARCEL_NO_": "107601090700", "Tax_Legal_": "3G-7 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "HYDE, ROBERT O.", "Address": "PO Box 925", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 33000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.28612841376, "SHAPE_Area": 0.0740736843 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364541.118600003421307, 255248.446800000965595 ], [ 364541.242700003087521, 255248.936299998313189 ], [ 364541.44820000231266, 255248.553100001066923 ], [ 364541.118600003421307, 255248.446800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704013200", "MAP": "D9-7620-T005", "PARCEL_NAM": "2A", "ACRE": "2.60", "LONGITUDE": -64.85556427, "LATITUDE": 18.32002661, "OBJECTID_1": 39790, "PARCEL_NO_": "107704013200", "Tax_Legal_": "2A CONS NAZARETH NO.1 RED HOOK QTR.", "Name": "AC HOME GROUP LLC", "Address": "21142 Palese Dr", "City": "Estero", "State": "Florida", "Zip": 33928, "Country": "United States", "Land_Value": 554700, "Improved_V": 562200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 542.88930584000002, "SHAPE_Area": 12692.0221977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366842.040899999439716, 254508.5912000015378 ], [ 366834.011900000274181, 254504.514699999243021 ], [ 366824.285800002515316, 254510.34569999948144 ], [ 366824.244499996304512, 254515.200500000268221 ], [ 366821.798600003123283, 254518.346900001168251 ], [ 366814.498599998652935, 254523.353399999439716 ], [ 366812.86259999871254, 254526.084199998527765 ], [ 366809.614000000059605, 254528.80180000141263 ], [ 366806.336599998176098, 254534.896699998527765 ], [ 366799.86089999973774, 254537.7989999987185 ], [ 366791.000399999320507, 254536.671100001782179 ], [ 366786.96169999986887, 254537.482400000095367 ], [ 366782.942699998617172, 254535.971799999475479 ], [ 366781.382200002670288, 254529.83729999884963 ], [ 366781.432599999010563, 254523.927099999040365 ], [ 366783.869499996304512, 254521.836100000888109 ], [ 366787.087600000202656, 254522.706900000572205 ], [ 366789.510099999606609, 254522.304499998688698 ], [ 366786.335199996829033, 254516.367899999022484 ], [ 366782.30179999768734, 254516.546000000089407 ], [ 366780.701800003647804, 254515.05519999936223 ], [ 366779.121500000357628, 254511.242600001394749 ], [ 366776.715199999511242, 254509.745299998670816 ], [ 366771.862899996340275, 254511.394299998879433 ], [ 366765.349500000476837, 254518.729299999773502 ], [ 366759.683700002729893, 254521.215999998152256 ], [ 366760.30120000243187, 254543.385899998247623 ], [ 366732.073100000619888, 254543.999200001358986 ], [ 366729.632600001990795, 254546.51240000128746 ], [ 366728.137599997222424, 254627.348999999463558 ], [ 366741.034999996423721, 254627.8766999989748 ], [ 366751.49549999833107, 254630.49549999833107 ], [ 366758.727099999785423, 254633.510000001639128 ], [ 366761.127999998629093, 254635.640500001609325 ], [ 366763.351000003516674, 254658.667899999767542 ], [ 366817.402699999511242, 254655.732799999415874 ], [ 366827.897299997508526, 254654.341099999845028 ], [ 366828.764799997210503, 254647.171000000089407 ], [ 366842.040899999439716, 254508.5912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601093200", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-32", "ACRE": null, "LONGITUDE": -64.87518838, "LATITUDE": 18.32758814, "OBJECTID_1": 38249, "PARCEL_NO_": "107601093200", "Tax_Legal_": "3G-32 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "PEMBERTON, ROSIE E. & ESTON", "Address": "PO Box 10368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37300, "Improved_V": 163400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.884834756, "SHAPE_Area": 948.47936049099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364726.002899996936321, 255414.277399998158216 ], [ 364704.516099996864796, 255382.4391999989748 ], [ 364684.018399998545647, 255400.205200001597404 ], [ 364687.24549999833107, 255403.002300001680851 ], [ 364692.107900001108646, 255412.460299998521805 ], [ 364692.765100002288818, 255418.322799999266863 ], [ 364693.02929999679327, 255420.679699998348951 ], [ 364729.656900003552437, 255419.691799998283386 ], [ 364726.002899996936321, 255414.277399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601096400", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-64", "ACRE": ".23", "LONGITUDE": -64.8773125, "LATITUDE": 18.32882704, "OBJECTID_1": 38280, "PARCEL_NO_": "107601096400", "Tax_Legal_": "3G-64 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "MONSANTO, KISHA", "Address": "PO BOX 502621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29000, "Improved_V": 152700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.269423874, "SHAPE_Area": 923.02396947299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364500.599200002849102, 255552.058699999004602 ], [ 364495.848300002515316, 255531.776700001209974 ], [ 364466.810900002717972, 255524.464600000530481 ], [ 364462.086099997162819, 255530.463799998164177 ], [ 364458.735399998724461, 255536.986000001430511 ], [ 364459.91889999806881, 255543.137299999594688 ], [ 364463.587499998509884, 255547.671999998390675 ], [ 364479.580899998545647, 255555.996199999004602 ], [ 364497.731100000441074, 255552.875100001692772 ], [ 364500.599200002849102, 255552.058699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601096500", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-65", "ACRE": ".23", "LONGITUDE": -64.87695225, "LATITUDE": 18.32875346, "OBJECTID_1": 38281, "PARCEL_NO_": "107601096500", "Tax_Legal_": "3G-65 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "PACQUETTE, FITZGERALD & SUSANNA", "Address": "PO Box 303564", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 266800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.67636161300001, "SHAPE_Area": 1126.8161547499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364541.734200000762939, 255540.349300000816584 ], [ 364530.924699999392033, 255513.844200000166893 ], [ 364507.798000000417233, 255518.88060000166297 ], [ 364495.716499999165535, 255531.743500001728535 ], [ 364495.848300002515316, 255531.776700001209974 ], [ 364500.599200002849102, 255552.058699999004602 ], [ 364541.734200000762939, 255540.349300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601093400", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-34", "ACRE": ".23", "LONGITUDE": -64.87549164000001, "LATITUDE": 18.3280649, "OBJECTID_1": 38250, "PARCEL_NO_": "107601093400", "Tax_Legal_": "3G-34 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "WALLACE, HORACE & WALLACE, M", "Address": "7055 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31600, "Improved_V": 201800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.15784295399999, "SHAPE_Area": 1023.86576794 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364649.082000002264977, 255454.034600000828505 ], [ 364657.122000001370907, 255476.208299998193979 ], [ 364695.918300002813339, 255464.051600001752377 ], [ 364685.266000002622604, 255436.592099998146296 ], [ 364675.364699997007847, 255443.842999998480082 ], [ 364649.082000002264977, 255454.034600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601093500", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-35", "ACRE": ".23", "LONGITUDE": -64.87583264, "LATITUDE": 18.32818509, "OBJECTID_1": 38251, "PARCEL_NO_": "107601093500", "Tax_Legal_": "3G-35 ESTATE MARIENDAHL No.4 RED HOOK QTR.", "Name": "JACKSON, RONICE", "Address": "PO Box 7994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26600, "Improved_V": 161200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.89492607, "SHAPE_Area": 812.18706820600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364615.726999998092651, 255466.722699999809265 ], [ 364623.358900003135204, 255487.409000001847744 ], [ 364657.122000001370907, 255476.208299998193979 ], [ 364649.082000002264977, 255454.034600000828505 ], [ 364644.369599997997284, 255455.861900001764297 ], [ 364615.726999998092651, 255466.722699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601093600", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-36", "ACRE": ".23", "LONGITUDE": -64.87616596, "LATITUDE": 18.32830083, "OBJECTID_1": 38252, "PARCEL_NO_": "107601093600", "Tax_Legal_": "3G-36 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "ADAMS, MARVIN G. & MURRICA S. GARCIA", "Address": "6415 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25500, "Improved_V": 273500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.524246769, "SHAPE_Area": 836.47458978700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364579.297600001096725, 255480.056499999016523 ], [ 364585.314300000667572, 255499.821899998933077 ], [ 364623.358900003135204, 255487.409000001847744 ], [ 364615.726999998092651, 255466.722699999809265 ], [ 364596.84740000218153, 255473.881499998271465 ], [ 364579.297600001096725, 255480.056499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601096800", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-68", "ACRE": ".23", "LONGITUDE": -64.8759634, "LATITUDE": 18.3284744, "OBJECTID_1": 38284, "PARCEL_NO_": "107601096800", "Tax_Legal_": "3G-68 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "GRIFFIN, GIGIANNA MARIE", "Address": "7920 Pine Crossings Cir", "City": "Orlando", "State": "Florida", "Zip": 328070000, "Country": "United States", "Land_Value": 33000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.932873104, "SHAPE_Area": 911.99356202299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364603.187200002372265, 255493.990499999374151 ], [ 364610.439800001680851, 255519.787200000137091 ], [ 364627.372400000691414, 255517.129900000989437 ], [ 364641.611000001430511, 255512.673099998384714 ], [ 364632.966499999165535, 255484.221700001507998 ], [ 364623.358900003135204, 255487.409000001847744 ], [ 364603.187200002372265, 255493.990499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601096700", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-67", "ACRE": ".23", "LONGITUDE": -64.87624329000001, "LATITUDE": 18.32855343, "OBJECTID_1": 38283, "PARCEL_NO_": "107601096700", "Tax_Legal_": "3G-67 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "DALEY, MICHAEL R.", "Address": "6550 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33000, "Improved_V": 170200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.196530385, "SHAPE_Area": 792.74564543300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364574.872800000011921, 255502.632500000298023 ], [ 364582.725599996745586, 255529.049699999392033 ], [ 364582.785599999129772, 255529.03319999948144 ], [ 364610.049300000071526, 255519.848499998450279 ], [ 364610.439800001680851, 255519.787200000137091 ], [ 364603.187200002372265, 255493.990499999374151 ], [ 364585.314300000667572, 255499.821899998933077 ], [ 364574.872800000011921, 255502.632500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601097600", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-76", "ACRE": "0.24", "LONGITUDE": -64.87673629, "LATITUDE": 18.32909998, "OBJECTID_1": 38292, "PARCEL_NO_": "107601097600", "Tax_Legal_": "3G-76 EST. MARIENDAHL No.4 REDHOOK QTR", "Name": "PAUL, TOISJEAN & MARYANN", "Address": "Po Box 502492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23900, "Improved_V": 51600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.23009312100001, "SHAPE_Area": 1051.85972795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364521.460100002586842, 255554.537399999797344 ], [ 364535.291500002145767, 255595.035900000482798 ], [ 364535.223200000822544, 255595.245099999010563 ], [ 364558.4983000010252, 255588.86939999833703 ], [ 364558.6266999989748, 255588.693599998950958 ], [ 364545.031800001859665, 255547.592599999159575 ], [ 364521.460100002586842, 255554.537399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601097800", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-78", "ACRE": ".2360", "LONGITUDE": -64.8771797, "LATITUDE": 18.32920878, "OBJECTID_1": 38294, "PARCEL_NO_": "107601097800", "Tax_Legal_": "3G-78 ESTATE MARIENDAHL No.4 RED HOOK QTR.", "Name": "KING, HASKEL", "Address": "PO Box 9833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.067781567, "SHAPE_Area": 1102.06109105 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364513.632799997925758, 255602.073699999600649 ], [ 364513.631700001657009, 255601.976700000464916 ], [ 364498.568400003015995, 255561.058200001716614 ], [ 364471.662100002169609, 255567.459499999880791 ], [ 364467.994599997997284, 255568.090199999511242 ], [ 364469.530500002205372, 255570.183400001376867 ], [ 364496.192900002002716, 255607.737399999052286 ], [ 364513.632799997925758, 255602.073699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601097500", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-75", "ACRE": ".24", "LONGITUDE": -64.8765222, "LATITUDE": 18.32903728, "OBJECTID_1": 38291, "PARCEL_NO_": "107601097500", "Tax_Legal_": "3G-75 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "FLEMING, ANTHONY A. & TRACEY E.", "Address": "PO BOX 303151", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.33916059000001, "SHAPE_Area": 1001.4322541499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364579.807899996638298, 255582.829900000244379 ], [ 364568.055399999022484, 255540.809300001710653 ], [ 364549.577399998903275, 255546.253400001674891 ], [ 364545.031800001859665, 255547.592599999159575 ], [ 364558.6266999989748, 255588.693599998950958 ], [ 364558.4983000010252, 255588.86939999833703 ], [ 364562.67679999768734, 255587.724800001829863 ], [ 364579.771999999880791, 255582.932300001382828 ], [ 364579.807899996638298, 255582.829900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601097400", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-74", "ACRE": ".23", "LONGITUDE": -64.87630561, "LATITUDE": 18.3289778, "OBJECTID_1": 38290, "PARCEL_NO_": "107601097400", "Tax_Legal_": "3G-74 MARIENDAHL NO.4 RED HOOK QTR", "Name": "ANDREWS, KAMESHA T.", "Address": "PO Box 9026", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27800, "Improved_V": 119200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.059528462, "SHAPE_Area": 1081.2559670799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364603.14299999922514, 255576.248100001364946 ], [ 364592.07150000333786, 255533.733500000089407 ], [ 364572.38459999859333, 255539.5337999984622 ], [ 364568.055399999022484, 255540.809300001710653 ], [ 364579.807899996638298, 255582.829900000244379 ], [ 364579.771999999880791, 255582.932300001382828 ], [ 364584.495300002396107, 255581.608199998736382 ], [ 364603.005300000309944, 255576.419100001454353 ], [ 364603.14299999922514, 255576.248100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601097300", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-73", "ACRE": ".2384", "LONGITUDE": -64.87608213, "LATITUDE": 18.32891531, "OBJECTID_1": 38289, "PARCEL_NO_": "107601097300", "Tax_Legal_": "3G-73 ESTATE MARIENDAHL NO. 4 RED HOOK QUARTER", "Name": "THOMAS, SHANELL", "Address": "PO Box 11645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.95811997300001, "SHAPE_Area": 1088.80684303 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364626.837200000882149, 255569.427099999040365 ], [ 364615.501800000667572, 255526.579500000923872 ], [ 364596.832999996840954, 255532.309500001370907 ], [ 364595.107900001108646, 255532.838899999856949 ], [ 364592.07150000333786, 255533.733500000089407 ], [ 364603.14299999922514, 255576.248100001364946 ], [ 364603.005300000309944, 255576.419100001454353 ], [ 364608.665600001811981, 255574.832299999892712 ], [ 364626.705899998545647, 255569.774900000542402 ], [ 364626.837200000882149, 255569.427099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601097100", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-71", "ACRE": ".31", "LONGITUDE": -64.87556431, "LATITUDE": 18.32869031, "OBJECTID_1": 38287, "PARCEL_NO_": "107601097100", "Tax_Legal_": "3G-71 MARIENDAHL NO.4 RED HOOK QTR", "Name": "JOSEPH, ZISKA", "Address": "PO BOX 502836", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.02568737300001, "SHAPE_Area": 991.69305404099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364684.576700001955032, 255527.36259999871254 ], [ 364678.334200002253056, 255507.118700001388788 ], [ 364675.326999999582767, 255508.182000000029802 ], [ 364665.616999998688698, 255511.1706000007689 ], [ 364659.403200000524521, 255513.083099998533726 ], [ 364645.748099997639656, 255517.285900000482798 ], [ 364656.487000003457069, 255555.971400000154972 ], [ 364658.675399996340275, 255552.28660000115633 ], [ 364662.638599999248981, 255547.447399999946356 ], [ 364667.002300001680851, 255541.636999998241663 ], [ 364667.3699000030756, 255541.300200000405312 ], [ 364673.326800003647804, 255535.843299999833107 ], [ 364678.466499999165535, 255531.013999998569489 ], [ 364684.576700001955032, 255527.36259999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802014000", "MAP": "D9-4936-T90", "PARCEL_NAM": null, "ACRE": ".562", "LONGITUDE": -64.83295228, "LATITUDE": 18.32477138, "OBJECTID_1": 40100, "PARCEL_NO_": "107802014000", "Tax_Legal_": "6D-2A ESTATE NAZARETH No.1 REDHOOK QUARTER", "Name": "ANDREW J SMITH REVOCABLE TRUST", "Address": "6501 RED HOOK PMB 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.16326662200001, "SHAPE_Area": 2108.22638908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369205.616300001740456, 255115.434200000017881 ], [ 369155.238799996674061, 255108.664200000464916 ], [ 369142.127400003373623, 255133.254799999296665 ], [ 369169.272299997508526, 255165.140999998897314 ], [ 369174.954300001263618, 255160.75450000166893 ], [ 369184.712700001895428, 255151.124099999666214 ], [ 369193.68469999730587, 255139.165199998766184 ], [ 369202.678199999034405, 255124.67339999973774 ], [ 369205.616300001740456, 255115.434200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86335151, "LATITUDE": 18.32909975, "OBJECTID_1": 39131, "PARCEL_NO_": "107701010900", "Tax_Legal_": "ESTATE FRYDENHOJ RED HOOK QTR", "Name": "LINDO, ELIAS", "Address": "Box 1854", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 553800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2157.4120101499998, "SHAPE_Area": 68022.605082299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366135.175300002098083, 255851.340399999171495 ], [ 366139.216300003230572, 255795.153599999845028 ], [ 366138.658100001513958, 255766.018199998885393 ], [ 366021.219499997794628, 255826.485199999064207 ], [ 366016.951700001955032, 255759.533599998801947 ], [ 366014.584899999201298, 255753.392499998211861 ], [ 366009.844099998474121, 255741.954700000584126 ], [ 366020.684000000357628, 255700.035799998790026 ], [ 365999.854099996387959, 255618.526000000536442 ], [ 365989.535300001502037, 255587.569699998944998 ], [ 365979.776600003242493, 255559.014499999582767 ], [ 365976.813199996948242, 255547.161100000143051 ], [ 365980.315099999308586, 255520.134199999272823 ], [ 365982.832699999213219, 255500.703200001269579 ], [ 365985.068300001323223, 255483.449299998581409 ], [ 366010.627099998295307, 255479.193900000303984 ], [ 365995.14130000025034, 255347.679699998348951 ], [ 365993.299599997699261, 255332.039200000464916 ], [ 365972.399599999189377, 255341.712600000202656 ], [ 365951.955600000917912, 255351.175000000745058 ], [ 365944.053700000047684, 255347.532299999147654 ], [ 365914.649300001561642, 255333.977099999785423 ], [ 365884.751299999654293, 255282.647799998521805 ], [ 365931.098899997770786, 255280.975900001823902 ], [ 365987.049300000071526, 255278.957499999552965 ], [ 365993.640500001609325, 255277.627300001680851 ], [ 365996.235500000417233, 255274.102000001817942 ], [ 365985.496294972777832, 255272.496875456068665 ], [ 365974.6997719106148, 255271.338411299569998 ], [ 365963.864500001072884, 255270.628600001335144 ], [ 365959.841899998486042, 255269.540199998766184 ], [ 365941.662172313896008, 255267.319245122926077 ], [ 365923.405806111521088, 255265.85629183187848 ], [ 365905.104392365319654, 255265.153871632646769 ], [ 365886.789599999785423, 255265.213199999183416 ], [ 365873.15259999781847, 255262.89979999884963 ], [ 365864.65990000218153, 255261.639499999582767 ], [ 365864.88400000333786, 255265.118900001049042 ], [ 365865.475699998438358, 255274.307900000363588 ], [ 365866.25789999961853, 255286.4527000002563 ], [ 365857.800599999725819, 255286.815099999308586 ], [ 365847.737000003457069, 255287.246399998664856 ], [ 365828.516500003635883, 255278.079700000584126 ], [ 365821.940099999308586, 255274.943300001323223 ], [ 365808.931199997663498, 255263.739100001752377 ], [ 365807.634900003671646, 255266.196600001305342 ], [ 365802.935300000011921, 255270.10869999974966 ], [ 365800.362300001084805, 255272.501899998635054 ], [ 365839.5878000035882, 255302.221900001168251 ], [ 365883.392200000584126, 255345.963700000196695 ], [ 365877.158699996769428, 255381.596999999135733 ], [ 365876.100400000810623, 255415.463799998164177 ], [ 365874.2483000010252, 255426.311700001358986 ], [ 365868.722900003194809, 255458.7787000015378 ], [ 365873.976899996399879, 255504.629000000655651 ], [ 365875.463600002229214, 255519.417700000107288 ], [ 365882.19709999859333, 255580.901000000536442 ], [ 365888.952299997210503, 255639.851399999111891 ], [ 365890.464199997484684, 255651.684999998658895 ], [ 365894.985600002110004, 255688.874499998986721 ], [ 365895.719999998807907, 255697.324299998581409 ], [ 365896.488499999046326, 255701.7635000012815 ], [ 365912.436700001358986, 255722.792300000786781 ], [ 365913.04169999808073, 255746.439699999988079 ], [ 365913.617799997329712, 255773.464400000870228 ], [ 365918.455700002610683, 255773.504000000655651 ], [ 365918.3783999979496, 255782.580400001257658 ], [ 365900.635899998247623, 255782.857400000095367 ], [ 365903.548299998044968, 255819.6114999987185 ], [ 365922.098800003528595, 255819.130100000649691 ], [ 365928.425300002098083, 255833.747299998998642 ], [ 365925.89299999922514, 255847.025499999523163 ], [ 365954.220100000500679, 255834.802799999713898 ], [ 365959.075900003314018, 255832.731600001454353 ], [ 365975.263300001621246, 255825.686900001019239 ], [ 365980.103000000119209, 255825.515399999916553 ], [ 365985.748999997973442, 255825.350499998778105 ], [ 366012.405799999833107, 255819.869199998676777 ], [ 366006.459499999880791, 255855.284200001507998 ], [ 366009.959899999201298, 255855.720600001513958 ], [ 366135.175300002098083, 255851.340399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701010900", "MAP": "D9-1046-T72", "PARCEL_NAM": "110-Q", "ACRE": ".23", "LONGITUDE": -64.86210394, "LATITUDE": 18.33170337, "OBJECTID_1": 39131, "PARCEL_NO_": "107701010900", "Tax_Legal_": "ESTATE FRYDENHOJ RED HOOK QTR", "Name": "LINDO, ELIAS", "Address": "Box 1854", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 553800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.28619648200001, "SHAPE_Area": 1397.06490117 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366067.770599998533726, 255853.698300000280142 ], [ 366065.158500000834465, 255890.415399998426437 ], [ 366073.072400003671646, 255892.348600000143051 ], [ 366086.77250000089407, 255893.305100001394749 ], [ 366100.21679999679327, 255892.924199998378754 ], [ 366103.308399997651577, 255852.455099999904633 ], [ 366067.770599998533726, 255853.698300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010200", "MAP": null, "PARCEL_NAM": "3B PORTION REM", "ACRE": null, "LONGITUDE": -64.87978245, "LATITUDE": 18.32508083, "OBJECTID_1": 38302, "PARCEL_NO_": "107602010200", "Tax_Legal_": "PAR 3R-1-2, 3R-1-4 THRU 3R-1-6,3R-1 REM & 3J-1 REM MARIENDAL 4 RED HOOK QTR No.4 RED HOOK QTR", "Name": "LEON MONSANTO SR SIBILINGS FAMILY TRUST", "Address": "PO Box 304352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.37077630099998, "SHAPE_Area": 2891.3642130600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364169.207599997520447, 255147.538600001484156 ], [ 364187.175899997353554, 255170.492899999022484 ], [ 364194.792599998414516, 255164.112799998372793 ], [ 364219.151000000536442, 255144.469399999827147 ], [ 364240.280599996447563, 255125.221700001507998 ], [ 364246.790399998426437, 255118.308899998664856 ], [ 364258.9695999994874, 255108.487199999392033 ], [ 364267.891199998557568, 255102.438499998301268 ], [ 364273.868000000715256, 255099.22410000115633 ], [ 364252.41160000115633, 255074.393500000238419 ], [ 364245.523400001227856, 255079.69990000128746 ], [ 364226.473399996757507, 255109.756700001657009 ], [ 364169.207599997520447, 255147.538600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010200", "MAP": "D9-8421-T010", "PARCEL_NAM": "3B-4", "ACRE": ".457", "LONGITUDE": -64.87933326, "LATITUDE": 18.32427549, "OBJECTID_1": 38302, "PARCEL_NO_": "107602010200", "Tax_Legal_": "PAR 3R-1-2, 3R-1-4 THRU 3R-1-6,3R-1 REM & 3J-1 REM MARIENDAL 4 RED HOOK QTR No.4 RED HOOK QTR", "Name": "LEON MONSANTO SR SIBILINGS FAMILY TRUST", "Address": "PO Box 304352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.79080290900001, "SHAPE_Area": 1323.7713945 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364291.7753000035882, 255017.54450000077486 ], [ 364286.54450000077486, 255010.749499998986721 ], [ 364285.602399997413158, 255011.179999999701977 ], [ 364270.210500001907349, 255019.497699998319149 ], [ 364254.324199996888638, 255025.792100001126528 ], [ 364247.626900002360344, 255042.133200000971556 ], [ 364247.69879999756813, 255042.181000001728535 ], [ 364254.134099997580051, 255065.017900001257658 ], [ 364291.314000003039837, 255032.771800000220537 ], [ 364298.573700003325939, 255026.934599999338388 ], [ 364291.7753000035882, 255017.54450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704035800", "MAP": "D9-7814-T006", "PARCEL_NAM": "9-9-1", "ACRE": ".006", "LONGITUDE": -64.8497766, "LATITUDE": 18.31967833, "OBJECTID_1": 40018, "PARCEL_NO_": "107704035800", "Tax_Legal_": "9-5 & 9-9-1 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 108200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.122748667500005, "SHAPE_Area": 71.740957172600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367389.231100000441074, 254543.714800000190735 ], [ 367415.613899998366833, 254574.502700001001358 ], [ 367391.706799998879433, 254541.165399998426437 ], [ 367389.231100000441074, 254543.714800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704035800", "MAP": "D9-7814-T006", "PARCEL_NAM": "9-5", "ACRE": ".496", "LONGITUDE": -64.84962355, "LATITUDE": 18.31963214, "OBJECTID_1": 40018, "PARCEL_NO_": "107704035800", "Tax_Legal_": "9-5 & 9-9-1 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 108200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.00867372100001, "SHAPE_Area": 1248.8123563 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367415.613899998366833, 254574.502700001001358 ], [ 367432.66330000013113, 254560.92119999974966 ], [ 367439.1587999984622, 254555.697000000625849 ], [ 367413.644500002264977, 254521.713199999183416 ], [ 367405.527400001883507, 254527.979600001126528 ], [ 367391.706799998879433, 254541.165399998426437 ], [ 367415.613899998366833, 254574.502700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803010600", "MAP": "D9-7723-T006", "PARCEL_NAM": "9-45", "ACRE": "1.125", "LONGITUDE": -64.84840257, "LATITUDE": 18.32157887, "OBJECTID_1": 40163, "PARCEL_NO_": "107803010600", "Tax_Legal_": "9-45 CONSOLIDATED EST NAZARETH NO.1 RED HOOK QTR", "Name": "ST. MARK COPTIC ORTHODOX CHURCH", "Address": "PO Box 11397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 177000, "Improved_V": 1119300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.49967882599998, "SHAPE_Area": 5404.1698382000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367518.092500001192093, 254755.61540000140667 ], [ 367512.381800003349781, 254763.379099998623133 ], [ 367503.440499998629093, 254771.749600000679493 ], [ 367497.758500002324581, 254776.136100001633167 ], [ 367492.094499997794628, 254778.411800000816584 ], [ 367480.750399999320507, 254784.862799998372793 ], [ 367533.718900002539158, 254814.427299998700619 ], [ 367567.8699000030756, 254781.142900001257658 ], [ 367586.571599997580051, 254762.930799998342991 ], [ 367587.546899996697903, 254743.096000000834465 ], [ 367586.837700001895428, 254731.691199999302626 ], [ 367532.960400000214577, 254714.151599999517202 ], [ 367531.234499998390675, 254727.4364 ], [ 367528.734600000083447, 254736.915100000798702 ], [ 367523.799699999392033, 254748.273800000548363 ], [ 367518.092500001192093, 254755.61540000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87906193000001, "LATITUDE": 18.32164582, "OBJECTID_1": 38677, "PARCEL_NO_": "107603035500", "Tax_Legal_": "33-56, 33-104 & 33-112 NADIR NO.2 RED HOOK QTR", "Name": "DUNLOP, PATRICK,DERESE A. DUNLOP-HARLEY", "Address": "PO Box 7143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 79500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.161766853700001, "SHAPE_Area": 16.8377881111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364315.523299999535084, 254748.702300000935793 ], [ 364286.44820000231266, 254739.237799998372793 ], [ 364286.302299998700619, 254739.719399999827147 ], [ 364315.250399999320507, 254749.24439999833703 ], [ 364315.523299999535084, 254748.702300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603035500", "MAP": "D9-998-T71", "PARCEL_NAM": null, "ACRE": ".10", "LONGITUDE": -64.87905964, "LATITUDE": 18.32164089, "OBJECTID_1": 38677, "PARCEL_NO_": "107603035500", "Tax_Legal_": "33-56, 33-104 & 33-112 NADIR NO.2 RED HOOK QTR", "Name": "DUNLOP, PATRICK,DERESE A. DUNLOP-HARLEY", "Address": "PO Box 7143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 79500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.545837697499998, "SHAPE_Area": 19.3970794349 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364315.837899997830391, 254748.077399998903275 ], [ 364286.615000002086163, 254738.6875 ], [ 364286.44820000231266, 254739.237799998372793 ], [ 364315.523299999535084, 254748.702300000935793 ], [ 364315.837899997830391, 254748.077399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8438223, "LATITUDE": 18.32187022, "OBJECTID_1": 40513, "PARCEL_NO_": "107803041400", "Tax_Legal_": "TRACT #4 CONSOLIDATED NAZARETH No.1 RED HOOK QTR.", "Name": "RC ST THOMAS LLC", "Address": "1200 S Bartow Rd", "City": "Lakeland", "State": "Florida", "Zip": 33801, "Country": "United States", "Land_Value": 644600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1338.35499411, "SHAPE_Area": 59850.703551699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367973.831399999558926, 254928.43129999935627 ], [ 368047.763999998569489, 254958.167300000786781 ], [ 368089.801899999380112, 254975.827599998563528 ], [ 368112.846900001168251, 254985.508900001645088 ], [ 368132.929200001060963, 254994.539200000464916 ], [ 368173.034400001168251, 255019.565400000661612 ], [ 368176.256099998950958, 255020.013900000602007 ], [ 368186.988099999725819, 254990.759700000286102 ], [ 368175.688900001347065, 254991.933800000697374 ], [ 368158.768899999558926, 254990.317699998617172 ], [ 368147.523699998855591, 254985.159400001168251 ], [ 368129.890900000929832, 254972.560600001364946 ], [ 368118.724799998104572, 254958.114799998700619 ], [ 368109.189400002360344, 254941.57149999961257 ], [ 368099.06870000064373, 254899.058800000697374 ], [ 368096.267899997532368, 254849.217799998819828 ], [ 368097.369099996984005, 254814.607500001788139 ], [ 368099.16330000013113, 254793.301699999719858 ], [ 368103.365699999034405, 254773.282299999147654 ], [ 368107.519500002264977, 254758.961899999529123 ], [ 368118.940999999642372, 254743.434399999678135 ], [ 368140.923600003123283, 254718.705299999564886 ], [ 368158.775799997150898, 254705.552499998360872 ], [ 368166.052400000393391, 254703.290100000798702 ], [ 368188.63629999756813, 254702.630499999970198 ], [ 368206.346400000154972, 254706.153000000864267 ], [ 368216.819499999284744, 254707.294199999421835 ], [ 368227.297899998724461, 254707.802099999040365 ], [ 368229.727700002491474, 254706.555399999022484 ], [ 368111.537799999117851, 254665.902499999850988 ], [ 368048.020700000226498, 254644.062199998646975 ], [ 368039.176500000059605, 254641.034499999135733 ], [ 368036.764700002968311, 254640.170400001108646 ], [ 367975.659400001168251, 254619.194200001657009 ], [ 367883.045299999415874, 254889.269200000911951 ], [ 367973.831399999558926, 254928.43129999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107801021400", "MAP": "D9-7337-T004", "PARCEL_NAM": "5-33 REM", "ACRE": "4.54", "LONGITUDE": -64.8451371, "LATITUDE": 18.32297796, "OBJECTID_1": 40048, "PARCEL_NO_": "107801021400", "Tax_Legal_": "5-33 REM. ESTATE NAZARETH No.1 RED HOOK QTR", "Name": "MULLER GRANT 5-33 LLC", "Address": "1000 Blackbeards Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 426000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 758.29376103300001, "SHAPE_Area": 15715.081130500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368042.223700001835823, 254980.454799998551607 ], [ 368051.526900000870228, 254959.748199999332428 ], [ 368047.763999998569489, 254958.167300000786781 ], [ 367973.831399999558926, 254928.43129999935627 ], [ 367883.045299999415874, 254889.269200000911951 ], [ 367784.462300002574921, 254818.801500000059605 ], [ 367771.586499996483326, 254815.740800000727177 ], [ 367774.551899999380112, 254831.968299999833107 ], [ 367774.257299996912479, 254834.907900001853704 ], [ 367780.344099998474121, 254846.729400001466274 ], [ 367796.579099997878075, 254867.465399999171495 ], [ 367809.900700002908707, 254882.826699998229742 ], [ 367819.200099997222424, 254896.548300001770258 ], [ 367823.929799996316433, 254909.695300001651049 ], [ 367825.72749999910593, 254919.607299998402596 ], [ 367825.312399998307228, 254936.454300001263618 ], [ 367822.236599996685982, 254949.801100000739098 ], [ 367818.917300000786781, 254960.203600000590086 ], [ 367813.103699997067451, 254958.99100000038743 ], [ 367813.002999998629093, 254970.8114 ], [ 367825.092200003564358, 254971.543499998748302 ], [ 367835.54730000346899, 254974.7956000007689 ], [ 367841.162799999117851, 254978.219000000506639 ], [ 367852.427699998021126, 254981.055399999022484 ], [ 367862.094499997794628, 254982.190000001341105 ], [ 367875.805399999022484, 254981.879999998956919 ], [ 367888.728000000119209, 254979.4527000002563 ], [ 367897.624399997293949, 254976.359000001102686 ], [ 367903.302799999713898, 254972.394799999892712 ], [ 367912.211800001561642, 254967.823699999600649 ], [ 367936.469499997794628, 254960.000599998980761 ], [ 367948.580300003290176, 254958.19990000128746 ], [ 367961.486699998378754, 254957.6722999997437 ], [ 367977.602200001478195, 254959.070700000971556 ], [ 368002.547499999403954, 254965.185499999672174 ], [ 368022.649599999189377, 254971.893899999558926 ], [ 368042.223700001835823, 254980.454799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702031300", "MAP": "A9-537-T99", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.85704081, "LATITUDE": 18.3281311, "OBJECTID_1": 39564, "PARCEL_NO_": "107702031300", "Tax_Legal_": "M-1 REM. & M-A ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "TONGE, SHERMA L.", "Address": "PO Box 502351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30700, "Improved_V": 228200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.16768371800001, "SHAPE_Area": 863.85855357499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366608.509999997913837, 255468.108199998736382 ], [ 366612.398400001227856, 255501.164000000804663 ], [ 366632.89360000193119, 255500.132500000298023 ], [ 366637.073399998247623, 255463.02589999884367 ], [ 366633.927799999713898, 255463.352800000458956 ], [ 366612.121399998664856, 255467.396200001239777 ], [ 366608.509999997913837, 255468.108199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "A9-537-T99", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85676769, "LATITUDE": 18.32870605, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.56600582300001, "SHAPE_Area": 7481.9440225799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366700.116800002753735, 255587.696600001305342 ], [ 366700.597099997103214, 255541.095600001513958 ], [ 366699.62389999628067, 255533.149300001561642 ], [ 366686.888999998569489, 255520.097199998795986 ], [ 366673.365500003099442, 255511.832299999892712 ], [ 366673.357400000095367, 255511.823300000280142 ], [ 366655.773199997842312, 255504.471000000834465 ], [ 366632.89360000193119, 255500.132500000298023 ], [ 366612.398400001227856, 255501.164000000804663 ], [ 366608.509999997913837, 255468.108199998736382 ], [ 366600.813199996948242, 255469.625599998980761 ], [ 366618.306500002741814, 255593.258600000292063 ], [ 366700.116800002753735, 255587.696600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704016300", "MAP": "D9-7318-T003", "PARCEL_NAM": "2H-1A", "ACRE": ".04", "LONGITUDE": -64.85069501, "LATITUDE": 18.31667891, "OBJECTID_1": 39873, "PARCEL_NO_": "107704016300", "Tax_Legal_": "2H-2&2H-1A NAZARETH No.1 RED HOOK QTR.", "Name": "SPARKS, SUSANA", "Address": "16525 SW Whitetail Ln", "City": "Beaverton", "State": "Oregon", "Zip": 97007, "Country": "United States", "Land_Value": 172900, "Improved_V": 439400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.885125143699995, "SHAPE_Area": 189.99565491499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367301.801100000739098, 254204.459199998527765 ], [ 367300.021799996495247, 254205.217399999499321 ], [ 367297.479000002145767, 254220.330400001257658 ], [ 367304.366899996995926, 254225.784600000828505 ], [ 367308.677799999713898, 254232.864900000393391 ], [ 367311.690099999308586, 254236.3597999997437 ], [ 367313.686599999666214, 254234.019000001251698 ], [ 367301.801100000739098, 254204.459199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704025900", "MAP": "D9-7318-T003", "PARCEL_NAM": "2H-2A", "ACRE": ".007", "LONGITUDE": -64.85078676000001, "LATITUDE": 18.31635601, "OBJECTID_1": 39969, "PARCEL_NO_": "107704025900", "Tax_Legal_": "2H-1,2H-2A & GREENBELT EASEMENT NAZARETH RED HOOK QUARTER", "Name": "WHITE BAY GROUP LLLP", "Address": "6100 RED HOOK PLAZA SUITE C-1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 259600, "Improved_V": 467800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.129146695599999, "SHAPE_Area": 20.037100495800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367296.162100002169609, 254190.43470000103116 ], [ 367297.059399999678135, 254181.665100000798702 ], [ 367292.519400000572205, 254181.375100001692772 ], [ 367296.162100002169609, 254190.43470000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022600", "MAP": "D9-5407-T92", "PARCEL_NAM": "4B-13", "ACRE": ".007", "LONGITUDE": -64.86240506, "LATITUDE": 18.32542112, "OBJECTID_1": 39232, "PARCEL_NO_": "107701022600", "Tax_Legal_": "4B-5 & 4B-13 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "HERCULES, ELZEVA", "Address": "PO Box 307272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 51500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.562810264999996, "SHAPE_Area": 70.059981365200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366078.360100001096725, 255176.995799999684095 ], [ 366048.541400000452995, 255175.010299999266863 ], [ 366048.501400001347065, 255179.706700000911951 ], [ 366078.360100001096725, 255176.995799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603038500", "MAP": "D9-7739-T006", "PARCEL_NAM": "33Q", "ACRE": ".03", "LONGITUDE": -64.87986684000001, "LATITUDE": 18.3198734, "OBJECTID_1": 38707, "PARCEL_NO_": "107603038500", "Tax_Legal_": "33Q ESTATE NADIR No.2 RED HOOK QTR.", "Name": "DANET, VINCENT", "Address": "PO Box 12426", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.5277310938, "SHAPE_Area": 162.450319315 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364222.241899996995926, 254554.663699999451637 ], [ 364223.097499996423721, 254538.897999998182058 ], [ 364212.962899997830391, 254538.932100001722574 ], [ 364213.957099996507168, 254558.416000001132488 ], [ 364222.241899996995926, 254554.663699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011800", "MAP": "D9-5966-T95", "PARCEL_NAM": "8-5A-1", "ACRE": ".50", "LONGITUDE": -64.84519545000001, "LATITUDE": 18.31433191, "OBJECTID_1": 42264, "PARCEL_NO_": "109701011800", "Tax_Legal_": "8-5A-1 NAZARETH RED HOOK QTR", "Name": "JOEL FINLEY FAMILY TRUST III", "Address": "PO Box 1000", "City": "Sandwich", "State": "Massachusetts", "Zip": 2563, "Country": "United States", "Land_Value": 224100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.99347214599999, "SHAPE_Area": 1404.5083085599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367915.078500002622604, 253984.736800000071526 ], [ 367911.019900001585484, 253977.08729999884963 ], [ 367903.385300002992153, 253953.444200001657009 ], [ 367892.756399996578693, 253950.554699998348951 ], [ 367885.897799998521805, 253946.715700000524521 ], [ 367872.523699998855591, 253947.283700000494719 ], [ 367850.758599996566772, 253946.472300000488758 ], [ 367896.353399999439716, 253989.697399999946356 ], [ 367904.405699998140335, 253991.029899999499321 ], [ 367906.842600002884865, 253988.938900001347065 ], [ 367914.941699996590614, 253984.783300001174212 ], [ 367915.078500002622604, 253984.736800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011700", "MAP": "D9-5966-T95", "PARCEL_NAM": "8-5A", "ACRE": ".41", "LONGITUDE": -64.84478436000001, "LATITUDE": 18.31430298, "OBJECTID_1": 42263, "PARCEL_NO_": "109701011700", "Tax_Legal_": "8-5A REM NAZARETH NO. 1 REDHOOK QUARTER", "Name": "JOEL FINLEY FAMILY TRUST III", "Address": "PO Box 1000", "City": "Sandwich", "State": "Massachusetts", "Zip": 2563, "Country": "United States", "Land_Value": 345800, "Improved_V": 828900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.20259237, "SHAPE_Area": 2061.93243906 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367885.897799998521805, 253946.715700000524521 ], [ 367892.756399996578693, 253950.554699998348951 ], [ 367903.385300002992153, 253953.444200001657009 ], [ 367911.019900001585484, 253977.08729999884963 ], [ 367915.078500002622604, 253984.736800000071526 ], [ 367919.793999999761581, 253983.134300000965595 ], [ 367923.865099996328354, 253978.523499999195337 ], [ 367925.493900001049042, 253976.636999998241663 ], [ 367935.1570999994874, 253978.193799998611212 ], [ 367941.537500001490116, 253986.47859999909997 ], [ 367948.787100002169609, 253987.38230000063777 ], [ 367955.244800001382828, 253986.590799998492002 ], [ 367964.144799999892712, 253983.075100000947714 ], [ 367946.785300001502037, 253938.392299998551607 ], [ 367938.700599998235703, 253940.859200000762939 ], [ 367923.357299998402596, 253943.477899998426437 ], [ 367900.757200002670288, 253946.037099998444319 ], [ 367897.530100002884865, 253946.221799999475479 ], [ 367885.897799998521805, 253946.715700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701010800", "MAP": "D9-8000-T007", "PARCEL_NAM": "8-13", "ACRE": ".72", "LONGITUDE": -64.84568134, "LATITUDE": 18.31202433, "OBJECTID_1": 42255, "PARCEL_NO_": "109701010800", "Tax_Legal_": "8-12&8-13 ESTATE NAZARETH 1 RED HOOK", "Name": "STONE MANOR INV. CORP. C/O", "Address": "7 MERCY COURT", "City": "POTOMAC", "State": "Maryland", "Zip": 20854, "Country": "United States", "Land_Value": 575500, "Improved_V": 102000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.36530236499999, "SHAPE_Area": 2395.9377981100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367839.012299999594688, 253680.273400001227856 ], [ 367805.72240000218153, 253687.962400000542402 ], [ 367804.512500002980232, 253695.736800000071526 ], [ 367837.292599998414516, 253728.724599998444319 ], [ 367840.267899997532368, 253758.090900000184774 ], [ 367855.656199999153614, 253750.195300001651049 ], [ 367854.910999998450279, 253743.012099999934435 ], [ 367856.534400001168251, 253741.758799999952316 ], [ 367857.367700003087521, 253738.599199999123812 ], [ 367857.542099997401237, 253718.124499998986721 ], [ 367863.928300000727177, 253716.962799999862909 ], [ 367853.887299999594688, 253688.645599998533726 ], [ 367857.062299996614456, 253676.104400001466274 ], [ 367839.012299999594688, 253680.273400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701010800", "MAP": "D9-8000-T007", "PARCEL_NAM": "8-12", "ACRE": ".90", "LONGITUDE": -64.84545377000001, "LATITUDE": 18.31184425, "OBJECTID_1": 42255, "PARCEL_NO_": "109701010800", "Tax_Legal_": "8-12&8-13 ESTATE NAZARETH 1 RED HOOK", "Name": "STONE MANOR INV. CORP. C/O", "Address": "7 MERCY COURT", "City": "POTOMAC", "State": "Maryland", "Zip": 20854, "Country": "United States", "Land_Value": 575500, "Improved_V": 102000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.38964811300002, "SHAPE_Area": 3024.3171619599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367839.012299999594688, 253680.273400001227856 ], [ 367857.062299996614456, 253676.104400001466274 ], [ 367853.887299999594688, 253688.645599998533726 ], [ 367863.928300000727177, 253716.962799999862909 ], [ 367866.425999999046326, 253716.508499998599291 ], [ 367867.776000000536442, 253747.339200001209974 ], [ 367869.381499998271465, 253748.196699999272823 ], [ 367899.668200001120567, 253695.249000001698732 ], [ 367897.314000003039837, 253687.630399998277426 ], [ 367893.327399998903275, 253682.32039999961853 ], [ 367890.991099998354912, 253672.590999998152256 ], [ 367885.375699996948242, 253669.167599998414516 ], [ 367881.385499998927116, 253664.279699999839067 ], [ 367874.947599999606609, 253662.749400001019239 ], [ 367870.919600002467632, 253662.294199999421835 ], [ 367866.053000003099442, 253665.631900001317263 ], [ 367860.399800002574921, 253666.641100000590086 ], [ 367855.543999999761581, 253668.71229999884963 ], [ 367847.497000001370907, 253666.746599998325109 ], [ 367842.729299999773502, 253658.474899999797344 ], [ 367829.009400002658367, 253659.840300001204014 ], [ 367824.16610000282526, 253660.433899998664856 ], [ 367816.839199997484684, 253668.606600001454353 ], [ 367815.188799999654293, 253673.026099998503923 ], [ 367810.313100002706051, 253677.419100001454353 ], [ 367806.218599997460842, 253684.773899998515844 ], [ 367805.72240000218153, 253687.962400000542402 ], [ 367839.012299999594688, 253680.273400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020400", "MAP": "D9-8073-T008", "PARCEL_NAM": "5-35", "ACRE": ".673", "LONGITUDE": -64.84389937, "LATITUDE": 18.31976824, "OBJECTID_1": 40198, "PARCEL_NO_": "107803020400", "Tax_Legal_": "5 REMAINDER ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "FOSTER, JOHN F. TRUSTEE", "Address": "6900 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 369800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.52732308999998, "SHAPE_Area": 2642.4478836600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368003.826399996876717, 254516.92960000038147 ], [ 367988.415799997746944, 254541.616200000047684 ], [ 368028.949699997901917, 254610.975499998778105 ], [ 368041.782399997115135, 254619.102099999785423 ], [ 368036.764700002968311, 254640.170400001108646 ], [ 368039.176500000059605, 254641.034499999135733 ], [ 368045.027400001883507, 254616.806600000709295 ], [ 368045.99379999935627, 254598.027199998497963 ], [ 368044.453100003302097, 254589.570900000631809 ], [ 368042.887199997901917, 254584.069600000977516 ], [ 368029.454999998211861, 254551.662399999797344 ], [ 368010.35530000180006, 254521.953000001609325 ], [ 368003.826399996876717, 254516.92960000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020400", "MAP": "D9-8073-T008", "PARCEL_NAM": "5-36", "ACRE": ".522", "LONGITUDE": -64.84434388, "LATITUDE": 18.31940118, "OBJECTID_1": 40198, "PARCEL_NO_": "107803020400", "Tax_Legal_": "5 REMAINDER ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "FOSTER, JOHN F. TRUSTEE", "Address": "6900 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 369800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.54167902200001, "SHAPE_Area": 2013.94765347 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367965.502099998295307, 254497.216699998825788 ], [ 367952.631700001657009, 254525.454599998891354 ], [ 367952.825499996542931, 254564.013000000268221 ], [ 367988.415799997746944, 254541.616200000047684 ], [ 368003.826399996876717, 254516.92960000038147 ], [ 367988.725100003182888, 254505.310600001364946 ], [ 367979.891599997878075, 254501.016499999910593 ], [ 367969.436499997973442, 254497.764499999582767 ], [ 367965.502099998295307, 254497.216699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803020400", "MAP": "D9-8073-T008", "PARCEL_NAM": "5-37", "ACRE": ".528", "LONGITUDE": -64.84471601, "LATITUDE": 18.31924651, "OBJECTID_1": 40198, "PARCEL_NO_": "107803020400", "Tax_Legal_": "5 REMAINDER ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "FOSTER, JOHN F. TRUSTEE", "Address": "6900 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 369800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.726004472, "SHAPE_Area": 1412.55727226 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367909.350000001490116, 254497.163400001823902 ], [ 367907.469499997794628, 254500.738899998366833 ], [ 367906.570799998939037, 254514.444899998605251 ], [ 367908.368299998342991, 254517.815200001001358 ], [ 367910.839800000190735, 254520.286800000816584 ], [ 367911.513899996876717, 254523.432399999350309 ], [ 367952.631700001657009, 254525.454599998891354 ], [ 367965.502099998295307, 254497.216699998825788 ], [ 367959.771600000560284, 254496.418800000101328 ], [ 367912.188400000333786, 254497.295899998396635 ], [ 367909.350000001490116, 254497.163400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107803042600", "MAP": null, "PARCEL_NAM": "8-4", "ACRE": null, "LONGITUDE": -64.8432834, "LATITUDE": 18.31910317, "OBJECTID_1": 40522, "PARCEL_NO_": "107803042600", "Tax_Legal_": "8-4 NAZARETH/ROAD PARCLS RED HOOK QTR.", "Name": "COWPET BAY-EAST", "Address": "2270 Interlaken Ln", "City": "Eustis", "State": "Florida", "Zip": 32726, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 363.43011700300002, "SHAPE_Area": 2896.6733723799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368105.069700002670288, 254478.609600000083447 ], [ 368087.255300000309944, 254487.329700000584126 ], [ 368060.531900003552437, 254500.620999999344349 ], [ 368007.246899999678135, 254508.206399999558926 ], [ 368012.052400000393391, 254512.045400001108646 ], [ 368017.6587999984622, 254516.524300001561642 ], [ 368027.208700001239777, 254531.379000000655651 ], [ 368090.30969999730587, 254507.408599998801947 ], [ 368147.028499998152256, 254475.364399999380112 ], [ 368164.052699998021126, 254464.738000001758337 ], [ 368159.299400001764297, 254454.777699999511242 ], [ 368160.13629999756813, 254451.195900000631809 ], [ 368105.069700002670288, 254478.609600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107801020700", "MAP": "F9-2213-T68", "PARCEL_NAM": "9G-2", "ACRE": "0.46", "LONGITUDE": -64.84624216, "LATITUDE": 18.32292955, "OBJECTID_1": 40042, "PARCEL_NO_": "107801020700", "Tax_Legal_": "9G-2 NAZARETH RED HOOK QTR", "Name": "TURQUOISE ADAMS 49 G LLC", "Address": "1000 Blackbeards Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 102600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.571459516, "SHAPE_Area": 1812.7355319400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367754.015299998223782, 254951.136999998241663 ], [ 367763.084399998188019, 254944.136300001293421 ], [ 367780.798299998044968, 254937.759300000965595 ], [ 367785.436599999666214, 254937.759300000965595 ], [ 367788.343500003218651, 254931.135000001639128 ], [ 367789.236199997365475, 254921.009899999946356 ], [ 367789.26129999756813, 254918.054800000041723 ], [ 367781.469700001180172, 254886.115899998694658 ], [ 367769.357100002467632, 254888.127700001001358 ], [ 367751.569600000977516, 254893.681600000709295 ], [ 367754.015299998223782, 254951.136999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107801020600", "MAP": "F9-2207-T68", "PARCEL_NAM": "9G-1", "ACRE": "0.46", "LONGITUDE": -64.84658936, "LATITUDE": 18.3229774, "OBJECTID_1": 40041, "PARCEL_NO_": "107801020600", "Tax_Legal_": "NAZARETH 9G-1 RED HOOK QTR", "Name": "TURQUOISE ADAMS 49 G LLC", "Address": "1000 Blackbeards Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 86600, "Improved_V": 404100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.09324667600001, "SHAPE_Area": 2579.17682956 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367724.376900002360344, 254962.064500000327826 ], [ 367749.621799997985363, 254954.528499998152256 ], [ 367754.015299998223782, 254951.136999998241663 ], [ 367751.569600000977516, 254893.681600000709295 ], [ 367743.50110000371933, 254894.2489 ], [ 367725.015299998223782, 254887.131499998271465 ], [ 367705.696099996566772, 254883.173700001090765 ], [ 367724.376900002360344, 254962.064500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107801020800", "MAP": "F9-2216-T68", "PARCEL_NAM": "9G-3", "ACRE": null, "LONGITUDE": -64.84593302, "LATITUDE": 18.32291038, "OBJECTID_1": 40043, "PARCEL_NO_": "107801020800", "Tax_Legal_": "NAZARETH 9G-3 RED HOOK QTR", "Name": "TURQUOISE ADAMS 49 G LLC", "Address": "1000 Blackbeards Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 104800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.625303468, "SHAPE_Area": 1671.65017668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367785.436599999666214, 254937.759300000965595 ], [ 367795.205600000917912, 254937.759300000965595 ], [ 367810.32150000333786, 254945.0810999982059 ], [ 367811.133799999952316, 254949.142200000584126 ], [ 367813.989100001752377, 254949.710099998861551 ], [ 367817.302400000393391, 254939.3935999982059 ], [ 367818.995999999344349, 254929.908300001174212 ], [ 367819.137999996542931, 254913.232999999076128 ], [ 367814.425999999046326, 254898.417899999767542 ], [ 367808.862800002098083, 254888.873199999332428 ], [ 367805.668099999427795, 254885.258400000631809 ], [ 367781.469700001180172, 254886.115899998694658 ], [ 367789.26129999756813, 254918.054800000041723 ], [ 367789.236199997365475, 254921.009899999946356 ], [ 367788.343500003218651, 254931.135000001639128 ], [ 367785.436599999666214, 254937.759300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107801020500", "MAP": "G9-644-T62", "PARCEL_NAM": "9F", "ACRE": "0.45", "LONGITUDE": -64.84624674, "LATITUDE": 18.32339643, "OBJECTID_1": 40040, "PARCEL_NO_": "107801020500", "Tax_Legal_": "9F estate nazareth No.1 red hook quarter", "Name": "PILLSBURY PIERCE F LLC", "Address": "1000 Blackbeards Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 155900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.90839023199999, "SHAPE_Area": 3551.6149866000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367753.170999996364117, 255005.552799999713898 ], [ 367760.340899996459484, 254999.933499999344349 ], [ 367766.026399999856949, 254995.124800000339746 ], [ 367793.61370000243187, 254975.08559999987483 ], [ 367805.738899998366833, 254971.5962999984622 ], [ 367813.002999998629093, 254970.8114 ], [ 367813.103699997067451, 254958.99100000038743 ], [ 367811.133799999952316, 254949.142200000584126 ], [ 367810.32150000333786, 254945.0810999982059 ], [ 367795.205600000917912, 254937.759300000965595 ], [ 367785.436599999666214, 254937.759300000965595 ], [ 367780.798299998044968, 254937.759300000965595 ], [ 367763.084399998188019, 254944.136300001293421 ], [ 367751.060199998319149, 254953.418099999427795 ], [ 367749.621799997985363, 254954.528499998152256 ], [ 367724.376900002360344, 254962.064500000327826 ], [ 367730.59179999679327, 254989.7685999982059 ], [ 367738.505300000309944, 254995.189100001007318 ], [ 367753.170999996364117, 255005.552799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107801020900", "MAP": "D9-4174-T87", "PARCEL_NAM": "9B-A", "ACRE": "1.35", "LONGITUDE": -64.84849677, "LATITUDE": 18.32387589, "OBJECTID_1": 40044, "PARCEL_NO_": "107801020900", "Tax_Legal_": "9B-A NAZARETH RED HOOK QTR.", "Name": "VP MARINA LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 483500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 551.962610789, "SHAPE_Area": 3678.9532091699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367618.473800003528595, 255088.276000000536442 ], [ 367560.353299997746944, 255025.400100000202656 ], [ 367538.344700001180172, 255038.889199998229742 ], [ 367516.633100003004074, 255005.334800001233816 ], [ 367507.096900001168251, 254984.095300000160933 ], [ 367483.690099999308586, 254948.551600001752377 ], [ 367473.9341000020504, 254936.228199999779463 ], [ 367467.218599997460842, 254927.74549999833107 ], [ 367448.14639999717474, 254912.574400000274181 ], [ 367445.521099999547005, 254911.480500001460314 ], [ 367452.150799997150898, 254923.739399999380112 ], [ 367465.553199999034405, 254941.590700000524521 ], [ 367468.097199998795986, 254944.979299999773502 ], [ 367491.903599999845028, 254990.137099999934435 ], [ 367493.496399998664856, 254992.472100000828505 ], [ 367526.166799999773502, 255038.335700001567602 ], [ 367529.956699997186661, 255044.030299998819828 ], [ 367534.924800001084805, 255051.495200000703335 ], [ 367556.432700000703335, 255082.490899998694658 ], [ 367587.241599999368191, 255062.900299999862909 ], [ 367618.473800003528595, 255088.276000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107801020200", "MAP": "D9-7430-T004", "PARCEL_NAM": "REM CONS 9B", "ACRE": "10.01 +/-", "LONGITUDE": -64.84763712, "LATITUDE": 18.32288461, "OBJECTID_1": 40039, "PARCEL_NO_": "107801020200", "Tax_Legal_": "9B(CONSOLIDATED)NAZARETH No.1 RED HOOK QTR.", "Name": "REDHOOK HAYES B REM LLC", "Address": "1000 Blackbeards Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 739300, "Improved_V": 9800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1041.8271322600001, "SHAPE_Area": 37421.492963700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367445.521099999547005, 254911.480500001460314 ], [ 367448.14639999717474, 254912.574400000274181 ], [ 367467.218599997460842, 254927.74549999833107 ], [ 367473.9341000020504, 254936.228199999779463 ], [ 367572.549400001764297, 254873.129599999636412 ], [ 367637.134900003671646, 254976.726500000804663 ], [ 367625.864900000393391, 255031.342399999499321 ], [ 367672.498000003397465, 255086.719200000166893 ], [ 367689.621699996292591, 255066.271299999207258 ], [ 367690.444200001657009, 255064.378199998289347 ], [ 367718.915100000798702, 255035.269200000911951 ], [ 367742.481499999761581, 255013.930599998682737 ], [ 367753.38740000128746, 255005.383200000971556 ], [ 367738.505300000309944, 254995.189100001007318 ], [ 367730.591899998486042, 254989.7685999982059 ], [ 367724.376900002360344, 254962.064500000327826 ], [ 367705.696099996566772, 254883.173700001090765 ], [ 367703.35809999704361, 254873.655299998819828 ], [ 367698.674900002777576, 254855.462900001555681 ], [ 367690.669299997389317, 254848.642400000244379 ], [ 367586.571599997580051, 254762.930799998342991 ], [ 367567.8699000030756, 254781.142900001257658 ], [ 367533.718900002539158, 254814.427299998700619 ], [ 367506.88400000333786, 254840.805399999022484 ], [ 367476.796899996697903, 254870.323399998247623 ], [ 367441.830600000917912, 254904.656500000506639 ], [ 367445.521099999547005, 254911.480500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802020100", "MAP": "D9-7416-T004", "PARCEL_NAM": "6L", "ACRE": "4.820", "LONGITUDE": -64.84057852, "LATITUDE": 18.3249236, "OBJECTID_1": 40107, "PARCEL_NO_": "107802020100", "Tax_Legal_": "6L REMAINDER NAZARETH No.1 RED HOOK QUARTER", "Name": "DEVELOPMENT PARTNERS INTERNATIONAL LLC", "Address": "PO Box 490", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 948000, "Improved_V": 29800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 350.43235403599999, "SHAPE_Area": 7154.8699174399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368422.361199997365475, 255107.611000001430511 ], [ 368361.177500002086163, 255083.800000000745058 ], [ 368358.735200002789497, 255086.52419999986887 ], [ 368353.803800001740456, 255097.460700001567602 ], [ 368345.612999998033047, 255112.381299998611212 ], [ 368339.088799998164177, 255120.982799999415874 ], [ 368331.804999999701977, 255124.089600000530481 ], [ 368311.989500001072884, 255178.389499999582767 ], [ 368336.117799997329712, 255185.764199998229742 ], [ 368368.258799999952316, 255199.114999998360872 ], [ 368376.102799996733665, 255202.934900000691414 ], [ 368386.630500003695488, 255170.679000001400709 ], [ 368396.414800003170967, 255153.506499998271465 ], [ 368412.389200001955032, 255131.940999999642372 ], [ 368422.361199997365475, 255107.611000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107801021100", "MAP": "D9-6004-T85", "PARCEL_NAM": "6L-30", "ACRE": "3.37", "LONGITUDE": -64.84137148000001, "LATITUDE": 18.32465018, "OBJECTID_1": 40045, "PARCEL_NO_": "107801021100", "Tax_Legal_": "6L-29 NAZARETH No.1 RED HOOK QUARTER", "Name": "DEVELOPMENT PARTNERS INTERNATONAL LLC", "Address": "824 8th Ave", "City": "Bethlehem", "State": "Pennsylvania", "Zip": 18018, "Country": "United States", "Land_Value": 192500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 642.37126414700003, "SHAPE_Area": 12912.708583600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368270.800200000405312, 255047.304699998348951 ], [ 368254.925200000405312, 255040.954700000584126 ], [ 368245.400200001895428, 255037.462200000882149 ], [ 368232.065200001001358, 255032.699700001627207 ], [ 368220.95269999653101, 255030.477200001478195 ], [ 368213.967699997127056, 255030.159699998795986 ], [ 368204.388899996876717, 255030.587799999862909 ], [ 368186.649999998509884, 255030.442600000649691 ], [ 368173.763400003314018, 255028.648299999535084 ], [ 368168.819399997591972, 255041.062399998307228 ], [ 368197.789099998772144, 255048.054499998688698 ], [ 368208.211900003254414, 255055.105900000780821 ], [ 368219.60809999704361, 255042.533599998801947 ], [ 368243.574500001966953, 255068.905299998819828 ], [ 368267.431199997663498, 255108.152899999171495 ], [ 368247.214100003242493, 255114.953499998897314 ], [ 368246.361000001430511, 255120.434900000691414 ], [ 368246.98030000180006, 255142.393699999898672 ], [ 368248.492299996316433, 255154.227400001138449 ], [ 368254.782700002193451, 255173.066199999302626 ], [ 368262.727200001478195, 255187.063400000333786 ], [ 368272.302199997007847, 255198.962999999523163 ], [ 368279.501500003039837, 255205.776900000870228 ], [ 368293.928800001740456, 255216.027499999850988 ], [ 368311.989500001072884, 255178.389499999582767 ], [ 368331.804999999701977, 255124.089600000530481 ], [ 368339.088799998164177, 255120.982799999415874 ], [ 368345.612999998033047, 255112.381299998611212 ], [ 368353.803800001740456, 255097.460700001567602 ], [ 368358.735200002789497, 255086.52419999986887 ], [ 368361.177500002086163, 255083.800000000745058 ], [ 368309.535199999809265, 255062.862199999392033 ], [ 368270.800200000405312, 255047.304699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703021600", "MAP": "D9-7633-T005", "PARCEL_NAM": "2W-5-1", "ACRE": ".77", "LONGITUDE": -64.86094671, "LATITUDE": 18.31877615, "OBJECTID_1": 39678, "PARCEL_NO_": "107703021600", "Tax_Legal_": "NAZARETH ESTATE 2W-5-1,2W-5-1-A &2W-5-1B REDHOOK QTR.", "Name": "SCHAIER, SCOTT & SARAH", "Address": "21 Durham Point Rd", "City": "Durham", "State": "New Hampshire", "Zip": 3824, "Country": "United States", "Land_Value": 171300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.60423972000001, "SHAPE_Area": 2665.0362732600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366250.061200000345707, 254426.27479999884963 ], [ 366246.841300003230572, 254425.615100000053644 ], [ 366231.622100003063679, 254413.669300001114607 ], [ 366228.439999997615814, 254408.576999999582767 ], [ 366225.232699997723103, 254406.439899999648333 ], [ 366214.775799997150898, 254403.399000000208616 ], [ 366201.6266999989748, 254432.4222999997437 ], [ 366186.019000001251698, 254466.069499999284744 ], [ 366195.337600000202656, 254469.698600001633167 ], [ 366202.673000000417233, 254464.699700001627207 ], [ 366210.933799996972084, 254475.772599998861551 ], [ 366224.587099999189377, 254482.217199999839067 ], [ 366227.058200001716614, 254476.115699999034405 ], [ 366236.091300003230572, 254456.980099998414516 ], [ 366250.061200000345707, 254426.27479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85914264, "LATITUDE": 18.32620083, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2235.7199705600001, "SHAPE_Area": 87471.365150199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366562.281900003552437, 255317.890599999576807 ], [ 366588.418200001120567, 255323.211599998176098 ], [ 366552.011500000953674, 255366.603300001472235 ], [ 366538.021799996495247, 255369.350000001490116 ], [ 366537.695288907911163, 255371.276088843267644 ], [ 366537.052356070722453, 255373.120828685146989 ], [ 366536.11098345706705, 255374.832624619157286 ], [ 366534.89750000089407, 255376.363600000739098 ], [ 366521.700199998915195, 255392.056699998676777 ], [ 366523.163999997079372, 255391.896899998188019 ], [ 366537.85080000013113, 255390.293999999761581 ], [ 366571.008500002324581, 255386.675299998372793 ], [ 366588.52929999679327, 255384.763199999928474 ], [ 366599.960100002586842, 255383.515700001269579 ], [ 366630.19990000128746, 255380.215500000864267 ], [ 366637.397100001573563, 255379.429999999701977 ], [ 366647.121200002729893, 255378.789299998432398 ], [ 366655.102600000798702, 255378.263399999588728 ], [ 366871.822899997234344, 255363.983300000429153 ], [ 366871.085400000214577, 255358.691500000655651 ], [ 366865.784699998795986, 255318.329300001263618 ], [ 366498.748000003397465, 255289.661100000143051 ], [ 366509.175899997353554, 255129.486000001430511 ], [ 366470.250600002706051, 255133.506900001317263 ], [ 366300.524599999189377, 255151.039099998772144 ], [ 366119.546800002455711, 255169.733500000089407 ], [ 366119.525200001895428, 255172.266499999910593 ], [ 366122.678599998354912, 255180.736000001430511 ], [ 366126.668799996376038, 255185.623799998313189 ], [ 366129.075099997222424, 255187.121199999004602 ], [ 366133.858999997377396, 255193.493200000375509 ], [ 366137.023199997842312, 255200.696199998259544 ], [ 366138.574600003659725, 255207.886100001633167 ], [ 366137.963100001215935, 255212.616399999707937 ], [ 366143.442699998617172, 255219.500599998980761 ], [ 366144.434900000691414, 255223.469300001859665 ], [ 366142.450499996542931, 255231.406800001859665 ], [ 366138.481700003147125, 255246.289700001478195 ], [ 366133.52080000191927, 255260.511100001633167 ], [ 366129.882799997925758, 255268.117800001055002 ], [ 366128.229099996387959, 255275.063200000673532 ], [ 366126.906199999153614, 255282.008499998599291 ], [ 366125.913999997079372, 255288.292399998754263 ], [ 366125.252499997615814, 255295.568399999290705 ], [ 366125.252499997615814, 255307.144000001251698 ], [ 366124.591099999845028, 255317.065900001674891 ], [ 366125.252499997615814, 255326.987700000405312 ], [ 366126.906199999153614, 255335.58669999986887 ], [ 366129.2212999984622, 255339.555500000715256 ], [ 366133.52080000191927, 255349.146600000560284 ], [ 366138.481700003147125, 255356.422699999064207 ], [ 366149.726499997079372, 255364.690900001674891 ], [ 366156.341099999845028, 255369.982599999755621 ], [ 366164.940099999308586, 255373.951400000602007 ], [ 366178.169299997389317, 255378.250900000333786 ], [ 366188.752700001001358, 255383.542599998414516 ], [ 366195.367299996316433, 255388.503499999642372 ], [ 366202.312600001692772, 255392.141499999910593 ], [ 366208.596500001847744, 255396.110300000756979 ], [ 366214.880300000309944, 255398.094700001180172 ], [ 366223.479299999773502, 255399.7483000010252 ], [ 366227.778800003230572, 255399.086899999529123 ], [ 366234.062700003385544, 255396.771699998527765 ], [ 366237.039200000464916, 255391.480099998414516 ], [ 366240.015799999237061, 255382.2195999994874 ], [ 366246.630400002002716, 255365.352400001138449 ], [ 366251.591300003230572, 255352.453899998217821 ], [ 366255.229400001466274, 255343.855000000447035 ], [ 366257.875200003385544, 255335.917500000447035 ], [ 366262.174699999392033, 255325.995600000023842 ], [ 366263.828299999237061, 255321.034600000828505 ], [ 366267.797100000083447, 255316.073699999600649 ], [ 366272.758000001311302, 255309.459100000560284 ], [ 366277.388300001621246, 255303.83669999986887 ], [ 366281.687799997627735, 255299.206399999558926 ], [ 366287.640900000929832, 255293.583999998867512 ], [ 366292.271099999547005, 255288.292399998754263 ], [ 366296.570600003004074, 255283.992899999022484 ], [ 366302.193000003695488, 255280.354800000786781 ], [ 366308.476899996399879, 255278.701200000941753 ], [ 366312.776399999856949, 255277.708999998867512 ], [ 366319.721699997782707, 255278.37049999833107 ], [ 366323.359700001776218, 255281.01630000025034 ], [ 366327.328500002622604, 255283.662099998444319 ], [ 366331.297200001776218, 255286.30799999833107 ], [ 366336.258199997246265, 255289.945999998599291 ], [ 366339.565499998629093, 255294.576200000941753 ], [ 366344.195699997246265, 255298.875700000673532 ], [ 366349.156599998474121, 255302.18299999833107 ], [ 366353.125399999320507, 255305.159600000828505 ], [ 366356.763400003314018, 255307.805399999022484 ], [ 366364.370200000703335, 255309.789799999445677 ], [ 366371.976999998092651, 255312.104899998754263 ], [ 366378.260899998247623, 255313.758600000292063 ], [ 366388.51349999755621, 255312.766399998217821 ], [ 366395.458800002932549, 255310.451299998909235 ], [ 366402.404100000858307, 255305.159600000828505 ], [ 366404.719200000166893, 255301.521600000560284 ], [ 366406.703599996864796, 255296.89130000025034 ], [ 366408.688000001013279, 255292.922600001096725 ], [ 366410.010899998247623, 255290.607500001788139 ], [ 366412.656800001859665, 255287.961599998176098 ], [ 366415.633299998939037, 255284.323600001633167 ], [ 366419.602099999785423, 255280.354800000786781 ], [ 366421.917199999094009, 255277.708999998867512 ], [ 366426.878100000321865, 255275.393899999558926 ], [ 366431.839100003242493, 255274.070999998599291 ], [ 366439.115099996328354, 255273.740200001746416 ], [ 366443.08389999717474, 255273.740200001746416 ], [ 366452.013599999248981, 255273.740200001746416 ], [ 366456.974600002169609, 255274.732400000095367 ], [ 366461.935500003397465, 255277.047499999403954 ], [ 366465.90429999679327, 255280.024099998176098 ], [ 366467.227200001478195, 255283.331399999558926 ], [ 366467.557899996638298, 255285.977299999445677 ], [ 366464.581299997866154, 255289.284499999135733 ], [ 366458.297499999403954, 255291.930399999022484 ], [ 366453.883299998939037, 255296.594999998807907 ], [ 366470.6216000020504, 255308.531399998813868 ], [ 366470.338500000536442, 255308.484499998390675 ], [ 366482.941299997270107, 255317.590599998831749 ], [ 366485.552599996328354, 255304.396800000220537 ], [ 366498.139300003647804, 255306.610300000756979 ], [ 366521.431999996304512, 255310.706599999219179 ], [ 366527.05799999833107, 255311.695999998599291 ], [ 366562.281900003552437, 255317.890599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701035900", "MAP": "A9-697-T006", "PARCEL_NAM": "F-16", "ACRE": ".32", "LONGITUDE": -64.86009319, "LATITUDE": 18.32762061, "OBJECTID_1": 39303, "PARCEL_NO_": "107701035900", "Tax_Legal_": "F-16 ESTATE NAZARETH No.1 RED HOOK QTR", "Name": "LINDQUIST, ANISSA J.", "Address": "PO Box 66876", "City": "Saint Louis", "State": "Missouri", "Zip": 63166, "Country": "United States", "Land_Value": 52600, "Improved_V": 151100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.240667694, "SHAPE_Area": 1349.9670684099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366322.968199998140335, 255436.368599999696016 ], [ 366319.23309999704361, 255409.264600001275539 ], [ 366294.549199998378754, 255397.984299998730421 ], [ 366293.203400000929832, 255400.192699998617172 ], [ 366285.769599996507168, 255414.529399998486042 ], [ 366279.663199998438358, 255430.193500000983477 ], [ 366276.635799996554852, 255442.302999999374151 ], [ 366309.982600003480911, 255438.114399999380112 ], [ 366322.968199998140335, 255436.368599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701035200", "MAP": "A9-697-T006", "PARCEL_NAM": "T-7", "ACRE": ".23", "LONGITUDE": -64.85798957, "LATITUDE": 18.32750095, "OBJECTID_1": 39297, "PARCEL_NO_": "107701035200", "Tax_Legal_": "T-7 NAZARETH ESTATE No.1 RED HOOK QTR", "Name": "ALFRED, CONNAL B. & SONIA D.", "Address": "PO Box 1514", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.32876281200001, "SHAPE_Area": 1092.436042 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366540.795000001788139, 255426.002199999988079 ], [ 366540.587399996817112, 255423.370400000363588 ], [ 366538.342399999499321, 255394.913699999451637 ], [ 366537.85080000013113, 255390.293999999761581 ], [ 366523.163999997079372, 255391.896899998188019 ], [ 366521.700199998915195, 255392.056699998676777 ], [ 366497.82490000128746, 255420.447299998253584 ], [ 366497.572162275086157, 255420.708899539284175 ], [ 366497.368544427445158, 255421.010313623613911 ], [ 366497.220199068891816, 255421.342434584541479 ], [ 366497.131608670984861, 255421.695226902374998 ], [ 366497.105450122035109, 255422.058030442072777 ], [ 366497.142513840750325, 255422.419882565009175 ], [ 366497.241679892758839, 255422.76984938091482 ], [ 366497.399951831030194, 255423.097356131474953 ], [ 366497.612547237775289, 255423.392506722069811 ], [ 366497.873042232473381, 255423.646382746635936 ], [ 366498.173565578530543, 255423.851312970393337 ], [ 366498.505036524147727, 255424.001105127448682 ], [ 366498.857439190789592, 255424.091233029059367 ], [ 366499.220125217339955, 255424.1189733290812 ], [ 366499.58213551598601, 255424.08348781382665 ], [ 366499.932531416940037, 255423.98584872999345 ], [ 366500.260725196509156, 255423.829006384999957 ], [ 366500.556800000369549, 255423.61769999936223 ], [ 366507.711520930111874, 255425.208529266179539 ], [ 366514.971699997782707, 255426.213799998164177 ], [ 366519.357500001788139, 255426.669900000095367 ], [ 366526.513696503243409, 255427.159219033026602 ], [ 366533.683125900337473, 255426.935917434922885 ], [ 366540.795000001788139, 255426.002199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702032700", "MAP": "A9-538-T99", "PARCEL_NAM": "T-3", "ACRE": null, "LONGITUDE": -64.85796676, "LATITUDE": 18.32788969, "OBJECTID_1": 39577, "PARCEL_NO_": "107702032700", "Tax_Legal_": "NAZARETH ESTATE LOT T-3 No1 REDHOOK QTR", "Name": "WARNER, HENRIETTA L", "Address": "PO Box 9336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.406599314, "SHAPE_Area": 826.51932844800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366537.087600000202656, 255472.270500000566244 ], [ 366533.457999996840954, 255432.561999998986721 ], [ 366529.201109694549814, 255433.080983203835785 ], [ 366524.920000001788139, 255433.3310999982059 ], [ 366520.234499998390675, 255432.963599998503923 ], [ 366515.653399996459484, 255432.621500000357628 ], [ 366515.642599999904633, 255433.886999998241663 ], [ 366515.282999999821186, 255476.102800000458956 ], [ 366523.353299997746944, 255475.324499998241663 ], [ 366537.087600000202656, 255472.270500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702032900", "MAP": "A9-538-T99", "PARCEL_NAM": "T-4", "ACRE": null, "LONGITUDE": -64.85777748, "LATITUDE": 18.3278516, "OBJECTID_1": 39579, "PARCEL_NO_": "107702032900", "Tax_Legal_": "NAZARETH ESTATE LOT T-4 No 1 REDHOOK QTR", "Name": "FAHIE, WINDY & DONOVAN, ARIEL B", "Address": "PO Box 6664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41000, "Improved_V": 215400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.107038706, "SHAPE_Area": 808.79606377499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366553.523100003600121, 255428.9847999997437 ], [ 366541.03320000320673, 255430.94990000128746 ], [ 366537.268527910811827, 255431.863687429809943 ], [ 366533.457999996840954, 255432.561999998986721 ], [ 366537.087600000202656, 255472.270500000566244 ], [ 366557.28320000320673, 255468.00279999896884 ], [ 366553.578900001943111, 255429.55350000038743 ], [ 366553.523100003600121, 255428.9847999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702032800", "MAP": "A9-538-T99", "PARCEL_NAM": "T-5", "ACRE": null, "LONGITUDE": -64.85755434, "LATITUDE": 18.3278121, "OBJECTID_1": 39578, "PARCEL_NO_": "107702032800", "Tax_Legal_": "NAZARETH ESTATE LOT T-5 No 1 REDHOOK QTR", "Name": "JONES, CALVIN A", "Address": "PO Box 10437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39900, "Improved_V": 345400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.79885314699999, "SHAPE_Area": 1067.8071673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366585.092200003564358, 255463.032699998468161 ], [ 366579.8175999969244, 255424.535599999129772 ], [ 366575.170000001788139, 255425.279199998825788 ], [ 366575.370899997651577, 255427.198699999600649 ], [ 366575.135300002992153, 255425.284800000488758 ], [ 366570.640100002288818, 255426.028599999845028 ], [ 366553.523100003600121, 255428.9847999997437 ], [ 366553.578900001943111, 255429.55350000038743 ], [ 366557.28320000320673, 255468.00279999896884 ], [ 366567.78320000320673, 255465.977800000458956 ], [ 366578.281400002539158, 255464.163899999111891 ], [ 366585.092200003564358, 255463.032699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701032700", "MAP": "A9-538-T99", "PARCEL_NAM": "T-6", "ACRE": null, "LONGITUDE": -64.8573001, "LATITUDE": 18.32776779, "OBJECTID_1": 39283, "PARCEL_NO_": "107701032700", "Tax_Legal_": "NAZARETH ESTATE T-6 No.1 RED HOOK QTR.", "Name": "FARRELL, EUSTACE", "Address": "3018 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.39657532699999, "SHAPE_Area": 1050.0859183 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366579.8175999969244, 255424.535599999129772 ], [ 366585.092200003564358, 255463.032699998468161 ], [ 366600.084200002253056, 255460.542700000107288 ], [ 366611.644799999892712, 255458.478900000452995 ], [ 366607.079599998891354, 255420.687899999320507 ], [ 366595.170800000429153, 255422.261100001633167 ], [ 366595.101700000464916, 255422.270700000226498 ], [ 366579.8175999969244, 255424.535599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701035100", "MAP": "A9-697-T006", "PARCEL_NAM": "T-8", "ACRE": ".25", "LONGITUDE": -64.85767481000001, "LATITUDE": 18.32744762, "OBJECTID_1": 39296, "PARCEL_NO_": "107701035100", "Tax_Legal_": "T-8 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "HODGE, ORETHA", "Address": "PO Box 12433", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41000, "Improved_V": 159200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.485886902, "SHAPE_Area": 1202.2256170200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366571.884300000965595, 255391.559599999338388 ], [ 366571.008500002324581, 255386.675299998372793 ], [ 366537.85080000013113, 255390.293999999761581 ], [ 366538.342399999499321, 255394.913699999451637 ], [ 366540.587399996817112, 255423.370400000363588 ], [ 366540.795000001788139, 255426.002199999988079 ], [ 366554.341700002551079, 255423.038800001144409 ], [ 366577.064000003039837, 255419.569200001657009 ], [ 366576.603699997067451, 255417.080200001597404 ], [ 366571.884300000965595, 255391.559599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701035000", "MAP": "A9-697-T006", "PARCEL_NAM": "T-9", "ACRE": ".24", "LONGITUDE": -64.85738173, "LATITUDE": 18.32740156, "OBJECTID_1": 39295, "PARCEL_NO_": "107701035000", "Tax_Legal_": "T-9 NAZARETH ESTATE No.1 RED HOOK QTR", "Name": "FARRELL, PATRICK D.", "Address": "PO Box 9489", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.068977754, "SHAPE_Area": 901.27655919300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366594.131999999284744, 255416.737199999392033 ], [ 366594.255800001323223, 255416.723900001496077 ], [ 366602.787500001490116, 255415.886100001633167 ], [ 366602.186800003051758, 255409.009399998933077 ], [ 366599.960100002586842, 255383.515700001269579 ], [ 366588.52929999679327, 255384.763199999928474 ], [ 366571.008500002324581, 255386.675299998372793 ], [ 366571.884300000965595, 255391.559599999338388 ], [ 366576.603699997067451, 255417.080200001597404 ], [ 366577.064000003039837, 255419.569200001657009 ], [ 366584.833599999547005, 255418.208299998193979 ], [ 366590.748499996960163, 255417.112199999392033 ], [ 366594.131999999284744, 255416.737199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701037200", "MAP": "A9-697-T006", "PARCEL_NAM": "F-17", "ACRE": ".29", "LONGITUDE": -64.85994587, "LATITUDE": 18.3273154, "OBJECTID_1": 39311, "PARCEL_NO_": "107701037200", "Tax_Legal_": "F-17 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "TOUSSAINT, LAZARUS G.", "Address": "6224 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.19431419899999, "SHAPE_Area": 1030.3004239300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366320.207500003278255, 255360.146899998188019 ], [ 366319.752700001001358, 255360.634300000965595 ], [ 366303.557599999010563, 255383.201200000941753 ], [ 366294.549199998378754, 255397.984299998730421 ], [ 366319.23309999704361, 255409.264600001275539 ], [ 366337.754000000655651, 255396.670400001108646 ], [ 366330.715999998152256, 255387.7804000005126 ], [ 366320.207500003278255, 255360.146899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701035500", "MAP": "A9-697-T006", "PARCEL_NAM": "F-12", "ACRE": ".26", "LONGITUDE": -64.85864488, "LATITUDE": 18.32742381, "OBJECTID_1": 39300, "PARCEL_NO_": "107701035500", "Tax_Legal_": "F-12 ESTATE NAZARETH No.1 RED HOOK QTR", "Name": "JOSEPH, DESMOND & CARTY, VERLIN", "Address": "1900 Bergs Home", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42700, "Improved_V": 145800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.848615357, "SHAPE_Area": 1120.9340847599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366461.461099997162819, 255424.131900001317263 ], [ 366471.379100002348423, 255386.695000000298023 ], [ 366474.409199997782707, 255378.45380000025034 ], [ 366440.436599999666214, 255387.661299999803305 ], [ 366437.682099997997284, 255422.883400000631809 ], [ 366461.461099997162819, 255424.131900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701037300", "MAP": "A9-697-T006", "PARCEL_NAM": "F-18", "ACRE": ".25", "LONGITUDE": -64.85970334, "LATITUDE": 18.32709024, "OBJECTID_1": 39312, "PARCEL_NO_": "107701037300", "Tax_Legal_": "F-18 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "CALLWOOD, JASON A. & ERIKA A. BENJAMIN", "Address": "PO Box 303442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41000, "Improved_V": 392300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.27721569799999, "SHAPE_Area": 1189.95234938 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366352.337399996817112, 255338.739599999040365 ], [ 366349.487899996340275, 255338.863800000399351 ], [ 366330.903399996459484, 255348.687100000679493 ], [ 366322.836499996483326, 255357.330200001597404 ], [ 366334.234999999403954, 255387.595199998468161 ], [ 366338.124399997293949, 255386.298799999058247 ], [ 366349.051700003445148, 255384.261500000953674 ], [ 366359.793799996376038, 255383.335400000214577 ], [ 366359.820600003004074, 255383.332800000905991 ], [ 366352.337399996817112, 255338.739599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701037400", "MAP": "A9-697-T006", "PARCEL_NAM": "F-19", "ACRE": ".25", "LONGITUDE": -64.85944287, "LATITUDE": 18.32704819, "OBJECTID_1": 39313, "PARCEL_NO_": "107701037400", "Tax_Legal_": "F-19 ESTATE NAZARETH 1 RED HOOK QTR", "Name": "BENJAMIN, ERIC", "Address": "5600 Lucinda Millin Home", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022621, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.19916083000001, "SHAPE_Area": 1258.7654395699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366382.184500001370907, 255337.438099998980761 ], [ 366352.337399996817112, 255338.739599999040365 ], [ 366359.820600003004074, 255383.332800000905991 ], [ 366365.535199999809265, 255382.779800001531839 ], [ 366372.017499998211861, 255382.779800001531839 ], [ 366385.855499997735023, 255383.326099999248981 ], [ 366382.184500001370907, 255337.438099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701036000", "MAP": "A9-697-T006", "PARCEL_NAM": "F-20", "ACRE": ".28", "LONGITUDE": -64.85917667, "LATITUDE": 18.32704717, "OBJECTID_1": 39304, "PARCEL_NO_": "107701036000", "Tax_Legal_": "F-20 ESTATE NAZARETH 1 RED HOOK QTR", "Name": "HODGE, NICOLE E", "Address": "PO Box 11721", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.63871201399999, "SHAPE_Area": 1333.5680434599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366412.849299997091293, 255385.385899998247623 ], [ 366410.902800001204014, 255334.777199998497963 ], [ 366409.856600001454353, 255334.906599998474121 ], [ 366395.251599997282028, 255337.023299999535084 ], [ 366382.184500001370907, 255337.438099998980761 ], [ 366385.855499997735023, 255383.326099999248981 ], [ 366386.093299999833107, 255383.335400000214577 ], [ 366412.578100003302097, 255385.372699998319149 ], [ 366412.849299997091293, 255385.385899998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701036600", "MAP": "A9-697-T006", "PARCEL_NAM": "F-23", "ACRE": ".30", "LONGITUDE": -64.85881607, "LATITUDE": 18.3269099, "OBJECTID_1": 39306, "PARCEL_NO_": "107701036600", "Tax_Legal_": "F-23 NAZARETH ESTATE TRACK No.1 RED HOOK QTR", "Name": "JONES, JENNIFER", "Address": "1-45FRYDENHOJ 6007", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.34614486000001, "SHAPE_Area": 1379.2681414799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366411.987400002777576, 255362.976199999451637 ], [ 366476.451399996876717, 255350.240699999034405 ], [ 366475.363799996674061, 255349.812699999660254 ], [ 366435.996799997985363, 255324.526000000536442 ], [ 366433.563299998641014, 255327.921599999070168 ], [ 366427.424999997019768, 255332.366599999368191 ], [ 366420.519299998879433, 255333.587799999862909 ], [ 366410.902800001204014, 255334.777199998497963 ], [ 366411.987400002777576, 255362.976199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701036400", "MAP": "A9-697-T006", "PARCEL_NAM": "F-21", "ACRE": ".25", "LONGITUDE": -64.85884885, "LATITUDE": 18.32714235, "OBJECTID_1": 39305, "PARCEL_NO_": "107701036400", "Tax_Legal_": "F-21 NAZARETH ESTATE No.1 RED HOOK QTR", "Name": "LUKE, JACQUELINE E.", "Address": "PO Box 11364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.27436444200001, "SHAPE_Area": 954.56366892400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366455.06139999628067, 255377.975099999457598 ], [ 366450.08219999819994, 255355.450199998915195 ], [ 366411.987400002777576, 255362.976199999451637 ], [ 366412.849299997091293, 255385.385899998247623 ], [ 366426.898727787542157, 255383.724231367232278 ], [ 366440.912900000810623, 255381.787599999457598 ], [ 366455.06139999628067, 255377.975099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701037700", "MAP": "A9-697-T006", "PARCEL_NAM": "F-22", "ACRE": ".25", "LONGITUDE": -64.85845882, "LATITUDE": 18.32705175, "OBJECTID_1": 39316, "PARCEL_NO_": "107701037700", "Tax_Legal_": "F-22 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "WILLIAMS, VINCENT P. & DIANE A. REY", "Address": "140 Mahogany Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.230395453, "SHAPE_Area": 953.44539665399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366487.585500001907349, 255348.449999999254942 ], [ 366476.451399996876717, 255350.240699999034405 ], [ 366450.08219999819994, 255355.450199998915195 ], [ 366455.06139999628067, 255377.975099999457598 ], [ 366469.329199999570847, 255374.167599998414516 ], [ 366474.476238212839235, 255372.780269372247858 ], [ 366479.511807473259978, 255371.031060734501807 ], [ 366484.410499997437, 255368.928800001740456 ], [ 366489.80154946068069, 255365.236833263188601 ], [ 366495.418436313630082, 255361.898478159972001 ], [ 366501.237999998033047, 255358.927499998360872 ], [ 366501.765687218809035, 255357.957647992938291 ], [ 366502.132691662758589, 255356.916314975358546 ], [ 366502.329702196177095, 255355.829920219694031 ], [ 366502.351720537757501, 255354.726026244723471 ], [ 366502.198188068403397, 255353.632639535353519 ], [ 366501.873000003397465, 255352.577500000596046 ], [ 366497.343012551253196, 255350.468321509135421 ], [ 366492.542380378406961, 255349.08147221445688 ], [ 366487.585500001907349, 255348.449999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701037100", "MAP": "A9-697-T006", "PARCEL_NAM": "F-15", "ACRE": ".32", "LONGITUDE": -64.85967998, "LATITUDE": 18.32754563, "OBJECTID_1": 39310, "PARCEL_NO_": "107701037100", "Tax_Legal_": "F-15 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "DOUGLAS, KEITH R. & LUCY I.", "Address": "PO BOX 11914", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50700, "Improved_V": 108400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.172341886, "SHAPE_Area": 1679.71323183 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366361.234499998390675, 255392.699299998581409 ], [ 366360.424800001084805, 255389.039900001138449 ], [ 366354.440919875574764, 255389.919003956689266 ], [ 366348.520199999213219, 255391.153799999505281 ], [ 366337.754000000655651, 255396.670400001108646 ], [ 366319.23309999704361, 255409.264600001275539 ], [ 366322.968199998140335, 255436.368599999696016 ], [ 366327.743000000715256, 255435.726700000464916 ], [ 366360.033299997448921, 255431.55799999833107 ], [ 366369.550899997353554, 255430.283300001174212 ], [ 366361.234499998390675, 255392.699299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701035700", "MAP": "A9-697-T006", "PARCEL_NAM": "F-14", "ACRE": ".28", "LONGITUDE": -64.85932323, "LATITUDE": 18.32748838, "OBJECTID_1": 39302, "PARCEL_NO_": "107701035700", "Tax_Legal_": "F-14 NAZARETH ESTATE TRACK No.1 RED HOOK QTR", "Name": "MOSES, IVY K.", "Address": "PO Box 7506", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.466185497, "SHAPE_Area": 1385.9141151199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366400.539599999785423, 255398.33729999884963 ], [ 366399.608599998056889, 255390.846900001168251 ], [ 366399.320299997925758, 255390.836300000548363 ], [ 366397.097800001502037, 255396.233800001442432 ], [ 366393.5016999989748, 255396.670400001108646 ], [ 366391.64045054349117, 255396.638895618147217 ], [ 366389.795299999415874, 255396.392599999904633 ], [ 366390.01547640649369, 255395.33779948882875 ], [ 366390.05783837713534, 255394.261097472568508 ], [ 366389.921214831294492, 255393.192258955736179 ], [ 366389.609382673283108, 255392.160831559536746 ], [ 366389.130962380731944, 255391.195328689529561 ], [ 366388.499179694743361, 255390.32244129353785 ], [ 366387.731499999761581, 255389.566300000995398 ], [ 366380.9338375768275, 255388.741593488666695 ], [ 366374.09597953670891, 255388.378202967229299 ], [ 366367.2491965246154, 255388.477790281089256 ], [ 366360.424800001084805, 255389.039900001138449 ], [ 366361.234499998390675, 255392.699299998581409 ], [ 366369.550899997353554, 255430.283300001174212 ], [ 366397.168600000441074, 255426.584600001573563 ], [ 366403.938900001347065, 255425.686700001358986 ], [ 366400.539599999785423, 255398.33729999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701035600", "MAP": "A9-697-T006", "PARCEL_NAM": "F-13", "ACRE": ".27", "LONGITUDE": -64.85896232, "LATITUDE": 18.32746324, "OBJECTID_1": 39301, "PARCEL_NO_": "107701035600", "Tax_Legal_": "F-13 NAZARETH ESTATE TRACK No.1 RED HOOK QTR", "Name": "VANTERPOOL, DENNIS", "Address": "96026 Breezeway Ct", "City": "Yulee", "State": "Florida", "Zip": 32097, "Country": "United States", "Land_Value": 54500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.54868817900001, "SHAPE_Area": 1252.37769099 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366403.938900001347065, 255425.686700001358986 ], [ 366428.65259999781847, 255422.409299999475479 ], [ 366437.682099997997284, 255422.883400000631809 ], [ 366440.436599999666214, 255387.661299999803305 ], [ 366432.181599996984005, 255388.455099999904633 ], [ 366425.692624144896399, 255389.91027256770758 ], [ 366419.112795396591537, 255390.874735348217655 ], [ 366412.479168206977192, 255391.343056947458535 ], [ 366405.829099997878075, 255391.312600001692772 ], [ 366399.608599998056889, 255390.846900001168251 ], [ 366400.539599999785423, 255398.33729999884963 ], [ 366403.938900001347065, 255425.686700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701035300", "MAP": "A9-697-T006", "PARCEL_NAM": "F-10", "ACRE": ".24", "LONGITUDE": -64.85817807, "LATITUDE": 18.32721425, "OBJECTID_1": 39298, "PARCEL_NO_": "107701035300", "Tax_Legal_": "F-10 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "GARFIELD, GAYNELLE", "Address": "PO BOX 302396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.893326793, "SHAPE_Area": 1516.1208165200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366508.222999997437, 255360.673799999058247 ], [ 366482.822999998927116, 255375.120099999010563 ], [ 366478.662365766940638, 255376.903718432236928 ], [ 366474.409199997782707, 255378.45380000025034 ], [ 366471.588299997150898, 255386.650600001215935 ], [ 366500.86540000140667, 255402.915300000458956 ], [ 366503.065999999642372, 255404.137800000607967 ], [ 366508.114699997007847, 255398.488499999046326 ], [ 366510.185497607046273, 255396.513818359235302 ], [ 366512.032999999821186, 255394.32880000025034 ], [ 366521.852072221459821, 255382.730755331751425 ], [ 366531.876800000667572, 255371.309999998658895 ], [ 366531.984915334556717, 255369.00149081562995 ], [ 366531.718002949142829, 255366.70591651884024 ], [ 366531.083099998533726, 255364.483800001442432 ], [ 366529.803818969114218, 255362.886425817821873 ], [ 366528.298507882689591, 255361.499990544194588 ], [ 366526.601521856908221, 255360.356136242713546 ], [ 366524.751590530446265, 255359.480968646181282 ], [ 366522.790934151853435, 255358.894461357383989 ], [ 366520.764300003647804, 255358.609999999403954 ], [ 366518.18849407316884, 255358.25457797999843 ], [ 366515.588501720747445, 255358.288353282783646 ], [ 366513.022797688608989, 255358.710566289257258 ], [ 366510.549085562350228, 255359.511721280490747 ], [ 366508.222999997437, 255360.673799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701035400", "MAP": "A9-697-T006", "PARCEL_NAM": "F-11", "ACRE": ".29", "LONGITUDE": -64.85840034, "LATITUDE": 18.32747754, "OBJECTID_1": 39299, "PARCEL_NO_": "107701035400", "Tax_Legal_": "F-11 ESTATE NAZARETH NO.1 RED HOOK QTR", "Name": "BLOICE, SAINT LLOYDE J. & KUNTZ, KEYA K.", "Address": "PO Box 301751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.4275978, "SHAPE_Area": 937.77047740299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366500.86540000140667, 255402.915300000458956 ], [ 366471.588299997150898, 255386.650600001215935 ], [ 366471.379100002348423, 255386.695000000298023 ], [ 366461.461099997162819, 255424.131900001317263 ], [ 366481.043099999427795, 255425.160100001841784 ], [ 366485.031199999153614, 255425.369500000029802 ], [ 366488.379199996590614, 255420.84010000154376 ], [ 366503.065999999642372, 255404.137800000607967 ], [ 366500.86540000140667, 255402.915300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701037500", "MAP": "A9-697-T006", "PARCEL_NAM": "F-25", "ACRE": ".25", "LONGITUDE": -64.85826156, "LATITUDE": 18.32672813, "OBJECTID_1": 39314, "PARCEL_NO_": "107701037500", "Tax_Legal_": "F-25 ESTATE NAZARETH 1 RED HOOK QTR", "Name": "SIMMONDS, PHILIP W. & DEHLIA S.", "Address": "PO BOX 502792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.30073395299999, "SHAPE_Area": 1012.93754682 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366498.139300003647804, 255306.610300000756979 ], [ 366485.552599996328354, 255304.396800000220537 ], [ 366482.951700001955032, 255317.538199998438358 ], [ 366482.941299997270107, 255317.590599998831749 ], [ 366478.78830000013113, 255338.574299998581409 ], [ 366482.668099999427795, 255340.388199999928474 ], [ 366502.0337999984622, 255349.442299999296665 ], [ 366502.180799998342991, 255349.504999998956919 ], [ 366503.526900000870228, 255350.078299999237061 ], [ 366504.561499997973442, 255344.706999998539686 ], [ 366511.448600001633167, 255308.950899999588728 ], [ 366498.139300003647804, 255306.610300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701036700", "MAP": "A9-697-T006", "PARCEL_NAM": "F-24", "ACRE": ".27", "LONGITUDE": -64.85857879, "LATITUDE": 18.32667693, "OBJECTID_1": 39307, "PARCEL_NO_": "107701036700", "Tax_Legal_": "F-24 ESTATE NAZARETH No.1 RED HOOK QTR", "Name": "WESSELHOFT, SHAWNA M.", "Address": "PO Box 9481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54500, "Improved_V": 217000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.40151501, "SHAPE_Area": 1099.47923866 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366482.951700001955032, 255317.538199998438358 ], [ 366470.6216000020504, 255308.531399998813868 ], [ 366453.883299998939037, 255296.594999998807907 ], [ 366446.363499999046326, 255308.318399999290705 ], [ 366442.66499999910593, 255315.221599999815226 ], [ 366437.853000000119209, 255321.936099998652935 ], [ 366461.843500003218651, 255337.403799999505281 ], [ 366473.511699996888638, 255336.107299998402596 ], [ 366478.78830000013113, 255338.574299998581409 ], [ 366482.951700001955032, 255317.538199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701036900", "MAP": "A9-697-T006", "PARCEL_NAM": "F-26", "ACRE": ".25", "LONGITUDE": -64.85801503, "LATITUDE": 18.32677913, "OBJECTID_1": 39308, "PARCEL_NO_": "107701036900", "Tax_Legal_": "F-26 NAZARETH ESTATE No.1 RED HOOK QTR.", "Name": "WILLIAMS, DESHAWN S.& PETERSEN,ARTHUR A.", "Address": "PO Box 307006", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50500, "Improved_V": 172600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.82424715499999, "SHAPE_Area": 1188.1697143199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366527.814300000667572, 255354.801199998706579 ], [ 366535.207099996507168, 255333.661299999803305 ], [ 366540.214100003242493, 255319.343800000846386 ], [ 366541.971400000154972, 255314.31870000064373 ], [ 366527.05799999833107, 255311.695999998599291 ], [ 366521.431999996304512, 255310.706599999219179 ], [ 366511.448600001633167, 255308.950899999588728 ], [ 366504.561499997973442, 255344.706999998539686 ], [ 366503.526900000870228, 255350.078299999237061 ], [ 366504.133687733381521, 255351.028065049875295 ], [ 366504.893510977155529, 255351.860479394934373 ], [ 366505.784123135264963, 255352.551171068247641 ], [ 366506.779448288143612, 255353.079917551658582 ], [ 366507.850344661448617, 255353.431237863260321 ], [ 366508.965457857644651, 255353.594845819432521 ], [ 366510.092138870502822, 255353.565951200493146 ], [ 366511.197400003671646, 255353.345400001853704 ], [ 366513.825610706058796, 255352.697026096720947 ], [ 366516.519094910530839, 255352.426798308675643 ], [ 366519.223726550932042, 255352.540146915416699 ], [ 366521.885155551484786, 255353.034794155566487 ], [ 366524.44990000128746, 255353.900800000876188 ], [ 366526.155910288798623, 255354.262031394056976 ], [ 366527.814300000667572, 255354.801199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701037000", "MAP": "A9-697-T006", "PARCEL_NAM": "F-27", "ACRE": ".25", "LONGITUDE": -64.85770777, "LATITUDE": 18.32684648, "OBJECTID_1": 39309, "PARCEL_NO_": "107701037000", "Tax_Legal_": "F-27 ESTATE NAZARETH No.1 RED HOOK QTR", "Name": "MOORE, NATASHA A.", "Address": "PO Box 308118", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.05355798, "SHAPE_Area": 1831.6096335899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366562.281900003552437, 255317.890599999576807 ], [ 366541.971400000154972, 255314.31870000064373 ], [ 366540.214100003242493, 255319.343800000846386 ], [ 366535.207099996507168, 255333.661299999803305 ], [ 366527.814300000667572, 255354.801199998706579 ], [ 366530.100492848607246, 255355.888479561544955 ], [ 366532.193569111870602, 255357.31251830473775 ], [ 366534.04431123030372, 255359.039830724883359 ], [ 366535.609200000762939, 255361.029800001531839 ], [ 366536.802110861986876, 255363.130794570024591 ], [ 366537.675599999725819, 255365.383400000631809 ], [ 366538.018951356294565, 255367.351840670744423 ], [ 366538.021799996495247, 255369.350000001490116 ], [ 366552.011500000953674, 255366.603300001472235 ], [ 366588.418200001120567, 255323.211599998176098 ], [ 366562.281900003552437, 255317.890599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703021300", "MAP": "D9-7833-T006", "PARCEL_NAM": "2W-1B", "ACRE": ".28", "LONGITUDE": -64.8613234, "LATITUDE": 18.31845603, "OBJECTID_1": 39676, "PARCEL_NO_": "107703021300", "Tax_Legal_": "2W-1C & 2W-1B-1 NAZARETH NO.1 RED HOOK QTR.", "Name": "SOEFFING, MANFRED H.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 204600, "Improved_V": 309300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.71835734699999, "SHAPE_Area": 1639.5846748399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366172.592200003564358, 254381.058600001037121 ], [ 366157.990699999034405, 254396.360399998724461 ], [ 366149.498700000345707, 254398.853900000452995 ], [ 366150.288800001144409, 254400.760200001299381 ], [ 366151.005199998617172, 254411.320799998939037 ], [ 366194.364500001072884, 254432.996100001037121 ], [ 366209.138800002634525, 254402.508400000631809 ], [ 366195.48369999974966, 254396.274999998509884 ], [ 366180.215899996459484, 254390.028299998492002 ], [ 366177.818499997258186, 254387.475600000470877 ], [ 366176.240000002086163, 254383.451900001615286 ], [ 366173.031000003218651, 254381.525800000876188 ], [ 366172.592200003564358, 254381.058600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703021300", "MAP": "D9-7923-T006", "PARCEL_NAM": "2W-1C", "ACRE": ".44", "LONGITUDE": -64.86169103, "LATITUDE": 18.31810911, "OBJECTID_1": 39676, "PARCEL_NO_": "107703021300", "Tax_Legal_": "2W-1C & 2W-1B-1 NAZARETH NO.1 RED HOOK QTR.", "Name": "SOEFFING, MANFRED H.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 204600, "Improved_V": 309300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.754284888, "SHAPE_Area": 2064.55131295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366172.592200003564358, 254381.058600001037121 ], [ 366171.802000001072884, 254377.94539999961853 ], [ 366167.515699997544289, 254375.5641999989748 ], [ 366167.991999998688698, 254372.230399999767542 ], [ 366164.975699998438358, 254368.420400001108646 ], [ 366160.530699998140335, 254364.769200000911951 ], [ 366156.87950000166893, 254356.037900000810623 ], [ 366149.908699996769428, 254350.727899998426437 ], [ 366120.177599996328354, 254338.452300000935793 ], [ 366115.357699997723103, 254336.301899999380112 ], [ 366115.163500003516674, 254359.098400000482798 ], [ 366115.100599996745586, 254366.486200001090765 ], [ 366115.856499999761581, 254372.403000000864267 ], [ 366123.07379999756813, 254377.106100000441074 ], [ 366149.498700000345707, 254398.853900000452995 ], [ 366157.990699999034405, 254396.360399998724461 ], [ 366172.592200003564358, 254381.058600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703014100", "MAP": "G9-2664-T77", "PARCEL_NAM": "2W-1A-2", "ACRE": null, "LONGITUDE": -64.86214755, "LATITUDE": 18.31795008, "OBJECTID_1": 39633, "PARCEL_NO_": "107703014100", "Tax_Legal_": "NAZARETH ESTATE 2W-1A-2 RED HOOK QTR", "Name": "AUERBACH, FAYE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 295500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.44286245200001, "SHAPE_Area": 1183.02243692 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366115.28490000218153, 254344.846099998801947 ], [ 366068.713899999856949, 254330.034099999815226 ], [ 366069.372699998319149, 254338.880800001323223 ], [ 366070.042400002479553, 254354.929400000721216 ], [ 366101.389600001275539, 254366.796100001782179 ], [ 366115.856499999761581, 254372.403000000864267 ], [ 366115.100599996745586, 254366.486200001090765 ], [ 366115.163500003516674, 254359.098400000482798 ], [ 366115.28490000218153, 254344.846099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602016000", "MAP": "D9-7058-T002", "PARCEL_NAM": "2-50", "ACRE": ".242", "LONGITUDE": -64.8721706, "LATITUDE": 18.32521879, "OBJECTID_1": 38348, "PARCEL_NO_": "107602016000", "Tax_Legal_": "2-49 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "JAMES, BRIAN", "Address": "PO Box 7994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.520910138, "SHAPE_Area": 1267.5890759199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365051.085100002586842, 255130.488899998366833 ], [ 365007.366099998354912, 255129.465799998492002 ], [ 365005.718400001525879, 255136.356499999761581 ], [ 365000.880000002682209, 255143.241900000721216 ], [ 365011.331799998879433, 255151.793400000780821 ], [ 365018.816399998962879, 255159.745799999684095 ], [ 365018.816399998962879, 255165.464899998158216 ], [ 365032.533299997448921, 255173.080299999564886 ], [ 365051.085100002586842, 255130.488899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602016000", "MAP": "D9-7058-T002", "PARCEL_NAM": "2-49", "ACRE": ".344", "LONGITUDE": -64.87252814, "LATITUDE": 18.32549438, "OBJECTID_1": 38348, "PARCEL_NO_": "107602016000", "Tax_Legal_": "2-49 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "JAMES, BRIAN", "Address": "PO Box 7994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.00039045899999, "SHAPE_Area": 1374.2573029 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364965.258000001311302, 255167.89640000090003 ], [ 364976.247800000011921, 255200.443199999630451 ], [ 364989.81360000371933, 255198.104299999773502 ], [ 365001.508299998939037, 255188.280699998140335 ], [ 365008.057300001382828, 255176.586100000888109 ], [ 365011.331799998879433, 255169.569299999624491 ], [ 365009.92849999666214, 255162.552499998360872 ], [ 364993.555900000035763, 255153.664500001817942 ], [ 364987.992499999701977, 255156.508099999278784 ], [ 364972.505599997937679, 255164.423599999397993 ], [ 364965.258000001311302, 255167.89640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703016100", "MAP": "A9-600-T003", "PARCEL_NAM": "41-7", "ACRE": "10.90", "LONGITUDE": -64.86633696, "LATITUDE": 18.31746866, "OBJECTID_1": 39650, "PARCEL_NO_": "107703016100", "Tax_Legal_": "FRYDENHOJ ESTATE 41-6-2 RED HOOK QTR.", "Name": "SECOND STOREY LIVING INC", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 400000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 10.479727476800001, "SHAPE_Area": 2.0433726186699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365653.511399999260902, 254294.099599998444319 ], [ 365648.795199997723103, 254292.765000000596046 ], [ 365648.833599999547005, 254293.642400000244379 ], [ 365653.511399999260902, 254294.099599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703015400", "MAP": "D9-4353-T88", "PARCEL_NAM": "41-7-A", "ACRE": null, "LONGITUDE": -64.86608013, "LATITUDE": 18.31748559, "OBJECTID_1": 39643, "PARCEL_NO_": "107703015400", "Tax_Legal_": "41-7&41 REMAINDER FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "No. 41 FRYDENHOJ LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021409, "Country": "United States", "Land_Value": 843000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.245836062, "SHAPE_Area": 688.33729948600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365648.795199997723103, 254292.765000000596046 ], [ 365653.511399999260902, 254294.099599998444319 ], [ 365713.148299999535084, 254310.975600000470877 ], [ 365735.719400003552437, 254317.362700000405312 ], [ 365712.897600002586842, 254306.782900001853704 ], [ 365694.093299999833107, 254298.065600000321865 ], [ 365647.375100001692772, 254276.407800000160933 ], [ 365648.158600002527237, 254278.227000001817942 ], [ 365648.795199997723103, 254292.765000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703015400", "MAP": "D9-7887-T006", "PARCEL_NAM": "41-7-1", "ACRE": "1.62", "LONGITUDE": -64.8659767, "LATITUDE": 18.31664355, "OBJECTID_1": 39643, "PARCEL_NO_": "107703015400", "Tax_Legal_": "41-7&41 REMAINDER FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "No. 41 FRYDENHOJ LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021409, "Country": "United States", "Land_Value": 843000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 472.77055025700002, "SHAPE_Area": 8573.0962548000007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365680.498499996960163, 254291.763300001621246 ], [ 365682.372400000691414, 254241.916400000452995 ], [ 365718.871500000357628, 254211.032600000500679 ], [ 365751.359700001776218, 254168.517200000584126 ], [ 365740.931400001049042, 254144.050799999386072 ], [ 365704.238399997353554, 254132.818300001323223 ], [ 365698.573600001633167, 254134.2516999989748 ], [ 365681.641099996864796, 254134.113099999725819 ], [ 365680.012299999594688, 254135.999600000679493 ], [ 365679.170000001788139, 254140.214600000530481 ], [ 365683.9341000020504, 254148.908399999141693 ], [ 365683.068499997258186, 254155.867400001734495 ], [ 365679.000900000333786, 254160.056000001728535 ], [ 365677.355999998748302, 254163.842199999839067 ], [ 365677.330799996852875, 254166.7972999997437 ], [ 365680.460699997842312, 254178.010899998247623 ], [ 365678.041799999773502, 254177.991099998354912 ], [ 365673.241700001060963, 254173.518800001591444 ], [ 365670.819099999964237, 254173.92119999974966 ], [ 365667.574100002646446, 254176.216699998825788 ], [ 365665.117399998009205, 254180.62950000166893 ], [ 365665.088600002229214, 254184.006799999624491 ], [ 365667.455399997532368, 254190.147900000214577 ], [ 365665.82660000026226, 254192.034400001168251 ], [ 365660.963600002229214, 254194.94990000128746 ], [ 365658.519500002264977, 254197.885200001299381 ], [ 365652.857299998402596, 254199.949799999594688 ], [ 365648.793399997055531, 254203.7162000015378 ], [ 365647.936700001358986, 254209.619800001382828 ], [ 365651.935900002717972, 254213.452199999243021 ], [ 365653.546700000762939, 254213.676500000059605 ], [ 365654.329700000584126, 254216.427099999040365 ], [ 365652.71339999884367, 254216.836100000888109 ], [ 365649.498999997973442, 254215.543200001120567 ], [ 365647.072800002992153, 254216.36769999936223 ], [ 365647.82880000025034, 254222.284600000828505 ], [ 365647.008100003004074, 254223.966600000858307 ], [ 365643.793600000441074, 254222.673700001090765 ], [ 365640.545000001788139, 254225.39130000025034 ], [ 365638.912600003182888, 254227.699999999254942 ], [ 365638.855099998414516, 254234.454500000923872 ], [ 365636.414599999785423, 254236.967700000852346 ], [ 365637.946299999952316, 254246.479400001466274 ], [ 365636.308499999344349, 254249.421300001442432 ], [ 365636.277900002896786, 254253.009700000286102 ], [ 365641.06360000371933, 254259.1706000007689 ], [ 365645.786399997770786, 254272.719200000166893 ], [ 365647.375100001692772, 254276.407800000160933 ], [ 365680.498499996960163, 254291.763300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703015400", "MAP": "A9-600-T003", "PARCEL_NAM": "41-7 REM", "ACRE": "9.28", "LONGITUDE": -64.86509464, "LATITUDE": 18.31721543, "OBJECTID_1": 39643, "PARCEL_NO_": "107703015400", "Tax_Legal_": "41-7&41 REMAINDER FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "No. 41 FRYDENHOJ LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021409, "Country": "United States", "Land_Value": 843000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 960.19837408499995, "SHAPE_Area": 35129.883716900011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365704.238399997353554, 254132.818300001323223 ], [ 365740.931400001049042, 254144.050799999386072 ], [ 365751.359700001776218, 254168.517200000584126 ], [ 365718.871500000357628, 254211.032600000500679 ], [ 365682.372400000691414, 254241.916400000452995 ], [ 365680.498499996960163, 254291.763300001621246 ], [ 365694.093299999833107, 254298.065600000321865 ], [ 365712.897600002586842, 254306.782900001853704 ], [ 365735.719400003552437, 254317.362700000405312 ], [ 365742.089000001549721, 254326.914099998772144 ], [ 365745.251299999654293, 254334.328200001269579 ], [ 365747.591099999845028, 254343.635499998927116 ], [ 365749.076099999248981, 254358.635299999266863 ], [ 365750.634700000286102, 254364.980799999088049 ], [ 365753.012299999594688, 254369.855500001460314 ], [ 365759.38910000026226, 254378.5625 ], [ 365768.179399996995926, 254387.922499999403954 ], [ 365778.587700001895428, 254396.662599999457598 ], [ 365788.209499999880791, 254403.074099998921156 ], [ 365804.281800001859665, 254409.538499999791384 ], [ 365814.704599998891354, 254416.589899998158216 ], [ 365825.16330000013113, 254419.419700000435114 ], [ 365845.337200000882149, 254417.684999998658895 ], [ 365867.140100002288818, 254414.063700001686811 ], [ 365874.398699998855591, 254413.912000000476837 ], [ 365884.074400000274181, 254413.991200000047684 ], [ 365866.529700003564358, 254391.049499999731779 ], [ 365852.848700001835823, 254293.201200000941753 ], [ 365848.363300003111362, 254251.790199998766184 ], [ 365841.144199997186661, 254247.298099998384714 ], [ 365834.772799998521805, 254237.957899998873472 ], [ 365813.2128000035882, 254213.083500001579523 ], [ 365811.659500002861023, 254206.104699999094009 ], [ 365812.494599997997284, 254202.734000001102686 ], [ 365818.198100000619888, 254195.814599998295307 ], [ 365821.441299997270107, 254193.730200000107288 ], [ 365823.910599999129772, 254187.839800000190735 ], [ 365823.957400001585484, 254182.351700000464916 ], [ 365821.581600002944469, 254177.266100000590086 ], [ 365811.173299998044968, 254168.526000000536442 ], [ 365807.991200000047684, 254163.433699999004602 ], [ 365808.041500002145767, 254157.523499999195337 ], [ 365815.363099999725819, 254149.984099999070168 ], [ 365815.425999999046326, 254142.5962999984622 ], [ 365805.04280000180006, 254130.901200000196695 ], [ 365805.0878000035882, 254125.624200001358986 ], [ 365806.72919999808073, 254122.260200001299381 ], [ 365808.35080000013113, 254121.217999998480082 ], [ 365808.392200000584126, 254116.363200001418591 ], [ 365807.598399996757507, 254114.879000000655651 ], [ 365802.783900000154972, 254112.095400001853704 ], [ 365797.987400002777576, 254107.2010000012815 ], [ 365796.380199998617172, 254106.554499998688698 ], [ 365785.995200000703335, 254095.070500001311302 ], [ 365783.612300001084805, 254090.829100001603365 ], [ 365782.008599996566772, 254089.760499998927116 ], [ 365781.222099997103214, 254087.432100001722574 ], [ 365779.620300002396107, 254086.152399998158216 ], [ 365778.833700001239777, 254083.823899999260902 ], [ 365776.425599999725819, 254082.53770000115037 ], [ 365774.017399996519089, 254081.251400001347065 ], [ 365768.36599999666214, 254082.049499999731779 ], [ 365765.108400002121925, 254085.822500001639128 ], [ 365745.631099998950958, 254100.439699999988079 ], [ 365738.268100000917912, 254112.83390000090003 ], [ 365731.758299998939037, 254119.746700000017881 ], [ 365726.076399996876717, 254124.133200000971556 ], [ 365714.735799998044968, 254130.162099998444319 ], [ 365704.238399997353554, 254132.818300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86266943, "LATITUDE": 18.31790857, "OBJECTID_1": 39654, "PARCEL_NO_": "107703016500", "Tax_Legal_": "FRYDENHOJ ESTATE 41-3 RED HOOK QUARTER", "Name": "SCOTT, DAVID", "Address": "PO Box 1127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 303500, "Improved_V": 45000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 328.53741627, "SHAPE_Area": 6038.694498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366004.274899996817112, 254316.342999998480082 ], [ 366001.106799997389317, 254376.74720000103116 ], [ 366022.223600000143051, 254383.457899998873472 ], [ 366033.407700002193451, 254395.79280000180006 ], [ 366035.034699998795986, 254394.117400001734495 ], [ 366039.066200003027916, 254394.150400001555681 ], [ 366040.671700000762939, 254395.00789999961853 ], [ 366041.46000000089407, 254397.125300001353025 ], [ 366071.329499997198582, 254393.147900000214577 ], [ 366070.042400002479553, 254354.929400000721216 ], [ 366069.372699998319149, 254338.880800001323223 ], [ 366067.925499998033047, 254319.448399998247623 ], [ 366067.360200002789497, 254291.157200001180172 ], [ 366063.280100002884865, 254296.823399998247623 ], [ 366059.219700001180172, 254300.167599998414516 ], [ 366043.095299996435642, 254299.824599999934435 ], [ 366034.240199998021126, 254298.063299998641014 ], [ 366027.008599996566772, 254295.048799999058247 ], [ 366022.958999998867512, 254297.126600001007318 ], [ 366022.13289999961853, 254299.441899999976158 ], [ 366012.433799996972084, 254302.106699999421835 ], [ 366005.145099997520447, 254299.7511 ], [ 366004.274899996817112, 254316.342999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107703015400", "MAP": "A9-600-T003", "PARCEL_NAM": "41 REM", "ACRE": "4.52", "LONGITUDE": -64.86363899, "LATITUDE": 18.31808554, "OBJECTID_1": 39643, "PARCEL_NO_": "107703015400", "Tax_Legal_": "41-7&41 REMAINDER FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "No. 41 FRYDENHOJ LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021409, "Country": "United States", "Land_Value": 843000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 743.14201537600002, "SHAPE_Area": 19996.054089099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366004.274899996817112, 254316.342999998480082 ], [ 366005.145099997520447, 254299.7511 ], [ 366000.371500000357628, 254298.208299998193979 ], [ 365990.738899998366833, 254293.063200000673532 ], [ 365988.357699997723103, 254288.610800001770258 ], [ 365986.82599999755621, 254279.098999999463558 ], [ 365983.622299998998642, 254276.539700001478195 ], [ 365980.393500000238419, 254276.935499999672174 ], [ 365978.761100001633167, 254279.244100000709295 ], [ 365978.73589999973774, 254282.199200000613928 ], [ 365977.101700000464916, 254284.719000000506639 ], [ 365973.046800002455711, 254287.429999999701977 ], [ 365963.33330000191927, 254291.783500000834465 ], [ 365960.8783999979496, 254295.985199999064207 ], [ 365959.157899998128414, 254308.636799998581409 ], [ 365956.726300001144409, 254310.094500001519918 ], [ 365951.071400001645088, 254311.314800001680851 ], [ 365941.38120000064373, 254312.924199998378754 ], [ 365930.906300000846386, 254311.994100000709295 ], [ 365915.620600000023842, 254307.858300000429153 ], [ 365897.944600000977516, 254300.325300000607967 ], [ 365884.312799997627735, 254291.347800001502037 ], [ 365879.532499998807907, 254284.553700000047684 ], [ 365875.614200003445148, 254271.222699999809265 ], [ 365873.220499999821186, 254268.247800000011921 ], [ 365865.195100001990795, 254263.749200001358986 ], [ 365858.791400000452995, 254258.208299998193979 ], [ 365848.363300003111362, 254251.790199998766184 ], [ 365852.848700001835823, 254293.201200000941753 ], [ 365866.529700003564358, 254391.049499999731779 ], [ 365884.074400000274181, 254413.991200000047684 ], [ 365896.975400000810623, 254414.096799999475479 ], [ 365908.23139999806881, 254417.988600000739098 ], [ 365937.881599999964237, 254439.762800000607967 ], [ 365970.80009999871254, 254456.497600000351667 ], [ 365980.416500002145767, 254463.542300000786781 ], [ 366001.163099996745586, 254489.25450000166893 ], [ 366004.359499998390675, 254492.658100001513958 ], [ 366006.79110000282526, 254491.200399998575449 ], [ 366000.718199998140335, 254446.820999998599291 ], [ 365996.927599996328354, 254418.503499999642372 ], [ 365990.860100001096725, 254373.490899998694658 ], [ 366001.106799997389317, 254376.74720000103116 ], [ 366004.274899996817112, 254316.342999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042500", "MAP": "D9-7801-T007", "PARCEL_NAM": "48-4-A", "ACRE": ".096", "LONGITUDE": -64.86694102, "LATITUDE": 18.32329442, "OBJECTID_1": 38508, "PARCEL_NO_": "107602042500", "Tax_Legal_": "48-2, 48-4, 54-B-1 & 54-C-1 FRYDENHOJ", "Name": "VICTOR, FRANKLYN", "Address": "PO Box 308034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.267693992299996, "SHAPE_Area": 541.58209275499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365594.380800001323223, 254927.049800001084805 ], [ 365571.710199996829033, 254922.426199998706579 ], [ 365571.646700002253056, 254929.879900000989437 ], [ 365571.448899999260902, 254953.098600000143051 ], [ 365582.744499996304512, 254952.346700001507998 ], [ 365586.770599998533726, 254953.012899998575449 ], [ 365594.380800001323223, 254927.049800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602042500", "MAP": "D9-7801-T007", "PARCEL_NAM": "48-4 REM", "ACRE": ".23", "LONGITUDE": -64.86690717, "LATITUDE": 18.32305024, "OBJECTID_1": 38508, "PARCEL_NO_": "107602042500", "Tax_Legal_": "48-2, 48-4, 54-B-1 & 54-C-1 FRYDENHOJ", "Name": "VICTOR, FRANKLYN", "Address": "PO Box 308034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.89017963400001, "SHAPE_Area": 745.16438827699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365602.687600001692772, 254900.311000000685453 ], [ 365568.276199996471405, 254896.62049999833107 ], [ 365568.696599997580051, 254897.558499999344349 ], [ 365571.761799998581409, 254916.370900001376867 ], [ 365571.710199996829033, 254922.426199998706579 ], [ 365594.380800001323223, 254927.049800001084805 ], [ 365595.906199999153614, 254921.845800001174212 ], [ 365602.687600001692772, 254900.311000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86402077, "LATITUDE": 18.32237418, "OBJECTID_1": 39604, "PARCEL_NO_": "107703010900", "Tax_Legal_": "FRYDENHOJ ESTATE 17AG RED HOOK", "Name": "TRUST AGREEMENT OF THE PERCELL FAMILY", "Address": "PO Box 304910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034910, "Country": "United States", "Land_Value": 39700, "Improved_V": 183100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.166666992, "SHAPE_Area": 924.36793775299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365905.703699998557568, 254854.706599999219179 ], [ 365904.08839999884367, 254822.831799998879433 ], [ 365871.704099997878075, 254823.160399999469519 ], [ 365871.718299999833107, 254823.200500000268221 ], [ 365881.916199997067451, 254856.636700000613928 ], [ 365905.703699998557568, 254854.706599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703011100", "MAP": "D9-8007-T007", "PARCEL_NAM": "17C REM", "ACRE": ".267", "LONGITUDE": -64.86408276, "LATITUDE": 18.32182832, "OBJECTID_1": 39606, "PARCEL_NO_": "107703011100", "Tax_Legal_": "FRYDENHOJ ESTATE 17CA RED HOOK QTR", "Name": "SMITH, HERSHEL", "Address": "PO Box 303682", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 75600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.58157321900001, "SHAPE_Area": 928.96226640700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365902.550800003111362, 254792.49040000140667 ], [ 365901.230999998748302, 254766.446800000965595 ], [ 365870.628899998962879, 254761.763399999588728 ], [ 365868.935400001704693, 254771.248700000345707 ], [ 365864.745600000023842, 254789.790600001811981 ], [ 365902.550800003111362, 254792.49040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703011100", "MAP": "G9-1571-T70", "PARCEL_NAM": "17Ca", "ACRE": ".233", "LONGITUDE": -64.86410494, "LATITUDE": 18.32209533, "OBJECTID_1": 39606, "PARCEL_NO_": "107703011100", "Tax_Legal_": "FRYDENHOJ ESTATE 17CA RED HOOK QTR", "Name": "SMITH, HERSHEL", "Address": "PO Box 303682", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 75600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.54260148099999, "SHAPE_Area": 1341.90948273 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365904.08839999884367, 254822.831799998879433 ], [ 365902.550800003111362, 254792.49040000140667 ], [ 365864.745600000023842, 254789.790600001811981 ], [ 365858.009199999272823, 254823.299400001764297 ], [ 365871.704099997878075, 254823.160399999469519 ], [ 365904.08839999884367, 254822.831799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8643664, "LATITUDE": 18.32239875, "OBJECTID_1": 39602, "PARCEL_NO_": "107703010700", "Tax_Legal_": "FRYDENHOJ ESTATE 17AF RED HOOK", "Name": "LLOYD, ALFRED & EILEEN", "Address": "PO Box 7193", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.08813538000001, "SHAPE_Area": 1555.97716537 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365840.763700000941753, 254859.8885000012815 ], [ 365881.916199997067451, 254856.636700000613928 ], [ 365871.718299999833107, 254823.200500000268221 ], [ 365858.009199999272823, 254823.299400001764297 ], [ 365853.158699996769428, 254824.737300001084805 ], [ 365843.472199998795986, 254825.924600001424551 ], [ 365827.354900002479553, 254824.737199999392033 ], [ 365821.723300002515316, 254823.213500000536442 ], [ 365828.594099998474121, 254835.993099998682737 ], [ 365834.706000000238419, 254848.402100000530481 ], [ 365840.763700000941753, 254859.8885000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021200", "MAP": "D9-8184-T008", "PARCEL_NAM": "5-3", "ACRE": "1.00", "LONGITUDE": -64.8631178, "LATITUDE": 18.32221012, "OBJECTID_1": 39218, "PARCEL_NO_": "107701021200", "Tax_Legal_": "PAR 5-11, 5-12 AND R.O.W. 5AB FRYDENHOJ 3 RED HOOK QTR", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.90017595399999, "SHAPE_Area": 2790.3190152699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365983.239000000059605, 254865.763399999588728 ], [ 366005.802000001072884, 254864.390000000596046 ], [ 366004.533299997448921, 254850.885299999266863 ], [ 366002.3462999984622, 254823.636300001293421 ], [ 365997.885999999940395, 254779.270199999213219 ], [ 365997.706900000572205, 254776.319499999284744 ], [ 365967.137500002980232, 254776.528099998831749 ], [ 365967.248000003397465, 254778.808299999684095 ], [ 365974.038400001823902, 254866.323399998247623 ], [ 365983.239000000059605, 254865.763399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701056500", "MAP": "D9-8084-T008", "PARCEL_NAM": "28-10", "ACRE": ".23", "LONGITUDE": -64.8657984, "LATITUDE": 18.32700815, "OBJECTID_1": 39432, "PARCEL_NO_": "107701056500", "Tax_Legal_": "28-10 FRYDENHOJ #3 RED HOOK QTR.", "Name": "GEDESIA WALLACE and ALBERTUS GAYLE", "Address": "6030 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.350083101, "SHAPE_Area": 1619.4333082200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365717.858999997377396, 255339.819600000977516 ], [ 365717.469400003552437, 255324.107700001448393 ], [ 365714.691299997270107, 255324.478199999779463 ], [ 365695.42960000038147, 255326.515399999916553 ], [ 365676.694600000977516, 255330.358500000089407 ], [ 365679.5016999989748, 255334.849800001829863 ], [ 365680.057300001382828, 255337.257500000298023 ], [ 365686.354400001466274, 255374.669599998742342 ], [ 365688.947300001978874, 255380.5962999984622 ], [ 365690.058600001037121, 255382.818799998611212 ], [ 365692.83669999986887, 255384.300400000065565 ], [ 365695.42960000038147, 255384.115200001746416 ], [ 365698.02250000089407, 255381.892700001597404 ], [ 365703.023199997842312, 255376.892099998891354 ], [ 365709.876800000667572, 255363.119800001382828 ], [ 365711.521799996495247, 255359.333599999547005 ], [ 365713.145199999213219, 255358.080299999564886 ], [ 365717.322400003671646, 255341.015900000929832 ], [ 365717.858999997377396, 255339.819600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701056600", "MAP": "D9-8084-T008", "PARCEL_NAM": "28-11", "ACRE": ".23", "LONGITUDE": -64.8657208, "LATITUDE": 18.3266659, "OBJECTID_1": 39433, "PARCEL_NO_": "107701056600", "Tax_Legal_": "28-11 FRYDENHOJ #3 RED HOOK QTR.", "Name": "TODMAN T. & FRYDENHOJ CORP", "Address": "PO Box 10483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.499890972, "SHAPE_Area": 877.26990717199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365725.253300003707409, 255321.18299999833107 ], [ 365720.432700000703335, 255305.586899999529123 ], [ 365689.317699998617172, 255288.362500000745058 ], [ 365695.42960000038147, 255326.515399999916553 ], [ 365714.691299997270107, 255324.478199999779463 ], [ 365717.469400003552437, 255324.107700001448393 ], [ 365717.858999997377396, 255339.819600000977516 ], [ 365723.076300002634525, 255328.186299998313189 ], [ 365725.253300003707409, 255321.18299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701056700", "MAP": "D9-8084-T008", "PARCEL_NAM": "28-12", "ACRE": ".24", "LONGITUDE": -64.86573519, "LATITUDE": 18.32639754, "OBJECTID_1": 39434, "PARCEL_NO_": "107701056700", "Tax_Legal_": "28-12 FRYDENHOJ #3 RED HOOK QTR.", "Name": "NOEL, DENNIS & MARGARET", "Address": "PO Box 12505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.86711437100001, "SHAPE_Area": 1329.8693416199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365689.317699998617172, 255288.362500000745058 ], [ 365720.432700000703335, 255305.586899999529123 ], [ 365725.253300003707409, 255321.18299999833107 ], [ 365725.56360000371933, 255320.185100000351667 ], [ 365727.282300002872944, 255307.744600001722574 ], [ 365728.107799999415874, 255290.662000000476837 ], [ 365718.395400002598763, 255274.6570999994874 ], [ 365707.894199997186661, 255268.05799999833107 ], [ 365679.390799999237061, 255250.146299999207258 ], [ 365687.613499999046326, 255281.801600001752377 ], [ 365689.317699998617172, 255288.362500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701018600", "MAP": "D9-5860-T95", "PARCEL_NAM": "29-E", "ACRE": "0.30", "LONGITUDE": -64.86574062, "LATITUDE": 18.32583846, "OBJECTID_1": 39202, "PARCEL_NO_": "107701018600", "Tax_Legal_": "29-E ESTATE FRYDENHOJ REDHOOK QTR.", "Name": "FRANK, SANTANA & MARIE LEDEE", "Address": "PO Box 10107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.601073222, "SHAPE_Area": 1486.93880184 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365681.27139999717474, 255218.708799999207258 ], [ 365690.807300001382828, 255219.056600000709295 ], [ 365726.101800002157688, 255257.009399998933077 ], [ 365726.113799996674061, 255255.594999998807907 ], [ 365727.7804000005126, 255249.275800000876188 ], [ 365728.608300000429153, 255246.749400001019239 ], [ 365731.909000001847744, 255237.910500001162291 ], [ 365734.351400002837181, 255235.186299998313189 ], [ 365706.183499999344349, 255203.872800000011921 ], [ 365698.772200003266335, 255195.147799998521805 ], [ 365680.511900000274181, 255191.952300000935793 ], [ 365678.312600001692772, 255191.667399998754263 ], [ 365679.01070000231266, 255200.114000000059605 ], [ 365681.27139999717474, 255218.708799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055500", "MAP": "D9-8378-T009", "PARCEL_NAM": "32-32A", "ACRE": ".016", "LONGITUDE": -64.8647731, "LATITUDE": 18.32724592, "OBJECTID_1": 39424, "PARCEL_NO_": "107701055500", "Tax_Legal_": "FRYDENHOJ ESTATE 32-32 No.3 RED HOOK QTR.", "Name": "HESKEY, NIHJOLE C.", "Address": "7284 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.437124887099998, "SHAPE_Area": 75.8729326869 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365805.592799998819828, 255365.456300001591444 ], [ 365802.382600001990795, 255382.309599999338388 ], [ 365805.669699996709824, 255382.480000000447035 ], [ 365811.303099997341633, 255383.792700000107288 ], [ 365805.592799998819828, 255365.456300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701056300", "MAP": "D9-8046-T007", "PARCEL_NAM": "28-2", "ACRE": ".23", "LONGITUDE": -64.86594915000001, "LATITUDE": 18.32753462, "OBJECTID_1": 39431, "PARCEL_NO_": "107701056300", "Tax_Legal_": "28-8 FRYDENHOJ #3 RED HOOK QTR.", "Name": "CEPEDA, NANCY", "Address": "PO Box 8232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.342041493, "SHAPE_Area": 870.20082375100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365688.399599999189377, 255427.169399999082088 ], [ 365689.235100001096725, 255426.105999998748302 ], [ 365691.642800003290176, 255421.290600001811981 ], [ 365696.553700000047684, 255390.131700001657009 ], [ 365695.244400002062321, 255390.412300001829863 ], [ 365690.984600000083447, 255389.301100000739098 ], [ 365687.095200002193451, 255384.300400000065565 ], [ 365686.48870000243187, 255383.14809999987483 ], [ 365665.528499998152256, 255409.437300000339746 ], [ 365666.626199997961521, 255423.349599998444319 ], [ 365688.399599999189377, 255427.169399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701056200", "MAP": "D9-8046-T007", "PARCEL_NAM": "28-7", "ACRE": ".31", "LONGITUDE": -64.86611746, "LATITUDE": 18.32740335, "OBJECTID_1": 39430, "PARCEL_NO_": "107701056200", "Tax_Legal_": "28-7 FRYDENHOJ #3 RED HOOK QTR.", "Name": "WILLIAMS, KENNETH & CARMINE", "Address": "PO Box 502843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 36300, "Improved_V": 227800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.23291720700001, "SHAPE_Area": 1373.3398885500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365678.82209999859333, 255357.902100000530481 ], [ 365645.657700002193451, 255393.169599998742342 ], [ 365645.6925999969244, 255419.589699998497963 ], [ 365666.626199997961521, 255423.349599998444319 ], [ 365665.528499998152256, 255409.437300000339746 ], [ 365686.48870000243187, 255383.14809999987483 ], [ 365683.391099996864796, 255377.262499999254942 ], [ 365682.0945999994874, 255371.521099999547005 ], [ 365680.427699998021126, 255365.779599998146296 ], [ 365678.82209999859333, 255357.902100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055900", "MAP": "D9-8046-T007", "PARCEL_NAM": "28-4", "ACRE": ".27", "LONGITUDE": -64.86648021000001, "LATITUDE": 18.32746473, "OBJECTID_1": 39428, "PARCEL_NO_": "107701055900", "Tax_Legal_": "28-4 FRYDENHOJ #3 RED HOOK QTR.", "Name": "ELLIOTT, GRANVILLE & JULIANA", "Address": "PO BOX 305070", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57500, "Improved_V": 195700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.19885221499999, "SHAPE_Area": 1334.0638325299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365645.64580000191927, 255384.147799998521805 ], [ 365604.249200001358986, 255382.675200000405312 ], [ 365604.793600000441074, 255393.0793999992311 ], [ 365604.630000002682209, 255412.287599999457598 ], [ 365645.6925999969244, 255419.589699998497963 ], [ 365645.64580000191927, 255384.147799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055800", "MAP": "D9-8144-T008", "PARCEL_NAM": "28-3", "ACRE": ".26", "LONGITUDE": -64.86649243, "LATITUDE": 18.3271953, "OBJECTID_1": 39427, "PARCEL_NO_": "107701055800", "Tax_Legal_": "28-3 FRYDENHOJ #3 RED HOOK QTR.", "Name": "FRANCIS, GIFFORD", "Address": "6514 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.961455562, "SHAPE_Area": 1130.14549091 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365645.609700001776218, 255356.737100001424551 ], [ 365602.870200000703335, 255356.324799999594688 ], [ 365604.249200001358986, 255382.675200000405312 ], [ 365645.64580000191927, 255384.147799998521805 ], [ 365645.609700001776218, 255356.737100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055700", "MAP": "D9-8144-T008", "PARCEL_NAM": "28-2", "ACRE": ".27", "LONGITUDE": -64.86649946, "LATITUDE": 18.32696931, "OBJECTID_1": 39426, "PARCEL_NO_": "107701055700", "Tax_Legal_": "28-2 FRYDENHOJ #3 RED HOOK QTR.", "Name": "CALLWOOD, ELVIN & YVETTE SMITH", "Address": "PO Box 306485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38600, "Improved_V": 529800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.90991629600001, "SHAPE_Area": 1004.24722364 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365645.577899999916553, 255332.711899999529123 ], [ 365601.840700000524521, 255333.961500000208616 ], [ 365602.01969999819994, 255340.072200000286102 ], [ 365602.870200000703335, 255356.324799999594688 ], [ 365645.609700001776218, 255356.737100001424551 ], [ 365645.577899999916553, 255332.711899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055600", "MAP": "D9-8144-T008", "PARCEL_NAM": "29M", "ACRE": ".27", "LONGITUDE": -64.8665109, "LATITUDE": 18.326743, "OBJECTID_1": 39425, "PARCEL_NO_": "107701055600", "Tax_Legal_": "29M ESTATE FRYDENHOJ No.3 RED HOOK QTR", "Name": "GEORGE, MERLYN", "Address": "PO Box 304764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.19610023499999, "SHAPE_Area": 1189.34995725 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365645.543799996376038, 255306.807700000703335 ], [ 365601.020700000226498, 255305.967700000852346 ], [ 365601.840700000524521, 255333.961500000208616 ], [ 365645.577899999916553, 255332.711899999529123 ], [ 365645.548299998044968, 255310.279800001531839 ], [ 365645.543799996376038, 255306.807700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701017800", "MAP": "A9-402-T92", "PARCEL_NAM": "29-D", "ACRE": "0.31", "LONGITUDE": -64.86650364, "LATITUDE": 18.32646393, "OBJECTID_1": 39195, "PARCEL_NO_": "107701017800", "Tax_Legal_": "FRYDENHOJ ESTATE 29-D RED HOOK QUARTER", "Name": "CHARLESWELL, ELIAS & RIEL", "Address": "146-156 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.56296694, "SHAPE_Area": 1700.55626018 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365642.12780000269413, 255270.106300000101328 ], [ 365600.196000002324581, 255270.185300000011921 ], [ 365600.770300000905991, 255297.421100001782179 ], [ 365601.020700000226498, 255305.967700000852346 ], [ 365645.543799996376038, 255306.807700000703335 ], [ 365653.254799999296665, 255306.953200001269579 ], [ 365652.307800002396107, 255305.653299998492002 ], [ 365650.750900000333786, 255299.096700001507998 ], [ 365649.9662000015378, 255296.557199999690056 ], [ 365645.257799997925758, 255281.319899998605251 ], [ 365642.12780000269413, 255270.106300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701055500", "MAP": "D9-8378-T009", "PARCEL_NAM": "32-32 REM", "ACRE": ".23", "LONGITUDE": -64.86499041, "LATITUDE": 18.32713963, "OBJECTID_1": 39424, "PARCEL_NO_": "107701055500", "Tax_Legal_": "FRYDENHOJ ESTATE 32-32 No.3 RED HOOK QTR.", "Name": "HESKEY, NIHJOLE C.", "Address": "7284 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.749789349, "SHAPE_Area": 1161.66310948 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365777.715800002217293, 255350.374499998986721 ], [ 365763.127300001680851, 255345.407900001853704 ], [ 365762.968400001525879, 255345.353799998760223 ], [ 365756.22410000115633, 255343.057700000703335 ], [ 365756.108900003135204, 255343.282200001180172 ], [ 365760.085199996829033, 255351.350400000810623 ], [ 365775.827200002968311, 255383.291299998760223 ], [ 365795.997599996626377, 255381.978700000792742 ], [ 365802.382600001990795, 255382.309599999338388 ], [ 365805.592799998819828, 255365.456300001591444 ], [ 365802.669299997389317, 255356.068799998611212 ], [ 365777.720299996435642, 255350.376200001686811 ], [ 365777.715800002217293, 255350.374499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701057600", "MAP": null, "PARCEL_NAM": "28-21", "ACRE": null, "LONGITUDE": -64.86524395000001, "LATITUDE": 18.327473, "OBJECTID_1": 39437, "PARCEL_NO_": "107701057600", "Tax_Legal_": "28-21 FRYDENHOJ RED HOOK QTR", "Name": "HECTOR, SHARMAIN", "Address": "PO Box 6642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34000, "Improved_V": 76300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.469554773, "SHAPE_Area": 1483.3570476899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365774.01860000193119, 255406.285700000822544 ], [ 365749.298000000417233, 255373.785999998450279 ], [ 365744.000200003385544, 255366.876299999654293 ], [ 365728.947800002992153, 255396.206500001251698 ], [ 365736.156000003218651, 255401.964999999850988 ], [ 365772.204499997198582, 255429.91330000013113 ], [ 365775.435199998319149, 255429.306400001049042 ], [ 365781.89469999819994, 255428.303800001740456 ], [ 365789.957800000905991, 255428.369800001382828 ], [ 365774.01860000193119, 255406.285700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701053500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86584939, "LATITUDE": 18.3279025, "OBJECTID_1": 39408, "PARCEL_NO_": "107701053500", "Tax_Legal_": "FRYDENHOJ ESTATE 37-20 No.3 RED HOOK QTR.", "Name": "FRYDENHOJ ESTATES CORP", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42700, "Improved_V": 279000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.584923661, "SHAPE_Area": 1256.5992783700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365697.850400000810623, 255428.827399998903275 ], [ 365697.471900001168251, 255431.258299998939037 ], [ 365689.987199999392033, 255430.430500000715256 ], [ 365686.42960000038147, 255430.877300001680851 ], [ 365685.366599999368191, 255431.631999999284744 ], [ 365684.964400000870228, 255433.728900000452995 ], [ 365679.208499997854233, 255432.915899999439716 ], [ 365678.92849999666214, 255431.958799999207258 ], [ 365677.121699996292591, 255429.842999998480082 ], [ 365675.592399999499321, 255428.97069999948144 ], [ 365673.583700001239777, 255427.998799998313189 ], [ 365670.223899997770786, 255427.779100000858307 ], [ 365668.745399996638298, 255427.598900001496077 ], [ 365669.797499999403954, 255429.708399999886751 ], [ 365674.593999996781349, 255434.602800000458956 ], [ 365675.227700002491474, 255454.872999999672174 ], [ 365686.379399999976158, 255471.007399998605251 ], [ 365698.423699997365475, 255477.016600001603365 ], [ 365713.325699999928474, 255431.542300000786781 ], [ 365697.850400000810623, 255428.827399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701053600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86615604000001, "LATITUDE": 18.32789755, "OBJECTID_1": 39409, "PARCEL_NO_": "107701053600", "Tax_Legal_": "FRYDENHOJ ESTATE 37-21 RED HOOK QUARTER NO. 3", "Name": "LAPLANTE, SERGO", "Address": "PO Box 308117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49200, "Improved_V": 238200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.76333372, "SHAPE_Area": 1293.79516921 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365668.745399996638298, 255427.598900001496077 ], [ 365647.484099999070168, 255425.006799999624491 ], [ 365645.247800000011921, 255424.729499999433756 ], [ 365643.903800003230572, 255440.262299999594688 ], [ 365642.062799997627735, 255467.056099999696016 ], [ 365675.940499998629093, 255465.855700001120567 ], [ 365686.379399999976158, 255471.007399998605251 ], [ 365675.227700002491474, 255454.872999999672174 ], [ 365674.593999996781349, 255434.602800000458956 ], [ 365669.797499999403954, 255429.708399999886751 ], [ 365668.745399996638298, 255427.598900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602051600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86650116, "LATITUDE": 18.32774932, "OBJECTID_1": 38528, "PARCEL_NO_": "107602051600", "Tax_Legal_": "37-22 ESTATE FRYDENHOJ RED HOOK QTR.", "Name": "THOMPSON, GLENVILLE & ERICA", "Address": "PO Box 306597", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36600, "Improved_V": 255300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.038446545, "SHAPE_Area": 742.36125607600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365645.247800000011921, 255424.729499999433756 ], [ 365604.35700000077486, 255419.658500000834465 ], [ 365603.582699999213219, 255440.565499998629093 ], [ 365643.903800003230572, 255440.262299999594688 ], [ 365645.247800000011921, 255424.729499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013200", "MAP": "B9-167-T67", "PARCEL_NAM": "8-7", "ACRE": "1.33", "LONGITUDE": -64.86608928, "LATITUDE": 18.32415049, "OBJECTID_1": 39150, "PARCEL_NO_": "107701013200", "Tax_Legal_": "8-7 EST FRYDENHOJ RED HOOK QUARTER", "Name": "PENN, SHERILL", "Address": "PO Box 7261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 162500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.99034354600002, "SHAPE_Area": 4539.2567118899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365618.837999999523163, 255088.183899998664856 ], [ 365709.389499999582767, 255041.704599998891354 ], [ 365709.492700003087521, 255029.588799998164177 ], [ 365708.74210000038147, 255023.038800001144409 ], [ 365699.406199999153614, 254983.065699998289347 ], [ 365699.445799998939037, 254978.421900000423193 ], [ 365698.693400003015995, 254972.083000000566244 ], [ 365637.693099997937679, 255033.434099998325109 ], [ 365618.837999999523163, 255088.183899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013300", "MAP": "B9-167-T67", "PARCEL_NAM": "8-6", "ACRE": ".28", "LONGITUDE": -64.86557802, "LATITUDE": 18.32395738, "OBJECTID_1": 39151, "PARCEL_NO_": "107701013300", "Tax_Legal_": "FRYDENHOJ 8-6 RED HOOK QTR", "Name": "CHRISTOPHER, JOSEPH", "Address": "5855 Harrington Dr", "City": "Orlando", "State": "Florida", "Zip": 32808, "Country": "United States", "Land_Value": 69800, "Improved_V": 294200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.84449327300001, "SHAPE_Area": 1078.59190715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365715.86879999935627, 255038.378800000995398 ], [ 365752.956399999558926, 255019.342000000178814 ], [ 365744.282799996435642, 255015.941399998962879 ], [ 365709.100000001490116, 254981.034099999815226 ], [ 365705.8800999969244, 254980.374499998986721 ], [ 365715.174599997699261, 255025.202399998903275 ], [ 365715.912600003182888, 255033.230000000447035 ], [ 365715.86879999935627, 255038.378800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602043200", "MAP": "D9-6507-T98", "PARCEL_NAM": "84D-1", "ACRE": ".23", "LONGITUDE": -64.86649192, "LATITUDE": 18.32475254, "OBJECTID_1": 38512, "PARCEL_NO_": "107602043200", "Tax_Legal_": "ESTATE FRYDENHOJ 84D-1 REDHOOK QTR.", "Name": "DELAGARDE, MELISSA A", "Address": "PO Box 502086", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.295479247, "SHAPE_Area": 790.63055427699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365607.248999997973442, 255121.834499999880791 ], [ 365645.32490000128746, 255102.796599999070168 ], [ 365637.294100001454353, 255078.710499998182058 ], [ 365618.837999999523163, 255088.183899998664856 ], [ 365607.248999997973442, 255121.834499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013100", "MAP": "D9-3569-89", "PARCEL_NAM": "84-1", "ACRE": ".25", "LONGITUDE": -64.86501438000001, "LATITUDE": 18.32415358, "OBJECTID_1": 39149, "PARCEL_NO_": "107701013100", "Tax_Legal_": "84A-1 ESTATE FRYDENHOJ REDHOOK QTR.", "Name": "VENZEN, JOHN", "Address": "6233 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 118300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.367081365, "SHAPE_Area": 866.39651986499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365778.142499998211861, 255016.851799998432398 ], [ 365776.640799999237061, 255022.226599998772144 ], [ 365769.47749999910593, 255029.9206000007689 ], [ 365768.681599996984005, 255036.022599998861551 ], [ 365772.926500000059605, 255046.236900001764297 ], [ 365778.008400000631809, 255056.862700000405312 ], [ 365799.992200002074242, 255044.260400000959635 ], [ 365798.131300002336502, 255036.858199998736382 ], [ 365796.556500002741814, 255032.412300001829863 ], [ 365794.96000000089407, 255030.499400001019239 ], [ 365794.976199999451637, 255028.599700000137091 ], [ 365793.379799999296665, 255026.686799999326468 ], [ 365793.397699996829033, 255024.5760000012815 ], [ 365789.47410000115633, 255011.878299999982119 ], [ 365787.883000001311302, 255009.332100000232458 ], [ 365778.142499998211861, 255016.851799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701017000", "MAP": "D9-2857-T84", "PARCEL_NAM": "84C", "ACRE": ".489", "LONGITUDE": -64.86614279, "LATITUDE": 18.32469585, "OBJECTID_1": 39187, "PARCEL_NO_": "107701017000", "Tax_Legal_": "84C FRYDENHOJ RED HOOK QTR.", "Name": "TURNBULL, DALE", "Address": "936 Brass Ring Rd", "City": "Las Vegas", "State": "Nevada", "Zip": 89123, "Country": "United States", "Land_Value": 85000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.37401107599999, "SHAPE_Area": 2125.81335373 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365637.294100001454353, 255078.710499998182058 ], [ 365653.758100003004074, 255128.089600000530481 ], [ 365691.585600003600121, 255106.404899999499321 ], [ 365673.770999997854233, 255059.987199999392033 ], [ 365637.294100001454353, 255078.710499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602043300", "MAP": "D9-6507-T98", "PARCEL_NAM": "84D-2", "ACRE": ".23", "LONGITUDE": -64.86646503, "LATITUDE": 18.32500349, "OBJECTID_1": 38513, "PARCEL_NO_": "107602043300", "Tax_Legal_": "84D-2 ESTATE FRYDENHOJ REDHOOK QTR.", "Name": "THOMAS, HENRY E., JR. & SYRIA M. DELAGARDE", "Address": "PO Box 7751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46400, "Improved_V": 185000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.6215477, "SHAPE_Area": 1222.4056381299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365614.446299999952316, 255118.23589999973774 ], [ 365606.409400001168251, 255155.232500001788139 ], [ 365653.758100003004074, 255128.089600000530481 ], [ 365645.32490000128746, 255102.796599999070168 ], [ 365614.446299999952316, 255118.23589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014900", "MAP": "D9-8045-T007", "PARCEL_NAM": "R.O.W", "ACRE": null, "LONGITUDE": -64.86513692, "LATITUDE": 18.32418886, "OBJECTID_1": 39167, "PARCEL_NO_": "107701014900", "Tax_Legal_": "ESTATE FRYDENHOJ 93 RED HOOK QUARTER", "Name": "DURANT, FILIMON", "Address": "PO Box 10008", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41100, "Improved_V": 104100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.241562081, "SHAPE_Area": 189.033755547 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365772.47860000282526, 255019.127500001341105 ], [ 365771.069300003349781, 255023.553199999034405 ], [ 365767.354999996721745, 255027.400100000202656 ], [ 365764.834600001573563, 255031.910399999469519 ], [ 365764.701999999582767, 255040.002199999988079 ], [ 365767.752999998629093, 255045.573699999600649 ], [ 365774.101599998772144, 255059.102200001478195 ], [ 365778.008400000631809, 255056.862700000405312 ], [ 365772.926500000059605, 255046.236900001764297 ], [ 365768.681599996984005, 255036.022599998861551 ], [ 365769.47749999910593, 255029.9206000007689 ], [ 365776.640799999237061, 255022.226599998772144 ], [ 365778.142499998211861, 255016.851799998432398 ], [ 365772.47860000282526, 255019.127500001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012900", "MAP": "F9-1540-T65", "PARCEL_NAM": "84A", "ACRE": null, "LONGITUDE": -64.86557643, "LATITUDE": 18.32439137, "OBJECTID_1": 39147, "PARCEL_NO_": "107701012900", "Tax_Legal_": "84 & 84A FRYDENHOJ RED HOOK QTR", "Name": "VENZEN, ISIAH & LUCIA", "Address": "PO Box 502086", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 230300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.157949153, "SHAPE_Area": 4520.8168507299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365774.101599998772144, 255059.102200001478195 ], [ 365767.752999998629093, 255045.573699999600649 ], [ 365764.701999999582767, 255040.002199999988079 ], [ 365764.834600001573563, 255031.910399999469519 ], [ 365767.354999996721745, 255027.400100000202656 ], [ 365771.069300003349781, 255023.553199999034405 ], [ 365772.47860000282526, 255019.127500001341105 ], [ 365766.017300002276897, 255020.341099999845028 ], [ 365754.730700001120567, 255020.03770000115037 ], [ 365752.956399999558926, 255019.342000000178814 ], [ 365715.86879999935627, 255038.378800000995398 ], [ 365709.389499999582767, 255041.704599998891354 ], [ 365673.770999997854233, 255059.987199999392033 ], [ 365691.585600003600121, 255106.404899999499321 ], [ 365774.101599998772144, 255059.102200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86564941, "LATITUDE": 18.3251933, "OBJECTID_1": 39167, "PARCEL_NO_": "107701014900", "Tax_Legal_": "ESTATE FRYDENHOJ 93 RED HOOK QUARTER", "Name": "DURANT, FILIMON", "Address": "PO Box 10008", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41100, "Improved_V": 104100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 594.52460663199997, "SHAPE_Area": 16116.6322428 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365799.26519999653101, 255137.253800000995398 ], [ 365799.26519999653101, 255106.138799998909235 ], [ 365799.119099996984005, 255089.037599999457598 ], [ 365794.720299996435642, 255091.558600001037121 ], [ 365757.170800000429153, 255110.696600001305342 ], [ 365752.965999998152256, 255071.218299999833107 ], [ 365599.226899996399879, 255159.349899999797344 ], [ 365595.354599997401237, 255177.588199999183416 ], [ 365603.39360000193119, 255178.80799999833107 ], [ 365603.141699999570847, 255181.930799998342991 ], [ 365641.275700002908707, 255186.870099999010563 ], [ 365678.312600001692772, 255191.667399998754263 ], [ 365680.511900000274181, 255191.952300000935793 ], [ 365714.129600003361702, 255197.835400000214577 ], [ 365739.913000002503395, 255201.048500001430511 ], [ 365778.5287000015378, 255205.860800001770258 ], [ 365783.093900002539158, 255205.855200000107288 ], [ 365783.813500002026558, 255197.578999999910593 ], [ 365786.353500001132488, 255185.302299998700619 ], [ 365796.936899997293949, 255150.377199999988079 ], [ 365799.26519999653101, 255137.253800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013000", "MAP": "D9-8045-T007", "PARCEL_NAM": "84B-REM", "ACRE": ".23", "LONGITUDE": -64.8649717, "LATITUDE": 18.32449786, "OBJECTID_1": 39148, "PARCEL_NO_": "107701013000", "Tax_Legal_": "84B FRYDENHOJ RED HOOK QTR", "Name": "VENZEN, PEDRITO A", "Address": "1400 S Valley View Blvd", "City": "Las Vegas", "State": "Nevada", "Zip": 89102, "Country": "United States", "Land_Value": 64400, "Improved_V": 167500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.221327543, "SHAPE_Area": 1266.5169952700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365804.980200000107288, 255043.485300000756979 ], [ 365804.583599999547005, 255041.740200001746416 ], [ 365799.992200002074242, 255044.260400000959635 ], [ 365781.586099997162819, 255054.811700001358986 ], [ 365784.059199996292591, 255061.801100000739098 ], [ 365769.4358000010252, 255068.389600001275539 ], [ 365774.112499997019768, 255102.061900001019239 ], [ 365794.720299996435642, 255091.558600001037121 ], [ 365799.119099996984005, 255089.037599999457598 ], [ 365799.053599998354912, 255081.373700000345707 ], [ 365800.746899999678135, 255075.447000000625849 ], [ 365803.286899998784065, 255063.381999999284744 ], [ 365804.980200000107288, 255056.820300001651049 ], [ 365805.615199998021126, 255050.258699998259544 ], [ 365804.980200000107288, 255043.485300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013000", "MAP": "D9-8045-T007", "PARCEL_NAM": "84B-1", "ACRE": ".23", "LONGITUDE": -64.86520574, "LATITUDE": 18.32463087, "OBJECTID_1": 39148, "PARCEL_NO_": "107701013000", "Tax_Legal_": "84B FRYDENHOJ RED HOOK QTR", "Name": "VENZEN, PEDRITO A", "Address": "1400 S Valley View Blvd", "City": "Las Vegas", "State": "Nevada", "Zip": 89102, "Country": "United States", "Land_Value": 64400, "Improved_V": 167500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.08004271, "SHAPE_Area": 673.64881911199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365774.112499997019768, 255102.061900001019239 ], [ 365769.4358000010252, 255068.389600001275539 ], [ 365767.346799999475479, 255069.353799998760223 ], [ 365766.184799998998642, 255063.640599999576807 ], [ 365752.965999998152256, 255071.218299999833107 ], [ 365757.170800000429153, 255110.696600001305342 ], [ 365774.112499997019768, 255102.061900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013000", "MAP": "D9-8045-T007", "PARCEL_NAM": "84B-REM", "ACRE": ".016", "LONGITUDE": -64.86505854000001, "LATITUDE": 18.32438644, "OBJECTID_1": 39148, "PARCEL_NO_": "107701013000", "Tax_Legal_": "84B FRYDENHOJ RED HOOK QTR", "Name": "VENZEN, PEDRITO A", "Address": "1400 S Valley View Blvd", "City": "Las Vegas", "State": "Nevada", "Zip": 89102, "Country": "United States", "Land_Value": 64400, "Improved_V": 167500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.824484739300001, "SHAPE_Area": 61.3786285443 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365774.093900002539158, 255059.106600001454353 ], [ 365775.739799998700619, 255065.549400001764297 ], [ 365784.059199996292591, 255061.801100000739098 ], [ 365781.586099997162819, 255054.811700001358986 ], [ 365774.093900002539158, 255059.106600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701013000", "MAP": "D9-8045-T007", "PARCEL_NAM": "84B-1 EASMENT A", "ACRE": ".0111", "LONGITUDE": -64.86513408, "LATITUDE": 18.32442374, "OBJECTID_1": 39148, "PARCEL_NO_": "107701013000", "Tax_Legal_": "84B FRYDENHOJ RED HOOK QTR", "Name": "VENZEN, PEDRITO A", "Address": "1400 S Valley View Blvd", "City": "Las Vegas", "State": "Nevada", "Zip": 89102, "Country": "United States", "Land_Value": 64400, "Improved_V": 167500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.811461703799999, "SHAPE_Area": 55.3228607466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365775.739799998700619, 255065.549400001764297 ], [ 365774.093900002539158, 255059.106600001454353 ], [ 365766.184799998998642, 255063.640599999576807 ], [ 365767.346799999475479, 255069.353799998760223 ], [ 365769.4358000010252, 255068.389600001275539 ], [ 365775.739799998700619, 255065.549400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024700", "MAP": "F9-129-T57", "PARCEL_NAM": "3-42", "ACRE": "0.22", "LONGITUDE": -64.88057947, "LATITUDE": 18.32106209, "OBJECTID_1": 38615, "PARCEL_NO_": "107603024700", "Tax_Legal_": "3-42 BOVONI NO. 1&2 FRENCHMANS BAY QUARTER", "Name": "CASIMIR, ROSLYN J", "Address": "PO Box 12317", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.576934435, "SHAPE_Area": 1002.85120466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364158.828000001609325, 254662.874200001358986 ], [ 364159.183600001037121, 254661.837400000542402 ], [ 364133.023699998855591, 254653.10869999974966 ], [ 364133.023000001907349, 254653.183100000023842 ], [ 364133.146300002932549, 254653.297899998724461 ], [ 364132.942100003361702, 254662.681600000709295 ], [ 364132.029700003564358, 254675.128699999302626 ], [ 364125.386799998581409, 254697.661299999803305 ], [ 364143.872699998319149, 254704.7787000015378 ], [ 364157.088299997150898, 254667.945500001311302 ], [ 364158.828000001609325, 254662.874200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019900", "MAP": "F9-137-T57", "PARCEL_NAM": "3-43", "ACRE": null, "LONGITUDE": -64.88027764, "LATITUDE": 18.32118263, "OBJECTID_1": 38575, "PARCEL_NO_": "107603019900", "Tax_Legal_": "POR.3 BOVONI/EASTERN PT. FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE RAMON", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 173700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.42678350400001, "SHAPE_Area": 2174.1672689400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364159.183600001037121, 254661.837400000542402 ], [ 364158.828000001609325, 254662.874200001358986 ], [ 364157.088299997150898, 254667.945500001311302 ], [ 364143.872699998319149, 254704.7787000015378 ], [ 364170.389300003647804, 254715.761500000953674 ], [ 364188.06700000166893, 254723.083299998193979 ], [ 364193.023599997162819, 254709.191700000315905 ], [ 364196.363899998366833, 254695.709100000560284 ], [ 364198.077200002968311, 254683.901900000870228 ], [ 364198.536899998784065, 254674.968499999493361 ], [ 364176.8125, 254667.719700001180172 ], [ 364159.183600001037121, 254661.837400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109402010200", "MAP": "A3-106-T68", "PARCEL_NAM": "1A REM]", "ACRE": null, "LONGITUDE": -64.87993347, "LATITUDE": 18.30903122, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1215.138866, "SHAPE_Area": 24040.725846500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364215.901199996471405, 253333.685699999332428 ], [ 364201.778999999165535, 253310.32319999858737 ], [ 364229.539599999785423, 253291.145700000226498 ], [ 364231.460799999535084, 253289.896000001579523 ], [ 364252.731700003147125, 253324.861600000411272 ], [ 364256.023199997842312, 253322.388900000602007 ], [ 364274.015600003302097, 253303.550700001418591 ], [ 364276.793099999427795, 253301.464099999517202 ], [ 364319.864600002765656, 253279.251600001007318 ], [ 364340.596799999475479, 253266.238099999725819 ], [ 364342.552699998021126, 253248.170499999076128 ], [ 364345.986699998378754, 253237.407400000840425 ], [ 364283.317199997603893, 253197.023200001567602 ], [ 364281.677599996328354, 253200.176199998706579 ], [ 364072.839400000870228, 253482.809999998658895 ], [ 364067.943999998271465, 253489.524900000542402 ], [ 364082.448600001633167, 253490.699099998921156 ], [ 364101.756999999284744, 253495.92339999973774 ], [ 364114.66160000115633, 253495.606800001114607 ], [ 364125.984099999070168, 253491.688700001686811 ], [ 364130.030100002884865, 253490.033100001513958 ], [ 364132.461599998176098, 253488.575300000607967 ], [ 364143.816500000655651, 253480.857799999415874 ], [ 364152.75789999961853, 253472.487199999392033 ], [ 364156.825400002300739, 253468.298599999397993 ], [ 364162.527099996805191, 253461.590300001204014 ], [ 364164.154100000858307, 253459.914900001138449 ], [ 364165.786499999463558, 253457.606199998408556 ], [ 364172.328699998557568, 253446.894000001251698 ], [ 364183.008599996566772, 253423.761100001633167 ], [ 364190.344499997794628, 253414.532999999821186 ], [ 364200.880500003695488, 253408.286499999463558 ], [ 364230.780599996447563, 253400.72069999948144 ], [ 364242.91669999808073, 253395.964899998158216 ], [ 364248.580700002610683, 253393.6891999989748 ], [ 364256.697700001299381, 253387.422800000756979 ], [ 364260.768799997866154, 253382.812100000679493 ], [ 364269.80009999871254, 253363.887600000947714 ], [ 364269.816299997270107, 253361.987900000065565 ], [ 364273.941399998962879, 253351.044799998402596 ], [ 364278.860200002789497, 253341.585799999535084 ], [ 364282.936700001358986, 253336.341899998486042 ], [ 364295.972499996423721, 253320.616500001400709 ], [ 364304.091399997472763, 253314.13910000026226 ], [ 364321.931000001728535, 253302.463899999856949 ], [ 364331.691299997270107, 253292.622299998998642 ], [ 364336.58669999986887, 253285.907400000840425 ], [ 364339.927000001072884, 253272.424800001084805 ], [ 364339.973700001835823, 253271.993200000375509 ], [ 364335.196800000965595, 253273.684500001370907 ], [ 364319.19370000064373, 253283.255100000649691 ], [ 364293.177799999713898, 253296.960999999195337 ], [ 364280.389300003647804, 253302.971700001507998 ], [ 364271.828400000929832, 253311.128499999642372 ], [ 364261.970600001513958, 253322.017299998551607 ], [ 364250.202299997210503, 253332.890000000596046 ], [ 364239.113799996674061, 253338.704199999570847 ], [ 364226.79110000282526, 253339.865699999034405 ], [ 364213.424800001084805, 253338.908300001174212 ], [ 364213.895900003612041, 253333.425999999046326 ], [ 364215.901199996471405, 253333.685699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109402010200", "MAP": "A3-106-T68", "PARCEL_NAM": "1A REM", "ACRE": null, "LONGITUDE": -64.87658075, "LATITUDE": 18.30704945, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3702.62626563, "SHAPE_Area": 149975.70331099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364287.680100001394749, 253476.02479999884963 ], [ 364420.052699998021126, 253466.285900000482798 ], [ 364378.603799998760223, 253370.477600000798702 ], [ 364521.642899997532368, 253333.86259999871254 ], [ 364778.424999997019768, 253386.6266999989748 ], [ 364771.493699997663498, 253348.361999999731779 ], [ 364767.534100003540516, 253339.885899998247623 ], [ 364761.956399999558926, 253332.029800001531839 ], [ 364756.340999998152256, 253328.606300000101328 ], [ 364749.937299996614456, 253323.065499998629093 ], [ 364748.349799998104572, 253320.097199998795986 ], [ 364744.336199998855591, 253317.953400000929832 ], [ 364741.137900002300739, 253314.760800000280142 ], [ 364731.485600002110004, 253311.937600001692772 ], [ 364721.851199999451637, 253307.003600001335144 ], [ 364717.024099998176098, 253305.697500001639128 ], [ 364713.0320999994874, 253301.020799998193979 ], [ 364702.594999998807907, 253295.657999999821186 ], [ 364688.934399999678135, 253290.057799998670816 ], [ 364675.248700000345707, 253287.412599999457598 ], [ 364651.930399999022484, 253279.622400000691414 ], [ 364614.22070000320673, 253257.360100001096725 ], [ 364596.67960000038147, 253233.996199999004602 ], [ 364596.983499996364117, 253198.323899999260902 ], [ 364598.648299999535084, 253192.215799998492002 ], [ 364604.3445999994874, 253186.140700001269579 ], [ 364614.092299997806549, 253177.776700001209974 ], [ 364629.473399996757507, 253170.725400000810623 ], [ 364634.314800001680851, 253170.3429000005126 ], [ 364648.007799997925758, 253172.143699999898672 ], [ 364658.54559999704361, 253165.686000000685453 ], [ 364687.921700000762939, 253124.974300000816584 ], [ 364691.292599998414516, 253107.903299998492002 ], [ 364698.63570000231266, 253097.830899998545647 ], [ 364702.757200002670288, 253087.309999998658895 ], [ 364711.721900001168251, 253076.19539999961853 ], [ 364720.668700002133846, 253067.191599998623133 ], [ 364722.319099999964237, 253062.772199999541044 ], [ 364737.01070000231266, 253041.994100000709295 ], [ 364754.313699997961521, 252998.650499999523163 ], [ 364757.635999999940395, 252987.278599999845028 ], [ 364759.372699998319149, 252972.727400001138449 ], [ 364750.778399996459484, 252940.359700001776218 ], [ 364742.837600000202656, 252925.940400000661612 ], [ 364745.32490000128746, 252917.9391999989748 ], [ 364744.648000001907349, 252902.734900001436472 ], [ 364746.2804000005126, 252900.426199998706579 ], [ 364747.122699998319149, 252896.211199998855591 ], [ 364751.97860000282526, 252894.140099998563528 ], [ 364756.015500001609325, 252893.539799999445677 ], [ 364767.300300002098083, 252894.054400000721216 ], [ 364768.884099997580051, 252897.44480000063777 ], [ 364768.833800002932549, 252903.355000000447035 ], [ 364766.378899998962879, 252907.556800000369549 ], [ 364767.163599997758865, 252910.096400000154972 ], [ 364764.579300001263618, 252929.495799999684095 ], [ 364766.152300000190735, 252934.152699999511242 ], [ 364766.078599996864796, 252942.807000000029802 ], [ 364766.85249999910593, 252946.613000001758337 ], [ 364767.642700001597404, 252948.519299998879433 ], [ 364775.659000001847744, 252954.073300000280142 ], [ 364778.882500000298023, 252954.3108000010252 ], [ 364781.308600001037121, 252953.486299999058247 ], [ 364787.753700003027916, 252954.1722999997437 ], [ 364789.375299997627735, 252953.130100000649691 ], [ 364792.656300000846386, 252946.613099999725819 ], [ 364795.901399999856949, 252944.317600000649691 ], [ 364798.354500003159046, 252940.326900001615286 ], [ 364798.390399999916553, 252936.10530000180006 ], [ 364800.020999997854233, 252934.007800001651049 ], [ 364801.700199998915195, 252926.210999999195337 ], [ 364804.153300002217293, 252922.220300000160933 ], [ 364804.20719999819994, 252915.888000000268221 ], [ 364815.655699998140335, 252897.194299999624491 ], [ 364816.478200003504753, 252895.301199998706579 ], [ 364816.528499998152256, 252889.390999998897314 ], [ 364832.042599998414516, 252866.719900000840425 ], [ 364839.329999998211861, 252863.190999999642372 ], [ 364844.98139999806881, 252862.392799999564886 ], [ 364849.837300002574921, 252860.321600001305342 ], [ 364852.281400002539158, 252857.386300001293421 ], [ 364854.752499997615814, 252851.284800000488758 ], [ 364856.377700001001358, 252849.820500001311302 ], [ 364870.088600002229214, 252849.510499998927116 ], [ 364878.977799996733665, 252847.261199999600649 ], [ 364883.034500002861023, 252844.339099999517202 ], [ 364887.886799998581409, 252842.690099999308586 ], [ 364896.023599997162819, 252834.10190000012517 ], [ 364896.860500000417233, 252830.520100001245737 ], [ 364898.492899999022484, 252828.211500000208616 ], [ 364899.351400002837181, 252822.096799999475479 ], [ 364892.983599998056889, 252812.334300000220537 ], [ 364881.77080000191927, 252803.376600001007318 ], [ 364876.148100003600121, 252800.797499999403954 ], [ 364857.642499998211861, 252796.002000000327826 ], [ 364839.120700001716614, 252793.106199998408556 ], [ 364834.281000003218651, 252793.277699999511242 ], [ 364826.314999997615814, 252781.813400000333786 ], [ 364816.702200002968311, 252774.346500001847744 ], [ 364795.745300002396107, 252773.330600000917912 ], [ 364782.860500000417233, 252771.325300000607967 ], [ 364777.232500001788139, 252769.379399999976158 ], [ 364772.389200001955032, 252769.973000001162291 ], [ 364762.679300002753735, 252773.90430000051856 ], [ 364753.017899997532368, 252772.136500000953674 ], [ 364736.882700003683567, 252773.059900000691414 ], [ 364723.936700001358986, 252778.231300000101328 ], [ 364718.252999998629093, 252782.82880000025034 ], [ 364702.861100003123283, 252791.146600000560284 ], [ 364697.179099999368191, 252795.532999999821186 ], [ 364688.279100000858307, 252799.048799999058247 ], [ 364679.411499999463558, 252798.765099998563528 ], [ 364661.706799998879433, 252794.609400000423193 ], [ 364648.062399998307228, 252787.109499998390675 ], [ 364642.459600001573563, 252782.208500001579523 ], [ 364631.219800002872944, 252776.416999999433756 ], [ 364628.021499998867512, 252773.224399998784065 ], [ 364627.281700000166893, 252765.407900001853704 ], [ 364623.314900003373623, 252757.776000000536442 ], [ 364624.169699996709824, 252752.083500001579523 ], [ 364619.436200000345707, 252739.801300000399351 ], [ 364616.252300001680851, 252734.920099999755621 ], [ 364610.642300002276897, 252730.863400001078844 ], [ 364601.9087999984622, 252730.883400000631809 ], [ 364639.954199999570847, 252979.437399998307228 ], [ 364514.704599998891354, 253055.147300001233816 ], [ 364507.797499999403954, 253056.578499998897314 ], [ 364508.678599998354912, 253057.223900001496077 ], [ 364515.86710000038147, 253065.304299999028444 ], [ 364519.016800001263618, 253074.195999998599291 ], [ 364523.797200001776218, 253080.990100000053644 ], [ 364532.594700001180172, 253089.505899999290705 ], [ 364537.344400003552437, 253099.888300001621246 ], [ 364536.396099999547005, 253116.557000000029802 ], [ 364533.95380000025034, 253119.281199999153614 ], [ 364532.308799996972084, 253123.067400000989437 ], [ 364532.236800000071526, 253131.510600000619888 ], [ 364536.140699997544289, 253146.530200000852346 ], [ 364538.410400003194809, 253164.069499999284744 ], [ 364536.554999999701977, 253192.552000001072884 ], [ 364533.1841000020504, 253209.622900001704693 ], [ 364535.493400000035763, 253222.5185999982059 ], [ 364545.887299999594688, 253232.947200000286102 ], [ 364549.868500001728535, 253238.890399999916553 ], [ 364553.029100000858307, 253246.515599999576807 ], [ 364554.571599997580051, 253254.760899998247623 ], [ 364557.762599997222424, 253258.797800000756979 ], [ 364609.9391999989748, 253286.666999999433756 ], [ 364605.839299999177456, 253294.655000001192093 ], [ 364555.262800000607967, 253268.276599999517202 ], [ 364550.462700001895428, 253263.804299999028444 ], [ 364548.076099999248981, 253259.985100001096725 ], [ 364545.680500000715256, 253257.2212999984622 ], [ 364544.141599997878075, 253248.553800001740456 ], [ 364540.973899997770786, 253241.772900000214577 ], [ 364535.387299999594688, 253234.972199998795986 ], [ 364530.579999998211861, 253231.344300001859665 ], [ 364528.188000001013279, 253228.158300001174212 ], [ 364525.041900001466274, 253218.844399999827147 ], [ 364524.332699999213219, 253207.439599998295307 ], [ 364527.710799999535084, 253189.524300001561642 ], [ 364528.777800001204014, 253158.924400001764297 ], [ 364527.253300003707409, 253148.568399999290705 ], [ 364524.11259999871254, 253138.621300000697374 ], [ 364522.627599999308586, 253123.621500000357628 ], [ 364524.287000000476837, 253118.146600000560284 ], [ 364527.5608000010252, 253112.473900001496077 ], [ 364528.455200001597404, 253102.137600000947714 ], [ 364524.49379999935627, 253093.872499998658895 ], [ 364513.304300002753735, 253082.170800000429153 ], [ 364511.727700002491474, 253077.936000000685453 ], [ 364510.123999997973442, 253076.867499999701977 ], [ 364508.542000003159046, 253073.265900000929832 ], [ 364506.974299997091293, 253067.975699998438358 ], [ 364502.16160000115633, 253064.980999998748302 ], [ 364497.332699999213219, 253063.886100001633167 ], [ 364490.875, 253064.677600000053644 ], [ 364461.63740000128746, 253089.136199999600649 ], [ 364445.349299997091293, 253108.001299999654293 ], [ 364421.773800000548363, 253130.395399998873472 ], [ 364418.498199999332428, 253136.279199998825788 ], [ 364407.07320000231266, 253152.228799998760223 ], [ 364394.854400001466274, 253166.694299999624491 ], [ 364388.304999999701977, 253178.250799998641014 ], [ 364387.471699997782707, 253181.410399999469519 ], [ 364384.199699997901917, 253186.872000001370907 ], [ 364383.362899996340275, 253190.45380000025034 ], [ 364380.918700002133846, 253193.38910000026226 ], [ 364374.351400002837181, 253207.056400001049042 ], [ 364363.743400000035763, 253221.746100001037121 ], [ 364357.193999998271465, 253233.302700001746416 ], [ 364356.371500000357628, 253235.195799998939037 ], [ 364353.067199997603893, 253244.456900000572205 ], [ 364352.235699996352196, 253247.4054000005126 ], [ 364350.560099996626377, 253254.779899999499321 ], [ 364350.52589999884367, 253258.790399998426437 ], [ 364412.881700001657009, 253227.636700000613928 ], [ 364432.584600001573563, 253281.204700000584126 ], [ 364350.943899996578693, 253304.390099998563528 ], [ 364338.906700000166893, 253297.536499999463558 ], [ 364337.270700000226498, 253300.267400000244379 ], [ 364329.95099999755621, 253307.59569999948144 ], [ 364305.60869999974966, 253325.339499998837709 ], [ 364302.361900001764297, 253327.846000000834465 ], [ 364291.786300003528595, 253338.736299999058247 ], [ 364284.434199996292591, 253349.864100001752377 ], [ 364279.490299999713898, 253362.278200000524521 ], [ 364279.472300000488758, 253364.388900000602007 ], [ 364277.841700002551079, 253366.4864999987185 ], [ 364268.795999996364117, 253387.099700000137091 ], [ 364262.280799999833107, 253394.645700000226498 ], [ 364252.542099997401237, 253401.954300001263618 ], [ 364245.256499998271465, 253405.272100001573563 ], [ 364231.50959999859333, 253409.803700000047684 ], [ 364215.349200002849102, 253413.682199999690056 ], [ 364215.32039999961853, 253417.059500001370907 ], [ 364222.561099998652935, 253419.0185999982059 ], [ 364231.394500002264977, 253423.312699999660254 ], [ 364240.202799998223782, 253430.561999998986721 ], [ 364254.640900000929832, 253439.546100001782179 ], [ 364269.017899997532368, 253455.706900000572205 ], [ 364276.220799997448921, 253462.098700001835823 ], [ 364284.192199997603893, 253472.929699998348951 ], [ 364287.680100001394749, 253476.02479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87743036000001, "LATITUDE": 18.31168468, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.80600978000001, "SHAPE_Area": 2657.2800355899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364486.172799997031689, 253616.648699998855591 ], [ 364451.386200003325939, 253629.874000001698732 ], [ 364454.586300000548363, 253632.855500001460314 ], [ 364461.722599998116493, 253647.057199999690056 ], [ 364459.815099999308586, 253681.660900000482798 ], [ 364463.018799997866154, 253684.220300000160933 ], [ 364467.052100002765656, 253684.042199999094009 ], [ 364490.589900001883507, 253666.080800000578165 ], [ 364497.91499999910593, 253658.119199998676777 ], [ 364503.593299999833107, 253654.154899999499321 ], [ 364509.318499997258186, 253644.702500000596046 ], [ 364511.884800001978874, 253627.413899999111891 ], [ 364508.780100002884865, 253613.245200000703335 ], [ 364507.99889999628067, 253610.283500000834465 ], [ 364506.420500002801418, 253606.259799998253584 ], [ 364486.172799997031689, 253616.648699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109501020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87770089, "LATITUDE": 18.31191026, "OBJECTID_1": 42242, "PARCEL_NO_": "109501020900", "Tax_Legal_": "1-20 BOVONI FRENCHMAN BAY QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 583700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.22850371199999, "SHAPE_Area": 744.91105040699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364443.458700001239777, 253708.546999998390675 ], [ 364467.052100002765656, 253684.042199999094009 ], [ 364463.018799997866154, 253684.220300000160933 ], [ 364459.815099999308586, 253681.660900000482798 ], [ 364461.722599998116493, 253647.057199999690056 ], [ 364454.586300000548363, 253632.855500001460314 ], [ 364451.386200003325939, 253629.874000001698732 ], [ 364443.285300001502037, 253634.240699999034405 ], [ 364449.662100002169609, 253642.947700001299381 ], [ 364452.831600002944469, 253649.517599999904633 ], [ 364450.184299997985363, 253676.304800000041723 ], [ 364449.333099998533726, 253681.575100000947714 ], [ 364443.458700001239777, 253708.546999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": "C9-313-T88", "PARCEL_NAM": "1-18", "ACRE": null, "LONGITUDE": -64.88248389, "LATITUDE": 18.31218298, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 544.88734065699998, "SHAPE_Area": 10923.3942253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363917.83110000193119, 253693.901399999856949 ], [ 363884.378499999642372, 253739.857099998742342 ], [ 363861.54280000180006, 253770.067699998617172 ], [ 363901.626400001347065, 253797.626800000667572 ], [ 364034.582000002264977, 253619.496599998325109 ], [ 364001.733599998056889, 253594.529800001531839 ], [ 363995.324500001966953, 253589.62220000103116 ], [ 363985.533600002527237, 253603.052000001072884 ], [ 363935.774899996817112, 253669.983600001782179 ], [ 363917.83110000193119, 253693.901399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010600", "MAP": "A9-757-T010", "PARCEL_NAM": "17A-6", "ACRE": "1.01", "LONGITUDE": -64.88618739, "LATITUDE": 18.31630045, "OBJECTID_1": 42231, "PARCEL_NO_": "109402010600", "Tax_Legal_": "17A BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 760800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 407.955732211, "SHAPE_Area": 8469.9043686999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363522.607900001108646, 254212.869800001382828 ], [ 363532.535099998116493, 254216.0456000007689 ], [ 363549.127199999988079, 254221.35359999909997 ], [ 363562.03660000115633, 254194.75730000063777 ], [ 363587.558700002729893, 254139.665899999439716 ], [ 363603.0591000020504, 254104.929400000721216 ], [ 363612.204000003635883, 254086.112900000065565 ], [ 363612.8462999984622, 254084.986200001090765 ], [ 363604.121799997985363, 254082.222300000488758 ], [ 363596.017800003290176, 254079.655000001192093 ], [ 363564.321099996566772, 254071.493700001388788 ], [ 363531.97070000320673, 254121.374200001358986 ], [ 363527.887000001966953, 254127.462499998509884 ], [ 363515.558499999344349, 254154.803800001740456 ], [ 363495.816799998283386, 254200.449499998241663 ], [ 363494.979900002479553, 254204.031199999153614 ], [ 363522.607900001108646, 254212.869800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010600", "MAP": "A9-757-T010", "PARCEL_NAM": "17A-7", "ACRE": ".04", "LONGITUDE": -64.88655438000001, "LATITUDE": 18.31709931, "OBJECTID_1": 42231, "PARCEL_NO_": "109402010600", "Tax_Legal_": "17A BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 760800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.18183811, "SHAPE_Area": 2588.6416351299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363522.607900001108646, 254212.869800001382828 ], [ 363494.979900002479553, 254204.031199999153614 ], [ 363493.351099997758865, 254205.917700000107288 ], [ 363493.333099998533726, 254208.028499998152256 ], [ 363491.702500000596046, 254210.1261 ], [ 363488.392700001597404, 254220.020399998873472 ], [ 363485.041599996387959, 254234.769499998539686 ], [ 363484.185000002384186, 254240.673200000077486 ], [ 363485.714900001883507, 254250.396000001579523 ], [ 363488.114000000059605, 254252.73759999871254 ], [ 363499.373599998652935, 254256.207299999892712 ], [ 363508.219700001180172, 254259.023899998515844 ], [ 363529.852799996733665, 254265.087900001555681 ], [ 363539.701700001955032, 254240.772199999541044 ], [ 363549.127199999988079, 254221.35359999909997 ], [ 363532.535099998116493, 254216.0456000007689 ], [ 363522.607900001108646, 254212.869800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010600", "MAP": "A9-757-T010", "PARCEL_NAM": "17A-5", "ACRE": ".73", "LONGITUDE": -64.88574792, "LATITUDE": 18.31550067, "OBJECTID_1": 42231, "PARCEL_NO_": "109402010600", "Tax_Legal_": "17A BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 760800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.273881563, "SHAPE_Area": 2220.5686559599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363616.832599997520447, 254040.514199998229742 ], [ 363588.32880000025034, 254030.397999998182058 ], [ 363570.374399997293949, 254062.160100001841784 ], [ 363564.321099996566772, 254071.493700001388788 ], [ 363596.017800003290176, 254079.655000001192093 ], [ 363604.121799997985363, 254082.222300000488758 ], [ 363612.8462999984622, 254084.986200001090765 ], [ 363620.974299997091293, 254070.728500001132488 ], [ 363636.684299997985363, 254048.48759999871254 ], [ 363616.832599997520447, 254040.514199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010600", "MAP": "A9-757-T010", "PARCEL_NAM": "17A-4", "ACRE": ".77", "LONGITUDE": -64.88552058, "LATITUDE": 18.3151441, "OBJECTID_1": 42231, "PARCEL_NO_": "109402010600", "Tax_Legal_": "17A BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 760800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.37284639399999, "SHAPE_Area": 2441.80931882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363661.070699997246265, 254013.963500000536442 ], [ 363615.646200001239777, 253986.009899999946356 ], [ 363603.596199996769428, 254005.203699998557568 ], [ 363593.298199996352196, 254021.606699999421835 ], [ 363588.32880000025034, 254030.397999998182058 ], [ 363616.832599997520447, 254040.514199998229742 ], [ 363624.7483000010252, 254043.693500000983477 ], [ 363636.684299997985363, 254048.48759999871254 ], [ 363653.320000000298023, 254024.936200000345707 ], [ 363661.070699997246265, 254013.963500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "109402010100", "MAP": "A9-553-T000", "PARCEL_NAM": "17 REM", "ACRE": null, "LONGITUDE": -64.88346355, "LATITUDE": 18.3093286, "OBJECTID_1": 42226, "PARCEL_NO_": "109402010100", "Tax_Legal_": "BOVONI 17REMAINDER/WESTERN POR. No.1&2 FRENCHMAN'S BAY QTR.", "Name": "BOVONI PROPERTY 17 LLC", "Address": "PO Box B", "City": "Kingsville", "State": "Texas", "Zip": 78364, "Country": "United States", "Land_Value": 1308900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3000.7176435299998, "SHAPE_Area": 171850.206099 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363817.649099998176098, 253527.162000000476837 ], [ 363904.742700003087521, 253431.827199999243021 ], [ 364072.839400000870228, 253482.809999998658895 ], [ 364281.677599996328354, 253200.176199998706579 ], [ 364283.317199997603893, 253197.023200001567602 ], [ 364229.64130000025034, 253155.8429000005126 ], [ 364228.809799998998642, 253158.791400000452995 ], [ 364219.015399999916553, 253172.643399998545647 ], [ 364207.710799999535084, 253174.450699999928474 ], [ 364192.383699998259544, 253175.169599998742342 ], [ 364179.457500003278255, 253178.019099999219179 ], [ 364167.326899997889996, 253182.141699999570847 ], [ 364158.451999999582767, 253182.702399998903275 ], [ 364153.630300000309944, 253180.763099998235703 ], [ 364140.734700001776218, 253180.02419999986887 ], [ 364134.277000002563, 253180.815799999982119 ], [ 364130.229299999773502, 253182.682500001043081 ], [ 364123.735600002110004, 253187.695599999278784 ], [ 364119.567400000989437, 253203.704599998891354 ], [ 364111.389200001955032, 253217.147599998861551 ], [ 364104.073100000619888, 253224.053800001740456 ], [ 364087.851499997079372, 253235.109000001102686 ], [ 364074.912699997425079, 253239.436099998652935 ], [ 364064.38570000231266, 253244.627300001680851 ], [ 364057.928000003099442, 253245.418800000101328 ], [ 364040.1891999989748, 253245.273600000888109 ], [ 364030.547600001096725, 253241.183899998664856 ], [ 364024.939300000667572, 253236.91609999909997 ], [ 364020.105099998414516, 253236.4543999992311 ], [ 364016.879799999296665, 253236.427999999374151 ], [ 364011.214100003242493, 253238.914700001478195 ], [ 363994.247299998998642, 253242.786699999123812 ], [ 363983.752700001001358, 253244.178399998694658 ], [ 363966.015600003302097, 253243.822200000286102 ], [ 363947.522600002586842, 253237.549100000411272 ], [ 363941.138599999248981, 253229.6864 ], [ 363928.293300002813339, 253223.037300001829863 ], [ 363922.605999998748302, 253228.057000000029802 ], [ 363914.548299998044968, 253227.357799999415874 ], [ 363899.253499999642372, 253224.277300000190735 ], [ 363895.243500001728535, 253221.711399998515844 ], [ 363888.010099999606609, 253218.907999999821186 ], [ 363886.418999999761581, 253216.361800000071526 ], [ 363884.862199999392033, 253209.80519999936223 ], [ 363879.298900000751019, 253200.260400000959635 ], [ 363870.478000000119209, 253194.488699998706579 ], [ 363867.251000002026558, 253194.67339999973774 ], [ 363864.002300001680851, 253197.390999998897314 ], [ 363859.045800000429153, 253211.282600000500679 ], [ 363855.813299998641014, 253212.100499998778105 ], [ 363852.591700002551079, 253211.651999998837709 ], [ 363846.988799996674061, 253206.750999998301268 ], [ 363842.165399998426437, 253205.022799998521805 ], [ 363836.524800002574921, 253204.554400000721216 ], [ 363833.286899998784065, 253206.00560000166297 ], [ 363831.652699999511242, 253208.525299999862909 ], [ 363828.325000002980232, 253220.5304000005126 ], [ 363820.231299996376038, 253224.052700001746416 ], [ 363811.268299996852875, 253234.956300001591444 ], [ 363806.315399996936321, 253248.425700001418591 ], [ 363807.0658999979496, 253254.975699998438358 ], [ 363802.159699998795986, 253262.957100000232458 ], [ 363801.268899999558926, 253272.871300000697374 ], [ 363800.44820000231266, 253274.553300000727177 ], [ 363798.000500001013279, 253277.910700000822544 ], [ 363787.448299996554852, 253286.057000000029802 ], [ 363776.95549999922514, 253287.237700000405312 ], [ 363766.426700003445148, 253292.640000000596046 ], [ 363759.1537000015378, 253294.48030000180006 ], [ 363754.314000003039837, 253294.651799999177456 ], [ 363751.112099997699261, 253291.881299998611212 ], [ 363747.084100000560284, 253291.426199998706579 ], [ 363745.4391999989748, 253295.212400000542402 ], [ 363743.009400002658367, 253296.459100000560284 ], [ 363738.173299998044968, 253296.208399999886751 ], [ 363726.969499997794628, 253286.195300001651049 ], [ 363719.730700001120567, 253284.025100000202656 ], [ 363714.899999998509884, 253283.141199998557568 ], [ 363711.667499996721745, 253283.959100000560284 ], [ 363710.02250000089407, 253287.745400000363588 ], [ 363706.856100000441074, 253288.133499998599291 ], [ 363704.305799998342991, 253288.446100000292063 ], [ 363703.564800001680851, 253288.536899998784065 ], [ 363701.379900000989437, 253288.258699998259544 ], [ 363699.094800002872944, 253287.967799998819828 ], [ 363697.560999996960163, 253287.772599998861551 ], [ 363695.500399999320507, 253287.510200001299381 ], [ 363693.303400002419949, 253287.230500001460314 ], [ 363691.418799996376038, 253286.990600001066923 ], [ 363688.420800000429153, 253286.608899999409914 ], [ 363685.843999996781349, 253286.280900001525879 ], [ 363684.484099999070168, 253285.074200000613928 ], [ 363683.443000003695488, 253284.150299999862909 ], [ 363681.672200001776218, 253280.958599999547005 ], [ 363680.699500001966953, 253279.205600000917912 ], [ 363680.26630000025034, 253278.424800001084805 ], [ 363678.506399996578693, 253277.948600001633167 ], [ 363677.048199996352196, 253277.554099999368191 ], [ 363675.701300002634525, 253277.684000000357628 ], [ 363673.375100001692772, 253277.908300001174212 ], [ 363672.023000001907349, 253278.038699999451637 ], [ 363670.655699998140335, 253278.1706000007689 ], [ 363668.977899998426437, 253278.332400001585484 ], [ 363667.827899999916553, 253279.220199998468161 ], [ 363666.54280000180006, 253280.21229999884963 ], [ 363665.948700003325939, 253281.579700000584126 ], [ 363665.300499998033047, 253283.071699999272823 ], [ 363664.897799998521805, 253283.998500000685453 ], [ 363667.284400001168251, 253287.817800000309944 ], [ 363667.260999999940395, 253290.561799999326468 ], [ 363665.623199999332428, 253293.503699999302626 ], [ 363665.596199996769428, 253296.669900000095367 ], [ 363662.327799998223782, 253301.709399998188019 ], [ 363651.023299999535084, 253303.516699999570847 ], [ 363646.934199996292591, 253310.238200001418591 ], [ 363638.028800003230572, 253314.387200001627207 ], [ 363633.129799999296665, 253321.524300001561642 ], [ 363629.877499997615814, 253324.664099998772144 ], [ 363625.840599998831749, 253325.264299999922514 ], [ 363623.401900000870228, 253327.566399998962879 ], [ 363623.382100000977516, 253329.888199999928474 ], [ 363620.137000001966953, 253332.183699999004602 ], [ 363614.440700002014637, 253338.258799999952316 ], [ 363611.201099999248981, 253339.921000000089407 ], [ 363595.07660000026226, 253339.578000001609325 ], [ 363591.055799998342991, 253338.278499998152256 ], [ 363588.658500000834465, 253335.72580000013113 ], [ 363587.90429999679327, 253329.597899999469519 ], [ 363590.346600003540516, 253326.873700000345707 ], [ 363591.993400000035763, 253322.876400001347065 ], [ 363590.449100002646446, 253314.842199999839067 ], [ 363588.84009999781847, 253314.406800001859665 ], [ 363586.419399999082088, 253314.598099999129772 ], [ 363584.788800001144409, 253316.695700000971556 ], [ 363579.922100000083447, 253320.033300001174212 ], [ 363575.842000000178814, 253325.699499998241663 ], [ 363575.825800001621246, 253327.599199999123812 ], [ 363570.12950000166893, 253333.674300000071526 ], [ 363567.705200001597404, 253334.28770000115037 ], [ 363564.508699998259544, 253330.884100001305342 ], [ 363562.100500002503395, 253329.597800001502037 ], [ 363554.834700003266335, 253330.593800000846386 ], [ 363551.62389999628067, 253328.878800000995398 ], [ 363546.777000002563, 253329.894600000232458 ], [ 363547.550899997353554, 253333.700599998235703 ], [ 363539.484200000762939, 253334.056699998676777 ], [ 363534.621200002729893, 253336.972199998795986 ], [ 363535.362700000405312, 253344.5777000002563 ], [ 363528.84570000320673, 253352.334800001233816 ], [ 363522.355700001120567, 253356.925700001418591 ], [ 363521.493600003421307, 253363.462600000202656 ], [ 363525.496399998664856, 253366.872800000011921 ], [ 363524.650499999523163, 253371.510000001639128 ], [ 363520.592000000178814, 253374.643199998885393 ], [ 363510.799300000071526, 253388.284099999815226 ], [ 363505.930900000035763, 253391.832800000905991 ], [ 363503.484999999403954, 253394.979200001806021 ], [ 363500.141099996864796, 253408.88399999961257 ], [ 363496.870899997651577, 253414.13459999859333 ], [ 363493.579099997878075, 253421.918099999427795 ], [ 363491.851400002837181, 253435.414000000804663 ], [ 363492.607299998402596, 253441.330800000578165 ], [ 363491.747100003063679, 253447.656599998474121 ], [ 363481.927500002086163, 253464.463700000196695 ], [ 363476.211400002241135, 253472.860599998384714 ], [ 363467.291599996387959, 253478.69819999858737 ], [ 363460.016800001263618, 253480.749600000679493 ], [ 363454.318599998950958, 253487.035799998790026 ], [ 363445.406000003218651, 253492.029100000858307 ], [ 363441.338500000536442, 253496.217700000852346 ], [ 363557.721600003540516, 253559.653900001198053 ], [ 363564.247599996626377, 253550.841400001198053 ], [ 363580.533900000154972, 253532.187399998307228 ], [ 363587.884199999272823, 253521.270700000226498 ], [ 363589.514799997210503, 253519.173099998384714 ], [ 363596.026399999856949, 253512.049199998378754 ], [ 363596.875900000333786, 253506.989900000393391 ], [ 363591.26410000026226, 253503.144299998879433 ], [ 363579.239500001072884, 253494.813200000673532 ], [ 363552.749899998307228, 253480.664200000464916 ], [ 363540.693000003695488, 253476.132599998265505 ], [ 363527.802799999713898, 253474.760499998927116 ], [ 363512.508000001311302, 253471.679999999701977 ], [ 363500.452899999916553, 253466.937300000339746 ], [ 363502.920400001108646, 253461.258000001311302 ], [ 363510.951099999248981, 253465.123399998992682 ], [ 363521.407999999821186, 253468.164299998432398 ], [ 363538.329800002276897, 253469.569400001317263 ], [ 363547.987499997019768, 253471.759300000965595 ], [ 363568.870800003409386, 253481.429499998688698 ], [ 363584.115199998021126, 253490.420200001448393 ], [ 363601.746200002729893, 253503.230099998414516 ], [ 363607.395700000226498, 253502.64299999922514 ], [ 363619.618100002408028, 253487.755399998277426 ], [ 363633.438699997961521, 253474.569600000977516 ], [ 363638.237000003457069, 253479.252999998629093 ], [ 363626.864100001752377, 253489.081300001591444 ], [ 363617.094899997115135, 253499.978199999779463 ], [ 363616.272399999201298, 253501.871300000697374 ], [ 363613.023699998855591, 253504.588899999856949 ], [ 363612.201200000941753, 253506.48200000077486 ], [ 363605.695000000298023, 253512.972699999809265 ], [ 363597.577899999916553, 253519.239100001752377 ], [ 363593.503200002014637, 253524.271999999880791 ], [ 363586.152900002896786, 253535.188700001686811 ], [ 363571.498999997973442, 253551.534000001847744 ], [ 363557.635300002992153, 253569.785700000822544 ], [ 363553.551500000059605, 253575.874000001698732 ], [ 363551.100199997425079, 253579.653599999845028 ], [ 363531.441200003027916, 253615.589699998497963 ], [ 363523.295400001108646, 253625.233300000429153 ], [ 363499.718099996447563, 253647.838500000536442 ], [ 363485.831000000238419, 253668.834199998527765 ], [ 363483.35809999704361, 253675.146699998527765 ], [ 363482.523000001907349, 253678.517400000244379 ], [ 363483.083599999547005, 253692.165100000798702 ], [ 363500.524400003254414, 253694.072700001299381 ], [ 363613.771700002253056, 253549.915399998426437 ], [ 363817.649099998176098, 253527.162000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "109402011500", "MAP": "D9-5591-T93", "PARCEL_NAM": "17F", "ACRE": "4.58", "LONGITUDE": -64.88603623, "LATITUDE": 18.31337201, "OBJECTID_1": 42236, "PARCEL_NO_": "109402011500", "Tax_Legal_": "17F ESTATE BOVONI FRENCHMAN'S BAY QTR.", "Name": "HODGE, JOSEPH & ZULMA", "Address": "PO Box 5048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 251000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 660.14912597, "SHAPE_Area": 17985.5636366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363680.292499996721745, 253875.20719999819994 ], [ 363500.524400003254414, 253694.072700001299381 ], [ 363483.083599999547005, 253692.165100000798702 ], [ 363483.1908999979496, 253694.777100000530481 ], [ 363485.519900001585484, 253705.35080000013113 ], [ 363489.486699998378754, 253712.982700001448393 ], [ 363493.480499997735023, 253717.448300000280142 ], [ 363495.062600001692772, 253721.049800001084805 ], [ 363502.249300003051758, 253729.341299999505281 ], [ 363503.833099998533726, 253732.731800001114607 ], [ 363506.919900000095367, 253749.011199999600649 ], [ 363510.055299997329712, 253759.591600000858307 ], [ 363509.896999999880791, 253778.166499998420477 ], [ 363507.3091000020504, 253797.988099999725819 ], [ 363504.769599996507168, 253812.110599998384714 ], [ 363498.112400002777576, 253836.331900000572205 ], [ 363497.270099997520447, 253840.546900000423193 ], [ 363495.563900001347065, 253851.509799998253584 ], [ 363604.060099996626377, 253894.194299999624491 ], [ 363657.088200002908707, 253915.056600000709295 ], [ 363670.082500003278255, 253892.1537000015378 ], [ 363680.292499996721745, 253875.20719999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010600", "MAP": "A9-757-T010", "PARCEL_NAM": "17A-3", "ACRE": "1.06", "LONGITUDE": -64.8852061, "LATITUDE": 18.31466919, "OBJECTID_1": 42231, "PARCEL_NO_": "109402010600", "Tax_Legal_": "17A BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 760800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.37445847200001, "SHAPE_Area": 4270.2747492199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363673.444899998605251, 253921.491599999368191 ], [ 363657.088200002908707, 253915.056600000709295 ], [ 363620.89580000191927, 253977.261199999600649 ], [ 363617.82209999859333, 253982.543999999761581 ], [ 363615.646200001239777, 253986.009899999946356 ], [ 363661.070699997246265, 254013.963500000536442 ], [ 363669.495600000023842, 254002.036200001835823 ], [ 363671.869800001382828, 253998.67509999871254 ], [ 363678.295500002801418, 253989.450899999588728 ], [ 363685.798100002110004, 253978.680799998342991 ], [ 363702.605599999427795, 253954.55350000038743 ], [ 363698.991700001060963, 253952.732900001108646 ], [ 363670.611800000071526, 253938.435300000011921 ], [ 363676.390900000929832, 253922.650600001215935 ], [ 363673.444899998605251, 253921.491599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010200", "MAP": "G9-593-T61", "PARCEL_NAM": "2 REM", "ACRE": null, "LONGITUDE": -64.88463106, "LATITUDE": 18.3141644, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.61653729899999, "SHAPE_Area": 1783.0184593 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363702.605599999427795, 253954.55350000038743 ], [ 363724.623400002717972, 253923.061000000685453 ], [ 363742.418700002133846, 253893.052600000053644 ], [ 363748.268899999558926, 253874.017099998891354 ], [ 363750.520199999213219, 253852.783300001174212 ], [ 363684.502300001680851, 253945.433200001716614 ], [ 363698.991700001060963, 253952.732900001108646 ], [ 363702.605599999427795, 253954.55350000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402011400", "MAP": "D9-4352-T88", "PARCEL_NAM": "17D-1", "ACRE": "1.0012", "LONGITUDE": -64.88653154, "LATITUDE": 18.3149474, "OBJECTID_1": 42235, "PARCEL_NO_": "109402011400", "Tax_Legal_": "17D-1 ESTATE BOVONI NO.1&2 FRENCHMAN'S BAY QTR.", "Name": "DRY MARINA LLC", "Address": "7411 Est Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 110300, "Improved_V": 78000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.46294998100001, "SHAPE_Area": 3118.2326796900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363550.542900003492832, 253953.338100001215935 ], [ 363526.128100000321865, 253959.589099999517202 ], [ 363506.95269999653101, 253961.036800000816584 ], [ 363507.504699997603893, 253964.331500001251698 ], [ 363506.595899999141693, 253976.356300000101328 ], [ 363496.68639999628067, 254003.717399999499321 ], [ 363495.057599999010563, 254005.603900000452995 ], [ 363492.575699999928474, 254012.971900001168251 ], [ 363490.946900002658367, 254014.858399998396635 ], [ 363488.465000003576279, 254022.226399999111891 ], [ 363486.836199998855591, 254024.112900000065565 ], [ 363481.075099997222424, 254037.786800000816584 ], [ 363515.213299997150898, 254042.759700000286102 ], [ 363530.262000001966953, 253993.517799999564886 ], [ 363553.204599998891354, 253987.082699999213219 ], [ 363550.542900003492832, 253953.338100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": "D9-5817-T94", "PARCEL_NAM": "19A", "ACRE": "2.02", "LONGITUDE": -64.88491759, "LATITUDE": 18.31547186, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 442.87441147099997, "SHAPE_Area": 8477.2419068899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363686.780900001525879, 254122.852400001138449 ], [ 363719.425399996340275, 254077.101100001484156 ], [ 363755.047100000083447, 254019.827799998223782 ], [ 363719.185000002384186, 254028.604800000786781 ], [ 363711.485600002110004, 253967.900800000876188 ], [ 363705.778499998152256, 253975.242300000041723 ], [ 363697.621799997985363, 253986.152499999850988 ], [ 363635.915799997746944, 254067.527399998158216 ], [ 363626.589299999177456, 254079.676100000739098 ], [ 363624.504699997603893, 254083.913100000470877 ], [ 363670.581799998879433, 254115.124200001358986 ], [ 363670.618299998342991, 254115.182500001043081 ], [ 363670.626800000667572, 254115.154199998825788 ], [ 363685.397299997508526, 254124.979699999094009 ], [ 363686.780900001525879, 254122.852400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107603080100", "MAP": "C9-234-T79", "PARCEL_NAM": "4D", "ACRE": "12.82", "LONGITUDE": -64.88204343, "LATITUDE": 18.31785154, "OBJECTID_1": 38853, "PARCEL_NO_": "107603080100", "Tax_Legal_": "4D BOVONI/EASTERN PART FRENCHMAN BAY QTR.", "Name": "VIGL OPERATIONS LLC", "Address": "1044 Queen Cross St", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 1700000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1283.20839456, "SHAPE_Area": 48921.439663099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364181.832400001585484, 254491.811500001698732 ], [ 364045.662900000810623, 254240.270599998533726 ], [ 364036.557599999010563, 254239.494500000029802 ], [ 364024.504199996590614, 254234.540699999779463 ], [ 364012.47070000320673, 254227.265099998563528 ], [ 363997.188500002026558, 254222.706999998539686 ], [ 363970.839100003242493, 254192.093899998813868 ], [ 363968.535300001502037, 254178.565000001341105 ], [ 363968.023900002241135, 254143.941500000655651 ], [ 363964.665399998426437, 254138.566899999976158 ], [ 363811.430600002408028, 254306.970100000500679 ], [ 363807.738200001418591, 254311.926699999719858 ], [ 363830.251999996602535, 254319.499200001358986 ], [ 363818.729800000786781, 254346.847100000828505 ], [ 363830.792199999094009, 254350.74549999833107 ], [ 363839.042300000786781, 254328.859299998730421 ], [ 363848.120300002396107, 254304.446699999272823 ], [ 363878.682899996638298, 254313.773899998515844 ], [ 363869.604800000786781, 254338.186500001698732 ], [ 363860.539399996399879, 254361.121500000357628 ], [ 363928.910499997437, 254381.101599998772144 ], [ 363993.174599997699261, 254409.914200000464916 ], [ 364024.484099999070168, 254426.213500000536442 ], [ 364040.872900001704693, 254395.528000000864267 ], [ 364058.538000002503395, 254404.327399998903275 ], [ 364081.019500002264977, 254415.699400000274181 ], [ 364065.431599996984005, 254447.024700000882149 ], [ 364140.928300000727177, 254482.473099999129772 ], [ 364161.016000002622604, 254490.870099999010563 ], [ 364168.260200001299381, 254492.4070999994874 ], [ 364174.710699997842312, 254492.459899999201298 ], [ 364181.832400001585484, 254491.811500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "107603042000", "MAP": "C9-86-T68", "PARCEL_NAM": "36", "ACRE": "31.21", "LONGITUDE": -64.87826574, "LATITUDE": 18.3176099, "OBJECTID_1": 38731, "PARCEL_NO_": "107603042000", "Tax_Legal_": "25C-1 NADIR NO. 2 RED HOOK QTR", "Name": "VIGL OPERATIONS, LLC", "Address": "1044 Queen Cross St", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1980.3660663600001, "SHAPE_Area": 126928.50672200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364737.726400002837181, 254268.799499999731779 ], [ 364738.001299999654293, 254268.139800000935793 ], [ 364744.698499999940395, 254214.270599998533726 ], [ 364743.966899998486042, 254213.198100000619888 ], [ 364744.053199999034405, 254203.066300000995398 ], [ 364743.270300000905991, 254200.315699998289347 ], [ 364744.913500003516674, 254196.740600001066923 ], [ 364745.784500002861023, 254189.148299999535084 ], [ 364745.069899998605251, 254178.3766999989748 ], [ 364741.903999999165535, 254171.384700000286102 ], [ 364734.722699999809265, 254162.46000000089407 ], [ 364729.139700002968311, 254155.237100001424551 ], [ 364720.347599998116493, 254146.088199999183416 ], [ 364707.525700002908707, 254136.695099998265505 ], [ 364698.652699999511242, 254137.044700000435114 ], [ 364689.766999997198582, 254138.871800001710653 ], [ 364684.903999999165535, 254141.787300001829863 ], [ 364671.160700000822544, 254145.896699998527765 ], [ 364654.156199999153614, 254154.201200000941753 ], [ 364647.660800002515316, 254159.425400000065565 ], [ 364641.138300001621246, 254167.815799999982119 ], [ 364639.469999998807907, 254174.346000000834465 ], [ 364640.20440000295639, 254182.795800000429153 ], [ 364639.365699999034405, 254186.588599998503923 ], [ 364636.111699998378754, 254189.939500000327826 ], [ 364628.829700000584126, 254192.835200000554323 ], [ 364607.023299999535084, 254196.878600001335144 ], [ 364602.975500002503395, 254198.745299998670816 ], [ 364599.707099996507168, 254203.784800000488758 ], [ 364596.476499997079372, 254204.391600001603365 ], [ 364587.675399996340275, 254196.298000000417233 ], [ 364582.848300002515316, 254194.991999998688698 ], [ 364576.399599999189377, 254194.728100001811981 ], [ 364574.004000000655651, 254191.964299999177456 ], [ 364569.182300001382828, 254190.024999998509884 ], [ 364552.248000003397465, 254190.097500000149012 ], [ 364537.784699998795986, 254184.068500000983477 ], [ 364522.473700001835823, 254182.887699998915195 ], [ 364493.433899998664856, 254184.127700001001358 ], [ 364471.602300003170967, 254191.126200001686811 ], [ 364461.104099996387959, 254192.940099999308586 ], [ 364451.387000001966953, 254197.715700000524521 ], [ 364448.170699998736382, 254196.633900001645088 ], [ 364441.723800003528595, 254196.159000001847744 ], [ 364436.061599999666214, 254198.223499998450279 ], [ 364432.834600001573563, 254198.40819999948144 ], [ 364429.625500001013279, 254196.482099998742342 ], [ 364414.327200002968311, 254193.823800001293421 ], [ 364400.567699998617172, 254199.832899998873472 ], [ 364395.726199999451637, 254200.215399999171495 ], [ 364394.119000002741814, 254199.568999998271465 ], [ 364392.601700000464916, 254188.368599999696016 ], [ 364382.216700002551079, 254176.88459999859333 ], [ 364379.810400001704693, 254175.387200001627207 ], [ 364373.370700001716614, 254174.067999999970198 ], [ 364366.900399997830391, 254176.337000001221895 ], [ 364359.668799996376038, 254173.322500001639128 ], [ 364355.640799999237061, 254172.867400001734495 ], [ 364325.715499997138977, 254183.388199999928474 ], [ 364320.841700002551079, 254187.570199999958277 ], [ 364316.766999997198582, 254192.603100001811981 ], [ 364313.534500002861023, 254193.421000000089407 ], [ 364310.321900002658367, 254191.917100001126528 ], [ 364304.68129999935627, 254191.448699999600649 ], [ 364299.834399998188019, 254192.464499998837709 ], [ 364294.148900002241135, 254197.273200001567602 ], [ 364286.062399998307228, 254199.951200000941753 ], [ 364282.811899997293949, 254202.879900000989437 ], [ 364278.774999998509884, 254203.480099998414516 ], [ 364273.940700002014637, 254203.018399998545647 ], [ 364272.344300001859665, 254201.105500001460314 ], [ 364269.131599999964237, 254199.601500000804663 ], [ 364263.49099999666214, 254199.133200000971556 ], [ 364240.016199998557568, 254209.706799998879433 ], [ 364237.573899999260902, 254212.431000001728535 ], [ 364231.08389999717474, 254217.021999999880791 ], [ 364222.201800003647804, 254218.426899999380112 ], [ 364200.375600002706051, 254224.792199999094009 ], [ 364192.301700003445148, 254225.99269999936223 ], [ 364176.112499997019768, 254233.248500000685453 ], [ 364168.794600002467632, 254240.365699999034405 ], [ 364164.718099996447563, 254245.609700001776218 ], [ 364161.433499999344349, 254252.548900000751019 ], [ 364156.552500002086163, 254257.575199998915195 ], [ 364152.504699997603893, 254259.441899999976158 ], [ 364151.79730000346899, 254247.8260000012815 ], [ 364150.21339999884367, 254244.435499999672174 ], [ 364147.810699999332428, 254242.515999998897314 ], [ 364142.976400002837181, 254242.054299999028444 ], [ 364129.231299996376038, 254246.374699998646975 ], [ 364121.965499997138977, 254247.370700001716614 ], [ 364113.902400001883507, 254247.304699998348951 ], [ 364101.0337999984622, 254243.399700000882149 ], [ 364097.8462999984622, 254238.940699998289347 ], [ 364096.27139999717474, 254234.494800001382828 ], [ 364085.006399996578693, 254231.658399999141693 ], [ 364074.490199998021126, 254235.583099998533726 ], [ 364070.429899998009205, 254238.927400000393391 ], [ 364050.255900003015995, 254240.662099998444319 ], [ 364045.662900000810623, 254240.270599998533726 ], [ 364181.832400001585484, 254491.811500001698732 ], [ 364198.113499999046326, 254490.3293999992311 ], [ 364219.093800000846386, 254488.601300001144409 ], [ 364282.916599996387959, 254474.558200001716614 ], [ 364278.301700003445148, 254448.344799999147654 ], [ 364288.877300001680851, 254437.454500000923872 ], [ 364370.264499999582767, 254444.031199999153614 ], [ 364384.203000001609325, 254322.344300001859665 ], [ 364606.965400002896786, 254392.984000001102686 ], [ 364610.282300002872944, 254382.245400000363588 ], [ 364613.575900003314018, 254374.250799998641014 ], [ 364615.202899999916553, 254372.575399998575449 ], [ 364616.036200001835823, 254369.415800001472235 ], [ 364640.549300000071526, 254331.619600001722574 ], [ 364655.204899996519089, 254315.063099998980761 ], [ 364664.950800001621246, 254306.910199999809265 ], [ 364677.923699997365475, 254298.572700001299381 ], [ 364720.020999997854233, 254279.074400000274181 ], [ 364737.726400002837181, 254268.799499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501010100", "MAP": "A9-365-T89", "PARCEL_NAM": "1-19", "ACRE": "27.6", "LONGITUDE": -64.88253531, "LATITUDE": 18.31386477, "OBJECTID_1": 42238, "PARCEL_NO_": "109501010100", "Tax_Legal_": "1 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1821.11280145, "SHAPE_Area": 132799.59196799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364028.821999996900558, 253538.389499999582767 ], [ 363995.324500001966953, 253589.62220000103116 ], [ 364001.733599998056889, 253594.529800001531839 ], [ 364034.582000002264977, 253619.496599998325109 ], [ 363901.626400001347065, 253797.626800000667572 ], [ 363861.54280000180006, 253770.067699998617172 ], [ 363785.697999998927116, 253870.138599999248981 ], [ 363778.358400002121925, 253879.788800001144409 ], [ 363711.485600002110004, 253967.900800000876188 ], [ 363719.185000002384186, 254028.604800000786781 ], [ 363755.047100000083447, 254019.827799998223782 ], [ 363719.425399996340275, 254077.101100001484156 ], [ 363780.332900002598763, 254121.296000000089407 ], [ 363841.24040000140667, 254165.490899998694658 ], [ 363844.420699998736382, 254170.794199999421835 ], [ 363964.310599997639656, 254106.547600001096725 ], [ 363965.156499996781349, 254101.910399999469519 ], [ 363973.291500002145767, 254093.533300001174212 ], [ 363981.44990000128746, 254082.412099998444319 ], [ 363994.465999998152256, 254069.008600000292063 ], [ 363992.887599997222424, 254064.984900001436472 ], [ 363992.930699996650219, 254059.918999999761581 ], [ 363996.188299998641014, 254056.146000001579523 ], [ 363993.956399999558926, 254034.1739999987185 ], [ 364000.496799997985363, 254023.672899998724461 ], [ 364004.731600001454353, 253999.853999998420477 ], [ 364007.199100002646446, 253994.174600001424551 ], [ 364021.806199997663498, 253983.317299999296665 ], [ 364030.000600002706051, 253967.974599998444319 ], [ 364032.514799997210503, 253956.807199999690056 ], [ 364033.411100000143051, 253946.259799998253584 ], [ 364032.664099998772144, 253939.287599999457598 ], [ 364034.330700002610683, 253932.968499999493361 ], [ 364038.464699998497963, 253920.969999998807907 ], [ 364054.889499999582767, 253886.062899999320507 ], [ 364064.024999998509884, 253854.895799998193979 ], [ 364070.565399996936321, 253844.394600000232458 ], [ 364078.720299996435642, 253833.695599999278784 ], [ 364085.203100003302097, 253829.949000000953674 ], [ 364090.865299999713898, 253827.884399998933077 ], [ 364173.505900003015995, 253687.339200001209974 ], [ 364197.246799997985363, 253645.52589999884367 ], [ 364028.821999996900558, 253538.389499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "109402010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88306519, "LATITUDE": 18.31153248, "OBJECTID_1": 42226, "PARCEL_NO_": "109402010100", "Tax_Legal_": "BOVONI 17REMAINDER/WESTERN POR. No.1&2 FRENCHMAN'S BAY QTR.", "Name": "BOVONI PROPERTY 17 LLC", "Address": "PO Box B", "City": "Kingsville", "State": "Texas", "Zip": 78364, "Country": "United States", "Land_Value": 1308900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 625.62740517500004, "SHAPE_Area": 25080.901832399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363995.324500001966953, 253589.62220000103116 ], [ 363981.705300003290176, 253579.167100001126528 ], [ 363969.684299997985363, 253570.413899999111891 ], [ 363915.994000002741814, 253530.922200001776218 ], [ 363854.010499998927116, 253518.382500000298023 ], [ 363831.153200000524521, 253551.1261 ], [ 363804.149999998509884, 253691.915500000119209 ], [ 363860.336499996483326, 253722.350699998438358 ], [ 363864.341099999845028, 253725.549899999052286 ], [ 363869.150200001895428, 253728.966699998825788 ], [ 363884.378499999642372, 253739.857099998742342 ], [ 363917.83110000193119, 253693.901399999856949 ], [ 363935.774899996817112, 253669.983600001782179 ], [ 363985.533600002527237, 253603.052000001072884 ], [ 363995.324500001966953, 253589.62220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "109402010600", "MAP": "D3-345-T79", "PARCEL_NAM": "17A REM", "ACRE": "26.43", "LONGITUDE": -64.88447513, "LATITUDE": 18.31171671, "OBJECTID_1": 42231, "PARCEL_NO_": "109402010600", "Tax_Legal_": "17A BOVONI FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 760800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2002.9201144399999, "SHAPE_Area": 79474.341811899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363995.324500001966953, 253589.62220000103116 ], [ 364028.821999996900558, 253538.389499999582767 ], [ 364031.262500002980232, 253535.876400001347065 ], [ 364034.523800000548363, 253531.681200001388788 ], [ 364059.785599999129772, 253500.646099999547005 ], [ 364067.943999998271465, 253489.524900000542402 ], [ 364072.839400000870228, 253482.809999998658895 ], [ 363904.742700003087521, 253431.827199999243021 ], [ 363817.649099998176098, 253527.162000000476837 ], [ 363613.771700002253056, 253549.915399998426437 ], [ 363500.524400003254414, 253694.072700001299381 ], [ 363680.292499996721745, 253875.20719999819994 ], [ 363670.082500003278255, 253892.1537000015378 ], [ 363657.088200002908707, 253915.056600000709295 ], [ 363676.390900000929832, 253922.650600001215935 ], [ 363670.611800000071526, 253938.435300000011921 ], [ 363684.502300001680851, 253945.433200001716614 ], [ 363750.520199999213219, 253852.783300001174212 ], [ 363661.328400000929832, 253702.989999998360872 ], [ 363706.22580000013113, 253638.762899998575449 ], [ 363804.149999998509884, 253691.915500000119209 ], [ 363831.153200000524521, 253551.1261 ], [ 363854.010499998927116, 253518.382500000298023 ], [ 363915.994000002741814, 253530.922200001776218 ], [ 363969.684299997985363, 253570.413899999111891 ], [ 363981.705300003290176, 253579.167100001126528 ], [ 363995.324500001966953, 253589.62220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109402010200", "MAP": "D9-727-T009", "PARCEL_NAM": "1A-5", "ACRE": "5.14", "LONGITUDE": -64.87994247, "LATITUDE": 18.31084658, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 694.10841843399999, "SHAPE_Area": 22801.433610600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364261.298600003123283, 253689.719500001519918 ], [ 364252.239000000059605, 253672.754000000655651 ], [ 364259.457099996507168, 253603.427299998700619 ], [ 364279.192500002682209, 253575.684399999678135 ], [ 364297.364600002765656, 253548.315999999642372 ], [ 364300.787100002169609, 253512.681699998676777 ], [ 364286.758000001311302, 253511.399700000882149 ], [ 364280.045500002801418, 253486.405699998140335 ], [ 364251.341099999845028, 253456.828899998217821 ], [ 364228.742399998009205, 253454.311299998313189 ], [ 364208.549300000071526, 253444.061200000345707 ], [ 364188.945500001311302, 253456.299600001424551 ], [ 364180.637699998915195, 253470.184399999678135 ], [ 364184.481600001454353, 253476.80689999833703 ], [ 364158.215400002896786, 253492.865299999713898 ], [ 364164.376000002026558, 253502.221000000834465 ], [ 364131.831000000238419, 253522.87779999896884 ], [ 364121.055299997329712, 253551.8597999997437 ], [ 364125.593599997460842, 253568.566899999976158 ], [ 364167.188900001347065, 253584.425299998372793 ], [ 364196.295299999415874, 253601.340900000184774 ], [ 364197.246799997985363, 253645.52589999884367 ], [ 364261.298600003123283, 253689.719500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109402010200", "MAP": "D9-8354-T009", "PARCEL_NAM": "1A-7", "ACRE": "6.07", "LONGITUDE": -64.87861618, "LATITUDE": 18.31115612, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 797.66822521200004, "SHAPE_Area": 37029.789267599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364280.045500002801418, 253486.405699998140335 ], [ 364286.758000001311302, 253511.399700000882149 ], [ 364300.787100002169609, 253512.681699998676777 ], [ 364297.364600002765656, 253548.315999999642372 ], [ 364279.192500002682209, 253575.684399999678135 ], [ 364259.457099996507168, 253603.427299998700619 ], [ 364252.239000000059605, 253672.754000000655651 ], [ 364261.298600003123283, 253689.719500001519918 ], [ 364296.415799997746944, 253713.949200000613928 ], [ 364443.285300001502037, 253634.240699999034405 ], [ 364451.386200003325939, 253629.874000001698732 ], [ 364486.172799997031689, 253616.648699998855591 ], [ 364463.228399999439716, 253564.954100001603365 ], [ 364437.920999996364117, 253506.696299999952316 ], [ 364433.959499999880791, 253498.431200001388788 ], [ 364420.052699998021126, 253466.285900000482798 ], [ 364287.680100001394749, 253476.02479999884963 ], [ 364280.045500002801418, 253486.405699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501020900", "MAP": "A9-365-T89", "PARCEL_NAM": "1-20", "ACRE": null, "LONGITUDE": -64.87914071, "LATITUDE": 18.31273831, "OBJECTID_1": 42242, "PARCEL_NO_": "109501020900", "Tax_Legal_": "1-20 BOVONI FRENCHMAN BAY QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 583700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1416.22881186, "SHAPE_Area": 41123.140724099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364261.298600003123283, 253689.719500001519918 ], [ 364262.840700000524521, 253717.378699999302626 ], [ 364268.654799997806549, 253725.837900001555681 ], [ 364301.256099998950958, 253742.203000001609325 ], [ 364273.973899997770786, 253749.284400001168251 ], [ 364221.048299998044968, 253743.716299999505281 ], [ 364196.277000002563, 253714.985700000077486 ], [ 364193.122699998319149, 253653.164599999785423 ], [ 364192.975699998438358, 253653.048099998384714 ], [ 364173.505900003015995, 253687.339200001209974 ], [ 364090.865299999713898, 253827.884399998933077 ], [ 364112.714900001883507, 253818.775100000202656 ], [ 364120.783399999141693, 253818.207899998873472 ], [ 364128.839299999177456, 253819.118200000375509 ], [ 364132.039399996399879, 253822.099700000137091 ], [ 364135.198100000619888, 253829.936000000685453 ], [ 364139.190099999308586, 253834.612700000405312 ], [ 364166.521999999880791, 253844.546700000762939 ], [ 364181.039200000464916, 253844.243299998342991 ], [ 364223.896099999547005, 253830.239700000733137 ], [ 364243.290700003504753, 253825.33219999819994 ], [ 364299.01799999922514, 253815.022599998861551 ], [ 364330.480400003492832, 253813.380199998617172 ], [ 364347.477700002491474, 253805.920000001788139 ], [ 364366.067800000309944, 253800.794799998402596 ], [ 364383.06870000064373, 253792.912399999797344 ], [ 364402.467000000178814, 253787.582699999213219 ], [ 364410.517499998211861, 253789.126299999654293 ], [ 364416.143700003623962, 253791.28319999948144 ], [ 364422.558200001716614, 253795.557599999010563 ], [ 364429.725100003182888, 253806.170899998396635 ], [ 364440.104699999094009, 253818.288199998438358 ], [ 364455.296999998390675, 253833.400199998170137 ], [ 364464.915200002491474, 253840.233899999409914 ], [ 364480.166799999773502, 253848.380300000309944 ], [ 364500.313799999654293, 253849.811799999326468 ], [ 364502.077500000596046, 253832.094300001859665 ], [ 364486.910400003194809, 253814.027300000190735 ], [ 364466.109899997711182, 253794.64750000089407 ], [ 364468.458700001239777, 253802.899399999529123 ], [ 364473.204899996519089, 253813.703999999910593 ], [ 364465.906700000166893, 253818.499400001019239 ], [ 364460.359600000083447, 253807.054999999701977 ], [ 364458.782999999821186, 253802.820199999958277 ], [ 364458.0, 253800.069600000977516 ], [ 364456.450300000607967, 253792.668600000441074 ], [ 364455.707000002264977, 253785.27419999986887 ], [ 364455.838200002908707, 253769.865499999374151 ], [ 364458.375799998641014, 253755.954100001603365 ], [ 364456.790200002491474, 253752.774700000882149 ], [ 364452.7837999984622, 253749.78660000115633 ], [ 364447.992700003087521, 253744.25899999961257 ], [ 364443.237499997019768, 253734.509700000286102 ], [ 364442.614600002765656, 253712.973099999129772 ], [ 364443.458700001239777, 253708.546999998390675 ], [ 364449.333099998533726, 253681.575100000947714 ], [ 364450.184299997985363, 253676.304800000041723 ], [ 364452.831600002944469, 253649.517599999904633 ], [ 364449.662100002169609, 253642.947700001299381 ], [ 364443.285300001502037, 253634.240699999034405 ], [ 364296.415799997746944, 253713.949200000613928 ], [ 364261.298600003123283, 253689.719500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109501020900", "MAP": "A9-727-T008", "PARCEL_NAM": "1-20-1", "ACRE": ".70", "LONGITUDE": -64.87986028, "LATITUDE": 18.31205597, "OBJECTID_1": 42242, "PARCEL_NO_": "109501020900", "Tax_Legal_": "1-20 BOVONI FRENCHMAN BAY QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 583700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.83599959099999, "SHAPE_Area": 2257.5791582400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364194.668300002813339, 253683.457400001585484 ], [ 364262.840700000524521, 253717.378699999302626 ], [ 364261.298600003123283, 253689.719500001519918 ], [ 364197.246799997985363, 253645.52589999884367 ], [ 364192.975699998438358, 253653.048099998384714 ], [ 364193.122699998319149, 253653.164599999785423 ], [ 364194.668300002813339, 253683.457400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601070700", "MAP": "D9-3289-T85", "PARCEL_NAM": "3G-7", "ACRE": ".29", "LONGITUDE": -64.87955403, "LATITUDE": 18.32362526, "OBJECTID_1": 38185, "PARCEL_NO_": "107601070700", "Tax_Legal_": "3G-7 BOVONI FRENCHMAN BAY QTR.", "Name": "WILLIAM, MICHAEL & MARIE ALEXIS", "Address": "PO Box 307572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34700, "Improved_V": 165200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.553632534, "SHAPE_Area": 1290.4205595799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364270.231100000441074, 254963.256599999964237 ], [ 364250.253200002014637, 254938.297499999403954 ], [ 364220.570500001311302, 254959.957400001585484 ], [ 364240.118199996650219, 254979.695500001311302 ], [ 364244.285300001502037, 254982.612399999052286 ], [ 364247.54169999808073, 254984.8918999992311 ], [ 364254.380000002682209, 254984.566199999302626 ], [ 364263.618199996650219, 254976.834699999541044 ], [ 364266.881999999284744, 254969.85700000077486 ], [ 364270.231100000441074, 254963.256599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601070500", "MAP": "D9-2455-T83", "PARCEL_NAM": "3G-5", "ACRE": ".33", "LONGITUDE": -64.87980165, "LATITUDE": 18.32339027, "OBJECTID_1": 38184, "PARCEL_NO_": "107601070500", "Tax_Legal_": "3G-5 BOVONI FRENCHMAN BAY QTR.", "Name": "JASMINE B. FLEMING LIVING TRUST", "Address": "7014 Est Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42800, "Improved_V": 169200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.82373901099999, "SHAPE_Area": 1417.9300649899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364220.570500001311302, 254959.957400001585484 ], [ 364250.253200002014637, 254938.297499999403954 ], [ 364247.282600000500679, 254932.866599999368191 ], [ 364237.431199997663498, 254914.856100000441074 ], [ 364236.417000003159046, 254915.014499999582767 ], [ 364230.60869999974966, 254918.462400000542402 ], [ 364216.209899999201298, 254925.661699999123812 ], [ 364214.326899997889996, 254926.603199999779463 ], [ 364199.998999997973442, 254929.533900000154972 ], [ 364186.647900000214577, 254928.2314000017941 ], [ 364180.765900000929832, 254929.369899999350309 ], [ 364199.998999997973442, 254942.885000001639128 ], [ 364212.047499999403954, 254951.351500000804663 ], [ 364212.506999999284744, 254951.815499998629093 ], [ 364213.811599999666214, 254953.132800001651049 ], [ 364220.570500001311302, 254959.957400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-2516-T83", "PARCEL_NAM": "3G-6", "ACRE": ".38", "LONGITUDE": -64.87937618, "LATITUDE": 18.32336431, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.950442536, "SHAPE_Area": 1529.0896719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364237.431199997663498, 254914.856100000441074 ], [ 364247.282600000500679, 254932.866599999368191 ], [ 364250.253200002014637, 254938.297499999403954 ], [ 364270.231100000441074, 254963.256599999964237 ], [ 364292.611000001430511, 254945.065099999308586 ], [ 364278.519199997186661, 254918.224700000137091 ], [ 364266.176700003445148, 254914.955200001597404 ], [ 364255.278399996459484, 254912.068199999630451 ], [ 364237.431199997663498, 254914.856100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024100", "MAP": "D9-2890-T84", "PARCEL_NAM": "3G-9", "ACRE": ".07", "LONGITUDE": -64.88090355, "LATITUDE": 18.32273197, "OBJECTID_1": 38609, "PARCEL_NO_": "107603024100", "Tax_Legal_": "3-90&3G-9 BOVONI FRENCHMAN BAY QTR.", "Name": "ORTIZ, SABAS & ORTIZ, NATALIA", "Address": "6441 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36500, "Improved_V": 177400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.309249788900004, "SHAPE_Area": 325.32371566400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364091.219400003552437, 254850.843499999493361 ], [ 364101.461900003254414, 254874.508699998259544 ], [ 364124.160999998450279, 254863.430700000375509 ], [ 364115.263400003314018, 254860.030799999833107 ], [ 364091.219400003552437, 254850.843499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601072700", "MAP": "D9-6553-T99", "PARCEL_NAM": "3G-16", "ACRE": ".31", "LONGITUDE": -64.88092598, "LATITUDE": 18.32470038, "OBJECTID_1": 38192, "PARCEL_NO_": "107601072700", "Tax_Legal_": "BOVONI 3G-16 FRENCHMAN'S BAY QRT #1&2", "Name": "CHRISTIAN, GERALD", "Address": "ESTATE BOVONI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 277200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.270311002, "SHAPE_Area": 1171.9674903600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364131.762999996542931, 255095.897300001233816 ], [ 364130.8158999979496, 255092.333599999547005 ], [ 364125.191200003027916, 255079.479600001126528 ], [ 364123.926899999380112, 255065.516699999570847 ], [ 364070.89639999717474, 255074.519000001251698 ], [ 364073.288099996745586, 255093.260999999940395 ], [ 364104.917300000786781, 255088.458599999547005 ], [ 364131.762999996542931, 255095.897300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601054200", "MAP": "D9-3529-T86", "PARCEL_NAM": "3G-14", "ACRE": "0.17", "LONGITUDE": -64.88040855, "LATITUDE": 18.32298047, "OBJECTID_1": 38116, "PARCEL_NO_": "107601054200", "Tax_Legal_": "3G-14 EST. BOVONI FRENCHMAN BAY QTR", "Name": "STUART, ALBERT", "Address": "PO Box 9912", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19700, "Improved_V": 260100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.307785623, "SHAPE_Area": 835.25863473100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364172.999300003051758, 254911.389699999243021 ], [ 364174.494400002062321, 254899.55009999871254 ], [ 364170.081799998879433, 254880.977299999445677 ], [ 364148.571800000965595, 254872.758200000971556 ], [ 364144.811700001358986, 254878.516399998217821 ], [ 364135.569300003349781, 254891.662900000810623 ], [ 364149.794200003147125, 254899.15989999845624 ], [ 364172.999300003051758, 254911.389699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601071100", "MAP": "D9-6542-T99", "PARCEL_NAM": "3G-11", "ACRE": ".26", "LONGITUDE": -64.88049333, "LATITUDE": 18.32316754, "OBJECTID_1": 38188, "PARCEL_NO_": "107601071100", "Tax_Legal_": "3G-11 BOVONI FRENCHMAN BAY QTR.", "Name": "MARTIN, RUDOLPH LLEWELYN AND INGRID CHALLENGER MARTIN", "Address": "PO BOX 503325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 33500, "Improved_V": 195100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.22325733900001, "SHAPE_Area": 1037.5224571000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364172.999300003051758, 254911.389699999243021 ], [ 364149.794200003147125, 254899.15989999845624 ], [ 364135.569300003349781, 254891.662900000810623 ], [ 364133.705700002610683, 254894.313799999654293 ], [ 364124.823399998247623, 254906.948300000280142 ], [ 364127.056800000369549, 254909.670200001448393 ], [ 364132.592600002884865, 254921.067400000989437 ], [ 364139.430900000035763, 254924.323800001293421 ], [ 364169.063699997961521, 254924.323800001293421 ], [ 364174.830700002610683, 254924.323800001293421 ], [ 364172.999300003051758, 254911.389699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024300", "MAP": "D9-3071-T85", "PARCEL_NAM": "3G-13", "ACRE": ".02", "LONGITUDE": -64.87974633, "LATITUDE": 18.32312178, "OBJECTID_1": 38611, "PARCEL_NO_": "107603024300", "Tax_Legal_": "3G-13&3-96 BOVONI FRENCHMAN BAY QTR.", "Name": "GEORGES, EILEEN", "Address": "6442 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75100, "Improved_V": 209100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.357524141300004, "SHAPE_Area": 162.53439391699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364242.792900003492832, 254908.76069999858737 ], [ 364216.770599998533726, 254898.817499998956919 ], [ 364223.157799996435642, 254913.75 ], [ 364242.792900003492832, 254908.76069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601071800", "MAP": "D9-4233-T88", "PARCEL_NAM": "3G-18", "ACRE": ".30", "LONGITUDE": -64.88045256, "LATITUDE": 18.3234752, "OBJECTID_1": 38189, "PARCEL_NO_": "107601071800", "Tax_Legal_": "BOVONI 3G-18 FRENCHMAN BAY QTR.", "Name": "BRAMBLE, JOSEPHINE & LEWIS", "Address": "PO Box 9105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.77480915199999, "SHAPE_Area": 1319.7465315300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364127.452399998903275, 254958.894799999892712 ], [ 364173.792400002479553, 254960.617800001055002 ], [ 364176.8716000020504, 254934.478900000452995 ], [ 364171.668700002133846, 254931.162099998444319 ], [ 364148.548699997365475, 254930.185199998319149 ], [ 364130.109499998390675, 254934.118900001049042 ], [ 364129.266000002622604, 254941.53489999845624 ], [ 364127.452399998903275, 254958.894799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603037700", "MAP": "D9-4742-T89", "PARCEL_NAM": "33-134", "ACRE": ".18", "LONGITUDE": -64.87918739, "LATITUDE": 18.32293963, "OBJECTID_1": 38699, "PARCEL_NO_": "107603037700", "Tax_Legal_": "33-134 NADIR 3-97-1 BOV. EASTEND QTR", "Name": "LEONARD, RONDELL & MONICA LEONARD MCNEIL", "Address": "6428 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 144300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.789362955, "SHAPE_Area": 778.81886163900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364291.253700003027916, 254915.493400000035763 ], [ 364298.665600001811981, 254868.054900001734495 ], [ 364289.812100000679493, 254860.581000000238419 ], [ 364276.506999999284744, 254884.418600000441074 ], [ 364270.829300001263618, 254894.590799998492002 ], [ 364273.574000000953674, 254896.950599998235703 ], [ 364291.253700003027916, 254915.493400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": null, "PARCEL_NAM": "UNSURVEYED PORTION OF 3G", "ACRE": null, "LONGITUDE": -64.88014451, "LATITUDE": 18.32299335, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.038589285, "SHAPE_Area": 355.922225067 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364212.236000001430511, 254897.084699999541044 ], [ 364196.097999997437, 254890.918299999088049 ], [ 364170.081799998879433, 254880.977299999445677 ], [ 364174.494400002062321, 254899.55009999871254 ], [ 364212.236000001430511, 254897.084699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "A9-835-T018", "PARCEL_NAM": "3G-R2 ROW", "ACRE": "1.12", "LONGITUDE": -64.88023968, "LATITUDE": 18.32362775, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 951.13836702699996, "SHAPE_Area": 2340.0812740400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364242.792900003492832, 254908.76069999858737 ], [ 364223.157799996435642, 254913.75 ], [ 364216.770599998533726, 254898.817499998956919 ], [ 364214.061300002038479, 254893.392799999564886 ], [ 364212.236000001430511, 254897.084699999541044 ], [ 364213.269500002264977, 254900.939899999648333 ], [ 364214.45610000193119, 254904.57319999858737 ], [ 364215.007299996912479, 254906.260999999940395 ], [ 364218.885799996554852, 254918.136700000613928 ], [ 364204.563299998641014, 254924.323800001293421 ], [ 364194.790899999439716, 254924.323800001293421 ], [ 364178.187299996614456, 254924.323800001293421 ], [ 364169.063699997961521, 254924.323800001293421 ], [ 364139.430900000035763, 254924.323800001293421 ], [ 364132.592500001192093, 254921.067400000989437 ], [ 364127.056800000369549, 254909.670200001448393 ], [ 364124.823399998247623, 254906.948300000280142 ], [ 364121.244599997997284, 254912.038800001144409 ], [ 364126.22919999808073, 254922.653200000524521 ], [ 364127.006700001657009, 254935.251800000667572 ], [ 364124.682599999010563, 254947.911400001496077 ], [ 364120.653999999165535, 254965.371300000697374 ], [ 364119.274499997496605, 254981.753600001335144 ], [ 364117.525100000202656, 254998.190799999982119 ], [ 364118.114699997007847, 255016.676399998366833 ], [ 364121.520999997854233, 255038.947299998253584 ], [ 364123.636200003325939, 255062.306499999016523 ], [ 364125.191200003027916, 255079.479600001126528 ], [ 364130.8158999979496, 255092.333599999547005 ], [ 364133.24379999935627, 255101.469200000166893 ], [ 364133.305500000715256, 255103.19649999961257 ], [ 364140.544200003147125, 255095.485599998384714 ], [ 364144.602700002491474, 255092.352400001138449 ], [ 364139.119000002741814, 255091.898400001227856 ], [ 364132.444700002670288, 255086.66160000115633 ], [ 364127.447999998927116, 255073.247400000691414 ], [ 364123.196999996900558, 255026.921000000089407 ], [ 364122.751800000667572, 255012.41780000180006 ], [ 364123.329700000584126, 254990.480399999767542 ], [ 364124.291299998760223, 254978.50730000063777 ], [ 364126.810699999332428, 254965.03660000115633 ], [ 364129.266000002622604, 254941.53489999845624 ], [ 364130.109499998390675, 254934.118900001049042 ], [ 364148.548699997365475, 254930.185199998319149 ], [ 364171.668700002133846, 254931.162099998444319 ], [ 364197.719499997794628, 254947.769499998539686 ], [ 364208.802000001072884, 254954.834600001573563 ], [ 364235.818800002336502, 254982.612399999052286 ], [ 364243.118100002408028, 254987.557300001382828 ], [ 364254.877400003373623, 254988.571400001645088 ], [ 364262.480499997735023, 254984.496599998325109 ], [ 364269.334700003266335, 254976.733600001782179 ], [ 364274.13570000231266, 254967.024399999529123 ], [ 364270.231100000441074, 254963.256599999964237 ], [ 364266.881999999284744, 254969.85700000077486 ], [ 364263.618199996650219, 254976.834699999541044 ], [ 364254.380000002682209, 254984.566199999302626 ], [ 364247.54169999808073, 254984.8918999992311 ], [ 364244.285300001502037, 254982.612399999052286 ], [ 364240.118199996650219, 254979.695500001311302 ], [ 364212.047499999403954, 254951.351500000804663 ], [ 364199.998999997973442, 254942.885000001639128 ], [ 364180.765900000929832, 254929.369800001382828 ], [ 364186.647900000214577, 254928.2314000017941 ], [ 364199.998999997973442, 254929.533900000154972 ], [ 364214.326899997889996, 254926.603199999779463 ], [ 364230.60869999974966, 254918.462400000542402 ], [ 364236.417000003159046, 254915.014499999582767 ], [ 364255.278399996459484, 254912.068199999630451 ], [ 364242.792900003492832, 254908.76069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603023900", "MAP": "D9-3898-T87", "PARCEL_NAM": "3-94A", "ACRE": ".23", "LONGITUDE": -64.88009072, "LATITUDE": 18.32289823, "OBJECTID_1": 38607, "PARCEL_NO_": "107603023900", "Tax_Legal_": "3-94A BOVONI No. 1&2 FRENCHMAN'S BAY QTR", "Name": "FERGUS, JOSEPH", "Address": "PO Box 8526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.533839036, "SHAPE_Area": 559.11472296900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364210.219999998807907, 254885.701799999922514 ], [ 364178.291799999773502, 254865.932900000363588 ], [ 364170.081799998879433, 254880.977299999445677 ], [ 364196.097999997437, 254890.918299999088049 ], [ 364212.236000001430511, 254897.084699999541044 ], [ 364214.061300002038479, 254893.392799999564886 ], [ 364210.219999998807907, 254885.701799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603037700", "MAP": "D9-4742-T89", "PARCEL_NAM": "3-97-1", "ACRE": ".06", "LONGITUDE": -64.87927784, "LATITUDE": 18.32313794, "OBJECTID_1": 38699, "PARCEL_NO_": "107603037700", "Tax_Legal_": "33-134 NADIR 3-97-1 BOV. EASTEND QTR", "Name": "LEONARD, RONDELL & MONICA LEONARD MCNEIL", "Address": "6428 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 144300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.008900646800001, "SHAPE_Area": 277.05718148199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364278.519199997186661, 254918.224700000137091 ], [ 364291.253700003027916, 254915.493400000035763 ], [ 364273.574000000953674, 254896.950599998235703 ], [ 364270.829300001263618, 254894.590799998492002 ], [ 364269.185400001704693, 254907.632100000977516 ], [ 364268.195000000298023, 254915.489799998700619 ], [ 364278.519199997186661, 254918.224700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603023800", "MAP": "F9-3935-T57", "PARCEL_NAM": "3-93", "ACRE": ".22", "LONGITUDE": -64.88031605, "LATITUDE": 18.32269013, "OBJECTID_1": 38606, "PARCEL_NO_": "107603023800", "Tax_Legal_": "3-93 BOVONI FRENCHMAN BAY QTR.", "Name": "LARONDE (LIFE ESTATE), ESLIE", "Address": "PO BOX 50291", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28500, "Improved_V": 155600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.946680439, "SHAPE_Area": 991.17317580300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364184.729999996721745, 254854.135299999266863 ], [ 364189.355099998414516, 254845.660000000149012 ], [ 364161.443099997937679, 254838.271699998527765 ], [ 364158.318899996578693, 254846.131499998271465 ], [ 364148.571800000965595, 254872.758200000971556 ], [ 364170.081799998879433, 254880.977299999445677 ], [ 364184.729999996721745, 254854.135299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603029900", "MAP": "F9-3953-T57", "PARCEL_NAM": "3-92", "ACRE": ".22", "LONGITUDE": -64.88050847, "LATITUDE": 18.32263989, "OBJECTID_1": 38622, "PARCEL_NO_": "107603029900", "Tax_Legal_": "3-7,92,99 & 101 BOVONI NO. 1&2 FRENCHMANS BAY QUARTER", "Name": "A J PROPERTIES LLC", "Address": "PO Box 8355", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 222800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.861132849, "SHAPE_Area": 567.30267603699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364157.1841000020504, 254849.2314000017941 ], [ 364158.318899996578693, 254846.131499998271465 ], [ 364161.443099997937679, 254838.271699998527765 ], [ 364145.913999997079372, 254834.161200001835823 ], [ 364141.850199997425079, 254845.532999999821186 ], [ 364133.741999998688698, 254867.091600000858307 ], [ 364135.771300002932549, 254867.86710000038147 ], [ 364148.571800000965595, 254872.758200000971556 ], [ 364157.1841000020504, 254849.2314000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024100", "MAP": "D9-2890-T84", "PARCEL_NAM": "3- 90", "ACRE": ".22", "LONGITUDE": -64.8808732, "LATITUDE": 18.32252987, "OBJECTID_1": 38609, "PARCEL_NO_": "107603024100", "Tax_Legal_": "3-90&3G-9 BOVONI FRENCHMAN BAY QTR.", "Name": "ORTIZ, SABAS & ORTIZ, NATALIA", "Address": "6441 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36500, "Improved_V": 177400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.898198268, "SHAPE_Area": 830.15313859299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364127.329000003635883, 254829.241799999028444 ], [ 364101.36089999973774, 254822.368000000715256 ], [ 364091.219400003552437, 254850.843499999493361 ], [ 364115.263400003314018, 254860.030799999833107 ], [ 364127.329000003635883, 254829.241799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603020400", "MAP": "F9-186-T57", "PARCEL_NAM": "3-89", "ACRE": "0.22", "LONGITUDE": -64.88108349, "LATITUDE": 18.32245796, "OBJECTID_1": 38582, "PARCEL_NO_": "107603020400", "Tax_Legal_": "ESTATE BOVONI 3-89 (EASTERN PART) FRENCHMAN'S BAY QTR.", "Name": "CABAN, ENRIQUE", "Address": "PO Box 302063", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.699682858, "SHAPE_Area": 594.66820944300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364101.36089999973774, 254822.368000000715256 ], [ 364076.865599997341633, 254815.884199999272823 ], [ 364076.295800000429153, 254825.072299998253584 ], [ 364076.681500002741814, 254830.251600001007318 ], [ 364078.259999997913837, 254834.275299999862909 ], [ 364078.21679999679327, 254839.3412000015378 ], [ 364075.772699996829033, 254842.276500001549721 ], [ 364073.105099998414516, 254843.921900000423193 ], [ 364091.219400003552437, 254850.843499999493361 ], [ 364101.36089999973774, 254822.368000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019700", "MAP": "F9-3926-T57", "PARCEL_NAM": "3-68", "ACRE": "0.22", "LONGITUDE": -64.88016485, "LATITUDE": 18.32237336, "OBJECTID_1": 38573, "PARCEL_NO_": "107603019700", "Tax_Legal_": "3-60,67,68,69,76,98,& 100&104 BOVONI (EASTERN) 1 & 2 FRENCHMANS BAY QUARTER", "Name": "LIMA, AGUSTIN J.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.305087124, "SHAPE_Area": 695.61001922299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364186.085400000214577, 254840.196400001645088 ], [ 364190.548500001430511, 254834.337999999523163 ], [ 364192.849500000476837, 254829.157000001519918 ], [ 364196.140600003302097, 254831.17850000038743 ], [ 364201.526199996471405, 254815.123799998313189 ], [ 364196.974899999797344, 254813.293200001120567 ], [ 364179.901900000870228, 254806.533500000834465 ], [ 364165.922499999403954, 254834.482299998402596 ], [ 364179.078900001943111, 254838.210799999535084 ], [ 364186.085400000214577, 254840.196400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603030500", "MAP": "A9-78-T67", "PARCEL_NAM": "33-20", "ACRE": "0.09", "LONGITUDE": -64.87976301, "LATITUDE": 18.32218914, "OBJECTID_1": 38627, "PARCEL_NO_": "107603030500", "Tax_Legal_": "33-20 NADIR RED HOOK QTR", "Name": "NILES, CLARICE & ROCHELLE & ROSLYN", "Address": "4680 Joanna Ct", "City": "Woodbridge", "State": "Virginia", "Zip": 22193, "Country": "United States", "Land_Value": 10800, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.249480223399999, "SHAPE_Area": 379.97099792799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364214.263099998235703, 254816.440799999982119 ], [ 364225.134700000286102, 254820.700899999588728 ], [ 364238.258699998259544, 254794.632699999958277 ], [ 364235.850500002503395, 254793.346400000154972 ], [ 364232.663099996745586, 254788.887299999594688 ], [ 364231.108000002801418, 254782.119600001722574 ], [ 364214.263099998235703, 254816.440799999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603038000", "MAP": "D9-3679-T86", "PARCEL_NAM": "33-131", "ACRE": "0.25", "LONGITUDE": -64.87955845, "LATITUDE": 18.32260718, "OBJECTID_1": 38702, "PARCEL_NO_": "107603038000", "Tax_Legal_": "33-131 ESTATE NADIR RED HOOK QTR.", "Name": "GUMBS, REUBEN N", "Address": "43 City Ter", "City": "Newburgh", "State": "New York", "Zip": 12550, "Country": "United States", "Land_Value": 31500, "Improved_V": 156400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.447063156, "SHAPE_Area": 906.285558713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364248.345799997448921, 254874.349800001829863 ], [ 364268.118900001049042, 254848.340700000524521 ], [ 364254.835199996829033, 254836.564899999648333 ], [ 364246.030500002205372, 254828.893399998545647 ], [ 364235.405500002205372, 254839.75620000064373 ], [ 364228.219999998807907, 254847.102600000798702 ], [ 364248.345799997448921, 254874.349800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024200", "MAP": "D9-3071-T85", "PARCEL_NAM": "3-95", "ACRE": ".24", "LONGITUDE": -64.87976587, "LATITUDE": 18.32289394, "OBJECTID_1": 38610, "PARCEL_NO_": "107603024200", "Tax_Legal_": "3-95 BOVONI FRENCHMAN BAY QTR.", "Name": "GEORGES, EILEEN", "Address": "6442 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75100, "Improved_V": 122600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.863222569, "SHAPE_Area": 754.09474225199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364241.794200003147125, 254873.420899998396635 ], [ 364226.328100003302097, 254859.313000001013279 ], [ 364210.219999998807907, 254885.701799999922514 ], [ 364216.770599998533726, 254898.817499998956919 ], [ 364227.590400002896786, 254902.951799999922514 ], [ 364241.794200003147125, 254873.420899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024300", "MAP": "D9-3071-T85", "PARCEL_NAM": "3-96", "ACRE": ".15", "LONGITUDE": -64.8796227, "LATITUDE": 18.32298741, "OBJECTID_1": 38611, "PARCEL_NO_": "107603024300", "Tax_Legal_": "3G-13&3-96 BOVONI FRENCHMAN BAY QTR.", "Name": "GEORGES, EILEEN", "Address": "6442 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75100, "Improved_V": 209100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.824780071000006, "SHAPE_Area": 448.72703971300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364252.424900002777576, 254883.118200000375509 ], [ 364241.794200003147125, 254873.420899998396635 ], [ 364227.590400002896786, 254902.951799999922514 ], [ 364242.792900003492832, 254908.76069999858737 ], [ 364252.424900002777576, 254883.118200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019700", "MAP": "F9-3921-T57", "PARCEL_NAM": "3-67", "ACRE": ".32", "LONGITUDE": -64.87985964000001, "LATITUDE": 18.32250899, "OBJECTID_1": 38573, "PARCEL_NO_": "107603019700", "Tax_Legal_": "3-60,67,68,69,76,98,& 100&104 BOVONI (EASTERN) 1 & 2 FRENCHMANS BAY QUARTER", "Name": "LIMA, AGUSTIN J.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.98256987100001, "SHAPE_Area": 566.35170003899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364247.829899996519089, 254875.028400000184774 ], [ 364248.345799997448921, 254874.349800001829863 ], [ 364218.418799996376038, 254833.833099998533726 ], [ 364205.898299999535084, 254816.882199998944998 ], [ 364201.526199996471405, 254815.123799998313189 ], [ 364196.140600003302097, 254831.17850000038743 ], [ 364214.411200001835823, 254843.240499999374151 ], [ 364225.471900001168251, 254853.4989 ], [ 364243.273999996483326, 254871.276900000870228 ], [ 364247.829899996519089, 254875.028400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603038000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87977233, "LATITUDE": 18.32241858, "OBJECTID_1": 38702, "PARCEL_NO_": "107603038000", "Tax_Legal_": "33-131 ESTATE NADIR RED HOOK QTR.", "Name": "GUMBS, REUBEN N", "Address": "43 City Ter", "City": "Newburgh", "State": "New York", "Zip": 12550, "Country": "United States", "Land_Value": 31500, "Improved_V": 156400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.258293149, "SHAPE_Area": 552.742485687 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364220.896700002253056, 254819.040199998766184 ], [ 364214.263099998235703, 254816.440799999982119 ], [ 364202.821400001645088, 254811.957400001585484 ], [ 364205.898299999535084, 254816.882199998944998 ], [ 364215.35980000346899, 254829.691700000315905 ], [ 364218.418799996376038, 254833.833099998533726 ], [ 364228.219999998807907, 254847.102600000798702 ], [ 364235.405500002205372, 254839.75620000064373 ], [ 364246.030500002205372, 254828.893399998545647 ], [ 364225.134700000286102, 254820.700899999588728 ], [ 364220.896700002253056, 254819.040199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603030600", "MAP": "A9-78-T67", "PARCEL_NAM": "33-19", "ACRE": "0.09", "LONGITUDE": -64.87986045, "LATITUDE": 18.32213948, "OBJECTID_1": 38628, "PARCEL_NO_": "107603030600", "Tax_Legal_": "33-19 NADIR RED HOOK QTR", "Name": "FREDERICKS, GERTRUDE (LIFE ESTATE)", "Address": "7152 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 76300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.112889650300005, "SHAPE_Area": 440.87999573500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364202.821400001645088, 254811.957400001585484 ], [ 364212.756899997591972, 254815.850600000470877 ], [ 364214.263099998235703, 254816.440799999982119 ], [ 364231.108000002801418, 254782.119600001722574 ], [ 364221.428599998354912, 254782.462600000202656 ], [ 364218.214199997484684, 254781.169700000435114 ], [ 364205.09740000218153, 254806.3935999982059 ], [ 364202.821400001645088, 254811.957400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603030700", "MAP": "A9-78-T67", "PARCEL_NAM": "33-18", "ACRE": "0.10", "LONGITUDE": -64.87997978, "LATITUDE": 18.32208007, "OBJECTID_1": 38629, "PARCEL_NO_": "107603030700", "Tax_Legal_": "33-18 NADIR RED HOOK QTR", "Name": "FORDE, SHERLY & BEATRICE C.", "Address": "PO Box 302882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 76400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.325259097100002, "SHAPE_Area": 480.81782256100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364205.09740000218153, 254806.3935999982059 ], [ 364218.214199997484684, 254781.169700000435114 ], [ 364216.610500000417233, 254780.101100001484156 ], [ 364214.206000000238419, 254778.392700001597404 ], [ 364213.426600001752377, 254775.219900000840425 ], [ 364190.73480000346899, 254788.544199999421835 ], [ 364188.902199998497963, 254789.678100001066923 ], [ 364202.821400001645088, 254811.957400001585484 ], [ 364205.09740000218153, 254806.3935999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603030800", "MAP": "A9-78-T67", "PARCEL_NAM": "33-17", "ACRE": "0.10", "LONGITUDE": -64.88005614, "LATITUDE": 18.32193882, "OBJECTID_1": 38630, "PARCEL_NO_": "107603030800", "Tax_Legal_": "33-17 NADIR RED HOOK QTR", "Name": "FRANCIS, WALDRON & LYRA", "Address": "7154 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 70200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.042017125699999, "SHAPE_Area": 438.29171883499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364184.411300003528595, 254773.582600001245737 ], [ 364184.336499996483326, 254782.370099999010563 ], [ 364188.902199998497963, 254789.678100001066923 ], [ 364190.73480000346899, 254788.544199999421835 ], [ 364197.187399998307228, 254784.755300000309944 ], [ 364213.426600001752377, 254775.219900000840425 ], [ 364211.05629999935627, 254769.500999998301268 ], [ 364184.48030000180006, 254765.483800001442432 ], [ 364184.411300003528595, 254773.582600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603029800", "MAP": "D9-2986-T85", "PARCEL_NAM": "3-94 REM", "ACRE": ".44", "LONGITUDE": -64.87998756, "LATITUDE": 18.32270638, "OBJECTID_1": 38620, "PARCEL_NO_": "107603029800", "Tax_Legal_": "3-94 REM BOVONI NO.1 &2 FRENCHMAN'S BAY QTR", "Name": "FERGUS, JOSEPH", "Address": "PO Box 8526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24300, "Improved_V": 121400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.74397436300001, "SHAPE_Area": 1292.18035141 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364178.291799999773502, 254865.932900000363588 ], [ 364210.219999998807907, 254885.701799999922514 ], [ 364224.069200001657009, 254862.930500000715256 ], [ 364226.328100003302097, 254859.313000001013279 ], [ 364212.81530000269413, 254846.986699998378754 ], [ 364206.409699998795986, 254841.657000001519918 ], [ 364194.358199998736382, 254836.49210000038147 ], [ 364190.689900003373623, 254843.214000001549721 ], [ 364178.291799999773502, 254865.932900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050200", "MAP": null, "PARCEL_NAM": "11", "ACRE": "3.5", "LONGITUDE": -64.88107557, "LATITUDE": 18.32588882, "OBJECTID_1": 38061, "PARCEL_NO_": "107601050200", "Tax_Legal_": "MARIENDAHL ESTATE 11 WESTERN PORTION", "Name": "HEAVY MATERIALS LLC", "Address": "PO Box 304937", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 392000, "Improved_V": 326100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 609.46398764100002, "SHAPE_Area": 15430.528405499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363986.024400003254414, 255301.851100001484156 ], [ 364022.827399998903275, 255328.750500001013279 ], [ 364051.854900002479553, 255283.477400001138449 ], [ 364068.965499997138977, 255262.719200000166893 ], [ 364073.8429000005126, 255258.114999998360872 ], [ 364109.552599996328354, 255231.176199998706579 ], [ 364120.093999996781349, 255224.296399999409914 ], [ 364146.875, 255204.250599998980761 ], [ 364183.594800002872944, 255173.492600001394749 ], [ 364187.175899997353554, 255170.492899999022484 ], [ 364169.207599997520447, 255147.538600001484156 ], [ 364162.494499996304512, 255138.962499998509884 ], [ 364136.997500002384186, 255106.390599999576807 ], [ 364135.947499997913837, 255107.5945999994874 ], [ 364120.327899999916553, 255125.504900000989437 ], [ 364103.57320000231266, 255146.467999998480082 ], [ 364079.502499997615814, 255161.691599998623133 ], [ 364069.776399999856949, 255167.522599998861551 ], [ 364055.160300001502037, 255179.435300000011921 ], [ 364038.827299997210503, 255203.577399998903275 ], [ 364032.268899999558926, 255216.189300000667572 ], [ 364017.552100002765656, 255239.922400001436472 ], [ 364011.796400003135204, 255252.963100001215935 ], [ 364009.348700001835823, 255256.320599999278784 ], [ 363999.498499996960163, 255276.716099999845028 ], [ 363986.024400003254414, 255301.851100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602029000", "MAP": "D9-8421-T010", "PARCEL_NAM": "3B-2", "ACRE": ".609", "LONGITUDE": -64.8802389, "LATITUDE": 18.32494404, "OBJECTID_1": 38461, "PARCEL_NO_": "107602029000", "Tax_Legal_": "3B-2 ESTATE MARIENDAHL No.4 REDHOOK QUARTER", "Name": "WILLIAMS, RITSON L. & NELCIA TYSON", "Address": "PO Box 307455", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.01039024599999, "SHAPE_Area": 2710.8088204300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364136.997500002384186, 255106.390599999576807 ], [ 364162.494499996304512, 255138.962499998509884 ], [ 364165.855800002813339, 255142.58729999884963 ], [ 364215.892700001597404, 255108.622499998658895 ], [ 364173.472599998116493, 255075.113800000399351 ], [ 364143.086300000548363, 255099.408900000154972 ], [ 364136.997500002384186, 255106.390599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010200", "MAP": "D9-8421-T010", "PARCEL_NAM": "3B3", "ACRE": ".509", "LONGITUDE": -64.87981897, "LATITUDE": 18.32463372, "OBJECTID_1": 38302, "PARCEL_NO_": "107602010200", "Tax_Legal_": "PAR 3R-1-2, 3R-1-4 THRU 3R-1-6,3R-1 REM & 3J-1 REM MARIENDAL 4 RED HOOK QTR No.4 RED HOOK QTR", "Name": "LEON MONSANTO SR SIBILINGS FAMILY TRUST", "Address": "PO Box 304352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.68805149600001, "SHAPE_Area": 2375.5525224399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364237.851499997079372, 255079.139699999243021 ], [ 364254.134099997580051, 255065.017900001257658 ], [ 364247.69879999756813, 255042.181000001728535 ], [ 364247.626900002360344, 255042.133200000971556 ], [ 364247.562399998307228, 255042.290699999779463 ], [ 364210.606200002133846, 255058.906899999827147 ], [ 364187.752899996936321, 255071.44990000128746 ], [ 364173.472599998116493, 255075.113800000399351 ], [ 364215.892700001597404, 255108.622499998658895 ], [ 364216.417700000107288, 255107.917599998414516 ], [ 364237.851499997079372, 255079.139699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602029000", "MAP": "D9-8421-T010", "PARCEL_NAM": "3B-2", "ACRE": ".609", "LONGITUDE": -64.88008807, "LATITUDE": 18.32450884, "OBJECTID_1": 38461, "PARCEL_NO_": "107602029000", "Tax_Legal_": "3B-2 ESTATE MARIENDAHL No.4 REDHOOK QUARTER", "Name": "WILLIAMS, RITSON L. & NELCIA TYSON", "Address": "PO Box 307455", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.65923609800001, "SHAPE_Area": 630.01325902400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364173.472599998116493, 255075.113800000399351 ], [ 364183.231100000441074, 255066.273899998515844 ], [ 364186.125100001692772, 255063.521600000560284 ], [ 364207.858400002121925, 255050.229200001806021 ], [ 364219.624099999666214, 255044.513799998909235 ], [ 364235.694200001657009, 255029.103100001811981 ], [ 364251.505300000309944, 255009.613000001758337 ], [ 364247.980800002813339, 255007.916900001466274 ], [ 364236.296899996697903, 255023.924400001764297 ], [ 364224.841700002551079, 255034.935300000011921 ], [ 364211.358300000429153, 255043.522199999541044 ], [ 364192.457999996840954, 255053.914500001817942 ], [ 364181.026399999856949, 255062.148600000888109 ], [ 364167.328699998557568, 255075.017700001597404 ], [ 364144.602700002491474, 255092.352400001138449 ], [ 364140.544200003147125, 255095.485599998384714 ], [ 364133.001599997282028, 255103.520199999213219 ], [ 364135.947499997913837, 255107.5945999994874 ], [ 364143.086300000548363, 255099.408900000154972 ], [ 364173.472599998116493, 255075.113800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010200", "MAP": "D9-8421-T010", "PARCEL_NAM": "3B-A", "ACRE": null, "LONGITUDE": -64.87982658, "LATITUDE": 18.3244202, "OBJECTID_1": 38302, "PARCEL_NO_": "107602010200", "Tax_Legal_": "PAR 3R-1-2, 3R-1-4 THRU 3R-1-6,3R-1 REM & 3J-1 REM MARIENDAL 4 RED HOOK QTR No.4 RED HOOK QTR", "Name": "LEON MONSANTO SR SIBILINGS FAMILY TRUST", "Address": "PO Box 304352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.314417045, "SHAPE_Area": 742.52509854100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364173.472599998116493, 255075.113800000399351 ], [ 364187.752899996936321, 255071.44990000128746 ], [ 364210.606200002133846, 255058.907000001519918 ], [ 364247.562399998307228, 255042.290699999779463 ], [ 364254.324199996888638, 255025.792100001126528 ], [ 364254.028599999845028, 255025.909200001507998 ], [ 364223.243000000715256, 255042.755800001323223 ], [ 364207.858400002121925, 255050.229200001806021 ], [ 364186.125100001692772, 255063.521600000560284 ], [ 364183.231100000441074, 255066.273899998515844 ], [ 364173.472599998116493, 255075.113800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-2410-T83", "PARCEL_NAM": "3G-4", "ACRE": "1.03", "LONGITUDE": -64.88180078000001, "LATITUDE": 18.32265599, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.98860356, "SHAPE_Area": 4649.4556556199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363989.378200002014637, 254816.570199999958277 ], [ 363983.777800001204014, 254814.681000001728535 ], [ 363980.795100003480911, 254821.867499999701977 ], [ 363959.441799998283386, 254865.565999999642372 ], [ 364045.082099996507168, 254894.264299999922514 ], [ 364045.086300000548363, 254894.169900000095367 ], [ 364045.562600001692772, 254886.867400001734495 ], [ 364047.4087999984622, 254870.661899998784065 ], [ 364050.507299996912479, 254860.152699999511242 ], [ 364057.006700001657009, 254842.892000000923872 ], [ 364058.611400000751019, 254838.630199998617172 ], [ 364035.370099999010563, 254831.224800001829863 ], [ 364013.434299997985363, 254824.235300000756979 ], [ 363989.378200002014637, 254816.570199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601070200", "MAP": "D9-2410-T83", "PARCEL_NAM": "3G-2", "ACRE": "1.042", "LONGITUDE": -64.88191539, "LATITUDE": 18.32309446, "OBJECTID_1": 38182, "PARCEL_NO_": "107601070200", "Tax_Legal_": "3G-2 BOVONI FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE R", "Address": "3G-3 Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 117500, "Improved_V": 190900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.11337134199999, "SHAPE_Area": 4354.0496628499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364045.082099996507168, 254894.264299999922514 ], [ 363959.441799998283386, 254865.565999999642372 ], [ 363940.741800002753735, 254903.834699999541044 ], [ 364050.410499997437, 254941.839899998158216 ], [ 364045.7212999984622, 254918.141199998557568 ], [ 364044.451300002634525, 254908.457400001585484 ], [ 364045.082099996507168, 254894.264299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601071000", "MAP": "D9-4621-T88", "PARCEL_NAM": "3G-10A", "ACRE": ".23", "LONGITUDE": -64.88085567, "LATITUDE": 18.32364129, "OBJECTID_1": 38187, "PARCEL_NO_": "107601071000", "Tax_Legal_": "BOVONI 3G-10 FRENCHMAN BAY QTR.", "Name": "BELLOT, DOREEN", "Address": "PO BOX 673237", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 163400, "Improved_V": 286700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.36789120099999, "SHAPE_Area": 880.40562434100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364124.682599999010563, 254947.911400001496077 ], [ 364126.332500003278255, 254938.924300000071526 ], [ 364095.843199998140335, 254955.155999999493361 ], [ 364091.272399999201298, 254957.589400000870228 ], [ 364092.222800001502037, 254957.589400000870228 ], [ 364098.651600003242493, 254961.912200000137091 ], [ 364100.957500003278255, 254963.462699998170137 ], [ 364092.628700003027916, 254976.355099998414516 ], [ 364089.963799998164177, 254980.480200000107288 ], [ 364119.265600003302097, 254981.836800001561642 ], [ 364119.274499997496605, 254981.753600001335144 ], [ 364119.505199998617172, 254979.013599999248981 ], [ 364120.653999999165535, 254965.371300000697374 ], [ 364124.682599999010563, 254947.911400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109402010200", "MAP": "A3-106-T68", "PARCEL_NAM": "1A REM]", "ACRE": null, "LONGITUDE": -64.87944514, "LATITUDE": 18.30868846, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.73647649499998, "SHAPE_Area": 575.76294498499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364340.596799999475479, 253266.238099999725819 ], [ 364319.864600002765656, 253279.251600001007318 ], [ 364276.793099999427795, 253301.464099999517202 ], [ 364274.015600003302097, 253303.550700001418591 ], [ 364256.023199997842312, 253322.388900000602007 ], [ 364247.690800003707409, 253328.648499999195337 ], [ 364239.369000002741814, 253333.642099998891354 ], [ 364229.588200002908707, 253335.458200000226498 ], [ 364213.895900003612041, 253333.425999999046326 ], [ 364213.424800001084805, 253338.908300001174212 ], [ 364226.79110000282526, 253339.865699999034405 ], [ 364239.113799996674061, 253338.704199999570847 ], [ 364250.202299997210503, 253332.890000000596046 ], [ 364261.970600001513958, 253322.017299998551607 ], [ 364271.828400000929832, 253311.128499999642372 ], [ 364280.389300003647804, 253302.971700001507998 ], [ 364293.177799999713898, 253296.960999999195337 ], [ 364319.19370000064373, 253283.255100000649691 ], [ 364335.196800000965595, 253273.684500001370907 ], [ 364339.973700001835823, 253271.993200000375509 ], [ 364340.596799999475479, 253266.238099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109402010200", "MAP": "D9-7303-T003", "PARCEL_NAM": "1A-A", "ACRE": ".3688", "LONGITUDE": -64.87987605, "LATITUDE": 18.30874515, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.01812903699999, "SHAPE_Area": 1356.7889731400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364252.731700003147125, 253324.861600000411272 ], [ 364231.460799999535084, 253289.896000001579523 ], [ 364229.539599999785423, 253291.145700000226498 ], [ 364201.778999999165535, 253310.32319999858737 ], [ 364215.901199996471405, 253333.685699999332428 ], [ 364229.588200002908707, 253335.458200000226498 ], [ 364239.369000002741814, 253333.642099998891354 ], [ 364247.690800003707409, 253328.648499999195337 ], [ 364252.731700003147125, 253324.861600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010300", "MAP": "D9-7891-T006", "PARCEL_NAM": "18-M-1", "ACRE": "18.08", "LONGITUDE": -64.88779126, "LATITUDE": 18.31204178, "OBJECTID_1": 42228, "PARCEL_NO_": "109402010300", "Tax_Legal_": "BOVONI ESTATE 18M WESTERN PORTION", "Name": "BOLONGO INVESTMENTS LLC", "Address": "544 Newton Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 1643300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1277.4906690800001, "SHAPE_Area": 78254.411574800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363207.708099998533726, 253713.794900000095367 ], [ 363223.943899996578693, 253746.759899999946356 ], [ 363271.619699999690056, 253776.555399999022484 ], [ 363318.258500002324581, 253808.369300000369549 ], [ 363352.729900002479553, 253831.972199998795986 ], [ 363377.63849999755621, 253840.797699999064207 ], [ 363408.180900000035763, 253846.630100000649691 ], [ 363441.272399999201298, 253852.484000001102686 ], [ 363465.662100002169609, 253859.28660000115633 ], [ 363489.057700000703335, 253858.000399999320507 ], [ 363489.959299996495247, 253846.81980000063777 ], [ 363495.824699997901917, 253820.903299998492002 ], [ 363498.356899999082088, 253807.625199999660254 ], [ 363503.464500002563, 253776.002900000661612 ], [ 363503.604800000786781, 253759.538800001144409 ], [ 363500.474799998104572, 253748.325199998915195 ], [ 363498.946699999272823, 253738.39130000025034 ], [ 363496.572700001299381, 253733.094500001519918 ], [ 363484.618299998342991, 253716.531399998813868 ], [ 363478.299099996685982, 253701.06980000063777 ], [ 363476.762000001966953, 253692.191300000995398 ], [ 363476.052799999713898, 253680.786499999463558 ], [ 363476.903999999165535, 253675.516100000590086 ], [ 363478.563400000333786, 253670.041299998760223 ], [ 363483.482199996709824, 253660.582299999892712 ], [ 363495.726099997758865, 253643.161800000816584 ], [ 363520.930399999022484, 253618.88120000064373 ], [ 363528.26630000025034, 253609.653099998831749 ], [ 363536.44990000128746, 253595.576799999922514 ], [ 363539.743500001728535, 253587.58219999819994 ], [ 363542.189400002360344, 253584.4358000010252 ], [ 363544.647900000214577, 253579.811900001019239 ], [ 363547.934299997985363, 253572.66160000115633 ], [ 363557.721600003540516, 253559.653900001198053 ], [ 363441.338500000536442, 253496.217700000852346 ], [ 363434.034999996423721, 253501.646299999207258 ], [ 363421.898900002241135, 253506.402199998497963 ], [ 363415.396300002932549, 253512.47069999948144 ], [ 363409.732299998402596, 253514.746300000697374 ], [ 363404.071900002658367, 253516.599800001829863 ], [ 363380.678099997341633, 253517.674899999052286 ], [ 363373.433799996972084, 253516.138000000268221 ], [ 363369.423900000751019, 253513.57209999859333 ], [ 363365.435500003397465, 253508.473200000822544 ], [ 363361.491999998688698, 253498.097300000488758 ], [ 363357.505400002002716, 253492.787300001829863 ], [ 363354.287299998104572, 253491.916600000113249 ], [ 363343.778300002217293, 253494.997000001370907 ], [ 363342.147699996829033, 253497.0945999994874 ], [ 363340.529700003564358, 253497.714600000530481 ], [ 363331.579300001263618, 253507.140599999576807 ], [ 363321.781300000846386, 253521.414799999445677 ], [ 363316.930799998342991, 253522.852699998766184 ], [ 363314.486699998378754, 253525.787999998778105 ], [ 363313.664200000464916, 253527.681099999696016 ], [ 363313.624700002372265, 253532.32490000128746 ], [ 363316.007600001990795, 253536.566199999302626 ], [ 363315.154600001871586, 253542.047699999064207 ], [ 363311.112199999392033, 253543.281199999153614 ], [ 363307.859999999403954, 253546.421000000089407 ], [ 363306.128700003027916, 253560.339000001549721 ], [ 363303.700800001621246, 253561.374600000679493 ], [ 363299.699799999594688, 253557.753199998289347 ], [ 363298.866499997675419, 253560.912799999117851 ], [ 363300.468299999833107, 253562.192499998956919 ], [ 363302.048600003123283, 253566.005100000649691 ], [ 363301.209899999201298, 253569.797899998724461 ], [ 363297.982900001108646, 253569.982599999755621 ], [ 363295.576499998569489, 253568.485300000756979 ], [ 363292.405199997127056, 253562.126499999314547 ], [ 363289.179999999701977, 253562.100099999457598 ], [ 363289.943099997937679, 253567.172600001096725 ], [ 363294.710900001227856, 253575.444299999624491 ], [ 363293.865000002086163, 253580.081399999558926 ], [ 363290.607400000095367, 253583.854400001466274 ], [ 363284.957800000905991, 253584.441500000655651 ], [ 363280.938799999654293, 253582.930900000035763 ], [ 363278.563000001013279, 253577.845199998468161 ], [ 363272.953000001609325, 253573.788499999791384 ], [ 363267.306999996304512, 253573.953400000929832 ], [ 363265.687200002372265, 253574.784499999135733 ], [ 363262.427799999713898, 253578.7685999982059 ], [ 363259.942299999296665, 253586.558699999004602 ], [ 363259.917099997401237, 253589.513799998909235 ], [ 363262.292900003492832, 253594.599500000476837 ], [ 363262.269500002264977, 253597.343600001186132 ], [ 363259.852399997413158, 253597.112700000405312 ], [ 363256.607400000095367, 253599.40819999948144 ], [ 363252.523699998855591, 253605.496399998664856 ], [ 363252.480499997735023, 253610.562300000339746 ], [ 363258.905799999833107, 253613.570199999958277 ], [ 363260.502300001680851, 253615.4831000007689 ], [ 363257.257200002670288, 253617.778599999845028 ], [ 363258.013199999928474, 253623.69539999961853 ], [ 363267.64580000191927, 253628.840500000864267 ], [ 363274.037000000476837, 253635.858899999409914 ], [ 363274.798299998044968, 253641.142499998211861 ], [ 363272.329000003635883, 253647.032900001853704 ], [ 363267.431800000369549, 253653.95890000090003 ], [ 363253.598600000143051, 253668.62220000103116 ], [ 363207.708099998533726, 253713.794900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": null, "PARCEL_NAM": "UNSURVEYED PORTION OF 33", "ACRE": null, "LONGITUDE": -64.87884767, "LATITUDE": 18.32317986, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.269706203, "SHAPE_Area": 3568.8420756800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364326.300999999046326, 254956.281399998813868 ], [ 364328.308700002729893, 254952.562100000679493 ], [ 364334.57599999755621, 254952.809999998658895 ], [ 364335.30179999768734, 254959.631999999284744 ], [ 364339.020700000226498, 254960.053100001066923 ], [ 364356.245899997651577, 254944.856199998408556 ], [ 364345.414499998092651, 254900.000999998301268 ], [ 364314.974200002849102, 254876.320500001311302 ], [ 364300.235299997031689, 254858.008000001311302 ], [ 364298.665600001811981, 254868.054900001734495 ], [ 364291.253700003027916, 254915.493400000035763 ], [ 364293.384400002658367, 254917.728100001811981 ], [ 364299.041199997067451, 254923.661100000143051 ], [ 364326.300999999046326, 254956.281399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": "D9-8601-T010", "PARCEL_NAM": "EASE 'A'", "ACRE": ".073", "LONGITUDE": -64.87847758, "LATITUDE": 18.32341246, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.825860312, "SHAPE_Area": 908.46543480900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364364.107799999415874, 254977.414200000464916 ], [ 364364.16669999808073, 254978.47520000115037 ], [ 364377.824100002646446, 254976.471000000834465 ], [ 364370.734499998390675, 254956.781300000846386 ], [ 364366.004600003361702, 254944.076999999582767 ], [ 364365.241400003433228, 254939.00450000166893 ], [ 364365.458999998867512, 254913.463899999856949 ], [ 364353.427199997007847, 254905.977200001478195 ], [ 364345.414499998092651, 254900.000999998301268 ], [ 364364.107799999415874, 254977.414200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87901892, "LATITUDE": 18.32376472, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.075466998, "SHAPE_Area": 0.09952524629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364304.298500001430511, 254978.494899999350309 ], [ 364303.593800000846386, 254979.031399998813868 ], [ 364303.69200000166893, 254979.239100001752377 ], [ 364304.298500001430511, 254978.494899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-8608-T011", "PARCEL_NAM": "3G-28", "ACRE": "0.16", "LONGITUDE": -64.87882712, "LATITUDE": 18.32376547, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.232974961, "SHAPE_Area": 936.911942168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364326.300999999046326, 254956.281399998813868 ], [ 364322.966300003230572, 254958.748399998992682 ], [ 364319.949500001966953, 254964.758799999952316 ], [ 364318.781099997460842, 254967.086599998176098 ], [ 364315.228399999439716, 254970.172200001776218 ], [ 364304.298500001430511, 254978.494899999350309 ], [ 364303.69200000166893, 254979.239100001752377 ], [ 364312.896799996495247, 254998.707499999552965 ], [ 364315.554700002074242, 254997.492899999022484 ], [ 364326.067299999296665, 254993.99040000140667 ], [ 364346.957999996840954, 254981.000399999320507 ], [ 364328.405000001192093, 254958.799199998378754 ], [ 364326.300999999046326, 254956.281399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603038800", "MAP": "D9-8601-T010", "PARCEL_NAM": "33-141", "ACRE": ".168", "LONGITUDE": -64.87859768, "LATITUDE": 18.3236347, "OBJECTID_1": 38710, "PARCEL_NO_": "107603038800", "Tax_Legal_": "33-141 NADIR NO.2 RED HOOK QTR", "Name": "CASIMIR, RACHEL", "Address": "7615 Estate Brookman", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.236035418, "SHAPE_Area": 698.51256088900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364356.245899997651577, 254944.856199998408556 ], [ 364339.020700000226498, 254960.053100001066923 ], [ 364335.30179999768734, 254959.631999999284744 ], [ 364334.57599999755621, 254952.809999998658895 ], [ 364328.308700002729893, 254952.562100000679493 ], [ 364326.300999999046326, 254956.281399998813868 ], [ 364328.405000001192093, 254958.799199998378754 ], [ 364346.957999996840954, 254981.000399999320507 ], [ 364364.16669999808073, 254978.47520000115037 ], [ 364364.107799999415874, 254977.414200000464916 ], [ 364356.245899997651577, 254944.856199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092400", "MAP": "D9-6038-T96", "PARCEL_NAM": "3G-24", "ACRE": ".25", "LONGITUDE": -64.8802263, "LATITUDE": 18.32389379, "OBJECTID_1": 38241, "PARCEL_NO_": "107601092400", "Tax_Legal_": "3G-24 ESTATE MARIENDAHL NO.4 RED HOOK QUARTER", "Name": "FEVRIER, EVERSON", "Address": "PO Box 10305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.951758635, "SHAPE_Area": 1074.86537398 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364172.113799996674061, 254977.107200000435114 ], [ 364153.100900001823902, 254992.078400000929832 ], [ 364167.895900003612041, 255019.978700000792742 ], [ 364186.134800001978874, 255005.38399999961257 ], [ 364184.804399996995926, 254980.471200000494719 ], [ 364215.881300002336502, 254962.113299999386072 ], [ 364212.221699997782707, 254958.350600000470877 ], [ 364182.134199999272823, 254977.192200001329184 ], [ 364172.113799996674061, 254977.107200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "A9-835-T018", "PARCEL_NAM": "POR.D Of Rem 3G", "ACRE": "2.54", "LONGITUDE": -64.88011051, "LATITUDE": 18.32406507, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 782.09299505000001, "SHAPE_Area": 12743.2691161 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364236.296899996697903, 255023.924400001764297 ], [ 364247.980800002813339, 255007.916900001466274 ], [ 364251.505300000309944, 255009.613000001758337 ], [ 364245.110699996352196, 255017.495600000023842 ], [ 364254.324199996888638, 255025.792100001126528 ], [ 364270.210500001907349, 255019.497699998319149 ], [ 364285.602399997413158, 255011.179999999701977 ], [ 364301.970100000500679, 255003.700599998235703 ], [ 364301.771799996495247, 255003.601399999111891 ], [ 364273.796999998390675, 254967.709300000220537 ], [ 364269.334700003266335, 254976.733600001782179 ], [ 364262.480499997735023, 254984.496599998325109 ], [ 364254.877400003373623, 254988.571400001645088 ], [ 364243.118100002408028, 254987.557300001382828 ], [ 364235.818800002336502, 254982.612399999052286 ], [ 364215.881300002336502, 254962.113299999386072 ], [ 364184.804399996995926, 254980.471200000494719 ], [ 364186.134800001978874, 255005.38399999961257 ], [ 364167.895900003612041, 255019.978700000792742 ], [ 364153.100900001823902, 254992.078400000929832 ], [ 364172.113799996674061, 254977.107200000435114 ], [ 364182.134199999272823, 254977.192200001329184 ], [ 364212.221699997782707, 254958.350600000470877 ], [ 364208.802000001072884, 254954.834600001573563 ], [ 364197.719499997794628, 254947.769499998539686 ], [ 364176.8716000020504, 254934.478900000452995 ], [ 364173.792400002479553, 254960.617800001055002 ], [ 364127.452399998903275, 254958.894799999892712 ], [ 364126.810699999332428, 254965.03660000115633 ], [ 364124.291299998760223, 254978.50730000063777 ], [ 364123.329700000584126, 254990.480399999767542 ], [ 364122.751800000667572, 255012.41780000180006 ], [ 364123.196999996900558, 255026.921000000089407 ], [ 364127.447999998927116, 255073.247400000691414 ], [ 364132.444700002670288, 255086.66160000115633 ], [ 364139.119000002741814, 255091.898400001227856 ], [ 364144.602700002491474, 255092.352400001138449 ], [ 364167.328699998557568, 255075.017700001597404 ], [ 364181.026399999856949, 255062.148600000888109 ], [ 364192.457999996840954, 255053.914500001817942 ], [ 364211.358300000429153, 255043.522199999541044 ], [ 364224.841700002551079, 255034.935300000011921 ], [ 364236.296899996697903, 255023.924400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "C9-234-T79", "PARCEL_NAM": "3G", "ACRE": null, "LONGITUDE": -64.88072053, "LATITUDE": 18.32289546, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.464970776, "SHAPE_Area": 1030.8932612799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364101.461900003254414, 254874.508699998259544 ], [ 364106.034500002861023, 254883.644600000232458 ], [ 364113.688900001347065, 254890.030699998140335 ], [ 364120.54169999808073, 254900.049499999731779 ], [ 364124.823399998247623, 254906.948300000280142 ], [ 364144.811700001358986, 254878.516399998217821 ], [ 364148.571800000965595, 254872.758200000971556 ], [ 364135.771300002932549, 254867.86710000038147 ], [ 364124.160999998450279, 254863.430700000375509 ], [ 364101.461900003254414, 254874.508699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "C9-234-T79", "PARCEL_NAM": "3G", "ACRE": null, "LONGITUDE": -64.88092991000001, "LATITUDE": 18.3228713, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.833100113, "SHAPE_Area": 377.72857823300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364124.823399998247623, 254906.948300000280142 ], [ 364120.54169999808073, 254900.049499999731779 ], [ 364113.688900001347065, 254890.030699998140335 ], [ 364106.034500002861023, 254883.644600000232458 ], [ 364101.461900003254414, 254874.508699998259544 ], [ 364091.219400003552437, 254850.843499999493361 ], [ 364080.789800003170967, 254846.858199998736382 ], [ 364093.825000002980232, 254868.983199998736382 ], [ 364099.874499998986721, 254882.826200000941753 ], [ 364108.084299996495247, 254891.898699998855591 ], [ 364116.284400001168251, 254902.120400000363588 ], [ 364121.244599997997284, 254912.038800001144409 ], [ 364124.823399998247623, 254906.948300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-6432-T98", "PARCEL_NAM": "3G-27", "ACRE": ".25", "LONGITUDE": -64.88091056, "LATITUDE": 18.32332298, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.720490248, "SHAPE_Area": 959.64772639499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364121.244599997997284, 254912.038800001144409 ], [ 364119.583700001239777, 254908.717599999159575 ], [ 364079.729699999094009, 254928.104800000786781 ], [ 364090.068599998950958, 254946.557799998670816 ], [ 364091.01799999922514, 254948.252300001680851 ], [ 364126.624399997293949, 254929.057100001722574 ], [ 364126.525200001895428, 254927.449499998241663 ], [ 364126.22919999808073, 254922.653200000524521 ], [ 364121.244599997997284, 254912.038800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601072600", "MAP": "D9-6432-T98", "PARCEL_NAM": "3G-26", "ACRE": ".25", "LONGITUDE": -64.88101709, "LATITUDE": 18.32314908, "OBJECTID_1": 38191, "PARCEL_NO_": "107601072600", "Tax_Legal_": "3G-26 ESTATE BOVONI FRENCHMAN'S BAY QTR.", "Name": "NISBETT, JAMES & ETHLYN", "Address": "PO Box 304841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 182200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.132436356, "SHAPE_Area": 1054.8095402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364105.749499998986721, 254889.318500000983477 ], [ 364070.186700001358986, 254906.71000000089407 ], [ 364075.021600000560284, 254927.438499998301268 ], [ 364074.219899997115135, 254931.071199998259544 ], [ 364077.899099998176098, 254928.995299998670816 ], [ 364119.583700001239777, 254908.717599999159575 ], [ 364116.284400001168251, 254902.120400000363588 ], [ 364108.084299996495247, 254891.898699998855591 ], [ 364105.749499998986721, 254889.318500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "C9-234-T79", "PARCEL_NAM": "3G", "ACRE": null, "LONGITUDE": -64.88065545000001, "LATITUDE": 18.32498246, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.7187206754, "SHAPE_Area": 58.719998555899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364133.001599997282028, 255103.520199999213219 ], [ 364120.192400000989437, 255125.674400001764297 ], [ 364120.327899999916553, 255125.504900000989437 ], [ 364135.947499997913837, 255107.5945999994874 ], [ 364133.001599997282028, 255103.520199999213219 ] ] ], [ [ [ 364133.001599997282028, 255103.520199999213219 ], [ 364133.305500000715256, 255103.19649999961257 ], [ 364133.2820999994874, 255102.540899999439716 ], [ 364133.001599997282028, 255103.520199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601071000", "MAP": "D9-4621-T88", "PARCEL_NAM": "3G-10", "ACRE": ".26", "LONGITUDE": -64.88104602, "LATITUDE": 18.32379591, "OBJECTID_1": 38187, "PARCEL_NO_": "107601071000", "Tax_Legal_": "BOVONI 3G-10 FRENCHMAN BAY QTR.", "Name": "BELLOT, DOREEN", "Address": "PO BOX 673237", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 163400, "Improved_V": 286700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.10441788700001, "SHAPE_Area": 1084.19386629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364092.222800001502037, 254957.589400000870228 ], [ 364091.272399999201298, 254957.589400000870228 ], [ 364085.897699996829033, 254960.450699999928474 ], [ 364063.157499998807907, 254980.781399998813868 ], [ 364079.723200000822544, 254996.293000001460314 ], [ 364096.642399996519089, 254994.309799998998642 ], [ 364118.20719999819994, 254991.782000001519918 ], [ 364118.484300002455711, 254989.178599998354912 ], [ 364119.265600003302097, 254981.836800001561642 ], [ 364089.963799998164177, 254980.480200000107288 ], [ 364092.628700003027916, 254976.355099998414516 ], [ 364100.957500003278255, 254963.462699998170137 ], [ 364098.651600003242493, 254961.912200000137091 ], [ 364092.222800001502037, 254957.589400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601070100", "MAP": "F9-3723-T79", "PARCEL_NAM": "3G-1", "ACRE": ".22", "LONGITUDE": -64.87961744, "LATITUDE": 18.32422462, "OBJECTID_1": 38181, "PARCEL_NO_": "107601070100", "Tax_Legal_": "BOVONI 3G-1 FRENCHMAN BAY QTR.", "Name": "ALEXANDER (LIFE ESTATE), MARY", "Address": "PO Box 10866", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 152200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.045161164899994, "SHAPE_Area": 212.16862826799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364254.324199996888638, 255025.792100001126528 ], [ 364245.110699996352196, 255017.495600000023842 ], [ 364235.694200001657009, 255029.103100001811981 ], [ 364219.624099999666214, 255044.513799998909235 ], [ 364223.243000000715256, 255042.755800001323223 ], [ 364254.028599999845028, 255025.909200001507998 ], [ 364254.324199996888638, 255025.792100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "A9-835-T018", "PARCEL_NAM": "POR. Of REM 3G", "ACRE": "0.08", "LONGITUDE": -64.88090681, "LATITUDE": 18.32480655, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.383245864, "SHAPE_Area": 182.101959897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364073.288099996745586, 255093.260999999940395 ], [ 364131.762999996542931, 255095.897300001233816 ], [ 364104.917300000786781, 255088.458599999547005 ], [ 364073.288099996745586, 255093.260999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-4002-T86", "PARCEL_NAM": "3G-17", "ACRE": ".432", "LONGITUDE": -64.88084468, "LATITUDE": 18.32492006, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.99578057799999, "SHAPE_Area": 950.76235720099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364131.762999996542931, 255095.897300001233816 ], [ 364073.288099996745586, 255093.260999999940395 ], [ 364120.192400000989437, 255125.674400001764297 ], [ 364133.001599997282028, 255103.520199999213219 ], [ 364133.2820999994874, 255102.540899999439716 ], [ 364133.24379999935627, 255101.469200000166893 ], [ 364131.762999996542931, 255095.897300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "A9-835-T018", "PARCEL_NAM": "POR. A Of REM 3G", "ACRE": "0.18", "LONGITUDE": -64.88106983, "LATITUDE": 18.32506723, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.762883426, "SHAPE_Area": 2166.865735 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364055.240699999034405, 255077.368200000375509 ], [ 364064.903499998152256, 255094.827599998563528 ], [ 364068.9746999964118, 255110.795899998396635 ], [ 364068.630400002002716, 255126.899700000882149 ], [ 364068.963600002229214, 255136.607799999415874 ], [ 364071.807199999690056, 255144.272300001233816 ], [ 364077.581799998879433, 255149.277100000530481 ], [ 364090.991800002753735, 255154.42509999871254 ], [ 364103.57320000231266, 255146.467999998480082 ], [ 364120.192400000989437, 255125.674400001764297 ], [ 364073.288099996745586, 255093.260999999940395 ], [ 364070.89639999717474, 255074.519000001251698 ], [ 364055.240699999034405, 255077.368200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-3721-T86", "PARCEL_NAM": "3G-15", "ACRE": ".485", "LONGITUDE": -64.88105965, "LATITUDE": 18.32449169, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.956513298, "SHAPE_Area": 1984.4445946599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364048.972199998795986, 255050.482099998742342 ], [ 364055.240699999034405, 255077.368200000375509 ], [ 364070.89639999717474, 255074.519000001251698 ], [ 364123.926899999380112, 255065.516699999570847 ], [ 364123.636200003325939, 255062.306400001049042 ], [ 364121.520999997854233, 255038.947299998253584 ], [ 364121.394599996507168, 255037.551500000059605 ], [ 364048.972199998795986, 255050.482099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-4537-T88", "PARCEL_NAM": "3G-19", "ACRE": ".4115", "LONGITUDE": -64.88109393000001, "LATITUDE": 18.32426534, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.00128863399999, "SHAPE_Area": 1693.43151287 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364046.453699998557568, 255028.202500000596046 ], [ 364048.972199998795986, 255050.482099998742342 ], [ 364121.394599996507168, 255037.551500000059605 ], [ 364118.114699997007847, 255016.676399998366833 ], [ 364118.023000001907349, 255013.800900001078844 ], [ 364046.476899996399879, 255028.199200000613928 ], [ 364046.453699998557568, 255028.202500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107601050400", "MAP": "A9-835-T018", "PARCEL_NAM": "ROW 3G-R3", "ACRE": null, "LONGITUDE": -64.8814987, "LATITUDE": 18.32451143, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.88820836299999, "SHAPE_Area": 745.90840446300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364064.989500001072884, 255095.16499999910593 ], [ 364064.903499998152256, 255094.827599998563528 ], [ 364055.240699999034405, 255077.368200000375509 ], [ 364054.063299998641014, 255072.318300001323223 ], [ 364051.111000001430511, 255070.72859999909997 ], [ 364038.850000001490116, 255052.479699999094009 ], [ 364038.076300002634525, 255051.328099999576807 ], [ 364035.651199996471405, 255044.8108000010252 ], [ 364034.741800002753735, 255037.535599999129772 ], [ 364035.499700002372265, 255034.049600001424551 ], [ 364037.924699999392033, 255031.927700001746416 ], [ 364040.349799998104572, 255031.169900000095367 ], [ 364040.148500002920628, 255029.106699999421835 ], [ 364039.743500001728535, 255024.955600000917912 ], [ 364024.2837999984622, 255026.925999999046326 ], [ 364024.563799999654293, 255031.188000001013279 ], [ 364025.193199999630451, 255036.777800001204014 ], [ 364025.782799996435642, 255046.063999999314547 ], [ 364025.890500001609325, 255046.464000001549721 ], [ 364033.226199999451637, 255057.542399998754263 ], [ 364042.664499998092651, 255077.533399999141693 ], [ 364049.036100000143051, 255085.640799999237061 ], [ 364057.078299999237061, 255092.729899998754263 ], [ 364058.116499997675419, 255095.842599999159575 ], [ 364064.989500001072884, 255095.16499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601054300", "MAP": "D9-6093-T96", "PARCEL_NAM": "3G-23", "ACRE": "0.25", "LONGITUDE": -64.88181565, "LATITUDE": 18.32442691, "OBJECTID_1": 38117, "PARCEL_NO_": "107601054300", "Tax_Legal_": "3G-23 ESTATE BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "BRADE, ROMUALD & MARIA", "Address": "574 Alabama Ave", "City": "Brooklyn", "State": "New York", "Zip": 11207, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.280462298, "SHAPE_Area": 814.37768111499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364028.107699997723103, 255054.69539999961853 ], [ 364023.343400001525879, 255037.007599998265505 ], [ 363983.748800002038479, 255041.926899999380112 ], [ 363991.093599997460842, 255055.820099998265505 ], [ 363994.728399999439716, 255062.695599999278784 ], [ 364030.159999996423721, 255057.915199998766184 ], [ 364028.107699997723103, 255054.69539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601092000", "MAP": "D9-5568-T93", "PARCEL_NAM": "3G-20", "ACRE": ".25", "LONGITUDE": -64.88164201, "LATITUDE": 18.32479841, "OBJECTID_1": 38237, "PARCEL_NO_": "107601092000", "Tax_Legal_": "3G-20 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "COKER, CALVIN & CAROLETTE", "Address": "PO Box 9596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 229600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.500089492, "SHAPE_Area": 1025.73672461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364049.036100000143051, 255085.640799999237061 ], [ 364042.801500000059605, 255077.707699999213219 ], [ 363998.214400000870228, 255084.824200000613928 ], [ 363999.605499997735023, 255094.561700001358986 ], [ 364000.9425999969244, 255103.921599999070168 ], [ 364058.176399998366833, 255096.022100001573563 ], [ 364057.435999996960163, 255093.802299998700619 ], [ 364057.078299999237061, 255092.729899998754263 ], [ 364049.036100000143051, 255085.640799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601055200", "MAP": "D9-6093-T96", "PARCEL_NAM": "3G-22", "ACRE": ".25", "LONGITUDE": -64.88174409, "LATITUDE": 18.32461805, "OBJECTID_1": 38119, "PARCEL_NO_": "107601055200", "Tax_Legal_": "3G-22 ESTATE BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "LIMA SR., JOSE R.", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.59894954500001, "SHAPE_Area": 1009.49913756 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364042.664499998092651, 255077.533399999141693 ], [ 364033.226199999451637, 255057.542399998754263 ], [ 364030.159999996423721, 255057.915199998766184 ], [ 363994.728399999439716, 255062.695599999278784 ], [ 363986.661499999463558, 255063.6064000017941 ], [ 363986.998499996960163, 255064.211300000548363 ], [ 363992.203900001943111, 255073.777899999171495 ], [ 363998.214400000870228, 255084.824200000613928 ], [ 364042.801500000059605, 255077.707699999213219 ], [ 364042.664499998092651, 255077.533399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601070800", "MAP": "D9-2869-T84", "PARCEL_NAM": "3G-8", "ACRE": ".23", "LONGITUDE": -64.88109443, "LATITUDE": 18.32290017, "OBJECTID_1": 38186, "PARCEL_NO_": "107601070800", "Tax_Legal_": "EST. BOVONI 3G-8 FRENCHMAN BAY QTR.", "Name": "CLINE, ADELINE", "Address": "PO Box 9236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 174200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.64723231799999, "SHAPE_Area": 859.70739167900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364088.144799999892712, 254859.342099998146296 ], [ 364066.462999999523163, 254875.630300000309944 ], [ 364080.697400003671646, 254901.569899998605251 ], [ 364105.749499998986721, 254889.318500000983477 ], [ 364099.874499998986721, 254882.826200000941753 ], [ 364093.825000002980232, 254868.983199998736382 ], [ 364088.144799999892712, 254859.342099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "A9-846-T019", "PARCEL_NAM": "CONS NORTHERN POR. REM 3G", "ACRE": "24.99", "LONGITUDE": -64.8830393, "LATITUDE": 18.32631071, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1565.91828749, "SHAPE_Area": 106952.036097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364063.156300000846386, 255110.953099999576807 ], [ 364058.176399998366833, 255096.022100001573563 ], [ 364000.9425999969244, 255103.921599999070168 ], [ 363999.605499997735023, 255094.561700001358986 ], [ 363998.214400000870228, 255084.824200000613928 ], [ 363992.203900001943111, 255073.777899999171495 ], [ 363986.998499996960163, 255064.211300000548363 ], [ 363982.285899996757507, 255055.752700001001358 ], [ 363981.32379999756813, 255054.025800000876188 ], [ 363975.176399998366833, 255042.991999998688698 ], [ 363978.361000001430511, 255042.5962999984622 ], [ 364003.411700002849102, 255039.484000001102686 ], [ 363898.512199997901917, 254986.936900001019239 ], [ 363815.51690000295639, 255132.217099998146296 ], [ 363776.555900000035763, 255200.416900001466274 ], [ 363718.101599998772144, 255302.738899998366833 ], [ 363634.53999999910593, 255362.931499999016523 ], [ 363639.898299999535084, 255366.654100000858307 ], [ 363662.379699997603893, 255378.026000000536442 ], [ 363671.191600002348423, 255384.853100001811981 ], [ 363677.622299998998642, 255387.227800000458956 ], [ 363687.292700000107288, 255387.940200001001358 ], [ 363695.319799996912479, 255392.227800000458956 ], [ 363710.571400001645088, 255400.374200001358986 ], [ 363712.977799996733665, 255401.871500000357628 ], [ 363719.386900000274181, 255406.779100000858307 ], [ 363725.792499996721745, 255412.108899999409914 ], [ 363737.840400002896786, 255417.695900000631809 ], [ 363749.083800002932549, 255423.06529999896884 ], [ 363753.898299999535084, 255425.848900001496077 ], [ 363779.567299999296665, 255441.679900001734495 ], [ 363805.193000003695488, 255462.576799999922514 ], [ 363819.580799996852875, 255477.471099998801947 ], [ 363836.35869999974966, 255495.762499999254942 ], [ 363845.12389999628067, 255508.0777000002563 ], [ 363853.887199997901917, 255520.603900000452995 ], [ 363857.852200001478195, 255528.446800000965595 ], [ 363864.221799999475479, 255537.998199999332428 ], [ 363867.389499999582767, 255544.779100000858307 ], [ 363873.073299996554852, 255540.181600000709295 ], [ 363938.838799998164177, 255392.743200000375509 ], [ 363951.154700003564358, 255366.87950000166893 ], [ 363958.523000001907349, 255353.852000001817942 ], [ 363965.896700002253056, 255340.191300000995398 ], [ 363968.347999997437, 255336.411699999123812 ], [ 363974.098200000822544, 255324.004200000315905 ], [ 363981.471900001168251, 255310.343499999493361 ], [ 363999.498499996960163, 255276.716099999845028 ], [ 364009.348700001835823, 255256.320599999278784 ], [ 364011.796400003135204, 255252.963100001215935 ], [ 364017.552100002765656, 255239.922400001436472 ], [ 364032.268899999558926, 255216.189300000667572 ], [ 364038.827299997210503, 255203.577399998903275 ], [ 364055.160300001502037, 255179.435300000011921 ], [ 364059.073700003325939, 255176.245700001716614 ], [ 364069.776399999856949, 255167.522599998861551 ], [ 364079.502499997615814, 255161.691599998623133 ], [ 364086.954099997878075, 255156.978799998760223 ], [ 364080.444600000977516, 255154.670299999415874 ], [ 364073.196599997580051, 255151.924400001764297 ], [ 364068.251199997961521, 255147.133099999278784 ], [ 364064.985200002789497, 255140.291000001132488 ], [ 364063.672799997031689, 255123.553700000047684 ], [ 364063.156300000846386, 255110.953099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601070300", "MAP": "D9-2410-T83", "PARCEL_NAM": "3G-3", "ACRE": "2.07", "LONGITUDE": -64.88206048000001, "LATITUDE": 18.32357201, "OBJECTID_1": 38183, "PARCEL_NO_": "107601070300", "Tax_Legal_": "3G-3 BOVONI FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE RAMON", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 118500, "Improved_V": 214200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.306150387, "SHAPE_Area": 8457.4194456299992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364050.410499997437, 254941.839899998158216 ], [ 363940.741800002753735, 254903.834699999541044 ], [ 363925.166400000452995, 254935.709300000220537 ], [ 363914.972800001502037, 254956.569899998605251 ], [ 363909.906499996781349, 254966.938000001013279 ], [ 364010.502999998629093, 255003.130499999970198 ], [ 364018.123000003397465, 254997.20380000025034 ], [ 364021.887100003659725, 254994.160799998790026 ], [ 364023.205099999904633, 254993.095400001853704 ], [ 364043.657600000500679, 254976.561299998313189 ], [ 364046.197599999606609, 254975.132500000298023 ], [ 364050.483800001442432, 254967.829999998211861 ], [ 364051.753799997270107, 254963.067499998956919 ], [ 364051.436300002038479, 254949.891199998557568 ], [ 364050.410499997437, 254941.839899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701043000", "MAP": "D9-5264-T92", "PARCEL_NAM": "19-2-17", "ACRE": ".240", "LONGITUDE": -64.85918912, "LATITUDE": 18.33026789, "OBJECTID_1": 39360, "PARCEL_NO_": "107701043000", "Tax_Legal_": "SMITH BAY ESTATE 19-2-17 RED HOOK QUARTER", "Name": "BLAIZE, AGNES", "Address": "PO Box 10362", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24500, "Improved_V": 14700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.327296988, "SHAPE_Area": 778.94281744299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366414.593099996447563, 255722.638399999588728 ], [ 366409.000200003385544, 255701.186799999326468 ], [ 366394.785999998450279, 255706.263999998569489 ], [ 366374.597599998116493, 255709.687399998307228 ], [ 366376.030500002205372, 255730.808499999344349 ], [ 366414.593099996447563, 255722.638399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701043100", "MAP": "D9-5264-T92", "PARCEL_NAM": "19-2-16", "ACRE": ".319", "LONGITUDE": -64.85881948, "LATITUDE": 18.33018495, "OBJECTID_1": 39361, "PARCEL_NO_": "107701043100", "Tax_Legal_": "SMITH BAY ESTATE 19-2-16 EAST END QUARTER", "Name": "POLEON, VALERIE", "Address": "7146 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38600, "Improved_V": 197000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.712055695, "SHAPE_Area": 1050.61925077 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366455.986699998378754, 255716.053100001066923 ], [ 366448.146499998867512, 255689.813299998641014 ], [ 366435.207699999213219, 255694.140399999916553 ], [ 366415.006800003349781, 255699.041299998760223 ], [ 366409.000200003385544, 255701.186799999326468 ], [ 366414.593099996447563, 255722.638399999588728 ], [ 366422.07660000026226, 255721.05290000140667 ], [ 366446.276699997484684, 255719.984400000423193 ], [ 366455.986699998378754, 255716.053100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107603037400", "MAP": "D9-6858-T000", "PARCEL_NAM": "33-135", "ACRE": ".23", "LONGITUDE": -64.87946963, "LATITUDE": 18.32006244, "OBJECTID_1": 38696, "PARCEL_NO_": "107603037400", "Tax_Legal_": "33-135 ESTATE NADIR #2 RED HOOK QTR", "Name": "LAURENCE, DOMINIC & JOSEPH, MARILY", "Address": "PO Box 7941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.731849289, "SHAPE_Area": 944.521245196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364242.482799999415874, 254555.849700000137091 ], [ 364242.677599996328354, 254595.367400001734495 ], [ 364244.000299997627735, 254593.929699998348951 ], [ 364254.190099999308586, 254581.394900001585484 ], [ 364269.961400002241135, 254574.241399999707937 ], [ 364285.455399997532368, 254568.907400000840425 ], [ 364291.670699998736382, 254568.342799998819828 ], [ 364287.273599997162819, 254562.470899999141693 ], [ 364276.553099997341633, 254558.943500000983477 ], [ 364265.286300003528595, 254556.318199999630451 ], [ 364254.008799999952316, 254554.959300000220537 ], [ 364244.32940000295639, 254555.302299998700619 ], [ 364242.482799999415874, 254555.849700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107702023900", "MAP": "D9-8456-T010", "PARCEL_NAM": "17B-1-A", "ACRE": ".009", "LONGITUDE": -64.85080886, "LATITUDE": 18.32646175, "OBJECTID_1": 39550, "PARCEL_NO_": "107702023900", "Tax_Legal_": "R.O.W. 17B-1-A SMITH BAY NO.1,2&3 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.942547446199999, "SHAPE_Area": 35.383981169499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367278.106600001454353, 255303.238699998706579 ], [ 367290.222800001502037, 255307.195500001311302 ], [ 367281.403499998152256, 255298.474599998444319 ], [ 367278.106600001454353, 255303.238699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107702023300", "MAP": "D9-7959-T007", "PARCEL_NAM": "17B REM", "ACRE": "3.937", "LONGITUDE": -64.85010542000001, "LATITUDE": 18.32782186, "OBJECTID_1": 39545, "PARCEL_NO_": "107702023300", "Tax_Legal_": "SMITH BAY ESTATE 17B RED HOOK QUARTER", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 529300, "Improved_V": 9101100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 607.37357334499995, "SHAPE_Area": 14021.013072899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367381.94030000269413, 255575.825399998575449 ], [ 367395.392800003290176, 255574.048700001090765 ], [ 367404.934900000691414, 255572.788499999791384 ], [ 367408.653899997472763, 255559.389899998903275 ], [ 367411.3378000035882, 255549.719999998807907 ], [ 367413.236299999058247, 255538.771899998188019 ], [ 367415.578000001609325, 255525.267799999564886 ], [ 367416.555100001394749, 255505.221900001168251 ], [ 367411.954599998891354, 255477.319899998605251 ], [ 367404.098300002515316, 255452.979899998754263 ], [ 367398.560199998319149, 255440.480000000447035 ], [ 367391.413000002503395, 255427.544799998402596 ], [ 367389.809399999678135, 255426.476199999451637 ], [ 367386.629100002348423, 255421.172899998724461 ], [ 367384.226400002837181, 255419.253299999982119 ], [ 367383.436200000345707, 255417.346999999135733 ], [ 367373.053099997341633, 255405.651900000870228 ], [ 367370.646700002253056, 255404.154599998146296 ], [ 367362.655500002205372, 255395.645399998873472 ], [ 367361.048299998044968, 255394.999000001698732 ], [ 367337.836099997162819, 255374.755100000649691 ], [ 367337.042300000786781, 255373.271000001579523 ], [ 367335.435099996626377, 255372.624499998986721 ], [ 367326.644799999892712, 255363.264499999582767 ], [ 367318.145099997520447, 255350.246800001710653 ], [ 367313.316899999976158, 255349.059999998658895 ], [ 367310.506499998271465, 255348.636199999600649 ], [ 367307.288900002837181, 255348.808100000023842 ], [ 367284.088899999856949, 255358.597100000828505 ], [ 367281.652900002896786, 255361.373199999332428 ], [ 367279.814599998295307, 255364.753699999302626 ], [ 367278.98650000244379, 255367.543600000441074 ], [ 367278.955399997532368, 255371.139600001275539 ], [ 367279.737000003457069, 255373.743599999696016 ], [ 367284.127599999308586, 255377.377700001001358 ], [ 367292.110200002789497, 255384.039799999445677 ], [ 367281.35080000013113, 255396.333799999207258 ], [ 367305.695200003683567, 255416.922699999064207 ], [ 367291.382200002670288, 255435.604800000786781 ], [ 367362.05629999935627, 255492.219999998807907 ], [ 367369.593599997460842, 255545.5608000010252 ], [ 367373.579599998891354, 255576.92960000038147 ], [ 367381.94030000269413, 255575.825399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107702023800", "MAP": "A9-720-T007", "PARCEL_NAM": "17F", "ACRE": "25.505", "LONGITUDE": -64.85239783, "LATITUDE": 18.33144745, "OBJECTID_1": 39549, "PARCEL_NO_": "107702023800", "Tax_Legal_": "17F SMITH BAY RED HOOK QTR", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 985100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2216.1381042899998, "SHAPE_Area": 90062.595682700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367334.515500001609325, 255732.99549999833107 ], [ 367317.432199999690056, 255706.169399999082088 ], [ 367360.824000000953674, 255685.531899999827147 ], [ 367363.866700001060963, 255682.753699999302626 ], [ 367373.391699999570847, 255637.245299998670816 ], [ 367373.656300000846386, 255628.249499998986721 ], [ 367392.749799996614456, 255629.514400001615286 ], [ 367391.650499999523163, 255629.274399999529123 ], [ 367391.600699998438358, 255629.057100001722574 ], [ 367389.855400003492832, 255628.98589999973774 ], [ 367386.997900001704693, 255627.080899998545647 ], [ 367384.934199996292591, 255621.207100000232458 ], [ 367382.394199997186661, 255611.840799998492002 ], [ 367378.130800001323223, 255601.839800000190735 ], [ 367376.824500001966953, 255602.79619999974966 ], [ 367372.742799997329712, 255609.996100001037121 ], [ 367371.628700003027916, 255635.932700000703335 ], [ 367363.752999998629093, 255676.2027000002563 ], [ 367362.729000002145767, 255681.073499999940395 ], [ 367360.418499998748302, 255683.330600000917912 ], [ 367335.112800002098083, 255695.473499998450279 ], [ 367333.16330000013113, 255693.830099999904633 ], [ 367333.507399998605251, 255691.881299998611212 ], [ 367335.858300000429153, 255676.631599999964237 ], [ 367338.014899998903275, 255662.642599999904633 ], [ 367336.113200001418591, 255655.469399999827147 ], [ 367330.887900002300739, 255627.436000000685453 ], [ 367329.857600003480911, 255621.908599998801947 ], [ 367327.653999999165535, 255611.804999999701977 ], [ 367332.672600001096725, 255599.161400001496077 ], [ 367341.014300003647804, 255580.690900001674891 ], [ 367350.005000002682209, 255562.8766999989748 ], [ 367354.643500000238419, 255544.847100000828505 ], [ 367356.101000003516674, 255539.181800000369549 ], [ 367359.657700002193451, 255506.356300000101328 ], [ 367359.182899996638298, 255490.02419999986887 ], [ 367353.661899998784065, 255485.601500000804663 ], [ 367265.340199999511242, 255414.849199999123812 ], [ 367266.316699996590614, 255424.833299998193979 ], [ 367267.901600003242493, 255443.632500000298023 ], [ 367268.130199998617172, 255445.72239999845624 ], [ 367274.511799998581409, 255504.060400001704693 ], [ 367276.027300000190735, 255515.471900001168251 ], [ 367279.780199997127056, 255548.222100000828505 ], [ 367276.95830000191927, 255548.414099998772144 ], [ 367277.997699998319149, 255549.072399999946356 ], [ 367274.020900003612041, 255564.184200000017881 ], [ 367287.542000003159046, 255667.580899998545647 ], [ 367254.136900000274181, 255687.464899998158216 ], [ 367238.229699999094009, 255704.962799999862909 ], [ 367204.029200002551079, 255771.772999998182058 ], [ 367124.493299998342991, 255816.313200000673532 ], [ 367059.273800000548363, 255821.085299998521805 ], [ 367010.756899997591972, 255842.559999998658895 ], [ 366834.186999998986721, 255976.97580000013113 ], [ 366990.46339999884367, 256122.733600001782179 ], [ 367022.736299999058247, 256094.117199998348951 ], [ 367043.030699998140335, 256078.240200001746416 ], [ 367061.683799996972084, 256065.727299999445677 ], [ 367077.939499996602535, 256050.66160000115633 ], [ 367091.765500001609325, 256036.842500001192093 ], [ 367097.474500000476837, 256029.289900001138449 ], [ 367099.909599997103214, 256027.410000000149012 ], [ 367106.433799996972084, 256018.808600001037121 ], [ 367108.868900001049042, 256016.928599998354912 ], [ 367109.691399998962879, 256015.035500001162291 ], [ 367121.087700001895428, 256002.463199999183416 ], [ 367121.910199999809265, 256000.570099998265505 ], [ 367124.345299996435642, 255998.690200001001358 ], [ 367130.871299996972084, 255989.877700001001358 ], [ 367134.121799997985363, 255986.949000000953674 ], [ 367170.830200001597404, 255937.43129999935627 ], [ 367176.55349999666214, 255928.190000001341105 ], [ 367182.312799997627735, 255914.727200001478195 ], [ 367186.452200002968311, 255902.095499999821186 ], [ 367188.179899998009205, 255888.599599998444319 ], [ 367188.282399997115135, 255876.56810000166297 ], [ 367191.649700000882149, 255859.919300001114607 ], [ 367198.236900001764297, 255843.930100001394749 ], [ 367210.479000002145767, 255826.720600001513958 ], [ 367233.242799997329712, 255804.953200001269579 ], [ 367334.515500001609325, 255732.99549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107702023600", "MAP": "D9-7508-T005", "PARCEL_NAM": "17E", "ACRE": "1.142", "LONGITUDE": -64.85013105, "LATITUDE": 18.3294088, "OBJECTID_1": 39547, "PARCEL_NO_": "107702023600", "Tax_Legal_": "17E ESTATE SMITH BAY No.1,2&3 EAST END QTR.", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 118800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.58193290700001, "SHAPE_Area": 4003.6016311100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367373.17790000140667, 255597.644000001251698 ], [ 367373.579599998891354, 255576.92960000038147 ], [ 367342.313100002706051, 255578.379799999296665 ], [ 367341.146600000560284, 255580.690900001674891 ], [ 367332.804899998009205, 255599.161400001496077 ], [ 367327.786300003528595, 255611.804999999701977 ], [ 367329.989900000393391, 255621.908599998801947 ], [ 367331.020199999213219, 255627.436000000685453 ], [ 367336.24549999833107, 255655.469399999827147 ], [ 367338.147200003266335, 255662.642599999904633 ], [ 367335.990599997341633, 255676.631599999964237 ], [ 367333.639700002968311, 255691.881299998611212 ], [ 367333.29559999704361, 255693.830099999904633 ], [ 367335.245099999010563, 255695.473499998450279 ], [ 367360.550800003111362, 255683.330600000917912 ], [ 367362.861299999058247, 255681.073499999940395 ], [ 367363.885300002992153, 255676.2027000002563 ], [ 367371.760999999940395, 255635.932700000703335 ], [ 367372.875100001692772, 255609.996100001037121 ], [ 367376.956799998879433, 255602.79619999974966 ], [ 367378.263099998235703, 255601.839800000190735 ], [ 367375.858999997377396, 255598.505800001323223 ], [ 367373.17790000140667, 255597.644000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107702023400", "MAP": "D9-7508-T005", "PARCEL_NAM": "17C", "ACRE": ".378", "LONGITUDE": -64.84979219, "LATITUDE": 18.32909412, "OBJECTID_1": 39546, "PARCEL_NO_": "107702023400", "Tax_Legal_": "17C ESTATE SMITH BAY 1,2&3 EAST END QTR.", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 38700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.662557701, "SHAPE_Area": 1044.4336522900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367402.877899996936321, 255580.199799999594688 ], [ 367404.934900000691414, 255572.788499999791384 ], [ 367395.392800003290176, 255574.048700001090765 ], [ 367381.94030000269413, 255575.825399998575449 ], [ 367373.579599998891354, 255576.92960000038147 ], [ 367373.17790000140667, 255597.644000001251698 ], [ 367375.858999997377396, 255598.505800001323223 ], [ 367378.263099998235703, 255601.839800000190735 ], [ 367382.526500001549721, 255611.840799998492002 ], [ 367385.066500000655651, 255621.207100000232458 ], [ 367387.130199998617172, 255627.080899998545647 ], [ 367389.987700000405312, 255628.98589999973774 ], [ 367391.733000002801418, 255629.057100001722574 ], [ 367391.782799996435642, 255629.274399999529123 ], [ 367392.882100000977516, 255629.514400001615286 ], [ 367392.942299999296665, 255629.106499999761581 ], [ 367395.487400002777576, 255611.862799998372793 ], [ 367400.523100003600121, 255588.683800000697374 ], [ 367402.877899996936321, 255580.199799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107702023700", "MAP": "D9-7508-T005", "PARCEL_NAM": "17D", "ACRE": ".236", "LONGITUDE": -64.85005383, "LATITUDE": 18.32868364, "OBJECTID_1": 39548, "PARCEL_NO_": "107702023700", "Tax_Legal_": "17D SMITH BAY RED HOOK QTR", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.49271599799999, "SHAPE_Area": 1120.29539731 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367359.315200001001358, 255490.02419999986887 ], [ 367359.78999999910593, 255506.356300000101328 ], [ 367356.233300000429153, 255539.181800000369549 ], [ 367354.775799997150898, 255544.847100000828505 ], [ 367350.137299999594688, 255562.8766999989748 ], [ 367342.313100002706051, 255578.379799999296665 ], [ 367373.579599998891354, 255576.92960000038147 ], [ 367369.593599997460842, 255545.5608000010252 ], [ 367369.056500002741814, 255541.759399998933077 ], [ 367362.05629999935627, 255492.219999998807907 ], [ 367359.315200001001358, 255490.02419999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107702023300", "MAP": "D9-7959-T007", "PARCEL_NAM": "17B-1", "ACRE": "1.46", "LONGITUDE": -64.85082656, "LATITUDE": 18.32701131, "OBJECTID_1": 39545, "PARCEL_NO_": "107702023300", "Tax_Legal_": "SMITH BAY ESTATE 17B RED HOOK QUARTER", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 529300, "Improved_V": 9101100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 356.505812838, "SHAPE_Area": 3839.9316184300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367290.222800001502037, 255307.195500001311302 ], [ 367278.106600001454353, 255303.238699998706579 ], [ 367257.555500000715256, 255332.934799998998642 ], [ 367259.031400002539158, 255348.989999998360872 ], [ 367265.472499996423721, 255414.849199999123812 ], [ 367291.382200002670288, 255435.604800000786781 ], [ 367305.695200003683567, 255416.922699999064207 ], [ 367281.35080000013113, 255396.333799999207258 ], [ 367292.110200002789497, 255384.039799999445677 ], [ 367284.127599999308586, 255377.377700001001358 ], [ 367279.737000003457069, 255373.743599999696016 ], [ 367278.955399997532368, 255371.139600001275539 ], [ 367278.98650000244379, 255367.543600000441074 ], [ 367279.814599998295307, 255364.753699999302626 ], [ 367281.652900002896786, 255361.373199999332428 ], [ 367284.088899999856949, 255358.597100000828505 ], [ 367307.288900002837181, 255348.808100000023842 ], [ 367310.506499998271465, 255348.636199999600649 ], [ 367313.316899999976158, 255349.059999998658895 ], [ 367318.145099997520447, 255350.246800001710653 ], [ 367296.605800002813339, 255317.258699998259544 ], [ 367292.417499996721745, 255310.844200000166893 ], [ 367290.222800001502037, 255307.195500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85270402, "LATITUDE": 18.32626771, "OBJECTID_1": 39474, "PARCEL_NO_": "107702012500", "Tax_Legal_": "SMITH BAY ESTATE 18-14 1,2&3 EASTEND", "Name": "KNIGHT, DEAN & CLYDE & DENISE GRANT", "Address": "PO Box 6292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62200, "Improved_V": 253400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.01458339199999, "SHAPE_Area": 1123.9579224500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367071.069399997591972, 255291.972600001841784 ], [ 367071.865800000727177, 255308.772199999541044 ], [ 367105.55799999833107, 255285.250199999660254 ], [ 367094.404500000178814, 255269.326900001615286 ], [ 367088.009700000286102, 255262.730700001120567 ], [ 367082.399700000882149, 255258.6739999987185 ], [ 367071.211999997496605, 255246.761199999600649 ], [ 367071.069399997591972, 255291.972600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702012600", "MAP": "D9-368-T89", "PARCEL_NAM": "E of TRACT 1", "ACRE": "3.54", "LONGITUDE": -64.85963845000001, "LATITUDE": 18.32249597, "OBJECTID_1": 39475, "PARCEL_NO_": "107702012600", "Tax_Legal_": "NAZARETH ESTATE TRACK A OF 1&2 RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 630900, "Improved_V": 8800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 493.09602293199998, "SHAPE_Area": 14293.3944309 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366299.441699996590614, 254900.428300000727177 ], [ 366398.832699999213219, 254948.629200000315905 ], [ 366405.792400002479553, 254785.041999999433756 ], [ 366311.745600000023842, 254790.16440000012517 ], [ 366296.346699997782707, 254791.192899998277426 ], [ 366299.441699996590614, 254900.428300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038200", "MAP": "C3-51-T45", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8554809, "LATITUDE": 18.32621038, "OBJECTID_1": 39321, "PARCEL_NO_": "107701038200", "Tax_Legal_": "NAZARETH PARCEL \"N\" OF TRACT 1 NO.1 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2417600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1638.3458258799999, "SHAPE_Area": 100818.38570100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366509.175899997353554, 255129.486000001430511 ], [ 366498.748000003397465, 255289.661100000143051 ], [ 366865.784699998795986, 255318.329300001263618 ], [ 366871.085400000214577, 255358.691500000655651 ], [ 366878.684600003063679, 255413.215900000184774 ], [ 366883.895400002598763, 255464.132100000977516 ], [ 367072.755999997258186, 255444.146299999207258 ], [ 367078.259800001978874, 255443.656800001859665 ], [ 367077.181400001049042, 255420.907600000500679 ], [ 367074.557300001382828, 255365.55180000141263 ], [ 367074.163900002837181, 255357.253199998289347 ], [ 367073.026600003242493, 255333.259199999272823 ], [ 367071.865800000727177, 255308.772199999541044 ], [ 367071.069399997591972, 255291.972600001841784 ], [ 367057.776199996471405, 255293.974199999123812 ], [ 367029.5962999984622, 255298.217300001531839 ], [ 366710.328599996864796, 255108.707600001245737 ], [ 366509.175899997353554, 255129.486000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702030100", "MAP": "A9-537-T99", "PARCEL_NAM": "M-18", "ACRE": ".32", "LONGITUDE": -64.85290003, "LATITUDE": 18.32834705, "OBJECTID_1": 39552, "PARCEL_NO_": "107702030100", "Tax_Legal_": "NAZARETH ESTATE LOT M-18 No.1 REDHOOK QTR", "Name": "CALLWOOD, ALICIA", "Address": "PO Box 8581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.731114969, "SHAPE_Area": 1413.0939435400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367080.90429999679327, 255528.8614999987185 ], [ 367082.309900000691414, 255529.096900001168251 ], [ 367080.455399997532368, 255489.975900001823902 ], [ 367077.201899997889996, 255490.201099999248981 ], [ 367058.638700000941753, 255492.160100001841784 ], [ 367028.654100000858307, 255509.646499998867512 ], [ 367031.037000000476837, 255513.887899998575449 ], [ 367030.189400002360344, 255518.736099999397993 ], [ 367080.90429999679327, 255528.8614999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702030200", "MAP": "A9-537-T99", "PARCEL_NAM": "M-19", "ACRE": ".30", "LONGITUDE": -64.85291604, "LATITUDE": 18.32808144, "OBJECTID_1": 39553, "PARCEL_NO_": "107702030200", "Tax_Legal_": "NAZARETH ESTATE LOT M-19 No.1 REDHOOK QTR", "Name": "CLARK, MONIQUE R", "Address": "PO Box 1546", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 49200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.05854340900001, "SHAPE_Area": 1232.1302343299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367079.019100002944469, 255459.674699999392033 ], [ 367074.23369999974966, 255459.99040000140667 ], [ 367045.179499998688698, 255462.918999999761581 ], [ 367047.384499996900558, 255488.057199999690056 ], [ 367023.848600000143051, 255505.807500001043081 ], [ 367027.061200000345707, 255507.3114 ], [ 367028.654100000858307, 255509.646499998867512 ], [ 367058.638700000941753, 255492.160100001841784 ], [ 367077.201899997889996, 255490.201099999248981 ], [ 367080.455399997532368, 255489.975900001823902 ], [ 367079.730800002813339, 255474.689599998295307 ], [ 367079.019100002944469, 255459.674699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702011900", "MAP": "B9-135-T66", "PARCEL_NAM": "18-6", "ACRE": null, "LONGITUDE": -64.85170567, "LATITUDE": 18.32698796, "OBJECTID_1": 39469, "PARCEL_NO_": "107702011900", "Tax_Legal_": "SMITH BAY ESTATE 18-6 1,2&3 EASTEND QTR.", "Name": "SUNSHINE PROPERTIES GROUP, LLC", "Address": "92 Canopy Oak Ln", "City": "Ponte Vedra", "State": "Florida", "Zip": 32081, "Country": "United States", "Land_Value": 58800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.19798731099999, "SHAPE_Area": 1440.8551761399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367201.907200001180172, 255333.964200001209974 ], [ 367168.79280000180006, 255340.229899998754263 ], [ 367174.219400003552437, 255365.816599998623133 ], [ 367176.456699997186661, 255387.1554000005126 ], [ 367204.713600002229214, 255383.164799999445677 ], [ 367202.449299998581409, 255364.992199998348951 ], [ 367201.878499999642372, 255337.334300000220537 ], [ 367201.907200001180172, 255333.964200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702012300", "MAP": "B9-135-T66", "PARCEL_NAM": "18-8", "ACRE": ".39", "LONGITUDE": -64.85175296, "LATITUDE": 18.32623253, "OBJECTID_1": 39473, "PARCEL_NO_": "107702012300", "Tax_Legal_": "SMITH BAY ESTATE 18-8 1,2&3 EASTEND QTR", "Name": "V I GAME & FISHING CLUB", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 152900, "Improved_V": 730600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.608124479, "SHAPE_Area": 1713.89451966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367175.334200002253056, 255234.947700001299381 ], [ 367179.1266999989748, 255253.920000001788139 ], [ 367160.683399997651577, 255284.10530000180006 ], [ 367159.764399997889996, 255286.551699999719858 ], [ 367168.654100000858307, 255296.892000000923872 ], [ 367201.021799996495247, 255310.244800001382828 ], [ 367200.544600002467632, 255304.603799998760223 ], [ 367195.385999999940395, 255247.566399998962879 ], [ 367175.334200002253056, 255234.947700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702015600", "MAP": "B9-135-T66", "PARCEL_NAM": "18-7", "ACRE": ".41", "LONGITUDE": -64.85178324, "LATITUDE": 18.3266173, "OBJECTID_1": 39534, "PARCEL_NO_": "107702015600", "Tax_Legal_": "SMITH BAY ESTATE 18-7 EAST END QUARTER", "Name": "RED HOOK PLAZA INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 160700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.09041742400001, "SHAPE_Area": 1350.39288474 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367168.654100000858307, 255296.892000000923872 ], [ 367155.575199998915195, 255311.193799998611212 ], [ 367156.933600001037121, 255312.479600001126528 ], [ 367162.502300001680851, 255321.391100000590086 ], [ 367168.79280000180006, 255340.229899998754263 ], [ 367201.907200001180172, 255333.964200001209974 ], [ 367201.991800002753735, 255324.036299999803305 ], [ 367201.277199998497963, 255313.264699999243021 ], [ 367201.021799996495247, 255310.244800001382828 ], [ 367168.654100000858307, 255296.892000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702012900", "MAP": "D9-2924-T85", "PARCEL_NAM": "18-10-A", "ACRE": ".22", "LONGITUDE": -64.85223566000001, "LATITUDE": 18.32624904, "OBJECTID_1": 39476, "PARCEL_NO_": "107702012900", "Tax_Legal_": "18-9 REM,18-10-A,18-11,18-12 REM & 18-13 REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "RED HOOK PLAZA INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 409300, "Improved_V": 4699900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.452277912, "SHAPE_Area": 813.02156650699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367134.553099997341633, 255295.145700000226498 ], [ 367145.66780000180006, 255281.298099998384714 ], [ 367157.473600000143051, 255291.886799998581409 ], [ 367159.764399997889996, 255286.551699999719858 ], [ 367129.369199998676777, 255258.782699998468161 ], [ 367111.100100003182888, 255277.150600001215935 ], [ 367115.255300000309944, 255282.796399999409914 ], [ 367126.477200001478195, 255290.698699999600649 ], [ 367134.553099997341633, 255295.145700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702012900", "MAP": "B9-135-T66", "PARCEL_NAM": "18-13", "ACRE": ".53", "LONGITUDE": -64.85262961, "LATITUDE": 18.32557959, "OBJECTID_1": 39476, "PARCEL_NO_": "107702012900", "Tax_Legal_": "18-9 REM,18-10-A,18-11,18-12 REM & 18-13 REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "RED HOOK PLAZA INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 409300, "Improved_V": 4699900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.898300511, "SHAPE_Area": 1280.07611288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367119.405199997127056, 255201.851300001144409 ], [ 367075.854999996721745, 255175.027300000190735 ], [ 367077.80179999768734, 255228.759199999272823 ], [ 367092.948499999940395, 255225.508799999952316 ], [ 367119.405199997127056, 255201.851300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702012900", "MAP": "B9-135-T66", "PARCEL_NAM": "18-11", "ACRE": ".45", "LONGITUDE": -64.85252683, "LATITUDE": 18.32599133, "OBJECTID_1": 39476, "PARCEL_NO_": "107702012900", "Tax_Legal_": "18-9 REM,18-10-A,18-11,18-12 REM & 18-13 REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "RED HOOK PLAZA INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 409300, "Improved_V": 4699900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.88387907800001, "SHAPE_Area": 1213.1297077199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367111.100100003182888, 255277.150600001215935 ], [ 367129.369199998676777, 255258.782699998468161 ], [ 367092.948499999940395, 255225.508799999952316 ], [ 367077.80179999768734, 255228.759199999272823 ], [ 367077.81360000371933, 255229.083299998193979 ], [ 367078.520999997854233, 255240.699299998581409 ], [ 367080.110200002789497, 255243.456500001251698 ], [ 367088.906000003218651, 255252.183299999684095 ], [ 367096.915100000798702, 255258.581700000911951 ], [ 367107.283900000154972, 255271.965399999171495 ], [ 367111.100100003182888, 255277.150600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702012200", "MAP": "D9-2924-T85", "PARCEL_NAM": "18-10-B", "ACRE": ".19", "LONGITUDE": -64.85205159, "LATITUDE": 18.32640928, "OBJECTID_1": 39472, "PARCEL_NO_": "107702012200", "Tax_Legal_": "SMITH BAY ESTATE 18-10-B EAST END QTR.", "Name": "RED HOOK PLAZA, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.990592027700004, "SHAPE_Area": 490.60692502000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367159.764399997889996, 255286.551699999719858 ], [ 367157.473600000143051, 255291.886799998581409 ], [ 367145.66780000180006, 255281.298099998384714 ], [ 367134.553099997341633, 255295.145700000226498 ], [ 367139.318800002336502, 255297.769900001585484 ], [ 367149.734399996697903, 255305.665600001811981 ], [ 367155.575199998915195, 255311.193799998611212 ], [ 367168.654100000858307, 255296.892000000923872 ], [ 367159.764399997889996, 255286.551699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702012900", "MAP": "B9-135-T66", "PARCEL_NAM": "18-9", "ACRE": ".39", "LONGITUDE": -64.85200571, "LATITUDE": 18.32602534, "OBJECTID_1": 39476, "PARCEL_NO_": "107702012900", "Tax_Legal_": "18-9 REM,18-10-A,18-11,18-12 REM & 18-13 REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "RED HOOK PLAZA INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 409300, "Improved_V": 4699900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.88194613600001, "SHAPE_Area": 1708.3522526300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367163.656000003218651, 255227.612399999052286 ], [ 367149.127999998629093, 255220.158399999141693 ], [ 367150.770599998533726, 255236.271699998527765 ], [ 367129.369199998676777, 255258.782699998468161 ], [ 367159.764399997889996, 255286.551699999719858 ], [ 367160.683399997651577, 255284.10530000180006 ], [ 367179.1266999989748, 255253.920000001788139 ], [ 367175.334200002253056, 255234.947700001299381 ], [ 367163.656000003218651, 255227.612399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702012900", "MAP": "B9-135-T66", "PARCEL_NAM": "18-12", "ACRE": ".39", "LONGITUDE": -64.85231416000001, "LATITUDE": 18.32580577, "OBJECTID_1": 39476, "PARCEL_NO_": "107702012900", "Tax_Legal_": "18-9 REM,18-10-A,18-11,18-12 REM & 18-13 REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "RED HOOK PLAZA INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 409300, "Improved_V": 4699900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.98891021200001, "SHAPE_Area": 1816.75635945 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367149.127999998629093, 255220.158399999141693 ], [ 367119.405199997127056, 255201.851300001144409 ], [ 367092.948499999940395, 255225.508799999952316 ], [ 367129.369199998676777, 255258.782699998468161 ], [ 367150.770599998533726, 255236.271699998527765 ], [ 367149.127999998629093, 255220.158399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702013500", "MAP": "D9-5196-T91", "PARCEL_NAM": "18A-1", "ACRE": ".22", "LONGITUDE": -64.85115504, "LATITUDE": 18.32599831, "OBJECTID_1": 39483, "PARCEL_NO_": "107702013500", "Tax_Legal_": "18A-1 ESTATE SMITH BAY EAST END QTR.", "Name": "IGY AYH ST THOMAS HOLDINGS LLC", "Address": "6100 Red Hook Qts", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 144300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.226880068, "SHAPE_Area": 617.17027191399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367254.741400003433228, 255236.471599999815226 ], [ 367247.838299997150898, 255234.776299998164177 ], [ 367227.64360000193119, 255252.225900001823902 ], [ 367231.217000000178814, 255254.3739 ], [ 367257.277800001204014, 255270.870999999344349 ], [ 367258.32150000333786, 255243.0152000002563 ], [ 367257.536799997091293, 255240.475699998438358 ], [ 367254.741400003433228, 255236.471599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702019800", "MAP": "D9-6835-T000", "PARCEL_NAM": "18W (Sub)", "ACRE": "0.64", "LONGITUDE": -64.8516472, "LATITUDE": 18.32542942, "OBJECTID_1": 39540, "PARCEL_NO_": "107702019800", "Tax_Legal_": "18-W SMITH BAY (FILLED SUBMERGED LAND) EAST END QTR", "Name": "IGY AYH ST THOMAS HOLDINGS LLC", "Address": "6100 Red Hook Qts", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 186200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 497.04804658500001, "SHAPE_Area": 2235.61277427 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367094.210600003600121, 255102.77250000089407 ], [ 367062.87049999833107, 255090.061500001698732 ], [ 367099.975100003182888, 255109.44990000128746 ], [ 367121.183300003409386, 255118.46339999884367 ], [ 367137.884800001978874, 255131.188400000333786 ], [ 367159.093000002205372, 255150.010600000619888 ], [ 367181.361599996685982, 255179.436999998986721 ], [ 367189.962600000202656, 255193.886700000613928 ], [ 367194.616800002753735, 255201.705699998885393 ], [ 367206.546400003135204, 255220.262800000607967 ], [ 367236.237899996340275, 255231.927400000393391 ], [ 367247.838299997150898, 255234.776299998164177 ], [ 367254.741400003433228, 255236.471599999815226 ], [ 367251.405900001525879, 255231.693599998950958 ], [ 367251.163599997758865, 255231.346500001847744 ], [ 367246.440800003707409, 255217.797800000756979 ], [ 367200.777699999511242, 255182.593699999153614 ], [ 367198.184799998998642, 255180.311900001019239 ], [ 367171.964400000870228, 255157.237700000405312 ], [ 367140.750200003385544, 255129.751200001686811 ], [ 367127.962499998509884, 255116.347600001841784 ], [ 367094.210600003600121, 255102.77250000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702013300", "MAP": "D9-5196-T91", "PARCEL_NAM": "18B-REM", "ACRE": "1.42", "LONGITUDE": -64.85236191, "LATITUDE": 18.32512844, "OBJECTID_1": 39481, "PARCEL_NO_": "107702013300", "Tax_Legal_": "18B REM.ESTATE SMITH BAY EASTEND QTR.", "Name": "IGY AYH ST THOMAS HOLDINGS LLC", "Address": "6100 Red Hook Qts", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 794500, "Improved_V": 609000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 394.569675856, "SHAPE_Area": 7377.4288994799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367189.962600000202656, 255193.886700000613928 ], [ 367181.361599996685982, 255179.436999998986721 ], [ 367159.093000002205372, 255150.010600000619888 ], [ 367137.884800001978874, 255131.188400000333786 ], [ 367121.183300003409386, 255118.46339999884367 ], [ 367099.975100003182888, 255109.44990000128746 ], [ 367062.87049999833107, 255090.061500001698732 ], [ 367059.659699998795986, 255088.346400000154972 ], [ 367060.689699999988079, 255146.4391999989748 ], [ 367174.599299997091293, 255219.251600001007318 ], [ 367189.962600000202656, 255193.886700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401020500", "MAP": "A9-22-T64", "PARCEL_NAM": "40", "ACRE": null, "LONGITUDE": -64.8982269, "LATITUDE": 18.31409367, "OBJECTID_1": 42013, "PARCEL_NO_": "109401020500", "Tax_Legal_": "40 & 62 BOLONGO FRENCHMAN BAY", "Name": "ZAPPA, RICHARD A. & JUNE W.", "Address": "501 Rockwood Rd", "City": "Wilmington", "State": "Delaware", "Zip": 19802, "Country": "United States", "Land_Value": 51500, "Improved_V": 266700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.013243964, "SHAPE_Area": 2688.5117077199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362290.738899998366833, 253864.446899998933077 ], [ 362270.670999996364117, 253853.728000000119209 ], [ 362270.055900000035763, 253855.106699999421835 ], [ 362250.119400002062321, 253899.789299998432398 ], [ 362263.750200003385544, 253909.432500001043081 ], [ 362273.364000000059605, 253916.233800001442432 ], [ 362280.185500003397465, 253926.405499998480082 ], [ 362315.348999999463558, 253906.106899999082088 ], [ 362314.586599998176098, 253904.749899998307228 ], [ 362313.00280000269413, 253901.359400000423193 ], [ 362312.226999998092651, 253897.764499999582767 ], [ 362305.916799999773502, 253881.247600000351667 ], [ 362297.947200000286102, 253870.20549999922514 ], [ 362290.738899998366833, 253864.446899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302011400", "MAP": "D9-7423-T004", "PARCEL_NAM": "37-1", "ACRE": "337 sq ft", "LONGITUDE": -64.89844103, "LATITUDE": 18.31395415, "OBJECTID_1": 41841, "PARCEL_NO_": "109302011400", "Tax_Legal_": "37 EST. BOLONGO FRENCHMAN BAY", "Name": "ZAPPA, RICHARD A. & JUNE W.", "Address": "501 Rockwood Rd", "City": "Wilmington", "State": "Delaware", "Zip": 19802, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.095881395000006, "SHAPE_Area": 60.959148247000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362270.055900000035763, 253855.106699999421835 ], [ 362260.695799998939037, 253870.532400000840425 ], [ 362258.441200003027916, 253875.708399999886751 ], [ 362250.119400002062321, 253899.789299998432398 ], [ 362270.055900000035763, 253855.106699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701010100", "MAP": "D9-8754-T013", "PARCEL_NAM": "8-30", "ACRE": "1.44", "LONGITUDE": -64.846793, "LATITUDE": 18.31420544, "OBJECTID_1": 42248, "PARCEL_NO_": "109701010100", "Tax_Legal_": "8-30 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "BMJ LP", "Address": "1736 Walden Creek Rd", "City": "Sevierville", "State": "Tennessee", "Zip": 37862, "Country": "United States", "Land_Value": 464900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.34958342800002, "SHAPE_Area": 4935.4193346000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367728.57490000128746, 253901.353700000792742 ], [ 367725.378499999642372, 253897.949999999254942 ], [ 367709.137100003659725, 253911.327100001275539 ], [ 367705.881300002336502, 253914.888999998569489 ], [ 367692.86879999935627, 253927.870299998670816 ], [ 367689.576999999582767, 253935.653900001198053 ], [ 367691.101599998772144, 253946.009899999946356 ], [ 367691.047600001096725, 253952.342300001531839 ], [ 367689.375600002706051, 253959.294700000435114 ], [ 367677.147900000214577, 253974.815499998629093 ], [ 367698.646799996495247, 254006.866599999368191 ], [ 367708.430399999022484, 253994.281100001186132 ], [ 367718.179899998009205, 253985.706000000238419 ], [ 367723.869099996984005, 253980.475299999117851 ], [ 367744.141999997198582, 253967.13120000064373 ], [ 367770.924699999392033, 253946.874299999326468 ], [ 367728.57490000128746, 253901.353700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84645856, "LATITUDE": 18.31340269, "OBJECTID_1": 42251, "PARCEL_NO_": "109701010400", "Tax_Legal_": "8-17 NAZARETH RED HOOK QTR", "Name": "SWANSON, JOHANNA S. & ALLYSON J.,CAROL E. & DAVID S. SHEAR", "Address": "200 Bentley Rd", "City": "Parkton", "State": "Maryland", "Zip": 21120, "Country": "United States", "Land_Value": 419400, "Improved_V": 256500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.10033400699999, "SHAPE_Area": 2541.7961005900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367727.100299999117851, 253899.783500000834465 ], [ 367781.999099999666214, 253878.586100000888109 ], [ 367781.193800002336502, 253877.297499999403954 ], [ 367778.843199998140335, 253869.256700001657009 ], [ 367777.442800000309944, 253844.336199998855591 ], [ 367779.174099996685982, 253830.418200001120567 ], [ 367748.548600003123283, 253828.478799998760223 ], [ 367746.088299997150898, 253833.313799999654293 ], [ 367736.308300003409386, 253845.477200001478195 ], [ 367734.656099997460842, 253850.107700001448393 ], [ 367734.54280000180006, 253863.405699998140335 ], [ 367735.304200001060963, 253868.689300000667572 ], [ 367734.390000000596046, 253881.34739999845624 ], [ 367725.378499999642372, 253897.949999999254942 ], [ 367727.100299999117851, 253899.783500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701010300", "MAP": "A9-35-T65", "PARCEL_NAM": "8-18", "ACRE": null, "LONGITUDE": -64.84629124, "LATITUDE": 18.31384963, "OBJECTID_1": 42250, "PARCEL_NO_": "109701010300", "Tax_Legal_": "8-18 ESTATE NAZARETH RED HOOK QTR", "Name": "GREIG, ROBERT & NATASHA", "Address": "PO Box 9725", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 303000, "Improved_V": 1041600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.65035059, "SHAPE_Area": 3162.53216531 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367781.999099999666214, 253878.586100000888109 ], [ 367727.100299999117851, 253899.783500000834465 ], [ 367728.57490000128746, 253901.353700000792742 ], [ 367770.924699999392033, 253946.874299999326468 ], [ 367784.700300000607967, 253938.965500000864267 ], [ 367790.360699996352196, 253937.111999999731779 ], [ 367801.665299996733665, 253935.304699998348951 ], [ 367806.828599996864796, 253897.138999998569489 ], [ 367794.782499998807907, 253891.340900000184774 ], [ 367788.369699999690056, 253886.855399999767542 ], [ 367784.375900000333786, 253882.389800000935793 ], [ 367781.999099999666214, 253878.586100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401010200", "MAP": "D9-5002-T90", "PARCEL_NAM": "5 REM", "ACRE": "0.57", "LONGITUDE": -64.89630452, "LATITUDE": 18.3155108, "OBJECTID_1": 41937, "PARCEL_NO_": "109401010200", "Tax_Legal_": "5 ESTATE BOLONGO FRENCHMEN BAY", "Name": "THOMAS, JOAN", "Address": "PO Box 10814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84900, "Improved_V": 258300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.29692003299999, "SHAPE_Area": 1875.9163160600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362470.773400001227856, 254020.274900000542402 ], [ 362460.120099999010563, 254072.061200000345707 ], [ 362492.948600001633167, 254075.928899999707937 ], [ 362496.238600000739098, 254068.356499999761581 ], [ 362513.401299998164177, 254041.477000001817942 ], [ 362515.840000003576279, 254039.174899999052286 ], [ 362470.773400001227856, 254020.274900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603060600", "MAP": "D9-5308-T92", "PARCEL_NAM": "13A REM", "ACRE": "0.231", "LONGITUDE": -64.8748502, "LATITUDE": 18.31977373, "OBJECTID_1": 38787, "PARCEL_NO_": "107603060600", "Tax_Legal_": "13A REMAINDER ESTATE NADIR RED HOOK QTR", "Name": "FREDERICKS, JENNIFER", "Address": "7492 Estate Bovoni Number 5", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 157600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.693883062, "SHAPE_Area": 1298.20489387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364705.159800000488758, 254538.392700001597404 ], [ 364736.601199999451637, 254538.470899999141693 ], [ 364736.344300001859665, 254542.565900001674891 ], [ 364735.572800002992153, 254554.863099999725819 ], [ 364771.653999999165535, 254557.625599998980761 ], [ 364775.017899997532368, 254543.813700001686811 ], [ 364777.380000002682209, 254530.303399998694658 ], [ 364705.97070000320673, 254529.136700000613928 ], [ 364705.159800000488758, 254538.392700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603066600", "MAP": "D9-5308-T92", "PARCEL_NAM": "13A-5", "ACRE": ".25", "LONGITUDE": -64.87481739, "LATITUDE": 18.32001482, "OBJECTID_1": 38842, "PARCEL_NO_": "107603066600", "Tax_Legal_": "NADIR ESTATE 13A-5 No.2 RED HOOK QTR.", "Name": "FREDERICKS, DAVID", "Address": "13A-5 ESTATE NADIR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 71600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.04697535299999, "SHAPE_Area": 799.68364512799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364734.035400003194809, 254579.367899999022484 ], [ 364764.784699998795986, 254580.117400001734495 ], [ 364769.168700002133846, 254567.83049999922514 ], [ 364771.653999999165535, 254557.625599998980761 ], [ 364735.572800002992153, 254554.863099999725819 ], [ 364734.9966000020504, 254564.046999998390675 ], [ 364734.035400003194809, 254579.367899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603066300", "MAP": "D9-5308-T92", "PARCEL_NAM": "13A-2", "ACRE": "0.231", "LONGITUDE": -64.87502387000001, "LATITUDE": 18.32051832, "OBJECTID_1": 38839, "PARCEL_NO_": "107603066300", "Tax_Legal_": "13A-2 ESTATE NADIR RED HOOK QUARTER", "Name": "FREDERICKS, GENEVIEVE", "Address": "6612 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.83003825099999, "SHAPE_Area": 1228.3695437700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364757.222599998116493, 254609.041400000452995 ], [ 364702.806199997663498, 254613.440999999642372 ], [ 364703.395199999213219, 254621.543200001120567 ], [ 364704.077500000596046, 254636.114199999719858 ], [ 364750.04450000077486, 254635.646099999547005 ], [ 364755.872100003063679, 254614.162200000137091 ], [ 364757.222599998116493, 254609.041400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603066400", "MAP": "D9-5308-T92", "PARCEL_NAM": "13A-3", "ACRE": "0.251", "LONGITUDE": -64.87495075, "LATITUDE": 18.32028965, "OBJECTID_1": 38840, "PARCEL_NO_": "107603066400", "Tax_Legal_": "13A-3 ESTATE NADIR RED HOOK QUARTER", "Name": "FREDERICKS, JULIE", "Address": "6612 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.61116892300001, "SHAPE_Area": 1244.9465638 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364730.998400002717972, 254599.636100001633167 ], [ 364702.384900003671646, 254597.933299999684095 ], [ 364702.67339999973774, 254611.615899998694658 ], [ 364702.806199997663498, 254613.440999999642372 ], [ 364757.222599998116493, 254609.041400000452995 ], [ 364761.705099999904633, 254592.045099999755621 ], [ 364764.212099999189377, 254581.722100000828505 ], [ 364764.784699998795986, 254580.117400001734495 ], [ 364734.035400003194809, 254579.367899999022484 ], [ 364733.118900001049042, 254593.976199999451637 ], [ 364732.757200002670288, 254599.740699999034405 ], [ 364730.998400002717972, 254599.636100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604066300", "MAP": "D9-79-T55", "PARCEL_NAM": "56", "ACRE": ".585", "LONGITUDE": -64.86718664, "LATITUDE": 18.32159793, "OBJECTID_1": 39118, "PARCEL_NO_": "107604066300", "Tax_Legal_": "56 FRYDENHOJ RED HOOK QTR", "Name": "EAST END BOAT SER. INC.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 413000, "Improved_V": 963500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.527362845, "SHAPE_Area": 2931.4825713800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365591.855200000107288, 254734.7837999984622 ], [ 365581.39469999819994, 254732.16499999910593 ], [ 365572.543300002813339, 254729.981699999421835 ], [ 365568.520700000226498, 254728.893300000578165 ], [ 365566.922499999403954, 254727.191399998962879 ], [ 365561.321400001645088, 254722.0793999992311 ], [ 365552.419600002467632, 254725.806200001388788 ], [ 365505.534800000488758, 254739.354600001126528 ], [ 365508.73309999704361, 254742.547200001776218 ], [ 365509.523199997842312, 254744.453499998897314 ], [ 365513.527800001204014, 254747.652699999511242 ], [ 365516.727899998426437, 254750.634199999272823 ], [ 365529.560599997639656, 254758.760800000280142 ], [ 365541.597699999809265, 254765.61430000141263 ], [ 365556.858300000429153, 254772.705299999564886 ], [ 365572.934199996292591, 254778.747499998658895 ], [ 365585.003700003027916, 254781.801600001752377 ], [ 365591.855200000107288, 254734.7837999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604066200", "MAP": "D9-79-T55", "PARCEL_NAM": "42", "ACRE": ".17", "LONGITUDE": -64.86743853, "LATITUDE": 18.32138919, "OBJECTID_1": 39117, "PARCEL_NO_": "107604066200", "Tax_Legal_": "42 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "FABIAN, EDISON & DOROTHY - TRU", "Address": "PO Box 2728", "City": "San Pedro", "State": "California", "Zip": 90731, "Country": "United States", "Land_Value": 133300, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.28205960299999, "SHAPE_Area": 639.93310957899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365548.4070999994874, 254715.83219999819994 ], [ 365500.705399997532368, 254728.629000000655651 ], [ 365502.365299999713898, 254732.784800000488758 ], [ 365503.146499998867512, 254735.746500000357628 ], [ 365505.534800000488758, 254739.354600001126528 ], [ 365552.419600002467632, 254725.806200001388788 ], [ 365561.321400001645088, 254722.0793999992311 ], [ 365557.343800000846386, 254715.714000001549721 ], [ 365555.789700001478195, 254713.851700000464916 ], [ 365548.4070999994874, 254715.83219999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604066100", "MAP": "D9-79-T55", "PARCEL_NAM": "43", "ACRE": ".18", "LONGITUDE": -64.86747777, "LATITUDE": 18.32126186, "OBJECTID_1": 39116, "PARCEL_NO_": "107604066100", "Tax_Legal_": "43 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "CARMEN V. RUAN LIVING TRUST", "Address": "PO Box 10298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 141100, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.61960024699999, "SHAPE_Area": 1044.5198199399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365543.876500003039837, 254697.837000001221895 ], [ 365497.016599997878075, 254710.898499999195337 ], [ 365497.673100002110004, 254715.647799998521805 ], [ 365499.996699996292591, 254726.854800000786781 ], [ 365500.705399997532368, 254728.629000000655651 ], [ 365548.4070999994874, 254715.83219999819994 ], [ 365555.789700001478195, 254713.851700000464916 ], [ 365555.747400000691414, 254713.801100000739098 ], [ 365551.841700002551079, 254698.992600001394749 ], [ 365552.390900000929832, 254695.463799998164177 ], [ 365543.876500003039837, 254697.837000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065800", "MAP": "F9-3394-T75", "PARCEL_NAM": "97", "ACRE": ".146", "LONGITUDE": -64.86750362, "LATITUDE": 18.32103193, "OBJECTID_1": 39113, "PARCEL_NO_": "107604065800", "Tax_Legal_": "ESTATE FRYDENHOJ 97 RED HOOK QUARTER", "Name": "BRYAN, MARIO", "Address": "2C-1 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 117600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.65964704300001, "SHAPE_Area": 900.43846914599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365496.171999998390675, 254702.547699999064207 ], [ 365542.9054000005126, 254689.734000001102686 ], [ 365552.13120000064373, 254687.204500000923872 ], [ 365550.00959999859333, 254671.486400000751019 ], [ 365541.460299998521805, 254673.762699998915195 ], [ 365497.076999999582767, 254685.580099999904633 ], [ 365496.209700003266335, 254698.115100000053644 ], [ 365496.171999998390675, 254702.547699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604066000", "MAP": "F9-3394-T75", "PARCEL_NAM": "173", "ACRE": ".076", "LONGITUDE": -64.86749747, "LATITUDE": 18.32114259, "OBJECTID_1": 39115, "PARCEL_NO_": "107604066000", "Tax_Legal_": "PCL 173 FRYDENHOJ RED HOOK QTR", "Name": "BRYAN, MARIO", "Address": "PO Box 12481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.37461398400001, "SHAPE_Area": 474.90616340499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365496.171999998390675, 254702.547699999064207 ], [ 365496.119800001382828, 254708.668999999761581 ], [ 365496.913500003516674, 254710.153200000524521 ], [ 365497.016599997878075, 254710.898499999195337 ], [ 365541.7449000030756, 254698.431200001388788 ], [ 365546.530799999833107, 254697.097199998795986 ], [ 365552.390900000929832, 254695.463799998164177 ], [ 365552.694700002670288, 254693.511100001633167 ], [ 365552.13120000064373, 254687.204500000923872 ], [ 365542.9054000005126, 254689.734000001102686 ], [ 365496.171999998390675, 254702.547699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065600", "MAP": "F9-83-T57", "PARCEL_NAM": "64", "ACRE": ".05", "LONGITUDE": -64.86753068, "LATITUDE": 18.32078456, "OBJECTID_1": 39111, "PARCEL_NO_": "107604065600", "Tax_Legal_": "64 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "GO FAST CHARTERS, LLC", "Address": "PO Box 8336", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 39200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.793614787699994, "SHAPE_Area": 112.486679467 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365500.507399998605251, 254666.908399999141693 ], [ 365546.554899998009205, 254652.999699998646975 ], [ 365546.202299997210503, 254651.464899998158216 ], [ 365536.096400000154972, 254654.145700000226498 ], [ 365501.226599998772144, 254663.396000001579523 ], [ 365500.507399998605251, 254666.908399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065700", "MAP": "F9-80-T57", "PARCEL_NAM": "63", "ACRE": ".10", "LONGITUDE": -64.86749572, "LATITUDE": 18.32082108, "OBJECTID_1": 39112, "PARCEL_NO_": "107604065700", "Tax_Legal_": "63 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "GO FAST CHARTERS, LLC", "Address": "PO Box 8336", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 78400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.140230573, "SHAPE_Area": 364.95440614 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365499.486400000751019, 254673.944299999624491 ], [ 365548.452100001275539, 254661.081399999558926 ], [ 365547.919100001454353, 254658.811700001358986 ], [ 365546.587700001895428, 254653.142299998551607 ], [ 365546.554899998009205, 254652.999699998646975 ], [ 365500.507399998605251, 254666.908399999141693 ], [ 365499.826200000941753, 254671.602899998426437 ], [ 365499.486400000751019, 254673.944299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065500", "MAP": "F9-386-T59", "PARCEL_NAM": "86", "ACRE": ".143", "LONGITUDE": -64.86750583, "LATITUDE": 18.32072157, "OBJECTID_1": 39110, "PARCEL_NO_": "107604065500", "Tax_Legal_": "86 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "GO FAST CHARTERS, LLC", "Address": "PO Box 8336", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 109800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.564257388, "SHAPE_Area": 430.02157622499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365543.563900001347065, 254642.026500001549721 ], [ 365503.780699998140335, 254652.6587999984622 ], [ 365502.190200001001358, 254658.689500000327826 ], [ 365501.226599998772144, 254663.396000001579523 ], [ 365536.096400000154972, 254654.145700000226498 ], [ 365546.202299997210503, 254651.464899998158216 ], [ 365545.032600000500679, 254646.374499998986721 ], [ 365543.563900001347065, 254642.026500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065200", "MAP": "F9-632-T60", "PARCEL_NAM": "103", "ACRE": ".02", "LONGITUDE": -64.86753144, "LATITUDE": 18.3203574, "OBJECTID_1": 39107, "PARCEL_NO_": "107604065200", "Tax_Legal_": "103 ESTATE FRYDENHOJ RED HOOK", "Name": "FABIAN, EDISON & DOROTHY - TRU", "Address": "PO Box 2728", "City": "San Pedro", "State": "California", "Zip": 90731, "Country": "United States", "Land_Value": 5500, "Improved_V": 4100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.531421863800006, "SHAPE_Area": 250.588961786 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365505.822200000286102, 254620.760000001639128 ], [ 365534.509099997580051, 254612.961500000208616 ], [ 365534.17059999704361, 254610.908599998801947 ], [ 365534.051700003445148, 254610.187699999660254 ], [ 365535.671599999070168, 254609.356600001454353 ], [ 365536.499399997293949, 254606.830200001597404 ], [ 365536.528899997472763, 254603.369199998676777 ], [ 365527.718699999153614, 254606.022900000214577 ], [ 365508.071699999272823, 254611.628400001674891 ], [ 365505.877400003373623, 254619.895799998193979 ], [ 365505.822200000286102, 254620.760000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065300", "MAP": "F9-408-T59", "PARCEL_NAM": "88", "ACRE": ".090", "LONGITUDE": -64.86754179, "LATITUDE": 18.32045212, "OBJECTID_1": 39108, "PARCEL_NO_": "107604065300", "Tax_Legal_": "88 FRYDENHOJ RED HOOK QUARTER", "Name": "ALLIANCE POINT ENTERPRISE LLC", "Address": "PO Box 631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.993350827300006, "SHAPE_Area": 337.71703717100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365534.509099997580051, 254612.961500000208616 ], [ 365505.822200000286102, 254620.760000001639128 ], [ 365505.720100000500679, 254622.356199998408556 ], [ 365505.710299998521805, 254624.098999999463558 ], [ 365505.667199999094009, 254629.164900001138449 ], [ 365505.635799996554852, 254632.851700000464916 ], [ 365535.820000000298023, 254623.426399998366833 ], [ 365535.570900000631809, 254621.177000001072884 ], [ 365534.818499997258186, 254614.837999999523163 ], [ 365534.646999999880791, 254613.798099998384714 ], [ 365534.509099997580051, 254612.961500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065400", "MAP": "F9-395-T59", "PARCEL_NAM": "87", "ACRE": ".079", "LONGITUDE": -64.86752001000001, "LATITUDE": 18.32059263, "OBJECTID_1": 39109, "PARCEL_NO_": "107604065400", "Tax_Legal_": "87 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "GO FAST CHARTERS, LLC", "Address": "PO Box 8336", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 7800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.124241591, "SHAPE_Area": 681.43409239200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365503.780699998140335, 254652.6587999984622 ], [ 365543.563900001347065, 254642.026500001549721 ], [ 365543.459600001573563, 254641.717599999159575 ], [ 365541.078400000929832, 254637.2652000002563 ], [ 365539.976800002157688, 254635.106100000441074 ], [ 365538.027000002563, 254631.284400001168251 ], [ 365536.319600000977516, 254627.938099998980761 ], [ 365536.111900001764297, 254626.0625 ], [ 365535.845399998128414, 254623.656100001186132 ], [ 365535.820000000298023, 254623.426399998366833 ], [ 365505.635799996554852, 254632.851700000464916 ], [ 365505.622599996626377, 254634.393899999558926 ], [ 365505.62219999730587, 254634.441799998283386 ], [ 365505.597699999809265, 254637.315000001341105 ], [ 365505.575499996542931, 254639.929900001734495 ], [ 365505.362800002098083, 254641.687800001353025 ], [ 365504.962200000882149, 254644.998700000345707 ], [ 365504.707999996840954, 254647.100000001490116 ], [ 365503.856700003147125, 254652.370299998670816 ], [ 365503.780699998140335, 254652.6587999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065100", "MAP": "F9-736-T61", "PARCEL_NAM": "108", "ACRE": ".03", "LONGITUDE": -64.86752534, "LATITUDE": 18.32028213, "OBJECTID_1": 39106, "PARCEL_NO_": "107604065100", "Tax_Legal_": "108 FRYDENHOJ RED HOOK QUARTER", "Name": "FABIAN, EDISON & DOROTHY - TRU", "Address": "PO Box 2728", "City": "San Pedro", "State": "California", "Zip": 90731, "Country": "United States", "Land_Value": 12500, "Improved_V": 114900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.455217801200007, "SHAPE_Area": 206.47940889099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365532.387599997222424, 254596.184799998998642 ], [ 365509.053999997675419, 254604.170200001448393 ], [ 365508.071699999272823, 254611.628400001674891 ], [ 365527.718699999153614, 254606.022900000214577 ], [ 365536.528899997472763, 254603.369199998676777 ], [ 365536.544399999082088, 254601.553199999034405 ], [ 365534.146999999880791, 254599.000500001013279 ], [ 365532.387599997222424, 254596.184799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604064300", "MAP": null, "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.86778553000001, "LATITUDE": 18.31987232, "OBJECTID_1": 39098, "PARCEL_NO_": "107604064300", "Tax_Legal_": "FRYDENHOJ ESTATE 9 RED HOOK QUARTER", "Name": "LEWIS, K. A. , HAUSER, L. T. & ANTHONY", "Address": "#9 EST FRYDENHOJ", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29400, "Improved_V": 112200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.473268322899997, "SHAPE_Area": 449.031532519 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365493.113099999725819, 254573.11089999973774 ], [ 365511.171400003135204, 254552.745900001376867 ], [ 365502.327899999916553, 254547.866500001400709 ], [ 365492.679099999368191, 254544.621100001037121 ], [ 365480.325099997222424, 254564.965300001204014 ], [ 365480.890600003302097, 254565.283300001174212 ], [ 365488.446900002658367, 254569.804699998348951 ], [ 365492.694099999964237, 254572.813999999314547 ], [ 365493.113099999725819, 254573.11089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063200", "MAP": "G9-274-T53", "PARCEL_NAM": "44", "ACRE": ".011", "LONGITUDE": -64.86886007, "LATITUDE": 18.31945125, "OBJECTID_1": 39088, "PARCEL_NO_": "107604063200", "Tax_Legal_": "35, 44 & 134 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "CHACONIA PROPERTIES LLC", "Address": "PO Box 502038", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 447600, "Improved_V": 119500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.610423784199995, "SHAPE_Area": 219.72266694199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365372.302799999713898, 254517.361900001764297 ], [ 365376.67339999973774, 254524.53830000013113 ], [ 365381.286100000143051, 254518.589000001549721 ], [ 365391.665899999439716, 254505.201499998569489 ], [ 365392.79389999806881, 254503.746599998325109 ], [ 365392.233499996364117, 254503.480200000107288 ], [ 365389.823600001633167, 254502.405000001192093 ], [ 365387.42620000243187, 254499.852200001478195 ], [ 365385.010899998247623, 254499.410300001502037 ], [ 365382.58110000193119, 254500.657000001519918 ], [ 365382.222099997103214, 254500.503100000321865 ], [ 365372.302799999713898, 254517.361900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063200", "MAP": "D9-4891-T90", "PARCEL_NAM": "35", "ACRE": ".007", "LONGITUDE": -64.86880908000001, "LATITUDE": 18.31949975, "OBJECTID_1": 39088, "PARCEL_NO_": "107604063200", "Tax_Legal_": "35, 44 & 134 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "CHACONIA PROPERTIES LLC", "Address": "PO Box 502038", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 447600, "Improved_V": 119500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.795619724399998, "SHAPE_Area": 169.258090568 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365376.67339999973774, 254524.53830000013113 ], [ 365379.899999998509884, 254529.836300000548363 ], [ 365398.567400000989437, 254506.491700001060963 ], [ 365392.79389999806881, 254503.746599998325109 ], [ 365391.665899999439716, 254505.201499998569489 ], [ 365381.286100000143051, 254518.589000001549721 ], [ 365376.67339999973774, 254524.53830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063700", "MAP": "F9-214-T57", "PARCEL_NAM": "68", "ACRE": ".019", "LONGITUDE": -64.86824602, "LATITUDE": 18.31975112, "OBJECTID_1": 39092, "PARCEL_NO_": "107604063700", "Tax_Legal_": "68 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "INTER-ISLAND BOAT SERVICES INC", "Address": "PO Box 548", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 6500, "Improved_V": 71000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.283021101399996, "SHAPE_Area": 320.30486230299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365438.66160000115633, 254543.545800000429153 ], [ 365437.230800002813339, 254554.833700001239777 ], [ 365443.938500002026558, 254555.352200001478195 ], [ 365448.85360000282526, 254555.732200000435114 ], [ 365451.293200001120567, 254556.004200000315905 ], [ 365455.699299998581409, 254533.38120000064373 ], [ 365449.235399998724461, 254532.866500001400709 ], [ 365446.818199999630451, 254532.63569999858737 ], [ 365441.964199997484684, 254534.495799999684095 ], [ 365438.66160000115633, 254543.545800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063200", "MAP": "D9-4891-T90", "PARCEL_NAM": "134", "ACRE": ".013", "LONGITUDE": -64.86878093, "LATITUDE": 18.31954728, "OBJECTID_1": 39088, "PARCEL_NO_": "107604063200", "Tax_Legal_": "35, 44 & 134 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "CHACONIA PROPERTIES LLC", "Address": "PO Box 502038", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 447600, "Improved_V": 119500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.8159876502, "SHAPE_Area": 149.547535676 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365379.899999998509884, 254529.836300000548363 ], [ 365383.162500001490116, 254534.149900000542402 ], [ 365396.281199999153614, 254518.920800000429153 ], [ 365396.956299997866154, 254517.028799999505281 ], [ 365397.460699997842312, 254514.993000000715256 ], [ 365399.461599998176098, 254506.916799999773502 ], [ 365398.567400000989437, 254506.491700001060963 ], [ 365379.899999998509884, 254529.836300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063100", "MAP": "D9-4667-T89", "PARCEL_NAM": "85", "ACRE": ".01", "LONGITUDE": -64.86876202000001, "LATITUDE": 18.31961717, "OBJECTID_1": 39087, "PARCEL_NO_": "107604063100", "Tax_Legal_": "85 EST FRYDENHOJ RED HOOK QTR", "Name": "VENZEN, ISAIH & LOUISE", "Address": "PO Box 502086", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 2400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.904552172599999, "SHAPE_Area": 137.10250061900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365383.174099996685982, 254534.165199998766184 ], [ 365386.561499997973442, 254538.643800001591444 ], [ 365387.404399998486042, 254539.94029999896884 ], [ 365401.667400002479553, 254522.009300000965595 ], [ 365396.130199998617172, 254519.344099998474121 ], [ 365383.174099996685982, 254534.165199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063500", "MAP": null, "PARCEL_NAM": "30", "ACRE": null, "LONGITUDE": -64.86859813, "LATITUDE": 18.31972604, "OBJECTID_1": 39090, "PARCEL_NO_": "107604063500", "Tax_Legal_": "30 ESTATE FRYDENHOJ REDHOOK QTR", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.908751420400002, "SHAPE_Area": 99.062279366300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365414.673299998044968, 254528.927299998700619 ], [ 365400.712099999189377, 254551.131900001317263 ], [ 365400.914800003170967, 254551.228500001132488 ], [ 365404.632399998605251, 254552.373100001364946 ], [ 365416.890699997544289, 254533.073499999940395 ], [ 365416.183700002729893, 254531.751600001007318 ], [ 365414.673299998044968, 254528.927299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604066800", "MAP": null, "PARCEL_NAM": "12-1", "ACRE": null, "LONGITUDE": -64.86863123000001, "LATITUDE": 18.31970321, "OBJECTID_1": 39122, "PARCEL_NO_": "107604066800", "Tax_Legal_": "FRYDENHOJ 12-1 RED HOOK QTR.", "Name": "ROSEN, JACK B", "Address": "6117 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.107539466799999, "SHAPE_Area": 126.284686882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365411.052500002086163, 254526.222899999469519 ], [ 365396.364399999380112, 254549.032699998468161 ], [ 365396.513099998235703, 254549.131599999964237 ], [ 365400.712099999189377, 254551.131900001317263 ], [ 365414.673299998044968, 254528.927299998700619 ], [ 365414.5962999984622, 254528.783300001174212 ], [ 365413.804399996995926, 254527.088100001215935 ], [ 365411.052500002086163, 254526.222899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063300", "MAP": "F9-1890-T66", "PARCEL_NAM": "144", "ACRE": null, "LONGITUDE": -64.86872359, "LATITUDE": 18.31965552, "OBJECTID_1": 39089, "PARCEL_NO_": "107604063300", "Tax_Legal_": "144 FRYDENHOJ 3 RED HOOK", "Name": "FREDERICKS, HUBERT & OTHERS", "Address": "7492 Estate Bovoni #52", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022537, "Country": "United States", "Land_Value": 4700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.677782479100003, "SHAPE_Area": 125.915390376 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365387.404399998486042, 254539.94029999896884 ], [ 365390.913699999451637, 254545.33729999884963 ], [ 365405.588299997150898, 254523.909099999815226 ], [ 365404.160999998450279, 254523.209499999880791 ], [ 365401.667400002479553, 254522.009300000965595 ], [ 365387.404399998486042, 254539.94029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063600", "MAP": "F9-214-T57", "PARCEL_NAM": "67", "ACRE": null, "LONGITUDE": -64.86847695, "LATITUDE": 18.31977924, "OBJECTID_1": 39091, "PARCEL_NO_": "107604063600", "Tax_Legal_": "67 ESTATE FRYDENHOJ RED HOOK", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36600, "Improved_V": 168500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.743649659900001, "SHAPE_Area": 372.07663243500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365437.230800002813339, 254554.833700001239777 ], [ 365438.66160000115633, 254543.545800000429153 ], [ 365434.619199998676777, 254544.779199998825788 ], [ 365425.767800003290176, 254542.595899999141693 ], [ 365420.136200003325939, 254541.07209999859333 ], [ 365418.555900000035763, 254537.259500000625849 ], [ 365416.97749999910593, 254533.235800001770258 ], [ 365416.890699997544289, 254533.073499999940395 ], [ 365410.289099998772144, 254543.467000000178814 ], [ 365404.632399998605251, 254552.373100001364946 ], [ 365407.616300001740456, 254552.578999999910593 ], [ 365411.818099997937679, 254552.868999999016523 ], [ 365413.623999997973442, 254553.008600000292063 ], [ 365423.087700001895428, 254553.740299999713898 ], [ 365437.230800002813339, 254554.833700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063800", "MAP": "F9-214-T57", "PARCEL_NAM": "69", "ACRE": ".0075", "LONGITUDE": -64.86815503, "LATITUDE": 18.31975249, "OBJECTID_1": 39093, "PARCEL_NO_": "107604063800", "Tax_Legal_": "69 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "INTER-ISLAND BOAR SERVICES INC", "Address": "PO Box 548", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 3300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.661824183500002, "SHAPE_Area": 113.830489179 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365455.699299998581409, 254533.38120000064373 ], [ 365451.293200001120567, 254556.004200000315905 ], [ 365452.776299998164177, 254556.16950000077486 ], [ 365455.733199998736382, 254556.499099999666214 ], [ 365461.04110000282526, 254534.464999999850988 ], [ 365458.099399998784065, 254533.572399999946356 ], [ 365455.699299998581409, 254533.38120000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604063900", "MAP": "F9-214-T57", "PARCEL_NAM": "70", "ACRE": ".007", "LONGITUDE": -64.8681071, "LATITUDE": 18.31976449, "OBJECTID_1": 39094, "PARCEL_NO_": "107604063900", "Tax_Legal_": "70 FRYDENHOJ No. 3 RED HOOK QUARTER", "Name": "BLAZKOVA,MESEKE & OTHERS, TRUSTEES", "Address": "3725 Bonita Dr", "City": "Plano", "State": "Texas", "Zip": 75025, "Country": "United States", "Land_Value": 2000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.981709336599998, "SHAPE_Area": 122.478585272 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365461.14130000025034, 254557.10190000012517 ], [ 365466.36540000140667, 254536.818500000983477 ], [ 365466.135499998927116, 254536.804499998688698 ], [ 365464.533699996769428, 254535.524900000542402 ], [ 365461.04110000282526, 254534.464999999850988 ], [ 365455.733199998736382, 254556.499099999666214 ], [ 365458.531000003218651, 254556.811000000685453 ], [ 365461.14130000025034, 254557.10190000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604064200", "MAP": null, "PARCEL_NAM": "73", "ACRE": null, "LONGITUDE": -64.86789808, "LATITUDE": 18.31983388, "OBJECTID_1": 39097, "PARCEL_NO_": "107604064200", "Tax_Legal_": "73 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "FRANCIS, HOWARD D", "Address": "PO Box 8955", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.377439834500002, "SHAPE_Area": 153.44018047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365481.344800002872944, 254548.0810999982059 ], [ 365474.679200001060963, 254561.790100000798702 ], [ 365480.325099997222424, 254564.965300001204014 ], [ 365492.679099999368191, 254544.621100001037121 ], [ 365487.04389999806881, 254543.519600000232458 ], [ 365483.779100000858307, 254548.136900000274181 ], [ 365481.360200002789497, 254548.11710000038147 ], [ 365481.344800002872944, 254548.0810999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604064100", "MAP": null, "PARCEL_NAM": "15", "ACRE": null, "LONGITUDE": -64.86796841, "LATITUDE": 18.31981211, "OBJECTID_1": 39096, "PARCEL_NO_": "107604064100", "Tax_Legal_": "15 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.023570857000003, "SHAPE_Area": 123.367885051 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365476.819399997591972, 254539.528499998152256 ], [ 365469.408100001513958, 254559.241700001060963 ], [ 365470.873000003397465, 254559.649500001221895 ], [ 365471.716300003230572, 254560.123799998313189 ], [ 365474.679200001060963, 254561.790100000798702 ], [ 365481.344800002872944, 254548.0810999982059 ], [ 365478.197899997234344, 254540.702899999916553 ], [ 365476.819399997591972, 254539.528499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604064000", "MAP": null, "PARCEL_NAM": "16", "ACRE": null, "LONGITUDE": -64.86803479, "LATITUDE": 18.31977626, "OBJECTID_1": 39095, "PARCEL_NO_": "107604064000", "Tax_Legal_": "16 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "GEORGE, C. A. J & BARNWELL, S", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.847644261600003, "SHAPE_Area": 210.05297941399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365474.195100001990795, 254537.292700000107288 ], [ 365471.668700002133846, 254537.139699999243021 ], [ 365470.165299996733665, 254537.048599999397993 ], [ 365466.36540000140667, 254536.818500000983477 ], [ 365461.14130000025034, 254557.10190000012517 ], [ 365462.109300002455711, 254557.209800001233816 ], [ 365464.259700000286102, 254557.808499999344349 ], [ 365465.241599999368191, 254558.081799998879433 ], [ 365468.179099999368191, 254558.899599999189377 ], [ 365468.945600003004074, 254559.113000001758337 ], [ 365469.408100001513958, 254559.241700001060963 ], [ 365476.819399997591972, 254539.528499998152256 ], [ 365476.17960000038147, 254538.983500000089407 ], [ 365474.195100001990795, 254537.292700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065000", "MAP": "D9-716-T68", "PARCEL_NAM": "153", "ACRE": ".01", "LONGITUDE": -64.86758042, "LATITUDE": 18.32022242, "OBJECTID_1": 39105, "PARCEL_NO_": "107604065000", "Tax_Legal_": "153 FRYDENHOJ RED HOOK QTR", "Name": "VANTERPOOL, HAROLD & OTHERS", "Address": "PO Box 8632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.774299453899999, "SHAPE_Area": 137.88548451400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365521.531000003218651, 254589.309799998998642 ], [ 365507.965400002896786, 254596.901200000196695 ], [ 365509.053999997675419, 254604.170200001448393 ], [ 365517.010600000619888, 254601.447299998253584 ], [ 365525.002099998295307, 254598.712400000542402 ], [ 365521.531000003218651, 254589.309799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604064900", "MAP": "D9-1228-T75", "PARCEL_NAM": "25", "ACRE": ".008", "LONGITUDE": -64.86757857000001, "LATITUDE": 18.32015674, "OBJECTID_1": 39104, "PARCEL_NO_": "107604064900", "Tax_Legal_": "25 FRYDENHOJ RED HOOK QTR", "Name": "VANTERPOOL, HAROLD & OTHERS", "Address": "PO Box 8632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.106382618200001, "SHAPE_Area": 106.37923033600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365528.978100001811981, 254581.060600001364946 ], [ 365503.703100003302097, 254594.714400000870228 ], [ 365504.079300001263618, 254595.694099999964237 ], [ 365505.475400000810623, 254598.415199998766184 ], [ 365507.965400002896786, 254596.901200000196695 ], [ 365521.531000003218651, 254589.309799998998642 ], [ 365529.291599996387959, 254584.966899998486042 ], [ 365528.978100001811981, 254581.060600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604064800", "MAP": "D9-1228-T75", "PARCEL_NAM": "24", "ACRE": ".008", "LONGITUDE": -64.86758492, "LATITUDE": 18.32012065, "OBJECTID_1": 39103, "PARCEL_NO_": "107604064800", "Tax_Legal_": "24 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "ELKINS, EDWARD", "Address": "1835 E 19th St", "City": "McMinnville", "State": "Oregon", "Zip": 97128, "Country": "United States", "Land_Value": 2400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.739707604000003, "SHAPE_Area": 112.92573015000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365528.618699997663498, 254576.834300000220537 ], [ 365502.325099997222424, 254591.125799998641014 ], [ 365503.703100003302097, 254594.714400000870228 ], [ 365528.978100001811981, 254581.060600001364946 ], [ 365528.686300002038479, 254577.424300000071526 ], [ 365528.618699997663498, 254576.834300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604064700", "MAP": "D9-1228-T75", "PARCEL_NAM": "21", "ACRE": ".008", "LONGITUDE": -64.86759773, "LATITUDE": 18.32008958, "OBJECTID_1": 39102, "PARCEL_NO_": "107604064700", "Tax_Legal_": "21 ESTATE FRYDENHOJ RED HOOK QTR", "Name": "MCINTOSH, E. & GOODWILL, B", "Address": "240 Lombard St", "City": "San Francisco", "State": "California", "Zip": 94111, "Country": "United States", "Land_Value": 2400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.957790908000007, "SHAPE_Area": 105.787982494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365528.230099998414516, 254573.443500000983477 ], [ 365500.873099997639656, 254587.598000001162291 ], [ 365501.068199999630451, 254588.032900001853704 ], [ 365501.550200000405312, 254589.107900001108646 ], [ 365502.325099997222424, 254591.125799998641014 ], [ 365528.618699997663498, 254576.834300000220537 ], [ 365528.230099998414516, 254573.443500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604064500", "MAP": "D9-1228-T75", "PARCEL_NAM": "7", "ACRE": ".016", "LONGITUDE": -64.86760489, "LATITUDE": 18.3199932, "OBJECTID_1": 39100, "PARCEL_NO_": "107604064500", "Tax_Legal_": "7 EST FRYDENHOJ RED HOOK QTR", "Name": "MCINTOSH, GOODWILL &", "Address": "240 Lombard St", "City": "San Francisco", "State": "California", "Zip": 94111, "Country": "United States", "Land_Value": 2400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.175240153700003, "SHAPE_Area": 188.01748017899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365522.054399996995926, 254560.752300001680851 ], [ 365497.912600003182888, 254580.996599998325109 ], [ 365498.139799997210503, 254581.503100000321865 ], [ 365499.040600001811981, 254583.511799998581409 ], [ 365526.977600000798702, 254568.432000000029802 ], [ 365526.357199996709824, 254566.850499998778105 ], [ 365524.093299999833107, 254563.531599998474121 ], [ 365523.171499997377396, 254562.180399999022484 ], [ 365522.054399996995926, 254560.752300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604064400", "MAP": "D9-1228-T75", "PARCEL_NAM": "6", "ACRE": ".025", "LONGITUDE": -64.86765632, "LATITUDE": 18.3199547, "OBJECTID_1": 39099, "PARCEL_NO_": "107604064400", "Tax_Legal_": "6 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "MICHAEL, E", "Address": "240 Lombard St", "City": "San Francisco", "State": "California", "Zip": 94111, "Country": "United States", "Land_Value": 12100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.101706464499998, "SHAPE_Area": 216.69678458800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365515.86710000038147, 254555.310300000011921 ], [ 365495.07490000128746, 254575.53489999845624 ], [ 365496.431999996304512, 254577.694899998605251 ], [ 365497.912600003182888, 254580.996599998325109 ], [ 365522.054399996995926, 254560.752300001680851 ], [ 365519.183100000023842, 254557.081500001251698 ], [ 365517.023999996483326, 254555.928199999034405 ], [ 365515.86710000038147, 254555.310300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702010400", "MAP": "D9-8875-T014", "PARCEL_NAM": "18-26 REM", "ACRE": ".482", "LONGITUDE": -64.85220641, "LATITUDE": 18.32847399, "OBJECTID_1": 39443, "PARCEL_NO_": "107702010400", "Tax_Legal_": "18-26 REM. SMITH BAY 1,2&3 EASTEND QUARTER", "Name": "PIETER & BARBARA P. STOEKEN REV. FAM. TRST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70800, "Improved_V": 327600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.69180646800001, "SHAPE_Area": 2050.1264294299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367138.052599996328354, 255517.771699998527765 ], [ 367135.567100003361702, 255515.552999999374151 ], [ 367132.605599999427795, 255487.671799998730421 ], [ 367131.218400001525879, 255485.478000000119209 ], [ 367127.30290000140667, 255477.734400000423193 ], [ 367120.143200002610683, 255466.276700001209974 ], [ 367117.727899998426437, 255465.834800001233816 ], [ 367115.29450000077486, 255467.503600001335144 ], [ 367118.241099998354912, 255500.24720000103116 ], [ 367118.867600001394749, 255521.361699998378754 ], [ 367123.108400002121925, 255558.895599998533726 ], [ 367133.068300001323223, 255558.208200000226498 ], [ 367160.244499996304512, 255556.360599998384714 ], [ 367163.273199997842312, 255544.651000000536442 ], [ 367151.147299997508526, 255532.179299999028444 ], [ 367146.703000001609325, 255525.354600001126528 ], [ 367138.052599996328354, 255517.771699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88558891, "LATITUDE": 18.31758412, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 5.27851020581, "SHAPE_Area": 0.10023805277 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363614.339400000870228, 254288.690499998629093 ], [ 363614.314400002360344, 254288.7635000012815 ], [ 363616.820100001990795, 254289.465900000184774 ], [ 363614.339400000870228, 254288.690499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109402010200", "MAP": "A3-106-T68", "PARCEL_NAM": "2", "ACRE": "12.00", "LONGITUDE": -64.88435364, "LATITUDE": 18.31313188, "OBJECTID_1": 42227, "PARCEL_NO_": "109402010200", "Tax_Legal_": "2&1A BOVONI WSTN PTN FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2735400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1569.9053648500001, "SHAPE_Area": 32482.218404499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363535.930900000035763, 254266.791700001806021 ], [ 363541.249399997293949, 254253.229400001466274 ], [ 363541.332500003278255, 254252.962099999189377 ], [ 363626.670699998736382, 254079.719500001519918 ], [ 363697.621799997985363, 253986.152499999850988 ], [ 363705.778499998152256, 253975.242300000041723 ], [ 363711.485600002110004, 253967.900800000876188 ], [ 363778.358400002121925, 253879.788800001144409 ], [ 363785.697999998927116, 253870.138599999248981 ], [ 363861.54280000180006, 253770.067699998617172 ], [ 363884.378499999642372, 253739.857099998742342 ], [ 363869.150200001895428, 253728.966699998825788 ], [ 363864.341099999845028, 253725.549899999052286 ], [ 363860.336499996483326, 253722.350699998438358 ], [ 363804.149999998509884, 253691.915500000119209 ], [ 363706.22580000013113, 253638.762899998575449 ], [ 363661.328400000929832, 253702.989999998360872 ], [ 363750.520199999213219, 253852.783300001174212 ], [ 363748.268899999558926, 253874.017099998891354 ], [ 363742.418700002133846, 253893.052600000053644 ], [ 363724.623400002717972, 253923.061000000685453 ], [ 363702.605599999427795, 253954.55350000038743 ], [ 363685.798100002110004, 253978.680799998342991 ], [ 363678.295500002801418, 253989.450899999588728 ], [ 363671.869800001382828, 253998.67509999871254 ], [ 363653.320000000298023, 254024.936200000345707 ], [ 363620.974299997091293, 254070.728500001132488 ], [ 363612.204000003635883, 254086.112900000065565 ], [ 363603.0591000020504, 254104.929400000721216 ], [ 363587.558700002729893, 254139.665899999439716 ], [ 363562.03660000115633, 254194.75730000063777 ], [ 363539.701700001955032, 254240.772199999541044 ], [ 363529.852799996733665, 254265.087900001555681 ], [ 363535.930900000035763, 254266.791700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604014100", "MAP": "F9-1683-T66", "PARCEL_NAM": "15BA", "ACRE": null, "LONGITUDE": -64.87370502, "LATITUDE": 18.32078305, "OBJECTID_1": 38895, "PARCEL_NO_": "107604014100", "Tax_Legal_": "15BA NADIR RED HOOK QTR", "Name": "PATTERSON, DONNA PHILLIP", "Address": "222 Bennie Dr", "City": "North East", "State": "Maryland", "Zip": 21901, "Country": "United States", "Land_Value": 46300, "Improved_V": 35600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.66946112599999, "SHAPE_Area": 883.76374053999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364841.577100001275539, 254662.401599999517202 ], [ 364894.740000002086163, 254662.011900000274181 ], [ 364894.221600003540516, 254654.769000001251698 ], [ 364891.089800000190735, 254643.766600001603365 ], [ 364842.687700003385544, 254646.114599999040365 ], [ 364842.630199998617172, 254652.869100000709295 ], [ 364841.577100001275539, 254662.401599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604014000", "MAP": "D9-8788-T013", "PARCEL_NAM": "15B REM", "ACRE": ".19", "LONGITUDE": -64.87360388, "LATITUDE": 18.32111384, "OBJECTID_1": 38894, "PARCEL_NO_": "107604014000", "Tax_Legal_": "15B REM., 15Bb-1& 15Bb-2 NADIR RED HOOK QTR.", "Name": "SAUTER-FRETT FAMILY TRUST", "Address": "PO Box 301738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62100, "Improved_V": 107400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.03274506700001, "SHAPE_Area": 1451.9666923899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364860.95610000193119, 254715.995700001716614 ], [ 364885.305799998342991, 254716.150499999523163 ], [ 364886.479299999773502, 254711.700899999588728 ], [ 364893.039399996399879, 254698.877900000661612 ], [ 364896.383400000631809, 254684.973099999129772 ], [ 364895.001199997961521, 254665.662200000137091 ], [ 364867.272600002586842, 254666.110599998384714 ], [ 364864.916799999773502, 254684.715599998831749 ], [ 364863.318599998950958, 254697.337400000542402 ], [ 364860.95610000193119, 254715.995700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604013900", "MAP": "D9-8788-T013", "PARCEL_NAM": "15BB", "ACRE": ".19", "LONGITUDE": -64.87384271000001, "LATITUDE": 18.32108756, "OBJECTID_1": 38893, "PARCEL_NO_": "107604013900", "Tax_Legal_": "15Bb REM.,15B-1 & 15B-2 NADIR 2 RED HOOK QUARTER", "Name": "PHILLIP, LARRY", "Address": "2834 Spotted Eagle Dr", "City": "Jacksonville", "State": "Florida", "Zip": 32226, "Country": "United States", "Land_Value": 0, "Improved_V": 57800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.13339427400001, "SHAPE_Area": 1486.3975986800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364835.445699997246265, 254715.833500001579523 ], [ 364860.95610000193119, 254715.995700001716614 ], [ 364863.318599998950958, 254697.337400000542402 ], [ 364864.916799999773502, 254684.715599998831749 ], [ 364867.272600002586842, 254666.110599998384714 ], [ 364895.001199997961521, 254665.662200000137091 ], [ 364894.740000002086163, 254662.011900000274181 ], [ 364841.577100001275539, 254662.401599999517202 ], [ 364839.135200001299381, 254684.504599999636412 ], [ 364835.445699997246265, 254715.833500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87959202, "LATITUDE": 18.32142366, "OBJECTID_1": 38656, "PARCEL_NO_": "107603033400", "Tax_Legal_": "33-35 NADIR RED HOOK QTR", "Name": "WALLACE, CHARLENE", "Address": "PO Box 303645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10800, "Improved_V": 93600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.121064305199994, "SHAPE_Area": 466.91241153700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364255.79169999808073, 254727.988000001758337 ], [ 364257.793799996376038, 254710.362100001424551 ], [ 364257.944200001657009, 254709.908100001513958 ], [ 364235.77250000089407, 254707.852899998426437 ], [ 364233.175499998033047, 254728.729899998754263 ], [ 364247.676600001752377, 254730.326200000941753 ], [ 364252.616700001060963, 254730.528000000864267 ], [ 364255.79169999808073, 254727.988000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87955858, "LATITUDE": 18.32124453, "OBJECTID_1": 38655, "PARCEL_NO_": "107603033300", "Tax_Legal_": "33-34 NADIR RED HOOK QTR", "Name": "OWENS, DAISY", "Address": "PO Box 1402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12000, "Improved_V": 81200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.114798929399996, "SHAPE_Area": 464.80031088300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364257.944200001657009, 254709.908100001513958 ], [ 364265.7246999964118, 254694.165800001472235 ], [ 364238.362300001084805, 254687.820199999958277 ], [ 364235.77250000089407, 254707.852899998426437 ], [ 364257.944200001657009, 254709.908100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87951939, "LATITUDE": 18.32110228, "OBJECTID_1": 38654, "PARCEL_NO_": "107603033200", "Tax_Legal_": "NADIR 33-33 RED HOOK QTR", "Name": "ALEXANDER, GERALD", "Address": "7168 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10800, "Improved_V": 99800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.876386304999997, "SHAPE_Area": 421.77530467399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364266.622800000011921, 254683.407400000840425 ], [ 364244.963799998164177, 254670.142299998551607 ], [ 364240.858499996364117, 254678.763599999248981 ], [ 364238.362300001084805, 254687.820199999958277 ], [ 364263.309399999678135, 254693.723900001496077 ], [ 364265.7246999964118, 254694.165800001472235 ], [ 364271.439099997282028, 254685.980000000447035 ], [ 364266.622800000011921, 254683.407400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603037600", "MAP": "D9-3681-T86", "PARCEL_NAM": "33-133", "ACRE": null, "LONGITUDE": -64.87952667, "LATITUDE": 18.32244267, "OBJECTID_1": 38698, "PARCEL_NO_": "107603037600", "Tax_Legal_": "NADIR ESTATE 33-133 RED HOOK QTR.", "Name": "RHYMER-BROWNE, LISA M", "Address": "6791 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.951795947200001, "SHAPE_Area": 26.347438252700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364257.160800002515316, 254835.716899998486042 ], [ 364247.655699998140335, 254827.429099999368191 ], [ 364246.030500002205372, 254828.893399998545647 ], [ 364254.835199996829033, 254836.564899999648333 ], [ 364257.160800002515316, 254835.716899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019700", "MAP": "F9-3921-T57", "PARCEL_NAM": "3-67", "ACRE": ".32", "LONGITUDE": -64.87954744, "LATITUDE": 18.32283471, "OBJECTID_1": 38573, "PARCEL_NO_": "107603019700", "Tax_Legal_": "3-60,67,68,69,76,98,& 100&104 BOVONI (EASTERN) 1 & 2 FRENCHMANS BAY QUARTER", "Name": "LIMA, AGUSTIN J.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 7.7167953609, "SHAPE_Area": 1.43230223987 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364248.345799997448921, 254874.349800001829863 ], [ 364247.829899996519089, 254875.028400000184774 ], [ 364250.425999999046326, 254877.166200000792742 ], [ 364248.345799997448921, 254874.349800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603030100", "MAP": "A9-78-T67", "PARCEL_NAM": "33-25", "ACRE": "0.09", "LONGITUDE": -64.8793005, "LATITUDE": 18.32249204, "OBJECTID_1": 38623, "PARCEL_NO_": "107603030100", "Tax_Legal_": "NADIR 33-25 & 33-132 RED HOOK QUARTER", "Name": "BREWLEY, ELAINE", "Address": "PO Box 271", "City": "Brice", "State": "Ohio", "Zip": 43109, "Country": "United States", "Land_Value": 19100, "Improved_V": 154200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.651111060800005, "SHAPE_Area": 401.01321303100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364270.970899999141693, 254847.758400000631809 ], [ 364290.253600001335144, 254843.820799998939037 ], [ 364287.874200001358986, 254839.157299999147654 ], [ 364283.146099999547005, 254826.241900000721216 ], [ 364257.160800002515316, 254835.716899998486042 ], [ 364270.970899999141693, 254847.758400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603037900", "MAP": "D9-4236-T88", "PARCEL_NAM": "33-130", "ACRE": ".13", "LONGITUDE": -64.87932933, "LATITUDE": 18.32275321, "OBJECTID_1": 38701, "PARCEL_NO_": "107603037900", "Tax_Legal_": "ESTATE NADIR 33-130 RED HOOK QUARTER", "Name": "BREWLEY, CAROLYN & EARL,JR.", "Address": "8G Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16200, "Improved_V": 6400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.06324831699999, "SHAPE_Area": 1213.2832839099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364268.118900001049042, 254848.340700000524521 ], [ 364248.345799997448921, 254874.349800001829863 ], [ 364250.425999999046326, 254877.166200000792742 ], [ 364253.660300001502037, 254879.8293999992311 ], [ 364270.829300001263618, 254894.590799998492002 ], [ 364276.506999999284744, 254884.418600000441074 ], [ 364289.812100000679493, 254860.581000000238419 ], [ 364295.024700000882149, 254851.242199998348951 ], [ 364290.253600001335144, 254843.820799998939037 ], [ 364268.118900001049042, 254848.340700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87941784, "LATITUDE": 18.32253229, "OBJECTID_1": 38623, "PARCEL_NO_": "107603030100", "Tax_Legal_": "NADIR 33-25 & 33-132 RED HOOK QUARTER", "Name": "BREWLEY, ELAINE", "Address": "PO Box 271", "City": "Brice", "State": "Ohio", "Zip": 43109, "Country": "United States", "Land_Value": 19100, "Improved_V": 154200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.460583833400001, "SHAPE_Area": 40.516863690800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364268.118900001049042, 254848.340700000524521 ], [ 364270.970899999141693, 254847.758400000631809 ], [ 364269.521999999880791, 254846.495099999010563 ], [ 364257.160800002515316, 254835.716899998486042 ], [ 364254.835199996829033, 254836.564899999648333 ], [ 364268.118900001049042, 254848.340700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603053300", "MAP": "F9-3728-T79", "PARCEL_NAM": "18E", "ACRE": ".113", "LONGITUDE": -64.87497852, "LATITUDE": 18.32217214, "OBJECTID_1": 38766, "PARCEL_NO_": "107603053300", "Tax_Legal_": "18E NADIR RED HOOK QTR", "Name": "PHILLIPS, PAULETTE", "Address": "PO Box 9863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13200, "Improved_V": 84500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.41409579099999, "SHAPE_Area": 575.90128533500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364717.368199996650219, 254814.122400000691414 ], [ 364738.472800001502037, 254823.211300000548363 ], [ 364735.088899999856949, 254808.288600001484156 ], [ 364762.153300002217293, 254804.452100001275539 ], [ 364742.851899996399879, 254797.865899998694658 ], [ 364735.771600000560284, 254796.547100000083447 ], [ 364718.365500003099442, 254795.390599999576807 ], [ 364717.368199996650219, 254814.122400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603054300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8751862, "LATITUDE": 18.32258834, "OBJECTID_1": 38773, "PARCEL_NO_": "107603054300", "Tax_Legal_": "4GA NADIR NO.2 RED HOOK QTR", "Name": "SMITH, RAYMOND A. & AVERIL G.", "Address": "PO BOX 9222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13200, "Improved_V": 151700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.911368142900002, "SHAPE_Area": 478.67153431100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364715.096500001847744, 254867.821100000292063 ], [ 364720.187899999320507, 254839.508699998259544 ], [ 364720.712999999523163, 254836.589000001549721 ], [ 364706.213899999856949, 254836.508799999952316 ], [ 364705.574400000274181, 254838.977600000798702 ], [ 364698.450800001621246, 254866.478100001811981 ], [ 364701.309299997985363, 254866.394600000232458 ], [ 364715.096500001847744, 254867.821100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87539774, "LATITUDE": 18.32257575, "OBJECTID_1": 38742, "PARCEL_NO_": "107603050700", "Tax_Legal_": "4F NADIR RED HOOK QTR.", "Name": "HODGE, RAPHAEL", "Address": "PO Box 8061", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27200, "Improved_V": 61800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.636734089, "SHAPE_Area": 884.33784855399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364705.574400000274181, 254838.977600000798702 ], [ 364706.213899999856949, 254836.508799999952316 ], [ 364671.457999996840954, 254836.316700000315905 ], [ 364671.713100001215935, 254838.288100000470877 ], [ 364673.210699997842312, 254851.810300000011921 ], [ 364673.149499997496605, 254858.986999999731779 ], [ 364675.514499999582767, 254865.339200001209974 ], [ 364678.725400000810623, 254867.054200001060963 ], [ 364698.450800001621246, 254866.478100001811981 ], [ 364705.574400000274181, 254838.977600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603050900", "MAP": "D9-402-T63", "PARCEL_NAM": "18", "ACRE": null, "LONGITUDE": -64.87541619, "LATITUDE": 18.32227865, "OBJECTID_1": 38744, "PARCEL_NO_": "107603050900", "Tax_Legal_": "18 EST NADIR RED HOOK QTR", "Name": "GUMBS, CLARENCE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29900, "Improved_V": 133700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.01028190400001, "SHAPE_Area": 1302.1804227600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364710.373099997639656, 254836.531800001859665 ], [ 364692.344099998474121, 254794.831799998879433 ], [ 364676.921400003135204, 254794.849199999123812 ], [ 364672.383500002324581, 254797.46229999884963 ], [ 364669.605999998748302, 254801.684900000691414 ], [ 364668.764799997210503, 254805.755499999970198 ], [ 364668.233000002801418, 254811.399700000882149 ], [ 364671.457999996840954, 254836.316700000315905 ], [ 364710.373099997639656, 254836.531800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603053800", "MAP": null, "PARCEL_NAM": "17A-4", "ACRE": null, "LONGITUDE": -64.87549231, "LATITUDE": 18.32189925, "OBJECTID_1": 38769, "PARCEL_NO_": "107603053800", "Tax_Legal_": "17A-4 NADIR RED HOOK QTR", "Name": "QUETEL, ROBERT L.", "Address": "PO Box 305932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.199628672, "SHAPE_Area": 801.08384435999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364695.522399999201298, 254788.45380000025034 ], [ 364694.129100002348423, 254762.688900001347065 ], [ 364690.902099996805191, 254762.873599998652935 ], [ 364661.050499998033047, 254764.740200001746416 ], [ 364660.944399997591972, 254777.193900000303984 ], [ 364660.86710000038147, 254786.270300000905991 ], [ 364695.522399999201298, 254788.45380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603054700", "MAP": "D9-4361-T88", "PARCEL_NAM": "18-F", "ACRE": ".13", "LONGITUDE": -64.87521941, "LATITUDE": 18.32216039, "OBJECTID_1": 38777, "PARCEL_NO_": "107603054700", "Tax_Legal_": "18F NADIR RED HOOK QTR.", "Name": "GUMBS, VASHTI", "Address": "PO Box 304688", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.961576053900004, "SHAPE_Area": 446.102352322 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364702.555200003087521, 254818.449499998241663 ], [ 364717.368199996650219, 254814.122400000691414 ], [ 364718.365500003099442, 254795.390599999576807 ], [ 364709.660300001502037, 254794.812199998646975 ], [ 364692.344099998474121, 254794.831799998879433 ], [ 364702.555200003087521, 254818.449499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603054800", "MAP": "D9-4361-T88", "PARCEL_NAM": "18F-1", "ACRE": ".13", "LONGITUDE": -64.87507855, "LATITUDE": 18.32235739, "OBJECTID_1": 38778, "PARCEL_NO_": "107603054800", "Tax_Legal_": "18F-1 NADIR RED HOOK QTR.", "Name": "GUMBS, ADELAIDE", "Address": "PO Box 11353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.007372211, "SHAPE_Area": 622.85499522400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364740.612999998033047, 254836.699000000953674 ], [ 364738.472800001502037, 254823.211300000548363 ], [ 364717.368199996650219, 254814.122400000691414 ], [ 364702.555200003087521, 254818.449499998241663 ], [ 364710.373099997639656, 254836.531800001859665 ], [ 364740.612999998033047, 254836.699000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87478479000001, "LATITUDE": 18.32257561, "OBJECTID_1": 38745, "PARCEL_NO_": "107603051000", "Tax_Legal_": "18A NADIR RED HOOK QTR", "Name": "FAHIE, J. , ROMNEY, B. , DAWSON, J. , P", "Address": "PO Box 468", "City": "East End Tortola", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 26400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.54848735, "SHAPE_Area": 786.36925822000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364765.6233000010252, 254835.405200000852346 ], [ 364740.612999998033047, 254836.699000000953674 ], [ 364737.503899998962879, 254865.022599998861551 ], [ 364765.82150000333786, 254866.078299999237061 ], [ 364765.6233000010252, 254835.405200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603051200", "MAP": null, "PARCEL_NAM": "18-C", "ACRE": null, "LONGITUDE": -64.87466941, "LATITUDE": 18.32229822, "OBJECTID_1": 38747, "PARCEL_NO_": "107603051200", "Tax_Legal_": "NADIR 18C RED HOOK QTR", "Name": "MC BEAN, PAUL YOLANDA", "Address": "PO Box 7512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.45608419000001, "SHAPE_Area": 1371.12926612 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364740.105800002813339, 254833.502900000661612 ], [ 364808.949000000953674, 254829.911200001835823 ], [ 364805.663500003516674, 254827.352099999785423 ], [ 364796.844400003552437, 254821.369300000369549 ], [ 364779.186499997973442, 254811.725499998778105 ], [ 364762.153300002217293, 254804.452100001275539 ], [ 364735.088899999856949, 254808.288600001484156 ], [ 364738.472800001502037, 254823.211300000548363 ], [ 364740.105800002813339, 254833.502900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603053200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8745736, "LATITUDE": 18.32241295, "OBJECTID_1": 38765, "PARCEL_NO_": "107603053200", "Tax_Legal_": "18D NADIR RED HOOK QTR", "Name": "FAHIE, J. , ROMNEY, B. , DAWSON, J. , P", "Address": "PO Box 468", "City": "East End Tortola", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.32634034200001, "SHAPE_Area": 224.15910880300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364808.949000000953674, 254829.911200001835823 ], [ 364740.105800002813339, 254833.502900000661612 ], [ 364740.612999998033047, 254836.699000000953674 ], [ 364765.6233000010252, 254835.405200000852346 ], [ 364791.091499999165535, 254834.087699998170137 ], [ 364810.236800000071526, 254833.097300000488758 ], [ 364808.949000000953674, 254829.911200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603053100", "MAP": "A9-557-T000", "PARCEL_NAM": "6A REM", "ACRE": "0.59", "LONGITUDE": -64.87718307, "LATITUDE": 18.32131467, "OBJECTID_1": 38764, "PARCEL_NO_": "107603053100", "Tax_Legal_": "NADIR ESTATE 6A RED HOOK QTR", "Name": "JOSEPH, FLORENCE V. & OTHERS", "Address": "6416 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138600, "Improved_V": 140800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.147807124, "SHAPE_Area": 1965.1135929300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364530.764200001955032, 254724.199400000274181 ], [ 364495.757700003683567, 254675.727800000458956 ], [ 364490.820799998939037, 254680.176100000739098 ], [ 364479.444300003349781, 254690.426600001752377 ], [ 364465.652500003576279, 254700.235100001096725 ], [ 364504.857900001108646, 254736.230799999088049 ], [ 364529.8716000020504, 254734.324599999934435 ], [ 364530.764200001955032, 254724.199400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603054400", "MAP": "D9-4088-T87", "PARCEL_NAM": "6A-1", "ACRE": ".24", "LONGITUDE": -64.87688448, "LATITUDE": 18.32114185, "OBJECTID_1": 38774, "PARCEL_NO_": "107603054400", "Tax_Legal_": "6A-1 NADIR FED HOOK QTR.", "Name": "SIBIL D MCKAY TRUST", "Address": "PO Box 1644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 78400, "Improved_V": 70000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.92179523900001, "SHAPE_Area": 2054.74457837 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364566.244400002062321, 254675.510800000280142 ], [ 364501.292400002479553, 254670.680500000715256 ], [ 364498.946800000965595, 254672.854400001466274 ], [ 364495.757700003683567, 254675.727800000458956 ], [ 364530.764200001955032, 254724.199400000274181 ], [ 364534.833499997854233, 254719.799800001084805 ], [ 364566.583599999547005, 254684.384799998253584 ], [ 364565.824000000953674, 254678.8902000002563 ], [ 364566.244400002062321, 254675.510800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603060100", "MAP": "A9-557-T000", "PARCEL_NAM": "7A REM", "ACRE": "0.263", "LONGITUDE": -64.87680615, "LATITUDE": 18.32089175, "OBJECTID_1": 38782, "PARCEL_NO_": "107603060100", "Tax_Legal_": "7A NADIR RED HOOK QTR", "Name": "JOHN, CHARLES A", "Address": "PO BOX 502685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29600, "Improved_V": 152300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.15925755000001, "SHAPE_Area": 1284.09718793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364573.967299997806549, 254653.414000000804663 ], [ 364519.638999998569489, 254650.744800001382828 ], [ 364515.217000000178814, 254656.100000001490116 ], [ 364507.074699997901917, 254665.32149999961257 ], [ 364501.292400002479553, 254670.680500000715256 ], [ 364566.244400002062321, 254675.510800000280142 ], [ 364566.689699999988079, 254671.931099999696016 ], [ 364571.633599996566772, 254659.517099998891354 ], [ 364573.967299997806549, 254653.414000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": "A9-78-T67", "PARCEL_NAM": "33 REM", "ACRE": null, "LONGITUDE": -64.88028327000001, "LATITUDE": 18.3205692, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.35334668199999, "SHAPE_Area": 1560.5628722199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364199.742499999701977, 254614.639299999922514 ], [ 364173.847599998116493, 254593.777699999511242 ], [ 364168.939599998295307, 254601.970199998468161 ], [ 364153.441600002348423, 254622.741599999368191 ], [ 364148.54619999974966, 254629.456500001251698 ], [ 364168.745700001716614, 254656.800000000745058 ], [ 364199.742499999701977, 254614.639299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87302043, "LATITUDE": 18.31822952, "OBJECTID_1": 38926, "PARCEL_NO_": "107604021600", "Tax_Legal_": "11B-2 NADIR RED HOOK QTR", "Name": "PIMENTEL, ROSARIO & ORTIZ, EDUARDO", "Address": "PO Box 502575", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28500, "Improved_V": 99500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.437374699, "SHAPE_Area": 914.10881795399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364922.727600000798702, 254387.804099999368191 ], [ 364970.61089999973774, 254372.089699998497963 ], [ 364966.861299999058247, 254362.999000001698732 ], [ 364955.644799999892712, 254354.46339999884367 ], [ 364913.52589999884367, 254376.494600001722574 ], [ 364922.727600000798702, 254387.804099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021300", "MAP": "F9-3110-T73", "PARCEL_NAM": "11G", "ACRE": ".09", "LONGITUDE": -64.87337717, "LATITUDE": 18.31850346, "OBJECTID_1": 38922, "PARCEL_NO_": "107604021300", "Tax_Legal_": "NADIR ESTATE 11G&11T RED HOOK QTR", "Name": "SMITH, DOROTHY & OTHERS", "Address": "PO Box 10638", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9900, "Improved_V": 266400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.1617309003, "SHAPE_Area": 450.89801696199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364913.403399996459484, 254390.864100001752377 ], [ 364909.100400000810623, 254387.255100000649691 ], [ 364899.352099999785423, 254395.475499998778105 ], [ 364895.978799998760223, 254396.582499999552965 ], [ 364888.993100002408028, 254416.612700000405312 ], [ 364921.49889999628067, 254403.01630000025034 ], [ 364919.226599998772144, 254397.494899999350309 ], [ 364913.403399996459484, 254390.864100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021400", "MAP": "D9-8168-T008", "PARCEL_NAM": "11B-7 & 11H REM (COMB)", "ACRE": "0.334", "LONGITUDE": -64.87337968, "LATITUDE": 18.31831483, "OBJECTID_1": 38923, "PARCEL_NO_": "107604021400", "Tax_Legal_": "11B-7 EST NADIR RED HOOK QTR", "Name": "ROACH, HEZEKIAH", "Address": "PO Box 503274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 78400, "Improved_V": 525400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.15082263400001, "SHAPE_Area": 1263.88652419 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364944.330200001597404, 254393.295899998396635 ], [ 364941.554200001060963, 254381.625500001013279 ], [ 364922.727600000798702, 254387.804099999368191 ], [ 364913.52589999884367, 254376.494600001722574 ], [ 364895.939900003373623, 254358.407800000160933 ], [ 364892.665299996733665, 254355.791900001466274 ], [ 364875.300200000405312, 254371.897100001573563 ], [ 364876.460699997842312, 254373.236000001430511 ], [ 364893.996399998664856, 254397.2331000007689 ], [ 364895.978799998760223, 254396.582499999552965 ], [ 364899.352099999785423, 254395.475499998778105 ], [ 364909.100400000810623, 254387.255100000649691 ], [ 364913.403399996459484, 254390.864100001752377 ], [ 364921.150700002908707, 254395.361600000411272 ], [ 364923.913800001144409, 254402.00620000064373 ], [ 364926.21509999781847, 254401.043600000441074 ], [ 364927.84740000218153, 254400.5489999987185 ], [ 364926.543200001120567, 254398.789599999785423 ], [ 364944.330200001597404, 254393.295899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604022300", "MAP": "F9-2942-T72", "PARCEL_NAM": "11P", "ACRE": ".126", "LONGITUDE": -64.87283061, "LATITUDE": 18.31849041, "OBJECTID_1": 38932, "PARCEL_NO_": "107604022300", "Tax_Legal_": "11P NADIR RED HOOK QTR", "Name": "HAMM, ALTURO & RAYNARD", "Address": "PO Box 8708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12200, "Improved_V": 75800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.701696150800004, "SHAPE_Area": 391.91743064500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364973.109099999070168, 254386.836500000208616 ], [ 364952.034500002861023, 254393.2212999984622 ], [ 364953.560099996626377, 254398.65430000051856 ], [ 364954.090599998831749, 254400.543800000101328 ], [ 364959.131399996578693, 254418.49549999833107 ], [ 364961.557599999010563, 254417.628800000995398 ], [ 364964.811700001358986, 254414.278000000864267 ], [ 364972.199699997901917, 254398.928599998354912 ], [ 364973.06360000371933, 254392.180700000375509 ], [ 364973.109099999070168, 254386.836500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021700", "MAP": "F9-1147-T63", "PARCEL_NAM": "11J", "ACRE": ".073", "LONGITUDE": -64.87305411, "LATITUDE": 18.31854497, "OBJECTID_1": 38927, "PARCEL_NO_": "107604021700", "Tax_Legal_": "11J NADIR RED HOOK QTR", "Name": "DAVID, GENEVERE & I. LETTESOME", "Address": "P.O.BOX 3731", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12600, "Improved_V": 140700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.579711709899996, "SHAPE_Area": 318.573067364 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364944.837300002574921, 254395.401799999177456 ], [ 364926.21509999781847, 254401.043600000441074 ], [ 364929.093299999833107, 254406.6689000017941 ], [ 364933.261500000953674, 254413.457600001245737 ], [ 364943.827799998223782, 254416.428199999034405 ], [ 364950.275200001895428, 254417.984400000423193 ], [ 364946.195299997925758, 254401.04109999909997 ], [ 364945.867799997329712, 254399.68129999935627 ], [ 364944.837300002574921, 254395.401799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604022200", "MAP": "F9-1766-T66", "PARCEL_NAM": "11Q", "ACRE": ".107", "LONGITUDE": -64.87288008, "LATITUDE": 18.31833829, "OBJECTID_1": 38931, "PARCEL_NO_": "107604022200", "Tax_Legal_": "11Q NADIR 2 RED HOOK", "Name": "HARRIGAN, DORINE", "Address": "BOX 4043", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12700, "Improved_V": 33700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.409281306300002, "SHAPE_Area": 442.76047657200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364941.554200001060963, 254381.625500001013279 ], [ 364944.330200001597404, 254393.295899998396635 ], [ 364944.837300002574921, 254395.401799999177456 ], [ 364952.034500002861023, 254393.2212999984622 ], [ 364973.109099999070168, 254386.836500000208616 ], [ 364973.162500001490116, 254380.571299999952316 ], [ 364971.5912000015378, 254375.703299999237061 ], [ 364970.61089999973774, 254372.089699998497963 ], [ 364948.304899998009205, 254379.410100001841784 ], [ 364941.554200001060963, 254381.625500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021700", "MAP": "D9-7386-T004", "PARCEL_NAM": "11H-2", "ACRE": ".02", "LONGITUDE": -64.87308653, "LATITUDE": 18.31845864, "OBJECTID_1": 38927, "PARCEL_NO_": "107604021700", "Tax_Legal_": "11J NADIR RED HOOK QTR", "Name": "DAVID, GENEVERE & I. LETTESOME", "Address": "P.O.BOX 3731", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12600, "Improved_V": 140700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.7247151742, "SHAPE_Area": 38.424253439200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364926.543200001120567, 254398.789599999785423 ], [ 364927.84740000218153, 254400.5489999987185 ], [ 364944.837300002574921, 254395.401799999177456 ], [ 364944.330200001597404, 254393.295899998396635 ], [ 364926.543200001120567, 254398.789599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021200", "MAP": "F9-3126-T73", "PARCEL_NAM": "11F-A", "ACRE": ".01", "LONGITUDE": -64.87325891, "LATITUDE": 18.31856238, "OBJECTID_1": 38921, "PARCEL_NO_": "107604021200", "Tax_Legal_": "NADIR ESTATE 11F RED HOOK QTR", "Name": "ROACH (LIFE ESTATE), HEZEKIAH", "Address": "6430 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.0457346723, "SHAPE_Area": 45.601952191000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364919.801299996674061, 254409.359900001436472 ], [ 364921.49889999628067, 254403.01630000025034 ], [ 364913.223499998450279, 254406.477699998766184 ], [ 364915.382700003683567, 254410.37779999896884 ], [ 364918.177799999713898, 254415.426500000059605 ], [ 364919.801299996674061, 254409.359900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021300", "MAP": "F9-3126-T73", "PARCEL_NAM": "11-T", "ACRE": ".009", "LONGITUDE": -64.8732198, "LATITUDE": 18.31858408, "OBJECTID_1": 38922, "PARCEL_NO_": "107604021300", "Tax_Legal_": "NADIR ESTATE 11G&11T RED HOOK QTR", "Name": "SMITH, DOROTHY & OTHERS", "Address": "PO Box 10638", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9900, "Improved_V": 266400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.844939228000001, "SHAPE_Area": 44.111072378099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364918.177799999713898, 254415.426500000059605 ], [ 364919.233199998736382, 254415.232799999415874 ], [ 364925.299800001084805, 254414.119199998676777 ], [ 364923.73650000244379, 254408.453299999237061 ], [ 364921.49889999628067, 254403.01630000025034 ], [ 364919.801299996674061, 254409.359900001436472 ], [ 364918.177799999713898, 254415.426500000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604023600", "MAP": "F9-3127-T73", "PARCEL_NAM": "11S", "ACRE": ".02", "LONGITUDE": -64.8732125, "LATITUDE": 18.31868776, "OBJECTID_1": 38941, "PARCEL_NO_": "107604023600", "Tax_Legal_": "11-S NADIR RED HOOK QTR", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.015340084400002, "SHAPE_Area": 183.29650928300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364918.177799999713898, 254415.426500000059605 ], [ 364913.817699998617172, 254430.912599999457598 ], [ 364927.164399996399879, 254427.750799998641014 ], [ 364931.402900002896786, 254417.814699999988079 ], [ 364929.697700001299381, 254417.132100000977516 ], [ 364925.299800001084805, 254414.119199998676777 ], [ 364919.233199998736382, 254415.232799999415874 ], [ 364918.177799999713898, 254415.426500000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021900", "MAP": "F9-1468-T64", "PARCEL_NAM": "11L", "ACRE": ".09", "LONGITUDE": -64.8731305, "LATITUDE": 18.31880076, "OBJECTID_1": 38928, "PARCEL_NO_": "107604021900", "Tax_Legal_": "11L NADIR RED HOOK QTR", "Name": "WILLIAMS, ELIZABETH", "Address": "PO Box 9112", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.025648478099995, "SHAPE_Area": 427.95505526300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364931.402900002896786, 254417.814699999988079 ], [ 364916.92679999768734, 254451.750599998980761 ], [ 364932.049500003457069, 254448.426899999380112 ], [ 364944.590400002896786, 254421.259700000286102 ], [ 364942.26969999819994, 254420.878199998289347 ], [ 364937.376299999654293, 254420.205899998545647 ], [ 364931.402900002896786, 254417.814699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604022100", "MAP": "F9-1962-T67", "PARCEL_NAM": "11PA", "ACRE": ".032", "LONGITUDE": -64.87293615, "LATITUDE": 18.31854516, "OBJECTID_1": 38930, "PARCEL_NO_": "107604022100", "Tax_Legal_": "11PA NADIR RED HOOK", "Name": "HARRIGAN, DORINE C", "Address": "BOX 4043", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.041342823199997, "SHAPE_Area": 200.53092177900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364959.131399996578693, 254418.49549999833107 ], [ 364954.090599998831749, 254400.543800000101328 ], [ 364953.560099996626377, 254398.65430000051856 ], [ 364952.034500002861023, 254393.2212999984622 ], [ 364944.837300002574921, 254395.401799999177456 ], [ 364945.867799997329712, 254399.68129999935627 ], [ 364946.195299997925758, 254401.04109999909997 ], [ 364950.275200001895428, 254417.984400000423193 ], [ 364951.070200003683567, 254418.176300000399351 ], [ 364957.51349999755621, 254419.073399998247623 ], [ 364959.131399996578693, 254418.49549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604022000", "MAP": "F9-1629-T65", "PARCEL_NAM": "11N", "ACRE": ".76", "LONGITUDE": -64.87298829, "LATITUDE": 18.31879931, "OBJECTID_1": 38929, "PARCEL_NO_": "107604022000", "Tax_Legal_": "11N NADIR&12C RED HOOK QTR", "Name": "JENNINGS, LAVERNE", "Address": "PO Box 12116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9900, "Improved_V": 206000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.451876931300006, "SHAPE_Area": 381.87338799100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364932.049500003457069, 254448.426899999380112 ], [ 364948.098200000822544, 254444.899599999189377 ], [ 364950.785400003194809, 254444.309000000357628 ], [ 364958.518299996852875, 254424.86600000038743 ], [ 364955.662900000810623, 254423.841400001198053 ], [ 364949.485600002110004, 254422.064500000327826 ], [ 364944.590400002896786, 254421.259700000286102 ], [ 364932.049500003457069, 254448.426899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604022600", "MAP": "G9-2082-T72", "PARCEL_NAM": "11R", "ACRE": ".03", "LONGITUDE": -64.87269008, "LATITUDE": 18.31847386, "OBJECTID_1": 38935, "PARCEL_NO_": "107604022600", "Tax_Legal_": "11R NADIR RED HOOK", "Name": "SMITH, JANET,JULIETTE,JANUETT P. SMITH AND OTHERS", "Address": "6611 Estate Nadir # 11-R", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021613, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.984439818, "SHAPE_Area": 488.61553575699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364958.518299996852875, 254424.86600000038743 ], [ 364962.270700000226498, 254425.121399998664856 ], [ 364982.775200001895428, 254416.156500000506639 ], [ 364985.980800002813339, 254390.386500000953674 ], [ 364984.189000003039837, 254378.512499999254942 ], [ 364979.146300002932549, 254368.378100000321865 ], [ 364974.457599997520447, 254363.445099998265505 ], [ 364973.098600000143051, 254364.486800000071526 ], [ 364978.595600001513958, 254380.875500001013279 ], [ 364976.747299998998642, 254401.078999999910593 ], [ 364968.434799998998642, 254415.394900001585484 ], [ 364964.18299999833107, 254421.035399999469519 ], [ 364958.518299996852875, 254424.86600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604022000", "MAP": "F9-2290-T68", "PARCEL_NAM": "12C", "ACRE": ".016", "LONGITUDE": -64.87301008, "LATITUDE": 18.31892428, "OBJECTID_1": 38929, "PARCEL_NO_": "107604022000", "Tax_Legal_": "11N NADIR&12C RED HOOK QTR", "Name": "JENNINGS, LAVERNE", "Address": "PO Box 12116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9900, "Improved_V": 206000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.899250236500002, "SHAPE_Area": 75.7988129915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364932.049500003457069, 254448.426899999380112 ], [ 364947.951200000941753, 254453.023200001567602 ], [ 364950.785400003194809, 254444.309000000357628 ], [ 364948.098200000822544, 254444.899599999189377 ], [ 364932.049500003457069, 254448.426899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604022400", "MAP": "G9-2082-T72", "PARCEL_NAM": "11M", "ACRE": ".06", "LONGITUDE": -64.87277961, "LATITUDE": 18.31876733, "OBJECTID_1": 38933, "PARCEL_NO_": "107604022400", "Tax_Legal_": "11M NADIR RED HOOK QTR", "Name": "SMITH, JANET,JULIETTE,JANUETT P. SMITH AND OTHERS", "Address": "6611 Estate Nadir # 11-R", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021613, "Country": "United States", "Land_Value": 3800, "Improved_V": 187900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.1565328155, "SHAPE_Area": 480.66308436899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364958.518299996852875, 254424.86600000038743 ], [ 364950.785400003194809, 254444.309000000357628 ], [ 364955.384999997913837, 254443.298099998384714 ], [ 364978.88629999756813, 254438.13289999961853 ], [ 364982.518200002610683, 254418.222600001841784 ], [ 364982.775200001895428, 254416.156500000506639 ], [ 364962.270700000226498, 254425.121399998664856 ], [ 364958.518299996852875, 254424.86600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87278545, "LATITUDE": 18.32019201, "OBJECTID_1": 38885, "PARCEL_NO_": "107604012700", "Tax_Legal_": "14A ESTATE NADIR RED HOOK QTR", "Name": "RABSATT, ESRIDGE", "Address": "14A EST NADIR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 81000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.26489105600001, "SHAPE_Area": 1391.8935801800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364990.577399998903275, 254608.061599999666214 ], [ 364979.544299997389317, 254577.995999999344349 ], [ 364976.420900002121925, 254569.908399999141693 ], [ 364975.261600002646446, 254566.906800001859665 ], [ 364941.866400003433228, 254572.205699998885393 ], [ 364942.184500001370907, 254572.892900001257658 ], [ 364944.057599999010563, 254578.761100001633167 ], [ 364955.891500003635883, 254609.466499999165535 ], [ 364990.577399998903275, 254608.061599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87307318000001, "LATITUDE": 18.32021951, "OBJECTID_1": 38875, "PARCEL_NO_": "107604012200", "Tax_Legal_": "NADIR 14G RED HOOK QTR", "Name": "CHRISTIAN, JOAN M", "Address": "PO BOX 11226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23200, "Improved_V": 162700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.157264583, "SHAPE_Area": 972.42623588599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364914.958400003612041, 254576.47520000115037 ], [ 364930.078699998557568, 254610.521800000220537 ], [ 364949.4391999989748, 254609.624800000339746 ], [ 364955.891500003635883, 254609.466499999165535 ], [ 364944.057599999010563, 254578.761100001633167 ], [ 364942.184500001370907, 254572.892900001257658 ], [ 364941.866400003433228, 254572.205699998885393 ], [ 364931.866599999368191, 254573.792300000786781 ], [ 364914.958400003612041, 254576.47520000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87304618, "LATITUDE": 18.32074177, "OBJECTID_1": 38873, "PARCEL_NO_": "107604012000", "Tax_Legal_": "14 ESTATE NADIR RED HOOK QTR", "Name": "VESSUP, HERBERT", "Address": "4910 N Monroe St", "City": "Tallahassee", "State": "Florida", "Zip": 32303, "Country": "United States", "Land_Value": 153900, "Improved_V": 78100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 498.18215605900002, "SHAPE_Area": 6556.76021674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364901.365000002086163, 254646.966299999505281 ], [ 364922.358900003135204, 254644.72690000012517 ], [ 364922.437100000679493, 254655.633299998939037 ], [ 364921.46000000089407, 254675.679099999368191 ], [ 364928.063299998641014, 254657.790199998766184 ], [ 364934.504799999296665, 254658.898400001227856 ], [ 364932.028399996459484, 254665.633200000971556 ], [ 364938.918300002813339, 254708.752599999308586 ], [ 364984.075400002300739, 254708.699999999254942 ], [ 365014.717100001871586, 254708.739700000733137 ], [ 364993.180399999022484, 254681.121300000697374 ], [ 364968.450900003314018, 254649.677099999040365 ], [ 364947.483199998736382, 254649.927600000053644 ], [ 364930.078699998557568, 254610.521800000220537 ], [ 364914.958400003612041, 254576.47520000115037 ], [ 364869.295800000429153, 254583.720600001513958 ], [ 364875.400499999523163, 254592.342399999499321 ], [ 364888.88849999755621, 254618.206199999898672 ], [ 364892.869699999690056, 254624.149399999529123 ], [ 364899.194300003349781, 254638.977699998766184 ], [ 364901.365000002086163, 254646.966299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012400", "MAP": "G9-592-T61", "PARCEL_NAM": "12B", "ACRE": ".202", "LONGITUDE": -64.87321444, "LATITUDE": 18.31917201, "OBJECTID_1": 38882, "PARCEL_NO_": "107604012400", "Tax_Legal_": "EST NADIR 12B RED HOOK QTR", "Name": "MULRAINE PETERSEN, LAUREN LEE", "Address": "201 Kenwick Cir", "City": "Greensboro", "State": "North Carolina", "Zip": 27406, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.621307004, "SHAPE_Area": 866.725926018 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364941.295800000429153, 254461.8918999992311 ], [ 364908.896999999880791, 254462.191500000655651 ], [ 364903.39469999819994, 254489.750599998980761 ], [ 364932.96000000089407, 254490.240499999374151 ], [ 364941.295800000429153, 254461.8918999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604014600", "MAP": "D9-2706-T84", "PARCEL_NAM": "12F", "ACRE": ".22", "LONGITUDE": -64.87359627, "LATITUDE": 18.31997772, "OBJECTID_1": 38900, "PARCEL_NO_": "107604014600", "Tax_Legal_": "12F EST NADIR RED HOOK QTR", "Name": "HYDMAN, JAMES & CHERYL", "Address": "PO Box 9675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26600, "Improved_V": 193500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.29416060899999, "SHAPE_Area": 1621.82678908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364914.958400003612041, 254576.47520000115037 ], [ 364888.011500000953674, 254541.253100000321865 ], [ 364848.207599997520447, 254558.292500000447035 ], [ 364849.861100003123283, 254561.313700001686811 ], [ 364855.431500002741814, 254570.01410000026226 ], [ 364861.822700001299381, 254577.032499998807907 ], [ 364865.028200000524521, 254579.380800001323223 ], [ 364865.32660000026226, 254579.592799998819828 ], [ 364867.432700000703335, 254581.089200001209974 ], [ 364869.295800000429153, 254583.720600001513958 ], [ 364904.739399999380112, 254578.096700001507998 ], [ 364914.958400003612041, 254576.47520000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012600", "MAP": "G9-592-T61", "PARCEL_NAM": "12A", "ACRE": ".201", "LONGITUDE": -64.87290143, "LATITUDE": 18.31917851, "OBJECTID_1": 38884, "PARCEL_NO_": "107604012600", "Tax_Legal_": "NADIR ESTATE 12A RED HOOK QTR", "Name": "ALNOBANI, ABDELHAKEEM & MAJDI MUHYIEDDEEN", "Address": "PO Box 12412", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65300, "Improved_V": 47100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.94022579599999, "SHAPE_Area": 1027.9845751099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364941.295800000429153, 254461.8918999992311 ], [ 364932.96000000089407, 254490.240499999374151 ], [ 364970.604000002145767, 254491.58559999987483 ], [ 364972.303000003099442, 254481.467000000178814 ], [ 364973.228000000119209, 254467.542399998754263 ], [ 364974.278200000524521, 254462.11879999935627 ], [ 364944.6537000015378, 254461.866399999707937 ], [ 364941.295800000429153, 254461.8918999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012300", "MAP": "A9-490-T96", "PARCEL_NAM": "ROW", "ACRE": ".217", "LONGITUDE": -64.87319848, "LATITUDE": 18.31934621, "OBJECTID_1": 38877, "PARCEL_NO_": "107604012300", "Tax_Legal_": "12 ESTATE NADIR RED HOOK QTR", "Name": "MONSANTO & MULRAINE", "Address": "PO Box 502584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 216000, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.28020516800001, "SHAPE_Area": 682.65851383999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364903.39469999819994, 254489.750599998980761 ], [ 364895.255800001323223, 254489.562300000339746 ], [ 364890.227200001478195, 254489.638399999588728 ], [ 364887.585500001907349, 254490.567899998277426 ], [ 364886.739500001072884, 254491.512600000947714 ], [ 364884.929700002074242, 254493.163100000470877 ], [ 364883.349200002849102, 254496.005399998277426 ], [ 364883.214299999177456, 254497.789099998772144 ], [ 364883.557199999690056, 254499.695900000631809 ], [ 364884.97240000218153, 254502.206799998879433 ], [ 364886.514399997889996, 254503.885800000280142 ], [ 364889.019100002944469, 254504.978000000119209 ], [ 364890.095399998128414, 254505.106199998408556 ], [ 364892.607199996709824, 254505.365600001066923 ], [ 364894.762900002300739, 254505.264899998903275 ], [ 364896.565600000321865, 254504.447399999946356 ], [ 364897.296999998390675, 254502.906700000166893 ], [ 364898.266800001263618, 254501.487100001424551 ], [ 364898.87950000166893, 254499.826400000602007 ], [ 364900.210400000214577, 254498.171900000423193 ], [ 364901.179200001060963, 254496.871199999004602 ], [ 364902.383400000631809, 254496.048500001430511 ], [ 364903.943599998950958, 254495.585900001227856 ], [ 364955.889600001275539, 254496.742400001734495 ], [ 364958.521099999547005, 254497.00279999896884 ], [ 364959.713100001215935, 254497.607900001108646 ], [ 364964.692100003361702, 254503.361900001764297 ], [ 364967.278800003230572, 254507.510499998927116 ], [ 364968.915899999439716, 254500.437699999660254 ], [ 364970.604000002145767, 254491.58559999987483 ], [ 364932.96000000089407, 254490.240499999374151 ], [ 364903.39469999819994, 254489.750599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012500", "MAP": "F9-2291-T68", "PARCEL_NAM": "12D", "ACRE": ".15", "LONGITUDE": -64.87283112, "LATITUDE": 18.31895271, "OBJECTID_1": 38883, "PARCEL_NO_": "107604012500", "Tax_Legal_": "NADIR 12D RED HOOK QTR", "Name": "SMITH, JANET,JULIETTE,JANUETT P. SMITH AND OTHERS", "Address": "6611 Estate Nadir # 11-R", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021613, "Country": "United States", "Land_Value": 18900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.431587935, "SHAPE_Area": 596.97094559499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364941.295800000429153, 254461.8918999992311 ], [ 364944.6537000015378, 254461.866399999707937 ], [ 364974.278200000524521, 254462.11879999935627 ], [ 364978.288800001144409, 254441.40819999948144 ], [ 364978.88629999756813, 254438.13289999961853 ], [ 364955.384999997913837, 254443.298099998384714 ], [ 364950.785400003194809, 254444.309000000357628 ], [ 364947.951200000941753, 254453.023200001567602 ], [ 364941.295800000429153, 254461.8918999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012300", "MAP": "A9-490-T96", "PARCEL_NAM": "12G", "ACRE": ".967", "LONGITUDE": -64.87326336, "LATITUDE": 18.31980083, "OBJECTID_1": 38877, "PARCEL_NO_": "107604012300", "Tax_Legal_": "12 ESTATE NADIR RED HOOK QTR", "Name": "MONSANTO & MULRAINE", "Address": "PO Box 502584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 216000, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.17012581799997, "SHAPE_Area": 3679.5370470500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364965.675300002098083, 254538.958999998867512 ], [ 364931.402699999511242, 254545.975299999117851 ], [ 364928.672399997711182, 254523.354699999094009 ], [ 364897.762800000607967, 254529.87049999833107 ], [ 364892.607199996709824, 254505.365600001066923 ], [ 364890.095399998128414, 254505.106199998408556 ], [ 364889.019100002944469, 254504.978000000119209 ], [ 364886.514399997889996, 254503.885800000280142 ], [ 364859.434600003063679, 254530.351100001484156 ], [ 364868.518799997866154, 254549.597699999809265 ], [ 364888.011500000953674, 254541.253100000321865 ], [ 364914.958400003612041, 254576.47520000115037 ], [ 364931.866599999368191, 254573.792300000786781 ], [ 364975.261600002646446, 254566.906800001859665 ], [ 364966.131899997591972, 254543.2668999992311 ], [ 364965.675300002098083, 254538.958999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012300", "MAP": "A9-490-T96", "PARCEL_NAM": "12 REM", "ACRE": "1.2672", "LONGITUDE": -64.87373483, "LATITUDE": 18.31934175, "OBJECTID_1": 38877, "PARCEL_NO_": "107604012300", "Tax_Legal_": "12 ESTATE NADIR RED HOOK QTR", "Name": "MONSANTO & MULRAINE", "Address": "PO Box 502584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 216000, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 397.99210860099998, "SHAPE_Area": 5127.9036183899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364868.518799997866154, 254549.597699999809265 ], [ 364859.434600003063679, 254530.351100001484156 ], [ 364886.514399997889996, 254503.885800000280142 ], [ 364884.97240000218153, 254502.206799998879433 ], [ 364883.557199999690056, 254499.695900000631809 ], [ 364883.214299999177456, 254497.789099998772144 ], [ 364883.349200002849102, 254496.005399998277426 ], [ 364884.929700002074242, 254493.163100000470877 ], [ 364886.739500001072884, 254491.512600000947714 ], [ 364887.585500001907349, 254490.567899998277426 ], [ 364890.227200001478195, 254489.638399999588728 ], [ 364895.255800001323223, 254489.562300000339746 ], [ 364903.39469999819994, 254489.750599998980761 ], [ 364908.896999999880791, 254462.191500000655651 ], [ 364941.295800000429153, 254461.8918999992311 ], [ 364947.951200000941753, 254453.023200001567602 ], [ 364932.049500003457069, 254448.426899999380112 ], [ 364871.990299999713898, 254461.626899998635054 ], [ 364830.866300001740456, 254470.665300000458956 ], [ 364828.005400002002716, 254476.486299999058247 ], [ 364825.489399999380112, 254487.864799998700619 ], [ 364826.178800001740456, 254501.591499999165535 ], [ 364829.281800001859665, 254515.9712999984622 ], [ 364834.774899996817112, 254533.748100001364946 ], [ 364848.207599997520447, 254558.292500000447035 ], [ 364868.518799997866154, 254549.597699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012300", "MAP": "D9-6157-T96", "PARCEL_NAM": "12H-1", "ACRE": ".264", "LONGITUDE": -64.87331344, "LATITUDE": 18.3194985, "OBJECTID_1": 38877, "PARCEL_NO_": "107604012300", "Tax_Legal_": "12 ESTATE NADIR RED HOOK QTR", "Name": "MONSANTO & MULRAINE", "Address": "PO Box 502584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 216000, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.792069802, "SHAPE_Area": 961.11242847899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364928.672399997711182, 254523.354699999094009 ], [ 364925.458400003612041, 254496.064899999648333 ], [ 364903.943599998950958, 254495.585900001227856 ], [ 364902.383400000631809, 254496.048500001430511 ], [ 364901.179200001060963, 254496.871199999004602 ], [ 364900.210400000214577, 254498.171900000423193 ], [ 364898.87950000166893, 254499.826400000602007 ], [ 364898.266800001263618, 254501.487100001424551 ], [ 364897.296999998390675, 254502.906700000166893 ], [ 364896.565600000321865, 254504.447399999946356 ], [ 364894.762900002300739, 254505.264899998903275 ], [ 364892.607199996709824, 254505.365600001066923 ], [ 364897.762800000607967, 254529.87049999833107 ], [ 364928.672399997711182, 254523.354699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604012300", "MAP": "D9-6157-T96", "PARCEL_NAM": "12H REM", "ACRE": ".40", "LONGITUDE": -64.87298136, "LATITUDE": 18.31956166, "OBJECTID_1": 38877, "PARCEL_NO_": "107604012300", "Tax_Legal_": "12 ESTATE NADIR RED HOOK QTR", "Name": "MONSANTO & MULRAINE", "Address": "PO Box 502584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 216000, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.094024545, "SHAPE_Area": 1681.4628495899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364925.458400003612041, 254496.064899999648333 ], [ 364928.672399997711182, 254523.354699999094009 ], [ 364931.402699999511242, 254545.975299999117851 ], [ 364965.675300002098083, 254538.958999998867512 ], [ 364963.892800003290176, 254522.139199998229742 ], [ 364967.278800003230572, 254507.510499998927116 ], [ 364964.692100003361702, 254503.361900001764297 ], [ 364959.713100001215935, 254497.607900001108646 ], [ 364958.521099999547005, 254497.00279999896884 ], [ 364955.889600001275539, 254496.742400001734495 ], [ 364925.458400003612041, 254496.064899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021000", "MAP": "F9-666-T60", "PARCEL_NAM": "11E REM", "ACRE": ".20", "LONGITUDE": -64.87376723, "LATITUDE": 18.31862157, "OBJECTID_1": 38919, "PARCEL_NO_": "107604021000", "Tax_Legal_": "11-E NAIDIR RED HOOK QTR", "Name": "ANNIE SMITH REVOCABLE FAMILY TRUST", "Address": "1312 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19700, "Improved_V": 104300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.932343489100006, "SHAPE_Area": 410.93993136 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364875.385300002992153, 254419.962099999189377 ], [ 364876.288800001144409, 254402.281100001186132 ], [ 364852.771999999880791, 254408.927999999374151 ], [ 364851.888400003314018, 254417.997800000011921 ], [ 364849.928199999034405, 254426.228100001811981 ], [ 364875.385300002992153, 254419.962099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604020900", "MAP": "F9-481-T59", "PARCEL_NAM": "11D", "ACRE": ".22", "LONGITUDE": -64.87373892, "LATITUDE": 18.3187734, "OBJECTID_1": 38918, "PARCEL_NO_": "107604020900", "Tax_Legal_": "11D ESTATE NADIR RED HOOK QTR", "Name": "HENRY, WILMA A.", "Address": "PO BOX 11064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29900, "Improved_V": 130700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.314785724, "SHAPE_Area": 704.84585222800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364844.409299999475479, 254444.023499999195337 ], [ 364880.852200001478195, 254438.722100000828505 ], [ 364888.165200002491474, 254419.13910000026226 ], [ 364888.993100002408028, 254416.612700000405312 ], [ 364849.928199999034405, 254426.228100001811981 ], [ 364849.37950000166893, 254428.531899999827147 ], [ 364844.419399999082088, 254442.84569999948144 ], [ 364844.409299999475479, 254444.023499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604020800", "MAP": "F9-435-T59", "PARCEL_NAM": "11C", "ACRE": ".22", "LONGITUDE": -64.87383384, "LATITUDE": 18.31898004, "OBJECTID_1": 38917, "PARCEL_NO_": "107604020800", "Tax_Legal_": "11C NADIR RED HOOK QTR", "Name": "HENRY, WILMA A.", "Address": "PO BOX 11064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25500, "Improved_V": 92600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.50878506199999, "SHAPE_Area": 885.05158521600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364830.866300001740456, 254470.665300000458956 ], [ 364871.990299999713898, 254461.626899998635054 ], [ 364879.91330000013113, 254441.236400000751019 ], [ 364880.852200001478195, 254438.722100000828505 ], [ 364844.409299999475479, 254444.023499999195337 ], [ 364844.403200000524521, 254444.745400000363588 ], [ 364841.95549999922514, 254448.102899998426437 ], [ 364830.866300001740456, 254470.665300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021100", "MAP": "G9-737-T64", "PARCEL_NAM": "11K", "ACRE": ".20", "LONGITUDE": -64.87342844, "LATITUDE": 18.31889425, "OBJECTID_1": 38920, "PARCEL_NO_": "107604021100", "Tax_Legal_": "NADIR ESTATE 11K RED HOOK QTR", "Name": "WILLIAMS, ELIZABETH", "Address": "PO Box 9112", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.25474039100001, "SHAPE_Area": 970.063180106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364927.164399996399879, 254427.750799998641014 ], [ 364880.852200001478195, 254438.722100000828505 ], [ 364879.91330000013113, 254441.236400000751019 ], [ 364871.990299999713898, 254461.626899998635054 ], [ 364916.92679999768734, 254451.750599998980761 ], [ 364927.164399996399879, 254427.750799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604021200", "MAP": "F9-934-T62", "PARCEL_NAM": "11F", "ACRE": null, "LONGITUDE": -64.87341523000001, "LATITUDE": 18.31869776, "OBJECTID_1": 38921, "PARCEL_NO_": "107604021200", "Tax_Legal_": "NADIR ESTATE 11F RED HOOK QTR", "Name": "ROACH (LIFE ESTATE), HEZEKIAH", "Address": "6430 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.021920244, "SHAPE_Area": 688.41915958899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364913.817699998617172, 254430.912599999457598 ], [ 364918.177799999713898, 254415.426500000059605 ], [ 364915.382700003683567, 254410.37779999896884 ], [ 364913.223499998450279, 254406.477699998766184 ], [ 364888.993100002408028, 254416.612700000405312 ], [ 364888.165200002491474, 254419.13910000026226 ], [ 364880.852200001478195, 254438.722100000828505 ], [ 364913.817699998617172, 254430.912599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604044000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8701013, "LATITUDE": 18.31929687, "OBJECTID_1": 39034, "PARCEL_NO_": "107604044000", "Tax_Legal_": "FRYDENHOJ ESTATE 74 RED HOOK QUARTER", "Name": "FRETT, ALVIN", "Address": "PO Box 1007", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041007, "Country": "United States", "Land_Value": 148400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.40212651900001, "SHAPE_Area": 1421.2714851600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365251.710400000214577, 254528.71680000051856 ], [ 365286.857600003480911, 254512.818599998950958 ], [ 365255.120800003409386, 254507.002000000327826 ], [ 365264.195299997925758, 254483.011599998921156 ], [ 365248.882500000298023, 254482.041900001466274 ], [ 365248.354900002479553, 254449.31810000166297 ], [ 365237.01799999922514, 254454.924899999052286 ], [ 365230.481200002133846, 254465.003800000995398 ], [ 365238.321299999952316, 254491.243599999696016 ], [ 365249.348999999463558, 254521.942400000989437 ], [ 365251.710400000214577, 254528.71680000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010200", "MAP": "D9-7345-T004", "PARCEL_NAM": "B-2-2", "ACRE": "2.4", "LONGITUDE": -64.83040094, "LATITUDE": 18.31464272, "OBJECTID_1": 42277, "PARCEL_NO_": "109801010200", "Tax_Legal_": "B-1REM,B-1-1,B-1-2,B-2REM,B-2-1,B-2-2 GREAT ST. JAMES ISLAND NO. 6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2759500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 374.311683695, "SHAPE_Area": 8159.8178761099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369486.270099997520447, 253952.345800001174212 ], [ 369474.905699998140335, 253963.247099999338388 ], [ 369442.516099996864796, 253976.763900000602007 ], [ 369408.292900003492832, 253985.416000001132488 ], [ 369384.212499998509884, 253990.305900000035763 ], [ 369386.43860000371933, 253999.570999998599291 ], [ 369439.360399998724461, 254071.217099998146296 ], [ 369487.160800002515316, 254055.055700000375509 ], [ 369496.021600000560284, 254053.301600001752377 ], [ 369495.637800000607967, 253959.723700001835823 ], [ 369486.270099997520447, 253952.345800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010300", "MAP": "D9-7346-T004", "PARCEL_NAM": "C-2 REM", "ACRE": "2.5", "LONGITUDE": -64.83118323, "LATITUDE": 18.31492619, "OBJECTID_1": 42278, "PARCEL_NO_": "109801010300", "Tax_Legal_": "C-1REM,C-1-1,C-1-2,C-2REM,C-2-1,C-2-2 GREAT ST. JAMES ISLAND No.6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2739100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 401.57387957100002, "SHAPE_Area": 9199.8477618600009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369384.212499998509884, 253990.305900000035763 ], [ 369331.275200001895428, 253995.931499999016523 ], [ 369320.034999996423721, 253993.968299999833107 ], [ 369303.166599996387959, 254056.958999998867512 ], [ 369307.045999996364117, 254057.785399999469519 ], [ 369311.964299999177456, 254061.519200000911951 ], [ 369316.236900001764297, 254068.323100000619888 ], [ 369336.055299997329712, 254066.651000000536442 ], [ 369352.688100002706051, 254075.408399999141693 ], [ 369362.54619999974966, 254080.415699999779463 ], [ 369366.824199996888638, 254086.604400001466274 ], [ 369366.786499999463558, 254090.910000000149012 ], [ 369374.85809999704361, 254087.905000001192093 ], [ 369380.411300003528595, 254089.7989999987185 ], [ 369380.352099999785423, 254096.564899999648333 ], [ 369382.208599999547005, 254096.5810999982059 ], [ 369388.396799996495247, 254096.635299999266863 ], [ 369397.049500003457069, 254097.941300000995398 ], [ 369408.8125, 254097.429099999368191 ], [ 369424.950199998915195, 254092.034099999815226 ], [ 369425.622900001704693, 254085.888700000941753 ], [ 369437.504299998283386, 254071.844700001180172 ], [ 369439.360399998724461, 254071.217099998146296 ], [ 369386.43860000371933, 253999.570999998599291 ], [ 369384.212499998509884, 253990.305900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010100", "MAP": "A9-626-T004", "PARCEL_NAM": "A REM", "ACRE": "56.1", "LONGITUDE": -64.82768309, "LATITUDE": 18.31300047, "OBJECTID_1": 42276, "PARCEL_NO_": "109801010100", "Tax_Legal_": "A-1,A-2 & A REM GREAT ST. JAMES ISLAND No. 6A RED HOOK QTR.", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17000000, "Improved_V": 500000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3883.6004972199999, "SHAPE_Area": 232527.65053700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370275.928300000727177, 253742.906100001186132 ], [ 370275.35869999974966, 253743.048500001430511 ], [ 370207.096000000834465, 253750.192200001329184 ], [ 370097.558300003409386, 253723.204700000584126 ], [ 369988.020599998533726, 253712.885899998247623 ], [ 369967.383100003004074, 253657.323300000280142 ], [ 369903.88289999961853, 253630.335700001567602 ], [ 369700.682499997317791, 253631.923200000077486 ], [ 369633.213600002229214, 253595.410700000822544 ], [ 369522.463200002908707, 253550.954500000923872 ], [ 369511.156300000846386, 253557.928599998354912 ], [ 369385.790500000119209, 253507.717700000852346 ], [ 369392.090000003576279, 253525.501200001686811 ], [ 369396.053199999034405, 253533.555100001394749 ], [ 369400.048799999058247, 253537.80970000103116 ], [ 369405.624700002372265, 253545.876899998635054 ], [ 369408.792400002479553, 253552.657800000160933 ], [ 369411.141199998557568, 253560.909699998795986 ], [ 369411.900700002908707, 253566.404399998486042 ], [ 369411.008100003004074, 253576.529500000178814 ], [ 369412.498499996960163, 253590.896099999547005 ], [ 369412.221500001847744, 253623.402199998497963 ], [ 369413.710100002586842, 253637.979899998754263 ], [ 369412.610699996352196, 253672.379099998623133 ], [ 369410.062299996614456, 253687.557000000029802 ], [ 369405.075099997222424, 253705.037000000476837 ], [ 369403.444499999284744, 253707.134500000625849 ], [ 369397.670900002121925, 253722.285999998450279 ], [ 369393.536799997091293, 253734.284499999135733 ], [ 369393.518799997866154, 253736.395300000905991 ], [ 369391.071099996566772, 253739.75279999896884 ], [ 369391.816299997270107, 253746.936099998652935 ], [ 369390.876900002360344, 253762.549300000071526 ], [ 369386.658299997448921, 253784.468499999493361 ], [ 369387.417900003492832, 253789.963100001215935 ], [ 369385.616499997675419, 253812.113200001418591 ], [ 369379.707900002598763, 253843.095600001513958 ], [ 369376.410800002515316, 253851.51240000128746 ], [ 369373.122599996626377, 253858.873700000345707 ], [ 369363.321000002324581, 253873.570099998265505 ], [ 369357.624600000679493, 253879.645199999213219 ], [ 369404.984899997711182, 253904.941799998283386 ], [ 369419.395999997854233, 253917.092099998146296 ], [ 369457.991099998354912, 253930.073600001633167 ], [ 369486.270099997520447, 253952.345800001174212 ], [ 369495.637800000607967, 253959.723700001835823 ], [ 369653.718199998140335, 253955.951299998909235 ], [ 369689.579700000584126, 254005.851799998432398 ], [ 369699.077500000596046, 254026.827799998223782 ], [ 369694.054399996995926, 254048.52930000051856 ], [ 369664.921800002455711, 254072.936999998986721 ], [ 369667.695000000298023, 254075.0912000015378 ], [ 369674.367299996316433, 254090.527899999171495 ], [ 369674.255599997937679, 254091.393800001591444 ], [ 369674.336000002920628, 254091.431000001728535 ], [ 369683.95610000193119, 254098.053599998354912 ], [ 369689.551700003445148, 254103.7989999987185 ], [ 369692.733800001442432, 254108.89130000025034 ], [ 369692.717600002884865, 254110.791000001132488 ], [ 369697.478100001811981, 254119.906899999827147 ], [ 369702.258500002324581, 254126.701099999248981 ], [ 369705.391999997198582, 254137.492499999701977 ], [ 369707.769599996507168, 254142.36710000038147 ], [ 369730.857799999415874, 254177.175400000065565 ], [ 369741.154600001871586, 254199.002300001680851 ], [ 369745.938500002026558, 254205.374299999326468 ], [ 369754.683899998664856, 254220.011300001293421 ], [ 369761.854400001466274, 254230.202500000596046 ], [ 369772.248400002717972, 254240.631099998950958 ], [ 369808.218999996781349, 254259.608899999409914 ], [ 369821.743000000715256, 254262.207899998873472 ], [ 369823.484899997711182, 254266.829599998891354 ], [ 369843.065600000321865, 254269.836199998855591 ], [ 369858.0371999964118, 254269.967500001192093 ], [ 369868.061700001358986, 254265.094700001180172 ], [ 369885.894400000572205, 254264.188200000673532 ], [ 369892.372900001704693, 254257.15819999948144 ], [ 369899.861800000071526, 254256.869600001722574 ], [ 369906.972499996423721, 254259.058100000023842 ], [ 369920.180399999022484, 254257.048000000417233 ], [ 369916.33389999717474, 254248.510000001639128 ], [ 369928.481799997389317, 254245.427600000053644 ], [ 369933.844300001859665, 254243.702899999916553 ], [ 369936.039099998772144, 254237.344099998474121 ], [ 369933.578000001609325, 254233.424699999392033 ], [ 369928.637299999594688, 254227.711899999529123 ], [ 369929.421700000762939, 254219.568900000303984 ], [ 369923.727600000798702, 254218.455899998545647 ], [ 369906.614100001752377, 254218.660000000149012 ], [ 369900.907499998807907, 254218.964299999177456 ], [ 369897.358400002121925, 254217.161400001496077 ], [ 369897.392599999904633, 254213.263900000602007 ], [ 369902.764499999582767, 254210.476399999111891 ], [ 369906.338500000536442, 254209.444699998944998 ], [ 369918.483199998736382, 254206.716600000858307 ], [ 369923.504900000989437, 254203.217199999839067 ], [ 369925.687200002372265, 254198.275600001215935 ], [ 369925.380500003695488, 254192.603399999439716 ], [ 369919.7516999989748, 254184.049800001084805 ], [ 369916.664800003170967, 254170.203299999237061 ], [ 369908.934500001370907, 254157.379099998623133 ], [ 369902.601999998092651, 254147.756299998611212 ], [ 369895.150399997830391, 254143.793099999427795 ], [ 369888.771300002932549, 254139.484999999403954 ], [ 369888.836599998176098, 254132.044399999082088 ], [ 369881.391199998557568, 254127.372600000351667 ], [ 369877.538400001823902, 254119.543200001120567 ], [ 369871.168600000441074, 254114.172100000083447 ], [ 369866.230899997055531, 254108.105000000447035 ], [ 369856.311999998986721, 254100.931000001728535 ], [ 369845.01070000231266, 254088.784200001507998 ], [ 369828.675300002098083, 254081.554000001400709 ], [ 369824.10639999806881, 254074.072700001299381 ], [ 369814.603000000119209, 254060.169900000095367 ], [ 369803.782999999821186, 254041.194699998944998 ], [ 369791.790799997746944, 254029.0641999989748 ], [ 369777.440800003707409, 254009.737300001084805 ], [ 369776.656099997460842, 254007.197700001299381 ], [ 369771.879399999976158, 253999.981499999761581 ], [ 369760.652400001883507, 253984.425700001418591 ], [ 369756.522699996829033, 253967.864999998360872 ], [ 369757.121799997985363, 253953.706399999558926 ], [ 369754.371399998664856, 253942.351100001484156 ], [ 369750.667000003159046, 253931.459699999541044 ], [ 369752.699299998581409, 253916.369300000369549 ], [ 369749.081699997186661, 253895.563799999654293 ], [ 369744.956600002944469, 253871.221700001507998 ], [ 369744.735699996352196, 253871.23930000141263 ], [ 369654.248099997639656, 253881.558100000023842 ], [ 369655.835600003600121, 253810.12049999833107 ], [ 369656.268830881163012, 253799.135680502047762 ], [ 369657.404341682617087, 253788.201122276921524 ], [ 369659.237474726978689, 253777.361677106615389 ], [ 369661.760710799950175, 253766.661806636402616 ], [ 369664.963699996471405, 253756.145399998873472 ], [ 369667.825937370362226, 253748.804782802879345 ], [ 369671.315268510719761, 253741.740674097905867 ], [ 369675.405291537637822, 253735.006524170719786 ], [ 369680.065059460874181, 253728.653286688582739 ], [ 369685.259314338851254, 253722.729033160459949 ], [ 369690.948754056589678, 253717.278589205991011 ], [ 369697.090329703467432, 253712.343195384193677 ], [ 369703.637571301078424, 253707.960195148567436 ], [ 369710.540939416212495, 253704.162752289354103 ], [ 369717.748199999332428, 253700.979600001126528 ], [ 369790.773299999535084, 253677.563999999314547 ], [ 369823.714000001549721, 253766.464099999517202 ], [ 369823.965999998152256, 253766.940200001001358 ], [ 369839.526100002229214, 253765.104299999773502 ], [ 369861.91160000115633, 253758.218800000846386 ], [ 369871.906599998474121, 253755.945799998939037 ], [ 369892.834100000560284, 253752.824499998241663 ], [ 369921.844300001859665, 253748.829900000244379 ], [ 369942.701300002634525, 253753.734400000423193 ], [ 369954.466499999165535, 253766.347300000488758 ], [ 369965.981200002133846, 253794.129799999296665 ], [ 369969.353900000452995, 253832.91330000013113 ], [ 369972.199699997901917, 253861.234700001776218 ], [ 369966.441200003027916, 253882.714000001549721 ], [ 369974.334700003266335, 253900.007199998944998 ], [ 369998.350100003182888, 253913.7511 ], [ 370030.561499997973442, 253910.343100000172853 ], [ 370100.586199998855591, 253899.885899998247623 ], [ 370132.216600000858307, 253892.166999999433756 ], [ 370157.056199997663498, 253882.543099999427795 ], [ 370179.393500000238419, 253875.973000001162291 ], [ 370198.593299999833107, 253874.296399999409914 ], [ 370223.943599998950958, 253876.979800000786781 ], [ 370240.027699999511242, 253877.736400000751019 ], [ 370251.22070000320673, 253871.683400001376867 ], [ 370261.376299999654293, 253842.861200001090765 ], [ 370261.136100001633167, 253799.799199998378754 ], [ 370250.067500002682209, 253791.705099999904633 ], [ 370265.722199998795986, 253770.92790000140667 ], [ 370275.715499997138977, 253760.558400001376867 ], [ 370276.420900002121925, 253750.722300000488758 ], [ 370275.928300000727177, 253742.906100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010200", "MAP": "D9-7345-T004", "PARCEL_NAM": "B-2 REM", "ACRE": "4.4", "LONGITUDE": -64.82905999, "LATITUDE": 18.31457333, "OBJECTID_1": 42277, "PARCEL_NO_": "109801010200", "Tax_Legal_": "B-1REM,B-1-1,B-1-2,B-2REM,B-2-1,B-2-2 GREAT ST. JAMES ISLAND NO. 6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2759500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 572.96396929599996, "SHAPE_Area": 17740.967421400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369495.637800000607967, 253959.723700001835823 ], [ 369496.021600000560284, 254053.301600001752377 ], [ 369531.796800002455711, 254046.219500001519918 ], [ 369591.203699998557568, 254046.739900000393391 ], [ 369641.263599999248981, 254054.560100000351667 ], [ 369664.921800002455711, 254072.936999998986721 ], [ 369694.054399996995926, 254048.52930000051856 ], [ 369699.077500000596046, 254026.827799998223782 ], [ 369689.579700000584126, 254005.851799998432398 ], [ 369653.718199998140335, 253955.951299998909235 ], [ 369495.637800000607967, 253959.723700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010300", "MAP": "D9-7346-T004", "PARCEL_NAM": "C-2-2", "ACRE": "3.0", "LONGITUDE": -64.83229884000001, "LATITUDE": 18.31431171, "OBJECTID_1": 42278, "PARCEL_NO_": "109801010300", "Tax_Legal_": "C-1REM,C-1-1,C-1-2,C-2REM,C-2-1,C-2-2 GREAT ST. JAMES ISLAND No.6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2739100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 478.29023676000003, "SHAPE_Area": 13468.4900896 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369303.166599996387959, 254056.958999998867512 ], [ 369320.034999996423721, 253993.968299999833107 ], [ 369317.0658999979496, 253990.212499998509884 ], [ 369317.108300000429153, 253985.364100001752377 ], [ 369317.506300002336502, 253982.756799999624491 ], [ 369245.767399996519089, 253904.549100000411272 ], [ 369237.610399998724461, 253893.28830000013113 ], [ 369236.483800001442432, 253888.837699998170137 ], [ 369218.128300003707409, 253893.381900001317263 ], [ 369192.595100000500679, 253911.612900000065565 ], [ 369184.44820000231266, 253923.229299999773502 ], [ 369180.520199999213219, 253947.800400000065565 ], [ 369187.870899997651577, 253956.476599998772144 ], [ 369192.837600000202656, 253954.674600001424551 ], [ 369198.3800999969244, 253957.798700001090765 ], [ 369193.946199998259544, 253969.447500001639128 ], [ 369193.295500002801418, 253971.303700000047684 ], [ 369196.991999998688698, 253975.010299999266863 ], [ 369211.095899999141693, 253989.896899998188019 ], [ 369225.11370000243187, 254014.624800000339746 ], [ 369233.648199997842312, 254029.462600000202656 ], [ 369241.612199999392033, 254038.759199999272823 ], [ 369246.50900000333786, 254044.953400000929832 ], [ 369266.268299996852875, 254050.047200001776218 ], [ 369282.954999998211861, 254052.6537000015378 ], [ 369303.166599996387959, 254056.958999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010300", "MAP": "D9-7346-T004", "PARCEL_NAM": "C-2-1", "ACRE": "2.4", "LONGITUDE": -64.83164841, "LATITUDE": 18.31392907, "OBJECTID_1": 42278, "PARCEL_NO_": "109801010300", "Tax_Legal_": "C-1REM,C-1-1,C-1-2,C-2REM,C-2-1,C-2-2 GREAT ST. JAMES ISLAND No.6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2739100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 444.16558605799997, "SHAPE_Area": 10051.6611854 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369320.034999996423721, 253993.968299999833107 ], [ 369331.275200001895428, 253995.931499999016523 ], [ 369384.212499998509884, 253990.305900000035763 ], [ 369357.624600000679493, 253879.645199999213219 ], [ 369350.516699999570847, 253888.181499999016523 ], [ 369350.605700001120567, 253889.004200000315905 ], [ 369345.655100002884865, 253888.960900001227856 ], [ 369319.648199997842312, 253890.57880000025034 ], [ 369301.712999999523163, 253889.191700000315905 ], [ 369273.327600002288818, 253879.716400001198053 ], [ 369236.483800001442432, 253888.837699998170137 ], [ 369237.610399998724461, 253893.28830000013113 ], [ 369245.767399996519089, 253904.549100000411272 ], [ 369317.506300002336502, 253982.756799999624491 ], [ 369317.108300000429153, 253985.364100001752377 ], [ 369317.0658999979496, 253990.212499998509884 ], [ 369320.034999996423721, 253993.968299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010200", "MAP": "D9-7345-T004", "PARCEL_NAM": "B-2-1", "ACRE": "1.36", "LONGITUDE": -64.8307743, "LATITUDE": 18.31400679, "OBJECTID_1": 42277, "PARCEL_NO_": "109801010200", "Tax_Legal_": "B-1REM,B-1-1,B-1-2,B-2REM,B-2-1,B-2-2 GREAT ST. JAMES ISLAND NO. 6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2759500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.785079317, "SHAPE_Area": 6875.7471656799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369384.212499998509884, 253990.305900000035763 ], [ 369408.292900003492832, 253985.416000001132488 ], [ 369442.516099996864796, 253976.763900000602007 ], [ 369474.905699998140335, 253963.247099999338388 ], [ 369486.270099997520447, 253952.345800001174212 ], [ 369457.991099998354912, 253930.073600001633167 ], [ 369419.395999997854233, 253917.092099998146296 ], [ 369404.984899997711182, 253904.941799998283386 ], [ 369357.624600000679493, 253879.645199999213219 ], [ 369384.212499998509884, 253990.305900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010200", "MAP": "D9-7344-T004", "PARCEL_NAM": "B-1-1", "ACRE": "2.6", "LONGITUDE": -64.83524076, "LATITUDE": 18.30503209, "OBJECTID_1": 42277, "PARCEL_NO_": "109801010200", "Tax_Legal_": "B-1REM,B-1-1,B-1-2,B-2REM,B-2-1,B-2-2 GREAT ST. JAMES ISLAND NO. 6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2759500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 437.99632533, "SHAPE_Area": 8120.7735496400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368981.548699997365475, 252963.792899999767542 ], [ 368971.211400002241135, 252944.306600000709295 ], [ 368972.048900000751019, 252848.346700001507998 ], [ 368960.7550999969244, 252854.043200001120567 ], [ 368948.569799996912479, 252869.744500000029802 ], [ 368941.195100001990795, 252886.445900000631809 ], [ 368926.684000000357628, 252892.546500001102686 ], [ 368923.273199997842312, 252896.827899999916553 ], [ 368919.305200003087521, 252909.726799998432398 ], [ 368910.90820000320673, 252933.125399999320507 ], [ 368906.865000002086163, 252954.645899999886751 ], [ 368912.027900002896786, 252970.498599998652935 ], [ 368925.906599998474121, 252981.637099999934435 ], [ 368934.941299997270107, 252995.607400000095367 ], [ 368944.948100000619888, 253008.628199998289347 ], [ 368944.361699998378754, 253020.598499998450279 ], [ 368954.468900002539158, 253022.123700000345707 ], [ 368960.758500002324581, 253019.304499998688698 ], [ 368969.897699996829033, 253021.300400000065565 ], [ 368978.982500001788139, 253029.522900000214577 ], [ 368981.951700001955032, 253030.231300000101328 ], [ 368981.548699997365475, 252963.792899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010200", "MAP": "D9-7344-T004", "PARCEL_NAM": "B-1 REM", "ACRE": "10.3", "LONGITUDE": -64.83298976, "LATITUDE": 18.30537622, "OBJECTID_1": 42277, "PARCEL_NO_": "109801010200", "Tax_Legal_": "B-1REM,B-1-1,B-1-2,B-2REM,B-2-1,B-2-2 GREAT ST. JAMES ISLAND NO. 6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2759500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1283.99465889, "SHAPE_Area": 46241.1532095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369379.261600002646446, 253138.250599998980761 ], [ 369390.979000002145767, 252993.325199998915195 ], [ 369378.837300002574921, 252990.863899998366833 ], [ 369364.816399998962879, 252996.010400000959635 ], [ 369353.732900001108646, 252995.913400001823902 ], [ 369354.265100002288818, 252990.169900000095367 ], [ 369342.741700001060963, 252985.278900001198053 ], [ 369322.942299999296665, 252989.895899999886751 ], [ 369305.594200000166893, 252989.744199998676777 ], [ 369289.8091000020504, 252976.193599998950958 ], [ 369284.642399996519089, 252960.819899998605251 ], [ 369276.450199998915195, 252960.748199999332428 ], [ 369266.732799999415874, 252969.764600001275539 ], [ 369264.256399996578693, 252977.407200001180172 ], [ 369255.615800000727177, 252973.499600000679493 ], [ 369246.439000003039837, 252975.814399998635054 ], [ 369239.659000001847744, 252979.58729999884963 ], [ 369229.551899999380112, 252978.061900001019239 ], [ 369229.644000001251698, 252967.524300001561642 ], [ 369228.265299998223782, 252959.848000001162291 ], [ 369228.420299999415874, 252942.125599998980761 ], [ 369219.829899996519089, 252932.470199998468161 ], [ 369210.690800003707409, 252930.474199999123812 ], [ 369200.55009999871254, 252932.780699998140335 ], [ 369189.520999997854233, 252926.456999998539686 ], [ 369183.771799996495247, 252922.574700001627207 ], [ 369171.234200000762939, 252923.423099998384714 ], [ 369166.511600002646446, 252912.364399999380112 ], [ 369159.798600003123283, 252908.473600000143051 ], [ 369151.614799998700619, 252907.444099999964237 ], [ 369145.832099996507168, 252907.393500000238419 ], [ 369137.639899998903275, 252907.322000000625849 ], [ 369133.855899997055531, 252899.145599998533726 ], [ 369124.230599999427795, 252897.624400001019239 ], [ 369118.024599999189377, 252890.863899998366833 ], [ 369112.25450000166893, 252889.376499999314547 ], [ 369105.449400000274181, 252896.023299999535084 ], [ 369100.630500003695488, 252895.981199998408556 ], [ 369090.066500000655651, 252891.577799998223782 ], [ 369083.320000000298023, 252891.518800001591444 ], [ 369076.57769999653101, 252890.980900000780821 ], [ 369067.45099999755621, 252887.548099998384714 ], [ 369058.295000001788139, 252887.468100000172853 ], [ 369050.987199999392033, 252896.505699999630451 ], [ 369046.566500000655651, 252906.047400001436472 ], [ 369040.314400002360344, 252904.555799998342991 ], [ 369036.065200001001358, 252894.459300000220537 ], [ 369039.95380000025034, 252890.661100000143051 ], [ 369042.941399998962879, 252879.669700000435114 ], [ 369039.165700003504753, 252870.535399999469519 ], [ 369033.969499997794628, 252858.514499999582767 ], [ 369021.49040000140667, 252852.657299999147654 ], [ 368996.004399999976158, 252846.207499999552965 ], [ 368973.824799999594688, 252847.4510000012815 ], [ 368972.048900000751019, 252848.346700001507998 ], [ 368971.211400002241135, 252944.306600000709295 ], [ 368981.548699997365475, 252963.792899999767542 ], [ 369001.035099998116493, 252966.947000000625849 ], [ 369016.044600002467632, 252967.078099999576807 ], [ 369041.495700001716614, 252974.760299999266863 ], [ 369050.475299999117851, 252977.822700001299381 ], [ 369077.453400000929832, 252982.534299999475479 ], [ 369099.954599998891354, 252984.222899999469519 ], [ 369107.407200001180172, 252990.256000000983477 ], [ 369125.314400002360344, 253002.348400000482798 ], [ 369146.197300001978874, 253017.450899999588728 ], [ 369159.627599999308586, 253026.520199999213219 ], [ 369180.53660000115633, 253038.638999998569489 ], [ 369198.482799999415874, 253046.255800001323223 ], [ 369217.903800003230572, 253056.869500000029802 ], [ 369243.315499998629093, 253069.02760000154376 ], [ 369256.680500000715256, 253085.556400001049042 ], [ 369280.643399998545647, 253091.733899999409914 ], [ 369301.578400000929832, 253100.868999999016523 ], [ 369316.574699997901917, 253102.49210000038147 ], [ 369338.997500002384186, 253113.132199998944998 ], [ 369379.261600002646446, 253138.250599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010300", "MAP": "D9-7347-T004", "PARCEL_NAM": "C-1 REM", "ACRE": "26.9", "LONGITUDE": -64.8289017, "LATITUDE": 18.307177, "OBJECTID_1": 42278, "PARCEL_NO_": "109801010300", "Tax_Legal_": "C-1REM,C-1-1,C-1-2,C-2REM,C-2-1,C-2-2 GREAT ST. JAMES ISLAND No.6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2739100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2293.3297869200001, "SHAPE_Area": 114981.596405 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369765.800599999725819, 253402.984900001436472 ], [ 369765.445799998939037, 253401.485599998384714 ], [ 369758.430200003087521, 253401.632199998944998 ], [ 369743.93639999628067, 253399.191599998623133 ], [ 369733.486699998378754, 253395.306400001049042 ], [ 369723.855899997055531, 253389.950199998915195 ], [ 369717.475500002503395, 253381.665399998426437 ], [ 369715.072800002992153, 253379.745799999684095 ], [ 369707.904100000858307, 253369.343600001186132 ], [ 369706.300399996340275, 253368.274999998509884 ], [ 369697.551500000059605, 253354.060100000351667 ], [ 369694.358599998056889, 253350.234299998730421 ], [ 369681.667999997735023, 253325.432500001043081 ], [ 369680.064400002360344, 253324.363899998366833 ], [ 369678.478699997067451, 253321.184500001370907 ], [ 369673.684000000357628, 253316.078999999910593 ], [ 369671.299199998378754, 253312.048700001090765 ], [ 369666.502700001001358, 253307.15430000051856 ], [ 369659.339400000870228, 253296.11879999935627 ], [ 369656.216600000858307, 253284.060899998992682 ], [ 369655.554200001060963, 253267.168000001460314 ], [ 369656.391099996864796, 253263.586300000548363 ], [ 369661.33500000089407, 253251.172200001776218 ], [ 369664.587300002574921, 253248.032499998807907 ], [ 369670.348300002515316, 253234.358500000089407 ], [ 369673.674300000071526, 253222.564500000327826 ], [ 369677.912600003182888, 253198.323399998247623 ], [ 369678.859200000762939, 253181.865899998694658 ], [ 369682.113200001418591, 253178.515000000596046 ], [ 369683.756399996578693, 253174.939899999648333 ], [ 369685.377999998629093, 253173.897700000554323 ], [ 369686.204099997878075, 253171.582400001585484 ], [ 369688.642800003290176, 253169.280299998819828 ], [ 369689.468900002539158, 253166.96510000154376 ], [ 369691.092299997806549, 253165.711800001561642 ], [ 369692.73369999974966, 253162.347699999809265 ], [ 369694.357199996709824, 253161.094500001519918 ], [ 369702.522799998521805, 253149.129000000655651 ], [ 369703.348899997770786, 253146.813700001686811 ], [ 369704.972300000488758, 253145.560400001704693 ], [ 369715.612700000405312, 253128.431200001388788 ], [ 369724.144000001251698, 253119.703899998217821 ], [ 369736.050300002098083, 253109.385200001299381 ], [ 369746.633699998259544, 253099.331000000238419 ], [ 369757.746200002729893, 253095.362199999392033 ], [ 369762.508699998259544, 253094.303899999707937 ], [ 369768.594099998474121, 253093.245600000023842 ], [ 369776.79619999974966, 253093.245600000023842 ], [ 369783.146200001239777, 253093.245600000023842 ], [ 369790.025399997830391, 253093.245600000023842 ], [ 369798.22749999910593, 253093.510099999606609 ], [ 369810.398400001227856, 253094.039299998432398 ], [ 369816.483800001442432, 253095.362199999392033 ], [ 369819.129699997603893, 253097.478900000452995 ], [ 369821.510899998247623, 253099.066399998962879 ], [ 369822.569200001657009, 253101.183100000023842 ], [ 369824.156700000166893, 253104.622699998319149 ], [ 369826.538000002503395, 253107.797699999064207 ], [ 369828.919299997389317, 253111.501800000667572 ], [ 369833.681800000369549, 253113.089299999177456 ], [ 369838.70889999717474, 253113.618500001728535 ], [ 369845.323499999940395, 253113.089299999177456 ], [ 369851.144299998879433, 253109.120600000023842 ], [ 369855.377599999308586, 253104.093499999493361 ], [ 369859.611000001430511, 253101.183100000023842 ], [ 369866.675300002098083, 253095.166000001132488 ], [ 369869.936499997973442, 253090.970800001174212 ], [ 369872.46339999884367, 253078.325800001621246 ], [ 369879.050499998033047, 253062.33669999986887 ], [ 369883.960299998521805, 253053.933100000023842 ], [ 369891.299900002777576, 253044.282900001853704 ], [ 369897.122100003063679, 253023.432300001382828 ], [ 369902.989200003445148, 252997.304699998348951 ], [ 369901.412600003182888, 252993.069899998605251 ], [ 369898.219700001180172, 252989.244100000709295 ], [ 369895.010600000619888, 252987.317999999970198 ], [ 369887.760999999940395, 252986.414299998432398 ], [ 369883.718699999153614, 252987.647700000554323 ], [ 369876.463600002229214, 252987.377300001680851 ], [ 369865.184299997985363, 252986.229499999433756 ], [ 369855.526500001549721, 252984.039500001817942 ], [ 369846.624700002372265, 252987.76630000025034 ], [ 369841.75620000064373, 252991.315099999308586 ], [ 369833.603200003504753, 253001.802999999374151 ], [ 369823.8699000030756, 253008.478399999439716 ], [ 369815.785199999809265, 253010.945300001651049 ], [ 369806.105899997055531, 253011.28830000013113 ], [ 369794.749200001358986, 253019.216899998486042 ], [ 369785.842000000178814, 253023.576900001615286 ], [ 369775.327500000596046, 253027.290600001811981 ], [ 369759.982400000095367, 253030.120299998670816 ], [ 369744.655299998819828, 253030.839200001209974 ], [ 369729.333599999547005, 253030.924899999052286 ], [ 369715.635200001299381, 253029.75730000063777 ], [ 369701.141400001943111, 253027.316700000315905 ], [ 369683.442100003361702, 253022.527800001204014 ], [ 369671.408500000834465, 253015.252099998295307 ], [ 369660.9966000020504, 253006.934200000017881 ], [ 369652.199100002646446, 252998.418499998748302 ], [ 369640.23929999768734, 252982.488600000739098 ], [ 369607.405199997127056, 252955.833099998533726 ], [ 369591.36710000038147, 252945.358300000429153 ], [ 369586.570600003004074, 252940.463899999856949 ], [ 369576.925399996340275, 252936.796399999409914 ], [ 369570.474899999797344, 252936.743599999696016 ], [ 369563.94709999859333, 252945.767200000584126 ], [ 369560.664300002157688, 252952.495299998670816 ], [ 369556.479900002479553, 252970.403999999165535 ], [ 369554.006999999284744, 252976.716600000858307 ], [ 369545.043999999761581, 252987.620099999010563 ], [ 369536.927000001072884, 252993.886399999260902 ], [ 369520.739600002765656, 253000.931099999696016 ], [ 369495.661200001835823, 253010.436200000345707 ], [ 369472.211599998176098, 253018.054699998348951 ], [ 369460.100699998438358, 253019.855399999767542 ], [ 369449.618699997663498, 253019.769600000232458 ], [ 369434.318499997258186, 253017.322399999946356 ], [ 369419.045299999415874, 253011.708999998867512 ], [ 369411.019900001585484, 253007.210299998521805 ], [ 369400.608000002801418, 252998.892400000244379 ], [ 369390.979000002145767, 252993.325199998915195 ], [ 369379.261600002646446, 253138.250599998980761 ], [ 369410.873000003397465, 253133.157000001519918 ], [ 369473.847099997103214, 253141.168099999427795 ], [ 369508.342600002884865, 253144.454100001603365 ], [ 369552.983499996364117, 253174.236000001430511 ], [ 369569.528300002217293, 253185.273699998855591 ], [ 369596.113799996674061, 253234.74210000038147 ], [ 369597.418700002133846, 253257.133299998939037 ], [ 369580.647100001573563, 253286.8260000012815 ], [ 369527.000399999320507, 253341.678599998354912 ], [ 369527.36879999935627, 253547.928800001740456 ], [ 369669.230599999427795, 253460.219500001519918 ], [ 369777.465999998152256, 253429.614399999380112 ], [ 369773.10809999704361, 253416.582299999892712 ], [ 369765.800599999725819, 253402.984900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010300", "MAP": "D9-7347-T004", "PARCEL_NAM": "C-1-1", "ACRE": "2.77", "LONGITUDE": -64.82965977000001, "LATITUDE": 18.30772037, "OBJECTID_1": 42278, "PARCEL_NO_": "109801010300", "Tax_Legal_": "C-1REM,C-1-1,C-1-2,C-2REM,C-2-1,C-2-2 GREAT ST. JAMES ISLAND No.6A RED HOOK QTR", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2739100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 456.96224698999998, "SHAPE_Area": 12127.652225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369552.983499996364117, 253174.236000001430511 ], [ 369456.875200003385544, 253232.891399998217821 ], [ 369526.949500001966953, 253313.189300000667572 ], [ 369527.000399999320507, 253341.678599998354912 ], [ 369580.647100001573563, 253286.8260000012815 ], [ 369597.418700002133846, 253257.133299998939037 ], [ 369596.113799996674061, 253234.74210000038147 ], [ 369569.528300002217293, 253185.273699998855591 ], [ 369552.983499996364117, 253174.236000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038200", "MAP": "D9-2751-T84", "PARCEL_NAM": "B-2", "ACRE": null, "LONGITUDE": -64.86104647000001, "LATITUDE": 18.32362494, "OBJECTID_1": 39321, "PARCEL_NO_": "107701038200", "Tax_Legal_": "NAZARETH PARCEL \"N\" OF TRACT 1 NO.1 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2417600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1776.37725593, "SHAPE_Area": 69439.083366799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366306.524700000882149, 255150.419300001114607 ], [ 366296.346699997782707, 254791.192899998277426 ], [ 366279.197400003671646, 254792.33839999884367 ], [ 366247.742200002074242, 254793.136399999260902 ], [ 366202.594099998474121, 254792.133600000292063 ], [ 366149.40990000218153, 254787.898600000888109 ], [ 366159.214000001549721, 254867.561099998652935 ], [ 366114.002999998629093, 254873.946100000292063 ], [ 366098.6283999979496, 254785.583200000226498 ], [ 366095.395900003612041, 254786.401099998503923 ], [ 366092.960799999535084, 254788.280999999493361 ], [ 366090.504100002348423, 254792.693799998611212 ], [ 366088.798000000417233, 254803.656700000166893 ], [ 366089.39750000089407, 254827.937399998307228 ], [ 366091.692299999296665, 254842.521600000560284 ], [ 366095.583599999547005, 254859.018800001591444 ], [ 366096.3108000010252, 254868.312899999320507 ], [ 366093.746200002729893, 254885.390399999916553 ], [ 366090.43469999730587, 254895.495799999684095 ], [ 366090.893899999558926, 254936.240699999034405 ], [ 366092.319600000977516, 254958.206000000238419 ], [ 366102.736900001764297, 254965.890700001269579 ], [ 366119.593900002539158, 254974.894600000232458 ], [ 366133.218500003218651, 254984.716400001198053 ], [ 366142.023199997842312, 254992.387800000607967 ], [ 366146.01519999653101, 254997.064599998295307 ], [ 366147.622500002384186, 254997.710999999195337 ], [ 366156.396600000560284, 255008.970800001174212 ], [ 366161.155299998819828, 255018.297800000756979 ], [ 366163.51129999756813, 255025.705400001257658 ], [ 366164.256499998271465, 255032.888700000941753 ], [ 366171.22919999808073, 255066.298500001430511 ], [ 366170.306000001728535, 255080.011999998241663 ], [ 366168.6233000010252, 255088.230900000780821 ], [ 366161.220799997448921, 255105.268899999558926 ], [ 366150.623700000345707, 255118.692200001329184 ], [ 366149.001999996602535, 255119.734400000423193 ], [ 366147.364200003445148, 255122.676300000399351 ], [ 366139.227399997413158, 255131.264499999582767 ], [ 366133.543600000441074, 255135.861999999731779 ], [ 366129.467100001871586, 255141.105999998748302 ], [ 366121.269100002944469, 255156.870900001376867 ], [ 366119.613399997353554, 255161.923599999397993 ], [ 366119.546800002455711, 255169.733500000089407 ], [ 366306.524700000882149, 255150.419300001114607 ] ] ], [ [ [ 366101.844300001859665, 254976.015900000929832 ], [ 366093.826099999248981, 254970.672899998724461 ], [ 366098.1891999989748, 255026.437300000339746 ], [ 366100.381599999964237, 255053.052999999374151 ], [ 366104.05349999666214, 255095.30180000141263 ], [ 366106.285499997437, 255117.273800000548363 ], [ 366108.502999998629093, 255140.934399999678135 ], [ 366110.756499998271465, 255160.373500000685453 ], [ 366116.531999997794628, 255145.010899998247623 ], [ 366127.148900002241135, 255129.265799999237061 ], [ 366132.019100002944469, 255125.506000000983477 ], [ 366140.969499997794628, 255116.079999998211861 ], [ 366155.648500002920628, 255096.779599998146296 ], [ 366160.606899999082088, 255082.676899999380112 ], [ 366161.463600002229214, 255076.773299999535084 ], [ 366161.576800003647804, 255063.475299999117851 ], [ 366153.839199997484684, 255025.203999999910593 ], [ 366150.680500000715256, 255017.36769999936223 ], [ 366149.080399997532368, 255015.877000000327826 ], [ 366146.704700000584126, 255010.791299998760223 ], [ 366134.716099999845028, 254998.238600000739098 ], [ 366117.896799996495247, 254984.802099999040365 ], [ 366107.468699999153614, 254978.383900001645088 ], [ 366101.844300001859665, 254976.015900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702012600", "MAP": "D9-8847-T014", "PARCEL_NAM": "H OF TRACT 1", "ACRE": "2.296", "LONGITUDE": -64.85870524000001, "LATITUDE": 18.32265008, "OBJECTID_1": 39475, "PARCEL_NO_": "107702012600", "Tax_Legal_": "NAZARETH ESTATE TRACK A OF 1&2 RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 630900, "Improved_V": 8800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 363.58371239500002, "SHAPE_Area": 8263.3557137900007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366472.785700000822544, 254827.142799999564886 ], [ 366410.475299999117851, 254825.663600001484156 ], [ 366406.511799998581409, 254919.17119999974966 ], [ 366491.868000000715256, 254923.931200001388788 ], [ 366499.103100001811981, 254828.375599998980761 ], [ 366472.785700000822544, 254827.142799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702012600", "MAP": "D9-5103-T91", "PARCEL_NAM": "G OF TRACT 1", "ACRE": "1.00", "LONGITUDE": -64.85956808, "LATITUDE": 18.32340095, "OBJECTID_1": 39475, "PARCEL_NO_": "107702012600", "Tax_Legal_": "NAZARETH ESTATE TRACK A OF 1&2 RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 630900, "Improved_V": 8800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.68385963499998, "SHAPE_Area": 3817.7850963300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366299.778300002217293, 254912.308200001716614 ], [ 366340.569899998605251, 254933.366500001400709 ], [ 366338.721100002527237, 254991.392000000923872 ], [ 366396.441399998962879, 254991.217099998146296 ], [ 366398.832699999213219, 254948.629200000315905 ], [ 366299.441699996590614, 254900.428300000727177 ], [ 366299.778300002217293, 254912.308200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10760120200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87737054, "LATITUDE": 18.32805987, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 20.0307745426, "SHAPE_Area": 1.23728380622 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364476.455200001597404, 255461.921100001782179 ], [ 364475.189300000667572, 255458.544799998402596 ], [ 364472.98200000077486, 255452.667700000107288 ], [ 364472.744999997317791, 255452.745099999010563 ], [ 364476.455200001597404, 255461.921100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10760120200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87745504, "LATITUDE": 18.32776558, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 9.8891512503300003, "SHAPE_Area": 1.20936135566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364465.456200003623962, 255425.335299998521805 ], [ 364465.721100002527237, 255420.452500000596046 ], [ 364465.053300000727177, 255423.631099998950958 ], [ 364465.456200003623962, 255425.335299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10760120200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87739192, "LATITUDE": 18.3280082, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 14.0428935181, "SHAPE_Area": 1.5998039802499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364472.98200000077486, 255452.667700000107288 ], [ 364470.558300003409386, 255446.214600000530481 ], [ 364471.424199998378754, 255449.47859999909997 ], [ 364472.744999997317791, 255452.745099999010563 ], [ 364472.98200000077486, 255452.667700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10760120200", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-D", "ACRE": ".022", "LONGITUDE": -64.87786367, "LATITUDE": 18.32754574, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.356545729299995, "SHAPE_Area": 111.959610975 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364408.337999999523163, 255399.352600000798702 ], [ 364435.921999998390675, 255401.489999998360872 ], [ 364437.131899997591972, 255397.648600000888109 ], [ 364408.584700003266335, 255395.340999998152256 ], [ 364408.440600000321865, 255396.537999998778105 ], [ 364408.337999999523163, 255399.352600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10760120200", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-53", "ACRE": ".24", "LONGITUDE": -64.87716692, "LATITUDE": 18.32802982, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.372183046, "SHAPE_Area": 598.53754460799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364472.98200000077486, 255452.667700000107288 ], [ 364475.189300000667572, 255458.544799998402596 ], [ 364476.455200001597404, 255461.921100001782179 ], [ 364477.07209999859333, 255463.446800000965595 ], [ 364478.094899997115135, 255466.052099999040365 ], [ 364518.338699996471405, 255452.288699999451637 ], [ 364518.358000002801418, 255452.218800000846386 ], [ 364513.64299999922514, 255439.392200000584126 ], [ 364472.98200000077486, 255452.667700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10760120200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87663656, "LATITUDE": 18.32734146, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 6.0438175371599998, "SHAPE_Area": 0.06474821597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364550.616499997675419, 255376.161899998784065 ], [ 364553.064800001680851, 255377.293200001120567 ], [ 364553.388800002634525, 255377.347600001841784 ], [ 364553.182899996638298, 255377.296999998390675 ], [ 364550.616499997675419, 255376.161899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10760120200", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-52", "ACRE": ".23", "LONGITUDE": -64.87728746000001, "LATITUDE": 18.32776029, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.16077242899999, "SHAPE_Area": 992.81246419499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364465.721100002527237, 255420.452500000596046 ], [ 364465.456200003623962, 255425.335299998521805 ], [ 364469.029399998486042, 255440.451099999248981 ], [ 364469.186499997973442, 255441.043000001460314 ], [ 364508.30629999935627, 255428.758099999278784 ], [ 364505.970799997448921, 255419.747699998319149 ], [ 364472.007600001990795, 255402.041999999433756 ], [ 364471.4054000005126, 255403.214200001209974 ], [ 364466.770400002598763, 255415.457400001585484 ], [ 364465.721100002527237, 255420.452500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10760120200", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-A", "ACRE": ".8569", "LONGITUDE": -64.876773, "LATITUDE": 18.32779537, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.10195663600001, "SHAPE_Area": 3041.17704357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364470.558300003409386, 255446.214600000530481 ], [ 364472.98200000077486, 255452.667700000107288 ], [ 364513.64299999922514, 255439.392200000584126 ], [ 364518.358000002801418, 255452.218800000846386 ], [ 364518.338699996471405, 255452.288699999451637 ], [ 364588.034199997782707, 255428.452799998223782 ], [ 364575.711400002241135, 255396.965199999511242 ], [ 364575.550399996340275, 255396.739700000733137 ], [ 364575.512100003659725, 255396.763700000941753 ], [ 364505.970799997448921, 255419.747699998319149 ], [ 364508.30629999935627, 255428.758099999278784 ], [ 364469.186499997973442, 255441.043000001460314 ], [ 364470.558300003409386, 255446.214600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107801021000", "MAP": "D9-7337-T004", "PARCEL_NAM": "5-33A", "ACRE": ".38", "LONGITUDE": -64.84342379, "LATITUDE": 18.32348318, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.02673392400001, "SHAPE_Area": 1077.64148574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368051.526900000870228, 254959.748199999332428 ], [ 368042.223700001835823, 254980.454799998551607 ], [ 368046.750900000333786, 254982.434799998998642 ], [ 368063.149400003254414, 254992.44819999858737 ], [ 368080.445100001990795, 255002.764400001615286 ], [ 368086.234999999403954, 254985.713300000876188 ], [ 368088.713299997150898, 254978.767499998211861 ], [ 368089.801899999380112, 254975.827599998563528 ], [ 368051.526900000870228, 254959.748199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702035500", "MAP": "A9-537-T99", "PARCEL_NAM": "M-1", "ACRE": null, "LONGITUDE": -64.85680519, "LATITUDE": 18.32812867, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.55172215299999, "SHAPE_Area": 1008.0477648900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366632.89360000193119, 255500.132500000298023 ], [ 366655.773199997842312, 255504.471000000834465 ], [ 366664.115199998021126, 255463.588300000876188 ], [ 366660.543300002813339, 255462.726199999451637 ], [ 366645.226999998092651, 255462.178700000047684 ], [ 366637.073399998247623, 255463.02589999884367 ], [ 366632.89360000193119, 255500.132500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702035500", "MAP": "A9-537-T99", "PARCEL_NAM": "M-2", "ACRE": null, "LONGITUDE": -64.85656695, "LATITUDE": 18.32816875, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.31808472, "SHAPE_Area": 1113.79013652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366655.773199997842312, 255504.471000000834465 ], [ 366673.716300003230572, 255511.973400000482798 ], [ 366695.093800000846386, 255474.357299998402596 ], [ 366675.028200000524521, 255466.222300000488758 ], [ 366664.115199998021126, 255463.588300000876188 ], [ 366655.773199997842312, 255504.471000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702035500", "MAP": "A9-537-T99", "PARCEL_NAM": "M-3", "ACRE": null, "LONGITUDE": -64.85634788, "LATITUDE": 18.32825672, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.309867876, "SHAPE_Area": 1016.08879575 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366673.357400000095367, 255511.823300000280142 ], [ 366673.365500003099442, 255511.832299999892712 ], [ 366686.888899996876717, 255520.097199998795986 ], [ 366721.378300003707409, 255488.385200001299381 ], [ 366720.80629999935627, 255487.917399998754263 ], [ 366707.975500002503395, 255479.579700000584126 ], [ 366695.093800000846386, 255474.357299998402596 ], [ 366673.716300003230572, 255511.973400000482798 ], [ 366673.357400000095367, 255511.823300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702035500", "MAP": "A9-537-T99", "PARCEL_NAM": "M-4", "ACRE": null, "LONGITUDE": -64.85617837, "LATITUDE": 18.32838615, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.14661980700001, "SHAPE_Area": 1090.15999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366686.888999998569489, 255520.097199998795986 ], [ 366699.62389999628067, 255533.149300001561642 ], [ 366741.678099997341633, 255506.729600001126528 ], [ 366732.017399996519089, 255497.086199998855591 ], [ 366721.378300003707409, 255488.385200001299381 ], [ 366686.888999998569489, 255520.097199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013600", "MAP": "D9-7973-T007", "PARCEL_NAM": "2C-5", "ACRE": ".55", "LONGITUDE": -64.85426388, "LATITUDE": 18.31944796, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.311926427, "SHAPE_Area": 2439.8082851200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366947.888999998569489, 254476.598299998790026 ], [ 366940.84740000218153, 254464.471000000834465 ], [ 366936.647399999201298, 254477.912500001490116 ], [ 366925.928599998354912, 254489.562899999320507 ], [ 366918.520199999213219, 254495.648299999535084 ], [ 366923.471199996769428, 254510.102000001817942 ], [ 366909.05349999666214, 254520.547200001776218 ], [ 366901.057700000703335, 254526.339999999850988 ], [ 366901.429300002753735, 254532.346900001168251 ], [ 366902.645199999213219, 254552.004700001329184 ], [ 366896.083999998867512, 254553.684799998998642 ], [ 366897.565600000321865, 254565.353000000119209 ], [ 366916.33219999819994, 254559.920499999076128 ], [ 366935.610600002110004, 254554.717700000852346 ], [ 366947.888999998569489, 254476.598299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013600", "MAP": "D9-7973-T007", "PARCEL_NAM": "2C-4", "ACRE": ".50", "LONGITUDE": -64.85459105, "LATITUDE": 18.31948536, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.381356342, "SHAPE_Area": 2061.4273390799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366923.471199996769428, 254510.102000001817942 ], [ 366918.520199999213219, 254495.648299999535084 ], [ 366910.318099997937679, 254503.585799999535084 ], [ 366904.232699997723103, 254501.469099998474121 ], [ 366895.501400001347065, 254500.940000001341105 ], [ 366887.034800000488758, 254501.9983000010252 ], [ 366883.364600002765656, 254509.918000001460314 ], [ 366878.321299999952316, 254509.310300000011921 ], [ 366880.044699996709824, 254503.363600000739098 ], [ 366874.070100001990795, 254501.204500000923872 ], [ 366872.739200003445148, 254509.199700001627207 ], [ 366867.561899997293949, 254540.720300000160933 ], [ 366871.821699999272823, 254556.462999999523163 ], [ 366877.243699997663498, 254567.863099999725819 ], [ 366877.933600001037121, 254565.908599998801947 ], [ 366879.785599999129772, 254561.093199998140335 ], [ 366883.489799998700619, 254557.944600000977516 ], [ 366891.26860000193119, 254554.796100001782179 ], [ 366893.86150000244379, 254553.870099999010563 ], [ 366896.083999998867512, 254553.684799998998642 ], [ 366902.645199999213219, 254552.004700001329184 ], [ 366901.429300002753735, 254532.346900001168251 ], [ 366901.057700000703335, 254526.339999999850988 ], [ 366909.05349999666214, 254520.547200001776218 ], [ 366923.471199996769428, 254510.102000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013600", "MAP": "D9-7973-T007", "PARCEL_NAM": "2C-3", "ACRE": ".51", "LONGITUDE": -64.85491132, "LATITUDE": 18.31956607, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.34196586600001, "SHAPE_Area": 1612.5313872900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366837.736100003123283, 254553.525800000876188 ], [ 366869.784400001168251, 254566.093800000846386 ], [ 366875.706699997186661, 254572.252999998629093 ], [ 366875.711099997162819, 254572.205699998885393 ], [ 366877.243699997663498, 254567.863099999725819 ], [ 366871.821699999272823, 254556.462999999523163 ], [ 366867.561899997293949, 254540.720300000160933 ], [ 366872.739200003445148, 254509.199700001627207 ], [ 366842.040899999439716, 254508.5912000015378 ], [ 366837.736100003123283, 254553.525800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013600", "MAP": "D9-7973-T007", "PARCEL_NAM": "2C-2", "ACRE": ".505", "LONGITUDE": -64.85492342000001, "LATITUDE": 18.31997947, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.89635378, "SHAPE_Area": 1637.1018025799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366833.584600001573563, 254596.860399998724461 ], [ 366872.408100001513958, 254608.082800000905991 ], [ 366875.706699997186661, 254572.252999998629093 ], [ 366869.784400001168251, 254566.093800000846386 ], [ 366837.736100003123283, 254553.525800000876188 ], [ 366833.584600001573563, 254596.860399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012700", "MAP": null, "PARCEL_NAM": "28 REM", "ACRE": null, "LONGITUDE": -64.86597367, "LATITUDE": 18.32663075, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.64593080399999, "SHAPE_Area": 1009.7142875 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365695.42960000038147, 255326.515399999916553 ], [ 365689.317699998617172, 255288.362500000745058 ], [ 365687.613499999046326, 255281.801600001752377 ], [ 365660.417700000107288, 255300.231300000101328 ], [ 365674.871500000357628, 255327.441500000655651 ], [ 365676.694600000977516, 255330.358500000089407 ], [ 365695.42960000038147, 255326.515399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86605901, "LATITUDE": 18.32635568, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.76787256, "SHAPE_Area": 841.52481293699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365687.613499999046326, 255281.801600001752377 ], [ 365679.390799999237061, 255250.146299999207258 ], [ 365654.125399999320507, 255281.60359999909997 ], [ 365655.682300001382828, 255288.160199999809265 ], [ 365657.278800003230572, 255290.073100000619888 ], [ 365660.417700000107288, 255300.231300000101328 ], [ 365687.613499999046326, 255281.801600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012700", "MAP": "D9-8965-T015", "PARCEL_NAM": "28-N", "ACRE": ".034", "LONGITUDE": -64.8655913, "LATITUDE": 18.32628814, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.234662740399997, "SHAPE_Area": 265.303257035 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365725.176500000059605, 255256.249299999326468 ], [ 365707.804499998688698, 255268.0016999989748 ], [ 365707.894199997186661, 255268.05799999833107 ], [ 365718.395400002598763, 255274.6570999994874 ], [ 365728.107799999415874, 255290.662000000476837 ], [ 365728.261200003325939, 255287.487700000405312 ], [ 365725.968199998140335, 255272.692299999296665 ], [ 365726.101800002157688, 255257.009399998933077 ], [ 365725.176500000059605, 255256.249299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012800", "MAP": "D9-8965-T015", "PARCEL_NAM": "29-N", "ACRE": "0.23", "LONGITUDE": -64.86580756, "LATITUDE": 18.32605745, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.593301043, "SHAPE_Area": 1222.9905295000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365707.804499998688698, 255268.0016999989748 ], [ 365725.176500000059605, 255256.249299999326468 ], [ 365726.101800002157688, 255257.009399998933077 ], [ 365690.807300001382828, 255219.056600000709295 ], [ 365681.27139999717474, 255218.708799999207258 ], [ 365679.390799999237061, 255250.146299999207258 ], [ 365707.804499998688698, 255268.0016999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86568646000001, "LATITUDE": 18.32748942, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.9263991, "SHAPE_Area": 1474.71572216 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365696.553700000047684, 255390.131700001657009 ], [ 365691.642800003290176, 255421.290600001811981 ], [ 365689.235100001096725, 255426.105999998748302 ], [ 365688.399599999189377, 255427.169399999082088 ], [ 365713.325699999928474, 255431.542300000786781 ], [ 365728.947800002992153, 255396.206500001251698 ], [ 365717.905799999833107, 255367.196299999952316 ], [ 365701.541500002145767, 255386.893399998545647 ], [ 365697.837300002574921, 255389.856699999421835 ], [ 365696.553700000047684, 255390.131700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012700", "MAP": "B3-160-T49", "PARCEL_NAM": "28 REM", "ACRE": null, "LONGITUDE": -64.86620736, "LATITUDE": 18.32685373, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.38933935700001, "SHAPE_Area": 878.16763906999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365645.616800002753735, 255362.149099998176098 ], [ 365673.373099997639656, 255334.879799999296665 ], [ 365672.093400001525879, 255332.8125 ], [ 365653.254799999296665, 255306.953200001269579 ], [ 365645.543799996376038, 255306.807700000703335 ], [ 365645.548299998044968, 255310.279800001531839 ], [ 365645.616800002753735, 255362.149099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012700", "MAP": null, "PARCEL_NAM": "28-6", "ACRE": null, "LONGITUDE": -64.86615156000001, "LATITUDE": 18.3271255, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.12159846200001, "SHAPE_Area": 916.93176179500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365673.373099997639656, 255334.879799999296665 ], [ 365645.616800002753735, 255362.149099998176098 ], [ 365645.657700002193451, 255393.169599998742342 ], [ 365678.82209999859333, 255357.902100000530481 ], [ 365674.50110000371933, 255336.701900001615286 ], [ 365673.373099997639656, 255334.879799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701012700", "MAP": "D9-8144-T08", "PARCEL_NAM": "28-M", "ACRE": ".14", "LONGITUDE": -64.86671857, "LATITUDE": 18.3271039, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.469130312, "SHAPE_Area": 456.83392436899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365601.01240000128746, 255305.6858000010252 ], [ 365596.675200000405312, 255305.763099998235703 ], [ 365600.819700002670288, 255412.313700001686811 ], [ 365604.630000002682209, 255412.287500001490116 ], [ 365604.793600000441074, 255393.0793999992311 ], [ 365602.01969999819994, 255340.072200000286102 ], [ 365601.01240000128746, 255305.6858000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86520047, "LATITUDE": 18.32721974, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.732115612, "SHAPE_Area": 852.97114587 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365760.085199996829033, 255351.350400000810623 ], [ 365756.108900003135204, 255343.282200001180172 ], [ 365744.000200003385544, 255366.876299999654293 ], [ 365749.298000000417233, 255373.785999998450279 ], [ 365774.01860000193119, 255406.285700000822544 ], [ 365774.943599998950958, 255392.361000001430511 ], [ 365775.827200002968311, 255383.291299998760223 ], [ 365760.085199996829033, 255351.350400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012700", "MAP": null, "PARCEL_NAM": "28 REM", "ACRE": null, "LONGITUDE": -64.86522001, "LATITUDE": 18.3264855, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.12455050699998, "SHAPE_Area": 3319.8898901900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365777.715700000524521, 255350.374499998986721 ], [ 365777.720299996435642, 255350.3761 ], [ 365781.350199997425079, 255302.909800000488758 ], [ 365783.228900000452995, 255271.683299999684095 ], [ 365776.00450000166893, 255267.824499998241663 ], [ 365766.393500000238419, 255260.146499998867512 ], [ 365747.196599997580051, 255241.835299998521805 ], [ 365738.266000002622604, 255248.939399998635054 ], [ 365734.96169999986887, 255258.200500000268221 ], [ 365735.615099996328354, 255276.148800000548363 ], [ 365737.153999999165535, 255284.816199999302626 ], [ 365736.983199998736382, 255304.868700001388788 ], [ 365764.52929999679327, 255326.874699998646975 ], [ 365756.22410000115633, 255343.057700000703335 ], [ 365763.127300001680851, 255345.407800000160933 ], [ 365777.715700000524521, 255350.374499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012700", "MAP": "D9-8046-T007", "PARCEL_NAM": "28-L ROW", "ACRE": ".20", "LONGITUDE": -64.86628809, "LATITUDE": 18.32766839, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.384463772, "SHAPE_Area": 490.70086879500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365645.247800000011921, 255424.729499999433756 ], [ 365647.484099999070168, 255425.006799999624491 ], [ 365668.745399996638298, 255427.598900001496077 ], [ 365670.223899997770786, 255427.779100000858307 ], [ 365673.583700001239777, 255427.998799998313189 ], [ 365675.592399999499321, 255428.97069999948144 ], [ 365677.121699996292591, 255429.842999998480082 ], [ 365678.92849999666214, 255431.958799999207258 ], [ 365679.208499997854233, 255432.915899999439716 ], [ 365684.964400000870228, 255433.728900000452995 ], [ 365685.366599999368191, 255431.631999999284744 ], [ 365686.42960000038147, 255430.877300001680851 ], [ 365689.987199999392033, 255430.430500000715256 ], [ 365697.471900001168251, 255431.258299998939037 ], [ 365697.850400000810623, 255428.827399998903275 ], [ 365666.626199997961521, 255423.349599998444319 ], [ 365645.6925999969244, 255419.589699998497963 ], [ 365604.630000002682209, 255412.287599999457598 ], [ 365604.35700000077486, 255419.658500000834465 ], [ 365645.247800000011921, 255424.729499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86652639, "LATITUDE": 18.32419663, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 647.99841920400002, "SHAPE_Area": 6461.6532903699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365595.354599997401237, 255177.588199999183416 ], [ 365607.100699998438358, 255122.2652000002563 ], [ 365637.693099997937679, 255033.434099998325109 ], [ 365670.770999997854233, 254936.812899999320507 ], [ 365660.314099997282028, 254933.771999999880791 ], [ 365672.721699997782707, 254897.143300000578165 ], [ 365675.198100000619888, 254890.408599998801947 ], [ 365658.252999998629093, 254891.747499998658895 ], [ 365625.923900000751019, 254995.129900000989437 ], [ 365569.569799996912479, 255173.675999999046326 ], [ 365595.354599997401237, 255177.588199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603021800", "MAP": "D9-7849-T006", "PARCEL_NAM": "3-44", "ACRE": "0.25", "LONGITUDE": -64.88028354, "LATITUDE": 18.32156545, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.31484563399999, "SHAPE_Area": 766.66045677600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364158.824000000953674, 254748.175200000405312 ], [ 364166.869099996984005, 254750.352000001817942 ], [ 364181.371899999678135, 254751.737300001084805 ], [ 364183.110399998724461, 254736.975000001490116 ], [ 364188.06700000166893, 254723.083299998193979 ], [ 364170.389300003647804, 254715.761500000953674 ], [ 364166.306999996304512, 254714.070700000971556 ], [ 364156.542599998414516, 254747.55799999833107 ], [ 364158.824000000953674, 254748.175200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87910593, "LATITUDE": 18.32268759, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.211835603600001, "SHAPE_Area": 92.584126377600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364298.665600001811981, 254868.054900001734495 ], [ 364300.235299997031689, 254858.008000001311302 ], [ 364299.009800001978874, 254857.191399998962879 ], [ 364298.223200000822544, 254854.862900000065565 ], [ 364295.028599999845028, 254851.248199999332428 ], [ 364295.024700000882149, 254851.242199998348951 ], [ 364289.812100000679493, 254860.581000000238419 ], [ 364298.665600001811981, 254868.054900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603025700", "MAP": "F9-3952-T57", "PARCEL_NAM": "3-91", "ACRE": null, "LONGITUDE": -64.88066789, "LATITUDE": 18.32259298, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.18447702, "SHAPE_Area": 665.30790720599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364141.850199997425079, 254845.532999999821186 ], [ 364145.913999997079372, 254834.161200001835823 ], [ 364127.329000003635883, 254829.241799999028444 ], [ 364115.263400003314018, 254860.030799999833107 ], [ 364133.741999998688698, 254867.091600000858307 ], [ 364141.850199997425079, 254845.532999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704032600", "MAP": "A9-537-T99", "PARCEL_NAM": "M-17", "ACRE": ".31", "LONGITUDE": -64.8528759, "LATITUDE": 18.32863124, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.05101170200001, "SHAPE_Area": 1340.83513182 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367082.309900000691414, 255529.096900001168251 ], [ 367080.90429999679327, 255528.8614999987185 ], [ 367030.189400002360344, 255518.736099999397993 ], [ 367030.153399996459484, 255522.957699999213219 ], [ 367025.270599998533726, 255528.195000000298023 ], [ 367051.043799996376038, 255531.783500000834465 ], [ 367053.997500002384186, 255563.682799998670816 ], [ 367083.850900001823902, 255561.605099998414516 ], [ 367082.544600002467632, 255534.048799999058247 ], [ 367082.309900000691414, 255529.096900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-539-T99", "PARCEL_NAM": "3T", "ACRE": "25.41", "LONGITUDE": -64.8712035, "LATITUDE": 18.32650903, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1370.65394274, "SHAPE_Area": 103976.140356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365066.125600002706051, 255453.596200000494719 ], [ 365280.523299999535084, 255390.746700000017881 ], [ 365331.079199999570847, 255141.127900000661612 ], [ 365310.223099999129772, 255137.989500001072884 ], [ 365240.964699998497963, 255127.501200001686811 ], [ 365203.130999997258186, 255119.803300000727177 ], [ 365067.898900002241135, 255091.887600000947714 ], [ 365032.533299997448921, 255173.080299999564886 ], [ 364974.951399996876717, 255306.442299999296665 ], [ 364972.48929999768734, 255311.488400001078844 ], [ 364938.763400003314018, 255389.528099998831749 ], [ 364919.01630000025034, 255435.807000000029802 ], [ 364915.726300001144409, 255443.37950000166893 ], [ 364896.810699999332428, 255486.709899999201298 ], [ 364891.875699996948242, 255498.068599998950958 ], [ 364891.33500000089407, 255499.313000001013279 ], [ 365066.125600002706051, 255453.596200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-10", "ACRE": "1.00", "LONGITUDE": -64.86907327, "LATITUDE": 18.32548921, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.20143976599999, "SHAPE_Area": 3960.5093780500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365388.265500001609325, 255149.7331000007689 ], [ 365331.079199999570847, 255141.127900000661612 ], [ 365317.871500000357628, 255206.340700000524521 ], [ 365375.962399996817112, 255217.010400000959635 ], [ 365376.31360000371933, 255217.072399999946356 ], [ 365376.359200000762939, 255217.010400000959635 ], [ 365388.265500001609325, 255150.732200000435114 ], [ 365388.265500001609325, 255149.7331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-539-T99", "PARCEL_NAM": "3N", "ACRE": "16.72", "LONGITUDE": -64.86921545, "LATITUDE": 18.33202403, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1193.67567439, "SHAPE_Area": 64408.208222000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365327.80349999666214, 255643.274900000542402 ], [ 365327.221400000154972, 255642.784800000488758 ], [ 365232.961900003254414, 255750.468600001186132 ], [ 365234.895499996840954, 255798.440099999308586 ], [ 365227.957099996507168, 255839.376600001007318 ], [ 365207.835699997842312, 255901.128299999982119 ], [ 365224.487899996340275, 255944.840199999511242 ], [ 365286.239600002765656, 256006.591899998486042 ], [ 365332.032999999821186, 256044.059200000017881 ], [ 365351.460400000214577, 256069.731199998408556 ], [ 365326.482199996709824, 256110.667700000107288 ], [ 365326.386399999260902, 256111.242899999022484 ], [ 365461.102899998426437, 256109.800700001418591 ], [ 365448.258900001645088, 256010.720800001174212 ], [ 365327.80349999666214, 255643.274900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-539-T99", "PARCEL_NAM": "3P", "ACRE": "17.94", "LONGITUDE": -64.86775842, "LATITUDE": 18.3319021, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1227.3986874100001, "SHAPE_Area": 64823.768117300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365586.853000000119209, 255796.270599998533726 ], [ 365488.981600001454353, 255717.237100001424551 ], [ 365429.856100000441074, 255717.448399998247623 ], [ 365388.23589999973774, 255694.159299999475479 ], [ 365327.80349999666214, 255643.274900000542402 ], [ 365448.258900001645088, 256010.720800001174212 ], [ 365461.102899998426437, 256109.800700001418591 ], [ 365481.76630000025034, 256109.579500000923872 ], [ 365577.731899999082088, 256108.676199998706579 ], [ 365579.399499997496605, 256007.5760000012815 ], [ 365586.853000000119209, 255796.270599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-539-T99", "PARCEL_NAM": "3Q", "ACRE": "19.60", "LONGITUDE": -64.86802949, "LATITUDE": 18.3289112, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1269.35218098, "SHAPE_Area": 86805.090230899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365586.853000000119209, 255796.270599998533726 ], [ 365591.093900002539158, 255676.043699998408556 ], [ 365590.054899998009205, 255608.696400001645088 ], [ 365592.041500002145767, 255564.80519999936223 ], [ 365595.426700003445148, 255415.479100000113249 ], [ 365280.523299999535084, 255390.746700000017881 ], [ 365325.723700001835823, 255553.736000001430511 ], [ 365335.846000000834465, 255602.455600000917912 ], [ 365327.387800000607967, 255642.006799999624491 ], [ 365327.221400000154972, 255642.784800000488758 ], [ 365327.80349999666214, 255643.274900000542402 ], [ 365388.23589999973774, 255694.159299999475479 ], [ 365429.856100000441074, 255717.448399998247623 ], [ 365488.981600001454353, 255717.237100001424551 ], [ 365586.853000000119209, 255796.270599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-539-T99", "PARCEL_NAM": "3M", "ACRE": "20.86", "LONGITUDE": -64.87056552, "LATITUDE": 18.3292417, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1151.6099041299999, "SHAPE_Area": 81373.5124545 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365070.614699997007847, 255452.280299998819828 ], [ 365077.165299996733665, 255611.741300001740456 ], [ 365074.85869999974966, 255704.003400001674891 ], [ 365077.305799998342991, 255774.169300001114607 ], [ 365168.286899998784065, 255785.9510000012815 ], [ 365234.307499997317791, 255798.329900000244379 ], [ 365234.895499996840954, 255798.440099999308586 ], [ 365232.961900003254414, 255750.468600001186132 ], [ 365327.221400000154972, 255642.784800000488758 ], [ 365335.846000000834465, 255602.455600000917912 ], [ 365325.723700001835823, 255553.736000001430511 ], [ 365280.523299999535084, 255390.746700000017881 ], [ 365070.614699997007847, 255452.280299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9317-T019", "PARCEL_NAM": "3D-2", "ACRE": "7.64", "LONGITUDE": -64.87454342, "LATITUDE": 18.33036437, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 858.98957229300004, "SHAPE_Area": 29127.476037 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364842.144199997186661, 255836.008200000971556 ], [ 364784.705799996852875, 255695.047200001776218 ], [ 364785.440200001001358, 255694.787999998778105 ], [ 364834.025200001895428, 255628.208500001579523 ], [ 364856.808399997651577, 255541.084499999880791 ], [ 364851.86370000243187, 255542.733199998736382 ], [ 364793.654799997806549, 255560.237500000745058 ], [ 364793.915200002491474, 255560.400199998170137 ], [ 364703.956600002944469, 255667.464099999517202 ], [ 364694.656499996781349, 255788.036299999803305 ], [ 364693.465899996459484, 255802.4560999982059 ], [ 364692.672100000083447, 255814.230099998414516 ], [ 364692.672100000083447, 255814.657600000500679 ], [ 364697.776291750138626, 255814.022743720008293 ], [ 364702.914800003170967, 255813.795699998736382 ], [ 364710.148299999535084, 255816.59910000115633 ], [ 364830.992499999701977, 255865.354800000786781 ], [ 364842.144199997186661, 255836.008200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-11", "ACRE": "1.18", "LONGITUDE": -64.87215363, "LATITUDE": 18.32843787, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.57051446600002, "SHAPE_Area": 4280.1315738200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365063.462600000202656, 255521.485199999064207 ], [ 365061.478200003504753, 255467.510099999606609 ], [ 365058.581399999558926, 255464.902899999171495 ], [ 364986.768399998545647, 255483.509899999946356 ], [ 364988.849899999797344, 255540.059000000357628 ], [ 365026.950000002980232, 255530.533900000154972 ], [ 365063.462600000202656, 255521.485199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702012600", "MAP": "D9-8847-T014", "PARCEL_NAM": "I OF TRACT 1", "ACRE": ".46", "LONGITUDE": -64.85880537, "LATITUDE": 18.32209151, "OBJECTID_1": 39475, "PARCEL_NO_": "107702012600", "Tax_Legal_": "NAZARETH ESTATE TRACK A OF 1&2 RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 630900, "Improved_V": 8800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.98963229, "SHAPE_Area": 1793.8763056 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366410.475299999117851, 254825.663600001484156 ], [ 366472.785700000822544, 254827.142700001597404 ], [ 366473.572700001299381, 254798.245999999344349 ], [ 366411.697499997913837, 254796.826699998229742 ], [ 366410.475299999117851, 254825.663600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702012600", "MAP": "A9-761-T010", "PARCEL_NAM": "N TRACT 1", "ACRE": "54.021", "LONGITUDE": -64.85684949, "LATITUDE": 18.32413814, "OBJECTID_1": 39475, "PARCEL_NO_": "107702012600", "Tax_Legal_": "NAZARETH ESTATE TRACK A OF 1&2 RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 630900, "Improved_V": 8800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3218.5027126499999, "SHAPE_Area": 141988.24956500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366992.225500002503395, 255122.488600000739098 ], [ 366955.845299996435642, 255098.014600001275539 ], [ 366939.970299996435642, 255084.785399999469519 ], [ 366913.511900000274181, 255053.696899998933077 ], [ 366839.679700002074242, 254970.860800001770258 ], [ 366830.805799998342991, 254960.904699999839067 ], [ 366735.412600003182888, 255108.646099999547005 ], [ 366575.339000001549721, 255079.578099999576807 ], [ 366716.397399999201298, 254845.999000001698732 ], [ 366535.157799996435642, 254789.113600000739098 ], [ 366499.439000003039837, 254781.176100000739098 ], [ 366412.211900003254414, 254784.692299999296665 ], [ 366405.792400002479553, 254785.041999999433756 ], [ 366398.832699999213219, 254948.629200000315905 ], [ 366396.441399998962879, 254991.217099998146296 ], [ 366338.721100002527237, 254991.392000000923872 ], [ 366340.569899998605251, 254933.366500001400709 ], [ 366299.778300002217293, 254912.308200001716614 ], [ 366306.524700000882149, 255150.419300001114607 ], [ 366470.250600002706051, 255133.506900001317263 ], [ 366710.328599996864796, 255108.707600001245737 ], [ 367029.5962999984622, 255298.217300001531839 ], [ 367057.776199996471405, 255293.974199999123812 ], [ 367071.069399997591972, 255291.972600001841784 ], [ 367071.211999997496605, 255246.761199999600649 ], [ 367067.450199998915195, 255215.066300000995398 ], [ 367066.229599997401237, 255169.037900000810623 ], [ 367063.03490000218153, 255165.423200000077486 ], [ 367044.58500000089407, 255154.084199998527765 ], [ 366992.225500002503395, 255122.488600000739098 ] ], [ [ 366406.511799998581409, 254919.17119999974966 ], [ 366411.697599999606609, 254796.826699998229742 ], [ 366473.572700001299381, 254798.245999999344349 ], [ 366472.785700000822544, 254827.142799999564886 ], [ 366499.103100001811981, 254828.375599998980761 ], [ 366491.868000000715256, 254923.931200001388788 ], [ 366406.511799998581409, 254919.17119999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604018600", "MAP": "D9-3718-T86", "PARCEL_NAM": "17-4", "ACRE": "0.25", "LONGITUDE": -64.87427935, "LATITUDE": 18.32214521, "OBJECTID_1": 38907, "PARCEL_NO_": "107604018600", "Tax_Legal_": "17-4 NADIR RED HOOK QTR.", "Name": "SEALEY, LEON & ELEANOR", "Address": "PO Box 502484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052484, "Country": "United States", "Land_Value": 14200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.690510805, "SHAPE_Area": 557.87424181100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364810.807099997997284, 254791.508200000971556 ], [ 364795.488300003111362, 254783.227600000798702 ], [ 364796.453299999237061, 254810.367400001734495 ], [ 364813.775200001895428, 254821.718899998813868 ], [ 364821.030199997127056, 254821.989399999380112 ], [ 364810.807099997997284, 254791.508200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701024000", "MAP": "D9-8005-T007", "PARCEL_NAM": "5-1", "ACRE": ".538", "LONGITUDE": -64.86284058, "LATITUDE": 18.32596588, "OBJECTID_1": 39243, "PARCEL_NO_": "107701024000", "Tax_Legal_": "5-1 ESTATE FRYDENHOJ No.3 RED HOOK QTR.", "Name": "GUMBS, STEVEN D.", "Address": "PO Box 305636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.874526428, "SHAPE_Area": 1966.0181191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366023.053999997675419, 255206.574299998581409 ], [ 366022.856299996376038, 255197.874400001019239 ], [ 365996.187299996614456, 255202.134100001305342 ], [ 365996.745999999344349, 255206.627000000327826 ], [ 365999.400399997830391, 255260.21169999986887 ], [ 365999.400399997830391, 255269.802499998360872 ], [ 366010.616200000047684, 255272.699999999254942 ], [ 366022.678599998354912, 255276.598400000482798 ], [ 366026.5, 255278.351300001144409 ], [ 366027.105200000107288, 255269.999600000679493 ], [ 366024.119000002741814, 255228.193599998950958 ], [ 366023.053999997675419, 255206.574299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86258021, "LATITUDE": 18.32603565, "OBJECTID_1": 39227, "PARCEL_NO_": "107701022100", "Tax_Legal_": "4B-9 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "HEYLIGER, ANNETA ADAMS", "Address": "PO Box 308301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36000, "Improved_V": 131000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.42646600400001, "SHAPE_Area": 916.75277363400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366050.490599997341633, 255230.174400001764297 ], [ 366050.113200001418591, 255227.776099998503923 ], [ 366049.335299998521805, 255228.359499998390675 ], [ 366030.120899997651577, 255228.035199999809265 ], [ 366024.106200002133846, 255227.933699999004602 ], [ 366024.119000002741814, 255228.193599998950958 ], [ 366024.280799999833107, 255230.458299998193979 ], [ 366026.356299996376038, 255259.516100000590086 ], [ 366032.492799997329712, 255260.424600001424551 ], [ 366055.854299999773502, 255263.148899998515844 ], [ 366050.490599997341633, 255230.174400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86253839, "LATITUDE": 18.32630337, "OBJECTID_1": 39228, "PARCEL_NO_": "107701022200", "Tax_Legal_": "4B-10 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "WILLIAMS, LUNSFORD A. & AVERRI", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 129400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.917738052, "SHAPE_Area": 766.02348814300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366055.854299999773502, 255263.148899998515844 ], [ 366032.492799997329712, 255260.424600001424551 ], [ 366026.356299996376038, 255259.516100000590086 ], [ 366027.105200000107288, 255269.999600000679493 ], [ 366026.5, 255278.351300001144409 ], [ 366033.923799999058247, 255281.756700001657009 ], [ 366048.372699998319149, 255289.474300000816584 ], [ 366057.987300001084805, 255296.730200000107288 ], [ 366058.113200001418591, 255281.954700000584126 ], [ 366055.854299999773502, 255263.148899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021800", "MAP": "D9-5157-T91", "PARCEL_NAM": "4B-6", "ACRE": "0.23", "LONGITUDE": -64.86265928, "LATITUDE": 18.32539588, "OBJECTID_1": 39224, "PARCEL_NO_": "107701021800", "Tax_Legal_": "4B-6 EST FRYDENHOJ RED HOOK QTR", "Name": "JACKSON, ISMAEL E", "Address": "PO Box 8333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 119600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.75722813900001, "SHAPE_Area": 753.79582588999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366023.139399997889996, 255153.829500000923872 ], [ 366021.854299999773502, 255153.765999998897314 ], [ 366022.303700000047684, 255173.550799999386072 ], [ 366022.797200001776218, 255195.269299998879433 ], [ 366027.233199998736382, 255194.871899999678135 ], [ 366043.178900003433228, 255193.443599998950958 ], [ 366040.414899997413158, 255182.384799998253584 ], [ 366039.718299999833107, 255169.502399999648333 ], [ 366041.38849999755621, 255162.760999999940395 ], [ 366042.219899997115135, 255159.8125 ], [ 366042.262900002300739, 255154.775199998170137 ], [ 366023.139399997889996, 255153.829500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701024300", "MAP": "D9-8005-T007", "PARCEL_NAM": "5-2", "ACRE": ".503", "LONGITUDE": -64.86288848, "LATITUDE": 18.32534361, "OBJECTID_1": 39246, "PARCEL_NO_": "107701024300", "Tax_Legal_": "5-2 FRYDENHOJ NO.3 RED HOOK QTR", "Name": "SBA TOWERS USVI INC", "Address": "8051 Congress Ave", "City": "Boca Raton", "State": "Florida", "Zip": 33487, "Country": "United States", "Land_Value": 72100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.734240736, "SHAPE_Area": 1831.88860525 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365992.764499999582767, 255174.608899999409914 ], [ 365992.806400001049042, 255174.945900000631809 ], [ 365996.187299996614456, 255202.134100001305342 ], [ 366022.856299996376038, 255197.874400001019239 ], [ 366022.303700000047684, 255173.550799999386072 ], [ 366021.854299999773502, 255153.765999998897314 ], [ 366021.718599997460842, 255147.795099999755621 ], [ 366021.667700000107288, 255145.555500000715256 ], [ 366021.466499999165535, 255136.701699998229742 ], [ 365991.370200000703335, 255138.266800001263618 ], [ 365991.627999998629093, 255146.785799998790026 ], [ 365991.876299999654293, 255154.993900001049042 ], [ 365992.469999998807907, 255174.620000001043081 ], [ 365992.764499999582767, 255174.608899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021200", "MAP": "D9-8005-T007", "PARCEL_NAM": "5AA", "ACRE": "4.01", "LONGITUDE": -64.86302759, "LATITUDE": 18.32540351, "OBJECTID_1": 39218, "PARCEL_NO_": "107701021200", "Tax_Legal_": "PAR 5-11, 5-12 AND R.O.W. 5AB FRYDENHOJ 3 RED HOOK QTR", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.1026795594700001, "SHAPE_Area": 0.04985579535 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365992.469999998807907, 255174.620000001043081 ], [ 365992.806400001049042, 255174.945900000631809 ], [ 365992.764499999582767, 255174.608899999409914 ], [ 365992.469999998807907, 255174.620000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9104514, "LATITUDE": 18.35738392, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 5.7115262893700001, "SHAPE_Area": 0.09840017535 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360951.200400002300739, 258671.19200000166893 ], [ 360949.034800000488758, 258673.05009999871254 ], [ 360950.725900001823902, 258671.690000001341105 ], [ 360951.200400002300739, 258671.19200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9085508, "LATITUDE": 18.35417116, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.38044209, "SHAPE_Area": 73.444073105599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361152.839500002563, 258326.517499998211861 ], [ 361160.342600002884865, 258297.659099999815226 ], [ 361158.735399998724461, 258297.012699998915195 ], [ 361147.897299997508526, 258338.720499999821186 ], [ 361149.506300002336502, 258339.155799999833107 ], [ 361152.839500002563, 258326.517499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97562155, "LATITUDE": 18.34112221, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.29441158899999, "SHAPE_Area": 965.75488263399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354078.941399998962879, 256862.737900000065565 ], [ 354095.028099998831749, 256867.513599999248981 ], [ 354087.832400001585484, 256860.27760000154376 ], [ 354083.853000000119209, 256854.1233000010252 ], [ 354079.1283999979496, 256840.785700000822544 ], [ 354076.844400003552437, 256824.934999998658895 ], [ 354076.993600003421307, 256807.415500000119209 ], [ 354078.676399998366833, 256799.196600001305342 ], [ 354082.8175999969244, 256786.353799998760223 ], [ 354087.723800003528595, 256778.372400000691414 ], [ 354091.818300001323223, 256771.017599999904633 ], [ 354085.427199997007847, 256763.999200001358986 ], [ 354078.890399999916553, 256774.078200001269579 ], [ 354073.968000002205372, 256783.959300000220537 ], [ 354069.826700001955032, 256796.802099999040365 ], [ 354067.283699996769428, 256811.346799999475479 ], [ 354067.940800003707409, 256828.872900001704693 ], [ 354070.217600002884865, 256845.567899998277426 ], [ 354071.812299996614456, 256847.691899999976158 ], [ 354075.753899998962879, 256858.278900001198053 ], [ 354078.941399998962879, 256862.737900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94388227, "LATITUDE": 18.33830196, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.164097805, "SHAPE_Area": 185.950624686 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357440.381499998271465, 256520.624899998307228 ], [ 357442.060599997639656, 256512.828200001269579 ], [ 357438.04169999808073, 256511.317600000649691 ], [ 357432.246399998664856, 256529.002099998295307 ], [ 357428.920500002801418, 256540.796100001782179 ], [ 357427.270099997520447, 256545.215500000864267 ], [ 357429.674699999392033, 256546.9239999987185 ], [ 357423.091099999845028, 256562.49100000038743 ], [ 357431.281900003552437, 256547.57039999961853 ], [ 357434.593400001525879, 256537.464999999850988 ], [ 357440.381499998271465, 256520.624899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94238859, "LATITUDE": 18.33831243, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.5566877555, "SHAPE_Area": 31.743540367800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357594.322400003671646, 256529.484200000762939 ], [ 357588.645900003612041, 256533.237399999052286 ], [ 357588.609899997711182, 256537.458999998867512 ], [ 357596.710799999535084, 256533.092300001531839 ], [ 357594.322400003671646, 256529.484200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94364261, "LATITUDE": 18.3377381, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 18.217399100800002, "SHAPE_Area": 8.4253696750899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357457.776199996471405, 256466.516199998557568 ], [ 357457.756399996578693, 256468.838100001215935 ], [ 357464.997000001370907, 256470.797200001776218 ], [ 357457.776199996471405, 256466.516199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201012100", "MAP": null, "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.94446188000001, "LATITUDE": 18.32952837, "OBJECTID_1": 87252, "PARCEL_NO_": "507201012100", "Tax_Legal_": "8 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "EVANS, JOHN C. & PAMELA S.", "Address": "PO BOX 843", "City": "MARIOIN", "State": "Massachusetts", "Zip": 2738, "Country": "United States", "Land_Value": 228700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.952930546, "SHAPE_Area": 4136.0401210099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357407.714599996805191, 255527.7956000007689 ], [ 357358.583499997854233, 255521.060699999332428 ], [ 357356.95830000191927, 255522.525100000202656 ], [ 357351.294299997389317, 255524.800700001418591 ], [ 357353.917199999094009, 255595.538499999791384 ], [ 357378.074199996888638, 255599.535900000482798 ], [ 357382.917499996721745, 255598.942299999296665 ], [ 357400.755300000309944, 255587.478100001811981 ], [ 357416.201099999248981, 255572.828000001609325 ], [ 357417.039700001478195, 255569.035199999809265 ], [ 357416.289200000464916, 255562.485199999064207 ], [ 357413.177199997007847, 255549.160799998790026 ], [ 357410.007700003683567, 255542.590900000184774 ], [ 357407.714599996805191, 255527.7956000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201012000", "MAP": "D9-9083-T016", "PARCEL_NAM": "7", "ACRE": "1.00", "LONGITUDE": -64.94508227, "LATITUDE": 18.32946511, "OBJECTID_1": 87251, "PARCEL_NO_": "507201012000", "Tax_Legal_": "7 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "DLJ MORTGAGE CAPITAL INC", "Address": "11 Madison Ave", "City": "New York", "State": "New York", "Zip": 10010, "Country": "United States", "Land_Value": 232200, "Improved_V": 213900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.72516112400001, "SHAPE_Area": 4910.4804344499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357351.294299997389317, 255524.800700001418591 ], [ 357346.449299998581409, 255525.605500001460314 ], [ 357335.970799997448921, 255525.097500000149012 ], [ 357320.681400001049042, 255521.383799999952316 ], [ 357294.964000001549721, 255511.251899998635054 ], [ 357286.135899998247623, 255506.324499998241663 ], [ 357269.51690000295639, 255564.028099998831749 ], [ 357283.969400003552437, 255571.323600001633167 ], [ 357307.287699997425079, 255579.113800000399351 ], [ 357324.139399997889996, 255588.750900000333786 ], [ 357332.177299998700619, 255591.771999999880791 ], [ 357344.266599997878075, 255592.504200000315905 ], [ 357353.917199999094009, 255595.538499999791384 ], [ 357351.294299997389317, 255524.800700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91473236, "LATITUDE": 18.32831762, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2909.30848732, "SHAPE_Area": 11525.0619673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360396.308600001037121, 255599.962999999523163 ], [ 360411.680699996650219, 255593.967099998146296 ], [ 360420.571699999272823, 255591.506700001657009 ], [ 360434.295199997723103, 255589.719200000166893 ], [ 360448.837600000202656, 255586.460700001567602 ], [ 360466.637599997222424, 255579.429200001060963 ], [ 360475.537600003182888, 255575.913499999791384 ], [ 360512.735799998044968, 255563.552299998700619 ], [ 360534.55120000243187, 255558.453499998897314 ], [ 360548.265699997544289, 255557.721400000154972 ], [ 360568.403800003230572, 255560.208299998193979 ], [ 360593.404899999499321, 255559.779599998146296 ], [ 360604.675200000405312, 255561.982799999415874 ], [ 360615.139300003647804, 255564.179400000721216 ], [ 360628.05290000140667, 255562.807399999350309 ], [ 360633.716899998486042, 255560.531700000166893 ], [ 360641.82320000231266, 255555.531800001859665 ], [ 360643.450199998915195, 255553.8564000017941 ], [ 360647.517700001597404, 255549.66780000180006 ], [ 360654.895000003278255, 255535.584899999201298 ], [ 360656.606499999761581, 255523.988800000399351 ], [ 360655.049599997699261, 255517.432199999690056 ], [ 360654.270300000905991, 255514.259399998933077 ], [ 360652.673900000751019, 255512.346500001847744 ], [ 360628.766800001263618, 255479.009100001305342 ], [ 360625.586499996483326, 255473.705699998885393 ], [ 360624.816200003027916, 255469.477600000798702 ], [ 360624.038599997758865, 255466.093699999153614 ], [ 360624.26519999653101, 255439.497800000011921 ], [ 360632.984600000083447, 255362.519999999552965 ], [ 360636.310599997639656, 255350.725999999791384 ], [ 360640.372699998319149, 255347.1706000007689 ], [ 360643.601599998772144, 255346.774900000542402 ], [ 360667.776600003242493, 255348.661499999463558 ], [ 360678.220899999141693, 255353.179900001734495 ], [ 360690.216600000858307, 255364.888199999928474 ], [ 360698.171899996697903, 255377.618999999016523 ], [ 360703.744099996984005, 255386.108300000429153 ], [ 360705.30460000038147, 255392.242800001055002 ], [ 360706.792900003492832, 255396.59010000154376 ], [ 360712.508699998259544, 255396.168699998408556 ], [ 360710.952399998903275, 255391.866799999028444 ], [ 360710.192800000309944, 255386.37220000103116 ], [ 360695.882399998605251, 255362.401500001549721 ], [ 360685.495700001716614, 255351.128499999642372 ], [ 360679.883799999952316, 255347.282900001853704 ], [ 360669.444899998605251, 255342.13120000064373 ], [ 360644.465400002896786, 255340.026900000870228 ], [ 360642.861800000071526, 255338.958299998193979 ], [ 360642.094999998807907, 255334.30799999833107 ], [ 360648.793700002133846, 255305.231899999082088 ], [ 360635.077399998903275, 255306.17509999871254 ], [ 360624.579099997878075, 255307.989000000059605 ], [ 360606.793499998748302, 255313.331900000572205 ], [ 360596.271899998188019, 255317.889899998903275 ], [ 360589.783600002527237, 255322.26969999819994 ], [ 360582.451300002634525, 255331.075599998235703 ], [ 360566.937200002372265, 255353.746800001710653 ], [ 360564.484099999070168, 255357.737500000745058 ], [ 360561.231799997389317, 255360.877300001680851 ], [ 360545.694300003349781, 255386.292399998754263 ], [ 360528.513599999248981, 255415.282699998468161 ], [ 360525.216399997472763, 255423.699499998241663 ], [ 360522.792099997401237, 255424.312899999320507 ], [ 360529.063799999654293, 255350.692600000649691 ], [ 360534.243400000035763, 255310.627199999988079 ], [ 360539.412100002169609, 255271.828299999237061 ], [ 360541.154200002551079, 255256.643800001591444 ], [ 360542.95380000025034, 255234.704799998551607 ], [ 360545.574199996888638, 255211.083799999207258 ], [ 360546.398500002920628, 255208.979600001126528 ], [ 360544.067699998617172, 255198.616900000721216 ], [ 360536.769500002264977, 255203.412300001829863 ], [ 360538.362300001084805, 255205.747400000691414 ], [ 360538.303000003099442, 255212.712999999523163 ], [ 360530.476099997758865, 255279.565600000321865 ], [ 360524.48309999704361, 255320.468699999153614 ], [ 360519.161499999463558, 255377.209300000220537 ], [ 360519.091399997472763, 255385.441399998962879 ], [ 360513.906499996781349, 255426.140000000596046 ], [ 360511.305900000035763, 255447.4391999989748 ], [ 360508.793499998748302, 255458.395500000566244 ], [ 360503.83330000191927, 255472.709199998527765 ], [ 360502.206299997866154, 255474.384700000286102 ], [ 360501.374799996614456, 255477.333200000226498 ], [ 360494.866800002753735, 255484.03489999845624 ], [ 360489.190200001001358, 255487.788100000470877 ], [ 360469.781199999153614, 255494.384300000965595 ], [ 360458.442500002682209, 255500.202100001275539 ], [ 360430.153200000524521, 255507.99210000038147 ], [ 360428.537000000476837, 255508.401099998503923 ], [ 360386.479299999773502, 255523.25560000166297 ], [ 360375.1908999979496, 255523.163199998438358 ], [ 360357.504199996590614, 255516.896699998527765 ], [ 360322.901000000536442, 255508.592000000178814 ], [ 360302.762999996542931, 255506.105099998414516 ], [ 360298.672100000083447, 255513.03770000115037 ], [ 360324.44709999859333, 255516.415100000798702 ], [ 360357.4358000010252, 255524.917700000107288 ], [ 360374.319799996912479, 255530.755399998277426 ], [ 360387.222599998116493, 255530.649900000542402 ], [ 360392.875799998641014, 255529.640700001269579 ], [ 360416.336199998855591, 255520.755699999630451 ], [ 360442.210100002586842, 255512.523800000548363 ], [ 360445.435400001704693, 255512.550200000405312 ], [ 360444.609300002455711, 255514.86540000140667 ], [ 360422.727300003170967, 255527.774099998176098 ], [ 360402.43469999730587, 255543.440099999308586 ], [ 360401.594200000166893, 255547.443999998271465 ], [ 360397.530299998819828, 255551.210400000214577 ], [ 360373.180900000035763, 255569.79839999973774 ], [ 360359.412399999797344, 255576.862900000065565 ], [ 360353.743000000715256, 255579.771800000220537 ], [ 360347.24040000140667, 255585.840300001204014 ], [ 360347.191799998283386, 255591.53940000012517 ], [ 360349.592799998819828, 255593.670000001788139 ], [ 360360.848800003528595, 255597.561799999326468 ], [ 360373.713799998164177, 255601.888999998569489 ], [ 360384.194099999964237, 255602.185899998992682 ], [ 360396.308600001037121, 255599.962999999523163 ] ], [ [ 360449.396799996495247, 255520.815200001001358 ], [ 360460.76969999819994, 255510.986900001764297 ], [ 360469.705700002610683, 255503.249600000679493 ], [ 360496.407499998807907, 255492.491300001740456 ], [ 360501.279500000178814, 255488.520399998873472 ], [ 360506.961499996483326, 255484.133900001645088 ], [ 360508.626199997961521, 255478.025800000876188 ], [ 360516.01070000231266, 255463.098600000143051 ], [ 360516.026900000870228, 255461.198899999260902 ], [ 360522.569099999964237, 255450.486699998378754 ], [ 360525.03660000115633, 255444.807300001382828 ], [ 360536.542599998414516, 255419.359200000762939 ], [ 360538.166000001132488, 255418.105900000780821 ], [ 360548.001800000667572, 255399.399099998176098 ], [ 360550.433300003409386, 255397.941300000995398 ], [ 360552.092699997127056, 255392.466499999165535 ], [ 360556.169200003147125, 255387.222500000149012 ], [ 360559.455600000917912, 255380.072200000286102 ], [ 360566.811300002038479, 255368.522300001233816 ], [ 360570.067100003361702, 255364.960299998521805 ], [ 360579.874099999666214, 255349.630800001323223 ], [ 360588.846100002527237, 255337.671900000423193 ], [ 360596.176600001752377, 255329.076999999582767 ], [ 360605.092799998819828, 255323.66160000115633 ], [ 360630.961300000548363, 255316.062800001353025 ], [ 360636.603699997067451, 255316.320099998265505 ], [ 360638.203699998557568, 255317.810899998992682 ], [ 360638.149800002574921, 255324.143199998885393 ], [ 360629.079000003635883, 255347.711500000208616 ], [ 360628.256499998271465, 255349.604600001126528 ], [ 360627.430399999022484, 255351.919799998402596 ], [ 360622.220299996435642, 255395.573600001633167 ], [ 360616.1841000020504, 255441.542599998414516 ], [ 360616.000699996948242, 255463.072599999606609 ], [ 360617.519799999892712, 255474.061900001019239 ], [ 360620.694700002670288, 255479.998500000685453 ], [ 360622.278499998152256, 255483.388999998569489 ], [ 360646.991899996995926, 255516.732900001108646 ], [ 360648.564999997615814, 255521.389899998903275 ], [ 360646.849799998104572, 255533.408100001513958 ], [ 360643.552699998021126, 255541.82490000128746 ], [ 360640.287900000810623, 255546.442200001329184 ], [ 360634.600500002503395, 255551.461899999529123 ], [ 360629.73929999768734, 255554.166400000452995 ], [ 360621.656400002539158, 255556.422200001776218 ], [ 360615.207699999213219, 255556.158399999141693 ], [ 360597.497599996626377, 255552.635899998247623 ], [ 360582.983900003135204, 255552.517099998891354 ], [ 360568.468500003218651, 255552.609400000423193 ], [ 360549.136799998581409, 255550.129200000315905 ], [ 360531.388899996876717, 255551.03940000012517 ], [ 360504.715899996459484, 255558.420499999076128 ], [ 360484.507700003683567, 255564.165699999779463 ], [ 360462.659999996423721, 255573.063900001347065 ], [ 360444.055399999022484, 255579.877700001001358 ], [ 360419.830099999904633, 255583.901299998164177 ], [ 360409.322899997234344, 255586.770599998533726 ], [ 360395.568800002336502, 255592.146499998867512 ], [ 360385.8733000010252, 255594.389199998229742 ], [ 360374.588500000536442, 255593.874600000679493 ], [ 360365.733400002121925, 255592.113400001078844 ], [ 360358.505400002002716, 255588.676699999719858 ], [ 360357.72070000320673, 255586.137200001627207 ], [ 360377.968400001525879, 255575.748199999332428 ], [ 360390.147600002586842, 255565.926500000059605 ], [ 360400.690800003707409, 255558.83559999987483 ], [ 360417.769000001251698, 255541.876800000667572 ], [ 360425.887900002300739, 255535.399399999529123 ], [ 360449.396799996495247, 255520.815200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201011800", "MAP": null, "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.94570651, "LATITUDE": 18.32914956, "OBJECTID_1": 87249, "PARCEL_NO_": "507201011800", "Tax_Legal_": "6 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 232200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.59155586200001, "SHAPE_Area": 3801.2418029 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357286.135899998247623, 255506.324499998241663 ], [ 357274.899700000882149, 255500.110800001770258 ], [ 357254.052400000393391, 255486.219099998474121 ], [ 357232.391699999570847, 255473.165100000798702 ], [ 357222.751900002360344, 255468.86430000141263 ], [ 357219.771899998188019, 255534.701099999248981 ], [ 357239.850599996745586, 255544.153599999845028 ], [ 357269.51690000295639, 255564.028099998831749 ], [ 357286.135899998247623, 255506.324499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94633649, "LATITUDE": 18.32905554, "OBJECTID_1": 87243, "PARCEL_NO_": "507201011000", "Tax_Legal_": "95 EASTERN WATER ISLAND SOUTHSIDE QTR.", "Name": "PEMBERTON, CHARLES & LILLIA", "Address": "PO Box 302343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 221400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.03848789599999, "SHAPE_Area": 5278.8930305200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357222.751900002360344, 255468.86430000141263 ], [ 357214.713899999856949, 255465.843299999833107 ], [ 357197.810099996626377, 255462.327399998903275 ], [ 357180.085699997842312, 255460.493599999696016 ], [ 357127.053199999034405, 255533.097899999469519 ], [ 357135.073100000619888, 255538.229800000786781 ], [ 357143.114699997007847, 255540.828699998557568 ], [ 357153.5878000035882, 255541.969900000840425 ], [ 357162.45719999819994, 255542.042500000447035 ], [ 357185.064499996602535, 255538.638999998569489 ], [ 357206.070000000298023, 255533.955699998885393 ], [ 357211.717799998819828, 255533.579799998551607 ], [ 357219.771899998188019, 255534.701099999248981 ], [ 357222.751900002360344, 255468.86430000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94683966, "LATITUDE": 18.32878318, "OBJECTID_1": 87247, "PARCEL_NO_": "507201011400", "Tax_Legal_": "5 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 233900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.58842337499999, "SHAPE_Area": 4857.4681560899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357180.085699997842312, 255460.493599999696016 ], [ 357165.60080000013113, 255456.997499998658895 ], [ 357155.167300000786781, 255451.212600000202656 ], [ 357138.36599999666214, 255435.665300000458956 ], [ 357127.99719999730587, 255422.281500000506639 ], [ 357087.295000001788139, 255467.333500001579523 ], [ 357092.086099997162819, 255472.861200001090765 ], [ 357100.827899999916553, 255487.920299999415874 ], [ 357101.610799998044968, 255490.671000000089407 ], [ 357103.20719999819994, 255492.58390000090003 ], [ 357103.956000000238419, 255499.344999998807907 ], [ 357111.925599999725819, 255510.387099999934435 ], [ 357119.117700003087521, 255518.045299999415874 ], [ 357122.263800002634525, 255527.359200000762939 ], [ 357127.053199999034405, 255533.097899999469519 ], [ 357180.085699997842312, 255460.493599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94449593, "LATITUDE": 18.32882769, "OBJECTID_1": 87253, "PARCEL_NO_": "507201012200", "Tax_Legal_": "LOT #1 EASTERN WATER ISLNAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 232200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.14533335300001, "SHAPE_Area": 3946.0036892600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357409.778599999845028, 255474.828000001609325 ], [ 357333.700400002300739, 255412.988200001418591 ], [ 357345.577500000596046, 255438.62779999896884 ], [ 357354.252700001001358, 255461.496899999678135 ], [ 357358.822700001299381, 255492.987199999392033 ], [ 357362.730200000107288, 255507.584699999541044 ], [ 357361.8429000005126, 255517.07660000026226 ], [ 357358.583499997854233, 255521.060699999332428 ], [ 357407.714599996805191, 255527.7956000007689 ], [ 357408.007700003683567, 255493.389800000935793 ], [ 357408.957900002598763, 255476.510099999606609 ], [ 357409.778599999845028, 255474.828000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94502676, "LATITUDE": 18.3288578, "OBJECTID_1": 87250, "PARCEL_NO_": "507201011900", "Tax_Legal_": "55 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 167200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.17253733000001, "SHAPE_Area": 3902.4269513999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357339.139600001275539, 255437.09739999845624 ], [ 357298.559600003063679, 255467.796100001782179 ], [ 357270.151699997484684, 255489.517299998551607 ], [ 357279.771700002253056, 255496.139899998903275 ], [ 357299.839599996805191, 255506.858800001442432 ], [ 357311.093800000846386, 255510.96169999986887 ], [ 357315.101999998092651, 255513.738699998706579 ], [ 357331.991400003433228, 255518.943199999630451 ], [ 357348.92400000244379, 255519.081799998879433 ], [ 357353.787000000476837, 255516.166299998760223 ], [ 357356.241899996995926, 255511.964499998837709 ], [ 357355.458999998867512, 255509.213899999856949 ], [ 357348.552799999713898, 255467.994100000709295 ], [ 357347.803999997675419, 255461.232999999076128 ], [ 357339.139600001275539, 255437.09739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94571649, "LATITUDE": 18.32842835, "OBJECTID_1": 87248, "PARCEL_NO_": "507201011700", "Tax_Legal_": "56 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BAHIA PROPERTIES LLC", "Address": "4 Avenue Des Citronniers", "City": "MONTE CARLO", "State": null, "Zip": 98000, "Country": "Monaco", "Land_Value": 167200, "Improved_V": 153700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 313.39957643999998, "SHAPE_Area": 5795.2162308099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357298.559600003063679, 255467.796100001782179 ], [ 357253.313699997961521, 255383.621599998325109 ], [ 357234.01799999922514, 255376.919799998402596 ], [ 357232.383799999952316, 255379.439500000327826 ], [ 357225.893700003623962, 255384.030499998480082 ], [ 357204.300200000405312, 255457.7364999987185 ], [ 357222.811200000345707, 255461.898699998855591 ], [ 357236.464599996805191, 255468.343299999833107 ], [ 357257.326200000941753, 255480.546399999409914 ], [ 357270.151699997484684, 255489.517299998551607 ], [ 357298.559600003063679, 255467.796100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94722476, "LATITUDE": 18.32828155, "OBJECTID_1": 87246, "PARCEL_NO_": "507201011300", "Tax_Legal_": "4 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 232200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.41358815800001, "SHAPE_Area": 4004.9781477199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357108.267399996519089, 255371.879799999296665 ], [ 357055.599899999797344, 255401.635099999606609 ], [ 357057.137000001966953, 255410.513599999248981 ], [ 357057.034500002861023, 255422.545099999755621 ], [ 357060.949199996888638, 255436.298200000077486 ], [ 357065.715199999511242, 255444.780999999493361 ], [ 357087.295000001788139, 255467.333500001579523 ], [ 357127.99719999730587, 255422.281500000506639 ], [ 357125.60530000180006, 255419.095499999821186 ], [ 357123.247500002384186, 255411.899099998176098 ], [ 357121.647399999201298, 255410.408300001174212 ], [ 357116.091300003230572, 255400.019299998879433 ], [ 357112.158699996769428, 255388.376899998635054 ], [ 357109.784699998795986, 255383.080200001597404 ], [ 357108.267399996519089, 255371.879799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94524837, "LATITUDE": 18.32831566, "OBJECTID_1": 87255, "PARCEL_NO_": "507201012400", "Tax_Legal_": "57 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "NORTHUP MCCONNELL JOINT REVOC LIV TR", "Address": "438 Crowfields Ln", "City": "Asheville", "State": "North Carolina", "Zip": 28803, "Country": "United States", "Land_Value": 164100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.487151152, "SHAPE_Area": 3206.7949184300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357321.652500003576279, 255407.401200000196695 ], [ 357253.313699997961521, 255383.621599998325109 ], [ 357298.559600003063679, 255467.796100001782179 ], [ 357339.139600001275539, 255437.09739999845624 ], [ 357327.219300001859665, 255416.523800000548363 ], [ 357322.431800000369549, 255410.574000000953674 ], [ 357321.652500003576279, 255407.401200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94633574, "LATITUDE": 18.32825043, "OBJECTID_1": 87242, "PARCEL_NO_": "507201010900", "Tax_Legal_": "54 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "TESE, CHARLES & MARYBETH", "Address": "63 Pipers Hl", "City": "WILTON", "State": "Connecticut", "Zip": 6897, "Country": "United States", "Land_Value": 165100, "Improved_V": 143600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.80099747600002, "SHAPE_Area": 4571.8563937600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357172.77419999986887, 255372.196600001305342 ], [ 357140.046899996697903, 255427.657499998807907 ], [ 357146.434500001370907, 255435.098000001162291 ], [ 357158.4375, 255445.962000001221895 ], [ 357167.265600003302097, 255450.889499999582767 ], [ 357174.502599999308586, 255453.270700000226498 ], [ 357197.057800002396107, 255455.988400001078844 ], [ 357204.300200000405312, 255457.7364999987185 ], [ 357225.893700003623962, 255384.030499998480082 ], [ 357212.175599999725819, 255385.18470000103116 ], [ 357201.702500000596046, 255384.043600000441074 ], [ 357181.600500002503395, 255377.335099998861551 ], [ 357172.77419999986887, 255372.196600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94539651, "LATITUDE": 18.3277756, "OBJECTID_1": 87256, "PARCEL_NO_": "507201012500", "Tax_Legal_": "58 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "RICHMAN, STEVEN A. & COLEEN C", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 173400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.59842081199997, "SHAPE_Area": 4826.7413956600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357330.309000000357628, 255337.811200000345707 ], [ 357240.025399997830391, 255334.328000001609325 ], [ 357239.05179999768734, 255353.951799999922514 ], [ 357236.465700000524521, 255373.562300000339746 ], [ 357234.01799999922514, 255376.919799998402596 ], [ 357253.313699997961521, 255383.621599998325109 ], [ 357321.652500003576279, 255407.401200000196695 ], [ 357320.081200003623962, 255402.53319999948144 ], [ 357319.362999998033047, 255392.183699999004602 ], [ 357320.181900002062321, 255390.712799999862909 ], [ 357320.216099999845028, 255386.702300000935793 ], [ 357321.034999996423721, 255385.231300000101328 ], [ 357321.070900000631809, 255381.009700000286102 ], [ 357322.751900002360344, 255373.002000000327826 ], [ 357322.866999998688698, 255359.492899999022484 ], [ 357324.542499996721745, 255352.118299998342991 ], [ 357327.035199999809265, 255343.483899999409914 ], [ 357330.309000000357628, 255337.811200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94736838, "LATITUDE": 18.32766813, "OBJECTID_1": 87244, "PARCEL_NO_": "507201011100", "Tax_Legal_": "83 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BEAMS, MARK A", "Address": "1353 East Crooked Lake Dr", "City": "Kalamazoo", "State": "Michigan", "Zip": 49009, "Country": "United States", "Land_Value": 233900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.13331666099998, "SHAPE_Area": 4553.8982816300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357100.853399999439716, 255295.61430000141263 ], [ 357032.69879999756813, 255344.874600000679493 ], [ 357043.805500000715256, 255366.285900000482798 ], [ 357052.487999998033047, 255388.310699999332428 ], [ 357055.599899999797344, 255401.635099999606609 ], [ 357108.267399996519089, 255371.879799999296665 ], [ 357107.497000001370907, 255367.651599999517202 ], [ 357107.6570999994874, 255348.865600001066923 ], [ 357106.868699997663498, 255346.748199999332428 ], [ 357106.913699999451637, 255341.471200000494719 ], [ 357103.020599998533726, 255325.185199998319149 ], [ 357103.110500000417233, 255314.63120000064373 ], [ 357100.853399999439716, 255295.61430000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94621816, "LATITUDE": 18.32760335, "OBJECTID_1": 87271, "PARCEL_NO_": "507201020100", "Tax_Legal_": "52 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "ANAHITA MIRAFTABI REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163100, "Improved_V": 345700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.11995080499997, "SHAPE_Area": 4345.9928030199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357234.615000002086163, 255306.841600000858307 ], [ 357195.811300002038479, 255318.345199998468161 ], [ 357141.648100003600121, 255334.367199998348951 ], [ 357141.626500003039837, 255336.900199998170137 ], [ 357146.377999998629093, 255347.071600001305342 ], [ 357156.768399998545647, 255357.922400001436472 ], [ 357176.04619999974966, 255366.734999999403954 ], [ 357184.870700001716614, 255372.084600001573563 ], [ 357207.389899998903275, 255379.023899998515844 ], [ 357218.678199999034405, 255379.116200000047684 ], [ 357225.951200000941753, 255377.27589999884367 ], [ 357230.841300003230572, 255371.194200001657009 ], [ 357231.73929999768734, 255360.4358000010252 ], [ 357232.558200001716614, 255358.964899998158216 ], [ 357232.70380000025034, 255341.867499999701977 ], [ 357234.442299999296665, 255327.105200000107288 ], [ 357234.615000002086163, 255306.841600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201012300", "MAP": null, "PARCEL_NAM": "94", "ACRE": null, "LONGITUDE": -64.94445771, "LATITUDE": 18.32759517, "OBJECTID_1": 87254, "PARCEL_NO_": "507201012300", "Tax_Legal_": "94 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "SPRAT BAY HOMEOWNERS ASSOC. INC", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 266700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.89242525200001, "SHAPE_Area": 2187.6764186599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357421.132799997925758, 255372.540600001811981 ], [ 357426.234999999403954, 255341.551600001752377 ], [ 357358.639600001275539, 255325.166299998760223 ], [ 357348.152199998497963, 255325.713799998164177 ], [ 357340.868400000035763, 255328.820599999278784 ], [ 357337.607199996709824, 255333.015799999237061 ], [ 357330.175899997353554, 255353.431000001728535 ], [ 357329.268899999558926, 255365.244800001382828 ], [ 357336.622800000011921, 255353.905999999493361 ], [ 357342.311999998986721, 255348.675200000405312 ], [ 357350.414700001478195, 255344.09739999845624 ], [ 357356.883100003004074, 255342.039500001817942 ], [ 357361.722800001502037, 255341.868000000715256 ], [ 357368.149899996817112, 255344.664799999445677 ], [ 357388.982799999415874, 255360.245099999010563 ], [ 357421.132799997925758, 255372.540600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94328512, "LATITUDE": 18.32718894, "OBJECTID_1": 87269, "PARCEL_NO_": "507201014400", "Tax_Legal_": "44 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "SHEA, JOHN G. & PHYLLIS M", "Address": "PO Box 128", "City": "Bryn Mawr", "State": "Pennsylvania", "Zip": 19010, "Country": "United States", "Land_Value": 169200, "Improved_V": 597300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.61027943800002, "SHAPE_Area": 4083.1853167499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357502.803400002419949, 255251.197000000625849 ], [ 357468.983999997377396, 255340.212699998170137 ], [ 357493.144599996507168, 255343.787999998778105 ], [ 357519.790600001811981, 255339.573100000619888 ], [ 357525.434799998998642, 255339.619300000369549 ], [ 357539.017300002276897, 255259.725999999791384 ], [ 357509.232299998402596, 255253.782699998468161 ], [ 357502.803400002419949, 255251.197000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201013500", "MAP": null, "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.94212985, "LATITUDE": 18.32694284, "OBJECTID_1": 87265, "PARCEL_NO_": "507201013500", "Tax_Legal_": "10 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SHEA, WILLIAM P", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 227100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 364.290707828, "SHAPE_Area": 5745.9480353199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357618.123000003397465, 255344.810899998992682 ], [ 357618.194899998605251, 255336.36769999936223 ], [ 357616.609300002455711, 255333.188299998641014 ], [ 357615.842500001192093, 255328.537999998778105 ], [ 357615.871299996972084, 255325.160700000822544 ], [ 357618.38910000026226, 255313.571199998259544 ], [ 357627.325099997222424, 255305.83390000090003 ], [ 357641.057599999010563, 255302.990899998694658 ], [ 357657.988300003111362, 255303.340599998831749 ], [ 357661.222599998116493, 255302.311599999666214 ], [ 357660.624899998307228, 255277.819899998605251 ], [ 357663.104900002479553, 255270.662999998778105 ], [ 357665.554399996995926, 255267.094399999827147 ], [ 357665.593999996781349, 255262.450699999928474 ], [ 357663.234399996697903, 255255.465300001204014 ], [ 357663.273999996483326, 255250.821600001305342 ], [ 357664.101899996399879, 255248.295200001448393 ], [ 357670.597300000488758, 255243.071100000292063 ], [ 357671.454000003635883, 255237.167399998754263 ], [ 357669.092600002884865, 255230.393100000917912 ], [ 357659.504900000989437, 255219.971099998801947 ], [ 357656.299500003457069, 255217.622800000011921 ], [ 357650.671499997377396, 255215.676899999380112 ], [ 357644.251500003039837, 255212.035799998790026 ], [ 357610.048299998044968, 255251.441399998962879 ], [ 357608.338600002229214, 255262.826499998569489 ], [ 357606.702600002288818, 255265.557300001382828 ], [ 357594.541400000452995, 255273.268199998885393 ], [ 357596.101899996399879, 255279.402699999511242 ], [ 357594.293300002813339, 255302.397100001573563 ], [ 357590.974500000476837, 255313.346799999475479 ], [ 357582.796300001442432, 255326.789900001138449 ], [ 357618.123000003397465, 255344.810899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94366975, "LATITUDE": 18.32703582, "OBJECTID_1": 87262, "PARCEL_NO_": "507201013100", "Tax_Legal_": "65 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SHEA, JOHN G. & PHYLLIS M", "Address": "PO Box 128", "City": "Bryn Mawr", "State": "Pennsylvania", "Zip": 19010, "Country": "United States", "Land_Value": 166200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.27747316, "SHAPE_Area": 4311.7799872200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357502.803400002419949, 255251.197000000625849 ], [ 357497.178999997675419, 255248.828899998217821 ], [ 357485.163400001823902, 255239.442400000989437 ], [ 357478.772299997508526, 255232.4239999987185 ], [ 357471.634099997580051, 255218.433400001376867 ], [ 357468.4070999994874, 255218.618099998682737 ], [ 357466.684799998998642, 255231.480700001120567 ], [ 357463.339000001549721, 255245.596599999815226 ], [ 357460.052699998021126, 255252.746899999678135 ], [ 357453.526600003242493, 255261.559399999678135 ], [ 357446.223099999129772, 255266.988099999725819 ], [ 357438.127599999308586, 255270.721500001847744 ], [ 357443.212499998509884, 255336.413199998438358 ], [ 357468.983999997377396, 255340.212699998170137 ], [ 357502.803400002419949, 255251.197000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94281492, "LATITUDE": 18.3271781, "OBJECTID_1": 87264, "PARCEL_NO_": "507201013400", "Tax_Legal_": "43 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SHEA, JOHN G. & PHYLLIS M", "Address": "PO Box 128", "City": "Bryn Mawr", "State": "Pennsylvania", "Zip": 19010, "Country": "United States", "Land_Value": 145800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.311086743, "SHAPE_Area": 3759.031413 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357525.434799998998642, 255339.619300000369549 ], [ 357539.142099998891354, 255339.731499999761581 ], [ 357560.941299997270107, 255336.532400000840425 ], [ 357570.669200003147125, 255330.490299999713898 ], [ 357576.358400002121925, 255325.259500000625849 ], [ 357585.351899996399879, 255310.767700001597404 ], [ 357588.695799998939037, 255296.862900000065565 ], [ 357590.434299997985363, 255282.100499998778105 ], [ 357588.861199997365475, 255277.443599998950958 ], [ 357585.671999998390675, 255273.195599999278784 ], [ 357578.451099999248981, 255268.914700001478195 ], [ 357562.360799998044968, 255264.561099998652935 ], [ 357539.017300002276897, 255259.725999999791384 ], [ 357525.434799998998642, 255339.619300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94534248, "LATITUDE": 18.32734009, "OBJECTID_1": 87257, "PARCEL_NO_": "507201012600", "Tax_Legal_": "59 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SILVERWOOD, JOHN F.& JEAN M.", "Address": "PO Box 2132", "City": "Rancho Santa Fe", "State": "California", "Zip": 92067, "Country": "United States", "Land_Value": 168200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.86757821200001, "SHAPE_Area": 3611.9744185999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357338.5033999979496, 255322.468400001525879 ], [ 357320.247699998319149, 255288.332899998873472 ], [ 357241.078000001609325, 255305.416799999773502 ], [ 357240.025399997830391, 255334.328000001609325 ], [ 357330.309000000357628, 255337.811200000345707 ], [ 357331.982799999415874, 255330.647700000554323 ], [ 357333.620600000023842, 255327.705800000578165 ], [ 357338.5033999979496, 255322.468400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94650681, "LATITUDE": 18.32715075, "OBJECTID_1": 87272, "PARCEL_NO_": "507201020200", "Tax_Legal_": "53 EASTERN WATER ISLAND 10&11 SOUTHSIDE QTR.", "Name": "ANAHITA MIRAFTABI REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.15296092700001, "SHAPE_Area": 3748.8178036700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357195.811300002038479, 255318.345199998468161 ], [ 357194.810000002384186, 255246.565200001001358 ], [ 357129.156999997794628, 255286.13569999858737 ], [ 357129.932800002396107, 255289.730599999427795 ], [ 357133.102300003170967, 255296.300500001758337 ], [ 357140.112800002098083, 255325.27760000154376 ], [ 357140.0641999989748, 255330.976799998432398 ], [ 357141.648100003600121, 255334.367199998348951 ], [ 357195.811300002038479, 255318.345199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94425191000001, "LATITUDE": 18.32716041, "OBJECTID_1": 87260, "PARCEL_NO_": "507201012900", "Tax_Legal_": "62 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "JERRY J BATT TRUST", "Address": "414 Pine Valley Dr", "City": "Bowling Green", "State": "Ohio", "Zip": 43402, "Country": "United States", "Land_Value": 146900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.83172354499999, "SHAPE_Area": 4583.1706953299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357368.930399999022484, 255253.056600000709295 ], [ 357372.37389999628067, 255322.112300001084805 ], [ 357420.650200001895428, 255334.539799999445677 ], [ 357443.212499998509884, 255336.413199998438358 ], [ 357438.127599999308586, 255270.721500001847744 ], [ 357430.858199998736382, 255272.139699999243021 ], [ 357417.976999998092651, 255269.712200000882149 ], [ 357368.930399999022484, 255253.056600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94488322, "LATITUDE": 18.3269576, "OBJECTID_1": 87259, "PARCEL_NO_": "507201012800", "Tax_Legal_": "61 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "TILTON JR.,ROBERT FRANKLIN, & ANDERSON, SURBER KAREN", "Address": "562 WHITE BIRCH DRIVE", "City": "GUILFORD", "State": "Connecticut", "Zip": 6437, "Country": "United States", "Land_Value": 145900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.756486204, "SHAPE_Area": 4394.41468807 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357289.299599997699261, 255229.606699999421835 ], [ 357320.247699998319149, 255288.332899998873472 ], [ 357338.5033999979496, 255322.468400001525879 ], [ 357343.361000001430511, 255320.186099998652935 ], [ 357349.822300001978874, 255318.972500000149012 ], [ 357360.304399996995926, 255319.058299999684095 ], [ 357372.37389999628067, 255322.112300001084805 ], [ 357368.930399999022484, 255253.056600000709295 ], [ 357349.63459999859333, 255246.354699999094009 ], [ 357323.917099997401237, 255236.222899999469519 ], [ 357303.81139999628067, 255229.936599999666214 ], [ 357289.299599997699261, 255229.606699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94601884, "LATITUDE": 18.32683268, "OBJECTID_1": 87273, "PARCEL_NO_": "507201020300", "Tax_Legal_": "51 EASTERN WATER ISLAND 10&11 SOUTHSIDE QTR.", "Name": "ANAHITA MIRAFTABI REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 117300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.91359610400002, "SHAPE_Area": 4404.3684423100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357194.285999998450279, 255213.419300001114607 ], [ 357194.810000002384186, 255246.565200001001358 ], [ 357195.811300002038479, 255318.345199998468161 ], [ 357234.615000002086163, 255306.841600000858307 ], [ 357234.703100003302097, 255296.498700000345707 ], [ 357235.534599997103214, 255293.550200000405312 ], [ 357235.0320999994874, 255257.871300000697374 ], [ 357236.709499999880791, 255250.285700000822544 ], [ 357239.974299997091293, 255245.668299999088049 ], [ 357248.152500003576279, 255232.225299999117851 ], [ 357256.256999999284744, 255227.4364 ], [ 357263.538999997079372, 255224.540699999779463 ], [ 357272.422799997031689, 255222.924699999392033 ], [ 357287.737300001084805, 255223.683299999684095 ], [ 357278.9003000035882, 255219.811299998313189 ], [ 357274.067800000309944, 255219.1385000012815 ], [ 357232.951300002634525, 255218.168699998408556 ], [ 357204.751900002360344, 255215.404800001531839 ], [ 357194.285999998450279, 255213.419300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94549702, "LATITUDE": 18.32690274, "OBJECTID_1": 87258, "PARCEL_NO_": "507201012700", "Tax_Legal_": "60 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "TILTON JR., ROBERT F. & ANDERSON, KAREN S.", "Address": "562 WHITE BIRCH DRIVE", "City": "GUILFORD", "State": "Connecticut", "Zip": 6437, "Country": "United States", "Land_Value": 142800, "Improved_V": 201500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.96522202400001, "SHAPE_Area": 4200.2905308500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357241.078000001609325, 255305.416799999773502 ], [ 357320.247699998319149, 255288.332899998873472 ], [ 357289.299599997699261, 255229.606699999421835 ], [ 357273.177000001072884, 255229.052600000053644 ], [ 357265.101300001144409, 255230.464099999517202 ], [ 357254.577799998223782, 255235.233199998736382 ], [ 357250.517499998211861, 255238.577399998903275 ], [ 357244.804999999701977, 255246.552200000733137 ], [ 357241.495200000703335, 255256.44649999961257 ], [ 357240.584600001573563, 255268.682500001043081 ], [ 357240.518100000917912, 255276.492400001734495 ], [ 357241.311800003051758, 255277.976599998772144 ], [ 357241.078000001609325, 255305.416799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94665946000001, "LATITUDE": 18.32668546, "OBJECTID_1": 87274, "PARCEL_NO_": "507201020400", "Tax_Legal_": "72 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 164100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.78811639399999, "SHAPE_Area": 4225.0574144000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357185.470499999821186, 255207.014299999922514 ], [ 357101.387500002980232, 255232.923900000751019 ], [ 357099.747900001704693, 255236.076900001615286 ], [ 357103.727300003170967, 255242.231199998408556 ], [ 357114.106799997389317, 255254.348499998450279 ], [ 357129.156999997794628, 255286.13569999858737 ], [ 357194.810000002384186, 255246.565200001001358 ], [ 357194.285999998450279, 255213.419300001114607 ], [ 357188.668799996376038, 255210.206900000572205 ], [ 357185.470499999821186, 255207.014299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94280157, "LATITUDE": 18.32663548, "OBJECTID_1": 87292, "PARCEL_NO_": "507201022400", "Tax_Legal_": "42 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 145800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.57218519499997, "SHAPE_Area": 3135.6467707199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357556.433600001037121, 255203.084399998188019 ], [ 357502.853699997067451, 255245.286699999123812 ], [ 357512.504299998283386, 255248.320999998599291 ], [ 357580.115900002419949, 255262.806600000709295 ], [ 357585.73309999704361, 255266.019000001251698 ], [ 357590.536799997091293, 255270.069099999964237 ], [ 357592.147600002586842, 255270.293299999088049 ], [ 357603.493600003421307, 255263.63120000064373 ], [ 357605.95380000025034, 255258.79619999974966 ], [ 357606.02759999781847, 255250.1418999992311 ], [ 357605.239200003445148, 255248.024599999189377 ], [ 357604.445500001311302, 255246.540399998426437 ], [ 357565.961900003254414, 255220.471999999135733 ], [ 357560.377099998295307, 255213.460200000554323 ], [ 357556.433600001037121, 255203.084399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022300", "MAP": "D9-8693-T012", "PARCEL_NAM": "45", "ACRE": "1.00", "LONGITUDE": -64.94396458, "LATITUDE": 18.32648729, "OBJECTID_1": 87291, "PARCEL_NO_": "507201022300", "Tax_Legal_": "45 EASTERN WATER ISLAND 10 SOUTHSIDE QTR.", "Name": "EYRE, KATHERINE INEZ", "Address": "12580 Kelly Palm Dr", "City": "Fort Myers", "State": "Florida", "Zip": 33908, "Country": "United States", "Land_Value": 163100, "Improved_V": 537100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.82504567000001, "SHAPE_Area": 3977.40816795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357449.54110000282526, 255161.468400001525879 ], [ 357424.182199999690056, 255203.901799999177456 ], [ 357393.107100002467632, 255254.732099998742342 ], [ 357415.613799996674061, 255263.149000000208616 ], [ 357432.524700000882149, 255265.820500001311302 ], [ 357438.989600002765656, 255264.18470000103116 ], [ 357443.039200000464916, 255262.106899999082088 ], [ 357448.726499997079372, 255257.087200000882149 ], [ 357453.614699997007847, 255251.216600000858307 ], [ 357457.714599996805191, 255243.22859999909997 ], [ 357461.053199999034405, 255229.956999998539686 ], [ 357461.085500001907349, 255226.157600000500679 ], [ 357463.686099998652935, 255204.858399998396635 ], [ 357463.822800002992153, 255188.816399998962879 ], [ 357460.690999999642372, 255177.813900001347065 ], [ 357456.717000000178814, 255171.026399999856949 ], [ 357449.54110000282526, 255161.468400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507201010200", "MAP": "D9-8947-T014", "PARCEL_NAM": "112", "ACRE": "2.88", "LONGITUDE": -64.94900794, "LATITUDE": 18.32611842, "OBJECTID_1": 87236, "PARCEL_NO_": "507201010200", "Tax_Legal_": "112 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CAROLINA POINT PLANTATION LLC", "Address": "PO Box 64", "City": "ST. CHARLES", "State": "Illinois", "Zip": 60174, "Country": "United States", "Land_Value": 374000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 439.91229711800003, "SHAPE_Area": 11072.076328200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356917.379199996590614, 255251.26069999858737 ], [ 356911.787100002169609, 255245.093199998140335 ], [ 356909.420400001108646, 255238.952100001275539 ], [ 356908.704000003635883, 255228.391600001603365 ], [ 356910.348899997770786, 255224.605399999767542 ], [ 356912.798500001430511, 255221.036800000816584 ], [ 356916.858800001442432, 255217.692499998956919 ], [ 356924.94709999859333, 255214.803399998694658 ], [ 356932.200300000607967, 255215.285000000149012 ], [ 356937.822899997234344, 255217.864100001752377 ], [ 356953.401799999177456, 255187.594200000166893 ], [ 356953.237400002777576, 255112.232400000095367 ], [ 356880.662100002169609, 255112.482799999415874 ], [ 356853.417199999094009, 255186.986900001764297 ], [ 356850.949799999594688, 255192.666299998760223 ], [ 356850.073299996554852, 255200.891699999570847 ], [ 356852.386200003325939, 255213.365200001746416 ], [ 356857.913500003516674, 255227.131499998271465 ], [ 356861.900100000202656, 255232.441500000655651 ], [ 356883.476300001144409, 255255.416200000792742 ], [ 356888.2871999964118, 255258.621899999678135 ], [ 356893.918799996376038, 255260.145700000226498 ], [ 356898.760300002992153, 255259.763099998235703 ], [ 356907.649499997496605, 255257.513900000602007 ], [ 356917.379199996590614, 255251.26069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022200", "MAP": null, "PARCEL_NAM": "48", "ACRE": null, "LONGITUDE": -64.94452898, "LATITUDE": 18.32634268, "OBJECTID_1": 87290, "PARCEL_NO_": "507201022200", "Tax_Legal_": "48 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.55920156600001, "SHAPE_Area": 5077.7967438100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357424.182199999690056, 255203.901799999177456 ], [ 357348.872500002384186, 255146.501299999654293 ], [ 357344.064099997282028, 255237.65430000051856 ], [ 357355.314699999988079, 255242.179400000721216 ], [ 357364.972499996423721, 255244.369300000369549 ], [ 357393.107100002467632, 255254.732099998742342 ], [ 357424.182199999690056, 255203.901799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94241319, "LATITUDE": 18.32642327, "OBJECTID_1": 87266, "PARCEL_NO_": "507201013600", "Tax_Legal_": "11 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 184300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.56504364700001, "SHAPE_Area": 2351.0706890199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357608.881700001657009, 255199.080699998885393 ], [ 357559.727200001478195, 255195.089800000190735 ], [ 357559.691200003027916, 255199.311299998313189 ], [ 357562.038199998438358, 255207.774300001561642 ], [ 357565.211300000548363, 255213.921999998390675 ], [ 357568.407799996435642, 255217.325599998235703 ], [ 357606.889600001275539, 255243.605099998414516 ], [ 357610.048299998044968, 255251.441399998962879 ], [ 357644.251500003039837, 255212.035799998790026 ], [ 357628.954999998211861, 255209.166400000452995 ], [ 357623.326999999582767, 255207.220499999821186 ], [ 357613.660199999809265, 255206.085900001227856 ], [ 357611.250299997627735, 255205.01069999858737 ], [ 357609.655599996447563, 255202.886700000613928 ], [ 357608.881700001657009, 255199.080699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94332585, "LATITUDE": 18.32626288, "OBJECTID_1": 87293, "PARCEL_NO_": "507201022500", "Tax_Legal_": "41 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 166200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.71316567399998, "SHAPE_Area": 4638.8317153600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357558.137900002300739, 255192.332499999552965 ], [ 357444.816500000655651, 255148.130899999290705 ], [ 357455.217600002884865, 255157.715199999511242 ], [ 357465.568400003015995, 255173.209800001233816 ], [ 357468.714599996805191, 255182.523600000888109 ], [ 357471.769000001251698, 255202.60249999910593 ], [ 357474.920500002801418, 255211.28319999948144 ], [ 357483.642499998211861, 255228.664200000464916 ], [ 357491.631899997591972, 255237.384399998933077 ], [ 357502.853699997067451, 255245.286699999123812 ], [ 357556.433600001037121, 255203.084399998188019 ], [ 357555.695600003004074, 255195.056800000369549 ], [ 357558.137900002300739, 255192.332499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9449967, "LATITUDE": 18.32611932, "OBJECTID_1": 87288, "PARCEL_NO_": "507201022000", "Tax_Legal_": "49 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "VIVE, LLC", "Address": "2846 Quarry Rd", "City": "Maumee", "State": "Ohio", "Zip": 435378626, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.77938952300002, "SHAPE_Area": 3927.0790963 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357348.359099999070168, 255125.948600001633167 ], [ 357307.77759999781847, 255142.998500000685453 ], [ 357305.311899997293949, 255148.46680000051856 ], [ 357306.278899997472763, 255224.25730000063777 ], [ 357329.600900001823902, 255231.625300001353025 ], [ 357344.064099997282028, 255237.65430000051856 ], [ 357348.872500002384186, 255146.501299999654293 ], [ 357348.359099999070168, 255125.948600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94669702, "LATITUDE": 18.32620597, "OBJECTID_1": 87275, "PARCEL_NO_": "507201020500", "Tax_Legal_": "73 EASTERN WATER ISLAND NO.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 246700, "Improved_V": 258400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.12881458599998, "SHAPE_Area": 4021.6589113499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357179.512699998915195, 255149.125900000333786 ], [ 357127.82599999755621, 255158.413199998438358 ], [ 357125.261399999260902, 255175.490800000727177 ], [ 357121.107600003480911, 255189.811099998652935 ], [ 357112.067299999296665, 255209.791000001132488 ], [ 357110.44030000269413, 255211.466499999165535 ], [ 357101.387500002980232, 255232.923900000751019 ], [ 357185.470499999821186, 255207.014299999922514 ], [ 357181.510899998247623, 255198.538199998438358 ], [ 357179.977399997413158, 255189.237500000745058 ], [ 357179.512699998915195, 255149.125900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94546857, "LATITUDE": 18.32610959, "OBJECTID_1": 87286, "PARCEL_NO_": "507201021800", "Tax_Legal_": "50 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "K. R. BORGER & C. J. HINTON LIVING REV. TRUSTS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.89741507600002, "SHAPE_Area": 4216.8019050399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357269.193199999630451, 255128.750500001013279 ], [ 357236.228699997067451, 255212.073800001293421 ], [ 357270.896499998867512, 255212.779699999839067 ], [ 357281.367799997329712, 255214.131999999284744 ], [ 357296.649899996817112, 255218.690000001341105 ], [ 357306.278899997472763, 255224.25730000063777 ], [ 357305.311899997293949, 255148.46680000051856 ], [ 357290.855800002813339, 255141.593499999493361 ], [ 357269.193199999630451, 255128.750500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94589492, "LATITUDE": 18.32601985, "OBJECTID_1": 87284, "PARCEL_NO_": "507201021600", "Tax_Legal_": "68 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "SWAINS PROPERTY MANAGEMENT LLC", "Address": "PO Box 181", "City": "CAPE MAY", "State": "New Jersey", "Zip": 8204, "Country": "United States", "Land_Value": 164100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.86357326299998, "SHAPE_Area": 3465.1935954599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357242.318199999630451, 255119.544900000095367 ], [ 357191.13629999756813, 255204.527499999850988 ], [ 357198.357100002467632, 255208.808499999344349 ], [ 357236.228699997067451, 255212.073800001293421 ], [ 357269.193199999630451, 255128.750500001013279 ], [ 357263.577799998223782, 255125.327100001275539 ], [ 357245.07039999961853, 255120.742600001394749 ], [ 357242.318199999630451, 255119.544900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201021400", "MAP": "D9-9117-T016", "PARCEL_NAM": "67", "ACRE": "1.01", "LONGITUDE": -64.94617825, "LATITUDE": 18.32566124, "OBJECTID_1": 87282, "PARCEL_NO_": "507201021400", "Tax_Legal_": "67 EASTERN WATER ISLAND No.10 & 11 SOUTHSIDE QTR.", "Name": "FLETCHER, LEIGH KELLET & AMY CLAIRE DEMPSEY", "Address": "PO Box 132", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 145800, "Improved_V": 200000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.06223977100001, "SHAPE_Area": 4293.0273774300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357201.09179999679327, 255077.108500000089407 ], [ 357181.878799997270107, 255060.69709999859333 ], [ 357179.456299997866154, 255061.099399998784065 ], [ 357181.709799997508526, 255080.538499999791384 ], [ 357185.266599997878075, 255136.296300001442432 ], [ 357184.968099996447563, 255171.335400000214577 ], [ 357185.759999997913837, 255173.030600000172853 ], [ 357185.648500002920628, 255186.117499999701977 ], [ 357187.17849999666214, 255195.840300001204014 ], [ 357191.13629999756813, 255204.527499999850988 ], [ 357242.318199999630451, 255119.544900000095367 ], [ 357238.643299996852875, 255117.945799998939037 ], [ 357232.2179000005126, 255114.937899999320507 ], [ 357227.421400003135204, 255110.043499998748302 ], [ 357210.639899998903275, 255092.174300000071526 ], [ 357201.09179999679327, 255077.108500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022600", "MAP": null, "PARCEL_NAM": "40", "ACRE": null, "LONGITUDE": -64.94426333, "LATITUDE": 18.32590278, "OBJECTID_1": 87294, "PARCEL_NO_": "507201022600", "Tax_Legal_": "40 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "WATER ISLAND PARTNERS LLC", "Address": "2846 Quarry Rd", "City": "Maumee", "State": "Ohio", "Zip": 435378626, "Country": "United States", "Land_Value": 146900, "Improved_V": 686000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.17085328299999, "SHAPE_Area": 4113.0609022799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357417.671599999070168, 255116.244699999690056 ], [ 357348.872500002384186, 255146.501299999654293 ], [ 357424.182199999690056, 255203.901799999177456 ], [ 357449.54110000282526, 255161.468400001525879 ], [ 357439.951700001955032, 255151.257500000298023 ], [ 357427.925300002098083, 255143.137499999254942 ], [ 357421.530500002205372, 255136.541200000792742 ], [ 357417.587099999189377, 255126.165399998426437 ], [ 357416.841899998486042, 255118.982099998742342 ], [ 357417.671599999070168, 255116.244699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94320032, "LATITUDE": 18.32583151, "OBJECTID_1": 87298, "PARCEL_NO_": "507201023000", "Tax_Legal_": "39 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 166200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 345.929588067, "SHAPE_Area": 5608.1632516199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357575.937899999320507, 255185.301100000739098 ], [ 357551.548299998044968, 255113.962900001555681 ], [ 357545.061800003051758, 255118.131700001657009 ], [ 357511.1300999969244, 255125.66440000012517 ], [ 357444.954999998211861, 255131.87779999896884 ], [ 357440.891000002622604, 255135.644200000911951 ], [ 357440.012800000607967, 255144.080800000578165 ], [ 357444.816500000655651, 255148.130899999290705 ], [ 357558.137900002300739, 255192.332499999552965 ], [ 357562.201899997889996, 255188.566100001335144 ], [ 357575.937899999320507, 255185.301100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94250027, "LATITUDE": 18.3255845, "OBJECTID_1": 87299, "PARCEL_NO_": "507201023100", "Tax_Legal_": "12 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "STRICKER(TRUSTEES), GEORGE GIBSON & PATRICIA SHIELDS", "Address": "200 Admirals Way", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19146, "Country": "United States", "Land_Value": 192100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.08395526599998, "SHAPE_Area": 4966.8260432300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357642.839599996805191, 255093.811799999326468 ], [ 357595.425399996340275, 255074.847500000149012 ], [ 357591.334499999880791, 255081.780099999159575 ], [ 357561.277900002896786, 255107.709699999541044 ], [ 357551.548299998044968, 255113.962900001555681 ], [ 357575.937899999320507, 255185.301100000739098 ], [ 357602.601999998092651, 255178.975400000810623 ], [ 357597.177199997007847, 255153.177600000053644 ], [ 357598.0050999969244, 255150.651200000196695 ], [ 357603.721199996769428, 255142.254299998283386 ], [ 357610.220299996435642, 255136.607900001108646 ], [ 357616.762500002980232, 255125.895700000226498 ], [ 357633.057700000703335, 255106.186299998313189 ], [ 357637.116300001740456, 255103.053100001066923 ], [ 357642.839599996805191, 255093.811799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94666481, "LATITUDE": 18.3256104, "OBJECTID_1": 87276, "PARCEL_NO_": "507201020700", "Tax_Legal_": "74 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 166200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.310363102, "SHAPE_Area": 3086.6254072500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357175.988300003111362, 255089.56870000064373 ], [ 357118.635799996554852, 255101.342700000852346 ], [ 357124.933399997651577, 255119.337200000882149 ], [ 357127.266099996864796, 255129.488800000399351 ], [ 357128.767200000584126, 255142.588899999856949 ], [ 357127.82599999755621, 255158.413199998438358 ], [ 357179.512699998915195, 255149.125900000333786 ], [ 357178.839500002563, 255133.499499998986721 ], [ 357177.302400000393391, 255124.620999999344349 ], [ 357175.988300003111362, 255089.56870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022700", "MAP": "D9-8649-T012", "PARCEL_NAM": "47", "ACRE": "1.024", "LONGITUDE": -64.9444204, "LATITUDE": 18.32527691, "OBJECTID_1": 87295, "PARCEL_NO_": "507201022700", "Tax_Legal_": "47 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "RUM POINT LLC", "Address": "327 Congress St", "City": "Austin", "State": "Texas", "Zip": 78701, "Country": "United States", "Land_Value": 164100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.16464371500001, "SHAPE_Area": 5290.7902375699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357404.654799997806549, 255035.078200001269579 ], [ 357383.667199999094009, 255034.047699999064207 ], [ 357348.849799998104572, 255125.742400001734495 ], [ 357348.359099999070168, 255125.948600001633167 ], [ 357348.872500002384186, 255146.501299999654293 ], [ 357417.671599999070168, 255116.244699999690056 ], [ 357419.305799998342991, 255113.724899999797344 ], [ 357420.95440000295639, 255109.516600001603365 ], [ 357420.32880000025034, 255038.205800000578165 ], [ 357404.654799997806549, 255035.078200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201021700", "MAP": "D9-9305-T018", "PARCEL_NAM": "69", "ACRE": "1.01", "LONGITUDE": -64.94542113, "LATITUDE": 18.32510177, "OBJECTID_1": 87285, "PARCEL_NO_": "507201021700", "Tax_Legal_": "69 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "PAGE, ANNE M. (TRUSTEE)", "Address": "101 Pepper Ave", "City": "Richmond", "State": "Virginia", "Zip": 23226, "Country": "United States", "Land_Value": 146900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.60864707299999, "SHAPE_Area": 4278.2766145300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357291.945500001311302, 255013.679699998348951 ], [ 357284.525700002908707, 255010.69539999961853 ], [ 357276.006899997591972, 255033.360700000077486 ], [ 357245.765799999237061, 255113.820500001311302 ], [ 357266.043499998748302, 255119.858800001442432 ], [ 357270.85980000346899, 255122.431400001049042 ], [ 357281.615099996328354, 255128.353700000792742 ], [ 357282.106799997389317, 255127.673000000417233 ], [ 357302.505000002682209, 255073.086100000888109 ], [ 357320.922200001776218, 255023.800599999725819 ], [ 357312.056500002741814, 255019.332699999213219 ], [ 357300.795100003480911, 255016.074099998921156 ], [ 357291.945500001311302, 255013.679699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9433125, "LATITUDE": 18.3253766, "OBJECTID_1": 87297, "PARCEL_NO_": "507201022900", "Tax_Legal_": "38 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.13506942399999, "SHAPE_Area": 5606.12062246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357593.042400002479553, 255070.606100000441074 ], [ 357525.304999999701977, 255070.896099999547005 ], [ 357518.814900003373623, 255075.487100001424551 ], [ 357504.23480000346899, 255083.178199999034405 ], [ 357486.449100002646446, 255088.521099999547005 ], [ 357457.360699996352196, 255095.460200000554323 ], [ 357438.74719999730587, 255103.3293999992311 ], [ 357428.202200002968311, 255110.631299998611212 ], [ 357424.944600000977516, 255114.404399998486042 ], [ 357423.299599997699261, 255118.190600000321865 ], [ 357423.227700002491474, 255126.633699998259544 ], [ 357427.194499999284744, 255134.265599999576807 ], [ 357434.401000000536442, 255140.235199999064207 ], [ 357436.859499998390675, 255135.611200001090765 ], [ 357438.502700001001358, 255132.036100000143051 ], [ 357444.179200001060963, 255128.282900001853704 ], [ 357510.354400001466274, 255122.069499999284744 ], [ 357543.477899998426437, 255114.741200000047684 ], [ 357558.882399998605251, 255104.945900000631809 ], [ 357588.938900001347065, 255079.01630000025034 ], [ 357593.024400003254414, 255072.716899998486042 ], [ 357593.042400002479553, 255070.606100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022800", "MAP": "D9-8649-T012", "PARCEL_NAM": "46 REM", "ACRE": ".25", "LONGITUDE": -64.94316024, "LATITUDE": 18.32449725, "OBJECTID_1": 87296, "PARCEL_NO_": "507201022800", "Tax_Legal_": "46-REM SPRAT BAY WATER ISLAND", "Name": "SALISBURY, C & HATAWAY, GRANT", "Address": "327 Congress St", "City": "Austin", "State": "Texas", "Zip": 78701, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.711156359, "SHAPE_Area": 918.71671891699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357522.619800001382828, 255033.148899998515844 ], [ 357541.2212999984622, 255030.139899998903275 ], [ 357541.859200000762939, 255020.791299998760223 ], [ 357540.302299998700619, 255014.234700001776218 ], [ 357536.351700000464916, 255004.703200001269579 ], [ 357525.183799996972084, 254990.468499999493361 ], [ 357497.943599998950958, 254969.769499998539686 ], [ 357493.947999998927116, 254965.514899998903275 ], [ 357489.17119999974966, 254958.298599999397993 ], [ 357480.359300002455711, 254951.471500001847744 ], [ 357509.876400001347065, 254988.865499999374151 ], [ 357521.006599999964237, 255007.532900001853704 ], [ 357524.136500000953674, 255018.746500000357628 ], [ 357522.619800001382828, 255033.148899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94676677, "LATITUDE": 18.32509839, "OBJECTID_1": 87277, "PARCEL_NO_": "507201020900", "Tax_Legal_": "75 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.18976668799999, "SHAPE_Area": 3830.6879318800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357163.637500002980232, 255024.872999999672174 ], [ 357095.576399996876717, 255063.1570999994874 ], [ 357118.635799996554852, 255101.342700000852346 ], [ 357175.988300003111362, 255089.56870000064373 ], [ 357174.54110000282526, 255070.136199999600649 ], [ 357172.984200000762939, 255063.579599998891354 ], [ 357173.092100001871586, 255050.914900001138449 ], [ 357171.527999997138977, 255045.202500000596046 ], [ 357169.992700003087521, 255036.112900000065565 ], [ 357163.637500002980232, 255024.872999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94214617, "LATITUDE": 18.3248591, "OBJECTID_1": 87300, "PARCEL_NO_": "507201023200", "Tax_Legal_": "13 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "STRICKER(TRUSTEES), GEORGE GIBSON & PATRICIA SHIELDS", "Address": "200 Admirals Way", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19146, "Country": "United States", "Land_Value": 219900, "Improved_V": 489700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.47345731799999, "SHAPE_Area": 4723.8489619700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357642.839599996805191, 255093.811799999326468 ], [ 357645.330399997532368, 255085.3885000012815 ], [ 357644.545699998736382, 255082.848900001496077 ], [ 357645.369999997317791, 255080.744699999690056 ], [ 357652.574699997901917, 255086.925400000065565 ], [ 357655.789099998772144, 255088.218299999833107 ], [ 357658.21169999986887, 255087.815900001674891 ], [ 357659.842299997806549, 255085.718299999833107 ], [ 357654.259199999272823, 255078.49549999833107 ], [ 357655.094300001859665, 255075.124800000339746 ], [ 357659.134900003671646, 255074.102400001138449 ], [ 357659.95380000025034, 255072.631400000303984 ], [ 357658.355499997735023, 255070.92960000038147 ], [ 357654.325800001621246, 255070.685499999672174 ], [ 357651.113099999725819, 255069.181600000709295 ], [ 357651.136500000953674, 255066.437600001692772 ], [ 357654.381499998271465, 255064.142099998891354 ], [ 357655.200400002300739, 255062.671100001782179 ], [ 357655.22919999808073, 255059.2939000017941 ], [ 357660.088600002229214, 255056.800500001758337 ], [ 357660.921899996697903, 255053.640900000929832 ], [ 357656.942500002682209, 255047.486699998378754 ], [ 357656.987400002777576, 255042.209699999541044 ], [ 357660.239699997007847, 255039.069899998605251 ], [ 357662.714400000870228, 255032.546300001442432 ], [ 357661.979999996721745, 255024.096500001847744 ], [ 357660.403300002217293, 255019.861699998378754 ], [ 357653.173500001430511, 255016.636199999600649 ], [ 357649.982400000095367, 255012.599300000816584 ], [ 357650.050700001418591, 255004.578299999237061 ], [ 357650.871399998664856, 255002.896200001239777 ], [ 357649.305500000715256, 254997.394999999552965 ], [ 357646.107299998402596, 254994.202399998903275 ], [ 357600.802699998021126, 255011.563499998301268 ], [ 357601.317699998617172, 255045.764800000935793 ], [ 357597.077600002288818, 255070.217000000178814 ], [ 357595.425399996340275, 255074.847500000149012 ], [ 357642.839599996805191, 255093.811799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94747389, "LATITUDE": 18.32470734, "OBJECTID_1": 87278, "PARCEL_NO_": "507201021000", "Tax_Legal_": "77-82 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "SPRAT BAY HOMOWNERS ASSOC. , INC", "Address": "PO Box 6785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 437200, "Improved_V": 4000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.75890422999998, "SHAPE_Area": 4946.8240321200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357093.188000001013279, 255059.5489999987185 ], [ 357100.291299998760223, 254982.980200000107288 ], [ 357047.94030000269413, 254975.58559999987483 ], [ 357034.444099999964237, 255045.347100000828505 ], [ 357030.221900001168251, 255067.688499998301268 ], [ 357088.321400001645088, 255062.886700000613928 ], [ 357093.188000001013279, 255059.5489999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201021300", "MAP": "D9-9277-TT018", "PARCEL_NAM": "63", "ACRE": "1.00", "LONGITUDE": -64.94609065, "LATITUDE": 18.32473045, "OBJECTID_1": 87281, "PARCEL_NO_": "507201021300", "Tax_Legal_": "63 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SUSAN J BUBB TRUST", "Address": "17 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 140700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.94849482000001, "SHAPE_Area": 4438.6155466700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357216.465000003576279, 254976.331599999219179 ], [ 357211.198399998247623, 254973.414200000464916 ], [ 357177.231499999761581, 255038.283100001513958 ], [ 357179.538999997079372, 255051.389800000935793 ], [ 357199.554700002074242, 255068.230000000447035 ], [ 357212.337099999189377, 255082.266800001263618 ], [ 357216.307499997317791, 255089.476500000804663 ], [ 357238.516400001943111, 255026.912500001490116 ], [ 357250.05120000243187, 254994.418000001460314 ], [ 357243.753700003027916, 254991.331500001251698 ], [ 357216.465000003576279, 254976.331599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94274243, "LATITUDE": 18.32475571, "OBJECTID_1": 87302, "PARCEL_NO_": "507201023400", "Tax_Legal_": "37 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 176400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.44410037300003, "SHAPE_Area": 4216.8852364300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357597.566699996590614, 255012.80350000038743 ], [ 357593.52250000089407, 255014.248100001364946 ], [ 357555.969300001859665, 254973.621899999678135 ], [ 357542.013800002634525, 255002.638599999248981 ], [ 357545.968099996447563, 255011.747999999672174 ], [ 357547.528599999845028, 255017.882399998605251 ], [ 357547.404500000178814, 255032.446899998933077 ], [ 357545.728900000452995, 255039.821400001645088 ], [ 357542.438900001347065, 255047.393899999558926 ], [ 357525.304999999701977, 255070.896099999547005 ], [ 357593.042400002479553, 255070.606100000441074 ], [ 357597.288000002503395, 255045.520799998193979 ], [ 357597.566699996590614, 255012.80350000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201021100", "MAP": null, "PARCEL_NAM": "76", "ACRE": null, "LONGITUDE": -64.94696031, "LATITUDE": 18.32463249, "OBJECTID_1": 87279, "PARCEL_NO_": "507201021100", "Tax_Legal_": "76 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.29043424499997, "SHAPE_Area": 3713.4139213200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357112.628700003027916, 254954.583500001579523 ], [ 357106.734600000083447, 254983.877300001680851 ], [ 357100.291299998760223, 254982.980200000107288 ], [ 357093.188000001013279, 255059.5489999987185 ], [ 357095.576399996876717, 255063.1570999994874 ], [ 357163.637500002980232, 255024.872999999672174 ], [ 357158.072400003671646, 255015.539299998432398 ], [ 357149.30009999871254, 255004.068399999290705 ], [ 357117.347900003194809, 254968.554299999028444 ], [ 357115.780199997127056, 254963.26410000026226 ], [ 357115.844999998807907, 254955.665300000458956 ], [ 357112.628700003027916, 254954.583500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201031500", "MAP": "D9-8649-T012", "PARCEL_NAM": "35", "ACRE": "1.072", "LONGITUDE": -64.94353065, "LATITUDE": 18.324533, "OBJECTID_1": 87320, "PARCEL_NO_": "507201031500", "Tax_Legal_": "35 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "RUM POINT LLC", "Address": "327 Congress St", "City": "Austin", "State": "Texas", "Zip": 78701, "Country": "United States", "Land_Value": 170300, "Improved_V": 597600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.22755160499997, "SHAPE_Area": 4064.8053768599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357469.913199998438358, 254947.164099998772144 ], [ 357461.857299998402596, 254946.253800000995398 ], [ 357457.837300002574921, 255039.524300001561642 ], [ 357459.446299999952316, 255039.959600001573563 ], [ 357479.564499996602535, 255044.768300000578165 ], [ 357494.040399998426437, 255049.31980000063777 ], [ 357500.489100001752377, 255049.583700001239777 ], [ 357507.771099999547005, 255046.688000001013279 ], [ 357511.833200000226498, 255043.132599998265505 ], [ 357516.757399998605251, 255033.040399998426437 ], [ 357518.46169999986887, 255022.288600001484156 ], [ 357517.696800000965595, 255017.427200000733137 ], [ 357513.7550999969244, 255006.840199999511242 ], [ 357493.832900002598763, 254979.023899998515844 ], [ 357482.650600001215935, 254966.477899998426437 ], [ 357474.677400000393391, 254955.857999999076128 ], [ 357469.913199998438358, 254947.164099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507201010300", "MAP": "D9-8903-T014", "PARCEL_NAM": "111", "ACRE": "1.03", "LONGITUDE": -64.94793525, "LATITUDE": 18.32413585, "OBJECTID_1": 87237, "PARCEL_NO_": "507201010300", "Tax_Legal_": "REM 111 WATER ISLAND NO. 10 SOUTHSIDE QUARTER", "Name": "BUBB, STEPHEN K. & SUSAN J", "Address": "1257 Huntington Rd", "City": "Kansas City", "State": "Missouri", "Zip": 64113, "Country": "United States", "Land_Value": 213200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 404.4987182, "SHAPE_Area": 7015.5094551000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357014.801100000739098, 254881.520799998193979 ], [ 357010.181100003421307, 254926.6587999984622 ], [ 356978.212499998509884, 254922.7162000015378 ], [ 356972.299800001084805, 254957.023600000888109 ], [ 357034.444099999964237, 255045.347100000828505 ], [ 357047.94030000269413, 254975.58559999987483 ], [ 357058.036799997091293, 254926.272399999201298 ], [ 357043.616700001060963, 254915.177499998360872 ], [ 357037.227300003170967, 254907.947999998927116 ], [ 357024.472000002861023, 254890.745000001043081 ], [ 357015.667300000786781, 254883.073600001633167 ], [ 357014.801100000739098, 254881.520799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94489802, "LATITUDE": 18.324423, "OBJECTID_1": 87317, "PARCEL_NO_": "507201031200", "Tax_Legal_": "32 EASTERN WATER ISALND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.95978287000003, "SHAPE_Area": 3580.9100701299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357366.721400000154972, 254944.419700000435114 ], [ 357347.992799997329712, 254965.798000000417233 ], [ 357336.650499999523163, 254972.037900000810623 ], [ 357330.991899996995926, 254973.680399999022484 ], [ 357322.928800001740456, 254973.614399999380112 ], [ 357316.496299996972084, 254971.450800001621246 ], [ 357307.668200001120567, 254966.523400001227856 ], [ 357303.663599997758865, 254963.324200000613928 ], [ 357304.067100003361702, 255010.612500000745058 ], [ 357313.7212999984622, 255013.224599998444319 ], [ 357342.626299999654293, 255027.815600000321865 ], [ 357350.678599998354912, 255029.147999998182058 ], [ 357367.620200000703335, 255028.231199998408556 ], [ 357366.721400000154972, 254944.419700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201021200", "MAP": null, "PARCEL_NAM": "64", "ACRE": null, "LONGITUDE": -64.94653721, "LATITUDE": 18.32430729, "OBJECTID_1": 87280, "PARCEL_NO_": "507201021200", "Tax_Legal_": "64 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "THERESA E PEARSALL REVOCABLE TRUST", "Address": "81 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163100, "Improved_V": 516800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.95950072900001, "SHAPE_Area": 4246.4665915599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357148.225100003182888, 254940.942699998617172 ], [ 357140.170999996364117, 254939.821299999952316 ], [ 357132.894400000572205, 254942.083799999207258 ], [ 357126.398999996483326, 254947.307900000363588 ], [ 357123.128799997270107, 254952.558499999344349 ], [ 357122.223499998450279, 254964.161299999803305 ], [ 357130.997699998319149, 254975.421000000089407 ], [ 357159.760600000619888, 255006.687199998646975 ], [ 357170.899700000882149, 255024.299100000411272 ], [ 357177.231499999761581, 255038.283100001513958 ], [ 357211.198399998247623, 254973.414200000464916 ], [ 357184.361699998378754, 254958.548099998384714 ], [ 357148.225100003182888, 254940.942699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94246094, "LATITUDE": 18.3242311, "OBJECTID_1": 87301, "PARCEL_NO_": "507201023300", "Tax_Legal_": "14 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "STRICKER(TRUSTEES), GEORGE GIBSON & PATRICIA SHIELDS", "Address": "200 Admirals Way", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19146, "Country": "United States", "Land_Value": 89600, "Improved_V": 12100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.92824958400001, "SHAPE_Area": 4123.3609480699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357646.107299998402596, 254994.202399998903275 ], [ 357640.51519999653101, 254988.03489999845624 ], [ 357642.151199996471405, 254985.304099999368191 ], [ 357641.361100003123283, 254983.397799998521805 ], [ 357638.152000002563, 254981.471700001507998 ], [ 357636.568199999630451, 254978.081199999898672 ], [ 357636.611299999058247, 254973.015299998223782 ], [ 357635.8175999969244, 254971.531199999153614 ], [ 357634.217600002884865, 254970.040399998426437 ], [ 357626.964400000870228, 254969.558899998664856 ], [ 357625.375100001692772, 254966.801699999719858 ], [ 357621.374099999666214, 254963.180300001055002 ], [ 357615.751500003039837, 254960.601199999451637 ], [ 357611.772100001573563, 254954.446899998933077 ], [ 357607.778300002217293, 254949.981199998408556 ], [ 357602.171899996697903, 254945.502399999648333 ], [ 357596.585199996829033, 254938.701699998229742 ], [ 357586.947200000286102, 254934.189800001680851 ], [ 357583.781300000846386, 254927.197799999266863 ], [ 357582.218999996781349, 254921.274399999529123 ], [ 357555.969300001859665, 254973.621899999678135 ], [ 357593.52250000089407, 255014.248100001364946 ], [ 357597.566699996590614, 255012.80350000038743 ], [ 357600.802699998021126, 255011.563499998301268 ], [ 357646.107299998402596, 254994.202399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94553227, "LATITUDE": 18.32416684, "OBJECTID_1": 87316, "PARCEL_NO_": "507201031100", "Tax_Legal_": "31 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 164100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.22644634099998, "SHAPE_Area": 3741.2425284699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357246.949500001966953, 254900.165300000458956 ], [ 357246.221199996769428, 254985.652199998497963 ], [ 357262.275600001215935, 254994.227299999445677 ], [ 357285.574100002646446, 255004.339400000870228 ], [ 357293.608499996364117, 255007.782699998468161 ], [ 357304.067100003361702, 255010.612500000745058 ], [ 357303.663599997758865, 254963.324200000613928 ], [ 357258.092200003564358, 254917.355000000447035 ], [ 357252.509199999272823, 254910.132199998944998 ], [ 357246.949500001966953, 254900.165300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94300295, "LATITUDE": 18.32397566, "OBJECTID_1": 87306, "PARCEL_NO_": "507201030100", "Tax_Legal_": "15 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "STRICKER(TRUSTEES), GEORGE GIBSON & PATRICIA SHIELDS", "Address": "200 Admirals Way", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19146, "Country": "United States", "Land_Value": 162300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.485977225, "SHAPE_Area": 4654.2305319899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357546.870800003409386, 254905.786400001496077 ], [ 357489.239600002765656, 254950.27760000154376 ], [ 357494.838799998164177, 254955.60080000013113 ], [ 357502.813799999654293, 254966.00959999859333 ], [ 357529.254900000989437, 254985.857700001448393 ], [ 357537.244300000369549, 254994.578000001609325 ], [ 357542.013800002634525, 255002.638599999248981 ], [ 357555.969300001859665, 254973.621899999678135 ], [ 357582.218999996781349, 254921.274399999529123 ], [ 357579.949400000274181, 254903.735100001096725 ], [ 357546.870800003409386, 254905.786400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507102010200", "MAP": "D9-9213-T017", "PARCEL_NAM": "100", "ACRE": "2.0", "LONGITUDE": -64.9514646, "LATITUDE": 18.32377762, "OBJECTID_1": 87152, "PARCEL_NO_": "507102010200", "Tax_Legal_": "100 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "SHEA, WILLIAM P", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 315500, "Improved_V": 562900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 437.76495272900002, "SHAPE_Area": 10390.1347439 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356674.026399999856949, 254852.624200001358986 ], [ 356586.78999999910593, 254870.0641999989748 ], [ 356588.368400000035763, 254874.087900001555681 ], [ 356588.346900001168251, 254876.620900001376867 ], [ 356591.525399997830391, 254882.135299999266863 ], [ 356592.286700002849102, 254887.4189000017941 ], [ 356595.461599998176098, 254893.355500001460314 ], [ 356598.607699997723103, 254902.669300001114607 ], [ 356604.163800001144409, 254913.058400001376867 ], [ 356612.050700001418591, 254933.810100000351667 ], [ 356611.176100000739098, 254941.824499998241663 ], [ 356606.278899997472763, 254948.750500001013279 ], [ 356607.851899996399879, 254953.407499998807907 ], [ 356607.032999999821186, 254954.878400001674891 ], [ 356606.977300003170967, 254961.421900000423193 ], [ 356608.573700003325939, 254963.334800001233816 ], [ 356605.308899998664856, 254967.952100001275539 ], [ 356605.280100002884865, 254971.3293999992311 ], [ 356606.874799996614456, 254973.453400000929832 ], [ 356609.28830000013113, 254974.1064000017941 ], [ 356610.123400002717972, 254970.735700000077486 ], [ 356613.355899997055531, 254969.91780000180006 ], [ 356617.419799998402596, 254966.151399999856949 ], [ 356620.643200002610683, 254966.388900000602007 ], [ 356622.246899999678135, 254967.457499999552965 ], [ 356622.95610000193119, 254978.862300001084805 ], [ 356626.127400003373623, 254985.221099998801947 ], [ 356629.332900002598763, 254987.569299999624491 ], [ 356644.629399999976158, 254990.438700001686811 ], [ 356659.13400000333786, 254991.612900000065565 ], [ 356668.030500002205372, 254988.519299998879433 ], [ 356682.817400000989437, 254956.554099999368191 ], [ 356679.626299999654293, 254952.517200000584126 ], [ 356678.141400001943111, 254937.517499998211861 ], [ 356681.422399997711182, 254931.000399999320507 ], [ 356692.006899997591972, 254919.054699998348951 ], [ 356694.46000000089407, 254915.063999999314547 ], [ 356696.182300001382828, 254902.201400000602007 ], [ 356692.38629999756813, 254874.517099998891354 ], [ 356690.023100003600121, 254867.95380000025034 ], [ 356684.447300001978874, 254859.886599998921156 ], [ 356674.026399999856949, 254852.624200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94599407, "LATITUDE": 18.32370913, "OBJECTID_1": 87315, "PARCEL_NO_": "507201031000", "Tax_Legal_": "30 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 347.23507894300002, "SHAPE_Area": 4628.44515701 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357199.96509999781847, 254830.753100000321865 ], [ 357210.102600000798702, 254965.936000000685453 ], [ 357246.221199996769428, 254985.652199998497963 ], [ 357246.949500001966953, 254900.165300000458956 ], [ 357215.978000000119209, 254844.183100000023842 ], [ 357209.586900003254414, 254837.164700001478195 ], [ 357199.96509999781847, 254830.753100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201010400", "MAP": "D9-8344-T009", "PARCEL_NAM": "113", "ACRE": ".685", "LONGITUDE": -64.94736828000001, "LATITUDE": 18.3241391, "OBJECTID_1": 87238, "PARCEL_NO_": "507201010400", "Tax_Legal_": "113 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "NORTHUP MCCONNELL JOINT REVOC LIV TR", "Address": "438 Crowfields Ln", "City": "Asheville", "State": "North Carolina", "Zip": 28803, "Country": "United States", "Land_Value": 92200, "Improved_V": 380900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.611000203, "SHAPE_Area": 2241.0352281 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357058.036799997091293, 254926.272399999201298 ], [ 357047.94030000269413, 254975.58559999987483 ], [ 357100.291299998760223, 254982.980200000107288 ], [ 357106.734600000083447, 254983.877300001680851 ], [ 357112.628700003027916, 254954.583500001579523 ], [ 357098.152800001204014, 254950.0320999994874 ], [ 357081.288599997758865, 254941.872499998658895 ], [ 357072.456900000572205, 254937.367199998348951 ], [ 357058.036799997091293, 254926.272399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94634563, "LATITUDE": 18.32351075, "OBJECTID_1": 87314, "PARCEL_NO_": "507201030900", "Tax_Legal_": "29 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.12364574200001, "SHAPE_Area": 4570.6676408699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357165.351199999451637, 254823.714800000190735 ], [ 357172.3766999989748, 254945.573300000280142 ], [ 357210.102600000798702, 254965.936000000685453 ], [ 357199.96509999781847, 254830.753100000321865 ], [ 357187.90990000218153, 254826.010400000959635 ], [ 357165.351199999451637, 254823.714800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201030800", "MAP": null, "PARCEL_NAM": "28", "ACRE": null, "LONGITUDE": -64.94675126, "LATITUDE": 18.32345204, "OBJECTID_1": 87313, "PARCEL_NO_": "507201030800", "Tax_Legal_": "28 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 188800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 390.90267823099998, "SHAPE_Area": 5424.4226744999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357153.274499997496605, 254821.504999998956919 ], [ 357096.559299997985363, 254853.127099998295307 ], [ 357129.567699998617172, 254859.307900000363588 ], [ 357113.490800000727177, 254948.046700000762939 ], [ 357118.316100001335144, 254949.563799999654293 ], [ 357120.781700000166893, 254944.095600001513958 ], [ 357126.472699999809265, 254938.6537000015378 ], [ 357136.182599999010563, 254934.72239999845624 ], [ 357149.88629999756813, 254935.256700001657009 ], [ 357172.3766999989748, 254945.573300000280142 ], [ 357165.351199999451637, 254823.714800000190735 ], [ 357153.274499997496605, 254821.504999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201010500", "MAP": "D9-8372-T009", "PARCEL_NAM": "114", "ACRE": ".965", "LONGITUDE": -64.9472031, "LATITUDE": 18.32355855, "OBJECTID_1": 87239, "PARCEL_NO_": "507201010500", "Tax_Legal_": "114 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MARIN, PATRICIA", "Address": "10 Beech St", "City": "Ansonia", "State": "Connecticut", "Zip": 6401, "Country": "United States", "Land_Value": 123100, "Improved_V": 298200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.92805856400003, "SHAPE_Area": 4509.9847000299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357096.559299997985363, 254853.127099998295307 ], [ 357077.23650000244379, 254849.591400001198053 ], [ 357063.717000000178814, 254922.096999999135733 ], [ 357074.92620000243187, 254931.476799998432398 ], [ 357084.558799996972084, 254936.621899999678135 ], [ 357098.208599999547005, 254943.488600000739098 ], [ 357113.490800000727177, 254948.046700000762939 ], [ 357129.567699998617172, 254859.307900000363588 ], [ 357096.559299997985363, 254853.127099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94339852, "LATITUDE": 18.32359364, "OBJECTID_1": 87307, "PARCEL_NO_": "507201030200", "Tax_Legal_": "16 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 150000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.49155501799999, "SHAPE_Area": 4505.8160908099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357546.870800003409386, 254905.786400001496077 ], [ 357498.137100003659725, 254852.403000000864267 ], [ 357456.556599996984005, 254905.891600001603365 ], [ 357464.52080000191927, 254917.566899999976158 ], [ 357472.45269999653101, 254933.041600000113249 ], [ 357478.836599998176098, 254940.904399998486042 ], [ 357489.239600002765656, 254950.27760000154376 ], [ 357546.870800003409386, 254905.786400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94414037, "LATITUDE": 18.323715, "OBJECTID_1": 87310, "PARCEL_NO_": "507201030500", "Tax_Legal_": "33 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "NORTHUP MCCONNELL JOINT REVOCABLE LIVING TRUST", "Address": "438 Crowfelds Ln", "City": "Asheville", "State": "North Carolina", "Zip": 28803, "Country": "United States", "Land_Value": 168200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.01087633700001, "SHAPE_Area": 4088.8056472600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357408.687399998307228, 254940.330200001597404 ], [ 357461.857299998402596, 254946.253800000995398 ], [ 357469.913199998438358, 254947.164099998772144 ], [ 357467.528499998152256, 254943.133799999952316 ], [ 357464.405699998140335, 254931.075899999588728 ], [ 357450.896200001239777, 254907.745099999010563 ], [ 357439.73369999974966, 254892.877199999988079 ], [ 357418.89190000295639, 254878.352200001478195 ], [ 357407.612499997019768, 254877.2043999992311 ], [ 357401.952100001275539, 254879.05799999833107 ], [ 357395.445900000631809, 254885.548599999397993 ], [ 357392.99099999666214, 254889.750399999320507 ], [ 357385.538099996745586, 254912.698600001633167 ], [ 357370.823100000619888, 254936.220600001513958 ], [ 357408.687399998307228, 254940.330200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507201010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94962865, "LATITUDE": 18.32354683, "OBJECTID_1": 87241, "PARCEL_NO_": "507201010700", "Tax_Legal_": "108 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "NIGAMATOV, ILIAS", "Address": "159 Chestnut Mountain Rd", "City": "Travelers Rest", "State": "South Carolina", "Zip": 29690, "Country": "United States", "Land_Value": 104400, "Improved_V": 200800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.19594508699998, "SHAPE_Area": 3446.95569191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356833.658299997448921, 254856.041600000113249 ], [ 356791.231899999082088, 254914.167300000786781 ], [ 356828.282700002193451, 254919.114599999040365 ], [ 356873.477600000798702, 254914.629299998283386 ], [ 356874.697499997913837, 254866.087799999862909 ], [ 356877.154200002551079, 254861.674899999052286 ], [ 356860.176700003445148, 254866.813299998641014 ], [ 356849.692800000309944, 254866.9386 ], [ 356839.237700000405312, 254863.686599999666214 ], [ 356836.035800002515316, 254860.916200000792742 ], [ 356833.658299997448921, 254856.041600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507102010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94996018000001, "LATITUDE": 18.32326638, "OBJECTID_1": 87151, "PARCEL_NO_": "507102010100", "Tax_Legal_": "107 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "NIGAMATOV, ILIAS N.", "Address": "86 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 133600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.982589784, "SHAPE_Area": 2917.52647024 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356824.426700003445148, 254803.825899999588728 ], [ 356774.649999998509884, 254872.868299998342991 ], [ 356791.231899999082088, 254914.167300000786781 ], [ 356833.658299997448921, 254856.041600000113249 ], [ 356827.387599997222424, 254834.880899999290705 ], [ 356825.90259999781847, 254819.881099998950958 ], [ 356825.988899998366833, 254809.749299999326468 ], [ 356824.426700003445148, 254803.825899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94573361, "LATITUDE": 18.32309473, "OBJECTID_1": 87335, "PARCEL_NO_": "507203012200", "Tax_Legal_": "23 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "HEPBURN, MARY ELIZABETH", "Address": "24 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168200, "Improved_V": 316800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.61123470699999, "SHAPE_Area": 4719.8489730800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357297.415600001811981, 254844.849599998444319 ], [ 357231.734899997711182, 254793.01630000025034 ], [ 357208.04619999974966, 254828.708299998193979 ], [ 357215.258000001311302, 254834.044700000435114 ], [ 357222.4375, 254843.180500000715256 ], [ 357254.982100002467632, 254903.819600000977516 ], [ 357258.176700003445148, 254907.434300001710653 ], [ 357297.415600001811981, 254844.849599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94381552, "LATITUDE": 18.32315451, "OBJECTID_1": 87308, "PARCEL_NO_": "507201030300", "Tax_Legal_": "17 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "THE NATURE CONSERVANCY", "Address": "3052 Estate Little Princess", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 171300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.57794121400002, "SHAPE_Area": 4416.7958214700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357498.137100003659725, 254852.403000000864267 ], [ 357450.999799996614456, 254800.932599999010563 ], [ 357421.54280000180006, 254851.142900001257658 ], [ 357410.079999998211861, 254871.525100000202656 ], [ 357415.725900001823902, 254871.360199999064207 ], [ 357422.160300001502037, 254873.312699999660254 ], [ 357435.790299996733665, 254882.501299999654293 ], [ 357443.804799996316433, 254888.266399998217821 ], [ 357456.556599996984005, 254905.891600001603365 ], [ 357498.137100003659725, 254852.403000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94226274, "LATITUDE": 18.3204154, "OBJECTID_1": 87344, "PARCEL_NO_": "507203030100", "Tax_Legal_": "WATER ISLAND AREA \"A\", SPRAT BAY SOUTHSIDE QUARTER 10", "Name": "THE GOVERNMENT OT THE U.S. VIRGIN ISLANDS", "Address": "Prpperty And Procurement", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4026.28655295, "SHAPE_Area": 159334.91068100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357591.527900002896786, 254491.1418999992311 ], [ 357588.234399996697903, 254499.136500000953674 ], [ 357584.9712999984622, 254503.54280000180006 ], [ 357582.505699999630451, 254509.010999999940395 ], [ 357575.99040000140667, 254516.557100001722574 ], [ 357564.622900001704693, 254525.752199999988079 ], [ 357544.364399999380112, 254537.407600000500679 ], [ 357499.054499998688698, 254555.401900000870228 ], [ 357495.838200002908707, 254554.320099998265505 ], [ 357491.829999998211861, 254551.543099999427795 ], [ 357489.411100000143051, 254551.523299999535084 ], [ 357489.357199996709824, 254557.855700001120567 ], [ 357490.933799996972084, 254562.090399999171495 ], [ 357487.721100002527237, 254560.586500000208616 ], [ 357486.957999996840954, 254555.513999998569489 ], [ 357485.356200002133846, 254554.234299998730421 ], [ 357483.777699999511242, 254550.21059999987483 ], [ 357479.7550999969244, 254549.12220000103116 ], [ 357477.332599997520447, 254549.524599999189377 ], [ 357474.886699996888638, 254552.671000000089407 ], [ 357475.666000001132488, 254555.843800000846386 ], [ 357483.592500001192093, 254571.951699998229742 ], [ 357484.371799997985363, 254575.124499998986721 ], [ 357477.127599999308586, 254573.587600000202656 ], [ 357471.523000001907349, 254568.897700000554323 ], [ 357467.572300001978874, 254559.366099998354912 ], [ 357464.39019999653101, 254554.273800000548363 ], [ 357451.586300000548363, 254542.769999999552965 ], [ 357449.997100003063679, 254540.012699998915195 ], [ 357448.388099998235703, 254539.577399998903275 ], [ 357444.275600001215935, 254549.042899999767542 ], [ 357445.036899998784065, 254554.326499998569489 ], [ 357449.799300000071526, 254563.2314000017941 ], [ 357451.370600000023842, 254568.099399998784065 ], [ 357451.347199998795986, 254570.843499999493361 ], [ 357445.683200001716614, 254573.119100000709295 ], [ 357441.648100003600121, 254573.508299998939037 ], [ 357436.023599997162819, 254571.1402000002563 ], [ 357433.631700001657009, 254567.954199999570847 ], [ 357431.225299999117851, 254566.456900000572205 ], [ 357427.98929999768734, 254567.697000000625849 ], [ 357424.751500003039837, 254569.14809999987483 ], [ 357422.305500000715256, 254572.29450000077486 ], [ 357423.038099996745586, 254580.955299999564886 ], [ 357424.630999997258186, 254583.290399998426437 ], [ 357423.776100002229214, 254588.982900001108646 ], [ 357418.909500002861023, 254592.320599999278784 ], [ 357414.0608000010252, 254593.547499999403954 ], [ 357409.2246999964118, 254593.296799998730421 ], [ 357397.878799997270107, 254599.95890000090003 ], [ 357390.537500001490116, 254609.820300001651049 ], [ 357389.688000001013279, 254614.87950000166893 ], [ 357393.491200000047684, 254641.7195999994874 ], [ 357396.660700000822544, 254648.28940000012517 ], [ 357403.6891999989748, 254675.155799999833107 ], [ 357403.584899999201298, 254687.398400001227856 ], [ 357402.742600001394749, 254691.613400001078844 ], [ 357403.523699998855591, 254694.575100000947714 ], [ 357402.699400000274181, 254696.679200001060963 ], [ 357405.07880000025034, 254701.342799998819828 ], [ 357403.442800000309944, 254704.073600001633167 ], [ 357396.178800001740456, 254704.858500000089407 ], [ 357382.419299997389317, 254710.867600001394749 ], [ 357370.308499999344349, 254712.668299999088049 ], [ 357355.749899998307228, 254717.826499998569489 ], [ 357341.214699998497963, 254720.240699999034405 ], [ 357318.639700002968311, 254719.844799999147654 ], [ 357304.957599997520447, 254716.777499999850988 ], [ 357280.843699999153614, 254707.714200001209974 ], [ 357272.013899996876717, 254702.997900001704693 ], [ 357264.8074000030756, 254697.028299998492002 ], [ 357249.570200003683567, 254687.193300001323223 ], [ 357241.562799997627735, 254680.58390000090003 ], [ 357231.984200000762939, 254669.1064000017941 ], [ 357228.809299997985363, 254663.169799998402596 ], [ 357211.064999997615814, 254663.657900001853704 ], [ 357260.560099996626377, 254722.324799999594688 ], [ 357265.362000003457069, 254726.585999999195337 ], [ 357272.584600001573563, 254730.655799999833107 ], [ 357283.853200003504753, 254733.070099998265505 ], [ 357313.701200000941753, 254731.625599998980761 ], [ 357360.506800003349781, 254727.364700000733137 ], [ 357373.438400000333786, 254723.881900001317263 ], [ 357379.896099999547005, 254723.090399999171495 ], [ 357387.149300001561642, 254723.572000000625849 ], [ 357399.206200003623962, 254728.10359999909997 ], [ 357415.260600000619888, 254736.678700000047684 ], [ 357426.527400001883507, 254739.304099999368191 ], [ 357433.784199997782707, 254739.363499999046326 ], [ 357441.874300003051758, 254736.263300001621246 ], [ 357443.503100000321865, 254734.376800000667572 ], [ 357459.711999997496605, 254724.799100000411272 ], [ 357479.939999997615814, 254716.73200000077486 ], [ 357496.912100002169609, 254712.22690000012517 ], [ 357513.040200002491474, 254712.147799998521805 ], [ 357546.997000001370907, 254701.65989999845624 ], [ 357555.069099999964237, 254700.670499999076128 ], [ 357560.73309999704361, 254698.394900001585484 ], [ 357564.789800003170967, 254695.472800001502037 ], [ 357568.047399997711182, 254691.699700001627207 ], [ 357575.437299996614456, 254676.139299999922514 ], [ 357577.116499997675419, 254668.342599999159575 ], [ 357577.150600001215935, 254664.332100000232458 ], [ 357578.093599997460842, 254648.296700000762939 ], [ 357580.706699997186661, 254625.519999999552965 ], [ 357588.206299997866154, 254597.083700001239777 ], [ 357589.167300000786781, 254578.9375 ], [ 357589.997000001370907, 254576.200100000947714 ], [ 357589.347099997103214, 254557.829700000584126 ], [ 357591.002899996936321, 254552.776999998837709 ], [ 357611.516699999570847, 254511.148299999535084 ], [ 357616.539800003170967, 254489.446800000965595 ], [ 357620.903999999165535, 254450.43019999936223 ], [ 357625.029100000858307, 254439.487100001424551 ], [ 357636.441600002348423, 254425.015099998563528 ], [ 357649.448700003325939, 254412.666999999433756 ], [ 357652.71169999986887, 254408.26069999858737 ], [ 357657.585500001907349, 254404.07880000025034 ], [ 357675.491599999368191, 254384.593600001186132 ], [ 357677.197700001299381, 254373.630699999630451 ], [ 357676.60360000282526, 254348.71680000051856 ], [ 357677.598700001835823, 254326.560100000351667 ], [ 357680.253200002014637, 254298.928599998354912 ], [ 357681.899999998509884, 254294.93129999935627 ], [ 357684.340499997138977, 254292.418200001120567 ], [ 357682.591300003230572, 254308.446899998933077 ], [ 357684.918499998748302, 254319.231800001114607 ], [ 357684.081600002944469, 254322.813499998301268 ], [ 357682.186700001358986, 254355.939699999988079 ], [ 357681.956500001251698, 254382.957800000905991 ], [ 357680.297100000083447, 254388.432599999010563 ], [ 357677.046700000762939, 254391.361299999058247 ], [ 357674.595399998128414, 254395.140999998897314 ], [ 357671.348600000143051, 254397.64750000089407 ], [ 357646.934399999678135, 254423.834399998188019 ], [ 357642.875900000333786, 254426.967599999159575 ], [ 357630.653499998152256, 254441.855200000107288 ], [ 357626.526600003242493, 254453.009399998933077 ], [ 357622.156999997794628, 254492.659200001507998 ], [ 357617.963600002229214, 254511.6233000010252 ], [ 357595.803000003099442, 254557.249200001358986 ], [ 357595.535099998116493, 254588.699999999254942 ], [ 357594.7162000015378, 254590.170899998396635 ], [ 357592.133599996566772, 254609.359299998730421 ], [ 357587.160800002515316, 254625.150600001215935 ], [ 357585.406199999153614, 254641.812600001692772 ], [ 357583.761200003325939, 254645.598900001496077 ], [ 357583.579599998891354, 254666.91780000180006 ], [ 357580.251800000667572, 254678.922899998724461 ], [ 357572.035800002515316, 254696.798599999397993 ], [ 357566.344899997115135, 254702.240499999374151 ], [ 357559.053900003433228, 254706.191599998623133 ], [ 357550.175499998033047, 254707.174400001764297 ], [ 357517.024999998509884, 254717.668800000101328 ], [ 357510.565499998629093, 254718.671399999409914 ], [ 357497.666299998760223, 254718.354800000786781 ], [ 357482.310400001704693, 254722.4510000012815 ], [ 357462.084200002253056, 254730.307000000029802 ], [ 357438.580700002610683, 254744.25789999961853 ], [ 357447.005999997258186, 254796.466899998486042 ], [ 357450.999799996614456, 254800.932599999010563 ], [ 357498.137100003659725, 254852.403000000864267 ], [ 357546.870800003409386, 254905.786400001496077 ], [ 357579.949400000274181, 254903.735100001096725 ], [ 357580.001500003039837, 254897.613800000399351 ], [ 357583.476700000464916, 254868.300200000405312 ], [ 357586.818800002336502, 254854.606499999761581 ], [ 357592.606899999082088, 254837.766399998217821 ], [ 357599.176100000739098, 254823.888000000268221 ], [ 357603.25620000064373, 254818.221799999475479 ], [ 357618.691200003027916, 254804.838199999183416 ], [ 357648.699199996888638, 254784.607700001448393 ], [ 357677.044200003147125, 254770.27419999986887 ], [ 357681.869499996304512, 254771.791400000452995 ], [ 357684.263199999928474, 254774.76630000025034 ], [ 357689.875100001692772, 254778.611900001764297 ], [ 357697.914800003170967, 254781.421900000423193 ], [ 357704.361699998378754, 254781.896899998188019 ], [ 357707.597800001502037, 254780.656800001859665 ], [ 357711.670699998736382, 254775.83500000089407 ], [ 357714.975000001490116, 254766.573899999260902 ], [ 357717.401199996471405, 254765.749400001019239 ], [ 357723.038199998438358, 254766.639899998903275 ], [ 357727.075099997222424, 254766.039700001478195 ], [ 357730.321999996900558, 254763.533100001513958 ], [ 357731.178599998354912, 254757.62950000166893 ], [ 357729.636100001633167, 254749.384199999272823 ], [ 357728.057700000703335, 254745.360500000417233 ], [ 357728.09179999679327, 254741.350000001490116 ], [ 357730.618699997663498, 254728.705099999904633 ], [ 357732.261799998581409, 254725.129999998956919 ], [ 357734.693400003015995, 254723.672200001776218 ], [ 357737.95099999755621, 254719.89919999986887 ], [ 357734.76349999755621, 254715.440099999308586 ], [ 357733.980599999427795, 254712.689500000327826 ], [ 357735.629199996590614, 254708.481100000441074 ], [ 357734.075900003314018, 254701.502300001680851 ], [ 357734.108199998736382, 254697.702899999916553 ], [ 357738.946099996566772, 254697.742499999701977 ], [ 357741.350699998438358, 254699.450899999588728 ], [ 357742.999300003051758, 254695.242600001394749 ], [ 357742.237899996340275, 254689.958999998867512 ], [ 357746.298199996352196, 254686.614700000733137 ], [ 357746.319799996912479, 254684.081799998879433 ], [ 357744.730599999427795, 254681.324599999934435 ], [ 357743.135899998247623, 254679.200599998235703 ], [ 357739.127700001001358, 254676.423599999397993 ], [ 357738.359200000762939, 254671.984299998730421 ], [ 357740.828500002622604, 254666.093899998813868 ], [ 357742.507600001990795, 254658.297200001776218 ], [ 357742.552599996328354, 254653.020199999213219 ], [ 357745.066799998283386, 254641.852800000458956 ], [ 357745.133400000631809, 254634.042899999767542 ], [ 357753.20549999922514, 254633.05350000038743 ], [ 357753.230599999427795, 254630.098400000482798 ], [ 357750.034199997782707, 254626.694699998944998 ], [ 357746.018799997866154, 254624.761999998241663 ], [ 357748.477300003170967, 254620.138099998235703 ], [ 357746.090700000524521, 254616.318900000303984 ], [ 357738.848300002515316, 254614.570900000631809 ], [ 357741.35530000180006, 254604.247800000011921 ], [ 357740.563400000333786, 254602.552600000053644 ], [ 357733.344400003552437, 254598.060499999672174 ], [ 357730.144299998879433, 254595.078999999910593 ], [ 357725.347800001502037, 254590.184599999338388 ], [ 357723.769299998879433, 254586.160900000482798 ], [ 357718.949400000274181, 254584.010499998927116 ], [ 357716.634800001978874, 254571.748100001364946 ], [ 357717.532799996435642, 254560.989700000733137 ], [ 357719.190399996936321, 254555.725999999791384 ], [ 357727.355999998748302, 254543.760499998927116 ], [ 357729.785700000822544, 254542.513799998909235 ], [ 357749.442900002002716, 254506.788800001144409 ], [ 357750.340899996459484, 254496.030299998819828 ], [ 357762.544600002467632, 254492.990200001746416 ], [ 357785.695699997246265, 254477.115200001746416 ], [ 357798.924900002777576, 254461.901599999517202 ], [ 357802.893700003623962, 254449.33390000090003 ], [ 357806.20099999755621, 254444.703699998557568 ], [ 357813.476999998092651, 254415.599500000476837 ], [ 357814.799900002777576, 254409.646299999207258 ], [ 357824.721799999475479, 254395.755699999630451 ], [ 357826.044799998402596, 254379.219200000166893 ], [ 357825.383299998939037, 254369.2972999997437 ], [ 357822.737499997019768, 254360.698300000280142 ], [ 357826.706200003623962, 254346.807700000703335 ], [ 357838.612499997019768, 254340.19310000166297 ], [ 357846.549999997019768, 254326.963899999856949 ], [ 357850.518799997866154, 254310.427400000393391 ], [ 357849.195799998939037, 254293.229400001466274 ], [ 357848.534400001168251, 254283.307500001043081 ], [ 357851.841700002551079, 254276.031500000506639 ], [ 357848.30969999730587, 254259.985199999064207 ], [ 357839.557099997997284, 254246.192499998956919 ], [ 357829.352099999785423, 254239.651200000196695 ], [ 357838.612499997019768, 254231.713700000196695 ], [ 357834.643700003623962, 254219.807399999350309 ], [ 357828.690600000321865, 254214.515700001269579 ], [ 357820.51129999756813, 254210.150699999183416 ], [ 357807.523900002241135, 254200.625100001692772 ], [ 357799.586400002241135, 254201.286499999463558 ], [ 357794.956200003623962, 254209.885499998927116 ], [ 357794.956200003623962, 254220.468899998813868 ], [ 357794.956200003623962, 254234.359499998390675 ], [ 357790.325900003314018, 254228.406399998813868 ], [ 357783.711300000548363, 254225.760499998927116 ], [ 357779.742600001394749, 254219.807399999350309 ], [ 357763.867499999701977, 254219.807399999350309 ], [ 357750.385899998247623, 254225.949499998241663 ], [ 357740.443599998950958, 254237.993000000715256 ], [ 357724.313799999654293, 254238.28319999948144 ], [ 357710.707800000905991, 254243.561000000685453 ], [ 357705.659100003540516, 254261.479400001466274 ], [ 357701.69030000269413, 254279.338799998164177 ], [ 357695.737199999392033, 254270.078299999237061 ], [ 357690.445500001311302, 254267.432500001043081 ], [ 357685.153800003230572, 254262.140799999237061 ], [ 357684.665700003504753, 254252.866799999028444 ], [ 357683.830899998545647, 254237.005399998277426 ], [ 357680.523599997162819, 254240.312600001692772 ], [ 357674.475500002503395, 254251.438000001013279 ], [ 357672.586099997162819, 254263.463700000196695 ], [ 357667.955899998545647, 254270.078299999237061 ], [ 357658.034000001847744, 254270.078299999237061 ], [ 357654.065200001001358, 254280.000199999660254 ], [ 357649.435000002384186, 254286.614799998700619 ], [ 357631.575599998235703, 254272.062699999660254 ], [ 357624.961000002920628, 254280.000199999660254 ], [ 357617.685000002384186, 254288.599199999123812 ], [ 357615.039099998772144, 254274.708599999547005 ], [ 357604.455799996852875, 254268.755399998277426 ], [ 357594.75900000333786, 254263.534099999815226 ], [ 357587.257799997925758, 254259.495000001043081 ], [ 357593.576099999248981, 254250.723099999129772 ], [ 357601.809900000691414, 254229.067800000309944 ], [ 357593.872400000691414, 254214.515700001269579 ], [ 357586.745399996638298, 254200.638099998235703 ], [ 357578.624799996614456, 254207.32660000026226 ], [ 357572.705700002610683, 254232.375100001692772 ], [ 357574.690099999308586, 254242.296999998390675 ], [ 357580.643200002610683, 254260.156399998813868 ], [ 357580.643200002610683, 254275.370000001043081 ], [ 357572.044200003147125, 254281.984600000083447 ], [ 357564.106700003147125, 254291.245000001043081 ], [ 357567.413999997079372, 254307.120099999010563 ], [ 357572.705700002610683, 254357.390999998897314 ], [ 357572.044200003147125, 254391.125500001013279 ], [ 357567.413999997079372, 254425.52140000090003 ], [ 357582.627599999308586, 254453.302700001746416 ], [ 357593.156800001859665, 254489.255399998277426 ], [ 357591.527900002896786, 254491.1418999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9448928, "LATITUDE": 18.32298053, "OBJECTID_1": 87336, "PARCEL_NO_": "507203012300", "Tax_Legal_": "20 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 169200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.37187408299999, "SHAPE_Area": 3716.98858191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357381.471699997782707, 254822.106199998408556 ], [ 357333.384199999272823, 254787.515399999916553 ], [ 357304.625699996948242, 254850.396999999880791 ], [ 357343.073299996554852, 254880.686999998986721 ], [ 357381.471699997782707, 254822.106199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95016461, "LATITUDE": 18.32288811, "OBJECTID_1": 87187, "PARCEL_NO_": "507104012800", "Tax_Legal_": "102 WATER ISLAND No.10 SOUTHSIDE QUARTER", "Name": "VENTURA, SUSAN", "Address": "PO Box 97", "City": "Culebra", "State": "Puerto Rico", "Zip": 775, "Country": "United States", "Land_Value": 161700, "Improved_V": 129800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.66843604600001, "SHAPE_Area": 3861.32317767 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356786.776299998164177, 254774.598000001162291 ], [ 356741.078000001609325, 254838.185300000011921 ], [ 356766.752300001680851, 254853.383099999278784 ], [ 356774.649999998509884, 254872.868299998342991 ], [ 356824.426700003445148, 254803.825899999588728 ], [ 356820.457999996840954, 254796.405200000852346 ], [ 356807.668499998748302, 254783.212699998170137 ], [ 356786.776299998164177, 254774.598000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95330911000001, "LATITUDE": 18.32198442, "OBJECTID_1": 87162, "PARCEL_NO_": "507104010400", "Tax_Legal_": "WATER ISLAND TRACT \"F\" & \"G\" SOUTHSIDE QUARTER 10", "Name": "HOTEL", "Address": "TRACT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1301.0754693, "SHAPE_Area": 43549.003213000011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356237.031599998474121, 254561.960299998521805 ], [ 356176.396300002932549, 254580.462499998509884 ], [ 356182.821699999272823, 254583.470400001853704 ], [ 356186.003799997270107, 254588.562699999660254 ], [ 356188.356200002133846, 254596.392400000244379 ], [ 356199.550999999046326, 254607.460900001227856 ], [ 356201.134900003671646, 254610.851300001144409 ], [ 356208.309000000357628, 254620.620400000363588 ], [ 356211.464100003242493, 254628.878800000995398 ], [ 356212.995800003409386, 254638.390599999576807 ], [ 356216.181500002741814, 254643.060699999332428 ], [ 356216.951800003647804, 254647.288899999111891 ], [ 356218.546499997377396, 254649.412900000810623 ], [ 356222.556500002741814, 254651.978799998760223 ], [ 356228.998000003397465, 254653.087000001221895 ], [ 356233.000799998641014, 254656.497299998998642 ], [ 356232.977399997413158, 254659.241300001740456 ], [ 356237.773900002241135, 254664.13569999858737 ], [ 356257.013899996876717, 254677.381000000983477 ], [ 356264.23480000346899, 254681.661899998784065 ], [ 356281.91610000282526, 254688.561599999666214 ], [ 356287.524300001561642, 254692.8293999992311 ], [ 356297.155100002884865, 254698.185600001364946 ], [ 356300.355200000107288, 254701.167100001126528 ], [ 356305.133699998259544, 254708.1722999997437 ], [ 356309.134700000286102, 254711.793600000441074 ], [ 356318.797899998724461, 254713.350299999117851 ], [ 356324.418700002133846, 254716.140599999576807 ], [ 356336.47919999808073, 254720.250100001692772 ], [ 356346.905500002205372, 254726.879299998283386 ], [ 356361.37780000269413, 254731.852899998426437 ], [ 356364.585100002586842, 254733.990100000053644 ], [ 356374.977200001478195, 254744.629799999296665 ], [ 356383.816100001335144, 254748.290699999779463 ], [ 356388.625200003385544, 254751.707600001245737 ], [ 356399.922600001096725, 254750.744600001722574 ], [ 356406.394599996507168, 254748.264400001615286 ], [ 356421.698399998247623, 254750.289500001817942 ], [ 356430.54450000077486, 254753.106199998408556 ], [ 356431.334600001573563, 254755.012499999254942 ], [ 356433.735500000417233, 254757.14299999922514 ], [ 356440.970799997448921, 254759.735399998724461 ], [ 356445.785300001502037, 254762.519000001251698 ], [ 356453.045699998736382, 254762.156199999153614 ], [ 356465.113399997353554, 254765.421399999409914 ], [ 356474.801700003445148, 254764.02309999987483 ], [ 356484.464900001883507, 254765.579799998551607 ], [ 356489.306400001049042, 254765.197200000286102 ], [ 356494.133400000631809, 254766.503299999982119 ], [ 356516.604099996387959, 254779.141699999570847 ], [ 356529.42960000038147, 254788.11259999871254 ], [ 356547.038999997079372, 254803.45549999922514 ], [ 356554.252599999308586, 254808.580800000578165 ], [ 356572.60360000282526, 254831.529100000858307 ], [ 356581.305799998342991, 254851.23200000077486 ], [ 356582.072599999606609, 254855.88230000063777 ], [ 356584.424999997019768, 254863.712099999189377 ], [ 356586.78999999910593, 254870.0641999989748 ], [ 356674.026399999856949, 254852.624200001358986 ], [ 356653.983599998056889, 254838.950100000947714 ], [ 356646.791599996387959, 254831.291900001466274 ], [ 356643.611299999058247, 254825.988499999046326 ], [ 356642.833700001239777, 254822.604699999094009 ], [ 356641.239100001752377, 254820.480700001120567 ], [ 356637.568999998271465, 254778.020799998193979 ], [ 356634.457000002264977, 254764.69649999961257 ], [ 356618.636399999260902, 254728.681099999696016 ], [ 356611.476700000464916, 254717.223400000482798 ], [ 356606.6891999989748, 254711.273600000888109 ], [ 356597.871899999678135, 254705.079799998551607 ], [ 356591.4358000010252, 254703.338300000876188 ], [ 356578.588699996471405, 254696.900400001555681 ], [ 356548.848700001835823, 254685.680100001394749 ], [ 356532.7871999964118, 254677.949299998581409 ], [ 356522.373400002717972, 254669.842500001192093 ], [ 356516.75620000064373, 254666.630100000649691 ], [ 356507.154200002551079, 254657.896699998527765 ], [ 356495.935999996960163, 254649.572200000286102 ], [ 356489.489100001752377, 254649.097300000488758 ], [ 356471.798699997365475, 254643.252999998629093 ], [ 356464.549099996685982, 254642.349300000816584 ], [ 356458.874399997293949, 254645.891399998217821 ], [ 356450.735699996352196, 254654.690699998289347 ], [ 356441.810500003397465, 254661.16160000115633 ], [ 356433.709600001573563, 254665.528200000524521 ], [ 356417.565399996936321, 254667.506999999284744 ], [ 356377.2533999979496, 254666.754900000989437 ], [ 356360.336999997496605, 254664.716600000858307 ], [ 356327.346500001847744, 254656.42509999871254 ], [ 356311.295800000429153, 254647.427799999713898 ], [ 356301.656000003218651, 254643.127000000327826 ], [ 356294.456699997186661, 254636.313099998980761 ], [ 356276.809600003063679, 254625.402899999171495 ], [ 356272.007700003683567, 254621.141699999570847 ], [ 356264.068599998950958, 254606.511300001293421 ], [ 356256.894500002264977, 254596.742199998348951 ], [ 356252.128600001335144, 254588.259500000625849 ], [ 356250.526699997484684, 254586.979800000786781 ], [ 356244.17509999871254, 254575.317699998617172 ], [ 356240.98589999973774, 254571.069699998944998 ], [ 356237.031599998474121, 254561.960299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507201010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94796553, "LATITUDE": 18.32308723, "OBJECTID_1": 87240, "PARCEL_NO_": "507201010600", "Tax_Legal_": "110 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MARSH, JOEL W", "Address": "PO Box 1617", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 94200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.96757479199999, "SHAPE_Area": 985.33402778000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357039.402800001204014, 254841.893500000238419 ], [ 357021.732299998402596, 254833.727299999445677 ], [ 357011.426399998366833, 254812.955800000578165 ], [ 356997.377400003373623, 254852.948600001633167 ], [ 357005.436999998986721, 254853.436799999326468 ], [ 357012.652400001883507, 254858.350999999791384 ], [ 357015.777000002563, 254870.197799999266863 ], [ 357039.402800001204014, 254841.893500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010400", "MAP": null, "PARCEL_NAM": "A", "ACRE": null, "LONGITUDE": -64.9492374, "LATITUDE": 18.3229408, "OBJECTID_1": 87324, "PARCEL_NO_": "507203010400", "Tax_Legal_": "PLOT \"A\" WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "MARSH, JOEL W", "Address": "PO Box 1617", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 195000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.48525295799999, "SHAPE_Area": 5397.5285564100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356861.590800002217293, 254795.475299999117851 ], [ 356846.994400002062321, 254805.066100001335144 ], [ 356842.939499996602535, 254807.777100000530481 ], [ 356833.207999996840954, 254814.241399999707937 ], [ 356832.284800000488758, 254827.954900000244379 ], [ 356835.391400001943111, 254841.912500001490116 ], [ 356841.703400000929832, 254858.218400001525879 ], [ 356843.305200003087521, 254859.498100001364946 ], [ 356849.743100002408028, 254861.028400000184774 ], [ 356857.0, 254861.087799999862909 ], [ 356894.988399997353554, 254850.63289999961853 ], [ 356911.132600001990795, 254848.654100000858307 ], [ 356933.716499999165535, 254847.994600001722574 ], [ 356938.597599998116493, 254842.968299999833107 ], [ 356933.867600001394749, 254830.263999998569489 ], [ 356933.883799999952316, 254828.36430000141263 ], [ 356913.234300002455711, 254791.253899998962879 ], [ 356861.590800002217293, 254795.475299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010600", "MAP": "D9-8768-T013", "PARCEL_NAM": "103-A", "ACRE": ".265", "LONGITUDE": -64.94839324, "LATITUDE": 18.32174122, "OBJECTID_1": 87326, "PARCEL_NO_": "507203010600", "Tax_Legal_": "103 & 103A WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MANGE, STEPHEN K. & PAMELA R. MANGE (TRUSTEES)", "Address": "248 Pat Stough Ln", "City": "Davidson", "State": "North Carolina", "Zip": 28036, "Country": "United States", "Land_Value": 130400, "Improved_V": 250200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.612391368, "SHAPE_Area": 1131.30753626 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356977.46169999986887, 254729.718100000172853 ], [ 356993.6283999979496, 254685.562800001353025 ], [ 356948.133400000631809, 254670.160700000822544 ], [ 356952.008500002324581, 254688.557599999010563 ], [ 356962.449199996888638, 254693.498199999332428 ], [ 356977.46169999986887, 254729.718100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94710861, "LATITUDE": 18.32276805, "OBJECTID_1": 87333, "PARCEL_NO_": "507203012000", "Tax_Legal_": "27 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 196000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 313.609860873, "SHAPE_Area": 3670.3557993300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357089.814900003373623, 254792.910199999809265 ], [ 357079.750799998641014, 254838.424100000411272 ], [ 357077.23650000244379, 254849.591400001198053 ], [ 357096.559299997985363, 254853.127099998295307 ], [ 357153.274499997496605, 254821.504999998956919 ], [ 357138.813000001013279, 254815.265000000596046 ], [ 357130.810999996960163, 254808.022300001233816 ], [ 357126.030699998140335, 254801.228199999779463 ], [ 357114.983300000429153, 254772.851199999451637 ], [ 357103.239200003445148, 254731.591899998486042 ], [ 357089.814900003373623, 254792.910199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94431789, "LATITUDE": 18.32273096, "OBJECTID_1": 87337, "PARCEL_NO_": "507203012400", "Tax_Legal_": "18 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SAND SWEPT LLC.", "Address": "917 S Lusk St", "City": "Boise", "State": "Idaho", "Zip": 83706, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.08736859800001, "SHAPE_Area": 4220.0433811700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357381.471699997782707, 254822.106199998408556 ], [ 357421.54280000180006, 254851.142900001257658 ], [ 357450.999799996614456, 254800.932599999010563 ], [ 357447.005999997258186, 254796.466899998486042 ], [ 357422.956900000572205, 254779.804800000041723 ], [ 357333.384199999272823, 254787.515399999916553 ], [ 357381.471699997782707, 254822.106199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95056792, "LATITUDE": 18.32267202, "OBJECTID_1": 87160, "PARCEL_NO_": "507104010200", "Tax_Legal_": "101 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "MONROE / CONROY TRUST", "Address": "NO2 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 152600, "Improved_V": 92000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.24795749099999, "SHAPE_Area": 3724.98645386 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356738.57379999756813, 254753.51630000025034 ], [ 356727.116400003433228, 254773.265299998223782 ], [ 356697.75110000371933, 254812.71059999987483 ], [ 356741.078000001609325, 254838.185300000011921 ], [ 356786.776299998164177, 254774.598000001162291 ], [ 356748.204599998891354, 254758.872499998658895 ], [ 356738.57379999756813, 254753.51630000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94638893, "LATITUDE": 18.32264285, "OBJECTID_1": 87334, "PARCEL_NO_": "507203012100", "Tax_Legal_": "24 EASTERN WATER ISLAND 10&11 SOUTHSIDE QTR..", "Name": "Frances Parry, Stephen, Abbot, & Daniel Stranahan", "Address": "601 Union St Ste 3315", "City": "Seattle", "State": "Washington", "Zip": 981010000, "Country": "United States", "Land_Value": 168200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.66764021, "SHAPE_Area": 3924.2138095199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357189.280900001525879, 254759.738200001418591 ], [ 357129.313500002026558, 254794.500100001692772 ], [ 357134.08839999884367, 254801.927400000393391 ], [ 357139.684000000357628, 254807.672699999064207 ], [ 357150.110399998724461, 254814.302000001072884 ], [ 357158.151900000870228, 254816.90089999884367 ], [ 357189.569300003349781, 254820.535500001162291 ], [ 357199.218099996447563, 254823.780900001525879 ], [ 357208.04619999974966, 254828.708299998193979 ], [ 357231.734899997711182, 254793.01630000025034 ], [ 357189.280900001525879, 254759.738200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010300", "MAP": "A9-508-T98", "PARCEL_NAM": "106", "ACRE": null, "LONGITUDE": -64.94856753000001, "LATITUDE": 18.32246222, "OBJECTID_1": 87323, "PARCEL_NO_": "507203010300", "Tax_Legal_": "LOT 106 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "BUTLER, STUART & KATHLEEN G", "Address": "49 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 136400, "Improved_V": 202200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.70230992799998, "SHAPE_Area": 4860.7796897300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356977.46169999986887, 254729.718100000172853 ], [ 356907.894000001251698, 254755.535399999469519 ], [ 356915.732400000095367, 254781.986200001090765 ], [ 356918.914499998092651, 254787.078499998897314 ], [ 356922.076800003647804, 254794.49269999936223 ], [ 356930.834700003266335, 254807.652199998497963 ], [ 356935.575499996542931, 254819.089999999850988 ], [ 356996.284500002861023, 254791.933600001037121 ], [ 356996.307899996638298, 254789.189599998295307 ], [ 356992.400399997830391, 254774.592199999839067 ], [ 356977.46169999986887, 254729.718100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010300", "MAP": "D9-8945-T014", "PARCEL_NAM": "99", "ACRE": ".808", "LONGITUDE": -64.95096935, "LATITUDE": 18.32244794, "OBJECTID_1": 87161, "PARCEL_NO_": "507104010300", "Tax_Legal_": "99 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MONROE/CONROY TRUST", "Address": "2 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124500, "Improved_V": 502200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.237721303, "SHAPE_Area": 3340.1476362899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356697.75110000371933, 254812.71059999987483 ], [ 356727.116400003433228, 254773.265299998223782 ], [ 356738.57379999756813, 254753.51630000025034 ], [ 356709.67960000038147, 254737.658900000154972 ], [ 356703.290299996733665, 254730.429400000721216 ], [ 356700.923500001430511, 254724.28830000013113 ], [ 356664.184500001370907, 254777.394299998879433 ], [ 356676.89130000025034, 254800.296399999409914 ], [ 356697.75110000371933, 254812.71059999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020100", "MAP": "D9-8942-T014", "PARCEL_NAM": "B-1", "ACRE": ".256", "LONGITUDE": -64.94980241, "LATITUDE": 18.32244381, "OBJECTID_1": 87194, "PARCEL_NO_": "507104020100", "Tax_Legal_": "WATER ISLAND PLOT \"B\" No.10 SOUTHSIDE QTR.", "Name": "AQUATIES LLC", "Address": "18 Warrington Rd", "City": "Vernon Hills", "State": "Illinois", "Zip": 60061, "Country": "United States", "Land_Value": 135400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.136809834, "SHAPE_Area": 721.70239942499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356813.301600001752377, 254752.4189000017941 ], [ 356804.627400003373623, 254775.573399998247623 ], [ 356810.936899997293949, 254778.173200000077486 ], [ 356818.7820999994874, 254786.091499999165535 ], [ 356848.019599996507168, 254773.412799999117851 ], [ 356813.301600001752377, 254752.4189000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010500", "MAP": "D9-7569-T005", "PARCEL_NAM": "C-REM", "ACRE": ".667", "LONGITUDE": -64.94940134, "LATITUDE": 18.32220147, "OBJECTID_1": 87325, "PARCEL_NO_": "507203010500", "Tax_Legal_": "PLOT\"C\"WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MCCOY, THOMAS J. & ANOUSHKA A.", "Address": "PLOT C WATER ISLAND", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 110300, "Improved_V": 382800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.15192108400001, "SHAPE_Area": 3092.1782893300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356834.049500003457069, 254715.456500001251698 ], [ 356834.903599999845028, 254752.090199999511242 ], [ 356847.094800002872944, 254771.909299999475479 ], [ 356850.347000002861023, 254771.330099999904633 ], [ 356902.4121999964118, 254767.260299999266863 ], [ 356901.787900000810623, 254756.959800001233816 ], [ 356899.067699998617172, 254750.396899998188019 ], [ 356897.518100000917912, 254742.995900001376867 ], [ 356893.569200001657009, 254733.253299999982119 ], [ 356890.385300002992153, 254728.372099999338388 ], [ 356883.177100002765656, 254722.613600000739098 ], [ 356879.964400000870228, 254721.109600000083447 ], [ 356859.045199997723103, 254715.661100000143051 ], [ 356834.049500003457069, 254715.456500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94671725000001, "LATITUDE": 18.32220573, "OBJECTID_1": 87332, "PARCEL_NO_": "507203011900", "Tax_Legal_": "25 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "STRANAHAN, ANN (TRUSTEE)", "Address": "PO Box 10032", "City": "Toledo", "State": "Ohio", "Zip": 43699, "Country": "United States", "Land_Value": 171300, "Improved_V": 482200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.74215964899997, "SHAPE_Area": 4509.7238481300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357189.280900001525879, 254759.738200001418591 ], [ 357183.641099996864796, 254712.308100000023842 ], [ 357110.603900000452995, 254718.9864999987185 ], [ 357110.503200002014637, 254730.80689999833703 ], [ 357120.64360000193119, 254770.997699998319149 ], [ 357129.313500002026558, 254794.500100001692772 ], [ 357189.280900001525879, 254759.738200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94444179, "LATITUDE": 18.32232281, "OBJECTID_1": 87338, "PARCEL_NO_": "507203012500", "Tax_Legal_": "21 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SAND SWEPT LLC.", "Address": "917 S Lusk St", "City": "Boise", "State": "Idaho", "Zip": 83706, "Country": "United States", "Land_Value": 169200, "Improved_V": 302000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.67372564200002, "SHAPE_Area": 4703.5068212200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357438.580700002610683, 254744.25789999961853 ], [ 357431.311300002038479, 254745.675999999046326 ], [ 357420.037299998104572, 254743.894999999552965 ], [ 357406.36599999666214, 254739.561200000345707 ], [ 357394.334200002253056, 254732.074499998241663 ], [ 357381.454800002276897, 254729.436000000685453 ], [ 357375.808799996972084, 254729.60080000013113 ], [ 357359.648400001227856, 254733.479400001466274 ], [ 357353.950300000607967, 254739.765500001609325 ], [ 357345.739699997007847, 254757.008000001311302 ], [ 357340.844300001859665, 254763.722899999469519 ], [ 357337.556100003421307, 254771.084300000220537 ], [ 357330.198600001633167, 254782.845300000160933 ], [ 357328.569799996912479, 254784.731800001114607 ], [ 357333.384199999272823, 254787.515399999916553 ], [ 357422.956900000572205, 254779.804800000041723 ], [ 357447.005999997258186, 254796.466899998486042 ], [ 357438.580700002610683, 254744.25789999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020200", "MAP": "A9-508-T98", "PARCEL_NAM": "D", "ACRE": null, "LONGITUDE": -64.9500914, "LATITUDE": 18.32214613, "OBJECTID_1": 87195, "PARCEL_NO_": "507104020200", "Tax_Legal_": "WATER ISLAND PLOT \"D\" No.10 SOUTHSIDE QTR.", "Name": "HOTEL PROPERTY", "Address": "PLOT D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 146500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.31996292, "SHAPE_Area": 3091.26589087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356796.233800001442432, 254705.647799998521805 ], [ 356780.138099998235703, 254701.927499998360872 ], [ 356757.099200002849102, 254755.989900000393391 ], [ 356791.874700002372265, 254770.318799998611212 ], [ 356804.627400003373623, 254775.573399998247623 ], [ 356813.301600001752377, 254752.4189000017941 ], [ 356825.112400002777576, 254720.8918999992311 ], [ 356827.436200000345707, 254714.688900001347065 ], [ 356823.004199996590614, 254714.174400001764297 ], [ 356820.354800000786781, 254713.866799999028444 ], [ 356811.213600002229214, 254710.752000000327826 ], [ 356796.233800001442432, 254705.647799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95056329000001, "LATITUDE": 18.32200365, "OBJECTID_1": 87196, "PARCEL_NO_": "507104020300", "Tax_Legal_": "WATER ISLAND PLOT \"E\" No.10 SOUTHSIDE QTR.", "Name": "HENNESSEY, CHARLES R", "Address": "PLOT \"E\" WATER ISLAND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 118200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.5652288, "SHAPE_Area": 2804.5901232299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356757.099200002849102, 254755.989900000393391 ], [ 356780.138099998235703, 254701.927499998360872 ], [ 356768.869499996304512, 254699.513199999928474 ], [ 356749.532399997115135, 254697.666200000792742 ], [ 356730.171899996697903, 254698.563200000673532 ], [ 356718.0574000030756, 254700.786100000143051 ], [ 356710.755699999630451, 254706.003699999302626 ], [ 356706.639600001275539, 254715.891399998217821 ], [ 356708.160499997437, 254726.669599998742342 ], [ 356709.7550999969244, 254728.793600000441074 ], [ 356713.750699996948242, 254733.048099998384714 ], [ 356750.670299999415874, 254753.404199998825788 ], [ 356757.099200002849102, 254755.989900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010600", "MAP": "D9-8768-T013", "PARCEL_NAM": "103", "ACRE": ".754", "LONGITUDE": -64.94874811, "LATITUDE": 18.32199344, "OBJECTID_1": 87326, "PARCEL_NO_": "507203010600", "Tax_Legal_": "103 & 103A WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MANGE, STEPHEN K. & PAMELA R. MANGE (TRUSTEES)", "Address": "248 Pat Stough Ln", "City": "Davidson", "State": "North Carolina", "Zip": 28036, "Country": "United States", "Land_Value": 130400, "Improved_V": 250200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.59291232699999, "SHAPE_Area": 3292.9178458000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356977.46169999986887, 254729.718100000172853 ], [ 356962.449199996888638, 254693.498199999332428 ], [ 356952.008500002324581, 254688.557599999010563 ], [ 356888.049099996685982, 254718.642700001597404 ], [ 356895.255599997937679, 254724.612300001084805 ], [ 356899.236800000071526, 254730.555500000715256 ], [ 356907.894000001251698, 254755.535399999469519 ], [ 356977.46169999986887, 254729.718100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011800", "MAP": "D9-8863-T014 / D9-8967-T015", "PARCEL_NAM": "26 REM", "ACRE": "1.07", "LONGITUDE": -64.94665413, "LATITUDE": 18.32165705, "OBJECTID_1": 87331, "PARCEL_NO_": "507203011800", "Tax_Legal_": "REM 26 WATER ISLAND (EASTERN) No.10&11 SOUTHSIDE QUARTER", "Name": "ANNE M PAGE REVOCABLE TRUST", "Address": "101 Pepper Ave", "City": "Richmond", "State": "Virginia", "Zip": 23226, "Country": "United States", "Land_Value": 156100, "Improved_V": 489900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.54860286900001, "SHAPE_Area": 4032.75441778 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357112.210699997842312, 254713.133499998599291 ], [ 357111.755400002002716, 254718.88120000064373 ], [ 357183.641099996864796, 254712.308100000023842 ], [ 357195.730700001120567, 254665.221099998801947 ], [ 357195.917400002479553, 254660.045400001108646 ], [ 357191.312262166349683, 254657.312279006175231 ], [ 357186.355001742718741, 254655.286738595663337 ], [ 357181.153599999845028, 254654.012899998575449 ], [ 357174.258255266409833, 254652.466087189386599 ], [ 357167.256344503082801, 254651.511281176761258 ], [ 357160.198600001633167, 254651.1554000005126 ], [ 357155.62296368915122, 254651.966130946413614 ], [ 357151.253561363264453, 254653.547919695207383 ], [ 357147.219300001859665, 254655.854100000113249 ], [ 357143.372500002384186, 254658.670899998396635 ], [ 357132.798699997365475, 254669.350099999457598 ], [ 357124.63849999755621, 254680.682399999350309 ], [ 357116.413500003516674, 254699.613499999046326 ], [ 357112.210699997842312, 254713.133499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203012600", "MAP": "D9-7241-T003", "PARCEL_NAM": "98-1", "ACRE": ".306", "LONGITUDE": -64.94925265000001, "LATITUDE": 18.32146405, "OBJECTID_1": 87339, "PARCEL_NO_": "507203012600", "Tax_Legal_": "98-1 WATER ISLAND No. 10 SOUTHSIDE QUARTER", "Name": "TERRA NOVA MANAGEMENT, LLC", "Address": "2113 Pebble Beach Pl", "City": "Panama City", "State": "Florida", "Zip": 32408, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.36440547500001, "SHAPE_Area": 1466.06409648 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356897.503300003707409, 254687.092599999159575 ], [ 356907.900799997150898, 254655.46680000051856 ], [ 356895.872299998998642, 254652.212200000882149 ], [ 356887.841600000858307, 254648.346799999475479 ], [ 356871.006099998950958, 254636.809999998658895 ], [ 356860.376599997282028, 254654.032699998468161 ], [ 356856.000399999320507, 254669.324099998921156 ], [ 356897.503300003707409, 254687.092599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010900", "MAP": "D9-8455-T010", "PARCEL_NAM": "105", "ACRE": ".94", "LONGITUDE": -64.94736566, "LATITUDE": 18.32147899, "OBJECTID_1": 87329, "PARCEL_NO_": "507203010900", "Tax_Legal_": "105 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "LA, FRANCHISE, ARTHUR & OTHERS", "Address": "PO Box 218", "City": "South Dennis", "State": "Massachusetts", "Zip": 2660, "Country": "United States", "Land_Value": 104300, "Improved_V": 103500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.848963325, "SHAPE_Area": 4297.31336921 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357061.329999998211861, 254634.356899999082088 ], [ 357039.853399999439716, 254694.342799998819828 ], [ 357051.917499996721745, 254698.030099999159575 ], [ 357068.835699997842312, 254699.857299998402596 ], [ 357077.681800000369549, 254702.6739999987185 ], [ 357084.900799997150898, 254707.166000001132488 ], [ 357094.504600003361702, 254715.688400000333786 ], [ 357094.526199996471405, 254713.1554000005126 ], [ 357108.614799998700619, 254668.518899999558926 ], [ 357119.488799996674061, 254622.589499998837709 ], [ 357061.329999998211861, 254634.356899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011600", "MAP": null, "PARCEL_NAM": "84", "ACRE": null, "LONGITUDE": -64.94675347, "LATITUDE": 18.32112476, "OBJECTID_1": 87330, "PARCEL_NO_": "507203011600", "Tax_Legal_": "84 THRU 90 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "TPB LLC", "Address": "917 S Lusk St", "City": "Boise", "State": "Idaho", "Zip": 83706, "Country": "United States", "Land_Value": 559800, "Improved_V": 325700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.74773495099998, "SHAPE_Area": 3492.99438517 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357183.401500001549721, 254597.992499999701977 ], [ 357134.279399998486042, 254590.202100001275539 ], [ 357128.57940000295639, 254596.699400000274181 ], [ 357126.070600003004074, 254607.233500000089407 ], [ 357126.027400001883507, 254612.299400001764297 ], [ 357124.373400002717972, 254617.140999998897314 ], [ 357110.047600001096725, 254689.640000000596046 ], [ 357109.160300001502037, 254699.131900001317263 ], [ 357112.441299997270107, 254692.614900000393391 ], [ 357118.19879999756813, 254679.363099999725819 ], [ 357120.646499998867512, 254676.00560000166297 ], [ 357131.248999997973442, 254661.949099998921156 ], [ 357145.0641999989748, 254649.396600000560284 ], [ 357149.930900000035763, 254646.058899998664856 ], [ 357158.814699999988079, 254644.442899998277426 ], [ 357166.082299999892712, 254643.235800001770258 ], [ 357175.743699997663498, 254645.003600001335144 ], [ 357183.401500001549721, 254597.992499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010800", "MAP": "D9-8454-T010", "PARCEL_NAM": "104", "ACRE": ".83", "LONGITUDE": -64.94795865, "LATITUDE": 18.32140327, "OBJECTID_1": 87328, "PARCEL_NO_": "507203010800", "Tax_Legal_": "104 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "LECHNER, ROBERT L. & MERCEDES K.C. DULLUM", "Address": "1100 Marine Way W", "City": "North Palm Beach", "State": "Florida", "Zip": 33408, "Country": "United States", "Land_Value": 167900, "Improved_V": 290200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.484620578, "SHAPE_Area": 3827.4523423400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356975.526399999856949, 254672.918099999427795 ], [ 357039.853399999439716, 254694.342799998819828 ], [ 357061.329999998211861, 254634.356899999082088 ], [ 357031.509099997580051, 254632.635200001299381 ], [ 356996.93469999730587, 254620.953200001269579 ], [ 356996.918499998748302, 254622.852899998426437 ], [ 356992.818599998950958, 254630.840900000184774 ], [ 356992.802500002086163, 254632.740600001066923 ], [ 356991.171899996697903, 254634.838199999183416 ], [ 356975.526399999856949, 254672.918099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104024000", "MAP": null, "PARCEL_NAM": "138", "ACRE": null, "LONGITUDE": -64.95141943, "LATITUDE": 18.32124171, "OBJECTID_1": 87233, "PARCEL_NO_": "507104024000", "Tax_Legal_": "138 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "MOLARD, ROBERT", "Address": "3609 Norfolk Rd", "City": "Fort Worth", "State": "Texas", "Zip": 76109, "Country": "United States", "Land_Value": 90200, "Improved_V": 279700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.582498824, "SHAPE_Area": 2988.15825984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356672.30799999833107, 254675.713700000196695 ], [ 356682.320000000298023, 254636.321100000292063 ], [ 356693.81700000166893, 254611.928399998694658 ], [ 356674.429499998688698, 254615.991599999368191 ], [ 356654.260899998247623, 254617.093100000172853 ], [ 356642.990500003099442, 254614.889899998903275 ], [ 356628.523599997162819, 254609.283100001513958 ], [ 356622.884900003671646, 254608.60359999909997 ], [ 356619.641599997878075, 254610.688000001013279 ], [ 356609.838200002908707, 254625.595400001853704 ], [ 356610.615699999034405, 254628.979299999773502 ], [ 356618.633900001645088, 254634.322200000286102 ], [ 356629.841399997472763, 254643.913199998438358 ], [ 356637.020900003612041, 254653.0489999987185 ], [ 356645.825599998235703, 254660.720400001853704 ], [ 356672.30799999833107, 254675.713700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010500", "MAP": "D9-9091-T016", "PARCEL_NAM": "92-2", "ACRE": ".28", "LONGITUDE": -64.95232029, "LATITUDE": 18.32117926, "OBJECTID_1": 87163, "PARCEL_NO_": "507104010500", "Tax_Legal_": "92-1 & Rem. 92 Water Island No. 10 Southside Quarter", "Name": "LARRY L. & DARIUS LEE STEIN", "Address": "95 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 127300, "Improved_V": 281800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.195991109, "SHAPE_Area": 1264.4702019 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356532.732900001108646, 254632.832299999892712 ], [ 356558.801899999380112, 254653.377399999648333 ], [ 356562.069799996912479, 254648.213700000196695 ], [ 356584.860500000417233, 254623.280099999159575 ], [ 356569.61429999768734, 254614.500399999320507 ], [ 356558.699199996888638, 254607.106600001454353 ], [ 356549.930799998342991, 254609.416600000113249 ], [ 356547.94650000333786, 254610.739500001072884 ], [ 356545.035999998450279, 254616.295800000429153 ], [ 356532.732900001108646, 254632.832299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011600", "MAP": null, "PARCEL_NAM": "90", "ACRE": null, "LONGITUDE": -64.94611185, "LATITUDE": 18.32101651, "OBJECTID_1": 87330, "PARCEL_NO_": "507203011600", "Tax_Legal_": "84 THRU 90 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "TPB LLC", "Address": "917 S Lusk St", "City": "Boise", "State": "Idaho", "Zip": 83706, "Country": "United States", "Land_Value": 559800, "Improved_V": 325700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.41141952499999, "SHAPE_Area": 4032.6397460600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357252.031599998474121, 254587.577300000935793 ], [ 357194.093900002539158, 254573.381999999284744 ], [ 357182.183399997651577, 254646.322900000959635 ], [ 357195.861900001764297, 254649.812399998307228 ], [ 357202.281900003552437, 254653.453499998897314 ], [ 357211.064999997615814, 254663.657900001853704 ], [ 357228.809299997985363, 254663.169799998402596 ], [ 357227.225400000810623, 254659.779399998486042 ], [ 357225.686499997973442, 254651.111900001764297 ], [ 357224.930500000715256, 254645.195099998265505 ], [ 357225.760200001299381, 254642.457699999213219 ], [ 357235.50789999961853, 254634.093699999153614 ], [ 357236.398699998855591, 254624.17960000038147 ], [ 357238.864399999380112, 254618.711399998515844 ], [ 357249.467000000178814, 254604.654899999499321 ], [ 357251.124499998986721, 254599.391100000590086 ], [ 357252.031599998474121, 254587.577300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020900", "MAP": "D9-8857-T014", "PARCEL_NAM": "93", "ACRE": ".462", "LONGITUDE": -64.95206036, "LATITUDE": 18.32088975, "OBJECTID_1": 87202, "PARCEL_NO_": "507104020900", "Tax_Legal_": "93 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "ATKINS, LAUREN DAWN", "Address": "1211 McCormick Ave", "City": "Connellsville", "State": "Pennsylvania", "Zip": 15425, "Country": "United States", "Land_Value": 85700, "Improved_V": 786400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.74029171399999, "SHAPE_Area": 1907.08979546 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356591.776699997484684, 254568.663400001823902 ], [ 356548.85700000077486, 254590.054800000041723 ], [ 356554.441799998283386, 254597.066599998623133 ], [ 356570.476300001144409, 254607.963599998503923 ], [ 356598.5641999989748, 254623.814399998635054 ], [ 356603.407499998807907, 254623.220800001174212 ], [ 356610.750600002706051, 254613.148400001227856 ], [ 356613.291799999773502, 254598.814800001680851 ], [ 356608.491700001060963, 254594.342599999159575 ], [ 356602.906900003552437, 254587.330800000578165 ], [ 356596.539099998772144, 254577.568300001323223 ], [ 356594.159699998795986, 254572.904800001531839 ], [ 356591.776699997484684, 254568.663400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020800", "MAP": "A9-508-T98", "PARCEL_NAM": "D", "ACRE": null, "LONGITUDE": -64.95205274, "LATITUDE": 18.31709145, "OBJECTID_1": 87201, "PARCEL_NO_": "507104020800", "Tax_Legal_": "WATER ISLAND TRACT \"D\" SOUTHSIDE QUARTER 10", "Name": "HOTEL (LIMESTONE BEACH)", "Address": "TRACT (LIMESTONE BEACH)", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2445.5055293700002, "SHAPE_Area": 92118.6158516 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356434.531400002539158, 254095.793400000780821 ], [ 356509.518399998545647, 254096.407200001180172 ], [ 356525.250900000333786, 254142.765399999916553 ], [ 356455.733599998056889, 254162.672499999403954 ], [ 356461.34179999679327, 254166.94029999896884 ], [ 356475.803300000727177, 254173.180399999022484 ], [ 356483.01519999653101, 254178.516800001263618 ], [ 356490.200000002980232, 254187.019299998879433 ], [ 356497.320200003683567, 254203.120700001716614 ], [ 356514.178999997675419, 254211.913499999791384 ], [ 356531.588100001215935, 254156.116200000047684 ], [ 356608.916799999773502, 254165.826099999248981 ], [ 356615.128100000321865, 254193.952399998903275 ], [ 356608.424099996685982, 254223.661699999123812 ], [ 356606.700000002980232, 254236.735399998724461 ], [ 356597.604000002145767, 254263.258699998259544 ], [ 356582.15990000218153, 254277.697799999266863 ], [ 356594.90089999884367, 254296.589400000870228 ], [ 356601.301100000739098, 254302.552400000393391 ], [ 356610.145300000905991, 254305.580099999904633 ], [ 356608.482299998402596, 254311.477099999785423 ], [ 356597.226300001144409, 254307.585299998521805 ], [ 356590.027099996805191, 254300.77140000090003 ], [ 356581.278099998831749, 254286.556499999016523 ], [ 356577.867600001394749, 254308.271200001239777 ], [ 356584.334299996495247, 254306.424300000071526 ], [ 356591.508400000631809, 254316.193300001323223 ], [ 356596.821699999272823, 254355.078000001609325 ], [ 356603.566100001335144, 254415.294900000095367 ], [ 356543.735299997031689, 254434.014699999243021 ], [ 356573.835699997842312, 254497.589200001209974 ], [ 356574.613300003111362, 254500.973000001162291 ], [ 356577.804399996995926, 254505.009899999946356 ], [ 356583.349600002169609, 254516.665399998426437 ], [ 356588.065200001001358, 254531.058400001376867 ], [ 356592.73589999973774, 254550.728300001472235 ], [ 356599.823700003325939, 254570.629099998623133 ], [ 356609.378899998962879, 254584.850600000470877 ], [ 356623.775700002908707, 254598.689500000327826 ], [ 356635.008299998939037, 254605.325399998575449 ], [ 356650.285099998116493, 254610.516600001603365 ], [ 356664.796899996697903, 254610.846500001847744 ], [ 356682.560999996960163, 254608.03660000115633 ], [ 356712.486199997365475, 254597.515700001269579 ], [ 356717.673000000417233, 254556.605999998748302 ], [ 356716.143100000917912, 254546.883200000971556 ], [ 356725.174300000071526, 254527.958700001239777 ], [ 356745.252300001680851, 254442.8412000015378 ], [ 356746.10360000282526, 254437.570900000631809 ], [ 356742.07379999756813, 254437.326799999922514 ], [ 356738.018899999558926, 254440.037799999117851 ], [ 356735.646700002253056, 254434.530000001192093 ], [ 356729.203400000929832, 254433.63289999961853 ], [ 356729.176399998366833, 254436.7989999987185 ], [ 356721.098899997770786, 254438.421700000762939 ], [ 356717.855700001120567, 254440.506099998950958 ], [ 356720.19370000064373, 254450.024399999529123 ], [ 356718.570299997925758, 254451.277699999511242 ], [ 356714.536899998784065, 254451.455800000578165 ], [ 356708.9070999994874, 254449.720899999141693 ], [ 356704.857600003480911, 254451.798700001090765 ], [ 356700.820600003004074, 254452.399000000208616 ], [ 356695.189000003039837, 254450.875199999660254 ], [ 356693.572800002992153, 254451.284200001507998 ], [ 356691.942199997603893, 254453.381799999624491 ], [ 356689.51240000128746, 254454.628499999642372 ], [ 356681.447499997913837, 254454.773499999195337 ], [ 356677.399800002574921, 254456.640299998223782 ], [ 356672.574500001966953, 254455.123100001364946 ], [ 356670.151900000870228, 254455.525499999523163 ], [ 356665.274499997496605, 254460.129599999636412 ], [ 356653.989699997007847, 254459.615100000053644 ], [ 356639.517499998211861, 254454.641499999910593 ], [ 356630.7128000035882, 254446.969999998807907 ], [ 356627.530699998140335, 254441.877700001001358 ], [ 356625.955799996852875, 254437.43189999833703 ], [ 356619.586199998855591, 254427.880499999970198 ], [ 356616.431100003421307, 254419.622099999338388 ], [ 356616.459899999201298, 254416.244800001382828 ], [ 356614.107500001788139, 254408.415100000798702 ], [ 356612.618900001049042, 254393.837499998509884 ], [ 356613.441399998962879, 254391.944299999624491 ], [ 356614.332299999892712, 254382.030200000852346 ], [ 356615.977200001478195, 254378.243999999016523 ], [ 356615.298600003123283, 254363.250799998641014 ], [ 356616.932800002396107, 254360.731100000441074 ], [ 356624.353299997746944, 254341.582299999892712 ], [ 356627.6199000030756, 254336.753899998962879 ], [ 356629.241499997675419, 254335.71169999986887 ], [ 356630.877499997615814, 254332.980900000780821 ], [ 356638.983800001442432, 254327.980999998748302 ], [ 356643.063900001347065, 254322.314800001680851 ], [ 356644.757399998605251, 254312.829500000923872 ], [ 356649.667199999094009, 254304.425900001078844 ], [ 356653.821099996566772, 254290.105599999427795 ], [ 356657.915600001811981, 254282.750799998641014 ], [ 356658.772200003266335, 254276.847199998795986 ], [ 356662.846900001168251, 254271.814300000667572 ], [ 356663.681999996304512, 254268.443599998950958 ], [ 356664.628600001335144, 254251.986099999397993 ], [ 356661.430299997329712, 254248.793499998748302 ], [ 356660.670800000429153, 254243.298799999058247 ], [ 356663.127499997615814, 254238.885999999940395 ], [ 356667.185999996960163, 254235.75279999896884 ], [ 356668.037299998104572, 254230.482400000095367 ], [ 356667.4054000005126, 254210.001200001686811 ], [ 356670.664800003170967, 254206.017099998891354 ], [ 356672.327799998223782, 254200.120099999010563 ], [ 356673.27250000089407, 254183.873599998652935 ], [ 356668.05629999935627, 254133.590599998831749 ], [ 356665.705700002610683, 254125.549800001084805 ], [ 356665.781199999153614, 254116.684500001370907 ], [ 356664.9983000010252, 254113.933899998664856 ], [ 356666.720600001513958, 254101.071299999952316 ], [ 356665.196099996566772, 254090.715199999511242 ], [ 356664.404200002551079, 254089.019999999552965 ], [ 356664.512100003659725, 254076.35530000180006 ], [ 356662.939000003039837, 254071.698300000280142 ], [ 356663.048699997365475, 254058.822500001639128 ], [ 356660.692699998617172, 254051.41499999910593 ], [ 356659.936700001358986, 254045.498199999332428 ], [ 356657.5591000020504, 254040.623599998652935 ], [ 356656.806800000369549, 254034.284600000828505 ], [ 356655.213899999856949, 254031.949499998241663 ], [ 356655.284100003540516, 254023.717500001192093 ], [ 356653.752400003373623, 254014.205699998885393 ], [ 356649.780100002884865, 254007.207100000232458 ], [ 356649.855700001120567, 253998.34180000051856 ], [ 356648.270000003278255, 253995.162399999797344 ], [ 356648.336499996483326, 253987.35249999910593 ], [ 356645.174199998378754, 253979.938299998641014 ], [ 356644.416500002145767, 253974.232599999755621 ], [ 356641.252400003373623, 253967.029500000178814 ], [ 356641.268500000238419, 253965.129799999296665 ], [ 356637.292700000107288, 253958.553399998694658 ], [ 356637.316100001335144, 253955.809399999678135 ], [ 356633.360100001096725, 253946.911100000143051 ], [ 356628.577899999916553, 253940.328000001609325 ], [ 356629.450800001621246, 253932.524700000882149 ], [ 356627.0641999989748, 253928.70549999922514 ], [ 356623.136900000274181, 253916.429900001734495 ], [ 356617.566500000655651, 253907.729499999433756 ], [ 356615.993400000035763, 253903.072599999606609 ], [ 356611.995999999344349, 253899.029100000858307 ], [ 356610.484099999070168, 253887.19539999961853 ], [ 356606.50110000371933, 253881.463300000876188 ], [ 356605.743299998342991, 253875.757599998265505 ], [ 356600.973800003528595, 253867.697000000625849 ], [ 356601.033100001513958, 253860.7314000017941 ], [ 356599.451099999248981, 253857.129900000989437 ], [ 356597.053700000047684, 253854.577100001275539 ], [ 356597.098600000143051, 253849.30009999871254 ], [ 356597.922899998724461, 253847.195999998599291 ], [ 356596.344499997794628, 253843.1722999997437 ], [ 356595.601099997758865, 253835.777899999171495 ], [ 356489.997500002384186, 253832.169399999082088 ], [ 356487.431199997663498, 253849.458000000566244 ], [ 356488.594200000166893, 253902.240899998694658 ], [ 356485.135200001299381, 253929.654800001531839 ], [ 356481.816500000655651, 253940.604499999433756 ], [ 356478.526500001549721, 253948.176899999380112 ], [ 356444.854500003159046, 254019.884300000965595 ], [ 356442.20719999819994, 254046.671500001102686 ], [ 356439.664200000464916, 254061.216099999845028 ], [ 356435.492299996316433, 254077.647300001233816 ], [ 356434.531400002539158, 254095.793400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94656098, "LATITUDE": 18.32036144, "OBJECTID_1": 87330, "PARCEL_NO_": "507203011600", "Tax_Legal_": "84 THRU 90 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "TPB LLC", "Address": "917 S Lusk St", "City": "Boise", "State": "Idaho", "Zip": 83706, "Country": "United States", "Land_Value": 559800, "Improved_V": 325700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.68024648599999, "SHAPE_Area": 5273.3465536499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357208.475599996745586, 254494.339600000530481 ], [ 357143.108499996364117, 254500.348499998450279 ], [ 357141.449100002646446, 254505.823399998247623 ], [ 357140.255000002682209, 254508.572000000625849 ], [ 357140.141800001263618, 254508.832400001585484 ], [ 357139.951800003647804, 254509.26969999819994 ], [ 357139.804200001060963, 254509.609600000083447 ], [ 357139.777099996805191, 254522.737700000405312 ], [ 357137.04900000244379, 254549.061599999666214 ], [ 357138.640000000596046, 254551.607700001448393 ], [ 357140.204099997878075, 254557.320000000298023 ], [ 357140.119599997997284, 254567.240699999034405 ], [ 357138.425999999046326, 254576.726100001484156 ], [ 357135.911799997091293, 254587.893500000238419 ], [ 357134.279399998486042, 254590.202100001275539 ], [ 357183.401500001549721, 254597.992499999701977 ], [ 357188.534299999475479, 254563.415100000798702 ], [ 357193.596900001168251, 254537.069899998605251 ], [ 357196.913900002837181, 254526.331199999898672 ], [ 357206.80179999768734, 254501.503100000321865 ], [ 357208.475599996745586, 254494.339600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021000", "MAP": "D9-9276-T018", "PARCEL_NAM": "90", "ACRE": "0.37", "LONGITUDE": -64.95228727, "LATITUDE": 18.32056097, "OBJECTID_1": 87203, "PARCEL_NO_": "507104021000", "Tax_Legal_": "90 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BUBB, STEPHEN & SUSAN J.", "Address": "17 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.48950009800001, "SHAPE_Area": 2046.0603876 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356582.392300002276897, 254534.389499999582767 ], [ 356523.389399997889996, 254550.583000000566244 ], [ 356533.005800001323223, 254557.627700001001358 ], [ 356539.400600001215935, 254564.223999999463558 ], [ 356542.570100001990795, 254570.793800000101328 ], [ 356547.26410000026226, 254587.719700001180172 ], [ 356548.85700000077486, 254590.054800000041723 ], [ 356591.776699997484684, 254568.663400001823902 ], [ 356590.200099997222424, 254564.428700000047684 ], [ 356582.392300002276897, 254534.389499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010700", "MAP": "D9-7250-T003", "PARCEL_NAM": "112", "ACRE": "1.111", "LONGITUDE": -64.95331293, "LATITUDE": 18.32039645, "OBJECTID_1": 87165, "PARCEL_NO_": "507104010700", "Tax_Legal_": "112 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MARSHALL, ALLERTON & MARY", "Address": "33 Old Fort Dr", "City": "Hilton Head Island", "State": "South Carolina", "Zip": 29926, "Country": "United States", "Land_Value": 139400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.17280869899997, "SHAPE_Area": 4396.7939392600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356405.743299998342991, 254540.754099998623133 ], [ 356460.184199996292591, 254586.795899998396635 ], [ 356502.493600003421307, 254542.390399999916553 ], [ 356480.073299996554852, 254523.841699998825788 ], [ 356472.89019999653101, 254515.128100000321865 ], [ 356468.885600000619888, 254511.928899999707937 ], [ 356439.944700002670288, 254501.559599999338388 ], [ 356422.27419999986887, 254493.393399998545647 ], [ 356419.047100000083447, 254493.578099999576807 ], [ 356416.626400001347065, 254493.769400000572205 ], [ 356414.999399997293949, 254495.44480000063777 ], [ 356417.385899998247623, 254499.263999998569489 ], [ 356440.707900002598763, 254506.632100000977516 ], [ 356405.743299998342991, 254540.754099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011000", "MAP": "D9-8952-T014", "PARCEL_NAM": "78", "ACRE": "1.07", "LONGITUDE": -64.95581437, "LATITUDE": 18.32044945, "OBJECTID_1": 87168, "PARCEL_NO_": "507104011000", "Tax_Legal_": "78 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "WATER ISLAND PLANTATION LLC", "Address": "142 W Station St", "City": "Barrington", "State": "Illinois", "Zip": 60010, "Country": "United States", "Land_Value": 228100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.26368999699997, "SHAPE_Area": 4312.2027922200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356214.116099998354912, 254506.8885000012815 ], [ 356141.366300001740456, 254527.613499999046326 ], [ 356150.100900001823902, 254543.517000000923872 ], [ 356151.637999996542931, 254552.395500000566244 ], [ 356156.384199999272823, 254563.200100000947714 ], [ 356156.358999997377396, 254566.155200000852346 ], [ 356157.958999998867512, 254567.646000001579523 ], [ 356161.979800000786781, 254568.94539999961853 ], [ 356163.578100003302097, 254570.647300001233816 ], [ 356163.556500002741814, 254573.18019999936223 ], [ 356165.151100002229214, 254575.304200001060963 ], [ 356171.576399996876717, 254578.312100000679493 ], [ 356176.396300002932549, 254580.462499998509884 ], [ 356237.031599998474121, 254561.960299998521805 ], [ 356225.914099998772144, 254541.815400000661612 ], [ 356221.957999996840954, 254532.917100001126528 ], [ 356218.009199999272823, 254523.174499999731779 ], [ 356214.116099998354912, 254506.8885000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94595264, "LATITUDE": 18.32034019, "OBJECTID_1": 87330, "PARCEL_NO_": "507203011600", "Tax_Legal_": "84 THRU 90 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "TPB LLC", "Address": "917 S Lusk St", "City": "Boise", "State": "Idaho", "Zip": 83706, "Country": "United States", "Land_Value": 559800, "Improved_V": 325700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.09439328399998, "SHAPE_Area": 4868.1844939499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357268.846500001847744, 254506.866099998354912 ], [ 357214.11259999871254, 254495.230200000107288 ], [ 357213.237899996340275, 254503.244500000029802 ], [ 357202.53830000013113, 254528.699299998581409 ], [ 357200.052799999713898, 254536.489399999380112 ], [ 357194.149700000882149, 254566.838599998503923 ], [ 357194.093900002539158, 254573.381999999284744 ], [ 357252.031599998474121, 254587.577300000935793 ], [ 357254.578199997544289, 254572.610500000417233 ], [ 357254.632100000977516, 254566.278099998831749 ], [ 357260.373400002717972, 254554.926100000739098 ], [ 357262.106499999761581, 254540.796999998390675 ], [ 357267.098999999463558, 254522.683800000697374 ], [ 357268.846500001847744, 254506.866099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010800", "MAP": "A9-508-T98", "PARCEL_NAM": "82", "ACRE": "1.73", "LONGITUDE": -64.95415953, "LATITUDE": 18.32003125, "OBJECTID_1": 87166, "PARCEL_NO_": "507104010800", "Tax_Legal_": "82 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CHEESBOROUGH, P. & EDMUND III", "Address": "106 Junior Ln", "City": "Trinidad", "State": "Texas", "Zip": 75163, "Country": "United States", "Land_Value": 263800, "Improved_V": 53700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.47340416100002, "SHAPE_Area": 8340.41870199 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356409.376800000667572, 254492.865600001066923 ], [ 356406.986599996685982, 254489.468600001186132 ], [ 356418.487199999392033, 254464.6537000015378 ], [ 356417.754600003361702, 254455.992800001055002 ], [ 356408.330600000917912, 254426.36259999871254 ], [ 356328.878600001335144, 254476.585900001227856 ], [ 356320.427000001072884, 254522.112900000065565 ], [ 356299.391000002622604, 254530.384500000625849 ], [ 356317.774300001561642, 254549.533399999141693 ], [ 356323.380800001323223, 254554.012200001627207 ], [ 356335.417900003492832, 254560.865699999034405 ], [ 356346.679300002753735, 254564.124299999326468 ], [ 356357.161399997770786, 254564.210099998861551 ], [ 356363.638899996876717, 254561.096700001507998 ], [ 356390.606799997389317, 254519.098700001835823 ], [ 356392.230200000107288, 254517.845400001853704 ], [ 356394.690499998629093, 254513.010400000959635 ], [ 356409.376800000667572, 254492.865600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012000", "MAP": "A9-508B-T98", "PARCEL_NAM": "TRACT E", "ACRE": null, "LONGITUDE": -64.95730696, "LATITUDE": 18.32031941, "OBJECTID_1": 87179, "PARCEL_NO_": "507104012000", "Tax_Legal_": "TRACT \"E\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 425500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.21441887399999, "SHAPE_Area": 1881.0481285400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356023.412799999117851, 254553.879200000315905 ], [ 356035.516400001943111, 254552.922699999064207 ], [ 356048.412000000476837, 254553.66160000115633 ], [ 356056.496699996292591, 254551.194600000977516 ], [ 356043.771999999880791, 254530.403299998492002 ], [ 356022.217299997806549, 254504.895700000226498 ], [ 356003.278300002217293, 254550.970100000500679 ], [ 356020.19650000333786, 254552.797400001436472 ], [ 356023.412799999117851, 254553.879200000315905 ] ] ], [ [ [ 356053.573600001633167, 254515.706999998539686 ], [ 356011.981600001454353, 254475.892099998891354 ], [ 356013.536700002849102, 254482.659800000488758 ], [ 356050.252999998629093, 254526.867800001055002 ], [ 356062.187700003385544, 254545.75279999896884 ], [ 356058.253200002014637, 254534.32149999961257 ], [ 356058.29280000180006, 254529.677799999713898 ], [ 356056.696299999952316, 254527.764899998903275 ], [ 356056.719700001180172, 254525.020799998193979 ], [ 356059.172799997031689, 254521.030099999159575 ], [ 356053.573600001633167, 254515.706999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020700", "MAP": "D9-8720-T012", "PARCEL_NAM": "94B", "ACRE": ".65", "LONGITUDE": -64.95039718, "LATITUDE": 18.31983599, "OBJECTID_1": 87200, "PARCEL_NO_": "507104020700", "Tax_Legal_": "94 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "PERRY IRREVOCABLE TRUST", "Address": "88 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 294100, "Improved_V": 141400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.47198523899999, "SHAPE_Area": 3734.99282709 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356725.174300000071526, 254527.958700001239777 ], [ 356791.153499998152256, 254498.341899998486042 ], [ 356791.581500001251698, 254494.516199998557568 ], [ 356793.246200002729893, 254488.408100001513958 ], [ 356795.018899999558926, 254469.635200001299381 ], [ 356799.912500001490116, 254463.131400000303984 ], [ 356799.941299997270107, 254459.754099998623133 ], [ 356796.770000003278255, 254453.395399998873472 ], [ 356789.550899997353554, 254448.903299998492002 ], [ 356787.932899996638298, 254449.523400001227856 ], [ 356786.293300002813339, 254452.676300000399351 ], [ 356787.060099996626377, 254457.326699998229742 ], [ 356782.22580000013113, 254456.864900000393391 ], [ 356781.469800002872944, 254450.948100000619888 ], [ 356778.284100003540516, 254446.278000000864267 ], [ 356771.070500001311302, 254441.152699999511242 ], [ 356768.647900000214577, 254441.555100001394749 ], [ 356763.023500002920628, 254439.186999998986721 ], [ 356758.162299998104572, 254441.891399998217821 ], [ 356757.332599997520447, 254444.628899998962879 ], [ 356765.38849999755621, 254445.539200000464916 ], [ 356770.190399996936321, 254449.800299998372793 ], [ 356765.336400002241135, 254451.660500001162291 ], [ 356764.513899996876717, 254453.553599998354912 ], [ 356762.895900003612041, 254454.173599999397993 ], [ 356759.674199998378754, 254453.725000001490116 ], [ 356753.263300001621246, 254449.028499998152256 ], [ 356752.474899999797344, 254446.911100000143051 ], [ 356749.247900001704693, 254447.095800001174212 ], [ 356746.841499999165535, 254445.598499998450279 ], [ 356745.252300001680851, 254442.8412000015378 ], [ 356725.174300000071526, 254527.958700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021100", "MAP": "D9-7315-T003", "PARCEL_NAM": "89", "ACRE": ".742", "LONGITUDE": -64.95252288, "LATITUDE": 18.32018448, "OBJECTID_1": 87204, "PARCEL_NO_": "507104021100", "Tax_Legal_": "89 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MARSHALL, ALLERTON D. & MARY M", "Address": "33 Old Fort Dr", "City": "Hilton Head Island", "State": "South Carolina", "Zip": 29926, "Country": "United States", "Land_Value": 107100, "Improved_V": 555900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.231925687, "SHAPE_Area": 3965.0704700400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356523.389399997889996, 254550.583000000566244 ], [ 356582.392300002276897, 254534.389499999582767 ], [ 356581.612899996340275, 254531.216699998825788 ], [ 356574.523400001227856, 254511.526999998837709 ], [ 356570.55290000140667, 254504.317299999296665 ], [ 356568.949299998581409, 254503.248700000345707 ], [ 356568.171800002455711, 254499.864799998700619 ], [ 356557.867700003087521, 254478.882199998944998 ], [ 356484.169600002467632, 254516.27589999884367 ], [ 356484.144400000572205, 254519.230999998748302 ], [ 356508.965700000524521, 254539.910199999809265 ], [ 356523.389399997889996, 254550.583000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011900", "MAP": "D9-8987-T015", "PARCEL_NAM": "77", "ACRE": ".665", "LONGITUDE": -64.95720721000001, "LATITUDE": 18.31977567, "OBJECTID_1": 87178, "PARCEL_NO_": "507104011900", "Tax_Legal_": "77 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "COSASTAL WATERS TRUST", "Address": "77 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 123000, "Improved_V": 1161100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.439402102, "SHAPE_Area": 3001.7038291700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356011.981600001454353, 254475.892099998891354 ], [ 356053.573600001633167, 254515.706999998539686 ], [ 356073.489699997007847, 254449.586599998176098 ], [ 356030.099899999797344, 254431.499600000679493 ], [ 356025.507600001990795, 254439.218299999833107 ], [ 356020.569200001657009, 254448.313299998641014 ], [ 356017.382399998605251, 254454.715500000864267 ], [ 356016.801299996674061, 254455.935300000011921 ], [ 356012.060699999332428, 254466.604600001126528 ], [ 356011.981600001454353, 254475.892099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021200", "MAP": "D9-8738-T013", "PARCEL_NAM": "88", "ACRE": "3.24", "LONGITUDE": -64.95305701, "LATITUDE": 18.31951946, "OBJECTID_1": 87205, "PARCEL_NO_": "507104021200", "Tax_Legal_": "88 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "FORREST L TUCKER MARY L TUCKER JOINT LIVING TRUST", "Address": "PO Box 510", "City": "Wirtz", "State": "Virginia", "Zip": 24184, "Country": "United States", "Land_Value": 287200, "Improved_V": 634500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 452.34705370500001, "SHAPE_Area": 12855.7570294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356525.702600002288818, 254373.70549999922514 ], [ 356485.280900001525879, 254385.829199999570847 ], [ 356406.861800000071526, 254409.463100001215935 ], [ 356414.791900001466274, 254425.148899998515844 ], [ 356422.6283999979496, 254451.810899998992682 ], [ 356424.991599999368191, 254458.374099999666214 ], [ 356424.113399997353554, 254466.810699999332428 ], [ 356424.048600003123283, 254474.409499999135733 ], [ 356426.384800001978874, 254484.138900000602007 ], [ 356427.171400003135204, 254486.467399999499321 ], [ 356431.9679000005126, 254491.361800000071526 ], [ 356444.820299997925758, 254497.166499998420477 ], [ 356468.943199999630451, 254505.174400001764297 ], [ 356475.368500001728535, 254508.182300001382828 ], [ 356481.811800003051758, 254509.0793999992311 ], [ 356487.465000003576279, 254508.070199999958277 ], [ 356555.49549999833107, 254473.374400001019239 ], [ 356537.265000000596046, 254436.2837999984622 ], [ 356532.547600001096725, 254422.10190000012517 ], [ 356527.891400001943111, 254400.743400000035763 ], [ 356526.464000001549721, 254378.989100001752377 ], [ 356525.702600002288818, 254373.70549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94577693, "LATITUDE": 18.31959726, "OBJECTID_1": 87330, "PARCEL_NO_": "507203011600", "Tax_Legal_": "84 THRU 90 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "TPB LLC", "Address": "917 S Lusk St", "City": "Boise", "State": "Idaho", "Zip": 83706, "Country": "United States", "Land_Value": 559800, "Improved_V": 325700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.63386610100002, "SHAPE_Area": 4467.1901196400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357282.008599996566772, 254437.119100000709295 ], [ 357278.8733000010252, 254434.625399999320507 ], [ 357276.708499997854233, 254428.852699998766184 ], [ 357274.784299999475479, 254422.117800001055002 ], [ 357270.695299997925758, 254417.78830000013113 ], [ 357264.200900003314018, 254416.104600001126528 ], [ 357260.833499997854233, 254410.812899999320507 ], [ 357261.074000000953674, 254404.799600001424551 ], [ 357262.757700003683567, 254397.343199998140335 ], [ 357257.796300001442432, 254394.446800000965595 ], [ 357222.5658999979496, 254449.491999998688698 ], [ 357226.574100002646446, 254452.269099999219179 ], [ 357228.955300003290176, 254456.721500001847744 ], [ 357228.07880000025034, 254464.947000000625849 ], [ 357225.634700000286102, 254467.88230000063777 ], [ 357222.391500003635883, 254469.966699998825788 ], [ 357219.160800002515316, 254470.573499999940395 ], [ 357215.768399998545647, 254490.177499998360872 ], [ 357214.11259999871254, 254495.230200000107288 ], [ 357268.846500001847744, 254506.866099998354912 ], [ 357273.048900000751019, 254486.846599999815226 ], [ 357277.386200003325939, 254450.996199999004602 ], [ 357279.869800001382828, 254443.417100001126528 ], [ 357281.500399999320507, 254441.319600000977516 ], [ 357282.008599996566772, 254437.119100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94646916000001, "LATITUDE": 18.31965111, "OBJECTID_1": 87330, "PARCEL_NO_": "507203011600", "Tax_Legal_": "84 THRU 90 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "TPB LLC", "Address": "917 S Lusk St", "City": "Boise", "State": "Idaho", "Zip": 83706, "Country": "United States", "Land_Value": 559800, "Improved_V": 325700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.78743994500002, "SHAPE_Area": 3897.3664245800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357161.694300003349781, 254415.4814000017941 ], [ 357157.88629999756813, 254420.674699999392033 ], [ 357158.126800000667572, 254425.72580000013113 ], [ 357150.964100003242493, 254430.118700001388788 ], [ 357155.645599998533726, 254448.522100001573563 ], [ 357154.769100002944469, 254456.747600000351667 ], [ 357151.504299998283386, 254461.364999998360872 ], [ 357149.000900000333786, 254471.265900000929832 ], [ 357150.493000000715256, 254485.421300001442432 ], [ 357147.246200002729893, 254487.92790000140667 ], [ 357145.606600001454353, 254491.080899998545647 ], [ 357143.108499996364117, 254500.348499998450279 ], [ 357208.475599996745586, 254494.339600000530481 ], [ 357213.523800000548363, 254469.68299999833107 ], [ 357210.313000001013279, 254467.967999998480082 ], [ 357207.127300001680851, 254463.297899998724461 ], [ 357207.188400000333786, 254456.121199999004602 ], [ 357208.828000001609325, 254452.968199998140335 ], [ 357212.069499999284744, 254451.094900000840425 ], [ 357161.694300003349781, 254415.4814000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011200", "MAP": "D9-9272-T018", "PARCEL_NAM": "128", "ACRE": "0.58", "LONGITUDE": -64.95416835, "LATITUDE": 18.31945467, "OBJECTID_1": 87170, "PARCEL_NO_": "507104011200", "Tax_Legal_": "128 WATER ISLAND (LA PROVIDENCE) NO.10 SOUTHSIDE QTR", "Name": "ROSSIO, CAROLYN E", "Address": "4676 Portrait Ln", "City": "Plano", "State": "Texas", "Zip": 75024, "Country": "United States", "Land_Value": 100200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.289065419, "SHAPE_Area": 2567.4089222900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356398.814900003373623, 254407.497400000691414 ], [ 356333.35249999910593, 254424.693500000983477 ], [ 356334.799699999392033, 254444.125900000333786 ], [ 356328.878600001335144, 254476.585900001227856 ], [ 356408.330600000917912, 254426.36259999871254 ], [ 356398.814900003373623, 254407.497400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95517522, "LATITUDE": 18.31928001, "OBJECTID_1": 87171, "PARCEL_NO_": "507104011300", "Tax_Legal_": "79 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "ERWING, HEIDI", "Address": "25 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 135600, "Improved_V": 211200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.52086752100001, "SHAPE_Area": 3372.7459723299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356221.097000002861023, 254444.673000000417233 ], [ 356249.157899998128414, 254463.690000001341105 ], [ 356254.0658999979496, 254455.497499998658895 ], [ 356258.126299999654293, 254452.153200000524521 ], [ 356273.6925999969244, 254423.360800001770258 ], [ 356297.32379999756813, 254394.423300001770258 ], [ 356297.368699997663498, 254389.146299999207258 ], [ 356292.582999996840954, 254382.985500000417233 ], [ 356287.764899998903275, 254380.624000001698732 ], [ 356249.087099999189377, 254377.352099999785423 ], [ 356249.866400003433228, 254380.524900000542402 ], [ 356249.000799998641014, 254387.483899999409914 ], [ 356246.506300002336502, 254396.3293999992311 ], [ 356235.075900003314018, 254412.912300001829863 ], [ 356229.321999996900558, 254425.741900000721216 ], [ 356224.413999997079372, 254433.934399999678135 ], [ 356221.097000002861023, 254444.673000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011800", "MAP": "D9-8105-T008", "PARCEL_NAM": "74", "ACRE": ".665", "LONGITUDE": -64.95697375, "LATITUDE": 18.31934673, "OBJECTID_1": 87177, "PARCEL_NO_": "507104011800", "Tax_Legal_": "74 WATER ISLAND (LA PROVIDENCE) NO. 10 SOUTHSIDE QUARTER", "Name": "BERTRAND, GIORGIO CARLOS & LISA MARIE (TRUSTEES)", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79100, "Improved_V": 162000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.85540901799999, "SHAPE_Area": 2656.3408834000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356087.578199997544289, 254404.950100000947714 ], [ 356083.586199998855591, 254400.273299999535084 ], [ 356057.076800003647804, 254388.446199998259544 ], [ 356033.379100002348423, 254425.19370000064373 ], [ 356030.099899999797344, 254431.499600000679493 ], [ 356073.489699997007847, 254449.586599998176098 ], [ 356083.131300002336502, 254453.676300000399351 ], [ 356101.962399996817112, 254420.266499999910593 ], [ 356087.578199997544289, 254404.950100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95224895, "LATITUDE": 18.3190553, "OBJECTID_1": 87206, "PARCEL_NO_": "507104021300", "Tax_Legal_": "87 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BURKHART, HENRY & JOAN", "Address": "5130 Brittany Dr S", "City": "Saint Petersburg", "State": "Florida", "Zip": 33715, "Country": "United States", "Land_Value": 137600, "Improved_V": 727700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.89424451600001, "SHAPE_Area": 4220.97422972 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356596.821699999272823, 254355.078000001609325 ], [ 356531.386399999260902, 254369.107900001108646 ], [ 356532.156700000166893, 254373.336100000888109 ], [ 356532.072200000286102, 254383.256799999624491 ], [ 356534.325699999928474, 254402.695900000631809 ], [ 356538.19539999961853, 254421.725999999791384 ], [ 356543.735299997031689, 254434.014699999243021 ], [ 356603.566100001335144, 254415.294900000095367 ], [ 356596.821699999272823, 254355.078000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011700", "MAP": "D9-8105-T008", "PARCEL_NAM": "73", "ACRE": ".538", "LONGITUDE": -64.95671995, "LATITUDE": 18.31899255, "OBJECTID_1": 87175, "PARCEL_NO_": "507104011700", "Tax_Legal_": "73A WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "DONOVAN, ALEXANDER & ESTEBANIA", "Address": "5640 Heritage Ct", "City": "Midlothian", "State": "Texas", "Zip": 76065, "Country": "United States", "Land_Value": 108400, "Improved_V": 163200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.911948099, "SHAPE_Area": 2419.8386122900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356126.396300002932549, 254391.757800001651049 ], [ 356112.112899996340275, 254364.620900001376867 ], [ 356109.018899999558926, 254349.1858000010252 ], [ 356074.201800003647804, 254365.999400001019239 ], [ 356066.068499997258186, 254374.165500000119209 ], [ 356057.076800003647804, 254388.446199998259544 ], [ 356083.586199998855591, 254400.273299999535084 ], [ 356087.578199997544289, 254404.950100000947714 ], [ 356102.007399998605251, 254414.989599999040365 ], [ 356126.396300002932549, 254391.757800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012400", "MAP": "D9-8770-T013", "PARCEL_NAM": "72", "ACRE": "1.27", "LONGITUDE": -64.95693628, "LATITUDE": 18.31862044, "OBJECTID_1": 87183, "PARCEL_NO_": "507104012400", "Tax_Legal_": "72 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SHAFFER, ANNE F.,GERALD J. & JANE R. SHAFFER-LEE (TRUSTEES)", "Address": "572 Belle Meade Farm Dr", "City": "Loveland", "State": "Ohio", "Zip": 45140, "Country": "United States", "Land_Value": 227700, "Improved_V": 148800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 402.93608180199999, "SHAPE_Area": 4888.4920940900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356133.603900000452995, 254302.946400001645088 ], [ 356116.093400001525879, 254275.994199998676777 ], [ 356107.843199998140335, 254297.880399998277426 ], [ 356092.343500003218651, 254318.862900000065565 ], [ 356089.098399996757507, 254321.158399999141693 ], [ 356086.679499998688698, 254321.138599999248981 ], [ 356079.456900000572205, 254317.06870000064373 ], [ 356071.399099998176098, 254316.369500000029802 ], [ 356066.548699997365475, 254317.807399999350309 ], [ 356064.113499999046326, 254319.687300000339746 ], [ 356061.663999997079372, 254323.255899999290705 ], [ 356060.825400002300739, 254327.048700001090765 ], [ 356059.192900002002716, 254329.357400000095367 ], [ 356051.101099997758865, 254332.668600000441074 ], [ 356045.451499998569489, 254333.255699999630451 ], [ 356033.3783999979496, 254330.623700000345707 ], [ 356029.192800000309944, 254331.433899998664856 ], [ 356020.028599999845028, 254376.271600000560284 ], [ 356037.432899996638298, 254405.384100001305342 ], [ 356059.645000003278255, 254370.94649999961257 ], [ 356069.412500001490116, 254360.26069999858737 ], [ 356083.182700000703335, 254352.985100001096725 ], [ 356080.862700000405312, 254341.355999998748302 ], [ 356083.287000000476837, 254340.742499999701977 ], [ 356086.418799996376038, 254351.745000001043081 ], [ 356098.558399997651577, 254346.56700000166893 ], [ 356116.381800003349781, 254336.791499998420477 ], [ 356126.181599996984005, 254322.30629999935627 ], [ 356127.850000001490116, 254315.776000000536442 ], [ 356133.603900000452995, 254302.946400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011600", "MAP": null, "PARCEL_NAM": "73A", "ACRE": null, "LONGITUDE": -64.95626836, "LATITUDE": 18.31880003, "OBJECTID_1": 87174, "PARCEL_NO_": "507104011600", "Tax_Legal_": "115 WATER ISLAND No.10 SOUTHSIE QTR.", "Name": "DONOVAN AUBAIN, JENNIFER", "Address": "28546 Lockeridge Springs Dr", "City": "Spring", "State": "Texas", "Zip": 77386, "Country": "United States", "Land_Value": 160700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.07941921599999, "SHAPE_Area": 2471.92082381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356133.325099997222424, 254335.663600001484156 ], [ 356121.163900002837181, 254343.374499998986721 ], [ 356109.018899999558926, 254349.1858000010252 ], [ 356112.112899996340275, 254364.620900001376867 ], [ 356126.396300002932549, 254391.757800001651049 ], [ 356192.776500001549721, 254361.4814000017941 ], [ 356164.649099998176098, 254350.274399999529123 ], [ 356151.810999996960163, 254342.780999999493361 ], [ 356142.997299998998642, 254336.16499999910593 ], [ 356133.325099997222424, 254335.663600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021600", "MAP": "A9-508-T98", "PARCEL_NAM": "85", "ACRE": null, "LONGITUDE": -64.95300169, "LATITUDE": 18.31858374, "OBJECTID_1": 87209, "PARCEL_NO_": "507104021600", "Tax_Legal_": "85 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SUDEK, LUBOS & HELENA", "Address": "1201 Elm St", "City": "Dallas", "State": "Texas", "Zip": 75270, "Country": "United States", "Land_Value": 150600, "Improved_V": 601600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.74239913600002, "SHAPE_Area": 3457.6775303999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356493.310900002717972, 254295.124699998646975 ], [ 356451.305399999022484, 254303.857900001108646 ], [ 356466.319600000977516, 254339.866700001060963 ], [ 356485.280900001525879, 254385.829199999570847 ], [ 356525.702600002288818, 254373.70549999922514 ], [ 356524.943099997937679, 254368.210799999535084 ], [ 356524.158299997448921, 254365.671300001442432 ], [ 356519.408600002527237, 254355.288800001144409 ], [ 356515.425499998033047, 254349.556699998676777 ], [ 356511.422799997031689, 254346.14640000090003 ], [ 356502.657600000500679, 254333.831300001591444 ], [ 356497.934799998998642, 254320.282600000500679 ], [ 356493.310900002717972, 254295.124699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011400", "MAP": "A9-508-T98", "PARCEL_NAM": null, "ACRE": "1.50", "LONGITUDE": -64.95512959, "LATITUDE": 18.318493, "OBJECTID_1": 87172, "PARCEL_NO_": "507104011400", "Tax_Legal_": "69 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MC ARDLE, EDWARD", "Address": "142 W Station St", "City": "Barrington", "State": "Illinois", "Zip": 60010, "Country": "United States", "Land_Value": 177900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.80175145499999, "SHAPE_Area": 6338.0950007499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356269.396999999880791, 254265.005499999970198 ], [ 356247.491700001060963, 254280.65819999948144 ], [ 356227.238600000739098, 254291.680399999022484 ], [ 356227.541400000452995, 254350.789099998772144 ], [ 356229.811099998652935, 254368.328400000929832 ], [ 356246.720299996435642, 254371.211100000888109 ], [ 356287.012500002980232, 254374.285000000149012 ], [ 356295.050499998033047, 254377.306099999696016 ], [ 356300.642499998211861, 254383.473600000143051 ], [ 356305.028300002217293, 254341.924100000411272 ], [ 356269.396999999880791, 254265.005499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011500", "MAP": "D9-8437-T010", "PARCEL_NAM": "70", "ACRE": ".771", "LONGITUDE": -64.95573816, "LATITUDE": 18.31852006, "OBJECTID_1": 87173, "PARCEL_NO_": "507104011500", "Tax_Legal_": "70 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "NILS WESSELL", "Address": "95 North Rd", "City": "Chebeague Island", "State": "Maine", "Zip": 4017, "Country": "United States", "Land_Value": 148600, "Improved_V": 464600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.93562696800001, "SHAPE_Area": 3391.0430884900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356229.811099998652935, 254368.328400000929832 ], [ 356227.541400000452995, 254350.789099998772144 ], [ 356227.238600000739098, 254291.680399999022484 ], [ 356211.848499998450279, 254299.787099998444319 ], [ 356173.008900001645088, 254315.512299999594688 ], [ 356160.052100002765656, 254321.950199998915195 ], [ 356151.944099999964237, 254327.161200001835823 ], [ 356150.304499998688698, 254330.3141999989748 ], [ 356152.673000000417233, 254336.244199998676777 ], [ 356170.327399998903275, 254346.310100000351667 ], [ 356211.312700003385544, 254362.6886 ], [ 356229.811099998652935, 254368.328400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021700", "MAP": "D9-8371-T009", "PARCEL_NAM": "86", "ACRE": "1.157", "LONGITUDE": -64.95235233, "LATITUDE": 18.31855697, "OBJECTID_1": 87210, "PARCEL_NO_": "507104021700", "Tax_Legal_": "86 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SCHMITZ, JASON LEONARD & ALISON BETH", "Address": "1996 Four Seasons Dr", "City": "Akron", "State": "Ohio", "Zip": 44333, "Country": "United States", "Land_Value": 98000, "Improved_V": 750000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.90105493499999, "SHAPE_Area": 3581.41460895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356573.017200000584126, 254309.709199998527765 ], [ 356506.734099999070168, 254328.58729999884963 ], [ 356510.708099998533726, 254335.374800000339746 ], [ 356526.661799997091293, 254355.770399998873472 ], [ 356531.386399999260902, 254369.107900001108646 ], [ 356596.821699999272823, 254355.078000001609325 ], [ 356591.508400000631809, 254316.193300001323223 ], [ 356584.334299996495247, 254306.424300000071526 ], [ 356577.867600001394749, 254308.271200001239777 ], [ 356573.017200000584126, 254309.709199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022100", "MAP": "A9-508-T98", "PARCEL_NAM": "68", "ACRE": null, "LONGITUDE": -64.95384078, "LATITUDE": 18.31813345, "OBJECTID_1": 87214, "PARCEL_NO_": "507104022100", "Tax_Legal_": "68 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "COLEMAN, WILLIAM & JEANETTE", "Address": "1968 Walker Ave", "City": "Petersburg", "State": "Virginia", "Zip": 23803, "Country": "United States", "Land_Value": 164700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.41393204299999, "SHAPE_Area": 3252.3210667799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356407.290799997746944, 254264.445300001651049 ], [ 356408.045000001788139, 254270.57319999858737 ], [ 356375.8158999979496, 254267.565200001001358 ], [ 356370.074600003659725, 254278.917300000786781 ], [ 356362.749399997293949, 254286.878899998962879 ], [ 356360.287399999797344, 254291.925000000745058 ], [ 356362.643399998545647, 254299.332499999552965 ], [ 356368.206600002944469, 254308.877300001680851 ], [ 356372.938400000333786, 254321.37049999833107 ], [ 356430.299900002777576, 254308.54109999909997 ], [ 356432.095899999141693, 254287.024300001561642 ], [ 356433.823600001633167, 254273.528400000184774 ], [ 356438.002599999308586, 254256.252999998629093 ], [ 356407.290799997746944, 254264.445300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012600", "MAP": "A9-801-T014", "PARCEL_NAM": "TRACT C", "ACRE": "6.7", "LONGITUDE": -64.95530689, "LATITUDE": 18.31680131, "OBJECTID_1": 87185, "PARCEL_NO_": "507104012600", "Tax_Legal_": "TRACT \"C\" WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1005.48548265, "SHAPE_Area": 27937.279419900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356036.391099996864796, 253992.613600000739098 ], [ 356042.645395289466251, 253994.756385212851455 ], [ 356049.089199997484684, 253996.234600000083447 ], [ 356058.142240520217456, 253997.865254382428247 ], [ 356067.133799999952316, 253999.806499999016523 ], [ 356078.832035263185389, 254003.054750255250838 ], [ 356090.417199999094009, 254006.685699999332428 ], [ 356107.16026333294576, 254012.704176751052728 ], [ 356123.754699997603893, 254019.121100001037121 ], [ 356133.476560604118276, 254022.998079266486457 ], [ 356143.360848501441069, 254026.43993845031946 ], [ 356153.388099998235703, 254029.439899999648333 ], [ 356159.573791753733531, 254032.140754856693093 ], [ 356165.559000000357628, 254035.260800000280142 ], [ 356168.838072959915735, 254040.313524160388624 ], [ 356171.49635195202427, 254045.718697026488371 ], [ 356173.496500000357628, 254051.400400001555681 ], [ 356173.467799998819828, 254072.336300000548363 ], [ 356173.413800001144409, 254078.668699998408556 ], [ 356170.087899997830391, 254090.462699998170137 ], [ 356170.831200003623962, 254097.857099998742342 ], [ 356172.400700002908707, 254102.936099998652935 ], [ 356179.600000001490116, 254109.750100001692772 ], [ 356194.034500002861023, 254119.156300000846386 ], [ 356199.613899998366833, 254126.801399998366833 ], [ 356201.194200001657009, 254130.614000000059605 ], [ 356202.756499998271465, 254136.537399999797344 ], [ 356201.870999999344349, 254145.818199999630451 ], [ 356198.543300002813339, 254157.823300000280142 ], [ 356197.68299999833107, 254164.149099998176098 ], [ 356193.198299996554852, 254217.30799999833107 ], [ 356191.528200000524521, 254224.049300000071526 ], [ 356210.51349999755621, 254234.7652000002563 ], [ 356231.377400003373623, 254246.541400000452995 ], [ 356254.817400000989437, 254266.476500000804663 ], [ 356262.977099999785423, 254261.364399999380112 ], [ 356286.521999999880791, 254242.558600001037121 ], [ 356316.522799998521805, 254223.172499999403954 ], [ 356344.862400002777576, 254209.472300000488758 ], [ 356378.88400000333786, 254191.385600000619888 ], [ 356382.944300003349781, 254188.041299998760223 ], [ 356385.409999996423721, 254182.573100000619888 ], [ 356386.304399996995926, 254172.236800000071526 ], [ 356383.92679999768734, 254167.362199999392033 ], [ 356379.929399996995926, 254163.31870000064373 ], [ 356368.705799996852875, 254155.627500001341105 ], [ 356337.367499999701977, 254142.705400001257658 ], [ 356318.895999997854233, 254133.899300001561642 ], [ 356296.425399996340275, 254121.260899998247623 ], [ 356257.934600003063679, 254096.036800000816584 ], [ 356248.330799996852875, 254087.514499999582767 ], [ 356238.730499997735023, 254078.570000000298023 ], [ 356229.954599998891354, 254067.521299999207258 ], [ 356222.812899999320507, 254053.952899999916553 ], [ 356214.900799997150898, 254036.156199999153614 ], [ 356213.300800003111362, 254034.665500000119209 ], [ 356202.168799996376038, 254016.209199998527765 ], [ 356194.960600003600121, 254010.450699999928474 ], [ 356183.718900002539158, 254004.870299998670816 ], [ 356173.262100003659725, 254001.8293999992311 ], [ 356090.287399999797344, 253992.284299999475479 ], [ 356074.162900000810623, 253991.941300000995398 ], [ 356054.79169999808073, 253994.104800000786781 ], [ 356042.704199999570847, 253993.161499999463558 ], [ 356036.391099996864796, 253992.613600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021900", "MAP": "D9-8127-T008", "PARCEL_NAM": "62-1", "ACRE": ".751", "LONGITUDE": -64.95225407, "LATITUDE": 18.31712478, "OBJECTID_1": 87212, "PARCEL_NO_": "507104021900", "Tax_Legal_": "62 REM WATER ISLAND NO.10 SOUTHSIDE QUARTER", "Name": "BERTRAND, ISLA", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 233100, "Improved_V": 249700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.52116246899999, "SHAPE_Area": 3201.04608796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356519.919600002467632, 254193.514400001615286 ], [ 356613.419399999082088, 254201.524700000882149 ], [ 356615.128100000321865, 254193.952399998903275 ], [ 356608.916799999773502, 254165.826099999248981 ], [ 356531.588100001215935, 254156.116200000047684 ], [ 356519.919600002467632, 254193.514400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022200", "MAP": "A9-508-T98", "PARCEL_NAM": "67", "ACRE": null, "LONGITUDE": -64.95411426, "LATITUDE": 18.31764163, "OBJECTID_1": 87215, "PARCEL_NO_": "507104022200", "Tax_Legal_": "67 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "COLEMAN, WILLIAM & JEANETTE", "Address": "1968 Walker Ave", "City": "Petersburg", "State": "Virginia", "Zip": 23803, "Country": "United States", "Land_Value": 155600, "Improved_V": 156800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.48317376400001, "SHAPE_Area": 4070.47155324 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356407.290799997746944, 254264.445300001651049 ], [ 356406.401199996471405, 254255.045000001788139 ], [ 356398.482500001788139, 254257.196100000292063 ], [ 356397.728399999439716, 254251.068199999630451 ], [ 356405.811300002038479, 254248.812300000339746 ], [ 356395.838100001215935, 254188.991200000047684 ], [ 356388.543499998748302, 254193.364500001072884 ], [ 356383.669699996709824, 254197.546500001102686 ], [ 356360.986900001764297, 254209.81529999896884 ], [ 356322.924699999392033, 254228.924400001764297 ], [ 356353.217600002884865, 254269.913400001823902 ], [ 356375.8158999979496, 254267.565200001001358 ], [ 356407.290799997746944, 254264.445300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022300", "MAP": "D9-8976-T015", "PARCEL_NAM": "66", "ACRE": ".626", "LONGITUDE": -64.95373581, "LATITUDE": 18.31742735, "OBJECTID_1": 87216, "PARCEL_NO_": "507104022300", "Tax_Legal_": "66 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "LEARMONT, TOM-TRUSTEE", "Address": "807 N Quinn Cir", "City": "Mesa", "State": "Arizona", "Zip": 85205, "Country": "United States", "Land_Value": 123300, "Improved_V": 297600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.36240935500001, "SHAPE_Area": 1372.7221046499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356395.838100001215935, 254188.991200000047684 ], [ 356405.811300002038479, 254248.812300000339746 ], [ 356407.432899996638298, 254247.770100001245737 ], [ 356415.539200000464916, 254242.770199999213219 ], [ 356422.056199997663498, 254235.013099998235703 ], [ 356424.545299999415874, 254226.800799999386072 ], [ 356426.238799996674061, 254217.315499998629093 ], [ 356418.483199998736382, 254181.155000001192093 ], [ 356415.268700003623962, 254179.862100001424551 ], [ 356395.838100001215935, 254188.991200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022400", "MAP": null, "PARCEL_NAM": "65", "ACRE": null, "LONGITUDE": -64.95326543, "LATITUDE": 18.31730081, "OBJECTID_1": 87217, "PARCEL_NO_": "507104022400", "Tax_Legal_": "65 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "LEARMONT, TOM-TRUSTEE", "Address": "807 N Quinn Cir", "City": "Mesa", "State": "Arizona", "Zip": 85205, "Country": "United States", "Land_Value": 118200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.244471116, "SHAPE_Area": 2136.6963931 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356437.107500001788139, 254172.019299998879433 ], [ 356445.504000000655651, 254227.605599999427795 ], [ 356460.834700003266335, 254226.464499998837709 ], [ 356492.4391999989748, 254208.146999999880791 ], [ 356491.665200002491474, 254204.340999998152256 ], [ 356485.329800002276897, 254190.779100000858307 ], [ 356469.324000000953674, 254176.504900000989437 ], [ 356450.030100002884865, 254169.591899998486042 ], [ 356444.385899998247623, 254169.545800000429153 ], [ 356437.107500001788139, 254172.019299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023000", "MAP": "D9-7109-T002", "PARCEL_NAM": "40 REM", "ACRE": ".77", "LONGITUDE": -64.9538623, "LATITUDE": 18.31657714, "OBJECTID_1": 87223, "PARCEL_NO_": "507104023000", "Tax_Legal_": "40 REM WATER ISLAND No.10 SOUTHSIDE QUARTER", "Name": "BULLOCK, WILLIAM H. & JAN MARIE (TRUSTEES)", "Address": "2244 Lookout Lndg", "City": "Fleming Island", "State": "Florida", "Zip": 32003, "Country": "United States", "Land_Value": 121500, "Improved_V": 313500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.143919329, "SHAPE_Area": 2197.14543594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356428.582599997520447, 254127.384399998933077 ], [ 356427.829099997878075, 254125.291700001806021 ], [ 356426.473700001835823, 254095.094200000166893 ], [ 356399.85639999806881, 254095.931800000369549 ], [ 356379.659000001847744, 254100.410599999129772 ], [ 356376.381599999964237, 254106.505499999970198 ], [ 356368.197999998927116, 254120.581799998879433 ], [ 356368.165600001811981, 254124.38120000064373 ], [ 356373.714500002563, 254135.614599999040365 ], [ 356381.712899997830391, 254143.279399998486042 ], [ 356384.15820000320673, 254144.983600001782179 ], [ 356428.582599997520447, 254127.384399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95312559, "LATITUDE": 18.31663732, "OBJECTID_1": 87219, "PARCEL_NO_": "507104022600", "Tax_Legal_": "61 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BOHR, ROBERT & JOANNE", "Address": "9 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 202100, "Improved_V": 306500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.78504816399999, "SHAPE_Area": 4569.9794774600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356434.531400002539158, 254095.793400000780821 ], [ 356435.888700000941753, 254125.779800001531839 ], [ 356443.829499997198582, 254140.199200000613928 ], [ 356446.980999998748302, 254148.879799999296665 ], [ 356446.964900001883507, 254150.779500000178814 ], [ 356449.342399999499321, 254155.654100000858307 ], [ 356455.733599998056889, 254162.672499999403954 ], [ 356525.250900000333786, 254142.765399999916553 ], [ 356509.518399998545647, 254096.407200001180172 ], [ 356434.531400002539158, 254095.793400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95445275, "LATITUDE": 18.31637986, "OBJECTID_1": 87221, "PARCEL_NO_": "507104022800", "Tax_Legal_": "41 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "ROBERTSON, JAMES C.", "Address": "7764 Mulberry Lane", "City": "Naples", "State": "Florida", "Zip": 34114, "Country": "United States", "Land_Value": 123600, "Improved_V": 184300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.5375176, "SHAPE_Area": 4190.4207315200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356320.22919999808073, 254072.059799998998642 ], [ 356286.882700003683567, 254105.561900001019239 ], [ 356316.561599999666214, 254123.958799999207258 ], [ 356347.079199999570847, 254138.563000001013279 ], [ 356356.91499999910593, 254119.856100000441074 ], [ 356362.573600001633167, 254118.213700000196695 ], [ 356370.746399998664856, 254105.403900001198053 ], [ 356371.612000003457069, 254098.444899998605251 ], [ 356363.023100003600121, 254065.443999998271465 ], [ 356359.968699999153614, 254045.365100000053644 ], [ 356320.22919999808073, 254072.059799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022900", "MAP": null, "PARCEL_NAM": "42", "ACRE": null, "LONGITUDE": -64.95500047, "LATITUDE": 18.31618763, "OBJECTID_1": 87222, "PARCEL_NO_": "507104022900", "Tax_Legal_": "42 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "JENSEN, JEFF & ALLANACH, JANICE P", "Address": "WATER ISLAND No.60", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88900, "Improved_V": 73900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.28213759100001, "SHAPE_Area": 2604.5141882900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356260.783299997448921, 254045.608800001442432 ], [ 356238.035700000822544, 254065.476500000804663 ], [ 356243.616999998688698, 254072.910500001162291 ], [ 356255.612700000405312, 254084.61879999935627 ], [ 356286.882700003683567, 254105.561900001019239 ], [ 356320.22919999808073, 254072.059799998998642 ], [ 356315.450699999928474, 254065.05460000038147 ], [ 356288.133199997246265, 254053.432000000029802 ], [ 356277.615099996328354, 254057.567800000309944 ], [ 356260.783299997448921, 254045.608800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022700", "MAP": "D9-9054-T016", "PARCEL_NAM": "39", "ACRE": "1.03", "LONGITUDE": -64.95387317, "LATITUDE": 18.31603542, "OBJECTID_1": 87220, "PARCEL_NO_": "507104022700", "Tax_Legal_": "39 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "KAROLY LANZOS FAMILY TRUST", "Address": "29 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 145700, "Improved_V": 302500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.90666007200002, "SHAPE_Area": 4430.5831064200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356435.785499997437, 254043.241399999707937 ], [ 356405.314599998295307, 254023.14919999986887 ], [ 356374.788000002503395, 254009.600499998778105 ], [ 356366.435400001704693, 254043.518199998885393 ], [ 356367.159000001847744, 254053.234400000423193 ], [ 356376.471500001847744, 254095.951499998569489 ], [ 356379.659000001847744, 254100.410599999129772 ], [ 356399.85639999806881, 254095.931800000369549 ], [ 356426.473700001835823, 254095.094200000166893 ], [ 356428.258900001645088, 254074.843800000846386 ], [ 356435.785499997437, 254043.241399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023400", "MAP": "D9-8004-T007", "PARCEL_NAM": "43", "ACRE": ".857", "LONGITUDE": -64.95536705000001, "LATITUDE": 18.31565599, "OBJECTID_1": 87227, "PARCEL_NO_": "507104023400", "Tax_Legal_": "43 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MUNZAR, JIRI", "Address": "37 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 100000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.82882551599999, "SHAPE_Area": 3086.0300531299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356247.755699999630451, 253965.708799999207258 ], [ 356209.449000000953674, 254013.524599999189377 ], [ 356220.584499999880791, 254031.558699999004602 ], [ 356225.346900001168251, 254040.463599998503923 ], [ 356229.286700002849102, 254051.261599998921156 ], [ 356238.035700000822544, 254065.476500000804663 ], [ 356260.783299997448921, 254045.608800001442432 ], [ 356253.655900001525879, 254030.351700000464916 ], [ 356261.889899998903275, 254010.365200001746416 ], [ 356260.521799996495247, 253981.645300000905991 ], [ 356265.422600001096725, 253974.297100000083447 ], [ 356257.379299998283386, 253971.909299999475479 ], [ 356247.755699999630451, 253965.708799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95466003, "LATITUDE": 18.31554201, "OBJECTID_1": 87223, "PARCEL_NO_": "507104023000", "Tax_Legal_": "40 REM WATER ISLAND No.10 SOUTHSIDE QUARTER", "Name": "BULLOCK, WILLIAM H. & JAN MARIE (TRUSTEES)", "Address": "2244 Lookout Lndg", "City": "Fleming Island", "State": "Florida", "Zip": 32003, "Country": "United States", "Land_Value": 121500, "Improved_V": 313500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.15124939899999, "SHAPE_Area": 8176.50932801 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356269.864900000393391, 254020.774099998176098 ], [ 356285.795100003480911, 254043.913699999451637 ], [ 356324.359700001776218, 254060.483500000089407 ], [ 356360.855899997055531, 254035.873199999332428 ], [ 356366.723099999129772, 254009.745600000023842 ], [ 356359.655100002884865, 253987.522900000214577 ], [ 356338.905000001192093, 253962.232900001108646 ], [ 356311.663000002503395, 253941.745000001043081 ], [ 356291.458400003612041, 253947.06810000166297 ], [ 356268.56700000166893, 253983.82209999859333 ], [ 356269.864900000393391, 254020.774099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95376404, "LATITUDE": 18.31548893, "OBJECTID_1": 87224, "PARCEL_NO_": "507104023100", "Tax_Legal_": "38 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BLAKE-SCOTT, HALSEY K. & CAROL A", "Address": "1915 N Pantops Dr", "City": "Charlottesville", "State": "Virginia", "Zip": 22911, "Country": "United States", "Land_Value": 155600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.79181863700001, "SHAPE_Area": 3729.7519277199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356377.563000001013279, 253967.826699998229742 ], [ 356375.894599996507168, 253974.356899999082088 ], [ 356374.921099998056889, 253993.980700001120567 ], [ 356374.788000002503395, 254009.600499998778105 ], [ 356405.314599998295307, 254023.14919999986887 ], [ 356435.785499997437, 254043.241399999707937 ], [ 356435.93469999730587, 254025.721900001168251 ], [ 356437.617499999701977, 254017.502999998629093 ], [ 356453.221500001847744, 253984.277899999171495 ], [ 356433.106899999082088, 253979.047100000083447 ], [ 356379.25110000371933, 253958.974599998444319 ], [ 356377.563000001013279, 253967.826699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012700", "MAP": "D9-9431-T020", "PARCEL_NAM": "50", "ACRE": "0.83", "LONGITUDE": -64.95793344000001, "LATITUDE": 18.3154806, "OBJECTID_1": 87186, "PARCEL_NO_": "507104012700", "Tax_Legal_": "LOT 50 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "ROBINSON, WAVERLY H, & JANICE", "Address": "10500 Mount Holly Rd", "City": "Charlotte", "State": "North Carolina", "Zip": 28214, "Country": "United States", "Land_Value": 182500, "Improved_V": 133700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.514353306, "SHAPE_Area": 3414.44632056 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355971.303800001740456, 253950.147300001233816 ], [ 355929.82039999961853, 253992.23759999871254 ], [ 355935.444799996912479, 253994.605599999427795 ], [ 355936.998099997639656, 254001.584399998188019 ], [ 355943.417999997735023, 254005.225600000470877 ], [ 355944.186599999666214, 254009.664799999445677 ], [ 355945.775799997150898, 254012.421999998390675 ], [ 355953.770599998533726, 254020.50899999961257 ], [ 355956.949100002646446, 254026.023499999195337 ], [ 355959.359099999070168, 254027.098700001835823 ], [ 355964.200499996542931, 254026.716099999845028 ], [ 355971.444799996912479, 254028.252999998629093 ], [ 355975.461999997496605, 254029.974700000137091 ], [ 355981.872900001704693, 254034.67119999974966 ], [ 356004.906400002539158, 253981.241999998688698 ], [ 355990.482699997723103, 253970.569200001657009 ], [ 355971.303800001740456, 253950.147300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023500", "MAP": "D9-8004-T007", "PARCEL_NAM": "44", "ACRE": ".903", "LONGITUDE": -64.9557097, "LATITUDE": 18.31524934, "OBJECTID_1": 87228, "PARCEL_NO_": "507104023500", "Tax_Legal_": "44 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MUNZAR, JR, JIRI", "Address": "PO BOX 302310", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 117200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.9831208, "SHAPE_Area": 3906.68221305 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356179.508599996566772, 253931.164200000464916 ], [ 356171.712399996817112, 253994.428399998694658 ], [ 356183.783699996769428, 253997.27140000090003 ], [ 356194.233400002121925, 254001.156700000166893 ], [ 356203.85700000077486, 254007.357099998742342 ], [ 356209.449000000953674, 254013.524599999189377 ], [ 356247.755699999630451, 253965.708799999207258 ], [ 356244.54839999973774, 253963.571600001305342 ], [ 356228.565999999642372, 253946.553300000727177 ], [ 356220.549599997699261, 253940.999299999326468 ], [ 356210.112499997019768, 253935.636500000953674 ], [ 356203.674599997699261, 253934.106199998408556 ], [ 356179.508599996566772, 253931.164200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507103010100", "MAP": "D9-8164-T008", "PARCEL_NAM": "51-REM", "ACRE": ".51", "LONGITUDE": -64.95819978, "LATITUDE": 18.31519241, "OBJECTID_1": 87153, "PARCEL_NO_": "507103010100", "Tax_Legal_": "51-REM WATER ISLAND\nNO.10 SOUTHSIDE QTR", "Name": "WAVERLY HALE & JANICE E COSSILL ROBINSON LIV TRUST", "Address": "10500 Mount Holly Rd", "City": "Charlotte", "State": "North Carolina", "Zip": 28214, "Country": "United States", "Land_Value": 116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.52207033600001, "SHAPE_Area": 1562.35375344 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355957.292099997401237, 253931.758799999952316 ], [ 355909.215599998831749, 253968.278400000184774 ], [ 355919.505599997937679, 253972.52140000090003 ], [ 355919.475000001490116, 253976.1097999997437 ], [ 355922.660700000822544, 253980.779899999499321 ], [ 355927.442800000309944, 253987.363000001758337 ], [ 355929.82039999961853, 253992.23759999871254 ], [ 355971.303800001740456, 253950.147300001233816 ], [ 355957.292099997401237, 253931.758799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95759822, "LATITUDE": 18.31476583, "OBJECTID_1": 87232, "PARCEL_NO_": "507104023900", "Tax_Legal_": "48A, 48-1 & 48-2 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "LOPEZ, RAYMOND", "Address": "18 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132400, "Improved_V": 545900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.43052752099999, "SHAPE_Area": 3861.2644741 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356015.874899998307228, 253858.89469999819994 ], [ 356013.443878534249961, 253861.558974890707759 ], [ 356011.402441975777037, 253864.532316922734026 ], [ 356009.789399996399879, 253867.758200000971556 ], [ 356003.166943370597437, 253879.682177257956937 ], [ 355996.031099997460842, 253891.306200001388788 ], [ 355989.5010252961074, 253898.904675650032004 ], [ 355983.279975699435454, 253906.758162118087057 ], [ 355977.377899996936321, 253914.854100000113249 ], [ 355973.003982560476288, 253922.178885235451162 ], [ 355969.175800003111362, 253929.803100001066923 ], [ 355968.920013473136351, 253931.291423982853303 ], [ 355968.894318522943649, 253932.801349409215618 ], [ 355969.099316912819631, 253934.297514735575533 ], [ 355969.530207703763153, 253935.744880670623388 ], [ 355970.176899692916777, 253937.109550775378011 ], [ 355971.024247743189335, 253938.359565297432709 ], [ 355972.052407473209314, 253939.465649649180705 ], [ 355973.237300001084805, 253940.401900000870228 ], [ 355979.383100003004074, 253948.3136 ], [ 355998.574600003659725, 253967.258000001311302 ], [ 356042.710600003600121, 253897.74720000103116 ], [ 356020.425200000405312, 253863.36769999936223 ], [ 356018.832299999892712, 253861.032600000500679 ], [ 356017.531999997794628, 253859.126499999314547 ], [ 356015.874899998307228, 253858.89469999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95518141, "LATITUDE": 18.31487543, "OBJECTID_1": 87226, "PARCEL_NO_": "507104023300", "Tax_Legal_": "36 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BLAKEY, JAMES D", "Address": "36 Catchmant Hill Rd", "City": "WATER ISLAND", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 136600, "Improved_V": 159200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.74021133299999, "SHAPE_Area": 3582.7788541099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356302.840300001204014, 253936.184399999678135 ], [ 356281.478000000119209, 253888.091299999505281 ], [ 356262.815999999642372, 253901.659600000828505 ], [ 356248.235799998044968, 253909.35080000013113 ], [ 356233.682599999010563, 253913.875700000673532 ], [ 356210.259999997913837, 253918.328099999576807 ], [ 356210.179099999368191, 253927.82660000026226 ], [ 356223.033299997448921, 253933.420200001448393 ], [ 356233.454199999570847, 253940.682700000703335 ], [ 356253.439400002360344, 253961.111299999058247 ], [ 356260.662100002169609, 253965.181200001388788 ], [ 356268.70719999819994, 253967.357900001108646 ], [ 356286.676299996674061, 253940.484999999403954 ], [ 356302.840300001204014, 253936.184399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507103010200", "MAP": "D9-8648-T012", "PARCEL_NAM": "52", "ACRE": ".64", "LONGITUDE": -64.95871065, "LATITUDE": 18.31485007, "OBJECTID_1": 87154, "PARCEL_NO_": "507103010200", "Tax_Legal_": "52 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "HALF MOON BEACH LLC", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 153600, "Improved_V": 130700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.68188516699999, "SHAPE_Area": 2921.35431156 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355913.149700000882149, 253866.711500000208616 ], [ 355895.236400000751019, 253887.041000001132488 ], [ 355863.524099998176098, 253918.023299999535084 ], [ 355849.633299998939037, 253939.441199999302626 ], [ 355860.090199999511242, 253942.482099998742342 ], [ 355870.523699998855591, 253948.267000000923872 ], [ 355869.652699999511242, 253955.859200000762939 ], [ 355871.252700001001358, 253957.350000001490116 ], [ 355876.103200003504753, 253955.912000000476837 ], [ 355882.523100003600121, 253959.553100001066923 ], [ 355885.750200003385544, 253959.368500001728535 ], [ 355889.799699999392033, 253957.290699999779463 ], [ 355897.8412000015378, 253959.889600001275539 ], [ 355909.392200000584126, 253929.164500001817942 ], [ 355912.27139999717474, 253875.14809999987483 ], [ 355913.149700000882149, 253866.711500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507103010300", "MAP": "A9-508-T98", "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.95939119000001, "LATITUDE": 18.31474751, "OBJECTID_1": 87155, "PARCEL_NO_": "507103010300", "Tax_Legal_": "54 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BLOSSER, ROBERT C", "Address": "14 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65000, "Improved_V": 279900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.655293903, "SHAPE_Area": 1583.3506875400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355848.28320000320673, 253908.610500000417233 ], [ 355829.061200000345707, 253893.254399999976158 ], [ 355820.954899996519089, 253898.254299998283386 ], [ 355809.765500001609325, 253886.552600000053644 ], [ 355784.566600002348423, 253910.19990000128746 ], [ 355817.409599997103214, 253935.799899999052286 ], [ 355848.28320000320673, 253908.610500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010200", "MAP": "D9-7880-T006", "PARCEL_NAM": "35-A", "ACRE": ".31", "LONGITUDE": -64.95476889, "LATITUDE": 18.31466406, "OBJECTID_1": 87362, "PARCEL_NO_": "509202010200", "Tax_Legal_": "35 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "OTS PROPERTY HOLDING LLC", "Address": "414 Rhett Butler Dr", "City": "Charleston", "State": "South Carolina", "Zip": 29414, "Country": "United States", "Land_Value": 127300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.594691031, "SHAPE_Area": 1602.4566705100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356329.734399996697903, 253922.904899999499321 ], [ 356301.365500003099442, 253869.60020000115037 ], [ 356296.916599996387959, 253874.285500001162291 ], [ 356287.15820000320673, 253883.915899999439716 ], [ 356281.478000000119209, 253888.091299999505281 ], [ 356302.840300001204014, 253936.184399999678135 ], [ 356313.34570000320673, 253933.526099998503923 ], [ 356329.734399996697903, 253922.904899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010500", "MAP": "D9-7930-T007", "PARCEL_NAM": "32", "ACRE": "1.058", "LONGITUDE": -64.95340721, "LATITUDE": 18.31447533, "OBJECTID_1": 87365, "PARCEL_NO_": "509202010500", "Tax_Legal_": "32 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MARZILLI, NICHOLAS A. & FIORENZANO, LYNN E.", "Address": "203 Warren Rd", "City": "Westerly", "State": "Rhode Island", "Zip": 28914076, "Country": "United States", "Land_Value": 157600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.34116402400002, "SHAPE_Area": 4402.9593909300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356477.522299997508526, 253864.206599999219179 ], [ 356476.178453404747415, 253864.141343364142813 ], [ 356474.85888959467411, 253863.878791570547037 ], [ 356473.592413739825133, 253863.424675943912007 ], [ 356472.40667213924462, 253862.788909516850254 ], [ 356471.327548718429171, 253861.985370634181891 ], [ 356470.378600001335144, 253861.031599998474121 ], [ 356461.911899998784065, 253851.374299999326468 ], [ 356457.790367899928242, 253849.042460923083127 ], [ 356453.453989187953994, 253847.139747075620107 ], [ 356448.947300001978874, 253845.685699999332428 ], [ 356437.190434031945188, 253845.515998746268451 ], [ 356425.44709999859333, 253844.927099999040365 ], [ 356423.829408286779653, 253844.101494946808089 ], [ 356422.113954407977872, 253843.505031899956521 ], [ 356420.333015291660558, 253843.148933541844599 ], [ 356418.520099997520447, 253843.039900001138449 ], [ 356418.024458741594572, 253843.17015324573731 ], [ 356417.55547383724479, 253843.376742988330079 ], [ 356417.124820205848664, 253843.65452637890121 ], [ 356416.743218549352605, 253843.996588270994835 ], [ 356416.420168468495831, 253844.394413367670495 ], [ 356416.163711979810614, 253844.838098201405955 ], [ 356415.980233317241073, 253845.316597671277123 ], [ 356415.874300003051758, 253845.817999999970198 ], [ 356424.0608000010252, 253919.95380000025034 ], [ 356477.894599996507168, 253927.695700000971556 ], [ 356480.534699998795986, 253901.75279999896884 ], [ 356480.223399996757507, 253868.973600000143051 ], [ 356477.522299997508526, 253864.206599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010100", "MAP": "D9-8085-T008", "PARCEL_NAM": "49A", "ACRE": ".275", "LONGITUDE": -64.95728187, "LATITUDE": 18.31409269, "OBJECTID_1": 87361, "PARCEL_NO_": "509202010100", "Tax_Legal_": "49&49A WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CUTLER LEVESQUE TRUST", "Address": "1003 Livezey Ln", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19119, "Country": "United States", "Land_Value": 135400, "Improved_V": 562400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.311777087, "SHAPE_Area": 845.38793642799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356044.750900000333786, 253822.196899998933077 ], [ 356043.205864439427387, 253822.200857635907596 ], [ 356041.684064074128401, 253822.467829910834553 ], [ 356040.229942983598448, 253822.990019916032907 ], [ 356038.885968678281642, 253823.752177126909373 ], [ 356037.691391839005519, 253824.732042792427819 ], [ 356036.681100003421307, 253825.901000000536442 ], [ 356031.829038646654226, 253832.213488700217567 ], [ 356027.412635201239027, 253838.83809386586654 ], [ 356023.451899997889996, 253845.744800001382828 ], [ 356022.637689909723122, 253847.111101391637931 ], [ 356022.022171297401655, 253848.577680538670393 ], [ 356021.617396516841836, 253850.115820627775975 ], [ 356021.431291388056707, 253851.695403622637969 ], [ 356021.467500001192093, 253853.285500001162291 ], [ 356021.594835159368813, 253854.067992983676959 ], [ 356021.842382144415751, 253854.821139715990284 ], [ 356022.204110083868727, 253855.52659163356293 ], [ 356022.67120636778418, 253856.167162138503045 ], [ 356023.232291345892008, 253856.727245308633428 ], [ 356023.873695565212984, 253857.193196097476175 ], [ 356024.579792792210355, 253857.55366276204586 ], [ 356025.333380707539618, 253857.799863420194015 ], [ 356026.116099998354912, 253857.925799999386072 ], [ 356034.947800002992153, 253862.431099999696016 ], [ 356058.611400000751019, 253829.694099999964237 ], [ 356060.830300003290176, 253826.210999999195337 ], [ 356062.333099998533726, 253823.852000001817942 ], [ 356059.170699998736382, 253823.122900001704693 ], [ 356054.423912372032646, 253822.134026625572005 ], [ 356049.585182145528961, 253821.823296642920468 ], [ 356044.750900000333786, 253822.196899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201010100", "MAP": "A9-508-T98", "PARCEL_NAM": "53", "ACRE": null, "LONGITUDE": -64.95894678000001, "LATITUDE": 18.31446115, "OBJECTID_1": 87345, "PARCEL_NO_": "509201010100", "Tax_Legal_": "53 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BLOSSER, ROBERT C. & MERCEDES", "Address": "14 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84200, "Improved_V": 385900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.36020260500001, "SHAPE_Area": 2917.69717532 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355809.765500001609325, 253886.552600000053644 ], [ 355820.954899996519089, 253898.254299998283386 ], [ 355829.061200000345707, 253893.254399999976158 ], [ 355848.28320000320673, 253908.610500000417233 ], [ 355876.576099999248981, 253900.398299999535084 ], [ 355889.629900000989437, 253882.562199998646975 ], [ 355896.132600001990795, 253876.493700001388788 ], [ 355906.731499999761581, 253862.859299998730421 ], [ 355906.024099998176098, 253851.243400000035763 ], [ 355901.222199998795986, 253846.982200000435114 ], [ 355893.965400002896786, 253846.922800000756979 ], [ 355849.422200001776218, 253869.567499998956919 ], [ 355834.863600000739098, 253874.725600000470877 ], [ 355817.893299996852875, 253879.01969999819994 ], [ 355809.765500001609325, 253886.552600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010300", "MAP": "D9-8217-T008", "PARCEL_NAM": "34-1", "ACRE": ".250", "LONGITUDE": -64.95408846, "LATITUDE": 18.31403753, "OBJECTID_1": 87363, "PARCEL_NO_": "509202010300", "Tax_Legal_": "34 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CARVALHO, KATHLEEN", "Address": "47 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113200, "Improved_V": 284800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.693367471, "SHAPE_Area": 982.77661238999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356356.348499998450279, 253826.697599999606609 ], [ 356350.975199997425079, 253830.2043999992311 ], [ 356364.25959999859333, 253846.525299999862909 ], [ 356389.663400001823902, 253852.960900001227856 ], [ 356402.82150000333786, 253835.809999998658895 ], [ 356397.882600001990795, 253832.456599999219179 ], [ 356391.747982615488581, 253828.862455960450461 ], [ 356385.388662553450558, 253825.682762547832681 ], [ 356378.832599997520447, 253822.931499999016523 ], [ 356374.222433364659082, 253822.649378989182878 ], [ 356369.609987070492934, 253822.891386902658269 ], [ 356365.054657389060594, 253823.654407308931695 ], [ 356360.615105081524234, 253824.928614495933289 ], [ 356356.348499998450279, 253826.697599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010400", "MAP": "D9-8681-T012", "PARCEL_NAM": "33", "ACRE": ".795", "LONGITUDE": -64.95390131000001, "LATITUDE": 18.31435977, "OBJECTID_1": 87364, "PARCEL_NO_": "509202010400", "Tax_Legal_": "33 WATER ISLAND (LA PROVIDENCE) NO.10 SOUTHSIDE QTR", "Name": "RAK, SCOTT D & ANGELIKI", "Address": "59 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 118200, "Improved_V": 328400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.584700443, "SHAPE_Area": 1942.3017001000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356395.067400000989437, 253900.842199999839067 ], [ 356417.943499997258186, 253890.067600000649691 ], [ 356413.625299997627735, 253848.331599999219179 ], [ 356413.112507879559416, 253846.237176134687616 ], [ 356412.312950989056844, 253844.234608817554545 ], [ 356411.242221562890336, 253842.362950307928259 ], [ 356409.92119999974966, 253840.658700000494719 ], [ 356402.82150000333786, 253835.809999998658895 ], [ 356389.663400001823902, 253852.960900001227856 ], [ 356369.446999996900558, 253879.312100000679493 ], [ 356368.532799996435642, 253891.970199998468161 ], [ 356373.377899996936321, 253891.165500000119209 ], [ 356377.414800003170967, 253890.565200001001358 ], [ 356383.852700002491474, 253892.095600001513958 ], [ 356387.058200001716614, 253894.443799998611212 ], [ 356390.240299999713898, 253899.536100000143051 ], [ 356395.067400000989437, 253900.842199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010600", "MAP": "A9-508-T98", "PARCEL_NAM": "30", "ACRE": null, "LONGITUDE": -64.95342978, "LATITUDE": 18.31392975, "OBJECTID_1": 87366, "PARCEL_NO_": "509202010600", "Tax_Legal_": "30 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "STUBBMAN, ROLAND & HELEN", "Address": "PO Box 269", "City": "Montauk", "State": "New York", "Zip": 11954, "Country": "United States", "Land_Value": 131400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.623643109, "SHAPE_Area": 3035.7424747599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356481.54450000077486, 253834.049800001084805 ], [ 356483.701700001955032, 253813.963799998164177 ], [ 356454.73200000077486, 253806.971700001507998 ], [ 356439.457000002264977, 253801.569299999624491 ], [ 356416.962999999523163, 253791.674899999052286 ], [ 356410.357799999415874, 253809.774900000542402 ], [ 356411.824799999594688, 253826.885499998927116 ], [ 356412.784599997103214, 253838.080699998885393 ], [ 356418.562643375829794, 253840.11198924438213 ], [ 356424.473300002515316, 253841.717000000178814 ], [ 356430.422080543474294, 253842.703107099456247 ], [ 356436.44163408089662, 253843.0571866754035 ], [ 356442.465000003576279, 253842.775299999862909 ], [ 356447.772709089273121, 253843.408962382847676 ], [ 356452.992891627072822, 253844.559178895520745 ], [ 356458.075400002300739, 253846.214899998158216 ], [ 356463.454026590974536, 253849.685257247590926 ], [ 356468.394199997186661, 253853.75560000166297 ], [ 356469.316425821685698, 253855.772944120573811 ], [ 356470.573901924188249, 253857.600218488834798 ], [ 356472.12867044477025, 253859.182265458104666 ], [ 356473.933799528458621, 253860.47132975308341 ], [ 356475.934799998998642, 253861.42850000038743 ], [ 356476.924216394487303, 253861.538293146470096 ], [ 356477.918095343338791, 253861.481689493230078 ], [ 356478.888648524007294, 253861.2602716483525 ], [ 356479.808739790867548, 253860.880230335897068 ], [ 356480.652643886336591, 253860.352191306796158 ], [ 356481.396765705139842, 253859.690918248699745 ], [ 356482.020300000905991, 253858.914900001138449 ], [ 356481.420761699031573, 253846.489270041813143 ], [ 356481.54450000077486, 253834.049800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202020100", "MAP": null, "PARCEL_NAM": "29", "ACRE": null, "LONGITUDE": -64.95253652, "LATITUDE": 18.31381114, "OBJECTID_1": 87374, "PARCEL_NO_": "509202020100", "Tax_Legal_": "29 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "KNOPF, MARK", "Address": "39 WATER ISLAND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 291800, "Improved_V": 592600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.19276319, "SHAPE_Area": 4324.5488281600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356586.292199999094009, 253792.638599999248981 ], [ 356492.785099998116493, 253788.918000001460314 ], [ 356489.997500002384186, 253832.169399999082088 ], [ 356595.601099997758865, 253835.777899999171495 ], [ 356594.812799997627735, 253833.660500001162291 ], [ 356594.917099997401237, 253821.417899999767542 ], [ 356592.543099999427795, 253816.121199999004602 ], [ 356593.370999999344349, 253813.594799999147654 ], [ 356588.606799997389317, 253804.901000000536442 ], [ 356587.861699998378754, 253797.717700000852346 ], [ 356586.272399999201298, 253794.960499998182058 ], [ 356586.292199999094009, 253792.638599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95703692, "LATITUDE": 18.31379796, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.000608852, "SHAPE_Area": 606.05227342700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356084.037500001490116, 253805.239700000733137 ], [ 356078.679990382981487, 253804.198937915673014 ], [ 356073.457980302337091, 253802.612525060365442 ], [ 356068.42688658030238, 253800.497296706191264 ], [ 356063.640100002288818, 253797.875700000673532 ], [ 356062.947202524868771, 253796.633846282289596 ], [ 356062.415925767447334, 253795.314735756546725 ], [ 356062.054700002074242, 253793.939300000667572 ], [ 356062.696400001645088, 253789.441199999302626 ], [ 356047.558600001037121, 253801.950399998575449 ], [ 356045.564599998295307, 253803.598200000822544 ], [ 356046.33839999884367, 253804.813700001686811 ], [ 356047.153911280271132, 253806.623345520609291 ], [ 356048.243262593343388, 253808.282619238540065 ], [ 356049.57946812803857, 253809.750417018658482 ], [ 356051.129426911007613, 253810.990378036309266 ], [ 356052.85474279517075, 253811.971785522648133 ], [ 356054.712675622897223, 253812.670327691652346 ], [ 356056.657200001180172, 253813.06870000064373 ], [ 356079.437799997627735, 253822.355599999427795 ], [ 356085.171700000762939, 253806.896099999547005 ], [ 356085.271907974034548, 253806.748146024678135 ], [ 356085.3455069194315, 253806.585311102680862 ], [ 356085.39035450539086, 253806.412335062079364 ], [ 356085.405145300261211, 253806.234252920985455 ], [ 356085.389448770903982, 253806.056248326814966 ], [ 356085.34372181474464, 253805.883502669661539 ], [ 356085.269295460369904, 253805.721044261561474 ], [ 356085.168336123577319, 253805.573601971496828 ], [ 356085.043782547232695, 253805.445467576413648 ], [ 356084.899260259408038, 253805.34037083570729 ], [ 356084.738976041204296, 253805.261370924359653 ], [ 356084.567595474887639, 253805.210767386219231 ], [ 356084.390107137151062, 253805.190033198246965 ], [ 356084.211677390849218, 253805.199771895015147 ], [ 356084.037500001490116, 253805.239700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010700", "MAP": "D9-8609-T011", "PARCEL_NAM": "31", "ACRE": ".73", "LONGITUDE": -64.95405468, "LATITUDE": 18.31371017, "OBJECTID_1": 87367, "PARCEL_NO_": "509202010700", "Tax_Legal_": "31 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SEGUNDA VIDA LIVING TRUST-VI", "Address": "92 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8027805, "Country": "United States", "Land_Value": 133400, "Improved_V": 359900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.876734325, "SHAPE_Area": 2853.8348547300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356411.824799999594688, 253826.885499998927116 ], [ 356410.357799999415874, 253809.774900000542402 ], [ 356416.962999999523163, 253791.674899999052286 ], [ 356395.284199997782707, 253780.731699999421835 ], [ 356364.741499997675419, 253769.082699999213219 ], [ 356347.666900001466274, 253785.619300000369549 ], [ 356350.571999996900558, 253823.217799998819828 ], [ 356350.695500001311302, 253824.815600000321865 ], [ 356362.296099998056889, 253819.095100000500679 ], [ 356367.531566408055369, 253817.679017401998863 ], [ 356372.913993116817437, 253817.012023263756419 ], [ 356378.336752090777736, 253817.107331007311586 ], [ 356383.69241629797034, 253817.963052548060659 ], [ 356388.874887880752794, 253819.562235698773293 ], [ 356393.781499996781349, 253821.873199999332428 ], [ 356396.161044997046702, 253825.864140143967234 ], [ 356399.091437642986421, 253829.47005702968454 ], [ 356402.511371862667147, 253832.615512096817838 ], [ 356406.349299997091293, 253835.234700001776218 ], [ 356412.784599997103214, 253838.080699998885393 ], [ 356411.824799999594688, 253826.885499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.95680232, "LATITUDE": 18.31362748, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.820193543, "SHAPE_Area": 628.23756140299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356090.709100000560284, 253771.952399998903275 ], [ 356088.910999998450279, 253771.978999998420477 ], [ 356085.121143503929488, 253771.262030960322591 ], [ 356081.264569580322132, 253771.199625653913245 ], [ 356077.453500002622604, 253771.793600000441074 ], [ 356077.450800001621246, 253771.794399999082088 ], [ 356078.419600002467632, 253776.238499999046326 ], [ 356083.075900003314018, 253797.597100000828505 ], [ 356083.847999997437, 253801.614199999719858 ], [ 356099.117600001394749, 253807.64979999884963 ], [ 356104.765399999916553, 253807.273800000548363 ], [ 356096.163900002837181, 253775.750500001013279 ], [ 356095.193099997937679, 253772.192600000649691 ], [ 356090.709100000560284, 253771.952399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.95663921000001, "LATITUDE": 18.31362993, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.28133087800001, "SHAPE_Area": 552.25731996699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356112.291900001466274, 253775.671399999409914 ], [ 356111.336000002920628, 253772.481699999421835 ], [ 356103.262535746325739, 253772.449622856423957 ], [ 356095.193099997937679, 253772.192600000649691 ], [ 356096.163900002837181, 253775.750500001013279 ], [ 356104.765399999916553, 253807.273800000548363 ], [ 356120.916799999773502, 253804.450699999928474 ], [ 356112.291900001466274, 253775.671399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202011000", "MAP": "D9-8615-T011", "PARCEL_NAM": "27-A", "ACRE": ".046", "LONGITUDE": -64.95324716, "LATITUDE": 18.31320195, "OBJECTID_1": 87370, "PARCEL_NO_": "509202011000", "Tax_Legal_": "23&27A WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "LUNDIN FAMILY TRUST", "Address": "3301 S Tim Trl", "City": "Sioux Falls", "State": "South Dakota", "Zip": 57110, "Country": "United States", "Land_Value": 107400, "Improved_V": 328000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.483147888900007, "SHAPE_Area": 325.72550055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356450.839500002563, 253732.248700000345707 ], [ 356449.04839999973774, 253740.975099999457598 ], [ 356484.490199998021126, 253757.942699998617172 ], [ 356483.458200000226498, 253747.889499999582767 ], [ 356450.839500002563, 253732.248700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": null, "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.95712055, "LATITUDE": 18.31354594, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.55859638299999, "SHAPE_Area": 703.17818972800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356067.803800001740456, 253756.660399999469519 ], [ 356064.039099998772144, 253760.499899998307228 ], [ 356042.889700002968311, 253782.069400001317263 ], [ 356040.7550999969244, 253784.246399998664856 ], [ 356042.146295179962181, 253789.941832791402703 ], [ 356043.32209999859333, 253795.685600001364946 ], [ 356043.628570019092876, 253798.435081961913966 ], [ 356044.382913423643913, 253801.096762061526533 ], [ 356045.564599998295307, 253803.598200000822544 ], [ 356047.558600001037121, 253801.950399998575449 ], [ 356062.696400001645088, 253789.441199999302626 ], [ 356063.483400002121925, 253783.223700001835823 ], [ 356065.382740305387415, 253779.179920503724134 ], [ 356067.693021081504412, 253775.356015568686416 ], [ 356070.38910000026226, 253771.793600000441074 ], [ 356073.784674696275033, 253768.345776975009358 ], [ 356077.532799996435642, 253765.28489999845624 ], [ 356077.535224632418249, 253764.952734567574225 ], [ 356077.482226086838637, 253764.624815512739588 ], [ 356077.375288437993731, 253764.310325303667923 ], [ 356077.217406180105172, 253764.018070372199873 ], [ 356077.013000370759983, 253763.756234512431547 ], [ 356076.767794831539504, 253763.532149716251297 ], [ 356076.488655867986381, 253763.352090861008037 ], [ 356076.183399997651577, 253763.221099998801947 ], [ 356067.803800001740456, 253756.660399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "D9-8957-T015", "PARCEL_NAM": "13", "ACRE": ".113", "LONGITUDE": -64.95621212, "LATITUDE": 18.31356597, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.635174392099998, "SHAPE_Area": 539.24045256399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356159.104800000786781, 253770.566100001335144 ], [ 356158.173000000417233, 253766.641800001263618 ], [ 356157.913400001823902, 253766.660700000822544 ], [ 356149.226464410254266, 253767.213630226062378 ], [ 356140.577299997210503, 253768.19370000064373 ], [ 356141.360500000417233, 253771.054099999368191 ], [ 356149.180900000035763, 253799.615800000727177 ], [ 356165.332299999892712, 253796.792599998414516 ], [ 356159.104800000786781, 253770.566100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.9569556, "LATITUDE": 18.31361766, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.991504689199999, "SHAPE_Area": 326.45273979400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356078.419600002467632, 253776.238499999046326 ], [ 356077.450800001621246, 253771.794399999082088 ], [ 356075.321497574448586, 253772.570452593558002 ], [ 356073.347475936985575, 253773.683747267408762 ], [ 356071.58171364053851, 253775.10440555436071 ], [ 356070.071599997580051, 253776.794300001114607 ], [ 356068.546491602610331, 253779.594298937649 ], [ 356067.41683742008172, 253782.575880915246671 ], [ 356066.703678995138034, 253785.683509387570666 ], [ 356066.420299999415874, 253788.859299998730421 ], [ 356066.147000238939654, 253789.97168541001156 ], [ 356066.047076383663807, 253791.112785443052417 ], [ 356066.12288041569991, 253792.255741177534219 ], [ 356066.372628079145215, 253793.373650014109444 ], [ 356066.790440877433866, 253794.440198900876567 ], [ 356067.366484439990018, 253795.430283683264861 ], [ 356068.087200000882149, 253796.320599999278784 ], [ 356083.847999997437, 253801.614199999719858 ], [ 356083.075900003314018, 253797.597100000828505 ], [ 356078.419600002467632, 253776.238499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "14", "ACRE": null, "LONGITUDE": -64.95606096, "LATITUDE": 18.31354739, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.171486517000005, "SHAPE_Area": 457.42637557799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356174.439099997282028, 253769.00279999896884 ], [ 356173.604900002479553, 253765.103000000119209 ], [ 356165.898985104111489, 253765.973037316143746 ], [ 356158.173000000417233, 253766.641800001263618 ], [ 356159.104800000786781, 253770.566100001335144 ], [ 356165.332299999892712, 253796.792599998414516 ], [ 356179.867499999701977, 253794.378499999642372 ], [ 356174.439099997282028, 253769.00279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "D9-8956-T015", "PARCEL_NAM": "15", "ACRE": ".102", "LONGITUDE": -64.95592698, "LATITUDE": 18.31353075, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.073132598599997, "SHAPE_Area": 395.62075889599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356187.352700002491474, 253767.630899999290705 ], [ 356186.285800002515316, 253763.473900001496077 ], [ 356182.2550999969244, 253763.882599998265505 ], [ 356173.604900002479553, 253765.103000000119209 ], [ 356174.439099997282028, 253769.00279999896884 ], [ 356179.867499999701977, 253794.378499999642372 ], [ 356193.596400000154972, 253791.957699999213219 ], [ 356187.352700002491474, 253767.630899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "16", "ACRE": null, "LONGITUDE": -64.95577382, "LATITUDE": 18.3135104, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.149304419800004, "SHAPE_Area": 550.04750120400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356205.917700000107288, 253765.460799999535084 ], [ 356204.860399998724461, 253762.3597999997437 ], [ 356195.563688617257867, 253762.759940673451638 ], [ 356186.285800002515316, 253763.473900001496077 ], [ 356187.352700002491474, 253767.630899999290705 ], [ 356193.596400000154972, 253791.957699999213219 ], [ 356213.784800000488758, 253788.534400001168251 ], [ 356205.917700000107288, 253765.460799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202020200", "MAP": "D9-6811-T000", "PARCEL_NAM": "28", "ACRE": "1.063", "LONGITUDE": -64.95254483, "LATITUDE": 18.31332468, "OBJECTID_1": 87375, "PARCEL_NO_": "509202020200", "Tax_Legal_": "28 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "RAMPINO, STEVAN & AGNES", "Address": "68 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 191000, "Improved_V": 506100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.18301593000001, "SHAPE_Area": 5962.2760285699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356590.865000002086163, 253729.136900000274181 ], [ 356489.276799999177456, 253727.461100000888109 ], [ 356491.490800000727177, 253751.5439000017941 ], [ 356497.143899999558926, 253750.534699998795986 ], [ 356497.898100003600121, 253756.662500001490116 ], [ 356494.676500000059605, 253756.214000001549721 ], [ 356492.246699996292591, 253757.460700001567602 ], [ 356492.914599999785423, 253773.720300000160933 ], [ 356494.514600001275539, 253775.211100000888109 ], [ 356496.125399999320507, 253775.435400001704693 ], [ 356500.178599998354912, 253772.935400001704693 ], [ 356499.303900003433228, 253780.949799999594688 ], [ 356493.641800001263618, 253783.014400001615286 ], [ 356492.785099998116493, 253788.918000001460314 ], [ 356586.292199999094009, 253792.638599999248981 ], [ 356585.534400001168251, 253786.932900000363588 ], [ 356586.365900002419949, 253783.984400000423193 ], [ 356586.490000002086163, 253769.420000001788139 ], [ 356589.69370000064373, 253771.979299999773502 ], [ 356592.908100001513958, 253773.272199999541044 ], [ 356595.40259999781847, 253764.426699999719858 ], [ 356587.355599999427795, 253762.460999999195337 ], [ 356587.377199999988079, 253759.927999999374151 ], [ 356589.004199996590614, 253758.252599999308586 ], [ 356584.997800000011921, 253755.264499999582767 ], [ 356583.399599999189377, 253753.562600001692772 ], [ 356583.431999996304512, 253749.763199999928474 ], [ 356588.284199997782707, 253748.114199999719858 ], [ 356591.534699998795986, 253745.185499999672174 ], [ 356590.805699996650219, 253736.10249999910593 ], [ 356589.2128000035882, 253733.767400000244379 ], [ 356589.232600003480911, 253731.445599999278784 ], [ 356590.865000002086163, 253729.136900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95720621, "LATITUDE": 18.31338617, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.79535615499999, "SHAPE_Area": 689.91728091899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356042.210900001227856, 253745.837999999523163 ], [ 356041.254107316141017, 253749.939158170396695 ], [ 356039.708452495338861, 253753.856542726396583 ], [ 356037.607100002467632, 253757.506099998950958 ], [ 356036.517079558514524, 253758.935954731685342 ], [ 356035.640074508730322, 253760.505506026674993 ], [ 356034.993689551425632, 253762.183247249835404 ], [ 356034.590899996459484, 253763.935499999672174 ], [ 356034.405806710419711, 253765.110982976271771 ], [ 356034.397559373639524, 253766.300920678098919 ], [ 356034.566341355326585, 253767.478856328059919 ], [ 356034.908399999141693, 253768.618599999696016 ], [ 356037.359787893830799, 253774.153038764256053 ], [ 356039.512100003659725, 253779.810499999672174 ], [ 356040.7550999969244, 253784.246399998664856 ], [ 356042.889700002968311, 253782.069400001317263 ], [ 356064.039099998772144, 253760.499899998307228 ], [ 356067.803800001740456, 253756.660399999469519 ], [ 356062.610299997031689, 253753.061099998652935 ], [ 356058.546456048672553, 253750.337988344079349 ], [ 356054.247871844330803, 253748.00296402774984 ], [ 356049.751500003039837, 253746.076099999248981 ], [ 356046.929087239201181, 253744.954798375198152 ], [ 356043.957099996507168, 253744.329799998551607 ], [ 356043.733035520359408, 253744.280004251282662 ], [ 356043.503784442262258, 253744.268670712597668 ], [ 356043.275901017012075, 253744.296123406704282 ], [ 356043.055900398467202, 253744.361577465082519 ], [ 356042.850072372180875, 253744.463161565770861 ], [ 356042.664301531389356, 253744.597971434151987 ], [ 356042.503899037197698, 253744.762152875802713 ], [ 356042.373450773593504, 253744.951011967292288 ], [ 356042.276686237310059, 253745.159149254759541 ], [ 356042.216371912276372, 253745.380614123569103 ], [ 356042.194232176349033, 253745.609074925479945 ], [ 356042.210900001227856, 253745.837999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "D9-8735-T013", "PARCEL_NAM": "20", "ACRE": ".150", "LONGITUDE": -64.95667932000001, "LATITUDE": 18.31328947, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.728245118, "SHAPE_Area": 613.045397213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356112.612000003457069, 253738.099300000816584 ], [ 356094.930699996650219, 253731.199599999934435 ], [ 356095.39919999986887, 253768.092799998819828 ], [ 356103.575765738729388, 253768.238354157074355 ], [ 356111.743500001728535, 253767.831500001251698 ], [ 356114.616400003433228, 253767.645899999886751 ], [ 356112.612000003457069, 253738.099300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "22", "ACRE": null, "LONGITUDE": -64.95649802, "LATITUDE": 18.31329316, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.259979726200001, "SHAPE_Area": 562.84055063699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356133.308899998664856, 253765.196600001305342 ], [ 356132.775200001895428, 253737.631099998950958 ], [ 356112.612000003457069, 253738.099300000816584 ], [ 356114.616400003433228, 253767.645899999886751 ], [ 356124.713500000536442, 253767.0320999994874 ], [ 356133.308899998664856, 253765.196600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "19", "ACRE": null, "LONGITUDE": -64.95683683, "LATITUDE": 18.31325255, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.06098971199999, "SHAPE_Area": 580.70314373500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356094.930699996650219, 253731.199599999934435 ], [ 356080.463799998164177, 253725.592799998819828 ], [ 356078.761699996888638, 253760.206599999219179 ], [ 356078.748999997973442, 253760.464800000190735 ], [ 356088.662299998104572, 253766.993000000715256 ], [ 356090.564003805164248, 253767.597481168340892 ], [ 356092.534699998795986, 253767.910900000482798 ], [ 356095.39919999986887, 253768.092799998819828 ], [ 356094.930699996650219, 253731.199599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "D9-8750-T013", "PARCEL_NAM": "23", "ACRE": ".12", "LONGITUDE": -64.95632216, "LATITUDE": 18.31327845, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.068599695000003, "SHAPE_Area": 471.46451695500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356151.041799999773502, 253763.006799999624491 ], [ 356150.519500002264977, 253737.14299999922514 ], [ 356132.775200001895428, 253737.631099998950958 ], [ 356133.308899998664856, 253765.196600001305342 ], [ 356142.143224324740004, 253763.841547761869151 ], [ 356151.041799999773502, 253763.006799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "18", "ACRE": null, "LONGITUDE": -64.95699276000001, "LATITUDE": 18.31317293, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.89608056, "SHAPE_Area": 584.94784652700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356080.463799998164177, 253725.592799998819828 ], [ 356062.782499998807907, 253718.69310000166297 ], [ 356061.125900000333786, 253748.120999999344349 ], [ 356063.00858935166616, 253749.391301488794852 ], [ 356064.7533999979496, 253750.845199998468161 ], [ 356073.067199997603893, 253756.508699998259544 ], [ 356078.748999997973442, 253760.464800000190735 ], [ 356078.761699996888638, 253760.206599999219179 ], [ 356080.463799998164177, 253725.592799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.95616339, "LATITUDE": 18.3132702, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.496174184400004, "SHAPE_Area": 402.24153992100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356167.129100002348423, 253761.992400001734495 ], [ 356165.843000002205372, 253736.846200000494719 ], [ 356150.519500002264977, 253737.14299999922514 ], [ 356151.041799999773502, 253763.006799999624491 ], [ 356156.590499997138977, 253762.751499999314547 ], [ 356167.129100002348423, 253761.992400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "D9-8758-T013", "PARCEL_NAM": "25", "ACRE": ".09", "LONGITUDE": -64.95601519, "LATITUDE": 18.31325888, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.5337858587, "SHAPE_Area": 387.18420456400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356182.514700002968311, 253760.043099999427795 ], [ 356181.9746999964118, 253736.344999998807907 ], [ 356165.843000002205372, 253736.846200000494719 ], [ 356167.129100002348423, 253761.992400001734495 ], [ 356180.323700003325939, 253760.370200000703335 ], [ 356182.514700002968311, 253760.043099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "26", "ACRE": null, "LONGITUDE": -64.95586443000001, "LATITUDE": 18.31324694, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.413727200899999, "SHAPE_Area": 370.59839572700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356198.65089999884367, 253758.159200001507998 ], [ 356198.106299996376038, 253735.843699999153614 ], [ 356181.9746999964118, 253736.344999998807907 ], [ 356182.514700002968311, 253760.043099999427795 ], [ 356190.569547838531435, 253758.987641033687396 ], [ 356198.65089999884367, 253758.159200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "27", "ACRE": null, "LONGITUDE": -64.95571214, "LATITUDE": 18.31323963, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.018721383499994, "SHAPE_Area": 355.48662497100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356214.038400001823902, 253758.772199999541044 ], [ 356214.236199997365475, 253735.553599998354912 ], [ 356198.106299996376038, 253735.843699999153614 ], [ 356198.65089999884367, 253758.159200001507998 ], [ 356206.200000002980232, 253757.592099998146296 ], [ 356206.16780000180006, 253758.489900000393391 ], [ 356214.038400001823902, 253758.772199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "17", "ACRE": null, "LONGITUDE": -64.95716926, "LATITUDE": 18.31310677, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.150473308499997, "SHAPE_Area": 522.70001934699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356062.782499998807907, 253718.69310000166297 ], [ 356041.827399998903275, 253717.466099999845028 ], [ 356041.655299998819828, 253727.111999999731779 ], [ 356042.369599997997284, 253736.081399999558926 ], [ 356042.20240152993938, 253736.689971039886586 ], [ 356042.13475986517733, 253737.317457011056831 ], [ 356042.168418940971605, 253737.9476800711127 ], [ 356042.302510959038045, 253738.564391810534289 ], [ 356042.533578759350348, 253739.151692168525187 ], [ 356042.855664952250663, 253739.694439368555322 ], [ 356043.260465512343217, 253740.178640303493012 ], [ 356043.737543872382957, 253740.591811305872397 ], [ 356044.274599999189377, 253740.923300001770258 ], [ 356054.831500001251698, 253745.527100000530481 ], [ 356058.077527167450171, 253746.584234387089964 ], [ 356061.125900000333786, 253748.120999999344349 ], [ 356062.782499998807907, 253718.69310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202011000", "MAP": "D9-8877-T014", "PARCEL_NAM": "23", "ACRE": ".84", "LONGITUDE": -64.95353834, "LATITUDE": 18.312778, "OBJECTID_1": 87370, "PARCEL_NO_": "509202011000", "Tax_Legal_": "23&27A WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "LUNDIN FAMILY TRUST", "Address": "3301 S Tim Trl", "City": "Sioux Falls", "State": "South Dakota", "Zip": 57110, "Country": "United States", "Land_Value": 107400, "Improved_V": 328000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.86147907499998, "SHAPE_Area": 4419.9425259099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356420.014899998903275, 253717.394999999552965 ], [ 356436.879100002348423, 253725.55460000038147 ], [ 356483.458200000226498, 253747.889499999582767 ], [ 356481.260499998927116, 253721.907000001519918 ], [ 356478.117899999022484, 253712.171000000089407 ], [ 356473.343000002205372, 253704.743599999696016 ], [ 356446.954000003635883, 253678.774300001561642 ], [ 356437.380800001323223, 253666.663600001484156 ], [ 356433.408600002527237, 253659.66499999910593 ], [ 356415.838699996471405, 253639.678399998694658 ], [ 356411.818000003695488, 253638.378899998962879 ], [ 356409.379199996590614, 253640.681000001728535 ], [ 356410.167599998414516, 253642.79839999973774 ], [ 356408.411100000143051, 253659.671500001102686 ], [ 356405.067199997603893, 253673.576299998909235 ], [ 356396.842200003564358, 253692.507399998605251 ], [ 356389.497299998998642, 253702.790800001472235 ], [ 356420.014899998903275, 253717.394999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202030300", "MAP": "D9-8692-T012", "PARCEL_NAM": "19", "ACRE": "1.408", "LONGITUDE": -64.95397849, "LATITUDE": 18.31090986, "OBJECTID_1": 87390, "PARCEL_NO_": "509202030300", "Tax_Legal_": "19 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BBK DEVELOPMENT LLC", "Address": "4623 Oak Hollow Dr", "City": "Sarasota", "State": "Florida", "Zip": 34241, "Country": "United States", "Land_Value": 295100, "Improved_V": 6100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.93324266500002, "SHAPE_Area": 5252.7709141200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356382.789300002157688, 253449.001499999314547 ], [ 356383.563199996948242, 253452.807500001043081 ], [ 356348.047700002789497, 253456.949799999594688 ], [ 356352.644599996507168, 253485.274000000208616 ], [ 356359.633500002324581, 253516.784099999815226 ], [ 356360.400200001895428, 253521.434399999678135 ], [ 356360.362499997019768, 253525.86710000038147 ], [ 356362.761600002646446, 253528.208799999207258 ], [ 356374.07880000025034, 253524.923900000751019 ], [ 356378.922100000083447, 253524.330200001597404 ], [ 356385.372599996626377, 253524.383000001311302 ], [ 356399.864600002765656, 253527.034800000488758 ], [ 356410.350299999117851, 253526.698399998247623 ], [ 356423.276399999856949, 253523.848900001496077 ], [ 356427.338600002229214, 253520.293499998748302 ], [ 356438.070600003004074, 253491.03940000012517 ], [ 356437.29839999973774, 253487.022300001233816 ], [ 356430.865900002419949, 253484.85869999974966 ], [ 356431.718999996781349, 253479.377199999988079 ], [ 356439.773100003600121, 253480.498599998652935 ], [ 356441.443300001323223, 253473.75730000063777 ], [ 356439.839599996805191, 253472.688700001686811 ], [ 356427.752199999988079, 253471.745400000363588 ], [ 356417.295299999415874, 253468.704500000923872 ], [ 356404.45719999819994, 253461.211199998855591 ], [ 356398.060599997639656, 253454.8260000012815 ], [ 356382.789300002157688, 253449.001499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202030300", "MAP": "D9-8692-T012", "PARCEL_NAM": "19", "ACRE": "1.001", "LONGITUDE": -64.95374806, "LATITUDE": 18.31026142, "OBJECTID_1": 87390, "PARCEL_NO_": "509202030300", "Tax_Legal_": "19 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BBK DEVELOPMENT LLC", "Address": "4623 Oak Hollow Dr", "City": "Sarasota", "State": "Florida", "Zip": 34241, "Country": "United States", "Land_Value": 295100, "Improved_V": 6100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.62853878700002, "SHAPE_Area": 4541.8971533800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356439.837099999189377, 253378.329900000244379 ], [ 356373.631399996578693, 253388.131599999964237 ], [ 356379.138899996876717, 253404.219799999147654 ], [ 356379.122699998319149, 253406.119500000029802 ], [ 356383.066200003027916, 253416.495299998670816 ], [ 356386.23030000180006, 253423.698399998247623 ], [ 356390.211499996483326, 253429.641600001603365 ], [ 356393.370200000703335, 253437.477899998426437 ], [ 356397.353200003504753, 253443.210099998861551 ], [ 356399.734399996697903, 253447.662500001490116 ], [ 356406.125600002706051, 253454.680900000035763 ], [ 356418.958200000226498, 253462.807500001043081 ], [ 356435.055699996650219, 253466.316799998283386 ], [ 356439.891800001263618, 253466.567400000989437 ], [ 356443.129600003361702, 253465.116300001740456 ], [ 356445.739200003445148, 253442.761700000613928 ], [ 356446.788199998438358, 253414.272700000554323 ], [ 356444.500600002706051, 253398.844099998474121 ], [ 356439.837099999189377, 253378.329900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030200", "MAP": "A9-508-T98", "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.95994875, "LATITUDE": 18.30974412, "OBJECTID_1": 87350, "PARCEL_NO_": "509201030200", "Tax_Legal_": "1 WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "DONOVAN AUBAIN, JENNIFER", "Address": "28546 Lockeridge Springs Dr", "City": "Spring", "State": "Texas", "Zip": 77386, "Country": "United States", "Land_Value": 212400, "Improved_V": 83400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.10507568899999, "SHAPE_Area": 3855.7081466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355793.591700002551079, 253324.06700000166893 ], [ 355727.423699997365475, 253329.436000000685453 ], [ 355736.275200001895428, 253331.61939999833703 ], [ 355738.668999999761581, 253334.594300001859665 ], [ 355736.993400000035763, 253341.968899998813868 ], [ 355732.952799998223782, 253342.991300001740456 ], [ 355729.729400001466274, 253342.753800000995398 ], [ 355728.149099998176098, 253338.941199999302626 ], [ 355725.735600002110004, 253338.288100000470877 ], [ 355723.305900000035763, 253339.534800000488758 ], [ 355720.859899997711182, 253342.681200001388788 ], [ 355720.006899997591972, 253348.162599999457598 ], [ 355720.796999998390675, 253350.068999998271465 ], [ 355724.015100002288818, 253350.939699999988079 ], [ 355723.133199997246265, 253359.79839999973774 ], [ 355726.327899999916553, 253363.413100000470877 ], [ 355730.346900001168251, 253364.923700001090765 ], [ 355732.749600000679493, 253366.843199998140335 ], [ 355735.902999997138977, 253375.312699999660254 ], [ 355734.268799997866154, 253377.832499999552965 ], [ 355734.245399996638298, 253380.576499998569489 ], [ 355735.84179999679327, 253382.489399999380112 ], [ 355740.686899997293949, 253381.68470000103116 ], [ 355743.094999998807907, 253382.971000000834465 ], [ 355745.45099999755621, 253390.378499999642372 ], [ 355750.249399997293949, 253395.061799999326468 ], [ 355748.60980000346899, 253398.214800000190735 ], [ 355768.852099999785423, 253388.459100000560284 ], [ 355796.410599999129772, 253371.797200001776218 ], [ 355793.591700002551079, 253324.06700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202030800", "MAP": "D9-7559-T005", "PARCEL_NAM": "16A", "ACRE": ".016", "LONGITUDE": -64.95437294, "LATITUDE": 18.30890066, "OBJECTID_1": 87393, "PARCEL_NO_": "509202030800", "Tax_Legal_": "16&16A WATER ISLAND No. 10 SOUTHSIDE QUARTER", "Name": "DAVID L ROSELLE REVOCABLE TRUST", "Address": "11 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101000, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.503729802899997, "SHAPE_Area": 131.749346688 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356347.540899999439716, 253274.670699998736382 ], [ 356362.345600001513958, 253271.390099998563528 ], [ 356360.923900000751019, 253270.659600000828505 ], [ 356348.924500003457069, 253259.373399998992682 ], [ 356345.695600003004074, 253259.769200000911951 ], [ 356347.540899999439716, 253274.670699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030400", "MAP": "D9-8977-T015", "PARCEL_NAM": "3 REM", "ACRE": "1.40", "LONGITUDE": -64.95947265, "LATITUDE": 18.3088192, "OBJECTID_1": 87352, "PARCEL_NO_": "509201030400", "Tax_Legal_": "3 REM WATER ISLAND No. 10 SOUTHSIDE QUARTER", "Name": "GOULD, GLENN D. & ALLEN F. & JULIA GUASTUCCI", "Address": "11 Chestnut Rd", "City": "Tyngsboro", "State": "Massachusetts", "Zip": 1879, "Country": "United States", "Land_Value": 280100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.140556258, "SHAPE_Area": 5796.2374148400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355773.01240000128746, 253278.724599998444319 ], [ 355822.693499997258186, 253298.746399998664856 ], [ 355865.840800002217293, 253267.451900001615286 ], [ 355838.85419999808073, 253216.990800000727177 ], [ 355766.241099998354912, 253221.673799999058247 ], [ 355765.353900000452995, 253231.165800001472235 ], [ 355766.953900001943111, 253232.656500000506639 ], [ 355768.505400002002716, 253239.846400000154972 ], [ 355769.119300000369549, 253262.438400000333786 ], [ 355774.707699999213219, 253269.028099998831749 ], [ 355776.277199998497963, 253274.107200000435114 ], [ 355773.01240000128746, 253278.724599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202030800", "MAP": "A9-508-T98", "PARCEL_NAM": "16", "ACRE": null, "LONGITUDE": -64.95458737, "LATITUDE": 18.30917568, "OBJECTID_1": 87393, "PARCEL_NO_": "509202030800", "Tax_Legal_": "16&16A WATER ISLAND No. 10 SOUTHSIDE QUARTER", "Name": "DAVID L ROSELLE REVOCABLE TRUST", "Address": "11 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101000, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.591114514, "SHAPE_Area": 2325.2879974399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356329.691699996590614, 253245.2837999984622 ], [ 356324.630800001323223, 253271.418000001460314 ], [ 356300.983400002121925, 253302.255199998617172 ], [ 356311.319799996912479, 253319.438400000333786 ], [ 356313.677599996328354, 253326.634899999946356 ], [ 356352.330300003290176, 253332.861800000071526 ], [ 356352.360799998044968, 253329.273499999195337 ], [ 356346.871299996972084, 253311.074499998241663 ], [ 356342.258199997246265, 253284.650100000202656 ], [ 356340.078400000929832, 253256.556800000369549 ], [ 356337.702600002288818, 253251.471099998801947 ], [ 356329.691699996590614, 253245.2837999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202030900", "MAP": "D9-8267-T009", "PARCEL_NAM": "15", "ACRE": ".727", "LONGITUDE": -64.95490623000001, "LATITUDE": 18.30885255, "OBJECTID_1": 87394, "PARCEL_NO_": "509202030900", "Tax_Legal_": "15 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "FRED JULE NORTHUP JOINT REVOC LIVING TRUST", "Address": "532 Crowfields Ln", "City": "Asheville", "State": "North Carolina", "Zip": 28803, "Country": "United States", "Land_Value": 99700, "Improved_V": 316600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.169329726, "SHAPE_Area": 3100.7509667 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356270.098300002515316, 253236.141199998557568 ], [ 356257.687100000679493, 253273.192099999636412 ], [ 356269.756599999964237, 253276.246199999004602 ], [ 356281.79559999704361, 253282.888599999248981 ], [ 356290.598499998450279, 253290.771200001239777 ], [ 356300.983400002121925, 253302.255199998617172 ], [ 356324.630800001323223, 253271.418000001460314 ], [ 356329.691699996590614, 253245.2837999984622 ], [ 356320.064499996602535, 253239.505499999970198 ], [ 356306.394900001585484, 253234.960700001567602 ], [ 356288.668600000441074, 253233.337900001555681 ], [ 356281.406400002539158, 253233.911800000816584 ], [ 356278.125399999320507, 253240.428800001740456 ], [ 356270.098300002515316, 253236.141199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202030800", "MAP": "D9-7559-T005", "PARCEL_NAM": "16", "ACRE": ".67", "LONGITUDE": -64.95420009, "LATITUDE": 18.30868246, "OBJECTID_1": 87393, "PARCEL_NO_": "509202030800", "Tax_Legal_": "16&16A WATER ISLAND No. 10 SOUTHSIDE QUARTER", "Name": "DAVID L ROSELLE REVOCABLE TRUST", "Address": "11 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101000, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.009485708, "SHAPE_Area": 2707.31687749 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356355.815499998629093, 253207.711899999529123 ], [ 356330.5591000020504, 253238.113699998706579 ], [ 356344.187299996614456, 253247.513399999588728 ], [ 356364.994999997317791, 253266.048799999058247 ], [ 356373.025799997150898, 253269.914200000464916 ], [ 356382.674500003457069, 253273.159600000828505 ], [ 356387.474600002169609, 253277.631900001317263 ], [ 356409.372699998319149, 253262.823499999940395 ], [ 356399.817500002682209, 253248.602000001817942 ], [ 356383.068300001323223, 253226.933400001376867 ], [ 356370.257200002670288, 253216.273800000548363 ], [ 356355.815499998629093, 253207.711899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201031000", "MAP": "A9-668-T006", "PARCEL_NAM": "143", "ACRE": null, "LONGITUDE": -64.95903474000001, "LATITUDE": 18.30861448, "OBJECTID_1": 87358, "PARCEL_NO_": "509201031000", "Tax_Legal_": "4A,4C&143 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "ROCKY POINT, L. L. C.", "Address": "1314 Highway 179", "City": "Jefferson City", "State": "Missouri", "Zip": 65109, "Country": "United States", "Land_Value": 163900, "Improved_V": 412200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.99816473199999, "SHAPE_Area": 1010.42846023 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355863.292300000786781, 253262.686500001698732 ], [ 355870.564000003039837, 253262.236299999058247 ], [ 355870.12049999833107, 253238.355999998748302 ], [ 355870.982600003480911, 253231.819200001657009 ], [ 355866.360500000417233, 253206.450100000947714 ], [ 355842.081200003623962, 253216.806099999696016 ], [ 355838.85419999808073, 253216.990800000727177 ], [ 355863.292300000786781, 253262.686500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202031300", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT A", "ACRE": null, "LONGITUDE": -64.95682998, "LATITUDE": 18.30778301, "OBJECTID_1": 87398, "PARCEL_NO_": "509202031300", "Tax_Legal_": "TRACT \"A\" WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "HOTEL", "Address": "TRACT \"A\" WATER ISLAND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 187300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 851.43195926, "SHAPE_Area": 12683.1928745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356038.359899997711182, 253169.837900001555681 ], [ 356068.55179999768734, 253136.122099999338388 ], [ 356079.086000002920628, 253130.086599998176098 ], [ 356084.739200003445148, 253129.077399998903275 ], [ 356091.981600001454353, 253130.825399998575449 ], [ 356098.406900003552437, 253133.833299998193979 ], [ 356104.042099997401237, 253134.934900000691414 ], [ 356116.095499999821186, 253139.888700000941753 ], [ 356137.808399997651577, 253146.821400001645088 ], [ 356142.624700002372265, 253149.393899999558926 ], [ 356159.449299998581409, 253162.197299998253584 ], [ 356181.932599999010563, 253173.3581000007689 ], [ 356172.485200002789497, 253146.471900001168251 ], [ 356167.7533999979496, 253133.978700000792742 ], [ 356166.1587999984622, 253131.854699999094009 ], [ 356158.178400002419949, 253122.079100001603365 ], [ 356138.243500001728535, 253095.740299999713898 ], [ 356128.655900001525879, 253085.318300001323223 ], [ 356123.038699999451637, 253082.105900000780821 ], [ 356107.736699998378754, 253079.869699999690056 ], [ 356097.243900001049042, 253081.050400000065565 ], [ 356053.548299998044968, 253098.846799999475479 ], [ 356041.372699998319149, 253108.246399998664856 ], [ 356037.378899998962879, 253103.780699998140335 ], [ 356026.798000000417233, 253115.304299999028444 ], [ 356009.635300002992153, 253163.600000001490116 ], [ 356019.733199998736382, 253165.604499999433756 ], [ 356027.776500001549721, 253162.00620000064373 ], [ 356029.258199997246265, 253175.55290000140667 ], [ 356032.433200001716614, 253174.917899999767542 ], [ 356038.359899997711182, 253169.837900001555681 ] ] ], [ [ [ 356092.430100001394749, 253172.83669999986887 ], [ 356097.291299998760223, 253170.13230000063777 ], [ 356105.223200000822544, 253185.60700000077486 ], [ 356107.62950000166893, 253187.104400001466274 ], [ 356134.281000003218651, 253182.25620000064373 ], [ 356161.706399999558926, 253181.214099999517202 ], [ 356172.20830000191927, 253178.978100001811981 ], [ 356173.030799999833107, 253177.08500000089407 ], [ 356151.368199996650219, 253164.24210000038147 ], [ 356137.750799998641014, 253153.575899999588728 ], [ 356084.686999998986721, 253135.198699999600649 ], [ 356076.598700001835823, 253138.087799999862909 ], [ 356072.543799996376038, 253140.798799999058247 ], [ 356049.724299997091293, 253169.109700001776218 ], [ 356031.809199996292591, 253189.650199998170137 ], [ 356031.76240000128746, 253195.138300001621246 ], [ 356034.964299999177456, 253197.908700000494719 ], [ 356056.69879999756813, 253202.308400001376867 ], [ 356076.874600000679493, 253200.36259999871254 ], [ 356080.909699998795986, 253199.973499998450279 ], [ 356087.410599999129772, 253194.116099998354912 ], [ 356098.734899997711182, 253189.986900001764297 ], [ 356098.765500001609325, 253186.398499999195337 ], [ 356092.430100001394749, 253172.83669999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030700", "MAP": "D9-7711-T006", "PARCEL_NAM": "8 REM", "ACRE": "1.65", "LONGITUDE": -64.95788214, "LATITUDE": 18.3074259, "OBJECTID_1": 87355, "PARCEL_NO_": "509201030700", "Tax_Legal_": "8-1& 8 REM WATER ISLAND NO. 10 SOUTHSIDE QUARTER", "Name": "BITTERWOLF, MATTHIAS & AMBER DUNCAN", "Address": "41 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 305500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.24088291700002, "SHAPE_Area": 8154.4566956199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355969.20269999653101, 253155.573899999260902 ], [ 356009.635300002992153, 253163.600000001490116 ], [ 356026.798000000417233, 253115.304299999028444 ], [ 356037.378899998962879, 253103.780699998140335 ], [ 355968.703199997544289, 253024.902899999171495 ], [ 355967.072599999606609, 253027.000500001013279 ], [ 355967.042000003159046, 253030.588899999856949 ], [ 355969.439400002360344, 253033.141600001603365 ], [ 355966.968299999833107, 253039.243099998682737 ], [ 355964.526000000536442, 253041.967300001531839 ], [ 355959.675499998033047, 253043.405299998819828 ], [ 355955.606200002133846, 253047.804900001734495 ], [ 355955.57379999756813, 253051.604400001466274 ], [ 355953.945000000298023, 253053.490899998694658 ], [ 355953.914399996399879, 253057.079199999570847 ], [ 355956.31360000371933, 253059.420899998396635 ], [ 355949.852300003170967, 253060.63459999859333 ], [ 355945.793799996376038, 253063.767700001597404 ], [ 355944.161399997770786, 253066.076400000602007 ], [ 355940.85700000077486, 253075.337499998509884 ], [ 355939.958999998867512, 253086.095899999141693 ], [ 355932.660800002515316, 253090.89130000025034 ], [ 355931.841899998486042, 253092.362300001084805 ], [ 355931.809500001370907, 253096.161699999123812 ], [ 355927.77080000191927, 253096.973000001162291 ], [ 355969.20269999653101, 253155.573899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202020800", "MAP": "D9-9049-T016", "PARCEL_NAM": "10", "ACRE": ".831", "LONGITUDE": -64.95612569, "LATITUDE": 18.30723484, "OBJECTID_1": 87384, "PARCEL_NO_": "509202020800", "Tax_Legal_": "10 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MERMAID NAUTICAL VENTURE LLC", "Address": "100 SE 15th Ave", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33301, "Country": "United States", "Land_Value": 120500, "Improved_V": 637500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.52812718499999, "SHAPE_Area": 3116.1542915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356166.071699999272823, 253047.416600000113249 ], [ 356124.703400000929832, 253075.997800000011921 ], [ 356134.32880000025034, 253081.987199999392033 ], [ 356150.289700001478195, 253101.538400001823902 ], [ 356159.841300003230572, 253116.182100001722574 ], [ 356163.035999998450279, 253119.796799998730421 ], [ 356209.269100002944469, 253088.089000001549721 ], [ 356182.928800001740456, 253056.420499999076128 ], [ 356166.071699999272823, 253047.416600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202020900", "MAP": "D9-7711-T006", "PARCEL_NAM": "9 REM", "ACRE": "2.72", "LONGITUDE": -64.95640057, "LATITUDE": 18.30679198, "OBJECTID_1": 87385, "PARCEL_NO_": "509202020900", "Tax_Legal_": "9 REM WATER ISLAND NO. 10 SOUTHSIDE QUARTER", "Name": "BROOKMAN, BRIAN G. & CHRISTINA M.", "Address": "26055 Muskie Ln", "City": "Wilmington", "State": "Illinois", "Zip": 60481, "Country": "United States", "Land_Value": 227500, "Improved_V": 34500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 477.57700563700001, "SHAPE_Area": 6510.5844085600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356090.79900000244379, 253004.242400001734495 ], [ 356081.623999997973442, 253035.365600001066923 ], [ 356088.471799999475479, 253077.862399999052286 ], [ 356093.255500003695488, 253075.951499998569489 ], [ 356106.17620000243187, 253073.735199999064207 ], [ 356124.703400000929832, 253075.997800000011921 ], [ 356166.071699999272823, 253047.416600000113249 ], [ 356232.583200000226498, 253001.7314000017941 ], [ 356232.61370000243187, 252998.143100000917912 ], [ 356229.415399998426437, 252994.950500000268221 ], [ 356225.365900002419949, 252997.028299998492002 ], [ 356223.778499998152256, 252994.059999998658895 ], [ 356221.366700001060963, 252993.195900000631809 ], [ 356219.750500001013279, 252993.604899998754263 ], [ 356216.507299996912479, 252995.6891999989748 ], [ 356216.476700000464916, 252999.27760000154376 ], [ 356222.09570000320673, 253002.278900001198053 ], [ 356214.824500001966953, 253003.908100001513958 ], [ 356210.766000002622604, 253007.041299998760223 ], [ 356211.599200002849102, 253003.881700001657009 ], [ 356207.598300002515316, 253000.260400000959635 ], [ 356206.854900002479553, 252992.86600000038743 ], [ 356202.047600001096725, 252989.238099999725819 ], [ 356198.008799999952316, 252990.049400001764297 ], [ 356195.573700003325939, 252991.929299999028444 ], [ 356196.353000000119209, 252995.102099999785423 ], [ 356199.549500003457069, 252998.505800001323223 ], [ 356201.918099999427795, 253004.4358000010252 ], [ 356201.8766999989748, 253009.290600001811981 ], [ 356200.256899997591972, 253010.121700000017881 ], [ 356193.005500003695488, 253009.429099999368191 ], [ 356188.183799996972084, 253007.489799998700619 ], [ 356182.532399997115135, 253008.287900000810623 ], [ 356180.133299998939037, 253005.946199998259544 ], [ 356174.505300000309944, 253004.000300001353025 ], [ 356169.708800002932549, 252999.105900000780821 ], [ 356168.0996999964118, 252998.670499999076128 ], [ 356165.666400000452995, 253000.339400000870228 ], [ 356153.564499996602535, 253001.084699999541044 ], [ 356148.733800001442432, 253000.200800001621246 ], [ 356144.695100001990795, 253001.012099999934435 ], [ 356139.828400000929832, 253004.349800001829863 ], [ 356132.490699999034405, 253013.788899999111891 ], [ 356128.446599997580051, 253015.233500000089407 ], [ 356123.606899999082088, 253015.405000001192093 ], [ 356121.981700003147125, 253016.869300000369549 ], [ 356117.944700002670288, 253017.4695999994874 ], [ 356115.538400001823902, 253015.972199998795986 ], [ 356113.149999998509884, 253012.364100001752377 ], [ 356110.741899996995926, 253011.077799998223782 ], [ 356110.76519999653101, 253008.333799999207258 ], [ 356108.375100001692772, 253004.936700001358986 ], [ 356101.969499997794628, 252999.60700000077486 ], [ 356100.3496999964118, 253000.438099998980761 ], [ 356099.482299998402596, 253007.608199998736382 ], [ 356097.86599999666214, 253008.017099998891354 ], [ 356090.79900000244379, 253004.242400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91890331, "LATITUDE": 18.3206354, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1048.4871155599999, "SHAPE_Area": 4692.6262593399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359865.602799996733665, 254609.515700001269579 ], [ 359866.013899996876717, 254618.681800000369549 ], [ 359886.220200002193451, 254613.147700000554323 ], [ 359896.716700002551079, 254611.544799998402596 ], [ 359917.666400000452995, 254613.405000001192093 ], [ 359932.138700000941753, 254618.378600001335144 ], [ 359965.05179999768734, 254635.746599998325109 ], [ 359978.7195999994874, 254640.502500001341105 ], [ 359985.965599998831749, 254641.828400000929832 ], [ 360018.210900001227856, 254642.936599999666214 ], [ 360028.70380000025034, 254641.756000000983477 ], [ 360035.991099998354912, 254638.227000001817942 ], [ 360041.676700003445148, 254633.418400000780821 ], [ 360054.759300000965595, 254612.204999998211861 ], [ 360059.642099998891354, 254606.967700000852346 ], [ 360066.936700001358986, 254602.594399999827147 ], [ 360076.625100001692772, 254601.195999998599291 ], [ 360098.375699996948242, 254603.696100000292063 ], [ 360108.060400001704693, 254602.719900000840425 ], [ 360116.155900001525879, 254598.9864999987185 ], [ 360135.633299998939037, 254584.369300000369549 ], [ 360142.908100001513958, 254582.317899998277426 ], [ 360150.164899997413158, 254582.377300001680851 ], [ 360154.99379999935627, 254583.472300000488758 ], [ 360191.135799996554852, 254600.444499999284744 ], [ 360205.627899996936321, 254603.096200000494719 ], [ 360214.472099997103214, 254606.1239 ], [ 360231.270599998533726, 254610.771299999207258 ], [ 360236.278499998152256, 254602.08049999922514 ], [ 360244.436899997293949, 254590.959399998188019 ], [ 360250.968400001525879, 254581.513599999248981 ], [ 360254.297899998724461, 254569.297400001436472 ], [ 360256.005800001323223, 254558.123399998992682 ], [ 360256.973999999463558, 254539.133000001311302 ], [ 360247.708200000226498, 254490.927799999713898 ], [ 360246.059600003063679, 254495.136199999600649 ], [ 360244.369699999690056, 254504.199400000274181 ], [ 360244.990800000727177, 254525.94709999859333 ], [ 360248.072200000286102, 254542.8597999997437 ], [ 360247.15259999781847, 254556.151099998503923 ], [ 360244.609600000083447, 254570.695799998939037 ], [ 360240.482699997723103, 254581.850000001490116 ], [ 360234.773800000548363, 254589.40260000154376 ], [ 360228.278300002217293, 254594.626800000667572 ], [ 360219.378300003707409, 254598.142499998211861 ], [ 360208.122299998998642, 254594.250700000673532 ], [ 360199.263700000941753, 254592.911699999123812 ], [ 360188.808600001037121, 254589.659699998795986 ], [ 360156.683700002729893, 254574.409099999815226 ], [ 360149.439499996602535, 254572.87220000103116 ], [ 360143.795299999415874, 254572.8260000012815 ], [ 360135.717799998819828, 254574.448600001633167 ], [ 360130.050300002098083, 254577.14640000090003 ], [ 360108.146799996495247, 254592.588100001215935 ], [ 360102.490000002086163, 254594.019499998539686 ], [ 360077.506899997591972, 254592.33729999884963 ], [ 360067.017599999904633, 254593.095800001174212 ], [ 360058.929300002753735, 254595.984999999403954 ], [ 360047.545699998736382, 254607.079700000584126 ], [ 360036.097199998795986, 254625.773400001227856 ], [ 360032.839599996805191, 254629.546399999409914 ], [ 360027.974799998104572, 254632.673000000417233 ], [ 360021.509900003671646, 254634.308800000697374 ], [ 359981.217699997127056, 254631.2347999997437 ], [ 359965.937299996614456, 254626.465700000524521 ], [ 359935.441200003027916, 254609.328600000590086 ], [ 359927.405100002884865, 254606.096400000154972 ], [ 359913.724799998104572, 254602.81810000166297 ], [ 359901.633699998259544, 254602.296900000423193 ], [ 359890.338100001215935, 254603.048900000751019 ], [ 359865.602799996733665, 254609.515700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030600", "MAP": null, "PARCEL_NAM": "5B", "ACRE": null, "LONGITUDE": -64.95843091, "LATITUDE": 18.30783203, "OBJECTID_1": 87354, "PARCEL_NO_": "509201030600", "Tax_Legal_": "5B WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "HOEPFNER, JOHN", "Address": "3802 Fellowship Ave", "City": "The Villages", "State": "Florida", "Zip": 321632165, "Country": "United States", "Land_Value": 148600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.68929750299998, "SHAPE_Area": 4786.3160651799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355893.996299996972084, 253180.711800001561642 ], [ 355916.443599998950958, 253196.094300001859665 ], [ 355916.816500000655651, 253196.175599999725819 ], [ 355969.20269999653101, 253155.573899999260902 ], [ 355927.77080000191927, 253096.973000001162291 ], [ 355915.694099999964237, 253094.763199999928474 ], [ 355914.074299998581409, 253095.594300001859665 ], [ 355913.255400002002716, 253097.06529999896884 ], [ 355913.224799998104572, 253100.653599999845028 ], [ 355911.599600002169609, 253102.118000000715256 ], [ 355900.277000002563, 253106.036100000143051 ], [ 355898.669799998402596, 253105.389699999243021 ], [ 355897.100299999117851, 253100.310600001364946 ], [ 355895.079499997198582, 253148.21229999884963 ], [ 355893.996299996972084, 253180.711800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201031800", "MAP": "D9-8949-T014", "PARCEL_NAM": "5A", "ACRE": ".732", "LONGITUDE": -64.95798249000001, "LATITUDE": 18.30816496, "OBJECTID_1": 87360, "PARCEL_NO_": "509201031800", "Tax_Legal_": "LOT No.5A WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "ROBERT M KERRIGAN TRUST", "Address": "65 Pondfield Rd", "City": "Bronxville", "State": "New York", "Zip": 10708, "Country": "United States", "Land_Value": 128400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.827809468, "SHAPE_Area": 3267.1061317899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356009.635300002992153, 253163.600000001490116 ], [ 355969.20269999653101, 253155.573899999260902 ], [ 355916.816500000655651, 253196.175599999725819 ], [ 355920.4679000005126, 253196.971599999815226 ], [ 355926.086999997496605, 253199.972899999469519 ], [ 355945.316200003027916, 253214.484600000083447 ], [ 356009.994499996304512, 253186.539200000464916 ], [ 356021.214900001883507, 253181.691199999302626 ], [ 356019.733199998736382, 253165.604499999433756 ], [ 356009.635300002992153, 253163.600000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202020300", "MAP": "D9-6811-T000", "PARCEL_NAM": "22A", "ACRE": ".481", "LONGITUDE": -64.95256435, "LATITUDE": 18.31289428, "OBJECTID_1": 87376, "PARCEL_NO_": "509202020300", "Tax_Legal_": "22A WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CORTNEY CHERIN SOLLOWS and KANAAN LE'ROY WILHITE", "Address": "PO Box 310", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 105700, "Improved_V": 319900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.14637561400002, "SHAPE_Area": 3609.39859402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356599.416599996387959, 253696.912799999117851 ], [ 356473.408699996769428, 253694.165500000119209 ], [ 356473.432899996638298, 253694.189699999988079 ], [ 356475.034699998795986, 253695.469399999827147 ], [ 356481.59570000320673, 253703.103799998760223 ], [ 356485.401699997484684, 253709.0641999989748 ], [ 356488.545999996364117, 253718.589200001209974 ], [ 356489.276799999177456, 253727.461100000888109 ], [ 356590.865000002086163, 253729.136900000274181 ], [ 356592.491999998688698, 253727.461500000208616 ], [ 356592.589100003242493, 253716.063200000673532 ], [ 356595.063799999654293, 253709.539599999785423 ], [ 356598.335799999535084, 253704.077899999916553 ], [ 356599.199699997901917, 253697.329999998211861 ], [ 356599.416599996387959, 253696.912799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202021200", "MAP": "D9-7785-T006", "PARCEL_NAM": "20B-1", "ACRE": "1.21", "LONGITUDE": -64.95308127, "LATITUDE": 18.31175709, "OBJECTID_1": 87387, "PARCEL_NO_": "509202021200", "Tax_Legal_": "20B-1 WATER ISLAND No.10 SOUTHSIDE QTR", "Name": "MANCINO, JOSEPH & CONGERO", "Address": "74 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 181900, "Improved_V": 381600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 413.453111503, "SHAPE_Area": 5812.3031334999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356414.3783999979496, 253593.713199999183416 ], [ 356454.940700002014637, 253595.884899999946356 ], [ 356481.734499998390675, 253607.340500000864267 ], [ 356481.125399999320507, 253617.768399998545647 ], [ 356551.448899999260902, 253614.034699998795986 ], [ 356551.529399998486042, 253613.769000001251698 ], [ 356551.556400001049042, 253610.602800000458956 ], [ 356548.34910000115633, 253608.465599998831749 ], [ 356547.584100000560284, 253603.604200001806021 ], [ 356550.854299999773502, 253598.35359999909997 ], [ 356552.589299999177456, 253584.013399999588728 ], [ 356550.998199999332428, 253581.467300001531839 ], [ 356548.573899999260902, 253582.080699998885393 ], [ 356546.916299998760223, 253587.344500001519918 ], [ 356543.682099997997284, 253588.373500000685453 ], [ 356539.655900001525879, 253587.707299999892712 ], [ 356538.052199997007847, 253586.638700000941753 ], [ 356537.271099999547005, 253583.677000001072884 ], [ 356531.657499998807907, 253580.042399998754263 ], [ 356523.659100003540516, 253572.377599999308586 ], [ 356523.695100001990795, 253568.155999999493361 ], [ 356524.517599999904633, 253566.262899998575449 ], [ 356524.630800001323223, 253552.964999999850988 ], [ 356442.257500000298023, 253567.489500001072884 ], [ 356427.164099998772144, 253540.768199998885393 ], [ 356423.843599997460842, 253551.929000001400709 ], [ 356421.379699997603893, 253557.186099998652935 ], [ 356421.350900001823902, 253560.563400000333786 ], [ 356418.874399997293949, 253567.298099998384714 ], [ 356414.639700002968311, 253591.116999998688698 ], [ 356414.3783999979496, 253593.713199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202021300", "MAP": "D9-7785-T006", "PARCEL_NAM": "20B-2", "ACRE": ".313", "LONGITUDE": -64.95349126000001, "LATITUDE": 18.31197575, "OBJECTID_1": 87388, "PARCEL_NO_": "509202021300", "Tax_Legal_": "20B-2 WATER ISLAND No.10 SOUTHSIDE QTR", "Name": "MANCINO, JOSEPH & CONGERO", "Address": "74 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.50559467599999, "SHAPE_Area": 1589.6596643800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356480.878499999642372, 253617.781500000506639 ], [ 356481.145199999213219, 253617.430599998682737 ], [ 356481.734499998390675, 253607.340500000864267 ], [ 356454.940700002014637, 253595.884899999946356 ], [ 356414.3783999979496, 253593.713199999183416 ], [ 356411.115900002419949, 253626.129700001329184 ], [ 356411.467299997806549, 253626.401099998503923 ], [ 356427.339599996805191, 253622.136100001633167 ], [ 356433.880400002002716, 253621.190000001341105 ], [ 356459.780199997127056, 253618.901700001209974 ], [ 356480.878499999642372, 253617.781500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202020400", "MAP": "D9-8453-T010", "PARCEL_NAM": "21A", "ACRE": ".517", "LONGITUDE": -64.95348785, "LATITUDE": 18.31222425, "OBJECTID_1": 87377, "PARCEL_NO_": "509202020400", "Tax_Legal_": "21 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CHAUNETTE L THOMAS and ROBERT M SMACK", "Address": "6200 Windward Way", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 271000, "Improved_V": 232500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.85178785799999, "SHAPE_Area": 1225.13567444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356442.282799996435642, 253660.133600000292063 ], [ 356461.785199999809265, 253650.637099999934435 ], [ 356459.125500001013279, 253618.959499999880791 ], [ 356433.880400002002716, 253621.190000001341105 ], [ 356427.339599996805191, 253622.136100001633167 ], [ 356411.467299997806549, 253626.401099998503923 ], [ 356419.126900002360344, 253632.31700000166893 ], [ 356435.906599998474121, 253650.397300001233816 ], [ 356442.282799996435642, 253660.133600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202011300", "MAP": "D9-7355-T004", "PARCEL_NAM": "26B", "ACRE": ".51", "LONGITUDE": -64.95383294, "LATITUDE": 18.31305238, "OBJECTID_1": 87373, "PARCEL_NO_": "509202011300", "Tax_Legal_": "26B WATER ISLAND No.10 SOUTHSIDE QUARTER", "Name": "LOT 26B LLC", "Address": "PO Box 197", "City": "Cape May", "State": "New Jersey", "Zip": 8204, "Country": "United States", "Land_Value": 94200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.538321854, "SHAPE_Area": 1740.9989998399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356370.200300000607967, 253729.260099999606609 ], [ 356426.267800003290176, 253752.927000001072884 ], [ 356436.879100002348423, 253725.55460000038147 ], [ 356420.014899998903275, 253717.394999999552965 ], [ 356389.497299998998642, 253702.790800001472235 ], [ 356370.200300000607967, 253729.260099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010900", "MAP": "D9-8418-T010", "PARCEL_NAM": "26A-1", "ACRE": ".28", "LONGITUDE": -64.95411819, "LATITUDE": 18.31325952, "OBJECTID_1": 87369, "PARCEL_NO_": "509202010900", "Tax_Legal_": "26A-1 & 26-A REM WATER ISLAND No.10 SOUTHSIDE QUARTER", "Name": "SEAGARDEN TRUST", "Address": "8168 Brown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80800, "Improved_V": 318500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.59946648499999, "SHAPE_Area": 1153.4626897799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356383.762199997901917, 253771.393800001591444 ], [ 356398.07769999653101, 253741.02760000154376 ], [ 356370.200300000607967, 253729.260099999606609 ], [ 356355.229400001466274, 253749.795299999415874 ], [ 356351.977099999785423, 253752.935100000351667 ], [ 356350.330300003290176, 253756.932399999350309 ], [ 356348.706900000572205, 253758.185699999332428 ], [ 356383.762199997901917, 253771.393800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94684699, "LATITUDE": 18.32767894, "OBJECTID_1": 87245, "PARCEL_NO_": "507201011200", "Tax_Legal_": "3 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 149900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 405.59347258700001, "SHAPE_Area": 4449.2204390799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357106.025700002908707, 255256.393300000578165 ], [ 357102.057099997997284, 255248.972500000149012 ], [ 357098.034500002861023, 255247.884100001305342 ], [ 357103.464699998497963, 255273.048700001090765 ], [ 357107.224799998104572, 255304.954599998891354 ], [ 357108.788800001144409, 255310.666900001466274 ], [ 357110.252199999988079, 255328.199700001627207 ], [ 357112.590199999511242, 255337.717999998480082 ], [ 357114.089599996805191, 255351.029199998825788 ], [ 357114.672899998724461, 255377.209499999880791 ], [ 357118.596600003540516, 255389.907299999147654 ], [ 357123.342799998819828, 255400.711899999529123 ], [ 357128.911399997770786, 255409.623399998992682 ], [ 357131.269199997186661, 255416.819899998605251 ], [ 357140.046899996697903, 255427.657499998807907 ], [ 357172.77419999986887, 255372.196600001305342 ], [ 357154.300899997353554, 255363.601700000464916 ], [ 357143.102399997413158, 255352.955400001257658 ], [ 357138.33110000193119, 255345.105900000780821 ], [ 357135.177799999713898, 255336.636300001293421 ], [ 357133.662299998104572, 255325.224899999797344 ], [ 357128.9628000035882, 255308.932199999690056 ], [ 357127.436499997973442, 255298.787200000137091 ], [ 357115.553999997675419, 255273.780900001525879 ], [ 357110.824000000953674, 255261.07660000026226 ], [ 357106.025700002908707, 255256.393300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202030500", "MAP": null, "PARCEL_NAM": "17", "ACRE": null, "LONGITUDE": -64.95398589, "LATITUDE": 18.30945454, "OBJECTID_1": 87392, "PARCEL_NO_": "509202030500", "Tax_Legal_": "17 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "COOMBS, CYNTHIA L. & OLIVER, LINDA", "Address": "PO Box 307906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 230800, "Improved_V": 373800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 525.827079002, "SHAPE_Area": 6972.4577034100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356362.345600001513958, 253271.390099998563528 ], [ 356347.540899999439716, 253274.670699998736382 ], [ 356350.22240000218153, 253296.325399998575449 ], [ 356353.325400002300739, 253310.705200001597404 ], [ 356358.811300002038479, 253329.326299998909235 ], [ 356373.631399996578693, 253388.131599999964237 ], [ 356439.837099999189377, 253378.329900000244379 ], [ 356436.728799998760223, 253364.583299998193979 ], [ 356419.477200001478195, 253307.235800001770258 ], [ 356413.312600001692772, 253273.621500000357628 ], [ 356409.372699998319149, 253262.823499999940395 ], [ 356387.474600002169609, 253277.631900001317263 ], [ 356392.193800002336502, 253291.602699998766184 ], [ 356393.702200002968311, 253303.858399998396635 ], [ 356398.45549999922514, 253313.81870000064373 ], [ 356406.261500000953674, 253344.068999998271465 ], [ 356410.242700003087521, 253350.012200001627207 ], [ 356394.973099999129772, 253343.976599998772144 ], [ 356397.471199996769428, 253334.70890000090003 ], [ 356392.001400001347065, 253314.188099998980761 ], [ 356388.038199998438358, 253306.134100001305342 ], [ 356384.967600002884865, 253287.954900000244379 ], [ 356382.604400001466274, 253281.391699999570847 ], [ 356378.601599998772144, 253277.9814000017941 ], [ 356371.361000001430511, 253276.022300001233816 ], [ 356362.345600001513958, 253271.390099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023600", "MAP": "D9-7897-T006", "PARCEL_NAM": "45-1", "ACRE": ".329", "LONGITUDE": -64.95615779000001, "LATITUDE": 18.31502031, "OBJECTID_1": 87229, "PARCEL_NO_": "507104023600", "Tax_Legal_": "45-1 & 45 REM WATER ISLAND (LA PROVIDENCE) NO.10 SOUTHSIDE QUARTER", "Name": "MOORE & MOORE TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.77396621700001, "SHAPE_Area": 1310.4638311199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356153.213299997150898, 253923.269299998879433 ], [ 356149.682899996638298, 253927.594000000506639 ], [ 356126.353699997067451, 253956.171900000423193 ], [ 356175.879699997603893, 253960.611900001764297 ], [ 356179.508599996566772, 253931.164200000464916 ], [ 356167.34910000115633, 253924.908300001174212 ], [ 356153.213299997150898, 253923.269299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023600", "MAP": "D9-7897-T006", "PARCEL_NAM": "45-REM", "ACRE": ".397", "LONGITUDE": -64.95628537, "LATITUDE": 18.3153071, "OBJECTID_1": 87229, "PARCEL_NO_": "507104023600", "Tax_Legal_": "45-1 & 45 REM WATER ISLAND (LA PROVIDENCE) NO.10 SOUTHSIDE QUARTER", "Name": "MOORE & MOORE TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.206384644, "SHAPE_Area": 1983.6273075700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356175.879699997603893, 253960.611900001764297 ], [ 356126.353699997067451, 253956.171900000423193 ], [ 356102.132399998605251, 253985.842599999159575 ], [ 356133.047100000083447, 253989.679000001400709 ], [ 356171.712399996817112, 253994.428399998694658 ], [ 356175.879699997603893, 253960.611900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010700", "MAP": "D9-7241-T003", "PARCEL_NAM": "98 REM", "ACRE": ".426", "LONGITUDE": -64.94926956, "LATITUDE": 18.32177068, "OBJECTID_1": 87327, "PARCEL_NO_": "507203010700", "Tax_Legal_": "98 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SOMERSET, S. R. & GAVIN, JR. , W. A", "Address": "2113 Pebble Beach Pl", "City": "Panama City", "State": "Florida", "Zip": 32408, "Country": "United States", "Land_Value": 150200, "Improved_V": 213700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.838611063, "SHAPE_Area": 2127.4135134100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356929.02080000191927, 254699.37049999833107 ], [ 356897.503300003707409, 254687.092599999159575 ], [ 356856.000399999320507, 254669.324099998921156 ], [ 356844.585500001907349, 254709.209899999201298 ], [ 356860.706399999558926, 254709.975099999457598 ], [ 356870.36599999666214, 254711.954100001603365 ], [ 356880.023699998855591, 254714.144000001251698 ], [ 356888.049099996685982, 254718.642700001597404 ], [ 356929.02080000191927, 254699.37049999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010700", "MAP": "D9-7241-T003", "PARCEL_NAM": "98-2", "ACRE": ".332", "LONGITUDE": -64.94884881, "LATITUDE": 18.32160413, "OBJECTID_1": 87327, "PARCEL_NO_": "507203010700", "Tax_Legal_": "98 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SOMERSET, S. R. & GAVIN, JR. , W. A", "Address": "2113 Pebble Beach Pl", "City": "Panama City", "State": "Florida", "Zip": 32408, "Country": "United States", "Land_Value": 150200, "Improved_V": 213700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.205718195, "SHAPE_Area": 1542.6161759500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356907.900799997150898, 254655.46680000051856 ], [ 356897.503300003707409, 254687.092599999159575 ], [ 356929.02080000191927, 254699.37049999833107 ], [ 356952.008500002324581, 254688.557599999010563 ], [ 356948.133400000631809, 254670.160700000822544 ], [ 356918.398699998855591, 254658.307199999690056 ], [ 356907.900799997150898, 254655.46680000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010500", "MAP": "D9-7569-T005", "PARCEL_NAM": "C-1", "ACRE": ".251", "LONGITUDE": -64.94924632, "LATITUDE": 18.32253281, "OBJECTID_1": 87325, "PARCEL_NO_": "507203010500", "Tax_Legal_": "PLOT\"C\"WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "MCCOY, THOMAS J. & ANOUSHKA A.", "Address": "PLOT C WATER ISLAND", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 110300, "Improved_V": 382800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.578691445, "SHAPE_Area": 1369.3970181 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356903.018399998545647, 254759.928399998694658 ], [ 356901.787900000810623, 254756.959800001233816 ], [ 356902.4121999964118, 254767.260299999266863 ], [ 356850.347000002861023, 254771.330099999904633 ], [ 356847.094800002872944, 254771.909299999475479 ], [ 356861.590800002217293, 254795.475299999117851 ], [ 356913.234300002455711, 254791.253899998962879 ], [ 356906.130300000309944, 254773.25279999896884 ], [ 356903.018399998545647, 254759.928399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201031400", "MAP": "D9-7672-T005", "PARCEL_NAM": "34-REM", "ACRE": ".971", "LONGITUDE": -64.9439737, "LATITUDE": 18.3243578, "OBJECTID_1": 87319, "PARCEL_NO_": "507201031400", "Tax_Legal_": "34REM.&36-1 EASTERN WATER ISLAND SOUTH SIDE QTR. 10", "Name": "KWIECIEN, CHESTER M. & DIANE H", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 148900, "Improved_V": 274400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.93178559299997, "SHAPE_Area": 4157.5768386099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357410.817100003361702, 254969.930599998682737 ], [ 357415.766800001263618, 254968.739000000059605 ], [ 357420.95269999653101, 254984.296500001102686 ], [ 357415.39639999717474, 254998.001899998635054 ], [ 357415.176399998366833, 255030.520300000905991 ], [ 357457.837300002574921, 255039.524300001561642 ], [ 357461.857299998402596, 254946.253800000995398 ], [ 357408.687399998307228, 254940.330200001597404 ], [ 357410.817100003361702, 254969.930599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201031400", "MAP": "D9-7672-T005", "PARCEL_NAM": "36-1", "ACRE": ".06", "LONGITUDE": -64.94450398, "LATITUDE": 18.3239438, "OBJECTID_1": 87319, "PARCEL_NO_": "507201031400", "Tax_Legal_": "34REM.&36-1 EASTERN WATER ISLAND SOUTH SIDE QTR. 10", "Name": "KWIECIEN, CHESTER M. & DIANE H", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 148900, "Improved_V": 274400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.767945251499995, "SHAPE_Area": 220.93421283699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357366.749099999666214, 254947.000799998641014 ], [ 357408.687399998307228, 254940.330200001597404 ], [ 357370.823100000619888, 254936.220600001513958 ], [ 357368.366400003433228, 254940.633499998599291 ], [ 357366.743000000715256, 254941.886799998581409 ], [ 357366.721400000154972, 254944.419700000435114 ], [ 357366.749099999666214, 254947.000799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201031300", "MAP": "D9-7673-T005", "PARCEL_NAM": "36-REM", "ACRE": "1.014", "LONGITUDE": -64.94440719000001, "LATITUDE": 18.32435769, "OBJECTID_1": 87318, "PARCEL_NO_": "507201031300", "Tax_Legal_": "36REM.&34-1 EASTERN WATER ISLAND 10&11 SOUTHSIDE QTR.", "Name": "BRISE, LLP", "Address": "990 Stanley Ct", "City": "Erie", "State": "Colorado", "Zip": 80516, "Country": "United States", "Land_Value": 146900, "Improved_V": 419000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.82349311799999, "SHAPE_Area": 4049.6512864800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357367.620200000703335, 255028.231199998408556 ], [ 357391.003200002014637, 255028.422600001096725 ], [ 357415.176399998366833, 255030.520300000905991 ], [ 357415.39639999717474, 254998.001899998635054 ], [ 357420.95269999653101, 254984.296500001102686 ], [ 357415.766800001263618, 254968.739000000059605 ], [ 357410.817100003361702, 254969.930599998682737 ], [ 357408.687399998307228, 254940.330200001597404 ], [ 357366.749099999666214, 254947.000799998641014 ], [ 357367.620200000703335, 255028.231199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030700", "MAP": "D9-7711-T006", "PARCEL_NAM": "8-1", "ACRE": "1.87", "LONGITUDE": -64.9573751, "LATITUDE": 18.30684792, "OBJECTID_1": 87355, "PARCEL_NO_": "509201030700", "Tax_Legal_": "8-1& 8 REM WATER ISLAND NO. 10 SOUTHSIDE QUARTER", "Name": "BITTERWOLF, MATTHIAS & AMBER DUNCAN", "Address": "41 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 305500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 521.15610644100002, "SHAPE_Area": 9306.2773686599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356088.471799999475479, 253077.862399999052286 ], [ 356081.623999997973442, 253035.365600001066923 ], [ 356090.79900000244379, 253004.242400001734495 ], [ 356089.036200001835823, 253003.300799999386072 ], [ 356085.011799998581409, 253002.423500001430511 ], [ 356085.078299999237061, 252994.613600000739098 ], [ 356080.227899998426437, 252996.051500000059605 ], [ 356076.153099998831749, 253001.084399998188019 ], [ 356072.92790000140667, 253001.05799999833107 ], [ 356072.161100000143051, 252996.407699998468161 ], [ 356072.987199999392033, 252994.092399999499321 ], [ 356074.610600002110004, 252992.839099999517202 ], [ 356074.648400001227856, 252988.406500000506639 ], [ 356072.25280000269413, 252985.642700001597404 ], [ 356070.645599998533726, 252984.996199999004602 ], [ 356069.02759999781847, 252985.616300001740456 ], [ 356068.208700001239777, 252987.087200000882149 ], [ 356068.14580000191927, 252994.475000001490116 ], [ 356062.43860000371933, 253001.816500000655651 ], [ 356061.587399996817112, 253007.086899999529123 ], [ 356050.291799999773502, 253007.838799998164177 ], [ 356048.688199996948242, 253006.770199999213219 ], [ 356048.808600001037121, 252992.627999998629093 ], [ 356045.615800000727177, 252988.802099999040365 ], [ 356043.207599997520447, 252987.515900000929832 ], [ 356038.371500000357628, 252987.2652000002563 ], [ 356023.033600002527237, 252989.250599998980761 ], [ 356018.982299998402596, 252991.539500001817942 ], [ 356018.136399999260902, 252996.176600001752377 ], [ 356016.521999999880791, 252996.374499998986721 ], [ 356015.764200001955032, 252990.668800000101328 ], [ 356021.447999998927116, 252986.071199998259544 ], [ 356023.085799999535084, 252983.129299998283386 ], [ 356027.140699997544289, 252980.418299999088049 ], [ 356027.192900002002716, 252974.296999998390675 ], [ 356029.645999997854233, 252970.30629999935627 ], [ 356029.672899998724461, 252967.140099998563528 ], [ 356026.460299998521805, 252965.636199999600649 ], [ 356020.009800001978874, 252965.583399999886751 ], [ 356019.959399998188019, 252971.493599999696016 ], [ 356022.356799997389317, 252974.046300001442432 ], [ 356022.322599999606609, 252978.056800000369549 ], [ 356010.992899999022484, 252982.819200001657009 ], [ 356003.658699996769428, 252991.836199998855591 ], [ 355998.754299998283386, 252999.606600001454353 ], [ 355990.664200000464916, 253002.706799998879433 ], [ 355987.419200003147125, 253005.002199999988079 ], [ 355981.769599996507168, 253005.589299999177456 ], [ 355981.744499996304512, 253008.544399999082088 ], [ 355977.678700000047684, 253012.521899998188019 ], [ 355974.397699996829033, 253019.038899999111891 ], [ 355968.703199997544289, 253024.902899999171495 ], [ 356037.378899998962879, 253103.780699998140335 ], [ 356041.372699998319149, 253108.246399998664856 ], [ 356053.548299998044968, 253098.846799999475479 ], [ 356051.167199999094009, 253094.394400000572205 ], [ 356067.363499999046326, 253086.294300001114607 ], [ 356088.471799999475479, 253077.862399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010100", "MAP": "A9-508-T98", "PARCEL_NAM": "T", "ACRE": null, "LONGITUDE": -64.95330932, "LATITUDE": 18.31816883, "OBJECTID_1": 87159, "PARCEL_NO_": "507104010100", "Tax_Legal_": "WATER ISLAND SOUTHSIDE QUARTER", "Name": "GOVERNMENT OF THE U. S. V. I.", "Address": "000 USVI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12173300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.93870224, "SHAPE_Area": 924.45663346900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356492.031000003218651, 254286.148600000888109 ], [ 356467.104000002145767, 254291.294799998402596 ], [ 356455.250699996948242, 254282.2195999994874 ], [ 356455.4324000030756, 254281.710799999535084 ], [ 356432.095899999141693, 254287.024300001561642 ], [ 356430.299900002777576, 254308.54109999909997 ], [ 356451.305399999022484, 254303.857900001108646 ], [ 356493.310900002717972, 254295.124699998646975 ], [ 356492.031000003218651, 254286.148600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022000", "MAP": "D9-7721-T006", "PARCEL_NAM": "64A", "ACRE": ".564", "LONGITUDE": -64.95329175000001, "LATITUDE": 18.31775241, "OBJECTID_1": 87213, "PARCEL_NO_": "507104022000", "Tax_Legal_": "64A & CONSOLIDATED LOT 64B WATER ISLAND 10 SOUTHSIDE QTR", "Name": "QUADE, PAUL & DEBORAH (TRUSTEES)", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 218900, "Improved_V": 248300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.529705495, "SHAPE_Area": 2009.987603 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356455.4324000030756, 254281.710799999535084 ], [ 356458.028800003230572, 254274.440799999982119 ], [ 356466.733599998056889, 254263.88399999961257 ], [ 356465.437100000679493, 254256.475600000470877 ], [ 356485.254399999976158, 254225.916299998760223 ], [ 356490.832000002264977, 254225.567699998617172 ], [ 356492.340300001204014, 254219.756299998611212 ], [ 356493.222099997103214, 254210.897599998861551 ], [ 356492.4391999989748, 254208.146999999880791 ], [ 356460.834700003266335, 254226.464499998837709 ], [ 356445.504000000655651, 254227.605599999427795 ], [ 356438.002599999308586, 254256.252999998629093 ], [ 356433.823600001633167, 254273.528400000184774 ], [ 356432.095899999141693, 254287.024300001561642 ], [ 356455.4324000030756, 254281.710799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022000", "MAP": "D9-7722-T006", "PARCEL_NAM": "64B", "ACRE": ".263", "LONGITUDE": -64.95311458, "LATITUDE": 18.31790315, "OBJECTID_1": 87213, "PARCEL_NO_": "507104022000", "Tax_Legal_": "64A & CONSOLIDATED LOT 64B WATER ISLAND 10 SOUTHSIDE QTR", "Name": "QUADE, PAUL & DEBORAH (TRUSTEES)", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 218900, "Improved_V": 248300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.10703894900001, "SHAPE_Area": 1330.7855280799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356455.4324000030756, 254281.710799999535084 ], [ 356455.250699996948242, 254282.2195999994874 ], [ 356467.104000002145767, 254291.294799998402596 ], [ 356492.031000003218651, 254286.148600000888109 ], [ 356490.267300002276897, 254273.77930000051856 ], [ 356487.986800000071526, 254257.506400000303984 ], [ 356487.302799999713898, 254243.146499998867512 ], [ 356489.005300000309944, 254232.605700001120567 ], [ 356490.832000002264977, 254225.567699998617172 ], [ 356485.254399999976158, 254225.916299998760223 ], [ 356465.437100000679493, 254256.475600000470877 ], [ 356466.733599998056889, 254263.88399999961257 ], [ 356458.028800003230572, 254274.440799999982119 ], [ 356455.4324000030756, 254281.710799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010100", "MAP": "D9-7756-T006", "PARCEL_NAM": "109-1", "ACRE": ".355", "LONGITUDE": -64.9477257, "LATITUDE": 18.32252384, "OBJECTID_1": 87322, "PARCEL_NO_": "507203010100", "Tax_Legal_": "109 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BIDEN, JAMES BIDEN SR. & SARA JONES", "Address": "27 RAYNHAM ROAD", "City": "MERION STATION", "State": "Pennsylvania", "Zip": 19066, "Country": "United States", "Land_Value": 124300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.99303874899999, "SHAPE_Area": 1880.7384896000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357058.412500001490116, 254804.447500001639128 ], [ 357068.303099997341633, 254769.904100000858307 ], [ 357059.259199999272823, 254763.172499999403954 ], [ 357031.742499999701977, 254751.530900001525879 ], [ 357027.980599999427795, 254762.850999999791384 ], [ 357023.857400000095367, 254773.583099998533726 ], [ 357015.636100001633167, 254802.060899998992682 ], [ 357058.412500001490116, 254804.447500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010100", "MAP": "D9-7756-T006", "PARCEL_NAM": "109-3", "ACRE": ".377", "LONGITUDE": -64.94761633, "LATITUDE": 18.32284159, "OBJECTID_1": 87322, "PARCEL_NO_": "507203010100", "Tax_Legal_": "109 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BIDEN, JAMES BIDEN SR. & SARA JONES", "Address": "27 RAYNHAM ROAD", "City": "MERION STATION", "State": "Pennsylvania", "Zip": 19066, "Country": "United States", "Land_Value": 124300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.40922853800001, "SHAPE_Area": 1198.29716229 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357083.855099998414516, 254819.862799998372793 ], [ 357058.412500001490116, 254804.447500001639128 ], [ 357015.636100001633167, 254802.060899998992682 ], [ 357013.886699996888638, 254808.120799999684095 ], [ 357052.440499998629093, 254825.957100000232458 ], [ 357079.750799998641014, 254838.424100000411272 ], [ 357083.855099998414516, 254819.862799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507203010100", "MAP": "D9-7756-T006", "PARCEL_NAM": "109-2", "ACRE": ".229", "LONGITUDE": -64.94741305, "LATITUDE": 18.3226487, "OBJECTID_1": 87322, "PARCEL_NO_": "507203010100", "Tax_Legal_": "109 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BIDEN, JAMES BIDEN SR. & SARA JONES", "Address": "27 RAYNHAM ROAD", "City": "MERION STATION", "State": "Pennsylvania", "Zip": 19066, "Country": "United States", "Land_Value": 124300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.898311474, "SHAPE_Area": 953.96308648399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357068.303099997341633, 254769.904100000858307 ], [ 357058.412500001490116, 254804.447500001639128 ], [ 357083.855099998414516, 254819.862799998372793 ], [ 357089.814900003373623, 254792.910199999809265 ], [ 357091.131700001657009, 254786.895799998193979 ], [ 357068.303099997341633, 254769.904100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201031000", "MAP": "A9-668-T006", "PARCEL_NAM": "4A", "ACRE": null, "LONGITUDE": -64.95976358, "LATITUDE": 18.30809193, "OBJECTID_1": 87358, "PARCEL_NO_": "509201031000", "Tax_Legal_": "4A,4C&143 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "ROCKY POINT, L. L. C.", "Address": "1314 Highway 179", "City": "Jefferson City", "State": "Missouri", "Zip": 65109, "Country": "United States", "Land_Value": 163900, "Improved_V": 412200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 371.401963572, "SHAPE_Area": 6012.0997373399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355817.195699997246265, 253218.387600000947714 ], [ 355817.042400002479553, 253134.3761 ], [ 355815.366099998354912, 253134.472100000828505 ], [ 355812.131800003349781, 253135.5011 ], [ 355805.688500002026558, 253134.603900000452995 ], [ 355795.244199998676777, 253130.085499998182058 ], [ 355790.436899997293949, 253126.457600001245737 ], [ 355788.023400001227856, 253125.804499998688698 ], [ 355788.064699999988079, 253120.949700001627207 ], [ 355789.704300001263618, 253117.796700000762939 ], [ 355792.143100000917912, 253115.494699999690056 ], [ 355792.160999998450279, 253113.383900001645088 ], [ 355787.330399997532368, 253112.5 ], [ 355784.889799997210503, 253115.013099998235703 ], [ 355784.868299998342991, 253117.546100001782179 ], [ 355782.425999999046326, 253120.270300000905991 ], [ 355782.346799999475479, 253129.557799998670816 ], [ 355780.712600000202656, 253132.077500000596046 ], [ 355777.496399998664856, 253130.995700001716614 ], [ 355774.269299998879433, 253131.180399999022484 ], [ 355772.645900003612041, 253132.433699999004602 ], [ 355769.415299996733665, 253133.040500000119209 ], [ 355764.530599996447563, 253138.489000000059605 ], [ 355758.870300002396107, 253140.342500001192093 ], [ 355754.032399997115135, 253140.30290000140667 ], [ 355742.704499997198582, 253144.854200001806021 ], [ 355734.646700002253056, 253144.155000001192093 ], [ 355734.626900002360344, 253146.47690000012517 ], [ 355737.826999999582767, 253149.458399999886751 ], [ 355738.602799996733665, 253153.053300000727177 ], [ 355745.017300002276897, 253157.3277000002563 ], [ 355744.972300000488758, 253162.604600001126528 ], [ 355742.531800001859665, 253165.117800001055002 ], [ 355740.883199997246265, 253169.326200000941753 ], [ 355738.471500001847744, 253168.462099999189377 ], [ 355736.851700000464916, 253169.293200001120567 ], [ 355736.032799996435642, 253170.76410000026226 ], [ 355736.812100000679493, 253173.936900001019239 ], [ 355739.207699999213219, 253176.700699999928474 ], [ 355742.422100000083447, 253177.993599999696016 ], [ 355743.210500001907349, 253180.111000001430511 ], [ 355745.607799999415874, 253182.663699999451637 ], [ 355750.429499998688698, 253184.603000000119209 ], [ 355749.601599998772144, 253187.129399999976158 ], [ 355750.346799999475479, 253194.312699999660254 ], [ 355753.539700001478195, 253198.1385000012815 ], [ 355758.370399996638298, 253199.022399999201298 ], [ 355760.758699998259544, 253202.630499999970198 ], [ 355760.737199999392033, 253205.163499999791384 ], [ 355757.479500003159046, 253208.936500001698732 ], [ 355756.63910000026226, 253212.940400000661612 ], [ 355758.240900002419949, 253214.220100000500679 ], [ 355763.899499997496605, 253212.577599998563528 ], [ 355766.314800001680851, 253213.019600000232458 ], [ 355765.47070000320673, 253217.445599999278784 ], [ 355766.241099998354912, 253221.673799999058247 ], [ 355817.195699997246265, 253218.387600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030500", "MAP": "A9-675-T006", "PARCEL_NAM": "4-REM", "ACRE": null, "LONGITUDE": -64.95910314, "LATITUDE": 18.30769244, "OBJECTID_1": 87353, "PARCEL_NO_": "509201030500", "Tax_Legal_": "4B-1,4B-2 & 4B REM (ROW) WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "GIDLEY FAMILY TRUST", "Address": "33 Water Is", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 198800, "Improved_V": 324300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.98072202399999, "SHAPE_Area": 1987.99517805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355817.098300002515316, 253164.982999999076128 ], [ 355831.902199998497963, 253164.348600000143051 ], [ 355835.736000001430511, 253150.504299998283386 ], [ 355847.024499997496605, 253138.363899998366833 ], [ 355859.803800001740456, 253137.298900000751019 ], [ 355868.110399998724461, 253136.872900001704693 ], [ 355880.037900000810623, 253125.158500000834465 ], [ 355896.084100000560284, 253124.399599999189377 ], [ 355897.100299999117851, 253100.310600001364946 ], [ 355893.860699996352196, 253101.972800001502037 ], [ 355890.588699996471405, 253107.434500001370907 ], [ 355888.965300001204014, 253108.687699999660254 ], [ 355887.36710000038147, 253106.98589999973774 ], [ 355885.002099998295307, 253100.633699998259544 ], [ 355882.592100001871586, 253099.558600001037121 ], [ 355880.932700000703335, 253105.033399999141693 ], [ 355877.678700000047684, 253108.384300000965595 ], [ 355876.067900002002716, 253108.160000000149012 ], [ 355874.482199996709824, 253104.980599999427795 ], [ 355871.248000003397465, 253106.00959999859333 ], [ 355869.588600002229214, 253111.484499998390675 ], [ 355865.512100003659725, 253116.728399999439716 ], [ 355867.086999997496605, 253121.174300000071526 ], [ 355867.067199997603893, 253123.496199999004602 ], [ 355865.447400003671646, 253124.327300000935793 ], [ 355861.426600001752377, 253123.027800001204014 ], [ 355858.219300001859665, 253120.890599999576807 ], [ 355853.388599999248981, 253120.006700001657009 ], [ 355853.410199999809265, 253117.473799999803305 ], [ 355857.450800001621246, 253116.451400000602007 ], [ 355859.088600002229214, 253113.509500000625849 ], [ 355858.296700000762939, 253111.8141999989748 ], [ 355853.483999997377396, 253108.819499999284744 ], [ 355853.514499999582767, 253105.231199998408556 ], [ 355849.493699997663498, 253103.931699998676777 ], [ 355846.241499997675419, 253107.07149999961257 ], [ 355848.649700000882149, 253108.357799999415874 ], [ 355850.238899998366833, 253111.114999998360872 ], [ 355851.020099997520447, 253114.076699998229742 ], [ 355850.177799999713898, 253118.291700001806021 ], [ 355845.314699999988079, 253121.20719999819994 ], [ 355844.54619999974966, 253116.767900001257658 ], [ 355838.900200001895428, 253116.932799998670816 ], [ 355836.470499999821186, 253118.179499998688698 ], [ 355835.651600003242493, 253119.650400001555681 ], [ 355835.622800000011921, 253123.027699999511242 ], [ 355830.754399999976158, 253126.576400000602007 ], [ 355825.056199997663498, 253132.86259999871254 ], [ 355821.820200003683567, 253134.102699998766184 ], [ 355817.042400002479553, 253134.3761 ], [ 355817.098300002515316, 253164.982999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030500", "MAP": "A9-675-T006", "PARCEL_NAM": "4B-2", "ACRE": ".272", "LONGITUDE": -64.95882808, "LATITUDE": 18.30793753, "OBJECTID_1": 87353, "PARCEL_NO_": "509201030500", "Tax_Legal_": "4B-1,4B-2 & 4B REM (ROW) WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "GIDLEY FAMILY TRUST", "Address": "33 Water Is", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 198800, "Improved_V": 324300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.23641812400001, "SHAPE_Area": 1828.0992427000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355860.933499999344349, 253137.24100000038743 ], [ 355863.850599996745586, 253169.673300001770258 ], [ 355873.009199999272823, 253175.850000001490116 ], [ 355881.142899997532368, 253192.287000000476837 ], [ 355892.178300000727177, 253189.4814000017941 ], [ 355904.744599997997284, 253191.185300000011921 ], [ 355916.443599998950958, 253196.094300001859665 ], [ 355893.996299996972084, 253180.711800001561642 ], [ 355895.079499997198582, 253148.21229999884963 ], [ 355896.084100000560284, 253124.399599999189377 ], [ 355880.037900000810623, 253125.158500000834465 ], [ 355868.110399998724461, 253136.872900001704693 ], [ 355860.933499999344349, 253137.24100000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030500", "MAP": "A9-675-T006", "PARCEL_NAM": "4B-REM", "ACRE": ".03", "LONGITUDE": -64.95875638, "LATITUDE": 18.30828282, "OBJECTID_1": 87353, "PARCEL_NO_": "509201030500", "Tax_Legal_": "4B-1,4B-2 & 4B REM (ROW) WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "GIDLEY FAMILY TRUST", "Address": "33 Water Is", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 198800, "Improved_V": 324300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.76950397900001, "SHAPE_Area": 265.111799357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355916.443599998950958, 253196.094300001859665 ], [ 355904.744599997997284, 253191.185300000011921 ], [ 355892.178300000727177, 253189.4814000017941 ], [ 355879.611900001764297, 253192.676199998706579 ], [ 355870.879299998283386, 253199.704900000244379 ], [ 355866.360500000417233, 253206.450100000947714 ], [ 355872.024499997496605, 253204.174499999731779 ], [ 355889.829899996519089, 253196.509700000286102 ], [ 355916.443599998950958, 253196.094300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030500", "MAP": "A9-675-T006", "PARCEL_NAM": "4B-1", "ACRE": ".619", "LONGITUDE": -64.95917439, "LATITUDE": 18.30816689, "OBJECTID_1": 87353, "PARCEL_NO_": "509201030500", "Tax_Legal_": "4B-1,4B-2 & 4B REM (ROW) WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "GIDLEY FAMILY TRUST", "Address": "33 Water Is", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 198800, "Improved_V": 324300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.30928252800001, "SHAPE_Area": 3382.0074169700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355881.142899997532368, 253192.287000000476837 ], [ 355873.009199999272823, 253175.850000001490116 ], [ 355863.850599996745586, 253169.673300001770258 ], [ 355860.933499999344349, 253137.24100000038743 ], [ 355859.803800001740456, 253137.298900000751019 ], [ 355847.024499997496605, 253138.363899998366833 ], [ 355835.736000001430511, 253150.504299998283386 ], [ 355831.902199998497963, 253164.348600000143051 ], [ 355817.098300002515316, 253164.982999999076128 ], [ 355817.195699997246265, 253218.387600000947714 ], [ 355838.85419999808073, 253216.990800000727177 ], [ 355842.081200003623962, 253216.806099999696016 ], [ 355866.360500000417233, 253206.450100000947714 ], [ 355870.879299998283386, 253199.704900000244379 ], [ 355879.611900001764297, 253192.676199998706579 ], [ 355881.142899997532368, 253192.287000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021400", "MAP": "D9-7787-T006", "PARCEL_NAM": "83", "ACRE": "1.68", "LONGITUDE": -64.95357219, "LATITUDE": 18.31872301, "OBJECTID_1": 87207, "PARCEL_NO_": "507104021400", "Tax_Legal_": "83 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BITTERWOLF, ROBIN", "Address": "41 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97200, "Improved_V": 117000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 345.69935650299999, "SHAPE_Area": 7572.35619133 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356485.280900001525879, 254385.829199999570847 ], [ 356466.319600000977516, 254339.866700001060963 ], [ 356451.305399999022484, 254303.857900001108646 ], [ 356430.299900002777576, 254308.54109999909997 ], [ 356372.938400000333786, 254321.37049999833107 ], [ 356378.386600002646446, 254344.424300000071526 ], [ 356385.474399998784065, 254364.325100000947714 ], [ 356406.861800000071526, 254409.463100001215935 ], [ 356485.280900001525879, 254385.829199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104013200", "MAP": "D9-8076-T008", "PARCEL_NAM": "91-1", "ACRE": ".229", "LONGITUDE": -64.95280766, "LATITUDE": 18.32095583, "OBJECTID_1": 87191, "PARCEL_NO_": "507104013200", "Tax_Legal_": "91-1 WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "MEGAN BOYLE REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.51497575, "SHAPE_Area": 893.41383412599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356505.585500001907349, 254582.94990000128746 ], [ 356485.672100000083447, 254617.498500000685453 ], [ 356493.707599997520447, 254627.178100001066923 ], [ 356532.425599999725819, 254593.841499999165535 ], [ 356505.585500001907349, 254582.94990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202031100", "MAP": "D9-7819-T006", "PARCEL_NAM": "13-1", "ACRE": ".23", "LONGITUDE": -64.95544138, "LATITUDE": 18.30821216, "OBJECTID_1": 87396, "PARCEL_NO_": "509202031100", "Tax_Legal_": "13 WATER ISLAND NO.10 SOUTSIDE QTR", "Name": "BAILEY A. CALHOUN REV. TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025819, "Country": "United States", "Land_Value": 96200, "Improved_V": 4600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.975967821, "SHAPE_Area": 618.00053899600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356238.689300000667572, 253174.245000001043081 ], [ 356222.938199996948242, 253199.840300001204014 ], [ 356236.445299997925758, 253210.956799998879433 ], [ 356257.97860000282526, 253177.382599998265505 ], [ 356238.689300000667572, 253174.245000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202031100", "MAP": "D9-7817-T006", "PARCEL_NAM": "13", "ACRE": ".45", "LONGITUDE": -64.9551848, "LATITUDE": 18.30830443, "OBJECTID_1": 87396, "PARCEL_NO_": "509202031100", "Tax_Legal_": "13 WATER ISLAND NO.10 SOUTSIDE QTR", "Name": "BAILEY A. CALHOUN REV. TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025819, "Country": "United States", "Land_Value": 96200, "Improved_V": 4600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.134779799, "SHAPE_Area": 1775.06143918 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356270.960299998521805, 253229.604400001466274 ], [ 356297.13459999859333, 253186.12220000103116 ], [ 356281.049699999392033, 253181.135400000959635 ], [ 356274.454999998211861, 253180.062699999660254 ], [ 356257.97860000282526, 253177.382599998265505 ], [ 356236.445299997925758, 253210.956799998879433 ], [ 356241.259800001978874, 253213.74040000140667 ], [ 356253.082900002598763, 253219.8429000005126 ], [ 356253.300599999725819, 253220.171700000762939 ], [ 356270.960299998521805, 253229.604400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201031100", "MAP": "D9-9403-T019", "PARCEL_NAM": "142-1", "ACRE": "0.27", "LONGITUDE": -64.95866244, "LATITUDE": 18.30848276, "OBJECTID_1": 87359, "PARCEL_NO_": "509201031100", "Tax_Legal_": "142-1 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "NIGAMATOVA, ANNA", "Address": "159 Chestnut Mountain Rd", "City": "Travelers Rest", "State": "South Carolina", "Zip": 29690, "Country": "United States", "Land_Value": 59500, "Improved_V": 292600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.24560899299999, "SHAPE_Area": 1291.84590869 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355875.938699997961521, 253226.783700000494719 ], [ 355905.834399998188019, 253236.940499998629093 ], [ 355921.497699998319149, 253228.473900001496077 ], [ 355920.227700002491474, 253222.547200001776218 ], [ 355921.285999998450279, 253215.350499998778105 ], [ 355912.168499998748302, 253201.760299999266863 ], [ 355905.771700002253056, 253200.256799999624491 ], [ 355888.5574000030756, 253201.834800001233816 ], [ 355879.82490000128746, 253206.94649999961257 ], [ 355873.777699999511242, 253214.301199998706579 ], [ 355875.938699997961521, 253226.783700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202031500", "MAP": null, "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.95764007, "LATITUDE": 18.30909256, "OBJECTID_1": 87400, "PARCEL_NO_": "509202031500", "Tax_Legal_": "7 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "AUTHUR, RUTH", "Address": "LOT 7 WATER ISLAND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 137400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.540966567, "SHAPE_Area": 3080.84333853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355980.726700000464916, 253262.28830000013113 ], [ 355983.105700001120567, 253322.029399998486042 ], [ 356042.090599998831749, 253307.946800000965595 ], [ 356027.817900002002716, 253279.543400000780821 ], [ 356018.469400003552437, 253241.047899998724461 ], [ 356007.07320000231266, 253253.620200000703335 ], [ 355999.789399996399879, 253256.727000001817942 ], [ 355987.691100001335144, 253257.050200000405312 ], [ 355980.439999997615814, 253255.088199999183416 ], [ 355980.726700000464916, 253262.28830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030800", "MAP": "D9-7951-T007", "PARCEL_NAM": "142-REM", "ACRE": "1.5", "LONGITUDE": -64.95832295, "LATITUDE": 18.30889855, "OBJECTID_1": 87356, "PARCEL_NO_": "509201030800", "Tax_Legal_": "142 REMAINDER WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "HERMAN, MARIE J", "Address": "PO Box 308145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 194200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 397.78167131100003, "SHAPE_Area": 6746.0786655100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355912.168499998748302, 253201.760299999266863 ], [ 355921.285999998450279, 253215.350499998778105 ], [ 355920.227700002491474, 253222.547200001776218 ], [ 355921.497699998319149, 253228.473900001496077 ], [ 355905.834399998188019, 253236.940499998629093 ], [ 355875.938699997961521, 253226.783700000494719 ], [ 355876.635799996554852, 253230.809999998658895 ], [ 355875.701800003647804, 253245.78999999910593 ], [ 355876.488300003111362, 253248.118500001728535 ], [ 355876.326499998569489, 253267.115600001066923 ], [ 355877.107600003480911, 253270.077300000935793 ], [ 355903.294399999082088, 253277.792199999094009 ], [ 355938.431000001728535, 253303.615499999374151 ], [ 355983.105700001120567, 253322.029399998486042 ], [ 355980.726700000464916, 253262.28830000013113 ], [ 355980.439999997615814, 253255.088199999183416 ], [ 355973.209899999201298, 253253.131999999284744 ], [ 355968.391800001263618, 253250.770500000566244 ], [ 355960.398800000548363, 253242.47239999845624 ], [ 355941.243299998342991, 253219.306400001049042 ], [ 355919.605899997055531, 253203.508400000631809 ], [ 355912.168499998748302, 253201.760299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95909021, "LATITUDE": 18.31460623, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 675.04799043000003, "SHAPE_Area": 2518.6307539899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355819.814099997282028, 253937.508400000631809 ], [ 355824.664599999785423, 253936.07039999961853 ], [ 355840.785499997437, 253936.83559999987483 ], [ 355849.633299998939037, 253939.441199999302626 ], [ 355863.524099998176098, 253918.023299999535084 ], [ 355895.236400000751019, 253887.041000001132488 ], [ 355913.149700000882149, 253866.711500000208616 ], [ 355913.196400001645088, 253861.223499998450279 ], [ 355910.053900003433228, 253851.487500000745058 ], [ 355902.854599997401237, 253844.673599999397993 ], [ 355898.027500003576279, 253843.367499999701977 ], [ 355889.769299998879433, 253841.133000001311302 ], [ 355885.384780345717445, 253842.642649621440796 ], [ 355881.243400000035763, 253844.728799998760223 ], [ 355868.957774431328289, 253851.2410308207036 ], [ 355856.464915594726335, 253857.346292811882449 ], [ 355843.778300002217293, 253863.037999998778105 ], [ 355839.372496546711773, 253865.446093848615419 ], [ 355834.733872968121432, 253867.367861621663906 ], [ 355829.915921194653492, 253868.781141773157287 ], [ 355824.974201141274534, 253869.669636563194217 ], [ 355819.965700000524521, 253870.02309999987483 ], [ 355817.805522912647575, 253871.002811840851791 ], [ 355815.784195795771666, 253872.243955276964698 ], [ 355813.933200001716614, 253873.727200001478195 ], [ 355809.27204984263517, 253880.246155075292336 ], [ 355804.302400000393391, 253886.533100001513958 ], [ 355800.068861796695273, 253889.704269626527093 ], [ 355795.577384918055031, 253892.498155444016447 ], [ 355790.86150000244379, 253894.893899999558926 ], [ 355785.08139233692782, 253898.918847139168065 ], [ 355779.536903598462231, 253903.262634510931093 ], [ 355774.245600000023842, 253907.911499999463558 ], [ 355778.381999999284744, 253911.175400000065565 ], [ 355815.940499998629093, 253940.497400000691414 ], [ 355816.569099999964237, 253939.803800001740456 ], [ 355819.814099997282028, 253937.508400000631809 ] ], [ [ 355849.422200001776218, 253869.567499998956919 ], [ 355893.965400002896786, 253846.922800000756979 ], [ 355901.222199998795986, 253846.982200000435114 ], [ 355906.024099998176098, 253851.243400000035763 ], [ 355906.731499999761581, 253862.859299998730421 ], [ 355896.132600001990795, 253876.493700001388788 ], [ 355889.629900000989437, 253882.562199998646975 ], [ 355876.576099999248981, 253900.398299999535084 ], [ 355848.28320000320673, 253908.610500000417233 ], [ 355817.409599997103214, 253935.799899999052286 ], [ 355784.566600002348423, 253910.19990000128746 ], [ 355809.765500001609325, 253886.552600000053644 ], [ 355817.893299996852875, 253879.01969999819994 ], [ 355834.863600000739098, 253874.725600000470877 ], [ 355849.422200001776218, 253869.567499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507103010500", "MAP": "D9-7969-T007", "PARCEL_NAM": "56", "ACRE": "1.2", "LONGITUDE": -64.9602746, "LATITUDE": 18.31468534, "OBJECTID_1": 87157, "PARCEL_NO_": "507103010500", "Tax_Legal_": "56 WATER ISLAND 10&11 SOUTHSIDE QTR.", "Name": "SHIPWRECK POINT LLC", "Address": "17 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 269200, "Improved_V": 506500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.32743561199999, "SHAPE_Area": 5525.6838132299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355728.524599999189377, 253957.448399998247623 ], [ 355761.898100003600121, 253920.780099999159575 ], [ 355765.987199999392033, 253914.058600001037121 ], [ 355769.230400003492832, 253911.974199999123812 ], [ 355766.825900003314018, 253910.265799999237061 ], [ 355762.047399997711182, 253903.260600000619888 ], [ 355756.476899996399879, 253894.560199998319149 ], [ 355750.647299997508526, 253885.455200001597404 ], [ 355750.124099999666214, 253885.014600001275539 ], [ 355721.445100001990795, 253841.922200001776218 ], [ 355693.827299997210503, 253865.549800001084805 ], [ 355697.831900000572205, 253868.749000001698732 ], [ 355698.620200000703335, 253870.866300001740456 ], [ 355697.751000002026558, 253878.247499998658895 ], [ 355690.447400003671646, 253883.676199998706579 ], [ 355689.606899999082088, 253887.680100001394749 ], [ 355687.170000001788139, 253889.771099999547005 ], [ 355687.943899996578693, 253893.577100001275539 ], [ 355692.72070000320673, 253900.793299999088049 ], [ 355693.487400002777576, 253905.44370000064373 ], [ 355690.247800000011921, 253907.105900000780821 ], [ 355689.428900003433228, 253908.576900001615286 ], [ 355690.152500003576279, 253918.293099999427795 ], [ 355689.331799998879433, 253919.975099999457598 ], [ 355686.902099996805191, 253921.221799999475479 ], [ 355684.457999996840954, 253924.1570999994874 ], [ 355685.197700001299381, 253931.973600000143051 ], [ 355687.598700001835823, 253934.104200001806021 ], [ 355702.846699997782707, 253942.672699999064207 ], [ 355705.267399996519089, 253942.481499999761581 ], [ 355709.340400002896786, 253937.659600000828505 ], [ 355712.565600000321865, 253937.686000000685453 ], [ 355714.957599997520447, 253940.872000001370907 ], [ 355712.506300002336502, 253944.651599999517202 ], [ 355713.267599999904633, 253949.935199998319149 ], [ 355714.873099997639656, 253950.792700000107288 ], [ 355716.491099998354912, 253950.172699999064207 ], [ 355716.527000002563, 253945.951099999248981 ], [ 355718.141500003635883, 253945.753199998289347 ], [ 355720.540600001811981, 253948.094900000840425 ], [ 355722.918200001120567, 253952.969500001519918 ], [ 355728.524599999189377, 253957.448399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": null, "PARCEL_NAM": "B", "ACRE": null, "LONGITUDE": -64.95842506, "LATITUDE": 18.31453094, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.78495407700001, "SHAPE_Area": 1288.5851559600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355897.435900002717972, 253839.966299999505281 ], [ 355893.569587292498909, 253840.332717430428602 ], [ 355889.769299998879433, 253841.133000001311302 ], [ 355898.027500003576279, 253843.367499999701977 ], [ 355902.854599997401237, 253844.673599999397993 ], [ 355910.053900003433228, 253851.487500000745058 ], [ 355913.196400001645088, 253861.223499998450279 ], [ 355913.149700000882149, 253866.711500000208616 ], [ 355912.27139999717474, 253875.14809999987483 ], [ 355909.392200000584126, 253929.164500001817942 ], [ 355938.608199998736382, 253907.238800000399351 ], [ 355933.824299998581409, 253900.866799999028444 ], [ 355929.859300002455711, 253893.023899998515844 ], [ 355925.940999999642372, 253879.692899998277426 ], [ 355922.843400001525879, 253864.679999999701977 ], [ 355918.115199998021126, 253851.764499999582767 ], [ 355916.481916121090762, 253848.400852617749479 ], [ 355914.424372191191651, 253845.278633389651077 ], [ 355911.97763395117363, 253842.45105281312135 ], [ 355909.183399997651577, 253839.966299999505281 ], [ 355906.886355449154507, 253839.263780280249193 ], [ 355904.510685762914363, 253838.90861671869061 ], [ 355902.108614237455186, 253838.90861671869061 ], [ 355899.732944551215041, 253839.263780280249193 ], [ 355897.435900002717972, 253839.966299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507103010400", "MAP": "D9-7969-T007", "PARCEL_NAM": "55", "ACRE": "1.0", "LONGITUDE": -64.9597992, "LATITUDE": 18.31514863, "OBJECTID_1": 87156, "PARCEL_NO_": "507103010400", "Tax_Legal_": "55 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SHIPWRECK POINT LLC", "Address": "17 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 198800, "Improved_V": 15300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.88351819100001, "SHAPE_Area": 3746.6607759499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355815.940499998629093, 253940.497400000691414 ], [ 355778.381999999284744, 253911.175400000065565 ], [ 355778.10530000180006, 253911.413600001484156 ], [ 355777.279200002551079, 253913.728799998760223 ], [ 355773.208099998533726, 253918.339600000530481 ], [ 355769.954000003635883, 253921.690400000661612 ], [ 355728.48870000243187, 253961.669900000095367 ], [ 355732.493199996650219, 253964.869100000709295 ], [ 355754.0658999979496, 253988.265999998897314 ], [ 355760.439099997282028, 253997.395199999213219 ], [ 355762.066100001335144, 253995.719700001180172 ], [ 355762.899400003254414, 253992.560100000351667 ], [ 355766.889600001275539, 253997.447999998927116 ], [ 355772.540899999439716, 253996.64979999884963 ], [ 355778.2246999964118, 253992.052299998700619 ], [ 355779.916400000452995, 253982.778000000864267 ], [ 355778.329000003635883, 253979.80970000103116 ], [ 355779.164099998772144, 253976.439100001007318 ], [ 355783.217200003564358, 253973.939100001007318 ], [ 355786.433499999344349, 253975.020899999886751 ], [ 355793.728000000119209, 253970.647599998861551 ], [ 355795.356799997389317, 253968.761100001633167 ], [ 355796.21169999986887, 253963.068599998950958 ], [ 355797.847699999809265, 253960.337799999862909 ], [ 355801.909800000488758, 253956.782400000840425 ], [ 355805.144100002944469, 253955.753400001674891 ], [ 355807.545000001788139, 253957.88399999961257 ], [ 355809.965800002217293, 253957.692699998617172 ], [ 355810.870999999344349, 253946.089999999850988 ], [ 355815.940499998629093, 253940.497400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012500", "MAP": "D9-8909-T014", "PARCEL_NAM": "71", "ACRE": ".52", "LONGITUDE": -64.95561324000001, "LATITUDE": 18.31783859, "OBJECTID_1": 87184, "PARCEL_NO_": "507104012500", "Tax_Legal_": "71 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "HONEYWATER II LLLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.438678232, "SHAPE_Area": 2359.2355751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356210.51349999755621, 254234.7652000002563 ], [ 356191.528200000524521, 254224.049300000071526 ], [ 356189.058899998664856, 254229.939699999988079 ], [ 356173.470600001513958, 254249.020799998193979 ], [ 356222.451099999248981, 254285.730599999427795 ], [ 356237.034800000488758, 254277.617300000041723 ], [ 356252.932899996638298, 254267.6570999994874 ], [ 356254.817400000989437, 254266.476500000804663 ], [ 356231.377400003373623, 254246.541400000452995 ], [ 356210.51349999755621, 254234.7652000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012500", "MAP": "D9-8908-T014", "PARCEL_NAM": "71B", "ACRE": ".23", "LONGITUDE": -64.95580881, "LATITUDE": 18.31812256, "OBJECTID_1": 87184, "PARCEL_NO_": "507104012500", "Tax_Legal_": "71 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "HONEYWATER II LLLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.82271439799999, "SHAPE_Area": 1130.7311906 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356222.451099999248981, 254285.730599999427795 ], [ 356195.156199999153614, 254265.273699998855591 ], [ 356185.543799996376038, 254275.001800000667572 ], [ 356162.662699997425079, 254298.15819999948144 ], [ 356176.082900002598763, 254306.326999999582767 ], [ 356208.682599999010563, 254292.795099999755621 ], [ 356210.540700003504753, 254291.84180000051856 ], [ 356222.451099999248981, 254285.730599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012500", "MAP": "D9-8908-T014", "PARCEL_NAM": "71A", "ACRE": ".29", "LONGITUDE": -64.95617856, "LATITUDE": 18.31830414, "OBJECTID_1": 87184, "PARCEL_NO_": "507104012500", "Tax_Legal_": "71 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "HONEYWATER II LLLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.833004082, "SHAPE_Area": 646.39046426300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356176.082900002598763, 254306.326999999582767 ], [ 356148.298900000751019, 254289.41499999910593 ], [ 356137.55629999935627, 254312.2668999992311 ], [ 356136.737400002777576, 254313.737799998372793 ], [ 356137.484399996697903, 254320.71000000089407 ], [ 356139.887100003659725, 254322.62950000166893 ], [ 356143.108800001442432, 254323.078099999576807 ], [ 356158.502400003373623, 254314.549199998378754 ], [ 356165.793399997055531, 254310.598099999129772 ], [ 356176.082900002598763, 254306.326999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012500", "MAP": "D9-8908-T014", "PARCEL_NAM": "71C", "ACRE": ".23", "LONGITUDE": -64.95601294, "LATITUDE": 18.31800096, "OBJECTID_1": 87184, "PARCEL_NO_": "507104012500", "Tax_Legal_": "71 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "HONEYWATER II LLLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.10144253600001, "SHAPE_Area": 1090.5329426799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356195.156199999153614, 254265.273699998855591 ], [ 356173.470600001513958, 254249.020799998193979 ], [ 356164.066100001335144, 254260.532600000500679 ], [ 356158.9087999984622, 254266.845400001853704 ], [ 356148.298900000751019, 254289.41499999910593 ], [ 356162.662699997425079, 254298.15819999948144 ], [ 356185.543799996376038, 254275.001800000667572 ], [ 356195.156199999153614, 254265.273699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010600", "MAP": "D9-8076-T008", "PARCEL_NAM": "91-REM", "ACRE": ".465", "LONGITUDE": -64.95277336, "LATITUDE": 18.32065018, "OBJECTID_1": 87164, "PARCEL_NO_": "507104010600", "Tax_Legal_": "91-2&91 REMAINDER WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "TEWATEENIETHA EVANS MARITAL TRUST", "Address": "PO BOX 474", "City": "HAILEY", "State": "Idaho", "Zip": 83333, "Country": "United States", "Land_Value": 98000, "Improved_V": 187300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.79386348099999, "SHAPE_Area": 1637.6120777900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356475.486299999058247, 254570.735700000077486 ], [ 356532.425599999725819, 254593.841499999165535 ], [ 356540.822599999606609, 254586.6114999987185 ], [ 356536.866599999368191, 254577.713199999183416 ], [ 356536.140399999916553, 254574.175900001078844 ], [ 356533.335799999535084, 254568.566599998623133 ], [ 356526.519400000572205, 254561.796500001102686 ], [ 356511.301899999380112, 254549.639600001275539 ], [ 356502.493600003421307, 254542.390399999916553 ], [ 356475.486299999058247, 254570.735700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010600", "MAP": "D9-8076-T008", "PARCEL_NAM": "91-2", "ACRE": ".245", "LONGITUDE": -64.95303289, "LATITUDE": 18.32084479, "OBJECTID_1": 87164, "PARCEL_NO_": "507104010600", "Tax_Legal_": "91-2&91 REMAINDER WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "TEWATEENIETHA EVANS MARITAL TRUST", "Address": "PO BOX 474", "City": "HAILEY", "State": "Idaho", "Zip": 83333, "Country": "United States", "Land_Value": 98000, "Improved_V": 187300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.44611543600001, "SHAPE_Area": 1081.1332493499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356485.672100000083447, 254617.498500000685453 ], [ 356505.585500001907349, 254582.94990000128746 ], [ 356475.486299999058247, 254570.735700000077486 ], [ 356460.184199996292591, 254586.795899998396635 ], [ 356485.672100000083447, 254617.498500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010100", "MAP": "D9-8085-T008", "PARCEL_NAM": "49", "ACRE": ".442", "LONGITUDE": -64.95703832, "LATITUDE": 18.31419715, "OBJECTID_1": 87361, "PARCEL_NO_": "509202010100", "Tax_Legal_": "49&49A WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CUTLER LEVESQUE TRUST", "Address": "1003 Livezey Ln", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19119, "Country": "United States", "Land_Value": 135400, "Improved_V": 562400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.516974877, "SHAPE_Area": 1806.8804238 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356062.333099998533726, 253823.852000001817942 ], [ 356060.830300003290176, 253826.210999999195337 ], [ 356058.611400000751019, 253829.694099999964237 ], [ 356034.947800002992153, 253862.431099999696016 ], [ 356055.019299998879433, 253872.727800000458956 ], [ 356071.060999996960163, 253882.780499998480082 ], [ 356089.145199999213219, 253842.398600000888109 ], [ 356091.158699996769428, 253838.37950000166893 ], [ 356092.624499998986721, 253835.1081000007689 ], [ 356084.967600002884865, 253831.589600000530481 ], [ 356077.583094880043063, 253828.556373769359197 ], [ 356070.029094030149281, 253825.974039856286254 ], [ 356062.333099998533726, 253823.852000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202031000", "MAP": "D9-8108-T008", "PARCEL_NAM": "14", "ACRE": ".673", "LONGITUDE": -64.95473715, "LATITUDE": 18.30840444, "OBJECTID_1": 87395, "PARCEL_NO_": "509202031000", "Tax_Legal_": "14 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "WERNER, B. & GLENN & CHERYL A. & ROBERT W. CARROLL", "Address": "248 Franklin Rd", "City": "Glencoe", "State": "Illinois", "Zip": 60022, "Country": "United States", "Land_Value": 119200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.75176847500001, "SHAPE_Area": 2373.6277687199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356309.670500002801418, 253229.076799999922514 ], [ 356318.516599997878075, 253231.893500000238419 ], [ 356330.5591000020504, 253238.113699998706579 ], [ 356355.815499998629093, 253207.711899999529123 ], [ 356326.086300000548363, 253195.225099999457598 ], [ 356297.13459999859333, 253186.12220000103116 ], [ 356270.960299998521805, 253229.604400001466274 ], [ 356288.722599998116493, 253227.00560000166297 ], [ 356298.396499998867512, 253227.295800000429153 ], [ 356309.670500002801418, 253229.076799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507103010100", "MAP": "D9-8164-T008", "PARCEL_NAM": "51-A", "ACRE": ".50", "LONGITUDE": -64.95834926000001, "LATITUDE": 18.31498259, "OBJECTID_1": 87153, "PARCEL_NO_": "507103010100", "Tax_Legal_": "51-REM WATER ISLAND\nNO.10 SOUTHSIDE QTR", "Name": "WAVERLY HALE & JANICE E COSSILL ROBINSON LIV TRUST", "Address": "10500 Mount Holly Rd", "City": "Charlotte", "State": "North Carolina", "Zip": 28214, "Country": "United States", "Land_Value": 116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.789744044, "SHAPE_Area": 1717.88323461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355909.215599998831749, 253968.278400000184774 ], [ 355957.292099997401237, 253931.758799999952316 ], [ 355938.608199998736382, 253907.238800000399351 ], [ 355909.392200000584126, 253929.164500001817942 ], [ 355897.8412000015378, 253959.889600001275539 ], [ 355902.657499998807907, 253962.462099999189377 ], [ 355909.059500001370907, 253968.214099999517202 ], [ 355909.215599998831749, 253968.278400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021900", "MAP": "D9-8127-T008", "PARCEL_NAM": "62-REM", "ACRE": "1.275", "LONGITUDE": -64.95226855, "LATITUDE": 18.31756239, "OBJECTID_1": 87212, "PARCEL_NO_": "507104021900", "Tax_Legal_": "62 REM WATER ISLAND NO.10 SOUTHSIDE QUARTER", "Name": "BERTRAND, ISLA", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 233100, "Improved_V": 249700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.88404725599997, "SHAPE_Area": 5386.9415220399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356613.419399999082088, 254201.524700000882149 ], [ 356519.919600002467632, 254193.514400001615286 ], [ 356514.178999997675419, 254211.913499999791384 ], [ 356534.857199996709824, 254245.646600000560284 ], [ 356582.15990000218153, 254277.697799999266863 ], [ 356597.604000002145767, 254263.258699998259544 ], [ 356606.700000002980232, 254236.735399998724461 ], [ 356608.424099996685982, 254223.661699999123812 ], [ 356613.419399999082088, 254201.524700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.9584018, "LATITUDE": 18.31332011, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 578.03468070199995, "SHAPE_Area": 7699.014587 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355994.721400000154972, 253756.977200001478195 ], [ 356001.992600001394749, 253755.348000001162291 ], [ 356014.085500001907349, 253755.658100001513958 ], [ 356020.525200001895428, 253756.977299999445677 ], [ 356026.950499996542931, 253759.985199999064207 ], [ 356030.181100003421307, 253759.378400001674891 ], [ 356035.881099998950958, 253752.881099998950958 ], [ 356037.614200003445148, 253738.752099998295307 ], [ 356032.993900001049042, 253713.171900000423193 ], [ 356031.39019999653101, 253712.103300001472235 ], [ 356028.969499997794628, 253712.294599998742342 ], [ 355991.66160000115633, 253737.531599998474121 ], [ 355972.277699999511242, 253741.172600001096725 ], [ 355954.452500000596046, 253751.159200001507998 ], [ 355946.360600002110004, 253754.470499999821186 ], [ 355933.438000001013279, 253756.897900000214577 ], [ 355926.18299999833107, 253756.627399999648333 ], [ 355917.340499997138977, 253753.388599999248981 ], [ 355899.756300002336502, 253735.090599998831749 ], [ 355894.93639999628067, 253732.94029999896884 ], [ 355890.886900000274181, 253735.018100000917912 ], [ 355884.438199996948242, 253734.754200000315905 ], [ 355879.616499997675419, 253732.814899999648333 ], [ 355878.034400001168251, 253729.213300000876188 ], [ 355876.423600003123283, 253728.989100001752377 ], [ 355873.990299999713898, 253730.657900001853704 ], [ 355866.740699999034405, 253729.754200000315905 ], [ 355862.721699997782707, 253728.243599999696016 ], [ 355861.933399997651577, 253726.126200001686811 ], [ 355860.326099999248981, 253725.479800000786781 ], [ 355857.901799999177456, 253726.093199998140335 ], [ 355852.223399996757507, 253730.057599999010563 ], [ 355848.99099999666214, 253730.875500001013279 ], [ 355832.056599996984005, 253730.947999998927116 ], [ 355828.048500001430511, 253728.170899998396635 ], [ 355816.790600001811981, 253724.490200001746416 ], [ 355812.803999997675419, 253719.18019999936223 ], [ 355810.920699998736382, 253718.008400000631809 ], [ 355812.473800003528595, 253742.662799999117851 ], [ 355832.793799996376038, 253749.171599999070168 ], [ 355829.773400001227856, 253765.096999999135733 ], [ 355846.433390872611199, 253769.176627741311677 ], [ 355863.212941437843256, 253772.732656590495026 ], [ 355880.095600001513958, 253775.761599998921156 ], [ 355892.36370000243187, 253780.353100001811981 ], [ 355898.892854043340776, 253782.937264827429317 ], [ 355905.620257613540161, 253784.949676698481198 ], [ 355912.495946889801417, 253786.37538961233804 ], [ 355919.468856743886136, 253787.203814926964696 ], [ 355926.487199999392033, 253787.428800001740456 ], [ 355935.783797405951191, 253786.495834186585853 ], [ 355945.022158670355566, 253785.099471160501707 ], [ 355954.179200001060963, 253783.243200000375509 ], [ 355986.62049999833107, 253761.343899998813868 ], [ 355994.721400000154972, 253756.977200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201010500", "MAP": "D9-8062-T007", "PARCEL_NAM": "60", "ACRE": null, "LONGITUDE": -64.95975853, "LATITUDE": 18.31276049, "OBJECTID_1": 87349, "PARCEL_NO_": "509201010500", "Tax_Legal_": "60-1 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "LANGKAMMERER, CARL M.,JR. & MARTHA WALLIN LANGKAMMERER", "Address": "316 Sportsman Hall Rd", "City": "Queenstown", "State": "Maryland", "Zip": 21658, "Country": "United States", "Land_Value": 214000, "Improved_V": 223100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.626974023, "SHAPE_Area": 1730.3789897700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355756.82769999653101, 253713.95549999922514 ], [ 355767.547499999403954, 253714.087799999862909 ], [ 355763.737499997019768, 253699.959100000560284 ], [ 355768.817500002682209, 253696.307799998670816 ], [ 355780.088799998164177, 253704.245299998670816 ], [ 355803.643799997866154, 253729.054800000041723 ], [ 355802.417300000786781, 253707.907299999147654 ], [ 355798.412699997425079, 253704.708099998533726 ], [ 355796.823399998247623, 253701.950899999588728 ], [ 355797.645900003612041, 253700.057799998670816 ], [ 355801.677500002086163, 253700.090799998492002 ], [ 355800.89639999717474, 253697.129099998623133 ], [ 355800.921499997377396, 253694.1739999987185 ], [ 355798.513400003314018, 253692.887699998915195 ], [ 355796.071099996566772, 253695.611900001764297 ], [ 355793.659299999475479, 253694.747800000011921 ], [ 355793.695299997925758, 253690.526200000196695 ], [ 355792.905199997127056, 253688.619899999350309 ], [ 355793.74379999935627, 253684.827100001275539 ], [ 355797.793399997055531, 253682.749299999326468 ], [ 355797.82039999961853, 253679.583099998533726 ], [ 355793.822999998927116, 253675.539599999785423 ], [ 355793.876900002360344, 253669.207299999892712 ], [ 355792.291299998760223, 253666.027899999171495 ], [ 355786.688400000333786, 253661.126899998635054 ], [ 355785.108199998736382, 253657.3141999989748 ], [ 355782.69820000231266, 253656.239100001752377 ], [ 355781.065800003707409, 253658.547699999064207 ], [ 355780.246899999678135, 253660.018699999898672 ], [ 355772.954099997878075, 253664.180900000035763 ], [ 355777.759700000286102, 253668.019900001585484 ], [ 355777.736299999058247, 253670.763900000602007 ], [ 355780.941699996590614, 253673.112199999392033 ], [ 355782.529200002551079, 253676.08049999922514 ], [ 355782.498599998652935, 253679.668800000101328 ], [ 355780.059900000691414, 253681.970899999141693 ], [ 355778.449100002646446, 253681.746599998325109 ], [ 355774.466099999845028, 253676.014499999582767 ], [ 355772.855200000107288, 253675.790199998766184 ], [ 355771.229999996721745, 253677.25450000166893 ], [ 355769.620999999344349, 253676.819200001657009 ], [ 355768.830899998545647, 253674.912900000810623 ], [ 355766.424500003457069, 253673.415500000119209 ], [ 355766.451499998569489, 253670.249400001019239 ], [ 355764.864100001752377, 253667.280999999493361 ], [ 355760.017200000584126, 253668.296799998730421 ], [ 355757.601800002157688, 253667.854899998754263 ], [ 355755.197300001978874, 253666.146499998867512 ], [ 355756.82769999653101, 253713.95549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201010400", "MAP": "D9-8060-T007", "PARCEL_NAM": "59", "ACRE": ".2692", "LONGITUDE": -64.96018232, "LATITUDE": 18.31350649, "OBJECTID_1": 87348, "PARCEL_NO_": "509201010400", "Tax_Legal_": "59 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "HOEPFNER, JOHN & ARNIM", "Address": "3802 Fellowship Ave", "City": "The Villages", "State": "Florida", "Zip": 321632165, "Country": "United States", "Land_Value": 164900, "Improved_V": 447100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.640308903, "SHAPE_Area": 1026.51579324 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355707.425800003111362, 253783.772199999541044 ], [ 355759.133799999952316, 253781.397799998521805 ], [ 355759.134300000965595, 253771.936599999666214 ], [ 355758.423299998044968, 253760.742800001055002 ], [ 355707.589599996805191, 253764.548599999397993 ], [ 355707.425800003111362, 253783.772199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201010400", "MAP": "D9-8060-T007", "PARCEL_NAM": "59", "ACRE": ".3612", "LONGITUDE": -64.9601187, "LATITUDE": 18.31374901, "OBJECTID_1": 87348, "PARCEL_NO_": "509201010400", "Tax_Legal_": "59 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "HOEPFNER, JOHN & ARNIM", "Address": "3802 Fellowship Ave", "City": "The Villages", "State": "Florida", "Zip": 321632165, "Country": "United States", "Land_Value": 164900, "Improved_V": 447100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.271194987, "SHAPE_Area": 1927.254911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355764.720600001513958, 253784.214099999517202 ], [ 355759.133799999952316, 253781.397799998521805 ], [ 355751.083400003612041, 253781.767499998211861 ], [ 355707.425800003111362, 253783.772199999541044 ], [ 355707.307300001382828, 253797.688000001013279 ], [ 355710.45160000026226, 253807.212900001555681 ], [ 355730.074000000953674, 253813.274900000542402 ], [ 355735.837532162142452, 253815.799959174764808 ], [ 355741.767826083640102, 253817.903727415483445 ], [ 355747.834133271011524, 253819.575296712602722 ], [ 355754.005000002682209, 253820.806000001728535 ], [ 355758.067210159322713, 253820.776761991786771 ], [ 355762.088784337509423, 253820.20287406956777 ], [ 355765.997029216727242, 253819.0947097397584 ], [ 355769.7212999984622, 253817.472300000488758 ], [ 355770.143514383933507, 253817.31902079586871 ], [ 355770.534616999910213, 253817.098117546265712 ], [ 355770.883866932243109, 253816.815656953171128 ], [ 355771.181672673905268, 253816.479396277311025 ], [ 355771.41985553788254, 253816.098570299742278 ], [ 355771.591874269826803, 253815.683637705515139 ], [ 355771.69300469168229, 253815.245993855234701 ], [ 355771.720469442312606, 253814.797657832416007 ], [ 355771.673514252936002, 253814.35094236137229 ], [ 355771.553428661485668, 253813.91811566092656 ], [ 355771.363510597788263, 253813.511064520425862 ], [ 355771.108975812268909, 253813.140967850835295 ], [ 355770.796814634697512, 253812.817989676521393 ], [ 355770.435599997639656, 253812.550999999046326 ], [ 355768.605394448502921, 253810.454423563467572 ], [ 355767.07352027867455, 253808.130924772791332 ], [ 355765.867764873779379, 253805.622650663775858 ], [ 355765.009999997913837, 253802.975099999457598 ], [ 355764.675617253349628, 253799.735006546368822 ], [ 355764.893114700971637, 253796.484973890386755 ], [ 355765.656246821919922, 253793.318327909131767 ], [ 355766.943099997937679, 253790.3260000012815 ], [ 355767.067262291675434, 253789.356324440246681 ], [ 355767.036614812503103, 253788.379212521977024 ], [ 355766.851927890500519, 253787.419224131590454 ], [ 355766.517843664856628, 253786.500488751305966 ], [ 355766.042759403120726, 253785.646098961413372 ], [ 355765.438616434345022, 253784.877530004130676 ], [ 355764.720600001513958, 253784.214099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010300", "MAP": "D9-8217-T008", "PARCEL_NAM": "34-REM", "ACRE": ".528", "LONGITUDE": -64.95432232, "LATITUDE": 18.3142907, "OBJECTID_1": 87363, "PARCEL_NO_": "509202010300", "Tax_Legal_": "34 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CARVALHO, KATHLEEN", "Address": "47 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113200, "Improved_V": 284800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.445741457, "SHAPE_Area": 2566.7052927300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356389.663400001823902, 253852.960900001227856 ], [ 356364.25959999859333, 253846.525299999862909 ], [ 356350.975199997425079, 253830.2043999992311 ], [ 356330.237999998033047, 253843.738499999046326 ], [ 356326.190200001001358, 253845.605200000107288 ], [ 356316.45160000026226, 253852.913800001144409 ], [ 356331.620399996638298, 253870.769799999892712 ], [ 356353.887900002300739, 253907.260200001299381 ], [ 356355.532899998128414, 253903.473900001496077 ], [ 356359.611199997365475, 253898.018899999558926 ], [ 356368.532799996435642, 253891.970199998468161 ], [ 356369.446999996900558, 253879.312100000679493 ], [ 356389.663400001823902, 253852.960900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010200", "MAP": "D9-7880-T006", "PARCEL_NAM": "35-B", "ACRE": ".40", "LONGITUDE": -64.9545634, "LATITUDE": 18.31451161, "OBJECTID_1": 87362, "PARCEL_NO_": "509202010200", "Tax_Legal_": "35 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "OTS PROPERTY HOLDING LLC", "Address": "414 Rhett Butler Dr", "City": "Charleston", "State": "South Carolina", "Zip": 29414, "Country": "United States", "Land_Value": 127300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.91374738, "SHAPE_Area": 1670.0340112599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356301.365500003099442, 253869.60020000115037 ], [ 356329.734399996697903, 253922.904899999499321 ], [ 356352.26630000025034, 253908.302299998700619 ], [ 356353.887900002300739, 253907.260200001299381 ], [ 356331.620399996638298, 253870.769799999892712 ], [ 356316.45160000026226, 253852.913800001144409 ], [ 356309.133599996566772, 253860.031100001186132 ], [ 356305.866999998688698, 253864.859499998390675 ], [ 356301.365500003099442, 253869.60020000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202031200", "MAP": "D9-8282-T009", "PARCEL_NAM": "12A", "ACRE": ".269", "LONGITUDE": -64.95580053, "LATITUDE": 18.30836216, "OBJECTID_1": 87397, "PARCEL_NO_": "509202031200", "Tax_Legal_": "12A WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "FRANCIS, JACQUELINE & CHARLES", "Address": "660 MALLARD DR.", "City": "SUMMER", "State": "South Carolina", "Zip": 29150, "Country": "United States", "Land_Value": 44200, "Improved_V": 39200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.89649507199999, "SHAPE_Area": 1255.5930343299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356203.296300001442432, 253241.966600000858307 ], [ 356206.845899999141693, 253228.951400000602007 ], [ 356228.49379999935627, 253212.425599999725819 ], [ 356200.341099999845028, 253189.551899999380112 ], [ 356194.761600002646446, 253181.906899999827147 ], [ 356187.515600003302097, 253180.581000000238419 ], [ 356185.093099996447563, 253180.983399998396635 ], [ 356182.66160000115633, 253182.441100001335144 ], [ 356180.213899999856949, 253185.798599999397993 ], [ 356180.176100000739098, 253190.231199998408556 ], [ 356180.15990000218153, 253192.131000000983477 ], [ 356185.710600003600121, 253203.153200000524521 ], [ 356187.312399998307228, 253204.432900000363588 ], [ 356188.898100003600121, 253207.612300001084805 ], [ 356193.631700001657009, 253219.894499998539686 ], [ 356195.213699996471405, 253223.495999999344349 ], [ 356198.376000002026558, 253230.910199999809265 ], [ 356199.97070000320673, 253233.034200001507998 ], [ 356203.296300001442432, 253241.966600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202031600", "MAP": null, "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.95548356, "LATITUDE": 18.30872428, "OBJECTID_1": 87401, "PARCEL_NO_": "509202031600", "Tax_Legal_": "12 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "BARBER, WILLIAM D. & DAVID J", "Address": "PO Box 302368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67600, "Improved_V": 1700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.00808625499999, "SHAPE_Area": 2981.5477881100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356228.49379999935627, 253212.425599999725819 ], [ 356206.845899999141693, 253228.951400000602007 ], [ 356203.296300001442432, 253241.966600000858307 ], [ 356207.065600000321865, 253252.090599998831749 ], [ 356212.551600001752377, 253270.711800001561642 ], [ 356212.528200000524521, 253273.455800000578165 ], [ 356214.124700002372265, 253275.368700001388788 ], [ 356216.525600001215935, 253277.499299999326468 ], [ 356221.35809999704361, 253278.172100000083447 ], [ 356247.201399996876717, 253273.528499998152256 ], [ 356257.687100000679493, 253273.192099999636412 ], [ 356270.098300002515316, 253236.141199998557568 ], [ 356262.843299999833107, 253235.870799999684095 ], [ 356261.241400003433228, 253234.591099999845028 ], [ 356260.462099999189377, 253231.418299999088049 ], [ 356258.863799996674061, 253229.716499999165535 ], [ 356231.573299996554852, 253214.927700001746416 ], [ 356228.49379999935627, 253212.425599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95774886, "LATITUDE": 18.3084774, "OBJECTID_1": 87399, "PARCEL_NO_": "509202031400", "Tax_Legal_": "6 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "JENNINGS, INGRID", "Address": "37 Water Island", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 128400, "Improved_V": 515700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.731230047, "SHAPE_Area": 3584.43686587 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356021.214900001883507, 253181.691199999302626 ], [ 356009.994499996304512, 253186.539200000464916 ], [ 355945.316200003027916, 253214.484600000083447 ], [ 355952.508299998939037, 253222.142900001257658 ], [ 355970.058300003409386, 253244.451299998909235 ], [ 355975.677299998700619, 253247.452599998563528 ], [ 355993.385600000619888, 253251.186099998652935 ], [ 355998.227099999785423, 253250.803599998354912 ], [ 356005.514499999582767, 253247.274599999189377 ], [ 356012.029700003564358, 253239.72859999909997 ], [ 356018.566500000655651, 253229.649599999189377 ], [ 356025.078199997544289, 253222.525699999183416 ], [ 356030.772699996829033, 253216.661699999123812 ], [ 356037.244800001382828, 253214.181600000709295 ], [ 356051.803400002419949, 253209.023400001227856 ], [ 356036.523000001907349, 253204.254200000315905 ], [ 356028.834899999201298, 253203.069600000977516 ], [ 356026.294900000095367, 253197.566300000995398 ], [ 356024.389899998903275, 253189.734600000083447 ], [ 356021.214900001883507, 253181.691199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020800", "MAP": null, "PARCEL_NAM": "D", "ACRE": null, "LONGITUDE": -64.95250921, "LATITUDE": 18.31827035, "OBJECTID_1": 87201, "PARCEL_NO_": "507104020800", "Tax_Legal_": "WATER ISLAND TRACT \"D\" SOUTHSIDE QUARTER 10", "Name": "HOTEL (LIMESTONE BEACH)", "Address": "TRACT (LIMESTONE BEACH)", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.299189493, "SHAPE_Area": 1739.2307407400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356576.479800000786781, 254281.873199999332428 ], [ 356502.028599999845028, 254307.583099998533726 ], [ 356503.602399997413158, 254317.584800001233816 ], [ 356506.734099999070168, 254328.58729999884963 ], [ 356573.017200000584126, 254309.709199998527765 ], [ 356576.479800000786781, 254281.873199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021800", "MAP": "D9-8121-T008", "PARCEL_NAM": "63-REM", "ACRE": ".519", "LONGITUDE": -64.95279695000001, "LATITUDE": 18.31786562, "OBJECTID_1": 87211, "PARCEL_NO_": "507104021800", "Tax_Legal_": "63-1 & 63 REM WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "BLACK, JOHN A. & CHRISTINE S.", "Address": "16 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 135400, "Improved_V": 449300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.20951461300001, "SHAPE_Area": 2337.7153423999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356523.678099997341633, 254289.72410000115633 ], [ 356529.988799996674061, 254249.19539999961853 ], [ 356522.834499999880791, 254237.104499999433756 ], [ 356503.688000001013279, 254212.883099999278784 ], [ 356498.828500002622604, 254215.376499999314547 ], [ 356497.957500003278255, 254222.968699999153614 ], [ 356494.62610000371933, 254235.395899999886751 ], [ 356493.780299998819828, 254240.033100001513958 ], [ 356494.4408999979496, 254257.137099999934435 ], [ 356499.77759999781847, 254293.277699999511242 ], [ 356502.028599999845028, 254307.583099998533726 ], [ 356522.405100002884865, 254300.546500001102686 ], [ 356523.678099997341633, 254289.72410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021800", "MAP": "D9-8121-T008", "PARCEL_NAM": "63-1", "ACRE": ".22", "LONGITUDE": -64.95248635, "LATITUDE": 18.31800494, "OBJECTID_1": 87211, "PARCEL_NO_": "507104021800", "Tax_Legal_": "63-1 & 63 REM WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "BLACK, JOHN A. & CHRISTINE S.", "Address": "16 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 135400, "Improved_V": 449300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.975246642, "SHAPE_Area": 1347.81545231 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356576.479800000786781, 254281.873199999332428 ], [ 356564.464199997484684, 254272.486699998378754 ], [ 356529.988799996674061, 254249.19539999961853 ], [ 356523.678099997341633, 254289.72410000115633 ], [ 356522.405100002884865, 254300.546500001102686 ], [ 356576.479800000786781, 254281.873199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202030400", "MAP": "D9-8384-T009", "PARCEL_NAM": "18", "ACRE": ".645", "LONGITUDE": -64.95427247000001, "LATITUDE": 18.31031187, "OBJECTID_1": 87391, "PARCEL_NO_": "509202030400", "Tax_Legal_": "18 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "DALEY, LINDA J", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120300, "Improved_V": 313800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.177673516, "SHAPE_Area": 2153.2932808599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356348.047700002789497, 253456.949799999594688 ], [ 356383.563199996948242, 253452.807500001043081 ], [ 356382.789300002157688, 253449.001499999314547 ], [ 356382.027900002896786, 253443.7179000005126 ], [ 356380.5591000020504, 253426.818399999290705 ], [ 356375.821999996900558, 253414.958399999886751 ], [ 356375.838100001215935, 253413.058699999004602 ], [ 356370.330600000917912, 253396.970499999821186 ], [ 356367.20610000193119, 253385.123700000345707 ], [ 356338.864600002765656, 253399.035000000149012 ], [ 356341.987400002777576, 253411.0929000005126 ], [ 356345.063400000333786, 253428.638799998909235 ], [ 356348.047700002789497, 253456.949799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202021400", "MAP": "D9-8453-T010", "PARCEL_NAM": "22B", "ACRE": ".298", "LONGITUDE": -64.95250817, "LATITUDE": 18.3126364, "OBJECTID_1": 87389, "PARCEL_NO_": "509202021400", "Tax_Legal_": "22B WATER ISLAND NO.10 SOUTHSIDE QTR", "Name": "BARRY L. & JANE M. WHERREN REV FAM TRUST", "Address": "30 Water Island", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8027801, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.946726001, "SHAPE_Area": 2366.4456563600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356599.416599996387959, 253696.912799999117851 ], [ 356572.1858000010252, 253670.498199999332428 ], [ 356572.910199999809265, 253655.348900001496077 ], [ 356555.618000000715256, 253662.094799999147654 ], [ 356528.024599999189377, 253672.859299998730421 ], [ 356473.408699996769428, 253694.165500000119209 ], [ 356599.416599996387959, 253696.912799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202020400", "MAP": "D9-8453-T010", "PARCEL_NAM": "21", "ACRE": "1.172", "LONGITUDE": -64.95290224, "LATITUDE": 18.31233667, "OBJECTID_1": 87377, "PARCEL_NO_": "509202020400", "Tax_Legal_": "21 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CHAUNETTE L THOMAS and ROBERT M SMACK", "Address": "6200 Windward Way", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 271000, "Improved_V": 232500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 347.949722485, "SHAPE_Area": 6487.2771648099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356473.408699996769428, 253694.165500000119209 ], [ 356528.024599999189377, 253672.859299998730421 ], [ 356555.618000000715256, 253662.094799999147654 ], [ 356572.910199999809265, 253655.348900001496077 ], [ 356558.004100002348423, 253641.288199998438358 ], [ 356551.529399998486042, 253613.769000001251698 ], [ 356481.145199999213219, 253617.430599998682737 ], [ 356459.780199997127056, 253618.901700001209974 ], [ 356459.125500001013279, 253618.959499999880791 ], [ 356461.785199999809265, 253650.637099999934435 ], [ 356442.282799996435642, 253660.133600000292063 ], [ 356444.662799999117851, 253663.767900001257658 ], [ 356446.266400001943111, 253664.836399998515844 ], [ 356451.045000001788139, 253671.841600000858307 ], [ 356473.408699996769428, 253694.165500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202010900", "MAP": "D9-8418-T010", "PARCEL_NAM": "26A-REM", "ACRE": ".25", "LONGITUDE": -64.95382653, "LATITUDE": 18.31336761, "OBJECTID_1": 87369, "PARCEL_NO_": "509202010900", "Tax_Legal_": "26A-1 & 26-A REM WATER ISLAND No.10 SOUTHSIDE QUARTER", "Name": "SEAGARDEN TRUST", "Address": "8168 Brown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80800, "Improved_V": 318500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.73550528499999, "SHAPE_Area": 1068.98841816 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356398.07769999653101, 253741.02760000154376 ], [ 356383.762199997901917, 253771.393800001591444 ], [ 356394.522900000214577, 253775.44819999858737 ], [ 356413.793499998748302, 253785.105099998414516 ], [ 356426.267800003290176, 253752.927000001072884 ], [ 356398.07769999653101, 253741.02760000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023200", "MAP": "D9-8576-T011", "PARCEL_NAM": "37-1", "ACRE": ".606", "LONGITUDE": -64.95345201000001, "LATITUDE": 18.31505733, "OBJECTID_1": 87225, "PARCEL_NO_": "507104023200", "Tax_Legal_": "37-1 WATER ISLAND (LA PROVIDENCE) NO. 10 SOUTHSIDE QTR", "Name": "MUNZAR, JITKA", "Address": "66 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.60212489099999, "SHAPE_Area": 2671.7581742000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356477.894599996507168, 253927.695700000971556 ], [ 356424.0608000010252, 253919.95380000025034 ], [ 356415.866999998688698, 253972.621599998325109 ], [ 356423.338899999856949, 253975.406399998813868 ], [ 356433.106899999082088, 253979.047100000083447 ], [ 356453.221500001847744, 253984.277899999171495 ], [ 356457.298100002110004, 253974.600099999457598 ], [ 356466.188100002706051, 253954.967999998480082 ], [ 356477.894599996507168, 253927.695700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104024500", "MAP": "D9-8576-T011", "PARCEL_NAM": "37-REM", "ACRE": ".693", "LONGITUDE": -64.95391426, "LATITUDE": 18.31502039, "OBJECTID_1": 87234, "PARCEL_NO_": "507104024500", "Tax_Legal_": "37 REM WATER ISLAND (LA PROVIDENCE) NO. 10 SOUTHSIDE QTR", "Name": "PASSIOS, LEE C.", "Address": "66 Water Ialand", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 117100, "Improved_V": 722900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.622521906, "SHAPE_Area": 2178.6545129599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356424.0608000010252, 253919.95380000025034 ], [ 356381.177500002086163, 253928.298000000417233 ], [ 356362.286200001835823, 253941.447799999266863 ], [ 356355.950800001621246, 253949.073600001633167 ], [ 356377.563000001013279, 253967.826699998229742 ], [ 356379.25110000371933, 253958.974599998444319 ], [ 356415.866999998688698, 253972.621599998325109 ], [ 356424.0608000010252, 253919.95380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022800", "MAP": "D9-8649-T012", "PARCEL_NAM": "46-1", "ACRE": "1.043", "LONGITUDE": -64.94368546, "LATITUDE": 18.3250614, "OBJECTID_1": 87296, "PARCEL_NO_": "507201022800", "Tax_Legal_": "46-REM SPRAT BAY WATER ISLAND", "Name": "SALISBURY, C & HATAWAY, GRANT", "Address": "327 Congress St", "City": "Austin", "State": "Texas", "Zip": 78701, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.20666522900001, "SHAPE_Area": 4343.7266476499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357420.32880000025034, 255038.205800000578165 ], [ 357420.95440000295639, 255109.516600001603365 ], [ 357427.455300003290176, 255103.659099999815226 ], [ 357437.996699996292591, 255096.77930000051856 ], [ 357448.521899998188019, 255091.799199998378754 ], [ 357460.648900002241135, 255088.098799999803305 ], [ 357493.774300001561642, 255080.559500001370907 ], [ 357507.530100002884865, 255074.972500000149012 ], [ 357518.064300000667572, 255068.936999998986721 ], [ 357526.193999998271465, 255061.19310000166297 ], [ 357537.624399997293949, 255044.610300000756979 ], [ 357540.937799997627735, 255034.293800000101328 ], [ 357541.2212999984622, 255030.139899998903275 ], [ 357522.619800001382828, 255033.148899998515844 ], [ 357522.381800003349781, 255035.408500000834465 ], [ 357519.088200002908707, 255043.403099998831749 ], [ 357514.19820000231266, 255049.4847999997437 ], [ 357506.903599999845028, 255053.857999999076128 ], [ 357500.436999998986721, 255055.704900000244379 ], [ 357495.600900001823902, 255055.454300001263618 ], [ 357464.224799998104572, 255046.964800000190735 ], [ 357420.32880000025034, 255038.205800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202030300", "MAP": "D9-8692-T012", "PARCEL_NAM": "19", "ACRE": ".850", "LONGITUDE": -64.95403424, "LATITUDE": 18.31155391, "OBJECTID_1": 87390, "PARCEL_NO_": "509202030300", "Tax_Legal_": "19 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "BBK DEVELOPMENT LLC", "Address": "4623 Oak Hollow Dr", "City": "Sarasota", "State": "Florida", "Zip": 34241, "Country": "United States", "Land_Value": 295100, "Improved_V": 6100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.93523850700001, "SHAPE_Area": 3645.75679322 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356395.151500001549721, 253607.000700000673532 ], [ 356400.750799998641014, 253612.323800001293421 ], [ 356403.97240000218153, 253612.772399999201298 ], [ 356405.689300000667572, 253600.543000001460314 ], [ 356409.112400002777576, 253577.350699998438358 ], [ 356412.476099997758865, 253561.124000001698732 ], [ 356418.287500001490116, 253541.539900001138449 ], [ 356423.222499996423721, 253530.181200001388788 ], [ 356407.875600002706051, 253533.221999999135733 ], [ 356399.814300000667572, 253532.945000000298023 ], [ 356385.32039999961853, 253530.504299998283386 ], [ 356378.8699000030756, 253530.451499998569489 ], [ 356370.792400002479553, 253532.074200000613928 ], [ 356360.269000001251698, 253536.843199998140335 ], [ 356354.590599998831749, 253540.807500001043081 ], [ 356340.755599997937679, 253555.68189999833703 ], [ 356341.529600001871586, 253559.487900000065565 ], [ 356379.183499999344349, 253588.293699998408556 ], [ 356395.151500001549721, 253607.000700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "509202040100", "MAP": null, "PARCEL_NAM": "B", "ACRE": null, "LONGITUDE": -64.95676825, "LATITUDE": 18.31476259, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.084377907, "SHAPE_Area": 868.94107185300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356080.457800000905991, 253893.988000001758337 ], [ 356079.122000001370907, 253896.9560999982059 ], [ 356068.316600002348423, 253920.965999998152256 ], [ 356119.069399997591972, 253926.658700000494719 ], [ 356127.143299996852875, 253925.458200000226498 ], [ 356127.704199999570847, 253921.552000001072884 ], [ 356123.235646032087971, 253920.618296238535549 ], [ 356118.920916875998955, 253919.127360429643886 ], [ 356114.829199999570847, 253917.103100001811981 ], [ 356110.645475609402638, 253915.32923853045213 ], [ 356106.817189678200521, 253912.880900089454371 ], [ 356103.452100001275539, 253909.826999999582767 ], [ 356095.444397584942635, 253905.057101009704638 ], [ 356087.768503053172026, 253899.769769215752603 ], [ 356080.457800000905991, 253893.988000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "507104023800", "MAP": null, "PARCEL_NAM": "47-A", "ACRE": null, "LONGITUDE": -64.95715073, "LATITUDE": 18.31454522, "OBJECTID_1": 87231, "PARCEL_NO_": "507104023800", "Tax_Legal_": "47 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "WHITE LION PROPERTIES", "Address": "63 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 174800, "Improved_V": 470600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.51922783800001, "SHAPE_Area": 1383.8798523600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356017.531999997794628, 253859.126499999314547 ], [ 356018.832299999892712, 253861.032600000500679 ], [ 356020.425200000405312, 253863.36769999936223 ], [ 356042.710600003600121, 253897.74720000103116 ], [ 356068.316600002348423, 253920.965999998152256 ], [ 356079.122000001370907, 253896.9560999982059 ], [ 356080.457800000905991, 253893.988000001758337 ], [ 356076.067699998617172, 253890.115499999374151 ], [ 356064.100753444072325, 253882.674325763277011 ], [ 356051.858300000429153, 253875.695700000971556 ], [ 356042.085897528100759, 253870.208966310252436 ], [ 356032.115253119438421, 253865.091315799567383 ], [ 356021.960299998521805, 253860.349899999797344 ], [ 356019.775457371084485, 253859.632117083499907 ], [ 356017.531999997794628, 253859.126499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023800", "MAP": null, "PARCEL_NAM": "47", "ACRE": null, "LONGITUDE": -64.95727069, "LATITUDE": 18.31507798, "OBJECTID_1": 87231, "PARCEL_NO_": "507104023800", "Tax_Legal_": "47 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "WHITE LION PROPERTIES", "Address": "63 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 174800, "Improved_V": 470600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.201734931, "SHAPE_Area": 3867.25894582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356063.912100002169609, 253985.258400000631809 ], [ 356068.316600002348423, 253920.965999998152256 ], [ 356042.710600003600121, 253897.74720000103116 ], [ 355998.574600003659725, 253967.258000001311302 ], [ 356006.585500001907349, 253973.445199999958277 ], [ 356021.844300001859665, 253980.747299998998642 ], [ 356035.517499998211861, 253984.870000001043081 ], [ 356050.018500000238419, 253986.466299999505281 ], [ 356063.912100002169609, 253985.258400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023700", "MAP": null, "PARCEL_NAM": "46", "ACRE": null, "LONGITUDE": -64.9567161, "LATITUDE": 18.31508596, "OBJECTID_1": 87230, "PARCEL_NO_": "507104023700", "Tax_Legal_": "46 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "HAUSER, SCOTT & RENATE", "Address": "PO Box 305678", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 149600, "Improved_V": 490200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.342813664, "SHAPE_Area": 3783.8216874300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356102.132399998605251, 253985.842599999159575 ], [ 356126.353699997067451, 253956.171900000423193 ], [ 356149.682899996638298, 253927.594000000506639 ], [ 356153.213299997150898, 253923.269299998879433 ], [ 356147.240800000727177, 253922.659400001168251 ], [ 356137.629469094506931, 253922.495051724807126 ], [ 356128.058399997651577, 253921.600999999791384 ], [ 356127.704199999570847, 253921.552000001072884 ], [ 356127.143299996852875, 253925.458200000226498 ], [ 356119.069399997591972, 253926.658700000494719 ], [ 356068.316600002348423, 253920.965999998152256 ], [ 356063.912100002169609, 253985.258400000631809 ], [ 356067.771799996495247, 253984.922899998724461 ], [ 356077.454700000584126, 253984.157800000160933 ], [ 356091.160199999809265, 253984.480999998748302 ], [ 356102.132399998605251, 253985.842599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201010500", "MAP": "D9-8062-T007", "PARCEL_NAM": "60-1", "ACRE": ".94", "LONGITUDE": -64.9596859, "LATITUDE": 18.31327216, "OBJECTID_1": 87349, "PARCEL_NO_": "509201010500", "Tax_Legal_": "60-1 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "LANGKAMMERER, CARL M.,JR. & MARTHA WALLIN LANGKAMMERER", "Address": "316 Sportsman Hall Rd", "City": "Queenstown", "State": "Maryland", "Zip": 21658, "Country": "United States", "Land_Value": 214000, "Improved_V": 223100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 328.76334901600001, "SHAPE_Area": 4190.7375506799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355790.200000002980232, 253787.706599999219179 ], [ 355792.197086593543645, 253787.665553888946306 ], [ 355794.162558360316325, 253787.309238905727398 ], [ 355796.046961786458269, 253786.646620341954986 ], [ 355797.802883127005771, 253785.694370438315673 ], [ 355799.386141393508296, 253784.476448891160544 ], [ 355800.756899997591972, 253783.023499999195337 ], [ 355803.898353852564469, 253775.009243538748706 ], [ 355806.756399996578693, 253766.889600001275539 ], [ 355807.810008975327946, 253765.491243062453577 ], [ 355809.08724159601843, 253764.293674341693986 ], [ 355810.550464757543523, 253763.332179678196553 ], [ 355812.156565228593536, 253762.635089092131238 ], [ 355813.858219960529823, 253762.222942053107545 ], [ 355815.605290439969394, 253762.107882293581497 ], [ 355817.3462999984622, 253762.293299999088049 ], [ 355829.773400001227856, 253765.096999999135733 ], [ 355832.793799996376038, 253749.171599999070168 ], [ 355812.473800003528595, 253742.662799999117851 ], [ 355810.920699998736382, 253718.008400000631809 ], [ 355802.417300000786781, 253707.907299999147654 ], [ 355803.643799997866154, 253729.054800000041723 ], [ 355780.088799998164177, 253704.245299998670816 ], [ 355768.817500002682209, 253696.307799998670816 ], [ 355763.737499997019768, 253699.959100000560284 ], [ 355767.547499999403954, 253714.087799999862909 ], [ 355756.82769999653101, 253713.95549999922514 ], [ 355758.423299998044968, 253760.742800001055002 ], [ 355759.134300000965595, 253771.936599999666214 ], [ 355759.133900001645088, 253778.65819999948144 ], [ 355766.592839058954269, 253783.298900491761742 ], [ 355774.325000002980232, 253787.468499999493361 ], [ 355779.592716821352951, 253788.213816019706428 ], [ 355784.912300521449652, 253788.29360139783239 ], [ 355790.200000002980232, 253787.706599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96072186000001, "LATITUDE": 18.31353682, "OBJECTID_1": 87347, "PARCEL_NO_": "509201010300", "Tax_Legal_": "58 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "JAMES A AND ELAINE A GRISSOM REVOC LIVING TRUST", "Address": "55988 Seneca Lake Rd", "City": "Quaker City", "State": "Ohio", "Zip": 43773, "Country": "United States", "Land_Value": 108600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.722978893, "SHAPE_Area": 1709.1111136899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355707.589599996805191, 253764.548599999397993 ], [ 355639.173299998044968, 253760.843899998813868 ], [ 355639.074600003659725, 253761.454700000584126 ], [ 355635.80799999833107, 253766.283100001513958 ], [ 355636.533399999141693, 253775.78830000013113 ], [ 355707.307300001382828, 253797.688000001013279 ], [ 355707.589599996805191, 253764.548599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201010400", "MAP": "D9-8060-T007", "PARCEL_NAM": "59 REM", "ACRE": ".3363", "LONGITUDE": -64.96012659, "LATITUDE": 18.31325162, "OBJECTID_1": 87348, "PARCEL_NO_": "509201010400", "Tax_Legal_": "59 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "HOEPFNER, JOHN & ARNIM", "Address": "3802 Fellowship Ave", "City": "The Villages", "State": "Florida", "Zip": 321632165, "Country": "United States", "Land_Value": 164900, "Improved_V": 447100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.94727420500001, "SHAPE_Area": 1439.32248787 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355707.589599996805191, 253764.548599999397993 ], [ 355758.423299998044968, 253760.742800001055002 ], [ 355756.82769999653101, 253713.95549999922514 ], [ 355748.026799999177456, 253714.243900001049042 ], [ 355739.004900000989437, 253728.564300000667572 ], [ 355722.393100000917912, 253741.596000000834465 ], [ 355707.589599996805191, 253764.548599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201010400", "MAP": "D9-8060-T007", "PARCEL_NAM": "59 REM", "ACRE": null, "LONGITUDE": -64.96047543, "LATITUDE": 18.31316594, "OBJECTID_1": 87348, "PARCEL_NO_": "509201010400", "Tax_Legal_": "59 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "HOEPFNER, JOHN & ARNIM", "Address": "3802 Fellowship Ave", "City": "The Villages", "State": "Florida", "Zip": 321632165, "Country": "United States", "Land_Value": 164900, "Improved_V": 447100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 456.23810149399998, "SHAPE_Area": 3105.5826402600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355707.589599996805191, 253764.548599999397993 ], [ 355722.393100000917912, 253741.596000000834465 ], [ 355739.004900000989437, 253728.564300000667572 ], [ 355748.026799999177456, 253714.243900001049042 ], [ 355756.82769999653101, 253713.95549999922514 ], [ 355755.197300001978874, 253666.146499998867512 ], [ 355751.950499996542931, 253668.653000000864267 ], [ 355752.666900001466274, 253679.213599998503923 ], [ 355745.374099999666214, 253683.375700000673532 ], [ 355744.555200003087521, 253684.846700001507998 ], [ 355743.664399996399879, 253694.760800000280142 ], [ 355736.322999998927116, 253704.622099999338388 ], [ 355737.116800002753735, 253706.106300000101328 ], [ 355737.073600001633167, 253711.172200001776218 ], [ 355733.825000002980232, 253713.889800000935793 ], [ 355732.183600001037121, 253717.253800000995398 ], [ 355729.752099998295307, 253718.711599998176098 ], [ 355726.553800001740456, 253715.519000001251698 ], [ 355725.814000003039837, 253707.702500000596046 ], [ 355725.023900002241135, 253705.79619999974966 ], [ 355721.825599998235703, 253702.60359999909997 ], [ 355723.47240000218153, 253698.606300000101328 ], [ 355722.685900002717972, 253696.277800001204014 ], [ 355718.638099998235703, 253698.144600000232458 ], [ 355715.384099997580051, 253701.495400000363588 ], [ 355716.15259999781847, 253705.93470000103116 ], [ 355717.752700001001358, 253707.425400000065565 ], [ 355718.528399996459484, 253711.020399998873472 ], [ 355716.073499999940395, 253715.222100000828505 ], [ 355716.026799999177456, 253720.710200000554323 ], [ 355716.80969999730587, 253723.460799999535084 ], [ 355712.734999999403954, 253728.493700001388788 ], [ 355698.162000000476837, 253735.340500000864267 ], [ 355694.098099999129772, 253739.10700000077486 ], [ 355684.386399999260902, 253743.249299999326468 ], [ 355681.166500002145767, 253742.589699998497963 ], [ 355680.374600000679493, 253740.894499998539686 ], [ 355678.769199997186661, 253740.037000000476837 ], [ 355674.707000002264977, 253743.592300001531839 ], [ 355672.293499998748302, 253742.939300000667572 ], [ 355670.695200003683567, 253741.237399999052286 ], [ 355667.471799999475479, 253741.0 ], [ 355662.60869999974966, 253743.915500000119209 ], [ 355660.206000000238419, 253741.995999999344349 ], [ 355656.179799996316433, 253741.329700000584126 ], [ 355652.981499999761581, 253738.137200001627207 ], [ 355650.54280000180006, 253740.4391999989748 ], [ 355649.688000001013279, 253746.131799999624491 ], [ 355647.243900001049042, 253749.067099999636412 ], [ 355645.625799998641014, 253749.687100000679493 ], [ 355644.020400002598763, 253748.829599998891354 ], [ 355646.480700001120567, 253743.994600001722574 ], [ 355646.496899999678135, 253742.094900000840425 ], [ 355644.086900003254414, 253741.01969999819994 ], [ 355635.989600002765656, 253744.964200001209974 ], [ 355635.942900002002716, 253750.452199999243021 ], [ 355633.50959999859333, 253752.121100001037121 ], [ 355630.248400002717972, 253756.316199999302626 ], [ 355630.232199996709824, 253758.215900000184774 ], [ 355632.643899999558926, 253759.080099999904633 ], [ 355635.878200002014637, 253758.051100000739098 ], [ 355639.925899997353554, 253756.184300001710653 ], [ 355639.173299998044968, 253760.843899998813868 ], [ 355707.589599996805191, 253764.548599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96074116, "LATITUDE": 18.31383176, "OBJECTID_1": 87346, "PARCEL_NO_": "509201010200", "Tax_Legal_": "POR 57 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "JAMES A AND ELAINE A GRISSOM REVOC LIVING TRUST", "Address": "55988 Seneca Lake Rd", "City": "Quaker City", "State": "Ohio", "Zip": 43773, "Country": "United States", "Land_Value": 143900, "Improved_V": 341600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.22509125300002, "SHAPE_Area": 2931.0544051699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355712.019299998879433, 253812.503100000321865 ], [ 355710.45160000026226, 253807.212900001555681 ], [ 355707.307300001382828, 253797.688000001013279 ], [ 355636.533399999141693, 253775.78830000013113 ], [ 355630.057700000703335, 253778.690600000321865 ], [ 355629.998400002717972, 253785.656199999153614 ], [ 355634.789499998092651, 253791.183800000697374 ], [ 355637.170699998736382, 253795.636300001293421 ], [ 355637.152699999511242, 253797.747099999338388 ], [ 355635.52929999679327, 253799.000399999320507 ], [ 355635.496899999678135, 253802.799800001084805 ], [ 355637.885300002992153, 253806.407900001853704 ], [ 355640.295299999415874, 253807.4831000007689 ], [ 355642.730400003492832, 253805.603199999779463 ], [ 355643.624799996614456, 253795.2668999992311 ], [ 355644.445500001311302, 253793.584899999201298 ], [ 355648.473499998450279, 253794.03999999910593 ], [ 355650.899599999189377, 253793.215500000864267 ], [ 355650.872599996626377, 253796.381700001657009 ], [ 355649.236599996685982, 253799.112500000745058 ], [ 355650.028499998152256, 253800.807799998670816 ], [ 355649.978200003504753, 253806.717999998480082 ], [ 355653.986400000751019, 253809.495000001043081 ], [ 355656.288400001823902, 253823.234900001436472 ], [ 355658.684000000357628, 253825.998700000345707 ], [ 355662.715599998831749, 253826.031700000166893 ], [ 355669.112099997699261, 253832.416900001466274 ], [ 355669.090499997138977, 253834.949799999594688 ], [ 355667.467100001871586, 253836.203099999576807 ], [ 355661.012999996542931, 253836.572500001639128 ], [ 355665.012199997901917, 253840.404899999499321 ], [ 355669.835699997842312, 253842.133099999278784 ], [ 355674.684399999678135, 253840.906199999153614 ], [ 355675.470899999141693, 253843.234700001776218 ], [ 355715.174400001764297, 253820.761599998921156 ], [ 355712.019299998879433, 253812.503100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201013300", "MAP": "D9-8824-T013", "PARCEL_NAM": "9 REM", "ACRE": "1.00", "LONGITUDE": -64.94282481, "LATITUDE": 18.32774219, "OBJECTID_1": 87263, "PARCEL_NO_": "507201013300", "Tax_Legal_": "9 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "FRANCIS L. DOYLE, III", "Address": "9595 Collins Ave #1010", "City": "Surfside", "State": "Florida", "Zip": 331542618, "Country": "United States", "Land_Value": 233900, "Improved_V": 1479000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.99822048599998, "SHAPE_Area": 5180.7005543200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357486.933399997651577, 255369.839200001209974 ], [ 357513.995600000023842, 255382.607400000095367 ], [ 357551.390600003302097, 255382.541900001466274 ], [ 357555.019400000572205, 255393.851500000804663 ], [ 357555.197800002992153, 255394.095800001174212 ], [ 357555.61259999871254, 255394.117300000041723 ], [ 357563.646899998188019, 255397.560600001364946 ], [ 357570.891099996864796, 255399.097500000149012 ], [ 357577.347000002861023, 255398.517099998891354 ], [ 357580.583099998533726, 255397.276999998837709 ], [ 357584.636200003325939, 255394.777100000530481 ], [ 357587.89019999653101, 255391.426199998706579 ], [ 357599.367399998009205, 255369.35530000180006 ], [ 357601.872699998319149, 255359.243299998342991 ], [ 357608.3141999989748, 255360.351500000804663 ], [ 357613.988899998366833, 255356.809399999678135 ], [ 357618.086999997496605, 255349.032400000840425 ], [ 357618.123000003397465, 255344.810899998992682 ], [ 357582.796300001442432, 255326.789900001138449 ], [ 357577.908100001513958, 255332.660500001162291 ], [ 357566.554999999701977, 255340.166900001466274 ], [ 357560.889200001955032, 255342.6537000015378 ], [ 357543.933200001716614, 255345.259100001305342 ], [ 357520.544799998402596, 255345.7010000012815 ], [ 357506.817699998617172, 255347.910700000822544 ], [ 357493.896899998188019, 255350.126899998635054 ], [ 357493.026600003242493, 255349.984299998730421 ], [ 357484.417300000786781, 255359.436700001358986 ], [ 357486.933399997651577, 255369.839200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201013000", "MAP": "D9-8824-T013", "PARCEL_NAM": "2 REM", "ACRE": "1.28", "LONGITUDE": -64.94359867, "LATITUDE": 18.3278476, "OBJECTID_1": 87261, "PARCEL_NO_": "507201013000", "Tax_Legal_": "2 EASTERN WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "FRANCIS L. DOYLE, III", "Address": "9595 Collins Ave #1010", "City": "Surfside", "State": "Florida", "Zip": 331542618, "Country": "United States", "Land_Value": 215000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 343.992125225, "SHAPE_Area": 4116.7035198100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357555.197800002992153, 255394.095800001174212 ], [ 357555.019400000572205, 255393.851500000804663 ], [ 357551.390600003302097, 255382.541900001466274 ], [ 357513.995600000023842, 255382.607400000095367 ], [ 357486.933399997651577, 255369.839200001209974 ], [ 357484.417300000786781, 255359.436700001358986 ], [ 357493.026600003242493, 255349.984299998730421 ], [ 357442.361299999058247, 255341.683600001037121 ], [ 357426.234999999403954, 255341.551600001752377 ], [ 357421.132799997925758, 255372.540600001811981 ], [ 357434.782600000500679, 255379.407299999147654 ], [ 357459.637999996542931, 255396.0760000012815 ], [ 357488.614900000393391, 255402.223799999803305 ], [ 357494.643899999558926, 255401.716499999165535 ], [ 357502.332999996840954, 255401.069499999284744 ], [ 357510.417700000107288, 255398.602600000798702 ], [ 357520.915899999439716, 255396.788699999451637 ], [ 357550.776500001549721, 255393.866599999368191 ], [ 357555.197800002992153, 255394.095800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020600", "MAP": "D9-8805-T013", "PARCEL_NAM": "95", "ACRE": ".926", "LONGITUDE": -64.95051005000001, "LATITUDE": 18.32073536, "OBJECTID_1": 87199, "PARCEL_NO_": "507104020600", "Tax_Legal_": "95 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SCHWARTZ, JOSEPH T. & MARGARET GILLIN-SCHWARTZ", "Address": "62 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 215800, "Improved_V": 454600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.41410486799998, "SHAPE_Area": 4344.8226088199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356777.532999999821186, 254623.263999998569489 ], [ 356778.140600003302097, 254597.206900000572205 ], [ 356779.561200000345707, 254536.279899999499321 ], [ 356717.673000000417233, 254556.605999998748302 ], [ 356712.486199997365475, 254597.515700001269579 ], [ 356710.810699999332428, 254604.890299998223782 ], [ 356726.087499998509884, 254610.081599999219179 ], [ 356741.389399997889996, 254612.317699998617172 ], [ 356763.093299999833107, 254620.305799998342991 ], [ 356777.532999999821186, 254623.263999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020700", "MAP": "D9-8720-T012", "PARCEL_NAM": "94A", "ACRE": ".70", "LONGITUDE": -64.95039335, "LATITUDE": 18.32025156, "OBJECTID_1": 87200, "PARCEL_NO_": "507104020700", "Tax_Legal_": "94 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "PERRY IRREVOCABLE TRUST", "Address": "88 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 294100, "Improved_V": 141400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.28423978800001, "SHAPE_Area": 2476.5553946 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356791.153499998152256, 254498.341899998486042 ], [ 356725.174300000071526, 254527.958700001239777 ], [ 356716.143100000917912, 254546.883200000971556 ], [ 356717.673000000417233, 254556.605999998748302 ], [ 356809.856899999082088, 254526.329799998551607 ], [ 356801.845899999141693, 254520.142499998211861 ], [ 356800.258500002324581, 254517.174199998378754 ], [ 356801.082800000905991, 254515.070000000298023 ], [ 356805.940399996936321, 254512.78770000115037 ], [ 356806.782700002193451, 254508.572700001299381 ], [ 356800.369999997317791, 254504.08729999884963 ], [ 356798.755599997937679, 254504.285199999809265 ], [ 356797.925899997353554, 254507.022599998861551 ], [ 356795.5050999969244, 254507.213899999856949 ], [ 356793.899700000882149, 254506.3564000017941 ], [ 356790.708599999547005, 254502.319499999284744 ], [ 356791.153499998152256, 254498.341899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030300", "MAP": "D9-8989-T015", "PARCEL_NAM": "2", "ACRE": "1.03", "LONGITUDE": -64.95920483, "LATITUDE": 18.30936587, "OBJECTID_1": 87351, "PARCEL_NO_": "509201030300", "Tax_Legal_": "2 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "ALEXANDER, TRUSTEE, GENEVIEVE", "Address": "310 Ridgeway Drive", "City": "Little Rock", "State": "Arkansas", "Zip": 722054251, "Country": "United States", "Land_Value": 161700, "Improved_V": 605200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.38343888000003, "SHAPE_Area": 4403.2387979200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355865.840800002217293, 253267.451900001615286 ], [ 355798.496100001037121, 253316.296599999070168 ], [ 355802.094300001859665, 253367.199599999934435 ], [ 355806.971699997782707, 253362.595499999821186 ], [ 355818.32490000128746, 253355.089000001549721 ], [ 355870.995899997651577, 253324.91160000115633 ], [ 355876.66889999806881, 253321.58049999922514 ], [ 355881.55349999666214, 253316.131999999284744 ], [ 355883.216499999165535, 253310.234999999403954 ], [ 355884.1199000030756, 253298.843400001525879 ], [ 355881.758500002324581, 253292.069099999964237 ], [ 355879.509099997580051, 253287.464999999850988 ], [ 355872.718599997460842, 253276.924699999392033 ], [ 355871.436499997973442, 253273.197200000286102 ], [ 355870.694099999964237, 253268.263199999928474 ], [ 355870.461400002241135, 253268.224300000816584 ], [ 355865.840800002217293, 253267.451900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012900", "MAP": "A9-508-T98", "PARCEL_NAM": "75Y", "ACRE": null, "LONGITUDE": -64.95760084, "LATITUDE": 18.31884089, "OBJECTID_1": 87188, "PARCEL_NO_": "507104012900", "Tax_Legal_": "75Y WATER ISLAND SOUTH SIDE QTR 10", "Name": "WTI LLC", "Address": "PO Box 135", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 127300, "Improved_V": 369300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.85884476300001, "SHAPE_Area": 2800.1355882399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355987.949600003659725, 254323.043099999427795 ], [ 355994.484700001776218, 254348.274099998176098 ], [ 355980.773599997162819, 254355.895399998873472 ], [ 355976.922600001096725, 254360.240899998694658 ], [ 355975.287100002169609, 254362.85359999909997 ], [ 355975.40089999884367, 254366.939300000667572 ], [ 355993.081500001251698, 254418.333999998867512 ], [ 356003.04730000346899, 254404.013799998909235 ], [ 356020.028599999845028, 254376.271600000560284 ], [ 356029.339599996805191, 254331.435100000351667 ], [ 356026.105400003492832, 254332.464000001549721 ], [ 356022.881899997591972, 254332.226599998772144 ], [ 356018.859300002455711, 254331.138199999928474 ], [ 356017.262900002300739, 254329.225299999117851 ], [ 356014.044799998402596, 254328.354600001126528 ], [ 356009.99889999628067, 254330.010200001299381 ], [ 356005.963699996471405, 254330.399399999529123 ], [ 355997.142899997532368, 254324.627599999308586 ], [ 355989.086900003254414, 254323.717300001531839 ], [ 355987.949600003659725, 254323.043099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104013000", "MAP": "A9-508B-T98", "PARCEL_NAM": "75X-2", "ACRE": null, "LONGITUDE": -64.95741571000001, "LATITUDE": 18.31916983, "OBJECTID_1": 87189, "PARCEL_NO_": "507104013000", "Tax_Legal_": "75X-1&75X-2 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "KLEES, GUY H. & CELESTE A", "Address": "PO Box 579", "City": "Wilson", "State": "Wyoming", "Zip": 83014, "Country": "United States", "Land_Value": 62900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.54931002399999, "SHAPE_Area": 829.34854618300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356003.04730000346899, 254404.013799998909235 ], [ 356025.455799996852875, 254424.520199999213219 ], [ 356037.579700000584126, 254405.385200001299381 ], [ 356020.028599999845028, 254376.271600000560284 ], [ 356003.04730000346899, 254404.013799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104013000", "MAP": "A9-508B-T98", "PARCEL_NAM": "75X-1", "ACRE": null, "LONGITUDE": -64.95755985, "LATITUDE": 18.31939499, "OBJECTID_1": 87189, "PARCEL_NO_": "507104013000", "Tax_Legal_": "75X-1&75X-2 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "KLEES, GUY H. & CELESTE A", "Address": "PO Box 579", "City": "Wilson", "State": "Wyoming", "Zip": 83014, "Country": "United States", "Land_Value": 62900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.00345555000001, "SHAPE_Area": 941.41961953299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356025.455799996852875, 254424.520199999213219 ], [ 356003.04730000346899, 254404.013799998909235 ], [ 355993.081500001251698, 254418.333999998867512 ], [ 355975.179700002074242, 254424.640700001269579 ], [ 355989.818400003015995, 254427.159200001507998 ], [ 356010.574000000953674, 254451.815900001674891 ], [ 356020.415100000798702, 254432.47580000013113 ], [ 356025.455799996852875, 254424.520199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012100", "MAP": "D9-9224-T017", "PARCEL_NAM": "76", "ACRE": "1.54", "LONGITUDE": -64.95776345, "LATITUDE": 18.31992511, "OBJECTID_1": 87180, "PARCEL_NO_": "507104012100", "Tax_Legal_": "76 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "WALLACE H HENSHAW JR 2012 TRUST", "Address": "15 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 311500, "Improved_V": 196800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 405.176247391, "SHAPE_Area": 6207.4592746999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355970.338200002908707, 254536.768399998545647 ], [ 355990.402500003576279, 254547.909499999135733 ], [ 355992.024099998176098, 254546.867300000041723 ], [ 356003.278300002217293, 254550.970100000500679 ], [ 356022.217299997806549, 254504.895700000226498 ], [ 356007.847499996423721, 254487.890599999576807 ], [ 356004.701399996876717, 254478.576699998229742 ], [ 356003.99040000140667, 254467.38289999961853 ], [ 356010.574000000953674, 254451.815900001674891 ], [ 355989.818400003015995, 254427.159200001507998 ], [ 355944.727899998426437, 254419.401799999177456 ], [ 355947.803900003433228, 254436.947799999266863 ], [ 355957.288999997079372, 254459.401299998164177 ], [ 355956.347800001502037, 254475.225600000470877 ], [ 355957.937100000679493, 254477.982900001108646 ], [ 355957.902900002896786, 254481.993400000035763 ], [ 355960.298500001430511, 254484.757199998944998 ], [ 355959.294399999082088, 254507.969300001859665 ], [ 355962.447700001299381, 254516.438799999654293 ], [ 355967.233400002121925, 254522.599700000137091 ], [ 355968.817299999296665, 254525.990200001746416 ], [ 355970.386699996888638, 254531.069200001657009 ], [ 355970.338200002908707, 254536.768399998545647 ] ] ], [ [ [ 355989.526000000536442, 254556.134899999946356 ], [ 355990.402500003576279, 254547.909499999135733 ], [ 355972.726599998772144, 254540.376499999314547 ], [ 355980.640399999916553, 254557.962000001221895 ], [ 355987.087300002574921, 254558.436999998986721 ], [ 355989.526000000536442, 254556.134899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012300", "MAP": "D9-8771-T013", "PARCEL_NAM": "75A", "ACRE": "1.23", "LONGITUDE": -64.95824452, "LATITUDE": 18.31854603, "OBJECTID_1": 87182, "PARCEL_NO_": "507104012300", "Tax_Legal_": "75A WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "WTI LLC", "Address": "PO Box 135", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 169000, "Improved_V": 306400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.71806697199997, "SHAPE_Area": 5054.37108377 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355975.40089999884367, 254366.939300000667572 ], [ 355975.287100002169609, 254362.85359999909997 ], [ 355976.922600001096725, 254360.240899998694658 ], [ 355980.773599997162819, 254355.895399998873472 ], [ 355994.484700001776218, 254348.274099998176098 ], [ 355987.949600003659725, 254323.043099999427795 ], [ 355981.866099998354912, 254319.4364 ], [ 355976.202100001275539, 254321.712000001221895 ], [ 355967.334499999880791, 254321.428399998694658 ], [ 355964.129000000655651, 254319.080099999904633 ], [ 355962.582900002598763, 254311.256999999284744 ], [ 355960.979299999773502, 254310.188400000333786 ], [ 355948.888199999928474, 254309.667199999094009 ], [ 355944.849399998784065, 254310.47859999909997 ], [ 355936.793499998748302, 254309.568300001323223 ], [ 355931.977200001478195, 254306.995700001716614 ], [ 355926.316799998283386, 254308.849199999123812 ], [ 355923.093400001525879, 254308.611699998378754 ], [ 355919.079800002276897, 254306.467999998480082 ], [ 355916.718400001525879, 254299.693599998950958 ], [ 355911.06700000166893, 254300.491799999028444 ], [ 355907.796800002455711, 254305.742300000041723 ], [ 355902.962499998509884, 254305.280600000172853 ], [ 355899.749899998307228, 254303.776599999517202 ], [ 355894.982100002467632, 254295.504999998956919 ], [ 355889.366700001060963, 254292.081500001251698 ], [ 355887.752300001680851, 254292.279399998486042 ], [ 355888.504699997603893, 254298.618400000035763 ], [ 355886.875799998641014, 254300.504900000989437 ], [ 355886.830899998545647, 254305.781800001859665 ], [ 355884.392200000584126, 254308.08390000090003 ], [ 355884.36879999935627, 254310.827899999916553 ], [ 355882.743600003421307, 254312.292300000786781 ], [ 355878.739000000059605, 254309.093100000172853 ], [ 355877.149700000882149, 254306.335900001227856 ], [ 355877.180299997329712, 254302.747499998658895 ], [ 355876.39919999986887, 254299.785799998790026 ], [ 355873.148800000548363, 254302.714499998837709 ], [ 355873.915500000119209, 254307.364900000393391 ], [ 355878.699400000274181, 254313.736800000071526 ], [ 355878.661700002849102, 254318.16950000077486 ], [ 355881.863499999046326, 254320.939899999648333 ], [ 355881.845600001513958, 254323.050700001418591 ], [ 355884.235699996352196, 254326.447799999266863 ], [ 355882.592500001192093, 254330.022900000214577 ], [ 355882.563799999654293, 254333.400199998170137 ], [ 355878.5033999979496, 254336.74439999833703 ], [ 355878.462099999189377, 254341.599199999123812 ], [ 355880.072899997234344, 254341.823499999940395 ], [ 355885.744099996984005, 254338.703499998897314 ], [ 355888.956699997186661, 254340.207499999552965 ], [ 355887.322499997913837, 254342.727200001478195 ], [ 355887.300899997353554, 254345.260200001299381 ], [ 355884.849600002169609, 254349.039799999445677 ], [ 355885.625399999320507, 254352.634700000286102 ], [ 355891.289300002157688, 254350.359099999070168 ], [ 355897.745200000703335, 254349.778599999845028 ], [ 355901.751599997282028, 254352.766699999570847 ], [ 355903.373199999332428, 254351.724500000476837 ], [ 355904.20830000191927, 254348.353900000452995 ], [ 355913.086800001561642, 254347.371100001037121 ], [ 355923.53999999910593, 254350.834100000560284 ], [ 355928.34910000115633, 254354.250999998301268 ], [ 355934.743900001049042, 254360.847199998795986 ], [ 355934.728299997746944, 254362.684399999678135 ], [ 355957.260300002992153, 254359.644799999892712 ], [ 355975.40089999884367, 254366.939300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011100", "MAP": "D9-8775-T013", "PARCEL_NAM": "81A", "ACRE": ".08", "LONGITUDE": -64.95502487, "LATITUDE": 18.31990093, "OBJECTID_1": 87169, "PARCEL_NO_": "507104011100", "Tax_Legal_": "80 & 81A WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SPENCER, VIRGINIA L.", "Address": "4455 Inke Rd", "City": "Richmond", "State": "Indiana", "Zip": 47374, "Country": "United States", "Land_Value": 138500, "Improved_V": 355800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.084757141, "SHAPE_Area": 480.75076255 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356276.96000000089407, 254505.2179000005126 ], [ 356279.227799996733665, 254495.01410000026226 ], [ 356280.51630000025034, 254488.57209999859333 ], [ 356281.944399997591972, 254483.974700000137091 ], [ 356284.44709999859333, 254480.307799998670816 ], [ 356287.572800002992153, 254476.031399998813868 ], [ 356289.273299999535084, 254474.553300000727177 ], [ 356260.367200002074242, 254473.06980000063777 ], [ 356261.108800001442432, 254480.675299998372793 ], [ 356265.844200000166893, 254492.746399998664856 ], [ 356276.96000000089407, 254505.2179000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011100", "MAP": "D9-8775-T013", "PARCEL_NAM": "80-REM", "ACRE": ".75", "LONGITUDE": -64.95479711, "LATITUDE": 18.3195596, "OBJECTID_1": 87169, "PARCEL_NO_": "507104011100", "Tax_Legal_": "80 & 81A WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "SPENCER, VIRGINIA L.", "Address": "4455 Inke Rd", "City": "Richmond", "State": "Indiana", "Zip": 47374, "Country": "United States", "Land_Value": 138500, "Improved_V": 355800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.746150078, "SHAPE_Area": 2979.4500245700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356295.435300000011921, 254474.869600001722574 ], [ 356317.23870000243187, 254458.142700001597404 ], [ 356332.348600000143051, 254457.563099998980761 ], [ 356334.799699999392033, 254444.125900000333786 ], [ 356333.35249999910593, 254424.693500000983477 ], [ 356285.011500000953674, 254419.864900000393391 ], [ 356275.229699999094009, 254432.23930000141263 ], [ 356262.121899999678135, 254456.407800000160933 ], [ 356259.625600002706051, 254465.464400000870228 ], [ 356260.367200002074242, 254473.06980000063777 ], [ 356295.435300000011921, 254474.869600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010900", "MAP": "D9-7888-T006", "PARCEL_NAM": "81", "ACRE": null, "LONGITUDE": -64.95471429, "LATITUDE": 18.31998077, "OBJECTID_1": 87167, "PARCEL_NO_": "507104010900", "Tax_Legal_": "81 WATER ISLAND CONSOLIDATED NO. 10 SOUTHSIDE QUARTER", "Name": "MURPHY, PATRICK W. & TRACEY A.", "Address": "103 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 117200, "Improved_V": 179100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.555161639, "SHAPE_Area": 2539.5228119899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356289.273299999535084, 254474.553300000727177 ], [ 356287.572800002992153, 254476.031399998813868 ], [ 356284.44709999859333, 254480.307799998670816 ], [ 356281.944399997591972, 254483.974700000137091 ], [ 356280.51630000025034, 254488.57209999859333 ], [ 356279.227799996733665, 254495.01410000026226 ], [ 356276.96000000089407, 254505.2179000005126 ], [ 356299.391000002622604, 254530.384500000625849 ], [ 356320.427000001072884, 254522.112900000065565 ], [ 356328.878600001335144, 254476.585900001227856 ], [ 356332.348600000143051, 254457.563099998980761 ], [ 356317.23870000243187, 254458.142700001597404 ], [ 356295.435300000011921, 254474.869600001722574 ], [ 356289.273299999535084, 254474.553300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250900", "MAP": "D3-390-T82", "PARCEL_NAM": "18-11", "ACRE": "2,400 sq ft", "LONGITUDE": -64.94247893, "LATITUDE": 18.33729047, "OBJECTID_1": 11151, "PARCEL_NO_": "105303250900", "Tax_Legal_": "18-11 HONDURAS CROWN PRINCE QTR", "Name": "SANDRA THERESA & STEVEN FRANCIS LaPLACE", "Address": "Box 5281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15200, "Improved_V": 22200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.363183439899998, "SHAPE_Area": 242.03252438600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357586.307800002396107, 256412.162200000137091 ], [ 357579.825699999928474, 256411.443900000303984 ], [ 357579.809500001370907, 256411.872800000011921 ], [ 357578.739699997007847, 256411.933100000023842 ], [ 357577.586099997162819, 256411.651700001209974 ], [ 357577.567199997603893, 256413.878899998962879 ], [ 357573.578400000929832, 256427.729699999094009 ], [ 357575.493500001728535, 256427.807900000363588 ], [ 357587.724399998784065, 256426.929000001400709 ], [ 357592.606700003147125, 256426.785500001162291 ], [ 357591.278099998831749, 256413.568900000303984 ], [ 357586.307800002396107, 256412.162200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601066400", "MAP": "D9-4700-T89", "PARCEL_NAM": "7-11B", "ACRE": "0.23", "LONGITUDE": -64.88162507, "LATITUDE": 18.33005091, "OBJECTID_1": 38179, "PARCEL_NO_": "107601066400", "Tax_Legal_": "7-11A ESTATE MARIENDAHL RED HOOK QUARTER", "Name": "STEVENS, DAVID", "Address": "PO BOX 305440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28700, "Improved_V": 250400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.387976286, "SHAPE_Area": 452.72213252699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364001.342100001871586, 255637.751499999314547 ], [ 363997.562899999320507, 255647.08669999986887 ], [ 364011.549300000071526, 255660.582800000905991 ], [ 364016.356700003147125, 255664.210700001567602 ], [ 364024.331699997186661, 255674.619600001722574 ], [ 364026.711000002920628, 255679.283100001513958 ], [ 364031.42119999974966, 255694.309300001710653 ], [ 364034.585400000214577, 255701.51240000128746 ], [ 364046.697999998927116, 255699.500599998980761 ], [ 364001.342100001871586, 255637.751499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601081600", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-21", "ACRE": "0.28", "LONGITUDE": -64.87731224, "LATITUDE": 18.32951974, "OBJECTID_1": 38206, "PARCEL_NO_": "107601081600", "Tax_Legal_": "MARIENDAHL 10-22 RED HOOK QTR.", "Name": "RENOLD MOTHE and EDLINE CASTOR", "Address": "PO Box 12215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42800, "Improved_V": 98800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.44743402899999, "SHAPE_Area": 1167.96384246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364497.418799996376038, 255609.464000001549721 ], [ 364483.009400002658367, 255589.168499998748302 ], [ 364455.325099997222424, 255628.540100000798702 ], [ 364468.116400003433228, 255641.521499998867512 ], [ 364503.042000003159046, 255617.519000001251698 ], [ 364497.418799996376038, 255609.464000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602013900", "MAP": "D9-7114-T002", "PARCEL_NAM": "2-52", "ACRE": "0.22", "LONGITUDE": -64.87201124000001, "LATITUDE": 18.32477952, "OBJECTID_1": 38333, "PARCEL_NO_": "107602013900", "Tax_Legal_": "2-52 ESTATE MARIENDAHL #4 RED HOOK QTR", "Name": "JULES, LINCOLN & GEORGETTE", "Address": "6030 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35300, "Improved_V": 217600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.66701588700001, "SHAPE_Area": 782.41462324899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365014.606299996376038, 255102.675799999386072 ], [ 365060.352300003170967, 255109.213199999183416 ], [ 365067.898900002241135, 255091.887600000947714 ], [ 365034.830600000917912, 255085.09569999948144 ], [ 365030.511100001633167, 255088.642200000584126 ], [ 365014.606299996376038, 255102.675799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602028700", "MAP": "D9-7517-T005", "PARCEL_NAM": "1-46-A", "ACRE": "137 sq ft", "LONGITUDE": -64.87068433, "LATITUDE": 18.32350514, "OBJECTID_1": 38458, "PARCEL_NO_": "107602028700", "Tax_Legal_": "1-46-A FRYDENHOJ RED HOOK QTR", "Name": "JOSEPH, VERNICE", "Address": "1-47 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.917949440199997, "SHAPE_Area": 22.243979686300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365186.035099998116493, 254949.521999999880791 ], [ 365182.236900001764297, 254967.223400000482798 ], [ 365187.088600002229214, 254956.325100000947714 ], [ 365186.035099998116493, 254949.521999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602028800", "MAP": "B9-57-T60", "PARCEL_NAM": "1-47-1", "ACRE": "139 sq ft", "LONGITUDE": -64.87072941, "LATITUDE": 18.32364768, "OBJECTID_1": 38459, "PARCEL_NO_": "107602028800", "Tax_Legal_": "1-47-1 FRYDENHOJ RED HOOK QTR", "Name": "BERKELEY, DEBRA", "Address": "4105 Moreland Dr", "City": "Valrico", "State": "Florida", "Zip": 33596, "Country": "United States", "Land_Value": 200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 21.715852576300001, "SHAPE_Area": 9.96501201363 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365182.236900001764297, 254967.223400000482798 ], [ 365178.267599999904633, 254976.139499999582767 ], [ 365180.157200001180172, 254976.916000001132488 ], [ 365182.236900001764297, 254967.223400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602032700", "MAP": "D9-973-T71", "PARCEL_NAM": "19-2", "ACRE": "0.28", "LONGITUDE": -64.87362321000001, "LATITUDE": 18.32266937, "OBJECTID_1": 38485, "PARCEL_NO_": "107602032700", "Tax_Legal_": "19-2 ESTATE NADIR NO.2 RED HOOK QTR.", "Name": "GARFIELD, JR., VICTOR", "Address": "2299 Princess Anne Rd", "City": "Virginia Beach", "State": "Virginia", "Zip": 23456, "Country": "United States", "Land_Value": 40200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.091868815, "SHAPE_Area": 1193.71621166 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364896.558700002729893, 254875.93299999833107 ], [ 364895.027800001204014, 254849.811299998313189 ], [ 364893.900399997830391, 254847.098400000482798 ], [ 364859.604999996721745, 254848.175599999725819 ], [ 364855.276299998164177, 254848.752700001001358 ], [ 364854.731600001454353, 254878.166900001466274 ], [ 364896.558700002729893, 254875.93299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602032500", "MAP": "D9-973-T71", "PARCEL_NAM": "19-1", "ACRE": "0.28", "LONGITUDE": -64.87361761, "LATITUDE": 18.32294345, "OBJECTID_1": 38484, "PARCEL_NO_": "107602032500", "Tax_Legal_": "19-1 ESTATE NADIR No.2 RED HOOK QTR.", "Name": "STUART, WILFRED", "Address": "PO Box 6446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.06420639300001, "SHAPE_Area": 1348.29785479 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364898.298799999058247, 254905.621800001710653 ], [ 364896.558700002729893, 254875.93299999833107 ], [ 364854.731600001454353, 254878.166900001466274 ], [ 364854.122000001370907, 254911.08559999987483 ], [ 364898.298799999058247, 254905.621800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604015200", "MAP": "D9-973-T71", "PARCEL_NAM": "19-3", "ACRE": "0.32", "LONGITUDE": -64.87363184, "LATITUDE": 18.32234176, "OBJECTID_1": 38905, "PARCEL_NO_": "107604015200", "Tax_Legal_": "19-3 ESTATE NADIR No.2 REDHOOK QTR.", "Name": "HASSELL, MICHAEL C.", "Address": "1500 Beechwood Ln", "City": "Abilene", "State": "Texas", "Zip": 79603, "Country": "United States", "Land_Value": 40300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.32378526299999, "SHAPE_Area": 1331.29909137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364893.900399997830391, 254847.098400000482798 ], [ 364893.041286489868071, 254843.64958126223064 ], [ 364892.756576653511729, 254840.106790410674876 ], [ 364893.05390569998417, 254836.565036304702517 ], [ 364893.925300002098083, 254833.119300000369549 ], [ 364891.926399998366833, 254829.535700000822544 ], [ 364890.326300002634525, 254828.045000001788139 ], [ 364884.78999999910593, 254815.334100000560284 ], [ 364883.193599998950958, 254813.421100001782179 ], [ 364883.209799997508526, 254811.52140000090003 ], [ 364876.913900002837181, 254793.315900001674891 ], [ 364873.690499998629093, 254793.078400000929832 ], [ 364863.066299997270107, 254809.66780000180006 ], [ 364859.225400000810623, 254813.732799999415874 ], [ 364859.604999996721745, 254848.175599999725819 ], [ 364893.900399997830391, 254847.098400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87423529, "LATITUDE": 18.32284442, "OBJECTID_1": 38465, "PARCEL_NO_": "107602030200", "Tax_Legal_": "19 ESTATE NADIR NO.2 RED HOOK QTR", "Name": "STUART, DANNA", "Address": "PO Box 302651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25900, "Improved_V": 128000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 9.7368062988900004, "SHAPE_Area": 2.0683541395799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364809.678800001740456, 254878.839000001549721 ], [ 364810.035700000822544, 254882.061099998652935 ], [ 364811.444200001657009, 254883.1864 ], [ 364809.678800001740456, 254878.839000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030200", "MAP": "D9-983-T71", "PARCEL_NAM": "19-6", "ACRE": "0.29", "LONGITUDE": -64.87398976, "LATITUDE": 18.32295904, "OBJECTID_1": 38465, "PARCEL_NO_": "107602030200", "Tax_Legal_": "19 ESTATE NADIR NO.2 RED HOOK QTR", "Name": "STUART, DANNA", "Address": "PO Box 302651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25900, "Improved_V": 128000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.58385193800001, "SHAPE_Area": 1225.5603950899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364854.122000001370907, 254911.08559999987483 ], [ 364854.731600001454353, 254878.166900001466274 ], [ 364809.678800001740456, 254878.839000001549721 ], [ 364811.444200001657009, 254883.1864 ], [ 364811.637500002980232, 254883.340700000524521 ], [ 364819.5962999984622, 254895.649300001561642 ], [ 364825.154200002551079, 254905.827300000935793 ], [ 364828.1841000020504, 254915.465199999511242 ], [ 364854.122000001370907, 254911.08559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602032100", "MAP": "D9-983-T71", "PARCEL_NAM": "19-5", "ACRE": "0.28", "LONGITUDE": -64.87401122, "LATITUDE": 18.32269483, "OBJECTID_1": 38480, "PARCEL_NO_": "107602032100", "Tax_Legal_": "19-5 ESTATE NADIR #2 REDHOOK QTR", "Name": "CHARLES, WINIFRED & ST. ROSE ROSANA", "Address": "6026 FRYDENHOJ #3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.021563953, "SHAPE_Area": 1169.3950748 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364855.276299998164177, 254848.752700001001358 ], [ 364816.252400003373623, 254852.632199998944998 ], [ 364815.071299999952316, 254858.881999999284744 ], [ 364809.286899998784065, 254875.299899999052286 ], [ 364809.678800001740456, 254878.839000001549721 ], [ 364854.731600001454353, 254878.166900001466274 ], [ 364855.276299998164177, 254848.752700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030200", "MAP": "D9-983-T71", "PARCEL_NAM": "19-4", "ACRE": "0.31", "LONGITUDE": -64.87395233, "LATITUDE": 18.32244603, "OBJECTID_1": 38465, "PARCEL_NO_": "107602030200", "Tax_Legal_": "19 ESTATE NADIR NO.2 RED HOOK QTR", "Name": "STUART, DANNA", "Address": "PO Box 302651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25900, "Improved_V": 128000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.864181057, "SHAPE_Area": 1030.8616262099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364855.276299998164177, 254848.752700001001358 ], [ 364859.604999996721745, 254848.175599999725819 ], [ 364859.225400000810623, 254813.732799999415874 ], [ 364855.743000000715256, 254817.418299999088049 ], [ 364843.585400000214577, 254824.707100000232458 ], [ 364822.563699997961521, 254831.290100000798702 ], [ 364819.293499998748302, 254836.540600001811981 ], [ 364816.252400003373623, 254852.632199998944998 ], [ 364855.276299998164177, 254848.752700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603015000", "MAP": "D9-3546-T86", "PARCEL_NAM": "X", "ACRE": "0.30", "LONGITUDE": -64.88168559, "LATITUDE": 18.3204236, "OBJECTID_1": 38567, "PARCEL_NO_": "107603015000", "Tax_Legal_": "PARCEL #X BOVONI FRENCHMANS BAY QTR.", "Name": "HENDRICKSON, EDWARD", "Address": "PO Box 4981", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 34700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.855663242600002, "SHAPE_Area": 171.31836082800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364010.042000003159046, 254607.002500001341105 ], [ 364014.075400002300739, 254606.824400000274181 ], [ 364021.321400001645088, 254608.150299999862909 ], [ 364034.99099999666214, 254612.695099998265505 ], [ 364038.97919999808073, 254614.299300000071526 ], [ 364039.882500000298023, 254608.879700001329184 ], [ 364031.554499998688698, 254605.376600001007318 ], [ 364012.849600002169609, 254599.824700001627207 ], [ 364010.042000003159046, 254607.002500001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603015200", "MAP": "D9-3546-T86", "PARCEL_NAM": "3-37A", "ACRE": "540 sq ft", "LONGITUDE": -64.88171256, "LATITUDE": 18.32075388, "OBJECTID_1": 38569, "PARCEL_NO_": "107603015200", "Tax_Legal_": "BOVONI ESTATE 3-37A No.1&2 FRENCHMAN'S BAY QTR.", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.142526142800001, "SHAPE_Area": 25.7487699281 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364026.887100003659725, 254633.501400001347065 ], [ 364017.992200002074242, 254647.626400001347065 ], [ 364020.976199999451637, 254648.677400000393391 ], [ 364026.887100003659725, 254633.501400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603015100", "MAP": "D9-3546-T86", "PARCEL_NAM": "3-38A", "ACRE": "0.01", "LONGITUDE": -64.88160405000001, "LATITUDE": 18.32054426, "OBJECTID_1": 38568, "PARCEL_NO_": "107603015100", "Tax_Legal_": "3-38A BOVONI FRENCHMANS BAY QTR.", "Name": "HENDRICKSON, EDWARD", "Address": "PO Box 4981", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 1200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.319822775799999, "SHAPE_Area": 47.9899810426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364038.97919999808073, 254614.299300000071526 ], [ 364034.99099999666214, 254612.695099998265505 ], [ 364026.887100003659725, 254633.501400001347065 ], [ 364038.97919999808073, 254614.299300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603015300", "MAP": "D9-5654-T94", "PARCEL_NAM": "3-103A", "ACRE": "0.138", "LONGITUDE": -64.88228953, "LATITUDE": 18.31904492, "OBJECTID_1": 38570, "PARCEL_NO_": "107603015300", "Tax_Legal_": "BOVONI ESTATE 3-103A No.1&2 FRENCHMAN BAY QTR.", "Name": "COLON, MIGUEL & ANTONIA", "Address": "7446 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16700, "Improved_V": 39000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.0181109, "SHAPE_Area": 630.123309554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363979.261500000953674, 254448.053100001066923 ], [ 363953.216399997472763, 254437.814699999988079 ], [ 363945.976899996399879, 254460.19029999896884 ], [ 363972.515100002288818, 254468.6402000002563 ], [ 363979.261500000953674, 254448.053100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603038300", "MAP": "D9-6885-T001", "PARCEL_NAM": "33-138", "ACRE": "0.232", "LONGITUDE": -64.88004432, "LATITUDE": 18.32069117, "OBJECTID_1": 38705, "PARCEL_NO_": "107603038300", "Tax_Legal_": "33-138 ESTATE NADIR No.2 RED HOOK QTR.", "Name": "GUMBS, JACQUES", "Address": "PO Box 305541", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.61040313699999, "SHAPE_Area": 1868.2151776200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364214.349299997091293, 254594.771699998527765 ], [ 364168.745700001716614, 254656.800000000745058 ], [ 364176.8125, 254667.719700001180172 ], [ 364198.536899998784065, 254674.968499999493361 ], [ 364199.043600000441074, 254665.122499998658895 ], [ 364199.891199998557568, 254660.27419999986887 ], [ 364203.195600003004074, 254651.013199999928474 ], [ 364226.475299999117851, 254616.856800001114607 ], [ 364214.349299997091293, 254594.771699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603038200", "MAP": "D9-6885-T001", "PARCEL_NAM": "33-137", "ACRE": "0.233", "LONGITUDE": -64.88006591, "LATITUDE": 18.32029501, "OBJECTID_1": 38704, "PARCEL_NO_": "107603038200", "Tax_Legal_": "33-137 ESTATE NIDAR No.2 RED HOOK QTR.", "Name": "GUMBS, JOHN", "Address": "PO Box 305541", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.894190087, "SHAPE_Area": 841.996540471 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364173.847599998116493, 254593.777699999511242 ], [ 364199.742499999701977, 254614.639299999922514 ], [ 364214.349299997091293, 254594.771699998527765 ], [ 364202.465599998831749, 254573.12779999896884 ], [ 364173.847599998116493, 254593.777699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603038100", "MAP": "D9-6885-T001", "PARCEL_NAM": "33-136", "ACRE": "0.329", "LONGITUDE": -64.87978162, "LATITUDE": 18.32019106, "OBJECTID_1": 38703, "PARCEL_NO_": "107603038100", "Tax_Legal_": "33-136 ESTATE NADIR No.2 RED HOOK QTR.", "Name": "MAHONEY, CLARENCE", "Address": "7190 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.25670618199999, "SHAPE_Area": 1450.10096656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364202.465599998831749, 254573.12779999896884 ], [ 364226.475299999117851, 254616.856800001114607 ], [ 364236.675200000405312, 254601.89130000025034 ], [ 364242.677599996328354, 254595.367400001734495 ], [ 364242.482799999415874, 254555.849700000137091 ], [ 364224.927599996328354, 254561.054099999368191 ], [ 364207.113200001418591, 254569.77419999986887 ], [ 364202.465599998831749, 254573.12779999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603061800", "MAP": "A9-620-T003", "PARCEL_NAM": "7L-3", "ACRE": "0.01", "LONGITUDE": -64.87637468, "LATITUDE": 18.32001676, "OBJECTID_1": 38799, "PARCEL_NO_": "107603061800", "Tax_Legal_": "7L-3 ESTATE NADIR No.2 RED HOOK QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.525257560100002, "SHAPE_Area": 23.320511310400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364595.102300003170967, 254555.006799999624491 ], [ 364578.126299999654293, 254576.844500001519918 ], [ 364587.470200002193451, 254567.57209999859333 ], [ 364595.102300003170967, 254555.006799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603066000", "MAP": "D9-2814-T84", "PARCEL_NAM": "2B", "ACRE": "0.51", "LONGITUDE": -64.87470394, "LATITUDE": 18.31762693, "OBJECTID_1": 38836, "PARCEL_NO_": "107603066000", "Tax_Legal_": "2B NADIR RED HOOK QTR.", "Name": "BAILEY (LIFE ESTATE), VIVIAN G", "Address": "PO Box 9056", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60800, "Improved_V": 109600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.07135384599999, "SHAPE_Area": 1426.2598899899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364802.09009999781847, 254300.257800001651049 ], [ 364742.889700002968311, 254281.713300000876188 ], [ 364746.231899999082088, 254325.940600000321865 ], [ 364759.982400000095367, 254320.986900001764297 ], [ 364802.045500002801418, 254305.499200001358986 ], [ 364802.09009999781847, 254300.257800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603066100", "MAP": "D9-2332-T83", "PARCEL_NAM": "9B-A", "ACRE": "0.49", "LONGITUDE": -64.87450194, "LATITUDE": 18.31914617, "OBJECTID_1": 38837, "PARCEL_NO_": "107603066100", "Tax_Legal_": "9B-A NADIR RED HOOK QTR.", "Name": "SABINO, MARK & TEREASA", "Address": "PO Box 785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58600, "Improved_V": 79600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.53471339800001, "SHAPE_Area": 1356.8194979699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364782.378300003707409, 254437.060600001364946 ], [ 364762.005599997937679, 254479.780999999493361 ], [ 364805.234399996697903, 254499.098099999129772 ], [ 364804.618699997663498, 254476.717099998146296 ], [ 364782.378300003707409, 254437.060600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107603066700", "MAP": null, "PARCEL_NAM": "7A-1", "ACRE": null, "LONGITUDE": -64.87709764, "LATITUDE": 18.32087163, "OBJECTID_1": 38843, "PARCEL_NO_": "107603066700", "Tax_Legal_": "7A-1,7G-1,&7L-1 ESTATE NADIR RED HOOK QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.467912278, "SHAPE_Area": 60.9932470348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364519.638999998569489, 254650.744800001382828 ], [ 364517.266199998557568, 254650.067999999970198 ], [ 364512.631099998950958, 254655.768899999558926 ], [ 364499.912100002169609, 254669.1435999982059 ], [ 364501.292400002479553, 254670.680500000715256 ], [ 364503.220600001513958, 254668.893500000238419 ], [ 364507.074699997901917, 254665.32149999961257 ], [ 364515.217000000178814, 254656.100000001490116 ], [ 364519.638999998569489, 254650.744800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107603066700", "MAP": null, "PARCEL_NAM": "7G-1", "ACRE": null, "LONGITUDE": -64.8767737, "LATITUDE": 18.32048704, "OBJECTID_1": 38843, "PARCEL_NO_": "107603066700", "Tax_Legal_": "7A-1,7G-1,&7L-1 ESTATE NADIR RED HOOK QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.772131006799995, "SHAPE_Area": 67.430987712499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364554.854800000786781, 254606.460999999195337 ], [ 364552.6283999979496, 254605.615100000053644 ], [ 364537.151500001549721, 254625.610199999064207 ], [ 364533.741499997675419, 254629.804299999028444 ], [ 364535.401100002229214, 254631.241599999368191 ], [ 364550.264200001955032, 254612.268300000578165 ], [ 364554.854800000786781, 254606.460999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107603066700", "MAP": null, "PARCEL_NAM": "7L-1", "ACRE": null, "LONGITUDE": -64.87637264, "LATITUDE": 18.31999026, "OBJECTID_1": 38843, "PARCEL_NO_": "107603066700", "Tax_Legal_": "7A-1,7G-1,&7L-1 ESTATE NADIR RED HOOK QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.298886188699996, "SHAPE_Area": 82.165842066500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364575.616999998688698, 254575.915699999779463 ], [ 364578.126299999654293, 254576.844500001519918 ], [ 364595.102300003170967, 254555.006799999624491 ], [ 364600.638300001621246, 254552.821199998259544 ], [ 364595.633000001311302, 254551.262600000947714 ], [ 364592.223800003528595, 254554.934000000357628 ], [ 364579.373599998652935, 254571.062399998307228 ], [ 364575.616999998688698, 254575.915699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107603066700", "MAP": "A9-557-T000", "PARCEL_NAM": "7F-1", "ACRE": ".02", "LONGITUDE": -64.87693996, "LATITUDE": 18.32069031, "OBJECTID_1": 38843, "PARCEL_NO_": "107603066700", "Tax_Legal_": "7A-1,7G-1,&7L-1 ESTATE NADIR RED HOOK QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.857316630600003, "SHAPE_Area": 59.083173472299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364535.401100002229214, 254631.241599999368191 ], [ 364533.741499997675419, 254629.804299999028444 ], [ 364517.266199998557568, 254650.067999999970198 ], [ 364519.638999998569489, 254650.744800001382828 ], [ 364529.068099997937679, 254639.325899999588728 ], [ 364535.401100002229214, 254631.241599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107603066700", "MAP": null, "PARCEL_NAM": "7K-1", "ACRE": null, "LONGITUDE": -64.87657462, "LATITUDE": 18.32023925, "OBJECTID_1": 38843, "PARCEL_NO_": "107603066700", "Tax_Legal_": "7A-1,7G-1,&7L-1 ESTATE NADIR RED HOOK QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.280301171600001, "SHAPE_Area": 92.075712710399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364578.126299999654293, 254576.844500001519918 ], [ 364575.616999998688698, 254575.915699999779463 ], [ 364552.6283999979496, 254605.615100000053644 ], [ 364554.854800000786781, 254606.460999999195337 ], [ 364569.827899999916553, 254587.519400000572205 ], [ 364578.126299999654293, 254576.844500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107603066800", "MAP": null, "PARCEL_NAM": "6A-1A", "ACRE": "0.01", "LONGITUDE": -64.87720825, "LATITUDE": 18.32098101, "OBJECTID_1": 38844, "PARCEL_NO_": "107603066800", "Tax_Legal_": "NADIR ESTATE 6A-1A RED HOOK QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 19.065191745, "SHAPE_Area": 14.972202669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364495.757700003683567, 254675.727800000458956 ], [ 364501.292400002479553, 254670.680500000715256 ], [ 364499.912100002169609, 254669.1435999982059 ], [ 364494.404799997806549, 254674.388599999248981 ], [ 364495.757700003683567, 254675.727800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87579128, "LATITUDE": 18.31916519, "OBJECTID_1": 38803, "PARCEL_NO_": "107603062200", "Tax_Legal_": "7G-3 ESTATE NADIR No.2 RED HOOK QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 12.4901343117, "SHAPE_Area": 2.1335795666899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364651.202600002288818, 254472.408399999141693 ], [ 364645.472900003194809, 254472.692800000309944 ], [ 364651.4391999989748, 254473.141399998217821 ], [ 364651.202600002288818, 254472.408399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603062700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8760398, "LATITUDE": 18.31876186, "OBJECTID_1": 38808, "PARCEL_NO_": "107603062700", "Tax_Legal_": "8AD ESTATE NADIR RED HOOK QTR", "Name": "VENZEN, ALTURO", "Address": "6532 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39500, "Improved_V": 102100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.033195670200001, "SHAPE_Area": 90.158539116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364631.648199997842312, 254429.916299998760223 ], [ 364633.145300000905991, 254424.82209999859333 ], [ 364614.583400003612041, 254425.895899999886751 ], [ 364614.704800002276897, 254431.044199999421835 ], [ 364631.648199997842312, 254429.916299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604013700", "MAP": "F9-1817-T66", "PARCEL_NAM": "17-1", "ACRE": "0.196", "LONGITUDE": -64.87377689, "LATITUDE": 18.32170622, "OBJECTID_1": 38891, "PARCEL_NO_": "107604013700", "Tax_Legal_": "17-1 NADIR RED HOOK", "Name": "SEALEY, LEON", "Address": "14241 Les Palms Cir", "City": "Tampa", "State": "Florida", "Zip": 33613, "Country": "United States", "Land_Value": 19900, "Improved_V": 42500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.87945764200001, "SHAPE_Area": 1374.5843972499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364880.355700001120567, 254738.384100001305342 ], [ 364832.39130000025034, 254735.761599998921156 ], [ 364859.895099997520447, 254783.767000000923872 ], [ 364867.29389999806881, 254786.693199999630451 ], [ 364871.373999997973442, 254781.027100000530481 ], [ 364880.355700001120567, 254738.384100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87323761, "LATITUDE": 18.31846353, "OBJECTID_1": 38938, "PARCEL_NO_": "107604023100", "Tax_Legal_": "11H NADIR RED HOOK", "Name": "ROACH, HEZEKIAH", "Address": "PO Box 503274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.567483950899998, "SHAPE_Area": 29.7446150442 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364923.913800001144409, 254402.00620000064373 ], [ 364921.150700002908707, 254395.361600000411272 ], [ 364913.403399996459484, 254390.864100001752377 ], [ 364919.226599998772144, 254397.494899999350309 ], [ 364921.49889999628067, 254403.01630000025034 ], [ 364923.913800001144409, 254402.00620000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604035100", "MAP": "F9-2984-Y72", "PARCEL_NAM": "52M-A", "ACRE": "0.237", "LONGITUDE": -64.86970961, "LATITUDE": 18.32174103, "OBJECTID_1": 38991, "PARCEL_NO_": "107604035100", "Tax_Legal_": "52M-A FRYDENHOJ RED HOOK QTR.", "Name": "MARIE, CLEMENT & NOREEN", "Address": "6009 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34600, "Improved_V": 86200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.31304041199999, "SHAPE_Area": 959.83814358400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365310.714199997484684, 254771.497999999672174 ], [ 365310.26690000295639, 254754.221799999475479 ], [ 365311.116400003433228, 254749.162500001490116 ], [ 365269.953100003302097, 254753.680700000375509 ], [ 365269.740900002419949, 254778.587999999523163 ], [ 365310.714199997484684, 254771.497999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604035200", "MAP": "F9-2984-T72", "PARCEL_NAM": "52M-B", "ACRE": "0.23", "LONGITUDE": -64.86977714, "LATITUDE": 18.32201912, "OBJECTID_1": 38992, "PARCEL_NO_": "107604035200", "Tax_Legal_": "52M-B FRYDENHOJ RED HOOK QTR.", "Name": "PHILLIPS LETTSOME, CAROLYN L.", "Address": "6537 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.560937813, "SHAPE_Area": 621.80437146300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365269.740900002419949, 254778.587999999523163 ], [ 365277.7246999964118, 254812.765599999576807 ], [ 365294.718800000846386, 254810.180900000035763 ], [ 365289.272200003266335, 254784.464899998158216 ], [ 365288.311200000345707, 254775.374600000679493 ], [ 365269.740900002419949, 254778.587999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604035300", "MAP": "F9-2982-T72", "PARCEL_NAM": "52L-A", "ACRE": "0.23", "LONGITUDE": -64.86961146, "LATITUDE": 18.32227067, "OBJECTID_1": 38993, "PARCEL_NO_": "107604035300", "Tax_Legal_": "52LA FRYDENHOJ RED HOOK QTR.", "Name": "FELIX N HENDERSON REVOCABLE TRUST", "Address": "52L Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.602519433, "SHAPE_Area": 973.38159117299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365322.797899998724461, 254829.622499998658895 ], [ 365318.607699997723103, 254816.351500000804663 ], [ 365317.01129999756813, 254814.4386 ], [ 365317.03999999910593, 254811.0614 ], [ 365315.994499996304512, 254806.746700000017881 ], [ 365294.718800000846386, 254810.180900000035763 ], [ 365277.7246999964118, 254812.765599999576807 ], [ 365281.731600001454353, 254829.918200001120567 ], [ 365284.41330000013113, 254838.187899999320507 ], [ 365322.797899998724461, 254829.622499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604042400", "MAP": "F9-515-T60", "PARCEL_NAM": "12Q", "ACRE": "0.09", "LONGITUDE": -64.86814356, "LATITUDE": 18.32101763, "OBJECTID_1": 39018, "PARCEL_NO_": "107604042400", "Tax_Legal_": "12Q FRYDENHOJ RED HOOK QTR", "Name": "VIDAL, LLOYD & ANDREWER K.", "Address": "PO Box 502143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.2793643893, "SHAPE_Area": 399.99478116799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365469.738099999725819, 254681.85530000180006 ], [ 365455.316200003027916, 254670.971500001847744 ], [ 365452.053099997341633, 254675.377700001001358 ], [ 365445.552299998700619, 254681.235199999064207 ], [ 365440.293099999427795, 254684.353300001472235 ], [ 365458.566699996590614, 254698.98759999871254 ], [ 365469.738099999725819, 254681.85530000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604060900", "MAP": null, "PARCEL_NAM": "2K", "ACRE": null, "LONGITUDE": -64.87089012, "LATITUDE": 18.31896668, "OBJECTID_1": 39067, "PARCEL_NO_": "107604060900", "Tax_Legal_": "FRYDENHOJ ESTATE 2R RED HOOK QTR", "Name": "HERMAN, HUMPHREY & BIRCH CARL", "Address": "PO Box 503373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 9700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.185967288300006, "SHAPE_Area": 252.19950797499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365176.397200003266335, 254465.44370000064373 ], [ 365167.100599996745586, 254440.927299998700619 ], [ 365164.215199999511242, 254441.785100001841784 ], [ 365160.954199999570847, 254441.846900001168251 ], [ 365161.318099997937679, 254443.328400000929832 ], [ 365159.682099997997284, 254446.059300001710653 ], [ 365157.963600002229214, 254446.314899999648333 ], [ 365171.552100002765656, 254472.543099999427795 ], [ 365174.860799998044968, 254466.662200000137091 ], [ 365176.397200003266335, 254465.44370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604061000", "MAP": "G9-310-T54", "PARCEL_NAM": "53", "ACRE": "0.07", "LONGITUDE": -64.87080372, "LATITUDE": 18.31892885, "OBJECTID_1": 39068, "PARCEL_NO_": "107604061000", "Tax_Legal_": "FRYDENHOJ ESTATE 53 RED HOOK QTR", "Name": "SMITH, MONSANTO & BELL, A & H &", "Address": "PO Box 8815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.006636922599995, "SHAPE_Area": 272.149156742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365172.137000001966953, 254437.529100000858307 ], [ 365171.835199996829033, 254439.09569999948144 ], [ 365168.361400000751019, 254440.552499998360872 ], [ 365167.100599996745586, 254440.927299998700619 ], [ 365176.397200003266335, 254465.44370000064373 ], [ 365187.746699996292591, 254456.377199999988079 ], [ 365181.517099998891354, 254447.836300000548363 ], [ 365173.385300002992153, 254436.205200001597404 ], [ 365172.137000001966953, 254437.529100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604061100", "MAP": null, "PARCEL_NAM": "72A", "ACRE": "0.09", "LONGITUDE": -64.87073396, "LATITUDE": 18.31884249, "OBJECTID_1": 39069, "PARCEL_NO_": "107604061100", "Tax_Legal_": "FRYDENHOJ ESTATE 72A RED HOOK QTR", "Name": "HERMON, HUMPREY & DIANA", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29400, "Improved_V": 206000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.309479689699998, "SHAPE_Area": 178.35743052399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365175.3091000020504, 254434.165100000798702 ], [ 365180.396499998867512, 254443.129799999296665 ], [ 365189.186099998652935, 254455.022599998861551 ], [ 365192.509300000965595, 254453.096400000154972 ], [ 365184.803700000047684, 254431.488299999386072 ], [ 365180.239699997007847, 254431.027499999850988 ], [ 365175.3091000020504, 254434.165100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604061200", "MAP": null, "PARCEL_NAM": "72B", "ACRE": "0.02", "LONGITUDE": -64.87066352, "LATITUDE": 18.31884215, "OBJECTID_1": 39070, "PARCEL_NO_": "107604061200", "Tax_Legal_": "72B FRYDENHOJ RED HOOK QTR", "Name": "HERMAN, HUMPHREY & CALLISTR", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.362465282899997, "SHAPE_Area": 142.81765353899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365190.462300002574921, 254429.845899999141693 ], [ 365184.803700000047684, 254431.488299999386072 ], [ 365192.509300000965595, 254453.096400000154972 ], [ 365198.824600003659725, 254451.20380000025034 ], [ 365190.462300002574921, 254429.845899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604061500", "MAP": null, "PARCEL_NAM": "72 REM", "ACRE": "0.15", "LONGITUDE": -64.8705894, "LATITUDE": 18.31876822, "OBJECTID_1": 39072, "PARCEL_NO_": "107604061500", "Tax_Legal_": "72 FRYDENHOJ RED HOOK QTR", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78400, "Improved_V": 36000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.65304699500001, "SHAPE_Area": 438.40513137900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365191.385499998927116, 254416.132399998605251 ], [ 365190.119499996304512, 254400.820799998939037 ], [ 365187.102700002491474, 254400.576200000941753 ], [ 365188.725199997425079, 254414.711500000208616 ], [ 365190.462300002574921, 254429.845899999141693 ], [ 365198.824600003659725, 254451.20380000025034 ], [ 365201.194700002670288, 254450.189599998295307 ], [ 365213.4679000005126, 254445.534200001507998 ], [ 365205.011900000274181, 254425.743099998682737 ], [ 365204.143399998545647, 254424.302600000053644 ], [ 365193.416299998760223, 254427.668000001460314 ], [ 365191.385499998927116, 254416.132399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604023700", "MAP": "F9-3626-T78", "PARCEL_NAM": "11E-1", "ACRE": ".20", "LONGITUDE": -64.87357403, "LATITUDE": 18.31856504, "OBJECTID_1": 38942, "PARCEL_NO_": "107604023700", "Tax_Legal_": "11E-1 NADIR RED HOOK QTR.", "Name": "ROACH (LIFE ESTATE), HEZEKIAH", "Address": "6430 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.431035666100001, "SHAPE_Area": 295.06349660799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364876.288800001144409, 254402.281100001186132 ], [ 364875.385300002992153, 254419.962099999189377 ], [ 364888.993100002408028, 254416.612700000405312 ], [ 364895.978799998760223, 254396.582499999552965 ], [ 364893.996399998664856, 254397.2331000007689 ], [ 364888.337899997830391, 254398.875500001013279 ], [ 364876.288800001144409, 254402.281100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701017100", "MAP": "D9-6507-T98", "PARCEL_NAM": "84D-3 (ROW B)", "ACRE": "982 sq ft", "LONGITUDE": -64.86668055, "LATITUDE": 18.3251069, "OBJECTID_1": 39188, "PARCEL_NO_": "107701017100", "Tax_Legal_": "FRYDENHOJ R.0.W.-B 84D RED HOOD QTR.", "Name": "DE LAGARDE, DELITA C", "Address": "PO Box 7502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.552132625, "SHAPE_Area": 237.943311204 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365606.409400001168251, 255155.232500001788139 ], [ 365614.446299999952316, 255118.23589999973774 ], [ 365607.248999997973442, 255121.834499999880791 ], [ 365607.100699998438358, 255122.2652000002563 ], [ 365599.226899996399879, 255159.349899999797344 ], [ 365606.409400001168251, 255155.232500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021400", "MAP": "G3-173-T79", "PARCEL_NAM": "4A", "ACRE": "0.266", "LONGITUDE": -64.86225328, "LATITUDE": 18.32269808, "OBJECTID_1": 39220, "PARCEL_NO_": "107701021400", "Tax_Legal_": "4A FRYDENHOJ RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 415.067667099, "SHAPE_Area": 977.05144538499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366080.063400000333786, 254787.753199998289347 ], [ 366077.664200000464916, 254785.41160000115633 ], [ 366074.70380000025034, 254792.589099999517202 ], [ 366073.037799999117851, 254803.061000000685453 ], [ 366073.513800002634525, 254817.340900000184774 ], [ 366073.922899998724461, 254820.307300001382828 ], [ 366076.369699999690056, 254838.046599999070168 ], [ 366077.800700001418591, 254848.158900000154972 ], [ 366079.939699999988079, 254863.274300001561642 ], [ 366080.891699999570847, 254875.650199998170137 ], [ 366080.70160000026226, 254878.215999998152256 ], [ 366079.939699999988079, 254888.502000000327826 ], [ 366068.753799997270107, 254913.015799999237061 ], [ 366065.54900000244379, 254918.490699999034405 ], [ 366063.041900001466274, 254922.773699998855591 ], [ 366062.327899999916553, 254928.247600000351667 ], [ 366065.421899996697903, 254947.525400001555681 ], [ 366073.943800002336502, 254957.041499998420477 ], [ 366079.701700001955032, 254963.471200000494719 ], [ 366094.279100000858307, 254976.463300000876188 ], [ 366093.826099999248981, 254970.672899998724461 ], [ 366085.813299998641014, 254964.696699999272823 ], [ 366078.621200002729893, 254957.038499999791384 ], [ 366073.027400001883507, 254951.082100000232458 ], [ 366069.845299996435642, 254945.989799998700619 ], [ 366068.288400001823902, 254939.433100000023842 ], [ 366067.588200002908707, 254926.972899999469519 ], [ 366070.883599996566772, 254918.767200000584126 ], [ 366083.235399998724461, 254888.68189999833703 ], [ 366085.746100001037121, 254877.936700001358986 ], [ 366086.690800003707409, 254861.690200001001358 ], [ 366083.582500003278255, 254847.94370000064373 ], [ 366081.260600000619888, 254836.525600001215935 ], [ 366079.78830000013113, 254820.048300001770258 ], [ 366079.053900003433228, 254811.598499998450279 ], [ 366080.837300002574921, 254791.559300001710653 ], [ 366080.063400000333786, 254787.753199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701024200", "MAP": "D9-5814-T94", "PARCEL_NAM": "4B-1A", "ACRE": "0.231", "LONGITUDE": -64.86266727, "LATITUDE": 18.32502026, "OBJECTID_1": 39245, "PARCEL_NO_": "107701024200", "Tax_Legal_": "4B-1A EST. FRYDENHOJ NO. 3 RED HOOK QUARTER", "Name": "NESBITT, KENRICK", "Address": "6543 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021136, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.103498651, "SHAPE_Area": 863.88574455499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366037.729099996387959, 255119.034699998795986 ], [ 366045.074000000953674, 255108.751299999654293 ], [ 366019.405000001192093, 255113.026399999856949 ], [ 366019.588799998164177, 255115.919599998742342 ], [ 366019.96509999781847, 255121.8445999994874 ], [ 366021.455399997532368, 255136.211199998855591 ], [ 366021.466499999165535, 255136.701699998229742 ], [ 366021.667700000107288, 255145.555500000715256 ], [ 366021.854299999773502, 255153.765999998897314 ], [ 366023.139399997889996, 255153.829500000923872 ], [ 366042.262900002300739, 255154.775199998170137 ], [ 366042.295500002801418, 255150.947200000286102 ], [ 366041.607799999415874, 255137.009399998933077 ], [ 366037.729099996387959, 255119.034699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701059900", "MAP": null, "PARCEL_NAM": "156-1", "ACRE": "0.01", "LONGITUDE": -64.86519812, "LATITUDE": 18.33126996, "OBJECTID_1": 39441, "PARCEL_NO_": "107701059900", "Tax_Legal_": "FRYDENHOJ ESTATE 156-1 RED HOOK QUARTER", "Name": "FRYDENHOJ ESTATES CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 19.161766948699999, "SHAPE_Area": 15.439268269499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365761.601300001144409, 255822.671599999070168 ], [ 365754.371500000357628, 255819.445999998599291 ], [ 365753.846199996769428, 255820.897399999201298 ], [ 365759.718999996781349, 255824.651099998503923 ], [ 365761.601300001144409, 255822.671599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107702013000", "MAP": "D9-8468-T010", "PARCEL_NAM": "18-13S1", "ACRE": "604 sq ft", "LONGITUDE": -64.85282504, "LATITUDE": 18.32528523, "OBJECTID_1": 39478, "PARCEL_NO_": "107702013000", "Tax_Legal_": "18-13S,18-13S1,18-12S & 18-9S SMITH BAY NO.1,2,3 EAST END QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.528201388900001, "SHAPE_Area": 29.545192671399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367075.854999996721745, 255175.027300000190735 ], [ 367078.277500003576279, 255174.625 ], [ 367074.968400001525879, 255171.642700001597404 ], [ 367063.03490000218153, 255165.423200000077486 ], [ 367066.229599997401237, 255169.037900000810623 ], [ 367075.854999996721745, 255175.027300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702013000", "MAP": "D9-8468-T010", "PARCEL_NAM": "18-13S", "ACRE": "1,262 sq ft", "LONGITUDE": -64.85256557, "LATITUDE": 18.3254378, "OBJECTID_1": 39478, "PARCEL_NO_": "107702013000", "Tax_Legal_": "18-13S,18-13S1,18-12S & 18-9S SMITH BAY NO.1,2,3 EAST END QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.042688699, "SHAPE_Area": 82.803942393900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367075.854999996721745, 255175.027300000190735 ], [ 367119.405199997127056, 255201.851300001144409 ], [ 367120.647600002586842, 255200.740299999713898 ], [ 367099.936499997973442, 255187.890099998563528 ], [ 367078.277500003576279, 255174.625 ], [ 367075.854999996721745, 255175.027300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702013000", "MAP": "D9-8468-T010", "PARCEL_NAM": "18-9S", "ACRE": "67 sq ft", "LONGITUDE": -64.85203893000001, "LATITUDE": 18.32574077, "OBJECTID_1": 39478, "PARCEL_NO_": "107702013000", "Tax_Legal_": "18-13S,18-13S1,18-12S & 18-9S SMITH BAY NO.1,2,3 EAST END QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.494886200300002, "SHAPE_Area": 12.2937372091 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367149.127999998629093, 255220.158399999141693 ], [ 367163.656000003218651, 255227.612399999052286 ], [ 367148.946000002324581, 255218.372600000351667 ], [ 367149.127999998629093, 255220.158399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107702013000", "MAP": "D9-8468-T010", "PARCEL_NAM": "18-12S", "ACRE": "405 sq ft", "LONGITUDE": -64.85222565, "LATITUDE": 18.3256345, "OBJECTID_1": 39478, "PARCEL_NO_": "107702013000", "Tax_Legal_": "18-13S,18-13S1,18-12S & 18-9S SMITH BAY NO.1,2,3 EAST END QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.712366136200004, "SHAPE_Area": 52.240342114999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367119.405199997127056, 255201.851300001144409 ], [ 367149.127999998629093, 255220.158399999141693 ], [ 367148.946000002324581, 255218.372600000351667 ], [ 367139.240800000727177, 255212.276399999856949 ], [ 367120.647600002586842, 255200.740299999713898 ], [ 367119.405199997127056, 255201.851300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702013200", "MAP": "F9-370-T59", "PARCEL_NAM": "11", "ACRE": "0.25", "LONGITUDE": -64.8530703, "LATITUDE": 18.32473116, "OBJECTID_1": 39480, "PARCEL_NO_": "107702013200", "Tax_Legal_": "NAZARETH ESTATE 11 RED HOOK QUARTER", "Name": "KJAER, CHRISTIAN", "Address": "Po Box 10829", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.56825243899999, "SHAPE_Area": 1750.99882121 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367028.317800000309944, 255075.846500001847744 ], [ 367034.27419999986887, 255132.896699998527765 ], [ 367060.748999997973442, 255149.783599998801947 ], [ 367059.659699998795986, 255088.346400000154972 ], [ 367056.44879999756813, 255086.631400000303984 ], [ 367049.249499998986721, 255079.817499998956919 ], [ 367043.630500003695488, 255076.816199999302626 ], [ 367038.801700003445148, 255075.721200000494719 ], [ 367028.317800000309944, 255075.846500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107702015900", "MAP": "D9-8626-T012", "PARCEL_NAM": "17A-1", "ACRE": "717 sq ft", "LONGITUDE": -64.8509112, "LATITUDE": 18.3263925, "OBJECTID_1": 39538, "PARCEL_NO_": "107702015900", "Tax_Legal_": "17A-1 SMITH BAY NO. 1&2 EAST END QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.973399652799998, "SHAPE_Area": 64.872628532600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367257.390799999237061, 255284.291700001806021 ], [ 367268.959100000560284, 255294.38060000166297 ], [ 367274.997900001704693, 255298.657999999821186 ], [ 367278.106499999761581, 255303.238699998706579 ], [ 367281.403499998152256, 255298.474599998444319 ], [ 367274.813500002026558, 255294.868099998682737 ], [ 367257.390799999237061, 255284.291700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702015800", "MAP": "D9-7100-T002", "PARCEL_NAM": "100-1", "ACRE": "0.29", "LONGITUDE": -64.85334735000001, "LATITUDE": 18.3246353, "OBJECTID_1": 39536, "PARCEL_NO_": "107702015800", "Tax_Legal_": "100-1 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.380468396, "SHAPE_Area": 1512.3433702299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367009.474899999797344, 255064.488400001078844 ], [ 366995.452200002968311, 255108.133900001645088 ], [ 367034.27419999986887, 255132.896699998527765 ], [ 367028.317800000309944, 255075.846500001847744 ], [ 367021.888899996876717, 255073.260800000280142 ], [ 367009.474899999797344, 255064.488400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702015700", "MAP": "D9-7100-T002", "PARCEL_NAM": "100-2", "ACRE": "0.06", "LONGITUDE": -64.85409339, "LATITUDE": 18.32426511, "OBJECTID_1": 39535, "PARCEL_NO_": "107702015700", "Tax_Legal_": "NAZARETH 100 REMAINDER OF TRACK #2 No.2 RED HOOK QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.541649993299998, "SHAPE_Area": 276.74612710999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366925.766099996864796, 255050.424199998378754 ], [ 366927.719300001859665, 255052.647199999541044 ], [ 366938.089900001883507, 255065.819899998605251 ], [ 366942.171999998390675, 255069.694099999964237 ], [ 366949.409299999475479, 255063.902100000530481 ], [ 366942.364100001752377, 255050.818199999630451 ], [ 366932.551100000739098, 255045.030999999493361 ], [ 366925.766099996864796, 255050.424199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702019900", "MAP": "D9-5196-T91", "PARCEL_NAM": "18A-1A", "ACRE": null, "LONGITUDE": -64.85121415, "LATITUDE": 18.32609574, "OBJECTID_1": 39541, "PARCEL_NO_": "107702019900", "Tax_Legal_": "SMITH BAY 18-1A,18B-1A &18B-2 EASTEND QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.313352776299993, "SHAPE_Area": 99.579176535499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367257.277800001204014, 255270.870999999344349 ], [ 367231.217000000178814, 255254.3739 ], [ 367227.64360000193119, 255252.225900001823902 ], [ 367225.062200002372265, 255254.456399999558926 ], [ 367257.25620000064373, 255273.403999999165535 ], [ 367257.277800001204014, 255270.870999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702019900", "MAP": null, "PARCEL_NAM": "18B-1A", "ACRE": null, "LONGITUDE": -64.85160571, "LATITUDE": 18.32587426, "OBJECTID_1": 39541, "PARCEL_NO_": "107702019900", "Tax_Legal_": "SMITH BAY 18-1A,18B-1A &18B-2 EASTEND QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.0603049, "SHAPE_Area": 210.852157111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367227.64360000193119, 255252.225900001823902 ], [ 367185.171700000762939, 255226.696400001645088 ], [ 367174.599299997091293, 255219.251600001007318 ], [ 367172.654899999499321, 255222.461800001561642 ], [ 367188.256800003349781, 255232.520399998873472 ], [ 367202.696699999272823, 255241.293400000780821 ], [ 367225.062200002372265, 255254.456399999558926 ], [ 367227.64360000193119, 255252.225900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702019900", "MAP": null, "PARCEL_NAM": "18B-2", "ACRE": null, "LONGITUDE": -64.8523574, "LATITUDE": 18.32542355, "OBJECTID_1": 39541, "PARCEL_NO_": "107702019900", "Tax_Legal_": "SMITH BAY 18-1A,18B-1A &18B-2 EASTEND QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.72736330700002, "SHAPE_Area": 436.14676145300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367174.599299997091293, 255219.251600001007318 ], [ 367060.689699999988079, 255146.4391999989748 ], [ 367060.748999997973442, 255149.783599998801947 ], [ 367093.629799999296665, 255170.9510000012815 ], [ 367144.148800000548363, 255204.08390000090003 ], [ 367172.654899999499321, 255222.461800001561642 ], [ 367174.599299997091293, 255219.251600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702013400", "MAP": "D9-5196-T91", "PARCEL_NAM": "18B-1", "ACRE": ".48", "LONGITUDE": -64.85153235, "LATITUDE": 18.32578026, "OBJECTID_1": 39482, "PARCEL_NO_": "107702013400", "Tax_Legal_": "18B-1 ESTATE SMITH BAY EASTEND QTR.", "Name": "IGY AYH ST THOMAS HOLDINGS LLC", "Address": "6100 Red Hook Qts", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 418200, "Improved_V": 2121000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.83476747200001, "SHAPE_Area": 1413.96993116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367247.838299997150898, 255234.776299998164177 ], [ 367236.237899996340275, 255231.927400000393391 ], [ 367206.546400003135204, 255220.262800000607967 ], [ 367194.616800002753735, 255201.705699998885393 ], [ 367189.962600000202656, 255193.886700000613928 ], [ 367174.599299997091293, 255219.251600001007318 ], [ 367185.171700000762939, 255226.696400001645088 ], [ 367227.64360000193119, 255252.225900001823902 ], [ 367247.838299997150898, 255234.776299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02804808, "LATITUDE": 18.35897027, "OBJECTID_1": 1151, "PARCEL_NO_": "102301010600", "Tax_Legal_": "4-11 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "LYNCH, SEAN", "Address": "1550 N Brown Rd", "City": "Lawrenceville", "State": "Georgia", "Zip": 30043, "Country": "United States", "Land_Value": 842700, "Improved_V": 1067800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 599.98594904599997, "SHAPE_Area": 19663.470089800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348564.179300002753735, 258682.484400000423193 ], [ 348554.903673605178483, 258681.623447869846132 ], [ 348545.605499997735023, 258681.055599998682737 ], [ 348538.677555188594852, 258678.614078051730758 ], [ 348531.953000001609325, 258675.658100001513958 ], [ 348510.298859681352042, 258664.126819789002184 ], [ 348488.296700000762939, 258653.274300001561642 ], [ 348484.513520763313863, 258651.895814985880861 ], [ 348480.572920095699374, 258651.068571092531784 ], [ 348476.554778236604761, 258650.809337450162275 ], [ 348472.540547268697992, 258651.123369005188579 ], [ 348468.611599996685982, 258652.004299998283386 ], [ 348459.108599998056889, 258656.164000000804663 ], [ 348459.586000002920628, 258661.509199999272823 ], [ 348477.827899999916553, 258865.739399999380112 ], [ 348482.689099997282028, 258863.035000000149012 ], [ 348514.142499998211861, 258862.447999998927116 ], [ 348608.160400003194809, 258719.115699999034405 ], [ 348612.964699998497963, 258711.791499998420477 ], [ 348611.963200002908707, 258710.900699999183416 ], [ 348601.451650788716506, 258699.744867903820705 ], [ 348590.373099997639656, 258689.151900000870228 ], [ 348585.544441788399126, 258686.542479538242333 ], [ 348580.431920797971543, 258684.545696031069383 ], [ 348575.112908245064318, 258683.19176814716775 ], [ 348569.667900324275251, 258682.501185787841678 ], [ 348564.179300002753735, 258682.484400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102303030900", "MAP": "A9-695-T006", "PARCEL_NAM": "4-37", "ACRE": "3.98", "LONGITUDE": -65.03192196000001, "LATITUDE": 18.34899978, "OBJECTID_1": 1230, "PARCEL_NO_": "102303030900", "Tax_Legal_": "4-37 BOTANY BAY NO.7 WEST END QTR", "Name": "TWGMSM HOLDINGS LLC", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 673100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 524.70987227099999, "SHAPE_Area": 17259.273350799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348191.682700000703335, 257678.296599999070168 ], [ 348162.391599997878075, 257570.00959999859333 ], [ 348160.707299999892712, 257563.782900001853704 ], [ 348152.86966821202077, 257564.255664524127496 ], [ 348145.082641073560808, 257565.262732883595163 ], [ 348137.382600001990795, 257566.799400001764297 ], [ 348122.731224058778025, 257569.444944340415532 ], [ 348108.013800002634525, 257571.694200001657009 ], [ 348099.085553647601046, 257572.540877703722799 ], [ 348090.121165599906817, 257572.805817390821176 ], [ 348081.158500000834465, 257572.487900000065565 ], [ 348073.464066689484753, 257573.259753664402524 ], [ 348065.861476508318447, 257574.674209248652915 ], [ 348058.40429999679327, 257576.7212999984622 ], [ 348051.632556025870144, 257580.253539038152667 ], [ 348045.138560910942033, 257584.27364556514658 ], [ 348038.957400001585484, 257588.759899999946356 ], [ 348036.414899997413158, 257590.396499998867512 ], [ 348037.326899997889996, 257592.453299999237061 ], [ 348096.580200001597404, 257726.083099998533726 ], [ 348100.550899997353554, 257735.037999998778105 ], [ 348107.01954460790148, 257731.63409931192291 ], [ 348113.601099997758865, 257728.453999999910593 ], [ 348124.326234084379394, 257724.219455541926436 ], [ 348135.191200003027916, 257720.357799999415874 ], [ 348148.998349706351291, 257714.423854341119295 ], [ 348162.496200002729893, 257707.816500000655651 ], [ 348174.402500003576279, 257701.307700000703335 ], [ 348179.825087869248819, 257698.323192712850869 ], [ 348185.443496799911372, 257695.726035805681022 ], [ 348191.230099998414516, 257693.528999999165535 ], [ 348195.374700002372265, 257691.945599999278784 ], [ 348191.682700000703335, 257678.296599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303030800", "MAP": "A9-672-T006", "PARCEL_NAM": "4-8", "ACRE": "4.553", "LONGITUDE": -65.03092667, "LATITUDE": 18.35990235, "OBJECTID_1": 1229, "PARCEL_NO_": "102303030800", "Tax_Legal_": "4-08 ESTATE BOTANY BAY NO.7 WESTEND QTR.", "Name": "MCCAFFREYS BOTANY BAY LLC", "Address": "2200 Cabot Blvd W", "City": "Langhorne", "State": "Pennsylvania", "Zip": 19047, "Country": "United States", "Land_Value": 677000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 667.61119260500004, "SHAPE_Area": 19822.616530700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348267.715000003576279, 258922.944600000977516 ], [ 348277.472900003194809, 258911.39919999986887 ], [ 348287.062799997627735, 258902.154399998486042 ], [ 348247.80179999768734, 258715.093699999153614 ], [ 348245.9695999994874, 258709.618299998342991 ], [ 348229.802500002086163, 258724.825899999588728 ], [ 348228.528148382960353, 258726.32328577779117 ], [ 348227.476692555414047, 258727.984784155996749 ], [ 348226.668969289807137, 258729.777469110005768 ], [ 348226.120985292014666, 258731.665814882406266 ], [ 348225.843599997460842, 258733.612399999052286 ], [ 348227.193199999630451, 258739.045800000429153 ], [ 348228.145761517749634, 258740.531476023665164 ], [ 348229.327100001275539, 258741.842599999159575 ], [ 348226.420199997723103, 258747.169300001114607 ], [ 348221.873599998652935, 258745.21510000154376 ], [ 348220.266500003635883, 258747.078899998217821 ], [ 348110.351899996399879, 258908.030499998480082 ], [ 348113.792199999094009, 258908.826799999922514 ], [ 348124.233300000429153, 258914.807399999350309 ], [ 348126.658299997448921, 258913.979200001806021 ], [ 348133.155100002884865, 258907.47859999909997 ], [ 348143.651199996471405, 258905.648899998515844 ], [ 348151.716300003230572, 258905.491700001060963 ], [ 348154.130999997258186, 258906.141100000590086 ], [ 348152.503300003707409, 258908.241300001740456 ], [ 348146.034699998795986, 258910.731199998408556 ], [ 348146.817299999296665, 258914.114000000059605 ], [ 348164.526100002229214, 258918.665699999779463 ], [ 348172.58669999986887, 258919.141800001263618 ], [ 348184.710299998521805, 258915.211899999529123 ], [ 348192.778399996459484, 258914.632500000298023 ], [ 348198.409599997103214, 258916.570099998265505 ], [ 348204.833800002932549, 258920.412999998778105 ], [ 348220.073100000619888, 258932.125500001013279 ], [ 348225.699799999594688, 258934.696299999952316 ], [ 348233.763400003314018, 258934.750199999660254 ], [ 348238.610500000417233, 258933.515999998897314 ], [ 348249.09910000115633, 258932.741799999028444 ], [ 348261.222699999809265, 258928.811999998986721 ], [ 348267.715000003576279, 258922.944600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301031800", "MAP": "D9-7779-T006", "PARCEL_NAM": "4-18", "ACRE": "2.830", "LONGITUDE": -65.02769474, "LATITUDE": 18.35704811, "OBJECTID_1": 1178, "PARCEL_NO_": "102301031800", "Tax_Legal_": "4-18 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "BACCHUS BAY LLC", "Address": "52A Company Street Christiansted", "City": "ST. CROIX", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 526400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 571.13752049300001, "SHAPE_Area": 12308.732106900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348603.981799997389317, 258604.031100001186132 ], [ 348639.521099999547005, 258530.877000000327826 ], [ 348641.668200001120567, 258526.457400001585484 ], [ 348640.764701257401612, 258526.676045119296759 ], [ 348639.887299999594688, 258526.9831000007689 ], [ 348637.719988251745235, 258527.809945254848571 ], [ 348635.683100000023842, 258528.919900000095367 ], [ 348631.861955370579381, 258531.378529375593644 ], [ 348627.766459935111925, 258533.346503415959887 ], [ 348623.459299996495247, 258534.793699998408556 ], [ 348619.532189450983424, 258534.868261923867976 ], [ 348615.622440193372313, 258534.491940970474388 ], [ 348611.781648343021516, 258533.669703364896122 ], [ 348608.060500003397465, 258532.412399999797344 ], [ 348605.813689785427414, 258531.149865598825272 ], [ 348603.788045176537707, 258529.556468853610568 ], [ 348602.031868303136434, 258527.670204805675894 ], [ 348600.587035749631468, 258525.536052008566912 ], [ 348599.487999998033047, 258523.204900000244379 ], [ 348599.630296697374433, 258516.173279377369909 ], [ 348600.319624997908249, 258509.174082035635365 ], [ 348601.55179999768734, 258502.249800000339746 ], [ 348603.454492320306599, 258494.608075074764201 ], [ 348605.814504261652473, 258487.094983730377862 ], [ 348608.623247324081603, 258479.737867425603326 ], [ 348611.87049999833107, 258472.563499998301268 ], [ 348615.75209159438964, 258463.676322910469025 ], [ 348619.96679999679327, 258454.942200001329184 ], [ 348620.144065448315814, 258454.786485118354904 ], [ 348620.291885127779096, 258454.602584309614031 ], [ 348620.405847293441184, 258454.395986173418351 ], [ 348620.482550695829559, 258454.172856719611445 ], [ 348620.51970608899137, 258453.939855342265218 ], [ 348620.516204554354772, 258453.703936067206087 ], [ 348620.472150596731808, 258453.472140006197151 ], [ 348620.388859025260899, 258453.251385211886372 ], [ 348620.268815712595824, 258453.048260205599945 ], [ 348620.115603402839042, 258452.868827340105781 ], [ 348619.933794782904442, 258452.718441866076319 ], [ 348619.728816008835565, 258452.601592102379072 ], [ 348619.506784759985749, 258452.521765480167232 ], [ 348619.274327653925866, 258452.481344459229149 ], [ 348619.03838247252861, 258452.481535422179149 ], [ 348618.805991100729443, 258452.522332669672323 ], [ 348618.584089358511847, 258452.602518590399995 ], [ 348618.379299998283386, 258452.719700001180172 ], [ 348613.596390229009558, 258457.334761356643867 ], [ 348608.377999998629093, 258461.4510000012815 ], [ 348602.537308904866222, 258465.172814431774896 ], [ 348596.441120770003181, 258468.459463991923258 ], [ 348590.121799997985363, 258471.293499998748302 ], [ 348563.928000003099442, 258479.86600000038743 ], [ 348555.520831930509303, 258482.793906946317293 ], [ 348547.323982485453598, 258486.267345193831716 ], [ 348539.372806711355224, 258490.271332942764275 ], [ 348531.70160000026226, 258494.788600001484156 ], [ 348506.665500000119209, 258512.276999998837709 ], [ 348497.366093823395204, 258517.056089052261086 ], [ 348488.204099997878075, 258522.093600001186132 ], [ 348462.9628000035882, 258530.983600001782179 ], [ 348458.308257037715521, 258532.014534530113451 ], [ 348453.87821866403101, 258533.775885213544825 ], [ 348449.786499999463558, 258536.22239999845624 ], [ 348449.043600000441074, 258537.476100001484156 ], [ 348463.391800001263618, 258543.639499999582767 ], [ 348603.981799997389317, 258604.031100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301031500", "MAP": "D9-7779-T006", "PARCEL_NAM": "4-15", "ACRE": "3.45", "LONGITUDE": -65.02574732, "LATITUDE": 18.35809762, "OBJECTID_1": 1175, "PARCEL_NO_": "102301031500", "Tax_Legal_": "4-15 BOTANY BAY No.7 WESTEND QTR.", "Name": "ADLAUR STT 4-15 LLC", "Address": "1 Estate Botany Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 471400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 526.34940078199998, "SHAPE_Area": 16748.447685499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348828.491099998354912, 258588.096200000494719 ], [ 348739.089400000870228, 258579.116300001740456 ], [ 348738.206699997186661, 258582.757399998605251 ], [ 348725.718299999833107, 258579.582400001585484 ], [ 348724.287100002169609, 258579.222500000149012 ], [ 348722.547399997711182, 258584.951499998569489 ], [ 348682.470200002193451, 258716.928399998694658 ], [ 348828.965800002217293, 258716.023499999195337 ], [ 348828.716600000858307, 258656.281300000846386 ], [ 348827.962499998509884, 258650.153400000184774 ], [ 348828.491099998354912, 258588.096200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "104801012600", "MAP": "A9-695-T006", "PARCEL_NAM": "4-30", "ACRE": "6.17", "LONGITUDE": -65.032673, "LATITUDE": 18.34726558, "OBJECTID_1": 7207, "PARCEL_NO_": "104801012600", "Tax_Legal_": "4-29 & 4-30 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "STEADFAST, LLC", "Address": "1 Columbus Pl", "City": "New York", "State": "New York", "Zip": 10019, "Country": "United States", "Land_Value": 997200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 700.96502469200004, "SHAPE_Area": 24958.781396499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348079.9679000005126, 257566.931699998676777 ], [ 348084.128300003707409, 257567.423500001430511 ], [ 348084.784500002861023, 257561.1722999997437 ], [ 348103.12610000371933, 257386.446899998933077 ], [ 348074.106600001454353, 257317.00730000063777 ], [ 348057.149599999189377, 257322.368900001049042 ], [ 348030.409999996423721, 257337.559799998998642 ], [ 348010.16950000077486, 257347.104499999433756 ], [ 348004.48929999768734, 257351.279899999499321 ], [ 347995.594700001180172, 257354.162399999797344 ], [ 347986.719899997115135, 257354.723000001162291 ], [ 347973.018500000238419, 257348.810899998992682 ], [ 348009.517499998211861, 257594.389600001275539 ], [ 348009.844800002872944, 257596.59180000051856 ], [ 348015.144799999892712, 257595.638999998569489 ], [ 348022.195422752120066, 257592.181473888922483 ], [ 348028.903200000524521, 257588.098400000482798 ], [ 348044.910499997437, 257576.589000001549721 ], [ 348050.300042331975419, 257573.456401809467934 ], [ 348055.961383829184342, 257570.84689027260174 ], [ 348061.843900002539158, 257568.7837999984622 ], [ 348066.2607910783845, 257567.518468695227057 ], [ 348070.796011926955543, 257566.782423901720904 ], [ 348075.386368879058864, 257566.585921650170349 ], [ 348079.9679000005126, 257566.931699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301031400", "MAP": null, "PARCEL_NAM": "4-14", "ACRE": null, "LONGITUDE": -65.02719047, "LATITUDE": 18.35730406, "OBJECTID_1": 1174, "PARCEL_NO_": "102301031400", "Tax_Legal_": "4-14 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "KOBAZ LLC", "Address": "5212 Wimmelskafts Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 462000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1543.5228153400001, "SHAPE_Area": 28662.906821100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348494.478900000452995, 258363.173700001090765 ], [ 348551.23200000077486, 258354.872699998319149 ], [ 348638.723800003528595, 258358.444400001317263 ], [ 348654.707500003278255, 258359.096900001168251 ], [ 348661.483499996364117, 258359.373500000685453 ], [ 348664.143429683870636, 258353.020345063792774 ], [ 348666.109829161490779, 258346.419505974015919 ], [ 348667.360217612644192, 258339.646446671453305 ], [ 348667.880300000309944, 258332.778599999845028 ], [ 348668.650904334441293, 258329.091435686103068 ], [ 348668.979900002479553, 258325.339000001549721 ], [ 348660.196699999272823, 258325.339000001549721 ], [ 348528.604400001466274, 258325.339000001549721 ], [ 348502.755300000309944, 258325.339000001549721 ], [ 348367.485500000417233, 258334.574700001627207 ], [ 348279.293999999761581, 258347.803399998694658 ], [ 348234.354599997401237, 258354.544300001114607 ], [ 348232.000600002706051, 258354.897399999201298 ], [ 348248.553300000727177, 258399.826099999248981 ], [ 348248.622299998998642, 258401.460099998861551 ], [ 348292.989799998700619, 258372.768500000238419 ], [ 348370.333800002932549, 258369.085400000214577 ], [ 348374.8108000010252, 258368.87220000103116 ], [ 348494.478900000452995, 258363.173700001090765 ] ] ], [ [ [ 348828.520999997854233, 258777.024300001561642 ], [ 348828.961099997162819, 258722.235199999064207 ], [ 348828.966600000858307, 258716.202899999916553 ], [ 348682.470200002193451, 258716.928399998694658 ], [ 348674.410599999129772, 258736.884899999946356 ], [ 348682.283074540260714, 258737.269445575948339 ], [ 348690.157700002193451, 258736.931800000369549 ], [ 348697.872110606345814, 258735.866394504264463 ], [ 348705.645096415362787, 258735.388993777392898 ], [ 348713.431903912918642, 258735.502346488239709 ], [ 348721.187700003385544, 258736.205800000578165 ], [ 348724.140756542270537, 258737.261592681665206 ], [ 348726.886416656780057, 258738.777043651789427 ], [ 348729.353688831150066, 258740.712969560758211 ], [ 348731.478779520373791, 258743.019315300160088 ], [ 348733.206742590351496, 258745.636448223085608 ], [ 348734.492899999022484, 258748.496700000017881 ], [ 348748.281099997460842, 258800.764299999922514 ], [ 348749.069930868048687, 258808.166058066592086 ], [ 348749.227035804244224, 258815.60807356366422 ], [ 348748.751278663927224, 258823.036527761054458 ], [ 348747.646099999547005, 258830.397700000554323 ], [ 348744.681500002741814, 258840.348000001162291 ], [ 348813.709399998188019, 258884.819899998605251 ], [ 348828.841899998486042, 258888.376499999314547 ], [ 348828.682899996638298, 258856.141399998217821 ], [ 348828.681999996304512, 258855.961599998176098 ], [ 348828.674199998378754, 258854.369199998676777 ], [ 348828.662299998104572, 258851.964600000530481 ], [ 348828.500200003385544, 258779.617800001055002 ], [ 348828.520999997854233, 258777.024300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102204010800", "MAP": "D9-8015-T007", "PARCEL_NAM": "1-2-B", "ACRE": "2.53", "LONGITUDE": -65.03832547, "LATITUDE": 18.35031941, "OBJECTID_1": 1147, "PARCEL_NO_": "102204010800", "Tax_Legal_": "1-2-B CONS. BOTANY BAY No.7 WEST END QTR", "Name": "SMITH, JEFFERY M. & SARAH A.", "Address": "36 Farmside Dr", "City": "Pembroke", "State": "Massachusetts", "Zip": 2359, "Country": "United States", "Land_Value": 990000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.79477330899999, "SHAPE_Area": 6608.5111379099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347498.269000001251698, 257803.521000001579523 ], [ 347439.248700000345707, 257729.589299999177456 ], [ 347433.538500003516674, 257734.80799999833107 ], [ 347426.261900000274181, 257737.07039999961853 ], [ 347412.567100003361702, 257735.480700001120567 ], [ 347406.102300003170967, 257737.116500001400709 ], [ 347398.807700000703335, 257741.489799998700619 ], [ 347393.131099998950958, 257745.243000000715256 ], [ 347387.44200000166893, 257750.473799999803305 ], [ 347382.546599999070168, 257757.188700001686811 ], [ 347380.890799999237061, 257762.241399999707937 ], [ 347433.661499999463558, 257815.024500001221895 ], [ 347466.499099999666214, 257841.257800001651049 ], [ 347467.656499996781349, 257842.182399999350309 ], [ 347468.338200002908707, 257841.458599999547005 ], [ 347475.0287000015378, 257834.886900000274181 ], [ 347480.006300002336502, 257829.949200000613928 ], [ 347484.817225138889626, 257824.034073638205882 ], [ 347489.213799998164177, 257817.804800000041723 ], [ 347492.206236664613243, 257813.174560992629267 ], [ 347495.519255555758718, 257808.768009472958511 ], [ 347499.136200003325939, 257804.607299998402596 ], [ 347498.269000001251698, 257803.521000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301013200", "MAP": "A9-695-T006", "PARCEL_NAM": "4-32", "ACRE": "4.41", "LONGITUDE": -65.03490347, "LATITUDE": 18.34785861, "OBJECTID_1": 1157, "PARCEL_NO_": "102301013200", "Tax_Legal_": "4-32 BOTANY BAY NO.7 WEST END QTR", "Name": "ADLAUR STT LLC", "Address": "1 Estate Botany Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 345500, "Improved_V": 2409400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 630.01978161800002, "SHAPE_Area": 19667.652419900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347886.285099998116493, 257554.954999998211861 ], [ 347838.030699998140335, 257396.279500000178814 ], [ 347823.418600000441074, 257403.415600001811981 ], [ 347812.837600000202656, 257414.9391999989748 ], [ 347796.402099996805191, 257451.112799998372793 ], [ 347792.325599998235703, 257456.356800001114607 ], [ 347788.279600001871586, 257458.01240000128746 ], [ 347785.862499997019768, 257457.781500000506639 ], [ 347779.440700002014637, 257454.351399999111891 ], [ 347777.021799996495247, 257454.331599999219179 ], [ 347769.682300001382828, 257463.981899999082088 ], [ 347745.293300002813339, 257487.213700000196695 ], [ 347726.686999998986721, 257494.238600000739098 ], [ 347723.440099999308586, 257496.745099999010563 ], [ 347721.021200001239777, 257496.725299999117851 ], [ 347717.810300000011921, 257495.010299999266863 ], [ 347713.778800003230572, 257494.977299999445677 ], [ 347711.341899998486042, 257497.068300001323223 ], [ 347710.499600000679493, 257501.28319999948144 ], [ 347708.053700000047684, 257504.42960000038147 ], [ 347703.214000001549721, 257504.601100001484156 ], [ 347697.591399997472763, 257502.021999999880791 ], [ 347691.93639999628067, 257503.242199998348951 ], [ 347692.706799998879433, 257507.470400001853704 ], [ 347697.827299997210503, 257515.2060999982059 ], [ 347815.177199997007847, 257608.855399999767542 ], [ 347818.559000000357628, 257609.397399999201298 ], [ 347823.524849474662915, 257602.705748676118674 ], [ 347829.010099999606609, 257596.432799998670816 ], [ 347834.538230001518968, 257591.470851521735312 ], [ 347839.79088663920993, 257586.218161520257127 ], [ 347844.75280000269413, 257580.690000001341105 ], [ 347849.89009447908029, 257576.250091344933026 ], [ 347855.457002763287164, 257572.362403655541129 ], [ 347861.394418133364525, 257569.068214508326491 ], [ 347867.639300003647804, 257566.402499999850988 ], [ 347877.845384990621824, 257563.508791462198133 ], [ 347888.235799998044968, 257561.36939999833703 ], [ 347886.285099998116493, 257554.954999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102204010300", "MAP": "B9-349-T72", "PARCEL_NAM": "1-4", "ACRE": null, "LONGITUDE": -65.03914248, "LATITUDE": 18.35250748, "OBJECTID_1": 1143, "PARCEL_NO_": "102204010300", "Tax_Legal_": "BOTANY BAY 1-4 WEST END QTR", "Name": "CASAGRANDE FAMILY REAL ESTATE TRUST", "Address": "40 MASSACHUSETTS AVENUE", "City": "ARLINGTON", "State": "Massachusetts", "Zip": 2474, "Country": "United States", "Land_Value": 561400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 612.85646693700005, "SHAPE_Area": 15080.7702317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347338.009099997580051, 258063.120900001376867 ], [ 347339.627199999988079, 258062.500900000333786 ], [ 347342.040700003504753, 258063.153900001198053 ], [ 347342.803900003433228, 258068.226399999111891 ], [ 347346.018299996852875, 258069.519299998879433 ], [ 347348.437299996614456, 258069.539099998772144 ], [ 347351.6841000020504, 258067.032600000500679 ], [ 347359.76519999653101, 258064.987799998372793 ], [ 347367.027400001883507, 258064.413899999111891 ], [ 347370.241899996995926, 258065.706799998879433 ], [ 347387.982500001788139, 258065.640900000929832 ], [ 347400.894299998879433, 258064.480000000447035 ], [ 347408.14750000089407, 258064.961599998176098 ], [ 347413.746799997985363, 258070.284699998795986 ], [ 347417.756800003349781, 258072.850699998438358 ], [ 347440.944899998605251, 258001.2685999982059 ], [ 347400.206000000238419, 257955.972300000488758 ], [ 347399.493100002408028, 257955.17960000038147 ], [ 347393.708999998867512, 257961.88399999961257 ], [ 347390.22204637248069, 257966.521740222116932 ], [ 347387.094400003552437, 257971.409000001847744 ], [ 347384.069373764446937, 257977.163747464888729 ], [ 347380.444200001657009, 257982.560600001364946 ], [ 347378.046912415476982, 257984.449572441226337 ], [ 347375.518799997866154, 257986.159499999135733 ], [ 347374.194742516439874, 257986.366824590222677 ], [ 347372.85478008229984, 257986.391570808104007 ], [ 347371.523970396607183, 257986.233275890990626 ], [ 347370.227200001478195, 257985.894900001585484 ], [ 347366.5173790382687, 257983.267433607077692 ], [ 347363.281800001859665, 257980.074099998921156 ], [ 347361.352265645982698, 257977.413312005723128 ], [ 347359.820562511042226, 257974.505257487413473 ], [ 347358.717799998819828, 257971.409000001847744 ], [ 347357.703498298244085, 257968.11114210129017 ], [ 347357.039605242549442, 257964.725300893740496 ], [ 347356.733400002121925, 257961.288600001484156 ], [ 347356.82761922175996, 257956.422533774632029 ], [ 347357.33595066057751, 257951.582174600596773 ], [ 347358.254699997603893, 257946.802700001746416 ], [ 347359.114600002765656, 257939.592799998819828 ], [ 347359.366858784225769, 257937.052113174664555 ], [ 347359.313100002706051, 257934.499499998986721 ], [ 347359.21491701726336, 257933.972537900001043 ], [ 347359.029798780800775, 257933.469487016991479 ], [ 347358.76298289897386, 257933.004580319247907 ], [ 347358.422018473502249, 257932.59097155125346 ], [ 347358.016552512999624, 257932.240363069809973 ], [ 347357.558056987356395, 257931.962674745707773 ], [ 347357.059504247852601, 257931.765763297851663 ], [ 347356.534999996423721, 257931.655200000852346 ], [ 347355.940405074914452, 257931.640290609619115 ], [ 347355.351893688261043, 257931.726428629015572 ], [ 347354.786513355444185, 257931.911118882970186 ], [ 347354.260641554021277, 257932.189011414535344 ], [ 347353.789511310402304, 257932.552056458895095 ], [ 347353.386769942298997, 257932.989737622556277 ], [ 347353.064083733945154, 257933.489376513723982 ], [ 347352.830799996852875, 257934.036499999463558 ], [ 347347.580212074448355, 257944.542539127520286 ], [ 347342.115099996328354, 257954.9386 ], [ 347329.944300003349781, 257969.887600000947714 ], [ 347325.208600991696585, 257973.391834580659634 ], [ 347320.704625520855188, 257977.189295584656065 ], [ 347316.450499996542931, 257981.264699999243021 ], [ 347311.436849479796365, 257986.581445296702441 ], [ 347306.660899996757507, 257992.112700000405312 ], [ 347301.420411899511237, 257999.693854545679642 ], [ 347295.54839999973774, 258006.797100000083447 ], [ 347290.288763178628869, 258010.899443468253594 ], [ 347285.361900001764297, 258015.396000001579523 ], [ 347284.935999943874776, 258015.526319915312342 ], [ 347284.537253815622535, 258015.72475293793832 ], [ 347284.176469229743816, 258015.985920741950395 ], [ 347283.863424889510497, 258016.302744636719581 ], [ 347283.606605546898209, 258016.666637429327238 ], [ 347283.412972031859681, 258017.067736171651632 ], [ 347283.287772585987113, 258017.495169485773658 ], [ 347283.234400614339393, 258017.937352221633773 ], [ 347283.254302710527554, 258018.382299460994545 ], [ 347283.346939448267221, 258018.817951356526464 ], [ 347283.509800001978874, 258019.232500001788139 ], [ 347283.889832080050837, 258020.02224512808607 ], [ 347284.145630634855479, 258020.860510506230639 ], [ 347284.271271876990795, 258021.727883565006778 ], [ 347284.263846203219146, 258022.604277656850172 ], [ 347284.12352557759732, 258023.469397224806016 ], [ 347283.853559548733756, 258024.303207807679428 ], [ 347283.460199996829033, 258025.086399998515844 ], [ 347283.13190738495905, 258025.973416051128879 ], [ 347282.670375982532278, 258026.798983904911438 ], [ 347282.086712823773269, 258027.5432357667014 ], [ 347281.394964118138887, 258028.188260762224672 ], [ 347280.611777219397482, 258028.718535972177051 ], [ 347279.755999997258186, 258029.121300000697374 ], [ 347278.316548338916618, 258029.271507069963263 ], [ 347276.870159888523631, 258029.221072054671822 ], [ 347275.444667015457526, 258028.970965458982391 ], [ 347274.067500002682209, 258028.526000000536442 ], [ 347273.322808404569514, 258028.17271384736523 ], [ 347272.644323450920638, 258027.704702255665325 ], [ 347272.04956735833548, 258027.13405186124146 ], [ 347271.553900003433228, 258026.475499998778105 ], [ 347267.325199998915195, 258030.667300000786781 ], [ 347265.59570000320673, 258044.374200001358986 ], [ 347271.205700002610683, 258048.430900000035763 ], [ 347275.185099996626377, 258054.585200000554323 ], [ 347276.675499998033047, 258068.951799999922514 ], [ 347278.232299998402596, 258075.508400000631809 ], [ 347278.122599996626377, 258088.384199999272823 ], [ 347279.701099999248981, 258092.407900001853704 ], [ 347282.103900000452995, 258094.327399998903275 ], [ 347286.130000002682209, 258094.993700001388788 ], [ 347307.135499998927116, 258090.310400001704693 ], [ 347317.6570999994874, 258085.752500001341105 ], [ 347329.823700003325939, 258077.408300001174212 ], [ 347338.009099997580051, 258063.120900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "104801020600", "MAP": "A9-695-T006", "PARCEL_NAM": "4-28", "ACRE": "6.26", "LONGITUDE": -65.03085008, "LATITUDE": 18.34702417, "OBJECTID_1": 7219, "PARCEL_NO_": "104801020600", "Tax_Legal_": "4-28 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "FERRER, CYNTHIA F. & JESSE F.", "Address": "2603 Oak Lawn Ave", "City": "Dallas", "State": "Texas", "Zip": 75219, "Country": "United States", "Land_Value": 908500, "Improved_V": 2527800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 690.37236473899998, "SHAPE_Area": 27195.216267700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348181.882700003683567, 257554.628499999642372 ], [ 348198.898299999535084, 257550.924400001764297 ], [ 348199.030599996447563, 257553.173300001770258 ], [ 348206.960100002586842, 257550.099300000816584 ], [ 348285.205700002610683, 257534.238699998706579 ], [ 348304.123000003397465, 257378.170499999076128 ], [ 348287.911100000143051, 257332.9358000010252 ], [ 348287.734999999403954, 257332.833200000226498 ], [ 348213.007500000298023, 257289.266399998217821 ], [ 348201.688100002706051, 257299.065000001341105 ], [ 348176.656000003218651, 257304.978000000119209 ], [ 348181.722999997437, 257547.002500001341105 ], [ 348181.882700003683567, 257554.628499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303021000", "MAP": "D9-7861-T006", "PARCEL_NAM": "4-22", "ACRE": "2.861", "LONGITUDE": -65.02669954, "LATITUDE": 18.35338147, "OBJECTID_1": 1226, "PARCEL_NO_": "102303021000", "Tax_Legal_": "4-22 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "JOHN L & SANDRA K NUSSBAUM REVOCABLE TRUST", "Address": "3532 Grand Meadow Dr", "City": "Appleton", "State": "Wisconsin", "Zip": 54914, "Country": "United States", "Land_Value": 529100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 441.39800820699998, "SHAPE_Area": 11486.7345628 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348668.543399997055531, 258060.078600000590086 ], [ 348663.754100002348423, 258054.339800000190735 ], [ 348660.567900002002716, 258057.192800000309944 ], [ 348652.693199999630451, 258059.146000001579523 ], [ 348649.869259182538372, 258060.563756159855984 ], [ 348647.314132011902984, 258062.422788005787879 ], [ 348645.096141262329184, 258064.673385992442491 ], [ 348643.274594855727628, 258067.255370297410991 ], [ 348641.898199997842312, 258070.099700000137091 ], [ 348640.368199220567476, 258073.78424064812134 ], [ 348639.284690279746428, 258077.623869606817607 ], [ 348638.662881303578615, 258081.564693855907535 ], [ 348638.511500000953674, 258085.551399998366833 ], [ 348637.029960749030579, 258092.393262796394993 ], [ 348635.050843998324126, 258099.108107693289639 ], [ 348632.584799997508526, 258105.659800000488758 ], [ 348612.688100002706051, 258159.423200000077486 ], [ 348611.902201276330743, 258163.664577030809596 ], [ 348611.818261368316598, 258167.977333691815147 ], [ 348612.438526150537655, 258172.246079119329806 ], [ 348613.746399998664856, 258176.356600001454353 ], [ 348617.616807191807311, 258187.861982995964354 ], [ 348621.043650583946146, 258199.507180892833276 ], [ 348624.021899998188019, 258211.275100000202656 ], [ 348627.100000001490116, 258210.538100000470877 ], [ 348661.188199996948242, 258202.376200001686811 ], [ 348745.604099996387959, 258101.239199999719858 ], [ 348721.547799997031689, 258085.421399999409914 ], [ 348708.700800001621246, 258078.983500000089407 ], [ 348674.952500000596046, 258064.986200001090765 ], [ 348668.543399997055531, 258060.078600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301010900", "MAP": "A9-672-T006", "PARCEL_NAM": "4-9", "ACRE": "5.02", "LONGITUDE": -65.03002864, "LATITUDE": 18.35920126, "OBJECTID_1": 1153, "PARCEL_NO_": "102301010900", "Tax_Legal_": "4-9 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "DCPVI LLC", "Address": "821 S Linwood Ave", "City": "CUSHING", "State": "Oklahoma", "Zip": 74023, "Country": "United States", "Land_Value": 585500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 703.79543384700003, "SHAPE_Area": 21163.539794799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348367.305500000715256, 258871.589800000190735 ], [ 348359.564300000667572, 258694.226799998432398 ], [ 348359.541299998760223, 258693.700199998915195 ], [ 348357.121899999678135, 258695.549499999731779 ], [ 348351.699699997901917, 258698.486000001430511 ], [ 348343.673699997365475, 258702.832699999213219 ], [ 348340.832389618910383, 258702.517926322878338 ], [ 348338.069761048536748, 258701.783072244783398 ], [ 348335.447562864748761, 258700.64456277230056 ], [ 348333.024404832278378, 258699.127845170529326 ], [ 348330.854447892459575, 258697.266820180608192 ], [ 348328.986193591204938, 258695.103084291040432 ], [ 348327.461400002241135, 258692.684999998658895 ], [ 348325.057934141543228, 258685.634613290167181 ], [ 348323.376538151875138, 258678.378063944313908 ], [ 348322.434299997985363, 258670.989100001752377 ], [ 348322.41394985379884, 258663.121713295811787 ], [ 348323.162833051523194, 258655.290023716544965 ], [ 348324.673774942348246, 258647.569062486756593 ], [ 348326.932300001382828, 258640.032800000160933 ], [ 348329.593383452971466, 258633.896541396825342 ], [ 348331.628627371683251, 258627.525292149221059 ], [ 348333.017700001597404, 258620.982700001448393 ], [ 348333.033116583363153, 258620.513003608532017 ], [ 348332.971219002443831, 258620.047148414305411 ], [ 348332.833686683152337, 258619.597774145309813 ], [ 348332.624251194647513, 258619.177073362487135 ], [ 348332.348595005110838, 258618.796460648998618 ], [ 348332.014197303040419, 258618.466262906149495 ], [ 348331.630131069920026, 258618.195439160743263 ], [ 348331.206816908961628, 258617.991337485989789 ], [ 348330.755740310298279, 258617.859495631360915 ], [ 348330.28914002305828, 258617.803490770602366 ], [ 348329.81967598979827, 258617.824842444912065 ], [ 348329.360085853259079, 258617.922971334017348 ], [ 348328.922839354374446, 258618.095214974717237 ], [ 348328.519799999892712, 258618.336899999529123 ], [ 348245.9695999994874, 258709.618299998342991 ], [ 348247.80179999768734, 258715.093699999153614 ], [ 348287.062799997627735, 258902.154399998486042 ], [ 348289.655000001192093, 258899.662999998778105 ], [ 348298.569399997591972, 258894.458599999547005 ], [ 348347.124300003051758, 258874.1689000017941 ], [ 348367.305500000715256, 258871.589800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301030400", "MAP": "A9-672-T006", "PARCEL_NAM": "4-4", "ACRE": "5.8", "LONGITUDE": -65.0300305, "LATITUDE": 18.35650477, "OBJECTID_1": 1171, "PARCEL_NO_": "102301030400", "Tax_Legal_": "4-4 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "GRANT, TODD & TIA FLAMELL", "Address": "23 Lantern Ln", "City": "East Brunswick", "State": "New Jersey", "Zip": 8816, "Country": "United States", "Land_Value": 590900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 711.37041816199996, "SHAPE_Area": 23594.9209195 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348338.856799997389317, 258606.7939000017941 ], [ 348339.659400001168251, 258604.293699998408556 ], [ 348371.516099996864796, 258505.053899999707937 ], [ 348374.8108000010252, 258368.87220000103116 ], [ 348370.333800002932549, 258369.085400000214577 ], [ 348292.989799998700619, 258372.768500000238419 ], [ 348248.622299998998642, 258401.460099998861551 ], [ 348250.945900000631809, 258456.475000001490116 ], [ 348235.547600001096725, 258513.330299999564886 ], [ 348234.531599998474121, 258517.081799998879433 ], [ 348311.217000000178814, 258559.441300000995398 ], [ 348303.249099999666214, 258626.231800001114607 ], [ 348302.050599999725819, 258636.278599999845028 ], [ 348321.067299999296665, 258615.188299998641014 ], [ 348328.052299998700619, 258606.933299999684095 ], [ 348329.466607375943568, 258606.104063807346392 ], [ 348331.002240077126771, 258605.529842398042092 ], [ 348332.613634486333467, 258605.22767344219028 ], [ 348334.252979068958666, 258605.20652256696485 ], [ 348335.871632983209565, 258605.467017338029109 ], [ 348337.421569298428949, 258606.001428639079677 ], [ 348338.856799997389317, 258606.7939000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301031700", "MAP": "A9-667B-T006", "PARCEL_NAM": "4-17", "ACRE": null, "LONGITUDE": -65.02814274000001, "LATITUDE": 18.35772678, "OBJECTID_1": 1177, "PARCEL_NO_": "102301031700", "Tax_Legal_": "4-17 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "BACCHUS BAY LLC", "Address": "52A Company Street Christiansted", "City": "ST. CROIX", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 457600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 488.59710363599999, "SHAPE_Area": 13824.5800124 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348569.742899999022484, 258674.508400000631809 ], [ 348603.981799997389317, 258604.031100001186132 ], [ 348463.391800001263618, 258543.639499999582767 ], [ 348449.043600000441074, 258537.476100001484156 ], [ 348444.760576387285255, 258545.438155190786347 ], [ 348441.055200003087521, 258553.684900000691414 ], [ 348439.861700605368242, 258558.75866341474466 ], [ 348439.274638167582452, 258563.937743804970523 ], [ 348439.302199414581992, 258569.149917667353293 ], [ 348439.943999998271465, 258574.322500001639128 ], [ 348440.009854353847913, 258582.140732365718577 ], [ 348439.426411611959338, 258589.937442483584164 ], [ 348438.197700001299381, 258597.6587999984622 ], [ 348435.982238302647602, 258603.154383103217697 ], [ 348434.462764444004279, 258608.881590397562832 ], [ 348433.662564043013845, 258614.752653633273439 ], [ 348433.593900002539158, 258620.677600000053644 ], [ 348433.646002910507377, 258623.016631640668493 ], [ 348434.068473916850053, 258625.317783955833875 ], [ 348434.850615193834528, 258627.522787074121879 ], [ 348435.972621328546666, 258629.575805817934452 ], [ 348437.406080836604815, 258631.424853564123623 ], [ 348439.114695598662365, 258633.023108651279472 ], [ 348441.055200003087521, 258634.330099999904633 ], [ 348446.209600428817794, 258636.757790136471158 ], [ 348451.58515963080572, 258638.645880815893179 ], [ 348457.125561286578886, 258639.974591710197274 ], [ 348462.772762123786379, 258640.73000275855884 ], [ 348468.467600002884865, 258640.904199998825788 ], [ 348478.346395634813234, 258643.297701748786494 ], [ 348488.10688211483648, 258646.135369353898568 ], [ 348497.729099996387959, 258649.411400001496077 ], [ 348513.809468048100825, 258659.360524467454525 ], [ 348530.114100001752377, 258668.937699999660254 ], [ 348534.034950268047396, 258671.058078570058569 ], [ 348538.2466000020504, 258672.517900001257658 ], [ 348568.552199997007847, 258676.959300000220537 ], [ 348569.742899999022484, 258674.508400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02902615000001, "LATITUDE": 18.35925971, "OBJECTID_1": 1154, "PARCEL_NO_": "102301011000", "Tax_Legal_": "4-10 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "4-10 ESTATE BOTANY BAY LLC", "Address": "PO Box 6467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 949400, "Improved_V": 2085700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 633.542393285, "SHAPE_Area": 22842.054546200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348389.677299998700619, 258895.837600000202656 ], [ 348392.93129999935627, 258892.486699998378754 ], [ 348400.978200003504753, 258894.452399998903275 ], [ 348409.881899997591972, 258890.514499999582767 ], [ 348426.047700002789497, 258886.00279999896884 ], [ 348468.051399998366833, 258877.480599999427795 ], [ 348477.827899999916553, 258865.739399999380112 ], [ 348459.586000002920628, 258661.509199999272823 ], [ 348459.108599998056889, 258656.164000000804663 ], [ 348451.792729552253149, 258659.802076715102885 ], [ 348444.640299998223782, 258663.751800000667572 ], [ 348439.273228176520206, 258665.0014743488573 ], [ 348433.799611150810961, 258665.639175353659084 ], [ 348428.288999997079372, 258665.656800001859665 ], [ 348402.095200002193451, 258668.196800000965595 ], [ 348393.5673274314031, 258671.580502095486736 ], [ 348385.298665868293028, 258675.555836849089246 ], [ 348377.330200001597404, 258680.103100001811981 ], [ 348359.541299998760223, 258693.700199998915195 ], [ 348359.564300000667572, 258694.226799998432398 ], [ 348367.305500000715256, 258871.589800000190735 ], [ 348370.520000003278255, 258872.882699999958277 ], [ 348374.512000001966953, 258877.559399999678135 ], [ 348376.052699998021126, 258886.015799999237061 ], [ 348379.200599998235703, 258895.118599999696016 ], [ 348389.677299998700619, 258895.837600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02626923, "LATITUDE": 18.35444988, "OBJECTID_1": 1225, "PARCEL_NO_": "102303020900", "Tax_Legal_": "4-21 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "SCHMIDT, ROBERT", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 838000, "Improved_V": 1317800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 531.31542804200001, "SHAPE_Area": 14929.898074299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348779.423199996352196, 258201.574400000274181 ], [ 348779.274999998509884, 258200.545400001108646 ], [ 348661.188199996948242, 258202.376200001686811 ], [ 348627.100000001490116, 258210.538100000470877 ], [ 348624.021899998188019, 258211.275100000202656 ], [ 348625.388099998235703, 258217.420000001788139 ], [ 348629.591221135284286, 258234.818131535692373 ], [ 348633.219800002872944, 258252.345100000500679 ], [ 348635.579796210979111, 258258.646244231436867 ], [ 348638.462110849213786, 258264.726232968940167 ], [ 348641.846261601080187, 258270.541860571393045 ], [ 348645.708200000226498, 258276.05180000141263 ], [ 348652.639511453045998, 258284.395051775907632 ], [ 348659.136281546030659, 258293.080954549164744 ], [ 348665.181599996984005, 258302.086899999529123 ], [ 348668.377259546832647, 258306.016900790826185 ], [ 348671.089081903279293, 258310.295120710943593 ], [ 348673.279507955070585, 258314.86230582758435 ], [ 348674.918200001120567, 258319.655200000852346 ], [ 348674.443300001323223, 258326.6081000007689 ], [ 348700.205200001597404, 258311.151000000536442 ], [ 348735.675300002098083, 258289.868999999016523 ], [ 348827.275499999523163, 258257.513799998909235 ], [ 348812.874799996614456, 258250.399700000882149 ], [ 348796.872599996626377, 258235.703299999237061 ], [ 348789.689499996602535, 258226.989599999040365 ], [ 348783.346900001168251, 258214.272100001573563 ], [ 348781.768399998545647, 258210.248399998992682 ], [ 348779.423199996352196, 258201.574400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "104702010100", "MAP": "A9-695-T006", "PARCEL_NAM": "4-31", "ACRE": "7.06", "LONGITUDE": -65.03374237, "LATITUDE": 18.34728902, "OBJECTID_1": 7188, "PARCEL_NO_": "104702010100", "Tax_Legal_": "4-31 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "EJR BOTANY BAY PARTNERS LLC", "Address": "101 Chestnut St", "City": "Boston", "State": "Massachusetts", "Zip": 2108, "Country": "United States", "Land_Value": 1095500, "Improved_V": 1557800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 769.35204067100005, "SHAPE_Area": 31368.017258299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348009.517499998211861, 257594.389600001275539 ], [ 347973.018500000238419, 257348.810899998992682 ], [ 347972.258400000631809, 257348.482900001108646 ], [ 347961.061700001358986, 257337.625500001013279 ], [ 347955.512800000607967, 257326.392200000584126 ], [ 347950.79900000244379, 257311.788100000470877 ], [ 347947.615099996328354, 257306.906899999827147 ], [ 347932.361699998378754, 257298.971599999815226 ], [ 347929.946400001645088, 257298.529599998146296 ], [ 347917.8462999984622, 257299.063900001347065 ], [ 347905.722900003194809, 257302.342199999839067 ], [ 347902.476000003516674, 257304.848700001835823 ], [ 347900.012100003659725, 257310.105900000780821 ], [ 347896.689800001680851, 257321.477800000458956 ], [ 347890.122400000691414, 257335.145100001245737 ], [ 347883.495700001716614, 257355.778000000864267 ], [ 347879.408399999141693, 257362.288499999791384 ], [ 347875.347999997437, 257365.632699999958277 ], [ 347867.263300001621246, 257368.099700000137091 ], [ 347852.600500002503395, 257385.500500001013279 ], [ 347840.423100002110004, 257395.111099999397993 ], [ 347838.030699998140335, 257396.279500000178814 ], [ 347886.285099998116493, 257554.954999998211861 ], [ 347888.235799998044968, 257561.36939999833703 ], [ 347895.642577483435161, 257560.32070872024633 ], [ 347903.093599997460842, 257559.655600000172853 ], [ 347910.981970178079791, 257560.413937135046581 ], [ 347918.811283615243156, 257561.640032734227134 ], [ 347926.553828464762773, 257563.329547033994459 ], [ 347934.182199999690056, 257565.476500000804663 ], [ 347939.067661766312085, 257567.340907042671461 ], [ 347943.643463405664079, 257569.871873191790655 ], [ 347947.819207504682709, 257573.019397855765419 ], [ 347951.51240000128746, 257576.7212999984622 ], [ 347956.106475481763482, 257580.918635683890898 ], [ 347961.171344890375622, 257584.533916343818419 ], [ 347966.633705061103683, 257587.514818512951024 ], [ 347972.414499998092651, 257589.818199999630451 ], [ 347979.093783661839552, 257592.285791250265902 ], [ 347985.928484895615838, 257594.282963222358376 ], [ 347992.885516731941607, 257595.800047554104822 ], [ 347999.931199997663498, 257596.829700000584126 ], [ 348004.893939273839351, 257596.958247195347212 ], [ 348009.844800002872944, 257596.59180000051856 ], [ 348009.517499998211861, 257594.389600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02794472, "LATITUDE": 18.34908411, "OBJECTID_1": 1224, "PARCEL_NO_": "102303020700", "Tax_Legal_": "4-24 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "BLACK INTERESTS LIMITED PARTNERSHIP", "Address": "121 E 2nd St", "City": "ERIE", "State": "Pennsylvania", "Zip": 16507, "Country": "United States", "Land_Value": 481600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 511.63186872, "SHAPE_Area": 13808.8583973 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348443.955099999904633, 257669.019299998879433 ], [ 348444.696199998259544, 257710.518899999558926 ], [ 348528.766699999570847, 257709.224300000816584 ], [ 348622.519000001251698, 257658.723499998450279 ], [ 348618.905599996447563, 257633.293400000780821 ], [ 348615.109600000083447, 257605.609099999070168 ], [ 348611.329800002276897, 257576.025100000202656 ], [ 348606.331299997866154, 257571.541400000452995 ], [ 348443.955099999904633, 257669.019299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.03378269, "LATITUDE": 18.34922169, "OBJECTID_1": 1166, "PARCEL_NO_": "102301019800", "Tax_Legal_": "4-A,-B,-C,-D,-E,-F,-I,-J,-K,-M R.O.W. PCL. ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "SANDY BAY OWNERS ASSOCIATION INC", "Address": "225 Main St", "City": "Carbondale", "State": "Colorado", "Zip": 81623, "Country": "United States", "Land_Value": 372600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1957.06332157, "SHAPE_Area": 5498.3954198800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348010.8462999984622, 257825.825599998235703 ], [ 348011.895731207798235, 257825.419681594270514 ], [ 348012.868761394522153, 257824.854625960346311 ], [ 348013.741441478079651, 257824.144340746104717 ], [ 348014.492292283393908, 257823.30630812025629 ], [ 348015.102833205426577, 257822.361154483951395 ], [ 348015.55803707044106, 257821.332142795436084 ], [ 348015.846699997782707, 257820.244600001722574 ], [ 348012.053599998354912, 257824.089600000530481 ], [ 348010.8462999984622, 257825.825599998235703 ] ] ], [ [ [ 348010.8462999984622, 257825.825599998235703 ], [ 348009.777609605283942, 257826.081853687472176 ], [ 348008.682337286823895, 257826.172095907095354 ], [ 348007.586116680526175, 257826.094214637734694 ], [ 348006.514603617484681, 257825.850032604357693 ], [ 348005.492875675961841, 257825.44526461744681 ], [ 348004.544845268537756, 257824.889383824105607 ], [ 348003.692699998617172, 257824.19539999961853 ], [ 348002.886245952220634, 257820.040993444941705 ], [ 348002.422700002789497, 257815.834499999880791 ], [ 348001.500981043325737, 257808.704968772130087 ], [ 348000.835199996829033, 257801.546999998390675 ], [ 347997.025200001895428, 257775.935300000011921 ], [ 347993.080157991324086, 257764.524216109042754 ], [ 347988.664399996399879, 257753.286899998784065 ], [ 347985.987266558222473, 257748.010571575257927 ], [ 347982.893823670514394, 257742.967031530890381 ], [ 347979.404175224597566, 257738.189057190000312 ], [ 347975.541000001132488, 257733.707699999213219 ], [ 347973.216885756875854, 257731.731929988134652 ], [ 347970.758400000631809, 257729.926100000739098 ], [ 347966.547327933891211, 257727.39730994682759 ], [ 347962.075067314086482, 257725.365859224752057 ], [ 347957.400110276998021, 257723.858316923753591 ], [ 347952.583599999547005, 257722.894400000572205 ], [ 347949.823499999940395, 257722.595199998468161 ], [ 347943.39028547029011, 257722.135671388212359 ], [ 347936.942299989983439, 257722.280236162536312 ], [ 347930.536144732497633, 257723.027625314833131 ], [ 347924.228053680679295, 257724.371278175414773 ], [ 347918.073399998247623, 257726.299400001764297 ], [ 347910.086650208162609, 257727.883972976327641 ], [ 347902.179100533598103, 257729.825544985214947 ], [ 347894.366700001060963, 257732.120200000703335 ], [ 347887.093572835437953, 257734.192872342973715 ], [ 347879.95877157949144, 257736.700652326049749 ], [ 347872.988300003111362, 257739.634399998933077 ], [ 347864.679595521476585, 257743.087770624086261 ], [ 347856.160800002515316, 257745.984400000423193 ], [ 347852.609063897863962, 257747.565542487165658 ], [ 347848.870992222626228, 257748.634027896885527 ], [ 347845.020169555675238, 257749.168822911946336 ], [ 347841.132399998605251, 257749.159400001168251 ], [ 347836.1913804631331, 257749.115882807673188 ], [ 347831.296345354698133, 257748.441939870361239 ], [ 347826.527400001883507, 257747.148600000888109 ], [ 347818.59857557551004, 257744.945217112748651 ], [ 347810.795129497768357, 257742.33229111917899 ], [ 347803.138199999928474, 257739.316899999976158 ], [ 347801.740722676215228, 257738.842848851723829 ], [ 347800.436909233103506, 257738.151663010474294 ], [ 347799.2602403422934, 257737.261091462016338 ], [ 347798.240931725944392, 257736.19400322472211 ], [ 347797.405158246168867, 257734.977800095279235 ], [ 347796.774381759867538, 257733.643712996999966 ], [ 347796.364799998700619, 257732.225999999791384 ], [ 347797.39654550596606, 257722.077700599940727 ], [ 347798.163999997079372, 257711.905999999493361 ], [ 347799.342383297393098, 257698.805914080759976 ], [ 347799.751500003039837, 257685.659299999475479 ], [ 347801.868199996650219, 257665.021699998527765 ], [ 347802.441307969973423, 257660.458513770077843 ], [ 347803.667300000786781, 257656.02589999884367 ], [ 347806.501693286350928, 257646.855241447890876 ], [ 347810.072648679139093, 257637.945525339193409 ], [ 347814.356499999761581, 257629.355799999088049 ], [ 347819.922088202903979, 257618.720816118904622 ], [ 347825.680699996650219, 257608.189100001007318 ], [ 347829.128488469286822, 257603.472299501911039 ], [ 347833.097278373548761, 257599.184624258137774 ], [ 347837.534100003540516, 257595.383299998939037 ], [ 347840.469522838597186, 257593.156839102681261 ], [ 347843.037399999797344, 257590.514899998903275 ], [ 347848.589833145320881, 257585.141824517719215 ], [ 347854.405299659410957, 257580.054604924895102 ], [ 347860.469099998474121, 257575.266100000590086 ], [ 347870.328019463224337, 257571.519254851067672 ], [ 347880.312899999320507, 257568.122299998998642 ], [ 347888.352029901521746, 257566.329646494792541 ], [ 347896.52662884502206, 257565.321108798787463 ], [ 347904.760399997234344, 257565.106100000441074 ], [ 347912.482608292833902, 257565.613030329492176 ], [ 347920.124577131238766, 257566.833600520476466 ], [ 347927.62049999833107, 257568.75730000063777 ], [ 347932.827499694307335, 257570.59445099675213 ], [ 347937.78304678958375, 257573.029717430355959 ], [ 347942.418716292304453, 257576.02947373338975 ], [ 347946.670500002801418, 257579.552299998700619 ], [ 347952.733822166221216, 257584.998015938064782 ], [ 347959.260036115825642, 257589.87943266207003 ], [ 347966.196800000965595, 257594.157400000840425 ], [ 347972.094733192643616, 257596.587304624612443 ], [ 347978.158162590116262, 257598.568434695102042 ], [ 347984.352995403110981, 257600.089650929934578 ], [ 347990.644400000572205, 257601.142400000244379 ], [ 347995.07181525498163, 257601.706086442660308 ], [ 347999.534400001168251, 257601.777399998158216 ], [ 348003.000586463080253, 257602.509933510737028 ], [ 348006.532148254686035, 257602.791225614520954 ], [ 348010.070589406648651, 257602.616617052408401 ], [ 348013.557300001382828, 257601.989000000059605 ], [ 348021.408315375621896, 257598.59371227317024 ], [ 348029.037031788262539, 257594.724719245132292 ], [ 348036.414899997413158, 257590.396499998867512 ], [ 348038.957400001585484, 257588.759899999946356 ], [ 348045.138560910883825, 257584.273645565030165 ], [ 348051.632556025811937, 257580.253539038036251 ], [ 348058.40429999679327, 257576.7212999984622 ], [ 348065.861476508318447, 257574.674209248652915 ], [ 348073.464066689484753, 257573.259753664402524 ], [ 348081.158500000834465, 257572.487900000065565 ], [ 348090.121165599906817, 257572.805817390821176 ], [ 348099.085553647601046, 257572.540877703722799 ], [ 348108.013800002634525, 257571.694200001657009 ], [ 348122.731224058778025, 257569.444944340415532 ], [ 348137.382600001990795, 257566.799400001764297 ], [ 348145.082641073560808, 257565.262732883536955 ], [ 348152.86966821202077, 257564.255664524069289 ], [ 348160.707299999892712, 257563.782900001853704 ], [ 348161.988899998366833, 257563.756700001657009 ], [ 348182.097199998795986, 257560.714000001549721 ], [ 348199.692100003361702, 257556.612900000065565 ], [ 348199.030599996447563, 257553.173300001770258 ], [ 348198.898299999535084, 257550.924400001764297 ], [ 348181.882700003683567, 257554.628499999642372 ], [ 348179.451399996876717, 257555.157699998468161 ], [ 348172.396755664027296, 257556.701253406237811 ], [ 348165.235140234173741, 257557.629600442800438 ], [ 348158.020099997520447, 257557.9358000010252 ], [ 348151.218319786421489, 257558.218463237368269 ], [ 348144.453063060936984, 257558.977023705490865 ], [ 348137.75758555799257, 257560.207752576097846 ], [ 348131.164800003170967, 257561.904599998146296 ], [ 348122.080396091332659, 257563.942706974310568 ], [ 348112.899243871215731, 257565.487607744813431 ], [ 348103.648100003600121, 257566.534800000488758 ], [ 348097.176806178293191, 257567.414469623792684 ], [ 348090.652755527931731, 257567.711497452924959 ], [ 348084.128300003707409, 257567.423500001430511 ], [ 348079.9679000005126, 257566.931699998676777 ], [ 348075.386368879058864, 257566.585921649850206 ], [ 348070.796011926897336, 257566.78242390131345 ], [ 348066.260791078326292, 257567.518468694906915 ], [ 348061.843900002539158, 257568.7837999984622 ], [ 348055.961383829184342, 257570.84689027260174 ], [ 348050.300042331975419, 257573.456401809467934 ], [ 348044.910499997437, 257576.589000001549721 ], [ 348028.903200000524521, 257588.098400000482798 ], [ 348022.195422752120066, 257592.181473888922483 ], [ 348015.144799999892712, 257595.638999998569489 ], [ 348009.844800002872944, 257596.59180000051856 ], [ 348004.893939273839351, 257596.958247195347212 ], [ 347999.931199997663498, 257596.829700000584126 ], [ 347992.885516731941607, 257595.800047554075718 ], [ 347985.928484895674046, 257594.282963222300168 ], [ 347979.093783661839552, 257592.285791250236798 ], [ 347972.414499998092651, 257589.818199999630451 ], [ 347966.633705061045475, 257587.514818513067439 ], [ 347961.171344890317414, 257584.533916343993042 ], [ 347956.106475481705274, 257580.918635684007313 ], [ 347951.51240000128746, 257576.7212999984622 ], [ 347947.819207504508086, 257573.019397856027354 ], [ 347943.643463405489456, 257569.871873192139901 ], [ 347939.06766176619567, 257567.340907042933395 ], [ 347934.182199999690056, 257565.476500000804663 ], [ 347926.553828464762773, 257563.329547033994459 ], [ 347918.811283615243156, 257561.640032734227134 ], [ 347910.981970178079791, 257560.413937135046581 ], [ 347903.093599997460842, 257559.655600000172853 ], [ 347895.642577483435161, 257560.32070872024633 ], [ 347888.235799998044968, 257561.36939999833703 ], [ 347877.845384990621824, 257563.508791462198133 ], [ 347867.639300003647804, 257566.402499999850988 ], [ 347861.394418133306317, 257569.068214508180972 ], [ 347855.457002763170749, 257572.362403655366506 ], [ 347849.890094479022082, 257576.250091344787506 ], [ 347844.75280000269413, 257580.690000001341105 ], [ 347839.79088663920993, 257586.218161520257127 ], [ 347834.538230001518968, 257591.470851521735312 ], [ 347829.010099999606609, 257596.432799998670816 ], [ 347823.524849474662915, 257602.705748676118674 ], [ 347818.559000000357628, 257609.397399999201298 ], [ 347811.689143160241656, 257623.600775239377981 ], [ 347804.553700000047684, 257637.672600001096725 ], [ 347801.99403952807188, 257642.968960987927858 ], [ 347799.877198118891101, 257648.457338150881696 ], [ 347798.217426930554211, 257654.100782226712909 ], [ 347797.02589999884367, 257659.861299999058247 ], [ 347795.464926292421296, 257670.374852052162169 ], [ 347794.304733931377996, 257680.94014283712022 ], [ 347793.546999998390675, 257691.541900001466274 ], [ 347792.950667545082979, 257705.031411795760505 ], [ 347792.594499997794628, 257718.529399998486042 ], [ 347792.80345721746562, 257719.928333685849793 ], [ 347792.767853014345746, 257721.342338962364011 ], [ 347792.488755818631034, 257722.728983594774036 ], [ 347791.974540929542854, 257724.046656402846565 ], [ 347791.240639184834436, 257725.255815949989483 ], [ 347790.30907390412176, 257726.320177124143811 ], [ 347789.207800000905991, 257727.207800000905991 ], [ 347788.197469132312108, 257727.957551232830156 ], [ 347787.079482576693408, 257728.534613998315763 ], [ 347785.883088635455351, 257728.9238914201851 ], [ 347784.63958687154809, 257729.11519938375568 ], [ 347783.381509263184853, 257729.103532969224034 ], [ 347782.141769115929492, 257728.889197388576576 ], [ 347780.952799998223782, 257728.477800000458956 ], [ 347775.693436580651905, 257725.868279945047107 ], [ 347770.624899998307228, 257722.905099999159575 ], [ 347739.042700000107288, 257712.285199999809265 ], [ 347712.055200003087521, 257702.442699998617172 ], [ 347695.439300000667572, 257697.362700000405312 ], [ 347685.27929999679327, 257695.35190000012517 ], [ 347684.639700002968311, 257697.177499998360872 ], [ 347683.76240000128746, 257700.752900000661612 ], [ 347691.946800000965595, 257702.231100000441074 ], [ 347699.037699997425079, 257704.241900000721216 ], [ 347705.286928882123902, 257705.900186616228893 ], [ 347711.420199997723103, 257707.946100000292063 ], [ 347722.967023321602028, 257711.951049285911722 ], [ 347734.386100001633167, 257716.30689999833703 ], [ 347763.172799997031689, 257726.361099999397993 ], [ 347770.478308972262312, 257729.403164341289084 ], [ 347777.566100001335144, 257732.922800000756979 ], [ 347784.679529905144591, 257736.833402700081933 ], [ 347791.988808820431586, 257740.364428076165495 ], [ 347799.473700001835823, 257743.506099998950958 ], [ 347809.562052376277279, 257747.250734328379622 ], [ 347819.798627883428708, 257750.568815366801573 ], [ 347830.165399998426437, 257753.454500000923872 ], [ 347833.632237745856401, 257754.25991518778028 ], [ 347837.164499998092651, 257754.696699999272823 ], [ 347840.869593683280982, 257754.75460455956636 ], [ 347844.558799996972084, 257754.407000001519918 ], [ 347848.167459093325306, 257754.093937954545254 ], [ 347851.712350215471815, 257753.349508474319009 ], [ 347855.142099998891354, 257752.184500001370907 ], [ 347872.604699999094009, 257746.469500001519918 ], [ 347895.879399999976158, 257738.24439999833703 ], [ 347901.814699999988079, 257736.203600000590086 ], [ 347912.55580111220479, 257733.386093987763161 ], [ 347923.404799997806549, 257731.017799999564886 ], [ 347927.363603614096064, 257729.60463015420828 ], [ 347931.430954811687116, 257728.543579109507846 ], [ 347935.575599998235703, 257727.842799998819828 ], [ 347941.019729748310056, 257727.603689900715835 ], [ 347946.464976672781631, 257727.815841511066537 ], [ 347951.873999997973442, 257728.477800000458956 ], [ 347955.883922014734708, 257729.351262672687881 ], [ 347959.773874487786088, 257730.659192860970506 ], [ 347963.496936453622766, 257732.385814191453392 ], [ 347967.008199997246265, 257734.510299999266863 ], [ 347970.396932727948297, 257737.164606597158127 ], [ 347973.467315305548254, 257740.181493048934499 ], [ 347976.180769047117792, 257743.523052838660078 ], [ 347978.503200002014637, 257747.147300001233816 ], [ 347982.756222132709809, 257755.825074225576827 ], [ 347986.457189905340783, 257764.752268649317557 ], [ 347989.591560734319501, 257773.893804747785907 ], [ 347992.147018420451786, 257783.213761762017384 ], [ 347994.11352154641645, 257792.675517845782451 ], [ 347995.48334293323569, 257802.241893967468059 ], [ 347996.25110000371933, 257811.875300001353025 ], [ 347997.462399996817112, 257815.509100001305342 ], [ 347998.428199999034405, 257837.041700001806021 ], [ 347998.975199997425079, 257849.237399999052286 ], [ 348002.260155081457924, 257841.10463145095855 ], [ 348006.226825524645392, 257833.281692121265223 ], [ 348010.8462999984622, 257825.825599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301030300", "MAP": null, "PARCEL_NAM": "4-3", "ACRE": null, "LONGITUDE": -65.02934859, "LATITUDE": 18.35770828, "OBJECTID_1": 1170, "PARCEL_NO_": "102301030300", "Tax_Legal_": "4-3 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "BACCHUS BAY LLC", "Address": "52A Company Street Christiansted", "City": "ST. CROIX", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 531700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 513.35152124800004, "SHAPE_Area": 12943.8681731 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348428.952799998223782, 258556.012299999594688 ], [ 348371.516099996864796, 258505.053899999707937 ], [ 348339.659400001168251, 258604.293699998408556 ], [ 348338.856799997389317, 258606.7939000017941 ], [ 348339.059000000357628, 258606.933299999684095 ], [ 348339.95827365090372, 258607.733975283743348 ], [ 348340.721000762074254, 258608.665651924500708 ], [ 348341.328343607950956, 258609.705319504369982 ], [ 348341.765302120998967, 258610.827300460950937 ], [ 348342.02108436182607, 258612.003884267731337 ], [ 348342.089373057009652, 258613.206011824659072 ], [ 348341.968481621937826, 258614.403993155894568 ], [ 348341.661395816190634, 258615.568240688415244 ], [ 348341.175700001418591, 258616.670000001788139 ], [ 348332.499099999666214, 258644.451200000941753 ], [ 348331.258295246399939, 258652.681047146674246 ], [ 348330.636152251507156, 258660.980620543647092 ], [ 348330.636152251507156, 258669.303479456168134 ], [ 348331.258295246399939, 258677.60305285314098 ], [ 348332.499099999666214, 258685.832899998873472 ], [ 348333.394753295870032, 258687.61978483828716 ], [ 348334.579588949156459, 258689.229541568696732 ], [ 348336.019501362927258, 258690.615833203599323 ], [ 348337.673042534035631, 258691.738755218626466 ], [ 348339.492615137132816, 258692.565984206594294 ], [ 348341.425842617638409, 258693.073708309646463 ], [ 348343.41707685572328, 258693.247312645689817 ], [ 348345.409000001847744, 258693.081799998879433 ], [ 348367.634099997580051, 258679.111800000071526 ], [ 348385.205200001597404, 258667.379999998956919 ], [ 348392.292826031276491, 258665.470568776392611 ], [ 348399.501580016163643, 258664.087009484181181 ], [ 348406.792499996721745, 258663.236800000071526 ], [ 348419.555600002408028, 258661.505899999290705 ], [ 348425.924863442371134, 258661.168859326629899 ], [ 348432.252263508329634, 258660.365664713084698 ], [ 348438.50372960162349, 258659.100641050608829 ], [ 348444.645599998533726, 258657.38060000166297 ], [ 348447.152912162418943, 258656.335602306644432 ], [ 348449.497851735912263, 258654.964510454854462 ], [ 348451.638245770242065, 258653.291983071685536 ], [ 348453.535599999129772, 258651.348099999129772 ], [ 348453.80163216748042, 258650.605197796016 ], [ 348453.94441799458582, 258649.829124986572424 ], [ 348453.96022203710163, 258649.040184538753238 ], [ 348453.84863084286917, 258648.259016052877996 ], [ 348453.612563767354004, 258647.506055805686628 ], [ 348453.258196600014344, 258646.801002113614231 ], [ 348452.794799998402596, 258646.162300001829863 ], [ 348451.007220224128105, 258645.275413912400836 ], [ 348449.125900000333786, 258644.610100001096725 ], [ 348445.364926881389692, 258643.495770213310607 ], [ 348441.778967719408683, 258641.905944258644013 ], [ 348438.427854298963211, 258639.867148407967761 ], [ 348435.367499999701977, 258637.413400001823902 ], [ 348432.545269967697095, 258634.453207193146227 ], [ 348430.152465375198517, 258631.136249249393586 ], [ 348428.233671334863175, 258627.524331026506843 ], [ 348426.824640723469201, 258623.684753373381682 ], [ 348425.951627999369521, 258619.689059115567943 ], [ 348425.630900003015995, 258615.611699998378754 ], [ 348429.461745162610896, 258601.869463981653098 ], [ 348433.885899998247623, 258588.306600000709295 ], [ 348434.102766976517159, 258581.722552813065704 ], [ 348433.749082524911501, 258575.144436368049355 ], [ 348432.827500000596046, 258568.621599998325109 ], [ 348432.923253843560815, 258563.738788342860062 ], [ 348433.462499998509884, 258558.884899999946356 ], [ 348428.952799998223782, 258556.012299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301012700", "MAP": null, "PARCEL_NAM": "4-27", "ACRE": "4.84", "LONGITUDE": -65.02975728, "LATITUDE": 18.34724944, "OBJECTID_1": 1156, "PARCEL_NO_": "102301012700", "Tax_Legal_": "4-27 BOTANY BAY NO.7 WEST END QTR", "Name": "BY THE SEA RESORT PROPERTIES LLC", "Address": "2603 Oak Lawn", "City": "Dallas", "State": "Texas", "Zip": 752194021, "Country": "United States", "Land_Value": 615700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 626.62002724900003, "SHAPE_Area": 18627.366161000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348333.610500000417233, 257529.114500001072884 ], [ 348414.059799998998642, 257520.597899999469519 ], [ 348420.497299998998642, 257521.385400000959635 ], [ 348418.808468622737564, 257515.021475440851646 ], [ 348416.694399997591972, 257508.785900000482798 ], [ 348413.348405606287997, 257500.681855652306695 ], [ 348409.497699998319149, 257492.805100001394749 ], [ 348407.558360094495583, 257487.966304641391616 ], [ 348406.037750823947135, 257482.980050812620902 ], [ 348404.946900002658367, 257477.882500000298023 ], [ 348404.850825619068928, 257472.110897039761767 ], [ 348405.158500000834465, 257466.346700001507998 ], [ 348406.491194348200224, 257461.404425664572045 ], [ 348408.545199997723103, 257456.715799998492002 ], [ 348417.699799999594688, 257442.057900000363588 ], [ 348419.816500000655651, 257443.116200000047684 ], [ 348422.090300001204014, 257438.967599999159575 ], [ 348423.160599999129772, 257436.953000001609325 ], [ 348433.368600003421307, 257417.738800000399351 ], [ 348433.291500002145767, 257417.693900000303984 ], [ 348287.734999999403954, 257332.833200000226498 ], [ 348304.123000003397465, 257378.170499999076128 ], [ 348285.205700002610683, 257534.238699998706579 ], [ 348333.610500000417233, 257529.114500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301030600", "MAP": "A9-672-T006", "PARCEL_NAM": "4-6", "ACRE": "4.31", "LONGITUDE": -65.03158164, "LATITUDE": 18.35852367, "OBJECTID_1": 1173, "PARCEL_NO_": "102301030600", "Tax_Legal_": "4-6 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "LEE'S BOTANY BAY LLC", "Address": "PO Box 224", "City": "Bernardsville", "State": "New Jersey", "Zip": 7924, "Country": "United States", "Land_Value": 460200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 541.31525180899996, "SHAPE_Area": 16020.698153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348033.95830000191927, 258750.219799999147654 ], [ 348207.897299997508526, 258736.341699998825788 ], [ 348214.329800002276897, 258739.229699999094009 ], [ 348220.102099999785423, 258727.583599999547005 ], [ 348234.858665286272299, 258710.608855952683371 ], [ 348249.947200000286102, 258693.92850000038743 ], [ 348253.12219999730587, 258690.541799999773502 ], [ 348250.006499998271465, 258687.831900000572205 ], [ 348184.70719999819994, 258631.563799999654293 ], [ 348106.346600003540516, 258646.539200000464916 ], [ 348102.260099999606609, 258653.065799999982119 ], [ 348060.6925999969244, 258703.947399999946356 ], [ 348045.126500003039837, 258733.865100000053644 ], [ 348037.765799999237061, 258746.289599999785423 ], [ 348033.95830000191927, 258750.219799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301020100", "MAP": "A9-667B-T006", "PARCEL_NAM": "4-13", "ACRE": "15.12", "LONGITUDE": -65.02647797, "LATITUDE": 18.36093095, "OBJECTID_1": 1167, "PARCEL_NO_": "102301020100", "Tax_Legal_": "4-13 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "FAMILY HOLIDAY LTD", "Address": "35A Regent St", "City": "BELIZE CITY", "State": null, "Zip": 0, "Country": "Belize", "Land_Value": 2552100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1017.08539406, "SHAPE_Area": 64869.7002957 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348696.822700001299381, 259094.668499998748302 ], [ 348715.396600000560284, 259091.442999999970198 ], [ 348720.234499998390675, 259091.482599999755621 ], [ 348727.448100000619888, 259096.607799999415874 ], [ 348738.688000001013279, 259102.399399999529123 ], [ 348747.5574000030756, 259102.471999999135733 ], [ 348754.036700002849102, 259099.14750000089407 ], [ 348774.32209999859333, 259084.325899999588728 ], [ 348788.880699999630451, 259079.167700000107288 ], [ 348797.055299997329712, 259066.146800000220537 ], [ 348803.638899996876717, 259050.579799998551607 ], [ 348810.980200000107288, 259040.718499999493361 ], [ 348816.73589999973774, 259027.677700001746416 ], [ 348819.977399997413158, 259025.804400000721216 ], [ 348829.604999996721745, 259025.280099999159575 ], [ 348828.972199998795986, 258914.411200001835823 ], [ 348828.959100000560284, 258911.917899999767542 ], [ 348828.842799998819828, 258888.555399999022484 ], [ 348813.709399998188019, 258884.819899998605251 ], [ 348744.681500002741814, 258840.348000001162291 ], [ 348742.142800003290176, 258844.5793999992311 ], [ 348736.639399997889996, 258841.8277000002563 ], [ 348738.882133322709706, 258835.820183905103477 ], [ 348740.758000001311302, 258829.688200000673532 ], [ 348727.466300003230572, 258832.169300001114607 ], [ 348531.425599999725819, 258868.763999998569489 ], [ 348532.623000003397465, 258870.198699999600649 ], [ 348534.986100003123283, 258876.761900000274181 ], [ 348534.808100000023842, 258897.658700000494719 ], [ 348527.351700000464916, 258921.029100000858307 ], [ 348524.794299997389317, 258937.262299999594688 ], [ 348523.894500002264977, 258948.231800001114607 ], [ 348525.451399996876717, 258954.788499999791384 ], [ 348528.638899996876717, 258959.247499998658895 ], [ 348537.447200000286102, 258966.496800001710653 ], [ 348543.019400000572205, 258974.986200001090765 ], [ 348546.188900001347065, 258981.556000001728535 ], [ 348547.729599997401237, 258990.01240000128746 ], [ 348551.646099999547005, 259003.554400000721216 ], [ 348554.048900000751019, 259005.473900001496077 ], [ 348558.876000002026558, 259006.780000001192093 ], [ 348569.347199998795986, 259008.132199998944998 ], [ 348574.195900000631809, 259006.905299998819828 ], [ 348580.619400002062321, 259010.124299999326468 ], [ 348584.607799999415874, 259015.223200000822544 ], [ 348590.151299998164177, 259027.089800000190735 ], [ 348590.046999998390675, 259039.332400001585484 ], [ 348585.142599999904633, 259047.102699998766184 ], [ 348583.468900002539158, 259054.266199998557568 ], [ 348582.585199996829033, 259063.335999999195337 ], [ 348583.330399997532368, 259070.519299998879433 ], [ 348585.677400000393391, 259078.982200000435114 ], [ 348589.658600002527237, 259084.925400000065565 ], [ 348596.0658999979496, 259090.044100001454353 ], [ 348622.54839999973774, 259105.037399999797344 ], [ 348634.632299996912479, 259106.402899999171495 ], [ 348653.980200000107288, 259106.983399998396635 ], [ 348674.18299999833107, 259101.871399998664856 ], [ 348696.822700001299381, 259094.668499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301030100", "MAP": null, "PARCEL_NAM": "4-1", "ACRE": null, "LONGITUDE": -65.0276537, "LATITUDE": 18.35593237, "OBJECTID_1": 1168, "PARCEL_NO_": "102301030100", "Tax_Legal_": "4-1 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "MY LAST RESORT LLC", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 496100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 526.92346739799996, "SHAPE_Area": 15585.377902099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348638.723800003528595, 258358.444400001317263 ], [ 348551.23200000077486, 258354.872699998319149 ], [ 348494.478900000452995, 258363.173700001090765 ], [ 348509.302500002086163, 258497.573699999600649 ], [ 348509.797399997711182, 258502.060499999672174 ], [ 348530.719999998807907, 258487.560100000351667 ], [ 348541.615452861005906, 258482.13404385355534 ], [ 348552.792137652693782, 258477.313805742422119 ], [ 348564.216399997472763, 258473.113899998366833 ], [ 348579.014842316159047, 258468.053772917133756 ], [ 348593.743900001049042, 258462.795099999755621 ], [ 348598.187761640700046, 258460.764637701562606 ], [ 348602.333375262620393, 258458.179183947358979 ], [ 348606.111799671431072, 258455.081734609004343 ], [ 348609.460199996829033, 258451.523800000548363 ], [ 348614.588801586301997, 258446.280669990403112 ], [ 348619.355012734537013, 258440.706067057675682 ], [ 348623.737462329445407, 258434.824987045052694 ], [ 348627.716499999165535, 258428.663800001144409 ], [ 348630.574659110337961, 258422.355005527671892 ], [ 348633.064484597882256, 258415.891977579827653 ], [ 348635.177699998021126, 258409.29619999974966 ], [ 348638.130731498589739, 258401.460848563292529 ], [ 348641.683317099756096, 258393.878483317355858 ], [ 348645.814000003039837, 258386.594900000840425 ], [ 348651.197206735552754, 258378.126126879709773 ], [ 348656.227150434569921, 258369.442884438845795 ], [ 348660.895300000905991, 258360.559900000691414 ], [ 348661.483499996364117, 258359.373500000685453 ], [ 348654.707500003278255, 258359.096900001168251 ], [ 348638.723800003528595, 258358.444400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301011200", "MAP": "A9-667B-T006", "PARCEL_NAM": "4-12", "ACRE": "4.93", "LONGITUDE": -65.02694357, "LATITUDE": 18.35941357, "OBJECTID_1": 1155, "PARCEL_NO_": "102301011200", "Tax_Legal_": "4-12 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "BOTANY 4-12 LLC", "Address": "5529 FM 359 Rd", "City": "Richmond", "State": "Texas", "Zip": 77406, "Country": "United States", "Land_Value": 579000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 620.60750074400005, "SHAPE_Area": 20353.562007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348713.779399998486042, 258741.074200000613928 ], [ 348700.249237262760289, 258741.967698327469407 ], [ 348686.698606389574707, 258742.461708299728343 ], [ 348673.139300003647804, 258742.555799998342991 ], [ 348665.922403112286702, 258741.367898931028321 ], [ 348658.820685521932319, 258739.618522769771516 ], [ 348651.877760146919172, 258737.318414745532209 ], [ 348645.13626473012846, 258734.481700231932336 ], [ 348638.637599997222424, 258731.125799998641014 ], [ 348629.747719412785955, 258725.130276762240101 ], [ 348621.182328542461619, 258718.679667882301146 ], [ 348612.964699998497963, 258711.791499998420477 ], [ 348608.160400003194809, 258719.115699999034405 ], [ 348514.142499998211861, 258862.447999998927116 ], [ 348529.430100001394749, 258866.372800000011921 ], [ 348531.425599999725819, 258868.763999998569489 ], [ 348727.466300003230572, 258832.169300001114607 ], [ 348740.758000001311302, 258829.688200000673532 ], [ 348742.134998205234297, 258824.043894190777792 ], [ 348743.201099999248981, 258818.332699999213219 ], [ 348743.20107082137838, 258811.558468935050769 ], [ 348742.579387664620299, 258804.812824669003021 ], [ 348741.34129695937736, 258798.152694196032826 ], [ 348739.497247045452241, 258791.634282853803597 ], [ 348737.062799997627735, 258785.312600001692772 ], [ 348733.814928677049465, 258772.959455937205348 ], [ 348730.073448710900266, 258760.746750911057461 ], [ 348725.844400003552437, 258748.694200001657009 ], [ 348725.032312203664333, 258746.961053006030852 ], [ 348723.950277562777046, 258745.382292055437574 ], [ 348722.626860502059571, 258743.999594551802147 ], [ 348721.096997649932746, 258742.849462056416087 ], [ 348719.401075557048898, 258741.962256692379015 ], [ 348717.583864539396018, 258741.361399620742304 ], [ 348715.693336795666255, 258741.062752750032814 ], [ 348713.779399998486042, 258741.074200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301032000", "MAP": "D9-7861-T006", "PARCEL_NAM": "4-20", "ACRE": "4.981", "LONGITUDE": -65.02588977000001, "LATITUDE": 18.35564924, "OBJECTID_1": 1180, "PARCEL_NO_": "102301032000", "Tax_Legal_": "4-20 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "ROBERT SCHMIDT DEVELOPMENT CORP", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 582600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 612.89143015699995, "SHAPE_Area": 21113.870909400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348827.463299997150898, 258330.131499998271465 ], [ 348827.362800002098083, 258291.256099998950958 ], [ 348671.659999996423721, 258345.816700000315905 ], [ 348669.783618265762925, 258354.058824298408581 ], [ 348667.509900003671646, 258362.200300000607967 ], [ 348660.46100804785965, 258375.778936877526576 ], [ 348652.904899999499321, 258389.081999998539686 ], [ 348649.306751555996016, 258393.222979196056258 ], [ 348646.275819637347013, 258397.795487549330574 ], [ 348643.863262229831889, 258402.722347369912313 ], [ 348642.10980000346899, 258407.920400001108646 ], [ 348637.241499997675419, 258423.583799999207258 ], [ 348641.088500000536442, 258424.536899998784065 ], [ 348828.057599999010563, 258459.177000001072884 ], [ 348828.034699998795986, 258452.359299998730421 ], [ 348827.463299997150898, 258330.131499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301030200", "MAP": null, "PARCEL_NAM": "4-2", "ACRE": null, "LONGITUDE": -65.02885841, "LATITUDE": 18.35627341, "OBJECTID_1": 1169, "PARCEL_NO_": "102301030200", "Tax_Legal_": "4-2 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "HEATTER TRUSTEE, JUSTIN W.", "Address": "PO Box 308", "City": "Homosassa", "State": "Florida", "Zip": 34487, "Country": "United States", "Land_Value": 586300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 579.47273349600005, "SHAPE_Area": 20935.133644000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348509.302500002086163, 258497.573699999600649 ], [ 348494.478900000452995, 258363.173700001090765 ], [ 348374.8108000010252, 258368.87220000103116 ], [ 348371.516099996864796, 258505.053899999707937 ], [ 348428.952799998223782, 258556.012299999594688 ], [ 348433.462499998509884, 258558.884899999946356 ], [ 348434.724001402501017, 258552.850388811115408 ], [ 348436.604938267322723, 258546.97937632680987 ], [ 348439.084998472360894, 258541.335263246844988 ], [ 348442.13740000128746, 258535.978999998420477 ], [ 348443.547041721642017, 258533.644439545896603 ], [ 348445.285565163241699, 258531.543297349562636 ], [ 348447.314950140891597, 258529.721523790998617 ], [ 348449.590815548785031, 258528.218959672114579 ], [ 348452.063389941642527, 258527.068464927288005 ], [ 348454.678599998354912, 258526.295200001448393 ], [ 348461.901464445749298, 258524.616168378764996 ], [ 348468.988872812711634, 258522.434985063329805 ], [ 348475.90596030926099, 258519.762379858526401 ], [ 348482.618699997663498, 258516.6114999987185 ], [ 348490.786015844263602, 258512.83255985568394 ], [ 348498.781479946919717, 258508.702427832846297 ], [ 348506.590000003576279, 258504.228900000452995 ], [ 348509.797399997711182, 258502.060499999672174 ], [ 348509.302500002086163, 258497.573699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "104801012600", "MAP": "A9-695-T006", "PARCEL_NAM": "4-29", "ACRE": "5.23", "LONGITUDE": -65.03179043, "LATITUDE": 18.34717077, "OBJECTID_1": 7207, "PARCEL_NO_": "104801012600", "Tax_Legal_": "4-29 & 4-30 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "STEADFAST, LLC", "Address": "1 Columbus Pl", "City": "New York", "State": "New York", "Zip": 10019, "Country": "United States", "Land_Value": 997200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 711.77330521199997, "SHAPE_Area": 21582.0319834 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348181.722999997437, 257547.002500001341105 ], [ 348176.656000003218651, 257304.978000000119209 ], [ 348176.640299998223782, 257304.981699999421835 ], [ 348170.956500001251698, 257309.579199999570847 ], [ 348162.054700002074242, 257313.306099999696016 ], [ 348148.322200000286102, 257316.149000000208616 ], [ 348136.220299996435642, 257316.894299998879433 ], [ 348091.901900000870228, 257313.154100000858307 ], [ 348083.831600002944469, 257313.932399999350309 ], [ 348074.106600001454353, 257317.00730000063777 ], [ 348103.12610000371933, 257386.446899998933077 ], [ 348084.784500002861023, 257561.1722999997437 ], [ 348084.128300003707409, 257567.423500001430511 ], [ 348090.652755527931731, 257567.711497453041375 ], [ 348097.176806178293191, 257567.414469623909099 ], [ 348103.648100003600121, 257566.534800000488758 ], [ 348112.899243871215731, 257565.487607744813431 ], [ 348122.080396091332659, 257563.942706974310568 ], [ 348131.164800003170967, 257561.904599998146296 ], [ 348137.75758555799257, 257560.207752576156054 ], [ 348144.453063060936984, 257558.977023705578176 ], [ 348151.218319786421489, 257558.218463237426477 ], [ 348158.020099997520447, 257557.9358000010252 ], [ 348165.235140234173741, 257557.629600442800438 ], [ 348172.396755664027296, 257556.701253406237811 ], [ 348179.451399996876717, 257555.157699998468161 ], [ 348181.882700003683567, 257554.628499999642372 ], [ 348181.722999997437, 257547.002500001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301014300", "MAP": "A9-745-T009", "PARCEL_NAM": "4-43", "ACRE": "2.569", "LONGITUDE": -65.03354356, "LATITUDE": 18.35039671, "OBJECTID_1": 1160, "PARCEL_NO_": "102301014300", "Tax_Legal_": "4-43 BOTANY BAY NO.7 WEST END QTR", "Name": "PARCEL 4-43 ESTATE BOTANY BAY LLC", "Address": "41 W 33rd St", "City": "New York", "State": "New York", "Zip": 10001, "Country": "United States", "Land_Value": 437800, "Improved_V": 2392600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 423.36495421799998, "SHAPE_Area": 11249.997478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347935.575599998235703, 257727.842799998819828 ], [ 347931.430954811687116, 257728.543579109507846 ], [ 347927.363603614096064, 257729.60463015420828 ], [ 347923.404799997806549, 257731.017799999564886 ], [ 347912.55580111220479, 257733.386093987763161 ], [ 347901.814699999988079, 257736.203600000590086 ], [ 347895.879399999976158, 257738.24439999833703 ], [ 347895.97240000218153, 257739.68189999833703 ], [ 347898.530900001525879, 257779.219099998474121 ], [ 347889.25959999859333, 257822.098700001835823 ], [ 347986.801500000059605, 257870.452799998223782 ], [ 347991.905500002205372, 257874.778499998152256 ], [ 347994.511615784373134, 257863.913836204563268 ], [ 347997.660199999809265, 257853.193799998611212 ], [ 347998.975199997425079, 257849.237399999052286 ], [ 347998.428199999034405, 257837.041700001806021 ], [ 347997.462399996817112, 257815.509100001305342 ], [ 347996.25110000371933, 257811.875300001353025 ], [ 347995.483342933293898, 257802.241893967438955 ], [ 347994.113521546591073, 257792.675517845753348 ], [ 347992.147018420684617, 257783.213761761959177 ], [ 347989.591560734552331, 257773.893804747698596 ], [ 347986.457189905515406, 257764.752268649259349 ], [ 347982.756222132826224, 257755.825074225547723 ], [ 347978.503200002014637, 257747.147300001233816 ], [ 347976.180769047117792, 257743.523052838630974 ], [ 347973.467315305606462, 257740.181493048876291 ], [ 347970.396932728006504, 257737.164606597099919 ], [ 347967.008199997246265, 257734.510299999266863 ], [ 347963.496936453622766, 257732.385814191453392 ], [ 347959.773874487786088, 257730.659192860970506 ], [ 347955.883922014734708, 257729.351262672687881 ], [ 347951.873999997973442, 257728.477800000458956 ], [ 347946.464976672781631, 257727.815841511066537 ], [ 347941.019729748310056, 257727.603689900715835 ], [ 347935.575599998235703, 257727.842799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98359486, "LATITUDE": 18.37041259, "OBJECTID_1": 146, "PARCEL_NO_": "101003015000", "Tax_Legal_": "SORGENFRI/EASTERN PORTION S S QTR", "Name": "MILLIN, AGNES & H. & KILPATRICK, A & G", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6079400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.51455850400001, "SHAPE_Area": 790.17273538500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353228.085699997842312, 260092.899999998509884 ], [ 353235.258299998939037, 260066.506299998611212 ], [ 353235.279700003564358, 260063.802499998360872 ], [ 353234.403899997472763, 260059.889699999243021 ], [ 353231.11710000038147, 260055.056400001049042 ], [ 353219.407600000500679, 260045.048799999058247 ], [ 353207.976599998772144, 260038.047899998724461 ], [ 353198.335400000214577, 260034.065799999982119 ], [ 353190.488600000739098, 260032.501400001347065 ], [ 353178.126999996602535, 260028.497699998319149 ], [ 353166.29110000282526, 260026.997900001704693 ], [ 353166.541799999773502, 260035.110100001096725 ], [ 353183.501000002026558, 260036.952799998223782 ], [ 353198.863799996674061, 260043.684399999678135 ], [ 353203.390500001609325, 260044.621599998325109 ], [ 353216.016199998557568, 260053.434599999338388 ], [ 353228.323100000619888, 260064.348299998790026 ], [ 353229.515399999916553, 260066.460900001227856 ], [ 353227.982799999415874, 260069.152800001204014 ], [ 353222.09910000115633, 260093.894299998879433 ], [ 353228.085699997842312, 260092.899999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040100", "MAP": "D9-4901-T90", "PARCEL_NAM": "2E", "ACRE": "2.00", "LONGITUDE": -64.9814718, "LATITUDE": 18.37203409, "OBJECTID_1": 296, "PARCEL_NO_": "101003040100", "Tax_Legal_": "2E REMAINDER ESTATE CARET BAY No.8 LITTLE NORTHSIDE QUARTER", "Name": "HABETES, SENNAI", "Address": "PO Box 305221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 177100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.94961378, "SHAPE_Area": 5726.1127542800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353474.954000003635883, 260189.709499999880791 ], [ 353466.829899996519089, 260184.773600000888109 ], [ 353463.606499999761581, 260184.536200001835823 ], [ 353455.525399997830391, 260186.581000000238419 ], [ 353451.506399996578693, 260185.07039999961853 ], [ 353450.716300003230572, 260183.164099998772144 ], [ 353448.327899999916553, 260179.556000001728535 ], [ 353449.981899999082088, 260174.714400000870228 ], [ 353450.802599996328354, 260173.032299999147654 ], [ 353452.433200001716614, 260170.93470000103116 ], [ 353455.707000002264977, 260165.261999998241663 ], [ 353454.10700000077486, 260163.771200001239777 ], [ 353439.704800002276897, 260150.565600000321865 ], [ 353385.222300000488758, 260298.729499999433756 ], [ 353390.882600001990795, 260296.875999998301268 ], [ 353403.801600001752377, 260294.870799999684095 ], [ 353411.875500001013279, 260293.670299999415874 ], [ 353432.177299998700619, 260293.11600000038743 ], [ 353474.954000003635883, 260189.709499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97811491, "LATITUDE": 18.37165214, "OBJECTID_1": 242, "PARCEL_NO_": "101003030100", "Tax_Legal_": "CARET BAY 45 LITTLE NORTHSIDE QTR", "Name": "KORNEYEV, ALEXANDER Y. & MARINA N.", "Address": "5308 Dutchman Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27606, "Country": "United States", "Land_Value": 225000, "Improved_V": 276000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 408.27027789200002, "SHAPE_Area": 8606.2952456099993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353852.358800001442432, 260174.8412000015378 ], [ 353767.256599999964237, 260133.776799999177456 ], [ 353712.24099999666214, 260247.155000001192093 ], [ 353727.568099997937679, 260246.436000000685453 ], [ 353755.090599998831749, 260233.995700001716614 ], [ 353791.45380000025034, 260225.005199998617172 ], [ 353820.522399999201298, 260220.387899998575449 ], [ 353856.881999999284744, 260211.819600000977516 ], [ 353853.946199998259544, 260177.809500001370907 ], [ 353852.342600002884865, 260176.740899998694658 ], [ 353852.358800001442432, 260174.8412000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98460094000001, "LATITUDE": 18.37002803, "OBJECTID_1": 146, "PARCEL_NO_": "101003015000", "Tax_Legal_": "SORGENFRI/EASTERN PORTION S S QTR", "Name": "MILLIN, AGNES & H. & KILPATRICK, A & G", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6079400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 567.48768406399995, "SHAPE_Area": 2158.3516479899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353166.29110000282526, 260026.997900001704693 ], [ 353157.894900001585484, 260025.933899998664856 ], [ 353142.784500002861023, 260025.513900000602007 ], [ 353128.887800000607967, 260024.502599999308586 ], [ 353111.956699997186661, 260024.969500001519918 ], [ 353099.252499997615814, 260026.070799998939037 ], [ 353084.732299998402596, 260027.458200000226498 ], [ 353074.448399998247623, 260028.278200000524521 ], [ 353064.148000001907349, 260031.201200000941753 ], [ 353052.648000001907349, 260032.912999998778105 ], [ 353047.512000001966953, 260032.571899998933077 ], [ 353046.010200001299381, 260031.358199998736382 ], [ 353046.01969999819994, 260030.156500000506639 ], [ 353047.247800000011921, 260027.762600000947714 ], [ 353049.677699998021126, 260026.279500000178814 ], [ 353068.498400002717972, 260016.213100001215935 ], [ 353076.694899998605251, 260011.771099999547005 ], [ 353086.412299998104572, 260006.139400001615286 ], [ 353095.844099998474121, 259998.402300000190735 ], [ 353102.833999998867512, 259993.650400001555681 ], [ 353112.551399998366833, 259988.018699999898672 ], [ 353132.583499997854233, 259977.661400001496077 ], [ 353151.999300003051758, 259968.801399998366833 ], [ 353164.270300000905991, 259961.61430000141263 ], [ 353163.988200001418591, 259952.486400000751019 ], [ 353142.979099996387959, 259962.721000000834465 ], [ 353111.72070000320673, 259978.397599998861551 ], [ 353083.46339999884367, 259996.802099999040365 ], [ 353060.377899996936321, 260011.041200000792742 ], [ 353046.40990000218153, 260019.042899999767542 ], [ 353038.806000001728535, 260024.991799999028444 ], [ 353035.145700000226498, 260029.169100001454353 ], [ 353033.903399996459484, 260033.365600001066923 ], [ 353037.499600000679493, 260037.299899999052286 ], [ 353042.326099999248981, 260038.539900001138449 ], [ 353047.15990000218153, 260038.878600001335144 ], [ 353055.023299999535084, 260038.339899998158216 ], [ 353068.950800001621246, 260035.445500001311302 ], [ 353080.750699996948242, 260034.03660000115633 ], [ 353090.134900003671646, 260032.308100000023842 ], [ 353102.225100003182888, 260032.403799999505281 ], [ 353116.133599996566772, 260031.912900000810623 ], [ 353140.911499999463558, 260033.010299999266863 ], [ 353159.641800001263618, 260034.360399998724461 ], [ 353166.541799999773502, 260035.110100001096725 ], [ 353166.29110000282526, 260026.997900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97697677, "LATITUDE": 18.37152874, "OBJECTID_1": 290, "PARCEL_NO_": "101003035400", "Tax_Legal_": "60-7 CARET BAY \nLITTLE NORTHSIDE QUARTER", "Name": "PITTMAN, BRYAN HOSKEN", "Address": "PO Box 8132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 211800, "Improved_V": 510600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.95028357500001, "SHAPE_Area": 4476.3661083999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353957.782499998807907, 260199.557599999010563 ], [ 353937.323700003325939, 260140.072900000959635 ], [ 353902.531800001859665, 260153.931400001049042 ], [ 353868.526399999856949, 260170.118400000035763 ], [ 353868.463500000536442, 260177.506099998950958 ], [ 353866.84179999679327, 260178.548300001770258 ], [ 353857.959799997508526, 260179.953299999237061 ], [ 353853.946199998259544, 260177.809500001370907 ], [ 353856.881999999284744, 260211.819600000977516 ], [ 353887.582999996840954, 260204.893699999898672 ], [ 353901.30290000140667, 260203.528299998492002 ], [ 353944.863499999046326, 260201.562800001353025 ], [ 353957.782499998807907, 260199.557599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97614754, "LATITUDE": 18.37134514, "OBJECTID_1": 289, "PARCEL_NO_": "101003035300", "Tax_Legal_": "CARET BAY 60-5 & 60-6 NO. 8 LT.NORTHSIDE QTR.", "Name": "RSAD ELLIOTT LIVING REVOCABLE TRUST", "Address": "4225 Fortress Dr", "City": "Blacksburg", "State": "Virginia", "Zip": 24060, "Country": "United States", "Land_Value": 454400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 428.77313633199998, "SHAPE_Area": 6865.1409847000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354082.897600002586842, 260184.538499999791384 ], [ 354017.575499996542931, 260185.270500000566244 ], [ 354034.939599998295307, 260134.750100001692772 ], [ 354022.205899998545647, 260115.014199998229742 ], [ 354017.36259999871254, 260115.607799999415874 ], [ 353993.17679999768734, 260114.987700000405312 ], [ 353981.86150000244379, 260118.061500001698732 ], [ 353947.033600002527237, 260136.141600001603365 ], [ 353937.323700003325939, 260140.072900000959635 ], [ 353957.782499998807907, 260199.557599999010563 ], [ 353961.830300003290176, 260197.690900001674891 ], [ 353968.291599996387959, 260196.477200001478195 ], [ 353971.534800000488758, 260194.392799999564886 ], [ 353982.01690000295639, 260194.47859999909997 ], [ 353991.649400003254414, 260199.623700000345707 ], [ 353999.701800003647804, 260200.956199999898672 ], [ 354015.829800002276897, 260200.877099998295307 ], [ 354051.331000000238419, 260198.42339999973774 ], [ 354064.255300000309944, 260195.785000000149012 ], [ 354074.777000002563, 260191.227099999785423 ], [ 354081.238200001418591, 260190.013399999588728 ], [ 354082.897600002586842, 260184.538499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97551224, "LATITUDE": 18.37118657, "OBJECTID_1": 244, "PARCEL_NO_": "101003030300", "Tax_Legal_": "30 ESTATE CARET BAY NO. 8 LITTLE NORTHSIDE QTR", "Name": "RSAD ELLIOTT LIVING REVOCABLE TRUST", "Address": "4225 Fortress Dr", "City": "Blacksburg", "State": "Virginia", "Zip": 24060, "Country": "United States", "Land_Value": 287500, "Improved_V": 180700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.47743844299998, "SHAPE_Area": 5545.8693405499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354108.470499999821186, 260116.986800000071526 ], [ 354062.681500002741814, 260096.558100000023842 ], [ 354037.56360000371933, 260110.706900000572205 ], [ 354022.205899998545647, 260115.014199998229742 ], [ 354034.939599998295307, 260134.750100001692772 ], [ 354017.575499996542931, 260185.270500000566244 ], [ 354082.897600002586842, 260184.538499999791384 ], [ 354084.530000001192093, 260182.229899998754263 ], [ 354108.470499999821186, 260116.986800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003042000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97976648, "LATITUDE": 18.37141664, "OBJECTID_1": 314, "PARCEL_NO_": "101003042000", "Tax_Legal_": "CARET BAY 2E-51-18 LT. NORTHSIDE", "Name": "MONTEL INC.", "Address": "PO Box 6785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 141000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.36230674399999, "SHAPE_Area": 2582.3893831400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353646.954099997878075, 260149.095400001853704 ], [ 353580.035599999129772, 260147.91440000012517 ], [ 353572.624099999666214, 260166.007800001651049 ], [ 353568.542199999094009, 260171.885000001639128 ], [ 353566.90259999781847, 260175.037999998778105 ], [ 353562.021600000560284, 260180.064300000667572 ], [ 353657.967399999499321, 260181.482900001108646 ], [ 353646.954099997878075, 260149.095400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9777654, "LATITUDE": 18.37115955, "OBJECTID_1": 245, "PARCEL_NO_": "101003030400", "Tax_Legal_": "CARET BAY 60-1 LITTLE NORTHSIDE QTR", "Name": "HURST, C. G. & GALAT, S. J", "Address": "24125 Hill Ave", "City": "Warren", "State": "Michigan", "Zip": 48091, "Country": "United States", "Land_Value": 100000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.93078085799999, "SHAPE_Area": 3976.1298418800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353893.33389999717474, 260148.754900000989437 ], [ 353788.040399998426437, 260103.701400000602007 ], [ 353781.757100000977516, 260102.758600000292063 ], [ 353781.701899997889996, 260102.749800000339746 ], [ 353767.256599999964237, 260133.776799999177456 ], [ 353852.358800001442432, 260174.8412000015378 ], [ 353852.4037000015378, 260169.5641999989748 ], [ 353855.650600001215935, 260167.057700000703335 ], [ 353876.706399999558926, 260156.464299999177456 ], [ 353893.33389999717474, 260148.754900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003041900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97976409, "LATITUDE": 18.37111233, "OBJECTID_1": 313, "PARCEL_NO_": "101003041900", "Tax_Legal_": "CARET BAY 2E-51-17 LT. NORTHSIDE", "Name": "TRUST AGREEMENT OF LORNA A BARLETTE", "Address": "PO Box 9763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 126500, "Improved_V": 128600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.75976127800001, "SHAPE_Area": 2099.5893286400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353640.791299998760223, 260115.269999999552965 ], [ 353582.745800003409386, 260113.739500001072884 ], [ 353582.587600000202656, 260132.314399998635054 ], [ 353580.035599999129772, 260147.91440000012517 ], [ 353646.954099997878075, 260149.095400001853704 ], [ 353640.791299998760223, 260115.269999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003030900", "MAP": "D9-6589-T99", "PARCEL_NAM": "60-9", "ACRE": ".805", "LONGITUDE": -64.97643094, "LATITUDE": 18.37039542, "OBJECTID_1": 249, "PARCEL_NO_": "101003030900", "Tax_Legal_": "CARET BAY 60-9,60-10 #8 LT.NORTHSIDE QTR.", "Name": "ANN AND MICHAEL WERTH TRUST", "Address": "PO Box 6035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 279000, "Improved_V": 565800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.492026017, "SHAPE_Area": 3014.71177511 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353927.531199999153614, 260051.910399999469519 ], [ 353989.999499998986721, 260103.866300001740456 ], [ 353989.447200000286102, 260032.508900001645088 ], [ 353972.17960000038147, 260024.0456000007689 ], [ 353970.579599998891354, 260022.554900001734495 ], [ 353965.550399996340275, 260019.636900000274181 ], [ 353956.28999999910593, 260024.134799998253584 ], [ 353949.939900003373623, 260027.574400000274181 ], [ 353944.912900000810623, 260029.955699998885393 ], [ 353940.979400001466274, 260032.848499998450279 ], [ 353938.016000002622604, 260035.282600000500679 ], [ 353935.793499998748302, 260037.081799998879433 ], [ 353934.735200002789497, 260038.775199998170137 ], [ 353933.253499999642372, 260041.103500001132488 ], [ 353931.877700001001358, 260043.749299999326468 ], [ 353930.607699997723103, 260046.183499999344349 ], [ 353928.385200001299381, 260049.993500001728535 ], [ 353927.538500003516674, 260051.898499999195337 ], [ 353927.531199999153614, 260051.910399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040900", "MAP": "D9-3991-T87", "PARCEL_NAM": "2E-51-7", "ACRE": ".500", "LONGITUDE": -64.98047631, "LATITUDE": 18.37088743, "OBJECTID_1": 304, "PARCEL_NO_": "101003040900", "Tax_Legal_": "CARET BAY 2E-51-7&2E-51-9 LT. NORTHSIDE", "Name": "QUALLS, KEVIN P. & ELEANOR J. P", "Address": "PO Box 308415", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 238000, "Improved_V": 370600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.996637349, "SHAPE_Area": 1989.8094360800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353522.092600002884865, 260134.352400001138449 ], [ 353573.091600000858307, 260111.127300001680851 ], [ 353535.532999999821186, 260071.134300000965595 ], [ 353518.341499999165535, 260101.391100000590086 ], [ 353510.094999998807907, 260122.855099998414516 ], [ 353511.669799998402596, 260127.300999999046326 ], [ 353522.092600002884865, 260134.352400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97978288, "LATITUDE": 18.3707771, "OBJECTID_1": 312, "PARCEL_NO_": "101003041800", "Tax_Legal_": "CARET BAY 2E-51-16 LT. NORTHSIDE", "Name": "DONOVAN, DESHEARN", "Address": "PO Box 9917", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 150900, "Improved_V": 101700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.60628895599999, "SHAPE_Area": 2244.6959153399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353637.907700002193451, 260075.138599999248981 ], [ 353583.082099996507168, 260074.267700001597404 ], [ 353582.745800003409386, 260113.739500001072884 ], [ 353640.791299998760223, 260115.269999999552965 ], [ 353637.907700002193451, 260075.138599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97514328, "LATITUDE": 18.3706932, "OBJECTID_1": 289, "PARCEL_NO_": "101003035300", "Tax_Legal_": "CARET BAY 60-5 & 60-6 NO. 8 LT.NORTHSIDE QTR.", "Name": "RSAD ELLIOTT LIVING REVOCABLE TRUST", "Address": "4225 Fortress Dr", "City": "Blacksburg", "State": "Virginia", "Zip": 24060, "Country": "United States", "Land_Value": 454400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.52605868500001, "SHAPE_Area": 1644.11604328 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354062.681500002741814, 260096.558100000023842 ], [ 354108.470499999821186, 260116.986800000071526 ], [ 354133.210100002586842, 260052.5945999994874 ], [ 354125.107500001788139, 260057.172400001436472 ], [ 354112.919299997389317, 260068.049499999731779 ], [ 354062.681500002741814, 260096.558100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040900", "MAP": "D9-3991-T87", "PARCEL_NAM": "2E-51-7", "ACRE": ".50", "LONGITUDE": -64.98026568, "LATITUDE": 18.37051343, "OBJECTID_1": 304, "PARCEL_NO_": "101003040900", "Tax_Legal_": "CARET BAY 2E-51-7&2E-51-9 LT. NORTHSIDE", "Name": "QUALLS, KEVIN P. & ELEANOR J. P", "Address": "PO Box 308415", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 238000, "Improved_V": 370600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.004117167, "SHAPE_Area": 1938.74799981 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353535.532999999821186, 260071.134300000965595 ], [ 353573.091600000858307, 260111.127300001680851 ], [ 353574.165899999439716, 260079.683200001716614 ], [ 353574.185699999332428, 260077.361299999058247 ], [ 353573.7820999994874, 260030.072999998927116 ], [ 353572.194700002670288, 260027.104699999094009 ], [ 353568.99099999666214, 260024.545400001108646 ], [ 353564.145900003612041, 260025.350099999457598 ], [ 353560.096400000154972, 260027.42790000140667 ], [ 353535.532999999821186, 260071.134300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97584704, "LATITUDE": 18.37056589, "OBJECTID_1": 291, "PARCEL_NO_": "101003035500", "Tax_Legal_": "CARET BAY 60-8 LITTLE NORTHSIDE", "Name": "JENNINGS, BRADLEY W. & WENDY M", "Address": "PO Box 308776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 163900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.82398278400001, "SHAPE_Area": 4173.7279143400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354034.413900002837181, 260101.815200001001358 ], [ 354110.57769999653101, 260058.953299999237061 ], [ 354110.599200002849102, 260056.420400001108646 ], [ 354108.988399997353554, 260056.196100000292063 ], [ 354079.09009999781847, 260063.550799999386072 ], [ 354068.600900001823902, 260064.309300001710653 ], [ 354048.457400001585484, 260062.455699998885393 ], [ 354036.395099997520447, 260058.557300001382828 ], [ 354027.561599999666214, 260054.263099998235703 ], [ 354016.336199998855591, 260046.782900001853704 ], [ 354001.088200002908707, 260038.214400000870228 ], [ 353989.447200000286102, 260032.508900001645088 ], [ 353990.021700002253056, 260106.729200001806021 ], [ 354000.505599997937679, 260106.603900000452995 ], [ 354018.246200002729893, 260106.537999998778105 ], [ 354034.413900002837181, 260101.815200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97979126, "LATITUDE": 18.3704187, "OBJECTID_1": 311, "PARCEL_NO_": "101003041700", "Tax_Legal_": "CARET BAY 2E-51-15 LT. NORTHSIDE", "Name": "WINTER, JAYNE", "Address": "PO Box 6651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 83200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.24266611600001, "SHAPE_Area": 2168.35641936 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353639.836800001561642, 260038.001899998635054 ], [ 353582.622800000011921, 260033.522900000214577 ], [ 353583.4003000035882, 260036.906800001859665 ], [ 353583.082099996507168, 260074.267700001597404 ], [ 353637.907700002193451, 260075.138599999248981 ], [ 353639.836800001561642, 260038.001899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97575359, "LATITUDE": 18.37009458, "OBJECTID_1": 247, "PARCEL_NO_": "101003030700", "Tax_Legal_": "36A CARET BAY LITTLE NORTHSIDE QUARTER", "Name": "PRAGER, RUTH L. & MARK ANDREW THOMPSON", "Address": "PO Box 8117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 198800, "Improved_V": 212800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.03292034399999, "SHAPE_Area": 3479.03839238 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354076.748499996960163, 260054.454599998891354 ], [ 354058.7787000015378, 259986.757599998265505 ], [ 354044.218299999833107, 259992.126800000667572 ], [ 354026.409299999475479, 260000.213700000196695 ], [ 353996.503899998962879, 260008.41270000115037 ], [ 353978.6841000020504, 260017.766100000590086 ], [ 353998.769900001585484, 260026.374200001358986 ], [ 354017.226999998092651, 260036.86879999935627 ], [ 354032.473200000822544, 260045.648499999195337 ], [ 354038.895000003278255, 260049.078499998897314 ], [ 354042.109399996697903, 260050.371399998664856 ], [ 354051.756399996578693, 260053.827799998223782 ], [ 354060.615000002086163, 260055.166900001466274 ], [ 354076.748499996960163, 260054.454599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97514595, "LATITUDE": 18.37003687, "OBJECTID_1": 284, "PARCEL_NO_": "101003034800", "Tax_Legal_": "CARET BAY 36B LT. NORTHSIDE", "Name": "MAYEUX, PAIGE ELLEN and KATHRYN ELEANOR", "Address": "5004 Thomas Dr", "City": "Panama City", "State": "Florida", "Zip": 32408, "Country": "United States", "Land_Value": 143700, "Improved_V": 109000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.37697707199999, "SHAPE_Area": 4590.7493330300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354151.369800001382828, 260003.34739999845624 ], [ 354069.336300000548363, 259977.978000000119209 ], [ 354066.073299996554852, 259982.384300000965595 ], [ 354058.7787000015378, 259986.757599998265505 ], [ 354076.748499996960163, 260054.454599998891354 ], [ 354101.79450000077486, 260048.7489 ], [ 354122.771200001239777, 260047.442999999970198 ], [ 354129.236100003123283, 260045.807100001722574 ], [ 354137.331600002944469, 260042.073699999600649 ], [ 354151.369800001382828, 260003.34739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97970739, "LATITUDE": 18.3699925, "OBJECTID_1": 302, "PARCEL_NO_": "101003040700", "Tax_Legal_": "CARET BAY 2E-51-5 LT. NORTHSIDE", "Name": "CENTOFANTI, MICHAEL J. & DIANA K", "Address": "3584 Corners Way", "City": "Peachtree Corners", "State": "Georgia", "Zip": 30092, "Country": "United States", "Land_Value": 96200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.413452578, "SHAPE_Area": 3158.7055572899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353582.622800000011921, 260033.522900000214577 ], [ 353639.836800001561642, 260038.001899998635054 ], [ 353653.34740000218153, 259966.55180000141263 ], [ 353625.03660000115633, 259976.874800000339746 ], [ 353620.175300002098083, 259979.579199999570847 ], [ 353604.749300003051758, 259991.907499998807907 ], [ 353594.162900000810623, 260004.0641999989748 ], [ 353582.806199997663498, 260011.992899999022484 ], [ 353579.541400000452995, 260016.610199999064207 ], [ 353581.88120000064373, 260025.917500000447035 ], [ 353582.622800000011921, 260033.522900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98055581, "LATITUDE": 18.36989366, "OBJECTID_1": 303, "PARCEL_NO_": "101003040800", "Tax_Legal_": "CARET BAY 2E-51-6 LT. NORTHSIDE", "Name": "TROTMAN-WEBSTER, SHANA & ELVIS", "Address": "2104 Thornknoll Dr", "City": "Fort Washington", "State": "Maryland", "Zip": 20744, "Country": "United States", "Land_Value": 111700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.50479315000001, "SHAPE_Area": 2098.4000725199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353568.450800001621246, 259993.299100000411272 ], [ 353505.750900000333786, 259970.199000000953674 ], [ 353494.200000002980232, 260000.924100000411272 ], [ 353552.88629999756813, 260021.880499999970198 ], [ 353568.450800001621246, 259993.299100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97668315, "LATITUDE": 18.36980723, "OBJECTID_1": 281, "PARCEL_NO_": "101003034500", "Tax_Legal_": "CARET BAY 60-4 LT. NORTHSIDE", "Name": "HURST, BARY L. & CAROL GALAT", "Address": "PO Box 1498", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.41741680799998, "SHAPE_Area": 3347.13100442 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354010.324500001966953, 259995.22690000012517 ], [ 353958.903899997472763, 259973.274500001221895 ], [ 353890.379900000989437, 259971.236000001430511 ], [ 353878.87389999628067, 259996.684200000017881 ], [ 353888.544299997389317, 259997.396600000560284 ], [ 353936.044799998402596, 260006.229100000113249 ], [ 353969.859600000083447, 260012.416499998420477 ], [ 353973.928900003433228, 260008.016800001263618 ], [ 353991.732500001788139, 260000.563200000673532 ], [ 354010.324500001966953, 259995.22690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97997338, "LATITUDE": 18.36950742, "OBJECTID_1": 299, "PARCEL_NO_": "101003040400", "Tax_Legal_": "CARET BAY 2E-51-2 LT. NORTHSIDE", "Name": "FRIEDMAN FAMILY TRUST", "Address": "1091 Devonshire Dr", "City": "San Diego", "State": "California", "Zip": 92107, "Country": "United States", "Land_Value": 75000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.422343649, "SHAPE_Area": 2529.0256362700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353618.929499998688698, 259936.505899999290705 ], [ 353573.129699997603893, 259917.343699999153614 ], [ 353571.470399998128414, 259922.818599998950958 ], [ 353570.628100000321865, 259927.033599998801947 ], [ 353569.760600000619888, 259934.203699998557568 ], [ 353570.453699998557568, 259947.508200000971556 ], [ 353572.786300003528595, 259957.659800000488758 ], [ 353580.631800003349781, 259983.26630000025034 ], [ 353578.086999997496605, 259998.022100001573563 ], [ 353580.484399996697903, 260000.574799999594688 ], [ 353583.718599997460842, 259999.545800000429153 ], [ 353589.395199999213219, 259995.792599998414516 ], [ 353595.111299999058247, 259987.395599998533726 ], [ 353600.798600003123283, 259982.375900000333786 ], [ 353601.619300000369549, 259980.693900000303984 ], [ 353625.356600001454353, 259939.302700001746416 ], [ 353618.929499998688698, 259936.505899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97495703, "LATITUDE": 18.36965397, "OBJECTID_1": 282, "PARCEL_NO_": "101003034600", "Tax_Legal_": "CARET BAY 35-1 LT. NORTHSIDE", "Name": "WOODWARD, HAROLD & E. A", "Address": "P.O. BOX 5493", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 114900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.79702405, "SHAPE_Area": 3010.2881585499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354166.20889999717474, 259965.260899998247623 ], [ 354102.670199997723103, 259945.953499998897314 ], [ 354096.043499998748302, 259966.586500000208616 ], [ 354066.206399999558926, 259966.764499999582767 ], [ 354068.601899996399879, 259969.528299998492002 ], [ 354069.336300000548363, 259977.978000000119209 ], [ 354151.369800001382828, 260003.34739999845624 ], [ 354166.20889999717474, 259965.260899998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97732231000001, "LATITUDE": 18.36941513, "OBJECTID_1": 246, "PARCEL_NO_": "101003030600", "Tax_Legal_": "CARET BAY 16 LITTLE NORTHSIDE QTR", "Name": "VERNON J CARR & TAMAR N CORRY", "Address": "PO Box 8473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 175600, "Improved_V": 135700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 367.86910082100002, "SHAPE_Area": 4966.8178366700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353920.135399997234344, 259885.986699998378754 ], [ 353883.910700000822544, 259878.72410000115633 ], [ 353824.071699999272823, 259993.069200001657009 ], [ 353878.87389999628067, 259996.684200000017881 ], [ 353890.379900000989437, 259971.236000001430511 ], [ 353909.28830000013113, 259928.749899998307228 ], [ 353903.633299998939037, 259929.970199998468161 ], [ 353899.601800002157688, 259929.937199998646975 ], [ 353893.982799999415874, 259926.935899998992682 ], [ 353890.788099996745586, 259923.321100000292063 ], [ 353890.060900002717972, 259914.027100000530481 ], [ 353891.695100001990795, 259911.50730000063777 ], [ 353892.521200001239777, 259909.19200000166893 ], [ 353899.054399996995926, 259899.535199999809265 ], [ 353920.135399997234344, 259885.986699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98047107, "LATITUDE": 18.3696, "OBJECTID_1": 301, "PARCEL_NO_": "101003040600", "Tax_Legal_": "CARET BAY 2E-51-4 LT. NORTHSIDE", "Name": "LESLIE, SEGRID & WARREN & MCGHE", "Address": "152 ESTATE MAHOGONY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.58626787700001, "SHAPE_Area": 2193.20737478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353561.555500000715256, 259950.812899999320507 ], [ 353518.955799996852875, 259934.632199998944998 ], [ 353505.750900000333786, 259970.199000000953674 ], [ 353568.450800001621246, 259993.299100000411272 ], [ 353569.2787000015378, 259990.772799998521805 ], [ 353570.954300001263618, 259983.398200001567602 ], [ 353563.879100002348423, 259962.019900001585484 ], [ 353563.900700002908707, 259959.486900001764297 ], [ 353561.555500000715256, 259950.812899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97607936, "LATITUDE": 18.36961016, "OBJECTID_1": 280, "PARCEL_NO_": "101003034400", "Tax_Legal_": "CARET BAY 60-3 LT. NORTHSIDE", "Name": "HURST, C. & GALAT, S", "Address": "24125 Hill Ave", "City": "Warren", "State": "Michigan", "Zip": 48091, "Country": "United States", "Land_Value": 59000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.489730807, "SHAPE_Area": 3089.60297881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353973.714199997484684, 259938.56529999896884 ], [ 353958.903899997472763, 259973.274500001221895 ], [ 354010.324500001966953, 259995.22690000012517 ], [ 354025.682199999690056, 259990.919599998742342 ], [ 354040.256899997591972, 259983.861699998378754 ], [ 354053.193899996578693, 259979.745799999684095 ], [ 354060.490299999713898, 259975.161400001496077 ], [ 354015.529200002551079, 259952.206399999558926 ], [ 353998.650499999523163, 259945.735500000417233 ], [ 353973.714199997484684, 259938.56529999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97961993, "LATITUDE": 18.36953031, "OBJECTID_1": 300, "PARCEL_NO_": "101003040500", "Tax_Legal_": "2E-51-3 CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "ELOI, LEVI", "Address": "PO Box 10190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 152400, "Improved_V": 181000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.147133475, "SHAPE_Area": 816.48605183400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353625.356600001454353, 259939.302700001746416 ], [ 353601.619300000369549, 259980.693900000303984 ], [ 353617.835500001907349, 259970.271899998188019 ], [ 353632.395900003612041, 259964.902699999511242 ], [ 353660.708499997854233, 259954.368599999696016 ], [ 353629.373800002038479, 259941.024399999529123 ], [ 353625.356600001454353, 259939.302700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97675586, "LATITUDE": 18.36945818, "OBJECTID_1": 279, "PARCEL_NO_": "101003034300", "Tax_Legal_": "CARET BAY 60-2 LT. NORTHSIDE", "Name": "HURST, BARY L. & CAROL GALAT", "Address": "24125 Hill Ave", "City": "Warren", "State": "Michigan", "Zip": 48091, "Country": "United States", "Land_Value": 63000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.27625524199999, "SHAPE_Area": 2865.3565943 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353890.379900000989437, 259971.236000001430511 ], [ 353958.903899997472763, 259973.274500001221895 ], [ 353973.714199997484684, 259938.56529999896884 ], [ 353933.493900001049042, 259927.048099998384714 ], [ 353922.216300003230572, 259925.689300000667572 ], [ 353909.28830000013113, 259928.749899998307228 ], [ 353890.379900000989437, 259971.236000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003030800", "MAP": "D9-3148-T85", "PARCEL_NAM": "34-2", "ACRE": ".75", "LONGITUDE": -64.97546098, "LATITUDE": 18.36927926, "OBJECTID_1": 248, "PARCEL_NO_": "101003030800", "Tax_Legal_": "34&35 CARET BAY LITTLE NORTHSIDE QTR", "Name": "HURST, BARRY & CAROL", "Address": "24125 Hill Ave", "City": "Warren", "State": "Michigan", "Zip": 48091, "Country": "United States", "Land_Value": 150000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.152807454, "SHAPE_Area": 3230.3631454199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354094.979299999773502, 259902.194200001657009 ], [ 354057.998700000345707, 259889.014899998903275 ], [ 354036.495099999010563, 259952.166900001466274 ], [ 354066.206399999558926, 259966.764499999582767 ], [ 354096.043499998748302, 259966.586500000208616 ], [ 354102.670199997723103, 259945.953499998897314 ], [ 354081.758299998939037, 259939.660700000822544 ], [ 354094.979299999773502, 259902.194200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003030800", "MAP": "D9-3148-T85", "PARCEL_NAM": "35-2", "ACRE": ".75", "LONGITUDE": -64.97488909, "LATITUDE": 18.36929083, "OBJECTID_1": 248, "PARCEL_NO_": "101003030800", "Tax_Legal_": "34&35 CARET BAY LITTLE NORTHSIDE QTR", "Name": "HURST, BARRY & CAROL", "Address": "24125 Hill Ave", "City": "Warren", "State": "Michigan", "Zip": 48091, "Country": "United States", "Land_Value": 150000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.4824646, "SHAPE_Area": 3341.08410138 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354119.098600000143051, 259910.624299999326468 ], [ 354094.979299999773502, 259902.194200001657009 ], [ 354081.758299998939037, 259939.660700000822544 ], [ 354102.670199997723103, 259945.953499998897314 ], [ 354166.20889999717474, 259965.260899998247623 ], [ 354178.591300003230572, 259931.58729999884963 ], [ 354119.098600000143051, 259910.624299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003026700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97931477, "LATITUDE": 18.36928251, "OBJECTID_1": 218, "PARCEL_NO_": "101003026700", "Tax_Legal_": "CARET BAY 2E-50A-25 LITTLE NORTHSIDE", "Name": "WALKER, GLENROY D. & PATRICIA A. JOSEPH", "Address": "PO Box 10247", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66500, "Improved_V": 133000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.20482541499999, "SHAPE_Area": 1605.5645533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353684.648999996483326, 259889.125599998980761 ], [ 353629.373800002038479, 259941.024399999529123 ], [ 353660.708499997854233, 259954.368599999696016 ], [ 353671.957299999892712, 259959.104800000786781 ], [ 353684.648999996483326, 259889.125599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98043731, "LATITUDE": 18.36925139, "OBJECTID_1": 297, "PARCEL_NO_": "101003040200", "Tax_Legal_": "CARET BAY 2E-51-1 LT. NORTHSIDE", "Name": "GREY, JASMINE", "Address": "PO Box 303946", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033946, "Country": "United States", "Land_Value": 54200, "Improved_V": 207000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.027600095, "SHAPE_Area": 1419.2734055000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353564.289099998772144, 259913.893899999558926 ], [ 353532.153499998152256, 259899.909800000488758 ], [ 353518.955799996852875, 259934.632199998944998 ], [ 353561.555500000715256, 259950.812899999320507 ], [ 353560.921800002455711, 259930.542700000107288 ], [ 353564.289099998772144, 259913.893899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003034900", "MAP": "D9-3150-T85", "PARCEL_NAM": "34-1", "ACRE": ".75", "LONGITUDE": -64.9759136, "LATITUDE": 18.3690832, "OBJECTID_1": 285, "PARCEL_NO_": "101003034900", "Tax_Legal_": "34-1 ESTATE CARET BAY #8 LITTLE NORTHSIDE QUARTER", "Name": "SPRINGETTE, JENNIFER WHEATLEY", "Address": "PO Box 301890", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.68816552300001, "SHAPE_Area": 3596.3128725000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354057.998700000345707, 259889.014899998903275 ], [ 354005.743000000715256, 259870.433100000023842 ], [ 353985.056500002741814, 259932.325300000607967 ], [ 353993.099899999797344, 259934.713199999183416 ], [ 354007.577500000596046, 259939.05350000038743 ], [ 354036.495099999010563, 259952.166900001466274 ], [ 354057.998700000345707, 259889.014899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003027100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97990777, "LATITUDE": 18.36915646, "OBJECTID_1": 222, "PARCEL_NO_": "101003027100", "Tax_Legal_": "CARET BAY 2E-50A-22 LITTLE NORTHSIDE", "Name": "DAVIS, ARTHUR", "Address": "P.O. BOX 5856", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61800, "Improved_V": 215000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.42969570100001, "SHAPE_Area": 1150.2603819200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353623.176899999380112, 259911.209499999880791 ], [ 353582.189800001680851, 259895.041999999433756 ], [ 353573.129699997603893, 259917.343699999153614 ], [ 353618.929499998688698, 259936.505899999290705 ], [ 353623.176899999380112, 259911.209499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97955346000001, "LATITUDE": 18.36904705, "OBJECTID_1": 219, "PARCEL_NO_": "101003026800", "Tax_Legal_": "CARET BAY 2E-50A-24 LITTLE NORTHSIDE", "Name": "ROGERS, SYDNEY C", "Address": "BOX 4632", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59800, "Improved_V": 197700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.97910576500001, "SHAPE_Area": 1062.68637388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353663.641699999570847, 259894.019900001585484 ], [ 353628.280900001525879, 259880.009399998933077 ], [ 353623.176899999380112, 259911.209499999880791 ], [ 353618.929499998688698, 259936.505899999290705 ], [ 353663.641699999570847, 259894.019900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003034700", "MAP": "D9-3150-T85", "PARCEL_NAM": "33", "ACRE": ".76", "LONGITUDE": -64.97649242, "LATITUDE": 18.36899557, "OBJECTID_1": 283, "PARCEL_NO_": "101003034700", "Tax_Legal_": "CARET BAY 33 LITTLE NORTHSIDE QTR", "Name": "DAVISON, CLARE TREMLETT", "Address": "Sedgwick Park House", "City": "WEST SUSSEX", "State": null, "Zip": 0, "Country": "United States", "Land_Value": 76000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.30793253600001, "SHAPE_Area": 3736.8990470899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353985.056500002741814, 259932.325300000607967 ], [ 354005.743000000715256, 259870.433100000023842 ], [ 353992.883400000631809, 259865.472699999809265 ], [ 353988.833800002932549, 259867.550500001758337 ], [ 353981.55179999768734, 259870.446199998259544 ], [ 353945.964400000870228, 259883.031700000166893 ], [ 353920.858999997377396, 259895.702899999916553 ], [ 353905.45099999755621, 259905.920400001108646 ], [ 353900.562700003385544, 259911.791000001132488 ], [ 353898.910599999129772, 259916.421500001102686 ], [ 353899.684500001370907, 259920.22749999910593 ], [ 353901.29169999808073, 259920.874000001698732 ], [ 353920.681000001728535, 259916.599700000137091 ], [ 353931.159500002861023, 259917.107599999755621 ], [ 353985.056500002741814, 259932.325300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031400", "MAP": "31", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97460181, "LATITUDE": 18.36889251, "OBJECTID_1": 254, "PARCEL_NO_": "101003031400", "Tax_Legal_": "CARET BAY 31 LITTLE NORTHSIDE", "Name": "WILLETT, DELYN & SMITH, LECHEEA D.", "Address": "PO Box 8657", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 188600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.622088082, "SHAPE_Area": 4087.95832015 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354201.6841000020504, 259871.192400000989437 ], [ 354152.6537000015378, 259852.637099999934435 ], [ 354143.008500002324581, 259848.9695999994874 ], [ 354139.711300000548363, 259857.386300001293421 ], [ 354130.635099999606609, 259881.587799999862909 ], [ 354119.098600000143051, 259910.624299999326468 ], [ 354178.591300003230572, 259931.58729999884963 ], [ 354193.450199998915195, 259891.178899999707937 ], [ 354201.6841000020504, 259871.192400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003027200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9803488, "LATITUDE": 18.3689776, "OBJECTID_1": 223, "PARCEL_NO_": "101003027200", "Tax_Legal_": "CARET BAY 2E-50A-21 LITTLE NORTHSIDE", "Name": "HERBERT, MERLE SASSO & GLENVILLE", "Address": "9617 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49900, "Improved_V": 196700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.698054195, "SHAPE_Area": 896.82137664300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353574.164399996399879, 259890.543299999088049 ], [ 353541.224299997091293, 259876.341600000858307 ], [ 353532.153499998152256, 259899.909800000488758 ], [ 353564.289099998772144, 259913.893899999558926 ], [ 353566.745800003409386, 259909.480999998748302 ], [ 353566.762000001966953, 259907.581300001591444 ], [ 353574.164399996399879, 259890.543299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003026900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97983899, "LATITUDE": 18.36891526, "OBJECTID_1": 220, "PARCEL_NO_": "101003026900", "Tax_Legal_": "CARET BAY 2E-50A-20 SOUTHSIDE QTR.", "Name": "DAVIS, ARTHUR", "Address": "P.O.BOX 5856", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64000, "Improved_V": 4000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.04052373600001, "SHAPE_Area": 1243.19509148 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353628.280900001525879, 259880.009399998933077 ], [ 353593.724500000476837, 259866.216600000858307 ], [ 353592.052599996328354, 259873.168999999761581 ], [ 353591.228299997746944, 259875.273200001567602 ], [ 353583.015900000929832, 259892.726700000464916 ], [ 353582.189800001680851, 259895.041999999433756 ], [ 353623.176899999380112, 259911.209499999880791 ], [ 353628.280900001525879, 259880.009399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.975513, "LATITUDE": 18.36876823, "OBJECTID_1": 253, "PARCEL_NO_": "101003031300", "Tax_Legal_": "32A CARET BAY 8 LITTLE NORTHSIDE", "Name": "BRITTAIN, JOHN C", "Address": "8061 Caret Bay E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 207500, "Improved_V": 230600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.68443689499998, "SHAPE_Area": 3582.6109093599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354005.743000000715256, 259870.433100000023842 ], [ 354057.998700000345707, 259889.014899998903275 ], [ 354094.979299999773502, 259902.194200001657009 ], [ 354119.098600000143051, 259910.624299999326468 ], [ 354130.635099999606609, 259881.587799999862909 ], [ 354082.330099999904633, 259872.537599999457598 ], [ 354029.383199997246265, 259840.440200001001358 ], [ 354000.984200000762939, 259861.106100000441074 ], [ 353992.883400000631809, 259865.472699999809265 ], [ 354005.743000000715256, 259870.433100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003026600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97939985, "LATITUDE": 18.36876619, "OBJECTID_1": 217, "PARCEL_NO_": "101003026600", "Tax_Legal_": "CARET BAY 2E-50A-23 LITTLE NORTHSIDE", "Name": "CLARKE, JOSEPH & IONA", "Address": "P.O. BOX 3711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63900, "Improved_V": 224700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.46022516599999, "SHAPE_Area": 1348.21378983 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353676.79450000077486, 259864.574400000274181 ], [ 353639.828199997544289, 259849.706399999558926 ], [ 353628.280900001525879, 259880.009399998933077 ], [ 353663.641699999570847, 259894.019900001585484 ], [ 353674.210100002586842, 259883.973900001496077 ], [ 353676.79450000077486, 259864.574400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9802429, "LATITUDE": 18.36871806, "OBJECTID_1": 221, "PARCEL_NO_": "101003027000", "Tax_Legal_": "CARET BAY 2E-50A-19 LITTLE NORTHSIDE", "Name": "GARDNER, SHIRLEY P", "Address": "6768 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.03416028300001, "SHAPE_Area": 1328.38266909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353587.358499996364117, 259856.243099998682737 ], [ 353553.606700003147125, 259842.667899999767542 ], [ 353541.224299997091293, 259876.341600000858307 ], [ 353574.164399996399879, 259890.543299999088049 ], [ 353578.282300002872944, 259880.444499999284744 ], [ 353580.731799997389317, 259876.875999998301268 ], [ 353587.358499996364117, 259856.243099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003026500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97975054, "LATITUDE": 18.36863773, "OBJECTID_1": 216, "PARCEL_NO_": "101003026500", "Tax_Legal_": "2E-50A-18 CARET BAY LT.NORTHSIDE QTR.", "Name": "ROTH, RITA", "Address": "BOX 5063", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48100, "Improved_V": 196200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.97681474800001, "SHAPE_Area": 1210.0924008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353639.828199997544289, 259849.706399999558926 ], [ 353604.460100002586842, 259836.540199998766184 ], [ 353601.998000003397465, 259841.586300000548363 ], [ 353594.556000001728535, 259863.268100000917912 ], [ 353593.724500000476837, 259866.216600000858307 ], [ 353628.280900001525879, 259880.009399998933077 ], [ 353639.828199997544289, 259849.706399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97531281000001, "LATITUDE": 18.36854426, "OBJECTID_1": 292, "PARCEL_NO_": "101003035600", "Tax_Legal_": "CARET BAY 32B LITTLE NORTHSIDE QTR", "Name": "NARODNY, IVAN R.,DOROTHY S.,ELISABETH M. & SONYA E.", "Address": "4504 Avalon Forest Ln", "City": "Charlotte", "State": "North Carolina", "Zip": 28269, "Country": "United States", "Land_Value": 152400, "Improved_V": 79800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.941466558, "SHAPE_Area": 3343.5505281199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354029.383199997246265, 259840.440200001001358 ], [ 354082.330099999904633, 259872.537599999457598 ], [ 354130.635099999606609, 259881.587799999862909 ], [ 354139.711300000548363, 259857.386300001293421 ], [ 354119.614699997007847, 259850.044700000435114 ], [ 354099.534199997782707, 259840.803300000727177 ], [ 354075.459899999201298, 259827.0962999984622 ], [ 354056.219899997115135, 259813.850999999791384 ], [ 354052.119999997317791, 259821.839000001549721 ], [ 354047.235399998724461, 259827.287399999797344 ], [ 354029.383199997246265, 259840.440200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003010100", "MAP": null, "PARCEL_NAM": "11-38", "ACRE": null, "LONGITUDE": -64.98222026000001, "LATITUDE": 18.36842042, "OBJECTID_1": 103, "PARCEL_NO_": "101003010100", "Tax_Legal_": "SORGENFRI ESTATE 11-38 LITTLE NORTHSIDE", "Name": "DE LEON, JULITA", "Address": "PO Box 953", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 110200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.11178737399999, "SHAPE_Area": 2336.5205667700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353337.887199997901917, 259797.206000000238419 ], [ 353341.316299997270107, 259867.950399998575449 ], [ 353369.540899999439716, 259867.759199999272823 ], [ 353374.389499999582767, 259866.532400000840425 ], [ 353369.340599998831749, 259796.619100000709295 ], [ 353354.843099996447563, 259794.600600000470877 ], [ 353345.971900001168251, 259794.739100001752377 ], [ 353337.887199997901917, 259797.206000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015000", "MAP": null, "PARCEL_NAM": "11-37", "ACRE": null, "LONGITUDE": -64.9819272, "LATITUDE": 18.36840364, "OBJECTID_1": 146, "PARCEL_NO_": "101003015000", "Tax_Legal_": "SORGENFRI/EASTERN PORTION S S QTR", "Name": "MILLIN, AGNES & H. & KILPATRICK, A & G", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6079400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.60214340300001, "SHAPE_Area": 1964.61840463 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353369.340599998831749, 259796.619100000709295 ], [ 353374.389499999582767, 259866.532400000840425 ], [ 353403.485100001096725, 259858.7489 ], [ 353401.558899998664856, 259800.893500000238419 ], [ 353369.340599998831749, 259796.619100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035200", "MAP": "D9-3472-T86", "PARCEL_NAM": "28-B", "ACRE": ".835", "LONGITUDE": -64.97429836000001, "LATITUDE": 18.36837449, "OBJECTID_1": 288, "PARCEL_NO_": "101003035200", "Tax_Legal_": "CARET BAY 28B LT. NORTHSIDE", "Name": "RICCIARDI, EDWARD", "Address": "7 State St", "City": "Marblehead", "State": "Massachusetts", "Zip": 1945, "Country": "United States", "Land_Value": 131000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.33727754399999, "SHAPE_Area": 2804.6747302 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354226.436300002038479, 259805.322700001299381 ], [ 354180.512500002980232, 259800.725000001490116 ], [ 354165.594300001859665, 259848.098900001496077 ], [ 354152.6537000015378, 259852.637099999934435 ], [ 354201.6841000020504, 259871.192400000989437 ], [ 354214.901600003242493, 259834.14809999987483 ], [ 354226.436300002038479, 259805.322700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003026100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97930781, "LATITUDE": 18.36846246, "OBJECTID_1": 212, "PARCEL_NO_": "101003026100", "Tax_Legal_": "2E-50A-12 CARET BAY #8 LITTLE NORTHSIDE QTR.", "Name": "LEONARD, JOHN P. & MEREDITH A. WALLING", "Address": "100 Ryerson Ave", "City": "Newton", "State": "New Jersey", "Zip": 7860, "Country": "United States", "Land_Value": 79400, "Improved_V": 298800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.281803043, "SHAPE_Area": 1425.4007886899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353686.78490000218153, 259827.714800000190735 ], [ 353652.22860000282526, 259813.921999998390675 ], [ 353639.828199997544289, 259849.706399999558926 ], [ 353676.79450000077486, 259864.574400000274181 ], [ 353679.351899996399879, 259848.3412000015378 ], [ 353686.78490000218153, 259827.714800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003010300", "MAP": null, "PARCEL_NAM": "11-36", "ACRE": null, "LONGITUDE": -64.98168669, "LATITUDE": 18.36835724, "OBJECTID_1": 104, "PARCEL_NO_": "101003010300", "Tax_Legal_": "SORGENFRI ESTATE 11-36 SOUTHSIDE QUARTER", "Name": "GOMEZ, JUDY", "Address": "47A CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.45432209800001, "SHAPE_Area": 985.24627581200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353401.558899998664856, 259800.893500000238419 ], [ 353403.485100001096725, 259858.7489 ], [ 353406.717600002884865, 259857.931000001728535 ], [ 353424.681199997663498, 259831.691300000995398 ], [ 353424.110500000417233, 259804.033399999141693 ], [ 353401.558899998664856, 259800.893500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003026400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98013243, "LATITUDE": 18.36841341, "OBJECTID_1": 215, "PARCEL_NO_": "101003026400", "Tax_Legal_": "2E-50A-17 CARET BAY LITTLE NORTHSIDE QUARTER", "Name": "SAMUEL, VICTOR & ME-OLGA", "Address": "PO Box 302482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66200, "Improved_V": 309400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.746866434, "SHAPE_Area": 1268.80881802 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353598.927400000393391, 259823.407200001180172 ], [ 353565.987300001084805, 259809.205400001257658 ], [ 353553.606700003147125, 259842.667899999767542 ], [ 353587.358499996364117, 259856.243099998682737 ], [ 353596.45269999653101, 259829.930799998342991 ], [ 353598.927400000393391, 259823.407200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97963959000001, "LATITUDE": 18.36833952, "OBJECTID_1": 213, "PARCEL_NO_": "101003026200", "Tax_Legal_": "CARET BAY 2E-50A-16 LT. NORTHSIDE", "Name": "BOYD, CLIFTON & SHARON", "Address": "GERS COMPLEX-3rd FLOOR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72100, "Improved_V": 132900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.296453517, "SHAPE_Area": 1429.5714924500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353652.22860000282526, 259813.921999998390675 ], [ 353617.670400001108646, 259800.340300001204014 ], [ 353615.201099999248981, 259806.230700001120567 ], [ 353607.755500003695488, 259828.334600001573563 ], [ 353604.460100002586842, 259836.540199998766184 ], [ 353639.828199997544289, 259849.706399999558926 ], [ 353652.22860000282526, 259813.921999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035100", "MAP": "D9-3472-T86", "PARCEL_NAM": "28-A", "ACRE": ".357", "LONGITUDE": -64.97459159, "LATITUDE": 18.36830868, "OBJECTID_1": 287, "PARCEL_NO_": "101003035100", "Tax_Legal_": "CARET BAY 25A-1,25A-2-A,26A-2,26-B REM & 28A", "Name": "NO MORNING PERSON ENTERPRISES LLC", "Address": "1307 Strawbridge Ct", "City": "Naperville", "State": "Illinois", "Zip": 60565, "Country": "United States", "Land_Value": 149500, "Improved_V": 212100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.10648104500001, "SHAPE_Area": 1042.02064174 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354153.64019999653101, 259810.696699999272823 ], [ 354145.566399998962879, 259849.942200001329184 ], [ 354152.6537000015378, 259852.637099999934435 ], [ 354165.594300001859665, 259848.098900001496077 ], [ 354180.512500002980232, 259800.725000001490116 ], [ 354170.843900002539158, 259799.801500000059605 ], [ 354161.925899997353554, 259805.427999999374151 ], [ 354153.64019999653101, 259810.696699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97621002, "LATITUDE": 18.36836565, "OBJECTID_1": 252, "PARCEL_NO_": "101003031200", "Tax_Legal_": "29 CARET BAY LITTLE NORTHSIDE QTR", "Name": "HURST, BARRY & CAROL", "Address": "24125 Hill Ave", "City": "Warren", "State": "Michigan", "Zip": 48091, "Country": "United States", "Land_Value": 155700, "Improved_V": 162200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.245531476, "SHAPE_Area": 2143.5908161699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354030.290200002491474, 259828.626400001347065 ], [ 354041.652300000190735, 259820.064599998295307 ], [ 354046.547700002789497, 259813.349599998444319 ], [ 354049.013400003314018, 259807.881400000303984 ], [ 354047.435000002384186, 259803.857700001448393 ], [ 354044.209700003266335, 259803.831300001591444 ], [ 354032.059299997985363, 259810.275699999183416 ], [ 354015.880900003015995, 259816.265000000596046 ], [ 354001.33669999986887, 259819.734600000083447 ], [ 353976.310400001704693, 259823.118400000035763 ], [ 353958.524800002574921, 259828.461199998855591 ], [ 353947.189699999988079, 259833.856899999082088 ], [ 353942.332000002264977, 259836.139199998229742 ], [ 353934.22749999910593, 259840.927999999374151 ], [ 353933.381700001657009, 259845.565099999308586 ], [ 353935.771799996495247, 259848.962200000882149 ], [ 353938.988099999725819, 259850.043999999761581 ], [ 353956.734200000762939, 259849.344799999147654 ], [ 353975.302699998021126, 259846.752599999308586 ], [ 354013.2820999994874, 259837.353100001811981 ], [ 354019.755999997258186, 259834.661899998784065 ], [ 354030.290200002491474, 259828.626400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035100", "MAP": null, "PARCEL_NAM": "26-B", "ACRE": null, "LONGITUDE": -64.974934, "LATITUDE": 18.36823558, "OBJECTID_1": 287, "PARCEL_NO_": "101003035100", "Tax_Legal_": "CARET BAY 25A-1,25A-2-A,26A-2,26-B REM & 28A", "Name": "NO MORNING PERSON ENTERPRISES LLC", "Address": "1307 Strawbridge Ct", "City": "Naperville", "State": "Illinois", "Zip": 60565, "Country": "United States", "Land_Value": 149500, "Improved_V": 212100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.673736709, "SHAPE_Area": 2423.38819719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354126.691699996590614, 259782.890099998563528 ], [ 354123.49549999833107, 259789.270399998873472 ], [ 354119.209299996495247, 259784.50789999961853 ], [ 354110.319200001657009, 259798.954199999570847 ], [ 354103.078199997544289, 259802.948600001633167 ], [ 354098.983199998736382, 259810.823499999940395 ], [ 354092.397799998521805, 259826.601599998772144 ], [ 354119.699199996888638, 259840.1239 ], [ 354140.596799999475479, 259848.105399999767542 ], [ 354143.008500002324581, 259848.9695999994874 ], [ 354145.566399998962879, 259849.942200001329184 ], [ 354153.64019999653101, 259810.696699999272823 ], [ 354126.691699996590614, 259782.890099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003010400", "MAP": null, "PARCEL_NAM": "11-35", "ACRE": null, "LONGITUDE": -64.98134495, "LATITUDE": 18.36831107, "OBJECTID_1": 105, "PARCEL_NO_": "101003010400", "Tax_Legal_": "SORGENFRI ESTATE 11-35 SOUTHSIDE QUARTER", "Name": "TURBE LEERDAM, ANGELI", "Address": "PO Box 9742", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.86452894199999, "SHAPE_Area": 1304.1322555300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353424.681199997663498, 259831.691300000995398 ], [ 353453.652699999511242, 259838.47239999845624 ], [ 353471.528300002217293, 259822.575599998235703 ], [ 353492.521200001239777, 259819.369899999350309 ], [ 353482.069700002670288, 259815.695700000971556 ], [ 353446.663800001144409, 259806.962200000882149 ], [ 353424.110500000417233, 259804.033399999141693 ], [ 353424.681199997663498, 259831.691300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98581596, "LATITUDE": 18.36826001, "OBJECTID_1": 30, "PARCEL_NO_": "100904010200", "Tax_Legal_": "SORGENFRI 11-1 S S QTR", "Name": "STEPHEN, OREN A. & RIVAS, RONALD", "Address": "PO BOX 4742", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83200, "Improved_V": 226000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.48856759799997, "SHAPE_Area": 2806.6345360700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353018.308700002729893, 259827.309900000691414 ], [ 353017.068300001323223, 259783.603399999439716 ], [ 353007.347599998116493, 259788.801199998706579 ], [ 352992.7871999964118, 259794.170400001108646 ], [ 352968.545699998736382, 259800.093699999153614 ], [ 352945.137500002980232, 259802.857500001788139 ], [ 352903.201999999582767, 259803.358600001782179 ], [ 352906.396700002253056, 259806.973400000482798 ], [ 352910.406700000166893, 259809.539299998432398 ], [ 352922.45099999755621, 259815.548500001430511 ], [ 352940.141400001943111, 259821.392799999564886 ], [ 352961.873999997973442, 259826.003600001335144 ], [ 352988.451800003647804, 259829.809799998998642 ], [ 353000.548299998044968, 259829.697700001299381 ], [ 353003.777099996805191, 259829.301899999380112 ], [ 353018.308700002729893, 259827.309900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98522184, "LATITUDE": 18.3680987, "OBJECTID_1": 31, "PARCEL_NO_": "100904010300", "Tax_Legal_": "SORGENFRI 11-2 S S QTR", "Name": "SEMPER, AUCKLAND & ELDRA", "Address": "PO Box 306153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 121900, "Improved_V": 187700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.19632252, "SHAPE_Area": 1972.53203949 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353058.829300001263618, 259803.576900001615286 ], [ 353060.047399997711182, 259755.246399998664856 ], [ 353050.305200003087521, 259762.977200001478195 ], [ 353040.570100001990795, 259769.863600000739098 ], [ 353035.705200001597404, 259772.990200001746416 ], [ 353017.068300001323223, 259783.603399999439716 ], [ 353018.308700002729893, 259827.309900000691414 ], [ 353029.627700001001358, 259823.813999999314547 ], [ 353038.538500003516674, 259819.031700000166893 ], [ 353040.969999998807907, 259817.574000000953674 ], [ 353050.703299999237061, 259810.898699998855591 ], [ 353058.829300001263618, 259803.576900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402010300", "MAP": "A3-90-T55", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00494806, "LATITUDE": 18.36552195, "OBJECTID_1": 1414, "PARCEL_NO_": "102402010300", "Tax_Legal_": "HOPE 5 WEST END QTR", "Name": "ABRAHAM, SYLVIA & OTHERS", "Address": "11371 SW 223 St", "City": "MIAMI", "State": "Florida", "Zip": 33170, "Country": "United States", "Land_Value": 1036000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2280.5806544900001, "SHAPE_Area": 123419.678933 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351109.133799999952316, 259602.068300001323223 ], [ 351029.454499997198582, 259111.045800000429153 ], [ 350998.031700000166893, 259108.044399999082088 ], [ 350970.615199998021126, 259108.031100001186132 ], [ 350942.361900001764297, 259111.599599998444319 ], [ 350918.120399996638298, 259117.522900000214577 ], [ 350914.074500001966953, 259119.17850000038743 ], [ 350945.286499999463558, 259336.227099999785423 ], [ 350877.401600003242493, 259353.825500000268221 ], [ 350883.715499997138977, 259369.920299999415874 ], [ 350885.92400000244379, 259394.636300001293421 ], [ 350883.318099997937679, 259416.56870000064373 ], [ 350878.32379999756813, 259434.89299999922514 ], [ 350876.617600001394749, 259445.855900000780821 ], [ 350875.689000003039837, 259460.2027000002563 ], [ 350876.891699999570847, 259508.34180000051856 ], [ 350879.724899999797344, 259554.383400000631809 ], [ 350877.154899999499321, 259572.094200000166893 ], [ 350872.250500001013279, 259579.864599999040365 ], [ 350866.57940000295639, 259582.984499998390675 ], [ 350859.272200003266335, 259588.835400000214577 ], [ 350841.24379999935627, 259622.673900000751019 ], [ 350829.870899997651577, 259632.502199999988079 ], [ 350819.322300001978874, 259640.226300001144409 ], [ 350804.659500002861023, 259657.627099998295307 ], [ 350797.37389999628067, 259660.944899998605251 ], [ 350774.768399998545647, 259664.13740000128746 ], [ 350759.363899998366833, 259673.932700000703335 ], [ 350755.199299998581409, 259689.519600000232458 ], [ 350751.112000003457069, 259696.030000001192093 ], [ 350746.223800003528595, 259701.900600001215935 ], [ 350742.17059999704361, 259704.400600001215935 ], [ 350735.669799998402596, 259710.258000001311302 ], [ 350733.160899996757507, 259720.792100001126528 ], [ 350730.709600001573563, 259724.571800000965595 ], [ 350731.377499997615814, 259740.831399999558926 ], [ 350729.725299999117851, 259745.462000001221895 ], [ 350724.831699997186661, 259751.965799998492002 ], [ 350722.35700000077486, 259758.489500001072884 ], [ 350723.937200002372265, 259762.302099999040365 ], [ 350734.359999999403954, 259769.353500001132488 ], [ 350739.158299997448921, 259774.036800000816584 ], [ 350746.371899999678135, 259779.162099998444319 ], [ 350758.423500001430511, 259784.326999999582767 ], [ 350769.650700002908707, 259791.596000000834465 ], [ 350772.042700000107288, 259794.782000001519918 ], [ 350776.885899998247623, 259794.188400000333786 ], [ 350783.408399999141693, 259785.798000000417233 ], [ 350790.704700000584126, 259781.213700000196695 ], [ 350796.476599998772144, 259766.273299999535084 ], [ 350800.542300000786781, 259762.295800000429153 ], [ 350804.624200001358986, 259756.418600000441074 ], [ 350805.50789999961853, 259747.348799999803305 ], [ 350802.426500000059605, 259730.436099998652935 ], [ 350803.331699997186661, 259718.833299998193979 ], [ 350806.612700000405312, 259712.316300000995398 ], [ 350805.856700003147125, 259706.399500001221895 ], [ 350806.684600003063679, 259703.873100001364946 ], [ 350809.90990000218153, 259703.899500001221895 ], [ 350813.153099998831749, 259701.815099999308586 ], [ 350815.598999999463558, 259698.668699998408556 ], [ 350816.362199999392033, 259703.741200000047684 ], [ 350815.527099996805191, 259707.111900001764297 ], [ 350817.935199998319149, 259708.398200001567602 ], [ 350825.204599998891354, 259706.980000000447035 ], [ 350830.832599997520447, 259708.925900001078844 ], [ 350834.034500002861023, 259711.696299999952316 ], [ 350837.983300000429153, 259721.438999999314547 ], [ 350838.733900003135204, 259727.989000000059605 ], [ 350836.916299998760223, 259752.038800001144409 ], [ 350834.387699998915195, 259764.894799999892712 ], [ 350834.148500002920628, 259792.968299999833107 ], [ 350835.723399996757507, 259797.414099998772144 ], [ 350840.51630000025034, 259802.730700001120567 ], [ 350842.929799996316433, 259803.383799999952316 ], [ 350847.769500002264977, 259803.21229999884963 ], [ 350856.660499997437, 259800.751899998635054 ], [ 350859.9037000015378, 259798.667500000447035 ], [ 350861.503799997270107, 259800.158300001174212 ], [ 350862.283100001513958, 259803.3310999982059 ], [ 350861.444399997591972, 259807.1239 ], [ 350863.039099998772144, 259809.247900001704693 ], [ 350871.915700003504753, 259808.476100001484156 ], [ 350875.173299998044968, 259804.703099999576807 ], [ 350876.90820000320673, 259790.363000001758337 ], [ 350892.390000000596046, 259771.491200000047684 ], [ 350899.018500000238419, 259750.647199999541044 ], [ 350903.928300000727177, 259742.243700001388788 ], [ 350905.596699997782707, 259735.71339999884367 ], [ 350907.882600001990795, 259751.353100001811981 ], [ 350911.820600003004074, 259762.362199999392033 ], [ 350909.273999996483326, 259777.328999999910593 ], [ 350914.079499997198582, 259781.168000001460314 ], [ 350922.115699999034405, 259784.400100000202656 ], [ 350929.372500002384186, 259784.459499999880791 ], [ 350933.420199997723103, 259782.592799998819828 ], [ 350936.695799998939037, 259776.708999998867512 ], [ 350935.983000002801418, 259765.726300001144409 ], [ 350934.409999996423721, 259761.069400001317263 ], [ 350934.498099997639656, 259750.726500000804663 ], [ 350941.027699999511242, 259741.491799999028444 ], [ 350948.322300001978874, 259737.118599999696016 ], [ 350955.597099997103214, 259735.067200001329184 ], [ 350962.832299999892712, 259737.659499999135733 ], [ 350961.959499999880791, 259745.462799999862909 ], [ 350964.367600001394749, 259746.749099999666214 ], [ 350966.786499999463558, 259746.768899999558926 ], [ 350970.044200003147125, 259742.995900001376867 ], [ 350976.512599997222424, 259740.937899999320507 ], [ 350978.159400001168251, 259736.940600000321865 ], [ 350974.2483000010252, 259722.765299998223782 ], [ 350975.104999996721745, 259716.861699998378754 ], [ 350978.369800001382828, 259712.24439999833703 ], [ 350993.705899998545647, 259710.470100000500679 ], [ 351002.715599998831749, 259694.078499998897314 ], [ 351004.394799999892712, 259686.281800001859665 ], [ 351004.499099999666214, 259674.039200000464916 ], [ 351012.585600003600121, 259671.361200001090765 ], [ 351014.208999998867512, 259670.107900001108646 ], [ 351022.290100000798702, 259668.063099998980761 ], [ 351030.435999996960163, 259658.41950000077486 ], [ 351030.464699998497963, 259655.042199999094009 ], [ 351036.247400000691414, 259638.835299998521805 ], [ 351041.123000003397465, 259634.442299999296665 ], [ 351051.601499997079372, 259634.950199998915195 ], [ 351063.712300002574921, 259633.149500001221895 ], [ 351069.329599998891354, 259636.361900001764297 ], [ 351070.108900003135204, 259639.534699998795986 ], [ 351067.639600001275539, 259645.42509999871254 ], [ 351067.607199996709824, 259649.224500000476837 ], [ 351071.57769999653101, 259656.434200000017881 ], [ 351080.430900000035763, 259658.406500000506639 ], [ 351090.913000002503395, 259658.492300000041723 ], [ 351100.601300001144409, 259657.093899998813868 ], [ 351108.659100003540516, 259657.793099999427795 ], [ 351114.358999997377396, 259651.295899998396635 ], [ 351114.409299999475479, 259645.38569999858737 ], [ 351110.455099999904633, 259636.276299998164177 ], [ 351108.898199997842312, 259629.7195999994874 ], [ 351100.159999996423721, 259614.238299999386072 ], [ 351100.17620000243187, 259612.338599998503923 ], [ 351097.017499998211861, 259604.502300001680851 ], [ 351098.658900000154972, 259601.138199999928474 ], [ 351101.9003000035882, 259599.264899998903275 ], [ 351105.926500000059605, 259599.931099999696016 ], [ 351109.133799999952316, 259602.068300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003026000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9792059, "LATITUDE": 18.36814823, "OBJECTID_1": 211, "PARCEL_NO_": "101003026000", "Tax_Legal_": "CARET BAY 2E-50A-10 8 LITTLE NORTHSIDE Q", "Name": "THOMAS, ELMO & LINDA", "Address": "PO Box 11514", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107600, "Improved_V": 262400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.58294992399999, "SHAPE_Area": 1264.5532948 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353664.618199996650219, 259779.404100000858307 ], [ 353652.22860000282526, 259813.921999998390675 ], [ 353686.78490000218153, 259827.714800000190735 ], [ 353693.39190000295639, 259809.403799999505281 ], [ 353693.476400002837181, 259799.4831000007689 ], [ 353692.688000001013279, 259797.365699999034405 ], [ 353689.504100002348423, 259792.484499998390675 ], [ 353685.499600000679493, 259789.285300001502037 ], [ 353664.618199996650219, 259779.404100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003026300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98001945, "LATITUDE": 18.36812211, "OBJECTID_1": 214, "PARCEL_NO_": "101003026300", "Tax_Legal_": "CARET BAY 2E-50A-15 LITTLE NORTHSIDE", "Name": "HODGE, WAYNE & JUDITH (life estate)", "Address": "PO Box 8837", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47200, "Improved_V": 231900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.897011757, "SHAPE_Area": 1203.36539055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353611.291799999773502, 259791.844300001859665 ], [ 353577.538199998438358, 259778.48030000180006 ], [ 353565.987300001084805, 259809.205400001257658 ], [ 353598.927400000393391, 259823.407200001180172 ], [ 353611.291799999773502, 259791.844300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035100", "MAP": "D9-3895-T87", "PARCEL_NAM": "25-A-1", "ACRE": null, "LONGITUDE": -64.97529318, "LATITUDE": 18.36823312, "OBJECTID_1": 287, "PARCEL_NO_": "101003035100", "Tax_Legal_": "CARET BAY 25A-1,25A-2-A,26A-2,26-B REM & 28A", "Name": "NO MORNING PERSON ENTERPRISES LLC", "Address": "1307 Strawbridge Ct", "City": "Naperville", "State": "Illinois", "Zip": 60565, "Country": "United States", "Land_Value": 149500, "Improved_V": 212100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.7873318101, "SHAPE_Area": 201.09990546399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354098.983199998736382, 259810.823499999940395 ], [ 354072.3496999964118, 259813.5608000010252 ], [ 354092.397799998521805, 259826.601599998772144 ], [ 354098.983199998736382, 259810.823499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904010500", "MAP": "B9-260-T68", "PARCEL_NAM": "11-30", "ACRE": "0.55", "LONGITUDE": -64.98432509, "LATITUDE": 18.36788632, "OBJECTID_1": 33, "PARCEL_NO_": "100904010500", "Tax_Legal_": "SORGENFRI 11-30 SOUTHSIDE QTR.", "Name": "MARTIN, ILKA", "Address": "10207 Sunnylake Pl", "City": "Cockeysville", "State": "Maryland", "Zip": 21030, "Country": "United States", "Land_Value": 90400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.70042926100001, "SHAPE_Area": 2565.1300324 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353168.67620000243187, 259775.296599999070168 ], [ 353166.709100000560284, 259729.310499999672174 ], [ 353147.237099997699261, 259743.294399999082088 ], [ 353122.084899999201298, 259761.453699998557568 ], [ 353069.261100001633167, 259809.572900000959635 ], [ 353116.170999996364117, 259793.069299999624491 ], [ 353139.611599996685982, 259786.50620000064373 ], [ 353149.319799996912479, 259782.785999998450279 ], [ 353168.67620000243187, 259775.296599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97951744, "LATITUDE": 18.36802923, "OBJECTID_1": 210, "PARCEL_NO_": "101003025900", "Tax_Legal_": "CARET BAY 2E-50A-14 LT.NORTHSIDE QTR.", "Name": "CLOUDEN (TRUSTEE), PERCIVAL E.", "Address": "PO Box 8477", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56500, "Improved_V": 151000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.80066451600001, "SHAPE_Area": 1290.0884896800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353642.919600002467632, 259770.782699998468161 ], [ 353634.847499996423721, 259771.772100001573563 ], [ 353632.419600002467632, 259772.807700000703335 ], [ 353626.732299998402596, 259777.827399998903275 ], [ 353624.268399998545647, 259783.084600001573563 ], [ 353620.972999997437, 259791.290300000458956 ], [ 353619.326200000941753, 259795.287599999457598 ], [ 353617.670400001108646, 259800.340300001204014 ], [ 353652.22860000282526, 259813.921999998390675 ], [ 353664.618199996650219, 259779.404100000858307 ], [ 353642.919600002467632, 259770.782699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003025300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97870855, "LATITUDE": 18.36803841, "OBJECTID_1": 204, "PARCEL_NO_": "101003025300", "Tax_Legal_": "CARET BAY 2E-50A-8 LT. NORTHSIDE", "Name": "FARRINGTON, JOHN & DIANA", "Address": "PO Box 307924", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44700, "Improved_V": 135800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.96902140200001, "SHAPE_Area": 1157.83708695 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353705.563900001347065, 259800.426399998366833 ], [ 353736.896799996495247, 259813.981699999421835 ], [ 353738.532799996435642, 259811.250900000333786 ], [ 353743.446199998259544, 259802.425200000405312 ], [ 353748.347000002861023, 259795.076999999582767 ], [ 353752.423500001430511, 259789.833000000566244 ], [ 353716.308499999344349, 259769.694600000977516 ], [ 353713.855400003492832, 259773.685300000011921 ], [ 353712.212200000882149, 259777.260499998927116 ], [ 353705.563900001347065, 259800.426399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031500", "MAP": "F9-3873-T80", "PARCEL_NAM": "23", "ACRE": null, "LONGITUDE": -64.9762299, "LATITUDE": 18.36799532, "OBJECTID_1": 255, "PARCEL_NO_": "101003031500", "Tax_Legal_": "CARET BAY 23 LITTLE NORTHSIDE QTR", "Name": "PANCHAM, C. & D", "Address": "PO Box 1346", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 182800, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.999067508, "SHAPE_Area": 3501.76330517 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353986.466300003230572, 259766.839499998837709 ], [ 353984.794299997389317, 259773.791900001466274 ], [ 353934.833499997854233, 259769.794399999082088 ], [ 353931.554300002753735, 259776.100400000810623 ], [ 353968.304799996316433, 259816.297800000756979 ], [ 353973.151699997484684, 259815.282000001519918 ], [ 353998.995099999010563, 259810.638399999588728 ], [ 354015.1537000015378, 259806.971000000834465 ], [ 354036.193300001323223, 259798.277199998497963 ], [ 354044.299599997699261, 259793.277399998158216 ], [ 354045.931999996304512, 259790.968699999153614 ], [ 354046.761699996888638, 259788.231300000101328 ], [ 354046.783299997448921, 259785.698300000280142 ], [ 354045.998599998652935, 259783.1587999984622 ], [ 354044.407499998807907, 259780.61259999871254 ], [ 354041.200199998915195, 259778.475400000810623 ], [ 353992.886200003325939, 259770.480599999427795 ], [ 353986.466300003230572, 259766.839499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98479156000001, "LATITUDE": 18.36777499, "OBJECTID_1": 32, "PARCEL_NO_": "100904010400", "Tax_Legal_": "SORGENFRI 11-3 S S QTR", "Name": "GEORGE, JOSE L.", "Address": "PO Box 7698", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 111700, "Improved_V": 221400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.218700563, "SHAPE_Area": 2283.5861494000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353110.006399996578693, 259759.454999998211861 ], [ 353108.767800003290176, 259715.537399999797344 ], [ 353097.421899996697903, 259722.199499998241663 ], [ 353086.869699999690056, 259730.345800001174212 ], [ 353086.821199998259544, 259736.045000001788139 ], [ 353084.375299997627735, 259739.191300000995398 ], [ 353064.107799999415874, 259751.902199998497963 ], [ 353060.047399997711182, 259755.246399998664856 ], [ 353058.829300001263618, 259803.576900001615286 ], [ 353078.331900000572205, 259786.004599999636412 ], [ 353110.006399996578693, 259759.454999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031800", "MAP": "D9-5550-T93", "PARCEL_NAM": "25-A-2-REM", "ACRE": ".26", "LONGITUDE": -64.97547176, "LATITUDE": 18.36794138, "OBJECTID_1": 258, "PARCEL_NO_": "101003031800", "Tax_Legal_": "CARET BAY REM.25,-A-2,26-A-1,-B-1,26-C LITTLE NORTHSIDE", "Name": "HARTSHORN, SCOTT L. & CLAUDIA (Trustees)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 242300, "Improved_V": 265800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.4200617, "SHAPE_Area": 1325.95031337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354107.317800000309944, 259794.191199999302626 ], [ 354083.64919999986887, 259796.890399999916553 ], [ 354057.504399999976158, 259747.0636 ], [ 354040.474799998104572, 259768.970300000160933 ], [ 354046.10639999806881, 259770.493999999016523 ], [ 354050.920900002121925, 259773.277699999511242 ], [ 354055.721100002527237, 259777.749899998307228 ], [ 354058.904899999499321, 259782.631099998950958 ], [ 354060.488799996674061, 259786.021600000560284 ], [ 354061.273500002920628, 259788.561099998652935 ], [ 354062.031300000846386, 259794.266800001263618 ], [ 354061.145900003612041, 259803.547699999064207 ], [ 354061.927000001072884, 259806.509399998933077 ], [ 354064.331600002944469, 259808.2179000005126 ], [ 354068.66780000180006, 259811.107299998402596 ], [ 354103.078199997544289, 259802.948600001633167 ], [ 354103.902000002563, 259801.364500001072884 ], [ 354107.317800000309944, 259794.191199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98146349, "LATITUDE": 18.36794591, "OBJECTID_1": 111, "PARCEL_NO_": "101003011000", "Tax_Legal_": "SORGENFRI EST. 11-33 S.S. QTR", "Name": "HARRIGAN, MELANIE", "Address": "PO Box 307285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.60084395800001, "SHAPE_Area": 1417.91102699 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353457.528899997472763, 259762.088199999183416 ], [ 353413.959299996495247, 259765.109099999070168 ], [ 353412.915600001811981, 259792.964899998158216 ], [ 353455.594400003552437, 259799.8581000007689 ], [ 353457.528899997472763, 259762.088199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003034200", "MAP": null, "PARCEL_NAM": "26-A", "ACRE": null, "LONGITUDE": -64.97464929, "LATITUDE": 18.36778219, "OBJECTID_1": 278, "PARCEL_NO_": "101003034200", "Tax_Legal_": "25-B,26-A-REM & 26-B-2 CARET BAY(EASTERN SECTION) NO.8 LITTLE NORTHSIDE QTR", "Name": "KREINER FAMILY TRUST", "Address": "PO Box 302818", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 122300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.513097445, "SHAPE_Area": 3185.0299900099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354130.443199999630451, 259743.676699999719858 ], [ 354137.624300003051758, 259759.425400000065565 ], [ 354126.691699996590614, 259782.890099998563528 ], [ 354153.64019999653101, 259810.696699999272823 ], [ 354161.925899997353554, 259805.427999999374151 ], [ 354170.843900002539158, 259799.801500000059605 ], [ 354190.206900000572205, 259746.405900001525879 ], [ 354180.137800000607967, 259743.110599998384714 ], [ 354136.616200000047684, 259728.867300000041723 ], [ 354131.836300000548363, 259740.587099999189377 ], [ 354130.443199999630451, 259743.676699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98184587, "LATITUDE": 18.36786996, "OBJECTID_1": 110, "PARCEL_NO_": "101003010900", "Tax_Legal_": "SORGENFRI EST. 11-32 S.S. QTR", "Name": "JOSIAH, SAMUEL & JAMES, JO SAND", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41600, "Improved_V": 192600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.01945823099999, "SHAPE_Area": 1395.69985041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353413.959299996495247, 259765.109099999070168 ], [ 353414.873499996960163, 259752.4510000012815 ], [ 353377.781300000846386, 259752.358500000089407 ], [ 353375.872000001370907, 259787.173300001770258 ], [ 353412.915600001811981, 259792.964899998158216 ], [ 353413.959299996495247, 259765.109099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97991911, "LATITUDE": 18.36782053, "OBJECTID_1": 209, "PARCEL_NO_": "101003025800", "Tax_Legal_": "CARET BAY 2E-50A-13 LITTLE NORTHSIDE", "Name": "JOSEPH, SAMUEL", "Address": "PO Box 6818", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.955690645, "SHAPE_Area": 1308.12932391 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353577.538199998438358, 259778.48030000180006 ], [ 353611.291799999773502, 259791.844300001859665 ], [ 353612.121500000357628, 259789.106899999082088 ], [ 353618.715899996459484, 259772.273400001227856 ], [ 353619.572499997913837, 259766.369800001382828 ], [ 353618.787799999117851, 259763.830200001597404 ], [ 353617.995899997651577, 259762.135000001639128 ], [ 353604.401900000870228, 259748.724800001829863 ], [ 353592.402500003576279, 259737.438700001686811 ], [ 353577.538199998438358, 259778.48030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202041200", "MAP": "D9-8736-T013", "PARCEL_NAM": "11", "ACRE": ".10", "LONGITUDE": -64.95649589, "LATITUDE": 18.31361159, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.419234692700002, "SHAPE_Area": 464.083956274 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356126.820000000298023, 253774.101500000804663 ], [ 356125.891500003635883, 253770.787999998778105 ], [ 356118.639651987759862, 253771.811733041802654 ], [ 356111.346600003540516, 253772.481600001454353 ], [ 356111.336000002920628, 253772.481699999421835 ], [ 356112.291900001466274, 253775.671399999409914 ], [ 356120.916799999773502, 253804.450699999928474 ], [ 356134.645700000226498, 253802.029899999499321 ], [ 356126.820000000298023, 253774.101500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202041100", "MAP": "A9-508-T98", "PARCEL_NAM": "25", "ACRE": null, "LONGITUDE": -64.95440098, "LATITUDE": 18.31276745, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.642780518, "SHAPE_Area": 2124.95760961 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356366.771300002932549, 253720.125599998980761 ], [ 356387.161100000143051, 253693.0614 ], [ 356318.807899996638298, 253670.970400001853704 ], [ 356307.273199997842312, 253699.795899998396635 ], [ 356366.771300002932549, 253720.125599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202041200", "MAP": "A9-508-T98", "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.95426112, "LATITUDE": 18.31248801, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.88617110199999, "SHAPE_Area": 2717.3583542400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356318.807899996638298, 253670.970400001853704 ], [ 356387.161100000143051, 253693.0614 ], [ 356392.884400002658367, 253683.820099998265505 ], [ 356397.830099999904633, 253671.195000000298023 ], [ 356401.16330000013113, 253658.556699998676777 ], [ 356332.003799997270107, 253636.459100000560284 ], [ 356318.807899996638298, 253670.970400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202020500", "MAP": "D9-7786-T006", "PARCEL_NAM": "20", "ACRE": "1.32", "LONGITUDE": -64.95313237000001, "LATITUDE": 18.31125548, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.62507537300002, "SHAPE_Area": 5840.8361040899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356524.630800001323223, 253552.964999999850988 ], [ 356528.660599999129772, 253553.208999998867512 ], [ 356531.09570000320673, 253551.329100001603365 ], [ 356532.735299997031689, 253548.176100000739098 ], [ 356537.596600003540516, 253545.471700001507998 ], [ 356536.836999997496605, 253539.977099999785423 ], [ 356538.483800001442432, 253535.979800000786781 ], [ 356536.883799999952316, 253534.489000000059605 ], [ 356532.859399996697903, 253533.611699998378754 ], [ 356537.733199998736382, 253529.429699998348951 ], [ 356537.815999999642372, 253519.720100000500679 ], [ 356533.806000001728535, 253517.154100000858307 ], [ 356529.812200002372265, 253512.688499998301268 ], [ 356526.604900002479553, 253510.551300000399351 ], [ 356521.74549999833107, 253513.044700000435114 ], [ 356519.290600001811981, 253517.246399998664856 ], [ 356520.037500001490116, 253524.218600001186132 ], [ 356516.812299996614456, 253524.192200001329184 ], [ 356508.792300000786781, 253519.060400001704693 ], [ 356505.655199997127056, 253508.691100001335144 ], [ 356503.261399999260902, 253505.7162000015378 ], [ 356500.09910000115633, 253498.302000001072884 ], [ 356499.355700001120567, 253490.907699998468161 ], [ 356497.768299996852875, 253487.939399998635054 ], [ 356498.599799998104572, 253484.990899998694658 ], [ 356445.303999997675419, 253493.842799998819828 ], [ 356444.477899998426437, 253496.158100001513958 ], [ 356444.438400000333786, 253500.80180000141263 ], [ 356450.82769999653101, 253508.031300000846386 ], [ 356451.617899999022484, 253509.937600001692772 ], [ 356449.91889999806881, 253520.056200001388788 ], [ 356445.856799997389317, 253523.6114999987185 ], [ 356441.814400002360344, 253524.844999998807907 ], [ 356435.362099997699261, 253525.003299999982119 ], [ 356432.930600002408028, 253526.460999999195337 ], [ 356429.649599999189377, 253532.978100001811981 ], [ 356427.164099998772144, 253540.768199998885393 ], [ 356442.257500000298023, 253567.489500001072884 ], [ 356524.630800001323223, 253552.964999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202021110", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95319188000001, "LATITUDE": 18.31069052, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.20678207, "SHAPE_Area": 2189.8048247699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356498.599799998104572, 253484.990899998694658 ], [ 356499.436599999666214, 253481.409099999815226 ], [ 356494.62389999628067, 253478.41440000012517 ], [ 356492.251800000667572, 253472.906599998474121 ], [ 356492.282300002872944, 253469.318199999630451 ], [ 356499.578699998557568, 253464.733899999409914 ], [ 356502.024599999189377, 253461.587499998509884 ], [ 356502.845299996435642, 253459.905499998480082 ], [ 356502.874099999666214, 253456.528200000524521 ], [ 356510.211800001561642, 253447.089099999517202 ], [ 356510.251400001347065, 253442.445300001651049 ], [ 356452.949199996888638, 253448.309200000017881 ], [ 356448.662299998104572, 253478.249400001019239 ], [ 356445.303999997675419, 253493.842799998819828 ], [ 356498.599799998104572, 253484.990899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202020700", "MAP": null, "PARCEL_NAM": "Y", "ACRE": null, "LONGITUDE": -64.95433209, "LATITUDE": 18.3082552, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1826.21252559, "SHAPE_Area": 42211.600782499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356166.071699999272823, 253047.416600000113249 ], [ 356182.928800001740456, 253056.420499999076128 ], [ 356209.269100002944469, 253088.089000001549721 ], [ 356163.035999998450279, 253119.796799998730421 ], [ 356172.620099999010563, 253130.640999998897314 ], [ 356175.76799999922514, 253139.74379999935627 ], [ 356180.548299998044968, 253146.537900000810623 ], [ 356189.338600002229214, 253155.897999998182058 ], [ 356200.553300000727177, 253164.644600000232458 ], [ 356206.19030000269413, 253165.535100001841784 ], [ 356214.267800003290176, 253163.912500001490116 ], [ 356223.137199997901917, 253163.985100001096725 ], [ 356281.922499999403954, 253173.332100000232458 ], [ 356287.554099999368191, 253174.855900000780821 ], [ 356322.941899999976158, 253185.700199998915195 ], [ 356362.316399998962879, 253201.854499999433756 ], [ 356372.748099997639656, 253207.850499998778105 ], [ 356381.56360000371933, 253214.255399998277426 ], [ 356388.759300000965595, 253221.491500001400709 ], [ 356415.05290000140667, 253258.64809999987483 ], [ 356418.234999999403954, 253263.74040000140667 ], [ 356420.590999998152256, 253271.147900000214577 ], [ 356424.42119999974966, 253294.821699999272823 ], [ 356429.10080000013113, 253313.436299998313189 ], [ 356445.571199998259544, 253367.82209999859333 ], [ 356452.551100000739098, 253400.387699998915195 ], [ 356454.808200001716614, 253419.404599998146296 ], [ 356452.949199996888638, 253448.309200000017881 ], [ 356510.251400001347065, 253442.445300001651049 ], [ 356511.104400001466274, 253436.963899999856949 ], [ 356509.50620000064373, 253435.262099999934435 ], [ 356509.565499998629093, 253428.296500001102686 ], [ 356510.398800000548363, 253425.136900000274181 ], [ 356512.029399998486042, 253423.039299998432398 ], [ 356511.260899998247623, 253418.600000001490116 ], [ 356509.664399996399879, 253416.687100000679493 ], [ 356507.268899999558926, 253413.923300001770258 ], [ 356507.293999999761581, 253410.968199998140335 ], [ 356504.875100001692772, 253410.948399998247623 ], [ 356504.981200002133846, 253398.494699999690056 ], [ 356511.440700002014637, 253397.49210000038147 ], [ 356512.282999999821186, 253393.277199998497963 ], [ 356506.637000001966953, 253393.442099999636412 ], [ 356506.681900002062321, 253388.165100000798702 ], [ 356508.303599998354912, 253387.122900001704693 ], [ 356509.14580000191927, 253382.907900001853704 ], [ 356510.774599999189377, 253381.02140000090003 ], [ 356513.245700001716614, 253374.919900000095367 ], [ 356510.03490000218153, 253373.204900000244379 ], [ 356505.14299999922514, 253379.497600000351667 ], [ 356503.537600003182888, 253378.640099998563528 ], [ 356503.559199996292591, 253376.107200000435114 ], [ 356505.999700002372265, 253373.594000000506639 ], [ 356506.076999999582767, 253364.517700001597404 ], [ 356500.465199999511242, 253360.671999998390675 ], [ 356500.488600000739098, 253357.927999999374151 ], [ 356502.925499998033047, 253355.837000001221895 ], [ 356502.137199997901917, 253353.7195999994874 ], [ 356497.28490000218153, 253355.368700001388788 ], [ 356494.882200002670288, 253353.449200000613928 ], [ 356494.901900000870228, 253351.127300001680851 ], [ 356498.159599997103214, 253347.354299999773502 ], [ 356493.377400003373623, 253340.771200001239777 ], [ 356493.397200003266335, 253338.449400000274181 ], [ 356495.843099996447563, 253335.302999999374151 ], [ 356495.873700000345707, 253331.714600000530481 ], [ 356493.506899997591972, 253325.573600001633167 ], [ 356491.084399998188019, 253325.975900001823902 ], [ 356491.044799998402596, 253330.619699999690056 ], [ 356488.62950000166893, 253330.177700001746416 ], [ 356487.900499999523163, 253321.094700001180172 ], [ 356490.328400000929832, 253320.059099998325109 ], [ 356492.738300003111362, 253321.134300000965595 ], [ 356493.569799996912479, 253318.1858000010252 ], [ 356499.215800002217293, 253318.020899999886751 ], [ 356501.654500000178814, 253315.718800000846386 ], [ 356504.141800001263618, 253307.717599999159575 ], [ 356506.598499998450279, 253303.304800000041723 ], [ 356506.648800000548363, 253297.394600000232458 ], [ 356502.647900000214577, 253293.773200001567602 ], [ 356501.038800001144409, 253293.337900001555681 ], [ 356497.800999999046326, 253294.789000000804663 ], [ 356494.573899999260902, 253294.973700001835823 ], [ 356492.948700003325939, 253296.438099998980761 ], [ 356492.923600003123283, 253299.393199998885393 ], [ 356491.294699996709824, 253301.279699999839067 ], [ 356486.469499997794628, 253299.762499999254942 ], [ 356484.846000000834465, 253301.015799999237061 ], [ 356482.427100002765656, 253300.995999999344349 ], [ 356479.237800002098083, 253296.747999999672174 ], [ 356479.264799997210503, 253293.581900000572205 ], [ 356485.774599999189377, 253286.669100001454353 ], [ 356485.821400001645088, 253281.181000001728535 ], [ 356483.537299998104572, 253265.330299999564886 ], [ 356479.56870000064373, 253257.909499999135733 ], [ 356478.053199999034405, 253246.498100001364946 ], [ 356477.259400002658367, 253245.013900000602007 ], [ 356474.844099998474121, 253244.572000000625849 ], [ 356474.944799996912479, 253232.751600001007318 ], [ 356465.3733000010252, 253220.429800000041723 ], [ 356466.215599998831749, 253216.214800000190735 ], [ 356471.897600002586842, 253211.828400000929832 ], [ 356473.549800001084805, 253207.197799999266863 ], [ 356473.582099996507168, 253203.398400001227856 ], [ 356471.978500001132488, 253202.329799998551607 ], [ 356471.215300001204014, 253197.25730000063777 ], [ 356469.611699998378754, 253196.188700001686811 ], [ 356467.183799996972084, 253197.224300000816584 ], [ 356463.901000000536442, 253203.952399998903275 ], [ 356459.844200000166893, 253206.874600000679493 ], [ 356457.464900001883507, 253202.210999999195337 ], [ 356457.576300002634525, 253189.124099999666214 ], [ 356459.223099999129772, 253185.126800000667572 ], [ 356456.86710000038147, 253177.719300001859665 ], [ 356455.26349999755621, 253176.650699999183416 ], [ 356452.842799998819828, 253176.842000000178814 ], [ 356451.215800002217293, 253178.517400000244379 ], [ 356445.571599997580051, 253178.471200000494719 ], [ 356443.127499997615814, 253181.406500000506639 ], [ 356445.537399999797344, 253182.481699999421835 ], [ 356451.183399997651577, 253182.316799998283386 ], [ 356449.446699999272823, 253196.868099998682737 ], [ 356447.805299997329712, 253200.232099998742342 ], [ 356445.398900002241135, 253198.7347999997437 ], [ 356443.833099998533726, 253193.233500000089407 ], [ 356442.241999998688698, 253190.687399998307228 ], [ 356437.447300001978874, 253185.581900000572205 ], [ 356434.276000000536442, 253179.223099999129772 ], [ 356431.869699999690056, 253177.72580000013113 ], [ 356431.075900003314018, 253176.241599999368191 ], [ 356431.155000001192093, 253166.954199999570847 ], [ 356436.836999997496605, 253162.567699998617172 ], [ 356436.899899996817112, 253155.179900001734495 ], [ 356440.145000003278255, 253152.884500000625849 ], [ 356443.404399998486042, 253148.900400001555681 ], [ 356448.269199997186661, 253145.773800000548363 ], [ 356448.292599998414516, 253143.029800001531839 ], [ 356445.880900003015995, 253142.165600001811981 ], [ 356441.023199997842312, 253144.447900000959635 ], [ 356439.392599999904633, 253146.545499999076128 ], [ 356436.971900001168251, 253146.736800000071526 ], [ 356435.387999996542931, 253143.3462999984622 ], [ 356435.429399996995926, 253138.491500001400709 ], [ 356433.841899998486042, 253135.523200001567602 ], [ 356433.904899999499321, 253128.135499998927116 ], [ 356429.074199996888638, 253127.251499999314547 ], [ 356427.439999997615814, 253129.771299999207258 ], [ 356424.205700002610683, 253130.800299998372793 ], [ 356422.603900000452995, 253129.520599998533726 ], [ 356422.621899999678135, 253127.409800000488758 ], [ 356418.61370000243187, 253124.632800001651049 ], [ 356415.38120000064373, 253125.450699999928474 ], [ 356415.339900001883507, 253130.305500000715256 ], [ 356412.910199999809265, 253131.552200000733137 ], [ 356407.321699999272823, 253124.962600000202656 ], [ 356403.308100000023842, 253122.818799998611212 ], [ 356403.403399996459484, 253111.631599999964237 ], [ 356401.00789999961853, 253108.867800001055002 ], [ 356399.397100001573563, 253108.643500000238419 ], [ 356397.775399997830391, 253109.685699999332428 ], [ 356398.560199998319149, 253112.22520000115037 ], [ 356397.739500001072884, 253113.907299999147654 ], [ 356392.894400000572205, 253114.712000001221895 ], [ 356390.462899997830391, 253116.169799998402596 ], [ 356387.259199999272823, 253113.610399998724461 ], [ 356380.8158999979496, 253112.713300000876188 ], [ 356379.185300000011921, 253114.810899998992682 ], [ 356378.312399998307228, 253122.614199999719858 ], [ 356377.490000002086163, 253124.50730000063777 ], [ 356375.873700000345707, 253124.916299998760223 ], [ 356372.662900000810623, 253123.201299998909235 ], [ 356372.702399998903275, 253118.557500001043081 ], [ 356367.909500002861023, 253113.240899998694658 ], [ 356367.144599996507168, 253108.37950000166893 ], [ 356363.937299996614456, 253106.242400001734495 ], [ 356364.766999997198582, 253103.504900000989437 ], [ 356363.97860000282526, 253101.387499999254942 ], [ 356353.464199997484684, 253105.101199999451637 ], [ 356351.806599996984005, 253110.364900000393391 ], [ 356353.392300002276897, 253113.544300001114607 ], [ 356352.569799996912479, 253115.437399998307228 ], [ 356346.121100001037121, 253115.173599999397993 ], [ 356340.460699997842312, 253117.027100000530481 ], [ 356338.117299996316433, 253108.142000000923872 ], [ 356334.924400001764297, 253104.316100001335144 ], [ 356334.947800002992153, 253101.57209999859333 ], [ 356330.948600001633167, 253097.739700000733137 ], [ 356327.728699997067451, 253097.080099999904633 ], [ 356326.108900003135204, 253097.911200001835823 ], [ 356323.661200001835823, 253101.268699999898672 ], [ 356323.625299997627735, 253105.490200001746416 ], [ 356321.20269999653101, 253105.892599999904633 ], [ 356316.395400002598763, 253102.264699999243021 ], [ 356309.158399999141693, 253099.883400000631809 ], [ 356306.778999999165535, 253095.219900000840425 ], [ 356307.698600001633167, 253081.92850000038743 ], [ 356306.102200001478195, 253080.015599999576807 ], [ 356301.257100000977516, 253080.820300001651049 ], [ 356299.621100001037121, 253083.551100000739098 ], [ 356295.596699997782707, 253082.673799999058247 ], [ 356290.753499999642372, 253083.267499998211861 ], [ 356285.937200002372265, 253080.694899998605251 ], [ 356281.89299999922514, 253082.139499999582767 ], [ 356279.48309999704361, 253081.064300000667572 ], [ 356278.692900002002716, 253079.157999999821186 ], [ 356278.725299999117851, 253075.358600001782179 ], [ 356280.359499998390675, 253072.838799998164177 ], [ 356280.404500000178814, 253067.561799999326468 ], [ 356276.392700001597404, 253065.206999998539686 ], [ 356278.860200002789497, 253059.52760000154376 ], [ 356278.075400002300739, 253056.988099999725819 ], [ 356275.678099997341633, 253054.435400001704693 ], [ 356275.721199996769428, 253049.369500000029802 ], [ 356274.932899996638298, 253047.252099998295307 ], [ 356272.539099998772144, 253044.277199998497963 ], [ 356270.120200000703335, 253044.257399998605251 ], [ 356270.01410000026226, 253056.710999999195337 ], [ 356274.027699999511242, 253058.854800000786781 ], [ 356274.00789999961853, 253061.176699999719858 ], [ 356267.546599999070168, 253062.390399999916553 ], [ 356266.700699999928474, 253067.027499999850988 ], [ 356261.871899999678135, 253065.932500001043081 ], [ 356259.494300000369549, 253061.057900000363588 ], [ 356257.077100001275539, 253060.826999999582767 ], [ 356255.457299999892712, 253061.658100001513958 ], [ 356250.642800003290176, 253058.874499998986721 ], [ 356246.611299999058247, 253058.841499999165535 ], [ 356247.48589999973774, 253050.827100001275539 ], [ 356244.262500002980232, 253050.589600000530481 ], [ 356243.439999997615814, 253052.482700001448393 ], [ 356241.818300001323223, 253053.524900000542402 ], [ 356239.406599998474121, 253052.660799998790026 ], [ 356239.48929999768734, 253042.951200000941753 ], [ 356245.183899998664856, 253037.087200000882149 ], [ 356247.710699997842312, 253024.442299999296665 ], [ 356246.101700000464916, 253024.006900001317263 ], [ 356242.017899997532368, 253030.095199998468161 ], [ 356239.584600001573563, 253031.763999998569489 ], [ 356240.435900002717972, 253026.493700001388788 ], [ 356238.828699998557568, 253025.847199998795986 ], [ 356235.572800002992153, 253029.409200001507998 ], [ 356233.116099998354912, 253033.822000000625849 ], [ 356231.514300003647804, 253032.542300000786781 ], [ 356231.557499997317791, 253027.476500000804663 ], [ 356233.188100002706051, 253025.378899998962879 ], [ 356239.714100003242493, 253016.566300000995398 ], [ 356239.816600002348423, 253004.53489999845624 ], [ 356240.651699997484684, 253001.164200000464916 ], [ 356237.444399997591972, 252999.026999998837709 ], [ 356235.005699999630451, 253001.329100001603365 ], [ 356232.583200000226498, 253001.7314000017941 ], [ 356166.071699999272823, 253047.416600000113249 ] ] ], [ [ [ 356511.260899998247623, 253418.600000001490116 ], [ 356513.697800002992153, 253416.50899999961257 ], [ 356512.918499998748302, 253413.336300000548363 ], [ 356511.260899998247623, 253418.600000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95445532, "LATITUDE": 18.30973582, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.95771227099999, "SHAPE_Area": 2096.7010867899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356352.330300003290176, 253332.861800000071526 ], [ 356313.677599996328354, 253326.634899999946356 ], [ 356326.29450000077486, 253360.090900000184774 ], [ 356327.891000002622604, 253362.003800000995398 ], [ 356334.9662000015378, 253383.382199998944998 ], [ 356338.864600002765656, 253399.035000000149012 ], [ 356367.20610000193119, 253385.123700000345707 ], [ 356352.330300003290176, 253332.861800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109202020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9531235, "LATITUDE": 18.31205205, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.02637609414, "SHAPE_Area": 0.04157171991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356481.145199999213219, 253617.430599998682737 ], [ 356480.878499999642372, 253617.781500000506639 ], [ 356481.125399999320507, 253617.768399998545647 ], [ 356481.145199999213219, 253617.430599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "50902010800", "MAP": "D9-8615-T011", "PARCEL_NAM": "27", "ACRE": "1.09", "LONGITUDE": -64.95337772000001, "LATITUDE": 18.31344701, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.87322613399999, "SHAPE_Area": 3648.3593636099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356484.490199998021126, 253757.942699998617172 ], [ 356449.04839999973774, 253740.975099999457598 ], [ 356450.839500002563, 253732.248700000345707 ], [ 356436.879100002348423, 253725.55460000038147 ], [ 356413.793499998748302, 253785.105099998414516 ], [ 356449.145300000905991, 253800.171000000089407 ], [ 356478.910599999129772, 253808.436200000345707 ], [ 356482.13400000333786, 253808.673599999397993 ], [ 356483.755599997937679, 253807.631400000303984 ], [ 356485.515699997544289, 253790.336199998855591 ], [ 356485.691899999976158, 253769.650400001555681 ], [ 356484.490199998021126, 253757.942699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "NEEDS # ASSIGNMENT", "ACRE": null, "LONGITUDE": -64.93062387000001, "LATITUDE": 18.34568027, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.278891478299997, "SHAPE_Area": 450.82653989099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358846.651900000870228, 257345.432599999010563 ], [ 358829.656900003552437, 257347.249299999326468 ], [ 358810.883400000631809, 257367.851399999111891 ], [ 358829.414899997413158, 257372.609000001102686 ], [ 358846.651900000870228, 257345.432599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019900", "MAP": "A9-745-T009", "PARCEL_NAM": "4-35", "ACRE": "4.607", "LONGITUDE": -65.02944186000001, "LATITUDE": 18.34884566, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 644.31461834200002, "SHAPE_Area": 19946.3082416 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348396.833599999547005, 257774.7179000005126 ], [ 348397.54507646948332, 257774.873718267423101 ], [ 348398.272506232664455, 257774.910105616640067 ], [ 348398.99598081712611, 257774.826066190435085 ], [ 348399.695699997246265, 257774.6239 ], [ 348409.749899998307228, 257767.215599998831749 ], [ 348417.123013710428495, 257757.795286345353816 ], [ 348424.037399999797344, 257748.033300001174212 ], [ 348426.579038622963708, 257744.044614944054047 ], [ 348428.650059589999728, 257739.792508697748417 ], [ 348430.223533356678672, 257735.332271520077484 ], [ 348431.278999999165535, 257730.721900001168251 ], [ 348433.339347251399886, 257722.869380513031501 ], [ 348434.913944084546529, 257714.905227204348193 ], [ 348435.996855562494602, 257706.859458388265921 ], [ 348436.583999998867512, 257698.76240000128746 ], [ 348437.52875082968967, 257684.27681574615417 ], [ 348437.854000002145767, 257669.76410000026226 ], [ 348434.890600003302097, 257651.13740000128746 ], [ 348432.633179724623915, 257638.66554776483099 ], [ 348429.808985042735003, 257626.309700205019908 ], [ 348426.423900000751019, 257614.095600001513958 ], [ 348424.989426585147157, 257607.327675914188148 ], [ 348424.070474974170793, 257600.470705856772838 ], [ 348423.67230000346899, 257593.563900001347065 ], [ 348422.083304776519071, 257571.99261438215035 ], [ 348421.132299996912479, 257550.383799999952316 ], [ 348420.940602220944129, 257535.881845213589258 ], [ 348420.497299998998642, 257521.385400000959635 ], [ 348414.059799998998642, 257520.597899999469519 ], [ 348333.610500000417233, 257529.114500001072884 ], [ 348310.325199998915195, 257627.073600001633167 ], [ 348307.957099996507168, 257637.035799998790026 ], [ 348312.212413658504374, 257639.77767413778929 ], [ 348316.325300000607967, 257642.728900000452995 ], [ 348325.264227794483304, 257650.871105928294128 ], [ 348333.945398480456788, 257659.287591120810248 ], [ 348342.360399998724461, 257667.970199998468161 ], [ 348357.499958924949169, 257681.901320758857764 ], [ 348372.443499997258186, 257696.042500000447035 ], [ 348378.271309414703865, 257702.277249760314589 ], [ 348383.53231216641143, 257708.997169195965398 ], [ 348388.186300002038479, 257716.15089999884367 ], [ 348390.821235555806197, 257722.184095663367771 ], [ 348392.942848272563424, 257728.416358075948665 ], [ 348394.536300003528595, 257734.804099999368191 ], [ 348395.800300002098083, 257746.397799998521805 ], [ 348394.827299997210503, 257762.426600001752377 ], [ 348393.597386496432591, 257765.439399812748889 ], [ 348392.604800000786781, 257768.538499999791384 ], [ 348392.470713626593351, 257769.570700672979001 ], [ 348392.497485015308484, 257770.611229710659245 ], [ 348392.684473072760738, 257771.635169577959459 ], [ 348393.027199998497963, 257772.618000000715256 ], [ 348393.50504063453991, 257773.516642755712382 ], [ 348394.112999998033047, 257774.332899998873472 ], [ 348394.391297762864269, 257774.57551994282403 ], [ 348394.705607759475242, 257774.769229284691392 ], [ 348395.047423678566702, 257774.908785583567806 ], [ 348395.407494805927854, 257774.99041196613689 ], [ 348395.776076378650032, 257775.011899341770913 ], [ 348396.143193312047515, 257774.972666188230505 ], [ 348396.498910159338266, 257774.873774289531866 ], [ 348396.833599999547005, 257774.7179000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019900", "MAP": "A9-695-T006", "PARCEL_NAM": "4-38", "ACRE": "3.72", "LONGITUDE": -65.03277629, "LATITUDE": 18.3495786, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 569.79076948700003, "SHAPE_Area": 16402.963990299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348096.580200001597404, 257726.083099998533726 ], [ 348037.326899997889996, 257592.453299999237061 ], [ 348036.414899997413158, 257590.396499998867512 ], [ 348029.037031788262539, 257594.724719245132292 ], [ 348021.408315375621896, 257598.593712273199344 ], [ 348013.557300001382828, 257601.989000000059605 ], [ 348010.070589406648651, 257602.616617052612128 ], [ 348006.532148254686035, 257602.791225614811992 ], [ 348003.000586463080253, 257602.509933510969859 ], [ 347999.534400001168251, 257601.777399998158216 ], [ 348000.262900002300739, 257607.543499998748302 ], [ 347972.978100001811981, 257720.719099998474121 ], [ 347970.758400000631809, 257729.926100000739098 ], [ 347973.216885756875854, 257731.731929988134652 ], [ 347975.541000001132488, 257733.707699999213219 ], [ 347979.404175224481151, 257738.189057190087624 ], [ 347982.893823670397978, 257742.967031530977692 ], [ 347985.987266558106057, 257748.010571575316135 ], [ 347988.664399996399879, 257753.286899998784065 ], [ 347993.080157991324086, 257764.524216109042754 ], [ 347997.025200001895428, 257775.935300000011921 ], [ 348000.835199996829033, 257801.546999998390675 ], [ 348001.500981043325737, 257808.704968772130087 ], [ 348002.422700002789497, 257815.834499999880791 ], [ 348002.886245952220634, 257820.040993444941705 ], [ 348003.692699998617172, 257824.19539999961853 ], [ 348004.544845268595964, 257824.889383824076504 ], [ 348005.492875675961841, 257825.445264617388602 ], [ 348006.514603617484681, 257825.850032604299486 ], [ 348007.586116680584382, 257826.094214637676487 ], [ 348008.682337286823895, 257826.17209590706625 ], [ 348009.777609605283942, 257826.081853687472176 ], [ 348010.8462999984622, 257825.825599998235703 ], [ 348011.895731209719088, 257825.419681597239105 ], [ 348012.868761398305651, 257824.854625964944717 ], [ 348013.741441483143717, 257824.144340751110576 ], [ 348014.492292288923636, 257823.306308124709176 ], [ 348015.102833210432436, 257822.361154487152817 ], [ 348015.558037073642481, 257821.332142797036795 ], [ 348015.846699997782707, 257820.244600001722574 ], [ 348016.604699999094009, 257819.418000001460314 ], [ 348019.788720268697944, 257813.788756597321481 ], [ 348023.33937406737823, 257808.383275676751509 ], [ 348027.24099999666214, 257803.225400000810623 ], [ 348028.864490186213516, 257800.489237974601565 ], [ 348030.831258227874059, 257797.988412810838781 ], [ 348033.107646790740546, 257795.765721167816082 ], [ 348035.654700003564358, 257793.859200000762939 ], [ 348043.434104542131536, 257784.045772427809425 ], [ 348051.529799997806549, 257774.491599999368191 ], [ 348057.330474328133278, 257769.266456256504171 ], [ 348062.800999999046326, 257763.696600001305342 ], [ 348067.974352876655757, 257759.033117079758085 ], [ 348072.802299998700619, 257754.012899998575449 ], [ 348074.575885446800385, 257751.625644699437544 ], [ 348076.652017369342502, 257749.49626229016576 ], [ 348078.993600003421307, 257747.662799999117851 ], [ 348086.839100829267409, 257743.171835879766149 ], [ 348094.551100000739098, 257738.455299999564886 ], [ 348100.550899997353554, 257735.037999998778105 ], [ 348096.580200001597404, 257726.083099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019900", "MAP": "A9-695-T006", "PARCEL_NAM": "4-36", "ACRE": "3.65", "LONGITUDE": -65.03074541, "LATITUDE": 18.34859647, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 558.18690856900002, "SHAPE_Area": 16434.9163539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348285.845200002193451, 257630.346400000154972 ], [ 348290.917549221660011, 257630.631664524204098 ], [ 348295.916819631005637, 257631.535765086475294 ], [ 348300.767800003290176, 257633.045099999755621 ], [ 348307.957099996507168, 257637.035799998790026 ], [ 348310.325199998915195, 257627.073600001633167 ], [ 348333.610500000417233, 257529.114500001072884 ], [ 348285.205700002610683, 257534.238699998706579 ], [ 348206.960100002586842, 257550.099300000816584 ], [ 348199.030599996447563, 257553.173300001770258 ], [ 348199.692100003361702, 257556.612900000065565 ], [ 348182.097199998795986, 257560.714000001549721 ], [ 348161.988899998366833, 257563.756700001657009 ], [ 348160.707299999892712, 257563.782900001853704 ], [ 348162.391599997878075, 257570.00959999859333 ], [ 348191.682700000703335, 257678.296599999070168 ], [ 348195.374700002372265, 257691.945599999278784 ], [ 348199.104415312409401, 257690.118716400640551 ], [ 348202.660099998116493, 257687.972699999809265 ], [ 348209.266383352922276, 257683.668826815293869 ], [ 348215.995099999010563, 257679.559000000357628 ], [ 348221.909735741850454, 257675.106818908679998 ], [ 348228.060099996626377, 257670.986400000751019 ], [ 348232.112866099050734, 257668.983154498651857 ], [ 348235.984762645792216, 257666.649418705172138 ], [ 348239.648900002241135, 257664.001400001347065 ], [ 348247.110200002789497, 257656.063900001347065 ], [ 348251.007460809429176, 257651.329458390042419 ], [ 348255.365199998021126, 257647.015099998563528 ], [ 348270.44650000333786, 257636.537599999457598 ], [ 348273.920343892183155, 257634.171081386099104 ], [ 348277.697518974251579, 257632.326914877572563 ], [ 348281.700022885808721, 257631.043184317939449 ], [ 348285.845200002193451, 257630.346400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02869854, "LATITUDE": 18.34769551, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 458.84346971399998, "SHAPE_Area": 11250.428158000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348433.368600003421307, 257417.738800000399351 ], [ 348433.291500002145767, 257417.693900000303984 ], [ 348423.160599999129772, 257436.953000001609325 ], [ 348422.099200002849102, 257438.97069999948144 ], [ 348419.816500000655651, 257443.116200000047684 ], [ 348423.103399999439716, 257444.431200001388788 ], [ 348418.552599996328354, 257451.416200000792742 ], [ 348415.576352091971785, 257455.491402146581095 ], [ 348413.095603272086009, 257459.885854263731744 ], [ 348411.144199997186661, 257464.539599999785423 ], [ 348410.647729577263817, 257469.65452081267722 ], [ 348410.749085896939505, 257474.792480008356506 ], [ 348411.446895244182087, 257479.883841311064316 ], [ 348412.731700003147125, 257484.859600000083447 ], [ 348415.248942147532944, 257491.362716033763718 ], [ 348418.446699999272823, 257497.559599999338388 ], [ 348420.846147427917458, 257502.518195089476649 ], [ 348422.757065075857099, 257507.684761354787042 ], [ 348424.161700002849102, 257513.011300001293421 ], [ 348425.586667100375053, 257526.967266124411253 ], [ 348426.701800003647804, 257540.951400000602007 ], [ 348426.657045771193225, 257552.325093793449923 ], [ 348427.080618553736713, 257563.690985730849206 ], [ 348427.971799999475479, 257575.029800001531839 ], [ 348428.676299996674061, 257589.69310000166297 ], [ 348431.547700002789497, 257589.543699998408556 ], [ 348537.376800000667572, 257506.228799998760223 ], [ 348537.023400001227856, 257505.878899998962879 ], [ 348468.967799998819828, 257438.493500001728535 ], [ 348433.368600003421307, 257417.738800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "D9-9019-T015", "PARCEL_NAM": "4-H", "ACRE": "9.8", "LONGITUDE": -65.02785295, "LATITUDE": 18.3510068, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1035.0857211800001, "SHAPE_Area": 40260.587817300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348659.037500001490116, 258038.916799999773502 ], [ 348660.148500002920628, 258038.563200000673532 ], [ 348661.185099996626377, 258038.029500000178814 ], [ 348662.118400000035763, 258037.330699998885393 ], [ 348662.92230000346899, 258036.486200001090765 ], [ 348663.574299998581409, 258035.51969999819994 ], [ 348664.05629999935627, 258034.458000000566244 ], [ 348664.354800000786781, 258033.330899998545647 ], [ 348664.461400002241135, 258032.169900000095367 ], [ 348663.565499998629093, 258028.753899998962879 ], [ 348662.87389999628067, 258025.290699999779463 ], [ 348655.978799998760223, 258025.166200000792742 ], [ 348655.930200003087521, 258025.146499998867512 ], [ 348655.939099997282028, 258025.144999999552965 ], [ 348647.208099998533726, 258008.819299999624491 ], [ 348645.739399999380112, 257991.919799998402596 ], [ 348647.375399999320507, 257989.188999999314547 ], [ 348650.667099997401237, 257981.405499998480082 ], [ 348658.800399996340275, 257973.239399999380112 ], [ 348666.059399999678135, 257966.785000000149012 ], [ 348653.893899999558926, 257880.348200000822544 ], [ 348647.799400001764297, 257838.501800000667572 ], [ 348644.782799996435642, 257813.990200001746416 ], [ 348640.211000002920628, 257782.710999999195337 ], [ 348636.423600003123283, 257756.982799999415874 ], [ 348636.4070999994874, 257756.870600000023842 ], [ 348588.371699996292591, 257780.061299998313189 ], [ 348551.24379999935627, 257797.986099999397993 ], [ 348486.202600002288818, 257765.976399999111891 ], [ 348427.337300002574921, 257763.173300001770258 ], [ 348420.762000001966953, 257762.860199999064207 ], [ 348419.46339999884367, 257764.754999998956919 ], [ 348416.778999999165535, 257767.64130000025034 ], [ 348413.943400003015995, 257770.379099998623133 ], [ 348409.156700000166893, 257775.022399999201298 ], [ 348403.87610000371933, 257779.095400001853704 ], [ 348393.753100000321865, 257786.466699998825788 ], [ 348393.595899999141693, 257786.474800001829863 ], [ 348391.976899996399879, 257787.651700001209974 ], [ 348386.503499999642372, 257790.805900000035763 ], [ 348384.678700000047684, 257792.528799999505281 ], [ 348383.010999999940395, 257794.404199998825788 ], [ 348382.146600000560284, 257796.20380000025034 ], [ 348381.551299996674061, 257798.109400000423193 ], [ 348381.23759999871254, 257800.081000000238419 ], [ 348381.211900003254414, 257802.077199999243021 ], [ 348380.887100003659725, 257807.934999998658895 ], [ 348381.389899998903275, 257819.27419999986887 ], [ 348382.539300002157688, 257830.566199999302626 ], [ 348384.331500001251698, 257841.774099998176098 ], [ 348386.760799996554852, 257852.861400000751019 ], [ 348387.604599997401237, 257858.093600001186132 ], [ 348389.085500001907349, 257863.182300001382828 ], [ 348391.180900000035763, 257868.050299998372793 ], [ 348393.859200000762939, 257872.623500000685453 ], [ 348397.079599998891354, 257876.832699999213219 ], [ 348399.821400001645088, 257878.937899999320507 ], [ 348402.799599997699261, 257880.692899998277426 ], [ 348405.9695999994874, 257882.071400001645088 ], [ 348409.00959999859333, 257883.380899999290705 ], [ 348412.210699997842312, 257884.223000001162291 ], [ 348415.501599997282028, 257884.579100001603365 ], [ 348418.808799996972084, 257884.441199999302626 ], [ 348422.058499999344349, 257883.812199998646975 ], [ 348425.178400002419949, 257882.706399999558926 ], [ 348434.952799998223782, 257878.263700000941753 ], [ 348444.863499999046326, 257874.133900001645088 ], [ 348456.863600000739098, 257871.298000000417233 ], [ 348468.991899996995926, 257869.073600001633167 ], [ 348481.217299997806549, 257867.466400001198053 ], [ 348490.478699997067451, 257868.710099998861551 ], [ 348499.647699996829033, 257870.513000000268221 ], [ 348508.690499998629093, 257872.868400000035763 ], [ 348517.573899999260902, 257875.767799999564886 ], [ 348530.719499997794628, 257883.683499999344349 ], [ 348551.35530000180006, 257903.419900000095367 ], [ 348553.739600002765656, 257907.543299999088049 ], [ 348555.564999997615814, 257911.942699998617172 ], [ 348556.800399996340275, 257916.54280000180006 ], [ 348557.424500003457069, 257921.264800000935793 ], [ 348559.182700000703335, 257928.296599999070168 ], [ 348560.430500000715256, 257935.436599999666214 ], [ 348561.161300003528595, 257942.647900000214577 ], [ 348562.999399997293949, 257948.018199998885393 ], [ 348565.231899999082088, 257953.236800000071526 ], [ 348567.846400000154972, 257958.274900000542402 ], [ 348573.058899998664856, 257967.945500001311302 ], [ 348577.8074000030756, 257977.852299999445677 ], [ 348582.08110000193119, 257987.972899999469519 ], [ 348584.801100000739098, 257995.544799998402596 ], [ 348588.010399997234344, 258002.922800000756979 ], [ 348591.695000000298023, 258010.075100000947714 ], [ 348595.839400000870228, 258016.9712999984622 ], [ 348605.288400001823902, 258024.265299998223782 ], [ 348614.455700002610683, 258031.910199999809265 ], [ 348619.60249999910593, 258035.675799999386072 ], [ 348625.170699998736382, 258038.784499999135733 ], [ 348631.061099998652935, 258039.392700001597404 ], [ 348636.97860000282526, 258039.613499999046326 ], [ 348642.897900000214577, 258039.445900000631809 ], [ 348648.286300003528595, 258039.730900000780821 ], [ 348653.679300002753735, 258039.554099999368191 ], [ 348659.037500001490116, 258038.916799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0260677, "LATITUDE": 18.35367733, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 362.97737021099999, "SHAPE_Area": 6955.4370480600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348661.188199996948242, 258202.376200001686811 ], [ 348779.274999998509884, 258200.545400001108646 ], [ 348777.900499999523163, 258191.007199998944998 ], [ 348777.173299998044968, 258181.713199999183416 ], [ 348776.519900001585484, 258163.764899998903275 ], [ 348778.344700001180172, 258138.870799999684095 ], [ 348775.200300000607967, 258129.345800001174212 ], [ 348772.021799996495247, 258123.831399999558926 ], [ 348767.230700001120567, 258118.303700000047684 ], [ 348745.604099996387959, 258101.239199999719858 ], [ 348661.188199996948242, 258202.376200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019900", "MAP": "D9-7903-T007", "PARCEL_NAM": "4-23", "ACRE": null, "LONGITUDE": -65.02788345, "LATITUDE": 18.34982186, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 582.96536152600004, "SHAPE_Area": 15768.980422299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348622.519000001251698, 257658.723499998450279 ], [ 348622.501400001347065, 257658.599199999123812 ], [ 348528.766699999570847, 257709.224300000816584 ], [ 348444.696199998259544, 257710.518899999558926 ], [ 348440.584499999880791, 257711.113200001418591 ], [ 348440.055299997329712, 257717.622000001370907 ], [ 348437.197800002992153, 257732.861999999731779 ], [ 348435.572899997234344, 257737.519400000572205 ], [ 348433.546499997377396, 257742.016600001603365 ], [ 348428.625299997627735, 257750.853700000792742 ], [ 348422.06360000371933, 257760.960799999535084 ], [ 348420.762000001966953, 257762.860199999064207 ], [ 348427.337300002574921, 257763.173300001770258 ], [ 348486.202600002288818, 257765.976399999111891 ], [ 348551.230999998748302, 257797.899399999529123 ], [ 348588.371699996292591, 257780.061299998313189 ], [ 348636.423600003123283, 257756.982799999415874 ], [ 348636.4070999994874, 257756.870600000023842 ], [ 348635.637500002980232, 257751.642799999564886 ], [ 348631.834299996495247, 257724.802799999713898 ], [ 348627.267899997532368, 257692.890299998223782 ], [ 348623.470100000500679, 257665.416999999433756 ], [ 348622.519000001251698, 257658.723499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02585247, "LATITUDE": 18.35491, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.581900249, "SHAPE_Area": 4675.6740709200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348827.362300001084805, 258291.078999999910593 ], [ 348827.275499999523163, 258257.513799998909235 ], [ 348735.675300002098083, 258289.868999999016523 ], [ 348700.205200001597404, 258311.151000000536442 ], [ 348674.443300001323223, 258326.6081000007689 ], [ 348673.319221404497512, 258336.250813507649582 ], [ 348671.660099998116493, 258345.815999999642372 ], [ 348827.362300001084805, 258291.078999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019900", "MAP": "A9-695-T006", "PARCEL_NAM": "4-40", "ACRE": "3.02", "LONGITUDE": -65.03440175, "LATITUDE": 18.34939059, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 493.28037665, "SHAPE_Area": 14159.457839799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347856.160800002515316, 257745.984400000423193 ], [ 347864.679595521476585, 257743.087770624086261 ], [ 347872.988300003111362, 257739.634399998933077 ], [ 347879.95877157949144, 257736.700652326049749 ], [ 347887.093572835437953, 257734.192872342973715 ], [ 347894.366700001060963, 257732.120200000703335 ], [ 347902.179100533598103, 257729.825544985273154 ], [ 347910.086650208162609, 257727.883972976385849 ], [ 347918.073399998247623, 257726.299400001764297 ], [ 347924.228053680679295, 257724.371278175414773 ], [ 347930.536144732497633, 257723.027625314833131 ], [ 347936.942299989983439, 257722.280236162536312 ], [ 347943.39028547029011, 257722.135671388212359 ], [ 347949.823499999940395, 257722.595199998468161 ], [ 347952.583599999547005, 257722.894400000572205 ], [ 347947.000200003385544, 257715.799199998378754 ], [ 347849.481200002133846, 257591.876299999654293 ], [ 347843.037399999797344, 257590.514899998903275 ], [ 347840.469522838946432, 257593.156839103117818 ], [ 347837.534100003540516, 257595.383299998939037 ], [ 347833.09727837407263, 257599.184624258690747 ], [ 347829.128488469868898, 257603.472299502434907 ], [ 347825.680699996650219, 257608.189100001007318 ], [ 347819.922088202903979, 257618.720816118904622 ], [ 347814.356499999761581, 257629.355799999088049 ], [ 347810.072648679139093, 257637.945525339193409 ], [ 347806.501693286350928, 257646.855241447890876 ], [ 347803.667300000786781, 257656.02589999884367 ], [ 347802.441307970380876, 257660.458513770165155 ], [ 347801.868199996650219, 257665.021699998527765 ], [ 347799.751500003039837, 257685.659299999475479 ], [ 347799.342383297393098, 257698.805914080759976 ], [ 347798.163999997079372, 257711.905999999493361 ], [ 347797.39654550596606, 257722.077700599940727 ], [ 347796.364799998700619, 257732.225999999791384 ], [ 347796.774381760857068, 257733.643712996446993 ], [ 347797.405158247740474, 257734.977800094202394 ], [ 347798.240931727690622, 257736.194003223237814 ], [ 347799.260240343865007, 257737.26109146035742 ], [ 347800.436909234267659, 257738.151663008960895 ], [ 347801.740722676797304, 257738.842848850734299 ], [ 347803.138199999928474, 257739.316899999976158 ], [ 347810.795129497768357, 257742.33229111917899 ], [ 347818.59857557551004, 257744.945217112748651 ], [ 347826.527400001883507, 257747.148600000888109 ], [ 347831.296345354698133, 257748.441939870361239 ], [ 347836.1913804631331, 257749.115882807673188 ], [ 347841.132399998605251, 257749.159400001168251 ], [ 347845.020169555733446, 257749.168822912237374 ], [ 347848.870992222684436, 257748.634027897263877 ], [ 347852.609063897980377, 257747.565542487427592 ], [ 347856.160800002515316, 257745.984400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019900", "MAP": "A9-695-T006", "PARCEL_NAM": "4-39", "ACRE": "3.17", "LONGITUDE": -65.03369153, "LATITUDE": 18.34892628, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 497.89678878699999, "SHAPE_Area": 13417.343057100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348000.262900002300739, 257607.543499998748302 ], [ 347999.534400001168251, 257601.777399998158216 ], [ 347995.07181525498163, 257601.706086442805827 ], [ 347990.644400000572205, 257601.142400000244379 ], [ 347984.352995403110981, 257600.089650929934578 ], [ 347978.158162590116262, 257598.568434695102042 ], [ 347972.094733192643616, 257596.587304624612443 ], [ 347966.196800000965595, 257594.157400000840425 ], [ 347959.260036115942057, 257589.879432661895407 ], [ 347952.733822166337632, 257584.998015937890159 ], [ 347946.670500002801418, 257579.552299998700619 ], [ 347942.418716292304453, 257576.02947373338975 ], [ 347937.78304678958375, 257573.029717430326855 ], [ 347932.827499694307335, 257570.59445099675213 ], [ 347927.62049999833107, 257568.75730000063777 ], [ 347920.124577131238766, 257566.833600520651089 ], [ 347912.482608292775694, 257565.613030329637695 ], [ 347904.760399997234344, 257565.106100000441074 ], [ 347896.52662884502206, 257565.321108798787463 ], [ 347888.352029901521746, 257566.329646494792541 ], [ 347880.312899999320507, 257568.122299998998642 ], [ 347870.328019463224337, 257571.519254851067672 ], [ 347860.469099998474121, 257575.266100000590086 ], [ 347854.405299659410957, 257580.054604924895102 ], [ 347848.589833145320881, 257585.141824517719215 ], [ 347843.037399999797344, 257590.514899998903275 ], [ 347849.481200002133846, 257591.876299999654293 ], [ 347947.000200003385544, 257715.799199998378754 ], [ 347952.583599999547005, 257722.894400000572205 ], [ 347957.400110276998021, 257723.858316923753591 ], [ 347962.075067314086482, 257725.365859224752057 ], [ 347966.547327933891211, 257727.39730994682759 ], [ 347970.758400000631809, 257729.926100000739098 ], [ 347972.978100001811981, 257720.719099998474121 ], [ 348000.262900002300739, 257607.543499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02825607, "LATITUDE": 18.34845999, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 503.3594955, "SHAPE_Area": 13503.453788299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348537.376800000667572, 257506.228799998760223 ], [ 348537.023400001227856, 257505.878899998962879 ], [ 348431.547700002789497, 257589.543699998408556 ], [ 348428.676299996674061, 257589.69310000166297 ], [ 348429.241800002753735, 257600.006499998271465 ], [ 348431.993400000035763, 257613.129900000989437 ], [ 348435.59179999679327, 257624.559900000691414 ], [ 348437.787203832471278, 257635.426697482413147 ], [ 348439.613399997353554, 257646.361600000411272 ], [ 348443.955099999904633, 257669.019299998879433 ], [ 348606.331299997866154, 257571.541400000452995 ], [ 348574.518100000917912, 257543.004299998283386 ], [ 348537.376800000667572, 257506.228799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "A9-815-T015", "PARCEL_NAM": "7", "ACRE": "30.8", "LONGITUDE": -65.03215401, "LATITUDE": 18.35459185, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2561.8722453300002, "SHAPE_Area": 129588.117506 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348248.553300000727177, 258399.826099999248981 ], [ 348232.594800002872944, 258356.510299999266863 ], [ 348232.000600002706051, 258354.897399999201298 ], [ 348234.354599997401237, 258354.544300001114607 ], [ 348103.674300000071526, 258201.711199998855591 ], [ 348198.988200001418591, 258114.995600000023842 ], [ 348184.808200001716614, 258111.03489999845624 ], [ 348168.098800003528595, 258099.992499999701977 ], [ 348160.416900001466274, 258090.945300001651049 ], [ 348149.520400002598763, 258079.947500001639128 ], [ 348141.868000000715256, 258067.048300001770258 ], [ 348136.779600001871586, 258056.736900001764297 ], [ 348132.376299999654293, 258041.294599998742342 ], [ 348131.133599996566772, 258034.864799998700619 ], [ 348125.477899998426437, 258014.276599999517202 ], [ 348121.705700002610683, 258000.765099998563528 ], [ 348116.622100003063679, 257989.811700001358986 ], [ 348112.189300000667572, 257978.221200000494719 ], [ 348103.264799997210503, 257962.744199998676777 ], [ 348097.515600003302097, 257954.353799998760223 ], [ 348092.402500003576279, 257947.252300001680851 ], [ 348084.735299997031689, 257936.279100000858307 ], [ 348082.230400003492832, 257925.987399999052286 ], [ 348084.281000003218651, 257911.236400000751019 ], [ 348086.302199997007847, 257900.33729999884963 ], [ 348085.069399997591972, 257892.623500000685453 ], [ 348084.487300001084805, 257884.272599998861551 ], [ 348081.302100002765656, 257878.469900000840425 ], [ 348077.465999998152256, 257873.304299999028444 ], [ 348073.505199998617172, 257864.98369999974966 ], [ 348067.628499999642372, 257859.763599999248981 ], [ 348061.500799998641014, 257856.423300001770258 ], [ 348056.079300001263618, 257853.559000000357628 ], [ 348049.957000002264977, 257849.513099998235703 ], [ 348044.799199998378754, 257843.122299998998642 ], [ 348042.472300000488758, 257837.929200001060963 ], [ 348038.992700003087521, 257828.728300001472235 ], [ 348039.0304000005126, 257823.788600001484156 ], [ 348039.399300001561642, 257800.098700001835823 ], [ 348039.410400003194809, 257799.3885000012815 ], [ 348036.576123854203615, 257801.969092716666637 ], [ 348033.563699997961521, 257804.339299999177456 ], [ 348024.071800000965595, 257818.838500000536442 ], [ 348015.380199998617172, 257831.102000001817942 ], [ 348012.719057942042127, 257835.709699637896847 ], [ 348010.419299997389317, 257840.508000001311302 ], [ 348007.307655270618852, 257847.195214116974967 ], [ 348004.664599999785423, 257854.0810999982059 ], [ 348001.410199999809265, 257865.868299998342991 ], [ 348000.411784952739254, 257870.82674559293082 ], [ 348000.021099999547005, 257875.869600001722574 ], [ 348000.66829501587199, 257880.639826123137027 ], [ 348001.965800002217293, 257885.275600001215935 ], [ 348002.975243607594166, 257889.209366385883186 ], [ 348003.354900002479553, 257893.25279999896884 ], [ 348003.635096098878421, 257896.066042010119418 ], [ 348003.472680504317395, 257898.888534107594751 ], [ 348002.871635775722098, 257901.651066586986417 ], [ 348001.846699997782707, 257904.285900000482798 ], [ 347998.619293076568283, 257909.020489369489951 ], [ 347995.139499999582767, 257913.572799999266863 ], [ 347987.927208857843652, 257918.974462041311199 ], [ 347980.455099999904633, 257924.010600000619888 ], [ 347977.086279946612194, 257926.567396094789729 ], [ 347974.065399996936321, 257929.527199998497963 ], [ 347970.110259843640961, 257932.737228881189367 ], [ 347966.008900001645088, 257935.758200000971556 ], [ 347962.940044389921241, 257938.007093514170265 ], [ 347960.016000002622604, 257940.441300000995398 ], [ 347959.634676637244411, 257940.963678778498434 ], [ 347959.343518524256069, 257941.54118553121225 ], [ 347959.1503000035882, 257942.158399999141693 ], [ 347955.506300002336502, 257948.512299999594688 ], [ 347952.616999998688698, 257956.914099998772144 ], [ 347950.465000003576279, 257969.661100000143051 ], [ 347951.424199998378754, 257977.384199999272823 ], [ 347954.228799998760223, 257992.624200001358986 ], [ 347959.686800003051758, 258016.86769999936223 ], [ 347960.799272204923909, 258019.964606826484669 ], [ 347962.307243293034844, 258022.889405878289836 ], [ 347964.184805197175592, 258025.591846921452088 ], [ 347966.399700000882149, 258028.025499999523163 ], [ 347978.200099997222424, 258035.857200000435114 ], [ 347986.134137304208707, 258040.449306034686742 ], [ 347993.819562458375003, 258045.446367773140082 ], [ 348001.23572551284451, 258050.834958624851424 ], [ 348008.362700000405312, 258056.600600000470877 ], [ 348010.627010048425291, 258058.385840464441571 ], [ 348012.638667205756065, 258060.451613682642346 ], [ 348014.363185135065578, 258062.762505592545494 ], [ 348015.770999997854233, 258065.278900001198053 ], [ 348016.438983036787249, 258068.831944485165877 ], [ 348016.555464065226261, 258072.44535819182056 ], [ 348016.117700019734912, 258076.034047240216751 ], [ 348015.135999999940395, 258079.5135000012815 ], [ 348009.403599999845028, 258091.459899999201298 ], [ 348007.847199998795986, 258096.072999998927116 ], [ 347984.82769999653101, 258150.16270000115037 ], [ 347973.515100002288818, 258179.328699998557568 ], [ 347959.575499996542931, 258217.377500001341105 ], [ 347948.806100003421307, 258231.285500001162291 ], [ 347942.780100002884865, 258238.446600001305342 ], [ 347937.186999998986721, 258244.763000000268221 ], [ 347933.723200000822544, 258251.51969999819994 ], [ 347937.086499996483326, 258257.904599998146296 ], [ 347941.322300001978874, 258261.752500001341105 ], [ 347948.537100002169609, 258266.471099998801947 ], [ 347957.047600001096725, 258269.079900000244379 ], [ 348022.162399999797344, 258281.78999999910593 ], [ 348026.932700000703335, 258282.721200000494719 ], [ 348045.205899998545647, 258286.287999998778105 ], [ 348055.42230000346899, 258288.909800000488758 ], [ 348061.793799996376038, 258292.350099999457598 ], [ 348068.979400001466274, 258300.884100001305342 ], [ 348088.782200001180172, 258337.145700000226498 ], [ 348095.475599996745586, 258349.840599998831749 ], [ 348097.5658999979496, 258355.367899999022484 ], [ 348098.3766999989748, 258360.885400000959635 ], [ 348096.201999999582767, 258366.379999998956919 ], [ 348077.384400002658367, 258373.019200000911951 ], [ 348068.405299998819828, 258375.918099999427795 ], [ 348060.305200003087521, 258375.432199999690056 ], [ 348056.499200001358986, 258371.163600001484156 ], [ 348055.252099998295307, 258366.914599999785423 ], [ 348056.137500002980232, 258362.68189999833703 ], [ 348059.58839999884367, 258357.620999999344349 ], [ 348062.166799999773502, 258355.096999999135733 ], [ 348067.72749999910593, 258353.019900001585484 ], [ 348071.976199999451637, 258355.172100000083447 ], [ 348074.505999997258186, 258359.006999999284744 ], [ 348076.615699999034405, 258361.990699999034405 ], [ 348081.300700001418591, 258362.874499998986721 ], [ 348086.864600002765656, 258360.373399998992682 ], [ 348091.162000000476837, 258356.166799999773502 ], [ 348079.844499997794628, 258330.219500001519918 ], [ 348068.721799999475479, 258310.483500000089407 ], [ 348061.053400002419949, 258298.574799999594688 ], [ 348054.195799998939037, 258293.041000001132488 ], [ 348040.691100001335144, 258289.491999998688698 ], [ 348020.859600000083447, 258285.545200001448393 ], [ 347999.497800000011921, 258281.293800000101328 ], [ 347994.955200001597404, 258280.356100000441074 ], [ 347921.381599999964237, 258303.898200001567602 ], [ 347930.234899997711182, 258305.87049999833107 ], [ 347947.968400001525879, 258306.648899998515844 ], [ 347955.19820000231266, 258309.874499998986721 ], [ 347957.82599999755621, 258312.439300000667572 ], [ 347959.50280000269413, 258314.075899999588728 ], [ 347962.395700000226498, 258316.899500001221895 ], [ 347968.768899999558926, 258326.0287000015378 ], [ 347983.077500000596046, 258350.210400000214577 ], [ 347990.256999999284744, 258359.346200000494719 ], [ 347999.005900003015995, 258373.561099998652935 ], [ 348001.358300000429153, 258381.390799999237061 ], [ 348004.412799999117851, 258401.469700001180172 ], [ 348041.845499999821186, 258456.238200001418591 ], [ 348048.036899998784065, 258466.688799999654293 ], [ 348076.027800001204014, 258513.935400001704693 ], [ 348110.703599996864796, 258608.366900000721216 ], [ 348111.333700001239777, 258629.059300001710653 ], [ 348106.346600003540516, 258646.539200000464916 ], [ 348184.70719999819994, 258631.563799999654293 ], [ 348220.177199997007847, 258570.082400001585484 ], [ 348235.547600001096725, 258513.330299999564886 ], [ 348250.945900000631809, 258456.475000001490116 ], [ 348248.553300000727177, 258399.826099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "D9-8816-T013", "PARCEL_NAM": "4-50", "ACRE": "2.53", "LONGITUDE": -65.03633422, "LATITUDE": 18.35007336, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 423.70823353600002, "SHAPE_Area": 11803.054035 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347634.47919999808073, 257694.187699999660254 ], [ 347629.90915688109817, 257694.723306998872431 ], [ 347625.441075070353691, 257695.822585799265653 ], [ 347621.144199997186661, 257697.468499999493361 ], [ 347617.197614077595063, 257699.210488811746472 ], [ 347613.581385335826781, 257701.562712255545193 ], [ 347610.389081111352425, 257704.464308226917638 ], [ 347607.703299999237061, 257707.840199999511242 ], [ 347580.598800003528595, 257740.177299998700619 ], [ 347582.179799996316433, 257742.185699999332428 ], [ 347653.382600001990795, 257832.638799998909235 ], [ 347658.667300000786781, 257836.761599998921156 ], [ 347707.357699997723103, 257804.5929000005126 ], [ 347705.207699999213219, 257789.861299999058247 ], [ 347696.652999997138977, 257706.123199999332428 ], [ 347699.037699997425079, 257704.241900000721216 ], [ 347691.946800000965595, 257702.231100000441074 ], [ 347683.76240000128746, 257700.752900000661612 ], [ 347677.173799999058247, 257699.344000000506639 ], [ 347669.370800003409386, 257697.675500001758337 ], [ 347666.934799998998642, 257697.154599998146296 ], [ 347666.147100001573563, 257697.034299999475479 ], [ 347658.659299999475479, 257695.920699998736382 ], [ 347653.866599999368191, 257695.241300001740456 ], [ 347652.012299999594688, 257694.984999999403954 ], [ 347649.069700002670288, 257694.593299999833107 ], [ 347649.063900001347065, 257694.592799998819828 ], [ 347643.908399999141693, 257694.254099998623133 ], [ 347643.386900000274181, 257694.244100000709295 ], [ 347641.92059999704361, 257693.973799999803305 ], [ 347641.358400002121925, 257693.870200000703335 ], [ 347637.91254326881608, 257693.893386832205579 ], [ 347634.47919999808073, 257694.187699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02903344000001, "LATITUDE": 18.34880858, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 759.94733169300002, "SHAPE_Area": 2136.1363971800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348419.816500000655651, 257443.116200000047684 ], [ 348422.099200002849102, 257438.97069999948144 ], [ 348422.090300001204014, 257438.967599999159575 ], [ 348419.816500000655651, 257443.116200000047684 ] ] ], [ [ [ 348419.816500000655651, 257443.116200000047684 ], [ 348417.699799999594688, 257442.057900000363588 ], [ 348408.545199997723103, 257456.715799998492002 ], [ 348406.491194348200224, 257461.404425664572045 ], [ 348405.158500000834465, 257466.346700001507998 ], [ 348404.850825619068928, 257472.110897039761767 ], [ 348404.946900002658367, 257477.882500000298023 ], [ 348406.037750823947135, 257482.980050812620902 ], [ 348407.558360094495583, 257487.966304641391616 ], [ 348409.497699998319149, 257492.805100001394749 ], [ 348413.348405606287997, 257500.681855652306695 ], [ 348416.694399997591972, 257508.785900000482798 ], [ 348418.808468622737564, 257515.021475440851646 ], [ 348420.497299998998642, 257521.385400000959635 ], [ 348420.940602221002337, 257535.881845213589258 ], [ 348421.132299996912479, 257550.383799999952316 ], [ 348422.083304776519071, 257571.99261438215035 ], [ 348423.67230000346899, 257593.563900001347065 ], [ 348424.070474974170793, 257600.470705856772838 ], [ 348424.989426585147157, 257607.327675914188148 ], [ 348426.423900000751019, 257614.095600001513958 ], [ 348429.808985042735003, 257626.309700205019908 ], [ 348432.633179724623915, 257638.66554776483099 ], [ 348434.890600003302097, 257651.13740000128746 ], [ 348437.854000002145767, 257669.76410000026226 ], [ 348437.52875082968967, 257684.27681574615417 ], [ 348436.583999998867512, 257698.76240000128746 ], [ 348435.996855562319979, 257706.859458388236817 ], [ 348434.913944084313698, 257714.90522720431909 ], [ 348433.339347251225263, 257722.869380513002397 ], [ 348431.278999999165535, 257730.721900001168251 ], [ 348430.223533355921973, 257735.332271519815549 ], [ 348428.650059589010198, 257739.792508697340963 ], [ 348426.579038622265216, 257744.044614943704801 ], [ 348424.037399999797344, 257748.033300001174212 ], [ 348417.123013710428495, 257757.795286345353816 ], [ 348409.749899998307228, 257767.215599998831749 ], [ 348399.695699997246265, 257774.6239 ], [ 348398.995980817067903, 257774.826066190085839 ], [ 348398.272506232664455, 257774.910105616174405 ], [ 348397.54507646948332, 257774.873718267073855 ], [ 348396.833599999547005, 257774.7179000005126 ], [ 348396.498910279828124, 257774.873774927807972 ], [ 348396.143193398544099, 257774.972667302616173 ], [ 348395.776076334470417, 257775.011900741432328 ], [ 348395.407494596438482, 257774.990413446241291 ], [ 348395.047423332638573, 257774.908786940533901 ], [ 348394.705607367155608, 257774.769230331323342 ], [ 348394.391297470021527, 257774.575520522601437 ], [ 348394.112999998033047, 257774.332899998873472 ], [ 348391.243900001049042, 257786.596599999815226 ], [ 348391.34570000320673, 257786.743200000375509 ], [ 348391.976899996399879, 257787.651700001209974 ], [ 348393.595899999141693, 257786.474800001829863 ], [ 348393.753100000321865, 257786.466699998825788 ], [ 348403.87610000371933, 257779.095400001853704 ], [ 348409.156674475583714, 257775.022447014809586 ], [ 348413.943400003015995, 257770.379099998623133 ], [ 348416.779005009739194, 257767.641255586961051 ], [ 348419.46339999884367, 257764.754999998956919 ], [ 348420.762000001966953, 257762.860199999064207 ], [ 348422.06360000371933, 257760.960799999535084 ], [ 348428.625299997627735, 257750.853700000792742 ], [ 348433.546499997377396, 257742.016600001603365 ], [ 348435.572862903412897, 257737.519354074524017 ], [ 348437.197800002992153, 257732.861999999731779 ], [ 348440.055299997329712, 257717.622000001370907 ], [ 348440.584499999880791, 257711.113200001418591 ], [ 348444.696199998259544, 257710.518899999558926 ], [ 348443.955099999904633, 257669.019299998879433 ], [ 348439.613399997353554, 257646.361600000411272 ], [ 348437.787203832471278, 257635.426697482413147 ], [ 348435.59179999679327, 257624.559900000691414 ], [ 348431.993400000035763, 257613.129900000989437 ], [ 348429.241800002753735, 257600.006499998271465 ], [ 348428.676299996674061, 257589.69310000166297 ], [ 348427.971799999475479, 257575.029800001531839 ], [ 348427.080618553736713, 257563.690985730849206 ], [ 348426.657045771193225, 257552.325093793449923 ], [ 348426.701800003647804, 257540.951400000602007 ], [ 348425.586667100375053, 257526.967266124411253 ], [ 348424.161700002849102, 257513.011300001293421 ], [ 348422.757065075857099, 257507.684761354787042 ], [ 348420.846147427917458, 257502.518195089476649 ], [ 348418.446699999272823, 257497.559599999338388 ], [ 348415.248942147532944, 257491.362716033763718 ], [ 348412.731700003147125, 257484.859600000083447 ], [ 348411.446895244182087, 257479.883841311064316 ], [ 348410.749085896939505, 257474.792480008356506 ], [ 348410.647729577263817, 257469.65452081267722 ], [ 348411.144199997186661, 257464.539599999785423 ], [ 348413.095603272027802, 257459.88585426370264 ], [ 348415.576352091971785, 257455.491402146581095 ], [ 348418.552599996328354, 257451.416200000792742 ], [ 348423.103399999439716, 257444.431200001388788 ], [ 348419.816500000655651, 257443.116200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-745-T009", "PARCEL_NAM": "4-44", "ACRE": "2.528", "LONGITUDE": -65.03374001, "LATITUDE": 18.35124378, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 398.95071494400003, "SHAPE_Area": 10111.075148399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347986.801500000059605, 257870.452799998223782 ], [ 347889.25959999859333, 257822.098700001835823 ], [ 347859.934500001370907, 257918.923599999397993 ], [ 347884.506099998950958, 257925.724399998784065 ], [ 347931.351199999451637, 257939.333200000226498 ], [ 347942.411200001835823, 257942.114100001752377 ], [ 347946.229999996721745, 257943.074299998581409 ], [ 347947.677134254190605, 257940.740713867387967 ], [ 347949.399571492744144, 257938.602249055838911 ], [ 347951.371299996972084, 257936.691199999302626 ], [ 347958.759171323210467, 257931.860490524879424 ], [ 347965.925282279204112, 257926.706535681674723 ], [ 347972.855499997735023, 257921.239500001072884 ], [ 347977.875873491982929, 257917.913702330028173 ], [ 347982.646460445830598, 257914.238572361355182 ], [ 347987.14299999922514, 257910.232799999415874 ], [ 347988.859716354112606, 257909.42050795868272 ], [ 347990.438361041422468, 257908.364660264283884 ], [ 347991.844628151739016, 257907.088201797683723 ], [ 347993.047957754519302, 257905.618871586484602 ], [ 347994.022200003266335, 257903.988600000739098 ], [ 347995.003943217045162, 257902.481290347321192 ], [ 347995.742085994454101, 257900.840879615396261 ], [ 347996.219050276733469, 257899.106432382832281 ], [ 347996.423477684089448, 257897.319252603308996 ], [ 347996.350500002503395, 257895.521899998188019 ], [ 347995.00121938472148, 257889.862064042215934 ], [ 347993.281400002539158, 257884.303599998354912 ], [ 347992.232707002491225, 257879.593159298266983 ], [ 347991.905500002205372, 257874.778499998152256 ], [ 347986.801500000059605, 257870.452799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003042100", "MAP": "D9-4901-T90", "PARCEL_NAM": "2E-51-19", "ACRE": "3.47", "LONGITUDE": -64.98034225000001, "LATITUDE": 18.37206746, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 617.70275221999998, "SHAPE_Area": 18963.483390900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353548.930699996650219, 260296.903000000864267 ], [ 353559.457699999213219, 260291.711800001561642 ], [ 353568.38289999961853, 260285.24100000038743 ], [ 353576.474799998104572, 260281.929699998348951 ], [ 353598.29559999704361, 260276.197700001299381 ], [ 353612.920699998736382, 260263.229600001126528 ], [ 353627.495399996638298, 260256.171700000762939 ], [ 353636.42059999704361, 260249.700800001621246 ], [ 353662.285499997437, 260242.52419999986887 ], [ 353657.967399999499321, 260181.482900001108646 ], [ 353562.021600000560284, 260180.064300000667572 ], [ 353555.517099998891354, 260186.343899998813868 ], [ 353547.407200001180172, 260191.765900000929832 ], [ 353544.975699998438358, 260193.223700001835823 ], [ 353534.452299997210503, 260197.99269999936223 ], [ 353532.834299996495247, 260198.612799998372793 ], [ 353511.854000002145767, 260200.340900000184774 ], [ 353494.941200003027916, 260197.880399998277426 ], [ 353481.269799999892712, 260193.546700000762939 ], [ 353474.954000003635883, 260189.709499999880791 ], [ 353432.177299998700619, 260293.11600000038743 ], [ 353459.462399996817112, 260292.371100001037121 ], [ 353483.703900001943111, 260286.447700001299381 ], [ 353494.191299997270107, 260285.900299999862909 ], [ 353499.023800000548363, 260286.573100000619888 ], [ 353507.86089999973774, 260290.445099998265505 ], [ 353515.074500001966953, 260295.57039999961853 ], [ 353519.896200001239777, 260297.509700000286102 ], [ 353531.206200003623962, 260295.069200001657009 ], [ 353538.398299999535084, 260302.727400001138449 ], [ 353542.429799996316433, 260302.760400000959635 ], [ 353548.930699996650219, 260296.903000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98032987000001, "LATITUDE": 18.37058707, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1305.3848312600001, "SHAPE_Area": 6323.9736354099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353535.532999999821186, 260071.134300000965595 ], [ 353560.096400000154972, 260027.42790000140667 ], [ 353564.145900003612041, 260025.350099999457598 ], [ 353568.99099999666214, 260024.545400001108646 ], [ 353572.194700002670288, 260027.104699999094009 ], [ 353573.7820999994874, 260030.072999998927116 ], [ 353574.185699999332428, 260077.361299999058247 ], [ 353574.165899999439716, 260079.683200001716614 ], [ 353573.091600000858307, 260111.127300001680851 ], [ 353572.863300003111362, 260137.934300001710653 ], [ 353570.365199998021126, 260147.201999999582767 ], [ 353565.415799997746944, 260160.249299999326468 ], [ 353558.877199999988079, 260170.53940000012517 ], [ 353553.999799996614456, 260175.143500000238419 ], [ 353546.687200002372265, 260181.627599999308586 ], [ 353535.341300003230572, 260188.289700001478195 ], [ 353530.487300001084805, 260190.14979999884963 ], [ 353518.381800003349781, 260191.317299999296665 ], [ 353501.461800001561642, 260189.701099999248981 ], [ 353484.568800002336502, 260184.918800000101328 ], [ 353468.5253000035882, 260175.077199999243021 ], [ 353455.707000002264977, 260165.261999998241663 ], [ 353452.433200001716614, 260170.93470000103116 ], [ 353450.802599996328354, 260173.032299999147654 ], [ 353449.981899999082088, 260174.714400000870228 ], [ 353448.327899999916553, 260179.556000001728535 ], [ 353450.716300003230572, 260183.164099998772144 ], [ 353451.506399996578693, 260185.07039999961853 ], [ 353455.525399997830391, 260186.581000000238419 ], [ 353463.606499999761581, 260184.536200001835823 ], [ 353466.829899996519089, 260184.773600000888109 ], [ 353481.269799999892712, 260193.546700000762939 ], [ 353494.941200003027916, 260197.880399998277426 ], [ 353511.854000002145767, 260200.340900000184774 ], [ 353532.834299996495247, 260198.612799998372793 ], [ 353534.452299997210503, 260197.99269999936223 ], [ 353544.975699998438358, 260193.223700001835823 ], [ 353547.407200001180172, 260191.765900000929832 ], [ 353555.517099998891354, 260186.343899998813868 ], [ 353562.021600000560284, 260180.064300000667572 ], [ 353566.90259999781847, 260175.037999998778105 ], [ 353568.542199999094009, 260171.885000001639128 ], [ 353572.624099999666214, 260166.007800001651049 ], [ 353580.035599999129772, 260147.91440000012517 ], [ 353582.587600000202656, 260132.314399998635054 ], [ 353582.745800003409386, 260113.739500001072884 ], [ 353583.082099996507168, 260074.267700001597404 ], [ 353583.4003000035882, 260036.906800001859665 ], [ 353582.622800000011921, 260033.522900000214577 ], [ 353581.88120000064373, 260025.917500000447035 ], [ 353579.541400000452995, 260016.610199999064207 ], [ 353582.806199997663498, 260011.992899999022484 ], [ 353594.162900000810623, 260004.0641999989748 ], [ 353604.749300003051758, 259991.907499998807907 ], [ 353620.175300002098083, 259979.579199999570847 ], [ 353625.03660000115633, 259976.874800000339746 ], [ 353653.34740000218153, 259966.55180000141263 ], [ 353660.708499997854233, 259954.368599999696016 ], [ 353632.395900003612041, 259964.902699999511242 ], [ 353617.835500001907349, 259970.271899998188019 ], [ 353601.619300000369549, 259980.693900000303984 ], [ 353600.798600003123283, 259982.375900000333786 ], [ 353595.111299999058247, 259987.395599998533726 ], [ 353589.395199999213219, 259995.792599998414516 ], [ 353583.718599997460842, 259999.545800000429153 ], [ 353580.484399996697903, 260000.574799999594688 ], [ 353578.086999997496605, 259998.022100001573563 ], [ 353580.631800003349781, 259983.26630000025034 ], [ 353572.786300003528595, 259957.659800000488758 ], [ 353570.453699998557568, 259947.508200000971556 ], [ 353569.760600000619888, 259934.203699998557568 ], [ 353570.628100000321865, 259927.033599998801947 ], [ 353571.470399998128414, 259922.818599998950958 ], [ 353573.129699997603893, 259917.343699999153614 ], [ 353564.289099998772144, 259913.893899999558926 ], [ 353560.921800002455711, 259930.542700000107288 ], [ 353561.555500000715256, 259950.812899999320507 ], [ 353563.900700002908707, 259959.486900001764297 ], [ 353563.879100002348423, 259962.019900001585484 ], [ 353570.954300001263618, 259983.398200001567602 ], [ 353569.2787000015378, 259990.772799998521805 ], [ 353568.450800001621246, 259993.299100000411272 ], [ 353552.88629999756813, 260021.880499999970198 ], [ 353531.594899997115135, 260060.125199999660254 ], [ 353519.306100003421307, 260082.822799999266863 ], [ 353507.855800002813339, 260101.72749999910593 ], [ 353502.0912000015378, 260115.823600001633167 ], [ 353495.489600002765656, 260133.501400001347065 ], [ 353495.42849999666214, 260140.678100001066923 ], [ 353496.222199998795986, 260142.162200000137091 ], [ 353499.43129999935627, 260144.088300000876188 ], [ 353503.450300000607967, 260145.598900001496077 ], [ 353508.293499998748302, 260145.005199998617172 ], [ 353511.538599997758865, 260142.709800001233816 ], [ 353512.371799997985363, 260139.550200000405312 ], [ 353525.218900002539158, 260145.988099999725819 ], [ 353522.092600002884865, 260134.352400001138449 ], [ 353511.669799998402596, 260127.300999999046326 ], [ 353510.094999998807907, 260122.855099998414516 ], [ 353518.341499999165535, 260101.391100000590086 ], [ 353535.532999999821186, 260071.134300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97417541, "LATITUDE": 18.36787647, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.04453632, "SHAPE_Area": 2758.0017649500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354190.206900000572205, 259746.405900001525879 ], [ 354170.843900002539158, 259799.801500000059605 ], [ 354180.512500002980232, 259800.725000001490116 ], [ 354226.436300002038479, 259805.322700001299381 ], [ 354242.114000000059605, 259763.393500000238419 ], [ 354190.206900000572205, 259746.405900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98214226, "LATITUDE": 18.36784862, "OBJECTID_1": 109, "PARCEL_NO_": "101003010800", "Tax_Legal_": "SORGENFRI 11-31 SOUTHSIDE QTR", "Name": "CANNINGS, LATISHA a/k/a LATISHA SHORNELLA ETIENNE", "Address": "8100 Estate Sorgenfri", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58200, "Improved_V": 268800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.69664713500001, "SHAPE_Area": 846.46188057799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353352.606100000441074, 259751.406100001186132 ], [ 353350.903300002217293, 259783.802499998360872 ], [ 353375.872000001370907, 259787.173300001770258 ], [ 353377.781300000846386, 259752.358500000089407 ], [ 353352.606100000441074, 259751.406100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97855138, "LATITUDE": 18.36780477, "OBJECTID_1": 203, "PARCEL_NO_": "101003025200", "Tax_Legal_": "CARET BAY 2E-5OA-6 LITTLE NORTHSIDE", "Name": "DAVIS, NEVILLE A", "Address": "PO Box 931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 51600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.76266517600001, "SHAPE_Area": 1346.34038676 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353773.617799997329712, 259762.9864999987185 ], [ 353731.034299999475479, 259744.906100001186132 ], [ 353727.765900000929832, 259749.945599999278784 ], [ 353718.750799998641014, 259766.970400001853704 ], [ 353716.308499999344349, 259769.694600000977516 ], [ 353752.423500001430511, 259789.833000000566244 ], [ 353767.917900003492832, 259769.483800001442432 ], [ 353773.617799997329712, 259762.9864999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031800", "MAP": "D9-5550-T93", "PARCEL_NAM": "25 REM", "ACRE": ".749", "LONGITUDE": -64.97524426, "LATITUDE": 18.36766499, "OBJECTID_1": 258, "PARCEL_NO_": "101003031800", "Tax_Legal_": "CARET BAY REM.25,-A-2,26-A-1,-B-1,26-C LITTLE NORTHSIDE", "Name": "HARTSHORN, SCOTT L. & CLAUDIA (Trustees)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 242300, "Improved_V": 265800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.79814307199999, "SHAPE_Area": 3821.9805637700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354130.443199999630451, 259743.676699999719858 ], [ 354118.891800001263618, 259732.437800001353025 ], [ 354108.890500001609325, 259727.040300000458956 ], [ 354104.105599999427795, 259718.227600000798702 ], [ 354083.65089999884367, 259711.533399999141693 ], [ 354069.832999996840954, 259730.36939999833703 ], [ 354062.487999998033047, 259740.652800001204014 ], [ 354057.504399999976158, 259747.0636 ], [ 354083.64919999986887, 259796.890399999916553 ], [ 354107.317800000309944, 259794.191199999302626 ], [ 354108.007299996912479, 259792.743299998342991 ], [ 354112.936899997293949, 259782.017900001257658 ], [ 354121.973499998450279, 259762.460099998861551 ], [ 354130.443199999630451, 259743.676699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003010600", "MAP": null, "PARCEL_NAM": "11-25", "ACRE": null, "LONGITUDE": -64.98262736, "LATITUDE": 18.36763067, "OBJECTID_1": 107, "PARCEL_NO_": "101003010600", "Tax_Legal_": "SORGENFRI 11-25 S S QTR", "Name": "ANDREWS, LAWRENCE", "Address": "PO Box 9049", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98700, "Improved_V": 251100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.44144860399999, "SHAPE_Area": 1589.11769809 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353328.712200000882149, 259715.454900000244379 ], [ 353320.849600002169609, 259714.740100000053644 ], [ 353300.689999997615814, 259714.786200001835823 ], [ 353299.376599997282028, 259774.303800001740456 ], [ 353321.951499998569489, 259774.699700001627207 ], [ 353324.528599999845028, 259774.990899998694658 ], [ 353328.712200000882149, 259715.454900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003025400", "MAP": "D9-1580-T80", "PARCEL_NAM": "2E-50A-5", "ACRE": "0.35", "LONGITUDE": -64.97904317, "LATITUDE": 18.36766172, "OBJECTID_1": 205, "PARCEL_NO_": "101003025400", "Tax_Legal_": "CARET BAY 2E-50A-5 LT.NORTHSIDE QTR.", "Name": "MURRELL, MARCIA", "Address": "PO Box 10762", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57800, "Improved_V": 140100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.12716438199999, "SHAPE_Area": 1538.50361226 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353716.455899998545647, 259752.386199999600649 ], [ 353684.492899999022484, 259718.1385000012815 ], [ 353672.28320000320673, 259731.548599999397993 ], [ 353683.97860000282526, 259778.507100000977516 ], [ 353692.031000003218651, 259779.839499998837709 ], [ 353696.884999997913837, 259777.979400001466274 ], [ 353699.32379999756813, 259775.677299998700619 ], [ 353709.094800002872944, 259764.569400001317263 ], [ 353711.544299997389317, 259761.000799998641014 ], [ 353716.455899998545647, 259752.386199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97930466, "LATITUDE": 18.36766117, "OBJECTID_1": 206, "PARCEL_NO_": "101003025500", "Tax_Legal_": "CARET BAY 2E-50A-7 LITTLE NORTHSIDE", "Name": "DAGOU, EGBERT L", "Address": "PO Box 9963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57300, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.566319217, "SHAPE_Area": 1157.6661479500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353672.28320000320673, 259731.548599999397993 ], [ 353648.980999998748302, 259721.858600001782179 ], [ 353651.8412000015378, 259764.734000001102686 ], [ 353656.662900000810623, 259766.673300001770258 ], [ 353683.97860000282526, 259778.507100000977516 ], [ 353672.28320000320673, 259731.548599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003010500", "MAP": "B9-260-T68", "PARCEL_NAM": "11-26", "ACRE": "0.38", "LONGITUDE": -64.9828902, "LATITUDE": 18.36763121, "OBJECTID_1": 106, "PARCEL_NO_": "101003010500", "Tax_Legal_": "SORGENFRI 11-26 S S QTR", "Name": "JOANNE U BARRY RESTATED REVOC FAMILY TRUST", "Address": "PO Box 8572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96200, "Improved_V": 274800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.559929471, "SHAPE_Area": 1717.3940335299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353271.666299998760223, 259714.126400001347065 ], [ 353270.367299996316433, 259771.955400001257658 ], [ 353284.864799998700619, 259773.973900001496077 ], [ 353299.376599997282028, 259774.303800001740456 ], [ 353300.689999997615814, 259714.786200001835823 ], [ 353289.403399996459484, 259714.482700001448393 ], [ 353271.666299998760223, 259714.126400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015800", "MAP": "B9-260-T68", "PARCEL_NAM": "11-27", "ACRE": "0.35", "LONGITUDE": -64.98314163000001, "LATITUDE": 18.3676144, "OBJECTID_1": 153, "PARCEL_NO_": "101003015800", "Tax_Legal_": "SORGENFI 11-27 WEST END QTR.", "Name": "FRANCIS, MARLENE V.", "Address": "PO Box 7134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.385149203, "SHAPE_Area": 1366.2523776600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353247.482400000095367, 259713.295200001448393 ], [ 353246.208499997854233, 259768.169100001454353 ], [ 353252.649999998509884, 259769.277300000190735 ], [ 353270.367299996316433, 259771.955400001257658 ], [ 353271.666299998760223, 259714.126400001347065 ], [ 353247.482400000095367, 259713.295200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904010900", "MAP": "B9-260-T68", "PARCEL_NAM": "11-29", "ACRE": "0.45", "LONGITUDE": -64.98374629, "LATITUDE": 18.36762567, "OBJECTID_1": 37, "PARCEL_NO_": "100904010900", "Tax_Legal_": "SORGENFRI 11-29 S S QTR", "Name": "KELCH, HAZEL & TODMAN, ELEANOR & GRACE (WARD)", "Address": "PO Box 655", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 92700, "Improved_V": 159400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.745940725, "SHAPE_Area": 2734.5341340599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353222.056900002062321, 259763.538499999791384 ], [ 353221.6875, 259712.239700000733137 ], [ 353206.358599998056889, 259713.169700000435114 ], [ 353189.384700000286102, 259717.885999999940395 ], [ 353182.914399996399879, 259720.155000001192093 ], [ 353166.709100000560284, 259729.310499999672174 ], [ 353168.67620000243187, 259775.296599999070168 ], [ 353177.635999999940395, 259771.829799998551607 ], [ 353191.372100003063679, 259768.564699999988079 ], [ 353212.379399999976158, 259763.670400001108646 ], [ 353222.056900002062321, 259763.538499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904011000", "MAP": "B9-260-T68", "PARCEL_NAM": "11-28", "ACRE": "0.32", "LONGITUDE": -64.98337391, "LATITUDE": 18.36759007, "OBJECTID_1": 38, "PARCEL_NO_": "100904011000", "Tax_Legal_": "SORGENFRI 11-28 EST S S QTR", "Name": "ABBOTT, ALLEN & ZIDA", "Address": "3 Evergreen Rd", "City": "Somerset", "State": "New Jersey", "Zip": 8873, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.59680821800001, "SHAPE_Area": 1327.0244593800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353221.6875, 259712.239700000733137 ], [ 353222.056900002062321, 259763.538499999791384 ], [ 353246.208499997854233, 259768.169100001454353 ], [ 353247.482400000095367, 259713.295200001448393 ], [ 353221.6875, 259712.239700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97634944000001, "LATITUDE": 18.36740025, "OBJECTID_1": 256, "PARCEL_NO_": "101003031600", "Tax_Legal_": "CARET BAY 15 LITTLE NORTHSIDE", "Name": "MILLARD, EDITH", "Address": "PO Box 304505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 187200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.78370268700002, "SHAPE_Area": 4289.92833883 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354001.222599998116493, 259683.305599998682737 ], [ 353976.908500000834465, 259668.070900000631809 ], [ 353934.833499997854233, 259769.794399999082088 ], [ 353984.794299997389317, 259773.791900001466274 ], [ 353986.466300003230572, 259766.839499998837709 ], [ 353984.061700001358986, 259765.131099998950958 ], [ 353981.693199999630451, 259759.201099999248981 ], [ 353980.95160000026226, 259751.595600001513958 ], [ 353981.77589999884367, 259749.491399999707937 ], [ 353992.443099997937679, 259727.836100000888109 ], [ 353998.143100000917912, 259721.338899999856949 ], [ 354003.002499997615814, 259718.845499999821186 ], [ 354027.804099999368191, 259710.652100000530481 ], [ 354001.222599998116493, 259683.305599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015400", "MAP": null, "PARCEL_NAM": "11-21", "ACRE": null, "LONGITUDE": -64.98146537, "LATITUDE": 18.36762585, "OBJECTID_1": 150, "PARCEL_NO_": "101003015400", "Tax_Legal_": "SORGENFRI EST. 11-21 S S QTR", "Name": "JOHNSON, PATRICE K. -TRUSTEE", "Address": "PO Box 306141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51500, "Improved_V": 193300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.67232216900001, "SHAPE_Area": 1636.2013478900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353415.915299996733665, 259724.80629999935627 ], [ 353414.873499996960163, 259752.4510000012815 ], [ 353413.959299996495247, 259765.109099999070168 ], [ 353457.528899997472763, 259762.088199999183416 ], [ 353458.640900000929832, 259726.211399998515844 ], [ 353415.915299996733665, 259724.80629999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97590347000001, "LATITUDE": 18.36761559, "OBJECTID_1": 259, "PARCEL_NO_": "101003032000", "Tax_Legal_": "CARET BAY (EASTERN) 19-A LITTLE NORTHSIDE", "Name": "FRETT-CALLWOOD, ROSEMARIE", "Address": "PO Box 307336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.57227084499999, "SHAPE_Area": 1994.4239467899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354063.742499999701977, 259738.89640000090003 ], [ 354006.962200000882149, 259727.321699999272823 ], [ 354002.912600003182888, 259729.399500001221895 ], [ 354000.470299996435642, 259732.123700000345707 ], [ 353989.80120000243187, 259753.990100000053644 ], [ 353991.365299999713898, 259759.702399998903275 ], [ 353992.968900002539158, 259760.771000001579523 ], [ 354040.474799998104572, 259768.970300000160933 ], [ 354062.487999998033047, 259740.652800001204014 ], [ 354063.742499999701977, 259738.89640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97956816, "LATITUDE": 18.36755595, "OBJECTID_1": 207, "PARCEL_NO_": "101003025600", "Tax_Legal_": "2E-50A-9 ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "THOMAS, KENNETH W. & LAUREN C", "Address": "PO BOX 302426", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53200, "Improved_V": 275100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.76343618499999, "SHAPE_Area": 1142.94173701 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353648.980999998748302, 259721.858600001782179 ], [ 353624.876199997961521, 259711.739999998360872 ], [ 353621.305600002408028, 259752.240699999034405 ], [ 353651.8412000015378, 259764.734000001102686 ], [ 353648.980999998748302, 259721.858600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98430183000001, "LATITUDE": 18.36742127, "OBJECTID_1": 34, "PARCEL_NO_": "100904010600", "Tax_Legal_": "SORGENFRI 11-4 EST. S S QTR", "Name": "LIBURD, DANIEL", "Address": "PO Box 304688", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105900, "Improved_V": 285900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.58460235800001, "SHAPE_Area": 2315.28531157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353168.417000003159046, 259718.136500000953674 ], [ 353160.856700003147125, 259683.189899999648333 ], [ 353126.601999998092651, 259704.495400000363588 ], [ 353108.767800003290176, 259715.537399999797344 ], [ 353110.006399996578693, 259759.454999998211861 ], [ 353116.503700003027916, 259754.01969999819994 ], [ 353168.417000003159046, 259718.136500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97837063, "LATITUDE": 18.36755427, "OBJECTID_1": 201, "PARCEL_NO_": "101003025000", "Tax_Legal_": "CARET BAY 2E-50A-4 LITTLE NORTHSIDE", "Name": "WEBSTER, DAVIS O", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59700, "Improved_V": 355300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.90998627299999, "SHAPE_Area": 1720.4533949900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353798.051700003445148, 259734.477800000458956 ], [ 353749.024899996817112, 259715.500300001353025 ], [ 353747.385300002992153, 259718.653299998492002 ], [ 353739.210699997842312, 259731.674100000411272 ], [ 353735.949500001966953, 259735.869300000369549 ], [ 353731.034299999475479, 259744.906100001186132 ], [ 353773.617799997329712, 259762.9864999987185 ], [ 353798.051700003445148, 259734.477800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015100", "MAP": "B9-260-T69", "PARCEL_NAM": "11-23", "ACRE": "0.23", "LONGITUDE": -64.98212985000001, "LATITUDE": 18.36754801, "OBJECTID_1": 147, "PARCEL_NO_": "101003015100", "Tax_Legal_": "SORGENFRI EST. 11-23 SOUTHSIDE QTR", "Name": "TITRE, LINDA & RALPH", "Address": "KRONPRINDSENS GADE 37", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.347639207, "SHAPE_Area": 832.16782577699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353354.370300002396107, 259717.840799998492002 ], [ 353352.606100000441074, 259751.406100001186132 ], [ 353377.781300000846386, 259752.358500000089407 ], [ 353379.667300000786781, 259720.28770000115037 ], [ 353378.056400001049042, 259720.063400000333786 ], [ 353354.370300002396107, 259717.840799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015200", "MAP": null, "PARCEL_NAM": "11-22", "ACRE": null, "LONGITUDE": -64.98184032, "LATITUDE": 18.36756445, "OBJECTID_1": 148, "PARCEL_NO_": "101003015200", "Tax_Legal_": "SORGENFRI EST. 11-22 SOUTHSIDE QTR", "Name": "MONDESIR (LIFE ESTATE), MIGUEL", "Address": "PO Box 1626", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 55100, "Improved_V": 242500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.41140006399999, "SHAPE_Area": 1098.26177282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353379.667300000786781, 259720.28770000115037 ], [ 353377.781300000846386, 259752.358500000089407 ], [ 353414.873499996960163, 259752.4510000012815 ], [ 353415.915299996733665, 259724.80629999935627 ], [ 353379.667300000786781, 259720.28770000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98476896, "LATITUDE": 18.36731894, "OBJECTID_1": 35, "PARCEL_NO_": "100904010700", "Tax_Legal_": "SORGENFRI 11-5 SOUTHSIDE QTR", "Name": "LEDEE, PATRICIA ROSE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 127700, "Improved_V": 150100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.33508539500002, "SHAPE_Area": 2550.8964402500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353126.601999998092651, 259704.495400000363588 ], [ 353123.752599999308586, 259660.353500001132488 ], [ 353108.288800001144409, 259677.114500001072884 ], [ 353079.861100003123283, 259701.157499998807907 ], [ 353053.117899999022484, 259716.770700000226498 ], [ 353031.997299998998642, 259734.962999999523163 ], [ 353012.541500002145767, 259747.047200001776218 ], [ 353020.599299997091293, 259747.746399998664856 ], [ 353033.534400001168251, 259743.841499999165535 ], [ 353074.033500000834465, 259722.641399998217821 ], [ 353079.68129999935627, 259722.265399999916553 ], [ 353084.499300003051758, 259724.626899998635054 ], [ 353086.89130000025034, 259727.812899999320507 ], [ 353086.869699999690056, 259730.345800001174212 ], [ 353097.421899996697903, 259722.199499998241663 ], [ 353108.767800003290176, 259715.537399999797344 ], [ 353126.601999998092651, 259704.495400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003025700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97980179, "LATITUDE": 18.36743714, "OBJECTID_1": 208, "PARCEL_NO_": "101003025700", "Tax_Legal_": "CARET BAY 2E-50A-11 LT. NORTHSIDE", "Name": "THOMAS, KENNETH & LAUREN", "Address": "P.O. BOX 2426", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53600, "Improved_V": 329700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.80676770700001, "SHAPE_Area": 836.48428777799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353624.876199997961521, 259711.739999998360872 ], [ 353604.786700002849102, 259703.554000001400709 ], [ 353603.960600003600121, 259705.869199998676777 ], [ 353595.704999998211861, 259728.388700000941753 ], [ 353610.11259999871254, 259740.961100000888109 ], [ 353621.305600002408028, 259752.240699999034405 ], [ 353624.876199997961521, 259711.739999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003025100", "MAP": "D9-9212-t017", "PARCEL_NAM": "2E-50A-3", "ACRE": "0.30", "LONGITUDE": -64.97887706, "LATITUDE": 18.36742461, "OBJECTID_1": 202, "PARCEL_NO_": "101003025100", "Tax_Legal_": "CARET BAY 2E-50A-3 LT. NORTHSIDE QTR.", "Name": "GUMBS, RUSSELL K. & ANNA A", "Address": "PO Box 8211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.39530296500001, "SHAPE_Area": 1244.6439403700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353735.27080000191927, 259720.8761 ], [ 353699.146799996495247, 259701.793099999427795 ], [ 353684.492899999022484, 259718.1385000012815 ], [ 353716.455899998545647, 259752.386199999600649 ], [ 353725.469200000166893, 259735.572500001639128 ], [ 353735.27080000191927, 259720.8761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003027600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97816787, "LATITUDE": 18.36730559, "OBJECTID_1": 227, "PARCEL_NO_": "101003027600", "Tax_Legal_": "CARET BAY 2E-50A-2 LITTLE NORTHSIDE", "Name": "ROMNEY, LAWRENCE & PAULETTE", "Address": "PO Box 9347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.43979508699999, "SHAPE_Area": 1750.32757552 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353749.024899996817112, 259715.500300001353025 ], [ 353798.051700003445148, 259734.477800000458956 ], [ 353813.538900002837181, 259714.972800001502037 ], [ 353826.572899997234344, 259699.458599999547005 ], [ 353813.655799999833107, 259701.252700001001358 ], [ 353803.978200003504753, 259701.38459999859333 ], [ 353790.285300001502037, 259699.583799999207258 ], [ 353787.871699996292591, 259698.930700000375509 ], [ 353774.193199999630451, 259695.441300000995398 ], [ 353759.697599999606609, 259693.21169999986887 ], [ 353758.860699996352196, 259696.793400000780821 ], [ 353757.231899999082088, 259698.679999999701977 ], [ 353749.024899996817112, 259715.500300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003027800", "MAP": "D9-3343-T86", "PARCEL_NAM": "2E-48-B", "ACRE": ".5", "LONGITUDE": -64.9792285, "LATITUDE": 18.36724255, "OBJECTID_1": 229, "PARCEL_NO_": "101003027800", "Tax_Legal_": "CARET BAY 2E-48-B LT. NORTHSIDE", "Name": "HYNDMAN, RAYMOND L. & ANGELA B. (TRUSTEES)", "Address": "355 Falcon Ridge Dr", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 83200, "Improved_V": 238300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.67643805200001, "SHAPE_Area": 1971.0849741300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353699.146799996495247, 259701.793099999427795 ], [ 353713.797100000083447, 259685.869899999350309 ], [ 353696.092399999499321, 259681.714299999177456 ], [ 353675.988499999046326, 259675.216899998486042 ], [ 353661.158399999141693, 259712.247999999672174 ], [ 353629.004799999296665, 259700.374699998646975 ], [ 353624.876199997961521, 259711.739999998360872 ], [ 353648.980999998748302, 259721.858600001782179 ], [ 353672.28320000320673, 259731.548599999397993 ], [ 353684.492899999022484, 259718.1385000012815 ], [ 353699.146799996495247, 259701.793099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97564102, "LATITUDE": 18.36738808, "OBJECTID_1": 257, "PARCEL_NO_": "101003031700", "Tax_Legal_": "CARET BAY 19 LITTLE NORTHSIDE QTR", "Name": "FRETT, STEPHEN M", "Address": "2625 Gamble Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026427, "Country": "United States", "Land_Value": 114600, "Improved_V": 7000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.915495773, "SHAPE_Area": 1193.7388072199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354083.65089999884367, 259711.533399999141693 ], [ 354067.619000002741814, 259706.28660000115633 ], [ 354062.75959999859333, 259708.779899999499321 ], [ 354006.962200000882149, 259727.321699999272823 ], [ 354063.742499999701977, 259738.89640000090003 ], [ 354069.832999996840954, 259730.36939999833703 ], [ 354083.65089999884367, 259711.533399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98376692, "LATITUDE": 18.36713884, "OBJECTID_1": 39, "PARCEL_NO_": "100904011100", "Tax_Legal_": "SOGENFRI 11-7 S.S. QTR.", "Name": "JONES, CHARLENE", "Address": "PO Box 1004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.38840912800001, "SHAPE_Area": 2180.8323229100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353191.897100001573563, 259706.929699998348951 ], [ 353210.476499997079372, 259703.070900000631809 ], [ 353221.763099998235703, 259703.374400001019239 ], [ 353221.185099996626377, 259676.5608000010252 ], [ 353221.273199997842312, 259666.2179000005126 ], [ 353221.20440000295639, 259659.943399999290705 ], [ 353201.988799996674061, 259666.817099999636412 ], [ 353167.135200001299381, 259679.284800000488758 ], [ 353160.856700003147125, 259683.189899999648333 ], [ 353168.417000003159046, 259718.136500000953674 ], [ 353178.953000001609325, 259711.890000000596046 ], [ 353191.897100001573563, 259706.929699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003024800", "MAP": "A9-125-T69", "PARCEL_NAM": "2E-50A-1", "ACRE": ".25", "LONGITUDE": -64.97872433000001, "LATITUDE": 18.3672114, "OBJECTID_1": 200, "PARCEL_NO_": "101003024800", "Tax_Legal_": "CARET BAY 2E-50A-1 LITTLE NORTHSIDE", "Name": "RON AND CARYL JOHNSON REVOCABLE TRUST", "Address": "PO Box 307565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45200, "Improved_V": 160100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.971076573, "SHAPE_Area": 1023.20188831 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353699.146799996495247, 259701.793099999427795 ], [ 353735.27080000191927, 259720.8761 ], [ 353739.356299996376038, 259714.576799999922514 ], [ 353740.994099996984005, 259711.634899999946356 ], [ 353750.838899999856949, 259691.872600000351667 ], [ 353713.797100000083447, 259685.869899999350309 ], [ 353699.146799996495247, 259701.793099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003024700", "MAP": "D9-3343-T86", "PARCEL_NAM": "2E-48-A", "ACRE": ".5", "LONGITUDE": -64.97954149, "LATITUDE": 18.36710919, "OBJECTID_1": 199, "PARCEL_NO_": "101003024700", "Tax_Legal_": "2E-48-A ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR..", "Name": "NAYER, ANNE D., TRUSTEE", "Address": "PO Box 304886", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.50408459900001, "SHAPE_Area": 2144.5569437600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353661.158399999141693, 259712.247999999672174 ], [ 353675.988499999046326, 259675.216899998486042 ], [ 353668.767700001597404, 259670.935899998992682 ], [ 353664.739699997007847, 259670.480799999088049 ], [ 353660.68299999833107, 259673.402899999171495 ], [ 353659.928900003433228, 259675.553899999707937 ], [ 353651.408100001513958, 259673.333200000226498 ], [ 353618.933399997651577, 259666.349599998444319 ], [ 353614.685400001704693, 259677.459399998188019 ], [ 353604.786700002849102, 259703.554000001400709 ], [ 353624.876199997961521, 259711.739999998360872 ], [ 353629.004799999296665, 259700.374699998646975 ], [ 353661.158399999141693, 259712.247999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98426433, "LATITUDE": 18.36699723, "OBJECTID_1": 36, "PARCEL_NO_": "100904010800", "Tax_Legal_": "SORGENFRI 11-6 SOUTHSIDE QTR.", "Name": "SMITH, ANDRE M. & SUZETTE M", "Address": "PO Box 9686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88600, "Improved_V": 357800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.05205079199999, "SHAPE_Area": 1477.4267368200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353160.856700003147125, 259683.189899999648333 ], [ 353151.860799998044968, 259641.607400000095367 ], [ 353144.851599998772144, 259644.694200001657009 ], [ 353123.752599999308586, 259660.353500001132488 ], [ 353126.601999998092651, 259704.495400000363588 ], [ 353160.856700003147125, 259683.189899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98305504, "LATITUDE": 18.3671223, "OBJECTID_1": 114, "PARCEL_NO_": "101003011300", "Tax_Legal_": "SORGENFRI 11-12 & 11-13 S S QTR", "Name": "BROWN, NORMA D", "Address": "1036 Rowland Ave", "City": "Columbus", "State": "Ohio", "Zip": 43228, "Country": "United States", "Land_Value": 104500, "Improved_V": 236300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.29128278300001, "SHAPE_Area": 1008.30711761 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353283.355700001120567, 259667.148200001567602 ], [ 353253.4628000035882, 259673.869699999690056 ], [ 353253.203900001943111, 259704.265000000596046 ], [ 353282.223899997770786, 259705.346900001168251 ], [ 353283.355700001120567, 259667.148200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98334704, "LATITUDE": 18.3671415, "OBJECTID_1": 113, "PARCEL_NO_": "101003011200", "Tax_Legal_": "SORGENFRI EST. 11-10 S.S. QTR.", "Name": "DURANTE, MARGARITA", "Address": "3706 Keefer Ct", "City": "Fairfax", "State": "Virginia", "Zip": 22033, "Country": "United States", "Land_Value": 51500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.06072563, "SHAPE_Area": 909.672878932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353253.4628000035882, 259673.869699999690056 ], [ 353221.185099996626377, 259676.5608000010252 ], [ 353221.763099998235703, 259703.374400001019239 ], [ 353227.407300002872944, 259703.4206000007689 ], [ 353253.203900001943111, 259704.265000000596046 ], [ 353253.4628000035882, 259673.869699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003028000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97752722, "LATITUDE": 18.36696689, "OBJECTID_1": 231, "PARCEL_NO_": "101003028000", "Tax_Legal_": "CARET BAY 2E-52A LT. NORTHSIDE", "Name": "JOSEPH, CORNELIUS & CHERYL", "Address": "PO Box 307546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.51017215900001, "SHAPE_Area": 1758.6691479799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353841.455200001597404, 259656.306200001388788 ], [ 353850.25450000166893, 259664.61089999973774 ], [ 353833.104400001466274, 259690.012800000607967 ], [ 353826.572899997234344, 259699.458599999547005 ], [ 353857.94539999961853, 259708.370200000703335 ], [ 353870.320600003004074, 259675.540899999439716 ], [ 353876.090700000524521, 259660.811500001698732 ], [ 353840.850299999117851, 259632.6587999984622 ], [ 353841.455200001597404, 259656.306200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003032300", "MAP": "D9-1936-T81", "PARCEL_NAM": "20", "ACRE": ".48", "LONGITUDE": -64.97495432, "LATITUDE": 18.36723583, "OBJECTID_1": 262, "PARCEL_NO_": "101003032300", "Tax_Legal_": "20 CARET BAY (EASTERN PART) NO. 8 LITTLE NORTHSIDE QUARTER", "Name": "CARIBBEAN HOUSING RENTALS INC", "Address": "20 Estate Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82400, "Improved_V": 142600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.80271470700001, "SHAPE_Area": 2576.2491359700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354174.364699997007847, 259696.724599998444319 ], [ 354167.001800000667572, 259695.795299999415874 ], [ 354159.328900001943111, 259694.736900001764297 ], [ 354150.994499996304512, 259693.149399999529123 ], [ 354145.041400000452995, 259691.694200001657009 ], [ 354136.442400000989437, 259690.503600001335144 ], [ 354129.034000001847744, 259689.577599998563528 ], [ 354123.610100001096725, 259689.709899999201298 ], [ 354117.524700000882149, 259689.842099998146296 ], [ 354112.497599996626377, 259690.371300000697374 ], [ 354105.750699996948242, 259691.032800000160933 ], [ 354096.454999998211861, 259692.805500000715256 ], [ 354086.718299999833107, 259695.768800001591444 ], [ 354074.127099998295307, 259699.584800001233816 ], [ 354067.619000002741814, 259706.28660000115633 ], [ 354083.65089999884367, 259711.533399999141693 ], [ 354124.042700000107288, 259724.752399999648333 ], [ 354145.557899996638298, 259731.793699998408556 ], [ 354169.733900003135204, 259702.361999999731779 ], [ 354174.364699997007847, 259696.724599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97700563, "LATITUDE": 18.36671304, "OBJECTID_1": 156, "PARCEL_NO_": "101003020300", "Tax_Legal_": "CARET BAY 2BB LITTLE NORTHSIDE", "Name": "BERETTA, GEORGE & ELIZABETH", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 175600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.30001604300003, "SHAPE_Area": 4067.1108307899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353948.183399997651577, 259622.560400001704693 ], [ 353908.02419999986887, 259603.866500001400709 ], [ 353897.549300000071526, 259602.9364 ], [ 353876.090700000524521, 259660.811500001698732 ], [ 353870.320600003004074, 259675.540899999439716 ], [ 353914.513199999928474, 259694.056600000709295 ], [ 353948.183399997651577, 259622.560400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9780002, "LATITUDE": 18.36696547, "OBJECTID_1": 195, "PARCEL_NO_": "101003024300", "Tax_Legal_": "CARET BAY 2E-45 LITTLE NORTHSIDE QTR", "Name": "JOHNSON, WILLIAM F. & TRACEY L", "Address": "P.O. BOX 4597", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 108100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.13988293599999, "SHAPE_Area": 2463.4954618000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353841.455200001597404, 259656.306200001388788 ], [ 353798.657700002193451, 259663.344200000166893 ], [ 353760.804200001060963, 259657.968100000172853 ], [ 353757.357699997723103, 259683.904399998486042 ], [ 353774.26690000295639, 259686.787000000476837 ], [ 353790.368000000715256, 259689.874099999666214 ], [ 353800.02759999781847, 259691.853000000119209 ], [ 353815.34570000320673, 259692.189500000327826 ], [ 353833.104400001466274, 259690.012800000607967 ], [ 353850.25450000166893, 259664.61089999973774 ], [ 353841.455200001597404, 259656.306200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97953482, "LATITUDE": 18.36678599, "OBJECTID_1": 198, "PARCEL_NO_": "101003024600", "Tax_Legal_": "CARET BAY 2E-29A LITTLE NORTHSIDE QTR", "Name": "CUKER, R. C. & APPLEYARDS. C. TRUSTE", "Address": "7701 Westfield Dr", "City": "Bethesda", "State": "Maryland", "Zip": 20817, "Country": "United States", "Land_Value": 102600, "Improved_V": 198900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.19967140599999, "SHAPE_Area": 1147.9029188300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353618.933399997651577, 259666.349599998444319 ], [ 353651.408100001513958, 259673.333200000226498 ], [ 353662.559900000691414, 259642.387499999254942 ], [ 353632.013599999248981, 259631.160599999129772 ], [ 353627.881300002336502, 259642.947999998927116 ], [ 353618.933399997651577, 259666.349599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97863567, "LATITUDE": 18.3669084, "OBJECTID_1": 196, "PARCEL_NO_": "101003024400", "Tax_Legal_": "CARET BAY 2E-44 LITTLE NORTHSIDE", "Name": "THOMPSON, TRACEY", "Address": "PO Box 4597", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59800, "Improved_V": 276700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.409865994, "SHAPE_Area": 1200.81458909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353760.804200001060963, 259657.968100000172853 ], [ 353723.7533999979496, 259653.020799998193979 ], [ 353716.510899998247623, 259651.272799998521805 ], [ 353708.24099999666214, 259675.480900000780821 ], [ 353757.357699997723103, 259683.904399998486042 ], [ 353760.804200001060963, 259657.968100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904012200", "MAP": "D9-3406-T86", "PARCEL_NAM": "7C", "ACRE": "1.1772", "LONGITUDE": -64.98480986, "LATITUDE": 18.36682573, "OBJECTID_1": 48, "PARCEL_NO_": "100904012200", "Tax_Legal_": "SORGENFRI 7C 1 SOUTHSIDE QTR", "Name": "MORIARTY, CHRISTIAN & SMITH, ELIZABETH", "Address": "8099 Estate Sorgenfri", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 189000, "Improved_V": 43700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.04842486699999, "SHAPE_Area": 2375.2444745600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353139.263099998235703, 259638.104600001126528 ], [ 353102.979099996387959, 259637.807599999010563 ], [ 353087.763400003314018, 259625.439599998295307 ], [ 353084.512999996542931, 259628.368299998342991 ], [ 353047.167300000786781, 259658.037999998778105 ], [ 353040.648500002920628, 259666.00620000064373 ], [ 353038.179200001060963, 259671.896600000560284 ], [ 353038.152199998497963, 259675.062800001353025 ], [ 353040.562100000679493, 259676.138000000268221 ], [ 353051.049599997699261, 259675.590500000864267 ], [ 353055.892899997532368, 259674.996899999678135 ], [ 353069.618199996650219, 259672.9983000010252 ], [ 353097.898400001227856, 259666.263599999248981 ], [ 353107.613799996674061, 259661.699099998921156 ], [ 353132.780299998819828, 259641.851199999451637 ], [ 353139.263099998235703, 259638.104600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9833555, "LATITUDE": 18.36679433, "OBJECTID_1": 120, "PARCEL_NO_": "101003012000", "Tax_Legal_": "SORGENFRI 11-11 S S QTR", "Name": "MCBEAN, YVETTE M. (TRUSTEE)", "Address": "PO Box 731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 51500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.60286271800001, "SHAPE_Area": 1583.4393441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353220.819399997591972, 259624.839899998158216 ], [ 353221.273199997842312, 259666.2179000005126 ], [ 353221.185099996626377, 259676.5608000010252 ], [ 353253.4628000035882, 259673.869699999690056 ], [ 353254.646700002253056, 259629.549699999392033 ], [ 353220.819399997591972, 259624.839899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9753803, "LATITUDE": 18.36675583, "OBJECTID_1": 261, "PARCEL_NO_": "101003032200", "Tax_Legal_": "57 CARET BAY LITTLE NORTHSIDE QTR", "Name": "HOBSON, KENNETH & JUDITH", "Address": "PO Box 10764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51500, "Improved_V": 233800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.21340137300001, "SHAPE_Area": 1167.1107450899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354111.726300001144409, 259640.153099998831749 ], [ 354064.189900003373623, 259635.542199999094009 ], [ 354063.911100000143051, 259668.259399998933077 ], [ 354064.638300001621246, 259677.553399998694658 ], [ 354065.431999996304512, 259679.037599999457598 ], [ 354068.642899997532368, 259680.752599999308586 ], [ 354072.681699998676777, 259679.941300000995398 ], [ 354075.136600002646446, 259675.739500001072884 ], [ 354082.467100001871586, 259667.14469999819994 ], [ 354111.726300001144409, 259640.153099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101004010300", "MAP": null, "PARCEL_NAM": "17", "ACRE": "4.04", "LONGITUDE": -64.97390348, "LATITUDE": 18.36639489, "OBJECTID_1": 340, "PARCEL_NO_": "101004010300", "Tax_Legal_": "17 CARET BAY NO. 8 LITTLE NORTHSIDE QTR", "Name": "MILLS, MILTON", "Address": "106 Lawn St", "City": "Roxbury Crossing", "State": "Massachusetts", "Zip": 21203325, "Country": "United States", "Land_Value": 500800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 808.39033201999996, "SHAPE_Area": 23398.893215799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354272.648999996483326, 259681.366900000721216 ], [ 354345.244400002062321, 259489.44370000064373 ], [ 354303.318000003695488, 259488.889400001615286 ], [ 354306.465899996459484, 259497.992199998348951 ], [ 354309.559900000691414, 259513.427400000393391 ], [ 354310.947700001299381, 259539.825399998575449 ], [ 354302.078299999237061, 259539.75279999896884 ], [ 354301.352899998426437, 259530.247699998319149 ], [ 354250.745800003409386, 259507.457600001245737 ], [ 354249.048699997365475, 259517.365100000053644 ], [ 354245.778499998152256, 259522.615699999034405 ], [ 354243.334299996495247, 259525.550999999046326 ], [ 354226.256099998950958, 259542.509799998253584 ], [ 354217.284199997782707, 259554.468699999153614 ], [ 354213.189699999988079, 259561.823399998247623 ], [ 354208.21339999884367, 259578.036899998784065 ], [ 354204.927000001072884, 259585.187199998646975 ], [ 354196.765000000596046, 259596.730500001460314 ], [ 354191.887500002980232, 259601.334699999541044 ], [ 354161.053400002419949, 259623.880399998277426 ], [ 354154.572400003671646, 259627.416000001132488 ], [ 354137.58049999922514, 259634.243000000715256 ], [ 354133.534500002861023, 259635.898600000888109 ], [ 354127.04450000077486, 259640.489599999040365 ], [ 354121.366099998354912, 259644.453899998217821 ], [ 354118.117499999701977, 259647.171500001102686 ], [ 354106.739200003445148, 259657.633000001311302 ], [ 354099.52419999986887, 259664.44370000064373 ], [ 354117.612099997699261, 259670.795000001788139 ], [ 354160.572599999606609, 259685.880100000649691 ], [ 354258.259999997913837, 259720.181800000369549 ], [ 354272.648999996483326, 259681.366900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97904857, "LATITUDE": 18.36682246, "OBJECTID_1": 197, "PARCEL_NO_": "101003024500", "Tax_Legal_": "CARET BAY 2E-43 8 LITTLE NORTHSIDE", "Name": "WHEATLEY, REUBEN B. , TRUSTEE", "Address": "PO Box 546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72800, "Improved_V": 211600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.02661732499999, "SHAPE_Area": 1019.71192295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353708.24099999666214, 259675.480900000780821 ], [ 353716.510899998247623, 259651.272799998521805 ], [ 353672.244699999690056, 259641.411299999803305 ], [ 353669.766400001943111, 259648.357099998742342 ], [ 353670.504399999976158, 259656.384700000286102 ], [ 353671.278300002217293, 259660.190699998289347 ], [ 353674.471199996769428, 259664.016499999910593 ], [ 353679.285700000822544, 259666.800200000405312 ], [ 353690.545299999415874, 259670.269799999892712 ], [ 353708.24099999666214, 259675.480900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98398824, "LATITUDE": 18.36683867, "OBJECTID_1": 40, "PARCEL_NO_": "100904011200", "Tax_Legal_": "SORGENFRI 11-8 SOUTHSIDE QTR", "Name": "AUGUSTUS, MORRIS & MARGARET", "Address": "8097 Estate Sorgenfri", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58200, "Improved_V": 211700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.111162936, "SHAPE_Area": 1256.2528880100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353185.404799997806549, 259672.749400001019239 ], [ 353183.663999997079372, 259629.181600000709295 ], [ 353165.08669999986887, 259635.782800000160933 ], [ 353151.860799998044968, 259641.607400000095367 ], [ 353160.856700003147125, 259683.189899999648333 ], [ 353167.135200001299381, 259679.284800000488758 ], [ 353185.404799997806549, 259672.749400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98368729000001, "LATITUDE": 18.36675024, "OBJECTID_1": 41, "PARCEL_NO_": "100904011300", "Tax_Legal_": "SORGENFRI 11-9 S S QTR", "Name": "BENJAMIN K and HEATHER L ERION", "Address": "14-1 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70100, "Improved_V": 177300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.710354792, "SHAPE_Area": 1509.7538144499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353211.957099996507168, 259623.923000000417233 ], [ 353203.89580000191927, 259623.645899999886751 ], [ 353187.733599998056889, 259627.735500000417233 ], [ 353183.663999997079372, 259629.181600000709295 ], [ 353185.404799997806549, 259672.749400001019239 ], [ 353189.317199997603893, 259671.349899999797344 ], [ 353201.988799996674061, 259666.817099999636412 ], [ 353221.20440000295639, 259659.943399999290705 ], [ 353220.819399997591972, 259624.839899998158216 ], [ 353214.37610000371933, 259623.942800000309944 ], [ 353211.957099996507168, 259623.923000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97799293, "LATITUDE": 18.36670141, "OBJECTID_1": 194, "PARCEL_NO_": "101003024200", "Tax_Legal_": "CARET BAY 2E-46 LITTLE NORTHSIDE QTR", "Name": "SMITH, PHILIRINE", "Address": "2-E THOMASVILLE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.65845329499999, "SHAPE_Area": 2327.4998550300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353840.850299999117851, 259632.6587999984622 ], [ 353840.128499999642372, 259622.731499999761581 ], [ 353831.241099998354912, 259624.76969999819994 ], [ 353822.350100003182888, 259627.230000000447035 ], [ 353808.601400002837181, 259631.972600001841784 ], [ 353798.913000002503395, 259633.370999999344349 ], [ 353786.818400003015995, 259633.271999999880791 ], [ 353769.927199997007847, 259628.278599999845028 ], [ 353760.804200001060963, 259657.968100000172853 ], [ 353798.657700002193451, 259663.344200000166893 ], [ 353841.455200001597404, 259656.306200001388788 ], [ 353840.850299999117851, 259632.6587999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98274841, "LATITUDE": 18.36669974, "OBJECTID_1": 121, "PARCEL_NO_": "101003012200", "Tax_Legal_": "SORGENFRI ESTRN SEC 5-33 S S QTR", "Name": "MODESTE, THOMAS & CLARITA", "Address": "8096 Sorgenfri", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59700, "Improved_V": 161400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.02076171600001, "SHAPE_Area": 1346.16803891 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353328.609899997711182, 259655.697399999946356 ], [ 353310.379399999976158, 259618.606800001114607 ], [ 353307.949699997901917, 259619.853500001132488 ], [ 353300.665899999439716, 259622.960299998521805 ], [ 353278.859499998390675, 259627.003699999302626 ], [ 353283.431199997663498, 259658.282900001853704 ], [ 353319.735100001096725, 259656.258000001311302 ], [ 353328.609899997711182, 259655.697399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003027300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97737806000001, "LATITUDE": 18.36651455, "OBJECTID_1": 224, "PARCEL_NO_": "101003027300", "Tax_Legal_": "CARET BAY 2E-52 LITTLE NORTHSIDE", "Name": "JOSEPH, DIAN A.", "Address": "PO Box 1533", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 151200, "Improved_V": 185000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.81370188400001, "SHAPE_Area": 2032.44570993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353897.549300000071526, 259602.9364 ], [ 353853.230899997055531, 259599.196199998259544 ], [ 353852.329300001263618, 259610.376800000667572 ], [ 353853.864600002765656, 259619.466400001198053 ], [ 353840.128499999642372, 259622.731499999761581 ], [ 353840.850299999117851, 259632.6587999984622 ], [ 353876.090700000524521, 259660.811500001698732 ], [ 353897.549300000071526, 259602.9364 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97856532, "LATITUDE": 18.36665605, "OBJECTID_1": 193, "PARCEL_NO_": "101003024100", "Tax_Legal_": "2E-42 ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "CHRISTIAN, OLIVER B. JR", "Address": "PO Box 5219", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53600, "Improved_V": 63500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.52285261099999, "SHAPE_Area": 1395.9566880299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353728.06360000371933, 259620.336599998176098 ], [ 353716.510899998247623, 259651.272799998521805 ], [ 353723.7533999979496, 259653.020799998193979 ], [ 353760.804200001060963, 259657.968100000172853 ], [ 353769.927199997007847, 259628.278599999845028 ], [ 353728.06360000371933, 259620.336599998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98055888, "LATITUDE": 18.36652468, "OBJECTID_1": 124, "PARCEL_NO_": "101003012500", "Tax_Legal_": "5-29 ESTATE SORGENFRI No.1 SOUTHSIDE QTR.", "Name": "ANTOINETTE B DAY LIVING TRUST", "Address": "PO Box 304942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 145100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.918802142, "SHAPE_Area": 2849.5288330100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353498.426399998366833, 259599.458700001239777 ], [ 353502.872299998998642, 259645.5135000012815 ], [ 353539.172499999403954, 259643.910799998790026 ], [ 353549.570100001990795, 259653.917300000786781 ], [ 353577.315600000321865, 259615.303100001066923 ], [ 353536.312299996614456, 259601.035399999469519 ], [ 353533.088899999856949, 259600.797899998724461 ], [ 353498.426399998366833, 259599.458700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98134837000001, "LATITUDE": 18.36656565, "OBJECTID_1": 123, "PARCEL_NO_": "101003012400", "Tax_Legal_": "5-30 SORGENFRI SOUTHSIDE QUARTER", "Name": "VESOVSKI, DRAGAN Z. & MARIA ALEJANDREA GARCIA", "Address": "5124 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 149800, "Improved_V": 145200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.53249498700001, "SHAPE_Area": 4467.8569063200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353397.992299996316433, 259651.621199999004602 ], [ 353399.015399999916553, 259651.562600001692772 ], [ 353407.673500001430511, 259651.067099999636412 ], [ 353440.750299997627735, 259649.22690000012517 ], [ 353499.645199999213219, 259645.69819999858737 ], [ 353502.872299998998642, 259645.5135000012815 ], [ 353498.426399998366833, 259599.458700001239777 ], [ 353484.70830000191927, 259600.613000001758337 ], [ 353453.204599998891354, 259607.110199999064207 ], [ 353442.709899999201298, 259608.501899998635054 ], [ 353393.5050999969244, 259610.42119999974966 ], [ 353397.992299996316433, 259651.621199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97897748, "LATITUDE": 18.36657359, "OBJECTID_1": 192, "PARCEL_NO_": "101003024000", "Tax_Legal_": "CARET BAY 2E-37 8 LITTLE NORTHSIDE", "Name": "WHEATLEY, REUBEN B. , TRUSTEE", "Address": "PO Box 546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.744431644, "SHAPE_Area": 1540.11805751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353672.244699999690056, 259641.411299999803305 ], [ 353716.510899998247623, 259651.272799998521805 ], [ 353728.06360000371933, 259620.336599998176098 ], [ 353703.121899999678135, 259613.799699999392033 ], [ 353691.07039999961853, 259608.634799998253584 ], [ 353686.227099999785423, 259609.228399999439716 ], [ 353682.978500001132488, 259611.946100000292063 ], [ 353672.244699999690056, 259641.411299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904011400", "MAP": "D9-3406-T86", "PARCEL_NAM": "7B", "ACRE": ".60", "LONGITUDE": -64.98439352, "LATITUDE": 18.36651537, "OBJECTID_1": 42, "PARCEL_NO_": "100904011400", "Tax_Legal_": "SORGENFRI 7B 1 SOUTHSIDE QTR", "Name": "NELTHROPP, DIONNE S.", "Address": "PO Box 308391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 117500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.84282721, "SHAPE_Area": 2380.60711485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353185.393799997866154, 259618.428199999034405 ], [ 353137.119300000369549, 259605.789700001478195 ], [ 353106.598099999129772, 259591.607700001448393 ], [ 353096.735399998724461, 259613.480700001120567 ], [ 353095.110200002789497, 259614.945099998265505 ], [ 353092.648100003600121, 259619.991200000047684 ], [ 353091.022799998521805, 259621.45549999922514 ], [ 353087.763400003314018, 259625.439599998295307 ], [ 353102.979099996387959, 259637.807599999010563 ], [ 353139.263099998235703, 259638.104600001126528 ], [ 353149.79730000346899, 259632.069099999964237 ], [ 353185.393799997866154, 259618.428199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.979411, "LATITUDE": 18.36647723, "OBJECTID_1": 191, "PARCEL_NO_": "101003023900", "Tax_Legal_": "CARET BAY 2E-28A LITTLE NORTHSIDE QTR", "Name": "HANLEY, DALE A", "Address": "PO Box 12414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63300, "Improved_V": 225000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.90536443900001, "SHAPE_Area": 1223.36354185 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353676.594499997794628, 259604.083299998193979 ], [ 353644.387000001966953, 259598.542399998754263 ], [ 353632.013599999248981, 259631.160599999129772 ], [ 353662.559900000691414, 259642.387499999254942 ], [ 353676.594499997794628, 259604.083299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97537402, "LATITUDE": 18.36646725, "OBJECTID_1": 264, "PARCEL_NO_": "101003032600", "Tax_Legal_": "CARET BAY 57A LT. NORTHSIDE", "Name": "GOMEZ, DANA RAMON", "Address": "PO Box 9742", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.72111907300001, "SHAPE_Area": 1138.77085468 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354064.189900003373623, 259635.542199999094009 ], [ 354111.726300001144409, 259640.153099998831749 ], [ 354070.208099998533726, 259591.684000000357628 ], [ 354066.941500000655651, 259596.51240000128746 ], [ 354065.285700000822544, 259601.565099999308586 ], [ 354064.189900003373623, 259635.542199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97504856, "LATITUDE": 18.36631685, "OBJECTID_1": 267, "PARCEL_NO_": "101003032900", "Tax_Legal_": "CARET BAY 58 LT. NORTHSIDE", "Name": "QUETEL, RALPH L. & ANNA B.", "Address": "7606 Bonne Resolution13-1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 110700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.19420507699999, "SHAPE_Area": 3064.58032933 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354145.168099999427795, 259595.463899999856949 ], [ 354130.796599999070168, 259578.669900000095367 ], [ 354118.6875, 259580.259500000625849 ], [ 354082.363899998366833, 259584.606300000101328 ], [ 354075.081900000572205, 259587.502000000327826 ], [ 354070.208099998533726, 259591.684000000357628 ], [ 354111.726300001144409, 259640.153099998831749 ], [ 354119.845200002193451, 259633.675599999725819 ], [ 354128.761399999260902, 259628.260200001299381 ], [ 354150.614500001072884, 259618.728700000792742 ], [ 354152.234399996697903, 259617.897599998861551 ], [ 354160.336999997496605, 259613.319899998605251 ], [ 354145.168099999427795, 259595.463899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98300782, "LATITUDE": 18.36637916, "OBJECTID_1": 134, "PARCEL_NO_": "101003013700", "Tax_Legal_": "SORGENFRI 5-22 LITTLE NORTHSIDE QTR", "Name": "RIVERA, CECILIA & OTHERS", "Address": "6323 Mallard View Ln", "City": "Charlotte", "State": "North Carolina", "Zip": 28269, "Country": "United States", "Land_Value": 130600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.86988707, "SHAPE_Area": 1576.80019156 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353312.897200003266335, 259607.017299998551607 ], [ 353290.493100002408028, 259586.568900000303984 ], [ 353284.118100002408028, 259577.650800000876188 ], [ 353277.57769999653101, 259588.151999998837709 ], [ 353260.533699996769428, 259601.100299999117851 ], [ 353245.969700001180172, 259606.891699999570847 ], [ 353224.139899998903275, 259613.679099999368191 ], [ 353224.121899999678135, 259615.789900001138449 ], [ 353248.280799999833107, 259619.576200000941753 ], [ 353261.984499998390675, 259620.110599998384714 ], [ 353289.440499998629093, 259615.480099998414516 ], [ 353295.905299998819828, 259613.844300001859665 ], [ 353307.222499996423721, 259610.559399999678135 ], [ 353312.897200003266335, 259607.017299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97793864, "LATITUDE": 18.3663597, "OBJECTID_1": 188, "PARCEL_NO_": "101003023600", "Tax_Legal_": "2E-41B&2E-39-A ESTATE CARET BAY\nNo.8 LITLE NORTHSIDE QTR.", "Name": "PETERSEN WHITEHEAD FAMILY TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50800, "Improved_V": 157400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.46029154799999, "SHAPE_Area": 1702.0735294599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353853.230899997055531, 259599.196199998259544 ], [ 353823.417099997401237, 259596.630199998617172 ], [ 353785.578000001609325, 259589.565499998629093 ], [ 353776.442400000989437, 259620.732599999755621 ], [ 353786.093000002205372, 259623.7668999992311 ], [ 353787.701999999582767, 259624.202199999243021 ], [ 353800.603000000119209, 259624.307799998670816 ], [ 353830.521099999547005, 259614.631299998611212 ], [ 353852.329300001263618, 259610.376800000667572 ], [ 353853.230899997055531, 259599.196199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402010400", "MAP": "A3-90-T55", "PARCEL_NAM": "4", "ACRE": null, "LONGITUDE": -65.00278498, "LATITUDE": 18.36437221, "OBJECTID_1": 1415, "PARCEL_NO_": "102402010400", "Tax_Legal_": "HOPE 4 WEST END QTR", "Name": "NILES, DOUGAL D. & FELICIA D", "Address": "ALTONA 66", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 891100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1465.98272748, "SHAPE_Area": 101551.91277900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351192.803199999034405, 259151.435100000351667 ], [ 351155.696699999272823, 259153.031199999153614 ], [ 351138.765900000929832, 259152.681600000709295 ], [ 351125.071199998259544, 259151.09180000051856 ], [ 351116.232299998402596, 259147.430900000035763 ], [ 351108.212399996817112, 259142.2989999987185 ], [ 351099.427400000393391, 259132.305700000375509 ], [ 351097.840000003576279, 259129.337400000542402 ], [ 351094.674099996685982, 259122.345400001853704 ], [ 351090.667700000107288, 259119.357299998402596 ], [ 351088.259499996900558, 259118.070999998599291 ], [ 351085.849600002169609, 259116.995799999684095 ], [ 351029.454499997198582, 259111.045800000429153 ], [ 351109.133799999952316, 259602.068300001323223 ], [ 351115.586099997162819, 259601.910000000149012 ], [ 351127.725699998438358, 259596.73200000077486 ], [ 351130.167999997735023, 259594.007800001651049 ], [ 351136.607699997723103, 259595.327100001275539 ], [ 351143.058200001716614, 259595.379900000989437 ], [ 351146.299699999392033, 259593.506599999964237 ], [ 351147.94650000333786, 259589.509300000965595 ], [ 351149.573499999940395, 259587.833799999207258 ], [ 351160.869000002741814, 259587.081900000572205 ], [ 351164.128499999642372, 259583.097800001502037 ], [ 351163.386900000274181, 259575.492400001734495 ], [ 351165.884900003671646, 259566.224700000137091 ], [ 351171.550700001418591, 259563.738000001758337 ], [ 351190.070699997246265, 259566.844799999147654 ], [ 351224.749300003051758, 259566.284299999475479 ], [ 351227.958400003612041, 259568.210400000214577 ], [ 351261.024400003254414, 259567.636700000613928 ], [ 351274.726300001144409, 259568.382100000977516 ], [ 351292.439999997615814, 259571.482400000095367 ], [ 351301.264499999582767, 259576.831900000572205 ], [ 351305.297899998724461, 259576.653799999505281 ], [ 351315.806900002062321, 259573.573499999940395 ], [ 351327.959100000560284, 259566.917899999767542 ], [ 351332.807800002396107, 259565.690999999642372 ], [ 351339.263700000941753, 259565.110599998384714 ], [ 351358.590000003576279, 259568.22410000115633 ], [ 351269.14580000191927, 259182.246300000697374 ], [ 351216.543099999427795, 259204.402800001204014 ], [ 351192.803199999034405, 259151.435100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904012100", "MAP": "D9-3406-T86", "PARCEL_NAM": "7A", "ACRE": ".596", "LONGITUDE": -64.98415502, "LATITUDE": 18.36623561, "OBJECTID_1": 47, "PARCEL_NO_": "100904012100", "Tax_Legal_": "SORGENFRI 7A S S QTR.", "Name": "CORSINO, IRMA & JUNCOSA, RENE", "Address": "PO Box 302055", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104900, "Improved_V": 257900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.07042993099998, "SHAPE_Area": 3554.78335053 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353212.896499998867512, 259608.30970000103116 ], [ 353127.945299997925758, 259546.819499999284744 ], [ 353124.687600001692772, 259550.592500001192093 ], [ 353120.57880000025034, 259559.635899998247623 ], [ 353118.122100003063679, 259564.048799999058247 ], [ 353106.598099999129772, 259591.607700001448393 ], [ 353137.119300000369549, 259605.789700001478195 ], [ 353185.393799997866154, 259618.428199999034405 ], [ 353187.00280000269413, 259618.863600000739098 ], [ 353203.172200001776218, 259613.929699998348951 ], [ 353212.896499998867512, 259608.30970000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97677455, "LATITUDE": 18.36625111, "OBJECTID_1": 157, "PARCEL_NO_": "101003020400", "Tax_Legal_": "CARET BAY 2BA-5 LITTLE NORTHSIDE", "Name": "MATTHEWS, BERNADETTE & GILBERT", "Address": "PO Box 307273", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120800, "Improved_V": 251200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.71482494700001, "SHAPE_Area": 1759.77437177 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353962.99549999833107, 259587.640099998563528 ], [ 353919.591300003230572, 259571.241700001060963 ], [ 353909.708700001239777, 259595.436599999666214 ], [ 353901.674400001764297, 259591.993299998342991 ], [ 353897.549300000071526, 259602.9364 ], [ 353908.02419999986887, 259603.866500001400709 ], [ 353948.183399997651577, 259622.560400001704693 ], [ 353962.99549999833107, 259587.640099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97841474000001, "LATITUDE": 18.36630493, "OBJECTID_1": 189, "PARCEL_NO_": "101003023700", "Tax_Legal_": "CARET BAY 2E-41 8 LITTLE NORTHSIDE", "Name": "VENZEN, LEROY A. & MAUREEN G", "Address": "7118 Estate Bellevue", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72100, "Improved_V": 181400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.56832192900001, "SHAPE_Area": 1375.3605874299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353782.35809999704361, 259588.905900001525879 ], [ 353743.712600000202656, 259581.834600001573563 ], [ 353732.971600003540516, 259612.144099999219179 ], [ 353767.594499997794628, 259618.127000000327826 ], [ 353776.442400000989437, 259620.732599999755621 ], [ 353785.578000001609325, 259589.565499998629093 ], [ 353782.35809999704361, 259588.905900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97882677, "LATITUDE": 18.36622628, "OBJECTID_1": 190, "PARCEL_NO_": "101003023800", "Tax_Legal_": "CARET BAY 2E-36 8 LITTLE NORTHSIDE", "Name": "MEYERS, DIONNE", "Address": "3938 Magellan Trl", "City": "Tallahassee", "State": "Florida", "Zip": 32303, "Country": "United States", "Land_Value": 93100, "Improved_V": 178100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.12162167899999, "SHAPE_Area": 1392.3798622899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353732.971600003540516, 259612.144099999219179 ], [ 353743.712600000202656, 259581.834600001573563 ], [ 353698.627499997615814, 259573.443999998271465 ], [ 353692.880800001323223, 259585.429299999028444 ], [ 353687.924199998378754, 259599.320900000631809 ], [ 353693.564800001680851, 259599.789299998432398 ], [ 353704.811899997293949, 259604.7364999987185 ], [ 353732.971600003540516, 259612.144099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003034100", "MAP": "C9-149-T72", "PARCEL_NAM": "50", "ACRE": "0.25", "LONGITUDE": -64.97578277, "LATITUDE": 18.36614075, "OBJECTID_1": 277, "PARCEL_NO_": "101003034100", "Tax_Legal_": "CARET BAY 50 LT. NORTHSIDE QTR.", "Name": "MONSANTO, V & WILLETT, F", "Address": "8066 Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.11709515699999, "SHAPE_Area": 993.90812047999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354011.534100003540516, 259585.469799999147654 ], [ 354056.39469999819994, 259604.025400001555681 ], [ 354057.269299998879433, 259596.010999999940395 ], [ 354059.734999999403954, 259590.54280000180006 ], [ 354061.360200002789497, 259589.078400000929832 ], [ 354066.64469999819994, 259584.089999999850988 ], [ 354019.167400002479553, 259567.309300001710653 ], [ 354013.86150000244379, 259580.034800000488758 ], [ 354011.534100003540516, 259585.469799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98249119, "LATITUDE": 18.36610189, "OBJECTID_1": 127, "PARCEL_NO_": "101003012800", "Tax_Legal_": "SORGENFRI 5-23 LITTLE NORTHSIDE QTR", "Name": "SEBASTIEN, MAURICE ANDRE", "Address": "PO Box 8176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 159900, "Improved_V": 198900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.17575018799999, "SHAPE_Area": 3518.6114752100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353368.190399996936321, 259553.007699999958277 ], [ 353360.933600001037121, 259552.948300000280142 ], [ 353293.207000002264977, 259551.971799999475479 ], [ 353293.181800000369549, 259554.926899999380112 ], [ 353288.200099997222424, 259571.773600000888109 ], [ 353284.118100002408028, 259577.650800000876188 ], [ 353290.493100002408028, 259586.568900000303984 ], [ 353312.897200003266335, 259607.017299998551607 ], [ 353319.385499998927116, 259602.63740000128746 ], [ 353328.332299999892712, 259593.633600000292063 ], [ 353333.182700000703335, 259592.195700000971556 ], [ 353334.797100000083447, 259591.997800000011921 ], [ 353339.638599999248981, 259591.615200001746416 ], [ 353358.939800001680851, 259597.683800000697374 ], [ 353370.213799998164177, 259599.464800000190735 ], [ 353368.190399996936321, 259553.007699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97453307000001, "LATITUDE": 18.36620277, "OBJECTID_1": 269, "PARCEL_NO_": "101003033200", "Tax_Legal_": "CARET BAY 59A LT. NORTHSIDE", "Name": "BLAKE, MARIEL F. & ERIC JR", "Address": "4037 Twin Ln", "City": "Winterville", "State": "Georgia", "Zip": 30683, "Country": "United States", "Land_Value": 48800, "Improved_V": 112400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.170256276, "SHAPE_Area": 905.930221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354194.455700002610683, 259583.834899999201298 ], [ 354180.829300001263618, 259574.224199999123812 ], [ 354145.168099999427795, 259595.463899999856949 ], [ 354160.336999997496605, 259613.319899998605251 ], [ 354183.057599999010563, 259596.618400000035763 ], [ 354186.30629999935627, 259593.900699999183416 ], [ 354192.8125, 259587.410100001841784 ], [ 354194.455700002610683, 259583.834899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97611974, "LATITUDE": 18.365824, "OBJECTID_1": 158, "PARCEL_NO_": "101003020500", "Tax_Legal_": "CARET BAY 2B 3 LITTLE NORTHSIDE QTR", "Name": "EDINBOROUGH, CHARLES A. & LYDIA D.", "Address": "PO Box 1715", "City": "North Highlands", "State": "California", "Zip": 95660, "Country": "United States", "Land_Value": 242300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.75355628300002, "SHAPE_Area": 4277.9892594100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354042.677599996328354, 259510.398699998855591 ], [ 354043.4983000010252, 259508.716699998825788 ], [ 354018.513400003314018, 259507.245600000023842 ], [ 353987.886100001633167, 259505.517299998551607 ], [ 353987.855599999427795, 259509.105599999427795 ], [ 353980.26070000231266, 259548.729100000113249 ], [ 353962.99549999833107, 259587.640099998563528 ], [ 353980.741499997675419, 259586.940900001674891 ], [ 354001.520499996840954, 259608.85359999909997 ], [ 354013.86150000244379, 259580.034800000488758 ], [ 354024.562899999320507, 259554.368999999016523 ], [ 354034.436499997973442, 259531.229499999433756 ], [ 354042.677599996328354, 259510.398699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9792868, "LATITUDE": 18.36612047, "OBJECTID_1": 184, "PARCEL_NO_": "101003023200", "Tax_Legal_": "CARET BAY EST. 2E-47 LITTLE NORTHSIDE", "Name": "SUMNER, HAROLD J. & DELITA", "Address": "PO BOX 2532", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59500, "Improved_V": 148500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.88184553900001, "SHAPE_Area": 1466.5034292600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353692.232699997723103, 259566.847800001502037 ], [ 353689.025499999523163, 259564.71059999987483 ], [ 353680.172200001776218, 259562.738299999386072 ], [ 353661.73309999704361, 259550.13289999961853 ], [ 353654.298299998044968, 259570.970300000160933 ], [ 353644.387000001966953, 259598.542399998754263 ], [ 353676.594499997794628, 259604.083299998193979 ], [ 353682.369999997317791, 259588.720800001174212 ], [ 353683.206799998879433, 259585.138999998569489 ], [ 353684.855400003492832, 259580.930700000375509 ], [ 353687.319300003349781, 259575.673500001430511 ], [ 353692.232699997723103, 259566.847800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98180176, "LATITUDE": 18.36611462, "OBJECTID_1": 128, "PARCEL_NO_": "101003012900", "Tax_Legal_": "SORGENFRI EST. 5-24 S S QTR", "Name": "LEONA Z. MILLINER-SMITH REVOCABLE TRUST", "Address": "5-24 Estate Sorgenfri", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 157000, "Improved_V": 323200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.87921460600001, "SHAPE_Area": 3078.0306144699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353422.211599998176098, 259553.660900000482798 ], [ 353368.190399996936321, 259553.007699999958277 ], [ 353370.213799998164177, 259599.464800000190735 ], [ 353396.809500001370907, 259601.160199999809265 ], [ 353418.590700000524521, 259600.071899998933077 ], [ 353437.951200000941753, 259599.174800001084805 ], [ 353431.887299999594688, 259553.740100000053644 ], [ 353422.211599998176098, 259553.660900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98114896, "LATITUDE": 18.36607877, "OBJECTID_1": 129, "PARCEL_NO_": "101003013000", "Tax_Legal_": "SORGENFRI ESTRN SEC 5-25 S S QTR#1", "Name": "PAYNE, MELVIN W., JR. & TIFFANY N.", "Address": "PO Box 307154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 108800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.332357153, "SHAPE_Area": 3078.5367428700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353506.910300001502037, 259550.13230000063777 ], [ 353486.734499998390675, 259552.078099999576807 ], [ 353465.750600002706051, 259554.228399999439716 ], [ 353431.887299999594688, 259553.740100000053644 ], [ 353437.951200000941753, 259599.174800001084805 ], [ 353445.215199999511242, 259598.389899998903275 ], [ 353456.512599997222424, 259597.426899999380112 ], [ 353478.326200000941753, 259592.539200000464916 ], [ 353480.748700000345707, 259592.136900000274181 ], [ 353487.202799998223782, 259591.767499998211861 ], [ 353510.594800002872944, 259590.903499998152256 ], [ 353506.910300001502037, 259550.13230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97766437, "LATITUDE": 18.36614117, "OBJECTID_1": 187, "PARCEL_NO_": "101003023500", "Tax_Legal_": "CARET BAY 2E-39 8 LITTLE NORTHSIDE", "Name": "DECASTRO, DANTE S", "Address": "PO Box 1176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 153800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.36705413200002, "SHAPE_Area": 3129.08952611 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353785.578000001609325, 259589.565499998629093 ], [ 353823.417099997401237, 259596.630199998617172 ], [ 353853.230899997055531, 259599.196199998259544 ], [ 353897.549300000071526, 259602.9364 ], [ 353901.674400001764297, 259591.993299998342991 ], [ 353903.3175999969244, 259588.418200001120567 ], [ 353903.348099999129772, 259584.829900000244379 ], [ 353900.950800001621246, 259582.277100000530481 ], [ 353876.792000003159046, 259578.490800000727177 ], [ 353791.491899996995926, 259557.94990000128746 ], [ 353782.35809999704361, 259588.905900001525879 ], [ 353785.578000001609325, 259589.565499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97467418, "LATITUDE": 18.36606879, "OBJECTID_1": 268, "PARCEL_NO_": "101003033100", "Tax_Legal_": "CARET BAY 59 LT. NORTHSIDE", "Name": "NISBETT, EILEEN A. & WILLIAM N. (TRUSTEES)", "Address": "PO Box 301962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41600, "Improved_V": 130500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.46529843899999, "SHAPE_Area": 787.03828522799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354180.829300001263618, 259574.224199999123812 ], [ 354163.200099997222424, 259561.203200001269579 ], [ 354157.521799996495247, 259565.167500000447035 ], [ 354145.364200003445148, 259572.456300001591444 ], [ 354130.796599999070168, 259578.669900000095367 ], [ 354145.168099999427795, 259595.463899999856949 ], [ 354180.829300001263618, 259574.224199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97835008, "LATITUDE": 18.3660178, "OBJECTID_1": 186, "PARCEL_NO_": "101003023400", "Tax_Legal_": "CARET BAY 2E-40 8 LITTLE NORTHSIDE", "Name": "BLYDEN, MARVIN & JACQUELINE", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 123400, "Improved_V": 266200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.15558822200001, "SHAPE_Area": 1344.8086677199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353748.813100002706051, 259551.056699998676777 ], [ 353743.712600000202656, 259581.834600001573563 ], [ 353782.35809999704361, 259588.905900001525879 ], [ 353791.491899996995926, 259557.94990000128746 ], [ 353766.544699996709824, 259552.04619999974966 ], [ 353748.813100002706051, 259551.056699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003027400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97662105000001, "LATITUDE": 18.36591991, "OBJECTID_1": 225, "PARCEL_NO_": "101003027400", "Tax_Legal_": "CARET BAY 2BA-4 LITTLE NORTHSIDE", "Name": "DAVIS, BERIS", "Address": "PO Box 305046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104300, "Improved_V": 215200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.164371058, "SHAPE_Area": 1985.89586687 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353980.26070000231266, 259548.729100000113249 ], [ 353933.633000001311302, 259532.093199998140335 ], [ 353926.988300003111362, 259554.837000001221895 ], [ 353919.591300003230572, 259571.241700001060963 ], [ 353962.99549999833107, 259587.640099998563528 ], [ 353980.26070000231266, 259548.729100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97872902, "LATITUDE": 18.36597227, "OBJECTID_1": 185, "PARCEL_NO_": "101003023300", "Tax_Legal_": "2E-34 CARET BAY LITTLE NORTHSIDE QUARTER", "Name": "EDWARD, CLIFFORD L.", "Address": "8082 Caret Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 8023435, "Country": "United States", "Land_Value": 72800, "Improved_V": 205700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.15831962600001, "SHAPE_Area": 1204.9829441500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353698.627499997615814, 259573.443999998271465 ], [ 353743.712600000202656, 259581.834600001573563 ], [ 353748.813100002706051, 259551.056699998676777 ], [ 353718.216300003230572, 259545.739999998360872 ], [ 353709.255199998617172, 259556.432399999350309 ], [ 353702.705799996852875, 259567.989000000059605 ], [ 353701.075199998915195, 259570.086500000208616 ], [ 353698.627499997615814, 259573.443999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101004010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97438273, "LATITUDE": 18.36591831, "OBJECTID_1": 341, "PARCEL_NO_": "101004010400", "Tax_Legal_": "CARET BAY 54 REM. LT. NORTHSIDE", "Name": "HANLEY, DERRICK MICHAEL & LETA V.", "Address": "PO Box 302118", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42900, "Improved_V": 188900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.291730927, "SHAPE_Area": 904.05570890900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354203.519299998879433, 259561.111000001430511 ], [ 354185.978299997746944, 259537.74720000103116 ], [ 354178.633299998939037, 259548.030600000172853 ], [ 354172.940600000321865, 259553.683600001037121 ], [ 354169.69200000166893, 259556.401200000196695 ], [ 354163.200099997222424, 259561.203200001269579 ], [ 354180.829300001263618, 259574.224199999123812 ], [ 354194.455700002610683, 259583.834899999201298 ], [ 354197.734899997711182, 259577.528999999165535 ], [ 354203.519299998879433, 259561.111000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003033400", "MAP": "D9-512-T65", "PARCEL_NAM": "51", "ACRE": "0.50", "LONGITUDE": -64.97504054, "LATITUDE": 18.36582538, "OBJECTID_1": 271, "PARCEL_NO_": "101003033400", "Tax_Legal_": "51 CARET BAY NO.8 LITTLE NORTHSIDE QTR.", "Name": "ARNOLD NALDA a/k/a NALDA A & NZINGHA EMANUEL", "Address": "PO BOX 305893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90400, "Improved_V": 68300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.87596847500001, "SHAPE_Area": 2301.2313957699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354154.170000001788139, 259557.035399999469519 ], [ 354120.506899997591972, 259513.251899998635054 ], [ 354121.717699997127056, 259518.700699999928474 ], [ 354119.13570000231266, 259522.788899999111891 ], [ 354118.008299998939037, 259523.690799999982119 ], [ 354112.680600002408028, 259527.953000001609325 ], [ 354106.440700002014637, 259530.31980000063777 ], [ 354100.200699999928474, 259531.395700000226498 ], [ 354087.416199997067451, 259559.476599998772144 ], [ 354080.020499996840954, 259575.721200000494719 ], [ 354087.286300003528595, 259574.72520000115037 ], [ 354124.421599999070168, 259569.751800000667572 ], [ 354135.742299996316433, 259566.044700000435114 ], [ 354141.406300000846386, 259563.769099999219179 ], [ 354145.455899998545647, 259561.691300000995398 ], [ 354152.744999997317791, 259557.951200000941753 ], [ 354154.170000001788139, 259557.035399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97716582, "LATITUDE": 18.36586753, "OBJECTID_1": 165, "PARCEL_NO_": "101003021300", "Tax_Legal_": "CARET BAY 2E 22 LITTLE NORTHSIDE QTR", "Name": "DE CASTRO, DANTE S & JANET DE WINDT", "Address": "PO Box 1176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 80400, "Improved_V": 268800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.23247992899999, "SHAPE_Area": 1676.31677973 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353877.957900002598763, 259536.281599998474121 ], [ 353871.140000000596046, 259535.975900001823902 ], [ 353862.552699998021126, 259565.555599998682737 ], [ 353868.825900003314018, 259567.026500001549721 ], [ 353882.506300002336502, 259570.304900001734495 ], [ 353898.612800002098083, 259572.758799999952316 ], [ 353902.646099999547005, 259572.580699998885393 ], [ 353907.498400002717972, 259570.931600000709295 ], [ 353912.37219999730587, 259566.749699998646975 ], [ 353914.825300000607967, 259562.75899999961257 ], [ 353922.287100002169609, 259538.755399998277426 ], [ 353877.957900002598763, 259536.281599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97914189, "LATITUDE": 18.36592165, "OBJECTID_1": 183, "PARCEL_NO_": "101003023100", "Tax_Legal_": "CARET BAY 2E-24&47A LITTLE NORTHSIDE QTR", "Name": "WENZEL, EARL & BEVERLY", "Address": "23-24&47A ESTATE CARET BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75900, "Improved_V": 182400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.189376758999998, "SHAPE_Area": 246.63038228799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353692.232699997723103, 259566.847800001502037 ], [ 353698.773100003600121, 259556.346599999815226 ], [ 353661.73309999704361, 259550.13289999961853 ], [ 353680.172200001776218, 259562.738299999386072 ], [ 353689.025499999523163, 259564.71059999987483 ], [ 353692.232699997723103, 259566.847800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97756095, "LATITUDE": 18.36582601, "OBJECTID_1": 166, "PARCEL_NO_": "101003021400", "Tax_Legal_": "CARET BAY 2E 23 LITTLE NORTHSIDE QTR", "Name": "DE CASTRO, DANTE S & JANET DE WINDT", "Address": "PO Box 1176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 63900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.995709644, "SHAPE_Area": 940.53634430700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353871.140000000596046, 259535.975900001823902 ], [ 353837.654899999499321, 259534.47410000115633 ], [ 353827.783100001513958, 259557.402499999850988 ], [ 353862.552699998021126, 259565.555599998682737 ], [ 353871.140000000596046, 259535.975900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003033500", "MAP": "D9-512-T65", "PARCEL_NAM": "52", "ACRE": "0.50", "LONGITUDE": -64.9746706, "LATITUDE": 18.36561905, "OBJECTID_1": 272, "PARCEL_NO_": "101003033500", "Tax_Legal_": "CARET BAY 52 LT. NORTHSIDE", "Name": "MOORE, MARIA G", "Address": "PO Box 8711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90400, "Improved_V": 170200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.510115848, "SHAPE_Area": 1687.3010490700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354120.506899997591972, 259513.251899998635054 ], [ 354154.170000001788139, 259557.035399999469519 ], [ 354154.366700001060963, 259556.909000001847744 ], [ 354163.28999999910593, 259550.649300001561642 ], [ 354169.799900002777576, 259543.7364999987185 ], [ 354176.311499997973442, 259536.61259999871254 ], [ 354180.396999999880791, 259530.313200000673532 ], [ 354182.113899998366833, 259518.083799999207258 ], [ 354179.745399996638298, 259512.153799999505281 ], [ 354175.739000000059605, 259509.165699999779463 ], [ 354171.709200002253056, 259508.921599999070168 ], [ 354127.309900000691414, 259514.679999999701977 ], [ 354120.506899997591972, 259513.251899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101004011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97423701, "LATITUDE": 18.3656863, "OBJECTID_1": 346, "PARCEL_NO_": "101004011000", "Tax_Legal_": "54-A CARET BAY No.8 LITLE NORTHSIDE QTR.", "Name": "EDWARDS, HELEN F.", "Address": "8053 Caret Bay E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41200, "Improved_V": 13400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.74490101200001, "SHAPE_Area": 847.97192719300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354222.296499997377396, 259534.033599998801947 ], [ 354188.627400003373623, 259510.7489 ], [ 354190.995999999344349, 259516.678899999707937 ], [ 354190.089000001549721, 259528.49269999936223 ], [ 354186.80799999833107, 259535.009700000286102 ], [ 354185.978299997746944, 259537.74720000103116 ], [ 354203.519299998879433, 259561.111000001430511 ], [ 354204.34179999679327, 259559.2179000005126 ], [ 354210.896600000560284, 259547.028099998831749 ], [ 354218.229000002145767, 259538.222199998795986 ], [ 354222.296499997377396, 259534.033599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97909534, "LATITUDE": 18.36575666, "OBJECTID_1": 183, "PARCEL_NO_": "101003023100", "Tax_Legal_": "CARET BAY 2E-24&47A LITTLE NORTHSIDE QTR", "Name": "WENZEL, EARL & BEVERLY", "Address": "23-24&47A ESTATE CARET BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75900, "Improved_V": 182400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.732474779, "SHAPE_Area": 1136.3906054300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353714.262100003659725, 259536.63060000166297 ], [ 353687.002099998295307, 259518.253400001674891 ], [ 353665.0320999994874, 259541.504999998956919 ], [ 353661.73309999704361, 259550.13289999961853 ], [ 353698.773100003600121, 259556.346599999815226 ], [ 353714.262100003659725, 259536.63060000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97796226, "LATITUDE": 18.36575123, "OBJECTID_1": 175, "PARCEL_NO_": "101003022300", "Tax_Legal_": "CARET BAY 2E 25 LITTLE NORTHSIDE QTR", "Name": "WILLIAM CREQUE REVOCABLE TRUST", "Address": "PO Box 307788", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81600, "Improved_V": 224000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.15943005400001, "SHAPE_Area": 1246.17469549 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353798.221100002527237, 259525.285399999469519 ], [ 353786.954300001263618, 259522.660100001841784 ], [ 353779.497900001704693, 259546.030499998480082 ], [ 353827.783100001513958, 259557.402499999850988 ], [ 353837.654899999499321, 259534.47410000115633 ], [ 353798.221100002527237, 259525.285399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98130931, "LATITUDE": 18.36574944, "OBJECTID_1": 137, "PARCEL_NO_": "101003014000", "Tax_Legal_": "SORGENFRI 5-19 S S QTR", "Name": "WHITE, OLIVER H. & DANITA VANT", "Address": "PO Box 502845", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 120400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.20608456100001, "SHAPE_Area": 2130.6555800199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353424.938000001013279, 259517.586199998855591 ], [ 353422.211599998176098, 259553.660900000482798 ], [ 353431.887299999594688, 259553.740100000053644 ], [ 353465.750600002706051, 259554.228399999439716 ], [ 353486.734499998390675, 259552.078099999576807 ], [ 353488.588100001215935, 259523.806699998676777 ], [ 353479.718699999153614, 259523.734099999070168 ], [ 353467.643799997866154, 259521.313299998641014 ], [ 353440.250699996948242, 259518.555900000035763 ], [ 353424.938000001013279, 259517.586199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98188644, "LATITUDE": 18.36574194, "OBJECTID_1": 126, "PARCEL_NO_": "101003012700", "Tax_Legal_": "SORGENFRI 5-20 S S QTR", "Name": "LEWIS, WILBUR & MARIA", "Address": "PO Box 7265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 119000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.661857639, "SHAPE_Area": 2159.3379053200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353424.938000001013279, 259517.586199998855591 ], [ 353415.267599999904633, 259516.873799998313189 ], [ 353362.826700001955032, 259520.03319999948144 ], [ 353360.933600001037121, 259552.948300000280142 ], [ 353368.190399996936321, 259553.007699999958277 ], [ 353422.211599998176098, 259553.660900000482798 ], [ 353424.938000001013279, 259517.586199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98250006000001, "LATITUDE": 18.36572298, "OBJECTID_1": 132, "PARCEL_NO_": "101003013300", "Tax_Legal_": "SORGENFRI 5-21 1 SOUTHSIDE QTR", "Name": "BROWN, CHRISTIAN & W. GORDON", "Address": "8135 SW Ellman Ln", "City": "Portland", "State": "Oregon", "Zip": 97224, "Country": "United States", "Land_Value": 146800, "Improved_V": 123200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.999880856, "SHAPE_Area": 2555.9179394900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353293.207000002264977, 259551.971799999475479 ], [ 353360.933600001037121, 259552.948300000280142 ], [ 353362.826700001955032, 259520.03319999948144 ], [ 353351.552799999713898, 259518.252199999988079 ], [ 353337.906599998474121, 259510.963300000876188 ], [ 353329.859600000083447, 259508.997600000351667 ], [ 353318.560500003397465, 259510.171700000762939 ], [ 353299.959600001573563, 259516.563299998641014 ], [ 353295.785899996757507, 259533.205600000917912 ], [ 353293.207000002264977, 259551.971799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97650324, "LATITUDE": 18.36560406, "OBJECTID_1": 159, "PARCEL_NO_": "101003020600", "Tax_Legal_": "CARET BAY 2BA-3 8 LITTLE NORTHSIDE", "Name": "WALLACE, VITALIA", "Address": "PO Box 11812", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74200, "Improved_V": 180400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.344993316, "SHAPE_Area": 1561.4010832 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353987.855599999427795, 259509.105599999427795 ], [ 353940.288500003516674, 259508.083000000566244 ], [ 353933.633000001311302, 259532.093199998140335 ], [ 353980.26070000231266, 259548.729100000113249 ], [ 353987.855599999427795, 259509.105599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97844301000001, "LATITUDE": 18.36566779, "OBJECTID_1": 176, "PARCEL_NO_": "101003022400", "Tax_Legal_": "CARET BAY 2E 26 LITTLE NORTHSIDE QTR", "Name": "DAWES, PAULINE M", "Address": "2E-26 Estate Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78300, "Improved_V": 126600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.32019086599999, "SHAPE_Area": 1281.4935622600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353786.954300001263618, 259522.660100001841784 ], [ 353763.616200000047684, 259517.191700000315905 ], [ 353731.34570000320673, 259519.038600001484156 ], [ 353730.480099998414516, 259525.997600000351667 ], [ 353729.652199998497963, 259528.523899998515844 ], [ 353725.541500002145767, 259537.778400000184774 ], [ 353750.502999998629093, 259541.993500001728535 ], [ 353766.622100003063679, 259542.969799999147654 ], [ 353779.497900001704693, 259546.030499998480082 ], [ 353786.954300001263618, 259522.660100001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97709241, "LATITUDE": 18.36558852, "OBJECTID_1": 164, "PARCEL_NO_": "101003021200", "Tax_Legal_": "CARET BAY 2E-19 & 2E-20-A No.8 LITTLE NORTHSIDE QTR.", "Name": "NOEL HODGE and ROSELYN R SAMUEL-HODGE", "Address": "PO BOX 303896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90700, "Improved_V": 381400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.193954375, "SHAPE_Area": 1582.92287399 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353879.80969999730587, 259508.2212999984622 ], [ 353873.341499999165535, 259507.947500001639128 ], [ 353871.140000000596046, 259535.975900001823902 ], [ 353877.957900002598763, 259536.281599998474121 ], [ 353922.287100002169609, 259538.755399998277426 ], [ 353932.386100001633167, 259509.673099998384714 ], [ 353882.511600002646446, 259508.297899998724461 ], [ 353879.80969999730587, 259508.2212999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003027500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97887759, "LATITUDE": 18.36548546, "OBJECTID_1": 226, "PARCEL_NO_": "101003027500", "Tax_Legal_": "CARET BAY 2E-24A LITTLE NORTHSIDE QTR", "Name": "WILLIAMS, HAMBLET E. & SHELLEY T.", "Address": "PO Box 304288", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46400, "Improved_V": 216600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.016449276, "SHAPE_Area": 1154.0071727500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353687.002099998295307, 259518.253400001674891 ], [ 353714.262100003659725, 259536.63060000166297 ], [ 353719.1503000035882, 259530.760000001639128 ], [ 353721.608800001442432, 259526.136100001633167 ], [ 353728.508900001645088, 259473.419100001454353 ], [ 353687.002099998295307, 259518.253400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97750123, "LATITUDE": 18.36557859, "OBJECTID_1": 167, "PARCEL_NO_": "101003021500", "Tax_Legal_": "CARET BAY 2E-35 8 LITTLE NORTHSIDE", "Name": "HAMLIN, MARK", "Address": "PO Box 6813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046813, "Country": "United States", "Land_Value": 55600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.70509780099999, "SHAPE_Area": 873.67479392500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353873.341499999165535, 259507.947500001639128 ], [ 353861.269900001585484, 259507.436299998313189 ], [ 353847.596799999475479, 259503.3136 ], [ 353837.654899999499321, 259534.47410000115633 ], [ 353871.140000000596046, 259535.975900001823902 ], [ 353873.341499999165535, 259507.947500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003022200", "MAP": "F9-907-T62", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97780733, "LATITUDE": 18.36546863, "OBJECTID_1": 174, "PARCEL_NO_": "101003022200", "Tax_Legal_": "CARET BAY 2E-17 LITTLE NORTHSIDE", "Name": "DUDOVICK, MICHAEL & F", "Address": "BOX 2667", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75000, "Improved_V": 258000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.909371558, "SHAPE_Area": 1714.20575985 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353813.13459999859333, 259479.638399999588728 ], [ 353799.951200000941753, 259525.6886 ], [ 353837.654899999499321, 259534.47410000115633 ], [ 353847.596799999475479, 259503.3136 ], [ 353848.478200003504753, 259494.190200001001358 ], [ 353846.06870000064373, 259493.379700001329184 ], [ 353832.1300999969244, 259488.993000000715256 ], [ 353815.514200001955032, 259481.584699999541044 ], [ 353813.13459999859333, 259479.638399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101004010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97405565, "LATITUDE": 18.36537835, "OBJECTID_1": 342, "PARCEL_NO_": "101004010500", "Tax_Legal_": "53 CARET BAY LITTLE NORTHSIDE", "Name": "CAROLEY BRUNN LIVING TRUST & BEVERLY BRUNN", "Address": "PO Box 502221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 94700, "Improved_V": 304300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.29615703100001, "SHAPE_Area": 2125.6363108700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354188.627400003373623, 259510.7489 ], [ 354222.296499997377396, 259534.033599998801947 ], [ 354236.124300003051758, 259520.003499999642372 ], [ 354237.753100000321865, 259518.116999998688698 ], [ 354240.202600002288818, 259514.548500001430511 ], [ 354241.845799997448921, 259510.973299998790026 ], [ 354241.870999999344349, 259508.018199998885393 ], [ 354246.13629999756813, 259480.611000001430511 ], [ 354245.3766999989748, 259475.116300001740456 ], [ 354242.160499997437, 259474.034499999135733 ], [ 354228.442400000989437, 259475.188799999654293 ], [ 354214.708099998533726, 259478.242800001055002 ], [ 354211.463100001215935, 259480.53830000013113 ], [ 354200.840700000524521, 259496.916600000113249 ], [ 354195.153399996459484, 259501.936299998313189 ], [ 354188.666900001466274, 259506.105099998414516 ], [ 354188.627400003373623, 259510.7489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101004010600", "MAP": "D9-5004-T90", "PARCEL_NAM": "18", "ACRE": "0.52", "LONGITUDE": -64.97351794, "LATITUDE": 18.36537215, "OBJECTID_1": 343, "PARCEL_NO_": "101004010600", "Tax_Legal_": "CARET BAY 18 LT. NORTHSIDE", "Name": "MILLS, FRANK L. & LAURITZ C", "Address": "Po Box 304455", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 93300, "Improved_V": 337500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.29121093200001, "SHAPE_Area": 1651.3510318599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354250.745800003409386, 259507.457600001245737 ], [ 354301.352899998426437, 259530.247699998319149 ], [ 354300.668799996376038, 259515.887699998915195 ], [ 354299.133500002324581, 259506.798200000077486 ], [ 354296.793700002133846, 259497.490899998694658 ], [ 354295.222499996423721, 259492.622900001704693 ], [ 354291.273599997162819, 259482.880300000309944 ], [ 354273.572499997913837, 259478.302400000393391 ], [ 354263.8716000020504, 259481.178300000727177 ], [ 354257.37610000371933, 259486.402499999850988 ], [ 354254.096900001168251, 259492.708500001579523 ], [ 354250.745800003409386, 259507.457600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003022500", "MAP": "F9-907-T62", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97816129, "LATITUDE": 18.36537627, "OBJECTID_1": 177, "PARCEL_NO_": "101003022500", "Tax_Legal_": "CARET BAY 2E-16 LITTLE NORTHSIDE", "Name": "LEWIS, DEXTER O'NEAL", "Address": "BOX 2667", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 101500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.36732596100001, "SHAPE_Area": 1858.40700348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353811.523100003600121, 259478.32039999961853 ], [ 353770.435300000011921, 259473.973400000482798 ], [ 353763.616200000047684, 259517.191700000315905 ], [ 353786.954300001263618, 259522.660100001841784 ], [ 353798.221100002527237, 259525.285399999469519 ], [ 353799.951200000941753, 259525.6886 ], [ 353813.13459999859333, 259479.638399999588728 ], [ 353811.523100003600121, 259478.32039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97850723000001, "LATITUDE": 18.36534943, "OBJECTID_1": 178, "PARCEL_NO_": "101003022600", "Tax_Legal_": "CARET BAY 2E-27 LITTLE NORTHSIDE", "Name": "TONGE, COSMO & LAVERNE", "Address": "8063 W Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.003756571, "SHAPE_Area": 1469.99616898 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353770.435300000011921, 259473.973400000482798 ], [ 353739.017899997532368, 259470.338700000196695 ], [ 353731.34570000320673, 259519.038600001484156 ], [ 353763.616200000047684, 259517.191700000315905 ], [ 353770.435300000011921, 259473.973400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003014300", "MAP": "C9-41-T62", "PARCEL_NAM": "5-12", "ACRE": "0.46", "LONGITUDE": -64.98080064, "LATITUDE": 18.36532361, "OBJECTID_1": 140, "PARCEL_NO_": "101003014300", "Tax_Legal_": "5-12 SORGENFRI SOUTHSIDE QUARTER", "Name": "BERTRAND, ATTALAH R", "Address": "P.O.BOX 5313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 94800, "Improved_V": 258800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.92329549600001, "SHAPE_Area": 2309.7391340899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353539.031400002539158, 259500.46510000154376 ], [ 353538.467600002884865, 259464.83669999986887 ], [ 353531.815399996936321, 259466.320900000631809 ], [ 353526.968500003218651, 259467.33669999986887 ], [ 353476.883599996566772, 259477.903599999845028 ], [ 353480.604099996387959, 259514.453200001269579 ], [ 353487.859099999070168, 259514.723700001835823 ], [ 353497.54389999806881, 259513.747499998658895 ], [ 353533.115099996328354, 259503.061799999326468 ], [ 353539.031400002539158, 259500.46510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003014100", "MAP": "C9-41-T62", "PARCEL_NAM": "5-10", "ACRE": "0.55", "LONGITUDE": -64.98132474000001, "LATITUDE": 18.36524035, "OBJECTID_1": 138, "PARCEL_NO_": "101003014100", "Tax_Legal_": "SORGENFRI 5 11 1 SOUTHSIDE QTR", "Name": "BANFIELD, CLIVE E. C. , TRUSTEE", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 103000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.81633910299999, "SHAPE_Area": 3094.5378163099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353418.085799999535084, 259470.034099999815226 ], [ 353431.471199996769428, 259507.929400000721216 ], [ 353468.527400001883507, 259512.243500001728535 ], [ 353480.604099996387959, 259514.453200001269579 ], [ 353476.883599996566772, 259477.903599999845028 ], [ 353473.182899996638298, 259439.0320999994874 ], [ 353444.024400003254414, 259454.203299999237061 ], [ 353418.085799999535084, 259470.034099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003014900", "MAP": "C9-41-T62", "PARCEL_NAM": "5-15", "ACRE": "0.71", "LONGITUDE": -64.97931441, "LATITUDE": 18.36521627, "OBJECTID_1": 145, "PARCEL_NO_": "101003014900", "Tax_Legal_": "SORGENFI 5-15 S S QTR", "Name": "BENTON, C & GREAUX, A", "Address": "300 Martine Ave", "City": "White Plains", "State": "New York", "Zip": 10601, "Country": "United States", "Land_Value": 113600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.04283112900001, "SHAPE_Area": 2750.63479052 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353699.657799996435642, 259452.495799999684095 ], [ 353678.695500001311302, 259452.113200001418591 ], [ 353646.444799996912479, 259451.638099998235703 ], [ 353635.523999996483326, 259503.055599998682737 ], [ 353654.071000002324581, 259502.996300000697374 ], [ 353653.187299996614456, 259512.066100001335144 ], [ 353674.930799998342991, 259515.410399999469519 ], [ 353699.657799996435642, 259452.495799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003013800", "MAP": "C9-41-T62", "PARCEL_NAM": "5-11", "ACRE": "0.50", "LONGITUDE": -64.98184852, "LATITUDE": 18.36538763, "OBJECTID_1": 135, "PARCEL_NO_": "101003013800", "Tax_Legal_": "SORGENFRI 5-10 1 SOUTHSIDE QTR", "Name": "JANICE COLLINS REVOCABLE LIVING TRUST", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.67164761500001, "SHAPE_Area": 1629.90537621 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353431.471199996769428, 259507.929400000721216 ], [ 353418.085799999535084, 259470.034099999815226 ], [ 353390.523699998855591, 259487.118200000375509 ], [ 353370.281400002539158, 259496.8739 ], [ 353350.058799996972084, 259504.307799998670816 ], [ 353350.832800000905991, 259508.113800000399351 ], [ 353362.096000000834465, 259511.161299999803305 ], [ 353413.732299998402596, 259507.784200001507998 ], [ 353431.471199996769428, 259507.929400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97690212000001, "LATITUDE": 18.36528052, "OBJECTID_1": 163, "PARCEL_NO_": "101003021100", "Tax_Legal_": "CARET BAY 2E 6 REM. LITTLE NORTHSIDE QTR", "Name": "GONZALEZ, INARU D. R.", "Address": "PO Box 12058", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.606434584, "SHAPE_Area": 665.79929024099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353905.883199997246265, 259476.559599999338388 ], [ 353904.986900001764297, 259498.910900000482798 ], [ 353934.928000003099442, 259500.778900001198053 ], [ 353936.501500003039837, 259479.343299999833107 ], [ 353905.883199997246265, 259476.559599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97643137, "LATITUDE": 18.36526762, "OBJECTID_1": 160, "PARCEL_NO_": "101003020700", "Tax_Legal_": "CARET BAY 2BA 2 LITTLE NORTHSIDE QTR", "Name": "Irene O Thomas (Life Estate) & George Thomas", "Address": "2BA-2 Estate Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63900, "Improved_V": 313100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.311219099, "SHAPE_Area": 1824.8752445699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353992.943400003015995, 259479.805300001055002 ], [ 353999.667199999094009, 259447.774099998176098 ], [ 353991.605899997055531, 259447.497000001370907 ], [ 353984.097300000488758, 259476.988699998706579 ], [ 353947.84740000218153, 259472.681200001388788 ], [ 353941.982100002467632, 259498.597699999809265 ], [ 353940.288500003516674, 259508.083000000566244 ], [ 353987.855599999427795, 259509.105599999427795 ], [ 353987.886100001633167, 259505.517299998551607 ], [ 353992.943400003015995, 259479.805300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003028500", "MAP": "D9-3589-T86", "PARCEL_NAM": "2B-2-1", "ACRE": ".017", "LONGITUDE": -64.97578039, "LATITUDE": 18.3654077, "OBJECTID_1": 236, "PARCEL_NO_": "101003028500", "Tax_Legal_": "2B-2 REM. & 2B2-1 ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "EDINBOROUGH, CHARLES A. & LYDIA D.", "Address": "PO Box 1715", "City": "North Highlands", "State": "California", "Zip": 95660, "Country": "United States", "Land_Value": 9400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.276457093600001, "SHAPE_Area": 118.132851702 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354032.387100003659725, 259499.538499999791384 ], [ 354031.715999998152256, 259508.022999998182058 ], [ 354043.4983000010252, 259508.716699998825788 ], [ 354047.605400003492832, 259499.884399998933077 ], [ 354032.387100003659725, 259499.538499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003027900", "MAP": "D9-3589-T86", "PARCEL_NAM": "2B-2C", "ACRE": ".33", "LONGITUDE": -64.97595211, "LATITUDE": 18.36528333, "OBJECTID_1": 230, "PARCEL_NO_": "101003027900", "Tax_Legal_": "CARET BAY 2B-2C LITTLE NORTHSIDE", "Name": "EDINBOROUGH, CHARLES A. & LYDIA D.", "Address": "PO Box 1715", "City": "North Highlands", "State": "California", "Zip": 95660, "Country": "United States", "Land_Value": 75000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.559891064, "SHAPE_Area": 1589.99168252 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354027.64360000193119, 259476.711800001561642 ], [ 353992.943400003015995, 259479.805300001055002 ], [ 353987.886100001633167, 259505.517299998551607 ], [ 354018.513400003314018, 259507.245600000023842 ], [ 354018.581799998879433, 259499.224599998444319 ], [ 354047.605400003492832, 259499.884399998933077 ], [ 354049.254000000655651, 259495.675999999046326 ], [ 354051.721500001847744, 259489.996700000017881 ], [ 354058.308700002729893, 259474.007500000298023 ], [ 354027.64360000193119, 259476.711800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003014600", "MAP": "C9-41-T62", "PARCEL_NAM": "5-13", "ACRE": "0.58", "LONGITUDE": -64.98025312, "LATITUDE": 18.36519829, "OBJECTID_1": 142, "PARCEL_NO_": "101003014600", "Tax_Legal_": "SORGENFRI 5-13 1 SOUTHSIDE QTR", "Name": "JOSEPH, RONALD M.", "Address": "PO Box 104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 114600, "Improved_V": 98800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.64782841100001, "SHAPE_Area": 1991.0578300300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353538.467600002884865, 259464.83669999986887 ], [ 353539.031400002539158, 259500.46510000154376 ], [ 353544.446699999272823, 259498.088300000876188 ], [ 353559.793600000441074, 259495.047499999403954 ], [ 353571.888199999928474, 259495.146499998867512 ], [ 353587.181199997663498, 259498.438000001013279 ], [ 353595.639899998903275, 259452.066700000315905 ], [ 353581.097499996423721, 259455.325199998915195 ], [ 353538.467600002884865, 259464.83669999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003014800", "MAP": "C9-41-T62", "PARCEL_NAM": "5-14", "ACRE": "0.60", "LONGITUDE": -64.97977855000001, "LATITUDE": 18.36518884, "OBJECTID_1": 144, "PARCEL_NO_": "101003014800", "Tax_Legal_": "SORGENFRI 5-14 SOUTHSIDE QTR", "Name": "JOSEPH, RONALD G.", "Address": "6470 Heritage Park Blvd", "City": "Dayton", "State": "Ohio", "Zip": 45424, "Country": "United States", "Land_Value": 117500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.29636436600001, "SHAPE_Area": 2513.9648110500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353646.444799996912479, 259451.638099998235703 ], [ 353609.358000002801418, 259450.912399999797344 ], [ 353602.101199999451637, 259450.853000000119209 ], [ 353595.639899998903275, 259452.066700000315905 ], [ 353587.181199997663498, 259498.438000001013279 ], [ 353589.596600003540516, 259498.879999998956919 ], [ 353617.785099998116493, 259502.910399999469519 ], [ 353635.523999996483326, 259503.055599998682737 ], [ 353646.444799996912479, 259451.638099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101004010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97455585, "LATITUDE": 18.36492956, "OBJECTID_1": 344, "PARCEL_NO_": "101004010700", "Tax_Legal_": "CARET BAY 14 8 LITTLE NORTHSIDE QTR", "Name": "FARRELL, NANCY L. (TRUSTEE)", "Address": "PO Box 304505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 409600, "Improved_V": 185800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 502.24130295100002, "SHAPE_Area": 12525.732449700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354082.074699997901917, 259429.239000000059605 ], [ 354077.926299996674061, 259442.926199998706579 ], [ 354083.518299996852875, 259449.093699999153614 ], [ 354108.122000001370907, 259495.313400000333786 ], [ 354115.32490000128746, 259501.705200001597404 ], [ 354125.776399999856949, 259505.379299998283386 ], [ 354131.42059999704361, 259505.425500001758337 ], [ 354184.710900001227856, 259497.206799998879433 ], [ 354190.383900001645088, 259493.875799998641014 ], [ 354194.447800002992153, 259490.109299998730421 ], [ 354203.439499996602535, 259475.828600000590086 ], [ 354206.689900003373623, 259472.899900000542402 ], [ 354208.313299998641014, 259471.646600000560284 ], [ 354211.556599996984005, 259469.562199998646975 ], [ 354219.635899998247623, 259467.728500001132488 ], [ 354239.00900000333786, 259465.353900000452995 ], [ 354253.526199996471405, 259465.050500001758337 ], [ 354270.439000003039837, 259467.510999999940395 ], [ 354284.117499999701977, 259471.000399999320507 ], [ 354279.349799998104572, 259462.728799998760223 ], [ 354277.756899997591972, 259460.393699999898672 ], [ 354271.374700002372265, 259452.319899998605251 ], [ 354257.782499998807907, 259438.698699999600649 ], [ 354243.353399999439716, 259428.659200001507998 ], [ 354195.195799998939037, 259402.300500001758337 ], [ 354183.930799998342991, 259399.464099999517202 ], [ 354174.256899997591972, 259399.173799999058247 ], [ 354165.371299996972084, 259401.000999998301268 ], [ 354136.212700001895428, 259416.172100000083447 ], [ 354110.318999998271465, 259426.725999999791384 ], [ 354096.584799997508526, 259429.780000001192093 ], [ 354082.074699997901917, 259429.239000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003033700", "MAP": "F9-1487-T64", "PARCEL_NAM": "47", "ACRE": "0.50", "LONGITUDE": -64.97540912, "LATITUDE": 18.36528076, "OBJECTID_1": 274, "PARCEL_NO_": "101003033700", "Tax_Legal_": "CARET BAY 47 LT. NORTHSIDE", "Name": "BLAKE, FELICIA V. & ERIC", "Address": "PO Box 304191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.817859406, "SHAPE_Area": 2148.6716006000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354076.212999999523163, 259454.733399998396635 ], [ 354071.459600001573563, 259444.77309999987483 ], [ 354066.54619999974966, 259453.598799999803305 ], [ 354058.308700002729893, 259474.007500000298023 ], [ 354051.721500001847744, 259489.996700000017881 ], [ 354049.254000000655651, 259495.675999999046326 ], [ 354048.431800000369549, 259497.77479999884963 ], [ 354075.418499998748302, 259510.278299998492002 ], [ 354086.983300000429153, 259515.636500000953674 ], [ 354101.491700001060963, 259522.358600001782179 ], [ 354105.149599999189377, 259522.788899999111891 ], [ 354110.528899997472763, 259520.637200001627207 ], [ 354113.104800000786781, 259516.902100000530481 ], [ 354104.810400001704693, 259505.418800000101328 ], [ 354097.639899998903275, 259495.227600000798702 ], [ 354076.212999999523163, 259454.733399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003028100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97719101, "LATITUDE": 18.36527017, "OBJECTID_1": 232, "PARCEL_NO_": "101003028100", "Tax_Legal_": "CARET BAY 2E-7 LT. NORTHSIDE QTR.", "Name": "JAMES T TEMPLETON FAMILY TRUST", "Address": "PO BOX 503087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37800, "Improved_V": 141300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.67071007200001, "SHAPE_Area": 736.773346307 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353905.883199997246265, 259476.559599999338388 ], [ 353876.069399997591972, 259473.993599999696016 ], [ 353874.239200003445148, 259499.520899999886751 ], [ 353891.170000001788139, 259499.870600000023842 ], [ 353904.986900001764297, 259498.910900000482798 ], [ 353905.883199997246265, 259476.559599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003021800", "MAP": "F9-907-T62", "PARCEL_NAM": "2E-8", "ACRE": null, "LONGITUDE": -64.97745074, "LATITUDE": 18.36524855, "OBJECTID_1": 170, "PARCEL_NO_": "101003021800", "Tax_Legal_": "CARET BAY 2E-8, 8A & 18 LITTLE NORTHSIDE", "Name": "HAMLIN, MARK", "Address": "PO Box 6813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046813, "Country": "United States", "Land_Value": 57700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.625183679, "SHAPE_Area": 658.03396755000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353851.194300003349781, 259469.954199999570847 ], [ 353848.478200003504753, 259494.190200001001358 ], [ 353858.933700002729893, 259497.706900000572205 ], [ 353874.239200003445148, 259499.520899999886751 ], [ 353876.069399997591972, 259473.993599999696016 ], [ 353851.194300003349781, 259469.954199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97771567, "LATITUDE": 18.36519172, "OBJECTID_1": 173, "PARCEL_NO_": "101003022100", "Tax_Legal_": "CARET BAY 2E-9 LITTLE NORTHSIDE QTR", "Name": "CORNEIRO, JR, EDUARDO J", "Address": "403AB Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37500, "Improved_V": 183100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.625520236, "SHAPE_Area": 702.33691962399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353848.690800003707409, 259469.547600001096725 ], [ 353819.699500001966953, 259465.088500000536442 ], [ 353818.860799998044968, 259468.881299998611212 ], [ 353815.514200001955032, 259481.584699999541044 ], [ 353832.1300999969244, 259488.993000000715256 ], [ 353837.73929999768734, 259490.6864 ], [ 353846.06870000064373, 259493.379700001329184 ], [ 353848.478200003504753, 259494.190200001001358 ], [ 353851.194300003349781, 259469.954199999570847 ], [ 353848.690800003707409, 259469.547600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602014900", "MAP": "C9-74-T67", "PARCEL_NAM": "13", "ACRE": ".98", "LONGITUDE": -64.97311344000001, "LATITUDE": 18.36495507, "OBJECTID_1": 2396, "PARCEL_NO_": "102602014900", "Tax_Legal_": "13-REM CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "CASA RISOTTO INC", "Address": "PO Box 1623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 115000, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.02732853600003, "SHAPE_Area": 3968.9299263500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354345.244400002062321, 259489.44370000064373 ], [ 354365.871500000357628, 259434.517099998891354 ], [ 354295.805200003087521, 259427.004399999976158 ], [ 354271.491599999368191, 259438.599800001829863 ], [ 354287.452399998903275, 259458.151000000536442 ], [ 354295.414899997413158, 259470.037399999797344 ], [ 354298.587999999523163, 259476.185100000351667 ], [ 354303.318000003695488, 259488.889400001615286 ], [ 354345.244400002062321, 259489.44370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502072000", "MAP": "A9-306-T84", "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.99261982, "LATITUDE": 18.36339533, "OBJECTID_1": 2050, "PARCEL_NO_": "102502072000", "Tax_Legal_": "9 SANTA MARIA NO.1 WEST END QTR", "Name": "BOSCHULTE, LIONEL T.H. & OTHERS", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1132300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1922.4060785, "SHAPE_Area": 96292.641612899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352534.638099998235703, 259336.358500000089407 ], [ 352477.546400003135204, 259317.526000000536442 ], [ 352443.763999998569489, 259307.539299998432398 ], [ 352434.9341000020504, 259302.822900000959635 ], [ 352422.115800000727177, 259293.007699999958277 ], [ 352414.128200002014637, 259284.076400000602007 ], [ 352397.429399996995926, 259256.497600000351667 ], [ 352391.848099999129772, 259249.0636 ], [ 352387.083999998867512, 259240.369800001382828 ], [ 352385.480400003492832, 259239.301199998706579 ], [ 352383.102799996733665, 259234.426600001752377 ], [ 352381.500900000333786, 259233.146899998188019 ], [ 352379.125200003385544, 259228.061200000345707 ], [ 352375.131399996578693, 259223.595600001513958 ], [ 352363.988600000739098, 259206.405799999833107 ], [ 352359.9966000020504, 259201.729100000113249 ], [ 352356.787600003182888, 259199.802999999374151 ], [ 352346.325300000607967, 259197.395300000905991 ], [ 352314.103399999439716, 259193.543000001460314 ], [ 352292.383299998939037, 259187.454599998891354 ], [ 352281.143500000238419, 259181.663100000470877 ], [ 352274.741499997675419, 259175.911200001835823 ], [ 352267.560199998319149, 259166.9864999987185 ], [ 352265.184399999678135, 259161.900800000876188 ], [ 352262.088699996471405, 259146.676699999719858 ], [ 352262.20549999922514, 259132.956599999219179 ], [ 352263.870300002396107, 259126.848499998450279 ], [ 352308.290500000119209, 259023.987300001084805 ], [ 352318.099299997091293, 259008.446600001305342 ], [ 352320.572200000286102, 259002.134100001305342 ], [ 352322.197400003671646, 259000.669700000435114 ], [ 352327.123400002717972, 258990.366500001400709 ], [ 352327.947700001299381, 258988.262299999594688 ], [ 352331.221500001847744, 258982.589499998837709 ], [ 352332.846699997782707, 258981.125199999660254 ], [ 352333.678199999034405, 258978.176699999719858 ], [ 352337.779899999499321, 258969.977600000798702 ], [ 352341.876199997961521, 258962.411800000816584 ], [ 352344.336499996483326, 258957.576699998229742 ], [ 352350.898500002920628, 258944.542599998414516 ], [ 352358.282899998128414, 258929.61540000140667 ], [ 352363.212499998509884, 258918.890000000596046 ], [ 352366.495300002396107, 258912.161899998784065 ], [ 352371.406900003552437, 258903.5472999997437 ], [ 352373.066299997270107, 258898.072399999946356 ], [ 352374.711300000548363, 258894.286200001835823 ], [ 352378.800399996340275, 258887.564699999988079 ], [ 352381.264300003647804, 258882.307500001043081 ], [ 352382.090400002896786, 258879.992199998348951 ], [ 352382.930900000035763, 258875.988299999386072 ], [ 352387.023599997162819, 258868.8445999994874 ], [ 352388.668499998748302, 258865.058400001376867 ], [ 352391.135999999940395, 258859.379099998623133 ], [ 352392.782799996435642, 258855.381799999624491 ], [ 352394.425999999046326, 258851.806600000709295 ], [ 352396.891699999570847, 258846.33839999884367 ], [ 352398.540299996733665, 258842.129999998956919 ], [ 352401.850100003182888, 258832.235700000077486 ], [ 352405.13289999961853, 258825.507599998265505 ], [ 352407.632700003683567, 258816.028799999505281 ], [ 352141.085500001907349, 259173.576999999582767 ], [ 352144.892800003290176, 259178.64809999987483 ], [ 352146.455099999904633, 259184.57149999961257 ], [ 352148.04619999974966, 259187.117600001394749 ], [ 352147.96339999884367, 259196.827300000935793 ], [ 352146.194399997591972, 259215.17790000140667 ], [ 352129.791199997067451, 259247.552099999040365 ], [ 352118.285199999809265, 259273.000199999660254 ], [ 352109.140699997544289, 259305.222699999809265 ], [ 352103.837099999189377, 259359.85249999910593 ], [ 352098.727700002491474, 259391.6858000010252 ], [ 352096.175700001418591, 259407.285900000482798 ], [ 352089.565099999308586, 259426.019099999219179 ], [ 352088.692299999296665, 259433.822399999946356 ], [ 352091.015900000929832, 259445.029399998486042 ], [ 352099.815200001001358, 259453.334100000560284 ], [ 352131.207500003278255, 259459.923799999058247 ], [ 352160.999700002372265, 259465.022799998521805 ], [ 352176.272900000214577, 259470.636199999600649 ], [ 352482.881300002336502, 259353.87779999896884 ], [ 352534.638099998235703, 259336.358500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601010200", "MAP": "C9-41-T62", "PARCEL_NAM": "5-9", "ACRE": ".57", "LONGITUDE": -64.98086584000001, "LATITUDE": 18.36496473, "OBJECTID_1": 2171, "PARCEL_NO_": "102601010200", "Tax_Legal_": "5-9 SORGENFRI SOUTHSIDE QUARTER", "Name": "VICTOR E SYDNEY LIV TR", "Address": "PO Box 308850", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.977853391, "SHAPE_Area": 2418.2367262600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353538.467600002884865, 259464.83669999986887 ], [ 353510.111900001764297, 259416.072000000625849 ], [ 353505.604500003159046, 259419.454700000584126 ], [ 353502.359399996697903, 259421.750100001692772 ], [ 353488.572999998927116, 259430.925400000065565 ], [ 353473.182899996638298, 259439.0320999994874 ], [ 353476.883599996566772, 259477.903599999845028 ], [ 353526.968500003218651, 259467.33669999986887 ], [ 353531.815399996936321, 259466.320900000631809 ], [ 353538.467600002884865, 259464.83669999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97808825, "LATITUDE": 18.36507248, "OBJECTID_1": 179, "PARCEL_NO_": "101003022700", "Tax_Legal_": "CARET BAY 2E-14 LITTLE NORTHSIDE", "Name": "NILES, HELEN & ANTHONY", "Address": "PO Box 302743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 227700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.629350157, "SHAPE_Area": 961.31143734800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353788.362999998033047, 259451.955299999564886 ], [ 353780.3125, 259450.411699999123812 ], [ 353770.435300000011921, 259473.973400000482798 ], [ 353811.523100003600121, 259478.32039999961853 ], [ 353819.959200002253056, 259456.184599999338388 ], [ 353788.362999998033047, 259451.955299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97688238000001, "LATITUDE": 18.36502739, "OBJECTID_1": 162, "PARCEL_NO_": "101003021000", "Tax_Legal_": "CARET BAY 2E-4 REM & 2E-1-A LITTLE NORTHISIDE QTR", "Name": "GONZALEZ, INARU D. R.", "Address": "PO Box 12058", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45300, "Improved_V": 231600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.952785339, "SHAPE_Area": 1110.8575891800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353906.977300003170967, 259442.793600000441074 ], [ 353905.883199997246265, 259476.559599999338388 ], [ 353936.501500003039837, 259479.343299999833107 ], [ 353939.874200001358986, 259462.061299998313189 ], [ 353940.01630000025034, 259445.385999999940395 ], [ 353906.977300003170967, 259442.793600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97716895000001, "LATITUDE": 18.3650126, "OBJECTID_1": 169, "PARCEL_NO_": "101003021700", "Tax_Legal_": "CARET BAY 2E-1(REM), 2E-4-A & 2E-6-A LITTLE NORTHSIDE QTR", "Name": "DINION, ROBERT", "Address": "8058 Caret Bay E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38200, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.05880725, "SHAPE_Area": 936.39764994899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353881.189599998295307, 259440.893800001591444 ], [ 353876.069399997591972, 259473.993599999696016 ], [ 353905.883199997246265, 259476.559599999338388 ], [ 353906.977300003170967, 259442.793600000441074 ], [ 353881.189599998295307, 259440.893800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97644812, "LATITUDE": 18.36502083, "OBJECTID_1": 161, "PARCEL_NO_": "101003020800", "Tax_Legal_": "CARET BAY 2BA 1 LITTLE MORTHSIDE QTR", "Name": "EBY, CAROL ANN PEPIN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74200, "Improved_V": 177800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.32269957299999, "SHAPE_Area": 1112.0500958299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353947.84740000218153, 259472.681200001388788 ], [ 353984.097300000488758, 259476.988699998706579 ], [ 353991.605899997055531, 259447.497000001370907 ], [ 353948.880300000309944, 259446.091899998486042 ], [ 353948.723899997770786, 259464.455699998885393 ], [ 353947.84740000218153, 259472.681200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97843585, "LATITUDE": 18.36502897, "OBJECTID_1": 182, "PARCEL_NO_": "101003023000", "Tax_Legal_": "2E-15 CARET BAY No.8 LITTLE NORTHSIDE QTR", "Name": "TONGE, TEVJE", "Address": "8063 W Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 254400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.136209538, "SHAPE_Area": 860.73920516299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353780.3125, 259450.411699999123812 ], [ 353748.911200001835823, 259444.877399999648333 ], [ 353747.282399997115135, 259446.763900000602007 ], [ 353745.641000002622604, 259450.127999998629093 ], [ 353743.198700003325939, 259452.852200001478195 ], [ 353740.729400001466274, 259458.742600001394749 ], [ 353739.057499997317791, 259465.695000000298023 ], [ 353739.017899997532368, 259470.338700000196695 ], [ 353770.435300000011921, 259473.973400000482798 ], [ 353780.3125, 259450.411699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97742124, "LATITUDE": 18.36498426, "OBJECTID_1": 171, "PARCEL_NO_": "101003021900", "Tax_Legal_": "CARET BAY 2E 5 LITTLE NORTHSIDE", "Name": "HAMLIN, MARK", "Address": "PO Box 6813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046813, "Country": "United States", "Land_Value": 45300, "Improved_V": 246900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.96767229, "SHAPE_Area": 846.797568179 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353854.831699997186661, 259437.496199999004602 ], [ 353851.194300003349781, 259469.954199999570847 ], [ 353876.069399997591972, 259473.993599999696016 ], [ 353881.189599998295307, 259440.893800001591444 ], [ 353866.685000002384186, 259439.7195999994874 ], [ 353854.831699997186661, 259437.496199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601010300", "MAP": "C9-41-T62", "PARCEL_NAM": "5-8", "ACRE": "0.69", "LONGITUDE": -64.98046584, "LATITUDE": 18.36478313, "OBJECTID_1": 2172, "PARCEL_NO_": "102601010300", "Tax_Legal_": "SORGENFRI 5-8 S S QTR", "Name": "DOSS, EMANUEL & DIANE & ELIZABETH", "Address": "P.O. BOX 5264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 110700, "Improved_V": 128600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.95692739, "SHAPE_Area": 2785.1781244099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353510.111900001764297, 259416.072000000625849 ], [ 353538.467600002884865, 259464.83669999986887 ], [ 353581.097499996423721, 259455.325199998915195 ], [ 353542.966399997472763, 259387.885299999266863 ], [ 353537.268200002610683, 259394.171500001102686 ], [ 353525.081799998879433, 259404.837499998509884 ], [ 353510.111900001764297, 259416.072000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97767081000001, "LATITUDE": 18.36495529, "OBJECTID_1": 172, "PARCEL_NO_": "101003022000", "Tax_Legal_": "CARET BAY 2E 10 LITTLE NORTHSIDE QTR", "Name": "DOUGLAS, LEROY & LYDIA", "Address": "PO Box 12", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30700, "Improved_V": 176500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.64155985799999, "SHAPE_Area": 895.10349207700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353851.388400003314018, 259436.85020000115037 ], [ 353838.51799999922514, 259433.156300000846386 ], [ 353833.671099998056889, 259434.172100000083447 ], [ 353830.413500003516674, 259437.945099998265505 ], [ 353825.4425999969244, 259453.525299999862909 ], [ 353824.620099999010563, 259455.418400000780821 ], [ 353820.523800000548363, 259462.984299998730421 ], [ 353819.699500001966953, 259465.088500000536442 ], [ 353848.690800003707409, 259469.547600001096725 ], [ 353851.194300003349781, 259469.954199999570847 ], [ 353854.831699997186661, 259437.496199999004602 ], [ 353851.388400003314018, 259436.85020000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601010500", "MAP": "C9-41-T62", "PARCEL_NAM": "5-7", "ACRE": "0.94", "LONGITUDE": -64.98011249, "LATITUDE": 18.36459245, "OBJECTID_1": 2174, "PARCEL_NO_": "102601010500", "Tax_Legal_": "5-7 SORGENFRI No.1 SOUTHSIDE QTR.", "Name": "WARNER, EDWIN M. & PERSHA S", "Address": "PO Box 305814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 147000, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.596111759, "SHAPE_Area": 3700.4784057000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353609.358000002801418, 259450.912399999797344 ], [ 353605.934299997985363, 259379.534800000488758 ], [ 353565.668999999761581, 259373.294599998742342 ], [ 353561.63740000128746, 259373.261599998921156 ], [ 353555.165399998426437, 259375.741700001060963 ], [ 353551.914899997413158, 259378.670400001108646 ], [ 353542.966399997472763, 259387.885299999266863 ], [ 353581.097499996423721, 259455.325199998915195 ], [ 353595.639899998903275, 259452.066700000315905 ], [ 353602.101199999451637, 259450.853000000119209 ], [ 353609.358000002801418, 259450.912399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97801546, "LATITUDE": 18.36489513, "OBJECTID_1": 180, "PARCEL_NO_": "101003022800", "Tax_Legal_": "CARET BAY 2E-13 LITTLE NORTHSIDE", "Name": "DARDEN, JONETTA & HILL, BENJAM", "Address": "PO BOX 12329", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.21291559, "SHAPE_Area": 500.97880702399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353821.4408999979496, 259448.882100000977516 ], [ 353793.402300000190735, 259428.353999998420477 ], [ 353788.362999998033047, 259451.955299999564886 ], [ 353819.959200002253056, 259456.184599999338388 ], [ 353820.700099997222424, 259452.374600000679493 ], [ 353821.4408999979496, 259448.882100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011200", "MAP": "C9-41-T62", "PARCEL_NAM": "5-5", "ACRE": "0.86", "LONGITUDE": -64.97905372, "LATITUDE": 18.36460967, "OBJECTID_1": 2181, "PARCEL_NO_": "102601011200", "Tax_Legal_": "SORGENFRI 5-5 S S QTR", "Name": "DAVIS, ROOSEVELT J.", "Address": "PO Box 8919", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 135400, "Improved_V": 284400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.004775803, "SHAPE_Area": 2465.8781344200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353672.122000001370907, 259371.843800000846386 ], [ 353678.695500001311302, 259452.113200001418591 ], [ 353699.657799996435642, 259452.495799999684095 ], [ 353721.992899999022484, 259386.395300000905991 ], [ 353698.654799997806549, 259380.926899999380112 ], [ 353697.011600002646446, 259384.502099998295307 ], [ 353695.391800001263618, 259385.333200000226498 ], [ 353692.150399997830391, 259387.206500001251698 ], [ 353688.122400000691414, 259386.751299999654293 ], [ 353685.715999998152256, 259385.254000000655651 ], [ 353683.32769999653101, 259381.645799998193979 ], [ 353676.913099996745586, 259377.371500000357628 ], [ 353674.513999998569489, 259375.029800001531839 ], [ 353672.122000001370907, 259371.843800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601010700", "MAP": "C9-41-T62", "PARCEL_NAM": "5-6", "ACRE": "1.15", "LONGITUDE": -64.97953032, "LATITUDE": 18.36457231, "OBJECTID_1": 2176, "PARCEL_NO_": "102601010700", "Tax_Legal_": "5-6 SORGENFRI NO. 1 SOUTHSIDE QTR", "Name": "CRAKER, MELISA", "Address": "PO Box 308546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 177400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.00198452500001, "SHAPE_Area": 5809.1749796000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353672.122000001370907, 259371.843800000846386 ], [ 353669.73369999974966, 259368.235700000077486 ], [ 353667.368699997663498, 259361.883499998599291 ], [ 353665.781199999153614, 259358.915199998766184 ], [ 353662.593699999153614, 259354.456199999898672 ], [ 353656.193599998950958, 259348.493200000375509 ], [ 353650.553000003099442, 259348.02479999884963 ], [ 353646.490800000727177, 259351.580200001597404 ], [ 353637.477600000798702, 259368.393899999558926 ], [ 353630.973099999129772, 259374.67339999973774 ], [ 353626.11370000243187, 259377.166799999773502 ], [ 353605.934299997985363, 259379.534800000488758 ], [ 353609.358000002801418, 259450.912399999797344 ], [ 353646.444799996912479, 259451.638099998235703 ], [ 353678.695500001311302, 259452.113200001418591 ], [ 353672.122000001370907, 259371.843800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97827353, "LATITUDE": 18.36482498, "OBJECTID_1": 181, "PARCEL_NO_": "101003022900", "Tax_Legal_": "CARET BAY 2E 12 LITTLE NORTHSIDE QTR", "Name": "HILL,JR.,BENJAMIN A. &, JONETTA DARDEN", "Address": "PO BOX 12329", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32800, "Improved_V": 128800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.82029377800001, "SHAPE_Area": 801.50534758000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353793.402300000190735, 259428.353999998420477 ], [ 353781.392099998891354, 259418.334399998188019 ], [ 353770.832699999213219, 259427.324999999254942 ], [ 353751.350000001490116, 259442.575300000607967 ], [ 353748.911200001835823, 259444.877399999648333 ], [ 353780.3125, 259450.411699999123812 ], [ 353788.362999998033047, 259451.955299999564886 ], [ 353793.402300000190735, 259428.353999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97798189, "LATITUDE": 18.36472103, "OBJECTID_1": 2184, "PARCEL_NO_": "102601011500", "Tax_Legal_": "CARET BAY 2E-11 LITTLE NORTHSIDE", "Name": "DOUGLAS, LEROY & LYDIA", "Address": "PO Box 12", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.98759676099999, "SHAPE_Area": 898.46730986399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353781.392099998891354, 259418.334399998188019 ], [ 353793.402300000190735, 259428.353999998420477 ], [ 353821.4408999979496, 259448.882100000977516 ], [ 353826.944200001657009, 259428.879599999636412 ], [ 353827.896700002253056, 259426.23369999974966 ], [ 353813.715000003576279, 259417.132100000977516 ], [ 353798.407399997115135, 259408.763300001621246 ], [ 353791.956900000572205, 259408.710499998182058 ], [ 353781.392099998891354, 259418.334399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012500", "MAP": "C9-154-T72", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9758239, "LATITUDE": 18.36472073, "OBJECTID_1": 2194, "PARCEL_NO_": "102601012500", "Tax_Legal_": "6-1-A,B&C CARET BAY LITTLE NORTHSIDE QUARTER", "Name": "MURRAINE, ELLEN BOSCHULTE", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 203600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.325121591, "SHAPE_Area": 1294.51409223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354037.875, 259411.567600000649691 ], [ 354011.266699999570847, 259411.349800001829863 ], [ 354010.230200000107288, 259438.361299999058247 ], [ 354015.068099997937679, 259438.40089999884367 ], [ 354028.770000003278255, 259439.14640000090003 ], [ 354071.459600001573563, 259444.77309999987483 ], [ 354044.302100002765656, 259414.364399999380112 ], [ 354040.29389999806881, 259411.587400000542402 ], [ 354037.875, 259411.567600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601013700", "MAP": "C9-154-T72", "PARCEL_NAM": "61D", "ACRE": null, "LONGITUDE": -64.97549364, "LATITUDE": 18.36472554, "OBJECTID_1": 2206, "PARCEL_NO_": "102601013700", "Tax_Legal_": "61D ESTATE CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "BOSCHULTE, LIONEL & OTHERS", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.474864174900006, "SHAPE_Area": 228.67426898400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354077.926299996674061, 259442.926199998706579 ], [ 354082.074699997901917, 259429.239000000059605 ], [ 354073.228699997067451, 259426.422400001436472 ], [ 354066.004199996590614, 259422.5636 ], [ 354059.587899997830391, 259418.500300001353025 ], [ 354053.994099996984005, 259412.5439000017941 ], [ 354051.560699999332428, 259414.212699998170137 ], [ 354077.926299996674061, 259442.926199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012500", "MAP": "C9-154-T72", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97630427, "LATITUDE": 18.36469443, "OBJECTID_1": 2194, "PARCEL_NO_": "102601012500", "Tax_Legal_": "6-1-A,B&C CARET BAY LITTLE NORTHSIDE QUARTER", "Name": "MURRAINE, ELLEN BOSCHULTE", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 203600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.290385528, "SHAPE_Area": 1432.5494591700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354011.266699999570847, 259411.349800001829863 ], [ 353958.051899999380112, 259410.703200001269579 ], [ 353957.017200000584126, 259437.503600001335144 ], [ 354010.230200000107288, 259438.361299999058247 ], [ 354011.266699999570847, 259411.349800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012500", "MAP": "C9-154-T72", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97697723, "LATITUDE": 18.36467814, "OBJECTID_1": 2194, "PARCEL_NO_": "102601012500", "Tax_Legal_": "6-1-A,B&C CARET BAY LITTLE NORTHSIDE QUARTER", "Name": "MURRAINE, ELLEN BOSCHULTE", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 203600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.78886840300001, "SHAPE_Area": 2203.1666826400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353958.051899999380112, 259410.703200001269579 ], [ 353864.52139999717474, 259409.726599998772144 ], [ 353864.347000002861023, 259430.201299998909235 ], [ 353957.017200000584126, 259437.503600001335144 ], [ 353958.051899999380112, 259410.703200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011600", "MAP": "F9-720-T61", "PARCEL_NAM": "2E-2", "ACRE": "0.59", "LONGITUDE": -64.97763903000001, "LATITUDE": 18.3643702, "OBJECTID_1": 2185, "PARCEL_NO_": "102601011600", "Tax_Legal_": "CARET BAY 2E-2 LITTLE NORTHSIDE", "Name": "BERRY, RICK and DENISE", "Address": "7471 Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91700, "Improved_V": 209000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.375407989, "SHAPE_Area": 3482.59674619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353866.495800003409386, 259338.086199998855591 ], [ 353843.383900001645088, 259335.248700000345707 ], [ 353847.37049999833107, 259340.558600001037121 ], [ 353846.468900002539158, 259351.739199999719858 ], [ 353830.680299997329712, 259368.309999998658895 ], [ 353825.3141999989748, 259373.94200000166893 ], [ 353804.157700002193451, 259396.355900000780821 ], [ 353804.125299997627735, 259400.155299998819828 ], [ 353805.710900001227856, 259403.334699999541044 ], [ 353821.741899996995926, 259414.653799999505281 ], [ 353832.173600003123283, 259420.64979999884963 ], [ 353847.452200002968311, 259425.629999998956919 ], [ 353854.6891999989748, 259428.011300001293421 ], [ 353864.347000002861023, 259430.201299998909235 ], [ 353864.52139999717474, 259409.726599998772144 ], [ 353865.617200002074242, 259375.749499998986721 ], [ 353866.495800003409386, 259338.086199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97387001, "LATITUDE": 18.3644828, "OBJECTID_1": 2409, "PARCEL_NO_": "102602016500", "Tax_Legal_": "CARET BAY 11B LITTLE NORTHSIDE QTR", "Name": "WALLACE COLE, CHERRIE", "Address": "PO Box 306327", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59500, "Improved_V": 325900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.900564574, "SHAPE_Area": 871.20550176200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354257.879600003361702, 259427.300400000065565 ], [ 354250.991400003433228, 259383.969900000840425 ], [ 354227.559799998998642, 259389.477600000798702 ], [ 354222.572700001299381, 259406.957600001245737 ], [ 354247.455099999904633, 259420.460099998861551 ], [ 354257.879600003361702, 259427.300400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012800", "MAP": "C9-154-T72", "PARCEL_NAM": "62", "ACRE": "4.41", "LONGITUDE": -64.97505272, "LATITUDE": 18.36399473, "OBJECTID_1": 2197, "PARCEL_NO_": "102601012800", "Tax_Legal_": "62 ESTATE CARET BAY\nNO.8 LT NORTHSIDE QTR", "Name": "RAINBOW TROUT PROPERTIES LLC", "Address": "14 Estate Plessen", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 840, "Country": "United States", "Land_Value": 348800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 540.09425970999996, "SHAPE_Area": 19078.967448399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354184.788599997758865, 259298.779500000178814 ], [ 354177.544299997389317, 259297.242600001394749 ], [ 354151.737000003457069, 259297.664599999785423 ], [ 354138.852099999785423, 259295.659299999475479 ], [ 354130.00789999961853, 259292.631599999964237 ], [ 354121.978900000452995, 259288.555100001394749 ], [ 354107.556999996304512, 259277.671300001442432 ], [ 354101.126299999654293, 259275.296700000762939 ], [ 354096.284800000488758, 259275.679200001060963 ], [ 354089.024400003254414, 259276.041999999433756 ], [ 354084.179300002753735, 259276.846700001507998 ], [ 354082.563100002706051, 259277.255699999630451 ], [ 354078.513599999248981, 259279.333500001579523 ], [ 354076.080200001597404, 259281.002300001680851 ], [ 354051.729000002145767, 259299.801399998366833 ], [ 354037.973200000822544, 259305.388399999588728 ], [ 354036.339000001549721, 259307.908100001513958 ], [ 354041.848300002515316, 259323.785199999809265 ], [ 354040.950300000607967, 259334.543600000441074 ], [ 354038.454000003635883, 259343.60020000115037 ], [ 354025.375, 259364.391399998217821 ], [ 354026.118400000035763, 259371.785799998790026 ], [ 354063.693199999630451, 259409.879099998623133 ], [ 354074.918600000441074, 259417.359200000762939 ], [ 354085.375500001013279, 259420.400100000202656 ], [ 354095.854000002145767, 259420.908100001513958 ], [ 354107.165700003504753, 259418.256400000303984 ], [ 354134.679200001060963, 259406.871500000357628 ], [ 354157.362099997699261, 259394.602600000798702 ], [ 354167.872900001704693, 259391.311099998652935 ], [ 354170.293700002133846, 259391.119899999350309 ], [ 354186.437899999320507, 259389.141100000590086 ], [ 354200.156000003218651, 259387.986800000071526 ], [ 354202.664800003170967, 259377.452599998563528 ], [ 354216.053099997341633, 259320.355799999088049 ], [ 354206.420500002801418, 259315.210799999535084 ], [ 354193.616700001060963, 259303.706900000572205 ], [ 354184.788599997758865, 259298.779500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012700", "MAP": "C9-154-T72", "PARCEL_NAM": "61", "ACRE": "5.21", "LONGITUDE": -64.97662489, "LATITUDE": 18.36392204, "OBJECTID_1": 2196, "PARCEL_NO_": "102601012700", "Tax_Legal_": "61 ESTATE CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "BOSCHULTE, LIONEL & OTHERS", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 484300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 676.67683138200005, "SHAPE_Area": 22098.327611799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353993.625299997627735, 259210.45549999922514 ], [ 353989.615299999713898, 259207.889499999582767 ], [ 353952.14190000295639, 259252.545800000429153 ], [ 353939.923100002110004, 259267.011199999600649 ], [ 353918.223700001835823, 259277.909299999475479 ], [ 353903.660700000822544, 259285.9087999984622 ], [ 353889.50789999961853, 259295.549100000411272 ], [ 353879.662399999797344, 259309.291700001806021 ], [ 353877.923299998044968, 259313.094999998807907 ], [ 353866.495800003409386, 259338.086100000888109 ], [ 353865.617200002074242, 259375.749499998986721 ], [ 353864.52139999717474, 259409.726599998772144 ], [ 353958.051899999380112, 259410.703200001269579 ], [ 354011.266699999570847, 259411.349800001829863 ], [ 354037.875, 259411.567600000649691 ], [ 354040.29389999806881, 259411.587400000542402 ], [ 354044.302100002765656, 259414.364399999380112 ], [ 354037.99549999833107, 259397.425299998372793 ], [ 354020.398699998855591, 259380.604899998754263 ], [ 354017.214800000190735, 259375.723700001835823 ], [ 354016.449799999594688, 259370.862300001084805 ], [ 354016.527099996805191, 259361.785900000482798 ], [ 354029.616899996995926, 259339.728199999779463 ], [ 354031.263700000941753, 259335.730900000780821 ], [ 354032.95549999922514, 259326.456599999219179 ], [ 354032.176100000739098, 259323.283900000154972 ], [ 354030.603100001811981, 259318.626899998635054 ], [ 354025.038000002503395, 259309.293299999088049 ], [ 354019.433399997651577, 259304.603300001472235 ], [ 354005.7871999964118, 259297.314500000327826 ], [ 353998.595100000500679, 259289.656199999153614 ], [ 353997.014899998903275, 259285.843600001186132 ], [ 353995.414800003170967, 259284.352899998426437 ], [ 353993.85080000013113, 259278.640500001609325 ], [ 353991.561300002038479, 259263.423099998384714 ], [ 353996.77139999717474, 259219.769299998879433 ], [ 353996.019000001251698, 259213.430399999022484 ], [ 353993.625299997627735, 259210.45549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602010400", "MAP": null, "PARCEL_NAM": "10A", "ACRE": null, "LONGITUDE": -64.97281146, "LATITUDE": 18.36414144, "OBJECTID_1": 2353, "PARCEL_NO_": "102602010400", "Tax_Legal_": "PAR 10A CARET BAY 8 LITTLE NORTHSIDE QTR", "Name": "RAPHAEL B HODGE & JOYCELYN I CRAWFORD", "Address": "PO Box 806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040806, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.26396591399998, "SHAPE_Area": 5517.0195090300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354359.562399998307228, 259323.219200000166893 ], [ 354342.527300000190735, 259317.231899999082088 ], [ 354308.572599999606609, 259389.304800000041723 ], [ 354301.470899999141693, 259404.049100000411272 ], [ 354376.57320000231266, 259404.870600000023842 ], [ 354401.38629999756813, 259335.804900001734495 ], [ 354367.605700001120567, 259325.60700000077486 ], [ 354359.562399998307228, 259323.219200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97415417000001, "LATITUDE": 18.36438357, "OBJECTID_1": 2408, "PARCEL_NO_": "102602016400", "Tax_Legal_": "CARET BAY 11A LITTLE NORTHSIDE QTR", "Name": "WALLACE, CHERRIE L", "Address": "PO Box 304462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.788533706, "SHAPE_Area": 509.60159743399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354227.559799998998642, 259389.477600000798702 ], [ 354202.664800003170967, 259377.452599998563528 ], [ 354200.156000003218651, 259387.986800000071526 ], [ 354186.437899999320507, 259389.141100000590086 ], [ 354196.887599997222424, 259393.026299998164177 ], [ 354222.572700001299381, 259406.957600001245737 ], [ 354227.559799998998642, 259389.477600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601010600", "MAP": "F9-845-T61", "PARCEL_NAM": "1", "ACRE": ".62", "LONGITUDE": -64.980562, "LATITUDE": 18.36406525, "OBJECTID_1": 2175, "PARCEL_NO_": "102601010600", "Tax_Legal_": "SORGENFRI 1 S S QTR", "Name": "EISLER, HANS H. & IRMA P", "Address": "PO Box 303245", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107800, "Improved_V": 108600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.85609519799999, "SHAPE_Area": 1963.5127778900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353561.813699997961521, 259352.575899999588728 ], [ 353542.749899998307228, 259318.644900001585484 ], [ 353504.612199999392033, 259346.619300000369549 ], [ 353532.505900003015995, 259385.266600001603365 ], [ 353547.14360000193119, 259370.820900000631809 ], [ 353561.813699997961521, 259352.575899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011300", "MAP": "C9-41-T62", "PARCEL_NAM": "5-4", "ACRE": "0.57", "LONGITUDE": -64.97888516, "LATITUDE": 18.36408106, "OBJECTID_1": 2182, "PARCEL_NO_": "102601011300", "Tax_Legal_": "SORGENFRI 5-4 S S QTR", "Name": "CALLWOOD, VERNE R., JR.", "Address": "5-4 Sorgenfri", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81600, "Improved_V": 263900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.801162138, "SHAPE_Area": 2166.1408794399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353739.35700000077486, 259335.874899998307228 ], [ 353703.191699996590614, 259321.646800000220537 ], [ 353683.415799997746944, 259371.302999999374151 ], [ 353686.631999999284744, 259372.384799998253584 ], [ 353692.279799997806549, 259372.008799999952316 ], [ 353695.494300000369549, 259373.301699999719858 ], [ 353697.889899998903275, 259376.065499998629093 ], [ 353698.654799997806549, 259380.926899999380112 ], [ 353721.992899999022484, 259386.395300000905991 ], [ 353739.35700000077486, 259335.874899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97400864, "LATITUDE": 18.36408002, "OBJECTID_1": 2350, "PARCEL_NO_": "102602010100", "Tax_Legal_": "CARET BAY 11 LITTLE NORTHSIDE", "Name": "LCW TRUST", "Address": "PO Box 304462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034462, "Country": "United States", "Land_Value": 121900, "Improved_V": 336200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.10892565399999, "SHAPE_Area": 2270.3123787200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354216.053099997341633, 259320.355799999088049 ], [ 354202.664800003170967, 259377.452599998563528 ], [ 354227.559799998998642, 259389.477600000798702 ], [ 354250.991400003433228, 259383.969900000840425 ], [ 354241.779600001871586, 259329.432300001382828 ], [ 354236.948899999260902, 259328.54839999973774 ], [ 354229.70830000191927, 259326.589299999177456 ], [ 354223.279399998486042, 259324.003600001335144 ], [ 354216.053099997341633, 259320.355799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00569662, "LATITUDE": 18.36317515, "OBJECTID_1": 1413, "PARCEL_NO_": "102402010200", "Tax_Legal_": "HOPE 5A WEST END QTR", "Name": "VIRGIN ISLANDS GOERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 438400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 690.46390259600003, "SHAPE_Area": 21439.2334247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350914.074500001966953, 259119.17850000038743 ], [ 350881.712300002574921, 259131.790399998426437 ], [ 350863.937399998307228, 259135.866799999028444 ], [ 350850.219300001859665, 259137.021099999547005 ], [ 350814.748800002038479, 259135.886399999260902 ], [ 350789.724299997091293, 259139.059099998325109 ], [ 350854.676700003445148, 259276.379299998283386 ], [ 350821.46509999781847, 259294.050400000065565 ], [ 350842.337499998509884, 259304.986999999731779 ], [ 350857.515399999916553, 259321.787599999457598 ], [ 350873.449199996888638, 259344.504999998956919 ], [ 350877.401600003242493, 259353.825500000268221 ], [ 350945.286499999463558, 259336.227099999785423 ], [ 350914.074500001966953, 259119.17850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011800", "MAP": "D9-9122-T016", "PARCEL_NAM": "CONS 2D REM", "ACRE": "1.11", "LONGITUDE": -64.97721011, "LATITUDE": 18.3632799, "OBJECTID_1": 2187, "PARCEL_NO_": "102601011800", "Tax_Legal_": "2D REM CARET BAY (CON) NO.8 LITTLE NORTHSIDE QTR", "Name": "TRUST AGREEMENT OF KAREN HARRIS BROWN", "Address": "PO Box 9044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 167300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 360.21381012900002, "SHAPE_Area": 3928.3920371200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353939.923100002110004, 259267.011199999600649 ], [ 353952.14190000295639, 259252.545800000429153 ], [ 353939.239100001752377, 259252.651299998164177 ], [ 353894.078400000929832, 259253.125999998301268 ], [ 353888.669799998402596, 259225.42850000038743 ], [ 353898.509199999272823, 259206.299499999731779 ], [ 353885.644100002944469, 259201.972300000488758 ], [ 353879.019199997186661, 259222.394200000911951 ], [ 353868.272799998521805, 259253.337000001221895 ], [ 353867.615800000727177, 259265.985199999064207 ], [ 353853.818199999630451, 259281.806499999016523 ], [ 353847.168099999427795, 259305.229899998754263 ], [ 353879.662399999797344, 259309.291700001806021 ], [ 353889.50789999961853, 259295.549100000411272 ], [ 353903.660700000822544, 259285.9087999984622 ], [ 353918.223700001835823, 259277.909299999475479 ], [ 353939.923100002110004, 259267.011199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011100", "MAP": "C9-41-T62", "PARCEL_NAM": "5-3", "ACRE": "0.56", "LONGITUDE": -64.97927179, "LATITUDE": 18.36385232, "OBJECTID_1": 2180, "PARCEL_NO_": "102601011100", "Tax_Legal_": "SORGENFRI 5-3 S S QTR", "Name": "PAROTT, BERNICE & JANICE", "Address": "5114 Clarendon Rd", "City": "Brooklyn", "State": "New York", "Zip": 11203, "Country": "United States", "Land_Value": 91900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.21050196100001, "SHAPE_Area": 2264.0739964200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353703.191699996590614, 259321.646800000220537 ], [ 353643.9391999989748, 259295.932700000703335 ], [ 353641.566899999976158, 259327.75279999896884 ], [ 353655.469999998807907, 259338.776900000870228 ], [ 353661.902500003576279, 259340.940499998629093 ], [ 353666.707999996840954, 259344.779500000178814 ], [ 353674.675800003111362, 259356.032699998468161 ], [ 353679.421999998390675, 259366.83729999884963 ], [ 353683.415799997746944, 259371.302999999374151 ], [ 353703.191699996590614, 259321.646800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601010800", "MAP": "C9-41-T62", "PARCEL_NAM": "5-2", "ACRE": "0.68", "LONGITUDE": -64.97987592, "LATITUDE": 18.36401372, "OBJECTID_1": 2177, "PARCEL_NO_": "102601010800", "Tax_Legal_": "SORGENFRI 5-2 No.1 SOUTHSIDE QTR.", "Name": "FRANCOIS, PEDRITO-TRUSTEE", "Address": "212 Guthrie Ave", "City": "Alexandria", "State": "Virginia", "Zip": 223051817, "Country": "United States", "Land_Value": 109300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.095057591, "SHAPE_Area": 2765.3377890500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353655.469999998807907, 259338.776900000870228 ], [ 353641.566899999976158, 259327.75279999896884 ], [ 353584.652900002896786, 259321.94310000166297 ], [ 353573.928099997341633, 259350.353000000119209 ], [ 353569.846199996769428, 259356.230200000107288 ], [ 353569.003899998962879, 259360.445199999958277 ], [ 353569.792300000786781, 259362.562600001692772 ], [ 353573.798699997365475, 259365.550700001418591 ], [ 353606.011600002646446, 259370.458399999886751 ], [ 353620.535999998450279, 259369.310699999332428 ], [ 353625.390100002288818, 259367.450599998235703 ], [ 353631.086400002241135, 259361.375500001013279 ], [ 353636.840300001204014, 259348.545899998396635 ], [ 353640.918600000441074, 259343.090799998492002 ], [ 353646.591499999165535, 259339.759700000286102 ], [ 353655.469999998807907, 259338.776900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "102102010100", "MAP": null, "PARCEL_NAM": "SALT CAY", "ACRE": null, "LONGITUDE": -65.05254369, "LATITUDE": 18.36182571, "OBJECTID_1": 1139, "PARCEL_NO_": "102102010100", "Tax_Legal_": "SALT CAY WEST END", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7077600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2829.8747766400002, "SHAPE_Area": 231576.39088200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 346119.680100001394749, 258708.414000000804663 ], [ 346112.412500001490116, 258709.621100001037121 ], [ 346104.318800002336502, 258713.143500000238419 ], [ 346095.397200003266335, 258719.192200001329184 ], [ 346084.872000001370907, 258724.1722999997437 ], [ 346080.030500002205372, 258724.554800000041723 ], [ 346067.145700000226498, 258722.549499999731779 ], [ 346062.300599999725819, 258723.354200001806021 ], [ 346050.164599999785423, 258728.110100001096725 ], [ 346046.10249999910593, 258731.665399998426437 ], [ 346042.018799997866154, 258737.753699999302626 ], [ 346043.570200003683567, 258744.943599998950958 ], [ 346042.70099999755621, 258752.324700001627207 ], [ 346043.48030000180006, 258755.497499998658895 ], [ 346032.139799997210503, 258761.526399999856949 ], [ 346029.722699999809265, 258761.295499999076128 ], [ 346021.690099999308586, 258757.641199998557568 ], [ 346001.516099996864796, 258759.375900000333786 ], [ 345999.108000002801418, 258758.089699998497963 ], [ 345989.541900001466274, 258745.134700000286102 ], [ 345984.786700002849102, 258735.385400000959635 ], [ 345979.142599999904633, 258735.339200001209974 ], [ 345971.839000001549721, 258740.767900001257658 ], [ 345969.384099997580051, 258744.969700001180172 ], [ 345974.040399998426437, 258766.328200001269579 ], [ 345972.32880000025034, 258777.924400001764297 ], [ 345959.302000001072884, 258792.594300001859665 ], [ 345938.193999998271465, 258809.309000000357628 ], [ 345935.784000001847744, 258808.233800001442432 ], [ 345931.003700003027916, 258801.439699999988079 ], [ 345928.584799997508526, 258801.419900000095367 ], [ 345926.982900001108646, 258800.140299998223782 ], [ 345923.741499997675419, 258802.013599999248981 ], [ 345917.188500002026558, 258813.992300000041723 ], [ 345911.517300002276897, 258817.112300001084805 ], [ 345907.480400003492832, 258817.712499998509884 ], [ 345895.443199999630451, 258810.859000001102686 ], [ 345888.181000001728535, 258811.432799998670816 ], [ 345882.470299996435642, 258819.19649999961257 ], [ 345880.789300002157688, 258827.204300001263618 ], [ 345882.189800001680851, 258852.124800000339746 ], [ 345889.29559999704361, 258869.914900001138449 ], [ 345889.263199999928474, 258873.714299999177456 ], [ 345891.642599999904633, 258878.37779999896884 ], [ 345885.134499996900558, 258885.079500000923872 ], [ 345874.589500002563, 258892.381499998271465 ], [ 345859.222800001502037, 258897.744199998676777 ], [ 345848.773100003600121, 258893.859000001102686 ], [ 345843.123599998652935, 258894.445999998599291 ], [ 345834.966899998486042, 258905.356100000441074 ], [ 345829.234600000083447, 258915.652800001204014 ], [ 345823.329700000584126, 258946.212999999523163 ], [ 345820.068499997258186, 258950.40819999948144 ], [ 345817.638800002634525, 258951.654899999499321 ], [ 345814.38289999961853, 258955.21680000051856 ], [ 345803.0945999994874, 258955.124400001019239 ], [ 345799.874700002372265, 258954.464800000190735 ], [ 345788.658299997448921, 258945.929200001060963 ], [ 345776.574400000274181, 258944.563799999654293 ], [ 345768.486100003123283, 258947.452899999916553 ], [ 345762.757399998605251, 258957.327399998903275 ], [ 345760.225100003182888, 258970.605599999427795 ], [ 345758.57660000026226, 258974.813999999314547 ], [ 345750.430699996650219, 258984.457600001245737 ], [ 345748.006399996578693, 258985.070999998599291 ], [ 345745.555100001394749, 258988.850600000470877 ], [ 345634.556199997663498, 259050.636999998241663 ], [ 345619.250699996948242, 259048.822900000959635 ], [ 345612.708400003612041, 259059.535199999809265 ], [ 345609.404100000858307, 259068.79619999974966 ], [ 345606.965400002896786, 259071.098299998790026 ], [ 345597.26799999922514, 259073.552099999040365 ], [ 345589.960900001227856, 259079.402899999171495 ], [ 345584.269900001585484, 259084.844700001180172 ], [ 345577.709700003266335, 259097.667700000107288 ], [ 345576.860299997031689, 259102.727000001817942 ], [ 345571.991800002753735, 259106.275800000876188 ], [ 345569.547700002789497, 259109.211100000888109 ], [ 345567.123400002717972, 259109.824499998241663 ], [ 345557.390100002288818, 259116.499899998307228 ], [ 345545.945299997925758, 259134.771299999207258 ], [ 345525.668799996376038, 259148.537599999457598 ], [ 345522.319499999284744, 259163.075599998235703 ], [ 345516.633900001645088, 259167.884199999272823 ], [ 345504.5337999984622, 259168.418499998748302 ], [ 345499.706699997186661, 259167.112399999052286 ], [ 345495.695000000298023, 259164.757500000298023 ], [ 345491.659800000488758, 259165.146699998527765 ], [ 345486.789599999785423, 259168.906500000506639 ], [ 345483.558899998664856, 259169.513399999588728 ], [ 345471.381499998271465, 259179.124000001698732 ], [ 345466.480700001120567, 259186.472199998795986 ], [ 345466.419600002467632, 259193.648800000548363 ], [ 345471.2466000020504, 259194.954900000244379 ], [ 345476.905199997127056, 259193.3125 ], [ 345480.886399999260902, 259199.255699999630451 ], [ 345481.660400003194809, 259203.061700001358986 ], [ 345486.487499997019768, 259204.367800001055002 ], [ 345496.170400001108646, 259203.602600000798702 ], [ 345504.17059999704361, 259211.056400001049042 ], [ 345504.944499999284744, 259214.862399999052286 ], [ 345508.144599996507168, 259217.843899998813868 ], [ 345514.496200002729893, 259229.506000000983477 ], [ 345520.759700000286102, 259251.510999999940395 ], [ 345523.1570999994874, 259254.063799999654293 ], [ 345527.107699997723103, 259263.595300000160933 ], [ 345533.495300002396107, 259271.035900000482798 ], [ 345546.344099998474121, 259277.262699998915195 ], [ 345550.379299998283386, 259276.873599998652935 ], [ 345560.852300003170967, 259278.014800000935793 ], [ 345585.930799998342991, 259268.509700000286102 ], [ 345594.789399996399879, 259269.848799999803305 ], [ 345596.382200002670288, 259272.183899998664856 ], [ 345594.717500001192093, 259278.291900001466274 ], [ 345597.9121999964118, 259281.906700000166893 ], [ 345600.320299997925758, 259283.192899998277426 ], [ 345605.152800001204014, 259283.865800000727177 ], [ 345615.643799997866154, 259282.896200001239777 ], [ 345625.351999998092651, 259279.175900001078844 ], [ 345624.597800001502037, 259273.048099998384714 ], [ 345617.429099999368191, 259262.645799998193979 ], [ 345632.795800000429153, 259257.283100001513958 ], [ 345637.633699998259544, 259257.322700001299381 ], [ 345639.240900002419949, 259257.969200000166893 ], [ 345644.838299997150898, 259263.503400001674891 ], [ 345646.41499999910593, 259267.738200001418591 ], [ 345652.824100002646446, 259272.645799998193979 ], [ 345673.750500001013279, 259277.25 ], [ 345691.444399997591972, 259282.672200001776218 ], [ 345706.742799997329712, 259285.33049999922514 ], [ 345730.953699998557568, 259282.995600000023842 ], [ 345734.189699999988079, 259281.755499999970198 ], [ 345747.889899998903275, 259282.712000001221895 ], [ 345754.367299996316433, 259279.598600000143051 ], [ 345763.314099997282028, 259270.594799999147654 ], [ 345764.953699998557568, 259267.441799998283386 ], [ 345765.004000000655651, 259261.531599998474121 ], [ 345769.139899998903275, 259249.322000000625849 ], [ 345774.841600000858307, 259242.613699998706579 ], [ 345774.062299996614456, 259239.440900001674891 ], [ 345778.941500000655651, 259234.625700000673532 ], [ 345789.635799996554852, 259209.804200001060963 ], [ 345797.803199999034405, 259197.627599999308586 ], [ 345798.65089999884367, 259192.779399998486042 ], [ 345802.702200002968311, 259190.490499999374151 ], [ 345809.339699998497963, 259168.591099999845028 ], [ 345814.262100003659725, 259158.71000000089407 ], [ 345819.161100000143051, 259151.572900000959635 ], [ 345836.140399999916553, 259146.223499998450279 ], [ 345850.645099997520447, 259147.397599998861551 ], [ 345859.4983000010252, 259149.369899999350309 ], [ 345884.488600000739098, 259150.207800000905991 ], [ 345888.493199996650219, 259153.406899999827147 ], [ 345888.45719999819994, 259157.628499999642372 ], [ 345885.206799998879433, 259160.557199999690056 ], [ 345880.275399997830391, 259171.493700001388788 ], [ 345880.237700000405312, 259175.926399998366833 ], [ 345884.244099996984005, 259178.914500001817942 ], [ 345889.087300002574921, 259178.320799998939037 ], [ 345898.840400002896786, 259169.323600001633167 ], [ 345904.511600002646446, 259166.203699998557568 ], [ 345915.79450000077486, 259166.929299999028444 ], [ 345926.281999997794628, 259166.381799999624491 ], [ 345950.584700003266335, 259153.281800001859665 ], [ 345957.035199999809265, 259153.334600001573563 ], [ 345968.210299998521805, 259166.725000001490116 ], [ 345977.074299998581409, 259167.430799998342991 ], [ 345979.504000000655651, 259166.184200000017881 ], [ 345983.58049999922514, 259160.940200001001358 ], [ 345992.592000000178814, 259144.337499998509884 ], [ 346026.564999997615814, 259131.949999999254942 ], [ 346028.983999997377396, 259131.969799999147654 ], [ 346031.383100003004074, 259134.3114 ], [ 346032.1570999994874, 259138.117499999701977 ], [ 346036.163500003516674, 259141.105599999427795 ], [ 346041.604500003159046, 259165.003699999302626 ], [ 346038.296499997377396, 259174.686900001019239 ], [ 346035.861400000751019, 259176.566799998283386 ], [ 346039.768899999558926, 259191.164200000464916 ], [ 346038.9121999964118, 259197.067899998277426 ], [ 346035.607799999415874, 259206.328899998217821 ], [ 346033.975400000810623, 259208.637600000947714 ], [ 346033.095399998128414, 259217.285199999809265 ], [ 346030.629699997603893, 259222.753499999642372 ], [ 346025.755900003015995, 259226.935499999672174 ], [ 346018.468500003218651, 259230.464400000870228 ], [ 346027.921300001442432, 259256.717399999499321 ], [ 346031.744199998676777, 259281.235500000417233 ], [ 346034.116400003433228, 259286.743400000035763 ], [ 346034.089400000870228, 259289.909499999135733 ], [ 346041.268899999558926, 259299.045299999415874 ], [ 346050.118600003421307, 259301.439800001680851 ], [ 346067.882600001990795, 259298.629900000989437 ], [ 346070.317800000309944, 259296.75 ], [ 346079.207000002264977, 259294.500700000673532 ], [ 346084.066399998962879, 259292.00730000063777 ], [ 346120.562700003385544, 259267.396999999880791 ], [ 346129.525600001215935, 259256.493500001728535 ], [ 346136.085799999535084, 259243.670499999076128 ], [ 346136.121799997985363, 259239.448899999260902 ], [ 346133.755000002682209, 259233.307799998670816 ], [ 346133.078100003302097, 259218.103500001132488 ], [ 346135.55460000038147, 259211.36879999935627 ], [ 346151.783399999141693, 259199.469300001859665 ], [ 346162.297799997031689, 259195.755699999630451 ], [ 346193.821299999952316, 259186.936700001358986 ], [ 346197.041199997067451, 259187.5962999984622 ], [ 346225.333999998867512, 259179.384100001305342 ], [ 346227.769100002944469, 259177.504200000315905 ], [ 346228.607799999415874, 259173.711399998515844 ], [ 346231.037500001490116, 259172.464699998497963 ], [ 346231.062700003385544, 259169.50959999859333 ], [ 346233.508599996566772, 259166.363200001418591 ], [ 346234.4695999994874, 259148.217000000178814 ], [ 346237.793700002133846, 259136.634100001305342 ], [ 346254.01349999755621, 259125.78999999910593 ], [ 346259.83389999717474, 259105.150499999523163 ], [ 346270.439999997615814, 259090.671799998730421 ], [ 346273.728200003504753, 259083.310400001704693 ], [ 346271.428000003099442, 259069.359400000423193 ], [ 346269.842299997806549, 259066.180100001394749 ], [ 346279.699699997901917, 259044.94029999896884 ], [ 346280.599500000476837, 259033.970800001174212 ], [ 346279.017399996519089, 259030.369199998676777 ], [ 346257.252400003373623, 259029.557799998670816 ], [ 346244.392800003290176, 259024.59739999845624 ], [ 346232.380800001323223, 259014.788800001144409 ], [ 346222.809299997985363, 259002.467000000178814 ], [ 346202.287600003182888, 258950.370099999010563 ], [ 346195.160199999809265, 258935.113000001758337 ], [ 346192.028499998152256, 258924.110500000417233 ], [ 346187.24099999666214, 258918.160700000822544 ], [ 346186.483199998736382, 258912.454999998211861 ], [ 346178.486599996685982, 258904.579100001603365 ], [ 346165.659299999475479, 258895.819200001657009 ], [ 346157.684299997985363, 258885.410399999469519 ], [ 346153.744499996304512, 258874.612399999052286 ], [ 346151.429799996316433, 258862.350000001490116 ], [ 346149.214100003242493, 258838.478300001472235 ], [ 346148.567800000309944, 258819.685699999332428 ], [ 346149.437100000679493, 258812.304499998688698 ], [ 346159.456299997866154, 258772.067600000649691 ], [ 346161.193000003695488, 258757.516399998217821 ], [ 346159.61089999973774, 258753.914900001138449 ], [ 346153.223300002515316, 258746.474300000816584 ], [ 346143.605099998414516, 258739.640599999576807 ], [ 346137.237300001084805, 258729.878199998289347 ], [ 346136.477799996733665, 258724.383499998599291 ], [ 346137.303900003433228, 258722.068300001323223 ], [ 346125.293700002133846, 258712.048599999397993 ], [ 346119.680100001394749, 258708.414000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601010900", "MAP": "G9-948-T67", "PARCEL_NAM": "10", "ACRE": ".31", "LONGITUDE": -64.98027179, "LATITUDE": 18.36376334, "OBJECTID_1": 2178, "PARCEL_NO_": "102601010900", "Tax_Legal_": "SORGENFRI PARCEL #10 S S QTR.", "Name": "MILLIN, HENRY A", "Address": "BOX 3926", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 101300, "Improved_V": 140600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.273940074, "SHAPE_Area": 1205.3225927000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353542.749899998307228, 259318.644900001585484 ], [ 353561.813699997961521, 259352.575899999588728 ], [ 353563.444300003349781, 259350.478300001472235 ], [ 353576.620399996638298, 259318.288800001144409 ], [ 353583.997699998319149, 259304.205899998545647 ], [ 353590.624399997293949, 259283.572999998927116 ], [ 353542.749899998307228, 259318.644900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9780665, "LATITUDE": 18.36386746, "OBJECTID_1": 2186, "PARCEL_NO_": "102601011700", "Tax_Legal_": "CARET BAY 2G LITTLE NORTHSIDE", "Name": "THOMPSON, WALTER & LUIS", "Address": "540 23rd St", "City": "Oakland", "State": "California", "Zip": 94612, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.49504120700001, "SHAPE_Area": 1894.4621535900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353829.694600000977516, 259333.025699999183416 ], [ 353832.120700001716614, 259332.201200000941753 ], [ 353839.373999997973442, 259332.682700000703335 ], [ 353841.644799999892712, 259324.684300001710653 ], [ 353843.574699997901917, 259317.886799998581409 ], [ 353786.321000002324581, 259313.039000000804663 ], [ 353778.142800003290176, 259326.482099998742342 ], [ 353772.4391999989748, 259333.401500001549721 ], [ 353763.506899997591972, 259340.716600000858307 ], [ 353748.910499997437, 259350.307500001043081 ], [ 353760.179099999368191, 259352.721700001507998 ], [ 353773.090899996459484, 259351.5608000010252 ], [ 353808.658600002527237, 259341.2972999997437 ], [ 353829.694600000977516, 259333.025699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502010500", "MAP": "A9-748-T009", "PARCEL_NAM": "10-1", "ACRE": "19.00", "LONGITUDE": -64.99278626, "LATITUDE": 18.35788663, "OBJECTID_1": 1983, "PARCEL_NO_": "102502010500", "Tax_Legal_": "10-1 SANTA MARIA NO.1 WEST END QTR", "Name": "BOSCHULTE, CHRISTIAN G & ERMIN S (TRUSTEES)", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 682000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1128.31039044, "SHAPE_Area": 64411.531884700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352394.867700003087521, 258778.595499999821186 ], [ 352416.430600002408028, 258762.880199998617172 ], [ 352405.058799996972084, 258550.24100000038743 ], [ 352393.743400000035763, 258553.314800001680851 ], [ 352373.5675999969244, 258555.260600000619888 ], [ 352346.9341000020504, 258557.997900001704693 ], [ 352288.809500001370907, 258565.754799999296665 ], [ 352261.065600000321865, 258565.000999998301268 ], [ 352247.836400002241135, 258566.323899999260902 ], [ 352233.284299999475479, 258567.11769999936223 ], [ 352221.113499999046326, 258567.911400001496077 ], [ 352204.444700002670288, 258568.440600000321865 ], [ 352193.861299999058247, 258569.7635000012815 ], [ 352185.659199997782707, 258571.615600001066923 ], [ 352182.615199998021126, 258573.5185999982059 ], [ 352178.269599996507168, 258573.669199999421835 ], [ 352164.397900000214577, 258574.14979999884963 ], [ 352103.2550999969244, 258576.268500000238419 ], [ 352079.051399998366833, 258577.759100001305342 ], [ 351991.082400001585484, 258586.538400001823902 ], [ 352173.510099999606609, 258753.739900000393391 ], [ 352200.084200002253056, 258757.968199998140335 ], [ 352233.119599997997284, 258760.982799999415874 ], [ 352256.48650000244379, 258763.073800001293421 ], [ 352266.158699996769428, 258763.575199998915195 ], [ 352284.698499999940395, 258764.360199999064207 ], [ 352336.311499997973442, 258763.727200001478195 ], [ 352353.236800000071526, 258764.710099998861551 ], [ 352374.969499997794628, 258769.320900000631809 ], [ 352383.009300000965595, 258772.130899999290705 ], [ 352394.867700003087521, 258778.595499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003015000", "MAP": "D9-5061-T91", "PARCEL_NAM": "19", "ACRE": "4.88", "LONGITUDE": -64.97903469000001, "LATITUDE": 18.36306822, "OBJECTID_1": 146, "PARCEL_NO_": "101003015000", "Tax_Legal_": "SORGENFRI/EASTERN PORTION S S QTR", "Name": "MILLIN, AGNES & H. & KILPATRICK, A & G", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6079400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 655.79027376, "SHAPE_Area": 20091.117200100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353606.878300003707409, 259267.255699999630451 ], [ 353643.9391999989748, 259295.932700000703335 ], [ 353703.191699996590614, 259321.646800000220537 ], [ 353739.35700000077486, 259335.874899998307228 ], [ 353767.469400003552437, 259254.200699999928474 ], [ 353788.128899998962879, 259195.474700000137091 ], [ 353761.53490000218153, 259193.568300001323223 ], [ 353749.465400002896786, 259190.514199998229742 ], [ 353743.840999998152256, 259188.146099999547005 ], [ 353734.217399999499321, 259181.945700000971556 ], [ 353706.25, 259151.952599998563528 ], [ 353703.841899998486042, 259150.666299998760223 ], [ 353698.219300001859665, 259148.087200000882149 ], [ 353690.16330000013113, 259147.17680000141263 ], [ 353685.307499997317791, 259149.247999999672174 ], [ 353682.071400001645088, 259150.488099999725819 ], [ 353662.601300001144409, 259164.260899998247623 ], [ 353681.728000000119209, 259190.804200001060963 ], [ 353656.575900003314018, 259208.963500000536442 ], [ 353639.049199998378754, 259183.910999998450279 ], [ 353621.983499996364117, 259199.392200000584126 ], [ 353611.165200002491474, 259238.778200000524521 ], [ 353609.473499998450279, 259248.052400000393391 ], [ 353608.566500000655651, 259259.866300001740456 ], [ 353606.878300003707409, 259267.255699999630451 ] ] ], [ [ [ 353606.848899997770786, 259267.232999999076128 ], [ 353604.378499999642372, 259278.19709999859333 ], [ 353606.878300003707409, 259267.255699999630451 ], [ 353606.848899997770786, 259267.232999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97235095000001, "LATITUDE": 18.36352311, "OBJECTID_1": 2406, "PARCEL_NO_": "102602016200", "Tax_Legal_": "CARET BAY 10-B LT. NORTHSIDE", "Name": "GUMBS, RENEE A.", "Address": "7406 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.91023135399999, "SHAPE_Area": 1444.71830116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354391.54619999974966, 259260.364000000059605 ], [ 354401.121299996972084, 259272.263599999248981 ], [ 354406.689900003373623, 259281.17509999871254 ], [ 354409.069300003349781, 259285.838599998503923 ], [ 354409.812700003385544, 259293.232999999076128 ], [ 354406.528099998831749, 259300.172200001776218 ], [ 354403.281300000846386, 259302.678700000047684 ], [ 354367.605700001120567, 259325.60700000077486 ], [ 354401.38629999756813, 259335.804900001734495 ], [ 354425.326800003647804, 259270.561799999326468 ], [ 354427.821299999952316, 259261.716299999505281 ], [ 354391.54619999974966, 259260.364000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011000", "MAP": "C9-41-T62", "PARCEL_NAM": "5-1", "ACRE": "0.64", "LONGITUDE": -64.97978579, "LATITUDE": 18.36362782, "OBJECTID_1": 2179, "PARCEL_NO_": "102601011000", "Tax_Legal_": "5-1 ESTATE SORGENFRI No.1 SOUTHSIDE QTR.", "Name": "ADAMS, TREVOR A. & SANDRA G.", "Address": "PO Box 307053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 123300, "Improved_V": 404800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.257916352, "SHAPE_Area": 2173.5157015999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353606.848899997770786, 259267.232999999076128 ], [ 353597.775100000202656, 259296.085999999195337 ], [ 353584.652900002896786, 259321.94310000166297 ], [ 353641.566899999976158, 259327.75279999896884 ], [ 353643.9391999989748, 259295.932700000703335 ], [ 353606.848899997770786, 259267.232999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011900", "MAP": "B9-502-T80", "PARCEL_NAM": "2C", "ACRE": null, "LONGITUDE": -64.97776484000001, "LATITUDE": 18.36352105, "OBJECTID_1": 2188, "PARCEL_NO_": "102601011900", "Tax_Legal_": "CARET BAY 2F LITTLE NORTHSIDE", "Name": "BERRY, JOSEPH MONRO STANLEY", "Address": "8080 Caret Bay W", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68200, "Improved_V": 111700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.17062006399999, "SHAPE_Area": 2134.7404269799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353786.321000002324581, 259313.039000000804663 ], [ 353843.574699997901917, 259317.886799998581409 ], [ 353853.818199999630451, 259281.806499999016523 ], [ 353867.615800000727177, 259265.985199999064207 ], [ 353868.272799998521805, 259253.337000001221895 ], [ 353860.209700003266335, 259253.271000001579523 ], [ 353856.912500001490116, 259261.687800001353025 ], [ 353852.031499996781349, 259266.714000001549721 ], [ 353817.20719999819994, 259284.372000001370907 ], [ 353808.2837999984622, 259290.631799999624491 ], [ 353803.413599997758865, 259294.391600001603365 ], [ 353797.724399998784065, 259299.622400000691414 ], [ 353792.839800000190735, 259305.070799998939037 ], [ 353786.321000002324581, 259313.039000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0064257, "LATITUDE": 18.36309803, "OBJECTID_1": 1412, "PARCEL_NO_": "102402010100", "Tax_Legal_": "HOPE WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 299700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 490.42076771400002, "SHAPE_Area": 5683.217679 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350789.724299997091293, 259139.059099998325109 ], [ 350786.49549999833107, 259139.454799998551607 ], [ 350773.572899997234344, 259141.882199998944998 ], [ 350751.739500001072884, 259149.091699998825788 ], [ 350749.957900002598763, 259168.920000001788139 ], [ 350755.58049999922514, 259171.499099999666214 ], [ 350786.054899998009205, 259191.169100001454353 ], [ 350805.230200000107288, 259212.013199999928474 ], [ 350814.758500002324581, 259229.40089999884367 ], [ 350817.86150000244379, 259243.780699998140335 ], [ 350818.579700000584126, 259254.130100000649691 ], [ 350816.911300003528595, 259260.660399999469519 ], [ 350814.468999996781349, 259263.38459999859333 ], [ 350782.16610000282526, 259269.030799999833107 ], [ 350774.869800001382828, 259273.615200001746416 ], [ 350772.411300003528595, 259278.239100001752377 ], [ 350769.893399998545647, 259289.828600000590086 ], [ 350771.477300003170967, 259293.219099998474121 ], [ 350773.874600000679493, 259295.771800000220537 ], [ 350778.701700001955032, 259297.077899999916553 ], [ 350783.545000001788139, 259296.484299998730421 ], [ 350795.689999997615814, 259290.673099998384714 ], [ 350807.791900001466274, 259289.927700001746416 ], [ 350821.46509999781847, 259294.050400000065565 ], [ 350854.676700003445148, 259276.379299998283386 ], [ 350789.724299997091293, 259139.059099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102602015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97246236, "LATITUDE": 18.36350551, "OBJECTID_1": 2397, "PARCEL_NO_": "102602015000", "Tax_Legal_": "10 REM CARET BAY NO 8 LITTLE NORTHSIDE QTR", "Name": "VINCENT FULLER & REBECCA BRAHM", "Address": "PO Box 303300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63900, "Improved_V": 53600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.32241178300001, "SHAPE_Area": 561.42582686499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354383.484899997711182, 259260.086899999529123 ], [ 354393.864500001072884, 259272.204199999570847 ], [ 354401.828699998557568, 259283.87950000166893 ], [ 354403.408900000154972, 259287.692099999636412 ], [ 354403.356799997389317, 259293.813400000333786 ], [ 354399.289300002157688, 259298.002000000327826 ], [ 354359.562399998307228, 259323.219200000166893 ], [ 354367.605700001120567, 259325.60700000077486 ], [ 354403.281300000846386, 259302.678700000047684 ], [ 354406.528099998831749, 259300.172200001776218 ], [ 354409.812700003385544, 259293.232999999076128 ], [ 354409.069300003349781, 259285.838599998503923 ], [ 354406.689900003373623, 259281.17509999871254 ], [ 354401.121299996972084, 259272.263599999248981 ], [ 354391.54619999974966, 259260.364000000059605 ], [ 354383.484899997711182, 259260.086899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602010600", "MAP": "G9-670-T63", "PARCEL_NAM": "6D-1", "ACRE": null, "LONGITUDE": -64.97391735, "LATITUDE": 18.36351916, "OBJECTID_1": 2355, "PARCEL_NO_": "102602010600", "Tax_Legal_": "CARET BAY 6D LITTLE NORTHSIDE", "Name": "CHARLES, REYNALD", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 152300, "Improved_V": 518900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.847317172, "SHAPE_Area": 826.35693913900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354250.292300000786781, 259276.72859999909997 ], [ 354234.221799999475479, 259270.053199999034405 ], [ 354224.159400001168251, 259315.355900000780821 ], [ 354232.190200001001358, 259319.221400000154972 ], [ 354241.8496999964118, 259321.200300000607967 ], [ 354250.292300000786781, 259276.72859999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602010800", "MAP": "G9-670-T63", "PARCEL_NAM": "6D-2", "ACRE": null, "LONGITUDE": -64.97370839, "LATITUDE": 18.36354743, "OBJECTID_1": 2357, "PARCEL_NO_": "102602010800", "Tax_Legal_": "PAR 10A-1 CARET BAY 8 LITTLE NORTHSIDE QTR", "Name": "DENNIS D MURPHY & DEBORAH MURPHY", "Address": "PO Box 305674", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035674, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.939071179, "SHAPE_Area": 1105.75374412 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354270.417700000107288, 259280.692999999970198 ], [ 354250.292300000786781, 259276.72859999909997 ], [ 354241.8496999964118, 259321.200300000607967 ], [ 354252.340800002217293, 259320.230700001120567 ], [ 354254.765100002288818, 259319.617199998348951 ], [ 354262.045299999415874, 259316.932599999010563 ], [ 354269.325499996542931, 259314.247999999672174 ], [ 354279.069600000977516, 259306.306200001388788 ], [ 354270.417700000107288, 259280.692999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602010500", "MAP": "D9-7454-T004", "PARCEL_NAM": "43", "ACRE": "1.129", "LONGITUDE": -64.97420379, "LATITUDE": 18.36338031, "OBJECTID_1": 2354, "PARCEL_NO_": "102602010500", "Tax_Legal_": "43 CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, CHRISTIAN G. & ERMIN S. (TRUSTEES)", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040440, "Country": "United States", "Land_Value": 181800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.42537448300001, "SHAPE_Area": 2031.76389531 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354234.221799999475479, 259270.053199999034405 ], [ 354187.615699999034405, 259250.884399998933077 ], [ 354178.42620000243187, 259288.383900001645088 ], [ 354186.478500001132488, 259289.716299999505281 ], [ 354193.710199996829033, 259292.730799999088049 ], [ 354200.923799999058247, 259297.856100000441074 ], [ 354212.12950000166893, 259307.658100001513958 ], [ 354224.159400001168251, 259315.355900000780821 ], [ 354234.221799999475479, 259270.053199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602010900", "MAP": "G9-670-T63", "PARCEL_NAM": "6D-3", "ACRE": null, "LONGITUDE": -64.97344959, "LATITUDE": 18.3634061, "OBJECTID_1": 2358, "PARCEL_NO_": "102602010900", "Tax_Legal_": "PAR 10A-2 CARET BAY 8 LITTLE NORTHSIDE QTR", "Name": "DENNIS D MURPHY & DEBORAH MURPHY", "Address": "PO Box 305674", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035674, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.601315098, "SHAPE_Area": 763.69998824200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354294.842699997127056, 259263.445700000971556 ], [ 354270.417700000107288, 259280.692999999970198 ], [ 354279.069600000977516, 259306.306200001388788 ], [ 354304.243299998342991, 259285.613899998366833 ], [ 354294.842699997127056, 259263.445700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97566979, "LATITUDE": 18.36315679, "OBJECTID_1": 2283, "PARCEL_NO_": "102601030800", "Tax_Legal_": "41 ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "CULLAR, MAUREEN RABSATT", "Address": "PO Box 308002", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 171600, "Improved_V": 21000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.225422874, "SHAPE_Area": 6014.9563376300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354115.079899996519089, 259246.491099998354912 ], [ 354050.882399998605251, 259209.868599999696016 ], [ 354003.812399998307228, 259245.15819999948144 ], [ 354001.242399998009205, 259262.868999999016523 ], [ 354002.76519999653101, 259273.436200000345707 ], [ 354002.741800002753735, 259276.18019999936223 ], [ 354005.103200003504753, 259282.954500000923872 ], [ 354007.498700000345707, 259285.718299999833107 ], [ 354009.896099999547005, 259288.271099999547005 ], [ 354012.298799999058247, 259290.190600000321865 ], [ 354018.71339999884367, 259294.464999999850988 ], [ 354025.955799996852875, 259296.212999999523163 ], [ 354033.208999998867512, 259296.694499999284744 ], [ 354038.867600001394749, 259295.052099999040365 ], [ 354042.10360000282526, 259293.811999998986721 ], [ 354046.957699999213219, 259291.951900001615286 ], [ 354072.124200001358986, 259272.103999998420477 ], [ 354078.60530000180006, 259268.568399999290705 ], [ 354087.498099997639656, 259265.896999999880791 ], [ 354097.98369999974966, 259265.560600001364946 ], [ 354110.049699999392033, 259269.036899998784065 ], [ 354116.4695999994874, 259272.677999999374151 ], [ 354122.07599999755621, 259277.156899999827147 ], [ 354115.079899996519089, 259246.491099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601030900", "MAP": "D9-7454-T004", "PARCEL_NAM": "42-REM", "ACRE": null, "LONGITUDE": -64.97470756, "LATITUDE": 18.36319516, "OBJECTID_1": 2284, "PARCEL_NO_": "102601030900", "Tax_Legal_": "42-REM CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, CHRISTIAN G. & ERMIN S. (TRUSTEES)", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040440, "Country": "United States", "Land_Value": 176000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.11922134599999, "SHAPE_Area": 2668.7565914100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354126.243400000035763, 259248.021600000560284 ], [ 354138.801299996674061, 259285.353500001132488 ], [ 354141.353799998760223, 259285.969500001519918 ], [ 354151.816100001335144, 259288.377199999988079 ], [ 354178.42620000243187, 259288.383900001645088 ], [ 354187.615699999034405, 259250.884399998933077 ], [ 354120.920100003480911, 259223.529699999839067 ], [ 354126.243400000035763, 259248.021600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A3-83-T50", "PARCEL_NAM": "REM of BORDEAUX", "ACRE": null, "LONGITUDE": -65.01167949000001, "LATITUDE": 18.36201345, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2479.7462483700001, "SHAPE_Area": 50133.117305500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349897.455799996852875, 258999.611699998378754 ], [ 349885.334100000560284, 259002.678899999707937 ], [ 349873.232199996709824, 259003.424199998378754 ], [ 349853.081600002944469, 259002.414900001138449 ], [ 349845.034699998795986, 259000.449200000613928 ], [ 349841.033699996769428, 258996.827899999916553 ], [ 349839.446199998259544, 258993.859600000083447 ], [ 349813.063400000333786, 259061.826900001615286 ], [ 349817.082400001585484, 259063.337400000542402 ], [ 349820.269900001585484, 259067.796500001102686 ], [ 349825.035800002515316, 259076.279199998825788 ], [ 349827.382799997925758, 259084.742199998348951 ], [ 349835.424400001764297, 259087.341099999845028 ], [ 349847.513700000941753, 259088.073300000280142 ], [ 349864.48759999871254, 259083.357099998742342 ], [ 349877.482100002467632, 259072.486600000411272 ], [ 349884.756899997591972, 259070.435199998319149 ], [ 349895.289300002157688, 259064.610800001770258 ], [ 349904.214500002563, 259058.139899998903275 ], [ 349908.246100001037121, 259058.172899998724461 ], [ 349917.918200001120567, 259058.674300000071526 ], [ 349926.766099996864796, 259061.279800001531839 ], [ 349933.1824000030756, 259065.343100000172853 ], [ 349952.508699998259544, 259068.456599999219179 ], [ 349961.388899996876717, 259067.262699998915195 ], [ 349965.40429999679327, 259069.19539999961853 ], [ 349972.607199996709824, 259075.587200000882149 ], [ 349982.255999997258186, 259078.832499999552965 ], [ 349987.860600002110004, 259083.52250000089407 ], [ 349995.918300002813339, 259084.221700001507998 ], [ 349999.962499998509884, 259082.777100000530481 ], [ 350006.450699999928474, 259078.397300001233816 ], [ 350008.86429999768734, 259079.050299998372793 ], [ 350011.272399999201298, 259080.336599998176098 ], [ 350015.244699999690056, 259087.335200000554323 ], [ 350017.597099997103214, 259095.164900001138449 ], [ 350020.811499997973442, 259096.457800000905991 ], [ 350026.455700002610683, 259096.504000000655651 ], [ 350037.861000001430511, 259082.876200001686811 ], [ 350052.475299999117851, 259071.174600001424551 ], [ 350059.760899998247623, 259067.856699999421835 ], [ 350075.109600000083447, 259064.604899998754263 ], [ 350096.212200000882149, 259048.523400001227856 ], [ 350105.155299998819828, 259039.941700000315905 ], [ 350115.765100002288818, 259025.040899999439716 ], [ 350121.439800001680851, 259021.498799998313189 ], [ 350131.131700001657009, 259019.678300000727177 ], [ 350144.835500001907349, 259020.212600000202656 ], [ 350166.584299996495247, 259022.923700001090765 ], [ 350188.300800003111362, 259029.434300001710653 ], [ 350219.599500000476837, 259047.000100001692772 ], [ 350232.385499998927116, 259060.614799998700619 ], [ 350236.273199997842312, 259077.534099999815226 ], [ 350259.176100000739098, 259134.083500001579523 ], [ 350270.264899998903275, 259157.605599999427795 ], [ 350283.857100002467632, 259171.22690000012517 ], [ 350303.88910000026226, 259186.167399998754263 ], [ 350315.118100002408028, 259193.225400000810623 ], [ 350335.189599998295307, 259203.522100001573563 ], [ 350356.094400003552437, 259210.659299999475479 ], [ 350367.372000001370907, 259212.018199998885393 ], [ 350382.704499997198582, 259210.666000001132488 ], [ 350398.825300000607967, 259211.431200001388788 ], [ 350419.051500000059605, 259203.575199998915195 ], [ 350436.140500001609325, 259185.349899999797344 ], [ 350441.800899997353554, 259183.496399998664856 ], [ 350453.090999998152256, 259183.377700001001358 ], [ 350464.401000000536442, 259180.937199998646975 ], [ 350491.901900000870228, 259171.029800001531839 ], [ 350504.007399998605251, 259169.862300001084805 ], [ 350523.310300000011921, 259175.719799999147654 ], [ 350537.814999997615814, 259176.894000001251698 ], [ 350558.779100000858307, 259177.065600000321865 ], [ 350564.435900002717972, 259175.634199999272823 ], [ 350586.985699996352196, 259178.985199999064207 ], [ 350603.101099997758865, 259180.383600000292063 ], [ 350611.929200001060963, 259185.311000000685453 ], [ 350612.685199998319149, 259191.227800000458956 ], [ 350609.305299997329712, 259209.354200001806021 ], [ 350583.361199997365475, 259225.818300001323223 ], [ 350572.836000002920628, 259230.79839999973774 ], [ 350571.190999999642372, 259234.584600001573563 ], [ 350571.957699999213219, 259239.234900001436472 ], [ 350574.3496999964118, 259242.420899998396635 ], [ 350588.793200001120567, 259250.771800000220537 ], [ 350604.869099996984005, 259256.813999999314547 ], [ 350611.326800003647804, 259256.022399999201298 ], [ 350628.30969999730587, 259250.250799998641014 ], [ 350642.146499998867512, 259235.165300000458956 ], [ 350643.782499998807907, 259232.434500001370907 ], [ 350643.852600000798702, 259224.202399998903275 ], [ 350638.242600001394749, 259220.145700000226498 ], [ 350632.645199999213219, 259214.6114999987185 ], [ 350631.077500000596046, 259209.321299999952316 ], [ 350635.168399997055531, 259202.388700000941753 ], [ 350645.700800001621246, 259196.564300000667572 ], [ 350649.743199996650219, 259195.330800000578165 ], [ 350655.374799996614456, 259196.854600001126528 ], [ 350660.237800002098083, 259193.939100001007318 ], [ 350665.142200000584126, 259186.168699998408556 ], [ 350671.659199997782707, 259178.41160000115633 ], [ 350671.686200000345707, 259175.245400000363588 ], [ 350669.279899999499321, 259173.748100001364946 ], [ 350660.419399999082088, 259172.620099999010563 ], [ 350658.016699999570847, 259170.700599998235703 ], [ 350660.45719999819994, 259168.187399998307228 ], [ 350675.836499996483326, 259161.347199998795986 ], [ 350691.982500001788139, 259159.157299999147654 ], [ 350714.566399998962879, 259158.497800000011921 ], [ 350738.712700001895428, 259163.761700000613928 ], [ 350749.957900002598763, 259168.920000001788139 ], [ 350751.739500001072884, 259149.091699998825788 ], [ 350751.761100001633167, 259146.558800000697374 ], [ 350673.813100002706051, 259114.890099998563528 ], [ 350642.989799998700619, 259136.169399999082088 ], [ 350579.364900000393391, 259126.99379999935627 ], [ 350485.580899998545647, 259155.77930000051856 ], [ 350422.478100001811981, 259179.960799999535084 ], [ 350363.579599998891354, 259183.911699999123812 ], [ 350285.648800000548363, 259055.562300000339746 ], [ 350111.3766999989748, 258972.231600001454353 ], [ 350065.874399997293949, 259012.8114 ], [ 349897.455799996852875, 258999.611699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602011000", "MAP": "G9-670-T63", "PARCEL_NAM": "6D-4", "ACRE": ".15", "LONGITUDE": -64.97325842, "LATITUDE": 18.3632657, "OBJECTID_1": 2359, "PARCEL_NO_": "102602011000", "Tax_Legal_": "12 REM CARET BAY(CONS) NO. 8 LITTLE NORTHSIDE QTR", "Name": "RAWLINS, KEISHA C. & OVANDO K., CO-TRUSTEES", "Address": "PO Box 11074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 103400, "Improved_V": 168900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.7079274341, "SHAPE_Area": 440.45088780200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354320.475599996745586, 259273.292300000786781 ], [ 354309.708200000226498, 259252.948699999600649 ], [ 354294.842699997127056, 259263.445700000971556 ], [ 354304.243299998342991, 259285.613899998366833 ], [ 354309.930600002408028, 259280.594200000166893 ], [ 354316.41889999806881, 259276.214400000870228 ], [ 354320.475599996745586, 259273.292300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602011100", "MAP": "G9-2703-T77", "PARCEL_NAM": "6D-4-A", "ACRE": ".019", "LONGITUDE": -64.97318443, "LATITUDE": 18.36316985, "OBJECTID_1": 2360, "PARCEL_NO_": "102602011100", "Tax_Legal_": "6B&6D-4-A CARET BAY NO 8 LITTLE NORTHSIDE QTR", "Name": "EVELYN SHULTERBRANDT REVC TRUST", "Address": "PO Box 302416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68400, "Improved_V": 287300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.0529857513, "SHAPE_Area": 81.017502562299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354309.708200000226498, 259252.948699999600649 ], [ 354320.475599996745586, 259273.292300000786781 ], [ 354315.50620000064373, 259248.854600001126528 ], [ 354309.708200000226498, 259252.948699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602011100", "MAP": "G9-2703-T77", "PARCEL_NAM": "6B", "ACRE": ".29", "LONGITUDE": -64.97292135, "LATITUDE": 18.36309239, "OBJECTID_1": 2360, "PARCEL_NO_": "102602011100", "Tax_Legal_": "6B&6D-4-A CARET BAY NO 8 LITTLE NORTHSIDE QTR", "Name": "EVELYN SHULTERBRANDT REVC TRUST", "Address": "PO Box 302416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68400, "Improved_V": 287300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.44745164899999, "SHAPE_Area": 1524.3792836 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354375.484700001776218, 259252.633099999278784 ], [ 354379.651100002229214, 259236.835200000554323 ], [ 354335.300399996340275, 259236.894400000572205 ], [ 354313.510099999606609, 259239.038100000470877 ], [ 354320.475599996745586, 259273.292300000786781 ], [ 354331.816200003027916, 259267.263399999588728 ], [ 354372.252300001680851, 259253.4510000012815 ], [ 354375.484700001776218, 259252.633099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012600", "MAP": "B9-272-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97496127, "LATITUDE": 18.36104199, "OBJECTID_1": 2195, "PARCEL_NO_": "102601012600", "Tax_Legal_": "63-REM CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, LIONEL & OTHERS", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1223700, "Improved_V": 42300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 875.40749317899997, "SHAPE_Area": 32502.003381099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354111.350100003182888, 259077.275100000202656 ], [ 354266.253799997270107, 259120.915600001811981 ], [ 354286.808700002729893, 259060.445500001311302 ], [ 354287.233599998056889, 259059.235399998724461 ], [ 354125.963200002908707, 258932.260800000280142 ], [ 354011.95610000193119, 258951.804800000041723 ], [ 353996.603799998760223, 258955.478799998760223 ], [ 353978.812799997627735, 258961.454900000244379 ], [ 353956.144299998879433, 258972.035199999809265 ], [ 353930.202100001275539, 258988.288199998438358 ], [ 353930.182300001382828, 258990.609999999403954 ], [ 353931.785899996757507, 258991.678599998354912 ], [ 354017.150700002908707, 259004.620700001716614 ], [ 354027.589599996805191, 259009.772399999201298 ], [ 354036.372800000011921, 259019.976799998432398 ], [ 354038.737800002098083, 259026.328899998217821 ], [ 354039.50450000166893, 259030.979299999773502 ], [ 354038.622699998319149, 259039.837999999523163 ], [ 354033.692500002682209, 259062.350699998438358 ], [ 354111.350100003182888, 259077.275100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601013600", "MAP": "D9-4244-T88", "PARCEL_NAM": "2A-1", "ACRE": ".25", "LONGITUDE": -64.97811092000001, "LATITUDE": 18.3630427, "OBJECTID_1": 2205, "PARCEL_NO_": "102601013600", "Tax_Legal_": "CARET BAY 2A-1 LITTLE NORTHSIDE", "Name": "GUMBS, DARIEL", "Address": "8149 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45200, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.76978881900001, "SHAPE_Area": 1241.7100861500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353820.607600003480911, 259225.611800000071526 ], [ 353777.22070000320673, 259226.481899999082088 ], [ 353767.469400003552437, 259254.200699999928474 ], [ 353813.43639999628067, 259253.732599999755621 ], [ 353820.607600003480911, 259225.611800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012100", "MAP": "G9-1124-T53", "PARCEL_NAM": "4", "ACRE": "0.37", "LONGITUDE": -64.97767457, "LATITUDE": 18.36292424, "OBJECTID_1": 2190, "PARCEL_NO_": "102601012100", "Tax_Legal_": "CARET BAY 4 LITTLE NORTHSIDE", "Name": "JOSE SOTOMAYOR", "Address": "PO Box 1385", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.39144532099999, "SHAPE_Area": 2258.85772279 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353858.719899997115135, 259200.269000001251698 ], [ 353827.618400000035763, 259198.119899999350309 ], [ 353820.025799997150898, 259227.893399998545647 ], [ 353813.43639999628067, 259253.732599999755621 ], [ 353842.467200003564358, 259253.548000000417233 ], [ 353850.5320999994874, 259253.402899999171495 ], [ 353860.209700003266335, 259253.271000001579523 ], [ 353861.625299997627735, 259226.288899999111891 ], [ 353861.907600000500679, 259220.909299999475479 ], [ 353862.149499997496605, 259216.299499999731779 ], [ 353864.162900000810623, 259206.518300000578165 ], [ 353866.015000000596046, 259202.946400001645088 ], [ 353867.258299998939037, 259200.825500000268221 ], [ 353862.975299999117851, 259200.558400001376867 ], [ 353862.271899998188019, 259200.514499999582767 ], [ 353858.719899997115135, 259200.269000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012300", "MAP": "G9-2681-T77", "PARCEL_NAM": "2CAA-1", "ACRE": null, "LONGITUDE": -64.97698236, "LATITUDE": 18.36297155, "OBJECTID_1": 2192, "PARCEL_NO_": "102601012300", "Tax_Legal_": "CARET BAY 2CAA-1 LITTLE NORTHSIDE", "Name": "THOMPSON WEBBE, KELLY V.", "Address": "PO BOX 308355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91800, "Improved_V": 146100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.76670231, "SHAPE_Area": 1837.6448603399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353898.509199999272823, 259206.299499999731779 ], [ 353888.669799998402596, 259225.42850000038743 ], [ 353894.078400000929832, 259253.125999998301268 ], [ 353939.239100001752377, 259252.651299998164177 ], [ 353937.939400002360344, 259215.910300001502037 ], [ 353935.515000000596046, 259216.523800000548363 ], [ 353927.441100001335144, 259217.724300000816584 ], [ 353918.586099997162819, 259215.962999999523163 ], [ 353912.954499997198582, 259214.439300000667572 ], [ 353910.546300001442432, 259213.153000000864267 ], [ 353898.509199999272823, 259206.299499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97657143000001, "LATITUDE": 18.36291366, "OBJECTID_1": 2193, "PARCEL_NO_": "102601012400", "Tax_Legal_": "CARET BAY 2CA LITTLE NORTHSIDE", "Name": "THOMPSON, EDMUND & KATHLEEN", "Address": "2CA EST. CARET BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27800, "Improved_V": 220200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.96829633499999, "SHAPE_Area": 1322.7667506099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353989.615299999713898, 259207.889499999582767 ], [ 353985.5962999984622, 259206.379000000655651 ], [ 353979.144000001251698, 259206.537300001829863 ], [ 353937.939400002360344, 259215.910300001502037 ], [ 353939.239100001752377, 259252.651299998164177 ], [ 353952.14190000295639, 259252.545800000429153 ], [ 353989.615299999713898, 259207.889499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97242828, "LATITUDE": 18.36304628, "OBJECTID_1": 2403, "PARCEL_NO_": "102602015700", "Tax_Legal_": "7J CARET BAY NO 8 LITTLE NORTHSIDE QTR.", "Name": "EVELYN SHULTERBRANDT REVC TRUST", "Address": "PO Box 302416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.62636864, "SHAPE_Area": 483.815725246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354379.651100002229214, 259236.835200000554323 ], [ 354375.484700001776218, 259252.633099999278784 ], [ 354382.757700003683567, 259250.79280000180006 ], [ 354415.805699996650219, 259252.329900000244379 ], [ 354418.240800000727177, 259250.44990000128746 ], [ 354418.260600000619888, 259248.128100000321865 ], [ 354413.455099999904633, 259244.289099998772144 ], [ 354405.424400001764297, 259240.423599999397993 ], [ 354390.941299997270107, 259236.716499999165535 ], [ 354379.651100002229214, 259236.835200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601013000", "MAP": "A9-747-T009", "PARCEL_NAM": "63-2", "ACRE": "5.04", "LONGITUDE": -64.97638182, "LATITUDE": 18.36172511, "OBJECTID_1": 2199, "PARCEL_NO_": "102601013000", "Tax_Legal_": "63-2 CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "L & L INVESTMENTS REV. TRST.", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 383100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 915.47130067299997, "SHAPE_Area": 27386.421302499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353919.741599999368191, 258985.669399999082088 ], [ 353905.60869999974966, 258984.374000001698732 ], [ 353845.405100002884865, 259097.996100001037121 ], [ 353834.750399999320507, 259118.173799999058247 ], [ 353883.094999998807907, 259122.580299999564886 ], [ 353934.663000002503395, 259127.224199999123812 ], [ 353990.260799996554852, 259132.112199999392033 ], [ 354052.930200003087521, 259158.800799999386072 ], [ 354050.882399998605251, 259209.868599999696016 ], [ 354115.079899996519089, 259246.491099998354912 ], [ 354111.215599998831749, 259226.8277000002563 ], [ 354110.448899999260902, 259222.177400000393391 ], [ 354099.138199999928474, 259130.048000000417233 ], [ 354096.769599996507168, 259124.118000000715256 ], [ 354091.983900003135204, 259117.957100000232458 ], [ 354084.766599997878075, 259113.254000000655651 ], [ 354027.653300002217293, 259096.954599998891354 ], [ 354022.842399999499321, 259093.748799998313189 ], [ 354021.247800000011921, 259091.624800000339746 ], [ 354018.861199997365475, 259087.805599998682737 ], [ 354018.11599999666214, 259080.622299998998642 ], [ 354028.160400003194809, 259037.430300001055002 ], [ 354028.237700000405312, 259028.353900000452995 ], [ 354026.657499998807907, 259024.541299998760223 ], [ 354022.670800000429153, 259019.231300000101328 ], [ 354014.643700003623962, 259014.943799998611212 ], [ 353926.865299999713898, 259001.348600000143051 ], [ 353922.857100002467632, 258998.571600001305342 ], [ 353920.467000000178814, 258995.174600001424551 ], [ 353919.741599999368191, 258985.669399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97225316, "LATITUDE": 18.36280763, "OBJECTID_1": 2362, "PARCEL_NO_": "102602011300", "Tax_Legal_": "CARET BAY 7BA LITTLE NORTHSIDE", "Name": "JOSEPH, MARY V. & FAHIE, KEVIS", "Address": "4951 SW 152nd Ter", "City": "Miramar", "State": "Florida", "Zip": 33027, "Country": "United States", "Land_Value": 134900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.25931250299999, "SHAPE_Area": 1823.9446447 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354432.835400000214577, 259241.070199999958277 ], [ 354446.063699997961521, 259202.759399998933077 ], [ 354413.002999998629093, 259202.69990000128746 ], [ 354388.811899997293949, 259202.712999999523163 ], [ 354381.308700002729893, 259231.571400001645088 ], [ 354390.982699997723103, 259231.861699998378754 ], [ 354397.42960000038147, 259232.33669999986887 ], [ 354400.651199996471405, 259232.785199999809265 ], [ 354421.564999997615814, 259238.866999998688698 ], [ 354432.835400000214577, 259241.070199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97283813, "LATITUDE": 18.36282131, "OBJECTID_1": 2361, "PARCEL_NO_": "102602011200", "Tax_Legal_": "CARET BAY 6A-2 LITTLE NORTHSIDE", "Name": "WISEHART, RYAN C. & LISA M.", "Address": "PO Box 303848", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55100, "Improved_V": 147500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.93751497599999, "SHAPE_Area": 1556.88518247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354388.811899997293949, 259202.712999999523163 ], [ 354313.702500000596046, 259216.4527000002563 ], [ 354311.235100001096725, 259222.131999999284744 ], [ 354311.146899998188019, 259232.474899999797344 ], [ 354335.35249999910593, 259230.77309999987483 ], [ 354381.308700002729893, 259231.571400001645088 ], [ 354388.811899997293949, 259202.712999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402011100", "MAP": "G9-766-T64", "PARCEL_NAM": "4A", "ACRE": ".89", "LONGITUDE": -65.00234717, "LATITUDE": 18.36257712, "OBJECTID_1": 1422, "PARCEL_NO_": "102402011100", "Tax_Legal_": "HOPE 4A WEST END QTR", "Name": "NILES, DOUGLAS D. & FELICIA D", "Address": "ALTONA #200", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85100, "Improved_V": 72500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.355217393, "SHAPE_Area": 3187.7298994399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351256.687100000679493, 259130.215300001204014 ], [ 351252.630400002002716, 259133.13740000128746 ], [ 351243.710600003600121, 259138.975000001490116 ], [ 351227.519599996507168, 259146.441899999976158 ], [ 351209.743000000715256, 259150.729400001466274 ], [ 351192.803199999034405, 259151.435100000351667 ], [ 351216.543099999427795, 259204.402800001204014 ], [ 351269.14580000191927, 259182.246300000697374 ], [ 351256.687100000679493, 259130.215300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97277575, "LATITUDE": 18.36254752, "OBJECTID_1": 2363, "PARCEL_NO_": "102602011400", "Tax_Legal_": "CARET BAY REM 6A-1&7BB LITTLE NORTHSIDE", "Name": "GREEN, RAYMOND P. & JENNIFER R. & MICHAEL J. AUSTIN", "Address": "PO Box 11012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55100, "Improved_V": 83800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.431830109, "SHAPE_Area": 2402.4788198400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354313.702500000596046, 259216.4527000002563 ], [ 354388.811899997293949, 259202.712999999523163 ], [ 354389.151699997484684, 259162.819099999964237 ], [ 354366.578599996864796, 259162.212200000882149 ], [ 354362.538000002503395, 259163.234600000083447 ], [ 354356.863300003111362, 259166.776700001209974 ], [ 354317.012299999594688, 259206.558299999684095 ], [ 354313.702500000596046, 259216.4527000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-5737-T94", "PARCEL_NAM": "121", "ACRE": null, "LONGITUDE": -65.00965493, "LATITUDE": 18.36041823, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2396.89693687, "SHAPE_Area": 245985.60434399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350485.580899998545647, 259155.77930000051856 ], [ 350579.364900000393391, 259126.99379999935627 ], [ 350642.989799998700619, 259136.169399999082088 ], [ 350673.813100002706051, 259114.890099998563528 ], [ 350751.761100001633167, 259146.558800000697374 ], [ 350752.630400002002716, 259139.177600000053644 ], [ 350756.283600002527237, 259088.967300001531839 ], [ 350739.252099998295307, 259100.438000001013279 ], [ 350733.669100001454353, 259093.215199999511242 ], [ 350757.188799999654293, 259077.364500001072884 ], [ 350767.99379999935627, 258944.886199999600649 ], [ 350772.555799998342991, 258882.651000000536442 ], [ 350757.253899998962879, 258880.414799999445677 ], [ 350731.504000000655651, 258874.082299999892712 ], [ 350708.943499997258186, 258871.997800000011921 ], [ 350712.245999999344349, 258862.947799999266863 ], [ 350716.888999998569489, 258791.214000001549721 ], [ 350748.292000003159046, 258796.537300001829863 ], [ 350778.888700000941753, 258801.853999998420477 ], [ 350786.078299999237061, 258715.153299998492002 ], [ 350787.912100002169609, 258689.203899998217821 ], [ 350643.053099997341633, 258729.492199998348951 ], [ 350466.083700001239777, 258699.44649999961257 ], [ 350466.00900000333786, 258699.572999998927116 ], [ 350448.202100001275539, 258695.977400001138449 ], [ 350441.858499996364117, 258704.9358000010252 ], [ 350436.11879999935627, 258715.120900001376867 ], [ 350431.380400002002716, 258728.894299998879433 ], [ 350430.27759999781847, 258732.794399999082088 ], [ 350273.997900001704693, 258719.405999999493361 ], [ 350187.087700001895428, 258793.210700001567602 ], [ 350135.458599999547005, 258795.743400000035763 ], [ 350108.944499999284744, 258879.119500000029802 ], [ 350097.609399996697903, 258884.515099998563528 ], [ 350085.451700001955032, 258891.803899999707937 ], [ 350065.874399997293949, 259012.8114 ], [ 350111.3766999989748, 258972.231600001454353 ], [ 350285.648800000548363, 259055.562300000339746 ], [ 350363.579599998891354, 259183.911699999123812 ], [ 350422.478100001811981, 259179.960799999535084 ], [ 350485.580899998545647, 259155.77930000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601025300", "MAP": "G9-947-T67", "PARCEL_NAM": "9", "ACRE": ".22", "LONGITUDE": -64.97938841, "LATITUDE": 18.36257054, "OBJECTID_1": 2261, "PARCEL_NO_": "102601025300", "Tax_Legal_": "9 SORGENFRI NO.1 SOUOTHSIDE QTR.", "Name": "LAFORTUNE KILPATRICK, JUSTINE", "Address": "PO Box 304979", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50700, "Improved_V": 202500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.00267911500001, "SHAPE_Area": 980.73621583299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353639.049199998378754, 259183.910999998450279 ], [ 353656.575900003314018, 259208.963500000536442 ], [ 353681.728000000119209, 259190.804200001060963 ], [ 353662.601300001144409, 259164.260899998247623 ], [ 353657.732799999415874, 259167.80970000103116 ], [ 353639.049199998378754, 259183.910999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97614681, "LATITUDE": 18.36253277, "OBJECTID_1": 2281, "PARCEL_NO_": "102601030500", "Tax_Legal_": "40A CARET BAY LITTLE NORTHSIDE", "Name": "LANCLOS, BERNARD & CAROLYN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51400, "Improved_V": 185800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.89890182900001, "SHAPE_Area": 1223.2769524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354030.207800000905991, 259175.71339999884367 ], [ 353985.943400003015995, 259165.640799999237061 ], [ 353982.443000003695488, 259197.909400001168251 ], [ 353988.891699999570847, 259198.173300001770258 ], [ 353995.322400003671646, 259200.548000000417233 ], [ 354000.928800001740456, 259205.026799999177456 ], [ 354003.320799998939037, 259208.212799999862909 ], [ 354004.909999996423721, 259210.969999998807907 ], [ 354030.207800000905991, 259175.71339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97706685, "LATITUDE": 18.36233671, "OBJECTID_1": 2279, "PARCEL_NO_": "102601030300", "Tax_Legal_": "CARET BAY 38 LITTLE NORTHSIDE", "Name": "PENNY PALMS LLC", "Address": "7301 Flagg Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 174100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.47718312900003, "SHAPE_Area": 4063.5299895799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353883.094999998807907, 259122.580299999564886 ], [ 353872.82940000295639, 259191.734999999403954 ], [ 353887.335900001227856, 259192.698100000619888 ], [ 353898.591899998486042, 259196.589899998158216 ], [ 353914.638999998569489, 259206.009300000965595 ], [ 353921.07150000333786, 259208.172899998724461 ], [ 353928.324699997901917, 259208.654500000178814 ], [ 353934.663000002503395, 259127.224199999123812 ], [ 353883.094999998807907, 259122.580299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9765731, "LATITUDE": 18.36236245, "OBJECTID_1": 2280, "PARCEL_NO_": "102601030400", "Tax_Legal_": "CARET BAY 39 LITTLE NORTHSIDE", "Name": "BIWER, MATTHEW & JODI JABBAS", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 167300, "Improved_V": 103200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.098440122, "SHAPE_Area": 3999.70933827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353934.663000002503395, 259127.224199999123812 ], [ 353928.324699997901917, 259208.654500000178814 ], [ 353933.166199997067451, 259208.271899998188019 ], [ 353979.219499997794628, 259197.671999998390675 ], [ 353982.443000003695488, 259197.909400001168251 ], [ 353985.943400003015995, 259165.640799999237061 ], [ 353990.260799996554852, 259132.112199999392033 ], [ 353934.663000002503395, 259127.224199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-5600-T93", "PARCEL_NAM": "NORTHERN PORTION REM of BORDEAUX", "ACRE": null, "LONGITUDE": -65.02062911, "LATITUDE": 18.36079866, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3161.4596198899999, "SHAPE_Area": 126642.51732899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348925.220600001513958, 259160.107099998742342 ], [ 348943.01519999653101, 259153.708799999207258 ], [ 348951.074799999594688, 259154.197000000625849 ], [ 348955.077500000596046, 259157.607200000435114 ], [ 348963.108300000429153, 259161.472600001841784 ], [ 348971.194799996912479, 259158.794599998742342 ], [ 348979.297499999403954, 259154.216899998486042 ], [ 348987.443300001323223, 259144.57319999858737 ], [ 349000.389300003647804, 259139.401799999177456 ], [ 349003.659500002861023, 259134.151299998164177 ], [ 349005.338600002229214, 259126.354499999433756 ], [ 349004.665399998426437, 259110.728100001811981 ], [ 348999.15429999679327, 259095.062100000679493 ], [ 348992.763099998235703, 259088.043699998408556 ], [ 348986.395300000905991, 259078.281300000846386 ], [ 348985.650200001895428, 259071.098000001162291 ], [ 348989.710500001907349, 259067.753699999302626 ], [ 348996.166400000452995, 259067.173300001770258 ], [ 349010.658399999141693, 259069.824999999254942 ], [ 349016.32599999755621, 259067.127199999988079 ], [ 349022.05290000140667, 259057.463700000196695 ], [ 349026.107799999415874, 259054.752700001001358 ], [ 349035.004299998283386, 259051.659099999815226 ], [ 349044.687200002372265, 259050.894000001251698 ], [ 349072.904500000178814, 259051.547100000083447 ], [ 349079.38740000128746, 259047.800500001758337 ], [ 349079.504299998283386, 259034.080400001257658 ], [ 349081.951999999582767, 259030.722899999469519 ], [ 349085.182599999010563, 259030.116099998354912 ], [ 349089.208800002932549, 259030.782299999147654 ], [ 349094.831399999558926, 259033.3614999987185 ], [ 349100.470200002193451, 259034.040899999439716 ], [ 349114.996399998664856, 259032.682100001722574 ], [ 349140.79839999973774, 259032.893300000578165 ], [ 349169.082299999892712, 259025.7364999987185 ], [ 349173.921999998390675, 259025.565000001341105 ], [ 349209.329599998891354, 259034.087499998509884 ], [ 349214.172899998724461, 259033.49379999935627 ], [ 349215.040299996733665, 259026.323800001293421 ], [ 349217.475400000810623, 259024.443799998611212 ], [ 349232.786399997770786, 259025.624600000679493 ], [ 349237.640399999916553, 259023.764499999582767 ], [ 349241.706200003623962, 259019.787000000476837 ], [ 349244.157499998807907, 259016.007399998605251 ], [ 349253.83500000089407, 259015.875500001013279 ], [ 349267.491999998688698, 259021.897900000214577 ], [ 349270.69030000269413, 259025.090500000864267 ], [ 349270.668700002133846, 259027.623399998992682 ], [ 349269.027300000190735, 259030.987500000745058 ], [ 349268.9949000030756, 259034.786899998784065 ], [ 349269.734700001776218, 259042.603399999439716 ], [ 349271.33110000193119, 259044.51630000025034 ], [ 349288.281700000166893, 259042.544100001454353 ], [ 349292.279100000858307, 259046.587600000202656 ], [ 349298.691799998283386, 259051.073100000619888 ], [ 349302.685599997639656, 259055.538699999451637 ], [ 349305.059600003063679, 259060.835499998182058 ], [ 349307.467699997127056, 259062.121800001710653 ], [ 349309.892099998891354, 259061.508299998939037 ], [ 349311.549699999392033, 259056.244600001722574 ], [ 349311.677299998700619, 259041.258000001311302 ], [ 349314.94030000269413, 259036.851700000464916 ], [ 349329.471900001168251, 259034.859700001776218 ], [ 349368.189300000667572, 259033.487799998372793 ], [ 349373.867700003087521, 259029.523499999195337 ], [ 349377.132500000298023, 259024.906199999153614 ], [ 349383.13629999756813, 258982.736600000411272 ], [ 349389.852899998426437, 258951.549699999392033 ], [ 349392.332999996840954, 258944.392900001257658 ], [ 349403.716700002551079, 258933.298099998384714 ], [ 349418.259099997580051, 258930.039599999785423 ], [ 349465.082800000905991, 258923.66780000180006 ], [ 349473.163900002837181, 258921.622999999672174 ], [ 349482.121399998664856, 258911.352800000458956 ], [ 349487.020400002598763, 258904.215700000524521 ], [ 349494.300599999725819, 258901.530999999493361 ], [ 349501.5574000030756, 258901.590399999171495 ], [ 349507.986299999058247, 258904.176199998706579 ], [ 349526.499200001358986, 258908.127399999648333 ], [ 349540.120200000703335, 258918.371399998664856 ], [ 349548.12219999730587, 258925.614000000059605 ], [ 349561.752099998295307, 258934.802600000053644 ], [ 349565.751299999654293, 258938.635000001639128 ], [ 349575.306599996984005, 258952.856499999761581 ], [ 349580.790799997746944, 258971.688700001686811 ], [ 349583.816399998962879, 258995.144900001585484 ], [ 349586.94820000231266, 259006.147399999201298 ], [ 349593.3699000030756, 259009.577399998903275 ], [ 349607.034000001847744, 259014.755499999970198 ], [ 349657.723800003528595, 259027.835999999195337 ], [ 349762.274700000882149, 259060.355700001120567 ], [ 349766.304499998688698, 259060.599800001829863 ], [ 349780.045999996364117, 259056.701499998569489 ], [ 349700.976300001144409, 258967.394999999552965 ], [ 349787.494499996304512, 258939.605500001460314 ], [ 349813.370200000703335, 258931.162500001490116 ], [ 349836.009900003671646, 258923.959499999880791 ], [ 349859.459499999880791, 258916.340900000184774 ], [ 349881.291000001132488, 258909.342399999499321 ], [ 349878.943999998271465, 258900.87950000166893 ], [ 349875.835699997842312, 258887.133000001311302 ], [ 349874.291400000452995, 258879.098799999803305 ], [ 349872.703900001943111, 258876.130499999970198 ], [ 349864.727099999785423, 258865.932700000703335 ], [ 349855.103500001132488, 258859.732200000435114 ], [ 349850.280000001192093, 258858.004000000655651 ], [ 349842.227700002491474, 258856.671500001102686 ], [ 349838.941299997270107, 258863.821800000965595 ], [ 349834.868400000035763, 258868.6435999982059 ], [ 349831.6233000010252, 258870.939100001007318 ], [ 349822.726899996399879, 258874.032699998468161 ], [ 349813.846699997782707, 258875.226599998772144 ], [ 349792.882600001990795, 258875.054999999701977 ], [ 349775.960799999535084, 258873.649900000542402 ], [ 349753.340899996459484, 258878.530999999493361 ], [ 349720.163400001823902, 258892.191700000315905 ], [ 349703.992200002074242, 258897.33669999986887 ], [ 349679.687700003385544, 258910.647700000554323 ], [ 349654.589599996805191, 258922.474599998444319 ], [ 349644.888599999248981, 258925.350600000470877 ], [ 349633.589500002563, 258926.524599999189377 ], [ 349623.085799999535084, 258928.971799999475479 ], [ 349610.13629999756813, 258934.56529999896884 ], [ 349605.2804000005126, 258936.636500000953674 ], [ 349604.445299997925758, 258940.007199998944998 ], [ 349602.802199997007847, 258943.582299999892712 ], [ 349601.169699996709824, 258945.890999998897314 ], [ 349597.931900002062321, 258947.342099998146296 ], [ 349593.092200003564358, 258947.513599999248981 ], [ 349587.476800002157688, 258944.090199999511242 ], [ 349585.878600001335144, 258942.388300001621246 ], [ 349585.140600003302097, 258934.360800001770258 ], [ 349586.780199997127056, 258931.207800000905991 ], [ 349591.645000003278255, 258928.081199999898672 ], [ 349597.294600002467632, 258927.494100000709295 ], [ 349600.512699998915195, 258928.364900000393391 ], [ 349605.366700001060963, 258926.504700001329184 ], [ 349492.156099997460842, 258774.646299999207258 ], [ 349254.0878000035882, 258891.543499998748302 ], [ 349011.737400002777576, 258943.177700001746416 ], [ 348972.17230000346899, 258949.397799998521805 ], [ 348828.957999996840954, 258911.917599998414516 ], [ 348829.604999996721745, 259025.280099999159575 ], [ 348848.11599999666214, 259029.442400000989437 ], [ 348860.212499998509884, 259029.330299999564886 ], [ 348869.848700001835823, 259034.053199999034405 ], [ 348901.998700000345707, 259046.348700001835823 ], [ 348905.180799998342991, 259051.440999999642372 ], [ 348905.141199998557568, 259056.084699999541044 ], [ 348909.928700000047684, 259062.034499999135733 ], [ 348916.362999998033047, 259063.986999999731779 ], [ 348927.663999997079372, 259062.601799998432398 ], [ 348938.174800001084805, 259059.310400001704693 ], [ 348941.39469999819994, 259059.969999998807907 ], [ 348942.991099998354912, 259061.88289999961853 ], [ 348943.730899997055531, 259069.699400000274181 ], [ 348942.084100000560284, 259073.696699999272823 ], [ 348938.826499998569489, 259077.469700001180172 ], [ 348937.964400000870228, 259084.006599999964237 ], [ 348935.484399996697903, 259091.163499999791384 ], [ 348935.423199996352196, 259098.340199999511242 ], [ 348936.990900002419949, 259103.630300000309944 ], [ 348941.807199999690056, 259106.202899999916553 ], [ 348944.204599998891354, 259108.75560000166297 ], [ 348944.16499999910593, 259113.399300001561642 ], [ 348942.475000001490116, 259122.462499998509884 ], [ 348935.941799998283386, 259132.11939999833703 ], [ 348915.643799997866154, 259148.418499998748302 ], [ 348913.998800002038479, 259152.204799998551607 ], [ 348914.738499999046326, 259160.021299999207258 ], [ 348916.333200000226498, 259162.145300000905991 ], [ 348925.220600001513958, 259160.107099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9723834, "LATITUDE": 18.36247959, "OBJECTID_1": 2364, "PARCEL_NO_": "102602011500", "Tax_Legal_": "CARET BAY 6A-1-A&7BB-A LITTLE NORTHSIDE", "Name": "BISAGNI,, JOSEPH J", "Address": "58 Bayview Ave", "City": "Babylon", "State": "New York", "Zip": 11702, "Country": "United States", "Land_Value": 57300, "Improved_V": 165400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.46258394700001, "SHAPE_Area": 930.01117225400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354413.002999998629093, 259202.69990000128746 ], [ 354410.149999998509884, 259158.980200000107288 ], [ 354400.445500001311302, 259162.278299998492002 ], [ 354392.376999996602535, 259162.845499999821186 ], [ 354389.151699997484684, 259162.819099999964237 ], [ 354388.811899997293949, 259202.712999999523163 ], [ 354413.002999998629093, 259202.69990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.972079, "LATITUDE": 18.36241869, "OBJECTID_1": 2365, "PARCEL_NO_": "102602011600", "Tax_Legal_": "CARET BAY 7B LITTLE NORTHSIDE", "Name": "EDWARDS, MARCELLUS & LISA", "Address": "PO Box 10976", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 103700, "Improved_V": 297400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.46722010900001, "SHAPE_Area": 2044.6167608799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354446.063699997961521, 259202.759399998933077 ], [ 354459.410599999129772, 259150.517499998211861 ], [ 354422.295100003480911, 259153.168999999761581 ], [ 354410.149999998509884, 259158.980200000107288 ], [ 354413.002999998629093, 259202.69990000128746 ], [ 354446.063699997961521, 259202.759399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97183723000001, "LATITUDE": 18.36231524, "OBJECTID_1": 2399, "PARCEL_NO_": "102602015200", "Tax_Legal_": "NELJBERG 3 WEST PORTN LITTLE NORTHSIDE", "Name": "EDWARDS, MARCELLUS & LISA", "Address": "PO Box 10976", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.47223607800001, "SHAPE_Area": 375.64834256 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354467.009099997580051, 259110.471900001168251 ], [ 354459.410599999129772, 259150.517499998211861 ], [ 354446.063699997961521, 259202.759399998933077 ], [ 354461.606600001454353, 259176.710999999195337 ], [ 354467.009099997580051, 259110.471900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97762734, "LATITUDE": 18.36228938, "OBJECTID_1": 2278, "PARCEL_NO_": "102601030200", "Tax_Legal_": "CARET BAY 37 LITTLE NORTHSIDE", "Name": "PENNY PALMS LLC", "Address": "7301 Flagg Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 203400, "Improved_V": 423600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.20452114099999, "SHAPE_Area": 4321.0562465000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353834.750399999320507, 259118.173799999058247 ], [ 353829.010899998247623, 259129.314800001680851 ], [ 353798.686499997973442, 259186.695199999958277 ], [ 353872.82940000295639, 259191.734999999403954 ], [ 353883.094999998807907, 259122.580299999564886 ], [ 353834.750399999320507, 259118.173799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601020600", "MAP": "F9-804-T61", "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.97909099, "LATITUDE": 18.36182951, "OBJECTID_1": 2214, "PARCEL_NO_": "102601020600", "Tax_Legal_": "PEARL 9 S S QTR", "Name": "KNUDSEN, ANNELISE N. (TRUSTEE)", "Address": "PO Box 304216", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 174500, "Improved_V": 269700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.82739672100001, "SHAPE_Area": 3356.8106753299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353681.201200000941753, 259054.831199999898672 ], [ 353631.403999999165535, 259076.883299998939037 ], [ 353635.738899998366833, 259076.51969999819994 ], [ 353686.436499997973442, 259110.484299998730421 ], [ 353705.20269999653101, 259138.018399998545647 ], [ 353707.947200000286102, 259142.045099999755621 ], [ 353713.555399999022484, 259146.312800001353025 ], [ 353737.521799996495247, 259172.684599999338388 ], [ 353742.323700003325939, 259176.945799998939037 ], [ 353751.954499997198582, 259182.301899999380112 ], [ 353756.779799997806549, 259183.819099999964237 ], [ 353755.328599996864796, 259179.970499999821186 ], [ 353751.965999998152256, 259176.607900001108646 ], [ 353743.979800000786781, 259169.672499999403954 ], [ 353738.095299996435642, 259161.265999998897314 ], [ 353735.993699997663498, 259153.490100000053644 ], [ 353709.933600001037121, 259105.783300001174212 ], [ 353681.201200000941753, 259054.831199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97604427, "LATITUDE": 18.36227245, "OBJECTID_1": 2282, "PARCEL_NO_": "102601030600", "Tax_Legal_": "CARET BAY 40 & 40B LITTLE NORTHSIDE", "Name": "PEMBERTON, MAVIS & LIBURD, DERICK", "Address": "PO Box 8974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 97500, "Improved_V": 436800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.642670466, "SHAPE_Area": 1596.9711720800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353990.260799996554852, 259132.112199999392033 ], [ 353985.943400003015995, 259165.640799999237061 ], [ 354030.207800000905991, 259175.71339999884367 ], [ 354052.930200003087521, 259158.800799999386072 ], [ 353990.260799996554852, 259132.112199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402011000", "MAP": "D9-4839-T89", "PARCEL_NAM": "8A-4", "ACRE": ".519", "LONGITUDE": -65.00323378, "LATITUDE": 18.36211615, "OBJECTID_1": 1421, "PARCEL_NO_": "102402011000", "Tax_Legal_": "8A ESTATE HOPE NO. 5 WEST END QTR", "Name": "STRAIN, MELONITA & JON", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 161900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.065137373, "SHAPE_Area": 2328.43738368 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351128.844899997115135, 259086.739199999719858 ], [ 351110.719400003552437, 259131.975900001823902 ], [ 351118.732199996709824, 259137.952100001275539 ], [ 351128.373800002038479, 259142.041799999773502 ], [ 351145.295500002801418, 259143.446899998933077 ], [ 351159.809199996292591, 259143.565699998289347 ], [ 351165.085799999535084, 259092.102000001817942 ], [ 351128.844899997115135, 259086.739199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402011000", "MAP": "D9-4839-T89", "PARCEL_NAM": "8A-5", "ACRE": ".458", "LONGITUDE": -65.00278187000001, "LATITUDE": 18.36211364, "OBJECTID_1": 1421, "PARCEL_NO_": "102402011000", "Tax_Legal_": "8A ESTATE HOPE NO. 5 WEST END QTR", "Name": "STRAIN, MELONITA & JON", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 161900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.93285073000001, "SHAPE_Area": 2541.0005167099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351217.330600000917912, 259111.946299999952316 ], [ 351215.917599998414516, 259088.50730000063777 ], [ 351206.220299996435642, 259090.960999999195337 ], [ 351202.987899996340275, 259091.778999999165535 ], [ 351190.067100003361702, 259093.995200000703335 ], [ 351174.750799998641014, 259093.447700001299381 ], [ 351165.085799999535084, 259092.102000001817942 ], [ 351159.809199996292591, 259143.565699998289347 ], [ 351188.04450000077486, 259142.107999999076128 ], [ 351205.750500001013279, 259140.880399998277426 ], [ 351217.330600000917912, 259111.946299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00679049, "LATITUDE": 18.36207467, "OBJECTID_1": 1445, "PARCEL_NO_": "102402014200", "Tax_Legal_": "6A HOPE NO.5 WEST END QTR.", "Name": "BEDMINISTER, ETHELBERT, JOHN & MAURICE", "Address": "PO Box 502535", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.69528899, "SHAPE_Area": 1033.0710564200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350772.032200001180172, 259133.425799999386072 ], [ 350776.54389999806881, 259077.10080000013113 ], [ 350770.881700001657009, 259079.165399998426437 ], [ 350756.283600002527237, 259088.967300001531839 ], [ 350752.630400002002716, 259139.177600000053644 ], [ 350772.032200001180172, 259133.425799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402011000", "MAP": "D9-4839-T89", "PARCEL_NAM": "8A-6", "ACRE": ".415", "LONGITUDE": -65.00239652, "LATITUDE": 18.3620675, "OBJECTID_1": 1421, "PARCEL_NO_": "102402011000", "Tax_Legal_": "8A ESTATE HOPE NO. 5 WEST END QTR", "Name": "STRAIN, MELONITA & JON", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 161900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.72018191399999, "SHAPE_Area": 1568.0436698399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351215.917599998414516, 259088.50730000063777 ], [ 351217.330600000917912, 259111.946299999952316 ], [ 351205.750500001013279, 259140.880399998277426 ], [ 351209.829300001263618, 259140.597600001841784 ], [ 351213.059900000691414, 259139.990699999034405 ], [ 351221.943800002336502, 259138.374699998646975 ], [ 351234.896899998188019, 259132.359000001102686 ], [ 351244.612199999392033, 259127.794399999082088 ], [ 351250.366599999368191, 259123.537900000810623 ], [ 351246.557700000703335, 259110.673700001090765 ], [ 351236.778599999845028, 259077.644999999552965 ], [ 351234.542000003159046, 259079.371599998325109 ], [ 351230.487000003457069, 259082.082600001245737 ], [ 351228.057300001382828, 259083.329300001263618 ], [ 351215.917599998414516, 259088.50730000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00626359, "LATITUDE": 18.36196332, "OBJECTID_1": 1418, "PARCEL_NO_": "102402010700", "Tax_Legal_": "HOPE 6 WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 296200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.67580209300002, "SHAPE_Area": 5320.3400489799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350856.75620000064373, 259126.942099999636412 ], [ 350870.263099998235703, 259055.914099998772144 ], [ 350858.130699999630451, 259060.247699998319149 ], [ 350852.468500003218651, 259062.312300000339746 ], [ 350840.348700001835823, 259065.168499998748302 ], [ 350833.885600000619888, 259066.593199998140335 ], [ 350825.809900000691414, 259068.004799999296665 ], [ 350791.9087999984622, 259071.949200000613928 ], [ 350785.44030000269413, 259074.007199998944998 ], [ 350776.54389999806881, 259077.10080000013113 ], [ 350772.032200001180172, 259133.425799999386072 ], [ 350789.806999996304512, 259129.349399998784065 ], [ 350808.370200000703335, 259127.390399999916553 ], [ 350826.922600001096725, 259126.697900000959635 ], [ 350842.237099997699261, 259127.456500001251698 ], [ 350844.65429999679327, 259127.687399998307228 ], [ 350847.075000002980232, 259127.496100001037121 ], [ 350856.75620000064373, 259126.942099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402014700", "MAP": "D9-4839-T89", "PARCEL_NAM": "8A-3", "ACRE": ".415", "LONGITUDE": -65.00359435, "LATITUDE": 18.36195296, "OBJECTID_1": 1450, "PARCEL_NO_": "102402014700", "Tax_Legal_": "8A-3 ESTATE HOPE NO. 5 WEST END QTR", "Name": "SYDNEY, EPHRAIM L. & BRENDA", "Address": "17209 Birch Leaf Ter", "City": "Bowie", "State": "Maryland", "Zip": 20716, "Country": "United States", "Land_Value": 45400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.99991165899999, "SHAPE_Area": 1569.39757549 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351088.649700000882149, 259072.2668999992311 ], [ 351074.652900002896786, 259106.138399999588728 ], [ 351085.12780000269413, 259107.068500000983477 ], [ 351096.374799996614456, 259112.015700001269579 ], [ 351104.364200003445148, 259120.736000001430511 ], [ 351108.325599998235703, 259129.000999998301268 ], [ 351110.719400003552437, 259131.975900001823902 ], [ 351128.844899997115135, 259086.739199999719858 ], [ 351124.822300001978874, 259085.650800000876188 ], [ 351107.119400002062321, 259081.284000001847744 ], [ 351096.673299998044968, 259076.976700000464916 ], [ 351088.649700000882149, 259072.2668999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402011200", "MAP": "D9-2125-T82", "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -65.00207305000001, "LATITUDE": 18.36186069, "OBJECTID_1": 1423, "PARCEL_NO_": "102402011200", "Tax_Legal_": "HOPE 8 WEST END QTR", "Name": "JON B. STRAIN & MELONITA N. STRAIN FAMILY TRUST", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 87800, "Improved_V": 242100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.049582345, "SHAPE_Area": 1939.1011966599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351283.854699999094009, 259064.787599999457598 ], [ 351279.02759999781847, 259063.481499999761581 ], [ 351268.511399999260902, 259067.406199999153614 ], [ 351259.62219999730587, 259069.655499998480082 ], [ 351249.935599997639656, 259070.842799998819828 ], [ 351241.847300000488758, 259073.731899999082088 ], [ 351236.778599999845028, 259077.644999999552965 ], [ 351246.557700000703335, 259110.673700001090765 ], [ 351250.366599999368191, 259123.537900000810623 ], [ 351257.595899999141693, 259118.190400000661612 ], [ 351274.640000000596046, 259105.24210000038147 ], [ 351288.45160000026226, 259093.111699998378754 ], [ 351289.336999997496605, 259083.830899998545647 ], [ 351286.230499997735023, 259069.8733000010252 ], [ 351285.443899996578693, 259067.544799998402596 ], [ 351283.854699999094009, 259064.787599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402014300", "MAP": null, "PARCEL_NAM": "7B", "ACRE": null, "LONGITUDE": -65.00548378000001, "LATITUDE": 18.36179235, "OBJECTID_1": 1446, "PARCEL_NO_": "102402014300", "Tax_Legal_": "HOPE 7B WEST END QUARTER", "Name": "BRYAN, NORMA A. & LAURENCE E., JR.", "Address": "PO Box 10682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013682, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.99337627800003, "SHAPE_Area": 5724.2430395299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350870.263099998235703, 259055.914099998772144 ], [ 350856.75620000064373, 259126.942099999636412 ], [ 350866.439099997282028, 259126.176899999380112 ], [ 350879.370700001716614, 259122.694200001657009 ], [ 350908.496799997985363, 259111.322399999946356 ], [ 350939.215800002217293, 259102.285700000822544 ], [ 350941.647299997508526, 259100.828000001609325 ], [ 350943.299500003457069, 259096.197399999946356 ], [ 350942.626299999654293, 259080.570999998599291 ], [ 350946.096100002527237, 259051.890700001269579 ], [ 350944.526600003242493, 259046.811599999666214 ], [ 350940.53999999910593, 259041.501600001007318 ], [ 350938.131800003349781, 259040.215300001204014 ], [ 350930.903800003230572, 259036.7787000015378 ], [ 350922.050599999725819, 259034.806400001049042 ], [ 350908.3378000035882, 259035.327399998903275 ], [ 350897.823399998247623, 259039.04109999909997 ], [ 350884.843299999833107, 259048.223000001162291 ], [ 350870.263099998235703, 259055.914099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97191008, "LATITUDE": 18.36205058, "OBJECTID_1": 2366, "PARCEL_NO_": "102602011700", "Tax_Legal_": "CARET BAY 7G LITTLE NORTHSIDE", "Name": "EDWARDS, MARCELLUS & LISA", "Address": "PO Box 10976", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.084749351, "SHAPE_Area": 789.59288939500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354467.009099997580051, 259110.471900001168251 ], [ 354448.388400003314018, 259119.185400001704693 ], [ 354445.060599997639656, 259131.190499998629093 ], [ 354443.424599997699261, 259133.921300001442432 ], [ 354440.975100003182888, 259137.489900000393391 ], [ 354433.648199997842312, 259145.662500001490116 ], [ 354422.295100003480911, 259153.168999999761581 ], [ 354459.410599999129772, 259150.517499998211861 ], [ 354467.009099997580051, 259110.471900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402014600", "MAP": "A9-322-T85", "PARCEL_NAM": "8A-2", "ACRE": ".309", "LONGITUDE": -65.00398743, "LATITUDE": 18.36182199, "OBJECTID_1": 1449, "PARCEL_NO_": "102402014600", "Tax_Legal_": "HOPE 8A-2 No.5 WEST END QTR", "Name": "MASSICOT, SAMUEL & IGNAI", "Address": "PO Box 307683", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.42565017800001, "SHAPE_Area": 1826.66439681 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351061.411300003528595, 259051.356800001114607 ], [ 351027.922799997031689, 259101.534099999815226 ], [ 351074.652900002896786, 259106.138399999588728 ], [ 351088.649700000882149, 259072.2668999992311 ], [ 351079.823499999940395, 259067.128400001674891 ], [ 351068.608800001442432, 259058.381799999624491 ], [ 351067.008799999952316, 259056.891100000590086 ], [ 351061.411300003528595, 259051.356800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "102201010100", "MAP": null, "PARCEL_NAM": "WEST CAY", "ACRE": null, "LONGITUDE": -65.04564098, "LATITUDE": 18.35901885, "OBJECTID_1": 1141, "PARCEL_NO_": "102201010100", "Tax_Legal_": "WEST CAY WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 127700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2890.83965463, "SHAPE_Area": 171706.58687500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 346535.489699997007847, 258616.192299999296665 ], [ 346546.232100002467632, 258630.873599998652935 ], [ 346555.333499997854233, 258643.312100000679493 ], [ 346576.831000000238419, 258660.840799998492002 ], [ 346595.682599999010563, 258697.882599998265505 ], [ 346594.452500000596046, 258729.398400001227856 ], [ 346596.012999996542931, 258735.532900001853704 ], [ 346584.145599998533726, 258759.050000000745058 ], [ 346574.620600000023842, 258775.718800000846386 ], [ 346568.270599998533726, 258788.4189000017941 ], [ 346557.951800003647804, 258797.943900000303984 ], [ 346542.87049999833107, 258813.025199998170137 ], [ 346503.182899996638298, 258819.375199999660254 ], [ 346482.545400001108646, 258828.1064000017941 ], [ 346465.876599997282028, 258832.075199998915195 ], [ 346447.620300002396107, 258832.075199998915195 ], [ 346427.776500001549721, 258824.931400001049042 ], [ 346407.138999998569489, 258824.137699998915195 ], [ 346394.439000003039837, 258814.612700000405312 ], [ 346382.532700002193451, 258808.262600000947714 ], [ 346369.832699999213219, 258798.73759999871254 ], [ 346349.988899998366833, 258793.975099999457598 ], [ 346330.938799999654293, 258815.406399998813868 ], [ 346308.713799998164177, 258836.0439000017941 ], [ 346298.395000003278255, 258855.094000000506639 ], [ 346290.457500003278255, 258870.175299998372793 ], [ 346278.55120000243187, 258879.700300000607967 ], [ 346269.026199996471405, 258891.606600001454353 ], [ 346254.73870000243187, 258906.687800001353025 ], [ 346252.357400000095367, 258917.800400000065565 ], [ 346260.294900000095367, 258919.387899998575449 ], [ 346275.093099996447563, 258923.101599998772144 ], [ 346289.716399997472763, 258910.3445999994874 ], [ 346302.363799996674061, 258911.450300000607967 ], [ 346315.063799999654293, 258913.037900000810623 ], [ 346332.526299998164177, 258922.562899999320507 ], [ 346346.020099997520447, 258928.119100000709295 ], [ 346358.720100000500679, 258921.769099999219179 ], [ 346373.801399998366833, 258917.006599999964237 ], [ 346386.501400001347065, 258913.037900000810623 ], [ 346399.201499998569489, 258918.594099998474121 ], [ 346403.964000001549721, 258926.531599998474121 ], [ 346405.551500000059605, 258936.056600000709295 ], [ 346412.695299997925758, 258937.644200000911951 ], [ 346417.457800000905991, 258944.787900000810623 ], [ 346423.013999998569489, 258952.725400000810623 ], [ 346419.045299999415874, 258969.394200000911951 ], [ 346418.118600003421307, 258982.745099999010563 ], [ 346411.107699997723103, 258990.825500000268221 ], [ 346416.663999997079372, 259007.494300000369549 ], [ 346425.098499998450279, 259015.310600001364946 ], [ 346432.538999997079372, 259022.575599998235703 ], [ 346442.857799999415874, 259027.338100001215935 ], [ 346459.526600003242493, 259030.513099998235703 ], [ 346464.289099998772144, 259015.431800000369549 ], [ 346469.845399998128414, 259028.131799999624491 ], [ 346478.57660000026226, 259020.988099999725819 ], [ 346482.545400001108646, 259011.462999999523163 ], [ 346487.307899996638298, 259024.163100000470877 ], [ 346496.832900002598763, 259024.956799998879433 ], [ 346496.832900002598763, 259010.669300001114607 ], [ 346503.182899996638298, 258997.175500001758337 ], [ 346510.326700001955032, 258986.063000001013279 ], [ 346524.614200003445148, 258977.331700000911951 ], [ 346536.520499996840954, 258975.744199998676777 ], [ 346550.014300003647804, 258982.888000000268221 ], [ 346564.30179999768734, 258988.444299999624491 ], [ 346570.651799999177456, 258996.381799999624491 ], [ 346580.970600001513958, 258994.794300001114607 ], [ 346582.558100000023842, 258985.269200000911951 ], [ 346589.701899997889996, 258978.125500001013279 ], [ 346596.051899999380112, 258966.219200000166893 ], [ 346603.840199999511242, 258952.601100001484156 ], [ 346596.673299998044968, 258941.987799998372793 ], [ 346595.114600002765656, 258935.642200000584126 ], [ 346593.546899996697903, 258930.352099999785423 ], [ 346594.425200000405312, 258921.915500000119209 ], [ 346598.598800003528595, 258905.273299999535084 ], [ 346613.459499999880791, 258864.653799999505281 ], [ 346616.05460000038147, 258843.987900000065565 ], [ 346624.200499996542931, 258834.344300001859665 ], [ 346633.924800001084805, 258828.724300000816584 ], [ 346645.24549999833107, 258825.017299998551607 ], [ 346654.935599997639656, 258823.407900001853704 ], [ 346665.401500001549721, 258825.393399998545647 ], [ 346675.833200000226498, 258831.389400001615286 ], [ 346684.555200003087521, 258848.770399998873472 ], [ 346686.902199998497963, 258857.233399998396635 ], [ 346690.895999997854233, 258861.699000000953674 ], [ 346733.888400003314018, 258926.434399999678135 ], [ 346746.665399998426437, 258941.104499999433756 ], [ 346763.491800002753735, 258953.696699999272823 ], [ 346768.331500001251698, 258953.525199998170137 ], [ 346772.388199999928474, 258950.603100001811981 ], [ 346777.283699996769428, 258943.888199999928474 ], [ 346783.840300001204014, 258931.487300001084805 ], [ 346795.13400000333786, 258930.94649999961257 ], [ 346809.683600001037121, 258926.843699999153614 ], [ 346821.03490000218153, 258919.548300001770258 ], [ 346828.356499999761581, 258912.008900001645088 ], [ 346845.468900002539158, 258891.039599999785423 ], [ 346845.49040000140667, 258888.506599999964237 ], [ 346854.476800002157688, 258874.859099999070168 ], [ 346858.632399998605251, 258860.3277000002563 ], [ 346867.525200001895428, 258857.656199999153614 ], [ 346875.705200001597404, 258844.002099998295307 ], [ 346877.432899996638298, 258830.50620000064373 ], [ 346883.078900001943111, 258830.341400001198053 ], [ 346886.320299997925758, 258828.467999998480082 ], [ 346887.263300001621246, 258812.432700000703335 ], [ 346883.397200003266335, 258792.980399999767542 ], [ 346884.284400001168251, 258783.488499999046326 ], [ 346881.134700000286102, 258774.596700001507998 ], [ 346884.447999998927116, 258764.280299998819828 ], [ 346887.691299997270107, 258762.195900000631809 ], [ 346894.966099999845028, 258760.144499998539686 ], [ 346898.1841000020504, 258761.0152000002563 ], [ 346916.578299999237061, 258778.897599998861551 ], [ 346921.38740000128746, 258782.314500000327826 ], [ 346923.010799996554852, 258781.061200000345707 ], [ 346923.854900002479553, 258776.635099999606609 ], [ 346929.545800000429153, 258771.193300001323223 ], [ 346929.572800002992153, 258768.027100000530481 ], [ 346925.706600002944469, 258748.57490000128746 ], [ 346927.362400002777576, 258743.522199999541044 ], [ 346929.786799997091293, 258742.908700000494719 ], [ 346933.780599996447563, 258747.374400001019239 ], [ 346936.208499997854233, 258746.338799998164177 ], [ 346936.249799996614456, 258741.484000001102686 ], [ 346933.08389999717474, 258734.491999998688698 ], [ 346926.674800001084805, 258729.584399998188019 ], [ 346916.216099999845028, 258726.75450000166893 ], [ 346913.820500001311302, 258723.990699999034405 ], [ 346913.906900003552437, 258713.858899999409914 ], [ 346913.13289999961853, 258710.05290000140667 ], [ 346903.590199999511242, 258694.353900000452995 ], [ 346900.456699997186661, 258683.5625 ], [ 346897.251199997961521, 258681.214200001209974 ], [ 346893.228699997067451, 258680.125799998641014 ], [ 346879.638199999928474, 258666.293499998748302 ], [ 346876.423799999058247, 258665.000599998980761 ], [ 346870.750799998641014, 258668.331700000911951 ], [ 346869.140000000596046, 258668.107400000095367 ], [ 346867.54169999808073, 258666.405600000172853 ], [ 346865.180299997329712, 258659.631299998611212 ], [ 346863.648599997162819, 258650.119500000029802 ], [ 346864.593400001525879, 258633.873100001364946 ], [ 346863.020300000905991, 258629.216099999845028 ], [ 346863.099500000476837, 258619.928700000047684 ], [ 346867.156199999153614, 258617.006499998271465 ], [ 346869.605700001120567, 258613.438000001013279 ], [ 346870.439000003039837, 258610.278400000184774 ], [ 346869.668600000441074, 258606.050200000405312 ], [ 346860.007299996912479, 258604.282400000840425 ], [ 346852.788199998438358, 258599.790399998426437 ], [ 346847.995300002396107, 258594.473799999803305 ], [ 346839.239200003445148, 258581.103199999779463 ], [ 346816.097099997103214, 258552.627300001680851 ], [ 346815.46339999884367, 258532.357099998742342 ], [ 346817.151500001549721, 258523.504999998956919 ], [ 346822.955700002610683, 258504.7652000002563 ], [ 346832.804099999368191, 258484.580800000578165 ], [ 346836.122900001704693, 258473.631099998950958 ], [ 346844.304700002074242, 258459.765900000929832 ], [ 346846.906999997794628, 258438.255699999630451 ], [ 346855.054700002074242, 258428.401000000536442 ], [ 346868.025799997150898, 258420.274500001221895 ], [ 346869.665399998426437, 258417.121500000357628 ], [ 346868.920199997723103, 258409.938200000673532 ], [ 346866.530100002884865, 258406.54109999909997 ], [ 346860.101099997758865, 258403.955400001257658 ], [ 346851.226300001144409, 258404.515999998897314 ], [ 346844.788400001823902, 258402.985700000077486 ], [ 346840.7837999984622, 258399.786499999463558 ], [ 346838.400799997150898, 258395.545099999755621 ], [ 346834.401600003242493, 258391.712699998170137 ], [ 346827.983499996364117, 258387.860500000417233 ], [ 346824.783399999141693, 258384.879000000655651 ], [ 346817.548199996352196, 258382.286699999123812 ], [ 346811.891400001943111, 258383.717999998480082 ], [ 346808.612199999392033, 258390.024000000208616 ], [ 346807.777099996805191, 258393.39469999819994 ], [ 346799.667300000786781, 258398.816700000315905 ], [ 346781.125699996948242, 258398.242800001055002 ], [ 346777.862700000405312, 258402.649000000208616 ], [ 346775.44370000064373, 258402.629200000315905 ], [ 346771.439099997282028, 258399.430100001394749 ], [ 346765.798500001430511, 258398.96169999986887 ], [ 346759.335500001907349, 258400.386500000953674 ], [ 346755.273299999535084, 258403.941799998283386 ], [ 346754.36089999973774, 258416.388900000602007 ], [ 346755.939400002360344, 258420.412599999457598 ], [ 346756.666599996387959, 258429.706599999219179 ], [ 346756.5658999979496, 258441.526999998837709 ], [ 346754.875900000333786, 258450.590199999511242 ], [ 346751.596699997782707, 258456.896200001239777 ], [ 346745.893200002610683, 258463.815600000321865 ], [ 346727.988899998366833, 258483.089699998497963 ], [ 346723.930399999022484, 258486.222899999469519 ], [ 346719.079899996519089, 258487.660799998790026 ], [ 346715.85639999806881, 258487.423300001770258 ], [ 346709.438299998641014, 258483.571100000292063 ], [ 346707.023000001907349, 258483.129200000315905 ], [ 346705.408500000834465, 258483.327100001275539 ], [ 346699.710400000214577, 258489.613200001418591 ], [ 346696.488799996674061, 258489.164700001478195 ], [ 346684.457000002264977, 258481.67790000140667 ], [ 346677.254100002348423, 258475.286200001835823 ], [ 346669.210799999535084, 258472.898299999535084 ], [ 346661.945000000298023, 258473.894299998879433 ], [ 346657.897200003266335, 258475.760999999940395 ], [ 346648.968500003218651, 258482.653999999165535 ], [ 346636.819799996912479, 258488.88740000128746 ], [ 346618.141599997878075, 258504.355500001460314 ], [ 346614.102799996733665, 258505.166799999773502 ], [ 346611.69650000333786, 258503.669399999082088 ], [ 346610.10360000282526, 258501.334399998188019 ], [ 346607.69370000064373, 258500.259199999272823 ], [ 346602.854000002145767, 258500.430700000375509 ], [ 346600.422499999403954, 258501.888399999588728 ], [ 346599.5945999994874, 258504.414799999445677 ], [ 346600.2804000005126, 258518.5636 ], [ 346597.834499999880791, 258521.71000000089407 ], [ 346598.659100003540516, 258530.864000000059605 ], [ 346597.005500003695488, 258537.47859999909997 ], [ 346593.367499999701977, 258539.462999999523163 ], [ 346589.63849999755621, 258542.691300000995398 ], [ 346597.575599998235703, 258552.105399999767542 ], [ 346606.927400000393391, 258563.606199998408556 ], [ 346606.405900001525879, 258571.25620000064373 ], [ 346603.289399996399879, 258578.158399999141693 ], [ 346595.993500001728535, 258579.741500001400709 ], [ 346594.028899997472763, 258586.095899999141693 ], [ 346588.737199999392033, 258590.395399998873472 ], [ 346580.468999996781349, 258595.686999998986721 ], [ 346565.916900001466274, 258602.301600001752377 ], [ 346556.635099999606609, 258590.014800000935793 ], [ 346555.664300002157688, 258577.166200000792742 ], [ 346549.380400002002716, 258568.567200001329184 ], [ 346532.513199999928474, 258573.197399999946356 ], [ 346524.575699999928474, 258593.371899999678135 ], [ 346535.489699997007847, 258616.192299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402015600", "MAP": "D9-4839-T89", "PARCEL_NAM": "8A-1", "ACRE": ".512", "LONGITUDE": -65.00423371, "LATITUDE": 18.36146223, "OBJECTID_1": 1456, "PARCEL_NO_": "102402015600", "Tax_Legal_": "8A-1 HOPE No.5 WEST END QTR", "Name": "PRESSLY, CALVIN KEITH", "Address": "58-031 Makanale St", "City": "Haleiwa", "State": "Hawaii", "Zip": 96712, "Country": "United States", "Land_Value": 66800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.203876138, "SHAPE_Area": 3288.1531586299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351034.76630000025034, 258960.790699999779463 ], [ 351021.17119999974966, 259042.161499999463558 ], [ 351011.8091000020504, 259099.924600001424551 ], [ 351027.922799997031689, 259101.534099999815226 ], [ 351061.411300003528595, 259051.356800001114607 ], [ 351058.22919999808073, 259046.264499999582767 ], [ 351055.876800000667572, 259038.434799998998642 ], [ 351041.830700002610683, 258983.435499999672174 ], [ 351040.264899998903275, 258977.934300001710653 ], [ 351034.76630000025034, 258960.790699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402014300", "MAP": "D9-5791-T94", "PARCEL_NAM": "7B", "ACRE": ".26", "LONGITUDE": -65.00452027, "LATITUDE": 18.36171346, "OBJECTID_1": 1446, "PARCEL_NO_": "102402014300", "Tax_Legal_": "HOPE 7B WEST END QUARTER", "Name": "BRYAN, NORMA A. & LAURENCE E., JR.", "Address": "PO Box 10682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013682, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.36507987799999, "SHAPE_Area": 1334.2554104599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351021.17119999974966, 259042.161499999463558 ], [ 350997.781000003218651, 259042.814500000327826 ], [ 350988.431400001049042, 259099.099899999797344 ], [ 351011.8091000020504, 259099.924600001424551 ], [ 351021.17119999974966, 259042.161499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00481579, "LATITUDE": 18.36112182, "OBJECTID_1": 1420, "PARCEL_NO_": "102402010900", "Tax_Legal_": "HOPE 7 WEST END QTR", "Name": "BRYAN, CLARICE A", "Address": "PO Box 9885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 202900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 471.78757205400001, "SHAPE_Area": 9702.5757166799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350964.633299998939037, 258958.316899999976158 ], [ 350938.829499997198582, 258958.316799998283386 ], [ 350933.991700001060963, 258958.277199998497963 ], [ 350911.856200002133846, 259000.947999998927116 ], [ 350912.450300000607967, 259025.861900001764297 ], [ 350926.157600000500679, 259025.97410000115633 ], [ 350939.026299998164177, 259029.879099998623133 ], [ 350944.645300000905991, 259032.880399998277426 ], [ 350953.415799997746944, 259044.562300000339746 ], [ 350954.985299997031689, 259049.641399998217821 ], [ 350954.91160000115633, 259058.2956000007689 ], [ 350952.336199998855591, 259076.639699999243021 ], [ 350953.840899996459484, 259089.317600000649691 ], [ 350953.810300000011921, 259092.905999999493361 ], [ 350960.215899996459484, 259098.235700000077486 ], [ 350965.858300000429153, 259098.493000000715256 ], [ 350974.392499998211861, 259043.256299998611212 ], [ 350997.781000003218651, 259042.814500000327826 ], [ 351021.17119999974966, 259042.161499999463558 ], [ 351034.76630000025034, 258960.790699999779463 ], [ 351033.981600001454353, 258958.251200001686811 ], [ 350964.633299998939037, 258958.316899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402014400", "MAP": "D9-5791-T94", "PARCEL_NAM": "7C", "ACRE": ".27", "LONGITUDE": -65.0047395, "LATITUDE": 18.36171273, "OBJECTID_1": 1447, "PARCEL_NO_": "102402014400", "Tax_Legal_": "HOPE 7C WEST END QUARTER", "Name": "HILAIRE, MAX & ANITA HAYNES", "Address": "10 Stable Ct", "City": "Owings Mills", "State": "Maryland", "Zip": 21117, "Country": "United States", "Land_Value": 40800, "Improved_V": 208300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.92266797100001, "SHAPE_Area": 1282.17169186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350965.858300000429153, 259098.493000000715256 ], [ 350988.431400001049042, 259099.099899999797344 ], [ 350997.781000003218651, 259042.814500000327826 ], [ 350974.392499998211861, 259043.256299998611212 ], [ 350965.858300000429153, 259098.493000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402020800", "MAP": "D9-6064-T96", "PARCEL_NAM": "15E", "ACRE": ".399", "LONGITUDE": -65.00279894000001, "LATITUDE": 18.36167634, "OBJECTID_1": 1468, "PARCEL_NO_": "102402020800", "Tax_Legal_": "HOPE 15E WEST END QTR", "Name": "JON B. STRAIN & MELONITA N. STRAIN FAMILY TRUST", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.63924345699999, "SHAPE_Area": 1964.27717656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351212.989100001752377, 259053.652899999171495 ], [ 351147.657999999821186, 259055.440200001001358 ], [ 351156.30629999935627, 259081.475499998778105 ], [ 351176.440700002014637, 259084.384500000625849 ], [ 351183.695699997246265, 259084.655000001192093 ], [ 351186.924599997699261, 259084.259199999272823 ], [ 351203.065200001001358, 259082.702599998563528 ], [ 351221.664300002157688, 259076.521999999880791 ], [ 351225.737199999392033, 259071.700199998915195 ], [ 351225.791199997067451, 259065.367800001055002 ], [ 351224.201899997889996, 259062.610599998384714 ], [ 351212.989100001752377, 259053.652899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402020700", "MAP": "F9-2563-T70", "PARCEL_NAM": "15A", "ACRE": null, "LONGITUDE": -65.00335344, "LATITUDE": 18.36159052, "OBJECTID_1": 1467, "PARCEL_NO_": "102402020700", "Tax_Legal_": "HOPE 15A WEST END QTR", "Name": "STRAIN, JON & MELONITA", "Address": "15D Estate Hope", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.303432835, "SHAPE_Area": 1706.49891602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351146.081299997866154, 259051.205400001257658 ], [ 351142.951399996876717, 259039.991900000721216 ], [ 351132.485500000417233, 259038.006400000303984 ], [ 351126.054799996316433, 259035.631700001657009 ], [ 351116.43299999833107, 259029.220100000500679 ], [ 351100.776799999177456, 259068.566500000655651 ], [ 351112.025600001215935, 259073.302600000053644 ], [ 351124.093299999833107, 259076.567800000309944 ], [ 351156.30629999935627, 259081.475499998778105 ], [ 351147.657999999821186, 259055.440200001001358 ], [ 351146.081299997866154, 259051.205400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402010700", "MAP": "A3-90-T55", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -65.0062915, "LATITUDE": 18.36112937, "OBJECTID_1": 1418, "PARCEL_NO_": "102402010700", "Tax_Legal_": "HOPE 6 WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 296200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 463.57097388599999, "SHAPE_Area": 12640.789270499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350837.277300000190735, 258952.419399999082088 ], [ 350799.413000002503395, 258948.309799998998642 ], [ 350767.99379999935627, 258944.886199999600649 ], [ 350757.188799999654293, 259077.364500001072884 ], [ 350773.399599999189377, 259067.575800001621246 ], [ 350783.913999997079372, 259063.862199999392033 ], [ 350791.991499997675419, 259062.239599999040365 ], [ 350827.5033999979496, 259058.519400000572205 ], [ 350836.381800003349781, 259057.53660000115633 ], [ 350850.1233000010252, 259053.638300001621246 ], [ 350855.787299998104572, 259051.36259999871254 ], [ 350871.971100002527237, 259044.740100000053644 ], [ 350888.836400002241135, 258958.118700001388788 ], [ 350837.277300000190735, 258952.419399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98049733000001, "LATITUDE": 18.36124846, "OBJECTID_1": 2217, "PARCEL_NO_": "102601020900", "Tax_Legal_": "PEARL 10 S S QTR", "Name": "SCHUMACHER, GRETCHEN", "Address": "32 Liberty Cmn", "City": "Rye", "State": "New Hampshire", "Zip": 3870, "Country": "United States", "Land_Value": 187600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.84568466500002, "SHAPE_Area": 4969.5977580199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353505.439699999988079, 259060.172100000083447 ], [ 353513.158699996769428, 259064.556099999696016 ], [ 353525.636699996888638, 259066.341299999505281 ], [ 353575.561899997293949, 259071.796100001782179 ], [ 353594.981899999082088, 259073.329900000244379 ], [ 353600.996299996972084, 259073.377599999308586 ], [ 353610.643899999558926, 259073.195799998939037 ], [ 353609.443099997937679, 259069.047400001436472 ], [ 353604.829999998211861, 259067.632199998944998 ], [ 353563.798100002110004, 259024.974899999797344 ], [ 353560.614200003445148, 259020.093699999153614 ], [ 353558.283399999141693, 259009.730999998748302 ], [ 353557.518500000238419, 259004.869600001722574 ], [ 353540.693800002336502, 258992.066300000995398 ], [ 353496.908399999141693, 259020.416700001806021 ], [ 353500.06530000269413, 259028.464099999517202 ], [ 353500.036499999463558, 259031.841299999505281 ], [ 353501.609600000083447, 259036.4983000010252 ], [ 353502.329599998891354, 259046.636599998921156 ], [ 353505.439699999988079, 259060.172100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302010100", "MAP": "D3-262-T64", "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -65.01613796, "LATITUDE": 18.36114342, "OBJECTID_1": 1182, "PARCEL_NO_": "102302010100", "Tax_Legal_": "BORDEAUX 1 WEST END QTR", "Name": "MADURO, JOHN L.", "Address": "PO BOX 1842", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 260700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 438.405400009, "SHAPE_Area": 8726.2740226499991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349840.401799999177456, 258976.346599999815226 ], [ 349796.749399997293949, 258989.077199999243021 ], [ 349794.404200002551079, 258980.403099998831749 ], [ 349800.066399998962879, 258978.338500000536442 ], [ 349787.494499996304512, 258939.605500001460314 ], [ 349700.976300001144409, 258967.394999999552965 ], [ 349780.045999996364117, 259056.701499998569489 ], [ 349792.180200003087521, 259052.156700000166893 ], [ 349796.206399999558926, 259052.822999998927116 ], [ 349804.219200000166893, 259058.799199998378754 ], [ 349813.063400000333786, 259061.826900001615286 ], [ 349839.446199998259544, 258993.859600000083447 ], [ 349838.737000003457069, 258982.454700000584126 ], [ 349840.401799999177456, 258976.346599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-5599-T93", "PARCEL_NAM": "114", "ACRE": null, "LONGITUDE": -65.01701919, "LATITUDE": 18.35944645, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 929.95770184100002, "SHAPE_Area": 46778.340924800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349492.156099997460842, 258774.646299999207258 ], [ 349605.366700001060963, 258926.504700001329184 ], [ 349623.163199998438358, 258919.895399998873472 ], [ 349642.545199997723103, 258916.465399999171495 ], [ 349650.628100000321865, 258914.209600001573563 ], [ 349675.724500000476837, 258902.593699999153614 ], [ 349700.032600000500679, 258888.860500000417233 ], [ 349717.010099999606609, 258883.722100000828505 ], [ 349746.951499998569489, 258871.301600001752377 ], [ 349774.425499998033047, 258864.560300000011921 ], [ 349815.540200002491474, 258865.741200000047684 ], [ 349823.617799997329712, 258864.118599999696016 ], [ 349829.287100002169609, 258861.209699999541044 ], [ 349833.367200002074242, 258855.543499998748302 ], [ 349835.037399999797344, 258848.802200000733137 ], [ 349832.112400002777576, 258813.525600001215935 ], [ 349836.304099999368191, 258794.772599998861551 ], [ 349838.103699997067451, 258772.833599999547005 ], [ 349839.806199997663498, 258762.292899999767542 ], [ 349843.139399997889996, 258749.654599998146296 ], [ 349841.695799998939037, 258729.799899999052286 ], [ 349838.517300002276897, 258724.285500001162291 ], [ 349827.315200001001358, 258714.061299998313189 ], [ 349811.280699998140335, 258703.164299998432398 ], [ 349804.772600002586842, 258709.86600000038743 ], [ 349635.943999998271465, 258744.792399998754263 ], [ 349492.156099997460842, 258774.646299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00372021, "LATITUDE": 18.36137071, "OBJECTID_1": 1466, "PARCEL_NO_": "102402020600", "Tax_Legal_": "HOPE 15A-3 WEST END QTR", "Name": "JON B. STRAIN & MELONITA N. STRAIN FAMILY TRUST", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43100, "Improved_V": 238000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.92373698200001, "SHAPE_Area": 2123.7635669199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351084.464599996805191, 258995.605700001120567 ], [ 351063.999300003051758, 259031.535199999809265 ], [ 351066.328299999237061, 259042.109000001102686 ], [ 351071.909599997103214, 259049.542899999767542 ], [ 351085.530599996447563, 259059.786899998784065 ], [ 351100.776799999177456, 259068.566500000655651 ], [ 351116.43299999833107, 259029.220100000500679 ], [ 351109.231899999082088, 259022.617300000041723 ], [ 351102.036300003528595, 259015.38120000064373 ], [ 351089.248499996960163, 259001.977699998766184 ], [ 351084.464599996805191, 258995.605700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98643262, "LATITUDE": 18.36136945, "OBJECTID_1": 2039, "PARCEL_NO_": "102502039900", "Tax_Legal_": "5A,B,C REM,D,E&F SANTA MARIA NO.1 WEST END QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 497000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.37938795299999, "SHAPE_Area": 2722.5528641400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352987.252300001680851, 259024.055799998342991 ], [ 352983.244199998676777, 259021.278799999505281 ], [ 352978.41889999806881, 259019.761700000613928 ], [ 352963.910599999129772, 259019.00959999859333 ], [ 352909.720499999821186, 259038.197799999266863 ], [ 352862.837499998509884, 259051.535199999809265 ], [ 352877.893100000917912, 259082.6891999989748 ], [ 352987.252300001680851, 259024.055799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9797606, "LATITUDE": 18.36116445, "OBJECTID_1": 2218, "PARCEL_NO_": "102601021000", "Tax_Legal_": "PEARL 7A & 8 NO.2 SOUTH SIDE QUARTER", "Name": "GEORGE, RAYMOND & DIANE", "Address": "PO Box 11517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 170200, "Improved_V": 107200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.65789025499998, "SHAPE_Area": 5956.44621319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353605.031700000166893, 259058.63910000026226 ], [ 353609.021799996495247, 259061.706000000238419 ], [ 353613.86540000140667, 259064.741999998688698 ], [ 353622.478299997746944, 259067.723000001162291 ], [ 353623.675499998033047, 259072.331300001591444 ], [ 353622.574100002646446, 259075.081799998879433 ], [ 353620.595100000500679, 259077.78999999910593 ], [ 353631.403999999165535, 259076.883299998939037 ], [ 353682.08330000191927, 259054.440600000321865 ], [ 353680.48870000243187, 259052.316700000315905 ], [ 353674.954199999570847, 259039.394600000232458 ], [ 353672.564000003039837, 259035.997600000351667 ], [ 353671.786499999463558, 259032.613699998706579 ], [ 353670.188199996948242, 259030.911899998784065 ], [ 353669.414300002157688, 259027.105900000780821 ], [ 353663.869000002741814, 259015.450399998575449 ], [ 353567.379399999976158, 258983.207699999213219 ], [ 353565.6841000020504, 258992.904100000858307 ], [ 353566.364500001072884, 259007.686200000345707 ], [ 353569.508900001645088, 259017.211199998855591 ], [ 353605.031700000166893, 259058.63910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00236527, "LATITUDE": 18.36097577, "OBJECTID_1": 1523, "PARCEL_NO_": "102402033200", "Tax_Legal_": "HOPE 9A WESTEND QTR.", "Name": "DIOCESE OF THE V. I. INC.", "Address": "PO Box 301827", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8031827, "Country": "United States", "Land_Value": 221300, "Improved_V": 745500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 385.64852909199999, "SHAPE_Area": 8976.3948901599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351252.061800003051758, 258915.917500000447035 ], [ 351186.513099998235703, 258943.245400000363588 ], [ 351193.307800002396107, 258997.552000001072884 ], [ 351195.640399999916553, 259007.703600000590086 ], [ 351196.425200000405312, 259010.243099998682737 ], [ 351201.950699999928474, 259024.220499999821186 ], [ 351209.918499998748302, 259035.473700001835823 ], [ 351211.513099998235703, 259037.597699999809265 ], [ 351217.906099997460842, 259044.405000001192093 ], [ 351225.116099998354912, 259049.952500000596046 ], [ 351227.520700000226498, 259051.660900000482798 ], [ 351242.772299997508526, 259059.807300001382828 ], [ 351250.025499999523163, 259060.288800001144409 ], [ 351258.099399998784065, 259059.088300000876188 ], [ 351274.276000000536442, 259053.310100000351667 ], [ 351279.939999997615814, 259051.034400001168251 ], [ 351252.061800003051758, 258915.917500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102402020900", "MAP": "D9-6064-T96", "PARCEL_NAM": "15F-1", "ACRE": null, "LONGITUDE": -65.00288075, "LATITUDE": 18.36153402, "OBJECTID_1": 1469, "PARCEL_NO_": "102402020900", "Tax_Legal_": "HOPE 15F WEST END QTR", "Name": "NEWTON, WINNIFRED", "Address": "PO BOX 304927", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.14321534199999, "SHAPE_Area": 264.67103568 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351208.183600001037121, 259049.813900001347065 ], [ 351157.3733000010252, 259050.875700000673532 ], [ 351146.081299997866154, 259051.205400001257658 ], [ 351147.657999999821186, 259055.440200001001358 ], [ 351212.989100001752377, 259053.652899999171495 ], [ 351208.183600001037121, 259049.813900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402020900", "MAP": "D9-6064-T96", "PARCEL_NAM": "15F", "ACRE": null, "LONGITUDE": -65.00314684, "LATITUDE": 18.36147534, "OBJECTID_1": 1469, "PARCEL_NO_": "102402020900", "Tax_Legal_": "HOPE 15F WEST END QTR", "Name": "NEWTON, WINNIFRED", "Address": "PO BOX 304927", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.9010594772, "SHAPE_Area": 119.740929356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351142.951399996876717, 259039.991900000721216 ], [ 351146.081299997866154, 259051.205400001257658 ], [ 351157.3733000010252, 259050.875700000673532 ], [ 351155.035300001502037, 259041.357299998402596 ], [ 351142.951399996876717, 259039.991900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402024200", "MAP": "D9-6064-T96", "PARCEL_NAM": "15f-2", "ACRE": ".231", "LONGITUDE": -65.00285237, "LATITUDE": 18.36146656, "OBJECTID_1": 1490, "PARCEL_NO_": "102402024200", "Tax_Legal_": "HOPE 15F-2 WEST END QTR.", "Name": "NEWTON, WINIFRED", "Address": "PO BOX 304927", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 52100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.87684844899999, "SHAPE_Area": 509.263567642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351155.035300001502037, 259041.357299998402596 ], [ 351157.3733000010252, 259050.875700000673532 ], [ 351208.183600001037121, 259049.813900001347065 ], [ 351198.606700003147125, 259038.125300001353025 ], [ 351196.196800000965595, 259037.05009999871254 ], [ 351170.35700000077486, 259041.271600000560284 ], [ 351155.035300001502037, 259041.357299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00162751000001, "LATITUDE": 18.36067362, "OBJECTID_1": 1509, "PARCEL_NO_": "102402031200", "Tax_Legal_": "HOPE 9 WEST END QTR", "Name": "MARTIN, HELEN & FAIN, JR. C & OTHERS", "Address": "PO Box 304367", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105200, "Improved_V": 123200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 492.50369862999997, "SHAPE_Area": 12918.3091153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351360.497900001704693, 258870.997699998319149 ], [ 351348.359999999403954, 258875.964600000530481 ], [ 351252.061800003051758, 258915.917500000447035 ], [ 351279.939999997615814, 259051.034400001168251 ], [ 351285.605800002813339, 259048.547699999064207 ], [ 351299.386799998581409, 259040.00560000166297 ], [ 351367.588200002908707, 258985.25730000063777 ], [ 351375.717799998819828, 258977.513399999588728 ], [ 351377.409599997103214, 258968.239100001752377 ], [ 351375.834700003266335, 258963.793299999088049 ], [ 351365.433600001037121, 258954.20890000090003 ], [ 351359.845100000500679, 258947.619300000369549 ], [ 351355.881899997591972, 258939.56529999896884 ], [ 351354.32320000231266, 258933.219700001180172 ], [ 351352.804099999368191, 258922.230399999767542 ], [ 351352.16499999910593, 258902.593499999493361 ], [ 351353.878300003707409, 258890.786299999803305 ], [ 351355.552100002765656, 258883.622800000011921 ], [ 351358.039399996399879, 258875.621599998325109 ], [ 351360.497900001704693, 258870.997699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402010800", "MAP": "B9-83-T62", "PARCEL_NAM": "7A", "ACRE": ".50", "LONGITUDE": -65.00552306, "LATITUDE": 18.36102955, "OBJECTID_1": 1419, "PARCEL_NO_": "102402010800", "Tax_Legal_": "HOPE 7A WEST END QTR", "Name": "MALCOLM, SCOTT & JILL", "Address": "PO BOX 303527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47000, "Improved_V": 63000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.78382867799999, "SHAPE_Area": 2754.9728064400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350925.92849999666214, 258958.211199998855591 ], [ 350902.543700002133846, 258958.230900000780821 ], [ 350892.059799998998642, 258958.356199998408556 ], [ 350888.836400002241135, 258958.118700001388788 ], [ 350871.971100002527237, 259044.740100000053644 ], [ 350879.260200001299381, 259041.000100001692772 ], [ 350894.671899996697903, 259030.360399998724461 ], [ 350901.14580000191927, 259027.669199999421835 ], [ 350912.450300000607967, 259025.861900001764297 ], [ 350911.856200002133846, 259000.947999998927116 ], [ 350933.991700001060963, 258958.277199998497963 ], [ 350925.92849999666214, 258958.211199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601041000", "MAP": "D9-4869-T90", "PARCEL_NAM": "39L", "ACRE": "0.39", "LONGITUDE": -64.97900835, "LATITUDE": 18.3611939, "OBJECTID_1": 2341, "PARCEL_NO_": "102601041000", "Tax_Legal_": "PEARL 39L SOUTHSIDE QTR.", "Name": "MICHAEL, JOSEPH & ANGELA", "Address": "PO Box 10464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.87234964800001, "SHAPE_Area": 1517.0378986000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353733.168799996376038, 259041.711800001561642 ], [ 353703.691500000655651, 259015.550299998372793 ], [ 353696.268700003623962, 259008.962499998509884 ], [ 353675.425300002098083, 259020.133299998939037 ], [ 353677.49719999730587, 259024.850000001490116 ], [ 353679.883699998259544, 259028.669199999421835 ], [ 353683.848800003528595, 259036.512099999934435 ], [ 353689.381499998271465, 259049.645199999213219 ], [ 353690.97070000320673, 259052.402399998158216 ], [ 353693.350100003182888, 259057.065999999642372 ], [ 353695.860500000417233, 259061.083399999886751 ], [ 353733.168799996376038, 259041.711800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602015100", "MAP": "F9-2941-T72", "PARCEL_NAM": "7AE-1", "ACRE": ".28", "LONGITUDE": -64.97225926, "LATITUDE": 18.36127923, "OBJECTID_1": 2398, "PARCEL_NO_": "102602015100", "Tax_Legal_": "CARET BAY 7AE-1 LITTLE NORTHSIDE", "Name": "THOMSON, ELEANOR A", "Address": "5960 Maxfield Ct", "City": "MANASSAS", "State": "Virginia", "Zip": 20112, "Country": "United States", "Land_Value": 64000, "Improved_V": 252200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.67075563899999, "SHAPE_Area": 1277.29399115 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354437.811300002038479, 259037.581399999558926 ], [ 354438.505900003015995, 259033.97520000115037 ], [ 354403.913000002503395, 259037.390000000596046 ], [ 354389.662399999797344, 259035.232200000435114 ], [ 354389.645199999213219, 259037.383799999952316 ], [ 354389.577399998903275, 259045.893199998885393 ], [ 354391.794900000095367, 259054.47520000115037 ], [ 354395.626900002360344, 259059.05009999871254 ], [ 354404.034800000488758, 259063.137099999934435 ], [ 354406.935300000011921, 259064.031899999827147 ], [ 354415.085600003600121, 259066.546100001782179 ], [ 354431.846400000154972, 259068.550000000745058 ], [ 354437.811300002038479, 259037.581399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012300", "MAP": null, "PARCEL_NAM": "7AD", "ACRE": null, "LONGITUDE": -64.97183647, "LATITUDE": 18.36126231, "OBJECTID_1": 2372, "PARCEL_NO_": "102602012300", "Tax_Legal_": "CARET BAY 7AD LITTLE NORTHSIDE", "Name": "SCHIETKE, WANDA DIPNARINE & KALLAS, SHANNIE D.", "Address": "8024 CARET BAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 143600, "Improved_V": 56700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.14065994200001, "SHAPE_Area": 1532.60688177 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354433.501800000667572, 259068.190000001341105 ], [ 354465.007299996912479, 259061.481800001114607 ], [ 354471.44879999756813, 259062.589999999850988 ], [ 354473.048900000751019, 259064.080699998885393 ], [ 354473.833599999547005, 259066.620299998670816 ], [ 354476.245300002396107, 259067.484400000423193 ], [ 354482.827100001275539, 259052.128400001674891 ], [ 354486.169200003147125, 259038.43470000103116 ], [ 354486.4054000005126, 259036.376200001686811 ], [ 354487.040299996733665, 259030.842500001192093 ], [ 354440.901900000870228, 259033.738699998706579 ], [ 354438.505900003015995, 259033.97520000115037 ], [ 354437.811300002038479, 259037.581399999558926 ], [ 354431.846400000154972, 259068.550000000745058 ], [ 354433.501800000667572, 259068.190000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402021000", "MAP": "D9-9235-T018", "PARCEL_NAM": "Cons 15D & 15DA", "ACRE": "0.50", "LONGITUDE": -65.00341146, "LATITUDE": 18.36099602, "OBJECTID_1": 1470, "PARCEL_NO_": "102402021000", "Tax_Legal_": "HOPE 15D WEST END QTR", "Name": "JON B. STRAIN & MELONITA N. STRAIN FAMILY TRUST", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34500, "Improved_V": 362200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.35236916000002, "SHAPE_Area": 3481.3344591 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351132.535099998116493, 258937.526200000196695 ], [ 351115.611599996685982, 258936.332299999892712 ], [ 351117.132500000298023, 258947.110500000417233 ], [ 351089.599200002849102, 258960.817299999296665 ], [ 351089.545199997723103, 258967.149700000882149 ], [ 351087.07599999755621, 258973.040100000798702 ], [ 351087.749200001358986, 258988.666499998420477 ], [ 351091.730400003492832, 258994.609700001776218 ], [ 351097.309900000691414, 259002.254700001329184 ], [ 351116.497699998319149, 259021.621300000697374 ], [ 351123.707800000905991, 259027.168699998408556 ], [ 351135.755699999630451, 259032.755800001323223 ], [ 351151.059500001370907, 259034.780900001525879 ], [ 351168.796599999070168, 259035.137099999934435 ], [ 351190.599399998784065, 259031.515900000929832 ], [ 351192.221000000834465, 259030.473700001835823 ], [ 351192.246100001037121, 259027.5185999982059 ], [ 351189.040700003504753, 259025.170299999415874 ], [ 351160.02419999986887, 259023.666299998760223 ], [ 351145.577100001275539, 259015.73759999871254 ], [ 351143.973499998450279, 259014.668999999761581 ], [ 351139.97070000320673, 259011.258699998259544 ], [ 351135.174199998378754, 259006.36430000141263 ], [ 351132.7804000005126, 259003.389400001615286 ], [ 351129.600100003182888, 258998.086100000888109 ], [ 351127.271099999547005, 258987.512299999594688 ], [ 351126.561899997293949, 258976.107500001788139 ], [ 351129.200199998915195, 258950.375599998980761 ], [ 351131.710900001227856, 258939.630399998277426 ], [ 351132.535099998116493, 258937.526200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98712917, "LATITUDE": 18.36129111, "OBJECTID_1": 1982, "PARCEL_NO_": "102502010300", "Tax_Legal_": "8-2,9,10-REM,ROW 7-REM, 8-REM, 11 SANTA MARIA WEST END QTR", "Name": "BOSCHULTE, LIONEL & OTHERS", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5014700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.3985290894, "SHAPE_Area": 410.79572872900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352858.069700002670288, 259043.2635000012815 ], [ 352847.769299998879433, 259021.858800001442432 ], [ 352837.987400002777576, 259034.233199998736382 ], [ 352824.16499999910593, 259047.630100000649691 ], [ 352830.606600001454353, 259048.738299999386072 ], [ 352837.060599997639656, 259048.368900001049042 ], [ 352858.069700002670288, 259043.2635000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00390326, "LATITUDE": 18.36106267, "OBJECTID_1": 1465, "PARCEL_NO_": "102402020500", "Tax_Legal_": "HOPE 15A-2 WEST END QTR", "Name": "JON B. STRAIN & MELONITA N. STRAIN FAMILY TRUST", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.47726072899999, "SHAPE_Area": 840.57065947000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351083.123499996960163, 258963.7195999994874 ], [ 351056.191500000655651, 259001.495999999344349 ], [ 351063.999300003051758, 259031.535199999809265 ], [ 351084.464599996805191, 258995.605700001120567 ], [ 351081.323899999260902, 258985.658599998801947 ], [ 351080.618299998342991, 258973.831599999219179 ], [ 351083.123499996960163, 258963.7195999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9851703, "LATITUDE": 18.36047264, "OBJECTID_1": 2039, "PARCEL_NO_": "102502039900", "Tax_Legal_": "5A,B,C REM,D,E&F SANTA MARIA NO.1 WEST END QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 497000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1082.82380683, "SHAPE_Area": 21698.042537099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353064.173199996352196, 258892.329700000584126 ], [ 353082.578100003302097, 258908.945700000971556 ], [ 353058.383299998939037, 258909.380899999290705 ], [ 353058.936099998652935, 258939.149599999189377 ], [ 353058.85700000077486, 258948.437100000679493 ], [ 353042.714599996805191, 258950.204799998551607 ], [ 353020.096500001847744, 258954.874899998307228 ], [ 352986.992700003087521, 258959.881299998611212 ], [ 352951.480800002813339, 258963.601399999111891 ], [ 352878.000200003385544, 258975.454500000923872 ], [ 352872.325499996542931, 258978.996700000017881 ], [ 352869.066100001335144, 258982.980799999088049 ], [ 352856.775399997830391, 259005.889400001615286 ], [ 352853.483599998056889, 259013.672899998724461 ], [ 352847.769299998879433, 259021.858800001442432 ], [ 352858.069700002670288, 259043.2635000012815 ], [ 352908.185199998319149, 259029.108199998736382 ], [ 352961.56360000371933, 259010.546700000762939 ], [ 352972.05290000140667, 259009.788199998438358 ], [ 352982.518799997866154, 259011.773699998855591 ], [ 352988.145000003278255, 259013.930599998682737 ], [ 352995.364000000059605, 259018.422699999064207 ], [ 353248.903300002217293, 258883.920299999415874 ], [ 353264.805799998342991, 258815.656100001186132 ], [ 353229.866400003433228, 258846.823100000619888 ], [ 353232.21169999986887, 258855.497099999338388 ], [ 353140.819600000977516, 258887.468600001186132 ], [ 353094.782499998807907, 258896.168800000101328 ], [ 353081.885099999606609, 258895.641100000590086 ], [ 353077.054399996995926, 258894.757199998944998 ], [ 353064.173199996352196, 258892.329700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98176361, "LATITUDE": 18.36074191, "OBJECTID_1": 2211, "PARCEL_NO_": "102601020300", "Tax_Legal_": "PEARL 29 S S QTR", "Name": "WILLIAMS (LIFE ESTATE), ALICE", "Address": "PO Box 304940", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 128100, "Improved_V": 147900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.49024532099997, "SHAPE_Area": 4668.59885923 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353364.291199997067451, 258982.613200001418591 ], [ 353371.715199999511242, 258984.456700000911951 ], [ 353385.975500002503395, 258992.615699999034405 ], [ 353399.382799997925758, 259003.924499999731779 ], [ 353409.322499997913837, 259010.999000001698732 ], [ 353421.281199999153614, 259019.623399998992682 ], [ 353435.544100001454353, 259032.642799999564886 ], [ 353461.626599997282028, 258997.118700001388788 ], [ 353446.398400001227856, 258986.228300001472235 ], [ 353439.208099998533726, 258978.359000001102686 ], [ 353433.644799999892712, 258968.8141999989748 ], [ 353430.522100001573563, 258956.756400000303984 ], [ 353429.785899996757507, 258948.517700001597404 ], [ 353362.860200002789497, 258948.181000001728535 ], [ 353364.291199997067451, 258982.613200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00307402, "LATITUDE": 18.36081069, "OBJECTID_1": 1472, "PARCEL_NO_": "102402021200", "Tax_Legal_": "HOPE 15B WEST END QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 248300, "Improved_V": 701400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 313.07926920699998, "SHAPE_Area": 3803.6254812900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351178.281000003218651, 258963.020799998193979 ], [ 351176.772600002586842, 258950.765000000596046 ], [ 351172.881300002336502, 258934.267900001257658 ], [ 351166.581900000572205, 258916.484400000423193 ], [ 351163.372800000011921, 258914.558299999684095 ], [ 351161.765600003302097, 258913.911899998784065 ], [ 351159.337700001895428, 258914.947500001639128 ], [ 351159.890399999916553, 258944.7162000015378 ], [ 351155.052599996328354, 258944.676600001752377 ], [ 351155.264700002968311, 258919.769299998879433 ], [ 351152.853000000119209, 258918.905200000852346 ], [ 351144.714299999177456, 258927.704500000923872 ], [ 351138.983800001442432, 258937.790100000798702 ], [ 351136.503799997270107, 258944.947000000625849 ], [ 351134.822800002992153, 258952.954799998551607 ], [ 351133.001599997282028, 258977.426699999719858 ], [ 351132.951300002634525, 258983.336899999529123 ], [ 351134.477600000798702, 258993.481899999082088 ], [ 351136.855099998414516, 258998.356499999761581 ], [ 351142.438199996948242, 259005.5793999992311 ], [ 351148.044600002467632, 259010.058299999684095 ], [ 351161.687200002372265, 259017.769299998879433 ], [ 351179.41889999806881, 259018.758799999952316 ], [ 351181.841399997472763, 259018.3564000017941 ], [ 351184.278300002217293, 259016.265399999916553 ], [ 351185.140399999916553, 259009.72859999909997 ], [ 351182.809600003063679, 258999.365899998694658 ], [ 351178.281000003218651, 258963.020799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012500", "MAP": null, "PARCEL_NAM": "7AC-1", "ACRE": null, "LONGITUDE": -64.97194237, "LATITUDE": 18.360945, "OBJECTID_1": 2374, "PARCEL_NO_": "102602012500", "Tax_Legal_": "7AC &7 AC-1 CARET BAY LITTLE NORTHSIDE QUARTER", "Name": "KENNETH S COVERT and SUSANNAH H FAIRLY", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165700, "Improved_V": 346200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.580309857, "SHAPE_Area": 2164.76983488 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354487.040299996733665, 259030.842500001192093 ], [ 354489.502400003373623, 259025.796399999409914 ], [ 354442.295000001788139, 258982.55799999833107 ], [ 354426.85639999806881, 258996.363800000399351 ], [ 354421.168999999761581, 259001.383499998599291 ], [ 354417.110500000417233, 259004.516699999570847 ], [ 354410.242600001394749, 259009.303300000727177 ], [ 354438.505900003015995, 259033.97520000115037 ], [ 354440.901900000870228, 259033.738699998706579 ], [ 354487.040299996733665, 259030.842500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601040300", "MAP": "D9-3767-T86", "PARCEL_NAM": "39J", "ACRE": ".69", "LONGITUDE": -64.9791134, "LATITUDE": 18.36068101, "OBJECTID_1": 2335, "PARCEL_NO_": "102601040300", "Tax_Legal_": "PEARL 39J WEST END QTR.", "Name": "WILLIAMS, JESSICA", "Address": "PO Box 397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 137800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.360764932, "SHAPE_Area": 3211.93105229 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353727.889799997210503, 258969.74100000038743 ], [ 353726.628000528202392, 258967.341184519609669 ], [ 353725.781524463498499, 258964.765387455874588 ], [ 353725.373800002038479, 258962.084899999201298 ], [ 353724.777587990392931, 258959.709382530563744 ], [ 353723.81500401860103, 258957.457275938097155 ], [ 353722.510031626035925, 258955.384693234984297 ], [ 353720.895185229775961, 258953.543274455005303 ], [ 353719.01070000231266, 258951.978900000452995 ], [ 353712.50075009901775, 258948.690840331837535 ], [ 353706.319099999964237, 258944.820700000971556 ], [ 353661.575800001621246, 258958.314599998295307 ], [ 353660.240199998021126, 258968.13569999858737 ], [ 353660.931400001049042, 258981.651299998164177 ], [ 353663.280299998819828, 258989.903200000524521 ], [ 353674.333099998533726, 259017.646899998188019 ], [ 353675.425300002098083, 259020.133299998939037 ], [ 353696.268700003623962, 259008.962499998509884 ], [ 353727.889799997210503, 258969.74100000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102401020100", "MAP": "D9-5599-T93", "PARCEL_NAM": "117", "ACRE": null, "LONGITUDE": -65.01453259, "LATITUDE": 18.36005674, "OBJECTID_1": 1411, "PARCEL_NO_": "102401020100", "Tax_Legal_": "BORDEAUX, 117, 121 & 122 WEST END QUARTER", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 751.00793075800004, "SHAPE_Area": 20739.9406929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350097.609399996697903, 258884.515099998563528 ], [ 350095.240800000727177, 258878.585099998861551 ], [ 350084.857600003480911, 258866.890000000596046 ], [ 350053.611000001430511, 258843.202899999916553 ], [ 350043.200900003314018, 258834.673900000751019 ], [ 350023.199500001966953, 258816.145100001245737 ], [ 350019.185900002717972, 258814.001299999654293 ], [ 350015.157999999821186, 258813.546100001782179 ], [ 350004.648900002241135, 258816.626499999314547 ], [ 349994.16330000013113, 258816.962900001555681 ], [ 349978.062200002372265, 258813.875799998641014 ], [ 349942.618600003421307, 258809.57490000128746 ], [ 349932.958999998867512, 258807.596000000834465 ], [ 349925.723800003528595, 258805.003699999302626 ], [ 349918.470600001513958, 258804.522100001573563 ], [ 349914.429999999701977, 258805.54450000077486 ], [ 349898.2246999964118, 258814.699999999254942 ], [ 349882.04450000077486, 258820.900400001555681 ], [ 349875.565200001001358, 258824.224899999797344 ], [ 349869.883299998939037, 258828.611299999058247 ], [ 349863.368000000715256, 258836.157400000840425 ], [ 349860.913099996745586, 258840.359200000762939 ], [ 349860.067299999296665, 258844.996300000697374 ], [ 349863.218800000846386, 258853.676899999380112 ], [ 349872.034299999475479, 258860.081900000572205 ], [ 349876.026299998164177, 258864.758600000292063 ], [ 349878.418200001120567, 258867.944600000977516 ], [ 349880.011100001633167, 258870.279699999839067 ], [ 349882.390500001609325, 258874.943199999630451 ], [ 349883.968900002539158, 258878.966899998486042 ], [ 349884.753700003027916, 258881.506400000303984 ], [ 349887.833200000226498, 258898.630199998617172 ], [ 349891.738899998366833, 258913.438700001686811 ], [ 349890.781599998474121, 258931.162799999117851 ], [ 349888.285300001502037, 258940.219300001859665 ], [ 349884.172799997031689, 258949.684900000691414 ], [ 349882.549400001764297, 258950.938200000673532 ], [ 349880.094499997794628, 258955.139899998903275 ], [ 349874.401799999177456, 258960.792899999767542 ], [ 349856.551399998366833, 258973.734600000083447 ], [ 349851.668600000441074, 258978.971999999135733 ], [ 349849.224500000476837, 258981.907299999147654 ], [ 349847.58669999986887, 258984.849199999123812 ], [ 349848.340800002217293, 258990.977099999785423 ], [ 349852.356200002133846, 258992.909800000488758 ], [ 349877.3429000005126, 258994.169700000435114 ], [ 349887.029500000178814, 258992.982500001788139 ], [ 349897.545699998736382, 258989.057700000703335 ], [ 349904.84570000320673, 258984.051199998706579 ], [ 349906.481700003147125, 258981.32039999961853 ], [ 349923.567100003361702, 258963.517299998551607 ], [ 349931.694899998605251, 258955.984499998390675 ], [ 349934.94709999859333, 258952.844700001180172 ], [ 349960.163999997079372, 258927.086599998176098 ], [ 349968.315200001001358, 258916.80970000103116 ], [ 349979.707900002598763, 258904.659499999135733 ], [ 349998.398800000548363, 258887.713899999856949 ], [ 350008.10869999974966, 258883.782600000500679 ], [ 350022.658299997448921, 258879.679800000041723 ], [ 350039.610600002110004, 258877.496500000357628 ], [ 350052.508000001311302, 258878.024300001561642 ], [ 350097.609399996697903, 258884.515099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00397379, "LATITUDE": 18.36073993, "OBJECTID_1": 1464, "PARCEL_NO_": "102402020400", "Tax_Legal_": "HOPE 15A-1 WEST END QTR", "Name": "JON B. STRAIN & MELONITA N. STRAIN FAMILY TRUST", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.447021557, "SHAPE_Area": 1521.3989171600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351078.447499997913837, 258944.682900000363588 ], [ 351064.045299999415874, 258931.477200001478195 ], [ 351043.628600001335144, 258961.707600001245737 ], [ 351049.128899998962879, 258978.640099998563528 ], [ 351056.191500000655651, 259001.495999999344349 ], [ 351083.123499996960163, 258963.7195999994874 ], [ 351083.956799998879433, 258960.559999998658895 ], [ 351082.417900003492832, 258951.892599999904633 ], [ 351080.038500003516674, 258947.229100000113249 ], [ 351078.447499997913837, 258944.682900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98108643, "LATITUDE": 18.36064392, "OBJECTID_1": 2216, "PARCEL_NO_": "102601020800", "Tax_Legal_": "PEARL 11 S S QTR", "Name": "MOORE, BERNICE", "Address": "1489 Crooked Tree Cir", "City": "Stone Mountain", "State": "Georgia", "Zip": 30088, "Country": "United States", "Land_Value": 181800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.56052918400002, "SHAPE_Area": 4508.8815901400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353494.238799996674061, 258955.166900001466274 ], [ 353448.582800000905991, 258919.118400000035763 ], [ 353443.6891999989748, 258925.622299998998642 ], [ 353442.054999999701977, 258928.142000000923872 ], [ 353438.739900000393391, 258938.669599998742342 ], [ 353439.409500002861023, 258954.718199998140335 ], [ 353440.971799999475479, 258960.641600001603365 ], [ 353446.511699996888638, 258972.930300001055002 ], [ 353456.110100001096725, 258982.085900001227856 ], [ 353484.957500003278255, 259003.431400001049042 ], [ 353490.551399998366833, 259009.387800000607967 ], [ 353496.908399999141693, 259020.416700001806021 ], [ 353540.693800002336502, 258992.066300000995398 ], [ 353494.238799996674061, 258955.166900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98700685, "LATITUDE": 18.35972518, "OBJECTID_1": 2039, "PARCEL_NO_": "102502039900", "Tax_Legal_": "5A,B,C REM,D,E&F SANTA MARIA NO.1 WEST END QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 497000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 690.62788041199997, "SHAPE_Area": 25496.6404759 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352757.390699997544289, 258840.211899999529123 ], [ 352761.352099999785423, 258848.47690000012517 ], [ 352764.590000003576279, 258847.025800000876188 ], [ 352768.551399998366833, 258855.290899999439716 ], [ 352765.31360000371933, 258856.741999998688698 ], [ 352843.010499998927116, 259012.531700000166893 ], [ 352895.472300000488758, 258912.269400000572205 ], [ 352906.893700003623962, 258896.741999998688698 ], [ 352920.741300001740456, 258880.390000000596046 ], [ 352925.615099996328354, 258876.208099998533726 ], [ 352933.743000000715256, 258868.675200000405312 ], [ 352940.265399999916553, 258860.28489999845624 ], [ 352958.299199998378754, 258825.813099998980761 ], [ 352968.098999999463558, 258811.327899999916553 ], [ 352973.793499998748302, 258805.463799998164177 ], [ 352973.838500000536442, 258800.186900001019239 ], [ 352972.24379999935627, 258798.062899999320507 ], [ 352969.031199999153614, 258796.558899998664856 ], [ 352957.780599996447563, 258792.033900000154972 ], [ 352951.3462999984622, 258790.081399999558926 ], [ 352944.100199997425079, 258788.755499999970198 ], [ 352919.946800000965595, 258784.335999999195337 ], [ 352898.977300003170967, 258784.797600001096725 ], [ 352869.134800001978874, 258785.608800001442432 ], [ 352863.488799996674061, 258785.773699998855591 ], [ 352839.279600001871586, 258787.897599998861551 ], [ 352823.934500001370907, 258790.727299999445677 ], [ 352811.809199996292591, 258794.216699998825788 ], [ 352801.291199997067451, 258798.35249999910593 ], [ 352789.130000002682209, 258806.063400000333786 ], [ 352782.641699999570847, 258810.443300001323223 ], [ 352772.903099998831749, 258817.751800000667572 ], [ 352764.760799996554852, 258826.973299998790026 ], [ 352763.93469999730587, 258829.288600001484156 ], [ 352759.858199998736382, 258834.532499998807907 ], [ 352757.390699997544289, 258840.211899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97156998, "LATITUDE": 18.36060208, "OBJECTID_1": 2377, "PARCEL_NO_": "102602012800", "Tax_Legal_": "CARET BAY 7AB\nLITTLE NORTHSIDE", "Name": "Paul dana Cecilio and Nancy Zanello", "Address": "PO Box 306696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90700, "Improved_V": 224400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.66595635900001, "SHAPE_Area": 3953.2377278099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354532.133699998259544, 258943.607700001448393 ], [ 354489.454899996519089, 258936.714499998837709 ], [ 354468.302000001072884, 258958.706199999898672 ], [ 354442.295000001788139, 258982.55799999833107 ], [ 354489.502400003373623, 259025.796399999409914 ], [ 354496.075199998915195, 259011.495799999684095 ], [ 354510.817199997603893, 258984.807599999010563 ], [ 354532.133699998259544, 258943.607700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97984704, "LATITUDE": 18.36066496, "OBJECTID_1": 2219, "PARCEL_NO_": "102601021100", "Tax_Legal_": "PEARL 7 S S QTR", "Name": "WOSINSKI, JEAN A. (TRUSTEE)", "Address": "PO Box 432", "City": "Corning", "State": "New York", "Zip": 14830, "Country": "United States", "Land_Value": 155500, "Improved_V": 125100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.67161585399998, "SHAPE_Area": 3985.0699103799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353651.404899999499321, 258964.052600000053644 ], [ 353580.668799996376038, 258937.720199998468161 ], [ 353578.213899999856949, 258941.921999998390675 ], [ 353572.42230000346899, 258959.184300001710653 ], [ 353571.590800002217293, 258962.132800001651049 ], [ 353569.083800002932549, 258972.455899998545647 ], [ 353568.243299998342991, 258976.459800001233816 ], [ 353567.379399999976158, 258983.207699999213219 ], [ 353663.869000002741814, 259015.450399998575449 ], [ 353654.378499999642372, 258993.629999998956919 ], [ 353652.042199999094009, 258983.900600001215935 ], [ 353651.280900001525879, 258978.616999998688698 ], [ 353650.557300001382828, 258968.900800000876188 ], [ 353651.404899999499321, 258964.052600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302010300", "MAP": "D9-5218-T92", "PARCEL_NAM": "1D", "ACRE": ".26", "LONGITUDE": -65.01586524, "LATITUDE": 18.36074579, "OBJECTID_1": 1184, "PARCEL_NO_": "102302010300", "Tax_Legal_": "BORDEAUX 1D WESTEND QTR.", "Name": "MADURO, CLAUDE J.,WINTHROP L.,MABEL J., & OTHERS", "Address": "PO Box 302033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.48897562600001, "SHAPE_Area": 1104.30276678 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349825.947499997913837, 258969.262200001627207 ], [ 349813.370200000703335, 258931.162500001490116 ], [ 349787.494499996304512, 258939.605500001460314 ], [ 349800.066399998962879, 258978.338500000536442 ], [ 349825.947499997913837, 258969.262200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98057811, "LATITUDE": 18.36046584, "OBJECTID_1": 2220, "PARCEL_NO_": "102601021200", "Tax_Legal_": "12 ESTATE PEARL SOUTHSIDE QTR.", "Name": "ROMAIN, BEVIN G", "Address": "PO Box 303542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 159800, "Improved_V": 272300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.87496344800002, "SHAPE_Area": 3722.6870299100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353569.36429999768734, 258939.52760000154376 ], [ 353534.165200002491474, 258906.519999999552965 ], [ 353494.238799996674061, 258955.166900001466274 ], [ 353540.693800002336502, 258992.066300000995398 ], [ 353557.518500000238419, 259004.869600001722574 ], [ 353555.959799997508526, 258998.524099998176098 ], [ 353559.39360000193119, 258974.06529999896884 ], [ 353560.234099999070168, 258970.0614 ], [ 353563.570799998939037, 258957.000900000333786 ], [ 353565.23200000077486, 258951.315000001341105 ], [ 353569.36429999768734, 258939.52760000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302010200", "MAP": "D9-2999-T85", "PARCEL_NAM": "1C", "ACRE": null, "LONGITUDE": -65.01563624000001, "LATITUDE": 18.36067058, "OBJECTID_1": 1183, "PARCEL_NO_": "102302010200", "Tax_Legal_": "BORDEAUX 1A,1B&1C WEST END QTR.", "Name": "MADURO, CLAUDE J.,WINTHROP L.,MABEL J., & OTHERS", "Address": "PO Box 302033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.365489118, "SHAPE_Area": 950.09663159499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349848.592600002884865, 258961.425999999046326 ], [ 349836.009900003671646, 258923.959499999880791 ], [ 349813.370200000703335, 258931.162500001490116 ], [ 349825.947499997913837, 258969.262200001627207 ], [ 349848.592600002884865, 258961.425999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302010200", "MAP": "D9-2999-T65", "PARCEL_NAM": "1B", "ACRE": null, "LONGITUDE": -65.01542247, "LATITUDE": 18.36059827, "OBJECTID_1": 1183, "PARCEL_NO_": "102302010200", "Tax_Legal_": "BORDEAUX 1A,1B&1C WEST END QTR.", "Name": "MADURO, CLAUDE J.,WINTHROP L.,MABEL J., & OTHERS", "Address": "PO Box 302033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.55774299300001, "SHAPE_Area": 944.47907210400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349870.443899996578693, 258952.105700001120567 ], [ 349859.459499999880791, 258916.340900000184774 ], [ 349836.009900003671646, 258923.959499999880791 ], [ 349848.592600002884865, 258961.425999999046326 ], [ 349866.385399997234344, 258955.238800000399351 ], [ 349870.443899996578693, 258952.105700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302010200", "MAP": "D9-299-T85", "PARCEL_NAM": "1A", "ACRE": null, "LONGITUDE": -65.01524569, "LATITUDE": 18.36049547, "OBJECTID_1": 1183, "PARCEL_NO_": "102302010200", "Tax_Legal_": "BORDEAUX 1A,1B&1C WEST END QTR.", "Name": "MADURO, CLAUDE J.,WINTHROP L.,MABEL J., & OTHERS", "Address": "PO Box 302033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.417245146, "SHAPE_Area": 586.02480793300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349859.459499999880791, 258916.340900000184774 ], [ 349870.443899996578693, 258952.105700001120567 ], [ 349874.51690000295639, 258947.2837999984622 ], [ 349877.785300001502037, 258942.244300000369549 ], [ 349878.620399996638298, 258938.873700000345707 ], [ 349881.094999998807907, 258932.350000001490116 ], [ 349881.125600002706051, 258928.761700000613928 ], [ 349882.8496999964118, 258915.688000001013279 ], [ 349881.291000001132488, 258909.342399999499321 ], [ 349859.459499999880791, 258916.340900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402020300", "MAP": null, "PARCEL_NAM": null, "ACRE": "2.13", "LONGITUDE": -65.00394197, "LATITUDE": 18.35992009, "OBJECTID_1": 1463, "PARCEL_NO_": "102402020300", "Tax_Legal_": "HOPE 16 WEST END QTR", "Name": "JON B. STRAIN & MELONITA N. STRAIN FAMILY TRUST", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 177800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 407.94117506600003, "SHAPE_Area": 8145.8654632999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351107.24379999935627, 258877.368700001388788 ], [ 351128.369800001382828, 258858.543099999427795 ], [ 351074.083599999547005, 258794.348600000143051 ], [ 351033.169200003147125, 258864.307900000363588 ], [ 351015.988499999046326, 258893.298200000077486 ], [ 351026.35360000282526, 258907.104100000113249 ], [ 351028.727600000798702, 258912.40089999884367 ], [ 351029.517800003290176, 258914.307199999690056 ], [ 351043.628600001335144, 258961.707600001245737 ], [ 351064.045299999415874, 258931.477200001478195 ], [ 351089.368299998342991, 258893.265500001609325 ], [ 351107.24379999935627, 258877.368700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00362555, "LATITUDE": 18.36035511, "OBJECTID_1": 1473, "PARCEL_NO_": "102402021300", "Tax_Legal_": "HOPE 15G WEST END QTR", "Name": "JON B. STRAIN & MELONITA N. STRAIN FAMILY TRUST", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.77228305, "SHAPE_Area": 3054.2850518 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351135.82150000333786, 258930.375900000333786 ], [ 351107.24379999935627, 258877.368700001388788 ], [ 351089.368299998342991, 258893.265500001609325 ], [ 351064.045299999415874, 258931.477200001478195 ], [ 351078.447499997913837, 258944.682900000363588 ], [ 351084.118600003421307, 258941.562899999320507 ], [ 351088.866599999368191, 258952.156500000506639 ], [ 351089.599200002849102, 258960.817299999296665 ], [ 351117.132500000298023, 258947.110500000417233 ], [ 351115.611599996685982, 258936.332299999892712 ], [ 351132.535099998116493, 258937.526200000196695 ], [ 351135.82150000333786, 258930.375900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402013500", "MAP": "A9-322-T85", "PARCEL_NAM": "24-1", "ACRE": ".25", "LONGITUDE": -65.00587715, "LATITUDE": 18.3605866, "OBJECTID_1": 1440, "PARCEL_NO_": "102402013500", "Tax_Legal_": "HOPE 24-1 WEST END QTR.", "Name": "LE BLANC, ERIC", "Address": "24-1 Est Hope", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 228900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.421153987, "SHAPE_Area": 923.97263452899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350892.059799998998642, 258958.356199998408556 ], [ 350866.525799997150898, 258926.694200001657009 ], [ 350859.233000002801418, 258930.8564000017941 ], [ 350853.527699999511242, 258937.986900001764297 ], [ 350849.485299997031689, 258939.220400001853704 ], [ 350843.047399997711182, 258937.690000001341105 ], [ 350839.053599998354912, 258933.224399998784065 ], [ 350837.277300000190735, 258952.419399999082088 ], [ 350888.836400002241135, 258958.118700001388788 ], [ 350892.059799998998642, 258958.356199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402014100", "MAP": "A9-322-T85", "PARCEL_NAM": "24-2", "ACRE": ".24", "LONGITUDE": -65.00563557, "LATITUDE": 18.36049032, "OBJECTID_1": 1444, "PARCEL_NO_": "102402014100", "Tax_Legal_": "HOPE 24A-2\nWESTEND QTR.", "Name": "JASON H JACKSON & BRIANNA M KYDD", "Address": "PO Box 301873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8031873, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.477955372, "SHAPE_Area": 917.16442231799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350902.543700002133846, 258958.230900000780821 ], [ 350895.691500000655651, 258910.678700000047684 ], [ 350893.261699996888638, 258911.925400000065565 ], [ 350866.525799997150898, 258926.694200001657009 ], [ 350892.059799998998642, 258958.356199998408556 ], [ 350902.543700002133846, 258958.230900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402013300", "MAP": "A9-322-T85", "PARCEL_NAM": "24-3", "ACRE": ".33", "LONGITUDE": -65.00541262, "LATITUDE": 18.36045977, "OBJECTID_1": 1439, "PARCEL_NO_": "102402013300", "Tax_Legal_": "HOPE 24-3 WEST END QTR.", "Name": "WILLIAMS, DEON G. & ELEANOR", "Address": "PO Box 304306", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.080890842, "SHAPE_Area": 1305.8300173299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350925.92849999666214, 258958.211199998855591 ], [ 350921.561800003051758, 258902.868900001049042 ], [ 350907.829300001263618, 258905.711800001561642 ], [ 350895.691500000655651, 258910.678700000047684 ], [ 350902.543700002133846, 258958.230900000780821 ], [ 350925.92849999666214, 258958.211199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402012500", "MAP": "A9-322-T85", "PARCEL_NAM": "24-4", "ACRE": null, "LONGITUDE": -65.00517483, "LATITUDE": 18.3603979, "OBJECTID_1": 1434, "PARCEL_NO_": "102402012500", "Tax_Legal_": "24 HOPE WEST END QTR", "Name": "CHARLES, REYNALD", "Address": "PO Box 308358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 172300, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.931081119, "SHAPE_Area": 1469.9969228099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350925.92849999666214, 258958.211199998855591 ], [ 350933.991700001060963, 258958.277199998497963 ], [ 350938.829499997198582, 258958.316799998283386 ], [ 350956.98200000077486, 258909.913800001144409 ], [ 350952.977399997413158, 258906.714600000530481 ], [ 350946.598800003528595, 258898.218699999153614 ], [ 350941.771799996495247, 258896.912599999457598 ], [ 350924.795999996364117, 258901.839899998158216 ], [ 350921.561800003051758, 258902.868900001049042 ], [ 350925.92849999666214, 258958.211199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402012500", "MAP": "A9-322-T85", "PARCEL_NAM": "24-5", "ACRE": ".26", "LONGITUDE": -65.00495274, "LATITUDE": 18.36050449, "OBJECTID_1": 1434, "PARCEL_NO_": "102402012500", "Tax_Legal_": "24 HOPE WEST END QTR", "Name": "CHARLES, REYNALD", "Address": "PO Box 308358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 172300, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.378672825, "SHAPE_Area": 1171.6237518299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350981.857199996709824, 258924.26069999858737 ], [ 350956.98200000077486, 258909.913800001144409 ], [ 350938.829499997198582, 258958.316799998283386 ], [ 350964.633299998939037, 258958.316899999976158 ], [ 350981.857199996709824, 258924.26069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402015900", "MAP": "A9-322-T85", "PARCEL_NAM": "24-6", "ACRE": ".33", "LONGITUDE": -65.00461385, "LATITUDE": 18.36059577, "OBJECTID_1": 1459, "PARCEL_NO_": "102402015900", "Tax_Legal_": "24-6 ESTATE HOPE NO.5 WEST END QTR", "Name": "ISAAC, ANTHONY & KAREN", "Address": "PO Box 12029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8015029, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.70879723499999, "SHAPE_Area": 1262.17466771 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351030.05969999730587, 258945.342399999499321 ], [ 351016.348800003528595, 258945.652300000190735 ], [ 351008.305500000715256, 258943.264499999582767 ], [ 350986.671700000762939, 258927.044300001114607 ], [ 350981.857199996709824, 258924.26069999858737 ], [ 350964.633299998939037, 258958.316899999976158 ], [ 351033.981600001454353, 258958.251200001686811 ], [ 351030.05969999730587, 258945.342399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022900", "MAP": "D9-4385-T88", "PARCEL_NAM": "24A-1", "ACRE": ".53", "LONGITUDE": -65.00627376, "LATITUDE": 18.36037727, "OBJECTID_1": 1487, "PARCEL_NO_": "102402022900", "Tax_Legal_": "HOPE 24A-1 WEST END QTR.", "Name": "JOSEPH R SOUTHWELL and CRYSTAL MOOM", "Address": "36300 Camp Creek Rd", "City": "Springfield", "State": "Oregon", "Zip": 97478, "Country": "United States", "Land_Value": 64200, "Improved_V": 98200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.79307581899999, "SHAPE_Area": 2146.1454149000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350839.929999999701977, 258924.9989 ], [ 350839.370099999010563, 258896.074499998241663 ], [ 350806.381399996578693, 258887.571899998933077 ], [ 350799.413000002503395, 258948.309799998998642 ], [ 350837.277300000190735, 258952.419399999082088 ], [ 350839.053599998354912, 258933.224399998784065 ], [ 350839.080600000917912, 258930.058200001716614 ], [ 350839.929999999701977, 258924.9989 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00066645, "LATITUDE": 18.36007517, "OBJECTID_1": 1510, "PARCEL_NO_": "102402031300", "Tax_Legal_": "HOPE ESTATE REMAINDER 10 WESTEND QTR", "Name": "DIXON, MICHAEL F", "Address": "PO Box 303676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 159400, "Improved_V": 273400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 387.92790985, "SHAPE_Area": 9517.6545209399992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351491.658900000154972, 258903.524099998176098 ], [ 351446.145000003278255, 258850.800400000065565 ], [ 351430.17339999973774, 258832.515599999576807 ], [ 351397.055299997329712, 258839.210700001567602 ], [ 351389.767899997532368, 258842.739599999040365 ], [ 351386.517499998211861, 258845.668299999088049 ], [ 351384.892200000584126, 258847.132699999958277 ], [ 351379.998599998652935, 258853.636500000953674 ], [ 351374.286100000143051, 258861.611299999058247 ], [ 351370.184399999678135, 258869.810400001704693 ], [ 351365.233300000429153, 258883.068799998611212 ], [ 351364.401799999177456, 258886.017299998551607 ], [ 351361.878499999642372, 258898.240100000053644 ], [ 351361.711300000548363, 258917.870400000363588 ], [ 351362.443899996578693, 258926.531199999153614 ], [ 351363.991800002753735, 258934.143300000578165 ], [ 351366.354999996721745, 258940.706500001251698 ], [ 351373.536300003528595, 258949.63120000064373 ], [ 351380.753499999642372, 258954.334300000220537 ], [ 351387.191399998962879, 258955.864700000733137 ], [ 351392.034699998795986, 258955.271000001579523 ], [ 351396.073399998247623, 258954.459699999541044 ], [ 351401.742799997329712, 258951.550799999386072 ], [ 351418.808399997651577, 258936.069600000977516 ], [ 351437.468699999153614, 258922.71229999884963 ], [ 351455.279500000178814, 258914.414299998432398 ], [ 351491.658900000154972, 258903.524099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402014100", "MAP": "D9-4385-T88", "PARCEL_NAM": "24A-2", "ACRE": ".517", "LONGITUDE": -65.00659693, "LATITUDE": 18.36032313, "OBJECTID_1": 1444, "PARCEL_NO_": "102402014100", "Tax_Legal_": "HOPE 24A-2\nWESTEND QTR.", "Name": "JASON H JACKSON & BRIANNA M KYDD", "Address": "PO Box 301873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8031873, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.325356094, "SHAPE_Area": 2029.8926844299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350772.555799998342991, 258882.651000000536442 ], [ 350767.99379999935627, 258944.886199999600649 ], [ 350799.413000002503395, 258948.309799998998642 ], [ 350806.381399996578693, 258887.571899998933077 ], [ 350772.555799998342991, 258882.651000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98654954, "LATITUDE": 18.36044872, "OBJECTID_1": 2022, "PARCEL_NO_": "102502032900", "Tax_Legal_": "5D-9 SANTA MARIA WEST END QUARTER", "Name": "CREQUE, STACY G.", "Address": "209 Raccoon Run Ct", "City": "Hanover", "State": "Maryland", "Zip": 21076, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.404665843, "SHAPE_Area": 1142.1765113 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352916.031800001859665, 258959.933800000697374 ], [ 352930.691100001335144, 258942.955200001597404 ], [ 352901.037299998104572, 258921.603100001811981 ], [ 352883.0, 258956.497000001370907 ], [ 352884.564000003039837, 258962.209300000220537 ], [ 352888.57940000295639, 258964.142000000923872 ], [ 352916.031800001859665, 258959.933800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102402012500", "MAP": "A9-322-T85", "PARCEL_NAM": "24-12", "ACRE": null, "LONGITUDE": -65.00522956, "LATITUDE": 18.36032227, "OBJECTID_1": 1434, "PARCEL_NO_": "102402012500", "Tax_Legal_": "24 HOPE WEST END QTR", "Name": "CHARLES, REYNALD", "Address": "PO Box 308358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 172300, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 457.87744002400001, "SHAPE_Area": 2082.7427848699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350956.98200000077486, 258909.913800001144409 ], [ 350981.857199996709824, 258924.26069999858737 ], [ 350986.671700000762939, 258927.044300001114607 ], [ 351008.305500000715256, 258943.264499999582767 ], [ 351016.348800003528595, 258945.652300000190735 ], [ 351030.05969999730587, 258945.342399999499321 ], [ 351025.358499996364117, 258929.260800000280142 ], [ 351021.278399996459484, 258934.926899999380112 ], [ 351018.848700001835823, 258936.173599999397993 ], [ 351013.209899999201298, 258935.494100000709295 ], [ 350992.376999996602535, 258919.913800001144409 ], [ 350970.712700001895428, 258907.282000001519918 ], [ 350961.083700001239777, 258901.714699998497963 ], [ 350954.692500002682209, 258894.696299999952316 ], [ 350953.105099998414516, 258891.728000000119209 ], [ 350949.093299999833107, 258889.373199999332428 ], [ 350941.850900001823902, 258887.625100001692772 ], [ 350928.912100002169609, 258891.952199999243021 ], [ 350901.438199996948242, 258898.693399999290705 ], [ 350882.012900002300739, 258907.189300000667572 ], [ 350860.140000000596046, 258919.042599998414516 ], [ 350858.520199999213219, 258919.873700000345707 ], [ 350856.097599998116493, 258920.276099998503923 ], [ 350847.224600002169609, 258920.625599998980761 ], [ 350843.997599996626377, 258920.810300000011921 ], [ 350839.929999999701977, 258924.9989 ], [ 350839.080600000917912, 258930.058200001716614 ], [ 350839.053599998354912, 258933.224399998784065 ], [ 350843.047399997711182, 258937.690000001341105 ], [ 350849.485299997031689, 258939.220400001853704 ], [ 350853.527699999511242, 258937.986900001764297 ], [ 350859.233000002801418, 258930.8564000017941 ], [ 350866.525799997150898, 258926.694200001657009 ], [ 350893.261699996888638, 258911.925400000065565 ], [ 350895.691500000655651, 258910.678700000047684 ], [ 350907.829300001263618, 258905.711800001561642 ], [ 350921.561800003051758, 258902.868900001049042 ], [ 350924.795999996364117, 258901.839899998158216 ], [ 350941.771799996495247, 258896.912599999457598 ], [ 350946.598800003528595, 258898.218699999153614 ], [ 350952.977399997413158, 258906.714600000530481 ], [ 350956.98200000077486, 258909.913800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98610578, "LATITUDE": 18.3603666, "OBJECTID_1": 2023, "PARCEL_NO_": "102502033000", "Tax_Legal_": "SANTA MARIE 5D-10 WESTEND QTR.", "Name": "BARTHLET, AVRIL", "Address": "PO Box 12203", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.62759328600001, "SHAPE_Area": 1412.889978 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352964.0033999979496, 258913.463599998503923 ], [ 352956.743000000715256, 258913.826400000602007 ], [ 352952.671899996697903, 258918.437100000679493 ], [ 352930.691100001335144, 258942.955200001597404 ], [ 352916.031800001859665, 258959.933800000697374 ], [ 352950.748199999332428, 258954.940600000321865 ], [ 352962.050899997353554, 258953.344300001859665 ], [ 352971.884900003671646, 258934.848600000143051 ], [ 352978.522399999201298, 258912.949200000613928 ], [ 352964.0033999979496, 258913.463599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97973224, "LATITUDE": 18.36015438, "OBJECTID_1": 2225, "PARCEL_NO_": "102601021700", "Tax_Legal_": "PEARL 6 S S QTR", "Name": "BROWN, KEVIN & TERESA M", "Address": "PO Box 305132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 167100, "Improved_V": 75000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.46888531600001, "SHAPE_Area": 4640.2775061000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353669.63289999961853, 258906.784299999475479 ], [ 353614.303099997341633, 258870.445599999278784 ], [ 353611.03830000013113, 258875.062899999320507 ], [ 353606.950900003314018, 258881.573399998247623 ], [ 353606.1283999979496, 258883.466499999165535 ], [ 353601.21509999781847, 258892.292199999094009 ], [ 353599.555699996650219, 258897.767099998891354 ], [ 353597.92509999871254, 258899.864599999040365 ], [ 353597.104400001466274, 258901.546700000762939 ], [ 353596.265699997544289, 258905.339499998837709 ], [ 353594.636900000274181, 258907.225999999791384 ], [ 353592.160400003194809, 258913.960700001567602 ], [ 353590.517200000584126, 258917.535900000482798 ], [ 353588.879399999976158, 258920.477800000458956 ], [ 353588.058700002729893, 258922.159800000488758 ], [ 353585.596600003540516, 258927.205899998545647 ], [ 353582.326399996876717, 258932.456500001251698 ], [ 353581.505699999630451, 258934.1385000012815 ], [ 353580.668799996376038, 258937.720199998468161 ], [ 353651.404899999499321, 258964.052600000053644 ], [ 353653.985699996352196, 258945.075300000607967 ], [ 353657.331500001251698, 258930.959399998188019 ], [ 353663.101499997079372, 258916.230099998414516 ], [ 353669.63289999961853, 258906.784299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00209503000001, "LATITUDE": 18.3598395, "OBJECTID_1": 1508, "PARCEL_NO_": "102402031100", "Tax_Legal_": "HOPE 14 WEST END QTR", "Name": "BARTLETTE, LORNA-TRUSTEE", "Address": "PO Box 9673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 203600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 546.18189800599998, "SHAPE_Area": 14521.6667272 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351348.359999999403954, 258875.964600000530481 ], [ 351321.826499998569489, 258772.311599999666214 ], [ 351300.761699996888638, 258783.960400000214577 ], [ 351290.209499999880791, 258792.106699999421835 ], [ 351281.2466000020504, 258803.010200001299381 ], [ 351280.416900001466274, 258805.747600000351667 ], [ 351277.956600002944469, 258810.582600001245737 ], [ 351276.329599998891354, 258812.258099999278784 ], [ 351274.675599999725819, 258817.099700000137091 ], [ 351271.409000001847744, 258821.928100001066923 ], [ 351264.897299997508526, 258829.052000001072884 ], [ 351262.460400000214577, 258831.14299999922514 ], [ 351257.592000000178814, 258834.691700000315905 ], [ 351251.107299998402596, 258838.649399999529123 ], [ 351247.867700003087521, 258840.311700001358986 ], [ 351237.349600002169609, 258844.447500001639128 ], [ 351226.854999996721745, 258845.839200001209974 ], [ 351192.980899997055531, 258846.617400001734495 ], [ 351190.549400001764297, 258848.075199998915195 ], [ 351188.915200002491474, 258850.594900000840425 ], [ 351187.187399998307228, 258864.090799998492002 ], [ 351183.033600002527237, 258878.411200001835823 ], [ 351172.407700002193451, 258895.21169999986887 ], [ 351173.122299998998642, 258905.983300000429153 ], [ 351174.718699999153614, 258907.896200001239777 ], [ 351177.072899997234344, 258915.514800000935793 ], [ 351178.667599998414516, 258917.638799998909235 ], [ 351186.513099998235703, 258943.245400000363588 ], [ 351252.061800003051758, 258915.917500000447035 ], [ 351348.359999999403954, 258875.964600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98575158, "LATITUDE": 18.36031725, "OBJECTID_1": 2030, "PARCEL_NO_": "102502033700", "Tax_Legal_": "SANTA MARIA 4B-2 No.1 WESTEND QTR.", "Name": "HODGE, GLENFORD & ALTHEA V. WILLIAMS", "Address": "PO Box 12388", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30800, "Improved_V": 117200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.23871312700001, "SHAPE_Area": 1388.2110570499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353004.835900001227856, 258947.783900000154972 ], [ 353007.326700001955032, 258939.360500000417233 ], [ 353011.59740000218153, 258911.320000000298023 ], [ 352978.522399999201298, 258912.949200000613928 ], [ 352971.884900003671646, 258934.848600000143051 ], [ 352962.050899997353554, 258953.344300001859665 ], [ 352987.075400002300739, 258950.171599999070168 ], [ 353004.835900001227856, 258947.783900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402014000", "MAP": "A9-322-T85", "PARCEL_NAM": "24-7", "ACRE": ".34", "LONGITUDE": -65.00458192000001, "LATITUDE": 18.3602598, "OBJECTID_1": 1443, "PARCEL_NO_": "102402014000", "Tax_Legal_": "HOPE 24-7 WEST END QTR.", "Name": "WILLIAMS, DENFIELD", "Address": "PO Box 9651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41900, "Improved_V": 215400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.577423361, "SHAPE_Area": 1370.25247547 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350991.901600003242493, 258881.06870000064373 ], [ 350970.712700001895428, 258907.282000001519918 ], [ 350992.376999996602535, 258919.913800001144409 ], [ 351013.209899999201298, 258935.494100000709295 ], [ 351018.848700001835823, 258936.173599999397993 ], [ 351021.278399996459484, 258934.926899999380112 ], [ 351025.358499996364117, 258929.260800000280142 ], [ 351017.45719999819994, 258910.197700001299381 ], [ 350991.901600003242493, 258881.06870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98099133, "LATITUDE": 18.36012167, "OBJECTID_1": 2221, "PARCEL_NO_": "102601021300", "Tax_Legal_": "PEARL 13 S S QTR", "Name": "BENJAMIN, ROSE MARIE", "Address": "PO Box 402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 164400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.583598491, "SHAPE_Area": 3441.8484784900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353534.165200002491474, 258906.519999999552965 ], [ 353502.160899996757507, 258877.127099998295307 ], [ 353493.26630000025034, 258880.00959999859333 ], [ 353486.779799997806549, 258884.178399998694658 ], [ 353453.462099999189377, 258914.303199999034405 ], [ 353451.843999996781349, 258914.923200000077486 ], [ 353448.582800000905991, 258919.118400000035763 ], [ 353494.238799996674061, 258955.166900001466274 ], [ 353534.165200002491474, 258906.519999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98534272000001, "LATITUDE": 18.36026898, "OBJECTID_1": 2024, "PARCEL_NO_": "102502033100", "Tax_Legal_": "SANTA MARIA 5D-12 WESTEND QTR.", "Name": "FRANCIS, VINCENT V", "Address": "PO Box 7711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.56470714599999, "SHAPE_Area": 1614.84401824 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353058.383299998939037, 258909.380899999290705 ], [ 353011.59740000218153, 258911.320000000298023 ], [ 353007.326700001955032, 258939.360500000417233 ], [ 353004.835900001227856, 258947.783900000154972 ], [ 353045.2162000015378, 258940.515000000596046 ], [ 353058.936099998652935, 258939.149599999189377 ], [ 353058.383299998939037, 258909.380899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00331682, "LATITUDE": 18.36009248, "OBJECTID_1": 1474, "PARCEL_NO_": "102402021400", "Tax_Legal_": "HOPE 15C WEST END QTR", "Name": "JON B. STRAIN & MELONITA N. STRAIN FAMILY TRUST", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38000, "Improved_V": 106000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.27226107000001, "SHAPE_Area": 1832.62493795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351107.24379999935627, 258877.368700001388788 ], [ 351135.82150000333786, 258930.375900000333786 ], [ 351144.795299999415874, 258918.206000000238419 ], [ 351155.35639999806881, 258909.004299998283386 ], [ 351157.861699998378754, 258898.892299998551607 ], [ 351156.267099998891354, 258896.768300000578165 ], [ 351149.114500001072884, 258884.466299999505281 ], [ 351148.326200000941753, 258882.348999999463558 ], [ 351128.369800001382828, 258858.543099999427795 ], [ 351107.24379999935627, 258877.368700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98191011, "LATITUDE": 18.3601922, "OBJECTID_1": 2215, "PARCEL_NO_": "102601020700", "Tax_Legal_": "PEARL 30 SOUTHSIDE QTR.", "Name": "THOMAS, AUSTIN A and KNOLAH A NICHOLLS", "Address": "PO Box 12016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 153800, "Improved_V": 378500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.83171699100001, "SHAPE_Area": 3729.1567619799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353443.822300001978874, 258910.002399999648333 ], [ 353360.971699997782707, 258885.89299999922514 ], [ 353362.860200002789497, 258948.181000001728535 ], [ 353429.785899996757507, 258948.517700001597404 ], [ 353429.839800000190735, 258942.185300000011921 ], [ 353430.723499998450279, 258933.115499999374151 ], [ 353432.381099998950958, 258927.851700000464916 ], [ 353434.850299999117851, 258921.961300000548363 ], [ 353443.822300001978874, 258910.002399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97695587, "LATITUDE": 18.3600438, "OBJECTID_1": 2300, "PARCEL_NO_": "102601032900", "Tax_Legal_": "PEARL 38B-8A-3 SOUTHSIDE QUARTER", "Name": "POTTER, ROY", "Address": "PO Box 302183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54200, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.72395455099999, "SHAPE_Area": 1711.57825097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353935.031999997794628, 258894.602099999785423 ], [ 353925.111299999058247, 258875.336800001561642 ], [ 353895.461900003254414, 258895.421500001102686 ], [ 353904.224899999797344, 258913.981699999421835 ], [ 353922.44820000231266, 258951.916600000113249 ], [ 353938.9070999994874, 258912.999000001698732 ], [ 353932.537500001490116, 258903.447700001299381 ], [ 353934.976300001144409, 258901.145599998533726 ], [ 353935.031999997794628, 258894.602099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502073000", "MAP": "A9-743-T009", "PARCEL_NAM": "7-2", "ACRE": "4.36", "LONGITUDE": -64.99601153, "LATITUDE": 18.3590902, "OBJECTID_1": 2051, "PARCEL_NO_": "102502073000", "Tax_Legal_": "7-2 SANTA MARIA WEST END QTR", "Name": "MURRAINE, ANN ELLEN BOSCHULTE", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 206800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 740.340842866, "SHAPE_Area": 20936.187193599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351994.765799999237061, 258722.090599998831749 ], [ 351986.889700002968311, 258700.072399999946356 ], [ 351975.853100001811981, 258670.429000001400709 ], [ 351975.066600002348423, 258668.100499998778105 ], [ 351971.123099997639656, 258657.724599998444319 ], [ 351967.960799999535084, 258650.310499999672174 ], [ 351962.390299998223782, 258641.609999999403954 ], [ 351955.945200003683567, 258640.9239999987185 ], [ 351951.076800003647804, 258644.472800001502037 ], [ 351932.348200000822544, 258665.850999999791384 ], [ 351926.610500000417233, 258676.780900001525879 ], [ 351917.629600003361702, 258689.795200001448393 ], [ 351909.415399998426437, 258707.459800001233816 ], [ 351894.698600001633167, 258731.192999999970198 ], [ 351882.41330000013113, 258753.468299999833107 ], [ 351881.589000001549721, 258755.572500001639128 ], [ 351876.671999998390675, 258764.82039999961853 ], [ 351870.937899999320507, 258775.328099999576807 ], [ 351870.11540000140667, 258777.2212999984622 ], [ 351863.567800000309944, 258788.566700000315905 ], [ 351858.675999999046326, 258794.859499998390675 ], [ 351844.824799999594688, 258811.633600000292063 ], [ 351833.444700002670288, 258822.306200001388788 ], [ 351829.382600001990795, 258825.861600000411272 ], [ 351826.947499997913837, 258827.741500001400709 ], [ 351850.904899999499321, 258855.168600000441074 ], [ 351804.610600002110004, 258894.053100001066923 ], [ 351827.657399997115135, 258933.716299999505281 ], [ 351845.500600002706051, 258921.618900001049042 ], [ 351859.303199999034405, 258910.5439000017941 ], [ 351864.990500003099442, 258905.52419999986887 ], [ 351879.617499999701977, 258892.344999998807907 ], [ 351895.063299998641014, 258877.694899998605251 ], [ 351907.276600003242493, 258863.862700000405312 ], [ 351908.909000001847744, 258861.554000001400709 ], [ 351912.163099996745586, 258858.203099999576807 ], [ 351923.577299997210503, 258843.519999999552965 ], [ 351927.657399997115135, 258837.853900000452995 ], [ 351948.081399999558926, 258806.779199998825788 ], [ 351952.195600003004074, 258797.102600000798702 ], [ 351964.491700001060963, 258773.560699999332428 ], [ 351976.875900000333786, 258739.675999999046326 ], [ 351985.842500001192093, 258728.350299999117851 ], [ 351994.765799999237061, 258722.090599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98634913, "LATITUDE": 18.36019411, "OBJECTID_1": 2025, "PARCEL_NO_": "102502033200", "Tax_Legal_": "SANTA MARIA 5D-13 S.S. QTR.", "Name": "DURANT, ELVIN", "Address": "5013 Estate Santa Maria", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 374500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.31430942599999, "SHAPE_Area": 1362.4243494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352952.671899996697903, 258918.437100000679493 ], [ 352923.068499997258186, 258891.174899999052286 ], [ 352910.021899998188019, 258908.166700001806021 ], [ 352902.67509999871254, 258918.661200001835823 ], [ 352901.037299998104572, 258921.603100001811981 ], [ 352930.691100001335144, 258942.955200001597404 ], [ 352952.671899996697903, 258918.437100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402013600", "MAP": "A9-322-T85", "PARCEL_NAM": "24-11", "ACRE": ".29", "LONGITUDE": -65.00582661, "LATITUDE": 18.36020151, "OBJECTID_1": 1441, "PARCEL_NO_": "102402013600", "Tax_Legal_": "HOPE 24-11\nWEST END QTR.", "Name": "JACKSON, JASON H", "Address": "PO Box 301873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.289129403, "SHAPE_Area": 1296.3007400700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350901.438199996948242, 258898.693399999290705 ], [ 350895.149499997496605, 258879.643500000238419 ], [ 350880.563900001347065, 258887.9679000005126 ], [ 350859.527900002896786, 258896.239500001072884 ], [ 350853.063000001013279, 258897.875300001353025 ], [ 350845.806199997663498, 258897.815900001674891 ], [ 350844.197200000286102, 258897.38060000166297 ], [ 350839.370099999010563, 258896.074499998241663 ], [ 350839.929999999701977, 258924.9989 ], [ 350843.997599996626377, 258920.810300000011921 ], [ 350847.224600002169609, 258920.625599998980761 ], [ 350856.097599998116493, 258920.276099998503923 ], [ 350858.520199999213219, 258919.873700000345707 ], [ 350860.140000000596046, 258919.042599998414516 ], [ 350882.012900002300739, 258907.189300000667572 ], [ 350901.438199996948242, 258898.693399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98036405000001, "LATITUDE": 18.35983641, "OBJECTID_1": 2224, "PARCEL_NO_": "102601021600", "Tax_Legal_": "PEARL 14 S S QTR", "Name": "FRANCIS, B. & FRANCIS, F", "Address": "14508 Whistle Stop Ct", "City": "Brandywine", "State": "Maryland", "Zip": 20613, "Country": "United States", "Land_Value": 171600, "Improved_V": 292900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.49149795099999, "SHAPE_Area": 5019.2088091799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353550.025799997150898, 258830.472199998795986 ], [ 353549.045400001108646, 258842.928700000047684 ], [ 353548.833700001239777, 258847.373700000345707 ], [ 353547.563699997961521, 258852.241999998688698 ], [ 353545.870399996638298, 258856.475400000810623 ], [ 353543.753700003027916, 258859.861999999731779 ], [ 353537.826999999582767, 258864.307000000029802 ], [ 353523.994300000369549, 258869.917500000447035 ], [ 353502.160899996757507, 258877.127099998295307 ], [ 353534.165200002491474, 258906.519999999552965 ], [ 353569.36429999768734, 258939.52760000154376 ], [ 353570.190399996936321, 258937.21229999884963 ], [ 353573.47860000282526, 258929.850900001823902 ], [ 353575.947800002992153, 258923.960499998182058 ], [ 353576.766699999570847, 258922.489599999040365 ], [ 353577.590999998152256, 258920.385400000959635 ], [ 353595.648199997842312, 258883.169599998742342 ], [ 353602.197599999606609, 258871.613099999725819 ], [ 353606.27589999884367, 258866.157999999821186 ], [ 353550.025799997150898, 258830.472199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97121203, "LATITUDE": 18.36010109, "OBJECTID_1": 2378, "PARCEL_NO_": "102602012900", "Tax_Legal_": "CARET BAY 7AA LITTLE NORTHSIDE", "Name": "WADE, PHILLIP & PAULETTE I", "Address": "8018 Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023500, "Country": "United States", "Land_Value": 64900, "Improved_V": 249600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.29848455499999, "SHAPE_Area": 1668.77996022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354557.810999996960163, 258896.206599999219179 ], [ 354551.115900002419949, 258892.467300001531839 ], [ 354518.744699999690056, 258906.13459999859333 ], [ 354489.454899996519089, 258936.714499998837709 ], [ 354532.133699998259544, 258943.607700001448393 ], [ 354540.319099999964237, 258929.320300001651049 ], [ 354557.810999996960163, 258896.206599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402012500", "MAP": "A9-322-T85", "PARCEL_NAM": "24-8", "ACRE": ".23", "LONGITUDE": -65.00486804000001, "LATITUDE": 18.36003101, "OBJECTID_1": 1434, "PARCEL_NO_": "102402012500", "Tax_Legal_": "24 HOPE WEST END QTR", "Name": "CHARLES, REYNALD", "Address": "PO Box 308358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 172300, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.376713548, "SHAPE_Area": 1039.5424048899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350965.462300002574921, 258861.009500000625849 ], [ 350949.093299999833107, 258889.373199999332428 ], [ 350953.105099998414516, 258891.728000000119209 ], [ 350954.692500002682209, 258894.696299999952316 ], [ 350961.083700001239777, 258901.714699998497963 ], [ 350970.712700001895428, 258907.282000001519918 ], [ 350991.901600003242493, 258881.06870000064373 ], [ 350989.493400000035763, 258879.782400000840425 ], [ 350978.289599999785423, 258869.769299998879433 ], [ 350965.462300002574921, 258861.009500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9861456, "LATITUDE": 18.35998218, "OBJECTID_1": 2026, "PARCEL_NO_": "102502033300", "Tax_Legal_": "SANTA MARIA 5D-14", "Name": "PERSAD, LIONEL & MARGARET", "Address": "PO Box 304697", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.49668789399999, "SHAPE_Area": 1145.3260201600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352964.0033999979496, 258913.463599998503923 ], [ 352965.891199998557568, 258881.181800000369549 ], [ 352956.228000000119209, 258879.625 ], [ 352945.781900003552437, 258875.317600000649691 ], [ 352940.93860000371933, 258875.911299999803305 ], [ 352929.572899997234344, 258884.895300000905991 ], [ 352923.068499997258186, 258891.174899999052286 ], [ 352952.671899996697903, 258918.437100000679493 ], [ 352956.743000000715256, 258913.826400000602007 ], [ 352964.0033999979496, 258913.463599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601031500", "MAP": "D9-2665-T84", "PARCEL_NAM": "39A", "ACRE": "1.18", "LONGITUDE": -64.97818502, "LATITUDE": 18.35969666, "OBJECTID_1": 2289, "PARCEL_NO_": "102601031500", "Tax_Legal_": "PEARL 39A SOUTHSIDE QTR.", "Name": "STEELE, LESLIE", "Address": "PO Box 7963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 181800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.01976772099999, "SHAPE_Area": 4895.5951052700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353832.807700000703335, 258890.441599998623133 ], [ 353787.669699996709824, 258807.535199999809265 ], [ 353784.949299998581409, 258811.469500001519918 ], [ 353776.05460000038147, 258824.0489999987185 ], [ 353770.257600001990795, 258832.247499998658895 ], [ 353767.001800000667572, 258835.809500001370907 ], [ 353759.968699999153614, 258843.503899998962879 ], [ 353755.003200002014637, 258862.198899999260902 ], [ 353753.944899998605251, 258866.008900001645088 ], [ 353754.579899996519089, 258870.030600000172853 ], [ 353756.273199997842312, 258875.322299998253584 ], [ 353757.966499999165535, 258879.978900000452995 ], [ 353760.718199998140335, 258885.270599998533726 ], [ 353772.148199997842312, 258905.379000000655651 ], [ 353775.7466000020504, 258910.458999998867512 ], [ 353776.804899998009205, 258911.517299998551607 ], [ 353779.945200003683567, 258913.122699998319149 ], [ 353785.906599998474121, 258915.539000000804663 ], [ 353790.986599996685982, 258915.96229999884963 ], [ 353796.956600002944469, 258916.481300000101328 ], [ 353805.168300002813339, 258911.305700000375509 ], [ 353811.306699998676777, 258907.495700001716614 ], [ 353814.693300001323223, 258904.955699998885393 ], [ 353818.503300003707409, 258904.320700000971556 ], [ 353820.408299997448921, 258901.145599998533726 ], [ 353823.159999996423721, 258896.912300001829863 ], [ 353831.45380000025034, 258891.349700000137091 ], [ 353832.807700000703335, 258890.441599998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402013700", "MAP": "A9-322-T85", "PARCEL_NAM": "24-10", "ACRE": ".23", "LONGITUDE": -65.00535874000001, "LATITUDE": 18.36000999, "OBJECTID_1": 1442, "PARCEL_NO_": "102402013700", "Tax_Legal_": "24-10 ESTATE HOPE No.5 WESTEND QTR.", "Name": "JULEEN I WILLIAMS and COLIN L WILLIAMS", "Address": "394-33A Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.5574377, "SHAPE_Area": 984.47796369699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350941.850900001823902, 258887.625100001692772 ], [ 350926.752099998295307, 258861.537099998444319 ], [ 350895.149499997496605, 258879.643500000238419 ], [ 350901.438199996948242, 258898.693399999290705 ], [ 350928.912100002169609, 258891.952199999243021 ], [ 350941.850900001823902, 258887.625100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031400", "MAP": "D9-1166-T73", "PARCEL_NAM": "10-4", "ACRE": ".58", "LONGITUDE": -64.9998747, "LATITUDE": 18.35993085, "OBJECTID_1": 1511, "PARCEL_NO_": "102402031400", "Tax_Legal_": "HOPE 10-2,3&4 WEST END QTR", "Name": "FREDERICK E. LUTHERAN CH.", "Address": "PO Box 58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 224800, "Improved_V": 103300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.50313904800001, "SHAPE_Area": 2052.0401338800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351514.763999998569489, 258852.464600000530481 ], [ 351459.335100002586842, 258866.079999998211861 ], [ 351491.658900000154972, 258903.524099998176098 ], [ 351527.222900003194809, 258893.682700000703335 ], [ 351514.763999998569489, 258852.464600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98528197, "LATITUDE": 18.36001774, "OBJECTID_1": 2028, "PARCEL_NO_": "102502033500", "Tax_Legal_": "SANTA MARIA 5D-16 WESTEND QTR.", "Name": "MARTIN, CHARLES", "Address": "PO Box 306588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41900, "Improved_V": 163000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.95068735199999, "SHAPE_Area": 1356.55127754 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353010.218599997460842, 258883.866599999368191 ], [ 353011.59740000218153, 258911.320000000298023 ], [ 353058.383299998939037, 258909.380899999290705 ], [ 353082.578100003302097, 258908.945700000971556 ], [ 353064.173199996352196, 258892.329700000584126 ], [ 353041.632399998605251, 258887.92339999973774 ], [ 353010.218599997460842, 258883.866599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402020200", "MAP": "D9-759-T68", "PARCEL_NAM": "16A", "ACRE": ".475", "LONGITUDE": -65.00459795, "LATITUDE": 18.35964107, "OBJECTID_1": 1462, "PARCEL_NO_": "102402020200", "Tax_Legal_": "16A & 16A-3 ESTATE HOPE NO. 5 WEST END QUARTER", "Name": "STOUT, DAISY & GARFIELD (LIFE ESTATE)", "Address": "P.O. BOX 3955", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 115300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.266164016, "SHAPE_Area": 3957.2408223000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351027.748000003397465, 258838.087900001555681 ], [ 351007.013999998569489, 258810.898200001567602 ], [ 350980.598099999129772, 258788.094999998807907 ], [ 350961.547600001096725, 258847.256400000303984 ], [ 350986.392300002276897, 258865.191599998623133 ], [ 350991.199600003659725, 258868.819499999284744 ], [ 351000.805200003087521, 258877.130800001323223 ], [ 351003.204300001263618, 258879.472500000149012 ], [ 351015.988499999046326, 258893.298200000077486 ], [ 351033.169200003147125, 258864.307900000363588 ], [ 351027.748000003397465, 258838.087900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97711116000001, "LATITUDE": 18.35972404, "OBJECTID_1": 2299, "PARCEL_NO_": "102601032800", "Tax_Legal_": "PEARL 38B-8A-2 SOUTHSIDE QTR.", "Name": "HODGE, HAROLD", "Address": "PO Box 10026", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47400, "Improved_V": 358100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.314663989, "SHAPE_Area": 942.87879596699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353923.133299998939037, 258871.495600000023842 ], [ 353910.870300002396107, 258854.297400001436472 ], [ 353898.292499996721745, 258860.2516999989748 ], [ 353882.414599999785423, 258867.768300000578165 ], [ 353885.21509999781847, 258873.718299999833107 ], [ 353895.461900003254414, 258895.421500001102686 ], [ 353925.111299999058247, 258875.336800001561642 ], [ 353923.133299998939037, 258871.495600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98170671, "LATITUDE": 18.35978638, "OBJECTID_1": 2222, "PARCEL_NO_": "102601021400", "Tax_Legal_": "PEARL 31 WEST END QTR.", "Name": "RICHARDSON, MURLENE & A. K", "Address": "6013 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.93151136900002, "SHAPE_Area": 4367.0499401699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353476.439300000667572, 258881.524000000208616 ], [ 353399.164499998092651, 258836.135999999940395 ], [ 353387.882100000977516, 258850.649500001221895 ], [ 353360.971699997782707, 258885.89299999922514 ], [ 353443.822300001978874, 258910.002399999648333 ], [ 353463.319399997591972, 258893.063400000333786 ], [ 353476.439300000667572, 258881.524000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00576582, "LATITUDE": 18.35920617, "OBJECTID_1": 1461, "PARCEL_NO_": "102402020100", "Tax_Legal_": "HOPE 23 WEST END QTR", "Name": "NILES, LYRA & OTHERS#51", "Address": "PO Box 3107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 286600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 710.46380308200003, "SHAPE_Area": 30572.988942100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350907.012599997222424, 258717.620799999684095 ], [ 350894.919699996709824, 258717.310699999332428 ], [ 350786.078299999237061, 258715.153299998492002 ], [ 350778.888700000941753, 258801.853999998420477 ], [ 350773.439499996602535, 258873.581199999898672 ], [ 350804.046999998390675, 258877.631400000303984 ], [ 350844.274499997496605, 258888.304200001060963 ], [ 350853.948399998247623, 258888.594500001519918 ], [ 350875.792599998414516, 258880.118400000035763 ], [ 350937.374399997293949, 258845.158700000494719 ], [ 350943.839299999177456, 258843.522900000214577 ], [ 350952.708800002932549, 258843.595499999821186 ], [ 350961.547600001096725, 258847.256400000303984 ], [ 350980.598099999129772, 258788.094999998807907 ], [ 351002.146600000560284, 258719.666000001132488 ], [ 350907.012599997222424, 258717.620799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402012500", "MAP": "A9-322-T85", "PARCEL_NAM": "24-9", "ACRE": ".23", "LONGITUDE": -65.00508996000001, "LATITUDE": 18.35988618, "OBJECTID_1": 1434, "PARCEL_NO_": "102402012500", "Tax_Legal_": "24 HOPE WEST END QTR", "Name": "CHARLES, REYNALD", "Address": "PO Box 308358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 172300, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.56763821200001, "SHAPE_Area": 833.249281612 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350965.462300002574921, 258861.009500000625849 ], [ 350957.444099999964237, 258855.666499998420477 ], [ 350955.035999998450279, 258854.380300000309944 ], [ 350951.018799997866154, 258852.658700000494719 ], [ 350941.337700001895428, 258853.212699998170137 ], [ 350926.752099998295307, 258861.537099998444319 ], [ 350941.850900001823902, 258887.625100001692772 ], [ 350949.093299999833107, 258889.373199999332428 ], [ 350965.462300002574921, 258861.009500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031400", "MAP": "D9-1166-T73", "PARCEL_NAM": "10-3", "ACRE": ".66", "LONGITUDE": -64.99955609, "LATITUDE": 18.3597411, "OBJECTID_1": 1511, "PARCEL_NO_": "102402031400", "Tax_Legal_": "HOPE 10-2,3&4 WEST END QTR", "Name": "FREDERICK E. LUTHERAN CH.", "Address": "PO Box 58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 224800, "Improved_V": 103300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.17008784500001, "SHAPE_Area": 2072.3209614699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351539.252199999988079, 258828.70380000025034 ], [ 351504.493400000035763, 258819.530600000172853 ], [ 351509.184799998998642, 258834.006700001657009 ], [ 351527.222900003194809, 258893.682700000703335 ], [ 351556.320299997925758, 258885.688200000673532 ], [ 351539.252199999988079, 258828.70380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501012700", "MAP": "D9-4248-T88", "PARCEL_NAM": "7-1", "ACRE": null, "LONGITUDE": -64.99686354000001, "LATITUDE": 18.3597414, "OBJECTID_1": 1978, "PARCEL_NO_": "102501012700", "Tax_Legal_": "7-1 SANTA MARIA SOUTHSIDE QUARTER", "Name": "MEYERS, MARKIA", "Address": "PO BOX 308428", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65000, "Improved_V": 195800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.788885252, "SHAPE_Area": 2264.8634265000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351782.357500001788139, 258855.874200001358986 ], [ 351804.610600002110004, 258894.053100001066923 ], [ 351850.904899999499321, 258855.168600000441074 ], [ 351826.947499997913837, 258827.741500001400709 ], [ 351782.357500001788139, 258855.874200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-590-T002", "PARCEL_NAM": "124", "ACRE": "10.701", "LONGITUDE": -65.01138334, "LATITUDE": 18.35788868, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1065.32825267, "SHAPE_Area": 42180.0521152 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350108.843400001525879, 258607.019000001251698 ], [ 350246.64019999653101, 258742.638300001621246 ], [ 350273.997900001704693, 258719.405999999493361 ], [ 350423.372100003063679, 258732.202799998223782 ], [ 350425.237499997019768, 258724.754599999636412 ], [ 350429.951999999582767, 258714.050000000745058 ], [ 350437.781800001859665, 258699.789200000464916 ], [ 350449.20549999922514, 258686.579300001263618 ], [ 350465.268299996852875, 258672.382500000298023 ], [ 350474.079499997198582, 258664.267099998891354 ], [ 350475.670900002121925, 258658.141600001603365 ], [ 350474.551399998366833, 258652.019799999892712 ], [ 350471.396300002932549, 258643.761300001293421 ], [ 350467.411499999463558, 258638.240299999713898 ], [ 350457.813100002706051, 258629.084699999541044 ], [ 350451.394900001585484, 258625.232500001788139 ], [ 350403.179799996316433, 258605.628400001674891 ], [ 350399.157300002872944, 258604.53999999910593 ], [ 350393.513099998235703, 258604.49379999935627 ], [ 350389.472499996423721, 258605.516199998557568 ], [ 350362.740099996328354, 258619.862799998372793 ], [ 350354.662600003182888, 258621.485500000417233 ], [ 350344.184199996292591, 258620.97749999910593 ], [ 350336.945299997925758, 258618.807300001382828 ], [ 350314.458499997854233, 258608.068599998950958 ], [ 350300.792499996721745, 258603.101599998772144 ], [ 350249.323399998247623, 258586.848299998790026 ], [ 350234.071800000965595, 258578.701999999582767 ], [ 350226.055399999022484, 258573.147900000214577 ], [ 350214.853399999439716, 258562.923700001090765 ], [ 350212.470399998128414, 258558.682399999350309 ], [ 350210.159299999475479, 258545.997800000011921 ], [ 350215.167999997735023, 258525.984900001436472 ], [ 350219.413599997758865, 258500.899599999189377 ], [ 350222.854599997401237, 258475.596500001847744 ], [ 350223.797600001096725, 258459.561099998652935 ], [ 350108.843400001525879, 258607.019000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97940331, "LATITUDE": 18.35965018, "OBJECTID_1": 2226, "PARCEL_NO_": "102601021800", "Tax_Legal_": "PEARL 5&6A S S QTR", "Name": "TRUNK, JOSEPH & SHEILA", "Address": "PO Box 111", "City": "BROOKLINE", "State": "Massachusetts", "Zip": 2446, "Country": "United States", "Land_Value": 159900, "Improved_V": 211200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.98098144099998, "SHAPE_Area": 4353.1381512199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353715.135300002992153, 258866.204599998891354 ], [ 353642.986100003123283, 258816.429299999028444 ], [ 353636.375600002706051, 258835.162500001490116 ], [ 353634.732400000095367, 258838.737700000405312 ], [ 353623.278599999845028, 258858.064500000327826 ], [ 353614.303099997341633, 258870.445599999278784 ], [ 353669.63289999961853, 258906.784299999475479 ], [ 353679.420199997723103, 258893.776599999517202 ], [ 353695.675899997353554, 258878.710999999195337 ], [ 353715.135300002992153, 258866.204599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00291948, "LATITUDE": 18.35965203, "OBJECTID_1": 1507, "PARCEL_NO_": "102402031000", "Tax_Legal_": "HOPE 17A WEST END QTR", "Name": "CID, WINSTON & MARIEL", "Address": "501 Cedar Rd", "City": "FT. WASHINGTON", "State": "Maryland", "Zip": 20744, "Country": "United States", "Land_Value": 31600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.24528744000003, "SHAPE_Area": 2485.2804163400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351235.82150000333786, 258834.513599999248981 ], [ 351186.868400000035763, 258806.881799999624491 ], [ 351186.845100000500679, 258809.625799998641014 ], [ 351185.995600000023842, 258814.685100000351667 ], [ 351185.167700000107288, 258817.211500000208616 ], [ 351183.524499997496605, 258820.78660000115633 ], [ 351181.065999999642372, 258825.410599999129772 ], [ 351175.378700003027916, 258830.430300001055002 ], [ 351169.709299996495247, 258833.339200001209974 ], [ 351155.159699998795986, 258837.44200000166893 ], [ 351134.163199998438358, 258841.06980000063777 ], [ 351132.539800003170967, 258842.323100000619888 ], [ 351132.503899998962879, 258846.544700000435114 ], [ 351151.666500002145767, 258868.866300001740456 ], [ 351159.625399999320507, 258881.174899999052286 ], [ 351162.832599997520447, 258883.312100000679493 ], [ 351166.056100003421307, 258883.549499999731779 ], [ 351170.913699999451637, 258881.267299998551607 ], [ 351175.024400003254414, 258872.012800000607967 ], [ 351177.502700001001358, 258865.06700000166893 ], [ 351178.339599996805191, 258861.485300000756979 ], [ 351180.889799997210503, 258846.0962999984622 ], [ 351186.589699998497963, 258839.598999999463558 ], [ 351193.866300001740456, 258837.336599998176098 ], [ 351225.326899997889996, 258835.905299998819828 ], [ 351233.397200003266335, 258835.127000000327826 ], [ 351235.82150000333786, 258834.513599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102501011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99892455, "LATITUDE": 18.35941036, "OBJECTID_1": 1968, "PARCEL_NO_": "102501011500", "Tax_Legal_": "HPE 11A WEST END QTR", "Name": "JOSHUA, ALPHONSE", "Address": "50 Kenilworth Pl", "City": "Brooklyn", "State": "New York", "Zip": 11210, "Country": "United States", "Land_Value": 227000, "Improved_V": 44600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 467.86523014699998, "SHAPE_Area": 13296.848793200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351538.729999996721745, 258773.453600000590086 ], [ 351531.460600003600121, 258774.871700000017881 ], [ 351523.392099998891354, 258775.438999999314547 ], [ 351535.150499999523163, 258815.009700000286102 ], [ 351556.320299997925758, 258885.688200000673532 ], [ 351591.076300002634525, 258876.051300000399351 ], [ 351604.806999996304512, 258873.419399999082088 ], [ 351628.21339999884367, 258870.866799999028444 ], [ 351667.724500000476837, 258870.979100000113249 ], [ 351677.47580000013113, 258862.192899998277426 ], [ 351659.288400001823902, 258820.036499999463558 ], [ 351630.012299999594688, 258754.357900001108646 ], [ 351538.729999996721745, 258773.453600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00685005, "LATITUDE": 18.35960087, "OBJECTID_1": 1489, "PARCEL_NO_": "102402024100", "Tax_Legal_": "BORDEAUX 108A WESTEND QUARTER", "Name": "KESHAP, ARUN", "Address": "PO Box 303115", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75600, "Improved_V": 32900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.01700839099999, "SHAPE_Area": 2283.8426310999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350748.292000003159046, 258796.537300001829863 ], [ 350741.237300001084805, 258867.407000001519918 ], [ 350756.528499998152256, 258870.909600000828505 ], [ 350773.439499996602535, 258873.581199999898672 ], [ 350778.888700000941753, 258801.853999998420477 ], [ 350748.292000003159046, 258796.537300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00078518, "LATITUDE": 18.35902536, "OBJECTID_1": 1513, "PARCEL_NO_": "102402031600", "Tax_Legal_": "HOPE 13 WEST END QTR", "Name": "MONSANTO, LEROY", "Address": "PO Box 302763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 210900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 524.14042049199998, "SHAPE_Area": 15707.758816 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351321.826499998569489, 258772.311599999666214 ], [ 351348.359999999403954, 258875.964600000530481 ], [ 351360.497900001704693, 258870.997699998319149 ], [ 351362.160800002515316, 258865.100699998438358 ], [ 351367.077799998223782, 258855.852800000458956 ], [ 351377.67679999768734, 258842.218499999493361 ], [ 351381.738899998366833, 258838.663100000470877 ], [ 351390.660499997437, 258832.614399999380112 ], [ 351394.706500001251698, 258830.958799999207258 ], [ 351429.447999998927116, 258823.010499998927116 ], [ 351439.161499999463558, 258818.657000001519918 ], [ 351448.898400001227856, 258811.559500001370907 ], [ 351456.230800002813339, 258802.753600001335144 ], [ 351466.082699999213219, 258782.147100001573563 ], [ 351473.505000002682209, 258762.787200000137091 ], [ 351482.692699998617172, 258725.4989 ], [ 351482.775399997830391, 258715.789200000464916 ], [ 351481.987099997699261, 258713.671799998730421 ], [ 351479.604099996387959, 258709.430500000715256 ], [ 351474.805799998342991, 258704.747099999338388 ], [ 351468.382299996912479, 258701.528200000524521 ], [ 351459.512800000607967, 258701.455600000917912 ], [ 351393.237000003457069, 258719.489399999380112 ], [ 351381.898199997842312, 258725.307199999690056 ], [ 351375.418999999761581, 258728.631700001657009 ], [ 351367.303700000047684, 258734.686900001019239 ], [ 351360.808200001716614, 258739.911100000143051 ], [ 351352.660599999129772, 258749.765799999237061 ], [ 351342.099399998784065, 258758.967500001192093 ], [ 351339.664300002157688, 258760.84739999845624 ], [ 351328.313000001013279, 258768.142799999564886 ], [ 351321.826499998569489, 258772.311599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601032600", "MAP": "D9-2978-T85", "PARCEL_NAM": "38B-8A", "ACRE": "1.0", "LONGITUDE": -64.97680057, "LATITUDE": 18.35947818, "OBJECTID_1": 2297, "PARCEL_NO_": "102601032600", "Tax_Legal_": "PEARL ESTATE 38B-8B No.2 SOUTHSIDE QTR.", "Name": "CALLWOOD, ELMIRA & HART, RUDEL T", "Address": "PO Box 305853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 151300, "Improved_V": 234000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.08793166000001, "SHAPE_Area": 2505.229735 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353968.090400002896786, 258843.982400000095367 ], [ 353907.912900000810623, 258804.5625 ], [ 353905.851199999451637, 258817.736400000751019 ], [ 353907.393700003623962, 258825.981600001454353 ], [ 353908.167599998414516, 258829.787599999457598 ], [ 353909.728100001811981, 258835.922100000083447 ], [ 353933.611800000071526, 258872.003499999642372 ], [ 353945.496100001037121, 258896.798700001090765 ], [ 353968.090400002896786, 258843.982400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032401", "MAP": "D9-2839-T84", "PARCEL_NAM": "5D-4", "ACRE": null, "LONGITUDE": -64.98503692, "LATITUDE": 18.3598444, "OBJECTID_1": 2019, "PARCEL_NO_": "102502032401", "Tax_Legal_": "SANTA MARIA 5C-17&5D-4 S.S. QTR.", "Name": "BALLENTINE, KRIM & ROSALIE SIMMONDS BALLENTINE", "Address": "PO Box 305396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 143800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.191930607100005, "SHAPE_Area": 164.59106068299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353078.807300001382828, 258878.306200001388788 ], [ 353069.102799996733665, 258881.604299999773502 ], [ 353053.068199999630451, 258870.707299999892712 ], [ 353053.784599997103214, 258881.267799999564886 ], [ 353080.346199996769428, 258886.973700001835823 ], [ 353078.807300001382828, 258878.306200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502039900", "MAP": "D9-2839-T84", "PARCEL_NAM": "5D-5", "ACRE": null, "LONGITUDE": -64.98475642, "LATITUDE": 18.35983397, "OBJECTID_1": 2039, "PARCEL_NO_": "102502039900", "Tax_Legal_": "5A,B,C REM,D,E&F SANTA MARIA NO.1 WEST END QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 497000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.872021331599996, "SHAPE_Area": 374.45709940900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353108.592299997806549, 258884.249499998986721 ], [ 353107.920800000429153, 258868.412000000476837 ], [ 353078.807300001382828, 258878.306200001388788 ], [ 353080.346199996769428, 258886.973700001835823 ], [ 353093.248999997973442, 258886.868200000375509 ], [ 353108.592299997806549, 258884.249499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00714149, "LATITUDE": 18.35954646, "OBJECTID_1": 1485, "PARCEL_NO_": "102402022700", "Tax_Legal_": "BORDEAUX 108 WEST END QTR", "Name": "ROBINSON-SMITH, SHIRLEN I", "Address": "6351 SW 8th St", "City": "North Lauderdale", "State": "Florida", "Zip": 33068, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.287095881, "SHAPE_Area": 2181.717772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350712.245999999344349, 258862.947799999266863 ], [ 350733.989500001072884, 258866.292199999094009 ], [ 350741.237300001084805, 258867.407000001519918 ], [ 350748.292000003159046, 258796.537300001829863 ], [ 350716.888999998569489, 258791.214000001549721 ], [ 350712.245999999344349, 258862.947799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032600", "MAP": "D9-2839-T84", "PARCEL_NAM": "5D-6", "ACRE": null, "LONGITUDE": -64.98451451, "LATITUDE": 18.35977619, "OBJECTID_1": 2020, "PARCEL_NO_": "102502032600", "Tax_Legal_": "SANTA MARIA 5C-19&5D-6 N0.1 WESTEND QTR.", "Name": "CARTY, JR. , AMOS W", "Address": "P.O.BOX 307223-VDS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.050515747299997, "SHAPE_Area": 434.879753102 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353133.631099998950958, 258879.388199999928474 ], [ 353131.37219999730587, 258860.582400001585484 ], [ 353107.920800000429153, 258868.412000000476837 ], [ 353108.592299997806549, 258884.249499998986721 ], [ 353129.588799998164177, 258880.621700000017881 ], [ 353133.631099998950958, 258879.388199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102501010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9977766, "LATITUDE": 18.35970834, "OBJECTID_1": 1960, "PARCEL_NO_": "102501010600", "Tax_Legal_": "HOPE 11B WEST END QTR", "Name": "PRINCE, WAYNE, SR. & CHERYL (TRUSTEES)", "Address": "PO Box 303978", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68600, "Improved_V": 212600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.924158616, "SHAPE_Area": 1611.69652737 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351734.11370000243187, 258839.647300001233816 ], [ 351723.768299996852875, 258823.519499998539686 ], [ 351705.846000000834465, 258844.904399998486042 ], [ 351698.508199997246265, 258854.343499999493361 ], [ 351695.254199996590614, 258857.694400001317263 ], [ 351681.431800000369549, 258871.091299999505281 ], [ 351728.201499998569489, 258871.051899999380112 ], [ 351741.9358000010252, 258867.997900001704693 ], [ 351750.033100001513958, 258864.053399998694658 ], [ 351734.11370000243187, 258839.647300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601026300", "MAP": "D9-7495-T004", "PARCEL_NAM": "ID", "ACRE": ".50", "LONGITUDE": -64.98359403000001, "LATITUDE": 18.358295, "OBJECTID_1": 2270, "PARCEL_NO_": "102601026300", "Tax_Legal_": "1D SANTA MARIA NO. 1 WEST END QTR", "Name": "KEATING SMITH II, MYRAH", "Address": "PO Box 537", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.54939712500001, "SHAPE_Area": 2032.9625782400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353249.584100000560284, 258705.209100000560284 ], [ 353194.859700001776218, 258677.770799998193979 ], [ 353187.4391999989748, 258691.377199999988079 ], [ 353187.396499998867512, 258696.770799998193979 ], [ 353189.920000001788139, 258700.598400000482798 ], [ 353193.418600000441074, 258702.212499998509884 ], [ 353195.972300000488758, 258702.232799999415874 ], [ 353197.905000001192093, 258700.026999998837709 ], [ 353203.912100002169609, 258707.372299998998642 ], [ 353200.370800003409386, 258711.151799999177456 ], [ 353205.101000003516674, 258718.487100001424551 ], [ 353205.109700001776218, 258718.578099999576807 ], [ 353214.898299999535084, 258730.939100001007318 ], [ 353237.732500001788139, 258750.651200000196695 ], [ 353238.222599998116493, 258728.268100000917912 ], [ 353249.584100000560284, 258705.209100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032401", "MAP": "D9-2839-T84", "PARCEL_NAM": "5C-17", "ACRE": ".319", "LONGITUDE": -64.98503734000001, "LATITUDE": 18.35964434, "OBJECTID_1": 2019, "PARCEL_NO_": "102502032401", "Tax_Legal_": "SANTA MARIA 5C-17&5D-4 S.S. QTR.", "Name": "BALLENTINE, KRIM & ROSALIE SIMMONDS BALLENTINE", "Address": "PO Box 305396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 143800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.15932964199999, "SHAPE_Area": 1005.67019419 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353078.807300001382828, 258878.306200001388788 ], [ 353077.532700002193451, 258838.610199999064207 ], [ 353067.853399999439716, 258838.953200001269579 ], [ 353063.820000000298023, 258839.131299998611212 ], [ 353050.922600001096725, 258838.603500001132488 ], [ 353053.068199999630451, 258870.707299999892712 ], [ 353069.102799996733665, 258881.604299999773502 ], [ 353078.807300001382828, 258878.306200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402020200", "MAP": "D9-759-T68", "PARCEL_NAM": "16A-3", "ACRE": ".525", "LONGITUDE": -65.00412745, "LATITUDE": 18.35936479, "OBJECTID_1": 1462, "PARCEL_NO_": "102402020200", "Tax_Legal_": "16A & 16A-3 ESTATE HOPE NO. 5 WEST END QUARTER", "Name": "STOUT, DAISY & GARFIELD (LIFE ESTATE)", "Address": "P.O. BOX 3955", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 115300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.75611732199999, "SHAPE_Area": 1951.6803276200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351049.337899997830391, 258764.804099999368191 ], [ 351027.748000003397465, 258838.087900001555681 ], [ 351033.169200003147125, 258864.307900000363588 ], [ 351074.083599999547005, 258794.348600000143051 ], [ 351049.337899997830391, 258764.804099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602015900", "MAP": "F9-3044-T72", "PARCEL_NAM": "7aa-1", "ACRE": null, "LONGITUDE": -64.97174506, "LATITUDE": 18.35945416, "OBJECTID_1": 2404, "PARCEL_NO_": "102602015900", "Tax_Legal_": "CARET BAY 7AA-1 LT. NORTHSIDE QTR.", "Name": "WALTERS, CATHLYN", "Address": "PO Box 307142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 121900, "Improved_V": 19600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 401.56321672199999, "SHAPE_Area": 3117.07228872 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354511.375600002706051, 258845.610599998384714 ], [ 354464.079800002276897, 258835.08500000089407 ], [ 354435.490599997341633, 258834.736800000071526 ], [ 354384.450099997222424, 258831.049400001764297 ], [ 354382.133199997246265, 258836.52479999884963 ], [ 354380.169799998402596, 258844.201099999248981 ], [ 354383.435099996626377, 258848.428700000047684 ], [ 354390.66669999808073, 258851.443199999630451 ], [ 354469.042900003492832, 258852.836199998855591 ], [ 354505.968900002539158, 258857.798099998384714 ], [ 354529.494400002062321, 258862.820599999278784 ], [ 354556.889499999582767, 258877.315799999982119 ], [ 354560.237099997699261, 258862.988899998366833 ], [ 354559.536799997091293, 258850.528599999845028 ], [ 354511.375600002706051, 258845.610599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032700", "MAP": "102502032700", "PARCEL_NAM": "5D-7", "ACRE": null, "LONGITUDE": -64.98420245, "LATITUDE": 18.35968152, "OBJECTID_1": 2021, "PARCEL_NO_": "102502032700", "Tax_Legal_": "SANTA MARIA 5C-20 & 5D-7 WESTEND QUARTER", "Name": "CARTY, AMOS W", "Address": "PO Box 307223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48400, "Improved_V": 248200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.61610186199999, "SHAPE_Area": 847.88999582899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353177.296099998056889, 258865.180100001394749 ], [ 353172.616499997675419, 258846.565600000321865 ], [ 353131.37219999730587, 258860.582400001585484 ], [ 353133.631099998950958, 258879.388199999928474 ], [ 353162.73929999768734, 258870.127300001680851 ], [ 353177.296099998056889, 258865.180100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502039900", "MAP": "D9-2839-T84", "PARCEL_NAM": "5C-18", "ACRE": ".32", "LONGITUDE": -64.98478517, "LATITUDE": 18.35961527, "OBJECTID_1": 2039, "PARCEL_NO_": "102502039900", "Tax_Legal_": "5A,B,C REM,D,E&F SANTA MARIA NO.1 WEST END QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 497000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.87943909099999, "SHAPE_Area": 1072.0485853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353107.920800000429153, 258868.412000000476837 ], [ 353106.597699999809265, 258834.415100000798702 ], [ 353091.252599999308586, 258837.244899999350309 ], [ 353077.532700002193451, 258838.610199999064207 ], [ 353078.807300001382828, 258878.306200001388788 ], [ 353107.920800000429153, 258868.412000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032200", "MAP": "D9-2839-T84", "PARCEL_NAM": "5D-2", "ACRE": ".317", "LONGITUDE": -64.98564145, "LATITUDE": 18.35965407, "OBJECTID_1": 2017, "PARCEL_NO_": "102502032200", "Tax_Legal_": "SANTA MARIA 5D-2 & 5C-15 WEST END QUARTER", "Name": "CHARLESWELL, CLIFTON&ANNICA&AKILAH&AKEEM&AKEEMA&AKEEL", "Address": "PO Box 12421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 243900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.73591919, "SHAPE_Area": 1176.89956145 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353020.194600000977516, 258848.695599999278784 ], [ 353006.562799997627735, 258839.718100000172853 ], [ 352997.680799998342991, 258841.123100001364946 ], [ 352988.010499998927116, 258840.410599999129772 ], [ 352980.465899996459484, 258874.1239 ], [ 353000.625500001013279, 258874.077799998223782 ], [ 353020.772600002586842, 258875.509199999272823 ], [ 353020.194600000977516, 258848.695599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102501010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9974304, "LATITUDE": 18.35959424, "OBJECTID_1": 1961, "PARCEL_NO_": "102501010700", "Tax_Legal_": "HOPE 11C WEST END QTR", "Name": "Donadelle, Avril; Corey Forbes & Ava Frett", "Address": "P.O. Box 2111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032111, "Country": "United States", "Land_Value": 43300, "Improved_V": 205300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.86585332600001, "SHAPE_Area": 1002.86160293 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351777.598800003528595, 258846.547100000083447 ], [ 351761.699100002646446, 258819.819200001657009 ], [ 351734.11370000243187, 258839.647300001233816 ], [ 351750.033100001513958, 258864.053399998694658 ], [ 351755.707900002598763, 258860.511199999600649 ], [ 351777.598800003528595, 258846.547100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032100", "MAP": "D9-2839-T84", "PARCEL_NAM": "5D-1", "ACRE": ".32", "LONGITUDE": -64.98594434, "LATITUDE": 18.35961623, "OBJECTID_1": 2016, "PARCEL_NO_": "102502032100", "Tax_Legal_": "5D-1 SANTA MARIA WEST END QUARTER", "Name": "LIBURD-CANTON, JUANITA", "Address": "PO Box 306814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 228200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.162762687, "SHAPE_Area": 1073.1597739399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352980.465899996459484, 258874.1239 ], [ 352988.010499998927116, 258840.410599999129772 ], [ 352979.164399996399879, 258837.594000000506639 ], [ 352971.146200001239777, 258832.2511 ], [ 352966.299400001764297, 258833.2668999992311 ], [ 352964.683100000023842, 258833.675799999386072 ], [ 352950.758199997246265, 258859.104200001806021 ], [ 352951.498000003397465, 258866.920699998736382 ], [ 352953.099899999797344, 258868.200399998575449 ], [ 352954.705300003290176, 258869.057900000363588 ], [ 352968.380199998617172, 258872.969500001519918 ], [ 352980.465899996459484, 258874.1239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102501012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99804409, "LATITUDE": 18.35945179, "OBJECTID_1": 1979, "PARCEL_NO_": "102501012800", "Tax_Legal_": "HOPE 11D WESTEND QTR", "Name": "PRINCE FAMILY REVOCABLE LIVING TRUST", "Address": "PO Box 303978", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98900, "Improved_V": 102900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.54487725199999, "SHAPE_Area": 1929.30131033 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351692.444300003349781, 258808.9087999984622 ], [ 351659.288400001823902, 258820.036499999463558 ], [ 351677.47580000013113, 258862.192899998277426 ], [ 351696.994499996304512, 258842.721000000834465 ], [ 351731.2246999964118, 258800.14919999986887 ], [ 351731.246200002729893, 258797.616200000047684 ], [ 351728.834499999880791, 258796.752099998295307 ], [ 351692.444300003349781, 258808.9087999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98138604, "LATITUDE": 18.35951809, "OBJECTID_1": 2223, "PARCEL_NO_": "102601021500", "Tax_Legal_": "32 PEARL NO. 2 SOUTHSIDE QTR.", "Name": "MATTHEW & THERESA LIVERPOOL (LIFE INTEREST)", "Address": "PO Box 12093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 162900, "Improved_V": 347000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.012078196, "SHAPE_Area": 3172.9625947499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353512.75620000064373, 258863.91499999910593 ], [ 353418.867200002074242, 258810.373100001364946 ], [ 353403.372900001704693, 258830.72239999845624 ], [ 353399.164499998092651, 258836.135999999940395 ], [ 353476.439300000667572, 258881.524000000208616 ], [ 353482.818400003015995, 258875.913400001823902 ], [ 353484.439999997615814, 258874.871199999004602 ], [ 353491.730999998748302, 258870.920099999755621 ], [ 353512.75620000064373, 258863.91499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": null, "PARCEL_NAM": "103", "ACRE": null, "LONGITUDE": -65.0145515, "LATITUDE": 18.35828993, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1142.2711133, "SHAPE_Area": 66910.900060800021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350108.843400001525879, 258607.019000001251698 ], [ 349850.531400002539158, 258544.5320999994874 ], [ 349844.838699996471405, 258550.184999998658895 ], [ 349814.830700002610683, 258570.415500000119209 ], [ 349808.279500000178814, 258582.183100000023842 ], [ 349778.109600000083447, 258621.410700000822544 ], [ 349769.925999999046326, 258635.486999999731779 ], [ 349765.754199996590614, 258651.918200001120567 ], [ 349768.095799997448921, 258661.014299999922514 ], [ 349772.0878000035882, 258665.691100001335144 ], [ 349782.499799996614456, 258674.008900001645088 ], [ 349833.022299997508526, 258706.719799999147654 ], [ 349845.817199997603893, 258719.278999999165535 ], [ 349847.413699999451637, 258721.191899999976158 ], [ 349848.997500002384186, 258724.582400001585484 ], [ 349849.785899996757507, 258726.699799999594688 ], [ 349852.120300002396107, 258736.640299998223782 ], [ 349852.001599997282028, 258750.57149999961257 ], [ 349847.76860000193119, 258774.179299999028444 ], [ 349845.162699997425079, 258796.111699998378754 ], [ 349840.980099998414516, 258813.809300001710653 ], [ 349845.562600001692772, 258843.82209999859333 ], [ 349848.825599998235703, 258839.415899999439716 ], [ 349859.419200003147125, 258826.414799999445677 ], [ 349867.543399997055531, 258819.304099999368191 ], [ 349874.837999999523163, 258814.930799998342991 ], [ 349893.453299999237061, 258806.850499998778105 ], [ 349908.033500000834465, 258799.159400001168251 ], [ 349912.07940000295639, 258797.503699999302626 ], [ 349916.125399999320507, 258795.848099999129772 ], [ 349925.804700002074242, 258795.505100000649691 ], [ 349939.476099997758865, 258799.838899999856949 ], [ 349991.026100002229214, 258806.593600001186132 ], [ 350000.691100001335144, 258807.939300000667572 ], [ 350011.198299996554852, 258805.070000000298023 ], [ 350019.263300001621246, 258804.924899999052286 ], [ 350026.498499996960163, 258807.517200000584126 ], [ 350029.704000003635883, 258809.865499999374151 ], [ 350049.705300003290176, 258828.394299998879433 ], [ 350072.129199996590614, 258846.520799998193979 ], [ 350108.843400001525879, 258607.019000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601034200", "MAP": "D9-5465-T93", "PARCEL_NAM": "39-A-A-4", "ACRE": ".35", "LONGITUDE": -64.97770135, "LATITUDE": 18.35945144, "OBJECTID_1": 2313, "PARCEL_NO_": "102601034200", "Tax_Legal_": "PEARL 39-A-A-4 & -5 SOUTHSIDE QUARTER", "Name": "BELTZ, TIMOTHY J. & PETSCHE, JOLENE C.", "Address": "PO Box 8717", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79800, "Improved_V": 183500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.66034280299999, "SHAPE_Area": 1819.412697 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353837.20830000191927, 258883.832899998873472 ], [ 353868.139700002968311, 258837.381099998950958 ], [ 353865.415100000798702, 258831.548700001090765 ], [ 353857.513400003314018, 258815.218600001186132 ], [ 353825.248199999332428, 258829.00789999961853 ], [ 353818.66160000115633, 258831.822799999266863 ], [ 353821.151699997484684, 258838.824200000613928 ], [ 353813.717600002884865, 258842.102400001138449 ], [ 353807.816699996590614, 258844.539799999445677 ], [ 353815.697200000286102, 258859.014199998229742 ], [ 353820.854800000786781, 258855.447999998927116 ], [ 353824.378600001335144, 258853.011399999260902 ], [ 353833.584600001573563, 258858.530000001192093 ], [ 353838.611699998378754, 258861.308100000023842 ], [ 353837.818000003695488, 258875.992499999701977 ], [ 353837.434799998998642, 258880.920800000429153 ], [ 353837.20830000191927, 258883.832899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032600", "MAP": "D9-2839-T84", "PARCEL_NAM": "5C-19", "ACRE": ".32", "LONGITUDE": -64.9845392, "LATITUDE": 18.35955772, "OBJECTID_1": 2020, "PARCEL_NO_": "102502032600", "Tax_Legal_": "SANTA MARIA 5C-19&5D-6 N0.1 WESTEND QTR.", "Name": "CARTY, JR. , AMOS W", "Address": "P.O.BOX 307223-VDS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.432533443, "SHAPE_Area": 729.67942246200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353131.37219999730587, 258860.582400001585484 ], [ 353129.190700002014637, 258832.700199998915195 ], [ 353114.67339999973774, 258833.003600001335144 ], [ 353106.597699999809265, 258834.415100000798702 ], [ 353107.920800000429153, 258868.412000000476837 ], [ 353131.37219999730587, 258860.582400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9772364, "LATITUDE": 18.35948036, "OBJECTID_1": 2298, "PARCEL_NO_": "102601032700", "Tax_Legal_": "PEARL 38B-8A-1 SOUTHSIDE QTR.", "Name": "THOMAS, YVONNE", "Address": "P O BOX 2326 KINGSHILL", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 66200, "Improved_V": 269700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.889835828, "SHAPE_Area": 931.63981002599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353897.692800000309944, 258828.857500001788139 ], [ 353896.971000000834465, 258818.93019999936223 ], [ 353871.750500001013279, 258845.110500000417233 ], [ 353882.414599999785423, 258867.768300000578165 ], [ 353898.292499996721745, 258860.2516999989748 ], [ 353910.870300002396107, 258854.297400001436472 ], [ 353907.993199996650219, 258850.262299999594688 ], [ 353900.822700001299381, 258840.071100000292063 ], [ 353897.692800000309944, 258828.857500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502039900", "MAP": "D9-2839-T84", "PARCEL_NAM": "5D-8", "ACRE": null, "LONGITUDE": -64.98381918, "LATITUDE": 18.35955142, "OBJECTID_1": 2039, "PARCEL_NO_": "102502039900", "Tax_Legal_": "5A,B,C REM,D,E&F SANTA MARIA NO.1 WEST END QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 497000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.750369792, "SHAPE_Area": 774.27089608100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353216.169900000095367, 258845.444400001317263 ], [ 353213.04900000244379, 258833.175500001758337 ], [ 353172.616499997675419, 258846.565600000321865 ], [ 353177.296099998056889, 258865.180100001394749 ], [ 353211.269100002944469, 258852.792599998414516 ], [ 353212.890699997544289, 258851.750399999320507 ], [ 353214.51410000026226, 258850.497099999338388 ], [ 353214.551899999380112, 258846.064500000327826 ], [ 353216.169900000095367, 258845.444400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031400", "MAP": "D9-1166-T73", "PARCEL_NAM": "10-2", "ACRE": ".58", "LONGITUDE": -65.00009232, "LATITUDE": 18.35957251, "OBJECTID_1": 1511, "PARCEL_NO_": "102402031400", "Tax_Legal_": "HOPE 10-2,3&4 WEST END QTR", "Name": "FREDERICK E. LUTHERAN CH.", "Address": "PO Box 58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 224800, "Improved_V": 103300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.1281375, "SHAPE_Area": 3013.1455488900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351504.493400000035763, 258819.530600000172853 ], [ 351463.173600003123283, 258808.625900000333786 ], [ 351461.806599996984005, 258810.820799998939037 ], [ 351457.739100001752377, 258815.009399998933077 ], [ 351452.049900002777576, 258820.240200001746416 ], [ 351447.991400003433228, 258823.373399998992682 ], [ 351443.126599997282028, 258826.499899998307228 ], [ 351437.45719999819994, 258829.4087999984622 ], [ 351430.17339999973774, 258832.515599999576807 ], [ 351446.145000003278255, 258850.800400000065565 ], [ 351459.335100002586842, 258866.079999998211861 ], [ 351514.763999998569489, 258852.464600000530481 ], [ 351509.184799998998642, 258834.006700001657009 ], [ 351504.493400000035763, 258819.530600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97902606, "LATITUDE": 18.35923897, "OBJECTID_1": 2232, "PARCEL_NO_": "102601022400", "Tax_Legal_": "PEARL 4 S S QTR", "Name": "KRIGGER, JR , RUDOLPH E. & JANET T", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 164400, "Improved_V": 240700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.69465576200002, "SHAPE_Area": 5989.4310332499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353761.427799999713898, 258827.531199999153614 ], [ 353690.972199998795986, 258768.270500000566244 ], [ 353653.635399997234344, 258796.884799998253584 ], [ 353643.810400001704693, 258814.325100000947714 ], [ 353642.986100003123283, 258816.429299999028444 ], [ 353715.135300002992153, 258866.204599998891354 ], [ 353731.351400002837181, 258855.782699998468161 ], [ 353732.974899999797344, 258854.529399998486042 ], [ 353742.717100001871586, 258846.798700001090765 ], [ 353748.404500000178814, 258841.778999999165535 ], [ 353754.098999999463558, 258835.914900001138449 ], [ 353761.427799999713898, 258827.531199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601022000", "MAP": "B9-71-T62", "PARCEL_NAM": "33", "ACRE": "1.01", "LONGITUDE": -64.98097872, "LATITUDE": 18.35927784, "OBJECTID_1": 2228, "PARCEL_NO_": "102601022000", "Tax_Legal_": "PEARL 33 S S QTR", "Name": "HULL, CHARLES C", "Address": "PO BOX 304481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 152600, "Improved_V": 118800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.49785315100002, "SHAPE_Area": 6178.3467330499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353546.877999998629093, 258792.571699999272823 ], [ 353529.49210000038147, 258792.491200000047684 ], [ 353431.912100002169609, 258793.592399999499321 ], [ 353418.867200002074242, 258810.373100001364946 ], [ 353512.75620000064373, 258863.91499999910593 ], [ 353530.842000000178814, 258861.343699999153614 ], [ 353535.075400002300739, 258859.227000001817942 ], [ 353540.578699998557568, 258854.993700001388788 ], [ 353543.542099997401237, 258849.06700000166893 ], [ 353545.658699996769428, 258802.500199999660254 ], [ 353546.877999998629093, 258792.571699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032700", "MAP": "102502032200", "PARCEL_NAM": "5C-20", "ACRE": ".32", "LONGITUDE": -64.98424946, "LATITUDE": 18.35949568, "OBJECTID_1": 2021, "PARCEL_NO_": "102502032700", "Tax_Legal_": "SANTA MARIA 5C-20 & 5D-7 WESTEND QUARTER", "Name": "CARTY, AMOS W", "Address": "PO Box 307223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48400, "Improved_V": 248200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.94060715200001, "SHAPE_Area": 965.58551309699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353172.616499997675419, 258846.565600000321865 ], [ 353168.7449000030756, 258827.746599998325109 ], [ 353161.466499999165535, 258830.220199998468161 ], [ 353146.148400001227856, 258829.883699998259544 ], [ 353129.190700002014637, 258832.700199998915195 ], [ 353131.37219999730587, 258860.582400001585484 ], [ 353172.616499997675419, 258846.565600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501010900", "MAP": "D9-91-T55", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.99701118, "LATITUDE": 18.35837116, "OBJECTID_1": 1963, "PARCEL_NO_": "102501010900", "Tax_Legal_": "SANTA MARIA 2 WEST END QTR", "Name": "FURER, ROBERT W. & BARBARA A", "Address": "PO Box 5160", "City": "SALEM", "State": "Oregon", "Zip": 97304, "Country": "United States", "Land_Value": 354800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 770.83460731299999, "SHAPE_Area": 34820.264364199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351663.156700000166893, 258649.926699999719858 ], [ 351714.019900001585484, 258737.3136 ], [ 351741.832599997520447, 258785.459399998188019 ], [ 351747.397699996829033, 258794.793099999427795 ], [ 351761.699100002646446, 258819.819200001657009 ], [ 351777.598800003528595, 258846.547100000083447 ], [ 351818.133799999952316, 258821.125500001013279 ], [ 351826.249099999666214, 258815.070199999958277 ], [ 351849.034400001168251, 258790.769799999892712 ], [ 351860.468400001525879, 258773.764800000935793 ], [ 351864.579099997878075, 258764.510299999266863 ], [ 351871.938400000333786, 258752.538199998438358 ], [ 351872.7753000035882, 258748.956500001251698 ], [ 351876.850000001490116, 258743.923599999397993 ], [ 351880.138199999928474, 258736.562199998646975 ], [ 351881.76519999653101, 258734.886799998581409 ], [ 351884.223700001835823, 258730.262899998575449 ], [ 351885.060599997639656, 258726.681099999696016 ], [ 351897.326099999248981, 258706.727600000798702 ], [ 351903.072800002992153, 258694.742300000041723 ], [ 351904.699799999594688, 258693.066899999976158 ], [ 351906.3412000015378, 258689.702799998223782 ], [ 351917.789599999785423, 258671.009199999272823 ], [ 351919.443599998950958, 258666.167599998414516 ], [ 351923.521899998188019, 258660.712499998509884 ], [ 351924.364200003445148, 258656.497600000351667 ], [ 351901.4037000015378, 258606.702599998563528 ], [ 351663.156700000166893, 258649.926699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402021600", "MAP": "D9-759-T68", "PARCEL_NAM": "16A-2", "ACRE": ".508", "LONGITUDE": -65.00431812, "LATITUDE": 18.35917851, "OBJECTID_1": 1475, "PARCEL_NO_": "102402021600", "Tax_Legal_": "16A-2 ESTATE HOPE NO. 5 WEST END QUARTER", "Name": "FRANCIS, MARIO", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62400, "Improved_V": 252700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.98095478799999, "SHAPE_Area": 1914.15572421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351030.153599999845028, 258745.015299998223782 ], [ 351007.013999998569489, 258810.898200001567602 ], [ 351027.748000003397465, 258838.087900001555681 ], [ 351049.337899997830391, 258764.804099999368191 ], [ 351030.153599999845028, 258745.015299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98795659, "LATITUDE": 18.35956153, "OBJECTID_1": 1982, "PARCEL_NO_": "102502010300", "Tax_Legal_": "8-2,9,10-REM,ROW 7-REM, 8-REM, 11 SANTA MARIA WEST END QTR", "Name": "BOSCHULTE, LIONEL & OTHERS", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5014700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.0654007919, "SHAPE_Area": 44.253905240400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352761.352099999785423, 258848.47690000012517 ], [ 352757.390699997544289, 258840.211899999529123 ], [ 352754.11150000244379, 258846.517799999564886 ], [ 352754.080899998545647, 258850.106199998408556 ], [ 352755.684600003063679, 258851.174800001084805 ], [ 352761.352099999785423, 258848.47690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102501010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99755909, "LATITUDE": 18.35938055, "OBJECTID_1": 1962, "PARCEL_NO_": "102501010800", "Tax_Legal_": "HOPE 11CA WEST END QTR", "Name": "CANTON, JR., ALVIN O. & OTHERS", "Address": "PO Box 303805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033805, "Country": "United States", "Land_Value": 45100, "Improved_V": 193000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.153268815, "SHAPE_Area": 826.10045227499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351747.397699996829033, 258794.793099999427795 ], [ 351723.768299996852875, 258823.519499998539686 ], [ 351734.11370000243187, 258839.647300001233816 ], [ 351761.699100002646446, 258819.819200001657009 ], [ 351747.397699996829033, 258794.793099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00246903, "LATITUDE": 18.35932278, "OBJECTID_1": 1529, "PARCEL_NO_": "102402033900", "Tax_Legal_": "HOPE 17C WEST END QTR", "Name": "CAMERON, MARIE L", "Address": "44 Northside Pkwy", "City": "Atlanta", "State": "Georgia", "Zip": 30327, "Country": "United States", "Land_Value": 64600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.303498332, "SHAPE_Area": 2251.7583342399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351260.950300000607967, 258819.098299998790026 ], [ 351236.229699999094009, 258786.598700001835823 ], [ 351182.163599997758865, 258791.22239999845624 ], [ 351186.134099997580051, 258798.432100001722574 ], [ 351186.868400000035763, 258806.881799999624491 ], [ 351235.82150000333786, 258834.513599999248981 ], [ 351243.094499997794628, 258832.673200000077486 ], [ 351250.387299999594688, 258828.511100001633167 ], [ 351256.060300000011921, 258825.179999999701977 ], [ 351260.950300000607967, 258819.098299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032200", "MAP": "102502032200", "PARCEL_NAM": "5C-15", "ACRE": null, "LONGITUDE": -64.98551154, "LATITUDE": 18.35950122, "OBJECTID_1": 2017, "PARCEL_NO_": "102502032200", "Tax_Legal_": "SANTA MARIA 5D-2 & 5C-15 WEST END QUARTER", "Name": "CHARLESWELL, CLIFTON&ANNICA&AKILAH&AKEEM&AKEEMA&AKEEL", "Address": "PO Box 12421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 243900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.413842615999997, "SHAPE_Area": 76.678614348500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353006.562799997627735, 258839.718100000172853 ], [ 353020.194600000977516, 258848.695599999278784 ], [ 353020.289899997413158, 258837.508400000631809 ], [ 353006.562799997627735, 258839.718100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00318046, "LATITUDE": 18.35935427, "OBJECTID_1": 1534, "PARCEL_NO_": "102402034400", "Tax_Legal_": "17E HOPE NO. 5 WEST END QTR", "Name": "EDWIN, JUDITH W", "Address": "PO BOX 303445", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64600, "Improved_V": 209900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.94613262, "SHAPE_Area": 1938.57495227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351158.854299999773502, 258782.376800000667572 ], [ 351110.150100000202656, 258820.186099998652935 ], [ 351115.736699998378754, 258826.986800000071526 ], [ 351118.942199997603893, 258829.335099998861551 ], [ 351122.158500000834465, 258830.416900001466274 ], [ 351139.092799998819828, 258830.344399999827147 ], [ 351141.51349999755621, 258830.153099998831749 ], [ 351152.006399996578693, 258828.97239999845624 ], [ 351163.321699999272823, 258825.898600000888109 ], [ 351172.230700001120567, 258821.327500000596046 ], [ 351176.305500000715256, 258816.294599998742342 ], [ 351177.144100002944469, 258812.501800000667572 ], [ 351178.029600001871586, 258803.220899999141693 ], [ 351176.436700001358986, 258800.885800000280142 ], [ 351174.062700003385544, 258795.589099999517202 ], [ 351158.854299999773502, 258782.376800000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502039900", "MAP": "D9-2839-T84", "PARCEL_NAM": "5C-21", "ACRE": ".318", "LONGITUDE": -64.98385637, "LATITUDE": 18.35938343, "OBJECTID_1": 2039, "PARCEL_NO_": "102502039900", "Tax_Legal_": "5A,B,C REM,D,E&F SANTA MARIA NO.1 WEST END QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 497000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.312832883, "SHAPE_Area": 819.635306163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353213.04900000244379, 258833.175500001758337 ], [ 353207.570200003683567, 258813.71000000089407 ], [ 353185.729599997401237, 258821.763900000602007 ], [ 353168.7449000030756, 258827.746599998325109 ], [ 353172.616499997675419, 258846.565600000321865 ], [ 353213.04900000244379, 258833.175500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502039900", "MAP": null, "PARCEL_NAM": "5D-23", "ACRE": null, "LONGITUDE": -64.98344806, "LATITUDE": 18.35940538, "OBJECTID_1": 2039, "PARCEL_NO_": "102502039900", "Tax_Legal_": "5A,B,C REM,D,E&F SANTA MARIA NO.1 WEST END QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 497000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.696159577, "SHAPE_Area": 573.08612700100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353264.805799998342991, 258815.656100001186132 ], [ 353213.04900000244379, 258833.175500001758337 ], [ 353216.169900000095367, 258845.444400001317263 ], [ 353221.832099996507168, 258843.379799999296665 ], [ 353222.623999997973442, 258845.075100000947714 ], [ 353225.0304000005126, 258846.572399999946356 ], [ 353229.866400003433228, 258846.823100000619888 ], [ 353264.805799998342991, 258815.656100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97173272000001, "LATITUDE": 18.35919632, "OBJECTID_1": 2387, "PARCEL_NO_": "102602013900", "Tax_Legal_": "5-6 ESTATE CARET BAY\nLITTLE NORTHSIDE", "Name": "IRMA GOMEZ REVOCABLE LIVING TRUST", "Address": "15044 SW 110th Ter", "City": "Miami", "State": "Florida", "Zip": 33196, "Country": "United States", "Land_Value": 117500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.07753452099999, "SHAPE_Area": 1733.2900766499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354486.21339999884367, 258795.955099999904633 ], [ 354489.652999997138977, 258794.764499999582767 ], [ 354451.919399999082088, 258802.261500000953674 ], [ 354450.860299997031689, 258806.637699998915195 ], [ 354444.034800000488758, 258834.840900000184774 ], [ 354464.079800002276897, 258835.08500000089407 ], [ 354483.526399999856949, 258839.598499998450279 ], [ 354500.26799999922514, 258843.212699998170137 ], [ 354500.259700000286102, 258843.136799998581409 ], [ 354492.726300001144409, 258818.343800000846386 ], [ 354488.824199996888638, 258805.502000000327826 ], [ 354487.933200001716614, 258802.569699998944998 ], [ 354486.21339999884367, 258795.955099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602013400", "MAP": "D9-1812-T81", "PARCEL_NAM": "5-5", "ACRE": ".56", "LONGITUDE": -64.97128863, "LATITUDE": 18.35923605, "OBJECTID_1": 2382, "PARCEL_NO_": "102602013400", "Tax_Legal_": "CARET BAY 5-5 LT NORTHSIDE", "Name": "NEMETH, RICHARD S. & DONNA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111700, "Improved_V": 104600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.59601908499999, "SHAPE_Area": 2282.6876003299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354553.987999998033047, 258839.295299999415874 ], [ 354512.010300002992153, 258790.266600001603365 ], [ 354508.057800002396107, 258793.654399998486042 ], [ 354503.543700002133846, 258795.822799999266863 ], [ 354497.885899998247623, 258798.939399998635054 ], [ 354492.431100003421307, 258801.114500001072884 ], [ 354487.933200001716614, 258802.569699998944998 ], [ 354488.824199996888638, 258805.502000000327826 ], [ 354492.726300001144409, 258818.343800000846386 ], [ 354500.259700000286102, 258843.136799998581409 ], [ 354500.26799999922514, 258843.212699998170137 ], [ 354511.375600002706051, 258845.610599998384714 ], [ 354559.536799997091293, 258850.528599999845028 ], [ 354553.987999998033047, 258839.295299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00347773, "LATITUDE": 18.3591448, "OBJECTID_1": 1533, "PARCEL_NO_": "102402034300", "Tax_Legal_": "HOPE 17F WEST END QTR", "Name": "WATLINGTON, JR. ARTURO & D. S", "Address": "PO Box 261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59300, "Improved_V": 298500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.59093014600001, "SHAPE_Area": 2446.8164440599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351125.971699997782707, 258761.420499999076128 ], [ 351076.619400002062321, 258780.648299999535084 ], [ 351110.150100000202656, 258820.186099998652935 ], [ 351158.854299999773502, 258782.376800000667572 ], [ 351152.450599998235703, 258776.835900001227856 ], [ 351132.386200003325939, 258765.694899998605251 ], [ 351125.971699997782707, 258761.420499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502032000", "MAP": "D9-2839-T84", "PARCEL_NAM": "5C-14", "ACRE": ".309", "LONGITUDE": -64.98572776, "LATITUDE": 18.35929967, "OBJECTID_1": 2015, "PARCEL_NO_": "102502032000", "Tax_Legal_": "SANTA MARIA 5C-14 WEST END QTR.", "Name": "JOSHUA, LAWRENCE", "Address": "PO Box 305092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49600, "Improved_V": 204800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.155757837, "SHAPE_Area": 914.35481772399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353013.076300002634525, 258832.383099999278784 ], [ 352997.270099997520447, 258794.679099999368191 ], [ 352988.314400002360344, 258804.738299999386072 ], [ 352979.374799996614456, 258812.897799998521805 ], [ 352976.120800003409386, 258816.248700000345707 ], [ 352972.859600000083447, 258820.443799998611212 ], [ 352972.823600001633167, 258824.665399998426437 ], [ 352978.420999996364117, 258830.199700001627207 ], [ 352988.870700001716614, 258834.084899999201298 ], [ 352997.733000002801418, 258835.001800000667572 ], [ 353013.076300002634525, 258832.383099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402035500", "MAP": "D9-1213-T74", "PARCEL_NAM": "18-2", "ACRE": "0.49", "LONGITUDE": -65.00216568, "LATITUDE": 18.35904255, "OBJECTID_1": 1542, "PARCEL_NO_": "102402035500", "Tax_Legal_": "18-2 HOPE NO.5 WEST END QTR", "Name": "ROY A WATLINGTON REVOCABLE TRUST", "Address": "PO Box 302321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.881393551, "SHAPE_Area": 2069.2763320600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351288.48309999704361, 258756.315099999308586 ], [ 351258.395099997520447, 258751.785700000822544 ], [ 351222.867600001394749, 258768.652300000190735 ], [ 351222.822999998927116, 258768.741500001400709 ], [ 351236.229699999094009, 258786.598700001835823 ], [ 351260.950300000607967, 258819.098299998790026 ], [ 351264.24210000038147, 258811.314800001680851 ], [ 351265.971600003540516, 258797.607799999415874 ], [ 351267.63459999859333, 258791.710799999535084 ], [ 351268.455300003290176, 258790.028799999505281 ], [ 351282.358599998056889, 258767.133400000631809 ], [ 351283.179300002753735, 258765.451400000602007 ], [ 351284.840400002896786, 258759.765399999916553 ], [ 351288.48309999704361, 258756.315099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502031700", "MAP": "D9-2839-T84", "PARCEL_NAM": "5C-12", "ACRE": ".32", "LONGITUDE": -64.98525094, "LATITUDE": 18.35920403, "OBJECTID_1": 2012, "PARCEL_NO_": "102502031700", "Tax_Legal_": "5C-12 SANTA MARIA NO.1 WEST END QTR", "Name": "CAINES, CASMUS A.", "Address": "PO Box 961294", "City": "Fort Worth", "State": "Texas", "Zip": 76161, "Country": "United States", "Land_Value": 31800, "Improved_V": 156000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.42659861600001, "SHAPE_Area": 1197.5774043399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353027.188199996948242, 258785.002599999308586 ], [ 353032.43860000371933, 258831.275100000202656 ], [ 353055.809000000357628, 258832.943999998271465 ], [ 353059.386699996888638, 258791.598900001496077 ], [ 353045.693800002336502, 258789.798099998384714 ], [ 353027.188199996948242, 258785.002599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502031800", "MAP": "D9-2839-T84", "PARCEL_NAM": "5C-11", "ACRE": ".318", "LONGITUDE": -64.98497726, "LATITUDE": 18.35923909, "OBJECTID_1": 2013, "PARCEL_NO_": "102502031800", "Tax_Legal_": "SANTA MARIA 5C-11 No.1 WESTEND QTR.", "Name": "STAPLETON, EMELDA", "Address": "PO Box 6288", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 48400, "Improved_V": 189200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.757758454, "SHAPE_Area": 1187.11210996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353059.386699996888638, 258791.598900001496077 ], [ 353055.809000000357628, 258832.943999998271465 ], [ 353073.549699999392033, 258832.878100000321865 ], [ 353088.075900003314018, 258831.519299998879433 ], [ 353087.580700002610683, 258794.996100001037121 ], [ 353070.662500001490116, 258793.1689000017941 ], [ 353059.386699996888638, 258791.598900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502031900", "MAP": "D9-2839-T84", "PARCEL_NAM": "5C-13", "ACRE": ".32", "LONGITUDE": -64.98550593, "LATITUDE": 18.35917041, "OBJECTID_1": 2014, "PARCEL_NO_": "102502031900", "Tax_Legal_": "SANTA MARIA 5C-13 WEST END QTR.", "Name": "TOMAR, DENNIS (LIFE ESTATE)", "Address": "1609 Rosedown Way", "City": "Apopka", "State": "Florida", "Zip": 32703, "Country": "United States", "Land_Value": 48400, "Improved_V": 223000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.13797147299999, "SHAPE_Area": 1291.87558599 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353027.188199996948242, 258785.002599999308586 ], [ 353017.566399998962879, 258778.590999998152256 ], [ 353011.112300001084805, 258778.960400000214577 ], [ 353007.872599996626377, 258780.622600000351667 ], [ 353001.343000002205372, 258789.857299998402596 ], [ 352997.270099997520447, 258794.679099999368191 ], [ 353013.076300002634525, 258832.383099999278784 ], [ 353017.917700000107288, 258832.000599998980761 ], [ 353032.43860000371933, 258831.275100000202656 ], [ 353027.188199996948242, 258785.002599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502039900", "MAP": null, "PARCEL_NAM": "5C-22", "ACRE": null, "LONGITUDE": -64.9834709, "LATITUDE": 18.35925066, "OBJECTID_1": 2039, "PARCEL_NO_": "102502039900", "Tax_Legal_": "5A,B,C REM,D,E&F SANTA MARIA NO.1 WEST END QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 497000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.28287193700001, "SHAPE_Area": 973.92798468800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353233.492700003087521, 258799.778900001198053 ], [ 353219.736800000071526, 258805.365800000727177 ], [ 353220.512599997222424, 258808.960799999535084 ], [ 353207.570200003683567, 258813.71000000089407 ], [ 353213.04900000244379, 258833.175500001758337 ], [ 353264.805799998342991, 258815.656100001186132 ], [ 353233.492700003087521, 258799.778900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102501012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99831537, "LATITUDE": 18.35904963, "OBJECTID_1": 1977, "PARCEL_NO_": "102501012600", "Tax_Legal_": "HOPE 11E WEST END QTR.", "Name": "PRINCE, BERNARD", "Address": "BOX 3978", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.04673141800001, "SHAPE_Area": 2672.4287568300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351690.880300000309944, 258803.19649999961257 ], [ 351672.016099996864796, 258745.835700001567602 ], [ 351630.012299999594688, 258754.357900001108646 ], [ 351659.288400001823902, 258820.036499999463558 ], [ 351692.444300003349781, 258808.9087999984622 ], [ 351690.880300000309944, 258803.19649999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502034500", "MAP": "D9-2839-T84", "PARCEL_NAM": "5C-10", "ACRE": ".318", "LONGITUDE": -64.98460494, "LATITUDE": 18.35921939, "OBJECTID_1": 2037, "PARCEL_NO_": "102502034500", "Tax_Legal_": "5C-10 ESTATE SANTA MARIA NO.1 WEST END QTR", "Name": "HORRY, NEFERTITI", "Address": "205 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.294647021, "SHAPE_Area": 1632.45808444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353138.124799996614456, 258825.1739999987185 ], [ 353135.167499996721745, 258793.696800000965595 ], [ 353113.384499996900558, 258794.996199999004602 ], [ 353087.580700002610683, 258794.996100001037121 ], [ 353088.075900003314018, 258831.519299998879433 ], [ 353108.266099996864796, 258827.884899999946356 ], [ 353127.6283999979496, 258826.776799999177456 ], [ 353138.124799996614456, 258825.1739999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402021700", "MAP": "D9-759-T68", "PARCEL_NAM": "16A-1", "ACRE": ".507", "LONGITUDE": -65.0045393, "LATITUDE": 18.3589456, "OBJECTID_1": 1476, "PARCEL_NO_": "102402021700", "Tax_Legal_": "16A-1 ESTATE HOPE NO. 5 WEST END QUARTER", "Name": "TUITT, RUPERT", "Address": "BOX 3569", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76500, "Improved_V": 165600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.76386648299999, "SHAPE_Area": 2417.2000006799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351002.978100001811981, 258716.717500001192093 ], [ 351002.146600000560284, 258719.666000001132488 ], [ 350980.598099999129772, 258788.094999998807907 ], [ 351007.013999998569489, 258810.898200001567602 ], [ 351030.153599999845028, 258745.015299998223782 ], [ 351002.978100001811981, 258716.717500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031500", "MAP": null, "PARCEL_NAM": "10-1", "ACRE": null, "LONGITUDE": -64.99982356, "LATITUDE": 18.35922768, "OBJECTID_1": 1512, "PARCEL_NO_": "102402031500", "Tax_Legal_": "HOPE 10-1 WEST END QTR", "Name": "WHITE, JAMES F. & SHIRLEY A", "Address": "PO Box 304242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 230400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.9919882, "SHAPE_Area": 2525.8463578599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351535.150499999523163, 258815.009700000286102 ], [ 351523.392099998891354, 258775.438999999314547 ], [ 351477.405299998819828, 258778.228999998420477 ], [ 351468.347000002861023, 258800.319699998944998 ], [ 351463.173600003123283, 258808.625900000333786 ], [ 351504.493400000035763, 258819.530600000172853 ], [ 351539.252199999988079, 258828.70380000025034 ], [ 351535.150499999523163, 258815.009700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502034400", "MAP": "D9-2839-T84", "PARCEL_NAM": "5C-9", "ACRE": ".508", "LONGITUDE": -64.98400829000001, "LATITUDE": 18.35913835, "OBJECTID_1": 2036, "PARCEL_NO_": "102502034400", "Tax_Legal_": "5C-9 SANTA MARIA 1 WEST END QTR", "Name": "THOMPSON, LEVAR & SEAN E. SR.", "Address": "PO BOX 9302", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.45917147399999, "SHAPE_Area": 2379.5861616500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353200.574100002646446, 258783.044199999421835 ], [ 353171.4983000010252, 258788.505699999630451 ], [ 353135.167499996721745, 258793.696800000965595 ], [ 353138.124799996614456, 258825.1739999987185 ], [ 353146.19879999756813, 258823.973499998450279 ], [ 353162.326800003647804, 258823.894400000572205 ], [ 353191.445799998939037, 258813.366900000721216 ], [ 353201.961999997496605, 258809.442200001329184 ], [ 353203.628600001335144, 258803.123100001364946 ], [ 353212.524999998509884, 258800.029500000178814 ], [ 353214.915100000798702, 258803.426500000059605 ], [ 353219.736800000071526, 258805.365800000727177 ], [ 353233.492700003087521, 258799.778900001198053 ], [ 353200.574100002646446, 258783.044199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97164618, "LATITUDE": 18.35875237, "OBJECTID_1": 2384, "PARCEL_NO_": "102602013600", "Tax_Legal_": "CARET BAY 5-1 LITTLE NORTHSIDE", "Name": "SCHECHTER, RANDY & LOUANNE", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99100, "Improved_V": 242100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.34642033700001, "SHAPE_Area": 2616.38113028 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354489.652999997138977, 258794.764499999582767 ], [ 354490.975900001823902, 258797.278000000864267 ], [ 354499.804200001060963, 258793.682599999010563 ], [ 354503.411399997770786, 258791.192600000649691 ], [ 354505.263400003314018, 258789.208200000226498 ], [ 354506.851000003516674, 258787.885299999266863 ], [ 354507.777000002563, 258786.562399998307228 ], [ 354508.570699997246265, 258784.710299998521805 ], [ 354508.703000001609325, 258782.593600001186132 ], [ 354509.232199996709824, 258780.080099999904633 ], [ 354509.232199996709824, 258778.09569999948144 ], [ 354509.232199996709824, 258776.111299999058247 ], [ 354509.099899999797344, 258774.259199999272823 ], [ 354508.967600002884865, 258772.010299999266863 ], [ 354508.835299998521805, 258769.8935999982059 ], [ 354508.835299998521805, 258767.909200001507998 ], [ 354508.306199997663498, 258765.660300001502037 ], [ 354507.64469999819994, 258763.543600000441074 ], [ 354507.3800999969244, 258761.559200000017881 ], [ 354506.321800000965595, 258759.574799999594688 ], [ 354505.527999997138977, 258757.855000000447035 ], [ 354504.601999998092651, 258756.135200001299381 ], [ 354502.751000002026558, 258755.346400000154972 ], [ 354502.300499998033047, 258754.012600000947714 ], [ 354501.506800003349781, 258752.528499998152256 ], [ 354495.934500001370907, 258744.039099998772144 ], [ 354489.532600000500679, 258738.287200000137091 ], [ 354486.319899998605251, 258736.78319999948144 ], [ 354479.064900003373623, 258736.512800000607967 ], [ 354473.40089999884367, 258738.788400001823902 ], [ 354466.924800001084805, 258740.258299998939037 ], [ 354451.919399999082088, 258802.261500000953674 ], [ 354489.652999997138977, 258794.764499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601034100", "MAP": "D9-5465-T93", "PARCEL_NAM": "39-A-A-3", "ACRE": ".26", "LONGITUDE": -64.97782377, "LATITUDE": 18.35920381, "OBJECTID_1": 2312, "PARCEL_NO_": "102601034100", "Tax_Legal_": "PEARL 39-A-A-3 SOUTHSIDE QUARTER", "Name": "FRETT, CLAUDIA B", "Address": "Po Box 10821", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40900, "Improved_V": 194700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.35333232100001, "SHAPE_Area": 1203.27089544 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353850.355899997055531, 258800.816899999976158 ], [ 353846.947499997913837, 258793.520899999886751 ], [ 353810.789899997413158, 258811.914700001478195 ], [ 353800.010899998247623, 258817.39809999987483 ], [ 353799.109700001776218, 258817.856600001454353 ], [ 353799.453299999237061, 258819.371599998325109 ], [ 353807.920000001788139, 258836.437300000339746 ], [ 353810.054999999701977, 258835.500999998301268 ], [ 353825.248199999332428, 258829.00789999961853 ], [ 353857.513400003314018, 258815.218600001186132 ], [ 353856.698499999940395, 258813.534400001168251 ], [ 353850.355899997055531, 258800.816899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97855787, "LATITUDE": 18.35884672, "OBJECTID_1": 2233, "PARCEL_NO_": "102601022500", "Tax_Legal_": "3 PEARL NO.2 SOUTHSIDE QTR", "Name": "GOMEZ, MICHAEL A. AND MARY E.", "Address": "4594 Lionshead Cir", "City": "Lithonia", "State": "Georgia", "Zip": 30038, "Country": "United States", "Land_Value": 289500, "Improved_V": 274600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.73866943000002, "SHAPE_Area": 5658.03093661 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353809.575599998235703, 258760.375300001353025 ], [ 353730.778200000524521, 258733.765900000929832 ], [ 353721.824199996888638, 258743.614000000059605 ], [ 353716.133299998939037, 258749.055900000035763 ], [ 353690.972199998795986, 258768.270500000566244 ], [ 353761.427799999713898, 258827.531199999153614 ], [ 353765.502499997615814, 258822.4983000010252 ], [ 353800.591099999845028, 258773.811799999326468 ], [ 353803.857699997723103, 258768.983300000429153 ], [ 353807.945000000298023, 258762.472899999469519 ], [ 353809.575599998235703, 258760.375300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102501012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99792051, "LATITUDE": 18.35893671, "OBJECTID_1": 1980, "PARCEL_NO_": "102501012900", "Tax_Legal_": "HOPE 11F WESTEND QTR", "Name": "SONIA PRINCE (LIFE ESTATE)", "Address": "36 Mapleton Dr", "City": "WILLIAMSVILLE", "State": "New York", "Zip": 14221, "Country": "United States", "Land_Value": 99700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.79583307499999, "SHAPE_Area": 2758.2950281799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351714.019900001585484, 258737.3136 ], [ 351672.016099996864796, 258745.835700001567602 ], [ 351690.880300000309944, 258803.19649999961257 ], [ 351741.832599997520447, 258785.459399998188019 ], [ 351714.019900001585484, 258737.3136 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00273972, "LATITUDE": 18.35900645, "OBJECTID_1": 1530, "PARCEL_NO_": "102402034000", "Tax_Legal_": "HOPE 17D WEST END QTR", "Name": "BENJAMIN, JOAN C", "Address": "PO Box 981", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.41345074500001, "SHAPE_Area": 1969.46962588 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351210.715400002896786, 258752.614900000393391 ], [ 351148.526900000870228, 258764.138199999928474 ], [ 351160.562200002372265, 258771.202799998223782 ], [ 351182.163599997758865, 258791.22239999845624 ], [ 351236.229699999094009, 258786.598700001835823 ], [ 351213.904700003564358, 258756.862799998372793 ], [ 351210.715400002896786, 258752.614900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601031700", "MAP": "D9-5465-T93", "PARCEL_NAM": "39-A-A-2", "ACRE": ".25", "LONGITUDE": -64.97790553, "LATITUDE": 18.35895047, "OBJECTID_1": 2291, "PARCEL_NO_": "102601031700", "Tax_Legal_": "39AA-2 PEARL SOUTHSIDE QUARTER", "Name": "THOMAS, LEON", "Address": "PO Box 305308", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44700, "Improved_V": 185700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.242071888, "SHAPE_Area": 1697.22053456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353842.43299999833107, 258784.286699999123812 ], [ 353825.800800003111362, 258748.897999998182058 ], [ 353820.89639999717474, 258756.668299999088049 ], [ 353820.061300002038479, 258760.038899999111891 ], [ 353810.252499997615814, 258775.579599998891354 ], [ 353806.985799998044968, 258780.407999999821186 ], [ 353800.459799997508526, 258789.220499999821186 ], [ 353795.66610000282526, 258796.055799998342991 ], [ 353796.542900003492832, 258806.539299998432398 ], [ 353798.310699999332428, 258814.333700001239777 ], [ 353800.010899998247623, 258817.39809999987483 ], [ 353810.789899997413158, 258811.914700001478195 ], [ 353846.947499997913837, 258793.520899999886751 ], [ 353845.604299999773502, 258790.645500000566244 ], [ 353842.43299999833107, 258784.286699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00374914, "LATITUDE": 18.35885545, "OBJECTID_1": 1532, "PARCEL_NO_": "102402034200", "Tax_Legal_": "PAR 17G & 17I HOPE 5 EAST END", "Name": "FRANCIS, AKEEM and ARTA WATLINGTON", "Address": "P.O. BOX 4115", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.092878966, "SHAPE_Area": 2066.5745342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351118.056000001728535, 258744.046000000089407 ], [ 351082.689800001680851, 258730.668800000101328 ], [ 351053.461099997162819, 258754.072000000625849 ], [ 351076.619400002062321, 258780.648299999535084 ], [ 351125.971699997782707, 258761.420499999076128 ], [ 351123.581500001251698, 258758.023400001227856 ], [ 351120.395900003612041, 258753.353300001472235 ], [ 351118.808399997651577, 258750.385000001639128 ], [ 351118.025499999523163, 258747.634399998933077 ], [ 351118.056000001728535, 258744.046000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402035000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99974109, "LATITUDE": 18.35884926, "OBJECTID_1": 1540, "PARCEL_NO_": "102402035000", "Tax_Legal_": "HOPE 12G WESTEND QTR.", "Name": "JOSEPH, MANU & DAVIS, ALVIN OH", "Address": "PO Box 9939", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.382123716, "SHAPE_Area": 2225.5498187500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351538.729999996721745, 258773.453600000590086 ], [ 351551.067400000989437, 258745.05689999833703 ], [ 351489.056900002062321, 258735.683400001376867 ], [ 351483.207699999213219, 258759.700199998915195 ], [ 351479.057499997317791, 258773.598400000482798 ], [ 351477.405299998819828, 258778.228999998420477 ], [ 351523.392099998891354, 258775.438999999314547 ], [ 351531.460600003600121, 258774.871700000017881 ], [ 351538.729999996721745, 258773.453600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98094392, "LATITUDE": 18.35880144, "OBJECTID_1": 2230, "PARCEL_NO_": "102601022200", "Tax_Legal_": "PEARL 34 S S QTR", "Name": "HULL, CHARLES", "Address": "PO Box 304881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 164400, "Improved_V": 40300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 313.72562177399999, "SHAPE_Area": 5074.6940978399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353431.912100002169609, 258793.592399999499321 ], [ 353529.49210000038147, 258792.491200000047684 ], [ 353546.877999998629093, 258792.571699999272823 ], [ 353547.140399999916553, 258790.435199998319149 ], [ 353547.987099997699261, 258784.085200000554323 ], [ 353549.468699999153614, 258766.516800001263618 ], [ 353551.585400000214577, 258759.108500000089407 ], [ 353553.913699999451637, 258752.335099998861551 ], [ 353555.432599999010563, 258748.872000001370907 ], [ 353550.837399996817112, 258747.914099998772144 ], [ 353477.572700001299381, 258734.437699999660254 ], [ 353431.912100002169609, 258793.592399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98576233, "LATITUDE": 18.35757602, "OBJECTID_1": 1984, "PARCEL_NO_": "102502020100", "Tax_Legal_": "BONNE ESPERANCE 7 WEST END QTR", "Name": "GOLDEN ACRES", "Address": "PO Box 4906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 271000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 912.90812673699998, "SHAPE_Area": 29806.396331100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353046.360600002110004, 258427.56700000166893 ], [ 353038.328000001609325, 258423.91270000115037 ], [ 352879.855999998748302, 258757.621100001037121 ], [ 352900.787699997425079, 258761.592199999839067 ], [ 352928.128600001335144, 258770.470800001174212 ], [ 352941.798199996352196, 258775.015599999576807 ], [ 352949.029799997806549, 258778.030099999159575 ], [ 352957.943400003015995, 258781.37950000166893 ], [ 352978.762699998915195, 258790.094700001180172 ], [ 352997.448100000619888, 258773.782299999147654 ], [ 353003.151699997484684, 258766.862900000065565 ], [ 353010.566699996590614, 258748.34739999845624 ], [ 353012.197300001978874, 258746.249800000339746 ], [ 353018.748499996960163, 258734.482200000435114 ], [ 353020.411499999463558, 258728.585200000554323 ], [ 353022.861000001430511, 258725.016600001603365 ], [ 353029.460699997842312, 258707.549899999052286 ], [ 353024.6858000010252, 258700.122499998658895 ], [ 353005.604000002145767, 258668.302299998700619 ], [ 353001.67679999768734, 258656.026700001209974 ], [ 353009.962899997830391, 258629.9189000017941 ], [ 353016.510499998927116, 258618.573499999940395 ], [ 353018.956399999558926, 258615.427099999040365 ], [ 353020.585199996829033, 258613.540600001811981 ], [ 353043.356100000441074, 258590.928800001740456 ], [ 353087.173900000751019, 258558.779100000858307 ], [ 353087.197300001978874, 258556.035000000149012 ], [ 353072.317900002002716, 258504.195300001651049 ], [ 353066.869699999690056, 258481.141600001603365 ], [ 353060.658399999141693, 258453.015299998223782 ], [ 353059.087099999189377, 258448.147300001233816 ], [ 353055.13289999961853, 258439.037900000810623 ], [ 353054.342799998819828, 258437.131599999964237 ], [ 353052.762500002980232, 258433.318900000303984 ], [ 353047.965999998152256, 258428.424499999731779 ], [ 353046.360600002110004, 258427.56700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102501010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99911816, "LATITUDE": 18.35826639, "OBJECTID_1": 1959, "PARCEL_NO_": "102501010500", "Tax_Legal_": "HOPE 12 WEST END QTR", "Name": "JOSEPH, NATALIE & OTHERS", "Address": "PO Box 75", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 334800, "Improved_V": 84000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 703.58225798900003, "SHAPE_Area": 24535.657228399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351663.156700000166893, 258649.926699999719858 ], [ 351658.311599999666214, 258650.7314000017941 ], [ 351468.302400000393391, 258616.245700001716614 ], [ 351468.662799999117851, 258668.599899999797344 ], [ 351468.459600001573563, 258692.451799999922514 ], [ 351473.288500003516674, 258693.546799998730421 ], [ 351478.103000000119209, 258696.330400001257658 ], [ 351481.310199998319149, 258698.467599999159575 ], [ 351485.313000001013279, 258701.87779999896884 ], [ 351490.089800000190735, 258709.094099998474121 ], [ 351492.431400001049042, 258718.19029999896884 ], [ 351491.544100001454353, 258727.682199999690056 ], [ 351489.056900002062321, 258735.683400001376867 ], [ 351551.067400000989437, 258745.05689999833703 ], [ 351538.729999996721745, 258773.453600000590086 ], [ 351630.012299999594688, 258754.357900001108646 ], [ 351672.016099996864796, 258745.835700001567602 ], [ 351714.019900001585484, 258737.3136 ], [ 351663.156700000166893, 258649.926699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98501376, "LATITUDE": 18.35880109, "OBJECTID_1": 2010, "PARCEL_NO_": "102502031300", "Tax_Legal_": "SANTA MARIA 5C-6 WESTEND QTR.", "Name": "LEWIS, CLAUDETTE", "Address": "PO Box 4072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40600, "Improved_V": 206200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.89386068, "SHAPE_Area": 1569.2286931199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353090.082400001585484, 258785.30629999935627 ], [ 353084.03999999910593, 258737.338599998503923 ], [ 353067.055299997329712, 258743.321299999952316 ], [ 353061.414700001478195, 258742.852899998426437 ], [ 353039.331399999558926, 258779.402499999850988 ], [ 353067.514600001275539, 258784.066100001335144 ], [ 353084.438199996948242, 258785.260099999606609 ], [ 353090.082400001585484, 258785.30629999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98470908, "LATITUDE": 18.35875486, "OBJECTID_1": 2009, "PARCEL_NO_": "102502031200", "Tax_Legal_": "SANTA MARIA 5C-7 WEST END QTR.", "Name": "PHILLIP, FRANK & MONIQUE", "Address": "511 Winter Span Ct", "City": "Bel Air", "State": "Maryland", "Zip": 21015, "Country": "United States", "Land_Value": 35700, "Improved_V": 222300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.24461979599999, "SHAPE_Area": 1448.1236582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353120.727600000798702, 258784.923799999058247 ], [ 353107.494999997317791, 258729.086800001561642 ], [ 353084.03999999910593, 258737.338599998503923 ], [ 353090.082400001585484, 258785.30629999935627 ], [ 353106.210400000214577, 258785.227200001478195 ], [ 353116.694300003349781, 258785.10190000012517 ], [ 353120.727600000798702, 258784.923799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98431555000001, "LATITUDE": 18.35862769, "OBJECTID_1": 2008, "PARCEL_NO_": "102502031100", "Tax_Legal_": "SANTA MARIA 5C-8 WEST END QTR.", "Name": "WILLIAMS, IAN E", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47500, "Improved_V": 187200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.07133891800001, "SHAPE_Area": 4132.7241734600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353161.730200000107288, 258704.621599998325109 ], [ 353126.219999998807907, 258708.130699999630451 ], [ 353125.35980000346899, 258714.456500001251698 ], [ 353122.089599996805191, 258719.706999998539686 ], [ 353114.782399997115135, 258725.557799998670816 ], [ 353107.494999997317791, 258729.086800001561642 ], [ 353120.727600000798702, 258784.923799999058247 ], [ 353150.581000000238419, 258782.846099998801947 ], [ 353161.079199999570847, 258781.032200001180172 ], [ 353163.514300003647804, 258779.152300000190735 ], [ 353165.166500002145767, 258774.521699998527765 ], [ 353178.897200003266335, 258771.889899998903275 ], [ 353161.730200000107288, 258704.621599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98529288, "LATITUDE": 18.35866976, "OBJECTID_1": 2011, "PARCEL_NO_": "102502031400", "Tax_Legal_": "5C-5 ESTATE SNATA MARIA NO.1 WESTEND QTR.", "Name": "CAINES, CASMUS A.", "Address": "PO Box 961294", "City": "Fort Worth", "State": "Texas", "Zip": 76161, "Country": "United States", "Land_Value": 35700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.61360754899999, "SHAPE_Area": 1283.02228051 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353039.331399999558926, 258779.402499999850988 ], [ 353061.414700001478195, 258742.852899998426437 ], [ 353054.982199996709824, 258740.689300000667572 ], [ 353050.986599996685982, 258736.434799998998642 ], [ 353048.5929000005126, 258733.459899999201298 ], [ 353047.001800000667572, 258730.913699999451637 ], [ 353040.711400002241135, 258712.07490000128746 ], [ 353038.256499998271465, 258716.276700001209974 ], [ 353029.174800001084805, 258741.111400000751019 ], [ 353022.593099996447563, 258756.467399999499321 ], [ 353025.688799999654293, 258771.691399998962879 ], [ 353030.487199999392033, 258776.374800000339746 ], [ 353039.331399999558926, 258779.402499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00302075, "LATITUDE": 18.35876206, "OBJECTID_1": 1531, "PARCEL_NO_": "102402034100", "Tax_Legal_": "HOPE 17H WEST END QTR", "Name": "GEORGES, CATHERINE W", "Address": "836 Tilden St", "City": "Bronx", "State": "New York", "Zip": 10467, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.62110259, "SHAPE_Area": 2033.21075486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351208.321699999272823, 258749.640000000596046 ], [ 351190.778800003230572, 258726.487199999392033 ], [ 351184.295900002121925, 258730.233800001442432 ], [ 351177.832900002598763, 258731.658599998801947 ], [ 351149.610100001096725, 258731.638700000941753 ], [ 351135.891999997198582, 258732.793000001460314 ], [ 351131.038000002503395, 258734.653099998831749 ], [ 351128.59740000218153, 258737.166200000792742 ], [ 351126.954199999570847, 258740.741399999707937 ], [ 351128.507500000298023, 258747.720199998468161 ], [ 351130.885099999606609, 258752.594799999147654 ], [ 351134.083400003612041, 258755.787300001829863 ], [ 351148.526900000870228, 258764.138199999928474 ], [ 351210.715400002896786, 258752.614900000393391 ], [ 351208.321699999272823, 258749.640000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601022700", "MAP": "B9-71-T62", "PARCEL_NAM": "17", "ACRE": "1.11", "LONGITUDE": -64.97989593, "LATITUDE": 18.35857125, "OBJECTID_1": 2235, "PARCEL_NO_": "102601022700", "Tax_Legal_": "PEARL 17 S S QTR", "Name": "MESCUS, JANET A", "Address": "PO Box 306394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 239400, "Improved_V": 233600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.39339961500002, "SHAPE_Area": 4199.9760307799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353628.635399997234344, 258702.532400000840425 ], [ 353624.611100003123283, 258701.655099999159575 ], [ 353620.57320000231266, 258701.856800001114607 ], [ 353603.867200002074242, 258709.366700001060963 ], [ 353596.882200002670288, 258712.330099999904633 ], [ 353591.590499997138977, 258715.293400000780821 ], [ 353579.94879999756813, 258723.125100001692772 ], [ 353573.332599997520447, 258732.116300001740456 ], [ 353571.693800002336502, 258734.343400001525879 ], [ 353564.401000000536442, 258747.592000000178814 ], [ 353636.10980000346899, 258796.655999999493361 ], [ 353636.816200003027916, 258783.44819999858737 ], [ 353636.24719999730587, 258755.579199999570847 ], [ 353639.005999997258186, 258715.705099999904633 ], [ 353637.431100003421307, 258711.259199999272823 ], [ 353635.84009999781847, 258708.713100001215935 ], [ 353633.4408999979496, 258706.371399998664856 ], [ 353628.635399997234344, 258702.532400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00393767, "LATITUDE": 18.35856128, "OBJECTID_1": 1504, "PARCEL_NO_": "102402030700", "Tax_Legal_": "HOPE 21-2 WEST END QTR", "Name": "PERKINS, ALEXIUS", "Address": "PO Box 305230", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.06769920900001, "SHAPE_Area": 1893.29936918 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351049.067400000989437, 258701.896000001579523 ], [ 351042.2753000035882, 258741.948100000619888 ], [ 351053.461099997162819, 258754.072000000625849 ], [ 351082.689800001680851, 258730.668800000101328 ], [ 351112.730099998414516, 258706.638900000602007 ], [ 351082.946900002658367, 258700.484499998390675 ], [ 351081.273199997842312, 258707.647999998182058 ], [ 351075.611000001430511, 258709.712600000202656 ], [ 351071.590199999511242, 258708.413100000470877 ], [ 351069.192900002002716, 258705.860399998724461 ], [ 351049.067400000989437, 258701.896000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402032900", "MAP": "D9-1213-T74", "PARCEL_NAM": "18-1", "ACRE": "0.62", "LONGITUDE": -65.00259727, "LATITUDE": 18.35857564, "OBJECTID_1": 1521, "PARCEL_NO_": "102402032900", "Tax_Legal_": "18-1 HOPE NO.5 WEST END QTR", "Name": "ROY A WATLINGTON REVOCABLE TRUST", "Address": "PO Box 302321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50700, "Improved_V": 180800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.48275640700001, "SHAPE_Area": 1943.1978824800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351233.56139999628067, 258702.350499998778105 ], [ 351221.627300001680851, 258702.25279999896884 ], [ 351196.624399997293949, 258702.892499998211861 ], [ 351189.356799997389317, 258704.099599998444319 ], [ 351178.023500002920628, 258709.284200001507998 ], [ 351185.197599999606609, 258719.053199999034405 ], [ 351190.778800003230572, 258726.487199999392033 ], [ 351208.321699999272823, 258749.640000000596046 ], [ 351210.715400002896786, 258752.614900000393391 ], [ 351213.904700003564358, 258756.862799998372793 ], [ 351222.822999998927116, 258768.741500001400709 ], [ 351222.867600001394749, 258768.652300000190735 ], [ 351227.082299999892712, 258742.521200001239777 ], [ 351233.56139999628067, 258702.350499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402035600", "MAP": "D9-1213-T74", "PARCEL_NAM": "18-3", "ACRE": "0.45", "LONGITUDE": -65.00228373, "LATITUDE": 18.3586335, "OBJECTID_1": 1543, "PARCEL_NO_": "102402035600", "Tax_Legal_": "18-3 HOPE NO.5 WEST END QTR", "Name": "ROY A WATLINGTON REVOCABLE TRUST", "Address": "PO Box 302321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.771212031, "SHAPE_Area": 1836.3139639399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351250.654500000178814, 258702.49040000140667 ], [ 351233.56139999628067, 258702.350499998778105 ], [ 351227.082299999892712, 258742.521200001239777 ], [ 351222.867600001394749, 258768.652300000190735 ], [ 351258.395099997520447, 258751.785700000822544 ], [ 351259.921999998390675, 258738.851599998772144 ], [ 351264.105700001120567, 258703.413499999791384 ], [ 351250.654500000178814, 258702.49040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00147557, "LATITUDE": 18.35838653, "OBJECTID_1": 1517, "PARCEL_NO_": "102402032000", "Tax_Legal_": "HOPE 19-1 WEST END QTR", "Name": "ALTIERI, OLGA C", "Address": "PO Box 6863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.696259158, "SHAPE_Area": 2717.5813985200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351314.214699998497963, 258719.268800001591444 ], [ 351340.750799998641014, 258748.190200001001358 ], [ 351351.154100000858307, 258737.2989999987185 ], [ 351356.868400000035763, 258729.113099999725819 ], [ 351359.357500001788139, 258720.900800000876188 ], [ 351329.206699997186661, 258663.236600000411272 ], [ 351293.493400000035763, 258690.597600001841784 ], [ 351305.472999997437, 258704.205600000917912 ], [ 351310.262299999594688, 258709.944299999624491 ], [ 351311.835400000214577, 258714.601300001144409 ], [ 351314.214699998497963, 258719.264800000935793 ], [ 351314.214699998497963, 258719.268800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033100", "MAP": "D9-5433-T92", "PARCEL_NAM": "38B-6", "ACRE": ".269", "LONGITUDE": -64.97735534, "LATITUDE": 18.35921167, "OBJECTID_1": 2302, "PARCEL_NO_": "102601033100", "Tax_Legal_": "PEARL 38B-6 REM. & 38A REM. SOUTHSIDE QUARTER", "Name": "GEORGE, ELSTON A. & URSULA", "Address": "PO Box 7545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.92996233599999, "SHAPE_Area": 1221.20188648 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353900.130199998617172, 258795.942600000649691 ], [ 353879.5625, 258803.52479999884963 ], [ 353867.158699996769428, 258796.348499998450279 ], [ 353856.698499999940395, 258813.534400001168251 ], [ 353865.415100000798702, 258831.548700001090765 ], [ 353871.750500001013279, 258845.110500000417233 ], [ 353896.971000000834465, 258818.93019999936223 ], [ 353896.992499999701977, 258816.397300001233816 ], [ 353900.130199998617172, 258795.942600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502073100", "MAP": "A9-743-T009", "PARCEL_NAM": "7-3", "ACRE": "6.037", "LONGITUDE": -64.99469226, "LATITUDE": 18.35809945, "OBJECTID_1": 2052, "PARCEL_NO_": "102502073100", "Tax_Legal_": "7-3 SANTA MARIA WEST END QTR", "Name": "L & L INVESTMENTS REV. TRST.", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 261300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 565.75842257, "SHAPE_Area": 12311.0095599 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352002.861299999058247, 258718.357099998742342 ], [ 352013.363200001418591, 258716.121100001037121 ], [ 352027.867799997329712, 258717.295200001448393 ], [ 352043.95269999653101, 258722.282000001519918 ], [ 352059.25110000371933, 258724.940400000661612 ], [ 352088.21000000089407, 258733.199000000953674 ], [ 352117.16889999806881, 258741.457499999552965 ], [ 352135.674500003457069, 258746.252999998629093 ], [ 352173.510099999606609, 258753.739900000393391 ], [ 351991.082400001585484, 258586.538400001823902 ], [ 351990.258100003004074, 258588.642499998211861 ], [ 351986.978900000452995, 258594.948499999940395 ], [ 351983.694300003349781, 258601.887699998915195 ], [ 351980.43129999935627, 258606.293999999761581 ], [ 351972.236900001764297, 258621.636700000613928 ], [ 351970.579300001263618, 258626.900499999523163 ], [ 351971.328100003302097, 258633.66160000115633 ], [ 351975.255400002002716, 258645.937199998646975 ], [ 351981.590800002217293, 258659.499000001698732 ], [ 351995.744800001382828, 258701.833599999547005 ], [ 352002.861299999058247, 258718.357099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00329959, "LATITUDE": 18.35845561, "OBJECTID_1": 1506, "PARCEL_NO_": "102402030900", "Tax_Legal_": "PAR 17 REM HOPE 5 WEST END QTR", "Name": "CHELSEA CONNELL", "Address": "PO Box 261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040261, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.542674261, "SHAPE_Area": 2844.5893486800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351172.442199997603893, 258701.850299999117851 ], [ 351152.512800000607967, 258674.878299999982119 ], [ 351112.730099998414516, 258706.638900000602007 ], [ 351082.689800001680851, 258730.668800000101328 ], [ 351118.056000001728535, 258744.046000000089407 ], [ 351118.104599997401237, 258738.346900001168251 ], [ 351119.753200002014637, 258734.1385000012815 ], [ 351123.01799999922514, 258729.521200001239777 ], [ 351129.50620000064373, 258725.14130000025034 ], [ 351151.30009999871254, 258722.575500000268221 ], [ 351176.297499999403954, 258722.568999998271465 ], [ 351181.952500000596046, 258721.348700001835823 ], [ 351185.197599999606609, 258719.053199999034405 ], [ 351178.023500002920628, 258709.284200001507998 ], [ 351172.442199997603893, 258701.850299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98653461000001, "LATITUDE": 18.3571883, "OBJECTID_1": 1985, "PARCEL_NO_": "102502020200", "Tax_Legal_": "BONNE ESPERANCE 15 WEST END QTR", "Name": "GOLDEN ACRES", "Address": "PO Box 4906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 417700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 991.55266252700005, "SHAPE_Area": 33776.363893499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353038.328000001609325, 258423.91270000115037 ], [ 353013.335900001227856, 258423.285999998450279 ], [ 352998.034000001847744, 258421.049800001084805 ], [ 352986.776199996471405, 258417.369100000709295 ], [ 352974.719200000166893, 258412.837400000542402 ], [ 352971.506599999964237, 258411.333500001579523 ], [ 352958.663099996745586, 258404.473299998790026 ], [ 352942.249200001358986, 258438.114000000059605 ], [ 352924.193800002336502, 258475.118700001388788 ], [ 352903.676299996674061, 258517.16950000077486 ], [ 352895.469400003552437, 258533.989799998700619 ], [ 352857.578100003302097, 258533.046399999409914 ], [ 352841.986599996685982, 258564.7939000017941 ], [ 352817.362099997699261, 258615.677000001072884 ], [ 352849.486900001764297, 258630.927600000053644 ], [ 352789.563400000333786, 258755.193399999290705 ], [ 352820.251800000667572, 258749.745000001043081 ], [ 352829.925700001418591, 258750.035300001502037 ], [ 352849.262900002300739, 258751.88230000063777 ], [ 352879.855999998748302, 258757.621100001037121 ], [ 353038.328000001609325, 258423.91270000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0043494, "LATITUDE": 18.35843654, "OBJECTID_1": 1503, "PARCEL_NO_": "102402030600", "Tax_Legal_": "HOPE ESTATE 21-1 WEST END QTR", "Name": "MC CLEAN, EJNAR EMMANUEL", "Address": "PO Box 7903", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48700, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.47108752700001, "SHAPE_Area": 1355.7849757700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351042.2753000035882, 258741.948100000619888 ], [ 351049.067400000989437, 258701.896000001579523 ], [ 351043.432199999690056, 258700.794399999082088 ], [ 351026.5608000010252, 258693.479100000113249 ], [ 350995.18469999730587, 258684.989700000733137 ], [ 350991.946900002658367, 258686.440799999982119 ], [ 350992.718999996781349, 258690.457899998873472 ], [ 350994.310099996626377, 258693.004099998623133 ], [ 351005.513899996876717, 258703.017099998891354 ], [ 351042.2753000035882, 258741.948100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602014100", "MAP": "A9-162-T71", "PARCEL_NAM": "5-3", "ACRE": ".66", "LONGITUDE": -64.97091137, "LATITUDE": 18.35847672, "OBJECTID_1": 2389, "PARCEL_NO_": "102602014100", "Tax_Legal_": "CARET BAY 5-3 LT. NORTHSIDE", "Name": "THOMPSON, JR. JOHN & MARJORIE", "Address": "112 Hillside Rd", "City": "Harrisburg", "State": "Pennsylvania", "Zip": 17104, "Country": "United States", "Land_Value": 126300, "Improved_V": 209400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.59847214799998, "SHAPE_Area": 3501.05781845 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354608.231299996376038, 258719.204799998551607 ], [ 354606.735600002110004, 258705.471500001847744 ], [ 354568.105599999427795, 258719.716699998825788 ], [ 354504.813000001013279, 258743.05629999935627 ], [ 354509.580700002610683, 258751.328000001609325 ], [ 354511.936700001358986, 258758.735500000417233 ], [ 354512.167499996721745, 258759.9364 ], [ 354514.259300000965595, 258763.675900001078844 ], [ 354514.259300000965595, 258765.924800001084805 ], [ 354514.788500003516674, 258768.967599999159575 ], [ 354515.053099997341633, 258771.877999998629093 ], [ 354515.3175999969244, 258773.333200000226498 ], [ 354549.746399998664856, 258763.230500001460314 ], [ 354588.034100003540516, 258751.995400000363588 ], [ 354591.839000001549721, 258750.3125 ], [ 354599.149700000882149, 258744.039500001817942 ], [ 354604.865800000727177, 258735.642499998211861 ], [ 354608.20440000295639, 258722.370999999344349 ], [ 354608.231299996376038, 258719.204799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98063563, "LATITUDE": 18.35833104, "OBJECTID_1": 2236, "PARCEL_NO_": "102601022800", "Tax_Legal_": "PEARL 35 SOUTHSIDE QTR.", "Name": "BAPTISTE, VALENTINA & ANTOINET", "Address": "1613 Sixth St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.87527279400001, "SHAPE_Area": 4177.58128055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353580.224299997091293, 258705.935899998992682 ], [ 353520.790899999439716, 258678.00730000063777 ], [ 353477.572700001299381, 258734.437699999660254 ], [ 353550.837399996817112, 258747.914099998772144 ], [ 353555.432599999010563, 258748.872000001370907 ], [ 353559.205399997532368, 258740.270100001245737 ], [ 353566.190399996936321, 258728.628400001674891 ], [ 353571.9054000005126, 258722.278400000184774 ], [ 353578.043799996376038, 258716.140099998563528 ], [ 353585.680900000035763, 258711.587200000882149 ], [ 353580.224299997091293, 258705.935899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9850438, "LATITUDE": 18.35837462, "OBJECTID_1": 2007, "PARCEL_NO_": "102502031000", "Tax_Legal_": "SANTA MARIA 5C-4 WESTEND QTR.", "Name": "PENN, LOUIS & SUSAN", "Address": "PO BOX 303737", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40900, "Improved_V": 270600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.30854213699999, "SHAPE_Area": 1387.9565529399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353088.926500000059605, 258731.679000001400709 ], [ 353073.955399997532368, 258690.604400001466274 ], [ 353062.607699997723103, 258697.477600000798702 ], [ 353048.846400000154972, 258703.697700001299381 ], [ 353043.974399998784065, 258707.668600000441074 ], [ 353047.093500003218651, 258720.148699998855591 ], [ 353047.8800999969244, 258722.477200001478195 ], [ 353051.037000000476837, 258730.524599999189377 ], [ 353055.021799996495247, 258736.0456000007689 ], [ 353061.443499997258186, 258739.475699998438358 ], [ 353068.702100001275539, 258739.324000000953674 ], [ 353088.926500000059605, 258731.679000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022300", "MAP": "D9-9318-T019", "PARCEL_NAM": "22A-1-2", "ACRE": "0.48", "LONGITUDE": -65.00529617, "LATITUDE": 18.35837465, "OBJECTID_1": 1482, "PARCEL_NO_": "102402022300", "Tax_Legal_": "22A-1-2 HOPE NO.5 WEST END QTR", "Name": "REESE, P COURTNEY", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.848519794, "SHAPE_Area": 1965.79241336 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350946.483599998056889, 258683.03830000013113 ], [ 350887.923600003123283, 258686.644900001585484 ], [ 350895.823100000619888, 258705.919100001454353 ], [ 350899.026799999177456, 258708.478399999439716 ], [ 350903.054700002074242, 258708.933600001037121 ], [ 350907.012599997222424, 258717.620799999684095 ], [ 350956.223800003528595, 258718.678700000047684 ], [ 350959.394400000572205, 258718.746899999678135 ], [ 350949.55969999730587, 258682.897599998861551 ], [ 350946.483599998056889, 258683.03830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00116874, "LATITUDE": 18.35805361, "OBJECTID_1": 1518, "PARCEL_NO_": "102402032100", "Tax_Legal_": "HOPE 19-5 WEST END QUARTER", "Name": "RICHARDSON, ROY A. & ELBA E. C", "Address": "PO Box 10574", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68800, "Improved_V": 193800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.304877245, "SHAPE_Area": 2808.58693528 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351395.353100001811981, 258660.400499999523163 ], [ 351377.086599998176098, 258627.531500000506639 ], [ 351329.206699997186661, 258663.236600000411272 ], [ 351359.357500001788139, 258720.900800000876188 ], [ 351360.997000001370907, 258717.747800000011921 ], [ 351364.297799997031689, 258708.908900000154972 ], [ 351369.261600002646446, 258694.173000000417233 ], [ 351374.194700002670288, 258683.025400001555681 ], [ 351391.299900002777576, 258662.900400001555681 ], [ 351395.353100001811981, 258660.400499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402021800", "MAP": "D9-5806-T94", "PARCEL_NAM": "REM 22A", "ACRE": null, "LONGITUDE": -65.00612383000001, "LATITUDE": 18.3583907, "OBJECTID_1": 1477, "PARCEL_NO_": "102402021800", "Tax_Legal_": "REM 22A HOPE WEST END QTR", "Name": "DEWINDT, ALCENTA", "Address": "PO BOX 12057", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.88441873400001, "SHAPE_Area": 2954.7079972699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350881.469499997794628, 258687.014299999922514 ], [ 350787.931900002062321, 258686.881999999284744 ], [ 350787.912100002169609, 258689.20380000025034 ], [ 350786.078299999237061, 258715.153299998492002 ], [ 350894.919699996709824, 258717.310699999332428 ], [ 350881.469499997794628, 258687.014299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98473651, "LATITUDE": 18.35822694, "OBJECTID_1": 2006, "PARCEL_NO_": "102502030900", "Tax_Legal_": "SANTA MARIA 5C-3 WEST END QTR.", "Name": "DIXON, JOYCE", "Address": "PO Box 9429", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60600, "Improved_V": 334700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.95895109, "SHAPE_Area": 1828.7914542000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353122.186700001358986, 258708.308800000697374 ], [ 353106.39130000025034, 258669.338300000876188 ], [ 353091.805699996650219, 258677.66270000115037 ], [ 353073.955399997532368, 258690.604400001466274 ], [ 353088.926500000059605, 258731.679000001400709 ], [ 353105.913000002503395, 258725.485300000756979 ], [ 353108.342699997127056, 258724.238600000739098 ], [ 353114.82379999756813, 258720.703000001609325 ], [ 353120.511100001633167, 258715.683299999684095 ], [ 353121.342600002884865, 258712.7347999997437 ], [ 353122.186700001358986, 258708.308800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601023500", "MAP": "B9-71-T62", "PARCEL_NAM": "20", "ACRE": "0.80", "LONGITUDE": -64.97877712, "LATITUDE": 18.35787333, "OBJECTID_1": 2243, "PARCEL_NO_": "102601023500", "Tax_Legal_": "PEARL 20 S S QTR", "Name": "WILLIAMS, CYRIL & ISA", "Address": "PO Box 10516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 133900, "Improved_V": 177500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.27631625199999, "SHAPE_Area": 3387.0878885100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353678.862499997019768, 258668.883099999278784 ], [ 353747.818300001323223, 258702.139400001615286 ], [ 353750.927199997007847, 258699.400800000876188 ], [ 353769.156499996781349, 258675.581300001591444 ], [ 353768.228500001132488, 258664.475400000810623 ], [ 353758.910800002515316, 258657.180399999022484 ], [ 353739.34910000115633, 258643.11540000140667 ], [ 353720.173000000417233, 258632.028999999165535 ], [ 353678.862499997019768, 258668.883099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00081128, "LATITUDE": 18.35824819, "OBJECTID_1": 1516, "PARCEL_NO_": "102402031900", "Tax_Legal_": "HOPE 19-8 WEST END QTR", "Name": "JACKSON, GLADYS TODMAN,OSWIN,FLORISE J NEWTON & OTHERS", "Address": "BOX 1911", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.55045237300001, "SHAPE_Area": 1475.5306019300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351424.033299997448921, 258701.376299999654293 ], [ 351411.475699998438358, 258660.954599998891354 ], [ 351398.506399996578693, 258668.870000001043081 ], [ 351387.122699998319149, 258679.964800000190735 ], [ 351383.044399999082088, 258685.419900000095367 ], [ 351378.935500003397465, 258694.463300000876188 ], [ 351377.283299997448921, 258699.093800000846386 ], [ 351376.451800003647804, 258702.042300000786781 ], [ 351375.584399998188019, 258709.212400000542402 ], [ 351377.974600002169609, 258712.609499998390675 ], [ 351382.803400002419949, 258713.704500000923872 ], [ 351394.129600003361702, 258709.364199999719858 ], [ 351424.033299997448921, 258701.376299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402035800", "MAP": "D9-1213-T74", "PARCEL_NAM": "18-9", "ACRE": "0.26", "LONGITUDE": -65.00290954, "LATITUDE": 18.35816062, "OBJECTID_1": 1545, "PARCEL_NO_": "102402035800", "Tax_Legal_": "18-9 HOPE NO.5 WEST END QTR", "Name": "ROY A WATLINGTON REVOCABLE TRUST", "Address": "PO Box 302321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.30858725300001, "SHAPE_Area": 1342.76707831 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351204.827799998223782, 258686.49439999833703 ], [ 351178.501800000667572, 258653.137200001627207 ], [ 351152.512800000607967, 258674.878299999982119 ], [ 351172.442199997603893, 258701.850299999117851 ], [ 351181.349399998784065, 258697.490200001746416 ], [ 351188.624200001358986, 258695.438799999654293 ], [ 351195.898999996483326, 258693.38740000128746 ], [ 351199.950300000607967, 258691.098499998450279 ], [ 351204.827799998223782, 258686.49439999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00043472, "LATITUDE": 18.35810552, "OBJECTID_1": 1522, "PARCEL_NO_": "102402033100", "Tax_Legal_": "HOPE 19-9 WEST END QTR", "Name": "BARRY, JUANITO & HILDA M", "Address": "PO Box 301982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65000, "Improved_V": 112700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.27851314, "SHAPE_Area": 2054.8294934400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351468.662799999117851, 258668.599899999797344 ], [ 351430.141400001943111, 258646.964099999517202 ], [ 351417.154100000858307, 258656.990299999713898 ], [ 351411.475699998438358, 258660.954599998891354 ], [ 351424.033299997448921, 258701.376299999654293 ], [ 351455.554999999701977, 258692.768300000578165 ], [ 351468.459600001573563, 258692.451799999922514 ], [ 351468.662799999117851, 258668.599899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602014000", "MAP": "A9-162-T71", "PARCEL_NAM": "5-2", "ACRE": ".59", "LONGITUDE": -64.97117627, "LATITUDE": 18.35827855, "OBJECTID_1": 2388, "PARCEL_NO_": "102602014000", "Tax_Legal_": "CARET BAY 5-2 LITTLE NORTHSIDE", "Name": "HACKL PROPERTIES LLC", "Address": "2094 Wildwood Dr", "City": "Suamico", "State": "Wisconsin", "Zip": 54173, "Country": "United States", "Land_Value": 123300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.082159155, "SHAPE_Area": 2356.9834771800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354606.735600002110004, 258705.471500001847744 ], [ 354506.837700001895428, 258704.707299999892712 ], [ 354501.886200003325939, 258707.990800000727177 ], [ 354493.785300001502037, 258712.357500001788139 ], [ 354488.094400003552437, 258717.799300000071526 ], [ 354487.262900002300739, 258720.747800000011921 ], [ 354486.442199997603893, 258722.429900001734495 ], [ 354487.212499998509884, 258726.657999999821186 ], [ 354488.805399999022484, 258728.993099998682737 ], [ 354497.624499998986721, 258734.975900001823902 ], [ 354504.813000001013279, 258743.05629999935627 ], [ 354568.105599999427795, 258719.716699998825788 ], [ 354606.735600002110004, 258705.471500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98436848, "LATITUDE": 18.35804653, "OBJECTID_1": 2005, "PARCEL_NO_": "102502030800", "Tax_Legal_": "SANTA MARIA 5C-2 WESTEND QTR.", "Name": "WILLIAMS, IRA & BLONDELL", "Address": "PO Box 301794", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54000, "Improved_V": 232000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.02209787800001, "SHAPE_Area": 2318.3956622400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353122.186700001358986, 258708.308800000697374 ], [ 353126.219999998807907, 258708.130699999630451 ], [ 353161.730200000107288, 258704.621599998325109 ], [ 353160.26860000193119, 258686.87779999896884 ], [ 353172.467600002884865, 258674.734200000762939 ], [ 353133.147100001573563, 258652.247600000351667 ], [ 353129.079499997198582, 258656.436200000345707 ], [ 353106.39130000025034, 258669.338300000876188 ], [ 353122.186700001358986, 258708.308800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022500", "MAP": "D9-5806-T94", "PARCEL_NAM": "22A-3", "ACRE": null, "LONGITUDE": -65.00619208000001, "LATITUDE": 18.35808682, "OBJECTID_1": 1484, "PARCEL_NO_": "102402022500", "Tax_Legal_": "HOPE 22A-3 WEST END QUARTER", "Name": "CARSON, MICHELLE REESE", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.00571728400001, "SHAPE_Area": 3236.8373491699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350881.469499997794628, 258687.014299999922514 ], [ 350864.05969999730587, 258648.241599999368191 ], [ 350791.491599999368191, 258647.647700000554323 ], [ 350787.931900002062321, 258686.881999999284744 ], [ 350881.469499997794628, 258687.014299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00174868000001, "LATITUDE": 18.35799507, "OBJECTID_1": 1519, "PARCEL_NO_": "102402032300", "Tax_Legal_": "HOPE 19-2 WEST END QTR", "Name": "DEWINDT, RANDOLPH M", "Address": "PO Box 11959", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52200, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.64425697, "SHAPE_Area": 1719.4367491200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351329.206699997186661, 258663.236600000411272 ], [ 351313.343000002205372, 258632.287099998444319 ], [ 351293.872800000011921, 258646.059900000691414 ], [ 351292.220600001513958, 258650.690499998629093 ], [ 351290.598999999463558, 258651.732700001448393 ], [ 351287.355800002813339, 258653.817099999636412 ], [ 351284.132299996912479, 258653.579599998891354 ], [ 351282.521499998867512, 258653.35530000180006 ], [ 351280.124099999666214, 258650.802600000053644 ], [ 351269.570100001990795, 258659.15989999845624 ], [ 351293.493400000035763, 258690.597600001841784 ], [ 351329.206699997186661, 258663.236600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022400", "MAP": "D9-5713-T94", "PARCEL_NAM": "22A-2", "ACRE": null, "LONGITUDE": -65.00533503, "LATITUDE": 18.35808821, "OBJECTID_1": 1483, "PARCEL_NO_": "102402022400", "Tax_Legal_": "HOPE 22A-2 WEST END QUARTER", "Name": "BROWN, JOHN, DAREN C. & KETURAH D", "Address": "3250 Robinhood Rd", "City": "Tallahassee", "State": "Florida", "Zip": 32312, "Country": "United States", "Land_Value": 74000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.79988955300001, "SHAPE_Area": 2561.1944703600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350887.923600003123283, 258686.644900001585484 ], [ 350972.636799998581409, 258681.427600000053644 ], [ 350969.451099999248981, 258676.757500000298023 ], [ 350957.550599999725819, 258653.861999999731779 ], [ 350879.332900002598763, 258653.855099998414516 ], [ 350876.086000002920628, 258656.361600000411272 ], [ 350876.044699996709824, 258661.216400001198053 ], [ 350877.646499998867512, 258662.496100001037121 ], [ 350887.923600003123283, 258686.644900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402035700", "MAP": "D9-1213-T74", "PARCEL_NAM": "18-8", "ACRE": "0.30", "LONGITUDE": -65.00269973, "LATITUDE": 18.35798005, "OBJECTID_1": 1544, "PARCEL_NO_": "102402035700", "Tax_Legal_": "18-8 HOPE NO.5 WEST END QTR", "Name": "ROY A WATLINGTON REVOCABLE TRUST", "Address": "PO Box 302321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.629638159, "SHAPE_Area": 1040.40764485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351221.323499999940395, 258660.084100000560284 ], [ 351199.302000001072884, 258635.885999999940395 ], [ 351178.501800000667572, 258653.137200001627207 ], [ 351204.827799998223782, 258686.49439999833703 ], [ 351216.295999996364117, 258665.478900000452995 ], [ 351217.930200003087521, 258662.959100000560284 ], [ 351219.555399999022484, 258661.494800001382828 ], [ 351221.323499999940395, 258660.084100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601025200", "MAP": "D9-1312-T80", "PARCEL_NAM": "26-B", "ACRE": null, "LONGITUDE": -64.98064068, "LATITUDE": 18.35768316, "OBJECTID_1": 2260, "PARCEL_NO_": "102601025200", "Tax_Legal_": "PEARL ESTATE 26B No.2 SOUTHSIDE QTR.", "Name": "PEETS, CASHEEM A", "Address": "PO Box 308217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 194400, "Improved_V": 23100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.95706435199997, "SHAPE_Area": 1694.4117773 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353528.657300002872944, 258606.510999999940395 ], [ 353514.122100003063679, 258608.92509999871254 ], [ 353498.807599999010563, 258608.166499998420477 ], [ 353502.002300001680851, 258611.781199999153614 ], [ 353532.961199998855591, 258669.24100000038743 ], [ 353580.224299997091293, 258705.935899998992682 ], [ 353545.126000002026558, 258661.107900001108646 ], [ 353528.657300002872944, 258606.510999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601025100", "MAP": "D9-1612-T80", "PARCEL_NAM": "26-C", "ACRE": null, "LONGITUDE": -64.98046375, "LATITUDE": 18.35730332, "OBJECTID_1": 2259, "PARCEL_NO_": "102601025100", "Tax_Legal_": "PEARL 26C SOUTHSIDE QTR.", "Name": "PEETS, CASHEEM A", "Address": "PO Box 308217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 139300, "Improved_V": 267500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 407.61662626999998, "SHAPE_Area": 4997.6276770799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353507.199799999594688, 258569.605099998414516 ], [ 353527.874399997293949, 258603.760299999266863 ], [ 353528.657300002872944, 258606.510999999940395 ], [ 353545.126000002026558, 258661.107900001108646 ], [ 353580.224299997091293, 258705.935899998992682 ], [ 353551.623199999332428, 258655.672600001096725 ], [ 353567.869999997317791, 258641.662300001829863 ], [ 353586.5337999984622, 258627.88289999961853 ], [ 353562.251999996602535, 258543.879999998956919 ], [ 353551.710600003600121, 258550.759799998253584 ], [ 353534.709700003266335, 258558.642299998551607 ], [ 353529.043999999761581, 258561.129000000655651 ], [ 353507.199799999594688, 258569.605099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601022900", "MAP": null, "PARCEL_NAM": "36", "ACRE": null, "LONGITUDE": -64.97995667000001, "LATITUDE": 18.35791534, "OBJECTID_1": 2237, "PARCEL_NO_": "102601022900", "Tax_Legal_": "PEARL ESTATE 36 No.2 SOUTH SIDE QTR.", "Name": "PROSTERMAN FAMILY TRUST", "Address": "PO BOX 305511", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 129600, "Improved_V": 104900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.78820455699997, "SHAPE_Area": 5229.1181191200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353615.932199999690056, 258696.878400001674891 ], [ 353623.128899998962879, 258696.666700001806021 ], [ 353630.960600003600121, 258697.301699999719858 ], [ 353641.543600000441074, 258701.793699998408556 ], [ 353648.04450000077486, 258695.936299998313189 ], [ 353669.166799999773502, 258677.532900001853704 ], [ 353628.2516999989748, 258652.9222999997437 ], [ 353586.5337999984622, 258627.88289999961853 ], [ 353567.869999997317791, 258641.662300001829863 ], [ 353551.623199999332428, 258655.672600001096725 ], [ 353580.224299997091293, 258705.935899998992682 ], [ 353585.680900000035763, 258711.587200000882149 ], [ 353589.050499998033047, 258709.578400000929832 ], [ 353597.093800000846386, 258704.710099998861551 ], [ 353607.042199999094009, 258700.688400000333786 ], [ 353615.932199999690056, 258696.878400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98546789, "LATITUDE": 18.35781835, "OBJECTID_1": 2003, "PARCEL_NO_": "102502030500", "Tax_Legal_": "SANTA MARIA 5B-5 WEST END QTR.", "Name": "ONEAL, PATRECIA", "Address": "6218 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.88979101199999, "SHAPE_Area": 1922.4055278200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353038.889399997889996, 258641.97690000012517 ], [ 353020.585199996829033, 258613.540600001811981 ], [ 353018.956399999558926, 258615.427099999040365 ], [ 353016.510499998927116, 258618.573499999940395 ], [ 353009.962899997830391, 258629.9189000017941 ], [ 353001.67679999768734, 258656.026700001209974 ], [ 353005.604000002145767, 258668.302299998700619 ], [ 353024.6858000010252, 258700.122499998658895 ], [ 353037.037600003182888, 258670.037200000137091 ], [ 353050.86540000140667, 258656.007100000977516 ], [ 353030.689599998295307, 258657.952899999916553 ], [ 353029.95160000026226, 258649.925299998372793 ], [ 353033.984999999403954, 258649.747299998998642 ], [ 353036.418300002813339, 258648.078400000929832 ], [ 353037.242600001394749, 258645.974199999123812 ], [ 353036.468699999153614, 258642.168200001120567 ], [ 353038.889399997889996, 258641.97690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98855933, "LATITUDE": 18.35772414, "OBJECTID_1": 1992, "PARCEL_NO_": "102502021300", "Tax_Legal_": "BONNE ESPERANCE 17-J WESTEND QTR.", "Name": "WILBUR H & LUCILLE I ABRAMSON REVOC FAMILY TRUST", "Address": "PO Box 1293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49700, "Improved_V": 164300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.690892496, "SHAPE_Area": 1973.8927777199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352718.849899999797344, 258631.547100000083447 ], [ 352709.260499998927116, 258621.336100000888109 ], [ 352691.678000003099442, 258602.827100001275539 ], [ 352674.461400002241135, 258636.039000000804663 ], [ 352679.983300000429153, 258650.438499998301268 ], [ 352683.870999999344349, 258667.357799999415874 ], [ 352685.435000002384186, 258673.070099998265505 ], [ 352691.725500002503395, 258691.908900000154972 ], [ 352718.025600001215935, 258633.651299998164177 ], [ 352718.849899999797344, 258631.547100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0003181, "LATITUDE": 18.35775786, "OBJECTID_1": 1515, "PARCEL_NO_": "102402031800", "Tax_Legal_": "HOPE 19-10 WEST END QTR", "Name": "HASSELL, AUSLIN A & GENE", "Address": "BOX 1944", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.67607099400001, "SHAPE_Area": 1531.7821281500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351468.302400000393391, 258616.245700001716614 ], [ 351428.841700002551079, 258610.223200000822544 ], [ 351435.218400001525879, 258618.93019999936223 ], [ 351437.581600002944469, 258625.493500001728535 ], [ 351435.852099999785423, 258639.200399998575449 ], [ 351430.141400001943111, 258646.964099999517202 ], [ 351468.662799999117851, 258668.599899999797344 ], [ 351468.302400000393391, 258616.245700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00134266000001, "LATITUDE": 18.35772839, "OBJECTID_1": 1520, "PARCEL_NO_": "102402032400", "Tax_Legal_": "HOPE 19-6 WEST END QTR", "Name": "FREDERICKS, OLIVER", "Address": "PO Box 7415", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72800, "Improved_V": 225100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.121903594, "SHAPE_Area": 1824.87733918 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351377.086599998176098, 258627.531500000506639 ], [ 351365.95830000191927, 258608.653099998831749 ], [ 351353.039300002157688, 258610.658300001174212 ], [ 351341.722099997103214, 258613.943199999630451 ], [ 351330.379799999296665, 258620.183100000023842 ], [ 351313.343000002205372, 258632.287099998444319 ], [ 351329.206699997186661, 258663.236600000411272 ], [ 351377.086599998176098, 258627.531500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9772061, "LATITUDE": 18.35794874, "OBJECTID_1": 2303, "PARCEL_NO_": "102601033200", "Tax_Legal_": "38B-3 ESTATE PEARL SOUTH SIDE QTR.", "Name": "SPRAUVE, KISHA", "Address": "PO Box 11871", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.01598331100001, "SHAPE_Area": 1270.9460420099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353907.221400000154972, 258656.894299998879433 ], [ 353899.942100003361702, 258653.166499998420477 ], [ 353875.819499999284744, 258674.27309999987483 ], [ 353861.432199999690056, 258686.861699998378754 ], [ 353883.558899998664856, 258690.428399998694658 ], [ 353914.151000000536442, 258695.3597999997437 ], [ 353914.27139999717474, 258681.227699998766184 ], [ 353914.303800001740456, 258677.428300000727177 ], [ 353913.556800000369549, 258670.4560999982059 ], [ 353911.98200000077486, 258666.010299999266863 ], [ 353911.211599998176098, 258661.7820999994874 ], [ 353907.221400000154972, 258656.894299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00081639, "LATITUDE": 18.35770755, "OBJECTID_1": 1514, "PARCEL_NO_": "102402031700", "Tax_Legal_": "HOPE 19-7 WEST END QTR", "Name": "Ira E & Everette Trant&Jacqueline & Wayne Heyliger", "Address": "173-291 Estate Tutu", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56700, "Improved_V": 131600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.37685324, "SHAPE_Area": 1797.22068388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351377.086599998176098, 258627.531500000506639 ], [ 351395.353100001811981, 258660.400499999523163 ], [ 351413.187299996614456, 258649.358500000089407 ], [ 351425.373700000345707, 258638.692499998956919 ], [ 351427.004299998283386, 258636.594900000840425 ], [ 351428.692400000989437, 258627.742800001055002 ], [ 351427.119300000369549, 258623.085799999535084 ], [ 351423.922899998724461, 258619.682199999690056 ], [ 351417.50110000371933, 258616.252099998295307 ], [ 351379.658399999141693, 258609.609600000083447 ], [ 351365.95830000191927, 258608.653099998831749 ], [ 351377.086599998176098, 258627.531500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98417633, "LATITUDE": 18.35767591, "OBJECTID_1": 2004, "PARCEL_NO_": "102502030700", "Tax_Legal_": "5C-1 SANTA MARIA WEST END QTR", "Name": "HODGE, EARL", "Address": "PO Box 307935", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72800, "Improved_V": 311100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.97597070500001, "SHAPE_Area": 2872.4157054399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353133.147100001573563, 258652.247600000351667 ], [ 353172.467600002884865, 258674.734200000762939 ], [ 353210.698700003325939, 258635.783700000494719 ], [ 353201.84009999781847, 258634.444699998944998 ], [ 353181.707400001585484, 258631.324599999934435 ], [ 353167.226199999451637, 258627.406399998813868 ], [ 353109.328100003302097, 258608.567400000989437 ], [ 353106.909199997782707, 258608.547600001096725 ], [ 353105.282200001180172, 258610.223000001162291 ], [ 353106.057899996638298, 258613.817999999970198 ], [ 353107.632799997925758, 258618.263799998909235 ], [ 353110.026500001549721, 258621.238699998706579 ], [ 353114.02929999679327, 258624.649000000208616 ], [ 353130.078199997544289, 258633.857299998402596 ], [ 353133.274700000882149, 258637.260999999940395 ], [ 353134.860399998724461, 258640.440400000661612 ], [ 353133.147100001573563, 258652.247600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00209877, "LATITUDE": 18.35764969, "OBJECTID_1": 1525, "PARCEL_NO_": "102402033500", "Tax_Legal_": "HOPE 19-3\nWEST END QTR", "Name": "MILICENT COUMARBATCH FAMILY REVOCABLE TRUST", "Address": "P.O. BOX 2428", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63300, "Improved_V": 111300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.964919396, "SHAPE_Area": 2083.1681065100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351231.289700001478195, 258609.239599999040365 ], [ 351253.632700003683567, 258636.864700000733137 ], [ 351256.042599998414516, 258637.939899999648333 ], [ 351257.631899997591972, 258640.69709999859333 ], [ 351257.601300001144409, 258644.285399999469519 ], [ 351269.570100001990795, 258659.15989999845624 ], [ 351280.124099999666214, 258650.802600000053644 ], [ 351278.524099998176098, 258649.311799999326468 ], [ 351278.572599999606609, 258643.612700000405312 ], [ 351281.018500000238419, 258640.466299999505281 ], [ 351289.097900003194809, 258638.632599998265505 ], [ 351299.644599996507168, 258631.119500000029802 ], [ 351254.026500001549721, 258590.638399999588728 ], [ 351231.289700001478195, 258609.239599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601023400", "MAP": "B9-71-T62", "PARCEL_NAM": "21", "ACRE": "0.80", "LONGITUDE": -64.97927752, "LATITUDE": 18.35766874, "OBJECTID_1": 2242, "PARCEL_NO_": "102601023400", "Tax_Legal_": "PEARL 21 S S QTR", "Name": "KELLY, PAMELA K", "Address": "6080 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 129400, "Improved_V": 142700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.55352434299999, "SHAPE_Area": 2789.11472749 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353696.045699998736382, 258609.872400000691414 ], [ 353628.2516999989748, 258652.9222999997437 ], [ 353669.166799999773502, 258677.532900001853704 ], [ 353720.173000000417233, 258632.028999999165535 ], [ 353709.07660000026226, 258623.964400000870228 ], [ 353700.192500002682209, 258616.531800001859665 ], [ 353696.045699998736382, 258609.872400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98475855, "LATITUDE": 18.3577482, "OBJECTID_1": 2001, "PARCEL_NO_": "102502030300", "Tax_Legal_": "SANTA MARIA 5B-1 WESTEND QTR.", "Name": "JENNINGS, CARL & SHIRLEY", "Address": "216-11 Sawyer Ave", "City": "Queens Village", "State": "New York", "Zip": 11427, "Country": "United States", "Land_Value": 41900, "Improved_V": 244800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.46928390900001, "SHAPE_Area": 1277.4923437299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353104.322999998927116, 258628.158100001513958 ], [ 353067.862700000405312, 258648.546900000423193 ], [ 353073.435000002384186, 258657.036200001835823 ], [ 353081.418999999761581, 258666.389699999243021 ], [ 353086.237099997699261, 258668.7511 ], [ 353091.087499998509884, 258667.313200000673532 ], [ 353124.308200001716614, 258648.58669999986887 ], [ 353125.936999998986721, 258646.700199998915195 ], [ 353125.969400003552437, 258642.900699999183416 ], [ 353124.372900001704693, 258640.987799998372793 ], [ 353108.324000000953674, 258631.779399998486042 ], [ 353104.322999998927116, 258628.158100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97743989, "LATITUDE": 18.35779059, "OBJECTID_1": 2306, "PARCEL_NO_": "102601033500", "Tax_Legal_": "PEARL 38-2 SOUTHSIDE, QTR.", "Name": "RAWLINS, THRECIA", "Address": "PO Box 11156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44300, "Improved_V": 311200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.53905459000001, "SHAPE_Area": 1355.3013355400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353867.879299998283386, 258636.940600000321865 ], [ 353861.4324000030756, 258636.465599998831749 ], [ 353856.565800003707409, 258639.803300000727177 ], [ 353854.929799996316433, 258642.534099999815226 ], [ 353853.886100001633167, 258670.389899998903275 ], [ 353853.798000000417233, 258680.732799999415874 ], [ 353853.756300002336502, 258685.624299999326468 ], [ 353861.432199999690056, 258686.861699998378754 ], [ 353875.819499999284744, 258674.27309999987483 ], [ 353899.942100003361702, 258653.166499998420477 ], [ 353897.586999997496605, 258651.960299998521805 ], [ 353867.879299998283386, 258636.940600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022800", "MAP": "D9-8633-T011", "PARCEL_NAM": "22B-3", "ACRE": "0.73", "LONGITUDE": -65.00547453, "LATITUDE": 18.35749685, "OBJECTID_1": 1486, "PARCEL_NO_": "102402022800", "Tax_Legal_": "HOPE 22B WEST END QTR.", "Name": "REESE, JACQUELINE & P. COURTNEY & MICHELLE REESE-CARSON", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 175300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.42799654100003, "SHAPE_Area": 3737.89468184 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350871.205200001597404, 258565.372299998998642 ], [ 350891.114399999380112, 258640.555799998342991 ], [ 350891.202600002288818, 258640.82039999961853 ], [ 350894.553999997675419, 258640.82039999961853 ], [ 350953.027000002563, 258640.82039999961853 ], [ 350953.046599999070168, 258640.82039999961853 ], [ 350950.502400003373623, 258629.317400000989437 ], [ 350949.847099997103214, 258611.580200001597404 ], [ 350950.709200002253056, 258605.043400000780821 ], [ 350953.131800003349781, 258598.253400001674891 ], [ 350952.497900001704693, 258598.486999999731779 ], [ 350910.958200000226498, 258621.505800001323223 ], [ 350908.670000001788139, 258601.616200000047684 ], [ 350907.51860000193119, 258591.607799999415874 ], [ 350909.652099996805191, 258575.759300000965595 ], [ 350913.07490000128746, 258550.332699999213219 ], [ 350912.952899999916553, 258549.99720000103116 ], [ 350896.320500001311302, 258552.880300000309944 ], [ 350871.205200001597404, 258565.372299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501013000", "MAP": null, "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.99573693000001, "LATITUDE": 18.35755563, "OBJECTID_1": 1981, "PARCEL_NO_": "102501013000", "Tax_Legal_": "SANTA MARIA 6 WEST END QUARTER", "Name": "BOSCHULTE, RANDOLPH C", "Address": "PO Box 2101", "City": "Maple Grove", "State": "Minnesota", "Zip": 55311, "Country": "United States", "Land_Value": 43900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.95544138400001, "SHAPE_Area": 2363.6702810299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351977.348099999129772, 258589.592399999499321 ], [ 351901.4037000015378, 258606.702599998563528 ], [ 351924.364200003445148, 258656.497600000351667 ], [ 351950.383799999952316, 258631.168200001120567 ], [ 351961.781800001859665, 258618.384799998253584 ], [ 351963.412399999797344, 258616.287200000137091 ], [ 351967.497900001704693, 258609.987799998372793 ], [ 351971.608599998056889, 258600.733300000429153 ], [ 351973.251800000667572, 258597.15819999948144 ], [ 351975.712099999189377, 258592.32319999858737 ], [ 351977.348099999129772, 258589.592399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9984192, "LATITUDE": 18.35420768, "OBJECTID_1": 2053, "PARCEL_NO_": "102503010100", "Tax_Legal_": "PERSEVERANCE WEST END QTR", "Name": "PETER'S FARM INVESTMENT CORP", "Address": "P.O. BOX 763", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 4677800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3170.3032842299999, "SHAPE_Area": 562539.85140199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351288.839599996805191, 258290.326099999248981 ], [ 351275.579000003635883, 258332.436299998313189 ], [ 351266.452399998903275, 258362.548000000417233 ], [ 351253.177400000393391, 258406.346799999475479 ], [ 351240.733800001442432, 258447.19709999859333 ], [ 351220.007799997925758, 258513.732999999076128 ], [ 351215.974399998784065, 258513.911100000143051 ], [ 351158.697499997913837, 258516.81980000063777 ], [ 351124.009900003671646, 258518.435699999332428 ], [ 351074.801399998366833, 258520.777199998497963 ], [ 351049.62950000166893, 258541.258400000631809 ], [ 351051.999899998307228, 258546.977299999445677 ], [ 351267.020999997854233, 258579.767900001257658 ], [ 351366.049999997019768, 258597.888099998235703 ], [ 351372.491499997675419, 258598.996300000697374 ], [ 351421.602799996733665, 258608.052999999374151 ], [ 351428.841700002551079, 258610.223200000822544 ], [ 351468.302400000393391, 258616.245700001716614 ], [ 351658.311599999666214, 258650.7314000017941 ], [ 351663.156700000166893, 258649.926699999719858 ], [ 351901.4037000015378, 258606.702599998563528 ], [ 351977.348099999129772, 258589.592399999499321 ], [ 351988.037000000476837, 258565.404100000858307 ], [ 351990.493699997663498, 258560.991200000047684 ], [ 351993.758500002324581, 258556.3739 ], [ 351997.843999996781349, 258550.074499998241663 ], [ 352003.560099996626377, 258541.677600000053644 ], [ 352008.450099997222424, 258535.595899999141693 ], [ 352018.23200000077486, 258523.221400000154972 ], [ 352025.573299996554852, 258513.360100001096725 ], [ 352028.042599998414516, 258507.469700001180172 ], [ 352035.405500002205372, 258495.075399998575449 ], [ 352038.706299997866154, 258486.2364999987185 ], [ 352040.336900003254414, 258484.138900000602007 ], [ 352041.175599999725819, 258480.346099998801947 ], [ 352042.804399996995926, 258478.459600001573563 ], [ 352046.085400000214577, 258471.942499998956919 ], [ 352051.016699999570847, 258461.006000000983477 ], [ 352036.718199998140335, 258340.987900000065565 ], [ 351989.25789999961853, 257948.809799998998642 ], [ 351973.1891999989748, 257941.923300001770258 ], [ 351953.877300001680851, 257937.121199999004602 ], [ 351951.478100001811981, 257934.779500000178814 ], [ 351948.263700000941753, 257933.486600000411272 ], [ 351945.877099998295307, 257929.667399998754263 ], [ 351940.258100003004074, 257926.66609999909997 ], [ 351921.050399996340275, 257909.621399998664856 ], [ 351920.267499998211861, 257906.870799999684095 ], [ 351917.078199997544289, 257902.622800000011921 ], [ 351912.252899996936321, 257901.105700001120567 ], [ 351890.664099998772144, 257879.608500000089407 ], [ 351888.272100001573563, 257876.422600001096725 ], [ 351887.503600001335144, 257871.983300000429153 ], [ 351890.770199999213219, 257867.154899999499321 ], [ 351887.589900001883507, 257861.851500000804663 ], [ 351868.443400003015995, 257837.630100000649691 ], [ 351864.499899998307228, 257827.254299998283386 ], [ 351866.171899996697903, 257820.301899999380112 ], [ 351863.82490000128746, 257811.838899999856949 ], [ 351861.441899999976158, 257807.597600001841784 ], [ 351848.66499999910593, 257792.927499998360872 ], [ 351846.285599999129772, 257788.263999998569489 ], [ 351839.883699998259544, 257782.512099999934435 ], [ 351823.912100002169609, 257764.227299999445677 ], [ 351802.3125, 257743.996599998325109 ], [ 351788.700499996542931, 257732.697299998253584 ], [ 351772.664099998772144, 257722.011300001293421 ], [ 351768.670299999415874, 257717.545699998736382 ], [ 351755.83049999922514, 257710.263399999588728 ], [ 351546.744499996304512, 257832.675200000405312 ], [ 351400.759499996900558, 257931.116500001400709 ], [ 351389.159999996423721, 257967.540800001472235 ], [ 351369.256499998271465, 258032.183600001037121 ], [ 351351.028499998152256, 258089.451799999922514 ], [ 351336.097699999809265, 258138.303300000727177 ], [ 351323.654200002551079, 258179.153599999845028 ], [ 351301.279600001871586, 258249.897999998182058 ], [ 351288.839599996805191, 258290.326099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98801419, "LATITUDE": 18.35742006, "OBJECTID_1": 1987, "PARCEL_NO_": "102502020600", "Tax_Legal_": "BONNE ESPERANCE 14B-1 WEST END QTR", "Name": "NEUMANN, ALFRED & IRMELA CO-TRUST", "Address": "P.O. BOX 3830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.05138415299999, "SHAPE_Area": 3010.2062419399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352794.353000000119209, 258571.581199999898672 ], [ 352744.291500002145767, 258579.404100000858307 ], [ 352741.006899997591972, 258586.343299999833107 ], [ 352718.849899999797344, 258631.547100000083447 ], [ 352718.025600001215935, 258633.651299998164177 ], [ 352748.487499997019768, 258654.798900000751019 ], [ 352794.353000000119209, 258571.581199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98526424000001, "LATITUDE": 18.35751965, "OBJECTID_1": 2002, "PARCEL_NO_": "102502030400", "Tax_Legal_": "SANTA MARIA 5B-4 WESTEND QTR.", "Name": "TRUST AGREEMENT OF UTHA O WILLIAMS", "Address": "PO Box 303712", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35700, "Improved_V": 192800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.97092125099999, "SHAPE_Area": 1308.6396339299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353057.582099996507168, 258624.820300001651049 ], [ 353043.356100000441074, 258590.928800001740456 ], [ 353020.585199996829033, 258613.540600001811981 ], [ 353038.889399997889996, 258641.97690000012517 ], [ 353042.924599997699261, 258641.587799999862909 ], [ 353042.890399999916553, 258645.598299998790026 ], [ 353046.095899999141693, 258647.94649999961257 ], [ 353048.514799997210503, 258647.966299999505281 ], [ 353054.175200000405312, 258646.112799998372793 ], [ 353059.819399997591972, 258646.159000001847744 ], [ 353067.862700000405312, 258648.546900000423193 ], [ 353057.582099996507168, 258624.820300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98491288, "LATITUDE": 18.35752432, "OBJECTID_1": 2000, "PARCEL_NO_": "102502030200", "Tax_Legal_": "SANTA MARIA 5B-2 WEST END QTR.", "Name": "WEBSTER, ORVILLE D.", "Address": "PO Box 306114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43100, "Improved_V": 394500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.06674577800001, "SHAPE_Area": 1242.9392814 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353093.322300001978874, 258594.293099999427795 ], [ 353057.582099996507168, 258624.820300001651049 ], [ 353067.862700000405312, 258648.546900000423193 ], [ 353104.322999998927116, 258628.158100001513958 ], [ 353102.724799998104572, 258626.456300001591444 ], [ 353098.740000002086163, 258620.935199998319149 ], [ 353096.382200002670288, 258613.738800000399351 ], [ 353095.604599997401237, 258610.354899998754263 ], [ 353094.101700000464916, 258597.465900000184774 ], [ 353093.322300001978874, 258594.293099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "E", "ACRE": "3.3", "LONGITUDE": -65.01652651000001, "LATITUDE": 18.35701757, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 519.86618507799994, "SHAPE_Area": 15626.5713884 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349682.772699996829033, 258453.866500001400709 ], [ 349690.771799996495247, 258556.101300001144409 ], [ 349675.855400003492832, 258603.26410000026226 ], [ 349681.488799996674061, 258604.576799999922514 ], [ 349685.504199996590614, 258606.509500000625849 ], [ 349689.508799999952316, 258609.708700001239777 ], [ 349690.298900000751019, 258611.614999998360872 ], [ 349693.498999997973442, 258614.596500001847744 ], [ 349702.343199998140335, 258617.624200001358986 ], [ 349703.950499996542931, 258618.270599998533726 ], [ 349716.829899996519089, 258620.909200001507998 ], [ 349727.321000002324581, 258619.939599998295307 ], [ 349737.025499999523163, 258616.641499999910593 ], [ 349742.689400002360344, 258614.365800000727177 ], [ 349747.547100000083447, 258612.083500001579523 ], [ 349752.411899998784065, 258608.956999998539686 ], [ 349756.470499999821186, 258605.823800001293421 ], [ 349795.461199998855591, 258572.367899999022484 ], [ 349833.580799996852875, 258546.504299998283386 ], [ 349816.027199998497963, 258524.618000000715256 ], [ 349748.723099999129772, 258474.037999998778105 ], [ 349682.772699996829033, 258453.866500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97959229, "LATITUDE": 18.35740621, "OBJECTID_1": 2241, "PARCEL_NO_": "102601023300", "Tax_Legal_": "23 ESTATE PEARL SOUTHSIDE QTR.", "Name": "THOMAS, MICHELE & EUNELL", "Address": "394-399 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 190100, "Improved_V": 1600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.52754869099999, "SHAPE_Area": 4095.66567235 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353659.354500003159046, 258573.680700000375509 ], [ 353618.996699996292591, 258603.450699999928474 ], [ 353586.5337999984622, 258627.88289999961853 ], [ 353628.2516999989748, 258652.9222999997437 ], [ 353696.045699998736382, 258609.872400000691414 ], [ 353687.940600000321865, 258599.466899998486042 ], [ 353679.345499999821186, 258592.135499998927116 ], [ 353673.831600002944469, 258587.230700001120567 ], [ 353665.830399997532368, 258581.032699998468161 ], [ 353659.354500003159046, 258573.680700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00175035, "LATITUDE": 18.35745112, "OBJECTID_1": 1526, "PARCEL_NO_": "102402033600", "Tax_Legal_": "HOPE 19-4 WEST END QTR", "Name": "HODGE, JOHN WESLEY", "Address": "G20 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65900, "Improved_V": 155600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.95448973000001, "SHAPE_Area": 2520.9388203200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351267.020999997854233, 258579.767900001257658 ], [ 351254.026500001549721, 258590.638399999588728 ], [ 351299.644599996507168, 258631.119500000029802 ], [ 351326.418399997055531, 258611.918099999427795 ], [ 351336.949000000953674, 258606.304699998348951 ], [ 351344.232799999415874, 258603.197900000959635 ], [ 351354.734600000083447, 258600.961899999529123 ], [ 351358.769799999892712, 258600.572700001299381 ], [ 351366.049999997019768, 258597.888099998235703 ], [ 351267.020999997854233, 258579.767900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98874236, "LATITUDE": 18.35740838, "OBJECTID_1": 1991, "PARCEL_NO_": "102502021200", "Tax_Legal_": "BONNE ESPERANCE 17 WESTEND QTR.", "Name": "PARRIS, SHERYL SONIA", "Address": "PO Box 8003", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28800, "Improved_V": 134800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.77762347, "SHAPE_Area": 758.95501503699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352673.298299998044968, 258583.256000000983477 ], [ 352662.641800001263618, 258603.644900001585484 ], [ 352674.461400002241135, 258636.039000000804663 ], [ 352691.678000003099442, 258602.827100001275539 ], [ 352678.085799999535084, 258589.205800000578165 ], [ 352673.298299998044968, 258583.256000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504018100", "MAP": "F9-3044-T80", "PARCEL_NAM": "17H", "ACRE": ".50", "LONGITUDE": -64.98840807000001, "LATITUDE": 18.35723474, "OBJECTID_1": 2151, "PARCEL_NO_": "102504018100", "Tax_Legal_": "BONNE ESPERANCE 17H WEST END QTR.", "Name": "TODMAN, J. J. & JOHNSON, C. S", "Address": "PO Box 302897", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49700, "Improved_V": 231800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.26770970199999, "SHAPE_Area": 2090.6553755599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352741.006899997591972, 258586.343299999833107 ], [ 352693.713200002908707, 258553.236800000071526 ], [ 352691.258299998939037, 258557.438499998301268 ], [ 352687.149400003254414, 258566.481899999082088 ], [ 352683.846900001168251, 258575.531899999827147 ], [ 352684.592000000178814, 258582.715199999511242 ], [ 352712.570200003683567, 258611.441799998283386 ], [ 352709.260499998927116, 258621.336100000888109 ], [ 352718.849899999797344, 258631.547100000083447 ], [ 352741.006899997591972, 258586.343299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-5598-T93", "PARCEL_NAM": "113", "ACRE": "16.45", "LONGITUDE": -65.01386197, "LATITUDE": 18.35624815, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1280.8985472899999, "SHAPE_Area": 74883.996952899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349850.531400002539158, 258544.5320999994874 ], [ 350108.843400001525879, 258607.019000001251698 ], [ 350223.797600001096725, 258459.561099998652935 ], [ 350221.882200002670288, 258400.4391999989748 ], [ 350222.744199998676777, 258393.902399998158216 ], [ 350220.346799999475479, 258391.349599998444319 ], [ 350217.945900000631809, 258389.219099998474121 ], [ 350202.652900002896786, 258385.927499998360872 ], [ 350199.429499998688698, 258385.690000001341105 ], [ 350191.373499996960163, 258384.779699999839067 ], [ 350149.411100000143051, 258388.447000000625849 ], [ 350135.70380000025034, 258388.334899999201298 ], [ 350123.628899998962879, 258385.914000000804663 ], [ 350114.788199998438358, 258382.464099999517202 ], [ 350104.358300000429153, 258376.257100000977516 ], [ 350069.953000001609325, 258344.733600001782179 ], [ 350067.552100002765656, 258342.603000000119209 ], [ 350057.910499997437, 258338.513399999588728 ], [ 350049.044600002467632, 258338.0185999982059 ], [ 350031.262599997222424, 258342.939300000667572 ], [ 350024.779700003564358, 258346.685899998992682 ], [ 350012.600500002503395, 258356.507699999958277 ], [ 350003.652000002563, 258365.722500000149012 ], [ 349990.617899999022484, 258381.236800000071526 ], [ 349987.372900001704693, 258383.532200001180172 ], [ 349982.509800001978874, 258386.447799999266863 ], [ 349972.004399999976158, 258389.105999998748302 ], [ 349965.552100002765656, 258389.264299999922514 ], [ 349960.723200000822544, 258388.169300001114607 ], [ 349950.282499998807907, 258383.228700000792742 ], [ 349946.277900002896786, 258380.029500000178814 ], [ 349943.090400002896786, 258375.57039999961853 ], [ 349931.989100001752377, 258353.52589999884367 ], [ 349929.663599997758865, 258342.530000001192093 ], [ 349924.120200000703335, 258330.66330000013113 ], [ 349918.736699998378754, 258300.01069999858737 ], [ 349922.091399997472763, 258284.839400000870228 ], [ 349920.637000001966953, 258266.251299999654293 ], [ 349918.225299999117851, 258265.387200001627207 ], [ 349914.9983000010252, 258265.571899998933077 ], [ 349906.917099997401237, 258267.616700001060963 ], [ 349898.814499996602535, 258272.194400001317263 ], [ 349890.688400000333786, 258279.516199998557568 ], [ 349875.989600002765656, 258301.1385000012815 ], [ 349870.228500001132488, 258314.812399998307228 ], [ 349850.547899998724461, 258353.281500000506639 ], [ 349843.039399996399879, 258382.77309999987483 ], [ 349842.179099999368191, 258389.098900001496077 ], [ 349846.120800003409386, 258399.6858000010252 ], [ 349846.063199996948242, 258406.440400000661612 ], [ 349847.630900003015995, 258411.730500001460314 ], [ 349852.409400001168251, 258418.735700000077486 ], [ 349857.146600000560284, 258430.59569999948144 ], [ 349864.318899996578693, 258440.575800001621246 ], [ 349872.234600000083447, 258457.950300000607967 ], [ 349877.704300001263618, 258478.471099998801947 ], [ 349873.554099999368191, 258492.369300000369549 ], [ 349871.795800000429153, 258509.453499998897314 ], [ 349869.295999996364117, 258518.932300001382828 ], [ 349857.833200000226498, 258539.314500000327826 ], [ 349850.531400002539158, 258544.5320999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "D", "ACRE": "3.4", "LONGITUDE": -65.01745465, "LATITUDE": 18.35665751, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 511.63504266899997, "SHAPE_Area": 14469.919926500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349604.336400002241135, 258574.181200001388788 ], [ 349614.042700000107288, 258570.671999998390675 ], [ 349623.716600000858307, 258570.96229999884963 ], [ 349629.348200000822544, 258572.486000001430511 ], [ 349634.965400002896786, 258575.698399998247623 ], [ 349648.563100002706051, 258588.6864 ], [ 349654.185699999332428, 258591.265500001609325 ], [ 349664.649800002574921, 258593.462099999189377 ], [ 349669.460699997842312, 258596.667899999767542 ], [ 349671.85080000013113, 258600.065000001341105 ], [ 349675.855400003492832, 258603.26410000026226 ], [ 349690.771799996495247, 258556.101300001144409 ], [ 349682.772699996829033, 258453.866500001400709 ], [ 349642.949799999594688, 258395.700899999588728 ], [ 349639.710199996829033, 258397.363200001418591 ], [ 349616.156300000846386, 258417.224300000816584 ], [ 349589.290799997746944, 258447.190799999982119 ], [ 349602.521600000560284, 258503.238899998366833 ], [ 349593.432800002396107, 258528.917899999767542 ], [ 349604.336400002241135, 258574.181200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00303158, "LATITUDE": 18.35726603, "OBJECTID_1": 1524, "PARCEL_NO_": "102402033400", "Tax_Legal_": "HOPE 20A WEST END QTR", "Name": "MILLER, KEITH L.", "Address": "75 Hunnewell Ave", "City": "Newton", "State": "Massachusetts", "Zip": 2458, "Country": "United States", "Land_Value": 186700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 463.43327554000001, "SHAPE_Area": 5914.2759502 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351068.747299998998642, 258568.85700000077486 ], [ 351127.460600003600121, 258586.647199999541044 ], [ 351136.306699998676777, 258589.463799998164177 ], [ 351169.282799996435642, 258599.443999998271465 ], [ 351223.168999999761581, 258615.928199999034405 ], [ 351231.289700001478195, 258609.239599999040365 ], [ 351254.026500001549721, 258590.638399999588728 ], [ 351267.020999997854233, 258579.767900001257658 ], [ 351051.999899998307228, 258546.977299999445677 ], [ 351057.566799998283386, 258556.099899999797344 ], [ 351068.747299998998642, 258568.85700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0051571, "LATITUDE": 18.35713233, "OBJECTID_1": 1491, "PARCEL_NO_": "102402024300", "Tax_Legal_": "HOPE 22-B-1 WESTEND QTR", "Name": "SEMPER, GLORIA", "Address": "APT 137", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26800, "Improved_V": 128500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.89764317000001, "SHAPE_Area": 2308.3738334300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350948.626199997961521, 258578.393699999898672 ], [ 350966.785400003194809, 258575.203600000590086 ], [ 350966.974899999797344, 258575.341400001198053 ], [ 350969.53490000218153, 258572.2668999992311 ], [ 350973.638300001621246, 258563.856699999421835 ], [ 350975.258199997246265, 258563.025600001215935 ], [ 350976.892399996519089, 258560.505800001323223 ], [ 350978.57150000333786, 258552.709100000560284 ], [ 350979.404799997806549, 258549.549499999731779 ], [ 350975.427199997007847, 258543.184200000017881 ], [ 350954.464900001883507, 258542.801500000059605 ], [ 350912.952899999916553, 258549.99720000103116 ], [ 350913.07490000128746, 258550.332699999213219 ], [ 350909.652099996805191, 258575.759300000965595 ], [ 350907.51860000193119, 258591.607799999415874 ], [ 350947.206200003623962, 258578.643199998885393 ], [ 350948.626199997961521, 258578.393699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502040500", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-5", "ACRE": ".34", "LONGITUDE": -64.98440273, "LATITUDE": 18.35725475, "OBJECTID_1": 2042, "PARCEL_NO_": "102502040500", "Tax_Legal_": "4A-5 SANTA MARIA No.1 WESTEND QUARTER", "Name": "HARRIGAN, MARVIN A. & CARLA M", "Address": "PO Box 304454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.262472473, "SHAPE_Area": 1312.87771028 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353158.005000002682209, 258614.884399998933077 ], [ 353164.857299998402596, 258605.457299999892712 ], [ 353130.625399999320507, 258569.530200000852346 ], [ 353104.385600000619888, 258593.141199998557568 ], [ 353107.812600001692772, 258597.155900001525879 ], [ 353114.230700001120567, 258601.008099999278784 ], [ 353158.005000002682209, 258614.884399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010100", "MAP": "A9-469-T95", "PARCEL_NAM": "4B-E", "ACRE": ".62", "LONGITUDE": -64.9825881, "LATITUDE": 18.35732707, "OBJECTID_1": 2538, "PARCEL_NO_": "102603010100", "Tax_Legal_": "SANTA MARIA 4B SOUTH SIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 360.12500300900001, "SHAPE_Area": 2122.4655562299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353383.848399996757507, 258566.906700000166893 ], [ 353340.829700000584126, 258599.907400000840425 ], [ 353312.556599996984005, 258605.797699999064207 ], [ 353277.012299999594688, 258613.317299999296665 ], [ 353235.006800003349781, 258622.050500001758337 ], [ 353232.542900003492832, 258627.307700000703335 ], [ 353236.574400000274181, 258627.340700000524521 ], [ 353243.67509999871254, 258629.460900001227856 ], [ 353249.813400000333786, 258629.249200001358986 ], [ 353273.943499997258186, 258626.497600000351667 ], [ 353387.397100001573563, 258596.229200001806021 ], [ 353391.207099996507168, 258589.032499998807907 ], [ 353391.418700002133846, 258582.682500001043081 ], [ 353389.725400000810623, 258573.580800000578165 ], [ 353386.238499999046326, 258570.303800001740456 ], [ 353383.848399996757507, 258566.906700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98501619, "LATITUDE": 18.35723719, "OBJECTID_1": 1999, "PARCEL_NO_": "102502030100", "Tax_Legal_": "5B-3 SANTA MARIA WEST END QTR.", "Name": "PERSAD, LIONEL & MARGARET", "Address": "PO Box 304697", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34900, "Improved_V": 212100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.314457885, "SHAPE_Area": 1714.7563 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353087.173900000751019, 258558.779100000858307 ], [ 353043.356100000441074, 258590.928800001740456 ], [ 353057.582099996507168, 258624.820300001651049 ], [ 353093.322300001978874, 258594.293099999427795 ], [ 353089.506599999964237, 258568.930700000375509 ], [ 353089.533500000834465, 258565.764499999582767 ], [ 353088.754199996590614, 258562.591699998825788 ], [ 353087.173900000751019, 258558.779100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98009622, "LATITUDE": 18.35705455, "OBJECTID_1": 2240, "PARCEL_NO_": "102601023200", "Tax_Legal_": "PEARL ESTATE 25 No.2 SOUTHSIDE QTR.", "Name": "PANCHAM, SURESH", "Address": "ECCLESVILLE", "City": "Rio Claro", "State": null, "Zip": 0, "Country": "United States", "Land_Value": 155500, "Improved_V": 222200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.15408058400001, "SHAPE_Area": 3103.73131087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353618.996699996292591, 258603.450699999928474 ], [ 353592.25280000269413, 258524.493900001049042 ], [ 353562.251999996602535, 258543.879999998956919 ], [ 353586.5337999984622, 258627.88289999961853 ], [ 353618.996699996292591, 258603.450699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601023800", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97790005, "LATITUDE": 18.35723671, "OBJECTID_1": 2246, "PARCEL_NO_": "102601023800", "Tax_Legal_": "PEARL 37-1 S S QTR", "Name": "CLAUDETTE SANTIAGO - LIFE INTE", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89800, "Improved_V": 224900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.30075822200001, "SHAPE_Area": 2137.37807221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353795.86150000244379, 258571.756499998271465 ], [ 353798.770199999213219, 258608.932799998670816 ], [ 353802.787399999797344, 258610.654399998486042 ], [ 353830.068999998271465, 258626.498599998652935 ], [ 353836.51410000026226, 258627.18470000103116 ], [ 353839.746500000357628, 258626.366700001060963 ], [ 353843.801399998366833, 258623.655699998140335 ], [ 353847.116599999368191, 258613.128199998289347 ], [ 353840.176299996674061, 258575.9189000017941 ], [ 353795.86150000244379, 258571.756499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033600", "MAP": "A9-469-T95", "PARCEL_NAM": "4B-1", "ACRE": ".29", "LONGITUDE": -64.98316862, "LATITUDE": 18.3572414, "OBJECTID_1": 2029, "PARCEL_NO_": "102502033600", "Tax_Legal_": "SANTA MARIA 4B-1", "Name": "DE LUGO, ALVARO", "Address": "PO Box 762", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.689792294, "SHAPE_Area": 1790.5791804 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353258.850199997425079, 258568.205699998885393 ], [ 353235.006800003349781, 258622.050500001758337 ], [ 353277.012299999594688, 258613.317299999296665 ], [ 353293.507200002670288, 258570.178100001066923 ], [ 353258.850199997425079, 258568.205699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0011402, "LATITUDE": 18.35742468, "OBJECTID_1": 1526, "PARCEL_NO_": "102402033600", "Tax_Legal_": "HOPE 19-4 WEST END QTR", "Name": "HODGE, JOHN WESLEY", "Address": "G20 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65900, "Improved_V": 155600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.107493631600001, "SHAPE_Area": 12.680384288100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351358.769799999892712, 258600.572700001299381 ], [ 351372.491499997675419, 258598.996300000697374 ], [ 351366.049999997019768, 258597.888099998235703 ], [ 351358.769799999892712, 258600.572700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033700", "MAP": "A9-469-T95", "PARCEL_NAM": "4B-2", "ACRE": ".25", "LONGITUDE": -64.98282157, "LATITUDE": 18.35719973, "OBJECTID_1": 2030, "PARCEL_NO_": "102502033700", "Tax_Legal_": "SANTA MARIA 4B-2 No.1 WESTEND QTR.", "Name": "HODGE, GLENFORD & ALTHEA V. WILLIAMS", "Address": "PO Box 12388", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30800, "Improved_V": 117200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.009561967, "SHAPE_Area": 1306.0018284299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353312.556599996984005, 258605.797699999064207 ], [ 353326.594800002872944, 258567.071400001645088 ], [ 353308.024400003254414, 258569.874699998646975 ], [ 353293.507200002670288, 258570.178100001066923 ], [ 353277.012299999594688, 258613.317299999296665 ], [ 353312.556599996984005, 258605.797699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021600", "MAP": "A9-644-T005", "PARCEL_NAM": "26 REM", "ACRE": null, "LONGITUDE": -64.99085149, "LATITUDE": 18.35623352, "OBJECTID_1": 1995, "PARCEL_NO_": "102502021600", "Tax_Legal_": "ESPERANZE 26 REM. WESTEND QTR.", "Name": "HEIRS OF LIONEL ROBERTS", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 178500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.08927884100001, "SHAPE_Area": 6249.8880798099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352447.112199999392033, 258441.238699998706579 ], [ 352410.064900003373623, 258435.869199998676777 ], [ 352395.920699998736382, 258487.049199998378754 ], [ 352445.813100002706051, 258499.067699998617172 ], [ 352458.689000003039837, 258502.128400001674891 ], [ 352455.38459999859333, 258511.389499999582767 ], [ 352462.465199999511242, 258532.13459999859333 ], [ 352493.80009999871254, 258513.411499999463558 ], [ 352504.882700003683567, 258452.625 ], [ 352475.300700001418591, 258445.269099999219179 ], [ 352447.112199999392033, 258441.238699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601025400", "MAP": "A9-469-T95", "PARCEL_NAM": "4B-3", "ACRE": ".28", "LONGITUDE": -64.98242243, "LATITUDE": 18.35711514, "OBJECTID_1": 2262, "PARCEL_NO_": "102601025400", "Tax_Legal_": "4B-3 ESTATE SANTA MARIA WEST END QUARTER", "Name": "HODGE, GERALD E. ,JR.", "Address": "HOSPITAL GROUND # 6A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 106600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.51377528699999, "SHAPE_Area": 1636.28676202 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353326.594800002872944, 258567.071400001645088 ], [ 353312.556599996984005, 258605.797699999064207 ], [ 353340.829700000584126, 258599.907400000840425 ], [ 353383.848399996757507, 258566.906700000166893 ], [ 353381.45099999755621, 258564.353999998420477 ], [ 353373.411300003528595, 258561.543999999761581 ], [ 353355.663400001823902, 258562.454199999570847 ], [ 353326.594800002872944, 258567.071400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601023900", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97835067, "LATITUDE": 18.35713699, "OBJECTID_1": 2247, "PARCEL_NO_": "102601023900", "Tax_Legal_": "37-2 ESTATE PEARL SOUTHSIDE QTR.", "Name": "CARTY, NEIL E.", "Address": "PO Box 304506", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99600, "Improved_V": 503800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.06026986000001, "SHAPE_Area": 1516.8034847700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353795.86150000244379, 258571.756499998271465 ], [ 353750.74210000038147, 258567.376499999314547 ], [ 353751.494499996304512, 258573.715399999171495 ], [ 353749.664300002157688, 258599.242800001055002 ], [ 353764.982400000095367, 258599.579199999570847 ], [ 353776.251000002026558, 258601.993500001728535 ], [ 353782.690700002014637, 258603.312800001353025 ], [ 353789.125, 258605.265299998223782 ], [ 353798.770199999213219, 258608.932799998670816 ], [ 353795.86150000244379, 258571.756499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98094209, "LATITUDE": 18.35718198, "OBJECTID_1": 2260, "PARCEL_NO_": "102601025200", "Tax_Legal_": "PEARL ESTATE 26B No.2 SOUTHSIDE QTR.", "Name": "PEETS, CASHEEM A", "Address": "PO Box 308217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 194400, "Improved_V": 23100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.14215120899999, "SHAPE_Area": 1188.5574916600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353527.874399997293949, 258603.760299999266863 ], [ 353507.199799999594688, 258569.605099998414516 ], [ 353473.253799997270107, 258578.826400000602007 ], [ 353475.616899996995926, 258585.389699999243021 ], [ 353487.598300002515316, 258598.78660000115633 ], [ 353494.817400000989437, 258603.2787000015378 ], [ 353503.665299996733665, 258605.884199999272823 ], [ 353512.534699998795986, 258605.956799998879433 ], [ 353527.874399997293949, 258603.760299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97974627000001, "LATITUDE": 18.35683502, "OBJECTID_1": 2250, "PARCEL_NO_": "102601024200", "Tax_Legal_": "PEARL 24 WEST END QTR", "Name": "BROWN, JANE", "Address": "PO Box 12142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 179900, "Improved_V": 96900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.39669892699999, "SHAPE_Area": 3895.5277072099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353592.25280000269413, 258524.493900001049042 ], [ 353618.996699996292591, 258603.450699999928474 ], [ 353659.354500003159046, 258573.680700000375509 ], [ 353651.079499997198582, 258528.986099999397993 ], [ 353648.70549999922514, 258523.689300000667572 ], [ 353646.317100003361702, 258520.081199999898672 ], [ 353644.717100001871586, 258518.590500000864267 ], [ 353639.909800000488758, 258514.962499998509884 ], [ 353632.679899998009205, 258511.736900001764297 ], [ 353624.618600003421307, 258511.459899999201298 ], [ 353605.216700002551079, 258517.21169999986887 ], [ 353592.25280000269413, 258524.493900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00452009, "LATITUDE": 18.35710209, "OBJECTID_1": 1537, "PARCEL_NO_": "102402034700", "Tax_Legal_": "HOPE 20D-1 WEST END QTR.", "Name": "GRIGG, ALICE L. & JENSEN, JENS G.", "Address": "PO Box 302833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44800, "Improved_V": 97900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.33351426, "SHAPE_Area": 778.69923713200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351033.470899999141693, 258544.925799999386072 ], [ 351000.370700001716614, 258549.510000001639128 ], [ 350991.42400000244379, 258558.513799998909235 ], [ 350994.562899999320507, 258568.671999998390675 ], [ 350994.537699997425079, 258571.627099998295307 ], [ 350997.694700002670288, 258579.674499999731779 ], [ 351002.519900001585484, 258581.191700000315905 ], [ 351016.342299997806549, 258567.794799998402596 ], [ 351017.164800003170967, 258565.901700001209974 ], [ 351022.047700002789497, 258560.664299998432398 ], [ 351026.122400000691414, 258555.631400000303984 ], [ 351033.470899999141693, 258544.925799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99474739, "LATITUDE": 18.35698393, "OBJECTID_1": 2053, "PARCEL_NO_": "102503010100", "Tax_Legal_": "PERSEVERANCE WEST END QTR", "Name": "PETER'S FARM INVESTMENT CORP", "Address": "P.O. BOX 763", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 4677800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.69067354399999, "SHAPE_Area": 4208.19994004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352047.546499997377396, 258507.057199999690056 ], [ 352045.327799998223782, 258498.5439000017941 ], [ 352037.662600003182888, 258514.092300001531839 ], [ 352027.862800002098083, 258528.577599998563528 ], [ 352016.470100000500679, 258540.727800000458956 ], [ 351999.314599998295307, 258566.762899998575449 ], [ 351993.569700002670288, 258578.537200000137091 ], [ 351991.098600000143051, 258584.638599999248981 ], [ 351991.082400001585484, 258586.538400001823902 ], [ 352079.051399998366833, 258577.759100001305342 ], [ 352092.770499996840954, 258576.914200000464916 ], [ 352096.646999999880791, 258576.675500001758337 ], [ 352095.092000000178814, 258574.644900001585484 ], [ 352077.15429999679327, 258551.222300000488758 ], [ 352052.044399999082088, 258518.434300001710653 ], [ 352050.456900000572205, 258513.407200001180172 ], [ 352047.546499997377396, 258507.057199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601024000", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97878129, "LATITUDE": 18.35706987, "OBJECTID_1": 2248, "PARCEL_NO_": "102601024000", "Tax_Legal_": "PEARL 37-3 SOUTHSIDE QTR.", "Name": "BLYDEN, EDITH", "Address": "PO Box 10890", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90700, "Improved_V": 257400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.22290774499999, "SHAPE_Area": 1731.85950662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353737.925599999725819, 258557.35020000115037 ], [ 353712.129000000655651, 258556.505800001323223 ], [ 353703.745800003409386, 258594.011799998581409 ], [ 353712.593699999153614, 258596.617300000041723 ], [ 353724.672200001776218, 258598.61600000038743 ], [ 353749.664300002157688, 258599.242800001055002 ], [ 353751.494499996304512, 258573.715399999171495 ], [ 353750.74210000038147, 258567.376499999314547 ], [ 353750.002300001680851, 258559.559900000691414 ], [ 353746.760899998247623, 258561.433299999684095 ], [ 353744.361800000071526, 258559.091600000858307 ], [ 353741.942800000309944, 258559.071800000965595 ], [ 353740.3175999969244, 258560.536100000143051 ], [ 353737.925599999725819, 258557.35020000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98828266, "LATITUDE": 18.3569233, "OBJECTID_1": 1990, "PARCEL_NO_": "102502021000", "Tax_Legal_": "BONNE ESPERANCE 17-G WEST END QTR.", "Name": "PARROTT, DERON A. & JENNIFER J.", "Address": "4715 Riverstone Dr", "City": "Owings Mills", "State": "Maryland", "Zip": 21117, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.205345722, "SHAPE_Area": 1952.7050949300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352755.788500003516674, 258555.011399999260902 ], [ 352710.101999998092651, 258522.551199998706579 ], [ 352693.713200002908707, 258553.236800000071526 ], [ 352741.006899997591972, 258586.343299999833107 ], [ 352744.291500002145767, 258579.404100000858307 ], [ 352755.788500003516674, 258555.011399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601024100", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97919801, "LATITUDE": 18.3568717, "OBJECTID_1": 2249, "PARCEL_NO_": "102601024100", "Tax_Legal_": "37-4 ESTATE PEARL SOUTHSIDE QTR.", "Name": "RIDDLE, YVONNE B. , TRUSTEE", "Address": "8116 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023527, "Country": "United States", "Land_Value": 90200, "Improved_V": 173300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.103878374, "SHAPE_Area": 2409.0281015300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353703.745800003409386, 258594.011799998581409 ], [ 353712.129000000655651, 258556.505800001323223 ], [ 353677.783100001513958, 258518.016699999570847 ], [ 353670.499300003051758, 258521.123500000685453 ], [ 353665.620099999010563, 258525.938700001686811 ], [ 353662.344499997794628, 258531.822500001639128 ], [ 353660.679700002074242, 258537.930599998682737 ], [ 353660.647299997508526, 258541.730000000447035 ], [ 353662.904399998486042, 258560.746899999678135 ], [ 353668.464100003242493, 258570.713799998164177 ], [ 353677.258000001311302, 258579.651700001209974 ], [ 353687.675300002098083, 258587.336399998515844 ], [ 353703.745800003409386, 258594.011799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501011300", "MAP": null, "PARCEL_NAM": "6A", "ACRE": null, "LONGITUDE": -64.99364755000001, "LATITUDE": 18.35709569, "OBJECTID_1": 1966, "PARCEL_NO_": "102501011300", "Tax_Legal_": "BONNE ESPERANCE 6A WEST END QTR", "Name": "ROBERTS, LUBIN & DELREASE", "Address": "PO Box 11762", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.531400963, "SHAPE_Area": 479.96335149100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352178.269599996507168, 258573.669199999421835 ], [ 352178.396799996495247, 258558.729400001466274 ], [ 352178.891000002622604, 258556.256599999964237 ], [ 352168.99040000140667, 258561.8260000012815 ], [ 352158.4070999994874, 258564.736400000751019 ], [ 352145.442500002682209, 258566.853100001811981 ], [ 352134.594499997794628, 258567.38230000063777 ], [ 352130.855099998414516, 258567.38230000063777 ], [ 352131.226400002837181, 258575.299199998378754 ], [ 352145.77139999717474, 258574.795200001448393 ], [ 352164.397900000214577, 258574.14979999884963 ], [ 352178.269599996507168, 258573.669199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010100", "MAP": "A9-469-T95", "PARCEL_NAM": "4B REM", "ACRE": ".9", "LONGITUDE": -64.98142411000001, "LATITUDE": 18.35648608, "OBJECTID_1": 2538, "PARCEL_NO_": "102603010100", "Tax_Legal_": "SANTA MARIA 4B SOUTH SIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 560.774677096, "SHAPE_Area": 3188.9205254 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353525.801100000739098, 258373.862500000745058 ], [ 353517.581500001251698, 258392.160300001502037 ], [ 353511.010499998927116, 258406.249800000339746 ], [ 353493.023500002920628, 258435.233500000089407 ], [ 353480.074000000953674, 258440.827100001275539 ], [ 353464.460900001227856, 258475.107500001788139 ], [ 353447.199299998581409, 258513.596400000154972 ], [ 353443.065200001001358, 258525.594900000840425 ], [ 353439.807599999010563, 258529.367899999022484 ], [ 353399.213299997150898, 258561.755100000649691 ], [ 353396.769199997186661, 258564.690499998629093 ], [ 353395.950300000607967, 258566.161400001496077 ], [ 353395.890900000929832, 258573.127000000327826 ], [ 353397.428000003099442, 258582.005499999970198 ], [ 353399.818199999630451, 258585.40260000154376 ], [ 353403.027199998497963, 258587.328699998557568 ], [ 353407.055200003087521, 258587.7837999984622 ], [ 353424.837200000882149, 258582.863099999725819 ], [ 353454.364399999380112, 258524.420800000429153 ], [ 353490.453500002622604, 258452.944400001317263 ], [ 353509.320600003004074, 258415.313000001013279 ], [ 353519.989699997007847, 258393.446600001305342 ], [ 353534.756800003349781, 258363.803300000727177 ], [ 353538.037799999117851, 258357.286200001835823 ], [ 353533.201700001955032, 258357.035599999129772 ], [ 353525.801100000739098, 258373.862500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501011900", "MAP": "D9-4441-T88", "PARCEL_NAM": "9K", "ACRE": ".602", "LONGITUDE": -64.99309125000001, "LATITUDE": 18.35691634, "OBJECTID_1": 1971, "PARCEL_NO_": "102501011900", "Tax_Legal_": "BONNE ESPERANCE 9K WEST END QTR", "Name": "BURNETT, DEREK M.", "Address": "PO BOX 307679", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70200, "Improved_V": 217700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.10873941, "SHAPE_Area": 3114.91654629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352247.836400002241135, 258566.323899999260902 ], [ 352261.065600000321865, 258565.000999998301268 ], [ 352288.809500001370907, 258565.754799999296665 ], [ 352206.019299998879433, 258522.490100000053644 ], [ 352195.059199996292591, 258516.762600000947714 ], [ 352190.157200001180172, 258514.200899999588728 ], [ 352185.959299996495247, 258522.9054000005126 ], [ 352182.34009999781847, 258543.496899999678135 ], [ 352181.742600001394749, 258544.613499999046326 ], [ 352179.239100001752377, 258554.514499999582767 ], [ 352178.396799996495247, 258558.729400001466274 ], [ 352178.269599996507168, 258573.669199999421835 ], [ 352182.615199998021126, 258573.5185999982059 ], [ 352185.659199997782707, 258571.615600001066923 ], [ 352193.861299999058247, 258569.7635000012815 ], [ 352204.444700002670288, 258568.440600000321865 ], [ 352221.113499999046326, 258567.911400001496077 ], [ 352233.284299999475479, 258567.11769999936223 ], [ 352247.836400002241135, 258566.323899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98740333000001, "LATITUDE": 18.35667008, "OBJECTID_1": 1994, "PARCEL_NO_": "102502021500", "Tax_Legal_": "BONNE ESPERANCE 14-H WEST END", "Name": "GREAUX, LOUIS JR., JULIET J. F. & BANKS, DIANA E.", "Address": "PO Box 7212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 588.71469618100002, "SHAPE_Area": 8628.1518675400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352903.676299996674061, 258517.16950000077486 ], [ 352808.973800003528595, 258464.465300001204014 ], [ 352833.503799997270107, 258519.339299999177456 ], [ 352826.103100001811981, 258536.166299998760223 ], [ 352818.8733000010252, 258532.940699998289347 ], [ 352824.614600002765656, 258521.588599998503923 ], [ 352799.299900002777576, 258464.17509999871254 ], [ 352780.418399997055531, 258503.495000001043081 ], [ 352768.098999999463558, 258529.780900001525879 ], [ 352755.788500003516674, 258555.011399999260902 ], [ 352744.291500002145767, 258579.404100000858307 ], [ 352794.353000000119209, 258571.581199999898672 ], [ 352841.986599996685982, 258564.7939000017941 ], [ 352857.578100003302097, 258533.046399999409914 ], [ 352895.469400003552437, 258533.989799998700619 ], [ 352903.676299996674061, 258517.16950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98484759, "LATITUDE": 18.35634162, "OBJECTID_1": 2104, "PARCEL_NO_": "102504013100", "Tax_Legal_": "BONNE ESPERANCE 2-21 WEST END QTR", "Name": "OTTLEY, JAMILAH", "Address": "PO Box 10418", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39500, "Improved_V": 85700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 339.67752402100001, "SHAPE_Area": 2048.6170769400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353112.372800000011921, 258535.131700001657009 ], [ 353105.927699998021126, 258534.445700000971556 ], [ 353100.305100001394749, 258531.866599999368191 ], [ 353095.524800002574921, 258525.072399999946356 ], [ 353091.789899997413158, 258490.211399998515844 ], [ 353093.079899996519089, 258433.437800001353025 ], [ 353064.828400000929832, 258436.795200001448393 ], [ 353067.997900001704693, 258443.364999998360872 ], [ 353069.571000002324581, 258448.021999999880791 ], [ 353070.352099999785423, 258450.98369999974966 ], [ 353075.791299998760223, 258475.0929000005126 ], [ 353081.98650000244379, 258505.11879999935627 ], [ 353097.646999999880791, 258559.920299999415874 ], [ 353099.196699999272823, 258567.321199998259544 ], [ 353101.489799998700619, 258582.116500001400709 ], [ 353112.372800000011921, 258535.131700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98446691, "LATITUDE": 18.35504105, "OBJECTID_1": 2112, "PARCEL_NO_": "102504013900", "Tax_Legal_": "BONNE ESPERANCE 2-24 WEST END QTR", "Name": "DANET, ROSEMARIE & C", "Address": "BOX 4556", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 889.4735934, "SHAPE_Area": 4940.0837961200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353149.793600000441074, 258307.457899998873472 ], [ 353157.754199996590614, 258319.555399999022484 ], [ 353097.582699999213219, 258203.704900000244379 ], [ 353090.402000002563, 258214.090799998492002 ], [ 353081.952899999916553, 258225.209399998188019 ], [ 353071.380999997258186, 258235.677600000053644 ], [ 353108.838899999856949, 258287.49100000038743 ], [ 353122.551600001752377, 258286.969900000840425 ], [ 353129.795800000429153, 258288.506900001317263 ], [ 353141.028499998152256, 258295.142700001597404 ], [ 353149.793600000441074, 258307.457899998873472 ] ] ], [ [ [ 353157.754199996590614, 258319.555399999022484 ], [ 353163.270700000226498, 258334.588199999183416 ], [ 353169.598999999463558, 258348.994300000369549 ], [ 353171.940600000321865, 258358.090500000864267 ], [ 353174.327200002968311, 258361.909699998795986 ], [ 353181.423900000751019, 258380.755100000649691 ], [ 353184.517899997532368, 258396.19029999896884 ], [ 353183.596500001847744, 258409.692699998617172 ], [ 353181.901199996471405, 258419.389199998229742 ], [ 353181.069700002670288, 258422.337699998170137 ], [ 353175.299599997699261, 258437.06700000166893 ], [ 353167.934900000691414, 258449.6722999997437 ], [ 353163.039499998092651, 258456.387299999594688 ], [ 353158.930600002408028, 258465.430599998682737 ], [ 353156.473899997770786, 258469.843499999493361 ], [ 353150.739799998700619, 258480.351199999451637 ], [ 353148.281300000846386, 258484.97520000115037 ], [ 353146.65429999679327, 258486.650600001215935 ], [ 353145.822800002992153, 258489.59910000115633 ], [ 353142.559799998998642, 258494.005399998277426 ], [ 353140.106700003147125, 258497.996100001037121 ], [ 353139.282399997115135, 258500.100299999117851 ], [ 353136.814900003373623, 258505.779599998146296 ], [ 353124.542199999094009, 258526.577399998903275 ], [ 353122.91160000115633, 258528.675000000745058 ], [ 353119.661200001835823, 258531.603700000792742 ], [ 353117.229699999094009, 258533.061500001698732 ], [ 353112.373800002038479, 258535.132699999958277 ], [ 353101.490699999034405, 258582.117499999701977 ], [ 353201.247100003063679, 258410.836199998855591 ], [ 353157.754199996590614, 258319.555399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98135525, "LATITUDE": 18.3568741, "OBJECTID_1": 2256, "PARCEL_NO_": "102601024800", "Tax_Legal_": "PEARL 37-43 S S QTR", "Name": "MONTEZ, JR JUAN & JULIANA", "Address": "PO Box 1851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040804, "Country": "United States", "Land_Value": 73800, "Improved_V": 232600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.89433976500001, "SHAPE_Area": 1807.4318571399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353476.075499996542931, 258531.564599998295307 ], [ 353454.364399999380112, 258524.420800000429153 ], [ 353424.837200000882149, 258582.863099999725819 ], [ 353482.223899997770786, 258567.078600000590086 ], [ 353476.075499996542931, 258531.564599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501011100", "MAP": "D9-463-T65", "PARCEL_NAM": "6", "ACRE": ".58", "LONGITUDE": -64.99408869, "LATITUDE": 18.3569011, "OBJECTID_1": 1964, "PARCEL_NO_": "102501011100", "Tax_Legal_": "BONNE ESPERANCE 6 WEST END QTR", "Name": "ANDERSON, LORI & BARBARA", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 82600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.319976547, "SHAPE_Area": 888.075880676 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352130.497400000691414, 258559.756700001657009 ], [ 352129.274300001561642, 258533.683600001037121 ], [ 352126.547100000083447, 258534.023699998855591 ], [ 352084.417599998414516, 258539.276799999177456 ], [ 352089.350699998438358, 258545.9510000012815 ], [ 352094.113200001418591, 258553.8885000012815 ], [ 352106.284100003540516, 258558.915600001811981 ], [ 352119.513300001621246, 258560.238499999046326 ], [ 352127.771499998867512, 258559.876299999654293 ], [ 352130.497400000691414, 258559.756700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501011300", "MAP": "D9-463-T65", "PARCEL_NAM": "6A", "ACRE": ".58", "LONGITUDE": -64.9937122, "LATITUDE": 18.35686645, "OBJECTID_1": 1966, "PARCEL_NO_": "102501011300", "Tax_Legal_": "BONNE ESPERANCE 6A WEST END QTR", "Name": "ROBERTS, LUBIN & DELREASE", "Address": "PO Box 11762", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.51133613, "SHAPE_Area": 1138.9943568900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352177.014399997889996, 258531.698100000619888 ], [ 352178.194499999284744, 258527.583799999207258 ], [ 352177.028200000524521, 258527.729200001806021 ], [ 352172.57599999755621, 258528.284299999475479 ], [ 352129.274300001561642, 258533.683600001037121 ], [ 352130.497400000691414, 258559.756700001657009 ], [ 352149.675800003111362, 258558.915600001811981 ], [ 352159.465400002896786, 258556.534299999475479 ], [ 352168.196699999272823, 258550.713500000536442 ], [ 352172.88570000231266, 258543.063400000333786 ], [ 352177.014399997889996, 258531.698100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00562948, "LATITUDE": 18.35689007, "OBJECTID_1": 1478, "PARCEL_NO_": "102402021900", "Tax_Legal_": "51-1 ESTATE FORTUNA WEST END QTR", "Name": "LEWIS, TIFFANY SHIRLEY & JUANITA", "Address": "PO Box 503117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 105800, "Improved_V": 370400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.46183247300002, "SHAPE_Area": 4218.2517681700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350888.753600001335144, 258494.556600000709295 ], [ 350830.98759999871254, 258554.878699999302626 ], [ 350865.166599996387959, 258568.375799998641014 ], [ 350896.320500001311302, 258552.880300000309944 ], [ 350954.464900001883507, 258542.801500000059605 ], [ 350975.427199997007847, 258543.184200000017881 ], [ 350956.946699999272823, 258535.433600001037121 ], [ 350944.117700003087521, 258526.884799998253584 ], [ 350936.090499997138977, 258522.597199998795986 ], [ 350928.047200001776218, 258520.209399998188019 ], [ 350915.1587999984622, 258518.626200001686811 ], [ 350903.904500000178814, 258514.523400001227856 ], [ 350899.097199998795986, 258510.895399998873472 ], [ 350894.306100003421307, 258505.367800001055002 ], [ 350893.517800003290176, 258503.250399999320507 ], [ 350888.753600001335144, 258494.556600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601031200", "MAP": "D9-800-T69", "PARCEL_NAM": "2C-5", "ACRE": ".43", "LONGITUDE": -64.97474733, "LATITUDE": 18.35662256, "OBJECTID_1": 2286, "PARCEL_NO_": "102601031200", "Tax_Legal_": "CROWN & HAWK 2C-5 S S QTR", "Name": "ELIZABETH R. SHEAHAN REVOCABLE TRUST", "Address": "PO BOX 3540", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88600, "Improved_V": 361200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.40477342700001, "SHAPE_Area": 1791.4323412000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354174.578000001609325, 258537.6875 ], [ 354196.709399998188019, 258511.783399999141693 ], [ 354139.6537000015378, 258517.488200001418591 ], [ 354135.721400000154972, 258522.635899998247623 ], [ 354125.429499998688698, 258536.353900000452995 ], [ 354125.368299998342991, 258543.530600000172853 ], [ 354130.161200001835823, 258548.847199998795986 ], [ 354140.596500001847744, 258554.421000000089407 ], [ 354149.462399996817112, 258554.915800001472235 ], [ 354157.543499998748302, 258552.870999999344349 ], [ 354164.841700002551079, 258548.075500000268221 ], [ 354168.914599999785423, 258543.253699999302626 ], [ 354174.578000001609325, 258537.6875 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402030100", "MAP": "F9-523-T65", "PARCEL_NAM": "57-1", "ACRE": ".95", "LONGITUDE": -65.00432156, "LATITUDE": 18.35665688, "OBJECTID_1": 1498, "PARCEL_NO_": "102402030100", "Tax_Legal_": "FORTUNA 57-1 WEST END QTR", "Name": "THOMPSON, EDMUND & K", "Address": "7569 Est Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.32062736400002, "SHAPE_Area": 4076.6359641499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351074.801399998366833, 258520.777199998497963 ], [ 351048.371100001037121, 258499.662599999457598 ], [ 351050.285899996757507, 258464.214600000530481 ], [ 351027.700099997222424, 258465.085200000554323 ], [ 351022.8496999964118, 258466.523200001567602 ], [ 351017.977600000798702, 258470.494100000709295 ], [ 351014.716399997472763, 258474.6891999989748 ], [ 351012.245300002396107, 258480.790699999779463 ], [ 351010.537399999797344, 258491.964699998497963 ], [ 350991.472499996423721, 258552.814699999988079 ], [ 350990.649999998509884, 258554.707800000905991 ], [ 350991.42400000244379, 258558.513799998909235 ], [ 351000.370700001716614, 258549.510000001639128 ], [ 351033.470899999141693, 258544.925799999386072 ], [ 351049.62950000166893, 258541.258400000631809 ], [ 351074.801399998366833, 258520.777199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00613065, "LATITUDE": 18.3566649, "OBJECTID_1": 1479, "PARCEL_NO_": "102402022000", "Tax_Legal_": "FORTUNA 51-2 WEST END QUARTER", "Name": "CONNOR, HUBERT & MERCER, CARME", "Address": "PO Box 305052", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104300, "Improved_V": 234400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.13315237199998, "SHAPE_Area": 4807.7617430299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350856.815800003707409, 258457.353799998760223 ], [ 350788.450800001621246, 258531.310300000011921 ], [ 350800.360299997031689, 258553.150400001555681 ], [ 350830.98759999871254, 258554.878699999302626 ], [ 350888.753600001335144, 258494.556600000709295 ], [ 350877.61089999973774, 258477.366799999028444 ], [ 350856.815800003707409, 258457.353799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99279006, "LATITUDE": 18.35671125, "OBJECTID_1": 1972, "PARCEL_NO_": "102501012000", "Tax_Legal_": "BONNE ESPERANCE 9J WEST END QTR", "Name": "MCEVOY, CELIA R. (LIFE ESTATE)", "Address": "PO Box 8627", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.85399004800001, "SHAPE_Area": 3216.5301247500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352220.528800003230572, 258501.722300000488758 ], [ 352209.736400000751019, 258498.855099998414516 ], [ 352203.915500000119209, 258500.442600000649691 ], [ 352196.943099997937679, 258502.405200000852346 ], [ 352192.803000003099442, 258508.909200001507998 ], [ 352190.157200001180172, 258514.200899999588728 ], [ 352195.059199996292591, 258516.762600000947714 ], [ 352206.019299998879433, 258522.490100000053644 ], [ 352288.809500001370907, 258565.754799999296665 ], [ 352291.559299997985363, 258526.936099998652935 ], [ 352292.41780000180006, 258520.821400001645088 ], [ 352230.382600001990795, 258504.340199999511242 ], [ 352220.528800003230572, 258501.722300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503012400", "MAP": "G9-2620-T77", "PARCEL_NAM": "12B", "ACRE": ".35", "LONGITUDE": -64.99217459, "LATITUDE": 18.35684391, "OBJECTID_1": 2074, "PARCEL_NO_": "102503012400", "Tax_Legal_": "BONNE ESPERANCE 12B WEST END QTR", "Name": "REVAN, ERICSON", "Address": "2105 Bonne Esperance", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46100, "Improved_V": 162900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.64607321899999, "SHAPE_Area": 2032.02068033 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352346.9341000020504, 258557.997900001704693 ], [ 352326.317100003361702, 258517.088100001215935 ], [ 352292.41780000180006, 258520.821400001645088 ], [ 352291.559299997985363, 258526.936099998652935 ], [ 352288.809500001370907, 258565.754799999296665 ], [ 352346.9341000020504, 258557.997900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302010500", "MAP": "D9-5601-T93", "PARCEL_NAM": "119", "ACRE": "6.23", "LONGITUDE": -65.02159709, "LATITUDE": 18.35582121, "OBJECTID_1": 1185, "PARCEL_NO_": "102302010500", "Tax_Legal_": "BORDEAUX 119 & 120 REM. WEST END QUARTER", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1069400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 701.59252739199997, "SHAPE_Area": 22931.615657800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349189.193000003695488, 258274.197000000625849 ], [ 349138.251400001347065, 258290.667500000447035 ], [ 349140.627199999988079, 258295.753199998289347 ], [ 349150.893500000238419, 258321.168499998748302 ], [ 349156.368600003421307, 258341.056099999696016 ], [ 349160.297700002789497, 258353.12049999833107 ], [ 349161.076999999582767, 258356.293299999088049 ], [ 349165.715300001204014, 258379.762699998915195 ], [ 349166.483900003135204, 258384.201900001615286 ], [ 349168.667199999094009, 258411.873100001364946 ], [ 349170.166599996387959, 258425.184200000017881 ], [ 349169.230800002813339, 258440.375300001353025 ], [ 349167.528300002217293, 258450.916000001132488 ], [ 349160.827799998223782, 258480.203200001269579 ], [ 349159.996299996972084, 258483.151700001209974 ], [ 349155.025399997830391, 258498.73200000077486 ], [ 349152.547100000083447, 258505.677799999713898 ], [ 349147.604900002479553, 258517.880699999630451 ], [ 349147.586999997496605, 258519.991500001400709 ], [ 349145.958099998533726, 258521.877999998629093 ], [ 349139.365599997341633, 258538.500500001013279 ], [ 349230.653300002217293, 258518.771499998867512 ], [ 349271.508400000631809, 258455.777800001204014 ], [ 349264.489000000059605, 258427.855999998748302 ], [ 349250.509400002658367, 258365.046799998730421 ], [ 349253.401299998164177, 258309.55290000140667 ], [ 349189.193000003695488, 258274.197000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604010500", "MAP": "A3-5-T30", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.97264971, "LATITUDE": 18.35564562, "OBJECTID_1": 2650, "PARCEL_NO_": "102604010500", "Tax_Legal_": "No.2 CROWN & HAWK SOUTHSIDE QUARTER", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 966000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2344.6959053, "SHAPE_Area": 60536.220836100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354403.30290000140667, 258518.889299999922514 ], [ 354409.411200001835823, 258518.54109999909997 ], [ 354421.648199997842312, 258524.163499999791384 ], [ 354432.231600001454353, 258522.509899999946356 ], [ 354440.899499997496605, 258533.541799999773502 ], [ 354442.767099998891354, 258535.918800000101328 ], [ 354458.032799996435642, 258530.53940000012517 ], [ 354485.284999996423721, 258529.216499999165535 ], [ 354548.615099996328354, 258544.902399998158216 ], [ 354551.773599997162819, 258531.291600000113249 ], [ 354552.6266999989748, 258525.810199998319149 ], [ 354552.8766999989748, 258496.470199998468161 ], [ 354550.508100003004074, 258490.540199998766184 ], [ 354548.943999998271465, 258484.827899999916553 ], [ 354544.964599996805191, 258478.673599999397993 ], [ 354537.761699996888638, 258472.281800001859665 ], [ 354528.141699999570847, 258465.659200001507998 ], [ 354483.088899999856949, 258453.469200000166893 ], [ 354474.260799996554852, 258448.541799999773502 ], [ 354467.070500001311302, 258440.672499999403954 ], [ 354451.253600001335144, 258404.234999999403954 ], [ 354444.081299997866154, 258394.254900000989437 ], [ 354435.280199997127056, 258386.161299999803305 ], [ 354361.451899997889996, 258344.182700000703335 ], [ 354319.663900002837181, 258327.375399999320507 ], [ 354308.397100001573563, 258324.75 ], [ 354297.101499997079372, 258325.502000000327826 ], [ 354286.588899999856949, 258329.00450000166893 ], [ 354280.109600000083447, 258332.328999999910593 ], [ 354275.23759999871254, 258336.299899999052286 ], [ 354269.534100003540516, 258343.219300001859665 ], [ 354256.444200001657009, 258365.276999998837709 ], [ 354246.6858000010252, 258374.907400000840425 ], [ 354243.446099996566772, 258376.569699998944998 ], [ 354237.776799999177456, 258379.47859999909997 ], [ 354230.493000000715256, 258382.585400000214577 ], [ 354222.437100000679493, 258381.675000000745058 ], [ 354216.821599997580051, 258378.251600001007318 ], [ 354213.632399998605251, 258374.003600001335144 ], [ 354212.109600000083447, 258363.436500001698732 ], [ 354225.535700000822544, 258301.907000001519918 ], [ 354226.473300002515316, 258286.504900000989437 ], [ 354224.923600003123283, 258279.103900000452995 ], [ 354223.330799996852875, 258276.768899999558926 ], [ 354222.558600001037121, 258272.751800000667572 ], [ 354218.577399998903275, 258266.808600001037121 ], [ 354207.215300001204014, 258275.370400000363588 ], [ 354205.579300001263618, 258278.101199999451637 ], [ 354204.688500002026558, 258288.015299998223782 ], [ 354195.536700002849102, 258321.082100000232458 ], [ 354198.283699996769428, 258377.255499999970198 ], [ 354217.435599997639656, 258400.843600001186132 ], [ 354251.74379999935627, 258443.765299998223782 ], [ 354271.666000001132488, 258471.581599999219179 ], [ 354292.232699997723103, 258518.401599999517202 ], [ 354315.243600003421307, 258562.286299999803305 ], [ 354321.430100001394749, 258569.974800001829863 ], [ 354345.580399997532368, 258522.179200001060963 ], [ 354380.376800000667572, 258520.195999998599291 ], [ 354403.30290000140667, 258518.889299999922514 ] ] ], [ [ [ 354367.306500002741814, 258319.532699998468161 ], [ 354256.244800001382828, 258281.723799999803305 ], [ 354245.279200002551079, 258256.050200000405312 ], [ 354244.449500001966953, 258258.78770000115037 ], [ 354240.346000000834465, 258267.197799999266863 ], [ 354237.855200000107288, 258275.621199999004602 ], [ 354237.014700002968311, 258279.625100001692772 ], [ 354236.165200002491474, 258284.684399999678135 ], [ 354234.392599999904633, 258303.45719999819994 ], [ 354220.959299996495247, 258365.830899998545647 ], [ 354221.733300000429153, 258369.636999998241663 ], [ 354224.931500002741814, 258372.829500000923872 ], [ 354229.763999998569489, 258373.502399999648333 ], [ 354243.536100000143051, 258366.015700001269579 ], [ 354249.236000001430511, 258359.518500000238419 ], [ 354260.691600002348423, 258339.980500001460314 ], [ 354272.089699998497963, 258327.19709999859333 ], [ 354288.295000001788139, 258318.041600000113249 ], [ 354295.568000003695488, 258316.201299998909235 ], [ 354306.057300001382828, 258315.442800000309944 ], [ 354315.722199998795986, 258316.788400001823902 ], [ 354323.767399996519089, 258318.965199999511242 ], [ 354365.553599998354912, 258335.983600001782179 ], [ 354436.172799997031689, 258376.036100000143051 ], [ 354438.579199999570847, 258377.533399999141693 ], [ 354446.59009999781847, 258383.72069999948144 ], [ 354455.380500003695488, 258393.080800000578165 ], [ 354458.548199996352196, 258399.861699998378754 ], [ 354460.940099999308586, 258403.047699999064207 ], [ 354472.78490000218153, 258432.486600000411272 ], [ 354478.367899999022484, 258439.709499999880791 ], [ 354482.377899996936321, 258442.275499999523163 ], [ 354487.995099999010563, 258445.487799998372793 ], [ 354528.224399998784065, 258455.949599999934435 ], [ 354534.647900000214577, 258459.168600000441074 ], [ 354537.858800001442432, 258460.883600000292063 ], [ 354544.273299999535084, 258465.157999999821186 ], [ 354551.463600002229214, 258473.027300000190735 ], [ 354557.836800001561642, 258482.156500000506639 ], [ 354560.988300003111362, 258490.837099999189377 ], [ 354562.525399997830391, 258499.715599998831749 ], [ 354561.472800001502037, 258528.626800000667572 ], [ 354560.625100001692772, 258533.475000001490116 ], [ 354557.282999999821186, 258547.168699998408556 ], [ 354579.706699997186661, 258552.359999999403954 ], [ 354589.408900000154972, 258467.638300001621246 ], [ 354438.886600002646446, 258341.438999999314547 ], [ 354367.306500002741814, 258319.532699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601024300", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97795804, "LATITUDE": 18.3568423, "OBJECTID_1": 2251, "PARCEL_NO_": "102601024300", "Tax_Legal_": "PEARL 37-8 S S QTR", "Name": "DEGRAFF, DWAYNE M.", "Address": "PO Box 307593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76100, "Improved_V": 241700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.087670159, "SHAPE_Area": 1585.7371691599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353799.44990000128746, 258529.144999999552965 ], [ 353795.86150000244379, 258571.756499998271465 ], [ 353840.176299996674061, 258575.9189000017941 ], [ 353835.550599999725819, 258550.971999999135733 ], [ 353833.183799996972084, 258544.830899998545647 ], [ 353830.0016999989748, 258539.738600000739098 ], [ 353823.601599998772144, 258533.775600001215935 ], [ 353815.567199997603893, 258530.332400001585484 ], [ 353812.352700002491474, 258529.039500001817942 ], [ 353802.675200000405312, 258529.171399999409914 ], [ 353799.44990000128746, 258529.144999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601024400", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97831131, "LATITUDE": 18.35684449, "OBJECTID_1": 2252, "PARCEL_NO_": "102601024400", "Tax_Legal_": "PEARL 37-7. S S QTR", "Name": "DE LAGARDE, VERNELLE S.", "Address": "PO Box 837", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61800, "Improved_V": 396100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.73087110700001, "SHAPE_Area": 1312.0446828300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353799.44990000128746, 258529.144999999552965 ], [ 353793.798600003123283, 258529.94310000166297 ], [ 353759.769799999892712, 258548.874099999666214 ], [ 353758.144599996507168, 258550.338500000536442 ], [ 353758.104999996721745, 258554.982200000435114 ], [ 353750.002300001680851, 258559.559900000691414 ], [ 353750.74210000038147, 258567.376499999314547 ], [ 353795.86150000244379, 258571.756499998271465 ], [ 353799.44990000128746, 258529.144999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501011600", "MAP": "G9-2620-T77", "PARCEL_NAM": "12", "ACRE": ".528", "LONGITUDE": -64.99187026, "LATITUDE": 18.35654434, "OBJECTID_1": 1969, "PARCEL_NO_": "102501011600", "Tax_Legal_": "BONNE ESPERANCE 12 WEST END QTR", "Name": "REVAN, ERICSON", "Address": "2105 Bonne Esperance", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64200, "Improved_V": 111200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.62329915800001, "SHAPE_Area": 3328.0586665400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352319.651900000870228, 258447.583799999207258 ], [ 352326.317100003361702, 258517.088100001215935 ], [ 352346.9341000020504, 258557.997900001704693 ], [ 352373.5675999969244, 258555.260600000619888 ], [ 352360.514799997210503, 258478.315699998289347 ], [ 352332.421599999070168, 258463.098099999129772 ], [ 352322.830300003290176, 258453.098200000822544 ], [ 352319.651900000870228, 258447.583799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98096699, "LATITUDE": 18.35676665, "OBJECTID_1": 2255, "PARCEL_NO_": "102601024700", "Tax_Legal_": "PEARL 37-44 S S QTR", "Name": "BAA, JULIEN K. & ALCINDOR O", "Address": "P.O. BOX 5988, V.D.S", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56700, "Improved_V": 202100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.03763905299999, "SHAPE_Area": 1481.9952629500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353521.034800000488758, 258554.730599999427795 ], [ 353513.284500002861023, 258517.936900001019239 ], [ 353504.38629999756813, 258521.241599999368191 ], [ 353476.075499996542931, 258531.564599998295307 ], [ 353482.223899997770786, 258567.078600000590086 ], [ 353503.238399997353554, 258561.339999999850988 ], [ 353521.034800000488758, 258554.730599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99152766, "LATITUDE": 18.35664307, "OBJECTID_1": 1976, "PARCEL_NO_": "102501012500", "Tax_Legal_": "BONNE ESPERANCE 16A WEST END QTR", "Name": "LEWIS, ALBERT & MINNIE", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.820620641, "SHAPE_Area": 2051.5982887300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352360.514799997210503, 258478.315699998289347 ], [ 352373.5675999969244, 258555.260600000619888 ], [ 352393.743400000035763, 258553.314800001680851 ], [ 352405.058799996972084, 258550.24100000038743 ], [ 352393.424400001764297, 258496.105799999088049 ], [ 352360.514799997210503, 258478.315699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98293735, "LATITUDE": 18.35677121, "OBJECTID_1": 2031, "PARCEL_NO_": "102502033800", "Tax_Legal_": "SANTA MARIA 4B-7 WEST END QUARTER", "Name": "MOHAMED, DERYK", "Address": "4109 Estate Fortuna Ml", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.46273927, "SHAPE_Area": 1348.8068327599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353310.021899998188019, 258524.717099998146296 ], [ 353277.785599999129772, 258522.553399998694658 ], [ 353262.968000002205372, 258558.106899999082088 ], [ 353268.623000003397465, 258556.886599998921156 ], [ 353271.074299998581409, 258553.10700000077486 ], [ 353279.131999999284744, 258553.80629999935627 ], [ 353280.712300002574921, 258557.618900001049042 ], [ 353284.722300000488758, 258560.184799998998642 ], [ 353297.617899999022484, 258560.923599999397993 ], [ 353308.112499997019768, 258559.531899999827147 ], [ 353310.021899998188019, 258524.717099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601025700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98263911, "LATITUDE": 18.35676452, "OBJECTID_1": 2265, "PARCEL_NO_": "102601025700", "Tax_Legal_": "SANTA MARIA 4B-06 WEST END QUARTER", "Name": "HEYLIGER, BARBARA ANN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34300, "Improved_V": 190600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.720793781, "SHAPE_Area": 828.22859766 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353337.420299999415874, 258526.8412000015378 ], [ 353310.021899998188019, 258524.717099998146296 ], [ 353308.112499997019768, 258559.531899999827147 ], [ 353332.330700002610683, 258556.352600000798702 ], [ 353337.420299999415874, 258526.8412000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98815042, "LATITUDE": 18.35666897, "OBJECTID_1": 1989, "PARCEL_NO_": "102502020900", "Tax_Legal_": "BONNE ESPERANCE 17F WEST END QTR.", "Name": "BLYDEN, THELMA & TESHA M.", "Address": "PO Box 306223", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.31379101300001, "SHAPE_Area": 1542.7616136300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352768.098999999463558, 258529.780900001525879 ], [ 352723.215199999511242, 258497.749499998986721 ], [ 352710.101999998092651, 258522.551199998706579 ], [ 352755.788500003516674, 258555.011399999260902 ], [ 352768.098999999463558, 258529.780900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501012300", "MAP": "G9-2796-T78", "PARCEL_NAM": "16", "ACRE": null, "LONGITUDE": -64.99112388, "LATITUDE": 18.3566162, "OBJECTID_1": 1975, "PARCEL_NO_": "102501012300", "Tax_Legal_": "BONNE ESPERANCE 16 WEST END QTR", "Name": "CECILIA ANN QUETEL REVOCABLE FAMILY TRUST", "Address": "PO Box 305746", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61600, "Improved_V": 173800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.42897200600001, "SHAPE_Area": 2892.5891016300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352445.813100002706051, 258499.067699998617172 ], [ 352395.920699998736382, 258487.049199998378754 ], [ 352393.424400001764297, 258496.105799999088049 ], [ 352405.058799996972084, 258550.24100000038743 ], [ 352434.15429999679327, 258542.457499999552965 ], [ 352435.777800001204014, 258541.204300001263618 ], [ 352462.465199999511242, 258532.13459999859333 ], [ 352455.38459999859333, 258511.389499999582767 ], [ 352458.689000003039837, 258502.128400001674891 ], [ 352445.813100002706051, 258499.067699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98237494, "LATITUDE": 18.35676088, "OBJECTID_1": 2264, "PARCEL_NO_": "102601025600", "Tax_Legal_": "SANTA MARIA4B-5 No.1 WESTEND QTR.", "Name": "WILKINSON, VENESSA E", "Address": "PO Box 303890", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.825176222, "SHAPE_Area": 806.01727315100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353342.256399996578693, 258527.09180000051856 ], [ 353337.420299999415874, 258526.8412000015378 ], [ 353332.330700002610683, 258556.352600000798702 ], [ 353365.429099999368191, 258551.979400001466274 ], [ 353365.626900002360344, 258528.760800000280142 ], [ 353342.256399996578693, 258527.09180000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601024500", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97883584, "LATITUDE": 18.35660085, "OBJECTID_1": 2253, "PARCEL_NO_": "102601024500", "Tax_Legal_": "PEARL 37-5 S S QTR", "Name": "JOSEPH, GRACE & OTHERS", "Address": "PO Box 104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 120900, "Improved_V": 248700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.91050428, "SHAPE_Area": 3274.5364297000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353765.498499996960163, 258538.999600000679493 ], [ 353738.481299996376038, 258492.126800000667572 ], [ 353702.073100000619888, 258506.394299998879433 ], [ 353685.875, 258514.705400001257658 ], [ 353677.783100001513958, 258518.016699999570847 ], [ 353712.129000000655651, 258556.505800001323223 ], [ 353737.925599999725819, 258557.35020000115037 ], [ 353737.140900000929832, 258554.810600001364946 ], [ 353738.758900001645088, 258554.190600000321865 ], [ 353740.416500002145767, 258548.92680000141263 ], [ 353750.959700003266335, 258541.835900001227856 ], [ 353752.556100003421307, 258543.748799998313189 ], [ 353756.585900001227856, 258543.992899999022484 ], [ 353765.498499996960163, 258538.999600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604010100", "MAP": "D9-800-T69", "PARCEL_NAM": "2C-6", "ACRE": ".43", "LONGITUDE": -64.97451549, "LATITUDE": 18.35629777, "OBJECTID_1": 2647, "PARCEL_NO_": "102604010100", "Tax_Legal_": "CROWN & HAWK 2C-6 S S QTR", "Name": "PACQUETTE, ROLAND", "Address": "88 Garland Ave", "City": "OAKLAND", "State": "California", "Zip": 39611, "Country": "United States", "Land_Value": 38500, "Improved_V": 351100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.18138970699999, "SHAPE_Area": 1797.0669081599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354196.709399998188019, 258511.783399999141693 ], [ 354212.296599999070168, 258482.078499998897314 ], [ 354215.340700000524521, 258470.732900001108646 ], [ 354163.959700003266335, 258485.669399999082088 ], [ 354139.6537000015378, 258517.488200001418591 ], [ 354196.709399998188019, 258511.783399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98060199, "LATITUDE": 18.35662513, "OBJECTID_1": 2254, "PARCEL_NO_": "102601024600", "Tax_Legal_": "PEARL 37-45 S S QTR", "Name": "BAA, LORRAINE P", "Address": "PO Box 642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61400, "Improved_V": 253300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.59820377200001, "SHAPE_Area": 1549.56930898 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353556.157600000500679, 258502.033599998801947 ], [ 353513.284500002861023, 258517.936900001019239 ], [ 353521.034800000488758, 258554.730599999427795 ], [ 353544.509499996900558, 258544.157000001519918 ], [ 353558.287000000476837, 258536.037099998444319 ], [ 353559.951800003647804, 258529.929000001400709 ], [ 353556.868600003421307, 258513.227400001138449 ], [ 353556.157600000500679, 258502.033599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00501488, "LATITUDE": 18.35643154, "OBJECTID_1": 1481, "PARCEL_NO_": "102402022200", "Tax_Legal_": "52 1 FORTUNA WEST END QUARTER", "Name": "BERKELEY, ANTHONY & BIBIANA", "Address": "PO Box 11032", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 103300, "Improved_V": 236700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.06306590899999, "SHAPE_Area": 6074.7847551499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350954.597199998795986, 258432.611800000071526 ], [ 350899.241099998354912, 258494.009100001305342 ], [ 350902.406999997794628, 258501.0011 ], [ 350905.603500001132488, 258504.404800001531839 ], [ 350911.222499996423721, 258507.406100001186132 ], [ 350912.829700000584126, 258508.052499998360872 ], [ 350917.655000001192093, 258509.569600000977516 ], [ 350931.338899999856949, 258512.425900001078844 ], [ 350935.363300003111362, 258513.303199999034405 ], [ 350942.596799999475479, 258516.106600001454353 ], [ 350945.006700001657009, 258517.181800000369549 ], [ 350961.055600002408028, 258526.3902000002563 ], [ 350965.069200001657009, 258528.533900000154972 ], [ 350977.928800001740456, 258533.494300000369549 ], [ 350983.580200001597404, 258532.696199998259544 ], [ 350986.821699999272823, 258530.822900000959635 ], [ 350989.271200001239777, 258527.254399999976158 ], [ 351000.901199996471405, 258487.241799999028444 ], [ 351001.79559999704361, 258476.905499998480082 ], [ 350998.633299998939037, 258469.491399999707937 ], [ 350989.848399996757507, 258459.498100001364946 ], [ 350979.441799998283386, 258450.546999998390675 ], [ 350974.634499996900558, 258446.918999999761581 ], [ 350954.597199998795986, 258432.611800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00643455, "LATITUDE": 18.35633052, "OBJECTID_1": 1480, "PARCEL_NO_": "102402022100", "Tax_Legal_": "FORTUNA 54 1 WEST END QTR", "Name": "BRYANT, ROOSEVELT", "Address": "PO Box 502295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 118100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.41816333899999, "SHAPE_Area": 4836.7833049199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350819.233800001442432, 258420.104800000786781 ], [ 350762.247100003063679, 258483.599800001829863 ], [ 350788.450800001621246, 258531.310300000011921 ], [ 350856.815800003707409, 258457.353799998760223 ], [ 350823.223999999463558, 258424.992600001394749 ], [ 350819.233800001442432, 258420.104800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9820479, "LATITUDE": 18.35675426, "OBJECTID_1": 2263, "PARCEL_NO_": "102601025500", "Tax_Legal_": "SANTA MARIA 4B-4 No.1 WESTEND QTR.", "Name": "MALDONADO, JORGE", "Address": "PO Box 307647", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.78222431499999, "SHAPE_Area": 819.63158084400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353397.861400000751019, 258531.135499998927116 ], [ 353365.626900002360344, 258528.760800000280142 ], [ 353365.429099999368191, 258551.979400001466274 ], [ 353391.232900001108646, 258551.979499999433756 ], [ 353400.131099998950958, 258548.674899999052286 ], [ 353402.566200003027916, 258546.794900000095367 ], [ 353409.8733000010252, 258540.944099999964237 ], [ 353397.861400000751019, 258531.135499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00393053000001, "LATITUDE": 18.35646199, "OBJECTID_1": 1527, "PARCEL_NO_": "102402033700", "Tax_Legal_": "FORTUNA 57-2 WEST END QTR", "Name": "POOLE, CHARLOTTE", "Address": "PO BOX 302234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56500, "Improved_V": 232000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.705725323, "SHAPE_Area": 2077.7657221700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351090.347900003194809, 258520.037500001490116 ], [ 351092.894799999892712, 258487.372600000351667 ], [ 351086.943199999630451, 258462.942800000309944 ], [ 351081.733800001442432, 258464.260899998247623 ], [ 351073.661700002849102, 258465.250300001353025 ], [ 351050.285899996757507, 258464.214600000530481 ], [ 351048.371100001037121, 258499.662599999457598 ], [ 351074.801399998366833, 258520.777199998497963 ], [ 351090.347900003194809, 258520.037500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98306633, "LATITUDE": 18.36678652, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.84711004, "SHAPE_Area": 1162.3467419799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353283.431199997663498, 259658.282900001853704 ], [ 353278.859499998390675, 259627.003699999302626 ], [ 353265.132399998605251, 259629.213300000876188 ], [ 353254.646700002253056, 259629.549699999392033 ], [ 353253.4628000035882, 259673.869699999690056 ], [ 353283.355700001120567, 259667.148200001567602 ], [ 353283.431199997663498, 259658.282900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98378587000001, "LATITUDE": 18.36600765, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.43047013500001, "SHAPE_Area": 5538.1191602899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353162.898999996483326, 259513.963899999856949 ], [ 353154.79450000077486, 259518.752700001001358 ], [ 353141.796400003135204, 259530.045400001108646 ], [ 353127.945299997925758, 259546.819499999284744 ], [ 353212.896499998867512, 259608.30970000103116 ], [ 353215.322599999606609, 259607.485199999064207 ], [ 353250.100199997425079, 259595.31529999896884 ], [ 353262.252400003373623, 259588.659800000488758 ], [ 353263.875799998641014, 259587.406500000506639 ], [ 353162.898999996483326, 259513.963899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97408178000001, "LATITUDE": 18.36480826, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 642.93329479399995, "SHAPE_Area": 2848.5059305700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354082.074699997901917, 259429.239000000059605 ], [ 354096.584799997508526, 259429.780000001192093 ], [ 354110.318999998271465, 259426.725999999791384 ], [ 354136.212700001895428, 259416.172100000083447 ], [ 354165.371299996972084, 259401.000999998301268 ], [ 354174.256899997591972, 259399.173799999058247 ], [ 354183.930799998342991, 259399.464099999517202 ], [ 354195.195799998939037, 259402.300500001758337 ], [ 354243.353399999439716, 259428.659200001507998 ], [ 354257.782499998807907, 259438.698699999600649 ], [ 354271.374700002372265, 259452.319899998605251 ], [ 354277.756899997591972, 259460.393699999898672 ], [ 354279.349799998104572, 259462.728799998760223 ], [ 354284.117499999701977, 259471.000399999320507 ], [ 354288.906800001859665, 259476.739199999719858 ], [ 354291.273599997162819, 259482.880300000309944 ], [ 354295.222499996423721, 259492.622900001704693 ], [ 354296.793700002133846, 259497.490899998694658 ], [ 354299.133500002324581, 259506.798200000077486 ], [ 354300.668799996376038, 259515.887699998915195 ], [ 354301.352899998426437, 259530.247699998319149 ], [ 354302.078299999237061, 259539.75279999896884 ], [ 354310.947700001299381, 259539.825399998575449 ], [ 354309.559900000691414, 259513.427400000393391 ], [ 354306.465899996459484, 259497.992199998348951 ], [ 354303.318000003695488, 259488.889400001615286 ], [ 354298.587999999523163, 259476.185100000351667 ], [ 354295.414899997413158, 259470.037399999797344 ], [ 354287.452399998903275, 259458.151000000536442 ], [ 354271.491599999368191, 259438.599800001829863 ], [ 354257.879600003361702, 259427.300400000065565 ], [ 354247.455099999904633, 259420.460099998861551 ], [ 354222.572700001299381, 259406.957600001245737 ], [ 354196.887599997222424, 259393.026299998164177 ], [ 354186.437899999320507, 259389.141100000590086 ], [ 354170.293700002133846, 259391.119899999350309 ], [ 354167.872900001704693, 259391.311099998652935 ], [ 354157.362099997699261, 259394.602600000798702 ], [ 354134.679200001060963, 259406.871500000357628 ], [ 354107.165700003504753, 259418.256400000303984 ], [ 354095.854000002145767, 259420.908100001513958 ], [ 354085.375500001013279, 259420.400100000202656 ], [ 354082.074699997901917, 259429.239000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "F9-1487-T64", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.97534417, "LATITUDE": 18.36551703, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.01828735699999, "SHAPE_Area": 751.61560920700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354119.13570000231266, 259522.788899999111891 ], [ 354121.717699997127056, 259518.700699999928474 ], [ 354120.506899997591972, 259513.251899998635054 ], [ 354116.845799997448921, 259512.483399998396635 ], [ 354112.828599996864796, 259510.761799998581409 ], [ 354104.810400001704693, 259505.418800000101328 ], [ 354113.104800000786781, 259516.902100000530481 ], [ 354110.528899997472763, 259520.637200001627207 ], [ 354105.149599999189377, 259522.788899999111891 ], [ 354101.491700001060963, 259522.358600001782179 ], [ 354086.983300000429153, 259515.636500000953674 ], [ 354075.418499998748302, 259510.278299998492002 ], [ 354048.431800000369549, 259497.77479999884963 ], [ 354047.605400003492832, 259499.884399998933077 ], [ 354044.788800001144409, 259505.941500000655651 ], [ 354052.027300000190735, 259509.266600001603365 ], [ 354086.901100002229214, 259525.286299999803305 ], [ 354100.200699999928474, 259531.395700000226498 ], [ 354106.440700002014637, 259530.31980000063777 ], [ 354112.680600002408028, 259527.953000001609325 ], [ 354118.008299998939037, 259523.690799999982119 ], [ 354119.13570000231266, 259522.788899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003020900", "MAP": "D9-3589-T86", "PARCEL_NAM": "2B-2A", "ACRE": ".34", "LONGITUDE": -64.97603967000001, "LATITUDE": 18.36504674, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.48278247099999, "SHAPE_Area": 950.43890375800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353999.667199999094009, 259447.774099998176098 ], [ 353992.943400003015995, 259479.805300001055002 ], [ 354027.64360000193119, 259476.711800001561642 ], [ 354028.687299996614456, 259448.855999998748302 ], [ 354022.238600000739098, 259448.592099998146296 ], [ 353999.667199999094009, 259447.774099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003020900", "MAP": "D9-3589-T86", "PARCEL_NAM": "2B-2B", "ACRE": ".33", "LONGITUDE": -64.97573021, "LATITUDE": 18.36503597, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.822721027, "SHAPE_Area": 831.54908114900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354028.687299996614456, 259448.855999998748302 ], [ 354027.64360000193119, 259476.711800001561642 ], [ 354058.308700002729893, 259474.007500000298023 ], [ 354066.54619999974966, 259453.598799999803305 ], [ 354028.687299996614456, 259448.855999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99218461, "LATITUDE": 18.36077601, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2340.81257942, "SHAPE_Area": 10614.1423584 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352006.014700002968311, 258726.826699998229742 ], [ 352012.477700002491474, 258725.401900000870228 ], [ 352022.153499998152256, 258725.481100000441074 ], [ 352045.484399996697903, 258731.793800000101328 ], [ 352057.561099998652935, 258734.003600001335144 ], [ 352080.879399999976158, 258741.793800000101328 ], [ 352114.667199999094009, 258751.147300001233816 ], [ 352151.692900002002716, 258759.049800001084805 ], [ 352208.062799997627735, 258767.954900000244379 ], [ 352232.234200000762939, 258770.263599999248981 ], [ 352243.513599999248981, 258771.411400001496077 ], [ 352266.884099997580051, 258773.080299999564886 ], [ 352304.777199998497963, 258773.812699999660254 ], [ 352349.133299998939037, 258773.120200000703335 ], [ 352362.826300002634525, 258774.921000000089407 ], [ 352378.106600001454353, 258779.690200001001358 ], [ 352397.373599998652935, 258789.769299998879433 ], [ 352402.976499997079372, 258794.670299999415874 ], [ 352406.156800001859665, 258799.973600000143051 ], [ 352406.948700003325939, 258801.6689000017941 ], [ 352408.514600001275539, 258807.170099999755621 ], [ 352407.632700003683567, 258816.028799999505281 ], [ 352405.13289999961853, 258825.507599998265505 ], [ 352401.850100003182888, 258832.235700000077486 ], [ 352398.540299996733665, 258842.129999998956919 ], [ 352396.891699999570847, 258846.33839999884367 ], [ 352394.425999999046326, 258851.806600000709295 ], [ 352392.782799996435642, 258855.381799999624491 ], [ 352391.135999999940395, 258859.379099998623133 ], [ 352388.668499998748302, 258865.058400001376867 ], [ 352387.023599997162819, 258868.8445999994874 ], [ 352382.930900000035763, 258875.988299999386072 ], [ 352382.090400002896786, 258879.992199998348951 ], [ 352381.264300003647804, 258882.307500001043081 ], [ 352378.800399996340275, 258887.564699999988079 ], [ 352374.711300000548363, 258894.286200001835823 ], [ 352373.066299997270107, 258898.072399999946356 ], [ 352371.406900003552437, 258903.5472999997437 ], [ 352366.495300002396107, 258912.161899998784065 ], [ 352363.212499998509884, 258918.890000000596046 ], [ 352358.282899998128414, 258929.61540000140667 ], [ 352350.898500002920628, 258944.542599998414516 ], [ 352344.336499996483326, 258957.576699998229742 ], [ 352341.876199997961521, 258962.411800000816584 ], [ 352337.779899999499321, 258969.977600000798702 ], [ 352333.678199999034405, 258978.176699999719858 ], [ 352332.846699997782707, 258981.125199999660254 ], [ 352331.221500001847744, 258982.589499998837709 ], [ 352327.947700001299381, 258988.262299999594688 ], [ 352327.123400002717972, 258990.366500001400709 ], [ 352322.197400003671646, 259000.669700000435114 ], [ 352320.572200000286102, 259002.134100001305342 ], [ 352318.099299997091293, 259008.446600001305342 ], [ 352308.290500000119209, 259023.987300001084805 ], [ 352263.870300002396107, 259126.848499998450279 ], [ 352262.20549999922514, 259132.956599999219179 ], [ 352262.088699996471405, 259146.676699999719858 ], [ 352265.184399999678135, 259161.900800000876188 ], [ 352267.560199998319149, 259166.9864999987185 ], [ 352274.741499997675419, 259175.911200001835823 ], [ 352281.143500000238419, 259181.663100000470877 ], [ 352292.383299998939037, 259187.454599998891354 ], [ 352314.103399999439716, 259193.543000001460314 ], [ 352346.325300000607967, 259197.395300000905991 ], [ 352356.787600003182888, 259199.802999999374151 ], [ 352359.9966000020504, 259201.729100000113249 ], [ 352363.988600000739098, 259206.405799999833107 ], [ 352375.131399996578693, 259223.595600001513958 ], [ 352379.125200003385544, 259228.061200000345707 ], [ 352381.500900000333786, 259233.146899998188019 ], [ 352383.102799996733665, 259234.426600001752377 ], [ 352385.480400003492832, 259239.301199998706579 ], [ 352387.083999998867512, 259240.369800001382828 ], [ 352391.848099999129772, 259249.0636 ], [ 352397.429399996995926, 259256.497600000351667 ], [ 352414.128200002014637, 259284.076400000602007 ], [ 352422.115800000727177, 259293.007699999958277 ], [ 352434.9341000020504, 259302.822900000959635 ], [ 352443.763999998569489, 259307.539299998432398 ], [ 352477.546400003135204, 259317.526000000536442 ], [ 352534.638099998235703, 259336.358500000089407 ], [ 352548.386799998581409, 259331.615800000727177 ], [ 352508.188000001013279, 259317.565699998289347 ], [ 352444.652999997138977, 259297.836199998855591 ], [ 352436.627599999308586, 259293.337600000202656 ], [ 352429.42119999974966, 259287.368000000715256 ], [ 352422.229099996387959, 259279.709699999541044 ], [ 352403.14190000295639, 259248.522799998521805 ], [ 352401.540100000798702, 259247.243099998682737 ], [ 352396.77589999884367, 259238.549300000071526 ], [ 352384.819700002670288, 259222.197200000286102 ], [ 352380.055600002408028, 259213.503400001674891 ], [ 352364.901000000536442, 259193.958700001239777 ], [ 352359.281999997794628, 259190.957400001585484 ], [ 352349.622500002384186, 259188.978500001132488 ], [ 352312.569899998605251, 259184.242300000041723 ], [ 352293.268700003623962, 259178.173700001090765 ], [ 352286.848800003528595, 259174.532600000500679 ], [ 352278.848600000143051, 259167.07880000025034 ], [ 352274.869199998676777, 259160.924600001424551 ], [ 352272.515000000596046, 259153.305900000035763 ], [ 352271.056999996304512, 259135.139899998903275 ], [ 352272.718199998140335, 259129.453999999910593 ], [ 352316.3158999979496, 259028.48589999973774 ], [ 352331.043499998748302, 259003.486299999058247 ], [ 352331.875, 259000.537799999117851 ], [ 352335.955099999904633, 258994.871700000017881 ], [ 352339.248599998652935, 258986.877099998295307 ], [ 352340.87389999628067, 258985.412799999117851 ], [ 352342.529600001871586, 258980.360100001096725 ], [ 352348.247599996626377, 258971.752000000327826 ], [ 352353.184299997985363, 258960.182300001382828 ], [ 352355.630199998617172, 258957.035900000482798 ], [ 352360.56700000166893, 258945.4662000015378 ], [ 352377.790899999439716, 258911.410000000149012 ], [ 352381.894400000572205, 258902.999800000339746 ], [ 352383.555600002408028, 258897.313900001347065 ], [ 352388.47070000320673, 258888.277100000530481 ], [ 352390.115699999034405, 258884.490899998694658 ], [ 352391.76070000231266, 258880.704599998891354 ], [ 352393.405699998140335, 258876.918400000780821 ], [ 352395.869599997997284, 258871.661200001835823 ], [ 352396.695699997246265, 258869.346000000834465 ], [ 352398.355099998414516, 258863.871100001037121 ], [ 352399.985699996352196, 258861.773499999195337 ], [ 352400.824400000274181, 258857.980700001120567 ], [ 352403.273900002241135, 258854.412200000137091 ], [ 352405.762900002300739, 258846.19990000128746 ], [ 352407.395400002598763, 258843.891199998557568 ], [ 352413.174400001764297, 258828.106499999761581 ], [ 352415.629299998283386, 258823.904699999839067 ], [ 352417.405599996447563, 258804.709800001233816 ], [ 352415.047799997031689, 258797.513300001621246 ], [ 352413.463899999856949, 258794.122800000011921 ], [ 352411.872900001704693, 258791.576699998229742 ], [ 352409.479099996387959, 258788.601799998432398 ], [ 352404.678999997675419, 258784.12950000166893 ], [ 352402.272600002586842, 258782.632199998944998 ], [ 352383.009300000965595, 258772.130899999290705 ], [ 352374.969499997794628, 258769.320900000631809 ], [ 352353.236800000071526, 258764.710099998861551 ], [ 352336.311499997973442, 258763.727200001478195 ], [ 352284.698499999940395, 258764.360199999064207 ], [ 352266.158699996769428, 258763.575199998915195 ], [ 352256.48650000244379, 258763.073800001293421 ], [ 352233.119599997997284, 258760.982799999415874 ], [ 352200.084200002253056, 258757.968199998140335 ], [ 352173.510099999606609, 258753.739900000393391 ], [ 352135.674500003457069, 258746.252999998629093 ], [ 352117.16889999806881, 258741.457499999552965 ], [ 352088.21000000089407, 258733.199000000953674 ], [ 352059.25110000371933, 258724.940400000661612 ], [ 352043.95269999653101, 258722.282000001519918 ], [ 352027.867799997329712, 258717.295200001448393 ], [ 352013.363200001418591, 258716.121100001037121 ], [ 352002.861299999058247, 258718.357099998742342 ], [ 352006.014700002968311, 258726.826699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97578179, "LATITUDE": 18.36134611, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1310.7545830700001, "SHAPE_Area": 6752.9988737399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354125.963200002908707, 258932.260800000280142 ], [ 354114.871699996292591, 258923.528000000864267 ], [ 354010.433399997651577, 258941.237700000405312 ], [ 353993.464900001883507, 258945.320700000971556 ], [ 353966.770199999213219, 258955.234700001776218 ], [ 353947.332400001585484, 258965.208099998533726 ], [ 353941.661300003528595, 258968.328099999576807 ], [ 353923.825300000607967, 258979.5810999982059 ], [ 353919.741599999368191, 258985.669399999082088 ], [ 353920.467000000178814, 258995.174600001424551 ], [ 353922.857100002467632, 258998.571600001305342 ], [ 353926.865299999713898, 259001.348600000143051 ], [ 354014.643700003623962, 259014.943799998611212 ], [ 354022.670800000429153, 259019.231300000101328 ], [ 354026.657499998807907, 259024.541299998760223 ], [ 354028.237700000405312, 259028.353900000452995 ], [ 354028.160400003194809, 259037.430300001055002 ], [ 354018.11599999666214, 259080.622299998998642 ], [ 354018.861199997365475, 259087.805599998682737 ], [ 354021.247800000011921, 259091.624800000339746 ], [ 354022.842399999499321, 259093.748799998313189 ], [ 354027.653300002217293, 259096.954599998891354 ], [ 354084.766599997878075, 259113.254000000655651 ], [ 354091.983900003135204, 259117.957100000232458 ], [ 354096.769599996507168, 259124.118000000715256 ], [ 354099.138199999928474, 259130.048000000417233 ], [ 354110.448899999260902, 259222.177400000393391 ], [ 354111.215599998831749, 259226.8277000002563 ], [ 354115.079899996519089, 259246.491099998354912 ], [ 354122.07599999755621, 259277.156899999827147 ], [ 354126.080600000917912, 259280.356100000441074 ], [ 354134.111400000751019, 259284.221500001847744 ], [ 354120.920100003480911, 259223.529699999839067 ], [ 354120.142599999904633, 259220.145799998193979 ], [ 354110.4121999964118, 259131.829100001603365 ], [ 354108.068800002336502, 259122.943900000303984 ], [ 354104.100100003182888, 259115.523200001567602 ], [ 354099.303599998354912, 259110.628800000995398 ], [ 354089.683600001037121, 259104.006099998950958 ], [ 354030.964900001883507, 259086.849199999123812 ], [ 354029.39360000193119, 259081.981199998408556 ], [ 354038.622699998319149, 259039.837999999523163 ], [ 354039.50450000166893, 259030.979299999773502 ], [ 354038.737800002098083, 259026.328899998217821 ], [ 354036.372800000011921, 259019.976799998432398 ], [ 354027.589599996805191, 259009.772399999201298 ], [ 354017.150700002908707, 259004.620700001716614 ], [ 353931.785899996757507, 258991.678599998354912 ], [ 353930.182300001382828, 258990.609999999403954 ], [ 353930.202100001275539, 258988.288199998438358 ], [ 353956.144299998879433, 258972.035199999809265 ], [ 353978.812799997627735, 258961.454900000244379 ], [ 353996.603799998760223, 258955.478799998760223 ], [ 354011.95610000193119, 258951.804800000041723 ], [ 354125.963200002908707, 258932.260800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.05359625, "LATITUDE": 18.36310567, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.646514366700004, "SHAPE_Area": 188.75971716699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 345818.148000001907349, 259175.840399999171495 ], [ 345809.206699997186661, 259184.210999999195337 ], [ 345809.16889999806881, 259188.6435999982059 ], [ 345813.96000000089407, 259194.171300001442432 ], [ 345821.247400000691414, 259190.642299998551607 ], [ 345823.666299998760223, 259190.662099998444319 ], [ 345825.325699999928474, 259185.187300000339746 ], [ 345820.561599999666214, 259176.493400000035763 ], [ 345818.148000001907349, 259175.840399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97588458, "LATITUDE": 18.36268245, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.53497711599999, "SHAPE_Area": 2087.9310815399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354052.930200003087521, 259158.800799999386072 ], [ 354030.207800000905991, 259175.71339999884367 ], [ 354004.909999996423721, 259210.969999998807907 ], [ 354006.490299999713898, 259214.782600000500679 ], [ 354007.267800003290176, 259218.166499998420477 ], [ 354007.208499997854233, 259225.132100000977516 ], [ 354003.812399998307228, 259245.15819999948144 ], [ 354050.882399998605251, 259209.868599999696016 ], [ 354052.930200003087521, 259158.800799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.05595308, "LATITUDE": 18.36220774, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.3965221988, "SHAPE_Area": 205.9511947 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 345575.467000000178814, 259076.962200000882149 ], [ 345569.822800002992153, 259076.916000001132488 ], [ 345563.35080000013113, 259079.396200001239777 ], [ 345559.293999999761581, 259082.318300001323223 ], [ 345560.84910000115633, 259089.085999999195337 ], [ 345567.272600002586842, 259092.304999999701977 ], [ 345573.741099998354912, 259090.247000001370907 ], [ 345578.670699998736382, 259079.521600000560284 ], [ 345575.467000000178814, 259076.962200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00696287, "LATITUDE": 18.36190057, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.663469702300006, "SHAPE_Area": 222.801178937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350756.283600002527237, 259088.967300001531839 ], [ 350757.188799999654293, 259077.364500001072884 ], [ 350733.669100001454353, 259093.215199999511242 ], [ 350739.252099998295307, 259100.438000001013279 ], [ 350756.283600002527237, 259088.967300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00633806, "LATITUDE": 18.36167392, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.90701742099998, "SHAPE_Area": 1116.90268851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350871.971100002527237, 259044.740100000053644 ], [ 350855.787299998104572, 259051.36259999871254 ], [ 350850.1233000010252, 259053.638300001621246 ], [ 350836.381800003349781, 259057.53660000115633 ], [ 350827.5033999979496, 259058.519400000572205 ], [ 350791.991499997675419, 259062.239599999040365 ], [ 350783.913999997079372, 259063.862199999392033 ], [ 350773.399599999189377, 259067.575800001621246 ], [ 350757.188799999654293, 259077.364500001072884 ], [ 350756.283600002527237, 259088.967300001531839 ], [ 350770.881700001657009, 259079.165399998426437 ], [ 350776.54389999806881, 259077.10080000013113 ], [ 350785.44030000269413, 259074.007199998944998 ], [ 350791.9087999984622, 259071.949200000613928 ], [ 350825.809900000691414, 259068.004799999296665 ], [ 350833.885600000619888, 259066.593199998140335 ], [ 350840.348700001835823, 259065.168499998748302 ], [ 350852.468500003218651, 259062.312300000339746 ], [ 350858.130699999630451, 259060.247699998319149 ], [ 350870.263099998235703, 259055.914099998772144 ], [ 350871.971100002527237, 259044.740100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97182025, "LATITUDE": 18.36174304, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.174543949300002, "SHAPE_Area": 469.51691242200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354448.388400003314018, 259119.185400001704693 ], [ 354467.009099997580051, 259110.471900001168251 ], [ 354471.994400002062321, 259093.203000001609325 ], [ 354468.072499997913837, 259080.294199999421835 ], [ 354450.951200000941753, 259102.318900000303984 ], [ 354448.465700000524521, 259110.109000001102686 ], [ 354448.388400003314018, 259119.185400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9872016, "LATITUDE": 18.36131998, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.57821583399999, "SHAPE_Area": 772.40047532400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352843.010499998927116, 259012.531700000166893 ], [ 352834.038599997758865, 259024.490600001066923 ], [ 352831.5962999984622, 259027.214800000190735 ], [ 352823.466600000858307, 259034.958799999207258 ], [ 352816.154100000858307, 259041.442800000309944 ], [ 352814.514499999582767, 259044.595800001174212 ], [ 352816.056999996304512, 259052.841099999845028 ], [ 352819.26240000128746, 259055.189300000667572 ], [ 352828.115699999034405, 259057.16160000115633 ], [ 352831.342699997127056, 259056.97690000012517 ], [ 352839.407700002193451, 259056.831900000572205 ], [ 352862.837499998509884, 259051.535199999809265 ], [ 352858.069700002670288, 259043.2635000012815 ], [ 352837.060599997639656, 259048.368900001049042 ], [ 352830.606600001454353, 259048.738299999386072 ], [ 352824.16499999910593, 259047.630100000649691 ], [ 352837.987400002777576, 259034.233199998736382 ], [ 352847.769299998879433, 259021.858800001442432 ], [ 352843.010499998927116, 259012.531700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98634907, "LATITUDE": 18.36119317, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.40257373399999, "SHAPE_Area": 1242.51321796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352995.364000000059605, 259018.422699999064207 ], [ 352988.145000003278255, 259013.930599998682737 ], [ 352982.518799997866154, 259011.773699998855591 ], [ 352972.05290000140667, 259009.788199998438358 ], [ 352961.56360000371933, 259010.546700000762939 ], [ 352908.185199998319149, 259029.108199998736382 ], [ 352858.069700002670288, 259043.2635000012815 ], [ 352862.837499998509884, 259051.535199999809265 ], [ 352909.720499999821186, 259038.197799999266863 ], [ 352963.910599999129772, 259019.00959999859333 ], [ 352978.41889999806881, 259019.761700000613928 ], [ 352983.244199998676777, 259021.278799999505281 ], [ 352987.252300001680851, 259024.055799998342991 ], [ 352995.364000000059605, 259018.422699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-5599-T93", "PARCEL_NAM": "118", "ACRE": "3.45", "LONGITUDE": -65.01392104, "LATITUDE": 18.36073771, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 524.00694271600003, "SHAPE_Area": 14536.5640265 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350085.451700001955032, 258891.803899999707937 ], [ 350056.456799998879433, 258887.7668999992311 ], [ 350037.110699996352196, 258886.975299999117851 ], [ 350025.811599999666214, 258888.149399999529123 ], [ 350003.164700001478195, 258896.196600001305342 ], [ 349985.289200000464916, 258912.093499999493361 ], [ 349960.858800001442432, 258940.179999999701977 ], [ 349923.455600000917912, 258976.604200001806021 ], [ 349910.428700000047684, 258991.274099998176098 ], [ 349903.935000002384186, 258996.287200000137091 ], [ 349897.455799996852875, 258999.611699998378754 ], [ 350065.874399997293949, 259012.8114 ], [ 350085.451700001955032, 258891.803899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01517462, "LATITUDE": 18.35788314, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4349.5554051899999, "SHAPE_Area": 20087.5323384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349604.336400002241135, 258574.181200001388788 ], [ 349609.913999997079372, 258582.037300001829863 ], [ 349613.963600002229214, 258579.959499999880791 ], [ 349621.222199998795986, 258579.807799998670816 ], [ 349626.848399996757507, 258581.964800000190735 ], [ 349629.260099999606609, 258582.828899998217821 ], [ 349638.052199997007847, 258591.977899998426437 ], [ 349642.857699997723103, 258595.816899999976158 ], [ 349652.495700001716614, 258600.328699998557568 ], [ 349662.155299998819828, 258602.307599999010563 ], [ 349668.542900003492832, 258609.748199999332428 ], [ 349672.556400001049042, 258611.892000000923872 ], [ 349681.402500003576279, 258614.708599999547005 ], [ 349686.189999997615814, 258620.658399999141693 ], [ 349691.805399999022484, 258624.081799998879433 ], [ 349715.946299999952316, 258629.978999998420477 ], [ 349724.012999996542931, 258629.622800000011921 ], [ 349738.553599998354912, 258626.575399998575449 ], [ 349747.45719999819994, 258622.637499999254942 ], [ 349762.048100002110004, 258613.679900001734495 ], [ 349785.603799998760223, 258593.607700001448393 ], [ 349783.130900003015995, 258599.920299999415874 ], [ 349770.089699998497963, 258616.278799999505281 ], [ 349761.895300000905991, 258631.621599998325109 ], [ 349756.911799997091293, 258648.679400000721216 ], [ 349758.411100000143051, 258661.990499999374151 ], [ 349763.1824000030756, 258669.84010000154376 ], [ 349776.792599998414516, 258681.350499998778105 ], [ 349800.854299999773502, 258696.535100001841784 ], [ 349811.280699998140335, 258703.164299998432398 ], [ 349827.315200001001358, 258714.061299998313189 ], [ 349838.517300002276897, 258724.285500001162291 ], [ 349841.695799998939037, 258729.799899999052286 ], [ 349843.139399997889996, 258749.654599998146296 ], [ 349839.806199997663498, 258762.292899999767542 ], [ 349838.103699997067451, 258772.833599999547005 ], [ 349836.304099999368191, 258794.772599998861551 ], [ 349832.112400002777576, 258813.525600001215935 ], [ 349835.037399999797344, 258848.802200000733137 ], [ 349833.367200002074242, 258855.543499998748302 ], [ 349829.287100002169609, 258861.209699999541044 ], [ 349823.617799997329712, 258864.118599999696016 ], [ 349815.540200002491474, 258865.741200000047684 ], [ 349774.425499998033047, 258864.560300000011921 ], [ 349746.951499998569489, 258871.301600001752377 ], [ 349717.010099999606609, 258883.722100000828505 ], [ 349700.032600000500679, 258888.860500000417233 ], [ 349675.724500000476837, 258902.593699999153614 ], [ 349650.628100000321865, 258914.209600001573563 ], [ 349642.545199997723103, 258916.465399999171495 ], [ 349623.163199998438358, 258919.895399998873472 ], [ 349605.366700001060963, 258926.504700001329184 ], [ 349600.512699998915195, 258928.364900000393391 ], [ 349605.2804000005126, 258936.636500000953674 ], [ 349610.13629999756813, 258934.56529999896884 ], [ 349623.085799999535084, 258928.971799999475479 ], [ 349633.589500002563, 258926.524599999189377 ], [ 349644.888599999248981, 258925.350600000470877 ], [ 349654.589599996805191, 258922.474599998444319 ], [ 349679.687700003385544, 258910.647700000554323 ], [ 349703.992200002074242, 258897.33669999986887 ], [ 349720.163400001823902, 258892.191700000315905 ], [ 349753.340899996459484, 258878.530999999493361 ], [ 349775.960799999535084, 258873.649900000542402 ], [ 349792.882600001990795, 258875.054999999701977 ], [ 349813.846699997782707, 258875.226599998772144 ], [ 349822.726899996399879, 258874.032699998468161 ], [ 349831.6233000010252, 258870.939100001007318 ], [ 349834.868400000035763, 258868.6435999982059 ], [ 349838.941299997270107, 258863.821800000965595 ], [ 349842.227700002491474, 258856.671500001102686 ], [ 349850.280000001192093, 258858.004000000655651 ], [ 349855.103500001132488, 258859.732200000435114 ], [ 349864.727099999785423, 258865.932700000703335 ], [ 349872.703900001943111, 258876.130499999970198 ], [ 349874.291400000452995, 258879.098799999803305 ], [ 349875.835699997842312, 258887.133000001311302 ], [ 349878.943999998271465, 258900.87950000166893 ], [ 349881.291000001132488, 258909.342399999499321 ], [ 349882.8496999964118, 258915.688000001013279 ], [ 349881.125600002706051, 258928.761700000613928 ], [ 349881.094999998807907, 258932.350000001490116 ], [ 349878.620399996638298, 258938.873700000345707 ], [ 349877.785300001502037, 258942.244300000369549 ], [ 349874.51690000295639, 258947.2837999984622 ], [ 349870.443899996578693, 258952.105700001120567 ], [ 349866.385399997234344, 258955.238800000399351 ], [ 349850.149499997496605, 258967.982700001448393 ], [ 349844.458499997854233, 258973.424499999731779 ], [ 349842.019799999892712, 258975.726599998772144 ], [ 349840.401799999177456, 258976.346599999815226 ], [ 349838.737000003457069, 258982.454700000584126 ], [ 349839.446199998259544, 258993.859600000083447 ], [ 349841.033699996769428, 258996.827899999916553 ], [ 349845.034699998795986, 259000.449200000613928 ], [ 349853.081600002944469, 259002.414900001138449 ], [ 349873.232199996709824, 259003.424199998378754 ], [ 349885.334100000560284, 259002.678899999707937 ], [ 349897.455799996852875, 258999.611699998378754 ], [ 349903.935000002384186, 258996.287200000137091 ], [ 349910.428700000047684, 258991.274099998176098 ], [ 349923.455600000917912, 258976.604200001806021 ], [ 349960.858800001442432, 258940.179999999701977 ], [ 349985.289200000464916, 258912.093499999493361 ], [ 350003.164700001478195, 258896.196600001305342 ], [ 350025.811599999666214, 258888.149399999529123 ], [ 350037.110699996352196, 258886.975299999117851 ], [ 350056.456799998879433, 258887.7668999992311 ], [ 350085.451700001955032, 258891.803899999707937 ], [ 350097.609399996697903, 258884.515099998563528 ], [ 350052.508000001311302, 258878.024300001561642 ], [ 350039.610600002110004, 258877.496500000357628 ], [ 350022.658299997448921, 258879.679800000041723 ], [ 350008.10869999974966, 258883.782600000500679 ], [ 349998.398800000548363, 258887.713899999856949 ], [ 349979.707900002598763, 258904.659499999135733 ], [ 349968.315200001001358, 258916.80970000103116 ], [ 349960.163999997079372, 258927.086599998176098 ], [ 349934.94709999859333, 258952.844700001180172 ], [ 349931.694899998605251, 258955.984499998390675 ], [ 349923.567100003361702, 258963.517299998551607 ], [ 349906.481700003147125, 258981.32039999961853 ], [ 349904.84570000320673, 258984.051199998706579 ], [ 349897.545699998736382, 258989.057700000703335 ], [ 349887.029500000178814, 258992.982500001788139 ], [ 349877.3429000005126, 258994.169700000435114 ], [ 349852.356200002133846, 258992.909800000488758 ], [ 349848.340800002217293, 258990.977099999785423 ], [ 349847.58669999986887, 258984.849199999123812 ], [ 349849.224500000476837, 258981.907299999147654 ], [ 349851.668600000441074, 258978.971999999135733 ], [ 349856.551399998366833, 258973.734600000083447 ], [ 349874.401799999177456, 258960.792899999767542 ], [ 349880.094499997794628, 258955.139899998903275 ], [ 349882.549400001764297, 258950.938200000673532 ], [ 349884.172799997031689, 258949.684900000691414 ], [ 349888.285300001502037, 258940.219300001859665 ], [ 349890.781599998474121, 258931.162799999117851 ], [ 349891.738899998366833, 258913.438700001686811 ], [ 349887.833200000226498, 258898.630199998617172 ], [ 349884.753700003027916, 258881.506400000303984 ], [ 349883.968900002539158, 258878.966899998486042 ], [ 349882.390500001609325, 258874.943199999630451 ], [ 349880.011100001633167, 258870.279699999839067 ], [ 349878.418200001120567, 258867.944600000977516 ], [ 349876.026299998164177, 258864.758600000292063 ], [ 349872.034299999475479, 258860.081900000572205 ], [ 349863.218800000846386, 258853.676899999380112 ], [ 349860.067299999296665, 258844.996300000697374 ], [ 349848.825599998235703, 258839.415899999439716 ], [ 349845.562600001692772, 258843.82209999859333 ], [ 349840.980099998414516, 258813.809300001710653 ], [ 349845.162699997425079, 258796.111699998378754 ], [ 349847.76860000193119, 258774.179299999028444 ], [ 349852.001599997282028, 258750.57149999961257 ], [ 349852.120300002396107, 258736.640299998223782 ], [ 349849.785899996757507, 258726.699799999594688 ], [ 349848.997500002384186, 258724.582400001585484 ], [ 349847.413699999451637, 258721.191899999976158 ], [ 349845.817199997603893, 258719.278999999165535 ], [ 349833.022299997508526, 258706.719799999147654 ], [ 349782.499799996614456, 258674.008900001645088 ], [ 349772.0878000035882, 258665.691100001335144 ], [ 349768.095799997448921, 258661.014299999922514 ], [ 349765.754199996590614, 258651.918200001120567 ], [ 349769.925999999046326, 258635.486999999731779 ], [ 349778.109600000083447, 258621.410700000822544 ], [ 349808.279500000178814, 258582.183100000023842 ], [ 349814.830700002610683, 258570.415500000119209 ], [ 349844.838699996471405, 258550.184999998658895 ], [ 349850.531400002539158, 258544.5320999994874 ], [ 349857.833200000226498, 258539.314500000327826 ], [ 349869.295999996364117, 258518.932300001382828 ], [ 349871.795800000429153, 258509.453499998897314 ], [ 349873.554099999368191, 258492.369300000369549 ], [ 349877.704300001263618, 258478.471099998801947 ], [ 349872.234600000083447, 258457.950300000607967 ], [ 349864.318899996578693, 258440.575800001621246 ], [ 349857.146600000560284, 258430.59569999948144 ], [ 349852.409400001168251, 258418.735700000077486 ], [ 349847.630900003015995, 258411.730500001460314 ], [ 349846.063199996948242, 258406.440400000661612 ], [ 349846.120800003409386, 258399.6858000010252 ], [ 349842.179099999368191, 258389.098900001496077 ], [ 349843.039399996399879, 258382.77309999987483 ], [ 349850.547899998724461, 258353.281500000506639 ], [ 349870.228500001132488, 258314.812399998307228 ], [ 349875.989600002765656, 258301.1385000012815 ], [ 349890.688400000333786, 258279.516199998557568 ], [ 349898.814499996602535, 258272.194400001317263 ], [ 349906.917099997401237, 258267.616700001060963 ], [ 349914.9983000010252, 258265.571899998933077 ], [ 349918.225299999117851, 258265.387200001627207 ], [ 349920.637000001966953, 258266.251299999654293 ], [ 349922.091399997472763, 258284.839400000870228 ], [ 349918.736699998378754, 258300.01069999858737 ], [ 349924.120200000703335, 258330.66330000013113 ], [ 349929.663599997758865, 258342.530000001192093 ], [ 349931.989100001752377, 258353.52589999884367 ], [ 349943.090400002896786, 258375.57039999961853 ], [ 349946.277900002896786, 258380.029500000178814 ], [ 349950.282499998807907, 258383.228700000792742 ], [ 349960.723200000822544, 258388.169300001114607 ], [ 349965.552100002765656, 258389.264299999922514 ], [ 349972.004399999976158, 258389.105999998748302 ], [ 349982.509800001978874, 258386.447799999266863 ], [ 349987.372900001704693, 258383.532200001180172 ], [ 349990.617899999022484, 258381.236800000071526 ], [ 350003.652000002563, 258365.722500000149012 ], [ 350012.600500002503395, 258356.507699999958277 ], [ 350024.779700003564358, 258346.685899998992682 ], [ 350031.262599997222424, 258342.939300000667572 ], [ 350049.044600002467632, 258338.0185999982059 ], [ 350057.910499997437, 258338.513399999588728 ], [ 350067.552100002765656, 258342.603000000119209 ], [ 350069.953000001609325, 258344.733600001782179 ], [ 350104.358300000429153, 258376.257100000977516 ], [ 350114.788199998438358, 258382.464099999517202 ], [ 350123.628899998962879, 258385.914000000804663 ], [ 350135.70380000025034, 258388.334899999201298 ], [ 350149.411100000143051, 258388.447000000625849 ], [ 350191.373499996960163, 258384.779699999839067 ], [ 350199.429499998688698, 258385.690000001341105 ], [ 350202.652900002896786, 258385.927499998360872 ], [ 350217.945900000631809, 258389.219099998474121 ], [ 350220.346799999475479, 258391.349599998444319 ], [ 350222.744199998676777, 258393.902399998158216 ], [ 350221.882200002670288, 258400.4391999989748 ], [ 350223.797600001096725, 258459.561099998652935 ], [ 350232.771300002932549, 258447.391100000590086 ], [ 350232.951099999248981, 258426.28319999948144 ], [ 350230.729999996721745, 258403.044799998402596 ], [ 350231.635200001299381, 258391.44200000166893 ], [ 350229.255800001323223, 258386.778499998152256 ], [ 350226.057599999010563, 258383.585900001227856 ], [ 350222.045800000429153, 258381.231100000441074 ], [ 350199.515799999237061, 258375.558200001716614 ], [ 350192.25900000333786, 258375.498799998313189 ], [ 350160.782200001180172, 258378.829799998551607 ], [ 350130.144100002944469, 258378.368000000715256 ], [ 350116.478200003504753, 258373.401000000536442 ], [ 350108.46000000089407, 258368.05799999833107 ], [ 350074.861000001430511, 258336.54109999909997 ], [ 350065.230200000107288, 258331.184999998658895 ], [ 350055.572499997913837, 258328.995000001043081 ], [ 350045.086800001561642, 258329.331399999558926 ], [ 350031.345299996435642, 258333.229699999094009 ], [ 350023.251599997282028, 258336.752000000327826 ], [ 350002.950000002980232, 258353.473400000482798 ], [ 349996.44370000064373, 258359.964000001549721 ], [ 349987.469999998807907, 258372.13399999961257 ], [ 349980.164599999785423, 258377.773699998855591 ], [ 349971.273599997162819, 258380.234099999070168 ], [ 349967.245700001716614, 258379.778900001198053 ], [ 349961.60869999974966, 258378.888399999588728 ], [ 349955.991400003433228, 258375.675999999046326 ], [ 349951.981499999761581, 258373.110100001096725 ], [ 349947.993100002408028, 258368.011199999600649 ], [ 349945.628100000321865, 258361.659000001847744 ], [ 349940.07379999756813, 258351.058899998664856 ], [ 349939.33219999819994, 258343.453499998897314 ], [ 349933.014799997210503, 258327.780799999833107 ], [ 349931.454300001263618, 258321.64640000090003 ], [ 349927.604299999773502, 258300.294399999082088 ], [ 349930.957299999892712, 258285.334199998527765 ], [ 349930.287600003182888, 258269.285599999129772 ], [ 349929.537100002169609, 258262.735599998384714 ], [ 349924.740500003099442, 258257.841099999845028 ], [ 349918.302599996328354, 258256.3108000010252 ], [ 349906.191799998283386, 258258.1114999987185 ], [ 349899.712499998509884, 258261.436000000685453 ], [ 349893.23139999806881, 258264.971500001847744 ], [ 349883.480099998414516, 258273.757699999958277 ], [ 349877.767599999904633, 258281.732500001788139 ], [ 349867.962399996817112, 258296.850900001823902 ], [ 349862.199500001966953, 258310.73589999973774 ], [ 349842.511799998581409, 258350.049300000071526 ], [ 349835.877899996936321, 258371.526599999517202 ], [ 349833.300700001418591, 258390.081700000911951 ], [ 349836.430600002408028, 258401.295299999415874 ], [ 349837.177599996328354, 258408.267499998211861 ], [ 349839.533600002527237, 258415.675000000745058 ], [ 349841.923799999058247, 258419.07209999859333 ], [ 349844.310300000011921, 258422.89130000025034 ], [ 349849.045699998736382, 258434.962400000542402 ], [ 349857.02250000089407, 258445.160199999809265 ], [ 349863.340000003576279, 258460.832800000905991 ], [ 349868.026799999177456, 258478.603000000119209 ], [ 349864.699000000953674, 258490.6081000007689 ], [ 349862.940800003707409, 258507.692299999296665 ], [ 349860.453500002622604, 258515.693500000983477 ], [ 349851.436599999666214, 258532.929400000721216 ], [ 349833.580799996852875, 258546.504299998283386 ], [ 349795.461199998855591, 258572.367899999022484 ], [ 349756.470499999821186, 258605.823800001293421 ], [ 349752.411899998784065, 258608.956999998539686 ], [ 349747.547100000083447, 258612.083500001579523 ], [ 349742.689400002360344, 258614.365800000727177 ], [ 349737.025499999523163, 258616.641499999910593 ], [ 349727.321000002324581, 258619.939599998295307 ], [ 349716.829899996519089, 258620.909200001507998 ], [ 349703.950499996542931, 258618.270599998533726 ], [ 349702.343199998140335, 258617.624200001358986 ], [ 349693.498999997973442, 258614.596500001847744 ], [ 349690.298900000751019, 258611.614999998360872 ], [ 349689.508799999952316, 258609.708700001239777 ], [ 349685.504199996590614, 258606.509500000625849 ], [ 349681.488799996674061, 258604.576799999922514 ], [ 349675.855400003492832, 258603.26410000026226 ], [ 349671.85080000013113, 258600.065000001341105 ], [ 349669.460699997842312, 258596.667899999767542 ], [ 349664.649800002574921, 258593.462099999189377 ], [ 349654.185699999332428, 258591.265500001609325 ], [ 349648.563100002706051, 258588.6864 ], [ 349634.965400002896786, 258575.698399998247623 ], [ 349629.348200000822544, 258572.486000001430511 ], [ 349623.716600000858307, 258570.96229999884963 ], [ 349614.042700000107288, 258570.671999998390675 ], [ 349604.336400002241135, 258574.181200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01567987, "LATITUDE": 18.36092231, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.31066812, "SHAPE_Area": 639.81233157700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349848.592600002884865, 258961.425999999046326 ], [ 349825.947499997913837, 258969.262200001627207 ], [ 349800.066399998962879, 258978.338500000536442 ], [ 349794.404200002551079, 258980.403099998831749 ], [ 349796.749399997293949, 258989.077199999243021 ], [ 349840.401799999177456, 258976.346599999815226 ], [ 349842.019799999892712, 258975.726599998772144 ], [ 349844.458499997854233, 258973.424499999731779 ], [ 349850.149499997496605, 258967.982700001448393 ], [ 349866.385399997234344, 258955.238800000399351 ], [ 349848.592600002884865, 258961.425999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01786966, "LATITUDE": 18.36060586, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.496160407600001, "SHAPE_Area": 309.01079878899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349605.2804000005126, 258936.636500000953674 ], [ 349600.512699998915195, 258928.364900000393391 ], [ 349597.294600002467632, 258927.494100000709295 ], [ 349591.645000003278255, 258928.081199999898672 ], [ 349586.780199997127056, 258931.207800000905991 ], [ 349585.140600003302097, 258934.360800001770258 ], [ 349585.878600001335144, 258942.388300001621246 ], [ 349587.476800002157688, 258944.090199999511242 ], [ 349593.092200003564358, 258947.513599999248981 ], [ 349597.931900002062321, 258947.342099998146296 ], [ 349601.169699996709824, 258945.890999998897314 ], [ 349602.802199997007847, 258943.582299999892712 ], [ 349604.445299997925758, 258940.007199998944998 ], [ 349605.2804000005126, 258936.636500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99586015, "LATITUDE": 18.3595587, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 567.61892075100002, "SHAPE_Area": 2497.6210177299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351997.913800001144409, 258731.193399999290705 ], [ 351994.765799999237061, 258722.090599998831749 ], [ 351985.842500001192093, 258728.350299999117851 ], [ 351976.875900000333786, 258739.675999999046326 ], [ 351964.491700001060963, 258773.560699999332428 ], [ 351952.195600003004074, 258797.102600000798702 ], [ 351948.081399999558926, 258806.779199998825788 ], [ 351927.657399997115135, 258837.853900000452995 ], [ 351923.577299997210503, 258843.519999999552965 ], [ 351912.163099996745586, 258858.203099999576807 ], [ 351908.909000001847744, 258861.554000001400709 ], [ 351907.276600003242493, 258863.862700000405312 ], [ 351895.063299998641014, 258877.694899998605251 ], [ 351879.617499999701977, 258892.344999998807907 ], [ 351864.990500003099442, 258905.52419999986887 ], [ 351859.303199999034405, 258910.5439000017941 ], [ 351845.500600002706051, 258921.618900001049042 ], [ 351827.657399997115135, 258933.716299999505281 ], [ 351832.425200000405312, 258941.987900000065565 ], [ 351862.447499997913837, 258920.068799998611212 ], [ 351883.569899998605251, 258901.665500000119209 ], [ 351902.276900000870228, 258882.820199999958277 ], [ 351910.415600001811981, 258874.020799998193979 ], [ 351915.302000001072884, 258868.361299999058247 ], [ 351923.451399996876717, 258858.295499999076128 ], [ 351925.078400000929832, 258856.620099999010563 ], [ 351926.708999998867512, 258854.52250000089407 ], [ 351938.945799998939037, 258837.946299999952316 ], [ 351952.019400000572205, 258817.78830000013113 ], [ 351954.474299997091293, 258813.586500000208616 ], [ 351955.307599999010563, 258810.426899999380112 ], [ 351961.020099997520447, 258802.452100001275539 ], [ 351972.529700003564358, 258776.581799998879433 ], [ 351982.435599997639656, 258749.642900001257658 ], [ 351986.539099998772144, 258741.232799999415874 ], [ 351989.800300002098083, 258737.037599999457598 ], [ 351997.913800001144409, 258731.193399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98577567, "LATITUDE": 18.36000705, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.895626537, "SHAPE_Area": 1369.5731181799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352965.891199998557568, 258881.181800000369549 ], [ 352964.0033999979496, 258913.463599998503923 ], [ 352978.522399999201298, 258912.949200000613928 ], [ 353011.59740000218153, 258911.320000000298023 ], [ 353010.218599997460842, 258883.866599999368191 ], [ 352968.306500002741814, 258881.623700000345707 ], [ 352965.891199998557568, 258881.181800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01420729, "LATITUDE": 18.35956114, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 611.77010680299998, "SHAPE_Area": 2681.9600111599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350097.609399996697903, 258884.515099998563528 ], [ 350108.944499999284744, 258879.119500000029802 ], [ 350104.961499996483326, 258873.387299999594688 ], [ 350094.569300003349781, 258862.747600000351667 ], [ 350072.129199996590614, 258846.520799998193979 ], [ 350049.705300003290176, 258828.394299998879433 ], [ 350029.704000003635883, 258809.865499999374151 ], [ 350026.498499996960163, 258807.517200000584126 ], [ 350019.263300001621246, 258804.924899999052286 ], [ 350011.198299996554852, 258805.070000000298023 ], [ 350000.691100001335144, 258807.939300000667572 ], [ 349991.026100002229214, 258806.593600001186132 ], [ 349939.476099997758865, 258799.838899999856949 ], [ 349925.804700002074242, 258795.505100000649691 ], [ 349916.125399999320507, 258795.848099999129772 ], [ 349912.07940000295639, 258797.503699999302626 ], [ 349908.033500000834465, 258799.159400001168251 ], [ 349893.453299999237061, 258806.850499998778105 ], [ 349874.837999999523163, 258814.930799998342991 ], [ 349867.543399997055531, 258819.304099999368191 ], [ 349859.419200003147125, 258826.414799999445677 ], [ 349848.825599998235703, 258839.415899999439716 ], [ 349860.067299999296665, 258844.996300000697374 ], [ 349860.913099996745586, 258840.359200000762939 ], [ 349863.368000000715256, 258836.157400000840425 ], [ 349869.883299998939037, 258828.611299999058247 ], [ 349875.565200001001358, 258824.224899999797344 ], [ 349882.04450000077486, 258820.900400001555681 ], [ 349898.2246999964118, 258814.699999999254942 ], [ 349914.429999999701977, 258805.54450000077486 ], [ 349918.470600001513958, 258804.522100001573563 ], [ 349925.723800003528595, 258805.003699999302626 ], [ 349932.958999998867512, 258807.596000000834465 ], [ 349942.618600003421307, 258809.57490000128746 ], [ 349978.062200002372265, 258813.875799998641014 ], [ 349994.16330000013113, 258816.962900001555681 ], [ 350004.648900002241135, 258816.626499999314547 ], [ 350015.157999999821186, 258813.546100001782179 ], [ 350019.185900002717972, 258814.001299999654293 ], [ 350023.199500001966953, 258816.145100001245737 ], [ 350043.200900003314018, 258834.673900000751019 ], [ 350053.611000001430511, 258843.202899999916553 ], [ 350084.857600003480911, 258866.890000000596046 ], [ 350095.240800000727177, 258878.585099998861551 ], [ 350097.609399996697903, 258884.515099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00702045, "LATITUDE": 18.35993872, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.52483385599999, "SHAPE_Area": 561.94018648600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350741.237300001084805, 258867.407000001519918 ], [ 350733.989500001072884, 258866.292199999094009 ], [ 350712.245999999344349, 258862.947799999266863 ], [ 350708.943499997258186, 258871.997800000011921 ], [ 350731.504000000655651, 258874.082299999892712 ], [ 350757.253899998962879, 258880.414799999445677 ], [ 350772.555799998342991, 258882.651000000536442 ], [ 350773.439499996602535, 258873.581199999898672 ], [ 350756.528499998152256, 258870.909600000828505 ], [ 350741.237300001084805, 258867.407000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99782973000001, "LATITUDE": 18.35940228, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.11204533699998, "SHAPE_Area": 1221.6640597799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351723.768299996852875, 258823.519499998539686 ], [ 351747.397699996829033, 258794.793099999427795 ], [ 351741.832599997520447, 258785.459399998188019 ], [ 351690.880300000309944, 258803.19649999961257 ], [ 351692.444300003349781, 258808.9087999984622 ], [ 351728.834499999880791, 258796.752099998295307 ], [ 351731.246200002729893, 258797.616200000047684 ], [ 351731.2246999964118, 258800.14919999986887 ], [ 351696.994499996304512, 258842.721000000834465 ], [ 351677.47580000013113, 258862.192899998277426 ], [ 351681.431800000369549, 258871.091299999505281 ], [ 351695.254199996590614, 258857.694400001317263 ], [ 351698.508199997246265, 258854.343499999493361 ], [ 351705.846000000834465, 258844.904399998486042 ], [ 351723.768299996852875, 258823.519499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "102502032200", "PARCEL_NAM": "5D-3", "ACRE": null, "LONGITUDE": -64.98533186, "LATITUDE": 18.35973371, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.50603722300001, "SHAPE_Area": 595.04367022600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353053.068199999630451, 258870.707299999892712 ], [ 353020.194600000977516, 258848.695599999278784 ], [ 353020.772600002586842, 258875.509199999272823 ], [ 353037.687200002372265, 258877.758600000292063 ], [ 353053.784599997103214, 258881.267799999564886 ], [ 353053.068199999630451, 258870.707299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "102502032200", "PARCEL_NAM": "5C-16", "ACRE": ".319", "LONGITUDE": -64.9852939, "LATITUDE": 18.35957083, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.57775645700001, "SHAPE_Area": 675.46884028600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353020.289899997413158, 258837.508400000631809 ], [ 353020.194600000977516, 258848.695599999278784 ], [ 353053.068199999630451, 258870.707299999892712 ], [ 353050.922600001096725, 258838.603500001132488 ], [ 353020.289899997413158, 258837.508400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98799498, "LATITUDE": 18.35957911, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.542105217300005, "SHAPE_Area": 305.435543757 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352751.031900003552437, 258829.394099999219179 ], [ 352749.359999999403954, 258836.346500001847744 ], [ 352747.731100000441074, 258838.232999999076128 ], [ 352744.428599998354912, 258847.282999999821186 ], [ 352745.980099998414516, 258854.472800001502037 ], [ 352749.975699998438358, 258858.727400001138449 ], [ 352756.409999996423721, 258860.679900001734495 ], [ 352765.31360000371933, 258856.741999998688698 ], [ 352761.352099999785423, 258848.47690000012517 ], [ 352755.684600003063679, 258851.174800001084805 ], [ 352754.080899998545647, 258850.106199998408556 ], [ 352754.11150000244379, 258846.517799999564886 ], [ 352757.390699997544289, 258840.211899999529123 ], [ 352751.031900003552437, 258829.394099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9878831, "LATITUDE": 18.35960864, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.427143102399999, "SHAPE_Area": 32.509614114999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352761.352099999785423, 258848.47690000012517 ], [ 352765.31360000371933, 258856.741999998688698 ], [ 352768.551399998366833, 258855.290899999439716 ], [ 352764.590000003576279, 258847.025800000876188 ], [ 352761.352099999785423, 258848.47690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402036000", "MAP": "D9-1213-T74", "PARCEL_NAM": "18-5", "ACRE": "0.49", "LONGITUDE": -65.00160849, "LATITUDE": 18.35880524, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.67166763700001, "SHAPE_Area": 1141.1898959800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351340.750799998641014, 258748.190200001001358 ], [ 351314.214699998497963, 258719.268800001591444 ], [ 351314.184199996292591, 258722.853100001811981 ], [ 351313.295100003480911, 258732.556200001388788 ], [ 351311.641199998557568, 258737.397799998521805 ], [ 351310.001599997282028, 258740.550799999386072 ], [ 351287.927199997007847, 258776.044900000095367 ], [ 351288.713799998164177, 258778.373399998992682 ], [ 351291.933600001037121, 258779.032999999821186 ], [ 351323.536200001835823, 258760.926500000059605 ], [ 351334.89299999922514, 258752.997900001704693 ], [ 351338.949699997901917, 258750.075800001621246 ], [ 351340.750799998641014, 258748.190200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98784843, "LATITUDE": 18.35803759, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 636.81921608499999, "SHAPE_Area": 17879.347616800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352794.353000000119209, 258571.581199999898672 ], [ 352748.487499997019768, 258654.798900000751019 ], [ 352718.025600001215935, 258633.651299998164177 ], [ 352691.725500002503395, 258691.908900000154972 ], [ 352697.998000003397465, 258712.858500000089407 ], [ 352697.981799997389317, 258714.758299998939037 ], [ 352704.311800003051758, 258728.953299999237061 ], [ 352704.29559999704361, 258730.853000000119209 ], [ 352705.085799999535084, 258732.759399998933077 ], [ 352714.606899999082088, 258750.991300001740456 ], [ 352727.261500000953674, 258780.014699999243021 ], [ 352786.332699999213219, 258755.800200000405312 ], [ 352789.563400000333786, 258755.193399999290705 ], [ 352849.486900001764297, 258630.927600000053644 ], [ 352817.362099997699261, 258615.677000001072884 ], [ 352841.986599996685982, 258564.7939000017941 ], [ 352794.353000000119209, 258571.581199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402036000", "MAP": "D9-1213-T74", "PARCEL_NAM": "18-4", "ACRE": "0.45", "LONGITUDE": -65.00193876, "LATITUDE": 18.35860947, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.70036694500001, "SHAPE_Area": 1873.1587327100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351271.607900001108646, 258703.928399998694658 ], [ 351264.105700001120567, 258703.413499999791384 ], [ 351259.921999998390675, 258738.851599998772144 ], [ 351258.395099997520447, 258751.785700000822544 ], [ 351288.48309999704361, 258756.315099999308586 ], [ 351292.128300003707409, 258752.862300001084805 ], [ 351302.010399997234344, 258732.041600000113249 ], [ 351304.467100001871586, 258727.628800000995398 ], [ 351302.958700001239777, 258715.372999999672174 ], [ 351297.363099999725819, 258709.627700001001358 ], [ 351291.740500003099442, 258707.048500001430511 ], [ 351271.607900001108646, 258703.928399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99512682, "LATITUDE": 18.35851359, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.787155192999997, "SHAPE_Area": 83.913054930599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352002.861299999058247, 258718.357099998742342 ], [ 351994.765799999237061, 258722.090599998831749 ], [ 351997.913800001144409, 258731.193399999290705 ], [ 352006.014700002968311, 258726.826699998229742 ], [ 352002.861299999058247, 258718.357099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00560029, "LATITUDE": 18.35840819, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.239898530800005, "SHAPE_Area": 243.99168274499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350887.923600003123283, 258686.644900001585484 ], [ 350881.469499997794628, 258687.014299999922514 ], [ 350894.919699996709824, 258717.310699999332428 ], [ 350907.012599997222424, 258717.620799999684095 ], [ 350903.054700002074242, 258708.933600001037121 ], [ 350899.026799999177456, 258708.478399999439716 ], [ 350895.823100000619888, 258705.919100001454353 ], [ 350887.923600003123283, 258686.644900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402036000", "MAP": "D9-1213-T74", "PARCEL_NAM": "18-6", "ACRE": "0.36", "LONGITUDE": -65.00216101, "LATITUDE": 18.35812893, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.57962467799999, "SHAPE_Area": 2235.7570435900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351269.570100001990795, 258659.15989999845624 ], [ 351257.601300001144409, 258644.285399999469519 ], [ 351254.343699999153614, 258648.058400001376867 ], [ 351249.491400003433228, 258649.707499999552965 ], [ 351230.827600002288818, 258663.486900001764297 ], [ 351225.92679999768734, 258670.835099998861551 ], [ 351225.104299999773502, 258672.728199999779463 ], [ 351225.032300002872944, 258681.171300001442432 ], [ 351225.80629999935627, 258684.977299999445677 ], [ 351227.38289999961853, 258689.212099999189377 ], [ 351233.000200003385544, 258692.424499999731779 ], [ 351270.878899998962879, 258694.845400001853704 ], [ 351285.374499998986721, 258697.074999999254942 ], [ 351295.843999996781349, 258698.638399999588728 ], [ 351305.472999997437, 258704.205600000917912 ], [ 351293.493400000035763, 258690.597600001841784 ], [ 351269.570100001990795, 258659.15989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98520812, "LATITUDE": 18.35802879, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.64830756000001, "SHAPE_Area": 1307.28077106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353050.86540000140667, 258656.007100000977516 ], [ 353037.037600003182888, 258670.037200000137091 ], [ 353024.6858000010252, 258700.122499998658895 ], [ 353029.460699997842312, 258707.549899999052286 ], [ 353031.055399999022484, 258709.673799999058247 ], [ 353036.766099996864796, 258701.910100001841784 ], [ 353044.076899997889996, 258695.637200001627207 ], [ 353062.693999998271465, 258687.345800001174212 ], [ 353069.1858000010252, 258682.543800000101328 ], [ 353071.629900000989437, 258679.608500000089407 ], [ 353072.508199997246265, 258671.171900000423193 ], [ 353070.924300000071526, 258667.781399998813868 ], [ 353060.550200000405312, 258655.030900001525879 ], [ 353050.86540000140667, 258656.007100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00554927, "LATITUDE": 18.35798216, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.16603195300002, "SHAPE_Area": 724.57550555299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350955.174800001084805, 258648.776299998164177 ], [ 350864.05969999730587, 258648.241599999368191 ], [ 350881.469499997794628, 258687.014299999922514 ], [ 350887.923600003123283, 258686.644900001585484 ], [ 350877.646499998867512, 258662.496100001037121 ], [ 350876.044699996709824, 258661.216400001198053 ], [ 350876.086000002920628, 258656.361600000411272 ], [ 350879.332900002598763, 258653.855099998414516 ], [ 350957.550599999725819, 258653.861999999731779 ], [ 350955.174800001084805, 258648.776299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402036000", "MAP": "D9-1213-T74", "PARCEL_NAM": "18-7", "ACRE": "0.26", "LONGITUDE": -65.00245954, "LATITUDE": 18.35775838, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.417467131, "SHAPE_Area": 1347.94018652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351245.548000000417233, 258639.331599999219179 ], [ 351247.988499999046326, 258636.818500000983477 ], [ 351253.632700003683567, 258636.864700000733137 ], [ 351231.289700001478195, 258609.239599999040365 ], [ 351223.168999999761581, 258615.928199999034405 ], [ 351207.73759999871254, 258628.889699999243021 ], [ 351199.302000001072884, 258635.885999999940395 ], [ 351221.323499999940395, 258660.084100000560284 ], [ 351227.674199998378754, 258655.017299998551607 ], [ 351244.718299999833107, 258642.068999998271465 ], [ 351245.548000000417233, 258639.331599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98083013, "LATITUDE": 18.35733897, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.826643264699996, "SHAPE_Area": 94.295479000100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353527.874399997293949, 258603.760299999266863 ], [ 353512.534699998795986, 258605.956799998879433 ], [ 353503.665299996733665, 258605.884199999272823 ], [ 353494.817400000989437, 258603.2787000015378 ], [ 353498.807599999010563, 258608.166499998420477 ], [ 353514.122100003063679, 258608.92509999871254 ], [ 353528.657300002872944, 258606.510999999940395 ], [ 353527.874399997293949, 258603.760299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98112009, "LATITUDE": 18.3572229, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.048740327499999, "SHAPE_Area": 122.12298457199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353494.817400000989437, 258603.2787000015378 ], [ 353487.598300002515316, 258598.78660000115633 ], [ 353475.616899996995926, 258585.389699999243021 ], [ 353473.253799997270107, 258578.826400000602007 ], [ 353468.405100002884865, 258580.053300000727177 ], [ 353472.384499996900558, 258586.207600001245737 ], [ 353485.163199998438358, 258600.666499998420477 ], [ 353493.181400001049042, 258606.009500000625849 ], [ 353498.807599999010563, 258608.166499998420477 ], [ 353494.817400000989437, 258603.2787000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601025800", "MAP": "A9-469-T95", "PARCEL_NAM": "4B-8", "ACRE": "0.27", "LONGITUDE": -64.98175, "LATITUDE": 18.35655923, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.148709561, "SHAPE_Area": 966.86037315099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353404.561800003051758, 258501.848400000482798 ], [ 353397.861400000751019, 258531.135499998927116 ], [ 353409.8733000010252, 258540.944099999964237 ], [ 353435.85700000077486, 258519.836300000548363 ], [ 353436.675899997353554, 258518.36540000140667 ], [ 353436.733400002121925, 258511.61089999973774 ], [ 353434.339599996805191, 258508.635999999940395 ], [ 353432.739600002765656, 258507.145199999213219 ], [ 353431.130599997937679, 258506.709899999201298 ], [ 353404.561800003051758, 258501.848400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98718426000001, "LATITUDE": 18.35590114, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 583.51491539000006, "SHAPE_Area": 2322.9883364699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352868.142099998891354, 258428.852600000798702 ], [ 352885.394799999892712, 258391.419199999421835 ], [ 352903.468099996447563, 258352.303700000047684 ], [ 352898.691399998962879, 258345.087400000542402 ], [ 352875.684900000691414, 258395.350499998778105 ], [ 352853.498999997973442, 258443.931499999016523 ], [ 352824.754100002348423, 258410.554499998688698 ], [ 352810.793200001120567, 258440.204500000923872 ], [ 352799.299900002777576, 258464.17509999871254 ], [ 352824.614600002765656, 258521.588599998503923 ], [ 352818.8733000010252, 258532.940699998289347 ], [ 352826.103100001811981, 258536.166299998760223 ], [ 352833.503799997270107, 258519.339299999177456 ], [ 352808.973800003528595, 258464.465300001204014 ], [ 352827.031000003218651, 258427.249600000679493 ], [ 352854.175899997353554, 258459.135800000280142 ], [ 352868.142099998891354, 258428.852600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00330958000001, "LATITUDE": 18.35631272, "OBJECTID_1": 1876, "PARCEL_NO_": "102404030900", "Tax_Legal_": "FORTUNA 57-3 WEST END QTR", "Name": "HODGE, ZENZILE M.", "Address": "3208 Estate Bethesda", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 8020000, "Country": "United States", "Land_Value": 65900, "Improved_V": 246200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.192880363, "SHAPE_Area": 2715.2615712900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351103.974500000476837, 258453.954900000244379 ], [ 351133.32320000231266, 258490.547600001096725 ], [ 351128.231600001454353, 258518.239100001752377 ], [ 351158.697499997913837, 258516.81980000063777 ], [ 351156.002700001001358, 258454.525100000202656 ], [ 351130.407499998807907, 258430.039900001138449 ], [ 351127.956200003623962, 258433.819499999284744 ], [ 351122.26349999755621, 258439.472500000149012 ], [ 351103.974500000476837, 258453.954900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99265304, "LATITUDE": 18.35643938, "OBJECTID_1": 1973, "PARCEL_NO_": "102501012100", "Tax_Legal_": "BONNE ESPERANCE 9G WEST END QTR", "Name": "JACQUELYN Y ADAMS REVOCABLE TRUST", "Address": "8901 Ellsworth Ct", "City": "Silver Spring", "State": "Maryland", "Zip": 20910, "Country": "United States", "Land_Value": 83400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.37666411800001, "SHAPE_Area": 2092.8043168200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352295.156800001859665, 258483.269200000911951 ], [ 352245.221199996769428, 258476.316599998623133 ], [ 352241.385600000619888, 258485.241399999707937 ], [ 352233.548900000751019, 258491.446699999272823 ], [ 352226.994800001382828, 258494.371500000357628 ], [ 352218.203000001609325, 258497.267499998211861 ], [ 352209.736400000751019, 258498.855099998414516 ], [ 352220.528800003230572, 258501.722300000488758 ], [ 352230.382600001990795, 258504.340199999511242 ], [ 352292.41780000180006, 258520.821400001645088 ], [ 352295.156800001859665, 258483.269200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402033800", "MAP": "B9-136-T66", "PARCEL_NAM": "57-5", "ACRE": ".48", "LONGITUDE": -65.0029203, "LATITUDE": 18.35643285, "OBJECTID_1": 1528, "PARCEL_NO_": "102402033800", "Tax_Legal_": "FORTUNA 57-5 WEST END QTR", "Name": "KENNETH & DOREEN HENDRICKSON (TRUSTEE)", "Address": "PO Box 302932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.00707525199999, "SHAPE_Area": 2578.7259132700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351172.195500001311302, 258446.847199998795986 ], [ 351156.002700001001358, 258454.525100000202656 ], [ 351158.697499997913837, 258516.81980000063777 ], [ 351215.974399998784065, 258513.911100000143051 ], [ 351176.207299999892712, 258449.202100001275539 ], [ 351173.786499999463558, 258449.393399998545647 ], [ 351172.195500001311302, 258446.847199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504017800", "MAP": "D9-3374-T86", "PARCEL_NAM": "17-E", "ACRE": ".50", "LONGITUDE": -64.98801741, "LATITUDE": 18.35634916, "OBJECTID_1": 2149, "PARCEL_NO_": "102504017800", "Tax_Legal_": "17-E BONNE ESPERANCE WEST END QUARTER", "Name": "BLYDEN, THELMA & BASIL", "Address": "14R-11 ESTATE THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42700, "Improved_V": 350500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.54871530299999, "SHAPE_Area": 2414.5613353499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352780.418399997055531, 258503.495000001043081 ], [ 352751.898299999535084, 258443.733199998736382 ], [ 352723.215199999511242, 258497.749499998986721 ], [ 352768.098999999463558, 258529.780900001525879 ], [ 352780.418399997055531, 258503.495000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501011200", "MAP": "D9-463-T65", "PARCEL_NAM": "6C", "ACRE": ".58", "LONGITUDE": -64.99412665, "LATITUDE": 18.35656985, "OBJECTID_1": 1965, "PARCEL_NO_": "102501011200", "Tax_Legal_": "BONNE ESPERANCE 6C WEST END QTR", "Name": "LEBRON, EDWALDO & JOYCE", "Address": "PO Box 305082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68500, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.27746181200001, "SHAPE_Area": 3697.3071471899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352127.148000001907349, 258468.5912000015378 ], [ 352058.006899997591972, 258511.827199999243021 ], [ 352060.511100001633167, 258516.052999999374151 ], [ 352066.331900000572205, 258522.403000000864267 ], [ 352071.094400003552437, 258526.636399999260902 ], [ 352074.282399997115135, 258529.095600001513958 ], [ 352080.354900002479553, 258533.780099999159575 ], [ 352084.334600001573563, 258539.164500001817942 ], [ 352084.417599998414516, 258539.276799999177456 ], [ 352126.547100000083447, 258534.023699998855591 ], [ 352150.530900001525879, 258531.033100001513958 ], [ 352149.410099998116493, 258528.039900001138449 ], [ 352147.491499997675419, 258522.916499998420477 ], [ 352135.031199999153614, 258489.642400000244379 ], [ 352127.148000001907349, 258468.5912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00262541, "LATITUDE": 18.35622827, "OBJECTID_1": 1893, "PARCEL_NO_": "102404040100", "Tax_Legal_": "FORTUNA ESTATE 57-6 No.8 WESTEND QTR.", "Name": "KENNETH & DOREEN HENDRICKSON (TRUSTEE)", "Address": "PO Box 302932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75600, "Improved_V": 433000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.84151743300001, "SHAPE_Area": 2835.9077319100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351240.733800001442432, 258447.19709999859333 ], [ 351190.069200001657009, 258431.161499999463558 ], [ 351179.475699998438358, 258444.162599999457598 ], [ 351177.854099996387959, 258445.204799998551607 ], [ 351176.207299999892712, 258449.202100001275539 ], [ 351215.974399998784065, 258513.911100000143051 ], [ 351220.007799997925758, 258513.732999999076128 ], [ 351240.733800001442432, 258447.19709999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601025900", "MAP": "A9-469-T95", "PARCEL_NAM": "4B-9", "ACRE": "0.27", "LONGITUDE": -64.98211723, "LATITUDE": 18.35651812, "OBJECTID_1": 2266, "PARCEL_NO_": "102601025900", "Tax_Legal_": "SANTA MARIA 4B-9 WEST END QUARTER", "Name": "ABRAHIM, SHARIEF SCARBRIEL", "Address": "440 Stonefield Cir", "City": "Moncks Corner", "State": "South Carolina", "Zip": 29461, "Country": "United States", "Land_Value": 34300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.101334554, "SHAPE_Area": 1501.1441757499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353367.525399997830391, 258495.212400000542402 ], [ 353342.256399996578693, 258527.09180000051856 ], [ 353365.626900002360344, 258528.760800000280142 ], [ 353397.861400000751019, 258531.135499998927116 ], [ 353404.561800003051758, 258501.848400000482798 ], [ 353367.525399997830391, 258495.212400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98104825, "LATITUDE": 18.35633508, "OBJECTID_1": 2539, "PARCEL_NO_": "102603010200", "Tax_Legal_": "PEARL 37-42 S S QTR", "Name": "RANDOLPH I & LISA M HANSEN", "Address": "PO Box 502162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 86100, "Improved_V": 143900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.50537400499999, "SHAPE_Area": 2906.28833437 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353516.952100001275539, 258466.037900000810623 ], [ 353490.453500002622604, 258452.944400001317263 ], [ 353454.364399999380112, 258524.420800000429153 ], [ 353476.075499996542931, 258531.564599998295307 ], [ 353504.38629999756813, 258521.241599999368191 ], [ 353521.768399998545647, 258468.610500000417233 ], [ 353516.952100001275539, 258466.037900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99222715000001, "LATITUDE": 18.35627745, "OBJECTID_1": 1974, "PARCEL_NO_": "102501012200", "Tax_Legal_": "12A BONNE ESPERANCE WEST END QUARTER", "Name": "PRINCE, BERT", "Address": "PO BOX 305076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 150300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.65358713200001, "SHAPE_Area": 2305.4595407699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352298.820799998939037, 258431.792399998754263 ], [ 352295.156800001859665, 258483.269200000911951 ], [ 352292.41780000180006, 258520.821400001645088 ], [ 352326.317100003361702, 258517.088100001215935 ], [ 352319.651900000870228, 258447.583799999207258 ], [ 352318.870700001716614, 258444.622099999338388 ], [ 352318.07880000025034, 258442.92680000141263 ], [ 352314.128100000321865, 258433.395300000905991 ], [ 352309.322599999606609, 258429.55629999935627 ], [ 352305.294699996709824, 258429.101100001484156 ], [ 352298.820799998939037, 258431.792399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98453878, "LATITUDE": 18.356226, "OBJECTID_1": 2105, "PARCEL_NO_": "102504013200", "Tax_Legal_": "2-29 BONNE ESPERANCE \nWEST END QUARTER", "Name": "Angela A Baird Carty Family Revocable Trust", "Address": "2-29 Estate Bonne Esperance", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66200, "Improved_V": 76600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.89247011200001, "SHAPE_Area": 2450.7337865300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353157.451899997889996, 258449.58559999987483 ], [ 353101.7820999994874, 258453.140799999237061 ], [ 353101.489000000059605, 258487.546599999070168 ], [ 353104.413999997079372, 258522.82319999858737 ], [ 353107.615900002419949, 258525.593600001186132 ], [ 353110.837499998509884, 258526.042100001126528 ], [ 353114.070000000298023, 258525.224199999123812 ], [ 353118.142899997532368, 258520.402399998158216 ], [ 353127.966099999845028, 258503.173099998384714 ], [ 353131.261500000953674, 258494.967500001192093 ], [ 353136.977600000798702, 258486.570500001311302 ], [ 353139.448700003325939, 258480.469000000506639 ], [ 353141.907200001180172, 258475.845100000500679 ], [ 353147.637699998915195, 258465.759500000625849 ], [ 353157.451899997889996, 258449.58559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601026000", "MAP": "A9-469-T95", "PARCEL_NAM": "4B-10", "ACRE": "0.27", "LONGITUDE": -64.98247071, "LATITUDE": 18.35647564, "OBJECTID_1": 2267, "PARCEL_NO_": "102601026000", "Tax_Legal_": "SANTA MARIA 4B-10 No.1 WESTEND QTR.", "Name": "SMITH, JOE L.,JR.", "Address": "Bldg 20 Apt 155-P M P Gdn", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.25099275400001, "SHAPE_Area": 1077.24343647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353340.956600002944469, 258490.350900001823902 ], [ 353310.021899998188019, 258524.717099998146296 ], [ 353337.420299999415874, 258526.8412000015378 ], [ 353342.256399996578693, 258527.09180000051856 ], [ 353367.525399997830391, 258495.212400000542402 ], [ 353340.956600002944469, 258490.350900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603030900", "MAP": "B9-183-T68", "PARCEL_NAM": "37-9", "ACRE": ".77", "LONGITUDE": -64.97794108, "LATITUDE": 18.35630868, "OBJECTID_1": 2618, "PARCEL_NO_": "102603030900", "Tax_Legal_": "37-9 PEARL NO.2 SOUTHSIDE QTR", "Name": "VASA HOLDINGS INC", "Address": "PO Box 1511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 89300, "Improved_V": 200300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.060046481, "SHAPE_Area": 3235.13131535 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353837.359200000762939, 258527.977600000798702 ], [ 353843.937399998307228, 258513.043800000101328 ], [ 353852.89130000025034, 258503.195700000971556 ], [ 353860.198499999940395, 258497.344900000840425 ], [ 353814.569600000977516, 258458.130199998617172 ], [ 353806.46509999781847, 258462.918999999761581 ], [ 353782.160599999129772, 258476.230099998414516 ], [ 353799.505699999630451, 258522.601500000804663 ], [ 353809.183200001716614, 258522.469700001180172 ], [ 353811.602200001478195, 258522.489500001072884 ], [ 353817.237400002777576, 258523.590999998152256 ], [ 353830.890699997544289, 258530.035599999129772 ], [ 353835.730400003492832, 258529.864100001752377 ], [ 353837.359200000762939, 258527.977600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502033900", "MAP": "A9-469-T95", "PARCEL_NAM": "4B-11", "ACRE": "0.28", "LONGITUDE": -64.98278766, "LATITUDE": 18.35640933, "OBJECTID_1": 2032, "PARCEL_NO_": "102502033900", "Tax_Legal_": "4B-11 SANTA MARIA WEST END QUARTER", "Name": "FOY, JOAN P. -TRUSTEE", "Address": "PO Box 304211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47200, "Improved_V": 287100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.307306216, "SHAPE_Area": 1697.6457913 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353307.201200000941753, 258477.197900000959635 ], [ 353306.862899996340275, 258474.03999999910593 ], [ 353297.910599999129772, 258475.387699998915195 ], [ 353295.063400000333786, 258482.164799999445677 ], [ 353277.785599999129772, 258522.553399998694658 ], [ 353310.021899998188019, 258524.717099998146296 ], [ 353340.956600002944469, 258490.350900001823902 ], [ 353314.387900002300739, 258485.489399999380112 ], [ 353310.379699997603893, 258482.712400000542402 ], [ 353307.201200000941753, 258477.197900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98015024, "LATITUDE": 18.35630801, "OBJECTID_1": 2541, "PARCEL_NO_": "102603010400", "Tax_Legal_": "PEARL 37-40 S S QTR", "Name": "NISBETT, THEODORE E. & LUCITA M. SAMUEL", "Address": "PO BOX 10855", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 114600, "Improved_V": 350300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.991722452, "SHAPE_Area": 2162.99493794 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353605.666299998760223, 258464.44200000166893 ], [ 353566.920100003480911, 258469.191100001335144 ], [ 353563.419799998402596, 258501.459800001233816 ], [ 353565.658900000154972, 258522.587499998509884 ], [ 353566.452600002288818, 258524.071600001305342 ], [ 353569.661700002849102, 258525.997699998319149 ], [ 353574.503100000321865, 258525.615200001746416 ], [ 353591.532799996435642, 258514.355500001460314 ], [ 353593.962499998509884, 258513.108800001442432 ], [ 353599.6300999969244, 258510.410999998450279 ], [ 353609.34179999679327, 258506.2685999982059 ], [ 353605.666299998760223, 258464.44200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010500", "MAP": null, "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.99311891000001, "LATITUDE": 18.35609994, "OBJECTID_1": 2057, "PARCEL_NO_": "102503010500", "Tax_Legal_": "BONNE ESPERANCE 8 WEST END QTR", "Name": "ROBERTS, LUBIN & DELREASE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70200, "Improved_V": 132000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.57812371899999, "SHAPE_Area": 2632.75569206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352231.420299999415874, 258487.180500000715256 ], [ 352236.394900001585484, 258471.178100001066923 ], [ 352238.1908999979496, 258449.661299999803305 ], [ 352232.807499997317791, 258419.008600000292063 ], [ 352207.682300001382828, 258434.0016999989748 ], [ 352187.418399997055531, 258446.290399998426437 ], [ 352195.520499996840954, 258494.024000000208616 ], [ 352199.682199999690056, 258492.240499999374151 ], [ 352210.530100002884865, 258490.388399999588728 ], [ 352218.996799997985363, 258488.800900001078844 ], [ 352226.669699996709824, 258487.21339999884367 ], [ 352231.420299999415874, 258487.180500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98713962, "LATITUDE": 18.35614937, "OBJECTID_1": 1988, "PARCEL_NO_": "102502020700", "Tax_Legal_": "BONNE ESPERANCE 14G WEST END QTR", "Name": "SHERIDAN, NESTRA", "Address": "2 Haabet Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.89826177999998, "SHAPE_Area": 2236.5247188100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352808.973800003528595, 258464.465300001204014 ], [ 352903.676299996674061, 258517.16950000077486 ], [ 352854.175899997353554, 258459.135800000280142 ], [ 352827.031000003218651, 258427.249600000679493 ], [ 352808.973800003528595, 258464.465300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504017100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98673716, "LATITUDE": 18.35616344, "OBJECTID_1": 2142, "PARCEL_NO_": "102504017100", "Tax_Legal_": "14E BONNE ESPERANCE No 2. WEST END QTR", "Name": "ANDREWS, KASIM J", "Address": "PO Box 6641", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046641, "Country": "United States", "Land_Value": 45700, "Improved_V": 216600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.094725767, "SHAPE_Area": 2807.91215388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352924.193800002336502, 258475.118700001388788 ], [ 352868.142099998891354, 258428.852600000798702 ], [ 352854.175899997353554, 258459.135800000280142 ], [ 352903.676299996674061, 258517.16950000077486 ], [ 352924.193800002336502, 258475.118700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98064887, "LATITUDE": 18.35631845, "OBJECTID_1": 2540, "PARCEL_NO_": "102603010300", "Tax_Legal_": "PEARL 37-41 S S QTR", "Name": "WARNER, GEORGE & ROGERS, L", "Address": "PO Box 301772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61800, "Improved_V": 275500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.330237329, "SHAPE_Area": 1611.26860698 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353521.768399998545647, 258468.610500000417233 ], [ 353504.38629999756813, 258521.241599999368191 ], [ 353513.284500002861023, 258517.936900001019239 ], [ 353556.157600000500679, 258502.033599998801947 ], [ 353557.973399996757507, 258478.194899998605251 ], [ 353553.968800000846386, 258474.995700001716614 ], [ 353535.423600003123283, 258474.844000000506639 ], [ 353528.186599999666214, 258472.462699998170137 ], [ 353521.768399998545647, 258468.610500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00549174, "LATITUDE": 18.35605948, "OBJECTID_1": 1828, "PARCEL_NO_": "102404010600", "Tax_Legal_": "52-2 ESTATE FORTUNA WEST END QTR", "Name": "PARSONS, LIONEL & LINDY", "Address": "PO Box 305504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 143900, "Improved_V": 151400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.07949797499998, "SHAPE_Area": 4138.8472326299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350906.486400000751019, 258400.765099998563528 ], [ 350862.521099999547005, 258450.223299998790026 ], [ 350887.310000002384186, 258474.701900001615286 ], [ 350893.668799996376038, 258485.519799999892712 ], [ 350899.241099998354912, 258494.009100001305342 ], [ 350954.597199998795986, 258432.611800000071526 ], [ 350906.486400000751019, 258400.765099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98152025, "LATITUDE": 18.35626798, "OBJECTID_1": 2611, "PARCEL_NO_": "102603030200", "Tax_Legal_": "SANTA MARIA 4B-12 WESTEND QTR.", "Name": "ALLEN, KENNETH S. & EIRENE C", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 30200, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.81414620699999, "SHAPE_Area": 1098.5195500899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353464.460900001227856, 258475.107500001788139 ], [ 353431.432700000703335, 258471.248599998652935 ], [ 353410.283299997448921, 258492.818199999630451 ], [ 353431.218699999153614, 258496.366999998688698 ], [ 353439.247599996626377, 258500.443500000983477 ], [ 353442.433300003409386, 258505.113600000739098 ], [ 353444.026199996471405, 258507.448699999600649 ], [ 353445.592100001871586, 258512.94990000128746 ], [ 353447.199299998581409, 258513.596400000154972 ], [ 353464.460900001227856, 258475.107500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504017700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98777274, "LATITUDE": 18.35599649, "OBJECTID_1": 2148, "PARCEL_NO_": "102504017700", "Tax_Legal_": "BONNE ESPERANCE 17-D WEST END QTR.", "Name": "FAULKNER, ANTONIO", "Address": "3295 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.461950092, "SHAPE_Area": 2727.0613150999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352810.793200001120567, 258440.204500000923872 ], [ 352769.105999998748302, 258411.576699998229742 ], [ 352751.898299999535084, 258443.733199998736382 ], [ 352780.418399997055531, 258503.495000001043081 ], [ 352799.299900002777576, 258464.17509999871254 ], [ 352810.793200001120567, 258440.204500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00671359, "LATITUDE": 18.35596593, "OBJECTID_1": 1827, "PARCEL_NO_": "102404010500", "Tax_Legal_": "FORTUNA 6-1 WEST END QTR", "Name": "MCNICHOLAS, GEORGEANN & JAMES (TRUSTEES)", "Address": "3206 Estate Bethesda", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8028232, "Country": "United States", "Land_Value": 143100, "Improved_V": 241800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.70760632599999, "SHAPE_Area": 3635.2017194700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350788.062799997627735, 258387.552400000393391 ], [ 350739.220100000500679, 258441.614799998700619 ], [ 350762.247100003063679, 258483.599800001829863 ], [ 350819.233800001442432, 258420.104800000786781 ], [ 350808.0658999979496, 258405.870099999010563 ], [ 350805.670400001108646, 258403.106300000101328 ], [ 350800.891800001263618, 258396.101100001484156 ], [ 350788.062799997627735, 258387.552400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97973607, "LATITUDE": 18.35619583, "OBJECTID_1": 2542, "PARCEL_NO_": "102603010500", "Tax_Legal_": "PEARL 37-19 S S QTR", "Name": "GEORGE, SHARON (TRUSTEE)", "Address": "1370 Virginia Ave", "City": "Bronx", "State": "New York", "Zip": 10462, "Country": "United States", "Land_Value": 66500, "Improved_V": 418200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.01456524700001, "SHAPE_Area": 1537.31226952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353659.681999996304512, 258465.728500001132488 ], [ 353605.666299998760223, 258464.44200000166893 ], [ 353609.34179999679327, 258506.2685999982059 ], [ 353651.422899998724461, 258488.670099999755621 ], [ 353659.681999996304512, 258465.728500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503011500", "MAP": "D9-1179-T74", "PARCEL_NAM": "13", "ACRE": "0.51", "LONGITUDE": -64.99151799000001, "LATITUDE": 18.3559991, "OBJECTID_1": 2067, "PARCEL_NO_": "102503011500", "Tax_Legal_": "BONNE ESPERANCE 13 WEST END", "Name": "SMITH, MICHAEL", "Address": "PO Box 631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.35736791900001, "SHAPE_Area": 2326.30856223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352368.354299999773502, 258409.985500000417233 ], [ 352361.403899997472763, 258468.612700000405312 ], [ 352395.920699998736382, 258487.049199998378754 ], [ 352410.064900003373623, 258435.869199998676777 ], [ 352368.354299999773502, 258409.985500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97740492, "LATITUDE": 18.35515613, "OBJECTID_1": 2584, "PARCEL_NO_": "102603021200", "Tax_Legal_": "3 CROWN & HAWK SOUTH SIDE QUARTER", "Name": "DELAGARDE, AIMEE & OTHERS", "Address": "PO Box 11544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 399500, "Improved_V": 25000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 876.44949901999996, "SHAPE_Area": 43527.468678099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353776.482600003480911, 258290.843499999493361 ], [ 353698.241499997675419, 258293.580600000917912 ], [ 353712.580700002610683, 258314.1739999987185 ], [ 353743.654700003564358, 258358.124699998646975 ], [ 353770.747400000691414, 258396.132199998944998 ], [ 353791.465199999511242, 258425.221599999815226 ], [ 353814.569600000977516, 258458.130199998617172 ], [ 353860.198499999940395, 258497.344900000840425 ], [ 353891.790299996733665, 258480.504900000989437 ], [ 353983.41610000282526, 258421.093100000172853 ], [ 353998.802599996328354, 258413.408599998801947 ], [ 354006.88910000026226, 258410.730500001460314 ], [ 354013.626599997282028, 258282.440799999982119 ], [ 353840.204700000584126, 258288.620799999684095 ], [ 353776.482600003480911, 258290.843499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98191489, "LATITUDE": 18.35619384, "OBJECTID_1": 2612, "PARCEL_NO_": "102603030300", "Tax_Legal_": "SANTA MARIA 4B-13 WESTEND QTR.", "Name": "ETIENNE, DORIVAL", "Address": "PO BOX 304040", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33300, "Improved_V": 296300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.76772709700001, "SHAPE_Area": 1050.60798864 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353431.432700000703335, 258471.248599998652935 ], [ 353385.514200001955032, 258466.017599999904633 ], [ 353365.997299998998642, 258485.278499998152256 ], [ 353410.283299997448921, 258492.818199999630451 ], [ 353431.432700000703335, 258471.248599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99255119, "LATITUDE": 18.35611404, "OBJECTID_1": 2068, "PARCEL_NO_": "102503011600", "Tax_Legal_": "9H BONNE ESPERANCE WEST END QUARTER", "Name": "FARROW, CARVER & FREIDA", "Address": "PO BOX 302123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 225900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.876079014, "SHAPE_Area": 1831.6860542500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352245.221199996769428, 258476.316599998623133 ], [ 352295.156800001859665, 258483.269200000911951 ], [ 352298.820799998939037, 258431.792399998754263 ], [ 352290.716300003230572, 258436.581199999898672 ], [ 352270.48480000346899, 258445.07039999961853 ], [ 352247.037000000476837, 258452.477899998426437 ], [ 352245.221199996769428, 258476.316599998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97436271, "LATITUDE": 18.35589222, "OBJECTID_1": 2648, "PARCEL_NO_": "102604010300", "Tax_Legal_": "2C-7 CROWN & HAWK No.3B SOUTHSIDE QTR", "Name": "GAIL P. BENSON REV. TRST IND.", "Address": "216 E Chippen Hill Rd", "City": "Burlington", "State": "Connecticut", "Zip": 6013, "Country": "United States", "Land_Value": 74000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.73711845099999, "SHAPE_Area": 1643.65130783 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354163.959700003266335, 258485.669399999082088 ], [ 354215.340700000524521, 258470.732900001108646 ], [ 354214.40259999781847, 258450.181200001388788 ], [ 354209.637000001966953, 258433.158599998801947 ], [ 354208.870300002396107, 258428.508200000971556 ], [ 354204.181599996984005, 258410.949099998921156 ], [ 354202.590599998831749, 258408.402899999171495 ], [ 354198.568000003695488, 258407.314500000327826 ], [ 354195.32660000026226, 258409.187899999320507 ], [ 354194.505900003015995, 258410.869899999350309 ], [ 354193.566500000655651, 258426.4831000007689 ], [ 354191.037900000810623, 258439.339099999517202 ], [ 354185.228299997746944, 258458.712200000882149 ], [ 354163.959700003266335, 258485.669399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010600", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9791986, "LATITUDE": 18.3561825, "OBJECTID_1": 2543, "PARCEL_NO_": "102603010600", "Tax_Legal_": "PEARL 37-18 LITTLE NORTHSIDE", "Name": "BROWNLOW, FELECIA", "Address": "37-18 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87300, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.02684547499999, "SHAPE_Area": 3098.4599126799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353664.023000001907349, 258511.470600001513958 ], [ 353667.409599997103214, 258510.83559999987483 ], [ 353674.18299999833107, 258510.83559999987483 ], [ 353682.438000001013279, 258508.718899998813868 ], [ 353685.824699997901917, 258506.178899999707937 ], [ 353691.328000001609325, 258503.850600000470877 ], [ 353695.3496999964118, 258501.733899999409914 ], [ 353699.159699998795986, 258499.617199998348951 ], [ 353706.568000003695488, 258496.865499999374151 ], [ 353715.881399996578693, 258492.420499999076128 ], [ 353739.058899998664856, 258484.482999999076128 ], [ 353735.342299997806549, 258481.968600001186132 ], [ 353691.210900001227856, 258456.276200000196695 ], [ 353664.73030000180006, 258441.071800000965595 ], [ 353659.681999996304512, 258465.728500001132488 ], [ 353651.422899998724461, 258488.670099999755621 ], [ 353657.461300000548363, 258489.880499999970198 ], [ 353659.577899999916553, 258491.362199999392033 ], [ 353660.424599997699261, 258494.960499998182058 ], [ 353660.212999999523163, 258497.712200000882149 ], [ 353659.577899999916553, 258500.252199999988079 ], [ 353659.366300001740456, 258503.638900000602007 ], [ 353659.366300001740456, 258505.5439000017941 ], [ 353659.366300001740456, 258507.87220000103116 ], [ 353659.366300001740456, 258510.200599998235703 ], [ 353661.271300002932549, 258511.470600001513958 ], [ 353664.023000001907349, 258511.470600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98218179, "LATITUDE": 18.35602523, "OBJECTID_1": 2613, "PARCEL_NO_": "102603030400", "Tax_Legal_": "4B-14 ESTATE SANTA MARIA No.1 WESTEND QTR.", "Name": "HEWLETT, SARAH & JOYCELYN J", "Address": "PO Box 306345", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 323800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.08338437399999, "SHAPE_Area": 1157.83345764 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353355.88570000231266, 258441.710499998182058 ], [ 353356.334100000560284, 258483.721799999475479 ], [ 353365.997299998998642, 258485.278499998152256 ], [ 353385.514200001955032, 258466.017599999904633 ], [ 353392.1570999994874, 258443.484999999403954 ], [ 353375.238899998366833, 258441.657800000160933 ], [ 353355.88570000231266, 258441.710499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98246616, "LATITUDE": 18.35607277, "OBJECTID_1": 2614, "PARCEL_NO_": "102603030500", "Tax_Legal_": "SANTA MARIA ESATE 4B-15 No.1 WESTEND QTR.", "Name": "HEWLETT, JOYCELYN", "Address": "PO Box 306345", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.32020938900001, "SHAPE_Area": 1112.3904254500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353355.88570000231266, 258441.710499998182058 ], [ 353346.998199999332428, 258443.748700000345707 ], [ 353340.52080000191927, 258446.862100001424551 ], [ 353326.712700001895428, 258458.570300001651049 ], [ 353319.38400000333786, 258466.954100001603365 ], [ 353316.130000002682209, 258470.304900001734495 ], [ 353316.101199999451637, 258473.682199999690056 ], [ 353318.489600002765656, 258477.290300000458956 ], [ 353356.334100000560284, 258483.721799999475479 ], [ 353355.88570000231266, 258441.710499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603011100", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9787296, "LATITUDE": 18.35603571, "OBJECTID_1": 2546, "PARCEL_NO_": "102603011100", "Tax_Legal_": "PEARL 37-17 S S QTR", "Name": "CALLWOOD, ANGELA V.", "Address": "PO Box 8029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69200, "Improved_V": 177000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.39667276700001, "SHAPE_Area": 1661.82259705 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353749.367899999022484, 258444.719900000840425 ], [ 353691.210900001227856, 258456.276200000196695 ], [ 353735.342299997806549, 258481.968600001186132 ], [ 353739.058899998664856, 258484.482999999076128 ], [ 353747.525600001215935, 258483.001299999654293 ], [ 353759.48480000346899, 258480.143800001591444 ], [ 353765.093999996781349, 258475.698800001293421 ], [ 353766.787299998104572, 258471.253800000995398 ], [ 353764.49549999833107, 258467.430700000375509 ], [ 353749.367899999022484, 258444.719900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9739772, "LATITUDE": 18.35584227, "OBJECTID_1": 2649, "PARCEL_NO_": "102604010400", "Tax_Legal_": "CROWN & HAWK 2C-4 S S QTR.", "Name": "CHARLIE ROCK TRUST", "Address": "3524 Pinecrest Ave", "City": "South Lake Tahoe", "State": "California", "Zip": 96150, "Country": "United States", "Land_Value": 57600, "Improved_V": 158800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.422707613, "SHAPE_Area": 1793.15903428 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354217.435599997639656, 258400.843600001186132 ], [ 354209.361599996685982, 258402.044100001454353 ], [ 354216.487199999392033, 258417.512299999594688 ], [ 354218.069200001657009, 258421.113800000399351 ], [ 354222.000100001692772, 258432.967199999839067 ], [ 354225.142599999904633, 258442.703200001269579 ], [ 354226.670699998736382, 258452.637099999934435 ], [ 354225.322700001299381, 258475.455600000917912 ], [ 354271.666000001132488, 258471.581599999219179 ], [ 354251.74379999935627, 258443.765299998223782 ], [ 354217.435599997639656, 258400.843600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98658898, "LATITUDE": 18.35581746, "OBJECTID_1": 2141, "PARCEL_NO_": "102504017000", "Tax_Legal_": "BONNE ESPERANCE 14D WEST END QTR", "Name": "PENN, YVONNE A. & RITA I", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45700, "Improved_V": 164500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.644130125, "SHAPE_Area": 2921.6970791 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352942.249200001358986, 258438.114000000059605 ], [ 352885.394799999892712, 258391.419199999421835 ], [ 352868.142099998891354, 258428.852600000798702 ], [ 352924.193800002336502, 258475.118700001388788 ], [ 352942.249200001358986, 258438.114000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "C", "ACRE": "2.05", "LONGITUDE": -65.01812617, "LATITUDE": 18.35539743, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 488.90644120899998, "SHAPE_Area": 7875.7476675799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349616.156300000846386, 258417.224300000816584 ], [ 349594.617799997329712, 258389.816899999976158 ], [ 349591.18860000371933, 258319.072500001639128 ], [ 349635.756999999284744, 258293.472800001502037 ], [ 349625.265900000929832, 258294.442400000989437 ], [ 349572.002599999308586, 258299.494899999350309 ], [ 349547.030299998819828, 258296.546300001442432 ], [ 349521.170699998736382, 258303.089600000530481 ], [ 349532.1858000010252, 258335.265999998897314 ], [ 349551.41499999910593, 258349.777800001204014 ], [ 349545.61259999871254, 258368.306499999016523 ], [ 349551.847300000488758, 258393.688799999654293 ], [ 349548.54110000282526, 258403.160900000482798 ], [ 349554.844200000166893, 258420.522199999541044 ], [ 349589.290799997746944, 258447.190799999982119 ], [ 349616.156300000846386, 258417.224300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99188802, "LATITUDE": 18.35579204, "OBJECTID_1": 2060, "PARCEL_NO_": "102503010800", "Tax_Legal_": "BONNE ESPERANCE 10 WEST END QTR", "Name": "SMITH, RITA", "Address": "PO Box 631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 63300, "Improved_V": 172000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.38754343, "SHAPE_Area": 2619.4393020299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352368.354299999773502, 258409.985500000417233 ], [ 352339.12780000269413, 258385.191300000995398 ], [ 352328.119599997997284, 258400.157000001519918 ], [ 352319.127899996936321, 258414.437800001353025 ], [ 352319.066699996590614, 258421.614500001072884 ], [ 352326.955399997532368, 258442.155099999159575 ], [ 352330.133900001645088, 258447.669599998742342 ], [ 352334.924999997019768, 258453.197200000286102 ], [ 352340.533299997448921, 258457.464999999850988 ], [ 352361.403899997472763, 258468.612700000405312 ], [ 352368.354299999773502, 258409.985500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00384265, "LATITUDE": 18.35561241, "OBJECTID_1": 1875, "PARCEL_NO_": "102404030800", "Tax_Legal_": "FORTUNA 38 WEST END QTR", "Name": "SERRANT, V, CARTY, E, MILLIN, F", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 159700, "Improved_V": 144800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 398.04081516600002, "SHAPE_Area": 6912.9667917899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351072.461999997496605, 258322.118999999016523 ], [ 351032.851999998092651, 258333.616099998354912 ], [ 351043.217100001871586, 258347.421999998390675 ], [ 351044.799199998378754, 258351.023499999195337 ], [ 351048.766000002622604, 258358.6554000005126 ], [ 351051.939099997282028, 258364.803100001066923 ], [ 351055.889799997210503, 258374.334600001573563 ], [ 351057.464599996805191, 258378.7804000005126 ], [ 351060.596400000154972, 258389.782900001853704 ], [ 351062.943400003015995, 258398.245900001376867 ], [ 351061.228299997746944, 258410.264199998229742 ], [ 351060.376999996602535, 258415.534600000828505 ], [ 351057.031300000846386, 258429.650400001555681 ], [ 351051.311499997973442, 258438.4695999994874 ], [ 351039.911700002849102, 258451.464099999517202 ], [ 351039.893700003623962, 258453.57490000128746 ], [ 351042.298299998044968, 258455.283300001174212 ], [ 351061.653399996459484, 258455.019499998539686 ], [ 351074.547200001776218, 258455.969399999827147 ], [ 351086.66160000115633, 258453.746500000357628 ], [ 351096.380500003695488, 258448.759799998253584 ], [ 351117.49210000038147, 258431.622900001704693 ], [ 351122.380300000309944, 258425.752300001680851 ], [ 351124.838799998164177, 258421.128400001674891 ], [ 351130.684399999678135, 258397.5337999984622 ], [ 351129.935599997639656, 258390.772599998861551 ], [ 351127.53830000013113, 258388.219900000840425 ], [ 351097.061999998986721, 258368.760999999940395 ], [ 351089.866400003433228, 258361.524900000542402 ], [ 351086.673500001430511, 258357.699099998921156 ], [ 351083.491400003433228, 258352.606800001114607 ], [ 351072.461999997496605, 258322.118999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98138442, "LATITUDE": 18.3559852, "OBJECTID_1": 2616, "PARCEL_NO_": "102603030700", "Tax_Legal_": "4B-17 SANTA MARIA SOUTH SIDE QTR.", "Name": "PARRIS RICHARDS, MONEE & ADEYEMI", "Address": "PO BOX 12346", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 239700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.89437598699999, "SHAPE_Area": 1224.4707189200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353480.074000000953674, 258440.827100001275539 ], [ 353471.215300001204014, 258439.488000001758337 ], [ 353460.733199998736382, 258439.402199998497963 ], [ 353440.557499997317791, 258441.348000001162291 ], [ 353431.432700000703335, 258471.248599998652935 ], [ 353464.460900001227856, 258475.107500001788139 ], [ 353480.074000000953674, 258440.827100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603011000", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97822783, "LATITUDE": 18.35591014, "OBJECTID_1": 2545, "PARCEL_NO_": "102603011000", "Tax_Legal_": "37-10 ESTATE PEARL No.2 SOUTHSIDE QTR.", "Name": "JOSEPH, RAY K", "Address": "PO Box 104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61300, "Improved_V": 204600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.61569568100001, "SHAPE_Area": 1336.2145227799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353791.465199999511242, 258425.221599999815226 ], [ 353763.082400001585484, 258443.987700000405312 ], [ 353782.201999999582767, 258471.375300001353025 ], [ 353782.160599999129772, 258476.230099998414516 ], [ 353806.46509999781847, 258462.918999999761581 ], [ 353814.569600000977516, 258458.130199998617172 ], [ 353791.465199999511242, 258425.221599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404031000", "MAP": "B9-136-T66", "PARCEL_NAM": "57-4", "ACRE": ".55", "LONGITUDE": -65.00315911, "LATITUDE": 18.35589811, "OBJECTID_1": 1877, "PARCEL_NO_": "102404031000", "Tax_Legal_": "57-4 FORTUNA WEST END QTR", "Name": "HENDRICKSON, KENNETH & DOREEN (TRUSTEE)", "Address": "PO Box 302932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65900, "Improved_V": 303300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.80543043899999, "SHAPE_Area": 1405.3505853500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351182.696599997580051, 258424.083399999886751 ], [ 351138.707599997520447, 258403.003899998962879 ], [ 351133.704700000584126, 258421.623100001364946 ], [ 351130.407499998807907, 258430.039900001138449 ], [ 351156.002700001001358, 258454.525100000202656 ], [ 351172.195500001311302, 258446.847199998795986 ], [ 351166.612400002777576, 258439.624299999326468 ], [ 351165.851099997758865, 258434.340799998492002 ], [ 351169.913199998438358, 258430.785399999469519 ], [ 351176.361900001764297, 258431.049300000071526 ], [ 351180.409699998795986, 258429.182599999010563 ], [ 351182.696599997580051, 258424.083399999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98177682, "LATITUDE": 18.3559847, "OBJECTID_1": 2615, "PARCEL_NO_": "102603030600", "Tax_Legal_": "SANTA MARIA 4B-25 WESTEND QTR. #1", "Name": "ALLAMBY, RAMONA & RUDOLPH", "Address": "PO Box 9157", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29600, "Improved_V": 189100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.49226085800001, "SHAPE_Area": 1215.8757589300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353440.557499997317791, 258441.348000001162291 ], [ 353413.925800003111362, 258443.874299999326468 ], [ 353392.1570999994874, 258443.484999999403954 ], [ 353385.514200001955032, 258466.017599999904633 ], [ 353431.432700000703335, 258471.248599998652935 ], [ 353440.557499997317791, 258441.348000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404010700", "MAP": "D9-8139-T008", "PARCEL_NAM": "53-1A", "ACRE": null, "LONGITUDE": -65.00593497, "LATITUDE": 18.35570724, "OBJECTID_1": 1829, "PARCEL_NO_": "102404010700", "Tax_Legal_": "FORTUNA ESTATE 53-1 No.2 WESTEND QTR.", "Name": "LEWIS, GARY E.", "Address": "PO Box 305165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.21448121200001, "SHAPE_Area": 3931.5364839700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350854.424900002777576, 258359.386799998581409 ], [ 350818.551600001752377, 258405.5337999984622 ], [ 350829.73030000180006, 258418.502000000327826 ], [ 350862.521099999547005, 258450.223299998790026 ], [ 350906.486400000751019, 258400.765099998563528 ], [ 350876.818300001323223, 258381.101599998772144 ], [ 350864.010799996554852, 258370.019900001585484 ], [ 350854.424900002777576, 258359.386799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99452799, "LATITUDE": 18.35541502, "OBJECTID_1": 2055, "PARCEL_NO_": "102503010300", "Tax_Legal_": "1-1 BONNE ESPERANCE 1-1 NO.2 WEST END QTR.", "Name": "CRYSTAL, KATHRYN", "Address": "PO Box 303249", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106700, "Improved_V": 82200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.79011053900001, "SHAPE_Area": 5616.6729345800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352096.540700003504753, 258417.893399998545647 ], [ 352082.936899997293949, 258310.968699999153614 ], [ 352036.718199998140335, 258340.987900000065565 ], [ 352051.016699999570847, 258461.006000000983477 ], [ 352059.990500003099442, 258448.836100000888109 ], [ 352070.555200003087521, 258439.212200000882149 ], [ 352079.489399999380112, 258431.686000000685453 ], [ 352096.540700003504753, 258417.893399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98012737000001, "LATITUDE": 18.35589413, "OBJECTID_1": 2549, "PARCEL_NO_": "102603011400", "Tax_Legal_": "PEARL 37-39 S S QTR", "Name": "FAHIE, PAUL", "Address": "PO BOX 502307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 84500, "Improved_V": 308100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.424673614, "SHAPE_Area": 1439.8701528500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353603.581799998879433, 258425.161499999463558 ], [ 353574.543799996376038, 258426.190400000661612 ], [ 353570.330600000917912, 258447.476399999111891 ], [ 353566.920100003480911, 258469.191100001335144 ], [ 353605.666299998760223, 258464.44200000166893 ], [ 353607.48030000180006, 258440.814399998635054 ], [ 353606.706399999558926, 258437.008299998939037 ], [ 353604.309000000357628, 258434.455600000917912 ], [ 353602.700000002980232, 258434.020199999213219 ], [ 353603.581799998879433, 258425.161499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98047511, "LATITUDE": 18.35591122, "OBJECTID_1": 2550, "PARCEL_NO_": "102603011500", "Tax_Legal_": "PEARL 37-38 S S QTR", "Name": "FORBES, DONNA", "Address": "9302 E Dr Mlk Blvd", "City": "Tampa", "State": "Florida", "Zip": 33610, "Country": "United States", "Land_Value": 43200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.609067474, "SHAPE_Area": 861.58908322399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353547.931900002062321, 258426.394799999892712 ], [ 353533.88289999961853, 258466.387600000947714 ], [ 353540.320799998939037, 258467.917899999767542 ], [ 353542.739799998700619, 258467.937699999660254 ], [ 353546.771300002932549, 258467.97069999948144 ], [ 353557.27139999717474, 258465.945700000971556 ], [ 353559.713699996471405, 258463.221500001847744 ], [ 353563.057599999010563, 258449.316700000315905 ], [ 353563.905299998819828, 258444.468499999493361 ], [ 353565.629399999976158, 258431.394799999892712 ], [ 353547.931900002062321, 258426.394799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9807717, "LATITUDE": 18.35584435, "OBJECTID_1": 2551, "PARCEL_NO_": "102603011600", "Tax_Legal_": "37-37 PEARL SOUTHSIDE QUARTER", "Name": "MATTHEW, WILLIAM A. & ROSALIE A. (TRUSTEES)", "Address": "PO Box 303452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62800, "Improved_V": 317400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.060257173, "SHAPE_Area": 1843.6879036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353547.931900002062321, 258426.394799999892712 ], [ 353509.320600003004074, 258415.313000001013279 ], [ 353490.453500002622604, 258452.944400001317263 ], [ 353516.952100001275539, 258466.037900000810623 ], [ 353521.04839999973774, 258458.472100000828505 ], [ 353525.850299999117851, 258462.733300000429153 ], [ 353533.88289999961853, 258466.387600000947714 ], [ 353547.931900002062321, 258426.394799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00251193, "LATITUDE": 18.35581442, "OBJECTID_1": 1894, "PARCEL_NO_": "102404040200", "Tax_Legal_": "FORTUNA 58-2 WEST END QTR", "Name": "JOZWIAK, MICHAEL & DONNA", "Address": "PO Box 302263", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.288754176, "SHAPE_Area": 2138.6572674600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351253.177400000393391, 258406.346799999475479 ], [ 351201.677699998021126, 258393.681800000369549 ], [ 351195.821299999952316, 258418.543000001460314 ], [ 351190.069200001657009, 258431.161499999463558 ], [ 351240.733800001442432, 258447.19709999859333 ], [ 351253.177400000393391, 258406.346799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00704197, "LATITUDE": 18.35559173, "OBJECTID_1": 1826, "PARCEL_NO_": "102404010400", "Tax_Legal_": "FORTUNA ESTATE 7-1 No.8 WESTEND QTR", "Name": "LAMMERING, JAY SCOTT & JAN H", "Address": "PO Box 305884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120500, "Improved_V": 243200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.356433917, "SHAPE_Area": 3930.3496785299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350760.116899996995926, 258355.026299998164177 ], [ 350699.519400000572205, 258369.095800001174212 ], [ 350739.220100000500679, 258441.614799998700619 ], [ 350788.062799997627735, 258387.552400000393391 ], [ 350783.253700003027916, 258384.135499998927116 ], [ 350778.448100000619888, 258380.296500001102686 ], [ 350774.44709999859333, 258376.675200000405312 ], [ 350770.45160000026226, 258372.4206000007689 ], [ 350765.665799997746944, 258366.259700000286102 ], [ 350760.116899996995926, 258355.026299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97968776, "LATITUDE": 18.35592141, "OBJECTID_1": 2548, "PARCEL_NO_": "102603011300", "Tax_Legal_": "PEARL 37-20 S S QTR", "Name": "DELLER, GEORGE & GAYLE", "Address": "PO Box 9787", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66500, "Improved_V": 121600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.39328651899999, "SHAPE_Area": 1585.4826100800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353664.73030000180006, 258441.071800000965595 ], [ 353620.460400000214577, 258431.632500000298023 ], [ 353619.628899998962879, 258434.581000000238419 ], [ 353616.396499998867512, 258435.398899998515844 ], [ 353613.126299999654293, 258440.649500001221895 ], [ 353607.48030000180006, 258440.814399998635054 ], [ 353605.666299998760223, 258464.44200000166893 ], [ 353659.681999996304512, 258465.728500001132488 ], [ 353664.73030000180006, 258441.071800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503011800", "MAP": "D9-1215-T74", "PARCEL_NAM": null, "ACRE": ".60", "LONGITUDE": -64.99289296000001, "LATITUDE": 18.3555242, "OBJECTID_1": 2070, "PARCEL_NO_": "102503011800", "Tax_Legal_": "BONNE ESPERANCE 9M WEST END QTR", "Name": "FRETT, ASIM J. & AYISHA P.", "Address": "9L Bonne Esperance", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.03319861099999, "SHAPE_Area": 2053.21273324 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352260.058499999344349, 258438.441199999302626 ], [ 352235.112400002777576, 258337.756499998271465 ], [ 352220.534000001847744, 258345.2364999987185 ], [ 352232.807499997317791, 258419.008600000292063 ], [ 352238.1908999979496, 258449.661299999803305 ], [ 352243.070100001990795, 258444.846000000834465 ], [ 352260.058499999344349, 258438.441199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97108687, "LATITUDE": 18.35519111, "OBJECTID_1": 2652, "PARCEL_NO_": "102604010700", "Tax_Legal_": "CROWN & HAWK 2BA&2BB S S QTR", "Name": "KENDALL, WILLIAM F., JR. & LISA", "Address": "700 N Osceola Ave", "City": "Clearwater", "State": "Florida", "Zip": 33755, "Country": "United States", "Land_Value": 205000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 501.15597968399999, "SHAPE_Area": 12033.746605300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354589.408900000154972, 258467.638300001621246 ], [ 354602.424199998378754, 258359.664900001138449 ], [ 354593.883900001645088, 258320.964899998158216 ], [ 354461.49040000140667, 258338.457600001245737 ], [ 354438.886600002646446, 258341.438999999314547 ], [ 354589.408900000154972, 258467.638300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98452739, "LATITUDE": 18.35561158, "OBJECTID_1": 2106, "PARCEL_NO_": "102504013300", "Tax_Legal_": "BONNE ESPERANCE 2-27 WEST END QTR", "Name": "RAIMER, MARIAN A. & LAVERNE A.", "Address": "PO Box 307962", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.97020670900002, "SHAPE_Area": 3854.1740206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353140.254199996590614, 258385.905699998140335 ], [ 353117.893299996852875, 258360.391499999910593 ], [ 353091.92230000346899, 258380.021699998527765 ], [ 353095.095399998128414, 258386.169399999082088 ], [ 353096.675599999725819, 258389.98200000077486 ], [ 353097.458499997854233, 258392.732599999755621 ], [ 353102.066299997270107, 258419.790300000458956 ], [ 353102.705300003290176, 258439.427200000733137 ], [ 353101.7820999994874, 258453.140799999237061 ], [ 353157.451899997889996, 258449.58559999987483 ], [ 353140.254199996590614, 258385.905699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603011200", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97897348, "LATITUDE": 18.35578398, "OBJECTID_1": 2547, "PARCEL_NO_": "102603011200", "Tax_Legal_": "PEARL 37-16 S S QTR", "Name": "BAPTISTE, WILLIAMS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69200, "Improved_V": 186100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.96842791099999, "SHAPE_Area": 2078.4866939200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353725.484300002455711, 258408.6385000012815 ], [ 353664.73030000180006, 258441.071800000965595 ], [ 353691.210900001227856, 258456.276200000196695 ], [ 353749.367899999022484, 258444.719900000840425 ], [ 353725.484300002455711, 258408.6385000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102204010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.04130952, "LATITUDE": 18.35553603, "OBJECTID_1": 1142, "PARCEL_NO_": "102204010100", "Tax_Legal_": "1-3 ESTATE BOTANY BAY WEST END QTR", "Name": "NATURE CONSERVANCY INC", "Address": "3052 Estate Little Princess", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 446500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.462302857, "SHAPE_Area": 3394.19002697 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347118.854800000786781, 258319.947000000625849 ], [ 347105.944799996912479, 258320.896800000220537 ], [ 347102.687200002372265, 258324.669799998402596 ], [ 347087.257600001990795, 258337.420299999415874 ], [ 347085.626900002360344, 258339.517799999564886 ], [ 347085.608999997377396, 258341.628600001335144 ], [ 347088.789300002157688, 258346.932000000029802 ], [ 347096.785899996757507, 258354.807900000363588 ], [ 347097.568800002336502, 258357.558499999344349 ], [ 347096.722900003194809, 258362.195700000971556 ], [ 347097.464500002563, 258369.801100000739098 ], [ 347103.843099996447563, 258378.297100000083447 ], [ 347105.443099997937679, 258379.787799999117851 ], [ 347127.121799997985363, 258390.730999998748302 ], [ 347129.504799999296665, 258394.97239999845624 ], [ 347131.072499997913837, 258400.262600000947714 ], [ 347143.957299999892712, 258402.267900001257658 ], [ 347148.802400000393391, 258401.463100001215935 ], [ 347149.633799999952316, 258398.514600001275539 ], [ 347149.696800000965595, 258391.126899998635054 ], [ 347152.142700001597404, 258387.980500001460314 ], [ 347149.770499996840954, 258382.472600001841784 ], [ 347146.568599998950958, 258379.702199999243021 ], [ 347144.983000002801418, 258376.522799998521805 ], [ 347143.444099999964237, 258367.855399999767542 ], [ 347143.490800000727177, 258362.367400001734495 ], [ 347145.164599999785423, 258355.203899998217821 ], [ 347150.009700000286102, 258354.39919999986887 ], [ 347150.833999998867512, 258352.295000001788139 ], [ 347150.049199998378754, 258349.755399998277426 ], [ 347146.877899996936321, 258343.396699998527765 ], [ 347140.495800003409386, 258335.322900000959635 ], [ 347136.528899997472763, 258327.690999999642372 ], [ 347132.531499996781349, 258323.64750000089407 ], [ 347126.104400001466274, 258320.850699998438358 ], [ 347118.854800000786781, 258319.947000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98261104, "LATITUDE": 18.35578216, "OBJECTID_1": 2617, "PARCEL_NO_": "102603030800", "Tax_Legal_": "4B-18 ESTATE SANTA MARIA WESTEND QTR.", "Name": "SMITH, CECIL & ARAH", "Address": "PO Box 17454", "City": "Tampa", "State": "Florida", "Zip": 33617, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.617081746, "SHAPE_Area": 1066.8763000399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353345.473700001835823, 258433.392599999904633 ], [ 353331.276600003242493, 258396.124000001698732 ], [ 353321.401199996471405, 258419.474500000476837 ], [ 353303.473999999463558, 258462.145599998533726 ], [ 353306.454199999570847, 258470.225699998438358 ], [ 353308.102799996733665, 258466.017400000244379 ], [ 353312.179300002753735, 258460.773400001227856 ], [ 353315.435199998319149, 258457.211399998515844 ], [ 353320.314400002360344, 258452.396200001239777 ], [ 353324.3800999969244, 258448.418699998408556 ], [ 353330.067500002682209, 258443.399000000208616 ], [ 353345.473700001835823, 258433.392599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98418228, "LATITUDE": 18.35552853, "OBJECTID_1": 2107, "PARCEL_NO_": "102504013400", "Tax_Legal_": "BONNE ESPERANCE 2-28 WEST END QTR", "Name": "SYLVESTER, LAWRENCE & L. L", "Address": "2817 Silver Sands St", "City": "Clermont", "State": "Florida", "Zip": 34711, "Country": "United States", "Land_Value": 90200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.85905743800001, "SHAPE_Area": 1686.2465444500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353166.228900000452995, 258365.853300001472235 ], [ 353140.254199996590614, 258385.905699998140335 ], [ 353157.451899997889996, 258449.58559999987483 ], [ 353159.100500002503395, 258445.377199999988079 ], [ 353163.999499998986721, 258438.240100000053644 ], [ 353165.6300999969244, 258436.142599999904633 ], [ 353168.907499998807907, 258430.047699999064207 ], [ 353173.050499998033047, 258416.99379999935627 ], [ 353174.745899997651577, 258407.2972999997437 ], [ 353174.099600002169609, 258388.504700001329184 ], [ 353171.745399996638298, 258380.886100001633167 ], [ 353166.228900000452995, 258365.853300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502020500", "MAP": "D9-3402-T86", "PARCEL_NAM": "14F", "ACRE": ".50", "LONGITUDE": -64.98710681, "LATITUDE": 18.35553691, "OBJECTID_1": 1986, "PARCEL_NO_": "102502020500", "Tax_Legal_": "BONNE ESPERANCE 14F WEST END QTR", "Name": "JOSE GARCIA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018580, "Country": "United States", "Land_Value": 49700, "Improved_V": 156200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.48184938200001, "SHAPE_Area": 2214.05842407 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352868.512599997222424, 258385.370400000363588 ], [ 352849.389399997889996, 258358.405000001192093 ], [ 352829.685500003397465, 258399.618000000715256 ], [ 352824.754100002348423, 258410.554499998688698 ], [ 352853.498999997973442, 258443.931499999016523 ], [ 352875.684900000691414, 258395.350499998778105 ], [ 352868.512599997222424, 258385.370400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "A", "ACRE": "7.39", "LONGITUDE": -65.01688267, "LATITUDE": 18.35505494, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 786.29000939900004, "SHAPE_Area": 28243.017900499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349688.945900000631809, 258202.504599999636412 ], [ 349689.721699997782707, 258206.099599998444319 ], [ 349692.903800003230572, 258211.191799998283386 ], [ 349693.686700001358986, 258213.942499998956919 ], [ 349695.178800001740456, 258228.097899999469519 ], [ 349693.461900003254414, 258240.327300000935793 ], [ 349690.222300000488758, 258241.989599999040365 ], [ 349678.134800001978874, 258241.04619999974966 ], [ 349667.623999997973442, 258244.337699998170137 ], [ 349667.587999999523163, 258248.559300001710653 ], [ 349683.609999999403954, 258260.933899998664856 ], [ 349683.56139999628067, 258266.633000001311302 ], [ 349681.128100000321865, 258268.30180000141263 ], [ 349660.941500000655651, 258271.51410000026226 ], [ 349655.277500003576279, 258273.789799999445677 ], [ 349648.776699997484684, 258279.647199999541044 ], [ 349646.316399998962879, 258284.482200000435114 ], [ 349643.056999996304512, 258288.466299999505281 ], [ 349638.998400002717972, 258291.599500000476837 ], [ 349637.376800000667572, 258292.641699999570847 ], [ 349635.756999999284744, 258293.472800001502037 ], [ 349591.18860000371933, 258319.072500001639128 ], [ 349594.617799997329712, 258389.816899999976158 ], [ 349616.156300000846386, 258417.224300000816584 ], [ 349639.710199996829033, 258397.363200001418591 ], [ 349642.949799999594688, 258395.700899999588728 ], [ 349676.97860000282526, 258376.769900001585484 ], [ 349726.802699998021126, 258396.809399999678135 ], [ 349803.30349999666214, 258409.045699998736382 ], [ 349808.299599997699261, 258390.510400000959635 ], [ 349802.849600002169609, 258367.667599998414516 ], [ 349796.843299999833107, 258315.478399999439716 ], [ 349772.970399998128414, 258278.130499999970198 ], [ 349738.0878000035882, 258207.973099999129772 ], [ 349724.456000000238419, 258198.995600000023842 ], [ 349711.508299998939037, 258204.377999998629093 ], [ 349688.945900000631809, 258202.504599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503011700", "MAP": "D9-8400-T010", "PARCEL_NAM": "9L", "ACRE": ".68", "LONGITUDE": -64.99271012, "LATITUDE": 18.35544815, "OBJECTID_1": 2069, "PARCEL_NO_": "102503011700", "Tax_Legal_": "9L REM BONNE ESPERANCE NO.2 WEST END QTR", "Name": "LOCKHART, J. & FRETT, A", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 77200, "Improved_V": 126800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.583630959, "SHAPE_Area": 2184.5030508499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352286.756700001657009, 258428.105000000447035 ], [ 352264.547899998724461, 258387.067299999296665 ], [ 352269.343800000846386, 258377.833999998867512 ], [ 352248.882600001990795, 258330.480900000780821 ], [ 352246.452899999916553, 258331.727600000798702 ], [ 352235.112400002777576, 258337.756499998271465 ], [ 352260.058499999344349, 258438.441199999302626 ], [ 352264.912500001490116, 258436.5810999982059 ], [ 352286.756700001657009, 258428.105000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504017600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98758683, "LATITUDE": 18.35557916, "OBJECTID_1": 2147, "PARCEL_NO_": "102504017600", "Tax_Legal_": "BONNE ESPERANCE 17-C WEST END QTR.", "Name": "COOKSEY, WILFRED C. & JOANNE V.", "Address": "PO Box 304654", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.88912045000001, "SHAPE_Area": 2181.2908649400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352829.685500003397465, 258399.618000000715256 ], [ 352789.598200000822544, 258372.481100000441074 ], [ 352769.105999998748302, 258411.576699998229742 ], [ 352810.793200001120567, 258440.204500000923872 ], [ 352824.754100002348423, 258410.554499998688698 ], [ 352829.685500003397465, 258399.618000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503011900", "MAP": "D9-1215-T74", "PARCEL_NAM": "9N", "ACRE": ".57", "LONGITUDE": -64.99312504, "LATITUDE": 18.35546933, "OBJECTID_1": 2071, "PARCEL_NO_": "102503011900", "Tax_Legal_": "BONNE ESPERANCE 9N WEST END QTR", "Name": "JONES, ADA MAE", "Address": "1809 Owens Rd", "City": "Oxon Hill", "State": "Maryland", "Zip": 20745, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.89186469699999, "SHAPE_Area": 1980.10896192 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352220.534000001847744, 258345.2364999987185 ], [ 352197.046700000762939, 258357.28770000115037 ], [ 352206.928099997341633, 258427.8739 ], [ 352207.682300001382828, 258434.0016999989748 ], [ 352232.807499997317791, 258419.008600000292063 ], [ 352220.534000001847744, 258345.2364999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98643713, "LATITUDE": 18.35548811, "OBJECTID_1": 2140, "PARCEL_NO_": "102504016900", "Tax_Legal_": "BONNE ESPERANCE 14C WEST END QTR", "Name": "MARCHENA, AUDREY", "Address": "5621 Sycamore Canyon Dr", "City": "Kissimmee", "State": "Florida", "Zip": 34758, "Country": "United States", "Land_Value": 47700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.46659773900001, "SHAPE_Area": 2726.5522050700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352903.468099996447563, 258352.303700000047684 ], [ 352885.394799999892712, 258391.419199999421835 ], [ 352942.249200001358986, 258438.114000000059605 ], [ 352958.663099996745586, 258404.473299998790026 ], [ 352950.646700002253056, 258398.919300001114607 ], [ 352947.443099997937679, 258396.359999999403954 ], [ 352930.627400003373623, 258382.501299999654293 ], [ 352926.628200002014637, 258378.668800000101328 ], [ 352925.024599999189377, 258377.60020000115037 ], [ 352910.64580000191927, 258361.650499999523163 ], [ 352905.858300000429153, 258355.700699999928474 ], [ 352903.468099996447563, 258352.303700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603012100", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97844117, "LATITUDE": 18.35563012, "OBJECTID_1": 2556, "PARCEL_NO_": "102603012100", "Tax_Legal_": "37-11 PEARL SOUTHSIDE QTR", "Name": "PRENTICE, KAISA L.,BERYL & SIMEON", "Address": "2807 Silke Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 120100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.74463555, "SHAPE_Area": 1264.55543659 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353770.747400000691414, 258396.132199998944998 ], [ 353740.778999999165535, 258411.719000000506639 ], [ 353763.082400001585484, 258443.987700000405312 ], [ 353791.465199999511242, 258425.221599999815226 ], [ 353770.747400000691414, 258396.132199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504018600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98794398, "LATITUDE": 18.35507932, "OBJECTID_1": 2155, "PARCEL_NO_": "102504018600", "Tax_Legal_": "BONNE ESPERANCE 25B WEST END QTR.", "Name": "GEORGE, ALBERT", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53900, "Improved_V": 125100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.47424854100001, "SHAPE_Area": 3731.8832704400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352800.411200001835823, 258333.728300001472235 ], [ 352749.087700001895428, 258300.377700001001358 ], [ 352739.214100003242493, 258323.517200000584126 ], [ 352734.306100003421307, 258331.709699999541044 ], [ 352727.785499997437, 258339.888900000602007 ], [ 352717.213500000536442, 258350.357099998742342 ], [ 352757.525600001215935, 258351.109200000762939 ], [ 352746.32599999755621, 258435.243900001049042 ], [ 352800.411200001835823, 258333.728300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98504123, "LATITUDE": 18.35553505, "OBJECTID_1": 2103, "PARCEL_NO_": "102504013000", "Tax_Legal_": "BONNE ESPERANCE 2-21A WEST END QTR", "Name": "APPLEWHITE, GEORGE & MARVA(Life Estate)", "Address": "PO Box 304336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 134400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.72797009300001, "SHAPE_Area": 2458.9860085199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353054.991899996995926, 258360.932100001722574 ], [ 353043.234200000762939, 258415.93129999935627 ], [ 353051.270400002598763, 258419.163499999791384 ], [ 353059.270599998533726, 258426.617199998348951 ], [ 353062.456200003623962, 258431.287399999797344 ], [ 353063.246399998664856, 258433.19370000064373 ], [ 353064.828400000929832, 258436.795200001448393 ], [ 353093.079899996519089, 258433.437800001353025 ], [ 353092.417499996721745, 258416.544900000095367 ], [ 353089.346900001168251, 258398.365699999034405 ], [ 353088.569300003349781, 258394.981899999082088 ], [ 353086.202500000596046, 258388.840799998492002 ], [ 353083.821400001645088, 258384.388399999588728 ], [ 353077.431999996304512, 258377.158900000154972 ], [ 353058.199199996888638, 258363.069299999624491 ], [ 353054.991899996995926, 258360.932100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97963427000001, "LATITUDE": 18.35565035, "OBJECTID_1": 2554, "PARCEL_NO_": "102603011900", "Tax_Legal_": "PEARL REMAINDER 37-21 SOUTH SIDE QTR.", "Name": "DELLER, GEORGE R. & GAYLE A. K", "Address": "PO Box 9787", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.77422787099999, "SHAPE_Area": 1319.3618666699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353658.551299996674061, 258409.146099999547005 ], [ 353617.504900000989437, 258399.944299999624491 ], [ 353618.282499998807907, 258403.328099999576807 ], [ 353618.919699996709824, 258423.176100000739098 ], [ 353620.460400000214577, 258431.632500000298023 ], [ 353664.73030000180006, 258441.071800000965595 ], [ 353660.095600001513958, 258417.180300001055002 ], [ 353658.551299996674061, 258409.146099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603012000", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97915222, "LATITUDE": 18.35555767, "OBJECTID_1": 2555, "PARCEL_NO_": "102603012000", "Tax_Legal_": "PEARL 37-15 S S QTR", "Name": "BRAITHWAITE, CHRISTOPHER", "Address": "5013 Vantage Ct", "City": "Saint Cloud", "State": "Florida", "Zip": 34772, "Country": "United States", "Land_Value": 105900, "Improved_V": 419600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.33074013300001, "SHAPE_Area": 1826.2411717699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353706.377300001680851, 258379.773400001227856 ], [ 353660.095600001513958, 258417.180300001055002 ], [ 353664.73030000180006, 258441.071800000965595 ], [ 353725.484300002455711, 258408.6385000012815 ], [ 353706.377300001680851, 258379.773400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404031100", "MAP": "F9-1826-T66", "PARCEL_NAM": "58-1", "ACRE": ".50", "LONGITUDE": -65.00300697, "LATITUDE": 18.35564386, "OBJECTID_1": 1878, "PARCEL_NO_": "102404031100", "Tax_Legal_": "FORTUNA 58-1 WEST END QTR", "Name": "THOMAS R BLAKE", "Address": "PO Box 87", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040087, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.68412332599999, "SHAPE_Area": 1386.8712328199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351192.840599998831749, 258389.809799998998642 ], [ 351193.908399999141693, 258379.669799998402596 ], [ 351140.394299998879433, 258393.60249999910593 ], [ 351139.534100003540516, 258399.928199999034405 ], [ 351138.707599997520447, 258403.003899998962879 ], [ 351182.696599997580051, 258424.083399999886751 ], [ 351186.163500003516674, 258416.353000000119209 ], [ 351192.840599998831749, 258389.809799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98096675, "LATITUDE": 18.35563866, "OBJECTID_1": 2538, "PARCEL_NO_": "102603010100", "Tax_Legal_": "SANTA MARIA 4B SOUTH SIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.575672205700002, "SHAPE_Area": 225.94945487699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353511.010499998927116, 258406.249800000339746 ], [ 353500.535700000822544, 258405.319699998944998 ], [ 353489.00450000166893, 258433.723000001162291 ], [ 353493.023500002920628, 258435.233500000089407 ], [ 353511.010499998927116, 258406.249800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9823454, "LATITUDE": 18.35559763, "OBJECTID_1": 2619, "PARCEL_NO_": "102603031000", "Tax_Legal_": "SANTA MARIA 4B-19 WEST END QUARTER", "Name": "FRANCIS, JULIO", "Address": "PO Box 8615", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28300, "Improved_V": 288500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.182466455, "SHAPE_Area": 1023.96909147 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353336.130599997937679, 258394.263799998909235 ], [ 353331.276600003242493, 258396.124000001698732 ], [ 353345.473700001835823, 258433.392599999904633 ], [ 353376.241300001740456, 258418.656800001859665 ], [ 353377.891699999570847, 258414.237300001084805 ], [ 353377.124899998307228, 258409.587000001221895 ], [ 353374.734700001776218, 258406.189899999648333 ], [ 353336.130599997937679, 258394.263799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98155469, "LATITUDE": 18.35562552, "OBJECTID_1": 2621, "PARCEL_NO_": "102603031200", "Tax_Legal_": "SANTA MARIA 4B-21 No.1 WESTEND QTR.", "Name": "DAVID, III, BASSANIO", "Address": "PO Box 10835", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58600, "Improved_V": 359600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.59249429100001, "SHAPE_Area": 1309.23691426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353428.818800002336502, 258399.455400001257658 ], [ 353421.567400000989437, 258398.762800000607967 ], [ 353416.497500002384186, 258425.952399998903275 ], [ 353406.758900001645088, 258433.260899998247623 ], [ 353424.495899997651577, 258433.617199998348951 ], [ 353448.714100003242493, 258430.437899999320507 ], [ 353459.273500002920628, 258421.447299998253584 ], [ 353462.662399999797344, 258402.265500001609325 ], [ 353428.818800002336502, 258399.455400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98189601, "LATITUDE": 18.35562267, "OBJECTID_1": 2620, "PARCEL_NO_": "102603031100", "Tax_Legal_": "SANTA MARIA 4B-20 #1 WESTEND QTR.", "Name": "BLYDEN, JOSEPH", "Address": "P.O.BOX 3876", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.867579976, "SHAPE_Area": 1139.5371175400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353421.567400000989437, 258398.762800000607967 ], [ 353403.034800000488758, 258397.133499998599291 ], [ 353383.634700000286102, 258402.674199998378754 ], [ 353386.824000000953674, 258406.922200001776218 ], [ 353387.605200000107288, 258409.883900001645088 ], [ 353387.549400001764297, 258416.427299998700619 ], [ 353384.264799997210503, 258423.366500001400709 ], [ 353381.012599997222424, 258426.506299998611212 ], [ 353375.341399997472763, 258429.626299999654293 ], [ 353375.325300000607967, 258431.526000000536442 ], [ 353376.928900003433228, 258432.5945999994874 ], [ 353406.758900001645088, 258433.260899998247623 ], [ 353416.497500002384186, 258425.952399998903275 ], [ 353421.567400000989437, 258398.762800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98117455000001, "LATITUDE": 18.35562493, "OBJECTID_1": 2622, "PARCEL_NO_": "102603031300", "Tax_Legal_": "FORTUNA 4B-22 WESTEND QTR.", "Name": "KIRWAN, KINSGFORD A. & AGNES A", "Address": "PO Box 308359", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.795704691, "SHAPE_Area": 941.92730089199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353500.535700000822544, 258405.319699998944998 ], [ 353462.662399999797344, 258402.265500001609325 ], [ 353459.273500002920628, 258421.447299998253584 ], [ 353448.714100003242493, 258430.437899999320507 ], [ 353465.668200001120567, 258428.043499998748302 ], [ 353468.103299997746944, 258426.163600001484156 ], [ 353477.764700002968311, 258427.931499999016523 ], [ 353480.165700003504753, 258430.061999998986721 ], [ 353489.00450000166893, 258433.723000001162291 ], [ 353500.535700000822544, 258405.319699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98056892, "LATITUDE": 18.35557757, "OBJECTID_1": 2552, "PARCEL_NO_": "102603011700", "Tax_Legal_": "PEARL 37-36 S S QTR", "Name": "THOMAS, SIMON & NELINE E", "Address": "PO Box 7866", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73200, "Improved_V": 212600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.97636210300001, "SHAPE_Area": 1366.76408965 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353570.68299999833107, 258406.104899998754263 ], [ 353519.989699997007847, 258393.446600001305342 ], [ 353509.320600003004074, 258415.313000001013279 ], [ 353547.931900002062321, 258426.394799999892712 ], [ 353565.629399999976158, 258431.394799999892712 ], [ 353566.504000000655651, 258423.380399998277426 ], [ 353570.68299999833107, 258406.104899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99319297, "LATITUDE": 18.35306619, "OBJECTID_1": 2058, "PARCEL_NO_": "102503010600", "Tax_Legal_": "BONNE ESPERANCE 1 WEST END QTR", "Name": "DOWLING, JR. , WILLIAM C. -TRUSTEE", "Address": "90 Broad Street LLP", "City": "New York", "State": "New York", "Zip": 10004, "Country": "United States", "Land_Value": 1376500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1731.0343880099999, "SHAPE_Area": 164889.50695400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352469.264200001955032, 258207.317200001329184 ], [ 352368.633000001311302, 257903.996599998325109 ], [ 352361.327600002288818, 257909.636300001293421 ], [ 352360.488899998366833, 257913.429099999368191 ], [ 352348.388800002634525, 257913.96339999884367 ], [ 352345.960900001227856, 257914.999000001698732 ], [ 352343.516800001263618, 257917.934300001710653 ], [ 352341.117600001394749, 257915.592599999159575 ], [ 352339.506800003349781, 257915.368299998342991 ], [ 352337.872599996626377, 257917.888099998235703 ], [ 352336.254600003361702, 257918.508099999278784 ], [ 352329.802299998700619, 257918.666400000452995 ], [ 352328.96000000089407, 257922.881400000303984 ], [ 352327.336599998176098, 257924.13459999859333 ], [ 352318.472599998116493, 257923.428800001740456 ], [ 352319.253700003027916, 257926.390500001609325 ], [ 352316.827600002288818, 257927.214999999850988 ], [ 352309.570799998939037, 257927.155600000172853 ], [ 352303.136399999260902, 257925.203099999576807 ], [ 352291.092100001871586, 257919.193900000303984 ], [ 352285.456900000572205, 257918.092300001531839 ], [ 352279.834299996495247, 257915.513199999928474 ], [ 352254.098800003528595, 257907.49210000038147 ], [ 352237.987000003457069, 257905.671500001102686 ], [ 352225.886900000274181, 257906.205699998885393 ], [ 352223.480499997735023, 257904.708399999886751 ], [ 352222.692199997603893, 257902.590999998152256 ], [ 352221.086800001561642, 257901.733500000089407 ], [ 352218.66780000180006, 257901.713700000196695 ], [ 352208.156999997794628, 257905.005199998617172 ], [ 352204.929999999701977, 257905.189800001680851 ], [ 352199.302000001072884, 257903.243900001049042 ], [ 352195.265000000596046, 257903.844200000166893 ], [ 352189.703500002622604, 257894.08839999884367 ], [ 352187.275600001215935, 257895.124000001698732 ], [ 352181.582900002598763, 257900.776900000870228 ], [ 352180.760399997234344, 257902.670000001788139 ], [ 352171.071999996900558, 257904.068399999290705 ], [ 352166.20719999819994, 257907.194899998605251 ], [ 352162.933399997651577, 257912.86769999936223 ], [ 352158.885600000619888, 257914.734400000423193 ], [ 352132.236000001430511, 257919.371399998664856 ], [ 352103.183499999344349, 257922.089000001549721 ], [ 352076.524899996817112, 257927.781399998813868 ], [ 352066.0050999969244, 257932.128299999982119 ], [ 352047.357400000095367, 257944.008000001311302 ], [ 352043.309600003063679, 257945.874699998646975 ], [ 352030.379900000989437, 257949.14640000090003 ], [ 352006.980599999427795, 257950.854699999094009 ], [ 351989.25789999961853, 257948.809799998998642 ], [ 352036.718199998140335, 258340.987900000065565 ], [ 352082.936899997293949, 258310.968699999153614 ], [ 352096.540700003504753, 258417.893399998545647 ], [ 352124.144100002944469, 258395.954500000923872 ], [ 352182.568999998271465, 258352.947399999946356 ], [ 352240.076099999248981, 258323.020599998533726 ], [ 352243.315800003707409, 258321.358300000429153 ], [ 352278.964400000870228, 258301.596200000494719 ], [ 352304.048199996352196, 258291.457899998873472 ], [ 352389.878700003027916, 258249.730599999427795 ], [ 352423.056199997663498, 258236.070000000298023 ], [ 352432.780500002205372, 258230.449999999254942 ], [ 352453.062399998307228, 258216.050599999725819 ], [ 352469.264200001955032, 258207.317200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404012300", "MAP": "D9-8139-T008", "PARCEL_NAM": "6-2B", "ACRE": ".326", "LONGITUDE": -65.00623946, "LATITUDE": 18.35525839, "OBJECTID_1": 1844, "PARCEL_NO_": "102404012300", "Tax_Legal_": "6-2B FORTUNA NO.8 WEST END QTR", "Name": "WEBSTER, LISA V.", "Address": "PO BOX 8841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.895435867, "SHAPE_Area": 1381.17476504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350801.36879999935627, 258351.247800000011921 ], [ 350836.848200000822544, 258381.997299998998642 ], [ 350854.424900002777576, 258359.386799998581409 ], [ 350844.842699997127056, 258348.331500001251698 ], [ 350840.048000000417233, 258343.225999999791384 ], [ 350837.645199999213219, 258341.306499999016523 ], [ 350831.234300002455711, 258336.609999999403954 ], [ 350819.872800000011921, 258330.541600000113249 ], [ 350801.36879999935627, 258351.247800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98007036, "LATITUDE": 18.35548111, "OBJECTID_1": 2553, "PARCEL_NO_": "102603011800", "Tax_Legal_": "37-34 PEARL 3 SOUTHSIDE QUARTER", "Name": "HERBERT, KATHLEEN & NATASHA", "Address": "PO Box 305195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64900, "Improved_V": 255500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.72814995100001, "SHAPE_Area": 1476.71661836 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353574.543799996376038, 258426.190400000661612 ], [ 353603.581799998879433, 258425.161499999463558 ], [ 353606.819700002670288, 258423.710400000214577 ], [ 353609.32490000128746, 258413.598400000482798 ], [ 353610.3074000030756, 258392.919300001114607 ], [ 353607.19370000064373, 258379.806000001728535 ], [ 353604.016999997198582, 258374.08049999922514 ], [ 353600.820500001311302, 258370.67680000141263 ], [ 353595.174500003457069, 258370.841699998825788 ], [ 353587.851199999451637, 258378.592199999839067 ], [ 353585.4070999994874, 258381.527499999850988 ], [ 353583.769299998879433, 258384.469399999827147 ], [ 353582.122500002384186, 258388.466699998825788 ], [ 353581.291000001132488, 258391.415199998766184 ], [ 353574.543799996376038, 258426.190400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00241486, "LATITUDE": 18.35545243, "OBJECTID_1": 1895, "PARCEL_NO_": "102404040300", "Tax_Legal_": "FORTUNA 58-3 WEST END QTR", "Name": "MELTON, CHARLES", "Address": "681 Cherry Mountain Loop", "City": "Fredericksburg", "State": "Texas", "Zip": 78624, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.546073205, "SHAPE_Area": 2313.45846351 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351266.452399998903275, 258362.548000000417233 ], [ 351202.787900000810623, 258358.016100000590086 ], [ 351204.310599997639656, 258368.583299998193979 ], [ 351202.532499998807907, 258387.98930000141263 ], [ 351201.677699998021126, 258393.681800000369549 ], [ 351253.177400000393391, 258406.346799999475479 ], [ 351266.452399998903275, 258362.548000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98908609, "LATITUDE": 18.35535715, "OBJECTID_1": 2077, "PARCEL_NO_": "102504010200", "Tax_Legal_": "BONNE ESPERANCE 5A WEST END QTR", "Name": "ROBERTS, LEON V", "Address": "PO Box 9782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.93377895200001, "SHAPE_Area": 1378.1689476399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352657.5878000035882, 258345.013900000602007 ], [ 352619.27929999679327, 258393.040800001472235 ], [ 352614.401900000870228, 258397.644999999552965 ], [ 352612.753300003707409, 258401.853300001472235 ], [ 352611.047100000083447, 258412.816199999302626 ], [ 352613.453500002622604, 258414.3136 ], [ 352615.874200001358986, 258414.122299998998642 ], [ 352629.658900000154972, 258405.158100001513958 ], [ 352635.349799998104572, 258399.7162000015378 ], [ 352644.312700003385544, 258388.812699999660254 ], [ 352650.806400001049042, 258383.799600001424551 ], [ 352657.292900003492832, 258379.630899999290705 ], [ 352671.073899999260902, 258371.088799998164177 ], [ 352657.5878000035882, 258345.013900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98549566, "LATITUDE": 18.35539621, "OBJECTID_1": 2102, "PARCEL_NO_": "102504012900", "Tax_Legal_": "BONNE ESPERANCE 2-20 WEST END QTR", "Name": "JOSEPH, GLORIA WESTON", "Address": "PO Box 307183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77200, "Improved_V": 353500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.94100275, "SHAPE_Area": 3063.13648302 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353054.991899996995926, 258360.932100001722574 ], [ 353050.171999998390675, 258358.781700000166893 ], [ 353042.918799996376038, 258358.300200000405312 ], [ 353030.802500002086163, 258360.734099999070168 ], [ 353017.890799999237061, 258361.894999999552965 ], [ 353004.192400000989437, 258360.727400001138449 ], [ 352980.422799997031689, 258405.918000001460314 ], [ 352993.287799999117851, 258410.245200000703335 ], [ 353005.36089999973774, 258412.877099998295307 ], [ 353019.055600002408028, 258414.46680000051856 ], [ 353038.405299998819828, 258414.836300000548363 ], [ 353043.234200000762939, 258415.93129999935627 ], [ 353054.991899996995926, 258360.932100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98992892, "LATITUDE": 18.35515328, "OBJECTID_1": 2078, "PARCEL_NO_": "102504010300", "Tax_Legal_": "5 ESTATE BONNE ESPERANCE WEST END QTR", "Name": "Roberts, Lloyd V.,Leon V.,Lola V. Roberts-Richards", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 182400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 370.28436552199997, "SHAPE_Area": 5595.1445046299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352576.015299998223782, 258360.178300000727177 ], [ 352555.889899998903275, 258356.213899999856949 ], [ 352570.143899999558926, 258292.158100001513958 ], [ 352517.505199998617172, 258318.536200001835823 ], [ 352501.046300001442432, 258357.45380000025034 ], [ 352513.862700000405312, 258367.480099998414516 ], [ 352546.743500001728535, 258388.64750000089407 ], [ 352570.828599996864796, 258401.087999999523163 ], [ 352593.320799998939037, 258411.193500000983477 ], [ 352598.965000003576279, 258411.239700000733137 ], [ 352601.402000002563, 258409.148699998855591 ], [ 352603.925200000405312, 258396.925900001078844 ], [ 352605.676299996674061, 258380.686099998652935 ], [ 352605.714000001549721, 258376.253400001674891 ], [ 352576.015299998223782, 258360.178300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603013000", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97927415, "LATITUDE": 18.35526627, "OBJECTID_1": 2565, "PARCEL_NO_": "102603013000", "Tax_Legal_": "PEARL 37-14 S S QTR", "Name": "AMARO, ANDRES & COLETTE WHITE-AMARO", "Address": "4005 Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98900, "Improved_V": 196000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.36288056000001, "SHAPE_Area": 2046.3175709 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353670.271300002932549, 258358.579599998891354 ], [ 353656.438100002706051, 258373.242899999022484 ], [ 353658.551299996674061, 258409.146099999547005 ], [ 353660.095600001513958, 258417.180300001055002 ], [ 353706.377300001680851, 258379.773400001227856 ], [ 353700.806800000369549, 258371.072900000959635 ], [ 353704.874399997293949, 258366.884399998933077 ], [ 353685.729699999094009, 258342.451900001615286 ], [ 353670.271300002932549, 258358.579599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98601401000001, "LATITUDE": 18.35523972, "OBJECTID_1": 2100, "PARCEL_NO_": "102504012700", "Tax_Legal_": "BONNE ESPERANCE 2-19 WEST END QTR", "Name": "George H Silcott & Loretta P A Silcott", "Address": "PO Box 11179", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90200, "Improved_V": 158600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.305908604, "SHAPE_Area": 2901.2687116500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352984.979400001466274, 258344.315999999642372 ], [ 352937.374600000679493, 258347.725999999791384 ], [ 352925.141400001943111, 258363.880100000649691 ], [ 352938.731899999082088, 258377.712400000542402 ], [ 352955.547600001096725, 258391.571100000292063 ], [ 352970.784800000488758, 258401.406199999153614 ], [ 352980.422799997031689, 258405.918000001460314 ], [ 353004.192400000989437, 258360.727400001138449 ], [ 352998.562600001692772, 258358.992600001394749 ], [ 352992.949000000953674, 258355.3581000007689 ], [ 352987.358800001442432, 258348.979499999433756 ], [ 352984.979400001466274, 258344.315999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603013800", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97865362, "LATITUDE": 18.35533277, "OBJECTID_1": 2572, "PARCEL_NO_": "102603013800", "Tax_Legal_": "PEARL 37-12 S S QTR", "Name": "LUSCZ, THEODORE E. & REBECCA J.", "Address": "PO Box 303769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61500, "Improved_V": 108000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.45529194400001, "SHAPE_Area": 1401.8291147699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353743.654700003564358, 258358.124699998646975 ], [ 353719.272900000214577, 258380.512200001627207 ], [ 353740.778999999165535, 258411.719000000506639 ], [ 353770.747400000691414, 258396.132199998944998 ], [ 353743.654700003564358, 258358.124699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97967653000001, "LATITUDE": 18.35534546, "OBJECTID_1": 2557, "PARCEL_NO_": "102603012200", "Tax_Legal_": "PEARL 37-22 S S QTR", "Name": "LIBURD, BERNARDINE & BERNARD", "Address": "PO Box 8014", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47100, "Improved_V": 218900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.972613365, "SHAPE_Area": 1462.16841565 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353656.438100002706051, 258373.242899999022484 ], [ 353606.49889999628067, 258366.712499998509884 ], [ 353612.862999998033047, 258376.897100001573563 ], [ 353616.763300001621246, 258392.338799998164177 ], [ 353617.504900000989437, 258399.944299999624491 ], [ 353658.551299996674061, 258409.146099999547005 ], [ 353656.438100002706051, 258373.242899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97571509, "LATITUDE": 18.35485825, "OBJECTID_1": 2585, "PARCEL_NO_": "102603021300", "Tax_Legal_": "CROWN & HAWK 4 S S QTR", "Name": "WILSON, CATHERINE", "Address": "8140 Estate Crown & Hawk", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 224300, "Improved_V": 158300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 435.92744305799999, "SHAPE_Area": 10578.6463953 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354125.538599997758865, 258302.777399998158216 ], [ 354116.87049999833107, 258279.063900001347065 ], [ 354013.626599997282028, 258282.440799999982119 ], [ 354006.88910000026226, 258410.730500001460314 ], [ 354013.357600003480911, 258408.672600001096725 ], [ 354025.482799999415874, 258405.183200001716614 ], [ 354064.247000001370907, 258398.323300000280142 ], [ 354069.918099999427795, 258395.203299999237061 ], [ 354073.163199998438358, 258392.907800000160933 ], [ 354074.79559999704361, 258390.599199999123812 ], [ 354079.676600001752377, 258385.572900000959635 ], [ 354087.881800003349781, 258368.963599998503923 ], [ 354092.868900001049042, 258351.48369999974966 ], [ 354097.913599997758865, 258327.249200001358986 ], [ 354098.741499997675419, 258324.722899999469519 ], [ 354101.20719999819994, 258319.254599999636412 ], [ 354105.280100002884865, 258314.432799998670816 ], [ 354110.960199996829033, 258310.257399998605251 ], [ 354125.538599997758865, 258302.777399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98087804, "LATITUDE": 18.35545244, "OBJECTID_1": 2538, "PARCEL_NO_": "102603010100", "Tax_Legal_": "SANTA MARIA 4B SOUTH SIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.316857515000002, "SHAPE_Area": 182.546820408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353517.581500001251698, 258392.160300001502037 ], [ 353507.938100002706051, 258388.281700000166893 ], [ 353506.314699999988079, 258389.535000000149012 ], [ 353500.535700000822544, 258405.319699998944998 ], [ 353511.010499998927116, 258406.249800000339746 ], [ 353517.581500001251698, 258392.160300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99166266, "LATITUDE": 18.35531365, "OBJECTID_1": 2061, "PARCEL_NO_": "102503010900", "Tax_Legal_": "BONNE ESPERANCE 11 WEST END QTR", "Name": "Joyce & Edney L Freeman & Mirisa Freeman Malcolm", "Address": "PO Box 304051", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 98200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.97795160800001, "SHAPE_Area": 1889.2453185899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352399.80969999730587, 258360.837799999862909 ], [ 352376.591600000858307, 258340.199499998241663 ], [ 352373.762199997901917, 258343.113099999725819 ], [ 352350.962499998509884, 258369.102099999785423 ], [ 352339.12780000269413, 258385.191300000995398 ], [ 352368.354299999773502, 258409.985500000417233 ], [ 352370.080200001597404, 258396.700800001621246 ], [ 352399.80969999730587, 258360.837799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9804897, "LATITUDE": 18.35533849, "OBJECTID_1": 2571, "PARCEL_NO_": "102603013700", "Tax_Legal_": "PEARL 37-35 S S QTR", "Name": "RAM JET, INC.", "Address": "5872 Old Jacksonville Hwy", "City": "Tyler", "State": "Texas", "Zip": 757030000, "Country": "United States", "Land_Value": 68200, "Improved_V": 158000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.229070178, "SHAPE_Area": 1491.7803534499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353558.076999999582767, 258371.382399998605251 ], [ 353534.756800003349781, 258363.803300000727177 ], [ 353519.989699997007847, 258393.446600001305342 ], [ 353570.68299999833107, 258406.104899998754263 ], [ 353574.055699996650219, 258388.822900000959635 ], [ 353574.885399997234344, 258386.085400000214577 ], [ 353576.534000001847744, 258381.877099998295307 ], [ 353578.983499996364117, 258378.308499999344349 ], [ 353558.076999999582767, 258371.382399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98111022000001, "LATITUDE": 18.35542229, "OBJECTID_1": 2627, "PARCEL_NO_": "102603031800", "Tax_Legal_": "SANTA MARIA 4B-27 WEST END QTR.", "Name": "JOSEPH, NELSON & JUSTINA JN-BAPT", "Address": "8461 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23900, "Improved_V": 4800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.04155704599999, "SHAPE_Area": 738.01636034499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353470.91610000282526, 258379.95719999819994 ], [ 353462.662399999797344, 258402.265500001609325 ], [ 353500.535700000822544, 258405.319699998944998 ], [ 353506.314699999988079, 258389.535000000149012 ], [ 353507.938100002706051, 258388.281700000166893 ], [ 353499.905599996447563, 258384.627399999648333 ], [ 353499.876800000667572, 258388.004700001329184 ], [ 353491.820900000631809, 258387.094399999827147 ], [ 353470.91610000282526, 258379.95719999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504017500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98739274, "LATITUDE": 18.35519973, "OBJECTID_1": 2146, "PARCEL_NO_": "102504017500", "Tax_Legal_": "BONNE ESPERANCE 17-B WEST END QTR.", "Name": "ROY A WATLINGTON REVOCABLE TRUST", "Address": "PO Box 302321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.82499098599999, "SHAPE_Area": 2304.6928876299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352851.028999999165535, 258355.252000000327826 ], [ 352819.760899998247623, 258334.097800001502037 ], [ 352812.543600000441074, 258329.39469999819994 ], [ 352789.598200000822544, 258372.481100000441074 ], [ 352829.685500003397465, 258399.618000000715256 ], [ 352849.389399997889996, 258358.405000001192093 ], [ 352851.028999999165535, 258355.252000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98919477, "LATITUDE": 18.3550479, "OBJECTID_1": 2079, "PARCEL_NO_": "102504010400", "Tax_Legal_": "5B ESTATE BONNE ESPERANCE WEST END QTR", "Name": "ROBERTS, LIONEL V", "Address": "PO Box 302561", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59100, "Improved_V": 106700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.024885759, "SHAPE_Area": 2328.2681527200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352657.5878000035882, 258345.013900000602007 ], [ 352638.543799996376038, 258308.761100001633167 ], [ 352607.821199998259544, 258318.219900000840425 ], [ 352611.773599997162819, 258327.540399998426437 ], [ 352615.661300003528595, 258344.459699999541044 ], [ 352615.456299997866154, 258368.522700000554323 ], [ 352613.647699996829033, 258391.517099998891354 ], [ 352614.401900000870228, 258397.644999999552965 ], [ 352619.27929999679327, 258393.040800001472235 ], [ 352657.5878000035882, 258345.013900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98200533000001, "LATITUDE": 18.35530497, "OBJECTID_1": 2624, "PARCEL_NO_": "102603031500", "Tax_Legal_": "SANTA MARIA 4B-24 No.1 WESTEND QTR.", "Name": "SMITH, GERALDINE L. & KENNETH K", "Address": "17 Burchwood Ave", "City": "Plant City", "State": "Florida", "Zip": 33563, "Country": "United States", "Land_Value": 38200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.978572977, "SHAPE_Area": 1238.4309365 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353384.01240000128746, 258358.347600001841784 ], [ 353366.772299997508526, 258394.30350000038743 ], [ 353377.22919999808073, 258397.344399999827147 ], [ 353382.043700002133846, 258400.128100000321865 ], [ 353383.634700000286102, 258402.674199998378754 ], [ 353403.034800000488758, 258397.133499998599291 ], [ 353408.984700001776218, 258361.29619999974966 ], [ 353384.01240000128746, 258358.347600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9814411, "LATITUDE": 18.35536399, "OBJECTID_1": 2626, "PARCEL_NO_": "102603031700", "Tax_Legal_": "SANTA MARIA 4B-26", "Name": "SAMUEL, ARNOLD E., ALLAN RICKY, & BRYAN ARNOLD", "Address": "PO Box 308474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45400, "Improved_V": 174000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.58185743600001, "SHAPE_Area": 930.35204670200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353438.753499999642372, 258369.139299999922514 ], [ 353428.818800002336502, 258399.455400001257658 ], [ 353462.662399999797344, 258402.265500001609325 ], [ 353470.91610000282526, 258379.95719999819994 ], [ 353438.753499999642372, 258369.139299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9867983, "LATITUDE": 18.35522417, "OBJECTID_1": 2137, "PARCEL_NO_": "102504016600", "Tax_Legal_": "BONNE ESPERANCE 14 WEST END QTR", "Name": "ROBERTS, MICHELLE, LEANDRE V. & FLOWERS, RICCI", "Address": "PO Box 303333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 269400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.726198737, "SHAPE_Area": 497.00703826199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352893.912799999117851, 258338.08219999819994 ], [ 352868.512599997222424, 258385.370400000363588 ], [ 352875.684900000691414, 258395.350499998778105 ], [ 352898.691399998962879, 258345.087400000542402 ], [ 352893.912799999117851, 258338.08219999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98172349, "LATITUDE": 18.35530933, "OBJECTID_1": 2625, "PARCEL_NO_": "102603031600", "Tax_Legal_": "SANTA MARIA 4B-16 No.1 WESTEND QTR.", "Name": "WHEATLEY, COSMORE A. & ROSITA M", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 247500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.903425615, "SHAPE_Area": 958.60790326799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353408.984700001776218, 258361.29619999974966 ], [ 353403.034800000488758, 258397.133499998599291 ], [ 353421.567400000989437, 258398.762800000607967 ], [ 353428.818800002336502, 258399.455400001257658 ], [ 353438.753499999642372, 258369.139299999922514 ], [ 353408.984700001776218, 258361.29619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98255386, "LATITUDE": 18.35542395, "OBJECTID_1": 2538, "PARCEL_NO_": "102603010100", "Tax_Legal_": "SANTA MARIA 4B SOUTH SIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.394833739199999, "SHAPE_Area": 19.914187588099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353331.276600003242493, 258396.124000001698732 ], [ 353336.130599997937679, 258394.263799998909235 ], [ 353328.110699996352196, 258389.131999999284744 ], [ 353331.276600003242493, 258396.124000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98228845, "LATITUDE": 18.35526392, "OBJECTID_1": 2623, "PARCEL_NO_": "102603031400", "Tax_Legal_": "SANTA MARIA 4B-23 No.1 WESTEND QTR.", "Name": "WATTS, GEORGE L", "Address": "PO Box 303244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36300, "Improved_V": 385800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.5653975, "SHAPE_Area": 992.988652796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353366.772299997508526, 258394.30350000038743 ], [ 353384.01240000128746, 258358.347600001841784 ], [ 353367.070799998939037, 258359.264499999582767 ], [ 353359.788800001144409, 258362.160199999809265 ], [ 353357.36089999973774, 258363.195799998939037 ], [ 353345.208700001239777, 258369.851300001144409 ], [ 353336.276299998164177, 258377.166499998420477 ], [ 353336.225900001823902, 258383.076699998229742 ], [ 353339.425999999046326, 258386.058200001716614 ], [ 353366.772299997508526, 258394.30350000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102401020100", "MAP": "D9-5741-T94", "PARCEL_NAM": "122", "ACRE": null, "LONGITUDE": -65.01218507, "LATITUDE": 18.35446597, "OBJECTID_1": 1411, "PARCEL_NO_": "102401020100", "Tax_Legal_": "BORDEAUX, 117, 121 & 122 WEST END QUARTER", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 749.358257568, "SHAPE_Area": 19341.093852900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350116.678099997341633, 258160.620299998670816 ], [ 350078.999300003051758, 258130.170299999415874 ], [ 350078.1908999979496, 258134.97410000115633 ], [ 350072.113399997353554, 258185.797899998724461 ], [ 350227.227099999785423, 258340.954599998891354 ], [ 350295.546099998056889, 258367.056099999696016 ], [ 350343.64360000193119, 258305.810400001704693 ], [ 350340.434500001370907, 258303.884300000965595 ], [ 350295.406900003552437, 258288.739199999719858 ], [ 350261.637100003659725, 258277.274900000542402 ], [ 350250.381099998950958, 258273.383099999278784 ], [ 350232.786100000143051, 258256.351599998772144 ], [ 350204.793499998748302, 258229.3136 ], [ 350192.797700002789497, 258217.60530000180006 ], [ 350169.603500001132488, 258195.250599998980761 ], [ 350155.971699997782707, 258186.27309999987483 ], [ 350116.678099997341633, 258160.620299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404031200", "MAP": "F9-1826-T66", "PARCEL_NAM": "58-1A", "ACRE": ".50", "LONGITUDE": -65.00306878000001, "LATITUDE": 18.35537313, "OBJECTID_1": 1879, "PARCEL_NO_": "102404031200", "Tax_Legal_": "FORTUNA 58-1A WEST END QTR", "Name": "HANLEY, FRANK & LOUISE", "Address": "PO Box 306965", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61600, "Improved_V": 124700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.428547119, "SHAPE_Area": 2004.81379234 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351186.756899997591972, 258346.697000000625849 ], [ 351181.920900002121925, 258346.446299999952316 ], [ 351129.327100001275539, 258367.547400001436472 ], [ 351126.893799997866154, 258369.2162000015378 ], [ 351126.055100001394749, 258373.00899999961257 ], [ 351126.829099997878075, 258376.815000001341105 ], [ 351133.243600003421307, 258381.089400000870228 ], [ 351136.441899999976158, 258384.282000001519918 ], [ 351138.828500002622604, 258388.101199999451637 ], [ 351140.394299998879433, 258393.60249999910593 ], [ 351193.908399999141693, 258379.669799998402596 ], [ 351194.595299996435642, 258373.147799998521805 ], [ 351194.668999999761581, 258364.493599999696016 ], [ 351190.761500000953674, 258349.896099999547005 ], [ 351186.756899997591972, 258346.697000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404010300", "MAP": "D9-187-T58", "PARCEL_NAM": "7-2", "ACRE": null, "LONGITUDE": -65.00703779, "LATITUDE": 18.35501488, "OBJECTID_1": 1825, "PARCEL_NO_": "102404010300", "Tax_Legal_": "FORTUNA ESTATE 7-2 No.8 WEST END QTR.", "Name": "MONSANTO, EMILE V. & FRANCES R & JEMICA C. GUMBS", "Address": "8066 Caret Bay E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.59805057400001, "SHAPE_Area": 5267.4879538900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350799.951700001955032, 258317.144400000572205 ], [ 350791.143399998545647, 258309.895199999213219 ], [ 350779.957500003278255, 258297.771299999207258 ], [ 350776.757500000298023, 258294.789799999445677 ], [ 350771.151000000536442, 258290.310899998992682 ], [ 350769.547399997711182, 258289.242300000041723 ], [ 350759.913000002503395, 258284.308299999684095 ], [ 350754.286799997091293, 258282.151399999856949 ], [ 350747.850699998438358, 258280.40989999845624 ], [ 350689.20099999755621, 258349.801899999380112 ], [ 350699.519400000572205, 258369.095800001174212 ], [ 350760.116899996995926, 258355.026299998164177 ], [ 350768.207000002264977, 258351.926199998706579 ], [ 350799.951700001955032, 258317.144400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98080162, "LATITUDE": 18.35533474, "OBJECTID_1": 2538, "PARCEL_NO_": "102603010100", "Tax_Legal_": "SANTA MARIA 4B SOUTH SIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.409844520699998, "SHAPE_Area": 104.16677253500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353525.801100000739098, 258373.862500000745058 ], [ 353507.938100002706051, 258388.281700000166893 ], [ 353517.581500001251698, 258392.160300001502037 ], [ 353525.801100000739098, 258373.862500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504018200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98690909, "LATITUDE": 18.35502882, "OBJECTID_1": 2152, "PARCEL_NO_": "102504018200", "Tax_Legal_": "BONNE ESPERANCE 14A WEST END QTR.", "Name": "MATTHEW, WILLIAM A. & ROSALIE A. (TRUSTEES)", "Address": "PO Box 303452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.66930647199999, "SHAPE_Area": 1741.2205851799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352875.660800002515316, 258303.524599999189377 ], [ 352851.028999999165535, 258355.252000000327826 ], [ 352849.389399997889996, 258358.405000001192093 ], [ 352868.512599997222424, 258385.370400000363588 ], [ 352893.912799999117851, 258338.08219999819994 ], [ 352890.734300002455711, 258332.567800000309944 ], [ 352875.660800002515316, 258303.524599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98261228, "LATITUDE": 18.35531777, "OBJECTID_1": 2538, "PARCEL_NO_": "102603010100", "Tax_Legal_": "SANTA MARIA 4B SOUTH SIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.662915959500001, "SHAPE_Area": 22.637239880199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353328.110699996352196, 258389.131999999284744 ], [ 353326.595100000500679, 258377.720499999821186 ], [ 353322.567199997603893, 258377.265299998223782 ], [ 353328.110699996352196, 258389.131999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99204721, "LATITUDE": 18.35493887, "OBJECTID_1": 2064, "PARCEL_NO_": "102503011200", "Tax_Legal_": "BONNE ESPERANCE 9C WEST END QTR", "Name": "LEWIS, MINNIE", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61600, "Improved_V": 236700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.31190813699999, "SHAPE_Area": 2621.3633875 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352357.596400000154972, 258347.624899998307228 ], [ 352330.667300000786781, 258290.409200001507998 ], [ 352308.805100001394749, 258300.996100001037121 ], [ 352298.287100002169609, 258305.131799999624491 ], [ 352331.512100003659725, 258380.553100001066923 ], [ 352345.384800001978874, 258361.245999999344349 ], [ 352357.596400000154972, 258347.624899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98441756, "LATITUDE": 18.35496025, "OBJECTID_1": 2108, "PARCEL_NO_": "102504013500", "Tax_Legal_": "BONNE ESPERANCE 2-26 WEST END QTR", "Name": "HODGE, JR., HUGO V. & KAREN T. STAIR", "Address": "PO Box 7543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 76300, "Improved_V": 277300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.31205273, "SHAPE_Area": 3010.2865942899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353109.566899999976158, 258296.573100000619888 ], [ 353117.893299996852875, 258360.391499999910593 ], [ 353140.254199996590614, 258385.905699998140335 ], [ 353166.228900000452995, 258365.853300001472235 ], [ 353161.493500001728535, 258353.782200001180172 ], [ 353159.898800000548363, 258351.65819999948144 ], [ 353159.91499999910593, 258349.758499998599291 ], [ 353158.322200000286102, 258347.423500001430511 ], [ 353158.33839999884367, 258345.523699998855591 ], [ 353153.608400002121925, 258332.819400001317263 ], [ 353152.028099998831749, 258329.006799999624491 ], [ 353146.482799999415874, 258317.351300001144409 ], [ 353142.514200001955032, 258309.930500000715256 ], [ 353140.12049999833107, 258306.955600000917912 ], [ 353133.723899997770786, 258300.570500001311302 ], [ 353128.905799999833107, 258298.208999998867512 ], [ 353119.251599997282028, 258295.596900001168251 ], [ 353109.566899999976158, 258296.573100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98085118, "LATITUDE": 18.35517758, "OBJECTID_1": 2631, "PARCEL_NO_": "102603032200", "Tax_Legal_": "SANTA MARIA 4B-31 No.1 WESTEND QTR.", "Name": "TURNBULL, VERNOL L. & MAKEDA", "Address": "215-265 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 113700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.416474456, "SHAPE_Area": 947.79795835899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353533.201700001955032, 258357.035599999129772 ], [ 353506.670800000429153, 258347.741399999707937 ], [ 353493.564800001680851, 258371.698800001293421 ], [ 353491.930600002408028, 258374.218499999493361 ], [ 353494.327899999916553, 258376.771299999207258 ], [ 353499.961300000548363, 258378.083999998867512 ], [ 353499.905599996447563, 258384.627399999648333 ], [ 353507.938100002706051, 258388.281700000166893 ], [ 353525.801100000739098, 258373.862500000745058 ], [ 353533.201700001955032, 258357.035599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016700", "MAP": "D9-1393-T78", "PARCEL_NAM": "5C", "ACRE": "0.321", "LONGITUDE": -64.98954891, "LATITUDE": 18.35503608, "OBJECTID_1": 2138, "PARCEL_NO_": "102504016700", "Tax_Legal_": "BONNE ESPERANCE 5C & 5F WEST END QTR", "Name": "ROBERTS, LLOYD V. & MAYSIA", "Address": "659 Maple Grove Way", "City": "Marietta", "State": "Georgia", "Zip": 30066, "Country": "United States", "Land_Value": 65900, "Improved_V": 269700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.82247412300001, "SHAPE_Area": 1319.8752106500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352587.771200001239777, 258305.3902000002563 ], [ 352576.015299998223782, 258360.178300000727177 ], [ 352605.714000001549721, 258376.253400001674891 ], [ 352606.770300000905991, 258346.920000001788139 ], [ 352604.455700002610683, 258334.657699998468161 ], [ 352598.140000000596046, 258318.774000000208616 ], [ 352594.149800002574921, 258313.886199999600649 ], [ 352593.363300003111362, 258311.557700000703335 ], [ 352587.771200001239777, 258305.3902000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98485664, "LATITUDE": 18.35493408, "OBJECTID_1": 2109, "PARCEL_NO_": "102504013600", "Tax_Legal_": "BONNE ESPERANCE 2-25 WEST END QTR", "Name": "SUSAN JAMAL HARMER and MICHELE RENE HARMER", "Address": "PO Box 305244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76300, "Improved_V": 282400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.83127380799999, "SHAPE_Area": 3500.82507842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353091.92230000346899, 258380.021699998527765 ], [ 353117.893299996852875, 258360.391499999910593 ], [ 353109.566899999976158, 258296.573100000619888 ], [ 353077.237099997699261, 258305.385499998927116 ], [ 353069.937100000679493, 258310.392000000923872 ], [ 353067.501999996602535, 258312.271899998188019 ], [ 353063.429099999368191, 258317.093699999153614 ], [ 353059.347199998795986, 258322.970899999141693 ], [ 353057.693199999630451, 258327.8125 ], [ 353055.911499999463558, 258347.640700001269579 ], [ 353056.697999998927116, 258349.969200000166893 ], [ 353084.739200003445148, 258371.308100000023842 ], [ 353091.92230000346899, 258380.021699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00357784000001, "LATITUDE": 18.35502816, "OBJECTID_1": 1897, "PARCEL_NO_": "102404040500", "Tax_Legal_": "FORTUNA 77-2 WEST END QTR", "Name": "NICHOLSON, MARY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.70819327300001, "SHAPE_Area": 2653.3609375599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351126.580200001597404, 258311.374000001698732 ], [ 351121.045699998736382, 258298.451999999582767 ], [ 351079.826700001955032, 258309.513700000941753 ], [ 351080.593400001525879, 258314.164000000804663 ], [ 351084.473899997770786, 258331.927600000053644 ], [ 351085.262299999594688, 258334.045000001788139 ], [ 351086.856899999082088, 258336.168999999761581 ], [ 351092.387800000607967, 258349.513199999928474 ], [ 351093.977099999785423, 258352.270399998873472 ], [ 351097.965499997138977, 258357.369300000369549 ], [ 351102.772799998521805, 258360.99720000103116 ], [ 351106.781000003218651, 258363.77419999986887 ], [ 351114.844099998474121, 258363.840199999511242 ], [ 351141.545900002121925, 258353.081900000572205 ], [ 351126.580200001597404, 258311.374000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00241775000001, "LATITUDE": 18.35512111, "OBJECTID_1": 1896, "PARCEL_NO_": "102404040400", "Tax_Legal_": "FORTUNA 58-4 WEST END QTR", "Name": "CARTY, NEIL ENRIQUE & EVELYN P.", "Address": "PO Box 7404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75600, "Improved_V": 392700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.292602614, "SHAPE_Area": 2422.1361373200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351227.239799998700619, 258327.396600000560284 ], [ 351185.343900002539158, 258323.254000000655651 ], [ 351187.737700000405312, 258326.228900000452995 ], [ 351190.917999997735023, 258331.532299999147654 ], [ 351197.287500001490116, 258341.083599999547005 ], [ 351200.421099998056889, 258351.875 ], [ 351202.787900000810623, 258358.016100000590086 ], [ 351266.452399998903275, 258362.548000000417233 ], [ 351275.579000003635883, 258332.436299998313189 ], [ 351227.239799998700619, 258327.396600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98265185, "LATITUDE": 18.35499819, "OBJECTID_1": 2638, "PARCEL_NO_": "102603032900", "Tax_Legal_": "SANTA MARIA 4B-38 WEST END QTR.", "Name": "ROBINSON, GEOFFREY A. & JOSLYN M", "Address": "PO Box 10587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38200, "Improved_V": 80400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.73837998400001, "SHAPE_Area": 1278.76561715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353342.058899998664856, 258360.959600001573563 ], [ 353323.885999999940395, 258317.114500001072884 ], [ 353300.405799999833107, 258328.321400001645088 ], [ 353322.567199997603893, 258377.265299998223782 ], [ 353326.595100000500679, 258377.720499999821186 ], [ 353328.247299998998642, 258373.089999999850988 ], [ 353330.696800000965595, 258369.52140000090003 ], [ 353340.437299996614456, 258362.001800000667572 ], [ 353342.058899998664856, 258360.959600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603012300", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97893474, "LATITUDE": 18.35498687, "OBJECTID_1": 2558, "PARCEL_NO_": "102603012300", "Tax_Legal_": "PEARL 37-13 S S QTR", "Name": "Jasen Neuburger & Mary Hayes & K & J Neuburger", "Address": "7945 Estate Dorthea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101000, "Improved_V": 186900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.21534689200001, "SHAPE_Area": 1860.36715366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353712.580700002610683, 258314.1739999987185 ], [ 353685.729699999094009, 258342.451900001615286 ], [ 353704.874399997293949, 258366.884399998933077 ], [ 353706.474399998784065, 258368.375100001692772 ], [ 353708.079800002276897, 258369.232599999755621 ], [ 353710.493400000035763, 258369.88569999858737 ], [ 353712.109600000083447, 258369.476700000464916 ], [ 353713.738399997353554, 258367.590199999511242 ], [ 353717.732199996709824, 258372.055799998342991 ], [ 353719.272900000214577, 258380.512200001627207 ], [ 353743.654700003564358, 258358.124699998646975 ], [ 353712.580700002610683, 258314.1739999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98015555000001, "LATITUDE": 18.35501692, "OBJECTID_1": 2569, "PARCEL_NO_": "102603013500", "Tax_Legal_": "PEARL 37-33 S S QTR", "Name": "PERCELL, KARL R. & CAROLYN P. HERMON-PERCELL (Co-Trustees)", "Address": "PO Box 304910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.70223451199999, "SHAPE_Area": 1456.6300917900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353612.346199996769428, 258342.906800001859665 ], [ 353590.793399997055531, 258317.188099998980761 ], [ 353558.076999999582767, 258371.382399998605251 ], [ 353578.983499996364117, 258378.308499999344349 ], [ 353583.070799998939037, 258371.798099998384714 ], [ 353593.641000002622604, 258361.541000001132488 ], [ 353612.346199996769428, 258342.906800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98874921, "LATITUDE": 18.35449423, "OBJECTID_1": 2080, "PARCEL_NO_": "102504010500", "Tax_Legal_": "PAR 4 REM BONNE ESPERANCE 4 WEST END QTR", "Name": "LEANDER ROBERTS & RICCI FLOWERS", "Address": "PO Box 303333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033333, "Country": "United States", "Land_Value": 214300, "Improved_V": 153100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 564.44506752200004, "SHAPE_Area": 8737.0831311399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352699.475699998438358, 258255.430900000035763 ], [ 352695.710299998521805, 258224.15819999948144 ], [ 352675.523699998855591, 258227.37049999833107 ], [ 352638.343400001525879, 258237.620900001376867 ], [ 352632.665100000798702, 258241.585200000554323 ], [ 352622.139899998903275, 258246.56529999896884 ], [ 352636.394500002264977, 258277.0793999992311 ], [ 352638.543799996376038, 258308.761100001633167 ], [ 352657.5878000035882, 258345.013900000602007 ], [ 352671.073899999260902, 258371.088799998164177 ], [ 352700.255800001323223, 258353.173599999397993 ], [ 352689.073499999940395, 258340.627599999308586 ], [ 352698.221699997782707, 258307.982900001108646 ], [ 352751.911200001835823, 258252.904800001531839 ], [ 352756.074000000953674, 258237.528999999165535 ], [ 352755.2820999994874, 258235.833799999207258 ], [ 352752.865000002086163, 258235.602899998426437 ], [ 352719.662299998104572, 258252.218600001186132 ], [ 352709.122699998319149, 258258.88740000128746 ], [ 352701.808300003409386, 258265.582499999552965 ], [ 352696.918300002813339, 258271.664200000464916 ], [ 352683.851899996399879, 258290.977800000458956 ], [ 352676.641800001263618, 258285.430399999022484 ], [ 352695.411799997091293, 258259.197299998253584 ], [ 352699.475699998438358, 258255.430900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98111907000001, "LATITUDE": 18.35508056, "OBJECTID_1": 2630, "PARCEL_NO_": "102603032100", "Tax_Legal_": "SANTA MARIA 4B-30 No.1 WESTEND QTR.", "Name": "BELLE, KENNETH S. & KAREN D", "Address": "PO Box 306575", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.15005819700001, "SHAPE_Area": 992.48054055700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353476.120800003409386, 258336.936700001358986 ], [ 353462.152699999511242, 258367.430900000035763 ], [ 353480.64580000191927, 258373.703999999910593 ], [ 353483.068300001323223, 258373.301600001752377 ], [ 353484.702500000596046, 258370.781899999827147 ], [ 353493.564800001680851, 258371.698800001293421 ], [ 353506.670800000429153, 258347.741399999707937 ], [ 353476.120800003409386, 258336.936700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404010200", "MAP": "D9-9218-T017", "PARCEL_NAM": "8-1 REM", "ACRE": null, "LONGITUDE": -65.00742365000001, "LATITUDE": 18.35482088, "OBJECTID_1": 1824, "PARCEL_NO_": "102404010200", "Tax_Legal_": "FORTUNA 8-2 WEST END QTR", "Name": "DENIS, HUGH T. & BALBING", "Address": "PO Box 10954", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 114500, "Improved_V": 117200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.86655413099999, "SHAPE_Area": 2707.2323901099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350701.921499997377396, 258276.44539999961853 ], [ 350669.35249999910593, 258313.331300001591444 ], [ 350689.20099999755621, 258349.801899999380112 ], [ 350747.850699998438358, 258280.40989999845624 ], [ 350739.001000002026558, 258278.015500001609325 ], [ 350701.921499997377396, 258276.44539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00318852, "LATITUDE": 18.35498291, "OBJECTID_1": 1898, "PARCEL_NO_": "102404040600", "Tax_Legal_": "FORTUNA 77-1 WEST END QTR", "Name": "JAMES, GERRO & FRANCIS, J", "Address": "PO Box 302305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68100, "Improved_V": 149600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.049513034, "SHAPE_Area": 1566.6726834799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351151.667599998414516, 258300.8136 ], [ 351126.580200001597404, 258311.374000001698732 ], [ 351141.545900002121925, 258353.081900000572205 ], [ 351174.719800002872944, 258339.843400001525879 ], [ 351177.968400001525879, 258337.125799998641014 ], [ 351178.834100000560284, 258330.166799999773502 ], [ 351177.239399999380112, 258328.04280000180006 ], [ 351171.645599998533726, 258322.086399998515844 ], [ 351159.628200002014637, 258312.910999998450279 ], [ 351154.041599996387959, 258306.110300000756979 ], [ 351151.667599998414516, 258300.8136 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97966499, "LATITUDE": 18.35506534, "OBJECTID_1": 2566, "PARCEL_NO_": "102603013200", "Tax_Legal_": "37-23 PEARL NO.2 SOUTHSIDE QTR.", "Name": "WALSH, RICHARD L. & TRACY R.", "Address": "PO BOX 304611", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62900, "Improved_V": 156100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.88875269299999, "SHAPE_Area": 1531.86568872 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353670.271300002932549, 258358.579599998891354 ], [ 353632.610100001096725, 258330.618099998682737 ], [ 353621.201300002634525, 258344.668000001460314 ], [ 353605.744699999690056, 258360.584600001573563 ], [ 353606.49889999628067, 258366.712499998509884 ], [ 353656.438100002706051, 258373.242899999022484 ], [ 353670.271300002932549, 258358.579599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98037971, "LATITUDE": 18.35492162, "OBJECTID_1": 2570, "PARCEL_NO_": "102603013600", "Tax_Legal_": "PEARL 37-32 S S QTR", "Name": "PERCELL,CO-TRUSTEES, KARL R.&CAROLYN P.HERMON", "Address": "PO Box 304910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61800, "Improved_V": 234300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.156778823, "SHAPE_Area": 1680.29094968 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353559.393899999558926, 258311.442600000649691 ], [ 353538.037799999117851, 258357.286200001835823 ], [ 353534.756800003349781, 258363.803300000727177 ], [ 353558.076999999582767, 258371.382399998605251 ], [ 353590.793399997055531, 258317.188099998980761 ], [ 353594.070799998939037, 258311.093199998140335 ], [ 353586.787000000476837, 258314.199999999254942 ], [ 353574.692299999296665, 258314.100999999791384 ], [ 353559.393899999558926, 258311.442600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98645054000001, "LATITUDE": 18.35480602, "OBJECTID_1": 2099, "PARCEL_NO_": "102504012600", "Tax_Legal_": "BONNE ESPERANCE 2-13 WEST END QTR", "Name": "SHULTERBRANDT, RUDOLPH & SONIA", "Address": "PO Box 303587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65000, "Improved_V": 148700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.04600126899999, "SHAPE_Area": 2771.2325600499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352954.501400001347065, 258325.06810000166297 ], [ 352916.957099996507168, 258283.386500000953674 ], [ 352899.934600003063679, 258293.80180000141263 ], [ 352897.501299999654293, 258295.47069999948144 ], [ 352894.250900000333786, 258298.399399999529123 ], [ 352891.790600001811981, 258303.234400000423193 ], [ 352890.948299996554852, 258307.449400000274181 ], [ 352890.923199996352196, 258310.404500000178814 ], [ 352891.69709999859333, 258314.210499998182058 ], [ 352905.987700000405312, 258340.503100000321865 ], [ 352907.591399997472763, 258341.571699999272823 ], [ 352908.377899996936321, 258343.900100000202656 ], [ 352915.552000001072884, 258353.669100001454353 ], [ 352925.141400001943111, 258363.880100000649691 ], [ 352937.374600000679493, 258347.725999999791384 ], [ 352954.501400001347065, 258325.06810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016700", "MAP": "D9-5325-T92", "PARCEL_NAM": "5F", "ACRE": "0.50", "LONGITUDE": -64.98974537, "LATITUDE": 18.35489142, "OBJECTID_1": 2138, "PARCEL_NO_": "102504016700", "Tax_Legal_": "BONNE ESPERANCE 5C & 5F WEST END QTR", "Name": "ROBERTS, LLOYD V. & MAYSIA", "Address": "659 Maple Grove Way", "City": "Marietta", "State": "Georgia", "Zip": 30066, "Country": "United States", "Land_Value": 65900, "Improved_V": 269700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.32884689400001, "SHAPE_Area": 1244.5528031599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352576.015299998223782, 258360.178300000727177 ], [ 352587.771200001239777, 258305.3902000002563 ], [ 352583.775600001215935, 258301.135600000619888 ], [ 352570.143899999558926, 258292.158100001513958 ], [ 352555.889899998903275, 258356.213899999856949 ], [ 352576.015299998223782, 258360.178300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98139988, "LATITUDE": 18.35500236, "OBJECTID_1": 2629, "PARCEL_NO_": "102603032000", "Tax_Legal_": "SANTA MARIA 4B-29 WEST END QTR.", "Name": "BURTON, RANDOLPH & SANDRA", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 43300, "Improved_V": 157000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.63830522399999, "SHAPE_Area": 1036.22204242 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353443.934799998998642, 258328.862799998372793 ], [ 353433.199199996888638, 258358.539099998772144 ], [ 353440.439800001680851, 258360.498199999332428 ], [ 353462.152699999511242, 258367.430900000035763 ], [ 353476.120800003409386, 258336.936700001358986 ], [ 353467.272900000214577, 258334.3310999982059 ], [ 353456.817800000309944, 258331.079199999570847 ], [ 353443.934799998998642, 258328.862799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98241943, "LATITUDE": 18.35487657, "OBJECTID_1": 2639, "PARCEL_NO_": "102603033000", "Tax_Legal_": "SANTA MARIA 4B-39 WEST END QUARTER", "Name": "BERTRAND, EDWARD C. & LORETTA", "Address": "EST. TUTU D-12", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49900, "Improved_V": 324800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.472789944, "SHAPE_Area": 1413.7447452700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353369.577899999916553, 258348.941399998962879 ], [ 353350.604000002145767, 258304.456399999558926 ], [ 353323.885999999940395, 258317.114500001072884 ], [ 353342.058899998664856, 258360.959600001573563 ], [ 353351.779600001871586, 258355.761799998581409 ], [ 353355.015699997544289, 258354.521699998527765 ], [ 353369.577899999916553, 258348.941399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504018000", "MAP": "G9-2795-T78", "PARCEL_NAM": "17A", "ACRE": ".50", "LONGITUDE": -64.98709306000001, "LATITUDE": 18.35478435, "OBJECTID_1": 2150, "PARCEL_NO_": "102504018000", "Tax_Legal_": "17A BONNE ESPERANCE No.2 WEST END QTR", "Name": "ABDELAZIZ, NOURA T", "Address": "PO Box 502698", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.08662478, "SHAPE_Area": 1799.4019599000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352860.5878000035882, 258277.344700001180172 ], [ 352825.762599997222424, 258337.9364 ], [ 352851.161300003528595, 258355.119699999690056 ], [ 352875.793099999427795, 258303.392299998551607 ], [ 352868.658500000834465, 258288.979499999433756 ], [ 352860.5878000035882, 258277.344700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98836123, "LATITUDE": 18.35470763, "OBJECTID_1": 2081, "PARCEL_NO_": "102504010600", "Tax_Legal_": "BONNE ESPERANCE 4-1 WEST END QTR", "Name": "MILLS, PEARLINA & MILTON", "Address": "106 Lawn St", "City": "Boston", "State": "Massachusetts", "Zip": 2120, "Country": "United States", "Land_Value": 76500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.585724056, "SHAPE_Area": 2325.7981409099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352700.255800001323223, 258353.173599999397993 ], [ 352714.879100002348423, 258340.416600000113249 ], [ 352726.284400001168251, 258326.788800001144409 ], [ 352730.380699999630451, 258319.223000001162291 ], [ 352732.005900003015995, 258317.758699998259544 ], [ 352741.064099997282028, 258295.668000001460314 ], [ 352751.911200001835823, 258252.904800001531839 ], [ 352698.221699997782707, 258307.982900001108646 ], [ 352689.073499999940395, 258340.627599999308586 ], [ 352700.255800001323223, 258353.173599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98170125, "LATITUDE": 18.3549554, "OBJECTID_1": 2628, "PARCEL_NO_": "102603031900", "Tax_Legal_": "SANTA MARIA 4B-28 #1 WESTEND QTR.", "Name": "ROCK, VALERIE", "Address": "PO Box 6784", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.68362378, "SHAPE_Area": 889.75798000500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353433.199199996888638, 258358.539099998772144 ], [ 353443.934799998998642, 258328.862799998372793 ], [ 353428.611299999058247, 258329.159600000828505 ], [ 353414.891400001943111, 258330.524900000542402 ], [ 353405.998599998652935, 258333.196400001645088 ], [ 353401.932800002396107, 258337.173900000751019 ], [ 353401.108599998056889, 258339.278099998831749 ], [ 353401.864500001072884, 258345.194899998605251 ], [ 353403.441200003027916, 258349.42960000038147 ], [ 353408.255699999630451, 258352.213300000876188 ], [ 353433.199199996888638, 258358.539099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99119294, "LATITUDE": 18.35489776, "OBJECTID_1": 2073, "PARCEL_NO_": "102503012100", "Tax_Legal_": "BONNE ESPERANCE REM 18A WEST END QTR.", "Name": "CALLWOOD, LEMUEL", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68500, "Improved_V": 162000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.62392230200001, "SHAPE_Area": 2667.1803164900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352467.429300002753735, 258328.047699999064207 ], [ 352427.390600003302097, 258295.211599998176098 ], [ 352417.651900000870228, 258302.520199999213219 ], [ 352403.852899998426437, 258313.173000000417233 ], [ 352401.416000001132488, 258315.263999998569489 ], [ 352388.405299998819828, 258328.034200001507998 ], [ 352376.591600000858307, 258340.199499998241663 ], [ 352399.80969999730587, 258360.837799999862909 ], [ 352409.187799997627735, 258349.52479999884963 ], [ 352467.429300002753735, 258328.047699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97458739, "LATITUDE": 18.35472482, "OBJECTID_1": 2593, "PARCEL_NO_": "102603022000", "Tax_Legal_": "2C-11 CROWN&HAWK SOUTHSIDE QTR.", "Name": "SMITH, WINSTON JR. & ANTHONY", "Address": "2C-11 ESTATE CROWN & HAWK", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38000, "Improved_V": 181100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.68473185900001, "SHAPE_Area": 1751.2622212399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354161.883799999952316, 258295.897700000554323 ], [ 354159.7820999994874, 258353.297899998724461 ], [ 354182.256300002336502, 258365.514199998229742 ], [ 354181.6621999964118, 258340.600299999117851 ], [ 354192.507500000298023, 258298.048099998384714 ], [ 354191.735299997031689, 258294.030999999493361 ], [ 354191.7550999969244, 258291.709199998527765 ], [ 354185.346000000834465, 258286.801600001752377 ], [ 354180.502700001001358, 258287.395199999213219 ], [ 354161.883799999952316, 258295.897700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99172441, "LATITUDE": 18.35469279, "OBJECTID_1": 2065, "PARCEL_NO_": "102503011300", "Tax_Legal_": "BONNE ESPERANCE 9D WEST END QTR", "Name": "STAGGER, AVA", "Address": "130 E 95th St", "City": "Brooklyn", "State": "New York", "Zip": 11212, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.23821528, "SHAPE_Area": 2659.1491274499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352394.205899998545647, 258309.716600000858307 ], [ 352376.00959999859333, 258268.615499999374151 ], [ 352330.667300000786781, 258290.409200001507998 ], [ 352357.596400000154972, 258347.624899998307228 ], [ 352376.321400001645088, 258326.668800000101328 ], [ 352394.205899998545647, 258309.716600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9806355, "LATITUDE": 18.35481876, "OBJECTID_1": 2634, "PARCEL_NO_": "102603032500", "Tax_Legal_": "4B-34 ESTATE SANTA MARIA WESTEND QUARTER", "Name": "TRANT, ANGELA", "Address": "PO Box 307945", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40800, "Improved_V": 289000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.24736744699999, "SHAPE_Area": 1289.2349125600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353559.393899999558926, 258311.442600000649691 ], [ 353532.850400000810623, 258303.625999998301268 ], [ 353523.801100000739098, 258324.661299999803305 ], [ 353498.719099998474121, 258334.588500000536442 ], [ 353511.582400001585484, 258339.126800000667572 ], [ 353513.196800000965595, 258338.928899999707937 ], [ 353515.63910000026226, 258336.204700000584126 ], [ 353523.6824000030756, 258338.592500001192093 ], [ 353523.639300003647804, 258343.658399999141693 ], [ 353530.071800000965595, 258345.822000000625849 ], [ 353538.037799999117851, 258357.286200001835823 ], [ 353559.393899999558926, 258311.442600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9794512, "LATITUDE": 18.35486122, "OBJECTID_1": 2564, "PARCEL_NO_": "102603012900", "Tax_Legal_": "PEARL 37-24 S S QTR", "Name": "PRINCE, IVOR & OTHERS", "Address": "PO Box 11198", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64900, "Improved_V": 128500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.373929586, "SHAPE_Area": 1308.4691945699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353685.729699999094009, 258342.451900001615286 ], [ 353657.8108000010252, 258306.759700000286102 ], [ 353653.741499997675419, 258311.159400001168251 ], [ 353650.491099998354912, 258314.088100001215935 ], [ 353637.498400002717972, 258324.747499998658895 ], [ 353632.610100001096725, 258330.618099998682737 ], [ 353670.271300002932549, 258358.579599998891354 ], [ 353685.729699999094009, 258342.451900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98549635000001, "LATITUDE": 18.3548364, "OBJECTID_1": 2110, "PARCEL_NO_": "102504013700", "Tax_Legal_": "BONNE ESPERANCE 2-22 WEST END QTR", "Name": "JOSEPH, SR., STEVEN A. & CHARMAINE M.", "Address": "PO Box 306565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.674317691, "SHAPE_Area": 2673.6162300400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353057.037900000810623, 258310.075300000607967 ], [ 353006.36429999768734, 258295.095100000500679 ], [ 353003.103100001811981, 258299.290300000458956 ], [ 352998.182499997317791, 258308.960299998521805 ], [ 352996.535700000822544, 258312.957600001245737 ], [ 352994.04839999973774, 258320.958799999207258 ], [ 352993.209700003266335, 258324.751600001007318 ], [ 352992.358499996364117, 258330.021999999880791 ], [ 352992.340499997138977, 258332.132800001651049 ], [ 352993.870399996638298, 258341.855599999427795 ], [ 352999.457099996507168, 258348.656300000846386 ], [ 353003.467000000178814, 258351.222300000488758 ], [ 353007.489600002765656, 258352.310699999332428 ], [ 353021.193300001323223, 258352.844999998807907 ], [ 353043.807800002396107, 258348.597100000828505 ], [ 353045.447400003671646, 258345.444200001657009 ], [ 353048.006599999964237, 258328.999800000339746 ], [ 353048.841700002551079, 258325.629099998623133 ], [ 353051.316399998962879, 258319.105500001460314 ], [ 353052.952399998903275, 258316.374699998646975 ], [ 353057.037900000810623, 258310.075300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00423751, "LATITUDE": 18.35466004, "OBJECTID_1": 1874, "PARCEL_NO_": "102404030700", "Tax_Legal_": "FORTUNA 39 WEST END QTR", "Name": "MERCED FAMILY TRUST & ROBSON, RUTH", "Address": "6249 Estate Frydenhoj 49", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 136300, "Improved_V": 271900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.86470065100002, "SHAPE_Area": 4319.0964836599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351074.723700001835823, 258245.932799998670816 ], [ 351005.174099996685982, 258269.639299999922514 ], [ 350997.766199998557568, 258287.310499999672174 ], [ 351032.851999998092651, 258333.616099998354912 ], [ 351072.461999997496605, 258322.118999999016523 ], [ 351070.179700002074242, 258306.057199999690056 ], [ 351068.754100002348423, 258284.09180000051856 ], [ 351070.499799996614456, 258268.485199999064207 ], [ 351074.723700001835823, 258245.932799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98596302, "LATITUDE": 18.35479795, "OBJECTID_1": 2101, "PARCEL_NO_": "102504012800", "Tax_Legal_": "BONNE ESPERANCE 2-18 WEST END QTR", "Name": "FARES M QBEISI and FATIMA M JAMIL", "Address": "6661 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72800, "Improved_V": 607200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.47713062899999, "SHAPE_Area": 1642.3282457299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352999.159599997103214, 258288.91440000012517 ], [ 352988.747699998319149, 258280.596599999815226 ], [ 352954.501400001347065, 258325.06810000166297 ], [ 352937.374600000679493, 258347.725999999791384 ], [ 352984.979400001466274, 258344.315999999642372 ], [ 352983.510600000619888, 258327.416499998420477 ], [ 352985.196999996900558, 258318.775400001555681 ], [ 352990.979599997401237, 258302.568599998950958 ], [ 352999.159599997103214, 258288.91440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00219723, "LATITUDE": 18.35482009, "OBJECTID_1": 1900, "PARCEL_NO_": "102404040800", "Tax_Legal_": "FORTUNA 77-26 WEST END QTR", "Name": "PEETS, ERICA", "Address": "2243 Rosier Rd", "City": "Augusta", "State": "Georgia", "Zip": 30906, "Country": "United States", "Land_Value": 59100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.01897017100001, "SHAPE_Area": 2119.5092071899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351288.839599996805191, 258290.326099999248981 ], [ 351238.848200000822544, 258289.916900001466274 ], [ 351238.814099997282028, 258293.927400000393391 ], [ 351239.607799999415874, 258295.41160000115633 ], [ 351234.712399996817112, 258302.126499999314547 ], [ 351225.900499999523163, 258295.299400001764297 ], [ 351227.239799998700619, 258327.396600000560284 ], [ 351275.579000003635883, 258332.436299998313189 ], [ 351288.839599996805191, 258290.326099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98218279, "LATITUDE": 18.3547686, "OBJECTID_1": 2640, "PARCEL_NO_": "102603033100", "Tax_Legal_": "SANTA MARIA 4B-40 WEST END QTR.", "Name": "FERGUS, ASHMAE T", "Address": "PO Box 7883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38200, "Improved_V": 625900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.76414454299999, "SHAPE_Area": 1247.1073112700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353391.479599997401237, 258333.710799999535084 ], [ 353374.084100000560284, 258293.249600000679493 ], [ 353350.604000002145767, 258304.456399999558926 ], [ 353369.577899999916553, 258348.941399998962879 ], [ 353380.097699999809265, 258344.594500001519918 ], [ 353381.719300001859665, 258343.552299998700619 ], [ 353387.399400003254414, 258339.376899998635054 ], [ 353391.479599997401237, 258333.710799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97488007, "LATITUDE": 18.354783, "OBJECTID_1": 2592, "PARCEL_NO_": "102603021900", "Tax_Legal_": "2D CROWN & HAWK NO.3B SOUTHSIDE QTR.", "Name": "MCCAMMON, SCOTT A. & PATTI J.", "Address": "12871 State Hwy", "City": "Noel", "State": "Missouri", "Zip": 64854, "Country": "United States", "Land_Value": 51300, "Improved_V": 162500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.448742767, "SHAPE_Area": 1783.98324288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354159.7820999994874, 258353.297899998724461 ], [ 354161.883799999952316, 258295.897700000554323 ], [ 354135.979299999773502, 258307.717999998480082 ], [ 354126.027400001883507, 258312.33219999819994 ], [ 354121.593400001525879, 258352.454700000584126 ], [ 354132.369199998676777, 258352.862399999052286 ], [ 354159.7820999994874, 258353.297899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00274125, "LATITUDE": 18.35476488, "OBJECTID_1": 1899, "PARCEL_NO_": "102404040700", "Tax_Legal_": "FORTUNA 77-25 WEST END QTR", "Name": "GUMBS, LYNETTE", "Address": "PO Box 10885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68500, "Improved_V": 169000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.80668231000001, "SHAPE_Area": 2233.80292457 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351199.470200002193451, 258274.184799998998642 ], [ 351161.352300003170967, 258299.837400000542402 ], [ 351162.941600002348423, 258302.5945999994874 ], [ 351166.933600001037121, 258307.271299999207258 ], [ 351178.151799999177456, 258315.595800001174212 ], [ 351185.343900002539158, 258323.254000000655651 ], [ 351227.239799998700619, 258327.396600000560284 ], [ 351225.900499999523163, 258295.299400001764297 ], [ 351199.470200002193451, 258274.184799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97987771, "LATITUDE": 18.35471216, "OBJECTID_1": 2567, "PARCEL_NO_": "102603013300", "Tax_Legal_": "PEARL 37-31 S S QTR", "Name": "FREEMAN, ERIC A.", "Address": "PO Box 12343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55600, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.84016923199999, "SHAPE_Area": 1242.93915186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353644.890000000596046, 258308.975999999791384 ], [ 353611.14360000193119, 258294.767599999904633 ], [ 353607.86259999871254, 258301.284600000828505 ], [ 353600.546499997377396, 258308.190900001674891 ], [ 353594.070799998939037, 258311.093199998140335 ], [ 353590.793399997055531, 258317.188099998980761 ], [ 353612.346199996769428, 258342.906800001859665 ], [ 353622.930799998342991, 258330.961100000888109 ], [ 353629.458599999547005, 258321.9375 ], [ 353638.399999998509884, 258313.566899999976158 ], [ 353644.890000000596046, 258308.975999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97924773, "LATITUDE": 18.35458753, "OBJECTID_1": 2559, "PARCEL_NO_": "102603012400", "Tax_Legal_": "PEARL 37-25 S S QTR", "Name": "HATCHETTE, EDWIN E", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94800, "Improved_V": 145900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.87827509799999, "SHAPE_Area": 2353.3698628699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353657.8108000010252, 258306.759700000286102 ], [ 353685.729699999094009, 258342.451900001615286 ], [ 353712.580700002610683, 258314.1739999987185 ], [ 353698.241499997675419, 258293.580600000917912 ], [ 353675.135399997234344, 258260.883099999278784 ], [ 353656.342100001871586, 258289.860199999064207 ], [ 353659.520499996840954, 258295.374600000679493 ], [ 353658.645900003612041, 258303.388999998569489 ], [ 353657.8108000010252, 258306.759700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504018500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98778236, "LATITUDE": 18.35463908, "OBJECTID_1": 2154, "PARCEL_NO_": "102504018500", "Tax_Legal_": "BONNE ESPERANCE 25A WEST END QTR.", "Name": "SOOKLAL, MYROON & ROHAN", "Address": "PO Box 304654", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034654, "Country": "United States", "Land_Value": 66800, "Improved_V": 352000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.454120211, "SHAPE_Area": 1963.08417375 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352813.538699999451637, 258307.238000001758337 ], [ 352757.425899997353554, 258268.148600000888109 ], [ 352749.915600001811981, 258297.851300001144409 ], [ 352749.087700001895428, 258300.377700001001358 ], [ 352800.411200001835823, 258333.728300001472235 ], [ 352813.538699999451637, 258307.238000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504017400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9907746, "LATITUDE": 18.35465447, "OBJECTID_1": 2145, "PARCEL_NO_": "102504017400", "Tax_Legal_": "BONNE ESPERANCE 18A-3 WEST END QTR", "Name": "RAFSI, CASARI", "Address": "PO Box 304518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78200, "Improved_V": 148600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.51690616900001, "SHAPE_Area": 2039.4222328200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352503.022100001573563, 258314.829100001603365 ], [ 352479.799099996685982, 258295.851700000464916 ], [ 352461.487700000405312, 258268.25959999859333 ], [ 352451.738200001418591, 258276.834699999541044 ], [ 352448.496799997985363, 258278.708000000566244 ], [ 352447.67790000140667, 258280.178899999707937 ], [ 352427.390600003302097, 258295.211599998176098 ], [ 352467.429300002753735, 258328.047699999064207 ], [ 352503.022100001573563, 258314.829100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98091098, "LATITUDE": 18.3547107, "OBJECTID_1": 2633, "PARCEL_NO_": "102603032400", "Tax_Legal_": "4B-33SANTA MARIA WEST END QTR.", "Name": "GIBSON, EVERTON", "Address": "PO Box 4301", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.42302715299999, "SHAPE_Area": 1272.13039637 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353532.850400000810623, 258303.625999998301268 ], [ 353501.485100001096725, 258293.870099999010563 ], [ 353491.622299998998642, 258315.743099998682737 ], [ 353470.579099997878075, 258324.859000001102686 ], [ 353498.719099998474121, 258334.588500000536442 ], [ 353523.801100000739098, 258324.661299999803305 ], [ 353532.850400000810623, 258303.625999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98196304, "LATITUDE": 18.3546345, "OBJECTID_1": 2641, "PARCEL_NO_": "102603033200", "Tax_Legal_": "SANTA MARIA 4B-41 No.1 WESTEND QTR.", "Name": "SMITH, LETISHMA", "Address": "PO Box 8657", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.76088939300001, "SHAPE_Area": 1175.62063145 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353416.608300000429153, 258318.2956000007689 ], [ 353399.1841000020504, 258281.211599998176098 ], [ 353374.084100000560284, 258293.249600000679493 ], [ 353391.479599997401237, 258333.710799999535084 ], [ 353395.538099996745586, 258330.577599998563528 ], [ 353401.229000002145767, 258325.135800000280142 ], [ 353407.711900003254414, 258321.38910000026226 ], [ 353416.608300000429153, 258318.2956000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-148", "ACRE": ".55", "LONGITUDE": -65.01064395, "LATITUDE": 18.35453555, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 398.241968864, "SHAPE_Area": 2486.3018852700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350345.189000003039837, 258219.0636 ], [ 350363.277400001883507, 258272.8293999992311 ], [ 350327.691799998283386, 258285.20380000025034 ], [ 350295.406900003552437, 258288.739199999719858 ], [ 350340.434500001370907, 258303.884300000965595 ], [ 350343.64360000193119, 258305.810400001704693 ], [ 350407.719899997115135, 258262.005199998617172 ], [ 350395.907499998807907, 258228.766800001263618 ], [ 350366.542199999094009, 258268.212099999189377 ], [ 350349.234899997711182, 258217.407999999821186 ], [ 350345.189000003039837, 258219.0636 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00340551, "LATITUDE": 18.35453946, "OBJECTID_1": 1902, "PARCEL_NO_": "102404041000", "Tax_Legal_": "77-4 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "WHEATLEY, HENRY U. , TRUSTEE", "Address": "PO Box 1195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47400, "Improved_V": 217900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.46515713, "SHAPE_Area": 1508.20867331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351135.220499999821186, 258243.683699999004602 ], [ 351109.351999998092651, 258251.282400000840425 ], [ 351121.045699998736382, 258298.451999999582767 ], [ 351126.580200001597404, 258311.374000001698732 ], [ 351151.667599998414516, 258300.8136 ], [ 351141.35639999806881, 258280.675299998372793 ], [ 351139.77250000089407, 258277.284800000488758 ], [ 351137.409299999475479, 258270.721599999815226 ], [ 351136.626400001347065, 258267.971000000834465 ], [ 351135.085699997842312, 258259.514600001275539 ], [ 351135.220499999821186, 258243.683699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604010900", "MAP": null, "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.97174572, "LATITUDE": 18.35424227, "OBJECTID_1": 2654, "PARCEL_NO_": "102604010900", "Tax_Legal_": "CROWN & HAWK 1 S S QTR", "Name": "SILCOTT CONST'TION ENTERPRISES", "Address": "PO Box 11179", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 294500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 677.009910709, "SHAPE_Area": 26547.681220300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354593.883900001645088, 258320.964899998158216 ], [ 354563.521999999880791, 258193.427000001072884 ], [ 354546.549900002777576, 258197.932100001722574 ], [ 354530.410999998450279, 258199.277699999511242 ], [ 354504.628799997270107, 258196.744699999690056 ], [ 354481.989100001752377, 258203.947599999606609 ], [ 354447.182800002396107, 258219.494800001382828 ], [ 354439.098099999129772, 258221.96169999986887 ], [ 354393.910400003194809, 258225.602699998766184 ], [ 354345.47240000218153, 258232.1722999997437 ], [ 354367.410700000822544, 258307.290100000798702 ], [ 354367.306500002741814, 258319.532699998468161 ], [ 354438.886600002646446, 258341.438999999314547 ], [ 354461.49040000140667, 258338.457600001245737 ], [ 354593.883900001645088, 258320.964899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98613775, "LATITUDE": 18.35450039, "OBJECTID_1": 2116, "PARCEL_NO_": "102504014300", "Tax_Legal_": "2-14 BONNE ESPERANCE WEST END QUARTER", "Name": "DEXTER A & KARLA HAMPTON SASSO TRUST", "Address": "PO Box 303552", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52700, "Improved_V": 278900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.45604527500001, "SHAPE_Area": 2443.2415122299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352988.747699998319149, 258280.596599999815226 ], [ 352955.899300001561642, 258255.629799999296665 ], [ 352947.77139999717474, 258263.162599999457598 ], [ 352934.789499998092651, 258272.555599998682737 ], [ 352916.957099996507168, 258283.386500000953674 ], [ 352954.501400001347065, 258325.06810000166297 ], [ 352988.747699998319149, 258280.596599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00370518, "LATITUDE": 18.35455124, "OBJECTID_1": 1901, "PARCEL_NO_": "102404040900", "Tax_Legal_": "FORTUNA 77-3 WEST END QTR", "Name": "JOSEPH, AMY & CALLWOOD, STEPHANIE", "Address": "759 Lincoln Pl", "City": "Brooklyn", "State": "New York", "Zip": 11216, "Country": "United States", "Land_Value": 77400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.16779776300001, "SHAPE_Area": 1929.72567807 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351109.351999998092651, 258251.282400000840425 ], [ 351084.386900000274181, 258247.489500001072884 ], [ 351078.489200003445148, 258277.205400001257658 ], [ 351079.880599997937679, 258303.18129999935627 ], [ 351079.826700001955032, 258309.513700000941753 ], [ 351121.045699998736382, 258298.451999999582767 ], [ 351109.351999998092651, 258251.282400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504018400", "MAP": "F9-3731-T79", "PARCEL_NAM": "5D", "ACRE": "0.50", "LONGITUDE": -64.99004027, "LATITUDE": 18.35461675, "OBJECTID_1": 2153, "PARCEL_NO_": "102504018400", "Tax_Legal_": "BONNE ESPERANCE 5D WEST END QTR.", "Name": "MATTHIAS, WILMA G", "Address": "10107 Brookhaven Ln", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20772, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.04028671899999, "SHAPE_Area": 753.42300536300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352530.702899999916553, 258283.813799999654293 ], [ 352534.6570999994874, 258292.923200000077486 ], [ 352524.929200001060963, 258298.965300001204014 ], [ 352521.626599997282028, 258308.0152000002563 ], [ 352517.505199998617172, 258318.536200001835823 ], [ 352570.143899999558926, 258292.158100001513958 ], [ 352560.505900003015995, 258287.646299999207258 ], [ 352550.047200001776218, 258284.816500000655651 ], [ 352530.702899999916553, 258283.813799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-5601-T93", "PARCEL_NAM": "116", "ACRE": "14.1130", "LONGITUDE": -65.0223811, "LATITUDE": 18.35320487, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1775.6108957, "SHAPE_Area": 60516.4737083 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349334.662900000810623, 258141.554200001060963 ], [ 349367.201399996876717, 258108.256700001657009 ], [ 349347.936200000345707, 258097.966499999165535 ], [ 349334.262999996542931, 258093.843800000846386 ], [ 349319.756599999964237, 258092.880699999630451 ], [ 349288.304999999701977, 258093.256599999964237 ], [ 349283.476099997758865, 258092.16160000115633 ], [ 349277.059799998998642, 258088.098299998790026 ], [ 349271.483900003135204, 258080.031100001186132 ], [ 349269.118900001049042, 258073.679000001400709 ], [ 349264.460900001227856, 258052.531500000506639 ], [ 349263.722900003194809, 258044.503899998962879 ], [ 349263.91889999806881, 258021.496300000697374 ], [ 349266.479900002479553, 258004.840900000184774 ], [ 349267.413900002837181, 257989.86089999973774 ], [ 349266.65429999679327, 257984.366200000047684 ], [ 349264.2820999994874, 257978.858399998396635 ], [ 349257.885600000619888, 257972.473200000822544 ], [ 349250.652199998497963, 257969.669799998402596 ], [ 349237.744000002741814, 257970.408500000834465 ], [ 349222.395199999213219, 257973.660399999469519 ], [ 349212.681699998676777, 257978.013799998909235 ], [ 349023.270999997854233, 258062.589800000190735 ], [ 349018.41330000013113, 258064.872099999338388 ], [ 348991.675499998033047, 258079.852000001817942 ], [ 348981.132299996912479, 258086.942800000309944 ], [ 348964.891000002622604, 258100.319899998605251 ], [ 348958.415299996733665, 258103.222199998795986 ], [ 348951.144100002944469, 258104.851399999111891 ], [ 348940.674599997699261, 258103.288100000470877 ], [ 348917.379699997603893, 258092.753899998962879 ], [ 348912.554399996995926, 258091.236699998378754 ], [ 348902.101099997758865, 258087.773699998855591 ], [ 348886.788400001823902, 258086.804000001400709 ], [ 348862.59179999679327, 258087.450300000607967 ], [ 348841.645700000226498, 258085.167899999767542 ], [ 348756.324000000953674, 258067.15989999845624 ], [ 348696.723399996757507, 258058.861699998378754 ], [ 348690.289099998772144, 258056.909200001507998 ], [ 348678.241200000047684, 258051.32209999859333 ], [ 348677.416900001466274, 258053.426300000399351 ], [ 348685.440399996936321, 258058.136100001633167 ], [ 348699.108199998736382, 258062.892000000923872 ], [ 348711.15429999679327, 258068.690099999308586 ], [ 348725.610399998724461, 258075.563400000333786 ], [ 348736.839400000870228, 258082.621399998664856 ], [ 348746.462999999523163, 258088.821899998933077 ], [ 348749.668499998748302, 258091.170099999755621 ], [ 348768.892300002276897, 258106.315099999308586 ], [ 348786.665399998426437, 258102.449799999594688 ], [ 348789.087899997830391, 258102.047400001436472 ], [ 348810.077200002968311, 258099.263900000602007 ], [ 348838.316100001335144, 258097.384100001305342 ], [ 348860.081200003623962, 258098.195500001311302 ], [ 348889.07599999755621, 258102.232500001788139 ], [ 348895.519299998879433, 258103.129599999636412 ], [ 348926.0962999984622, 258110.768199998885393 ], [ 348950.222699999809265, 258118.353900000452995 ], [ 348961.4679000005126, 258123.512200001627207 ], [ 348991.18639999628067, 258137.265399999916553 ], [ 349024.081600002944469, 258156.744100000709295 ], [ 349035.298000000417233, 258165.279699999839067 ], [ 349054.523699998855591, 258180.213599998503923 ], [ 349062.522100001573563, 258187.878400001674891 ], [ 349064.129299998283386, 258188.524900000542402 ], [ 349068.121299996972084, 258193.20160000026226 ], [ 349069.728500001132488, 258193.848000001162291 ], [ 349091.292199999094009, 258218.300299998372793 ], [ 349102.468999996781349, 258231.479499999433756 ], [ 349103.255599997937679, 258233.80799999833107 ], [ 349127.943800002336502, 258270.107099998742342 ], [ 349138.251400001347065, 258290.667500000447035 ], [ 349189.193000003695488, 258274.197000000625849 ], [ 349253.624600000679493, 258094.028200000524521 ], [ 349318.6283999979496, 258130.657200001180172 ], [ 349334.662900000810623, 258141.554200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "M", "ACRE": null, "LONGITUDE": -65.01755659, "LATITUDE": 18.35476604, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.381124584399998, "SHAPE_Area": 41.36044357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349637.376800000667572, 258292.641699999570847 ], [ 349636.622699998319149, 258286.513799998909235 ], [ 349625.265900000929832, 258294.442400000989437 ], [ 349635.756999999284744, 258293.472800001502037 ], [ 349637.376800000667572, 258292.641699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98950681, "LATITUDE": 18.35443875, "OBJECTID_1": 2078, "PARCEL_NO_": "102504010300", "Tax_Legal_": "5 ESTATE BONNE ESPERANCE WEST END QTR", "Name": "Roberts, Lloyd V.,Leon V.,Lola V. Roberts-Richards", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 182400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.015849516, "SHAPE_Area": 3986.6840769300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352636.394500002264977, 258277.0793999992311 ], [ 352622.139899998903275, 258246.56529999896884 ], [ 352605.972199998795986, 258251.288100000470877 ], [ 352583.375699996948242, 258253.425200000405312 ], [ 352543.785499997437, 258262.600400000810623 ], [ 352532.462999999523163, 258266.518500000238419 ], [ 352525.170199997723103, 258270.680700000375509 ], [ 352520.292700000107288, 258275.284800000488758 ], [ 352527.553099997341633, 258274.922100000083447 ], [ 352542.07039999961853, 258274.618700001388788 ], [ 352553.342600002884865, 258276.610800001770258 ], [ 352570.233800001442432, 258281.604200001806021 ], [ 352584.668300002813339, 258291.010400000959635 ], [ 352591.070200003683567, 258296.76240000128746 ], [ 352596.669399999082088, 258302.085499998182058 ], [ 352600.666799999773502, 258306.129000000655651 ], [ 352606.237300001084805, 258314.829500000923872 ], [ 352607.821199998259544, 258318.219900000840425 ], [ 352638.543799996376038, 258308.761100001633167 ], [ 352636.394500002264977, 258277.0793999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98121133, "LATITUDE": 18.35463365, "OBJECTID_1": 2632, "PARCEL_NO_": "102603032300", "Tax_Legal_": "SANTA MARIA ESTATE 4B-32 No.1 WESTEND QTR", "Name": "RANDOLPH, EVANTON W. & SMITH, ROS", "Address": "394-323 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36300, "Improved_V": 90400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.70444985699999, "SHAPE_Area": 1277.2364951899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353470.579099997878075, 258324.859000001102686 ], [ 353491.622299998998642, 258315.743099998682737 ], [ 353501.485100001096725, 258293.870099999010563 ], [ 353474.140600003302097, 258285.413600001484156 ], [ 353461.905699998140335, 258301.778799999505281 ], [ 353452.9679000005126, 258309.727200001478195 ], [ 353441.627400003373623, 258315.756099998950958 ], [ 353441.598600000143051, 258319.133400000631809 ], [ 353470.579099997878075, 258324.859000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504017300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99047206, "LATITUDE": 18.3545162, "OBJECTID_1": 2144, "PARCEL_NO_": "102504017300", "Tax_Legal_": "BONNE ESPERANCE 18A-2 WEST END QTR", "Name": "DONOVAN, SR. , MAURICE & RACHAE", "Address": "PALM STRADE 16B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66800, "Improved_V": 258900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.12832712700001, "SHAPE_Area": 2023.16965104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352503.022100001573563, 258314.829100001603365 ], [ 352521.626599997282028, 258308.0152000002563 ], [ 352524.929200001060963, 258298.965300001204014 ], [ 352534.6570999994874, 258292.923200000077486 ], [ 352530.702899999916553, 258283.813799999654293 ], [ 352512.953199997544289, 258284.935100000351667 ], [ 352508.943199999630451, 258282.369100000709295 ], [ 352506.540500000119209, 258280.449599999934435 ], [ 352490.531099997460842, 258266.597500000149012 ], [ 352480.192900002002716, 258249.625399999320507 ], [ 352476.112800002098083, 258255.291499998420477 ], [ 352465.549800001084805, 258264.704300001263618 ], [ 352461.487700000405312, 258268.25959999859333 ], [ 352479.799099996685982, 258295.851700000464916 ], [ 352503.022100001573563, 258314.829100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98170652, "LATITUDE": 18.35450908, "OBJECTID_1": 2642, "PARCEL_NO_": "102603033300", "Tax_Legal_": "SANTA MARIA 4B-42 WEST END QTR.", "Name": "FRANCIS, ADRIAN E", "Address": "PO Box 11193", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46400, "Improved_V": 201500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.184603103, "SHAPE_Area": 1299.0209632599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353444.955099999904633, 258303.750999998301268 ], [ 353428.331799998879433, 258267.30689999833703 ], [ 353399.1841000020504, 258281.211599998176098 ], [ 353416.608300000429153, 258318.2956000007689 ], [ 353418.228100001811981, 258317.464400000870228 ], [ 353444.955099999904633, 258303.750999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00304298, "LATITUDE": 18.35438954, "OBJECTID_1": 1903, "PARCEL_NO_": "102404041100", "Tax_Legal_": "FORTUNA 77-24 WEST END QTR", "Name": "GONZALES, RICKY G. & HEIDI A.", "Address": "3108 Estate Bethesda", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80000, "Improved_V": 40800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.53293146199999, "SHAPE_Area": 2445.1166379000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351185.330600000917912, 258230.16160000115633 ], [ 351143.353799998760223, 258235.517599999904633 ], [ 351143.933499999344349, 258262.120099999010563 ], [ 351148.663500003516674, 258274.824499998241663 ], [ 351159.755900003015995, 258297.924400001764297 ], [ 351161.352300003170967, 258299.837400000542402 ], [ 351199.470200002193451, 258274.184799998998642 ], [ 351188.243000000715256, 258266.915800001472235 ], [ 351185.851000003516674, 258263.729800000786781 ], [ 351186.095600001513958, 258235.02309999987483 ], [ 351185.330600000917912, 258230.16160000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99134346, "LATITUDE": 18.35444535, "OBJECTID_1": 2066, "PARCEL_NO_": "102503011400", "Tax_Legal_": "BONNE ESPERANCE 9E WEST END QTR", "Name": "SAUNDERS, ELTON", "Address": "17590 35th Pl N", "City": "Loxahatchee", "State": "Florida", "Zip": 33470, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.647419872, "SHAPE_Area": 1804.45215452 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352430.734499998390675, 258281.306800000369549 ], [ 352418.103200003504753, 258249.53940000012517 ], [ 352397.061800003051758, 258258.444200001657009 ], [ 352376.00959999859333, 258268.615499999374151 ], [ 352394.205899998545647, 258309.716600000858307 ], [ 352399.891400001943111, 258304.907999999821186 ], [ 352430.734499998390675, 258281.306800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01742737, "LATITUDE": 18.35452856, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.050022981, "SHAPE_Area": 508.066883674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349636.622699998319149, 258286.513799998909235 ], [ 349638.242499999701977, 258285.682700000703335 ], [ 349644.791900001466274, 258274.1261 ], [ 349651.289099998772144, 258268.690900001674891 ], [ 349652.9070999994874, 258268.070799998939037 ], [ 349657.761200003325939, 258266.210700001567602 ], [ 349670.67119999974966, 258265.260899998247623 ], [ 349669.897200003266335, 258261.454900000244379 ], [ 349662.654799997806549, 258259.706900000572205 ], [ 349651.406000003218651, 258254.970800001174212 ], [ 349636.091499999165535, 258254.212099999189377 ], [ 349634.44650000333786, 258257.998399998992682 ], [ 349636.622699998319149, 258286.513799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403043600", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-48", "ACRE": null, "LONGITUDE": -65.01142618, "LATITUDE": 18.35440093, "OBJECTID_1": 1798, "PARCEL_NO_": "102403043600", "Tax_Legal_": "FORTUNA 3C-48 WESTEND QTR.", "Name": "KING, SHAWN D.", "Address": "7 Kirwin Ter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.43495825100001, "SHAPE_Area": 1990.14603313 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350290.303999997675419, 258225.158300001174212 ], [ 350278.375900000333786, 258220.443500000983477 ], [ 350253.810099996626377, 258274.56870000064373 ], [ 350261.637100003659725, 258277.274900000542402 ], [ 350295.406900003552437, 258288.73930000141263 ], [ 350300.755500003695488, 258228.832400001585484 ], [ 350294.322999998927116, 258226.668800000101328 ], [ 350290.303999997675419, 258225.158300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403043700", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-47", "ACRE": null, "LONGITUDE": -65.01113637, "LATITUDE": 18.35443037, "OBJECTID_1": 1799, "PARCEL_NO_": "102403043700", "Tax_Legal_": "FORTUNA ESTATE 3C-47 No8 WESTEND QTR", "Name": "BAGHERIAN, MELISSA C.", "Address": "5600 Sundown Rd", "City": "Gaithersburg", "State": "Maryland", "Zip": 20882, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.17153572000001, "SHAPE_Area": 1613.7945388600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350327.691799998283386, 258285.20380000025034 ], [ 350324.054099999368191, 258227.347899999469519 ], [ 350318.494300000369549, 258228.977600000798702 ], [ 350309.619499996304512, 258229.53830000013113 ], [ 350306.259400002658367, 258229.270700000226498 ], [ 350300.755500003695488, 258228.832400001585484 ], [ 350295.406900003552437, 258288.73930000141263 ], [ 350327.691799998283386, 258285.20380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98514131, "LATITUDE": 18.35440271, "OBJECTID_1": 2111, "PARCEL_NO_": "102504013800", "Tax_Legal_": "BONNE ESPERANCE 2-23 WEST END QTR", "Name": "LEWIS, KIM A", "Address": "PO Box 6253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 74600, "Improved_V": 291100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.88832179600001, "SHAPE_Area": 3684.0519553200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353071.380000002682209, 258235.676699999719858 ], [ 353016.142499998211861, 258283.142799999564886 ], [ 353009.630900003015995, 258290.266699999570847 ], [ 353006.36429999768734, 258295.095100000500679 ], [ 353057.037900000810623, 258310.075300000607967 ], [ 353063.547700002789497, 258303.162500001490116 ], [ 353070.034199997782707, 258298.993700001388788 ], [ 353072.463899999856949, 258297.747000001370907 ], [ 353078.129699997603893, 258295.260299999266863 ], [ 353108.837899997830391, 258287.490100000053644 ], [ 353071.380000002682209, 258235.676699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98762787, "LATITUDE": 18.35429292, "OBJECTID_1": 2076, "PARCEL_NO_": "102504010100", "Tax_Legal_": "BONNE ESPERANCE 25 WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 224800, "Improved_V": 72600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.25935639299999, "SHAPE_Area": 3860.4752105500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352757.425899997353554, 258268.148600000888109 ], [ 352813.538699999451637, 258307.238000001758337 ], [ 352823.343999996781349, 258292.119500000029802 ], [ 352842.121100001037121, 258265.042100001126528 ], [ 352784.395700000226498, 258225.939599998295307 ], [ 352775.558600001037121, 258222.067499998956919 ], [ 352770.713500000536442, 258222.872299998998642 ], [ 352768.273000001907349, 258225.385400000959635 ], [ 352757.425899997353554, 258268.148600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604014400", "MAP": "D9-8037-T007", "PARCEL_NAM": "2BC", "ACRE": ".59", "LONGITUDE": -64.97308543, "LATITUDE": 18.35431027, "OBJECTID_1": 2688, "PARCEL_NO_": "102604014400", "Tax_Legal_": "2Bc CROWN & HAWK 3B SOUTHSIDE QTR", "Name": "KRAL JUNIOR FAMILY TRUST", "Address": "PO Box 304429", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.066432706, "SHAPE_Area": 3519.5869335299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354303.629100002348423, 258237.90819999948144 ], [ 354322.708200000226498, 258255.688700001686811 ], [ 354327.57660000026226, 258277.913800001144409 ], [ 354270.245099999010563, 258286.489900000393391 ], [ 354367.306500002741814, 258319.532699998468161 ], [ 354367.410700000822544, 258307.290100000798702 ], [ 354345.47240000218153, 258232.1722999997437 ], [ 354303.629100002348423, 258237.90819999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403043800", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-46", "ACRE": null, "LONGITUDE": -65.01086539000001, "LATITUDE": 18.35437425, "OBJECTID_1": 1800, "PARCEL_NO_": "102403043800", "Tax_Legal_": "FORTUNA 3C-46 WESTEND QTR.", "Name": "WEBSTER, JEAN K", "Address": "PO Box 306211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32000, "Improved_V": 96000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.09947507300001, "SHAPE_Area": 1689.9326161 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350363.277400001883507, 258272.8293999992311 ], [ 350345.189000003039837, 258219.0636 ], [ 350331.43129999935627, 258224.861600000411272 ], [ 350329.0033999979496, 258225.897199999541044 ], [ 350324.054099999368191, 258227.347899999469519 ], [ 350327.691799998283386, 258285.20380000025034 ], [ 350363.277400001883507, 258272.8293999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98060518, "LATITUDE": 18.35441824, "OBJECTID_1": 2636, "PARCEL_NO_": "102603032700", "Tax_Legal_": "SANTA MARIA 4B-36 WESTEND QTR. #1", "Name": "BAA, JUANA M. & ORLANDO J", "Address": "PO Box 305988", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.059114921, "SHAPE_Area": 1268.4700789200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353559.393899999558926, 258311.442600000649691 ], [ 353545.328100003302097, 258258.7652000002563 ], [ 353542.9037000015378, 258259.378699999302626 ], [ 353527.556800000369549, 258262.419399999082088 ], [ 353515.460299998521805, 258262.531500000506639 ], [ 353532.850400000810623, 258303.625999998301268 ], [ 353559.393899999558926, 258311.442600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98036035, "LATITUDE": 18.35431467, "OBJECTID_1": 2637, "PARCEL_NO_": "102603032800", "Tax_Legal_": "4B-37 ESTATE SANTA MARIA #1 WEST END QTR", "Name": "VINCENT, KISHMA ANNE", "Address": "PO Box 502943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39400, "Improved_V": 200700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.277898838, "SHAPE_Area": 1243.96068638 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353579.93299999833107, 258266.858899999409914 ], [ 353588.976800002157688, 258246.456799998879433 ], [ 353545.328100003302097, 258258.7652000002563 ], [ 353559.393899999558926, 258311.442600000649691 ], [ 353562.680299997329712, 258304.292300000786781 ], [ 353579.93299999833107, 258266.858899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404041200", "MAP": null, "PARCEL_NAM": "77-27", "ACRE": "0.90", "LONGITUDE": -65.00227988, "LATITUDE": 18.35434337, "OBJECTID_1": 1904, "PARCEL_NO_": "102404041200", "Tax_Legal_": "FORTUNA 77-27 WEST END QTR", "Name": "GEDDIE, JAMES A", "Address": "1261 Midvale Ave", "City": "Charleston", "State": "South Carolina", "Zip": 29412, "Country": "United States", "Land_Value": 64400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.17600000300001, "SHAPE_Area": 5270.1284164199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351301.279600001871586, 258249.897999998182058 ], [ 351277.955799996852875, 258242.74100000038743 ], [ 351249.972300000488758, 258214.647599998861551 ], [ 351194.907399997115135, 258241.85020000115037 ], [ 351194.747400000691414, 258260.636199999600649 ], [ 351199.565499998629093, 258262.997600000351667 ], [ 351211.588299997150898, 258271.539799999445677 ], [ 351225.99040000140667, 258284.74549999833107 ], [ 351230.016599997878075, 258285.411699999123812 ], [ 351232.442699998617172, 258284.587200000882149 ], [ 351238.848200000822544, 258289.916900001466274 ], [ 351288.839599996805191, 258290.326099999248981 ], [ 351301.279600001871586, 258249.897999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00440451, "LATITUDE": 18.35418633, "OBJECTID_1": 1873, "PARCEL_NO_": "102404030600", "Tax_Legal_": "FORTUNA 40 WEST END QTR", "Name": "E. & C.V. SAUNDERS, MD. REVOCABLE FAMILY TRUST", "Address": "PO Box 7515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 125900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.236588735, "SHAPE_Area": 3827.02409769 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351074.723700001835823, 258245.932799998670816 ], [ 351017.174500003457069, 258186.144499998539686 ], [ 350983.369499996304512, 258273.471599999815226 ], [ 350997.766199998557568, 258287.310499999672174 ], [ 351005.174099996685982, 258269.639299999922514 ], [ 351074.723700001835823, 258245.932799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97972357, "LATITUDE": 18.35447518, "OBJECTID_1": 2563, "PARCEL_NO_": "102603012800", "Tax_Legal_": "PEARL 37-30 S S QTR", "Name": "FREEMAN, ERIC A.", "Address": "PO Box 12343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.24997698599999, "SHAPE_Area": 856.99365404599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353611.14360000193119, 258294.767599999904633 ], [ 353644.890000000596046, 258308.975999999791384 ], [ 353646.515299998223782, 258307.511599998921156 ], [ 353651.394500002264977, 258302.696400001645088 ], [ 353650.64750000089407, 258295.724199999123812 ], [ 353627.498199999332428, 258268.092599999159575 ], [ 353625.079300001263618, 258268.072799999266863 ], [ 353611.14360000193119, 258294.767599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98018171, "LATITUDE": 18.35448209, "OBJECTID_1": 2568, "PARCEL_NO_": "102603013400", "Tax_Legal_": "PEARL ESTATE 37-29 No.2 SOUTHSIDE QTR.", "Name": "Magarita E. Sanchez & Fausto I. Lavandier Taveras", "Address": "PO Box 306888", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036888, "Country": "United States", "Land_Value": 74200, "Improved_V": 500800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.114477638, "SHAPE_Area": 921.75885968299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353562.680299997329712, 258304.292300000786781 ], [ 353576.366099998354912, 258306.9375 ], [ 353580.397600002586842, 258306.970499999821186 ], [ 353588.491300001740456, 258303.448100000619888 ], [ 353592.515699997544289, 258304.325399998575449 ], [ 353599.821099996566772, 258298.685699999332428 ], [ 353602.268799997866154, 258295.328200001269579 ], [ 353604.725500002503395, 258290.915399998426437 ], [ 353579.93299999833107, 258266.858899999409914 ], [ 353562.680299997329712, 258304.292300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98139759, "LATITUDE": 18.35432127, "OBJECTID_1": 2643, "PARCEL_NO_": "102603033400", "Tax_Legal_": "SANTA MARIA 4B-43 WESTEND QTR.", "Name": "GRAHAM, CLIFFORD F", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66200, "Improved_V": 283300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.59248823499999, "SHAPE_Area": 1529.57018821 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353484.845600001513958, 258259.325699999928474 ], [ 353472.052500002086163, 258246.555300001055002 ], [ 353428.331799998879433, 258267.30689999833703 ], [ 353444.955099999904633, 258303.750999998301268 ], [ 353456.326200000941753, 258294.133799999952316 ], [ 353475.906099997460842, 258267.485100001096725 ], [ 353484.845600001513958, 258259.325699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403043500", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-49", "ACRE": null, "LONGITUDE": -65.01172873, "LATITUDE": 18.35425057, "OBJECTID_1": 1797, "PARCEL_NO_": "102403043500", "Tax_Legal_": "FORTUNA 3C-49 WESTEND QTR.", "Name": "AYALA, AUGUSTIN", "Address": "PO Box 9886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34600, "Improved_V": 142300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.42761219100001, "SHAPE_Area": 2068.8637952899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350262.99719999730587, 258212.269200000911951 ], [ 350257.902800001204014, 258207.598000001162291 ], [ 350215.921700000762939, 258240.062300000339746 ], [ 350232.786100000143051, 258256.351599998772144 ], [ 350250.381099998950958, 258273.383099999278784 ], [ 350253.810099996626377, 258274.56870000064373 ], [ 350278.375900000333786, 258220.443500000983477 ], [ 350275.034400001168251, 258219.122699998319149 ], [ 350268.614500001072884, 258215.481600001454353 ], [ 350262.99719999730587, 258212.269200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98092515, "LATITUDE": 18.35440158, "OBJECTID_1": 2635, "PARCEL_NO_": "102603032600", "Tax_Legal_": "SANTA MARIA 4B-35 WEST END QTR.", "Name": "SAUNDERS, CORA G", "Address": "PO Box 11163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.804404949, "SHAPE_Area": 1292.9809475300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353515.460299998521805, 258262.531500000506639 ], [ 353501.751199997961521, 258262.630399998277426 ], [ 353496.904399998486042, 258263.646200001239777 ], [ 353491.234999999403954, 258266.555100001394749 ], [ 353483.116099998354912, 258273.032600000500679 ], [ 353474.140600003302097, 258285.413600001484156 ], [ 353501.485100001096725, 258293.870099999010563 ], [ 353532.850400000810623, 258303.625999998301268 ], [ 353515.460299998521805, 258262.531500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9749206, "LATITUDE": 18.35429855, "OBJECTID_1": 2603, "PARCEL_NO_": "102603023000", "Tax_Legal_": "CROWN & HAWK 2A-1\nSOUTHSIDE QTR.", "Name": "WILSON, CATHERINE", "Address": "8140 Estate Crown & Hawk", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49600, "Improved_V": 74600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.42644553, "SHAPE_Area": 1639.35127519 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354163.584499999880791, 258285.567999999970198 ], [ 354150.249399997293949, 258241.762499999254942 ], [ 354113.683100000023842, 258274.604899998754263 ], [ 354116.87049999833107, 258279.063900001347065 ], [ 354125.538599997758865, 258302.777399998158216 ], [ 354163.584499999880791, 258285.567999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504012500", "MAP": "D9-373-T63", "PARCEL_NAM": "2-12", "ACRE": "0.41", "LONGITUDE": -64.98673921, "LATITUDE": 18.3542686, "OBJECTID_1": 2098, "PARCEL_NO_": "102504012500", "Tax_Legal_": "BONNE ESPERANCE 2-12 WEST END QTR", "Name": "VIALET, JR , FRED & ROSEMARY", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44300, "Improved_V": 119000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.36189466299999, "SHAPE_Area": 1862.4085543399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352921.913699999451637, 258269.494899999350309 ], [ 352885.974899999797344, 258228.670800000429153 ], [ 352871.349799998104572, 258241.638900000602007 ], [ 352870.498499996960163, 258246.909200001507998 ], [ 352871.096199996769428, 258271.401000000536442 ], [ 352871.873700000345707, 258274.78489999845624 ], [ 352873.450400002300739, 258279.019600000232458 ], [ 352878.221699997782707, 258286.869100000709295 ], [ 352884.652500003576279, 258289.24379999935627 ], [ 352891.921899996697903, 258287.825599998235703 ], [ 352921.913699999451637, 258269.494899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98576816000001, "LATITUDE": 18.35421068, "OBJECTID_1": 2115, "PARCEL_NO_": "102504014200", "Tax_Legal_": "BONNE ESPERANCE 2-15 WEST END QTR", "Name": "MORON, PAUL R. & DENISE S", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70200, "Improved_V": 230400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.82531374199999, "SHAPE_Area": 2348.2661890300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353028.427799999713898, 258260.867400001734495 ], [ 352993.271999999880791, 258222.793999999761581 ], [ 352989.211599998176098, 258226.138199999928474 ], [ 352955.899300001561642, 258255.629799999296665 ], [ 352988.747699998319149, 258280.596599999815226 ], [ 352999.159599997103214, 258288.91440000012517 ], [ 353008.934299997985363, 258277.384300000965595 ], [ 353028.427799999713898, 258260.867400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403043900", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-45", "ACRE": ".27", "LONGITUDE": -65.01057542, "LATITUDE": 18.35417972, "OBJECTID_1": 1801, "PARCEL_NO_": "102403043900", "Tax_Legal_": "3C-45 FORTUNA WESTEND QTR.", "Name": "ELOI, JULES & SYLMA", "Address": "P.O. BOX 5698", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33300, "Improved_V": 66500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.09593847799999, "SHAPE_Area": 1512.2930678299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350375.150200001895428, 258204.321199998259544 ], [ 350368.660099998116493, 258208.912099998444319 ], [ 350349.234899997711182, 258217.407999999821186 ], [ 350366.542199999094009, 258268.212099999189377 ], [ 350395.907499998807907, 258228.766800001263618 ], [ 350383.125200003385544, 258214.730000000447035 ], [ 350375.150200001895428, 258204.321199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404032400", "MAP": "G9-1017-T69", "PARCEL_NAM": "41-A", "ACRE": ".96", "LONGITUDE": -65.00475281, "LATITUDE": 18.35391796, "OBJECTID_1": 1891, "PARCEL_NO_": "102404032400", "Tax_Legal_": "41A FORTUNA NO.8. WEST END QTR", "Name": "41A ESTATE FORTUNA TRUST", "Address": "3104 Estate Bethesda", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93900, "Improved_V": 319400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.0976391, "SHAPE_Area": 4860.267404 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351030.359600000083447, 258152.899599999189377 ], [ 351008.686300002038479, 258141.32319999858737 ], [ 350937.684799998998642, 258240.800400000065565 ], [ 350948.937200002372265, 258245.114399999380112 ], [ 350957.765299998223782, 258250.041799999773502 ], [ 350963.373499996960163, 258254.309500001370907 ], [ 350983.369499996304512, 258273.471599999815226 ], [ 351017.174500003457069, 258186.144499998539686 ], [ 351030.359600000083447, 258152.899599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98003436, "LATITUDE": 18.35423708, "OBJECTID_1": 2562, "PARCEL_NO_": "102603012700", "Tax_Legal_": "37-28 ESTATE PEARL No.2 SOUTHSIDE QTR.", "Name": "DAWSON, KIMBALEE K &ROYSTON H JOHNSON", "Address": "PO Box 10802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68000, "Improved_V": 262800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.93259815900001, "SHAPE_Area": 1090.1780693200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353618.664700001478195, 258263.79839999973774 ], [ 353593.90820000320673, 258235.520300000905991 ], [ 353588.976800002157688, 258246.456799998879433 ], [ 353579.93299999833107, 258266.858899999409914 ], [ 353604.725500002503395, 258290.915399998426437 ], [ 353618.664700001478195, 258263.79839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504015600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99083696, "LATITUDE": 18.35412163, "OBJECTID_1": 2127, "PARCEL_NO_": "102504015600", "Tax_Legal_": "BONNE ESPERANCE 9F WEST END QTR", "Name": "CARTER, KENNETH & EMILY", "Address": "Po Box 8394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70200, "Improved_V": 130100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.87533451799999, "SHAPE_Area": 2218.7420301100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352418.103200003504753, 258249.53940000012517 ], [ 352430.734499998390675, 258281.306800000369549 ], [ 352445.345200002193451, 258270.027399998158216 ], [ 352463.215400002896786, 258254.763799998909235 ], [ 352464.847800001502037, 258252.455099999904633 ], [ 352466.465800002217293, 258251.835099998861551 ], [ 352474.60980000346899, 258242.402499999850988 ], [ 352477.894400000572205, 258235.463300000876188 ], [ 352484.398900002241135, 258229.183800000697374 ], [ 352490.080799996852875, 258224.7972999997437 ], [ 352498.181699998676777, 258220.430599998682737 ], [ 352513.552000001072884, 258214.645799998193979 ], [ 352512.778099998831749, 258210.839800000190735 ], [ 352507.952799998223782, 258209.322599999606609 ], [ 352491.817500002682209, 258210.245999999344349 ], [ 352482.122000001370907, 258212.488699998706579 ], [ 352457.007600001990795, 258226.215300001204014 ], [ 352435.105899997055531, 258241.445900000631809 ], [ 352426.198700003325939, 258245.806000001728535 ], [ 352418.103200003504753, 258249.53940000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504017200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99036904, "LATITUDE": 18.35417138, "OBJECTID_1": 2143, "PARCEL_NO_": "102504017200", "Tax_Legal_": "18A-1 BONNE ESPERANCE WEST END QUARTER", "Name": "WALLACE, ROMEL & MURIEL", "Address": "PO Box 10785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65900, "Improved_V": 236100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.557629631, "SHAPE_Area": 1709.64780324 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352523.63849999755621, 258261.1689000017941 ], [ 352531.244099996984005, 258220.278999999165535 ], [ 352513.463899999856949, 258224.988699998706579 ], [ 352511.039599999785423, 258225.602099999785423 ], [ 352494.040500000119209, 258233.273400001227856 ], [ 352485.916199997067451, 258240.384100001305342 ], [ 352483.459499999880791, 258244.796999998390675 ], [ 352480.192900002002716, 258249.625399999320507 ], [ 352490.531099997460842, 258266.597500000149012 ], [ 352506.540500000119209, 258280.449599999934435 ], [ 352506.585400000214577, 258275.172600001096725 ], [ 352508.223200000822544, 258272.230700001120567 ], [ 352511.471900001168251, 258269.513099998235703 ], [ 352518.778999999165535, 258263.662300001829863 ], [ 352523.63849999755621, 258261.1689000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97954351, "LATITUDE": 18.35416639, "OBJECTID_1": 2560, "PARCEL_NO_": "102603012500", "Tax_Legal_": "PEARL 37-26 S S QTR", "Name": "BROWN, JEROME & MADELINE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66900, "Improved_V": 310100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.81931592000001, "SHAPE_Area": 1639.18313653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353647.252499997615814, 258220.969300001859665 ], [ 353625.144000001251698, 258260.473900001496077 ], [ 353629.981899999082088, 258260.5135000012815 ], [ 353633.183799996972084, 258263.284000001847744 ], [ 353656.342100001871586, 258289.860199999064207 ], [ 353675.135399997234344, 258260.883099999278784 ], [ 353647.252499997615814, 258220.969300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9786976, "LATITUDE": 18.35394978, "OBJECTID_1": 2596, "PARCEL_NO_": "102603022300", "Tax_Legal_": "CROWN & HAWK 13A S S QTR", "Name": "CAIBY, L & LV C/O R. USHER", "Address": "801-19 TILDEN ST", "City": "Bronx", "State": "New York", "Zip": 10467, "Country": "United States", "Land_Value": 153900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 490.16607192399999, "SHAPE_Area": 6202.3623355500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353668.729099996387959, 258160.983399998396635 ], [ 353660.716300003230572, 258155.007199998944998 ], [ 353643.695699997246265, 258165.211500000208616 ], [ 353650.894900001585484, 258172.025400001555681 ], [ 353776.482600003480911, 258290.843499999493361 ], [ 353840.204700000584126, 258288.620799999684095 ], [ 353668.729099996387959, 258160.983399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-141", "ACRE": "1.39", "LONGITUDE": -65.01011251, "LATITUDE": 18.35393967, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 397.22264041400001, "SHAPE_Area": 6023.4968587499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350423.726800002157688, 258181.498500000685453 ], [ 350417.952100001275539, 258173.414700001478195 ], [ 350456.363799996674061, 258147.533100001513958 ], [ 350453.07769999653101, 258143.741900000721216 ], [ 350445.864000000059605, 258138.616599999368191 ], [ 350437.820699997246265, 258136.228700000792742 ], [ 350430.562100000679493, 258136.380399998277426 ], [ 350417.621500000357628, 258140.918499998748302 ], [ 350409.516999997198582, 258145.707400001585484 ], [ 350402.994599997997284, 258154.097699999809265 ], [ 350384.935599997639656, 258191.524599999189377 ], [ 350380.02759999781847, 258199.717000000178814 ], [ 350375.150200001895428, 258204.321199998259544 ], [ 350383.125200003385544, 258214.730000000447035 ], [ 350395.907499998807907, 258228.766800001263618 ], [ 350407.719899997115135, 258262.005199998617172 ], [ 350471.474299997091293, 258255.9831000007689 ], [ 350462.721799999475479, 258242.190400000661612 ], [ 350449.194300003349781, 258220.970300000160933 ], [ 350436.458700001239777, 258201.445500001311302 ], [ 350423.726800002157688, 258181.498500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97857252, "LATITUDE": 18.35360975, "OBJECTID_1": 2597, "PARCEL_NO_": "102603022400", "Tax_Legal_": "CROWN & HAWK 13B S S QTR", "Name": "PARKER, CHERYL, T. T. & PARRIS, FAYE", "Address": "PO Box 12084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 182500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 490.20285508900002, "SHAPE_Area": 8090.7237647299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353678.520000003278255, 258147.553599998354912 ], [ 353673.683899998664856, 258147.30290000140667 ], [ 353660.716300003230572, 258155.007199998944998 ], [ 353668.729099996387959, 258160.983399998396635 ], [ 353840.204700000584126, 258288.620799999684095 ], [ 353769.61710000038147, 258150.199000000953674 ], [ 353688.193899996578693, 258147.843800000846386 ], [ 353678.520000003278255, 258147.553599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9768109, "LATITUDE": 18.35300441, "OBJECTID_1": 2581, "PARCEL_NO_": "102603020900", "Tax_Legal_": "14 CROWN & HAWK SOUTHSIDE QUARTER", "Name": "DELAGARDE, AIMEE & OTHERS", "Address": "PO Box 11544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 668600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1900.5343418099999, "SHAPE_Area": 86271.639335400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354241.249799996614456, 258066.455200001597404 ], [ 354246.577500000596046, 258103.651299998164177 ], [ 354244.75450000166893, 258128.334300000220537 ], [ 354252.920100003480911, 258116.36879999935627 ], [ 354260.338799998164177, 258097.431099999696016 ], [ 354264.5033999979496, 258081.844300001859665 ], [ 354269.576800003647804, 258054.232599999755621 ], [ 354269.679300002753735, 258042.201099999248981 ], [ 354264.988899998366833, 258024.853000000119209 ], [ 354263.385300002992153, 258023.784400001168251 ], [ 354260.977099999785423, 258022.498199999332428 ], [ 354256.204000003635883, 258014.859700001776218 ], [ 354250.615500003099442, 258008.270100001245737 ], [ 354242.601000003516674, 258002.504999998956919 ], [ 354231.354000002145767, 257997.557799998670816 ], [ 354225.720600001513958, 257996.245099999010563 ], [ 354220.085400000214577, 257995.143500000238419 ], [ 354203.14919999986887, 257995.427099999040365 ], [ 354197.503200002014637, 257995.592000000178814 ], [ 354189.432899996638298, 257996.370299998670816 ], [ 354174.897699996829033, 257998.784400001168251 ], [ 354126.362499997019768, 258016.752300001680851 ], [ 354119.102099999785423, 258017.115100000053644 ], [ 354113.472300000488758, 258015.380300000309944 ], [ 354099.050399996340275, 258004.496500000357628 ], [ 354091.060999996960163, 257995.776200000196695 ], [ 354084.704000003635883, 257984.747299998998642 ], [ 354078.302000001072884, 257978.995400000363588 ], [ 354072.68299999833107, 257975.994100000709295 ], [ 354064.637900002300739, 257973.817299999296665 ], [ 354051.733300000429153, 257974.133900001645088 ], [ 354032.353000000119209, 257977.352800000458956 ], [ 354013.755699999630451, 257983.322299998253584 ], [ 354000.82769999653101, 257986.38289999961853 ], [ 353987.109600000083447, 257987.537200000137091 ], [ 353949.203900001943111, 257988.282400000840425 ], [ 353919.350599996745586, 257990.360100001096725 ], [ 353880.604400001466274, 257995.109200000762939 ], [ 353839.4087999984622, 258003.426899999380112 ], [ 353820.82039999961853, 258008.340999998152256 ], [ 353814.32320000231266, 258013.776299998164177 ], [ 353762.084399998188019, 258087.864700000733137 ], [ 353754.755699999630451, 258096.248500000685453 ], [ 353688.193899996578693, 258147.843800000846386 ], [ 353769.61710000038147, 258150.199000000953674 ], [ 353840.204700000584126, 258288.620799999684095 ], [ 354013.626599997282028, 258282.440799999982119 ], [ 354116.87049999833107, 258279.063900001347065 ], [ 354113.683100000023842, 258274.604899998754263 ], [ 354036.407600000500679, 258163.99269999936223 ], [ 354023.216399997472763, 258103.300900001078844 ], [ 354010.795500002801418, 258046.837200000882149 ], [ 354067.302100002765656, 258039.700300000607967 ], [ 354122.192500002682209, 258032.97239999845624 ], [ 354173.855800002813339, 258026.429200001060963 ], [ 354219.05969999730587, 258020.8885000012815 ], [ 354252.824100002646446, 258032.986099999397993 ], [ 354241.249799996614456, 258066.455200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403044000", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-41", "ACRE": ".23", "LONGITUDE": -65.00951933, "LATITUDE": 18.35424017, "OBJECTID_1": 1802, "PARCEL_NO_": "102403044000", "Tax_Legal_": "FORTUNA 3C-41 WESTEND QTR.", "Name": "JONES, JUDY L. & DAVID FLEMING DANET", "Address": "PO Box 11984", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28300, "Improved_V": 152000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.81256271500001, "SHAPE_Area": 1053.6932398700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350492.726199999451637, 258222.382100000977516 ], [ 350490.564300000667572, 258216.920299999415874 ], [ 350459.233800001442432, 258236.718800000846386 ], [ 350462.721799999475479, 258242.190400000661612 ], [ 350471.474299997091293, 258255.9831000007689 ], [ 350505.368199996650219, 258252.883000001311302 ], [ 350492.726199999451637, 258222.382100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01724131, "LATITUDE": 18.35418933, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.161914736, "SHAPE_Area": 1085.07326633 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349639.368900001049042, 258248.117199998348951 ], [ 349649.84910000115633, 258248.414099998772144 ], [ 349654.704999998211861, 258246.3429000005126 ], [ 349660.372500002384186, 258243.645100001245737 ], [ 349662.030100002884865, 258238.381299998611212 ], [ 349664.468800000846386, 258236.079199999570847 ], [ 349668.511200003325939, 258234.845800001174212 ], [ 349687.844700001180172, 258237.114900000393391 ], [ 349689.464500002563, 258236.2837999984622 ], [ 349688.731899999082088, 258227.622999999672174 ], [ 349687.1570999994874, 258223.177099999040365 ], [ 349686.442500002682209, 258212.405499998480082 ], [ 349680.850400000810623, 258206.238000001758337 ], [ 349654.130599997937679, 258219.107099998742342 ], [ 349639.368900001049042, 258248.117199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97445979, "LATITUDE": 18.35401161, "OBJECTID_1": 2583, "PARCEL_NO_": "102603021100", "Tax_Legal_": "2-A ESTATE CROWN&HAWK No.3 SOUTHSIDE QTR.", "Name": "NEUBURGER, KLAUS & JACKIE H", "Address": "7945 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 315700, "Improved_V": 233500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.81016213300001, "SHAPE_Area": 3779.36970539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354232.570600003004074, 258233.359200000762939 ], [ 354206.860299997031689, 258222.383000001311302 ], [ 354201.280900001525879, 258214.738000001758337 ], [ 354207.94539999961853, 258189.672400001436472 ], [ 354150.249399997293949, 258241.762499999254942 ], [ 354163.584499999880791, 258285.567999999970198 ], [ 354196.774599999189377, 258270.429800000041723 ], [ 354206.497100003063679, 258265.020899999886751 ], [ 354215.433100000023842, 258257.283599998801947 ], [ 354221.120399996638298, 258252.263900000602007 ], [ 354222.758199997246265, 258249.322000000625849 ], [ 354226.010399997234344, 258246.182199999690056 ], [ 354234.930200003087521, 258240.3445999994874 ], [ 354232.570600003004074, 258233.359200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504014400", "MAP": "D9-373-T63", "PARCEL_NAM": "2-11", "ACRE": "0.51", "LONGITUDE": -64.98647274, "LATITUDE": 18.35404206, "OBJECTID_1": 2117, "PARCEL_NO_": "102504014400", "Tax_Legal_": "BONNE ESPERANCE 2-11 WEST END QTR", "Name": "BLAKE, GWENDOLYN", "Address": "P.O. BOX 4056", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66800, "Improved_V": 231200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.01918772299999, "SHAPE_Area": 2154.6521708300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352951.129699997603893, 258247.569200001657009 ], [ 352916.03320000320673, 258202.530099999159575 ], [ 352885.974899999797344, 258228.670800000429153 ], [ 352921.913699999451637, 258269.494899999350309 ], [ 352938.127999998629093, 258259.284000001847744 ], [ 352947.0675999969244, 258251.124499998986721 ], [ 352948.6891999989748, 258250.082299999892712 ], [ 352951.129699997603893, 258247.569200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00358198000001, "LATITUDE": 18.35412131, "OBJECTID_1": 1905, "PARCEL_NO_": "102404041300", "Tax_Legal_": "77-5 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "WHEATLEY, HENRY U. , TRUSTEE", "Address": "PO Box 1195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.293813505, "SHAPE_Area": 1652.11507899 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351133.062299996614456, 258213.057500001043081 ], [ 351089.508900001645088, 258214.178599998354912 ], [ 351088.614500001072884, 258224.514899998903275 ], [ 351084.386900000274181, 258247.489500001072884 ], [ 351109.351999998092651, 258251.282400000840425 ], [ 351135.220499999821186, 258243.683699999004602 ], [ 351134.604800000786781, 258221.302700001746416 ], [ 351133.062299996614456, 258213.057500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504012200", "MAP": null, "PARCEL_NAM": "3A", "ACRE": null, "LONGITUDE": -64.98737348, "LATITUDE": 18.35385667, "OBJECTID_1": 2095, "PARCEL_NO_": "102504012200", "Tax_Legal_": "BONNE ESPERANCE 3A WEST END QTR", "Name": "DAWSON, ANGEL E", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 93900, "Improved_V": 171100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.544491182, "SHAPE_Area": 4223.6977985699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352837.095499999821186, 258192.384799998253584 ], [ 352779.150700002908707, 258179.033900000154972 ], [ 352774.831399999558926, 258212.773499999195337 ], [ 352788.497400000691414, 258217.740499999374151 ], [ 352857.444600000977516, 258264.745400000363588 ], [ 352859.055500000715256, 258264.9695999994874 ], [ 352861.490599997341633, 258263.089699998497963 ], [ 352860.777800001204014, 258252.10700000077486 ], [ 352859.474399998784065, 258215.78830000013113 ], [ 352863.653499998152256, 258198.512800000607967 ], [ 352837.095499999821186, 258192.384799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021100", "MAP": "D9-5583-T93", "PARCEL_NAM": "2-A-2", "ACRE": "3.77", "LONGITUDE": -64.97500091000001, "LATITUDE": 18.35358911, "OBJECTID_1": 2583, "PARCEL_NO_": "102603021100", "Tax_Legal_": "2-A ESTATE CROWN&HAWK No.3 SOUTHSIDE QTR.", "Name": "NEUBURGER, KLAUS & JACKIE H", "Address": "7945 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 315700, "Improved_V": 233500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 501.42791041200002, "SHAPE_Area": 12356.290877400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354130.009999997913837, 258156.526099998503923 ], [ 354063.842000000178814, 258161.895199999213219 ], [ 354036.407600000500679, 258163.99269999936223 ], [ 354113.683100000023842, 258274.604899998754263 ], [ 354150.249399997293949, 258241.762499999254942 ], [ 354207.94539999961853, 258189.672400001436472 ], [ 354213.589599996805191, 258189.718600001186132 ], [ 354226.839400000870228, 258148.874899998307228 ], [ 354130.009999997913837, 258156.526099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403017800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00833426, "LATITUDE": 18.35415104, "OBJECTID_1": 1620, "PARCEL_NO_": "102403017800", "Tax_Legal_": "FORTUNA 3C-1 WESTEND QTR", "Name": "PRINCE, GLORIA", "Address": "205 Tait Rd", "City": "Stockbridge", "State": "Georgia", "Zip": 30281, "Country": "United States", "Land_Value": 24800, "Improved_V": 142200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.752029937, "SHAPE_Area": 1035.5409666400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350629.64639999717474, 258241.445599999278784 ], [ 350628.244199998676777, 258216.736200001090765 ], [ 350587.091700002551079, 258219.988000001758337 ], [ 350588.488499999046326, 258245.330699998885393 ], [ 350594.944399997591972, 258244.750199999660254 ], [ 350629.64639999717474, 258241.445599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016800", "MAP": "G9-3056-T80", "PARCEL_NAM": "5E", "ACRE": "0.61", "LONGITUDE": -64.98990507000001, "LATITUDE": 18.35407745, "OBJECTID_1": 2139, "PARCEL_NO_": "102504016800", "Tax_Legal_": "BONNE ESPERANCE 5E\nWEST END QTR", "Name": "TURNBULL, MICHELLE", "Address": "PO Box 306767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85200, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.59669745299999, "SHAPE_Area": 1759.2629872499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352531.244099996984005, 258220.278999999165535 ], [ 352523.63849999755621, 258261.1689000017941 ], [ 352532.545699998736382, 258256.808899998664856 ], [ 352542.244800001382828, 258254.144000001251698 ], [ 352583.453000001609325, 258244.348799999803305 ], [ 352601.208099998533726, 258242.594300001859665 ], [ 352617.37389999628067, 258238.082499999552965 ], [ 352605.284599997103214, 258237.350299999117851 ], [ 352591.600699998438358, 258234.494100000709295 ], [ 352548.990199998021126, 258219.579900000244379 ], [ 352536.089199997484684, 258219.474300000816584 ], [ 352531.244099996984005, 258220.278999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00195627, "LATITUDE": 18.35383702, "OBJECTID_1": 1908, "PARCEL_NO_": "102404041600", "Tax_Legal_": "FORTUNA 77-39 WEST END QTR", "Name": "THE LILY McMENAMIN TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.17245124200002, "SHAPE_Area": 4601.8136455599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351251.975100003182888, 258168.856699999421835 ], [ 351248.717500001192093, 258172.629700001329184 ], [ 351245.46169999986887, 258176.191599998623133 ], [ 351249.972300000488758, 258214.647599998861551 ], [ 351277.955799996852875, 258242.74100000038743 ], [ 351301.279600001871586, 258249.897999998182058 ], [ 351323.654200002551079, 258179.153599999845028 ], [ 351260.921800002455711, 258159.852899998426437 ], [ 351258.488499999046326, 258161.521699998527765 ], [ 351251.975100003182888, 258168.856699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403044100", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-42", "ACRE": ".26", "LONGITUDE": -65.00966206, "LATITUDE": 18.35400488, "OBJECTID_1": 1803, "PARCEL_NO_": "102403044100", "Tax_Legal_": "FORTUNA 3C-42 WESTEND QTR.", "Name": "HILL, VIVIAN R. & ELMS, EUSTACE A", "Address": "PO Box 306354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32000, "Improved_V": 34800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.05752923700001, "SHAPE_Area": 1152.9299376900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350483.253600001335144, 258198.4510000012815 ], [ 350479.794200003147125, 258189.847300000488758 ], [ 350443.439699999988079, 258212.147999998182058 ], [ 350449.194300003349781, 258220.970300000160933 ], [ 350459.233800001442432, 258236.718800000846386 ], [ 350490.564300000667572, 258216.920299999415874 ], [ 350483.253600001335144, 258198.4510000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00412667000001, "LATITUDE": 18.35379172, "OBJECTID_1": 1880, "PARCEL_NO_": "102404031300", "Tax_Legal_": "FORTUNA 40A WEST END QTR", "Name": "LAPLACE, LOUIS", "Address": "PO Box 8943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 126800, "Improved_V": 256000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.92336110100001, "SHAPE_Area": 3169.94580154 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351077.719899997115135, 258178.196299999952316 ], [ 351030.359600000083447, 258152.899599999189377 ], [ 351017.174500003457069, 258186.144499998539686 ], [ 351074.723700001835823, 258245.932799998670816 ], [ 351079.759400002658367, 258222.753699999302626 ], [ 351080.731200002133846, 258203.340999998152256 ], [ 351077.719899997115135, 258178.196299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403010300", "MAP": "F9-1522-T65", "PARCEL_NAM": "64", "ACRE": null, "LONGITUDE": -65.0080838, "LATITUDE": 18.35405222, "OBJECTID_1": 1548, "PARCEL_NO_": "102403010300", "Tax_Legal_": "FORTUNA 64 WEST END QTR", "Name": "Keithroy A, Josephine and Kristen T Humphreys", "Address": "PO BOX 304936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124900, "Improved_V": 161600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.62011383799999, "SHAPE_Area": 565.08812456099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350638.026000000536442, 258204.361800000071526 ], [ 350626.053599998354912, 258189.909400001168251 ], [ 350628.244199998676777, 258216.736200001090765 ], [ 350629.64639999717474, 258241.445599999278784 ], [ 350647.426700003445148, 258236.736000001430511 ], [ 350640.342500001192093, 258216.413100000470877 ], [ 350638.026000000536442, 258204.361800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98543612, "LATITUDE": 18.35395268, "OBJECTID_1": 2114, "PARCEL_NO_": "102504014100", "Tax_Legal_": "BONNE ESPERANCE 2-16 WEST END QTR", "Name": "MOJHAR, CHARLES P.", "Address": "PO BOX 302785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66800, "Improved_V": 166900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.838318085, "SHAPE_Area": 2301.7952241900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353064.983400002121925, 258229.291499998420477 ], [ 353025.749200001358986, 258196.673099998384714 ], [ 353011.948399998247623, 258207.537000000476837 ], [ 352993.271999999880791, 258222.793999999761581 ], [ 353028.427799999713898, 258260.867400001734495 ], [ 353063.35639999806881, 258230.966899998486042 ], [ 353064.983400002121925, 258229.291499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97983349, "LATITUDE": 18.35389162, "OBJECTID_1": 2561, "PARCEL_NO_": "102603012600", "Tax_Legal_": "PEARL 37-27 S S QTR", "Name": "Shansi M Grabfelder Katjaer & Neils Katjaer", "Address": "P.O. BOX 1853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97700, "Improved_V": 198600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.97809380699999, "SHAPE_Area": 2230.4816477999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353607.854699999094009, 258207.559000000357628 ], [ 353593.90820000320673, 258235.520300000905991 ], [ 353618.664700001478195, 258263.79839999973774 ], [ 353621.103500001132488, 258261.496300000697374 ], [ 353625.144000001251698, 258260.473900001496077 ], [ 353647.252499997615814, 258220.969300001859665 ], [ 353620.962499998509884, 258183.390599999576807 ], [ 353607.854699999094009, 258207.559000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00499627000001, "LATITUDE": 18.35362914, "OBJECTID_1": 1872, "PARCEL_NO_": "102404030500", "Tax_Legal_": "FORTUNA 41 WEST END QTR", "Name": "de LYROT, LOUIS", "Address": "PO Box 400", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 290800, "Improved_V": 126400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.84902318399998, "SHAPE_Area": 4252.8065380400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351008.686300002038479, 258141.32319999858737 ], [ 350966.948700003325939, 258118.605599999427795 ], [ 350920.923000000417233, 258220.609299998730421 ], [ 350922.488899998366833, 258226.110599998384714 ], [ 350928.064800001680851, 258234.177799999713898 ], [ 350936.08110000193119, 258239.731800001114607 ], [ 350937.684799998998642, 258240.800400000065565 ], [ 351008.686300002038479, 258141.32319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98835773, "LATITUDE": 18.35401668, "OBJECTID_1": 2082, "PARCEL_NO_": "102504010700", "Tax_Legal_": "BONNE ESPERANCE 4A WEST END QTR", "Name": "ADAMS, MARLENE V. J", "Address": "22 Fellowship Dr", "City": "Palm Coast", "State": "Florida", "Zip": 32137, "Country": "United States", "Land_Value": 27100, "Improved_V": 166200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.78363396399999, "SHAPE_Area": 1021.75914343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352695.710299998521805, 258224.15819999948144 ], [ 352699.475699998438358, 258255.430900000035763 ], [ 352705.163099996745586, 258250.411200001835823 ], [ 352715.69370000064373, 258244.797899998724461 ], [ 352747.278300002217293, 258228.802200000733137 ], [ 352760.235100001096725, 258222.36430000141263 ], [ 352758.642200000584126, 258220.029199998825788 ], [ 352695.710299998521805, 258224.15819999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404041500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00255532, "LATITUDE": 18.35386597, "OBJECTID_1": 1907, "PARCEL_NO_": "102404041500", "Tax_Legal_": "FORTUNA 77-28 WEST END QTR", "Name": "HODGE & PHILLIPS", "Address": "PO Box 10857", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74100, "Improved_V": 200700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.021790646, "SHAPE_Area": 2762.46773927 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351248.717500001192093, 258172.629700001329184 ], [ 351195.412699997425079, 258182.537000000476837 ], [ 351195.376800000667572, 258186.758600000292063 ], [ 351192.016699999570847, 258202.563099998980761 ], [ 351192.716899998486042, 258215.023400001227856 ], [ 351194.99379999935627, 258231.718400001525879 ], [ 351194.907399997115135, 258241.85020000115037 ], [ 351249.972300000488758, 258214.647599998861551 ], [ 351245.46169999986887, 258176.191599998623133 ], [ 351248.717500001192093, 258172.629700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98113308000001, "LATITUDE": 18.35412386, "OBJECTID_1": 2538, "PARCEL_NO_": "102603010100", "Tax_Legal_": "SANTA MARIA 4B SOUTH SIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.146940870400002, "SHAPE_Area": 182.80380666299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353493.751000002026558, 258255.176699999719858 ], [ 353482.577799998223782, 258241.575199998915195 ], [ 353472.052500002086163, 258246.555300001055002 ], [ 353484.845600001513958, 258259.325699999928474 ], [ 353493.751000002026558, 258255.176699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403043400", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-50", "ACRE": null, "LONGITUDE": -65.01195719, "LATITUDE": 18.35402082, "OBJECTID_1": 1796, "PARCEL_NO_": "102403043400", "Tax_Legal_": "FORTUNA 3C-50 WEST END QUARTER", "Name": "ISAAC, CAROLYN P", "Address": "PO BOX 8678", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47400, "Improved_V": 352000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.509970743, "SHAPE_Area": 1630.93618072 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350248.625699996948242, 258195.47520000115037 ], [ 350244.759999997913837, 258187.200100000947714 ], [ 350196.763199999928474, 258212.649300001561642 ], [ 350190.887800000607967, 258215.764499999582767 ], [ 350192.797700002789497, 258217.60530000180006 ], [ 350204.793499998748302, 258229.3136 ], [ 350215.921700000762939, 258240.062300000339746 ], [ 350257.902800001204014, 258207.598000001162291 ], [ 350255.79619999974966, 258205.666400000452995 ], [ 350249.4121999964118, 258197.803599998354912 ], [ 350248.625699996948242, 258195.47520000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9808359, "LATITUDE": 18.35402986, "OBJECTID_1": 2644, "PARCEL_NO_": "102603033500", "Tax_Legal_": "SANTA MARIA ESTATE 4B-44 No.1 WESTEND QTR.", "Name": "BERTRAND, PETROLINA M.", "Address": "PO Box 6714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.91659334299999, "SHAPE_Area": 1231.3635124499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353538.938699997961521, 258251.535700000822544 ], [ 353531.965999998152256, 258218.125900000333786 ], [ 353482.577799998223782, 258241.575199998915195 ], [ 353493.751000002026558, 258255.176699999719858 ], [ 353500.215899996459484, 258253.540800001472235 ], [ 353522.79450000077486, 258253.514499999582767 ], [ 353538.938699997961521, 258251.535700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00309106, "LATITUDE": 18.35382925, "OBJECTID_1": 1906, "PARCEL_NO_": "102404041400", "Tax_Legal_": "FORTUNA 77-23 WEST END QTR", "Name": "SCHORE, JOSEPH & ELLIOT R. & SYLVIA GYLLING", "Address": "37 West Shore Road", "City": "Denville", "State": "New Jersey", "Zip": 78341548, "Country": "United States", "Land_Value": 72600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.185880905, "SHAPE_Area": 2812.5916087000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351185.862899996340275, 258167.682300001382828 ], [ 351137.466099999845028, 258169.397100001573563 ], [ 351143.485100001096725, 258220.108800001442432 ], [ 351143.353799998760223, 258235.517599999904633 ], [ 351185.330600000917912, 258230.16160000115633 ], [ 351183.820500001311302, 258218.116900000721216 ], [ 351183.172399997711182, 258199.535399999469519 ], [ 351186.527099996805191, 258184.364100001752377 ], [ 351185.862899996340275, 258167.682300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01911237, "LATITUDE": 18.35389948, "OBJECTID_1": 1236, "PARCEL_NO_": "102304010600", "Tax_Legal_": "19 BORDEAUX No. 6 WEST END QTR", "Name": "RICHARDSON, DANA M.", "Address": "PO Box 303895", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28100, "Improved_V": 91300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.05037818, "SHAPE_Area": 1059.0311849300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349466.74889999628067, 258160.156100001186132 ], [ 349454.179499998688698, 258215.781899999827147 ], [ 349463.021999999880791, 258219.020700000226498 ], [ 349468.662600003182888, 258219.489000000059605 ], [ 349471.895000003278255, 258218.671100001782179 ], [ 349475.138300001621246, 258216.58669999986887 ], [ 349478.403099998831749, 258211.969399999827147 ], [ 349480.89750000089407, 258203.1239 ], [ 349481.849500000476837, 258186.033100001513958 ], [ 349481.080899998545647, 258181.593800000846386 ], [ 349479.511500000953674, 258176.514699999243021 ], [ 349478.7212999984622, 258174.608399998396635 ], [ 349475.54280000180006, 258169.094000000506639 ], [ 349470.748099997639656, 258163.988499999046326 ], [ 349466.74889999628067, 258160.156100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98049252, "LATITUDE": 18.35391559, "OBJECTID_1": 2645, "PARCEL_NO_": "102603033600", "Tax_Legal_": "SANTA MARIA 4B-45 WESTEND QTR.", "Name": "AMARO, CARMEN Y", "Address": "8153 Est Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 293100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.72550921000001, "SHAPE_Area": 1190.0611821499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353565.985600002110004, 258243.811000000685453 ], [ 353565.994099996984005, 258201.999499998986721 ], [ 353531.965999998152256, 258218.125900000333786 ], [ 353538.938699997961521, 258251.535700000822544 ], [ 353565.985600002110004, 258243.811000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01931558, "LATITUDE": 18.35381944, "OBJECTID_1": 1235, "PARCEL_NO_": "102304010500", "Tax_Legal_": "BORDEAUX 20 WEST END QTR", "Name": "BELLEW, TODD A. & AYISHIH K", "Address": "PO Box 304279", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32800, "Improved_V": 15900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.617131769, "SHAPE_Area": 1452.63529696 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349450.692800000309944, 258151.791999999433756 ], [ 349424.4628000035882, 258201.817600000649691 ], [ 349440.513599999248981, 258210.814899999648333 ], [ 349454.179499998688698, 258215.781899999827147 ], [ 349466.74889999628067, 258160.156100001186132 ], [ 349463.543499998748302, 258157.807799998670816 ], [ 349450.692800000309944, 258151.791999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403042500", "MAP": "D9-5889-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01119495, "LATITUDE": 18.35388482, "OBJECTID_1": 1788, "PARCEL_NO_": "102403042500", "Tax_Legal_": "FORTUNA 3C-34 WEST END QUARTER", "Name": "BARRY, SHONA E", "Address": "PO Box 6701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.567549179, "SHAPE_Area": 1048.19738704 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350306.867200002074242, 258173.998100001364946 ], [ 350300.44370000064373, 258170.779199998825788 ], [ 350290.024700000882149, 258214.970800001174212 ], [ 350292.800200000405312, 258216.101700000464916 ], [ 350296.014700002968311, 258217.394600000232458 ], [ 350306.471600003540516, 258220.435499999672174 ], [ 350313.728399999439716, 258220.494899999350309 ], [ 350320.999600000679493, 258218.865600001066923 ], [ 350314.274599999189377, 258174.923900000751019 ], [ 350310.895199999213219, 258174.453299999237061 ], [ 350306.867200002074242, 258173.998100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403044200", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-43", "ACRE": ".23", "LONGITUDE": -65.00976897, "LATITUDE": 18.35379404, "OBJECTID_1": 1804, "PARCEL_NO_": "102403044200", "Tax_Legal_": "3C-43 FORTUNA \nNO.8 WESTEND QTR.", "Name": "SMITH, PAMELA L", "Address": "PO Box 7524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30300, "Improved_V": 160100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.54369858699999, "SHAPE_Area": 1025.9945228199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350472.211599998176098, 258169.440799999982119 ], [ 350470.625900000333786, 258166.261399999260902 ], [ 350432.190800003707409, 258194.75899999961257 ], [ 350436.458700001239777, 258201.445500001311302 ], [ 350443.439699999988079, 258212.147999998182058 ], [ 350479.794200003147125, 258189.847300000488758 ], [ 350474.5675999969244, 258176.848299998790026 ], [ 350472.211599998176098, 258169.440799999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403042600", "MAP": "D9-5889-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01099157, "LATITUDE": 18.35386299, "OBJECTID_1": 1789, "PARCEL_NO_": "102403042600", "Tax_Legal_": "FORTUNA 3C-35 #8 WESTEND QTR", "Name": "BALY, G. & GREGOIRE, CHARLES", "Address": "PO Box 5253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.179298503, "SHAPE_Area": 819.83343248599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350344.435500003397465, 258209.754700001329184 ], [ 350330.064099997282028, 258175.079100001603365 ], [ 350327.010600000619888, 258175.851700000464916 ], [ 350322.170900002121925, 258176.023200001567602 ], [ 350314.274599999189377, 258174.923900000751019 ], [ 350320.999600000679493, 258218.865600001066923 ], [ 350328.272600002586842, 258217.025299999862909 ], [ 350342.0337999984622, 258210.805100001394749 ], [ 350344.435500003397465, 258209.754700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403043200", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-54", "ACRE": null, "LONGITUDE": -65.0123175, "LATITUDE": 18.35372656, "OBJECTID_1": 1794, "PARCEL_NO_": "102403043200", "Tax_Legal_": "3C-54 FORTUNA WEST END QUARTER", "Name": "LYRA T HARRIGAN REVOCABLE TRUST", "Address": "PO Box 304905", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23500, "Improved_V": 201000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.833801061, "SHAPE_Area": 1895.99107613 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350203.610399998724461, 258191.214600000530481 ], [ 350217.598999999463558, 258174.579700000584126 ], [ 350189.667300000786781, 258149.437100000679493 ], [ 350175.519199997186661, 258163.423900000751019 ], [ 350173.069700002670288, 258166.992400001734495 ], [ 350172.248999997973442, 258168.674499999731779 ], [ 350168.951800003647804, 258177.0912000015378 ], [ 350165.717600002884865, 258178.120200000703335 ], [ 350161.691399998962879, 258177.453999999910593 ], [ 350155.971699997782707, 258186.27309999987483 ], [ 350169.603500001132488, 258195.250599998980761 ], [ 350188.460500001907349, 258213.42509999871254 ], [ 350203.610399998724461, 258191.214600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00834762, "LATITUDE": 18.35391932, "OBJECTID_1": 1625, "PARCEL_NO_": "102403018300", "Tax_Legal_": "FORTUNA 3C-3 WESTEND QTR.", "Name": "FRETT, GLORIA", "Address": "PO Box 9293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 126000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.935714934, "SHAPE_Area": 1072.3057352200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350626.053599998354912, 258189.909400001168251 ], [ 350586.506599999964237, 258194.018699999898672 ], [ 350586.46339999884367, 258199.084600001573563 ], [ 350587.091700002551079, 258219.988000001758337 ], [ 350628.244199998676777, 258216.736200001090765 ], [ 350626.053599998354912, 258189.909400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403019600", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-33", "ACRE": null, "LONGITUDE": -65.01144582000001, "LATITUDE": 18.35378584, "OBJECTID_1": 1637, "PARCEL_NO_": "102403019600", "Tax_Legal_": "3C-33 ESTATE FORTUNA NO.8 WEST END QTR", "Name": "SAMUEL, GLEN ROY", "Address": "PO BOX 10643", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.76900300299999, "SHAPE_Area": 1439.14076817 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350292.439900003373623, 258163.747600000351667 ], [ 350290.808700002729893, 258160.917599998414516 ], [ 350252.743600003421307, 258185.376400001347065 ], [ 350255.918499998748302, 258191.313000001013279 ], [ 350262.300599999725819, 258199.386799998581409 ], [ 350272.710799999535084, 258207.915699999779463 ], [ 350290.024700000882149, 258214.970800001174212 ], [ 350300.44370000064373, 258170.779199998825788 ], [ 350298.039099998772144, 258169.070700000971556 ], [ 350296.439099997282028, 258167.579999998211861 ], [ 350292.439900003373623, 258163.747600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403019200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00912078, "LATITUDE": 18.35391363, "OBJECTID_1": 1633, "PARCEL_NO_": "102403019200", "Tax_Legal_": "FORTUNA ESTATE 3C-12 No.8 WESTEND QTR.", "Name": "HODGE, JANICE V", "Address": "PO Box 306215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.817457218, "SHAPE_Area": 922.525774232 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350542.771499998867512, 258216.45890000090003 ], [ 350542.996299996972084, 258190.074000000953674 ], [ 350507.502300001680851, 258191.683299999684095 ], [ 350508.085699997842312, 258217.863699998706579 ], [ 350542.771499998867512, 258216.45890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00536931000001, "LATITUDE": 18.35334384, "OBJECTID_1": 1871, "PARCEL_NO_": "102404030400", "Tax_Legal_": "FORTUNA 42 WEST END QTR", "Name": "de LYROT, LOUIS", "Address": "PO Box 400", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 254800, "Improved_V": 144400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.48681168799999, "SHAPE_Area": 5441.6972646599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350962.935099996626377, 258116.461899999529123 ], [ 350936.452600002288818, 258101.468600001186132 ], [ 350930.781499996781349, 258104.588500000536442 ], [ 350923.497699998319149, 258107.695300001651049 ], [ 350916.2516999989748, 258106.369500000029802 ], [ 350914.646200001239777, 258105.511999998241663 ], [ 350908.228100001811981, 258101.659699998795986 ], [ 350906.644299998879433, 258098.269299998879433 ], [ 350899.468400001525879, 258088.711300000548363 ], [ 350882.442299999296665, 258099.548900000751019 ], [ 350895.01240000128746, 258138.492899999022484 ], [ 350900.388700000941753, 258169.989900000393391 ], [ 350898.670000001788139, 258182.430300001055002 ], [ 350905.071900002658367, 258188.182300001382828 ], [ 350906.671999998390675, 258189.673000000417233 ], [ 350911.461300000548363, 258195.411699999123812 ], [ 350914.630800001323223, 258201.981600001454353 ], [ 350920.923000000417233, 258220.609299998730421 ], [ 350966.948700003325939, 258118.605599999427795 ], [ 350962.935099996626377, 258116.461899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00878646, "LATITUDE": 18.35389302, "OBJECTID_1": 1622, "PARCEL_NO_": "102403018000", "Tax_Legal_": "FORTUNA 3C-4 WEST END QTR", "Name": "SMITH, RUDOLPH", "Address": "PO BOX 304075", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 178800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.765381641, "SHAPE_Area": 971.11833317599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350577.703699998557568, 258186.136199999600649 ], [ 350542.996299996972084, 258190.074000000953674 ], [ 350542.771499998867512, 258216.45890000090003 ], [ 350578.263599999248981, 258215.060600001364946 ], [ 350577.703699998557568, 258186.136199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403042700", "MAP": "D9-5889-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01079458, "LATITUDE": 18.35379324, "OBJECTID_1": 1790, "PARCEL_NO_": "102403042700", "Tax_Legal_": "3C-36 ESTATE FORTUNA WEST END QUARTER", "Name": "CONNOR, IVINS L. & JACQUELINE", "Address": "PO Box 10495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25400, "Improved_V": 276200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.411205267, "SHAPE_Area": 843.95518991799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350330.064099997282028, 258175.079100001603365 ], [ 350344.435500003397465, 258209.754700001329184 ], [ 350361.459100000560284, 258202.309300001710653 ], [ 350369.567199997603893, 258197.098299998790026 ], [ 350350.417099997401237, 258173.299100000411272 ], [ 350346.42679999768734, 258168.411299999803305 ], [ 350337.516099996864796, 258173.193500000983477 ], [ 350330.064099997282028, 258175.079100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98017505, "LATITUDE": 18.35379296, "OBJECTID_1": 2646, "PARCEL_NO_": "102603033700", "Tax_Legal_": "SANTA MARIA 4B-46 WEST END QTR.", "Name": "CHINNERY, ELSIE E.S", "Address": "PO Box 11755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59500, "Improved_V": 240400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.40526647600001, "SHAPE_Area": 1558.8735798299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353573.737800002098083, 258236.832899998873472 ], [ 353582.630599997937679, 258234.161499999463558 ], [ 353583.420800000429153, 258236.067800000309944 ], [ 353585.828900001943111, 258237.354100000113249 ], [ 353588.247800000011921, 258237.3739 ], [ 353593.90820000320673, 258235.520300000905991 ], [ 353607.854699999094009, 258207.559000000357628 ], [ 353597.547100000083447, 258186.998599998652935 ], [ 353574.876800000667572, 258197.789900001138449 ], [ 353565.994099996984005, 258201.999499998986721 ], [ 353565.985600002110004, 258243.811000000685453 ], [ 353571.272100001573563, 258242.301199998706579 ], [ 353573.712600000202656, 258239.787999998778105 ], [ 353573.737800002098083, 258236.832899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98923789, "LATITUDE": 18.35387954, "OBJECTID_1": 2084, "PARCEL_NO_": "102504010900", "Tax_Legal_": "BONNE ESPERANCE 3-1\nWEST END QTR", "Name": "GORDON, EDWARD", "Address": "4205 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.00567366300001, "SHAPE_Area": 930.01383717199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352648.1199000030756, 258225.879700001329184 ], [ 352637.106600001454353, 258193.492199998348951 ], [ 352635.483199998736382, 258194.74549999833107 ], [ 352610.302299998700619, 258216.282000001519918 ], [ 352598.965400002896786, 258221.888799998909235 ], [ 352599.728500001132488, 258226.961300000548363 ], [ 352615.030500002205372, 258229.197399999946356 ], [ 352633.58110000193119, 258228.715999998152256 ], [ 352648.1199000030756, 258225.879700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0195413, "LATITUDE": 18.35371627, "OBJECTID_1": 1234, "PARCEL_NO_": "102304010400", "Tax_Legal_": "BORDEAUX 21 WEST END QTR", "Name": "CRAIG, A. C.", "Address": "PO Box 302192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29200, "Improved_V": 88600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.986599695, "SHAPE_Area": 1443.7817568200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349434.62950000166893, 258144.272300001233816 ], [ 349393.129900000989437, 258188.262299999594688 ], [ 349411.623000003397465, 258194.535300001502037 ], [ 349424.4628000035882, 258201.817600000649691 ], [ 349450.692800000309944, 258151.791999999433756 ], [ 349434.62950000166893, 258144.272300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "109", "ACRE": ".78", "LONGITUDE": -65.01681959, "LATITUDE": 18.3538217, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.272781415, "SHAPE_Area": 1503.01756129 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349688.945900000631809, 258202.504599999636412 ], [ 349711.508299998939037, 258204.377999998629093 ], [ 349724.456000000238419, 258198.995600000023842 ], [ 349746.327200002968311, 258187.353300001472235 ], [ 349742.432300001382828, 258171.278299998492002 ], [ 349726.262900002300739, 258176.212200000882149 ], [ 349685.148100003600121, 258175.031399998813868 ], [ 349681.910300001502037, 258176.482500001788139 ], [ 349680.290500000119209, 258177.3136 ], [ 349680.258100003004074, 258181.113099999725819 ], [ 349688.945900000631809, 258202.504599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00359237000001, "LATITUDE": 18.35380726, "OBJECTID_1": 1910, "PARCEL_NO_": "102404041800", "Tax_Legal_": "77-6 ESTATE FORTUNA WEST END QTR", "Name": "DORSEY, ANDRE T. & BRIDGET J. D", "Address": "PO Box 302292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72600, "Improved_V": 174700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.87568006000001, "SHAPE_Area": 1430.9326242100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351128.512199997901917, 258179.245200000703335 ], [ 351086.573100000619888, 258180.168600000441074 ], [ 351089.627599999308586, 258200.247400000691414 ], [ 351089.508900001645088, 258214.178599998354912 ], [ 351133.062299996614456, 258213.057500001043081 ], [ 351128.512199997901917, 258179.245200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98511236, "LATITUDE": 18.35364228, "OBJECTID_1": 2113, "PARCEL_NO_": "102504014000", "Tax_Legal_": "2-17 ESTATE BONNE ESPERANCE No.2 WESTEND QTR.", "Name": "DOTSON, JANET MOORHEAD", "Address": "835 Ridge Ave", "City": "Evanston", "State": "Illinois", "Zip": 60202, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.872004433, "SHAPE_Area": 2503.0711380399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353092.982799999415874, 258194.849500000476837 ], [ 353071.951700001955032, 258154.357599999755621 ], [ 353057.429200001060963, 258169.490200001746416 ], [ 353033.8699000030756, 258189.984499998390675 ], [ 353025.749200001358986, 258196.673099998384714 ], [ 353064.983400002121925, 258229.291499998420477 ], [ 353080.44539999961853, 258212.741700001060963 ], [ 353087.788500003516674, 258202.669300001114607 ], [ 353092.982799999415874, 258194.849500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504011100", "MAP": null, "PARCEL_NAM": "3-2", "ACRE": null, "LONGITUDE": -64.98897744, "LATITUDE": 18.35376377, "OBJECTID_1": 2086, "PARCEL_NO_": "102504011100", "Tax_Legal_": "3-2 BONNE ESPERANCE WEST END QTR", "Name": "EASTERDAY, KATHY A", "Address": "2107 Bonne Esperance", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30800, "Improved_V": 31400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.708401303, "SHAPE_Area": 957.58875647299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352671.560500003397465, 258219.316500000655651 ], [ 352659.803900003433228, 258179.534699998795986 ], [ 352648.461499996483326, 258185.774700000882149 ], [ 352637.106600001454353, 258193.492199998348951 ], [ 352648.1199000030756, 258225.879700001329184 ], [ 352671.560500003397465, 258219.316500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020100", "MAP": null, "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.97353938000001, "LATITUDE": 18.35351682, "OBJECTID_1": 2692, "PARCEL_NO_": "102604020100", "Tax_Legal_": "CROWN & HAWK 5 S S QTR", "Name": "SAMUEL, A", "Address": "2212 Boller Ave", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 97400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.03755353100001, "SHAPE_Area": 6101.2532907599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354322.065200001001358, 258140.155099999159575 ], [ 354322.925499998033047, 258133.829300001263618 ], [ 354283.360399998724461, 258140.049400001764297 ], [ 354270.322700001299381, 258155.985800001770258 ], [ 354258.872500002384186, 258174.890500001609325 ], [ 354254.776199996471405, 258182.456300001591444 ], [ 354240.021600000560284, 258210.622099999338388 ], [ 354239.134400002658367, 258220.114000000059605 ], [ 354240.680500000715256, 258227.937199998646975 ], [ 354242.2787000015378, 258229.638999998569489 ], [ 354243.846400000154972, 258234.929200001060963 ], [ 354245.448299996554852, 258236.208799999207258 ], [ 354247.062700003385544, 258236.010899998247623 ], [ 354266.437600001692772, 258233.425299998372793 ], [ 354319.718900002539158, 258226.261999998241663 ], [ 354320.010200001299381, 258192.067200001329184 ], [ 354321.881800003349781, 258161.685100000351667 ], [ 354322.065200001001358, 258140.155099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403044300", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-44", "ACRE": ".25", "LONGITUDE": -65.00989078000001, "LATITUDE": 18.35361794, "OBJECTID_1": 1805, "PARCEL_NO_": "102403044300", "Tax_Legal_": "FORTUNA 3C-44 WESTEND QTR.", "Name": "RAWLINS, PAULETTE P", "Address": "PO Box 10117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.40399364699999, "SHAPE_Area": 1160.40605977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350462.65990000218153, 258154.797100000083447 ], [ 350456.363799996674061, 258147.533100001513958 ], [ 350417.952100001275539, 258173.414700001478195 ], [ 350423.726800002157688, 258181.498500000685453 ], [ 350432.190800003707409, 258194.75899999961257 ], [ 350470.625900000333786, 258166.261399999260902 ], [ 350462.65990000218153, 258154.797100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504011300", "MAP": null, "PARCEL_NAM": "3-3", "ACRE": null, "LONGITUDE": -64.98875637, "LATITUDE": 18.35368501, "OBJECTID_1": 2088, "PARCEL_NO_": "102504011300", "Tax_Legal_": "BONNE ESPERANCE 3-3 WEST END QTR", "Name": "PETERS, CARDINAL A", "Address": "PO BOX 4132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27000, "Improved_V": 164200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.86368850299999, "SHAPE_Area": 1096.3041259700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352694.984899997711182, 258214.653099998831749 ], [ 352684.875100001692772, 258170.874000001698732 ], [ 352674.367799997329712, 258173.743299998342991 ], [ 352659.803900003433228, 258179.534699998795986 ], [ 352671.560500003397465, 258219.316500000655651 ], [ 352678.021799996495247, 258218.102800000458956 ], [ 352694.984899997711182, 258214.653099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403042300", "MAP": "D9-5889-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01157946, "LATITUDE": 18.35355986, "OBJECTID_1": 1787, "PARCEL_NO_": "102403042300", "Tax_Legal_": "FORTUNA 3C-32 WESTEND QTR.", "Name": "HODGE, DAVID & MARIATH", "Address": "PO Box 8541", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27800, "Improved_V": 241100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.81744069300001, "SHAPE_Area": 983.07919447300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350290.808700002729893, 258160.917599998414516 ], [ 350289.261399999260902, 258158.2331000007689 ], [ 350288.093599997460842, 258150.357299998402596 ], [ 350248.213299997150898, 258149.220400001853704 ], [ 350248.116099998354912, 258160.640599999576807 ], [ 350250.4037000015378, 258176.069099999964237 ], [ 350252.743600003421307, 258185.376400001347065 ], [ 350290.808700002729893, 258160.917599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504010800", "MAP": "D9-752-T68", "PARCEL_NAM": "3-4", "ACRE": ".26", "LONGITUDE": -64.9897487, "LATITUDE": 18.35375965, "OBJECTID_1": 2083, "PARCEL_NO_": "102504010800", "Tax_Legal_": "BONNE ESPERANCE 3-4 WEST END QTR", "Name": "PACQUETTE, JANICE & JOSIANNA D. HENRY", "Address": "PO Box 307355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.81610723599999, "SHAPE_Area": 1303.6188611 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352607.157999999821186, 258206.757100000977516 ], [ 352595.2179000005126, 258188.505300000309944 ], [ 352584.710699997842312, 258191.374600000679493 ], [ 352534.668999999761581, 258196.875700000673532 ], [ 352532.23929999768734, 258198.122400000691414 ], [ 352532.993400000035763, 258204.250199999660254 ], [ 352561.144199997186661, 258212.713300000876188 ], [ 352566.775799997150898, 258214.236999999731779 ], [ 352574.824600003659725, 258215.991700001060963 ], [ 352587.734600000083447, 258215.041900001466274 ], [ 352590.158900000154972, 258214.428399998694658 ], [ 352598.238200001418591, 258212.594700001180172 ], [ 352605.534599997103214, 258208.010400000959635 ], [ 352607.157999999821186, 258206.757100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01058791, "LATITUDE": 18.35367464, "OBJECTID_1": 1791, "PARCEL_NO_": "102403042800", "Tax_Legal_": "3C-37 FORTUNA WEST END QUARTER", "Name": "THOMAS, BRINGTON J", "Address": "PO Box 8904", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 193500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.42388371600001, "SHAPE_Area": 692.40362769800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350389.217200003564358, 258162.217599999159575 ], [ 350377.939599998295307, 258160.85869999974966 ], [ 350350.417099997401237, 258173.299100000411272 ], [ 350369.567199997603893, 258197.098299998790026 ], [ 350374.44820000231266, 258192.072000000625849 ], [ 350389.217200003564358, 258162.217599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0197463, "LATITUDE": 18.35359587, "OBJECTID_1": 1233, "PARCEL_NO_": "102304010300", "Tax_Legal_": "BORDEAUX 22 WEST END QTR", "Name": "PETERSEN, G. & E", "Address": "PO Box 304685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33500, "Improved_V": 92400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.28122525500001, "SHAPE_Area": 1496.63203555 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349412.153499998152256, 258132.267099998891354 ], [ 349371.478200003504753, 258174.152899999171495 ], [ 349386.704599998891354, 258185.254399999976158 ], [ 349393.129900000989437, 258188.262299999594688 ], [ 349434.62950000166893, 258144.272300001233816 ], [ 349412.153499998152256, 258132.267099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504011500", "MAP": null, "PARCEL_NAM": "3-7", "ACRE": null, "LONGITUDE": -64.98853148000001, "LATITUDE": 18.35364353, "OBJECTID_1": 2089, "PARCEL_NO_": "102504011500", "Tax_Legal_": "BONNE ESPERANCE 3-7 WEST END QTR", "Name": "TONY HOWELL and KATHLEEN ANN SWEENEY", "Address": "300 Opelika Rd", "City": "Auburn", "State": "Alabama", "Zip": 36831, "Country": "United States", "Land_Value": 43200, "Improved_V": 626800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.715329376, "SHAPE_Area": 1073.3262115299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352717.57599999755621, 258213.14919999986887 ], [ 352709.096799999475479, 258167.27250000089407 ], [ 352689.720100000500679, 258170.069299999624491 ], [ 352684.875100001692772, 258170.874000001698732 ], [ 352694.984899997711182, 258214.653099998831749 ], [ 352711.121899999678135, 258213.5185999982059 ], [ 352717.57599999755621, 258213.14919999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-142", "ACRE": ".049", "LONGITUDE": -65.00942037, "LATITUDE": 18.35376941, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.807082751300001, "SHAPE_Area": 137.527817024 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350498.724600002169609, 258180.84569999948144 ], [ 350486.622699998319149, 258181.591099999845028 ], [ 350491.350900001823902, 258194.506499998271465 ], [ 350492.950900003314018, 258195.99720000103116 ], [ 350496.174400001764297, 258196.234700001776218 ], [ 350498.611299999058247, 258194.143699999898672 ], [ 350498.724600002169609, 258180.84569999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604027700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97260854, "LATITUDE": 18.35334398, "OBJECTID_1": 2759, "PARCEL_NO_": "102604027700", "Tax_Legal_": "CROWN & HAWK 6A S S QTR", "Name": "ANDREAS, JOANNES", "Address": "PO Box 1404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041404, "Country": "United States", "Land_Value": 194800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 442.68208206600002, "SHAPE_Area": 11877.9164857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354447.270900003612041, 258209.151900000870228 ], [ 354448.076499998569489, 258114.588599998503923 ], [ 354322.925499998033047, 258133.829300001263618 ], [ 354322.065200001001358, 258140.155099999159575 ], [ 354321.881800003349781, 258161.685100000351667 ], [ 354320.010200001299381, 258192.067200001329184 ], [ 354319.718900002539158, 258226.261999998241663 ], [ 354393.989600002765656, 258216.315200001001358 ], [ 354434.335799999535084, 258213.056800000369549 ], [ 354436.760099999606609, 258212.443399999290705 ], [ 354444.843000002205372, 258210.1875 ], [ 354447.270900003612041, 258209.151900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504011700", "MAP": null, "PARCEL_NAM": "3-8", "ACRE": null, "LONGITUDE": -64.98831351, "LATITUDE": 18.35362442, "OBJECTID_1": 2091, "PARCEL_NO_": "102504011700", "Tax_Legal_": "BONNE ESPERANCE 3-8 WEST END QTR", "Name": "SCHNEIDER, ALUVIS & LORRAINE", "Address": "PO Box 306942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33300, "Improved_V": 119000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.35088915099999, "SHAPE_Area": 1071.96648312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352740.163599997758865, 258212.067499998956919 ], [ 352731.698700003325939, 258164.502199999988079 ], [ 352709.096799999475479, 258167.27250000089407 ], [ 352717.57599999755621, 258213.14919999986887 ], [ 352740.163599997758865, 258212.067499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504011800", "MAP": null, "PARCEL_NAM": "3 REM", "ACRE": null, "LONGITUDE": -64.98800727, "LATITUDE": 18.35359538, "OBJECTID_1": 2092, "PARCEL_NO_": "102504011800", "Tax_Legal_": "BONNE ESPERANCE 3 REMAINER WEST END QTR", "Name": "FAULKNER, ELROY ANTONIO", "Address": "3295 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89500, "Improved_V": 116100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.924114043, "SHAPE_Area": 2030.23484072 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352779.150700002908707, 258179.033900000154972 ], [ 352780.903599999845028, 258162.582899998873472 ], [ 352731.698700003325939, 258164.502199999988079 ], [ 352740.163599997758865, 258212.067499998956919 ], [ 352760.33219999819994, 258210.966099999845028 ], [ 352774.831399999558926, 258212.773499999195337 ], [ 352779.150700002908707, 258179.033900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00840594, "LATITUDE": 18.35368172, "OBJECTID_1": 1623, "PARCEL_NO_": "102403018100", "Tax_Legal_": "FORTUNA 3C-5 WESTEND QTR.", "Name": "JACOBS, LORNA", "Address": "PO Box 306702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 90000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.573796789, "SHAPE_Area": 856.736621055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350586.506599999964237, 258194.018699999898672 ], [ 350626.053599998354912, 258189.909400001168251 ], [ 350606.892700001597404, 258167.3766999989748 ], [ 350597.281700000166893, 258159.698600001633167 ], [ 350593.260999999940395, 258158.39919999986887 ], [ 350588.399700000882149, 258161.10359999909997 ], [ 350587.580799996852875, 258162.574599999934435 ], [ 350586.506599999964237, 258194.018699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403019300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00912314, "LATITUDE": 18.3536694, "OBJECTID_1": 1634, "PARCEL_NO_": "102403019300", "Tax_Legal_": "3C-13 FORTUNA NO.8 WEST END QUARTER", "Name": "DAVID, LORELI E.", "Address": "PO Box 10202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 138600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.501049389, "SHAPE_Area": 997.07285238300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350542.996299996972084, 258190.074000000953674 ], [ 350543.239000000059605, 258161.578400000929832 ], [ 350506.92620000243187, 258164.658700000494719 ], [ 350507.502300001680851, 258191.683299999684095 ], [ 350542.996299996972084, 258190.074000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00879334, "LATITUDE": 18.35363116, "OBJECTID_1": 1624, "PARCEL_NO_": "102403018200", "Tax_Legal_": "3C-6 ESTATE FORTUNA WEST END QUARTER", "Name": "PERCIVAL, VERNELL", "Address": "PO Box 244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25800, "Improved_V": 107300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.768932079, "SHAPE_Area": 1043.2014066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350577.152699999511242, 258156.156399998813868 ], [ 350543.258799999952316, 258159.256499998271465 ], [ 350543.239000000059605, 258161.578400000929832 ], [ 350542.996299996972084, 258190.074000000953674 ], [ 350577.703699998557568, 258186.136199999600649 ], [ 350577.152699999511242, 258156.156399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504011000", "MAP": null, "PARCEL_NAM": "3-5", "ACRE": null, "LONGITUDE": -64.98924346, "LATITUDE": 18.35353299, "OBJECTID_1": 2085, "PARCEL_NO_": "102504011000", "Tax_Legal_": "3-5 BONNE ESPERANCE NO.2 WEST END QTR", "Name": "IVAN AND GLORIA BESS FAMILY TRUST", "Address": "PO Box 6712", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 51400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.814586521, "SHAPE_Area": 1238.85498489 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352653.409100003540516, 258172.938499998301268 ], [ 352647.167199999094009, 258148.400499999523163 ], [ 352631.7466000020504, 258160.095600001513958 ], [ 352612.229599997401237, 258179.3564000017941 ], [ 352604.929700002074242, 258184.362900000065565 ], [ 352595.2179000005126, 258188.505300000309944 ], [ 352607.157999999821186, 258206.757100000977516 ], [ 352625.837999999523163, 258191.078000001609325 ], [ 352633.955099999904633, 258184.811599999666214 ], [ 352637.200099997222424, 258182.516100000590086 ], [ 352645.311800003051758, 258176.883000001311302 ], [ 352653.409100003540516, 258172.938499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01269416, "LATITUDE": 18.353492, "OBJECTID_1": 1766, "PARCEL_NO_": "102403040100", "Tax_Legal_": "FORTUNA 3C-55 WEST END QUARTER", "Name": "THOMAS, MARC, MICAH & ROSEMUND", "Address": "PO Box 303736", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26800, "Improved_V": 220600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.21948527800001, "SHAPE_Area": 1867.5483617499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350179.138800002634525, 258147.483300000429153 ], [ 350147.410099998116493, 258124.021699998527765 ], [ 350136.22919999808073, 258137.348900001496077 ], [ 350116.678099997341633, 258160.620299998670816 ], [ 350155.971699997782707, 258186.27309999987483 ], [ 350161.691399998962879, 258177.453999999910593 ], [ 350158.4949000030756, 258174.050299998372793 ], [ 350158.534500002861023, 258169.406599998474121 ], [ 350162.618199996650219, 258163.318300001323223 ], [ 350165.868600003421307, 258160.389600001275539 ], [ 350179.138800002634525, 258147.483300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403010300", "MAP": "F9-1522-T65", "PARCEL_NAM": "64", "ACRE": null, "LONGITUDE": -65.00804323, "LATITUDE": 18.35324219, "OBJECTID_1": 1548, "PARCEL_NO_": "102403010300", "Tax_Legal_": "FORTUNA 64 WEST END QTR", "Name": "Keithroy A, Josephine and Kristen T Humphreys", "Address": "PO BOX 304936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124900, "Improved_V": 161600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.452118767, "SHAPE_Area": 2789.7537741900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350670.168200001120567, 258095.403299998492002 ], [ 350619.591600000858307, 258096.553199999034405 ], [ 350620.255900003015995, 258113.234999999403954 ], [ 350624.570500001311302, 258174.698499999940395 ], [ 350638.150100000202656, 258189.7972999997437 ], [ 350638.184299997985363, 258185.786800000816584 ], [ 350639.85809999704361, 258178.6233000010252 ], [ 350656.390699997544289, 258131.051500000059605 ], [ 350665.413000002503395, 258113.182399999350309 ], [ 350667.05799999833107, 258109.396200001239777 ], [ 350667.887699998915195, 258106.6587999984622 ], [ 350669.554200001060963, 258100.339600000530481 ], [ 350670.168200001120567, 258095.403299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01994394, "LATITUDE": 18.35347429, "OBJECTID_1": 1232, "PARCEL_NO_": "102304010200", "Tax_Legal_": "BORDEAUX 23 WEST END QTR", "Name": "STEPHENS, M & D", "Address": "20853 Isherwood Ter", "City": "Ashburn", "State": "Virginia", "Zip": 20147, "Country": "United States", "Land_Value": 32400, "Improved_V": 4100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.939550295, "SHAPE_Area": 1350.51129743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349389.677400000393391, 258120.261900000274181 ], [ 349353.874200001358986, 258158.17680000141263 ], [ 349362.660899996757507, 258167.958999998867512 ], [ 349371.478200003504753, 258174.152899999171495 ], [ 349412.153499998152256, 258132.267099998891354 ], [ 349389.677400000393391, 258120.261900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010100", "MAP": "A9-469-T95", "PARCEL_NAM": "4B-A", "ACRE": ".12", "LONGITUDE": -64.97993255, "LATITUDE": 18.35356312, "OBJECTID_1": 2538, "PARCEL_NO_": "102603010100", "Tax_Legal_": "SANTA MARIA 4B SOUTH SIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.636390355299994, "SHAPE_Area": 363.647772831 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353625.883100003004074, 258173.720499999821186 ], [ 353597.547100000083447, 258186.998599998652935 ], [ 353607.854699999094009, 258207.559000000357628 ], [ 353620.962499998509884, 258183.390599999576807 ], [ 353625.883100003004074, 258173.720499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403044400", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-40", "ACRE": ".23", "LONGITUDE": -65.0094797, "LATITUDE": 18.35351135, "OBJECTID_1": 1806, "PARCEL_NO_": "102403044400", "Tax_Legal_": "FORTUNA 3C-40 WESTEND QTR.", "Name": "EDWARDS, EVELYN A", "Address": "PO Box 307346", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.639595894, "SHAPE_Area": 801.25193399900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350498.267099998891354, 258139.889800000935793 ], [ 350467.567900002002716, 258146.604699999094009 ], [ 350477.93129999935627, 258160.621700000017881 ], [ 350486.622699998319149, 258181.591099999845028 ], [ 350498.724600002169609, 258180.84569999948144 ], [ 350498.267099998891354, 258139.889800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98709721, "LATITUDE": 18.3534791, "OBJECTID_1": 2136, "PARCEL_NO_": "102504016500", "Tax_Legal_": "BONNE ESPERANCE 3A-5 WEST END QTR", "Name": "DOOKHAM, ISAAC & HELEN", "Address": "PO Box 306542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28100, "Improved_V": 117300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.91012745200001, "SHAPE_Area": 1259.36470401 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352872.866300001740456, 258158.269299998879433 ], [ 352839.874099999666214, 258150.188799999654293 ], [ 352838.93469999730587, 258165.802099999040365 ], [ 352837.095499999821186, 258192.384799998253584 ], [ 352863.653499998152256, 258198.512800000607967 ], [ 352869.522399999201298, 258172.174100000411272 ], [ 352869.55120000243187, 258168.796900000423193 ], [ 352872.866300001740456, 258158.269299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0058623, "LATITUDE": 18.35301786, "OBJECTID_1": 1870, "PARCEL_NO_": "102404030300", "Tax_Legal_": "FORTUNA 43 WEST END QTR", "Name": "de LYROT, LOUIS", "Address": "PO Box 400", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 100800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.26096613300001, "SHAPE_Area": 4281.4789013500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350898.670000001788139, 258182.430300001055002 ], [ 350900.388700000941753, 258169.989900000393391 ], [ 350895.01240000128746, 258138.492899999022484 ], [ 350882.442299999296665, 258099.548900000751019 ], [ 350899.468400001525879, 258088.711300000548363 ], [ 350885.881499998271465, 258074.456900000572205 ], [ 350881.878700003027916, 258071.046599999070168 ], [ 350865.858599998056889, 258058.460999999195337 ], [ 350840.976199999451637, 258044.958399999886751 ], [ 350837.750900000333786, 258044.932000000029802 ], [ 350834.514899998903275, 258046.172100000083447 ], [ 350833.679799996316433, 258049.54280000180006 ], [ 350845.452600002288818, 258087.424899999052286 ], [ 350847.04730000346899, 258089.548900000751019 ], [ 350847.02929999679327, 258091.659600000828505 ], [ 350848.62389999628067, 258093.783599998801947 ], [ 350850.189800001680851, 258099.28489999845624 ], [ 350852.571000002324581, 258103.737300001084805 ], [ 350858.744599997997284, 258136.296300001442432 ], [ 350862.704199999570847, 258144.772399999201298 ], [ 350865.087200000882149, 258149.013799998909235 ], [ 350872.259499996900558, 258158.993900001049042 ], [ 350877.855099998414516, 258164.739199999719858 ], [ 350898.670000001788139, 258182.430300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97182604, "LATITUDE": 18.35348939, "OBJECTID_1": 2694, "PARCEL_NO_": "102604020300", "Tax_Legal_": "CROWN&HAWK ESTATE 6B REMAINDER No.3 SOUTHSIDE QTR.", "Name": "FRANCOIS, PEDRITO-TRUSTEE", "Address": "PO Box 66", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 131800, "Improved_V": 153400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.92485170200001, "SHAPE_Area": 1108.43254637 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354500.710500001907349, 258183.413699999451637 ], [ 354459.056100003421307, 258174.548700001090765 ], [ 354451.4695999994874, 258170.913600001484156 ], [ 354447.626299999654293, 258167.433299999684095 ], [ 354447.270900003612041, 258209.151900000870228 ], [ 354468.319600000977516, 258199.402800001204014 ], [ 354481.263700000941753, 258194.442499998956919 ], [ 354502.285400003194809, 258187.859600000083447 ], [ 354509.547600001096725, 258187.285700000822544 ], [ 354500.710500001907349, 258183.413699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404042000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00251598, "LATITUDE": 18.35332742, "OBJECTID_1": 1912, "PARCEL_NO_": "102404042000", "Tax_Legal_": "FORTUNA 77-29 WEST END QTR", "Name": "CECILIA P SENTHILL HARRIGAN LIVING TRUST", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040582, "Country": "United States", "Land_Value": 62400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.63967207799999, "SHAPE_Area": 3542.6121511199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351254.821999996900558, 258118.639699999243021 ], [ 351215.43860000371933, 258103.540800001472235 ], [ 351212.179099999368191, 258107.524900000542402 ], [ 351211.358400002121925, 258109.206999998539686 ], [ 351209.73139999806881, 258110.882399998605251 ], [ 351203.183799996972084, 258122.227899998426437 ], [ 351198.225500002503395, 258136.33049999922514 ], [ 351197.394000001251698, 258139.278999999165535 ], [ 351196.513999998569489, 258147.926699999719858 ], [ 351194.81139999628067, 258158.467399999499321 ], [ 351196.303599998354912, 258172.622900001704693 ], [ 351195.412699997425079, 258182.537000000476837 ], [ 351248.717500001192093, 258172.629700001329184 ], [ 351251.975100003182888, 258168.856699999421835 ], [ 351249.583099998533726, 258165.670699998736382 ], [ 351248.083800002932549, 258152.359499998390675 ], [ 351249.719800002872944, 258149.628699999302626 ], [ 351254.710500001907349, 258131.726599998772144 ], [ 351254.760899998247623, 258125.816399998962879 ], [ 351254.821999996900558, 258118.639699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-484-T95", "PARCEL_NAM": "109", "ACRE": null, "LONGITUDE": -65.01691729, "LATITUDE": 18.35355093, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.147871995, "SHAPE_Area": 1035.7970350400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349705.638599999248981, 258136.146800000220537 ], [ 349673.179300002753735, 258160.156899999827147 ], [ 349678.780299998819828, 258165.268899999558926 ], [ 349688.425499998033047, 258168.936500001698732 ], [ 349719.058200001716614, 258170.031599998474121 ], [ 349729.549300000071526, 258169.061999998986721 ], [ 349705.638599999248981, 258136.146800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "I", "ACRE": ".659", "LONGITUDE": -65.01650396, "LATITUDE": 18.35333114, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.73345205499999, "SHAPE_Area": 2887.8081201700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349742.95549999922514, 258109.854400001466274 ], [ 349724.297100000083447, 258123.000599998980761 ], [ 349705.638599999248981, 258136.146800000220537 ], [ 349729.549300000071526, 258169.061999998986721 ], [ 349741.681699998676777, 258164.728300001472235 ], [ 349744.91950000077486, 258163.277100000530481 ], [ 349750.601499997079372, 258158.890700001269579 ], [ 349775.001299999654293, 258134.392400000244379 ], [ 349782.321000002324581, 258127.064100001007318 ], [ 349776.110600002110004, 258110.806099999696016 ], [ 349760.804099999368191, 258097.123799998313189 ], [ 349742.95549999922514, 258109.854400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00360916, "LATITUDE": 18.35336183, "OBJECTID_1": 1909, "PARCEL_NO_": "102404041700", "Tax_Legal_": "FORTUNA 77-7 WEST END QTR", "Name": "ELLIS, WALTER & LYDIA", "Address": "PO Box 8916", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53000, "Improved_V": 203300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.72943574499999, "SHAPE_Area": 2826.0365748700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351135.509300000965595, 258115.130100000649691 ], [ 351091.140600003302097, 258117.30009999871254 ], [ 351083.644599996507168, 258145.3141999989748 ], [ 351083.563699997961521, 258154.812699999660254 ], [ 351086.573100000619888, 258180.168600000441074 ], [ 351128.512199997901917, 258179.245200000703335 ], [ 351127.099200002849102, 258155.802299998700619 ], [ 351128.783699996769428, 258147.372299998998642 ], [ 351133.731299996376038, 258134.536100000143051 ], [ 351135.509300000965595, 258115.130100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-DI", "ACRE": "1.45", "LONGITUDE": -65.01044845, "LATITUDE": 18.35319496, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.50863188900001, "SHAPE_Area": 6116.3150711999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350450.770199999213219, 258130.635200001299381 ], [ 350439.715599998831749, 258103.10249999910593 ], [ 350428.652000002563, 258076.625300001353025 ], [ 350360.700599998235703, 258102.033599998801947 ], [ 350352.619499996304512, 258104.078400000929832 ], [ 350350.976300001144409, 258107.653599999845028 ], [ 350342.097900003194809, 258108.636399999260902 ], [ 350339.702299997210503, 258105.872600000351667 ], [ 350332.438299998641014, 258106.657499998807907 ], [ 350340.037500001490116, 258161.181800000369549 ], [ 350346.42679999768734, 258168.411299999803305 ], [ 350350.417099997401237, 258173.299100000411272 ], [ 350377.939599998295307, 258160.85869999974966 ], [ 350389.217200003564358, 258162.217599999159575 ], [ 350397.425899997353554, 258145.186200000345707 ], [ 350403.9358000010252, 258138.273400001227856 ], [ 350413.658299997448921, 258132.864500001072884 ], [ 350424.174500003457069, 258128.939800001680851 ], [ 350433.861000001430511, 258127.752599999308586 ], [ 350441.924199998378754, 258127.818500000983477 ], [ 350450.770199999213219, 258130.635200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403017700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00836435, "LATITUDE": 18.35329352, "OBJECTID_1": 1619, "PARCEL_NO_": "102403017700", "Tax_Legal_": "FORTUNA 3C-7 WEST END QTR.", "Name": "LEWALIE, ANNA R. & HENLEY, LEW", "Address": "PO Box 305855", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 84700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.16515177100001, "SHAPE_Area": 1518.0797694600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350620.255900003015995, 258113.234999999403954 ], [ 350583.142099998891354, 258115.675500001758337 ], [ 350586.131800003349781, 258143.353199999779463 ], [ 350587.730099998414516, 258145.054999999701977 ], [ 350598.975299999117851, 258150.213300000876188 ], [ 350600.580700002610683, 258151.070799998939037 ], [ 350608.600699998438358, 258156.2027000002563 ], [ 350613.398999996483326, 258160.885999999940395 ], [ 350624.570500001311302, 258174.698499999940395 ], [ 350620.255900003015995, 258113.234999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00411962, "LATITUDE": 18.35306543, "OBJECTID_1": 1881, "PARCEL_NO_": "102404031400", "Tax_Legal_": "FORTUNA 46 WEST END QTR", "Name": "GRIFFITH, ROSALIE J", "Address": "7217 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132000, "Improved_V": 67400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 339.68464287199998, "SHAPE_Area": 5491.3990394800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351065.197599999606609, 258038.9831000007689 ], [ 351008.686300002038479, 258141.32319999858737 ], [ 351030.359600000083447, 258152.899599999189377 ], [ 351077.719899997115135, 258178.196299999952316 ], [ 351074.683399997651577, 258156.006599999964237 ], [ 351074.796700000762939, 258142.708599999547005 ], [ 351081.459399998188019, 258117.854100000113249 ], [ 351084.115699999034405, 258090.011500000953674 ], [ 351082.600199997425079, 258078.600000001490116 ], [ 351079.477399997413158, 258066.542100001126528 ], [ 351077.094499997794628, 258062.300799999386072 ], [ 351074.734899997711182, 258055.315400000661612 ], [ 351065.197599999606609, 258038.9831000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504015700", "MAP": null, "PARCEL_NAM": "3A-3", "ACRE": null, "LONGITUDE": -64.98749885, "LATITUDE": 18.35348908, "OBJECTID_1": 2128, "PARCEL_NO_": "102504015700", "Tax_Legal_": "3A-3 BONNE ESPERANCE WEST END QTR", "Name": "NEWTON, SHELIA", "Address": "PO Box 307377", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32000, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.740967579, "SHAPE_Area": 1306.5954598400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352838.93469999730587, 258165.802099999040365 ], [ 352781.722499996423721, 258161.111999999731779 ], [ 352780.903599999845028, 258162.582899998873472 ], [ 352779.150700002908707, 258179.033900000154972 ], [ 352837.095499999821186, 258192.384799998253584 ], [ 352838.93469999730587, 258165.802099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404042100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00180955, "LATITUDE": 18.35337209, "OBJECTID_1": 1913, "PARCEL_NO_": "102404042100", "Tax_Legal_": "FORTUNA 77-40 WEST END QTR.", "Name": "CHARLES, MARVLYN", "Address": "PO Box 9380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 124200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.59874383100001, "SHAPE_Area": 2811.9961251300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351336.097699999809265, 258138.303300000727177 ], [ 351300.742200002074242, 258123.659600000828505 ], [ 351262.725100003182888, 258137.491700001060963 ], [ 351259.426100000739098, 258146.119600001722574 ], [ 351256.936999998986721, 258154.331799998879433 ], [ 351256.892099998891354, 258159.608800001442432 ], [ 351258.488499999046326, 258161.521699998527765 ], [ 351260.921800002455711, 258159.852899998426437 ], [ 351323.654200002551079, 258179.153599999845028 ], [ 351336.097699999809265, 258138.303300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403043000", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-52", "ACRE": null, "LONGITUDE": -65.01192933, "LATITUDE": 18.35324269, "OBJECTID_1": 1792, "PARCEL_NO_": "102403043000", "Tax_Legal_": "FORTUNA 3C-52 No.8 WESTEND QTR.", "Name": "HUNT, RONNIE R", "Address": "PO Box 1551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26800, "Improved_V": 5300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.811782988, "SHAPE_Area": 1031.2031902799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350238.846600003540516, 258146.853799998760223 ], [ 350239.421099998056889, 258140.093299999833107 ], [ 350240.272299997508526, 258134.822999998927116 ], [ 350241.946099996566772, 258127.659499999135733 ], [ 350243.605499997735023, 258122.184599999338388 ], [ 350246.90259999781847, 258113.767900001257658 ], [ 350230.172799997031689, 258103.119600001722574 ], [ 350227.621299996972084, 258105.377399999648333 ], [ 350223.528599999845028, 258112.521099999547005 ], [ 350219.461000002920628, 258116.709699999541044 ], [ 350217.006099998950958, 258120.911499999463558 ], [ 350207.886699996888638, 258130.653900001198053 ], [ 350227.663500003516674, 258150.762600000947714 ], [ 350238.846600003540516, 258146.853799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020100", "MAP": null, "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.97392023, "LATITUDE": 18.3533035, "OBJECTID_1": 2692, "PARCEL_NO_": "102604020100", "Tax_Legal_": "CROWN & HAWK 5 S S QTR", "Name": "SAMUEL, A", "Address": "2212 Boller Ave", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 97400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.19855401199999, "SHAPE_Area": 806.35827780600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354253.309299997985363, 258165.34569999948144 ], [ 354270.443199999630451, 258141.843499999493361 ], [ 354245.40259999781847, 258146.915899999439716 ], [ 354233.943400003015995, 258166.875999998301268 ], [ 354233.065099999308586, 258175.3125 ], [ 354233.670000001788139, 258198.96000000089407 ], [ 354236.087200000882149, 258199.190799999982119 ], [ 354251.664300002157688, 258169.131999999284744 ], [ 354253.309299997985363, 258165.34569999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02013793, "LATITUDE": 18.35334762, "OBJECTID_1": 1231, "PARCEL_NO_": "102304010100", "Tax_Legal_": "BORDEAUX 24 WEST END QTR", "Name": "WEEKLY, JOE ROBERT", "Address": "PO Box 7612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33500, "Improved_V": 3000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.58982831099999, "SHAPE_Area": 1231.2813004699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349367.201399996876717, 258108.256700001657009 ], [ 349334.662900000810623, 258141.554200001060963 ], [ 349353.874200001358986, 258158.17680000141263 ], [ 349389.677400000393391, 258120.261900000274181 ], [ 349367.201399996876717, 258108.256700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0171385, "LATITUDE": 18.35328373, "OBJECTID_1": 1286, "PARCEL_NO_": "102304030100", "Tax_Legal_": "BORDEAUX 11 WEST END QTR", "Name": "FOY, ALDA", "Address": "PO Box 8981", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31800, "Improved_V": 62800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.83214991400001, "SHAPE_Area": 1705.98943313 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349673.179300002753735, 258160.156899999827147 ], [ 349705.638599999248981, 258136.146800000220537 ], [ 349676.960199996829033, 258094.959899999201298 ], [ 349663.976499997079372, 258104.563900001347065 ], [ 349659.075699999928474, 258111.912099998444319 ], [ 349658.247800000011921, 258114.438400000333786 ], [ 349658.964199997484684, 258124.999000001698732 ], [ 349670.789099998772144, 258156.759799998253584 ], [ 349673.179300002753735, 258160.156899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403019400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00912026, "LATITUDE": 18.35339598, "OBJECTID_1": 1635, "PARCEL_NO_": "102403019400", "Tax_Legal_": "3C-14 FORTUNA WEST END QUARTER", "Name": "PHILLIPS, MONA A", "Address": "6311 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29800, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.388838107, "SHAPE_Area": 1191.9644503899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350543.258799999952316, 258159.256499998271465 ], [ 350543.553700000047684, 258124.639600001275539 ], [ 350506.357199996709824, 258136.789599999785423 ], [ 350506.92620000243187, 258164.658700000494719 ], [ 350543.239000000059605, 258161.578400000929832 ], [ 350543.258799999952316, 258159.256499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404041900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00308131, "LATITUDE": 18.35332109, "OBJECTID_1": 1911, "PARCEL_NO_": "102404041900", "Tax_Legal_": "FORTUNA 77-22 #8 WEST END QTR.", "Name": "KARSTENSEN, HELMUT", "Address": "PO Box 305159", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75600, "Improved_V": 1002600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.61526594899999, "SHAPE_Area": 2443.4972546499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351195.160300001502037, 258117.518100000917912 ], [ 351144.350000001490116, 258118.579900000244379 ], [ 351142.604299999773502, 258134.186599999666214 ], [ 351136.798299998044968, 258153.137499999254942 ], [ 351136.686800003051758, 258166.224399998784065 ], [ 351137.466099999845028, 258169.397100001573563 ], [ 351185.862899996340275, 258167.682300001382828 ], [ 351185.990500003099442, 258152.695700000971556 ], [ 351187.705700002610683, 258140.677400000393391 ], [ 351188.544299997389317, 258136.88459999859333 ], [ 351191.861299999058247, 258126.146000001579523 ], [ 351195.160300001502037, 258117.518100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": null, "PARCEL_NAM": null, "ACRE": "27.12", "LONGITUDE": -65.01204022, "LATITUDE": 18.35248266, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1168.20803836, "SHAPE_Area": 22900.447530199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350002.501900002360344, 258068.349300000816584 ], [ 350116.678099997341633, 258160.620299998670816 ], [ 350136.22919999808073, 258137.348900001496077 ], [ 350151.707400001585484, 258118.899399999529123 ], [ 350167.185599997639656, 258100.449799999594688 ], [ 350184.290799997746944, 258080.324799999594688 ], [ 350199.769000001251698, 258061.875300001353025 ], [ 350230.55629999935627, 258044.817600000649691 ], [ 350236.216700002551079, 258042.964099999517202 ], [ 350243.493299998342991, 258040.70160000026226 ], [ 350281.494199998676777, 258028.769200000911951 ], [ 350304.130300000309944, 258021.988400001078844 ], [ 350312.211400002241135, 258019.943599998950958 ], [ 350345.345799997448921, 258011.348799999803305 ], [ 350375.247699998319149, 258003.572000000625849 ], [ 350379.288199998438358, 258002.549600001424551 ], [ 350415.656800001859665, 257992.925900001078844 ], [ 350459.944600000977516, 258000.254399999976158 ], [ 350463.187899999320507, 257998.170000001788139 ], [ 350468.058100000023842, 257994.410199999809265 ], [ 350470.496799997985363, 257992.108199998736382 ], [ 350472.9408999979496, 257989.172800000756979 ], [ 350473.803000003099442, 257982.635999999940395 ], [ 350469.857699997723103, 257972.471200000494719 ], [ 350455.257799997925758, 257982.484200000762939 ], [ 350431.106200002133846, 257977.85359999909997 ], [ 350438.726199999451637, 257935.275100000202656 ], [ 350431.505400002002716, 257930.994100000709295 ], [ 350420.249399997293949, 257927.102299999445677 ], [ 350409.770900003612041, 257926.594300001859665 ], [ 350398.466399997472763, 257928.401599999517202 ], [ 350395.233900003135204, 257929.2195999994874 ], [ 350401.427299998700619, 257959.456599999219179 ], [ 350376.386600002646446, 257964.528999999165535 ], [ 350352.960400000214577, 257969.403499998152256 ], [ 350327.919799998402596, 257974.475900001823902 ], [ 350303.687200002372265, 257979.343800000846386 ], [ 350279.454700000584126, 257984.211800001561642 ], [ 350266.530299998819828, 257986.85020000115037 ], [ 350250.305200003087521, 257998.327500000596046 ], [ 350244.626800000667572, 258002.291799999773502 ], [ 350234.891699999570847, 258009.178300000727177 ], [ 350216.231499999761581, 258022.535500001162291 ], [ 350194.326200000941753, 258038.188200000673532 ], [ 350164.420699998736382, 258046.387200001627207 ], [ 350131.281000003218651, 258055.615200001746416 ], [ 350105.493299998342991, 258053.715399999171495 ], [ 350082.927400000393391, 258052.26410000026226 ], [ 350059.556900002062321, 258050.595199998468161 ], [ 350048.237999998033047, 258054.0912000015378 ], [ 350012.663099996745586, 258065.199099998921156 ], [ 350002.501900002360344, 258068.349300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403019000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00880248, "LATITUDE": 18.35335093, "OBJECTID_1": 1631, "PARCEL_NO_": "102403019000", "Tax_Legal_": "FORTUNA 3C-10 WESTEND QTR", "Name": "WEBSTER, FIDELIA", "Address": "PO Box 304515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28100, "Improved_V": 117200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.21241881399999, "SHAPE_Area": 1058.00837772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350574.179200001060963, 258126.578999999910593 ], [ 350543.553700000047684, 258124.639600001275539 ], [ 350543.258799999952316, 258159.256499998271465 ], [ 350577.152699999511242, 258156.156399998813868 ], [ 350577.267800003290176, 258142.647399999201298 ], [ 350574.179200001060963, 258126.578999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504011200", "MAP": "F9-2666-T70", "PARCEL_NAM": "3-6B", "ACRE": null, "LONGITUDE": -64.98884289, "LATITUDE": 18.35329772, "OBJECTID_1": 2087, "PARCEL_NO_": "102504011200", "Tax_Legal_": "BONNE ESPERANCE 3-6B WEST END QTR", "Name": "CHINNERY, RUDEL", "Address": "PO Box 507", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.538726102, "SHAPE_Area": 1048.98848226 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352691.483599998056889, 258159.940000001341105 ], [ 352683.586800001561642, 258132.971599999815226 ], [ 352664.177100002765656, 258139.462699998170137 ], [ 352647.167199999094009, 258148.400499999523163 ], [ 352653.409100003540516, 258172.938499998301268 ], [ 352665.555900000035763, 258166.916200000792742 ], [ 352686.574000000953674, 258160.755399998277426 ], [ 352691.483599998056889, 258159.940000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011000", "MAP": "G9-2141-T72", "PARCEL_NAM": "105", "ACRE": ".06", "LONGITUDE": -65.01910567, "LATITUDE": 18.35341663, "OBJECTID_1": 1240, "PARCEL_NO_": "102304011000", "Tax_Legal_": "BORDEAUX 28&105 WEST END QTR", "Name": "GIFT, JAMES", "Address": "PO Box 303889", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24500, "Improved_V": 83200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.081405893099998, "SHAPE_Area": 232.73868798199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349475.875500001013279, 258130.044399999082088 ], [ 349471.800800003111362, 258135.077300000935793 ], [ 349463.694499999284744, 258140.077199999243021 ], [ 349457.227799996733665, 258141.924100000411272 ], [ 349450.777300000190735, 258141.871300000697374 ], [ 349466.86599999666214, 258148.199799999594688 ], [ 349471.84009999781847, 258147.6706000007689 ], [ 349476.496799997985363, 258145.02479999884963 ], [ 349480.730200000107288, 258140.368099998682737 ], [ 349481.788500003516674, 258135.711399998515844 ], [ 349475.875500001013279, 258130.044399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01870624, "LATITUDE": 18.35326635, "OBJECTID_1": 1259, "PARCEL_NO_": "102304020800", "Tax_Legal_": "BORDEAUX ESTATE 29 No.6 WEST END QTR.", "Name": "JAMES (LIFE ESTATE), ELEANOR", "Address": "PO Box 305011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38200, "Improved_V": 126800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.46615962600001, "SHAPE_Area": 1331.87445615 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349522.105099998414516, 258098.758699998259544 ], [ 349503.513099998235703, 258104.094999998807907 ], [ 349492.865599997341633, 258123.42850000038743 ], [ 349493.578400000929832, 258134.411200001835823 ], [ 349494.370399996638298, 258136.1064000017941 ], [ 349502.375900000333786, 258142.926899999380112 ], [ 349510.422899998724461, 258144.892599999904633 ], [ 349516.8716000020504, 258145.156500000506639 ], [ 349533.845499999821186, 258140.440200001001358 ], [ 349522.105099998414516, 258098.758699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011000", "MAP": "G9-1966-T72", "PARCEL_NAM": "28", "ACRE": null, "LONGITUDE": -65.0192617, "LATITUDE": 18.35326426, "OBJECTID_1": 1240, "PARCEL_NO_": "102304011000", "Tax_Legal_": "BORDEAUX 28&105 WEST END QTR", "Name": "GIFT, JAMES", "Address": "PO Box 303889", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24500, "Improved_V": 83200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.334203895, "SHAPE_Area": 1086.2638508499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349456.824299998581409, 258094.635800000280142 ], [ 349430.707599997520447, 258131.363499999046326 ], [ 349450.777300000190735, 258141.871300000697374 ], [ 349457.227799996733665, 258141.924100000411272 ], [ 349463.694499999284744, 258140.077199999243021 ], [ 349471.800800003111362, 258135.077300000935793 ], [ 349475.875500001013279, 258130.044399999082088 ], [ 349466.314800001680851, 258116.456199999898672 ], [ 349461.55969999730587, 258106.706900000572205 ], [ 349457.608999997377396, 258097.175400000065565 ], [ 349456.824299998581409, 258094.635800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01845665, "LATITUDE": 18.35319232, "OBJECTID_1": 1260, "PARCEL_NO_": "102304020900", "Tax_Legal_": "BORDEAUX 30 WEST END QTR", "Name": "JACOBS JR, CORDELL A.", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 95000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.36375565899999, "SHAPE_Area": 1014.3491585 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349556.478000000119209, 258134.081599999219179 ], [ 349544.735699996352196, 258092.611099999397993 ], [ 349522.105099998414516, 258098.758699998259544 ], [ 349533.845499999821186, 258140.440200001001358 ], [ 349556.478000000119209, 258134.081599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-144", "ACRE": ".288", "LONGITUDE": -65.00956, "LATITUDE": 18.35325241, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.79536588799999, "SHAPE_Area": 967.62846976599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350492.878300003707409, 258109.870400000363588 ], [ 350452.37389999628067, 258131.70380000025034 ], [ 350461.184000000357628, 258138.741999998688698 ], [ 350467.567900002002716, 258146.604699999094009 ], [ 350498.267099998891354, 258139.889800000935793 ], [ 350497.583099998533726, 258125.529899999499321 ], [ 350495.236100003123283, 258117.066899999976158 ], [ 350495.259499996900558, 258114.322900000959635 ], [ 350492.878300003707409, 258109.870400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504015800", "MAP": null, "PARCEL_NAM": "3A-4", "ACRE": null, "LONGITUDE": -64.98751388, "LATITUDE": 18.35329832, "OBJECTID_1": 2129, "PARCEL_NO_": "102504015800", "Tax_Legal_": "BONNE ES[ERANCE 3A-4 WEST END QTR", "Name": "CARPENTER, MILLICENT", "Address": "PO Box 9091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34300, "Improved_V": 103200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.25897293599999, "SHAPE_Area": 1083.0305345199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352837.458700001239777, 258149.746899999678135 ], [ 352834.238899998366833, 258149.08729999884963 ], [ 352784.332000002264977, 258138.757399998605251 ], [ 352782.593500003218651, 258153.51969999819994 ], [ 352781.722499996423721, 258161.111999999731779 ], [ 352838.93469999730587, 258165.802099999040365 ], [ 352839.874099999666214, 258150.188799999654293 ], [ 352837.458700001239777, 258149.746899999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021900", "MAP": null, "PARCEL_NAM": "30", "ACRE": null, "LONGITUDE": -65.00661377, "LATITUDE": 18.3528709, "OBJECTID_1": 1864, "PARCEL_NO_": "102404021900", "Tax_Legal_": "FORTUNA 30 & 31A WEST END QTR", "Name": "DELYROT, LOUIS & ODILE", "Address": "PO Box 400", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 99100, "Improved_V": 152300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.50217476, "SHAPE_Area": 3885.55880114 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350749.249300003051758, 258096.372999999672174 ], [ 350755.517399996519089, 258141.872699998319149 ], [ 350835.121699996292591, 258083.675000000745058 ], [ 350830.285499997437, 258069.357799999415874 ], [ 350824.036399997770786, 258045.664200000464916 ], [ 350822.89639999717474, 258039.732999999076128 ], [ 350793.018399998545647, 258060.50450000166893 ], [ 350795.565600000321865, 258064.340900000184774 ], [ 350749.249300003051758, 258096.372999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01693179, "LATITUDE": 18.35311406, "OBJECTID_1": 1287, "PARCEL_NO_": "102304030200", "Tax_Legal_": "BORDEAUX 10 WEST END QTR", "Name": "GERARD, MYRNA & VINCENT , MARION & ANGELO WILLIAMS", "Address": "10 Bordeaux", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25700, "Improved_V": 142400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.844791163, "SHAPE_Area": 1134.3493593400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349724.297100000083447, 258123.000599998980761 ], [ 349694.812399998307228, 258081.807100001722574 ], [ 349676.960199996829033, 258094.959899999201298 ], [ 349705.638599999248981, 258136.146800000220537 ], [ 349724.297100000083447, 258123.000599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01823911, "LATITUDE": 18.35313247, "OBJECTID_1": 1261, "PARCEL_NO_": "102304021000", "Tax_Legal_": "BORDEAUX 31 WEST END QTR", "Name": "ROSALIE P HUGHES (LIFE ESTATE)", "Address": "PO Box 8163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 110100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.743382204, "SHAPE_Area": 1048.73441604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349579.920400001108646, 258127.307399999350309 ], [ 349568.176399998366833, 258086.048000000417233 ], [ 349544.735699996352196, 258092.611099999397993 ], [ 349556.478000000119209, 258134.081599999219179 ], [ 349575.877999998629093, 258128.540800001472235 ], [ 349579.920400001108646, 258127.307399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504011600", "MAP": "D9-8876-T014", "PARCEL_NAM": "3-6C", "ACRE": ".496", "LONGITUDE": -64.98834064, "LATITUDE": 18.35316576, "OBJECTID_1": 2090, "PARCEL_NO_": "102504011600", "Tax_Legal_": "BONNE ESPERANCE 3-6C WEST END QTR", "Name": "BENNETT, RANDOLPH & LILLIAN", "Address": "PO Box 305449", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 269400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.563423484, "SHAPE_Area": 2392.51866771 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352753.686700001358986, 258139.139899998903275 ], [ 352745.869999997317791, 258110.156100001186132 ], [ 352734.547399997711182, 258114.074200000613928 ], [ 352724.841099999845028, 258117.583299998193979 ], [ 352696.526699997484684, 258128.328400000929832 ], [ 352690.05460000038147, 258130.808600001037121 ], [ 352683.586800001561642, 258132.971599999815226 ], [ 352691.483599998056889, 258159.940000001341105 ], [ 352698.686700001358986, 258158.743599999696016 ], [ 352737.421999998390675, 258155.260899998247623 ], [ 352746.296899996697903, 258154.700300000607967 ], [ 352757.588799998164177, 258154.37049999833107 ], [ 352753.686700001358986, 258139.139899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01949883, "LATITUDE": 18.35314871, "OBJECTID_1": 1239, "PARCEL_NO_": "102304010900", "Tax_Legal_": "27 BORDEAUX WEST END QTR", "Name": "ROBLES, MANUELITA L A", "Address": "PO Box 374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39000, "Improved_V": 92500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.83234261200001, "SHAPE_Area": 918.41678597099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349450.668700002133846, 258103.292399998754263 ], [ 349428.191100001335144, 258089.793400000780821 ], [ 349407.428900003433228, 258118.929499998688698 ], [ 349430.707599997520447, 258131.363499999046326 ], [ 349450.668700002133846, 258103.292399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98701826, "LATITUDE": 18.35315039, "OBJECTID_1": 2096, "PARCEL_NO_": "102504012300", "Tax_Legal_": "BONNE ESPERANCE 3A-1 WEST END QTR", "Name": "DANIEL, HILDA (LIFE ESTATE)", "Address": "PO BOX 304562", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40600, "Improved_V": 175200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.28972563400001, "SHAPE_Area": 1395.1016309300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352894.911899998784065, 258126.152499999850988 ], [ 352843.349299997091293, 258120.875300001353025 ], [ 352842.519599996507168, 258123.612700000405312 ], [ 352839.227799996733665, 258131.396200001239777 ], [ 352837.458700001239777, 258149.746899999678135 ], [ 352839.874099999666214, 258150.188799999654293 ], [ 352872.866300001740456, 258158.269299998879433 ], [ 352873.690600000321865, 258156.165100000798702 ], [ 352880.252599999308586, 258143.131099998950958 ], [ 352885.956200003623962, 258136.211599998176098 ], [ 352894.911899998784065, 258126.152499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00448663, "LATITUDE": 18.35285206, "OBJECTID_1": 1882, "PARCEL_NO_": "102404031500", "Tax_Legal_": "FORTUNA 44 WEST END QTR", "Name": "FORTUNA HILLCREST LLC", "Address": "PO Box 400", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 113600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.51991381800002, "SHAPE_Area": 3927.95626412 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351058.853200003504753, 258026.476700000464916 ], [ 350962.935099996626377, 258116.461899999529123 ], [ 350966.948700003325939, 258118.605599999427795 ], [ 351008.686300002038479, 258141.32319999858737 ], [ 351065.197599999606609, 258038.9831000007689 ], [ 351058.853200003504753, 258026.476700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-143", "ACRE": ".340", "LONGITUDE": -65.00904112000001, "LATITUDE": 18.35313261, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.344058117, "SHAPE_Area": 1420.80825368 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350567.017700001597404, 258115.332400001585484 ], [ 350562.221199996769428, 258110.438000001013279 ], [ 350553.389499999582767, 258105.932700000703335 ], [ 350542.117299996316433, 258103.940600000321865 ], [ 350526.80460000038147, 258102.970899999141693 ], [ 350516.309900000691414, 258104.362700000405312 ], [ 350510.631599999964237, 258108.326999999582767 ], [ 350507.368500001728535, 258112.733300000429153 ], [ 350506.549599997699261, 258114.204199999570847 ], [ 350505.716399997472763, 258117.363800000399351 ], [ 350506.475900001823902, 258122.858399998396635 ], [ 350506.357199996709824, 258136.789599999785423 ], [ 350543.553700000047684, 258124.639600001275539 ], [ 350574.179200001060963, 258126.578999999910593 ], [ 350573.390900000929832, 258124.461599998176098 ], [ 350571.810599997639656, 258120.649000000208616 ], [ 350567.017700001597404, 258115.332400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504011900", "MAP": "F9-2682-T70", "PARCEL_NAM": "3-6A", "ACRE": null, "LONGITUDE": -64.98787975, "LATITUDE": 18.35320551, "OBJECTID_1": 2093, "PARCEL_NO_": "102504011900", "Tax_Legal_": "3-6A BONNE ESPERANCE #2 WEST END QTR", "Name": "AYALA, MARIA", "Address": "3-6A Bonne Esperance", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.42560696300001, "SHAPE_Area": 579.12916698200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352784.332000002264977, 258138.757399998605251 ], [ 352786.034500002861023, 258128.216699998825788 ], [ 352753.686700001358986, 258139.139899998903275 ], [ 352757.588799998164177, 258154.37049999833107 ], [ 352782.593500003218651, 258153.51969999819994 ], [ 352784.332000002264977, 258138.757399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01801025, "LATITUDE": 18.35306855, "OBJECTID_1": 1262, "PARCEL_NO_": "102304021100", "Tax_Legal_": "32 BORDEAUX No.6 WEST END QTR.", "Name": "RHYMER, AUSTIN A. ,GRICELL O. & NEPHUNE, RAYMIE", "Address": "32 Bordeaux", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24800, "Improved_V": 97000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.67054215499999, "SHAPE_Area": 1114.34711868 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349604.979000002145767, 258120.124200001358986 ], [ 349593.233199998736382, 258079.075899999588728 ], [ 349568.176399998366833, 258086.048000000417233 ], [ 349579.920400001108646, 258127.307399999350309 ], [ 349604.979000002145767, 258120.124200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603023400", "MAP": "D9-6352-T97", "PARCEL_NAM": "2AA-7-1", "ACRE": ".39", "LONGITUDE": -64.97581697, "LATITUDE": 18.35298651, "OBJECTID_1": 2606, "PARCEL_NO_": "102603023400", "Tax_Legal_": "2Aa-7-1 CROWN&HAWK No.3 SOUTHSIDE QUARTER", "Name": "ATLANTIC TELE-NETWORK CORP.", "Address": "PO Box 6100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.901898262, "SHAPE_Area": 1806.92098573 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354036.407600000500679, 258163.99269999936223 ], [ 354063.842000000178814, 258161.895199999213219 ], [ 354056.748800002038479, 258142.627599999308586 ], [ 354054.3783999979496, 258136.908700000494719 ], [ 354049.657499998807907, 258123.149000000208616 ], [ 354073.195200003683567, 258105.187600001692772 ], [ 354081.269100002944469, 258103.987100001424551 ], [ 354080.514899998903275, 258097.859200000762939 ], [ 354073.252700001001358, 258098.433100000023842 ], [ 354057.893200002610683, 258102.951400000602007 ], [ 354044.173299998044968, 258104.316799998283386 ], [ 354023.216399997472763, 258103.300900001078844 ], [ 354036.407600000500679, 258163.99269999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022900", "MAP": "D9-6352-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97530982000001, "LATITUDE": 18.35310208, "OBJECTID_1": 2602, "PARCEL_NO_": "102603022900", "Tax_Legal_": "CROWN & HAWK 2Aa-7 REM. No.3 SOUTHSIDE QUARTER", "Name": "KNIGHT COMMUNICATIONS OF THE VI INC", "Address": "PO Box 8209", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.48379948300001, "SHAPE_Area": 2109.1259525099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354130.009999997913837, 258156.526099998503923 ], [ 354124.779399998486042, 258107.931800000369549 ], [ 354099.621899999678135, 258126.724300000816584 ], [ 354095.565099999308586, 258129.64640000090003 ], [ 354087.460600003600121, 258134.435199998319149 ], [ 354078.560599997639656, 258137.9510000012815 ], [ 354056.748800002038479, 258142.627599999308586 ], [ 354063.842000000178814, 258161.895199999213219 ], [ 354130.009999997913837, 258156.526099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403044500", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-39", "ACRE": ".25", "LONGITUDE": -65.00970554, "LATITUDE": 18.35306623, "OBJECTID_1": 1807, "PARCEL_NO_": "102403044500", "Tax_Legal_": "FORTUNA 3C-39 WESTEND QTR.", "Name": "JOSEPH, GARY S", "Address": "PO Box 303623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 161100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.930386132, "SHAPE_Area": 1194.85806065 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350473.693999998271465, 258090.081700000911951 ], [ 350439.715599998831749, 258103.10249999910593 ], [ 350450.770199999213219, 258130.635200001299381 ], [ 350452.37389999628067, 258131.70380000025034 ], [ 350492.878300003707409, 258109.870400000363588 ], [ 350491.288999997079372, 258107.113200001418591 ], [ 350488.895300000905991, 258104.138300001621246 ], [ 350480.079800002276897, 258097.733399998396635 ], [ 350478.478000000119209, 258096.453699998557568 ], [ 350476.082400001585484, 258093.689899999648333 ], [ 350473.693999998271465, 258090.081700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404042900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00196162, "LATITUDE": 18.35300404, "OBJECTID_1": 1921, "PARCEL_NO_": "102404042900", "Tax_Legal_": "FORTUNA 77-41 WEST END QTR.", "Name": "BENJAMIN, ETHLYN", "Address": "PO BOX 4380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.54501698199999, "SHAPE_Area": 1626.0749529100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351301.836300000548363, 258089.8935999982059 ], [ 351265.575599998235703, 258086.852600000798702 ], [ 351264.742299996316433, 258090.012200001627207 ], [ 351264.413199998438358, 258128.639600001275539 ], [ 351263.560199998319149, 258134.121100001037121 ], [ 351262.725100003182888, 258137.491700001060963 ], [ 351300.742200002074242, 258123.659600000828505 ], [ 351306.609399996697903, 258097.532000001519918 ], [ 351301.836300000548363, 258089.8935999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00155169, "LATITUDE": 18.35298813, "OBJECTID_1": 1922, "PARCEL_NO_": "102404043000", "Tax_Legal_": "FORTUNA 77-38 WEST END QTR", "Name": "LETTSOME, EDWIN & LOUISE", "Address": "PO Box 11637", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.368399522, "SHAPE_Area": 1872.70528227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351351.028499998152256, 258089.451799999922514 ], [ 351321.297499999403954, 258077.176199998706579 ], [ 351319.627300001680851, 258083.917500000447035 ], [ 351316.357100002467632, 258089.168099999427795 ], [ 351311.474299997091293, 258094.4054000005126 ], [ 351306.609399996697903, 258097.532000001519918 ], [ 351300.742200002074242, 258123.659600000828505 ], [ 351336.097699999809265, 258138.303300000727177 ], [ 351351.028499998152256, 258089.451799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504015900", "MAP": null, "PARCEL_NAM": "3A-6", "ACRE": null, "LONGITUDE": -64.98750173000001, "LATITUDE": 18.35307592, "OBJECTID_1": 2130, "PARCEL_NO_": "102504015900", "Tax_Legal_": "BONNE ESPERANCE 3A-6 WEST END QTR", "Name": "MARIA E AYALA (LIFE ESTATE) & FELIPE AYALA, SR.", "Address": "PO Box 302681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032681, "Country": "United States", "Land_Value": 29600, "Improved_V": 108500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.36235062099999, "SHAPE_Area": 1486.5078854599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352839.3158999979496, 258121.053399998694658 ], [ 352788.620700001716614, 258108.606100000441074 ], [ 352786.034500002861023, 258128.216699998825788 ], [ 352784.332000002264977, 258138.757399998605251 ], [ 352834.238899998366833, 258149.08729999884963 ], [ 352834.325199998915195, 258138.95549999922514 ], [ 352838.493400000035763, 258122.94649999961257 ], [ 352839.3158999979496, 258121.053399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01675916000001, "LATITUDE": 18.35299115, "OBJECTID_1": 1288, "PARCEL_NO_": "102304030300", "Tax_Legal_": "BORDEAUX 9 WEST END QTR", "Name": "CALLWOOD, ANITA", "Address": "PO Box 304656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25700, "Improved_V": 72100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.85334063, "SHAPE_Area": 1171.53439671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349742.95549999922514, 258109.854400001466274 ], [ 349713.476199999451637, 258068.027699999511242 ], [ 349694.812399998307228, 258081.807100001722574 ], [ 349724.297100000083447, 258123.000599998980761 ], [ 349742.95549999922514, 258109.854400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01898524000001, "LATITUDE": 18.35299017, "OBJECTID_1": 1241, "PARCEL_NO_": "102304011100", "Tax_Legal_": "BORDEAUX 92 6 WEST END QTR", "Name": "MCCLEAN, ROBERT, KASHMIR, KASHAN-", "Address": "PO Box 9732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 149400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.68950286, "SHAPE_Area": 1114.00682637 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349506.991899996995926, 258074.359299998730421 ], [ 349461.773699998855591, 258081.588500000536442 ], [ 349464.131499998271465, 258088.785000000149012 ], [ 349465.709899999201298, 258092.808699999004602 ], [ 349476.802299998700619, 258115.908700000494719 ], [ 349478.404100000858307, 258117.188400000333786 ], [ 349479.989799998700619, 258120.367800001055002 ], [ 349483.211400002241135, 258120.816300000995398 ], [ 349484.833099998533726, 258119.774099998176098 ], [ 349501.225400000810623, 258088.666400000452995 ], [ 349502.046099998056889, 258086.984400000423193 ], [ 349506.991899996995926, 258074.359299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01972798, "LATITUDE": 18.35302701, "OBJECTID_1": 1238, "PARCEL_NO_": "102304010800", "Tax_Legal_": "BORDEAUX 26 WEST END QTR", "Name": "HOLDER, LOUIS & KATHERINE", "Address": "PO Box 234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30800, "Improved_V": 119300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.366917218, "SHAPE_Area": 1058.52886478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349428.191100001335144, 258089.793400000780821 ], [ 349403.190600000321865, 258074.779100000858307 ], [ 349381.740199998021126, 258105.420400001108646 ], [ 349407.428900003433228, 258118.929499998688698 ], [ 349428.191100001335144, 258089.793400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0177542, "LATITUDE": 18.35299967, "OBJECTID_1": 1263, "PARCEL_NO_": "102304021200", "Tax_Legal_": "BORDEAUX 33 WEST END QTR", "Name": "WOODLEY, ALICIA M", "Address": "PO Box 11248", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 60800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.478020469, "SHAPE_Area": 1253.7467558400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349618.288199998438358, 258072.314899999648333 ], [ 349593.233199998736382, 258079.075899999588728 ], [ 349604.979000002145767, 258120.124200001358986 ], [ 349626.819600000977516, 258112.070300001651049 ], [ 349632.481700003147125, 258110.005699999630451 ], [ 349634.124899998307228, 258106.430500000715256 ], [ 349634.970799997448921, 258101.793400000780821 ], [ 349634.178900003433228, 258100.098200000822544 ], [ 349618.288199998438358, 258072.314899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403042000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01135182, "LATITUDE": 18.35292371, "OBJECTID_1": 1784, "PARCEL_NO_": "102403042000", "Tax_Legal_": "FORTUNA 3C-29 WESTEND QTR.", "Name": "GRAHAM, TREVOR S", "Address": "PO Box 11672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014672, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.364255743, "SHAPE_Area": 1069.21032715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350310.698399998247623, 258102.890999998897314 ], [ 350294.150200001895428, 258069.270500000566244 ], [ 350291.623800002038479, 258070.226399999111891 ], [ 350285.125200003385544, 258073.279699999839067 ], [ 350281.908500000834465, 258074.791000001132488 ], [ 350275.407700002193451, 258080.648400001227856 ], [ 350272.142899997532368, 258085.265700001269579 ], [ 350268.200699999928474, 258092.946400001645088 ], [ 350298.48870000243187, 258116.300999999046326 ], [ 350305.007500000298023, 258108.332800000905991 ], [ 350306.634499996900558, 258106.657400000840425 ], [ 350310.698399998247623, 258102.890999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603020200", "MAP": "D9-8553-T010", "PARCEL_NAM": null, "ACRE": "4.4", "LONGITUDE": -64.97712252, "LATITUDE": 18.35139176, "OBJECTID_1": 2574, "PARCEL_NO_": "102603020200", "Tax_Legal_": "12 CROWN & HAWK NO.3L SOUTHSIDE QTR", "Name": "MORON-MOOLENAAR, AIMEE LINDA, C & A DELAGARDE,C PETERSEN,C KUIPERS", "Address": "PO Box 11544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 214200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 408.46192254, "SHAPE_Area": 7666.7218708399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353888.576899997889996, 257894.891499999910593 ], [ 353888.612700000405312, 257894.918600000441074 ], [ 353840.488600000739098, 257995.651399999856949 ], [ 353866.943899996578693, 257989.50899999961257 ], [ 353890.357500001788139, 257986.111999999731779 ], [ 353953.303800001740456, 257980.294399999082088 ], [ 353986.369800001382828, 257979.72069999948144 ], [ 353988.790600001811981, 257979.529399998486042 ], [ 353988.005800001323223, 257976.989799998700619 ], [ 353984.820100001990795, 257972.319699998944998 ], [ 353960.061800003051758, 257944.252700001001358 ], [ 353958.454599998891354, 257943.606300000101328 ], [ 353954.462600000202656, 257938.929499998688698 ], [ 353932.852200001478195, 257919.965399999171495 ], [ 353925.643899999558926, 257914.206799998879433 ], [ 353907.221000000834465, 257899.701699998229742 ], [ 353903.214599996805191, 257896.713599998503923 ], [ 353887.982799999415874, 257886.245299998670816 ], [ 353888.717200003564358, 257894.695099998265505 ], [ 353888.576899997889996, 257894.891499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504011900", "MAP": "F9-2682-T70", "PARCEL_NAM": "3-6AA", "ACRE": null, "LONGITUDE": -64.98789948, "LATITUDE": 18.35297028, "OBJECTID_1": 2093, "PARCEL_NO_": "102504011900", "Tax_Legal_": "3-6A BONNE ESPERANCE #2 WEST END QTR", "Name": "AYALA, MARIA", "Address": "3-6A Bonne Esperance", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.63013065600001, "SHAPE_Area": 1230.08715753 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352788.620700001716614, 258108.606100000441074 ], [ 352790.355599999427795, 258094.265999998897314 ], [ 352787.927699998021126, 258095.301600001752377 ], [ 352745.869999997317791, 258110.156100001186132 ], [ 352753.686700001358986, 258139.139899998903275 ], [ 352786.034500002861023, 258128.216699998825788 ], [ 352788.620700001716614, 258108.606100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97348897000001, "LATITUDE": 18.35245005, "OBJECTID_1": 2658, "PARCEL_NO_": "102604011300", "Tax_Legal_": "51 REM. ESTATE LINDBERG BAY SOUTHSIDE QTR.", "Name": "FULLER, JR. , V. A. & BRAHM, REBECCA", "Address": "PO Box 303300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 224100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.76940475599997, "SHAPE_Area": 4011.3128807600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354344.181999996304512, 258005.025100000202656 ], [ 354348.247599996626377, 257998.330099999904633 ], [ 354345.027800001204014, 258000.388000000268221 ], [ 354275.332500003278255, 258041.191899999976158 ], [ 354277.713699996471405, 258045.644299998879433 ], [ 354277.612999998033047, 258057.464699998497963 ], [ 354273.353100001811981, 258084.238800000399351 ], [ 354270.847800001502037, 258094.350699998438358 ], [ 354268.364100001752377, 258101.929800000041723 ], [ 354261.76799999922514, 258118.974399998784065 ], [ 354260.126599997282028, 258122.33839999884367 ], [ 354257.682499997317791, 258125.273699998855591 ], [ 354245.40259999781847, 258146.915899999439716 ], [ 354270.443199999630451, 258141.843499999493361 ], [ 354277.786300003528595, 258131.771099999547005 ], [ 354283.513199999928474, 258122.107700001448393 ], [ 354322.098600000143051, 258041.574599999934435 ], [ 354343.361299999058247, 258006.707100000232458 ], [ 354344.181999996304512, 258005.025100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01658726, "LATITUDE": 18.35287147, "OBJECTID_1": 1289, "PARCEL_NO_": "102304030400", "Tax_Legal_": "8 BORDEAUX NO.6 WEST END QTR", "Name": "JJ FAMILY REVOCABLE TRUST", "Address": "PO Box 303921", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25700, "Improved_V": 147400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.48600886099999, "SHAPE_Area": 1126.85886061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349760.804099999368191, 258097.123799998313189 ], [ 349731.32660000026226, 258055.085999999195337 ], [ 349713.476199999451637, 258068.027699999511242 ], [ 349742.95549999922514, 258109.854400001466274 ], [ 349760.804099999368191, 258097.123799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00841604, "LATITUDE": 18.35298521, "OBJECTID_1": 1629, "PARCEL_NO_": "102403018800", "Tax_Legal_": "FORTUNA 3C-8 WEST END QUARTER", "Name": "FRANCIS, JR. , J. , J. & CHARLES, K. D", "Address": "PO Box 308745", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30200, "Improved_V": 189900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.497385147, "SHAPE_Area": 961.92738467499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350619.591600000858307, 258096.553199999034405 ], [ 350618.857199996709824, 258088.103399999439716 ], [ 350580.130900003015995, 258090.530699998140335 ], [ 350583.142099998891354, 258115.675500001758337 ], [ 350620.255900003015995, 258113.234999999403954 ], [ 350619.591600000858307, 258096.553199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01997595, "LATITUDE": 18.35289908, "OBJECTID_1": 1237, "PARCEL_NO_": "102304010700", "Tax_Legal_": "BORDEAUX 25 WEST END QTR", "Name": "FRANCIS, BERNARD & ELAINE", "Address": "PO Box 957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32400, "Improved_V": 164200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.70197908899999, "SHAPE_Area": 1147.13775689 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349403.190600000321865, 258074.779100000858307 ], [ 349376.748599998652935, 258059.996399998664856 ], [ 349354.447800002992153, 258090.842599999159575 ], [ 349381.740199998021126, 258105.420400001108646 ], [ 349403.190600000321865, 258074.779100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00296971, "LATITUDE": 18.35292436, "OBJECTID_1": 1915, "PARCEL_NO_": "102404042300", "Tax_Legal_": "FORTUNA 77-21 WEST END QTR", "Name": "TOWNE, GRANT", "Address": "17 Greylock Dr", "City": "WILTON", "State": "New York", "Zip": 12831, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.63723677799999, "SHAPE_Area": 2206.6489349399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351217.250799998641014, 258080.124299999326468 ], [ 351183.356899999082088, 258083.224399998784065 ], [ 351140.586400002241135, 258087.096200000494719 ], [ 351143.631800003349781, 258108.230500001460314 ], [ 351143.593999996781349, 258112.663100000470877 ], [ 351144.385999999940395, 258114.358399998396635 ], [ 351144.350000001490116, 258118.579900000244379 ], [ 351195.160300001502037, 258117.518100000917912 ], [ 351196.798100002110004, 258114.576200000941753 ], [ 351213.928400002419949, 258091.496100001037121 ], [ 351217.250799998641014, 258080.124299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0047293, "LATITUDE": 18.35263688, "OBJECTID_1": 1883, "PARCEL_NO_": "102404031600", "Tax_Legal_": "FORTUNA 37 WEST END QTR", "Name": "FORTUNA HILLCREST LLC", "Address": "PO Box 400", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 111900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 325.84011891099999, "SHAPE_Area": 4008.6429035900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351058.853200003504753, 258026.476700000464916 ], [ 350968.420299999415874, 258040.513099998235703 ], [ 350967.540299996733665, 258049.160700000822544 ], [ 350965.837700001895428, 258059.701400000602007 ], [ 350961.67849999666214, 258074.655000001192093 ], [ 350960.855999998748302, 258076.548200000077486 ], [ 350956.768700003623962, 258083.058600001037121 ], [ 350955.13629999756813, 258085.367300000041723 ], [ 350952.693999998271465, 258088.091499999165535 ], [ 350942.933700002729893, 258097.93299999833107 ], [ 350936.452600002288818, 258101.468600001186132 ], [ 350962.935099996626377, 258116.461899999529123 ], [ 351058.853200003504753, 258026.476700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404042400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00236432, "LATITUDE": 18.35285391, "OBJECTID_1": 1916, "PARCEL_NO_": "102404042400", "Tax_Legal_": "FORTUNA 77-30 WEST END QUARTER", "Name": "JOHNSON, ARTHUR", "Address": "PO Box 1671", "City": "Saint Charles", "State": "Missouri", "Zip": 63301, "Country": "United States", "Land_Value": 80800, "Improved_V": 282500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.15160935399999, "SHAPE_Area": 1383.0203337800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351260.057300001382828, 258072.030900001525879 ], [ 351224.590300001204014, 258070.473999999463558 ], [ 351226.145400002598763, 258077.241799999028444 ], [ 351224.414099998772144, 258091.159800000488758 ], [ 351221.140299998223782, 258096.832499999552965 ], [ 351215.43860000371933, 258103.540800001472235 ], [ 351254.821999996900558, 258118.639699999243021 ], [ 351255.885499998927116, 258088.462000001221895 ], [ 351260.057300001382828, 258072.030900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01847541, "LATITUDE": 18.35286868, "OBJECTID_1": 1264, "PARCEL_NO_": "102304021300", "Tax_Legal_": "BORDEAUX 91 WEST END QTR", "Name": "ETIENNE MASSAC SR AND MONA MASSAC LIVING REVOCABLE", "Address": "PO Box 598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30200, "Improved_V": 79200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.487988632, "SHAPE_Area": 1552.20484184 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349568.176399998366833, 258086.048000000417233 ], [ 349559.511900000274181, 258061.912399999797344 ], [ 349557.936999998986721, 258057.466600000858307 ], [ 349515.879299998283386, 258072.321100000292063 ], [ 349510.879600003361702, 258091.278599999845028 ], [ 349503.513099998235703, 258104.094999998807907 ], [ 349522.105099998414516, 258098.758699998259544 ], [ 349544.735699996352196, 258092.611099999397993 ], [ 349568.176399998366833, 258086.048000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404042200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00357912, "LATITUDE": 18.35284435, "OBJECTID_1": 1914, "PARCEL_NO_": "102404042200", "Tax_Legal_": "FORTUNA 77-8 WEST END QTR", "Name": "HODGE, ALRITA", "Address": "100-6J Benchley Pl", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.934371779, "SHAPE_Area": 2153.5470404399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351130.314699999988079, 258062.3141999989748 ], [ 351088.364900000393391, 258064.504000000655651 ], [ 351089.934299997985363, 258069.583000000566244 ], [ 351090.713699996471405, 258072.755800001323223 ], [ 351093.015699997544289, 258086.495700001716614 ], [ 351091.140600003302097, 258117.30009999871254 ], [ 351135.509300000965595, 258115.130100000649691 ], [ 351132.462099999189377, 258094.206900000572205 ], [ 351131.71509999781847, 258087.234700001776218 ], [ 351130.26969999819994, 258067.591099999845028 ], [ 351130.314699999988079, 258062.3141999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": null, "PARCEL_NAM": "REM of BORDEAUX", "ACRE": null, "LONGITUDE": -65.0221275, "LATITUDE": 18.35178542, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2339.6725036399998, "SHAPE_Area": 115417.95144800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349447.371500000357628, 258068.38289999961853 ], [ 349430.060599997639656, 258018.000900000333786 ], [ 349407.127099998295307, 257965.039799999445677 ], [ 349405.550499998033047, 257960.805100001394749 ], [ 349404.769299998879433, 257957.843400001525879 ], [ 349404.801700003445148, 257954.0439000017941 ], [ 349403.311300002038479, 257939.677400000393391 ], [ 349404.148199997842312, 257936.095600001513958 ], [ 349407.450800001621246, 257927.0456000007689 ], [ 349417.293799996376038, 257907.494500000029802 ], [ 349435.34910000115633, 257870.489799998700619 ], [ 349436.985100001096725, 257867.75899999961257 ], [ 349438.619300000369549, 257865.239199999719858 ], [ 349440.258900001645088, 257862.086300000548363 ], [ 349489.187899999320507, 257797.892099998891354 ], [ 349502.313699997961521, 257771.612799998372793 ], [ 349509.67119999974966, 257759.851799998432398 ], [ 349524.265799999237061, 257750.471999999135733 ], [ 349558.249600000679493, 257736.817999999970198 ], [ 349506.498099997639656, 257753.704100001603365 ], [ 349461.21509999781847, 257768.532200001180172 ], [ 349432.91330000013113, 257777.799800001084805 ], [ 349391.672700002789497, 257791.394400000572205 ], [ 349356.094200000166893, 257802.924499999731779 ], [ 349347.199600003659725, 257805.807000000029802 ], [ 349336.688799999654293, 257809.098499998450279 ], [ 349285.748999997973442, 257825.357900001108646 ], [ 349276.046300001442432, 257828.444899998605251 ], [ 349210.551600001752377, 257849.440400000661612 ], [ 349185.485799998044968, 257857.4679000005126 ], [ 349149.101000003516674, 257868.991399999707937 ], [ 348668.003600001335144, 258022.529599998146296 ], [ 348672.760600000619888, 258032.067800000309944 ], [ 348677.549900002777576, 258037.806499999016523 ], [ 348680.748199999332428, 258040.999099999666214 ], [ 348683.151000000536442, 258042.918600000441074 ], [ 348689.567299999296665, 258046.981899999082088 ], [ 348699.2179000005126, 258050.016199998557568 ], [ 348753.989600002765656, 258057.219399999827147 ], [ 348846.555500000715256, 258076.764400001615286 ], [ 348859.445699997246265, 258078.136399999260902 ], [ 348894.124300003051758, 258077.575899999588728 ], [ 348902.984700001776218, 258078.703899998217821 ], [ 348919.877700001001358, 258083.486200001090765 ], [ 348943.167300000786781, 258094.6537000015378 ], [ 348950.415100000798702, 258095.768500000238419 ], [ 348959.311499997973442, 258092.674899999052286 ], [ 348975.551100000739098, 258079.508900001645088 ], [ 348988.52759999781847, 258070.749200001358986 ], [ 349013.643799997866154, 258056.811500001698732 ], [ 349018.501400001347065, 258054.529199998825788 ], [ 349209.535599999129772, 257968.699999999254942 ], [ 349220.861699998378754, 257964.359700001776218 ], [ 349232.981600001454353, 257961.503600001335144 ], [ 349243.474500000476837, 257960.322900000959635 ], [ 349253.137599997222424, 257961.879700001329184 ], [ 349256.357500001788139, 257962.539299998432398 ], [ 349260.374700002372265, 257964.260899998247623 ], [ 349264.388199999928474, 257966.404699999839067 ], [ 349267.595499999821186, 257968.541900001466274 ], [ 349273.174999997019768, 257976.186900001019239 ], [ 349273.948899999260902, 257979.992899999022484 ], [ 349274.733599998056889, 257982.532499998807907 ], [ 349275.505800001323223, 257986.549600001424551 ], [ 349276.247400000691414, 257994.155000001192093 ], [ 349275.320600003004074, 258008.290699999779463 ], [ 349272.766800001263618, 258024.101799998432398 ], [ 349273.353699997067451, 258049.859999999403954 ], [ 349277.988399997353554, 258073.751499999314547 ], [ 349283.5641999989748, 258081.81870000064373 ], [ 349289.186800003051758, 258084.397900000214577 ], [ 349321.451899997889996, 258083.184300001710653 ], [ 349331.124099999666214, 258083.685600001364946 ], [ 349345.610699996352196, 258086.970600001513958 ], [ 349354.447800002992153, 258090.842599999159575 ], [ 349376.748599998652935, 258059.996399998664856 ], [ 349403.190600000321865, 258074.779100000858307 ], [ 349428.191100001335144, 258089.793400000780821 ], [ 349450.668700002133846, 258103.292399998754263 ], [ 349456.824299998581409, 258094.635800000280142 ], [ 349454.457500003278255, 258088.494800001382828 ], [ 349449.734700001776218, 258074.946100000292063 ], [ 349447.371500000357628, 258068.38289999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403041900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01112164, "LATITUDE": 18.35282383, "OBJECTID_1": 1783, "PARCEL_NO_": "102403041900", "Tax_Legal_": "3C-28 FORTUNA WEST END QUARTER", "Name": "WENNER, KEVIN A. & BELL, JACQUELIN", "Address": "PO Box 304386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29600, "Improved_V": 277300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.00708856899999, "SHAPE_Area": 988.87226997799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350294.150200001895428, 258069.270500000566244 ], [ 350310.698399998247623, 258102.890999998897314 ], [ 350315.557899996638298, 258100.397599998861551 ], [ 350328.476899996399879, 258098.392400000244379 ], [ 350335.185400001704693, 258097.241700001060963 ], [ 350319.567100003361702, 258060.209100000560284 ], [ 350315.082400001585484, 258061.552499998360872 ], [ 350313.4662000015378, 258061.961500000208616 ], [ 350294.150200001895428, 258069.270500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022900", "MAP": "D9-6352-T97", "PARCEL_NAM": "2AA-7", "ACRE": ".839", "LONGITUDE": -64.97552686, "LATITUDE": 18.35289681, "OBJECTID_1": 2602, "PARCEL_NO_": "102603022900", "Tax_Legal_": "CROWN & HAWK 2Aa-7 REM. No.3 SOUTHSIDE QUARTER", "Name": "KNIGHT COMMUNICATIONS OF THE VI INC", "Address": "PO Box 8209", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.54391558500001, "SHAPE_Area": 1100.81453962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354054.3783999979496, 258136.908700000494719 ], [ 354068.11089999973774, 258134.065799999982119 ], [ 354083.470399998128414, 258129.547400001436472 ], [ 354094.814499996602535, 258123.096400000154972 ], [ 354111.046899996697903, 258110.774700000882149 ], [ 354102.99099999666214, 258109.864399999380112 ], [ 354088.520499996840954, 258104.679699998348951 ], [ 354081.269100002944469, 258103.987100001424551 ], [ 354073.195200003683567, 258105.187600001692772 ], [ 354049.657499998807907, 258123.149000000208616 ], [ 354054.3783999979496, 258136.908700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01744316, "LATITUDE": 18.3528158, "OBJECTID_1": 1292, "PARCEL_NO_": "102304030700", "Tax_Legal_": "BORDEAUX 34 WEST END QTR", "Name": "HERBERT, KATHLEEN & NATASHA", "Address": "PO Box 305195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27700, "Improved_V": 131900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.66529649700001, "SHAPE_Area": 1289.74924063 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349671.375399999320507, 258087.948100000619888 ], [ 349643.494300000369549, 258047.82319999858737 ], [ 349625.64750000089407, 258060.342799998819828 ], [ 349624.015100002288818, 258062.651399999856949 ], [ 349624.798000000417233, 258065.402100000530481 ], [ 349643.874399997293949, 258097.855500001460314 ], [ 349647.886200003325939, 258100.210400000214577 ], [ 349651.919600002467632, 258100.032299999147654 ], [ 349654.349299997091293, 258098.785599999129772 ], [ 349664.070000000298023, 258093.587799999862909 ], [ 349671.375399999320507, 258087.948100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98686194, "LATITUDE": 18.35290719, "OBJECTID_1": 2135, "PARCEL_NO_": "102504016400", "Tax_Legal_": "3A-9 BONNE ESPERANCE No.2 WEST END QTR", "Name": "Frank A.B. Preston & Others", "Address": "PO Box 10683", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 151400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.561587433, "SHAPE_Area": 1439.4465592199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352843.349299997091293, 258120.875300001353025 ], [ 352894.911899998784065, 258126.152499999850988 ], [ 352912.825199998915195, 258105.822999998927116 ], [ 352913.647699996829033, 258103.929900001734495 ], [ 352898.361900001764297, 258099.793999999761581 ], [ 352887.109499998390675, 258095.480000000447035 ], [ 352883.078000001609325, 258095.447000000625849 ], [ 352874.206699997186661, 258095.585499998182058 ], [ 352865.312100000679493, 258098.467999998480082 ], [ 352853.147299997508526, 258106.601100001484156 ], [ 352847.459899999201298, 258111.620799999684095 ], [ 352845.005000002682209, 258115.822599999606609 ], [ 352844.184399999678135, 258117.504599999636412 ], [ 352843.349299997091293, 258120.875300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403044900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00884163000001, "LATITUDE": 18.35279915, "OBJECTID_1": 1811, "PARCEL_NO_": "102403044900", "Tax_Legal_": "3C-15 ESTATE FORTUNA WESTEND QTR", "Name": "WILKINS, NORRIS A.", "Address": "4059 69th Ter N", "City": "Pinellas Park", "State": "Florida", "Zip": 33781, "Country": "United States", "Land_Value": 28100, "Improved_V": 20400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.27771385099999, "SHAPE_Area": 1235.28101952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350555.349200002849102, 258065.207699999213219 ], [ 350552.122100003063679, 258065.392400000244379 ], [ 350532.039800003170967, 258056.362100001424551 ], [ 350542.997299998998642, 258095.293000001460314 ], [ 350547.831600002944469, 258095.754799999296665 ], [ 350555.88400000333786, 258097.087200000882149 ], [ 350565.518299996852875, 258102.021200001239777 ], [ 350571.126599997282028, 258106.289000000804663 ], [ 350575.15990000218153, 258106.11089999973774 ], [ 350570.679899998009205, 258064.066599998623133 ], [ 350555.349200002849102, 258065.207699999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403044600", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-38", "ACRE": ".26", "LONGITUDE": -65.00982403, "LATITUDE": 18.3528233, "OBJECTID_1": 1808, "PARCEL_NO_": "102403044600", "Tax_Legal_": "FORTUNA ESTATE 3C-38 No.8 WESTEND QTR.", "Name": "OTTLEY, ANTHONY", "Address": "PO Box 9073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.48905682899999, "SHAPE_Area": 1093.41120144 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350428.652000002563, 258076.625300001353025 ], [ 350439.715599998831749, 258103.10249999910593 ], [ 350473.693999998271465, 258090.081700000911951 ], [ 350472.099399998784065, 258087.957699999213219 ], [ 350470.540700003504753, 258081.612199999392033 ], [ 350469.770400002598763, 258077.38399999961257 ], [ 350469.071900002658367, 258064.712699998170137 ], [ 350467.470100000500679, 258063.43299999833107 ], [ 350463.436700001358986, 258063.611099999397993 ], [ 350428.652000002563, 258076.625300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01641168, "LATITUDE": 18.35274855, "OBJECTID_1": 1290, "PARCEL_NO_": "102304030500", "Tax_Legal_": "BORDEAUX 7 WEST END QTR", "Name": "MILLER, ALRIC & YVONNE", "Address": "P.O. BOX 4245", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25700, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.92922506599999, "SHAPE_Area": 1235.9623220799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349780.276100002229214, 258083.139899998903275 ], [ 349750.800399996340275, 258040.890999998897314 ], [ 349731.32660000026226, 258055.085999999195337 ], [ 349760.804099999368191, 258097.123799998313189 ], [ 349780.276100002229214, 258083.139899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016000", "MAP": null, "PARCEL_NAM": "3A-7", "ACRE": null, "LONGITUDE": -64.98742414, "LATITUDE": 18.35282618, "OBJECTID_1": 2131, "PARCEL_NO_": "102504016000", "Tax_Legal_": "BONNE ESPERANCE 3A-7 WEST END QTR", "Name": "ALLEN, SARAH A", "Address": "394 Sigourney St", "City": "Hartford", "State": "Connecticut", "Zip": 6112, "Country": "United States", "Land_Value": 28300, "Improved_V": 123400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.06297610799999, "SHAPE_Area": 1528.46245441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352856.424699999392033, 258100.50620000064373 ], [ 352847.557099997997284, 258100.222600001841784 ], [ 352815.477200001478195, 258079.695000000298023 ], [ 352799.260999999940395, 258090.116999998688698 ], [ 352790.355599999427795, 258094.265999998897314 ], [ 352788.620700001716614, 258108.606100000441074 ], [ 352839.3158999979496, 258121.053399998694658 ], [ 352840.134800001978874, 258119.582400001585484 ], [ 352845.872500002384186, 258108.652499999850988 ], [ 352856.424699999392033, 258100.50620000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01091423, "LATITUDE": 18.35277559, "OBJECTID_1": 1782, "PARCEL_NO_": "102403041800", "Tax_Legal_": "FORTUNA 3C-27 WEST END QUARTER", "Name": "WILLIAMS, VELMA L", "Address": "PO Box 9461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 166800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.11104553600001, "SHAPE_Area": 780.69080464800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350319.567100003361702, 258060.209100000560284 ], [ 350335.185400001704693, 258097.241700001060963 ], [ 350354.318400003015995, 258093.959800001233816 ], [ 350337.718500003218651, 258054.771699998527765 ], [ 350319.567100003361702, 258060.209100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403044800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00916225, "LATITUDE": 18.3527894, "OBJECTID_1": 1810, "PARCEL_NO_": "102403044800", "Tax_Legal_": "FORTUNA 3C-16 WESTEND QTR.", "Name": "ABRAMSON, MURVIN E", "Address": "PO Box 304461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.51277877800001, "SHAPE_Area": 1143.8759261499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350532.039800003170967, 258056.362100001424551 ], [ 350524.007299996912479, 258052.707800000905991 ], [ 350495.421300001442432, 258095.325800001621246 ], [ 350498.641199998557568, 258095.985399998724461 ], [ 350505.086300000548363, 258096.671500001102686 ], [ 350525.269299998879433, 258093.881299998611212 ], [ 350542.997299998998642, 258095.293000001460314 ], [ 350532.039800003170967, 258056.362100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403044700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00938895, "LATITUDE": 18.35268134, "OBJECTID_1": 1809, "PARCEL_NO_": "102403044700", "Tax_Legal_": "FORTUNA 3C-17 WEST END QUARTER", "Name": "WILLIAMS, KENRICK A. & MERDITH", "Address": "PO Box 10010", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34300, "Improved_V": 407800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.30164326299999, "SHAPE_Area": 1346.5121157599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350495.421300001442432, 258095.325800001621246 ], [ 350524.007299996912479, 258052.707800000905991 ], [ 350502.321400001645088, 258042.608899999409914 ], [ 350496.646600000560284, 258046.151000000536442 ], [ 350486.076399996876717, 258056.408100001513958 ], [ 350482.820600003004074, 258059.969999998807907 ], [ 350480.371100001037121, 258063.538600001484156 ], [ 350479.550399996340275, 258065.220600001513958 ], [ 350478.722499996423721, 258067.747000001370907 ], [ 350479.429899998009205, 258079.362900000065565 ], [ 350480.202100001275539, 258083.379999998956919 ], [ 350482.586800001561642, 258087.410300001502037 ], [ 350486.582400001585484, 258091.664900001138449 ], [ 350490.592399999499321, 258094.230799999088049 ], [ 350495.421300001442432, 258095.325800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403010400", "MAP": "F9-1522-T65", "PARCEL_NAM": "63", "ACRE": null, "LONGITUDE": -65.00800874, "LATITUDE": 18.35259946, "OBJECTID_1": 1549, "PARCEL_NO_": "102403010400", "Tax_Legal_": "FORTUNA 63 WEST END QTR", "Name": "ESONIA M HASSELL REVOCABLE TRUST", "Address": "PO Box 303301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82600, "Improved_V": 130000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.55805054899997, "SHAPE_Area": 3833.60877648 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350671.801600001752377, 258025.842000000178814 ], [ 350674.283500000834465, 258018.473999999463558 ], [ 350614.519299998879433, 258029.383900001645088 ], [ 350616.650499999523163, 258063.176300000399351 ], [ 350618.857199996709824, 258088.103399999439716 ], [ 350619.591600000858307, 258096.553199999034405 ], [ 350670.168200001120567, 258095.403299998492002 ], [ 350671.285499997437, 258086.421599999070168 ], [ 350670.569099999964237, 258075.861000001430511 ], [ 350669.073399998247623, 258062.127700001001358 ], [ 350668.425300002098083, 258043.54619999974966 ], [ 350670.968299999833107, 258029.001499999314547 ], [ 350671.801600001752377, 258025.842000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01071354, "LATITUDE": 18.3527272, "OBJECTID_1": 1781, "PARCEL_NO_": "102403041700", "Tax_Legal_": "FORTUNA 3C-26 WESTEND QTR.", "Name": "HAZEL, KENNETH & WILHELMINA", "Address": "PO Box 306981", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 37800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.60224361100001, "SHAPE_Area": 997.67089961800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350377.777000002563, 258085.285900000482798 ], [ 350363.55290000140667, 258051.183400001376867 ], [ 350337.718500003218651, 258054.771699998527765 ], [ 350354.318400003015995, 258093.959800001233816 ], [ 350377.777000002563, 258085.285900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0053611, "LATITUDE": 18.35248114, "OBJECTID_1": 1884, "PARCEL_NO_": "102404031700", "Tax_Legal_": "FORTUNA 50 WEST END QTR", "Name": "KUMAR, KAMAL S.", "Address": "36 Woodbridge Ave", "City": "Metuchen", "State": "New Jersey", "Zip": 8840, "Country": "United States", "Land_Value": 128500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.65050429299998, "SHAPE_Area": 5059.9241616299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350929.220299996435642, 258003.884100001305342 ], [ 350925.199500001966953, 258002.584699999541044 ], [ 350918.745399996638298, 258002.953999999910593 ], [ 350910.655299998819828, 258006.054200001060963 ], [ 350906.589599996805191, 258010.031700000166893 ], [ 350894.338500000536442, 258028.296599999070168 ], [ 350882.845100000500679, 258052.267200000584126 ], [ 350883.583099998533726, 258060.294799998402596 ], [ 350893.991400003433228, 258069.034800000488758 ], [ 350901.183499999344349, 258076.692999999970198 ], [ 350916.332599997520447, 258096.870900001376867 ], [ 350919.543499998748302, 258098.585900001227856 ], [ 350924.384900003671646, 258098.203400000929832 ], [ 350930.860600002110004, 258095.301100000739098 ], [ 350941.412799999117851, 258087.154800001531839 ], [ 350948.743299998342991, 258078.559999998658895 ], [ 350953.667499996721745, 258068.467799998819828 ], [ 350956.147600002586842, 258061.310899998992682 ], [ 350959.567100003361702, 258038.540800001472235 ], [ 350960.481299996376038, 258025.882599998265505 ], [ 350958.895599998533726, 258022.703299999237061 ], [ 350956.496399998664856, 258020.361600000411272 ], [ 350933.241099998354912, 258005.183600001037121 ], [ 350929.220299996435642, 258003.884100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01725802, "LATITUDE": 18.35268549, "OBJECTID_1": 1293, "PARCEL_NO_": "102304030800", "Tax_Legal_": "BORDEAUX EST 35 WESTEND QTR", "Name": "CLENDINEN, CAROLYN,CHENESE,JOSEPH JR.,JACE&CHENIER", "Address": "PO Box 7921", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 177200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.34683274400001, "SHAPE_Area": 1076.64446213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349689.232900001108646, 258074.162099998444319 ], [ 349661.342799998819828, 258035.092599999159575 ], [ 349643.494300000369549, 258047.82319999858737 ], [ 349671.375399999320507, 258087.948100000619888 ], [ 349689.232900001108646, 258074.162099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01800017, "LATITUDE": 18.35272717, "OBJECTID_1": 1265, "PARCEL_NO_": "102304021400", "Tax_Legal_": "BORDEAUX 57 WEST END QTR", "Name": "DUKE, PAULA A.", "Address": "73 Dronnigens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28100, "Improved_V": 125600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.46177424499999, "SHAPE_Area": 1461.9971354899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349600.806500002741814, 258041.985399998724461 ], [ 349559.511900000274181, 258061.912399999797344 ], [ 349568.176399998366833, 258086.048000000417233 ], [ 349593.233199998736382, 258079.075899999588728 ], [ 349618.288199998438358, 258072.314899999648333 ], [ 349600.806500002741814, 258041.985399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01898281, "LATITUDE": 18.35272945, "OBJECTID_1": 1242, "PARCEL_NO_": "102304011200", "Tax_Legal_": "BORDEAUX 93 WEST END QTR", "Name": "CHESTERFIELD, IVAH & LAURA", "Address": "PO Box 307952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 118400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.30519428700001, "SHAPE_Area": 1265.4895860900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349504.021999999880791, 258044.359700001776218 ], [ 349454.678700000047684, 258062.5320999994874 ], [ 349461.773699998855591, 258081.588500000536442 ], [ 349506.991899996995926, 258074.359299998730421 ], [ 349507.92230000346899, 258059.801399998366833 ], [ 349506.388800002634525, 258050.500799998641014 ], [ 349504.021999999880791, 258044.359700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00844316, "LATITUDE": 18.35275606, "OBJECTID_1": 1630, "PARCEL_NO_": "102403018900", "Tax_Legal_": "FORTUNA 3C-9 WEST END QUARTER", "Name": "SPENCER (LIFE ESTATE), ANGELA A", "Address": "PO Box 6162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22900, "Improved_V": 108800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.14271036700001, "SHAPE_Area": 1012.47885678 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350616.650499999523163, 258063.176300000399351 ], [ 350577.132200002670288, 258063.908300001174212 ], [ 350580.130900003015995, 258090.530699998140335 ], [ 350618.857199996709824, 258088.103399999439716 ], [ 350616.650499999523163, 258063.176300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01623322, "LATITUDE": 18.35262589, "OBJECTID_1": 1291, "PARCEL_NO_": "102304030600", "Tax_Legal_": "BORDEAUX 6 WEST END QTR", "Name": "LANCLOS, MONROE M & ADA", "Address": "PO Box 692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25700, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.20315984600001, "SHAPE_Area": 1159.1124251599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349798.934600003063679, 258069.993700001388788 ], [ 349768.650700002908707, 258027.949299998581409 ], [ 349750.800399996340275, 258040.890999998897314 ], [ 349780.276100002229214, 258083.139899998903275 ], [ 349798.934600003063679, 258069.993700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01046319, "LATITUDE": 18.35266168, "OBJECTID_1": 1780, "PARCEL_NO_": "102403041600", "Tax_Legal_": "FORTUNA 3C-25 WESTEND QTR.", "Name": "BRYAN, LEO J", "Address": "PO Box 304078", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.45422644799999, "SHAPE_Area": 1011.54068525 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350405.279700003564358, 258075.167399998754263 ], [ 350391.836800001561642, 258044.026700001209974 ], [ 350375.663800001144409, 258049.382699999958277 ], [ 350363.55290000140667, 258051.183400001376867 ], [ 350377.777000002563, 258085.285900000482798 ], [ 350405.279700003564358, 258075.167399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404043400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00195205, "LATITUDE": 18.35245192, "OBJECTID_1": 1926, "PARCEL_NO_": "102404043400", "Tax_Legal_": "FORTUNA 77-42 WEST END QTR", "Name": "SHEEN, JANET", "Address": "PO Box 9201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.72771345899997, "SHAPE_Area": 3423.4765252399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351301.700699999928474, 258011.154599998146296 ], [ 351304.963699996471405, 258006.7483000010252 ], [ 351255.415899999439716, 258010.274000000208616 ], [ 351255.712099999189377, 258014.155699998140335 ], [ 351255.575400002300739, 258030.197700001299381 ], [ 351258.736000001430511, 258037.822900000959635 ], [ 351261.880300000309944, 258047.347899999469519 ], [ 351267.470499999821186, 258053.726399999111891 ], [ 351270.613099999725819, 258063.462400000542402 ], [ 351269.736599996685982, 258071.687899999320507 ], [ 351267.258299998939037, 258078.633699998259544 ], [ 351265.575599998235703, 258086.852600000798702 ], [ 351301.836300000548363, 258089.8935999982059 ], [ 351305.89299999922514, 258086.971500001847744 ], [ 351309.964100003242493, 258082.360700000077486 ], [ 351311.601899996399879, 258079.418800000101328 ], [ 351313.290100000798702, 258070.566700000315905 ], [ 351309.387999996542931, 258055.336100000888109 ], [ 351302.239100001752377, 258042.611900001764297 ], [ 351299.883100003004074, 258035.2043999992311 ], [ 351299.109099999070168, 258031.398400001227856 ], [ 351299.145099997520447, 258027.17680000141263 ], [ 351299.227799996733665, 258017.467199999839067 ], [ 351301.700699999928474, 258011.154599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0014509, "LATITUDE": 18.3524374, "OBJECTID_1": 1927, "PARCEL_NO_": "102404043500", "Tax_Legal_": "FORTUNA 77-37 WEST END QTR", "Name": "MALONE, MICHELLE R. & NATALIE A., VANESSA M. & JANICE L.", "Address": "PO Box 6513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.420583927, "SHAPE_Area": 2996.32821367 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351369.256499998271465, 258032.183600001037121 ], [ 351313.824100002646446, 258007.876299999654293 ], [ 351308.077500000596046, 258019.861600000411272 ], [ 351308.810000002384186, 258028.522399999201298 ], [ 351308.770499996840954, 258033.166200000792742 ], [ 351310.340000003576279, 258038.245299998670816 ], [ 351313.525600001215935, 258042.915399998426437 ], [ 351315.113099999725819, 258045.883699998259544 ], [ 351317.470899999141693, 258053.080200001597404 ], [ 351320.633199997246265, 258060.494300000369549 ], [ 351322.182899996638298, 258067.895300000905991 ], [ 351322.118199996650219, 258075.494100000709295 ], [ 351321.297499999403954, 258077.176199998706579 ], [ 351351.028499998152256, 258089.451799999922514 ], [ 351369.256499998271465, 258032.183600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00312971, "LATITUDE": 18.35250218, "OBJECTID_1": 1918, "PARCEL_NO_": "102404042600", "Tax_Legal_": "FORTUNA 77-19 WEST END QTR", "Name": "JAMES, DENIS & MAGDALENA K.", "Address": "6136 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66500, "Improved_V": 102500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.673957965, "SHAPE_Area": 2704.5127165200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351183.356899999082088, 258083.224399998784065 ], [ 351175.876400001347065, 258014.768800001591444 ], [ 351139.523999996483326, 258022.492899999022484 ], [ 351138.660099998116493, 258029.240800000727177 ], [ 351139.187700003385544, 258061.964600000530481 ], [ 351140.586400002241135, 258087.096200000494719 ], [ 351183.356899999082088, 258083.224399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98714842, "LATITUDE": 18.35266271, "OBJECTID_1": 2132, "PARCEL_NO_": "102504016100", "Tax_Legal_": "BONNE ESPERANCE 3A-8 WEST END QTR", "Name": "CHUGANI FAMILY TRUST", "Address": "PO Box 304038", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56700, "Improved_V": 209500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.518791021, "SHAPE_Area": 1210.34398665 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352883.103100001811981, 258092.491900000721216 ], [ 352853.487199999392033, 258066.70719999819994 ], [ 352850.258299998939037, 258067.103000000119209 ], [ 352833.291599996387959, 258070.974899999797344 ], [ 352820.336599998176098, 258077.201699998229742 ], [ 352815.477200001478195, 258079.695000000298023 ], [ 352847.557099997997284, 258100.222600001841784 ], [ 352856.424699999392033, 258100.50620000064373 ], [ 352868.58049999922514, 258093.42850000038743 ], [ 352875.851700000464916, 258091.799300000071526 ], [ 352883.103100001811981, 258092.491900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01708657, "LATITUDE": 18.3525627, "OBJECTID_1": 1294, "PARCEL_NO_": "102304030900", "Tax_Legal_": "BORDEAUX 36 WEST END QTR", "Name": "TURNBULL, JANICE", "Address": "PO Box 304508", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25700, "Improved_V": 133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.85685737200001, "SHAPE_Area": 1102.6064131400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349707.895000003278255, 258060.593699999153614 ], [ 349680.003100000321865, 258021.735300000756979 ], [ 349661.342799998819828, 258035.092599999159575 ], [ 349689.232900001108646, 258074.162099998444319 ], [ 349707.895000003278255, 258060.593699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98670734, "LATITUDE": 18.35261605, "OBJECTID_1": 2134, "PARCEL_NO_": "102504016300", "Tax_Legal_": "BONNE ESPERANCE 3A-10 WEST END QTR", "Name": "MANUEL, ALFRED", "Address": "PO BOX 305339", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33500, "Improved_V": 215200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.62606936099999, "SHAPE_Area": 1751.09315795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352930.767300002276897, 258082.116300001740456 ], [ 352893.8800999969244, 258057.960799999535084 ], [ 352889.835900001227856, 258059.405299998819828 ], [ 352876.092699997127056, 258063.514699999243021 ], [ 352853.487199999392033, 258066.70719999819994 ], [ 352883.103100001811981, 258092.491900000721216 ], [ 352888.743699997663498, 258092.960299998521805 ], [ 352905.631300002336502, 258098.375799998641014 ], [ 352916.903499998152256, 258100.367899999022484 ], [ 352924.234099999070168, 258091.77309999987483 ], [ 352930.767300002276897, 258082.116300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01850409, "LATITUDE": 18.35261648, "OBJECTID_1": 1266, "PARCEL_NO_": "102304021500", "Tax_Legal_": "BORDEAUX 90 WEST END QTR", "Name": "RITA GERARD TRUST", "Address": "PO Box 303625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24400, "Improved_V": 59500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.423243189, "SHAPE_Area": 999.96873749099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349550.042900003492832, 258037.559200000017881 ], [ 349549.269000001251698, 258033.753100000321865 ], [ 349514.491499997675419, 258045.923000000417233 ], [ 349516.81870000064373, 258056.707800000905991 ], [ 349515.879299998283386, 258072.321100000292063 ], [ 349557.936999998986721, 258057.466600000858307 ], [ 349550.042900003492832, 258037.559200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00281049, "LATITUDE": 18.35250315, "OBJECTID_1": 1919, "PARCEL_NO_": "102404042700", "Tax_Legal_": "FORTUNA 77-20 WEST END QTR", "Name": "MADURO, ULRIC", "Address": "172-10 133rd Ave #79", "City": "Jamaica", "State": "New York", "Zip": 114343958, "Country": "United States", "Land_Value": 62400, "Improved_V": 133100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.29159047900001, "SHAPE_Area": 1717.6475351700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351189.608900003135204, 258011.925900001078844 ], [ 351175.876400001347065, 258014.768800001591444 ], [ 351183.356899999082088, 258083.224399998784065 ], [ 351217.250799998641014, 258080.124299999326468 ], [ 351214.925399996340275, 258069.128400001674891 ], [ 351211.777400001883507, 258060.025600001215935 ], [ 351207.825000002980232, 258050.705099999904633 ], [ 351192.718999996781349, 258025.461399998515844 ], [ 351190.361199997365475, 258018.264899998903275 ], [ 351189.608900003135204, 258011.925900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01606063, "LATITUDE": 18.35250294, "OBJECTID_1": 1553, "PARCEL_NO_": "102403010800", "Tax_Legal_": "BORDEAUX 5 WEST END QTR", "Name": "AUSTIN C PARRIS FAMILY TRUST", "Address": "PO Box 303675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033675, "Country": "United States", "Land_Value": 26700, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.11957303099999, "SHAPE_Area": 1199.4507737500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349817.594800002872944, 258056.636399999260902 ], [ 349787.314599998295307, 258014.169900000095367 ], [ 349768.650700002908707, 258027.949299998581409 ], [ 349798.934600003063679, 258069.993700001388788 ], [ 349817.594800002872944, 258056.636399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603020400", "MAP": "D9-6352-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97582436, "LATITUDE": 18.3524781, "OBJECTID_1": 2576, "PARCEL_NO_": "102603020400", "Tax_Legal_": "2AA-1 & 2AA-7-1 CROWN & HAWK SOUTHSIDE QTR", "Name": "CARIBBEAN COMMUNICATIONS CORP", "Address": "4611 Tutu Park", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 284200, "Improved_V": 190900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.47655315099999, "SHAPE_Area": 3429.7648563399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354073.511600002646446, 258068.03770000115037 ], [ 354067.302100002765656, 258039.700300000607967 ], [ 354010.795500002801418, 258046.837200000882149 ], [ 354023.216399997472763, 258103.300900001078844 ], [ 354044.173299998044968, 258104.316799998283386 ], [ 354057.893200002610683, 258102.951400000602007 ], [ 354073.252700001001358, 258098.433100000023842 ], [ 354080.514899998903275, 258097.859200000762939 ], [ 354075.070299997925758, 258074.383299998939037 ], [ 354073.511600002646446, 258068.03770000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98588428, "LATITUDE": 18.35243708, "OBJECTID_1": 2123, "PARCEL_NO_": "102504015000", "Tax_Legal_": "BONNE ESPERANCE 2-5 WEST END QTR", "Name": "BLAKE, MICHAEL A. & BEVERLY A. LEWIS", "Address": "4220 91st Ave", "City": "SPRINGDALE", "State": "Maryland", "Zip": 20774, "Country": "United States", "Land_Value": 72800, "Improved_V": 363700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.7422948, "SHAPE_Area": 2507.8608524699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353023.592100001871586, 258061.249000001698732 ], [ 353007.015600003302097, 258029.333599999547005 ], [ 353002.967799998819828, 258031.200399998575449 ], [ 353000.543499998748302, 258031.813799999654293 ], [ 352981.967799998819828, 258035.250399999320507 ], [ 352977.111900001764297, 258037.321600001305342 ], [ 352972.239900000393391, 258041.292500000447035 ], [ 352970.614600002765656, 258042.756799999624491 ], [ 352932.270199999213219, 258095.005300000309944 ], [ 352966.239600002765656, 258083.039900001138449 ], [ 353009.92620000243187, 258066.298799999058247 ], [ 353023.592100001871586, 258061.249000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603020500", "MAP": "D9-2957-T85", "PARCEL_NAM": null, "ACRE": ".34", "LONGITUDE": -64.97524337, "LATITUDE": 18.35262189, "OBJECTID_1": 2577, "PARCEL_NO_": "102603020500", "Tax_Legal_": "CROWN & HAWK 2AA-6 S S QTR", "Name": "GEORGE, FRANKLIN & MARCIA I. G", "Address": "7410 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41900, "Improved_V": 257700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.46833384600001, "SHAPE_Area": 1367.1055275799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354080.514899998903275, 258097.859200000762939 ], [ 354090.183499999344349, 258098.782699998468161 ], [ 354105.458400003612041, 258104.185100000351667 ], [ 354115.938699997961521, 258104.481899999082088 ], [ 354120.789200000464916, 258103.043999999761581 ], [ 354125.650399997830391, 258100.339600000530481 ], [ 354145.941299997270107, 258084.884700000286102 ], [ 354145.152999997138977, 258082.767299998551607 ], [ 354075.070299997925758, 258074.383299998939037 ], [ 354080.514899998903275, 258097.859200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403041500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01016829, "LATITUDE": 18.35255446, "OBJECTID_1": 1779, "PARCEL_NO_": "102403041500", "Tax_Legal_": "FORTUNA 3C-24 WESTEND QTR.", "Name": "DAWSON, CHERYL M", "Address": "PO Box 10516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.337576607, "SHAPE_Area": 989.416642239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350436.018500000238419, 258063.808899998664856 ], [ 350420.984499998390675, 258030.121899999678135 ], [ 350412.881800003349781, 258034.699700001627207 ], [ 350407.212399996817112, 258037.608600001782179 ], [ 350395.880900003015995, 258042.582100000232458 ], [ 350409.323899999260902, 258073.722899999469519 ], [ 350436.018500000238419, 258063.808899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01140677, "LATITUDE": 18.35249634, "OBJECTID_1": 1772, "PARCEL_NO_": "102403040700", "Tax_Legal_": "FORTUNA 3C-61 WEST END QUARTER", "Name": "AL-ADIL, ALEX G. & ABRAHAM, LI", "Address": "P.O. BOX 3824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.155361833, "SHAPE_Area": 974.56711927599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350305.008500002324581, 258055.388599999248981 ], [ 350292.836599998176098, 258025.371500000357628 ], [ 350281.494199998676777, 258028.769200000911951 ], [ 350265.223600000143051, 258033.878199998289347 ], [ 350277.26070000231266, 258065.891100000590086 ], [ 350294.134499996900558, 258059.481199998408556 ], [ 350305.008500002324581, 258055.388599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01906561, "LATITUDE": 18.35251524, "OBJECTID_1": 1243, "PARCEL_NO_": "102304011300", "Tax_Legal_": "BORDEAUX #94 WEST END QUARTER", "Name": "TRUST AGREEMENT OF CYNTHIA J ROMNEY", "Address": "PO Box 304636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39500, "Improved_V": 138400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.80922747100001, "SHAPE_Area": 1304.72716799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349484.094400003552437, 258017.176600001752377 ], [ 349448.38459999859333, 258044.11540000140667 ], [ 349454.678700000047684, 258062.5320999994874 ], [ 349504.021999999880791, 258044.359700001776218 ], [ 349502.44709999859333, 258039.913800001144409 ], [ 349496.8766999989748, 258031.21339999884367 ], [ 349484.094400003552437, 258017.176600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01812908, "LATITUDE": 18.35250745, "OBJECTID_1": 1267, "PARCEL_NO_": "102304021600", "Tax_Legal_": "BORDEAUX 58 WEST END QTR", "Name": "FENTON, MURIEL", "Address": "PO Box 9495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 105700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.769054213, "SHAPE_Area": 1094.85985854 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349588.081699997186661, 258021.194099999964237 ], [ 349550.042900003492832, 258037.559200000017881 ], [ 349557.936999998986721, 258057.466600000858307 ], [ 349559.511900000274181, 258061.912399999797344 ], [ 349600.806500002741814, 258041.985399998724461 ], [ 349588.081699997186661, 258021.194099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01393158, "LATITUDE": 18.35237793, "OBJECTID_1": 1639, "PARCEL_NO_": "102403020200", "Tax_Legal_": "3C-82 ESTATE FORTUNA WESTEND QTR.", "Name": "JOSEPH, CLAUDETTE", "Address": "P.o. Box 2252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 66300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.51603298399999, "SHAPE_Area": 2047.45537984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350048.237999998033047, 258054.0912000015378 ], [ 350023.618400000035763, 257998.570900000631809 ], [ 350018.040399998426437, 258001.91499999910593 ], [ 350013.179200001060963, 258004.61939999833703 ], [ 349994.954099997878075, 258008.828499998897314 ], [ 349984.106100000441074, 258010.680599998682737 ], [ 349981.460299998521805, 258010.680599998682737 ], [ 349985.250200003385544, 258015.342700000852346 ], [ 350023.124399997293949, 258061.932700000703335 ], [ 350048.237999998033047, 258054.0912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01691396, "LATITUDE": 18.35244307, "OBJECTID_1": 1295, "PARCEL_NO_": "102304031000", "Tax_Legal_": "BORDEAUX 37 WEST END QTR", "Name": "GARCIA, FRANKLIN & MARIA", "Address": "P.O. BOX 4578", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25700, "Improved_V": 49000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.12133258599999, "SHAPE_Area": 1051.9637951499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349725.743500001728535, 258047.863099999725819 ], [ 349698.654399998486042, 258009.433499999344349 ], [ 349688.114799998700619, 258016.102200001478195 ], [ 349680.003100000321865, 258021.735300000756979 ], [ 349707.895000003278255, 258060.593699999153614 ], [ 349725.743500001728535, 258047.863099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00244612, "LATITUDE": 18.35239514, "OBJECTID_1": 1920, "PARCEL_NO_": "102404042800", "Tax_Legal_": "FORTUNA 77-31 WEST END QTR", "Name": "WETTACH, JUAN CARLOS", "Address": "PO Box 302474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75600, "Improved_V": 224100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.42657296300001, "SHAPE_Area": 2274.8216315599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351246.851700000464916, 258013.027699999511242 ], [ 351199.255800001323223, 258015.382399998605251 ], [ 351199.223499998450279, 258019.181800000369549 ], [ 351200.810900002717972, 258022.150100000202656 ], [ 351211.939300000667572, 258041.028499998152256 ], [ 351215.130300000309944, 258045.065400000661612 ], [ 351219.090000003576279, 258053.541499998420477 ], [ 351223.027999997138977, 258064.550599999725819 ], [ 351224.590300001204014, 258070.473999999463558 ], [ 351260.057300001382828, 258072.030900001525879 ], [ 351261.736400000751019, 258064.234200000762939 ], [ 351260.953500002622604, 258061.483500000089407 ], [ 351260.16160000115633, 258059.78830000013113 ], [ 351251.39639999717474, 258047.473099999129772 ], [ 351247.472800001502037, 258034.775400001555681 ], [ 351246.821099996566772, 258016.61600000038743 ], [ 351246.851700000464916, 258013.027699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403045000", "MAP": "D9-5888-T95", "PARCEL_NAM": "3C-18", "ACRE": null, "LONGITUDE": -65.00904398, "LATITUDE": 18.35245703, "OBJECTID_1": 1812, "PARCEL_NO_": "102403045000", "Tax_Legal_": "FORTUNA 3C-18 WESTEND QTR.", "Name": "GRILL, LAWRENCE", "Address": "PO Box 11822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.76117084000001, "SHAPE_Area": 1220.5573573 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350502.321400001645088, 258042.608899999409914 ], [ 350524.007299996912479, 258052.707800000905991 ], [ 350532.039800003170967, 258056.362100001424551 ], [ 350552.122100003063679, 258065.392400000244379 ], [ 350555.349200002849102, 258065.207699999213219 ], [ 350550.804399996995926, 258030.762299999594688 ], [ 350537.192400000989437, 258019.462900001555681 ], [ 350533.121299996972084, 258024.073600001633167 ], [ 350524.192500002682209, 258030.966699998825788 ], [ 350509.623099997639656, 258037.39130000025034 ], [ 350502.321400001645088, 258042.608899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403017600", "MAP": "D9-3151-T85", "PARCEL_NAM": "3F", "ACRE": "2.31", "LONGITUDE": -65.00862384, "LATITUDE": 18.35205002, "OBJECTID_1": 1618, "PARCEL_NO_": "102403017600", "Tax_Legal_": "FORTUNA 3F WEST END QTR.", "Name": "SHAW, PHILMORE,JOEL,JAMAL,KIMRA", "Address": "PO Box 1091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 188700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 394.38066162500002, "SHAPE_Area": 8358.3850446100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350608.768299996852875, 257947.221400000154972 ], [ 350586.361900001764297, 257936.776700001209974 ], [ 350567.683600001037121, 257922.213100001215935 ], [ 350560.770999997854233, 257920.848499998450279 ], [ 350556.452299997210503, 257925.07490000128746 ], [ 350556.0996999964118, 257928.021299999207258 ], [ 350558.696199998259544, 257933.284499999135733 ], [ 350544.866800002753735, 257933.177000001072884 ], [ 350546.387299999594688, 257981.330200001597404 ], [ 350546.362099997699261, 257984.285300001502037 ], [ 350546.266800001263618, 257995.472500000149012 ], [ 350550.804399996995926, 258030.762299999594688 ], [ 350555.349200002849102, 258065.207699999213219 ], [ 350570.679899998009205, 258064.066599998623133 ], [ 350577.132200002670288, 258063.908300001174212 ], [ 350616.650499999523163, 258063.176300000399351 ], [ 350614.519299998879433, 258029.383900001645088 ], [ 350608.768299996852875, 257947.221400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0099282, "LATITUDE": 18.35245433, "OBJECTID_1": 1778, "PARCEL_NO_": "102403041400", "Tax_Legal_": "FORTUNA 3C-23 WESTEND QTR.", "Name": "MORITA M. J. WARR TRUST", "Address": "243B Bournefield", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22900, "Improved_V": 161900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.97512766200001, "SHAPE_Area": 1048.47748729 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350463.523000001907349, 258053.479299999773502 ], [ 350442.857400000095367, 258018.2685999982059 ], [ 350420.984499998390675, 258030.121899999678135 ], [ 350436.018500000238419, 258063.808899998664856 ], [ 350463.523000001907349, 258053.479299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01587458, "LATITUDE": 18.35237446, "OBJECTID_1": 1554, "PARCEL_NO_": "102403010900", "Tax_Legal_": "BORDEAUX 4 WEST END QTR", "Name": "WHITE, CLARENCE A", "Address": "PO Box 1563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26700, "Improved_V": 100700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.68868471600001, "SHAPE_Area": 1333.31791312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349838.686599999666214, 258041.821400001645088 ], [ 349807.600100003182888, 257999.348299998790026 ], [ 349787.314599998295307, 258014.169900000095367 ], [ 349817.594800002872944, 258056.636399999260902 ], [ 349838.686599999666214, 258041.821400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98638338000001, "LATITUDE": 18.35242166, "OBJECTID_1": 2133, "PARCEL_NO_": "102504016200", "Tax_Legal_": "BONNE ESPERANCE 3A-11 WEST END QTR.", "Name": "THOMAS, EDWARD & LUCIA", "Address": "P.O. BOX 2044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25800, "Improved_V": 212400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.02891965200001, "SHAPE_Area": 1341.2345792399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352893.8800999969244, 258057.960799999535084 ], [ 352930.767300002276897, 258082.116300001740456 ], [ 352961.781199999153614, 258038.462600000202656 ], [ 352960.998199999332428, 258035.712000001221895 ], [ 352957.781999997794628, 258034.630199998617172 ], [ 352946.446900002658367, 258040.02589999884367 ], [ 352919.768399998545647, 258048.040199998766184 ], [ 352893.8800999969244, 258057.960799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403027200", "MAP": "D9-5888-T95", "PARCEL_NAM": null, "ACRE": ".25", "LONGITUDE": -65.01113039000001, "LATITUDE": 18.35240161, "OBJECTID_1": 1702, "PARCEL_NO_": "102403027200", "Tax_Legal_": "3C-62 ESTATE FORTUNA NO.8 WEST END QTR", "Name": "FRANCIS, SPENCER L.", "Address": "PO Box 305704", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 169400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.96169723200001, "SHAPE_Area": 1026.0790657800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350332.507200002670288, 258046.401599999517202 ], [ 350328.253100000321865, 258015.782499998807907 ], [ 350312.211400002241135, 258019.943599998950958 ], [ 350304.130300000309944, 258021.988400001078844 ], [ 350292.836599998176098, 258025.371500000357628 ], [ 350305.008500002324581, 258055.388599999248981 ], [ 350309.504799999296665, 258053.696400001645088 ], [ 350324.063400000333786, 258048.538199998438358 ], [ 350332.507200002670288, 258046.401599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01759025, "LATITUDE": 18.35243406, "OBJECTID_1": 1307, "PARCEL_NO_": "102304032200", "Tax_Legal_": "55 BORDEAUX WEST END QTR", "Name": "SMITH, CYNTHIA & KEITH A. D. SMITH", "Address": "PO BOX 304081", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30300, "Improved_V": 134400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.5367795, "SHAPE_Area": 878.52580249699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349647.824299998581409, 258012.817099999636412 ], [ 349607.303700000047684, 258036.550200000405312 ], [ 349616.045500002801418, 258051.609299998730421 ], [ 349620.874399997293949, 258052.704300001263618 ], [ 349652.514799997210503, 258030.165199998766184 ], [ 349654.188500002026558, 258023.0016999989748 ], [ 349647.824299998581409, 258012.817099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00364311, "LATITUDE": 18.35241914, "OBJECTID_1": 1917, "PARCEL_NO_": "102404042500", "Tax_Legal_": "FORTUNA 77-9 WEST END QTR", "Name": "ANDREWS, PETER E", "Address": "P.O. BOX 4677", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68100, "Improved_V": 89000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.26277382000001, "SHAPE_Area": 1947.3429065299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351129.866200000047684, 258020.30290000140667 ], [ 351070.915500000119209, 258030.375100001692772 ], [ 351076.482400000095367, 258039.497699998319149 ], [ 351082.040200002491474, 258049.675599999725819 ], [ 351085.211499996483326, 258056.034400001168251 ], [ 351086.003499999642372, 258057.729600001126528 ], [ 351086.788199998438358, 258060.269200000911951 ], [ 351088.364900000393391, 258064.504000000655651 ], [ 351130.314699999988079, 258062.3141999989748 ], [ 351129.866200000047684, 258020.30290000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01301096, "LATITUDE": 18.35234301, "OBJECTID_1": 1642, "PARCEL_NO_": "102403020600", "Tax_Legal_": "FORTUNA NO. 3C PLOT 78 #8 WESTEND QTR.", "Name": "HENRY, KAYE L", "Address": "PO Box 1244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.094904394, "SHAPE_Area": 1435.10625826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350126.892599999904633, 258002.805900000035763 ], [ 350120.445699997246265, 258002.330899998545647 ], [ 350112.402400001883507, 257999.94310000166297 ], [ 350109.992399998009205, 257998.867899999022484 ], [ 350099.546300001442432, 257994.560499999672174 ], [ 350105.493299998342991, 258053.715399999171495 ], [ 350131.281000003218651, 258055.615200001746416 ], [ 350126.892599999904633, 258002.805900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0127533, "LATITUDE": 18.3523606, "OBJECTID_1": 1643, "PARCEL_NO_": "102403020700", "Tax_Legal_": "FORTUNA 3C-77 WESTEND QTR.", "Name": "NIBBS, ALLEN & CAROLYN", "Address": "PO Box 8032", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28800, "Improved_V": 106000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.291898191, "SHAPE_Area": 1347.70127574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350164.420699998736382, 258046.387200001627207 ], [ 350147.860299997031689, 258002.555300001055002 ], [ 350138.981899999082088, 258003.538100000470877 ], [ 350126.892599999904633, 258002.805900000035763 ], [ 350131.281000003218651, 258055.615200001746416 ], [ 350164.420699998736382, 258046.387200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01368151, "LATITUDE": 18.35225904, "OBJECTID_1": 1640, "PARCEL_NO_": "102403020300", "Tax_Legal_": "FORTUNA 3C-81 WEST END QUARTER", "Name": "WOOD, FRANCIS & ASHTORETH THOMAS WOOD", "Address": "9903 Sudan Pl", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20772, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.423223995, "SHAPE_Area": 1377.89588585 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350023.618400000035763, 257998.570900000631809 ], [ 350048.237999998033047, 258054.0912000015378 ], [ 350059.556900002062321, 258050.595199998468161 ], [ 350052.848499998450279, 257986.156800001859665 ], [ 350044.770999997854233, 257987.779399998486042 ], [ 350035.061099998652935, 257991.710700001567602 ], [ 350023.618400000035763, 257998.570900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01346251, "LATITUDE": 18.3522714, "OBJECTID_1": 1641, "PARCEL_NO_": "102403020400", "Tax_Legal_": "FORTUNA 3C-80 WEST END QUARTER", "Name": "THOMAS, ANGELA P", "Address": "PO Box 305593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32400, "Improved_V": 180200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.55047163399999, "SHAPE_Area": 1523.8684654399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350059.556900002062321, 258050.595199998468161 ], [ 350082.927400000393391, 258052.26410000026226 ], [ 350076.228000000119209, 257986.770300000905991 ], [ 350067.369400002062321, 257985.431200001388788 ], [ 350052.848499998450279, 257986.156800001859665 ], [ 350059.556900002062321, 258050.595199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404022000", "MAP": "D9-2306-T83", "PARCEL_NAM": "31", "ACRE": ".98", "LONGITUDE": -65.00679859, "LATITUDE": 18.35233328, "OBJECTID_1": 1865, "PARCEL_NO_": "102404022000", "Tax_Legal_": "FORTUNA REM 31&30A WEST END QTR", "Name": "O'NEAL, DAVID & BERYL", "Address": "PO Box 9228", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92100, "Improved_V": 167300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.65197884499997, "SHAPE_Area": 5404.3990582500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350735.821900002658367, 257998.903099998831749 ], [ 350748.565399996936321, 258091.408500000834465 ], [ 350793.018399998545647, 258060.50450000166893 ], [ 350790.195500001311302, 258056.169100001454353 ], [ 350821.859499998390675, 258034.338599998503923 ], [ 350821.719999998807907, 258033.612900000065565 ], [ 350818.5253000035882, 258029.998100001364946 ], [ 350804.995999999344349, 258008.989100001752377 ], [ 350797.798500001430511, 258001.964099999517202 ], [ 350796.198499999940395, 258000.473400000482798 ], [ 350790.622699998319149, 257992.406199999153614 ], [ 350784.251500003039837, 257980.837099999189377 ], [ 350735.821900002658367, 257998.903099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01673839, "LATITUDE": 18.35232778, "OBJECTID_1": 1296, "PARCEL_NO_": "102304031100", "Tax_Legal_": "BORDEAUX 38 WEST END QTR", "Name": "GERARD, ALBION", "Address": "PO Box 307614", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27800, "Improved_V": 133300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.568661539, "SHAPE_Area": 1054.6889230700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349743.593900002539158, 258034.921399999409914 ], [ 349719.721000000834465, 257997.573600001633167 ], [ 349704.327399998903275, 258006.102400001138449 ], [ 349698.654399998486042, 258009.433499999344349 ], [ 349725.743500001728535, 258047.863099999725819 ], [ 349743.593900002539158, 258034.921399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304021700", "MAP": null, "PARCEL_NAM": "89", "ACRE": null, "LONGITUDE": -65.01858366, "LATITUDE": 18.35237652, "OBJECTID_1": 1268, "PARCEL_NO_": "102304021700", "Tax_Legal_": "89 BORDEAUX WEST END QTR", "Name": "RHYMER, LESLIE", "Address": "PO Box 7852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24600, "Improved_V": 110600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.92991614300001, "SHAPE_Area": 1075.88029241 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349541.3496999964118, 258016.800799999386072 ], [ 349531.789099998772144, 258003.212600000202656 ], [ 349503.381099998950958, 258024.933800000697374 ], [ 349510.54619999974966, 258035.758200000971556 ], [ 349513.706699997186661, 258043.383499998599291 ], [ 349514.491499997675419, 258045.923000000417233 ], [ 349549.269000001251698, 258033.753100000321865 ], [ 349544.535400003194809, 258021.471000000834465 ], [ 349541.3496999964118, 258016.800799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00968346000001, "LATITUDE": 18.35233952, "OBJECTID_1": 1777, "PARCEL_NO_": "102403041300", "Tax_Legal_": "FORTUNA 3C-22 WESTEND QTR.", "Name": "FLEMING, MARIETTA A", "Address": "3820 Lake Haven Way", "City": "Atlanta", "State": "Georgia", "Zip": 30349, "Country": "United States", "Land_Value": 25800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.07154108200001, "SHAPE_Area": 1266.5983524799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350490.251800000667572, 258039.554800000041723 ], [ 350471.206000000238419, 258003.513000000268221 ], [ 350461.470899999141693, 258010.399399999529123 ], [ 350442.857400000095367, 258018.2685999982059 ], [ 350463.523000001907349, 258053.479299999773502 ], [ 350477.2753000035882, 258048.314500000327826 ], [ 350486.196900002658367, 258042.265799999237061 ], [ 350490.251800000667572, 258039.554800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01921135000001, "LATITUDE": 18.35233975, "OBJECTID_1": 1244, "PARCEL_NO_": "102304011400", "Tax_Legal_": "BORDEAUX 95 WEST END QTR", "Name": "ROBLES, E. & A", "Address": "1917 Double Cedar Dr", "City": "Charlotte", "State": "North Carolina", "Zip": 28214, "Country": "United States", "Land_Value": 23600, "Improved_V": 112200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.888588834, "SHAPE_Area": 899.46013509 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349471.319200001657009, 258002.295499999076128 ], [ 349439.730999998748302, 258018.71339999884367 ], [ 349445.252899996936321, 258033.112900000065565 ], [ 349446.804399996995926, 258040.302799999713898 ], [ 349447.592699997127056, 258042.420200001448393 ], [ 349448.38459999859333, 258044.11540000140667 ], [ 349484.094400003552437, 258017.176600001752377 ], [ 349475.303999997675419, 258007.816500000655651 ], [ 349471.319200001657009, 258002.295499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01082534, "LATITUDE": 18.35233245, "OBJECTID_1": 1773, "PARCEL_NO_": "102403040900", "Tax_Legal_": "3C-63 ESTATE FORTUNA WESTEND QTR", "Name": "FRANCIS, JACQUELINE P", "Address": "GERS COMPLEX-3rd FLOOR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 74800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.652402053, "SHAPE_Area": 1054.79616096 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350363.513700000941753, 258041.955699998885393 ], [ 350360.831600002944469, 258007.321299999952316 ], [ 350345.345799997448921, 258011.348799999803305 ], [ 350328.253100000321865, 258015.782499998807907 ], [ 350332.507200002670288, 258046.401599999517202 ], [ 350335.376900002360344, 258045.675500001758337 ], [ 350357.980599999427795, 258042.694099999964237 ], [ 350363.513700000941753, 258041.955699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01249912, "LATITUDE": 18.35229812, "OBJECTID_1": 1644, "PARCEL_NO_": "102403020800", "Tax_Legal_": "FORTUNA 3C-76 WESTEND QTR.", "Name": "LEWIS, SIDNEY O", "Address": "PO Box 307215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.41946758200001, "SHAPE_Area": 1229.0665931599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350194.326200000941753, 258038.188200000673532 ], [ 350169.679300002753735, 257997.034400001168251 ], [ 350167.251400001347065, 257998.070000000298023 ], [ 350158.358599998056889, 258000.741399999707937 ], [ 350156.742399998009205, 258001.150400001555681 ], [ 350147.860299997031689, 258002.555300001055002 ], [ 350164.420699998736382, 258046.387200001627207 ], [ 350194.326200000941753, 258038.188200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01569425, "LATITUDE": 18.35224657, "OBJECTID_1": 1555, "PARCEL_NO_": "102403011000", "Tax_Legal_": "BORDEAUX 3 WESTEND QTR", "Name": "WINSTON P WENNER & BERYL HURDLE WENNER (LIFE ESTATE)", "Address": "PO Box 304282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034282, "Country": "United States", "Land_Value": 26700, "Improved_V": 100700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.704851545, "SHAPE_Area": 1164.21741851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349856.535199999809265, 258029.090799998492002 ], [ 349825.452200002968311, 257986.195500001311302 ], [ 349807.600100003182888, 257999.348299998790026 ], [ 349838.686599999666214, 258041.821400001645088 ], [ 349856.535199999809265, 258029.090799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97486197000001, "LATITUDE": 18.35227388, "OBJECTID_1": 2579, "PARCEL_NO_": "102603020700", "Tax_Legal_": "CROWN & HAWK 2AA-4 S S QTR", "Name": "BEVERLY L HARRIS & MARVIN RAPHAEL WELLS, Trustees", "Address": "100 I St SE", "City": "Washington", "State": "District of Columbia", "Zip": 20003, "Country": "United States", "Land_Value": 56700, "Improved_V": 213300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.135795092, "SHAPE_Area": 2164.6094309700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354172.727600000798702, 258064.205699998885393 ], [ 354173.855800002813339, 258026.429200001060963 ], [ 354122.192500002682209, 258032.97239999845624 ], [ 354122.649999998509884, 258073.928300000727177 ], [ 354133.121200002729893, 258075.280600000172853 ], [ 354147.645599998533726, 258074.13289999961853 ], [ 354156.536700002849102, 258071.672499999403954 ], [ 354160.580799996852875, 258070.228000000119209 ], [ 354167.861000001430511, 258067.543299999088049 ], [ 354172.727600000798702, 258064.205699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01822532, "LATITUDE": 18.35230887, "OBJECTID_1": 1269, "PARCEL_NO_": "102304021800", "Tax_Legal_": "BORDEAUX 59 WEST END QTR", "Name": "WILLETT, DELYN & SMITH, LECHEEA D.", "Address": "PO Box 8657", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23600, "Improved_V": 109100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.548453413, "SHAPE_Area": 908.398138743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349576.163199998438358, 258000.409400001168251 ], [ 349541.3496999964118, 258016.800799999386072 ], [ 349544.535400003194809, 258021.471000000834465 ], [ 349549.269000001251698, 258033.753100000321865 ], [ 349550.042900003492832, 258037.559200000017881 ], [ 349588.081699997186661, 258021.194099999964237 ], [ 349576.163199998438358, 258000.409400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00604992, "LATITUDE": 18.3520879, "OBJECTID_1": 1869, "PARCEL_NO_": "102404030200", "Tax_Legal_": "FORTUNA 32 WEST END QTR", "Name": "KUMAR, KAMAL S.", "Address": "36 Woodbridge Ave", "City": "Metuchen", "State": "New Jersey", "Zip": 8840, "Country": "United States", "Land_Value": 116200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.57090425799998, "SHAPE_Area": 4698.7409475300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350869.88400000333786, 257964.557300001382828 ], [ 350797.139700002968311, 257984.649099998176098 ], [ 350803.507500000298023, 257994.411499999463558 ], [ 350810.708499997854233, 258001.014299999922514 ], [ 350826.627999998629093, 258025.420400001108646 ], [ 350830.629000000655651, 258029.041700001806021 ], [ 350833.031700000166893, 258030.961199998855591 ], [ 350836.240800000727177, 258032.887299999594688 ], [ 350853.112199999392033, 258040.202599998563528 ], [ 350866.758400000631809, 258047.491500001400709 ], [ 350868.363799996674061, 258048.348999999463558 ], [ 350871.589100003242493, 258048.375399999320507 ], [ 350876.450300000607967, 258045.671000000089407 ], [ 350882.209600001573563, 258032.208099998533726 ], [ 350883.854599997401237, 258028.421900000423193 ], [ 350889.570699997246265, 258020.024900000542402 ], [ 350894.464299999177456, 258013.521099999547005 ], [ 350869.88400000333786, 257964.557300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01053476, "LATITUDE": 18.35227738, "OBJECTID_1": 1774, "PARCEL_NO_": "102403041000", "Tax_Legal_": "FORTUNA 3C-64 No.8 WESTEND QTR.", "Name": "MOOLENAAR, LILLIAN V", "Address": "PO Box 303814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 70200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.62255838300001, "SHAPE_Area": 1088.4706017000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350396.562299996614456, 258032.469999998807907 ], [ 350387.816600002348423, 258000.292899999767542 ], [ 350379.288199998438358, 258002.549600001424551 ], [ 350375.247699998319149, 258003.572000000625849 ], [ 350360.831600002944469, 258007.321299999952316 ], [ 350363.513700000941753, 258041.955699998885393 ], [ 350377.355499997735023, 258040.108399998396635 ], [ 350387.871699996292591, 258036.183699999004602 ], [ 350391.915899999439716, 258034.739199999719858 ], [ 350396.562299996614456, 258032.469999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97533108, "LATITUDE": 18.35229805, "OBJECTID_1": 2578, "PARCEL_NO_": "102603020600", "Tax_Legal_": "CROWN & HAWK 2AA-5 S S QTR", "Name": "BUNCOME (TRUSTEE), AVRIL Q.", "Address": "PO Box 305297", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51400, "Improved_V": 200400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.75961209799999, "SHAPE_Area": 1803.52028154 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354122.192500002682209, 258032.97239999845624 ], [ 354067.302100002765656, 258039.700300000607967 ], [ 354073.511600002646446, 258068.03770000115037 ], [ 354122.649999998509884, 258073.928300000727177 ], [ 354122.192500002682209, 258032.97239999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01768311, "LATITUDE": 18.3522735, "OBJECTID_1": 1306, "PARCEL_NO_": "102304032100", "Tax_Legal_": "BORDEAUX ESTATE 56 No.6 WESTEND QTR.", "Name": "CLENDINEN, JOSEPH & CHENESE CLENDINEN-JOSEPH", "Address": "PO Box 7921", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 145000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.68684487, "SHAPE_Area": 1017.50021527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349636.686999998986721, 257994.994100000709295 ], [ 349596.182599999010563, 258016.827399998903275 ], [ 349607.303700000047684, 258036.550200000405312 ], [ 349647.824299998581409, 258012.817099999636412 ], [ 349643.05120000243187, 258005.178700000047684 ], [ 349639.878100000321865, 257999.030999999493361 ], [ 349636.686999998986721, 257994.994100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0165458, "LATITUDE": 18.35221276, "OBJECTID_1": 1297, "PARCEL_NO_": "102304031200", "Tax_Legal_": "BORDEAUX 39 WEST END QTR", "Name": "FELIX (LIFE ESTATE), DOROTHY I", "Address": "PO BOX 7242", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 107400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.577093195, "SHAPE_Area": 1068.4759198100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349763.879399999976158, 258020.099800001829863 ], [ 349741.59570000320673, 257985.509199999272823 ], [ 349719.721000000834465, 257997.573600001633167 ], [ 349743.593900002539158, 258034.921399999409914 ], [ 349763.879399999976158, 258020.099800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01228057, "LATITUDE": 18.35219585, "OBJECTID_1": 1645, "PARCEL_NO_": "102403020900", "Tax_Legal_": "FORTUNA 3C-75 #8 WESTEND QTR.", "Name": "CREIGHTON, JUDITH P", "Address": "PO Box 11556", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.017783815, "SHAPE_Area": 1182.0068409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350216.231499999761581, 258022.535500001162291 ], [ 350190.744199998676777, 257985.385499998927116 ], [ 350183.451399996876717, 257989.547699999064207 ], [ 350169.679300002753735, 257997.034400001168251 ], [ 350194.326200000941753, 258038.188200000673532 ], [ 350216.231499999761581, 258022.535500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00942842000001, "LATITUDE": 18.3522204, "OBJECTID_1": 1776, "PARCEL_NO_": "102403041200", "Tax_Legal_": "FORTUNA 3C-21 WEST END QUARTER", "Name": "ANDRE, VERNA V.", "Address": "5613 Winchester Pl", "City": "LITHONIA", "State": "Georgia", "Zip": 30038, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.463776798, "SHAPE_Area": 1098.4342299100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350519.421099998056889, 258023.11710000038147 ], [ 350509.883900001645088, 258006.78489999845624 ], [ 350478.522200003266335, 257996.606800001114607 ], [ 350476.887999996542931, 257999.126499999314547 ], [ 350471.206000000238419, 258003.513000000268221 ], [ 350490.251800000667572, 258039.554800000041723 ], [ 350500.800399996340275, 258031.830699998885393 ], [ 350519.421099998056889, 258023.11710000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02421146, "LATITUDE": 18.35007466, "OBJECTID_1": 1187, "PARCEL_NO_": "102303010300", "Tax_Legal_": "5 FORTUNA No.8 WEST END QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1692200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1651.13602442, "SHAPE_Area": 137495.7935 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348668.003600001335144, 258022.529599998146296 ], [ 349149.101000003516674, 257868.991399999707937 ], [ 349138.226199999451637, 257820.350900001823902 ], [ 349135.897200003266335, 257809.777100000530481 ], [ 349121.114900000393391, 257746.539200000464916 ], [ 349115.690099999308586, 257720.741300001740456 ], [ 349107.137100003659725, 257683.518899999558926 ], [ 349101.922700002789497, 257633.02479999884963 ], [ 349096.67230000346899, 257586.752399999648333 ], [ 349071.731700003147125, 257485.434399999678135 ], [ 349018.403599999845028, 257498.085799999535084 ], [ 348931.94650000333786, 257518.698600001633167 ], [ 348931.070100001990795, 257526.924100000411272 ], [ 348930.202600002288818, 257534.094200000166893 ], [ 348926.889300003647804, 257544.410599999129772 ], [ 348922.794799998402596, 257551.765399999916553 ], [ 348904.035599999129772, 257576.73200000077486 ], [ 348881.948700003325939, 257613.703699998557568 ], [ 348873.783100001513958, 257625.669199999421835 ], [ 348865.640799999237061, 257634.890700001269579 ], [ 348864.818300001323223, 257636.7837999984622 ], [ 348843.65820000320673, 257659.619800001382828 ], [ 348837.947499997913837, 257667.383499998599291 ], [ 348833.023299999535084, 257677.475699998438358 ], [ 348828.88740000128746, 257689.685300000011921 ], [ 348822.343400001525879, 257700.608600001782179 ], [ 348811.787600003182888, 257709.177000001072884 ], [ 348768.8462999984622, 257733.101300001144409 ], [ 348760.725599996745586, 257739.789900001138449 ], [ 348755.837399996817112, 257745.660500001162291 ], [ 348746.829499997198582, 257761.840900000184774 ], [ 348743.539499998092651, 257769.413400001823902 ], [ 348739.412600003182888, 257780.567600000649691 ], [ 348735.229999996721745, 257798.2652000002563 ], [ 348734.189900003373623, 257825.698800001293421 ], [ 348739.604000002145767, 257852.763099998235703 ], [ 348737.807899996638298, 257874.280000001192093 ], [ 348737.761200003325939, 257879.76799999922514 ], [ 348736.920699998736382, 257883.771899998188019 ], [ 348732.772200003266335, 257897.459100000560284 ], [ 348731.121899999678135, 257901.878499999642372 ], [ 348724.558100000023842, 257915.123700000345707 ], [ 348717.983499996364117, 257929.635299999266863 ], [ 348704.116200000047684, 257948.309200000017881 ], [ 348698.419799998402596, 257954.384300000965595 ], [ 348682.194700002670288, 257965.861600000411272 ], [ 348672.456000000238419, 257973.170200001448393 ], [ 348670.019100002944469, 257975.261199999600649 ], [ 348658.628200002014637, 257987.200300000607967 ], [ 348656.974200002849102, 257992.041900001466274 ], [ 348658.484300002455711, 258004.086599998176098 ], [ 348668.003600001335144, 258022.529599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00461516, "LATITUDE": 18.35190154, "OBJECTID_1": 1885, "PARCEL_NO_": "102404031800", "Tax_Legal_": "FORTUNA 48 WEST END QTR", "Name": "NILES, NAVARRO & LARAINE", "Address": "PO Box 303523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 141200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 396.15953512800002, "SHAPE_Area": 8847.55121917 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351043.656599998474121, 257917.216899998486042 ], [ 350959.5033999979496, 257951.358600001782179 ], [ 350946.964599996805191, 258003.396099999547005 ], [ 350962.201800003647804, 258013.231100000441074 ], [ 350966.199199996888638, 258017.274599999189377 ], [ 350968.580300003290176, 258021.727000001817942 ], [ 350969.37049999833107, 258023.633400000631809 ], [ 350970.138999998569489, 258028.072599999606609 ], [ 350968.420299999415874, 258040.513099998235703 ], [ 351058.853200003504753, 258026.476700000464916 ], [ 351050.17790000140667, 258003.607599999755621 ], [ 351048.606700003147125, 257998.739500001072884 ], [ 351044.70099999755621, 257983.931000001728535 ], [ 351041.623199999332428, 257966.596200000494719 ], [ 351040.129199996590614, 257952.651799999177456 ], [ 351040.210199996829033, 257943.153200000524521 ], [ 351041.109999999403954, 257932.183699999004602 ], [ 351043.613399997353554, 257922.282800000160933 ], [ 351043.656599998474121, 257917.216899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604025300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97405683, "LATITUDE": 18.35215378, "OBJECTID_1": 2737, "PARCEL_NO_": "102604025300", "Tax_Legal_": "CROWN & HAWK 2AA-2 S S QTR", "Name": "PLASKETT, CORBIN & CHARLOTTE", "Address": "PO Box 6411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35700, "Improved_V": 92200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.65269413799999, "SHAPE_Area": 831.03666902400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354219.05969999730587, 258020.8885000012815 ], [ 354209.992399998009205, 258044.034600000828505 ], [ 354214.832099996507168, 258043.863099999725819 ], [ 354226.124099999666214, 258043.533300001174212 ], [ 354230.144900001585484, 258044.832800000905991 ], [ 354235.744099996984005, 258050.155999999493361 ], [ 354238.924400001764297, 258055.459300000220537 ], [ 354241.249799996614456, 258066.455200001597404 ], [ 354252.824100002646446, 258032.986099999397993 ], [ 354219.05969999730587, 258020.8885000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01014675, "LATITUDE": 18.35214669, "OBJECTID_1": 1775, "PARCEL_NO_": "102403041100", "Tax_Legal_": "FORTUNA 3C-65 WESTEND QTR.", "Name": "JOSEPH, PATRICIA B", "Address": "PO Box 307154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.86736480299999, "SHAPE_Area": 1233.5986975200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350392.777800001204014, 257998.980099998414516 ], [ 350401.215499997138977, 258030.197500001639128 ], [ 350408.920400001108646, 258026.434599999338388 ], [ 350412.161799997091293, 258024.561299998313189 ], [ 350425.125699996948242, 258017.279100000858307 ], [ 350437.277999997138977, 258010.623599998652935 ], [ 350456.704999998211861, 258001.916700001806021 ], [ 350459.944600000977516, 258000.254399999976158 ], [ 350415.656800001859665, 257992.925900001078844 ], [ 350392.777800001204014, 257998.980099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303011100", "MAP": "G9-2211-T73", "PARCEL_NAM": "2", "ACRE": ".25", "LONGITUDE": -65.01552631, "LATITUDE": 18.3521284, "OBJECTID_1": 1189, "PARCEL_NO_": "102303011100", "Tax_Legal_": "BORDEAUX 2 WEST END QTR", "Name": "URSELLA PHILPOTT REVOC LIV TR", "Address": "PO BOX 305685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28900, "Improved_V": 133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.38451571, "SHAPE_Area": 1171.7100484499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349874.383799999952316, 258016.360199999064207 ], [ 349843.304399996995926, 257973.042700000107288 ], [ 349825.452200002968311, 257986.195500001311302 ], [ 349856.535199999809265, 258029.090799998492002 ], [ 349874.383799999952316, 258016.360199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97444305, "LATITUDE": 18.35215377, "OBJECTID_1": 2736, "PARCEL_NO_": "102604025200", "Tax_Legal_": "CROWN & HAWK 2AA-3 S S QTR", "Name": "DONOVAN, AUSTIN & AUDREY", "Address": "PO Box 85", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56000, "Improved_V": 191000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.04787204600001, "SHAPE_Area": 1121.92172196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354219.05969999730587, 258020.8885000012815 ], [ 354173.855800002813339, 258026.429200001060963 ], [ 354172.727600000798702, 258064.205699998885393 ], [ 354188.952799998223782, 258052.728300001472235 ], [ 354193.815800003707409, 258049.812800001353025 ], [ 354199.487000003457069, 258046.692800000309944 ], [ 354209.992399998009205, 258044.034600000828505 ], [ 354219.05969999730587, 258020.8885000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01877368, "LATITUDE": 18.35214056, "OBJECTID_1": 1270, "PARCEL_NO_": "102304021900", "Tax_Legal_": "BORDEAUX 88 WEST END QTR", "Name": "SMITH, C & JAMES, I", "Address": "BOX 4287", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21600, "Improved_V": 197600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.678221826, "SHAPE_Area": 1340.0423724100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349528.605200000107288, 257998.331399999558926 ], [ 349511.88120000064373, 257973.707699999213219 ], [ 349480.219200000166893, 257998.779699999839067 ], [ 349501.784699998795986, 258023.020899999886751 ], [ 349503.381099998950958, 258024.933800000697374 ], [ 349531.789099998772144, 258003.212600000202656 ], [ 349528.605200000107288, 257998.331399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403010500", "MAP": "F9-1522-T65", "PARCEL_NAM": "62", "ACRE": null, "LONGITUDE": -65.00801689, "LATITUDE": 18.35198347, "OBJECTID_1": 1550, "PARCEL_NO_": "102403010500", "Tax_Legal_": "FORTUNA ESTATE 62 WEST END QTR", "Name": "LETTSOME, ROXANNE E. & JOSE A", "Address": "PO Box 306533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107700, "Improved_V": 161100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.29847555399999, "SHAPE_Area": 4376.5422419400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350692.349600002169609, 257980.202799998223782 ], [ 350608.768299996852875, 257947.221400000154972 ], [ 350614.519299998879433, 258029.383900001645088 ], [ 350674.283500000834465, 258018.473999999463558 ], [ 350677.575300000607967, 258010.690499998629093 ], [ 350692.349600002169609, 257980.202799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01931682, "LATITUDE": 18.35213094, "OBJECTID_1": 1245, "PARCEL_NO_": "102304011500", "Tax_Legal_": "BORDEAUX 96 WEST END QTR", "Name": "POTTER, ST. CLAIR & FELICIA", "Address": "PO Box 11092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 148600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.938911871, "SHAPE_Area": 931.88710550200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349462.62780000269413, 257981.326099999248981 ], [ 349427.886200003325939, 257989.274399999529123 ], [ 349435.796499997377396, 258007.2820999994874 ], [ 349439.730999998748302, 258018.71339999884367 ], [ 349471.319200001657009, 258002.295499999076128 ], [ 349468.131700001657009, 257997.836399998515844 ], [ 349463.398199997842312, 257985.554299999028444 ], [ 349462.62780000269413, 257981.326099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302010500", "MAP": null, "PARCEL_NAM": "107", "ACRE": null, "LONGITUDE": -65.01722368, "LATITUDE": 18.35209717, "OBJECTID_1": 1185, "PARCEL_NO_": "102302010500", "Tax_Legal_": "BORDEAUX 119 & 120 REM. WEST END QUARTER", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1069400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.01461257599999, "SHAPE_Area": 1448.1249626700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349664.216700002551079, 257981.709399998188019 ], [ 349642.475100003182888, 257978.153999999165535 ], [ 349639.239000000059605, 257979.394099999219179 ], [ 349638.412900000810623, 257981.709300000220537 ], [ 349647.975400000810623, 257995.086500000208616 ], [ 349662.287600003182888, 258018.846099998801947 ], [ 349667.120099999010563, 258019.519000001251698 ], [ 349687.400200001895428, 258005.330600000917912 ], [ 349709.276699997484684, 257993.055100001394749 ], [ 349708.495600000023842, 257990.093400001525879 ], [ 349680.310599997639656, 257985.640900000929832 ], [ 349664.216700002551079, 257981.709399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01636365, "LATITUDE": 18.35208584, "OBJECTID_1": 1298, "PARCEL_NO_": "102304031300", "Tax_Legal_": "BORDEAUX 40 6 WEST END QTR", "Name": "COAKER, DIANNE R", "Address": "PO Box 475", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47300, "Improved_V": 108700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.82773050899999, "SHAPE_Area": 933.42083283500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349781.729800000786781, 258007.158100001513958 ], [ 349757.855099998414516, 257970.021299999207258 ], [ 349750.531700000166893, 257977.771800000220537 ], [ 349741.59570000320673, 257985.509199999272823 ], [ 349763.879399999976158, 258020.099800001829863 ], [ 349781.729800000786781, 258007.158100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404043100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00369989, "LATITUDE": 18.35208158, "OBJECTID_1": 1923, "PARCEL_NO_": "102404043100", "Tax_Legal_": "FORTUNA 77-10 WEST END QTR", "Name": "WINSTON RICHARDS, NANCY", "Address": "PO BOX 307642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.63068809399999, "SHAPE_Area": 2556.2630170900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351135.02419999986887, 257982.770399998873472 ], [ 351097.935599997639656, 257982.255800001323223 ], [ 351060.641999997198582, 258005.804099999368191 ], [ 351067.737000003457069, 258024.860599998384714 ], [ 351070.915500000119209, 258030.375100001692772 ], [ 351129.866200000047684, 258020.30290000140667 ], [ 351132.483000002801418, 257997.103999998420477 ], [ 351134.194499999284744, 257985.50789999961853 ], [ 351135.02419999986887, 257982.770399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404043700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00130605, "LATITUDE": 18.35194843, "OBJECTID_1": 1929, "PARCEL_NO_": "102404043700", "Tax_Legal_": "77-36 FORTUNA WEST END QUARTER", "Name": "DUMAS, STANFIELD & CASCILLA", "Address": "PO Box 8033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59100, "Improved_V": 159100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.05096589, "SHAPE_Area": 3431.8911320500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351389.159999996423721, 257967.540800001472235 ], [ 351348.109999999403954, 257958.760999999940395 ], [ 351346.479400001466274, 257960.858600001782179 ], [ 351333.493900001049042, 257970.673700001090765 ], [ 351322.088699996471405, 257984.301500000059605 ], [ 351318.814900003373623, 257989.974199999123812 ], [ 351317.992399998009205, 257991.867300000041723 ], [ 351316.304200001060963, 258000.719399999827147 ], [ 351314.648400001227856, 258005.772100001573563 ], [ 351313.824100002646446, 258007.876299999654293 ], [ 351369.256499998271465, 258032.183600001037121 ], [ 351389.159999996423721, 257967.540800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102403010700", "MAP": "D9-5695-T94", "PARCEL_NAM": "ROW 3C-F", "ACRE": "1.45", "LONGITUDE": -65.01348038, "LATITUDE": 18.35147887, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 546.17408777200001, "SHAPE_Area": 2057.0597163000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350099.51860000193119, 257903.156800001859665 ], [ 350102.754699997603893, 257901.916700001806021 ], [ 350109.995300002396107, 257903.875799998641014 ], [ 350112.398100003600121, 257905.795299999415874 ], [ 350113.98369999974966, 257908.974700000137091 ], [ 350118.773000001907349, 257914.71339999884367 ], [ 350122.763199999928474, 257919.601199999451637 ], [ 350129.976899996399879, 257924.726500000804663 ], [ 350139.629299998283386, 257927.549699999392033 ], [ 350153.336599998176098, 257927.661899998784065 ], [ 350166.250200003385544, 257926.28999999910593 ], [ 350163.908600002527237, 257917.193799998611212 ], [ 350158.25900000333786, 257917.780799999833107 ], [ 350148.57599999755621, 257918.545899998396635 ], [ 350139.710199996829033, 257918.051199998706579 ], [ 350135.693000003695488, 257916.329599998891354 ], [ 350129.269500002264977, 257913.110599998384714 ], [ 350123.533500000834465, 257905.982099998742342 ], [ 350121.865299999713898, 257898.678100001066923 ], [ 350121.943899996578693, 257894.901599999517202 ], [ 350123.596199996769428, 257890.653000000864267 ], [ 350125.413699999451637, 257888.700599998235703 ], [ 350122.205099999904633, 257890.465799998492002 ], [ 350118.515799999237061, 257885.410799998790026 ], [ 350078.41330000013113, 257906.5929000005126 ], [ 350026.608599998056889, 257940.339099999517202 ], [ 349972.649099998176098, 257972.484900001436472 ], [ 349943.107699997723103, 257990.229200001806021 ], [ 349948.564800001680851, 257993.058299999684095 ], [ 349966.585699997842312, 257983.973099999129772 ], [ 349998.191899999976158, 257965.444499999284744 ], [ 350022.507200002670288, 257950.866900000721216 ], [ 350034.668399997055531, 257943.155999999493361 ], [ 350058.180900000035763, 257928.149700000882149 ], [ 350082.505199998617172, 257912.516800001263618 ], [ 350097.900600001215935, 257903.776799999177456 ], [ 350099.51860000193119, 257903.156800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01209132, "LATITUDE": 18.35207418, "OBJECTID_1": 1646, "PARCEL_NO_": "102403021000", "Tax_Legal_": "FORTUNA 3C-74 WESTEND QTR.", "Name": "HANLEY, KIPLING A. & EDEN", "Address": "PO BOX 303212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.32746455399999, "SHAPE_Area": 996.30555711299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350234.891699999570847, 258009.178300000727177 ], [ 350210.192800000309944, 257974.145700000226498 ], [ 350190.744199998676777, 257985.385499998927116 ], [ 350216.231499999761581, 258022.535500001162291 ], [ 350234.891699999570847, 258009.178300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01834317, "LATITUDE": 18.35211278, "OBJECTID_1": 1271, "PARCEL_NO_": "102304022000", "Tax_Legal_": "BORDEAUX 60 WEST END QTR", "Name": "BLANCHE E YEARWOOD REVOC LIVING TRUST", "Address": "PO Box 302164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25700, "Improved_V": 137900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.09492896, "SHAPE_Area": 1017.41397807 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349559.446400001645088, 257974.941300000995398 ], [ 349528.605200000107288, 257998.331399999558926 ], [ 349531.789099998772144, 258003.212600000202656 ], [ 349541.3496999964118, 258016.800799999386072 ], [ 349576.163199998438358, 258000.409400001168251 ], [ 349573.776699997484684, 257996.590199999511242 ], [ 349559.446400001645088, 257974.941300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01779682, "LATITUDE": 18.35209513, "OBJECTID_1": 1308, "PARCEL_NO_": "102304032300", "Tax_Legal_": "BORDEAUX 54 WEST END QTR", "Name": "NIBBS, CLARENCE & DELORES", "Address": "7306 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24600, "Improved_V": 160400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.78385445699999, "SHAPE_Area": 1097.24076378 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349621.543300002813339, 257974.18299999833107 ], [ 349584.260499998927116, 257996.464899998158216 ], [ 349596.182599999010563, 258016.827399998903275 ], [ 349636.686999998986721, 257994.994100000709295 ], [ 349625.526299998164177, 257979.915100000798702 ], [ 349621.543300002813339, 257974.18299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404043600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00189968, "LATITUDE": 18.35186733, "OBJECTID_1": 1928, "PARCEL_NO_": "102404043600", "Tax_Legal_": "FORTUNA 77-43 WEST END QTR", "Name": "STEELE, PAQUITA ROJAS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.89851820300001, "SHAPE_Area": 2592.5028332400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351304.963699996471405, 258006.7483000010252 ], [ 351309.968800000846386, 257987.157600000500679 ], [ 351310.789499998092651, 257985.475600000470877 ], [ 351312.430900000035763, 257982.1114999987185 ], [ 351314.880400002002716, 257978.543000001460314 ], [ 351319.766800001263618, 257972.883400000631809 ], [ 351330.349600002169609, 257961.148800000548363 ], [ 351340.084700003266335, 257954.26240000128746 ], [ 351340.100900001823902, 257952.362700000405312 ], [ 351328.817900002002716, 257951.637099999934435 ], [ 351320.742200002074242, 257953.048599999397993 ], [ 351303.757500000298023, 257959.031300000846386 ], [ 351281.083599999547005, 257970.244800001382828 ], [ 351269.766500003635883, 257973.529699999839067 ], [ 351260.076300002634525, 257975.13910000026226 ], [ 351256.816899999976158, 257979.123199999332428 ], [ 351254.26129999756813, 257995.145399998873472 ], [ 351255.415899999439716, 258010.274000000208616 ], [ 351304.963699996471405, 258006.7483000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604027500", "MAP": null, "PARCEL_NAM": "7Aa & 8A", "ACRE": null, "LONGITUDE": -64.97300148, "LATITUDE": 18.35212873, "OBJECTID_1": 2758, "PARCEL_NO_": "102604027500", "Tax_Legal_": "7AA&8A CROWN & HAWK SOUTHSIDE QUARTER", "Name": "TURBE (LIFE ESTATE), JEAN L & LORRAINE M. & M. DORFMAN", "Address": "PO Box 304554", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55400, "Improved_V": 168000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.344844696, "SHAPE_Area": 458.62498835700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354326.837600000202656, 258053.223600000143051 ], [ 354359.212399996817112, 258039.134199999272823 ], [ 354348.112800002098083, 258016.878499999642372 ], [ 354332.580700002610683, 258041.660399999469519 ], [ 354330.123999997973442, 258046.073300000280142 ], [ 354326.837600000202656, 258053.223600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403011200", "MAP": null, "PARCEL_NAM": "102", "ACRE": null, "LONGITUDE": -65.01530745, "LATITUDE": 18.35199899, "OBJECTID_1": 1556, "PARCEL_NO_": "102403011200", "Tax_Legal_": "BORDEAUX 102 WEST END QTR", "Name": "ANDERSON, NORMAN", "Address": "PO Box 305962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32300, "Improved_V": 185400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.89783864200001, "SHAPE_Area": 1691.3002262099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349906.108900003135204, 257993.533300001174212 ], [ 349863.046999998390675, 257958.94310000166297 ], [ 349857.097999997437, 257963.02309999987483 ], [ 349855.476400002837181, 257964.06529999896884 ], [ 349843.304399996995926, 257973.042700000107288 ], [ 349874.383799999952316, 258016.360199999064207 ], [ 349888.175599999725819, 258006.551600001752377 ], [ 349906.108900003135204, 257993.533300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404043200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00307528, "LATITUDE": 18.35192454, "OBJECTID_1": 1924, "PARCEL_NO_": "102404043200", "Tax_Legal_": "77-18 FORTUNA WEST END QUARTER", "Name": "TRUST AGREEMENT OF RALDA V SIMMONDS", "Address": "PO Box 7755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82600, "Improved_V": 168600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.98538330400001, "SHAPE_Area": 2798.2943081 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351199.509400002658367, 257985.620299998670816 ], [ 351155.4949000030756, 257946.207699999213219 ], [ 351149.798500001430511, 257952.282800000160933 ], [ 351148.97240000218153, 257954.598099999129772 ], [ 351143.845100000500679, 257988.542199999094009 ], [ 351142.135300002992153, 257999.927200000733137 ], [ 351139.523999996483326, 258022.492899999022484 ], [ 351175.876400001347065, 258014.768800001591444 ], [ 351189.608900003135204, 258011.925900001078844 ], [ 351192.10869999974966, 258002.447200000286102 ], [ 351194.552799999713898, 257999.511900000274181 ], [ 351199.509400002658367, 257985.620299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01436207, "LATITUDE": 18.35205977, "OBJECTID_1": 1653, "PARCEL_NO_": "102403021800", "Tax_Legal_": "FORTUNA PLOT #87 PARCEL 3C WESTEND QTR", "Name": "MALONE, ADORA L. & ZENA S. WILLIAMS", "Address": "7000ESTATE Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24800, "Improved_V": 503700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.36612211400001, "SHAPE_Area": 648.84449292800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349994.674800001084805, 258002.173300001770258 ], [ 349975.130000002682209, 257978.964200001209974 ], [ 349966.585699997842312, 257983.973099999129772 ], [ 349948.564800001680851, 257993.058299999684095 ], [ 349959.235299997031689, 257999.038899999111891 ], [ 349965.320699997246265, 258002.213899999856949 ], [ 349969.289399996399879, 258003.536800000816584 ], [ 349973.258199997246265, 258004.8597999997437 ], [ 349979.356700003147125, 258006.809099998325109 ], [ 349983.32940000295639, 258006.274999998509884 ], [ 349994.674800001084805, 258002.173300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01619064, "LATITUDE": 18.35196356, "OBJECTID_1": 1299, "PARCEL_NO_": "102304031400", "Tax_Legal_": "BORDEAUX 41 WEST END QTR", "Name": "FRANCIS, CURBY Q., ZENOBIA, CAMPBELL & ALVIN", "Address": "PO Box 305100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30000, "Improved_V": 170700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.029527355, "SHAPE_Area": 1048.39121344 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349757.855099998414516, 257970.021299999207258 ], [ 349781.729800000786781, 258007.158100001513958 ], [ 349795.525200001895428, 257996.927400000393391 ], [ 349798.773800000548363, 257994.209800001233816 ], [ 349800.458400003612041, 257985.779800001531839 ], [ 349799.668200001120567, 257983.873500000685453 ], [ 349786.074199996888638, 257970.46339999884367 ], [ 349776.454199999570847, 257963.840700000524521 ], [ 349770.037900000810623, 257959.777399998158216 ], [ 349766.807199999690056, 257960.384300000965595 ], [ 349757.855099998414516, 257970.021299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01192939000001, "LATITUDE": 18.35193474, "OBJECTID_1": 1647, "PARCEL_NO_": "102403021100", "Tax_Legal_": "FORTUNA 3C-73 WESTEND QTR.", "Name": "HODGE, MARCIA C", "Address": "PO Box 11142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.222518423, "SHAPE_Area": 917.247236402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350244.626800000667572, 258002.291799999773502 ], [ 350236.144000001251698, 257956.83729999884963 ], [ 350215.057599999010563, 257971.019099999219179 ], [ 350210.192800000309944, 257974.145700000226498 ], [ 350234.891699999570847, 258009.178300000727177 ], [ 350244.626800000667572, 258002.291799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01414075, "LATITUDE": 18.35196775, "OBJECTID_1": 1654, "PARCEL_NO_": "102403021900", "Tax_Legal_": "3C-88 FORTUNA WESTEND QTR", "Name": "HODGE (TRUSTEE), FRANKLIN R & CHRISTINE R", "Address": "PO Box 11606", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28300, "Improved_V": 179100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.523476195, "SHAPE_Area": 808.71340164499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349975.130000002682209, 257978.964200001209974 ], [ 349994.674800001084805, 258002.173300001770258 ], [ 350002.74210000038147, 257999.256700001657009 ], [ 350006.789800003170967, 257997.390000000596046 ], [ 350017.322200000286102, 257991.565499998629093 ], [ 349998.191899999976158, 257965.444499999284744 ], [ 349975.130000002682209, 257978.964200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604025400", "MAP": "G9-711-T63", "PARCEL_NAM": "9A", "ACRE": "1.0", "LONGITUDE": -64.97337579000001, "LATITUDE": 18.35176134, "OBJECTID_1": 2738, "PARCEL_NO_": "102604025400", "Tax_Legal_": "CROWN & HAWK 9A S S QTR", "Name": "HODGE, ELLINGTON", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 109200, "Improved_V": 66200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.15050498, "SHAPE_Area": 4343.0997570199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354332.40089999884367, 257960.863400001078844 ], [ 354323.08110000193119, 257948.600000001490116 ], [ 354255.485799998044968, 258004.510299999266863 ], [ 354259.608999997377396, 258009.855000000447035 ], [ 354267.449199996888638, 258020.01799999922514 ], [ 354275.332500003278255, 258041.191899999976158 ], [ 354345.027800001204014, 258000.388000000268221 ], [ 354348.247599996626377, 257998.330099999904633 ], [ 354353.855800002813339, 257989.094700001180172 ], [ 354332.40089999884367, 257960.863400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604024800", "MAP": "D9-624-T66", "PARCEL_NAM": "7AC", "ACRE": null, "LONGITUDE": -64.97249174, "LATITUDE": 18.35205641, "OBJECTID_1": 2733, "PARCEL_NO_": "102604024800", "Tax_Legal_": "CROWN & HAWK 7AC&8D S S QTR", "Name": "PENHA, JR , LEOPOLD & YOLANDA", "Address": "PO Box 1464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65900, "Improved_V": 278400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.2564984694, "SHAPE_Area": 245.01401790599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354408.600599996745586, 258015.684799998998642 ], [ 354389.978100001811981, 258024.609400000423193 ], [ 354393.073899999260902, 258039.833500001579523 ], [ 354395.474899999797344, 258041.964099999517202 ], [ 354397.895599998533726, 258041.772799998521805 ], [ 354399.52080000191927, 258040.308499999344349 ], [ 354408.600599996745586, 258015.684799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0054519, "LATITUDE": 18.35174706, "OBJECTID_1": 1886, "PARCEL_NO_": "102404031900", "Tax_Legal_": "FORTUNA 45 WEST END QTR", "Name": "KUMAR, KAMAL S.", "Address": "36 Woodbridge Ave", "City": "Metuchen", "State": "New Jersey", "Zip": 8840, "Country": "United States", "Land_Value": 117000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.13740399099999, "SHAPE_Area": 4887.1675872899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350913.638899996876717, 257939.795299999415874 ], [ 350869.246699996292591, 257944.709300000220537 ], [ 350861.162000000476837, 257947.176199998706579 ], [ 350869.88400000333786, 257964.557300001382828 ], [ 350894.464299999177456, 258013.521099999547005 ], [ 350897.730899997055531, 258008.692699998617172 ], [ 350901.803900003433228, 258003.870799999684095 ], [ 350905.880400002002716, 257998.626899998635054 ], [ 350913.977700002491474, 257994.682399999350309 ], [ 350923.664200000464916, 257993.495099999010563 ], [ 350930.913800001144409, 257994.398800000548363 ], [ 350936.53999999910593, 257996.555799998342991 ], [ 350946.964599996805191, 258003.396099999547005 ], [ 350959.5033999979496, 257951.358600001782179 ], [ 350963.680600002408028, 257934.294199999421835 ], [ 350913.638899996876717, 257939.795299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404043300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0025073, "LATITUDE": 18.35198133, "OBJECTID_1": 1925, "PARCEL_NO_": "102404043300", "Tax_Legal_": "FORTUNA 77-32 WEST END QTR", "Name": "WETTACH, JUAN CARLOS", "Address": "PO Box 302474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77400, "Improved_V": 165500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.71601773, "SHAPE_Area": 1599.0984852900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351243.959100000560284, 257973.951699998229742 ], [ 351233.487800002098083, 257972.599500000476837 ], [ 351226.218400001525879, 257974.017599999904633 ], [ 351222.987800002098083, 257974.624499998986721 ], [ 351217.329199999570847, 257976.2668999992311 ], [ 351210.020199999213219, 257982.32880000025034 ], [ 351205.036700002849102, 257999.386599998921156 ], [ 351202.579999998211861, 258003.799400001764297 ], [ 351199.311599999666214, 258008.838899999856949 ], [ 351199.255800001323223, 258015.382399998605251 ], [ 351246.851700000464916, 258013.027699999511242 ], [ 351245.424199998378754, 257991.273400001227856 ], [ 351247.952899999916553, 257978.417399998754263 ], [ 351245.564499996602535, 257974.809200000017881 ], [ 351243.959100000560284, 257973.951699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604025600", "MAP": "D9-8283-T009", "PARCEL_NAM": "8B-1", "ACRE": ".23", "LONGITUDE": -64.9728187, "LATITUDE": 18.35193594, "OBJECTID_1": 2740, "PARCEL_NO_": "102604025600", "Tax_Legal_": "CROWN & HAWK 7AB,8B-A&8B-1 S S QTR", "Name": "OLIVE, STANLEY & ERMIN", "Address": "PO Box 304583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30300, "Improved_V": 247300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.309305076, "SHAPE_Area": 839.41243193900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354377.931999996304512, 258018.811299998313189 ], [ 354373.205600000917912, 258005.684799998998642 ], [ 354366.918799996376038, 257986.423900000751019 ], [ 354348.112800002098083, 258016.878499999642372 ], [ 354358.375900000333786, 258037.456999998539686 ], [ 354374.454899996519089, 258029.748599998652935 ], [ 354377.931999996304512, 258018.811299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01895887000001, "LATITUDE": 18.35194294, "OBJECTID_1": 1272, "PARCEL_NO_": "102304022100", "Tax_Legal_": "BORDEAUX 87 WEST END QTR", "Name": "WILSON, MAJORIE", "Address": "PO Box 7692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25700, "Improved_V": 107600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.248398178, "SHAPE_Area": 857.75922961799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349508.700900003314018, 257968.40430000051856 ], [ 349469.233000002801418, 257963.226100001484156 ], [ 349470.766500003635883, 257972.526799999177456 ], [ 349471.53320000320673, 257977.177099999040365 ], [ 349473.869400002062321, 257986.906500000506639 ], [ 349474.641599997878075, 257990.923599999397993 ], [ 349480.219200000166893, 257998.779699999839067 ], [ 349511.88120000064373, 257973.707699999213219 ], [ 349510.290200002491474, 257971.161499999463558 ], [ 349508.700900003314018, 257968.40430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01850381, "LATITUDE": 18.35193063, "OBJECTID_1": 1273, "PARCEL_NO_": "102304022200", "Tax_Legal_": "BORDEAUX 61 WEST END QTR", "Name": "VIALET, LORRAINE & ANTHONY A", "Address": "PO Box 1082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23600, "Improved_V": 103400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.75231371699999, "SHAPE_Area": 992.05338957399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349552.322700001299381, 257959.262099999934435 ], [ 349510.290200002491474, 257971.161499999463558 ], [ 349511.88120000064373, 257973.707699999213219 ], [ 349528.605200000107288, 257998.331399999558926 ], [ 349559.446400001645088, 257974.941300000995398 ], [ 349557.8445999994874, 257973.661699999123812 ], [ 349553.091300003230572, 257963.701400000602007 ], [ 349552.322700001299381, 257959.262099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01792522, "LATITUDE": 18.35192064, "OBJECTID_1": 1309, "PARCEL_NO_": "102304032400", "Tax_Legal_": "BORDEAUX 53 6 WEST END QTR", "Name": "BASS-BENJAMIN, J & OTHERS LIFE-IN", "Address": "3003 Desert Palm Ct", "City": "Dumfries", "State": "Virginia", "Zip": 22026, "Country": "United States", "Land_Value": 28900, "Improved_V": 104900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.27994105400001, "SHAPE_Area": 950.43847980500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349607.981600001454353, 257956.973400000482798 ], [ 349571.523199997842312, 257977.151099998503923 ], [ 349579.498199999332428, 257987.559999998658895 ], [ 349580.290100000798702, 257989.255199998617172 ], [ 349584.260499998927116, 257996.464899998158216 ], [ 349621.543300002813339, 257974.18299999833107 ], [ 349615.969200000166893, 257965.904699999839067 ], [ 349607.981600001454353, 257956.973400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404043800", "MAP": "B9-147-T66", "PARCEL_NAM": "77-11", "ACRE": null, "LONGITUDE": -65.00390656, "LATITUDE": 18.3518093, "OBJECTID_1": 1930, "PARCEL_NO_": "102404043800", "Tax_Legal_": "FORTUNA 77-11 WEST END QTR", "Name": "STUART, LINDA", "Address": "P O BOX 30411", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.70458602100001, "SHAPE_Area": 1664.3951688100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351104.407999999821186, 257942.460400000214577 ], [ 351052.131800003349781, 257973.623199999332428 ], [ 351055.125500001013279, 257990.771299999207258 ], [ 351060.641999997198582, 258005.804099999368191 ], [ 351097.935599997639656, 257982.255800001323223 ], [ 351104.407999999821186, 257942.460400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01164833, "LATITUDE": 18.3518098, "OBJECTID_1": 1648, "PARCEL_NO_": "102403021200", "Tax_Legal_": "FORTUNA ESTATE 3C-72 WESTEND QTR", "Name": "FARRINGTON, KENNETH & ROXANNE", "Address": "PO Box 11274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.31397583, "SHAPE_Area": 1308.97731359 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350279.454700000584126, 257984.211800001561642 ], [ 350270.917900003492832, 257945.089600000530481 ], [ 350264.465599998831749, 257945.247900001704693 ], [ 350256.391699999570847, 257946.448300000280142 ], [ 350241.813400000333786, 257953.928399998694658 ], [ 350250.305200003087521, 257998.327500000596046 ], [ 350266.530299998819828, 257986.85020000115037 ], [ 350279.454700000584126, 257984.211800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01942081, "LATITUDE": 18.35187136, "OBJECTID_1": 1246, "PARCEL_NO_": "102304011600", "Tax_Legal_": "BORDEAUX 97 WEST END QTR", "Name": "FRETT, MILTON", "Address": "PO Box 305747", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33900, "Improved_V": 122300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.768795098, "SHAPE_Area": 1271.79019141 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349460.404899999499321, 257958.298700001090765 ], [ 349412.888199999928474, 257951.365899998694658 ], [ 349415.228000000119209, 257960.673200000077486 ], [ 349427.886200003325939, 257989.274399999529123 ], [ 349462.62780000269413, 257981.326099999248981 ], [ 349461.067299999296665, 257975.191599998623133 ], [ 349460.404899999499321, 257958.298700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0127916, "LATITUDE": 18.35193234, "OBJECTID_1": 1659, "PARCEL_NO_": "102403022400", "Tax_Legal_": "3C-85 ESTATE FORTUNA WESTEND QTR.", "Name": "POTTER, MERWIN & CHRISTOPHER, CEL", "Address": "PO Box 8750", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34500, "Improved_V": 203000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.865163459, "SHAPE_Area": 922.43842941399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350159.420199997723103, 257970.77479999884963 ], [ 350132.856899999082088, 257965.280099999159575 ], [ 350122.223800003528595, 257982.924899999052286 ], [ 350108.473300002515316, 257987.878600001335144 ], [ 350114.903999999165535, 257990.253299999982119 ], [ 350120.531999997794628, 257992.199200000613928 ], [ 350126.163599997758865, 257993.722899999469519 ], [ 350127.772699996829033, 257994.158300001174212 ], [ 350146.319600000977516, 257994.098999999463558 ], [ 350156.825099997222424, 257991.440699998289347 ], [ 350159.420199997723103, 257970.77479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01386018, "LATITUDE": 18.35181863, "OBJECTID_1": 1655, "PARCEL_NO_": "102403022000", "Tax_Legal_": "FORTUNA 3C-89 WESTEND QTR. #8", "Name": "ROLSTON ANTHONY REVOCABLE LIVING TRUST", "Address": "PO Box 503171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29600, "Improved_V": 144600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.664625325, "SHAPE_Area": 1399.2755912800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350054.540299996733665, 257976.882500000298023 ], [ 350034.668399997055531, 257943.155999999493361 ], [ 350022.507200002670288, 257950.866900000721216 ], [ 349998.191899999976158, 257965.444499999284744 ], [ 350017.322200000286102, 257991.565499998629093 ], [ 350034.335699997842312, 257982.205600000917912 ], [ 350045.658299997448921, 257978.287500001490116 ], [ 350054.540299996733665, 257976.882500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01234592, "LATITUDE": 18.3517766, "OBJECTID_1": 1660, "PARCEL_NO_": "102403022500", "Tax_Legal_": "FORTUNA PLOT #84 PARCEL 3C WESTEND QTR", "Name": "WALTERS (TRUSTEE), GLORIA J.", "Address": "PO BOX 305755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49300, "Improved_V": 173500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.53868180699999, "SHAPE_Area": 1556.8021578600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350233.806000001728535, 257947.318999998271465 ], [ 350239.473600000143051, 257944.621100001037121 ], [ 350233.824000000953674, 257945.208200000226498 ], [ 350204.760799996554852, 257949.192200001329184 ], [ 350161.973999999463558, 257954.963700000196695 ], [ 350159.420199997723103, 257970.77479999884963 ], [ 350156.825099997222424, 257991.440699998289347 ], [ 350165.714299999177456, 257989.191500000655651 ], [ 350182.724200002849102, 257980.253699999302626 ], [ 350194.888999998569489, 257972.120600000023842 ], [ 350207.039399996399879, 257965.676100000739098 ], [ 350218.394299998879433, 257957.958599999547005 ], [ 350233.806000001728535, 257947.318999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604024800", "MAP": "D9-624-T66", "PARCEL_NAM": "8D", "ACRE": ".50", "LONGITUDE": -64.97248259, "LATITUDE": 18.35171715, "OBJECTID_1": 2733, "PARCEL_NO_": "102604024800", "Tax_Legal_": "CROWN & HAWK 7AC&8D S S QTR", "Name": "PENHA, JR , LEOPOLD & YOLANDA", "Address": "PO Box 1464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65900, "Improved_V": 278400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.784112308, "SHAPE_Area": 1780.31419065 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354408.295999996364117, 257956.787200000137091 ], [ 354375.917499996721745, 257983.511799998581409 ], [ 354386.058100000023842, 258011.489500001072884 ], [ 354388.414099998772144, 258018.897100001573563 ], [ 354389.978100001811981, 258024.609400000423193 ], [ 354408.600599996745586, 258015.684799998998642 ], [ 354421.713799998164177, 257990.883099999278784 ], [ 354408.295999996364117, 257956.787200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-57", "ACRE": ".16", "LONGITUDE": -65.01301924000001, "LATITUDE": 18.35051175, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.5412641, "SHAPE_Area": 722.74829733700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350099.188199996948242, 257813.940799999982119 ], [ 350102.027699999511242, 257820.755300000309944 ], [ 350105.070500001311302, 257828.560499999672174 ], [ 350108.113200001418591, 257835.17509999871254 ], [ 350112.611100003123283, 257844.303199999034405 ], [ 350133.797200001776218, 257829.774599999189377 ], [ 350128.858199998736382, 257821.515900000929832 ], [ 350122.025600001215935, 257806.916400000452995 ], [ 350099.188199996948242, 257813.940799999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01308804, "LATITUDE": 18.35185439, "OBJECTID_1": 1658, "PARCEL_NO_": "102403022300", "Tax_Legal_": "FORTUNA 3C-86 WEST END QUARTER", "Name": "PAGE, ANTHONY M. & TOSCA C", "Address": "PO Box 503055", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 34500, "Improved_V": 193200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.167105011, "SHAPE_Area": 913.50296059499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350132.856899999082088, 257965.280099999159575 ], [ 350095.82769999653101, 257957.799800001084805 ], [ 350084.352300003170967, 257979.659600000828505 ], [ 350095.610100001096725, 257983.340399999171495 ], [ 350108.473300002515316, 257987.878600001335144 ], [ 350122.223800003528595, 257982.924899999052286 ], [ 350132.856899999082088, 257965.280099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404022100", "MAP": "D9-299-T62", "PARCEL_NAM": "49", "ACRE": "1.02", "LONGITUDE": -65.00708678, "LATITUDE": 18.3517146, "OBJECTID_1": 1866, "PARCEL_NO_": "102404022100", "Tax_Legal_": "FORTUNA 49 WEST END QTR", "Name": "SINEISE, THADDEUS & VICTORIA", "Address": "PO Box 210562", "City": "West Palm Beach", "State": "Florida", "Zip": 33421, "Country": "United States", "Land_Value": 111000, "Improved_V": 734300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.521750371, "SHAPE_Area": 4073.7808462900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350752.563400000333786, 257916.523200001567602 ], [ 350747.725500002503395, 257916.483600001782179 ], [ 350737.999399997293949, 257922.314599998295307 ], [ 350730.688699997961521, 257928.587600000202656 ], [ 350724.986900001764297, 257935.295899998396635 ], [ 350720.093299999833107, 257941.799800001084805 ], [ 350702.023599997162819, 257980.493099998682737 ], [ 350699.789899997413158, 257985.17850000038743 ], [ 350735.821900002658367, 257998.903099998831749 ], [ 350784.251500003039837, 257980.837099999189377 ], [ 350778.711400002241135, 257970.777199998497963 ], [ 350772.363399997353554, 257958.692899998277426 ], [ 350771.57320000231266, 257956.78660000115633 ], [ 350766.083700001239777, 257938.587600000202656 ], [ 350765.295400001108646, 257936.470199998468161 ], [ 350762.131300002336502, 257929.267099998891354 ], [ 350755.77250000089407, 257918.449299998581409 ], [ 350752.563400000333786, 257916.523200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01661651000001, "LATITUDE": 18.35178313, "OBJECTID_1": 1300, "PARCEL_NO_": "102304031500", "Tax_Legal_": "BORDEAUX 46 WEST END QTR", "Name": "FENTON, WINGROVE & MURIEL (Life Estate)", "Address": "PO Box 9495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28700, "Improved_V": 98100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.99179991, "SHAPE_Area": 937.92836231900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349722.594899997115135, 257944.190400000661612 ], [ 349719.053199999034405, 257981.313900001347065 ], [ 349721.472099997103214, 257981.333700001239777 ], [ 349728.730700001120567, 257981.182000000029802 ], [ 349736.012699998915195, 257978.286299999803305 ], [ 349746.573899999260902, 257969.084600001573563 ], [ 349756.339500002563, 257958.609900001436472 ], [ 349757.178199999034405, 257954.81700000166893 ], [ 349754.784500002861023, 257951.842099998146296 ], [ 349741.917599998414516, 257947.725999999791384 ], [ 349722.594899997115135, 257944.190400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01688615, "LATITUDE": 18.35177171, "OBJECTID_1": 1301, "PARCEL_NO_": "102304031600", "Tax_Legal_": "BORDEAUX 47 6 WEST END QTR", "Name": "CARMONA, EFRAIN & GLORIA", "Address": "BOX 4652", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29200, "Improved_V": 92100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.684147405, "SHAPE_Area": 1107.96733032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349696.038699999451637, 257937.851300001144409 ], [ 349689.251999996602535, 257977.270300000905991 ], [ 349693.276299998164177, 257978.147599998861551 ], [ 349714.22070000320673, 257980.641100000590086 ], [ 349719.053199999034405, 257981.313900001347065 ], [ 349722.594899997115135, 257944.190400000661612 ], [ 349712.132600001990795, 257941.782699998468161 ], [ 349696.038699999451637, 257937.851300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01138939000001, "LATITUDE": 18.35175476, "OBJECTID_1": 1649, "PARCEL_NO_": "102403021300", "Tax_Legal_": "FORTUNA 3C-71 WEST END QRT", "Name": "DUPONT, ROYSTON", "Address": "PO Box 306716", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.365694523, "SHAPE_Area": 950.69242657799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350303.687200002372265, 257979.343800000846386 ], [ 350296.728900000452995, 257944.245400000363588 ], [ 350270.917900003492832, 257945.089600000530481 ], [ 350279.454700000584126, 257984.211800001561642 ], [ 350303.687200002372265, 257979.343800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.015773, "LATITUDE": 18.3517334, "OBJECTID_1": 1557, "PARCEL_NO_": "102403011300", "Tax_Legal_": "BORDEAUX 42 WEST END QTR", "Name": "DELIA BERECIA TODMAN and COLETTE HACKETT", "Address": "PO BOX 2777", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 108900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.66697383, "SHAPE_Area": 1365.2309276799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349823.50620000064373, 257930.662000000476837 ], [ 349798.179700002074242, 257969.295899998396635 ], [ 349804.578000001609325, 257975.469999998807907 ], [ 349806.179899998009205, 257976.749600000679493 ], [ 349808.587999999523163, 257978.035900000482798 ], [ 349811.800700001418591, 257979.539900001138449 ], [ 349816.643899999558926, 257978.946199998259544 ], [ 349819.070100001990795, 257978.121700000017881 ], [ 349821.499799996614456, 257976.875 ], [ 349826.362800002098083, 257973.959499999880791 ], [ 349853.953699998557568, 257953.498199999332428 ], [ 349823.50620000064373, 257930.662000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01806696, "LATITUDE": 18.35169338, "OBJECTID_1": 1310, "PARCEL_NO_": "102304032500", "Tax_Legal_": "BORDEAUX 52 WEST END QTR", "Name": "TOUSSAINT, MICHAEL & JENNIFER", "Address": "PO Box 304822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 184100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.76855551899999, "SHAPE_Area": 1464.8894448799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349604.074199996888638, 257942.375999998301268 ], [ 349584.067400000989437, 257924.480399999767542 ], [ 349577.582699999213219, 257928.438099998980761 ], [ 349574.335900001227856, 257930.944600000977516 ], [ 349571.085500001907349, 257933.8733000010252 ], [ 349567.014300003647804, 257938.484099999070168 ], [ 349563.751299999654293, 257942.890299998223782 ], [ 349561.267700001597404, 257950.469399999827147 ], [ 349562.007399998605251, 257958.285900000482798 ], [ 349562.784999996423721, 257961.669799998402596 ], [ 349563.57150000333786, 257963.998199999332428 ], [ 349565.149999998509884, 257968.021899998188019 ], [ 349571.523199997842312, 257977.151099998503923 ], [ 349607.981600001454353, 257956.973400000482798 ], [ 349599.169699996709824, 257950.146299999207258 ], [ 349604.074199996888638, 257942.375999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01712506, "LATITUDE": 18.35172509, "OBJECTID_1": 1302, "PARCEL_NO_": "102304031700", "Tax_Legal_": "BORDEAUX 48 WEST END QTR", "Name": "LEWIS, WINIFRED A. & ARNOLD J", "Address": "PO Box 306964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25700, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.053603869, "SHAPE_Area": 964.73569286999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349678.369999997317791, 257929.47410000115633 ], [ 349663.491300001740456, 257972.204300001263618 ], [ 349689.251999996602535, 257977.270300000905991 ], [ 349696.038699999451637, 257937.851300001144409 ], [ 349678.369999997317791, 257929.47410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": "D9-5695-T94", "PARCEL_NAM": "3C-E GREENBELT", "ACRE": "0.16", "LONGITUDE": -65.0131433, "LATITUDE": 18.35148844, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.538482958, "SHAPE_Area": 607.80907339199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350095.82769999653101, 257957.799800001084805 ], [ 350118.773000001907349, 257914.71339999884367 ], [ 350113.98369999974966, 257908.974700000137091 ], [ 350112.398100003600121, 257905.795299999415874 ], [ 350109.995300002396107, 257903.875799998641014 ], [ 350102.754699997603893, 257901.916700001806021 ], [ 350099.51860000193119, 257903.156800001859665 ], [ 350097.900600001215935, 257903.776799999177456 ], [ 350105.742600001394749, 257929.805500000715256 ], [ 350085.264700002968311, 257967.212600000202656 ], [ 350079.527000002563, 257978.142499998211861 ], [ 350084.352300003170967, 257979.659600000828505 ], [ 350095.82769999653101, 257957.799800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00641641, "LATITUDE": 18.35160614, "OBJECTID_1": 1868, "PARCEL_NO_": "102404030100", "Tax_Legal_": "FORTUNA 33 WEST END QTR", "Name": "O SULLIVAN, RENEE B", "Address": "14 Denton Rd", "City": "Wellesley", "State": "Massachusetts", "Zip": 2482, "Country": "United States", "Land_Value": 104300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.73302893900001, "SHAPE_Area": 3851.2789117699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350861.162000000476837, 257947.176199998706579 ], [ 350763.907499998807907, 257910.072200000286102 ], [ 350763.866200000047684, 257914.927000001072884 ], [ 350768.642899997532368, 257922.143199998885393 ], [ 350773.396300002932549, 257932.103500001132488 ], [ 350779.675899997353554, 257952.208799999207258 ], [ 350779.657999999821186, 257954.319600000977516 ], [ 350797.139700002968311, 257984.649099998176098 ], [ 350869.88400000333786, 257964.557300001382828 ], [ 350861.162000000476837, 257947.176199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303013100", "MAP": "A9-512-T98", "PARCEL_NAM": "5-51", "ACRE": "0.36", "LONGITUDE": -65.02668295, "LATITUDE": 18.35138329, "OBJECTID_1": 1209, "PARCEL_NO_": "102303013100", "Tax_Legal_": "5-51 FORTUNA No.8 WEST END QUARTER", "Name": "WILLIAMS, JOSETTE & SHATANYA T. DELSOL", "Address": "7000 Bovoni Community", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.31812977499999, "SHAPE_Area": 1890.4954019899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348670.933300003409386, 257962.603000000119209 ], [ 348690.975299999117851, 257881.707100000232458 ], [ 348691.03999999910593, 257874.108300000429153 ], [ 348653.893899999558926, 257880.348200000822544 ], [ 348666.059399999678135, 257966.785000000149012 ], [ 348670.933300003409386, 257962.603000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01354036, "LATITUDE": 18.35170431, "OBJECTID_1": 1656, "PARCEL_NO_": "102403022100", "Tax_Legal_": "3C-90 FORTUNA NO.8 WEST END QTR.", "Name": "DOWLING II (LIFE ESTATE), GUSTAVE", "Address": "PO Box 301804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 454100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.99630037200001, "SHAPE_Area": 1405.99703972 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350085.264700002968311, 257967.212600000202656 ], [ 350058.180900000035763, 257928.149700000882149 ], [ 350034.668399997055531, 257943.155999999493361 ], [ 350054.540299996733665, 257976.882500000298023 ], [ 350065.02589999884367, 257976.546100001782179 ], [ 350079.527000002563, 257978.142499998211861 ], [ 350085.264700002968311, 257967.212600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00284133, "LATITUDE": 18.35157, "OBJECTID_1": 1932, "PARCEL_NO_": "102404044000", "Tax_Legal_": "FORTUNA 77-17 WEST END QTR", "Name": "PAUL, IAN MARVIN and MOLLY CLARE BRINE", "Address": "405 A2 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77400, "Improved_V": 113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.80250604299999, "SHAPE_Area": 1846.6638674200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351155.4949000030756, 257946.207699999213219 ], [ 351199.509400002658367, 257985.620299998670816 ], [ 351202.912699997425079, 257964.749800000339746 ], [ 351203.744099996984005, 257961.801300000399351 ], [ 351205.38910000026226, 257958.015099998563528 ], [ 351207.034100003540516, 257954.228900000452995 ], [ 351208.668300002813339, 257951.709199998527765 ], [ 351209.487199999392033, 257950.238200001418591 ], [ 351220.931999996304512, 257931.966699998825788 ], [ 351220.973399996757507, 257927.111900001764297 ], [ 351217.766099996864796, 257924.974700000137091 ], [ 351200.000299997627735, 257927.995700001716614 ], [ 351175.744400002062321, 257935.607700001448393 ], [ 351155.4949000030756, 257946.207699999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97545282, "LATITUDE": 18.35134784, "OBJECTID_1": 2599, "PARCEL_NO_": "102603022600", "Tax_Legal_": "CROWN & HAWK 15-1 S S QTR.", "Name": "MILLIN, A", "Address": "725 Riverside Dr", "City": "New York", "State": "New York", "Zip": 10031, "Country": "United States", "Land_Value": 43200, "Improved_V": 2000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.918344236, "SHAPE_Area": 2857.5679465799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354117.214699998497963, 257975.227699998766184 ], [ 354115.614600002765656, 257973.736999999731779 ], [ 354111.642399996519089, 257966.738400001078844 ], [ 354109.241499997675419, 257964.607799999415874 ], [ 354106.871100001037121, 257958.888900000602007 ], [ 354105.270999997854233, 257957.39809999987483 ], [ 354099.756300002336502, 257942.154199998825788 ], [ 354095.073100000619888, 257923.961899999529123 ], [ 354092.679300002753735, 257920.986999999731779 ], [ 354074.27080000191927, 257904.793200001120567 ], [ 354072.719300001859665, 257897.603300001472235 ], [ 354073.552599996328354, 257894.44370000064373 ], [ 354059.836300000548363, 257895.386900000274181 ], [ 354067.922499999403954, 257966.878100000321865 ], [ 354078.377599999308586, 257970.130100000649691 ], [ 354083.989399999380112, 257973.975699998438358 ], [ 354087.194899998605251, 257976.324000000953674 ], [ 354091.190499998629093, 257980.578600000590086 ], [ 354099.939400002360344, 257994.793400000780821 ], [ 354107.935999996960163, 258002.669300001114607 ], [ 354117.214699998497963, 257975.227699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01856219, "LATITUDE": 18.35173027, "OBJECTID_1": 1275, "PARCEL_NO_": "102304022400", "Tax_Legal_": "BORDEAUX 62 WEST END QTR", "Name": "BRATHWAITE, EDRIC & LORETTA", "Address": "PO Box 306452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24600, "Improved_V": 100300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.827942, "SHAPE_Area": 920.90622418800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349553.253100000321865, 257944.704300001263618 ], [ 349513.77080000191927, 257941.214699998497963 ], [ 349512.923100002110004, 257946.062899999320507 ], [ 349508.700900003314018, 257968.40430000051856 ], [ 349510.290200002491474, 257971.161499999463558 ], [ 349552.322700001299381, 257959.262099999934435 ], [ 349552.419799998402596, 257947.863800000399351 ], [ 349553.253100000321865, 257944.704300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403045400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00944582, "LATITUDE": 18.35170689, "OBJECTID_1": 1814, "PARCEL_NO_": "102403045400", "Tax_Legal_": "FORTUNA 3C-20 WESTEND QTR", "Name": "JAMES, MYRON & JUDITH", "Address": "PO Box 307932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.88271015, "SHAPE_Area": 987.45939794900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350494.331200003623962, 257939.31870000064373 ], [ 350471.603399999439716, 257956.864599999040365 ], [ 350477.163099996745586, 257966.831500001251698 ], [ 350478.747000001370907, 257970.221900001168251 ], [ 350481.103000000119209, 257977.62950000166893 ], [ 350482.690399996936321, 257980.597800001502037 ], [ 350517.530900001525879, 257961.040199998766184 ], [ 350507.147699996829033, 257949.344999998807907 ], [ 350499.140299998223782, 257942.735599998384714 ], [ 350494.331200003623962, 257939.31870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01732811, "LATITUDE": 18.35164194, "OBJECTID_1": 1303, "PARCEL_NO_": "102304031800", "Tax_Legal_": "BORDEAUX 49 WEST END QTR", "Name": "REESE, BENSON & ELAINE", "Address": "79195 Nuevo Dr", "City": "La Quinta", "State": "California", "Zip": 92253, "Country": "United States", "Land_Value": 31300, "Improved_V": 100100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.130545138, "SHAPE_Area": 1164.47372531 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349655.089400000870228, 257917.251200001686811 ], [ 349642.552400000393391, 257969.077599998563528 ], [ 349663.491300001740456, 257972.204300001263618 ], [ 349678.369999997317791, 257929.47410000115633 ], [ 349663.127400003373623, 257920.272300001233816 ], [ 349655.089400000870228, 257917.251200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00779157, "LATITUDE": 18.35153537, "OBJECTID_1": 1858, "PARCEL_NO_": "102404021200", "Tax_Legal_": "FORTUNA 61 WEST END QTR", "Name": "MOHAMED, DERYK I.", "Address": "4109 Estate Fortuna Mi", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.05581942100002, "SHAPE_Area": 4255.8610894200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350668.017499998211861, 257902.110199999064207 ], [ 350608.768299996852875, 257947.221400000154972 ], [ 350692.349600002169609, 257980.202799998223782 ], [ 350710.413999997079372, 257942.142700001597404 ], [ 350711.288599997758865, 257934.128299999982119 ], [ 350709.704800002276897, 257930.737900000065565 ], [ 350706.508299998939037, 257927.334199998527765 ], [ 350680.83219999819994, 257912.347500000149012 ], [ 350668.017499998211861, 257902.110199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404043900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00351453, "LATITUDE": 18.35167121, "OBJECTID_1": 1931, "PARCEL_NO_": "102404043900", "Tax_Legal_": "FORTUNA 77-12 WEST END QTR.", "Name": "LA CANDELARIA GROUPA LTD", "Address": "461 Malcom X Blvd", "City": "New York", "State": "New York", "Zip": 10037, "Country": "United States", "Land_Value": 71100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.31731453, "SHAPE_Area": 1638.8375781899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351120.500299997627735, 257932.867400001734495 ], [ 351104.407999999821186, 257942.460400000214577 ], [ 351097.935599997639656, 257982.255800001323223 ], [ 351135.02419999986887, 257982.770399998873472 ], [ 351140.122800000011921, 257952.203600000590086 ], [ 351140.950699999928474, 257949.677299998700619 ], [ 351142.590300001204014, 257946.524300001561642 ], [ 351120.500299997627735, 257932.867400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97492278, "LATITUDE": 18.3517462, "OBJECTID_1": 2598, "PARCEL_NO_": "102603022500", "Tax_Legal_": "CROWN & HAWK 15-2 S S QTR", "Name": "SWIFT, AILEEN", "Address": "PO Box 301734", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56700, "Improved_V": 219000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.045176642, "SHAPE_Area": 1349.4742579700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354107.935999996960163, 258002.669300001114607 ], [ 354115.151500001549721, 258007.583599999547005 ], [ 354119.974899999797344, 258009.311799999326468 ], [ 354125.622699998319149, 258008.9358000010252 ], [ 354131.28490000218153, 258006.871199999004602 ], [ 354166.071400001645088, 257993.646000001579523 ], [ 354183.842699997127056, 257989.991700001060963 ], [ 354199.178800001740456, 257988.217399999499321 ], [ 354203.208499997854233, 257988.461500000208616 ], [ 354188.533500000834465, 257983.203999999910593 ], [ 354172.783699996769428, 257983.493000000715256 ], [ 354159.081799998879433, 257982.747600000351667 ], [ 354142.937600001692772, 257984.726399999111891 ], [ 354136.487099997699261, 257984.673599999397993 ], [ 354134.877999998629093, 257984.238200001418591 ], [ 354129.242799997329712, 257983.136599998921156 ], [ 354122.016599997878075, 257979.488899998366833 ], [ 354117.214699998497963, 257975.227699998766184 ], [ 354107.935999996960163, 258002.669300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01892888, "LATITUDE": 18.35173137, "OBJECTID_1": 1274, "PARCEL_NO_": "102304022300", "Tax_Legal_": "BORDEAUX 86 WEST END QTR", "Name": "GEORGE, KIMBERLY H", "Address": "2977 S Delware St", "City": "Englewood", "State": "Colorado", "Zip": 80110, "Country": "United States", "Land_Value": 24600, "Improved_V": 98600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.16519797700001, "SHAPE_Area": 931.20484147800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349506.479800000786781, 257945.165800001472235 ], [ 349471.847900003194809, 257940.238299999386072 ], [ 349469.233000002801418, 257963.226100001484156 ], [ 349508.700900003314018, 257968.40430000051856 ], [ 349512.923100002110004, 257946.062899999320507 ], [ 349506.479800000786781, 257945.165800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01753542, "LATITUDE": 18.35157853, "OBJECTID_1": 1304, "PARCEL_NO_": "102304031900", "Tax_Legal_": "BORDEAUX 50 WEST END QTR", "Name": "FLEMING, CHARLENE, LOIS, TRISHA & TAKERA J. RIEARA", "Address": "PO BOX 303284", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36700, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.246511451, "SHAPE_Area": 1205.4098315900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349626.085500001907349, 257914.269600000232458 ], [ 349626.4746999964118, 257963.246500000357628 ], [ 349632.88740000128746, 257967.73200000077486 ], [ 349642.552400000393391, 257969.077599998563528 ], [ 349655.089400000870228, 257917.251200001686811 ], [ 349642.213600002229214, 257914.190499998629093 ], [ 349626.085500001907349, 257914.269600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01091862, "LATITUDE": 18.35168427, "OBJECTID_1": 1650, "PARCEL_NO_": "102403021500", "Tax_Legal_": "FORTUNA 3C-69 WESTEND QTR.", "Name": "FRETT, CAROL E", "Address": "173-301 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19600, "Improved_V": 196300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.90596946399999, "SHAPE_Area": 839.97149594699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350352.960400000214577, 257969.403499998152256 ], [ 350346.779600001871586, 257937.688900001347065 ], [ 350333.862499997019768, 257939.482999999076128 ], [ 350321.751599997282028, 257941.2837999984622 ], [ 350327.919799998402596, 257974.475900001823902 ], [ 350352.960400000214577, 257969.403499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01599506, "LATITUDE": 18.35159824, "OBJECTID_1": 1558, "PARCEL_NO_": "102403011400", "Tax_Legal_": "BORDEAUX 43 WEST END QTR", "Name": "MARILYN M. BRISSETT FAMILY TRUST", "Address": "PO Box 306645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28700, "Improved_V": 115000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.14180349, "SHAPE_Area": 1162.4314541900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349823.50620000064373, 257930.662000000476837 ], [ 349802.671599999070168, 257915.292700000107288 ], [ 349778.151299998164177, 257953.933200001716614 ], [ 349786.972199998795986, 257959.704900000244379 ], [ 349798.179700002074242, 257969.295899998396635 ], [ 349823.50620000064373, 257930.662000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01269207, "LATITUDE": 18.35162594, "OBJECTID_1": 1662, "PARCEL_NO_": "102403022700", "Tax_Legal_": "FORTUNA PLOT #93 PARCEL 3C WESTEND QTR", "Name": "PETTY, MERLYN", "Address": "PO Box 6521", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.159883729, "SHAPE_Area": 1100.2197102600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350161.973999999463558, 257954.963700000196695 ], [ 350166.250200003385544, 257926.28999999910593 ], [ 350153.336599998176098, 257927.661899998784065 ], [ 350139.629299998283386, 257927.549699999392033 ], [ 350132.856899999082088, 257965.280099999159575 ], [ 350159.420199997723103, 257970.77479999884963 ], [ 350161.973999999463558, 257954.963700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01778484, "LATITUDE": 18.35152939, "OBJECTID_1": 1305, "PARCEL_NO_": "102304032000", "Tax_Legal_": "BORDEAUX 51 WEST END QTR", "Name": "BAILEY, LISTON W.", "Address": "PO Box 304184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30300, "Improved_V": 141400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.046909414, "SHAPE_Area": 1056.90275232 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349626.085500001907349, 257914.269600000232458 ], [ 349598.629600003361702, 257918.899999998509884 ], [ 349589.738499999046326, 257921.360399998724461 ], [ 349584.067400000989437, 257924.480399999767542 ], [ 349604.074199996888638, 257942.375999998301268 ], [ 349614.486100003123283, 257950.693900000303984 ], [ 349626.4746999964118, 257963.246500000357628 ], [ 349626.085500001907349, 257914.269600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0133097, "LATITUDE": 18.35149675, "OBJECTID_1": 1657, "PARCEL_NO_": "102403022200", "Tax_Legal_": "FORTUNA PLOT #91 PARCEL 3C WESTEND QTR", "Name": "BLYDEN, ROY & GWENDOLYN", "Address": "PO Box 46", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.981391145, "SHAPE_Area": 1533.05868943 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350058.180900000035763, 257928.149700000882149 ], [ 350085.264700002968311, 257967.212600000202656 ], [ 350105.742600001394749, 257929.805500000715256 ], [ 350097.900600001215935, 257903.776799999177456 ], [ 350082.505199998617172, 257912.516800001263618 ], [ 350058.180900000035763, 257928.149700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01069002, "LATITUDE": 18.35164607, "OBJECTID_1": 1651, "PARCEL_NO_": "102403021600", "Tax_Legal_": "FORTUNA 3C-68 WEST END QUARTER", "Name": "JOSEPH, CAMUS S", "Address": "THOMASVILLE APT. 101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.05592710400001, "SHAPE_Area": 741.59342537400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350376.386600002646446, 257964.528999999165535 ], [ 350370.187899999320507, 257934.925200000405312 ], [ 350346.779600001871586, 257937.688900001347065 ], [ 350352.960400000214577, 257969.403499998152256 ], [ 350376.386600002646446, 257964.528999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604024200", "MAP": "D9-624-T66", "PARCEL_NAM": "7AF & 8H", "ACRE": ".80", "LONGITUDE": -64.97147393, "LATITUDE": 18.35160106, "OBJECTID_1": 2728, "PARCEL_NO_": "102604024200", "Tax_Legal_": "CROWN & HAWK 7AF&8H S S QTR", "Name": "MELCHIOR, G & PETERSON, M", "Address": "PO Box 10841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 91900, "Improved_V": 237000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.22073813100002, "SHAPE_Area": 3992.3182725299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354540.95099999755621, 258003.258099999278784 ], [ 354541.377099998295307, 257953.232400000095367 ], [ 354464.833599999547005, 257953.79619999974966 ], [ 354459.928800001740456, 257953.832299999892712 ], [ 354459.036200001835823, 257963.957499999552965 ], [ 354454.914700001478195, 257974.478500001132488 ], [ 354453.313100002706051, 257975.921599999070168 ], [ 354471.881899997591972, 257986.159200001507998 ], [ 354541.575699999928474, 258024.583599999547005 ], [ 354540.95099999755621, 258003.258099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01297124, "LATITUDE": 18.35158652, "OBJECTID_1": 1661, "PARCEL_NO_": "102403022600", "Tax_Legal_": "FORTUNA 3C-92 WESTEND QTR.", "Name": "VANTERPOOL, ALVIS", "Address": "PO Box 301824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.14136915899999, "SHAPE_Area": 1280.55700166 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350118.773000001907349, 257914.71339999884367 ], [ 350095.82769999653101, 257957.799800001084805 ], [ 350132.856899999082088, 257965.280099999159575 ], [ 350139.629299998283386, 257927.549699999392033 ], [ 350129.976899996399879, 257924.726500000804663 ], [ 350122.763199999928474, 257919.601199999451637 ], [ 350118.773000001907349, 257914.71339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303010300", "MAP": "A9-512-T98", "PARCEL_NAM": "5-52", "ACRE": null, "LONGITUDE": -65.02640616, "LATITUDE": 18.35148036, "OBJECTID_1": 1187, "PARCEL_NO_": "102303010300", "Tax_Legal_": "5 FORTUNA No.8 WEST END QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1692200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.682246061, "SHAPE_Area": 956.39458843900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348686.346699997782707, 257951.752300001680851 ], [ 348688.781800001859665, 257949.872400000691414 ], [ 348690.406999997794628, 257948.408100001513958 ], [ 348700.980800002813339, 257937.728799998760223 ], [ 348702.609600000083447, 257935.842300001531839 ], [ 348706.689699999988079, 257930.176199998706579 ], [ 348711.592299997806549, 257922.616900000721216 ], [ 348713.230099998414516, 257919.675000000745058 ], [ 348715.697599999606609, 257913.995700001716614 ], [ 348717.324600003659725, 257912.320300001651049 ], [ 348720.623599998652935, 257903.692400000989437 ], [ 348696.49719999730587, 257896.106699999421835 ], [ 348683.961900003254414, 257947.721999999135733 ], [ 348683.940399996936321, 257950.254999998956919 ], [ 348686.346699997782707, 257951.752300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01943371, "LATITUDE": 18.35163854, "OBJECTID_1": 1247, "PARCEL_NO_": "102304011700", "Tax_Legal_": "98 BORDEAUX WEST END QUARTER", "Name": "RICHARDSON, DARIN M. & VERONICA A.", "Address": "PO Box 303895", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26500, "Improved_V": 45000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.031115126, "SHAPE_Area": 1086.77378591 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349463.005400002002716, 257936.999499998986721 ], [ 349417.114000000059605, 257928.602400001138449 ], [ 349416.284299999475479, 257931.339800000190735 ], [ 349414.657300002872944, 257933.0152000002563 ], [ 349412.157399997115135, 257942.493999999016523 ], [ 349412.888199999928474, 257951.365899998694658 ], [ 349460.404899999499321, 257958.298700001090765 ], [ 349463.005400002002716, 257936.999499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01045952, "LATITUDE": 18.35160214, "OBJECTID_1": 1652, "PARCEL_NO_": "102403021700", "Tax_Legal_": "FORTUNA 3C-67 WEST END QUARTER", "Name": "GRANT, JR , MALCOLM & BERNADETTE", "Address": "PO Box 303495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 120500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.348456407, "SHAPE_Area": 781.59147512100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350370.187899999320507, 257934.925200000405312 ], [ 350376.386600002646446, 257964.528999999165535 ], [ 350401.427299998700619, 257959.456599999219179 ], [ 350395.233900003135204, 257929.2195999994874 ], [ 350375.034699998795986, 257933.909400001168251 ], [ 350370.187899999320507, 257934.925200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97408803, "LATITUDE": 18.35162634, "OBJECTID_1": 2581, "PARCEL_NO_": "102603020900", "Tax_Legal_": "14 CROWN & HAWK SOUTHSIDE QUARTER", "Name": "DELAGARDE, AIMEE & OTHERS", "Address": "PO Box 11544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 668600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.406078625099994, "SHAPE_Area": 158.018640836 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354227.649400003254414, 257969.655299998819828 ], [ 354218.622000001370907, 257977.610800001770258 ], [ 354233.069099999964237, 257985.539500001817942 ], [ 354242.671099998056889, 257994.272900000214577 ], [ 354240.298900000751019, 257988.765000000596046 ], [ 354227.649400003254414, 257969.655299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0022325, "LATITUDE": 18.35150295, "OBJECTID_1": 1933, "PARCEL_NO_": "102404044100", "Tax_Legal_": "77-33 FORTUNA WEST END QUARTER", "Name": "POWELL, DAVID & IRMA", "Address": "PO Box 302061", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66500, "Improved_V": 94000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.656351761, "SHAPE_Area": 2774.2093974600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351274.346500001847744, 257909.183600001037121 ], [ 351239.552799999713898, 257923.253199998289347 ], [ 351238.724899999797344, 257925.779500000178814 ], [ 351233.852799996733665, 257929.750500001013279 ], [ 351228.9628000035882, 257935.832100000232458 ], [ 351226.513300001621246, 257939.400699999183416 ], [ 351224.870099999010563, 257942.97580000013113 ], [ 351219.976499997079372, 257949.479699999094009 ], [ 351216.68469999730587, 257957.263199999928474 ], [ 351214.238799996674061, 257960.409600000828505 ], [ 351215.007299996912479, 257964.848799999803305 ], [ 351218.221799999475479, 257966.141699999570847 ], [ 351229.528200000524521, 257964.1233000010252 ], [ 351231.948899999260902, 257963.932000000029802 ], [ 351239.209299996495247, 257963.569299999624491 ], [ 351258.54280000180006, 257965.83839999884367 ], [ 351270.651900000870228, 257964.248799998313189 ], [ 351279.548299998044968, 257961.155200000852346 ], [ 351291.702299997210503, 257954.288600001484156 ], [ 351274.346500001847744, 257909.183600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00121643, "LATITUDE": 18.35144531, "OBJECTID_1": 1935, "PARCEL_NO_": "102404044300", "Tax_Legal_": "FORTUNA 77-35 WEST END QTR", "Name": "DEL DOTTO, DAVE P", "Address": "6155 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.73279871599999, "SHAPE_Area": 2776.3397843299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351400.759499996900558, 257931.116500001400709 ], [ 351336.473899997770786, 257904.836899999529123 ], [ 351323.245600000023842, 257943.147700000554323 ], [ 351342.595299996435642, 257943.517200000584126 ], [ 351347.404399998486042, 257946.934000000357628 ], [ 351348.993699997663498, 257949.691199999302626 ], [ 351348.109999999403954, 257958.760999999940395 ], [ 351389.159999996423721, 257967.540800001472235 ], [ 351400.759499996900558, 257931.116500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304040100", "MAP": "G9-2213-T73", "PARCEL_NAM": "44", "ACRE": ".27", "LONGITUDE": -65.01619692, "LATITUDE": 18.351478, "OBJECTID_1": 1315, "PARCEL_NO_": "102304040100", "Tax_Legal_": "BORDEAUX 44 WEST END QTR", "Name": "VAN, HEYNINGEN ZULEMA", "Address": "PO Box 9314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27700, "Improved_V": 183600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.547056938, "SHAPE_Area": 1162.17537225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349798.665200002491474, 257912.30460000038147 ], [ 349784.239699997007847, 257901.8429000005126 ], [ 349754.867200002074242, 257942.132500000298023 ], [ 349772.532300002872944, 257950.93189999833703 ], [ 349778.151299998164177, 257953.933200001716614 ], [ 349802.671599999070168, 257915.292700000107288 ], [ 349798.665200002491474, 257912.30460000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403012400", "MAP": "D9-6992-T001", "PARCEL_NAM": "3A-1-A", "ACRE": ".31", "LONGITUDE": -65.01573835000001, "LATITUDE": 18.35128349, "OBJECTID_1": 1568, "PARCEL_NO_": "102403012400", "Tax_Legal_": "3A-1-A ESTATE FORTUNA NO.8 WEST END QTR", "Name": "EDMUNDO & MILAGROS ZAYAS REVOCABLE LIVING TRUST", "Address": "PO Box 302824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.312898217, "SHAPE_Area": 1383.4456416800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349853.282399997115135, 257911.845100000500679 ], [ 349848.732100002467632, 257903.848400000482798 ], [ 349847.148199997842312, 257900.458000000566244 ], [ 349839.266699999570847, 257879.072999998927116 ], [ 349798.665200002491474, 257912.30460000038147 ], [ 349802.671599999070168, 257915.292700000107288 ], [ 349823.50620000064373, 257930.662000000476837 ], [ 349853.282399997115135, 257911.845100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604024700", "MAP": "D9-624-T66", "PARCEL_NAM": "8E", "ACRE": null, "LONGITUDE": -64.97217699, "LATITUDE": 18.35142879, "OBJECTID_1": 2732, "PARCEL_NO_": "102604024700", "Tax_Legal_": "CROWN & HAWK 8E S S QTR", "Name": "HORSFORD, CLARICE & HAROLD", "Address": "PO Box 11682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67600, "Improved_V": 205300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.82742691000001, "SHAPE_Area": 1428.4738979000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354451.91780000180006, 257943.162599999457598 ], [ 354447.483999997377396, 257930.478999998420477 ], [ 354439.925599999725819, 257935.514600001275539 ], [ 354408.295999996364117, 257956.787200000137091 ], [ 354421.713799998164177, 257990.883099999278784 ], [ 354429.854299999773502, 257981.872699998319149 ], [ 354446.077600002288818, 257970.6064000017941 ], [ 354449.342399999499321, 257965.989100001752377 ], [ 354451.039599999785423, 257956.081599999219179 ], [ 354451.91780000180006, 257943.162599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403022800", "MAP": null, "PARCEL_NAM": "3C-94", "ACRE": null, "LONGITUDE": -65.0123747, "LATITUDE": 18.35153466, "OBJECTID_1": 1663, "PARCEL_NO_": "102403022800", "Tax_Legal_": "3C-94 FORTUNA WESTEND QTR", "Name": "DUPORTE, SYLVIA", "Address": "P.O. BOX 4432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37900, "Improved_V": 146000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.07919408800001, "SHAPE_Area": 1115.37046885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350204.760799996554852, 257949.192200001329184 ], [ 350199.375500001013279, 257918.750599998980761 ], [ 350175.132200002670288, 257924.885000001639128 ], [ 350166.250200003385544, 257926.28999999910593 ], [ 350161.973999999463558, 257954.963700000196695 ], [ 350204.760799996554852, 257949.192200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403045300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00964766, "LATITUDE": 18.35151653, "OBJECTID_1": 1813, "PARCEL_NO_": "102403045300", "Tax_Legal_": "FORTUNA 3C-19 WESTEND QTR", "Name": "MEYERS SR , WAYNE & KATHRYN", "Address": "PO Box 11714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.61473246600001, "SHAPE_Area": 739.46666320999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350461.421700000762939, 257921.528599999845028 ], [ 350451.636200003325939, 257934.325199998915195 ], [ 350458.840899996459484, 257940.505899999290705 ], [ 350471.603399999439716, 257956.864599999040365 ], [ 350494.331200003623962, 257939.31870000064373 ], [ 350481.504000000655651, 257930.558899998664856 ], [ 350461.421700000762939, 257921.528599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01892107, "LATITUDE": 18.35150525, "OBJECTID_1": 1276, "PARCEL_NO_": "102304022500", "Tax_Legal_": "BORDEAUX 85 WEST END QTR", "Name": "LEONARD, CHARLES", "Address": "PO BOX 9439", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23600, "Improved_V": 99900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.62759323500001, "SHAPE_Area": 977.07604839500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349513.950599998235703, 257920.106800001114607 ], [ 349475.303300000727177, 257913.246599998325109 ], [ 349471.847900003194809, 257940.238299999386072 ], [ 349506.479800000786781, 257945.165800001472235 ], [ 349508.99040000140667, 257934.4206000007689 ], [ 349513.950599998235703, 257920.106800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01850756, "LATITUDE": 18.35149591, "OBJECTID_1": 1277, "PARCEL_NO_": "102304022600", "Tax_Legal_": "BORDEAUX 63 WEST END QTR", "Name": "DE GOUT, STUART", "Address": "PO Box 355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29200, "Improved_V": 127300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.61070103200001, "SHAPE_Area": 1070.0971211200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349559.804300002753735, 257932.936599999666214 ], [ 349526.198100000619888, 257902.26410000026226 ], [ 349524.527900002896786, 257909.005399998277426 ], [ 349515.419299997389317, 257937.006299998611212 ], [ 349513.77080000191927, 257941.214699998497963 ], [ 349553.253100000321865, 257944.704300001263618 ], [ 349555.724200002849102, 257938.602800000458956 ], [ 349559.804300002753735, 257932.936599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403022900", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-95", "ACRE": ".26", "LONGITUDE": -65.01206281, "LATITUDE": 18.35147545, "OBJECTID_1": 1664, "PARCEL_NO_": "102403022900", "Tax_Legal_": "FORTUNA 3C-95 WESTEND QRT", "Name": "DAVIS, JACQUELINE", "Address": "PO BOX 303903", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33300, "Improved_V": 258500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.31302802099999, "SHAPE_Area": 917.59002668100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350233.824000000953674, 257945.208200000226498 ], [ 350227.643200002610683, 257913.493500001728535 ], [ 350199.375500001013279, 257918.750599998980761 ], [ 350204.760799996554852, 257949.192200001329184 ], [ 350233.824000000953674, 257945.208200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102603020200", "MAP": "D9-8553-T010", "PARCEL_NAM": null, "ACRE": "4.4", "LONGITUDE": -64.97679094, "LATITUDE": 18.35119215, "OBJECTID_1": 2574, "PARCEL_NO_": "102603020200", "Tax_Legal_": "12 CROWN & HAWK NO.3L SOUTHSIDE QTR", "Name": "MORON-MOOLENAAR, AIMEE LINDA, C & A DELAGARDE,C PETERSEN,C KUIPERS", "Address": "PO Box 11544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 214200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.27743149600002, "SHAPE_Area": 739.12721405000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353999.281599998474121, 257978.559799998998642 ], [ 353992.075199998915195, 257972.590199999511242 ], [ 353969.715999998152256, 257946.864900000393391 ], [ 353948.112800002098083, 257927.05629999935627 ], [ 353933.705300003290176, 257914.483899999409914 ], [ 353917.690499998629093, 257901.265000000596046 ], [ 353910.47860000282526, 257895.928700000047684 ], [ 353887.235799998044968, 257879.27309999987483 ], [ 353887.982799999415874, 257886.245299998670816 ], [ 353903.214599996805191, 257896.713599998503923 ], [ 353907.221000000834465, 257899.701699998229742 ], [ 353925.643899999558926, 257914.206799998879433 ], [ 353932.852200001478195, 257919.965399999171495 ], [ 353954.462600000202656, 257938.929499998688698 ], [ 353958.454599998891354, 257943.606300000101328 ], [ 353960.061800003051758, 257944.252700001001358 ], [ 353984.820100001990795, 257972.319699998944998 ], [ 353988.005800001323223, 257976.989799998700619 ], [ 353988.790600001811981, 257979.529399998486042 ], [ 353999.281599998474121, 257978.559799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304040200", "MAP": "G9-1637-T70", "PARCEL_NAM": "45", "ACRE": ".3047", "LONGITUDE": -65.01640903000001, "LATITUDE": 18.35136135, "OBJECTID_1": 1316, "PARCEL_NO_": "102304040200", "Tax_Legal_": "BORDEAUX 45 WEST END QTR", "Name": "ALLEN, RANDOLPH V. (TRUSTEE)", "Address": "P.O. BOX 4313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 156600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.10914643300001, "SHAPE_Area": 1439.2753018000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349784.239699997007847, 257901.8429000005126 ], [ 349765.807800002396107, 257888.393199998885393 ], [ 349737.385399997234344, 257911.802999999374151 ], [ 349738.168399997055531, 257914.553700000047684 ], [ 349735.571400001645088, 257935.430700000375509 ], [ 349737.97240000218153, 257937.561299998313189 ], [ 349754.867200002074242, 257942.132500000298023 ], [ 349784.239699997007847, 257901.8429000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00177841, "LATITUDE": 18.35128016, "OBJECTID_1": 1934, "PARCEL_NO_": "102404044200", "Tax_Legal_": "FORTUNA 77-34 WEST END QTR", "Name": "SARAUW, SR. , LEVRON & CARLA", "Address": "BOX 4314", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.01263518499999, "SHAPE_Area": 2680.5950145500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351336.473899997770786, 257904.836899999529123 ], [ 351287.45610000193119, 257884.804099999368191 ], [ 351274.346500001847744, 257909.183600001037121 ], [ 351291.702299997210503, 257954.288600001484156 ], [ 351307.887900002300739, 257947.454999998211861 ], [ 351323.245600000023842, 257943.147700000554323 ], [ 351336.473899997770786, 257904.836899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0046267, "LATITUDE": 18.35117058, "OBJECTID_1": 1887, "PARCEL_NO_": "102404032000", "Tax_Legal_": "FORTUNA 47 WEST END QTR", "Name": "NILES, MICHAEL D", "Address": "#13 ALTONA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 137200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.50726030499999, "SHAPE_Area": 4666.5243378900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350981.17960000038147, 257861.742899999022484 ], [ 350980.398500002920628, 257864.981300000101328 ], [ 350963.680600002408028, 257934.294199999421835 ], [ 350959.5033999979496, 257951.358600001782179 ], [ 351043.656599998474121, 257917.216899998486042 ], [ 351049.381300002336502, 257915.584499999880791 ], [ 351049.638906122767366, 257909.912660925387172 ], [ 351049.204696294036694, 257904.251602612232091 ], [ 351048.085118790157139, 257898.685395140957553 ], [ 351046.296800002455711, 257893.296700000762939 ], [ 351043.751099861809053, 257888.772809200483607 ], [ 351040.761600002646446, 257884.529100000858307 ], [ 351035.777597494306974, 257880.839428714156384 ], [ 351030.523155730392318, 257877.546284782176372 ], [ 351025.029753209149931, 257874.669396889657946 ], [ 351019.330300003290176, 257872.225999999791384 ], [ 351008.864889915566891, 257868.712948661152041 ], [ 350998.276692299463321, 257865.589423528756015 ], [ 350987.580200001597404, 257862.859700001776218 ], [ 350981.17960000038147, 257861.742899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98483061, "LATITUDE": 18.35522171, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1684.35716581, "SHAPE_Area": 7692.7653406999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353157.753200002014637, 258319.554400000721216 ], [ 353149.793600000441074, 258307.457899998873472 ], [ 353141.027500003576279, 258295.141800001263618 ], [ 353129.794799998402596, 258288.506000000983477 ], [ 353122.550599999725819, 258286.969000000506639 ], [ 353108.837899997830391, 258287.490100000053644 ], [ 353078.129699997603893, 258295.260299999266863 ], [ 353072.463899999856949, 258297.747000001370907 ], [ 353070.034199997782707, 258298.993700001388788 ], [ 353063.547700002789497, 258303.162500001490116 ], [ 353057.037900000810623, 258310.075300000607967 ], [ 353052.952399998903275, 258316.374699998646975 ], [ 353051.316399998962879, 258319.105500001460314 ], [ 353048.841700002551079, 258325.629099998623133 ], [ 353048.006599999964237, 258328.999800000339746 ], [ 353045.447400003671646, 258345.444200001657009 ], [ 353043.807800002396107, 258348.597100000828505 ], [ 353021.193300001323223, 258352.844999998807907 ], [ 353007.489600002765656, 258352.310699999332428 ], [ 353003.467000000178814, 258351.222300000488758 ], [ 352999.457099996507168, 258348.656300000846386 ], [ 352993.870399996638298, 258341.855599999427795 ], [ 352992.340499997138977, 258332.132800001651049 ], [ 352992.358499996364117, 258330.021999999880791 ], [ 352993.209700003266335, 258324.751600001007318 ], [ 352994.04839999973774, 258320.958799999207258 ], [ 352996.535700000822544, 258312.957600001245737 ], [ 352998.182499997317791, 258308.960299998521805 ], [ 353003.103100001811981, 258299.290300000458956 ], [ 353006.36429999768734, 258295.095100000500679 ], [ 353009.630900003015995, 258290.266699999570847 ], [ 353016.142499998211861, 258283.142799999564886 ], [ 353071.380000002682209, 258235.676699999719858 ], [ 353081.951899997889996, 258225.208500001579523 ], [ 353090.91669999808073, 258214.093899998813868 ], [ 353097.581699997186661, 258203.703999999910593 ], [ 353092.982799999415874, 258194.849500000476837 ], [ 353087.788500003516674, 258202.669300001114607 ], [ 353080.44539999961853, 258212.741700001060963 ], [ 353064.983400002121925, 258229.291499998420477 ], [ 353063.35639999806881, 258230.966899998486042 ], [ 353028.427799999713898, 258260.867400001734495 ], [ 353008.934299997985363, 258277.384300000965595 ], [ 352999.159599997103214, 258288.91440000012517 ], [ 352990.979599997401237, 258302.568599998950958 ], [ 352985.196999996900558, 258318.775400001555681 ], [ 352983.510600000619888, 258327.416499998420477 ], [ 352984.979400001466274, 258344.315999999642372 ], [ 352987.358800001442432, 258348.979499999433756 ], [ 352992.949000000953674, 258355.3581000007689 ], [ 352998.562600001692772, 258358.992600001394749 ], [ 353004.192400000989437, 258360.727400001138449 ], [ 353017.890799999237061, 258361.894999999552965 ], [ 353030.802500002086163, 258360.734099999070168 ], [ 353042.918799996376038, 258358.300200000405312 ], [ 353050.171999998390675, 258358.781700000166893 ], [ 353054.991899996995926, 258360.932100001722574 ], [ 353058.199199996888638, 258363.069299999624491 ], [ 353077.431999996304512, 258377.158900000154972 ], [ 353083.821400001645088, 258384.388399999588728 ], [ 353086.202500000596046, 258388.840799998492002 ], [ 353088.569300003349781, 258394.981899999082088 ], [ 353089.346900001168251, 258398.365699999034405 ], [ 353092.417499996721745, 258416.544900000095367 ], [ 353093.079899996519089, 258433.437800001353025 ], [ 353091.789899997413158, 258490.211399998515844 ], [ 353095.524800002574921, 258525.072399999946356 ], [ 353100.305100001394749, 258531.866599999368191 ], [ 353105.927699998021126, 258534.445700000971556 ], [ 353112.372800000011921, 258535.131700001657009 ], [ 353117.228699997067451, 258533.060499999672174 ], [ 353119.660199999809265, 258531.602800000458956 ], [ 353122.910599999129772, 258528.674100000411272 ], [ 353124.541199997067451, 258526.576499998569489 ], [ 353136.813900001347065, 258505.7787000015378 ], [ 353139.281400002539158, 258500.099300000816584 ], [ 353140.105700001120567, 258497.995200000703335 ], [ 353142.558799996972084, 258494.00450000166893 ], [ 353145.821800000965595, 258489.598200000822544 ], [ 353146.653300002217293, 258486.649700000882149 ], [ 353148.280299998819828, 258484.974300000816584 ], [ 353150.738799996674061, 258480.350299999117851 ], [ 353156.472900003194809, 258469.842599999159575 ], [ 353158.92960000038147, 258465.429699998348951 ], [ 353163.038500003516674, 258456.386300001293421 ], [ 353167.933899998664856, 258449.671399999409914 ], [ 353175.298600003123283, 258437.066100001335144 ], [ 353181.06870000064373, 258422.33669999986887 ], [ 353181.900200001895428, 258419.388199999928474 ], [ 353183.595499999821186, 258409.691799998283386 ], [ 353184.51690000295639, 258396.189399998635054 ], [ 353181.422899998724461, 258380.754200000315905 ], [ 353174.326200000941753, 258361.9087999984622 ], [ 353171.939599998295307, 258358.089600000530481 ], [ 353169.597999997437, 258348.993400000035763 ], [ 353163.269799999892712, 258334.587200000882149 ], [ 353157.753200002014637, 258319.554400000721216 ] ], [ [ 353109.566899999976158, 258296.573100000619888 ], [ 353119.251599997282028, 258295.596900001168251 ], [ 353128.905799999833107, 258298.208999998867512 ], [ 353133.723899997770786, 258300.570500001311302 ], [ 353140.12049999833107, 258306.955600000917912 ], [ 353142.514200001955032, 258309.930500000715256 ], [ 353146.482799999415874, 258317.351300001144409 ], [ 353152.028099998831749, 258329.006799999624491 ], [ 353153.608400002121925, 258332.819400001317263 ], [ 353158.33839999884367, 258345.523699998855591 ], [ 353158.322200000286102, 258347.423500001430511 ], [ 353159.91499999910593, 258349.758499998599291 ], [ 353159.898800000548363, 258351.65819999948144 ], [ 353161.493500001728535, 258353.782200001180172 ], [ 353166.228900000452995, 258365.853300001472235 ], [ 353171.745399996638298, 258380.886100001633167 ], [ 353174.099600002169609, 258388.504700001329184 ], [ 353174.745899997651577, 258407.2972999997437 ], [ 353173.050499998033047, 258416.99379999935627 ], [ 353168.907499998807907, 258430.047699999064207 ], [ 353165.6300999969244, 258436.142599999904633 ], [ 353163.999499998986721, 258438.240100000053644 ], [ 353159.100500002503395, 258445.377199999988079 ], [ 353157.451899997889996, 258449.58559999987483 ], [ 353147.637699998915195, 258465.759500000625849 ], [ 353141.907200001180172, 258475.845100000500679 ], [ 353139.448700003325939, 258480.469000000506639 ], [ 353136.977600000798702, 258486.570500001311302 ], [ 353131.261500000953674, 258494.967500001192093 ], [ 353127.966099999845028, 258503.173099998384714 ], [ 353118.142899997532368, 258520.402399998158216 ], [ 353114.070000000298023, 258525.224199999123812 ], [ 353110.837499998509884, 258526.042100001126528 ], [ 353107.615900002419949, 258525.593600001186132 ], [ 353104.413999997079372, 258522.82319999858737 ], [ 353101.489000000059605, 258487.546599999070168 ], [ 353101.7820999994874, 258453.140799999237061 ], [ 353102.705300003290176, 258439.427200000733137 ], [ 353102.066299997270107, 258419.790300000458956 ], [ 353097.458499997854233, 258392.732599999755621 ], [ 353096.675599999725819, 258389.98200000077486 ], [ 353095.095399998128414, 258386.169399999082088 ], [ 353091.92230000346899, 258380.021699998527765 ], [ 353084.739200003445148, 258371.308100000023842 ], [ 353056.697999998927116, 258349.969200000166893 ], [ 353055.911499999463558, 258347.640700001269579 ], [ 353057.693199999630451, 258327.8125 ], [ 353059.347199998795986, 258322.970899999141693 ], [ 353063.429099999368191, 258317.093699999153614 ], [ 353067.501999996602535, 258312.271899998188019 ], [ 353069.937100000679493, 258310.392000000923872 ], [ 353077.237099997699261, 258305.385499998927116 ], [ 353109.566899999976158, 258296.573100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "A9-469-T96", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98160565000001, "LATITUDE": 18.35512227, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1653.3254030200001, "SHAPE_Area": 8137.9592016200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353355.88570000231266, 258441.710499998182058 ], [ 353375.238899998366833, 258441.657800000160933 ], [ 353392.1570999994874, 258443.484999999403954 ], [ 353413.925800003111362, 258443.874299999326468 ], [ 353440.557499997317791, 258441.348000001162291 ], [ 353460.733199998736382, 258439.402199998497963 ], [ 353471.215300001204014, 258439.488000001758337 ], [ 353480.074000000953674, 258440.827100001275539 ], [ 353493.023500002920628, 258435.233500000089407 ], [ 353489.00450000166893, 258433.723000001162291 ], [ 353480.165700003504753, 258430.061999998986721 ], [ 353477.764700002968311, 258427.931499999016523 ], [ 353468.103299997746944, 258426.163600001484156 ], [ 353465.668200001120567, 258428.043499998748302 ], [ 353448.714100003242493, 258430.437899999320507 ], [ 353424.495899997651577, 258433.617199998348951 ], [ 353406.758900001645088, 258433.260899998247623 ], [ 353376.928900003433228, 258432.5945999994874 ], [ 353375.325300000607967, 258431.526000000536442 ], [ 353375.341399997472763, 258429.626299999654293 ], [ 353381.012599997222424, 258426.506299998611212 ], [ 353384.264799997210503, 258423.366500001400709 ], [ 353387.549400001764297, 258416.427299998700619 ], [ 353387.605200000107288, 258409.883900001645088 ], [ 353386.824000000953674, 258406.922200001776218 ], [ 353383.634700000286102, 258402.674199998378754 ], [ 353382.043700002133846, 258400.128100000321865 ], [ 353377.22919999808073, 258397.344399999827147 ], [ 353366.772299997508526, 258394.30350000038743 ], [ 353339.425999999046326, 258386.058200001716614 ], [ 353336.225900001823902, 258383.076699998229742 ], [ 353336.276299998164177, 258377.166499998420477 ], [ 353345.208700001239777, 258369.851300001144409 ], [ 353357.36089999973774, 258363.195799998939037 ], [ 353359.788800001144409, 258362.160199999809265 ], [ 353367.070799998939037, 258359.264499999582767 ], [ 353384.01240000128746, 258358.347600001841784 ], [ 353408.984700001776218, 258361.29619999974966 ], [ 353438.753499999642372, 258369.139299999922514 ], [ 353470.91610000282526, 258379.95719999819994 ], [ 353491.820900000631809, 258387.094399999827147 ], [ 353499.876800000667572, 258388.004700001329184 ], [ 353499.905599996447563, 258384.627399999648333 ], [ 353499.961300000548363, 258378.083999998867512 ], [ 353494.327899999916553, 258376.771299999207258 ], [ 353491.930600002408028, 258374.218499999493361 ], [ 353493.564800001680851, 258371.698800001293421 ], [ 353484.702500000596046, 258370.781899999827147 ], [ 353483.068300001323223, 258373.301600001752377 ], [ 353480.64580000191927, 258373.703999999910593 ], [ 353462.152699999511242, 258367.430900000035763 ], [ 353440.439800001680851, 258360.498199999332428 ], [ 353433.199199996888638, 258358.539099998772144 ], [ 353408.255699999630451, 258352.213300000876188 ], [ 353403.441200003027916, 258349.42960000038147 ], [ 353401.864500001072884, 258345.194899998605251 ], [ 353401.108599998056889, 258339.278099998831749 ], [ 353401.932800002396107, 258337.173900000751019 ], [ 353405.998599998652935, 258333.196400001645088 ], [ 353414.891400001943111, 258330.524900000542402 ], [ 353428.611299999058247, 258329.159600000828505 ], [ 353443.934799998998642, 258328.862799998372793 ], [ 353456.817800000309944, 258331.079199999570847 ], [ 353467.272900000214577, 258334.3310999982059 ], [ 353476.120800003409386, 258336.936700001358986 ], [ 353506.670800000429153, 258347.741399999707937 ], [ 353533.201700001955032, 258357.035599999129772 ], [ 353538.037799999117851, 258357.286200001835823 ], [ 353530.071800000965595, 258345.822000000625849 ], [ 353523.639300003647804, 258343.658399999141693 ], [ 353523.6824000030756, 258338.592500001192093 ], [ 353515.63910000026226, 258336.204700000584126 ], [ 353513.196800000965595, 258338.928899999707937 ], [ 353511.582400001585484, 258339.126800000667572 ], [ 353498.719099998474121, 258334.588500000536442 ], [ 353470.579099997878075, 258324.859000001102686 ], [ 353441.598600000143051, 258319.133400000631809 ], [ 353441.627400003373623, 258315.756099998950958 ], [ 353452.9679000005126, 258309.727200001478195 ], [ 353461.905699998140335, 258301.778799999505281 ], [ 353474.140600003302097, 258285.413600001484156 ], [ 353483.116099998354912, 258273.032600000500679 ], [ 353491.234999999403954, 258266.555100001394749 ], [ 353496.904399998486042, 258263.646200001239777 ], [ 353501.751199997961521, 258262.630399998277426 ], [ 353515.460299998521805, 258262.531500000506639 ], [ 353527.556800000369549, 258262.419399999082088 ], [ 353542.9037000015378, 258259.378699999302626 ], [ 353545.328100003302097, 258258.7652000002563 ], [ 353588.976800002157688, 258246.456799998879433 ], [ 353593.90820000320673, 258235.520300000905991 ], [ 353588.247800000011921, 258237.3739 ], [ 353585.828900001943111, 258237.354100000113249 ], [ 353583.420800000429153, 258236.067800000309944 ], [ 353582.630599997937679, 258234.161499999463558 ], [ 353573.737800002098083, 258236.832899998873472 ], [ 353573.712600000202656, 258239.787999998778105 ], [ 353571.272100001573563, 258242.301199998706579 ], [ 353538.938699997961521, 258251.535700000822544 ], [ 353522.79450000077486, 258253.514499999582767 ], [ 353500.215899996459484, 258253.540800001472235 ], [ 353493.751000002026558, 258255.176699999719858 ], [ 353484.845600001513958, 258259.325699999928474 ], [ 353475.906099997460842, 258267.485100001096725 ], [ 353456.326200000941753, 258294.133799999952316 ], [ 353444.955099999904633, 258303.750999998301268 ], [ 353418.228100001811981, 258317.464400000870228 ], [ 353416.608300000429153, 258318.2956000007689 ], [ 353407.711900003254414, 258321.38910000026226 ], [ 353401.229000002145767, 258325.135800000280142 ], [ 353395.538099996745586, 258330.577599998563528 ], [ 353391.479599997401237, 258333.710799999535084 ], [ 353387.399400003254414, 258339.376899998635054 ], [ 353381.719300001859665, 258343.552299998700619 ], [ 353380.097699999809265, 258344.594500001519918 ], [ 353369.577899999916553, 258348.941399998962879 ], [ 353355.015699997544289, 258354.521699998527765 ], [ 353351.779600001871586, 258355.761799998581409 ], [ 353342.058899998664856, 258360.959600001573563 ], [ 353340.437299996614456, 258362.001800000667572 ], [ 353330.696800000965595, 258369.52140000090003 ], [ 353328.247299998998642, 258373.089999999850988 ], [ 353326.595100000500679, 258377.720499999821186 ], [ 353328.110699996352196, 258389.131999999284744 ], [ 353336.130599997937679, 258394.263799998909235 ], [ 353374.734700001776218, 258406.189899999648333 ], [ 353377.124899998307228, 258409.587000001221895 ], [ 353377.891699999570847, 258414.237300001084805 ], [ 353376.241300001740456, 258418.656800001859665 ], [ 353345.473700001835823, 258433.392599999904633 ], [ 353330.067500002682209, 258443.399000000208616 ], [ 353324.3800999969244, 258448.418699998408556 ], [ 353320.314400002360344, 258452.396200001239777 ], [ 353315.435199998319149, 258457.211399998515844 ], [ 353312.179300002753735, 258460.773400001227856 ], [ 353308.102799996733665, 258466.017400000244379 ], [ 353306.454199999570847, 258470.225699998438358 ], [ 353307.201200000941753, 258477.197900000959635 ], [ 353316.101199999451637, 258473.682199999690056 ], [ 353316.130000002682209, 258470.304900001734495 ], [ 353319.38400000333786, 258466.954100001603365 ], [ 353326.712700001895428, 258458.570300001651049 ], [ 353340.52080000191927, 258446.862100001424551 ], [ 353346.998199999332428, 258443.748700000345707 ], [ 353355.88570000231266, 258441.710499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-800-T69", "PARCEL_NAM": "2C", "ACRE": null, "LONGITUDE": -64.97435514, "LATITUDE": 18.35513157, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.09396075699999, "SHAPE_Area": 432.16014595000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354209.361599996685982, 258402.044100001454353 ], [ 354217.435599997639656, 258400.843600001186132 ], [ 354198.283699996769428, 258377.255499999970198 ], [ 354195.536700002849102, 258321.082100000232458 ], [ 354190.50280000269413, 258344.05009999871254 ], [ 354191.156300000846386, 258361.998399998992682 ], [ 354191.905100002884865, 258368.759500000625849 ], [ 354192.682599999010563, 258372.143399998545647 ], [ 354196.618900001049042, 258383.363600000739098 ], [ 354206.186700001358986, 258396.107500001788139 ], [ 354209.361599996685982, 258402.044100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0172287, "LATITUDE": 18.35439053, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 345.23095453899998, "SHAPE_Area": 1183.87899795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349680.850400000810623, 258206.238000001758337 ], [ 349686.442500002682209, 258212.405499998480082 ], [ 349687.1570999994874, 258223.177099999040365 ], [ 349688.731899999082088, 258227.622999999672174 ], [ 349689.464500002563, 258236.2837999984622 ], [ 349687.844700001180172, 258237.114900000393391 ], [ 349668.511200003325939, 258234.845800001174212 ], [ 349664.468800000846386, 258236.079199999570847 ], [ 349662.030100002884865, 258238.381299998611212 ], [ 349660.372500002384186, 258243.645100001245737 ], [ 349654.704999998211861, 258246.3429000005126 ], [ 349649.84910000115633, 258248.414099998772144 ], [ 349639.368900001049042, 258248.117199998348951 ], [ 349636.091499999165535, 258254.212099999189377 ], [ 349651.406000003218651, 258254.970800001174212 ], [ 349662.654799997806549, 258259.706900000572205 ], [ 349669.897200003266335, 258261.454900000244379 ], [ 349670.67119999974966, 258265.260899998247623 ], [ 349657.761200003325939, 258266.210700001567602 ], [ 349652.9070999994874, 258268.070799998939037 ], [ 349651.289099998772144, 258268.690900001674891 ], [ 349644.791900001466274, 258274.1261 ], [ 349638.242499999701977, 258285.682700000703335 ], [ 349636.622699998319149, 258286.513799998909235 ], [ 349637.376800000667572, 258292.641699999570847 ], [ 349638.998400002717972, 258291.599500000476837 ], [ 349643.056999996304512, 258288.466299999505281 ], [ 349646.316399998962879, 258284.482200000435114 ], [ 349648.776699997484684, 258279.647199999541044 ], [ 349655.277500003576279, 258273.789799999445677 ], [ 349660.941500000655651, 258271.51410000026226 ], [ 349681.128100000321865, 258268.30180000141263 ], [ 349683.56139999628067, 258266.633000001311302 ], [ 349683.609999999403954, 258260.933899998664856 ], [ 349667.587999999523163, 258248.559300001710653 ], [ 349667.623999997973442, 258244.337699998170137 ], [ 349678.134800001978874, 258241.04619999974966 ], [ 349690.222300000488758, 258241.989599999040365 ], [ 349693.461900003254414, 258240.327300000935793 ], [ 349695.178800001740456, 258228.097899999469519 ], [ 349693.686700001358986, 258213.942499998956919 ], [ 349692.903800003230572, 258211.191799998283386 ], [ 349689.721699997782707, 258206.099599998444319 ], [ 349688.945900000631809, 258202.504599999636412 ], [ 349680.850400000810623, 258206.238000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99026366, "LATITUDE": 18.35442147, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.787419808300001, "SHAPE_Area": 337.521915218 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352525.170199997723103, 258270.680700000375509 ], [ 352522.803400002419949, 258264.539599999785423 ], [ 352523.63849999755621, 258261.1689000017941 ], [ 352518.778999999165535, 258263.662300001829863 ], [ 352511.471900001168251, 258269.513099998235703 ], [ 352508.223200000822544, 258272.230700001120567 ], [ 352506.585400000214577, 258275.172600001096725 ], [ 352506.540500000119209, 258280.449599999934435 ], [ 352508.943199999630451, 258282.369100000709295 ], [ 352512.953199997544289, 258284.935100000351667 ], [ 352530.702899999916553, 258283.813799999654293 ], [ 352527.553099997341633, 258274.922100000083447 ], [ 352520.292700000107288, 258275.284800000488758 ], [ 352525.170199997723103, 258270.680700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "1102603023100", "MAP": "D9-4194-T88", "PARCEL_NAM": "13-1", "ACRE": ".51", "LONGITUDE": -64.97919838, "LATITUDE": 18.35399711, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.760741209, "SHAPE_Area": 3064.0864336300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353682.658500000834465, 258202.076900001615286 ], [ 353647.252499997615814, 258220.969300001859665 ], [ 353675.135399997234344, 258260.883099999278784 ], [ 353685.505599997937679, 258275.55799999833107 ], [ 353731.649899996817112, 258248.427499998360872 ], [ 353682.658500000834465, 258202.076900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98975342, "LATITUDE": 18.35420784, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.29954661799999, "SHAPE_Area": 891.12225987299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352622.139899998903275, 258246.56529999896884 ], [ 352617.37389999628067, 258238.082499999552965 ], [ 352601.208099998533726, 258242.594300001859665 ], [ 352583.453000001609325, 258244.348799999803305 ], [ 352542.244800001382828, 258254.144000001251698 ], [ 352532.545699998736382, 258256.808899998664856 ], [ 352523.63849999755621, 258261.1689000017941 ], [ 352522.803400002419949, 258264.539599999785423 ], [ 352525.170199997723103, 258270.680700000375509 ], [ 352532.462999999523163, 258266.518500000238419 ], [ 352543.785499997437, 258262.600400000810623 ], [ 352583.375699996948242, 258253.425200000405312 ], [ 352605.972199998795986, 258251.288100000470877 ], [ 352622.139899998903275, 258246.56529999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00971414, "LATITUDE": 18.35320784, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1383.0311082000001, "SHAPE_Area": 6737.0620337099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350514.2449000030756, 258252.111299999058247 ], [ 350508.730099998414516, 258236.867400001734495 ], [ 350508.085699997842312, 258217.863699998706579 ], [ 350507.502300001680851, 258191.683299999684095 ], [ 350506.92620000243187, 258164.658700000494719 ], [ 350506.357199996709824, 258136.789599999785423 ], [ 350506.475900001823902, 258122.858399998396635 ], [ 350505.716399997472763, 258117.363800000399351 ], [ 350506.549599997699261, 258114.204199999570847 ], [ 350507.368500001728535, 258112.733300000429153 ], [ 350510.631599999964237, 258108.326999999582767 ], [ 350516.309900000691414, 258104.362700000405312 ], [ 350526.80460000038147, 258102.970899999141693 ], [ 350542.117299996316433, 258103.940600000321865 ], [ 350553.389499999582767, 258105.932700000703335 ], [ 350562.221199996769428, 258110.438000001013279 ], [ 350567.017700001597404, 258115.332400001585484 ], [ 350571.126599997282028, 258106.289000000804663 ], [ 350565.518299996852875, 258102.021200001239777 ], [ 350555.88400000333786, 258097.087200000882149 ], [ 350547.831600002944469, 258095.754799999296665 ], [ 350542.997299998998642, 258095.293000001460314 ], [ 350525.269299998879433, 258093.881299998611212 ], [ 350505.086300000548363, 258096.671500001102686 ], [ 350498.641199998557568, 258095.985399998724461 ], [ 350495.421300001442432, 258095.325800001621246 ], [ 350490.592399999499321, 258094.230799999088049 ], [ 350486.582400001585484, 258091.664900001138449 ], [ 350482.586800001561642, 258087.410300001502037 ], [ 350480.202100001275539, 258083.379999998956919 ], [ 350479.429899998009205, 258079.362900000065565 ], [ 350478.722499996423721, 258067.747000001370907 ], [ 350479.550399996340275, 258065.220600001513958 ], [ 350480.371100001037121, 258063.538600001484156 ], [ 350482.820600003004074, 258059.969999998807907 ], [ 350486.076399996876717, 258056.408100001513958 ], [ 350496.646600000560284, 258046.151000000536442 ], [ 350502.321400001645088, 258042.608899999409914 ], [ 350509.623099997639656, 258037.39130000025034 ], [ 350524.192500002682209, 258030.966699998825788 ], [ 350533.121299996972084, 258024.073600001633167 ], [ 350525.101300001144409, 258018.941799998283386 ], [ 350519.421099998056889, 258023.11710000038147 ], [ 350500.800399996340275, 258031.830699998885393 ], [ 350490.251800000667572, 258039.554800000041723 ], [ 350486.196900002658367, 258042.265799999237061 ], [ 350477.2753000035882, 258048.314500000327826 ], [ 350463.523000001907349, 258053.479299999773502 ], [ 350436.018500000238419, 258063.808899998664856 ], [ 350409.323899999260902, 258073.722899999469519 ], [ 350405.279700003564358, 258075.167399998754263 ], [ 350377.777000002563, 258085.285900000482798 ], [ 350354.318400003015995, 258093.959800001233816 ], [ 350328.476899996399879, 258098.392400000244379 ], [ 350332.438299998641014, 258106.657499998807907 ], [ 350339.702299997210503, 258105.872600000351667 ], [ 350342.097900003194809, 258108.636399999260902 ], [ 350350.976300001144409, 258107.653599999845028 ], [ 350352.619499996304512, 258104.078400000929832 ], [ 350360.700599998235703, 258102.033599998801947 ], [ 350428.652000002563, 258076.625300001353025 ], [ 350463.436700001358986, 258063.611099999397993 ], [ 350467.470100000500679, 258063.43299999833107 ], [ 350469.071900002658367, 258064.712699998170137 ], [ 350469.770400002598763, 258077.38399999961257 ], [ 350470.540700003504753, 258081.612199999392033 ], [ 350472.099399998784065, 258087.957699999213219 ], [ 350473.693999998271465, 258090.081700000911951 ], [ 350476.082400001585484, 258093.689899999648333 ], [ 350478.478000000119209, 258096.453699998557568 ], [ 350480.079800002276897, 258097.733399998396635 ], [ 350488.895300000905991, 258104.138300001621246 ], [ 350491.288999997079372, 258107.113200001418591 ], [ 350492.878300003707409, 258109.870400000363588 ], [ 350495.259499996900558, 258114.322900000959635 ], [ 350495.236100003123283, 258117.066899999976158 ], [ 350497.583099998533726, 258125.529899999499321 ], [ 350498.267099998891354, 258139.889800000935793 ], [ 350498.724600002169609, 258180.84569999948144 ], [ 350498.611299999058247, 258194.143699999898672 ], [ 350496.174400001764297, 258196.234700001776218 ], [ 350492.950900003314018, 258195.99720000103116 ], [ 350491.350900001823902, 258194.506499998271465 ], [ 350486.622699998319149, 258181.591099999845028 ], [ 350477.93129999935627, 258160.621700000017881 ], [ 350467.567900002002716, 258146.604699999094009 ], [ 350461.184000000357628, 258138.741999998688698 ], [ 350452.37389999628067, 258131.70380000025034 ], [ 350450.770199999213219, 258130.635200001299381 ], [ 350441.924199998378754, 258127.818500000983477 ], [ 350433.861000001430511, 258127.752599999308586 ], [ 350424.174500003457069, 258128.939800001680851 ], [ 350413.658299997448921, 258132.864500001072884 ], [ 350403.9358000010252, 258138.273400001227856 ], [ 350397.425899997353554, 258145.186200000345707 ], [ 350389.217200003564358, 258162.217599999159575 ], [ 350374.44820000231266, 258192.072000000625849 ], [ 350369.567199997603893, 258197.098299998790026 ], [ 350375.150200001895428, 258204.321199998259544 ], [ 350380.02759999781847, 258199.717000000178814 ], [ 350384.935599997639656, 258191.524599999189377 ], [ 350402.994599997997284, 258154.097699999809265 ], [ 350409.516999997198582, 258145.707400001585484 ], [ 350417.621500000357628, 258140.918499998748302 ], [ 350430.562100000679493, 258136.380399998277426 ], [ 350437.820699997246265, 258136.228700000792742 ], [ 350445.864000000059605, 258138.616599999368191 ], [ 350453.07769999653101, 258143.741900000721216 ], [ 350462.65990000218153, 258154.797100000083447 ], [ 350470.625900000333786, 258166.261399999260902 ], [ 350472.211599998176098, 258169.440799999982119 ], [ 350474.5675999969244, 258176.848299998790026 ], [ 350483.253600001335144, 258198.4510000012815 ], [ 350492.726199999451637, 258222.382100000977516 ], [ 350505.368199996650219, 258252.883000001311302 ], [ 350514.2449000030756, 258252.111299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01164632, "LATITUDE": 18.35341211, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 917.02154714200003, "SHAPE_Area": 4196.8032607799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350195.849600002169609, 258143.325300000607967 ], [ 350200.730599999427795, 258138.2989999987185 ], [ 350217.006099998950958, 258120.911499999463558 ], [ 350219.461000002920628, 258116.709699999541044 ], [ 350223.528599999845028, 258112.521099999547005 ], [ 350227.621299996972084, 258105.377399999648333 ], [ 350240.621200002729893, 258093.873700000345707 ], [ 350258.453500002622604, 258083.042700000107288 ], [ 350260.877899996936321, 258082.429299999028444 ], [ 350262.467100001871586, 258085.186500001698732 ], [ 350246.90259999781847, 258113.767900001257658 ], [ 350243.605499997735023, 258122.184599999338388 ], [ 350241.946099996566772, 258127.659499999135733 ], [ 350240.272299997508526, 258134.822999998927116 ], [ 350239.421099998056889, 258140.093299999833107 ], [ 350238.524800002574921, 258150.640700001269579 ], [ 350238.485299997031689, 258155.284400001168251 ], [ 350239.241200000047684, 258161.201200000941753 ], [ 350239.990000002086163, 258167.96229999884963 ], [ 350240.744199998676777, 258174.090199999511242 ], [ 350242.295699998736382, 258181.280099999159575 ], [ 350243.08219999819994, 258183.608600001782179 ], [ 350248.625699996948242, 258195.47520000115037 ], [ 350249.4121999964118, 258197.803599998354912 ], [ 350255.79619999974966, 258205.666400000452995 ], [ 350262.99719999730587, 258212.269200000911951 ], [ 350268.614500001072884, 258215.481600001454353 ], [ 350275.034400001168251, 258219.122699998319149 ], [ 350290.303999997675419, 258225.158300001174212 ], [ 350294.322999998927116, 258226.668800000101328 ], [ 350300.755500003695488, 258228.832400001585484 ], [ 350309.619499996304512, 258229.53830000013113 ], [ 350318.494300000369549, 258228.977600000798702 ], [ 350329.0033999979496, 258225.897199999541044 ], [ 350331.43129999935627, 258224.861600000411272 ], [ 350345.189000003039837, 258219.0636 ], [ 350349.234899997711182, 258217.407999999821186 ], [ 350368.660099998116493, 258208.912099998444319 ], [ 350375.150200001895428, 258204.321199998259544 ], [ 350369.567199997603893, 258197.098299998790026 ], [ 350361.459100000560284, 258202.309300001710653 ], [ 350342.0337999984622, 258210.805100001394749 ], [ 350328.272600002586842, 258217.025299999862909 ], [ 350320.999600000679493, 258218.865600001066923 ], [ 350313.728399999439716, 258220.494899999350309 ], [ 350306.471600003540516, 258220.435499999672174 ], [ 350296.014700002968311, 258217.394600000232458 ], [ 350292.800200000405312, 258216.101700000464916 ], [ 350272.710799999535084, 258207.915699999779463 ], [ 350262.300599999725819, 258199.386799998581409 ], [ 350255.918499998748302, 258191.313000001013279 ], [ 350252.743600003421307, 258185.376400001347065 ], [ 350250.4037000015378, 258176.069099999964237 ], [ 350248.116099998354912, 258160.640599999576807 ], [ 350248.265299998223782, 258143.120999999344349 ], [ 350249.120200000703335, 258137.42850000038743 ], [ 350249.944499999284744, 258135.324299998581409 ], [ 350255.734300002455711, 258118.27309999987483 ], [ 350255.750500001013279, 258116.373399998992682 ], [ 350263.943099997937679, 258101.241700001060963 ], [ 350272.142899997532368, 258085.265700001269579 ], [ 350275.407700002193451, 258080.648400001227856 ], [ 350281.908500000834465, 258074.791000001132488 ], [ 350291.623800002038479, 258070.226399999111891 ], [ 350313.4662000015378, 258061.961500000208616 ], [ 350309.504799999296665, 258053.696400001645088 ], [ 350294.134499996900558, 258059.481199998408556 ], [ 350262.583999998867512, 258071.466400001198053 ], [ 350256.111900001764297, 258073.946600001305342 ], [ 350242.336300000548363, 258081.855399999767542 ], [ 350233.411100000143051, 258088.326200000941753 ], [ 350231.787699997425079, 258089.579500000923872 ], [ 350221.226499997079372, 258098.781199999153614 ], [ 350216.323899999260902, 258106.340399999171495 ], [ 350213.055500000715256, 258111.379900000989437 ], [ 350201.657399997115135, 258124.16330000013113 ], [ 350200.0304000005126, 258125.838799998164177 ], [ 350182.945000000298023, 258143.6418999992311 ], [ 350180.50450000166893, 258146.155000001192093 ], [ 350165.868600003421307, 258160.389600001275539 ], [ 350162.618199996650219, 258163.318300001323223 ], [ 350158.534500002861023, 258169.406599998474121 ], [ 350158.4949000030756, 258174.050299998372793 ], [ 350161.691399998962879, 258177.453999999910593 ], [ 350165.717600002884865, 258178.120200000703335 ], [ 350168.951800003647804, 258177.0912000015378 ], [ 350172.248999997973442, 258168.674499999731779 ], [ 350173.069700002670288, 258166.992400001734495 ], [ 350175.519199997186661, 258163.423900000751019 ], [ 350195.849600002169609, 258143.325300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98924048000001, "LATITUDE": 18.35409802, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.2737585677, "SHAPE_Area": 96.932800989300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352617.37389999628067, 258238.082499999552965 ], [ 352622.139899998903275, 258246.56529999896884 ], [ 352632.665100000798702, 258241.585200000554323 ], [ 352638.343400001525879, 258237.620900001376867 ], [ 352623.826200000941753, 258237.924300000071526 ], [ 352617.37389999628067, 258238.082499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01700401, "LATITUDE": 18.35372863, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.487001988, "SHAPE_Area": 863.11888633800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349741.681699998676777, 258164.728300001472235 ], [ 349729.549300000071526, 258169.061999998986721 ], [ 349719.058200001716614, 258170.031599998474121 ], [ 349688.425499998033047, 258168.936500001698732 ], [ 349678.780299998819828, 258165.268899999558926 ], [ 349673.179300002753735, 258160.156899999827147 ], [ 349664.270300000905991, 258164.728000000119209 ], [ 349680.850400000810623, 258206.238000001758337 ], [ 349688.945900000631809, 258202.504599999636412 ], [ 349680.258100003004074, 258181.113099999725819 ], [ 349680.290500000119209, 258177.3136 ], [ 349681.910300001502037, 258176.482500001788139 ], [ 349685.148100003600121, 258175.031399998813868 ], [ 349726.262900002300739, 258176.212200000882149 ], [ 349742.432300001382828, 258171.278299998492002 ], [ 349741.681699998676777, 258164.728300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00811491, "LATITUDE": 18.35377666, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.9224497055, "SHAPE_Area": 180.16523503799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350638.150100000202656, 258189.7972999997437 ], [ 350624.570500001311302, 258174.698499999940395 ], [ 350626.053599998354912, 258189.909400001168251 ], [ 350638.026000000536442, 258204.361800000071526 ], [ 350638.150100000202656, 258189.7972999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "F9-261-T57", "PARCEL_NAM": "CATCHMENT", "ACRE": null, "LONGITUDE": -64.97418928, "LATITUDE": 18.35362306, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.010311535, "SHAPE_Area": 1034.60447626 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354232.492600001394749, 258147.865699999034405 ], [ 354226.839400000870228, 258148.874899998307228 ], [ 354213.589599996805191, 258189.718600001186132 ], [ 354207.94539999961853, 258189.672400001436472 ], [ 354201.280900001525879, 258214.738000001758337 ], [ 354206.860299997031689, 258222.383000001311302 ], [ 354232.570600003004074, 258233.359200000762939 ], [ 354231.798500001430511, 258229.342099998146296 ], [ 354227.012800000607967, 258223.181200001388788 ], [ 354225.445100001990795, 258217.891100000590086 ], [ 354224.193899996578693, 258175.4510000012815 ], [ 354224.258599996566772, 258167.852200001478195 ], [ 354225.091899998486042, 258164.692600000649691 ], [ 354227.564800001680851, 258158.379999998956919 ], [ 354230.827799998223782, 258153.973799999803305 ], [ 354232.492600001394749, 258147.865699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01116662, "LATITUDE": 18.35337642, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.21487531399998, "SHAPE_Area": 1192.38549835 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350306.634499996900558, 258106.657400000840425 ], [ 350305.007500000298023, 258108.332800000905991 ], [ 350298.48870000243187, 258116.300999999046326 ], [ 350294.401299998164177, 258122.811500001698732 ], [ 350291.941100001335144, 258127.646499998867512 ], [ 350291.100599996745586, 258131.650400001555681 ], [ 350290.274499997496605, 258133.965599998831749 ], [ 350288.62049999833107, 258138.807300001382828 ], [ 350287.799800001084805, 258140.48930000141263 ], [ 350286.973700001835823, 258142.80460000038147 ], [ 350289.261399999260902, 258158.2331000007689 ], [ 350292.439900003373623, 258163.747600000351667 ], [ 350296.439099997282028, 258167.579999998211861 ], [ 350298.039099998772144, 258169.070700000971556 ], [ 350300.44370000064373, 258170.779199998825788 ], [ 350306.867200002074242, 258173.998100001364946 ], [ 350310.895199999213219, 258174.453299999237061 ], [ 350322.170900002121925, 258176.023200001567602 ], [ 350327.010600000619888, 258175.851700000464916 ], [ 350337.516099996864796, 258173.193500000983477 ], [ 350346.42679999768734, 258168.411299999803305 ], [ 350340.037500001490116, 258161.181800000369549 ], [ 350335.982500001788139, 258163.892799999564886 ], [ 350327.895999997854233, 258166.570900000631809 ], [ 350320.63740000128746, 258166.722600001841784 ], [ 350314.994999997317791, 258166.465300001204014 ], [ 350312.58330000191927, 258165.601199999451637 ], [ 350304.545400001108646, 258162.580099999904633 ], [ 350298.947899997234344, 258157.045800000429153 ], [ 350297.362300001084805, 258153.866399999707937 ], [ 350296.663800001144409, 258141.195099998265505 ], [ 350299.9628000035882, 258132.567299999296665 ], [ 350303.247400000691414, 258125.628100000321865 ], [ 350305.686099998652935, 258123.3260000012815 ], [ 350313.032799996435642, 258112.831500001251698 ], [ 350317.903099998831749, 258109.071600001305342 ], [ 350332.438299998641014, 258106.657499998807907 ], [ 350328.476899996399879, 258098.392400000244379 ], [ 350315.557899996638298, 258100.397599998861551 ], [ 350310.698399998247623, 258102.890999998897314 ], [ 350306.634499996900558, 258106.657400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403042900", "MAP": "D9-5889-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01107577000001, "LATITUDE": 18.35334871, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.58510320100001, "SHAPE_Area": 1935.7698788 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350340.037500001490116, 258161.181800000369549 ], [ 350332.438299998641014, 258106.657499998807907 ], [ 350317.903099998831749, 258109.071600001305342 ], [ 350313.032799996435642, 258112.831500001251698 ], [ 350305.686099998652935, 258123.3260000012815 ], [ 350303.247400000691414, 258125.628100000321865 ], [ 350299.9628000035882, 258132.567299999296665 ], [ 350296.663800001144409, 258141.195099998265505 ], [ 350297.362300001084805, 258153.866399999707937 ], [ 350298.947899997234344, 258157.045800000429153 ], [ 350304.545400001108646, 258162.580099999904633 ], [ 350312.58330000191927, 258165.601199999451637 ], [ 350314.994999997317791, 258166.465300001204014 ], [ 350320.63740000128746, 258166.722600001841784 ], [ 350327.895999997854233, 258166.570900000631809 ], [ 350335.982500001788139, 258163.892799999564886 ], [ 350340.037500001490116, 258161.181800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98698535, "LATITUDE": 18.35290024, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.170868754, "SHAPE_Area": 382.20051750099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352843.349299997091293, 258120.875300001353025 ], [ 352844.184399999678135, 258117.504599999636412 ], [ 352845.005000002682209, 258115.822599999606609 ], [ 352847.459899999201298, 258111.620799999684095 ], [ 352853.147299997508526, 258106.601100001484156 ], [ 352865.312100000679493, 258098.467999998480082 ], [ 352874.206699997186661, 258095.585499998182058 ], [ 352883.078000001609325, 258095.447000000625849 ], [ 352887.109499998390675, 258095.480000000447035 ], [ 352898.361900001764297, 258099.793999999761581 ], [ 352913.647699996829033, 258103.929900001734495 ], [ 352916.903499998152256, 258100.367899999022484 ], [ 352905.631300002336502, 258098.375799998641014 ], [ 352888.743699997663498, 258092.960299998521805 ], [ 352883.103100001811981, 258092.491900000721216 ], [ 352875.851700000464916, 258091.799300000071526 ], [ 352868.58049999922514, 258093.42850000038743 ], [ 352856.424699999392033, 258100.50620000064373 ], [ 352845.872500002384186, 258108.652499999850988 ], [ 352840.134800001978874, 258119.582400001585484 ], [ 352839.3158999979496, 258121.053399998694658 ], [ 352838.493400000035763, 258122.94649999961257 ], [ 352834.325199998915195, 258138.95549999922514 ], [ 352834.238899998366833, 258149.08729999884963 ], [ 352837.458700001239777, 258149.746899999678135 ], [ 352839.227799996733665, 258131.396200001239777 ], [ 352842.519599996507168, 258123.612700000405312 ], [ 352843.349299997091293, 258120.875300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-150", "ACRE": ".09", "LONGITUDE": -65.01176143000001, "LATITUDE": 18.35297917, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.874674040399995, "SHAPE_Area": 422.23689737699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350230.172799997031689, 258103.119600001722574 ], [ 350246.90259999781847, 258113.767900001257658 ], [ 350262.467100001871586, 258085.186500001698732 ], [ 350260.877899996936321, 258082.429299999028444 ], [ 350258.453500002622604, 258083.042700000107288 ], [ 350240.621200002729893, 258093.873700000345707 ], [ 350230.172799997031689, 258103.119600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97565171, "LATITUDE": 18.35220971, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2309.4973265799999, "SHAPE_Area": 8086.5507521899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354245.40259999781847, 258146.915899999439716 ], [ 354257.682499997317791, 258125.273699998855591 ], [ 354260.126599997282028, 258122.33839999884367 ], [ 354261.76799999922514, 258118.974399998784065 ], [ 354268.364100001752377, 258101.929800000041723 ], [ 354270.847800001502037, 258094.350699998438358 ], [ 354273.353100001811981, 258084.238800000399351 ], [ 354277.612999998033047, 258057.464699998497963 ], [ 354277.713699996471405, 258045.644299998879433 ], [ 354275.332500003278255, 258041.191899999976158 ], [ 354267.449199996888638, 258020.01799999922514 ], [ 354255.485799998044968, 258004.510299999266863 ], [ 354249.078400000929832, 257999.391600001603365 ], [ 354242.671099998056889, 257994.272900000214577 ], [ 354232.215999998152256, 257991.020899999886751 ], [ 354220.13570000231266, 257989.233300000429153 ], [ 354216.912299998104572, 257988.995799999684095 ], [ 354203.208499997854233, 257988.461500000208616 ], [ 354199.178800001740456, 257988.217399999499321 ], [ 354183.842699997127056, 257989.991700001060963 ], [ 354166.071400001645088, 257993.646000001579523 ], [ 354131.28490000218153, 258006.871199999004602 ], [ 354125.622699998319149, 258008.9358000010252 ], [ 354119.974899999797344, 258009.311799999326468 ], [ 354115.151500001549721, 258007.583599999547005 ], [ 354107.935999996960163, 258002.669300001114607 ], [ 354099.939400002360344, 257994.793400000780821 ], [ 354091.190499998629093, 257980.578600000590086 ], [ 354087.194899998605251, 257976.324000000953674 ], [ 354083.989399999380112, 257973.975699998438358 ], [ 354078.377599999308586, 257970.130100000649691 ], [ 354067.922499999403954, 257966.878100000321865 ], [ 354055.026900000870228, 257966.139299999922514 ], [ 354039.692500002682209, 257967.702599998563528 ], [ 354027.574500001966953, 257970.347600001841784 ], [ 354003.316799998283386, 257978.1706000007689 ], [ 353999.281599998474121, 257978.559799998998642 ], [ 353988.790600001811981, 257979.529399998486042 ], [ 353986.369800001382828, 257979.72069999948144 ], [ 353953.303800001740456, 257980.294399999082088 ], [ 353890.357500001788139, 257986.111999999731779 ], [ 353866.943899996578693, 257989.50899999961257 ], [ 353826.545500002801418, 257998.888599999248981 ], [ 353818.458999998867512, 258001.566700000315905 ], [ 353811.963600002229214, 258006.790899999439716 ], [ 353757.278899997472763, 258084.025699999183416 ], [ 353750.763700000941753, 258091.571800000965595 ], [ 353678.520000003278255, 258147.553599998354912 ], [ 353688.193899996578693, 258147.843800000846386 ], [ 353754.755699999630451, 258096.248500000685453 ], [ 353762.084399998188019, 258087.864700000733137 ], [ 353814.32320000231266, 258013.776299998164177 ], [ 353820.82039999961853, 258008.340999998152256 ], [ 353839.4087999984622, 258003.426899999380112 ], [ 353880.604400001466274, 257995.109200000762939 ], [ 353919.350599996745586, 257990.360100001096725 ], [ 353949.203900001943111, 257988.282400000840425 ], [ 353987.109600000083447, 257987.537200000137091 ], [ 354000.82769999653101, 257986.38289999961853 ], [ 354013.755699999630451, 257983.322299998253584 ], [ 354032.353000000119209, 257977.352800000458956 ], [ 354051.733300000429153, 257974.133900001645088 ], [ 354064.637900002300739, 257973.817299999296665 ], [ 354072.68299999833107, 257975.994100000709295 ], [ 354078.302000001072884, 257978.995400000363588 ], [ 354084.704000003635883, 257984.747299998998642 ], [ 354091.060999996960163, 257995.776200000196695 ], [ 354099.050399996340275, 258004.496500000357628 ], [ 354113.472300000488758, 258015.380300000309944 ], [ 354119.102099999785423, 258017.115100000053644 ], [ 354126.362499997019768, 258016.752300001680851 ], [ 354174.897699996829033, 257998.784400001168251 ], [ 354189.432899996638298, 257996.370299998670816 ], [ 354197.503200002014637, 257995.592000000178814 ], [ 354203.14919999986887, 257995.427099999040365 ], [ 354220.085400000214577, 257995.143500000238419 ], [ 354225.720600001513958, 257996.245099999010563 ], [ 354231.354000002145767, 257997.557799998670816 ], [ 354242.601000003516674, 258002.504999998956919 ], [ 354250.615500003099442, 258008.270100001245737 ], [ 354256.204000003635883, 258014.859700001776218 ], [ 354260.977099999785423, 258022.498199999332428 ], [ 354263.385300002992153, 258023.784400001168251 ], [ 354264.988899998366833, 258024.853000000119209 ], [ 354269.679300002753735, 258042.201099999248981 ], [ 354269.576800003647804, 258054.232599999755621 ], [ 354264.5033999979496, 258081.844300001859665 ], [ 354260.338799998164177, 258097.431099999696016 ], [ 354252.920100003480911, 258116.36879999935627 ], [ 354244.75450000166893, 258128.334300000220537 ], [ 354246.577500000596046, 258103.651299998164177 ], [ 354241.249799996614456, 258066.455200001597404 ], [ 354238.924400001764297, 258055.459300000220537 ], [ 354235.744099996984005, 258050.155999999493361 ], [ 354230.144900001585484, 258044.832800000905991 ], [ 354226.124099999666214, 258043.533300001174212 ], [ 354214.832099996507168, 258043.863099999725819 ], [ 354209.992399998009205, 258044.034600000828505 ], [ 354199.487000003457069, 258046.692800000309944 ], [ 354193.815800003707409, 258049.812800001353025 ], [ 354188.952799998223782, 258052.728300001472235 ], [ 354172.727600000798702, 258064.205699998885393 ], [ 354167.861000001430511, 258067.543299999088049 ], [ 354160.580799996852875, 258070.228000000119209 ], [ 354156.536700002849102, 258071.672499999403954 ], [ 354147.645599998533726, 258074.13289999961853 ], [ 354133.121200002729893, 258075.280600000172853 ], [ 354122.649999998509884, 258073.928300000727177 ], [ 354073.511600002646446, 258068.03770000115037 ], [ 354075.070299997925758, 258074.383299998939037 ], [ 354145.152999997138977, 258082.767299998551607 ], [ 354145.941299997270107, 258084.884700000286102 ], [ 354125.650399997830391, 258100.339600000530481 ], [ 354120.789200000464916, 258103.043999999761581 ], [ 354115.938699997961521, 258104.481899999082088 ], [ 354105.458400003612041, 258104.185100000351667 ], [ 354090.183499999344349, 258098.782699998468161 ], [ 354080.514899998903275, 258097.859200000762939 ], [ 354081.269100002944469, 258103.987100001424551 ], [ 354088.520499996840954, 258104.679699998348951 ], [ 354102.99099999666214, 258109.864399999380112 ], [ 354111.046899996697903, 258110.774700000882149 ], [ 354114.060300000011921, 258111.607099998742342 ], [ 354116.044600002467632, 258112.004000000655651 ], [ 354118.478799998760223, 258111.368999999016523 ], [ 354124.779399998486042, 258107.931800000369549 ], [ 354195.381700001657009, 258055.314100001007318 ], [ 354205.093400001525879, 258051.171700000762939 ], [ 354210.744800001382828, 258050.373599998652935 ], [ 354218.01240000128746, 258049.166499998420477 ], [ 354223.649400003254414, 258050.057000000029802 ], [ 354226.064699999988079, 258050.4989 ], [ 354230.882799997925758, 258052.860399998724461 ], [ 354234.066699996590614, 258057.741599999368191 ], [ 354240.159400001168251, 258099.799100000411272 ], [ 354239.286499999463558, 258107.602400001138449 ], [ 354239.266800001263618, 258109.924300000071526 ], [ 354238.375900000333786, 258119.83839999884367 ], [ 354238.327399998903275, 258125.537500001490116 ], [ 354236.631999999284744, 258135.234000001102686 ], [ 354232.492600001394749, 258147.865699999034405 ], [ 354245.40259999781847, 258146.915899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-3182-T85", "PARCEL_NAM": "16", "ACRE": null, "LONGITUDE": -64.97330651, "LATITUDE": 18.35278545, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.969482468, "SHAPE_Area": 1505.1465274300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354283.360399998724461, 258140.049400001764297 ], [ 354322.925499998033047, 258133.829300001263618 ], [ 354323.076499998569489, 258116.098700001835823 ], [ 354325.78320000320673, 258082.345800001174212 ], [ 354326.837600000202656, 258053.223600000143051 ], [ 354293.99889999628067, 258121.771299999207258 ], [ 354292.359300002455711, 258124.924300000071526 ], [ 354288.261200003325939, 258132.701200000941753 ], [ 354283.360399998724461, 258140.049400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-5695-T94", "PARCEL_NAM": "3C-83", "ACRE": null, "LONGITUDE": -65.01425497, "LATITUDE": 18.35244381, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.44147946699999, "SHAPE_Area": 2034.68304188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349955.001900002360344, 258005.918099999427795 ], [ 349952.473600000143051, 258030.776399999856949 ], [ 349967.961599998176098, 258043.217399999499321 ], [ 350002.501900002360344, 258068.349300000816584 ], [ 350012.663099996745586, 258065.199099998921156 ], [ 350023.124399997293949, 258061.932700000703335 ], [ 349985.250200003385544, 258015.342700000852346 ], [ 349981.460299998521805, 258010.680599998682737 ], [ 349975.110299997031689, 258010.680599998682737 ], [ 349962.254399999976158, 258009.108399998396635 ], [ 349955.001900002360344, 258005.918099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "DRAINAGE", "ACRE": null, "LONGITUDE": -65.010312, "LATITUDE": 18.35261155, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.425640591100006, "SHAPE_Area": 145.35687748500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350409.323899999260902, 258073.722899999469519 ], [ 350395.880900003015995, 258042.582100000232458 ], [ 350391.836800001561642, 258044.026700001209974 ], [ 350405.279700003564358, 258075.167399998754263 ], [ 350409.323899999260902, 258073.722899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01036825, "LATITUDE": 18.3523739, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 370.52026534599997, "SHAPE_Area": 1620.3726116800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350442.857400000095367, 258018.2685999982059 ], [ 350461.470899999141693, 258010.399399999529123 ], [ 350471.206000000238419, 258003.513000000268221 ], [ 350476.887999996542931, 257999.126499999314547 ], [ 350470.496799997985363, 257992.108199998736382 ], [ 350468.058100000023842, 257994.410199999809265 ], [ 350463.187899999320507, 257998.170000001788139 ], [ 350459.944600000977516, 258000.254399999976158 ], [ 350456.704999998211861, 258001.916700001806021 ], [ 350437.277999997138977, 258010.623599998652935 ], [ 350425.125699996948242, 258017.279100000858307 ], [ 350412.161799997091293, 258024.561299998313189 ], [ 350408.920400001108646, 258026.434599999338388 ], [ 350391.915899999439716, 258034.739199999719858 ], [ 350387.871699996292591, 258036.183699999004602 ], [ 350377.355499997735023, 258040.108399998396635 ], [ 350357.980599999427795, 258042.694099999964237 ], [ 350335.376900002360344, 258045.675500001758337 ], [ 350324.063400000333786, 258048.538199998438358 ], [ 350309.504799999296665, 258053.696400001645088 ], [ 350313.4662000015378, 258061.961500000208616 ], [ 350315.082400001585484, 258061.552499998360872 ], [ 350337.718500003218651, 258054.771699998527765 ], [ 350363.55290000140667, 258051.183400001376867 ], [ 350375.663800001144409, 258049.382699999958277 ], [ 350391.836800001561642, 258044.026700001209974 ], [ 350395.880900003015995, 258042.582100000232458 ], [ 350407.212399996817112, 258037.608600001782179 ], [ 350412.881800003349781, 258034.699700001627207 ], [ 350420.984499998390675, 258030.121899999678135 ], [ 350442.857400000095367, 258018.2685999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01324523, "LATITUDE": 18.35229624, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.532340804, "SHAPE_Area": 1409.4839270699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350099.546300001442432, 257994.560499999672174 ], [ 350091.512000001966953, 257991.117300000041723 ], [ 350076.228000000119209, 257986.770300000905991 ], [ 350082.927400000393391, 258052.26410000026226 ], [ 350105.493299998342991, 258053.715399999171495 ], [ 350099.546300001442432, 257994.560499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-5887-T95", "PARCEL_NAM": "GREEN BELT", "ACRE": ".041", "LONGITUDE": -65.00894914, "LATITUDE": 18.35221324, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.042814875399998, "SHAPE_Area": 197.865470077 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350546.266800001263618, 257995.472500000149012 ], [ 350543.763400003314018, 258005.373399998992682 ], [ 350542.937299996614456, 258007.688700001686811 ], [ 350537.192400000989437, 258019.462900001555681 ], [ 350550.804399996995926, 258030.762299999594688 ], [ 350546.266800001263618, 257995.472500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00991077, "LATITUDE": 18.35094548, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1123.68117349, "SHAPE_Area": 5236.36553998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350345.286799997091293, 257828.963500000536442 ], [ 350352.536399997770786, 257829.867199998348951 ], [ 350365.430200003087521, 257830.817099999636412 ], [ 350371.085199996829033, 257829.596799999475479 ], [ 350377.55009999871254, 257827.960999999195337 ], [ 350386.459100000560284, 257823.389899998903275 ], [ 350391.323899999260902, 257820.263300001621246 ], [ 350397.014799997210503, 257814.821400001645088 ], [ 350398.634700000286102, 257813.990299999713898 ], [ 350406.730200000107288, 257810.256900001317263 ], [ 350414.784299999475479, 257811.378299999982119 ], [ 350433.259300000965595, 257819.762099999934435 ], [ 350443.665899999439716, 257828.713199999183416 ], [ 350450.86879999935627, 257835.105000000447035 ], [ 350456.444600000977516, 257843.172200001776218 ], [ 350465.179200001060963, 257859.075699999928474 ], [ 350472.360500000417233, 257868.000399999320507 ], [ 350474.750600002706051, 257871.39750000089407 ], [ 350485.130199998617172, 257883.514699999243021 ], [ 350490.729400001466274, 257888.837900001555681 ], [ 350515.530900001525879, 257911.839000001549721 ], [ 350517.922899998724461, 257915.024999998509884 ], [ 350519.519299998879433, 257916.937899999320507 ], [ 350521.902300000190735, 257921.179299999028444 ], [ 350522.692400000989437, 257923.08559999987483 ], [ 350524.245700001716614, 257930.064399998635054 ], [ 350526.884900003671646, 257939.428399998694658 ], [ 350527.678599998354912, 257948.688799999654293 ], [ 350523.445299997925758, 257951.070000000298023 ], [ 350520.005699999630451, 257949.747099999338388 ], [ 350514.447700001299381, 257944.338500000536442 ], [ 350510.452100001275539, 257940.083999998867512 ], [ 350504.04110000282526, 257935.38740000128746 ], [ 350488.012000001966953, 257923.857200000435114 ], [ 350475.164899997413158, 257917.419199999421835 ], [ 350467.936899997293949, 257913.982599999755621 ], [ 350450.2466000020504, 257908.138300001621246 ], [ 350443.814099997282028, 257905.974700000137091 ], [ 350444.355800002813339, 257914.869100000709295 ], [ 350461.421700000762939, 257921.528599999845028 ], [ 350481.504000000655651, 257930.558899998664856 ], [ 350494.331200003623962, 257939.31870000064373 ], [ 350499.140299998223782, 257942.735599998384714 ], [ 350507.147699996829033, 257949.344999998807907 ], [ 350517.530900001525879, 257961.040199998766184 ], [ 350525.547200001776218, 257966.594200000166893 ], [ 350532.726700000464916, 257975.730000000447035 ], [ 350536.664800003170967, 257986.739100001752377 ], [ 350535.748800002038479, 257999.608300000429153 ], [ 350534.071400001645088, 258007.193900000303984 ], [ 350530.797600001096725, 258012.866700001060963 ], [ 350525.101300001144409, 258018.941799998283386 ], [ 350533.121299996972084, 258024.073600001633167 ], [ 350537.192400000989437, 258019.462900001555681 ], [ 350542.937299996614456, 258007.688700001686811 ], [ 350543.763400003314018, 258005.373399998992682 ], [ 350546.266800001263618, 257995.472500000149012 ], [ 350546.362099997699261, 257984.285300001502037 ], [ 350546.387299999594688, 257981.330200001597404 ], [ 350542.41330000013113, 257974.542700000107288 ], [ 350539.236599996685982, 257968.817200001329184 ], [ 350536.839199997484684, 257966.264400001615286 ], [ 350534.49040000140667, 257958.012600000947714 ], [ 350533.13849999755621, 257927.392900001257658 ], [ 350531.583400003612041, 257920.625199999660254 ], [ 350530.793300002813339, 257918.718899998813868 ], [ 350529.200499996542931, 257916.383799999952316 ], [ 350523.635399997234344, 257907.050200000405312 ], [ 350496.431199997663498, 257882.129599999636412 ], [ 350483.645199999213219, 257868.514899998903275 ], [ 350471.690800003707409, 257851.951799999922514 ], [ 350461.361599996685982, 257833.924300000071526 ], [ 350451.773999996483326, 257823.502300001680851 ], [ 350446.180100001394749, 257817.545899998396635 ], [ 350437.362800002098083, 257811.352000001817942 ], [ 350418.889600001275539, 257802.756999999284744 ], [ 350418.144400000572205, 257795.573800001293421 ], [ 350423.806599996984005, 257793.509199999272823 ], [ 350431.858900003135204, 257794.841600000858307 ], [ 350433.548900000751019, 257785.778400000184774 ], [ 350422.276699997484684, 257783.786299999803305 ], [ 350418.239699997007847, 257784.386599998921156 ], [ 350413.39639999717474, 257784.980200000107288 ], [ 350406.096500001847744, 257789.986699998378754 ], [ 350388.9949000030756, 257809.689500000327826 ], [ 350382.494000002741814, 257815.546999998390675 ], [ 350372.780500002205372, 257819.900400001555681 ], [ 350363.894900001585484, 257821.72749999910593 ], [ 350341.337899997830391, 257819.220899999141693 ], [ 350322.026000000536442, 257814.418800000101328 ], [ 350293.885999999940395, 257804.689300000667572 ], [ 350289.075099997222424, 257801.483500000089407 ], [ 350285.871399998664856, 257798.924100000411272 ], [ 350282.674900002777576, 257795.520500000566244 ], [ 350280.282999999821186, 257792.334499999880791 ], [ 350279.501800000667572, 257789.372800000011921 ], [ 350277.917999997735023, 257785.982299998402596 ], [ 350268.242200002074242, 257785.903099998831749 ], [ 350269.800899997353554, 257792.248700000345707 ], [ 350270.592799998819828, 257793.943900000303984 ], [ 350273.774899996817112, 257799.036200001835823 ], [ 350276.965999998152256, 257803.073100000619888 ], [ 350279.365199998021126, 257805.414799999445677 ], [ 350285.770700000226498, 257810.744500000029802 ], [ 350293.004100002348423, 257813.548000000417233 ], [ 350317.116200000047684, 257822.822299998253584 ], [ 350333.206500001251698, 257827.175900001078844 ], [ 350345.286799997091293, 257828.963500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403046900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00926096000001, "LATITUDE": 18.35197969, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.50768680900001, "SHAPE_Area": 2059.8478731 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350517.530900001525879, 257961.040199998766184 ], [ 350482.690399996936321, 257980.597800001502037 ], [ 350480.966300003230572, 257993.671500001102686 ], [ 350478.522200003266335, 257996.606800001114607 ], [ 350509.883900001645088, 258006.78489999845624 ], [ 350519.421099998056889, 258023.11710000038147 ], [ 350525.101300001144409, 258018.941799998283386 ], [ 350530.797600001096725, 258012.866700001060963 ], [ 350534.071400001645088, 258007.193900000303984 ], [ 350535.748800002038479, 257999.608300000429153 ], [ 350536.664800003170967, 257986.739100001752377 ], [ 350532.726700000464916, 257975.730000000447035 ], [ 350525.547200001776218, 257966.594200000166893 ], [ 350517.530900001525879, 257961.040199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-K", "ACRE": null, "LONGITUDE": -65.0118066, "LATITUDE": 18.35189171, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.740562541, "SHAPE_Area": 284.077625743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350250.305200003087521, 257998.327500000596046 ], [ 350241.813400000333786, 257953.928399998694658 ], [ 350236.144000001251698, 257956.83729999884963 ], [ 350244.626800000667572, 258002.291799999773502 ], [ 350250.305200003087521, 257998.327500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0097107, "LATITUDE": 18.3517207, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.58610179300001, "SHAPE_Area": 708.23341813699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350471.603399999439716, 257956.864599999040365 ], [ 350458.840899996459484, 257940.505899999290705 ], [ 350451.636200003325939, 257934.325199998915195 ], [ 350442.028800003230572, 257926.225099999457598 ], [ 350438.726199999451637, 257935.275100000202656 ], [ 350446.737199999392033, 257941.46229999884963 ], [ 350455.531099997460842, 257950.400199998170137 ], [ 350461.911499999463558, 257958.685100000351667 ], [ 350468.270300000905991, 257969.502900000661612 ], [ 350469.857699997723103, 257972.471200000494719 ], [ 350473.803000003099442, 257982.635999999940395 ], [ 350472.9408999979496, 257989.172800000756979 ], [ 350470.496799997985363, 257992.108199998736382 ], [ 350476.887999996542931, 257999.126499999314547 ], [ 350478.522200003266335, 257996.606800001114607 ], [ 350480.966300003230572, 257993.671500001102686 ], [ 350482.690399996936321, 257980.597800001502037 ], [ 350481.103000000119209, 257977.62950000166893 ], [ 350478.747000001370907, 257970.221900001168251 ], [ 350477.163099996745586, 257966.831500001251698 ], [ 350471.603399999439716, 257956.864599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-5887-T95", "PARCEL_NAM": "3C-138 GREENBELT", "ACRE": ".018", "LONGITUDE": -65.00900549000001, "LATITUDE": 18.35151275, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.79208703800001, "SHAPE_Area": 752.99939478700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350543.847199998795986, 257900.882800001651049 ], [ 350529.200499996542931, 257916.383799999952316 ], [ 350530.793300002813339, 257918.718899998813868 ], [ 350531.583400003612041, 257920.625199999660254 ], [ 350533.13849999755621, 257927.392900001257658 ], [ 350534.49040000140667, 257958.012600000947714 ], [ 350536.839199997484684, 257966.264400001615286 ], [ 350539.236599996685982, 257968.817200001329184 ], [ 350542.41330000013113, 257974.542700000107288 ], [ 350546.387299999594688, 257981.330200001597404 ], [ 350543.847199998795986, 257900.882800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403045200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00986896000001, "LATITUDE": 18.35174505, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.582285875, "SHAPE_Area": 1056.8173609099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350469.857699997723103, 257972.471200000494719 ], [ 350468.270300000905991, 257969.502900000661612 ], [ 350461.911499999463558, 257958.685100000351667 ], [ 350455.531099997460842, 257950.400199998170137 ], [ 350446.737199999392033, 257941.46229999884963 ], [ 350438.726199999451637, 257935.275100000202656 ], [ 350431.106200002133846, 257977.85359999909997 ], [ 350455.257799997925758, 257982.484200000762939 ], [ 350469.857699997723103, 257972.471200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01115312, "LATITUDE": 18.35172472, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.521796649, "SHAPE_Area": 855.29234259099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350327.919799998402596, 257974.475900001823902 ], [ 350321.751599997282028, 257941.2837999984622 ], [ 350307.214599996805191, 257943.909000001847744 ], [ 350296.728900000452995, 257944.245400000363588 ], [ 350303.687200002372265, 257979.343800000846386 ], [ 350327.919799998402596, 257974.475900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02654296, "LATITUDE": 18.34922927, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1434.3608069, "SHAPE_Area": 6739.8685371900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348756.555900000035763, 257566.659000001847744 ], [ 348743.45889999717474, 257589.561000000685453 ], [ 348741.004000000655651, 257593.762800000607967 ], [ 348738.536499999463558, 257599.442099999636412 ], [ 348730.387100003659725, 257609.50789999961853 ], [ 348727.140299998223782, 257612.014499999582767 ], [ 348698.739500001072884, 257632.891399998217821 ], [ 348673.585600003600121, 257651.261700000613928 ], [ 348670.354999996721745, 257651.868599999696016 ], [ 348667.945000000298023, 257650.793400000780821 ], [ 348667.964800000190735, 257648.471500001847744 ], [ 348662.592100001871586, 257616.552400000393391 ], [ 348657.223099999129772, 257584.211199998855591 ], [ 348653.421700000762939, 257557.160100001841784 ], [ 348648.047200001776218, 257525.452100001275539 ], [ 348648.063400000333786, 257523.552299998700619 ], [ 348648.887699998915195, 257521.44819999858737 ], [ 348652.944399997591972, 257518.526000000536442 ], [ 348674.741800002753735, 257515.537999998778105 ], [ 348701.382500000298023, 257511.956399999558926 ], [ 348722.373599998652935, 257508.961800001561642 ], [ 348723.964699998497963, 257511.50789999961853 ], [ 348730.424099996685982, 257510.505300000309944 ], [ 348731.253799997270107, 257507.767900001257658 ], [ 348749.820600003004074, 257505.386799998581409 ], [ 348747.480800002813339, 257496.079500000923872 ], [ 348732.142899997532368, 257498.064899999648333 ], [ 348728.105899997055531, 257498.665100000798702 ], [ 348701.46339999884367, 257502.457899998873472 ], [ 348672.398400001227856, 257506.652899999171495 ], [ 348652.215400002896786, 257509.44310000166297 ], [ 348646.547899998724461, 257512.140900000929832 ], [ 348643.308200001716614, 257513.803100001066923 ], [ 348640.860500000417233, 257517.160599999129772 ], [ 348640.020000003278255, 257521.164500001817942 ], [ 348638.403800003230572, 257521.573399998247623 ], [ 348645.243500001728535, 257570.603100001811981 ], [ 348649.827799998223782, 257600.404800001531839 ], [ 348653.629199996590614, 257627.455899998545647 ], [ 348658.195500001311302, 257659.368400000035763 ], [ 348662.788800001144409, 257688.114700000733137 ], [ 348667.373199999332428, 257717.916499998420477 ], [ 348671.959299996495247, 257747.507100000977516 ], [ 348676.523900002241135, 257779.630699999630451 ], [ 348681.120800003409386, 257807.954799998551607 ], [ 348684.94370000064373, 257832.473000001162291 ], [ 348691.03999999910593, 257874.108300000429153 ], [ 348690.975299999117851, 257881.707100000232458 ], [ 348670.933300003409386, 257962.603000000119209 ], [ 348674.995399996638298, 257959.047699999064207 ], [ 348686.346699997782707, 257951.752300001680851 ], [ 348683.940399996936321, 257950.254999998956919 ], [ 348683.961900003254414, 257947.721999999135733 ], [ 348696.49719999730587, 257896.106699999421835 ], [ 348699.826700001955032, 257883.890500001609325 ], [ 348699.909400001168251, 257874.180900000035763 ], [ 348697.607400000095367, 257860.440999999642372 ], [ 348692.247299998998642, 257827.044300001114607 ], [ 348687.700699999928474, 257792.809900000691414 ], [ 348683.87780000269413, 257768.291799999773502 ], [ 348680.843099996447563, 257745.891100000590086 ], [ 348677.027400001883507, 257720.528599999845028 ], [ 348673.224200002849102, 257693.6886 ], [ 348669.437100000679493, 257664.948899999260902 ], [ 348671.071400001645088, 257662.429099999368191 ], [ 348680.779500000178814, 257658.70890000090003 ], [ 348682.401100002229214, 257657.666700001806021 ], [ 348688.891099996864796, 257653.075800001621246 ], [ 348705.118100002408028, 257641.387299999594688 ], [ 348723.780199997127056, 257627.818999998271465 ], [ 348733.517099998891354, 257620.721500001847744 ], [ 348740.840400002896786, 257612.971000000834465 ], [ 348747.351999998092651, 257605.847100000828505 ], [ 348749.814099997282028, 257600.800999999046326 ], [ 348752.258199997246265, 257597.865699999034405 ], [ 348753.910400003194809, 257593.235199999064207 ], [ 348757.133900001645088, 257593.472600001841784 ], [ 348762.050899997353554, 257584.224800001829863 ], [ 348760.456200003623962, 257582.10080000013113 ], [ 348768.648800000548363, 257566.969099998474121 ], [ 348767.99719999730587, 257548.80970000103116 ], [ 348757.374799996614456, 257565.188099998980761 ], [ 348756.555900000035763, 257566.659000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97463965, "LATITUDE": 18.35113539, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 968.259357851, "SHAPE_Area": 4310.0457370100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354233.069099999964237, 257985.539500001817942 ], [ 354218.622000001370907, 257977.610800001770258 ], [ 354205.755199998617172, 257973.494699999690056 ], [ 354177.693499997258186, 257975.089400000870228 ], [ 354168.028499998152256, 257973.74379999935627 ], [ 354157.546499997377396, 257973.657999999821186 ], [ 354143.819399997591972, 257975.86769999936223 ], [ 354137.368900001049042, 257975.814899999648333 ], [ 354131.737300001084805, 257974.29109999909997 ], [ 354126.928199999034405, 257970.874299999326468 ], [ 354123.724500000476837, 257968.314899999648333 ], [ 354120.526199996471405, 257965.122299998998642 ], [ 354115.753100000321865, 257957.483899999409914 ], [ 354111.800700001418591, 257948.163400001823902 ], [ 354109.432099997997284, 257942.233399998396635 ], [ 354107.077899999916553, 257934.614799998700619 ], [ 354103.172200001776218, 257919.80629999935627 ], [ 354098.381099998950958, 257914.278599999845028 ], [ 354082.3699000030756, 257900.637600000947714 ], [ 354082.396899998188019, 257897.471400000154972 ], [ 354085.629299998283386, 257896.653499998152256 ], [ 354124.913800001144409, 257923.361699998378754 ], [ 354134.557199999690056, 257927.240299999713898 ], [ 354141.808600001037121, 257927.93299999833107 ], [ 354151.489799998700619, 257927.378899998962879 ], [ 354166.042999997735023, 257922.853999998420477 ], [ 354179.807800002396107, 257916.211599998176098 ], [ 354197.661799997091293, 257902.847800001502037 ], [ 354217.104999996721745, 257892.241099998354912 ], [ 354238.137500002980232, 257884.391699999570847 ], [ 354265.613200001418591, 257877.439399998635054 ], [ 354287.33500000089407, 257878.279100000858307 ], [ 354302.278200000524521, 257874.026099998503923 ], [ 354310.740500003099442, 257860.363400001078844 ], [ 354303.553800001740456, 257852.071899998933077 ], [ 354301.059299997985363, 257860.917399998754263 ], [ 354298.616999998688698, 257863.641699999570847 ], [ 354288.095399998128414, 257868.199599999934435 ], [ 354260.0337999984622, 257869.794399999082088 ], [ 354236.602099999785423, 257875.302099999040365 ], [ 354216.381399996578693, 257882.524900000542402 ], [ 354196.1300999969244, 257893.335999999195337 ], [ 354174.224799998104572, 257908.988800000399351 ], [ 354166.12389999628067, 257913.355399999767542 ], [ 354158.0337999984622, 257916.455600000917912 ], [ 354144.303099997341633, 257919.087400000542402 ], [ 354137.049900002777576, 257918.605900000780821 ], [ 354129.818300001323223, 257915.591400001198053 ], [ 354089.72919999808073, 257888.665500000119209 ], [ 354082.48139999806881, 257887.550700001418591 ], [ 354076.002099998295307, 257890.875199999660254 ], [ 354073.552599996328354, 257894.44370000064373 ], [ 354072.719300001859665, 257897.603300001472235 ], [ 354074.27080000191927, 257904.793200001120567 ], [ 354092.679300002753735, 257920.986999999731779 ], [ 354095.073100000619888, 257923.961899999529123 ], [ 354099.756300002336502, 257942.154199998825788 ], [ 354105.270999997854233, 257957.39809999987483 ], [ 354106.871100001037121, 257958.888900000602007 ], [ 354109.241499997675419, 257964.607799999415874 ], [ 354111.642399996519089, 257966.738400001078844 ], [ 354115.614600002765656, 257973.736999999731779 ], [ 354117.214699998497963, 257975.227699998766184 ], [ 354122.016599997878075, 257979.488899998366833 ], [ 354129.242799997329712, 257983.136599998921156 ], [ 354134.877999998629093, 257984.238200001418591 ], [ 354136.487099997699261, 257984.673599999397993 ], [ 354142.937600001692772, 257984.726399999111891 ], [ 354159.081799998879433, 257982.747600000351667 ], [ 354172.783699996769428, 257983.493000000715256 ], [ 354188.533500000834465, 257983.203999999910593 ], [ 354203.208499997854233, 257988.461500000208616 ], [ 354216.912299998104572, 257988.995799999684095 ], [ 354220.13570000231266, 257989.233300000429153 ], [ 354232.215999998152256, 257991.020899999886751 ], [ 354242.671099998056889, 257994.272900000214577 ], [ 354233.069099999964237, 257985.539500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403023000", "MAP": null, "PARCEL_NAM": "3C-96", "ACRE": null, "LONGITUDE": -65.01172374, "LATITUDE": 18.35140839, "OBJECTID_1": 1665, "PARCEL_NO_": "102403023000", "Tax_Legal_": "FORTUNA 3C-96 WESTEND QTR.", "Name": "HARLEY, TAI M. & CHERYL GEORGE CHANCE", "Address": "PO Box 1503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.72788473099999, "SHAPE_Area": 1033.66767985 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350271.977799996733665, 257915.334100000560284 ], [ 350243.809000000357628, 257908.981800001114607 ], [ 350232.540399998426437, 257906.567499998956919 ], [ 350233.296400003135204, 257912.484299998730421 ], [ 350239.473600000143051, 257944.621100001037121 ], [ 350254.85639999806881, 257937.358800001442432 ], [ 350266.967299997806549, 257935.55799999833107 ], [ 350269.387999996542931, 257935.366799999028444 ], [ 350275.032200001180172, 257935.412900000810623 ], [ 350271.977799996733665, 257915.334100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044800", "MAP": "D9-9103-T016", "PARCEL_NAM": "55 REM", "ACRE": "2.238", "LONGITUDE": -65.00341983, "LATITUDE": 18.35093768, "OBJECTID_1": 1940, "PARCEL_NO_": "102404044800", "Tax_Legal_": "FORTUNA 55 WEST END QTR", "Name": "ZOE BUILDING ENTERPRISES, INC", "Address": "PO Box 10805", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.73398660599997, "SHAPE_Area": 8987.9015163200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351217.928000003099442, 257874.788800001144409 ], [ 351120.919799998402596, 257827.749699998646975 ], [ 351064.268500000238419, 257853.6266999989748 ], [ 351104.407999999821186, 257942.460400000214577 ], [ 351120.500299997627735, 257932.867400001734495 ], [ 351155.987499997019768, 257911.712699998170137 ], [ 351180.928900003433228, 257896.844700001180172 ], [ 351217.928000003099442, 257874.788800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01936691, "LATITUDE": 18.3514074, "OBJECTID_1": 1248, "PARCEL_NO_": "102304011800", "Tax_Legal_": "BORDEAUX 99 WEST END QTR", "Name": "CORTIJO, NORMA", "Address": "P.O. BOX 3412", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29800, "Improved_V": 151600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.51926148800001, "SHAPE_Area": 1312.89098646 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349467.304899998009205, 257905.581799998879433 ], [ 349431.881099998950958, 257898.959100000560284 ], [ 349417.114000000059605, 257928.602400001138449 ], [ 349463.005400002002716, 257936.999499998986721 ], [ 349467.304899998009205, 257905.581799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0063277, "LATITUDE": 18.35121569, "OBJECTID_1": 1890, "PARCEL_NO_": "102404032300", "Tax_Legal_": "FORTUNA 34 WEST END QTR", "Name": "O SULLIVAN, RENEE BENNETT", "Address": "14 Denton Rd", "City": "Wellesley", "State": "Massachusetts", "Zip": 2482, "Country": "United States", "Land_Value": 109400, "Improved_V": 266900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.57127002300001, "SHAPE_Area": 4323.0192431900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350847.25620000064373, 257875.712799999862909 ], [ 350845.863099999725819, 257871.342000000178814 ], [ 350823.511799998581409, 257874.210299998521805 ], [ 350815.329636291426141, 257877.636052907793783 ], [ 350807.239900000393391, 257881.274700000882149 ], [ 350790.695658190757968, 257888.523695048148511 ], [ 350774.457900002598763, 257896.435400001704693 ], [ 350770.646377554745413, 257898.319173428229988 ], [ 350767.060535182536114, 257900.603476423566462 ], [ 350763.742299996316433, 257903.261599998921156 ], [ 350763.494146297802217, 257905.532418334187241 ], [ 350763.549539586703759, 257907.81608375479118 ], [ 350763.907499998807907, 257910.072200000286102 ], [ 350861.162000000476837, 257947.176199998706579 ], [ 350869.246699996292591, 257944.709300000220537 ], [ 350847.25620000064373, 257875.712799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00573797, "LATITUDE": 18.35116011, "OBJECTID_1": 1889, "PARCEL_NO_": "102404032200", "Tax_Legal_": "FORTUNA 35 WEST END QTR", "Name": "HABTEYES, YEGIN & LOIS H", "Address": "PO Box 305221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 122200, "Improved_V": 331500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.20614550300002, "SHAPE_Area": 4293.7618725599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350913.451200000941753, 257867.177499998360872 ], [ 350913.436700001358986, 257861.570599999278784 ], [ 350892.965000003576279, 257865.558400001376867 ], [ 350878.267735610541422, 257867.322479008784285 ], [ 350863.596199996769428, 257869.289099998772144 ], [ 350845.863099999725819, 257871.342000000178814 ], [ 350847.25620000064373, 257875.712799999862909 ], [ 350869.246699996292591, 257944.709300000220537 ], [ 350913.638899996876717, 257939.795299999415874 ], [ 350913.451200000941753, 257867.177499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01835282, "LATITUDE": 18.35130679, "OBJECTID_1": 1279, "PARCEL_NO_": "102304022800", "Tax_Legal_": "BORDEAUX 64 WEST END QTR", "Name": "SMITH, ANGEL & THYRA", "Address": "BOX 3114", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29200, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.240890218, "SHAPE_Area": 1176.9827195299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349575.2483000010252, 257918.497600000351667 ], [ 349555.365599997341633, 257886.037500001490116 ], [ 349540.004299998283386, 257890.767000000923872 ], [ 349534.336800001561642, 257893.464800000190735 ], [ 349529.462899997830391, 257897.646800000220537 ], [ 349526.198100000619888, 257902.26410000026226 ], [ 349559.804300002753735, 257932.936599999666214 ], [ 349566.319499999284744, 257925.390599999576807 ], [ 349575.2483000010252, 257918.497600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01684911, "LATITUDE": 18.35136173, "OBJECTID_1": 1283, "PARCEL_NO_": "102304024000", "Tax_Legal_": "BORDEAUX 70 WEST END QTR", "Name": "ALLEN, ALGERNON A", "Address": "PO Box 305526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25400, "Improved_V": 89500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.96447109900001, "SHAPE_Area": 1121.8354961 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349708.548799999058247, 257889.191100001335144 ], [ 349687.289800003170967, 257923.636500000953674 ], [ 349702.555799998342991, 257930.094200000166893 ], [ 349714.621699996292591, 257933.570500001311302 ], [ 349721.873099997639656, 257934.263099998235703 ], [ 349725.931599996984005, 257931.129900000989437 ], [ 349727.583800002932549, 257926.499400001019239 ], [ 349728.417099997401237, 257923.339800000190735 ], [ 349728.5033999979496, 257913.208000000566244 ], [ 349726.133000001311302, 257907.489100001752377 ], [ 349715.7516999989748, 257895.582899998873472 ], [ 349711.752499997615814, 257891.750500001013279 ], [ 349708.548799999058247, 257889.191100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01137162000001, "LATITUDE": 18.3513158, "OBJECTID_1": 1675, "PARCEL_NO_": "102403024000", "Tax_Legal_": "FORTUNA 3C-106 WESTEND QTR.", "Name": "WALKER, GEORGE & RALPH, VERLIN", "Address": "2041 Palm Straede 16-F", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.067049599, "SHAPE_Area": 1167.1971740399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350287.52250000089407, 257889.074599999934435 ], [ 350271.977799996733665, 257915.334100000560284 ], [ 350275.032200001180172, 257935.412900000810623 ], [ 350302.450400002300739, 257935.215199999511242 ], [ 350300.170000001788139, 257918.942299999296665 ], [ 350310.812100000679493, 257900.24210000038147 ], [ 350293.940600000321865, 257892.92680000141263 ], [ 350287.52250000089407, 257889.074599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01106872, "LATITUDE": 18.35135496, "OBJECTID_1": 1676, "PARCEL_NO_": "102403024100", "Tax_Legal_": "FORTUNA 3C-107 WESTEND QTR.", "Name": "HART, CHERYL", "Address": "PO Box 303397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.52593712800001, "SHAPE_Area": 1082.5186079699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350310.812100000679493, 257900.24210000038147 ], [ 350300.170000001788139, 257918.942299999296665 ], [ 350302.450400002300739, 257935.215199999511242 ], [ 350329.909999996423721, 257930.162599999457598 ], [ 350346.85700000077486, 257928.612500000745058 ], [ 350343.781000003218651, 257911.066599998623133 ], [ 350324.468999996781349, 257906.264499999582767 ], [ 350310.812100000679493, 257900.24210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.005193, "LATITUDE": 18.35110152, "OBJECTID_1": 1888, "PARCEL_NO_": "102404032100", "Tax_Legal_": "FORTUNA 36 WEST END QTR", "Name": "DAVIS, BERIS D.", "Address": "PO Box 305046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 133700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.580151145, "SHAPE_Area": 4594.5195504699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350923.127599999308586, 257859.52589999884367 ], [ 350913.436700001358986, 257861.570599999278784 ], [ 350913.451200000941753, 257867.177499998360872 ], [ 350913.638899996876717, 257939.795299999415874 ], [ 350963.680600002408028, 257934.294199999421835 ], [ 350980.398500002920628, 257864.981300000101328 ], [ 350981.17960000038147, 257861.742899999022484 ], [ 350969.120445016073063, 257859.859137519553769 ], [ 350957.02080000191927, 257858.255899999290705 ], [ 350948.53666368604172, 257857.545390235871309 ], [ 350940.022863635153044, 257857.520857713563601 ], [ 350931.534773571416736, 257858.182461991760647 ], [ 350923.127599999308586, 257859.52589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "102403011700", "MAP": null, "PARCEL_NAM": "3A-4", "ACRE": null, "LONGITUDE": -65.01508015, "LATITUDE": 18.35121914, "OBJECTID_1": 1561, "PARCEL_NO_": "102403011700", "Tax_Legal_": "FORTUNA 3A-4 WEST END QTR", "Name": "ARTHUR'S LEGACY LLC", "Address": "PO Box 165", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 56500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.72182139099999, "SHAPE_Area": 2101.3824990500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349931.042499996721745, 257896.711599998176098 ], [ 349919.206699997186661, 257866.217300001531839 ], [ 349862.405199997127056, 257907.971099998801947 ], [ 349865.572899997234344, 257914.752000000327826 ], [ 349871.946099996566772, 257923.88120000064373 ], [ 349875.932700000703335, 257929.191199999302626 ], [ 349878.340899996459484, 257930.47749999910593 ], [ 349882.370600000023842, 257930.721500001847744 ], [ 349885.606700003147125, 257929.481499999761581 ], [ 349896.967000000178814, 257921.130699999630451 ], [ 349909.94709999859333, 257911.948800001293421 ], [ 349918.062399998307228, 257905.893500000238419 ], [ 349931.042499996721745, 257896.711599998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00941286, "LATITUDE": 18.35128825, "OBJECTID_1": 1685, "PARCEL_NO_": "102403025200", "Tax_Legal_": "FORTUNA 3C-126 WESTEND QTR.", "Name": "GEORGE, ALBION C. & MOELRAY", "Address": "PO Box 306012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.113387698, "SHAPE_Area": 1000.6495271700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350490.729400001466274, 257888.837900001555681 ], [ 350475.164899997413158, 257917.419199999421835 ], [ 350488.012000001966953, 257923.857200000435114 ], [ 350504.04110000282526, 257935.38740000128746 ], [ 350517.922899998724461, 257915.024999998509884 ], [ 350515.530900001525879, 257911.839000001549721 ], [ 350490.729400001466274, 257888.837900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028000", "MAP": null, "PARCEL_NAM": "15-5-A1", "ACRE": ".219", "LONGITUDE": -64.97518958000001, "LATITUDE": 18.35118564, "OBJECTID_1": 2762, "PARCEL_NO_": "102604028000", "Tax_Legal_": "15-5-REM AND 15-5-A (INCLUDING 15-5-A-1(GREENBELT) AND DRAINAGE EASEMENT \"A\" CROWN & HAWK NO.3 SOUT", "Name": "SOOKRAM, SIEWDATH", "Address": "6076-66 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 410000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.957270916, "SHAPE_Area": 1032.7311936799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354120.526199996471405, 257965.122299998998642 ], [ 354132.073600001633167, 257934.819400001317263 ], [ 354134.557199999690056, 257927.240299999713898 ], [ 354124.913800001144409, 257923.361699998378754 ], [ 354085.629299998283386, 257896.653499998152256 ], [ 354082.396899998188019, 257897.471400000154972 ], [ 354082.3699000030756, 257900.637600000947714 ], [ 354098.381099998950958, 257914.278599999845028 ], [ 354103.172200001776218, 257919.80629999935627 ], [ 354107.077899999916553, 257934.614799998700619 ], [ 354109.432099997997284, 257942.233399998396635 ], [ 354111.800700001418591, 257948.163400001823902 ], [ 354115.753100000321865, 257957.483899999409914 ], [ 354120.526199996471405, 257965.122299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304032800", "MAP": "G9-2003-T72", "PARCEL_NAM": "69", "ACRE": ".31", "LONGITUDE": -65.01710409, "LATITUDE": 18.35120464, "OBJECTID_1": 1311, "PARCEL_NO_": "102304032800", "Tax_Legal_": "BORDEAUX 69 NO.6 WEST END QTR", "Name": "ELWIN, DORIE A.", "Address": "PO Box 1593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32800, "Improved_V": 130700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.21891641, "SHAPE_Area": 1343.4476523599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349674.012199997901917, 257873.076400000602007 ], [ 349662.403800003230572, 257910.556099999696016 ], [ 349672.8462999984622, 257915.285599999129772 ], [ 349683.276199996471405, 257921.49269999936223 ], [ 349687.289800003170967, 257923.636500000953674 ], [ 349708.548799999058247, 257889.191100001335144 ], [ 349699.729699999094009, 257883.208299998193979 ], [ 349694.110699996352196, 257880.206999998539686 ], [ 349690.091700002551079, 257878.69649999961257 ], [ 349674.012199997901917, 257873.076400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102403010700", "MAP": "D9-5720-T94", "PARCEL_NAM": "ROW 3C-G", "ACRE": "0.15", "LONGITUDE": -65.01223664, "LATITUDE": 18.35132362, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.09897220900001, "SHAPE_Area": 634.53235714100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350232.540399998426437, 257906.567499998956919 ], [ 350224.493500001728535, 257904.601799998432398 ], [ 350196.227600000798702, 257909.647799998521805 ], [ 350171.980700001120567, 257916.2043999992311 ], [ 350163.908600002527237, 257917.193799998611212 ], [ 350166.250200003385544, 257926.28999999910593 ], [ 350175.132200002670288, 257924.885000001639128 ], [ 350199.375500001013279, 257918.750599998980761 ], [ 350227.643200002610683, 257913.493500001728535 ], [ 350233.296400003135204, 257912.484299998730421 ], [ 350232.540399998426437, 257906.567499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01886597, "LATITUDE": 18.35126876, "OBJECTID_1": 1278, "PARCEL_NO_": "102304022700", "Tax_Legal_": "BORDEAUX 84 WEST END QTR", "Name": "WELLS, ESME", "Address": "BOX 2574", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22600, "Improved_V": 101200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.47221510099999, "SHAPE_Area": 1110.1777378899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349519.034800000488758, 257891.22859999909997 ], [ 349478.742600001394749, 257888.154599998146296 ], [ 349475.303300000727177, 257913.246599998325109 ], [ 349513.950599998235703, 257920.106800001114607 ], [ 349515.60639999806881, 257915.054099999368191 ], [ 349518.10980000346899, 257905.153200000524521 ], [ 349519.034800000488758, 257891.22859999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01810906, "LATITUDE": 18.35120527, "OBJECTID_1": 1281, "PARCEL_NO_": "102304023000", "Tax_Legal_": "BORDEAUX 65 WEST END QTR", "Name": "PENN, BRENDALEY", "Address": "PO Box 7261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25900, "Improved_V": 24000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.575528558, "SHAPE_Area": 974.09748183199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349596.284400001168251, 257910.225999999791384 ], [ 349586.887299999594688, 257877.42960000038147 ], [ 349580.424199998378754, 257878.854400001466274 ], [ 349555.365599997341633, 257886.037500001490116 ], [ 349575.2483000010252, 257918.497600000351667 ], [ 349584.967200003564358, 257913.510899998247623 ], [ 349596.284400001168251, 257910.225999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604024500", "MAP": null, "PARCEL_NAM": "9X", "ACRE": null, "LONGITUDE": -64.97226664, "LATITUDE": 18.35108792, "OBJECTID_1": 2730, "PARCEL_NO_": "102604024500", "Tax_Legal_": "9X REM CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "TURBE, JEAN LESLIE & LORRAINE M.", "Address": "PO BOX 4554", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 104900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.46876575800002, "SHAPE_Area": 4580.4504621200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354475.608400002121925, 257911.741900000721216 ], [ 354454.193999998271465, 257869.770100001245737 ], [ 354416.043700002133846, 257899.222100000828505 ], [ 354404.681599996984005, 257907.783900000154972 ], [ 354375.458400003612041, 257930.554000001400709 ], [ 354383.413599997758865, 257943.284699998795986 ], [ 354380.070299997925758, 257953.194499999284744 ], [ 354376.101499997079372, 257963.248599998652935 ], [ 354373.459200002253056, 257975.922699999064207 ], [ 354374.240299999713898, 257978.884399998933077 ], [ 354408.295999996364117, 257956.787200000137091 ], [ 354439.925599999725819, 257935.514600001275539 ], [ 354457.766999997198582, 257923.628199998289347 ], [ 354475.608400002121925, 257911.741900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404046300", "MAP": "D9-27-T51", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -65.00364827, "LATITUDE": 18.34832705, "OBJECTID_1": 1955, "PARCEL_NO_": "102404046300", "Tax_Legal_": "FORTUNA 2 WEST END QTR", "Name": "DOWLING, WILLIAM JR. TRUSTEE", "Address": "90 Broad St", "City": "New York", "State": "New York", "Zip": 10004, "Country": "United States", "Land_Value": 4220600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3835.89687551, "SHAPE_Area": 482996.83331900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351699.782399997115135, 257663.575199998915195 ], [ 351690.164200000464916, 257656.741500001400709 ], [ 351666.093500003218651, 257642.612300001084805 ], [ 351660.515799999237061, 257634.75620000064373 ], [ 351656.500399999320507, 257632.823499999940395 ], [ 351636.554799996316433, 257607.751200001686811 ], [ 351626.94200000166893, 257600.284299999475479 ], [ 351625.386900000274181, 257593.516499999910593 ], [ 351623.794100001454353, 257591.181499999016523 ], [ 351621.393100000917912, 257589.050900001078844 ], [ 351610.939800001680851, 257585.587799999862909 ], [ 351604.561300002038479, 257577.091899998486042 ], [ 351603.796300001442432, 257572.230500001460314 ], [ 351597.426700003445148, 257562.679099999368191 ], [ 351597.460900001227856, 257558.668600000441074 ], [ 351602.318499997258186, 257556.386399999260902 ], [ 351603.13740000128746, 257554.915399998426437 ], [ 351603.171599999070168, 257550.904899999499321 ], [ 351601.5608000010252, 257550.680599998682737 ], [ 351599.935599997639656, 257552.144999999552965 ], [ 351599.109499998390675, 257554.460200000554323 ], [ 351595.088699996471405, 257553.160799998790026 ], [ 351595.072499997913837, 257555.060499999672174 ], [ 351593.432899996638298, 257558.213500000536442 ], [ 351590.204099997878075, 257558.609200000762939 ], [ 351586.996799997985363, 257556.471999999135733 ], [ 351587.025600001215935, 257553.094799999147654 ], [ 351589.466099999845028, 257550.581599999219179 ], [ 351588.699299998581409, 257545.93129999935627 ], [ 351589.541599996387959, 257541.716299999505281 ], [ 351589.563199996948242, 257539.183400001376867 ], [ 351585.562200002372265, 257535.561999998986721 ], [ 351583.929799996316433, 257537.870700001716614 ], [ 351583.901000000536442, 257541.247999999672174 ], [ 351579.862300001084805, 257542.059300001710653 ], [ 351580.639799997210503, 257545.443199999630451 ], [ 351579.012800000607967, 257547.118599999696016 ], [ 351581.348999999463558, 257556.848000001162291 ], [ 351576.530900001525879, 257554.4864999987185 ], [ 351574.155199997127056, 257549.40089999884367 ], [ 351575.792999997735023, 257546.458999998867512 ], [ 351574.191100001335144, 257545.179299999028444 ], [ 351574.212700001895428, 257542.646299999207258 ], [ 351577.502700001001358, 257535.073899999260902 ], [ 351577.526100002229214, 257532.329900000244379 ], [ 351571.928599998354912, 257526.7956000007689 ], [ 351569.558200001716614, 257521.076699998229742 ], [ 351562.333800002932549, 257517.2179000005126 ], [ 351560.7516999989748, 257513.616300001740456 ], [ 351558.347199998795986, 257511.907900001853704 ], [ 351555.929999999701977, 257511.677000001072884 ], [ 351555.143500000238419, 257509.348600000143051 ], [ 351553.54169999808073, 257508.068900000303984 ], [ 351548.67679999768734, 257511.195500001311302 ], [ 351544.648900002241135, 257510.740299999713898 ], [ 351541.412799999117851, 257511.980399999767542 ], [ 351538.191200003027916, 257511.531899999827147 ], [ 351534.175800003111362, 257509.59910000115633 ], [ 351527.725299999117851, 257509.546399999409914 ], [ 351523.681100003421307, 257510.990899998694658 ], [ 351519.622599996626377, 257514.124099999666214 ], [ 351517.218099996447563, 257512.415699999779463 ], [ 351517.255800001323223, 257507.982999999076128 ], [ 351510.043999999761581, 257502.646600000560284 ], [ 351510.00620000064373, 257507.079300001263618 ], [ 351507.569300003349781, 257509.170299999415874 ], [ 351504.342200003564358, 257509.355000000447035 ], [ 351499.524099998176098, 257506.993500001728535 ], [ 351496.268299996852875, 257510.555500000715256 ], [ 351476.967200003564358, 257504.486900001764297 ], [ 351472.958999998867512, 257501.709800001233816 ], [ 351468.133699998259544, 257500.192699998617172 ], [ 351463.319200001657009, 257497.409099999815226 ], [ 351458.481299996376038, 257497.369500000029802 ], [ 351446.442400000989437, 257490.727000001817942 ], [ 351440.855700001120567, 257483.926300000399351 ], [ 351439.271899998188019, 257480.535900000482798 ], [ 351439.340199999511242, 257472.514899998903275 ], [ 351444.998800002038479, 257470.872400000691414 ], [ 351448.200699999928474, 257473.642900001257658 ], [ 351447.423100002110004, 257470.25899999961257 ], [ 351441.823899999260902, 257464.9358000010252 ], [ 351443.477899998426437, 257460.094200000166893 ], [ 351433.88120000064373, 257450.727600000798702 ], [ 351429.865900002419949, 257448.794900000095367 ], [ 351421.075499996542931, 257439.434799998998642 ], [ 351421.104299999773502, 257436.057500001043081 ], [ 351418.696199998259544, 257434.771299999207258 ], [ 351416.275399997830391, 257434.962499998509884 ], [ 351412.227700002491474, 257436.829300001263618 ], [ 351411.460900001227856, 257432.178899999707937 ], [ 351412.290600001811981, 257429.441500000655651 ], [ 351413.930200003087521, 257426.288499999791384 ], [ 351413.94820000231266, 257424.177700001746416 ], [ 351412.348200000822544, 257422.686999998986721 ], [ 351409.119300000369549, 257423.082699999213219 ], [ 351407.521099999547005, 257421.380899999290705 ], [ 351407.539099998772144, 257419.270100001245737 ], [ 351409.968800000846386, 257418.023400001227856 ], [ 351409.182300001382828, 257415.695000000298023 ], [ 351410.017300002276897, 257412.324299998581409 ], [ 351409.225400000810623, 257410.629099998623133 ], [ 351407.616400003433228, 257410.19370000064373 ], [ 351406.792099997401237, 257412.297899998724461 ], [ 351405.195600003004074, 257410.385000001639128 ], [ 351401.943400003015995, 257413.52479999884963 ], [ 351397.949600003659725, 257409.059099998325109 ], [ 351394.735200002789497, 257407.76630000025034 ], [ 351392.2820999994874, 257411.756999999284744 ], [ 351392.238899998366833, 257416.822900000959635 ], [ 351391.416400000452995, 257418.715999998152256 ], [ 351388.984899997711182, 257420.173700001090765 ], [ 351386.5658999979496, 257420.153900001198053 ], [ 351384.159599997103214, 257418.656599998474121 ], [ 351383.371299996972084, 257416.539200000464916 ], [ 351386.639700002968311, 257411.499699998646975 ], [ 351383.480999998748302, 257403.663400001823902 ], [ 351383.538500003516674, 257396.908900000154972 ], [ 351381.927699998021126, 257396.684599999338388 ], [ 351379.483599998056889, 257399.619899999350309 ], [ 351377.878100000321865, 257398.76240000128746 ], [ 351376.308700002729893, 257393.683299999684095 ], [ 351377.204899996519089, 257383.135899998247623 ], [ 351375.608400002121925, 257381.223000001162291 ], [ 351369.94990000128746, 257382.865499999374151 ], [ 351369.075199998915195, 257390.879900000989437 ], [ 351365.893100000917912, 257385.787599999457598 ], [ 351365.934500001370907, 257380.932799998670816 ], [ 351361.902900002896786, 257380.89979999884963 ], [ 351363.623400002717972, 257368.248199999332428 ], [ 351358.043999999761581, 257360.603199999779463 ], [ 351359.689000003039837, 257356.81700000166893 ], [ 351356.496100001037121, 257352.991200000047684 ], [ 351354.885300002992153, 257352.7668999992311 ], [ 351350.877099998295307, 257349.989900000393391 ], [ 351349.262699998915195, 257350.187699999660254 ], [ 351346.818499997258186, 257353.122999999672174 ], [ 351347.583499997854233, 257357.984499998390675 ], [ 351347.504399999976158, 257367.271899998188019 ], [ 351342.639499999582767, 257370.398499999195337 ], [ 351337.80349999666214, 257370.147799998521805 ], [ 351338.669100001454353, 257363.188799999654293 ], [ 351337.889799997210503, 257360.016100000590086 ], [ 351336.2753000035882, 257360.213899999856949 ], [ 351334.711300000548363, 257354.501600001007318 ], [ 351333.112999998033047, 257352.799800001084805 ], [ 351330.740800000727177, 257347.291900001466274 ], [ 351328.330899998545647, 257346.216699998825788 ], [ 351325.100299999117851, 257346.823600001633167 ], [ 351322.724500000476837, 257341.737900000065565 ], [ 351321.120800003409386, 257340.669300001114607 ], [ 351318.701899997889996, 257340.649500001221895 ], [ 351313.822700001299381, 257345.464699998497963 ], [ 351312.993000000715256, 257348.202100001275539 ], [ 351311.378600001335144, 257348.399999998509884 ], [ 351309.774899996817112, 257347.331399999558926 ], [ 351303.295699998736382, 257350.655900001525879 ], [ 351301.688400000333786, 257350.009500000625849 ], [ 351304.134300000965595, 257346.863099999725819 ], [ 351304.16669999808073, 257343.063700001686811 ], [ 351299.370200000703335, 257338.169300001114607 ], [ 351295.329599998891354, 257339.191599998623133 ], [ 351293.720600001513958, 257338.756299998611212 ], [ 351293.752999998629093, 257334.956900000572205 ], [ 351292.151100002229214, 257333.677200000733137 ], [ 351287.31870000064373, 257333.004399999976158 ], [ 351286.530299998819828, 257330.886999998241663 ], [ 351284.107799999415874, 257331.289299998432398 ], [ 351281.661899998784065, 257334.435699999332428 ], [ 351278.420400001108646, 257336.309000000357628 ], [ 351281.606100000441074, 257340.979200001806021 ], [ 351282.374700002372265, 257345.418400000780821 ], [ 351288.760499998927116, 257353.070099998265505 ], [ 351288.692100003361702, 257361.091099999845028 ], [ 351291.085900001227856, 257364.065999999642372 ], [ 351290.263400003314018, 257365.959100000560284 ], [ 351285.425499998033047, 257365.91950000077486 ], [ 351276.532700002193451, 257368.590900000184774 ], [ 351269.268700003623962, 257369.375799998641014 ], [ 351247.503700003027916, 257368.564399998635054 ], [ 351237.820699997246265, 257369.329500000923872 ], [ 351228.166500002145767, 257366.717399999499321 ], [ 351216.885399997234344, 257365.780699998140335 ], [ 351215.299699999392033, 257362.601300001144409 ], [ 351216.118600003421307, 257361.130399998277426 ], [ 351216.181500002741814, 257353.742600001394749 ], [ 351212.157200001180172, 257352.865299999713898 ], [ 351207.313900001347065, 257353.45890000090003 ], [ 351206.453599996864796, 257359.784699998795986 ], [ 351202.398699998855591, 257362.495700001716614 ], [ 351199.965400002896786, 257364.164599999785423 ], [ 351187.084200002253056, 257361.737100001424551 ], [ 351181.456200003623962, 257359.791200000792742 ], [ 351175.810199998319149, 257359.9560999982059 ], [ 351174.206500001251698, 257358.887499999254942 ], [ 351169.368699997663498, 257358.847899999469519 ], [ 351166.958700001239777, 257357.772700000554323 ], [ 351164.528999999165535, 257359.019400000572205 ], [ 351162.918200001120567, 257358.795099999755621 ], [ 351160.517200000584126, 257356.664500001817942 ], [ 351154.856799997389317, 257358.51799999922514 ], [ 351153.256800003349781, 257357.027300000190735 ], [ 351149.232400000095367, 257356.149999998509884 ], [ 351147.632399998605251, 257354.659200001507998 ], [ 351142.00620000064373, 257352.502199999988079 ], [ 351138.822300001978874, 257347.620999999344349 ], [ 351134.819499999284744, 257344.210799999535084 ], [ 351132.456299997866154, 257337.64750000089407 ], [ 351130.847300000488758, 257337.212200000882149 ], [ 351125.994999997317791, 257338.861200001090765 ], [ 351117.168700002133846, 257333.722699999809265 ], [ 351116.375, 257332.238600000739098 ], [ 351113.167700000107288, 257330.101399999111891 ], [ 351105.921700000762939, 257328.775499999523163 ], [ 351102.721699997782707, 257325.793999999761581 ], [ 351098.69370000064373, 257325.338899999856949 ], [ 351097.064900003373623, 257327.225400000810623 ], [ 351098.652300000190735, 257330.19370000064373 ], [ 351095.436099998652935, 257329.111900001764297 ], [ 351084.950400002300739, 257329.44819999858737 ], [ 351076.095399998128414, 257327.686999998986721 ], [ 351070.476300001144409, 257324.685699999332428 ], [ 351063.302199997007847, 257314.916700001806021 ], [ 351057.672399997711182, 257313.18189999833703 ], [ 351056.889499999582767, 257310.431200001388788 ], [ 351054.494000002741814, 257307.667399998754263 ], [ 351052.076800003647804, 257307.436500001698732 ], [ 351049.645300000905991, 257308.894299998879433 ], [ 351047.224600002169609, 257309.08559999987483 ], [ 351043.20380000025034, 257307.786100000143051 ], [ 351044.841600000858307, 257304.844200000166893 ], [ 351046.49379999935627, 257300.213700000196695 ], [ 351041.672100000083447, 257298.274399999529123 ], [ 351039.253100000321865, 257298.254599999636412 ], [ 351035.185599997639656, 257302.44310000166297 ], [ 351031.150399997830391, 257302.832299999892712 ], [ 351029.546800002455711, 257301.763700000941753 ], [ 351027.961199998855591, 257298.584300000220537 ], [ 351022.31700000166893, 257298.538100000470877 ], [ 351020.720499999821186, 257296.625199999660254 ], [ 351019.11150000244379, 257296.189899999648333 ], [ 351013.452899999916553, 257297.832299999892712 ], [ 351008.625799998641014, 257296.526200000196695 ], [ 350999.038199998438358, 257286.104200001806021 ], [ 351001.575800001621246, 257272.192800000309944 ], [ 351001.662100002169609, 257262.061000000685453 ], [ 350994.462899997830391, 257255.247099999338388 ], [ 350989.639399997889996, 257253.518899999558926 ], [ 350987.238399997353554, 257251.388300001621246 ], [ 350984.853699997067451, 257247.357999999076128 ], [ 350981.662600003182888, 257243.321100000292063 ], [ 350975.195900000631809, 257245.168000001460314 ], [ 350967.161499999463558, 257241.724700000137091 ], [ 350963.128200002014637, 257241.902800001204014 ], [ 350959.910099998116493, 257241.0320999994874 ], [ 350955.901900000870228, 257238.255100000649691 ], [ 350952.66950000077486, 257239.072999998927116 ], [ 350951.821800000965595, 257243.92119999974966 ], [ 350948.618100002408028, 257241.361900001764297 ], [ 350945.3766999989748, 257243.235199999064207 ], [ 350936.512699998915195, 257242.529399998486042 ], [ 350933.244300000369549, 257247.568900000303984 ], [ 350941.316399998962879, 257246.579500000923872 ], [ 350946.118299998342991, 257250.840599998831749 ], [ 350945.28320000320673, 257254.211300000548363 ], [ 350942.867899999022484, 257253.769299998879433 ], [ 350941.248000003397465, 257254.600499998778105 ], [ 350941.231899999082088, 257256.500199999660254 ], [ 350939.610200002789497, 257257.542399998754263 ], [ 350937.945500001311302, 257263.650400001555681 ], [ 350940.346400000154972, 257265.780999999493361 ], [ 350941.908699996769428, 257271.7043999992311 ], [ 350934.630300000309944, 257274.177999999374151 ], [ 350934.605099998414516, 257277.133099999278784 ], [ 350929.770900003612041, 257276.671300001442432 ], [ 350922.496100001037121, 257278.722699999809265 ], [ 350916.859099999070168, 257277.83219999819994 ], [ 350911.187899999320507, 257280.952199999243021 ], [ 350910.394199997186661, 257279.468100000172853 ], [ 350916.108499996364117, 257271.282200001180172 ], [ 350916.939999997615814, 257268.333700001239777 ], [ 350918.532799996435642, 257270.668699998408556 ], [ 350920.958999998867512, 257269.844200000166893 ], [ 350921.777900002896786, 257268.3733000010252 ], [ 350921.824600003659725, 257262.885200001299381 ], [ 350924.270499996840954, 257259.738800000399351 ], [ 350923.483999997377396, 257257.410399999469519 ], [ 350917.875799998641014, 257253.142599999904633 ], [ 350917.123400002717972, 257246.803599998354912 ], [ 350913.921499997377396, 257244.03319999948144 ], [ 350911.493600003421307, 257245.068799998611212 ], [ 350913.88740000128746, 257248.043699998408556 ], [ 350913.037900000810623, 257253.103000000119209 ], [ 350910.619000002741814, 257253.083200000226498 ], [ 350908.214400000870228, 257251.374800000339746 ], [ 350908.192800000309944, 257253.907699998468161 ], [ 350911.387500002980232, 257257.52250000089407 ], [ 350910.568599998950958, 257258.993400000035763 ], [ 350908.142499998211861, 257259.817899998277426 ], [ 350910.530799999833107, 257263.426100000739098 ], [ 350906.48309999704361, 257265.29280000180006 ], [ 350899.222699999809265, 257265.655499998480082 ], [ 350896.818099997937679, 257263.94709999859333 ], [ 350895.203699998557568, 257264.144999999552965 ], [ 350894.375799998641014, 257266.671300001442432 ], [ 350891.962300002574921, 257266.018300000578165 ], [ 350889.523599997162819, 257268.32039999961853 ], [ 350887.966700002551079, 257261.763700000941753 ], [ 350879.11879999935627, 257259.15819999948144 ], [ 350871.104299999773502, 257253.393100000917912 ], [ 350867.887999996542931, 257252.311299998313189 ], [ 350866.286200001835823, 257251.031599998474121 ], [ 350863.910400003194809, 257245.945900000631809 ], [ 350858.293200001120567, 257242.733500000089407 ], [ 350855.870600000023842, 257243.135899998247623 ], [ 350852.614799998700619, 257246.697900000959635 ], [ 350853.387000001966953, 257250.714899998158216 ], [ 350854.978000000119209, 257253.261100001633167 ], [ 350856.567299999296665, 257256.018300000578165 ], [ 350847.672600001096725, 257258.900800000876188 ], [ 350844.445600003004074, 257259.085499998182058 ], [ 350842.849200002849102, 257257.172600001096725 ], [ 350846.094200000166893, 257254.877099998295307 ], [ 350846.925700001418591, 257251.928599998354912 ], [ 350836.432800002396107, 257253.109299998730421 ], [ 350832.420999996364117, 257250.754399999976158 ], [ 350828.396700002253056, 257249.877099998295307 ], [ 350827.67849999666214, 257239.527699999511242 ], [ 350824.480200000107288, 257236.335099998861551 ], [ 350820.452200002968311, 257235.879900000989437 ], [ 350818.024300001561642, 257236.915500000119209 ], [ 350815.574799999594688, 257240.484099999070168 ], [ 350819.428300000727177, 257261.413899999111891 ], [ 350823.420299999415874, 257266.090599998831749 ], [ 350823.395199999213219, 257269.045699998736382 ], [ 350821.751999996602535, 257272.620900001376867 ], [ 350819.325800001621246, 257273.44539999961853 ], [ 350812.877099998295307, 257273.181499999016523 ], [ 350801.606700003147125, 257270.978300001472235 ], [ 350789.517399996519089, 257270.246100001037121 ], [ 350783.093900002539158, 257267.027100000530481 ], [ 350771.029799997806549, 257263.339800000190735 ], [ 350756.528800003230572, 257261.743400000035763 ], [ 350751.7179000005126, 257258.53770000115037 ], [ 350749.351099997758865, 257252.396600000560284 ], [ 350746.941100001335144, 257251.321400001645088 ], [ 350744.484399996697903, 257255.734299998730421 ], [ 350742.868199996650219, 257256.143199998885393 ], [ 350742.085299998521805, 257253.392599999904633 ], [ 350728.428300000727177, 257247.370200000703335 ], [ 350722.791299998760223, 257246.479699999094009 ], [ 350709.137900002300739, 257240.035100001841784 ], [ 350559.398299999535084, 257779.209100000560284 ], [ 350616.590800002217293, 257786.221099998801947 ], [ 350623.026900000870228, 257787.962499998509884 ], [ 350627.841399997472763, 257790.746100001037121 ], [ 350637.452399998903275, 257798.424199998378754 ], [ 350642.225500002503395, 257806.062600001692772 ], [ 350643.017499998211861, 257807.757800001651049 ], [ 350644.585100002586842, 257813.048000000417233 ], [ 350649.243199996650219, 257834.195500001311302 ], [ 350718.877400003373623, 257800.568199999630451 ], [ 350756.932300001382828, 257782.30350000038743 ], [ 350799.846699997782707, 257761.545299999415874 ], [ 350871.098899997770786, 257727.298099998384714 ], [ 350881.695600003004074, 257722.166600000113249 ], [ 350902.371399998664856, 257730.82660000026226 ], [ 350931.507399998605251, 257743.030099999159575 ], [ 350976.498700000345707, 257761.874499998986721 ], [ 351039.393200002610683, 257788.217599999159575 ], [ 351107.927400000393391, 257821.449700001627207 ], [ 351120.919799998402596, 257827.749699998646975 ], [ 351217.928000003099442, 257874.788800001144409 ], [ 351236.189400002360344, 257863.902800001204014 ], [ 351250.491599999368191, 257869.725000001490116 ], [ 351287.45610000193119, 257884.804099999368191 ], [ 351336.473899997770786, 257904.836899999529123 ], [ 351400.759499996900558, 257931.116500001400709 ], [ 351546.744499996304512, 257832.675200000405312 ], [ 351755.83049999922514, 257710.2635000012815 ], [ 351750.423100002110004, 257703.984999999403954 ], [ 351745.438299998641014, 257699.623700000345707 ], [ 351733.435300000011921, 257688.759700000286102 ], [ 351720.595499999821186, 257681.477400001138449 ], [ 351713.398000001907349, 257674.452399998903275 ], [ 351699.782399997115135, 257663.575199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044600", "MAP": "B9-147-T66", "PARCEL_NAM": "77-14", "ACRE": null, "LONGITUDE": -65.00298928, "LATITUDE": 18.35124628, "OBJECTID_1": 1938, "PARCEL_NO_": "102404044600", "Tax_Legal_": "FORTUNA 77-14 WEST END QTR", "Name": "HATCHETTE, JEAN A & OTHERS", "Address": "P.O. BOX 2724", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.816047603, "SHAPE_Area": 682.675852136 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351180.928900003433228, 257896.844700001180172 ], [ 351155.987499997019768, 257911.712699998170137 ], [ 351167.738799996674061, 257928.787200000137091 ], [ 351182.299199998378754, 257923.417899999767542 ], [ 351196.040700003504753, 257919.519600000232458 ], [ 351180.928900003433228, 257896.844700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403023100", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-99", "ACRE": "0.27", "LONGITUDE": -65.01279171, "LATITUDE": 18.35117969, "OBJECTID_1": 1666, "PARCEL_NO_": "102403023100", "Tax_Legal_": "FORTUNA PLOT #99 PARCEL 3C WESTEND QTR", "Name": "BATTISTE, LEON L", "Address": "PO Box 306773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33300, "Improved_V": 231400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.768678317, "SHAPE_Area": 995.34410385399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350151.892300002276897, 257881.56870000064373 ], [ 350150.060199998319149, 257875.126499999314547 ], [ 350144.889700002968311, 257877.985800001770258 ], [ 350125.413699999451637, 257888.700599998235703 ], [ 350123.596199996769428, 257890.653000000864267 ], [ 350121.943899996578693, 257894.901599999517202 ], [ 350121.865299999713898, 257898.678100001066923 ], [ 350123.533500000834465, 257905.982099998742342 ], [ 350129.269500002264977, 257913.110599998384714 ], [ 350135.693000003695488, 257916.329599998891354 ], [ 350139.710199996829033, 257918.051199998706579 ], [ 350148.57599999755621, 257918.545899998396635 ], [ 350149.216600000858307, 257918.495299998670816 ], [ 350155.460400000214577, 257894.114799998700619 ], [ 350151.892300002276897, 257881.56870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403023200", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-98", "ACRE": "0.26", "LONGITUDE": -65.01255698, "LATITUDE": 18.35120693, "OBJECTID_1": 1667, "PARCEL_NO_": "102403023200", "Tax_Legal_": "FORTUNA PLOT #98 PARCEL 3C WESTEND QTR", "Name": "COATES, MILLENTINE A.", "Address": "Bovoni Bldg. C Apt 193", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28100, "Improved_V": 62200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.511714838, "SHAPE_Area": 770.25641434900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350183.591899998486042, 257895.586399998515844 ], [ 350151.380699999630451, 257879.769900001585484 ], [ 350151.892300002276897, 257881.56870000064373 ], [ 350155.460400000214577, 257894.114799998700619 ], [ 350149.216600000858307, 257918.495299998670816 ], [ 350158.25900000333786, 257917.780799999833107 ], [ 350163.908600002527237, 257917.193799998611212 ], [ 350171.980700001120567, 257916.2043999992311 ], [ 350182.624600000679493, 257897.293099999427795 ], [ 350183.591899998486042, 257895.586399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404046200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00754575000001, "LATITUDE": 18.35080684, "OBJECTID_1": 1954, "PARCEL_NO_": "102404046200", "Tax_Legal_": "FORTUNA 11 WEST END QTR", "Name": "THELONIOUS LLC", "Address": "30 Broad St", "City": "New York", "State": "New York", "Zip": 10004, "Country": "United States", "Land_Value": 174700, "Improved_V": 707200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 325.005428677, "SHAPE_Area": 6104.4901993399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350649.243199996650219, 257834.195500001311302 ], [ 350656.244699999690056, 257864.228100001811981 ], [ 350664.952299997210503, 257883.297699999064207 ], [ 350666.543300002813339, 257885.843899998813868 ], [ 350671.325400002300739, 257892.426899999380112 ], [ 350677.722000002861023, 257898.812100000679493 ], [ 350712.213600002229214, 257920.203699998557568 ], [ 350716.239799998700619, 257920.870000001043081 ], [ 350720.267800003290176, 257921.325100000947714 ], [ 350728.354299999773502, 257918.647100001573563 ], [ 350718.877400003373623, 257800.568199999630451 ], [ 350649.243199996650219, 257834.195500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403023400", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-97", "ACRE": "0.26", "LONGITUDE": -65.01220915, "LATITUDE": 18.3511467, "OBJECTID_1": 1669, "PARCEL_NO_": "102403023400", "Tax_Legal_": "FORTUNA PLOT #97 PARCEL 3C WESTEND QTR", "Name": "JOHN J. & VERNA J. HENDERSON REVOC FAMILY TRUST", "Address": "Po Box 305864", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36500, "Improved_V": 283800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.189596757, "SHAPE_Area": 1242.9536022299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350196.227600000798702, 257909.647799998521805 ], [ 350224.493500001728535, 257904.601799998432398 ], [ 350226.995899997651577, 257905.213100001215935 ], [ 350220.266000002622604, 257882.985399998724461 ], [ 350197.355800002813339, 257871.871300000697374 ], [ 350195.723399996757507, 257874.179999999701977 ], [ 350182.624600000679493, 257897.293099999427795 ], [ 350171.980700001120567, 257916.2043999992311 ], [ 350196.227600000798702, 257909.647799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303013300", "MAP": "A9-512-T98", "PARCEL_NAM": "5-53", "ACRE": ".02", "LONGITUDE": -65.02628621, "LATITUDE": 18.35109712, "OBJECTID_1": 1210, "PARCEL_NO_": "102303013300", "Tax_Legal_": "FORTUNA 5-53 WESTEND QTR.", "Name": "SMITH, MURIEL A", "Address": "PO Box 846", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.05188486, "SHAPE_Area": 1190.68657106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348730.707599997520447, 257855.856699999421835 ], [ 348697.607400000095367, 257860.440999999642372 ], [ 348699.909400001168251, 257874.180900000035763 ], [ 348699.826700001955032, 257883.890500001609325 ], [ 348696.49719999730587, 257896.106699999421835 ], [ 348720.623599998652935, 257903.692400000989437 ], [ 348724.770300000905991, 257890.216400001198053 ], [ 348727.266500003635883, 257881.159800000488758 ], [ 348728.108800001442432, 257876.94480000063777 ], [ 348728.965499997138977, 257871.041200000792742 ], [ 348730.707599997520447, 257855.856699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403011600", "MAP": "F9-762-T61", "PARCEL_NAM": "3A-2", "ACRE": null, "LONGITUDE": -65.01598159, "LATITUDE": 18.35104676, "OBJECTID_1": 1560, "PARCEL_NO_": "102403011600", "Tax_Legal_": "3A-2 FORTUNA No.8 WEST END QTR", "Name": "BEATRICE ROBELS GEORGE and GERARD C MICHEL-ROBLES", "Address": "46096 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 16600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.52566387499999, "SHAPE_Area": 2542.1296664400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349789.437200002372265, 257859.666799999773502 ], [ 349761.801399998366833, 257885.405099999159575 ], [ 349765.807800002396107, 257888.393199998885393 ], [ 349784.239699997007847, 257901.8429000005126 ], [ 349798.665200002491474, 257912.30460000038147 ], [ 349839.266699999570847, 257879.072999998927116 ], [ 349836.14580000191927, 257866.804099999368191 ], [ 349834.606899999082088, 257858.136599998921156 ], [ 349789.437200002372265, 257859.666799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01785447, "LATITUDE": 18.35114763, "OBJECTID_1": 1312, "PARCEL_NO_": "102304033200", "Tax_Legal_": "BORDEAUX 66 WEST END QTR", "Name": "HODGE, SANDRA M.", "Address": "3202 Demerara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24600, "Improved_V": 128300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.795769269, "SHAPE_Area": 925.16287351699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349620.513300001621246, 257905.780299998819828 ], [ 349615.163999997079372, 257871.11710000038147 ], [ 349586.887299999594688, 257877.42960000038147 ], [ 349596.284400001168251, 257910.225999999791384 ], [ 349620.513300001621246, 257905.780299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00965392000001, "LATITUDE": 18.35112785, "OBJECTID_1": 1684, "PARCEL_NO_": "102403025100", "Tax_Legal_": "FORTUNA 3C-125 WEST END QUARTER", "Name": "WILLIAMS, RANDOLPH W. & JOYCEL", "Address": "PO Box 7456", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.84098590400001, "SHAPE_Area": 1009.32679454 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350472.360500000417233, 257868.000399999320507 ], [ 350464.992200002074242, 257881.027899999171495 ], [ 350450.2466000020504, 257908.138300001621246 ], [ 350467.936899997293949, 257913.982599999755621 ], [ 350475.164899997413158, 257917.419199999421835 ], [ 350490.729400001466274, 257888.837900001555681 ], [ 350485.130199998617172, 257883.514699999243021 ], [ 350474.750600002706051, 257871.39750000089407 ], [ 350472.360500000417233, 257868.000399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604026000", "MAP": null, "PARCEL_NAM": "9D", "ACRE": null, "LONGITUDE": -64.973124, "LATITUDE": 18.35107976, "OBJECTID_1": 2744, "PARCEL_NO_": "102604026000", "Tax_Legal_": "9 ESTATE CROWN&HAWK No.3 SOUTHSIDE QTR.", "Name": "HEIRS OF MERCEDES GUMBS", "Address": "105 Klink Ln", "City": "Mount Pleasant", "State": "South Carolina", "Zip": 29464, "Country": "United States", "Land_Value": 111000, "Improved_V": 1100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.21470021299999, "SHAPE_Area": 3241.68308389 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354345.169200003147125, 257889.142799999564886 ], [ 354333.123800002038479, 257876.706000000238419 ], [ 354327.322999998927116, 257881.817899998277426 ], [ 354308.143899999558926, 257898.719500001519918 ], [ 354294.386900000274181, 257910.842799998819828 ], [ 354311.298799999058247, 257933.0962999984622 ], [ 354334.199600003659725, 257963.230200000107288 ], [ 354351.917099997401237, 257948.9375 ], [ 354368.154799997806549, 257935.982599999755621 ], [ 354345.115199998021126, 257895.47520000115037 ], [ 354345.169200003147125, 257889.142799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01736384, "LATITUDE": 18.35112279, "OBJECTID_1": 1314, "PARCEL_NO_": "102304033600", "Tax_Legal_": "BORDEAUX 68 WEST END QTR", "Name": "PETERSEN, JOSE", "Address": "BOX 4685", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25800, "Improved_V": 90300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.408022898, "SHAPE_Area": 902.01416370300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349643.395700000226498, 257870.081599999219179 ], [ 349644.700900003314018, 257906.189300000667572 ], [ 349648.728799998760223, 257906.644499998539686 ], [ 349653.555900000035763, 257907.950500000268221 ], [ 349662.403800003230572, 257910.556099999696016 ], [ 349674.012199997901917, 257873.076400000602007 ], [ 349657.092299997806549, 257871.460299998521805 ], [ 349643.395700000226498, 257870.081599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028400", "MAP": "D9-6787-T000", "PARCEL_NAM": null, "ACRE": ".643", "LONGITUDE": -64.97466847, "LATITUDE": 18.35122601, "OBJECTID_1": 2766, "PARCEL_NO_": "102604028400", "Tax_Legal_": "15-5B CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "TRUST AGREEMENT OF LEONARD L GUMBS SR", "Address": "PO Box 6756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 73700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.081336056, "SHAPE_Area": 1210.9321064200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354194.703699998557568, 257948.941399998962879 ], [ 354192.898400001227856, 257925.444400001317263 ], [ 354171.7837999984622, 257920.083700001239777 ], [ 354166.042999997735023, 257922.853999998420477 ], [ 354151.489799998700619, 257927.378899998962879 ], [ 354141.808600001037121, 257927.93299999833107 ], [ 354134.557199999690056, 257927.240299999713898 ], [ 354132.073600001633167, 257934.819400001317263 ], [ 354172.268700003623962, 257949.291600000113249 ], [ 354194.703699998557568, 257948.941399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01159461, "LATITUDE": 18.35115042, "OBJECTID_1": 1674, "PARCEL_NO_": "102403023900", "Tax_Legal_": "FORTUNA PLOT 105 PARCEL 3C WESTEND QTR", "Name": "CHINNERY, DARIEL", "Address": "3249 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.58908819000001, "SHAPE_Area": 1011.8849798799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350264.277900002896786, 257872.630100000649691 ], [ 350243.809000000357628, 257908.981800001114607 ], [ 350271.977799996733665, 257915.334100000560284 ], [ 350287.52250000089407, 257889.074599999934435 ], [ 350280.308899998664856, 257883.949299998581409 ], [ 350266.684299997985363, 257874.127500001341105 ], [ 350264.277900002896786, 257872.630100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00223299, "LATITUDE": 18.35108914, "OBJECTID_1": 1936, "PARCEL_NO_": "102404044400", "Tax_Legal_": "FORTUNA 77-16 WEST END QTR", "Name": "BROWN, ILKA F & OTHERS", "Address": "202 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.270988292, "SHAPE_Area": 1828.45019828 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351250.491599999368191, 257869.725000001490116 ], [ 351223.48589999973774, 257916.155600000172853 ], [ 351236.381499998271465, 257916.894400000572205 ], [ 351238.782399997115135, 257919.024999998509884 ], [ 351239.552799999713898, 257923.253199998289347 ], [ 351274.346500001847744, 257909.183600001037121 ], [ 351287.45610000193119, 257884.804099999368191 ], [ 351250.491599999368191, 257869.725000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404046100", "MAP": "G9-809-T65", "PARCEL_NAM": "12", "ACRE": "1.16", "LONGITUDE": -65.0070985, "LATITUDE": 18.35068876, "OBJECTID_1": 1953, "PARCEL_NO_": "102404046100", "Tax_Legal_": "FORTUNA 12 WEST END QTR", "Name": "THELONIOUS LLC", "Address": "30 Broad St", "City": "New York", "State": "New York", "Zip": 10004, "Country": "United States", "Land_Value": 118800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.08460010599998, "SHAPE_Area": 4423.5139249599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350764.024400003254414, 257896.352000001817942 ], [ 350756.932300001382828, 257782.30350000038743 ], [ 350718.877400003373623, 257800.568199999630451 ], [ 350728.354299999773502, 257918.647100001573563 ], [ 350735.661399997770786, 257912.796300001442432 ], [ 350764.024400003254414, 257896.352000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00916509, "LATITUDE": 18.35105687, "OBJECTID_1": 1699, "PARCEL_NO_": "102403026800", "Tax_Legal_": "FORTUNA 3C-127 WEST END QUARTER", "Name": "BLASH, JAY J. & YVETTE JAMES", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018580, "Country": "United States", "Land_Value": 37800, "Improved_V": 268700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.80361381, "SHAPE_Area": 1396.8928778500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350543.317800000309944, 257868.370099999010563 ], [ 350512.611400000751019, 257875.929200001060963 ], [ 350483.645199999213219, 257868.514899998903275 ], [ 350496.431199997663498, 257882.129599999636412 ], [ 350523.635399997234344, 257907.050200000405312 ], [ 350529.200499996542931, 257916.383799999952316 ], [ 350543.847199998795986, 257900.882800001651049 ], [ 350543.317800000309944, 257868.370099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01923735, "LATITUDE": 18.35102162, "OBJECTID_1": 1249, "PARCEL_NO_": "102304011900", "Tax_Legal_": "100 BORDEAUX WEST END QUARTER", "Name": "SETORIE, SONIA", "Address": "PO Box 303631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40000, "Improved_V": 126900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.90703367, "SHAPE_Area": 1585.14220888 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349431.881099998950958, 257898.959100000560284 ], [ 349467.304899998009205, 257905.581799998879433 ], [ 349467.3462999984622, 257900.727000001817942 ], [ 349471.61879999935627, 257872.475400000810623 ], [ 349473.312299996614456, 257862.990100000053644 ], [ 349479.188500002026558, 257835.807100001722574 ], [ 349478.412799999117851, 257832.212099999189377 ], [ 349474.379399999976158, 257832.3902000002563 ], [ 349444.193400003015995, 257873.517499998211861 ], [ 349431.881099998950958, 257898.959100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044500", "MAP": "B9-147-T66", "PARCEL_NAM": "77-15", "ACRE": null, "LONGITUDE": -65.00265184, "LATITUDE": 18.3511003, "OBJECTID_1": 1937, "PARCEL_NO_": "102404044500", "Tax_Legal_": "FORTUNA 77-15 WEST END QTR", "Name": "OLIVE, ZAIRE E. K. BURNS & JEAN P., JR.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78000, "Improved_V": 150700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.613169484, "SHAPE_Area": 1599.4620915099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351241.030599996447563, 257885.991200000047684 ], [ 351217.928000003099442, 257874.788800001144409 ], [ 351180.928900003433228, 257896.844700001180172 ], [ 351196.040700003504753, 257919.519600000232458 ], [ 351204.116400003433228, 257918.107999999076128 ], [ 351221.06870000064373, 257915.924699999392033 ], [ 351223.48589999973774, 257916.155600000172853 ], [ 351241.030599996447563, 257885.991200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403011800", "MAP": null, "PARCEL_NAM": "3A-5", "ACRE": null, "LONGITUDE": -65.01521089000001, "LATITUDE": 18.35094933, "OBJECTID_1": 1562, "PARCEL_NO_": "102403011800", "Tax_Legal_": "FORTUNA 3A-5 WEST END QTR", "Name": "SHAW, PHILMORE,JOEL,JAMAL,KIMRA", "Address": "PO Box 1091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53900, "Improved_V": 173600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.99629226900001, "SHAPE_Area": 2443.4057506 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349919.206699997186661, 257866.217300001531839 ], [ 349905.792499996721745, 257831.699299998581409 ], [ 349848.947899997234344, 257878.519000001251698 ], [ 349853.661700002849102, 257893.122999999672174 ], [ 349856.053599998354912, 257896.309000000357628 ], [ 349856.82940000295639, 257899.903900001198053 ], [ 349860.018700003623962, 257904.151900000870228 ], [ 349862.405199997127056, 257907.971099998801947 ], [ 349919.206699997186661, 257866.217300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01760578, "LATITUDE": 18.35111941, "OBJECTID_1": 1313, "PARCEL_NO_": "102304033400", "Tax_Legal_": "BORDEAUX 67 WESTEND QTR.", "Name": "SARAUW, LEVRON & CARLA D", "Address": "PO Box 343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27000, "Improved_V": 138600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.65623328700001, "SHAPE_Area": 924.73746113000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349643.395700000226498, 257870.081599999219179 ], [ 349615.163999997079372, 257871.11710000038147 ], [ 349620.513300001621246, 257905.780299998819828 ], [ 349624.546599999070168, 257905.602200001478195 ], [ 349638.252199999988079, 257905.925400000065565 ], [ 349644.700900003314018, 257906.189300000667572 ], [ 349643.395700000226498, 257870.081599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01184264, "LATITUDE": 18.35102939, "OBJECTID_1": 1673, "PARCEL_NO_": "102403023800", "Tax_Legal_": "FORTUNA PLOT # 104 PARCEL 3C WESTEND QTR", "Name": "JAMES, SELWYN & LAUNA", "Address": "PO Box 8621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31600, "Improved_V": 185000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.59608907099999, "SHAPE_Area": 1418.6398331299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350220.266000002622604, 257882.985399998724461 ], [ 350226.995899997651577, 257905.213100001215935 ], [ 350232.540399998426437, 257906.567499998956919 ], [ 350243.809000000357628, 257908.981800001114607 ], [ 350264.277900002896786, 257872.630100000649691 ], [ 350235.403499998152256, 257854.450899999588728 ], [ 350220.266000002622604, 257882.985399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00997991, "LATITUDE": 18.35106366, "OBJECTID_1": 1683, "PARCEL_NO_": "102403025000", "Tax_Legal_": "FORTUNA 3C-108 WESTEND QTR.", "Name": "Sarah Lee Liburd,R Samuel,S Smith(ITF) J Lee, Jr.", "Address": "PO Box 304163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.46134547099999, "SHAPE_Area": 1427.70022554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350464.992200002074242, 257881.027899999171495 ], [ 350436.871899999678135, 257868.976500000804663 ], [ 350420.000500001013279, 257861.661200001835823 ], [ 350423.019000001251698, 257885.96169999986887 ], [ 350405.136200003325939, 257902.702799998223782 ], [ 350418.840000003576279, 257903.237199999392033 ], [ 350426.093199998140335, 257903.718699999153614 ], [ 350443.814099997282028, 257905.974700000137091 ], [ 350450.2466000020504, 257908.138300001621246 ], [ 350464.992200002074242, 257881.027899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "G9-1537-T70", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -65.01713746, "LATITUDE": 18.35069782, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 444.64422413800003, "SHAPE_Area": 2555.4916483799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349597.224799998104572, 257799.831799998879433 ], [ 349591.478100001811981, 257811.817099999636412 ], [ 349600.351199999451637, 257811.467500001192093 ], [ 349631.808100000023842, 257810.458399999886751 ], [ 349647.939800001680851, 257809.95719999819994 ], [ 349663.166199997067451, 257821.058699999004602 ], [ 349712.851899996399879, 257857.351199999451637 ], [ 349704.630500003695488, 257875.860199999064207 ], [ 349707.839599996805191, 257877.786299999803305 ], [ 349717.461400002241135, 257884.197799999266863 ], [ 349726.246299996972084, 257894.191100001335144 ], [ 349731.841899998486042, 257899.9364 ], [ 349756.191399998962879, 257881.348400000482798 ], [ 349732.149400003254414, 257863.842000000178814 ], [ 349697.690200001001358, 257838.65089999884367 ], [ 349659.222800001502037, 257810.682799998670816 ], [ 349630.371699996292591, 257789.759500000625849 ], [ 349623.037600003182888, 257798.776500001549721 ], [ 349603.80120000243187, 257785.109099999070168 ], [ 349597.224799998104572, 257799.831799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604024100", "MAP": "D9-624-T66", "PARCEL_NAM": "8J", "ACRE": ".98", "LONGITUDE": -64.97146265000001, "LATITUDE": 18.35108258, "OBJECTID_1": 2727, "PARCEL_NO_": "102604024100", "Tax_Legal_": "CROWN & HAWK 8J S S QTR", "Name": "PERKINS, VIGGO", "Address": "PO Box 298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 102300, "Improved_V": 196300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.21062481500002, "SHAPE_Area": 4656.4733510599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354466.58669999986887, 257917.752300001680851 ], [ 354459.928800001740456, 257953.832299999892712 ], [ 354464.833599999547005, 257953.79619999974966 ], [ 354541.377099998295307, 257953.232400000095367 ], [ 354541.29730000346899, 257867.94990000128746 ], [ 354521.834299996495247, 257880.878400001674891 ], [ 354475.608400002121925, 257911.741900000721216 ], [ 354466.58669999986887, 257917.752300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403024900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01030496, "LATITUDE": 18.35099763, "OBJECTID_1": 1682, "PARCEL_NO_": "102403024900", "Tax_Legal_": "FORTUNA PLOT 109 PARCEL 3C WESTEND QTR", "Name": "NORMAN, LYNNE & JOANNA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44800, "Improved_V": 117100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.61166073699999, "SHAPE_Area": 1412.20904703 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350420.000500001013279, 257861.661200001835823 ], [ 350406.341700002551079, 257855.849899999797344 ], [ 350389.389399997889996, 257858.03319999948144 ], [ 350390.779100000858307, 257884.220199998468161 ], [ 350374.503600001335144, 257901.607700001448393 ], [ 350405.136200003325939, 257902.702799998223782 ], [ 350423.019000001251698, 257885.96169999986887 ], [ 350420.000500001013279, 257861.661200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403045900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01059606, "LATITUDE": 18.35099866, "OBJECTID_1": 1817, "PARCEL_NO_": "102403045900", "Tax_Legal_": "3C-110 ESTATE FORTUNA NO.8 WEST END QTR", "Name": "RONDON, KIRK A.", "Address": "PO BOX 885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 51400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.69223004700001, "SHAPE_Area": 1263.10922441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350389.389399997889996, 257858.03319999948144 ], [ 350376.472199998795986, 257859.827300000935793 ], [ 350357.905500002205372, 257862.208500001579523 ], [ 350360.151799999177456, 257882.491799999028444 ], [ 350343.905000001192093, 257896.502099998295307 ], [ 350348.733900003135204, 257897.597100000828505 ], [ 350374.503600001335144, 257901.607700001448393 ], [ 350390.779100000858307, 257884.220199998468161 ], [ 350389.389399997889996, 257858.03319999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "102403013800", "MAP": null, "PARCEL_NAM": "3A-6", "ACRE": null, "LONGITUDE": -65.01472422000001, "LATITUDE": 18.35076058, "OBJECTID_1": 1582, "PARCEL_NO_": "102403013800", "Tax_Legal_": "FORTUNA 3A-6 WEST END QTR", "Name": "ARTHUR'S LEGACY LLC", "Address": "PO Box 165", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 73100, "Improved_V": 31300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.778586563, "SHAPE_Area": 3156.92168713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349918.004100002348423, 257818.078099999576807 ], [ 349902.641000002622604, 257823.0185999982059 ], [ 349905.792499996721745, 257831.699299998581409 ], [ 349919.206699997186661, 257866.217300001531839 ], [ 349931.042499996721745, 257896.711599998176098 ], [ 349968.364799998700619, 257869.785999998450279 ], [ 349943.876199997961521, 257810.057199999690056 ], [ 349918.004100002348423, 257818.078099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403023300", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-100", "ACRE": "0.27", "LONGITUDE": -65.01246686, "LATITUDE": 18.35097109, "OBJECTID_1": 1668, "PARCEL_NO_": "102403023300", "Tax_Legal_": "FORTUNA PLOT #100 PARCEL 3C WESTEND QTR", "Name": "PERCIVAL, MILLICENT A.", "Address": "6102 ESTATE FORTUNA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 339800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.921305469, "SHAPE_Area": 1008.83749243 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350178.665899999439716, 257861.483600001782179 ], [ 350165.620099999010563, 257854.232900001108646 ], [ 350165.209399998188019, 257859.1537000015378 ], [ 350163.57880000025034, 257861.251299999654293 ], [ 350161.127499997615814, 257865.030900001525879 ], [ 350159.487899996340275, 257868.183899998664856 ], [ 350155.422100000083447, 257872.161400001496077 ], [ 350150.060199998319149, 257875.126499999314547 ], [ 350151.380699999630451, 257879.769900001585484 ], [ 350183.591899998486042, 257895.586399998515844 ], [ 350195.723399996757507, 257874.179999999701977 ], [ 350197.355800002813339, 257871.871300000697374 ], [ 350178.665899999439716, 257861.483600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01884567, "LATITUDE": 18.35102133, "OBJECTID_1": 1280, "PARCEL_NO_": "102304022900", "Tax_Legal_": "BORDEAUX 83 WEST END QTR", "Name": "FRAZIER, ARTHUR & ALDA", "Address": "BOX 2892", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27700, "Improved_V": 129600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.78537594100001, "SHAPE_Area": 1082.7716992200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349518.480200000107288, 257861.671000000089407 ], [ 349483.004299998283386, 257861.16950000077486 ], [ 349480.468500003218651, 257874.869899999350309 ], [ 349478.742600001394749, 257888.154599998146296 ], [ 349519.034800000488758, 257891.22859999909997 ], [ 349519.106700003147125, 257882.785500001162291 ], [ 349518.480200000107288, 257861.671000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604026000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97250918, "LATITUDE": 18.35086822, "OBJECTID_1": 2744, "PARCEL_NO_": "102604026000", "Tax_Legal_": "9 ESTATE CROWN&HAWK No.3 SOUTHSIDE QTR.", "Name": "HEIRS OF MERCEDES GUMBS", "Address": "105 Klink Ln", "City": "Mount Pleasant", "State": "South Carolina", "Zip": 29464, "Country": "United States", "Land_Value": 111000, "Improved_V": 1100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.172683307, "SHAPE_Area": 2045.5506029400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354454.193999998271465, 257869.770100001245737 ], [ 354447.750699996948242, 257868.872999999672174 ], [ 354428.366800002753735, 257872.51410000026226 ], [ 354421.889300003647804, 257875.627500001341105 ], [ 354411.365900002419949, 257880.396499998867512 ], [ 354389.528899997472763, 257888.028200000524521 ], [ 354368.519900001585484, 257893.133600000292063 ], [ 354355.604500003159046, 257894.716699998825788 ], [ 354375.458400003612041, 257930.554000001400709 ], [ 354404.681599996984005, 257907.783900000154972 ], [ 354416.043700002133846, 257899.222100000828505 ], [ 354454.193999998271465, 257869.770100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01087938000001, "LATITUDE": 18.35099146, "OBJECTID_1": 1681, "PARCEL_NO_": "102403024700", "Tax_Legal_": "FORTUNA 3C-111 WESTEND QTR.", "Name": "CHINNERY-SMITH, GAIL & DEAN", "Address": "PO Box 6294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35700, "Improved_V": 262900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.98174353100001, "SHAPE_Area": 935.800839655 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350357.905500002205372, 257862.208500001579523 ], [ 350339.338699996471405, 257864.589600000530481 ], [ 350329.652199998497963, 257865.776900000870228 ], [ 350325.469499997794628, 257883.474599998444319 ], [ 350319.774999998509884, 257889.338599998503923 ], [ 350329.416599996387959, 257893.428300000727177 ], [ 350343.905000001192093, 257896.502099998295307 ], [ 350360.151799999177456, 257882.491799999028444 ], [ 350357.905500002205372, 257862.208500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303011200", "MAP": "C9-325-T92", "PARCEL_NAM": "5-48", "ACRE": ".22", "LONGITUDE": -65.02670566, "LATITUDE": 18.35090281, "OBJECTID_1": 1190, "PARCEL_NO_": "102303011200", "Tax_Legal_": "FORTUNA 5-48 WESTEND QUARTER", "Name": "THOMAS, ORVIN & SINGLETON, SEL", "Address": "PO Box 8551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28300, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.66405048300001, "SHAPE_Area": 1587.86353835 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348684.94370000064373, 257832.473000001162291 ], [ 348647.799400001764297, 257838.501800000667572 ], [ 348653.893899999558926, 257880.348200000822544 ], [ 348691.03999999910593, 257874.108300000429153 ], [ 348684.94370000064373, 257832.473000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404036600", "MAP": "G9-809-T65", "PARCEL_NAM": "12A", "ACRE": "1.14", "LONGITUDE": -65.00658062, "LATITUDE": 18.35044255, "OBJECTID_1": 1892, "PARCEL_NO_": "102404036600", "Tax_Legal_": "FORTUNA 12A WEST END QTR", "Name": "FRANCIS, HALVOR", "Address": "PO Box 12107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 109500, "Improved_V": 61500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.47102759799998, "SHAPE_Area": 8494.0128090599992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350832.54900000244379, 257805.316599998623133 ], [ 350829.473200000822544, 257747.305399999022484 ], [ 350799.846699997782707, 257761.545299999415874 ], [ 350756.932300001382828, 257782.30350000038743 ], [ 350764.024400003254414, 257896.352000001817942 ], [ 350778.611800000071526, 257887.816599998623133 ], [ 350793.188299998641014, 257880.547600001096725 ], [ 350812.599200002849102, 257873.74040000140667 ], [ 350825.534299999475479, 257869.835499998182058 ], [ 350835.873999997973442, 257868.028299998492002 ], [ 350832.54900000244379, 257805.316599998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01636645000001, "LATITUDE": 18.35087996, "OBJECTID_1": 1332, "PARCEL_NO_": "102304041800", "Tax_Legal_": "FORTUNA 3A-3 WEST END QTR", "Name": "FLEMING, ALBERT, CHARLENE, LOIS & TRISHA", "Address": "P.O. BOX 3284", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.39745917499999, "SHAPE_Area": 1303.02266818 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349789.437200002372265, 257859.666799999773502 ], [ 349766.237499997019768, 257837.94539999961853 ], [ 349761.343900002539158, 257844.449200000613928 ], [ 349732.149400003254414, 257863.842000000178814 ], [ 349756.191399998962879, 257881.348400000482798 ], [ 349761.801399998366833, 257885.405099999159575 ], [ 349789.437200002372265, 257859.666799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01117298, "LATITUDE": 18.35092258, "OBJECTID_1": 1680, "PARCEL_NO_": "102403024600", "Tax_Legal_": "FORTUNA 3C-112 WESTEND QTR.", "Name": "PHILPOTT, WILLIMETTON B", "Address": "P.O. BOX 5685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.96893742499999, "SHAPE_Area": 862.52756099800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350310.383400000631809, 257855.908900000154972 ], [ 350303.1570999994874, 257852.261199999600649 ], [ 350290.070900000631809, 257873.896699998527765 ], [ 350294.881800003349781, 257877.10249999910593 ], [ 350302.903599999845028, 257882.023299999535084 ], [ 350319.774999998509884, 257889.338599998503923 ], [ 350325.469499997794628, 257883.474599998444319 ], [ 350329.652199998497963, 257865.776900000870228 ], [ 350310.383400000631809, 257855.908900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01848294, "LATITUDE": 18.35084428, "OBJECTID_1": 1322, "PARCEL_NO_": "102304040800", "Tax_Legal_": "BORDEAUX 76 WEST END QTR", "Name": "THOMAS, JUDITH", "Address": "1404 Wigeon Way 303C", "City": "Gambrills", "State": "Maryland", "Zip": 21054, "Country": "United States", "Land_Value": 25700, "Improved_V": 92200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.33803953699999, "SHAPE_Area": 950.18152402299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349546.551899999380112, 257879.421500001102686 ], [ 349550.154799997806549, 257835.121300000697374 ], [ 349533.274400003254414, 257828.8614999987185 ], [ 349529.898100003600121, 257846.565699998289347 ], [ 349528.233300000429153, 257852.673799999058247 ], [ 349527.3496999964118, 257861.743599999696016 ], [ 349528.035499997437, 257875.892499998211861 ], [ 349529.612199999392033, 257880.127199999988079 ], [ 349533.627499997615814, 257882.059900000691414 ], [ 349539.2753000035882, 257881.684000000357628 ], [ 349546.551899999380112, 257879.421500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01207454, "LATITUDE": 18.35084127, "OBJECTID_1": 1672, "PARCEL_NO_": "102403023700", "Tax_Legal_": "FORTUNA PLOT #103 PARCEL 3C WESTEND QTR", "Name": "MALOON, CARL A", "Address": "PO Box 1447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.630854892, "SHAPE_Area": 930.71274732999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350197.355800002813339, 257871.871300000697374 ], [ 350220.266000002622604, 257882.985399998724461 ], [ 350235.403499998152256, 257854.450899999588728 ], [ 350225.778099998831749, 257848.461500000208616 ], [ 350216.154500000178814, 257842.260999999940395 ], [ 350210.54450000077486, 257838.204300001263618 ], [ 350197.355800002813339, 257871.871300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01826265, "LATITUDE": 18.35085289, "OBJECTID_1": 1321, "PARCEL_NO_": "102304040700", "Tax_Legal_": "BORDEAUX 75 WEST END QTR", "Name": "SPRINGETTE, JACINTA", "Address": "#75 EST BORDEUX", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22600, "Improved_V": 141800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.54416595000001, "SHAPE_Area": 1021.84027929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349578.287600003182888, 257845.695199999958277 ], [ 349550.154799997806549, 257835.121300000697374 ], [ 349546.551899999380112, 257879.421500001102686 ], [ 349575.656499996781349, 257870.582699999213219 ], [ 349578.082599997520447, 257869.758200000971556 ], [ 349578.287600003182888, 257845.695199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403012100", "MAP": null, "PARCEL_NAM": "4-1-27", "ACRE": null, "LONGITUDE": -65.01531784, "LATITUDE": 18.35059717, "OBJECTID_1": 1565, "PARCEL_NO_": "102403012100", "Tax_Legal_": "FORTUNA 4-1-27 WEST END QTR", "Name": "Joseph,Donna,Elizabeth Dennis & J Dennis Seabrooks", "Address": "Po Box 304032", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 173200, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.85413649899999, "SHAPE_Area": 2846.64808808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349888.434900000691414, 257786.805399999022484 ], [ 349887.847999997437, 257785.305799998342991 ], [ 349880.838899999856949, 257792.348600000143051 ], [ 349868.170500002801418, 257805.077899999916553 ], [ 349862.387800000607967, 257810.8885000012815 ], [ 349849.887500002980232, 257823.449000000953674 ], [ 349851.011799998581409, 257825.551399998366833 ], [ 349851.794799998402596, 257828.302000001072884 ], [ 349850.896799996495247, 257839.060400001704693 ], [ 349849.228399999439716, 257845.590700000524521 ], [ 349845.965400002896786, 257849.996899999678135 ], [ 349844.316799998283386, 257854.205299999564886 ], [ 349845.036799997091293, 257864.343699999153614 ], [ 349848.947899997234344, 257878.519000001251698 ], [ 349905.792499996721745, 257831.699299998581409 ], [ 349902.641000002622604, 257823.0185999982059 ], [ 349888.434900000691414, 257786.805399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01711929, "LATITUDE": 18.3507875, "OBJECTID_1": 1317, "PARCEL_NO_": "102304040300", "Tax_Legal_": "71 BORDEAUX WEST END QUARTER", "Name": "Atiim Dia Abraham,Esq.,Nilaja M & Jamila K Abraham", "Address": "PO Box 303824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 58900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.494388216, "SHAPE_Area": 1467.1009458799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349663.166199997067451, 257821.058699999004602 ], [ 349659.592100001871586, 257861.981499999761581 ], [ 349672.476899996399879, 257863.986800000071526 ], [ 349680.52929999679327, 257865.319299999624491 ], [ 349682.942800000309944, 257865.972300000488758 ], [ 349695.001500003039837, 257870.292899999767542 ], [ 349704.630500003695488, 257875.860199999064207 ], [ 349712.851899996399879, 257857.351199999451637 ], [ 349663.166199997067451, 257821.058699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00980242, "LATITUDE": 18.35085165, "OBJECTID_1": 1693, "PARCEL_NO_": "102403026200", "Tax_Legal_": "FORTUNA 3C-124 WEST END QUARTER", "Name": "FORBES, AUSTIN F. & CLAUDETTE", "Address": "4040 NORTHEAST", "City": "POMPANO BEACH", "State": "Florida", "Zip": 33064, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.547791199, "SHAPE_Area": 657.76749370899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350456.444600000977516, 257843.172200001776218 ], [ 350436.871899999678135, 257868.976500000804663 ], [ 350464.992200002074242, 257881.027899999171495 ], [ 350472.360500000417233, 257868.000399999320507 ], [ 350465.179200001060963, 257859.075699999928474 ], [ 350456.444600000977516, 257843.172200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02205504, "LATITUDE": 18.35070021, "OBJECTID_1": 1344, "PARCEL_NO_": "102304050100", "Tax_Legal_": "FORTUNA 5A-1 WEST END QTR", "Name": "HECTOR, PATRICK & NILDA B", "Address": "PO Box 10665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.59069150100001, "SHAPE_Area": 1945.4726831600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349185.485799998044968, 257857.4679000005126 ], [ 349170.611800000071526, 257804.995000001043081 ], [ 349154.436999998986721, 257810.562100000679493 ], [ 349138.226199999451637, 257820.350900001823902 ], [ 349149.101000003516674, 257868.991399999707937 ], [ 349185.485799998044968, 257857.4679000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97164744, "LATITUDE": 18.35073488, "OBJECTID_1": 2726, "PARCEL_NO_": "102604024000", "Tax_Legal_": "9K & 9X1 CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "MONSANTO, LISTON & WILMA", "Address": "P.O.BOX 2763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31600, "Improved_V": 186700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.69151696700001, "SHAPE_Area": 1740.7912082800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354521.834299996495247, 257880.878400001674891 ], [ 354509.145499996840954, 257855.865499999374151 ], [ 354501.813199996948242, 257864.671500001102686 ], [ 354492.085299998521805, 257870.713599998503923 ], [ 354463.050800003111362, 257871.320300001651049 ], [ 354454.193999998271465, 257869.770100001245737 ], [ 354475.608400002121925, 257911.741900000721216 ], [ 354521.834299996495247, 257880.878400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01227487, "LATITUDE": 18.35072847, "OBJECTID_1": 1671, "PARCEL_NO_": "102403023600", "Tax_Legal_": "FORTUNA PLOT #102 PARCEL 3C WESTEND QTR", "Name": "ROGERS, LORNA", "Address": "P.O. BOX 5706", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.750100633, "SHAPE_Area": 809.23364979400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350178.665899999439716, 257861.483600001782179 ], [ 350197.355800002813339, 257871.871300000697374 ], [ 350210.54450000077486, 257838.204300001263618 ], [ 350192.922499999403954, 257824.339000001549721 ], [ 350178.665899999439716, 257861.483600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01144329, "LATITUDE": 18.35076059, "OBJECTID_1": 1679, "PARCEL_NO_": "102403024500", "Tax_Legal_": "FORTUNA PLOT #113 PARCEL 3C WESTEND QTR", "Name": "ROGERS, SHARLINE L", "Address": "394-34 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.90106915600001, "SHAPE_Area": 866.43970078200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350303.1570999994874, 257852.261199999600649 ], [ 350275.105200000107288, 257832.188799999654293 ], [ 350262.009999997913837, 257854.879700001329184 ], [ 350276.448100000619888, 257863.863800000399351 ], [ 350290.070900000631809, 257873.896699998527765 ], [ 350303.1570999994874, 257852.261199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403026700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00931541, "LATITUDE": 18.35078816, "OBJECTID_1": 1698, "PARCEL_NO_": "102403026700", "Tax_Legal_": "3C-128 ESTATE FORTUNA WESTEND QTR.", "Name": "MEYERS, JERRY W. & SHERI G", "Address": "PO Box 822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67200, "Improved_V": 215800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.61463578199999, "SHAPE_Area": 1812.71130855 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350504.80179999768734, 257846.101100001484156 ], [ 350483.033100001513958, 257845.711800001561642 ], [ 350461.361599996685982, 257833.924300000071526 ], [ 350471.690800003707409, 257851.951799999922514 ], [ 350483.645199999213219, 257868.514899998903275 ], [ 350512.611400000751019, 257875.929200001060963 ], [ 350543.317800000309944, 257868.370099999010563 ], [ 350542.694899998605251, 257846.833399999886751 ], [ 350526.57039999961853, 257846.490299999713898 ], [ 350504.80179999768734, 257846.101100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01793816, "LATITUDE": 18.35079895, "OBJECTID_1": 1320, "PARCEL_NO_": "102304040600", "Tax_Legal_": "BORDEAUX 74 WEST END QTR", "Name": "NOEL A MARTIN", "Address": "BOX 3681", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32800, "Improved_V": 55400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.288610593, "SHAPE_Area": 639.80848684099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349609.588100001215935, 257863.049899999052286 ], [ 349604.19030000269413, 257834.085900001227856 ], [ 349592.876800000667572, 257836.948699999600649 ], [ 349588.829000003635883, 257838.815400000661612 ], [ 349587.187600001692772, 257842.179400000721216 ], [ 349585.556999996304512, 257844.276999998837709 ], [ 349583.775399997830391, 257864.105200000107288 ], [ 349584.549300000071526, 257867.911299999803305 ], [ 349609.588100001215935, 257863.049899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303013400", "MAP": "A9-512-T98", "PARCEL_NAM": "5-54", "ACRE": ".25", "LONGITUDE": -65.02631055000001, "LATITUDE": 18.35076628, "OBJECTID_1": 1211, "PARCEL_NO_": "102303013400", "Tax_Legal_": "5-54 ESTATE FORTUNA #8 WESTEND QTR", "Name": "BRYAN, CALVIN(TRUSTEE/BRYAN, J. D", "Address": "PO Box 304219", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.588371825, "SHAPE_Area": 1114.4336167500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348724.539399996399879, 257822.664599999785423 ], [ 348692.247299998998642, 257827.044300001114607 ], [ 348697.607400000095367, 257860.440999999642372 ], [ 348730.707599997520447, 257855.856699999421835 ], [ 348724.539399996399879, 257822.664599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01433175, "LATITUDE": 18.35056169, "OBJECTID_1": 1583, "PARCEL_NO_": "102403013900", "Tax_Legal_": "FORTUNA 3A-7 WEST END QTR", "Name": "GORDON, LEROY", "Address": "100-2 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.87683319499999, "SHAPE_Area": 2843.1461499900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350008.122299998998642, 257840.980500001460314 ], [ 349994.8141999989748, 257794.008799999952316 ], [ 349943.876199997961521, 257810.057199999690056 ], [ 349968.364799998700619, 257869.785999998450279 ], [ 350008.122299998998642, 257840.980500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01772972000001, "LATITUDE": 18.35064622, "OBJECTID_1": 1319, "PARCEL_NO_": "102304040500", "Tax_Legal_": "BORDEAUX 73 WEST END QTR", "Name": "DUPONT, ROYSTON", "Address": "PO Box 306716", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33900, "Improved_V": 117100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.614776619, "SHAPE_Area": 1396.29684589 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349600.351199999451637, 257811.467500001192093 ], [ 349603.434299997985363, 257828.169100001454353 ], [ 349604.19030000269413, 257834.085900001227856 ], [ 349609.588100001215935, 257863.049899999052286 ], [ 349618.462999999523163, 257862.48930000141263 ], [ 349632.179300002753735, 257861.546100001782179 ], [ 349631.808100000023842, 257810.458399999886751 ], [ 349600.351199999451637, 257811.467500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0167474, "LATITUDE": 18.35057579, "OBJECTID_1": 1330, "PARCEL_NO_": "102304041600", "Tax_Legal_": "FORTUNA 4-1-3 WEST END QTR", "Name": "JN BAPTISTE, VAUGHN & USELDA", "Address": "4002 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47900, "Improved_V": 150800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.21485374599999, "SHAPE_Area": 1672.0328419800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349720.644599996507168, 257794.509100001305342 ], [ 349697.690200001001358, 257838.65089999884367 ], [ 349732.149400003254414, 257863.842000000178814 ], [ 349740.721500001847744, 257804.172600001096725 ], [ 349731.873599998652935, 257801.567099999636412 ], [ 349724.652699999511242, 257797.286100000143051 ], [ 349720.644599996507168, 257794.509100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01641762, "LATITUDE": 18.3505439, "OBJECTID_1": 1331, "PARCEL_NO_": "102304041700", "Tax_Legal_": "FORTUNA 4-1-2 WEST END QTR", "Name": "SIMPSON, ANNABELLE & NEVILLE & PERCIVAL", "Address": "7103 3rd Ave", "City": "Kenosha", "State": "Wisconsin", "Zip": 53143, "Country": "United States", "Land_Value": 49600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.15360676099999, "SHAPE_Area": 1903.5125517 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349766.237499997019768, 257837.94539999961853 ], [ 349793.977600000798702, 257799.964499998837709 ], [ 349778.655900001525879, 257800.050200000405312 ], [ 349753.620700001716614, 257804.48930000141263 ], [ 349750.395400002598763, 257804.462900001555681 ], [ 349740.721500001847744, 257804.172600001096725 ], [ 349732.149400003254414, 257863.842000000178814 ], [ 349761.343900002539158, 257844.449200000613928 ], [ 349766.237499997019768, 257837.94539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01881992, "LATITUDE": 18.35071944, "OBJECTID_1": 1282, "PARCEL_NO_": "102304023100", "Tax_Legal_": "BORDEAUX 82 WEST END QTR", "Name": "SYLVIA MCCLEAN REVOCABLE LIVING TRUST", "Address": "PO Box 7202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010202, "Country": "United States", "Land_Value": 24400, "Improved_V": 87300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.24988782, "SHAPE_Area": 1282.9380297600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349522.76349999755621, 257832.152899999171495 ], [ 349493.070200003683567, 257815.444600000977516 ], [ 349483.004299998283386, 257861.16950000077486 ], [ 349518.480200000107288, 257861.671000000089407 ], [ 349518.516199998557568, 257857.449400000274181 ], [ 349521.04839999973774, 257844.17119999974966 ], [ 349522.76349999755621, 257832.152899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403026100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00998079, "LATITUDE": 18.3506876, "OBJECTID_1": 1692, "PARCEL_NO_": "102403026100", "Tax_Legal_": "FORTUNA 3C-123 WESTEND QTR", "Name": "BROWNE, LAUCHLAND & VALARIE", "Address": "PO Box 308038", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.886696184, "SHAPE_Area": 959.46066035399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350433.259300000965595, 257819.762099999934435 ], [ 350420.000500001013279, 257861.661200001835823 ], [ 350436.871899999678135, 257868.976500000804663 ], [ 350456.444600000977516, 257843.172200001776218 ], [ 350450.86879999935627, 257835.105000000447035 ], [ 350443.665899999439716, 257828.713199999183416 ], [ 350433.259300000965595, 257819.762099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01746464, "LATITUDE": 18.3506558, "OBJECTID_1": 1318, "PARCEL_NO_": "102304040400", "Tax_Legal_": "BORDEAUX 72 WEST END QTR", "Name": "THOMAS, LAURA, LYRA, LOUIS, ELROY, LOUISE, ELRIDGE, L. & L", "Address": "PO Box 4905", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26500, "Improved_V": 108500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.56711092699999, "SHAPE_Area": 1454.0803040599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349632.179300002753735, 257861.546100001782179 ], [ 349659.592100001871586, 257861.981499999761581 ], [ 349663.166199997067451, 257821.058699999004602 ], [ 349647.939800001680851, 257809.95719999819994 ], [ 349631.808100000023842, 257810.458399999886751 ], [ 349632.179300002753735, 257861.546100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304050200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02173836, "LATITUDE": 18.35059128, "OBJECTID_1": 1345, "PARCEL_NO_": "102304050200", "Tax_Legal_": "FORTUNA 5A-1-1 WEST END QTR", "Name": "NICHOLAS, SHERRARD J.", "Address": "PO BOX 305916", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.305743874, "SHAPE_Area": 1796.11068894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349210.551600001752377, 257849.440400000661612 ], [ 349214.980499997735023, 257802.824999999254942 ], [ 349202.894900001585484, 257801.6706000007689 ], [ 349193.213699996471405, 257802.224700000137091 ], [ 349187.5658999979496, 257802.600600000470877 ], [ 349170.611800000071526, 257804.995000001043081 ], [ 349185.485799998044968, 257857.4679000005126 ], [ 349210.551600001752377, 257849.440400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01246218, "LATITUDE": 18.35057379, "OBJECTID_1": 1670, "PARCEL_NO_": "102403023500", "Tax_Legal_": "FORTUUNA 3C-101 WEST END QUARTER", "Name": "HODGE, JANICE", "Address": "PO Box 306215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36500, "Improved_V": 236800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.73854081100001, "SHAPE_Area": 1104.1463677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350165.620099999010563, 257854.232900001108646 ], [ 350178.665899999439716, 257861.483600001782179 ], [ 350192.922499999403954, 257824.339000001549721 ], [ 350187.317900002002716, 257819.649099998176098 ], [ 350172.111199997365475, 257806.225699998438358 ], [ 350168.097599998116493, 257804.081900000572205 ], [ 350163.243600003421307, 257805.94200000166893 ], [ 350162.408500000834465, 257809.312699999660254 ], [ 350163.03320000320673, 257830.638300001621246 ], [ 350166.107400000095367, 257848.395300000905991 ], [ 350165.620099999010563, 257854.232900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403025700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01101418, "LATITUDE": 18.3506795, "OBJECTID_1": 1688, "PARCEL_NO_": "102403025700", "Tax_Legal_": "FORTUNA 3C-119 WEST END QUARTER", "Name": "CURBY Q FRANCIS REVOCABLE TRUST", "Address": "PO Box 305100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.172283459, "SHAPE_Area": 1075.6246922800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350317.116200000047684, 257822.822299998253584 ], [ 350310.383400000631809, 257855.908900000154972 ], [ 350329.652199998497963, 257865.776900000870228 ], [ 350339.338699996471405, 257864.589600000530481 ], [ 350345.286799997091293, 257828.963500000536442 ], [ 350333.206500001251698, 257827.175900001078844 ], [ 350317.116200000047684, 257822.822299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01073398, "LATITUDE": 18.35070117, "OBJECTID_1": 1689, "PARCEL_NO_": "102403025800", "Tax_Legal_": "FORTUNA 3C-120 WESTEND QRT", "Name": "GRANT, CONRAD & ALTHEA P", "Address": "7700 Thomasville Apts", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.28320613, "SHAPE_Area": 1015.62767789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350345.286799997091293, 257828.963500000536442 ], [ 350339.338699996471405, 257864.589600000530481 ], [ 350357.905500002205372, 257862.208500001579523 ], [ 350376.472199998795986, 257859.827300000935793 ], [ 350371.085199996829033, 257829.596799999475479 ], [ 350365.430200003087521, 257830.817099999636412 ], [ 350352.536399997770786, 257829.867199998348951 ], [ 350345.286799997091293, 257828.963500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403012000", "MAP": null, "PARCEL_NAM": "4-1-1", "ACRE": null, "LONGITUDE": -65.01594689, "LATITUDE": 18.35061121, "OBJECTID_1": 1564, "PARCEL_NO_": "102403012000", "Tax_Legal_": "FORTUNA 4-1-1 WEST END QTR", "Name": "DUGGINS, LINCOLN & EUNICE", "Address": "P.O. BOX 2823", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57400, "Improved_V": 211500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.302191658, "SHAPE_Area": 3186.1139153099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349793.977600000798702, 257799.964499998837709 ], [ 349766.237499997019768, 257837.94539999961853 ], [ 349789.437200002372265, 257859.666799999773502 ], [ 349834.606899999082088, 257858.136599998921156 ], [ 349834.624799996614456, 257856.025800000876188 ], [ 349836.296800002455711, 257849.073399998247623 ], [ 349837.117499999701977, 257847.391399998217821 ], [ 349841.199400000274181, 257841.514199998229742 ], [ 349841.244400002062321, 257836.237199999392033 ], [ 349842.127999998629093, 257827.167399998754263 ], [ 349841.337899997830391, 257825.261100001633167 ], [ 349838.953100003302097, 257821.230799999088049 ], [ 349834.964699998497963, 257816.131900001317263 ], [ 349830.956500001251698, 257813.354899998754263 ], [ 349827.749300003051758, 257811.217700000852346 ], [ 349803.635399997234344, 257802.154399998486042 ], [ 349793.977600000798702, 257799.964499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404045400", "MAP": "F9-2032-T67", "PARCEL_NAM": "65", "ACRE": ".45", "LONGITUDE": -65.00572671, "LATITUDE": 18.35067999, "OBJECTID_1": 1946, "PARCEL_NO_": "102404045400", "Tax_Legal_": "FORTUNA ESTATE 65 No.8 WESTEND QTR.", "Name": "BOLLING, DEANS M", "Address": "PO Box 305014", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68100, "Improved_V": 72100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.97565849699998, "SHAPE_Area": 2611.1279844400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350867.273900002241135, 257821.743400000035763 ], [ 350835.873999997973442, 257868.028299998492002 ], [ 350841.685699999332428, 257867.01240000128746 ], [ 350859.133584143710323, 257866.383617644198239 ], [ 350876.551361961639486, 257865.181517709424952 ], [ 350893.920199997723103, 257863.407400000840425 ], [ 350903.135435261763632, 257861.83882004377665 ], [ 350912.269860802043695, 257859.85305215648259 ], [ 350921.30460000038147, 257857.454199999570847 ], [ 350931.552118493651506, 257855.152817784692161 ], [ 350941.942100003361702, 257853.617800001055002 ], [ 350949.238411105179694, 257853.725745924952207 ], [ 350956.491963947773911, 257854.521848416159628 ], [ 350963.637999996542931, 257855.999000001698732 ], [ 350963.845543751376681, 257856.12450505484594 ], [ 350964.071183453546837, 257856.213458151119994 ], [ 350964.308538351382595, 257856.263343830534723 ], [ 350964.550896405009553, 257856.272751401120331 ], [ 350964.791404092859011, 257856.241414830874419 ], [ 350965.023260218848009, 257856.170220270898426 ], [ 350965.239908240211662, 257856.061180996417534 ], [ 350965.435221676365472, 257855.91738047421677 ], [ 350965.603677356906701, 257855.742885167041095 ], [ 350965.740511608310044, 257855.542629539937479 ], [ 350965.841854963509832, 257855.322276521124877 ], [ 350965.904841584677342, 257855.088057362881955 ], [ 350965.927690304873977, 257854.846595431037713 ], [ 350965.909754996595439, 257854.604718906222843 ], [ 350965.851542843447533, 257854.369267693109578 ], [ 350965.754699997603893, 257854.146899998188019 ], [ 350956.979489037767053, 257851.154656366124982 ], [ 350948.029884955903981, 257848.733409554581158 ], [ 350938.943000003695488, 257846.893199998885393 ], [ 350926.594730241748039, 257843.553198190173134 ], [ 350914.307499997317791, 257839.995200000703335 ], [ 350905.509700000286102, 257837.576299998909235 ], [ 350892.617353352659848, 257832.658633469080087 ], [ 350879.868711187737063, 257827.379602390137734 ], [ 350867.273900002241135, 257821.743400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403026000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0101974, "LATITUDE": 18.35056763, "OBJECTID_1": 1691, "PARCEL_NO_": "102403026000", "Tax_Legal_": "3C-122 ESTATE FORTUNA WESTEND QTR", "Name": "DANIEL, LUBIN & BEVERLY", "Address": "PO Box 305254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29800, "Improved_V": 165600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.02144957199999, "SHAPE_Area": 1175.62188803 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350397.014799997210503, 257814.821400001645088 ], [ 350406.341700002551079, 257855.849899999797344 ], [ 350420.000500001013279, 257861.661200001835823 ], [ 350433.259300000965595, 257819.762099999934435 ], [ 350414.784299999475479, 257811.378299999982119 ], [ 350406.730200000107288, 257810.256900001317263 ], [ 350398.634700000286102, 257813.990299999713898 ], [ 350397.014799997210503, 257814.821400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01044062, "LATITUDE": 18.35064105, "OBJECTID_1": 1690, "PARCEL_NO_": "102403025900", "Tax_Legal_": "FORTUNA ESTATE 3C-121 No.8 WESTEND QTR.", "Name": "FREEMAN, VELMA", "Address": "P O BOX 4203", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.25435375699999, "SHAPE_Area": 1016.98670484 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350397.014799997210503, 257814.821400001645088 ], [ 350391.323899999260902, 257820.263300001621246 ], [ 350386.459100000560284, 257823.389899998903275 ], [ 350377.55009999871254, 257827.960999999195337 ], [ 350371.085199996829033, 257829.596799999475479 ], [ 350376.472199998795986, 257859.827300000935793 ], [ 350389.389399997889996, 257858.03319999948144 ], [ 350406.341700002551079, 257855.849899999797344 ], [ 350397.014799997210503, 257814.821400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02135559, "LATITUDE": 18.35058871, "OBJECTID_1": 1346, "PARCEL_NO_": "102304050300", "Tax_Legal_": "FORTUNA 5A-1-2 WEST END QTR", "Name": "NICHOLAS, GENE & DORIS W", "Address": "PO BOX 305916", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40400, "Improved_V": 154800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.35923151200001, "SHAPE_Area": 1617.13982085 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349210.551600001752377, 257849.440400000661612 ], [ 349276.046300001442432, 257828.444899998605251 ], [ 349271.244400002062321, 257824.183800000697374 ], [ 349259.198299996554852, 257818.385600000619888 ], [ 349250.361199997365475, 257814.513599999248981 ], [ 349239.112400002777576, 257809.777499999850988 ], [ 349235.089800000190735, 257808.689100001007318 ], [ 349214.980499997735023, 257802.824999999254942 ], [ 349210.551600001752377, 257849.440400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01128994, "LATITUDE": 18.35057628, "OBJECTID_1": 1687, "PARCEL_NO_": "102403025600", "Tax_Legal_": "FORTUNA 3C-118 WESTEND QTR.", "Name": "FREEMAN, PRUDENCIA M", "Address": "PO Box 12355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.03006499599999, "SHAPE_Area": 992.56562592199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350293.004100002348423, 257813.548000000417233 ], [ 350275.105200000107288, 257832.188799999654293 ], [ 350303.1570999994874, 257852.261199999600649 ], [ 350310.383400000631809, 257855.908900000154972 ], [ 350317.116200000047684, 257822.822299998253584 ], [ 350293.004100002348423, 257813.548000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01168449, "LATITUDE": 18.35061167, "OBJECTID_1": 1678, "PARCEL_NO_": "102403024400", "Tax_Legal_": "PLOT 114 PARCEL 3C FORTUNA WEST END QUARTER", "Name": "KUNTZ, CALENSO & LORNA I", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 168000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.058038869, "SHAPE_Area": 714.18998841999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350275.105200000107288, 257832.188799999654293 ], [ 350255.067900002002716, 257817.881499998271465 ], [ 350237.94650000333786, 257839.906199999153614 ], [ 350262.009999997913837, 257854.879700001329184 ], [ 350275.105200000107288, 257832.188799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404045100", "MAP": "B9-114-T65", "PARCEL_NAM": "74", "ACRE": ".46", "LONGITUDE": -65.00466918, "LATITUDE": 18.35056638, "OBJECTID_1": 1943, "PARCEL_NO_": "102404045100", "Tax_Legal_": "FORTUNA 74 WEST END QTR", "Name": "GEORGE, ELTON & SANDRA", "Address": "4102 Estate Fortuna Ml", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68100, "Improved_V": 57400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.07060088099999, "SHAPE_Area": 2258.6106645 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350977.682800002396107, 257805.5810999982059 ], [ 350971.179899998009205, 257851.80689999833703 ], [ 350998.99040000140667, 257859.644999999552965 ], [ 351019.209299996495247, 257867.050700001418591 ], [ 351024.209200002253056, 257846.705400001257658 ], [ 351028.431999996304512, 257829.522100001573563 ], [ 351023.448704706795979, 257825.92468422386446 ], [ 351018.15400365012465, 257822.803663086437155 ], [ 351012.593299999833107, 257820.1858000010252 ], [ 351008.849899999797344, 257818.779100000858307 ], [ 351004.730752022762317, 257816.929733797791414 ], [ 351000.743299998342991, 257814.811299998313189 ], [ 350979.07379999756813, 257806.079999998211861 ], [ 350977.682800002396107, 257805.5810999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303011300", "MAP": "C9-325-T92", "PARCEL_NAM": "5-47", "ACRE": ".22", "LONGITUDE": -65.02675272, "LATITUDE": 18.35060417, "OBJECTID_1": 1191, "PARCEL_NO_": "102303011300", "Tax_Legal_": "FORTUNA 5-47 WESTEND QTR.", "Name": "WEBSTER, FOSTER G.", "Address": "1339 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24800, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.977152801, "SHAPE_Area": 921.33389222200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348681.120800003409386, 257807.954799998551607 ], [ 348644.782799996435642, 257813.990200001746416 ], [ 348647.799400001764297, 257838.501800000667572 ], [ 348684.94370000064373, 257832.473000001162291 ], [ 348681.120800003409386, 257807.954799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01828691, "LATITUDE": 18.35055673, "OBJECTID_1": 1323, "PARCEL_NO_": "102304040900", "Tax_Legal_": "BORDEAUX 77 WEST END QTR", "Name": "BAPTISTE, HAMILTON O. & CAROL E", "Address": "PO Box 10982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29800, "Improved_V": 120600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.85918125200001, "SHAPE_Area": 1216.4709843400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349578.325400002300739, 257841.262499999254942 ], [ 349586.550300002098083, 257822.331399999558926 ], [ 349542.357799999415874, 257803.815699998289347 ], [ 349539.866899996995926, 257812.239000000059605 ], [ 349537.417400002479553, 257815.807599999010563 ], [ 349534.107699997723103, 257825.701900001615286 ], [ 349533.274400003254414, 257828.8614999987185 ], [ 349550.154799997806549, 257835.121300000697374 ], [ 349578.287600003182888, 257845.695199999958277 ], [ 349578.325400002300739, 257841.262499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404045000", "MAP": "B9-114-T65", "PARCEL_NAM": "72", "ACRE": ".47", "LONGITUDE": -65.00409771, "LATITUDE": 18.35034209, "OBJECTID_1": 1942, "PARCEL_NO_": "102404045000", "Tax_Legal_": "72 FORTUNA WEST END QTR", "Name": "HODGE, DICARLO E. & JOAN E. REY", "Address": "PO Box 305675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71100, "Improved_V": 222500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.76791475, "SHAPE_Area": 2086.9129394000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351120.919799998402596, 257827.749699998646975 ], [ 351107.927400000393391, 257821.449700001627207 ], [ 351039.393200002610683, 257788.217599999159575 ], [ 351033.378600001335144, 257785.698399998247623 ], [ 351029.840499997138977, 257784.216499999165535 ], [ 351027.877300001680851, 257797.824099998921156 ], [ 351024.845299996435642, 257818.839899998158216 ], [ 351027.003200002014637, 257819.150400001555681 ], [ 351027.07019114785362, 257819.578256271313876 ], [ 351027.203289892000612, 257819.990364904428134 ], [ 351027.399218810256571, 257820.376578135910677 ], [ 351027.653153348015621, 257820.727385849226266 ], [ 351027.958840619889088, 257821.034149753540987 ], [ 351028.308753381075803, 257821.289316092908848 ], [ 351028.694275377958547, 257821.486601650161901 ], [ 351029.105913515028078, 257821.621148464735597 ], [ 351029.533531612716615, 257821.689643455232726 ], [ 351029.966600000858307, 257821.690400000661612 ], [ 351035.681599996984005, 257821.690400000661612 ], [ 351035.893200002610683, 257828.252099998295307 ], [ 351120.919799998402596, 257827.749699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604026100", "MAP": "G9-873-T66", "PARCEL_NAM": "9L", "ACRE": ".89", "LONGITUDE": -64.97253679000001, "LATITUDE": 18.35047197, "OBJECTID_1": 2745, "PARCEL_NO_": "102604026100", "Tax_Legal_": "9L CROWN&HAWK No.3 SOUTHSIDE QTR.", "Name": "TURNBULL, TIMOTHY W. & CHARLENE BUCHANAN-TURNBULL", "Address": "1601 Dronnigens Gade-Number10", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99700, "Improved_V": 140600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.887442647, "SHAPE_Area": 4292.0399222100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354424.403599999845028, 257864.460099998861551 ], [ 354447.829800002276897, 257859.58559999987483 ], [ 354459.105599999427795, 257861.155499998480082 ], [ 354409.266800001263618, 257809.362900000065565 ], [ 354364.990299999713898, 257848.623500000685453 ], [ 354348.898400001227856, 257862.80460000038147 ], [ 354333.123800002038479, 257876.706000000238419 ], [ 354345.169200003147125, 257889.142799999564886 ], [ 354347.607900001108646, 257886.840700000524521 ], [ 354367.792700000107288, 257883.839499998837709 ], [ 354380.720600001513958, 257880.778999999165535 ], [ 354409.834200002253056, 257870.884700000286102 ], [ 354413.8783999979496, 257869.440200001001358 ], [ 354424.403599999845028, 257864.460099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01797112, "LATITUDE": 18.35054244, "OBJECTID_1": 1320, "PARCEL_NO_": "102304040600", "Tax_Legal_": "BORDEAUX 74 WEST END QTR", "Name": "NOEL A MARTIN", "Address": "BOX 3681", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32800, "Improved_V": 55400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.6742790606, "SHAPE_Area": 308.33153565499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349600.351199999451637, 257811.467500001192093 ], [ 349591.478100001811981, 257811.817099999636412 ], [ 349586.550300002098083, 257822.331399999558926 ], [ 349578.325400002300739, 257841.262499999254942 ], [ 349580.744300000369549, 257841.282299999147654 ], [ 349581.57940000295639, 257837.911699999123812 ], [ 349586.460400000214577, 257832.885400000959635 ], [ 349594.548699997365475, 257829.996300000697374 ], [ 349603.434299997985363, 257828.169100001454353 ], [ 349600.351199999451637, 257811.467500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97128948, "LATITUDE": 18.3504606, "OBJECTID_1": 2725, "PARCEL_NO_": "102604023900", "Tax_Legal_": "CROWN & HAWK 9J S S QTR", "Name": "TODMAN, HILLIS C., HILLAIRE WOODARD & BERNARD H. wHEATLEY", "Address": "1660 Peachtree Street NW", "City": "Atlanta", "State": "Georgia", "Zip": 303092442, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.327141453, "SHAPE_Area": 1210.23196899 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354541.603799998760223, 257831.970400001853704 ], [ 354513.374099999666214, 257832.765799999237061 ], [ 354513.320900000631809, 257839.012200001627207 ], [ 354512.455300003290176, 257845.971200000494719 ], [ 354509.145499996840954, 257855.865499999374151 ], [ 354521.834299996495247, 257880.878400001674891 ], [ 354541.29730000346899, 257867.94990000128746 ], [ 354541.603799998760223, 257831.970400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403026600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00899553000001, "LATITUDE": 18.35047024, "OBJECTID_1": 1697, "PARCEL_NO_": "102403026600", "Tax_Legal_": "3C-132 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "JAMES, ARLENE & MATTHEWS, CYNTHIA", "Address": "PO Box 12331", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.25138977500001, "SHAPE_Area": 1220.5653999599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350526.939599998295307, 257803.148699998855591 ], [ 350526.57039999961853, 257846.490299999713898 ], [ 350542.694899998605251, 257846.833399999886751 ], [ 350562.805799998342991, 257817.546300001442432 ], [ 350559.883000001311302, 257808.606499999761581 ], [ 350558.589699998497963, 257804.65089999884367 ], [ 350551.326300002634525, 257804.299899999052286 ], [ 350526.939599998295307, 257803.148699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403026500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00923841, "LATITUDE": 18.35048675, "OBJECTID_1": 1696, "PARCEL_NO_": "102403026500", "Tax_Legal_": "FORTUNA 3C-131 WEST END QUARTER", "Name": "LLOYD, BERNADINE P", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32900, "Improved_V": 294100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.24938099100001, "SHAPE_Area": 945.47203402800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350526.939599998295307, 257803.148699998855591 ], [ 350519.537100002169609, 257802.807599999010563 ], [ 350505.171099998056889, 257802.745600000023842 ], [ 350504.80179999768734, 257846.101100001484156 ], [ 350526.57039999961853, 257846.490299999713898 ], [ 350526.939599998295307, 257803.148699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403026400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00944465000001, "LATITUDE": 18.35048422, "OBJECTID_1": 1695, "PARCEL_NO_": "102403026400", "Tax_Legal_": "FORTUNA 3C-130 WESTEND QTR.", "Name": "ROSE, VIRGINIA", "Address": "PO Box 8595", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38400, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.82134180700001, "SHAPE_Area": 948.06135428100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350505.171099998056889, 257802.745600000023842 ], [ 350494.283669962955173, 257802.403623182035517 ], [ 350483.407200001180172, 257801.807399999350309 ], [ 350483.033100001513958, 257845.711800001561642 ], [ 350504.80179999768734, 257846.101100001484156 ], [ 350505.171099998056889, 257802.745600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403026300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00968318, "LATITUDE": 18.35043755, "OBJECTID_1": 1694, "PARCEL_NO_": "102403026300", "Tax_Legal_": "FORTUNA 3C-129 WEST END QUARTER", "Name": "HEDRINGTON, LENNY", "Address": "PO Box 306343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36800, "Improved_V": 133800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.14437980899999, "SHAPE_Area": 1136.38882223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350483.407200001180172, 257801.807399999350309 ], [ 350460.045699998736382, 257799.083099998533726 ], [ 350452.797899998724461, 257797.968299999833107 ], [ 350451.773999996483326, 257823.502300001680851 ], [ 350461.361599996685982, 257833.924300000071526 ], [ 350483.033100001513958, 257845.711800001561642 ], [ 350483.407200001180172, 257801.807399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01703343, "LATITUDE": 18.35037104, "OBJECTID_1": 1329, "PARCEL_NO_": "102304041500", "Tax_Legal_": "FORTUNA 4-1-4 WEST END QTR", "Name": "TAPIA, HELEN", "Address": "PO Box 1525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 165000, "Improved_V": 238000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.383784158, "SHAPE_Area": 2023.7643126600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349696.64580000191927, 257771.936799999326468 ], [ 349659.222800001502037, 257810.682799998670816 ], [ 349697.690200001001358, 257838.65089999884367 ], [ 349720.644599996507168, 257794.509100001305342 ], [ 349705.421700000762939, 257782.985500000417233 ], [ 349696.64580000191927, 257771.936799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01393049000001, "LATITUDE": 18.35035985, "OBJECTID_1": 1584, "PARCEL_NO_": "102403014000", "Tax_Legal_": "FORTUNA 3A-8 WEST END QTR", "Name": "GORDON, LEROY", "Address": "100-2 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.47289947199999, "SHAPE_Area": 1890.5785217099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350042.183399997651577, 257818.250100001692772 ], [ 350038.511500000953674, 257776.001299999654293 ], [ 349994.8141999989748, 257794.008799999952316 ], [ 350008.122299998998642, 257840.980500001460314 ], [ 350023.539300002157688, 257829.707699999213219 ], [ 350042.183399997651577, 257818.250100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01189733, "LATITUDE": 18.35045496, "OBJECTID_1": 1677, "PARCEL_NO_": "102403024300", "Tax_Legal_": "3C-115 ESTATE FORTUNA No.2 WESTEND QTR.", "Name": "YVONNE B GIBBONS and STEVE S GIBBONS", "Address": "PO Box 8491", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35600, "Improved_V": 225800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.026781903, "SHAPE_Area": 979.54422068199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350255.067900002002716, 257817.881499998271465 ], [ 350240.737700000405312, 257796.232700001448393 ], [ 350210.690099999308586, 257821.106899999082088 ], [ 350222.705700002610683, 257830.493400000035763 ], [ 350237.94650000333786, 257839.906199999153614 ], [ 350255.067900002002716, 257817.881499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303013500", "MAP": "A9-512-T98", "PARCEL_NAM": "5-55", "ACRE": ".26", "LONGITUDE": -65.02634612, "LATITUDE": 18.3504543, "OBJECTID_1": 1212, "PARCEL_NO_": "102303013500", "Tax_Legal_": "5-55 ESTATE FORTUNA #8 WEST END QTR", "Name": "KING, SR. CUTHBERT & THOMAS, F", "Address": "PO Box 8904", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51000, "Improved_V": 169700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.84912593799999, "SHAPE_Area": 1235.6238469100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348728.061300002038479, 257787.862900000065565 ], [ 348687.700699999928474, 257792.809900000691414 ], [ 348692.247299998998642, 257827.044300001114607 ], [ 348724.539399996399879, 257822.664599999785423 ], [ 348725.529100000858307, 257801.141100000590086 ], [ 348728.061300002038479, 257787.862900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01872158, "LATITUDE": 18.35040774, "OBJECTID_1": 1284, "PARCEL_NO_": "102304024100", "Tax_Legal_": "BORDEAUX 81 WEST END QTR", "Name": "PIERRE, GLEWORTH & PATRICIA H", "Address": "CROWN BAY MARINA, SUITE 521", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28700, "Improved_V": 118800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.77813433099999, "SHAPE_Area": 1121.5819520299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349535.138700000941753, 257799.323600001633167 ], [ 349504.614000000059605, 257785.563799999654293 ], [ 349497.213299997150898, 257802.390700001269579 ], [ 349496.387199997901917, 257804.706000000238419 ], [ 349493.070200003683567, 257815.444600000977516 ], [ 349522.76349999755621, 257832.152899999171495 ], [ 349528.562399998307228, 257814.046399999409914 ], [ 349531.033500000834465, 257807.944899998605251 ], [ 349535.138700000941753, 257799.323600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02092046, "LATITUDE": 18.35028872, "OBJECTID_1": 1351, "PARCEL_NO_": "102304050800", "Tax_Legal_": "5A-3 FORTUNA WEST END QTR", "Name": "THOMAS(Life Estate), EMMA U.", "Address": "PO BOX 302574", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 162600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.37970115600001, "SHAPE_Area": 1362.5072800099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349283.029100000858307, 257766.018399998545647 ], [ 349259.471600003540516, 257786.301699999719858 ], [ 349261.048299998044968, 257790.536400001496077 ], [ 349270.560400001704693, 257809.823800001293421 ], [ 349276.150600001215935, 257816.202399998903275 ], [ 349281.758799999952316, 257820.470100000500679 ], [ 349285.748999997973442, 257825.357900001108646 ], [ 349302.245700001716614, 257782.007699999958277 ], [ 349291.027500003576279, 257773.683200001716614 ], [ 349283.029100000858307, 257766.018399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02064319, "LATITUDE": 18.35038712, "OBJECTID_1": 1352, "PARCEL_NO_": "102304050900", "Tax_Legal_": "FORTUNA 5A-4 WEST END QTR", "Name": "MC BEAN, MELVIN", "Address": "2805 Silke Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30800, "Improved_V": 113900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.747494233, "SHAPE_Area": 1127.71050952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349302.245700001716614, 257782.007699999958277 ], [ 349285.748999997973442, 257825.357900001108646 ], [ 349336.688799999654293, 257809.098499998450279 ], [ 349331.175899997353554, 257793.643500000238419 ], [ 349322.324400000274181, 257791.460099998861551 ], [ 349318.305399999022484, 257789.949599999934435 ], [ 349307.053000003099442, 257785.635600000619888 ], [ 349302.245700001716614, 257782.007699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01162618, "LATITUDE": 18.35033613, "OBJECTID_1": 1686, "PARCEL_NO_": "102403025500", "Tax_Legal_": "FORTUNA 3C-117 WESTEND QTR.", "Name": "THOMAS, MARSLEY & EUTHANIE", "Address": "PO Box 12176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.07886749100001, "SHAPE_Area": 1324.1277633499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350268.242200002074242, 257785.903099998831749 ], [ 350233.572599999606609, 257785.408300001174212 ], [ 350240.737700000405312, 257796.232700001448393 ], [ 350255.067900002002716, 257817.881499998271465 ], [ 350275.105200000107288, 257832.188799999654293 ], [ 350293.004100002348423, 257813.548000000417233 ], [ 350285.770700000226498, 257810.744500000029802 ], [ 350279.365199998021126, 257805.414799999445677 ], [ 350276.965999998152256, 257803.073100000619888 ], [ 350273.774899996817112, 257799.036200001835823 ], [ 350270.592799998819828, 257793.943900000303984 ], [ 350269.800899997353554, 257792.248700000345707 ], [ 350268.242200002074242, 257785.903099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01819191, "LATITUDE": 18.3503455, "OBJECTID_1": 1324, "PARCEL_NO_": "102304041000", "Tax_Legal_": "BORDEAUX 78 WEST END QTR", "Name": "PHILIP, WILMA A.", "Address": "PO Box 8793", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29800, "Improved_V": 109500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.455326329, "SHAPE_Area": 1208.6416084499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349597.224799998104572, 257799.831799998879433 ], [ 349553.037699997425079, 257780.682799998670816 ], [ 349542.357799999415874, 257803.815699998289347 ], [ 349586.550300002098083, 257822.331399999558926 ], [ 349591.478100001811981, 257811.817099999636412 ], [ 349597.224799998104572, 257799.831799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604025800", "MAP": "G9-873-T66", "PARCEL_NAM": "9M", "ACRE": null, "LONGITUDE": -64.97206836, "LATITUDE": 18.35010849, "OBJECTID_1": 2742, "PARCEL_NO_": "102604025800", "Tax_Legal_": "CROWN & HAWK 9M S S QTR", "Name": "FREDERICK, LISA", "Address": "PO Box 10830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.39435321500002, "SHAPE_Area": 2698.9170723399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354460.562799997627735, 257784.751600001007318 ], [ 354464.594499997794628, 257760.302700001746416 ], [ 354444.64580000191927, 257777.991599999368191 ], [ 354409.266800001263618, 257809.362900000065565 ], [ 354459.105599999427795, 257861.155499998480082 ], [ 354466.355200000107288, 257862.059200000017881 ], [ 354460.129299998283386, 257794.812199998646975 ], [ 354454.036799997091293, 257793.564100001007318 ], [ 354455.752599999308586, 257784.809099998325109 ], [ 354460.562799997627735, 257784.751600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604027400", "MAP": "D9-7065-T002", "PARCEL_NAM": "9Z", "ACRE": ".53", "LONGITUDE": -64.97172656, "LATITUDE": 18.350279, "OBJECTID_1": 2757, "PARCEL_NO_": "102604027400", "Tax_Legal_": "9Z ESTATE CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "HODGE, G. & R. E. & FLEMING, HELEN", "Address": "2065SE Allamanda Dr", "City": "Port Saint Lucie", "State": "Florida", "Zip": 34952, "Country": "United States", "Land_Value": 77800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.86861834699999, "SHAPE_Area": 2042.7063744899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354463.696400001645088, 257795.543000001460314 ], [ 354460.129299998283386, 257794.812199998646975 ], [ 354466.355200000107288, 257862.059200000017881 ], [ 354488.933700002729893, 257862.032900001853704 ], [ 354492.986900001764297, 257859.532999999821186 ], [ 354495.421999998390675, 257857.653099998831749 ], [ 354499.48589999973774, 257853.886599998921156 ], [ 354501.939000003039837, 257849.895899999886751 ], [ 354503.605599999427795, 257843.576799999922514 ], [ 354504.501800000667572, 257833.029399998486042 ], [ 354502.934199996292591, 257827.73930000141263 ], [ 354499.757500000298023, 257822.013700000941753 ], [ 354493.359099999070168, 257815.839699998497963 ], [ 354467.71000000089407, 257797.686799999326468 ], [ 354463.696400001645088, 257795.543000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303011400", "MAP": "C9-325-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02679551, "LATITUDE": 18.35035936, "OBJECTID_1": 1192, "PARCEL_NO_": "102303011400", "Tax_Legal_": "FORTUNA 5-46 WESTEND QTR.", "Name": "MALONE, BEVERLY & FRANCIS, MIC", "Address": "PO Box 303266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21600, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.585362885, "SHAPE_Area": 1103.4531267499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348676.523900002241135, 257779.630699999630451 ], [ 348640.211000002920628, 257782.710999999195337 ], [ 348644.782799996435642, 257813.990200001746416 ], [ 348681.120800003409386, 257807.954799998551607 ], [ 348676.523900002241135, 257779.630699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014300", "MAP": null, "PARCEL_NAM": "4-1-26", "ACRE": null, "LONGITUDE": -65.01503676, "LATITUDE": 18.34999962, "OBJECTID_1": 1587, "PARCEL_NO_": "102403014300", "Tax_Legal_": "FORTUNA 4-1-26 WEST END QTR", "Name": "HILAIRE, FAITH", "Address": "PO Box 304146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78300, "Improved_V": 190000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.33468236599998, "SHAPE_Area": 3799.0277086800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349870.283500000834465, 257740.427299998700619 ], [ 349888.434900000691414, 257786.805399999022484 ], [ 349902.641000002622604, 257823.0185999982059 ], [ 349918.004100002348423, 257818.078099999576807 ], [ 349933.147100001573563, 257744.319299999624491 ], [ 349926.721799999475479, 257741.3114 ], [ 349917.089199997484684, 257736.166299998760223 ], [ 349912.274700000882149, 257733.382699999958277 ], [ 349905.075400002300739, 257726.568799998611212 ], [ 349903.498700000345707, 257722.333999998867512 ], [ 349901.896899998188019, 257721.054400000721216 ], [ 349901.131999999284744, 257716.192899998277426 ], [ 349901.167900003492832, 257711.971400000154972 ], [ 349870.283500000834465, 257740.427299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403034200", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-116", "ACRE": null, "LONGITUDE": -65.01207958000001, "LATITUDE": 18.35029101, "OBJECTID_1": 1745, "PARCEL_NO_": "102403034200", "Tax_Legal_": "FORTUNA 3C-116 WEST END QUARTER", "Name": "WILLIAMS, KELVIN", "Address": "P O BOX 3412", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 200100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.17031179099999, "SHAPE_Area": 1012.13736937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350233.572599999606609, 257785.408300001174212 ], [ 350214.222900003194809, 257785.038800001144409 ], [ 350189.875299997627735, 257803.415800001472235 ], [ 350198.678199999034405, 257811.298300001770258 ], [ 350210.690099999308586, 257821.106899999082088 ], [ 350240.737700000405312, 257796.232700001448393 ], [ 350233.572599999606609, 257785.408300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404045600", "MAP": "B9-114-T65", "PARCEL_NAM": "76", "ACRE": ".46", "LONGITUDE": -65.00566386, "LATITUDE": 18.35032369, "OBJECTID_1": 1948, "PARCEL_NO_": "102404045600", "Tax_Legal_": "76 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "HARRIGAN, KEDITH &WARRION", "Address": "22-10 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56700, "Improved_V": 132100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.16863196899999, "SHAPE_Area": 2282.4421955500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350897.555600002408028, 257797.98369999974966 ], [ 350896.527500003576279, 257798.080299999564886 ], [ 350892.251288846659008, 257797.42563312817947 ], [ 350888.146587856521364, 257796.059616893850034 ], [ 350884.330834675580263, 257794.02133373558172 ], [ 350880.913199998438358, 257791.369100000709295 ], [ 350866.440499998629093, 257777.822399999946356 ], [ 350865.344815763703082, 257777.504492614476476 ], [ 350864.213718836486805, 257777.35546647728188 ], [ 350863.073084002302494, 257777.37873068547924 ], [ 350861.949004234105814, 257777.57375305093592 ], [ 350860.867193793819752, 257777.936072274431353 ], [ 350859.852399997413158, 257778.457400001585484 ], [ 350859.260285080585163, 257779.640129608393181 ], [ 350858.871563386928756, 257780.904386244685156 ], [ 350858.696903788018972, 257782.215471071103821 ], [ 350858.741099998354912, 257783.537399999797344 ], [ 350860.204614402900916, 257794.878372898703674 ], [ 350862.07490000128746, 257806.159400001168251 ], [ 350862.283736331213731, 257808.580209024657961 ], [ 350862.904372533143032, 257810.929408813040936 ], [ 350863.918442955822684, 257813.137482661113609 ], [ 350865.29593957925681, 257815.139090013573878 ], [ 350866.996100001037121, 257816.875 ], [ 350887.996200002729893, 257826.228199999779463 ], [ 350892.011600002646446, 257828.160900000482798 ], [ 350907.941299997270107, 257834.364700000733137 ], [ 350920.806000001728535, 257838.049699999392033 ], [ 350930.563799999654293, 257799.477800000458956 ], [ 350922.479400001466274, 257798.46000000089407 ], [ 350910.024858434335329, 257797.836798358039232 ], [ 350897.555600002408028, 257797.98369999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014400", "MAP": null, "PARCEL_NAM": "4-1-25", "ACRE": null, "LONGITUDE": -65.01455314, "LATITUDE": 18.35012339, "OBJECTID_1": 1588, "PARCEL_NO_": "102403014400", "Tax_Legal_": "FORTUNA 4-1-25 WEST END QTR", "Name": "HODGE, A. & WILLIAMS, N", "Address": "PO Box 8071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70500, "Improved_V": 144500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.07002731, "SHAPE_Area": 3586.35163827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349933.147100001573563, 257744.319299999624491 ], [ 349918.004100002348423, 257818.078099999576807 ], [ 349943.876199997961521, 257810.057199999690056 ], [ 349994.8141999989748, 257794.008799999952316 ], [ 349982.281800001859665, 257750.632100000977516 ], [ 349972.593500003218651, 257752.030499998480082 ], [ 349963.72580000013113, 257751.746800001710653 ], [ 349933.147100001573563, 257744.319299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-C", "ACRE": null, "LONGITUDE": -65.01117051, "LATITUDE": 18.34982922, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 915.48987366699998, "SHAPE_Area": 22276.745179199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350418.239699997007847, 257784.386599998921156 ], [ 350422.276699997484684, 257783.786299999803305 ], [ 350433.548900000751019, 257785.778400000184774 ], [ 350467.890299998223782, 257792.347699999809265 ], [ 350479.577492623939179, 257793.881303334783297 ], [ 350491.226599998772144, 257795.681499999016523 ], [ 350503.994101183663588, 257796.477035555668408 ], [ 350516.785400003194809, 257796.63399999961257 ], [ 350531.536266890645493, 257797.725794158730423 ], [ 350546.313000001013279, 257798.380199998617172 ], [ 350551.363056957547087, 257799.175282869604416 ], [ 350556.474210794025566, 257799.281765242078109 ], [ 350561.553000003099442, 257798.697700001299381 ], [ 350563.063513564353343, 257798.467619345174171 ], [ 350564.519825424766168, 257798.005294683971442 ], [ 350565.88645700115012, 257797.321989143645624 ], [ 350567.130114496219903, 257796.434349373186706 ], [ 350568.220499999821186, 257795.364000000059605 ], [ 350570.465218494588044, 257793.014453092648182 ], [ 350572.357100002467632, 257790.372499998658895 ], [ 350568.17790000140667, 257789.83559999987483 ], [ 350519.043200001120567, 257783.522900000214577 ], [ 350450.605499997735023, 257771.352600000798702 ], [ 350418.372800000011921, 257768.766699999570847 ], [ 350412.735799998044968, 257767.876200001686811 ], [ 350398.24549999833107, 257765.013399999588728 ], [ 350393.420199997723103, 257763.496300000697374 ], [ 350387.792199999094009, 257761.550400000065565 ], [ 350330.909100003540516, 257718.232799999415874 ], [ 350262.848999999463558, 257661.736000001430511 ], [ 350254.829099997878075, 257656.604100000113249 ], [ 350249.213699996471405, 257653.180599998682737 ], [ 350196.542599998414516, 257683.3581000007689 ], [ 350214.222900003194809, 257785.038800001144409 ], [ 350233.572599999606609, 257785.408300001174212 ], [ 350268.242200002074242, 257785.903099998831749 ], [ 350277.917999997735023, 257785.982299998402596 ], [ 350279.501800000667572, 257789.372800000011921 ], [ 350280.282999999821186, 257792.334499999880791 ], [ 350282.674900002777576, 257795.520500000566244 ], [ 350285.871399998664856, 257798.924100000411272 ], [ 350289.075099997222424, 257801.483500000089407 ], [ 350293.885999999940395, 257804.689300000667572 ], [ 350322.026000000536442, 257814.418800000101328 ], [ 350341.337899997830391, 257819.220899999141693 ], [ 350363.894900001585484, 257821.72749999910593 ], [ 350372.780500002205372, 257819.900400001555681 ], [ 350382.494000002741814, 257815.546999998390675 ], [ 350388.9949000030756, 257809.689500000327826 ], [ 350406.096500001847744, 257789.986699998378754 ], [ 350413.39639999717474, 257784.980200000107288 ], [ 350418.239699997007847, 257784.386599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01348695, "LATITUDE": 18.35019379, "OBJECTID_1": 1585, "PARCEL_NO_": "102403014100", "Tax_Legal_": "FORTUNA 3A-9 WEST END QTR", "Name": "SHEPPARD, DALE & LYDIA", "Address": "P.O. BOX 5846", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54800, "Improved_V": 164400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.84401344, "SHAPE_Area": 2178.9971180100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350096.361000001430511, 257800.539500001817942 ], [ 350093.462999999523163, 257762.096700001507998 ], [ 350038.511500000953674, 257776.001299999654293 ], [ 350042.183399997651577, 257818.250100001692772 ], [ 350052.706799998879433, 257813.481100000441074 ], [ 350063.224899999797344, 257809.345300000160933 ], [ 350067.267200000584126, 257808.111800000071526 ], [ 350084.246500000357628, 257802.76240000128746 ], [ 350096.361000001430511, 257800.539500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0222726, "LATITUDE": 18.35014621, "OBJECTID_1": 1347, "PARCEL_NO_": "102304050400", "Tax_Legal_": "FORTUNA 5A-1-3 WEST END QTR", "Name": "HARLEY, RAMONA, GWENDOLYN & JU", "Address": "BOX 4071", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.24623535200001, "SHAPE_Area": 1245.40763926 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349143.673699997365475, 257748.834699999541044 ], [ 349121.114900000393391, 257746.539200000464916 ], [ 349135.897200003266335, 257809.777100000530481 ], [ 349148.857500001788139, 257802.917100001126528 ], [ 349155.327799998223782, 257800.647999998182058 ], [ 349143.673699997365475, 257748.834699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802023500", "MAP": "D9-1463-T79", "PARCEL_NAM": "5A-33", "ACRE": ".06", "LONGITUDE": -65.02037193, "LATITUDE": 18.35034744, "OBJECTID_1": 7298, "PARCEL_NO_": "104802023500", "Tax_Legal_": "FORUTNA 5A-32&33 WEST END QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 188700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.191265204499999, "SHAPE_Area": 173.01508275 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349347.199600003659725, 257805.807000000029802 ], [ 349341.686700001358986, 257790.352099999785423 ], [ 349337.631800003349781, 257793.063099998980761 ], [ 349331.175899997353554, 257793.643500000238419 ], [ 349336.688799999654293, 257809.098499998450279 ], [ 349347.199600003659725, 257805.807000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01728592000001, "LATITUDE": 18.35010196, "OBJECTID_1": 1328, "PARCEL_NO_": "102304041400", "Tax_Legal_": "FORTUNA 4-1-5 8 WEST END QTR", "Name": "MADURO, DWAYNE", "Address": "4-1-5 Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46100, "Improved_V": 99400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.934441838, "SHAPE_Area": 2423.3286203500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349683.390500001609325, 257738.704700000584126 ], [ 349681.376999996602535, 257734.20380000025034 ], [ 349675.960400000214577, 257739.048000000417233 ], [ 349648.297600001096725, 257767.952500000596046 ], [ 349628.769900001585484, 257788.479800000786781 ], [ 349630.371699996292591, 257789.759500000625849 ], [ 349659.222800001502037, 257810.682799998670816 ], [ 349696.64580000191927, 257771.936799999326468 ], [ 349693.470899999141693, 257766.000199999660254 ], [ 349691.888800002634525, 257762.398600000888109 ], [ 349686.377700001001358, 257746.732599999755621 ], [ 349683.390500001609325, 257738.704700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403011900", "MAP": "D9-4736-T89", "PARCEL_NAM": "4-1-28", "ACRE": ".31", "LONGITUDE": -65.01572495000001, "LATITUDE": 18.35024537, "OBJECTID_1": 1563, "PARCEL_NO_": "102403011900", "Tax_Legal_": "FORTUNA 4-1-28 WEST END QTR", "Name": "DENNIS, JACQUELINE", "Address": "PO Box 305236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.955615319, "SHAPE_Area": 1587.32579233 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349860.071900002658367, 257803.249600000679493 ], [ 349833.753100000321865, 257769.048200000077486 ], [ 349794.92059999704361, 257783.929099999368191 ], [ 349779.535899996757507, 257791.402499999850988 ], [ 349794.054999999701977, 257790.888099998235703 ], [ 349805.325400002300739, 257793.0912000015378 ], [ 349831.048199996352196, 257802.589899998158216 ], [ 349843.873700000345707, 257811.5608000010252 ], [ 349849.424400001764297, 257822.583099998533726 ], [ 349849.887500002980232, 257823.449000000953674 ], [ 349862.387800000607967, 257810.8885000012815 ], [ 349860.071900002658367, 257803.249600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02142138000001, "LATITUDE": 18.35017397, "OBJECTID_1": 1350, "PARCEL_NO_": "102304050700", "Tax_Legal_": "FORTUNA ESTATE 5A-1-6 No.8 WESTEND QTR.", "Name": "BUNCOME, LAWSON, MALCOLM D. & LEST", "Address": "PO Box 10150", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.162219768, "SHAPE_Area": 1532.0348002400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349208.126500003039837, 257755.484000001102686 ], [ 349207.808300003409386, 257792.844900000840425 ], [ 349223.912900000810623, 257795.509799998253584 ], [ 349239.999600000679493, 257800.285599999129772 ], [ 349253.663800001144409, 257805.463599998503923 ], [ 349256.894400000572205, 257804.856800001114607 ], [ 349256.923199996352196, 257801.479499999433756 ], [ 349239.475599996745586, 257767.139600001275539 ], [ 349236.289899997413158, 257762.469500001519918 ], [ 349234.713299997150898, 257758.234700001776218 ], [ 349208.126500003039837, 257755.484000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02011882, "LATITUDE": 18.35019186, "OBJECTID_1": 1353, "PARCEL_NO_": "102304051000", "Tax_Legal_": "FORTUNA 5A-5 WEST END QTR", "Name": "JACOME, JOYCE (LIFE ESTATE)", "Address": "6811 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.368466316, "SHAPE_Area": 1522.0797522800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349391.672700002789497, 257791.394400000572205 ], [ 349395.848099999129772, 257774.54109999909997 ], [ 349349.202399998903275, 257760.016100000590086 ], [ 349346.601899996399879, 257781.31529999896884 ], [ 349345.765000000596046, 257784.896999999880791 ], [ 349344.944300003349781, 257786.578999999910593 ], [ 349341.686700001358986, 257790.352099999785423 ], [ 349347.199600003659725, 257805.807000000029802 ], [ 349356.094200000166893, 257802.924499999731779 ], [ 349391.672700002789497, 257791.394400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304050500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02203414, "LATITUDE": 18.3501106, "OBJECTID_1": 1348, "PARCEL_NO_": "102304050500", "Tax_Legal_": "FORTUNA 5A-1-4 WEST END QTR", "Name": "JEFF POTTER", "Address": "1091 Castlevecchio Loop", "City": "Orlando", "State": "Florida", "Zip": 328258893, "Country": "United States", "Land_Value": 29100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.80058008, "SHAPE_Area": 1402.33877975 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349179.927199997007847, 257752.719999998807907 ], [ 349143.673699997365475, 257748.834699999541044 ], [ 349155.327799998223782, 257800.647999998182058 ], [ 349169.076499998569489, 257795.9054000005126 ], [ 349179.578299999237061, 257793.669300001114607 ], [ 349179.927199997007847, 257752.719999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404045700", "MAP": "B9-114-T65", "PARCEL_NAM": "67", "ACRE": ".46", "LONGITUDE": -65.00607196, "LATITUDE": 18.34989092, "OBJECTID_1": 1949, "PARCEL_NO_": "102404045700", "Tax_Legal_": "FORTUNA 67 WEST END QTR", "Name": "BROWNE, CLEMENT", "Address": "PO Box 307375", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69600, "Improved_V": 212200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.41684449499999, "SHAPE_Area": 1981.1172194400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350831.72240000218153, 257789.72690000012517 ], [ 350856.354400001466274, 257792.364000000059605 ], [ 350856.236645218450576, 257786.724900177854579 ], [ 350856.719034239940811, 257781.10523703621584 ], [ 350857.796099998056889, 257775.56870000064373 ], [ 350858.598200000822544, 257774.718899998813868 ], [ 350859.610070470487699, 257774.13570906635141 ], [ 350860.699379695928656, 257773.714521551795769 ], [ 350861.8403787536663, 257773.465293420653325 ], [ 350863.006096883851569, 257773.393915889057098 ], [ 350864.168979021080304, 257773.502076168137137 ], [ 350865.30153713672189, 257773.787217581819277 ], [ 350866.376999996602535, 257774.242600001394749 ], [ 350872.269500002264977, 257779.249299999326468 ], [ 350872.269199997186661, 257779.236699998378754 ], [ 350871.098899997770786, 257727.298099998384714 ], [ 350829.473200000822544, 257747.305399999022484 ], [ 350831.72240000218153, 257789.72690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403017100", "MAP": "D9-4736-T89", "PARCEL_NAM": "4-1-28A", "ACRE": ".23", "LONGITUDE": -65.01541796, "LATITUDE": 18.35008498, "OBJECTID_1": 1613, "PARCEL_NO_": "102403017100", "Tax_Legal_": "FORTUNA 4-1-28A WEST END QTR", "Name": "DENNIS, MARIO & JACQUELINE", "Address": "PO Box 305236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035236, "Country": "United States", "Land_Value": 21600, "Improved_V": 156400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.831281147, "SHAPE_Area": 1909.0575765599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349887.847999997437, 257785.305799998342991 ], [ 349870.283500000834465, 257740.427299998700619 ], [ 349833.753100000321865, 257769.048200000077486 ], [ 349860.071900002658367, 257803.249600000679493 ], [ 349862.387800000607967, 257810.8885000012815 ], [ 349868.170500002801418, 257805.077899999916553 ], [ 349880.838899999856949, 257792.348600000143051 ], [ 349887.847999997437, 257785.305799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303013600", "MAP": "A9-512-T98", "PARCEL_NAM": "5-56", "ACRE": ".25", "LONGITUDE": -65.02633982, "LATITUDE": 18.35018573, "OBJECTID_1": 1213, "PARCEL_NO_": "102303013600", "Tax_Legal_": "5-56 ESTATE FORTUNA #8 WESTEND QTR", "Name": "JAMES, JULIE L. A", "Address": "PO Box 304974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.27367226300001, "SHAPE_Area": 1138.9410300699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348735.537500001490116, 257762.170699998736382 ], [ 348683.87780000269413, 257768.291799999773502 ], [ 348687.700699999928474, 257792.809900000691414 ], [ 348728.061300002038479, 257787.862900000065565 ], [ 348729.729699999094009, 257781.332699999213219 ], [ 348733.887100003659725, 257766.590199999511242 ], [ 348734.713200002908707, 257764.274900000542402 ], [ 348735.537500001490116, 257762.170699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01857146, "LATITUDE": 18.35011477, "OBJECTID_1": 1285, "PARCEL_NO_": "102304024200", "Tax_Legal_": "BORDEAUX 80 WEST END QTR", "Name": "HARRIGAN, MABLE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 94800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.58517758400001, "SHAPE_Area": 1203.10831093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349504.614000000059605, 257785.563799999654293 ], [ 349535.138700000941753, 257799.323600001633167 ], [ 349550.75900000333786, 257764.198899999260902 ], [ 349550.794900000095367, 257759.977299999445677 ], [ 349549.207500003278255, 257757.00899999961257 ], [ 349546.001999996602535, 257754.660700000822544 ], [ 349541.167700000107288, 257754.199000000953674 ], [ 349524.177599996328354, 257760.814899999648333 ], [ 349516.058799996972084, 257767.292399998754263 ], [ 349511.167000003159046, 257773.585099998861551 ], [ 349504.614000000059605, 257785.563799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041100", "MAP": "G9-1825-T71", "PARCEL_NAM": "79", "ACRE": ".30", "LONGITUDE": -65.01811467, "LATITUDE": 18.35010074, "OBJECTID_1": 1325, "PARCEL_NO_": "102304041100", "Tax_Legal_": "BORDEAUX 79 WEST END QTR", "Name": "TRANT, IRA E", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 31800, "Improved_V": 178000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.82419702000001, "SHAPE_Area": 1384.89536881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349590.653300002217293, 257760.846999999135733 ], [ 349571.067800000309944, 257746.633200000971556 ], [ 349566.17960000038147, 257752.503800000995398 ], [ 349562.905799999833107, 257758.176600001752377 ], [ 349553.037699997425079, 257780.682799998670816 ], [ 349597.224799998104572, 257799.831799998879433 ], [ 349603.80120000243187, 257785.109099999070168 ], [ 349591.765500001609325, 257776.709600001573563 ], [ 349591.137900002300739, 257767.759100001305342 ], [ 349590.653300002217293, 257760.846999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-B", "ACRE": null, "LONGITUDE": -65.01234504, "LATITUDE": 18.34966168, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 421.35562498500002, "SHAPE_Area": 6024.5738248500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350189.875299997627735, 257803.415800001472235 ], [ 350214.222900003194809, 257785.038800001144409 ], [ 350196.542599998414516, 257683.3581000007689 ], [ 350249.213699996471405, 257653.180599998682737 ], [ 350239.563100002706051, 257650.146299999207258 ], [ 350229.086400002241135, 257649.427299998700619 ], [ 350221.81700000166893, 257650.845499999821186 ], [ 350209.677400000393391, 257656.023499999195337 ], [ 350193.468400001525879, 257665.601100001484156 ], [ 350186.171999998390675, 257670.185400001704693 ], [ 350178.870300002396107, 257675.403000000864267 ], [ 350177.245099999010563, 257676.867400001734495 ], [ 350171.543300002813339, 257683.575699999928474 ], [ 350169.092000000178814, 257687.35530000180006 ], [ 350168.271300002932549, 257689.037399999797344 ], [ 350167.425499998033047, 257693.674499999731779 ], [ 350163.271600000560284, 257707.994899999350309 ], [ 350158.122699998319149, 257744.471900001168251 ], [ 350153.93469999730587, 257762.802799999713898 ], [ 350154.672600001096725, 257770.830400001257658 ], [ 350156.247500002384186, 257775.276200000196695 ], [ 350165.849500000476837, 257784.00959999859333 ], [ 350172.2550999969244, 257789.339400000870228 ], [ 350183.473300002515316, 257797.663899999111891 ], [ 350189.875299997627735, 257803.415800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404046000", "MAP": "B9-114-T65", "PARCEL_NAM": "70", "ACRE": ".46", "LONGITUDE": -65.00505578000001, "LATITUDE": 18.35000941, "OBJECTID_1": 1952, "PARCEL_NO_": "102404046000", "Tax_Legal_": "FORTUNA 70 WEST END QTR.", "Name": "GARNETT, SHAMARA SHARIFAH", "Address": "PO BOX 304110", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.78386964500001, "SHAPE_Area": 1490.67823413 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350931.507399998605251, 257743.030099999159575 ], [ 350929.625900000333786, 257742.24210000038147 ], [ 350953.984300002455711, 257797.884399998933077 ], [ 350956.944099999964237, 257798.05519999936223 ], [ 350960.020099997520447, 257798.292500000447035 ], [ 350965.672483762027696, 257799.13235971017275 ], [ 350971.224336601793766, 257800.48577634934918 ], [ 350976.629100002348423, 257802.341400001198053 ], [ 350982.111400000751019, 257804.069499999284744 ], [ 350987.085799999535084, 257805.776799999177456 ], [ 350964.978299997746944, 257757.049199998378754 ], [ 350931.507399998605251, 257743.030099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041300", "MAP": "F9-2230-T60", "PARCEL_NAM": "101", "ACRE": null, "LONGITUDE": -65.01782249, "LATITUDE": 18.35015778, "OBJECTID_1": 1327, "PARCEL_NO_": "102304041300", "Tax_Legal_": "FORTUNA 4-1-6A& BORDEAUX 101 WEST END QTR", "Name": "CORNEIRO, NIERESTA M.", "Address": "BOX 2791", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66900, "Improved_V": 243400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.928201137, "SHAPE_Area": 521.59680064300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349594.308799996972084, 257763.499800000339746 ], [ 349590.653300002217293, 257760.846999999135733 ], [ 349591.137900002300739, 257767.759100001305342 ], [ 349591.765500001609325, 257776.709600001573563 ], [ 349603.80120000243187, 257785.109099999070168 ], [ 349623.037600003182888, 257798.776500001549721 ], [ 349630.371699996292591, 257789.759500000625849 ], [ 349628.769900001585484, 257788.479800000786781 ], [ 349594.308799996972084, 257763.499800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304050600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02175177, "LATITUDE": 18.35011746, "OBJECTID_1": 1349, "PARCEL_NO_": "102304050600", "Tax_Legal_": "FORTUNA 5A-1-5 WEST END QTR", "Name": "HENRY, STEVIE & ANGELA", "Address": "PO Box 231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.93729513700001, "SHAPE_Area": 1093.58154382 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349208.126500003039837, 257755.484000001102686 ], [ 349179.927199997007847, 257752.719999998807907 ], [ 349179.578299999237061, 257793.669300001114607 ], [ 349191.683799996972084, 257792.501800000667572 ], [ 349207.808300003409386, 257792.844900000840425 ], [ 349208.126500003039837, 257755.484000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01301411, "LATITUDE": 18.35005782, "OBJECTID_1": 1586, "PARCEL_NO_": "102403014200", "Tax_Legal_": "FORTUNA 3A-10 WEST END QTR", "Name": "EDWARDS, WILMA & MEADE, R", "Address": "PO Box 9683", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44400, "Improved_V": 118800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.75158924799999, "SHAPE_Area": 1721.4777826100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350141.145099997520447, 257749.610300000756979 ], [ 350093.462999999523163, 257762.096700001507998 ], [ 350096.361000001430511, 257800.539500001817942 ], [ 350108.475500002503395, 257798.316599998623133 ], [ 350117.377300001680851, 257794.589800000190735 ], [ 350127.909699998795986, 257788.765399999916553 ], [ 350132.779899999499321, 257785.005499999970198 ], [ 350136.854599997401237, 257779.972600001841784 ], [ 350143.420199997723103, 257766.516399998217821 ], [ 350143.506499998271465, 257756.38459999859333 ], [ 350141.145099997520447, 257749.610300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041900", "MAP": null, "PARCEL_NAM": "4XA", "ACRE": null, "LONGITUDE": -65.01618111000001, "LATITUDE": 18.34989348, "OBJECTID_1": 1333, "PARCEL_NO_": "102304041900", "Tax_Legal_": "PAR 4XA REM & 4XF-1 FORTUNA 8 WEST END QTR", "Name": "CALVARY BAPTIST CHURCH", "Address": "PO Box 305200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.856064377, "SHAPE_Area": 4961.0340647100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349771.234700001776218, 257724.629000000655651 ], [ 349755.765500001609325, 257742.023200001567602 ], [ 349753.319600000977516, 257745.169599998742342 ], [ 349747.607100002467632, 257753.144400000572205 ], [ 349742.704499997198582, 257760.703600000590086 ], [ 349741.885600000619888, 257762.174499999731779 ], [ 349738.611800000071526, 257767.847300000488758 ], [ 349732.866899996995926, 257779.621500000357628 ], [ 349729.557199999690056, 257789.515799999237061 ], [ 349735.975299999117851, 257793.368000000715256 ], [ 349745.631300002336502, 257795.769099999219179 ], [ 349754.502499997615814, 257795.63060000166297 ], [ 349776.308899998664856, 257791.587200000882149 ], [ 349779.535899996757507, 257791.402499999850988 ], [ 349794.92059999704361, 257783.929099999368191 ], [ 349847.308600001037121, 257692.320999998599291 ], [ 349826.231200002133846, 257705.447399999946356 ], [ 349811.652800001204014, 257712.927499998360872 ], [ 349789.000600002706051, 257721.607999999076128 ], [ 349776.070799998939037, 257724.879700001329184 ], [ 349771.234700001776218, 257724.629000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01966324, "LATITUDE": 18.34997689, "OBJECTID_1": 1354, "PARCEL_NO_": "102304051100", "Tax_Legal_": "FORTUNA 5A-6 WEST END QTR", "Name": "JACOBS, MAUDE", "Address": "PO Box 4671", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41100, "Improved_V": 193800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.67765414499999, "SHAPE_Area": 1710.2420288000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349410.001299999654293, 257722.305799998342991 ], [ 349403.33330000191927, 257747.793499998748302 ], [ 349395.848099999129772, 257774.54109999909997 ], [ 349391.672700002789497, 257791.394400000572205 ], [ 349432.91330000013113, 257777.799800001084805 ], [ 349431.62610000371933, 257739.581300001591444 ], [ 349428.40990000218153, 257738.499499998986721 ], [ 349421.99889999628067, 257733.802999999374151 ], [ 349410.84179999679327, 257718.301899999380112 ], [ 349410.001299999654293, 257722.305799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01400947, "LATITUDE": 18.34996772, "OBJECTID_1": 1589, "PARCEL_NO_": "102403014500", "Tax_Legal_": "FORTUNA 4-1-24 WEST END QTR", "Name": "TRUST AGREEMENT OF EDRIS ERMA EVANS", "Address": "PO Box 874", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52300, "Improved_V": 141200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.681178856, "SHAPE_Area": 2196.01432596 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350038.511500000953674, 257776.001299999654293 ], [ 350034.848600000143051, 257732.697200000286102 ], [ 350021.890000000596046, 257739.346099998801947 ], [ 349999.266500003635883, 257744.649399999529123 ], [ 349990.370099999010563, 257747.743000000715256 ], [ 349982.281800001859665, 257750.632100000977516 ], [ 349994.8141999989748, 257794.008799999952316 ], [ 350038.511500000953674, 257776.001299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303011500", "MAP": "C9-325-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02683738, "LATITUDE": 18.35008149, "OBJECTID_1": 1193, "PARCEL_NO_": "102303011500", "Tax_Legal_": "FORTUNA PARCEL NO. 5, LOT #45 WEST END QTR.", "Name": "HENRY, VIDA V", "Address": "1314 N Amberbrooke Ave", "City": "Tucson", "State": "Arizona", "Zip": 85745, "Country": "United States", "Land_Value": 23600, "Improved_V": 86000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.84911148699999, "SHAPE_Area": 1163.9644911299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348671.959299996495247, 257747.507100000977516 ], [ 348635.637500002980232, 257751.642799999564886 ], [ 348640.211000002920628, 257782.710999999195337 ], [ 348676.523900002241135, 257779.630699999630451 ], [ 348671.959299996495247, 257747.507100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404045900", "MAP": "B9-114-T65", "PARCEL_NAM": "69", "ACRE": ".47", "LONGITUDE": -65.0053801, "LATITUDE": 18.34995573, "OBJECTID_1": 1951, "PARCEL_NO_": "102404045900", "Tax_Legal_": "FORTUNA 69 WEST END QTR", "Name": "MARTIN, CALFORD", "Address": "PO Box 303694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61900, "Improved_V": 204600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.08347639499999, "SHAPE_Area": 2002.58377679 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350929.625900000333786, 257742.24210000038147 ], [ 350902.371399998664856, 257730.82660000026226 ], [ 350910.111100003123283, 257795.15260000154376 ], [ 350928.210199996829033, 257795.3564000017941 ], [ 350939.330697244673502, 257796.676977722760057 ], [ 350950.486900001764297, 257797.65089999884367 ], [ 350953.984300002455711, 257797.884399998933077 ], [ 350929.625900000333786, 257742.24210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304051900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0211871, "LATITUDE": 18.34992006, "OBJECTID_1": 1362, "PARCEL_NO_": "102304051900", "Tax_Legal_": "FORTUNA 5A-2 WEST END QTR", "Name": "DUNCAN, CAROLYN C", "Address": "PO Box 306807", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 183300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.71797993499999, "SHAPE_Area": 1450.5933924599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349259.471600003540516, 257786.301699999719858 ], [ 349283.029100000858307, 257766.018399998545647 ], [ 349279.028099998831749, 257762.397100001573563 ], [ 349258.259999997913837, 257739.2179000005126 ], [ 349235.017200000584126, 257722.562399998307228 ], [ 349226.196299999952316, 257716.790600001811981 ], [ 349222.186300002038479, 257714.224700000137091 ], [ 349219.756599999964237, 257715.471400000154972 ], [ 349221.351199999451637, 257717.595400001853704 ], [ 349226.117200002074242, 257726.078099999576807 ], [ 349226.907300002872944, 257727.984400000423193 ], [ 349230.08219999819994, 257733.921000000089407 ], [ 349238.053599998354912, 257744.752000000327826 ], [ 349241.214100003242493, 257752.377300001680851 ], [ 349249.171099998056889, 257764.896899998188019 ], [ 349257.101199999451637, 257780.582699999213219 ], [ 349259.471600003540516, 257786.301699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0167759, "LATITUDE": 18.34999323, "OBJECTID_1": 1343, "PARCEL_NO_": "102304043000", "Tax_Legal_": "PAR 4XF REM & 4XA-1 FORTUNA 8 WEST END QTR", "Name": "EDUARDO & MILAGROS ZAYAS, TRUSTEES", "Address": "PO Box 302824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032824, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.12792001400001, "SHAPE_Area": 1135.28208376 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349729.557199999690056, 257789.515799999237061 ], [ 349732.866899996995926, 257779.621500000357628 ], [ 349738.611800000071526, 257767.847300000488758 ], [ 349741.885600000619888, 257762.174499999731779 ], [ 349742.704499997198582, 257760.703600000590086 ], [ 349725.064499996602535, 257748.949099998921156 ], [ 349695.270499996840954, 257744.061200000345707 ], [ 349700.794200003147125, 257758.249600000679493 ], [ 349700.778099998831749, 257760.149399999529123 ], [ 349703.947599999606609, 257766.719200000166893 ], [ 349707.138599999248981, 257770.756099998950958 ], [ 349715.127999998629093, 257779.476300001144409 ], [ 349729.557199999690056, 257789.515799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041300", "MAP": "F9-762-T61", "PARCEL_NAM": "4-1-6", "ACRE": null, "LONGITUDE": -65.01773078, "LATITUDE": 18.34993441, "OBJECTID_1": 1327, "PARCEL_NO_": "102304041300", "Tax_Legal_": "FORTUNA 4-1-6A& BORDEAUX 101 WEST END QTR", "Name": "CORNEIRO, NIERESTA M.", "Address": "BOX 2791", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66900, "Improved_V": 243400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.85587356799999, "SHAPE_Area": 2515.6739027399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349582.628700003027916, 257738.968100000172853 ], [ 349579.319600000977516, 257752.621800001710653 ], [ 349594.308799996972084, 257763.499800000339746 ], [ 349628.769900001585484, 257788.479800000786781 ], [ 349648.297600001096725, 257767.952500000596046 ], [ 349652.900600001215935, 257763.142900001257658 ], [ 349659.342799998819828, 257756.41160000115633 ], [ 349643.455799996852875, 257745.184399999678135 ], [ 349628.679499998688698, 257734.741999998688698 ], [ 349625.994199998676777, 257735.683699999004602 ], [ 349616.321999996900558, 257735.182399999350309 ], [ 349604.232699997723103, 257734.450100000947714 ], [ 349588.08669999986887, 257736.640000000596046 ], [ 349582.628700003027916, 257738.968100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97403012, "LATITUDE": 18.34974854, "OBJECTID_1": 2762, "PARCEL_NO_": "102604028000", "Tax_Legal_": "15-5-REM AND 15-5-A (INCLUDING 15-5-A-1(GREENBELT) AND DRAINAGE EASEMENT \"A\" CROWN & HAWK NO.3 SOUT", "Name": "SOOKRAM, SIEWDATH", "Address": "6076-66 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 410000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 426.176898177, "SHAPE_Area": 6725.916895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354289.208499997854233, 257737.541799999773502 ], [ 354264.2128000035882, 257737.337200000882149 ], [ 354250.48929999768734, 257739.124800000339746 ], [ 354194.70269999653101, 257756.399999998509884 ], [ 354188.250399999320507, 257756.558299999684095 ], [ 354180.201700001955032, 257754.803700000047684 ], [ 354163.342799998819828, 257746.010899998247623 ], [ 354156.098600000143051, 257744.473900001496077 ], [ 354139.984899997711182, 257742.864399999380112 ], [ 354135.874300003051758, 257752.118900001049042 ], [ 354151.152800001204014, 257757.09910000115633 ], [ 354162.394500002264977, 257762.679499998688698 ], [ 354172.808200001716614, 257770.786299999803305 ], [ 354176.006499998271465, 257773.978900000452995 ], [ 354181.611100003123283, 257778.668800000101328 ], [ 354188.029200002551079, 257782.521000001579523 ], [ 354264.389700002968311, 257811.221400000154972 ], [ 354279.644900001585484, 257818.945700000971556 ], [ 354290.064099997282028, 257826.419199999421835 ], [ 354289.208499997854233, 257737.541799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97129778, "LATITUDE": 18.3500876, "OBJECTID_1": 2724, "PARCEL_NO_": "102604023800", "Tax_Legal_": "CROWN & HAWK 9N WEST END QTR", "Name": "STEELE, A O & HODGE, U R", "Address": "BOX 3626", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.64964710800001, "SHAPE_Area": 1293.61067288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354541.651500001549721, 257826.367400001734495 ], [ 354541.439000003039837, 257782.856499999761581 ], [ 354500.419399999082088, 257809.840700000524521 ], [ 354502.268100000917912, 257811.268500000238419 ], [ 354507.861900001764297, 257817.224899999797344 ], [ 354510.230499997735023, 257823.154899999499321 ], [ 354512.611699998378754, 257827.607400000095367 ], [ 354513.391000002622604, 257830.780200000852346 ], [ 354513.374099999666214, 257832.765799999237061 ], [ 354541.603799998760223, 257831.970400001853704 ], [ 354541.651500001549721, 257826.367400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802023500", "MAP": "D9-1463-T79", "PARCEL_NAM": "5A-32", "ACRE": "2.92", "LONGITUDE": -65.02061586000001, "LATITUDE": 18.34887917, "OBJECTID_1": 7298, "PARCEL_NO_": "104802023500", "Tax_Legal_": "FORUTNA 5A-32&33 WEST END QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 188700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 733.97142726899995, "SHAPE_Area": 13020.7851271 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349395.92400000244379, 257576.32490000128746 ], [ 349386.579099997878075, 257537.407200001180172 ], [ 349384.23929999768734, 257528.099899999797344 ], [ 349352.321900002658367, 257583.145199999213219 ], [ 349323.42059999704361, 257568.132100000977516 ], [ 349310.38289999961853, 257584.068500000983477 ], [ 349300.651399999856949, 257590.532800000160933 ], [ 349272.318999998271465, 257603.388700000941753 ], [ 349238.347800001502037, 257615.565200001001358 ], [ 349255.626299999654293, 257669.746500000357628 ], [ 349247.527199998497963, 257673.902100000530481 ], [ 349270.696299999952316, 257699.211899999529123 ], [ 349294.664499998092651, 257725.372600000351667 ], [ 349309.846000000834465, 257741.750999998301268 ], [ 349326.424300000071526, 257783.472100000828505 ], [ 349333.672100000083447, 257784.586899999529123 ], [ 349336.100000001490116, 257783.551300000399351 ], [ 349337.811599999666214, 257771.955200001597404 ], [ 349316.519500002264977, 257715.629999998956919 ], [ 349306.263999998569489, 257688.948300000280142 ], [ 349298.371699996292591, 257668.829799998551607 ], [ 349305.020000003278255, 257645.664000000804663 ], [ 349362.33110000193119, 257638.744699999690056 ], [ 349372.922799997031689, 257625.954700000584126 ], [ 349377.019100002944469, 257618.388900000602007 ], [ 349378.644299998879433, 257616.924499999731779 ], [ 349379.47580000013113, 257613.975999999791384 ], [ 349381.101000003516674, 257612.511700000613928 ], [ 349395.92400000244379, 257576.32490000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304052000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02073637, "LATITUDE": 18.34993115, "OBJECTID_1": 1363, "PARCEL_NO_": "102304052000", "Tax_Legal_": "FORTUNA 5A-14 WEST END QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.90063412200001, "SHAPE_Area": 1238.0043208899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349294.664499998092651, 257725.372600000351667 ], [ 349275.953900001943111, 257744.640000000596046 ], [ 349290.329000003635883, 257761.011900000274181 ], [ 349307.14469999819994, 257774.870600000023842 ], [ 349316.773699998855591, 257780.437800001353025 ], [ 349326.424300000071526, 257783.472100000828505 ], [ 349309.846000000834465, 257741.750999998301268 ], [ 349294.664499998092651, 257725.372600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404045800", "MAP": "B9-114-T65", "PARCEL_NAM": "68", "ACRE": ".46", "LONGITUDE": -65.00570876, "LATITUDE": 18.34987374, "OBJECTID_1": 1950, "PARCEL_NO_": "102404045800", "Tax_Legal_": "FORTUNA 68 WEST END QTR", "Name": "MARTIN, CALFORD S.", "Address": "PO Box 303694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.90859372099999, "SHAPE_Area": 2209.6282987300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350902.371399998664856, 257730.82660000026226 ], [ 350881.695600003004074, 257722.166600000113249 ], [ 350871.098899997770786, 257727.298099998384714 ], [ 350872.269199997186661, 257779.236699998378754 ], [ 350872.269500002264977, 257779.249299999326468 ], [ 350872.641099996864796, 257779.578499998897314 ], [ 350880.209487790125422, 257786.129743458062876 ], [ 350888.136399999260902, 257792.242300000041723 ], [ 350892.053014863689896, 257793.829313484136946 ], [ 350896.15264275012305, 257794.854757284309017 ], [ 350900.355200000107288, 257795.298599999397993 ], [ 350910.111100003123283, 257795.15260000154376 ], [ 350902.371399998664856, 257730.82660000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98841428, "LATITUDE": 18.35018664, "OBJECTID_1": 2126, "PARCEL_NO_": "102504015500", "Tax_Legal_": "BONNE ES[ERANCE 1-2 WEST END QTR", "Name": "DOWLING, JR. , WILLIAM C. -TRUSTEE", "Address": "90 Broad Street LLP", "City": "New York", "State": "New York", "Zip": 10004, "Country": "United States", "Land_Value": 1376500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 9.3194400579500005, "SHAPE_Area": 5.2763914346699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352716.174500003457069, 257809.738000001758337 ], [ 352718.595200002193451, 257809.546700000762939 ], [ 352717.808700002729893, 257807.218199998140335 ], [ 352715.382600001990795, 257808.04280000180006 ], [ 352716.174500003457069, 257809.738000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01543479, "LATITUDE": 18.34955601, "OBJECTID_1": 1566, "PARCEL_NO_": "102403012200", "Tax_Legal_": "FORTUNA 4R WEST END QTR", "Name": "GRACE BAPTIST CHURCH", "Address": "P.O. BOX 4230", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 228700, "Improved_V": 234700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 392.62771303900001, "SHAPE_Area": 5572.1687661300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349794.92059999704361, 257783.929099999368191 ], [ 349833.753100000321865, 257769.048200000077486 ], [ 349870.283500000834465, 257740.427299998700619 ], [ 349901.167900003492832, 257711.971400000154972 ], [ 349900.437100000679493, 257703.099500000476837 ], [ 349902.091099999845028, 257698.257800001651049 ], [ 349907.00450000166893, 257689.432100001722574 ], [ 349921.083999998867512, 257645.850999999791384 ], [ 349847.308600001037121, 257692.320999998599291 ], [ 349794.92059999704361, 257783.929099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0193792, "LATITUDE": 18.34996121, "OBJECTID_1": 1355, "PARCEL_NO_": "102304051200", "Tax_Legal_": "FORTUNA 4-1-65 WESTEND QTR.", "Name": "JN BAPTISTE, LUCRECIA & EUSTACE", "Address": "PO BOX 303239", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.99326959699999, "SHAPE_Area": 826.27161701700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349431.62610000371933, 257739.581300001591444 ], [ 349432.91330000013113, 257777.799800001084805 ], [ 349461.21509999781847, 257768.532200001180172 ], [ 349454.195699997246265, 257740.610399998724461 ], [ 349450.155100002884865, 257741.632800001651049 ], [ 349446.922700002789497, 257742.450699999928474 ], [ 349444.503799997270107, 257742.430900000035763 ], [ 349440.473999999463558, 257742.186900001019239 ], [ 349431.62610000371933, 257739.581300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304052100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02003116, "LATITUDE": 18.3499265, "OBJECTID_1": 1364, "PARCEL_NO_": "102304052100", "Tax_Legal_": "FORTUNA 5A-7 WEST END QTR", "Name": "THOMAS, JR., MARIO ALFREDO", "Address": "14403 SW 93 Ct", "City": "Miami", "State": "Florida", "Zip": 33176, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.32531720399999, "SHAPE_Area": 1382.6799267 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349403.33330000191927, 257747.793499998748302 ], [ 349354.270499996840954, 257733.037599999457598 ], [ 349350.910400003194809, 257748.842099998146296 ], [ 349349.202399998903275, 257760.016100000590086 ], [ 349395.848099999129772, 257774.54109999909997 ], [ 349403.33330000191927, 257747.793499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303013700", "MAP": "A9-512-T98", "PARCEL_NAM": "5-57", "ACRE": ".27", "LONGITUDE": -65.02634467, "LATITUDE": 18.34997347, "OBJECTID_1": 1214, "PARCEL_NO_": "102303013700", "Tax_Legal_": "5-57 ESTATE FORTUNA #8 WEST END QTR", "Name": "HUGHES, SHERRY ANN", "Address": "PO Box 305995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27800, "Improved_V": 183200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.20222936900001, "SHAPE_Area": 1198.9405401900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348735.537500001490116, 257762.170699998736382 ], [ 348732.510099999606609, 257738.925599999725819 ], [ 348680.843099996447563, 257745.891100000590086 ], [ 348683.87780000269413, 257768.291799999773502 ], [ 348735.537500001490116, 257762.170699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304052700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02042481, "LATITUDE": 18.3497481, "OBJECTID_1": 1370, "PARCEL_NO_": "102304052700", "Tax_Legal_": "FORTUNA 5A-13 WEST END QTR", "Name": "QUALLS, DANIEL", "Address": "PO Box 308415", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.52766381199999, "SHAPE_Area": 909.16008852000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349348.788099996745586, 257713.994300000369549 ], [ 349316.519500002264977, 257715.629999998956919 ], [ 349337.811599999666214, 257771.955200001597404 ], [ 349342.060699999332428, 257746.447700001299381 ], [ 349344.58389999717474, 257734.224899999797344 ], [ 349348.788099996745586, 257713.994300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104901013400", "MAP": null, "PARCEL_NAM": "3B", "ACRE": "84.00", "LONGITUDE": -65.01035615000001, "LATITUDE": 18.34629116, "OBJECTID_1": 7349, "PARCEL_NO_": "104901013400", "Tax_Legal_": "FORTUNA 3B WEST END QTR", "Name": "SEAVIEW, INC. -LINDBERG BAY", "Address": "90 Broad St", "City": "New York", "State": "New York", "Zip": 10004, "Country": "United States", "Land_Value": 2877900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2667.16655846, "SHAPE_Area": 322579.283016 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350641.166000001132488, 257173.19539999961853 ], [ 350642.019100002944469, 257167.714000001549721 ], [ 350639.61089999973774, 257166.427700001746416 ], [ 350636.414499998092651, 257163.024099998176098 ], [ 350608.330200001597404, 257146.7511 ], [ 350599.466099999845028, 257146.045299999415874 ], [ 350591.397600002586842, 257146.612500000745058 ], [ 350588.157999999821186, 257148.274700000882149 ], [ 350578.4695999994874, 257149.673099998384714 ], [ 350573.640799999237061, 257148.578099999576807 ], [ 350567.9695999994874, 257151.698100000619888 ], [ 350570.354400001466274, 257155.728399999439716 ], [ 350567.123700000345707, 257156.335200000554323 ], [ 350571.909500002861023, 257162.496100001037121 ], [ 350569.47070000320673, 257164.798200000077486 ], [ 350565.462600000202656, 257162.021200001239777 ], [ 350567.894100002944469, 257160.563400000333786 ], [ 350564.708400003612041, 257155.893300000578165 ], [ 350559.067800000309944, 257155.424899999052286 ], [ 350552.590300001204014, 257158.53830000013113 ], [ 350547.775799997150898, 257155.754700001329184 ], [ 350541.323499999940395, 257155.912999998778105 ], [ 350535.663199998438358, 257157.766499999910593 ], [ 350529.248599998652935, 257153.49210000038147 ], [ 350521.180100001394749, 257154.059399999678135 ], [ 350522.01519999653101, 257150.688700001686811 ], [ 350529.270199999213219, 257150.959199998527765 ], [ 350526.876400001347065, 257147.984299998730421 ], [ 350529.304399996995926, 257146.948699999600649 ], [ 350529.322300001978874, 257144.837900001555681 ], [ 350528.541199997067451, 257141.876200001686811 ], [ 350524.56360000371933, 257135.510800000280142 ], [ 350526.196000002324581, 257133.202100001275539 ], [ 350526.228399999439716, 257129.402699999511242 ], [ 350523.840000003576279, 257125.794599998742342 ], [ 350521.435400001704693, 257124.086199998855591 ], [ 350520.686700001358986, 257117.324999999254942 ], [ 350512.700900003314018, 257108.182700000703335 ], [ 350508.654899999499321, 257109.838300000876188 ], [ 350508.638700000941753, 257111.738000001758337 ], [ 350511.030699998140335, 257114.9239999987185 ], [ 350512.560599997639656, 257124.646800000220537 ], [ 350509.321000002324581, 257126.309000000357628 ], [ 350506.09570000320673, 257126.282600000500679 ], [ 350502.883100003004074, 257124.7787000015378 ], [ 350498.025399997830391, 257127.061000000685453 ], [ 350499.623700000345707, 257128.762800000607967 ], [ 350493.959700003266335, 257131.038499999791384 ], [ 350493.920100003480911, 257135.682199999690056 ], [ 350491.504799999296665, 257135.240200001746416 ], [ 350490.729000002145767, 257131.645300000905991 ], [ 350481.868600003421307, 257130.517299998551607 ], [ 350460.045999996364117, 257136.460400000214577 ], [ 350461.001599997282028, 257118.947500001639128 ], [ 350457.817699998617172, 257114.066300000995398 ], [ 350461.0591000020504, 257112.192999999970198 ], [ 350463.508599996566772, 257108.624400001019239 ], [ 350460.317500002682209, 257104.587499998509884 ], [ 350455.483300000429153, 257104.125799998641014 ], [ 350448.248000003397465, 257101.533399999141693 ], [ 350440.159699998795986, 257104.422499999403954 ], [ 350440.994800001382828, 257101.051899999380112 ], [ 350444.252400003373623, 257097.278900001198053 ], [ 350447.490299999713898, 257095.8277000002563 ], [ 350450.7550999969244, 257091.210400000214577 ], [ 350453.190200001001358, 257089.33049999922514 ], [ 350449.988300003111362, 257086.559999998658895 ], [ 350446.763099998235703, 257086.533599998801947 ], [ 350444.358499996364117, 257084.825199998915195 ], [ 350443.590000003576279, 257080.385899998247623 ], [ 350437.153899997472763, 257078.644499998539686 ], [ 350434.814000003039837, 257069.33729999884963 ], [ 350425.163500003516674, 257066.302999999374151 ], [ 350418.750699996948242, 257061.817499998956919 ], [ 350411.508299998939037, 257060.069499999284744 ], [ 350408.300999999046326, 257057.932300001382828 ], [ 350411.589199997484684, 257050.570900000631809 ], [ 350401.976400002837181, 257043.103999998420477 ], [ 350398.761900000274181, 257041.811099998652935 ], [ 350393.920500002801418, 257042.19370000064373 ], [ 350384.223099999129772, 257044.647399999201298 ], [ 350382.657300002872944, 257039.146200001239777 ], [ 350382.685999996960163, 257035.768899999558926 ], [ 350386.829099997878075, 257022.714999999850988 ], [ 350386.865099996328354, 257018.493500001728535 ], [ 350385.336900003254414, 257008.559599999338388 ], [ 350380.567400000989437, 257000.499000001698732 ], [ 350380.599799998104572, 256996.699499998241663 ], [ 350378.288699999451637, 256984.015000000596046 ], [ 350378.369599997997284, 256974.516499999910593 ], [ 350376.00110000371933, 256968.586500000208616 ], [ 350376.053199999034405, 256962.465199999511242 ], [ 350373.661200001835823, 256959.279199998825788 ], [ 350356.843800000846386, 256945.631599999964237 ], [ 350346.415600001811981, 256939.21339999884367 ], [ 350331.952399998903275, 256933.184399999678135 ], [ 350326.342299997806549, 256929.127700001001358 ], [ 350317.552000001072884, 256919.767700001597404 ], [ 350312.73929999768734, 256916.772999998182058 ], [ 350295.041799999773502, 256911.772999998182058 ], [ 350286.20830000191927, 256907.478799998760223 ], [ 350281.374099999666214, 256907.017000000923872 ], [ 350274.891199998557568, 256910.763700000941753 ], [ 350270.85419999808073, 256911.363899998366833 ], [ 350267.614600002765656, 256913.026099998503923 ], [ 350253.826399996876717, 256922.412500001490116 ], [ 350247.366899996995926, 256923.415100000798702 ], [ 350242.510999999940395, 256925.486299999058247 ], [ 350228.692199997603893, 256938.460999999195337 ], [ 350225.45440000295639, 256939.912099998444319 ], [ 350221.435400001704693, 256938.401599999517202 ], [ 350219.819200001657009, 256938.810600001364946 ], [ 350203.608400002121925, 256948.599300000816584 ], [ 350195.489600002765656, 256955.076699998229742 ], [ 350183.342699997127056, 256961.098999999463558 ], [ 350177.664399996399879, 256965.063299998641014 ], [ 350176.058899998664856, 256964.205800000578165 ], [ 350175.270599998533726, 256962.08839999884367 ], [ 350170.438100002706051, 256961.415600001811981 ], [ 350167.173299998044968, 256966.032900001853704 ], [ 350162.322899997234344, 256967.470899999141693 ], [ 350157.517300002276897, 256963.631900001317263 ], [ 350164.345100000500679, 257108.708999998867512 ], [ 350164.989600002765656, 257127.712699998170137 ], [ 350168.413400001823902, 257199.090399999171495 ], [ 350171.271799996495247, 257242.17680000141263 ], [ 350178.749399997293949, 257405.624499998986721 ], [ 350181.526900000870228, 257458.209499999880791 ], [ 350183.616800002753735, 257496.856699999421835 ], [ 350184.300800003111362, 257511.216699998825788 ], [ 350185.667099997401237, 257540.147700000554323 ], [ 350187.067500002682209, 257565.068199999630451 ], [ 350189.108900003135204, 257609.414500001817942 ], [ 350191.128600001335144, 257656.293800000101328 ], [ 350202.470899999141693, 257650.053899999707937 ], [ 350209.756499998271465, 257646.736000001430511 ], [ 350217.036700002849102, 257644.051399998366833 ], [ 350225.125, 257641.162200000137091 ], [ 350237.230499997735023, 257639.994800001382828 ], [ 350247.694499999284744, 257642.191300000995398 ], [ 350260.538000002503395, 257649.051500000059605 ], [ 350267.7516999989748, 257654.176699999719858 ], [ 350336.616200000047684, 257710.89130000025034 ], [ 350388.686700001358986, 257751.214099999517202 ], [ 350395.909299999475479, 257755.284000001847744 ], [ 350401.537299998104572, 257757.229899998754263 ], [ 350418.44650000333786, 257760.112500000745058 ], [ 350457.12610000371933, 257763.173300001770258 ], [ 350529.593500003218651, 257775.587699998170137 ], [ 350559.398299999535084, 257779.209100000560284 ], [ 350709.137900002300739, 257240.035100001841784 ], [ 350703.535099998116493, 257235.134100001305342 ], [ 350692.352799996733665, 257222.588100001215935 ], [ 350690.77080000191927, 257218.9864999987185 ], [ 350690.004000000655651, 257214.336199998855591 ], [ 350693.263400003314018, 257210.352099999785423 ], [ 350693.30120000243187, 257205.919399999082088 ], [ 350694.928199999034405, 257204.243999999016523 ], [ 350698.148100003600121, 257204.9037000015378 ], [ 350698.974200002849102, 257202.58839999884367 ], [ 350693.38570000231266, 257195.998700000345707 ], [ 350694.215400002896786, 257193.261300001293421 ], [ 350686.218800000846386, 257185.385400000959635 ], [ 350686.252999998629093, 257181.374899998307228 ], [ 350691.117799997329712, 257178.2483000010252 ], [ 350689.519599996507168, 257176.546500001102686 ], [ 350669.394100002944469, 257172.582100000232458 ], [ 350666.183300003409386, 257170.86710000038147 ], [ 350662.148100003600121, 257171.25620000064373 ], [ 350660.551700003445148, 257169.343299999833107 ], [ 350655.706600002944469, 257170.147999998182058 ], [ 350654.929099999368191, 257166.764199998229742 ], [ 350650.933499999344349, 257162.50959999859333 ], [ 350646.11540000140667, 257160.14809999987483 ], [ 350646.057800002396107, 257166.902699999511242 ], [ 350642.019100002944469, 257167.714000001549721 ], [ 350646.815600000321865, 257172.608399998396635 ], [ 350646.795800000429153, 257174.930300001055002 ], [ 350642.7516999989748, 257176.374800000339746 ], [ 350641.166000001132488, 257173.19539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304051300", "MAP": "D9-490-T65", "PARCEL_NAM": "4-1-64", "ACRE": "0.48", "LONGITUDE": -65.01902246, "LATITUDE": 18.34980474, "OBJECTID_1": 1356, "PARCEL_NO_": "102304051300", "Tax_Legal_": "4-1-63 FORTUNA WEST END QTR", "Name": "BOYNES REVOCABLE LIVING TRUST", "Address": "PO Box 302582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49300, "Improved_V": 265400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.587504868, "SHAPE_Area": 1896.54137829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349507.260300002992153, 257744.612700000405312 ], [ 349495.582000002264977, 257709.918400000780821 ], [ 349484.277400001883507, 257711.725699998438358 ], [ 349481.030599996447563, 257714.232299998402596 ], [ 349479.4054000005126, 257715.696600001305342 ], [ 349477.774800002574921, 257717.794199999421835 ], [ 349471.227200001478195, 257729.139699999243021 ], [ 349467.156000003218651, 257733.750399999320507 ], [ 349459.854299999773502, 257738.967999998480082 ], [ 349454.195699997246265, 257740.610399998724461 ], [ 349461.21509999781847, 257768.532200001180172 ], [ 349506.498099997639656, 257753.704100001603365 ], [ 349509.942400000989437, 257752.580299999564886 ], [ 349509.940499998629093, 257752.574999999254942 ], [ 349507.260300002992153, 257744.612700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303010300", "MAP": "A9-512-T98", "PARCEL_NAM": "5-58", "ACRE": null, "LONGITUDE": -65.02605487, "LATITUDE": 18.34981482, "OBJECTID_1": 1187, "PARCEL_NO_": "102303010300", "Tax_Legal_": "5 FORTUNA No.8 WEST END QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1692200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.064657349, "SHAPE_Area": 511.21587631199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348750.254299998283386, 257738.437600001692772 ], [ 348750.283100001513958, 257735.060300000011921 ], [ 348749.507399998605251, 257731.465399999171495 ], [ 348748.718999996781349, 257729.348000001162291 ], [ 348745.526100002229214, 257725.522199999541044 ], [ 348734.298900000751019, 257718.253100000321865 ], [ 348729.500600002706051, 257713.56980000063777 ], [ 348732.510099999606609, 257738.925599999725819 ], [ 348735.537500001490116, 257762.170699998736382 ], [ 348737.151900000870228, 257761.972800001502037 ], [ 348739.6283999979496, 257755.238099999725819 ], [ 348745.358900003135204, 257745.152499999850988 ], [ 348750.254299998283386, 257738.437600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304042900", "MAP": "F9-762-T61", "PARCEL_NAM": "4-1-7", "ACRE": ".59", "LONGITUDE": -65.01734696, "LATITUDE": 18.3496187, "OBJECTID_1": 1342, "PARCEL_NO_": "102304042900", "Tax_Legal_": "4-1-7 FORTUNA NO 8 WEST END QTR", "Name": "EARLE B. MAHARAJ & KUANZA R. MARTINEZ", "Address": "PO Box 3379 F'STED", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 54800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.04412061100001, "SHAPE_Area": 1891.0824254900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349667.991700001060963, 257674.728300001472235 ], [ 349666.404200002551079, 257674.093299999833107 ], [ 349664.499200001358986, 257674.410799998790026 ], [ 349662.594200000166893, 257676.1570999994874 ], [ 349661.165500000119209, 257677.427099999040365 ], [ 349659.578000001609325, 257682.507100000977516 ], [ 349653.545500002801418, 257697.58839999884367 ], [ 349650.21169999986887, 257708.859700001776218 ], [ 349647.989200003445148, 257719.01969999819994 ], [ 349644.337899997830391, 257723.940900001674891 ], [ 349641.378899998962879, 257728.210299998521805 ], [ 349636.137900002300739, 257731.270100001245737 ], [ 349632.464500002563, 257733.414599999785423 ], [ 349628.679499998688698, 257734.741999998688698 ], [ 349643.455799996852875, 257745.184399999678135 ], [ 349659.342799998819828, 257756.41160000115633 ], [ 349675.960400000214577, 257739.048000000417233 ], [ 349681.376999996602535, 257734.20380000025034 ], [ 349680.691799998283386, 257732.672200001776218 ], [ 349680.014600001275539, 257730.369800001382828 ], [ 349678.310500003397465, 257724.575899999588728 ], [ 349675.770499996840954, 257717.114700000733137 ], [ 349674.34179999679327, 257712.669700000435114 ], [ 349673.230499997735023, 257708.383400000631809 ], [ 349671.64299999922514, 257705.049699999392033 ], [ 349670.849299997091293, 257701.557199999690056 ], [ 349669.896700002253056, 257698.064599998295307 ], [ 349669.103000000119209, 257691.714600000530481 ], [ 349668.944200001657009, 257687.269600000232458 ], [ 349669.103000000119209, 257683.459600001573563 ], [ 349669.538400001823902, 257680.717599999159575 ], [ 349668.785499997437, 257676.1570999994874 ], [ 349667.991700001060963, 257674.728300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604023700", "MAP": "D9-6745-T000", "PARCEL_NAM": "9F", "ACRE": ".25", "LONGITUDE": -64.9713675, "LATITUDE": 18.34958281, "OBJECTID_1": 2723, "PARCEL_NO_": "102604023700", "Tax_Legal_": "CROWN & HAWK 9E&9F S S QTR", "Name": "BENJAMIN, CYRIL A. & ARLENE L. PINNEY", "Address": "PO Box 7202", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.99636493899999, "SHAPE_Area": 3605.08612167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354493.094099998474121, 257736.492800001055002 ], [ 354500.419399999082088, 257809.840700000524521 ], [ 354541.439000003039837, 257782.856499999761581 ], [ 354541.357699997723103, 257766.203299999237061 ], [ 354541.569899998605251, 257741.296000000089407 ], [ 354541.425700001418591, 257700.146699998527765 ], [ 354521.634400002658367, 257715.030000001192093 ], [ 354499.696900002658367, 257731.527399998158216 ], [ 354493.094099998474121, 257736.492800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304051800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02163495000001, "LATITUDE": 18.34980814, "OBJECTID_1": 1361, "PARCEL_NO_": "102304051800", "Tax_Legal_": "FORTUNA 5A-1-7 WEST END QTR", "Name": "DONADELLE DECOSTA, DENISE", "Address": "PO Box 11466", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51400, "Improved_V": 268200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.61950248900001, "SHAPE_Area": 1294.7672259399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349205.318499997258186, 257706.487300001084805 ], [ 349179.927199997007847, 257752.719999998807907 ], [ 349208.126500003039837, 257755.484000001102686 ], [ 349234.713299997150898, 257758.234700001776218 ], [ 349233.923100002110004, 257756.328400000929832 ], [ 349232.33389999717474, 257753.571100000292063 ], [ 349230.735600002110004, 257751.869300000369549 ], [ 349229.142800003290176, 257749.534299999475479 ], [ 349218.005500003695488, 257731.711199998855591 ], [ 349210.071800000965595, 257716.447599999606609 ], [ 349209.296099998056889, 257712.852600000798702 ], [ 349205.318499997258186, 257706.487300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303011600", "MAP": "C9-325-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02687909, "LATITUDE": 18.34981159, "OBJECTID_1": 1194, "PARCEL_NO_": "102303011600", "Tax_Legal_": "FORTUNA 5-44 WEST END QTR.", "Name": "ANDREW, TERRANCE J. & LEONIE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 87300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.80841256400001, "SHAPE_Area": 1036.90232051 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348667.373199999332428, 257717.916499998420477 ], [ 348631.834299996495247, 257724.802799999713898 ], [ 348635.637500002980232, 257751.642799999564886 ], [ 348671.959299996495247, 257747.507100000977516 ], [ 348667.373199999332428, 257717.916499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304042100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01674434, "LATITUDE": 18.34976489, "OBJECTID_1": 1334, "PARCEL_NO_": "102304042100", "Tax_Legal_": "PAR 4XG & 4X FORTUNA 8 WEST END QTR", "Name": "EDUARDO & MILAGROS ZAYAS, TRUSTEES", "Address": "PO Box 302824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032824, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.01472405499999, "SHAPE_Area": 1224.105672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349736.509300000965595, 257730.677600000053644 ], [ 349728.965700000524521, 257737.812199998646975 ], [ 349721.689699999988079, 257730.93299999833107 ], [ 349737.564699999988079, 257716.116300001740456 ], [ 349736.81870000064373, 257712.918000001460314 ], [ 349690.183799996972084, 257734.522100001573563 ], [ 349692.092000000178814, 257738.546700000762939 ], [ 349695.270499996840954, 257744.061200000345707 ], [ 349725.064499996602535, 257748.949099998921156 ], [ 349742.704499997198582, 257760.703600000590086 ], [ 349747.607100002467632, 257753.144400000572205 ], [ 349753.319600000977516, 257745.169599998742342 ], [ 349736.509300000965595, 257730.677600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014700", "MAP": null, "PARCEL_NAM": "4-1-22", "ACRE": null, "LONGITUDE": -65.01306362, "LATITUDE": 18.3497741, "OBJECTID_1": 1591, "PARCEL_NO_": "102403014700", "Tax_Legal_": "FORTUNA 4-1-22 WEST END QTR", "Name": "MALONEY, SELWYN T", "Address": "PO Box 8932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47200, "Improved_V": 135400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.220129098, "SHAPE_Area": 1258.9374373600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350093.462999999523163, 257762.096700001507998 ], [ 350141.145099997520447, 257749.610300000756979 ], [ 350135.619599997997284, 257735.63289999961853 ], [ 350131.616800002753735, 257732.222600001841784 ], [ 350130.007799997925758, 257731.787300001829863 ], [ 350091.371299996972084, 257723.660599999129772 ], [ 350093.462999999523163, 257762.096700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304051700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02197429, "LATITUDE": 18.34963737, "OBJECTID_1": 1360, "PARCEL_NO_": "102304051700", "Tax_Legal_": "FORTUNA 5A-19 WEST END QTR.", "Name": "BRIN, ARMELLE & AUGUSTIN", "Address": "530 Dahlia Dr", "City": "Jonesboro", "State": "Georgia", "Zip": 30238, "Country": "United States", "Land_Value": 45600, "Improved_V": 221400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.12330647799999, "SHAPE_Area": 2715.657391 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349154.741999998688698, 257680.108800001442432 ], [ 349143.673699997365475, 257748.834699999541044 ], [ 349179.927199997007847, 257752.719999998807907 ], [ 349205.318499997258186, 257706.487300001084805 ], [ 349202.111199997365475, 257704.350099999457598 ], [ 349172.381899997591972, 257691.863299999386072 ], [ 349160.351999998092651, 257684.165500000119209 ], [ 349154.741999998688698, 257680.108800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304051400", "MAP": "D9-490-T65", "PARCEL_NAM": "4-1-64", "ACRE": "0.47", "LONGITUDE": -65.0186194, "LATITUDE": 18.34970078, "OBJECTID_1": 1357, "PARCEL_NO_": "102304051400", "Tax_Legal_": "FORTUNA 4-1-64 WEST END QTR", "Name": "FRANCOIS, JEAN", "Address": "PO BOX 503293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 44200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.092478462, "SHAPE_Area": 1618.32697405 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349510.08839999884367, 257710.881499998271465 ], [ 349495.582000002264977, 257709.918400000780821 ], [ 349502.498999997973442, 257730.467599999159575 ], [ 349507.260300002992153, 257744.612700000405312 ], [ 349509.940499998629093, 257752.574999999254942 ], [ 349509.942400000989437, 257752.580299999564886 ], [ 349554.64469999819994, 257737.994300000369549 ], [ 349558.249600000679493, 257736.817999999970198 ], [ 349559.867600001394749, 257736.197999998927116 ], [ 349559.905299998819828, 257731.765299998223782 ], [ 349555.92230000346899, 257726.03319999948144 ], [ 349550.308700002729893, 257722.398600000888109 ], [ 349522.967799998819828, 257713.519999999552965 ], [ 349516.528099998831749, 257712.200800001621246 ], [ 349510.08839999884367, 257710.881499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303013900", "MAP": "A9-512-T98", "PARCEL_NAM": "5-59", "ACRE": ".27", "LONGITUDE": -65.0263786, "LATITUDE": 18.349756, "OBJECTID_1": 1215, "PARCEL_NO_": "102303013900", "Tax_Legal_": "FORTUNA 5-59 No.8 WESTEND QTR.", "Name": "TRUST AGREEMENT OF JASMINE SIMEON", "Address": "PO Box 11883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014883, "Country": "United States", "Land_Value": 26300, "Improved_V": 141900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.24872621099999, "SHAPE_Area": 1344.2125095199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348729.500600002706051, 257713.56980000063777 ], [ 348677.027400001883507, 257720.528599999845028 ], [ 348680.843099996447563, 257745.891100000590086 ], [ 348732.510099999606609, 257738.925599999725819 ], [ 348729.500600002706051, 257713.56980000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304051600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0222983, "LATITUDE": 18.34961601, "OBJECTID_1": 1359, "PARCEL_NO_": "102304051600", "Tax_Legal_": "FORTUNA 5A-20 WEST END QTR", "Name": "MINOT, KATHRYN LINNA", "Address": "9162 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42300, "Improved_V": 148300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.76530501799999, "SHAPE_Area": 1594.3365717700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349150.758900001645088, 257674.3766999989748 ], [ 349115.690099999308586, 257720.741300001740456 ], [ 349121.114900000393391, 257746.539200000464916 ], [ 349143.673699997365475, 257748.834699999541044 ], [ 349154.741999998688698, 257680.108800001442432 ], [ 349153.147299997508526, 257677.9847999997437 ], [ 349150.758900001645088, 257674.3766999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304052300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01997352, "LATITUDE": 18.34969223, "OBJECTID_1": 1366, "PARCEL_NO_": "102304052300", "Tax_Legal_": "FORTUNA 5A-8 WEST END QTR", "Name": "RICHARDSON, REUBEN & FRANCI", "Address": "PO Box 7835", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32000, "Improved_V": 197600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.731221632, "SHAPE_Area": 1337.7418740099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349410.001299999654293, 257722.305799998342991 ], [ 349360.125100001692772, 257708.387600000947714 ], [ 349357.639600001275539, 257716.177700001746416 ], [ 349354.270499996840954, 257733.037599999457598 ], [ 349403.33330000191927, 257747.793499998748302 ], [ 349410.001299999654293, 257722.305799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304052800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02100364, "LATITUDE": 18.3496509, "OBJECTID_1": 1371, "PARCEL_NO_": "102304052800", "Tax_Legal_": "FORTUNA 5A-15 WEST END QTR", "Name": "LETTSOME, JULIAN E. & WILLIAMS, HARRIET E.", "Address": "110 W 7th St", "City": "Mount Vernon", "State": "New York", "Zip": 10550, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.16580589199999, "SHAPE_Area": 962.60756568399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349270.696299999952316, 257699.211899999529123 ], [ 349251.139799997210503, 257723.116500001400709 ], [ 349265.559900000691414, 257734.211399998515844 ], [ 349267.962700001895428, 257736.130899999290705 ], [ 349275.953900001943111, 257744.640000000596046 ], [ 349294.664499998092651, 257725.372600000351667 ], [ 349270.696299999952316, 257699.211899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304042200", "MAP": "D9-1400-T78", "PARCEL_NAM": "4XE", "ACRE": null, "LONGITUDE": -65.01648293, "LATITUDE": 18.34959185, "OBJECTID_1": 1335, "PARCEL_NO_": "102304042200", "Tax_Legal_": "FORTUNA 4XE WEST END QTR", "Name": "EDUARDO & MILAGROS ZAYAS, TRUSTEES", "Address": "PO Box 302824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032824, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.70253394700001, "SHAPE_Area": 917.582148362 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349740.815999999642372, 257698.415500000119209 ], [ 349736.81870000064373, 257712.918000001460314 ], [ 349737.564699999988079, 257716.116300001740456 ], [ 349744.972999997437, 257722.466299999505281 ], [ 349736.509300000965595, 257730.677600000053644 ], [ 349753.319600000977516, 257745.169599998742342 ], [ 349755.765500001609325, 257742.023200001567602 ], [ 349771.234700001776218, 257724.629000000655651 ], [ 349765.592299997806549, 257724.371700000017881 ], [ 349760.772399999201298, 257722.221400000154972 ], [ 349758.378700003027916, 257719.246500000357628 ], [ 349757.597499996423721, 257716.284699998795986 ], [ 349756.836199998855591, 257711.001200001686811 ], [ 349758.497400000691414, 257705.315200001001358 ], [ 349760.144199997186661, 257701.317899998277426 ], [ 349764.218900002539158, 257696.285100001841784 ], [ 349740.815999999642372, 257698.415500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403017500", "MAP": "D9-8420-T010", "PARCEL_NAM": "4MA", "ACRE": ".31", "LONGITUDE": -65.01449106, "LATITUDE": 18.34957065, "OBJECTID_1": 1617, "PARCEL_NO_": "102403017500", "Tax_Legal_": "FORTUNA 4MA & 4MB-1 WEST END QUARTER", "Name": "LAPLACE (TRUSTEES), STEVEN J. & MARCELLA T.", "Address": "PO Box 306602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55900, "Improved_V": 219400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.81199337000001, "SHAPE_Area": 1316.1559605499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349973.908699996769428, 257692.301699999719858 ], [ 349961.490000002086163, 257698.761399999260902 ], [ 349942.861199997365475, 257694.49720000103116 ], [ 349950.124600000679493, 257739.180900000035763 ], [ 349964.609499998390675, 257742.677000001072884 ], [ 349974.285199999809265, 257742.75620000064373 ], [ 349979.938400000333786, 257741.747000001370907 ], [ 349974.508199997246265, 257716.582400001585484 ], [ 349973.730599999427795, 257713.198499999940395 ], [ 349973.806199997663498, 257704.333200000226498 ], [ 349973.908699996769428, 257692.301699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014800", "MAP": "D9-8420-T010", "PARCEL_NAM": "4MB REM", "ACRE": null, "LONGITUDE": -65.01413067, "LATITUDE": 18.34961255, "OBJECTID_1": 1592, "PARCEL_NO_": "102403014800", "Tax_Legal_": "FORTUNA 4MB WEST END QTR", "Name": "STEVEN J. & MARCELLA T. LAPLACE REVOC FAM TR", "Address": "PO Box 306602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.126969696, "SHAPE_Area": 1029.89378057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349975.994099996984005, 257713.2483000010252 ], [ 349976.055900000035763, 257723.754900000989437 ], [ 349979.938400000333786, 257741.747000001370907 ], [ 349999.34740000218153, 257735.150800000876188 ], [ 350009.3125, 257731.236000001430511 ], [ 350035.780699998140335, 257717.928300000727177 ], [ 350042.256399996578693, 257715.026000000536442 ], [ 350024.521099999547005, 257714.458599999547005 ], [ 349989.048799999058247, 257713.535000000149012 ], [ 349975.994099996984005, 257713.2483000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403017200", "MAP": "D9-1682-T81", "PARCEL_NAM": "4M", "ACRE": null, "LONGITUDE": -65.0147871, "LATITUDE": 18.34953619, "OBJECTID_1": 1614, "PARCEL_NO_": "102403017200", "Tax_Legal_": "FORTUNA 4M WEST END QTR", "Name": "VANTERPOOL, VINCENT W, GERMAIN SALDANA, GENIA V, & VINCE V", "Address": "PO BOX 305305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 165400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.34622101, "SHAPE_Area": 1290.6534279299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349942.861199997365475, 257694.49720000103116 ], [ 349913.649899996817112, 257696.562800001353025 ], [ 349911.756099998950958, 257699.603500001132488 ], [ 349909.286799997091293, 257705.493900001049042 ], [ 349910.019400000572205, 257714.154800001531839 ], [ 349910.791500002145767, 257718.171799998730421 ], [ 349911.583400003612041, 257719.86710000038147 ], [ 349913.973600000143051, 257723.26410000026226 ], [ 349919.579999998211861, 257727.743000000715256 ], [ 349928.408100001513958, 257732.670400001108646 ], [ 349936.444300003349781, 257735.90260000154376 ], [ 349950.124600000679493, 257739.180900000035763 ], [ 349942.861199997365475, 257694.49720000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01928396, "LATITUDE": 18.34950482, "OBJECTID_1": 1389, "PARCEL_NO_": "102304060300", "Tax_Legal_": "FORTUNA 4-1-12 WEST END QTR", "Name": "CLARKE, BERNETT H", "Address": "963 Central Hills Ln", "City": "Hyattsville", "State": "Maryland", "Zip": 20785, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.29793475599999, "SHAPE_Area": 1786.15558427 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349467.661300003528595, 257674.437300000339746 ], [ 349422.927500002086163, 257719.456300001591444 ], [ 349426.111400000751019, 257724.337499998509884 ], [ 349427.709700003266335, 257726.039299998432398 ], [ 349434.115199998021126, 257731.369100000709295 ], [ 349440.551299996674061, 257733.110500000417233 ], [ 349448.618000000715256, 257732.754299998283386 ], [ 349457.512599997222424, 257729.871800001710653 ], [ 349462.39190000295639, 257725.056600000709295 ], [ 349464.02250000089407, 257722.958999998867512 ], [ 349471.385399997234344, 257710.564699999988079 ], [ 349475.449299998581409, 257706.798300001770258 ], [ 349481.932199999690056, 257703.051699999719858 ], [ 349486.782700002193451, 257701.613699998706579 ], [ 349467.661300003528595, 257674.437300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304042300", "MAP": "F9-2391-T69", "PARCEL_NAM": "4XD", "ACRE": ".2336", "LONGITUDE": -65.01683752, "LATITUDE": 18.34953997, "OBJECTID_1": 1336, "PARCEL_NO_": "102304042300", "Tax_Legal_": "FORTUNA 4XD WEST END QTR", "Name": "HODGE ( LIFE ESTATE), JOSEPH", "Address": "P.O.BOX 4165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 157700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.418014922, "SHAPE_Area": 959.46594510499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349736.81870000064373, 257712.918000001460314 ], [ 349740.815999999642372, 257698.415500000119209 ], [ 349704.503200002014637, 257701.495799999684095 ], [ 349687.454899996519089, 257728.687399998307228 ], [ 349688.629299998283386, 257731.243500001728535 ], [ 349690.183799996972084, 257734.522100001573563 ], [ 349736.81870000064373, 257712.918000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303011700", "MAP": "C9-325-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0269274, "LATITUDE": 18.34954579, "OBJECTID_1": 1195, "PARCEL_NO_": "102303011700", "Tax_Legal_": "FORTUNA NO. 5, LOT #43 WESTEND QTR.", "Name": "MERCER, ELSTON & CECILY", "Address": "PO Box 502882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24800, "Improved_V": 218600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.43031133100001, "SHAPE_Area": 1123.03038249 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348662.788800001144409, 257688.114700000733137 ], [ 348627.267899997532368, 257692.890299998223782 ], [ 348631.834299996495247, 257724.802799999713898 ], [ 348667.373199999332428, 257717.916499998420477 ], [ 348662.788800001144409, 257688.114700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304042400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01704443, "LATITUDE": 18.34939637, "OBJECTID_1": 1337, "PARCEL_NO_": "102304042400", "Tax_Legal_": "FORTUNA 4XC WEST END QTR", "Name": "DOSS, ELIZABETH J", "Address": "PO Box 305264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.76271347700001, "SHAPE_Area": 1107.7085857300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349675.466399997472763, 257678.780099999159575 ], [ 349675.294299997389317, 257682.665899999439716 ], [ 349674.976800002157688, 257685.205899998545647 ], [ 349675.929300002753735, 257689.333399999886751 ], [ 349676.246799997985363, 257692.0320999994874 ], [ 349676.881800003349781, 257695.365899998694658 ], [ 349677.040500000119209, 257698.540899999439716 ], [ 349679.262999996542931, 257704.732200000435114 ], [ 349679.262999996542931, 257711.399700000882149 ], [ 349681.009300000965595, 257715.050900001078844 ], [ 349682.27929999679327, 257718.067200001329184 ], [ 349683.866800002753735, 257721.242199998348951 ], [ 349685.930500000715256, 257725.369699999690056 ], [ 349687.454899996519089, 257728.687399998307228 ], [ 349704.503200002014637, 257701.495799999684095 ], [ 349717.575000002980232, 257681.548900000751019 ], [ 349710.309199996292591, 257682.544900000095367 ], [ 349703.85869999974966, 257682.49210000038147 ], [ 349686.145000003278255, 257679.3918999992311 ], [ 349675.466399997472763, 257678.780099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304060600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01802107, "LATITUDE": 18.34945424, "OBJECTID_1": 1392, "PARCEL_NO_": "102304060600", "Tax_Legal_": "FORTUNA 4-1-9 SECT A 8 WEST END QT", "Name": "WILLIAMS, WINSTON M.A., TRUSTEE", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52200, "Improved_V": 314900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.31392626499999, "SHAPE_Area": 2286.4815396899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349570.91610000282526, 257669.7939000017941 ], [ 349564.81870000064373, 257722.939599998295307 ], [ 349568.011600002646446, 257726.765399999916553 ], [ 349572.824299998581409, 257729.760099999606609 ], [ 349599.468599997460842, 257725.756299998611212 ], [ 349622.8462999984622, 257726.580899998545647 ], [ 349599.837200000882149, 257682.485100001096725 ], [ 349594.27929999679327, 257672.307199999690056 ], [ 349587.834200002253056, 257671.621100001037121 ], [ 349570.91610000282526, 257669.7939000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303014000", "MAP": "A9-512-T98", "PARCEL_NAM": "5-60", "ACRE": ".25", "LONGITUDE": -65.0264326, "LATITUDE": 18.34952861, "OBJECTID_1": 1216, "PARCEL_NO_": "102303014000", "Tax_Legal_": "5-60 ESTATE FORTUNA #8 WESTEND QTR", "Name": "ANTHONY, SERELL SHANTAYA & SHAYLA", "Address": "215-284 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.552289417, "SHAPE_Area": 1303.95785978 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348723.222699999809265, 257693.253400001674891 ], [ 348711.966700002551079, 257689.361600000411272 ], [ 348673.224200002849102, 257693.6886 ], [ 348677.027400001883507, 257720.528599999845028 ], [ 348729.500600002706051, 257713.56980000063777 ], [ 348727.110399998724461, 257710.172699999064207 ], [ 348724.74719999730587, 257703.609499998390675 ], [ 348723.9679000005126, 257700.436700001358986 ], [ 348723.222699999809265, 257693.253400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304060700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01762999, "LATITUDE": 18.3493307, "OBJECTID_1": 1393, "PARCEL_NO_": "102304060700", "Tax_Legal_": "FORTUNA 4-1-8 WEST END QTR", "Name": "GEORGE, CARMEN", "Address": "PO Box 302404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56500, "Improved_V": 92200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.42300558900001, "SHAPE_Area": 2114.57509863 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349663.65820000320673, 257668.653099998831749 ], [ 349633.875, 257662.498700000345707 ], [ 349626.58219999819994, 257666.660900000482798 ], [ 349599.837200000882149, 257682.485100001096725 ], [ 349622.8462999984622, 257726.580899998545647 ], [ 349627.696699999272823, 257725.14299999922514 ], [ 349629.318300001323223, 257724.10080000013113 ], [ 349633.375100001692772, 257721.178700000047684 ], [ 349643.221699997782707, 257701.205400001257658 ], [ 349651.396300002932549, 257688.184500001370907 ], [ 349655.501599997282028, 257679.563200000673532 ], [ 349663.65820000320673, 257668.653099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801012700", "MAP": "A9-674-T006", "PARCEL_NAM": null, "ACRE": "14.06", "LONGITUDE": -65.0287813, "LATITUDE": 18.34635339, "OBJECTID_1": 7208, "PARCEL_NO_": "104801012700", "Tax_Legal_": "4I-A & 5-80 FORTUNA 8 WEST END QUARTER", "Name": "BY THE SEA RESORT PROPERTIES LLC", "Address": "2603 Oak Lawn", "City": "Dallas", "State": "Texas", "Zip": 752194021, "Country": "United States", "Land_Value": 989800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1240.3409088400001, "SHAPE_Area": 58041.849250500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348611.329800002276897, 257576.025100000202656 ], [ 348567.511799998581409, 257294.097699999809265 ], [ 348603.437700003385544, 257255.986200001090765 ], [ 348272.274700000882149, 257242.044300001114607 ], [ 348264.123400002717972, 257252.321199998259544 ], [ 348256.009900003671646, 257258.165399998426437 ], [ 348243.820000000298023, 257269.253600001335144 ], [ 348229.257799997925758, 257274.83390000090003 ], [ 348213.007500000298023, 257289.266399998217821 ], [ 348468.967799998819828, 257438.493500001728535 ], [ 348574.518100000917912, 257543.004299998283386 ], [ 348611.329800002276897, 257576.025100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304052900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02124201, "LATITUDE": 18.3494461, "OBJECTID_1": 1372, "PARCEL_NO_": "102304052900", "Tax_Legal_": "FORTUNA 5A-16 WEST END QTR", "Name": "CARTY, ALESTER S", "Address": "6712 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34800, "Improved_V": 97300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.15832425799999, "SHAPE_Area": 1140.9006947299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349247.527199998497963, 257673.902100000530481 ], [ 349223.876199997961521, 257705.161499999463558 ], [ 349235.116099998354912, 257710.953000001609325 ], [ 349251.139799997210503, 257723.116500001400709 ], [ 349270.696299999952316, 257699.211899999529123 ], [ 349247.527199998497963, 257673.902100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02239679, "LATITUDE": 18.34936974, "OBJECTID_1": 1358, "PARCEL_NO_": "102304051500", "Tax_Legal_": "FORTUNA 5A-21 WESTEND QTR.", "Name": "CERGE, LAWRENCE A. & AURORE", "Address": "PO Box 3701", "City": "Riverview", "State": "Florida", "Zip": 33568, "Country": "United States", "Land_Value": 38500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.362498905, "SHAPE_Area": 1005.33029451 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349147.589400000870228, 257667.806800000369549 ], [ 349107.137100003659725, 257683.518899999558926 ], [ 349115.690099999308586, 257720.741300001740456 ], [ 349150.758900001645088, 257674.3766999989748 ], [ 349149.16610000282526, 257672.041600000113249 ], [ 349147.569700002670288, 257670.128699999302626 ], [ 349147.589400000870228, 257667.806800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403017400", "MAP": "D9-2311-T83", "PARCEL_NAM": "4FL-2", "ACRE": null, "LONGITUDE": -65.01285458, "LATITUDE": 18.34951437, "OBJECTID_1": 1616, "PARCEL_NO_": "102403017400", "Tax_Legal_": "FORTUNA 4FL-2 WEST END QTR", "Name": "GARDNER, ELA BELLE", "Address": "PO Box 302463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.81016218100001, "SHAPE_Area": 943.33248468800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350152.830700002610683, 257735.203000001609325 ], [ 350153.148199997842312, 257727.265500001609325 ], [ 350152.730200000107288, 257714.874699998646975 ], [ 350153.576099999248981, 257710.237500000745058 ], [ 350154.615599997341633, 257705.851599998772144 ], [ 350108.521899998188019, 257698.212699998170137 ], [ 350108.503499999642372, 257700.36939999833703 ], [ 350110.072999998927116, 257705.448499999940395 ], [ 350114.025399997830391, 257714.769000001251698 ], [ 350119.633599996566772, 257719.036699999123812 ], [ 350134.92119999974966, 257722.961599998176098 ], [ 350140.525799997150898, 257727.651500001549721 ], [ 350142.124099999666214, 257729.353300001472235 ], [ 350146.099899999797344, 257735.929800000041723 ], [ 350152.830700002610683, 257735.203000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304052400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01992919, "LATITUDE": 18.34945315, "OBJECTID_1": 1367, "PARCEL_NO_": "102304052400", "Tax_Legal_": "FORTUNA 5A-9 WEST END QTR", "Name": "SNAGG, WILTON & VERNICE", "Address": "1328 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33900, "Improved_V": 236600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.26299046, "SHAPE_Area": 1162.77271845 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349360.125100001692772, 257708.387600000947714 ], [ 349410.001299999654293, 257722.305799998342991 ], [ 349410.84179999679327, 257718.301899999380112 ], [ 349406.860600002110004, 257712.35869999974966 ], [ 349405.273199997842312, 257709.390399999916553 ], [ 349401.327899999916553, 257699.225600000470877 ], [ 349400.543200001120567, 257696.686000000685453 ], [ 349397.431199997663498, 257683.361699998378754 ], [ 349395.840199999511242, 257680.815499998629093 ], [ 349392.631099998950958, 257678.889400001615286 ], [ 349389.407700002193451, 257678.651900000870228 ], [ 349386.17339999973774, 257679.680900000035763 ], [ 349371.55009999871254, 257692.438000001013279 ], [ 349368.299699999392033, 257695.366700001060963 ], [ 349365.859200000762939, 257697.879799999296665 ], [ 349360.125100001692772, 257708.387600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304060500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01838909, "LATITUDE": 18.34935335, "OBJECTID_1": 1391, "PARCEL_NO_": "102304060500", "Tax_Legal_": "FORTUNA 4-1-10 WEST END QTR", "Name": "SMITH, KIMESHA S. & PHIPPS, SHAMMIE", "Address": "PO Box 303798", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60100, "Improved_V": 266800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.00572402500001, "SHAPE_Area": 1710.0735872299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349564.81870000064373, 257722.939599998295307 ], [ 349570.91610000282526, 257669.7939000017941 ], [ 349550.772600002586842, 257667.94029999896884 ], [ 349546.73929999768734, 257668.118400000035763 ], [ 349540.27080000191927, 257670.176399998366833 ], [ 349534.579899996519089, 257675.618200000375509 ], [ 349522.280199997127056, 257699.58219999819994 ], [ 349522.258599996566772, 257702.115200001746416 ], [ 349523.858599998056889, 257703.605900000780821 ], [ 349554.410400003194809, 257714.199599999934435 ], [ 349564.81870000064373, 257722.939599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304060200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01949844000001, "LATITUDE": 18.34924339, "OBJECTID_1": 1388, "PARCEL_NO_": "102304060200", "Tax_Legal_": "FORTUNA 4-1-13 WEST END QTR", "Name": "NOEL, VIVIAN S & ADA", "Address": "PO BOX 9114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 176400, "Improved_V": 88600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.55408006900001, "SHAPE_Area": 2629.6173081400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349422.927500002086163, 257719.456300001591444 ], [ 349467.661300003528595, 257674.437300000339746 ], [ 349435.694700002670288, 257640.611800000071526 ], [ 349430.000200003385544, 257646.47580000013113 ], [ 349412.941799998283386, 257661.112700000405312 ], [ 349409.678700000047684, 257665.519000001251698 ], [ 349406.374399997293949, 257674.780000001192093 ], [ 349407.096199996769428, 257684.707299999892712 ], [ 349407.868299998342991, 257688.724399998784065 ], [ 349409.4324000030756, 257694.436799999326468 ], [ 349411.797399997711182, 257700.788899999111891 ], [ 349415.755199998617172, 257709.476199999451637 ], [ 349422.927500002086163, 257719.456300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304052600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02044503, "LATITUDE": 18.34943794, "OBJECTID_1": 1369, "PARCEL_NO_": "102304052600", "Tax_Legal_": "FORTUNA 5A-12 WEST END QTR", "Name": "GEORGE, DONALD S", "Address": "5A-12 ESTATE FORTUNA", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26500, "Improved_V": 169000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.26880161599999, "SHAPE_Area": 1209.9174814400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349351.471400000154972, 257682.985500000417233 ], [ 349306.263999998569489, 257688.948300000280142 ], [ 349316.519500002264977, 257715.629999998956919 ], [ 349348.788099996745586, 257713.994300000369549 ], [ 349354.585199996829033, 257696.098799999803305 ], [ 349354.649899996817112, 257688.5 ], [ 349351.471400000154972, 257682.985500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97507958, "LATITUDE": 18.3495279, "OBJECTID_1": 2600, "PARCEL_NO_": "102603022700", "Tax_Legal_": "CROWN & HAWK 15-4 S S QTR", "Name": "MILLIN, A", "Address": "725 Riverside Dr", "City": "New York", "State": "New York", "Zip": 10031, "Country": "United States", "Land_Value": 532700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.693802658000003, "SHAPE_Area": 181.951469976 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354135.874300003051758, 257752.118900001049042 ], [ 354139.984899997711182, 257742.864399999380112 ], [ 354122.242499999701977, 257743.141399998217821 ], [ 354116.596500001847744, 257743.306200001388788 ], [ 354114.16499999910593, 257744.763999998569489 ], [ 354114.130800001323223, 257748.774500001221895 ], [ 354115.732600003480911, 257750.054200001060963 ], [ 354126.211099997162819, 257750.562100000679493 ], [ 354135.874300003051758, 257752.118900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102403014900", "MAP": "G9-672-T63", "PARCEL_NAM": "4F-1", "ACRE": null, "LONGITUDE": -65.01341872, "LATITUDE": 18.34952367, "OBJECTID_1": 1593, "PARCEL_NO_": "102403014900", "Tax_Legal_": "FORTUNA 4L&POR. OF 4W,4F&4M WEST END QTR", "Name": "LAPLACE, VICTOR J. & VERLIN M.", "Address": "PO Box 302802", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 123900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.3445047174, "SHAPE_Area": 102.634838828 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350084.20440000295639, 257713.0472999997437 ], [ 350076.144900001585484, 257712.559099998325109 ], [ 350064.852899998426437, 257712.888900000602007 ], [ 350050.317699998617172, 257715.302999999374151 ], [ 350076.116099998354912, 257715.9364 ], [ 350098.691100001335144, 257716.33219999819994 ], [ 350084.20440000295639, 257713.0472999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01330332000001, "LATITUDE": 18.34934131, "OBJECTID_1": 1607, "PARCEL_NO_": "102403016500", "Tax_Legal_": "FORTUNA 4FN&4FP WEST END QTR", "Name": "LE BLANC, ERIC", "Address": "24-1 Est Hope", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.827711294, "SHAPE_Area": 938.014631807 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350074.875699996948242, 257672.229800000786781 ], [ 350076.144900001585484, 257712.559099998325109 ], [ 350084.20440000295639, 257713.0472999997437 ], [ 350098.691100001335144, 257716.33219999819994 ], [ 350101.939699999988079, 257713.614599999040365 ], [ 350101.968500003218651, 257710.237300001084805 ], [ 350098.822400003671646, 257700.923500001430511 ], [ 350097.3175999969244, 257688.24549999833107 ], [ 350097.358999997377396, 257683.390700001269579 ], [ 350098.181500002741814, 257681.497600000351667 ], [ 350096.606600001454353, 257677.05180000141263 ], [ 350094.203900001943111, 257675.13230000063777 ], [ 350092.596600003540516, 257674.485800001770258 ], [ 350087.767800003290176, 257673.390799999237061 ], [ 350082.933499999344349, 257672.929099999368191 ], [ 350074.875699996948242, 257672.229800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403016700", "MAP": "F9-3008-T72", "PARCEL_NAM": "4FM", "ACRE": null, "LONGITUDE": -65.01376495, "LATITUDE": 18.3493784, "OBJECTID_1": 1609, "PARCEL_NO_": "102403016700", "Tax_Legal_": "FORTUNA 4FM WEST END QTR", "Name": "LAKE, DOROTHY", "Address": "BOX 4804", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49200, "Improved_V": 4400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.728105871, "SHAPE_Area": 841.33599945000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350050.317699998617172, 257715.302999999374151 ], [ 350049.853100001811981, 257675.191399998962879 ], [ 350036.903499998152256, 257680.785000000149012 ], [ 350027.969400003552437, 257688.311200000345707 ], [ 350027.933399997651577, 257692.532800000160933 ], [ 350023.899999998509884, 257692.710900001227856 ], [ 350024.521099999547005, 257714.458599999547005 ], [ 350042.256399996578693, 257715.026000000536442 ], [ 350050.317699998617172, 257715.302999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01353439, "LATITUDE": 18.34933452, "OBJECTID_1": 1608, "PARCEL_NO_": "102403016600", "Tax_Legal_": "4J-2A & 4J-2B ESTATE FORTUNA #8 WEST END QUARTER", "Name": "SUNSET REALTY INC.", "Address": "P.O. BOX 2463", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.74950820199999, "SHAPE_Area": 1022.77661934 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350074.875699996948242, 257672.229800000786781 ], [ 350069.231600001454353, 257672.183600001037121 ], [ 350049.853100001811981, 257675.191399998962879 ], [ 350050.317699998617172, 257715.302999999374151 ], [ 350064.852899998426437, 257712.888900000602007 ], [ 350076.144900001585484, 257712.559099998325109 ], [ 350074.875699996948242, 257672.229800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403015000", "MAP": "G9-2116-T72", "PARCEL_NAM": "4FD-1", "ACRE": ".250", "LONGITUDE": -65.01413256, "LATITUDE": 18.34942192, "OBJECTID_1": 1594, "PARCEL_NO_": "102403015000", "Tax_Legal_": "FORTUNA 4FD-1 WEST END QTR", "Name": "GUMBS, WASHINGTON (LIFE ESTATE)", "Address": "BOX 4804", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47300, "Improved_V": 132100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.389820461, "SHAPE_Area": 1120.6438690299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350023.899999998509884, 257692.710900001227856 ], [ 350023.916199997067451, 257690.811200000345707 ], [ 349973.908699996769428, 257692.301699999719858 ], [ 349973.806199997663498, 257704.333200000226498 ], [ 349973.730599999427795, 257713.198499999940395 ], [ 349989.048799999058247, 257713.535000000149012 ], [ 350024.521099999547005, 257714.458599999547005 ], [ 350023.899999998509884, 257692.710900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97423148, "LATITUDE": 18.34912596, "OBJECTID_1": 2762, "PARCEL_NO_": "102604028000", "Tax_Legal_": "15-5-REM AND 15-5-A (INCLUDING 15-5-A-1(GREENBELT) AND DRAINAGE EASEMENT \"A\" CROWN & HAWK NO.3 SOUT", "Name": "SOOKRAM, SIEWDATH", "Address": "6076-66 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 410000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 410.13717575700002, "SHAPE_Area": 9235.0258084500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354175.440399996936321, 257651.117800001055002 ], [ 354143.287500001490116, 257733.814399998635054 ], [ 354158.593099996447563, 257735.628400001674891 ], [ 354165.025600001215935, 257737.791999999433756 ], [ 354170.653599999845028, 257739.737900000065565 ], [ 354185.11150000244379, 257746.400100000202656 ], [ 354193.971900001168251, 257747.528099998831749 ], [ 354198.81700000166893, 257746.723400000482798 ], [ 354243.295400001108646, 257731.677600000053644 ], [ 354253.791900001466274, 257730.074799999594688 ], [ 354262.670299999415874, 257729.092000000178814 ], [ 354267.509999997913837, 257728.920499999076128 ], [ 354288.481299996376038, 257728.247699998319149 ], [ 354288.099399998784065, 257678.426500000059605 ], [ 354284.069600000977516, 257678.182500001043081 ], [ 354276.830799996852875, 257676.012299999594688 ], [ 354273.6199000030756, 257674.2972999997437 ], [ 354268.825199998915195, 257669.191799998283386 ], [ 354264.014300003647804, 257665.986000001430511 ], [ 354227.694200001657009, 257669.910599999129772 ], [ 354219.629299998283386, 257670.055700000375509 ], [ 354209.163400001823902, 257668.070199999958277 ], [ 354194.687600001692772, 257663.518699999898672 ], [ 354175.440399996936321, 257651.117800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01888271, "LATITUDE": 18.34920554, "OBJECTID_1": 1390, "PARCEL_NO_": "102304060400", "Tax_Legal_": "FORTUNA 4-1-11 WEST END QTR", "Name": "MAYNARD, VIOLA CARTER", "Address": "4-1-11 Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59200, "Improved_V": 250600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.010221118, "SHAPE_Area": 2164.10121342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349481.582599997520447, 257649.431099999696016 ], [ 349467.661300003528595, 257674.437300000339746 ], [ 349486.782700002193451, 257701.613699998706579 ], [ 349497.275499999523163, 257700.433100000023842 ], [ 349507.755800001323223, 257700.729899998754263 ], [ 349515.080899998545647, 257692.768300000578165 ], [ 349519.992499999701977, 257684.1537000015378 ], [ 349523.273500002920628, 257677.636599998921156 ], [ 349526.554499998688698, 257671.119600001722574 ], [ 349527.403999999165535, 257666.060300000011921 ], [ 349523.438900001347065, 257658.217399999499321 ], [ 349520.226300001144409, 257656.71339999884367 ], [ 349481.582599997520447, 257649.431099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302014100", "MAP": "A9-512-T98", "PARCEL_NAM": "5-61", "ACRE": ".23", "LONGITUDE": -65.02655007, "LATITUDE": 18.34927543, "OBJECTID_1": 1186, "PARCEL_NO_": "102302014100", "Tax_Legal_": "5-61 FORTUNA WESTEND QTR", "Name": "BLUEWATER CREST HOMEOWNER'S", "Address": "PO Box 8551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.25031934500001, "SHAPE_Area": 1057.0714004900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348673.224200002849102, 257693.6886 ], [ 348711.966700002551079, 257689.361600000411272 ], [ 348688.891099996864796, 257653.075800001621246 ], [ 348682.401100002229214, 257657.666700001806021 ], [ 348680.779500000178814, 257658.70890000090003 ], [ 348671.071400001645088, 257662.429099999368191 ], [ 348669.437100000679493, 257664.948899999260902 ], [ 348673.224200002849102, 257693.6886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303011800", "MAP": "C9-325-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0269678, "LATITUDE": 18.34927936, "OBJECTID_1": 1196, "PARCEL_NO_": "102303011800", "Tax_Legal_": "FORTUNA NO. 5, LOT #42 WESTEND QTR.", "Name": "JOSEPH, BONAVENT & ANESTASIA", "Address": "PO Box 10951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 109300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.934254534, "SHAPE_Area": 1010.01145806 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348658.195500001311302, 257659.368400000035763 ], [ 348623.470100000500679, 257665.416999999433756 ], [ 348627.267899997532368, 257692.890299998223782 ], [ 348662.788800001144409, 257688.114700000733137 ], [ 348658.195500001311302, 257659.368400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303014200", "MAP": "A9-512-T98", "PARCEL_NAM": "5-62", "ACRE": ".26", "LONGITUDE": -65.02632584, "LATITUDE": 18.34919787, "OBJECTID_1": 1217, "PARCEL_NO_": "102303014200", "Tax_Legal_": "5-62 ESTATE FORTUNA\n8 WESTEND QTR", "Name": "GEORGES, BERNARD F & CYNTHIA C ROSS", "Address": "PO Box 8093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33300, "Improved_V": 109200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.453118225, "SHAPE_Area": 1038.1819716099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348733.004600003361702, 257680.879000000655651 ], [ 348705.118100002408028, 257641.387299999594688 ], [ 348688.891099996864796, 257653.075800001621246 ], [ 348711.966700002551079, 257689.361600000411272 ], [ 348723.222699999809265, 257693.253400001674891 ], [ 348724.8766999989748, 257688.411800000816584 ], [ 348733.004600003361702, 257680.879000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01657445, "LATITUDE": 18.3493121, "OBJECTID_1": 1338, "PARCEL_NO_": "102304042500", "Tax_Legal_": "FORTUNA 4XB WEST END QTR", "Name": "KRIGGER, JEAN ADAMS", "Address": "BOX 4370", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 166100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.37914309499999, "SHAPE_Area": 1159.19824647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349704.503200002014637, 257701.495799999684095 ], [ 349740.815999999642372, 257698.415500000119209 ], [ 349764.218900002539158, 257696.285100001841784 ], [ 349770.755699999630451, 257686.2060999982059 ], [ 349778.914099998772144, 257675.084899999201298 ], [ 349778.9375, 257672.340900000184774 ], [ 349775.710400000214577, 257672.525499999523163 ], [ 349764.375299997627735, 257677.92119999974966 ], [ 349758.716700002551079, 257679.5636 ], [ 349733.7246999964118, 257678.936900001019239 ], [ 349717.575000002980232, 257681.548900000751019 ], [ 349704.503200002014637, 257701.495799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403017300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01462938, "LATITUDE": 18.34925959, "OBJECTID_1": 1615, "PARCEL_NO_": "102403017300", "Tax_Legal_": "4-L-A FORTUNA WEST END QTR.", "Name": "LAPLACE, ALYWN & LEONE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41500, "Improved_V": 177400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.79484102000001, "SHAPE_Area": 1085.0643506 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349949.256099998950958, 257694.045000001788139 ], [ 349969.875299997627735, 257692.479800000786781 ], [ 349969.903300002217293, 257692.58500000089407 ], [ 349973.908699996769428, 257692.301699999719858 ], [ 349973.933799996972084, 257689.346599999815226 ], [ 349973.269599996507168, 257672.664799999445677 ], [ 349934.563000001013279, 257672.770199999213219 ], [ 349921.561300002038479, 257684.484999999403954 ], [ 349915.026299998164177, 257694.352899998426437 ], [ 349913.649899996817112, 257696.562800001353025 ], [ 349942.861199997365475, 257694.49720000103116 ], [ 349949.256099998950958, 257694.045000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304052500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02050585000001, "LATITUDE": 18.34922625, "OBJECTID_1": 1368, "PARCEL_NO_": "102304052500", "Tax_Legal_": "FORTUNA 5A-11 WEST END QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.802106393, "SHAPE_Area": 982.00988423199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349350.832299999892712, 257663.348600000143051 ], [ 349298.371699996292591, 257668.829799998551607 ], [ 349306.263999998569489, 257688.948300000280142 ], [ 349351.471400000154972, 257682.985500000417233 ], [ 349349.916299998760223, 257676.217799998819828 ], [ 349350.832299999892712, 257663.348600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97307037, "LATITUDE": 18.34918495, "OBJECTID_1": 2763, "PARCEL_NO_": "102604028100", "Tax_Legal_": "CROWN & HAWK 15-6 S S QTR", "Name": "MILLIN, CHRISTINE L", "Address": "C/O Jacklyn Venzen-Millin", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 464100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.92775312200001, "SHAPE_Area": 4048.2934517100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354288.481299996376038, 257728.247699998319149 ], [ 354393.298299998044968, 257729.527800001204014 ], [ 354404.637000001966953, 257723.71000000089407 ], [ 354419.188400000333786, 257719.396099999547005 ], [ 354430.489399999380112, 257718.010999999940395 ], [ 354432.919100001454353, 257716.764299999922514 ], [ 354433.75959999859333, 257712.760400000959635 ], [ 354432.159599997103214, 257711.269600000232458 ], [ 354428.941500000655651, 257710.398899998515844 ], [ 354408.765699997544289, 257712.344700001180172 ], [ 354392.652000002563, 257710.735199999064207 ], [ 354382.983499996364117, 257709.811700001358986 ], [ 354369.310300000011921, 257705.688999999314547 ], [ 354366.898599997162819, 257704.82490000128746 ], [ 354309.842799998819828, 257681.770899999886751 ], [ 354300.186800003051758, 257679.369800001382828 ], [ 354288.099399998784065, 257678.426500000059605 ], [ 354288.481299996376038, 257728.247699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403015300", "MAP": "G9-2116-T72", "PARCEL_NAM": "4FD", "ACRE": ".25", "LONGITUDE": -65.01414162, "LATITUDE": 18.34922996, "OBJECTID_1": 1597, "PARCEL_NO_": "102403015300", "Tax_Legal_": "FORTUNA 4FD WEST END QTR", "Name": "GUMBS, WASHINGTON (LIFE ESTATE)", "Address": "BOX 4804", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47300, "Improved_V": 132100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.02662223, "SHAPE_Area": 1009.2448696599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350023.916199997067451, 257690.811200000345707 ], [ 350023.282499998807907, 257670.541000001132488 ], [ 349993.439999997615814, 257671.352200001478195 ], [ 349973.269599996507168, 257672.664799999445677 ], [ 349973.933799996972084, 257689.346599999815226 ], [ 349973.908699996769428, 257692.301699999719858 ], [ 350023.916199997067451, 257690.811200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303014300", "MAP": "A9-512-T98", "PARCEL_NAM": "5-63", "ACRE": ".25", "LONGITUDE": -65.0261699, "LATITUDE": 18.34906971, "OBJECTID_1": 1218, "PARCEL_NO_": "102303014300", "Tax_Legal_": "5-63 ESTATE FORTUNA #8 WESTEND QTR", "Name": "FRAZER, REHENIA", "Address": "PO Box 12364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.35923674700001, "SHAPE_Area": 1057.41357935 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348749.258500002324581, 257666.024399999529123 ], [ 348723.780199997127056, 257627.818999998271465 ], [ 348705.118100002408028, 257641.387299999594688 ], [ 348733.004600003361702, 257680.879000000655651 ], [ 348749.258500002324581, 257666.024399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304054700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02241669, "LATITUDE": 18.34905945, "OBJECTID_1": 1385, "PARCEL_NO_": "102304054700", "Tax_Legal_": "FORTUNA 5A-43 WEST END QTR.", "Name": "STROUDE, DAVID", "Address": "PO Box 11252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.13789277800001, "SHAPE_Area": 1720.45754416 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349135.746500000357628, 257638.156800001859665 ], [ 349101.922700002789497, 257633.02479999884963 ], [ 349107.137100003659725, 257683.518899999558926 ], [ 349147.589400000870228, 257667.806800000369549 ], [ 349146.829899996519089, 257662.312199998646975 ], [ 349147.726099997758865, 257651.764899998903275 ], [ 349151.820600003004074, 257644.410100001841784 ], [ 349151.044900000095367, 257640.815200001001358 ], [ 349138.159999996423721, 257638.809900000691414 ], [ 349135.746500000357628, 257638.156800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01286801000001, "LATITUDE": 18.3492618, "OBJECTID_1": 1605, "PARCEL_NO_": "102403016300", "Tax_Legal_": "FORTUNA 4FK WEST END QTR", "Name": "HAMILTON, CHARLES A & DAISY", "Address": "PO Box 302463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45400, "Improved_V": 326100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.889142228, "SHAPE_Area": 1360.0018508400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350165.279700003564358, 257676.453699998557568 ], [ 350107.948899999260902, 257670.811799999326468 ], [ 350107.095899999141693, 257676.293200001120567 ], [ 350107.787100002169609, 257689.808899998664856 ], [ 350108.539499998092651, 257696.147799998521805 ], [ 350108.521899998188019, 257698.212699998170137 ], [ 350155.818400003015995, 257700.776799999177456 ], [ 350156.921800002455711, 257696.121599998325109 ], [ 350158.599200002849102, 257688.535999998450279 ], [ 350164.336900003254414, 257677.606100000441074 ], [ 350165.279700003564358, 257676.453699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304063000", "MAP": "G9-3012-T80", "PARCEL_NAM": "4-1-29A", "ACRE": ".24", "LONGITUDE": -65.02003341, "LATITUDE": 18.34907377, "OBJECTID_1": 1410, "PARCEL_NO_": "102304063000", "Tax_Legal_": "FORTUNA 4-1-29A WEST END QTR", "Name": "FARRINGTON, LYDIA E. JONES (TRUSTEE)", "Address": "PO Box 305845", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22600, "Improved_V": 147400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.111667837, "SHAPE_Area": 1014.01081586 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349398.437100000679493, 257659.938499998301268 ], [ 349378.504100002348423, 257633.388700000941753 ], [ 349365.4628000035882, 257649.74720000103116 ], [ 349361.32880000025034, 257661.745700001716614 ], [ 349360.499099999666214, 257664.483199998736382 ], [ 349359.658600002527237, 257668.487100001424551 ], [ 349358.787600003182888, 257676.079300001263618 ], [ 349360.382200002670288, 257678.203299999237061 ], [ 349361.983999997377396, 257679.482999999076128 ], [ 349363.589500002563, 257680.340500000864267 ], [ 349368.418399997055531, 257681.435499999672174 ], [ 349372.464299999177456, 257679.779800001531839 ], [ 349373.28320000320673, 257678.308899998664856 ], [ 349387.083999998867512, 257667.445000000298023 ], [ 349398.437100000679493, 257659.938499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304060800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01785383000001, "LATITUDE": 18.34898713, "OBJECTID_1": 1394, "PARCEL_NO_": "102304060800", "Tax_Legal_": "FORTUNA 4-1-19A WEST END QTR", "Name": "SOUTHERLAND, ILMA E.", "Address": "PO Box 11582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48000, "Improved_V": 155400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.13495470199999, "SHAPE_Area": 1594.4999233000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349626.58219999819994, 257666.660900000482798 ], [ 349621.204099997878075, 257635.375100001692772 ], [ 349597.997299998998642, 257614.497999999672174 ], [ 349589.522399999201298, 257662.769000001251698 ], [ 349587.834200002253056, 257671.621100001037121 ], [ 349594.27929999679327, 257672.307199999690056 ], [ 349599.837200000882149, 257682.485100001096725 ], [ 349626.58219999819994, 257666.660900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304053300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02145703, "LATITUDE": 18.34894236, "OBJECTID_1": 1373, "PARCEL_NO_": "102304053300", "Tax_Legal_": "FORTUNA 5A-17,18,22&23 WEST END QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 122400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.95610548100001, "SHAPE_Area": 2167.2494054 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349238.347800001502037, 257615.565200001001358 ], [ 349218.145000003278255, 257620.677200000733137 ], [ 349194.724200002849102, 257624.918400000780821 ], [ 349200.928300000727177, 257653.888999998569489 ], [ 349215.389799997210503, 257660.129099998623133 ], [ 349247.527199998497963, 257673.902100000530481 ], [ 349255.626299999654293, 257669.746500000357628 ], [ 349238.347800001502037, 257615.565200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01372897, "LATITUDE": 18.348978, "OBJECTID_1": 1610, "PARCEL_NO_": "102403016800", "Tax_Legal_": "4FQ FORTUNA", "Name": "MANNING, GEORGE C", "Address": "PO Box 11327", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.55748300400001, "SHAPE_Area": 1130.60208644 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350062.851199999451637, 257663.898800000548363 ], [ 350062.266099996864796, 257637.929499998688698 ], [ 350056.620099999010563, 257638.094399999827147 ], [ 350023.545100003480911, 257639.723499998450279 ], [ 350027.24040000140667, 257679.228199999779463 ], [ 350036.179899998009205, 257671.068799998611212 ], [ 350042.664599999785423, 257667.111099999397993 ], [ 350062.851199999451637, 257663.898800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304061100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01920982, "LATITUDE": 18.3489021, "OBJECTID_1": 1397, "PARCEL_NO_": "102304061100", "Tax_Legal_": "4-1-14 FORTUNA WEST END QTR", "Name": "PENN, ANNA", "Address": "PO Box 302601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52300, "Improved_V": 124000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.78258923300001, "SHAPE_Area": 1685.9915206400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349486.492399998009205, 257641.027499999850988 ], [ 349468.227700002491474, 257607.947399999946356 ], [ 349435.694700002670288, 257640.611800000071526 ], [ 349467.661300003528595, 257674.437300000339746 ], [ 349481.582599997520447, 257649.431099999696016 ], [ 349486.492399998009205, 257641.027499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303011900", "MAP": "C9-325-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02701301, "LATITUDE": 18.34900795, "OBJECTID_1": 1197, "PARCEL_NO_": "102303011900", "Tax_Legal_": "FORTUNA NO 5, LOT #41 WESTEND QTR.", "Name": "DOUGLAS, CAROL", "Address": "PO Box 303616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 102500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.14291457100001, "SHAPE_Area": 1138.94317774 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348653.629199996590614, 257627.455899998545647 ], [ 348618.905599996447563, 257633.293400000780821 ], [ 348623.470100000500679, 257665.416999999433756 ], [ 348658.195500001311302, 257659.368400000035763 ], [ 348653.629199996590614, 257627.455899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303014400", "MAP": "A9-512-T98", "PARCEL_NAM": "5-64", "ACRE": ".24", "LONGITUDE": -65.02599902, "LATITUDE": 18.34893614, "OBJECTID_1": 1219, "PARCEL_NO_": "102303014400", "Tax_Legal_": "5-64 ESTATE FORTUNA #8 WESTEND QTR.", "Name": "DANIEL, NIGEL A.", "Address": "7700 NW 3rd St", "City": "Pembroke Pines", "State": "Florida", "Zip": 330240000, "Country": "United States", "Land_Value": 58200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.10197113800001, "SHAPE_Area": 1073.4127389299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348766.367299996316433, 257645.477200001478195 ], [ 348740.840400002896786, 257612.971000000834465 ], [ 348733.517099998891354, 257620.721500001847744 ], [ 348723.780199997127056, 257627.818999998271465 ], [ 348749.258500002324581, 257666.024399999529123 ], [ 348761.452100001275539, 257654.513999998569489 ], [ 348765.537600003182888, 257648.214600000530481 ], [ 348766.367299996316433, 257645.477200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01685256, "LATITUDE": 18.34904735, "OBJECTID_1": 1339, "PARCEL_NO_": "102304042600", "Tax_Legal_": "FORTUNA 4 1 45 WEST END QTR", "Name": "RONALD A. & ANGELA R. KRIGGER TRUST", "Address": "PO Box 302583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70200, "Improved_V": 188700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.308946682, "SHAPE_Area": 1427.69938652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349753.956200003623962, 257670.447599999606609 ], [ 349709.89130000025034, 257636.945300001651049 ], [ 349705.836400002241135, 257639.656300000846386 ], [ 349691.236400000751019, 257649.669300001114607 ], [ 349682.277099996805191, 257660.150699999183416 ], [ 349683.022299997508526, 257667.333999998867512 ], [ 349685.424999997019768, 257669.253499999642372 ], [ 349687.026900000870228, 257670.533100001513958 ], [ 349697.499899998307228, 257671.674300000071526 ], [ 349708.777500003576279, 257673.03319999948144 ], [ 349728.958700001239777, 257670.454100001603365 ], [ 349753.956200003623962, 257670.447599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304052200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02048207, "LATITUDE": 18.34902922, "OBJECTID_1": 1365, "PARCEL_NO_": "102304052200", "Tax_Legal_": "FORTUNA 5A-10 WEST END QTR.", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.01913589399999, "SHAPE_Area": 1227.36419957 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349298.371699996292591, 257668.829799998551607 ], [ 349350.832299999892712, 257663.348600000143051 ], [ 349355.799699999392033, 257648.190499998629093 ], [ 349359.885200001299381, 257641.891100000590086 ], [ 349362.33110000193119, 257638.744699999690056 ], [ 349305.020000003278255, 257645.664000000804663 ], [ 349298.371699996292591, 257668.829799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01449087, "LATITUDE": 18.3489666, "OBJECTID_1": 1593, "PARCEL_NO_": "102403014900", "Tax_Legal_": "FORTUNA 4L&POR. OF 4W,4F&4M WEST END QTR", "Name": "LAPLACE, VICTOR J. & VERLIN M.", "Address": "PO Box 302802", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 123900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.58181306099999, "SHAPE_Area": 1074.60391127 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349974.460699997842312, 257627.500500001013279 ], [ 349974.604599997401237, 257610.614199999719858 ], [ 349969.725299999117851, 257615.429400000721216 ], [ 349960.665299996733665, 257637.731199998408556 ], [ 349959.025700002908707, 257640.884199999272823 ], [ 349953.300599999725819, 257650.336500000208616 ], [ 349950.851099997758865, 257653.905099999159575 ], [ 349943.515100002288818, 257663.133200000971556 ], [ 349937.81700000166893, 257669.419300001114607 ], [ 349934.563000001013279, 257672.770199999213219 ], [ 349973.269599996507168, 257672.664799999445677 ], [ 349973.407999999821186, 257656.411699999123812 ], [ 349974.460699997842312, 257627.500500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403015200", "MAP": "D9-1002-T70", "PARCEL_NAM": "4FE", "ACRE": ".25", "LONGITUDE": -65.01414987, "LATITUDE": 18.34901077, "OBJECTID_1": 1596, "PARCEL_NO_": "102403015200", "Tax_Legal_": "FORTUNA 4F-E WEST END QTR.", "Name": "PLUNKETT, ADRIAN", "Address": "BOX 3611", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.13649785600001, "SHAPE_Area": 1366.8495576800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350020.296400003135204, 257642.441100001335144 ], [ 349977.565499998629093, 257641.669199999421835 ], [ 349976.635099999606609, 257656.227099999785423 ], [ 349973.407999999821186, 257656.411699999123812 ], [ 349973.269599996507168, 257672.664799999445677 ], [ 349993.439999997615814, 257671.352200001478195 ], [ 350023.282499998807907, 257670.541000001132488 ], [ 350021.784999996423721, 257657.018800001591444 ], [ 350020.296400003135204, 257642.441100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01653738, "LATITUDE": 18.34894396, "OBJECTID_1": 1340, "PARCEL_NO_": "102304042700", "Tax_Legal_": "FORTUNA 4-1-47 WESTEND QTR.", "Name": "LEBRON, RAMONA", "Address": "PO Box 307082", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86000, "Improved_V": 187700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.788147557, "SHAPE_Area": 1491.52643388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349782.259800001978874, 257660.969000000506639 ], [ 349735.813799999654293, 257623.014199998229742 ], [ 349727.702100001275539, 257628.647300001233816 ], [ 349709.89130000025034, 257636.945300001651049 ], [ 349753.956200003623962, 257670.447599999606609 ], [ 349756.376900002360344, 257670.256400000303984 ], [ 349770.935500003397465, 257665.098200000822544 ], [ 349782.259800001978874, 257660.969000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304061800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01739598, "LATITUDE": 18.34883641, "OBJECTID_1": 1404, "PARCEL_NO_": "102304061800", "Tax_Legal_": "FORTUNA 4-1-20 WEST END QTR", "Name": "COOPER, CHERYL C. L. & LEWIS, C", "Address": "PO Box 9186", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 89500, "Improved_V": 173000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.874583024, "SHAPE_Area": 2605.7911043700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349692.145300000905991, 257637.644400000572205 ], [ 349634.491800002753735, 257590.098700001835823 ], [ 349634.238200001418591, 257619.860800001770258 ], [ 349633.875, 257662.498700000345707 ], [ 349663.65820000320673, 257668.653099998831749 ], [ 349674.257100000977516, 257655.018800001591444 ], [ 349682.402999997138977, 257645.375199999660254 ], [ 349692.145300000905991, 257637.644400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403015900", "MAP": "F9-3007-T72", "PARCEL_NAM": "4FJ", "ACRE": null, "LONGITUDE": -65.01282217000001, "LATITUDE": 18.34903959, "OBJECTID_1": 1601, "PARCEL_NO_": "102403015900", "Tax_Legal_": "FORTUNA 4FJ WEST END QTR", "Name": "HAMILTON, CHARLES A & DAISY", "Address": "PO Box 302463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.29303951399999, "SHAPE_Area": 1380.50232409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350155.463699996471405, 257648.133499998599291 ], [ 350124.291000001132488, 257645.61430000141263 ], [ 350119.436899997293949, 257647.474399998784065 ], [ 350114.563100002706051, 257651.656399998813868 ], [ 350112.927100002765656, 257654.387200001627207 ], [ 350112.10639999806881, 257656.069299999624491 ], [ 350110.454199999570847, 257660.699799999594688 ], [ 350108.789399996399879, 257666.807900000363588 ], [ 350107.948899999260902, 257670.811799999326468 ], [ 350165.279700003564358, 257676.453699998557568 ], [ 350167.5962999984622, 257673.622000001370907 ], [ 350170.034999996423721, 257671.319899998605251 ], [ 350168.094999998807907, 257668.232999999076128 ], [ 350155.463699996471405, 257648.133499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304062400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01768989, "LATITUDE": 18.34883567, "OBJECTID_1": 1409, "PARCEL_NO_": "102304062400", "Tax_Legal_": "FORTUNA 4-1-19 No.8 WESTEND QTR.", "Name": "CAROL LEWIS and SHANIKA R DEWINDT", "Address": "PO Box 304474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.632147879, "SHAPE_Area": 716.40456764099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349634.238200001418591, 257619.860800001770258 ], [ 349597.997299998998642, 257614.497999999672174 ], [ 349621.204099997878075, 257635.375100001692772 ], [ 349626.58219999819994, 257666.660900000482798 ], [ 349633.875, 257662.498700000345707 ], [ 349634.238200001418591, 257619.860800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01247679, "LATITUDE": 18.3488268, "OBJECTID_1": 1602, "PARCEL_NO_": "102403016000", "Tax_Legal_": "FORTUNA 4FA WEST END QTR", "Name": "BASS, JACQUETTE K", "Address": "PO Box 302154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40600, "Improved_V": 227900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.68168272899999, "SHAPE_Area": 1596.5967467400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350189.108900003135204, 257609.414500001817942 ], [ 350167.33839999884367, 257609.236400000751019 ], [ 350157.638899996876717, 257641.008200000971556 ], [ 350155.463699996471405, 257648.133499998599291 ], [ 350168.094999998807907, 257668.232999999076128 ], [ 350170.034999996423721, 257671.319899998605251 ], [ 350174.095299996435642, 257667.975699998438358 ], [ 350182.210600003600121, 257661.920400001108646 ], [ 350186.265500001609325, 257659.209300000220537 ], [ 350191.128600001335144, 257656.293800000101328 ], [ 350189.108900003135204, 257609.414500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304061600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01806803, "LATITUDE": 18.34867919, "OBJECTID_1": 1402, "PARCEL_NO_": "102304061600", "Tax_Legal_": "FORTUNA 4-1-17 WEST END QTR", "Name": "STOUT, NORBERT", "Address": "BOX 4526", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.82920300699999, "SHAPE_Area": 1911.9425375400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349597.997299998998642, 257614.497999999672174 ], [ 349604.798500001430511, 257573.390399999916553 ], [ 349598.317400000989437, 257576.925900001078844 ], [ 349586.951700001955032, 257585.90989999845624 ], [ 349579.628300003707409, 257593.660500001162291 ], [ 349577.185999996960163, 257596.384700000286102 ], [ 349564.95830000191927, 257611.905499998480082 ], [ 349557.669100001454353, 257615.645599998533726 ], [ 349586.300700001418591, 257662.320500001311302 ], [ 349589.522399999201298, 257662.769000001251698 ], [ 349597.997299998998642, 257614.497999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304060900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0184008, "LATITUDE": 18.34886745, "OBJECTID_1": 1395, "PARCEL_NO_": "102304060900", "Tax_Legal_": "FORTUNA 4-1-16 WEST END QTR", "Name": "STOUT, GOLDA", "Address": "PO Box 304526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49700, "Improved_V": 172600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.42105674499999, "SHAPE_Area": 2046.9162422500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349520.654200002551079, 257606.476700000464916 ], [ 349526.737899996340275, 257649.589600000530481 ], [ 349529.939800001680851, 257652.359999999403954 ], [ 349531.543399997055531, 257653.428599998354912 ], [ 349540.378700003027916, 257657.511700000613928 ], [ 349586.300700001418591, 257662.320500001311302 ], [ 349557.669100001454353, 257615.645599998533726 ], [ 349552.824000000953674, 257616.450300000607967 ], [ 349542.34740000218153, 257615.731199998408556 ], [ 349531.091399997472763, 257611.839400000870228 ], [ 349520.654200002551079, 257606.476700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304060100", "MAP": "G9-3012-T80", "PARCEL_NAM": "4-1-29", "ACRE": ".24", "LONGITUDE": -65.01982916, "LATITUDE": 18.34886684, "OBJECTID_1": 1387, "PARCEL_NO_": "102304060100", "Tax_Legal_": "4-1-29 FORTUNA NO. 8 WEST END QUARTER", "Name": "LYDIA E JONES FARRINGTON TRUST", "Address": "PO Box 305845", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.20230916, "SHAPE_Area": 978.52287015700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349419.545100003480911, 257643.223799999803305 ], [ 349392.410999998450279, 257610.071100000292063 ], [ 349388.305699996650219, 257618.692400000989437 ], [ 349385.848999999463558, 257623.105200000107288 ], [ 349382.584200002253056, 257627.722600001841784 ], [ 349378.504100002348423, 257633.388700000941753 ], [ 349398.437100000679493, 257659.938499998301268 ], [ 349401.684000000357628, 257657.432000000029802 ], [ 349419.545100003480911, 257643.223799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01485691000001, "LATITUDE": 18.34874044, "OBJECTID_1": 1574, "PARCEL_NO_": "102403013000", "Tax_Legal_": "FORTUNA 4-0 WEST END QTR", "Name": "S. ASSEM. BAHA'L OF V. I.", "Address": "BOX 2488", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 130900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.34529678000001, "SHAPE_Area": 2818.6336815899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349969.01969999819994, 257603.602400001138449 ], [ 349936.765399999916553, 257603.549499999731779 ], [ 349901.284100003540516, 257603.68129999935627 ], [ 349897.151799999177456, 257615.468699999153614 ], [ 349890.553900003433228, 257632.724399998784065 ], [ 349888.111599996685982, 257635.448600001633167 ], [ 349879.915399998426437, 257651.002500001341105 ], [ 349880.683899998664856, 257655.441700000315905 ], [ 349883.090300001204014, 257656.939100001007318 ], [ 349887.127199999988079, 257656.338799998164177 ], [ 349918.744199998676777, 257636.543699998408556 ], [ 349924.393799997866154, 257635.956700000911951 ], [ 349928.410999998450279, 257637.678300000727177 ], [ 349931.598499998450279, 257642.13740000128746 ], [ 349931.548100002110004, 257648.047600001096725 ], [ 349926.597000002861023, 257661.305900000035763 ], [ 349927.378100000321865, 257664.267700001597404 ], [ 349930.603399999439716, 257664.293999999761581 ], [ 349939.5591000020504, 257654.234900001436472 ], [ 349947.7246999964118, 257642.269400000572205 ], [ 349952.65429999679327, 257631.5439000017941 ], [ 349954.281300000846386, 257629.868500001728535 ], [ 349961.692800000309944, 257611.775100000202656 ], [ 349964.147699996829033, 257607.573300000280142 ], [ 349969.01969999819994, 257603.602400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01334061, "LATITUDE": 18.34893952, "OBJECTID_1": 1611, "PARCEL_NO_": "102403016900", "Tax_Legal_": "FORTUNA 4FR WEST END QTR", "Name": "MANNING, GEORGE C", "Address": "PO Box 11327", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.812120247, "SHAPE_Area": 1056.1342082799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350107.435699999332428, 257636.399300001561642 ], [ 350093.715800002217293, 257637.764699999243021 ], [ 350062.266099996864796, 257637.929499998688698 ], [ 350062.851199999451637, 257663.898800000548363 ], [ 350072.541299998760223, 257662.289299998432398 ], [ 350081.410800002515316, 257662.361900001764297 ], [ 350097.52080000191927, 257664.3935999982059 ], [ 350099.94879999756813, 257663.357999999076128 ], [ 350100.774800002574921, 257661.04280000180006 ], [ 350104.081000000238419, 257651.570599999278784 ], [ 350107.435699999332428, 257636.399300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02663689000001, "LATITUDE": 18.34883633, "OBJECTID_1": 1200, "PARCEL_NO_": "102303012200", "Tax_Legal_": "FORTUNA 5-38 WEST END QUARTER", "Name": "QUAMINA, WILLIAM R. & JANET V", "Address": "PO Box 306267", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23600, "Improved_V": 121000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.40864321199999, "SHAPE_Area": 1037.924837 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348681.25959999859333, 257602.35080000013113 ], [ 348662.592100001871586, 257616.552400000393391 ], [ 348667.964800000190735, 257648.471500001847744 ], [ 348667.945000000298023, 257650.793400000780821 ], [ 348670.354999996721745, 257651.868599999696016 ], [ 348673.585600003600121, 257651.261700000613928 ], [ 348698.739500001072884, 257632.891399998217821 ], [ 348681.25959999859333, 257602.35080000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01630106, "LATITUDE": 18.34881514, "OBJECTID_1": 1341, "PARCEL_NO_": "102304042800", "Tax_Legal_": "FORTUNA 4-1-48 8 WEST END QTR", "Name": "FRANCIS, JUELLA", "Address": "8131 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.47742314300001, "SHAPE_Area": 1617.2253677799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349805.043399997055531, 257636.879700001329184 ], [ 349752.87219999730587, 257608.377300001680851 ], [ 349744.739000000059605, 257616.543299999088049 ], [ 349735.813799999654293, 257623.014199998229742 ], [ 349782.259800001978874, 257660.969000000506639 ], [ 349787.122900001704693, 257658.05350000038743 ], [ 349792.839000001549721, 257649.656500000506639 ], [ 349805.043399997055531, 257636.879700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014900", "MAP": null, "PARCEL_NAM": "4F", "ACRE": null, "LONGITUDE": -65.0143629, "LATITUDE": 18.34887381, "OBJECTID_1": 1593, "PARCEL_NO_": "102403014900", "Tax_Legal_": "FORTUNA 4L&POR. OF 4W,4F&4M WEST END QTR", "Name": "LAPLACE, VICTOR J. & VERLIN M.", "Address": "PO Box 302802", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 123900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.336531711099994, "SHAPE_Area": 98.891944663000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349977.565499998629093, 257641.669199999421835 ], [ 349977.687799997627735, 257627.315900001674891 ], [ 349974.460699997842312, 257627.500500001013279 ], [ 349973.407999999821186, 257656.411699999123812 ], [ 349976.635099999606609, 257656.227099999785423 ], [ 349977.565499998629093, 257641.669199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303014500", "MAP": "A9-512-T98", "PARCEL_NAM": "5-65", "ACRE": ".27", "LONGITUDE": -65.02586671, "LATITUDE": 18.34867476, "OBJECTID_1": 1220, "PARCEL_NO_": "102303014500", "Tax_Legal_": "FORTUNA ESTATE 5-65 No.8 WESTEND QTR.", "Name": "ANTHONY, MAUREEN", "Address": "1449 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.88645640499999, "SHAPE_Area": 1075.02811296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348740.840400002896786, 257612.971000000834465 ], [ 348766.367299996316433, 257645.477200001478195 ], [ 348769.691399998962879, 257633.894299998879433 ], [ 348768.648800000548363, 257566.969099998474121 ], [ 348760.456200003623962, 257582.10080000013113 ], [ 348762.050899997353554, 257584.224800001829863 ], [ 348757.133900001645088, 257593.472600001841784 ], [ 348753.910400003194809, 257593.235199999064207 ], [ 348752.258199997246265, 257597.865699999034405 ], [ 348749.814099997282028, 257600.800999999046326 ], [ 348747.351999998092651, 257605.847100000828505 ], [ 348740.840400002896786, 257612.971000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304061000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01886542, "LATITUDE": 18.34872271, "OBJECTID_1": 1396, "PARCEL_NO_": "102304061000", "Tax_Legal_": "FORTUNA 4-1-15 WEST END QTR", "Name": "STOUT, GOLDA P. & NORBERT R.", "Address": "PO Box 304526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69600, "Improved_V": 131200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.77957457700001, "SHAPE_Area": 2018.4032379499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349520.654200002551079, 257606.476700000464916 ], [ 349517.441600002348423, 257604.972699999809265 ], [ 349499.763800002634525, 257597.65089999884367 ], [ 349492.51240000128746, 257596.958200000226498 ], [ 349478.770900003612041, 257600.856499999761581 ], [ 349468.227700002491474, 257607.947399999946356 ], [ 349486.492399998009205, 257641.027499999850988 ], [ 349524.335199996829033, 257647.670000001788139 ], [ 349526.737899996340275, 257649.589600000530481 ], [ 349520.654200002551079, 257606.476700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304061200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01966752, "LATITUDE": 18.34862842, "OBJECTID_1": 1398, "PARCEL_NO_": "102304061200", "Tax_Legal_": "FORTUNA 4-1-30 WEST END QTR", "Name": "BRIN, MARY A", "Address": "PO BOX 3372", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 47000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.08638549400001, "SHAPE_Area": 1672.5428407899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349440.681900002062321, 257623.131799999624491 ], [ 349408.067199997603893, 257570.724800001829863 ], [ 349394.054200001060963, 257606.495999999344349 ], [ 349392.410999998450279, 257610.071100000292063 ], [ 349419.545100003480911, 257643.223799999803305 ], [ 349438.241300001740456, 257625.644999999552965 ], [ 349440.681900002062321, 257623.131799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304054800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02221285, "LATITUDE": 18.34890987, "OBJECTID_1": 1386, "PARCEL_NO_": "102304054800", "Tax_Legal_": "FORTUNA 5A-44 WEST END QTR.", "Name": "SEALEY, JR, THEODORE & SYLVANIE SAMUEL", "Address": "PO Box 302354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 26.734683850500002, "SHAPE_Area": 11.318921333700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349138.159999996423721, 257638.809900000691414 ], [ 349151.044900000095367, 257640.815200001001358 ], [ 349148.643899999558926, 257638.684599999338388 ], [ 349138.159999996423721, 257638.809900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304054800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02242026, "LATITUDE": 18.34868873, "OBJECTID_1": 1386, "PARCEL_NO_": "102304054800", "Tax_Legal_": "FORTUNA 5A-44 WEST END QTR.", "Name": "SEALEY, JR, THEODORE & SYLVANIE SAMUEL", "Address": "PO Box 302354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.161480762, "SHAPE_Area": 1819.68803181 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349096.67230000346899, 257586.752399999648333 ], [ 349101.922700002789497, 257633.02479999884963 ], [ 349135.746500000357628, 257638.156800001859665 ], [ 349126.097699999809265, 257634.911400001496077 ], [ 349122.881499998271465, 257633.829700000584126 ], [ 349126.180399999022484, 257625.201799999922514 ], [ 349140.667099997401237, 257628.486800000071526 ], [ 349153.5591000020504, 257629.647799998521805 ], [ 349157.603200003504753, 257628.203200001269579 ], [ 349160.043799996376038, 257625.690099999308586 ], [ 349160.871699996292591, 257623.163699999451637 ], [ 349164.156199999153614, 257616.224500000476837 ], [ 349107.919399999082088, 257591.699599999934435 ], [ 349096.67230000346899, 257586.752399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303012000", "MAP": "C9-325-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02705517, "LATITUDE": 18.34874008, "OBJECTID_1": 1198, "PARCEL_NO_": "102303012000", "Tax_Legal_": "FORTUNA NO. 5, LOT #40 WESTEND QTR.", "Name": "JEFFERS, JAMES R. & FLORETTA", "Address": "PO Box 305771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23600, "Improved_V": 108900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.577190651, "SHAPE_Area": 971.20341769900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348649.827799998223782, 257600.404800001531839 ], [ 348615.109600000083447, 257605.609099999070168 ], [ 348618.905599996447563, 257633.293400000780821 ], [ 348653.629199996590614, 257627.455899998545647 ], [ 348649.827799998223782, 257600.404800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403012700", "MAP": "D9-280-T61", "PARCEL_NAM": "4-1-53", "ACRE": "0.57", "LONGITUDE": -65.01523079, "LATITUDE": 18.34808554, "OBJECTID_1": 1571, "PARCEL_NO_": "102403012700", "Tax_Legal_": "FORTUNA 4-1-53 WEST END QTR", "Name": "DURAND, JANET & FELIX", "Address": "PO BOX 5378", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96300, "Improved_V": 546100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.25986045000002, "SHAPE_Area": 3055.70016566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349903.152000002563, 257573.7212999984622 ], [ 349899.921700000762939, 257491.095199998468161 ], [ 349895.763199999928474, 257494.500799998641014 ], [ 349890.05969999730587, 257501.420200001448393 ], [ 349873.687100000679493, 257530.206000000238419 ], [ 349854.799400001764297, 257563.013999998569489 ], [ 349873.886699996888638, 257590.176600001752377 ], [ 349890.046700000762939, 257609.304800000041723 ], [ 349891.590300001204014, 257605.712900001555681 ], [ 349893.265900000929832, 257598.33839999884367 ], [ 349899.860299997031689, 257581.504900000989437 ], [ 349900.688199996948242, 257578.978500001132488 ], [ 349901.510600000619888, 257577.085400000214577 ], [ 349903.152000002563, 257573.7212999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403016100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01277287000001, "LATITUDE": 18.34873444, "OBJECTID_1": 1603, "PARCEL_NO_": "102403016100", "Tax_Legal_": "4FC FORTUNA (COMBINED) WEST END QTR", "Name": "FLEMMING, CLARIS", "Address": "6108 Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27700, "Improved_V": 64000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.120824365, "SHAPE_Area": 1356.3457544600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350167.33839999884367, 257609.236400000751019 ], [ 350130.246200002729893, 257609.143899999558926 ], [ 350121.915200002491474, 257640.528599999845028 ], [ 350124.291000001132488, 257645.61430000141263 ], [ 350155.463699996471405, 257648.133499998599291 ], [ 350157.638899996876717, 257641.008200000971556 ], [ 350167.33839999884367, 257609.236400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02640868, "LATITUDE": 18.34865376, "OBJECTID_1": 1201, "PARCEL_NO_": "102303012300", "Tax_Legal_": "FORTUNA 5-37 WEST END QUARTER", "Name": "BERTRAND, DOROTHEA", "Address": "P.O.BOX 5313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24600, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.532742297, "SHAPE_Area": 1176.55875689 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348727.140299998223782, 257612.014499999582767 ], [ 348700.785499997437, 257582.034600000828505 ], [ 348681.25959999859333, 257602.35080000013113 ], [ 348698.739500001072884, 257632.891399998217821 ], [ 348727.140299998223782, 257612.014499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403015100", "MAP": "D9-1002-T70", "PARCEL_NAM": "4FF", "ACRE": ".25", "LONGITUDE": -65.01416007, "LATITUDE": 18.3487333, "OBJECTID_1": 1595, "PARCEL_NO_": "102403015100", "Tax_Legal_": "FORTUNA 4FF WEST END QTR", "Name": "PLUNKETT, GENEVIEVE", "Address": "PO Box 6391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30800, "Improved_V": 291500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.398613442, "SHAPE_Area": 1329.4889611000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349974.460699997842312, 257627.500500001013279 ], [ 349977.687799997627735, 257627.315900001674891 ], [ 349977.565499998629093, 257641.669199999421835 ], [ 350020.296400003135204, 257642.441100001335144 ], [ 350018.113099999725819, 257614.769999999552965 ], [ 350014.907600000500679, 257612.421700000762939 ], [ 349980.255900003015995, 257609.816100001335144 ], [ 349974.604599997401237, 257610.614199999719858 ], [ 349974.460699997842312, 257627.500500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403015600", "MAP": "F9-3007-T72", "PARCEL_NAM": "4FS", "ACRE": ".25", "LONGITUDE": -65.01308887, "LATITUDE": 18.34870003, "OBJECTID_1": 1600, "PARCEL_NO_": "102403015600", "Tax_Legal_": "FORTUNA 4FS WEST END QTR", "Name": "MILLS, AMMINA", "Address": "PO Box 972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40000, "Improved_V": 233000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.20012089299999, "SHAPE_Area": 877.50289555100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350092.328000001609325, 257611.366599999368191 ], [ 350093.715800002217293, 257637.764699999243021 ], [ 350107.435699999332428, 257636.399300001561642 ], [ 350117.12049999833107, 257635.423099998384714 ], [ 350117.071900002658367, 257641.122299998998642 ], [ 350118.681000001728535, 257641.557599999010563 ], [ 350121.915200002491474, 257640.528599999845028 ], [ 350130.246200002729893, 257609.143899999558926 ], [ 350117.345200002193451, 257609.03830000013113 ], [ 350111.67230000346899, 257612.369300000369549 ], [ 350107.633500002324581, 257613.180700000375509 ], [ 350092.328000001609325, 257611.366599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304061900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01728568, "LATITUDE": 18.34855233, "OBJECTID_1": 1405, "PARCEL_NO_": "102304061900", "Tax_Legal_": "4-1-21 FORTUNA WEST END QTR", "Name": "PHILLIPS, BERNARD & APRIL", "Address": "PO Box 305946", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72000, "Improved_V": 381400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.078951211, "SHAPE_Area": 1597.5630552600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349634.709299996495247, 257564.558200001716614 ], [ 349634.491800002753735, 257590.098700001835823 ], [ 349692.145300000905991, 257637.644400000572205 ], [ 349697.011900000274181, 257634.306800000369549 ], [ 349711.60639999806881, 257624.927000001072884 ], [ 349712.436099998652935, 257622.189599998295307 ], [ 349689.121399998664856, 257613.977200001478195 ], [ 349679.490599997341633, 257608.620999999344349 ], [ 349669.886799998581409, 257600.098700001835823 ], [ 349646.755500003695488, 257570.356300000101328 ], [ 349640.337300002574921, 257566.504099998623133 ], [ 349634.709299996495247, 257564.558200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403015500", "MAP": "G9-1582-T70", "PARCEL_NAM": "4FG", "ACRE": ".25", "LONGITUDE": -65.01375934, "LATITUDE": 18.34872121, "OBJECTID_1": 1599, "PARCEL_NO_": "102403015500", "Tax_Legal_": "FORTUNA 4FG WEST END QTR", "Name": "THOMAS, ROBERT JR. & CORINA", "Address": "PO Box 390332", "City": "Snellville", "State": "Georgia", "Zip": 30039, "Country": "United States", "Land_Value": 45100, "Improved_V": 227400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.095880404, "SHAPE_Area": 916.65325179000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350023.545100003480911, 257639.723499998450279 ], [ 350056.620099999010563, 257638.094399999827147 ], [ 350056.846600003540516, 257611.498399998992682 ], [ 350024.581600002944469, 257612.712000001221895 ], [ 350022.949100002646446, 257615.020700000226498 ], [ 350021.313100002706051, 257617.751499999314547 ], [ 350023.545100003480911, 257639.723499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01610322000001, "LATITUDE": 18.34858829, "OBJECTID_1": 1569, "PARCEL_NO_": "102403012500", "Tax_Legal_": "FORTUNA 4-1-51 WEST END QTR", "Name": "BERKELEY, JARELLE & RESA", "Address": "PO Box 8182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.790946679, "SHAPE_Area": 2153.1252572600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349828.689000003039837, 257606.253600001335144 ], [ 349776.490900002419949, 257580.917300000786781 ], [ 349773.215300001204014, 257586.801100000739098 ], [ 349765.881099998950958, 257595.81810000166297 ], [ 349752.87219999730587, 257608.377300001680851 ], [ 349805.043399997055531, 257636.879700001329184 ], [ 349815.624300003051758, 257625.356199998408556 ], [ 349822.958499997854233, 257616.339200001209974 ], [ 349825.409800000488758, 257612.559500001370907 ], [ 349828.689000003039837, 257606.253600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403015400", "MAP": "G9-1582-T70", "PARCEL_NAM": "4FH", "ACRE": ".25", "LONGITUDE": -65.01342545, "LATITUDE": 18.34871094, "OBJECTID_1": 1598, "PARCEL_NO_": "102403015400", "Tax_Legal_": "FORTUNA 4FH WEST END QTR", "Name": "RYAN, MARIE P. & TAUREAN P.", "Address": "PO Box 1642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25700, "Improved_V": 118400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.63312436299999, "SHAPE_Area": 970.43831919399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350092.328000001609325, 257611.366599999368191 ], [ 350076.205300003290176, 257610.8125 ], [ 350056.846600003540516, 257611.498399998992682 ], [ 350056.620099999010563, 257638.094399999827147 ], [ 350062.266099996864796, 257637.929499998688698 ], [ 350093.715800002217293, 257637.764699999243021 ], [ 350092.328000001609325, 257611.366599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97360884, "LATITUDE": 18.3487735, "OBJECTID_1": 2762, "PARCEL_NO_": "102604028000", "Tax_Legal_": "15-5-REM AND 15-5-A (INCLUDING 15-5-A-1(GREENBELT) AND DRAINAGE EASEMENT \"A\" CROWN & HAWK NO.3 SOUT", "Name": "SOOKRAM, SIEWDATH", "Address": "6076-66 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 410000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.827343496600001, "SHAPE_Area": 69.700093984399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354288.180299997329712, 257668.927999999374151 ], [ 354287.438699997961521, 257661.322599999606609 ], [ 354280.187299996614456, 257660.629900000989437 ], [ 354277.757500000298023, 257661.876600001007318 ], [ 354277.723399996757507, 257665.887099999934435 ], [ 354280.930699996650219, 257668.024300001561642 ], [ 354288.180299997329712, 257668.927999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304061300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01946272000001, "LATITUDE": 18.34833474, "OBJECTID_1": 1399, "PARCEL_NO_": "102304061300", "Tax_Legal_": "FORTUNA 4-1-31 WEST END QTR", "Name": "THOMAS, HUROY T & REUBEN", "Address": "PO Box 304905", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.521900047, "SHAPE_Area": 2777.6976502299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349446.910499997437, 257554.577399998903275 ], [ 349435.011799998581409, 257531.470800001174212 ], [ 349422.812799997627735, 257543.614399999380112 ], [ 349416.290399998426437, 257552.004700001329184 ], [ 349413.014799997210503, 257557.888599999248981 ], [ 349408.067199997603893, 257570.724800001829863 ], [ 349440.681900002062321, 257623.131799999624491 ], [ 349461.023100003600121, 257601.766699999570847 ], [ 349466.704999998211861, 257597.380300000309944 ], [ 349468.328400000929832, 257596.127000000327826 ], [ 349446.910499997437, 257554.577399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02666837, "LATITUDE": 18.34852623, "OBJECTID_1": 1204, "PARCEL_NO_": "102303012600", "Tax_Legal_": "FORTUNA 5-1 WEST END QUARTER", "Name": "ANTHOHY, PATRICK & JAMES, AKALA M", "Address": "GERS COMPLEX-3rd FLOOR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25600, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.528828336, "SHAPE_Area": 845.502575224 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348700.785499997437, 257582.034600000828505 ], [ 348703.238600000739098, 257578.0439000017941 ], [ 348657.223099999129772, 257584.211199998855591 ], [ 348662.592100001871586, 257616.552400000393391 ], [ 348681.25959999859333, 257602.35080000013113 ], [ 348700.785499997437, 257582.034600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028000", "MAP": "A9-222-T74", "PARCEL_NAM": "15-5", "ACRE": null, "LONGITUDE": -64.9740213, "LATITUDE": 18.34825502, "OBJECTID_1": 2762, "PARCEL_NO_": "102604028000", "Tax_Legal_": "15-5-REM AND 15-5-A (INCLUDING 15-5-A-1(GREENBELT) AND DRAINAGE EASEMENT \"A\" CROWN & HAWK NO.3 SOUT", "Name": "SOOKRAM, SIEWDATH", "Address": "6076-66 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 410000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.67355674700002, "SHAPE_Area": 9704.0308533700008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354285.90990000218153, 257556.81870000064373 ], [ 354281.865699999034405, 257558.263300001621246 ], [ 354277.031400002539158, 257557.801500000059605 ], [ 354273.016099996864796, 257555.86879999935627 ], [ 354267.411399997770786, 257551.178899999707937 ], [ 354258.567199997603893, 257548.151200000196695 ], [ 354241.638199999928474, 257547.590500000864267 ], [ 354218.280299998819828, 257544.443999998271465 ], [ 354178.735799998044968, 257642.912099998444319 ], [ 354187.565600000321865, 257647.628400001674891 ], [ 354193.972999997437, 257652.747099999338388 ], [ 354202.810000002384186, 257656.619100000709295 ], [ 354204.417300000786781, 257657.265599999576807 ], [ 354212.462399996817112, 257659.442299999296665 ], [ 354214.87780000269413, 257659.884300000965595 ], [ 354223.738200001418591, 257661.012299999594688 ], [ 354269.7466000020504, 257655.689300000667572 ], [ 354272.982600003480911, 257654.449200000613928 ], [ 354275.41950000077486, 257652.358300000429153 ], [ 354279.460100002586842, 257651.335900001227856 ], [ 354287.517800003290176, 257652.035100001841784 ], [ 354285.90990000218153, 257556.81870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304053400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02176374, "LATITUDE": 18.34848966, "OBJECTID_1": 1374, "PARCEL_NO_": "102304053400", "Tax_Legal_": "FORTUNA 5A-24 WEST END QTR", "Name": "GUILDARIE, GRACE", "Address": "OHC BLDG. 15 APT. 171", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.297418419, "SHAPE_Area": 1374.1655411900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349212.578100003302097, 257611.55460000038147 ], [ 349204.080899998545647, 257567.788699999451637 ], [ 349181.50959999859333, 257566.97069999948144 ], [ 349180.467699997127056, 257594.61540000140667 ], [ 349177.926500000059605, 257608.948899999260902 ], [ 349176.288699999451637, 257611.890900000929832 ], [ 349176.258100003004074, 257615.479200001806021 ], [ 349177.854599997401237, 257617.392099998891354 ], [ 349181.880699999630451, 257618.058299999684095 ], [ 349212.578100003302097, 257611.55460000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304054400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02216684, "LATITUDE": 18.34828356, "OBJECTID_1": 1382, "PARCEL_NO_": "102304054400", "Tax_Legal_": "FORTUNA 5A-40 WEST END QTR.", "Name": "JOHNSON, KEVIN & JOANNA JOHNSON COCHRAN", "Address": "RR 1 Box 7522", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 850, "Country": "United States", "Land_Value": 60000, "Improved_V": 29200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.83583911800002, "SHAPE_Area": 3507.29061069 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349107.919399999082088, 257591.699599999934435 ], [ 349164.156199999153614, 257616.224500000476837 ], [ 349169.096600003540516, 257604.232599999755621 ], [ 349171.623400002717972, 257591.587699998170137 ], [ 349171.97410000115633, 257550.427299998700619 ], [ 349174.689699999988079, 257515.619100000709295 ], [ 349173.905000001192093, 257513.079599998891354 ], [ 349169.090499997138977, 257510.295899998396635 ], [ 349165.048100002110004, 257511.529399998486042 ], [ 349152.816799998283386, 257527.47239999845624 ], [ 349142.966600000858307, 257547.867899999022484 ], [ 349132.342500001192093, 257564.457299999892712 ], [ 349129.894799999892712, 257567.814800001680851 ], [ 349121.745399996638298, 257577.88060000166297 ], [ 349107.919399999082088, 257591.699599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304061700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01774308, "LATITUDE": 18.34845793, "OBJECTID_1": 1403, "PARCEL_NO_": "102304061700", "Tax_Legal_": "FORTUNA 4-1-18 WEST END QTR", "Name": "SPRAUVE, WAYNE & URSULA", "Address": "PO Box 22", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 64400, "Improved_V": 192200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.48025296700001, "SHAPE_Area": 1642.7551240400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349634.709299996495247, 257564.558200001716614 ], [ 349624.225500002503395, 257564.683499999344349 ], [ 349617.758799999952316, 257566.5304000005126 ], [ 349604.798500001430511, 257573.390399999916553 ], [ 349597.997299998998642, 257614.497999999672174 ], [ 349634.238200001418591, 257619.860800001770258 ], [ 349634.491800002753735, 257590.098700001835823 ], [ 349634.709299996495247, 257564.558200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02622665, "LATITUDE": 18.34849846, "OBJECTID_1": 1202, "PARCEL_NO_": "102303012400", "Tax_Legal_": "FORTUNA 5-36 WEST END QUARTER", "Name": "FLEMING, LORRAINE", "Address": "180 Concord Ter", "City": "McDonough", "State": "Georgia", "Zip": 30253, "Country": "United States", "Land_Value": 29200, "Improved_V": 103300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.351926237, "SHAPE_Area": 819.2078342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348743.45889999717474, 257589.561000000685453 ], [ 348728.198299996554852, 257582.469999998807907 ], [ 348708.137599997222424, 257570.906800001859665 ], [ 348703.238600000739098, 257578.0439000017941 ], [ 348700.785499997437, 257582.034600000828505 ], [ 348727.140299998223782, 257612.014499999582767 ], [ 348730.387100003659725, 257609.50789999961853 ], [ 348738.536499999463558, 257599.442099999636412 ], [ 348741.004000000655651, 257593.762800000607967 ], [ 348743.45889999717474, 257589.561000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97282279, "LATITUDE": 18.34824089, "OBJECTID_1": 2763, "PARCEL_NO_": "102604028100", "Tax_Legal_": "CROWN & HAWK 15-6 S S QTR", "Name": "MILLIN, CHRISTINE L", "Address": "C/O Jacklyn Venzen-Millin", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 464100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 613.96138486999996, "SHAPE_Area": 13871.0474937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354285.90990000218153, 257556.81870000064373 ], [ 354287.517800003290176, 257652.035100001841784 ], [ 354306.048600003123283, 257653.875500001013279 ], [ 354322.173100002110004, 257654.218600001186132 ], [ 354339.928099997341633, 257652.464000001549721 ], [ 354346.387599997222424, 257651.461399998515844 ], [ 354367.378700003027916, 257648.46680000051856 ], [ 354394.055399999022484, 257640.663600001484156 ], [ 354408.597699999809265, 257637.405099999159575 ], [ 354424.74379999935627, 257635.215300001204014 ], [ 354456.202600002288818, 257633.995099999010563 ], [ 354467.514300003647804, 257631.343400001525879 ], [ 354473.990000002086163, 257628.441100001335144 ], [ 354486.149400003254414, 257620.941300000995398 ], [ 354493.469099998474121, 257613.612900000065565 ], [ 354497.547499999403954, 257608.157900001853704 ], [ 354522.722999997437, 257587.254599999636412 ], [ 354523.574199996888638, 257581.984200000762939 ], [ 354520.366999998688698, 257579.846999999135733 ], [ 354517.138099998235703, 257580.242800001055002 ], [ 354496.845399998128414, 257595.908700000494719 ], [ 354487.932899996638298, 257600.901999998837709 ], [ 354480.656300000846386, 257603.164500001817942 ], [ 354466.947200000286102, 257603.263399999588728 ], [ 354459.702899999916553, 257601.726399999111891 ], [ 354446.848700001835823, 257596.132800001651049 ], [ 354433.175499998033047, 257592.010099999606609 ], [ 354406.601400002837181, 257587.781800001859665 ], [ 354396.142700001597404, 257584.951999999582767 ], [ 354380.883900001645088, 257577.649900000542402 ], [ 354351.221199996769428, 257557.353300001472235 ], [ 354336.76690000295639, 257550.268899999558926 ], [ 354330.329000003635883, 257548.738499999046326 ], [ 354315.827899999916553, 257547.142200000584126 ], [ 354306.141400001943111, 257548.329500000923872 ], [ 354295.630599997937679, 257551.620999999344349 ], [ 354285.90990000218153, 257556.81870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304053500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02150022, "LATITUDE": 18.34843678, "OBJECTID_1": 1375, "PARCEL_NO_": "102304053500", "Tax_Legal_": "FORTUNA 5A-25 WEST END QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.67700317800001, "SHAPE_Area": 1164.9014239600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349240.865599997341633, 257603.975600000470877 ], [ 349229.108999997377396, 257564.193799998611212 ], [ 349216.992700003087521, 257566.62779999896884 ], [ 349204.080899998545647, 257567.788699999451637 ], [ 349212.578100003302097, 257611.55460000038147 ], [ 349228.74040000140667, 257607.464999999850988 ], [ 349240.865599997341633, 257603.975600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303012100", "MAP": "C9-325-T92", "PARCEL_NAM": "5-39", "ACRE": null, "LONGITUDE": -65.027094, "LATITUDE": 18.3484829, "OBJECTID_1": 1199, "PARCEL_NO_": "102303012100", "Tax_Legal_": "FORTUNA NO. 5, LOT #39 WESTEND QTR.", "Name": "MASON, ISLIE MAY & ROSSI, ANN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.42720679199999, "SHAPE_Area": 1041.1582148299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348645.243500001728535, 257570.603100001811981 ], [ 348611.329800002276897, 257576.025100000202656 ], [ 348615.109600000083447, 257605.609099999070168 ], [ 348649.827799998223782, 257600.404800001531839 ], [ 348645.243500001728535, 257570.603100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304062000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01658341, "LATITUDE": 18.34827882, "OBJECTID_1": 1406, "PARCEL_NO_": "102304062000", "Tax_Legal_": "FORTUNA 4-1-43 WEST END QTR", "Name": "ROAN HODGE,LYDIA R & M SMITH,& J CHARLESWELL, JR", "Address": "PO Box 302814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60100, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.40575340100003, "SHAPE_Area": 3664.7345567500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349780.980999998748302, 257527.125199999660254 ], [ 349720.262999996542931, 257555.337000001221895 ], [ 349701.266400001943111, 257608.166000001132488 ], [ 349718.155799999833107, 257613.37049999833107 ], [ 349724.59740000218153, 257614.478700000792742 ], [ 349733.481200002133846, 257612.86259999871254 ], [ 349739.159500002861023, 257608.898299999535084 ], [ 349740.784699998795986, 257607.434000000357628 ], [ 349748.09910000115633, 257600.738800000399351 ], [ 349753.78999999910593, 257595.296999998390675 ], [ 349761.113399997353554, 257587.546500001102686 ], [ 349768.456500001251698, 257577.47410000115633 ], [ 349773.407700002193451, 257564.215700000524521 ], [ 349775.065200001001358, 257558.951900001615286 ], [ 349779.29280000180006, 257535.977299999445677 ], [ 349780.980999998748302, 257527.125199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304061500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01845065000001, "LATITUDE": 18.34830015, "OBJECTID_1": 1401, "PARCEL_NO_": "102304061500", "Tax_Legal_": "FORTUNA 4-1-35 WEST END QTR", "Name": "HUGHES, HILTON A. & ANN V", "Address": "PO Box 12425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.08633765799999, "SHAPE_Area": 3069.7736714299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349580.551500000059605, 257579.946899998933077 ], [ 349554.279500000178814, 257540.257399998605251 ], [ 349548.604699999094009, 257543.799600001424551 ], [ 349544.549800001084805, 257546.510600000619888 ], [ 349521.188299998641014, 257543.786299999803305 ], [ 349512.709799997508526, 257592.479499999433756 ], [ 349514.31700000166893, 257593.125900000333786 ], [ 349538.405699998140335, 257605.144299998879433 ], [ 349552.098600000143051, 257606.945099998265505 ], [ 349553.709499999880791, 257607.169399999082088 ], [ 349559.373400002717972, 257604.893699999898672 ], [ 349568.345399998128414, 257592.934799998998642 ], [ 349570.789499998092651, 257589.999499998986721 ], [ 349573.229999996721745, 257587.486400000751019 ], [ 349580.551500000059605, 257579.946899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304062100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01707028, "LATITUDE": 18.34823077, "OBJECTID_1": 1407, "PARCEL_NO_": "102304062100", "Tax_Legal_": "FORTUNA 4-1-41 WEST END QTR", "Name": "BRIDGEWATER HODGE, GERALDINE A", "Address": "PO Box 9610", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.6191554, "SHAPE_Area": 2769.1048612200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349720.262999996542931, 257555.337000001221895 ], [ 349681.782899998128414, 257528.846400000154972 ], [ 349658.850199997425079, 257570.455299999564886 ], [ 349680.392200000584126, 257597.440499998629093 ], [ 349691.615900002419949, 257605.131700001657009 ], [ 349701.266400001943111, 257608.166000001132488 ], [ 349720.262999996542931, 257555.337000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01264272, "LATITUDE": 18.34840554, "OBJECTID_1": 1579, "PARCEL_NO_": "102403013500", "Tax_Legal_": "FORTUNA 4J-2C WEST END QTR", "Name": "JN BAPTISTE, VAUGHN & USELDA", "Address": "4002 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69900, "Improved_V": 220400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.05134618299999, "SHAPE_Area": 2340.6086719300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350117.345200002193451, 257609.03830000013113 ], [ 350130.246200002729893, 257609.143899999558926 ], [ 350167.33839999884367, 257609.236400000751019 ], [ 350189.108900003135204, 257609.414500001817942 ], [ 350187.067500002682209, 257565.068199999630451 ], [ 350124.83219999819994, 257582.079599998891354 ], [ 350120.620800003409386, 257603.154500000178814 ], [ 350119.789399996399879, 257606.103000000119209 ], [ 350117.345200002193451, 257609.03830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01592495, "LATITUDE": 18.34827605, "OBJECTID_1": 7323, "PARCEL_NO_": "104901010100", "Tax_Legal_": "FORTUNA 4 1 52 WEST END QTR", "Name": "SMITH, SYLVIE & GLEN J SMITH FAMILY TRUST", "Address": "PO Box 303573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49600, "Improved_V": 113700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.96219663100001, "SHAPE_Area": 2357.7992305500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349846.821699999272823, 257560.172499999403954 ], [ 349786.439900003373623, 257548.912500001490116 ], [ 349783.902300000190735, 257562.823899999260902 ], [ 349776.490900002419949, 257580.917300000786781 ], [ 349828.689000003039837, 257606.253600001335144 ], [ 349836.165200002491474, 257580.561299998313189 ], [ 349837.817400000989437, 257575.930799998342991 ], [ 349841.0912000015378, 257570.258099999278784 ], [ 349846.821699999272823, 257560.172499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403018700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01486266000001, "LATITUDE": 18.34837542, "OBJECTID_1": 1628, "PARCEL_NO_": "102403018700", "Tax_Legal_": "FORTUNA 4KB-1 WEST END QUARTER", "Name": "JOSIAH, ALFREDO", "Address": "P.O.BOX 3153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61300, "Improved_V": 49700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.821122858, "SHAPE_Area": 1133.2410793399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349941.847900003194809, 257574.882399998605251 ], [ 349919.389799997210503, 257560.766399998217821 ], [ 349918.563699997961521, 257563.081700000911951 ], [ 349916.099799998104572, 257568.338899999856949 ], [ 349912.80799999833107, 257576.122400000691414 ], [ 349911.164800003170967, 257579.697500001639128 ], [ 349909.534199997782707, 257581.795099999755621 ], [ 349906.238799996674061, 257590.000799998641014 ], [ 349901.284100003540516, 257603.68129999935627 ], [ 349936.765399999916553, 257603.549499999731779 ], [ 349941.847900003194809, 257574.882399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01444051, "LATITUDE": 18.34829357, "OBJECTID_1": 1575, "PARCEL_NO_": "102403013100", "Tax_Legal_": "FORTUNA 4KB REMAINDER WEST END QTR", "Name": "LAKE, ROBERT", "Address": "168 Prospect Park SW", "City": "Brooklyn", "State": "New York", "Zip": 11218, "Country": "United States", "Land_Value": 91100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.42525528600001, "SHAPE_Area": 2500.1203083199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349974.687299996614456, 257600.904599998146296 ], [ 349980.335100002586842, 257600.528599999845028 ], [ 349991.253100000321865, 257601.412500001490116 ], [ 349991.305600002408028, 257575.317099999636412 ], [ 349991.365599997341633, 257545.474800001829863 ], [ 349979.996299996972084, 257545.641499999910593 ], [ 349967.086300000548363, 257546.591299999505281 ], [ 349941.847900003194809, 257574.882399998605251 ], [ 349936.765399999916553, 257603.549499999731779 ], [ 349969.01969999819994, 257603.602400001138449 ], [ 349974.687299996614456, 257600.904599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01324187, "LATITUDE": 18.34841202, "OBJECTID_1": 1578, "PARCEL_NO_": "102403013400", "Tax_Legal_": "FORTUNA 4J-1 WEST END QTR", "Name": "BAPTISTE, LINDA", "Address": "14-90 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.940516567, "SHAPE_Area": 975.37359296600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350070.816500000655651, 257580.793099999427795 ], [ 350071.446599997580051, 257601.485399998724461 ], [ 350087.572800002992153, 257601.617400001734495 ], [ 350111.742399998009205, 257604.137299999594688 ], [ 350113.367600001394749, 257602.672899998724461 ], [ 350115.806400001049042, 257600.370799999684095 ], [ 350119.173699997365475, 257583.721999999135733 ], [ 350119.189800001680851, 257581.822299998253584 ], [ 350070.816500000655651, 257580.793099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403013300", "MAP": "C9-84-T68", "PARCEL_NAM": "4JA-4", "ACRE": ".27", "LONGITUDE": -65.01363618000001, "LATITUDE": 18.34833571, "OBJECTID_1": 1577, "PARCEL_NO_": "102403013300", "Tax_Legal_": "FORTUNA 4JA-4 WEST END QTR", "Name": "B ACEVEDO,G VAVAL,T (LEONARD) WILLIAMS,& C ENGLAND", "Address": "PO Box 303525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 290900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.207994947, "SHAPE_Area": 1464.8023152400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350071.446599997580051, 257601.485399998724461 ], [ 350070.816500000655651, 257580.793099999427795 ], [ 350069.416000001132488, 257555.872600000351667 ], [ 350054.850299999117851, 257561.875100001692772 ], [ 350035.408900000154972, 257572.270700000226498 ], [ 350032.151299998164177, 257576.043699998408556 ], [ 350030.502700001001358, 257580.252099998295307 ], [ 350030.432499997317791, 257588.484099999070168 ], [ 350031.206500001251698, 257592.290199998766184 ], [ 350032.790299996733665, 257595.680599998682737 ], [ 350037.585100002586842, 257600.786100000143051 ], [ 350044.820299997925758, 257603.378400001674891 ], [ 350071.446599997580051, 257601.485399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01405407, "LATITUDE": 18.34839117, "OBJECTID_1": 1576, "PARCEL_NO_": "102403013200", "Tax_Legal_": "FORTUNA 4JA-1 WEST END QTR", "Name": "PREVOST, VERONICA", "Address": "132 Mitchell Ridge Pl", "City": "Columbus", "State": "Georgia", "Zip": 31907, "Country": "United States", "Land_Value": 43500, "Improved_V": 146400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.19180547400001, "SHAPE_Area": 957.35188998399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349991.305600002408028, 257575.317099999636412 ], [ 349991.253100000321865, 257601.412500001490116 ], [ 350009.344300001859665, 257602.877000000327826 ], [ 350025.470600001513958, 257603.00899999961257 ], [ 350027.099399998784065, 257601.122499998658895 ], [ 350024.045000001788139, 257581.043600000441074 ], [ 350025.720499999821186, 257573.668999999761581 ], [ 349991.305600002408028, 257575.317099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304061400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01899132, "LATITUDE": 18.34822052, "OBJECTID_1": 1400, "PARCEL_NO_": "102304061400", "Tax_Legal_": "FORTUNA 4-1-32 8 WEST END QTR", "Name": "LEAPHART, HAZEL L", "Address": "PO Box 303924", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.93954194099999, "SHAPE_Area": 2859.3967812300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349521.188299998641014, 257543.786299999803305 ], [ 349496.215999998152256, 257540.837699998170137 ], [ 349488.966399997472763, 257539.933899998664856 ], [ 349476.025799997150898, 257544.472100000828505 ], [ 349446.910499997437, 257554.577399998903275 ], [ 349468.328400000929832, 257596.127000000327826 ], [ 349471.573499999940395, 257593.831500001251698 ], [ 349480.477099999785423, 257589.8935999982059 ], [ 349492.587999999523163, 257588.0929000005126 ], [ 349499.844800002872944, 257588.152300000190735 ], [ 349512.709799997508526, 257592.479499999433756 ], [ 349521.188299998641014, 257543.786299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02614012, "LATITUDE": 18.34829966, "OBJECTID_1": 1203, "PARCEL_NO_": "102303012500", "Tax_Legal_": "FORTUNA 5-35 WEST END QUARTER", "Name": "DANIEL, DAWN M.", "Address": "PO Box 8580", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33900, "Improved_V": 110600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.70068677399999, "SHAPE_Area": 1130.9428053700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348709.01410000026226, 257562.68129999935627 ], [ 348703.323100000619888, 257568.123199999332428 ], [ 348708.137599997222424, 257570.906800001859665 ], [ 348728.198299996554852, 257582.469999998807907 ], [ 348743.45889999717474, 257589.561000000685453 ], [ 348756.555900000035763, 257566.659000001847744 ], [ 348724.456299997866154, 257548.453299999237061 ], [ 348709.01410000026226, 257562.68129999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304053700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02096708000001, "LATITUDE": 18.34826852, "OBJECTID_1": 1376, "PARCEL_NO_": "102304053700", "Tax_Legal_": "FORTUNA 5A-26&27 WEST END QTR", "Name": "STEELE, FRANKLIN & SANDRA", "Address": "PO Box 8342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57400, "Improved_V": 225900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.82639472400001, "SHAPE_Area": 1168.3893482200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349303.178199999034405, 257577.887899998575449 ], [ 349277.644199997186661, 257546.225900001823902 ], [ 349255.787399999797344, 257556.179499998688698 ], [ 349273.215199999511242, 257592.841400001198053 ], [ 349292.642200000584126, 257584.134399998933077 ], [ 349297.503499999642372, 257581.429999999701977 ], [ 349303.178199999034405, 257577.887899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02665573, "LATITUDE": 18.34830923, "OBJECTID_1": 1205, "PARCEL_NO_": "102303012700", "Tax_Legal_": "FORTUNA 5-2\nWEST END QUARTER", "Name": "Vincent, Sr & Jr, Dawn,Kyan & Chivon Matthew", "Address": "PO Box 304605", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41500, "Improved_V": 154100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.86775352000001, "SHAPE_Area": 1125.6647702299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348657.223099999129772, 257584.211199998855591 ], [ 348703.238600000739098, 257578.0439000017941 ], [ 348708.137599997222424, 257570.906800001859665 ], [ 348703.323100000619888, 257568.123199999332428 ], [ 348680.056900002062321, 257554.21169999986887 ], [ 348653.421700000762939, 257557.160100001841784 ], [ 348657.223099999129772, 257584.211199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304054100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02024607, "LATITUDE": 18.34807159, "OBJECTID_1": 1379, "PARCEL_NO_": "102304054100", "Tax_Legal_": "FORTUNA 5A-30 WEST END QTR", "Name": "FORDE, GARY W. & TAKOLA", "Address": "PO Box 8993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32000, "Improved_V": 151800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.91941115, "SHAPE_Area": 2082.6545028099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349383.45269999653101, 257525.771499998867512 ], [ 349381.112899996340275, 257516.464200001209974 ], [ 349354.461400002241135, 257521.312300000339746 ], [ 349351.984999999403954, 257528.046999998390675 ], [ 349347.143500000238419, 257528.42960000038147 ], [ 349343.081399999558926, 257531.984999999403954 ], [ 349323.42059999704361, 257568.132100000977516 ], [ 349352.321900002658367, 257583.145199999213219 ], [ 349384.23929999768734, 257528.099899999797344 ], [ 349383.45269999653101, 257525.771499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304053800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02073653, "LATITUDE": 18.34808149, "OBJECTID_1": 1377, "PARCEL_NO_": "102304053800", "Tax_Legal_": "FORTUNA 5A-28 WEST END QTR", "Name": "STEELE, FRANKLIN & SANDRA", "Address": "PO Box 8342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32000, "Improved_V": 202500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.411313939, "SHAPE_Area": 1392.9793413499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349325.270599998533726, 257540.282900001853704 ], [ 349302.031400002539158, 257523.205200001597404 ], [ 349277.644199997186661, 257546.225900001823902 ], [ 349303.178199999034405, 257577.887899998575449 ], [ 349308.869199998676777, 257572.445999998599291 ], [ 349314.576300002634525, 257565.104400001466274 ], [ 349315.406000003218651, 257562.366999998688698 ], [ 349318.670800000429153, 257557.749699998646975 ], [ 349325.270599998533726, 257540.282900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304062200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01801776000001, "LATITUDE": 18.3480076, "OBJECTID_1": 1408, "PARCEL_NO_": "102304062200", "Tax_Legal_": "FORTUNA 4-1-37 WEST END QTR", "Name": "FAHIE, SARAH E", "Address": "5-104 BOVONI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.13549633299999, "SHAPE_Area": 2600.0012745099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349615.411799997091293, 257558.067400000989437 ], [ 349614.227099999785423, 257507.817499998956919 ], [ 349599.68469999730587, 257511.075899999588728 ], [ 349592.388400003314018, 257515.660300001502037 ], [ 349554.279500000178814, 257540.257399998605251 ], [ 349580.551500000059605, 257579.946899998933077 ], [ 349584.619099996984005, 257575.758299998939037 ], [ 349595.972199998795986, 257568.251899998635054 ], [ 349600.833400003612041, 257565.547499999403954 ], [ 349615.411799997091293, 257558.067400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304054500", "MAP": "D9-3572-T86", "PARCEL_NAM": "5A-37", "ACRE": ".53", "LONGITUDE": -65.02250519, "LATITUDE": 18.34799139, "OBJECTID_1": 1383, "PARCEL_NO_": "102304054500", "Tax_Legal_": "FORTUNA 5A-37 WESTEND QTR.", "Name": "OLIVER, LINCOLN I", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49600, "Improved_V": 201800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.07273367499999, "SHAPE_Area": 2192.6126655500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349147.217600002884865, 257522.149300001561642 ], [ 349142.449799999594688, 257513.877599999308586 ], [ 349088.410700000822544, 257515.335099998861551 ], [ 349103.252300001680851, 257571.607500001788139 ], [ 349105.656900003552437, 257573.315900001674891 ], [ 349112.105599999427795, 257573.579799998551607 ], [ 349117.792900003492832, 257568.560100000351667 ], [ 349126.759499996900558, 257557.234400000423193 ], [ 349132.482799999415874, 257547.993200000375509 ], [ 349135.770900003612041, 257540.631799999624491 ], [ 349137.396200001239777, 257539.167399998754263 ], [ 349140.673600003123283, 257533.072599999606609 ], [ 349141.497800000011921, 257530.968400001525879 ], [ 349144.771700002253056, 257525.2956000007689 ], [ 349147.217600002884865, 257522.149300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01267255, "LATITUDE": 18.34811364, "OBJECTID_1": 1580, "PARCEL_NO_": "102403013600", "Tax_Legal_": "FORTUNA 4J-4 & 4J-2D WEST END QTR", "Name": "GRIFFIN, D. & JOSEPH, A", "Address": "BOX 1714", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69900, "Improved_V": 257500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.113915209, "SHAPE_Area": 1779.8596564300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350185.667099997401237, 257540.147700000554323 ], [ 350130.778499998152256, 257546.664500001817942 ], [ 350127.50110000371933, 257552.759399998933077 ], [ 350124.83219999819994, 257582.079599998891354 ], [ 350187.067500002682209, 257565.068199999630451 ], [ 350185.667099997401237, 257540.147700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01323478, "LATITUDE": 18.34820248, "OBJECTID_1": 1581, "PARCEL_NO_": "102403013700", "Tax_Legal_": "FORTUNA 4J-3 WEST END QTR", "Name": "PHILLIP, GRIFFITH & V", "Address": "PO Box 11636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31600, "Improved_V": 188500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.623432554, "SHAPE_Area": 1276.6402915599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350121.828199997544289, 257556.090500000864267 ], [ 350069.416000001132488, 257555.872600000351667 ], [ 350070.816500000655651, 257580.793099999427795 ], [ 350119.189800001680851, 257581.822299998253584 ], [ 350121.828199997544289, 257556.090500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0265116, "LATITUDE": 18.34802676, "OBJECTID_1": 1207, "PARCEL_NO_": "102303012900", "Tax_Legal_": "5-4 FORTUNA WEST END QUARTER", "Name": "JONES, VERNON R. & RUBY E. WILLIAMS (LIFE ESTATE)", "Address": "PO BOX 7882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32800, "Improved_V": 111100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.195547205, "SHAPE_Area": 1329.6640783800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348709.01410000026226, 257562.68129999935627 ], [ 348701.382500000298023, 257511.956399999558926 ], [ 348674.741800002753735, 257515.537999998778105 ], [ 348680.056900002062321, 257554.21169999986887 ], [ 348703.323100000619888, 257568.123199999332428 ], [ 348709.01410000026226, 257562.68129999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02597506, "LATITUDE": 18.34803164, "OBJECTID_1": 1208, "PARCEL_NO_": "102303013000", "Tax_Legal_": "5-34 FORUTNA NO.8 WEST END QTR", "Name": "STANISLAUS, PETRONA", "Address": "PO Box 305595", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 120200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.96414916000001, "SHAPE_Area": 1445.90984581 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348749.820600003004074, 257505.386799998581409 ], [ 348724.456299997866154, 257548.453299999237061 ], [ 348756.555900000035763, 257566.659000001847744 ], [ 348757.374799996614456, 257565.188099998980761 ], [ 348767.99719999730587, 257548.80970000103116 ], [ 348768.01690000295639, 257546.487799998372793 ], [ 348766.479800000786781, 257537.609299998730421 ], [ 348762.547200001776218, 257525.967000000178814 ], [ 348761.756999999284744, 257524.060699999332428 ], [ 348757.78660000115633, 257516.850999999791384 ], [ 348749.820600003004074, 257505.386799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01408238, "LATITUDE": 18.34812348, "OBJECTID_1": 7328, "PARCEL_NO_": "104901010800", "Tax_Legal_": "FORTUNA 4JA-2 WEST END QTR", "Name": "FURLONGE, DAMITA", "Address": "PO Box 8294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34800, "Improved_V": 125100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.28371803100001, "SHAPE_Area": 960.77414980100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349991.373599998652935, 257541.512800000607967 ], [ 349991.305600002408028, 257575.317099999636412 ], [ 350025.720499999821186, 257573.668999999761581 ], [ 350026.553800001740456, 257570.509399998933077 ], [ 350022.561800003051758, 257565.832699999213219 ], [ 350019.401299998164177, 257558.207499999552965 ], [ 350018.616599999368191, 257555.667899999767542 ], [ 350017.084899999201298, 257546.156199999153614 ], [ 350017.928900003433228, 257541.730099998414516 ], [ 349991.373599998652935, 257541.512800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01468063, "LATITUDE": 18.3480568, "OBJECTID_1": 7370, "PARCEL_NO_": "104901015600", "Tax_Legal_": "FORTUNA 4KB-2 WESTEND QUARTER", "Name": "EMANUEL, MOSES & MARVA", "Address": "P.O. BOX 4204", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44300, "Improved_V": 191500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.99551282499999, "SHAPE_Area": 1208.64190089 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349967.086300000548363, 257546.591299999505281 ], [ 349946.294799998402596, 257526.156199999153614 ], [ 349933.285899996757507, 257538.715300001204014 ], [ 349925.946400001645088, 257548.365600001066923 ], [ 349921.866300001740456, 257554.031700000166893 ], [ 349920.224899999797344, 257557.395799998193979 ], [ 349919.389799997210503, 257560.766399998217821 ], [ 349941.847900003194809, 257574.882399998605251 ], [ 349967.086300000548363, 257546.591299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304054300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02162204, "LATITUDE": 18.34802018, "OBJECTID_1": 1381, "PARCEL_NO_": "102304054300", "Tax_Legal_": "FORTUNA 5A-38 WESTEND QTR.", "Name": "FRANCIS, DIANNE", "Address": "PO BOX 7361", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61700, "Improved_V": 60900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.40231479799999, "SHAPE_Area": 2931.4826920099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349194.923100002110004, 257506.918800000101328 ], [ 349189.280699998140335, 257506.661499999463558 ], [ 349186.039200000464916, 257508.534800000488758 ], [ 349183.587899997830391, 257512.314399998635054 ], [ 349180.784199997782707, 257557.465500000864267 ], [ 349180.76799999922514, 257559.365200001746416 ], [ 349181.50959999859333, 257566.97069999948144 ], [ 349204.080899998545647, 257567.788699999451637 ], [ 349216.992700003087521, 257566.62779999896884 ], [ 349229.108999997377396, 257564.193799998611212 ], [ 349242.037000000476837, 257561.133200000971556 ], [ 349243.931900002062321, 257528.007100000977516 ], [ 349231.846199996769428, 257526.852699998766184 ], [ 349222.197400003671646, 257523.607299998402596 ], [ 349215.772100001573563, 257520.599399998784065 ], [ 349194.923100002110004, 257506.918800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01751099000001, "LATITUDE": 18.34791677, "OBJECTID_1": 7269, "PARCEL_NO_": "104802020500", "Tax_Legal_": "FORRTUNA 4-1-39 WEST END QTR", "Name": "PIPER, TRACY AYN & CADIA E.", "Address": "203 Luquer St", "City": "Brooklyn", "State": "New York", "Zip": 11231, "Country": "United States", "Land_Value": 52300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.260229039, "SHAPE_Area": 2981.69162882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349635.232600003480911, 257503.134199999272823 ], [ 349614.227099999785423, 257507.817499998956919 ], [ 349615.411799997091293, 257558.067400000989437 ], [ 349625.920800000429153, 257554.986999999731779 ], [ 349633.177599996328354, 257555.046399999409914 ], [ 349644.437200002372265, 257558.516100000590086 ], [ 349650.857199996709824, 257562.157200001180172 ], [ 349656.458200000226498, 257567.269299998879433 ], [ 349658.850199997425079, 257570.455299999564886 ], [ 349681.782899998128414, 257528.846400000154972 ], [ 349641.695699997246265, 257501.709499999880791 ], [ 349635.232600003480911, 257503.134199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104801020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02624299, "LATITUDE": 18.34793453, "OBJECTID_1": 7215, "PARCEL_NO_": "104801020200", "Tax_Legal_": "FORTUNA 5-50 WEST END QUARTER", "Name": "DOWNING, MYRA & HEYLIGER, SIMONE O.", "Address": "PO BOX 303761", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58600, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.59602834399999, "SHAPE_Area": 1389.062425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348749.820600003004074, 257505.386799998581409 ], [ 348731.253799997270107, 257507.767900001257658 ], [ 348730.424099996685982, 257510.505300000309944 ], [ 348723.964699998497963, 257511.50789999961853 ], [ 348722.373599998652935, 257508.961800001561642 ], [ 348701.382500000298023, 257511.956399999558926 ], [ 348709.01410000026226, 257562.68129999935627 ], [ 348724.456299997866154, 257548.453299999237061 ], [ 348749.820600003004074, 257505.386799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0267802, "LATITUDE": 18.34801413, "OBJECTID_1": 1206, "PARCEL_NO_": "102303012800", "Tax_Legal_": "FORTUNA 5-3 WEST END QUARTER", "Name": "TRUST AGREEMENT OF LAVERNE C BLYDEN", "Address": "PO Box 7636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.15590755400001, "SHAPE_Area": 1048.5625259200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348653.421700000762939, 257557.160100001841784 ], [ 348680.056900002062321, 257554.21169999986887 ], [ 348674.741800002753735, 257515.537999998778105 ], [ 348652.944399997591972, 257518.526000000536442 ], [ 348648.887699998915195, 257521.44819999858737 ], [ 348648.063400000333786, 257523.552299998700619 ], [ 348648.047200001776218, 257525.452100001275539 ], [ 348653.421700000762939, 257557.160100001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304054600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02091736, "LATITUDE": 18.34781907, "OBJECTID_1": 1384, "PARCEL_NO_": "102304054600", "Tax_Legal_": "FORTUNA 5A-39 WEST END QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 73900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.8312917, "SHAPE_Area": 2412.0055165 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349302.031400002539158, 257523.205200001597404 ], [ 349332.318099997937679, 257470.257500000298023 ], [ 349317.838600002229214, 257466.128299999982119 ], [ 349315.387299999594688, 257469.907900001853704 ], [ 349311.271200001239777, 257479.7956000007689 ], [ 349305.553300000727177, 257488.403599999845028 ], [ 349294.96339999884367, 257500.982599999755621 ], [ 349283.58330000191927, 257511.655200000852346 ], [ 349272.222999997437, 257520.006000000983477 ], [ 349264.933799996972084, 257523.745999999344349 ], [ 349255.231100000441074, 257526.833000000566244 ], [ 349243.931900002062321, 257528.007100000977516 ], [ 349242.037000000476837, 257561.133200000971556 ], [ 349255.787399999797344, 257556.179499998688698 ], [ 349277.644199997186661, 257546.225900001823902 ], [ 349302.031400002539158, 257523.205200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0136735, "LATITUDE": 18.34783357, "OBJECTID_1": 7329, "PARCEL_NO_": "104901011000", "Tax_Legal_": "FORTUNA 4JA-3 WEST END QTR", "Name": "DURANT, WINSTON & LYDIA", "Address": "15 E Forest Ave", "City": "Teaneck", "State": "New Jersey", "Zip": 7666, "Country": "United States", "Land_Value": 38200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.00829992000001, "SHAPE_Area": 2718.46437909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350075.148299999535084, 257545.575899999588728 ], [ 350072.329499997198582, 257497.84569999948144 ], [ 350037.654500000178814, 257497.984099999070168 ], [ 350031.990500003099442, 257500.259799998253584 ], [ 350024.730099998414516, 257500.622600000351667 ], [ 350029.071699999272823, 257558.919900000095367 ], [ 350034.688900001347065, 257562.13230000063777 ], [ 350041.141199998557568, 257561.973999999463558 ], [ 350061.379900000989437, 257552.640399999916553 ], [ 350063.809600003063679, 257551.393800001591444 ], [ 350075.148299999535084, 257545.575899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01582445, "LATITUDE": 18.34796469, "OBJECTID_1": 7323, "PARCEL_NO_": "104901010100", "Tax_Legal_": "FORTUNA 4 1 52 WEST END QTR", "Name": "SMITH, SYLVIE & GLEN J SMITH FAMILY TRUST", "Address": "PO Box 303573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49600, "Improved_V": 113700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.06087431099999, "SHAPE_Area": 1984.6180474600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349817.288400001823902, 257524.678199999034405 ], [ 349790.715999998152256, 257520.238800000399351 ], [ 349786.439900003373623, 257548.912500001490116 ], [ 349846.821699999272823, 257560.172499999403954 ], [ 349862.380800001323223, 257532.224399998784065 ], [ 349817.288400001823902, 257524.678199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01928614000001, "LATITUDE": 18.34795388, "OBJECTID_1": 7266, "PARCEL_NO_": "104802020100", "Tax_Legal_": "FORTUNA 4-1-33 WEST END QTR", "Name": "FLEMING, DELVIN", "Address": "PO Box 655", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21300, "Improved_V": 156100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.141757783, "SHAPE_Area": 935.37365571199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349476.025799997150898, 257544.472100000828505 ], [ 349466.585600003600121, 257516.741599999368191 ], [ 349446.363099999725819, 257524.175400000065565 ], [ 349435.011799998581409, 257531.470800001174212 ], [ 349446.910499997437, 257554.577399998903275 ], [ 349476.025799997150898, 257544.472100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01404801, "LATITUDE": 18.34779934, "OBJECTID_1": 7334, "PARCEL_NO_": "104901011600", "Tax_Legal_": "FORTUNA 4JA WEST END QTR", "Name": "MC KELVEY, LISA", "Address": "2946 Commerce St", "City": "Houston", "State": "Texas", "Zip": 77003, "Country": "United States", "Land_Value": 61600, "Improved_V": 87500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.154435949, "SHAPE_Area": 1482.62610378 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349991.452299997210503, 257502.402199998497963 ], [ 349991.373599998652935, 257541.512800000607967 ], [ 350017.928900003433228, 257541.730099998414516 ], [ 350020.346100002527237, 257541.960999999195337 ], [ 350023.494000002741814, 257551.063799999654293 ], [ 350029.071699999272823, 257558.919900000095367 ], [ 350024.730099998414516, 257500.622600000351667 ], [ 350000.529899999499321, 257501.690999999642372 ], [ 349994.075800001621246, 257502.060400001704693 ], [ 349991.452299997210503, 257502.402199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01692079, "LATITUDE": 18.34789511, "OBJECTID_1": 7270, "PARCEL_NO_": "104802020600", "Tax_Legal_": "FORTUNA 4-1-42 WEST END QTR", "Name": "BRIDGEWATER HODGE, GERALDINE A", "Address": "PO Box 9610", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.96869700799999, "SHAPE_Area": 1068.13701472 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349690.036700002849102, 257506.538100000470877 ], [ 349681.782899998128414, 257528.846400000154972 ], [ 349720.262999996542931, 257555.337000001221895 ], [ 349731.011200003325939, 257524.183100000023842 ], [ 349727.780500002205372, 257524.789900001138449 ], [ 349720.516500003635883, 257525.57490000128746 ], [ 349709.253300003707409, 257522.527399998158216 ], [ 349702.028899997472763, 257518.668600000441074 ], [ 349690.036700002849102, 257506.538100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01643925, "LATITUDE": 18.34781611, "OBJECTID_1": 7271, "PARCEL_NO_": "104802020700", "Tax_Legal_": "FORTUNA 4-1-44 8 WESTEND", "Name": "PRICE, VANESSA", "Address": "140 S Dixie Hwy", "City": "Hollywood", "State": "Florida", "Zip": 33020, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.32237795099999, "SHAPE_Area": 1728.03046926 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349731.011200003325939, 257524.183100000023842 ], [ 349720.262999996542931, 257555.337000001221895 ], [ 349780.980999998748302, 257527.125199999660254 ], [ 349781.826800003647804, 257522.488099999725819 ], [ 349784.407600000500679, 257503.510800000280142 ], [ 349787.753300003707409, 257489.394900001585484 ], [ 349786.153300002217293, 257487.904100000858307 ], [ 349783.730800002813339, 257488.306499999016523 ], [ 349743.14360000193119, 257519.849399998784065 ], [ 349735.048100002110004, 257523.582899998873472 ], [ 349731.011200003325939, 257524.183100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901013900", "MAP": "D9-3237-T85", "PARCEL_NAM": "4KC", "ACRE": ".343", "LONGITUDE": -65.01497234, "LATITUDE": 18.34789417, "OBJECTID_1": 7354, "PARCEL_NO_": "104901013900", "Tax_Legal_": "FORTUNA 4KC WEST END QTR.", "Name": "DURAND, FELIX & JANET", "Address": "PO Box 305378", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.37816003899999, "SHAPE_Area": 1006.2067455 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349933.395599998533726, 257525.839499998837709 ], [ 349906.950900003314018, 257506.413600001484156 ], [ 349900.778800003230572, 257513.019400000572205 ], [ 349903.152000002563, 257573.7212999984622 ], [ 349906.447400003671646, 257565.515700001269579 ], [ 349908.076200000941753, 257563.629099998623133 ], [ 349909.721199996769428, 257559.8429000005126 ], [ 349911.364399999380112, 257556.267799999564886 ], [ 349911.382399998605251, 257554.157000001519918 ], [ 349913.842699997127056, 257549.322000000625849 ], [ 349915.466099999845028, 257548.06870000064373 ], [ 349921.187600001692772, 257539.038499999791384 ], [ 349922.8074000030756, 257538.207400001585484 ], [ 349933.395599998533726, 257525.839499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01318573, "LATITUDE": 18.34800879, "OBJECTID_1": 7330, "PARCEL_NO_": "104901011100", "Tax_Legal_": "FORTUNA 4J-5 WEST END QTR", "Name": "PHILLIP, GRIFFITH & VIVIAN", "Address": "PO Box 11636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.98407948400001, "SHAPE_Area": 738.95551774499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350121.138700000941753, 257542.363800000399351 ], [ 350101.076200000941753, 257531.011599998921156 ], [ 350088.879000000655651, 257542.944099999964237 ], [ 350081.579099997878075, 257547.950599998235703 ], [ 350069.416000001132488, 257555.872600000351667 ], [ 350121.828199997544289, 257556.090500000864267 ], [ 350121.867700003087521, 257551.446699999272823 ], [ 350119.473999999463558, 257548.471799999475479 ], [ 350119.506300002336502, 257544.672400001436472 ], [ 350121.138700000941753, 257542.363800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01866104, "LATITUDE": 18.34787503, "OBJECTID_1": 7267, "PARCEL_NO_": "104802020200", "Tax_Legal_": "FORTUNA 4-1-34 8 WEST END QTR", "Name": "CURTIS, GLENN K", "Address": "PO Box 7623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46200, "Improved_V": 159000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.71810807400001, "SHAPE_Area": 1631.4390538800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349548.604699999094009, 257543.799600001424551 ], [ 349542.465300001204014, 257507.230099998414516 ], [ 349527.919299997389317, 257510.910799998790026 ], [ 349494.831699997186661, 257514.017400000244379 ], [ 349496.215999998152256, 257540.837699998170137 ], [ 349521.188299998641014, 257543.786299999803305 ], [ 349544.549800001084805, 257546.510600000619888 ], [ 349548.604699999094009, 257543.799600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01903222, "LATITUDE": 18.34787833, "OBJECTID_1": 7297, "PARCEL_NO_": "104802023400", "Tax_Legal_": "FORTUNA 4-1-33A WEST END QTR", "Name": "ADAMS, JANICE", "Address": "5222 Simsbrook Dr", "City": "Houston", "State": "Texas", "Zip": 77045, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.54548765200001, "SHAPE_Area": 655.46897034400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349494.831699997186661, 257514.017400000244379 ], [ 349466.585600003600121, 257516.741599999368191 ], [ 349476.025799997150898, 257544.472100000828505 ], [ 349488.966399997472763, 257539.933899998664856 ], [ 349496.215999998152256, 257540.837699998170137 ], [ 349494.831699997186661, 257514.017400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01824613, "LATITUDE": 18.34774811, "OBJECTID_1": 7268, "PARCEL_NO_": "104802020300", "Tax_Legal_": "FORTUNA 4-1-36 WEST END QTR", "Name": "THOMAS, ELRIDGE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.57898392000001, "SHAPE_Area": 1555.4420979 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349592.388400003314018, 257515.660300001502037 ], [ 349582.157999999821186, 257486.023400001227856 ], [ 349555.413099996745586, 257501.847699999809265 ], [ 349542.465300001204014, 257507.230099998414516 ], [ 349548.604699999094009, 257543.799600001424551 ], [ 349554.279500000178814, 257540.257399998605251 ], [ 349592.388400003314018, 257515.660300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01438918, "LATITUDE": 18.34782284, "OBJECTID_1": 7374, "PARCEL_NO_": "104901016000", "Tax_Legal_": "FORTUNA 4KB-3 WESTEND QTR", "Name": "POTTER, SHENEL A. & SHAKIMO E.", "Address": "PO Box 11014", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38800, "Improved_V": 170500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.539950089, "SHAPE_Area": 1423.49095035 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349991.373599998652935, 257541.512800000607967 ], [ 349991.452299997210503, 257502.402199998497963 ], [ 349980.352300003170967, 257503.847899999469519 ], [ 349968.228900000452995, 257507.126200001686811 ], [ 349964.181100003421307, 257508.992899999022484 ], [ 349946.294799998402596, 257526.156199999153614 ], [ 349967.086300000548363, 257546.591299999505281 ], [ 349979.996299996972084, 257545.641499999910593 ], [ 349991.365599997341633, 257545.474800001829863 ], [ 349991.373599998652935, 257541.512800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304054000", "MAP": "A9-140-T70", "PARCEL_NAM": "5A-29", "ACRE": ".31", "LONGITUDE": -65.02054674, "LATITUDE": 18.34772723, "OBJECTID_1": 1378, "PARCEL_NO_": "102304054000", "Tax_Legal_": "FORTUNA 5A-29 WEST END QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.52970640699999, "SHAPE_Area": 1193.49377224 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349337.640399999916553, 257508.086800001561642 ], [ 349332.318099997937679, 257470.257500000298023 ], [ 349302.031400002539158, 257523.205200001597404 ], [ 349325.270599998533726, 257540.282900001853704 ], [ 349337.640399999916553, 257508.086800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01272991, "LATITUDE": 18.34784995, "OBJECTID_1": 7331, "PARCEL_NO_": "104901011300", "Tax_Legal_": "FORTUNA 4J-6 WEST END QTR", "Name": "FAULKNER, JAMES & HELEN S", "Address": "18115 N W 42 Place", "City": "Miami", "State": "Florida", "Zip": 33055, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.154094552, "SHAPE_Area": 1977.8076272200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350101.076200000941753, 257531.011599998921156 ], [ 350121.138700000941753, 257542.363800000399351 ], [ 350123.564900003373623, 257541.539200000464916 ], [ 350127.585600003600121, 257542.838700000196695 ], [ 350129.194700002670288, 257543.274099998176098 ], [ 350130.778499998152256, 257546.664500001817942 ], [ 350185.667099997401237, 257540.147700000554323 ], [ 350184.300800003111362, 257511.216699998825788 ], [ 350104.358999997377396, 257524.283500000834465 ], [ 350105.138400003314018, 257527.456300001591444 ], [ 350101.076200000941753, 257531.011599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01332618000001, "LATITUDE": 18.34773087, "OBJECTID_1": 7333, "PARCEL_NO_": "104901011500", "Tax_Legal_": "FORTUNA 4J-7 WEST END QTR", "Name": "WARNER, ELSIE CAIBY", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.76009791300001, "SHAPE_Area": 1040.8185135599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350101.963500000536442, 257521.51969999819994 ], [ 350102.170199997723103, 257497.245600000023842 ], [ 350072.329499997198582, 257497.84569999948144 ], [ 350075.148299999535084, 257545.575899999588728 ], [ 350089.764499999582767, 257533.663199998438358 ], [ 350097.086000002920628, 257526.123799998313189 ], [ 350097.111199997365475, 257523.168699998408556 ], [ 350099.546300001442432, 257521.288800001144409 ], [ 350101.963500000536442, 257521.51969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802025500", "MAP": "F9-4093-T88", "PARCEL_NAM": "4-2-25", "ACRE": ".37", "LONGITUDE": -65.01976718, "LATITUDE": 18.34791104, "OBJECTID_1": 7314, "PARCEL_NO_": "104802025500", "Tax_Legal_": "4-2-25 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "LEBRON DAVID, MONICA", "Address": "PO Box 7214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.71545368599999, "SHAPE_Area": 1650.16175959 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349432.671999998390675, 257522.163499999791384 ], [ 349415.9425999969244, 257498.173000000417233 ], [ 349383.45269999653101, 257525.771499998867512 ], [ 349384.23929999768734, 257528.099899999797344 ], [ 349386.579099997878075, 257537.407200001180172 ], [ 349395.92400000244379, 257576.32490000128746 ], [ 349407.447899997234344, 257548.765999998897314 ], [ 349415.597300000488758, 257538.700199998915195 ], [ 349423.744999997317791, 257528.845499999821186 ], [ 349432.671999998390675, 257522.163499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01555051, "LATITUDE": 18.34774362, "OBJECTID_1": 7325, "PARCEL_NO_": "104901010400", "Tax_Legal_": "FORTUNA 4-1-54 WEST END QTR", "Name": "OTTLEY, FLAVIUS", "Address": "BOX 4009", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.28799662700001, "SHAPE_Area": 1156.5601484700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349878.76410000026226, 257502.172100000083447 ], [ 349848.142300002276897, 257499.810499999672174 ], [ 349817.288400001823902, 257524.678199999034405 ], [ 349862.380800001323223, 257532.224399998784065 ], [ 349878.76410000026226, 257502.172100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "104801020500", "MAP": "C9-328-T92", "PARCEL_NAM": "5-A", "ACRE": null, "LONGITUDE": -65.02701543000001, "LATITUDE": 18.34765841, "OBJECTID_1": 7218, "PARCEL_NO_": "104801020500", "Tax_Legal_": "5-31 FORTUNA NO 8 WESTEND QTR", "Name": "PRENTICE, EUGENIE T. (LIFE ESTATE)", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56200, "Improved_V": 169100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.41158327799999, "SHAPE_Area": 360.66974700499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348638.403800003230572, 257521.573399998247623 ], [ 348640.020000003278255, 257521.164500001817942 ], [ 348640.860500000417233, 257517.160599999129772 ], [ 348643.308200001716614, 257513.803100001066923 ], [ 348646.547899998724461, 257512.140900000929832 ], [ 348641.205799996852875, 257476.633400000631809 ], [ 348632.32379999756813, 257478.038400001823902 ], [ 348638.403800003230572, 257521.573399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01733436000001, "LATITUDE": 18.34762509, "OBJECTID_1": 7275, "PARCEL_NO_": "104802021100", "Tax_Legal_": "FORTUNA 4-1-40 8 WESTEND", "Name": "GRAY, SHARLENE P. & CORNELL R. FRAITES", "Address": "20161 Mare Ter", "City": "Ashburn", "State": "Virginia", "Zip": 20147, "Country": "United States", "Land_Value": 48700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.109158982, "SHAPE_Area": 1412.1245242699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349690.036700002849102, 257506.538100000470877 ], [ 349678.840000003576279, 257495.680700000375509 ], [ 349668.419100001454353, 257488.418200001120567 ], [ 349655.57379999756813, 257481.769200000911951 ], [ 349639.488899998366833, 257476.782400000840425 ], [ 349635.232600003480911, 257503.134199999272823 ], [ 349641.695699997246265, 257501.709499999880791 ], [ 349681.782899998128414, 257528.846400000154972 ], [ 349690.036700002849102, 257506.538100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023300", "MAP": "D9-1361-T77", "PARCEL_NAM": "4-2-22", "ACRE": "1.08", "LONGITUDE": -65.0200174, "LATITUDE": 18.3471826, "OBJECTID_1": 7296, "PARCEL_NO_": "104802023300", "Tax_Legal_": "FORTUNA 4-2-22&5A-31 WEST END QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 167100, "Improved_V": 338800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 392.47684170100001, "SHAPE_Area": 4657.0457206399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349394.58389999717474, 257449.657800000160933 ], [ 349409.408600002527237, 257413.259899999946356 ], [ 349391.716499999165535, 257407.6266999989748 ], [ 349386.083099998533726, 257406.313999999314547 ], [ 349335.382500000298023, 257394.5 ], [ 349330.539300002157688, 257395.093699999153614 ], [ 349328.107799999415874, 257396.551399998366833 ], [ 349326.466399997472763, 257399.915500000119209 ], [ 349325.485600002110004, 257420.383499998599291 ], [ 349357.003700003027916, 257412.197799999266863 ], [ 349381.112899996340275, 257516.464200001209974 ], [ 349383.45269999653101, 257525.771499998867512 ], [ 349415.9425999969244, 257498.173000000417233 ], [ 349394.58389999717474, 257449.657800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02250139, "LATITUDE": 18.34761174, "OBJECTID_1": 7305, "PARCEL_NO_": "104802024200", "Tax_Legal_": "FORTUNA 5A-36 WEST END QTR.", "Name": "GALLO, JOSE ANTONIO & ESTHER MARGARET", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.42914010600001, "SHAPE_Area": 2512.60412576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349154.573299996554852, 257510.599300000816584 ], [ 349132.354400001466274, 257468.409800000488758 ], [ 349079.821800000965595, 257482.334199998527765 ], [ 349088.410700000822544, 257515.335099998861551 ], [ 349142.449799999594688, 257513.877599999308586 ], [ 349147.217600002884865, 257522.149300001561642 ], [ 349154.573299996554852, 257510.599300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02386154, "LATITUDE": 18.34762402, "OBJECTID_1": 7220, "PARCEL_NO_": "104802010100", "Tax_Legal_": "FORTUNA 4Y-1 WEST END QTR", "Name": "BOURNE, JUDITH", "Address": "PO Box 6458", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 78200, "Improved_V": 192600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.79661674, "SHAPE_Area": 2200.1864155799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349018.403599999845028, 257498.085799999535084 ], [ 349015.35809999704361, 257476.951499998569489 ], [ 348935.443300001323223, 257486.852099999785423 ], [ 348931.94650000333786, 257518.698600001633167 ], [ 349018.403599999845028, 257498.085799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01944278000001, "LATITUDE": 18.34763993, "OBJECTID_1": 7291, "PARCEL_NO_": "104802022800", "Tax_Legal_": "FORTUNA 4-2-18 No.8 WESTEND QTR.", "Name": "VanBEVERHOUDT, MURLENE", "Address": "9142 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.108514939, "SHAPE_Area": 1073.5816506799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349465.044900000095367, 257508.285199999809265 ], [ 349446.728100001811981, 257481.326400000602007 ], [ 349439.462300002574921, 257482.322399999946356 ], [ 349415.9425999969244, 257498.173000000417233 ], [ 349432.671999998390675, 257522.163499999791384 ], [ 349438.352099999785423, 257517.988099999725819 ], [ 349447.261100001633167, 257513.416999999433756 ], [ 349465.044900000095367, 257508.285199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802023300", "MAP": "D9-1361-T77", "PARCEL_NAM": "5A-31", "ACRE": ".97", "LONGITUDE": -65.02029673, "LATITUDE": 18.34734045, "OBJECTID_1": 7296, "PARCEL_NO_": "104802023300", "Tax_Legal_": "FORTUNA 4-2-22&5A-31 WEST END QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 167100, "Improved_V": 338800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.44359948800002, "SHAPE_Area": 4044.88780653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349332.318099997937679, 257470.257500000298023 ], [ 349337.640399999916553, 257508.086800001561642 ], [ 349350.521600000560284, 257510.514299999922514 ], [ 349352.069499999284744, 257518.126299999654293 ], [ 349354.461400002241135, 257521.312300000339746 ], [ 349381.112899996340275, 257516.464200001209974 ], [ 349357.003700003027916, 257412.197799999266863 ], [ 349325.485600002110004, 257420.383499998599291 ], [ 349325.393899999558926, 257431.148600000888109 ], [ 349323.671599999070168, 257444.011199999600649 ], [ 349318.659299999475479, 257464.446199998259544 ], [ 349317.838600002229214, 257466.128299999982119 ], [ 349332.318099997937679, 257470.257500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901014000", "MAP": "D9-3237-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01480044, "LATITUDE": 18.34765926, "OBJECTID_1": 7355, "PARCEL_NO_": "104901014000", "Tax_Legal_": "FORTUNA 4KA-1 WEST END QTR.", "Name": "ARCHER, NICOLA", "Address": "PO Box 307711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29100, "Improved_V": 130200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.09832249900001, "SHAPE_Area": 884.90880178099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349952.970100000500679, 257499.824099998921156 ], [ 349918.361599996685982, 257492.15260000154376 ], [ 349906.950900003314018, 257506.413600001484156 ], [ 349933.395599998533726, 257525.839499998837709 ], [ 349950.470200002193451, 257509.30290000140667 ], [ 349952.970100000500679, 257499.824099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01579566, "LATITUDE": 18.34745965, "OBJECTID_1": 7324, "PARCEL_NO_": "104901010300", "Tax_Legal_": "FORTUNA 4-1-55 NO.8 WEST END QTR", "Name": "ROY AND FAMILY TRUST", "Address": "PO Box 6702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 79800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.779978116, "SHAPE_Area": 3443.5515154999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349848.142300002276897, 257499.810499999672174 ], [ 349858.281900003552437, 257445.431400001049042 ], [ 349822.802400000393391, 257445.352099999785423 ], [ 349821.170000001788139, 257447.660799998790026 ], [ 349816.251199997961521, 257457.119699999690056 ], [ 349805.637900002300739, 257472.442699998617172 ], [ 349802.360500000417233, 257478.537599999457598 ], [ 349797.407499998807907, 257492.006999999284744 ], [ 349791.556500002741814, 257516.234900001436472 ], [ 349790.715999998152256, 257520.238800000399351 ], [ 349817.288400001823902, 257524.678199999034405 ], [ 349848.142300002276897, 257499.810499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02118248, "LATITUDE": 18.34754297, "OBJECTID_1": 7302, "PARCEL_NO_": "104802023900", "Tax_Legal_": "FORTUNA 5A-46 WEST END QTR.", "Name": "FERNENDES, JUANITA V", "Address": "177-07 BRINDERHOFF", "City": "Saint Albans", "State": "New York", "Zip": 11433, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.35779897699999, "SHAPE_Area": 2210.48566295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349268.694899998605251, 257460.870900001376867 ], [ 349264.648900002241135, 257462.526500001549721 ], [ 349242.154899999499321, 257452.632100000977516 ], [ 349233.539700001478195, 257517.367300000041723 ], [ 349235.148800000548363, 257517.802700001746416 ], [ 349245.621799997985363, 257518.943900000303984 ], [ 349251.27139999717474, 257518.356800001114607 ], [ 349259.356100000441074, 257515.889899998903275 ], [ 349269.884900003671646, 257510.48759999871254 ], [ 349278.815499998629093, 257503.383499998599291 ], [ 349283.691200003027916, 257498.990499999374151 ], [ 349268.694899998605251, 257460.870900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02154512, "LATITUDE": 18.34747371, "OBJECTID_1": 7303, "PARCEL_NO_": "104802024000", "Tax_Legal_": "FORTUNA 5A-34 WEST END QTR", "Name": "JACKSON, DELMA S", "Address": "3940 BARDSTOWN COURT", "City": "FAYETTEVILLE", "State": "North Carolina", "Zip": 28304, "Country": "United States", "Land_Value": 82000, "Improved_V": 120900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.26195276199999, "SHAPE_Area": 2358.3085986199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349242.154899999499321, 257452.632100000977516 ], [ 349193.733000002801418, 257457.302000001072884 ], [ 349193.405699998140335, 257495.718400001525879 ], [ 349198.225599996745586, 257497.86879999935627 ], [ 349219.873800002038479, 257512.400299999862909 ], [ 349228.716300003230572, 257515.63910000026226 ], [ 349233.539700001478195, 257517.367300000041723 ], [ 349242.154899999499321, 257452.632100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01282881, "LATITUDE": 18.34765175, "OBJECTID_1": 7332, "PARCEL_NO_": "104901011400", "Tax_Legal_": "FORTUNA 4J WEST END QTR", "Name": "ADAMS, ELEANOR & MARIE E, MARVA L. HOWARD & OTHERS", "Address": "PO Box 304370", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.75895315099999, "SHAPE_Area": 1707.86213309 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350153.779600001871586, 257497.034699998795986 ], [ 350102.170199997723103, 257497.245600000023842 ], [ 350101.963500000536442, 257521.51969999819994 ], [ 350104.358999997377396, 257524.283500000834465 ], [ 350184.300800003111362, 257511.216699998825788 ], [ 350183.616800002753735, 257496.856699999421835 ], [ 350153.779600001871586, 257497.034699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105101010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97511237000001, "LATITUDE": 18.34510167, "OBJECTID_1": 7380, "PARCEL_NO_": "105101010200", "Tax_Legal_": "JOHN BREWERS BAY 1 WEST END QTR", "Name": "BOARD OF TRUSTEES, UVI", "Address": "1 JOHN BREWERS BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1409600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1688.04560373, "SHAPE_Area": 163365.95102800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353916.355099998414516, 257206.122999999672174 ], [ 353917.145199999213219, 257208.02930000051856 ], [ 353917.112899996340275, 257211.828699998557568 ], [ 354048.035099998116493, 257556.349500000476837 ], [ 354213.130599997937679, 257486.351100001484156 ], [ 354281.11259999871254, 257457.354400001466274 ], [ 354354.758599996566772, 257426.081999998539686 ], [ 354167.418200001120567, 256889.004399999976158 ], [ 353917.420400001108646, 257175.734299998730421 ], [ 353914.123199999332428, 257184.151000000536442 ], [ 353914.819799996912479, 257197.033399999141693 ], [ 353916.355099998414516, 257206.122999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104801020500", "MAP": "D9-9098-T016", "PARCEL_NAM": "5-31", "ACRE": null, "LONGITUDE": -65.02683355000001, "LATITUDE": 18.34760593, "OBJECTID_1": 7218, "PARCEL_NO_": "104801020500", "Tax_Legal_": "5-31 FORTUNA NO 8 WESTEND QTR", "Name": "PRENTICE, EUGENIE T. (LIFE ESTATE)", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56200, "Improved_V": 169100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.12671884900001, "SHAPE_Area": 1041.3064669800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348676.110699996352196, 257506.11710000038147 ], [ 348671.316899999976158, 257472.088300000876188 ], [ 348667.850100003182888, 257472.629599999636412 ], [ 348641.205799996852875, 257476.633400000631809 ], [ 348646.547899998724461, 257512.140900000929832 ], [ 348652.215400002896786, 257509.44310000166297 ], [ 348672.398400001227856, 257506.652899999171495 ], [ 348676.110699996352196, 257506.11710000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01782122, "LATITUDE": 18.34753718, "OBJECTID_1": 7278, "PARCEL_NO_": "104802021400", "Tax_Legal_": "FORTUNA 4-1-38 WEST END QTR", "Name": "CHINNERY STARR, AMY", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49700, "Improved_V": 66300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.866980015, "SHAPE_Area": 1721.3075292000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349639.488899998366833, 257476.782400000840425 ], [ 349623.402300000190735, 257472.006599999964237 ], [ 349610.504900000989437, 257471.478900000452995 ], [ 349602.421899996697903, 257473.7347999997437 ], [ 349582.157999999821186, 257486.023400001227856 ], [ 349592.388400003314018, 257515.660300001502037 ], [ 349599.68469999730587, 257511.075899999588728 ], [ 349614.227099999785423, 257507.817499998956919 ], [ 349635.232600003480911, 257503.134199999272823 ], [ 349639.488899998366833, 257476.782400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021000", "MAP": "D9-344-T62", "PARCEL_NAM": "4-2-3", "ACRE": ".37", "LONGITUDE": -65.01693632, "LATITUDE": 18.34748309, "OBJECTID_1": 7274, "PARCEL_NO_": "104802021000", "Tax_Legal_": "FORTUNA 4 2 3 WEST END QTR", "Name": "STOUT, GARFIELD & DAISY (LIFE ESTATE)", "Address": "PO Box 303955", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.05918116800001, "SHAPE_Area": 2100.6992366899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349716.927299998700619, 257473.616500001400709 ], [ 349691.346500001847744, 257447.442600000649691 ], [ 349673.318099997937679, 257481.281100001186132 ], [ 349678.931699998676777, 257484.915600001811981 ], [ 349684.538099996745586, 257489.394499998539686 ], [ 349693.339299999177456, 257497.488099999725819 ], [ 349705.333200000226498, 257509.407499998807907 ], [ 349710.943300001323223, 257513.464200001209974 ], [ 349722.206500001251698, 257516.511700000613928 ], [ 349732.702899999916553, 257514.9087999984622 ], [ 349738.375900000333786, 257511.577799998223782 ], [ 349716.927299998700619, 257473.616500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104801020400", "MAP": null, "PARCEL_NAM": "5-30", "ACRE": null, "LONGITUDE": -65.02657286, "LATITUDE": 18.34756713, "OBJECTID_1": 7217, "PARCEL_NO_": "104801020400", "Tax_Legal_": "FORTUNA 5-30 WESTEND QUARTER", "Name": "MARDENBOROUGH, G. & A. & TITUS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30300, "Improved_V": 114600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.731126307, "SHAPE_Area": 874.97215273899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348671.316899999976158, 257472.088300000876188 ], [ 348676.110699996352196, 257506.11710000038147 ], [ 348701.46339999884367, 257502.457899998873472 ], [ 348696.110500000417233, 257468.216899998486042 ], [ 348671.316899999976158, 257472.088300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802024100", "MAP": "D9-1537-T80", "PARCEL_NAM": "5A-35", "ACRE": ".510", "LONGITUDE": -65.02202868000001, "LATITUDE": 18.34746726, "OBJECTID_1": 7304, "PARCEL_NO_": "104802024100", "Tax_Legal_": "4-4-28&5A-35 ESTATE FORTUNA WESTEND QTR.", "Name": "DAVIS, NEVILLE", "Address": "PO Box 931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 108700, "Improved_V": 182200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.674814242, "SHAPE_Area": 1953.0439234099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349193.733000002801418, 257457.302000001072884 ], [ 349132.354400001466274, 257468.409800000488758 ], [ 349154.573299996554852, 257510.599300000816584 ], [ 349156.211099997162819, 257507.657400000840425 ], [ 349161.909199997782707, 257501.371199999004602 ], [ 349168.393899999558926, 257497.413499999791384 ], [ 349179.714599996805191, 257493.706500001251698 ], [ 349193.405699998140335, 257495.718400001525879 ], [ 349193.733000002801418, 257457.302000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028000", "MAP": "A9-222-T74", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97362323, "LATITUDE": 18.34769459, "OBJECTID_1": 2762, "PARCEL_NO_": "102604028000", "Tax_Legal_": "15-5-REM AND 15-5-A (INCLUDING 15-5-A-1(GREENBELT) AND DRAINAGE EASEMENT \"A\" CROWN & HAWK NO.3 SOUT", "Name": "SOOKRAM, SIEWDATH", "Address": "6076-66 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 410000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.873061270400001, "SHAPE_Area": 50.976816071899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354286.807899996638298, 257546.060300000011921 ], [ 354286.854599997401237, 257540.572299998253584 ], [ 354277.954599998891354, 257544.087999999523163 ], [ 354277.92230000346899, 257547.88740000128746 ], [ 354279.52589999884367, 257548.956000000238419 ], [ 354281.944799996912479, 257548.97580000013113 ], [ 354286.807899996638298, 257546.060300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802020900", "MAP": "D9-344-T62", "PARCEL_NAM": "4-2-2", "ACRE": ".35", "LONGITUDE": -65.01661479000001, "LATITUDE": 18.3474804, "OBJECTID_1": 7273, "PARCEL_NO_": "104802020900", "Tax_Legal_": "FORTUNA 4 2 2 WEST END QTR", "Name": "JAMES, JOHN & GRACE", "Address": "PO Box 221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29900, "Improved_V": 129700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.33994554099999, "SHAPE_Area": 1090.5206783599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349759.476700000464916, 257495.707400001585484 ], [ 349742.021899998188019, 257462.21169999986887 ], [ 349716.927299998700619, 257473.616500001400709 ], [ 349738.375900000333786, 257511.577799998223782 ], [ 349759.476700000464916, 257495.707400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104801020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02632863, "LATITUDE": 18.34753017, "OBJECTID_1": 7216, "PARCEL_NO_": "104801020300", "Tax_Legal_": "FORTUNA 5-20 WEST END QUARTER", "Name": "FARRINGTON, WALSWORTH A and JUANA A", "Address": "PO Box 11474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28300, "Improved_V": 94200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.376534033, "SHAPE_Area": 935.97123963000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348696.110500000417233, 257468.216899998486042 ], [ 348701.46339999884367, 257502.457899998873472 ], [ 348728.105899997055531, 257498.665100000798702 ], [ 348722.754799999296665, 257464.213100001215935 ], [ 348696.110500000417233, 257468.216899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01913624, "LATITUDE": 18.34755272, "OBJECTID_1": 7289, "PARCEL_NO_": "104802022500", "Tax_Legal_": "FORTUNA 4 2 15 WEST END QTR", "Name": "THOMPSON, ANNICA & AKEEM CHARLESWELL", "Address": "PO Box 12421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 95800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.571710881, "SHAPE_Area": 985.41677822700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349490.872100003063679, 257505.541299998760223 ], [ 349487.896799996495247, 257476.174899999052286 ], [ 349446.728100001811981, 257481.326400000602007 ], [ 349465.044900000095367, 257508.285199999809265 ], [ 349490.872100003063679, 257505.541299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802022200", "MAP": "D9-344-T62", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01877907, "LATITUDE": 18.34753152, "OBJECTID_1": 7286, "PARCEL_NO_": "104802022200", "Tax_Legal_": "FORTUNA 4-2-12 WEST END", "Name": "THOMAS, EDDIE L. & YVONNE C.", "Address": "1924 Aborfield Ct", "City": "VIRGINIA BEACH", "State": "Virginia", "Zip": 23464, "Country": "United States", "Land_Value": 22200, "Improved_V": 192900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.58894099299999, "SHAPE_Area": 1170.6870551899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349534.46509999781847, 257499.776399999856949 ], [ 349529.027699999511242, 257475.4560999982059 ], [ 349487.896799996495247, 257476.174899999052286 ], [ 349490.872100003063679, 257505.541299998760223 ], [ 349519.926299996674061, 257502.612700000405312 ], [ 349534.46509999781847, 257499.776399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303010400", "MAP": "B9-483-T77", "PARCEL_NAM": "5B", "ACRE": "1.32", "LONGITUDE": -65.02587185, "LATITUDE": 18.34729662, "OBJECTID_1": 1188, "PARCEL_NO_": "102303010400", "Tax_Legal_": "FORTUNA 5B WEST END QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 125100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.84881761000003, "SHAPE_Area": 4839.9286736200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348732.142899997532368, 257498.064899999648333 ], [ 348747.480800002813339, 257496.079500000923872 ], [ 348756.361000001430511, 257494.885600000619888 ], [ 348796.726999998092651, 257489.305399999022484 ], [ 348798.346799999475479, 257488.474199999123812 ], [ 348789.277000002563, 257417.261500000953674 ], [ 348722.261399999260902, 257427.478799998760223 ], [ 348732.142899997532368, 257498.064899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901016200", "MAP": "D9-8172-T008", "PARCEL_NAM": "4KA REM", "ACRE": ".51", "LONGITUDE": -65.01495085000001, "LATITUDE": 18.34707708, "OBJECTID_1": 7376, "PARCEL_NO_": "104901016200", "Tax_Legal_": "4KA REM FORTUNA NO.8 WEST END QTR", "Name": "OTTLEY, FLAVIUS", "Address": "BOX 4009", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.29431434399999, "SHAPE_Area": 2901.7565685899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349918.361599996685982, 257492.15260000154376 ], [ 349920.216899998486042, 257463.670200001448393 ], [ 349920.25110000371933, 257459.659699998795986 ], [ 349923.582500003278255, 257447.232400000095367 ], [ 349926.87780000269413, 257439.026700001209974 ], [ 349928.515600003302097, 257436.084800001233816 ], [ 349937.493000000715256, 257423.49269999936223 ], [ 349957.024300001561642, 257402.543200001120567 ], [ 349923.954700000584126, 257403.539099998772144 ], [ 349915.889799997210503, 257403.684200000017881 ], [ 349896.531099997460842, 257404.370099999010563 ], [ 349898.14130000025034, 257445.557000000029802 ], [ 349899.477099999785423, 257479.724700000137091 ], [ 349899.921700000762939, 257491.095199998468161 ], [ 349900.778800003230572, 257513.019400000572205 ], [ 349906.950900003314018, 257506.413600001484156 ], [ 349918.361599996685982, 257492.15260000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0232325, "LATITUDE": 18.3474094, "OBJECTID_1": 7256, "PARCEL_NO_": "104802016500", "Tax_Legal_": "FORTUNA 4Y-5 WEST END QTR", "Name": "MILLENNIUM TRUST CO LLC CUST. FOR JAMES DARROW IRA", "Address": "2001 Spring Rd", "City": "Oak Brook", "State": "Illinois", "Zip": 60523, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.24365966900001, "SHAPE_Area": 2023.5984025 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349071.731700003147125, 257485.434399999678135 ], [ 349052.718199998140335, 257445.593199998140335 ], [ 349013.104599997401237, 257457.51240000128746 ], [ 349015.35809999704361, 257476.951499998569489 ], [ 349018.403599999845028, 257498.085799999535084 ], [ 349071.731700003147125, 257485.434399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02083857, "LATITUDE": 18.34727318, "OBJECTID_1": 7301, "PARCEL_NO_": "104802023800", "Tax_Legal_": "5A-45 FORTUNA No.8 WEST END QTR", "Name": "ADAMS, CHARLENE & SHEILA DAWSON", "Address": "PO Box 306344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.63323608900001, "SHAPE_Area": 1845.4724860700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349317.571699999272823, 257402.798000000417233 ], [ 349311.632700003683567, 257437.368700001388788 ], [ 349281.849399998784065, 257431.214400000870228 ], [ 349277.602099999785423, 257456.510800000280142 ], [ 349268.694899998605251, 257460.870900001376867 ], [ 349283.691200003027916, 257498.990499999374151 ], [ 349291.820799998939037, 257491.246500000357628 ], [ 349298.343199998140335, 257482.856199998408556 ], [ 349302.441299997270107, 257475.079300001263618 ], [ 349304.066600002348423, 257473.614900000393391 ], [ 349309.82940000295639, 257459.729899998754263 ], [ 349310.655500002205372, 257457.414599999785423 ], [ 349313.979699999094009, 257445.831700000911951 ], [ 349315.673199996352196, 257436.3462999984622 ], [ 349317.571699999272823, 257402.798000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028000", "MAP": "A9-222-T74", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97388118000001, "LATITUDE": 18.34760779, "OBJECTID_1": 2762, "PARCEL_NO_": "102604028000", "Tax_Legal_": "15-5-REM AND 15-5-A (INCLUDING 15-5-A-1(GREENBELT) AND DRAINAGE EASEMENT \"A\" CROWN & HAWK NO.3 SOUT", "Name": "SOOKRAM, SIEWDATH", "Address": "6076-66 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 410000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.898112572, "SHAPE_Area": 200.334693945 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354286.937299996614456, 257530.86259999871254 ], [ 354223.190099999308586, 257536.040399998426437 ], [ 354242.520000003278255, 257538.731699999421835 ], [ 354254.616499997675419, 257538.619699999690056 ], [ 354275.614799998700619, 257534.780699998140335 ], [ 354286.937299996614456, 257530.86259999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021900", "MAP": "D9-344-T62", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01838786, "LATITUDE": 18.34740937, "OBJECTID_1": 7283, "PARCEL_NO_": "104802021900", "Tax_Legal_": "FORTUNA 4 2 9 WEST END QTR", "Name": "AUDAIN, ATHELSTONE & MARLYN", "Address": "1260 Rev James A Polite Ave", "City": "Bronx", "State": "New York", "Zip": 10459, "Country": "United States", "Land_Value": 23000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.20925281199999, "SHAPE_Area": 1246.5989435199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349572.528999999165535, 257480.456199999898672 ], [ 349571.160999998450279, 257451.736299999058247 ], [ 349528.244800001382828, 257472.70549999922514 ], [ 349529.027699999511242, 257475.4560999982059 ], [ 349534.46509999781847, 257499.776399999856949 ], [ 349546.593999996781349, 257495.864900000393391 ], [ 349572.528999999165535, 257480.456199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01533327, "LATITUDE": 18.34735139, "OBJECTID_1": 7326, "PARCEL_NO_": "104901010500", "Tax_Legal_": "FORTUNA 4-1-56 WEST END QTR", "Name": "OTTLEY, FLAVIUS", "Address": "BOX 4009", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68500, "Improved_V": 200000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.847597987, "SHAPE_Area": 2321.1770024799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349899.477099999785423, 257479.724700000137091 ], [ 349898.14130000025034, 257445.557000000029802 ], [ 349858.281900003552437, 257445.431400001049042 ], [ 349848.142300002276897, 257499.810499999672174 ], [ 349878.76410000026226, 257502.172100000083447 ], [ 349885.281199999153614, 257494.41499999910593 ], [ 349892.620700001716614, 257484.764699999243021 ], [ 349899.477099999785423, 257479.724700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01961489, "LATITUDE": 18.34734206, "OBJECTID_1": 7292, "PARCEL_NO_": "104802022900", "Tax_Legal_": "FORTUNA 4-2-19 8 WEST END QTR", "Name": "SPRAUVE, GARY", "Address": "PO Box 1532", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.562237178, "SHAPE_Area": 1592.37485993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349440.55629999935627, 257448.556400001049042 ], [ 349394.58389999717474, 257449.657800000160933 ], [ 349415.9425999969244, 257498.173000000417233 ], [ 349439.462300002574921, 257482.322399999946356 ], [ 349445.324100002646446, 257456.828099999576807 ], [ 349443.722199998795986, 257455.54839999973774 ], [ 349442.125799998641014, 257453.635499998927116 ], [ 349440.53660000115633, 257450.878299999982119 ], [ 349440.55629999935627, 257448.556400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021000", "MAP": "A9-222-T74", "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.97391033, "LATITUDE": 18.34730515, "OBJECTID_1": 2582, "PARCEL_NO_": "102603021000", "Tax_Legal_": "CROWN & HAWK 13 SOUTHSIDE QUARTER", "Name": "FOY, ENOLA & YEARWOOD, ERICA C", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.077010788, "SHAPE_Area": 4251.7763114 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354286.937299996614456, 257530.86259999871254 ], [ 354281.11259999871254, 257457.354400001466274 ], [ 354213.130599997937679, 257486.351100001484156 ], [ 354220.773000001907349, 257535.809500001370907 ], [ 354223.190099999308586, 257536.040399998426437 ], [ 354286.937299996614456, 257530.86259999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901014100", "MAP": "D9-3237-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01475053, "LATITUDE": 18.34736746, "OBJECTID_1": 7356, "PARCEL_NO_": "104901014100", "Tax_Legal_": "FORTUNA 4KA-2 WEST END QTR.", "Name": "WEBSTER, CASSANDRA P", "Address": "PO Box 305127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120900, "Improved_V": 169000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.54012530399999, "SHAPE_Area": 1426.3778660200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349952.582999996840954, 257457.929499998688698 ], [ 349923.582500003278255, 257447.232400000095367 ], [ 349920.25110000371933, 257459.659699998795986 ], [ 349920.216899998486042, 257463.670200001448393 ], [ 349918.361599996685982, 257492.15260000154376 ], [ 349952.970100000500679, 257499.824099998921156 ], [ 349953.868100002408028, 257489.065699998289347 ], [ 349952.375900000333786, 257474.910199999809265 ], [ 349950.790299996733665, 257471.730900000780821 ], [ 349950.876599997282028, 257461.59910000115633 ], [ 349952.582999996840954, 257457.929499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0134126, "LATITUDE": 18.34742335, "OBJECTID_1": 7363, "PARCEL_NO_": "104901014900", "Tax_Legal_": "FORTUNA IN 4N-8 4N 1 UNDIV. INT. 1/7 INT.", "Name": "SMITH, JULIE", "Address": "PO Box 11011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.47396045, "SHAPE_Area": 1585.22477342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350102.170199997723103, 257497.245600000023842 ], [ 350098.4425999969244, 257461.540300000458956 ], [ 350080.70549999922514, 257461.184000000357628 ], [ 350073.430699996650219, 257463.235399998724461 ], [ 350064.510899998247623, 257469.072999998927116 ], [ 350061.258699998259544, 257472.212799999862909 ], [ 350051.464299999177456, 257486.064800001680851 ], [ 350048.199500001966953, 257490.682100001722574 ], [ 350042.512100003659725, 257495.701799999922514 ], [ 350037.654500000178814, 257497.984099999070168 ], [ 350072.329499997198582, 257497.84569999948144 ], [ 350102.170199997723103, 257497.245600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802020800", "MAP": "D9-344-T62", "PARCEL_NAM": "4-2-1", "ACRE": ".31", "LONGITUDE": -65.01634207, "LATITUDE": 18.34731175, "OBJECTID_1": 7272, "PARCEL_NO_": "104802020800", "Tax_Legal_": "FORTUNA 4-2-1 WEST END QTR", "Name": "FAHIE, ALLEN", "Address": "PO Box 11272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.41839963300001, "SHAPE_Area": 1382.51034594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349790.591300003230572, 257440.233300000429153 ], [ 349742.021899998188019, 257462.21169999986887 ], [ 349759.476700000464916, 257495.707400001585484 ], [ 349776.520700000226498, 257482.759100001305342 ], [ 349783.032300002872944, 257475.635200001299381 ], [ 349785.510600000619888, 257468.689399998635054 ], [ 349790.591300003230572, 257440.233300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901014600", "MAP": "D9-3237-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01432834000001, "LATITUDE": 18.34735333, "OBJECTID_1": 7361, "PARCEL_NO_": "104901014600", "Tax_Legal_": "FORTUNA 4KA-3 WEST END QTR.", "Name": "DANIEL, LORENZO & DORIS", "Address": "PO Box 307043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.86392508899999, "SHAPE_Area": 1550.4179853400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349994.964800000190735, 257492.357400000095367 ], [ 350004.915700003504753, 257460.141499999910593 ], [ 350000.081399999558926, 257459.679800000041723 ], [ 350000.108400002121925, 257456.513599999248981 ], [ 349996.901100002229214, 257454.376400001347065 ], [ 349975.143299996852875, 257452.72069999948144 ], [ 349965.447800002992153, 257454.963300000876188 ], [ 349962.195500001311302, 257458.103100001811981 ], [ 349960.557700000703335, 257461.045000001788139 ], [ 349960.493000000715256, 257468.643899999558926 ], [ 349962.030100002884865, 257477.522399999201298 ], [ 349963.482699997723103, 257496.321600001305342 ], [ 349965.892599999904633, 257497.396800000220537 ], [ 349994.964800000190735, 257492.357400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01295222, "LATITUDE": 18.34740771, "OBJECTID_1": 7364, "PARCEL_NO_": "104901015000", "Tax_Legal_": "FORTUNA 4N-2 WESTEND QTR.", "Name": "OLIVER, MAURICE & CHARLOTTE", "Address": "PO Box 9557", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.34661796, "SHAPE_Area": 1702.1579003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350151.619599997997284, 257466.619600001722574 ], [ 350148.398000001907349, 257466.171000000089407 ], [ 350146.799699999392033, 257464.469200000166893 ], [ 350127.433899998664856, 257465.999400001019239 ], [ 350098.4425999969244, 257461.540300000458956 ], [ 350102.170199997723103, 257497.245600000023842 ], [ 350153.779600001871586, 257497.034699998795986 ], [ 350151.619599997997284, 257466.619600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01255483, "LATITUDE": 18.34738247, "OBJECTID_1": 7365, "PARCEL_NO_": "104901015100", "Tax_Legal_": "FORTUNA 4N-3&1/7INT.IN 4N-8 WESTEND QTR.", "Name": "OLIVER, MAURICE & CHARLOTTE", "Address": "PO Box 9557", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.87894955499999, "SHAPE_Area": 1115.53970985 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350181.526900000870228, 257458.209499999880791 ], [ 350157.330399997532368, 257458.855799999088049 ], [ 350157.285400003194809, 257464.132800001651049 ], [ 350154.850299999117851, 257466.012699998915195 ], [ 350151.619599997997284, 257466.619600001722574 ], [ 350153.779600001871586, 257497.034699998795986 ], [ 350183.616800002753735, 257496.856699999421835 ], [ 350181.526900000870228, 257458.209499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028100", "MAP": "A9-171-T72", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97323636, "LATITUDE": 18.34708364, "OBJECTID_1": 2763, "PARCEL_NO_": "102604028100", "Tax_Legal_": "CROWN & HAWK 15-6 S S QTR", "Name": "MILLIN, CHRISTINE L", "Address": "C/O Jacklyn Venzen-Millin", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 464100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.56493950100003, "SHAPE_Area": 5921.2636879700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354371.032999999821186, 257503.475499998778105 ], [ 354354.758599996566772, 257426.081999998539686 ], [ 354281.11259999871254, 257457.354400001466274 ], [ 354286.937299996614456, 257530.86259999871254 ], [ 354295.032799996435642, 257527.129200000315905 ], [ 354306.384199999272823, 257519.833799999207258 ], [ 354310.433700002729893, 257517.756000000983477 ], [ 354316.911200001835823, 257514.642700001597404 ], [ 354325.004900000989437, 257511.120299998670816 ], [ 354338.744499996304512, 257507.433100000023842 ], [ 354371.032999999821186, 257503.475499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02385379, "LATITUDE": 18.34736621, "OBJECTID_1": 7221, "PARCEL_NO_": "104802010200", "Tax_Legal_": "FORTUNA 4Y-2 WEST END QTR", "Name": "TRUST AGREEMENT FOR THE ROBERT DANIEL COLLINS REVO", "Address": "PO Box 9115", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61600, "Improved_V": 217000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.58993019799999, "SHAPE_Area": 2285.3716603799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349012.343299999833107, 257452.228900000452995 ], [ 348943.005800001323223, 257451.028099998831749 ], [ 348937.205200001597404, 257469.345800001174212 ], [ 348935.443300001323223, 257486.852099999785423 ], [ 349015.35809999704361, 257476.951499998569489 ], [ 349013.104599997401237, 257457.51240000128746 ], [ 349012.343299999833107, 257452.228900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901014500", "MAP": "D9-3237-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01391594, "LATITUDE": 18.34734366, "OBJECTID_1": 7360, "PARCEL_NO_": "104901014500", "Tax_Legal_": "FORTUNA 4KA-4 WEST END QTR.", "Name": "JAMES, MANUEL & MACY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.793848551, "SHAPE_Area": 1667.2681280199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350049.970299996435642, 257472.120400000363588 ], [ 350048.544699996709824, 257450.155000001192093 ], [ 350007.347199998795986, 257458.683800000697374 ], [ 350006.526500001549721, 257460.365800000727177 ], [ 350004.915700003504753, 257460.141499999910593 ], [ 349994.964800000190735, 257492.357400000095367 ], [ 350027.226300001144409, 257491.565999999642372 ], [ 350032.07320000231266, 257490.550200000405312 ], [ 350037.742600001394749, 257487.64130000025034 ], [ 350042.618199996650219, 257483.248199999332428 ], [ 350049.970299996435642, 257472.120400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02268379, "LATITUDE": 18.34726531, "OBJECTID_1": 7254, "PARCEL_NO_": "104802016300", "Tax_Legal_": "FORTUNA 4Y-9 WEST END QTR", "Name": "AUGUSTE, JOSEPHINE L.", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.81524391799999, "SHAPE_Area": 2150.7391297 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349121.256599999964237, 257445.94310000166297 ], [ 349114.127499997615814, 257430.897100001573563 ], [ 349063.193099997937679, 257446.523299999535084 ], [ 349079.821800000965595, 257482.334199998527765 ], [ 349132.354400001466274, 257468.409800000488758 ], [ 349121.256599999964237, 257445.94310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01920924, "LATITUDE": 18.34732564, "OBJECTID_1": 7290, "PARCEL_NO_": "104802022600", "Tax_Legal_": "FORTUNA 4-2-16&4-2-17 No.8 WEST END QTR.", "Name": "BARON, BRIAN J", "Address": "6804 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.675812751, "SHAPE_Area": 1137.324888 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349487.896799996495247, 257476.174899999052286 ], [ 349485.679300002753735, 257452.514299999922514 ], [ 349458.278999999165535, 257450.601300001144409 ], [ 349454.999799996614456, 257456.907299999147654 ], [ 349450.955700002610683, 257458.351799998432398 ], [ 349447.730400003492832, 257458.325399998575449 ], [ 349445.324100002646446, 257456.828099999576807 ], [ 349439.462300002574921, 257482.322399999946356 ], [ 349446.728100001811981, 257481.326400000602007 ], [ 349487.896799996495247, 257476.174899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021700", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-7", "ACRE": ".24", "LONGITUDE": -65.01809271, "LATITUDE": 18.34720146, "OBJECTID_1": 7281, "PARCEL_NO_": "104802021700", "Tax_Legal_": "FORTUNA 4-2-7 REM. WEST END QTR", "Name": "WERNICKE, WERNER & TANYA MULDROW", "Address": "PO Box 302013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.814029277, "SHAPE_Area": 1011.02713341 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349600.891999997198582, 257464.011900000274181 ], [ 349587.909800000488758, 257429.62220000103116 ], [ 349570.514700002968311, 257432.94370000064373 ], [ 349571.160999998450279, 257451.736299999058247 ], [ 349572.528999999165535, 257480.456199999898672 ], [ 349578.201999999582767, 257477.125100001692772 ], [ 349593.601099997758865, 257467.963100001215935 ], [ 349600.891999997198582, 257464.011900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021200", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-4", "ACRE": ".26", "LONGITUDE": -65.01734132, "LATITUDE": 18.34723091, "OBJECTID_1": 7276, "PARCEL_NO_": "104802021200", "Tax_Legal_": "FORTUNA REM OF 4-2-4 & 4-2-21B WEST END QTR", "Name": "WERNICKE, JOACHIM & ROSE", "Address": "447 W 91st St", "City": "Indianapolis", "State": "Indiana", "Zip": 46260, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.26474450200001, "SHAPE_Area": 1460.4189103399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349664.695299997925758, 257440.339400000870228 ], [ 349638.202200002968311, 257443.795299999415874 ], [ 349636.35360000282526, 257466.201999999582767 ], [ 349661.282799996435642, 257474.216499999165535 ], [ 349673.318099997937679, 257481.281100001186132 ], [ 349691.346500001847744, 257447.442600000649691 ], [ 349664.695299997925758, 257440.339400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802022300", "MAP": "D9-344-T62", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01883831000001, "LATITUDE": 18.34725594, "OBJECTID_1": 7287, "PARCEL_NO_": "104802022300", "Tax_Legal_": "FORTUNA 4 2 13 WEST END QTR", "Name": "WILKENS, RUDOLPH & KATHLEEN", "Address": "6107 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24400, "Improved_V": 138600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.23693346100001, "SHAPE_Area": 1278.5964415200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349509.181000001728535, 257438.774500001221895 ], [ 349484.187100000679493, 257438.358800001442432 ], [ 349485.679300002753735, 257452.514299999922514 ], [ 349487.896799996495247, 257476.174899999052286 ], [ 349529.027699999511242, 257475.4560999982059 ], [ 349528.244800001382828, 257472.70549999922514 ], [ 349523.579499997198582, 257452.402300000190735 ], [ 349521.153399996459484, 257453.226799998432398 ], [ 349517.130800001323223, 257452.138399999588728 ], [ 349511.511799998581409, 257449.137099999934435 ], [ 349509.114500001072884, 257446.584399998188019 ], [ 349509.181000001728535, 257438.774500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802022000", "MAP": "D9-344-T62", "PARCEL_NAM": "4-2-10", "ACRE": ".26", "LONGITUDE": -65.01842416, "LATITUDE": 18.34715939, "OBJECTID_1": 7284, "PARCEL_NO_": "104802022000", "Tax_Legal_": "FORTUNA 4-2-10 WEST END QTR", "Name": "ZAKERS, CARISSA", "Address": "PO Box 306973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24400, "Improved_V": 127000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.16807992700001, "SHAPE_Area": 1260.3020391699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349570.514700002968311, 257432.94370000064373 ], [ 349570.55969999730587, 257427.666700001806021 ], [ 349531.766699999570847, 257437.903900001198053 ], [ 349530.881300002336502, 257447.18470000103116 ], [ 349528.4425999969244, 257449.486800000071526 ], [ 349526.819200001657009, 257450.740100000053644 ], [ 349523.579499997198582, 257452.402300000190735 ], [ 349528.244800001382828, 257472.70549999922514 ], [ 349571.160999998450279, 257451.736299999058247 ], [ 349570.514700002968311, 257432.94370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901014200", "MAP": "D9-3237-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01462568, "LATITUDE": 18.34699841, "OBJECTID_1": 7357, "PARCEL_NO_": "104901014200", "Tax_Legal_": "FORTUNA 4KA-5 WEST END QTR.", "Name": "EDMUNDO & MILAGROS ZAYAS REVOCABLE LIVING TRUST", "Address": "PO Box 302824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64600, "Improved_V": 233000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.965940292, "SHAPE_Area": 1413.2761531599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349923.582500003278255, 257447.232400000095367 ], [ 349952.582999996840954, 257457.929499998688698 ], [ 349954.98369999974966, 257452.766800001263618 ], [ 349958.241300001740456, 257448.993700001388788 ], [ 349964.726000003516674, 257445.035999998450279 ], [ 349967.954800002276897, 257444.640299998223782 ], [ 349973.606200002133846, 257443.842099998146296 ], [ 349957.024300001561642, 257402.543200001120567 ], [ 349937.493000000715256, 257423.49269999936223 ], [ 349928.515600003302097, 257436.084800001233816 ], [ 349926.87780000269413, 257439.026700001209974 ], [ 349923.582500003278255, 257447.232400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01356635, "LATITUDE": 18.34699142, "OBJECTID_1": 7369, "PARCEL_NO_": "104901015500", "Tax_Legal_": "FORTUNA 4N-7 WESTEND QUARTER", "Name": "DEQUINTAL, DONALD R. E", "Address": "PO Box 739", "City": "Tucker", "State": "Georgia", "Zip": 30085, "Country": "United States", "Land_Value": 60500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.97639190699999, "SHAPE_Area": 1547.0999617800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350079.164800003170967, 257452.727600000798702 ], [ 350074.71169999986887, 257407.517200000584126 ], [ 350045.679099999368191, 257407.912799999117851 ], [ 350048.544699996709824, 257450.155000001192093 ], [ 350049.970299996435642, 257472.120400000363588 ], [ 350054.045000001788139, 257467.087499998509884 ], [ 350057.302699998021126, 257463.314500000327826 ], [ 350064.608000002801418, 257457.674800001084805 ], [ 350071.085500001907349, 257454.5614 ], [ 350079.164800003170967, 257452.727600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021300", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-5", "ACRE": ".17", "LONGITUDE": -65.0177584, "LATITUDE": 18.34717502, "OBJECTID_1": 7277, "PARCEL_NO_": "104802021300", "Tax_Legal_": "4-2-5 REM & 4-2-7-A FORTUNA NO.8 WEST END QTR", "Name": "WERNICKE, JOACHIM and ROSE", "Address": "447 W 91st St", "City": "Indianapolis", "State": "Indiana", "Zip": 46260, "Country": "United States", "Land_Value": 20500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.418740759, "SHAPE_Area": 824.82345703099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349638.202200002968311, 257443.795299999415874 ], [ 349616.012100003659725, 257442.499600000679493 ], [ 349604.437399998307228, 257426.466299999505281 ], [ 349600.891999997198582, 257464.011900000274181 ], [ 349608.159599997103214, 257462.804900001734495 ], [ 349618.650700002908707, 257461.835299998521805 ], [ 349625.9003000035882, 257462.739000000059605 ], [ 349636.35360000282526, 257466.201999999582767 ], [ 349638.202200002968311, 257443.795299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0158268, "LATITUDE": 18.34665582, "OBJECTID_1": 7337, "PARCEL_NO_": "104901012100", "Tax_Legal_": "FORTUNA 4 1 58 WEST END QTR", "Name": "WATTS, ALVIN K. & LAUNA J.O. (CO-TRUSTEES)", "Address": "PO Box 305137", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 87600, "Improved_V": 242000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.31804217899997, "SHAPE_Area": 3063.1390469500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349862.239100001752377, 257359.548700001090765 ], [ 349813.125900000333786, 257350.703000001609325 ], [ 349796.028599999845028, 257464.553599998354912 ], [ 349797.6233000010252, 257466.677600000053644 ], [ 349800.054799996316433, 257465.219799999147654 ], [ 349815.585100002586842, 257440.649000000208616 ], [ 349851.636500000953674, 257373.605200000107288 ], [ 349862.239100001752377, 257359.548700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02342102, "LATITUDE": 18.34693537, "OBJECTID_1": 7257, "PARCEL_NO_": "104802016600", "Tax_Legal_": "FORTUNA 4Y-6 WEST END QTR", "Name": "HENLEY, LORN V. & LUCIA IZA", "Address": "PO BOX 503041", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 83400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.17170790099999, "SHAPE_Area": 2246.0550322300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348984.798500001430511, 257372.63230000063777 ], [ 349007.780500002205372, 257419.894200000911951 ], [ 349012.343299999833107, 257452.228900000452995 ], [ 349013.104599997401237, 257457.51240000128746 ], [ 349052.718199998140335, 257445.593199998140335 ], [ 349038.461800001561642, 257415.290199998766184 ], [ 349011.277300000190735, 257388.047699999064207 ], [ 349004.835799999535084, 257386.939500000327826 ], [ 349001.599799998104572, 257388.17960000038147 ], [ 348998.405100002884865, 257384.564899999648333 ], [ 349000.843800000846386, 257382.262800000607967 ], [ 349000.890500001609325, 257376.774700000882149 ], [ 348996.902099996805191, 257371.675799999386072 ], [ 348984.798500001430511, 257372.63230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802011100", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-6", "ACRE": ".40", "LONGITUDE": -65.02202362, "LATITUDE": 18.34703852, "OBJECTID_1": 7228, "PARCEL_NO_": "104802011100", "Tax_Legal_": "FORTUNA 4-4-6 WESTEND QTR.", "Name": "DOWNING, MELVA", "Address": "PO Box 308127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67000, "Improved_V": 349000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.40011744200001, "SHAPE_Area": 1968.78963516 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349157.146099999547005, 257397.89640000090003 ], [ 349138.972099997103214, 257448.832299999892712 ], [ 349181.652699999511242, 257455.514400001615286 ], [ 349193.733000002801418, 257457.302000001072884 ], [ 349187.620600000023842, 257417.566399998962879 ], [ 349173.157300002872944, 257411.537399999797344 ], [ 349157.146099999547005, 257397.89640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802011000", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-4", "ACRE": ".40", "LONGITUDE": -65.02158713, "LATITUDE": 18.34707474, "OBJECTID_1": 7227, "PARCEL_NO_": "104802011000", "Tax_Legal_": "4-4-4 FORTUNA NO.8 WEST END QTR", "Name": "BENJAMIN, RAQUEL A & KENNETH R. (JR.)", "Address": "PO Box 10374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.211893468, "SHAPE_Area": 1718.58248682 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349242.154899999499321, 257452.632100000977516 ], [ 349229.581200003623962, 257414.110199999064207 ], [ 349208.570299997925758, 257419.426600001752377 ], [ 349196.473800003528595, 257419.538699999451637 ], [ 349187.620600000023842, 257417.566399998962879 ], [ 349193.733000002801418, 257457.302000001072884 ], [ 349242.154899999499321, 257452.632100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02380291, "LATITUDE": 18.34709335, "OBJECTID_1": 7222, "PARCEL_NO_": "104802010300", "Tax_Legal_": "FORTUNA 4Y-3 WEST END QTR", "Name": "HAZELL, BARRETT S. & CLAUDETTE", "Address": "PO Box 12394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.78181700900001, "SHAPE_Area": 1885.81321579 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349007.780500002205372, 257419.894200000911951 ], [ 348949.691899999976158, 257423.42960000038147 ], [ 348948.797399997711182, 257433.765799999237061 ], [ 348943.005800001323223, 257451.028099998831749 ], [ 349012.343299999833107, 257452.228900000452995 ], [ 349007.780500002205372, 257419.894200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802010900", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-4", "ACRE": ".40", "LONGITUDE": -65.02116535, "LATITUDE": 18.34702014, "OBJECTID_1": 7226, "PARCEL_NO_": "104802010900", "Tax_Legal_": "FORTUNA 4-4-2&5A-42 WEST END QTR", "Name": "FERNANDES, JUANITA & WALTE G", "Address": "177-07 BRINKER HOFF AVENUE", "City": "Saint Albans", "State": "New York", "Zip": 11433, "Country": "United States", "Land_Value": 39500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.88317448500001, "SHAPE_Area": 2230.3104275800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349281.849399998784065, 257431.214400000870228 ], [ 349271.629900000989437, 257400.311099998652935 ], [ 349255.465899996459484, 257404.611699998378754 ], [ 349229.581200003623962, 257414.110199999064207 ], [ 349242.154899999499321, 257452.632100000977516 ], [ 349264.648900002241135, 257462.526500001549721 ], [ 349268.694899998605251, 257460.870900001376867 ], [ 349277.602099999785423, 257456.510800000280142 ], [ 349281.849399998784065, 257431.214400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901014400", "MAP": "D9-3237-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01389197, "LATITUDE": 18.34693272, "OBJECTID_1": 7359, "PARCEL_NO_": "104901014400", "Tax_Legal_": "FORTUNA 4KA-7 WEST END QTR.", "Name": "FINCH, WILLIAM W", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 56900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.66342557600001, "SHAPE_Area": 2099.4221084300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350006.227300003170967, 257400.83500000089407 ], [ 350009.872299998998642, 257446.249899998307228 ], [ 350007.347199998795986, 257458.683800000697374 ], [ 350048.544699996709824, 257450.155000001192093 ], [ 350045.679099999368191, 257407.912799999117851 ], [ 350044.942900002002716, 257399.674199998378754 ], [ 350006.227300003170967, 257400.83500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01258017000001, "LATITUDE": 18.3469615, "OBJECTID_1": 7366, "PARCEL_NO_": "104901015200", "Tax_Legal_": "FORTUNA 4N-4 & 1/7 INT. IN 4N-8 WESTEND QTR.", "Name": "WOODCOCK, TERRY & PHILIPHIA", "Address": "PO Box 9591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.487482177, "SHAPE_Area": 1513.22655461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350178.749399997293949, 257405.624499998986721 ], [ 350148.908699996769428, 257406.224599998444319 ], [ 350152.546400003135204, 257452.483899999409914 ], [ 350154.96000000089407, 257453.136900000274181 ], [ 350157.362700000405312, 257455.056400001049042 ], [ 350157.330399997532368, 257458.855799999088049 ], [ 350181.526900000870228, 257458.209499999880791 ], [ 350178.749399997293949, 257405.624499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802011200", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-8", "ACRE": ".44", "LONGITUDE": -65.02233198, "LATITUDE": 18.3468907, "OBJECTID_1": 7229, "PARCEL_NO_": "104802011200", "Tax_Legal_": "FORTUNA 4-4-8 8 WESTEND QTR", "Name": "DORSETT, LORNA", "Address": "PO Box 305528", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58000, "Improved_V": 600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.98618950700001, "SHAPE_Area": 1766.5793751399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349157.146099999547005, 257397.89640000090003 ], [ 349147.551299996674061, 257388.31870000064373 ], [ 349138.791599996387959, 257375.370299998670816 ], [ 349112.53999999910593, 257427.928800001740456 ], [ 349114.127499997615814, 257430.897100001573563 ], [ 349121.256599999964237, 257445.94310000166297 ], [ 349138.972099997103214, 257448.832299999892712 ], [ 349157.146099999547005, 257397.89640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01289435, "LATITUDE": 18.34695835, "OBJECTID_1": 7367, "PARCEL_NO_": "104901015300", "Tax_Legal_": "FORTUNA 4N-5&1/7 INT. IN 4N-8 WESTEND QTR.", "Name": "PEARLINE V & RONALD L WOODCOCK,SR REVOC FAM TRUST", "Address": "PO Box 9591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.479961296, "SHAPE_Area": 1786.3259904199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350148.908699996769428, 257406.224599998444319 ], [ 350112.617399998009205, 257406.771999999880791 ], [ 350116.237199999392033, 257455.142000000923872 ], [ 350130.736400000751019, 257456.949400000274181 ], [ 350138.804999999701977, 257456.382199998944998 ], [ 350146.886100001633167, 257454.337400000542402 ], [ 350148.51129999756813, 257452.872999999672174 ], [ 350152.546400003135204, 257452.483899999409914 ], [ 350148.908699996769428, 257406.224599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01959984, "LATITUDE": 18.34703468, "OBJECTID_1": 7293, "PARCEL_NO_": "104802023000", "Tax_Legal_": "FORTUNA 4-2-20 WESTEND QTR", "Name": "CONNOR-LLOYD, T'WANNA", "Address": "1213 Hyridge St", "City": "Round Rock", "State": "Texas", "Zip": 78664, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.53947940399999, "SHAPE_Area": 1417.48906001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349394.58389999717474, 257449.657800000160933 ], [ 349440.55629999935627, 257448.556400001049042 ], [ 349440.588699996471405, 257444.756999999284744 ], [ 349451.155299998819828, 257434.922100000083447 ], [ 349453.604800000786781, 257431.353500001132488 ], [ 349454.465000003576279, 257425.027800001204014 ], [ 349451.25959999859333, 257422.679499998688698 ], [ 349439.168499998748302, 257422.158399999141693 ], [ 349428.700800001621246, 257420.383900001645088 ], [ 349421.460199996829033, 257418.424800001084805 ], [ 349409.408600002527237, 257413.259899999946356 ], [ 349394.58389999717474, 257449.657800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02284997, "LATITUDE": 18.34694208, "OBJECTID_1": 7259, "PARCEL_NO_": "104802016800", "Tax_Legal_": "FORUTNA 4Y-8 WEST END QTR", "Name": "ADJODHA, NICHOLAS L. & CASSAND", "Address": "1302 Waugh Dr", "City": "Houston", "State": "Texas", "Zip": 77019, "Country": "United States", "Land_Value": 61600, "Improved_V": 116600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.249103752, "SHAPE_Area": 2048.9537744 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349112.53999999910593, 257427.928800001740456 ], [ 349096.692500002682209, 257395.079599998891354 ], [ 349046.551899999380112, 257412.190000001341105 ], [ 349063.193099997937679, 257446.523299999535084 ], [ 349114.127499997615814, 257430.897100001573563 ], [ 349112.53999999910593, 257427.928800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01324101, "LATITUDE": 18.34695273, "OBJECTID_1": 7368, "PARCEL_NO_": "104901015400", "Tax_Legal_": "FORTUNA 4N-8 4N-6 & UNDV. 1/7 INT. IN", "Name": "DELORES, NANCE & OTHERS", "Address": "177 Stratford Village Way", "City": "Bluffton", "State": "South Carolina", "Zip": 299095067, "Country": "United States", "Land_Value": 45600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.06794907700001, "SHAPE_Area": 1729.81724463 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350112.617399998009205, 257406.771999999880791 ], [ 350074.71169999986887, 257407.517200000584126 ], [ 350079.164800003170967, 257452.727600000798702 ], [ 350095.29280000180006, 257452.648600000888109 ], [ 350116.237199999392033, 257455.142000000923872 ], [ 350112.617399998009205, 257406.771999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802026200", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-21", "ACRE": ".57", "LONGITUDE": -65.01722967000001, "LATITUDE": 18.34683614, "OBJECTID_1": 7320, "PARCEL_NO_": "104802026200", "Tax_Legal_": "4-2-21 & 4-2-4A FORTUNA NO.8 WEST END QTR", "Name": "WERNICKE, WERNER & TANYA MULDROW", "Address": "PO Box 302013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.29071477799999, "SHAPE_Area": 2374.9542591499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349693.41780000180006, 257436.285000000149012 ], [ 349695.572300001978874, 257424.679099999368191 ], [ 349698.122500002384186, 257409.290100000798702 ], [ 349700.661899998784065, 257395.167599998414516 ], [ 349704.023800000548363, 257379.151999998837709 ], [ 349692.688699997961521, 257384.547699999064207 ], [ 349667.615599997341633, 257393.41950000077486 ], [ 349654.689499996602535, 257396.269000001251698 ], [ 349653.125799998641014, 257396.613699998706579 ], [ 349653.232400000095367, 257408.552600000053644 ], [ 349639.051299996674061, 257433.504599999636412 ], [ 349664.695299997925758, 257440.339400000870228 ], [ 349693.41780000180006, 257436.285000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01542085, "LATITUDE": 18.34691059, "OBJECTID_1": 7338, "PARCEL_NO_": "104901012200", "Tax_Legal_": "FORTUNA 4-1-57 WEST END QTR", "Name": "ELLIS, DAISY HODGE", "Address": "19 Hamilton Ter", "City": "New York", "State": "New York", "Zip": 10031, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.47424699000001, "SHAPE_Area": 2863.5716585700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349896.531099997460842, 257404.370099999010563 ], [ 349851.469300001859665, 257393.235500000417233 ], [ 349832.618400000035763, 257428.967099998146296 ], [ 349822.802400000393391, 257445.352099999785423 ], [ 349858.281900003552437, 257445.431400001049042 ], [ 349898.14130000025034, 257445.557000000029802 ], [ 349896.531099997460842, 257404.370099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901014300", "MAP": "D9-3237-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01427394, "LATITUDE": 18.34688849, "OBJECTID_1": 7358, "PARCEL_NO_": "104901014300", "Tax_Legal_": "FORTUNA 4KA-6 WEST END QTR.", "Name": "KINTON, KATHY L", "Address": "27 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 74100, "Improved_V": 39100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.64299108500001, "SHAPE_Area": 1849.29992593 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350006.227300003170967, 257400.83500000089407 ], [ 349957.024300001561642, 257402.543200001120567 ], [ 349973.606200002133846, 257443.842099998146296 ], [ 350009.872299998998642, 257446.249899998307228 ], [ 350006.227300003170967, 257400.83500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802010700", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-1", "ACRE": ".42", "LONGITUDE": -65.02080113, "LATITUDE": 18.34686055, "OBJECTID_1": 7225, "PARCEL_NO_": "104802010700", "Tax_Legal_": "FORTUNA 4-4-1 WEST END QTR", "Name": "ROGERS, ENEE M", "Address": "46 Stony Brook Ln", "City": "New Oxford", "State": "Pennsylvania", "Zip": 17350, "Country": "United States", "Land_Value": 39500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.29195678799999, "SHAPE_Area": 1475.18811168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349271.629900000989437, 257400.311099998652935 ], [ 349281.849399998784065, 257431.214400000870228 ], [ 349311.632700003683567, 257437.368700001388788 ], [ 349317.571699999272823, 257402.798000000417233 ], [ 349317.613099999725819, 257397.943199999630451 ], [ 349316.022100001573563, 257395.396999999880791 ], [ 349313.610299997031689, 257394.532900001853704 ], [ 349308.78320000320673, 257393.22690000012517 ], [ 349294.246200002729893, 257395.852099999785423 ], [ 349281.325400002300739, 257398.068399999290705 ], [ 349271.629900000989437, 257400.311099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01887434, "LATITUDE": 18.34694912, "OBJECTID_1": 7288, "PARCEL_NO_": "104802022400", "Tax_Legal_": "FORTUNA 4 2 14 WEST END QTR", "Name": "FRANCIS, HALVOR DELANO", "Address": "PO Box 12107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25400, "Improved_V": 148200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.13004069599999, "SHAPE_Area": 801.67803193600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349482.754299998283386, 257417.237700000405312 ], [ 349484.187100000679493, 257438.358800001442432 ], [ 349509.181000001728535, 257438.774500001221895 ], [ 349512.467399999499321, 257431.624200001358986 ], [ 349516.547499999403954, 257425.958099998533726 ], [ 349519.023999996483326, 257419.223299998790026 ], [ 349519.873499996960163, 257414.164099998772144 ], [ 349513.453500002622604, 257410.522900000214577 ], [ 349482.754299998283386, 257417.237700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802022100", "MAP": "D9-344-T62", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01841119, "LATITUDE": 18.3468822, "OBJECTID_1": 7285, "PARCEL_NO_": "104802022100", "Tax_Legal_": "FORTUNA 4-2-11 8 WEST END QTR", "Name": "BRADY, JEFFREY T.", "Address": "111 Hidden Meadow Ln", "City": "Nicholasville", "State": "Kentucky", "Zip": 403568159, "Country": "United States", "Land_Value": 24400, "Improved_V": 42300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.685809546, "SHAPE_Area": 1222.43060616 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349531.766699999570847, 257437.903900001198053 ], [ 349570.55969999730587, 257427.666700001806021 ], [ 349569.188000001013279, 257399.368900001049042 ], [ 349557.887000001966953, 257400.754099998623133 ], [ 349533.65089999884367, 257406.044199999421835 ], [ 349529.55460000038147, 257413.609999999403954 ], [ 349527.886200003325939, 257420.140299998223782 ], [ 349529.392800003290176, 257432.607099998742342 ], [ 349531.786499999463558, 257435.581999998539686 ], [ 349531.766699999570847, 257437.903900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021800", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-8 REM", "ACRE": ".30", "LONGITUDE": -65.01807872000001, "LATITUDE": 18.34685949, "OBJECTID_1": 7282, "PARCEL_NO_": "104802021800", "Tax_Legal_": "FORTUNA 4-2-8 REM. WEST END QTR", "Name": "WERNICKE, WERNER & TANYA MULDROW", "Address": "PO Box 302013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.028720334, "SHAPE_Area": 905.59217412299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349581.282700002193451, 257399.4679000005126 ], [ 349569.188000001013279, 257399.368900001049042 ], [ 349570.55969999730587, 257427.666700001806021 ], [ 349570.514700002968311, 257432.94370000064373 ], [ 349604.437399998307228, 257426.466299999505281 ], [ 349604.514499999582767, 257417.419199999421835 ], [ 349604.537500001490116, 257414.7179000005126 ], [ 349594.819600000977516, 257411.092599999159575 ], [ 349594.445500001311302, 257400.645799998193979 ], [ 349581.282700002193451, 257399.4679000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021600", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-6", "ACRE": ".27", "LONGITUDE": -65.01771147, "LATITUDE": 18.34685149, "OBJECTID_1": 7280, "PARCEL_NO_": "104802021600", "Tax_Legal_": "FORTUNA ESTATE 4-2-6 WEST END QTR", "Name": "WERNICKE, WERNER & TANYA MULDROW", "Address": "PO Box 302013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22200, "Improved_V": 165400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.95499849399999, "SHAPE_Area": 1051.96581145 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349641.763300001621246, 257399.118599999696016 ], [ 349626.428999997675419, 257400.681800000369549 ], [ 349621.585699997842312, 257401.275400001555681 ], [ 349604.649599999189377, 257401.559000000357628 ], [ 349604.437399998307228, 257426.466299999505281 ], [ 349639.051299996674061, 257433.504599999636412 ], [ 349641.763300001621246, 257399.118599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802011300", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-9", "ACRE": ".49", "LONGITUDE": -65.02252941, "LATITUDE": 18.34660569, "OBJECTID_1": 7230, "PARCEL_NO_": "104802011300", "Tax_Legal_": "FORTUNA 4-4-9 8 WESTEND QTR", "Name": "DORSETT, LORNA", "Address": "PO Box 305528", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 96300, "Improved_V": 529900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.01975677300001, "SHAPE_Area": 1990.9182584800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349118.070200003683567, 257346.703000001609325 ], [ 349089.556100003421307, 257380.877900000661612 ], [ 349096.692500002682209, 257395.079599998891354 ], [ 349112.53999999910593, 257427.928800001740456 ], [ 349138.791599996387959, 257375.370299998670816 ], [ 349130.830899998545647, 257363.272799998521805 ], [ 349118.070200003683567, 257346.703000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02388191, "LATITUDE": 18.34674985, "OBJECTID_1": 7223, "PARCEL_NO_": "104802010400", "Tax_Legal_": "FORTUA 4Y-4 WEST END QTR", "Name": "BLUMENFIELD, KAFI D.", "Address": "5914 Nita Ave", "City": "WOODLAND HILLS", "State": "California", "Zip": 91367, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.440709895, "SHAPE_Area": 2449.7937313100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348984.798500001430511, 257372.63230000063777 ], [ 348940.417099997401237, 257376.279800001531839 ], [ 348948.962899997830391, 257414.346599999815226 ], [ 348949.729599997401237, 257418.996899999678135 ], [ 348949.691899999976158, 257423.42960000038147 ], [ 349007.780500002205372, 257419.894200000911951 ], [ 348984.798500001430511, 257372.63230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02308441, "LATITUDE": 18.34662149, "OBJECTID_1": 7258, "PARCEL_NO_": "104802016700", "Tax_Legal_": "FORTUNA 4Y-7 No.8 WESTEND QTR.", "Name": "ADJODHA, CASSANDRA & NICHOLAS", "Address": "1302 Waugh Dr", "City": "Houston", "State": "Texas", "Zip": 77019, "Country": "United States", "Land_Value": 78200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.98747488500001, "SHAPE_Area": 2497.3689012200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349089.556100003421307, 257380.877900000661612 ], [ 349081.62610000371933, 257365.192099999636412 ], [ 349007.391400001943111, 257370.917300000786781 ], [ 349045.76349999755621, 257410.072599999606609 ], [ 349046.551899999380112, 257412.190000001341105 ], [ 349096.692500002682209, 257395.079599998891354 ], [ 349089.556100003421307, 257380.877900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802026100", "MAP": "D9-6372-T98", "PARCEL_NAM": "4-5-2", "ACRE": ".39", "LONGITUDE": -65.01962044, "LATITUDE": 18.34655602, "OBJECTID_1": 7319, "PARCEL_NO_": "104802026100", "Tax_Legal_": "4-5-2 ESTATE FORTUNA NO.8 WEST END QTR", "Name": "HENDRICKSON, SHERRWYNA", "Address": "PO Box 502933", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 56200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.903895138, "SHAPE_Area": 1805.7315751599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349437.292599998414516, 257358.392700001597404 ], [ 349409.939099997282028, 257350.991700001060963 ], [ 349401.84179999679327, 257354.936200000345707 ], [ 349396.994999997317791, 257355.951999999582767 ], [ 349404.991499997675419, 257363.827899999916553 ], [ 349407.079599998891354, 257402.686200000345707 ], [ 349423.954599998891354, 257409.579300001263618 ], [ 349440.052100002765656, 257413.088599998503923 ], [ 349437.292599998414516, 257358.392700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802025300", "MAP": null, "PARCEL_NAM": "4-5-3", "ACRE": null, "LONGITUDE": -65.01930044, "LATITUDE": 18.34658819, "OBJECTID_1": 7312, "PARCEL_NO_": "104802025300", "Tax_Legal_": "4-5-3 ESTATE FORTUNA No. 8 WESTEND QTR.", "Name": "HENDRICKSON, SHERRWYNA", "Address": "PO Box 502933", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.47383693200001, "SHAPE_Area": 1887.6869191799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349475.569399997591972, 257408.735199999064207 ], [ 349472.610299997031689, 257377.469099998474121 ], [ 349469.570299997925758, 257355.70160000026226 ], [ 349437.292599998414516, 257358.392700001597404 ], [ 349440.052100002765656, 257413.088599998503923 ], [ 349443.277400001883507, 257413.114999998360872 ], [ 349453.761200003325939, 257412.989700000733137 ], [ 349456.183799996972084, 257412.58729999884963 ], [ 349464.259499996900558, 257411.175799999386072 ], [ 349475.569399997591972, 257408.735199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802015500", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-5", "ACRE": ".41", "LONGITUDE": -65.02178731, "LATITUDE": 18.3465822, "OBJECTID_1": 7251, "PARCEL_NO_": "104802015500", "Tax_Legal_": "FORTUNA 4-4-5 SEC A 8 WESTEND QTR.", "Name": "HENDERSON, ISAAC & IDRENA", "Address": "P.O. BOX 4361", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62000, "Improved_V": 74100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.58324887699999, "SHAPE_Area": 1885.81270496 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349213.897299997508526, 257362.052799999713898 ], [ 349196.291500002145767, 257346.287799999117851 ], [ 349164.446099996566772, 257392.889899998903275 ], [ 349177.25900000333786, 257403.33839999884367 ], [ 349186.090700000524521, 257407.843600001186132 ], [ 349195.748400002717972, 257410.033599998801947 ], [ 349206.230499997735023, 257410.11939999833703 ], [ 349213.897299997508526, 257362.052799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802015600", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-3", "ACRE": ".42", "LONGITUDE": -65.02141037, "LATITUDE": 18.34662554, "OBJECTID_1": 7252, "PARCEL_NO_": "104802015600", "Tax_Legal_": "FORTUNA 4-4-3 8 WEST END QTR", "Name": "JACOBS, RYLANDER", "Address": "PO Box 9494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63500, "Improved_V": 202400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.971908128, "SHAPE_Area": 1677.5637821099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349256.484399996697903, 257379.710999999195337 ], [ 349213.897299997508526, 257362.052799999713898 ], [ 349206.230499997735023, 257410.11939999833703 ], [ 349222.387299999594688, 257406.662999998778105 ], [ 349255.546800002455711, 257395.113200001418591 ], [ 349278.983800001442432, 257388.972199998795986 ], [ 349256.484399996697903, 257379.710999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802025900", "MAP": "D9-8019-T007", "PARCEL_NAM": "4-5A", "ACRE": "9.2", "LONGITUDE": -65.0196619, "LATITUDE": 18.34539083, "OBJECTID_1": 7317, "PARCEL_NO_": "104802025900", "Tax_Legal_": "4-5A REM ESTATE FORTUNA NO.8 WEST END QTR", "Name": "FORTUNA BEACH ESTATES LLC", "Address": "PO Box 1207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 176500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 851.25871838800003, "SHAPE_Area": 32141.444357799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349546.443499997258186, 257192.830099999904633 ], [ 349497.044299997389317, 257172.124899998307228 ], [ 349437.11599999666214, 257158.234299998730421 ], [ 349350.637999996542931, 257153.197200000286102 ], [ 349319.130800001323223, 257219.792599998414516 ], [ 349324.5574000030756, 257245.379399999976158 ], [ 349331.709899999201298, 257257.681400001049042 ], [ 349334.87219999730587, 257265.095499999821186 ], [ 349335.658699996769428, 257267.4239999987185 ], [ 349338.002199999988079, 257276.309099998325109 ], [ 349339.535700000822544, 257285.6097999997437 ], [ 349339.292900003492832, 257314.105399999767542 ], [ 349349.368600003421307, 257361.894999999552965 ], [ 349363.957699999213219, 257353.148499999195337 ], [ 349380.125299997627735, 257348.425700001418591 ], [ 349395.45610000193119, 257347.284600000828505 ], [ 349401.114600002765656, 257345.642099998891354 ], [ 349405.166000001132488, 257343.353300001472235 ], [ 349409.939099997282028, 257350.991700001060963 ], [ 349437.292599998414516, 257358.392700001597404 ], [ 349469.570299997925758, 257355.70160000026226 ], [ 349520.627400003373623, 257351.032900001853704 ], [ 349518.684600003063679, 257324.443199999630451 ], [ 349504.505999997258186, 257324.956799998879433 ], [ 349469.686300002038479, 257324.334699999541044 ], [ 349471.670699998736382, 257289.012800000607967 ], [ 349489.927000001072884, 257246.943999998271465 ], [ 349515.326999999582767, 257213.6064000017941 ], [ 349545.789099998772144, 257211.726300001144409 ], [ 349546.443499997258186, 257192.830099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0131239, "LATITUDE": 18.34602395, "OBJECTID_1": 7335, "PARCEL_NO_": "104901011900", "Tax_Legal_": "FORTUNA 4T WEST END QTR", "Name": "FORTUNA #1 LLC", "Address": "7411 Est Bovoni 1Ste.", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 259400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 573.92622588400002, "SHAPE_Area": 21358.556464400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350035.4966000020504, 257278.006999999284744 ], [ 350042.027000002563, 257363.342199999839067 ], [ 350044.942900002002716, 257399.674199998378754 ], [ 350045.679099999368191, 257407.912799999117851 ], [ 350074.71169999986887, 257407.517200000584126 ], [ 350112.617399998009205, 257406.771999999880791 ], [ 350148.908699996769428, 257406.224599998444319 ], [ 350178.749399997293949, 257405.624499998986721 ], [ 350171.271799996495247, 257242.17680000141263 ], [ 350075.273800000548363, 257246.879599999636412 ], [ 350067.178400002419949, 257250.613000001758337 ], [ 350060.681100003421307, 257256.048300001770258 ], [ 350035.4966000020504, 257278.006999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802026000", "MAP": "D9-6372-T98", "PARCEL_NAM": "4-5-1", "ACRE": ".29", "LONGITUDE": -65.01998783000001, "LATITUDE": 18.34653003, "OBJECTID_1": 7318, "PARCEL_NO_": "104802026000", "Tax_Legal_": "4-5-1 ESTATE FORTUNA NO.8 WEST END QTR", "Name": "FORTUNA BEACH ESTATES LLC", "Address": "PO Box 1207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.280866616, "SHAPE_Area": 1788.36680634 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349396.994999997317791, 257355.951999999582767 ], [ 349395.380500003695488, 257356.149900000542402 ], [ 349382.468699999153614, 257357.3108000010252 ], [ 349373.581299997866154, 257359.348999999463558 ], [ 349360.624600000679493, 257365.786800000816584 ], [ 349354.13629999756813, 257370.166700001806021 ], [ 349352.471500001847744, 257376.27479999884963 ], [ 349354.012199997901917, 257384.731100000441074 ], [ 349368.466499999165535, 257391.815499998629093 ], [ 349402.252499997615814, 257401.380100000649691 ], [ 349407.079599998891354, 257402.686200000345707 ], [ 349404.991499997675419, 257363.827899999916553 ], [ 349396.994999997317791, 257355.951999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901012300", "MAP": "D9-280-T61", "PARCEL_NAM": "4-1-59", "ACRE": ".57", "LONGITUDE": -65.01519479, "LATITUDE": 18.34647863, "OBJECTID_1": 7339, "PARCEL_NO_": "104901012300", "Tax_Legal_": "FORTUNA 4 1 59 WEST END QTR", "Name": "GUMBS, CHARLES L.", "Address": "PO BOX 304252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.296541064, "SHAPE_Area": 2645.3825100899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349915.529500000178814, 257399.012800000607967 ], [ 349910.806599996984005, 257337.781399998813868 ], [ 349898.67059999704361, 257342.537200000137091 ], [ 349890.564300000667572, 257347.537099998444319 ], [ 349884.889499999582767, 257351.079300001263618 ], [ 349875.962499998509884, 257357.761199999600649 ], [ 349870.264399997889996, 257364.047400001436472 ], [ 349864.560900002717972, 257370.96680000051856 ], [ 349859.663699999451637, 257377.892799999564886 ], [ 349851.469300001859665, 257393.235500000417233 ], [ 349896.531099997460842, 257404.370099999010563 ], [ 349915.529500000178814, 257399.012800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015900", "MAP": "G9-3031-T80", "PARCEL_NAM": "4S-4", "ACRE": ".52", "LONGITUDE": -65.0148383, "LATITUDE": 18.34637109, "OBJECTID_1": 7373, "PARCEL_NO_": "104901015900", "Tax_Legal_": "FORTUNA 4S-4 WESTEND QTR.", "Name": "FLEMING, SR. , ANTHONY O. & KAT", "Address": "PO Box 625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.242406665, "SHAPE_Area": 1798.60056543 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349944.529700003564358, 257390.835099998861551 ], [ 349942.058600001037121, 257360.835299998521805 ], [ 349939.097699999809265, 257329.780299998819828 ], [ 349910.806599996984005, 257337.781399998813868 ], [ 349915.529500000178814, 257399.012800000607967 ], [ 349944.529700003564358, 257390.835099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901012000", "MAP": "A9-6-T56", "PARCEL_NAM": "4-S REM", "ACRE": null, "LONGITUDE": -65.01420345, "LATITUDE": 18.34658926, "OBJECTID_1": 7336, "PARCEL_NO_": "104901012000", "Tax_Legal_": "FORTUNA 4-S REMAINDER WEST END QTR", "Name": "FORTUNA BAY ESTATES", "Address": "2641 West St", "City": "Falls Church", "State": "Virginia", "Zip": 22046, "Country": "United States", "Land_Value": 56000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.10603181900001, "SHAPE_Area": 2703.4094031899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350044.942900002002716, 257399.674199998378754 ], [ 350042.027000002563, 257363.342199999839067 ], [ 350015.189900003373623, 257370.90989999845624 ], [ 349981.976599998772144, 257380.275600001215935 ], [ 349944.529700003564358, 257390.835099998861551 ], [ 349915.529500000178814, 257399.012800000607967 ], [ 349896.531099997460842, 257404.370099999010563 ], [ 349915.889799997210503, 257403.684200000017881 ], [ 349923.954700000584126, 257403.539099998772144 ], [ 349957.024300001561642, 257402.543200001120567 ], [ 350006.227300003170967, 257400.83500000089407 ], [ 350044.942900002002716, 257399.674199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802015400", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-7", "ACRE": ".43", "LONGITUDE": -65.0220337, "LATITUDE": 18.34635727, "OBJECTID_1": 7250, "PARCEL_NO_": "104802015400", "Tax_Legal_": "FORTUNA 4-4-7 WEST END QTR", "Name": "STEELE, SEAN G.", "Address": "PO Box 303400", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.636846883, "SHAPE_Area": 1978.6620232299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349178.685699999332428, 257330.522799998521805 ], [ 349173.098999999463558, 257323.721999999135733 ], [ 349138.129100002348423, 257358.477400001138449 ], [ 349153.258400000631809, 257380.977099999785423 ], [ 349164.446099996566772, 257392.889899998903275 ], [ 349196.291500002145767, 257346.287799999117851 ], [ 349178.685699999332428, 257330.522799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015800", "MAP": "D9-6248-T97", "PARCEL_NAM": "4S-3", "ACRE": ".25", "LONGITUDE": -65.01452367, "LATITUDE": 18.34643917, "OBJECTID_1": 7372, "PARCEL_NO_": "104901015800", "Tax_Legal_": "FORTUNA 45-3 WESTEND QTR.", "Name": "BLYDEN, DALE E. & STEWART, KAR", "Address": "21322 Park Rock Ln", "City": "Katy", "State": "Texas", "Zip": 77450, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.155681652, "SHAPE_Area": 1029.91890476 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349981.976599998772144, 257380.275600001215935 ], [ 349980.772399999201298, 257359.885600000619888 ], [ 349973.494000002741814, 257362.359099999070168 ], [ 349971.109200000762939, 257358.32880000025034 ], [ 349964.644299998879433, 257359.964699998497963 ], [ 349962.268500000238419, 257354.879000000655651 ], [ 349942.058600001037121, 257360.835299998521805 ], [ 349944.529700003564358, 257390.835099998861551 ], [ 349981.976599998772144, 257380.275600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802024700", "MAP": "D9-6287-T97", "PARCEL_NAM": "4-6-4", "ACRE": ".547", "LONGITUDE": -65.01834233, "LATITUDE": 18.34645258, "OBJECTID_1": 7308, "PARCEL_NO_": "104802024700", "Tax_Legal_": "4-6-4 ESTATE FORTUNA #8 WEST END QUARTER", "Name": "ALCENDOR, EUGENE T.", "Address": "3290 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65900, "Improved_V": 164300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.337482787, "SHAPE_Area": 3086.84577309 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349558.774300001561642, 257391.262099999934435 ], [ 349570.073399998247623, 257390.088100001215935 ], [ 349579.749200001358986, 257390.167300000786781 ], [ 349595.024499997496605, 257391.774700000882149 ], [ 349589.037100002169609, 257345.487900000065565 ], [ 349553.493299998342991, 257348.578000001609325 ], [ 349520.627400003373623, 257351.032900001853704 ], [ 349525.352799996733665, 257398.280699998140335 ], [ 349558.774300001561642, 257391.262099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802024600", "MAP": "D9-6287-T97", "PARCEL_NAM": "4-6-3", "ACRE": ".548", "LONGITUDE": -65.01763061, "LATITUDE": 18.34640171, "OBJECTID_1": 7307, "PARCEL_NO_": "104802024600", "Tax_Legal_": "4-6-3 ESTATE FORTUNA WESTEND QTR.", "Name": "BRANNIGAN, KWODWO L. & MITZEL P", "Address": "PO Box 308542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65900, "Improved_V": 218900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.348814573, "SHAPE_Area": 3906.4202820099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349674.976800002157688, 257381.236299999058247 ], [ 349672.116499997675419, 257338.36089999973774 ], [ 349615.629699997603893, 257343.175999999046326 ], [ 349589.037100002169609, 257345.487900000065565 ], [ 349595.024499997496605, 257391.774700000882149 ], [ 349601.501599997282028, 257392.456199999898672 ], [ 349620.856700003147125, 257392.192400000989437 ], [ 349649.914499998092651, 257388.841699998825788 ], [ 349671.740699999034405, 257382.476399999111891 ], [ 349674.976800002157688, 257381.236299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-2", "ACRE": ".35", "LONGITUDE": -65.0209279, "LATITUDE": 18.346496, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.24012035499999, "SHAPE_Area": 1406.84832826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349259.965000003576279, 257349.764199998229742 ], [ 349256.484399996697903, 257379.710999999195337 ], [ 349278.983800001442432, 257388.972199998795986 ], [ 349290.293799996376038, 257386.531599998474121 ], [ 349321.772299997508526, 257382.989599999040365 ], [ 349325.013800002634525, 257381.116300001740456 ], [ 349324.237999998033047, 257377.521299999207258 ], [ 349267.988600000739098, 257354.473999999463558 ], [ 349259.965000003576279, 257349.764199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802011400", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-11", "ACRE": ".52", "LONGITUDE": -65.02277197, "LATITUDE": 18.34622643, "OBJECTID_1": 7231, "PARCEL_NO_": "104802011400", "Tax_Legal_": "FORTUNA 4-4-11 WEST END QTR", "Name": "FELIX, LELIA & EDWARD", "Address": "PO BOX 302001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.27787586100001, "SHAPE_Area": 2029.4672446699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349082.102600000798702, 257309.25620000064373 ], [ 349061.014399997889996, 257323.649099998176098 ], [ 349081.62610000371933, 257365.192099999636412 ], [ 349089.556100003421307, 257380.877900000661612 ], [ 349118.070200003683567, 257346.703000001609325 ], [ 349103.714800000190735, 257328.009300000965595 ], [ 349102.116599999368191, 257326.307500001043081 ], [ 349094.915500000119209, 257319.704599998891354 ], [ 349086.098200000822544, 257313.510800000280142 ], [ 349082.102600000798702, 257309.25620000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-4", "ACRE": ".36", "LONGITUDE": -65.02136317, "LATITUDE": 18.34633276, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.061909321, "SHAPE_Area": 1383.0200892400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349225.487800002098083, 257326.683899998664856 ], [ 349213.897299997508526, 257362.052799999713898 ], [ 349256.484399996697903, 257379.710999999195337 ], [ 349259.965000003576279, 257349.764199998229742 ], [ 349236.69879999756813, 257335.852699998766184 ], [ 349235.097000002861023, 257334.572999998927116 ], [ 349225.487800002098083, 257326.683899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0238044, "LATITUDE": 18.34581274, "OBJECTID_1": 7224, "PARCEL_NO_": "104802010500", "Tax_Legal_": "FORTUNA 4H WEST END QTR", "Name": "DOWLING, WILLIAM & MARION", "Address": "90 Broad St", "City": "New York", "State": "New York", "Zip": 10004, "Country": "United States", "Land_Value": 245100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 636.86529773899997, "SHAPE_Area": 21111.919964299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349061.014399997889996, 257323.649099998176098 ], [ 349026.140799999237061, 257252.436200000345707 ], [ 349007.118400000035763, 257213.650400001555681 ], [ 349001.540799997746944, 257205.794300001114607 ], [ 348980.787000000476837, 257180.926500000059605 ], [ 348868.447800002992153, 257305.396600000560284 ], [ 348887.783100001513958, 257307.454700000584126 ], [ 348903.878799997270107, 257311.175000000745058 ], [ 348913.52759999781847, 257314.420400001108646 ], [ 348923.14580000191927, 257321.254099998623133 ], [ 348930.325300000607967, 257330.389899998903275 ], [ 348931.905500002205372, 257334.202500000596046 ], [ 348933.475000001490116, 257339.281599998474121 ], [ 348935.805799998342991, 257349.644299998879433 ], [ 348940.417099997401237, 257376.279800001531839 ], [ 348984.798500001430511, 257372.63230000063777 ], [ 348996.902099996805191, 257371.675799999386072 ], [ 349007.391400001943111, 257370.917300000786781 ], [ 349081.62610000371933, 257365.192099999636412 ], [ 349061.014399997889996, 257323.649099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015700", "MAP": "G9-3026-T80", "PARCEL_NAM": "4S-2", "ACRE": ".54", "LONGITUDE": -65.01419051000001, "LATITUDE": 18.34615882, "OBJECTID_1": 7371, "PARCEL_NO_": "104901015700", "Tax_Legal_": "FORTUNA 4S-2 WESTEND QUARTER", "Name": "CHAMBERS, PATRICK & MARILYN JA", "Address": "PO Box 6282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65900, "Improved_V": 50700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.988268283, "SHAPE_Area": 2240.2740467200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350015.189900003373623, 257370.90989999845624 ], [ 350007.911200001835823, 257297.835099998861551 ], [ 349994.128300003707409, 257306.588199999183416 ], [ 349977.930100001394749, 257314.899399999529123 ], [ 349979.366499997675419, 257335.598299998790026 ], [ 349980.106299996376038, 257343.414799999445677 ], [ 349980.772399999201298, 257359.885600000619888 ], [ 349981.976599998772144, 257380.275600001215935 ], [ 350015.189900003373623, 257370.90989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02037021, "LATITUDE": 18.34628096, "OBJECTID_1": 7317, "PARCEL_NO_": "104802025900", "Tax_Legal_": "4-5A REM ESTATE FORTUNA NO.8 WEST END QTR", "Name": "FORTUNA BEACH ESTATES LLC", "Address": "PO Box 1207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 176500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.58562470199999, "SHAPE_Area": 290.544353097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349343.596699997782707, 257376.835400000214577 ], [ 349344.464199997484684, 257369.665300000458956 ], [ 349346.109200000762939, 257365.879099998623133 ], [ 349349.368600003421307, 257361.894999999552965 ], [ 349339.292900003492832, 257314.105399999767542 ], [ 349339.024999998509884, 257345.556099999696016 ], [ 349341.350400000810623, 257356.552000001072884 ], [ 349340.416400000452995, 257371.532000001519918 ], [ 349341.193999998271465, 257374.915899999439716 ], [ 349343.596699997782707, 257376.835400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-1", "ACRE": ".34", "LONGITUDE": -65.02066858000001, "LATITUDE": 18.34621739, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.579747991, "SHAPE_Area": 1544.20834599 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349302.193499997258186, 257314.857200000435114 ], [ 349284.94990000128746, 257351.235300000756979 ], [ 349325.938799999654293, 257367.191700000315905 ], [ 349329.964900001883507, 257367.857900001108646 ], [ 349332.396499998867512, 257366.400199998170137 ], [ 349332.461199998855591, 257358.801300000399351 ], [ 349330.900700002908707, 257352.666799999773502 ], [ 349329.395999997854233, 257339.988899998366833 ], [ 349329.489500001072884, 257329.012800000607967 ], [ 349302.193499997258186, 257314.857200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901013800", "MAP": "G9-3026-T80", "PARCEL_NAM": "4S-1", "ACRE": ".51", "LONGITUDE": -65.01391461, "LATITUDE": 18.34602739, "OBJECTID_1": 7353, "PARCEL_NO_": "104901013800", "Tax_Legal_": "FORTUNA 4S-1 WESTEND QUARTER", "Name": "JOSEPH, DALE & HYACINTH", "Address": "PO Box 306636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.91915115, "SHAPE_Area": 2235.6322772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350042.027000002563, 257363.342199999839067 ], [ 350035.4966000020504, 257278.006999999284744 ], [ 350020.072400003671646, 257290.124200001358986 ], [ 350007.911200001835823, 257297.835099998861551 ], [ 350015.189900003373623, 257370.90989999845624 ], [ 350042.027000002563, 257363.342199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-6", "ACRE": ".40", "LONGITUDE": -65.02168155, "LATITUDE": 18.3461109, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.083832449, "SHAPE_Area": 1499.3571394400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349201.51240000128746, 257301.367600001394749 ], [ 349178.685699999332428, 257330.522799998521805 ], [ 349196.291500002145767, 257346.287799999117851 ], [ 349213.897299997508526, 257362.052799999713898 ], [ 349225.487800002098083, 257326.683899998664856 ], [ 349211.137800000607967, 257307.35700000077486 ], [ 349207.136799998581409, 257303.735599998384714 ], [ 349201.51240000128746, 257301.367600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802014900", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-10", "ACRE": ".41", "LONGITUDE": -65.02227581, "LATITUDE": 18.34607809, "OBJECTID_1": 7249, "PARCEL_NO_": "104802014900", "Tax_Legal_": "FORTUNA 4-4-10 WEST END QTR", "Name": "BELLOW, TODD ALAN & KIZZY AYISHIH", "Address": "PO Box 304279", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62000, "Improved_V": 215500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.52646268500001, "SHAPE_Area": 1971.6821607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349173.098999999463558, 257323.721999999135733 ], [ 349151.544399999082088, 257298.214400000870228 ], [ 349108.626400001347065, 257319.39469999819994 ], [ 349138.129100002348423, 257358.477400001138449 ], [ 349173.098999999463558, 257323.721999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901015800", "MAP": "D9-6248-T97", "PARCEL_NAM": "4S-3-1", "ACRE": ".27", "LONGITUDE": -65.01451855000001, "LATITUDE": 18.34615242, "OBJECTID_1": 7372, "PARCEL_NO_": "104901015800", "Tax_Legal_": "FORTUNA 45-3 WESTEND QTR.", "Name": "BLYDEN, DALE E. & STEWART, KAR", "Address": "21322 Park Rock Ln", "City": "Katy", "State": "Texas", "Zip": 77450, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.63295092199999, "SHAPE_Area": 1424.4646711299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349980.772399999201298, 257359.885600000619888 ], [ 349980.106299996376038, 257343.414799999445677 ], [ 349979.366499997675419, 257335.598299998790026 ], [ 349977.930100001394749, 257314.899399999529123 ], [ 349952.842699997127056, 257325.459800001233816 ], [ 349951.2246999964118, 257326.079900000244379 ], [ 349939.097699999809265, 257329.780299998819828 ], [ 349942.058600001037121, 257360.835299998521805 ], [ 349962.268500000238419, 257354.879000000655651 ], [ 349964.644299998879433, 257359.964699998497963 ], [ 349971.109200000762939, 257358.32880000025034 ], [ 349973.494000002741814, 257362.359099999070168 ], [ 349980.772399999201298, 257359.885600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901012400", "MAP": "D9-280-T61", "PARCEL_NAM": "4-1-60", "ACRE": null, "LONGITUDE": -65.01560796, "LATITUDE": 18.34612334, "OBJECTID_1": 7340, "PARCEL_NO_": "104901012400", "Tax_Legal_": "FORTUNA 4-1-60-REM.& 4-1-58B-1 SECT A 8 WESTEND", "Name": "LETTSOME, JOSE A. &ROXANNE", "Address": "PO Box 306533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.84992552400001, "SHAPE_Area": 2284.0975309199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349813.125900000333786, 257350.703000001609325 ], [ 349862.239100001752377, 257359.548700001090765 ], [ 349863.869699999690056, 257357.451099999248981 ], [ 349868.74889999628067, 257352.635899998247623 ], [ 349874.436200000345707, 257347.616200000047684 ], [ 349876.871399998664856, 257345.736299999058247 ], [ 349876.196299999952316, 257330.320900000631809 ], [ 349875.5320999994874, 257313.63910000026226 ], [ 349812.556999996304512, 257322.833999998867512 ], [ 349814.079700000584126, 257333.401099998503923 ], [ 349813.125900000333786, 257350.703000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-3", "ACRE": ".33", "LONGITUDE": -65.02100235, "LATITUDE": 18.34605566, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.86504483600001, "SHAPE_Area": 1583.4387425499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349302.193499997258186, 257314.857200000435114 ], [ 349268.477700002491474, 257297.060499999672174 ], [ 349250.429499998688698, 257333.220899999141693 ], [ 349271.287500001490116, 257345.846099998801947 ], [ 349284.94990000128746, 257351.235300000756979 ], [ 349302.193499997258186, 257314.857200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023700", "MAP": "A9-278-T80", "PARCEL_NAM": "4-6", "ACRE": null, "LONGITUDE": -65.01781102, "LATITUDE": 18.34502909, "OBJECTID_1": 7300, "PARCEL_NO_": "104802023700", "Tax_Legal_": "FORTUNA 4-6 WEST END QTR", "Name": "DE LUGO, WINSTON", "Address": "11660 Chenault St", "City": "Los Angeles", "State": "California", "Zip": 90049, "Country": "United States", "Land_Value": 512100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1037.8529287900001, "SHAPE_Area": 50558.498382199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349671.333599999547005, 257335.610300000756979 ], [ 349670.642399996519089, 257322.094700001180172 ], [ 349682.006300002336502, 257313.321699999272823 ], [ 349705.808300003409386, 257264.331799998879433 ], [ 349710.78999999910593, 257247.484999999403954 ], [ 349693.403599999845028, 257205.968400001525879 ], [ 349711.262999996542931, 257191.9712999984622 ], [ 349718.026399999856949, 257155.296399999409914 ], [ 349735.086599998176098, 257140.448399998247623 ], [ 349747.515699997544289, 257101.286699999123812 ], [ 349740.332599997520447, 257092.573100000619888 ], [ 349733.916299998760223, 257088.509799998253584 ], [ 349731.48480000346899, 257089.967500001192093 ], [ 349729.866800002753735, 257090.587600000202656 ], [ 349728.286499999463558, 257086.774999998509884 ], [ 349717.881800003349781, 257077.612799998372793 ], [ 349710.648299999535084, 257074.809399999678135 ], [ 349702.586999997496605, 257074.532299999147654 ], [ 349694.559799998998642, 257070.244699999690056 ], [ 349692.965199999511242, 257068.120700001716614 ], [ 349687.326399996876717, 257067.441300000995398 ], [ 349678.435400001704693, 257069.901700001209974 ], [ 349669.603699997067451, 257065.39640000090003 ], [ 349643.850299999117851, 257059.486099999397993 ], [ 349639.028599999845028, 257057.546799998730421 ], [ 349638.272600002586842, 257051.629999998956919 ], [ 349636.668999999761581, 257050.5614 ], [ 349631.010399997234344, 257052.20380000025034 ], [ 349626.17790000140667, 257051.530999999493361 ], [ 349614.878799997270107, 257052.705099999904633 ], [ 349613.244599997997284, 257055.224800001829863 ], [ 349613.208599999547005, 257059.446400001645088 ], [ 349610.778899997472763, 257060.69310000166297 ], [ 349609.146499998867512, 257063.0016999989748 ], [ 349611.520499996840954, 257068.298500001430511 ], [ 349614.716899998486042, 257071.702199999243021 ], [ 349617.094499997794628, 257076.576799999922514 ], [ 349615.453100003302097, 257079.940799999982119 ], [ 349615.352399997413158, 257091.761300001293421 ], [ 349608.898299999535084, 257092.13060000166297 ], [ 349607.273100003600121, 257093.594999998807907 ], [ 349603.234399996697903, 257094.406300000846386 ], [ 349596.024300001561642, 257088.858899999409914 ], [ 349596.053099997341633, 257085.481600001454353 ], [ 349590.42509999871254, 257083.535700000822544 ], [ 349587.178199999034405, 257086.042199999094009 ], [ 349587.10809999704361, 257094.274300001561642 ], [ 349583.80009999871254, 257103.957499999552965 ], [ 349574.054300002753735, 257112.110399998724461 ], [ 349561.111900001764297, 257116.859700001776218 ], [ 349548.997400000691414, 257119.082499999552965 ], [ 349545.789099998772144, 257211.726300001144409 ], [ 349515.326999999582767, 257213.6064000017941 ], [ 349489.927000001072884, 257246.943999998271465 ], [ 349471.670699998736382, 257289.012800000607967 ], [ 349469.686300002038479, 257324.334699999541044 ], [ 349504.505999997258186, 257324.956799998879433 ], [ 349518.684600003063679, 257324.443199999630451 ], [ 349520.627400003373623, 257351.032900001853704 ], [ 349553.493299998342991, 257348.578000001609325 ], [ 349615.629699997603893, 257343.175999999046326 ], [ 349672.116499997675419, 257338.36089999973774 ], [ 349671.333599999547005, 257335.610300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01523619, "LATITUDE": 18.34610686, "OBJECTID_1": 7341, "PARCEL_NO_": "104901012600", "Tax_Legal_": "FORTUNA 4G-1 WEST END QTR", "Name": "FORTUNA BAY", "Address": "11660 Chenault St", "City": "Los Angeles", "State": "California", "Zip": 90049, "Country": "United States", "Land_Value": 1900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.837065488600004, "SHAPE_Area": 201.69653976800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349906.038900002837181, 257329.509700000286102 ], [ 349876.196299999952316, 257330.320900000631809 ], [ 349876.871399998664856, 257345.736299999058247 ], [ 349889.851499997079372, 257336.554400000721216 ], [ 349906.038900002837181, 257329.509700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023100", "MAP": "D9-6287-T97", "PARCEL_NAM": "4-6-1", "ACRE": null, "LONGITUDE": -65.01719261, "LATITUDE": 18.34609714, "OBJECTID_1": 7294, "PARCEL_NO_": "104802023100", "Tax_Legal_": "4-7-2 & 4-7-3 ESTATE FORTUNA No.8 WESTEND QUARTER", "Name": "DGS LAND DEVELOPMENT LLC", "Address": "3734 Fm 3006", "City": "Pleasanton", "State": "Texas", "Zip": 78064, "Country": "United States", "Land_Value": 189700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.001943842800003, "SHAPE_Area": 188.84524879400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349670.642399996519089, 257322.094700001180172 ], [ 349671.333599999547005, 257335.610300000756979 ], [ 349672.116499997675419, 257338.36089999973774 ], [ 349688.257200002670288, 257336.804299999028444 ], [ 349694.713100001215935, 257336.223900001496077 ], [ 349689.898599997162819, 257333.440200001001358 ], [ 349670.642399996519089, 257322.094700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-5", "ACRE": ".37", "LONGITUDE": -65.02132301, "LATITUDE": 18.3458552, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.32345185599999, "SHAPE_Area": 1742.8395781300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349268.477700002491474, 257297.060499999672174 ], [ 349240.465300001204014, 257272.344399999827147 ], [ 349214.44030000269413, 257298.307000000029802 ], [ 349216.042199999094009, 257299.58669999986887 ], [ 349219.236900001764297, 257303.201400000602007 ], [ 349228.001999996602535, 257315.516600001603365 ], [ 349230.39580000191927, 257318.491500001400709 ], [ 349232.794900000095367, 257320.833099998533726 ], [ 349239.999600000679493, 257327.013799998909235 ], [ 349250.429499998688698, 257333.220899999141693 ], [ 349268.477700002491474, 257297.060499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-8", "ACRE": ".33", "LONGITUDE": -65.02195454, "LATITUDE": 18.34587892, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.84487768400001, "SHAPE_Area": 1164.98584886 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349175.085699997842312, 257279.830800000578165 ], [ 349151.544399999082088, 257298.214400000870228 ], [ 349173.098999999463558, 257323.721999999135733 ], [ 349178.685699999332428, 257330.522799998521805 ], [ 349201.51240000128746, 257301.367600001394749 ], [ 349192.657300002872944, 257299.6064000017941 ], [ 349187.045500002801418, 257295.76069999858737 ], [ 349175.085699997842312, 257279.830800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": null, "PARCEL_NAM": "4-3", "ACRE": null, "LONGITUDE": -65.02127766, "LATITUDE": 18.34474893, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1052.0521253899999, "SHAPE_Area": 30041.439593200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349370.863499999046326, 257110.447399999946356 ], [ 349364.3699000030756, 257115.460499998182058 ], [ 349349.026500001549721, 257118.079100001603365 ], [ 349344.971600003540516, 257120.790199998766184 ], [ 349328.782399997115135, 257128.045899998396635 ], [ 349317.48870000243187, 257128.586800001561642 ], [ 349315.039099998772144, 257132.155299998819828 ], [ 349311.803099997341633, 257133.395399998873472 ], [ 349305.35080000013113, 257133.553700000047684 ], [ 349302.13459999859333, 257132.471900001168251 ], [ 349284.464000001549721, 257124.305700000375509 ], [ 349272.426899999380112, 257117.452199999243021 ], [ 349213.922100000083447, 257075.176899999380112 ], [ 349198.763999998569489, 257056.054400000721216 ], [ 349193.209700003266335, 257045.454199999570847 ], [ 349169.659400001168251, 257064.893199998885393 ], [ 349145.281199999153614, 257086.858500000089407 ], [ 349142.642899997532368, 257112.590300001204014 ], [ 349155.25620000064373, 257146.468499999493361 ], [ 349168.663199998438358, 257181.830899998545647 ], [ 349187.762999996542931, 257211.540300000458956 ], [ 349209.25110000371933, 257244.857799999415874 ], [ 349240.465300001204014, 257272.344399999827147 ], [ 349268.477700002491474, 257297.060499999672174 ], [ 349302.193499997258186, 257314.857200000435114 ], [ 349329.489500001072884, 257329.012800000607967 ], [ 349330.637500002980232, 257288.91440000012517 ], [ 349328.337200000882149, 257274.96339999884367 ], [ 349325.194700002670288, 257265.227400001138449 ], [ 349321.23139999806881, 257257.17339999973774 ], [ 349314.860100001096725, 257247.833099998533726 ], [ 349308.472499996423721, 257240.392599999904633 ], [ 349298.958599999547005, 257221.316300000995398 ], [ 349297.363899998366833, 257219.192299999296665 ], [ 349296.571999996900558, 257217.497099999338388 ], [ 349294.23759999871254, 257207.556600000709295 ], [ 349292.722099997103214, 257196.145100001245737 ], [ 349293.614699997007847, 257186.019900001585484 ], [ 349295.247100003063679, 257183.711300000548363 ], [ 349299.37219999730587, 257172.768199998885393 ], [ 349311.648500002920628, 257151.548200000077486 ], [ 349320.485500000417233, 257155.420200001448393 ], [ 349310.680299997329712, 257170.538699999451637 ], [ 349306.575000002980232, 257179.15989999845624 ], [ 349302.462499998509884, 257188.625500001013279 ], [ 349301.596900001168251, 257195.584499999880791 ], [ 349303.126800000667572, 257205.307300001382828 ], [ 349303.902500003576279, 257208.902199998497963 ], [ 349305.477399997413158, 257213.348099999129772 ], [ 349311.79839999973774, 257228.598600000143051 ], [ 349319.764499999582767, 257240.062800001353025 ], [ 349324.5574000030756, 257245.379399999976158 ], [ 349319.130800001323223, 257219.792599998414516 ], [ 349370.863499999046326, 257110.447399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802011500", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-13", "ACRE": ".53", "LONGITUDE": -65.02311311, "LATITUDE": 18.34568365, "OBJECTID_1": 7232, "PARCEL_NO_": "104802011500", "Tax_Legal_": "FORTUNA 4-4-26 NO.8 WESTEND QTR", "Name": "COX, GUYLA D & NEWTON A PETERS", "Address": "PO Box 304079", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.38876145399999, "SHAPE_Area": 1845.9875234399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349048.012000001966953, 257240.793999999761581 ], [ 349026.140799999237061, 257252.436200000345707 ], [ 349061.014399997889996, 257323.649099998176098 ], [ 349082.102600000798702, 257309.25620000064373 ], [ 349077.315099999308586, 257303.306400001049042 ], [ 349073.332099996507168, 257297.574299998581409 ], [ 349048.012000001966953, 257240.793999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01518812, "LATITUDE": 18.34578126, "OBJECTID_1": 7342, "PARCEL_NO_": "104901012700", "Tax_Legal_": "FORTUNA 4G&4-1-66 WEST END QTR", "Name": "KRIGGER JR., ROLAND A & RAKISHA A.", "Address": "7213 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.45133128500001, "SHAPE_Area": 2052.6967382900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349909.271300002932549, 257328.691799998283386 ], [ 349906.554899998009205, 257268.930100001394749 ], [ 349885.590800002217293, 257268.758499998599291 ], [ 349872.718599997460842, 257265.275699999183416 ], [ 349875.5320999994874, 257313.63910000026226 ], [ 349876.196299999952316, 257330.320900000631809 ], [ 349906.038900002837181, 257329.509700000286102 ], [ 349909.271300002932549, 257328.691799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901016100", "MAP": "D9-5853-T95", "PARCEL_NAM": "4U-1", "ACRE": ".37", "LONGITUDE": -65.01489844, "LATITUDE": 18.34575415, "OBJECTID_1": 7375, "PARCEL_NO_": "104901016100", "Tax_Legal_": "FORTUNA 4U-1&4U-2 SOUTHSIDE QTR.", "Name": "SHAPLEY, JOHN & PATRICIA", "Address": "PO Box 304319", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 127400, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.14106775499999, "SHAPE_Area": 1634.33168753 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349937.558799996972084, 257321.112900000065565 ], [ 349934.005500003695488, 257264.932900000363588 ], [ 349906.554899998009205, 257268.930100001394749 ], [ 349909.271300002932549, 257328.691799998283386 ], [ 349926.243400000035763, 257324.186599999666214 ], [ 349937.558799996972084, 257321.112900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802014600", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-12", "ACRE": ".49", "LONGITUDE": -65.02256523, "LATITUDE": 18.34575588, "OBJECTID_1": 7248, "PARCEL_NO_": "104802014600", "Tax_Legal_": "FORTUNA 4-4-12 WEST END QTR", "Name": "CREQUE, CHAYNE", "Address": "Po Box 3898", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 168600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.32210196, "SHAPE_Area": 2522.0472076800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349151.544399999082088, 257298.214400000870228 ], [ 349122.003899998962879, 257263.564399998635054 ], [ 349073.528099998831749, 257274.566700000315905 ], [ 349083.821299999952316, 257296.815699998289347 ], [ 349087.010600000619888, 257301.063700001686811 ], [ 349089.406199999153614, 257303.827500000596046 ], [ 349092.608000002801418, 257306.598000001162291 ], [ 349108.626400001347065, 257319.39469999819994 ], [ 349151.544399999082088, 257298.214400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901016100", "MAP": "D9-5853-T95", "PARCEL_NAM": "4U-2", "ACRE": ".34", "LONGITUDE": -65.01463588, "LATITUDE": 18.34568695, "OBJECTID_1": 7375, "PARCEL_NO_": "104901016100", "Tax_Legal_": "FORTUNA 4U-1&4U-2 SOUTHSIDE QTR.", "Name": "SHAPLEY, JOHN & PATRICIA", "Address": "PO Box 304319", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 127400, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.62589445899999, "SHAPE_Area": 1535.09947263 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349965.063299998641014, 257310.783300001174212 ], [ 349962.2804000005126, 257258.831500001251698 ], [ 349934.005500003695488, 257264.932900000363588 ], [ 349937.558799996972084, 257321.112900000065565 ], [ 349939.984899997711182, 257320.28830000013113 ], [ 349965.063299998641014, 257310.783300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "104802025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02045892, "LATITUDE": 18.34562753, "OBJECTID_1": 7317, "PARCEL_NO_": "104802025900", "Tax_Legal_": "4-5A REM ESTATE FORTUNA NO.8 WEST END QTR", "Name": "FORTUNA BEACH ESTATES LLC", "Address": "PO Box 1207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 176500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.14807219799999, "SHAPE_Area": 291.90580898799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349339.292900003492832, 257314.105399999767542 ], [ 349339.535700000822544, 257285.6097999997437 ], [ 349338.002199999988079, 257276.309099998325109 ], [ 349335.658699996769428, 257267.4239999987185 ], [ 349334.87219999730587, 257265.095499999821186 ], [ 349331.709899999201298, 257257.681400001049042 ], [ 349324.5574000030756, 257245.379399999976158 ], [ 349339.292900003492832, 257314.105399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02482506, "LATITUDE": 18.34512108, "OBJECTID_1": 7195, "PARCEL_NO_": "104801010800", "Tax_Legal_": "FORTUNA 4Q WEST END QUARTER", "Name": "BLUE WATER BIBLE COLLEGE", "Address": "8220 Est Botany Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 293400, "Improved_V": 916200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 650.06499587099995, "SHAPE_Area": 21439.152018500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348912.053700000047684, 257108.803199999034405 ], [ 348808.689999997615814, 257220.892299998551607 ], [ 348757.174099996685982, 257210.127099998295307 ], [ 348771.490000002086163, 257233.464499998837709 ], [ 348778.379900000989437, 257276.583999998867512 ], [ 348780.737700000405312, 257283.780499998480082 ], [ 348787.92620000243187, 257291.86089999973774 ], [ 348798.35249999910593, 257298.490100000053644 ], [ 348808.813000001013279, 257301.108800001442432 ], [ 348812.032899998128414, 257301.768500000238419 ], [ 348868.447800002992153, 257305.396600000560284 ], [ 348980.787000000476837, 257180.926500000059605 ], [ 348969.610100001096725, 257167.74720000103116 ], [ 348915.309600003063679, 257105.241300001740456 ], [ 348912.053700000047684, 257108.803199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901012800", "MAP": "D9-5853-T95", "PARCEL_NAM": "4U-3", "ACRE": ".33", "LONGITUDE": -65.014382, "LATITUDE": 18.34560079, "OBJECTID_1": 7343, "PARCEL_NO_": "104901012800", "Tax_Legal_": "FORTUNA 4U-3 WEST END QTR", "Name": "JOWERS, ADELE V. & JAMES M. JR", "Address": "P.O. BOX 4990", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.42212846000001, "SHAPE_Area": 1328.72483934 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349991.78490000218153, 257297.703099999576807 ], [ 349986.56870000064373, 257247.420099999755621 ], [ 349984.130000002682209, 257249.722199998795986 ], [ 349976.839000001549721, 257253.673300001770258 ], [ 349962.2804000005126, 257258.831500001251698 ], [ 349965.063299998641014, 257310.783300001174212 ], [ 349991.78490000218153, 257297.703099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105101010400", "MAP": "D9-4903-T90", "PARCEL_NAM": "4", "ACRE": "2.50", "LONGITUDE": -64.97777689, "LATITUDE": 18.34466462, "OBJECTID_1": 7382, "PARCEL_NO_": "105101010400", "Tax_Legal_": "JJOHN BREWERS BAY 4&5 SOUTHSIDE QTR.", "Name": "THE UNIVERSITY OF THE V. I.", "Address": "#2 JOHN BREWERS BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 317200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 452.203310429, "SHAPE_Area": 11475.7820269 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353764.242399998009205, 257229.448800001293421 ], [ 353764.683399997651577, 257229.645500000566244 ], [ 353786.781800001859665, 257265.3412000015378 ], [ 353840.101400002837181, 257259.538899999111891 ], [ 353853.025799997150898, 257256.900400001555681 ], [ 353865.15820000320673, 257252.566799998283386 ], [ 353878.926700003445148, 257245.502300001680851 ], [ 353882.979800000786781, 257243.002300001680851 ], [ 353893.521200001239777, 257236.122499998658895 ], [ 353904.098600000143051, 257225.021099999547005 ], [ 353905.75620000064373, 257219.75730000063777 ], [ 353906.657799996435642, 257208.576799999922514 ], [ 353901.958400003612041, 257192.284099999815226 ], [ 353901.304899998009205, 257174.335799999535084 ], [ 353902.955300003290176, 257169.916299998760223 ], [ 353881.661399997770786, 257113.802299998700619 ], [ 353874.311099998652935, 257124.719000000506639 ], [ 353857.209499999880791, 257144.421799998730421 ], [ 353834.433100000023842, 257167.666799999773502 ], [ 353814.111699998378754, 257186.71000000089407 ], [ 353796.243299998342991, 257201.762499999254942 ], [ 353784.888400003314018, 257209.480000000447035 ], [ 353769.446199998259544, 257223.708000000566244 ], [ 353764.242399998009205, 257229.448800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-10", "ACRE": ".33", "LONGITUDE": -65.02221561, "LATITUDE": 18.34559553, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.17306167000001, "SHAPE_Area": 1280.64123625 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349146.333599999547005, 257247.298200000077486 ], [ 349122.003899998962879, 257263.564399998635054 ], [ 349151.544399999082088, 257298.214400000870228 ], [ 349175.085699997842312, 257279.830800000578165 ], [ 349155.102300003170967, 257259.191199999302626 ], [ 349146.333599999547005, 257247.298200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-7", "ACRE": ".36", "LONGITUDE": -65.02163691, "LATITUDE": 18.34558961, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.31672686499999, "SHAPE_Area": 1727.94494134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349209.25110000371933, 257244.857799999415874 ], [ 349179.1891999989748, 257271.420699998736382 ], [ 349189.575900003314018, 257282.69370000064373 ], [ 349191.16160000115633, 257285.872999999672174 ], [ 349192.75620000064373, 257287.997000001370907 ], [ 349194.35809999704361, 257289.276700001209974 ], [ 349195.963500000536442, 257290.134199999272823 ], [ 349208.02759999781847, 257293.82149999961257 ], [ 349214.44030000269413, 257298.307000000029802 ], [ 349240.465300001204014, 257272.344399999827147 ], [ 349209.25110000371933, 257244.857799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01415525, "LATITUDE": 18.3454754, "OBJECTID_1": 7344, "PARCEL_NO_": "104901012900", "Tax_Legal_": "FORTUNA 4V 4 WEST END QTR", "Name": "JOWERS, JR , JAMES & ADELE", "Address": "P.O. BOX 4990", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47500, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.68957619, "SHAPE_Area": 1224.72828671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350017.734399996697903, 257280.605799999088049 ], [ 350004.435199998319149, 257232.578699998557568 ], [ 349986.56870000064373, 257247.420099999755621 ], [ 349991.78490000218153, 257297.703099999576807 ], [ 350017.734399996697903, 257280.605799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02280806, "LATITUDE": 18.34532337, "OBJECTID_1": 7247, "PARCEL_NO_": "104802014500", "Tax_Legal_": "FORTUNA 4-4-14 8 WEST END QTR", "Name": "KUNTZ, PHYLLIS", "Address": "PO Box 8980", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80800, "Improved_V": 197900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.35816085600001, "SHAPE_Area": 2865.1010955299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349102.999499998986721, 257222.66780000180006 ], [ 349095.083800002932549, 257205.293299999088049 ], [ 349052.181999996304512, 257224.573899999260902 ], [ 349054.534400001168251, 257232.403599999845028 ], [ 349056.112899996340275, 257236.427299998700619 ], [ 349073.528099998831749, 257274.566700000315905 ], [ 349122.003899998962879, 257263.564399998635054 ], [ 349102.999499998986721, 257222.66780000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01395308, "LATITUDE": 18.34533344, "OBJECTID_1": 7345, "PARCEL_NO_": "104901013000", "Tax_Legal_": "FORTUNA 4V 3 WEST END QTR", "Name": "LAITE, MARGARET VICTORIA and MAX ALONZO", "Address": "PO Box 305444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49700, "Improved_V": 147600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.14017368399999, "SHAPE_Area": 1183.3684120600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350044.540500000119209, 257257.604899998754263 ], [ 350015.028800003230572, 257219.577599998563528 ], [ 350011.758599996566772, 257224.828200001269579 ], [ 350004.435199998319149, 257232.578699998557568 ], [ 350017.734399996697903, 257280.605799999088049 ], [ 350044.540500000119209, 257257.604899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-9", "ACRE": ".37", "LONGITUDE": -65.02191232, "LATITUDE": 18.34531128, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.76514929000001, "SHAPE_Area": 1820.3684489499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349187.762999996542931, 257211.540300000458956 ], [ 349150.449600003659725, 257237.410500001162291 ], [ 349156.025499999523163, 257245.477699998766184 ], [ 349160.813000001013279, 257251.427499998360872 ], [ 349179.1891999989748, 257271.420699998736382 ], [ 349209.25110000371933, 257244.857799999415874 ], [ 349187.762999996542931, 257211.540300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801012700", "MAP": "A9-674-T006", "PARCEL_NAM": "4I-A", "ACRE": "14.42", "LONGITUDE": -65.02859813000001, "LATITUDE": 18.34462519, "OBJECTID_1": 7208, "PARCEL_NO_": "104801012700", "Tax_Legal_": "4I-A & 5-80 FORTUNA 8 WEST END QUARTER", "Name": "BY THE SEA RESORT PROPERTIES LLC", "Address": "2603 Oak Lawn", "City": "Dallas", "State": "Texas", "Zip": 752194021, "Country": "United States", "Land_Value": 989800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1124.48869246, "SHAPE_Area": 62590.910574699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348634.307499997317791, 257083.246500000357628 ], [ 348467.581500001251698, 257094.768100000917912 ], [ 348373.245899997651577, 257011.850099999457598 ], [ 348359.572499997913837, 257028.07660000026226 ], [ 348348.92679999768734, 257047.199000000953674 ], [ 348334.939000003039837, 257080.015099998563528 ], [ 348308.775600001215935, 257122.230799999088049 ], [ 348304.652300000190735, 257132.962799999862909 ], [ 348301.187899999320507, 257161.009899999946356 ], [ 348298.491999998688698, 257193.496300000697374 ], [ 348295.124700002372265, 257210.145100001245737 ], [ 348290.191500000655651, 257221.292700000107288 ], [ 348282.846600003540516, 257231.576099999248981 ], [ 348272.274700000882149, 257242.044300001114607 ], [ 348603.437700003385544, 257255.986200001090765 ], [ 348673.260099999606609, 257181.916000001132488 ], [ 348678.812299996614456, 257107.571899998933077 ], [ 348658.458200000226498, 257094.105900000780821 ], [ 348653.279600001871586, 257100.563499998301268 ], [ 348648.423699997365475, 257102.634700000286102 ], [ 348643.585900001227856, 257102.595100000500679 ], [ 348640.369599997997284, 257101.513399999588728 ], [ 348635.573100000619888, 257096.618900001049042 ], [ 348634.307499997317791, 257083.246500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-12", "ACRE": ".33", "LONGITUDE": -65.02244432000001, "LATITUDE": 18.34526431, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.542910154, "SHAPE_Area": 1243.02420325 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349127.302100002765656, 257209.567800000309944 ], [ 349102.999499998986721, 257222.66780000180006 ], [ 349122.003899998962879, 257263.564399998635054 ], [ 349146.333599999547005, 257247.298200000077486 ], [ 349144.735299997031689, 257245.596400000154972 ], [ 349140.770300000905991, 257237.753499999642372 ], [ 349138.399899996817112, 257232.034499999135733 ], [ 349133.673500001430511, 257218.908100001513958 ], [ 349127.302100002765656, 257209.567800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802011600", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-15", "ACRE": null, "LONGITUDE": -65.02337271, "LATITUDE": 18.34511787, "OBJECTID_1": 7233, "PARCEL_NO_": "104802011600", "Tax_Legal_": "4-4-15 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "HENLEY, KAHLIL & MAXINE", "Address": "PO Box 7964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.617071501, "SHAPE_Area": 1661.30900071 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349029.135200001299381, 257184.910799998790026 ], [ 349001.540799997746944, 257205.794300001114607 ], [ 349007.118400000035763, 257213.650400001555681 ], [ 349026.140799999237061, 257252.436200000345707 ], [ 349048.012000001966953, 257240.793999999761581 ], [ 349046.433499999344349, 257236.770300000905991 ], [ 349044.075699999928474, 257229.573800001293421 ], [ 349039.42849999666214, 257207.159800000488758 ], [ 349038.643700003623962, 257204.620299998670816 ], [ 349035.49040000140667, 257196.150699999183416 ], [ 349033.904700003564358, 257192.971400000154972 ], [ 349029.135200001299381, 257184.910799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01379286, "LATITUDE": 18.34515293, "OBJECTID_1": 7346, "PARCEL_NO_": "104901013100", "Tax_Legal_": "4V-1 ESTATE FORTUNA WEST END QTR", "Name": "LAWRENCE WILLIAM and MARY D WILLIAM", "Address": "17611 SE 192 Dr", "City": "Renton", "State": "Washington", "Zip": 98058, "Country": "United States", "Land_Value": 71300, "Improved_V": 117800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.30612378399999, "SHAPE_Area": 1223.26714163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350066.04389999806881, 257241.50560000166297 ], [ 350027.851499997079372, 257201.681099999696016 ], [ 350021.549400001764297, 257211.398299999535084 ], [ 350015.028800003230572, 257219.577599998563528 ], [ 350044.540500000119209, 257257.604899998754263 ], [ 350056.725100003182888, 257247.149999998509884 ], [ 350066.04389999806881, 257241.50560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01279682000001, "LATITUDE": 18.34509891, "OBJECTID_1": 7350, "PARCEL_NO_": "104901013500", "Tax_Legal_": "FORTUNA 4P-1 WEST END QTR.", "Name": "MILLER, CHAZMAL A", "Address": "PO Box 7733", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.04483632699998, "SHAPE_Area": 1961.6369211199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350168.413400001823902, 257199.090399999171495 ], [ 350136.191399998962879, 257195.238099999725819 ], [ 350137.786100000143051, 257197.361999999731779 ], [ 350139.351999998092651, 257202.863299999386072 ], [ 350137.606299996376038, 257218.469900000840425 ], [ 350134.330700002610683, 257224.353700000792742 ], [ 350126.199199996888638, 257232.308699999004602 ], [ 350118.107299998402596, 257235.620000001043081 ], [ 350081.747699998319149, 257244.188400000333786 ], [ 350075.273800000548363, 257246.879599999636412 ], [ 350171.271799996495247, 257242.17680000141263 ], [ 350168.413400001823902, 257199.090399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-11", "ACRE": ".37", "LONGITUDE": -65.02211796, "LATITUDE": 18.34500537, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.03604881000001, "SHAPE_Area": 1672.45644565 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349168.663199998438358, 257181.830899998545647 ], [ 349130.637100003659725, 257196.718400001525879 ], [ 349141.774400003254414, 257214.541400000452995 ], [ 349150.449600003659725, 257237.410500001162291 ], [ 349187.762999996542931, 257211.540300000458956 ], [ 349168.663199998438358, 257181.830899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01366246000001, "LATITUDE": 18.34493037, "OBJECTID_1": 7347, "PARCEL_NO_": "104901013200", "Tax_Legal_": "4V-2 ESTATE FORTUNA WEST END QTR.", "Name": "BRICE, ARRON & IRENE GUENDEL SANCHEZ", "Address": "4362 Longshore Way S", "City": "Naples", "State": "Florida", "Zip": 34119, "Country": "United States", "Land_Value": 68800, "Improved_V": 175700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.88084196099999, "SHAPE_Area": 1630.7724776 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350076.972800001502037, 257236.760999999940395 ], [ 350053.362400002777576, 257168.595600001513958 ], [ 350045.256099998950958, 257173.595499999821186 ], [ 350033.805900000035763, 257192.500199999660254 ], [ 350027.851499997079372, 257201.681099999696016 ], [ 350066.04389999806881, 257241.50560000166297 ], [ 350068.072800002992153, 257240.276700001209974 ], [ 350070.504299998283386, 257238.818999998271465 ], [ 350076.972800001502037, 257236.760999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01334685, "LATITUDE": 18.3448795, "OBJECTID_1": 7352, "PARCEL_NO_": "104901013700", "Tax_Legal_": "FORTUNA 4P-3 WEST END QTR.", "Name": "LAWRENCE, WYCLIFFE", "Address": "ALTONA #200", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 128700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.380123123, "SHAPE_Area": 3015.1243228500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350066.520900003612041, 257158.296399999409914 ], [ 350059.9983000010252, 257152.441500000655651 ], [ 350057.505500003695488, 257155.541700001806021 ], [ 350053.362400002777576, 257168.595600001513958 ], [ 350076.972800001502037, 257236.760999999940395 ], [ 350081.82150000333786, 257235.534099999815226 ], [ 350116.570200003683567, 257226.741500001400709 ], [ 350121.42790000140667, 257224.459199998527765 ], [ 350125.488200001418591, 257221.114999998360872 ], [ 350128.772799998521805, 257214.175799999386072 ], [ 350066.520900003612041, 257158.296399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802014000", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-16", "ACRE": ".53", "LONGITUDE": -65.02304405, "LATITUDE": 18.34480777, "OBJECTID_1": 7246, "PARCEL_NO_": "104802014000", "Tax_Legal_": "FORTUNA 4-4-16 WEST END QTR", "Name": "DURAND, DANTON & AMY & TODD & AYISHIH BELLEW", "Address": "PO Box 304279", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64200, "Improved_V": 308400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.682838879, "SHAPE_Area": 2826.3790422500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349084.000399999320507, 257181.137899998575449 ], [ 349068.968199998140335, 257147.239900000393391 ], [ 349024.468199998140335, 257164.81870000064373 ], [ 349040.418200001120567, 257185.636399999260902 ], [ 349044.381399996578693, 257193.690400000661612 ], [ 349045.171499997377396, 257195.596700001507998 ], [ 349048.317699998617172, 257204.910599999129772 ], [ 349049.098800003528595, 257207.872299998998642 ], [ 349052.181999996304512, 257224.573899999260902 ], [ 349095.083800002932549, 257205.293299999088049 ], [ 349084.000399999320507, 257181.137899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010700", "MAP": "D9-36-T52", "PARCEL_NAM": "4A", "ACRE": null, "LONGITUDE": -65.02543849, "LATITUDE": 18.34452954, "OBJECTID_1": 7194, "PARCEL_NO_": "104801010700", "Tax_Legal_": "FORTUNA 4A No.8 WESTEND QUARTER", "Name": "WILLIS, OWEN L. JR", "Address": "PO Box 887", "City": "Martinez", "State": "California", "Zip": 94553, "Country": "United States", "Land_Value": 229100, "Improved_V": 276100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 484.44107338200001, "SHAPE_Area": 12520.536394700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348804.819600000977516, 257107.292300000786781 ], [ 348741.963200002908707, 257102.555900000035763 ], [ 348743.307899996638298, 257134.019900001585484 ], [ 348743.2449000030756, 257141.407600000500679 ], [ 348744.009900003671646, 257146.269099999219179 ], [ 348751.032899998128414, 257173.768699999898672 ], [ 348751.806900002062321, 257177.574700001627207 ], [ 348757.174099996685982, 257210.127099998295307 ], [ 348808.689999997615814, 257220.892299998551607 ], [ 348912.053700000047684, 257108.803199999034405 ], [ 348804.819600000977516, 257107.292300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-14", "ACRE": ".33", "LONGITUDE": -65.02262739, "LATITUDE": 18.34489947, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.326074624, "SHAPE_Area": 1251.19497406 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349109.921099998056889, 257167.417899999767542 ], [ 349084.000399999320507, 257181.137899998575449 ], [ 349095.083800002932549, 257205.293299999088049 ], [ 349102.999499998986721, 257222.66780000180006 ], [ 349127.302100002765656, 257209.567800000309944 ], [ 349125.712899997830391, 257206.810600001364946 ], [ 349117.78999999910593, 257190.2804000005126 ], [ 349114.62950000166893, 257182.655200000852346 ], [ 349112.269900001585484, 257175.669799998402596 ], [ 349109.921099998056889, 257167.417899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802011700", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-17", "ACRE": ".55", "LONGITUDE": -65.02363729, "LATITUDE": 18.34473589, "OBJECTID_1": 7234, "PARCEL_NO_": "104802011700", "Tax_Legal_": "4-4-17 ESTATE FORTUNA No.8 WESTEND QUATER", "Name": "ROGERS, KENTH W", "Address": "PO Box 9398", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.287553831, "SHAPE_Area": 1722.1599036099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348991.560400001704693, 257146.817499998956919 ], [ 348969.610100001096725, 257167.74720000103116 ], [ 348980.787000000476837, 257180.926500000059605 ], [ 349001.540799997746944, 257205.794300001114607 ], [ 349029.135200001299381, 257184.910799998790026 ], [ 349017.967299997806549, 257170.676100000739098 ], [ 348991.560400001704693, 257146.817499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-13", "ACRE": ".35", "LONGITUDE": -65.02227559000001, "LATITUDE": 18.34468511, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.24119484299999, "SHAPE_Area": 1544.2059521799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349155.25620000064373, 257146.468499999493361 ], [ 349118.034599997103214, 257161.573699999600649 ], [ 349122.730400003492832, 257178.288499999791384 ], [ 349130.637100003659725, 257196.718400001525879 ], [ 349168.663199998438358, 257181.830899998545647 ], [ 349155.25620000064373, 257146.468499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01274313, "LATITUDE": 18.34458301, "OBJECTID_1": 7351, "PARCEL_NO_": "104901013600", "Tax_Legal_": "FORTUNA 4P-2 WEST END QTR.", "Name": "CONNOR, FRANKLIN & JANICE", "Address": "PO Box 306341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61600, "Improved_V": 86000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.678162697, "SHAPE_Area": 2035.3436336499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350136.191399998962879, 257195.238099999725819 ], [ 350168.413400001823902, 257199.090399999171495 ], [ 350164.989600002765656, 257127.712699998170137 ], [ 350156.100400000810623, 257129.962000001221895 ], [ 350143.859999999403954, 257146.960400000214577 ], [ 350137.348399996757507, 257154.084300000220537 ], [ 350128.416000001132488, 257161.399399999529123 ], [ 350125.959299996495247, 257165.812300000339746 ], [ 350126.704499997198582, 257172.995600000023842 ], [ 350136.191399998962879, 257195.238099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901016300", "MAP": "D9-7342-T004", "PARCEL_NAM": "4P-4-1", "ACRE": null, "LONGITUDE": -65.01324512, "LATITUDE": 18.34463304, "OBJECTID_1": 7377, "PARCEL_NO_": "104901016300", "Tax_Legal_": "4P-4-1 FORTUNA #8 WEST END QTR", "Name": "CARTY, RADMUR E. & DARRYL SYLVESTER", "Address": "PO BOX 303265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.36472075200001, "SHAPE_Area": 1648.89824763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350118.639600001275539, 257173.140700001269579 ], [ 350065.7179000005126, 257138.088199999183416 ], [ 350063.266500003635883, 257141.867800001055002 ], [ 350062.395499996840954, 257149.460099998861551 ], [ 350059.9983000010252, 257152.441500000655651 ], [ 350066.520900003612041, 257158.296399999409914 ], [ 350128.772799998521805, 257214.175799999386072 ], [ 350130.462700001895428, 257205.11259999871254 ], [ 350127.313000001013279, 257196.220899999141693 ], [ 350118.618000000715256, 257175.673599999397993 ], [ 350118.639600001275539, 257173.140700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-16", "ACRE": ".35", "LONGITUDE": -65.02277277, "LATITUDE": 18.344529, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.74777730599999, "SHAPE_Area": 1349.57350995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349102.201399996876717, 257127.035900000482798 ], [ 349067.380699999630451, 257144.271600000560284 ], [ 349068.968199998140335, 257147.239900000393391 ], [ 349084.000399999320507, 257181.137899998575449 ], [ 349109.921099998056889, 257167.417899999767542 ], [ 349106.045999996364117, 257149.021099999547005 ], [ 349102.201399996876717, 257127.035900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802017000", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-19", "ACRE": ".58", "LONGITUDE": -65.02402193, "LATITUDE": 18.34433587, "OBJECTID_1": 7261, "PARCEL_NO_": "104802017000", "Tax_Legal_": "4-4-19 FORTUNA NO.8 WESTEND QTR", "Name": "THOMPSON FRANCIS, BARBARA", "Address": "PO BOX 11675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 117600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.41854900199999, "SHAPE_Area": 2133.12310591 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348980.557899996638298, 257113.163600001484156 ], [ 348915.309600003063679, 257105.241300001740456 ], [ 348969.610100001096725, 257167.74720000103116 ], [ 348991.560400001704693, 257146.817499998956919 ], [ 348981.956600002944469, 257138.295099999755621 ], [ 348978.770900003612041, 257133.625 ], [ 348977.237400002777576, 257124.324299998581409 ], [ 348980.557899996638298, 257113.163600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802013600", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-18", "ACRE": ".33", "LONGITUDE": -65.02336907, "LATITUDE": 18.34435611, "OBJECTID_1": 7245, "PARCEL_NO_": "104802013600", "Tax_Legal_": "FORTUNA 4-4-18 WEST END QTR", "Name": "KRIGGER, MARILYN F.", "Address": "PO Box 304099", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 80800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.249398117, "SHAPE_Area": 2924.4151526400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349067.380699999630451, 257144.271600000560284 ], [ 349053.133199997246265, 257112.913199998438358 ], [ 348990.235500000417233, 257113.031700000166893 ], [ 348989.413000002503395, 257114.924800001084805 ], [ 348987.75900000333786, 257119.766399998217821 ], [ 348986.927500002086163, 257122.714899998158216 ], [ 348986.869999997317791, 257129.469399999827147 ], [ 348987.663699999451637, 257130.953600000590086 ], [ 349024.468199998140335, 257164.81870000064373 ], [ 349068.968199998140335, 257147.239900000393391 ], [ 349067.380699999630451, 257144.271600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "D9-340-T62", "PARCEL_NAM": "4-3-15", "ACRE": ".33", "LONGITUDE": -65.02238748000001, "LATITUDE": 18.3443628, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.74753902399999, "SHAPE_Area": 1418.3375820199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349142.642899997532368, 257112.590300001204014 ], [ 349111.130199998617172, 257120.142900001257658 ], [ 349114.166599996387959, 257142.332499999552965 ], [ 349118.034599997103214, 257161.573699999600649 ], [ 349155.25620000064373, 257146.468499999493361 ], [ 349142.642899997532368, 257112.590300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "G9-654-T62", "PARCEL_NAM": "4-3-18", "ACRE": ".36", "LONGITUDE": -65.02288001, "LATITUDE": 18.34422988, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.65889178899999, "SHAPE_Area": 1310.25570634 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349098.398199997842312, 257100.195900000631809 ], [ 349053.133199997246265, 257112.913199998438358 ], [ 349067.380699999630451, 257144.271600000560284 ], [ 349102.201399996876717, 257127.035900000482798 ], [ 349101.494000002741814, 257115.419900000095367 ], [ 349099.947899997234344, 257107.596799999475479 ], [ 349098.365900002419949, 257103.995299998670816 ], [ 349098.398199997842312, 257100.195900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105101010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97632991, "LATITUDE": 18.34253889, "OBJECTID_1": 7380, "PARCEL_NO_": "105101010200", "Tax_Legal_": "JOHN BREWERS BAY 1 WEST END QTR", "Name": "BOARD OF TRUSTEES, UVI", "Address": "1 JOHN BREWERS BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1409600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 922.39996546500004, "SHAPE_Area": 31777.043756399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354132.831299997866154, 256878.799899999052286 ], [ 354123.94030000269413, 256881.260299999266863 ], [ 354114.253700003027916, 256882.447500001639128 ], [ 354105.386100001633167, 256882.163899999111891 ], [ 354098.145499996840954, 256880.204799998551607 ], [ 354087.717399999499321, 256873.78660000115633 ], [ 354081.326200000941753, 256866.768199998885393 ], [ 354078.941399998962879, 256862.737900000065565 ], [ 353976.789700001478195, 256832.559900000691414 ], [ 353973.440399996936321, 256847.097899999469519 ], [ 353963.999099999666214, 256914.148400001227856 ], [ 353957.34179999679327, 256938.369699999690056 ], [ 353952.241400003433228, 256969.147599998861551 ], [ 353944.799400001764297, 256990.829300001263618 ], [ 353930.006999999284744, 257023.427700001746416 ], [ 353923.445000000298023, 257036.461800001561642 ], [ 353917.725299999117851, 257045.280900001525879 ], [ 353904.572599999606609, 257074.726399999111891 ], [ 353894.744000002741814, 257092.588899999856949 ], [ 353881.661399997770786, 257113.802299998700619 ], [ 353902.955300003290176, 257169.916299998760223 ], [ 353904.618299998342991, 257164.019299998879433 ], [ 353908.707400001585484, 257157.297800000756979 ], [ 353911.151500001549721, 257154.362500000745058 ], [ 354148.113499999046326, 256883.357999999076128 ], [ 354132.831299997866154, 256878.799899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901014700", "MAP": "D9-3851-T87", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0131651, "LATITUDE": 18.34404222, "OBJECTID_1": 7362, "PARCEL_NO_": "104901014700", "Tax_Legal_": "4P-5 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "EDMUNDO & MILAGROS ZAYAS REVOCABLE LIVING TRUST", "Address": "PO Box 302824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 113400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.35964035799998, "SHAPE_Area": 3605.0887098100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350150.630599997937679, 257109.441199999302626 ], [ 350075.216700002551079, 257064.28319999948144 ], [ 350072.765399999916553, 257068.062800001353025 ], [ 350075.157300002872944, 257071.248799998313189 ], [ 350074.234099999070168, 257084.96229999884963 ], [ 350070.042499996721745, 257103.715300001204014 ], [ 350066.745300002396107, 257112.132100000977516 ], [ 350065.119699999690056, 257116.010000001639128 ], [ 350133.372100003063679, 257144.579199999570847 ], [ 350135.024800002574921, 257142.877300001680851 ], [ 350139.099500000476837, 257137.844399999827147 ], [ 350142.366099998354912, 257133.015999998897314 ], [ 350145.643500000238419, 257126.921100001782179 ], [ 350150.630599997937679, 257109.441199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802013300", "MAP": "G9-654-T62", "PARCEL_NAM": "4-3-17", "ACRE": ".32", "LONGITUDE": -65.0224521, "LATITUDE": 18.34403655, "OBJECTID_1": 7243, "PARCEL_NO_": "104802013300", "Tax_Legal_": "FORTUNA 4-3-17 8 WEST END QTR", "Name": "DE LUGO, EVELYN, SUZANNE M. & EVA M. TANTILLO", "Address": "10643 Chillingham Dr", "City": "Las Vegas", "State": "Nevada", "Zip": 89123, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.374537167, "SHAPE_Area": 1156.4747783099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349145.281199999153614, 257086.858500000089407 ], [ 349107.425899997353554, 257081.693500000983477 ], [ 349106.585400000214577, 257085.697399999946356 ], [ 349107.289200000464916, 257097.735500000417233 ], [ 349109.576899997889996, 257113.164099998772144 ], [ 349111.130199998617172, 257120.142900001257658 ], [ 349142.642899997532368, 257112.590300001204014 ], [ 349145.281199999153614, 257086.858500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802017100", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-20", "ACRE": ".55", "LONGITUDE": -65.02402514000001, "LATITUDE": 18.34397641, "OBJECTID_1": 7262, "PARCEL_NO_": "104802017100", "Tax_Legal_": "4-4-20 FORTUNA NO.8 WESTEND QTR", "Name": "WILLIAMS, KELLY A & JOYETTE D", "Address": "PO Box 304079", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.79222953300001, "SHAPE_Area": 2207.7637006199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348993.728699997067451, 257081.607299998402596 ], [ 348952.741599999368191, 257065.439800001680851 ], [ 348934.839100003242493, 257084.50279999896884 ], [ 348915.309600003063679, 257105.241300001740456 ], [ 348980.557899996638298, 257113.163600001484156 ], [ 348981.387599997222424, 257110.426100000739098 ], [ 348983.855099998414516, 257104.746800001710653 ], [ 348986.300999999046326, 257101.600400000810623 ], [ 348993.728699997067451, 257081.607299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802013500", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-21", "ACRE": ".61", "LONGITUDE": -65.02336124, "LATITUDE": 18.34394799, "OBJECTID_1": 7244, "PARCEL_NO_": "104802013500", "Tax_Legal_": "FORTUNA 4-4-21 WEST END QTR", "Name": "WILLIAMS, THERESA E.", "Address": "PO Box 304581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85200, "Improved_V": 135000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.3997275, "SHAPE_Area": 2854.12169288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349065.549800001084805, 257075.229100000113249 ], [ 349014.906800001859665, 257056.660500001162291 ], [ 349009.991599999368191, 257065.697299998253584 ], [ 349009.975400000810623, 257067.596999999135733 ], [ 349008.346600003540516, 257069.483500000089407 ], [ 349005.056599996984005, 257077.056000001728535 ], [ 348996.80290000140667, 257099.36430000141263 ], [ 348990.235500000417233, 257113.031700000166893 ], [ 349053.133199997246265, 257112.913199998438358 ], [ 349065.549800001084805, 257075.229100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "G9-654-T62", "PARCEL_NAM": "4-3-20", "ACRE": ".37", "LONGITUDE": -65.02289129, "LATITUDE": 18.34393516, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.176391569, "SHAPE_Area": 1428.3823727700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349101.880599997937679, 257070.037999998778105 ], [ 349068.850599996745586, 257066.390099998563528 ], [ 349065.549800001084805, 257075.229100000113249 ], [ 349053.133199997246265, 257112.913199998438358 ], [ 349098.398199997842312, 257100.195900000631809 ], [ 349097.733999997377396, 257083.513999998569489 ], [ 349100.210500001907349, 257076.77930000051856 ], [ 349101.880599997937679, 257070.037999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010600", "MAP": "D9-387-T63", "PARCEL_NAM": "4B-2", "ACRE": "1.25", "LONGITUDE": -65.02497451000001, "LATITUDE": 18.3439543, "OBJECTID_1": 7193, "PARCEL_NO_": "104801010600", "Tax_Legal_": "FORTUNA 4B WEST END QUARTER", "Name": "DCPVI LLC", "Address": "821 S Linwood Ave", "City": "CUSHING", "State": "Oklahoma", "Zip": 74023, "Country": "United States", "Land_Value": 255300, "Improved_V": 637800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.027920655, "SHAPE_Area": 3889.4110421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348934.839100003242493, 257084.50279999896884 ], [ 348878.377400003373623, 257086.362799998372793 ], [ 348868.008699998259544, 257072.978999998420477 ], [ 348826.274599999189377, 257049.839299999177456 ], [ 348804.819600000977516, 257107.292300000786781 ], [ 348912.053700000047684, 257108.803199999034405 ], [ 348915.309600003063679, 257105.241300001740456 ], [ 348934.839100003242493, 257084.50279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010600", "MAP": "D9-7855-T006", "PARCEL_NAM": "4B", "ACRE": null, "LONGITUDE": -65.02521534, "LATITUDE": 18.34368251, "OBJECTID_1": 7193, "PARCEL_NO_": "104801010600", "Tax_Legal_": "FORTUNA 4B WEST END QUARTER", "Name": "DCPVI LLC", "Address": "821 S Linwood Ave", "City": "CUSHING", "State": "Oklahoma", "Zip": 74023, "Country": "United States", "Land_Value": 255300, "Improved_V": 637800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 646.27894015499999, "SHAPE_Area": 10654.8128557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348741.963200002908707, 257102.555900000035763 ], [ 348804.819600000977516, 257107.292300000786781 ], [ 348826.274599999189377, 257049.839299999177456 ], [ 348868.008699998259544, 257072.978999998420477 ], [ 348878.377400003373623, 257086.362799998372793 ], [ 348934.839100003242493, 257084.50279999896884 ], [ 348952.741599999368191, 257065.439800001680851 ], [ 348967.39190000295639, 257049.516600001603365 ], [ 348890.027199998497963, 257044.028299998492002 ], [ 348830.390699997544289, 257039.95160000026226 ], [ 348849.27929999679327, 256999.787300001829863 ], [ 348829.148500002920628, 256996.456199999898672 ], [ 348822.678199999034405, 256998.72520000115037 ], [ 348761.069399997591972, 257036.851100001484156 ], [ 348762.660400003194809, 257039.397300001233816 ], [ 348761.810999996960163, 257044.456599999219179 ], [ 348760.148000001907349, 257050.35359999909997 ], [ 348758.499399997293949, 257054.561999998986721 ], [ 348751.172499999403954, 257062.734600000083447 ], [ 348745.443800002336502, 257072.609099999070168 ], [ 348742.956500001251698, 257080.610300000756979 ], [ 348742.094400003552437, 257087.147199999541044 ], [ 348741.963200002908707, 257102.555900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901013300", "MAP": "D9-3851-T87", "PARCEL_NAM": "4P-6", "ACRE": "1.25", "LONGITUDE": -65.01293936, "LATITUDE": 18.34347368, "OBJECTID_1": 7348, "PARCEL_NO_": "104901013300", "Tax_Legal_": "FORTUNA 4P-6 WEST END QTR", "Name": "WASHINGTON, GARY R and ANGELA R", "Address": "130 N Third Ave", "City": "Durant", "State": "Oklahoma", "Zip": 74701, "Country": "United States", "Land_Value": 202300, "Improved_V": 413200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 443.904935502, "SHAPE_Area": 7184.0258937400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350157.517300002276897, 256963.631900001317263 ], [ 350150.240800000727177, 256965.894299998879433 ], [ 350146.17679999768734, 256969.660799998790026 ], [ 350143.723700001835823, 256973.651500001549721 ], [ 350142.897600002586842, 256975.966699998825788 ], [ 350149.272600002586842, 256984.884799998253584 ], [ 350145.206900000572205, 256988.862300001084805 ], [ 350141.216700002551079, 256983.974500000476837 ], [ 350133.182300001382828, 256980.531300000846386 ], [ 350130.734600000083447, 256983.888700000941753 ], [ 350125.902099996805191, 256983.215900000184774 ], [ 350124.284100003540516, 256983.835999999195337 ], [ 350119.37610000371933, 256992.028400000184774 ], [ 350123.387900002300739, 256994.383299998939037 ], [ 350129.024899996817112, 256995.273800000548363 ], [ 350132.237499997019768, 256996.777800001204014 ], [ 350132.2195999994874, 256998.8885000012815 ], [ 350127.34570000320673, 257003.070500001311302 ], [ 350116.008799999952316, 257008.677299998700619 ], [ 350115.162900000810623, 257013.314399998635054 ], [ 350113.537699997425079, 257014.7787000015378 ], [ 350111.928700000047684, 257014.343400001525879 ], [ 350111.14750000089407, 257011.381700001657009 ], [ 350106.311499997973442, 257011.131000000983477 ], [ 350103.883500002324581, 257012.166600000113249 ], [ 350103.034100003540516, 257017.225900001823902 ], [ 350107.049500003457069, 257019.158599998801947 ], [ 350103.80799999833107, 257021.031899999827147 ], [ 350092.433300003409386, 257031.071299999952316 ], [ 350090.799099996685982, 257033.591099999845028 ], [ 350090.748800002038479, 257039.501299999654293 ], [ 350089.928099997341633, 257041.183299999684095 ], [ 350087.485799998044968, 257043.907499998807907 ], [ 350080.184000000357628, 257049.125100001692772 ], [ 350079.36150000244379, 257051.018199998885393 ], [ 350079.327299997210503, 257055.0287000015378 ], [ 350080.927400000393391, 257056.519499998539686 ], [ 350080.903999999165535, 257059.2635000012815 ], [ 350075.216700002551079, 257064.28319999948144 ], [ 350150.630599997937679, 257109.441199999302626 ], [ 350164.345100000500679, 257108.708999998867512 ], [ 350157.517300002276897, 256963.631900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02673371, "LATITUDE": 18.34358354, "OBJECTID_1": 7190, "PARCEL_NO_": "104801010200", "Tax_Legal_": "FORTUNA 4E WEST END QUARTER", "Name": "THE NATIONAL SPIRITUAL", "Address": "P.O. BOX 2488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.78587737699999, "SHAPE_Area": 2714.7450149599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348712.417400002479553, 257011.864100001752377 ], [ 348652.625900000333786, 257028.461399998515844 ], [ 348651.454099997878075, 257030.887699998915195 ], [ 348645.664200000464916, 257047.938900001347065 ], [ 348643.104999996721745, 257064.383299998939037 ], [ 348644.516199998557568, 257088.037300001829863 ], [ 348644.4712999984622, 257093.314300000667572 ], [ 348646.888400003314018, 257093.545200001448393 ], [ 348663.984600000083447, 257074.475600000470877 ], [ 348678.618699997663498, 257060.452100001275539 ], [ 348694.026799999177456, 257050.234600000083447 ], [ 348704.5574000030756, 257044.621300000697374 ], [ 348712.417400002479553, 257011.864100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802013200", "MAP": "G9-654-T62", "PARCEL_NAM": "4-3-19", "ACRE": ".33", "LONGITUDE": -65.02232694, "LATITUDE": 18.34374193, "OBJECTID_1": 7242, "PARCEL_NO_": "104802013200", "Tax_Legal_": "4-3-19 ESTATE FORTUNA No.8 WEST END", "Name": "MENDOZA, RICARDO A", "Address": "169 Mark Twain Ln", "City": "Rotonda West", "State": "Florida", "Zip": 33947, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.38707555100001, "SHAPE_Area": 1572.7160392599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349169.659400001168251, 257064.893199998885393 ], [ 349140.829999998211861, 257041.436900001019239 ], [ 349115.631099998950958, 257065.084300000220537 ], [ 349110.728500001132488, 257072.643500000238419 ], [ 349107.425899997353554, 257081.693500000983477 ], [ 349145.281199999153614, 257086.858500000089407 ], [ 349169.659400001168251, 257064.893199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802017200", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-22", "ACRE": ".43", "LONGITUDE": -65.02377528, "LATITUDE": 18.34363898, "OBJECTID_1": 7263, "PARCEL_NO_": "104802017200", "Tax_Legal_": "4-4-22 FORTUNA NO.8 WESTEND QTR", "Name": "LAUREL JOSEPH &, NERESSA FORDE", "Address": "PO Box 7781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.022002724, "SHAPE_Area": 1692.8809758 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349012.588500000536442, 257044.820300001651049 ], [ 348990.180799998342991, 257024.794100001454353 ], [ 348967.39190000295639, 257049.516600001603365 ], [ 348952.741599999368191, 257065.439800001680851 ], [ 348993.728699997067451, 257081.607299998402596 ], [ 348997.839299999177456, 257072.352899998426437 ], [ 348999.484300002455711, 257068.566599998623133 ], [ 349000.306800000369549, 257066.673500001430511 ], [ 349002.790500000119209, 257059.094500001519918 ], [ 349007.698499999940395, 257050.901999998837709 ], [ 349012.588500000536442, 257044.820300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802013000", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-23", "ACRE": ".58", "LONGITUDE": -65.02311181, "LATITUDE": 18.34354931, "OBJECTID_1": 7241, "PARCEL_NO_": "104802013000", "Tax_Legal_": "FORTUNA 4-4-23 & 25 8 WESTEND QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 176400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.858496113, "SHAPE_Area": 2475.92322711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349092.478200003504753, 257037.874800000339746 ], [ 349058.825300000607967, 257012.69029999896884 ], [ 349040.933499999344349, 257030.486800000071526 ], [ 349026.317400000989437, 257042.399599999189377 ], [ 349017.359899997711182, 257052.669799998402596 ], [ 349015.72749999910593, 257054.978500001132488 ], [ 349014.906800001859665, 257056.660500001162291 ], [ 349065.549800001084805, 257075.229100000113249 ], [ 349068.850599996745586, 257066.390099998563528 ], [ 349092.478200003504753, 257037.874800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "G9-654-T62", "PARCEL_NAM": "4-3-22", "ACRE": ".38", "LONGITUDE": -65.02266995, "LATITUDE": 18.34355398, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.19565375900001, "SHAPE_Area": 1514.2514676599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349131.218999996781349, 257033.758900001645088 ], [ 349110.400499999523163, 257016.489900000393391 ], [ 349092.478200003504753, 257037.874800000339746 ], [ 349068.850599996745586, 257066.390099998563528 ], [ 349101.880599997937679, 257070.037999998778105 ], [ 349102.703100003302097, 257068.144900001585484 ], [ 349105.976899996399879, 257062.472100000828505 ], [ 349111.678700000047684, 257055.763799998909235 ], [ 349124.674999997019768, 257044.682199999690056 ], [ 349125.529799997806549, 257038.989700000733137 ], [ 349131.218999996781349, 257033.758900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016000", "MAP": "G9-654-T62", "PARCEL_NAM": "4-3-21", "ACRE": ".39", "LONGITUDE": -65.02204524, "LATITUDE": 18.34347134, "OBJECTID_1": 7253, "PARCEL_NO_": "104802016000", "Tax_Legal_": "4-3-1THR5,7THR13,15,16, 18,20,21,22&REM 4-3", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.18783918599999, "SHAPE_Area": 1634.16202892 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349193.209700003266335, 257045.454199999570847 ], [ 349188.456399999558926, 257035.493900001049042 ], [ 349177.414300002157688, 257006.48369999974966 ], [ 349137.626299999654293, 257038.877599999308586 ], [ 349140.829999998211861, 257041.436900001019239 ], [ 349169.659400001168251, 257064.893199998885393 ], [ 349193.209700003266335, 257045.454199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802012200", "MAP": "D9-1112-T72", "PARCEL_NAM": "4B-1A", "ACRE": ".625", "LONGITUDE": -65.0241935, "LATITUDE": 18.34343515, "OBJECTID_1": 7236, "PARCEL_NO_": "104802012200", "Tax_Legal_": "FORTUNA 4B-1A WESTEND QUARTER", "Name": "DCPVI, LLC", "Address": "821 S Linwood Ave", "City": "CUSHING", "State": "Oklahoma", "Zip": 74023, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.26241764299999, "SHAPE_Area": 2428.2594037499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348991.809600003063679, 257022.907600000500679 ], [ 348921.752099998295307, 257011.568500000983477 ], [ 348920.119699999690056, 257013.877099998295307 ], [ 348916.8800999969244, 257015.53940000012517 ], [ 348890.027199998497963, 257044.028299998492002 ], [ 348967.39190000295639, 257049.516600001603365 ], [ 348990.180799998342991, 257024.794100001454353 ], [ 348991.809600003063679, 257022.907600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02601596, "LATITUDE": 18.3431993, "OBJECTID_1": 7205, "PARCEL_NO_": "104801012300", "Tax_Legal_": "FORTUNA 4D-B WESTEND QTR", "Name": "BEDMINSTER, PHILLIP & LAURALIE F", "Address": "13603 Greywood Dr", "City": "Sugar Land", "State": "Texas", "Zip": 77498, "Country": "United States", "Land_Value": 68500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.74294331200002, "SHAPE_Area": 2476.3587614799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348748.540600001811981, 256993.052200000733137 ], [ 348747.74379999935627, 257002.05799999833107 ], [ 348712.417400002479553, 257011.864100001752377 ], [ 348704.5574000030756, 257044.621300000697374 ], [ 348714.274499997496605, 257039.845600001513958 ], [ 348715.892499998211861, 257039.225600000470877 ], [ 348744.20160000026226, 257029.113699998706579 ], [ 348747.430399999022484, 257028.7179000005126 ], [ 348760.478900000452995, 257011.515099998563528 ], [ 348784.018399998545647, 256993.342599999159575 ], [ 348791.334499999880791, 256986.4364 ], [ 348794.588500000536442, 256983.085499998182058 ], [ 348794.61370000243187, 256980.130399998277426 ], [ 348780.949600003659725, 256974.952300000935793 ], [ 348772.080099999904633, 256974.879700001329184 ], [ 348767.269199997186661, 256971.6739999987185 ], [ 348765.699699997901917, 256966.594900000840425 ], [ 348755.241099998354912, 256963.765099998563528 ], [ 348753.556500002741814, 256972.195000000298023 ], [ 348748.540600001811981, 256993.052200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802012000", "MAP": "D9-1112-T72", "PARCEL_NAM": "4B-1", "ACRE": ".629", "LONGITUDE": -65.02484623, "LATITUDE": 18.34335925, "OBJECTID_1": 7235, "PARCEL_NO_": "104802012000", "Tax_Legal_": "4B-1 REM & 4C-5-1 FORTUNA NO. 8 WEST END QUARTER", "Name": "DCPVI LLC", "Address": "821 S Linwood Ave", "City": "CUSHING", "State": "Oklahoma", "Zip": 74023, "Country": "United States", "Land_Value": 96600, "Improved_V": 231000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.202208001, "SHAPE_Area": 2585.53453971 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348890.027199998497963, 257044.028299998492002 ], [ 348916.8800999969244, 257015.53940000012517 ], [ 348920.119699999690056, 257013.877099998295307 ], [ 348921.752099998295307, 257011.568500000983477 ], [ 348849.27929999679327, 256999.787300001829863 ], [ 348830.390699997544289, 257039.95160000026226 ], [ 348890.027199998497963, 257044.028299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802017300", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-24", "ACRE": ".44", "LONGITUDE": -65.02343282, "LATITUDE": 18.34326608, "OBJECTID_1": 7264, "PARCEL_NO_": "104802017300", "Tax_Legal_": "4-4-24 FORTUNA NO.8 WESTEND QTR", "Name": "PETERS, ESLY A.", "Address": "PO Box 304079", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.93802532800001, "SHAPE_Area": 1783.6022245199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349054.053900003433228, 257004.840799998492002 ], [ 349029.241700001060963, 256983.106199998408556 ], [ 348991.809600003063679, 257022.907600000500679 ], [ 348990.180799998342991, 257024.794100001454353 ], [ 349012.588500000536442, 257044.820300001651049 ], [ 349014.220899999141693, 257042.511599998921156 ], [ 349019.924500003457069, 257035.592199999839067 ], [ 349035.354099996387959, 257022.84180000051856 ], [ 349038.604500003159046, 257019.913100000470877 ], [ 349054.053900003433228, 257004.840799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802012300", "MAP": "D9-1436-T78", "PARCEL_NAM": "4C", "ACRE": null, "LONGITUDE": -65.02365077, "LATITUDE": 18.3420391, "OBJECTID_1": 7237, "PARCEL_NO_": "104802012300", "Tax_Legal_": "REMAINDER 4C FORTUNA No.8 WEST END QUARTER", "Name": "DCPVI LLC", "Address": "821 S Linwood Ave", "City": "CUSHING", "State": "Oklahoma", "Zip": 74023, "Country": "United States", "Land_Value": 362700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1209.9978632499999, "SHAPE_Area": 41834.8704411 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348826.778099998831749, 256990.737199999392033 ], [ 348829.148500002920628, 256996.456199999898672 ], [ 348915.012000001966953, 256970.625 ], [ 348917.988600000739098, 256960.372400000691414 ], [ 348929.564099997282028, 256956.4037000015378 ], [ 348952.715199999511242, 256930.606699999421835 ], [ 348991.410599999129772, 256929.614500001072884 ], [ 348991.809600003063679, 257022.907600000500679 ], [ 349029.241700001060963, 256983.106199998408556 ], [ 349069.929499998688698, 256939.742800001055002 ], [ 349100.03999999910593, 256907.480900000780821 ], [ 349083.244099996984005, 256891.300299998372793 ], [ 349107.661799997091293, 256864.691300000995398 ], [ 349125.265799999237061, 256880.667399998754263 ], [ 349157.003300003707409, 256846.730000000447035 ], [ 349155.426700003445148, 256842.495200000703335 ], [ 349152.210400000214577, 256841.413400001823902 ], [ 349149.006700001657009, 256838.853999998420477 ], [ 349149.85980000346899, 256833.372600000351667 ], [ 349147.476800002157688, 256829.13120000064373 ], [ 349143.465000003576279, 256826.776399999856949 ], [ 349142.674900002777576, 256824.870099999010563 ], [ 349143.553199999034405, 256816.433499999344349 ], [ 349146.01349999755621, 256811.598499998450279 ], [ 349148.428800001740456, 256812.040399998426437 ], [ 349150.021600000560284, 256814.375500001013279 ], [ 349152.449600003659725, 256813.339899998158216 ], [ 349152.490900002419949, 256808.485100001096725 ], [ 349150.892700001597404, 256806.783300001174212 ], [ 349154.157499998807907, 256802.165899999439716 ], [ 349146.91330000013113, 256800.629000000655651 ], [ 349146.929499998688698, 256798.729299999773502 ], [ 349150.174500003457069, 256796.433800000697374 ], [ 349148.578000001609325, 256794.520899999886751 ], [ 349148.594200000166893, 256792.621199999004602 ], [ 349151.85360000282526, 256788.637099999934435 ], [ 349143.849899999797344, 256781.605500001460314 ], [ 349143.072300001978874, 256778.221599999815226 ], [ 349138.292000003159046, 256771.427499998360872 ], [ 349133.445100001990795, 256772.443300001323223 ], [ 349131.845100000500679, 256770.952599998563528 ], [ 349130.264799997210503, 256767.139899998903275 ], [ 349128.655799999833107, 256766.704599998891354 ], [ 349118.972900003194809, 256767.469700001180172 ], [ 349114.919699996709824, 256769.969700001180172 ], [ 349107.657499998807907, 256770.543499998748302 ], [ 349106.035899996757507, 256771.585700001567602 ], [ 349105.21339999884367, 256773.478799998760223 ], [ 349105.972999997437, 256778.973499998450279 ], [ 349104.344099998474121, 256780.859999999403954 ], [ 349103.4983000010252, 256785.497099999338388 ], [ 349105.0658999979496, 256790.787300001829863 ], [ 349109.045400001108646, 256796.941599998623133 ], [ 349109.826499998569489, 256799.903299998492002 ], [ 349104.173299998044968, 256800.912500001490116 ], [ 349097.729999996721745, 256800.015299998223782 ], [ 349083.248800002038479, 256796.097100000828505 ], [ 349072.775700002908707, 256794.956000000238419 ], [ 349065.545800000429153, 256791.730399999767542 ], [ 349049.455600000917912, 256787.376800000667572 ], [ 349048.679799996316433, 256783.781899999827147 ], [ 349051.935599997639656, 256780.219900000840425 ], [ 349052.005800001323223, 256771.987900000065565 ], [ 349051.211999997496605, 256770.503699999302626 ], [ 349048.802100002765656, 256769.42850000038743 ], [ 349042.353399999439716, 256769.164599999785423 ], [ 349039.072400003671646, 256775.681699998676777 ], [ 349030.208400003612041, 256774.975900001823902 ], [ 349027.769599996507168, 256777.277899999171495 ], [ 349026.977700002491474, 256775.582699999213219 ], [ 349028.608300000429153, 256773.485100001096725 ], [ 349028.655100002884865, 256767.997099999338388 ], [ 349027.049599997699261, 256767.139499999582767 ], [ 349021.407200001180172, 256766.88230000063777 ], [ 349019.780199997127056, 256768.557700000703335 ], [ 349019.762299999594688, 256770.668499998748302 ], [ 349022.148800000548363, 256774.487700000405312 ], [ 349022.120099999010563, 256777.864999998360872 ], [ 349018.088500000536442, 256777.831999998539686 ], [ 349016.443499997258186, 256781.618200000375509 ], [ 349014.825499996542931, 256782.238200001418591 ], [ 349009.9966000020504, 256781.143199998885393 ], [ 349005.156900003552437, 256781.314699999988079 ], [ 348993.017300002276897, 256786.49269999936223 ], [ 348982.529799997806549, 256787.040199998766184 ], [ 348978.465899996459484, 256790.806600000709295 ], [ 348968.755999997258186, 256794.737900000065565 ], [ 348963.88570000231266, 256798.497699998319149 ], [ 348959.85419999808073, 256798.464699998497963 ], [ 348956.637900002300739, 256797.38289999961853 ], [ 348955.844200000166893, 256795.898800000548363 ], [ 348952.622500002384186, 256795.450199998915195 ], [ 348943.733300000429153, 256797.699499998241663 ], [ 348942.909000001847744, 256799.803700000047684 ], [ 348941.287399999797344, 256800.845899999141693 ], [ 348923.535899996757507, 256802.178199999034405 ], [ 348855.477399997413158, 256934.821199998259544 ], [ 348826.778099998831749, 256990.737199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802012700", "MAP": "G9-645-T62", "PARCEL_NAM": "4-3-23", "ACRE": ".46", "LONGITUDE": -65.02227175, "LATITUDE": 18.34322818, "OBJECTID_1": 7240, "PARCEL_NO_": "104802012700", "Tax_Legal_": "FORTUNA 4-3-23 WEST END QUARTER", "Name": "KOBAN, STEVEN", "Address": "874 H ewitt Dr", "City": "Port Orange", "State": "Florida", "Zip": 32127, "Country": "United States", "Land_Value": 86500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.03552081199999, "SHAPE_Area": 1941.8930498899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349129.129100002348423, 256995.111699998378754 ], [ 349110.400499999523163, 257016.489900000393391 ], [ 349131.218999996781349, 257033.758900001645088 ], [ 349137.626299999654293, 257038.877599999308586 ], [ 349177.414300002157688, 257006.48369999974966 ], [ 349175.061899997293949, 256998.653999999165535 ], [ 349173.463699996471405, 256996.952199999243021 ], [ 349171.885200001299381, 256992.92850000038743 ], [ 349167.876999996602535, 256990.151500001549721 ], [ 349167.099500000476837, 256986.767599999904633 ], [ 349129.129100002348423, 256995.111699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802013000", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-25", "ACRE": ".54", "LONGITUDE": -65.02274608, "LATITUDE": 18.34315922, "OBJECTID_1": 7241, "PARCEL_NO_": "104802013000", "Tax_Legal_": "FORTUNA 4-4-23 & 25 8 WESTEND QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 176400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.253677866, "SHAPE_Area": 2458.6440744900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349129.129100002348423, 256995.111699998378754 ], [ 349096.321999996900558, 256965.290100000798702 ], [ 349069.398999996483326, 257002.011100001633167 ], [ 349058.825300000607967, 257012.69029999896884 ], [ 349092.478200003504753, 257037.874800000339746 ], [ 349110.400499999523163, 257016.489900000393391 ], [ 349129.129100002348423, 256995.111699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02535756, "LATITUDE": 18.34198896, "OBJECTID_1": 7192, "PARCEL_NO_": "104801010500", "Tax_Legal_": "FORTUNA 4D-D,4D-E&4D-F No.8 WESTEND QUARTER", "Name": "KOBAN, STEPHEN D", "Address": "874 H ewitt Dr", "City": "Port Orange", "State": "Florida", "Zip": 32127, "Country": "United States", "Land_Value": 311800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 862.46618341800001, "SHAPE_Area": 21442.2899602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348750.798100002110004, 256822.718199998140335 ], [ 348755.511900000274181, 256837.322200000286102 ], [ 348773.650700002908707, 256885.177799999713898 ], [ 348772.80120000243187, 256890.237100001424551 ], [ 348762.780199997127056, 256930.685100000351667 ], [ 348757.764300003647804, 256951.542300000786781 ], [ 348755.241099998354912, 256963.765099998563528 ], [ 348765.699699997901917, 256966.594900000840425 ], [ 348767.269199997186661, 256971.6739999987185 ], [ 348772.080099999904633, 256974.879700001329184 ], [ 348780.949600003659725, 256974.952300000935793 ], [ 348794.61370000243187, 256980.130399998277426 ], [ 348794.588500000536442, 256983.085499998182058 ], [ 348791.334499999880791, 256986.4364 ], [ 348784.018399998545647, 256993.342599999159575 ], [ 348760.478900000452995, 257011.515099998563528 ], [ 348747.430399999022484, 257028.7179000005126 ], [ 348751.467399999499321, 257028.11769999936223 ], [ 348755.479099996387959, 257030.472600001841784 ], [ 348791.961000002920628, 257007.550900001078844 ], [ 348804.3074000030756, 256978.098799999803305 ], [ 348805.930900000035763, 256976.845499999821186 ], [ 348807.642399996519089, 256965.249400001019239 ], [ 348802.858499996364117, 256958.877399999648333 ], [ 348795.626800000667572, 256955.862900000065565 ], [ 348795.657399997115135, 256952.274599999189377 ], [ 348855.477399997413158, 256934.821199998259544 ], [ 348923.535899996757507, 256802.178199999034405 ], [ 348916.255800001323223, 256804.862900000065565 ], [ 348909.000699996948242, 256804.592399999499321 ], [ 348908.972000002861023, 256807.969700001180172 ], [ 348906.545800000429153, 256808.794199999421835 ], [ 348903.345799997448921, 256805.812699999660254 ], [ 348900.959200002253056, 256801.993500001728535 ], [ 348896.141099996864796, 256799.631999999284744 ], [ 348892.100599996745586, 256800.654399998486042 ], [ 348889.64919999986887, 256804.434000000357628 ], [ 348889.604299999773502, 256809.710999999195337 ], [ 348892.005199998617172, 256811.841600000858307 ], [ 348892.793600000441074, 256813.958999998867512 ], [ 348889.564699999988079, 256814.354699999094009 ], [ 348886.346699997782707, 256813.484000001102686 ], [ 348887.124200001358986, 256816.867899999022484 ], [ 348885.508000001311302, 256817.276799999177456 ], [ 348879.894400000572205, 256813.642299998551607 ], [ 348871.926600001752377, 256802.38910000026226 ], [ 348868.699500001966953, 256802.573800001293421 ], [ 348859.104699999094009, 256792.996100001037121 ], [ 348855.913599997758865, 256788.959199998527765 ], [ 348849.457699999213219, 256789.539599999785423 ], [ 348846.254000000655651, 256786.98030000180006 ], [ 348843.075499996542931, 256781.465799998492002 ], [ 348840.665600001811981, 256780.390599999576807 ], [ 348830.986199997365475, 256780.733600001782179 ], [ 348829.364600002765656, 256781.775800000876188 ], [ 348818.092399999499321, 256779.783700000494719 ], [ 348814.053700000047684, 256780.594999998807907 ], [ 348811.638300001621246, 256780.153099998831749 ], [ 348803.541000001132488, 256784.097600001841784 ], [ 348793.881499998271465, 256782.118700001388788 ], [ 348792.258100003004074, 256783.371899999678135 ], [ 348792.241899996995926, 256785.271600000560284 ], [ 348788.982500001788139, 256789.255699999630451 ], [ 348787.36259999871254, 256790.086899999529123 ], [ 348784.949100002646446, 256789.433800000697374 ], [ 348783.33110000193119, 256790.053899999707937 ], [ 348777.65089999884367, 256794.229200001806021 ], [ 348774.405900001525879, 256796.524700000882149 ], [ 348772.814900003373623, 256793.97859999909997 ], [ 348772.85080000013113, 256789.756999999284744 ], [ 348771.263400003314018, 256786.788699999451637 ], [ 348760.043300002813339, 256778.675299998372793 ], [ 348750.798100002110004, 256822.718199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0273862, "LATITUDE": 18.34334968, "OBJECTID_1": 7196, "PARCEL_NO_": "104801010900", "Tax_Legal_": "FORTUNA 1A WESTEND QTR.", "Name": "PENN, JOSE A", "Address": "PO Box 245", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 84100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.53056644399999, "SHAPE_Area": 3409.4350089599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348657.393399998545647, 256998.945999998599291 ], [ 348570.284299999475479, 256998.895599998533726 ], [ 348564.390299998223782, 257028.0641999989748 ], [ 348560.68299999833107, 257050.741399999707937 ], [ 348642.584600001573563, 257030.815099999308586 ], [ 348644.252999998629093, 257024.28489999845624 ], [ 348650.81139999628067, 257011.673000000417233 ], [ 348653.259099997580051, 257008.315499998629093 ], [ 348654.090599998831749, 257005.366999998688698 ], [ 348657.393399998545647, 256998.945999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "104801010300", "MAP": "D9-1540-T80", "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -65.02655765, "LATITUDE": 18.34261494, "OBJECTID_1": 7191, "PARCEL_NO_": "104801010300", "Tax_Legal_": "1H & 4Da-3 Fortuna No. 8 West End Quarter", "Name": "CERGE, NOREEN ANTOINETTE", "Address": "PO BOX 303426", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 345.80975572599999, "SHAPE_Area": 1569.9922121100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348693.318599998950958, 256944.048700001090765 ], [ 348707.286700002849102, 256913.554499998688698 ], [ 348715.509900003671646, 256894.834499999880791 ], [ 348719.581000000238419, 256890.223700001835823 ], [ 348722.01969999819994, 256887.921700000762939 ], [ 348724.440399996936321, 256887.730399999767542 ], [ 348726.045900002121925, 256888.587900001555681 ], [ 348726.830600000917912, 256891.127399999648333 ], [ 348735.725199997425079, 256888.244899999350309 ], [ 348735.748599998652935, 256885.500900000333786 ], [ 348737.370200000703335, 256884.458700001239777 ], [ 348733.421400003135204, 256874.716099999845028 ], [ 348725.345600001513958, 256876.127599999308586 ], [ 348718.054700002074242, 256880.078699998557568 ], [ 348714.814999997615814, 256881.74100000038743 ], [ 348709.116899996995926, 256888.027100000530481 ], [ 348706.662000000476837, 256892.228900000452995 ], [ 348701.737800002098083, 256902.321100000292063 ], [ 348688.585100002586842, 256931.766600001603365 ], [ 348677.896200001239777, 256955.954799998551607 ], [ 348663.929999999701977, 256986.238000001758337 ], [ 348654.090599998831749, 257005.366999998688698 ], [ 348653.259099997580051, 257008.315499998629093 ], [ 348650.81139999628067, 257011.673000000417233 ], [ 348661.304200001060963, 257010.492300000041723 ], [ 348663.726800002157688, 257010.089899998158216 ], [ 348667.828500002622604, 257001.890799999237061 ], [ 348679.341600000858307, 256975.598400000482798 ], [ 348693.318599998950958, 256944.048700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02533337, "LATITUDE": 18.34286152, "OBJECTID_1": 7206, "PARCEL_NO_": "104801012400", "Tax_Legal_": "FORTUNA 4D-C WESTEND QTR", "Name": "DCPVI LLC", "Address": "821 S Linwood Ave", "City": "CUSHING", "State": "Oklahoma", "Zip": 74023, "Country": "United States", "Land_Value": 65900, "Improved_V": 227400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.928648942, "SHAPE_Area": 1965.2998548 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348791.961000002920628, 257007.550900001078844 ], [ 348826.778099998831749, 256990.737199999392033 ], [ 348855.477399997413158, 256934.821199998259544 ], [ 348795.657399997115135, 256952.274599999189377 ], [ 348795.626800000667572, 256955.862900000065565 ], [ 348802.858499996364117, 256958.877399999648333 ], [ 348807.642399996519089, 256965.249400001019239 ], [ 348805.930900000035763, 256976.845499999821186 ], [ 348804.3074000030756, 256978.098799999803305 ], [ 348791.961000002920628, 257007.550900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802016400", "MAP": null, "PARCEL_NAM": "4-4-27", "ACRE": null, "LONGITUDE": -65.02223403000001, "LATITUDE": 18.34281316, "OBJECTID_1": 7255, "PARCEL_NO_": "104802016400", "Tax_Legal_": "FORTUNA 4-4-27 WEST END QTR", "Name": "CHARLESWELL, CALFORD & CARL", "Address": "PO Box 10248", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.613582565, "SHAPE_Area": 2979.31014512 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349182.700000002980232, 256953.964699998497963 ], [ 349182.737700000405312, 256949.5320999994874 ], [ 349185.145900003612041, 256950.818300001323223 ], [ 349185.934199996292591, 256952.935699999332428 ], [ 349187.550399996340275, 256952.526799999177456 ], [ 349187.584600001573563, 256948.51630000025034 ], [ 349186.79450000077486, 256946.609900001436472 ], [ 349186.825000002980232, 256943.021600000560284 ], [ 349186.031300000846386, 256941.537500001490116 ], [ 349187.670900002121925, 256938.384500000625849 ], [ 349184.463600002229214, 256936.247299998998642 ], [ 349184.483400002121925, 256933.925400000065565 ], [ 349189.341099999845028, 256931.643100000917912 ], [ 349186.178800001740456, 256924.228999998420477 ], [ 349180.504000000655651, 256927.771099999547005 ], [ 349133.495099999010563, 256955.88399999961257 ], [ 349122.989699997007847, 256958.542300000786781 ], [ 349096.321999996900558, 256965.290100000798702 ], [ 349129.129100002348423, 256995.111699998378754 ], [ 349167.099500000476837, 256986.767599999904633 ], [ 349164.712899997830391, 256982.948399998247623 ], [ 349167.997500002384186, 256976.009199999272823 ], [ 349171.242600001394749, 256973.713700000196695 ], [ 349173.66330000013113, 256973.522399999201298 ], [ 349173.704599998891354, 256968.667599998414516 ], [ 349179.375799998641014, 256965.547600001096725 ], [ 349181.837899997830391, 256960.501600001007318 ], [ 349181.078299999237061, 256955.006900001317263 ], [ 349182.700000002980232, 256953.964699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-L", "ACRE": null, "LONGITUDE": -65.01190177, "LATITUDE": 18.35144913, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.459058121699996, "SHAPE_Area": 185.35695240300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350239.473600000143051, 257944.621100001037121 ], [ 350233.296400003135204, 257912.484299998730421 ], [ 350227.643200002610683, 257913.493500001728535 ], [ 350233.824000000953674, 257945.208200000226498 ], [ 350239.473600000143051, 257944.621100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "GREENBELT", "ACRE": null, "LONGITUDE": -65.01362963, "LATITUDE": 18.35065964, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 710.58129445500003, "SHAPE_Area": 1766.84844449 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350121.340499997138977, 257802.643800001591444 ], [ 350118.912600003182888, 257803.679400000721216 ], [ 350103.547700002789497, 257808.830899998545647 ], [ 350081.741300001740456, 257812.874299999326468 ], [ 350069.61599999666214, 257816.363699998706579 ], [ 350055.050200000405312, 257822.366200000047684 ], [ 350049.384499996900558, 257824.852899998426437 ], [ 350042.093500003218651, 257828.804000001400709 ], [ 350034.798900000751019, 257833.177299998700619 ], [ 350029.932300001382828, 257836.515000000596046 ], [ 349980.436099998652935, 257872.629099998623133 ], [ 349953.669600002467632, 257890.986200001090765 ], [ 349937.433600001037121, 257903.730000000447035 ], [ 349902.5608000010252, 257927.087099999189377 ], [ 349884.697899997234344, 257941.506400000303984 ], [ 350060.665700003504753, 257825.789700001478195 ], [ 350145.527000002563, 257799.687800001353025 ], [ 350159.46169999986887, 257842.653999999165535 ], [ 350154.258299998939037, 257796.248199999332428 ], [ 350152.858599998056889, 257794.458000000566244 ], [ 350148.072899997234344, 257788.297100000083447 ], [ 350144.046700000762939, 257787.630899999290705 ], [ 350141.620600000023842, 257788.455400001257658 ], [ 350133.489100001752377, 257796.410399999469519 ], [ 350121.340499997138977, 257802.643800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-5887-T95", "PARCEL_NAM": "3C-139", "ACRE": ".09", "LONGITUDE": -65.00921341, "LATITUDE": 18.35147931, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.318298397899994, "SHAPE_Area": 450.31177452899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350517.922899998724461, 257915.024999998509884 ], [ 350504.04110000282526, 257935.38740000128746 ], [ 350510.452100001275539, 257940.083999998867512 ], [ 350514.447700001299381, 257944.338500000536442 ], [ 350520.005699999630451, 257949.747099999338388 ], [ 350523.445299997925758, 257951.070000000298023 ], [ 350527.678599998354912, 257948.688799999654293 ], [ 350526.884900003671646, 257939.428399998694658 ], [ 350524.245700001716614, 257930.064399998635054 ], [ 350522.692400000989437, 257923.08559999987483 ], [ 350521.902300000190735, 257921.179299999028444 ], [ 350519.519299998879433, 257916.937899999320507 ], [ 350517.922899998724461, 257915.024999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603023300", "MAP": null, "PARCEL_NAM": "15-5-A", "ACRE": ".533", "LONGITUDE": -64.9748815, "LATITUDE": 18.35143262, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.15658695600001, "SHAPE_Area": 1489.48544369 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354172.268700003623962, 257949.291600000113249 ], [ 354132.073600001633167, 257934.819400001317263 ], [ 354120.526199996471405, 257965.122299998998642 ], [ 354123.724500000476837, 257968.314899999648333 ], [ 354126.928199999034405, 257970.874299999326468 ], [ 354131.737300001084805, 257974.29109999909997 ], [ 354137.368900001049042, 257975.814899999648333 ], [ 354143.819399997591972, 257975.86769999936223 ], [ 354157.546499997377396, 257973.657999999821186 ], [ 354168.028499998152256, 257973.74379999935627 ], [ 354172.268700003623962, 257949.291600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-5887-95", "PARCEL_NAM": "3C-151", "ACRE": ".07", "LONGITUDE": -65.00989248, "LATITUDE": 18.3513734, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.686182516000002, "SHAPE_Area": 321.45127141299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350444.355800002813339, 257914.869100000709295 ], [ 350438.249300003051758, 257913.499099999666214 ], [ 350433.486800000071526, 257913.499099999666214 ], [ 350430.840899996459484, 257917.203299999237061 ], [ 350433.751299999654293, 257922.495000001043081 ], [ 350442.028800003230572, 257926.225099999457598 ], [ 350451.636200003325939, 257934.325199998915195 ], [ 350461.421700000762939, 257921.528599999845028 ], [ 350444.355800002813339, 257914.869100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-5720-T94", "PARCEL_NAM": "3C-M", "ACRE": ".11", "LONGITUDE": -65.01064362, "LATITUDE": 18.35135725, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.760786553, "SHAPE_Area": 575.89566918399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350346.85700000077486, 257928.612500000745058 ], [ 350362.997599996626377, 257927.055900000035763 ], [ 350379.955300003290176, 257924.239399999380112 ], [ 350402.5878000035882, 257917.880699999630451 ], [ 350402.604000002145767, 257915.980999998748302 ], [ 350393.736400000751019, 257915.697299998253584 ], [ 350373.580399997532368, 257915.321299999952316 ], [ 350343.781000003218651, 257911.066599998623133 ], [ 350346.85700000077486, 257928.612500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "G9-1537-T70", "PARCEL_NAM": "104", "ACRE": ".07", "LONGITUDE": -65.01649937000001, "LATITUDE": 18.35118178, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.556270013800003, "SHAPE_Area": 403.81718716500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349761.801399998366833, 257885.405099999159575 ], [ 349756.191399998962879, 257881.348400000482798 ], [ 349731.841899998486042, 257899.9364 ], [ 349734.228500001132488, 257903.755699999630451 ], [ 349736.604299999773502, 257908.841299999505281 ], [ 349737.385399997234344, 257911.802999999374151 ], [ 349765.807800002396107, 257888.393199998885393 ], [ 349761.801399998366833, 257885.405099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97341747, "LATITUDE": 18.3503867, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.504363628099995, "SHAPE_Area": 242.45897507199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354290.064099997282028, 257826.419199999421835 ], [ 354290.019100002944469, 257831.696199998259544 ], [ 354297.968999996781349, 257845.060100000351667 ], [ 354303.553800001740456, 257852.071899998933077 ], [ 354310.740500003099442, 257860.363400001078844 ], [ 354311.627700001001358, 257850.871500000357628 ], [ 354309.262699998915195, 257844.519299998879433 ], [ 354306.069799996912479, 257840.693500000983477 ], [ 354290.064099997282028, 257826.419199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-5887-T95", "PARCEL_NAM": "3C-140 GREENBELT", "ACRE": ".01", "LONGITUDE": -65.00997442000001, "LATITUDE": 18.35030989, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.45761446, "SHAPE_Area": 535.98490612700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350451.773999996483326, 257823.502300001680851 ], [ 350452.797899998724461, 257797.968299999833107 ], [ 350431.858900003135204, 257794.841600000858307 ], [ 350423.806599996984005, 257793.509199999272823 ], [ 350418.144400000572205, 257795.573800001293421 ], [ 350418.889600001275539, 257802.756999999284744 ], [ 350437.362800002098083, 257811.352000001817942 ], [ 350446.180100001394749, 257817.545899998396635 ], [ 350451.773999996483326, 257823.502300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97425879, "LATITUDE": 18.3499557, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 390.30789300800001, "SHAPE_Area": 1612.6302911800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354290.064099997282028, 257826.419199999421835 ], [ 354279.644900001585484, 257818.945700000971556 ], [ 354264.389700002968311, 257811.221400000154972 ], [ 354188.029200002551079, 257782.521000001579523 ], [ 354181.611100003123283, 257778.668800000101328 ], [ 354176.006499998271465, 257773.978900000452995 ], [ 354172.808200001716614, 257770.786299999803305 ], [ 354162.394500002264977, 257762.679499998688698 ], [ 354151.152800001204014, 257757.09910000115633 ], [ 354135.874300003051758, 257752.118900001049042 ], [ 354132.575300000607967, 257760.746700000017881 ], [ 354143.838500000536442, 257763.794199999421835 ], [ 354155.886399999260902, 257769.38120000064373 ], [ 354173.501199997961521, 257784.090900000184774 ], [ 354184.73200000077486, 257790.937800001353025 ], [ 354240.196800000965595, 257811.445599999278784 ], [ 354243.411200001835823, 257812.738499999046326 ], [ 354262.690800003707409, 257821.339999999850988 ], [ 354269.117899999022484, 257824.136799998581409 ], [ 354277.949600003659725, 257828.642099998891354 ], [ 354290.76969999819994, 257838.246199999004602 ], [ 354297.968999996781349, 257845.060100000351667 ], [ 354290.019100002944469, 257831.696199998259544 ], [ 354290.064099997282028, 257826.419199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403027300", "MAP": "D9-8109-T008", "PARCEL_NAM": "4-1-23A", "ACRE": ".274", "LONGITUDE": -65.01369307, "LATITUDE": 18.34985765, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.87140103900001, "SHAPE_Area": 818.28647452099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350057.235200002789497, 257771.263599999248981 ], [ 350051.955200001597404, 257735.192299999296665 ], [ 350054.334600001573563, 257724.924100000411272 ], [ 350046.995399996638298, 257726.674899999052286 ], [ 350034.848600000143051, 257732.697200000286102 ], [ 350038.511500000953674, 257776.001299999654293 ], [ 350057.235200002789497, 257771.263599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97592182, "LATITUDE": 18.34953573, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 543.94131662799998, "SHAPE_Area": 2503.24268016 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354139.984899997711182, 257742.864399999380112 ], [ 354143.287500001490116, 257733.814399998635054 ], [ 354121.517099998891354, 257733.636199999600649 ], [ 354102.140399999916553, 257736.432900000363588 ], [ 354056.234499998390675, 257729.724399998784065 ], [ 354036.073100000619888, 257729.981600001454353 ], [ 354015.078400000929832, 257733.398299999535084 ], [ 354007.8108000010252, 257734.605399999767542 ], [ 353997.303599998354912, 257737.474700000137091 ], [ 353981.134199999272823, 257742.408599998801947 ], [ 353959.277400001883507, 257752.362300001084805 ], [ 353951.169399999082088, 257757.57319999858737 ], [ 353939.836000002920628, 257762.757800001651049 ], [ 353931.747699998319149, 257765.646899998188019 ], [ 353921.245899997651577, 257767.883000001311302 ], [ 353921.159599997103214, 257778.014800000935793 ], [ 353925.997400000691414, 257778.054400000721216 ], [ 353927.597499996423721, 257779.545099999755621 ], [ 353927.570500001311302, 257782.711300000548363 ], [ 353934.829099997878075, 257782.559599999338388 ], [ 353935.678599998354912, 257777.500300001353025 ], [ 353938.124499998986721, 257774.353900000452995 ], [ 353955.938900001347065, 257765.633799999952316 ], [ 353962.430799998342991, 257760.831799998879433 ], [ 353974.572200000286102, 257755.442699998617172 ], [ 353983.472199998795986, 257751.927000001072884 ], [ 353998.036200001835823, 257746.135600000619888 ], [ 354010.965899996459484, 257742.863899998366833 ], [ 354030.344400003552437, 257739.856100000441074 ], [ 354046.474299997091293, 257739.565900001674891 ], [ 354053.732900001108646, 257739.414200000464916 ], [ 354069.851899996399879, 257740.390500001609325 ], [ 354082.729599997401237, 257743.240200001746416 ], [ 354089.973800003528595, 257744.777100000530481 ], [ 354094.799099996685982, 257746.294300001114607 ], [ 354101.226199999451637, 257749.091099999845028 ], [ 354108.432700000703335, 257755.060699999332428 ], [ 354113.248999997973442, 257757.633200000971556 ], [ 354122.906700000166893, 257759.82319999858737 ], [ 354132.575300000607967, 257760.746700000017881 ], [ 354135.874300003051758, 257752.118900001049042 ], [ 354126.211099997162819, 257750.562100000679493 ], [ 354115.732600003480911, 257750.054200001060963 ], [ 354114.130800001323223, 257748.774500001221895 ], [ 354114.16499999910593, 257744.763999998569489 ], [ 354116.596500001847744, 257743.306200001388788 ], [ 354122.242499999701977, 257743.141399998217821 ], [ 354139.984899997711182, 257742.864399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02587056, "LATITUDE": 18.34882499, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 607.61526272900005, "SHAPE_Area": 2579.4056893400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348749.820600003004074, 257505.386799998581409 ], [ 348757.78660000115633, 257516.850999999791384 ], [ 348761.756999999284744, 257524.060699999332428 ], [ 348762.547200001776218, 257525.967000000178814 ], [ 348766.479800000786781, 257537.609299998730421 ], [ 348768.01690000295639, 257546.487799998372793 ], [ 348767.99719999730587, 257548.80970000103116 ], [ 348768.648800000548363, 257566.969099998474121 ], [ 348769.691399998962879, 257633.894299998879433 ], [ 348766.367299996316433, 257645.477200001478195 ], [ 348765.537600003182888, 257648.214600000530481 ], [ 348761.452100001275539, 257654.513999998569489 ], [ 348749.258500002324581, 257666.024399999529123 ], [ 348733.004600003361702, 257680.879000000655651 ], [ 348724.8766999989748, 257688.411800000816584 ], [ 348723.222699999809265, 257693.253400001674891 ], [ 348723.9679000005126, 257700.436700001358986 ], [ 348724.74719999730587, 257703.609499998390675 ], [ 348727.110399998724461, 257710.172699999064207 ], [ 348729.500600002706051, 257713.56980000063777 ], [ 348734.298900000751019, 257718.253100000321865 ], [ 348745.526100002229214, 257725.522199999541044 ], [ 348748.718999996781349, 257729.348000001162291 ], [ 348749.507399998605251, 257731.465399999171495 ], [ 348750.283100001513958, 257735.060300000011921 ], [ 348750.254299998283386, 257738.437600001692772 ], [ 348753.515500001609325, 257734.242400001734495 ], [ 348756.766000002622604, 257731.313700001686811 ], [ 348760.014600001275539, 257728.596099998801947 ], [ 348763.257799997925758, 257726.511700000613928 ], [ 348781.084799997508526, 257716.313999999314547 ], [ 348773.001900002360344, 257718.569899998605251 ], [ 348763.322599999606609, 257718.912900000810623 ], [ 348744.816899999976158, 257714.117300000041723 ], [ 348740.002400003373623, 257711.333700001239777 ], [ 348735.209499999880791, 257706.017099998891354 ], [ 348732.081399999558926, 257694.592500001192093 ], [ 348733.715599998831749, 257692.072700001299381 ], [ 348761.344200000166893, 257667.178700000047684 ], [ 348762.962200000882149, 257666.558699999004602 ], [ 348770.292700000107288, 257657.963899999856949 ], [ 348775.236699998378754, 257645.549800001084805 ], [ 348776.894299998879433, 257640.285999998450279 ], [ 348778.54110000282526, 257636.288699999451637 ], [ 348776.909699998795986, 257543.816399998962879 ], [ 348775.369099996984005, 257535.360100001096725 ], [ 348771.43639999628067, 257523.717700000852346 ], [ 348769.062399998307228, 257518.420899998396635 ], [ 348766.679399996995926, 257514.17960000038147 ], [ 348758.71339999884367, 257502.715300001204014 ], [ 348756.361000001430511, 257494.885600000619888 ], [ 348747.480800002813339, 257496.079500000923872 ], [ 348749.820600003004074, 257505.386799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97295498, "LATITUDE": 18.34872419, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2293.4346296200001, "SHAPE_Area": 10310.478038699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354178.735799998044968, 257642.912099998444319 ], [ 354175.440399996936321, 257651.117800001055002 ], [ 354194.687600001692772, 257663.518699999898672 ], [ 354209.163400001823902, 257668.070199999958277 ], [ 354219.629299998283386, 257670.055700000375509 ], [ 354227.694200001657009, 257669.910599999129772 ], [ 354264.014300003647804, 257665.986000001430511 ], [ 354268.825199998915195, 257669.191799998283386 ], [ 354273.6199000030756, 257674.2972999997437 ], [ 354276.830799996852875, 257676.012299999594688 ], [ 354284.069600000977516, 257678.182500001043081 ], [ 354288.099399998784065, 257678.426500000059605 ], [ 354300.186800003051758, 257679.369800001382828 ], [ 354309.842799998819828, 257681.770899999886751 ], [ 354366.898599997162819, 257704.82490000128746 ], [ 354369.310300000011921, 257705.688999999314547 ], [ 354382.983499996364117, 257709.811700001358986 ], [ 354392.652000002563, 257710.735199999064207 ], [ 354408.765699997544289, 257712.344700001180172 ], [ 354428.941500000655651, 257710.398899998515844 ], [ 354432.159599997103214, 257711.269600000232458 ], [ 354433.75959999859333, 257712.760400000959635 ], [ 354432.919100001454353, 257716.764299999922514 ], [ 354430.489399999380112, 257718.010999999940395 ], [ 354419.188400000333786, 257719.396099999547005 ], [ 354404.637000001966953, 257723.71000000089407 ], [ 354393.298299998044968, 257729.527800001204014 ], [ 354288.481299996376038, 257728.247699998319149 ], [ 354267.509999997913837, 257728.920499999076128 ], [ 354262.670299999415874, 257729.092000000178814 ], [ 354253.791900001466274, 257730.074799999594688 ], [ 354243.295400001108646, 257731.677600000053644 ], [ 354198.81700000166893, 257746.723400000482798 ], [ 354193.971900001168251, 257747.528099998831749 ], [ 354185.11150000244379, 257746.400100000202656 ], [ 354170.653599999845028, 257739.737900000065565 ], [ 354165.025600001215935, 257737.791999999433756 ], [ 354158.593099996447563, 257735.628400001674891 ], [ 354143.287500001490116, 257733.814399998635054 ], [ 354139.984899997711182, 257742.864399999380112 ], [ 354156.098600000143051, 257744.473900001496077 ], [ 354163.342799998819828, 257746.010899998247623 ], [ 354180.201700001955032, 257754.803700000047684 ], [ 354188.250399999320507, 257756.558299999684095 ], [ 354194.70269999653101, 257756.399999998509884 ], [ 354250.48929999768734, 257739.124800000339746 ], [ 354264.2128000035882, 257737.337200000882149 ], [ 354289.208499997854233, 257737.541799999773502 ], [ 354395.643500000238419, 257738.201799999922514 ], [ 354414.260600000619888, 257729.910500001162291 ], [ 354421.533600002527237, 257728.070199999958277 ], [ 354434.449000000953674, 257726.487100001424551 ], [ 354439.313900001347065, 257723.360500000417233 ], [ 354441.763400003314018, 257719.791999999433756 ], [ 354442.650600001215935, 257710.300000000745058 ], [ 354440.267599999904633, 257706.058699999004602 ], [ 354437.0675999969244, 257703.077199999243021 ], [ 354431.439599998295307, 257701.131299998611212 ], [ 354416.105200000107288, 257702.694499999284744 ], [ 354400.781700000166893, 257702.991300001740456 ], [ 354387.895099997520447, 257701.19709999859333 ], [ 354369.393100000917912, 257695.979400001466274 ], [ 354314.741800002753735, 257674.633799999952316 ], [ 354309.916500002145767, 257673.116700001060963 ], [ 354301.070500001311302, 257670.30009999871254 ], [ 354288.180299997329712, 257668.927999999374151 ], [ 354280.930699996650219, 257668.024300001561642 ], [ 354277.723399996757507, 257665.887099999934435 ], [ 354277.757500000298023, 257661.876600001007318 ], [ 354280.187299996614456, 257660.629900000989437 ], [ 354287.438699997961521, 257661.322599999606609 ], [ 354305.969499997794628, 257663.162999998778105 ], [ 354324.514700002968311, 257663.314800001680851 ], [ 354339.040899999439716, 257661.956000000238419 ], [ 354343.884199999272823, 257661.362300001084805 ], [ 354364.067100003361702, 257658.572200000286102 ], [ 354394.782499998807907, 257649.957699999213219 ], [ 354413.361900001764297, 257646.098999999463558 ], [ 354431.120600000023842, 257643.9222999997437 ], [ 354452.89639999717474, 257643.467199999839067 ], [ 354461.776600003242493, 257642.273400001227856 ], [ 354474.711800001561642, 257638.368400000035763 ], [ 354489.299099996685982, 257629.833000000566244 ], [ 354494.173000000417233, 257625.651000000536442 ], [ 354504.755699999630451, 257613.916400000452995 ], [ 354529.121299996972084, 257593.428599998354912 ], [ 354529.945600003004074, 257591.324499998241663 ], [ 354530.773500002920628, 257588.798099998384714 ], [ 354531.608599998056889, 257585.427400000393391 ], [ 354531.626599997282028, 257583.316700000315905 ], [ 354531.67509999871254, 257577.617499999701977 ], [ 354528.482199996709824, 257573.791700001806021 ], [ 354524.470499999821186, 257571.436900001019239 ], [ 354520.446099996566772, 257570.559500001370907 ], [ 354513.176700003445148, 257571.977699998766184 ], [ 354488.020999997854233, 257590.559099998325109 ], [ 354478.316399998962879, 257593.857200000435114 ], [ 354467.829000003635883, 257594.404699999839067 ], [ 354437.277199998497963, 257583.811000000685453 ], [ 354427.621299996972084, 257581.410000000149012 ], [ 354409.095799997448921, 257578.936299998313189 ], [ 354396.225400000810623, 257575.242400001734495 ], [ 354384.181100003421307, 257569.233199998736382 ], [ 354355.322899997234344, 257549.154199998825788 ], [ 354344.084799997508526, 257543.151599999517202 ], [ 354333.631499998271465, 257539.688499998301268 ], [ 354323.162100002169609, 257538.125199999660254 ], [ 354308.639499999582767, 257539.061799999326468 ], [ 354294.905199997127056, 257542.115800000727177 ], [ 354286.807899996638298, 257546.060300000011921 ], [ 354285.90990000218153, 257556.81870000064373 ], [ 354295.630599997937679, 257551.620999999344349 ], [ 354306.141400001943111, 257548.329500000923872 ], [ 354315.827899999916553, 257547.142200000584126 ], [ 354330.329000003635883, 257548.738499999046326 ], [ 354336.76690000295639, 257550.268899999558926 ], [ 354351.221199996769428, 257557.353300001472235 ], [ 354380.883900001645088, 257577.649900000542402 ], [ 354396.142700001597404, 257584.951999999582767 ], [ 354406.601400002837181, 257587.781800001859665 ], [ 354433.175499998033047, 257592.010099999606609 ], [ 354446.848700001835823, 257596.132800001651049 ], [ 354459.702899999916553, 257601.726399999111891 ], [ 354466.947200000286102, 257603.263399999588728 ], [ 354480.656300000846386, 257603.164500001817942 ], [ 354487.932899996638298, 257600.901999998837709 ], [ 354496.845399998128414, 257595.908700000494719 ], [ 354517.138099998235703, 257580.242800001055002 ], [ 354520.366999998688698, 257579.846999999135733 ], [ 354523.574199996888638, 257581.984200000762939 ], [ 354522.722999997437, 257587.254599999636412 ], [ 354497.547499999403954, 257608.157900001853704 ], [ 354493.469099998474121, 257613.612900000065565 ], [ 354486.149400003254414, 257620.941300000995398 ], [ 354473.990000002086163, 257628.441100001335144 ], [ 354467.514300003647804, 257631.343400001525879 ], [ 354456.202600002288818, 257633.995099999010563 ], [ 354424.74379999935627, 257635.215300001204014 ], [ 354408.597699999809265, 257637.405099999159575 ], [ 354394.055399999022484, 257640.663600001484156 ], [ 354367.378700003027916, 257648.46680000051856 ], [ 354346.387599997222424, 257651.461399998515844 ], [ 354339.928099997341633, 257652.464000001549721 ], [ 354322.173100002110004, 257654.218600001186132 ], [ 354306.048600003123283, 257653.875500001013279 ], [ 354287.517800003290176, 257652.035100001841784 ], [ 354279.460100002586842, 257651.335900001227856 ], [ 354275.41950000077486, 257652.358300000429153 ], [ 354272.982600003480911, 257654.449200000613928 ], [ 354269.7466000020504, 257655.689300000667572 ], [ 354223.738200001418591, 257661.012299999594688 ], [ 354214.87780000269413, 257659.884300000965595 ], [ 354212.462399996817112, 257659.442299999296665 ], [ 354204.417300000786781, 257657.265599999576807 ], [ 354202.810000002384186, 257656.619100000709295 ], [ 354193.972999997437, 257652.747099999338388 ], [ 354187.565600000321865, 257647.628400001674891 ], [ 354178.735799998044968, 257642.912099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304053000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02148882, "LATITUDE": 18.34929451, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.11384462199999, "SHAPE_Area": 1159.7076329500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349247.527199998497963, 257673.902100000530481 ], [ 349215.389799997210503, 257660.129099998623133 ], [ 349199.778599999845028, 257694.198499999940395 ], [ 349214.238200001418591, 257700.649700000882149 ], [ 349223.876199997961521, 257705.161499999463558 ], [ 349247.527199998497963, 257673.902100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304053100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02177767000001, "LATITUDE": 18.34921097, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.402183181, "SHAPE_Area": 1125.2429786800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349215.389799997210503, 257660.129099998623133 ], [ 349200.928300000727177, 257653.888999998569489 ], [ 349161.246399998664856, 257673.829199999570847 ], [ 349168.456500001251698, 257679.3766999989748 ], [ 349177.286300003528595, 257684.092999998480082 ], [ 349199.778599999845028, 257694.198499999940395 ], [ 349215.389799997210503, 257660.129099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304053200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02191202, "LATITUDE": 18.34898717, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.774794015, "SHAPE_Area": 1411.61238086 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349161.246399998664856, 257673.829199999570847 ], [ 349200.928300000727177, 257653.888999998569489 ], [ 349194.724200002849102, 257624.918400000780821 ], [ 349173.727700002491474, 257628.546300001442432 ], [ 349168.873599998652935, 257630.406399998813868 ], [ 349166.427699998021126, 257633.552799999713898 ], [ 349156.575800001621246, 257654.159299999475479 ], [ 349155.749700002372265, 257656.474599998444319 ], [ 349156.478699997067451, 257665.557599999010563 ], [ 349158.048100002110004, 257670.636700000613928 ], [ 349161.246399998664856, 257673.829199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97533103000001, "LATITUDE": 18.34858521, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.64006852900002, "SHAPE_Area": 1400.8915910600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354175.440399996936321, 257651.117800001055002 ], [ 354178.735799998044968, 257642.912099998444319 ], [ 354172.308600001037121, 257640.115299999713898 ], [ 354166.67339999973774, 257639.013700000941753 ], [ 354115.924300000071526, 257632.898800000548363 ], [ 354092.539399996399879, 257632.918499998748302 ], [ 354073.970899999141693, 257635.510800000280142 ], [ 354030.33110000193119, 257646.763700000941753 ], [ 354032.672700002789497, 257655.859900001436472 ], [ 354037.51240000128746, 257655.688400000333786 ], [ 354039.090899996459484, 257659.712099999189377 ], [ 354048.788199998438358, 257657.258400000631809 ], [ 354048.014200001955032, 257653.452399998903275 ], [ 354051.262900002300739, 257650.734700001776218 ], [ 354078.738600000739098, 257643.782400000840425 ], [ 354096.499099999666214, 257641.39469999819994 ], [ 354112.623499996960163, 257641.737700000405312 ], [ 354162.570000000298023, 257647.423900000751019 ], [ 354175.440399996936321, 257651.117800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102304053600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02123162, "LATITUDE": 18.34836952, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.26951378000001, "SHAPE_Area": 1276.3841814100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349273.215199999511242, 257592.841400001198053 ], [ 349255.787399999797344, 257556.179499998688698 ], [ 349242.037000000476837, 257561.133200000971556 ], [ 349229.108999997377396, 257564.193799998611212 ], [ 349240.865599997341633, 257603.975600000470877 ], [ 349261.07379999756813, 257598.230399999767542 ], [ 349273.215199999511242, 257592.841400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9738422, "LATITUDE": 18.34768285, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.017235349, "SHAPE_Area": 846.52848025699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354220.773000001907349, 257535.809500001370907 ], [ 354218.280299998819828, 257544.443999998271465 ], [ 354241.638199999928474, 257547.590500000864267 ], [ 354258.567199997603893, 257548.151200000196695 ], [ 354267.411399997770786, 257551.178899999707937 ], [ 354273.016099996864796, 257555.86879999935627 ], [ 354277.031400002539158, 257557.801500000059605 ], [ 354281.865699999034405, 257558.263300001621246 ], [ 354285.90990000218153, 257556.81870000064373 ], [ 354286.807899996638298, 257546.060300000011921 ], [ 354281.944799996912479, 257548.97580000013113 ], [ 354279.52589999884367, 257548.956000000238419 ], [ 354277.92230000346899, 257547.88740000128746 ], [ 354277.954599998891354, 257544.087999999523163 ], [ 354286.854599997401237, 257540.572299998253584 ], [ 354286.937299996614456, 257530.86259999871254 ], [ 354275.614799998700619, 257534.780699998140335 ], [ 354254.616499997675419, 257538.619699999690056 ], [ 354242.520000003278255, 257538.731699999421835 ], [ 354223.190099999308586, 257536.040399998426437 ], [ 354220.773000001907349, 257535.809500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97468157, "LATITUDE": 18.34764233, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.54096869099999, "SHAPE_Area": 920.99639463899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354218.280299998819828, 257544.443999998271465 ], [ 354220.773000001907349, 257535.809500001370907 ], [ 354191.769100002944469, 257532.827899999916553 ], [ 354160.328299999237061, 257531.937300000339746 ], [ 354132.085799999535084, 257534.23930000141263 ], [ 354127.229900002479553, 257536.310499999672174 ], [ 354129.568000003695488, 257545.82880000025034 ], [ 354131.994099996984005, 257545.004299998283386 ], [ 354134.409400001168251, 257545.446299999952316 ], [ 354137.591499999165535, 257550.538600001484156 ], [ 354144.050999999046326, 257549.535999998450279 ], [ 354143.273500002920628, 257546.152100000530481 ], [ 354145.715800002217293, 257543.42790000140667 ], [ 354154.599600002169609, 257541.811799999326468 ], [ 354187.662000000476837, 257541.660300001502037 ], [ 354218.280299998819828, 257544.443999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01758551, "LATITUDE": 18.34741053, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.14747615700003, "SHAPE_Area": 1144.9012096700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349673.318099997937679, 257481.281100001186132 ], [ 349661.282799996435642, 257474.216499999165535 ], [ 349636.35360000282526, 257466.201999999582767 ], [ 349625.9003000035882, 257462.739000000059605 ], [ 349618.650700002908707, 257461.835299998521805 ], [ 349608.159599997103214, 257462.804900001734495 ], [ 349600.891999997198582, 257464.011900000274181 ], [ 349593.601099997758865, 257467.963100001215935 ], [ 349578.201999999582767, 257477.125100001692772 ], [ 349582.157999999821186, 257486.023400001227856 ], [ 349602.421899996697903, 257473.7347999997437 ], [ 349610.504900000989437, 257471.478900000452995 ], [ 349623.402300000190735, 257472.006599999964237 ], [ 349639.488899998366833, 257476.782400000840425 ], [ 349655.57379999756813, 257481.769200000911951 ], [ 349668.419100001454353, 257488.418200001120567 ], [ 349678.840000003576279, 257495.680700000375509 ], [ 349690.036700002849102, 257506.538100000470877 ], [ 349693.339299999177456, 257497.488099999725819 ], [ 349684.538099996745586, 257489.394499998539686 ], [ 349678.931699998676777, 257484.915600001811981 ], [ 349673.318099997937679, 257481.281100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9731399, "LATITUDE": 18.34744352, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.83806039199999, "SHAPE_Area": 967.63044314499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354374.139600001275539, 257517.433100000023842 ], [ 354371.032999999821186, 257503.475499998778105 ], [ 354338.744499996304512, 257507.433100000023842 ], [ 354325.004900000989437, 257511.120299998670816 ], [ 354316.911200001835823, 257514.642700001597404 ], [ 354310.433700002729893, 257517.756000000983477 ], [ 354306.384199999272823, 257519.833799999207258 ], [ 354295.032799996435642, 257527.129200000315905 ], [ 354286.937299996614456, 257530.86259999871254 ], [ 354286.854599997401237, 257540.572299998253584 ], [ 354295.758199997246265, 257536.634399998933077 ], [ 354316.020300000905991, 257524.556800000369549 ], [ 354327.346500001847744, 257520.216499999165535 ], [ 354330.578900001943111, 257519.398600000888109 ], [ 354337.04559999704361, 257517.551699999719858 ], [ 354350.763700000941753, 257516.397399999201298 ], [ 354360.410700000822544, 257519.853799998760223 ], [ 354361.193599998950958, 257522.604499999433756 ], [ 354368.454000003635883, 257522.241700001060963 ], [ 354370.10080000013113, 257518.24439999833703 ], [ 354374.139600001275539, 257517.433100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02321873, "LATITUDE": 18.34695697, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.16141888300001, "SHAPE_Area": 1275.0245666000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348996.902099996805191, 257371.675799999386072 ], [ 349000.890500001609325, 257376.774700000882149 ], [ 349000.843800000846386, 257382.262800000607967 ], [ 348998.405100002884865, 257384.564899999648333 ], [ 349001.599799998104572, 257388.17960000038147 ], [ 349004.835799999535084, 257386.939500000327826 ], [ 349011.277300000190735, 257388.047699999064207 ], [ 349038.461800001561642, 257415.290199998766184 ], [ 349052.718199998140335, 257445.593199998140335 ], [ 349071.731700003147125, 257485.434399999678135 ], [ 349079.821800000965595, 257482.334199998527765 ], [ 349063.193099997937679, 257446.523299999535084 ], [ 349046.551899999380112, 257412.190000001341105 ], [ 349045.76349999755621, 257410.072599999606609 ], [ 349007.391400001943111, 257370.917300000786781 ], [ 348996.902099996805191, 257371.675799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "104901011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01317519, "LATITUDE": 18.34723418, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.489383766, "SHAPE_Area": 1074.0086011200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350116.237199999392033, 257455.142000000923872 ], [ 350095.29280000180006, 257452.648600000888109 ], [ 350079.164800003170967, 257452.727600000798702 ], [ 350071.085500001907349, 257454.5614 ], [ 350064.608000002801418, 257457.674800001084805 ], [ 350057.302699998021126, 257463.314500000327826 ], [ 350054.045000001788139, 257467.087499998509884 ], [ 350049.970299996435642, 257472.120400000363588 ], [ 350051.464299999177456, 257486.064800001680851 ], [ 350061.258699998259544, 257472.212799999862909 ], [ 350064.510899998247623, 257469.072999998927116 ], [ 350073.430699996650219, 257463.235399998724461 ], [ 350080.70549999922514, 257461.184000000357628 ], [ 350098.4425999969244, 257461.540300000458956 ], [ 350127.433899998664856, 257465.999400001019239 ], [ 350146.799699999392033, 257464.469200000166893 ], [ 350148.398000001907349, 257466.171000000089407 ], [ 350151.619599997997284, 257466.619600001722574 ], [ 350154.850299999117851, 257466.012699998915195 ], [ 350157.285400003194809, 257464.132800001651049 ], [ 350157.330399997532368, 257458.855799999088049 ], [ 350157.362700000405312, 257455.056400001049042 ], [ 350154.96000000089407, 257453.136900000274181 ], [ 350152.546400003135204, 257452.483899999409914 ], [ 350148.51129999756813, 257452.872999999672174 ], [ 350146.886100001633167, 257454.337400000542402 ], [ 350138.804999999701977, 257456.382199998944998 ], [ 350130.736400000751019, 257456.949400000274181 ], [ 350116.237199999392033, 257455.142000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01912675, "LATITUDE": 18.34705926, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.318036675, "SHAPE_Area": 676.74541991299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349484.187100000679493, 257438.358800001442432 ], [ 349482.754299998283386, 257417.237700000405312 ], [ 349473.060599997639656, 257419.269299998879433 ], [ 349469.815600000321865, 257421.564800001680851 ], [ 349464.918300002813339, 257428.490800000727177 ], [ 349458.278999999165535, 257450.601300001144409 ], [ 349485.679300002753735, 257452.514299999922514 ], [ 349484.187100000679493, 257438.358800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02008857, "LATITUDE": 18.34635942, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.23721345300001, "SHAPE_Area": 684.40268784099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349409.939099997282028, 257350.991700001060963 ], [ 349405.166000001132488, 257343.353300001472235 ], [ 349401.114600002765656, 257345.642099998891354 ], [ 349395.45610000193119, 257347.284600000828505 ], [ 349380.125299997627735, 257348.425700001418591 ], [ 349363.957699999213219, 257353.148499999195337 ], [ 349349.368600003421307, 257361.894999999552965 ], [ 349346.109200000762939, 257365.879099998623133 ], [ 349344.464199997484684, 257369.665300000458956 ], [ 349343.596699997782707, 257376.835400000214577 ], [ 349354.012199997901917, 257384.731100000441074 ], [ 349352.471500001847744, 257376.27479999884963 ], [ 349354.13629999756813, 257370.166700001806021 ], [ 349360.624600000679493, 257365.786800000816584 ], [ 349373.581299997866154, 257359.348999999463558 ], [ 349382.468699999153614, 257357.3108000010252 ], [ 349395.380500003695488, 257356.149900000542402 ], [ 349396.994999997317791, 257355.951999999582767 ], [ 349401.84179999679327, 257354.936200000345707 ], [ 349409.939099997282028, 257350.991700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97757854, "LATITUDE": 18.34499996, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 392.80858557800002, "SHAPE_Area": 1901.3212439399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353786.781800001859665, 257265.3412000015378 ], [ 353793.380999997258186, 257276.000999998301268 ], [ 353838.393500000238419, 257270.712799999862909 ], [ 353851.314300000667572, 257268.496599998325109 ], [ 353863.444899998605251, 257264.374000001698732 ], [ 353885.298100002110004, 257254.842500001192093 ], [ 353900.711499996483326, 257243.991799999028444 ], [ 353911.285300001502037, 257233.312600001692772 ], [ 353912.113200001418591, 257230.786200001835823 ], [ 353915.394199997186661, 257224.269200000911951 ], [ 353916.222099997103214, 257221.742800001055002 ], [ 353917.069700002670288, 257216.894600000232458 ], [ 353917.112899996340275, 257211.828699998557568 ], [ 353917.145199999213219, 257208.02930000051856 ], [ 353916.355099998414516, 257206.122999999672174 ], [ 353902.955300003290176, 257169.916299998760223 ], [ 353901.304899998009205, 257174.335799999535084 ], [ 353901.958400003612041, 257192.284099999815226 ], [ 353906.657799996435642, 257208.576799999922514 ], [ 353905.75620000064373, 257219.75730000063777 ], [ 353904.098600000143051, 257225.021099999547005 ], [ 353893.521200001239777, 257236.122499998658895 ], [ 353882.979800000786781, 257243.002300001680851 ], [ 353878.926700003445148, 257245.502300001680851 ], [ 353865.15820000320673, 257252.566799998283386 ], [ 353853.025799997150898, 257256.900400001555681 ], [ 353840.101400002837181, 257259.538899999111891 ], [ 353786.781800001859665, 257265.3412000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02581457, "LATITUDE": 18.3453327, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.37212992100001, "SHAPE_Area": 315.56457080299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348778.379900000989437, 257276.583999998867512 ], [ 348771.490000002086163, 257233.464499998837709 ], [ 348757.174099996685982, 257210.127099998295307 ], [ 348760.262699998915195, 257226.19539999961853 ], [ 348761.82320000231266, 257232.329900000244379 ], [ 348763.398100003600121, 257236.775800000876188 ], [ 348772.087700001895428, 257257.956300001591444 ], [ 348776.765500001609325, 257276.781899999827147 ], [ 348778.379900000989437, 257276.583999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.04936365, "LATITUDE": 18.34467832, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.922483738799997, "SHAPE_Area": 474.27431477 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 346278.543200001120567, 257141.712900001555681 ], [ 346270.438799999654293, 257146.5016999989748 ], [ 346262.444700002670288, 257148.5456000007689 ], [ 346262.973899997770786, 257156.218499999493361 ], [ 346267.736400000751019, 257160.716499999165535 ], [ 346278.319700002670288, 257158.864399999380112 ], [ 346287.319200001657009, 257152.761599998921156 ], [ 346295.517700001597404, 257150.397700000554323 ], [ 346297.898900002241135, 257143.253899998962879 ], [ 346293.401000000536442, 257138.491399999707937 ], [ 346287.315600000321865, 257137.697700001299381 ], [ 346278.543200001120567, 257141.712900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802012500", "MAP": "A9-29-T64", "PARCEL_NAM": "4-4-26", "ACRE": ".47", "LONGITUDE": -65.02307107, "LATITUDE": 18.34289134, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.36284658100001, "SHAPE_Area": 1818.2402911900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349089.916500002145767, 256959.960299998521805 ], [ 349069.929499998688698, 256939.742800001055002 ], [ 349029.241700001060963, 256983.106199998408556 ], [ 349054.053900003433228, 257004.840799998492002 ], [ 349055.680900000035763, 257003.165399998426437 ], [ 349066.267300002276897, 256991.008600000292063 ], [ 349089.916500002145767, 256959.960299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02647876, "LATITUDE": 18.34292847, "OBJECTID_1": 7203, "PARCEL_NO_": "104801011700", "Tax_Legal_": "FORTUNA 1-I & 4DA-4 WESTEND QTR.", "Name": "CRUZ, JUAN A", "Address": "PO Box 307125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 299300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.78935159599999, "SHAPE_Area": 1726.36281917 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348717.554899998009205, 256991.057599999010563 ], [ 348726.986599996685982, 256954.877700001001358 ], [ 348690.473399996757507, 256950.471099998801947 ], [ 348679.341600000858307, 256975.598400000482798 ], [ 348670.017499998211861, 256996.891800001263618 ], [ 348717.554899998009205, 256991.057599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "104802012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02272704000001, "LATITUDE": 18.34272395, "OBJECTID_1": 7239, "PARCEL_NO_": "104802012600", "Tax_Legal_": "FORTUNA 4-4-27B & 27A & 4C-1 WEST END QTR", "Name": "CLARK, WILLIAM", "Address": "6203 ESTATE FORTUNA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 252700, "Improved_V": 3600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.894900065599998, "SHAPE_Area": 188.078702343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349096.321999996900558, 256965.290100000798702 ], [ 349106.132600001990795, 256949.538400001823902 ], [ 349098.917199999094009, 256944.624099999666214 ], [ 349096.465899996459484, 256948.403799999505281 ], [ 349094.846100002527237, 256949.234900001436472 ], [ 349091.627999998629093, 256948.364199999719858 ], [ 349089.167700000107288, 256953.199200000613928 ], [ 349090.748000003397465, 256957.011799998581409 ], [ 349089.916500002145767, 256959.960299998521805 ], [ 349096.321999996900558, 256965.290100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802012600", "MAP": "D9-1479-T79", "PARCEL_NAM": "4-4-27B", "ACRE": "1.77", "LONGITUDE": -65.02241423, "LATITUDE": 18.34236898, "OBJECTID_1": 7239, "PARCEL_NO_": "104802012600", "Tax_Legal_": "FORTUNA 4-4-27B & 27A & 4C-1 WEST END QTR", "Name": "CLARK, WILLIAM", "Address": "6203 ESTATE FORTUNA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 252700, "Improved_V": 3600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 413.43209925899998, "SHAPE_Area": 6059.46599264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349125.265799999237061, 256880.667399998754263 ], [ 349100.03999999910593, 256907.480900000780821 ], [ 349069.929499998688698, 256939.742800001055002 ], [ 349089.916500002145767, 256959.960299998521805 ], [ 349090.748000003397465, 256957.011799998581409 ], [ 349089.167700000107288, 256953.199200000613928 ], [ 349091.627999998629093, 256948.364199999719858 ], [ 349094.846100002527237, 256949.234900001436472 ], [ 349096.465899996459484, 256948.403799999505281 ], [ 349098.917199999094009, 256944.624099999666214 ], [ 349106.132600001990795, 256949.538400001823902 ], [ 349096.321999996900558, 256965.290100000798702 ], [ 349122.989699997007847, 256958.542300000786781 ], [ 349133.495099999010563, 256955.88399999961257 ], [ 349180.504000000655651, 256927.771099999547005 ], [ 349175.680500000715256, 256926.042899999767542 ], [ 349170.070500001311302, 256921.986200001090765 ], [ 349166.109099999070168, 256913.721099998801947 ], [ 349162.903599999845028, 256911.372900001704693 ], [ 349164.584499999880791, 256903.365100000053644 ], [ 349164.640299998223782, 256896.821600001305342 ], [ 349168.707800000905991, 256892.633099999278784 ], [ 349169.533900000154972, 256890.317800000309944 ], [ 349167.950000002980232, 256886.927299998700619 ], [ 349164.722999997437, 256887.111999999731779 ], [ 349163.936499997973442, 256884.783500000834465 ], [ 349166.3716000020504, 256882.903599999845028 ], [ 349168.851700000464916, 256875.746700000017881 ], [ 349170.482299998402596, 256873.64919999986887 ], [ 349173.723700001835823, 256871.775800000876188 ], [ 349175.356100000441074, 256869.467199999839067 ], [ 349172.152400001883507, 256866.907800000160933 ], [ 349164.879399999976158, 256868.748199999332428 ], [ 349162.462300002574921, 256868.517299998551607 ], [ 349158.48650000244379, 256861.940799999982119 ], [ 349159.307199999690056, 256860.258799999952316 ], [ 349159.339500002563, 256856.459399998188019 ], [ 349157.003300003707409, 256846.730000000447035 ], [ 349125.265799999237061, 256880.667399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0271754, "LATITUDE": 18.34269766, "OBJECTID_1": 7198, "PARCEL_NO_": "104801011100", "Tax_Legal_": "FORTUNA 1C WEST END QTR", "Name": "HENLEY, LEW", "Address": "6016 FRYDENHOJ 2A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94500, "Improved_V": 469800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.78687942400001, "SHAPE_Area": 5859.7489997499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348688.585100002586842, 256931.766600001603365 ], [ 348598.46509999781847, 256909.075199998915195 ], [ 348587.119199998676777, 256915.737399999052286 ], [ 348583.587899997830391, 256932.559599999338388 ], [ 348578.714400000870228, 256955.776399999856949 ], [ 348575.334499999880791, 256973.902699999511242 ], [ 348574.117600001394749, 256979.92509999871254 ], [ 348608.59740000218153, 256978.534000001847744 ], [ 348668.599399998784065, 256976.113200001418591 ], [ 348677.896200001239777, 256955.954799998551607 ], [ 348688.585100002586842, 256931.766600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02690203, "LATITUDE": 18.34234606, "OBJECTID_1": 7199, "PARCEL_NO_": "104801011200", "Tax_Legal_": "FORTUNA 1-D WESTEND QTR.", "Name": "HENLEY, SR. , LEW V", "Address": "7227 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.709905284, "SHAPE_Area": 2360.4354849599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348701.737800002098083, 256902.321100000292063 ], [ 348632.497400000691414, 256889.722100000828505 ], [ 348598.46509999781847, 256909.075199998915195 ], [ 348688.585100002586842, 256931.766600001603365 ], [ 348701.737800002098083, 256902.321100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02597787000001, "LATITUDE": 18.34231667, "OBJECTID_1": 7202, "PARCEL_NO_": "104801011500", "Tax_Legal_": "FORTUNA 1G & 4DA-2 WESTEND QTR.", "Name": "WALKER, CLAUDE E. & AMBER L.", "Address": "PO Box 307444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.66349080399999, "SHAPE_Area": 1204.4728948500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348772.80120000243187, 256890.237100001424551 ], [ 348743.829700000584126, 256883.4560999982059 ], [ 348734.629399999976158, 256922.221999999135733 ], [ 348762.780199997127056, 256930.685100000351667 ], [ 348772.80120000243187, 256890.237100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02191096, "LATITUDE": 18.34245225, "OBJECTID_1": 7239, "PARCEL_NO_": "104802012600", "Tax_Legal_": "FORTUNA 4-4-27B & 27A & 4C-1 WEST END QTR", "Name": "CLARK, WILLIAM", "Address": "6203 ESTATE FORTUNA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 252700, "Improved_V": 3600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 15.293689624100001, "SHAPE_Area": 9.1912002235300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349186.178800001740456, 256924.228999998420477 ], [ 349184.575099997222424, 256923.160399999469519 ], [ 349182.960699997842312, 256923.358300000429153 ], [ 349180.504000000655651, 256927.771099999547005 ], [ 349186.178800001740456, 256924.228999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02624076, "LATITUDE": 18.34185351, "OBJECTID_1": 7201, "PARCEL_NO_": "104801011400", "Tax_Legal_": "FORTUNA 1-F&4DA-1 WESTEND QTR.", "Name": "CARSON, JULIE", "Address": "PO Box 302217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76500, "Improved_V": 185400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.64414450199999, "SHAPE_Area": 2169.8505489200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348736.350699998438358, 256881.943399999290705 ], [ 348743.829700000584126, 256883.4560999982059 ], [ 348755.511900000274181, 256837.322200000286102 ], [ 348750.798100002110004, 256822.718199998140335 ], [ 348669.771200001239777, 256868.495600000023842 ], [ 348717.35980000346899, 256866.985300000756979 ], [ 348718.054700002074242, 256880.078699998557568 ], [ 348725.345600001513958, 256876.127599999308586 ], [ 348733.421400003135204, 256874.716099999845028 ], [ 348736.350699998438358, 256881.943399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802012600", "MAP": "D9-1479-T79", "PARCEL_NAM": "4C-1", "ACRE": ".19", "LONGITUDE": -65.02266351, "LATITUDE": 18.34210605, "OBJECTID_1": 7239, "PARCEL_NO_": "104802012600", "Tax_Legal_": "FORTUNA 4-4-27B & 27A & 4C-1 WEST END QTR", "Name": "CLARK, WILLIAM", "Address": "6203 ESTATE FORTUNA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 252700, "Improved_V": 3600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.023612099, "SHAPE_Area": 858.52494860599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349100.03999999910593, 256907.480900000780821 ], [ 349125.265799999237061, 256880.667399998754263 ], [ 349107.661799997091293, 256864.691300000995398 ], [ 349083.244099996984005, 256891.300299998372793 ], [ 349100.03999999910593, 256907.480900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02665431, "LATITUDE": 18.34210992, "OBJECTID_1": 7200, "PARCEL_NO_": "104801011300", "Tax_Legal_": "FORTUNA 1E\nWEST END QTR", "Name": "James Long & Margaret J Wilson-Long 2020 Trust", "Address": "PO Box 9452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 125400, "Improved_V": 60100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.21716913099999, "SHAPE_Area": 1871.17420238 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348632.497400000691414, 256889.722100000828505 ], [ 348701.737800002098083, 256902.321100000292063 ], [ 348706.662000000476837, 256892.228900000452995 ], [ 348709.116899996995926, 256888.027100000530481 ], [ 348714.814999997615814, 256881.74100000038743 ], [ 348718.054700002074242, 256880.078699998557568 ], [ 348717.35980000346899, 256866.985300000756979 ], [ 348669.771200001239777, 256868.495600000023842 ], [ 348632.497400000691414, 256889.722100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02593696, "LATITUDE": 18.34198888, "OBJECTID_1": 7201, "PARCEL_NO_": "104801011400", "Tax_Legal_": "FORTUNA 1-F&4DA-1 WESTEND QTR.", "Name": "CARSON, JULIE", "Address": "PO Box 302217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76500, "Improved_V": 185400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.65251196099999, "SHAPE_Area": 774.104122609 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348743.829700000584126, 256883.4560999982059 ], [ 348772.80120000243187, 256890.237100001424551 ], [ 348773.650700002908707, 256885.177799999713898 ], [ 348755.511900000274181, 256837.322200000286102 ], [ 348743.829700000584126, 256883.4560999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010600", "MAP": null, "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.98875418, "LATITUDE": 18.3516618, "OBJECTID_1": 2058, "PARCEL_NO_": "102503010600", "Tax_Legal_": "BONNE ESPERANCE 1 WEST END QTR", "Name": "DOWLING, JR. , WILLIAM C. -TRUSTEE", "Address": "90 Broad Street LLP", "City": "New York", "State": "New York", "Zip": 10004, "Country": "United States", "Land_Value": 1376500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2172.64162816, "SHAPE_Area": 164295.52814400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353001.443300001323223, 258020.844300001859665 ], [ 353007.924400001764297, 258017.308800000697374 ], [ 353012.799999997019768, 258012.915699999779463 ], [ 353016.054099999368191, 258009.564800001680851 ], [ 352865.711199998855591, 257735.030999999493361 ], [ 352848.220200002193451, 257738.413600001484156 ], [ 352845.76349999755621, 257742.826499998569489 ], [ 352846.557199999690056, 257744.310600001364946 ], [ 352851.404100000858307, 257743.294799998402596 ], [ 352853.004100002348423, 257744.785599999129772 ], [ 352852.152900002896786, 257750.056000001728535 ], [ 352852.932199999690056, 257753.228700000792742 ], [ 352849.724899999797344, 257751.091600000858307 ], [ 352844.075400002300739, 257751.678599998354912 ], [ 352842.443000003695488, 257753.987300001084805 ], [ 352841.597099997103214, 257758.624400001019239 ], [ 352837.547499999403954, 257760.702199999243021 ], [ 352829.468199998140335, 257762.535900000482798 ], [ 352827.884400002658367, 257759.145399998873472 ], [ 352827.940099999308586, 257752.602000001817942 ], [ 352823.946299999952316, 257748.136399999260902 ], [ 352827.209299996495247, 257743.730099998414516 ], [ 352828.827399998903275, 257743.110100001096725 ], [ 352832.894900001585484, 257738.921500001102686 ], [ 352832.108300000429153, 257736.592999998480082 ], [ 352827.250699996948242, 257738.875300001353025 ], [ 352820.746200002729893, 257745.154899999499321 ], [ 352806.162500001490116, 257753.268100000917912 ], [ 352801.313799999654293, 257754.495000001043081 ], [ 352794.071400001645088, 257752.747000001370907 ], [ 352788.412799999117851, 257754.389400001615286 ], [ 352784.392099998891354, 257753.089999999850988 ], [ 352782.775799997150898, 257753.4989 ], [ 352779.566799998283386, 257751.572799999266863 ], [ 352777.946999996900558, 257752.403900001198053 ], [ 352776.348700001835823, 257750.702100001275539 ], [ 352774.737899996340275, 257750.477800000458956 ], [ 352769.140500001609325, 257744.943599998950958 ], [ 352763.478299997746944, 257747.008200000971556 ], [ 352761.840499997138977, 257749.950100000947714 ], [ 352762.616200000047684, 257753.545000001788139 ], [ 352765.037000000476837, 257753.353700000792742 ], [ 352765.008199997246265, 257756.730999998748302 ], [ 352770.652400001883507, 257756.777199998497963 ], [ 352773.053300000727177, 257758.907800000160933 ], [ 352770.627199999988079, 257759.732299998402596 ], [ 352767.405500002205372, 257759.283700000494719 ], [ 352767.387599997222424, 257761.394499998539686 ], [ 352768.976800002157688, 257764.151700001209974 ], [ 352771.383199997246265, 257765.649099998176098 ], [ 352772.976000003516674, 257767.984200000762939 ], [ 352771.34179999679327, 257770.503899998962879 ], [ 352771.320200003683567, 257773.036899998784065 ], [ 352775.351800002157688, 257773.069899998605251 ], [ 352775.303199999034405, 257778.769000001251698 ], [ 352774.482500001788139, 257780.4510000012815 ], [ 352775.229500003159046, 257787.423200000077486 ], [ 352771.190800003707409, 257788.234499998390675 ], [ 352767.166400000452995, 257787.357200000435114 ], [ 352763.924999997019768, 257789.230500001460314 ], [ 352763.10249999910593, 257791.123599998652935 ], [ 352763.061099998652935, 257795.978500001132488 ], [ 352765.453100003302097, 257799.16440000012517 ], [ 352765.413500003516674, 257803.808200001716614 ], [ 352763.793700002133846, 257804.639299999922514 ], [ 352754.110699996352196, 257805.404399998486042 ], [ 352751.720600001513958, 257802.007399998605251 ], [ 352744.471000000834465, 257801.10359999909997 ], [ 352739.668999999761581, 257796.842500001192093 ], [ 352738.052799999713898, 257797.251400001347065 ], [ 352734.789800003170967, 257801.657699998468161 ], [ 352730.729500003159046, 257805.002000000327826 ], [ 352730.709700003266335, 257807.323800001293421 ], [ 352733.110699996352196, 257809.4543999992311 ], [ 352737.170999996364117, 257806.110100001096725 ], [ 352742.0016999989748, 257806.994100000709295 ], [ 352745.190999999642372, 257811.241999998688698 ], [ 352740.345899999141693, 257812.046700000762939 ], [ 352738.72070000320673, 257813.511100001633167 ], [ 352739.505400002002716, 257816.050599999725819 ], [ 352743.515399999916553, 257818.616599999368191 ], [ 352743.491999998688698, 257821.360599998384714 ], [ 352740.232600003480911, 257825.344700001180172 ], [ 352738.630800001323223, 257824.065000001341105 ], [ 352732.986599996685982, 257824.018899999558926 ], [ 352734.574000000953674, 257826.987199999392033 ], [ 352734.538099996745586, 257831.208700001239777 ], [ 352731.287600003182888, 257834.13740000128746 ], [ 352727.25789999961853, 257833.893399998545647 ], [ 352729.698399998247623, 257831.380199998617172 ], [ 352728.929799996316433, 257826.940999999642372 ], [ 352724.092000000178814, 257826.901399999856949 ], [ 352722.491899996995926, 257825.410599999129772 ], [ 352721.710799999535084, 257822.448899999260902 ], [ 352722.544100001454353, 257819.289299998432398 ], [ 352717.726000003516674, 257816.92790000140667 ], [ 352718.555699996650219, 257814.190400000661612 ], [ 352716.174500003457069, 257809.738000001758337 ], [ 352712.132100000977516, 257810.971500001847744 ], [ 352709.691600002348423, 257813.484600000083447 ], [ 352704.029500000178814, 257815.549199998378754 ], [ 352702.402500003576279, 257817.224599998444319 ], [ 352693.525799997150898, 257817.996399998664856 ], [ 352691.096100002527237, 257819.243000000715256 ], [ 352691.879000000655651, 257821.993700001388788 ], [ 352690.259199999272823, 257822.824799999594688 ], [ 352687.843900002539158, 257822.382800001651049 ], [ 352688.680799998342991, 257818.801100000739098 ], [ 352686.240199998021126, 257821.3141999989748 ], [ 352683.015000000596046, 257821.287799999117851 ], [ 352682.23030000180006, 257818.7483000010252 ], [ 352676.551899999380112, 257822.712600000202656 ], [ 352672.507799997925758, 257824.1570999994874 ], [ 352667.671700000762939, 257823.906500000506639 ], [ 352664.460799999535084, 257822.191399998962879 ], [ 352658.006700001657009, 257822.5608000010252 ], [ 352653.134700000286102, 257826.531700000166893 ], [ 352653.903200000524521, 257830.971000000834465 ], [ 352652.285199999809265, 257831.590999998152256 ], [ 352649.864500001072884, 257831.782299999147654 ], [ 352641.021999999880791, 257828.543499998748302 ], [ 352639.376999996602535, 257832.329700000584126 ], [ 352634.517599999904633, 257834.823100000619888 ], [ 352632.876199997961521, 257838.187100000679493 ], [ 352630.446400001645088, 257839.433800000697374 ], [ 352625.680500000715256, 257830.951099999248981 ], [ 352624.033699996769428, 257834.948399998247623 ], [ 352622.419299997389317, 257835.146200001239777 ], [ 352620.016500003635883, 257833.226700000464916 ], [ 352619.170699998736382, 257837.863899998366833 ], [ 352617.547200001776218, 257839.11710000038147 ], [ 352611.0608000010252, 257843.285900000482798 ], [ 352606.213899999856949, 257844.301699999719858 ], [ 352600.546300001442432, 257846.999600000679493 ], [ 352595.674300000071526, 257850.970499999821186 ], [ 352593.266199998557568, 257849.684200000017881 ], [ 352590.030100002884865, 257850.924300000071526 ], [ 352586.826399996876717, 257848.364900000393391 ], [ 352580.37950000166893, 257847.890000000596046 ], [ 352573.943400003015995, 257846.148499999195337 ], [ 352571.504699997603893, 257848.450599998235703 ], [ 352556.156000003218651, 257851.702500000596046 ], [ 352544.824500001966953, 257856.675999999046326 ], [ 352541.604599997401237, 257856.016399998217821 ], [ 352541.58839999884367, 257857.91609999909997 ], [ 352536.755999997258186, 257857.243200000375509 ], [ 352535.920900002121925, 257860.613899998366833 ], [ 352533.492899999022484, 257861.649500001221895 ], [ 352533.523500002920628, 257858.061200000345707 ], [ 352531.921700000762939, 257856.781500000506639 ], [ 352527.895499996840954, 257856.115200001746416 ], [ 352526.257700003683567, 257859.057199999690056 ], [ 352527.843400001525879, 257862.2364999987185 ], [ 352530.242499999701977, 257864.578200001269579 ], [ 352526.997500002384186, 257866.873700000345707 ], [ 352530.203000001609325, 257869.221900001168251 ], [ 352529.358900003135204, 257873.647999998182058 ], [ 352526.131800003349781, 257873.832699999213219 ], [ 352526.95610000193119, 257871.728500001132488 ], [ 352524.533600002527237, 257872.130800001323223 ], [ 352522.929999999701977, 257871.062199998646975 ], [ 352521.311899997293949, 257871.682300001382828 ], [ 352518.900200001895428, 257870.818199999630451 ], [ 352522.145199999213219, 257868.522700000554323 ], [ 352516.501000002026558, 257868.476500000804663 ], [ 352512.447899997234344, 257870.976500000804663 ], [ 352511.627199999988079, 257872.658500000834465 ], [ 352509.213699996471405, 257872.005499999970198 ], [ 352502.743400000035763, 257874.274500001221895 ], [ 352498.668700002133846, 257879.307399999350309 ], [ 352495.412799999117851, 257882.86939999833703 ], [ 352491.375900000333786, 257883.4695999994874 ], [ 352486.556000001728535, 257881.319200001657009 ], [ 352482.513599999248981, 257882.552700001746416 ], [ 352480.884800001978874, 257884.4391999989748 ], [ 352480.859700001776218, 257887.394299998879433 ], [ 352482.448899999260902, 257890.151500001549721 ], [ 352480.017399996519089, 257891.609299998730421 ], [ 352476.788500003516674, 257892.005100000649691 ], [ 352475.192100003361702, 257890.092099998146296 ], [ 352471.957800000905991, 257891.121100001037121 ], [ 352471.131800003349781, 257893.4364 ], [ 352472.719200000166893, 257896.404699999839067 ], [ 352471.896700002253056, 257898.297800000756979 ], [ 352470.276900000870228, 257899.128899998962879 ], [ 352464.641699999570847, 257898.027300000190735 ], [ 352466.329800002276897, 257889.175200000405312 ], [ 352462.301899999380112, 257888.720100000500679 ], [ 352461.511799998581409, 257886.813799999654293 ], [ 352458.302699998021126, 257884.887699998915195 ], [ 352444.582800000905991, 257886.252999998629093 ], [ 352442.948600001633167, 257888.772799998521805 ], [ 352441.2837999984622, 257894.880899999290705 ], [ 352423.528800003230572, 257896.635400000959635 ], [ 352413.827799998223782, 257899.511300001293421 ], [ 352411.410700000822544, 257899.2804000005126 ], [ 352406.596199996769428, 257896.496800001710653 ], [ 352400.955600000917912, 257896.028499998152256 ], [ 352401.018500000238419, 257888.640700001269579 ], [ 352398.615800000727177, 257886.721200000494719 ], [ 352390.540100000798702, 257888.132699999958277 ], [ 352388.895099997520447, 257891.918999999761581 ], [ 352384.82039999961853, 257896.951900001615286 ], [ 352383.996100001037121, 257899.056099999696016 ], [ 352386.420400001108646, 257898.442600000649691 ], [ 352392.905100002884865, 257894.484900001436472 ], [ 352388.83389999717474, 257899.095600001513958 ], [ 352388.798000000417233, 257903.317200001329184 ], [ 352386.364699997007847, 257904.986099999397993 ], [ 352382.320500001311302, 257906.430599998682737 ], [ 352380.71509999781847, 257905.573100000619888 ], [ 352379.923100002110004, 257903.877900000661612 ], [ 352375.074500001966953, 257905.104699999094009 ], [ 352371.859999999403954, 257903.811900001019239 ], [ 352368.633000001311302, 257903.996599998325109 ], [ 352469.264200001955032, 258207.317200001329184 ], [ 352474.931699998676777, 258204.61939999833703 ], [ 352493.546999998390675, 258196.539099998772144 ], [ 352496.014499999582767, 258190.8597999997437 ], [ 352497.637900002300739, 258189.606499999761581 ], [ 352512.995600000023842, 258185.299199998378754 ], [ 352522.678599998354912, 258184.534099999815226 ], [ 352536.3733000010252, 258186.1239 ], [ 352583.188000001013279, 258180.807500001043081 ], [ 352595.313199996948242, 258177.31810000166297 ], [ 352604.227600000798702, 258172.113800000399351 ], [ 352626.993199996650219, 258150.135299999266863 ], [ 352648.081399999558926, 258135.742400001734495 ], [ 352668.321900002658367, 258126.197799999266863 ], [ 352692.574199996888638, 258119.008000001311302 ], [ 352723.320200003683567, 258106.805100001394749 ], [ 352783.976999998092651, 258085.769999999552965 ], [ 352813.155299998819828, 258068.276999998837709 ], [ 352826.916599996387959, 258062.056800000369549 ], [ 352830.177799999713898, 258057.861600000411272 ], [ 352834.22919999808073, 258055.572700001299381 ], [ 352840.68860000371933, 258054.570099998265505 ], [ 352848.739200003445148, 258056.113699998706579 ], [ 352874.570000000298023, 258052.947599999606609 ], [ 352889.117700003087521, 258049.055900000035763 ], [ 352915.011500000953674, 258038.502000000327826 ], [ 352940.881800003349781, 258030.692200001329184 ], [ 352957.072800002992153, 258023.225400000810623 ], [ 352963.541199997067451, 258021.167399998754263 ], [ 352976.453000001609325, 258020.006499998271465 ], [ 352989.336099997162819, 258022.222899999469519 ], [ 352994.980200000107288, 258022.269099999219179 ], [ 353001.443300001323223, 258020.844300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97823064000001, "LATITUDE": 18.36345594, "OBJECTID_1": 2183, "PARCEL_NO_": "102601011400", "Tax_Legal_": "CARET BAY 2 LITTLE NORTHSIDE QTR", "Name": "LEDEE, PAUL & OTHERS", "Address": "BERRY-2CB CARET BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 243800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 329.58744774399997, "SHAPE_Area": 3531.09553508 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353736.45380000025034, 259344.321699999272823 ], [ 353740.415500000119209, 259345.441300000995398 ], [ 353740.897699996829033, 259344.331300001591444 ], [ 353743.336499996483326, 259342.029199998825788 ], [ 353758.735500000417233, 259332.86710000038147 ], [ 353766.04450000077486, 259326.80519999936223 ], [ 353770.117399998009205, 259321.983399998396635 ], [ 353781.564000003039837, 259303.500900000333786 ], [ 353784.825199998915195, 259299.305700000375509 ], [ 353793.781000003218651, 259289.246500000357628 ], [ 353797.029600001871586, 259286.528900001198053 ], [ 353807.583599999547005, 259278.171500001102686 ], [ 353818.11599999666214, 259272.347100000828505 ], [ 353845.63849999755621, 259259.906700000166893 ], [ 353849.704199999570847, 259255.929200001060963 ], [ 353850.5320999994874, 259253.402899999171495 ], [ 353842.467200003564358, 259253.548000000417233 ], [ 353813.43639999628067, 259253.732599999755621 ], [ 353767.469400003552437, 259254.200699999928474 ], [ 353739.35700000077486, 259335.874899998307228 ], [ 353736.45380000025034, 259344.321699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97857639, "LATITUDE": 18.36462979, "OBJECTID_1": 2203, "PARCEL_NO_": "102601013400", "Tax_Legal_": "CARET BAY 2H LT. NORTHSIDE", "Name": "MOHAMMED, KERFILER & N", "Address": "14-2 BRASSVIEW", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 264600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 594.91132136299996, "SHAPE_Area": 8522.5679646999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353665.0320999994874, 259541.504999998956919 ], [ 353687.002099998295307, 259518.253400001674891 ], [ 353728.508900001645088, 259473.419100001454353 ], [ 353730.211400002241135, 259462.878400001674891 ], [ 353732.707699999213219, 259453.821800000965595 ], [ 353735.98870000243187, 259447.304800000041723 ], [ 353739.258900001645088, 259442.054200001060963 ], [ 353746.583999998867512, 259434.092599999159575 ], [ 353765.244300000369549, 259420.735300000756979 ], [ 353779.054099999368191, 259408.815999999642372 ], [ 353780.686499997973442, 259406.50730000063777 ], [ 353782.304499998688698, 259405.887299999594688 ], [ 353837.637299999594688, 259347.234000001102686 ], [ 353838.479500003159046, 259343.019000001251698 ], [ 353836.076800003647804, 259341.099500000476837 ], [ 353834.462399996817112, 259341.297400001436472 ], [ 353807.767700001597404, 259351.211399998515844 ], [ 353771.397399999201298, 259361.04619999974966 ], [ 353761.721600003540516, 259360.967000000178814 ], [ 353756.885499998927116, 259360.716299999505281 ], [ 353752.859399996697903, 259360.05009999871254 ], [ 353746.419600002467632, 259358.730799999088049 ], [ 353744.8141999989748, 259357.8733000010252 ], [ 353740.804200001060963, 259355.307399999350309 ], [ 353739.252700001001358, 259348.117499999701977 ], [ 353740.415500000119209, 259345.441300000995398 ], [ 353736.45380000025034, 259344.321699999272823 ], [ 353721.992899999022484, 259386.395300000905991 ], [ 353699.657799996435642, 259452.495799999684095 ], [ 353674.930799998342991, 259515.410399999469519 ], [ 353665.0320999994874, 259541.504999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97276353, "LATITUDE": 18.35265518, "OBJECTID_1": 2765, "PARCEL_NO_": "102604028300", "Tax_Legal_": "CROWN & HAWK REM 7 SOUTHSIDE QTR.", "Name": "WALKER, LESLIE FRANCOIS G. DW", "Address": "PO Box 12137", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 146400, "Improved_V": 80000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 395.25850121399998, "SHAPE_Area": 5377.68090863 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354436.295999996364117, 258057.668800000101328 ], [ 354428.75620000064373, 258052.478100001811981 ], [ 354418.958400003612041, 258054.895500000566244 ], [ 354326.083099998533726, 258074.060699999332428 ], [ 354325.78320000320673, 258082.345800001174212 ], [ 354323.076499998569489, 258116.098700001835823 ], [ 354322.925499998033047, 258133.829300001263618 ], [ 354435.782799996435642, 258116.47859999909997 ], [ 354422.922899998724461, 258116.436999998986721 ], [ 354413.192500002682209, 258116.359299998730421 ], [ 354409.390000000596046, 258115.69819999858737 ], [ 354406.230400003492832, 258113.990800000727177 ], [ 354401.400399997830391, 258109.536699999123812 ], [ 354400.386399999260902, 258104.061700001358986 ], [ 354401.484300002455711, 258099.024000000208616 ], [ 354404.484300002455711, 258094.211800001561642 ], [ 354407.705899998545647, 258088.139699999243021 ], [ 354420.167599998414516, 258064.058400001376867 ], [ 354421.898500002920628, 258059.236000001430511 ], [ 354424.237000003457069, 258057.782800000160933 ], [ 354427.839800000190735, 258056.970499999821186 ], [ 354432.07209999859333, 258056.793999999761581 ], [ 354436.295999996364117, 258057.668800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028700", "MAP": "D9-8283-T009", "PARCEL_NAM": "7AB & 8B", "ACRE": ".227", "LONGITUDE": -64.97270609, "LATITUDE": 18.35221063, "OBJECTID_1": 2769, "PARCEL_NO_": "102604028700", "Tax_Legal_": "7AB & 8B CROWN & HAWK 3F, 3G & 3H SOUTHSIDE QTR", "Name": "MORON, ELLA F", "Address": "P.O. BOX 4644, V.D.S", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23600, "Improved_V": 131100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.50510235100001, "SHAPE_Area": 718.92428894099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354379.503300003707409, 258023.679299999028444 ], [ 354377.931999996304512, 258018.811299998313189 ], [ 354374.454899996519089, 258029.748599998652935 ], [ 354358.375900000333786, 258037.456999998539686 ], [ 354359.212399996817112, 258039.134199999272823 ], [ 354364.77929999679327, 258048.256799999624491 ], [ 354371.4375, 258064.70160000026226 ], [ 354390.164599999785423, 258060.837200000882149 ], [ 354385.76860000193119, 258045.473200000822544 ], [ 354381.070900000631809, 258028.969500001519918 ], [ 354379.503300003707409, 258023.679299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502070100", "MAP": "A9-744-T009", "PARCEL_NAM": "8-1", "ACRE": "10.00", "LONGITUDE": -64.99535387, "LATITUDE": 18.36034314, "OBJECTID_1": 2048, "PARCEL_NO_": "102502070100", "Tax_Legal_": "8-1 SANTA MARIA NO.1 WEST END QTR", "Name": "BOSCHULTE, JAMES THEODORE", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 389900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1100.24686305, "SHAPE_Area": 42089.719574700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351832.425200000405312, 258941.987900000065565 ], [ 351892.022900000214577, 259045.278299998492002 ], [ 351899.329999998211861, 259039.427499998360872 ], [ 351919.556199997663498, 259031.57149999961257 ], [ 351940.554499998688698, 259027.732500001788139 ], [ 351955.075300000607967, 259027.006999999284744 ], [ 351966.358300000429153, 259027.732599999755621 ], [ 352006.623499996960163, 259033.972800001502037 ], [ 352021.923699997365475, 259036.420099999755621 ], [ 352032.719899997115135, 259037.923200000077486 ], [ 352046.623499996960163, 259027.418299999088049 ], [ 352129.515100002288818, 258961.440999999642372 ], [ 352116.132100000977516, 258957.819899998605251 ], [ 352107.291400000452995, 258954.370099999010563 ], [ 352096.053400002419949, 258948.367499999701977 ], [ 352076.024999998509884, 258933.004799999296665 ], [ 352066.437399998307228, 258922.582800000905991 ], [ 352060.062399998307228, 258913.664700001478195 ], [ 352057.684799998998642, 258908.790100000798702 ], [ 352051.270300000905991, 258904.515700001269579 ], [ 352044.031499996781349, 258902.345499999821186 ], [ 352038.480800002813339, 258891.32319999858737 ], [ 352037.710400000214577, 258887.094999998807907 ], [ 352024.901100002229214, 258876.224399998784065 ], [ 352003.244000002741814, 258862.7483000010252 ], [ 351992.02929999679327, 258854.001600001007318 ], [ 351984.034599997103214, 258845.914700001478195 ], [ 351983.3074000030756, 258836.620600000023842 ], [ 351984.945200003683567, 258833.678700000047684 ], [ 351989.005500003695488, 258830.334399998188019 ], [ 352033.408399999141693, 258824.153900001198053 ], [ 352043.892300002276897, 258824.028599999845028 ], [ 352052.752700001001358, 258825.156599998474121 ], [ 352064.012299999594688, 258828.626299999654293 ], [ 352078.468400001525879, 258835.499600000679493 ], [ 352080.896300002932549, 258834.464000001549721 ], [ 352080.923299998044968, 258831.297800000756979 ], [ 352077.741200000047684, 258826.20549999922514 ], [ 352076.141199998557568, 258824.714800000190735 ], [ 352060.925499998033047, 258812.346799999475479 ], [ 352048.128799997270107, 258799.998700000345707 ], [ 352020.971400000154972, 258769.589999999850988 ], [ 352018.577600002288818, 258766.615100000053644 ], [ 352013.793700002133846, 258760.243099998682737 ], [ 352005.037500001490116, 258746.872600000351667 ], [ 351997.913800001144409, 258731.193399999290705 ], [ 351989.800300002098083, 258737.037599999457598 ], [ 351986.539099998772144, 258741.232700001448393 ], [ 351982.435599997639656, 258749.642900001257658 ], [ 351972.529700003564358, 258776.581799998879433 ], [ 351961.020099997520447, 258802.452100001275539 ], [ 351955.307599999010563, 258810.426899999380112 ], [ 351954.474299997091293, 258813.586500000208616 ], [ 351952.019400000572205, 258817.78830000013113 ], [ 351938.945799998939037, 258837.946299999952316 ], [ 351926.708999998867512, 258854.52250000089407 ], [ 351925.078400000929832, 258856.620099999010563 ], [ 351923.451399996876717, 258858.295499999076128 ], [ 351915.302000001072884, 258868.361299999058247 ], [ 351910.415600001811981, 258874.020799998193979 ], [ 351902.276900000870228, 258882.820199999958277 ], [ 351883.569899998605251, 258901.665500000119209 ], [ 351862.447499997913837, 258920.068799998611212 ], [ 351832.425200000405312, 258941.987900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502070200", "MAP": "A9-744-T009", "PARCEL_NAM": "8-2", "ACRE": null, "LONGITUDE": -64.99382622, "LATITUDE": 18.36121384, "OBJECTID_1": 2049, "PARCEL_NO_": "102502070200", "Tax_Legal_": "8-2 SANTA MARIA NO.1 WEST END QTR", "Name": "BOSCHULTE, LIONEL T.H. & OTHERS", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 540800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 732.95990868199999, "SHAPE_Area": 14827.1923656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352116.713299997150898, 259113.171399999409914 ], [ 352239.516800001263618, 259004.835700001567602 ], [ 352231.275200001895428, 258996.513999998569489 ], [ 352224.679999999701977, 259010.868099998682737 ], [ 352213.266099996864796, 259020.569899998605251 ], [ 352203.564300000667572, 259029.130300000309944 ], [ 352191.579700000584126, 259037.690799999982119 ], [ 352183.019299998879433, 259043.397700000554323 ], [ 352176.170999996364117, 259046.821899998933077 ], [ 352169.893399998545647, 259048.533900000154972 ], [ 352167.610600002110004, 259056.523699998855591 ], [ 352156.196699999272823, 259053.670200001448393 ], [ 352151.060500003397465, 259047.963199999183416 ], [ 352151.060500003397465, 259039.973499998450279 ], [ 352158.479500003159046, 259035.978700000792742 ], [ 352185.872800000011921, 259030.842399999499321 ], [ 352199.569499999284744, 259021.711300000548363 ], [ 352213.266099996864796, 259003.449099998921156 ], [ 352220.114399999380112, 258987.469700001180172 ], [ 352219.543799996376038, 258973.772999998182058 ], [ 352202.422899998724461, 258964.6418999992311 ], [ 352183.019299998879433, 258963.500500001013279 ], [ 352166.87219999730587, 258964.990200001746416 ], [ 352149.133299998939037, 258964.844999998807907 ], [ 352136.2449000030756, 258963.261900000274181 ], [ 352129.515100002288818, 258961.440999999642372 ], [ 352046.623499996960163, 259027.418299999088049 ], [ 352032.719899997115135, 259037.923200000077486 ], [ 352042.864399999380112, 259039.335700001567602 ], [ 352071.726300001144409, 259058.992499999701977 ], [ 352083.72919999808073, 259069.856499999761581 ], [ 352106.084799997508526, 259096.004000000655651 ], [ 352114.054399996995926, 259107.046100001782179 ], [ 352116.713299997150898, 259113.171399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97889081, "LATITUDE": 18.37017384, "OBJECTID_1": 298, "PARCEL_NO_": "101003040300", "Tax_Legal_": "2E-51 CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "SEAMOUNT PROPERTIES, LLC", "Address": "NISKY PMB #611", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 574000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 423.27869268199998, "SHAPE_Area": 1515.56073313 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353787.440499998629093, 260090.554800000041723 ], [ 353778.053099997341633, 260087.474599998444319 ], [ 353775.073299996554852, 260090.002599999308586 ], [ 353765.978411019721534, 260087.921117034071358 ], [ 353757.049463076109532, 260085.214926823420683 ], [ 353748.329310766770504, 260081.897017762239557 ], [ 353739.859806575463153, 260077.983314197947038 ], [ 353731.681599996984005, 260073.492600001394749 ], [ 353726.91630063316552, 260069.573360152513487 ], [ 353722.454255186428782, 260065.312061119329883 ], [ 353718.31995691685006, 260060.732094215753023 ], [ 353714.536100000143051, 260055.858600001782179 ], [ 353711.996500000357628, 260052.114199999719858 ], [ 353688.289800003170967, 260004.489100001752377 ], [ 353683.966605459980201, 259995.827991874044528 ], [ 353680.159533229307272, 259986.927935352432542 ], [ 353676.881725713959895, 259977.81965434277663 ], [ 353674.14449824107578, 259968.534591563278809 ], [ 353671.957299999892712, 259959.104800000786781 ], [ 353660.708499997854233, 259954.368599999696016 ], [ 353653.34740000218153, 259966.55180000141263 ], [ 353658.675470921793021, 259971.024645214318298 ], [ 353663.520873718196526, 259976.016313849569997 ], [ 353667.833332189649809, 259981.475012041948503 ], [ 353671.568099997937679, 259987.344099998474121 ], [ 353674.714119202049915, 259995.093939457437955 ], [ 353678.402426433109213, 260002.600858815101674 ], [ 353682.614406212000176, 260009.826969443558482 ], [ 353687.32880000025034, 260016.735800001770258 ], [ 353702.187600001692772, 260046.051899999380112 ], [ 353703.146600000560284, 260047.943999998271465 ], [ 353711.556199997663498, 260062.107500001788139 ], [ 353726.1621999964118, 260076.713500000536442 ], [ 353727.05349999666214, 260077.267499998211861 ], [ 353742.538699999451637, 260086.893500000238419 ], [ 353763.3412000015378, 260093.532600000500679 ], [ 353775.745600000023842, 260097.527199998497963 ], [ 353783.039800003170967, 260099.876200001686811 ], [ 353783.077299997210503, 260099.888300001621246 ], [ 353783.348499998450279, 260099.298599999397993 ], [ 353786.582800000905991, 260092.266199998557568 ], [ 353787.440499998629093, 260090.554800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97892328, "LATITUDE": 18.37114099, "OBJECTID_1": 298, "PARCEL_NO_": "101003040300", "Tax_Legal_": "2E-51 CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "SEAMOUNT PROPERTIES, LLC", "Address": "NISKY PMB #611", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 574000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 501.35060834299998, "SHAPE_Area": 2158.8514423400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353654.017200000584126, 260107.695999998599291 ], [ 353658.443300001323223, 260119.64640000090003 ], [ 353682.344099998474121, 260162.136700000613928 ], [ 353688.097999997437, 260173.644499998539686 ], [ 353701.376199997961521, 260192.234000001102686 ], [ 353710.228399999439716, 260199.315699998289347 ], [ 353717.310099996626377, 260193.561799999326468 ], [ 353717.752700001001358, 260189.578400000929832 ], [ 353715.539599999785423, 260184.709699999541044 ], [ 353709.343099996447563, 260183.824499998241663 ], [ 353696.507500000298023, 260168.333200000226498 ], [ 353690.310999996960163, 260157.26799999922514 ], [ 353666.410199999809265, 260116.548200000077486 ], [ 353664.639799997210503, 260113.00730000063777 ], [ 353664.639799997210503, 260110.351700000464916 ], [ 353665.967600002884865, 260109.466400001198053 ], [ 353669.508500002324581, 260111.236900001764297 ], [ 353682.786700002849102, 260118.318599998950958 ], [ 353696.507500000298023, 260127.613299999386072 ], [ 353711.998800002038479, 260130.269000001251698 ], [ 353731.473499998450279, 260129.383799999952316 ], [ 353747.850000001490116, 260124.957699999213219 ], [ 353770.422899998724461, 260114.777699999511242 ], [ 353778.161300003528595, 260110.576900001615286 ], [ 353783.077299997210503, 260099.888300001621246 ], [ 353775.745600000023842, 260097.527199998497963 ], [ 353772.635999999940395, 260105.482999999076128 ], [ 353759.800399996340275, 260113.892499998211861 ], [ 353746.964800000190735, 260117.875999998301268 ], [ 353724.391800001263618, 260121.416799999773502 ], [ 353715.097000002861023, 260121.416799999773502 ], [ 353700.49099999666214, 260118.318599998950958 ], [ 353687.2128000035882, 260109.466400001198053 ], [ 353666.852899998426437, 260099.729100000113249 ], [ 353658.000699996948242, 260101.942099999636412 ], [ 353654.017200000584126, 260107.695999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003042400", "MAP": "D9-7827-T006", "PARCEL_NAM": "2E-51-24", "ACRE": ".544", "LONGITUDE": -64.97924346000001, "LATITUDE": 18.37045171, "OBJECTID_1": 331, "PARCEL_NO_": "101003042400", "Tax_Legal_": "CARET BAY 2E-51-24 No.8 LT. NORTHSIDE", "Name": "CARET BAY REVOCABLE TRUST", "Address": "PO Box 306212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 166600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.45281222200001, "SHAPE_Area": 2475.9453798499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353702.187600001692772, 260046.051899999380112 ], [ 353687.32880000025034, 260016.735800001770258 ], [ 353638.485600002110004, 260064.013799998909235 ], [ 353637.907700002193451, 260075.138599999248981 ], [ 353656.807599999010563, 260103.665500000119209 ], [ 353658.000699996948242, 260101.942099999636412 ], [ 353666.852899998426437, 260099.729100000113249 ], [ 353662.869400002062321, 260087.336100000888109 ], [ 353702.187600001692772, 260046.051899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003042500", "MAP": "D9-7827-T006", "PARCEL_NAM": "2E-51-25", "ACRE": ".500", "LONGITUDE": -64.9793353, "LATITUDE": 18.37005003, "OBJECTID_1": 332, "PARCEL_NO_": "101003042500", "Tax_Legal_": "2E-51-25 CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "WILLIAMS, LAWRENCE F. & KIMBEREY L.", "Address": "PO Box 6851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 103000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.04201124100001, "SHAPE_Area": 2259.9155659100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353653.34740000218153, 259966.55180000141263 ], [ 353639.836800001561642, 260038.001899998635054 ], [ 353638.485600002110004, 260064.013799998909235 ], [ 353687.32880000025034, 260016.735800001770258 ], [ 353682.614406212000176, 260009.826969443558482 ], [ 353678.402426433109213, 260002.600858815101674 ], [ 353674.714119202049915, 259995.093939457437955 ], [ 353671.568099997937679, 259987.344099998474121 ], [ 353667.833332189649809, 259981.475012041948503 ], [ 353663.520873718196526, 259976.016313849569997 ], [ 353658.675470921793021, 259971.024645214318298 ], [ 353653.34740000218153, 259966.55180000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003042200", "MAP": "D9-7827-T006", "PARCEL_NAM": "2E-51-22", "ACRE": ".531", "LONGITUDE": -64.9785951, "LATITUDE": 18.37084439, "OBJECTID_1": 329, "PARCEL_NO_": "101003042200", "Tax_Legal_": "CARET BAY 2E-51-22 LT. NORTHSIDE", "Name": "PEPPER, ETHAN M. & ANGELA C.", "Address": "418 Ohana Nui Cir", "City": "Honolulu", "State": "Hawaii", "Zip": 96818, "Country": "United States", "Land_Value": 164200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.39796065300001, "SHAPE_Area": 1860.79399487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353742.538699999451637, 260086.893500000238419 ], [ 353727.05349999666214, 260077.267499998211861 ], [ 353700.49099999666214, 260118.318599998950958 ], [ 353715.097000002861023, 260121.416799999773502 ], [ 353724.391800001263618, 260121.416799999773502 ], [ 353746.964800000190735, 260117.875999998301268 ], [ 353759.800399996340275, 260113.892499998211861 ], [ 353772.635999999940395, 260105.482999999076128 ], [ 353775.745600000023842, 260097.527199998497963 ], [ 353763.3412000015378, 260093.532600000500679 ], [ 353742.538699999451637, 260086.893500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003042300", "MAP": "D9-7827-T006", "PARCEL_NAM": "2E-51-23", "ACRE": ".505", "LONGITUDE": -64.97898741, "LATITUDE": 18.3706748, "OBJECTID_1": 330, "PARCEL_NO_": "101003042300", "Tax_Legal_": "CARET BAY 2E-51-23 No.8 LT. NORTHSIDE", "Name": "GRIFFITH, SAL A. & MARIE E. THOMAS", "Address": "PO Box 306212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 128000, "Improved_V": 872600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.75002602800001, "SHAPE_Area": 2399.56711842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353703.146600000560284, 260047.943999998271465 ], [ 353702.187600001692772, 260046.051899999380112 ], [ 353662.869400002062321, 260087.336100000888109 ], [ 353666.852899998426437, 260099.729100000113249 ], [ 353687.2128000035882, 260109.466400001198053 ], [ 353700.49099999666214, 260118.318599998950958 ], [ 353727.05349999666214, 260077.267499998211861 ], [ 353726.1621999964118, 260076.713500000536442 ], [ 353711.556199997663498, 260062.107500001788139 ], [ 353703.146600000560284, 260047.943999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97933866, "LATITUDE": 18.37116081, "OBJECTID_1": 298, "PARCEL_NO_": "101003040300", "Tax_Legal_": "2E-51 CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "SEAMOUNT PROPERTIES, LLC", "Address": "NISKY PMB #611", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 574000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.36808176900001, "SHAPE_Area": 1902.1725618099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353637.907700002193451, 260075.138599999248981 ], [ 353640.791299998760223, 260115.269999999552965 ], [ 353646.954099997878075, 260149.095400001853704 ], [ 353655.233599998056889, 260173.443500000983477 ], [ 353688.348600000143051, 260173.995400000363588 ], [ 353688.097999997437, 260173.644499998539686 ], [ 353682.344099998474121, 260162.136700000613928 ], [ 353658.443300001323223, 260119.64640000090003 ], [ 353654.017200000584126, 260107.695999998599291 ], [ 353656.807599999010563, 260103.665500000119209 ], [ 353637.907700002193451, 260075.138599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003043000", "MAP": "D9-7827-T006", "PARCEL_NAM": "2E-51-30", "ACRE": ".65", "LONGITUDE": -64.97916097, "LATITUDE": 18.37177952, "OBJECTID_1": 336, "PARCEL_NO_": "101003043000", "Tax_Legal_": "2E-51-30 CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "THOMAS, IAN R. & SHERRON M.", "Address": "PO Box 304573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 215600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.73263285799999, "SHAPE_Area": 2245.5804884700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353655.233599998056889, 260173.443500000983477 ], [ 353657.967399999499321, 260181.482900001108646 ], [ 353662.285499997437, 260242.52419999986887 ], [ 353688.09740000218153, 260242.91330000013113 ], [ 353696.441699996590614, 260185.325699999928474 ], [ 353688.348600000143051, 260173.995400000363588 ], [ 353655.233599998056889, 260173.443500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003042900", "MAP": "D9-7827-T006", "PARCEL_NAM": "2E-51-29", "ACRE": ".89", "LONGITUDE": -64.97880804, "LATITUDE": 18.37180621, "OBJECTID_1": 335, "PARCEL_NO_": "101003042900", "Tax_Legal_": "2E-51-29 CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "MATITI TRUST", "Address": "PO Box 9319", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 264300, "Improved_V": 193900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.26871462299999, "SHAPE_Area": 2253.8532811800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353688.09740000218153, 260242.91330000013113 ], [ 353692.923600003123283, 260242.986099999397993 ], [ 353701.635999999940395, 260244.866300001740456 ], [ 353712.24099999666214, 260247.155000001192093 ], [ 353746.547700002789497, 260176.454500000923872 ], [ 353703.447899997234344, 260176.709499999880791 ], [ 353709.343099996447563, 260183.824499998241663 ], [ 353715.539599999785423, 260184.709699999541044 ], [ 353717.752700001001358, 260189.578400000929832 ], [ 353717.310099996626377, 260193.561799999326468 ], [ 353710.228399999439716, 260199.315699998289347 ], [ 353701.376199997961521, 260192.234000001102686 ], [ 353696.441699996590614, 260185.325699999928474 ], [ 353688.09740000218153, 260242.91330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103001042600", "MAP": "D9-7827-T006", "PARCEL_NAM": "2e-51-26", "ACRE": ".64", "LONGITUDE": -64.97892411, "LATITUDE": 18.37123771, "OBJECTID_1": 5284, "PARCEL_NO_": "103001042600", "Tax_Legal_": "CARET BAY 2E-51-26 No.8 LT. NORTHSIDE", "Name": "RAFFA, MATTHEW M & RICHARD SCOTT DASHER", "Address": "PO Box 8117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 189800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.08539733800001, "SHAPE_Area": 2053.4192913000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353664.639799997210503, 260110.351700000464916 ], [ 353664.639799997210503, 260113.00730000063777 ], [ 353666.410199999809265, 260116.548200000077486 ], [ 353690.310999996960163, 260157.26799999922514 ], [ 353696.507500000298023, 260168.333200000226498 ], [ 353703.447899997234344, 260176.709499999880791 ], [ 353728.439699999988079, 260176.561700001358986 ], [ 353721.568000003695488, 260129.833999998867512 ], [ 353711.998800002038479, 260130.269000001251698 ], [ 353696.507500000298023, 260127.613299999386072 ], [ 353682.786700002849102, 260118.318599998950958 ], [ 353669.508500002324581, 260111.236900001764297 ], [ 353665.967600002884865, 260109.466400001198053 ], [ 353664.639799997210503, 260110.351700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003042700", "MAP": "D9-7827-T006", "PARCEL_NAM": "2e-51-27", "ACRE": ".523", "LONGITUDE": -64.97851218, "LATITUDE": 18.37122333, "OBJECTID_1": 333, "PARCEL_NO_": "101003042700", "Tax_Legal_": "CARET BAY 2E-51-27 LT. NORTHSIDE", "Name": "PAULETTE K PILIPAUSKIS REVOC TR", "Address": "1106 Corinth Greens Dr", "City": "Sun City Center", "State": "Florida", "Zip": 335738065, "Country": "United States", "Land_Value": 161900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.85867232699999, "SHAPE_Area": 1850.9940665500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353721.568000003695488, 260129.833999998867512 ], [ 353728.439699999988079, 260176.561700001358986 ], [ 353746.547700002789497, 260176.454500000923872 ], [ 353771.750799998641014, 260124.515099998563528 ], [ 353778.161300003528595, 260110.576900001615286 ], [ 353770.422899998724461, 260114.777699999511242 ], [ 353747.850000001490116, 260124.957699999213219 ], [ 353731.473499998450279, 260129.383799999952316 ], [ 353721.568000003695488, 260129.833999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003028800", "MAP": "D9-9067-T016", "PARCEL_NAM": "2E-51-21", "ACRE": "3.14", "LONGITUDE": -64.97819993, "LATITUDE": 18.36999063, "OBJECTID_1": 239, "PARCEL_NO_": "101003028800", "Tax_Legal_": "2E-51-21 & 2E-50-B-4 CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "CLARK, DANIEL W. & KATHLEEN R.&HOLZMAN, D.M.& WALSH, C.L.", "Address": "PO BOX 305071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 284600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 469.95124759200002, "SHAPE_Area": 10530.968503 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353824.071699999272823, 259993.069200001657009 ], [ 353848.079599998891354, 259947.192899998277426 ], [ 353819.46679999679327, 259942.48589999973774 ], [ 353819.438000001013279, 259942.472899999469519 ], [ 353774.53830000013113, 259922.223200000822544 ], [ 353774.383400000631809, 259926.632199998944998 ], [ 353775.281099997460842, 259934.386999998241663 ], [ 353777.963299997150898, 259943.943999998271465 ], [ 353782.217600002884865, 259951.844700001180172 ], [ 353776.393700003623962, 259960.380399998277426 ], [ 353775.525637361628469, 259959.879267781565432 ], [ 353774.584675697959028, 259959.533931139158085 ], [ 353773.598525497596711, 259959.354559928295203 ], [ 353772.596228007576428, 259959.346436471823836 ], [ 353771.607299998402596, 259959.509799998253584 ], [ 353749.704000003635883, 259984.28830000013113 ], [ 353733.886200003325939, 260024.654500000178814 ], [ 353716.424900002777576, 260052.812699999660254 ], [ 353714.536100000143051, 260055.858600001782179 ], [ 353718.31995691685006, 260060.732094215753023 ], [ 353722.454255186428782, 260065.312061119329883 ], [ 353726.91630063316552, 260069.573360152513487 ], [ 353731.681599996984005, 260073.492600001394749 ], [ 353739.859806575463153, 260077.983314197947038 ], [ 353748.329310766770504, 260081.897017762239557 ], [ 353757.049463076109532, 260085.214926823420683 ], [ 353765.978411019721534, 260087.921117034071358 ], [ 353775.073299996554852, 260090.002599999308586 ], [ 353778.053099997341633, 260087.474599998444319 ], [ 353806.990900002419949, 260028.1097999997437 ], [ 353824.071699999272823, 259993.069200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003042800", "MAP": "D9-8380-T009", "PARCEL_NAM": "2E-51-20", "ACRE": ".877", "LONGITUDE": -64.97884459, "LATITUDE": 18.3699352, "OBJECTID_1": 334, "PARCEL_NO_": "101003042800", "Tax_Legal_": "2E-51-20 CARET BAY (WEST) 8 LITTLE NORTHSIDE QTR", "Name": "BUSHFIELD, CHARLES W. & CAROLYNN L., TRUSTEES", "Address": "2594 S Kilmer St", "City": "LAKEWOOD", "State": "Colorado", "Zip": 80228, "Country": "United States", "Land_Value": 245500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.638212866, "SHAPE_Area": 3415.2997718500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353724.1824000030756, 259981.27479999884963 ], [ 353671.957299999892712, 259959.104800000786781 ], [ 353674.14449824107578, 259968.534591563278809 ], [ 353676.881725713959895, 259977.81965434277663 ], [ 353680.159533229307272, 259986.927935352432542 ], [ 353683.966605459980201, 259995.827991874044528 ], [ 353688.289800003170967, 260004.489100001752377 ], [ 353711.996500000357628, 260052.114199999719858 ], [ 353714.536100000143051, 260055.858600001782179 ], [ 353716.424900002777576, 260052.812699999660254 ], [ 353733.886200003325939, 260024.654500000178814 ], [ 353749.704000003635883, 259984.28830000013113 ], [ 353724.1824000030756, 259981.27479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601013800", "MAP": "D9-8183-T008", "PARCEL_NAM": "63-1", "ACRE": "5.506", "LONGITUDE": -64.97445766, "LATITUDE": 18.36236675, "OBJECTID_1": 2207, "PARCEL_NO_": "102601013800", "Tax_Legal_": "63-1 CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, CHRISTIAN G. & ERMIN S. (TRUSTEES)", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040440, "Country": "United States", "Land_Value": 504400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 584.04361158500001, "SHAPE_Area": 20136.559011400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354266.253799997270107, 259120.915600001811981 ], [ 354111.350100003182888, 259077.275100000202656 ], [ 354108.068800002336502, 259122.943900000303984 ], [ 354110.4121999964118, 259131.829100001603365 ], [ 354120.142599999904633, 259220.145799998193979 ], [ 354120.920100003480911, 259223.529699999839067 ], [ 354187.615699999034405, 259250.884399998933077 ], [ 354234.221799999475479, 259270.053199999034405 ], [ 354244.623999997973442, 259184.856499999761581 ], [ 354258.687399998307228, 259143.17509999871254 ], [ 354263.906700000166893, 259127.820500001311302 ], [ 354266.253799997270107, 259120.915600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603020800", "MAP": "D9-8479-T010", "PARCEL_NAM": "2Aa-8", "ACRE": "1.016", "LONGITUDE": -64.97474051, "LATITUDE": 18.35292547, "OBJECTID_1": 2580, "PARCEL_NO_": "102603020800", "Tax_Legal_": "2AA CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "SUN ISLAND HOMES INC", "Address": "BOX 3648", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 152000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.28765563900001, "SHAPE_Area": 3979.1261203499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354193.79839999973774, 258151.485700000077486 ], [ 354191.270000003278255, 258100.798900000751019 ], [ 354158.817299999296665, 258082.564399998635054 ], [ 354124.779399998486042, 258107.931800000369549 ], [ 354130.009999997913837, 258156.526099998503923 ], [ 354193.79839999973774, 258151.485700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603023800", "MAP": "D9-8479-T010", "PARCEL_NAM": null, "ACRE": ".504", "LONGITUDE": -64.97431205, "LATITUDE": 18.35250274, "OBJECTID_1": 2608, "PARCEL_NO_": "102603023800", "Tax_Legal_": "2AA-8B CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "HATCHETTE, EFRAIN A. & REYES, BRENDA L.", "Address": "P.O.BOX 2472", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.269379958, "SHAPE_Area": 2774.93796445 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354191.270000003278255, 258100.798900000751019 ], [ 354239.501199997961521, 258095.255399998277426 ], [ 354234.066699996590614, 258057.741599999368191 ], [ 354230.882799997925758, 258052.860399998724461 ], [ 354226.064699999988079, 258050.4989 ], [ 354223.649400003254414, 258050.057000000029802 ], [ 354218.01240000128746, 258049.166499998420477 ], [ 354210.744800001382828, 258050.373599998652935 ], [ 354205.093400001525879, 258051.171700000762939 ], [ 354195.381700001657009, 258055.314100001007318 ], [ 354158.817299999296665, 258082.564399998635054 ], [ 354191.270000003278255, 258100.798900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603023900", "MAP": "D9-8479-T010", "PARCEL_NAM": null, "ACRE": "0.507", "LONGITUDE": -64.97421583000001, "LATITUDE": 18.35291964, "OBJECTID_1": 2609, "PARCEL_NO_": "102603023900", "Tax_Legal_": "2AA-8A CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "RODNEY K ROGERS and SHEILA M DANIEL", "Address": "6415 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.73979763899999, "SHAPE_Area": 2335.6015830699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354239.501199997961521, 258095.255399998277426 ], [ 354191.270000003278255, 258100.798900000751019 ], [ 354193.79839999973774, 258151.485700000077486 ], [ 354226.839400000870228, 258148.874899998307228 ], [ 354232.492600001394749, 258147.865699999034405 ], [ 354236.631999999284744, 258135.234000001102686 ], [ 354238.327399998903275, 258125.537500001490116 ], [ 354238.375900000333786, 258119.83839999884367 ], [ 354239.266800001263618, 258109.924300000071526 ], [ 354239.286499999463558, 258107.602400001138449 ], [ 354240.159400001168251, 258099.799100000411272 ], [ 354239.501199997961521, 258095.255399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97670525, "LATITUDE": 18.36694638, "OBJECTID_1": 155, "PARCEL_NO_": "101003020200", "Tax_Legal_": "CARET BAY ESTATE 2B LITTLE NORTHSIDE QTR", "Name": "BERETTA, GEORGE", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 310500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 491.74788284300001, "SHAPE_Area": 8810.8420205300008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353857.94539999961853, 259708.370200000703335 ], [ 353944.365599997341633, 259746.749000001698732 ], [ 353988.3496999964118, 259640.40989999845624 ], [ 353999.871899999678135, 259613.061999998986721 ], [ 354001.520499996840954, 259608.85359999909997 ], [ 353980.741499997675419, 259586.940900001674891 ], [ 353962.99549999833107, 259587.640099998563528 ], [ 353948.183399997651577, 259622.560400001704693 ], [ 353914.513199999928474, 259694.056600000709295 ], [ 353870.320600003004074, 259675.540899999439716 ], [ 353857.94539999961853, 259708.370200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97751663, "LATITUDE": 18.36737403, "OBJECTID_1": 155, "PARCEL_NO_": "101003020200", "Tax_Legal_": "CARET BAY ESTATE 2B LITTLE NORTHSIDE QTR", "Name": "BERETTA, GEORGE", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 310500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.77862785763999998, "SHAPE_Area": 0.02869961498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353853.573600001633167, 259720.150400001555681 ], [ 353853.844200000166893, 259720.064699999988079 ], [ 353853.662900000810623, 259719.910000000149012 ], [ 353853.573600001633167, 259720.150400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003028400", "MAP": "D9-6519-T98", "PARCEL_NAM": "2B-D-2", "ACRE": "1.064", "LONGITUDE": -64.97705491000001, "LATITUDE": 18.36774765, "OBJECTID_1": 235, "PARCEL_NO_": "101003028400", "Tax_Legal_": "2B-D-2 ESTATE CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "WILLIAMS, LESLIE ANN", "Address": "PO Box 997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 90400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.82605432899999, "SHAPE_Area": 4187.7395966200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353862.909599997103214, 259779.414700001478195 ], [ 353918.972000002861023, 259806.232099998742342 ], [ 353931.554300002753735, 259776.100400000810623 ], [ 353934.833499997854233, 259769.794399999082088 ], [ 353944.365599997341633, 259746.749000001698732 ], [ 353864.798799999058247, 259711.413699999451637 ], [ 353866.476400002837181, 259713.815999999642372 ], [ 353869.221500001847744, 259716.08500000089407 ], [ 353871.840000003576279, 259718.477699998766184 ], [ 353874.200400002300739, 259721.742300000041723 ], [ 353875.315800003707409, 259723.623799998313189 ], [ 353876.797100000083447, 259726.881400000303984 ], [ 353877.653399996459484, 259729.759500000625849 ], [ 353878.378100000321865, 259733.385600000619888 ], [ 353878.465999998152256, 259738.130199998617172 ], [ 353878.312600001692772, 259741.624499998986721 ], [ 353877.405699998140335, 259745.112799998372793 ], [ 353875.998400002717972, 259748.347500000149012 ], [ 353867.837600000202656, 259763.762699998915195 ], [ 353866.307700000703335, 259766.621800001710653 ], [ 353865.15259999781847, 259769.733600001782179 ], [ 353864.386200003325939, 259771.350400000810623 ], [ 353863.600900001823902, 259775.339000001549721 ], [ 353863.083599999547005, 259777.207499999552965 ], [ 353862.909599997103214, 259779.414700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003029000", "MAP": "D9-6519-T98", "PARCEL_NAM": "2B-D-3", "ACRE": "0.539", "LONGITUDE": -64.97720626, "LATITUDE": 18.36820775, "OBJECTID_1": 241, "PARCEL_NO_": "101003029000", "Tax_Legal_": "2B-D-3 ESTATE CARET BAY (Western Section) NO.8 LITTLE NORTHSIDE QTR", "Name": "WIEBRACHT, THOMAS MATHIAS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 139600, "Improved_V": 200400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.75925627800001, "SHAPE_Area": 2326.0725078700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353918.972000002861023, 259806.232099998742342 ], [ 353862.909599997103214, 259779.414700001478195 ], [ 353862.385200001299381, 259786.065499998629093 ], [ 353860.910499997437, 259797.788699999451637 ], [ 353860.498000003397465, 259802.279599998146296 ], [ 353859.433700002729893, 259809.761500000953674 ], [ 353859.207599997520447, 259810.697500001639128 ], [ 353856.966099999845028, 259819.978700000792742 ], [ 353856.420199997723103, 259822.0016999989748 ], [ 353901.61429999768734, 259844.439599998295307 ], [ 353907.005599997937679, 259833.877000000327826 ], [ 353909.329000003635883, 259829.325100000947714 ], [ 353918.972000002861023, 259806.232099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003028900", "MAP": "D9-6519-T98", "PARCEL_NAM": "2B-D-4", "ACRE": "0.529", "LONGITUDE": -64.97733541, "LATITUDE": 18.3685528, "OBJECTID_1": 240, "PARCEL_NO_": "101003028900", "Tax_Legal_": "2B-D-4 CARET BAY 8 LITTLE NORTHSIDE QUARTER", "Name": "HODGE, CARLEEN J.", "Address": "17191 Quail Park Dr", "City": "Missouri City", "State": "Texas", "Zip": 77489, "Country": "United States", "Land_Value": 75000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.64160898200001, "SHAPE_Area": 1802.6006963699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353901.61429999768734, 259844.439599998295307 ], [ 353856.420199997723103, 259822.0016999989748 ], [ 353851.789700001478195, 259839.16270000115037 ], [ 353844.402500003576279, 259860.815000001341105 ], [ 353884.625, 259877.354499999433756 ], [ 353893.450599998235703, 259860.432799998670816 ], [ 353893.499799996614456, 259860.337400000542402 ], [ 353901.61429999768734, 259844.439599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003028200", "MAP": "D9-5162-T91", "PARCEL_NAM": "2B-D-1", "ACRE": null, "LONGITUDE": -64.97766279, "LATITUDE": 18.36754221, "OBJECTID_1": 233, "PARCEL_NO_": "101003028200", "Tax_Legal_": "CARET BAY 2B-D-1 LITTLE NORTHSIDE", "Name": "BAIG, SHAKIL & SEEMA", "Address": "PO Box 10447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.926106199, "SHAPE_Area": 1688.03129165 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353853.573600001633167, 259720.150400001555681 ], [ 353830.646899998188019, 259710.222899999469519 ], [ 353807.40820000320673, 259773.831199999898672 ], [ 353826.858999997377396, 259760.128600001335144 ], [ 353841.173100002110004, 259753.565000001341105 ], [ 353859.507700003683567, 259745.157800000160933 ], [ 353861.907799996435642, 259743.429099999368191 ], [ 353869.41610000282526, 259738.325199998915195 ], [ 353869.679200001060963, 259737.498599998652935 ], [ 353869.625900000333786, 259736.312199998646975 ], [ 353869.509700000286102, 259735.125300001353025 ], [ 353869.018799997866154, 259733.685699999332428 ], [ 353868.086300000548363, 259732.492400001734495 ], [ 353865.905299998819828, 259730.352699998766184 ], [ 353853.844200000166893, 259720.064699999988079 ], [ 353853.573600001633167, 259720.150400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97188422000001, "LATITUDE": 18.35305126, "OBJECTID_1": 2694, "PARCEL_NO_": "102604020300", "Tax_Legal_": "CROWN&HAWK ESTATE 6B REMAINDER No.3 SOUTHSIDE QTR.", "Name": "FRANCOIS, PEDRITO-TRUSTEE", "Address": "PO Box 66", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 131800, "Improved_V": 153400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.83033713699999, "SHAPE_Area": 906.50079586000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354447.683200001716614, 258160.758799999952316 ], [ 354454.546800002455711, 258156.429800000041723 ], [ 354461.554099999368191, 258153.121399998664856 ], [ 354486.991400003433228, 258146.595899999141693 ], [ 354488.480499997735023, 258145.556499999016523 ], [ 354488.700400002300739, 258144.506900001317263 ], [ 354487.651199996471405, 258143.447200000286102 ], [ 354486.172100000083447, 258143.225099999457598 ], [ 354448.076499998569489, 258114.588599998503923 ], [ 354447.683200001716614, 258160.758799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97195271, "LATITUDE": 18.35281811, "OBJECTID_1": 2694, "PARCEL_NO_": "102604020300", "Tax_Legal_": "CROWN&HAWK ESTATE 6B REMAINDER No.3 SOUTHSIDE QTR.", "Name": "FRANCOIS, PEDRITO-TRUSTEE", "Address": "PO Box 66", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 131800, "Improved_V": 153400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.5756735128299999, "SHAPE_Area": 0.05494548052 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354454.196099996566772, 258113.609299998730421 ], [ 354454.921800002455711, 258113.83500000089407 ], [ 354454.517399996519089, 258113.557799998670816 ], [ 354454.196099996566772, 258113.609299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97177016000001, "LATITUDE": 18.35318322, "OBJECTID_1": 2694, "PARCEL_NO_": "102604020300", "Tax_Legal_": "CROWN&HAWK ESTATE 6B REMAINDER No.3 SOUTHSIDE QTR.", "Name": "FRANCOIS, PEDRITO-TRUSTEE", "Address": "PO Box 66", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 131800, "Improved_V": 153400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.23452231099998, "SHAPE_Area": 983.83464025299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354454.921800002455711, 258113.83500000089407 ], [ 354454.196099996566772, 258113.609299998730421 ], [ 354448.076499998569489, 258114.588599998503923 ], [ 354486.172100000083447, 258143.225099999457598 ], [ 354487.651199996471405, 258143.447200000286102 ], [ 354488.700400002300739, 258144.506900001317263 ], [ 354488.480499997735023, 258145.556499999016523 ], [ 354486.991400003433228, 258146.595899999141693 ], [ 354461.554099999368191, 258153.121399998664856 ], [ 354454.546800002455711, 258156.429800000041723 ], [ 354447.683200001716614, 258160.758799999952316 ], [ 354447.626299999654293, 258167.433299999684095 ], [ 354451.4695999994874, 258170.913600001484156 ], [ 354459.056100003421307, 258174.548700001090765 ], [ 354500.710500001907349, 258183.413699999451637 ], [ 354504.788800001144409, 258177.958700001239777 ], [ 354462.484200000762939, 258169.109099999070168 ], [ 354460.373999997973442, 258168.461500000208616 ], [ 354457.640900000929832, 258166.337000001221895 ], [ 354457.451200000941753, 258163.602000001817942 ], [ 354458.948600001633167, 258161.511300001293421 ], [ 354461.072300001978874, 258160.47690000012517 ], [ 354487.995399996638298, 258153.332499999552965 ], [ 354492.659100003540516, 258152.1081000007689 ], [ 354494.363099999725819, 258150.64979999884963 ], [ 354495.4375, 258148.555700000375509 ], [ 354495.873999997973442, 258146.877099998295307 ], [ 354495.894100002944469, 258144.353999998420477 ], [ 354495.491200000047684, 258141.827599998563528 ], [ 354493.599200002849102, 258140.340599998831749 ], [ 354454.921800002455711, 258113.83500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97211756, "LATITUDE": 18.35256379, "OBJECTID_1": 2735, "PARCEL_NO_": "102604025000", "Tax_Legal_": "7-2 ESTATE CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "FRANCOIS, DARRYL", "Address": "212 Guthrie Ave", "City": "Alexandria", "State": "Virginia", "Zip": 22305, "Country": "United States", "Land_Value": 71100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 360.96790715999998, "SHAPE_Area": 1426.3651193600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354454.196099996566772, 258113.609299998730421 ], [ 354445.207400001585484, 258107.363000001758337 ], [ 354442.677400000393391, 258106.291499998420477 ], [ 354440.563799999654293, 258106.064399998635054 ], [ 354438.443400003015995, 258106.678199999034405 ], [ 354435.895000003278255, 258107.91950000077486 ], [ 354433.128300003707409, 258110.000100001692772 ], [ 354429.522200003266335, 258111.232900001108646 ], [ 354416.410700000822544, 258110.707800000905991 ], [ 354413.877400003373623, 258110.056800000369549 ], [ 354411.34740000218153, 258108.985199999064207 ], [ 354409.457099996507168, 258107.287999998778105 ], [ 354407.989799998700619, 258105.594200000166893 ], [ 354408.004900000989437, 258103.701900001615286 ], [ 354409.507399998605251, 258100.980399999767542 ], [ 354430.729099996387959, 258066.035100001841784 ], [ 354454.752999998629093, 258077.581199999898672 ], [ 354455.594099998474121, 258078.218699999153614 ], [ 354455.585699997842312, 258079.269999999552965 ], [ 354454.939300000667572, 258080.736699998378754 ], [ 354461.676399998366833, 258084.785599999129772 ], [ 354462.745800003409386, 258083.322200000286102 ], [ 354463.385399997234344, 258082.69649999961257 ], [ 354464.025100000202656, 258082.070799998939037 ], [ 354466.565099999308586, 258081.880899999290705 ], [ 354487.85080000013113, 258091.933299999684095 ], [ 354491.925300002098083, 258085.026999998837709 ], [ 354440.508100003004074, 258060.015299998223782 ], [ 354436.295999996364117, 258057.668800000101328 ], [ 354432.07209999859333, 258056.793999999761581 ], [ 354427.839800000190735, 258056.970499999821186 ], [ 354424.237000003457069, 258057.782800000160933 ], [ 354421.898500002920628, 258059.236000001430511 ], [ 354420.167599998414516, 258064.058400001376867 ], [ 354407.705899998545647, 258088.139699999243021 ], [ 354404.484300002455711, 258094.211800001561642 ], [ 354401.484300002455711, 258099.024000000208616 ], [ 354400.386399999260902, 258104.061700001358986 ], [ 354401.400399997830391, 258109.536699999123812 ], [ 354406.230400003492832, 258113.990800000727177 ], [ 354409.390000000596046, 258115.69819999858737 ], [ 354413.192500002682209, 258116.359299998730421 ], [ 354422.922899998724461, 258116.436999998986721 ], [ 354435.782799996435642, 258116.47859999909997 ], [ 354448.076499998569489, 258114.588599998503923 ], [ 354454.196099996566772, 258113.609299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604025000", "MAP": "D9-3823-T87", "PARCEL_NAM": null, "ACRE": ".61", "LONGITUDE": -64.9716689, "LATITUDE": 18.35227146, "OBJECTID_1": 2735, "PARCEL_NO_": "102604025000", "Tax_Legal_": "7-2 ESTATE CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "FRANCOIS, DARRYL", "Address": "212 Guthrie Ave", "City": "Alexandria", "State": "Virginia", "Zip": 22305, "Country": "United States", "Land_Value": 71100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.01099635700001, "SHAPE_Area": 2538.6182724400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354486.653499998152256, 258082.462600000202656 ], [ 354541.455099999904633, 258024.673200000077486 ], [ 354541.414300002157688, 258024.683200001716614 ], [ 354428.75620000064373, 258052.478100001811981 ], [ 354436.295999996364117, 258057.668800000101328 ], [ 354440.508100003004074, 258060.015299998223782 ], [ 354486.653499998152256, 258082.462600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102604029300", "MAP": "D9-3823-T87", "PARCEL_NAM": null, "ACRE": "0.549", "LONGITUDE": -64.97132931, "LATITUDE": 18.35244908, "OBJECTID_1": 2774, "PARCEL_NO_": "102604029300", "Tax_Legal_": "7-1 ESTATE CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "FRANCOIS, EMMETT", "Address": "3411 Conley Downs Drive", "City": "Powder Springs", "State": "Georgia", "Zip": 301275400, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.84938993700001, "SHAPE_Area": 2498.1944510500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354484.939400002360344, 258096.241300001740456 ], [ 354541.460799999535084, 258102.548799999058247 ], [ 354541.575199998915195, 258024.643500000238419 ], [ 354486.484399996697903, 258082.380300000309944 ], [ 354491.925300002098083, 258085.026999998837709 ], [ 354487.85080000013113, 258091.933299999684095 ], [ 354484.939400002360344, 258096.241300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102604028200", "MAP": "D9-3823-T87", "PARCEL_NAM": "7-3", "ACRE": ".627", "LONGITUDE": -64.97202905, "LATITUDE": 18.35264944, "OBJECTID_1": 2764, "PARCEL_NO_": "102604028200", "Tax_Legal_": "CROWN & HAWK 7-3 S.S. QTR.", "Name": "FRANCOIS, CONRAD E", "Address": "BOX 4166", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.627542441, "SHAPE_Area": 2326.90056009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354467.310999996960163, 258122.325300000607967 ], [ 354487.85080000013113, 258091.933299999684095 ], [ 354466.565099999308586, 258081.880899999290705 ], [ 354464.025100000202656, 258082.070799998939037 ], [ 354462.745800003409386, 258083.322200000286102 ], [ 354461.676399998366833, 258084.785599999129772 ], [ 354454.939300000667572, 258080.736699998378754 ], [ 354455.585699997842312, 258079.269999999552965 ], [ 354455.594099998474121, 258078.218699999153614 ], [ 354454.752999998629093, 258077.581199999898672 ], [ 354430.729099996387959, 258066.035100001841784 ], [ 354409.507399998605251, 258100.980399999767542 ], [ 354408.004900000989437, 258103.701900001615286 ], [ 354407.989799998700619, 258105.594200000166893 ], [ 354409.457099996507168, 258107.287999998778105 ], [ 354411.34740000218153, 258108.985199999064207 ], [ 354413.877400003373623, 258110.056800000369549 ], [ 354416.410700000822544, 258110.707800000905991 ], [ 354429.522200003266335, 258111.232900001108646 ], [ 354433.128300003707409, 258110.000100001692772 ], [ 354435.895000003278255, 258107.91950000077486 ], [ 354438.443400003015995, 258106.678199999034405 ], [ 354440.563799999654293, 258106.064399998635054 ], [ 354442.677400000393391, 258106.291499998420477 ], [ 354445.207400001585484, 258107.363000001758337 ], [ 354454.517399996519089, 258113.557799998670816 ], [ 354467.310999996960163, 258122.325300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102604020300", "MAP": "D9-3823-T87", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97143027, "LATITUDE": 18.35305865, "OBJECTID_1": 2694, "PARCEL_NO_": "102604020300", "Tax_Legal_": "CROWN&HAWK ESTATE 6B REMAINDER No.3 SOUTHSIDE QTR.", "Name": "FRANCOIS, PEDRITO-TRUSTEE", "Address": "PO Box 66", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 131800, "Improved_V": 153400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.57829508700001, "SHAPE_Area": 5188.7857872300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354541.460799999535084, 258102.548799999058247 ], [ 354484.939400002360344, 258096.241300001740456 ], [ 354467.310999996960163, 258122.325300000607967 ], [ 354493.599200002849102, 258140.340599998831749 ], [ 354495.491200000047684, 258141.827599998563528 ], [ 354495.894100002944469, 258144.353999998420477 ], [ 354495.873999997973442, 258146.877099998295307 ], [ 354495.4375, 258148.555700000375509 ], [ 354494.363099999725819, 258150.64979999884963 ], [ 354492.659100003540516, 258152.1081000007689 ], [ 354487.995399996638298, 258153.332499999552965 ], [ 354461.072300001978874, 258160.47690000012517 ], [ 354458.948600001633167, 258161.511300001293421 ], [ 354457.451200000941753, 258163.602000001817942 ], [ 354457.640900000929832, 258166.337000001221895 ], [ 354460.373999997973442, 258168.461500000208616 ], [ 354462.484200000762939, 258169.109099999070168 ], [ 354504.788800001144409, 258177.958700001239777 ], [ 354512.826800003647804, 258180.979699999094009 ], [ 354523.265699997544289, 258186.131400000303984 ], [ 354526.478399999439716, 258187.635400000959635 ], [ 354532.10639999806881, 258189.581300001591444 ], [ 354540.979400001466274, 258189.231699999421835 ], [ 354541.407399997115135, 258138.995000001043081 ], [ 354541.460799999535084, 258102.548799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604024400", "MAP": "D9-624-T66", "PARCEL_NAM": "7AE & 8G", "ACRE": ".634", "LONGITUDE": -64.97169893, "LATITUDE": 18.35191016, "OBJECTID_1": 2729, "PARCEL_NO_": "102604024400", "Tax_Legal_": "CROWN & HAWK 7AE & 8G S S QTR", "Name": "VAN HOLTEN, JACQUELINE", "Address": "PO Box 305991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.86072078299998, "SHAPE_Area": 3143.1584951700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354541.414300002157688, 258024.683200001716614 ], [ 354541.471699997782707, 258024.655600000172853 ], [ 354541.455099999904633, 258024.673200000077486 ], [ 354541.575199998915195, 258024.643500000238419 ], [ 354541.575699999928474, 258024.583599999547005 ], [ 354471.881899997591972, 257986.159200001507998 ], [ 354453.313100002706051, 257975.921599999070168 ], [ 354451.664300002157688, 257977.407200001180172 ], [ 354450.039099998772144, 257978.871500000357628 ], [ 354444.01799999922514, 257983.433400001376867 ], [ 354462.408500000834465, 258044.175500001758337 ], [ 354468.912500001490116, 258042.570799998939037 ], [ 354541.414300002157688, 258024.683200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604024600", "MAP": "D9-624-T66", "PARCEL_NAM": "7AD & 8F", "ACRE": ".51", "LONGITUDE": -64.97214526, "LATITUDE": 18.35202851, "OBJECTID_1": 2731, "PARCEL_NO_": "102604024600", "Tax_Legal_": "CROWN & HAWK 7AD&8F S S QTR", "Name": "LARSEN, SIR FREDERICK, THEODOR", "Address": "PO Box 302250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 198800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.08795234, "SHAPE_Area": 2272.862375 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354462.408500000834465, 258044.175500001758337 ], [ 354444.01799999922514, 257983.433400001376867 ], [ 354435.430100001394749, 257989.939899999648333 ], [ 354432.179700002074242, 257992.868599999696016 ], [ 354430.549099996685982, 257994.9662000015378 ], [ 354423.175399996340275, 258008.626899998635054 ], [ 354415.805299997329712, 258021.865499999374151 ], [ 354408.372299998998642, 258042.491799999028444 ], [ 354409.150399997830391, 258056.919399999082088 ], [ 354418.958400003612041, 258054.895500000566244 ], [ 354462.408500000834465, 258044.175500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604027500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97297038000001, "LATITUDE": 18.35232176, "OBJECTID_1": 2758, "PARCEL_NO_": "102604027500", "Tax_Legal_": "7AA&8A CROWN & HAWK SOUTHSIDE QUARTER", "Name": "TURBE (LIFE ESTATE), JEAN L & LORRAINE M. & M. DORFMAN", "Address": "PO Box 304554", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55400, "Improved_V": 168000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.40162836299999, "SHAPE_Area": 984.15663027300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354364.77929999679327, 258048.256799999624491 ], [ 354359.212399996817112, 258039.134199999272823 ], [ 354326.837600000202656, 258053.223600000143051 ], [ 354326.083099998533726, 258074.060699999332428 ], [ 354370.72070000320673, 258064.849500000476837 ], [ 354371.193099997937679, 258064.098000001162291 ], [ 354364.77929999679327, 258048.256799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504027800", "MAP": "D9-6526-T98", "PARCEL_NAM": "18C-4", "ACRE": "104", "LONGITUDE": -64.98831391, "LATITUDE": 18.35543124, "OBJECTID_1": 2164, "PARCEL_NO_": "102504027800", "Tax_Legal_": "18C-4 BONNE ESPERANCE NO.2 WEST END QTR", "Name": "ROBERTS, LLOYD V.", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.27217262400001, "SHAPE_Area": 4591.1324750100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352669.919299997389317, 258381.704500000923872 ], [ 352741.231700003147125, 258444.819400001317263 ], [ 352746.32599999755621, 258435.243900001049042 ], [ 352757.525600001215935, 258351.109200000762939 ], [ 352717.213500000536442, 258350.357099998742342 ], [ 352710.710900001227856, 258356.425599999725819 ], [ 352700.968599997460842, 258364.156300000846386 ], [ 352670.989399999380112, 258381.009500000625849 ], [ 352669.919299997389317, 258381.704500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504027100", "MAP": "D9-8518-T011", "PARCEL_NAM": "18C-3-1", "ACRE": ".51", "LONGITUDE": -64.98876244, "LATITUDE": 18.35559512, "OBJECTID_1": 2157, "PARCEL_NO_": "102504027100", "Tax_Legal_": "18C-3-1 BONNE ESPERANCE NO. 2 WEST END QTR", "Name": "PICKERING, LETHIA", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.89512144899999, "SHAPE_Area": 1496.0203755299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352684.790799997746944, 258433.083700001239777 ], [ 352705.485500000417233, 258413.182300001382828 ], [ 352669.919299997389317, 258381.704500000923872 ], [ 352655.583099998533726, 258391.015900000929832 ], [ 352648.270599998533726, 258397.5 ], [ 352645.112499997019768, 258401.562399998307228 ], [ 352684.790799997746944, 258433.083700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504027700", "MAP": "D9-6526-T98", "PARCEL_NAM": "18C-2", "ACRE": null, "LONGITUDE": -64.98874338, "LATITUDE": 18.35594341, "OBJECTID_1": 2163, "PARCEL_NO_": "102504027700", "Tax_Legal_": "18C-2 BONNE ESPERANCE NO. 2 WEST END QTR", "Name": "ROBERTS III, LIONEL V.", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.60752798300001, "SHAPE_Area": 3149.53723051 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352621.083599999547005, 258421.227699998766184 ], [ 352716.279500000178814, 258491.720499999821186 ], [ 352728.852700002491474, 258468.087400000542402 ], [ 352645.112499997019768, 258401.562399998307228 ], [ 352640.117499999701977, 258407.987900000065565 ], [ 352630.371699996292591, 258416.140799999237061 ], [ 352621.083599999547005, 258421.227699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504027000", "MAP": "D9-8518-T011", "PARCEL_NAM": "18C-3", "ACRE": ".54", "LONGITUDE": -64.98839098000001, "LATITUDE": 18.3558894, "OBJECTID_1": 2156, "PARCEL_NO_": "102504027000", "Tax_Legal_": "18C-3 REM BONNE ESPERANCE NO. 2 WEST END QTR*", "Name": "PICKERING JR, LEAYLE E.", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 81700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.07649904499999, "SHAPE_Area": 1412.3314048899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352705.485500000417233, 258413.182300001382828 ], [ 352684.790799997746944, 258433.083700001239777 ], [ 352728.852700002491474, 258468.087400000542402 ], [ 352741.231700003147125, 258444.819400001317263 ], [ 352705.485500000417233, 258413.182300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601037000", "MAP": "D9-8322-T009", "PARCEL_NAM": null, "ACRE": ".57", "LONGITUDE": -64.9772441, "LATITUDE": 18.35744417, "OBJECTID_1": 2331, "PARCEL_NO_": "102601037000", "Tax_Legal_": "38CE ESTATE PEARL NO.2 SOUTHSIDE QTR", "Name": "LARSEN, PEARLA (LIFE ESTATE)", "Address": "PO Box 302250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 113200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.60524025000001, "SHAPE_Area": 2068.58517996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353916.474899999797344, 258652.082400001585484 ], [ 353926.268700003623962, 258617.772300001233816 ], [ 353859.321000002324581, 258594.611900001764297 ], [ 353857.864000000059605, 258594.439300000667572 ], [ 353857.053800001740456, 258594.432799998670816 ], [ 353854.535899996757507, 258594.633699998259544 ], [ 353857.625600002706051, 258610.047800000756979 ], [ 353857.589699998497963, 258614.269400000572205 ], [ 353859.963699996471405, 258619.566100001335144 ], [ 353867.967399999499321, 258626.597699999809265 ], [ 353907.311300002038479, 258646.340300001204014 ], [ 353911.326700001955032, 258648.272999998182058 ], [ 353916.474899999797344, 258652.082400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601031900", "MAP": null, "PARCEL_NAM": "38CF ROW", "ACRE": null, "LONGITUDE": -64.97707898, "LATITUDE": 18.35731437, "OBJECTID_1": 2292, "PARCEL_NO_": "102601031900", "Tax_Legal_": "38CF & 38C-1 ROW ESTATE PEARL NO. 2 SOUTHSIDE QUARTER", "Name": "LARSEN, THEODORE & LARSEN", "Address": "PO Box 302250", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.21392172100002, "SHAPE_Area": 1072.33499349 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353854.535899996757507, 258594.633699998259544 ], [ 353857.053800001740456, 258594.432799998670816 ], [ 353857.864000000059605, 258594.439300000667572 ], [ 353859.321000002324581, 258594.611900001764297 ], [ 353943.189900003373623, 258623.6261 ], [ 353945.451899997889996, 258624.449400000274181 ], [ 353946.421499997377396, 258624.77930000051856 ], [ 353947.225299999117851, 258625.590999998152256 ], [ 353947.863200001418591, 258626.88459999859333 ], [ 353947.689599998295307, 258628.332800000905991 ], [ 353953.020000003278255, 258630.469000000506639 ], [ 353954.325199998915195, 258629.35190000012517 ], [ 353956.112700000405312, 258628.721900001168251 ], [ 353958.056999996304512, 258628.737399999052286 ], [ 353959.516599997878075, 258628.587900001555681 ], [ 353964.593400001525879, 258621.863600000739098 ], [ 353962.820000000298023, 258620.722100000828505 ], [ 353962.3429000005126, 258619.590799998492002 ], [ 353962.681000001728535, 258617.821800000965595 ], [ 353956.702500000596046, 258615.680399999022484 ], [ 353955.236599996685982, 258616.635099999606609 ], [ 353954.260499998927116, 258617.110599998384714 ], [ 353952.31360000371933, 258617.417199999094009 ], [ 353950.532499998807907, 258617.241999998688698 ], [ 353856.328199997544289, 258583.796799998730421 ], [ 353854.067400000989437, 258582.8125 ], [ 353851.956200003623962, 258581.764400001615286 ], [ 353854.535899996757507, 258594.633699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601036800", "MAP": "D9-8322-T009", "PARCEL_NAM": "38CC", "ACRE": ".77", "LONGITUDE": -64.97659921, "LATITUDE": 18.35723388, "OBJECTID_1": 2329, "PARCEL_NO_": "102601036800", "Tax_Legal_": "38CC ESTATE PEARL NO.2 SOUTHSIDE QTR", "Name": "LARSEN, PEARLA (LIFE ESTATE)", "Address": "PO Box 302250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 142200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.41375266099999, "SHAPE_Area": 2241.0511908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353975.364200003445148, 258630.576400000602007 ], [ 353980.586599998176098, 258616.49040000140667 ], [ 353991.738200001418591, 258586.412599999457598 ], [ 353973.185500003397465, 258580.807199999690056 ], [ 353938.920900002121925, 258570.416600000113249 ], [ 353928.370600000023842, 258609.3739 ], [ 353950.532499998807907, 258617.241999998688698 ], [ 353952.31360000371933, 258617.417199999094009 ], [ 353954.260499998927116, 258617.110599998384714 ], [ 353955.236599996685982, 258616.635099999606609 ], [ 353956.702500000596046, 258615.680399999022484 ], [ 353962.681000001728535, 258617.821800000965595 ], [ 353962.3429000005126, 258619.590799998492002 ], [ 353962.820000000298023, 258620.722100000828505 ], [ 353964.593400001525879, 258621.863600000739098 ], [ 353961.76860000193119, 258625.605099998414516 ], [ 353975.364200003445148, 258630.576400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601036900", "MAP": "D9-8322-T009", "PARCEL_NAM": "38CD", "ACRE": ".70", "LONGITUDE": -64.97724394, "LATITUDE": 18.35703053, "OBJECTID_1": 2330, "PARCEL_NO_": "102601036900", "Tax_Legal_": "38CD ESTATE PEARL NO.2 SOUTHSIDE QTR", "Name": "LARSEN, PEARLA (LIFE ESTATE)", "Address": "PO Box 302250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 132100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.20684722700003, "SHAPE_Area": 3444.1697983600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353928.370600000023842, 258609.3739 ], [ 353938.920900002121925, 258570.416600000113249 ], [ 353843.694600000977516, 258541.53940000012517 ], [ 353845.249700002372265, 258548.307199999690056 ], [ 353851.956200003623962, 258581.764400001615286 ], [ 353854.067400000989437, 258582.8125 ], [ 353856.328199997544289, 258583.796799998730421 ], [ 353928.370600000023842, 258609.3739 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601035100", "MAP": "D9-7590-T005", "PARCEL_NAM": "38C-1C", "ACRE": ".491", "LONGITUDE": -64.97596863, "LATITUDE": 18.35738708, "OBJECTID_1": 2321, "PARCEL_NO_": "102601035100", "Tax_Legal_": "38C-1C ESTATE PEARL NO. 2 SOUTHSIDE QUARTER", "Name": "MMK, JR ST THOMAS HOUSE TRUST", "Address": "28 Shore Rd", "City": "Clinton", "State": "Connecticut", "Zip": 6413, "Country": "United States", "Land_Value": 84100, "Improved_V": 259300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.907052983, "SHAPE_Area": 2791.0131046000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353984.687399998307228, 258605.429900001734495 ], [ 353994.589100003242493, 258609.888900000602007 ], [ 353989.564000003039837, 258619.892900001257658 ], [ 354050.472000002861023, 258649.226399999111891 ], [ 354067.288500003516674, 258609.230599999427795 ], [ 354033.50789999961853, 258599.032800000160933 ], [ 354017.16330000013113, 258594.094500001519918 ], [ 353991.738200001418591, 258586.412599999457598 ], [ 353984.687399998307228, 258605.429900001734495 ] ] ], [ [ [ 353980.586599998176098, 258616.49040000140667 ], [ 353984.687399998307228, 258605.429900001734495 ], [ 353984.63120000064373, 258605.404599998146296 ], [ 353980.586599998176098, 258616.49040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601035000", "MAP": "D9-7590-T005", "PARCEL_NAM": "38C-1B", "ACRE": ".490", "LONGITUDE": -64.97609055, "LATITUDE": 18.35771859, "OBJECTID_1": 2320, "PARCEL_NO_": "102601035000", "Tax_Legal_": "38C-1B ESTATE PEARL No.2 SOUTHSIDE QTR.", "Name": "CHIARELLO, CHRISTOPHER M.", "Address": "1534 Van Buren St", "City": "Hollywood", "State": "Florida", "Zip": 33020, "Country": "United States", "Land_Value": 77100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.92514769799999, "SHAPE_Area": 2598.5086689700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354050.472000002861023, 258649.226399999111891 ], [ 353989.564000003039837, 258619.892900001257658 ], [ 353975.644400000572205, 258655.437199998646975 ], [ 354035.195900000631809, 258685.558600001037121 ], [ 354050.472000002861023, 258649.226399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403052800", "MAP": "A9-615-T003", "PARCEL_NAM": "1-28", "ACRE": ".37", "LONGITUDE": -65.00851641, "LATITUDE": 18.35500092, "OBJECTID_1": 1821, "PARCEL_NO_": "102403052800", "Tax_Legal_": "1-28 ESTATE BETHESDA NO.8A WEST END QTR", "Name": "DIAZ, DONNA D.", "Address": "PO Box 10120", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.088648186, "SHAPE_Area": 1824.60252741 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350599.422899998724461, 258332.996100001037121 ], [ 350603.467600002884865, 258281.433800000697374 ], [ 350596.262000001966953, 258284.614799998700619 ], [ 350591.499499998986721, 258287.631000000983477 ], [ 350587.530699998140335, 258290.647300001233816 ], [ 350584.514399997889996, 258294.298599999397993 ], [ 350580.386900000274181, 258299.219799999147654 ], [ 350575.465700000524521, 258307.792300000786781 ], [ 350572.76690000295639, 258313.983600001782179 ], [ 350571.655699998140335, 258321.286100000143051 ], [ 350570.156400002539158, 258329.015900000929832 ], [ 350570.498499996960163, 258330.2162000015378 ], [ 350570.528499998152256, 258334.859299998730421 ], [ 350571.639799997210503, 258338.431099999696016 ], [ 350573.227300003170967, 258341.606199998408556 ], [ 350575.21169999986887, 258343.352400001138449 ], [ 350576.719800002872944, 258345.892400000244379 ], [ 350581.164800003170967, 258353.59180000051856 ], [ 350583.021899998188019, 258356.799600001424551 ], [ 350583.784199997782707, 258358.116200000047684 ], [ 350585.6891999989748, 258361.211800001561642 ], [ 350588.736900001764297, 258365.954599998891354 ], [ 350590.610500000417233, 258367.958700001239777 ], [ 350593.785499997437, 258370.419300001114607 ], [ 350596.325499996542931, 258372.4831000007689 ], [ 350597.164800003170967, 258361.783300001174212 ], [ 350597.875600002706051, 258352.721500001847744 ], [ 350599.422899998724461, 258332.996100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00863458000001, "LATITUDE": 18.35436138, "OBJECTID_1": 1627, "PARCEL_NO_": "102403018500", "Tax_Legal_": "2-8 REM & ROWS 2-1,2-14,&2-24 BETHESDA NO. 8 WEST END QUARTER", "Name": "HENDRICKS, GWYNETHE", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 148700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.293096982999998, "SHAPE_Area": 156.02575347600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350579.611900001764297, 258246.102400001138449 ], [ 350566.416000001132488, 258256.878600001335144 ], [ 350570.098700001835823, 258261.994699999690056 ], [ 350573.362800002098083, 258261.095100000500679 ], [ 350574.289800003170967, 258261.564899999648333 ], [ 350575.216700002551079, 258262.034600000828505 ], [ 350579.420400001108646, 258259.986000001430511 ], [ 350578.271600000560284, 258258.127099998295307 ], [ 350578.280599996447563, 258256.970899999141693 ], [ 350578.754900000989437, 258255.818399999290705 ], [ 350579.46000000089407, 258254.898899998515844 ], [ 350588.488499999046326, 258245.330699998885393 ], [ 350579.611900001764297, 258246.102400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403049900", "MAP": "A9-615-T003", "PARCEL_NAM": null, "ACRE": ".25", "LONGITUDE": -65.00873325000001, "LATITUDE": 18.35458509, "OBJECTID_1": 1818, "PARCEL_NO_": "102403049900", "Tax_Legal_": "1-23 & 1-24 ESTATE BEHTESDA NO.8A WEST END QTR", "Name": "EDMEAD, EDWARD & SCATLIFFE, IRA", "Address": "1026 E 230th St", "City": "Bronx", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.86604214799999, "SHAPE_Area": 1017.07124391 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350570.098700001835823, 258261.994699999690056 ], [ 350566.416000001132488, 258256.878600001335144 ], [ 350552.831200003623962, 258268.566599998623133 ], [ 350538.773999996483326, 258281.175999999046326 ], [ 350565.295199997723103, 258293.38910000026226 ], [ 350574.080300003290176, 258297.895899999886751 ], [ 350577.770900003612041, 258292.579300001263618 ], [ 350581.758199997246265, 258288.447799999266863 ], [ 350588.311599999666214, 258283.411400001496077 ], [ 350590.350900001823902, 258282.296999998390675 ], [ 350583.718599997460842, 258275.603199999779463 ], [ 350583.861599996685982, 258275.508499998599291 ], [ 350570.098700001835823, 258261.994699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403017900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00878533, "LATITUDE": 18.35416378, "OBJECTID_1": 1621, "PARCEL_NO_": "102403017900", "Tax_Legal_": "3C-2 FORTUNA WEST END QUARTER", "Name": "SEWER, VANCITO H. & SYLVIA", "Address": "PO Box 305862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23600, "Improved_V": 165600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.01843203300001, "SHAPE_Area": 1165.74835738 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350579.611900001764297, 258246.102400001138449 ], [ 350578.263599999248981, 258215.060600001364946 ], [ 350542.771499998867512, 258216.45890000090003 ], [ 350542.489200003445148, 258249.598200000822544 ], [ 350577.191200003027916, 258246.293699998408556 ], [ 350579.611900001764297, 258246.102400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00886158, "LATITUDE": 18.35439702, "OBJECTID_1": 1627, "PARCEL_NO_": "102403018500", "Tax_Legal_": "2-8 REM & ROWS 2-1,2-14,&2-24 BETHESDA NO. 8 WEST END QUARTER", "Name": "HENDRICKS, GWYNETHE", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 148700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.389875496, "SHAPE_Area": 580.26190281799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350542.489200003445148, 258249.598200000822544 ], [ 350531.225699998438358, 258270.197799999266863 ], [ 350552.831200003623962, 258268.566599998623133 ], [ 350566.416000001132488, 258256.878600001335144 ], [ 350579.611900001764297, 258246.102400001138449 ], [ 350577.191200003027916, 258246.293699998408556 ], [ 350569.162600003182888, 258247.058200001716614 ], [ 350542.489200003445148, 258249.598200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00911306, "LATITUDE": 18.35442029, "OBJECTID_1": 1627, "PARCEL_NO_": "102403018500", "Tax_Legal_": "2-8 REM & ROWS 2-1,2-14,&2-24 BETHESDA NO. 8 WEST END QUARTER", "Name": "HENDRICKS, GWYNETHE", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 148700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.545757841799997, "SHAPE_Area": 444.00776323999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350531.225699998438358, 258270.197799999266863 ], [ 350542.489200003445148, 258249.598200000822544 ], [ 350514.2449000030756, 258252.111299999058247 ], [ 350513.955399997532368, 258271.5016999989748 ], [ 350531.225699998438358, 258270.197799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403019100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00911221, "LATITUDE": 18.35418078, "OBJECTID_1": 1632, "PARCEL_NO_": "102403019100", "Tax_Legal_": "3C-11 FORTUNA WEST END QUARTER", "Name": "BRIDGES, TERRY A", "Address": "PO Box 1341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30800, "Improved_V": 107100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.43602841500001, "SHAPE_Area": 1113.4115834300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350542.489200003445148, 258249.598200000822544 ], [ 350542.771499998867512, 258216.45890000090003 ], [ 350508.085699997842312, 258217.863699998706579 ], [ 350508.730099998414516, 258236.867400001734495 ], [ 350514.2449000030756, 258252.111299999058247 ], [ 350542.489200003445148, 258249.598200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403045700", "MAP": "D9-6596-T99", "PARCEL_NAM": "1-A", "ACRE": ".23", "LONGITUDE": -65.00847537, "LATITUDE": 18.35442913, "OBJECTID_1": 1815, "PARCEL_NO_": "102403045700", "Tax_Legal_": "1A ESTATE BETHESDA #8A WESTEND QTR.", "Name": "FORBES, EDWIN W. & CLAUDIA H. D", "Address": "PO Box 10071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31600, "Improved_V": 133000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.09753062799999, "SHAPE_Area": 923.22737451800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350604.391500003635883, 258276.259300000965595 ], [ 350605.651100002229214, 258267.59010000154376 ], [ 350605.368199996650219, 258267.672100000083447 ], [ 350610.296499997377396, 258243.28830000013113 ], [ 350594.944399997591972, 258244.750199999660254 ], [ 350588.488499999046326, 258245.330699998885393 ], [ 350579.46000000089407, 258254.898899998515844 ], [ 350578.754900000989437, 258255.818399999290705 ], [ 350578.280599996447563, 258256.970899999141693 ], [ 350578.271600000560284, 258258.127099998295307 ], [ 350579.420400001108646, 258259.986000001430511 ], [ 350575.216700002551079, 258262.034600000828505 ], [ 350574.289800003170967, 258261.564899999648333 ], [ 350573.362800002098083, 258261.095100000500679 ], [ 350570.098700001835823, 258261.994699999690056 ], [ 350583.861599996685982, 258275.508499998599291 ], [ 350583.718599997460842, 258275.603199999779463 ], [ 350590.350900001823902, 258282.296999998390675 ], [ 350594.152800001204014, 258280.219300001859665 ], [ 350602.089500002563, 258276.812300000339746 ], [ 350604.391500003635883, 258276.259300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403049900", "MAP": "A9-615-T003", "PARCEL_NAM": null, "ACRE": ".28", "LONGITUDE": -65.0088996, "LATITUDE": 18.35480083, "OBJECTID_1": 1818, "PARCEL_NO_": "102403049900", "Tax_Legal_": "1-23 & 1-24 ESTATE BEHTESDA NO.8A WEST END QTR", "Name": "EDMEAD, EDWARD & SCATLIFFE, IRA", "Address": "1026 E 230th St", "City": "Bronx", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.35270364600001, "SHAPE_Area": 1188.96672906 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350565.295199997723103, 258293.38910000026226 ], [ 350538.773999996483326, 258281.175999999046326 ], [ 350525.555600002408028, 258305.585499998182058 ], [ 350521.761399999260902, 258314.805900000035763 ], [ 350557.860200002789497, 258316.796100001782179 ], [ 350566.374200001358986, 258317.213599998503923 ], [ 350566.734399996697903, 258315.412399999797344 ], [ 350569.747900001704693, 258307.085499998182058 ], [ 350573.300399996340275, 258299.019499998539686 ], [ 350574.080300003290176, 258297.895899999886751 ], [ 350565.295199997723103, 258293.38910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404011300", "MAP": "D9-7642-T005", "PARCEL_NAM": "2-5", "ACRE": ".27", "LONGITUDE": -65.00768909, "LATITUDE": 18.35560013, "OBJECTID_1": 1834, "PARCEL_NO_": "102404011300", "Tax_Legal_": "2-5 ESTATE BETHESDA NO.8a WEST END QTR", "Name": "MALONE, JERRY B. & VERNA E.", "Address": "PO BOX 308368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.63818776299999, "SHAPE_Area": 1279.67235491 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350674.684600003063679, 258370.816199999302626 ], [ 350669.604599997401237, 258370.339999999850988 ], [ 350665.318400003015995, 258370.816199999302626 ], [ 350659.920800000429153, 258371.768699999898672 ], [ 350658.878200002014637, 258371.973600000143051 ], [ 350657.455600000917912, 258397.029800001531839 ], [ 350657.069899998605251, 258408.531700000166893 ], [ 350687.849600002169609, 258409.739900000393391 ], [ 350696.938500002026558, 258405.74269999936223 ], [ 350696.979299999773502, 258400.508000001311302 ], [ 350694.369699999690056, 258390.342500001192093 ], [ 350690.877199999988079, 258384.151200000196695 ], [ 350687.606899999082088, 258378.896200001239777 ], [ 350684.050899997353554, 258375.896200001239777 ], [ 350681.034599997103214, 258374.308699999004602 ], [ 350678.177100002765656, 258372.5625 ], [ 350674.684600003063679, 258370.816199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402024800", "MAP": "A9-615-T003", "PARCEL_NAM": "2-20", "ACRE": ".24", "LONGITUDE": -65.00729391, "LATITUDE": 18.35686945, "OBJECTID_1": 1495, "PARCEL_NO_": "102402024800", "Tax_Legal_": "2-20 & 2-21 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "JACK, DERVIN & ANN J. ALEXANDER JACK", "Address": "PO Box 9991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.266469836, "SHAPE_Area": 1583.52578161 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350736.8733000010252, 258540.131000000983477 ], [ 350741.4712999984622, 258512.844900000840425 ], [ 350733.491700001060963, 258515.860800001770258 ], [ 350726.931100003421307, 258516.712200000882149 ], [ 350718.596699997782707, 258518.299699999392033 ], [ 350711.320699997246265, 258518.961100000888109 ], [ 350704.044600002467632, 258518.299699999392033 ], [ 350699.943599998950958, 258516.050700001418591 ], [ 350695.710199996829033, 258512.478799998760223 ], [ 350684.02139999717474, 258523.811599999666214 ], [ 350680.306699998676777, 258527.413100000470877 ], [ 350683.492499999701977, 258529.464600000530481 ], [ 350733.269400000572205, 258561.518199998885393 ], [ 350736.8733000010252, 258540.131000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018500", "MAP": "A9-615-T003", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00893612, "LATITUDE": 18.35508751, "OBJECTID_1": 1627, "PARCEL_NO_": "102403018500", "Tax_Legal_": "2-8 REM & ROWS 2-1,2-14,&2-24 BETHESDA NO. 8 WEST END QUARTER", "Name": "HENDRICKS, GWYNETHE", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 148700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.47716763700001, "SHAPE_Area": 1534.0461123099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350557.860200002789497, 258316.796100001782179 ], [ 350521.761399999260902, 258314.805900000035763 ], [ 350521.437100000679493, 258326.597100000828505 ], [ 350524.389399997889996, 258335.870000001043081 ], [ 350527.098399996757507, 258346.528499998152256 ], [ 350535.289800003170967, 258360.641399998217821 ], [ 350566.811899997293949, 258343.060400001704693 ], [ 350568.983900003135204, 258341.840700000524521 ], [ 350565.464400000870228, 258332.716099999845028 ], [ 350565.464400000870228, 258321.76240000128746 ], [ 350566.374200001358986, 258317.213599998503923 ], [ 350557.860200002789497, 258316.796100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403050600", "MAP": "D9-7642-T005", "PARCEL_NAM": "2-7", "ACRE": ".24", "LONGITUDE": -65.00829051, "LATITUDE": 18.35561886, "OBJECTID_1": 1819, "PARCEL_NO_": "102403050600", "Tax_Legal_": "2-7 ESTATE BETHESDA 8a WEST END QTR.", "Name": "BENJAMIN I TRUST", "Address": "PO Box 8890", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.45025832, "SHAPE_Area": 877.56619955899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350626.855599999427795, 258395.628899998962879 ], [ 350627.535800002515316, 258377.166200000792742 ], [ 350621.485699996352196, 258378.081300001591444 ], [ 350615.311999998986721, 258379.706199999898672 ], [ 350612.295800000429153, 258379.864999998360872 ], [ 350608.168200001120567, 258379.706199999898672 ], [ 350604.040700003504753, 258379.388700000941753 ], [ 350600.389499999582767, 258378.912500001490116 ], [ 350598.640600003302097, 258378.422800000756979 ], [ 350595.72580000013113, 258393.629999998956919 ], [ 350593.404500000178814, 258405.741300001740456 ], [ 350606.580700002610683, 258407.646299999207258 ], [ 350617.290700003504753, 258407.474899999797344 ], [ 350626.424500003457069, 258407.32880000025034 ], [ 350626.855599999427795, 258395.628899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404011400", "MAP": "D9-7642-T005", "PARCEL_NAM": "2-6", "ACRE": ".24", "LONGITUDE": -65.00799488, "LATITUDE": 18.35559694, "OBJECTID_1": 1835, "PARCEL_NO_": "102404011400", "Tax_Legal_": "#2-6 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "BARRY, DAYLE B. & ANGELA", "Address": "PO Box 301982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.237998111, "SHAPE_Area": 1026.19247372 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350657.455600000917912, 258397.029800001531839 ], [ 350658.878200002014637, 258371.973600000143051 ], [ 350654.182199999690056, 258372.896299999207258 ], [ 350647.220799997448921, 258374.149999998509884 ], [ 350639.283299997448921, 258375.10249999910593 ], [ 350627.535800002515316, 258377.166200000792742 ], [ 350626.855599999427795, 258395.628899998962879 ], [ 350626.424500003457069, 258407.32880000025034 ], [ 350657.069899998605251, 258408.531700000166893 ], [ 350657.455600000917912, 258397.029800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404011000", "MAP": "D9-6585-T99", "PARCEL_NAM": "2-B", "ACRE": ".2332", "LONGITUDE": -65.00789434000001, "LATITUDE": 18.35480489, "OBJECTID_1": 1831, "PARCEL_NO_": "102404011000", "Tax_Legal_": "#2-B ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "DIXON, JEFFREY M. & VIVIAN B.", "Address": "43182 Maple Cross St", "City": "SOUTH RIDING", "State": "Virginia", "Zip": 20152, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.10119119300001, "SHAPE_Area": 989.66845321899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350641.169200003147125, 258277.578999999910593 ], [ 350635.864000000059605, 258276.21680000051856 ], [ 350629.107600003480911, 258276.566100001335144 ], [ 350655.541400000452995, 258321.395700000226498 ], [ 350660.494599997997284, 258329.912200000137091 ], [ 350661.761600002646446, 258332.090599998831749 ], [ 350677.683399997651577, 258328.638999998569489 ], [ 350671.90089999884367, 258318.013999998569489 ], [ 350669.35249999910593, 258313.331300001591444 ], [ 350652.671700000762939, 258283.641699999570847 ], [ 350651.168200001120567, 258280.8885000012815 ], [ 350641.169200003147125, 258277.578999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403050700", "MAP": "A9-615-T003", "PARCEL_NAM": "2-2", "ACRE": ".232", "LONGITUDE": -65.00823752, "LATITUDE": 18.35529262, "OBJECTID_1": 1820, "PARCEL_NO_": "102403050700", "Tax_Legal_": "2-2 ESTATE BETHESDA No.8 WEST END QTR.", "Name": "MADURO, NOVIA S. & ULRIC", "Address": "PO Box 306006", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 176800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.18704607500001, "SHAPE_Area": 1241.50591962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350638.80799999833107, 258337.066700000315905 ], [ 350598.416799999773502, 258345.823100000619888 ], [ 350597.875600002706051, 258352.721500001847744 ], [ 350597.164800003170967, 258361.783300001174212 ], [ 350596.325499996542931, 258372.4831000007689 ], [ 350599.18299999833107, 258373.356199998408556 ], [ 350602.516699999570847, 258374.467500001192093 ], [ 350607.04110000282526, 258374.94370000064373 ], [ 350611.883000001311302, 258374.785000000149012 ], [ 350616.089900001883507, 258374.308699999004602 ], [ 350621.759999997913837, 258373.291900001466274 ], [ 350624.821199998259544, 258372.800599999725819 ], [ 350629.901199996471405, 258372.086199998855591 ], [ 350634.35249999910593, 258371.241999998688698 ], [ 350635.370600000023842, 258363.432399999350309 ], [ 350636.515799999237061, 258354.648200001567602 ], [ 350638.80799999833107, 258337.066700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402026100", "MAP": "A9-615-T003", "PARCEL_NAM": "2-23", "ACRE": ".35", "LONGITUDE": -65.00656904, "LATITUDE": 18.35732289, "OBJECTID_1": 1497, "PARCEL_NO_": "102402026100", "Tax_Legal_": "#2-23 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "ESPIRIT, EDWARD", "Address": "4003 RAPHUNE HILL, SUITE 501, PMB 150", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.61604735099999, "SHAPE_Area": 1655.02767352 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350767.712600000202656, 258548.892499998211861 ], [ 350760.21679999679327, 258578.870900001376867 ], [ 350808.540299996733665, 258609.988699998706579 ], [ 350839.225100003182888, 258586.537599999457598 ], [ 350840.071900002658367, 258585.94480000063777 ], [ 350806.968699999153614, 258586.660100001841784 ], [ 350767.712600000202656, 258548.892499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403027100", "MAP": "A9-615-T003", "PARCEL_NAM": "2-C", "ACRE": ".6658", "LONGITUDE": -65.00817869, "LATITUDE": 18.35489204, "OBJECTID_1": 1701, "PARCEL_NO_": "102403027100", "Tax_Legal_": "2C ESTATE BETHESDA NO.8 WEST END QTR", "Name": "HODGE, IVIN & BEATRICE I.", "Address": "PO BOX 305566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.029003456, "SHAPE_Area": 2815.1394981 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350655.541400000452995, 258321.395700000226498 ], [ 350629.107600003480911, 258276.566100001335144 ], [ 350623.884499996900558, 258276.835999999195337 ], [ 350618.16950000077486, 258277.471000000834465 ], [ 350611.025700002908707, 258279.217300001531839 ], [ 350603.467600002884865, 258281.433800000697374 ], [ 350599.422899998724461, 258332.996100001037121 ], [ 350598.416799999773502, 258345.823100000619888 ], [ 350638.80799999833107, 258337.066700000315905 ], [ 350660.276399999856949, 258332.412599999457598 ], [ 350661.761600002646446, 258332.090599998831749 ], [ 350660.494599997997284, 258329.912200000137091 ], [ 350655.541400000452995, 258321.395700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403052900", "MAP": "A9-615-T003", "PARCEL_NAM": null, "ACRE": ".28", "LONGITUDE": -65.0086967, "LATITUDE": 18.35545076, "OBJECTID_1": 1822, "PARCEL_NO_": "102403052900", "Tax_Legal_": "1-25 ESTATE BETHESDA NO.8A WEST END QTR", "Name": "MADURO, ULRIC W. & JEWELL", "Address": "172-10 133rd Ave #79", "City": "Jamaica", "State": "New York", "Zip": 114343958, "Country": "United States", "Land_Value": 34500, "Improved_V": 179000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.32999500299999, "SHAPE_Area": 2093.9279147900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350569.750699996948242, 258343.828699998557568 ], [ 350568.983900003135204, 258341.840700000524521 ], [ 350566.811899997293949, 258343.060400001704693 ], [ 350535.289800003170967, 258360.641399998217821 ], [ 350535.592600002884865, 258361.163199998438358 ], [ 350535.620300002396107, 258361.190799999982119 ], [ 350547.525600001215935, 258380.976199999451637 ], [ 350559.749399997293949, 258391.295000001788139 ], [ 350582.370800003409386, 258402.339400000870228 ], [ 350593.404500000178814, 258405.741300001740456 ], [ 350595.72580000013113, 258393.629999998956919 ], [ 350598.640600003302097, 258378.422800000756979 ], [ 350596.420699998736382, 258377.801199998706579 ], [ 350592.769500002264977, 258375.737500000745058 ], [ 350587.7449000030756, 258372.363200001418591 ], [ 350585.308200001716614, 258369.54619999974966 ], [ 350583.085699997842312, 258366.212499998509884 ], [ 350579.593199998140335, 258360.338700000196695 ], [ 350572.902999997138977, 258349.719999998807907 ], [ 350569.750699996948242, 258343.828699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010100", "MAP": "D9-4885-T90", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00959243, "LATITUDE": 18.3550974, "OBJECTID_1": 1546, "PARCEL_NO_": "102403010100", "Tax_Legal_": "BETHESDA 1 8AWEST END QTR.", "Name": "FARHAT, JAMIL", "Address": "6940 Augustine Way", "City": "Charlotte", "State": "North Carolina", "Zip": 28270, "Country": "United States", "Land_Value": 344700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 744.71458882100001, "SHAPE_Area": 21613.151534100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350582.370800003409386, 258402.339400000870228 ], [ 350559.749399997293949, 258391.295000001788139 ], [ 350547.525600001215935, 258380.976199999451637 ], [ 350535.620300002396107, 258361.190799999982119 ], [ 350535.592600002884865, 258361.163199998438358 ], [ 350535.289700001478195, 258360.641499999910593 ], [ 350527.098399996757507, 258346.528499998152256 ], [ 350524.389399997889996, 258335.870000001043081 ], [ 350521.437100000679493, 258326.597100000828505 ], [ 350521.761399999260902, 258314.805900000035763 ], [ 350525.555600002408028, 258305.585499998182058 ], [ 350538.773999996483326, 258281.175999999046326 ], [ 350552.831200003623962, 258268.566599998623133 ], [ 350513.955399997532368, 258271.5016999989748 ], [ 350514.2449000030756, 258252.111299999058247 ], [ 350505.368199996650219, 258252.883000001311302 ], [ 350471.474299997091293, 258255.9831000007689 ], [ 350407.719899997115135, 258262.005199998617172 ], [ 350343.64360000193119, 258305.810400001704693 ], [ 350572.846600003540516, 258457.854100000113249 ], [ 350582.370800003409386, 258402.339400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404011200", "MAP": "A9-615-T003", "PARCEL_NAM": "2-4", "ACRE": ".32", "LONGITUDE": -65.00764496, "LATITUDE": 18.35526767, "OBJECTID_1": 1833, "PARCEL_NO_": "102404011200", "Tax_Legal_": "2-4 ESTATE BETHESDA No.8 WEST END QTR", "Name": "ORTIZ, SABAT", "Address": "1413 Hospital Line", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.78450392299999, "SHAPE_Area": 1083.8646651900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350665.97410000115633, 258331.177400000393391 ], [ 350659.825599998235703, 258365.736200001090765 ], [ 350664.826200000941753, 258364.625 ], [ 350672.601899996399879, 258364.079300001263618 ], [ 350678.081900000572205, 258364.783700000494719 ], [ 350682.209399998188019, 258366.688700001686811 ], [ 350685.701899997889996, 258368.752500001341105 ], [ 350689.035700000822544, 258370.816199999302626 ], [ 350691.416900001466274, 258373.038699999451637 ], [ 350693.083800002932549, 258374.388099998235703 ], [ 350694.512500002980232, 258376.531199999153614 ], [ 350697.124600000679493, 258381.845600001513958 ], [ 350698.407700002193451, 258384.688200000673532 ], [ 350708.1587999984622, 258384.876800000667572 ], [ 350699.519400000572205, 258369.095800001174212 ], [ 350689.20099999755621, 258349.801899999380112 ], [ 350677.683399997651577, 258328.638999998569489 ], [ 350665.97410000115633, 258331.177400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404011700", "MAP": "A9-615-T003", "PARCEL_NAM": "2-15", "ACRE": ".233", "LONGITUDE": -65.00734345, "LATITUDE": 18.35575108, "OBJECTID_1": 1838, "PARCEL_NO_": "102404011700", "Tax_Legal_": "#2-15 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "BRIN, LISA", "Address": "19 VESTER GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8900, "Improved_V": 188200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.712930099, "SHAPE_Area": 706.08111126999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350698.407700002193451, 258384.688200000673532 ], [ 350699.195699997246265, 258386.770599998533726 ], [ 350700.624399997293949, 258390.263099998235703 ], [ 350701.576899997889996, 258393.596900001168251 ], [ 350702.211900003254414, 258395.581300001591444 ], [ 350701.894400000572205, 258398.91499999910593 ], [ 350702.053199999034405, 258403.280699998140335 ], [ 350702.211900003254414, 258406.535000000149012 ], [ 350702.053199999034405, 258409.074999999254942 ], [ 350702.291299998760223, 258413.758200000971556 ], [ 350702.529399998486042, 258418.203200001269579 ], [ 350702.688199996948242, 258422.489399999380112 ], [ 350702.686200000345707, 258425.435699999332428 ], [ 350730.231799997389317, 258425.196400001645088 ], [ 350708.1587999984622, 258384.876800000667572 ], [ 350698.407700002193451, 258384.688200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402024800", "MAP": "A9-615-T003", "PARCEL_NAM": "2-21", "ACRE": ".286", "LONGITUDE": -65.00694467, "LATITUDE": 18.35695024, "OBJECTID_1": 1495, "PARCEL_NO_": "102402024800", "Tax_Legal_": "2-20 & 2-21 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "JACK, DERVIN & ANN J. ALEXANDER JACK", "Address": "PO Box 9991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.00105675, "SHAPE_Area": 1796.4549550900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350760.268700003623962, 258512.214200001209974 ], [ 350755.50620000064373, 258511.023600000888109 ], [ 350749.395400002598763, 258511.056699998676777 ], [ 350744.739000000059605, 258511.482900001108646 ], [ 350741.4712999984622, 258512.844900000840425 ], [ 350736.8733000010252, 258540.131000000983477 ], [ 350733.269400000572205, 258561.518199998885393 ], [ 350746.399599999189377, 258569.973299998790026 ], [ 350755.875799998641014, 258576.075500000268221 ], [ 350760.21679999679327, 258578.870900001376867 ], [ 350767.712600000202656, 258548.892499998211861 ], [ 350766.310199998319149, 258547.274300001561642 ], [ 350771.866899996995926, 258525.870700001716614 ], [ 350771.851199999451637, 258525.337600000202656 ], [ 350770.271300002932549, 258519.081700000911951 ], [ 350770.179899998009205, 258518.774900000542402 ], [ 350762.782200001180172, 258513.66950000077486 ], [ 350760.268700003623962, 258512.214200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402024500", "MAP": "A9-615-T003", "PARCEL_NAM": "2-13", "ACRE": ".23", "LONGITUDE": -65.00767286, "LATITUDE": 18.35657275, "OBJECTID_1": 1493, "PARCEL_NO_": "102402024500", "Tax_Legal_": "2-13 ESTATE BETHESDA No.8 WEST END QTR.", "Name": "BROOKS, FITZROY", "Address": "14-2B Mahogany Est", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28300, "Improved_V": 311700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.32830755099999, "SHAPE_Area": 1422.19456937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350684.358000002801418, 258478.07209999859333 ], [ 350662.062600001692772, 258473.760299999266863 ], [ 350658.54110000282526, 258513.397199999541044 ], [ 350680.306699998676777, 258527.413100000470877 ], [ 350684.02139999717474, 258523.811599999666214 ], [ 350695.710199996829033, 258512.478799998760223 ], [ 350692.932099997997284, 258508.642400000244379 ], [ 350692.668200001120567, 258505.989999998360872 ], [ 350690.846699997782707, 258500.888399999588728 ], [ 350690.179399996995926, 258496.951999999582767 ], [ 350690.213600002229214, 258492.558600001037121 ], [ 350691.883500002324581, 258487.252900000661612 ], [ 350693.323700003325939, 258479.806099999696016 ], [ 350684.358000002801418, 258478.07209999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404011800", "MAP": "A9-615-T003", "PARCEL_NAM": "2-16", "ACRE": ".229", "LONGITUDE": -65.00726358, "LATITUDE": 18.35601539, "OBJECTID_1": 1839, "PARCEL_NO_": "102404011800", "Tax_Legal_": "#2-16 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "LUGO, EDGARDO", "Address": "286 Segovia St", "City": "Ponce", "State": "Puerto Rico", "Zip": 716, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.83631347, "SHAPE_Area": 823.27989885500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350702.686200000345707, 258425.435699999332428 ], [ 350702.688199996948242, 258431.37950000166893 ], [ 350702.688199996948242, 258439.793200001120567 ], [ 350702.346199996769428, 258449.787300001829863 ], [ 350743.224399998784065, 258448.915800001472235 ], [ 350739.220100000500679, 258441.614799998700619 ], [ 350730.231799997389317, 258425.196400001645088 ], [ 350702.686200000345707, 258425.435699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404011900", "MAP": "A9-615-T003", "PARCEL_NAM": "2-17", "ACRE": ".255", "LONGITUDE": -65.00721836, "LATITUDE": 18.35624552, "OBJECTID_1": 1840, "PARCEL_NO_": "102404011900", "Tax_Legal_": "#2-17 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "CONNOR, DIONNE A.", "Address": "PO BOX 307256", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 210400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.57677328, "SHAPE_Area": 1319.56467391 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350751.723499998450279, 258464.412300001829863 ], [ 350743.224399998784065, 258448.915800001472235 ], [ 350702.346199996769428, 258449.787300001829863 ], [ 350702.353500001132488, 258454.096599999815226 ], [ 350701.295100003480911, 258463.886199999600649 ], [ 350700.167000003159046, 258474.41499999910593 ], [ 350698.649300001561642, 258477.644600000232458 ], [ 350698.098399996757507, 258480.619600001722574 ], [ 350725.382299996912479, 258476.41499999910593 ], [ 350755.740500003099442, 258471.736600000411272 ], [ 350751.723499998450279, 258464.412300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402024600", "MAP": "A9-615-T003", "PARCEL_NAM": "2-18", "ACRE": ".23", "LONGITUDE": -65.00733379, "LATITUDE": 18.35652318, "OBJECTID_1": 1494, "PARCEL_NO_": "102402024600", "Tax_Legal_": "2-18 ESTATE BETHESDA No.8 WEST END QTR.", "Name": "FITZROY BROOKES and ROSEMERRIE BROOKS", "Address": "PO BOX 306526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.245405912, "SHAPE_Area": 967.64171321799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350708.42620000243187, 258513.975099999457598 ], [ 350714.594499997794628, 258514.00899999961257 ], [ 350720.345200002193451, 258513.098799999803305 ], [ 350721.380900003015995, 258509.366500001400709 ], [ 350730.754600003361702, 258475.587099999189377 ], [ 350725.382299996912479, 258476.41499999910593 ], [ 350698.098399996757507, 258480.619600001722574 ], [ 350697.326399996876717, 258484.788400001823902 ], [ 350695.738899998366833, 258493.784200001507998 ], [ 350695.738899998366833, 258497.752999998629093 ], [ 350696.532600000500679, 258503.573800001293421 ], [ 350698.913900002837181, 258507.278000000864267 ], [ 350702.353500001132488, 258510.188400000333786 ], [ 350708.42620000243187, 258513.975099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404012000", "MAP": "A9-615-T003", "PARCEL_NAM": "2-19", "ACRE": ".329", "LONGITUDE": -65.00700664, "LATITUDE": 18.35651342, "OBJECTID_1": 1841, "PARCEL_NO_": "102404012000", "Tax_Legal_": "#2-19 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "DUBERRY, CONRAD J.", "Address": "PO Box 306096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.01933760599999, "SHAPE_Area": 1412.19908844 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350737.013999998569489, 258508.071699999272823 ], [ 350747.861900001764297, 258506.219700001180172 ], [ 350761.884900003671646, 258507.807199999690056 ], [ 350768.237099997699261, 258511.43470000103116 ], [ 350771.40990000218153, 258512.569699998944998 ], [ 350774.773199997842312, 258506.406800001859665 ], [ 350772.82490000128746, 258502.859299998730421 ], [ 350762.247100003063679, 258483.599800001829863 ], [ 350755.740500003099442, 258471.736600000411272 ], [ 350730.754600003361702, 258475.587099999189377 ], [ 350721.380900003015995, 258509.366500001400709 ], [ 350720.345200002193451, 258513.098799999803305 ], [ 350724.313900001347065, 258512.305100001394749 ], [ 350730.134800001978874, 258510.453000001609325 ], [ 350737.013999998569489, 258508.071699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402026000", "MAP": "A9-615-T003", "PARCEL_NAM": "2-22", "ACRE": ".47", "LONGITUDE": -65.00639621000001, "LATITUDE": 18.35712237, "OBJECTID_1": 1496, "PARCEL_NO_": "102402026000", "Tax_Legal_": "#2-22 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "BASSUE, JAMES F & LISA A. GUMBS-", "Address": "PO Box 9926", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.266187135, "SHAPE_Area": 2590.2390385200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350774.773199997842312, 258506.406800001859665 ], [ 350771.40990000218153, 258512.569699998944998 ], [ 350774.055699996650219, 258516.802999999374151 ], [ 350777.230700001120567, 258523.417599998414516 ], [ 350776.701499998569489, 258530.5614 ], [ 350775.114000000059605, 258539.292599998414516 ], [ 350769.717000000178814, 258550.820999998599291 ], [ 350806.968699999153614, 258586.660100001841784 ], [ 350840.071900002658367, 258585.94480000063777 ], [ 350865.166599996387959, 258568.375799998641014 ], [ 350830.98759999871254, 258554.878699999302626 ], [ 350800.360299997031689, 258553.150400001555681 ], [ 350788.450800001621246, 258531.310300000011921 ], [ 350774.773199997842312, 258506.406800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404012800", "MAP": "D9-9218-T017", "PARCEL_NAM": "8-1-C", "ACRE": "0.54", "LONGITUDE": -65.00770175, "LATITUDE": 18.35467098, "OBJECTID_1": 1846, "PARCEL_NO_": "102404012800", "Tax_Legal_": "8-1-C FORTUNA NO. 8 WEST END QTR", "Name": "THOMAS, ODARI C", "Address": "PO Box 305654", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.27646926899999, "SHAPE_Area": 955.45939114400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350682.066299997270107, 258273.823499999940395 ], [ 350671.42119999974966, 258276.65819999948144 ], [ 350651.510600000619888, 258281.515500001609325 ], [ 350652.671700000762939, 258283.641699999570847 ], [ 350669.35249999910593, 258313.331300001591444 ], [ 350701.921499997377396, 258276.44539999961853 ], [ 350686.612300001084805, 258275.053599998354912 ], [ 350682.066299997270107, 258273.823499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403014600", "MAP": "D9-8109-T008", "PARCEL_NAM": "4-1-23 REM", "ACRE": ".369", "LONGITUDE": -65.01343709, "LATITUDE": 18.34979811, "OBJECTID_1": 1590, "PARCEL_NO_": "102403014600", "Tax_Legal_": "4-1-23 FORTUNA NO.8 WEST END QTR", "Name": "IMPECCABLE TRUST", "Address": "PO Box 307494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61800, "Improved_V": 260800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.18544442800001, "SHAPE_Area": 1677.54485069 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350054.334600001573563, 257724.924100000411272 ], [ 350051.955200001597404, 257735.192299999296665 ], [ 350057.235200002789497, 257771.263599999248981 ], [ 350093.462999999523163, 257762.096700001507998 ], [ 350091.371299996972084, 257723.660599999129772 ], [ 350083.317199997603893, 257722.539200000464916 ], [ 350067.991899996995926, 257723.047100000083447 ], [ 350061.539599999785423, 257723.205299999564886 ], [ 350054.334600001573563, 257724.924100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504030200", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-12", "ACRE": ".27", "LONGITUDE": -64.98393907000001, "LATITUDE": 18.35619713, "OBJECTID_1": 2168, "PARCEL_NO_": "102504030200", "Tax_Legal_": "4A-12 SANTA MARIA No.1 WESTEND QUARTER", "Name": "RAWLINS, DANNY W. & DENIECE F", "Address": "PO Box 7875", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.25233258099999, "SHAPE_Area": 897.19757971299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353165.658100001513958, 258471.939899999648333 ], [ 353191.590199999511242, 258502.631700001657009 ], [ 353204.935999996960163, 258484.297100000083447 ], [ 353203.936099998652935, 258483.744699999690056 ], [ 353201.843199998140335, 258481.932799998670816 ], [ 353197.9679000005126, 258477.114599999040365 ], [ 353177.524700000882149, 258451.564800001680851 ], [ 353165.658100001513958, 258471.939899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021400", "MAP": "A9-592-T002", "PARCEL_NAM": null, "ACRE": ".53", "LONGITUDE": -64.98386129, "LATITUDE": 18.35695701, "OBJECTID_1": 1993, "PARCEL_NO_": "102502021400", "Tax_Legal_": "4A REM,4A-2,3,15 & ROW 4A-31 SANTA MARIA NO, 1 WEST END QTR", "Name": "WEBSTER, EDMOND & BERNICE", "Address": "PO Box 7996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 251600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 420.13467753899999, "SHAPE_Area": 1588.72190482 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353249.828500002622604, 258580.755699999630451 ], [ 353249.243100002408028, 258578.656500000506639 ], [ 353248.053199999034405, 258576.851799998432398 ], [ 353245.807499997317791, 258575.337900001555681 ], [ 353243.555799998342991, 258574.57209999859333 ], [ 353241.295800000429153, 258574.853399999439716 ], [ 353236.663099996745586, 258574.803899999707937 ], [ 353231.623599998652935, 258576.334600001573563 ], [ 353223.301700003445148, 258578.508099999278784 ], [ 353216.554799996316433, 258580.360199999064207 ], [ 353212.586000002920628, 258581.550799999386072 ], [ 353208.220399998128414, 258581.815400000661612 ], [ 353204.648500002920628, 258581.815400000661612 ], [ 353201.870399996638298, 258581.815400000661612 ], [ 353198.82769999653101, 258581.550799999386072 ], [ 353194.888300001621246, 258580.743299998342991 ], [ 353192.225500002503395, 258575.063299998641014 ], [ 353187.044200003147125, 258564.100900001823902 ], [ 353183.185400001704693, 258557.188299998641014 ], [ 353158.365500003099442, 258517.195799998939037 ], [ 353157.031000003218651, 258514.6418999992311 ], [ 353156.743100002408028, 258512.993900001049042 ], [ 353157.213500000536442, 258510.603900000452995 ], [ 353157.828599996864796, 258508.962999999523163 ], [ 353158.741099998354912, 258507.773400001227856 ], [ 353160.105099998414516, 258506.58729999884963 ], [ 353156.983499996364117, 258501.625500001013279 ], [ 353155.170299999415874, 258502.508799999952316 ], [ 353153.962700001895428, 258502.947999998927116 ], [ 353152.60700000077486, 258503.086899999529123 ], [ 353151.705099999904633, 258502.93019999936223 ], [ 353150.054200001060963, 258502.31870000064373 ], [ 353148.575699999928474, 258501.270199999213219 ], [ 353142.63740000128746, 258511.4662000015378 ], [ 353169.510499998927116, 258554.387099999934435 ], [ 353174.269900001585484, 258561.605999998748302 ], [ 353176.941200003027916, 258566.414599999785423 ], [ 353178.128700003027916, 258568.5185999982059 ], [ 353179.760600000619888, 258571.523699998855591 ], [ 353186.206699997186661, 258585.26799999922514 ], [ 353191.816200003027916, 258587.107099998742342 ], [ 353196.446400001645088, 258587.768500000238419 ], [ 353198.225000001490116, 258587.674899999052286 ], [ 353201.473499998450279, 258587.503899998962879 ], [ 353207.823499999940395, 258586.048700001090765 ], [ 353213.115199998021126, 258585.254999998956919 ], [ 353222.327799998223782, 258583.299300000071526 ], [ 353231.371500000357628, 258580.889299999922514 ], [ 353237.192299999296665, 258580.360199999064207 ], [ 353240.499600000679493, 258580.360199999064207 ], [ 353242.483999997377396, 258581.153900001198053 ], [ 353243.409999996423721, 258582.47690000012517 ], [ 353242.569799996912479, 258585.036899998784065 ], [ 353242.408600002527237, 258586.382100000977516 ], [ 353242.2533999979496, 258586.979299999773502 ], [ 353226.811499997973442, 258627.177400000393391 ], [ 353232.542900003492832, 258627.307700000703335 ], [ 353235.006800003349781, 258622.050500001758337 ], [ 353250.159800000488758, 258587.830899998545647 ], [ 353249.968400001525879, 258582.103300001472235 ], [ 353249.828500002622604, 258580.755699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502040700", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-7", "ACRE": ".34", "LONGITUDE": -64.98369029, "LATITUDE": 18.35694946, "OBJECTID_1": 2044, "PARCEL_NO_": "102502040700", "Tax_Legal_": "4A-7 ESTATE SANTA MARIA NO.1 WESTEND QTR.", "Name": "CASTRO SR., ERIC WELFREDO", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51400, "Improved_V": 823800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.16623511700001, "SHAPE_Area": 1620.14859963 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353233.576800003647804, 258547.222300000488758 ], [ 353234.526600003242493, 258538.719000000506639 ], [ 353231.682899996638298, 258539.274399999529123 ], [ 353223.169399999082088, 258540.937199998646975 ], [ 353205.574500001966953, 258545.435100000351667 ], [ 353197.901600003242493, 258546.758000001311302 ], [ 353192.768399998545647, 258547.8739 ], [ 353185.862999998033047, 258549.536200001835823 ], [ 353181.365099996328354, 258551.652800001204014 ], [ 353180.444399997591972, 258552.771699998527765 ], [ 353183.185400001704693, 258557.188299998641014 ], [ 353184.100299999117851, 258558.827199999243021 ], [ 353187.044200003147125, 258564.100900001823902 ], [ 353191.951099999248981, 258574.482700001448393 ], [ 353192.225500002503395, 258575.063299998641014 ], [ 353194.888300001621246, 258580.743299998342991 ], [ 353198.82769999653101, 258581.550799999386072 ], [ 353201.870399996638298, 258581.815400000661612 ], [ 353204.648500002920628, 258581.815400000661612 ], [ 353208.220399998128414, 258581.815400000661612 ], [ 353212.586000002920628, 258581.550799999386072 ], [ 353216.554799996316433, 258580.360199999064207 ], [ 353223.301700003445148, 258578.508099999278784 ], [ 353230.285899996757507, 258576.684000000357628 ], [ 353233.576800003647804, 258547.222300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021400", "MAP": "A9-592-T002", "PARCEL_NAM": null, "ACRE": ".59", "LONGITUDE": -64.98353637, "LATITUDE": 18.35640329, "OBJECTID_1": 1993, "PARCEL_NO_": "102502021400", "Tax_Legal_": "4A REM,4A-2,3,15 & ROW 4A-31 SANTA MARIA NO, 1 WEST END QTR", "Name": "WEBSTER, EDMOND & BERNICE", "Address": "PO Box 7996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 251600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 507.834568795, "SHAPE_Area": 2069.6673827200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353205.574500001966953, 258545.435100000351667 ], [ 353223.169399999082088, 258540.937199998646975 ], [ 353231.682899996638298, 258539.274399999529123 ], [ 353240.102700002491474, 258537.629900000989437 ], [ 353269.16160000115633, 258529.333799999207258 ], [ 353276.522900000214577, 258525.583000000566244 ], [ 353277.785599999129772, 258522.553399998694658 ], [ 353278.593800000846386, 258520.664099998772144 ], [ 353278.598499998450279, 258513.854899998754263 ], [ 353279.027300000190735, 258500.404599998146296 ], [ 353278.940200001001358, 258497.841299999505281 ], [ 353278.417499996721745, 258496.021999999880791 ], [ 353277.147100001573563, 258493.662900000810623 ], [ 353275.225400000810623, 258492.152800001204014 ], [ 353273.620899997651577, 258491.285900000482798 ], [ 353269.331799998879433, 258490.291000001132488 ], [ 353215.722300000488758, 258477.373799998313189 ], [ 353212.185199998319149, 258476.384799998253584 ], [ 353210.68639999628067, 258475.732299998402596 ], [ 353209.723899997770786, 258475.190799999982119 ], [ 353208.444200001657009, 258474.006099998950958 ], [ 353192.594499997794628, 258454.233899999409914 ], [ 353191.961900003254414, 258452.734099999070168 ], [ 353191.546599999070168, 258450.915600001811981 ], [ 353191.668300002813339, 258449.101399999111891 ], [ 353192.435500003397465, 258447.185499999672174 ], [ 353193.197499997913837, 258445.910199999809265 ], [ 353193.958800002932549, 258444.741700001060963 ], [ 353190.233000002801418, 258440.441199999302626 ], [ 353188.397600002586842, 258441.601199999451637 ], [ 353187.53490000218153, 258442.021499998867512 ], [ 353186.135099999606609, 258442.4375 ], [ 353184.417199999094009, 258442.317099999636412 ], [ 353183.210500001907349, 258441.802400000393391 ], [ 353177.524700000882149, 258451.564800001680851 ], [ 353197.9679000005126, 258477.114599999040365 ], [ 353201.843199998140335, 258481.932799998670816 ], [ 353203.936099998652935, 258483.744699999690056 ], [ 353205.584600001573563, 258484.6554000005126 ], [ 353207.235500000417233, 258485.2668999992311 ], [ 353210.538400001823902, 258486.340300001204014 ], [ 353267.33110000193119, 258499.357200000435114 ], [ 353270.636399999260902, 258500.131499998271465 ], [ 353271.23480000346899, 258500.58500000089407 ], [ 353271.674500003457069, 258502.084600001573563 ], [ 353271.096199996769428, 258518.088300000876188 ], [ 353271.087899997830391, 258519.135499998927116 ], [ 353270.328299999237061, 258520.027100000530481 ], [ 353268.361000001430511, 258521.357999999076128 ], [ 353260.051100000739098, 258525.331599999219179 ], [ 353205.574500001966953, 258538.026799999177456 ], [ 353195.623599998652935, 258540.207800000905991 ], [ 353186.259900003671646, 258542.260099999606609 ], [ 353178.586999997496605, 258542.789299998432398 ], [ 353174.116999998688698, 258542.576400000602007 ], [ 353180.444399997591972, 258552.771699998527765 ], [ 353181.365099996328354, 258551.652800001204014 ], [ 353185.862999998033047, 258549.536200001835823 ], [ 353192.768399998545647, 258547.8739 ], [ 353197.901600003242493, 258546.758000001311302 ], [ 353205.574500001966953, 258545.435100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021800", "MAP": "A9-584-T002", "PARCEL_NAM": null, "ACRE": ".39", "LONGITUDE": -64.98331382000001, "LATITUDE": 18.35687866, "OBJECTID_1": 1997, "PARCEL_NO_": "102502021800", "Tax_Legal_": "4A-8 SANTA MARIA NO.1 WEST END QTR", "Name": "GUMBS, STEVEN", "Address": "PO Box 303405", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.042227505, "SHAPE_Area": 1377.8283229000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353250.159800000488758, 258587.830899998545647 ], [ 353258.850199997425079, 258568.205699998885393 ], [ 353262.968000002205372, 258558.106899999082088 ], [ 353276.522900000214577, 258525.583000000566244 ], [ 353269.16160000115633, 258529.333799999207258 ], [ 353240.102700002491474, 258537.629900000989437 ], [ 353234.526600003242493, 258538.719000000506639 ], [ 353233.576800003647804, 258547.222300000488758 ], [ 353230.285899996757507, 258576.684000000357628 ], [ 353231.623599998652935, 258576.334600001573563 ], [ 353236.663099996745586, 258574.803899999707937 ], [ 353241.295800000429153, 258574.853399999439716 ], [ 353243.555799998342991, 258574.57209999859333 ], [ 353245.807499997317791, 258575.337900001555681 ], [ 353248.053199999034405, 258576.851799998432398 ], [ 353249.243100002408028, 258578.656500000506639 ], [ 353249.828500002622604, 258580.755699999630451 ], [ 353249.968400001525879, 258582.103300001472235 ], [ 353250.159800000488758, 258587.830899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504030100", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-10", "ACRE": ".23", "LONGITUDE": -64.98406865, "LATITUDE": 18.35644997, "OBJECTID_1": 2167, "PARCEL_NO_": "102504030100", "Tax_Legal_": "4A-10 ESTATE SANTA MARIA NO.1 WEST END QTR.", "Name": "De LEONARD, ELBA SENCLAIRE", "Address": "5108 Estate Bordeaux", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.65775265799999, "SHAPE_Area": 1454.1148284599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353191.590199999511242, 258502.631700001657009 ], [ 353165.658100001513958, 258471.939899999648333 ], [ 353148.575699999928474, 258501.270199999213219 ], [ 353150.054200001060963, 258502.31870000064373 ], [ 353151.705099999904633, 258502.93019999936223 ], [ 353152.60700000077486, 258503.086899999529123 ], [ 353153.962700001895428, 258502.947999998927116 ], [ 353155.170299999415874, 258502.508799999952316 ], [ 353156.983499996364117, 258501.625500001013279 ], [ 353160.105099998414516, 258506.58729999884963 ], [ 353158.741099998354912, 258507.773400001227856 ], [ 353157.828599996864796, 258508.962999999523163 ], [ 353157.213500000536442, 258510.603900000452995 ], [ 353156.743100002408028, 258512.993900001049042 ], [ 353157.031000003218651, 258514.6418999992311 ], [ 353158.365500003099442, 258517.195799998939037 ], [ 353165.396700002253056, 258528.525199998170137 ], [ 353174.116999998688698, 258542.576400000602007 ], [ 353187.837499998509884, 258511.21059999987483 ], [ 353191.590199999511242, 258502.631700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504030300", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-13", "ACRE": ".26", "LONGITUDE": -64.98366234, "LATITUDE": 18.35638285, "OBJECTID_1": 2169, "PARCEL_NO_": "102504030300", "Tax_Legal_": "4A-13 ESTATE SANTA MARIA No.1 WESTEND QUARTER", "Name": "HARRIGAN, RONALD E. & SANDRA O", "Address": "PO Box 10971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.42788174499999, "SHAPE_Area": 705.467713237 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353191.590199999511242, 258502.631700001657009 ], [ 353191.819899998605251, 258502.903499998152256 ], [ 353225.936700001358986, 258512.7685999982059 ], [ 353233.38849999755621, 258491.577599998563528 ], [ 353210.538400001823902, 258486.340300001204014 ], [ 353207.235500000417233, 258485.2668999992311 ], [ 353205.584600001573563, 258484.6554000005126 ], [ 353204.935999996960163, 258484.297100000083447 ], [ 353191.590199999511242, 258502.631700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502040900", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-11", "ACRE": ".38", "LONGITUDE": -64.983668, "LATITUDE": 18.35661099, "OBJECTID_1": 2045, "PARCEL_NO_": "102502040900", "Tax_Legal_": "4A-11 SANTA MARIA #1 WESTEND QTR", "Name": "STOKES, CAROLYN & SMITH, DEREK", "Address": "PO Box 12303", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44300, "Improved_V": 310700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.71140442399999, "SHAPE_Area": 1881.1783342900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353191.819899998605251, 258502.903499998152256 ], [ 353191.590199999511242, 258502.631700001657009 ], [ 353187.837499998509884, 258511.21059999987483 ], [ 353174.116999998688698, 258542.576400000602007 ], [ 353178.586999997496605, 258542.789299998432398 ], [ 353186.259900003671646, 258542.260099999606609 ], [ 353195.623599998652935, 258540.207800000905991 ], [ 353205.574500001966953, 258538.026799999177456 ], [ 353260.051100000739098, 258525.331599999219179 ], [ 353260.282999999821186, 258525.22069999948144 ], [ 353268.361000001430511, 258521.357999999076128 ], [ 353270.328299999237061, 258520.027100000530481 ], [ 353271.087899997830391, 258519.135499998927116 ], [ 353226.956600002944469, 258513.063499998301268 ], [ 353225.936700001358986, 258512.7685999982059 ], [ 353191.819899998605251, 258502.903499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502041100", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-14", "ACRE": ".35", "LONGITUDE": -64.98332143, "LATITUDE": 18.35645032, "OBJECTID_1": 2047, "PARCEL_NO_": "102502041100", "Tax_Legal_": "4A-14 ESTATE SANTA MARIA NO.1 WESTEND QTR", "Name": "CALLWOOD, CHARLES & EUNILE", "Address": "PO Box 7461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52900, "Improved_V": 402300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.66422377400001, "SHAPE_Area": 867.35085029499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353225.936700001358986, 258512.7685999982059 ], [ 353226.956600002944469, 258513.063499998301268 ], [ 353271.087899997830391, 258519.135499998927116 ], [ 353271.096199996769428, 258518.088300000876188 ], [ 353271.674500003457069, 258502.084600001573563 ], [ 353271.23480000346899, 258500.58500000089407 ], [ 353270.636399999260902, 258500.131499998271465 ], [ 353267.33110000193119, 258499.357200000435114 ], [ 353233.38849999755621, 258491.577599998563528 ], [ 353225.936700001358986, 258512.7685999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502040100", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-1", "ACRE": ".34", "LONGITUDE": -64.98450454, "LATITUDE": 18.35696556, "OBJECTID_1": 2040, "PARCEL_NO_": "102502040100", "Tax_Legal_": "4A-1 ESTATE SANTA MARIA No. 1 WEST END QTR.", "Name": "GEORGE, SHEKEMA M.", "Address": "14145 Yacht Ter", "City": "Alpharetta", "State": "Georgia", "Zip": 30004, "Country": "United States", "Land_Value": 41900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.74285866899999, "SHAPE_Area": 1057.9577700699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353104.385600000619888, 258593.141199998557568 ], [ 353130.625399999320507, 258569.530200000852346 ], [ 353148.662600003182888, 258556.788699999451637 ], [ 353130.406599998474121, 258532.466400001198053 ], [ 353101.489799998700619, 258582.116500001400709 ], [ 353103.820600003004074, 258592.479200001806021 ], [ 353104.385600000619888, 258593.141199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021400", "MAP": "A9-584-T002", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.98429676000001, "LATITUDE": 18.35672663, "OBJECTID_1": 1993, "PARCEL_NO_": "102502021400", "Tax_Legal_": "4A REM,4A-2,3,15 & ROW 4A-31 SANTA MARIA NO, 1 WEST END QTR", "Name": "WEBSTER, EDMOND & BERNICE", "Address": "PO Box 7996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 251600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.028023839, "SHAPE_Area": 722.41230857000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353148.662600003182888, 258556.788699999451637 ], [ 353164.037399999797344, 258545.645599998533726 ], [ 353142.63740000128746, 258511.4662000015378 ], [ 353130.406599998474121, 258532.466400001198053 ], [ 353148.662600003182888, 258556.788699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502040600", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-6", "ACRE": ".91", "LONGITUDE": -64.98374528, "LATITUDE": 18.35734124, "OBJECTID_1": 2043, "PARCEL_NO_": "102502040600", "Tax_Legal_": "4A-6 ESTATE SANTA MARIA NO.1 WEST END QTR", "Name": "FLOYD, KENNETH A. & ELENA L. SHAUBAH (TRUSTEES)", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.37197281, "SHAPE_Area": 2611.2828439099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353226.811499997973442, 258627.177400000393391 ], [ 353242.2533999979496, 258586.979299999773502 ], [ 353242.408600002527237, 258586.382100000977516 ], [ 353242.569799996912479, 258585.036899998784065 ], [ 353243.409999996423721, 258582.47690000012517 ], [ 353242.483999997377396, 258581.153900001198053 ], [ 353240.499600000679493, 258580.360199999064207 ], [ 353237.192299999296665, 258580.360199999064207 ], [ 353231.371500000357628, 258580.889299999922514 ], [ 353222.327799998223782, 258583.299300000071526 ], [ 353213.115199998021126, 258585.254999998956919 ], [ 353207.823499999940395, 258586.048700001090765 ], [ 353201.473499998450279, 258587.503899998962879 ], [ 353198.225000001490116, 258587.674899999052286 ], [ 353196.446400001645088, 258587.768500000238419 ], [ 353191.816200003027916, 258587.107099998742342 ], [ 353186.206699997186661, 258585.26799999922514 ], [ 353172.928199999034405, 258595.034099999815226 ], [ 353164.857299998402596, 258605.457299999892712 ], [ 353158.005000002682209, 258614.884399998933077 ], [ 353168.91610000282526, 258618.343199998140335 ], [ 353191.449699997901917, 258623.593899998813868 ], [ 353218.031000003218651, 258626.977800000458956 ], [ 353226.811499997973442, 258627.177400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021400", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-3", "ACRE": ".26", "LONGITUDE": -64.98422261, "LATITUDE": 18.35700095, "OBJECTID_1": 1993, "PARCEL_NO_": "102502021400", "Tax_Legal_": "4A REM,4A-2,3,15 & ROW 4A-31 SANTA MARIA NO, 1 WEST END QTR", "Name": "WEBSTER, EDMOND & BERNICE", "Address": "PO Box 7996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 251600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.734407941, "SHAPE_Area": 868.78206103399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353146.376500003039837, 258586.061299998313189 ], [ 353175.88740000128746, 258564.517799999564886 ], [ 353174.269900001585484, 258561.605999998748302 ], [ 353169.510499998927116, 258554.387099999934435 ], [ 353164.037399999797344, 258545.645599998533726 ], [ 353148.662600003182888, 258556.788699999451637 ], [ 353130.625399999320507, 258569.530200000852346 ], [ 353146.376500003039837, 258586.061299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502040400", "MAP": "A9-584-T002", "PARCEL_NAM": "4A-4", "ACRE": ".28", "LONGITUDE": -64.98409429, "LATITUDE": 18.35716693, "OBJECTID_1": 2041, "PARCEL_NO_": "102502040400", "Tax_Legal_": "4A-4 ESTATE SANTA MARIA NO.1 WEST END QTR.", "Name": "MACTAVIOUS, IRA. A. & LESA M. HENRY", "Address": "PO Box 7986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34500, "Improved_V": 209000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.180772426, "SHAPE_Area": 785.269955396 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353175.88740000128746, 258564.517799999564886 ], [ 353146.376500003039837, 258586.061299998313189 ], [ 353164.857299998402596, 258605.457299999892712 ], [ 353172.928199999034405, 258595.034099999815226 ], [ 353186.206699997186661, 258585.26799999922514 ], [ 353179.760600000619888, 258571.523699998855591 ], [ 353178.128700003027916, 258568.5185999982059 ], [ 353176.941200003027916, 258566.414599999785423 ], [ 353175.88740000128746, 258564.517799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021400", "MAP": "A9-592-T002", "PARCEL_NAM": "4A-16", "ACRE": null, "LONGITUDE": -64.98339727, "LATITUDE": 18.35608431, "OBJECTID_1": 1993, "PARCEL_NO_": "102502021400", "Tax_Legal_": "4A REM,4A-2,3,15 & ROW 4A-31 SANTA MARIA NO, 1 WEST END QTR", "Name": "WEBSTER, EDMOND & BERNICE", "Address": "PO Box 7996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 251600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.06574184499999, "SHAPE_Area": 1006.97192504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353249.165299996733665, 258485.43189999833703 ], [ 353262.288900002837181, 258451.176199998706579 ], [ 353238.929499998688698, 258444.840999998152256 ], [ 353219.50959999859333, 258478.286299999803305 ], [ 353249.165299996733665, 258485.43189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021700", "MAP": "D9-8535-T011", "PARCEL_NAM": "4A-15", "ACRE": ".52", "LONGITUDE": -64.9836926, "LATITUDE": 18.35590612, "OBJECTID_1": 1996, "PARCEL_NO_": "102502021700", "Tax_Legal_": "4A-15 ESTATE SANTA MARIA NO.1 WEST END QTR", "Name": "LOUIS, CIERRE J. & DAVERNE M", "Address": "PO Box 303418", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.232062294, "SHAPE_Area": 1931.9912977700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353219.50959999859333, 258478.286299999803305 ], [ 353238.929499998688698, 258444.840999998152256 ], [ 353201.246100001037121, 258410.835299998521805 ], [ 353183.210500001907349, 258441.802400000393391 ], [ 353184.417199999094009, 258442.317099999636412 ], [ 353186.135099999606609, 258442.4375 ], [ 353187.53490000218153, 258442.021499998867512 ], [ 353188.397600002586842, 258441.601199999451637 ], [ 353190.233000002801418, 258440.441199999302626 ], [ 353193.958800002932549, 258444.741700001060963 ], [ 353193.197499997913837, 258445.910199999809265 ], [ 353192.435500003397465, 258447.185499999672174 ], [ 353191.668300002813339, 258449.101399999111891 ], [ 353191.546599999070168, 258450.915600001811981 ], [ 353191.961900003254414, 258452.734099999070168 ], [ 353192.594499997794628, 258454.233899999409914 ], [ 353208.444200001657009, 258474.006099998950958 ], [ 353209.723899997770786, 258475.190799999982119 ], [ 353210.68639999628067, 258475.732299998402596 ], [ 353212.185199998319149, 258476.384799998253584 ], [ 353215.722300000488758, 258477.373799998313189 ], [ 353219.50959999859333, 258478.286299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404012100", "MAP": "D9-7642-T005", "PARCEL_NAM": "2-9", "ACRE": ".235", "LONGITUDE": -65.00802901, "LATITUDE": 18.35587717, "OBJECTID_1": 1842, "PARCEL_NO_": "102404012100", "Tax_Legal_": "2-9 ESTATE BRETHESDA NO.8 WEST END QTR.", "Name": "HENDRICKS, KHYE A.", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.62315883, "SHAPE_Area": 1043.45077868 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350657.069899998605251, 258408.531700000166893 ], [ 350626.424500003457069, 258407.32880000025034 ], [ 350617.290700003504753, 258407.474899999797344 ], [ 350623.179300002753735, 258425.960299998521805 ], [ 350626.393299996852875, 258438.055700000375509 ], [ 350640.892700001597404, 258438.229600001126528 ], [ 350656.091300003230572, 258437.710799999535084 ], [ 350656.17059999704361, 258435.348299998790026 ], [ 350656.523199997842312, 258424.833200000226498 ], [ 350657.069899998605251, 258408.531700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404011600", "MAP": "D9-7642-T005", "PARCEL_NAM": "2-11", "ACRE": ".26", "LONGITUDE": -65.00763266, "LATITUDE": 18.35619581, "OBJECTID_1": 1837, "PARCEL_NO_": "102404011600", "Tax_Legal_": "2-11 ESTATE BETHESDA NO.8 WEST END QTR", "Name": "MCCLEAN, ALI & JULIETTE M. MADURO", "Address": "1404 Drexel Dr", "City": "Davis", "State": "California", "Zip": 95616, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.457987433, "SHAPE_Area": 1235.66521283 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350696.595299996435642, 258449.8277000002563 ], [ 350696.725500002503395, 258433.1064000017941 ], [ 350687.350500002503395, 258437.082100000232458 ], [ 350681.554999999701977, 258438.924499999731779 ], [ 350676.395599998533726, 258440.776599999517202 ], [ 350673.220600001513958, 258441.702599998563528 ], [ 350669.781000003218651, 258442.099500000476837 ], [ 350664.48929999768734, 258441.967199999839067 ], [ 350662.570900000631809, 258468.03940000012517 ], [ 350662.062600001692772, 258473.760299999266863 ], [ 350684.358000002801418, 258478.07209999859333 ], [ 350693.323700003325939, 258479.806099999696016 ], [ 350693.580399997532368, 258478.478799998760223 ], [ 350695.035599999129772, 258470.859000001102686 ], [ 350695.542300000786781, 258465.544199999421835 ], [ 350696.07599999755621, 258456.760999999940395 ], [ 350696.595299996435642, 258449.8277000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404012200", "MAP": "D9-7642-T005", "PARCEL_NAM": null, "ACRE": ".33", "LONGITUDE": -65.00797141, "LATITUDE": 18.35632215, "OBJECTID_1": 1843, "PARCEL_NO_": "102404012200", "Tax_Legal_": "2-12 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "HENDRICKS, KIMBRA A.", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49900, "Improved_V": 270800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.54224152500001, "SHAPE_Area": 2226.1545238899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350664.48929999768734, 258441.967199999839067 ], [ 350660.123700000345707, 258441.570300001651049 ], [ 350655.959499999880791, 258441.642099998891354 ], [ 350652.450800001621246, 258441.702599998563528 ], [ 350641.735100001096725, 258441.967199999839067 ], [ 350634.459100000560284, 258442.364100001752377 ], [ 350630.093400001525879, 258442.760999999940395 ], [ 350627.635899998247623, 258443.196800000965595 ], [ 350626.265399999916553, 258444.983899999409914 ], [ 350624.74889999628067, 258446.170699998736382 ], [ 350622.630699999630451, 258447.202899999916553 ], [ 350621.741999998688698, 258447.416400000452995 ], [ 350629.452899999916553, 258494.665899999439716 ], [ 350653.658500000834465, 258510.252999998629093 ], [ 350658.54110000282526, 258513.397199999541044 ], [ 350662.570900000631809, 258468.03940000012517 ], [ 350664.48929999768734, 258441.967199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403027400", "MAP": "D9-7641-T007", "PARCEL_NAM": null, "ACRE": ".10", "LONGITUDE": -65.00824636, "LATITUDE": 18.3563262, "OBJECTID_1": 1703, "PARCEL_NO_": "102403027400", "Tax_Legal_": "2-8-A ESTATE BETHESDA NO.8 WEST END QTR", "Name": "HENDRICKS, KIMBRA A.", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.197534006, "SHAPE_Area": 709.51461843699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350621.741999998688698, 258447.416400000452995 ], [ 350595.893500000238419, 258473.055500000715256 ], [ 350629.452899999916553, 258494.665899999439716 ], [ 350621.741999998688698, 258447.416400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018500", "MAP": "A9-615-T003", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0084147, "LATITUDE": 18.35600588, "OBJECTID_1": 1627, "PARCEL_NO_": "102403018500", "Tax_Legal_": "2-8 REM & ROWS 2-1,2-14,&2-24 BETHESDA NO. 8 WEST END QUARTER", "Name": "HENDRICKS, GWYNETHE", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 148700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.01457503200001, "SHAPE_Area": 2540.9653921099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350621.741999998688698, 258447.416400000452995 ], [ 350621.6266999989748, 258437.998500000685453 ], [ 350626.393299996852875, 258438.055700000375509 ], [ 350623.179300002753735, 258425.960299998521805 ], [ 350617.290700003504753, 258407.474899999797344 ], [ 350606.580700002610683, 258407.646299999207258 ], [ 350593.404500000178814, 258405.741300001740456 ], [ 350582.370800003409386, 258402.339400000870228 ], [ 350572.846600003540516, 258457.854100000113249 ], [ 350591.411300003528595, 258470.169199999421835 ], [ 350595.893500000238419, 258473.055500000715256 ], [ 350621.741999998688698, 258447.416400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00782407, "LATITUDE": 18.35453761, "OBJECTID_1": 1823, "PARCEL_NO_": "102404010100", "Tax_Legal_": "8-1REM, 8-1-B&8-1-D FORTUNA NO. 8 WEST END QTR", "Name": "GOTTLIEB, EUGEN V. & NORMA M.", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69400, "Improved_V": 326100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.143918575100002, "SHAPE_Area": 263.965561471 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350667.497599996626377, 258267.092599999159575 ], [ 350662.37389999628067, 258269.083700001239777 ], [ 350657.480599999427795, 258270.210799999535084 ], [ 350653.179499998688698, 258270.565699998289347 ], [ 350646.011500000953674, 258271.443199999630451 ], [ 350647.113799996674061, 258273.463700000196695 ], [ 350651.510600000619888, 258281.515500001609325 ], [ 350671.42119999974966, 258276.65819999948144 ], [ 350682.066299997270107, 258273.823499999940395 ], [ 350679.371699996292591, 258273.094500001519918 ], [ 350668.1300999969244, 258267.513999998569489 ], [ 350667.497599996626377, 258267.092599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018500", "MAP": "A9-615-T003", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00797446, "LATITUDE": 18.35451551, "OBJECTID_1": 1627, "PARCEL_NO_": "102403018500", "Tax_Legal_": "2-8 REM & ROWS 2-1,2-14,&2-24 BETHESDA NO. 8 WEST END QUARTER", "Name": "HENDRICKS, GWYNETHE", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 148700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.61324052403999996, "SHAPE_Area": 0.01634781 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350646.011500000953674, 258271.443199999630451 ], [ 350645.861400000751019, 258271.532600000500679 ], [ 350646.101199999451637, 258271.607599999755621 ], [ 350646.011500000953674, 258271.443199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102403045800", "MAP": "D9-8499-T010", "PARCEL_NAM": "2-A", "ACRE": ".387", "LONGITUDE": -65.00810419, "LATITUDE": 18.35439311, "OBJECTID_1": 1816, "PARCEL_NO_": "102403045800", "Tax_Legal_": "CONSOLIDATED 2-A ESTATE BETHESDA #8 WESTEND QTR", "Name": "DONOVAN, HENRY & DONNA (LIFE INTEREST)", "Address": "PO Box 306444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 130300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.67332566600001, "SHAPE_Area": 1587.89943928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350628.170800000429153, 258272.549800001084805 ], [ 350645.647399999201298, 258271.465799998492002 ], [ 350645.861400000751019, 258271.532600000500679 ], [ 350653.179499998688698, 258270.565699998289347 ], [ 350657.480599999427795, 258270.210799999535084 ], [ 350662.37389999628067, 258269.083700001239777 ], [ 350667.497599996626377, 258267.092599999159575 ], [ 350661.651399999856949, 258261.504299998283386 ], [ 350655.45099999755621, 258254.853199999779463 ], [ 350647.426700003445148, 258236.736000001430511 ], [ 350629.64639999717474, 258241.445599999278784 ], [ 350610.372800000011921, 258243.280999999493361 ], [ 350605.368199996650219, 258267.672100000083447 ], [ 350605.643700003623962, 258267.641100000590086 ], [ 350604.391500003635883, 258276.259300000965595 ], [ 350608.61599999666214, 258275.24439999833703 ], [ 350611.650700002908707, 258274.976300001144409 ], [ 350628.170800000429153, 258272.549800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503011000", "MAP": "D9-8400-T010", "PARCEL_NAM": "9A REM", "ACRE": ".59", "LONGITUDE": -64.99250696, "LATITUDE": 18.35531085, "OBJECTID_1": 2062, "PARCEL_NO_": "102503011000", "Tax_Legal_": "9A REM BONNE ESPERANCE NO.2 WEST END QTR", "Name": "EDMEAD, MAUDEGENA", "Address": "PO Box 307885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69400, "Improved_V": 96900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.42860731500002, "SHAPE_Area": 2620.4519567399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352286.756700001657009, 258428.105000000447035 ], [ 352294.044100001454353, 258424.576099999248981 ], [ 352302.965599998831749, 258418.527399998158216 ], [ 352309.468299999833107, 258412.45890000090003 ], [ 352311.910599999129772, 258409.734700001776218 ], [ 352293.935599997639656, 258385.770799998193979 ], [ 352298.263099998235703, 258379.308400001376867 ], [ 352270.760999999940395, 258317.99439999833703 ], [ 352248.882600001990795, 258330.480900000780821 ], [ 352269.343800000846386, 258377.833999998867512 ], [ 352277.350699998438358, 258396.364000000059605 ], [ 352286.756700001657009, 258428.105000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503012500", "MAP": "D9-8400-T010", "PARCEL_NAM": "9L-A", "ACRE": ".08", "LONGITUDE": -64.9925596, "LATITUDE": 18.35554464, "OBJECTID_1": 2075, "PARCEL_NO_": "102503012500", "Tax_Legal_": "9L-A BONNE ESPERANCE NO.2 WEST END QTR", "Name": "EDMEAD, MAUDEGENA", "Address": "PO Box 307885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.35760730299999, "SHAPE_Area": 240.863525678 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352269.343800000846386, 258377.833999998867512 ], [ 352264.547899998724461, 258387.067299999296665 ], [ 352286.756700001657009, 258428.105000000447035 ], [ 352277.350699998438358, 258396.364000000059605 ], [ 352269.343800000846386, 258377.833999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503011100", "MAP": "G9-2819-T78", "PARCEL_NAM": null, "ACRE": ".518", "LONGITUDE": -64.99229645, "LATITUDE": 18.35514841, "OBJECTID_1": 2063, "PARCEL_NO_": "102503011100", "Tax_Legal_": "BONNE ESPERANCE 9AA&9B WEST END QTR", "Name": "ARMSTRONG, JEAN", "Address": "BOX 4222", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77400, "Improved_V": 174700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.02993993800001, "SHAPE_Area": 2860.9963868 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352311.910599999129772, 258409.734700001776218 ], [ 352315.191600002348423, 258403.217599999159575 ], [ 352331.512100003659725, 258380.553100001066923 ], [ 352298.287100002169609, 258305.131799999624491 ], [ 352282.105099998414516, 258311.543299999088049 ], [ 352270.760999999940395, 258317.99439999833703 ], [ 352298.263099998235703, 258379.308400001376867 ], [ 352293.935599997639656, 258385.770799998193979 ], [ 352311.910599999129772, 258409.734700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503012000", "MAP": "D9-1215-T74", "PARCEL_NAM": "9O", "ACRE": ".60", "LONGITUDE": -64.99335716, "LATITUDE": 18.35560351, "OBJECTID_1": 2072, "PARCEL_NO_": "102503012000", "Tax_Legal_": "BONNE ESPERANCE 9-0 WEST END QTR", "Name": "ROBERTS, BRIAN L.", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 70200, "Improved_V": 388400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.196219636, "SHAPE_Area": 2087.6841958300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352173.776500001549721, 258373.20380000025034 ], [ 352179.423000000417233, 258443.2212999984622 ], [ 352181.773500002920628, 258444.123500000685453 ], [ 352187.418399997055531, 258446.290399998426437 ], [ 352207.682300001382828, 258434.0016999989748 ], [ 352206.928099997341633, 258427.8739 ], [ 352197.046700000762939, 258357.28770000115037 ], [ 352191.375500001013279, 258360.407699998468161 ], [ 352188.132299996912479, 258362.49210000038147 ], [ 352173.776500001549721, 258373.20380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802026300", "MAP": "D9-8598-T011", "PARCEL_NAM": "4-2-24-1", "ACRE": ".57", "LONGITUDE": -65.01560143, "LATITUDE": 18.34572813, "OBJECTID_1": 7321, "PARCEL_NO_": "104802026300", "Tax_Legal_": "4-2-24-1 ESTATE FORTUNA No.8 WEST END QUARTER", "Name": "LOPREATO, GEOGORY FRANCIS", "Address": "2741 Lakeside Pkwy", "City": "Flower Mound", "State": "Texas", "Zip": 75022, "Country": "United States", "Land_Value": 103700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.2548964, "SHAPE_Area": 2811.40583586 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349840.951499998569489, 257258.599800001829863 ], [ 349824.081699997186661, 257285.200100000947714 ], [ 349812.556999996304512, 257322.833999998867512 ], [ 349875.5320999994874, 257313.63910000026226 ], [ 349872.718599997460842, 257265.275699999183416 ], [ 349859.840999998152256, 257262.425999999046326 ], [ 349855.825599998235703, 257260.493299998342991 ], [ 349846.140799999237061, 257261.469500001519918 ], [ 349840.951499998569489, 257258.599800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023600", "MAP": "D9-8598-T011", "PARCEL_NAM": "4-2-24 REM", "ACRE": "1.38", "LONGITUDE": -65.01607378, "LATITUDE": 18.34576643, "OBJECTID_1": 7299, "PARCEL_NO_": "104802023600", "Tax_Legal_": "4-2-23-4,4-2-23REM,4-2-24REM. &4-7-4 FORTUNA No.8 WESTEND QTR.", "Name": "DE LUGO, RONALD", "Address": "1746 Deerhill Trl", "City": "Topanga", "State": "California", "Zip": 90290, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.92690391000002, "SHAPE_Area": 3477.61415046 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349785.318599998950958, 257282.708000000566244 ], [ 349747.092299997806549, 257338.940900001674891 ], [ 349752.25280000269413, 257345.19370000064373 ], [ 349774.557800002396107, 257334.555300001055002 ], [ 349798.847900003194809, 257322.932900000363588 ], [ 349806.115500003099442, 257321.72580000013113 ], [ 349812.556999996304512, 257322.833999998867512 ], [ 349824.081699997186661, 257285.200100000947714 ], [ 349840.951499998569489, 257258.599800001829863 ], [ 349834.904600001871586, 257255.255899999290705 ], [ 349829.298199996352196, 257250.776999998837709 ], [ 349826.116099998354912, 257245.68470000103116 ], [ 349821.371699996292591, 257234.668999999761581 ], [ 349820.052599996328354, 257232.537200000137091 ], [ 349812.995999999344349, 257263.339600000530481 ], [ 349788.564400002360344, 257277.933299999684095 ], [ 349785.318599998950958, 257282.708000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023100", "MAP": "D9-7406-T004", "PARCEL_NAM": "4-7-3", "ACRE": "1.42", "LONGITUDE": -65.01657953, "LATITUDE": 18.34480832, "OBJECTID_1": 7294, "PARCEL_NO_": "104802023100", "Tax_Legal_": "4-7-2 & 4-7-3 ESTATE FORTUNA No.8 WESTEND QUARTER", "Name": "DGS LAND DEVELOPMENT LLC", "Address": "3734 Fm 3006", "City": "Pleasanton", "State": "Texas", "Zip": 78064, "Country": "United States", "Land_Value": 189700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 473.747488111, "SHAPE_Area": 6267.7677349300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349711.262999996542931, 257191.9712999984622 ], [ 349727.821299999952316, 257226.220300000160933 ], [ 349727.068199999630451, 257252.989199999719858 ], [ 349740.641099996864796, 257263.044300001114607 ], [ 349733.358800001442432, 257299.369800001382828 ], [ 349756.915799997746944, 257253.220100000500679 ], [ 349757.299400001764297, 257250.690400000661612 ], [ 349756.035300001502037, 257249.414200000464916 ], [ 349752.5996999964118, 257246.493099998682737 ], [ 349754.629699997603893, 257242.890599999576807 ], [ 349757.352600000798702, 257243.816199999302626 ], [ 349759.714400000870228, 257244.377199999988079 ], [ 349761.171800002455711, 257244.207600001245737 ], [ 349761.730400003492832, 257242.583700001239777 ], [ 349766.829099997878075, 257218.743000000715256 ], [ 349757.750100001692772, 257192.440699998289347 ], [ 349785.700900003314018, 257172.901599999517202 ], [ 349784.836999997496605, 257169.142099998891354 ], [ 349780.078199997544289, 257159.815000001341105 ], [ 349776.892599999904633, 257155.144900001585484 ], [ 349766.482400000095367, 257146.61600000038743 ], [ 349765.694099999964237, 257144.498599998652935 ], [ 349763.275200001895428, 257144.478799998760223 ], [ 349760.022900000214577, 257147.618599999696016 ], [ 349757.630999997258186, 257144.432599999010563 ], [ 349756.839000001549721, 257142.737300001084805 ], [ 349760.956900000572205, 257132.638599999248981 ], [ 349761.005500003695488, 257126.939399998635054 ], [ 349756.277300000190735, 257114.024000000208616 ], [ 349749.099600002169609, 257104.677200000733137 ], [ 349747.515699997544289, 257101.286699999123812 ], [ 349735.086599998176098, 257140.448399998247623 ], [ 349718.026399999856949, 257155.296399999409914 ], [ 349711.262999996542931, 257191.9712999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802024500", "MAP": "D9-6287-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01710476, "LATITUDE": 18.3463087, "OBJECTID_1": 7306, "PARCEL_NO_": "104802024500", "Tax_Legal_": "FORTUNA 4-7-1 & 4-6-2 WESTEND QTR.", "Name": "WATLEY, JULIENNE I", "Address": "PO Box 10913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.97077875299999, "SHAPE_Area": 1154.3451209499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349709.957500003278255, 257345.214600000530481 ], [ 349697.117600001394749, 257337.932300001382828 ], [ 349694.713100001215935, 257336.223900001496077 ], [ 349688.257200002670288, 257336.804299999028444 ], [ 349672.116499997675419, 257338.36089999973774 ], [ 349674.976800002157688, 257381.236299999058247 ], [ 349688.734399996697903, 257375.438299998641014 ], [ 349697.639799997210503, 257371.289299998432398 ], [ 349709.957500003278255, 257345.214600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023600", "MAP": "D9-7406-T004", "PARCEL_NAM": "4-7-4", "ACRE": "2.50", "LONGITUDE": -65.01636346, "LATITUDE": 18.34551749, "OBJECTID_1": 7299, "PARCEL_NO_": "104802023600", "Tax_Legal_": "4-2-23-4,4-2-23REM,4-2-24REM. &4-7-4 FORTUNA No.8 WESTEND QTR.", "Name": "DE LUGO, RONALD", "Address": "1746 Deerhill Trl", "City": "Topanga", "State": "California", "Zip": 90290, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 515.10726650799995, "SHAPE_Area": 7799.1866714899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349785.700900003314018, 257172.901599999517202 ], [ 349757.750100001692772, 257192.440699998289347 ], [ 349766.829099997878075, 257218.743000000715256 ], [ 349761.730400003492832, 257242.583700001239777 ], [ 349761.171800002455711, 257244.207600001245737 ], [ 349759.714400000870228, 257244.377199999988079 ], [ 349757.352600000798702, 257243.816199999302626 ], [ 349754.629699997603893, 257242.890599999576807 ], [ 349752.5996999964118, 257246.493099998682737 ], [ 349756.035300001502037, 257249.414200000464916 ], [ 349757.299400001764297, 257250.690400000661612 ], [ 349756.915799997746944, 257253.220100000500679 ], [ 349709.957500003278255, 257345.214600000530481 ], [ 349697.639799997210503, 257371.289299998432398 ], [ 349700.067699998617172, 257370.253699999302626 ], [ 349710.594800002872944, 257365.062600001692772 ], [ 349752.25280000269413, 257345.19370000064373 ], [ 349747.092299997806549, 257338.940900001674891 ], [ 349785.318599998950958, 257282.708000000566244 ], [ 349788.564400002360344, 257277.933299999684095 ], [ 349812.995999999344349, 257263.339600000530481 ], [ 349820.052599996328354, 257232.537200000137091 ], [ 349807.849600002169609, 257212.815699998289347 ], [ 349791.100500002503395, 257191.147100001573563 ], [ 349790.314000003039837, 257188.818599998950958 ], [ 349788.712099999189377, 257187.539000000804663 ], [ 349785.492299996316433, 257186.879299998283386 ], [ 349784.730899997055531, 257181.59569999948144 ], [ 349786.392099998891354, 257175.909800000488758 ], [ 349785.700900003314018, 257172.901599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023100", "MAP": "D9-8103-T008", "PARCEL_NAM": "4-7-2-A", "ACRE": "0.52", "LONGITUDE": -65.01684433, "LATITUDE": 18.34542013, "OBJECTID_1": 7294, "PARCEL_NO_": "104802023100", "Tax_Legal_": "4-7-2 & 4-7-3 ESTATE FORTUNA No.8 WESTEND QUARTER", "Name": "DGS LAND DEVELOPMENT LLC", "Address": "3734 Fm 3006", "City": "Pleasanton", "State": "Texas", "Zip": 78064, "Country": "United States", "Land_Value": 189700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.17522410599997, "SHAPE_Area": 3049.1945362900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349691.88570000231266, 257292.98759999871254 ], [ 349727.246399998664856, 257311.344500001519918 ], [ 349733.358800001442432, 257299.369800001382828 ], [ 349740.641099996864796, 257263.044300001114607 ], [ 349727.068199999630451, 257252.989199999719858 ], [ 349727.821299999952316, 257226.220300000160933 ], [ 349711.262999996542931, 257191.9712999984622 ], [ 349693.403599999845028, 257205.968400001525879 ], [ 349710.78999999910593, 257247.484999999403954 ], [ 349705.808300003409386, 257264.331799998879433 ], [ 349691.88570000231266, 257292.98759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031100", "MAP": "D9-8575-T011", "PARCEL_NAM": "24-2", "ACRE": ".005", "LONGITUDE": -64.9769754, "LATITUDE": 18.36840859, "OBJECTID_1": 251, "PARCEL_NO_": "101003031100", "Tax_Legal_": "24-1 REM & 24-2 ESTATE CARET BAY NO. 8 LITTLE NORTHSIDE QUARTER", "Name": "DUVERGER, ROY R., JR. & MARYBETH HAYES", "Address": "8062 Caret Bay E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023447, "Country": "United States", "Land_Value": 107400, "Improved_V": 66400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.683971147000001, "SHAPE_Area": 23.233454408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353905.835799999535084, 259836.1689000017941 ], [ 353916.043799996376038, 259837.032900001853704 ], [ 353908.063000001013279, 259831.805399999022484 ], [ 353905.835799999535084, 259836.1689000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003027700", "MAP": "D9-6519-T98", "PARCEL_NAM": "2B-D-A", "ACRE": null, "LONGITUDE": -64.97744403, "LATITUDE": 18.36782297, "OBJECTID_1": 228, "PARCEL_NO_": "101003027700", "Tax_Legal_": "2B-D CARET BAY/WEST SEC 8 LT NORTHSIDE", "Name": "C. B. COMPANY LTD", "Address": "PO Box 438", "City": "TORTOLA", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 252400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.56340762100001, "SHAPE_Area": 1318.4870231299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353851.789700001478195, 259839.16270000115037 ], [ 353856.966099999845028, 259819.978700000792742 ], [ 353859.433700002729893, 259809.761500000953674 ], [ 353860.498000003397465, 259802.279599998146296 ], [ 353860.910499997437, 259797.788699999451637 ], [ 353862.385200001299381, 259786.065499998629093 ], [ 353863.083599999547005, 259777.207499999552965 ], [ 353863.600900001823902, 259775.339000001549721 ], [ 353864.386200003325939, 259771.350400000810623 ], [ 353865.15259999781847, 259769.733600001782179 ], [ 353866.307700000703335, 259766.621800001710653 ], [ 353867.837600000202656, 259763.762699998915195 ], [ 353875.998400002717972, 259748.347500000149012 ], [ 353877.405699998140335, 259745.112799998372793 ], [ 353878.312600001692772, 259741.624499998986721 ], [ 353878.465999998152256, 259738.130199998617172 ], [ 353878.378100000321865, 259733.385600000619888 ], [ 353877.653399996459484, 259729.759500000625849 ], [ 353876.797100000083447, 259726.881400000303984 ], [ 353875.315800003707409, 259723.623799998313189 ], [ 353874.200400002300739, 259721.742300000041723 ], [ 353871.840000003576279, 259718.477699998766184 ], [ 353869.221500001847744, 259716.08500000089407 ], [ 353866.476400002837181, 259713.815999999642372 ], [ 353864.798799999058247, 259711.413699999451637 ], [ 353857.94539999961853, 259708.370200000703335 ], [ 353853.662900000810623, 259719.910000000149012 ], [ 353865.905299998819828, 259730.352699998766184 ], [ 353868.086300000548363, 259732.492400001734495 ], [ 353869.018799997866154, 259733.685699999332428 ], [ 353869.509700000286102, 259735.125300001353025 ], [ 353869.625900000333786, 259736.312199998646975 ], [ 353869.679200001060963, 259737.498599998652935 ], [ 353869.163999997079372, 259739.117400001734495 ], [ 353866.656400002539158, 259746.462999999523163 ], [ 353866.017099998891354, 259747.8935999982059 ], [ 353864.423900000751019, 259750.814599998295307 ], [ 353860.405299998819828, 259758.647599998861551 ], [ 353857.272299997508526, 259765.676100000739098 ], [ 353856.109200000762939, 259769.786499999463558 ], [ 353855.710600003600121, 259772.529800001531839 ], [ 353855.041000001132488, 259777.767799999564886 ], [ 353852.588799998164177, 259801.842199999839067 ], [ 353852.197200000286102, 259803.71169999986887 ], [ 353851.433700002729893, 259804.953999999910593 ], [ 353849.919699996709824, 259805.815900001674891 ], [ 353839.335500001907349, 259810.101100001484156 ], [ 353843.300800003111362, 259816.8739 ], [ 353848.337200000882149, 259815.291000001132488 ], [ 353849.086800001561642, 259815.796399999409914 ], [ 353849.585199996829033, 259816.299699999392033 ], [ 353849.452600002288818, 259817.172499999403954 ], [ 353844.785499997437, 259835.486699998378754 ], [ 353851.789700001478195, 259839.16270000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97813132, "LATITUDE": 18.36948351, "OBJECTID_1": 154, "PARCEL_NO_": "101003020100", "Tax_Legal_": "CARET BAY 2E-50B-1&2E-50-B-A&2E-50-B REM NO.8 LT NORTHSIDE QTR", "Name": "BUSHFIELD FAMILY TRUST", "Address": "60-7 Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 405800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.20555342658, "SHAPE_Area": 0.00190485004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353786.910300001502037, 259953.002199999988079 ], [ 353786.851199999451637, 259952.96680000051856 ], [ 353786.872800000011921, 259953.044199999421835 ], [ 353786.910300001502037, 259953.002199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101003028300", "MAP": "D9-6747-T000", "PARCEL_NAM": null, "ACRE": ".74", "LONGITUDE": -64.97761607, "LATITUDE": 18.36868593, "OBJECTID_1": 234, "PARCEL_NO_": "101003028300", "Tax_Legal_": "2B-D-5 ESTATE CARET BAY #8 LITTLE NORTHSIDE QTR", "Name": "RILEY, DEANA ROYCE & DAVID", "Address": "7414 ST.PETER MOUNTAIN RD", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 118000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.62024448599999, "SHAPE_Area": 2821.6292298600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353884.625, 259877.354499999433756 ], [ 353844.402500003576279, 259860.815000001341105 ], [ 353851.789700001478195, 259839.16270000115037 ], [ 353844.785499997437, 259835.486699998378754 ], [ 353849.452600002288818, 259817.172499999403954 ], [ 353849.585199996829033, 259816.299699999392033 ], [ 353849.086800001561642, 259815.796399999409914 ], [ 353848.337200000882149, 259815.291000001132488 ], [ 353843.300800003111362, 259816.8739 ], [ 353811.869300000369549, 259850.324200000613928 ], [ 353811.140399999916553, 259858.506099998950958 ], [ 353811.465999998152256, 259862.799699999392033 ], [ 353813.093599997460842, 259869.249200001358986 ], [ 353819.011500000953674, 259879.070300001651049 ], [ 353824.494999997317791, 259889.120200000703335 ], [ 353874.320500001311302, 259897.049800001084805 ], [ 353883.910700000822544, 259878.72410000115633 ], [ 353884.625, 259877.354499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101003027700", "MAP": "D9-7630-T005", "PARCEL_NAM": "2B-D REM", "ACRE": ".845", "LONGITUDE": -64.97777439, "LATITUDE": 18.36813182, "OBJECTID_1": 228, "PARCEL_NO_": "101003027700", "Tax_Legal_": "2B-D CARET BAY/WEST SEC 8 LT NORTHSIDE", "Name": "C. B. COMPANY LTD", "Address": "PO Box 438", "City": "TORTOLA", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 252400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 362.79537458499999, "SHAPE_Area": 2977.9628271500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353778.766699999570847, 259881.493299998342991 ], [ 353799.426600001752377, 259848.019600000232458 ], [ 353839.335500001907349, 259810.101100001484156 ], [ 353849.919699996709824, 259805.815900001674891 ], [ 353851.433700002729893, 259804.953999999910593 ], [ 353852.197200000286102, 259803.71169999986887 ], [ 353852.588799998164177, 259801.842199999839067 ], [ 353855.041000001132488, 259777.767799999564886 ], [ 353855.710600003600121, 259772.529800001531839 ], [ 353856.109200000762939, 259769.786499999463558 ], [ 353857.272299997508526, 259765.676100000739098 ], [ 353860.405299998819828, 259758.647599998861551 ], [ 353864.423900000751019, 259750.814599998295307 ], [ 353866.017099998891354, 259747.8935999982059 ], [ 353866.656400002539158, 259746.462999999523163 ], [ 353869.163999997079372, 259739.117400001734495 ], [ 353861.907799996435642, 259743.429099999368191 ], [ 353859.507700003683567, 259745.157800000160933 ], [ 353841.173100002110004, 259753.565000001341105 ], [ 353769.539099998772144, 259879.954199999570847 ], [ 353778.766699999570847, 259881.493299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101003027700", "MAP": "D9-7630-T005", "PARCEL_NAM": "2B-D-D", "ACRE": ".04", "LONGITUDE": -64.97812378, "LATITUDE": 18.36875227, "OBJECTID_1": 228, "PARCEL_NO_": "101003027700", "Tax_Legal_": "2B-D CARET BAY/WEST SEC 8 LT NORTHSIDE", "Name": "C. B. COMPANY LTD", "Address": "PO Box 438", "City": "TORTOLA", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 252400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.398095059699997, "SHAPE_Area": 152.02214992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353797.31870000064373, 259863.730399999767542 ], [ 353791.745800003409386, 259860.464200001209974 ], [ 353778.766699999570847, 259881.493299998342991 ], [ 353785.692800000309944, 259882.648499999195337 ], [ 353797.31870000064373, 259863.730399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101003027700", "MAP": "D9-7630-T005", "PARCEL_NAM": "2B-D-B", "ACRE": ".19", "LONGITUDE": -64.97786098, "LATITUDE": 18.36845954, "OBJECTID_1": 228, "PARCEL_NO_": "101003027700", "Tax_Legal_": "2B-D CARET BAY/WEST SEC 8 LT NORTHSIDE", "Name": "C. B. COMPANY LTD", "Address": "PO Box 438", "City": "TORTOLA", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 252400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.38998382899999, "SHAPE_Area": 666.64165554600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353803.00959999859333, 259866.122000001370907 ], [ 353811.516400001943111, 259862.999600000679493 ], [ 353811.465999998152256, 259862.799699999392033 ], [ 353811.140399999916553, 259858.506099998950958 ], [ 353811.869300000369549, 259850.324200000613928 ], [ 353843.300800003111362, 259816.8739 ], [ 353839.335500001907349, 259810.101100001484156 ], [ 353799.426600001752377, 259848.019600000232458 ], [ 353791.745800003409386, 259860.464200001209974 ], [ 353797.31870000064373, 259863.730399999767542 ], [ 353800.192400000989437, 259859.054200001060963 ], [ 353802.26630000025034, 259855.846999999135733 ], [ 353802.781000003218651, 259855.511700000613928 ], [ 353803.293099999427795, 259855.515799999237061 ], [ 353804.141099996864796, 259856.201200000941753 ], [ 353804.645099997520447, 259857.223200000822544 ], [ 353804.116899996995926, 259859.254999998956919 ], [ 353803.130900003015995, 259865.370000001043081 ], [ 353803.00959999859333, 259866.122000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101003027700", "MAP": "D9-7630-T005", "PARCEL_NAM": "2B-6", "ACRE": ".06", "LONGITUDE": -64.97802217, "LATITUDE": 18.36877939, "OBJECTID_1": 228, "PARCEL_NO_": "101003027700", "Tax_Legal_": "2B-D CARET BAY/WEST SEC 8 LT NORTHSIDE", "Name": "C. B. COMPANY LTD", "Address": "PO Box 438", "City": "TORTOLA", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 252400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.624914594000003, "SHAPE_Area": 342.04039947199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353810.499399997293949, 259886.785900000482798 ], [ 353810.211499996483326, 259884.840900000184774 ], [ 353809.867899999022484, 259882.811900001019239 ], [ 353807.382299996912479, 259877.944600000977516 ], [ 353805.015600003302097, 259875.041400000452995 ], [ 353803.33839999884367, 259871.295299999415874 ], [ 353802.859999999403954, 259867.049800001084805 ], [ 353804.116899996995926, 259859.254999998956919 ], [ 353804.645099997520447, 259857.223200000822544 ], [ 353804.141099996864796, 259856.201200000941753 ], [ 353803.293099999427795, 259855.515799999237061 ], [ 353802.781000003218651, 259855.511700000613928 ], [ 353802.26630000025034, 259855.846999999135733 ], [ 353800.192400000989437, 259859.054200001060963 ], [ 353785.692800000309944, 259882.648499999195337 ], [ 353810.499399997293949, 259886.785900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101003028700", "MAP": "D9-7630-T005", "PARCEL_NAM": null, "ACRE": ".551", "LONGITUDE": -64.97761013, "LATITUDE": 18.36915024, "OBJECTID_1": 238, "PARCEL_NO_": "101003028700", "Tax_Legal_": "2E-50-B-3 CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "HODGE, CARLEEN JUSTINA", "Address": "17191 Quail Park Dr", "City": "Missouri City", "State": "Texas", "Zip": 77489, "Country": "United States", "Land_Value": 75000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.186335482, "SHAPE_Area": 2139.2092432300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353823.407999999821186, 259899.249299999326468 ], [ 353819.438000001013279, 259942.472899999469519 ], [ 353819.46679999679327, 259942.48589999973774 ], [ 353848.079599998891354, 259947.192899998277426 ], [ 353874.320500001311302, 259897.049800001084805 ], [ 353824.229800000786781, 259888.877300001680851 ], [ 353823.407999999821186, 259899.249299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101003028600", "MAP": "D9-8170-T008", "PARCEL_NAM": null, "ACRE": ".438", "LONGITUDE": -64.97800905, "LATITUDE": 18.36910544, "OBJECTID_1": 237, "PARCEL_NO_": "101003028600", "Tax_Legal_": "2E-50-B-2 CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "SCOTT, STUART & JANELLE N.", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91800, "Improved_V": 362200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.21160679400001, "SHAPE_Area": 1951.388779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353819.438000001013279, 259942.472899999469519 ], [ 353823.407999999821186, 259899.249299999326468 ], [ 353819.813500002026558, 259898.863099999725819 ], [ 353817.429499998688698, 259897.05629999935627 ], [ 353814.917999997735023, 259896.201900001615286 ], [ 353812.997500002384186, 259896.425000000745058 ], [ 353811.430200003087521, 259897.485300000756979 ], [ 353807.635600000619888, 259892.091400001198053 ], [ 353809.207699999213219, 259890.435100000351667 ], [ 353809.939499996602535, 259888.891399998217821 ], [ 353810.499399997293949, 259886.785900000482798 ], [ 353810.532899998128414, 259886.642599999904633 ], [ 353785.692800000309944, 259882.589800000190735 ], [ 353785.692800000309944, 259882.648499999195337 ], [ 353778.286300003528595, 259903.300900001078844 ], [ 353776.194700002670288, 259909.959199998527765 ], [ 353774.820799998939037, 259916.861699998378754 ], [ 353774.53830000013113, 259922.223200000822544 ], [ 353819.438000001013279, 259942.472899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003020100", "MAP": "D9-7630-T005", "PARCEL_NAM": "2E-50-B REM", "ACRE": "5.014", "LONGITUDE": -64.97852098, "LATITUDE": 18.36868307, "OBJECTID_1": 154, "PARCEL_NO_": "101003020100", "Tax_Legal_": "CARET BAY 2E-50B-1&2E-50-B-A&2E-50-B REM NO.8 LT NORTHSIDE QTR", "Name": "BUSHFIELD FAMILY TRUST", "Address": "60-7 Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 405800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 810.9203075, "SHAPE_Area": 19890.010287199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353776.393700003623962, 259960.380399998277426 ], [ 353770.243500001728535, 259949.603999998420477 ], [ 353766.614399999380112, 259938.489999998360872 ], [ 353765.030299998819828, 259926.557900000363588 ], [ 353765.231700003147125, 259916.308699999004602 ], [ 353766.362000003457069, 259909.881099998950958 ], [ 353768.22410000115633, 259901.909800000488758 ], [ 353778.940099999308586, 259881.488000001758337 ], [ 353769.539099998772144, 259879.954199999570847 ], [ 353841.173100002110004, 259753.565000001341105 ], [ 353826.858999997377396, 259760.128600001335144 ], [ 353807.40820000320673, 259773.831199999898672 ], [ 353815.378700003027916, 259752.014400001615286 ], [ 353830.646899998188019, 259710.222899999469519 ], [ 353820.950400002300739, 259706.151000000536442 ], [ 353813.538900002837181, 259714.972800001502037 ], [ 353798.051700003445148, 259734.477800000458956 ], [ 353773.617799997329712, 259762.9864999987185 ], [ 353767.917900003492832, 259769.483800001442432 ], [ 353752.423500001430511, 259789.833000000566244 ], [ 353748.347000002861023, 259795.076999999582767 ], [ 353743.446199998259544, 259802.425200000405312 ], [ 353738.532799996435642, 259811.250900000333786 ], [ 353736.896799996495247, 259813.981699999421835 ], [ 353705.563900001347065, 259800.426399998366833 ], [ 353704.687399998307228, 259808.651799999177456 ], [ 353691.443000003695488, 259848.862300001084805 ], [ 353684.648999996483326, 259889.125599998980761 ], [ 353671.957299999892712, 259959.104800000786781 ], [ 353724.1824000030756, 259981.27479999884963 ], [ 353749.704000003635883, 259984.28830000013113 ], [ 353771.607299998402596, 259959.509799998253584 ], [ 353772.596228007576428, 259959.346436472260393 ], [ 353773.598525497480296, 259959.354559928964591 ], [ 353774.584675697842613, 259959.533931139798369 ], [ 353775.525637361512054, 259959.879267781972885 ], [ 353776.393700003623962, 259960.380399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303010300", "MAP": "A9-674-T006", "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -65.02580835000001, "LATITUDE": 18.34705872, "OBJECTID_1": 1187, "PARCEL_NO_": "102303010300", "Tax_Legal_": "5 FORTUNA No.8 WEST END QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1692200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1740.6341200899999, "SHAPE_Area": 88887.242369500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348597.225699998438358, 257485.278799999505281 ], [ 348632.508199997246265, 257479.358800001442432 ], [ 348632.32379999756813, 257478.038400001823902 ], [ 348641.205799996852875, 257476.633400000631809 ], [ 348667.850100003182888, 257472.629599999636412 ], [ 348696.110500000417233, 257468.216899998486042 ], [ 348722.754799999296665, 257464.213100001215935 ], [ 348728.105899997055531, 257498.665100000798702 ], [ 348732.142899997532368, 257498.064899999648333 ], [ 348722.261399999260902, 257427.478799998760223 ], [ 348789.277000002563, 257417.261500000953674 ], [ 348798.346799999475479, 257488.474199999123812 ], [ 348796.726999998092651, 257489.305399999022484 ], [ 348756.361000001430511, 257494.885600000619888 ], [ 348758.71339999884367, 257502.715300001204014 ], [ 348766.679399996995926, 257514.17960000038147 ], [ 348769.062399998307228, 257518.420899998396635 ], [ 348771.43639999628067, 257523.717700000852346 ], [ 348775.369099996984005, 257535.360100001096725 ], [ 348776.909699998795986, 257543.816399998962879 ], [ 348778.54110000282526, 257636.288699999451637 ], [ 348776.894299998879433, 257640.285999998450279 ], [ 348775.236699998378754, 257645.549800001084805 ], [ 348770.292700000107288, 257657.963899999856949 ], [ 348762.962200000882149, 257666.558699999004602 ], [ 348761.344200000166893, 257667.178700000047684 ], [ 348733.715599998831749, 257692.072700001299381 ], [ 348732.081399999558926, 257694.592500001192093 ], [ 348735.209499999880791, 257706.017099998891354 ], [ 348740.002400003373623, 257711.333700001239777 ], [ 348744.816899999976158, 257714.117300000041723 ], [ 348763.322599999606609, 257718.912900000810623 ], [ 348773.001900002360344, 257718.569899998605251 ], [ 348781.084799997508526, 257716.313999999314547 ], [ 348808.639700002968311, 257700.074200000613928 ], [ 348811.886500000953674, 257697.567699998617172 ], [ 348815.147699996829033, 257693.372499998658895 ], [ 348820.030599996447563, 257688.135099999606609 ], [ 348824.173600003123283, 257675.081199999898672 ], [ 348829.920299999415874, 257663.095899999141693 ], [ 348857.608300000429153, 257631.236299999058247 ], [ 348870.654899999499321, 257614.244500000029802 ], [ 348897.644400000572205, 257569.713599998503923 ], [ 348899.267800003290176, 257568.460299998521805 ], [ 348916.403599999845028, 257544.747000001370907 ], [ 348921.353000000119209, 257531.699700001627207 ], [ 348923.035700000822544, 257523.480799999088049 ], [ 348925.798100002110004, 257483.184599999338388 ], [ 348927.513199999928474, 257471.166299998760223 ], [ 348930.85360000282526, 257457.683600001037121 ], [ 348939.114500001072884, 257434.530900001525879 ], [ 348941.632299996912479, 257422.941399998962879 ], [ 348940.881800003349781, 257416.391399998217821 ], [ 348929.974600002169609, 257371.550299998372793 ], [ 348929.195299997925758, 257368.377500001341105 ], [ 348926.108499996364117, 257352.098000001162291 ], [ 348923.80460000038147, 257338.569200001657009 ], [ 348920.636900000274181, 257331.788199998438358 ], [ 348915.843999996781349, 257326.471700001507998 ], [ 348909.425899997353554, 257322.619500000029802 ], [ 348885.288599997758865, 257316.300200000405312 ], [ 348869.984899997711182, 257314.275100000202656 ], [ 348809.534800000488758, 257311.036100000143051 ], [ 348798.271600000560284, 257307.988600000739098 ], [ 348786.225500002503395, 257302.190499998629093 ], [ 348776.625299997627735, 257293.245999999344349 ], [ 348769.454800002276897, 257283.054800000041723 ], [ 348763.983199998736382, 257262.745099999010563 ], [ 348603.437700003385544, 257255.986200001090765 ], [ 348567.511799998581409, 257294.097699999809265 ], [ 348597.225699998438358, 257485.278799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801013000", "MAP": "D9-8667-T012", "PARCEL_NAM": "4I-B-1", "ACRE": ".28", "LONGITUDE": -65.02661128, "LATITUDE": 18.34391652, "OBJECTID_1": 7211, "PARCEL_NO_": "104801013000", "Tax_Legal_": "4i-b-1 FORTUNA NO. 8 WEST END QTR", "Name": "WILLIAM, KERVIN", "Address": "3508 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.029889422, "SHAPE_Area": 1185.83548649 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348709.445200003683567, 257076.094500001519918 ], [ 348700.128700003027916, 257057.465199999511242 ], [ 348696.366599999368191, 257059.541900001466274 ], [ 348690.691799998283386, 257063.083999998867512 ], [ 348676.889200001955032, 257074.159000001847744 ], [ 348663.874899998307228, 257087.351399999111891 ], [ 348658.458200000226498, 257094.105900000780821 ], [ 348678.812299996614456, 257107.571899998933077 ], [ 348709.445200003683567, 257076.094500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010100", "MAP": null, "PARCEL_NAM": null, "ACRE": "14.48", "LONGITUDE": -65.02788197, "LATITUDE": 18.34271853, "OBJECTID_1": 7189, "PARCEL_NO_": "104801010100", "Tax_Legal_": "4I-B-REM FORTUNA NO. 8 WEST END QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 631200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1288.60649429, "SHAPE_Area": 47107.505943600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348642.584600001573563, 257030.815099999308586 ], [ 348560.68299999833107, 257050.741399999707937 ], [ 348564.390299998223782, 257028.0641999989748 ], [ 348575.334499999880791, 256973.902699999511242 ], [ 348578.714400000870228, 256955.776399999856949 ], [ 348587.119199998676777, 256915.737399999052286 ], [ 348598.46509999781847, 256909.075199998915195 ], [ 348632.497400000691414, 256889.722100000828505 ], [ 348669.771200001239777, 256868.495600000023842 ], [ 348750.798100002110004, 256822.718199998140335 ], [ 348760.043300002813339, 256778.675299998372793 ], [ 348753.619800001382828, 256775.456300001591444 ], [ 348745.536899998784065, 256777.712200000882149 ], [ 348742.311599999666214, 256777.6858000010252 ], [ 348735.071000002324581, 256775.726700000464916 ], [ 348732.646700002253056, 256776.34010000154376 ], [ 348731.016099996864796, 256778.437699999660254 ], [ 348728.591700002551079, 256779.051199998706579 ], [ 348722.954800002276897, 256778.160700000822544 ], [ 348715.723099999129772, 256775.146200001239777 ], [ 348711.666400000452995, 256778.068300001323223 ], [ 348708.45549999922514, 256776.353199999779463 ], [ 348703.6554000005126, 256771.881000000983477 ], [ 348701.241899996995926, 256771.228000000119209 ], [ 348695.572499997913837, 256774.136900000274181 ], [ 348684.271499998867512, 256775.521999999880791 ], [ 348662.441799998283386, 256782.309500001370907 ], [ 348653.536399997770786, 256786.458399999886751 ], [ 348643.799500003457069, 256793.555900000035763 ], [ 348627.495200000703335, 256814.320700000971556 ], [ 348616.932199999690056, 256823.733500000089407 ], [ 348610.388199999928474, 256834.656800001859665 ], [ 348604.700900003314018, 256839.676500000059605 ], [ 348601.461199998855591, 256841.338700000196695 ], [ 348590.154899999499321, 256843.357099998742342 ], [ 348578.823299996554852, 256848.330600000917912 ], [ 348570.717100001871586, 256853.33049999922514 ], [ 348558.571999996900558, 256859.141800001263618 ], [ 348532.70889999717474, 256866.107299998402596 ], [ 348508.433200001716614, 256876.04109999909997 ], [ 348502.778200000524521, 256877.261300001293421 ], [ 348492.989200003445148, 256890.480099998414516 ], [ 348480.001900002360344, 256900.506299998611212 ], [ 348474.269599996507168, 256910.802999999374151 ], [ 348448.204999998211861, 256941.409299999475479 ], [ 348415.724200002849102, 256967.952399998903275 ], [ 348410.832400001585484, 256974.245099999010563 ], [ 348405.895599998533726, 256985.814899999648333 ], [ 348374.235399998724461, 257010.675900001078844 ], [ 348373.245899997651577, 257011.850099999457598 ], [ 348467.581500001251698, 257094.768100000917912 ], [ 348634.307499997317791, 257083.246500000357628 ], [ 348633.353699997067451, 257073.169399999082088 ], [ 348634.260799996554852, 257061.355599999427795 ], [ 348637.638800002634525, 257043.44029999896884 ], [ 348642.584600001573563, 257030.815099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022700", "MAP": "A9-171-T72", "PARCEL_NAM": "15-4", "ACRE": "14.21", "LONGITUDE": -64.97561477000001, "LATITUDE": 18.34886024, "OBJECTID_1": 2600, "PARCEL_NO_": "102603022700", "Tax_Legal_": "CROWN & HAWK 15-4 S S QTR", "Name": "MILLIN, A", "Address": "725 Riverside Dr", "City": "New York", "State": "New York", "Zip": 10031, "Country": "United States", "Land_Value": 532700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2048.6739476500002, "SHAPE_Area": 47336.865756200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353984.720899999141693, 257796.761399999260902 ], [ 354038.429300002753735, 257783.997099999338388 ], [ 354046.732100002467632, 257799.151000000536442 ], [ 354109.135300002992153, 257807.616999998688698 ], [ 354132.575300000607967, 257760.746700000017881 ], [ 354122.906700000166893, 257759.82319999858737 ], [ 354113.248999997973442, 257757.633200000971556 ], [ 354108.432700000703335, 257755.060699999332428 ], [ 354101.226199999451637, 257749.091099999845028 ], [ 354094.799099996685982, 257746.294300001114607 ], [ 354089.973800003528595, 257744.777100000530481 ], [ 354082.729599997401237, 257743.240200001746416 ], [ 354069.851899996399879, 257740.390500001609325 ], [ 354053.732900001108646, 257739.414200000464916 ], [ 354046.474299997091293, 257739.565900001674891 ], [ 354030.344400003552437, 257739.856100000441074 ], [ 354010.965899996459484, 257742.863899998366833 ], [ 353998.036200001835823, 257746.135600000619888 ], [ 353983.472199998795986, 257751.927000001072884 ], [ 353974.572200000286102, 257755.442699998617172 ], [ 353962.430799998342991, 257760.831799998879433 ], [ 353955.938900001347065, 257765.633799999952316 ], [ 353938.124499998986721, 257774.353900000452995 ], [ 353935.678599998354912, 257777.500300001353025 ], [ 353934.829099997878075, 257782.559599999338388 ], [ 353927.570500001311302, 257782.711300000548363 ], [ 353927.597499996423721, 257779.545099999755621 ], [ 353925.997400000691414, 257778.054400000721216 ], [ 353921.159599997103214, 257778.014800000935793 ], [ 353921.245899997651577, 257767.883000001311302 ], [ 353931.747699998319149, 257765.646899998188019 ], [ 353939.836000002920628, 257762.757800001651049 ], [ 353951.169399999082088, 257757.57319999858737 ], [ 353959.277400001883507, 257752.362300001084805 ], [ 353981.134199999272823, 257742.408599998801947 ], [ 353997.303599998354912, 257737.474700000137091 ], [ 354007.8108000010252, 257734.605399999767542 ], [ 354015.078400000929832, 257733.398299999535084 ], [ 354036.073100000619888, 257729.981600001454353 ], [ 354056.234499998390675, 257729.724399998784065 ], [ 354102.140399999916553, 257736.432900000363588 ], [ 354121.517099998891354, 257733.636199999600649 ], [ 354143.287500001490116, 257733.814399998635054 ], [ 354175.440399996936321, 257651.117800001055002 ], [ 354162.570000000298023, 257647.423900000751019 ], [ 354112.623499996960163, 257641.737700000405312 ], [ 354096.499099999666214, 257641.39469999819994 ], [ 354078.738600000739098, 257643.782400000840425 ], [ 354051.262900002300739, 257650.734700001776218 ], [ 354048.014200001955032, 257653.452399998903275 ], [ 354048.788199998438358, 257657.258400000631809 ], [ 354039.090899996459484, 257659.712099999189377 ], [ 354037.51240000128746, 257655.688400000333786 ], [ 354032.672700002789497, 257655.859900001436472 ], [ 354030.33110000193119, 257646.763700000941753 ], [ 354073.970899999141693, 257635.510800000280142 ], [ 354092.539399996399879, 257632.918499998748302 ], [ 354115.924300000071526, 257632.898800000548363 ], [ 354166.67339999973774, 257639.013700000941753 ], [ 354172.308600001037121, 257640.115299999713898 ], [ 354178.735799998044968, 257642.912099998444319 ], [ 354218.280299998819828, 257544.443999998271465 ], [ 354187.662000000476837, 257541.660300001502037 ], [ 354154.599600002169609, 257541.811799999326468 ], [ 354145.715800002217293, 257543.42790000140667 ], [ 354143.273500002920628, 257546.152100000530481 ], [ 354144.050999999046326, 257549.535999998450279 ], [ 354137.591499999165535, 257550.538600001484156 ], [ 354134.409400001168251, 257545.446299999952316 ], [ 354131.994099996984005, 257545.004299998283386 ], [ 354129.568000003695488, 257545.82880000025034 ], [ 354127.229900002479553, 257536.310499999672174 ], [ 354132.085799999535084, 257534.23930000141263 ], [ 354160.328299999237061, 257531.937300000339746 ], [ 354191.769100002944469, 257532.827899999916553 ], [ 354220.773000001907349, 257535.809500001370907 ], [ 354213.130599997937679, 257486.351100001484156 ], [ 354048.035099998116493, 257556.349500000476837 ], [ 354067.750600002706051, 257608.439899999648333 ], [ 354023.237899996340275, 257627.496199999004602 ], [ 353915.839100003242493, 257739.974399998784065 ], [ 353885.678199999034405, 257778.146600000560284 ], [ 353884.821199998259544, 257816.727099999785423 ], [ 353984.720899999141693, 257796.761399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603020200", "MAP": "D9-8553-T010", "PARCEL_NAM": null, "ACRE": "4.4", "LONGITUDE": -64.97675361, "LATITUDE": 18.35066054, "OBJECTID_1": 2574, "PARCEL_NO_": "102603020200", "Tax_Legal_": "12 CROWN & HAWK NO.3L SOUTHSIDE QTR", "Name": "MORON-MOOLENAAR, AIMEE LINDA, C & A DELAGARDE,C PETERSEN,C KUIPERS", "Address": "PO Box 11544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 214200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 501.16715912400002, "SHAPE_Area": 12600.7813355 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353884.370200000703335, 257837.030999999493361 ], [ 353887.235799998044968, 257879.27309999987483 ], [ 353910.47860000282526, 257895.928700000047684 ], [ 353917.690499998629093, 257901.265000000596046 ], [ 353933.705300003290176, 257914.483899999409914 ], [ 353948.112800002098083, 257927.05629999935627 ], [ 353969.715999998152256, 257946.864900000393391 ], [ 353992.075199998915195, 257972.590199999511242 ], [ 353999.281599998474121, 257978.559799998998642 ], [ 354003.316799998283386, 257978.1706000007689 ], [ 353986.951700001955032, 257816.761199999600649 ], [ 353984.742499999701977, 257796.757100000977516 ], [ 353884.821199998259544, 257816.727099999785423 ], [ 353884.370200000703335, 257837.030999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102603020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97602948, "LATITUDE": 18.35074907, "OBJECTID_1": 2575, "PARCEL_NO_": "102603020300", "Tax_Legal_": "CROWN & HAWK 11 S S QTR", "Name": "NICHOLAS, ROMALIA", "Address": "P.O.BOX 2472", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 229800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 490.244432131, "SHAPE_Area": 11540.5054927 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354003.316799998283386, 257978.1706000007689 ], [ 354027.574500001966953, 257970.347600001841784 ], [ 354039.692500002682209, 257967.702599998563528 ], [ 354055.026900000870228, 257966.139299999922514 ], [ 354067.922499999403954, 257966.878100000321865 ], [ 354059.836300000548363, 257895.386900000274181 ], [ 354052.045500002801418, 257829.385999999940395 ], [ 354048.220100000500679, 257813.755899999290705 ], [ 354046.732100002467632, 257799.151000000536442 ], [ 354038.429300002753735, 257783.997099999338388 ], [ 353984.720899999141693, 257796.761399999260902 ], [ 353986.951700001955032, 257816.761199999600649 ], [ 354003.316799998283386, 257978.1706000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028000", "MAP": "D9-8572-T010", "PARCEL_NAM": null, "ACRE": ".224", "LONGITUDE": -64.9748935, "LATITUDE": 18.35069106, "OBJECTID_1": 2762, "PARCEL_NO_": "102604028000", "Tax_Legal_": "15-5-REM AND 15-5-A (INCLUDING 15-5-A-1(GREENBELT) AND DRAINAGE EASEMENT \"A\" CROWN & HAWK NO.3 SOUT", "Name": "SOOKRAM, SIEWDATH", "Address": "6076-66 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 410000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.43431579399999, "SHAPE_Area": 1135.97204672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354196.634099997580051, 257893.06700000166893 ], [ 354191.357699997723103, 257893.127700001001358 ], [ 354183.221799999475479, 257892.327199999243021 ], [ 354172.642099998891354, 257888.5641999989748 ], [ 354161.087200000882149, 257883.321899998933077 ], [ 354153.722699999809265, 257878.603500001132488 ], [ 354146.368000000715256, 257872.659000001847744 ], [ 354136.079899996519089, 257863.257599998265505 ], [ 354105.689599998295307, 257837.509799998253584 ], [ 354100.690800003707409, 257845.563200000673532 ], [ 354106.571099996566772, 257850.760200001299381 ], [ 354108.527300000190735, 257852.982999999076128 ], [ 354108.012299999594688, 257855.676699999719858 ], [ 354107.004000000655651, 257858.366399999707937 ], [ 354112.639499999582767, 257863.316199999302626 ], [ 354114.380199998617172, 257861.613299999386072 ], [ 354117.346699997782707, 257860.901200000196695 ], [ 354119.563299998641014, 257861.409400001168251 ], [ 354122.265500001609325, 257862.902399998158216 ], [ 354141.862499997019768, 257880.716299999505281 ], [ 354152.156400002539158, 257889.381999999284744 ], [ 354162.967200003564358, 257895.108800001442432 ], [ 354167.388700000941753, 257897.596500001847744 ], [ 354169.587700001895428, 257900.311700001358986 ], [ 354170.795900002121925, 257903.509500000625849 ], [ 354171.269799999892712, 257905.965799998492002 ], [ 354170.299500003457069, 257911.104600001126528 ], [ 354174.224799998104572, 257908.988800000399351 ], [ 354196.1300999969244, 257893.335999999195337 ], [ 354196.634099997580051, 257893.06700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028800", "MAP": "D9-8572-T010", "PARCEL_NAM": "15-5-G", "ACRE": ".502", "LONGITUDE": -64.97495072, "LATITUDE": 18.35040691, "OBJECTID_1": 2770, "PARCEL_NO_": "102604028800", "Tax_Legal_": "15-5-G CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "SOOKRAM, SIEWDATH", "Address": "6076-66 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.971663562, "SHAPE_Area": 2312.49939623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354109.135300002992153, 257807.616999998688698 ], [ 354111.038400001823902, 257842.041499998420477 ], [ 354136.079899996519089, 257863.257599998265505 ], [ 354146.368000000715256, 257872.659000001847744 ], [ 354153.722699999809265, 257878.603500001132488 ], [ 354160.16160000115633, 257882.728799998760223 ], [ 354171.292099997401237, 257841.220600001513958 ], [ 354109.135300002992153, 257807.616999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604029400", "MAP": "D9-8572-T011", "PARCEL_NAM": "15-5-F", "ACRE": ".511", "LONGITUDE": -64.97551755000001, "LATITUDE": 18.35018348, "OBJECTID_1": 2775, "PARCEL_NO_": "102604029400", "Tax_Legal_": "15-5-F ESTATE CROWN AND HAWK NO. 3 SOUTHSIDE QUARTER", "Name": "HOWARD, RITA", "Address": "7062 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.15355772000001, "SHAPE_Area": 1893.6138344000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354109.135300002992153, 257807.616999998688698 ], [ 354046.732100002467632, 257799.151000000536442 ], [ 354048.220100000500679, 257813.755899999290705 ], [ 354052.045500002801418, 257829.385999999940395 ], [ 354090.651399999856949, 257835.918600000441074 ], [ 354103.018700003623962, 257841.812800001353025 ], [ 354105.689599998295307, 257837.509799998253584 ], [ 354111.038400001823902, 257842.041499998420477 ], [ 354109.135300002992153, 257807.616999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603023700", "MAP": "D9-6693-T99", "PARCEL_NAM": "15-5-E", "ACRE": ".540", "LONGITUDE": -64.97552522, "LATITUDE": 18.35057258, "OBJECTID_1": 2607, "PARCEL_NO_": "102603023700", "Tax_Legal_": "15-5-E ESTATE CROWN & HAWK #3 SOUTHSIDE QTR.", "Name": "HECTOR, ISAAC", "Address": "1902 Sugar Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.57325044699999, "SHAPE_Area": 2771.7572019 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354099.704700000584126, 257895.365600001066923 ], [ 354107.004000000655651, 257858.366399999707937 ], [ 354108.012299999594688, 257855.676699999719858 ], [ 354108.527300000190735, 257852.982999999076128 ], [ 354106.571099996566772, 257850.760200001299381 ], [ 354100.690800003707409, 257845.563200000673532 ], [ 354103.018700003623962, 257841.812800001353025 ], [ 354090.651399999856949, 257835.918600000441074 ], [ 354052.045500002801418, 257829.385999999940395 ], [ 354059.836300000548363, 257895.386900000274181 ], [ 354073.552599996328354, 257894.44370000064373 ], [ 354076.002099998295307, 257890.875199999660254 ], [ 354082.48139999806881, 257887.550700001418591 ], [ 354089.72919999808073, 257888.665500000119209 ], [ 354099.704700000584126, 257895.365600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028600", "MAP": "D9-7841-T006", "PARCEL_NAM": "15-5-D", "ACRE": null, "LONGITUDE": -64.97502194, "LATITUDE": 18.35084869, "OBJECTID_1": 2768, "PARCEL_NO_": "102604028600", "Tax_Legal_": "CROWN & HAWK 15-5-D Southside QTR", "Name": "RUTH MARTELLY FAMILY TRUST", "Address": "PO BOX 302992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75600, "Improved_V": 344000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.71783979400001, "SHAPE_Area": 2411.51350198 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354107.004000000655651, 257858.366399999707937 ], [ 354099.704700000584126, 257895.365600001066923 ], [ 354129.818300001323223, 257915.591400001198053 ], [ 354137.049900002777576, 257918.605900000780821 ], [ 354144.303099997341633, 257919.087400000542402 ], [ 354158.0337999984622, 257916.455600000917912 ], [ 354166.12389999628067, 257913.355399999767542 ], [ 354170.299500003457069, 257911.104600001126528 ], [ 354171.269799999892712, 257905.965799998492002 ], [ 354170.795900002121925, 257903.509500000625849 ], [ 354169.587700001895428, 257900.311700001358986 ], [ 354167.388700000941753, 257897.596500001847744 ], [ 354162.967200003564358, 257895.108800001442432 ], [ 354152.156400002539158, 257889.381999999284744 ], [ 354141.862499997019768, 257880.716299999505281 ], [ 354122.265500001609325, 257862.902399998158216 ], [ 354119.563299998641014, 257861.409400001168251 ], [ 354117.346699997782707, 257860.901200000196695 ], [ 354114.380199998617172, 257861.613299999386072 ], [ 354112.639499999582767, 257863.316199999302626 ], [ 354107.004000000655651, 257858.366399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601031900", "MAP": "D9-7581-T005", "PARCEL_NAM": null, "ACRE": ".07", "LONGITUDE": -64.97690301, "LATITUDE": 18.35783066, "OBJECTID_1": 2292, "PARCEL_NO_": "102601031900", "Tax_Legal_": "38CF & 38C-1 ROW ESTATE PEARL NO. 2 SOUTHSIDE QUARTER", "Name": "LARSEN, THEODORE & LARSEN", "Address": "PO Box 302250", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.463074434600003, "SHAPE_Area": 140.43130992100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353922.492700003087521, 258670.983500000089407 ], [ 353938.864500001072884, 258668.03660000115633 ], [ 353918.538599997758865, 258653.609400000423193 ], [ 353921.679300002753735, 258663.556499999016523 ], [ 353922.492700003087521, 258670.983500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033000", "MAP": "D9-6235-T97", "PARCEL_NAM": null, "ACRE": ".50", "LONGITUDE": -64.97659397, "LATITUDE": 18.35863701, "OBJECTID_1": 2301, "PARCEL_NO_": "102601033000", "Tax_Legal_": "PEARL 38B-7 SOUTHSIDE QTR.", "Name": "LARSON, TEDDY & PEARLA", "Address": "PO BOX 2250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.84331468900001, "SHAPE_Area": 2240.90700995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354003.195600003004074, 258761.735599998384714 ], [ 353921.200099997222424, 258721.17680000141263 ], [ 353916.937399998307228, 258746.899700000882149 ], [ 353993.213500000536442, 258785.520799998193979 ], [ 354003.195600003004074, 258761.735599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601034500", "MAP": "D9-6235-T97", "PARCEL_NAM": null, "ACRE": ".50", "LONGITUDE": -64.97666106, "LATITUDE": 18.35888815, "OBJECTID_1": 2316, "PARCEL_NO_": "102601034500", "Tax_Legal_": "PEARL 38B-7A #2 SOUTHSIDE QTR.", "Name": "GEORGE, JONES", "Address": "PO Box 7441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.28957728200001, "SHAPE_Area": 2521.98295865 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353912.260899998247623, 258776.780600000172853 ], [ 353980.051700003445148, 258816.021600000560284 ], [ 353993.213500000536442, 258785.520799998193979 ], [ 353916.937399998307228, 258746.899700000882149 ], [ 353912.260899998247623, 258776.780600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102601034800", "MAP": "D9-8564-T010", "PARCEL_NAM": null, "ACRE": ".494", "LONGITUDE": -64.97658453, "LATITUDE": 18.35832635, "OBJECTID_1": 2319, "PARCEL_NO_": "102601034800", "Tax_Legal_": "PEARL ESTATE 38B-7C No.2 SOUTHSIDE QTR.", "Name": "PURVIS, JANE & BARKER, LAVONE (TRUSTEES)", "Address": "PO Box 1602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 85900, "Improved_V": 548200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.38371454899999, "SHAPE_Area": 3274.0536951300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353921.200099997222424, 258721.17680000141263 ], [ 354003.195600003004074, 258761.735599998384714 ], [ 354008.640699997544289, 258748.761300001293421 ], [ 353989.175300002098083, 258726.420400001108646 ], [ 353986.531999997794628, 258723.364999998360872 ], [ 353954.753300003707409, 258679.314300000667572 ], [ 353945.815399996936321, 258689.703899998217821 ], [ 353923.596799999475479, 258684.065400000661612 ], [ 353922.037900000810623, 258716.121700000017881 ], [ 353921.200099997222424, 258721.17680000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102601036100", "MAP": "D9-8564-T010", "PARCEL_NAM": "38C-1A", "ACRE": ".482", "LONGITUDE": -64.97624581, "LATITUDE": 18.35811486, "OBJECTID_1": 2322, "PARCEL_NO_": "102601036100", "Tax_Legal_": "38C-1A ESTATE PEARL NO. 2 SOUTHSIDE QTR.", "Name": "CASTEL, JULNER AND VIERGENITH HYPPOLITE", "Address": "PO Box 502743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 77100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.18495929, "SHAPE_Area": 3735.8201593499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353954.753300003707409, 258679.314300000667572 ], [ 353986.531999997794628, 258723.364999998360872 ], [ 354008.595600001513958, 258748.868700001388788 ], [ 354018.728799998760223, 258724.723600000143051 ], [ 354035.200699999928474, 258685.547400001436472 ], [ 353975.644400000572205, 258655.437199998646975 ], [ 353954.753300003707409, 258679.314300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031100", "MAP": "D9-8575-T011", "PARCEL_NAM": "24-1 REM", "ACRE": ".522", "LONGITUDE": -64.97673939000001, "LATITUDE": 18.36818879, "OBJECTID_1": 251, "PARCEL_NO_": "101003031100", "Tax_Legal_": "24-1 REM & 24-2 ESTATE CARET BAY NO. 8 LITTLE NORTHSIDE QUARTER", "Name": "DUVERGER, ROY R., JR. & MARYBETH HAYES", "Address": "8062 Caret Bay E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023447, "Country": "United States", "Land_Value": 107400, "Improved_V": 66400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.42757196299999, "SHAPE_Area": 1717.7393099200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353916.043799996376038, 259837.032900001853704 ], [ 353927.444700002670288, 259835.061700001358986 ], [ 353928.648100003600121, 259833.282900001853704 ], [ 353947.276000000536442, 259823.725099999457598 ], [ 353952.130000002682209, 259821.864999998360872 ], [ 353968.304799996316433, 259816.297800000756979 ], [ 353931.554300002753735, 259776.100400000810623 ], [ 353909.329000003635883, 259829.325100000947714 ], [ 353908.063000001013279, 259831.805399999022484 ], [ 353916.043799996376038, 259837.032900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003043100", "MAP": "D9-8575-T011", "PARCEL_NAM": "24 REM", "ACRE": ".646", "LONGITUDE": -64.97683084000001, "LATITUDE": 18.36866667, "OBJECTID_1": 337, "PARCEL_NO_": "101003043100", "Tax_Legal_": "24-REM & 24-1-A CARET BAY NO. 8 LITTLE NORTHSIDE QUARTER", "Name": "MATTHEWS, STEVE & PLATENBERG, RENATA", "Address": "PO BOX 7077", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 124800, "Improved_V": 129800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.95368404300001, "SHAPE_Area": 2285.4544298699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353916.043799996376038, 259837.032900001853704 ], [ 353905.835799999535084, 259836.1689000017941 ], [ 353886.367399998009205, 259874.311200000345707 ], [ 353883.910700000822544, 259878.72410000115633 ], [ 353920.135399997234344, 259885.986699998378754 ], [ 353939.57320000231266, 259876.013300001621246 ], [ 353982.439099997282028, 259860.954300001263618 ], [ 353995.399400003254414, 259854.094300001859665 ], [ 353995.420999996364117, 259851.561299998313189 ], [ 353993.007399998605251, 259850.908300001174212 ], [ 353974.419100001454353, 259855.822399999946356 ], [ 353964.730700001120567, 259857.22069999948144 ], [ 353952.6199000030756, 259859.021499998867512 ], [ 353938.104500003159046, 259859.113800000399351 ], [ 353931.670100003480911, 259857.161299999803305 ], [ 353926.868199996650219, 259852.900100000202656 ], [ 353925.278999999165535, 259850.142900001257658 ], [ 353924.530199997127056, 259843.381700001657009 ], [ 353924.645599998533726, 259842.667300000786781 ], [ 353916.043799996376038, 259837.032900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003043100", "MAP": "D9-8575-T011", "PARCEL_NAM": "24-1-A", "ACRE": ".005", "LONGITUDE": -64.97685754, "LATITUDE": 18.36843676, "OBJECTID_1": 337, "PARCEL_NO_": "101003043100", "Tax_Legal_": "24-REM & 24-1-A CARET BAY NO. 8 LITTLE NORTHSIDE QUARTER", "Name": "MATTHEWS, STEVE & PLATENBERG, RENATA", "Address": "PO BOX 7077", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 124800, "Improved_V": 129800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.149921893199998, "SHAPE_Area": 37.0188202402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353927.444700002670288, 259835.061700001358986 ], [ 353916.043799996376038, 259837.032900001853704 ], [ 353924.645599998533726, 259842.667300000786781 ], [ 353925.381499998271465, 259838.111400000751019 ], [ 353927.444700002670288, 259835.061700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97491425, "LATITUDE": 18.35514591, "OBJECTID_1": 2591, "PARCEL_NO_": "102603021800", "Tax_Legal_": "2Db ESTATE CROWN&HAWK No.3 SOUTHSIDE QTR.", "Name": "MCCAMMON, AMBER & ADAM PARR", "Address": "PO Box 307252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51300, "Improved_V": 118100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.922174087, "SHAPE_Area": 1237.71346647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354118.10080000013113, 258384.059399999678135 ], [ 354158.64019999653101, 258384.658500000834465 ], [ 354158.700300000607967, 258383.006999999284744 ], [ 354159.7820999994874, 258353.297899998724461 ], [ 354132.369199998676777, 258352.862399999052286 ], [ 354121.593400001525879, 258352.454700000584126 ], [ 354118.10080000013113, 258384.059399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403019900", "MAP": null, "PARCEL_NAM": "4FT ROW", "ACRE": null, "LONGITUDE": -65.01328313, "LATITUDE": 18.34915069, "OBJECTID_1": 1638, "PARCEL_NO_": "102403019900", "Tax_Legal_": "4FT ROW ESTATE FORTUNA NO. 8 WEST END QUARTER", "Name": "HAMILTON, CHARLES & DAISY", "Address": "P.O. BOX 2463", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.06677605800002, "SHAPE_Area": 1552.5954783300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350033.198600001633167, 257683.906100001186132 ], [ 350036.903499998152256, 257680.785000000149012 ], [ 350049.853100001811981, 257675.191399998962879 ], [ 350069.231600001454353, 257672.183600001037121 ], [ 350074.875699996948242, 257672.229800000786781 ], [ 350082.933499999344349, 257672.929099999368191 ], [ 350087.767800003290176, 257673.390799999237061 ], [ 350092.596600003540516, 257674.485800001770258 ], [ 350094.203900001943111, 257675.13230000063777 ], [ 350096.606600001454353, 257677.05180000141263 ], [ 350098.181500002741814, 257681.497600000351667 ], [ 350097.358999997377396, 257683.390700001269579 ], [ 350097.3175999969244, 257688.24549999833107 ], [ 350098.822400003671646, 257700.923500001430511 ], [ 350101.968500003218651, 257710.237300001084805 ], [ 350101.939699999988079, 257713.614599999040365 ], [ 350098.691100001335144, 257716.33219999819994 ], [ 350119.633599996566772, 257719.036699999123812 ], [ 350114.025399997830391, 257714.769000001251698 ], [ 350110.072999998927116, 257705.448499999940395 ], [ 350108.503499999642372, 257700.36939999833703 ], [ 350108.539499998092651, 257696.147799998521805 ], [ 350107.787100002169609, 257689.808899998664856 ], [ 350107.095899999141693, 257676.293200001120567 ], [ 350107.948899999260902, 257670.811799999326468 ], [ 350108.789399996399879, 257666.807900000363588 ], [ 350110.454199999570847, 257660.699799999594688 ], [ 350112.10639999806881, 257656.069299999624491 ], [ 350112.927100002765656, 257654.387200001627207 ], [ 350114.563100002706051, 257651.656399998813868 ], [ 350119.436899997293949, 257647.474399998784065 ], [ 350124.291000001132488, 257645.61430000141263 ], [ 350121.915200002491474, 257640.528599999845028 ], [ 350118.681000001728535, 257641.557599999010563 ], [ 350117.071900002658367, 257641.122299998998642 ], [ 350117.12049999833107, 257635.423099998384714 ], [ 350107.435699999332428, 257636.399300001561642 ], [ 350104.081000000238419, 257651.570599999278784 ], [ 350100.774800002574921, 257661.04280000180006 ], [ 350099.94879999756813, 257663.357999999076128 ], [ 350097.52080000191927, 257664.3935999982059 ], [ 350083.629600003361702, 257662.641800001263618 ], [ 350072.541299998760223, 257662.289299998432398 ], [ 350062.851199999451637, 257663.898800000548363 ], [ 350042.664599999785423, 257667.111099999397993 ], [ 350036.179899998009205, 257671.068799998611212 ], [ 350032.924800001084805, 257674.039799999445677 ], [ 350033.198600001633167, 257683.906100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021600", "MAP": "A9-644-T005", "PARCEL_NAM": "26-A", "ACRE": ".502", "LONGITUDE": -64.98890312, "LATITUDE": 18.35690332, "OBJECTID_1": 1995, "PARCEL_NO_": "102502021600", "Tax_Legal_": "ESPERANZE 26 REM. WESTEND QTR.", "Name": "HEIRS OF LIONEL ROBERTS", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 178500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.95475271800001, "SHAPE_Area": 2259.3231869699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352644.965599998831749, 258510.682000000029802 ], [ 352632.755400002002716, 258514.952100001275539 ], [ 352650.033900000154972, 258569.133499998599291 ], [ 352662.641800001263618, 258603.644900001585484 ], [ 352673.298299998044968, 258583.256000000983477 ], [ 352674.932499997317791, 258580.736299999058247 ], [ 352674.165700003504753, 258576.085999999195337 ], [ 352675.825099997222424, 258570.611099999397993 ], [ 352678.299800001084805, 258564.087499998509884 ], [ 352681.587999999523163, 258556.726100001484156 ], [ 352683.229400001466274, 258553.361999999731779 ], [ 352686.503200002014637, 258547.689300000667572 ], [ 352644.965599998831749, 258510.682000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021600", "MAP": "A9-644-T005", "PARCEL_NAM": "26-B", "ACRE": ".592", "LONGITUDE": -64.98959501, "LATITUDE": 18.35636828, "OBJECTID_1": 1995, "PARCEL_NO_": "102502021600", "Tax_Legal_": "ESPERANZE 26 REM. WESTEND QTR.", "Name": "HEIRS OF LIONEL ROBERTS", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 178500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.243377708, "SHAPE_Area": 2329.4420406300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352554.208800002932549, 258464.890399999916553 ], [ 352544.893399998545647, 258505.25730000063777 ], [ 352567.553700000047684, 258501.541700001806021 ], [ 352604.606299996376038, 258506.278000000864267 ], [ 352619.094800002872944, 258509.35190000012517 ], [ 352632.755400002002716, 258514.952100001275539 ], [ 352644.965599998831749, 258510.682000000029802 ], [ 352626.481100000441074, 258494.213599998503923 ], [ 352571.860399998724461, 258469.279699999839067 ], [ 352554.208800002932549, 258464.890399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021600", "MAP": "A9-644-T005", "PARCEL_NAM": "26-C", "ACRE": ".501", "LONGITUDE": -64.99019868000001, "LATITUDE": 18.35629438, "OBJECTID_1": 1995, "PARCEL_NO_": "102502021600", "Tax_Legal_": "ESPERANZE 26 REM. WESTEND QTR.", "Name": "HEIRS OF LIONEL ROBERTS", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 178500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.33896595799999, "SHAPE_Area": 2497.6886883900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352504.882700003683567, 258452.625 ], [ 352493.80009999871254, 258513.411499999463558 ], [ 352497.316399998962879, 258511.310499999672174 ], [ 352498.934500001370907, 258510.690400000661612 ], [ 352505.402900002896786, 258508.632399998605251 ], [ 352534.446400001645088, 258506.970300000160933 ], [ 352544.893399998545647, 258505.25730000063777 ], [ 352554.208800002932549, 258464.890399999916553 ], [ 352504.882700003683567, 258452.625 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504027600", "MAP": "D9-6526-T98", "PARCEL_NAM": "18C-1", "ACRE": "1.04", "LONGITUDE": -64.98900209, "LATITUDE": 18.35625898, "OBJECTID_1": 2162, "PARCEL_NO_": "102504027600", "Tax_Legal_": "18C-1 BONNE ESPERANCE NO.2 WEST END QTR", "Name": "ROBERTS-RICHARDS, LOLA V.", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 385.530717348, "SHAPE_Area": 7725.1122527099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352609.852099999785423, 258424.200199998915195 ], [ 352594.631099998950958, 258445.335400000214577 ], [ 352583.0016999989748, 258462.758799999952316 ], [ 352577.496699996292591, 258471.852600000798702 ], [ 352626.481100000441074, 258494.213599998503923 ], [ 352686.503200002014637, 258547.689300000667572 ], [ 352694.031499996781349, 258533.538800001144409 ], [ 352698.230800002813339, 258525.645599998533726 ], [ 352716.279500000178814, 258491.720499999821186 ], [ 352621.083599999547005, 258421.227699998766184 ], [ 352618.219400003552437, 258422.796300001442432 ], [ 352614.177100002765656, 258424.029800001531839 ], [ 352609.852099999785423, 258424.200199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504027400", "MAP": "D9-6559-T99", "PARCEL_NAM": "18B-C", "ACRE": null, "LONGITUDE": -64.99003184, "LATITUDE": 18.35578515, "OBJECTID_1": 2160, "PARCEL_NO_": "102504027400", "Tax_Legal_": "18B-C BONNE ESPERANCE NO. 2 WEST END QTR", "Name": "ROBERTS, LEON V.", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 354.75090107300002, "SHAPE_Area": 6438.5144919200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352577.496699996292591, 258471.852600000798702 ], [ 352583.0016999989748, 258462.758799999952316 ], [ 352594.631099998950958, 258445.335400000214577 ], [ 352609.852099999785423, 258424.200199998915195 ], [ 352605.303999997675419, 258424.379399999976158 ], [ 352603.695000000298023, 258423.943999998271465 ], [ 352594.840000003576279, 258422.182799998670816 ], [ 352563.512500002980232, 258407.994199998676777 ], [ 352529.004699997603893, 258388.502300001680851 ], [ 352496.935599997639656, 258366.708299998193979 ], [ 352495.529500000178814, 258442.583299998193979 ], [ 352495.52080000191927, 258442.670400001108646 ], [ 352494.774400003254414, 258450.111400000751019 ], [ 352571.860399998724461, 258469.279699999839067 ], [ 352577.496699996292591, 258471.852600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504029800", "MAP": "D9-7881-T005", "PARCEL_NAM": "18B-F", "ACRE": ".59", "LONGITUDE": -64.99064922, "LATITUDE": 18.35553847, "OBJECTID_1": 2165, "PARCEL_NO_": "102504029800", "Tax_Legal_": "18B-F BONNE ESPERANCE NO.2 WEST END QTR", "Name": "JOHN BAPTISTE FAMILY TRUST", "Address": "1692 Prindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69400, "Improved_V": 86200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.336730711, "SHAPE_Area": 2513.74756415 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352496.935599997639656, 258366.708299998193979 ], [ 352457.436200000345707, 258375.378199998289347 ], [ 352451.895000003278255, 258376.656899999827147 ], [ 352448.485100001096725, 258378.361900001764297 ], [ 352446.140699997544289, 258381.132500000298023 ], [ 352444.862000003457069, 258384.116200000047684 ], [ 352444.862000003457069, 258386.673700001090765 ], [ 352446.993199996650219, 258389.87049999833107 ], [ 352443.370099999010563, 258394.559200000017881 ], [ 352495.134199999272823, 258446.524700000882149 ], [ 352495.52080000191927, 258442.670400001108646 ], [ 352495.529500000178814, 258442.583299998193979 ], [ 352496.935599997639656, 258366.708299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504029900", "MAP": "D9-7881-T005", "PARCEL_NAM": "18B-1", "ACRE": ".22", "LONGITUDE": -64.99082747, "LATITUDE": 18.35532405, "OBJECTID_1": 2166, "PARCEL_NO_": "102504029900", "Tax_Legal_": "18B-1 ROW BONNE ESPERANCE N0.2 WEST END QTR", "Name": "ROBERTS, LLOYD V.,LEON V., LIONEL V. ROBERTS III,", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.74623030199999, "SHAPE_Area": 845.09321648000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352502.033399999141693, 258355.119600001722574 ], [ 352497.076899997889996, 258357.902199998497963 ], [ 352491.535800002515316, 258358.967799998819828 ], [ 352458.928000003099442, 258366.000799998641014 ], [ 352451.895000003278255, 258367.279599998146296 ], [ 352446.353799998760223, 258368.558299999684095 ], [ 352444.222599998116493, 258370.050200000405312 ], [ 352441.238899998366833, 258371.755100000649691 ], [ 352437.828900001943111, 258374.312600001692772 ], [ 352433.353399999439716, 258379.427499998360872 ], [ 352423.976000003516674, 258394.346099998801947 ], [ 352432.714000001549721, 258399.887299999594688 ], [ 352435.271499998867512, 258394.772300001233816 ], [ 352437.402699999511242, 258393.706700000911951 ], [ 352440.386399999260902, 258393.280499998480082 ], [ 352443.370099999010563, 258394.559200000017881 ], [ 352446.993199996650219, 258389.87049999833107 ], [ 352444.862000003457069, 258386.673700001090765 ], [ 352444.862000003457069, 258384.116200000047684 ], [ 352446.140699997544289, 258381.132500000298023 ], [ 352448.485100001096725, 258378.361900001764297 ], [ 352451.895000003278255, 258376.656899999827147 ], [ 352457.436200000345707, 258375.378199998289347 ], [ 352496.935599997639656, 258366.708299998193979 ], [ 352501.046300001442432, 258357.45380000025034 ], [ 352502.033399999141693, 258355.119600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504027500", "MAP": "D9-7881-T005", "PARCEL_NAM": "18B-E", "ACRE": ".60", "LONGITUDE": -64.99092804, "LATITUDE": 18.35577387, "OBJECTID_1": 2161, "PARCEL_NO_": "102504027500", "Tax_Legal_": "18B-D & 18B-E BONNE ESPERANCE NO. 2 WEST END QTR", "Name": "ROBERTS, LIONEL V.,LEON V., LLOYD V., LEONA V. RAYMO", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 113800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.95197562199999, "SHAPE_Area": 2358.330886 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352432.714000001549721, 258399.887299999594688 ], [ 352403.01969999819994, 258431.497299998998642 ], [ 352410.064900003373623, 258435.869199998676777 ], [ 352447.112199999392033, 258441.238699998706579 ], [ 352475.300700001418591, 258445.269099999219179 ], [ 352494.774400003254414, 258450.111400000751019 ], [ 352495.134199999272823, 258446.524700000882149 ], [ 352443.370099999010563, 258394.559200000017881 ], [ 352440.386399999260902, 258393.280499998480082 ], [ 352437.402699999511242, 258393.706700000911951 ], [ 352435.271499998867512, 258394.772300001233816 ], [ 352432.714000001549721, 258399.887299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504027300", "MAP": "D9-6559-T99", "PARCEL_NAM": "18B-B", "ACRE": null, "LONGITUDE": -64.991101, "LATITUDE": 18.3552022, "OBJECTID_1": 2159, "PARCEL_NO_": "102504027300", "Tax_Legal_": "18B-B BONNE ESPERANCE NO.2 WEST END QTR", "Name": "TODMAN, CHERYL ALICIA ROBERTS", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.00943365000001, "SHAPE_Area": 1865.32186839 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352461.404399998486042, 258365.466699998825788 ], [ 352447.15259999781847, 258335.524900000542402 ], [ 352409.187799997627735, 258349.52479999884963 ], [ 352395.822700001299381, 258365.647300001233816 ], [ 352425.254699997603893, 258391.575500000268221 ], [ 352425.800999999046326, 258391.442600000649691 ], [ 352433.353399999439716, 258379.427499998360872 ], [ 352437.828900001943111, 258374.312600001692772 ], [ 352441.238899998366833, 258371.755100000649691 ], [ 352444.222599998116493, 258370.050200000405312 ], [ 352446.353799998760223, 258368.558299999684095 ], [ 352451.895000003278255, 258367.279599998146296 ], [ 352458.928000003099442, 258366.000799998641014 ], [ 352461.404399998486042, 258365.466699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504027500", "MAP": "D9-7881-T005", "PARCEL_NAM": "18B-D", "ACRE": ".64", "LONGITUDE": -64.99138314, "LATITUDE": 18.35555152, "OBJECTID_1": 2161, "PARCEL_NO_": "102504027500", "Tax_Legal_": "18B-D & 18B-E BONNE ESPERANCE NO. 2 WEST END QTR", "Name": "ROBERTS, LIONEL V.,LEON V., LLOYD V., LEONA V. RAYMO", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 113800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.46228463700001, "SHAPE_Area": 2310.2122119599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352403.01969999819994, 258431.497299998998642 ], [ 352432.714000001549721, 258399.887299999594688 ], [ 352423.976000003516674, 258394.346099998801947 ], [ 352425.800999999046326, 258391.442600000649691 ], [ 352425.254699997603893, 258391.575500000268221 ], [ 352395.822700001299381, 258365.647300001233816 ], [ 352370.080200001597404, 258396.700800001621246 ], [ 352368.354299999773502, 258409.985500000417233 ], [ 352403.01969999819994, 258431.497299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504027200", "MAP": "D9-6559-T99", "PARCEL_NAM": "18B-A", "ACRE": null, "LONGITUDE": -64.99057875, "LATITUDE": 18.35499629, "OBJECTID_1": 2158, "PARCEL_NO_": "102504027200", "Tax_Legal_": "18B-A BONNE ESPERANCE NO.2 WEST END QTR", "Name": "MATTHIAS, WLIMA & LEAYLE RICKERING JR", "Address": "PO Box 607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 54000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.72425693400001, "SHAPE_Area": 2202.6703741599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352447.15259999781847, 258335.524900000542402 ], [ 352461.404399998486042, 258365.466699998825788 ], [ 352491.535800002515316, 258358.967799998819828 ], [ 352497.076899997889996, 258357.902199998497963 ], [ 352502.033399999141693, 258355.119600001722574 ], [ 352517.505199998617172, 258318.536200001835823 ], [ 352521.626599997282028, 258308.0152000002563 ], [ 352503.022100001573563, 258314.829100001603365 ], [ 352467.429300002753735, 258328.047699999064207 ], [ 352447.15259999781847, 258335.524900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301010700", "MAP": "A9-672-T006", "PARCEL_NAM": "4-7", "ACRE": "6.87", "LONGITUDE": -65.0322622, "LATITUDE": 18.35963844, "OBJECTID_1": 1152, "PARCEL_NO_": "102301010700", "Tax_Legal_": "4-7 ESTATE BOTANY BAY No.7 WEST END QTR.", "Name": "SPECTOR, WARREN", "Address": "11 W 10th St", "City": "New York", "State": "New York", "Zip": 10011, "Country": "United States", "Land_Value": 720000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 812.57292010699996, "SHAPE_Area": 29562.335016000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348110.351899996399879, 258908.030499998480082 ], [ 348220.266500003635883, 258747.078899998217821 ], [ 348221.873599998652935, 258745.21510000154376 ], [ 348214.329800002276897, 258739.229699999094009 ], [ 348207.897299997508526, 258736.341699998825788 ], [ 348033.95830000191927, 258750.219799999147654 ], [ 348001.457299999892712, 258786.036400001496077 ], [ 347972.994599997997284, 258809.908399999141693 ], [ 347959.222300000488758, 258823.680700000375509 ], [ 347950.040799997746944, 258827.353300001472235 ], [ 347951.877099998295307, 258836.534800000488758 ], [ 347951.877099998295307, 258842.961800001561642 ], [ 347947.286300003528595, 258844.798200000077486 ], [ 347940.859300002455711, 258847.552600000053644 ], [ 347935.350400000810623, 258850.307100001722574 ], [ 347931.677799999713898, 258859.488600000739098 ], [ 347923.414399996399879, 258865.915699999779463 ], [ 347921.578100003302097, 258879.687899999320507 ], [ 347935.350400000810623, 258892.542100001126528 ], [ 347947.286300003528595, 258892.542100001126528 ], [ 347951.877099998295307, 258884.2787000015378 ], [ 347952.795299999415874, 258877.851599998772144 ], [ 347959.222300000488758, 258870.506400000303984 ], [ 347965.649400003254414, 258881.52419999986887 ], [ 347969.321999996900558, 258887.951299998909235 ], [ 347978.503499999642372, 258888.869500000029802 ], [ 347996.866599999368191, 258884.2787000015378 ], [ 348007.884400002658367, 258882.442400000989437 ], [ 348019.82039999961853, 258876.015299998223782 ], [ 348020.738499999046326, 258872.342700000852346 ], [ 348031.756300002336502, 258875.097199998795986 ], [ 348041.855999998748302, 258879.687899999320507 ], [ 348047.364900000393391, 258885.196800000965595 ], [ 348051.955700002610683, 258887.951299998909235 ], [ 348058.382799997925758, 258894.378400001674891 ], [ 348068.482400000095367, 258897.132800001651049 ], [ 348077.663999997079372, 258896.214699998497963 ], [ 348081.336599998176098, 258902.641699999570847 ], [ 348085.927299998700619, 258910.905099999159575 ], [ 348094.190700002014637, 258914.5777000002563 ], [ 348110.351899996399879, 258908.030499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502034300", "MAP": "D9-7495-T004", "PARCEL_NAM": "IE", "ACRE": "1.357", "LONGITUDE": -64.98375284, "LATITUDE": 18.35865982, "OBJECTID_1": 2035, "PARCEL_NO_": "102502034300", "Tax_Legal_": "1E & 1F (ROW) SANTA MARIA WEST END QTR", "Name": "SMITH (TRUSTEE), MYRAH A. KEATING", "Address": "PO Box 537", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 135300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 325.35909865299999, "SHAPE_Area": 4622.3660814300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353237.732500001788139, 258750.651200000196695 ], [ 353214.898299999535084, 258730.939100001007318 ], [ 353204.784299999475479, 258718.167300000786781 ], [ 353200.270300000905991, 258723.842799998819828 ], [ 353163.568400003015995, 258683.592999998480082 ], [ 353160.26860000193119, 258686.87779999896884 ], [ 353161.730200000107288, 258704.621599998325109 ], [ 353178.897200003266335, 258771.889899998903275 ], [ 353200.574100002646446, 258783.044199999421835 ], [ 353233.492700003087521, 258799.778900001198053 ], [ 353239.829499997198582, 258802.991999998688698 ], [ 353248.301500000059605, 258785.778200000524521 ], [ 353237.305299997329712, 258763.480599999427795 ], [ 353237.722499996423721, 258751.109400000423193 ], [ 353237.732500001788139, 258750.651200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601022100", "MAP": "D9-7495-T004", "PARCEL_NAM": "1 REM", "ACRE": null, "LONGITUDE": -64.98389135, "LATITUDE": 18.35787614, "OBJECTID_1": 2229, "PARCEL_NO_": "102601022100", "Tax_Legal_": "1 REM SANTA MARIA NO.1 WEST END QTR", "Name": "O'NEAL HENDERSON, CHARLENE", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 463200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.575806578, "SHAPE_Area": 445.92138635800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353170.313000001013279, 258690.989599999040365 ], [ 353182.499399997293949, 258671.275499999523163 ], [ 353204.627300001680851, 258653.848799999803305 ], [ 353213.806500002741814, 258636.122400000691414 ], [ 353210.698700003325939, 258635.783700000494719 ], [ 353172.467600002884865, 258674.734200000762939 ], [ 353163.568400003015995, 258683.592999998480082 ], [ 353170.313000001013279, 258690.989599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601022100", "MAP": "D9-7495-T004", "PARCEL_NAM": "1F", "ACRE": ".330", "LONGITUDE": -64.98381464000001, "LATITUDE": 18.35800626, "OBJECTID_1": 2229, "PARCEL_NO_": "102601022100", "Tax_Legal_": "1 REM SANTA MARIA NO.1 WEST END QTR", "Name": "O'NEAL HENDERSON, CHARLENE", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 463200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.35662251700001, "SHAPE_Area": 1291.08594978 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353213.806500002741814, 258636.122400000691414 ], [ 353204.627300001680851, 258653.848799999803305 ], [ 353182.499399997293949, 258671.275499999523163 ], [ 353170.313000001013279, 258690.989599999040365 ], [ 353200.270300000905991, 258723.842799998819828 ], [ 353204.784299999475479, 258718.167300000786781 ], [ 353205.109700001776218, 258718.578099999576807 ], [ 353205.101000003516674, 258718.487100001424551 ], [ 353200.370800003409386, 258711.151799999177456 ], [ 353203.912100002169609, 258707.372299998998642 ], [ 353197.905000001192093, 258700.026999998837709 ], [ 353195.972300000488758, 258702.232799999415874 ], [ 353193.418600000441074, 258702.212499998509884 ], [ 353189.920000001788139, 258700.598400000482798 ], [ 353187.396499998867512, 258696.770799998193979 ], [ 353187.4391999989748, 258691.377199999988079 ], [ 353195.537299998104572, 258676.528400000184774 ], [ 353216.420999996364117, 258659.55970000103116 ], [ 353225.569799996912479, 258636.960900001227856 ], [ 353221.171800002455711, 258636.924899999052286 ], [ 353213.806500002741814, 258636.122400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97350799, "LATITUDE": 18.36272158, "OBJECTID_1": 2356, "PARCEL_NO_": "102602010700", "Tax_Legal_": "6 CARET BAY No.8 LITTLE NORTHSIDE QTR", "Name": "LIMEBURNER, ANN SALLY", "Address": "188 E Caret Bay 6", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 248900, "Improved_V": 98100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 443.31354513899998, "SHAPE_Area": 9360.4014599700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354361.778499998152256, 259157.739900000393391 ], [ 354257.072200000286102, 259147.962099999189377 ], [ 354244.623999997973442, 259184.856499999761581 ], [ 354234.221799999475479, 259270.053199999034405 ], [ 354250.292300000786781, 259276.72859999909997 ], [ 354270.417700000107288, 259280.692999999970198 ], [ 354294.842699997127056, 259263.445700000971556 ], [ 354309.708200000226498, 259252.948699999600649 ], [ 354315.50620000064373, 259248.854600001126528 ], [ 354313.510099999606609, 259239.038100000470877 ], [ 354307.07940000295639, 259236.663400001823902 ], [ 354304.685699999332428, 259233.688499998301268 ], [ 354304.775600001215935, 259223.13459999859333 ], [ 354305.612400002777576, 259219.552799999713898 ], [ 354309.744699999690056, 259207.765399999916553 ], [ 354313.018500000238419, 259202.092700000852346 ], [ 354314.647299997508526, 259200.206199999898672 ], [ 354352.056000001728535, 259163.148800000548363 ], [ 354353.679399996995926, 259161.895500000566244 ], [ 354356.920800000429153, 259160.022199999541044 ], [ 354361.778499998152256, 259157.739900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602011900", "MAP": "D9-9432-T020", "PARCEL_NAM": "RECONFIG. 6C-2B", "ACRE": "0.274", "LONGITUDE": -64.97290641, "LATITUDE": 18.36181569, "OBJECTID_1": 2368, "PARCEL_NO_": "102602011900", "Tax_Legal_": "6C-1A,6C-1B,6C-1D,6C-2B,6C-2REM &6C-A ROW CARET Bay NO.8 LITTLE NORTHSIDE QTR", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 526000, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.265352568, "SHAPE_Area": 1022.15196842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354352.889200001955032, 259100.366999998688698 ], [ 354345.95380000025034, 259080.861200001090765 ], [ 354341.021999999880791, 259088.142000000923872 ], [ 354326.717600002884865, 259103.4831000007689 ], [ 354325.302000001072884, 259109.585900001227856 ], [ 354325.0878000035882, 259115.019000001251698 ], [ 354348.26070000231266, 259123.186099998652935 ], [ 354365.04169999808073, 259134.347699999809265 ], [ 354361.360600002110004, 259112.140299998223782 ], [ 354361.060199998319149, 259108.353799998760223 ], [ 354362.061099998652935, 259101.626800000667572 ], [ 354352.889200001955032, 259100.366999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602011900", "MAP": "D9-9432-T020", "PARCEL_NAM": "RECONFIG. 6C-2-REM", "ACRE": ".273", "LONGITUDE": -64.97279046, "LATITUDE": 18.36152598, "OBJECTID_1": 2368, "PARCEL_NO_": "102602011900", "Tax_Legal_": "6C-1A,6C-1B,6C-1D,6C-2B,6C-2REM &6C-A ROW CARET Bay NO.8 LITTLE NORTHSIDE QTR", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 526000, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.60764383, "SHAPE_Area": 703.25119649600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354345.95380000025034, 259080.861200001090765 ], [ 354352.889200001955032, 259100.366999998688698 ], [ 354362.061099998652935, 259101.626800000667572 ], [ 354369.422899998724461, 259052.148600000888109 ], [ 354369.667099997401237, 259050.507399998605251 ], [ 354366.854699999094009, 259051.88459999859333 ], [ 354360.728699997067451, 259053.881099998950958 ], [ 354357.765399999916553, 259054.727800000458956 ], [ 354357.008199997246265, 259057.264299999922514 ], [ 354355.444300003349781, 259058.026099998503923 ], [ 354353.709899999201298, 259061.239100001752377 ], [ 354351.072599999606609, 259070.559099998325109 ], [ 354348.802699998021126, 259076.655200000852346 ], [ 354345.95380000025034, 259080.861200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602017100", "MAP": "D9-6739-T000", "PARCEL_NAM": "6C-2A", "ACRE": ".263", "LONGITUDE": -64.97292515, "LATITUDE": 18.36209437, "OBJECTID_1": 2415, "PARCEL_NO_": "102602017100", "Tax_Legal_": "6C-2A CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "RUBY , LAUGHTER and CARMEN M RODRIGUEZ", "Address": "PO Box 307755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57300, "Improved_V": 190200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.288300386, "SHAPE_Area": 1409.28830528 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354325.0878000035882, 259115.019000001251698 ], [ 354324.152300000190735, 259125.201699998229742 ], [ 354323.924599997699261, 259132.333099998533726 ], [ 354323.019900001585484, 259154.12049999833107 ], [ 354361.778499998152256, 259157.739900000393391 ], [ 354366.621699996292591, 259157.146299999207258 ], [ 354369.040700003504753, 259157.16609999909997 ], [ 354368.263099998235703, 259153.782200001180172 ], [ 354365.04169999808073, 259134.347699999809265 ], [ 354348.26070000231266, 259123.186099998652935 ], [ 354325.0878000035882, 259115.019000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602016900", "MAP": "D9-7947-T007", "PARCEL_NAM": "6C-1 REM", "ACRE": ".40", "LONGITUDE": -64.97343826, "LATITUDE": 18.36204229, "OBJECTID_1": 2413, "PARCEL_NO_": "102602016900", "Tax_Legal_": "6C-1 REM CARET BAY 8 LITTLE NORTHSIDE QTR", "Name": "NELTHROPP OHARA, DIONNE S.", "Address": "PO Box 308391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107000, "Improved_V": 109400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.319152694, "SHAPE_Area": 1985.4879810800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354318.802500002086163, 259122.441799998283386 ], [ 354270.516500003635883, 259108.375199999660254 ], [ 354258.687399998307228, 259143.17509999871254 ], [ 354257.072200000286102, 259147.962099999189377 ], [ 354316.865900002419949, 259153.545899998396635 ], [ 354318.695699997246265, 259123.799499999731779 ], [ 354318.802500002086163, 259122.441799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403019500", "MAP": "D9-6515-T98", "PARCEL_NAM": "3G-1", "ACRE": ".577", "LONGITUDE": -65.00844802, "LATITUDE": 18.35057446, "OBJECTID_1": 1636, "PARCEL_NO_": "102403019500", "Tax_Legal_": "FORTUNA 3G-1 WESTEND QRT #8", "Name": "SHAW, PHILMORE,JOEL,JAMAL,KIMRA", "Address": "PO Box 1091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 347.47880484900003, "SHAPE_Area": 2692.0095355200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350580.727099999785423, 257791.447900000959635 ], [ 350569.70889999717474, 257807.493500001728535 ], [ 350578.558899998664856, 257817.353100001811981 ], [ 350585.776799999177456, 257829.379000000655651 ], [ 350588.280699998140335, 257839.230799999088049 ], [ 350598.796999998390675, 257924.810600001364946 ], [ 350607.274899996817112, 257924.621300000697374 ], [ 350600.911200001835823, 257828.311500001698732 ], [ 350634.913000002503395, 257812.546599999070168 ], [ 350633.332699999213219, 257808.734000001102686 ], [ 350626.94879999756813, 257800.871300000697374 ], [ 350617.312600001692772, 257796.148400001227856 ], [ 350580.727099999785423, 257791.447900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00818173, "LATITUDE": 18.35096887, "OBJECTID_1": 1551, "PARCEL_NO_": "102403010600", "Tax_Legal_": "FORTUNA 60 WEST END QTR", "Name": "GEORGE, LECIA L", "Address": "P.O. BOX 2404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 123100, "Improved_V": 119600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.999784148, "SHAPE_Area": 5130.8152576000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350608.768299996852875, 257947.221400000154972 ], [ 350668.017499998211861, 257902.110199999064207 ], [ 350660.031700000166893, 257892.967799998819828 ], [ 350651.300700001418591, 257876.642099998891354 ], [ 350651.316899999976158, 257874.742400001734495 ], [ 350648.183300003409386, 257863.9510000012815 ], [ 350645.051600001752377, 257852.948499999940395 ], [ 350634.913000002503395, 257812.546599999070168 ], [ 350600.911200001835823, 257828.311500001698732 ], [ 350608.768299996852875, 257947.221400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010200", "MAP": "D9-6515-T98", "PARCEL_NAM": "3G-REM", "ACRE": "1.93", "LONGITUDE": -65.00871492, "LATITUDE": 18.35099298, "OBJECTID_1": 1547, "PARCEL_NO_": "102403010200", "Tax_Legal_": "FORTUNA 3 REM. WEST END QTR", "Name": "SEALEY, THEODORE", "Address": "PO Box 302354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 165500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.04841129099998, "SHAPE_Area": 5498.2895255100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350569.70889999717474, 257807.493500001728535 ], [ 350542.694899998605251, 257846.833399999886751 ], [ 350543.317800000309944, 257868.370099999010563 ], [ 350543.847199998795986, 257900.882800001651049 ], [ 350544.866800002753735, 257933.177000001072884 ], [ 350558.696199998259544, 257933.284499999135733 ], [ 350556.0996999964118, 257928.021299999207258 ], [ 350556.452299997210503, 257925.07490000128746 ], [ 350560.770999997854233, 257920.848499998450279 ], [ 350567.683600001037121, 257922.213100001215935 ], [ 350586.361900001764297, 257936.776700001209974 ], [ 350608.768299996852875, 257947.221400000154972 ], [ 350607.274899996817112, 257924.621300000697374 ], [ 350598.796999998390675, 257924.810600001364946 ], [ 350588.280699998140335, 257839.230799999088049 ], [ 350585.776799999177456, 257829.379000000655651 ], [ 350578.558899998664856, 257817.353100001811981 ], [ 350569.70889999717474, 257807.493500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601031100", "MAP": null, "PARCEL_NAM": "64", "ACRE": null, "LONGITUDE": -64.974329, "LATITUDE": 18.35885541, "OBJECTID_1": 2285, "PARCEL_NO_": "102601031100", "Tax_Legal_": "64-REM CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, ANN S", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2130000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1617.6671265499999, "SHAPE_Area": 119111.966166 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354266.350199997425079, 259007.396200001239777 ], [ 354293.760799996554852, 258926.924899999052286 ], [ 354327.887199997901917, 258940.62779999896884 ], [ 354401.518799997866154, 258703.901700001209974 ], [ 354412.271300002932549, 258669.332600001245737 ], [ 354423.673299998044968, 258632.675000000745058 ], [ 354276.991300001740456, 258676.655799999833107 ], [ 354225.027800001204014, 258602.076799999922514 ], [ 354247.357900001108646, 258592.253600001335144 ], [ 354244.447499997913837, 258592.518199998885393 ], [ 354243.124600000679493, 258592.253600001335144 ], [ 354239.685000002384186, 258590.66609999909997 ], [ 354235.45160000026226, 258587.491099998354912 ], [ 354231.218299999833107, 258584.316100001335144 ], [ 354227.7787000015378, 258582.464000001549721 ], [ 354223.545400001108646, 258580.611900001764297 ], [ 354217.989100001752377, 258578.759799998253584 ], [ 354214.020300000905991, 258576.907699998468161 ], [ 354207.934900000691414, 258574.791000001132488 ], [ 354200.526600003242493, 258573.203499998897314 ], [ 354192.589100003242493, 258572.938999999314547 ], [ 354187.297399997711182, 258572.938999999314547 ], [ 354178.301500000059605, 258572.409800000488758 ], [ 354173.538999997079372, 258572.409800000488758 ], [ 354166.924400001764297, 258572.409800000488758 ], [ 354159.516099996864796, 258573.203499998897314 ], [ 354151.578599996864796, 258574.526500001549721 ], [ 354147.874399997293949, 258575.584800001233816 ], [ 354144.699400000274181, 258577.966099999845028 ], [ 354133.138199999928474, 258573.014600001275539 ], [ 354105.020999997854233, 258571.717099998146296 ], [ 354083.74379999935627, 258570.735199999064207 ], [ 354067.288500003516674, 258609.230599999427795 ], [ 354018.728799998760223, 258724.723600000143051 ], [ 353993.213500000536442, 258785.520799998193979 ], [ 353980.051700003445148, 258816.021600000560284 ], [ 353979.617399998009205, 258817.036800000816584 ], [ 354114.871699996292591, 258923.528000000864267 ], [ 354125.963200002908707, 258932.260800000280142 ], [ 354287.233599998056889, 259059.235399998724461 ], [ 354295.899300001561642, 259034.555399999022484 ], [ 354297.178099997341633, 259030.7635000012815 ], [ 354299.92849999666214, 259022.608300000429153 ], [ 354296.864000000059605, 259021.219999998807907 ], [ 354266.350199997425079, 259007.396200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602011900", "MAP": "D9-9010-T015", "PARCEL_NAM": "6C-1REM", "ACRE": ".30", "LONGITUDE": -64.97337707, "LATITUDE": 18.36176987, "OBJECTID_1": 2368, "PARCEL_NO_": "102602011900", "Tax_Legal_": "6C-1A,6C-1B,6C-1D,6C-2B,6C-2REM &6C-A ROW CARET Bay NO.8 LITTLE NORTHSIDE QTR", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 526000, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.547103284, "SHAPE_Area": 1145.8208642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354320.631599999964237, 259105.681600000709295 ], [ 354312.590400002896786, 259103.345199998468161 ], [ 354315.513300001621246, 259094.952899999916553 ], [ 354278.811800003051758, 259083.971500001847744 ], [ 354270.516500003635883, 259108.375199999660254 ], [ 354318.802500002086163, 259122.441799998283386 ], [ 354319.456299997866154, 259114.124899998307228 ], [ 354320.021700002253056, 259107.505800001323223 ], [ 354320.631599999964237, 259105.681600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602017300", "MAP": "D9-7947-T007", "PARCEL_NAM": "6C-1C", "ACRE": ".29", "LONGITUDE": -64.97327652, "LATITUDE": 18.36156649, "OBJECTID_1": 2417, "PARCEL_NO_": "102602017300", "Tax_Legal_": "6C-1C CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "ROBERTS, LLOYD M. & & CATHERINE JACKSON-", "Address": "PO Box 307468", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.05078803500001, "SHAPE_Area": 1140.94350091 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354278.811800003051758, 259083.971500001847744 ], [ 354325.379199996590614, 259097.904899999499321 ], [ 354337.463799998164177, 259084.377199999988079 ], [ 354339.24549999833107, 259081.910300001502037 ], [ 354286.426600001752377, 259061.569400001317263 ], [ 354278.811800003051758, 259083.971500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602011900", "MAP": "D9-6722-T000", "PARCEL_NAM": "6C-1", "ACRE": null, "LONGITUDE": -64.97289315, "LATITUDE": 18.36133053, "OBJECTID_1": 2368, "PARCEL_NO_": "102602011900", "Tax_Legal_": "6C-1A,6C-1B,6C-1D,6C-2B,6C-2REM &6C-A ROW CARET Bay NO.8 LITTLE NORTHSIDE QTR", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 526000, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.25188358754000001, "SHAPE_Area": 0.00292545005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354347.596000000834465, 259055.014600001275539 ], [ 354347.652000002563, 259055.08729999884963 ], [ 354347.663000002503395, 259054.997099999338388 ], [ 354347.596000000834465, 259055.014600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012000", "MAP": "G9-461-T57", "PARCEL_NAM": "7D", "ACRE": ".80", "LONGITUDE": -64.97242183, "LATITUDE": 18.36154242, "OBJECTID_1": 2369, "PARCEL_NO_": "102602012000", "Tax_Legal_": "CARET BAY 7D LITTLE NORTHSIDE", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 197400, "Improved_V": 311600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.367292625, "SHAPE_Area": 2617.2012901100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354385.164899997413158, 259047.955400001257658 ], [ 354368.967600002884865, 259048.446600001305342 ], [ 354369.667099997401237, 259050.507399998605251 ], [ 354369.422899998724461, 259052.148600000888109 ], [ 354369.413999997079372, 259052.208200000226498 ], [ 354369.389399997889996, 259052.3739 ], [ 354361.060199998319149, 259108.353799998760223 ], [ 354463.498700000345707, 259075.831500001251698 ], [ 354468.975900001823902, 259068.902499999850988 ], [ 354466.569600000977516, 259067.405200000852346 ], [ 354439.320299997925758, 259073.226199999451637 ], [ 354423.655299998819828, 259072.38230000063777 ], [ 354418.150799997150898, 259071.528599999845028 ], [ 354403.458499997854233, 259069.249899998307228 ], [ 354400.615199998021126, 259067.371100001037121 ], [ 354390.339400000870228, 259060.580899998545647 ], [ 354388.279100000858307, 259055.553800001740456 ], [ 354387.033500000834465, 259052.514600001275539 ], [ 354385.164899997413158, 259047.955400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602011900", "MAP": null, "PARCEL_NAM": "6C-A ROW", "ACRE": null, "LONGITUDE": -64.97298557000001, "LATITUDE": 18.36166432, "OBJECTID_1": 2368, "PARCEL_NO_": "102602011900", "Tax_Legal_": "6C-1A,6C-1B,6C-1D,6C-2B,6C-2REM &6C-A ROW CARET Bay NO.8 LITTLE NORTHSIDE QTR", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 526000, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.13513238399997, "SHAPE_Area": 763.50396341500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354357.008199997246265, 259057.264299999922514 ], [ 354357.765399999916553, 259054.727800000458956 ], [ 354360.728699997067451, 259053.881099998950958 ], [ 354366.854699999094009, 259051.88459999859333 ], [ 354369.667099997401237, 259050.507399998605251 ], [ 354367.276299998164177, 259043.464000001549721 ], [ 354348.428900003433228, 259049.331900000572205 ], [ 354347.98650000244379, 259052.299899999052286 ], [ 354347.596000000834465, 259055.014600001275539 ], [ 354347.663000002503395, 259054.997099999338388 ], [ 354346.508199997246265, 259064.408599998801947 ], [ 354346.148900002241135, 259066.613600000739098 ], [ 354345.256700001657009, 259071.361900001764297 ], [ 354343.683700002729893, 259075.7652000002563 ], [ 354337.463799998164177, 259084.377199999988079 ], [ 354321.947200000286102, 259101.746700000017881 ], [ 354320.021700002253056, 259107.505800001323223 ], [ 354319.456299997866154, 259114.124899998307228 ], [ 354318.695699997246265, 259123.799499999731779 ], [ 354316.865900002419949, 259153.545899998396635 ], [ 354323.019900001585484, 259154.12049999833107 ], [ 354323.924599997699261, 259132.333099998533726 ], [ 354324.152300000190735, 259125.201699998229742 ], [ 354325.0878000035882, 259115.019000001251698 ], [ 354325.302000001072884, 259109.585900001227856 ], [ 354326.717600002884865, 259103.4831000007689 ], [ 354341.021999999880791, 259088.142000000923872 ], [ 354348.802699998021126, 259076.655200000852346 ], [ 354351.072599999606609, 259070.559099998325109 ], [ 354353.709899999201298, 259061.239100001752377 ], [ 354355.444300003349781, 259058.026099998503923 ], [ 354357.008199997246265, 259057.264299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602011900", "MAP": "D9-7867-T006", "PARCEL_NAM": "6C-1A", "ACRE": ".26", "LONGITUDE": -64.97314024000001, "LATITUDE": 18.36127967, "OBJECTID_1": 2368, "PARCEL_NO_": "102602011900", "Tax_Legal_": "6C-1A,6C-1B,6C-1D,6C-2B,6C-2REM &6C-A ROW CARET Bay NO.8 LITTLE NORTHSIDE QTR", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 526000, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.94562344900001, "SHAPE_Area": 816.52876804499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354292.118000000715256, 259045.324499998241663 ], [ 354346.148900002241135, 259066.613600000739098 ], [ 354346.508199997246265, 259064.408599998801947 ], [ 354347.652000002563, 259055.08729999884963 ], [ 354347.596000000834465, 259055.014600001275539 ], [ 354347.98650000244379, 259052.299899999052286 ], [ 354348.428900003433228, 259049.331900000572205 ], [ 354345.651799999177456, 259048.848999999463558 ], [ 354311.187100000679493, 259039.335700001567602 ], [ 354297.178099997341633, 259030.7635000012815 ], [ 354295.958400003612041, 259034.380100000649691 ], [ 354295.899300001561642, 259034.555399999022484 ], [ 354293.524700000882149, 259041.318300001323223 ], [ 354292.118000000715256, 259045.324499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602011900", "MAP": "D9-7867-T006", "PARCEL_NAM": "6C-1B", "ACRE": ".28", "LONGITUDE": -64.97318916, "LATITUDE": 18.36141316, "OBJECTID_1": 2368, "PARCEL_NO_": "102602011900", "Tax_Legal_": "6C-1A,6C-1B,6C-1D,6C-2B,6C-2REM &6C-A ROW CARET Bay NO.8 LITTLE NORTHSIDE QTR", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 526000, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.97458071200001, "SHAPE_Area": 988.23295605800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354290.862199999392033, 259048.90089999884367 ], [ 354286.808700002729893, 259060.445500001311302 ], [ 354286.426600001752377, 259061.569400001317263 ], [ 354339.24549999833107, 259081.910300001502037 ], [ 354343.683700002729893, 259075.7652000002563 ], [ 354345.256700001657009, 259071.361900001764297 ], [ 354345.314400002360344, 259071.054800000041723 ], [ 354346.148900002241135, 259066.613600000739098 ], [ 354292.118000000715256, 259045.324499998241663 ], [ 354290.862199999392033, 259048.90089999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504014500", "MAP": "D9-373-T63", "PARCEL_NAM": "2-10", "ACRE": "0.55", "LONGITUDE": -64.98619231000001, "LATITUDE": 18.35381803, "OBJECTID_1": 2118, "PARCEL_NO_": "102504014500", "Tax_Legal_": "BONNE ESPERANCE 2-10 WEST END QTR", "Name": "WALKER, DWIGHT A and SHEENA A", "Address": "PO Box 12137", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70200, "Improved_V": 364700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.807436846, "SHAPE_Area": 2239.7248481400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352982.051299996674061, 258220.059200000017881 ], [ 352945.444300003349781, 258178.553700000047684 ], [ 352945.265399999916553, 258178.704700000584126 ], [ 352932.281700000166893, 258188.308699999004602 ], [ 352916.03320000320673, 258202.530099999159575 ], [ 352951.129699997603893, 258247.569200001657009 ], [ 352976.319600000977516, 258224.977200001478195 ], [ 352982.051299996674061, 258220.059200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504014600", "MAP": "D9-373-T63", "PARCEL_NAM": "2-9", "ACRE": ".50", "LONGITUDE": -64.9859285, "LATITUDE": 18.35359311, "OBJECTID_1": 2119, "PARCEL_NO_": "102504014600", "Tax_Legal_": "BONNE ESPERANCE 2-9 WEST END QTR", "Name": "GOMEZ, SEGUNDO O. & ORTIZ, ZENAIDA", "Address": "PO Box 303243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 94500, "Improved_V": 146200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.19116968599999, "SHAPE_Area": 1933.99315819 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352945.444300003349781, 258178.553700000047684 ], [ 352982.051299996674061, 258220.059200000017881 ], [ 352983.630400002002716, 258218.704300001263618 ], [ 353002.306800000369549, 258203.447299998253584 ], [ 353005.555500000715256, 258200.729699999094009 ], [ 353007.417599998414516, 258199.257800001651049 ], [ 352973.298699997365475, 258154.530600000172853 ], [ 352967.195900000631809, 258160.096799999475479 ], [ 352965.570699997246265, 258161.561200000345707 ], [ 352945.444300003349781, 258178.553700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504014700", "MAP": "D9-373-T63", "PARCEL_NAM": "2-8", "ACRE": ".52", "LONGITUDE": -64.98565248, "LATITUDE": 18.3533695, "OBJECTID_1": 2120, "PARCEL_NO_": "102504014700", "Tax_Legal_": "BONNE ESPERANCE 2-8 WEST END QTR", "Name": "REOVAN, RICHARD & JACQUELINE", "Address": "PO Box 304451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67600, "Improved_V": 261700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.21570101899999, "SHAPE_Area": 2381.12358137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353038.23929999768734, 258170.253600001335144 ], [ 353004.62950000166893, 258127.103399999439716 ], [ 352995.639799997210503, 258134.153999999165535 ], [ 352973.298699997365475, 258154.530600000172853 ], [ 353007.417599998414516, 258199.257800001651049 ], [ 353028.286899998784065, 258182.761700000613928 ], [ 353037.777099996805191, 258170.614799998700619 ], [ 353038.23929999768734, 258170.253600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98209003, "LATITUDE": 18.35001925, "OBJECTID_1": 2573, "PARCEL_NO_": "102603020100", "Tax_Legal_": "ADELPHI ESTATE NORTH&SOUTH No.3 WEST END QTR.", "Name": "THE UNIVERSITY OF THE V. I.", "Address": "No.2 JOHN BREWER'S BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6133300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 6170.5239118500003, "SHAPE_Area": 740624.54113599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353660.716300003230572, 258155.007199998944998 ], [ 353673.683899998664856, 258147.30290000140667 ], [ 353678.520000003278255, 258147.553599998354912 ], [ 353750.763700000941753, 258091.571800000965595 ], [ 353757.278899997472763, 258084.025699999183416 ], [ 353811.963600002229214, 258006.790899999439716 ], [ 353818.458999998867512, 258001.566700000315905 ], [ 353826.545500002801418, 257998.888599999248981 ], [ 353840.488600000739098, 257995.651399999856949 ], [ 353888.612700000405312, 257894.918600000441074 ], [ 353888.576899997889996, 257894.891499999910593 ], [ 353888.717200003564358, 257894.695099998265505 ], [ 353887.982799999415874, 257886.245299998670816 ], [ 353887.235799998044968, 257879.27309999987483 ], [ 353884.370200000703335, 257837.030999999493361 ], [ 353885.678199999034405, 257778.146600000560284 ], [ 353915.839100003242493, 257739.974399998784065 ], [ 353800.292199999094009, 257578.386500000953674 ], [ 353639.391500003635883, 257345.288899999111891 ], [ 353533.446299999952316, 257381.785300001502037 ], [ 353531.828199997544289, 257382.4054000005126 ], [ 353528.58500000089407, 257384.489799998700619 ], [ 353522.091300003230572, 257389.502900000661612 ], [ 353516.402199998497963, 257394.733600001782179 ], [ 353504.968199998140335, 257411.738600000739098 ], [ 353499.266400001943111, 257418.447000000625849 ], [ 353491.162000000476837, 257423.235800001770258 ], [ 353486.300700001418591, 257425.940200001001358 ], [ 353482.254799999296665, 257427.595800001174212 ], [ 353452.343900002539158, 257436.428100001066923 ], [ 353394.908699996769428, 257457.911699999123812 ], [ 353392.482600003480911, 257458.736200001090765 ], [ 353375.510399997234344, 257463.241399999707937 ], [ 353362.593199998140335, 257465.035500001162291 ], [ 353356.95269999653101, 257464.567099999636412 ], [ 353353.734600000083447, 257463.696400001645088 ], [ 353344.080399997532368, 257461.084300000220537 ], [ 353327.234200000762939, 257450.813900001347065 ], [ 353319.172899998724461, 257450.536899998784065 ], [ 353315.93860000371933, 257451.565799999982119 ], [ 353309.450400002300739, 257455.945700000971556 ], [ 353260.510600000619888, 257521.406399998813868 ], [ 353255.625900000333786, 257526.854800000786781 ], [ 353249.132299996912479, 257531.867899999022484 ], [ 353246.699000000953674, 257533.536699999123812 ], [ 353241.026000000536442, 257536.867800001055002 ], [ 353235.362000003457069, 257539.143500000238419 ], [ 353218.391699999570847, 257543.4375 ], [ 353214.331399999558926, 257546.781800001859665 ], [ 353211.892700001597404, 257549.08390000090003 ], [ 353210.249499998986721, 257552.659000001847744 ], [ 353210.22070000320673, 257556.036299999803305 ], [ 353210.9712999984622, 257562.586300000548363 ], [ 353213.347000002861023, 257567.671999998390675 ], [ 353220.524700000882149, 257577.018899999558926 ], [ 353242.101000003516674, 257599.993599999696016 ], [ 353246.083999998867512, 257605.725699998438358 ], [ 353250.842699997127056, 257615.052799999713898 ], [ 353251.631099998950958, 257617.170200001448393 ], [ 353253.967299997806549, 257626.899599999189377 ], [ 353252.146099999547005, 257651.371500000357628 ], [ 353223.995999999344349, 257737.478399999439716 ], [ 353222.345600001513958, 257741.897900000214577 ], [ 353217.423199996352196, 257751.778999999165535 ], [ 353216.598899997770786, 257753.883099999278784 ], [ 353209.279200002551079, 257761.211500000208616 ], [ 353186.562200002372265, 257777.490899998694658 ], [ 353182.487400002777576, 257782.523800000548363 ], [ 353180.854999996721745, 257784.832400001585484 ], [ 353177.568599998950958, 257791.982700001448393 ], [ 353176.739000000059605, 257794.720199998468161 ], [ 353173.371699996292591, 257811.368999999016523 ], [ 353168.454700000584126, 257820.616900000721216 ], [ 353161.950199998915195, 257826.89640000090003 ], [ 353150.61150000244379, 257832.714299999177456 ], [ 353141.686300002038479, 257839.185100000351667 ], [ 353127.838699996471405, 257855.537099998444319 ], [ 353104.83219999819994, 257905.80009999871254 ], [ 353099.92059999704361, 257914.414799999445677 ], [ 353098.264799997210503, 257919.467500001192093 ], [ 353093.364000000059605, 257926.815600000321865 ], [ 353091.715400002896786, 257931.024000000208616 ], [ 353089.273100003600121, 257933.748199999332428 ], [ 353088.441600002348423, 257936.696699999272823 ], [ 353075.366200000047684, 257957.065799999982119 ], [ 353059.063699997961521, 257977.619500000029802 ], [ 353020.809199996292591, 258019.314100001007318 ], [ 353015.112899996340275, 258025.38910000026226 ], [ 353007.015600003302097, 258029.333599999547005 ], [ 353023.592100001871586, 258061.249000001698732 ], [ 353038.659599997103214, 258090.25899999961257 ], [ 353043.031499996781349, 258098.676399998366833 ], [ 353067.347699999809265, 258145.493200000375509 ], [ 353071.951700001955032, 258154.357599999755621 ], [ 353092.982799999415874, 258194.849500000476837 ], [ 353097.581699997186661, 258203.703999999910593 ], [ 353157.754199996590614, 258319.555399999022484 ], [ 353201.246100001037121, 258410.835299998521805 ], [ 353300.405799999833107, 258328.321400001645088 ], [ 353323.885999999940395, 258317.114500001072884 ], [ 353350.604000002145767, 258304.456399999558926 ], [ 353374.084100000560284, 258293.249600000679493 ], [ 353399.1841000020504, 258281.211599998176098 ], [ 353428.331799998879433, 258267.30689999833703 ], [ 353472.052500002086163, 258246.555300001055002 ], [ 353482.577799998223782, 258241.575199998915195 ], [ 353531.965999998152256, 258218.125900000333786 ], [ 353574.876800000667572, 258197.789900001138449 ], [ 353597.547100000083447, 258186.998599998652935 ], [ 353625.883100003004074, 258173.720499999821186 ], [ 353643.695699997246265, 258165.211500000208616 ], [ 353660.716300003230572, 258155.007199998944998 ] ] ], [ [ [ 353214.86429999768734, 257734.953200001269579 ], [ 353214.956000000238419, 257734.680799998342991 ], [ 353215.045699998736382, 257734.407699998468161 ], [ 353215.133299998939037, 257734.133900001645088 ], [ 353215.218900002539158, 257733.859499998390675 ], [ 353241.58669999986887, 257648.2162000015378 ], [ 353241.670199997723103, 257647.941799998283386 ], [ 353241.751999996602535, 257647.666900001466274 ], [ 353241.832000002264977, 257647.391499999910593 ], [ 353241.910199999809265, 257647.115499999374151 ], [ 353241.986599996685982, 257646.839099999517202 ], [ 353242.061300002038479, 257646.562199998646975 ], [ 353242.134199999272823, 257646.284800000488758 ], [ 353242.205200001597404, 257646.006999999284744 ], [ 353242.274599999189377, 257645.72859999909997 ], [ 353242.342100001871586, 257645.44990000128746 ], [ 353242.407799996435642, 257645.170699998736382 ], [ 353242.471699997782707, 257644.891199998557568 ], [ 353242.533900000154972, 257644.611200001090765 ], [ 353242.594200000166893, 257644.330800000578165 ], [ 353242.652699999511242, 257644.050000000745058 ], [ 353242.709499999880791, 257643.768899999558926 ], [ 353242.764399997889996, 257643.487399999052286 ], [ 353242.817500002682209, 257643.205600000917912 ], [ 353242.86879999935627, 257642.92339999973774 ], [ 353242.918300002813339, 257642.640900000929832 ], [ 353242.965999998152256, 257642.3581000007689 ], [ 353243.011799998581409, 257642.074999999254942 ], [ 353243.055900000035763, 257641.791600000113249 ], [ 353243.098099999129772, 257641.50789999961853 ], [ 353243.13849999755621, 257641.223999999463558 ], [ 353243.177000001072884, 257640.939800001680851 ], [ 353243.213799998164177, 257640.6554000005126 ], [ 353243.248700000345707, 257640.370700001716614 ], [ 353243.281800001859665, 257640.085799999535084 ], [ 353243.313000001013279, 257639.800799999386072 ], [ 353243.342500001192093, 257639.515500001609325 ], [ 353243.369999997317791, 257639.230000000447035 ], [ 353243.39580000191927, 257638.944400001317263 ], [ 353243.419699996709824, 257638.658599998801947 ], [ 353243.441799998283386, 257638.372699998319149 ], [ 353243.462099999189377, 257638.086599998176098 ], [ 353243.480499997735023, 257637.800400000065565 ], [ 353243.497000001370907, 257637.51410000026226 ], [ 353243.511799998581409, 257637.227699998766184 ], [ 353243.524599999189377, 257636.941199999302626 ], [ 353243.535700000822544, 257636.654599998146296 ], [ 353243.544900000095367, 257636.368000000715256 ], [ 353243.552299998700619, 257636.081300001591444 ], [ 353243.557800002396107, 257635.794599998742342 ], [ 353243.561499997973442, 257635.507800001651049 ], [ 353243.563299998641014, 257635.221099998801947 ], [ 353243.563299998641014, 257634.934300001710653 ], [ 353243.561499997973442, 257634.64750000089407 ], [ 353243.557800002396107, 257634.360700000077486 ], [ 353243.552299998700619, 257634.074000000953674 ], [ 353243.544900000095367, 257633.787300001829863 ], [ 353243.535700000822544, 257633.500700000673532 ], [ 353243.524599999189377, 257633.214099999517202 ], [ 353243.511699996888638, 257632.927700001746416 ], [ 353243.497000001370907, 257632.64130000025034 ], [ 353243.480400003492832, 257632.355000000447035 ], [ 353243.461999997496605, 257632.068799998611212 ], [ 353243.441799998283386, 257631.782699998468161 ], [ 353243.419699996709824, 257631.496800001710653 ], [ 353243.39580000191927, 257631.210999999195337 ], [ 353243.369999997317791, 257630.925400000065565 ], [ 353243.342399999499321, 257630.640000000596046 ], [ 353243.313000001013279, 257630.354699999094009 ], [ 353243.281800001859665, 257630.069699998944998 ], [ 353243.248700000345707, 257629.784800000488758 ], [ 353243.213699996471405, 257629.500199999660254 ], [ 353243.177000001072884, 257629.215799998492002 ], [ 353243.138400003314018, 257628.931600000709295 ], [ 353243.097999997437, 257628.647700000554323 ], [ 353243.055799998342991, 257628.364100001752377 ], [ 353243.011799998581409, 257628.080699998885393 ], [ 353242.965899996459484, 257627.797600001096725 ], [ 353242.918300002813339, 257627.514899998903275 ], [ 353242.86879999935627, 257627.232400000095367 ], [ 353242.817500002682209, 257626.950300000607967 ], [ 353242.764300003647804, 257626.668499998748302 ], [ 353242.709399998188019, 257626.386999998241663 ], [ 353242.652699999511242, 257626.105900000780821 ], [ 353242.594200000166893, 257625.825199998915195 ], [ 353242.5337999984622, 257625.544900000095367 ], [ 353242.471699997782707, 257625.264899998903275 ], [ 353242.407700002193451, 257624.985399998724461 ], [ 353242.342000000178814, 257624.706199999898672 ], [ 353242.274499997496605, 257624.427499998360872 ], [ 353242.205200001597404, 257624.149300001561642 ], [ 353242.134099997580051, 257623.871500000357628 ], [ 353242.061200000345707, 257623.594099998474121 ], [ 353241.98650000244379, 257623.317299999296665 ], [ 353241.910099998116493, 257623.040899999439716 ], [ 353241.831900000572205, 257622.765000000596046 ], [ 353241.751900002360344, 257622.489599999040365 ], [ 353241.670199997723103, 257622.214800000190735 ], [ 353241.58669999986887, 257621.940499998629093 ], [ 353241.501400001347065, 257621.666700001806021 ], [ 353241.414300002157688, 257621.393399998545647 ], [ 353241.325599998235703, 257621.120799999684095 ], [ 353241.234999999403954, 257620.848700001835823 ], [ 353241.142700001597404, 257620.577199999243021 ], [ 353241.048699997365475, 257620.30629999935627 ], [ 353240.953000001609325, 257620.035999998450279 ], [ 353240.855499997735023, 257619.76630000025034 ], [ 353240.75620000064373, 257619.497299998998642 ], [ 353240.655299998819828, 257619.228900000452995 ], [ 353240.552599996328354, 257618.961199998855591 ], [ 353240.44820000231266, 257618.694099999964237 ], [ 353240.342100001871586, 257618.427700001746416 ], [ 353240.234300002455711, 257618.162000000476837 ], [ 353240.124799996614456, 257617.896999999880791 ], [ 353240.013599999248981, 257617.632699999958277 ], [ 353239.900600001215935, 257617.369100000709295 ], [ 353239.785999998450279, 257617.106300000101328 ], [ 353239.669699996709824, 257616.844200000166893 ], [ 353239.55179999768734, 257616.582800000905991 ], [ 353239.432099997997284, 257616.322200000286102 ], [ 353239.3108000010252, 257616.062399998307228 ], [ 353239.187799997627735, 257615.803399998694658 ], [ 353239.063199996948242, 257615.545099999755621 ], [ 353238.936800003051758, 257615.28770000115037 ], [ 353238.808899998664856, 257615.031100001186132 ], [ 353238.679300002753735, 257614.775299999862909 ], [ 353238.548000000417233, 257614.520399998873472 ], [ 353238.415200002491474, 257614.26630000025034 ], [ 353238.280599996447563, 257614.013000000268221 ], [ 353238.144500002264977, 257613.76069999858737 ], [ 353238.006800003349781, 257613.509199999272823 ], [ 353237.867399998009205, 257613.258600000292063 ], [ 353237.726400002837181, 257613.008900001645088 ], [ 353237.583800002932549, 257612.760099999606609 ], [ 353237.439699999988079, 257612.512200001627207 ], [ 353237.29389999806881, 257612.265299998223782 ], [ 353237.146600000560284, 257612.019299998879433 ], [ 353236.997599996626377, 257611.774300001561642 ], [ 353236.847199998795986, 257611.530200000852346 ], [ 353236.695100001990795, 257611.287099998444319 ], [ 353236.541500002145767, 257611.045000001788139 ], [ 353236.38629999756813, 257610.803800001740456 ], [ 353236.229599997401237, 257610.563700001686811 ], [ 353236.071299999952316, 257610.324599999934435 ], [ 353235.91160000115633, 257610.086500000208616 ], [ 353235.750200003385544, 257609.849399998784065 ], [ 353235.587399996817112, 257609.613400001078844 ], [ 353235.423100002110004, 257609.378499999642372 ], [ 353235.257200002670288, 257609.144499998539686 ], [ 353235.089900001883507, 257608.911699999123812 ], [ 353234.920999996364117, 257608.679900001734495 ], [ 353234.750699996948242, 257608.449299998581409 ], [ 353234.578900001943111, 257608.219700001180172 ], [ 353234.405599996447563, 257607.991300001740456 ], [ 353234.230800002813339, 257607.763900000602007 ], [ 353234.05460000038147, 257607.53770000115037 ], [ 353233.876999996602535, 257607.312600001692772 ], [ 353233.697899997234344, 257607.088700000196695 ], [ 353233.517399996519089, 257606.865899998694658 ], [ 353233.335400000214577, 257606.644299998879433 ], [ 353233.152000002563, 257606.423900000751019 ], [ 353232.967200003564358, 257606.204599998891354 ], [ 353232.781000003218651, 257605.9864999987185 ], [ 353232.593500003218651, 257605.76969999819994 ], [ 353232.404500000178814, 257605.554099999368191 ], [ 353219.374499998986721, 257590.781199999153614 ], [ 353219.152999997138977, 257590.574299998581409 ], [ 353218.932199999690056, 257590.366500001400709 ], [ 353218.712200000882149, 257590.157999999821186 ], [ 353218.492899999022484, 257589.948699999600649 ], [ 353218.274400003254414, 257589.738600000739098 ], [ 353218.056500002741814, 257589.527800001204014 ], [ 353217.839500002563, 257589.316199999302626 ], [ 353217.623099997639656, 257589.103799998760223 ], [ 353217.407499998807907, 257588.890700001269579 ], [ 353217.192699998617172, 257588.67680000141263 ], [ 353216.97860000282526, 257588.462200000882149 ], [ 353216.765299998223782, 257588.246800001710653 ], [ 353216.552699998021126, 257588.030699998140335 ], [ 353216.340899996459484, 257587.813900001347065 ], [ 353216.129900000989437, 257587.596200000494719 ], [ 353215.919600002467632, 257587.377900000661612 ], [ 353215.710100002586842, 257587.1587999984622 ], [ 353215.501299999654293, 257586.938999999314547 ], [ 353215.293300002813339, 257586.718400001525879 ], [ 353215.086199998855591, 257586.49720000103116 ], [ 353214.879699997603893, 257586.275199998170137 ], [ 353214.674099996685982, 257586.052400000393391 ], [ 353214.469200000166893, 257585.828999999910593 ], [ 353214.26519999653101, 257585.604800000786781 ], [ 353214.061899997293949, 257585.379900000989437 ], [ 353213.859399996697903, 257585.15430000051856 ], [ 353213.657700002193451, 257584.927999999374151 ], [ 353213.456799998879433, 257584.7010000012815 ], [ 353213.256700001657009, 257584.473299998790026 ], [ 353213.0574000030756, 257584.244899999350309 ], [ 353212.858900003135204, 257584.015799999237061 ], [ 353212.661200001835823, 257583.785999998450279 ], [ 353212.464299999177456, 257583.555500000715256 ], [ 353212.268200002610683, 257583.324299998581409 ], [ 353212.072999998927116, 257583.092399999499321 ], [ 353211.878499999642372, 257582.859900001436472 ], [ 353211.684900000691414, 257582.626600001007318 ], [ 353211.49210000038147, 257582.392700001597404 ], [ 353211.30009999871254, 257582.158100001513958 ], [ 353211.108900003135204, 257581.922800000756979 ], [ 353210.918600000441074, 257581.686900001019239 ], [ 353210.729099996387959, 257581.450300000607967 ], [ 353210.540399998426437, 257581.212999999523163 ], [ 353210.352600000798702, 257580.975099999457598 ], [ 353210.165600001811981, 257580.7364999987185 ], [ 353209.979400001466274, 257580.497299998998642 ], [ 353209.794100001454353, 257580.257399998605251 ], [ 353209.609600000083447, 257580.016800001263618 ], [ 353209.425899997353554, 257579.775600001215935 ], [ 353209.243199996650219, 257579.5337999984622 ], [ 353209.061200000345707, 257579.291299998760223 ], [ 353208.8800999969244, 257579.048200000077486 ], [ 353208.69990000128746, 257578.804499998688698 ], [ 353208.520499996840954, 257578.560100000351667 ], [ 353208.342000000178814, 257578.315099999308586 ], [ 353208.164399996399879, 257578.069499999284744 ], [ 353207.98759999871254, 257577.82319999858737 ], [ 353207.811599999666214, 257577.576400000602007 ], [ 353207.636600002646446, 257577.328899998217821 ], [ 353207.462399996817112, 257577.080800000578165 ], [ 353207.289099998772144, 257576.832100000232458 ], [ 353207.116599999368191, 257576.582699999213219 ], [ 353206.945100001990795, 257576.332800000905991 ], [ 353206.774400003254414, 257576.082299999892712 ], [ 353206.604599997401237, 257575.831199999898672 ], [ 353206.435599997639656, 257575.579500000923872 ], [ 353206.267599999904633, 257575.327199999243021 ], [ 353206.100400000810623, 257575.074299998581409 ], [ 353205.934199996292591, 257574.820799998939037 ], [ 353205.768799997866154, 257574.566700000315905 ], [ 353205.604299999773502, 257574.312100000679493 ], [ 353205.440700002014637, 257574.05689999833703 ], [ 353205.277999997138977, 257573.801100000739098 ], [ 353205.116300001740456, 257573.544700000435114 ], [ 353204.955399997532368, 257573.287799999117851 ], [ 353204.795400001108646, 257573.030299998819828 ], [ 353204.63629999756813, 257572.772300001233816 ], [ 353204.478100001811981, 257572.513700000941753 ], [ 353204.320900000631809, 257572.25450000166893 ], [ 353204.164499998092651, 257571.994800001382828 ], [ 353204.009099997580051, 257571.734499998390675 ], [ 353203.854500003159046, 257571.473700001835823 ], [ 353203.700900003314018, 257571.212400000542402 ], [ 353203.548199996352196, 257570.950500000268221 ], [ 353203.39639999717474, 257570.688099998980761 ], [ 353203.245600000023842, 257570.425200000405312 ], [ 353203.09570000320673, 257570.161699999123812 ], [ 353202.946699999272823, 257569.897700000554323 ], [ 353202.798600003123283, 257569.633200000971556 ], [ 353202.651399999856949, 257569.368099998682737 ], [ 353202.505199998617172, 257569.102600000798702 ], [ 353202.361599996685982, 257568.838199999183416 ], [ 353202.221000000834465, 257568.572200000286102 ], [ 353202.083700001239777, 257568.304499998688698 ], [ 353201.949500001966953, 257568.035100001841784 ], [ 353201.818499997258186, 257567.764299999922514 ], [ 353201.690700002014637, 257567.491900000721216 ], [ 353201.566100001335144, 257567.217999998480082 ], [ 353201.444799996912479, 257566.942600000649691 ], [ 353201.326800003647804, 257566.665800001472235 ], [ 353201.211999997496605, 257566.387699998915195 ], [ 353201.100599996745586, 257566.108199998736382 ], [ 353200.992399998009205, 257565.827399998903275 ], [ 353200.887599997222424, 257565.545400001108646 ], [ 353200.786100000143051, 257565.262099999934435 ], [ 353200.688000001013279, 257564.977600000798702 ], [ 353200.593199998140335, 257564.69200000166893 ], [ 353200.501900002360344, 257564.405299998819828 ], [ 353200.413900002837181, 257564.117600001394749 ], [ 353200.32940000295639, 257563.82880000025034 ], [ 353200.248199999332428, 257563.539099998772144 ], [ 353200.170500002801418, 257563.248399998992682 ], [ 353200.0962999984622, 257562.956799998879433 ], [ 353200.025499999523163, 257562.664299998432398 ], [ 353199.958099998533726, 257562.370999999344349 ], [ 353199.894299998879433, 257562.076999999582767 ], [ 353199.83389999717474, 257561.782200001180172 ], [ 353199.777000002563, 257561.486699998378754 ], [ 353199.723600000143051, 257561.190600000321865 ], [ 353199.673699997365475, 257560.893800001591444 ], [ 353199.627300001680851, 257560.596500001847744 ], [ 353199.584399998188019, 257560.298700001090765 ], [ 353199.545100003480911, 257560.000300001353025 ], [ 353199.509300000965595, 257559.70160000026226 ], [ 353199.476999998092651, 257559.402399998158216 ], [ 353199.448299996554852, 257559.102800000458956 ], [ 353199.423100002110004, 257558.802999999374151 ], [ 353199.401500001549721, 257558.50279999896884 ], [ 353199.383400000631809, 257558.202500000596046 ], [ 353199.368900001049042, 257557.901900000870228 ], [ 353199.357900001108646, 257557.601199999451637 ], [ 353199.350500002503395, 257557.300299998372793 ], [ 353199.346699997782707, 257556.999400001019239 ], [ 353199.346400000154972, 257556.698499999940395 ], [ 353199.349600002169609, 257556.397599998861551 ], [ 353199.35639999806881, 257556.096700001507998 ], [ 353199.366800002753735, 257555.796000000089407 ], [ 353199.380699999630451, 257555.495400000363588 ], [ 353199.398199997842312, 257555.195000000298023 ], [ 353199.419299997389317, 257554.894799999892712 ], [ 353199.443800002336502, 257554.594799999147654 ], [ 353199.472000002861023, 257554.295200001448393 ], [ 353199.503700003027916, 257553.995900001376867 ], [ 353199.538900002837181, 257553.69709999859333 ], [ 353199.577600002288818, 257553.398600000888109 ], [ 353199.6199000030756, 257553.100699998438358 ], [ 353199.665700003504753, 257552.803199999034405 ], [ 353199.715000003576279, 257552.506400000303984 ], [ 353199.767800003290176, 257552.210099998861551 ], [ 353199.824100002646446, 257551.914500001817942 ], [ 353199.883900001645088, 257551.619500000029802 ], [ 353199.947200000286102, 257551.325300000607967 ], [ 353200.013899996876717, 257551.031800001859665 ], [ 353200.084100000560284, 257550.739199999719858 ], [ 353200.157799996435642, 257550.447399999946356 ], [ 353200.234999999403954, 257550.156500000506639 ], [ 353200.315499998629093, 257549.866500001400709 ], [ 353200.399499997496605, 257549.577500000596046 ], [ 353200.486900001764297, 257549.289500001817942 ], [ 353200.57769999653101, 257549.002599999308586 ], [ 353200.671899996697903, 257548.71680000051856 ], [ 353200.769400000572205, 257548.432100001722574 ], [ 353200.870300002396107, 257548.148499999195337 ], [ 353200.974600002169609, 257547.866200000047684 ], [ 353201.08219999819994, 257547.585099998861551 ], [ 353201.193099997937679, 257547.305300001055002 ], [ 353201.307300001382828, 257547.026900000870228 ], [ 353201.424800001084805, 257546.749800000339746 ], [ 353201.545500002801418, 257546.47410000115633 ], [ 353201.669600002467632, 257546.19990000128746 ], [ 353201.796800002455711, 257545.927099999040365 ], [ 353201.927299998700619, 257545.655900001525879 ], [ 353202.060900002717972, 257545.386199999600649 ], [ 353202.197800002992153, 257545.118200000375509 ], [ 353202.3378000035882, 257544.851799998432398 ], [ 353202.480899997055531, 257544.587000001221895 ], [ 353202.627199999988079, 257544.323899999260902 ], [ 353202.776500001549721, 257544.062600001692772 ], [ 353202.928999997675419, 257543.803100001066923 ], [ 353203.084399998188019, 257543.545400001108646 ], [ 353203.243000000715256, 257543.289599999785423 ], [ 353203.404500000178814, 257543.035599999129772 ], [ 353203.569099999964237, 257542.783599998801947 ], [ 353203.736599996685982, 257542.533599998801947 ], [ 353203.906999997794628, 257542.285500001162291 ], [ 353204.080399997532368, 257542.039500001817942 ], [ 353204.256700001657009, 257541.795499999076128 ], [ 353204.4358000010252, 257541.553599998354912 ], [ 353204.617799997329712, 257541.313900001347065 ], [ 353204.802599996328354, 257541.076299998909235 ], [ 353204.990199998021126, 257540.840999998152256 ], [ 353205.180600002408028, 257540.607799999415874 ], [ 353205.373700000345707, 257540.377000000327826 ], [ 353205.569499999284744, 257540.148400001227856 ], [ 353205.76799999922514, 257539.922200001776218 ], [ 353205.969200000166893, 257539.698300000280142 ], [ 353206.173000000417233, 257539.476799998432398 ], [ 353206.37950000166893, 257539.257800001651049 ], [ 353206.588500000536442, 257539.041200000792742 ], [ 353206.799999997019768, 257538.827100001275539 ], [ 353207.013999998569489, 257538.615499999374151 ], [ 353207.230599999427795, 257538.406399998813868 ], [ 353207.449600003659725, 257538.19990000128746 ], [ 353207.670999996364117, 257537.996100001037121 ], [ 353207.894799999892712, 257537.794799998402596 ], [ 353208.120999999344349, 257537.596200000494719 ], [ 353208.349500000476837, 257537.400299999862909 ], [ 353208.580300003290176, 257537.20719999819994 ], [ 353208.813400000333786, 257537.016699999570847 ], [ 353209.048699997365475, 257536.829100001603365 ], [ 353209.286300003528595, 257536.644200000911951 ], [ 353209.52589999884367, 257536.462099999189377 ], [ 353209.767800003290176, 257536.282900001853704 ], [ 353210.011699996888638, 257536.106600001454353 ], [ 353210.257700003683567, 257535.933100000023842 ], [ 353210.505699999630451, 257535.762600000947714 ], [ 353210.755699999630451, 257535.594999998807907 ], [ 353211.007700003683567, 257535.430399999022484 ], [ 353211.261600002646446, 257535.268800001591444 ], [ 353211.517399996519089, 257535.110199999064207 ], [ 353211.775100000202656, 257534.954599998891354 ], [ 353212.034599997103214, 257534.802099999040365 ], [ 353212.295900002121925, 257534.652699999511242 ], [ 353212.558899998664856, 257534.506299998611212 ], [ 353212.823600001633167, 257534.363099999725819 ], [ 353213.090000003576279, 257534.223099999129772 ], [ 353213.358000002801418, 257534.086100000888109 ], [ 353213.627700001001358, 257533.952399998903275 ], [ 353213.898900002241135, 257533.821899998933077 ], [ 353214.171599999070168, 257533.694499999284744 ], [ 353214.445799998939037, 257533.57039999961853 ], [ 353214.721500001847744, 257533.449599999934435 ], [ 353214.998499996960163, 257533.331999998539686 ], [ 353215.277000002563, 257533.217700000852346 ], [ 353215.556699998676777, 257533.106699999421835 ], [ 353215.8378000035882, 257532.999099999666214 ], [ 353216.120099999010563, 257532.89469999819994 ], [ 353216.403599999845028, 257532.793699998408556 ], [ 353216.688299998641014, 257532.696100000292063 ], [ 353216.974200002849102, 257532.601799998432398 ], [ 353217.261100001633167, 257532.510899998247623 ], [ 353217.549099996685982, 257532.42339999973774 ], [ 353217.837999999523163, 257532.339299999177456 ], [ 353218.127999998629093, 257532.258699998259544 ], [ 353218.41889999806881, 257532.181499999016523 ], [ 353218.710699997842312, 257532.107700001448393 ], [ 353219.003300003707409, 257532.037399999797344 ], [ 353228.651600003242493, 257529.778999999165535 ], [ 353228.925899997353554, 257529.713799998164177 ], [ 353229.199699997901917, 257529.646699998527765 ], [ 353229.473099999129772, 257529.5777000002563 ], [ 353229.745999999344349, 257529.506799999624491 ], [ 353230.018399998545647, 257529.434000000357628 ], [ 353230.290299996733665, 257529.359299998730421 ], [ 353230.561599999666214, 257529.282800000160933 ], [ 353230.832400001585484, 257529.2043999992311 ], [ 353231.102700002491474, 257529.124099999666214 ], [ 353231.372400000691414, 257529.041900001466274 ], [ 353231.641599997878075, 257528.957800000905991 ], [ 353231.910099998116493, 257528.871899999678135 ], [ 353232.178099997341633, 257528.784200001507998 ], [ 353232.44539999961853, 257528.694600000977516 ], [ 353232.712099999189377, 257528.603100001811981 ], [ 353232.978200003504753, 257528.509799998253584 ], [ 353233.243600003421307, 257528.414700001478195 ], [ 353233.508299998939037, 257528.317699998617172 ], [ 353233.772399999201298, 257528.218899998813868 ], [ 353234.035800002515316, 257528.118200000375509 ], [ 353234.29839999973774, 257528.015799999237061 ], [ 353234.560400001704693, 257527.911499999463558 ], [ 353234.821599997580051, 257527.805399999022484 ], [ 353235.082099996507168, 257527.697500001639128 ], [ 353235.341899998486042, 257527.587799999862909 ], [ 353235.60080000013113, 257527.476300001144409 ], [ 353235.858999997377396, 257527.363000001758337 ], [ 353236.116400003433228, 257527.247900001704693 ], [ 353236.373000003397465, 257527.131000000983477 ], [ 353236.628799997270107, 257527.01240000128746 ], [ 353236.883799999952316, 257526.892000000923872 ], [ 353237.137900002300739, 257526.769799999892712 ], [ 353237.391199998557568, 257526.645899999886751 ], [ 353237.64360000193119, 257526.520300000905991 ], [ 353237.895099997520447, 257526.392799999564886 ], [ 353238.145700000226498, 257526.263700000941753 ], [ 353238.395499996840954, 257526.132800001651049 ], [ 353238.644299998879433, 257526.000199999660254 ], [ 353238.892200000584126, 257525.865800000727177 ], [ 353239.13910000026226, 257525.729800000786781 ], [ 353239.385200001299381, 257525.592000000178814 ], [ 353239.630199998617172, 257525.452599998563528 ], [ 353239.874300003051758, 257525.3114 ], [ 353240.117399998009205, 257525.168600000441074 ], [ 353240.359499998390675, 257525.024000000208616 ], [ 353240.600599996745586, 257524.87779999896884 ], [ 353240.840700000524521, 257524.730000000447035 ], [ 353241.079700000584126, 257524.58049999922514 ], [ 353241.317699998617172, 257524.429299999028444 ], [ 353241.554700002074242, 257524.276500001549721 ], [ 353241.790600001811981, 257524.122000001370907 ], [ 353242.025399997830391, 257523.965900000184774 ], [ 353242.259099997580051, 257523.808200001716614 ], [ 353242.491800002753735, 257523.648899998515844 ], [ 353242.723300002515316, 257523.487900000065565 ], [ 353242.953699998557568, 257523.325399998575449 ], [ 353243.18299999833107, 257523.161299999803305 ], [ 353243.411100000143051, 257522.995600000023842 ], [ 353243.638099998235703, 257522.828299999237061 ], [ 353243.863899998366833, 257522.659400001168251 ], [ 353244.088500000536442, 257522.489000000059605 ], [ 353244.311999998986721, 257522.317099999636412 ], [ 353244.534199997782707, 257522.143500000238419 ], [ 353244.755300000309944, 257521.968499999493361 ], [ 353244.975100003182888, 257521.791900001466274 ], [ 353245.19370000064373, 257521.613800000399351 ], [ 353245.411100000143051, 257521.434200000017881 ], [ 353245.627199999988079, 257521.253100000321865 ], [ 353245.842000000178814, 257521.070500001311302 ], [ 353246.055600002408028, 257520.886500000953674 ], [ 353246.267899997532368, 257520.700899999588728 ], [ 353246.478900000452995, 257520.513900000602007 ], [ 353246.688699997961521, 257520.325399998575449 ], [ 353246.897100001573563, 257520.135499998927116 ], [ 353247.104099996387959, 257519.944099999964237 ], [ 353247.309900000691414, 257519.751299999654293 ], [ 353247.514300003647804, 257519.557100001722574 ], [ 353247.717399999499321, 257519.3614999987185 ], [ 353247.919100001454353, 257519.164500001817942 ], [ 353248.119400002062321, 257518.966099999845028 ], [ 353248.318400003015995, 257518.76630000025034 ], [ 353248.515900000929832, 257518.565099999308586 ], [ 353248.712099999189377, 257518.36259999871254 ], [ 353248.906800001859665, 257518.158700000494719 ], [ 353249.100199997425079, 257517.953400000929832 ], [ 353249.292099997401237, 257517.746899999678135 ], [ 353249.482600003480911, 257517.539000000804663 ], [ 353249.671599999070168, 257517.329799998551607 ], [ 353249.859200000762939, 257517.119300000369549 ], [ 353250.045299999415874, 257516.907400000840425 ], [ 353250.229999996721745, 257516.694400001317263 ], [ 353250.413099996745586, 257516.480000000447035 ], [ 353250.594800002872944, 257516.264400001615286 ], [ 353250.774999998509884, 257516.047499999403954 ], [ 353250.953599996864796, 257515.8293999992311 ], [ 353251.130800001323223, 257515.609999999403954 ], [ 353251.306400001049042, 257515.389400001615286 ], [ 353251.480499997735023, 257515.167599998414516 ], [ 353251.653099998831749, 257514.944699998944998 ], [ 353251.824100002646446, 257514.720499999821186 ], [ 353301.113399997353554, 257449.6418999992311 ], [ 353301.286899998784065, 257449.415899999439716 ], [ 353301.462899997830391, 257449.191700000315905 ], [ 353301.64130000025034, 257448.969399999827147 ], [ 353301.822200000286102, 257448.749099999666214 ], [ 353302.005500003695488, 257448.530799999833107 ], [ 353302.191200003027916, 257448.314500000327826 ], [ 353302.379199996590614, 257448.100299999117851 ], [ 353302.569499999284744, 257447.888099998235703 ], [ 353302.762100003659725, 257447.677999999374151 ], [ 353302.957099996507168, 257447.469999998807907 ], [ 353303.15429999679327, 257447.264199998229742 ], [ 353303.353699997067451, 257447.060499999672174 ], [ 353303.555399999022484, 257446.859099999070168 ], [ 353303.759199999272823, 257446.659800000488758 ], [ 353303.965199999511242, 257446.462799999862909 ], [ 353304.17339999973774, 257446.26799999922514 ], [ 353304.383599996566772, 257446.075599998235703 ], [ 353304.596000000834465, 257445.885400000959635 ], [ 353304.810400001704693, 257445.697599999606609 ], [ 353305.026900000870228, 257445.512200001627207 ], [ 353305.245300002396107, 257445.329100001603365 ], [ 353305.465800002217293, 257445.148400001227856 ], [ 353305.688199996948242, 257444.970100000500679 ], [ 353305.912600003182888, 257444.794300001114607 ], [ 353306.138899996876717, 257444.620900001376867 ], [ 353306.366999998688698, 257444.450100000947714 ], [ 353306.597000002861023, 257444.281700000166893 ], [ 353306.828900001943111, 257444.115899998694658 ], [ 353307.0625, 257443.952599998563528 ], [ 353307.297899998724461, 257443.791799999773502 ], [ 353307.535099998116493, 257443.633699998259544 ], [ 353307.773900002241135, 257443.478100001811981 ], [ 353308.014499999582767, 257443.325199998915195 ], [ 353308.256700001657009, 257443.174899999052286 ], [ 353308.500500001013279, 257443.027300000190735 ], [ 353308.745999999344349, 257442.88230000063777 ], [ 353308.993000000715256, 257442.740100000053644 ], [ 353309.241499997675419, 257442.600499998778105 ], [ 353309.491599999368191, 257442.463700000196695 ], [ 353309.743100002408028, 257442.329599998891354 ], [ 353309.996100001037121, 257442.198300000280142 ], [ 353310.250500001013279, 257442.069699998944998 ], [ 353310.506300002336502, 257441.943999998271465 ], [ 353310.76349999755621, 257441.820999998599291 ], [ 353311.021999999880791, 257441.700899999588728 ], [ 353311.281800001859665, 257441.583599999547005 ], [ 353311.54280000180006, 257441.469099998474121 ], [ 353311.805100001394749, 257441.357500001788139 ], [ 353312.068599998950958, 257441.248799998313189 ], [ 353312.33330000191927, 257441.14299999922514 ], [ 353312.59910000115633, 257441.03999999910593 ], [ 353312.86599999666214, 257440.940000001341105 ], [ 353313.13400000333786, 257440.8429000005126 ], [ 353313.402999997138977, 257440.748700000345707 ], [ 353313.673000000417233, 257440.657499998807907 ], [ 353313.944099999964237, 257440.569299999624491 ], [ 353314.216099999845028, 257440.484000001102686 ], [ 353314.488899998366833, 257440.401700001209974 ], [ 353314.762699998915195, 257440.322399999946356 ], [ 353315.037299998104572, 257440.246100001037121 ], [ 353315.312799997627735, 257440.172699999064207 ], [ 353315.589000001549721, 257440.102400001138449 ], [ 353315.86599999666214, 257440.035199999809265 ], [ 353316.143700003623962, 257439.970899999141693 ], [ 353316.422100000083447, 257439.909699998795986 ], [ 353316.701099999248981, 257439.851599998772144 ], [ 353316.980800002813339, 257439.796500001102686 ], [ 353317.260999999940395, 257439.744500000029802 ], [ 353317.541799999773502, 257439.695500001311302 ], [ 353317.823100000619888, 257439.649599999189377 ], [ 353318.104900002479553, 257439.606800001114607 ], [ 353318.387100003659725, 257439.567099999636412 ], [ 353318.669799998402596, 257439.5304000005126 ], [ 353318.952799998223782, 257439.496899999678135 ], [ 353319.236199997365475, 257439.466499999165535 ], [ 353319.519900001585484, 257439.439100001007318 ], [ 353319.803900003433228, 257439.414900001138449 ], [ 353320.088100001215935, 257439.393699999898672 ], [ 353320.372599996626377, 257439.375700000673532 ], [ 353320.657200001180172, 257439.360800001770258 ], [ 353320.94200000166893, 257439.348999999463558 ], [ 353321.226800002157688, 257439.340300001204014 ], [ 353321.511799998581409, 257439.334699999541044 ], [ 353321.796800002455711, 257439.332299999892712 ], [ 353322.081799998879433, 257439.332899998873472 ], [ 353322.366800002753735, 257439.33669999986887 ], [ 353322.651699997484684, 257439.343600001186132 ], [ 353322.936499997973442, 257439.35359999909997 ], [ 353323.221199996769428, 257439.366799999028444 ], [ 353323.505800001323223, 257439.383000001311302 ], [ 353323.790100000798702, 257439.402399998158216 ], [ 353324.074199996888638, 257439.424800001084805 ], [ 353324.35809999704361, 257439.450399998575449 ], [ 353324.641599997878075, 257439.478999998420477 ], [ 353324.924900002777576, 257439.510800000280142 ], [ 353325.207699999213219, 257439.545699998736382 ], [ 353325.490199998021126, 257439.583599999547005 ], [ 353325.772200003266335, 257439.624699998646975 ], [ 353326.053800001740456, 257439.668800000101328 ], [ 353326.334799997508526, 257439.715999998152256 ], [ 353326.615299999713898, 257439.76630000025034 ], [ 353326.895300000905991, 257439.819600000977516 ], [ 353327.174599997699261, 257439.875999998301268 ], [ 353327.453400000929832, 257439.935499999672174 ], [ 353327.73139999806881, 257439.997900001704693 ], [ 353328.008799999952316, 257440.063499998301268 ], [ 353328.285400003194809, 257440.131999999284744 ], [ 353328.561200000345707, 257440.203600000590086 ], [ 353328.836300000548363, 257440.278200000524521 ], [ 353329.110500000417233, 257440.355799999088049 ], [ 353329.383799999952316, 257440.4364 ], [ 353329.656300000846386, 257440.519999999552965 ], [ 353329.927799999713898, 257440.606499999761581 ], [ 353330.198399998247623, 257440.695999998599291 ], [ 353330.4679000005126, 257440.788499999791384 ], [ 353330.73650000244379, 257440.883900001645088 ], [ 353331.003899998962879, 257440.982299998402596 ], [ 353331.270300000905991, 257441.083500001579523 ], [ 353331.535599999129772, 257441.187699999660254 ], [ 353331.799699999392033, 257441.294799998402596 ], [ 353332.062600001692772, 257441.404699999839067 ], [ 353332.324299998581409, 257441.517499998211861 ], [ 353332.584700003266335, 257441.633200000971556 ], [ 353332.843800000846386, 257441.7516999989748 ], [ 353333.101700000464916, 257441.873100001364946 ], [ 353333.358199998736382, 257441.99720000103116 ], [ 353333.613300003111362, 257442.124200001358986 ], [ 353333.866999998688698, 257442.253899998962879 ], [ 353334.119300000369549, 257442.386399999260902 ], [ 353334.370099999010563, 257442.521699998527765 ], [ 353334.619499996304512, 257442.659699998795986 ], [ 353334.867299996316433, 257442.800400000065565 ], [ 353335.113499999046326, 257442.943799998611212 ], [ 353335.358199998736382, 257443.089899998158216 ], [ 353335.601199999451637, 257443.238600000739098 ], [ 353335.842600002884865, 257443.390099998563528 ], [ 353347.289899997413158, 257450.657699998468161 ], [ 353347.515600003302097, 257450.799199998378754 ], [ 353347.743000000715256, 257450.938299998641014 ], [ 353347.971799999475479, 257451.074799999594688 ], [ 353348.202200002968311, 257451.208799999207258 ], [ 353348.4341000020504, 257451.34010000154376 ], [ 353348.667400002479553, 257451.468899998813868 ], [ 353348.902099996805191, 257451.595100000500679 ], [ 353349.138199999928474, 257451.718699999153614 ], [ 353349.375699996948242, 257451.839600000530481 ], [ 353349.614500001072884, 257451.957899998873472 ], [ 353349.854599997401237, 257452.073499999940395 ], [ 353350.096000000834465, 257452.1864 ], [ 353350.338699996471405, 257452.296599999070168 ], [ 353350.582500003278255, 257452.404100000858307 ], [ 353350.827600002288818, 257452.508900001645088 ], [ 353351.07379999756813, 257452.61089999973774 ], [ 353351.321099996566772, 257452.710200000554323 ], [ 353351.569499999284744, 257452.806800000369549 ], [ 353351.818899996578693, 257452.900499999523163 ], [ 353352.069399997591972, 257452.991500001400709 ], [ 353352.320900000631809, 257453.079700000584126 ], [ 353352.573399998247623, 257453.165100000798702 ], [ 353352.826800003647804, 257453.247600000351667 ], [ 353353.08110000193119, 257453.327399998903275 ], [ 353353.336300000548363, 257453.40430000051856 ], [ 353353.592299997806549, 257453.478300001472235 ], [ 353353.84910000115633, 257453.549499999731779 ], [ 353354.106700003147125, 257453.617800001055002 ], [ 353354.365099996328354, 257453.683299999684095 ], [ 353354.624099999666214, 257453.745799999684095 ], [ 353354.883900001645088, 257453.805500000715256 ], [ 353355.144299998879433, 257453.862300001084805 ], [ 353355.405299998819828, 257453.916200000792742 ], [ 353355.666900001466274, 257453.967099998146296 ], [ 353355.929099999368191, 257454.0152000002563 ], [ 353356.191699996590614, 257454.060300000011921 ], [ 353356.454899996519089, 257454.10249999910593 ], [ 353356.718500003218651, 257454.141699999570847 ], [ 353356.982500001788139, 257454.178100001066923 ], [ 353357.247000001370907, 257454.211399998515844 ], [ 353357.511799998581409, 257454.241900000721216 ], [ 353357.776900000870228, 257454.269299998879433 ], [ 353358.042300000786781, 257454.2939000017941 ], [ 353358.307899996638298, 257454.315400000661612 ], [ 353358.57379999756813, 257454.333999998867512 ], [ 353358.839900001883507, 257454.349700000137091 ], [ 353359.106100000441074, 257454.362300001084805 ], [ 353359.372400000691414, 257454.372000001370907 ], [ 353359.638899996876717, 257454.378800000995398 ], [ 353359.9054000005126, 257454.382599998265505 ], [ 353360.171899996697903, 257454.383400000631809 ], [ 353360.438500002026558, 257454.38120000064373 ], [ 353360.704899996519089, 257454.3761 ], [ 353360.971400000154972, 257454.368000000715256 ], [ 353361.237700000405312, 257454.356899999082088 ], [ 353361.503799997270107, 257454.3429000005126 ], [ 353361.769799999892712, 257454.325899999588728 ], [ 353362.035599999129772, 257454.305900000035763 ], [ 353362.320299997925758, 257454.282600000500679 ], [ 353362.604800000786781, 257454.258600000292063 ], [ 353362.889399997889996, 257454.233899999409914 ], [ 353363.173799999058247, 257454.208500001579523 ], [ 353363.458200000226498, 257454.182399999350309 ], [ 353363.742499999701977, 257454.155600000172853 ], [ 353364.026799999177456, 257454.128100000321865 ], [ 353364.310999996960163, 257454.099899999797344 ], [ 353364.595100000500679, 257454.071100000292063 ], [ 353364.879199996590614, 257454.041499998420477 ], [ 353365.163199998438358, 257454.011300001293421 ], [ 353365.44709999859333, 257453.98030000180006 ], [ 353365.730899997055531, 257453.948699999600649 ], [ 353366.014700002968311, 257453.916400000452995 ], [ 353366.29839999973774, 257453.883400000631809 ], [ 353366.581900000572205, 257453.849700000137091 ], [ 353366.865500003099442, 257453.81529999896884 ], [ 353367.148900002241135, 257453.780200000852346 ], [ 353367.432199999690056, 257453.74439999833703 ], [ 353367.715499997138977, 257453.707899998873472 ], [ 353367.998700000345707, 257453.670800000429153 ], [ 353368.281700000166893, 257453.63289999961853 ], [ 353368.564699999988079, 257453.594399999827147 ], [ 353368.847599998116493, 257453.55519999936223 ], [ 353369.130400002002716, 257453.5152000002563 ], [ 353369.413099996745586, 257453.474599998444319 ], [ 353369.695699997246265, 257453.433299999684095 ], [ 353369.978200003504753, 257453.391399998217821 ], [ 353370.260499998927116, 257453.348700001835823 ], [ 353370.54280000180006, 257453.305300001055002 ], [ 353370.825000002980232, 257453.261300001293421 ], [ 353371.107100002467632, 257453.216600000858307 ], [ 353371.388999998569489, 257453.171100001782179 ], [ 353371.670900002121925, 257453.125 ], [ 353371.952600002288818, 257453.078200001269579 ], [ 353372.234200000762939, 257453.030699998140335 ], [ 353372.515799999237061, 257452.982599999755621 ], [ 353372.797100000083447, 257452.933699999004602 ], [ 353373.078400000929832, 257452.884199999272823 ], [ 353373.359600000083447, 257452.833999998867512 ], [ 353373.640600003302097, 257452.783100001513958 ], [ 353373.921499997377396, 257452.731499999761581 ], [ 353374.202200002968311, 257452.679200001060963 ], [ 353374.482900001108646, 257452.626200001686811 ], [ 353374.763400003314018, 257452.572599999606609 ], [ 353375.043799996376038, 257452.518300000578165 ], [ 353375.324000000953674, 257452.463199999183416 ], [ 353375.60419999808073, 257452.407600000500679 ], [ 353375.884099997580051, 257452.351199999451637 ], [ 353376.163999997079372, 257452.294100001454353 ], [ 353376.44370000064373, 257452.236400000751019 ], [ 353376.723200000822544, 257452.177999999374151 ], [ 353377.002599999308586, 257452.118900001049042 ], [ 353377.281900003552437, 257452.059099998325109 ], [ 353377.560999996960163, 257451.998599998652935 ], [ 353377.840000003576279, 257451.9375 ], [ 353378.118900001049042, 257451.875599998980761 ], [ 353378.39750000089407, 257451.813099998980761 ], [ 353378.676100000739098, 257451.75 ], [ 353378.95440000295639, 257451.686099998652935 ], [ 353379.232600003480911, 257451.621599998325109 ], [ 353379.51070000231266, 257451.556400001049042 ], [ 353379.788599997758865, 257451.490499999374151 ], [ 353380.066299997270107, 257451.423900000751019 ], [ 353380.343900002539158, 257451.356600001454353 ], [ 353380.621299996972084, 257451.288699999451637 ], [ 353380.898500002920628, 257451.220100000500679 ], [ 353381.175599999725819, 257451.15089999884367 ], [ 353381.452500000596046, 257451.080899998545647 ], [ 353381.729299999773502, 257451.010299999266863 ], [ 353382.005800001323223, 257450.938999999314547 ], [ 353382.282200001180172, 257450.866999998688698 ], [ 353382.558399997651577, 257450.794399999082088 ], [ 353382.834399998188019, 257450.721099998801947 ], [ 353383.110299997031689, 257450.647100001573563 ], [ 353383.385999999940395, 257450.572399999946356 ], [ 353383.661499999463558, 257450.497099999338388 ], [ 353383.936800003051758, 257450.421100001782179 ], [ 353384.211900003254414, 257450.344399999827147 ], [ 353384.486800000071526, 257450.267099998891354 ], [ 353384.761600002646446, 257450.188999999314547 ], [ 353385.036100000143051, 257450.110399998724461 ], [ 353385.310500003397465, 257450.030999999493361 ], [ 353385.584600001573563, 257449.9510000012815 ], [ 353385.858599998056889, 257449.870299998670816 ], [ 353386.132399998605251, 257449.789000000804663 ], [ 353386.406000003218651, 257449.706900000572205 ], [ 353386.679300002753735, 257449.624200001358986 ], [ 353386.952500000596046, 257449.540899999439716 ], [ 353387.225500002503395, 257449.456900000572205 ], [ 353387.498199999332428, 257449.37220000103116 ], [ 353387.77080000191927, 257449.286800000816584 ], [ 353388.043099999427795, 257449.200800001621246 ], [ 353388.31530000269413, 257449.114199999719858 ], [ 353388.587200000882149, 257449.026799999177456 ], [ 353388.858900003135204, 257448.938799999654293 ], [ 353389.130400002002716, 257448.85020000115037 ], [ 353389.401699997484684, 257448.760800000280142 ], [ 353389.672700002789497, 257448.670800000429153 ], [ 353389.943599998950958, 257448.580200001597404 ], [ 353390.214199997484684, 257448.488899998366833 ], [ 353390.484600000083447, 257448.396899998188019 ], [ 353390.754799999296665, 257448.304299999028444 ], [ 353391.024700000882149, 257448.210999999195337 ], [ 353391.294399999082088, 257448.11710000038147 ], [ 353391.563900001347065, 257448.02250000089407 ], [ 353391.833200000226498, 257447.927299998700619 ], [ 353392.102200001478195, 257447.831300001591444 ], [ 353392.370999999344349, 257447.7347999997437 ], [ 353392.639600001275539, 257447.637600000947714 ], [ 353392.907899998128414, 257447.539700001478195 ], [ 353393.175899997353554, 257447.441199999302626 ], [ 353393.443800002336502, 257447.342000000178814 ], [ 353393.711400002241135, 257447.242199998348951 ], [ 353393.978699997067451, 257447.141699999570847 ], [ 353394.245800003409386, 257447.040600001811981 ], [ 353394.512699998915195, 257446.938799999654293 ], [ 353394.77929999679327, 257446.836300000548363 ], [ 353395.045699998736382, 257446.733300000429153 ], [ 353395.311800003051758, 257446.62950000166893 ], [ 353395.577600002288818, 257446.525199998170137 ], [ 353432.728100001811981, 257431.887299999594688 ], [ 353433.005500003695488, 257431.778200000524521 ], [ 353433.282999999821186, 257431.669300001114607 ], [ 353433.560699999332428, 257431.5608000010252 ], [ 353433.83839999884367, 257431.452599998563528 ], [ 353434.116300001740456, 257431.3445999994874 ], [ 353434.394299998879433, 257431.236999999731779 ], [ 353434.672399997711182, 257431.129599999636412 ], [ 353434.950599998235703, 257431.022599998861551 ], [ 353435.229000002145767, 257430.915800001472235 ], [ 353435.507399998605251, 257430.809300001710653 ], [ 353435.785999998450279, 257430.703200001269579 ], [ 353436.064699999988079, 257430.597300000488758 ], [ 353436.343400001525879, 257430.491799999028444 ], [ 353436.622299998998642, 257430.386500000953674 ], [ 353436.901399999856949, 257430.281500000506639 ], [ 353437.180500000715256, 257430.17680000141263 ], [ 353437.459700003266335, 257430.072500001639128 ], [ 353437.739100001752377, 257429.968400001525879 ], [ 353438.018500000238419, 257429.864599999040365 ], [ 353438.298100002110004, 257429.761100001633167 ], [ 353438.577799998223782, 257429.657999999821186 ], [ 353438.857600003480911, 257429.555100001394749 ], [ 353439.137500002980232, 257429.452500000596046 ], [ 353439.417499996721745, 257429.35020000115037 ], [ 353439.697599999606609, 257429.248199999332428 ], [ 353439.977899998426437, 257429.146600000560284 ], [ 353440.258199997246265, 257429.045200001448393 ], [ 353440.538599997758865, 257428.944099999964237 ], [ 353440.819200001657009, 257428.843299999833107 ], [ 353441.099899999797344, 257428.742800001055002 ], [ 353441.380599997937679, 257428.642700001597404 ], [ 353441.661499999463558, 257428.54280000180006 ], [ 353441.942500002682209, 257428.443199999630451 ], [ 353442.223600000143051, 257428.343899998813868 ], [ 353442.504799999296665, 257428.244899999350309 ], [ 353442.786100000143051, 257428.146299999207258 ], [ 353443.067500002682209, 257428.047899998724461 ], [ 353443.348999999463558, 257427.949799999594688 ], [ 353443.630599997937679, 257427.852000001817942 ], [ 353443.912299998104572, 257427.754599999636412 ], [ 353444.194200001657009, 257427.657400000840425 ], [ 353444.476099997758865, 257427.560499999672174 ], [ 353444.758100003004074, 257427.463899999856949 ], [ 353445.040200002491474, 257427.36769999936223 ], [ 353445.322499997913837, 257427.271699998527765 ], [ 353445.604800000786781, 257427.175999999046326 ], [ 353445.887299999594688, 257427.080699998885393 ], [ 353446.169799998402596, 257426.985599998384714 ], [ 353446.452399998903275, 257426.890900000929832 ], [ 353446.735200002789497, 257426.796399999409914 ], [ 353447.01799999922514, 257426.702199999243021 ], [ 353447.300999999046326, 257426.608399998396635 ], [ 353447.583999998867512, 257426.514800000935793 ], [ 353447.867200002074242, 257426.421599999070168 ], [ 353448.150399997830391, 257426.328699998557568 ], [ 353448.433799996972084, 257426.236000001430511 ], [ 353448.717200003564358, 257426.143699999898672 ], [ 353449.000799998641014, 257426.051600001752377 ], [ 353449.284400001168251, 257425.959899999201298 ], [ 353449.568099997937679, 257425.868500001728535 ], [ 353449.851999998092651, 257425.777399998158216 ], [ 353450.135899998247623, 257425.686500001698732 ], [ 353450.419900000095367, 257425.596000000834465 ], [ 353450.704099997878075, 257425.505800001323223 ], [ 353450.988300003111362, 257425.415899999439716 ], [ 353451.272600002586842, 257425.326299998909235 ], [ 353451.556999996304512, 257425.236999999731779 ], [ 353451.841499999165535, 257425.147999998182058 ], [ 353452.12610000371933, 257425.059300001710653 ], [ 353452.410800002515316, 257424.970899999141693 ], [ 353452.695600003004074, 257424.882800001651049 ], [ 353452.980499997735023, 257424.795000001788139 ], [ 353453.265500001609325, 257424.707600001245737 ], [ 353453.550599999725819, 257424.620400000363588 ], [ 353453.835699997842312, 257424.533500000834465 ], [ 353454.120999999344349, 257424.447000000625849 ], [ 353454.406300000846386, 257424.360700000077486 ], [ 353454.691799998283386, 257424.27479999884963 ], [ 353454.977300003170967, 257424.189100001007318 ], [ 353455.262900002300739, 257424.103799998760223 ], [ 353455.548699997365475, 257424.018699999898672 ], [ 353455.834499999880791, 257423.934000000357628 ], [ 353456.120399996638298, 257423.849599998444319 ], [ 353456.406300000846386, 257423.765500001609325 ], [ 353456.692400000989437, 257423.681699998676777 ], [ 353456.97860000282526, 257423.598099999129772 ], [ 353457.264899998903275, 257423.514899998903275 ], [ 353457.55120000243187, 257423.432100001722574 ], [ 353457.837600000202656, 257423.349500000476837 ], [ 353458.124200001358986, 257423.267200000584126 ], [ 353458.410800002515316, 257423.185199998319149 ], [ 353458.697499997913837, 257423.103500001132488 ], [ 353458.984200000762939, 257423.022199999541044 ], [ 353459.271099999547005, 257422.941100001335144 ], [ 353459.558100000023842, 257422.860399998724461 ], [ 353459.845100000500679, 257422.779899999499321 ], [ 353460.132200002670288, 257422.699799999594688 ], [ 353460.41950000077486, 257422.620000001043081 ], [ 353460.706799998879433, 257422.540500000119209 ], [ 353460.994099996984005, 257422.461199998855591 ], [ 353461.281599998474121, 257422.38230000063777 ], [ 353461.569200001657009, 257422.303700000047684 ], [ 353461.856799997389317, 257422.225400000810623 ], [ 353462.144500002264977, 257422.14750000089407 ], [ 353462.432300001382828, 257422.06980000063777 ], [ 353462.720200002193451, 257421.992400001734495 ], [ 353463.008199997246265, 257421.915399998426437 ], [ 353463.29619999974966, 257421.838599998503923 ], [ 353463.584399998188019, 257421.762200001627207 ], [ 353463.872599996626377, 257421.686000000685453 ], [ 353464.160899996757507, 257421.610199999064207 ], [ 353464.449299998581409, 257421.534699998795986 ], [ 353464.737700000405312, 257421.459499999880791 ], [ 353465.026199996471405, 257421.38459999859333 ], [ 353465.314900003373623, 257421.309999998658895 ], [ 353465.60360000282526, 257421.235700000077486 ], [ 353465.892300002276897, 257421.161699999123812 ], [ 353466.181199997663498, 257421.087999999523163 ], [ 353466.470100000500679, 257421.014699999243021 ], [ 353466.759099997580051, 257420.941599998623133 ], [ 353467.048199996352196, 257420.868900001049042 ], [ 353467.337399996817112, 257420.796500001102686 ], [ 353467.626599997282028, 257420.724300000816584 ], [ 353467.915899999439716, 257420.652499999850988 ], [ 353468.205300003290176, 257420.581000000238419 ], [ 353468.494800001382828, 257420.509799998253584 ], [ 353468.784400001168251, 257420.438999999314547 ], [ 353469.074000000953674, 257420.368400000035763 ], [ 353469.36370000243187, 257420.298099998384714 ], [ 353469.653499998152256, 257420.228199999779463 ], [ 353469.943300001323223, 257420.158500000834465 ], [ 353470.233199998736382, 257420.089200001209974 ], [ 353470.523199997842312, 257420.020100001245737 ], [ 353470.813299998641014, 257419.951400000602007 ], [ 353471.103500001132488, 257419.883000001311302 ], [ 353471.393700003623962, 257419.814899999648333 ], [ 353471.684000000357628, 257419.74720000103116 ], [ 353471.974299997091293, 257419.679699998348951 ], [ 353472.264799997210503, 257419.612500000745058 ], [ 353472.555299997329712, 257419.545699998736382 ], [ 353472.845799997448921, 257419.479100000113249 ], [ 353473.136500000953674, 257419.412900000810623 ], [ 353473.427199997007847, 257419.346999999135733 ], [ 353473.718000002205372, 257419.281399998813868 ], [ 353474.008799999952316, 257419.216099999845028 ], [ 353474.299800001084805, 257419.151099998503923 ], [ 353474.590800002217293, 257419.086399998515844 ], [ 353474.881800003349781, 257419.021999999880791 ], [ 353475.173000000417233, 257418.958000000566244 ], [ 353475.464199997484684, 257418.894200000911951 ], [ 353475.755400002002716, 257418.830800000578165 ], [ 353476.029600001871586, 257418.770100001245737 ], [ 353476.303300000727177, 257418.706999998539686 ], [ 353476.576499998569489, 257418.641800001263618 ], [ 353476.84910000115633, 257418.574200000613928 ], [ 353477.121200002729893, 257418.50450000166893 ], [ 353477.392599999904633, 257418.432399999350309 ], [ 353477.663500003516674, 257418.358199998736382 ], [ 353477.933700002729893, 257418.281700000166893 ], [ 353478.203299999237061, 257418.203000001609325 ], [ 353478.472300000488758, 257418.122000001370907 ], [ 353478.740500003099442, 257418.038800001144409 ], [ 353479.008100003004074, 257417.953400000929832 ], [ 353479.274899996817112, 257417.865800000727177 ], [ 353479.54110000282526, 257417.776099998503923 ], [ 353479.806400001049042, 257417.684099998325109 ], [ 353480.071000002324581, 257417.589899998158216 ], [ 353480.334799997508526, 257417.493500001728535 ], [ 353480.597900003194809, 257417.394999999552965 ], [ 353480.859999999403954, 257417.294300001114607 ], [ 353481.121399998664856, 257417.191399998962879 ], [ 353481.381899997591972, 257417.086399998515844 ], [ 353481.641500003635883, 257416.979200001806021 ], [ 353481.900200001895428, 257416.869899999350309 ], [ 353482.157999999821186, 257416.758400000631809 ], [ 353482.414899997413158, 257416.644799999892712 ], [ 353482.670800000429153, 257416.529100000858307 ], [ 353482.925800003111362, 257416.411299999803305 ], [ 353483.179799996316433, 257416.291400000452995 ], [ 353483.432700000703335, 257416.169399999082088 ], [ 353483.68469999730587, 257416.045299999415874 ], [ 353483.935699999332428, 257415.919199999421835 ], [ 353484.185500003397465, 257415.790899999439716 ], [ 353484.434399999678135, 257415.660599999129772 ], [ 353484.682099997997284, 257415.528299998492002 ], [ 353484.928700000047684, 257415.393899999558926 ], [ 353485.174199998378754, 257415.257500000298023 ], [ 353485.418600000441074, 257415.118999999016523 ], [ 353485.661799997091293, 257414.978500001132488 ], [ 353485.903899997472763, 257414.836100000888109 ], [ 353486.144799999892712, 257414.691599998623133 ], [ 353486.384400002658367, 257414.545200001448393 ], [ 353486.622900001704693, 257414.396800000220537 ], [ 353486.860100001096725, 257414.246399998664856 ], [ 353487.096100002527237, 257414.094000000506639 ], [ 353487.330799996852875, 257413.939699999988079 ], [ 353487.5641999989748, 257413.783500000834465 ], [ 353487.796300001442432, 257413.625399999320507 ], [ 353488.027099996805191, 257413.465300001204014 ], [ 353488.256599999964237, 257413.303399998694658 ], [ 353488.484700001776218, 257413.139499999582767 ], [ 353488.711499996483326, 257412.973799999803305 ], [ 353488.936899997293949, 257412.806200001388788 ], [ 353489.160899996757507, 257412.636799998581409 ], [ 353489.383500002324581, 257412.465500000864267 ], [ 353489.604599997401237, 257412.292300000786781 ], [ 353489.824400000274181, 257412.117400001734495 ], [ 353490.042700000107288, 257411.940600000321865 ], [ 353490.259499996900558, 257411.762099999934435 ], [ 353490.474799998104572, 257411.581700000911951 ], [ 353490.68860000371933, 257411.399599999189377 ], [ 353490.901000000536442, 257411.215700000524521 ], [ 353491.111800000071526, 257411.030099999159575 ], [ 353491.321000002324581, 257410.842799998819828 ], [ 353491.5287000015378, 257410.6537000015378 ], [ 353491.73480000346899, 257410.462900001555681 ], [ 353491.939400002360344, 257410.270399998873472 ], [ 353492.142300002276897, 257410.076299998909235 ], [ 353492.343699999153614, 257409.880399998277426 ], [ 353492.543399997055531, 257409.682900000363588 ], [ 353492.741499997675419, 257409.483800001442432 ], [ 353492.937899999320507, 257409.282999999821186 ], [ 353493.132600001990795, 257409.080600000917912 ], [ 353493.325699999928474, 257408.8766999989748 ], [ 353493.517099998891354, 257408.671100001782179 ], [ 353493.706799998879433, 257408.463899999856949 ], [ 353493.894799999892712, 257408.255199998617172 ], [ 353494.081000000238419, 257408.045000001788139 ], [ 353494.265500001609325, 257407.833200000226498 ], [ 353494.44820000231266, 257407.619899999350309 ], [ 353494.629199996590614, 257407.405099999159575 ], [ 353494.808399997651577, 257407.188799999654293 ], [ 353494.985799998044968, 257406.971099998801947 ], [ 353495.161300003528595, 257406.751800000667572 ], [ 353495.335100002586842, 257406.531199999153614 ], [ 353495.507100000977516, 257406.309099998325109 ], [ 353495.677199997007847, 257406.08559999987483 ], [ 353495.845399998128414, 257405.860700000077486 ], [ 353496.011799998581409, 257405.634399998933077 ], [ 353496.176299996674061, 257405.406800001859665 ], [ 353496.338899999856949, 257405.177799999713898 ], [ 353496.499600000679493, 257404.947399999946356 ], [ 353496.658500000834465, 257404.715799998492002 ], [ 353496.815399996936321, 257404.482799999415874 ], [ 353496.970299996435642, 257404.248599998652935 ], [ 353497.1233000010252, 257404.013099998235703 ], [ 353504.97580000013113, 257391.817400000989437 ], [ 353505.134900003671646, 257391.571899998933077 ], [ 353505.295299999415874, 257391.327300000935793 ], [ 353505.457099996507168, 257391.083599999547005 ], [ 353505.620300002396107, 257390.840799998492002 ], [ 353505.78490000218153, 257390.598900001496077 ], [ 353505.950800001621246, 257390.357900001108646 ], [ 353506.118000000715256, 257390.117899999022484 ], [ 353506.28660000115633, 257389.878899998962879 ], [ 353506.456600002944469, 257389.640799999237061 ], [ 353506.627899996936321, 257389.403599999845028 ], [ 353506.800499998033047, 257389.167399998754263 ], [ 353506.974399998784065, 257388.932199999690056 ], [ 353507.149700000882149, 257388.697999998927116 ], [ 353507.326300002634525, 257388.464699998497963 ], [ 353507.504199996590614, 257388.232500001788139 ], [ 353507.683399997651577, 257388.001299999654293 ], [ 353507.863899998366833, 257387.771000001579523 ], [ 353508.04559999704361, 257387.541799999773502 ], [ 353508.228699997067451, 257387.3136 ], [ 353508.413099996745586, 257387.086500000208616 ], [ 353508.598700001835823, 257386.860399998724461 ], [ 353508.785599999129772, 257386.635299999266863 ], [ 353508.973800003528595, 257386.411299999803305 ], [ 353509.163199998438358, 257386.188400000333786 ], [ 353509.353900000452995, 257385.966499999165535 ], [ 353509.545800000429153, 257385.745700001716614 ], [ 353509.738899998366833, 257385.526000000536442 ], [ 353509.933300003409386, 257385.307399999350309 ], [ 353510.128899998962879, 257385.089899998158216 ], [ 353510.325800001621246, 257384.873500000685453 ], [ 353510.523800000548363, 257384.658100001513958 ], [ 353510.723099999129772, 257384.443999998271465 ], [ 353510.923600003123283, 257384.230900000780821 ], [ 353511.125200003385544, 257384.018899999558926 ], [ 353511.328100003302097, 257383.808200001716614 ], [ 353511.5320999994874, 257383.598499998450279 ], [ 353511.737300001084805, 257383.390000000596046 ], [ 353511.94370000064373, 257383.182700000703335 ], [ 353512.151199996471405, 257382.976500000804663 ], [ 353512.359899997711182, 257382.771499998867512 ], [ 353512.569799996912479, 257382.567600000649691 ], [ 353512.780799999833107, 257382.364999998360872 ], [ 353512.992899999022484, 257382.163499999791384 ], [ 353513.206200003623962, 257381.963300000876188 ], [ 353513.42059999704361, 257381.764199998229742 ], [ 353513.636100001633167, 257381.566399998962879 ], [ 353513.852700002491474, 257381.369699999690056 ], [ 353514.07039999961853, 257381.174300000071526 ], [ 353514.289200000464916, 257380.980200000107288 ], [ 353514.509099997580051, 257380.787200000137091 ], [ 353514.730099998414516, 257380.595499999821186 ], [ 353514.952100001275539, 257380.405000001192093 ], [ 353515.175300002098083, 257380.215799998492002 ], [ 353515.399400003254414, 257380.027899999171495 ], [ 353515.624700002372265, 257379.8412000015378 ], [ 353515.851000003516674, 257379.655799999833107 ], [ 353516.078299999237061, 257379.471700001507998 ], [ 353516.306699998676777, 257379.288800001144409 ], [ 353516.535999998450279, 257379.107200000435114 ], [ 353516.766500003635883, 257378.927000001072884 ], [ 353516.997900001704693, 257378.747999999672174 ], [ 353517.23030000180006, 257378.570300001651049 ], [ 353517.463699996471405, 257378.394000001251698 ], [ 353517.698100000619888, 257378.218899998813868 ], [ 353517.933499999344349, 257378.045200001448393 ], [ 353518.169799998402596, 257377.872800000011921 ], [ 353518.407200001180172, 257377.701699998229742 ], [ 353518.645400002598763, 257377.532000001519918 ], [ 353518.884700000286102, 257377.363600000739098 ], [ 353519.124899998307228, 257377.196600001305342 ], [ 353519.36599999666214, 257377.030900001525879 ], [ 353519.608000002801418, 257376.866599999368191 ], [ 353519.851000003516674, 257376.703699998557568 ], [ 353520.094800002872944, 257376.542100001126528 ], [ 353520.339599996805191, 257376.381900001317263 ], [ 353520.585299998521805, 257376.223099999129772 ], [ 353520.831900000572205, 257376.065600000321865 ], [ 353521.079300001263618, 257375.909600000828505 ], [ 353521.327600002288818, 257375.754900000989437 ], [ 353521.576800003647804, 257375.601599998772144 ], [ 353521.826899997889996, 257375.449799999594688 ], [ 353522.077799998223782, 257375.299300000071526 ], [ 353522.329499997198582, 257375.150299999862909 ], [ 353522.582099996507168, 257375.002700001001358 ], [ 353522.835500001907349, 257374.856499999761581 ], [ 353523.089699998497963, 257374.711800001561642 ], [ 353523.344700001180172, 257374.568399999290705 ], [ 353523.600599996745586, 257374.426600001752377 ], [ 353523.857199996709824, 257374.286100000143051 ], [ 353524.114600002765656, 257374.147100001573563 ], [ 353524.372800000011921, 257374.00959999859333 ], [ 353524.631800003349781, 257373.873500000685453 ], [ 353524.891500003635883, 257373.738800000399351 ], [ 353525.152000002563, 257373.605700001120567 ], [ 353525.413199998438358, 257373.473999999463558 ], [ 353525.67509999871254, 257373.343699999153614 ], [ 353525.937799997627735, 257373.214999999850988 ], [ 353526.201200000941753, 257373.087699998170137 ], [ 353526.465300001204014, 257372.961899999529123 ], [ 353526.730200000107288, 257372.837600000202656 ], [ 353526.995700001716614, 257372.714800000190735 ], [ 353527.261900000274181, 257372.593499999493361 ], [ 353527.528800003230572, 257372.473700001835823 ], [ 353527.796300001442432, 257372.355399999767542 ], [ 353528.064499996602535, 257372.238600000739098 ], [ 353528.333400003612041, 257372.1233000010252 ], [ 353528.602899998426437, 257372.009500000625849 ], [ 353528.873000003397465, 257371.897300001233816 ], [ 353529.143799997866154, 257371.786499999463558 ], [ 353529.415200002491474, 257371.677299998700619 ], [ 353529.687200002372265, 257371.569600000977516 ], [ 353529.959799997508526, 257371.463500000536442 ], [ 353530.233000002801418, 257371.358899999409914 ], [ 353530.506800003349781, 257371.255800001323223 ], [ 353530.781099997460842, 257371.15430000051856 ], [ 353531.056000001728535, 257371.054299999028444 ], [ 353531.331500001251698, 257370.955899998545647 ], [ 353531.607500001788139, 257370.859000001102686 ], [ 353531.884099997580051, 257370.763700000941753 ], [ 353632.981100000441074, 257336.234700001776218 ], [ 353591.597099997103214, 257276.292300000786781 ], [ 353586.263599999248981, 257276.511700000613928 ], [ 353583.382500000298023, 257276.190999999642372 ], [ 353581.621500000357628, 257276.030900001525879 ], [ 353578.739900000393391, 257276.509799998253584 ], [ 353567.692800000309944, 257279.866200000047684 ], [ 353560.8074000030756, 257283.223200000822544 ], [ 353558.085400000214577, 257284.342199999839067 ], [ 353555.043600000441074, 257284.981199998408556 ], [ 353553.122400000691414, 257285.300700001418591 ], [ 353552.001800000667572, 257285.140399999916553 ], [ 353548.47919999808073, 257286.739199999719858 ], [ 353535.987999998033047, 257295.693300001323223 ], [ 353527.211000002920628, 257301.52760000154376 ], [ 353517.282600000500679, 257307.1233000010252 ], [ 353510.397200003266335, 257310.960299998521805 ], [ 353506.714199997484684, 257312.559099998325109 ], [ 353505.928000003099442, 257313.317099999636412 ], [ 353505.706500001251698, 257313.759300000965595 ], [ 353505.356700003147125, 257315.653299998492002 ], [ 353504.802500002086163, 257316.869699999690056 ], [ 353502.919600002467632, 257319.523400001227856 ], [ 353498.269299998879433, 257322.508299998939037 ], [ 353488.194600000977516, 257327.03999999910593 ], [ 353479.781800001859665, 257329.69200000166893 ], [ 353476.017899997532368, 257330.907400000840425 ], [ 353472.253700003027916, 257332.897100001573563 ], [ 353468.600199997425079, 257334.554999999701977 ], [ 353465.501000002026558, 257334.886100001633167 ], [ 353457.310900002717972, 257334.441500000655651 ], [ 353448.346699997782707, 257333.001600001007318 ], [ 353442.370800003409386, 257331.673099998384714 ], [ 353438.055699996650219, 257329.570700000971556 ], [ 353433.297899998724461, 257326.804699998348951 ], [ 353430.642800003290176, 257325.145199999213219 ], [ 353429.093500003218651, 257324.812899999320507 ], [ 353427.433499999344349, 257324.5912000015378 ], [ 353423.781199999153614, 257324.258699998259544 ], [ 353419.796800002455711, 257324.257699999958277 ], [ 353413.284299999475479, 257324.14750000089407 ], [ 353410.406599998474121, 257324.257399998605251 ], [ 353409.409999996423721, 257324.699599999934435 ], [ 353408.192199997603893, 257325.473400000482798 ], [ 353406.86370000243187, 257325.915300000458956 ], [ 353404.096900001168251, 257326.025199998170137 ], [ 353400.887599997222424, 257324.918400000780821 ], [ 353395.575499996542931, 257324.142900001257658 ], [ 353390.816600002348423, 257323.699499998241663 ], [ 353383.400799997150898, 257324.029100000858307 ], [ 353378.0878000035882, 257324.691500000655651 ], [ 353375.209899999201298, 257325.022300001233816 ], [ 353372.443400003015995, 257324.5793999992311 ], [ 353370.008900001645088, 257323.91499999910593 ], [ 353367.020499996840954, 257324.02479999884963 ], [ 353364.252499997615814, 257325.462000001221895 ], [ 353358.939300000667572, 257326.456000000238419 ], [ 353356.664499998092651, 257326.90430000051856 ], [ 353343.04730000346899, 257332.872499998658895 ], [ 353324.00450000166893, 257343.041999999433756 ], [ 353318.469099998474121, 257345.584100000560284 ], [ 353310.608499996364117, 257349.120900001376867 ], [ 353310.102399997413158, 257350.392499998211861 ], [ 353309.216300003230572, 257351.608600001782179 ], [ 353307.444799996912479, 257352.935400001704693 ], [ 353305.45160000026226, 257354.261799998581409 ], [ 353303.459100000560284, 257355.035700000822544 ], [ 353302.241300001740456, 257355.366900000721216 ], [ 353300.69200000166893, 257355.145599998533726 ], [ 353297.704000003635883, 257354.480999998748302 ], [ 353295.047799997031689, 257354.48030000180006 ], [ 353291.726899996399879, 257355.143199998885393 ], [ 353288.295100003480911, 257356.579799998551607 ], [ 353282.870399996638298, 257359.011300001293421 ], [ 353279.21679999679327, 257360.779800001531839 ], [ 353275.895900003612041, 257361.442699998617172 ], [ 353272.575499996542931, 257361.662799999117851 ], [ 353271.800700001418591, 257361.662599999457598 ], [ 353271.026299998164177, 257361.109499998390675 ], [ 353270.362300001084805, 257360.998700000345707 ], [ 353269.476499997079372, 257361.661899998784065 ], [ 353268.369000002741814, 257362.546399999409914 ], [ 353265.49099999666214, 257363.540899999439716 ], [ 353261.838100001215935, 257364.203400000929832 ], [ 353259.181000001728535, 257365.198100000619888 ], [ 353256.745700001716614, 257365.971500001847744 ], [ 353253.535599999129772, 257366.745099999010563 ], [ 353247.77929999679327, 257368.070500001311302 ], [ 353243.462499998509884, 257368.953999999910593 ], [ 353240.47410000115633, 257368.953200001269579 ], [ 353236.711300000548363, 257368.510000001639128 ], [ 353230.623800002038479, 257368.618700001388788 ], [ 353221.657899998128414, 257369.943599998950958 ], [ 353216.375399999320507, 257370.522100001573563 ], [ 353211.837200000882149, 257371.184399999678135 ], [ 353208.184500001370907, 257372.06810000166297 ], [ 353204.642499998211861, 257372.177799999713898 ], [ 353198.887100003659725, 257372.176199998706579 ], [ 353194.570900000631809, 257371.95380000025034 ], [ 353191.250900000333786, 257371.068199999630451 ], [ 353189.812299996614456, 257370.625300001353025 ], [ 353189.148599997162819, 257369.850999999791384 ], [ 353188.485200002789497, 257369.298000000417233 ], [ 353187.931699998676777, 257369.297800000756979 ], [ 353187.267399996519089, 257369.629200000315905 ], [ 353186.934900000691414, 257370.514199998229742 ], [ 353186.38120000064373, 257370.956199999898672 ], [ 353184.278300002217293, 257370.844999998807907 ], [ 353175.313299998641014, 257370.621399998664856 ], [ 353169.447400003671646, 257370.288199998438358 ], [ 353162.032600000500679, 257369.512099999934435 ], [ 353156.499399997293949, 257367.851500000804663 ], [ 353151.325599998235703, 257367.051899999380112 ], [ 353145.127999998629093, 257366.386700000613928 ], [ 353137.270199999213219, 257365.389199998229742 ], [ 353132.179099999368191, 257365.498199999332428 ], [ 353126.424099996685982, 257364.722500000149012 ], [ 353120.116300001740456, 257363.28319999948144 ], [ 353114.693800002336502, 257362.065099999308586 ], [ 353110.377199999988079, 257362.063900001347065 ], [ 353108.163999997079372, 257361.289200000464916 ], [ 353105.619499996304512, 257359.629700001329184 ], [ 353102.964000001549721, 257358.080800000578165 ], [ 353100.419299997389317, 257356.752900000661612 ], [ 353098.538199998438358, 257355.756999999284744 ], [ 353094.776500001549721, 257353.875900000333786 ], [ 353091.346600003540516, 257351.773899998515844 ], [ 353089.134999997913837, 257348.455699998885393 ], [ 353088.313699997961521, 257347.267799999564886 ], [ 353087.318499997258186, 257345.940600000321865 ], [ 353086.433799996972084, 257344.945000000298023 ], [ 353084.884900003671646, 257343.838599998503923 ], [ 353083.889200001955032, 257343.396099999547005 ], [ 353082.782399997115135, 257343.174499999731779 ], [ 353082.007700003683567, 257342.953099999576807 ], [ 353080.901600003242493, 257342.178700000047684 ], [ 353079.352700002491474, 257341.182900000363588 ], [ 353077.140100002288818, 257339.412799999117851 ], [ 353074.817199997603893, 257337.200500000268221 ], [ 353071.941899999976158, 257333.328999999910593 ], [ 353068.734700001776218, 257329.236000001430511 ], [ 353066.7449000030756, 257325.143800001591444 ], [ 353065.751900002360344, 257320.166999999433756 ], [ 353065.644599996507168, 257314.63740000128746 ], [ 353066.533299997448921, 257309.329300001263618 ], [ 353068.307300001382828, 257304.02140000090003 ], [ 353069.164200000464916, 257302.614000000059605 ], [ 353070.160599999129772, 257302.061099998652935 ], [ 353070.935599997639656, 257301.619100000709295 ], [ 353071.489600002765656, 257300.845199998468161 ], [ 353071.932700000703335, 257299.850000001490116 ], [ 353071.933399997651577, 257298.633299998939037 ], [ 353071.380500003695488, 257297.748500000685453 ], [ 353070.82769999653101, 257297.195500001311302 ], [ 353070.385200001299381, 257296.642200000584126 ], [ 353070.385600000619888, 257295.978700000792742 ], [ 353071.049800001084805, 257295.757699999958277 ], [ 353071.492899999022484, 257295.426199998706579 ], [ 353072.157600000500679, 257294.431000001728535 ], [ 353072.268899999558926, 257293.325100000947714 ], [ 353072.048100002110004, 257292.108399998396635 ], [ 353071.827500000596046, 257290.892099998891354 ], [ 353071.717600002884865, 257289.675400000065565 ], [ 353071.275200001895428, 257289.011799998581409 ], [ 353069.615299999713898, 257288.679499998688698 ], [ 353067.733800001442432, 257288.789599999785423 ], [ 353066.516000002622604, 257289.121100001037121 ], [ 353065.851499997079372, 257289.784400001168251 ], [ 353065.297700002789497, 257290.779599998146296 ], [ 353064.410999998450279, 257292.438200000673532 ], [ 353063.635899998247623, 257292.990800000727177 ], [ 353061.200900003314018, 257293.322000000625849 ], [ 353060.315700002014637, 257292.989900000393391 ], [ 353059.983900003135204, 257292.326299998909235 ], [ 353060.317199997603893, 257290.557000000029802 ], [ 353060.428099997341633, 257290.114500001072884 ], [ 353060.761399999260902, 257288.345199998468161 ], [ 353060.983400002121925, 257287.018300000578165 ], [ 353061.316200003027916, 257285.580800000578165 ], [ 353062.203000001609325, 257283.811299998313189 ], [ 353062.978399999439716, 257282.705800000578165 ], [ 353065.082599997520447, 257280.273200001567602 ], [ 353066.41160000115633, 257278.946600001305342 ], [ 353067.408299997448921, 257277.840900000184774 ], [ 353068.294699996709824, 257276.182399999350309 ], [ 353068.517099998891354, 257274.744899999350309 ], [ 353068.628799997270107, 257273.086100000888109 ], [ 353068.186599999666214, 257271.980000000447035 ], [ 353067.282300002872944, 257271.045000001788139 ], [ 353066.397200003266335, 257270.491900000721216 ], [ 353065.179999999701977, 257269.938799999654293 ], [ 353063.409400001168251, 257269.6064000017941 ], [ 353061.749700002372265, 257268.942499998956919 ], [ 353059.75789999961853, 257268.057199999690056 ], [ 353057.32379999756813, 257266.729299999773502 ], [ 353054.889799997210503, 257265.401700001209974 ], [ 353053.340999998152256, 257264.184599999338388 ], [ 353052.013300001621246, 257263.410199999809265 ], [ 353050.796499997377396, 257262.082899998873472 ], [ 353049.248199999332428, 257260.09180000051856 ], [ 353048.031999997794628, 257258.322000000625849 ], [ 353047.036700002849102, 257256.662900000810623 ], [ 353046.041599996387959, 257255.114100001752377 ], [ 353044.935099996626377, 257254.450300000607967 ], [ 353042.832900002598763, 257253.675700001418591 ], [ 353041.61599999666214, 257252.569299999624491 ], [ 353040.067299999296665, 257251.241999998688698 ], [ 353039.292999997735023, 257250.578000001609325 ], [ 353037.964800000190735, 257250.467300001531839 ], [ 353036.747500002384186, 257250.577300000935793 ], [ 353036.304399996995926, 257250.909000001847744 ], [ 353036.193000003695488, 257252.236299999058247 ], [ 353036.856299996376038, 257253.563400000333786 ], [ 353037.409500002861023, 257254.006000000983477 ], [ 353038.294799998402596, 257254.116599999368191 ], [ 353039.179799996316433, 257254.670000001788139 ], [ 353039.511200003325939, 257255.554800000041723 ], [ 353039.399999998509884, 257256.439500000327826 ], [ 353038.514200001955032, 257257.102699998766184 ], [ 353036.63289999961853, 257256.991599999368191 ], [ 353034.308799996972084, 257256.327500000596046 ], [ 353031.321000002324581, 257255.884100001305342 ], [ 353029.329099997878075, 257255.220100000500679 ], [ 353028.554700002074242, 257254.556400001049042 ], [ 353027.891400001943111, 257253.228999998420477 ], [ 353025.9003000035882, 257251.238000001758337 ], [ 353024.01969999819994, 257250.020899999886751 ], [ 353021.0320999994874, 257248.80350000038743 ], [ 353019.814499996602535, 257248.692800000309944 ], [ 353018.486599996685982, 257248.692400000989437 ], [ 353017.489799998700619, 257249.466299999505281 ], [ 353017.600000001490116, 257250.793200001120567 ], [ 353018.041500002145767, 257252.341499999165535 ], [ 353018.262500002980232, 257252.784099999815226 ], [ 353019.148000001907349, 257253.115899998694658 ], [ 353020.032899998128414, 257253.890599999576807 ], [ 353020.69650000333786, 257254.775499999523163 ], [ 353020.917300000786781, 257255.549600001424551 ], [ 353021.02759999781847, 257256.10249999910593 ], [ 353020.805699996650219, 257257.097800001502037 ], [ 353020.362499997019768, 257257.761100001633167 ], [ 353019.477099999785423, 257257.760899998247623 ], [ 353018.702899999916553, 257256.875999998301268 ], [ 353017.818400003015995, 257255.327500000596046 ], [ 353017.044299997389317, 257254.331999998539686 ], [ 353016.159299999475479, 257253.778900001198053 ], [ 353012.838899999856949, 257253.446100000292063 ], [ 353010.625, 257253.888000000268221 ], [ 353010.292599998414516, 257254.772599998861551 ], [ 353010.734600000083447, 257255.657400000840425 ], [ 353011.066299997270107, 257256.542199999094009 ], [ 353010.844400003552437, 257257.537500001490116 ], [ 353009.626400001347065, 257258.089999999850988 ], [ 353008.298199996352196, 257258.089699998497963 ], [ 353006.19539999961853, 257258.310300000011921 ], [ 353005.199100002646446, 257258.310100000351667 ], [ 353003.539300002157688, 257257.86710000038147 ], [ 353001.54730000346899, 257257.203099999576807 ], [ 353000.772200003266335, 257257.755699999630451 ], [ 353000.550399996340275, 257258.750999998301268 ], [ 353000.439000003039837, 257259.856899999082088 ], [ 353000.438500002026558, 257260.741599999368191 ], [ 353000.105999998748302, 257261.183800000697374 ], [ 352999.663599997758865, 257261.073300000280142 ], [ 352998.335900001227856, 257260.188200000673532 ], [ 352997.450400002300739, 257260.408900000154972 ], [ 352996.343400001525879, 257260.96169999986887 ], [ 352995.346699997782707, 257261.514299999922514 ], [ 352993.243400000035763, 257262.619699999690056 ], [ 352992.689499996602535, 257263.282999999821186 ], [ 352992.578199997544289, 257264.388999998569489 ], [ 352992.798799999058247, 257265.384399998933077 ], [ 352993.241099998354912, 257266.269200000911951 ], [ 352993.904500000178814, 257266.932900000363588 ], [ 352995.010999999940395, 257267.707299999892712 ], [ 352995.785300001502037, 257268.481600001454353 ], [ 352996.449299998581409, 257268.592399999499321 ], [ 352997.445100001990795, 257268.924600001424551 ], [ 352998.109300002455711, 257268.814100001007318 ], [ 352998.773900002241135, 257268.040199998766184 ], [ 352999.549300000071526, 257266.934500001370907 ], [ 353000.101999998092651, 257267.708700001239777 ], [ 353000.54450000077486, 257268.261999998241663 ], [ 353001.20830000191927, 257268.815000001341105 ], [ 353001.982699997723103, 257269.368000000715256 ], [ 353002.535800002515316, 257269.921300001442432 ], [ 353003.199500001966953, 257270.58500000089407 ], [ 353003.752700001001358, 257270.695799998939037 ], [ 353004.305900000035763, 257271.027499999850988 ], [ 353004.305500000715256, 257271.691300000995398 ], [ 353003.751599997282028, 257272.354600001126528 ], [ 353003.198499999940395, 257272.354400001466274 ], [ 353002.42400000244379, 257271.912000000476837 ], [ 353001.980899997055531, 257272.243500001728535 ], [ 353001.205899998545647, 257272.6858000010252 ], [ 353000.652500003576279, 257272.574999999254942 ], [ 352999.767499998211861, 257272.021600000560284 ], [ 352998.993100002408028, 257271.357900001108646 ], [ 352998.66160000115633, 257270.804999999701977 ], [ 352997.887299999594688, 257270.030699998140335 ], [ 352997.112800002098083, 257269.587900001555681 ], [ 352995.120800003409386, 257269.145199999213219 ], [ 352994.345899999141693, 257269.255300000309944 ], [ 352992.353500001132488, 257269.475999999791384 ], [ 352991.468199998140335, 257269.365100000053644 ], [ 352989.144199997186661, 257268.922200001776218 ], [ 352987.816100001335144, 257268.700599998235703 ], [ 352987.041199997067451, 257268.921700000762939 ], [ 352987.373000003397465, 257269.695799998939037 ], [ 352987.483400002121925, 257270.027800001204014 ], [ 352987.040299996733665, 257270.359200000762939 ], [ 352986.597900003194809, 257270.248500000685453 ], [ 352985.712999999523163, 257269.47410000115633 ], [ 352985.270499996840954, 257268.92119999974966 ], [ 352985.049699999392033, 257268.036400001496077 ], [ 352984.7179000005126, 257267.372800000011921 ], [ 352983.058200001716614, 257266.708599999547005 ], [ 352982.11370000243187, 257266.280999999493361 ], [ 352980.786799997091293, 257266.015500001609325 ], [ 352980.256099998950958, 257266.147900000214577 ], [ 352978.796099998056889, 257266.810699999332428 ], [ 352978.264600001275539, 257267.871100001037121 ], [ 352978.131399996578693, 257268.799400001764297 ], [ 352978.660999998450279, 257270.522999998182058 ], [ 352979.98759999871254, 257271.186500001698732 ], [ 352981.049199998378754, 257271.054200001060963 ], [ 352981.845299996435642, 257271.054400000721216 ], [ 352982.375900000333786, 257271.584899999201298 ], [ 352983.171400003135204, 257272.513099998235703 ], [ 352984.232299998402596, 257273.441700000315905 ], [ 352985.824000000953674, 257274.767900001257658 ], [ 352986.884700000286102, 257276.094200000166893 ], [ 352988.608999997377396, 257277.420699998736382 ], [ 352991.129699997603893, 257278.084199998527765 ], [ 352992.190700002014637, 257279.012499999254942 ], [ 352992.322999998927116, 257279.940900001674891 ], [ 352990.597099997103214, 257281.266100000590086 ], [ 352989.269500002264977, 257282.193999998271465 ], [ 352985.686599999666214, 257282.590799998492002 ], [ 352983.032499998807907, 257282.722600001841784 ], [ 352981.174500003457069, 257282.854600001126528 ], [ 352979.316500000655651, 257283.517000000923872 ], [ 352979.017300002276897, 257284.269999999552965 ], [ 352978.836099997162819, 257286.071400001645088 ], [ 352979.376400001347065, 257286.611800000071526 ], [ 352980.638199999928474, 257287.152499999850988 ], [ 352982.080099999904633, 257287.693599998950958 ], [ 352982.800999999046326, 257288.054000001400709 ], [ 352983.521700002253056, 257288.5945999994874 ], [ 352984.602700002491474, 257289.675900001078844 ], [ 352986.404600001871586, 257291.117300000041723 ], [ 352988.748000003397465, 257291.658300001174212 ], [ 352990.009499996900558, 257292.199000000953674 ], [ 352991.270900003612041, 257293.280299998819828 ], [ 352992.171700000762939, 257294.000999998301268 ], [ 352992.711999997496605, 257295.08219999819994 ], [ 352991.990699999034405, 257295.442200001329184 ], [ 352989.827899999916553, 257294.540699999779463 ], [ 352986.763300001621246, 257294.17960000038147 ], [ 352983.51860000193119, 257293.638399999588728 ], [ 352980.45380000025034, 257293.637499999254942 ], [ 352978.290700003504753, 257293.276700001209974 ], [ 352975.586999997496605, 257292.735599998384714 ], [ 352974.325000002980232, 257292.555100001394749 ], [ 352972.342399999499321, 257292.193999998271465 ], [ 352971.440600000321865, 257292.554299999028444 ], [ 352970.178400002419949, 257293.274399999529123 ], [ 352969.636900000274181, 257294.174800001084805 ], [ 352969.094800002872944, 257295.976100001484156 ], [ 352968.913500003516674, 257297.777499999850988 ], [ 352968.912900000810623, 257298.858199998736382 ], [ 352969.27250000089407, 257300.299199998378754 ], [ 352970.173299998044968, 257301.560600001364946 ], [ 352971.434799998998642, 257302.101300001144409 ], [ 352973.958400003612041, 257302.462200000882149 ], [ 352975.220299996435642, 257302.822799999266863 ], [ 352976.121299996972084, 257303.183600001037121 ], [ 352977.74379999935627, 257303.364100001752377 ], [ 352979.546999998390675, 257302.643899999558926 ], [ 352980.809000000357628, 257302.284000001847744 ], [ 352981.710699997842312, 257302.104200001806021 ], [ 352982.792300000786781, 257302.104499999433756 ], [ 352983.87389999628067, 257302.28489999845624 ], [ 352984.414200000464916, 257302.825399998575449 ], [ 352983.692500002682209, 257303.906199999153614 ], [ 352982.97070000320673, 257304.986600000411272 ], [ 352981.34740000218153, 257306.607500001788139 ], [ 352979.904600001871586, 257307.507699999958277 ], [ 352978.822899997234344, 257307.507399998605251 ], [ 352977.200400002300739, 257307.326799999922514 ], [ 352975.578299999237061, 257306.966099999845028 ], [ 352973.955200001597404, 257307.686099998652935 ], [ 352972.692900002002716, 257308.586599998176098 ], [ 352971.429999999701977, 257309.847100000828505 ], [ 352971.068199999630451, 257311.828600000590086 ], [ 352971.427799999713898, 257313.449700001627207 ], [ 352972.689099997282028, 257314.711100000888109 ], [ 352974.130900003015995, 257315.432000000029802 ], [ 352975.933200001716614, 257316.153000000864267 ], [ 352977.014600001275539, 257316.513799998909235 ], [ 352977.915600001811981, 257316.874299999326468 ], [ 352979.177299998700619, 257317.595100000500679 ], [ 352979.537600003182888, 257317.955400001257658 ], [ 352979.35639999806881, 257319.216499999165535 ], [ 352978.994999997317791, 257320.657299999147654 ], [ 352977.912399999797344, 257322.098200000822544 ], [ 352976.830200001597404, 257322.998500000685453 ], [ 352975.207299999892712, 257323.898600000888109 ], [ 352974.305200003087521, 257324.799199998378754 ], [ 352974.303700000047684, 257327.321100000292063 ], [ 352974.843999996781349, 257328.401999998837709 ], [ 352976.105099998414516, 257329.483300000429153 ], [ 352978.087700001895428, 257330.564500000327826 ], [ 352979.529399998486042, 257331.285399999469519 ], [ 352981.331500001251698, 257332.366599999368191 ], [ 352982.052299998700619, 257332.907400000840425 ], [ 352982.953000001609325, 257333.808299999684095 ], [ 352984.2550999969244, 257334.633299998939037 ], [ 352985.156099997460842, 257334.99379999935627 ], [ 352985.697200000286102, 257334.813799999654293 ], [ 352986.599200002849102, 257333.552999999374151 ], [ 352987.140799999237061, 257332.65260000154376 ], [ 352987.862099997699261, 257332.292500000447035 ], [ 352989.124200001358986, 257331.752599999308586 ], [ 352990.566799998283386, 257331.572799999266863 ], [ 352991.828400000929832, 257331.933400001376867 ], [ 352992.909400001168251, 257333.014400001615286 ], [ 352993.088799998164177, 257334.635800000280142 ], [ 352993.087700001895428, 257336.437199998646975 ], [ 352994.5287000015378, 257338.4189000017941 ], [ 352996.150399997830391, 257339.500300001353025 ], [ 352997.59179999679327, 257340.761500000953674 ], [ 352998.132200002670288, 257341.842700000852346 ], [ 352999.39299999922514, 257343.464099999517202 ], [ 353000.292599998414516, 257346.526599999517202 ], [ 353001.372599996626377, 257349.228900000452995 ], [ 353002.27250000089407, 257351.390799999237061 ], [ 353002.991800002753735, 257354.453299999237061 ], [ 353003.528999999165535, 257360.578200001269579 ], [ 353004.067800000309944, 257364.181000001728535 ], [ 353005.506300002336502, 257370.125700000673532 ], [ 353007.486699998378754, 257374.269499998539686 ], [ 353009.468400001525879, 257376.791999999433756 ], [ 353010.908699996769428, 257379.854600001126528 ], [ 353012.709399998188019, 257383.27760000154376 ], [ 353013.609600000083447, 257384.89919999986887 ], [ 353013.608599998056889, 257386.520199999213219 ], [ 353012.886399999260902, 257388.32149999961257 ], [ 353013.143500000238419, 257389.9983000010252 ], [ 353013.722900003194809, 257392.028499998152256 ], [ 353014.012000001966953, 257393.768800001591444 ], [ 353014.881300002336502, 257396.089200001209974 ], [ 353014.880300000309944, 257397.829100001603365 ], [ 353014.588899999856949, 257399.859299998730421 ], [ 353014.006999999284744, 257401.889199998229742 ], [ 353013.134800001978874, 257404.209100000560284 ], [ 353011.39190000295639, 257406.5287000015378 ], [ 353009.358300000429153, 257409.718400001525879 ], [ 353008.486800000071526, 257410.878100000321865 ], [ 353007.033500000834465, 257414.067899998277426 ], [ 353005.579800002276897, 257418.418000001460314 ], [ 353006.447400003671646, 257423.058200001716614 ], [ 353007.027400001883507, 257423.92850000038743 ], [ 353007.317199997603893, 257425.088799998164177 ], [ 353008.184600003063679, 257430.019200000911951 ], [ 353007.892499998211861, 257433.209300000220537 ], [ 353006.439499996602535, 257435.819200001657009 ], [ 353005.568199999630451, 257437.269000001251698 ], [ 353005.276100002229214, 257439.878899998962879 ], [ 353006.7246999964118, 257444.519600000232458 ], [ 353009.6216000020504, 257453.510899998247623 ], [ 353010.781099997460842, 257455.831399999558926 ], [ 353011.069799996912479, 257458.731600001454353 ], [ 353011.939300000667572, 257460.762200001627207 ], [ 353012.518200002610683, 257463.082499999552965 ], [ 353012.514799997210503, 257468.5929000005126 ], [ 353010.482400000095367, 257469.752199999988079 ], [ 353007.290500000119209, 257468.591400001198053 ], [ 353004.678800001740456, 257467.720600001513958 ], [ 353003.807800002396107, 257468.010200001299381 ], [ 353002.645499996840954, 257469.75 ], [ 353001.193099997937679, 257472.06980000063777 ], [ 353000.611199997365475, 257474.099599998444319 ], [ 353000.609999999403954, 257476.129999998956919 ], [ 353000.898900002241135, 257478.160100001841784 ], [ 353003.219899997115135, 257479.90089999884367 ], [ 353005.832000002264977, 257480.191500000655651 ], [ 353006.991899996995926, 257481.932000000029802 ], [ 353007.571299999952316, 257483.962200000882149 ], [ 353007.860299997031689, 257485.702399998903275 ], [ 353006.988499999046326, 257487.442400000989437 ], [ 353004.665600001811981, 257489.18189999833703 ], [ 353001.471699997782707, 257490.920899998396635 ], [ 353000.890299998223782, 257492.081000000238419 ], [ 353000.889799997210503, 257492.951099999248981 ], [ 353001.179399996995926, 257494.401200000196695 ], [ 353002.893700003623962, 257496.052600000053644 ], [ 353004.924599997699261, 257497.21339999884367 ], [ 353006.08389999717474, 257499.823699999600649 ], [ 353006.083099998533726, 257501.273699998855591 ], [ 353005.500299997627735, 257505.33390000090003 ], [ 353004.045900002121925, 257510.263599999248981 ], [ 353002.012900002300739, 257512.293400000780821 ], [ 353000.560500003397465, 257514.03319999948144 ], [ 352997.6554000005126, 257518.382500000298023 ], [ 352996.202100001275539, 257521.572399999946356 ], [ 352994.748999997973442, 257524.761900000274181 ], [ 352993.296800002455711, 257526.211899999529123 ], [ 352991.261699996888638, 257531.721400000154972 ], [ 352993.292000003159046, 257534.042100001126528 ], [ 352995.903399996459484, 257535.492899999022484 ], [ 352998.515699997544289, 257535.493599999696016 ], [ 353001.999799996614456, 257533.754700001329184 ], [ 353002.872699998319149, 257530.274599999189377 ], [ 353003.745099999010563, 257527.664799999445677 ], [ 353002.875699996948242, 257525.344399999827147 ], [ 353002.876800000667572, 257523.604299999773502 ], [ 353003.16889999806881, 257520.414099998772144 ], [ 353004.9121999964118, 257517.514499999582767 ], [ 353006.365500003099442, 257514.324599999934435 ], [ 353008.398800000548363, 257511.714899998158216 ], [ 353008.979599997401237, 257511.425200000405312 ], [ 353010.140000000596046, 257512.295699998736382 ], [ 353010.720399998128414, 257512.58559999987483 ], [ 353011.880800001323223, 257513.4560999982059 ], [ 353015.074100002646446, 257512.296999998390675 ], [ 353015.654899999499321, 257512.007100000977516 ], [ 353017.106200002133846, 257512.007500000298023 ], [ 353018.266999997198582, 257512.297899998724461 ], [ 353021.748400002717972, 257514.908900000154972 ], [ 353023.198899999260902, 257516.359299998730421 ], [ 353025.227399997413158, 257521.58049999922514 ], [ 353026.966099999845028, 257526.2212999984622 ], [ 353027.83330000191927, 257532.021699998527765 ], [ 353027.540700003504753, 257535.5016999989748 ], [ 353024.928000003099442, 257536.661200001835823 ], [ 353022.606200002133846, 257536.080600000917912 ], [ 353019.993400000035763, 257536.949700001627207 ], [ 353019.1216000020504, 257538.689599998295307 ], [ 353019.120700001716614, 257540.139699999243021 ], [ 353020.861199997365475, 257541.880300000309944 ], [ 353022.60249999910593, 257542.170699998736382 ], [ 353024.05290000140667, 257543.331300001591444 ], [ 353025.212999999523163, 257545.071800000965595 ], [ 353024.921599999070168, 257547.101700000464916 ], [ 353024.338699996471405, 257550.871800001710653 ], [ 353022.015900000929832, 257552.031399998813868 ], [ 353019.98369999974966, 257552.900600001215935 ], [ 353017.660300001502037, 257554.930300001055002 ], [ 353015.917000003159046, 257557.829900000244379 ], [ 353012.42960000038147, 257565.369300000369549 ], [ 353006.035599999129772, 257578.708500001579523 ], [ 353004.289099998772144, 257586.828400000929832 ], [ 353001.381499998271465, 257595.238099999725819 ], [ 352994.699600003659725, 257605.386900000274181 ], [ 352990.629699997603893, 257615.536200001835823 ], [ 352990.338299997150898, 257617.566399998962879 ], [ 352989.756599999964237, 257619.306099999696016 ], [ 352988.595299996435642, 257619.885800000280142 ], [ 352986.85360000282526, 257620.175400000065565 ], [ 352982.499799996614456, 257620.174199998378754 ], [ 352979.3074000030756, 257619.303199999034405 ], [ 352976.695600003004074, 257619.012600000947714 ], [ 352970.019000001251698, 257619.880499999970198 ], [ 352968.503300003707409, 257619.486999999731779 ], [ 352968.504000000655651, 257618.326699998229742 ], [ 352967.634099997580051, 257617.456399999558926 ], [ 352966.762999996542931, 257617.456199999898672 ], [ 352965.311599999666214, 257618.035999998450279 ], [ 352964.44030000269413, 257618.905600000172853 ], [ 352964.149599999189377, 257619.775600001215935 ], [ 352963.857900001108646, 257621.805799998342991 ], [ 352962.695900000631809, 257623.545400001108646 ], [ 352961.824400000274181, 257624.705400001257658 ], [ 352961.69709999859333, 257626.028900001198053 ], [ 352961.965700000524521, 257627.374499998986721 ], [ 352961.965400002896786, 257627.912999998778105 ], [ 352961.560900002717972, 257628.451099999248981 ], [ 352960.617899999022484, 257628.989100001752377 ], [ 352958.192500002682209, 257630.872400000691414 ], [ 352956.710400000214577, 257631.679299999028444 ], [ 352955.228900000452995, 257632.082699999213219 ], [ 352953.612999998033047, 257631.543999999761581 ], [ 352952.536100000143051, 257630.736099999397993 ], [ 352951.19030000269413, 257628.986400000751019 ], [ 352949.035999998450279, 257628.043800000101328 ], [ 352948.093800000846386, 257627.370600000023842 ], [ 352947.555600002408028, 257626.293999999761581 ], [ 352946.882799997925758, 257625.4864999987185 ], [ 352946.075499996542931, 257624.409600000828505 ], [ 352945.401699997484684, 257624.67850000038743 ], [ 352945.266599997878075, 257625.351399999111891 ], [ 352945.265900000929832, 257626.428100001066923 ], [ 352945.804099999368191, 257627.638999998569489 ], [ 352947.284500002861023, 257629.523499999195337 ], [ 352948.899499997496605, 257631.004200000315905 ], [ 352951.187700003385544, 257633.157999999821186 ], [ 352952.802799999713898, 257635.042500000447035 ], [ 352954.147200003266335, 257638.541499998420477 ], [ 352955.222900003194809, 257641.77140000090003 ], [ 352955.625500001013279, 257643.924600001424551 ], [ 352955.622299998998642, 257649.038199998438358 ], [ 352955.486199997365475, 257651.3260000012815 ], [ 352954.675800003111362, 257655.228000000119209 ], [ 352954.539899997413158, 257657.111999999731779 ], [ 352954.673900000751019, 257658.323100000619888 ], [ 352955.346000000834465, 257660.207400001585484 ], [ 352955.884300000965595, 257661.149500001221895 ], [ 352956.287799999117851, 257662.226100001484156 ], [ 352955.748199999332428, 257663.302600000053644 ], [ 352954.400600001215935, 257664.647799998521805 ], [ 352952.514499999582767, 257665.723999999463558 ], [ 352950.359399996697903, 257666.126899998635054 ], [ 352948.339500002563, 257665.857200000435114 ], [ 352944.56870000064373, 257665.317899998277426 ], [ 352938.777800001204014, 257664.912500001490116 ], [ 352935.680500000715256, 257664.508099999278784 ], [ 352931.775100000202656, 257664.23759999871254 ], [ 352930.832400001585484, 257664.372000001370907 ], [ 352929.754100002348423, 257665.179000001400709 ], [ 352929.080300003290176, 257666.120799999684095 ], [ 352928.945200003683567, 257666.659000001847744 ], [ 352928.675300002098083, 257667.466600000858307 ], [ 352928.540200002491474, 257668.677600000053644 ], [ 352928.000900000333786, 257669.350099999457598 ], [ 352926.250600002706051, 257668.677000001072884 ], [ 352925.442800000309944, 257667.869100000709295 ], [ 352924.097000002861023, 257666.792300000786781 ], [ 352922.750500001013279, 257666.118999999016523 ], [ 352921.269000001251698, 257666.118599999696016 ], [ 352919.518100000917912, 257666.387200001627207 ], [ 352918.440399996936321, 257666.925400000065565 ], [ 352917.766699999570847, 257667.059599999338388 ], [ 352917.362999998033047, 257666.92509999871254 ], [ 352916.824500001966953, 257666.252099998295307 ], [ 352913.996299996972084, 257666.38569999858737 ], [ 352912.918700002133846, 257666.789200000464916 ], [ 352911.840499997138977, 257667.596200000494719 ], [ 352911.032200001180172, 257667.999800000339746 ], [ 352910.358999997377396, 257667.864900000393391 ], [ 352910.2246999964118, 257667.32660000026226 ], [ 352909.55179999768734, 257666.653499998152256 ], [ 352908.8783999979496, 257666.384199999272823 ], [ 352906.18469999730587, 257666.921999998390675 ], [ 352905.510899998247623, 257667.325300000607967 ], [ 352903.468999996781349, 257667.453600000590086 ], [ 352901.657200001180172, 257667.679499998688698 ], [ 352900.298100002110004, 257668.357799999415874 ], [ 352898.25959999859333, 257669.035999998450279 ], [ 352896.900399997830391, 257669.714600000530481 ], [ 352895.541299998760223, 257670.392900001257658 ], [ 352894.408900000154972, 257670.618700001388788 ], [ 352891.690999999642372, 257671.749200001358986 ], [ 352889.879000000655651, 257672.427700001746416 ], [ 352887.614399999380112, 257672.427099999040365 ], [ 352886.708700001239777, 257672.200399998575449 ], [ 352885.576700001955032, 257671.747499998658895 ], [ 352883.991999998688698, 257671.068300001323223 ], [ 352882.633199997246265, 257671.067899998277426 ], [ 352881.727300003170967, 257671.293800000101328 ], [ 352881.273400001227856, 257672.87779999896884 ], [ 352882.405199997127056, 257673.556800000369549 ], [ 352883.62389999628067, 257676.318300001323223 ], [ 352884.222699999809265, 257678.416799999773502 ], [ 352885.421999998390675, 257679.466400001198053 ], [ 352886.171800002455711, 257679.916200000792742 ], [ 352887.071400001645088, 257680.665800001472235 ], [ 352888.420299999415874, 257682.764499999582767 ], [ 352887.969700001180172, 257683.364100001752377 ], [ 352884.219400003552437, 257683.812600001692772 ], [ 352882.268899999558926, 257684.5614 ], [ 352882.118400000035763, 257685.460799999535084 ], [ 352882.567800000309944, 257686.210299998521805 ], [ 352883.467500001192093, 257686.660100001841784 ], [ 352884.667099997401237, 257687.709699999541044 ], [ 352884.816399998962879, 257688.758699998259544 ], [ 352884.665600001811981, 257690.107599999755621 ], [ 352884.213299997150898, 257693.554900001734495 ], [ 352883.912100002169609, 257695.653099998831749 ], [ 352884.50789999961853, 257702.247999999672174 ], [ 352884.503600001335144, 257709.142299998551607 ], [ 352882.849799998104572, 257715.587000001221895 ], [ 352881.947499997913837, 257719.183800000697374 ], [ 352881.496399998664856, 257720.682500001043081 ], [ 352881.645499996840954, 257722.181400001049042 ], [ 352882.244499996304512, 257723.979899998754263 ], [ 352882.543399997055531, 257725.628800000995398 ], [ 352882.392099998891354, 257727.727000001817942 ], [ 352882.090800002217293, 257729.97520000115037 ], [ 352881.489699997007847, 257731.623700000345707 ], [ 352880.138800002634525, 257733.12220000103116 ], [ 352878.488200001418591, 257734.020700000226498 ], [ 352874.737800002098083, 257734.469500001519918 ], [ 352870.38740000128746, 257734.768100000917912 ], [ 352868.887599997222424, 257734.767700001597404 ], [ 352865.711199998855591, 257735.030999999493361 ], [ 353015.77419999986887, 258009.688700001686811 ], [ 353043.313199996948242, 257979.141199998557568 ], [ 353043.512800000607967, 257978.919700000435114 ], [ 353043.712099999189377, 257978.697999998927116 ], [ 353043.911200001835823, 257978.475999999791384 ], [ 353044.110100001096725, 257978.253899998962879 ], [ 353044.308799996972084, 257978.031599998474121 ], [ 353044.507299996912479, 257977.809099998325109 ], [ 353044.70549999922514, 257977.586500000208616 ], [ 353044.903599999845028, 257977.363600000739098 ], [ 353045.101499997079372, 257977.140500001609325 ], [ 353045.299099996685982, 257976.917300000786781 ], [ 353045.496500000357628, 257976.693900000303984 ], [ 353045.69370000064373, 257976.470300000160933 ], [ 353045.890699997544289, 257976.246500000357628 ], [ 353046.087499998509884, 257976.02250000089407 ], [ 353046.284100003540516, 257975.798300001770258 ], [ 353046.480499997735023, 257975.573899999260902 ], [ 353046.676600001752377, 257975.349399998784065 ], [ 353046.872500002384186, 257975.124600000679493 ], [ 353047.068300001323223, 257974.899700000882149 ], [ 353047.263800002634525, 257974.674600001424551 ], [ 353047.459100000560284, 257974.449299998581409 ], [ 353047.654100000858307, 257974.223799999803305 ], [ 353047.848999999463558, 257973.998199999332428 ], [ 353048.043700002133846, 257973.772300001233816 ], [ 353048.238099999725819, 257973.546300001442432 ], [ 353048.432300001382828, 257973.320099998265505 ], [ 353048.626299999654293, 257973.093699999153614 ], [ 353048.820100001990795, 257972.86710000038147 ], [ 353049.013700000941753, 257972.640299998223782 ], [ 353049.207099996507168, 257972.413400001823902 ], [ 353049.400200001895428, 257972.186299998313189 ], [ 353049.593199998140335, 257971.95890000090003 ], [ 353049.785899996757507, 257971.7314000017941 ], [ 353049.978399999439716, 257971.503800000995398 ], [ 353050.170699998736382, 257971.27589999884367 ], [ 353050.362700000405312, 257971.047800000756979 ], [ 353050.55460000038147, 257970.819600000977516 ], [ 353050.746200002729893, 257970.5912000015378 ], [ 353050.937600001692772, 257970.36259999871254 ], [ 353051.128799997270107, 257970.133799999952316 ], [ 353051.319799996912479, 257969.904899999499321 ], [ 353051.510600000619888, 257969.675700001418591 ], [ 353051.701099999248981, 257969.446400001645088 ], [ 353051.891500003635883, 257969.216899998486042 ], [ 353052.081600002944469, 257968.987199999392033 ], [ 353052.271499998867512, 257968.757399998605251 ], [ 353052.461199998855591, 257968.527300000190735 ], [ 353052.650600001215935, 257968.297100000083447 ], [ 353052.839900001883507, 257968.066700000315905 ], [ 353053.028899997472763, 257967.836100000888109 ], [ 353053.217699997127056, 257967.605399999767542 ], [ 353053.406300000846386, 257967.374499998986721 ], [ 353053.5945999994874, 257967.143300000578165 ], [ 353053.782799996435642, 257966.912000000476837 ], [ 353053.97070000320673, 257966.680599998682737 ], [ 353054.158399999141693, 257966.448899999260902 ], [ 353054.345899999141693, 257966.217099998146296 ], [ 353054.53320000320673, 257965.985100001096725 ], [ 353054.720200002193451, 257965.752900000661612 ], [ 353054.906999997794628, 257965.520500000566244 ], [ 353055.093599997460842, 257965.287999998778105 ], [ 353055.280000001192093, 257965.055300001055002 ], [ 353055.4662000015378, 257964.822399999946356 ], [ 353055.652099996805191, 257964.589299999177456 ], [ 353055.8378000035882, 257964.356100000441074 ], [ 353056.023299999535084, 257964.122699998319149 ], [ 353056.208599999547005, 257963.88910000026226 ], [ 353056.393700003623962, 257963.655299998819828 ], [ 353056.578500002622604, 257963.421300001442432 ], [ 353056.763099998235703, 257963.187199998646975 ], [ 353056.947499997913837, 257962.952899999916553 ], [ 353057.131700001657009, 257962.718400001525879 ], [ 353057.315600000321865, 257962.483800001442432 ], [ 353057.499300003051758, 257962.249000001698732 ], [ 353057.682800002396107, 257962.013999998569489 ], [ 353057.866099998354912, 257961.778799999505281 ], [ 353058.049199998378754, 257961.543499998748302 ], [ 353058.23200000077486, 257961.307900000363588 ], [ 353058.414599999785423, 257961.072299998253584 ], [ 353058.597000002861023, 257960.836399998515844 ], [ 353058.779100000858307, 257960.600299999117851 ], [ 353058.961099997162819, 257960.364100001752377 ], [ 353059.142800003290176, 257960.12779999896884 ], [ 353059.324299998581409, 257959.891199998557568 ], [ 353059.505500003695488, 257959.654500000178814 ], [ 353059.686599999666214, 257959.417599998414516 ], [ 353059.867399998009205, 257959.180500000715256 ], [ 353060.048000000417233, 257958.943300001323223 ], [ 353060.228299997746944, 257958.705899998545647 ], [ 353060.408500000834465, 257958.468299999833107 ], [ 353060.58839999884367, 257958.230500001460314 ], [ 353060.768100000917912, 257957.992600001394749 ], [ 353060.947499997913837, 257957.75450000166893 ], [ 353061.1266999989748, 257957.516199998557568 ], [ 353061.305799998342991, 257957.277800001204014 ], [ 353061.484499998390675, 257957.039200000464916 ], [ 353061.663099996745586, 257956.800400000065565 ], [ 353061.841399997472763, 257956.561500001698732 ], [ 353062.019500002264977, 257956.322399999946356 ], [ 353062.197400003671646, 257956.083099998533726 ], [ 353062.375, 257955.843600001186132 ], [ 353062.552400000393391, 257955.603999998420477 ], [ 353062.729599997401237, 257955.364199999719858 ], [ 353062.906599998474121, 257955.124299999326468 ], [ 353063.08330000191927, 257954.884100001305342 ], [ 353063.259800001978874, 257954.643800001591444 ], [ 353063.436099998652935, 257954.403400000184774 ], [ 353063.612199999392033, 257954.162799999117851 ], [ 353063.788000002503395, 257953.921999998390675 ], [ 353063.963600002229214, 257953.681000001728535 ], [ 353064.138899996876717, 257953.439899999648333 ], [ 353064.314099997282028, 257953.198600001633167 ], [ 353064.489000000059605, 257952.957100000232458 ], [ 353064.663699999451637, 257952.715500000864267 ], [ 353064.838100001215935, 257952.473700001835823 ], [ 353065.012299999594688, 257952.231800001114607 ], [ 353065.186300002038479, 257951.989700000733137 ], [ 353065.360100001096725, 257951.747400000691414 ], [ 353065.533600002527237, 257951.504900000989437 ], [ 353065.706900000572205, 257951.262299999594688 ], [ 353065.880000002682209, 257951.019499998539686 ], [ 353066.052799999713898, 257950.776599999517202 ], [ 353066.225400000810623, 257950.533500000834465 ], [ 353066.397799998521805, 257950.290199998766184 ], [ 353066.569899998605251, 257950.046799998730421 ], [ 353066.741899996995926, 257949.803199999034405 ], [ 353066.913500003516674, 257949.559399999678135 ], [ 353067.08500000089407, 257949.315499998629093 ], [ 353067.25620000064373, 257949.071400001645088 ], [ 353067.427199997007847, 257948.827199999243021 ], [ 353067.597900003194809, 257948.582800000905991 ], [ 353067.768500000238419, 257948.338199999183416 ], [ 353067.938799999654293, 257948.093499999493361 ], [ 353068.108800001442432, 257947.848600000143051 ], [ 353068.2787000015378, 257947.603500001132488 ], [ 353068.44820000231266, 257947.358300000429153 ], [ 353068.617600001394749, 257947.112900000065565 ], [ 353068.786700002849102, 257946.867400001734495 ], [ 353068.955600000917912, 257946.621700000017881 ], [ 353069.124300003051758, 257946.375799998641014 ], [ 353069.292700000107288, 257946.129799999296665 ], [ 353069.460900001227856, 257945.883600000292063 ], [ 353069.628899998962879, 257945.637299999594688 ], [ 353069.796599999070168, 257945.390799999237061 ], [ 353069.964100003242493, 257945.144099999219179 ], [ 353070.131399996578693, 257944.897300001233816 ], [ 353070.29839999973774, 257944.650400001555681 ], [ 353070.465199999511242, 257944.403200000524521 ], [ 353070.631700001657009, 257944.155900001525879 ], [ 353070.798100002110004, 257943.908500000834465 ], [ 353070.964100003242493, 257943.660900000482798 ], [ 353071.130000002682209, 257943.413100000470877 ], [ 353071.29559999704361, 257943.165199998766184 ], [ 353071.461000002920628, 257942.917100001126528 ], [ 353071.62610000371933, 257942.6689000017941 ], [ 353071.791000001132488, 257942.420499999076128 ], [ 353071.955700002610683, 257942.171999998390675 ], [ 353072.120200000703335, 257941.923300001770258 ], [ 353072.284400001168251, 257941.674400001764297 ], [ 353072.448299996554852, 257941.425400000065565 ], [ 353072.612099997699261, 257941.176199998706579 ], [ 353072.775600001215935, 257940.926899999380112 ], [ 353072.938799999654293, 257940.677400000393391 ], [ 353073.101800002157688, 257940.427799999713898 ], [ 353073.264600001275539, 257940.177999999374151 ], [ 353073.427199997007847, 257939.928100001066923 ], [ 353073.589500002563, 257939.677999999374151 ], [ 353073.751500003039837, 257939.427700001746416 ], [ 353073.913400001823902, 257939.177299998700619 ], [ 353074.075000002980232, 257938.92680000141263 ], [ 353074.236299999058247, 257938.675999999046326 ], [ 353074.397399999201298, 257938.425200000405312 ], [ 353074.558300003409386, 257938.174199998378754 ], [ 353074.718999996781349, 257937.923000000417233 ], [ 353074.879399999976158, 257937.671700000762939 ], [ 353075.039499998092651, 257937.420200001448393 ], [ 353075.199500001966953, 257937.168600000441074 ], [ 353075.359099999070168, 257936.916799999773502 ], [ 353075.51860000193119, 257936.664900001138449 ], [ 353075.677799999713898, 257936.412799999117851 ], [ 353075.836800001561642, 257936.160599999129772 ], [ 353075.99549999833107, 257935.90819999948144 ], [ 353076.153999999165535, 257935.655600000172853 ], [ 353076.312200002372265, 257935.403000000864267 ], [ 353076.470299996435642, 257935.150100000202656 ], [ 353076.627999998629093, 257934.897199999541044 ], [ 353076.785599999129772, 257934.644000001251698 ], [ 353076.942900002002716, 257934.390700001269579 ], [ 353077.099899999797344, 257934.137299999594688 ], [ 353077.256700001657009, 257933.883699998259544 ], [ 353077.41330000013113, 257933.629999998956919 ], [ 353077.569600000977516, 257933.3761 ], [ 353077.725699998438358, 257933.122099999338388 ], [ 353077.881499998271465, 257932.867899999022484 ], [ 353078.0371999964118, 257932.613600000739098 ], [ 353078.192500002682209, 257932.359200000762939 ], [ 353078.347599998116493, 257932.104499999433756 ], [ 353078.502499997615814, 257931.849800001829863 ], [ 353078.657200001180172, 257931.594900000840425 ], [ 353078.811599999666214, 257931.339800000190735 ], [ 353078.965700000524521, 257931.084600001573563 ], [ 353079.119599997997284, 257930.829300001263618 ], [ 353079.273299999535084, 257930.573800001293421 ], [ 353079.426700003445148, 257930.31810000166297 ], [ 353079.579899996519089, 257930.062399998307228 ], [ 353079.732799999415874, 257929.806400001049042 ], [ 353079.885499998927116, 257929.550400000065565 ], [ 353080.038000002503395, 257929.294100001454353 ], [ 353080.190200001001358, 257929.037799999117851 ], [ 353080.342200003564358, 257928.781300000846386 ], [ 353080.493900001049042, 257928.524599999189377 ], [ 353080.645400002598763, 257928.267799999564886 ], [ 353080.796599999070168, 257928.010899998247623 ], [ 353080.947599999606609, 257927.753800000995398 ], [ 353081.098399996757507, 257927.496599998325109 ], [ 353081.24889999628067, 257927.239199999719858 ], [ 353081.399099998176098, 257926.981699999421835 ], [ 353081.549199998378754, 257926.72410000115633 ], [ 353081.698899999260902, 257926.466299999505281 ], [ 353081.848499998450279, 257926.208299998193979 ], [ 353081.997699998319149, 257925.950199998915195 ], [ 353082.146799996495247, 257925.69200000166893 ], [ 353082.29559999704361, 257925.433699999004602 ], [ 353082.444099999964237, 257925.175200000405312 ], [ 353082.592399999499321, 257924.916499998420477 ], [ 353082.740500003099442, 257924.657699998468161 ], [ 353082.888300001621246, 257924.398800000548363 ], [ 353083.035899996757507, 257924.139699999243021 ], [ 353083.183200001716614, 257923.880499999970198 ], [ 353083.330200001597404, 257923.621199999004602 ], [ 353083.477099999785423, 257923.361699998378754 ], [ 353083.623599998652935, 257923.102099999785423 ], [ 353083.770000003278255, 257922.842300001531839 ], [ 353083.91610000282526, 257922.582400001585484 ], [ 353084.061899997293949, 257922.322399999946356 ], [ 353084.207500003278255, 257922.062199998646975 ], [ 353084.352899998426437, 257921.801899999380112 ], [ 353084.498000003397465, 257921.541499998420477 ], [ 353084.642800003290176, 257921.280900001525879 ], [ 353084.787399999797344, 257921.020100001245737 ], [ 353084.931800000369549, 257920.759300000965595 ], [ 353085.075900003314018, 257920.4983000010252 ], [ 353085.219700001180172, 257920.237100001424551 ], [ 353085.363399997353554, 257919.975900001823902 ], [ 353085.506700001657009, 257919.714499998837709 ], [ 353085.649800002574921, 257919.452899999916553 ], [ 353085.792700000107288, 257919.191199999302626 ], [ 353085.935300000011921, 257918.929400000721216 ], [ 353086.07769999653101, 257918.667500000447035 ], [ 353086.219800002872944, 257918.4054000005126 ], [ 353086.361699998378754, 257918.143100000917912 ], [ 353086.503300003707409, 257917.880800001323223 ], [ 353086.64469999819994, 257917.618299998342991 ], [ 353086.785800002515316, 257917.355700001120567 ], [ 353086.926700003445148, 257917.0929000005126 ], [ 353087.067299999296665, 257916.829999998211861 ], [ 353087.207699999213219, 257916.56700000166893 ], [ 353087.347800001502037, 257916.303800001740456 ], [ 353087.487700000405312, 257916.040600001811981 ], [ 353087.627400003373623, 257915.777100000530481 ], [ 353087.766699999570847, 257915.513599999248981 ], [ 353087.905900001525879, 257915.249899998307228 ], [ 353088.044699996709824, 257914.986099999397993 ], [ 353088.183399997651577, 257914.722100000828505 ], [ 353088.321800000965595, 257914.458000000566244 ], [ 353088.459899999201298, 257914.193799998611212 ], [ 353088.597800001502037, 257913.929499998688698 ], [ 353088.735399998724461, 257913.66499999910593 ], [ 353088.872800000011921, 257913.400400001555681 ], [ 353089.009900003671646, 257913.13569999858737 ], [ 353089.146799996495247, 257912.870799999684095 ], [ 353089.283399999141693, 257912.605799999088049 ], [ 353089.419699996709824, 257912.340700000524521 ], [ 353089.555900000035763, 257912.075399998575449 ], [ 353089.691699996590614, 257911.809999998658895 ], [ 353089.827299997210503, 257911.54450000077486 ], [ 353089.962700001895428, 257911.278900001198053 ], [ 353090.097800001502037, 257911.013099998235703 ], [ 353090.232699997723103, 257910.74720000103116 ], [ 353090.367299996316433, 257910.481199998408556 ], [ 353090.501599997282028, 257910.21510000154376 ], [ 353090.63570000231266, 257909.948800001293421 ], [ 353090.769599996507168, 257909.682399999350309 ], [ 353090.903200000524521, 257909.415800001472235 ], [ 353091.036499999463558, 257909.14919999986887 ], [ 353091.169600002467632, 257908.882399998605251 ], [ 353091.302400000393391, 257908.615499999374151 ], [ 353091.435000002384186, 257908.348400000482798 ], [ 353091.567299999296665, 257908.081300001591444 ], [ 353091.699400000274181, 257907.813999999314547 ], [ 353091.831200003623962, 257907.546599999070168 ], [ 353091.9628000035882, 257907.278999999165535 ], [ 353092.094099998474121, 257907.011399999260902 ], [ 353092.225199997425079, 257906.743599999696016 ], [ 353092.355999998748302, 257906.475699998438358 ], [ 353092.48650000244379, 257906.207600001245737 ], [ 353092.616800002753735, 257905.939500000327826 ], [ 353092.746899999678135, 257905.67119999974966 ], [ 353092.8766999989748, 257905.402800001204014 ], [ 353093.00620000064373, 257905.134300000965595 ], [ 353093.135499998927116, 257904.865600001066923 ], [ 353093.264499999582767, 257904.596799999475479 ], [ 353093.393200002610683, 257904.327899999916553 ], [ 353093.521799996495247, 257904.058899998664856 ], [ 353093.649999998509884, 257903.789799999445677 ], [ 353093.777999997138977, 257903.520500000566244 ], [ 353093.905799999833107, 257903.2511 ], [ 353094.03320000320673, 257902.981600001454353 ], [ 353094.160499997437, 257902.712000001221895 ], [ 353094.287500001490116, 257902.442299999296665 ], [ 353094.414200000464916, 257902.172400001436472 ], [ 353094.540600001811981, 257901.902399998158216 ], [ 353094.666799999773502, 257901.63230000063777 ], [ 353094.79280000180006, 257901.362100001424551 ], [ 353094.918499998748302, 257901.091699998825788 ], [ 353095.04389999806881, 257900.821299999952316 ], [ 353115.170500002801418, 257857.371300000697374 ], [ 353115.296400003135204, 257857.100699998438358 ], [ 353115.423299998044968, 257856.830800000578165 ], [ 353115.551299996674061, 257856.561299998313189 ], [ 353115.680299997329712, 257856.292399998754263 ], [ 353115.810400001704693, 257856.023899998515844 ], [ 353115.941500000655651, 257855.756000000983477 ], [ 353116.073600001633167, 257855.488499999046326 ], [ 353116.206799998879433, 257855.221599999815226 ], [ 353116.340999998152256, 257854.955099999904633 ], [ 353116.476199999451637, 257854.6891999989748 ], [ 353116.612400002777576, 257854.423900000751019 ], [ 353116.749700002372265, 257854.159000001847744 ], [ 353116.887999996542931, 257853.89469999819994 ], [ 353117.027300000190735, 257853.630899999290705 ], [ 353117.167599998414516, 257853.36769999936223 ], [ 353117.309000000357628, 257853.105000000447035 ], [ 353117.451300002634525, 257852.842799998819828 ], [ 353117.594700001180172, 257852.581199999898672 ], [ 353117.739100001752377, 257852.320199999958277 ], [ 353117.884499996900558, 257852.05970000103116 ], [ 353118.030799999833107, 257851.799800001084805 ], [ 353118.178199999034405, 257851.540399998426437 ], [ 353118.32660000026226, 257851.281599998474121 ], [ 353118.476000003516674, 257851.023400001227856 ], [ 353118.626400001347065, 257850.765799999237061 ], [ 353118.777800001204014, 257850.508699998259544 ], [ 353118.930100001394749, 257850.252199999988079 ], [ 353119.083499997854233, 257849.996399998664856 ], [ 353119.237800002098083, 257849.741099998354912 ], [ 353119.393200002610683, 257849.486400000751019 ], [ 353119.549500003457069, 257849.232299998402596 ], [ 353119.706799998879433, 257848.978799998760223 ], [ 353119.865000002086163, 257848.725999999791384 ], [ 353120.024300001561642, 257848.473700001835823 ], [ 353120.184500001370907, 257848.222100000828505 ], [ 353120.34570000320673, 257847.971000000834465 ], [ 353120.507799997925758, 257847.720600001513958 ], [ 353120.670900002121925, 257847.470899999141693 ], [ 353120.83500000089407, 257847.221700001507998 ], [ 353121.0, 257846.973200000822544 ], [ 353121.166000001132488, 257846.725400000810623 ], [ 353121.332999996840954, 257846.478100001811981 ], [ 353121.500900000333786, 257846.231499999761581 ], [ 353121.669799998402596, 257845.985599998384714 ], [ 353121.839599996805191, 257845.740299999713898 ], [ 353122.010300002992153, 257845.495700001716614 ], [ 353122.181999996304512, 257845.251800000667572 ], [ 353122.354599997401237, 257845.008499998599291 ], [ 353122.528200000524521, 257844.765900000929832 ], [ 353122.70269999653101, 257844.523899998515844 ], [ 353122.878200002014637, 257844.282600000500679 ], [ 353123.054499998688698, 257844.041999999433756 ], [ 353123.231799997389317, 257843.802099999040365 ], [ 353123.409999996423721, 257843.562899999320507 ], [ 353123.589199997484684, 257843.324299998581409 ], [ 353123.769299998879433, 257843.086500000208616 ], [ 353123.950199998915195, 257842.849300000816584 ], [ 353124.132100000977516, 257842.612900000065565 ], [ 353124.314900003373623, 257842.377099998295307 ], [ 353124.498599998652935, 257842.142099998891354 ], [ 353124.683300003409386, 257841.907800000160933 ], [ 353124.86879999935627, 257841.674100000411272 ], [ 353125.055200003087521, 257841.441199999302626 ], [ 353125.242499999701977, 257841.209100000560284 ], [ 353125.430699996650219, 257840.977600000798702 ], [ 353125.6199000030756, 257840.746899999678135 ], [ 353125.809799998998642, 257840.5168999992311 ], [ 353126.000699996948242, 257840.287599999457598 ], [ 353126.192500002682209, 257840.059099998325109 ], [ 353126.385099999606609, 257839.831300001591444 ], [ 353126.578699998557568, 257839.604299999773502 ], [ 353126.773100003600121, 257839.377999998629093 ], [ 353126.968299999833107, 257839.152499999850988 ], [ 353127.164499998092651, 257838.927700001746416 ], [ 353127.36150000244379, 257838.703699998557568 ], [ 353127.559399999678135, 257838.480399999767542 ], [ 353127.758100003004074, 257838.25789999961853 ], [ 353127.957699999213219, 257838.036200001835823 ], [ 353128.158100001513958, 257837.815200001001358 ], [ 353128.359399996697903, 257837.595100000500679 ], [ 353128.561599999666214, 257837.375700000673532 ], [ 353128.764499999582767, 257837.157000001519918 ], [ 353128.968400001525879, 257836.9391999989748 ], [ 353129.173000000417233, 257836.722199998795986 ], [ 353129.378499999642372, 257836.505899999290705 ], [ 353129.584899999201298, 257836.290500000119209 ], [ 353129.792099997401237, 257836.075800001621246 ], [ 353130.0, 257835.861900001764297 ], [ 353130.20889999717474, 257835.648899998515844 ], [ 353130.418499998748302, 257835.436599999666214 ], [ 353130.629000000655651, 257835.22520000115037 ], [ 353130.840199999511242, 257835.014600001275539 ], [ 353131.052299998700619, 257834.804800000041723 ], [ 353131.26519999653101, 257834.595800001174212 ], [ 353131.478900000452995, 257834.387600000947714 ], [ 353131.693400003015995, 257834.180300001055002 ], [ 353131.908699996769428, 257833.973799999803305 ], [ 353132.124799996614456, 257833.768100000917912 ], [ 353132.341700002551079, 257833.563299998641014 ], [ 353132.559399999678135, 257833.359299998730421 ], [ 353132.777800001204014, 257833.156100001186132 ], [ 353132.997100003063679, 257832.95380000025034 ], [ 353133.217100001871586, 257832.752300001680851 ], [ 353133.437899999320507, 257832.551699999719858 ], [ 353133.659400001168251, 257832.35190000012517 ], [ 353133.881800003349781, 257832.153000000864267 ], [ 353134.104900002479553, 257831.954999998211861 ], [ 353134.32880000025034, 257831.757800001651049 ], [ 353134.553400002419949, 257831.561500001698732 ], [ 353134.778800003230572, 257831.36600000038743 ], [ 353135.004900000989437, 257831.171399999409914 ], [ 353135.231799997389317, 257830.977699998766184 ], [ 353135.459399998188019, 257830.78489999845624 ], [ 353135.687799997627735, 257830.592999998480082 ], [ 353135.916900001466274, 257830.401900000870228 ], [ 353136.146700002253056, 257830.21169999986887 ], [ 353136.377300001680851, 257830.022399999201298 ], [ 353136.608599998056889, 257829.833999998867512 ], [ 353136.840700000524521, 257829.646499998867512 ], [ 353137.073399998247623, 257829.459899999201298 ], [ 353137.306900002062321, 257829.27419999986887 ], [ 353137.54110000282526, 257829.089400000870228 ], [ 353137.776000000536442, 257828.905499998480082 ], [ 353138.011600002646446, 257828.722500000149012 ], [ 353138.247900001704693, 257828.540399998426437 ], [ 353138.484899997711182, 257828.359200000762939 ], [ 353138.722599998116493, 257828.179000001400709 ], [ 353138.961099997162819, 257827.999600000679493 ], [ 353139.200199998915195, 257827.821199998259544 ], [ 353139.439900003373623, 257827.643699999898672 ], [ 353139.680399999022484, 257827.467199999839067 ], [ 353139.921499997377396, 257827.291499998420477 ], [ 353140.163400001823902, 257827.116799999028444 ], [ 353140.405900001525879, 257826.94310000166297 ], [ 353140.648999996483326, 257826.770199999213219 ], [ 353140.892899997532368, 257826.598299998790026 ], [ 353141.137299999594688, 257826.427400000393391 ], [ 353141.382500000298023, 257826.257399998605251 ], [ 353141.628300003707409, 257826.088300000876188 ], [ 353141.874700002372265, 257825.920200001448393 ], [ 353142.121799997985363, 257825.753100000321865 ], [ 353142.369599997997284, 257825.586899999529123 ], [ 353142.618000000715256, 257825.421599999070168 ], [ 353142.866999998688698, 257825.25730000063777 ], [ 353143.116599999368191, 257825.094000000506639 ], [ 353143.366899996995926, 257824.931699998676777 ], [ 353143.617799997329712, 257824.770300000905991 ], [ 353143.869300000369549, 257824.609900001436472 ], [ 353144.121500000357628, 257824.450399998575449 ], [ 353144.374200001358986, 257824.291900001466274 ], [ 353144.627599999308586, 257824.134399998933077 ], [ 353144.881599999964237, 257823.977899998426437 ], [ 353145.136200003325939, 257823.822399999946356 ], [ 353145.39130000025034, 257823.66780000180006 ], [ 353145.647100001573563, 257823.514299999922514 ], [ 353145.903399996459484, 257823.361699998378754 ], [ 353146.160400003194809, 257823.210099998861551 ], [ 353146.417900003492832, 257823.059500001370907 ], [ 353146.675999999046326, 257822.90989999845624 ], [ 353146.93469999730587, 257822.761300001293421 ], [ 353147.193899996578693, 257822.613699998706579 ], [ 353147.45380000025034, 257822.467099998146296 ], [ 353147.714100003242493, 257822.32149999961257 ], [ 353147.975100003182888, 257822.176899999380112 ], [ 353148.236599996685982, 257822.033399999141693 ], [ 353148.498599998652935, 257821.890799999237061 ], [ 353148.761200003325939, 257821.749200001358986 ], [ 353149.024400003254414, 257821.60869999974966 ], [ 353149.288099996745586, 257821.469200000166893 ], [ 353149.552299998700619, 257821.330600000917912 ], [ 353149.81700000166893, 257821.193199999630451 ], [ 353150.082299999892712, 257821.056699998676777 ], [ 353150.348099999129772, 257820.92119999974966 ], [ 353150.614500001072884, 257820.786800000816584 ], [ 353150.881300002336502, 257820.653499998152256 ], [ 353151.148699998855591, 257820.521099999547005 ], [ 353151.416500002145767, 257820.389800000935793 ], [ 353151.684900000691414, 257820.259500000625849 ], [ 353151.95380000025034, 257820.130199998617172 ], [ 353152.223099999129772, 257820.002000000327826 ], [ 353152.493000000715256, 257819.874899998307228 ], [ 353152.744400002062321, 257819.754999998956919 ], [ 353152.994199998676777, 257819.631999999284744 ], [ 353153.242399998009205, 257819.505800001323223 ], [ 353153.489000000059605, 257819.376400001347065 ], [ 353153.733900003135204, 257819.243900001049042 ], [ 353153.977200001478195, 257819.108300000429153 ], [ 353154.218599997460842, 257818.969500001519918 ], [ 353154.45830000191927, 257818.8277000002563 ], [ 353154.696099996566772, 257818.682900000363588 ], [ 353154.932099997997284, 257818.535000000149012 ], [ 353155.166199997067451, 257818.384100001305342 ], [ 353155.398299999535084, 257818.23030000180006 ], [ 353155.6283999979496, 257818.073499999940395 ], [ 353155.856600001454353, 257817.913699999451637 ], [ 353156.082599997520447, 257817.7511 ], [ 353156.306599996984005, 257817.58559999987483 ], [ 353156.528399996459484, 257817.417199999094009 ], [ 353156.748099997639656, 257817.246100001037121 ], [ 353156.965499997138977, 257817.07209999859333 ], [ 353157.180699996650219, 257816.895399998873472 ], [ 353157.393700003623962, 257816.715900000184774 ], [ 353157.604299999773502, 257816.533700000494719 ], [ 353157.812600001692772, 257816.348900001496077 ], [ 353158.018500000238419, 257816.161400001496077 ], [ 353158.222000002861023, 257815.9712999984622 ], [ 353158.423000000417233, 257815.778599999845028 ], [ 353158.6216000020504, 257815.583399999886751 ], [ 353158.817699998617172, 257815.385600000619888 ], [ 353159.011200003325939, 257815.185400001704693 ], [ 353159.202100001275539, 257814.982700001448393 ], [ 353159.390500001609325, 257814.777499999850988 ], [ 353159.576200000941753, 257814.570000000298023 ], [ 353159.759199999272823, 257814.360100001096725 ], [ 353159.939599998295307, 257814.147999998182058 ], [ 353160.117200002074242, 257813.933499999344349 ], [ 353160.292099997401237, 257813.71680000051856 ], [ 353160.464199997484684, 257813.497800000011921 ], [ 353160.633400000631809, 257813.276700001209974 ], [ 353160.799900002777576, 257813.053399998694658 ], [ 353160.96339999884367, 257812.828000001609325 ], [ 353161.124099999666214, 257812.600600000470877 ], [ 353161.281900003552437, 257812.371100001037121 ], [ 353161.436700001358986, 257812.139699999243021 ], [ 353161.588500000536442, 257811.906199999153614 ], [ 353161.737400002777576, 257811.670899998396635 ], [ 353161.883199997246265, 257811.433600001037121 ], [ 353162.026000000536442, 257811.194600000977516 ], [ 353162.165700003504753, 257810.953699998557568 ], [ 353162.302299998700619, 257810.711100000888109 ], [ 353162.435900002717972, 257810.466699998825788 ], [ 353162.566200003027916, 257810.220600001513958 ], [ 353162.693499997258186, 257809.972899999469519 ], [ 353162.817500002682209, 257809.723600000143051 ], [ 353162.938400000333786, 257809.472800001502037 ], [ 353163.056100003421307, 257809.220400001853704 ], [ 353163.170500002801418, 257808.966499999165535 ], [ 353163.281599998474121, 257808.711199998855591 ], [ 353163.389499999582767, 257808.454500000923872 ], [ 353163.494099996984005, 257808.196400001645088 ], [ 353163.595399998128414, 257807.937100000679493 ], [ 353163.693400003015995, 257807.676399998366833 ], [ 353163.788000002503395, 257807.414500001817942 ], [ 353163.879299998283386, 257807.151500001549721 ], [ 353163.967200003564358, 257806.887299999594688 ], [ 353164.05179999768734, 257806.622000001370907 ], [ 353164.13289999961853, 257806.355599999427795 ], [ 353164.210600003600121, 257806.088199999183416 ], [ 353164.28490000218153, 257805.819899998605251 ], [ 353164.355800002813339, 257805.550599999725819 ], [ 353164.423199996352196, 257805.2804000005126 ], [ 353164.487199999392033, 257805.009399998933077 ], [ 353164.547700002789497, 257804.73759999871254 ], [ 353164.604699999094009, 257804.46510000154376 ], [ 353164.65820000320673, 257804.191899999976158 ], [ 353164.70830000191927, 257803.917899999767542 ], [ 353164.754799999296665, 257803.643399998545647 ], [ 353166.0371999964118, 257795.772700000554323 ], [ 353166.086900003254414, 257795.473900001496077 ], [ 353166.13849999755621, 257795.175200000405312 ], [ 353166.19200000166893, 257794.876800000667572 ], [ 353166.247400000691414, 257794.57880000025034 ], [ 353166.304700002074242, 257794.281100001186132 ], [ 353166.363799996674061, 257793.983800001442432 ], [ 353166.424900002777576, 257793.686900001019239 ], [ 353166.487899996340275, 257793.390399999916553 ], [ 353166.552699998021126, 257793.094300001859665 ], [ 353166.619400002062321, 257792.798599999397993 ], [ 353166.688000001013279, 257792.503299999982119 ], [ 353166.758500002324581, 257792.208500001579523 ], [ 353166.830799996852875, 257791.914200000464916 ], [ 353166.905000001192093, 257791.620299998670816 ], [ 353166.981100000441074, 257791.326799999922514 ], [ 353167.059000000357628, 257791.033900000154972 ], [ 353167.138800002634525, 257790.741500001400709 ], [ 353167.220499999821186, 257790.449499998241663 ], [ 353167.303999997675419, 257790.158100001513958 ], [ 353167.389300003647804, 257789.867300000041723 ], [ 353167.476499997079372, 257789.576900001615286 ], [ 353167.565600000321865, 257789.287200000137091 ], [ 353167.656499996781349, 257788.997999999672174 ], [ 353167.749200001358986, 257788.709399998188019 ], [ 353167.843699999153614, 257788.421399999409914 ], [ 353167.940099999308586, 257788.13399999961257 ], [ 353168.03830000013113, 257787.847199998795986 ], [ 353168.138400003314018, 257787.561000000685453 ], [ 353168.240199998021126, 257787.275499999523163 ], [ 353168.343900002539158, 257786.990699999034405 ], [ 353168.449299998581409, 257786.706500001251698 ], [ 353168.556599996984005, 257786.422899998724461 ], [ 353168.665700003504753, 257786.140099998563528 ], [ 353168.776500001549721, 257785.857999999076128 ], [ 353168.889200001955032, 257785.576499998569489 ], [ 353169.003600001335144, 257785.295800000429153 ], [ 353169.1199000030756, 257785.015799999237061 ], [ 353169.237899996340275, 257784.736600000411272 ], [ 353169.357600003480911, 257784.458099998533726 ], [ 353169.47919999808073, 257784.180399999022484 ], [ 353169.60249999910593, 257783.903499998152256 ], [ 353169.72749999910593, 257783.627300001680851 ], [ 353169.854299999773502, 257783.352000001817942 ], [ 353169.982900001108646, 257783.077500000596046 ], [ 353170.113200001418591, 257782.803700000047684 ], [ 353170.245200000703335, 257782.530900001525879 ], [ 353170.379000000655651, 257782.258799999952316 ], [ 353170.514499999582767, 257781.98759999871254 ], [ 353170.651699997484684, 257781.717300001531839 ], [ 353170.790600001811981, 257781.447900000959635 ], [ 353170.93129999935627, 257781.179299999028444 ], [ 353171.073600001633167, 257780.911699999123812 ], [ 353171.217600002884865, 257780.644900001585484 ], [ 353171.363399997353554, 257780.379099998623133 ], [ 353171.510799996554852, 257780.114199999719858 ], [ 353171.65990000218153, 257779.850299999117851 ], [ 353171.810699999332428, 257779.58729999884963 ], [ 353171.963100001215935, 257779.325199998915195 ], [ 353172.117200002074242, 257779.0641999989748 ], [ 353172.272900000214577, 257778.804099999368191 ], [ 353172.430399999022484, 257778.545000001788139 ], [ 353172.589400000870228, 257778.286899998784065 ], [ 353172.750100001692772, 257778.029899999499321 ], [ 353172.912399999797344, 257777.773800000548363 ], [ 353173.076300002634525, 257777.518800001591444 ], [ 353173.241899996995926, 257777.264899998903275 ], [ 353173.409100003540516, 257777.011999998241663 ], [ 353173.577799998223782, 257776.760099999606609 ], [ 353173.748199999332428, 257776.509399998933077 ], [ 353173.920199997723103, 257776.259700000286102 ], [ 353174.093699999153614, 257776.011100001633167 ], [ 353174.268799997866154, 257775.763700000941753 ], [ 353174.445500001311302, 257775.517299998551607 ], [ 353174.623800002038479, 257775.272100001573563 ], [ 353174.803599998354912, 257775.028000000864267 ], [ 353174.984899997711182, 257774.785100001841784 ], [ 353175.16780000180006, 257774.543299999088049 ], [ 353175.352200001478195, 257774.302700001746416 ], [ 353175.538199998438358, 257774.063299998641014 ], [ 353175.725599996745586, 257773.824999999254942 ], [ 353175.914599999785423, 257773.587900001555681 ], [ 353176.105099998414516, 257773.352099999785423 ], [ 353176.297100000083447, 257773.117499999701977 ], [ 353176.490500003099442, 257772.884100001305342 ], [ 353176.685400001704693, 257772.651900000870228 ], [ 353176.881899997591972, 257772.420899998396635 ], [ 353177.079700000584126, 257772.191300000995398 ], [ 353177.279100000858307, 257771.962799999862909 ], [ 353177.479800000786781, 257771.735700000077486 ], [ 353177.681999996304512, 257771.509799998253584 ], [ 353177.88570000231266, 257771.285199999809265 ], [ 353178.090800002217293, 257771.061900001019239 ], [ 353178.297200001776218, 257770.839999999850988 ], [ 353178.5050999969244, 257770.619300000369549 ], [ 353178.714400000870228, 257770.399999998509884 ], [ 353178.92509999871254, 257770.182000000029802 ], [ 353179.137100003659725, 257769.965300001204014 ], [ 353179.350599996745586, 257769.75 ], [ 353179.565399996936321, 257769.536100000143051 ], [ 353179.781499996781349, 257769.323499999940395 ], [ 353179.998999997973442, 257769.112300001084805 ], [ 353180.217799998819828, 257768.902499999850988 ], [ 353180.438000001013279, 257768.693999998271465 ], [ 353180.659500002861023, 257768.486999999731779 ], [ 353180.882299996912479, 257768.281399998813868 ], [ 353181.106299996376038, 257768.077199999243021 ], [ 353181.331699997186661, 257767.874499998986721 ], [ 353181.558399997651577, 257767.673200000077486 ], [ 353181.786300003528595, 257767.473299998790026 ], [ 353182.015500001609325, 257767.27479999884963 ], [ 353182.245999999344349, 257767.077899999916553 ], [ 353182.477700002491474, 257766.882399998605251 ], [ 353182.710699997842312, 257766.688400000333786 ], [ 353182.944799996912479, 257766.495799999684095 ], [ 353183.180200003087521, 257766.304800000041723 ], [ 353183.416799999773502, 257766.115200001746416 ], [ 353183.654600001871586, 257765.927200000733137 ], [ 353183.89360000193119, 257765.740600001066923 ], [ 353184.133799999952316, 257765.555599998682737 ], [ 353184.375100001692772, 257765.37220000103116 ], [ 353184.617600001394749, 257765.190200001001358 ], [ 353184.861299999058247, 257765.009799998253584 ], [ 353185.106100000441074, 257764.831000000238419 ], [ 353185.351999998092651, 257764.6537000015378 ], [ 353185.59910000115633, 257764.478000000119209 ], [ 353185.847199998795986, 257764.303800001740456 ], [ 353200.412100002169609, 257754.151299998164177 ], [ 353200.647299997508526, 257753.986000001430511 ], [ 353200.881300002336502, 257753.818999998271465 ], [ 353201.114000000059605, 257753.650199998170137 ], [ 353201.345499999821186, 257753.479699999094009 ], [ 353201.575699999928474, 257753.307500001043081 ], [ 353201.80460000038147, 257753.133600000292063 ], [ 353202.032300002872944, 257752.957899998873472 ], [ 353202.258599996566772, 257752.780600000172853 ], [ 353202.483499996364117, 257752.601599998772144 ], [ 353202.70719999819994, 257752.420899998396635 ], [ 353202.929399996995926, 257752.238600000739098 ], [ 353203.1503000035882, 257752.05460000038147 ], [ 353203.3699000030756, 257751.868999999016523 ], [ 353203.587999999523163, 257751.681699998676777 ], [ 353203.804799996316433, 257751.492800001055002 ], [ 353204.020099997520447, 257751.302299998700619 ], [ 353204.233999997377396, 257751.110300000756979 ], [ 353204.44650000333786, 257750.916600000113249 ], [ 353204.657499998807907, 257750.7212999984622 ], [ 353204.866999998688698, 257750.524500001221895 ], [ 353205.075099997222424, 257750.326099999248981 ], [ 353205.281700000166893, 257750.126200001686811 ], [ 353205.486800000071526, 257749.924699999392033 ], [ 353205.690399996936321, 257749.721700001507998 ], [ 353205.892499998211861, 257749.517200000584126 ], [ 353206.093000002205372, 257749.311299998313189 ], [ 353206.292099997401237, 257749.103799998760223 ], [ 353206.489500001072884, 257748.894799999892712 ], [ 353206.685400001704693, 257748.684399999678135 ], [ 353206.879699997603893, 257748.472500000149012 ], [ 353207.072400003671646, 257748.259199999272823 ], [ 353207.263599999248981, 257748.044399999082088 ], [ 353207.453100003302097, 257747.828200001269579 ], [ 353207.641000002622604, 257747.610700000077486 ], [ 353207.827299997210503, 257747.391699999570847 ], [ 353208.012000001966953, 257747.171300001442432 ], [ 353208.195000000298023, 257746.949599999934435 ], [ 353208.376299999654293, 257746.726500000804663 ], [ 353208.556000001728535, 257746.502099998295307 ], [ 353208.733999997377396, 257746.276299998164177 ], [ 353208.910300001502037, 257746.049300000071526 ], [ 353209.084899999201298, 257745.820900000631809 ], [ 353209.257799997925758, 257745.5912000015378 ], [ 353209.428999997675419, 257745.360199999064207 ], [ 353209.598399996757507, 257745.127999998629093 ], [ 353209.766199998557568, 257744.894499998539686 ], [ 353209.932199999690056, 257744.659800000488758 ], [ 353210.096400000154972, 257744.423799999058247 ], [ 353210.258799999952316, 257744.186599999666214 ], [ 353210.41950000077486, 257743.94819999858737 ], [ 353210.578400000929832, 257743.708700001239777 ], [ 353210.735600002110004, 257743.4679000005126 ], [ 353210.890900000929832, 257743.225999999791384 ], [ 353211.044399999082088, 257742.982900001108646 ], [ 353211.196099996566772, 257742.738699998706579 ], [ 353211.345899999141693, 257742.493400000035763 ], [ 353211.494000002741814, 257742.247000001370907 ], [ 353211.64019999653101, 257741.999400001019239 ], [ 353211.784500002861023, 257741.750799998641014 ], [ 353211.927000001072884, 257741.5011 ], [ 353212.0675999969244, 257741.250399999320507 ], [ 353212.206399999558926, 257740.998599998652935 ], [ 353212.343299999833107, 257740.745799999684095 ], [ 353212.478200003504753, 257740.491999998688698 ], [ 353212.611299999058247, 257740.237100001424551 ], [ 353212.742499999701977, 257739.981300000101328 ], [ 353212.871799997985363, 257739.724599998444319 ], [ 353212.999099999666214, 257739.46680000051856 ], [ 353213.124600000679493, 257739.208200000226498 ], [ 353213.248000003397465, 257738.948600001633167 ], [ 353213.369599997997284, 257738.688099998980761 ], [ 353213.489200003445148, 257738.426600001752377 ], [ 353213.606899999082088, 257738.16440000012517 ], [ 353213.722599998116493, 257737.901200000196695 ], [ 353213.836300000548363, 257737.637200001627207 ], [ 353213.948100000619888, 257737.372299998998642 ], [ 353214.057899996638298, 257737.106600001454353 ], [ 353214.165700003504753, 257736.84010000154376 ], [ 353214.271499998867512, 257736.572799999266863 ], [ 353214.375299997627735, 257736.304800000041723 ], [ 353214.477099999785423, 257736.035900000482798 ], [ 353214.576899997889996, 257735.766399998217821 ], [ 353214.674699999392033, 257735.495999999344349 ], [ 353214.770499996840954, 257735.225000001490116 ], [ 353214.86429999768734, 257734.953200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98535642, "LATITUDE": 18.35310923, "OBJECTID_1": 2121, "PARCEL_NO_": "102504014800", "Tax_Legal_": "BONNE ESPERANCE 2-7 WEST END QTR", "Name": "PHILLIPS-DITTRICH, LARAE", "Address": "PO Box 1236", "City": "Port Orchard", "State": "Washington", "Zip": 98366, "Country": "United States", "Land_Value": 84800, "Improved_V": 126500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.56854654599999, "SHAPE_Area": 2332.2803788900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353067.347699999809265, 258145.493200000375509 ], [ 353043.031499996781349, 258098.676399998366833 ], [ 353029.735100001096725, 258107.413100000470877 ], [ 353004.62950000166893, 258127.103399999439716 ], [ 353038.23929999768734, 258170.253600001335144 ], [ 353059.986599996685982, 258153.256900001317263 ], [ 353065.681100003421307, 258147.392900001257658 ], [ 353067.347699999809265, 258145.493200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504012400", "MAP": "D9-373-T63", "PARCEL_NAM": "2-1", "ACRE": "0.30", "LONGITUDE": -64.98679697, "LATITUDE": 18.35370189, "OBJECTID_1": 2097, "PARCEL_NO_": "102504012400", "Tax_Legal_": "BONNE ESPERANCE 2-1 & 2-2 2 WEST END QTR", "Name": "BERNIER, ASHLEY RUTH", "Address": "2557 Winding Branch Trl", "City": "Apex", "State": "North Carolina", "Zip": 27523, "Country": "United States", "Land_Value": 100800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.11782079100001, "SHAPE_Area": 1183.5400484300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352909.372500002384186, 258196.285799998790026 ], [ 352879.270499996840954, 258168.040399998426437 ], [ 352868.322300001978874, 258218.393800001591444 ], [ 352868.248599998652935, 258227.048000000417233 ], [ 352869.850400000810623, 258228.3277000002563 ], [ 352872.267599999904633, 258228.558600001037121 ], [ 352909.372500002384186, 258196.285799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98565823, "LATITUDE": 18.3527036, "OBJECTID_1": 2122, "PARCEL_NO_": "102504014900", "Tax_Legal_": "BONNE ESPERANCE 2-6 WEST END QTR", "Name": "MARK, GELEAN MARK AND MODESTINE", "Address": "PO Box 6353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046353, "Country": "United States", "Land_Value": 60800, "Improved_V": 99600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.773065989, "SHAPE_Area": 2140.4507118199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352974.204999998211861, 258079.987500000745058 ], [ 352994.118900001049042, 258123.375799998641014 ], [ 353027.397100001573563, 258097.894799999892712 ], [ 353038.659599997103214, 258090.25899999961257 ], [ 353023.592100001871586, 258061.249000001698732 ], [ 353009.92620000243187, 258066.298799999058247 ], [ 352974.204999998211861, 258079.987500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504012400", "MAP": "D9-373-T63", "PARCEL_NAM": "2-2", "ACRE": "0.49", "LONGITUDE": -64.98659313, "LATITUDE": 18.3533975, "OBJECTID_1": 2097, "PARCEL_NO_": "102504012400", "Tax_Legal_": "BONNE ESPERANCE 2-1 & 2-2 2 WEST END QTR", "Name": "BERNIER, ASHLEY RUTH", "Address": "2557 Winding Branch Trl", "City": "Apex", "State": "North Carolina", "Zip": 27523, "Country": "United States", "Land_Value": 100800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.314823768, "SHAPE_Area": 1951.3142446100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352879.270499996840954, 258168.040399998426437 ], [ 352909.372500002384186, 258196.285799998790026 ], [ 352925.885200001299381, 258181.923599999397993 ], [ 352938.629399999976158, 258171.486699998378754 ], [ 352900.837099999189377, 258132.296799998730421 ], [ 352892.359899997711182, 258141.752500001341105 ], [ 352885.826700001955032, 258151.409299999475479 ], [ 352879.270499996840954, 258168.040399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504015100", "MAP": "D9-373-T63", "PARCEL_NAM": "2-4", "ACRE": ".49", "LONGITUDE": -64.98601559, "LATITUDE": 18.35290243, "OBJECTID_1": 2124, "PARCEL_NO_": "102504015100", "Tax_Legal_": "BONNE ESPERANCE 2-4 WEST END QTR", "Name": "SAUNDER, BASIL P. & EVA E", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57900, "Improved_V": 255800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.19835578199999, "SHAPE_Area": 1946.88805359 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352994.118900001049042, 258123.375799998641014 ], [ 352974.204999998211861, 258079.987500000745058 ], [ 352966.239600002765656, 258083.039900001138449 ], [ 352939.919900000095367, 258092.310699999332428 ], [ 352967.236199997365475, 258147.702500000596046 ], [ 352976.421999998390675, 258139.785900000482798 ], [ 352986.986699998378754, 258130.162099998444319 ], [ 352994.118900001049042, 258123.375799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028100", "MAP": "A9-171-T72", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97236981, "LATITUDE": 18.34902369, "OBJECTID_1": 2763, "PARCEL_NO_": "102604028100", "Tax_Legal_": "CROWN & HAWK 15-6 S S QTR", "Name": "MILLIN, CHRISTINE L", "Address": "C/O Jacklyn Venzen-Millin", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 464100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1739.4049322799999, "SHAPE_Area": 41220.934874300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354319.4966000020504, 257873.734000001102686 ], [ 354327.322999998927116, 257881.817899998277426 ], [ 354348.898400001227856, 257862.80460000038147 ], [ 354364.990299999713898, 257848.623500000685453 ], [ 354409.266800001263618, 257809.362900000065565 ], [ 354482.247400000691414, 257744.649599999189377 ], [ 354499.696900002658367, 257731.527399998158216 ], [ 354521.634400002658367, 257715.030000001192093 ], [ 354541.425700001418591, 257700.146699998527765 ], [ 354541.285099998116493, 257680.07660000026226 ], [ 354541.491099998354912, 257561.232599999755621 ], [ 354374.139600001275539, 257517.433100000023842 ], [ 354370.10080000013113, 257518.24439999833703 ], [ 354368.454000003635883, 257522.241700001060963 ], [ 354361.193599998950958, 257522.604499999433756 ], [ 354360.410700000822544, 257519.853799998760223 ], [ 354350.763700000941753, 257516.397399999201298 ], [ 354337.04559999704361, 257517.551699999719858 ], [ 354330.578900001943111, 257519.398600000888109 ], [ 354327.346500001847744, 257520.216499999165535 ], [ 354316.020300000905991, 257524.556800000369549 ], [ 354295.758199997246265, 257536.634399998933077 ], [ 354286.854599997401237, 257540.572299998253584 ], [ 354286.807899996638298, 257546.060300000011921 ], [ 354294.905199997127056, 257542.115800000727177 ], [ 354308.639499999582767, 257539.061799999326468 ], [ 354323.162100002169609, 257538.125199999660254 ], [ 354333.631499998271465, 257539.688499998301268 ], [ 354344.084799997508526, 257543.151599999517202 ], [ 354355.322899997234344, 257549.154199998825788 ], [ 354384.181100003421307, 257569.233199998736382 ], [ 354396.225400000810623, 257575.242400001734495 ], [ 354409.095799997448921, 257578.936299998313189 ], [ 354427.621299996972084, 257581.410000000149012 ], [ 354437.277199998497963, 257583.811000000685453 ], [ 354467.829000003635883, 257594.404699999839067 ], [ 354478.316399998962879, 257593.857200000435114 ], [ 354488.020999997854233, 257590.559099998325109 ], [ 354513.176700003445148, 257571.977699998766184 ], [ 354520.446099996566772, 257570.559500001370907 ], [ 354524.470499999821186, 257571.436900001019239 ], [ 354528.482199996709824, 257573.791700001806021 ], [ 354531.67509999871254, 257577.617499999701977 ], [ 354531.626599997282028, 257583.316700000315905 ], [ 354531.608599998056889, 257585.427400000393391 ], [ 354530.773500002920628, 257588.798099998384714 ], [ 354529.945600003004074, 257591.324499998241663 ], [ 354529.121299996972084, 257593.428599998354912 ], [ 354504.755699999630451, 257613.916400000452995 ], [ 354494.173000000417233, 257625.651000000536442 ], [ 354489.299099996685982, 257629.833000000566244 ], [ 354474.711800001561642, 257638.368400000035763 ], [ 354461.776600003242493, 257642.273400001227856 ], [ 354452.89639999717474, 257643.467199999839067 ], [ 354431.120600000023842, 257643.9222999997437 ], [ 354413.361900001764297, 257646.098999999463558 ], [ 354394.782499998807907, 257649.957699999213219 ], [ 354364.067100003361702, 257658.572200000286102 ], [ 354343.884199999272823, 257661.362300001084805 ], [ 354339.040899999439716, 257661.956000000238419 ], [ 354324.514700002968311, 257663.314800001680851 ], [ 354305.969499997794628, 257663.162999998778105 ], [ 354287.438699997961521, 257661.322599999606609 ], [ 354288.180299997329712, 257668.927999999374151 ], [ 354301.070500001311302, 257670.30009999871254 ], [ 354309.916500002145767, 257673.116700001060963 ], [ 354314.741800002753735, 257674.633799999952316 ], [ 354369.393100000917912, 257695.979400001466274 ], [ 354387.895099997520447, 257701.19709999859333 ], [ 354400.781700000166893, 257702.991300001740456 ], [ 354416.105200000107288, 257702.694499999284744 ], [ 354431.439599998295307, 257701.131299998611212 ], [ 354437.0675999969244, 257703.077199999243021 ], [ 354440.267599999904633, 257706.058699999004602 ], [ 354442.650600001215935, 257710.300000000745058 ], [ 354441.763400003314018, 257719.791999999433756 ], [ 354439.313900001347065, 257723.360500000417233 ], [ 354434.449000000953674, 257726.487100001424551 ], [ 354421.533600002527237, 257728.070199999958277 ], [ 354414.260600000619888, 257729.910500001162291 ], [ 354395.643500000238419, 257738.201799999922514 ], [ 354289.208499997854233, 257737.541799999773502 ], [ 354290.064099997282028, 257826.419199999421835 ], [ 354306.069799996912479, 257840.693500000983477 ], [ 354309.262699998915195, 257844.519299998879433 ], [ 354311.627700001001358, 257850.871500000357628 ], [ 354310.740500003099442, 257860.363400001078844 ], [ 354319.4966000020504, 257873.734000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028500", "MAP": null, "PARCEL_NAM": "15-5-C", "ACRE": ".759", "LONGITUDE": -64.97390982, "LATITUDE": 18.35099583, "OBJECTID_1": 2767, "PARCEL_NO_": "102604028500", "Tax_Legal_": "15-5-C CROWN & HAWK No. 3 SOUTHSIDE QUARTER", "Name": "FRETT, RUTH E.", "Address": "BOX 2332", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98200, "Improved_V": 268200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 392.86731942500001, "SHAPE_Area": 6560.8938942000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354171.7837999984622, 257920.083700001239777 ], [ 354192.898400001227856, 257925.444400001317263 ], [ 354194.703699998557568, 257948.941399998962879 ], [ 354235.81530000269413, 257947.142900001257658 ], [ 354244.807300001382828, 257954.53489999845624 ], [ 354308.143899999558926, 257898.719500001519918 ], [ 354327.322999998927116, 257881.817899998277426 ], [ 354319.4966000020504, 257873.734000001102686 ], [ 354310.740500003099442, 257860.363400001078844 ], [ 354302.278200000524521, 257874.026099998503923 ], [ 354287.33500000089407, 257878.279100000858307 ], [ 354265.613200001418591, 257877.439399998635054 ], [ 354238.137500002980232, 257884.391699999570847 ], [ 354217.104999996721745, 257892.241099998354912 ], [ 354197.115599997341633, 257903.113800000399351 ], [ 354179.807800002396107, 257916.211599998176098 ], [ 354171.7837999984622, 257920.083700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604027900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97423454, "LATITUDE": 18.35145255, "OBJECTID_1": 2761, "PARCEL_NO_": "102604027900", "Tax_Legal_": "CROWN & HAWK 15-3 S S QTR", "Name": "GEORGE, GRACIANA", "Address": "PO Box 1014", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.317924003, "SHAPE_Area": 1151.62228452 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354218.622000001370907, 257977.610800001770258 ], [ 354227.649400003254414, 257969.655299998819828 ], [ 354244.807300001382828, 257954.53489999845624 ], [ 354235.81530000269413, 257947.142900001257658 ], [ 354194.703699998557568, 257948.941399998962879 ], [ 354189.274899996817112, 257973.987399999052286 ], [ 354205.755199998617172, 257973.494699999690056 ], [ 354218.622000001370907, 257977.610800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602016300", "MAP": "D9-4450-T88", "PARCEL_NAM": "8-1", "ACRE": "0.50", "LONGITUDE": -64.97162265, "LATITUDE": 18.35682249, "OBJECTID_1": 2407, "PARCEL_NO_": "102602016300", "Tax_Legal_": "CARET BAY 8-1 LT. NORTHSIDE", "Name": "TROPICAL TOWER COMPANY LTD", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 110300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.16065739200002, "SHAPE_Area": 4522.1991041700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354548.615099996328354, 258544.902399998158216 ], [ 354485.284999996423721, 258529.216499999165535 ], [ 354458.032799996435642, 258530.53940000012517 ], [ 354442.767099998891354, 258535.918800000101328 ], [ 354440.469899997115135, 258578.673900000751019 ], [ 354455.614399999380112, 258584.318399999290705 ], [ 354475.607100002467632, 258585.950899999588728 ], [ 354497.493199996650219, 258582.443199999630451 ], [ 354512.681699998676777, 258582.564500000327826 ], [ 354548.615099996328354, 258544.902399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602014600", "MAP": null, "PARCEL_NAM": "REM 8", "ACRE": "3.71", "LONGITUDE": -64.97111789, "LATITUDE": 18.35720964, "OBJECTID_1": 2393, "PARCEL_NO_": "102602014600", "Tax_Legal_": "8 CARET BAY LITTLE NORTHSIDE", "Name": "Virgin Islands Telephone Company", "Address": "PO Box 6100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 398900, "Improved_V": 24200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 530.47183145199995, "SHAPE_Area": 13125.042668300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354423.673299998044968, 258632.675000000745058 ], [ 354615.118100002408028, 258639.559599999338388 ], [ 354621.207099996507168, 258615.875100001692772 ], [ 354628.694099999964237, 258588.916400000452995 ], [ 354625.576800003647804, 258576.225299999117851 ], [ 354624.347999997437, 258564.749699998646975 ], [ 354619.524800002574921, 258559.291299998760223 ], [ 354579.730800002813339, 258552.364199999719858 ], [ 354557.282999999821186, 258547.168699998408556 ], [ 354548.615099996328354, 258544.902399998158216 ], [ 354512.681699998676777, 258582.564500000327826 ], [ 354497.493199996650219, 258582.443199999630451 ], [ 354475.607100002467632, 258585.950899999588728 ], [ 354455.614399999380112, 258584.318399999290705 ], [ 354440.469899997115135, 258578.673900000751019 ], [ 354423.673299998044968, 258632.675000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9724276, "LATITUDE": 18.35870159, "OBJECTID_1": 2386, "PARCEL_NO_": "102602013800", "Tax_Legal_": "CARET BAY 5B-3 LITTLE NORTHSIDE", "Name": "CILLIERS FAMILY TRUST", "Address": "8185 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 143900, "Improved_V": 160100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.94136631600003, "SHAPE_Area": 3332.9039028299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354402.074799999594688, 258709.131499998271465 ], [ 354400.351899996399879, 258707.653499998152256 ], [ 354362.987499997019768, 258827.780000001192093 ], [ 354366.487199999392033, 258828.253100000321865 ], [ 354378.516400001943111, 258830.041299998760223 ], [ 354386.485299997031689, 258813.226399999111891 ], [ 354388.1266999989748, 258809.862300001084805 ], [ 354400.437200002372265, 258784.631799999624491 ], [ 354402.908299997448921, 258778.5304000005126 ], [ 354414.300999999046326, 258766.380199998617172 ], [ 354419.17119999974966, 258762.620299998670816 ], [ 354443.216399997472763, 258744.423000000417233 ], [ 354416.415100000798702, 258721.432700000703335 ], [ 354402.074799999594688, 258709.131499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602013000", "MAP": null, "PARCEL_NAM": "7E", "ACRE": null, "LONGITUDE": -64.97152272, "LATITUDE": 18.35981911, "OBJECTID_1": 2379, "PARCEL_NO_": "102602013000", "Tax_Legal_": "7E ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "GROGAN, WILLIAM H. SR. & JUDITH C", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 165400, "Improved_V": 122000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.72425784000001, "SHAPE_Area": 3453.1179806800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354466.534999996423721, 258859.438700001686811 ], [ 354452.182300001382828, 258859.197900000959635 ], [ 354465.4746999964118, 258892.684200000017881 ], [ 354482.401900000870228, 258935.327300000935793 ], [ 354487.518500000238419, 258930.036100000143051 ], [ 354513.935599997639656, 258902.717700000852346 ], [ 354544.20440000295639, 258888.039500001817942 ], [ 354538.948700003325939, 258878.005399998277426 ], [ 354523.410199999809265, 258870.913800001144409 ], [ 354505.656999997794628, 258866.442699998617172 ], [ 354466.534999996423721, 258859.438700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012700", "MAP": "D9-7339-T004", "PARCEL_NAM": "7", "ACRE": ".984", "LONGITUDE": -64.97198676, "LATITUDE": 18.3599367, "OBJECTID_1": 2376, "PARCEL_NO_": "102602012700", "Tax_Legal_": "CARET BAY 7 No.8 LITTLE NORTHSIDE QTR.", "Name": "MURDOCK, RICHARD D. & PAULA A.", "Address": "2421 Acanthus Dr", "City": "Wake Forest", "State": "North Carolina", "Zip": 27587, "Country": "United States", "Land_Value": 138900, "Improved_V": 250800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.35505079500001, "SHAPE_Area": 3854.8925934499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354452.182300001382828, 258859.197900000959635 ], [ 354439.081399999558926, 258858.978100001811981 ], [ 354420.812799997627735, 258859.425200000405312 ], [ 354410.954899996519089, 258906.440499998629093 ], [ 354435.429099999368191, 258932.883799999952316 ], [ 354463.89919999986887, 258942.083799999207258 ], [ 354473.01860000193119, 258945.030699998140335 ], [ 354482.401900000870228, 258935.327300000935793 ], [ 354465.4746999964118, 258892.684200000017881 ], [ 354452.182300001382828, 258859.197900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012600", "MAP": "D9-7339-T004", "PARCEL_NAM": "7H", "ACRE": "2.127", "LONGITUDE": -64.97247801, "LATITUDE": 18.36028372, "OBJECTID_1": 2375, "PARCEL_NO_": "102602012600", "Tax_Legal_": "7H CARET BAY NO. 8 LITTLE NORTHSIDE QUARTER", "Name": "MITCHELL, THEODORE C & SIRI AKAL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 277700, "Improved_V": 296400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 410.84237544600001, "SHAPE_Area": 9356.4338823399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354348.82490000128746, 258879.834800001233816 ], [ 354347.027500003576279, 258879.091699998825788 ], [ 354327.887199997901917, 258940.62779999896884 ], [ 354351.415399998426437, 258954.397599998861551 ], [ 354373.428800001740456, 258977.469300001859665 ], [ 354407.586599998176098, 259004.00560000166297 ], [ 354412.304999999701977, 259000.677700001746416 ], [ 354433.425499998033047, 258982.485399998724461 ], [ 354439.112899996340275, 258977.465700000524521 ], [ 354440.738099999725819, 258976.001400001347065 ], [ 354457.307800002396107, 258960.46169999986887 ], [ 354463.4983000010252, 258954.656100001186132 ], [ 354465.936999998986721, 258952.353999998420477 ], [ 354473.01860000193119, 258945.030699998140335 ], [ 354463.89919999986887, 258942.083799999207258 ], [ 354435.429099999368191, 258932.883799999952316 ], [ 354410.954899996519089, 258906.440499998629093 ], [ 354413.431599996984005, 258894.628499999642372 ], [ 354348.82490000128746, 258879.834800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012100", "MAP": "G9-353-T56", "PARCEL_NAM": "7F", "ACRE": null, "LONGITUDE": -64.97296417, "LATITUDE": 18.36101091, "OBJECTID_1": 2370, "PARCEL_NO_": "102602012100", "Tax_Legal_": "CARET BAY 7F LITTLE NORTHSIDE", "Name": "CLARK, ELIZABETH A", "Address": "2051 SHORELINE DRIVE", "City": "ALAMEDA", "State": "California", "Zip": 94501, "Country": "United States", "Land_Value": 127700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.55029587300001, "SHAPE_Area": 3865.2867450700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354354.813199996948242, 258997.954999998211861 ], [ 354313.468500003218651, 258982.460700001567602 ], [ 354304.098899997770786, 259010.242800001055002 ], [ 354299.92849999666214, 259022.608300000429153 ], [ 354297.178099997341633, 259030.7635000012815 ], [ 354311.187100000679493, 259039.335700001567602 ], [ 354345.651799999177456, 259048.848999999463558 ], [ 354348.428900003433228, 259049.331900000572205 ], [ 354367.276299998164177, 259043.464000001549721 ], [ 354383.906499996781349, 259043.201200000941753 ], [ 354383.472000002861023, 259041.55970000103116 ], [ 354382.785300001502037, 259038.965799998492002 ], [ 354382.109300002455711, 259036.411800000816584 ], [ 354381.409500002861023, 259033.768100000917912 ], [ 354381.327799998223782, 259033.699700001627207 ], [ 354381.382799997925758, 259033.566300000995398 ], [ 354383.884400002658367, 259023.876499999314547 ], [ 354384.706900000572205, 259021.983300000429153 ], [ 354387.156400002539158, 259018.414799999445677 ], [ 354366.232100002467632, 259002.234299998730421 ], [ 354354.813199996948242, 258997.954999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97821903000001, "LATITUDE": 18.35838783, "OBJECTID_1": 2239, "PARCEL_NO_": "102601023100", "Tax_Legal_": "1A&2 ESTATE PEARL No.2 SOUTHSIDE QTR.", "Name": "RICHARDS, KEITH & VALENA V", "Address": "PO Box 11127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 158400, "Improved_V": 227600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.14426870599999, "SHAPE_Area": 4013.4184366999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353766.652900002896786, 258690.979400001466274 ], [ 353763.478699997067451, 258697.884700000286102 ], [ 353756.561499997973442, 258708.46059999987483 ], [ 353743.950499996542931, 258725.192699998617172 ], [ 353730.778200000524521, 258733.765900000929832 ], [ 353809.575599998235703, 258760.375300001353025 ], [ 353812.853000000119209, 258754.2804000005126 ], [ 353815.324100002646446, 258748.178899999707937 ], [ 353817.770000003278255, 258745.032499998807907 ], [ 353835.814599998295307, 258709.294300001114607 ], [ 353766.652900002896786, 258690.979400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97796588, "LATITUDE": 18.35786313, "OBJECTID_1": 2244, "PARCEL_NO_": "102601023600", "Tax_Legal_": "PEARL ESTATE 1 No.2 SOUTHSIDE QTR.", "Name": "NATALO, PAUL G", "Address": "4190 Gulfstream Dr", "City": "Naples", "State": "Florida", "Zip": 34112, "Country": "United States", "Land_Value": 186100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.23989885, "SHAPE_Area": 3302.5124545200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353820.889499999582767, 258631.86430000141263 ], [ 353775.975599996745586, 258658.118000000715256 ], [ 353779.142599999904633, 258670.8412000015378 ], [ 353776.120200000703335, 258677.313900001347065 ], [ 353772.566600002348423, 258681.761900000274181 ], [ 353840.735200002789497, 258699.624299999326468 ], [ 353841.561300002038479, 258697.309000000357628 ], [ 353844.905199997127056, 258683.404199998825788 ], [ 353845.759999997913837, 258677.71169999986887 ], [ 353846.704800002276897, 258661.465199999511242 ], [ 353845.144299998879433, 258655.330699998885393 ], [ 353841.972999997437, 258648.971999999135733 ], [ 353839.586499996483326, 258645.152800001204014 ], [ 353832.385399997234344, 258638.549899999052286 ], [ 353820.889499999582767, 258631.86430000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97844065, "LATITUDE": 18.35751066, "OBJECTID_1": 2245, "PARCEL_NO_": "102601023700", "Tax_Legal_": "22 ESTATE PEARL SOUTHSIDE QTR.", "Name": "PENN, JOSEPH & ANDREA", "Address": "PO Box 10785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 143900, "Improved_V": 165500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.55985220399998, "SHAPE_Area": 3016.9303957000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353775.975599996745586, 258658.118000000715256 ], [ 353820.889499999582767, 258631.86430000141263 ], [ 353801.092100001871586, 258620.35080000013113 ], [ 353799.486599996685982, 258619.493299998342991 ], [ 353791.455899998545647, 258615.627900000661612 ], [ 353776.173699997365475, 258611.069899998605251 ], [ 353771.344800002872944, 258609.974899999797344 ], [ 353766.508699998259544, 258609.724199999123812 ], [ 353722.980400003492832, 258607.890299998223782 ], [ 353709.289300002157688, 258605.878400001674891 ], [ 353699.578699998557568, 258602.713100001215935 ], [ 353702.39019999653101, 258608.808299999684095 ], [ 353715.077799998223782, 258619.835299998521805 ], [ 353729.27419999986887, 258627.921300001442432 ], [ 353744.622699998319149, 258636.77309999987483 ], [ 353752.637800000607967, 258641.395599998533726 ], [ 353775.975599996745586, 258658.118000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601041900", "MAP": "D9-7590-T005", "PARCEL_NAM": "38C-1 ROW", "ACRE": ".268", "LONGITUDE": -64.97660309, "LATITUDE": 18.35776696, "OBJECTID_1": 2347, "PARCEL_NO_": "102601041900", "Tax_Legal_": "38C-1 REM ESTATE PEARL (ROAD) NO.2 SOUTHSIDE QTR", "Name": "Julner Castel, V Hippolite & Michael M Kamerica Jr", "Address": "PO Box 502361", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.84304131100001, "SHAPE_Area": 1255.23678524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353945.815399996936321, 258689.703899998217821 ], [ 353954.753300003707409, 258679.314300000667572 ], [ 353975.644400000572205, 258655.437199998646975 ], [ 353989.564000003039837, 258619.892900001257658 ], [ 353994.589100003242493, 258609.888900000602007 ], [ 353984.63120000064373, 258605.404599998146296 ], [ 353980.586599998176098, 258616.49040000140667 ], [ 353975.364200003445148, 258630.576400000602007 ], [ 353968.328500002622604, 258652.307199999690056 ], [ 353960.386900000274181, 258661.773899998515844 ], [ 353938.864500001072884, 258668.03660000115633 ], [ 353922.492700003087521, 258670.983500000089407 ], [ 353923.596799999475479, 258684.065400000661612 ], [ 353945.815399996936321, 258689.703899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97460642, "LATITUDE": 18.35537461, "OBJECTID_1": 2594, "PARCEL_NO_": "102603022100", "Tax_Legal_": "CROWN & HAWK 2C-10 S S QTR", "Name": "JULIE GERMAN EVERT LIVING TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41100, "Improved_V": 175600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.07836910500001, "SHAPE_Area": 1832.6278340900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354157.257299996912479, 258426.197000000625849 ], [ 354186.33110000193119, 258426.426100000739098 ], [ 354187.512999996542931, 258418.246100001037121 ], [ 354187.03999999910593, 258404.549400001764297 ], [ 354187.03830000013113, 258389.5472999997437 ], [ 354183.793399997055531, 258374.392700001597404 ], [ 354182.256300002336502, 258365.514199998229742 ], [ 354159.7820999994874, 258353.297899998724461 ], [ 354157.676700003445148, 258411.120299998670816 ], [ 354157.257299996912479, 258426.197000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9746377, "LATITUDE": 18.35585168, "OBJECTID_1": 2595, "PARCEL_NO_": "102603022200", "Tax_Legal_": "CROWN & HAWK 2C-9 SOUTH SIDE QTR", "Name": "HODGE, NIXON & INEZ I", "Address": "PO Box 2845", "City": "BRITISH VIRGIN ISLANDS (BVI)", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 40000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.909667361, "SHAPE_Area": 1062.11042213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354186.33110000193119, 258426.426100000739098 ], [ 354157.257299996912479, 258426.197000000625849 ], [ 354156.514399997889996, 258452.907299999147654 ], [ 354155.44709999859333, 258483.503800000995398 ], [ 354166.771700002253056, 258468.958099998533726 ], [ 354177.703000001609325, 258456.970400001853704 ], [ 354185.101999998092651, 258434.93189999833703 ], [ 354186.33110000193119, 258426.426100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021700", "MAP": "D9-4529-T88", "PARCEL_NAM": "2Da", "ACRE": ".98", "LONGITUDE": -64.97494829, "LATITUDE": 18.35567166, "OBJECTID_1": 2590, "PARCEL_NO_": "102603021700", "Tax_Legal_": "CROWN&HAWK ESTATE 2Da No.3 SOUTHSIDE QTR", "Name": "MARTIN, CALVERT A. & MARIE R", "Address": "PO Box 303694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54000, "Improved_V": 275700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.380823996, "SHAPE_Area": 3642.3984251699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354158.64019999653101, 258384.658500000834465 ], [ 354118.10080000013113, 258384.059399999678135 ], [ 354115.120700001716614, 258411.026200000196695 ], [ 354113.934799998998642, 258421.756999999284744 ], [ 354109.939400002360344, 258457.911499999463558 ], [ 354109.03320000320673, 258466.111200001090765 ], [ 354156.039899997413158, 258468.818399999290705 ], [ 354156.247500002384186, 258463.676899999380112 ], [ 354156.346699997782707, 258459.673099998384714 ], [ 354156.514399997889996, 258452.907299999147654 ], [ 354157.257299996912479, 258426.197000000625849 ], [ 354157.35869999974966, 258422.553599998354912 ], [ 354157.676700003445148, 258411.120299998670816 ], [ 354158.64019999653101, 258384.658500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603022800", "MAP": "G9-1857-T71", "PARCEL_NAM": "2DA-1", "ACRE": ".50", "LONGITUDE": -64.9749837, "LATITUDE": 18.35610222, "OBJECTID_1": 2601, "PARCEL_NO_": "102603022800", "Tax_Legal_": "2DA-1 CROWN & HAWK SOUTHSIDE QUARTER", "Name": "MARTIN, CALVERT A. & MARIE R", "Address": "PO Box 303694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.89909792900001, "SHAPE_Area": 680.65644348299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354156.039899997413158, 258468.818399999290705 ], [ 354109.03320000320673, 258466.111200001090765 ], [ 354107.32599999755621, 258481.559300001710653 ], [ 354122.087999999523163, 258481.663699999451637 ], [ 354155.502999998629093, 258481.899900000542402 ], [ 354155.512699998915195, 258481.877599999308586 ], [ 354156.039899997413158, 258468.818399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021600", "MAP": "D9-800-T69", "PARCEL_NAM": "2C-8", "ACRE": ".62", "LONGITUDE": -64.97509343, "LATITUDE": 18.35654429, "OBJECTID_1": 2589, "PARCEL_NO_": "102603021600", "Tax_Legal_": "2C-8 CROWN & HAWK NO.3B SOUTHSIDE QTR.", "Name": "VENZEN, ALANZO & DELITA BROOKS", "Address": "PO Box 301741", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.53743675700002, "SHAPE_Area": 2740.6182578100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354155.44709999859333, 258483.503800000995398 ], [ 354155.512699998915195, 258481.877599999308586 ], [ 354155.502999998629093, 258481.899900000542402 ], [ 354122.087999999523163, 258481.663699999451637 ], [ 354107.32599999755621, 258481.559300001710653 ], [ 354103.04450000077486, 258520.30290000140667 ], [ 354097.401500001549721, 258571.365499999374151 ], [ 354105.020999997854233, 258571.717099998146296 ], [ 354133.138199999928474, 258573.014600001275539 ], [ 354137.885899998247623, 258562.778499998152256 ], [ 354127.666500002145767, 258556.363800000399351 ], [ 354119.191899999976158, 258549.044900000095367 ], [ 354119.357699997723103, 258535.710400000214577 ], [ 354128.177199997007847, 258518.582400001585484 ], [ 354141.324699997901917, 258501.842399999499321 ], [ 354155.44709999859333, 258483.503800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602014700", "MAP": "D9-800-T69", "PARCEL_NAM": "2C-1", "ACRE": ".927", "LONGITUDE": -64.9741932, "LATITUDE": 18.35694832, "OBJECTID_1": 2394, "PARCEL_NO_": "102602014700", "Tax_Legal_": "CROWN & HAWK 2C-1 S S QTR", "Name": "JAMES W. HOGG TRUSTEE", "Address": "PO Box 60112", "City": "Fort Myers", "State": "Florida", "Zip": 33906, "Country": "United States", "Land_Value": 117200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 354.915142672, "SHAPE_Area": 3199.35313223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354278.916299998760223, 258586.71339999884367 ], [ 354282.106200002133846, 258585.457499999552965 ], [ 354296.434000000357628, 258579.816399998962879 ], [ 354214.113200001418591, 258552.578600000590086 ], [ 354183.984999999403954, 258542.609999999403954 ], [ 354178.822899997234344, 258549.190999999642372 ], [ 354172.926500000059605, 258552.560499999672174 ], [ 354155.622800000011921, 258562.795499999076128 ], [ 354137.885899998247623, 258562.778499998152256 ], [ 354133.138199999928474, 258573.014600001275539 ], [ 354144.699400000274181, 258577.966099999845028 ], [ 354147.874399997293949, 258575.584800001233816 ], [ 354151.578599996864796, 258574.526500001549721 ], [ 354159.516099996864796, 258573.203499998897314 ], [ 354166.924400001764297, 258572.409800000488758 ], [ 354173.538999997079372, 258572.409800000488758 ], [ 354178.301500000059605, 258572.409800000488758 ], [ 354187.297399997711182, 258572.938999999314547 ], [ 354192.589100003242493, 258572.938999999314547 ], [ 354200.526600003242493, 258573.203499998897314 ], [ 354207.934900000691414, 258574.791000001132488 ], [ 354214.020300000905991, 258576.907699998468161 ], [ 354217.989100001752377, 258578.759799998253584 ], [ 354223.545400001108646, 258580.611900001764297 ], [ 354227.7787000015378, 258582.464000001549721 ], [ 354231.218299999833107, 258584.316100001335144 ], [ 354235.45160000026226, 258587.491099998354912 ], [ 354239.685000002384186, 258590.66609999909997 ], [ 354243.124600000679493, 258592.253600001335144 ], [ 354244.447499997913837, 258592.518199998885393 ], [ 354247.357900001108646, 258592.253600001335144 ], [ 354250.532899998128414, 258590.930700000375509 ], [ 354253.707900002598763, 258590.401500001549721 ], [ 354257.941299997270107, 258589.343199998140335 ], [ 354260.322499997913837, 258588.284800000488758 ], [ 354264.291299998760223, 258587.755699999630451 ], [ 354267.99549999833107, 258587.491099998354912 ], [ 354271.699600003659725, 258586.432700000703335 ], [ 354278.916299998760223, 258586.71339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801013300", "MAP": "D9-8772-T013", "PARCEL_NAM": "4I-B-4", "ACRE": ".29", "LONGITUDE": -65.02641547, "LATITUDE": 18.34424594, "OBJECTID_1": 7214, "PARCEL_NO_": "104801013300", "Tax_Legal_": "4i-b-4 FORTUNA NO.8 WEST END QTR", "Name": "BROWN, DAVID", "Address": "15401 Whistling Oak Way", "City": "Accokeek", "State": "Maryland", "Zip": 20607, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.36433132600001, "SHAPE_Area": 1228.26427711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348677.164200000464916, 257129.640599999576807 ], [ 348733.5658999979496, 257131.961199998855591 ], [ 348733.424300000071526, 257109.835799999535084 ], [ 348678.812299996614456, 257107.571899998933077 ], [ 348677.164200000464916, 257129.640599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801012800", "MAP": "D9-8667-T012", "PARCEL_NAM": "4I-B-3", "ACRE": ".28", "LONGITUDE": -65.02634953, "LATITUDE": 18.34401726, "OBJECTID_1": 7209, "PARCEL_NO_": "104801012800", "Tax_Legal_": "4I-B-3 FORTUNA NO. 8 WEST END QTR", "Name": "LEWIS, MICHELE M", "Address": "PO Box 306717", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.76921888800001, "SHAPE_Area": 1297.8935471100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348734.879000000655651, 257076.289900001138449 ], [ 348709.445200003683567, 257076.094500001519918 ], [ 348678.812299996614456, 257107.571899998933077 ], [ 348733.424300000071526, 257109.835799999535084 ], [ 348733.255599997937679, 257083.486299999058247 ], [ 348734.104999996721745, 257078.427000001072884 ], [ 348734.879000000655651, 257076.289900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801012900", "MAP": "D9-8667-T012", "PARCEL_NAM": "4I-B-2", "ACRE": ".28", "LONGITUDE": -65.02622413, "LATITUDE": 18.34369276, "OBJECTID_1": 7210, "PARCEL_NO_": "104801012900", "Tax_Legal_": "4I-B-2 FORTUNA NO. 8 WEST END QTR", "Name": "MILLS, HENRY", "Address": "PO Box 10492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.482329222, "SHAPE_Area": 1182.9623439300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348750.676299996674061, 257049.882800001651049 ], [ 348747.915899999439716, 257037.202199999243021 ], [ 348747.358499996364117, 257037.161100000143051 ], [ 348712.570200003683567, 257050.597500000149012 ], [ 348700.128700003027916, 257057.465199999511242 ], [ 348709.445200003683567, 257076.094500001519918 ], [ 348734.879000000655651, 257076.289900001138449 ], [ 348739.059799998998642, 257064.746399998664856 ], [ 348750.470399998128414, 257050.485500000417233 ], [ 348750.676299996674061, 257049.882800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010100", "MAP": "A9-674-T006", "PARCEL_NAM": "4I-B", "ACRE": null, "LONGITUDE": -65.02651391000001, "LATITUDE": 18.34517843, "OBJECTID_1": 7189, "PARCEL_NO_": "104801010100", "Tax_Legal_": "4I-B-REM FORTUNA NO. 8 WEST END QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 631200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 430.62780359499999, "SHAPE_Area": 9407.3502955900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348741.774599999189377, 257175.016100000590086 ], [ 348673.954800002276897, 257172.614500001072884 ], [ 348673.260099999606609, 257181.916000001132488 ], [ 348603.437700003385544, 257255.986200001090765 ], [ 348763.983199998736382, 257262.745099999010563 ], [ 348761.625399999320507, 257255.548599999397993 ], [ 348756.864900000393391, 257246.432599999010563 ], [ 348752.152800001204014, 257231.617499999701977 ], [ 348742.91950000077486, 257179.612900000065565 ], [ 348741.774599999189377, 257175.016100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801013100", "MAP": "D9-8772-T013", "PARCEL_NAM": "4I-B-6", "ACRE": ".34", "LONGITUDE": -65.02640181, "LATITUDE": 18.34464, "OBJECTID_1": 7212, "PARCEL_NO_": "104801013100", "Tax_Legal_": "4i-b6 FORTUNA NO.7 WEST END QTR", "Name": "ROLAND, SHARON", "Address": "PO Box 304675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.86293991, "SHAPE_Area": 1355.82910696 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348736.542000003159046, 257154.006999999284744 ], [ 348675.540700003504753, 257151.381700001657009 ], [ 348673.954800002276897, 257172.614500001072884 ], [ 348741.774599999189377, 257175.016100000590086 ], [ 348736.542000003159046, 257154.006999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801013200", "MAP": "D9-8772-T013", "PARCEL_NAM": "4I-B-5", "ACRE": ".31", "LONGITUDE": -65.02641631, "LATITUDE": 18.34444537, "OBJECTID_1": 7213, "PARCEL_NO_": "104801013200", "Tax_Legal_": "4i-b-5 FORTUNA NO.8 WEST END QTR", "Name": "WILKINS, VIOLET M", "Address": "PO Box 306418", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.635625062, "SHAPE_Area": 1272.29787298 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348733.5658999979496, 257131.961199998855591 ], [ 348677.164200000464916, 257129.640599999576807 ], [ 348675.540700003504753, 257151.381700001657009 ], [ 348736.542000003159046, 257154.006999999284744 ], [ 348735.122500002384186, 257148.307300001382828 ], [ 348733.601499997079372, 257137.528999999165535 ], [ 348733.5658999979496, 257131.961199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102204010900", "MAP": "D9-8727-T012", "PARCEL_NAM": "6-5", "ACRE": "2.6", "LONGITUDE": -65.03211223, "LATITUDE": 18.35043275, "OBJECTID_1": 1148, "PARCEL_NO_": "102204010900", "Tax_Legal_": "6-5 BOTANY BAY NO.7 WEST END QTR", "Name": "SPECULAR LLC", "Address": "757 Massachusetts Ave", "City": "Indianapolis", "State": "Indiana", "Zip": 46204, "Country": "United States", "Land_Value": 600000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 455.94079760400001, "SHAPE_Area": 11105.348931299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348165.816600002348423, 257717.014600001275539 ], [ 348167.320799998939037, 257712.813200000673532 ], [ 348160.985052463307511, 257716.08900238541537 ], [ 348154.47860000282526, 257719.011100001633167 ], [ 348147.434094367432408, 257722.11255475494545 ], [ 348140.239927702001296, 257724.848984403914073 ], [ 348132.91499999910593, 257727.213199999183416 ], [ 348124.341001668421086, 257730.686750091495924 ], [ 348115.849299997091293, 257734.356899999082088 ], [ 348106.129273777944036, 257739.39888985097059 ], [ 348096.534699998795986, 257744.675700001418591 ], [ 348089.967104166571517, 257749.194815951545024 ], [ 348083.040899999439716, 257753.142400000244379 ], [ 348079.746752998966258, 257755.540082085353788 ], [ 348076.73600009601796, 257758.285196071898099 ], [ 348074.045100003480911, 257761.344500001519918 ], [ 348063.32940000295639, 257773.515299998223782 ], [ 348046.299999997019768, 257791.12779999896884 ], [ 348043.0641388008371, 257795.432409416360315 ], [ 348039.410400003194809, 257799.3885000012815 ], [ 348039.399300001561642, 257800.098700001835823 ], [ 348039.0304000005126, 257823.788600001484156 ], [ 348038.992700003087521, 257828.728300001472235 ], [ 348042.472300000488758, 257837.929200001060963 ], [ 348044.799199998378754, 257843.122299998998642 ], [ 348049.957000002264977, 257849.513099998235703 ], [ 348056.079300001263618, 257853.559000000357628 ], [ 348061.500799998641014, 257856.423300001770258 ], [ 348067.628499999642372, 257859.763599999248981 ], [ 348073.505199998617172, 257864.98369999974966 ], [ 348077.465999998152256, 257873.304299999028444 ], [ 348114.917999997735023, 257874.875 ], [ 348136.822200000286102, 257797.998399998992682 ], [ 348158.192699998617172, 257738.308899998664856 ], [ 348165.816600002348423, 257717.014600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102303014600", "MAP": "D9-8807-T013", "PARCEL_NAM": "6-16", "ACRE": "1.74", "LONGITUDE": -65.02764332, "LATITUDE": 18.35446161, "OBJECTID_1": 1221, "PARCEL_NO_": "102303014600", "Tax_Legal_": "6-16 BOTANY BAY NO.7 WEST END QTR", "Name": "LAWK ENTERPRISES INC", "Address": "6602 Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 250000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 370.88032251599998, "SHAPE_Area": 7543.8547356899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348617.95889999717474, 258212.41950000077486 ], [ 348613.894799999892712, 258212.899000000208616 ], [ 348492.74099999666214, 258227.193300001323223 ], [ 348493.137199997901917, 258234.889400001615286 ], [ 348496.671599999070168, 258248.945000000298023 ], [ 348498.916599996387959, 258253.035000000149012 ], [ 348502.089500002563, 258254.869500000029802 ], [ 348508.449100002646446, 258256.728399999439716 ], [ 348513.873999997973442, 258261.747900001704693 ], [ 348515.667199999094009, 258265.381900001317263 ], [ 348517.005199998617172, 258269.01240000128746 ], [ 348517.436099998652935, 258272.183400001376867 ], [ 348571.486100003123283, 258288.889400001615286 ], [ 348629.06530000269413, 258273.719900000840425 ], [ 348637.400200001895428, 258273.088500000536442 ], [ 348632.055699996650219, 258266.579700000584126 ], [ 348629.442584042262752, 258261.616922241926659 ], [ 348627.405431360646617, 258256.391259889234789 ], [ 348625.970200002193451, 258250.969300001859665 ], [ 348623.204623726021964, 258235.304834622598719 ], [ 348619.884800001978874, 258219.748399998992682 ], [ 348617.95889999717474, 258212.41950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301013400", "MAP": "D9-8325-T009", "PARCEL_NAM": "4-49", "ACRE": "4.364", "LONGITUDE": -65.03808856000001, "LATITUDE": 18.35185476, "OBJECTID_1": 1159, "PARCEL_NO_": "102301013400", "Tax_Legal_": "4-49 BOTANY BAY NO. 7 WEST END QTR", "Name": "VILLA WHYDAH LLC", "Address": "4000 Town Ctr", "City": "Southfield", "State": "Michigan", "Zip": 48075, "Country": "United States", "Land_Value": 780500, "Improved_V": 3722500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 749.07429218499999, "SHAPE_Area": 18734.865905899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347522.347199998795986, 257796.605900000780821 ], [ 347521.484899997711182, 257794.924199998378754 ], [ 347515.2753000035882, 257798.013900000602007 ], [ 347510.084526204620488, 257801.551935373514425 ], [ 347505.221199996769428, 257805.528099998831749 ], [ 347500.713112139666919, 257810.552352365950355 ], [ 347496.484421704197302, 257815.813924866350135 ], [ 347492.547600001096725, 257821.2972999997437 ], [ 347483.975100003182888, 257832.013000000268221 ], [ 347475.242600001394749, 257840.744300000369549 ], [ 347463.625299997627735, 257851.618599999696016 ], [ 347448.014799997210503, 257864.847800001502037 ], [ 347443.335942774428986, 257868.818302696425235 ], [ 347438.920200330438092, 257873.079501498345053 ], [ 347434.785599999129772, 257877.614000000059605 ], [ 347432.658249215572141, 257880.174046394124161 ], [ 347430.926153217616957, 257883.016457756020827 ], [ 347429.626199997961521, 257886.080699998885393 ], [ 347426.586344041919801, 257892.819285408506403 ], [ 347424.268399998545647, 257899.839000001549721 ], [ 347423.348332835943438, 257903.614759042247897 ], [ 347422.817327923374251, 257907.464553023746703 ], [ 347422.680900000035763, 257911.348400000482798 ], [ 347420.515899481193628, 257919.084389057825319 ], [ 347417.79280000180006, 257926.642000000923872 ], [ 347411.766800001263618, 257938.997499998658895 ], [ 347408.121173462073784, 257944.862345300643938 ], [ 347403.961599998176098, 257950.374600000679493 ], [ 347399.529799997806549, 257955.137099999934435 ], [ 347399.493100002408028, 257955.17960000038147 ], [ 347400.206000000238419, 257955.972300000488758 ], [ 347440.944899998605251, 258001.2685999982059 ], [ 347417.756800003349781, 258072.850699998438358 ], [ 347422.562299996614456, 258076.689699999988079 ], [ 347424.941699996590614, 258081.353199999779463 ], [ 347436.147299997508526, 258091.155200000852346 ], [ 347445.774499997496605, 258096.933600001037121 ], [ 347453.843000002205372, 258096.366300001740456 ], [ 347461.173600003123283, 258087.771499998867512 ], [ 347466.855499997735023, 258083.385000001639128 ], [ 347478.196000002324581, 258077.356100000441074 ], [ 347487.142800003290176, 258068.352299999445677 ], [ 347491.327899999916553, 258065.865899998694658 ], [ 347483.248199999332428, 257992.866099998354912 ], [ 347496.911799997091293, 257972.225499998778105 ], [ 347532.990000002086163, 257918.782600000500679 ], [ 347521.840300001204014, 257915.330099999904633 ], [ 347515.556400001049042, 257912.684200000017881 ], [ 347512.562306946783792, 257909.605755753582343 ], [ 347510.041648277605418, 257906.129019918094855 ], [ 347508.046743653656449, 257902.326156820723554 ], [ 347506.619000002741814, 257898.276099998503923 ], [ 347504.226062868721783, 257893.27573497503181 ], [ 347502.481210196681786, 257888.014053908293135 ], [ 347501.412167868518736, 257882.574665432010079 ], [ 347501.035923072777223, 257877.04400196831557 ], [ 347501.358454376575537, 257871.509946307836799 ], [ 347502.374636725522578, 257866.060435143619543 ], [ 347504.068322881357744, 257860.782061748264823 ], [ 347506.412600003182888, 257855.758699998259544 ], [ 347512.712920349964406, 257837.29646231784136 ], [ 347518.82150000333786, 257818.769900001585484 ], [ 347526.653200000524521, 257799.508200000971556 ], [ 347526.445561736589298, 257798.913789756246842 ], [ 347526.145645731128752, 257798.36017655429896 ], [ 347525.761153126077261, 257797.861575888091465 ], [ 347525.301956792769488, 257797.430790657177567 ], [ 347524.779847819590941, 257797.078882419329602 ], [ 347524.208232744596899, 257796.814887355460087 ], [ 347523.601789306732826, 257796.645584241719916 ], [ 347522.976089555770159, 257796.575320386327803 ], [ 347522.347199998795986, 257796.605900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301013300", "MAP": "A9-695-T006", "PARCEL_NAM": "4-33", "ACRE": "5.54", "LONGITUDE": -65.03562865000001, "LATITUDE": 18.34892097, "OBJECTID_1": 1158, "PARCEL_NO_": "102301013300", "Tax_Legal_": "4-33 BOTANY NO.7 WEST END QTR", "Name": "FIVE B LLC", "Address": "PO Box 4010", "City": "East Lansing", "State": "Michigan", "Zip": 48826, "Country": "United States", "Land_Value": 744700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 620.91403560100002, "SHAPE_Area": 22307.740691899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347815.177199997007847, 257608.855399999767542 ], [ 347697.827299997210503, 257515.2060999982059 ], [ 347699.871899999678135, 257518.294799998402596 ], [ 347698.995399996638298, 257526.520300000905991 ], [ 347697.343199998140335, 257531.15089999884367 ], [ 347690.815399996936321, 257540.174400001764297 ], [ 347682.727099999785423, 257543.0636 ], [ 347678.670400001108646, 257545.985700000077486 ], [ 347669.6300999969244, 257565.965599998831749 ], [ 347664.740099996328354, 257572.0472999997437 ], [ 347659.880599997937679, 257574.540600001811981 ], [ 347656.6554000005126, 257574.514199998229742 ], [ 347654.24719999730587, 257573.227899998426437 ], [ 347654.540200002491474, 257663.859900001436472 ], [ 347654.618100002408028, 257687.96510000154376 ], [ 347652.893899999558926, 257690.148400001227856 ], [ 347668.028399996459484, 257691.965199999511242 ], [ 347685.27929999679327, 257695.35190000012517 ], [ 347695.439300000667572, 257697.362700000405312 ], [ 347712.055200003087521, 257702.442699998617172 ], [ 347739.042700000107288, 257712.285199999809265 ], [ 347770.624899998307228, 257722.905099999159575 ], [ 347775.693436580651905, 257725.868279945047107 ], [ 347780.952799998223782, 257728.477800000458956 ], [ 347782.141769115929492, 257728.889197388722096 ], [ 347783.381509263184853, 257729.103532969485968 ], [ 347784.63958687154809, 257729.115199384046718 ], [ 347785.883088635513559, 257728.923891420476139 ], [ 347787.079482576751616, 257728.53461399851949 ], [ 347788.197469132370315, 257727.957551232946571 ], [ 347789.207800000905991, 257727.207800000905991 ], [ 347790.309073904529214, 257726.320177124434849 ], [ 347791.240639185532928, 257725.255815950396936 ], [ 347791.974540930415969, 257724.046656403254019 ], [ 347792.488755819562357, 257722.728983595094178 ], [ 347792.767853015160654, 257721.34233896250953 ], [ 347792.803457217931282, 257719.928333685878897 ], [ 347792.594499997794628, 257718.529399998486042 ], [ 347792.950667545082979, 257705.031411795760505 ], [ 347793.546999998390675, 257691.541900001466274 ], [ 347794.304733931377996, 257680.94014283712022 ], [ 347795.464926292421296, 257670.374852052162169 ], [ 347797.02589999884367, 257659.861299999058247 ], [ 347798.217426930612419, 257654.100782226712909 ], [ 347799.877198118949309, 257648.4573381509108 ], [ 347801.994039528130088, 257642.968960987956962 ], [ 347804.553700000047684, 257637.672600001096725 ], [ 347811.689143160241656, 257623.600775239377981 ], [ 347818.559000000357628, 257609.397399999201298 ], [ 347815.177199997007847, 257608.855399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-590-T002", "PARCEL_NAM": "126", "ACRE": "2.6", "LONGITUDE": -65.01115706, "LATITUDE": 18.35704836, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 416.30320099599999, "SHAPE_Area": 10466.838076599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350347.587600000202656, 258612.165899999439716 ], [ 350370.205300003290176, 258522.288100000470877 ], [ 350318.009400002658367, 258484.543600000441074 ], [ 350221.991700001060963, 258555.931800000369549 ], [ 350222.956000000238419, 258558.346000000834465 ], [ 350231.76070000231266, 258566.017400000244379 ], [ 350249.409699998795986, 258576.716600000858307 ], [ 350270.3091000020504, 258584.486999999731779 ], [ 350304.091499999165535, 258594.473799999803305 ], [ 350324.989100001752377, 258602.455299999564886 ], [ 350339.439800001680851, 258609.961800001561642 ], [ 350346.678599998354912, 258612.131999999284744 ], [ 350347.587600000202656, 258612.165899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-590-T002", "PARCEL_NAM": "123", "ACRE": "6.11", "LONGITUDE": -65.01271286, "LATITUDE": 18.35879213, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 702.49546875800002, "SHAPE_Area": 20971.020833400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350246.64019999653101, 258742.638300001621246 ], [ 350108.843400001525879, 258607.019000001251698 ], [ 350072.129199996590614, 258846.520799998193979 ], [ 350094.569300003349781, 258862.747600000351667 ], [ 350104.961499996483326, 258873.387299999594688 ], [ 350108.944499999284744, 258879.119500000029802 ], [ 350135.458599999547005, 258795.743400000035763 ], [ 350187.087700001895428, 258793.210700001567602 ], [ 350246.64019999653101, 258742.638300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-590-T002", "PARCEL_NAM": "125", "ACRE": "3.398", "LONGITUDE": -65.01116603, "LATITUDE": 18.35585213, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 511.70396498999997, "SHAPE_Area": 13273.7273668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350228.987300001084805, 258498.118700001388788 ], [ 350256.1300999969244, 258500.942299999296665 ], [ 350406.755900003015995, 258388.048900000751019 ], [ 350321.740000002086163, 258333.701699998229742 ], [ 350295.546099998056889, 258367.056099999696016 ], [ 350232.771300002932549, 258447.391100000590086 ], [ 350231.741999998688698, 258473.558299999684095 ], [ 350229.971199996769428, 258492.120000001043081 ], [ 350228.987300001084805, 258498.118700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-590-T002", "PARCEL_NAM": "127-1", "ACRE": "9.3", "LONGITUDE": -65.01027896, "LATITUDE": 18.35627515, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1197.53414438, "SHAPE_Area": 34051.952850499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350388.734499998390675, 258597.488600000739098 ], [ 350546.059799998998642, 258440.084899999201298 ], [ 350343.64360000193119, 258305.810400001704693 ], [ 350321.740000002086163, 258333.701699998229742 ], [ 350406.755900003015995, 258388.048900000751019 ], [ 350256.1300999969244, 258500.942299999296665 ], [ 350228.987300001084805, 258498.118700001388788 ], [ 350225.718400001525879, 258518.049699999392033 ], [ 350219.847699999809265, 258544.599500000476837 ], [ 350220.587499998509884, 258552.416000001132488 ], [ 350221.991700001060963, 258555.931800000369549 ], [ 350318.009400002658367, 258484.543600000441074 ], [ 350370.205300003290176, 258522.288100000470877 ], [ 350347.587600000202656, 258612.165899999439716 ], [ 350353.933600001037121, 258612.402499999850988 ], [ 350361.204800002276897, 258610.773200001567602 ], [ 350386.310199998319149, 258598.102000001817942 ], [ 350388.734499998390675, 258597.488600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-5601-T93", "PARCEL_NAM": "SOUTHERN PORTION REM of BORDEAUX", "ACRE": null, "LONGITUDE": -65.02386756, "LATITUDE": 18.35599031, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2394.9960514899999, "SHAPE_Area": 179164.961003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349094.430399999022484, 258607.160300001502037 ], [ 349100.949199996888638, 258599.192099999636412 ], [ 349108.283399999141693, 258590.17509999871254 ], [ 349111.562600001692772, 258583.869100000709295 ], [ 349113.185999996960163, 258582.615800000727177 ], [ 349127.0929000005126, 258559.298300001770258 ], [ 349134.472000002861023, 258545.004299998283386 ], [ 349139.365599997341633, 258538.500500001013279 ], [ 349145.958099998533726, 258521.877999998629093 ], [ 349147.586999997496605, 258519.991500001400709 ], [ 349147.604900002479553, 258517.880699999630451 ], [ 349152.547100000083447, 258505.677799999713898 ], [ 349155.025399997830391, 258498.73200000077486 ], [ 349159.996299996972084, 258483.151700001209974 ], [ 349160.827799998223782, 258480.203200001269579 ], [ 349167.528300002217293, 258450.916000001132488 ], [ 349169.230800002813339, 258440.375300001353025 ], [ 349170.166599996387959, 258425.184200000017881 ], [ 349168.667199999094009, 258411.873100001364946 ], [ 349166.483900003135204, 258384.201900001615286 ], [ 349165.715300001204014, 258379.762699998915195 ], [ 349161.076999999582767, 258356.293299999088049 ], [ 349160.297700002789497, 258353.12049999833107 ], [ 349156.368600003421307, 258341.056099999696016 ], [ 349150.893500000238419, 258321.168499998748302 ], [ 349140.627199999988079, 258295.753199998289347 ], [ 349138.251400001347065, 258290.667500000447035 ], [ 349127.943800002336502, 258270.107099998742342 ], [ 349103.255599997937679, 258233.80799999833107 ], [ 349102.468999996781349, 258231.479499999433756 ], [ 349091.292199999094009, 258218.300299998372793 ], [ 349069.728500001132488, 258193.848000001162291 ], [ 349068.121299996972084, 258193.20160000026226 ], [ 349064.129299998283386, 258188.524900000542402 ], [ 349062.522100001573563, 258187.878400001674891 ], [ 349054.523699998855591, 258180.213599998503923 ], [ 349035.298000000417233, 258165.279699999839067 ], [ 349024.081600002944469, 258156.744100000709295 ], [ 348991.18639999628067, 258137.265399999916553 ], [ 348961.4679000005126, 258123.512200001627207 ], [ 348950.222699999809265, 258118.353900000452995 ], [ 348926.0962999984622, 258110.768199998885393 ], [ 348895.519299998879433, 258103.129599999636412 ], [ 348889.07599999755621, 258102.232500001788139 ], [ 348860.081200003623962, 258098.195500001311302 ], [ 348838.316100001335144, 258097.384100001305342 ], [ 348810.077200002968311, 258099.263900000602007 ], [ 348789.087899997830391, 258102.047400001436472 ], [ 348786.665399998426437, 258102.449799999594688 ], [ 348768.892300002276897, 258106.315099999308586 ], [ 348774.497000001370907, 258111.004999998956919 ], [ 348777.696999996900558, 258113.9864999987185 ], [ 348780.888099998235703, 258118.023400001227856 ], [ 348784.071999996900558, 258122.904699999839067 ], [ 348784.863899998366833, 258124.599899999797344 ], [ 348788.008299998939037, 258134.124800000339746 ], [ 348788.773199997842312, 258138.986200001090765 ], [ 348787.014899998903275, 258156.07039999961853 ], [ 348787.576700001955032, 258184.783700000494719 ], [ 348789.86259999871254, 258200.42339999973774 ], [ 348794.596100002527237, 258212.70549999922514 ], [ 348795.373700000345707, 258216.089400000870228 ], [ 348796.964699998497963, 258218.635600000619888 ], [ 348800.155799999833107, 258222.672400001436472 ], [ 348806.546999998390675, 258229.690799999982119 ], [ 348822.550999999046326, 258244.176199998706579 ], [ 348837.770199999213219, 258256.122000001370907 ], [ 348849.801899999380112, 258263.60869999974966 ], [ 348855.419200003147125, 258266.821100000292063 ], [ 348866.659000001847744, 258272.61259999871254 ], [ 348869.067100003361702, 258273.898899998515844 ], [ 348890.765600003302097, 258282.520199999213219 ], [ 348905.20549999922514, 258291.293299999088049 ], [ 348912.412000000476837, 258297.262899998575449 ], [ 348916.413000002503395, 258300.884199999272823 ], [ 348923.605099998414516, 258308.542399998754263 ], [ 348932.368400000035763, 258321.06870000064373 ], [ 348933.957699999213219, 258323.825899999588728 ], [ 348935.537900000810623, 258327.6385000012815 ], [ 348936.324400000274181, 258329.967000000178814 ], [ 348939.452600002288818, 258341.391600001603365 ], [ 348940.206799998879433, 258347.519499998539686 ], [ 348939.242200002074242, 258366.087900001555681 ], [ 348937.453400000929832, 258386.760400000959635 ], [ 348936.591300003230572, 258393.297200001776218 ], [ 348930.681000001728535, 258424.490699999034405 ], [ 348926.606299996376038, 258429.523600000888109 ], [ 348923.359399996697903, 258432.030200000852346 ], [ 348902.368299998342991, 258435.02479999884963 ], [ 348898.331399999558926, 258435.625 ], [ 348886.23309999704361, 258435.94819999858737 ], [ 348863.667099997401237, 258434.496899999678135 ], [ 348865.342699997127056, 258427.122299998998642 ], [ 348884.681599996984005, 258428.758299998939037 ], [ 348900.006899997591972, 258428.250399999320507 ], [ 348920.193499997258186, 258425.038199998438358 ], [ 348922.628700003027916, 258423.15819999948144 ], [ 348928.506599999964237, 258395.764199998229742 ], [ 348931.11259999871254, 258373.831799998879433 ], [ 348932.17059999704361, 258344.287300001829863 ], [ 348930.593900002539158, 258340.052600000053644 ], [ 348929.051500000059605, 258331.807300001382828 ], [ 348928.26129999756813, 258329.901000000536442 ], [ 348925.090000003576279, 258323.542199999094009 ], [ 348919.508799999952316, 258316.108300000429153 ], [ 348904.321900002658367, 258300.363099999725819 ], [ 348891.496399998664856, 258291.392200000584126 ], [ 348858.554499998688698, 258277.401500001549721 ], [ 348846.515600003302097, 258270.75899999961257 ], [ 348840.095600001513958, 258267.117899999022484 ], [ 348827.275499999523163, 258257.513799998909235 ], [ 348827.463299997150898, 258330.131499998271465 ], [ 348828.034699998795986, 258452.359299998730421 ], [ 348828.491099998354912, 258588.096200000494719 ], [ 348827.962499998509884, 258650.153400000184774 ], [ 348828.716600000858307, 258656.281300000846386 ], [ 348828.981700003147125, 258719.822599999606609 ], [ 348828.494400002062321, 258777.024999998509884 ], [ 348870.435199998319149, 258775.890599999576807 ], [ 348880.926299996674061, 258774.921000000089407 ], [ 348919.66160000115633, 258771.438299998641014 ], [ 348935.888599999248981, 258759.749899998307228 ], [ 348943.192199997603893, 258754.321199998259544 ], [ 348973.214500002563, 258732.402100000530481 ], [ 348983.777500003576279, 258722.989399999380112 ], [ 348986.20719999819994, 258721.74269999936223 ], [ 349008.961999997496605, 258701.030699998140335 ], [ 349021.168200001120567, 258688.04280000180006 ], [ 349023.606899999082088, 258685.740699999034405 ], [ 349033.372599996626377, 258675.265999998897314 ], [ 349046.401199996471405, 258660.385000001639128 ], [ 349047.225500002503395, 258658.280799999833107 ], [ 349051.291199997067451, 258654.303300000727177 ], [ 349055.373199999332428, 258648.426100000739098 ], [ 349068.385600000619888, 258635.44480000063777 ], [ 349076.529700003564358, 258626.012200001627207 ], [ 349078.149499997496605, 258625.181099999696016 ], [ 349094.430399999022484, 258607.160300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302010500", "MAP": "A9-810-T015", "PARCEL_NAM": "120-A", "ACRE": "11.64", "LONGITUDE": -65.02096731, "LATITUDE": 18.35649089, "OBJECTID_1": 1185, "PARCEL_NO_": "102302010500", "Tax_Legal_": "BORDEAUX 119 & 120 REM. WEST END QUARTER", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1069400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1293.0996635399999, "SHAPE_Area": 50451.608513200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349410.449799999594688, 258418.857900001108646 ], [ 349206.543799996376038, 258225.679299999028444 ], [ 349189.193000003695488, 258274.197000000625849 ], [ 349253.401299998164177, 258309.55290000140667 ], [ 349250.509400002658367, 258365.046799998730421 ], [ 349264.489000000059605, 258427.855999998748302 ], [ 349271.508400000631809, 258455.777800001204014 ], [ 349230.653300002217293, 258518.771499998867512 ], [ 349139.365599997341633, 258538.500500001013279 ], [ 349134.472000002861023, 258545.004299998283386 ], [ 349127.0929000005126, 258559.298300001770258 ], [ 349113.185999996960163, 258582.615800000727177 ], [ 349111.562600001692772, 258583.869100000709295 ], [ 349108.283399999141693, 258590.17509999871254 ], [ 349100.949199996888638, 258599.192099999636412 ], [ 349094.430399999022484, 258607.160300001502037 ], [ 349083.455899998545647, 258619.307599999010563 ], [ 349222.581900000572205, 258652.957800000905991 ], [ 349249.139899998903275, 258620.458799999207258 ], [ 349382.362300001084805, 258505.6587999984622 ], [ 349390.48480000346899, 258498.759199999272823 ], [ 349428.70160000026226, 258461.497400000691414 ], [ 349410.449799999594688, 258418.857900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-6893-T001", "PARCEL_NAM": "112-C", "ACRE": "2.5", "LONGITUDE": -65.01453049, "LATITUDE": 18.35312509, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 406.69610597100001, "SHAPE_Area": 8266.6884388199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350037.758900001645088, 258096.842099998146296 ], [ 350002.501900002360344, 258068.349300000816584 ], [ 349986.791000001132488, 258073.219999998807907 ], [ 349869.456699997186661, 258098.540600001811981 ], [ 349941.881300002336502, 258171.652100000530481 ], [ 349951.622400000691414, 258161.184599999338388 ], [ 349966.919100001454353, 258148.712799999862909 ], [ 349999.427299998700619, 258121.895399998873472 ], [ 350029.669900000095367, 258102.190999999642372 ], [ 350037.758900001645088, 258096.842099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "G", "ACRE": "2.410", "LONGITUDE": -65.01554843, "LATITUDE": 18.35480818, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 471.35778942299999, "SHAPE_Area": 8749.4704655799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349918.302599996328354, 258256.3108000010252 ], [ 349911.114100001752377, 258248.230399999767542 ], [ 349871.153499998152256, 258207.553300000727177 ], [ 349867.879000000655651, 258211.990600001066923 ], [ 349796.843299999833107, 258315.478399999439716 ], [ 349802.849600002169609, 258367.667599998414516 ], [ 349808.299599997699261, 258390.510400000959635 ], [ 349834.000799998641014, 258392.590199999511242 ], [ 349833.300700001418591, 258390.081700000911951 ], [ 349835.877899996936321, 258371.526599999517202 ], [ 349842.511799998581409, 258350.049300000071526 ], [ 349862.199500001966953, 258310.73589999973774 ], [ 349867.962399996817112, 258296.850900001823902 ], [ 349877.767599999904633, 258281.732500001788139 ], [ 349883.480099998414516, 258273.757699999958277 ], [ 349893.23139999806881, 258264.971500001847744 ], [ 349899.712499998509884, 258261.436000000685453 ], [ 349906.191799998283386, 258258.1114999987185 ], [ 349918.302599996328354, 258256.3108000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "H", "ACRE": "3.25", "LONGITUDE": -65.0160105, "LATITUDE": 18.35404154, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 526.63122395000005, "SHAPE_Area": 13987.2775736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349741.681699998676777, 258164.728300001472235 ], [ 349742.432300001382828, 258171.278299998492002 ], [ 349746.327200002968311, 258187.353300001472235 ], [ 349724.456000000238419, 258198.995600000023842 ], [ 349738.0878000035882, 258207.973099999129772 ], [ 349772.970399998128414, 258278.130499999970198 ], [ 349796.843299999833107, 258315.478399999439716 ], [ 349867.879000000655651, 258211.990600001066923 ], [ 349871.153499998152256, 258207.553300000727177 ], [ 349776.110600002110004, 258110.806099999696016 ], [ 349782.321000002324581, 258127.064100001007318 ], [ 349775.001299999654293, 258134.392400000244379 ], [ 349750.601499997079372, 258158.890700001269579 ], [ 349744.91950000077486, 258163.277100000530481 ], [ 349741.681699998676777, 258164.728300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "F", "ACRE": "4.8", "LONGITUDE": -65.01621908, "LATITUDE": 18.356174, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 640.36706340399996, "SHAPE_Area": 18505.609187900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349682.772699996829033, 258453.866500001400709 ], [ 349748.723099999129772, 258474.037999998778105 ], [ 349816.027199998497963, 258524.618000000715256 ], [ 349833.580799996852875, 258546.504299998283386 ], [ 349851.436599999666214, 258532.929400000721216 ], [ 349860.453500002622604, 258515.693500000983477 ], [ 349862.940800003707409, 258507.692299999296665 ], [ 349864.699000000953674, 258490.6081000007689 ], [ 349868.026799999177456, 258478.603000000119209 ], [ 349863.340000003576279, 258460.832800000905991 ], [ 349857.02250000089407, 258445.160199999809265 ], [ 349849.045699998736382, 258434.962400000542402 ], [ 349844.310300000011921, 258422.89130000025034 ], [ 349841.923799999058247, 258419.07209999859333 ], [ 349839.533600002527237, 258415.675000000745058 ], [ 349837.177599996328354, 258408.267499998211861 ], [ 349836.430600002408028, 258401.295299999415874 ], [ 349834.000799998641014, 258392.590199999511242 ], [ 349808.299599997699261, 258390.510400000959635 ], [ 349803.30349999666214, 258409.045699998736382 ], [ 349726.802699998021126, 258396.809399999678135 ], [ 349676.97860000282526, 258376.769900001585484 ], [ 349642.949799999594688, 258395.700899999588728 ], [ 349682.772699996829033, 258453.866500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-6893-T001", "PARCEL_NAM": "112-I", "ACRE": "2.314", "LONGITUDE": -65.01206965, "LATITUDE": 18.35538322, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 503.25377199500002, "SHAPE_Area": 8510.7523395699991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350184.593400001525879, 258298.309099998325109 ], [ 350184.576800003647804, 258298.336599998176098 ], [ 350124.423100002110004, 258376.288600001484156 ], [ 350130.144100002944469, 258378.368000000715256 ], [ 350160.782200001180172, 258378.829799998551607 ], [ 350192.25900000333786, 258375.498799998313189 ], [ 350199.515799999237061, 258375.558200001716614 ], [ 350222.045800000429153, 258381.231100000441074 ], [ 350226.057599999010563, 258383.585900001227856 ], [ 350229.255800001323223, 258386.778499998152256 ], [ 350231.635200001299381, 258391.44200000166893 ], [ 350230.729999996721745, 258403.044799998402596 ], [ 350232.951099999248981, 258426.28319999948144 ], [ 350232.771300002932549, 258447.391100000590086 ], [ 350295.546099998056889, 258367.056099999696016 ], [ 350227.227099999785423, 258340.954599998891354 ], [ 350184.593400001525879, 258298.309099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-6893-T001", "PARCEL_NAM": "112-A", "ACRE": "3.66", "LONGITUDE": -65.01531126, "LATITUDE": 18.35278439, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 622.35569433499995, "SHAPE_Area": 16068.145556699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349941.413099996745586, 258021.8918999992311 ], [ 349906.108900003135204, 257993.533300001174212 ], [ 349888.175599999725819, 258006.551600001752377 ], [ 349874.383799999952316, 258016.360199999064207 ], [ 349856.535199999809265, 258029.090799998492002 ], [ 349838.686599999666214, 258041.821400001645088 ], [ 349817.594800002872944, 258056.636399999260902 ], [ 349798.934600003063679, 258069.993700001388788 ], [ 349780.276100002229214, 258083.139899998903275 ], [ 349760.804099999368191, 258097.123799998313189 ], [ 349776.110600002110004, 258110.806099999696016 ], [ 349835.413800001144409, 258171.172699999064207 ], [ 349869.456699997186661, 258098.540600001811981 ], [ 349986.791000001132488, 258073.219999998807907 ], [ 350002.501900002360344, 258068.349300000816584 ], [ 349967.961599998176098, 258043.217399999499321 ], [ 349941.413099996745586, 258021.8918999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-6893-T001", "PARCEL_NAM": "112-B", "ACRE": "2.04", "LONGITUDE": -65.01514426, "LATITUDE": 18.35368334, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 392.23213172800001, "SHAPE_Area": 7923.0937325799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349941.881300002336502, 258171.652100000530481 ], [ 349869.456699997186661, 258098.540600001811981 ], [ 349835.413800001144409, 258171.172699999064207 ], [ 349911.114100001752377, 258248.230399999767542 ], [ 349918.302599996328354, 258256.3108000010252 ], [ 349921.622800000011921, 258232.087499998509884 ], [ 349922.368299998342991, 258217.614399999380112 ], [ 349923.742200002074242, 258203.775699999183416 ], [ 349926.991599999368191, 258193.09910000115633 ], [ 349935.336599998176098, 258178.684900000691414 ], [ 349941.881300002336502, 258171.652100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-6893-T001", "PARCEL_NAM": "112-G", "ACRE": "2.35", "LONGITUDE": -65.01344482, "LATITUDE": 18.35464334, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 377.50027413399999, "SHAPE_Area": 5984.0350165099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350130.086300000548363, 258243.786800000816584 ], [ 350015.219300001859665, 258249.809599999338388 ], [ 350027.314900003373623, 258282.638099998235703 ], [ 350049.29730000346899, 258306.415300000458956 ], [ 350023.777500003576279, 258330.453600000590086 ], [ 350027.843500003218651, 258334.753699999302626 ], [ 350031.345299996435642, 258333.229699999094009 ], [ 350045.086800001561642, 258329.331399999558926 ], [ 350055.572499997913837, 258328.995000001043081 ], [ 350065.230200000107288, 258331.184999998658895 ], [ 350071.806599996984005, 258334.842399999499321 ], [ 350130.086300000548363, 258243.786800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-6893-T001", "PARCEL_NAM": "112-H", "ACRE": "2.33", "LONGITUDE": -65.01287533, "LATITUDE": 18.35492477, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.35117118300002, "SHAPE_Area": 7473.2844872400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350130.086300000548363, 258243.786800000816584 ], [ 350071.806599996984005, 258334.842399999499321 ], [ 350074.861000001430511, 258336.54109999909997 ], [ 350108.46000000089407, 258368.05799999833107 ], [ 350116.478200003504753, 258373.401000000536442 ], [ 350124.423100002110004, 258376.288600001484156 ], [ 350184.576800003647804, 258298.336599998176098 ], [ 350184.593400001525879, 258298.309099998325109 ], [ 350130.086300000548363, 258243.786800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-6893-T001", "PARCEL_NAM": "112-F", "ACRE": "2.06", "LONGITUDE": -65.01424332000001, "LATITUDE": 18.35505602, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.67051679000002, "SHAPE_Area": 7150.8404862899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350027.314900003373623, 258282.638099998235703 ], [ 349927.746500000357628, 258301.082600001245737 ], [ 349931.454300001263618, 258321.64640000090003 ], [ 349933.014799997210503, 258327.780799999833107 ], [ 349939.33219999819994, 258343.453499998897314 ], [ 349940.07379999756813, 258351.058899998664856 ], [ 349945.628100000321865, 258361.659000001847744 ], [ 349947.993100002408028, 258368.011199999600649 ], [ 349951.981499999761581, 258373.110100001096725 ], [ 349955.991400003433228, 258375.675999999046326 ], [ 349961.60869999974966, 258378.888399999588728 ], [ 349967.245700001716614, 258379.778900001198053 ], [ 349971.273599997162819, 258380.234099999070168 ], [ 349980.164599999785423, 258377.773699998855591 ], [ 349987.469999998807907, 258372.13399999961257 ], [ 349996.44370000064373, 258359.964000001549721 ], [ 350002.950000002980232, 258353.473400000482798 ], [ 350023.251599997282028, 258336.752000000327826 ], [ 350027.843500003218651, 258334.753699999302626 ], [ 350023.777500003576279, 258330.453600000590086 ], [ 350049.29730000346899, 258306.415300000458956 ], [ 350027.314900003373623, 258282.638099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-6893-T001", "PARCEL_NAM": "112-D", "ACRE": "2.327", "LONGITUDE": -65.01373401, "LATITUDE": 18.35370373, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 509.398327225, "SHAPE_Area": 12683.5314518 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350078.999300003051758, 258130.170299999415874 ], [ 350037.758900001645088, 258096.842099998146296 ], [ 350029.669900000095367, 258102.190999999642372 ], [ 349999.427299998700619, 258121.895399998873472 ], [ 349966.919100001454353, 258148.712799999862909 ], [ 349951.622400000691414, 258161.184599999338388 ], [ 350052.648699998855591, 258247.847100000828505 ], [ 350130.086300000548363, 258243.786800000816584 ], [ 350072.113399997353554, 258185.797899998724461 ], [ 350078.1908999979496, 258134.97410000115633 ], [ 350078.999300003051758, 258130.170299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-6893-T001", "PARCEL_NAM": "112-E", "ACRE": "2.002", "LONGITUDE": -65.0143638, "LATITUDE": 18.35426013, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 463.66146985799998, "SHAPE_Area": 10610.297500500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350052.648699998855591, 258247.847100000828505 ], [ 349951.622400000691414, 258161.184599999338388 ], [ 349935.336599998176098, 258178.684900000691414 ], [ 349926.991599999368191, 258193.09910000115633 ], [ 349923.742200002074242, 258203.775699999183416 ], [ 349922.368299998342991, 258217.614399999380112 ], [ 349921.622800000011921, 258232.087499998509884 ], [ 349918.302599996328354, 258256.3108000010252 ], [ 349924.740500003099442, 258257.841099999845028 ], [ 349929.537100002169609, 258262.735599998384714 ], [ 349930.287600003182888, 258269.285599999129772 ], [ 349930.957299999892712, 258285.334199998527765 ], [ 349927.604299999773502, 258300.294399999082088 ], [ 349927.746500000357628, 258301.082600001245737 ], [ 350027.314900003373623, 258282.638099998235703 ], [ 350015.219300001859665, 258249.809599999338388 ], [ 350052.648699998855591, 258247.847100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D3-332-T76", "PARCEL_NAM": "106", "ACRE": null, "LONGITUDE": -65.01699389, "LATITUDE": 18.35812181, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 633.948789261, "SHAPE_Area": 15780.558297899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349794.588600002229214, 258692.581000000238419 ], [ 349776.792599998414516, 258681.350499998778105 ], [ 349763.1824000030756, 258669.84010000154376 ], [ 349758.411100000143051, 258661.990499999374151 ], [ 349756.911799997091293, 258648.679400000721216 ], [ 349761.895300000905991, 258631.621599998325109 ], [ 349770.089699998497963, 258616.278799999505281 ], [ 349783.130900003015995, 258599.920299999415874 ], [ 349785.603799998760223, 258593.607700001448393 ], [ 349762.048100002110004, 258613.679900001734495 ], [ 349747.45719999819994, 258622.637499999254942 ], [ 349738.553599998354912, 258626.575399998575449 ], [ 349724.012999996542931, 258629.622800000011921 ], [ 349715.946299999952316, 258629.978999998420477 ], [ 349691.805399999022484, 258624.081799998879433 ], [ 349686.189999997615814, 258620.658399999141693 ], [ 349681.402500003576279, 258614.708599999547005 ], [ 349672.556400001049042, 258611.892000000923872 ], [ 349668.542900003492832, 258609.748199999332428 ], [ 349662.155299998819828, 258602.307599999010563 ], [ 349652.495700001716614, 258600.328699998557568 ], [ 349642.857699997723103, 258595.816899999976158 ], [ 349638.052199997007847, 258591.977899998426437 ], [ 349629.260099999606609, 258582.828899998217821 ], [ 349626.848399996757507, 258581.964800000190735 ], [ 349621.222199998795986, 258579.807799998670816 ], [ 349613.963600002229214, 258579.959499999880791 ], [ 349609.913999997079372, 258582.037300001829863 ], [ 349609.872699998319149, 258586.892099998891354 ], [ 349611.395400002598763, 258597.459199998527765 ], [ 349624.435599997639656, 258675.881700001657009 ], [ 349625.995999999344349, 258682.016100000590086 ], [ 349630.373599998652935, 258709.640700001269579 ], [ 349649.062100000679493, 258724.670400001108646 ], [ 349679.820000000298023, 258723.347500000149012 ], [ 349701.648100003600121, 258720.370900001376867 ], [ 349736.043999999761581, 258714.087099999189377 ], [ 349777.385300002992153, 258706.811000000685453 ], [ 349791.27589999884367, 258699.535000000149012 ], [ 349794.588600002229214, 258692.581000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-2", "ACRE": ".81", "LONGITUDE": -65.01939629, "LATITUDE": 18.35473172, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 325.53985525799999, "SHAPE_Area": 4168.3651413199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349391.999799996614456, 258340.168400000780821 ], [ 349401.47240000218153, 258342.500199999660254 ], [ 349415.166299998760223, 258344.964999999850988 ], [ 349418.352799996733665, 258342.106300000101328 ], [ 349419.435999996960163, 258338.445000000298023 ], [ 349421.306100003421307, 258335.314100001007318 ], [ 349423.691500000655651, 258333.759799998253584 ], [ 349427.13570000231266, 258331.689399998635054 ], [ 349433.498700000345707, 258327.282499998807907 ], [ 349443.060500003397465, 258318.444400001317263 ], [ 349452.90820000320673, 258306.725099999457598 ], [ 349458.526799999177456, 258296.2837999984622 ], [ 349462.05799999833107, 258282.942999999970198 ], [ 349465.603500001132488, 258267.767499998211861 ], [ 349480.7212999984622, 258223.809599999338388 ], [ 349478.289800003170967, 258225.267299998551607 ], [ 349475.860100001096725, 258226.513999998569489 ], [ 349474.241999998688698, 258227.134100001305342 ], [ 349470.201499998569489, 258228.156500000506639 ], [ 349466.164499998092651, 258228.756700001657009 ], [ 349451.676100000739098, 258225.682799998670816 ], [ 349391.999799996614456, 258340.168400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-5", "ACRE": ".45", "LONGITUDE": -65.01970315, "LATITUDE": 18.35557055, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.46358507100001, "SHAPE_Area": 1625.2750835 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349413.570200003683567, 258426.147799998521805 ], [ 349419.100699998438358, 258416.029100000858307 ], [ 349422.323700003325939, 258408.452599998563528 ], [ 349422.905699998140335, 258401.379999998956919 ], [ 349422.911700002849102, 258400.593699999153614 ], [ 349422.686499997973442, 258395.611699998378754 ], [ 349415.444799996912479, 258377.207600001245737 ], [ 349412.351300001144409, 258368.00959999859333 ], [ 349413.462700001895428, 258360.678899999707937 ], [ 349415.651199996471405, 258350.473200000822544 ], [ 349415.4037000015378, 258348.374400001019239 ], [ 349413.563900001347065, 258347.573800001293421 ], [ 349406.973600000143051, 258347.260800000280142 ], [ 349399.332500003278255, 258346.415500000119209 ], [ 349391.427799999713898, 258345.56810000166297 ], [ 349389.681500002741814, 258344.61600000038743 ], [ 349383.635499998927116, 258356.214999999850988 ], [ 349413.570200003683567, 258426.147799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-6", "ACRE": ".73", "LONGITUDE": -65.01940414000001, "LATITUDE": 18.35585253, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.20391940900001, "SHAPE_Area": 2011.49347038 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349419.842200003564358, 258440.800200000405312 ], [ 349461.124099999666214, 258438.023800000548363 ], [ 349461.165899999439716, 258432.605200000107288 ], [ 349461.216499999165535, 258426.052600000053644 ], [ 349461.238799996674061, 258423.16950000077486 ], [ 349461.250900000333786, 258421.596900001168251 ], [ 349459.958800002932549, 258418.179400000721216 ], [ 349458.409000001847744, 258413.973600000143051 ], [ 349451.116700001060963, 258402.122000001370907 ], [ 349443.264600001275539, 258394.46000000089407 ], [ 349434.166900001466274, 258377.352099999785423 ], [ 349430.260099999606609, 258371.031199999153614 ], [ 349427.128200002014637, 258366.813099998980761 ], [ 349424.807599999010563, 258359.980099998414516 ], [ 349424.314599998295307, 258355.520300000905991 ], [ 349423.29619999974966, 258350.794399999082088 ], [ 349423.054799996316433, 258347.909200001507998 ], [ 349421.476700000464916, 258347.372800000011921 ], [ 349420.941200003027916, 258348.417100001126528 ], [ 349417.866599999368191, 258370.935499999672174 ], [ 349421.743000000715256, 258381.188000001013279 ], [ 349426.155000001192093, 258390.396099999547005 ], [ 349427.944200001657009, 258397.749200001358986 ], [ 349427.919900000095367, 258400.894400000572205 ], [ 349427.621799997985363, 258405.348099999129772 ], [ 349426.26690000295639, 258410.055799998342991 ], [ 349424.656400002539158, 258413.712999999523163 ], [ 349420.102799996733665, 258422.85190000012517 ], [ 349415.734200000762939, 258431.203299999237061 ], [ 349419.842200003564358, 258440.800200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02191905, "LATITUDE": 18.35961991, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1711.1642502, "SHAPE_Area": 80865.267200200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349492.156099997460842, 258774.646299999207258 ], [ 349482.659500002861023, 258687.022599998861551 ], [ 349473.530900001525879, 258686.750399999320507 ], [ 349465.215499997138977, 258686.282800000160933 ], [ 349444.537600003182888, 258683.904699999839067 ], [ 349425.692100003361702, 258680.734000001102686 ], [ 349423.659999996423721, 258681.121599998325109 ], [ 349417.378200002014637, 258680.064699999988079 ], [ 349414.745300002396107, 258679.439399998635054 ], [ 349411.715899996459484, 258677.600900001823902 ], [ 349388.681199997663498, 258665.120600000023842 ], [ 349379.99889999628067, 258659.608199998736382 ], [ 349375.549300000071526, 258657.758799999952316 ], [ 349372.71339999884367, 258657.131799999624491 ], [ 349368.053199999034405, 258656.289200000464916 ], [ 349363.789300002157688, 258656.659600000828505 ], [ 349359.921899996697903, 258658.243200000375509 ], [ 349356.859899997711182, 258660.639699999243021 ], [ 349351.942199997603893, 258666.853799998760223 ], [ 349348.624300003051758, 258676.105500001460314 ], [ 349346.130500003695488, 258683.750100001692772 ], [ 349341.968400001525879, 258697.230500001460314 ], [ 349339.265500001609325, 258705.680100001394749 ], [ 349334.310500003397465, 258716.734200000762939 ], [ 349329.790799997746944, 258723.959800001233816 ], [ 349326.714800000190735, 258728.171300001442432 ], [ 349323.849399998784065, 258731.3761 ], [ 349319.978900000452995, 258733.363000001758337 ], [ 349314.285499997437, 258734.932500001043081 ], [ 349306.769199997186661, 258736.084600001573563 ], [ 349293.781099997460842, 258736.387800000607967 ], [ 349284.654100000858307, 258735.914000000804663 ], [ 349279.567800000309944, 258737.689899999648333 ], [ 349267.954800002276897, 258743.852299999445677 ], [ 349262.247400000691414, 258747.236900001764297 ], [ 349258.784299999475479, 258749.025299999862909 ], [ 349244.552299998700619, 258752.747400000691414 ], [ 349225.031300000846386, 258758.243900001049042 ], [ 349204.523699998855591, 258760.10249999910593 ], [ 349198.619699999690056, 258762.678800001740456 ], [ 349194.335699997842312, 258765.671000000089407 ], [ 349190.2483000010252, 258769.471400000154972 ], [ 349178.38740000128746, 258781.480700001120567 ], [ 349170.407799996435642, 258790.091299999505281 ], [ 349156.294900000095367, 258804.704999998211861 ], [ 349147.928199999034405, 258810.892599999904633 ], [ 349136.31530000269413, 258817.055100001394749 ], [ 349125.32660000026226, 258821.205699998885393 ], [ 349114.548500001430511, 258824.349500000476837 ], [ 349104.184000000357628, 258826.488099999725819 ], [ 349082.432800002396107, 258831.765799999237061 ], [ 349062.71679999679327, 258836.252500001341105 ], [ 349052.748700000345707, 258839.604299999773502 ], [ 349042.983599998056889, 258842.957600001245737 ], [ 349033.210699997842312, 258847.319200001657009 ], [ 349019.16160000115633, 258853.664700001478195 ], [ 349012.447599999606609, 258856.03319999948144 ], [ 349005.132700003683567, 258857.388599999248981 ], [ 348995.192699998617172, 258857.110399998724461 ], [ 348982.218599997460842, 258855.598700001835823 ], [ 348970.678700000047684, 258852.283100001513958 ], [ 348959.358800001442432, 258846.750599998980761 ], [ 348952.700699999928474, 258841.859099999070168 ], [ 348941.822200000286102, 258831.691500000655651 ], [ 348935.785199999809265, 258825.191399998962879 ], [ 348930.734600000083447, 258822.328999999910593 ], [ 348922.244300000369549, 258818.230099998414516 ], [ 348914.371899999678135, 258812.925900001078844 ], [ 348909.733300000429153, 258809.260000001639128 ], [ 348903.89919999986887, 258802.761399999260902 ], [ 348900.093900002539158, 258796.278499998152256 ], [ 348898.944799996912479, 258787.395799998193979 ], [ 348900.433300003409386, 258778.533399999141693 ], [ 348901.110600002110004, 258773.106199998408556 ], [ 348880.926299996674061, 258774.921000000089407 ], [ 348870.435199998319149, 258775.890599999576807 ], [ 348828.494400002062321, 258777.024999998509884 ], [ 348828.662299998104572, 258851.964600000530481 ], [ 348828.957999996840954, 258911.917599998414516 ], [ 348972.17230000346899, 258949.397799998521805 ], [ 349011.737400002777576, 258943.177700001746416 ], [ 349254.0878000035882, 258891.543499998748302 ], [ 349492.156099997460842, 258774.646299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-484-T95", "PARCEL_NAM": "B", "ACRE": "3.5", "LONGITUDE": -65.01798104, "LATITUDE": 18.35431713, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 507.00080450500002, "SHAPE_Area": 13481.426231199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349669.163500003516674, 258176.978700000792742 ], [ 349512.793200001120567, 258211.334499999880791 ], [ 349523.240099996328354, 258249.488800000399351 ], [ 349516.555799998342991, 258276.876299999654293 ], [ 349521.170699998736382, 258303.089600000530481 ], [ 349547.030299998819828, 258296.546300001442432 ], [ 349572.002599999308586, 258299.494899999350309 ], [ 349625.265900000929832, 258294.442400000989437 ], [ 349636.622699998319149, 258286.513799998909235 ], [ 349634.44650000333786, 258257.998399998992682 ], [ 349636.091499999165535, 258254.212099999189377 ], [ 349639.368900001049042, 258248.117199998348951 ], [ 349654.130599997937679, 258219.107099998742342 ], [ 349680.850400000810623, 258206.238000001758337 ], [ 349669.163500003516674, 258176.978700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-17", "ACRE": ".39", "LONGITUDE": -65.01885272, "LATITUDE": 18.35426569, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.383800689, "SHAPE_Area": 1129.9846246499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349477.608599998056889, 258245.194200001657009 ], [ 349505.330399997532368, 258262.601799998432398 ], [ 349505.389899998903275, 258262.016600001603365 ], [ 349512.793200001120567, 258211.334499999880791 ], [ 349485.614900000393391, 258217.305700000375509 ], [ 349477.608599998056889, 258245.194200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01874251, "LATITUDE": 18.35384232, "OBJECTID_1": 1252, "PARCEL_NO_": "102304020100", "Tax_Legal_": "BORDEAUX 18 WEST END QTR", "Name": "DASANT, RALPH", "Address": "PO Box 374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38900, "Improved_V": 116600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.122330809, "SHAPE_Area": 1901.8748254300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349514.362700000405312, 258155.690600000321865 ], [ 349498.990599997341633, 258161.686500001698732 ], [ 349497.370800003409386, 258162.517599999904633 ], [ 349494.12219999730587, 258165.235300000756979 ], [ 349490.8412000015378, 258171.752300001680851 ], [ 349490.584100000560284, 258201.936599999666214 ], [ 349485.614900000393391, 258217.305700000375509 ], [ 349512.793200001120567, 258211.334499999880791 ], [ 349534.008299998939037, 258206.673300001770258 ], [ 349529.801600001752377, 258193.74269999936223 ], [ 349517.155799999833107, 258154.871899999678135 ], [ 349514.362700000405312, 258155.690600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01850232, "LATITUDE": 18.35374794, "OBJECTID_1": 1253, "PARCEL_NO_": "102304020200", "Tax_Legal_": "BORDEAUX 17 WEST END QTR", "Name": "TODMAN, MAXWELL", "Address": "1833 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28100, "Improved_V": 123400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.919282267, "SHAPE_Area": 971.17195834500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349517.155799999833107, 258154.871899999678135 ], [ 349529.801600001752377, 258193.74269999936223 ], [ 349534.008299998939037, 258206.673300001770258 ], [ 349550.447499997913837, 258203.061500001698732 ], [ 349546.323899999260902, 258190.149399999529123 ], [ 349535.380800001323223, 258149.529800001531839 ], [ 349517.155799999833107, 258154.871899999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01834135, "LATITUDE": 18.35371457, "OBJECTID_1": 1254, "PARCEL_NO_": "102304020300", "Tax_Legal_": "BORDEAUX 16 6 WEST END QTR", "Name": "MONSANTO, LEON & ELSIE", "Address": "PO Box 302188", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27000, "Improved_V": 133300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.951931339, "SHAPE_Area": 957.41467314800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349546.323899999260902, 258190.149399999529123 ], [ 349550.447499997913837, 258203.061500001698732 ], [ 349567.036499999463558, 258199.416799999773502 ], [ 349563.288900002837181, 258186.488499999046326 ], [ 349551.546599999070168, 258145.018100000917912 ], [ 349535.380800001323223, 258149.529800001531839 ], [ 349546.323899999260902, 258190.149399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01813517, "LATITUDE": 18.35366285, "OBJECTID_1": 1255, "PARCEL_NO_": "102304020400", "Tax_Legal_": "BORDEAUX 15 WEST END QTR", "Name": "WALTERS, NORMA", "Address": "14 WOOD CENTER LANE", "City": "PALM COAST", "State": "Florida", "Zip": 32164, "Country": "United States", "Land_Value": 29200, "Improved_V": 127200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.30941417, "SHAPE_Area": 1600.5877720599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349594.146899998188019, 258193.460400000214577 ], [ 349590.755599997937679, 258180.591600000858307 ], [ 349578.221500001847744, 258137.425900001078844 ], [ 349551.546599999070168, 258145.018100000917912 ], [ 349563.288900002837181, 258186.488499999046326 ], [ 349567.036499999463558, 258199.416799999773502 ], [ 349594.146899998188019, 258193.460400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01790201, "LATITUDE": 18.35360526, "OBJECTID_1": 1256, "PARCEL_NO_": "102304020500", "Tax_Legal_": "BORDEAUX 14 WEST END QTR", "Name": "BERNIER-BROWN, DIANA", "Address": "PO Box 305334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29200, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.68873702900001, "SHAPE_Area": 1361.07831227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349617.185599997639656, 258188.398699998855591 ], [ 349613.375500001013279, 258175.710499998182058 ], [ 349600.049400001764297, 258130.849599998444319 ], [ 349592.772799998521805, 258133.112100001424551 ], [ 349578.221500001847744, 258137.425900001078844 ], [ 349590.755599997937679, 258180.591600000858307 ], [ 349594.146899998188019, 258193.460400000214577 ], [ 349617.185599997639656, 258188.398699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01744584, "LATITUDE": 18.35352462, "OBJECTID_1": 1258, "PARCEL_NO_": "102304020700", "Tax_Legal_": "BORDEAUX 12 WEST END QTR", "Name": "BOYNES, THADIUS, JR.", "Address": "PO Box 7176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30300, "Improved_V": 109300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.93415238, "SHAPE_Area": 1495.49603181 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349635.995399996638298, 258170.8293999992311 ], [ 349638.215000003576279, 258183.778299998492002 ], [ 349669.163500003516674, 258176.978700000792742 ], [ 349664.270300000905991, 258164.728000000119209 ], [ 349650.033600002527237, 258132.103100001811981 ], [ 349648.4425999969244, 258129.55689999833703 ], [ 349646.85869999974966, 258126.166499998420477 ], [ 349642.054999999701977, 258122.116399999707937 ], [ 349635.615299999713898, 258120.797100000083447 ], [ 349627.541400000452995, 258121.997600000351667 ], [ 349635.995399996638298, 258170.8293999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01768554, "LATITUDE": 18.35353288, "OBJECTID_1": 1257, "PARCEL_NO_": "102304020600", "Tax_Legal_": "13 BORDEAUX NO. 6 WEST END QTR", "Name": "WINNIKA PHILLIP-DeGOUT & DONNA M. PHILLIP", "Address": "BOX 2994", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29200, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.15517694799999, "SHAPE_Area": 1542.6400418400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349613.375500001013279, 258175.710499998182058 ], [ 349617.185599997639656, 258188.398699998855591 ], [ 349638.215000003576279, 258183.778299998492002 ], [ 349635.995399996638298, 258170.8293999992311 ], [ 349627.541400000452995, 258121.997600000351667 ], [ 349600.049400001764297, 258130.849599998444319 ], [ 349613.375500001013279, 258175.710499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-5600-T93", "PARCEL_NAM": "115", "ACRE": null, "LONGITUDE": -65.01827658000001, "LATITUDE": 18.35629184, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 981.65437731999998, "SHAPE_Area": 13595.2579611 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349512.793200001120567, 258211.334499999880791 ], [ 349505.389899998903275, 258262.016600001603365 ], [ 349495.891800001263618, 258355.374200001358986 ], [ 349548.568400003015995, 258426.698300000280142 ], [ 349572.630800001323223, 258463.749800000339746 ], [ 349528.813699997961521, 258482.929800000041723 ], [ 349532.5033999979496, 258483.220400001853704 ], [ 349534.592600002884865, 258485.857700001448393 ], [ 349534.568300001323223, 258489.002900000661612 ], [ 349535.053199999034405, 258494.511100001633167 ], [ 349535.779500000178814, 258502.904399998486042 ], [ 349537.041199997067451, 258510.253400001674891 ], [ 349540.096100002527237, 258524.431200001388788 ], [ 349545.021200001239777, 258535.478100001811981 ], [ 349556.408900000154972, 258563.350299999117851 ], [ 349565.224500000476837, 258582.814899999648333 ], [ 349571.405199997127056, 258601.997000001370907 ], [ 349574.23480000346899, 258611.192800000309944 ], [ 349577.591899998486042, 258620.392799999564886 ], [ 349578.604099996387959, 258625.905000001192093 ], [ 349579.843599997460842, 258636.136999998241663 ], [ 349580.336499996483326, 258640.596700001507998 ], [ 349582.152000002563, 258644.542500000447035 ], [ 349585.052500002086163, 258644.564899999648333 ], [ 349587.979400001466274, 258641.179999999701977 ], [ 349596.2550999969244, 258628.138300001621246 ], [ 349600.547100000083447, 258618.735399998724461 ], [ 349603.784299999475479, 258609.324299998581409 ], [ 349606.274999998509884, 258594.140999998897314 ], [ 349606.859099999070168, 258586.80629999935627 ], [ 349606.621799997985363, 258583.396899998188019 ], [ 349608.62950000166893, 258580.228100001811981 ], [ 349604.336400002241135, 258574.181200001388788 ], [ 349593.432800002396107, 258528.917899999767542 ], [ 349602.521600000560284, 258503.238899998366833 ], [ 349589.290799997746944, 258447.190799999982119 ], [ 349554.844200000166893, 258420.522199999541044 ], [ 349548.54110000282526, 258403.160900000482798 ], [ 349551.847300000488758, 258393.688799999654293 ], [ 349545.61259999871254, 258368.306499999016523 ], [ 349551.41499999910593, 258349.777800001204014 ], [ 349532.1858000010252, 258335.265999998897314 ], [ 349521.170699998736382, 258303.089600000530481 ], [ 349516.555799998342991, 258276.876299999654293 ], [ 349523.240099996328354, 258249.488800000399351 ], [ 349512.793200001120567, 258211.334499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-16", "ACRE": "1.1", "LONGITUDE": -65.01856005, "LATITUDE": 18.35604403, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.13425384700002, "SHAPE_Area": 4526.4398011699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349495.891800001263618, 258355.374200001358986 ], [ 349495.084299996495247, 258386.60530000180006 ], [ 349500.951899997889996, 258433.365800000727177 ], [ 349521.665700003504753, 258486.544199999421835 ], [ 349525.373599998652935, 258484.475900001823902 ], [ 349528.813699997961521, 258482.929800000041723 ], [ 349572.630800001323223, 258463.749800000339746 ], [ 349548.568400003015995, 258426.698300000280142 ], [ 349495.891800001263618, 258355.374200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "11510", "ACRE": ".69", "LONGITUDE": -65.01894941, "LATITUDE": 18.35687029, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.74644766199998, "SHAPE_Area": 3158.2546438200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349521.665700003504753, 258486.544199999421835 ], [ 349478.894400000572205, 258477.601700000464916 ], [ 349477.919299997389317, 258482.798700001090765 ], [ 349464.873400002717972, 258533.024099998176098 ], [ 349458.964900001883507, 258546.870600000023842 ], [ 349454.954899996519089, 258553.916700001806021 ], [ 349453.062600001692772, 258559.930700000375509 ], [ 349453.289800003170967, 258564.650600001215935 ], [ 349455.103299997746944, 258568.858399998396635 ], [ 349458.512999996542931, 258571.24379999935627 ], [ 349463.249300003051758, 258572.590900000184774 ], [ 349470.638700000941753, 258571.861600000411272 ], [ 349477.520999997854233, 258568.50730000063777 ], [ 349481.762299999594688, 258565.656800001859665 ], [ 349487.364600002765656, 258557.312399998307228 ], [ 349502.140900000929832, 258522.041000001132488 ], [ 349517.126199997961521, 258493.848299998790026 ], [ 349521.665700003504753, 258486.544199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-3", "ACRE": "1.3", "LONGITUDE": -65.01899187, "LATITUDE": 18.35489321, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.67949978399997, "SHAPE_Area": 3742.4921547600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349495.891800001263618, 258355.374200001358986 ], [ 349505.330399997532368, 258262.601799998432398 ], [ 349477.608599998056889, 258245.194200001657009 ], [ 349472.767700001597404, 258262.056200001388788 ], [ 349470.3074000030756, 258273.308299999684095 ], [ 349467.839100003242493, 258285.608800001442432 ], [ 349462.44370000064373, 258301.294300001114607 ], [ 349457.101000003516674, 258310.16499999910593 ], [ 349453.632500000298023, 258315.38060000166297 ], [ 349446.452100001275539, 258323.188700001686811 ], [ 349443.945500001311302, 258325.211899999529123 ], [ 349485.412399999797344, 258355.856100000441074 ], [ 349495.891800001263618, 258355.374200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-8", "ACRE": ".49", "LONGITUDE": -65.01886644, "LATITUDE": 18.3562978, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.210394073, "SHAPE_Area": 1708.9162633599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349500.951899997889996, 258433.365800000727177 ], [ 349467.159500002861023, 258441.633600000292063 ], [ 349467.407499998807907, 258443.924400001764297 ], [ 349468.922799997031689, 258452.585900001227856 ], [ 349471.768799997866154, 258459.684999998658895 ], [ 349475.158299997448921, 258464.691399998962879 ], [ 349477.241499997675419, 258468.114999998360872 ], [ 349478.276100002229214, 258470.744100000709295 ], [ 349479.048900000751019, 258473.109200000762939 ], [ 349479.294399999082088, 258475.470100000500679 ], [ 349478.894400000572205, 258477.601700000464916 ], [ 349521.665700003504753, 258486.544199999421835 ], [ 349500.951899997889996, 258433.365800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-4", "ACRE": ".98", "LONGITUDE": -65.01918319000001, "LATITUDE": 18.35542383, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.78796548599999, "SHAPE_Area": 2993.4698570099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349450.911700002849102, 258394.519099999219179 ], [ 349495.084299996495247, 258386.60530000180006 ], [ 349495.891800001263618, 258355.374200001358986 ], [ 349485.412399999797344, 258355.856100000441074 ], [ 349443.945500001311302, 258325.211899999529123 ], [ 349435.837600000202656, 258331.756599999964237 ], [ 349430.531300000846386, 258335.909499999135733 ], [ 349426.788999997079372, 258342.433600001037121 ], [ 349427.793200001120567, 258348.994300000369549 ], [ 349429.586400002241135, 258355.82319999858737 ], [ 349434.513599999248981, 258366.607999999076128 ], [ 349447.793999999761581, 258388.466299999505281 ], [ 349450.911700002849102, 258394.519099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-7", "ACRE": ".61", "LONGITUDE": -65.01899592, "LATITUDE": 18.35587206, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.36478906299999, "SHAPE_Area": 1724.1698845799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349495.084299996495247, 258386.60530000180006 ], [ 349450.911700002849102, 258394.519099999219179 ], [ 349456.126900002360344, 258402.160700000822544 ], [ 349463.705099999904633, 258411.13120000064373 ], [ 349466.832999996840954, 258415.873500000685453 ], [ 349467.329999998211861, 258419.809099998325109 ], [ 349467.034000001847744, 258424.000599998980761 ], [ 349466.184199996292591, 258431.595400001853704 ], [ 349466.668999999761581, 258437.10359999909997 ], [ 349467.159500002861023, 258441.633600000292063 ], [ 349500.951899997889996, 258433.365800000727177 ], [ 349495.084299996495247, 258386.60530000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-11", "ACRE": ".71", "LONGITUDE": -65.01974457, "LATITUDE": 18.35703919, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.66440958700002, "SHAPE_Area": 4372.3750821399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349341.643700003623962, 258540.746800001710653 ], [ 349391.268500000238419, 258566.519000001251698 ], [ 349411.120800003409386, 258570.705899998545647 ], [ 349426.114699997007847, 258573.443500000983477 ], [ 349436.688400000333786, 258570.499899998307228 ], [ 349442.394400000572205, 258567.317099999636412 ], [ 349446.711000002920628, 258562.864000000059605 ], [ 349446.73200000077486, 258560.144000001251698 ], [ 349449.159800000488758, 258553.08559999987483 ], [ 349452.900100000202656, 258546.823800001293421 ], [ 349388.359200000762939, 258500.564800001680851 ], [ 349382.362300001084805, 258505.6587999984622 ], [ 349341.643700003623962, 258540.746800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-9", "ACRE": ".93", "LONGITUDE": -65.01937483, "LATITUDE": 18.35656891, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.81938980799998, "SHAPE_Area": 5250.2820826300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349388.359200000762939, 258500.564800001680851 ], [ 349452.900100000202656, 258546.823800001293421 ], [ 349456.378600001335144, 258540.297699999064207 ], [ 349461.512199997901917, 258524.348400000482798 ], [ 349473.963899999856949, 258482.768199998885393 ], [ 349474.801500000059605, 258476.745999999344349 ], [ 349474.564099997282028, 258473.336599998176098 ], [ 349473.270000003278255, 258470.18129999935627 ], [ 349471.701999999582767, 258468.334300000220537 ], [ 349466.752599999308586, 258460.432599999010563 ], [ 349465.722099997103214, 258457.27930000051856 ], [ 349463.419699996709824, 258448.087400000542402 ], [ 349461.115299999713898, 258439.157699998468161 ], [ 349461.124099999666214, 258438.023800000548363 ], [ 349419.842200003564358, 258440.800200000405312 ], [ 349428.70160000026226, 258461.497400000691414 ], [ 349390.48480000346899, 258498.759199999272823 ], [ 349388.359200000762939, 258500.564800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115", "ACRE": null, "LONGITUDE": -65.02204476, "LATITUDE": 18.35890769, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1169.2876369600001, "SHAPE_Area": 31135.248455299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349363.617499999701977, 258652.624699998646975 ], [ 349279.657999999821186, 258639.342000000178814 ], [ 349249.139899998903275, 258620.458799999207258 ], [ 349172.542700000107288, 258714.190799999982119 ], [ 349052.580899998545647, 258786.88060000166297 ], [ 348961.25, 258811.675400000065565 ], [ 348943.192199997603893, 258754.321199998259544 ], [ 348935.888599999248981, 258759.749899998307228 ], [ 348919.66160000115633, 258771.438299998641014 ], [ 348904.388400003314018, 258772.811500001698732 ], [ 348902.228299997746944, 258782.580800000578165 ], [ 348901.771300002932549, 258789.232599999755621 ], [ 348902.756300002336502, 258793.07209999859333 ], [ 348904.150200001895428, 258796.511300001293421 ], [ 348909.366400003433228, 258804.215199999511242 ], [ 348918.025499999523163, 258812.752399999648333 ], [ 348930.75789999961853, 258819.304000001400709 ], [ 348934.998400002717972, 258821.958500001579523 ], [ 348939.438699997961521, 258825.017799999564886 ], [ 348944.874899998307228, 258830.504900000989437 ], [ 348954.142599999904633, 258839.046700000762939 ], [ 348963.627199999988079, 258845.775100000202656 ], [ 348972.323499999940395, 258849.472199998795986 ], [ 348977.381800003349781, 258851.326299998909235 ], [ 348990.146799996495247, 258853.64299999922514 ], [ 348999.678000003099442, 258854.321400001645088 ], [ 349006.782200001180172, 258853.972800001502037 ], [ 349014.713600002229214, 258851.613699998706579 ], [ 349025.497800000011921, 258847.663199998438358 ], [ 349040.565999999642372, 258840.720499999821186 ], [ 349051.353399999439716, 258836.366700001060963 ], [ 349061.527400001883507, 258832.613200001418591 ], [ 349072.29450000077486, 258830.881000000983477 ], [ 349099.531499996781349, 258824.637099999934435 ], [ 349116.609999999403954, 258820.130100000649691 ], [ 349124.947200000286102, 258817.77419999986887 ], [ 349137.354599997401237, 258813.836300000548363 ], [ 349140.616400003433228, 258811.8445999994874 ], [ 349150.401699997484684, 258805.869699999690056 ], [ 349155.308399997651577, 258801.067200001329184 ], [ 349160.424199998378754, 258795.459699999541044 ], [ 349191.922700002789497, 258762.828899998217821 ], [ 349198.251199997961521, 258757.835700001567602 ], [ 349202.521300002932549, 258756.658599998801947 ], [ 349210.237300001084805, 258755.911299999803305 ], [ 349219.576499998569489, 258755.176600001752377 ], [ 349225.262100003659725, 258754.61540000140667 ], [ 349261.460699997842312, 258744.003899998962879 ], [ 349266.55629999935627, 258741.018100000917912 ], [ 349270.838799998164177, 258738.227600000798702 ], [ 349274.305100001394749, 258736.035900000482798 ], [ 349278.788900002837181, 258733.448600001633167 ], [ 349283.875200003385544, 258731.672699999064207 ], [ 349288.335699997842312, 258732.110500000417233 ], [ 349294.41780000180006, 258732.762499999254942 ], [ 349300.301600001752377, 258732.807799998670816 ], [ 349306.186999998986721, 258732.651599999517202 ], [ 349312.687299996614456, 258731.693300001323223 ], [ 349319.193800002336502, 258729.928399998694658 ], [ 349323.062799997627735, 258728.143199998885393 ], [ 349325.319499999284744, 258724.933699999004602 ], [ 349329.221100002527237, 258718.913400001823902 ], [ 349331.281099997460842, 258714.895799998193979 ], [ 349337.278599999845028, 258700.219500001519918 ], [ 349339.352600000798702, 258694.386799998581409 ], [ 349341.665299996733665, 258683.917300000786781 ], [ 349343.770499996840954, 258674.051199998706579 ], [ 349347.288099996745586, 258665.204500000923872 ], [ 349353.850699998438358, 258656.179499998688698 ], [ 349358.545199997723103, 258652.585499998182058 ], [ 349363.617499999701977, 258652.624699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-12", "ACRE": null, "LONGITUDE": -65.02053677000001, "LATITUDE": 18.35747146, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.57422646600003, "SHAPE_Area": 4643.7916434 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349279.657999999821186, 258639.342000000178814 ], [ 349362.854599997401237, 258571.318799998611212 ], [ 349396.306500002741814, 258570.994899999350309 ], [ 349391.268500000238419, 258566.519000001251698 ], [ 349341.643700003623962, 258540.746800001710653 ], [ 349249.139899998903275, 258620.458799999207258 ], [ 349279.657999999821186, 258639.342000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-15", "ACRE": "2.2", "LONGITUDE": -65.01853893000001, "LATITUDE": 18.35761003, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 457.95129844000002, "SHAPE_Area": 10462.848497700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349488.086800001561642, 258566.229899998754263 ], [ 349496.359999999403954, 258682.566100001335144 ], [ 349504.204899996519089, 258682.146999999880791 ], [ 349524.306800000369549, 258680.285599999129772 ], [ 349536.097900003194809, 258677.351500000804663 ], [ 349551.34910000115633, 258673.032400000840425 ], [ 349555.425599999725819, 258670.643699999898672 ], [ 349565.635600000619888, 258662.252099998295307 ], [ 349575.425899997353554, 258655.6722999997437 ], [ 349576.87389999628067, 258652.291499998420477 ], [ 349574.722099997103214, 258650.513700000941753 ], [ 349571.233000002801418, 258624.275299999862909 ], [ 349569.969200000166893, 258617.188499998301268 ], [ 349556.027699999511242, 258578.550000000745058 ], [ 349542.558899998664856, 258546.99210000038147 ], [ 349535.572899997234344, 258529.6385000012815 ], [ 349532.718900002539158, 258523.587799999862909 ], [ 349531.45099999755621, 258517.025199998170137 ], [ 349530.787600003182888, 258500.506799999624491 ], [ 349530.290600001811981, 258496.571199998259544 ], [ 349529.513700000941753, 258494.730399999767542 ], [ 349527.414200000464916, 258493.403599999845028 ], [ 349523.408299997448921, 258499.925500001758337 ], [ 349510.335500001907349, 258519.483199998736382 ], [ 349495.052100002765656, 258552.12950000166893 ], [ 349488.086800001561642, 258566.229899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-14", "ACRE": "2.3", "LONGITUDE": -65.01930237000001, "LATITUDE": 18.35781372, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 413.39681976100002, "SHAPE_Area": 9770.5950384700009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349396.306500002741814, 258570.994899999350309 ], [ 349398.006399996578693, 258666.2010000012815 ], [ 349406.493600003421307, 258670.703499998897314 ], [ 349425.726300001144409, 258676.2972999997437 ], [ 349438.090300001204014, 258678.00620000064373 ], [ 349460.99210000038147, 258681.40989999845624 ], [ 349491.01070000231266, 258682.851799998432398 ], [ 349496.359999999403954, 258682.566100001335144 ], [ 349488.086800001561642, 258566.229899998754263 ], [ 349483.817100003361702, 258572.749800000339746 ], [ 349479.833499997854233, 258576.388599999248981 ], [ 349473.222999997437, 258578.696600001305342 ], [ 349464.253499999642372, 258579.151500001549721 ], [ 349455.567900002002716, 258576.987500000745058 ], [ 349450.578000001609325, 258574.327899999916553 ], [ 349447.961400002241135, 258571.686500001698732 ], [ 349422.02250000089407, 258577.848900001496077 ], [ 349416.152699999511242, 258575.988400001078844 ], [ 349410.070600003004074, 258575.336399998515844 ], [ 349396.306500002741814, 258570.994899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-569-T001", "PARCEL_NAM": "115-13", "ACRE": "1.6", "LONGITUDE": -65.02015168, "LATITUDE": 18.35773663, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 358.82382261700002, "SHAPE_Area": 6324.3764839300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349398.006399996578693, 258666.2010000012815 ], [ 349396.306500002741814, 258570.994899999350309 ], [ 349362.854599997401237, 258571.318799998611212 ], [ 349279.657999999821186, 258639.342000000178814 ], [ 349363.617499999701977, 258652.624699998646975 ], [ 349374.567500002682209, 258653.515900000929832 ], [ 349381.645400002598763, 258656.59569999948144 ], [ 349388.918300002813339, 258660.685499999672174 ], [ 349398.006399996578693, 258666.2010000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502070200", "MAP": "A9-744-T009", "PARCEL_NAM": "8-2", "ACRE": null, "LONGITUDE": -64.99321114, "LATITUDE": 18.35960984, "OBJECTID_1": 2049, "PARCEL_NO_": "102502070200", "Tax_Legal_": "8-2 SANTA MARIA NO.1 WEST END QTR", "Name": "BOSCHULTE, LIONEL T.H. & OTHERS", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 540800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1228.1169719100001, "SHAPE_Area": 59454.286648699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352215.784999996423721, 258956.646999999880791 ], [ 352264.565399996936321, 258933.128600001335144 ], [ 352297.85530000180006, 258963.28489999845624 ], [ 352407.632700003683567, 258816.028799999505281 ], [ 352406.156800001859665, 258799.973600000143051 ], [ 352397.373599998652935, 258789.769299998879433 ], [ 352378.106700003147125, 258779.690200001001358 ], [ 352362.826300002634525, 258774.921000000089407 ], [ 352349.133299998939037, 258773.120200000703335 ], [ 352304.777199998497963, 258773.812699999660254 ], [ 352266.884099997580051, 258773.080299999564886 ], [ 352243.513599999248981, 258771.411400001496077 ], [ 352232.234200000762939, 258770.263599999248981 ], [ 352208.062799997627735, 258767.954900000244379 ], [ 352151.692900002002716, 258759.049800001084805 ], [ 352114.667199999094009, 258751.147300001233816 ], [ 352080.879399999976158, 258741.793800000101328 ], [ 352057.561099998652935, 258734.003600001335144 ], [ 352045.484399996697903, 258731.793800000101328 ], [ 352022.153499998152256, 258725.481100000441074 ], [ 352012.477700002491474, 258725.401900000870228 ], [ 352006.014600001275539, 258726.826699998229742 ], [ 352009.178800001740456, 258734.029800001531839 ], [ 352021.892800003290176, 258756.087600000202656 ], [ 352046.640299998223782, 258785.421000000089407 ], [ 352061.829000003635883, 258800.955200001597404 ], [ 352081.052799999713898, 258816.100099999457598 ], [ 352087.436800003051758, 258823.962900001555681 ], [ 352089.814300000667572, 258828.837499998509884 ], [ 352089.771200001239777, 258833.903299998492002 ], [ 352088.934299997985363, 258837.485100001096725 ], [ 352086.477600000798702, 258841.897999998182058 ], [ 352083.236199997365475, 258843.771299999207258 ], [ 352078.392899997532368, 258844.364900000393391 ], [ 352074.364900000393391, 258843.909699998795986 ], [ 352069.546800002455711, 258841.548300001770258 ], [ 352059.098899997770786, 258837.451999999582767 ], [ 352053.472699999809265, 258835.295000001788139 ], [ 352044.615900002419949, 258833.744899999350309 ], [ 352030.9121999964118, 258833.210499998182058 ], [ 351993.776799999177456, 258838.183899998664856 ], [ 351992.156999997794628, 258839.015000000596046 ], [ 351992.135399997234344, 258841.548000000417233 ], [ 352002.53660000115633, 258851.13230000063777 ], [ 352038.620999999344349, 258874.859099999070168 ], [ 352053.017800003290176, 258888.697999998927116 ], [ 352064.988399997353554, 258903.361400000751019 ], [ 352068.955200001597404, 258910.993200000375509 ], [ 352082.531300000846386, 258926.514199998229742 ], [ 352103.362300001084805, 258942.305599998682737 ], [ 352120.230200000107288, 258950.043000001460314 ], [ 352135.515900000929832, 258954.178899999707937 ], [ 352151.62780000269413, 258955.999499998986721 ], [ 352166.949500001966953, 258955.913800001144409 ], [ 352183.590000003576279, 258951.515999998897314 ], [ 352206.41780000180006, 258950.945300001651049 ], [ 352215.784999996423721, 258956.646999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502070200", "MAP": "D9-8471-T010", "PARCEL_NAM": "8-2-1", "ACRE": "3.0", "LONGITUDE": -64.99316159, "LATITUDE": 18.36143206, "OBJECTID_1": 2049, "PARCEL_NO_": "102502070200", "Tax_Legal_": "8-2 SANTA MARIA NO.1 WEST END QTR", "Name": "BOSCHULTE, LIONEL T.H. & OTHERS", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 540800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 650.26962826700003, "SHAPE_Area": 10817.651746899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352231.275200001895428, 258996.513999998569489 ], [ 352239.516800001263618, 259004.835700001567602 ], [ 352116.713299997150898, 259113.171399999409914 ], [ 352118.008699998259544, 259116.155499998480082 ], [ 352125.082099996507168, 259137.744899999350309 ], [ 352135.366300001740456, 259161.049400001764297 ], [ 352141.085500001907349, 259173.576999999582767 ], [ 352297.85530000180006, 258963.28489999845624 ], [ 352264.565399996936321, 258933.128600001335144 ], [ 352215.784999996423721, 258956.646999999880791 ], [ 352219.543799996376038, 258958.934999998658895 ], [ 352230.957599997520447, 258968.636799998581409 ], [ 352232.669699996709824, 258978.909299999475479 ], [ 352234.381800003349781, 258989.752500001341105 ], [ 352231.275200001895428, 258996.513999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601022100", "MAP": "D9-6896-T001", "PARCEL_NAM": "1B", "ACRE": "1.357", "LONGITUDE": -64.98295585, "LATITUDE": 18.35781813, "OBJECTID_1": 2229, "PARCEL_NO_": "102601022100", "Tax_Legal_": "1 REM SANTA MARIA NO.1 WEST END QTR", "Name": "O'NEAL HENDERSON, CHARLENE", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 463200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.100937778, "SHAPE_Area": 870.14908754500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353303.608999997377396, 258682.267000000923872 ], [ 353286.24549999833107, 258629.862199999392033 ], [ 353272.0, 258633.752300001680851 ], [ 353270.141099996864796, 258634.040899999439716 ], [ 353289.850199997425079, 258687.148699998855591 ], [ 353303.608999997377396, 258682.267000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502034000", "MAP": "D9-7495-T004", "PARCEL_NAM": "1A", "ACRE": ".503", "LONGITUDE": -64.98330937, "LATITUDE": 18.35824619, "OBJECTID_1": 2033, "PARCEL_NO_": "102502034000", "Tax_Legal_": "SANTA MARIA ESTATE 1A No.1 WESTEND QTR.", "Name": "GRANT, ELLEN & CLAUDETTE GRANT JOSEPH", "Address": "PO Box 8462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.2147646034899999, "SHAPE_Area": 0.20735689589 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353249.902199998497963, 258704.563499998301268 ], [ 353249.068999998271465, 258704.950800001621246 ], [ 353249.584100000560284, 258705.209100000560284 ], [ 353249.902199998497963, 258704.563499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502034000", "MAP": "D9-7495-T004", "PARCEL_NAM": "1A", "ACRE": ".503", "LONGITUDE": -64.98343003, "LATITUDE": 18.3579028, "OBJECTID_1": 2033, "PARCEL_NO_": "102502034000", "Tax_Legal_": "SANTA MARIA ESTATE 1A No.1 WESTEND QTR.", "Name": "GRANT, ELLEN & CLAUDETTE GRANT JOSEPH", "Address": "PO Box 8462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.38793379800001, "SHAPE_Area": 2911.6035405100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353249.902199998497963, 258704.563499998301268 ], [ 353270.141099996864796, 258634.040899999439716 ], [ 353261.528300002217293, 258635.377700001001358 ], [ 353259.08110000193119, 258635.757500000298023 ], [ 353241.329599998891354, 258637.089899998158216 ], [ 353225.569799996912479, 258636.960900001227856 ], [ 353216.420999996364117, 258659.55970000103116 ], [ 353195.537299998104572, 258676.528400000184774 ], [ 353194.859700001776218, 258677.770799998193979 ], [ 353249.068999998271465, 258704.950800001621246 ], [ 353249.902199998497963, 258704.563499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601026100", "MAP": "D9-7228-T003", "PARCEL_NAM": "1C", "ACRE": ".50", "LONGITUDE": -64.98218604, "LATITUDE": 18.35758973, "OBJECTID_1": 2268, "PARCEL_NO_": "102601026100", "Tax_Legal_": "1C ESTATE SANTA MARIA #1 WEST END QTR", "Name": "DAVID, ROYSTIN S. & LORETTA S", "Address": "PO Box 306252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.42344190899999, "SHAPE_Area": 2130.10496496 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353359.290500000119209, 258662.510999999940395 ], [ 353400.354800000786781, 258649.070900000631809 ], [ 353378.353100001811981, 258604.709499999880791 ], [ 353337.611599996685982, 258615.835200000554323 ], [ 353359.290500000119209, 258662.510999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502034100", "MAP": "D9-6896-T001", "PARCEL_NAM": "1B", "ACRE": ".506", "LONGITUDE": -64.98263241, "LATITUDE": 18.35772853, "OBJECTID_1": 2034, "PARCEL_NO_": "102502034100", "Tax_Legal_": "SANTA MARIA ESTATE 1B No.1 WESTEND QTR.", "Name": "WILSON, DEXTER", "Address": "PO Box 307116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.000365434, "SHAPE_Area": 2981.32745901 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353286.24549999833107, 258629.862199999392033 ], [ 353303.608999997377396, 258682.267000000923872 ], [ 353359.290500000119209, 258662.510999999940395 ], [ 353337.611599996685982, 258615.835200000554323 ], [ 353286.24549999833107, 258629.862199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021400", "MAP": "A9-592-T002", "PARCEL_NAM": "4A REM", "ACRE": "5.51", "LONGITUDE": -64.9830766, "LATITUDE": 18.35556293, "OBJECTID_1": 1993, "PARCEL_NO_": "102502021400", "Tax_Legal_": "4A REM,4A-2,3,15 & ROW 4A-31 SANTA MARIA NO, 1 WEST END QTR", "Name": "WEBSTER, EDMOND & BERNICE", "Address": "PO Box 7996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 251600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 506.33894582200003, "SHAPE_Area": 10199.6751446 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353273.071099996566772, 258454.100400000810623 ], [ 353287.606299996376038, 258457.632399998605251 ], [ 353275.225400000810623, 258492.152800001204014 ], [ 353277.147100001573563, 258493.662900000810623 ], [ 353278.417499996721745, 258496.021999999880791 ], [ 353278.940200001001358, 258497.841299999505281 ], [ 353279.027300000190735, 258500.404599998146296 ], [ 353278.598499998450279, 258513.854899998754263 ], [ 353278.593800000846386, 258520.664099998772144 ], [ 353295.063400000333786, 258482.164799999445677 ], [ 353321.401199996471405, 258419.474500000476837 ], [ 353331.276600003242493, 258396.124000001698732 ], [ 353328.110699996352196, 258389.131999999284744 ], [ 353322.567199997603893, 258377.265299998223782 ], [ 353300.405799999833107, 258328.321400001645088 ], [ 353201.246100001037121, 258410.835299998521805 ], [ 353238.929499998688698, 258444.840999998152256 ], [ 353273.071099996566772, 258454.100400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502021400", "MAP": "D9-8600-T010", "PARCEL_NAM": "4A-17", "ACRE": ".23", "LONGITUDE": -64.98314683, "LATITUDE": 18.35613722, "OBJECTID_1": 1993, "PARCEL_NO_": "102502021400", "Tax_Legal_": "4A REM,4A-2,3,15 & ROW 4A-31 SANTA MARIA NO, 1 WEST END QTR", "Name": "WEBSTER, EDMOND & BERNICE", "Address": "PO Box 7996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 251600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.45722811900001, "SHAPE_Area": 959.67858946399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353275.225400000810623, 258492.152800001204014 ], [ 353287.606299996376038, 258457.632399998605251 ], [ 353273.071099996566772, 258454.100400000810623 ], [ 353262.288900002837181, 258451.176199998706579 ], [ 353249.165299996733665, 258485.43189999833703 ], [ 353263.166000001132488, 258488.805300001055002 ], [ 353269.331799998879433, 258490.291000001132488 ], [ 353273.620899997651577, 258491.285900000482798 ], [ 353275.225400000810623, 258492.152800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102204010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.03975016, "LATITUDE": 18.35170446, "OBJECTID_1": 1144, "PARCEL_NO_": "102204010400", "Tax_Legal_": "1-1 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "KEEN, LYNDA A. , TRUSTEE", "Address": "6602 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 454100, "Improved_V": 512600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 484.08656190200003, "SHAPE_Area": 12321.993569599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347280.200499996542931, 258013.272799998521805 ], [ 347280.53662933211308, 258013.376411220087903 ], [ 347280.885371962911449, 258013.422201971814502 ], [ 347281.236855438095517, 258013.40887597706751 ], [ 347281.581129717174917, 258013.336810477427207 ], [ 347281.908448842528742, 258013.208045553590637 ], [ 347282.209546835103538, 258013.02622637321474 ], [ 347282.475900001823902, 258012.796500001102686 ], [ 347286.178770053084008, 258010.488695682433899 ], [ 347289.672600001096725, 258007.875199999660254 ], [ 347291.821451561409049, 258006.160987957642647 ], [ 347293.720312531921081, 258004.17342337561422 ], [ 347295.334700003266335, 258001.948600001633167 ], [ 347299.476129707240034, 257995.668266143329674 ], [ 347303.801399998366833, 257989.513099998235703 ], [ 347311.950599998235703, 257980.146899998188019 ], [ 347315.696527587424498, 257976.494575164135313 ], [ 347319.729400001466274, 257973.161800000816584 ], [ 347326.978900000452995, 257967.817200001329184 ], [ 347330.544608663010877, 257964.628698340326082 ], [ 347333.669600002467632, 257961.007199998944998 ], [ 347337.460512427380309, 257956.381840154674137 ], [ 347340.848113178624772, 257951.453439617733238 ], [ 347343.808296995062847, 257946.257067568367347 ], [ 347346.320000000298023, 257940.829700000584126 ], [ 347346.824199996888638, 257939.771299999207258 ], [ 347351.399999998509884, 257928.050299998372793 ], [ 347351.686933689343277, 257927.356406561419135 ], [ 347352.087812592566479, 257926.721493063610978 ], [ 347352.59093201928772, 257926.164097434666473 ], [ 347353.181602106138598, 257925.700494271150092 ], [ 347353.842576723371167, 257925.344219657708891 ], [ 347354.554557019844651, 257925.105675946426345 ], [ 347355.29675490281079, 257924.991828033496859 ], [ 347356.047499999403954, 257925.006000000983477 ], [ 347354.219499997794628, 257911.620400000363588 ], [ 347349.673100002110004, 257878.329500000923872 ], [ 347305.138899996876717, 257860.276900000870228 ], [ 347303.175700001418591, 257863.379099998623133 ], [ 347279.404600001871586, 257900.940400000661612 ], [ 347267.288800001144409, 257900.611999999731779 ], [ 347252.501000002026558, 257893.368900001049042 ], [ 347245.802199997007847, 257906.790300000458956 ], [ 347244.177000001072884, 257908.254700001329184 ], [ 347240.138199999928474, 257909.065999999642372 ], [ 347224.825499996542931, 257908.0962999984622 ], [ 347213.504699997603893, 257911.803300000727177 ], [ 347209.383199997246265, 257922.324299998581409 ], [ 347209.329300001263618, 257928.656599998474121 ], [ 347210.112199999392033, 257931.407299999147654 ], [ 347211.712300002574921, 257932.897999998182058 ], [ 347219.771799996495247, 257933.386199999600649 ], [ 347224.573700003325939, 257937.647300001233816 ], [ 347233.403599999845028, 257942.363699998706579 ], [ 347236.601899996399879, 257945.556200001388788 ], [ 347235.824299998581409, 257961.368400000035763 ], [ 347269.074500001966953, 258014.6385000012815 ], [ 347270.024800002574921, 258016.160900000482798 ], [ 347270.1199000030756, 258015.984700001776218 ], [ 347270.51983344060136, 258015.203800274524838 ], [ 347271.042590761382598, 258014.499189799127635 ], [ 347271.673974341538269, 258013.890005169349024 ], [ 347272.396836364699993, 258013.392791297897929 ], [ 347273.19154454121599, 258013.021052071242593 ], [ 347274.036515303887427, 258012.784883596148575 ], [ 347274.9087999984622, 258012.690699998289347 ], [ 347275.792390598799102, 258012.435587002022658 ], [ 347276.704917252238374, 258012.321087672258727 ], [ 347277.624144934932701, 258012.349991949769901 ], [ 347278.527675342571456, 258012.521595540281851 ], [ 347279.39349265769124, 258012.831717075576307 ], [ 347280.200499996542931, 258013.272799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102204010500", "MAP": "D9-8015-T007", "PARCEL_NAM": "1-2-A", "ACRE": "2.53", "LONGITUDE": -65.03893753, "LATITUDE": 18.35109028, "OBJECTID_1": 1145, "PARCEL_NO_": "102204010500", "Tax_Legal_": "1-2A BOTANY BAY No.7 WEST END QTR.", "Name": "SMITH, JEFFREY M. & SARAH A.", "Address": "36 Farmside Dr", "City": "Pembroke", "State": "Massachusetts", "Zip": 2359, "Country": "United States", "Land_Value": 444400, "Improved_V": 1122000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 772.06401030699999, "SHAPE_Area": 16107.2481159 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347446.412100002169609, 257861.613299999386072 ], [ 347466.176500000059605, 257843.753899998962879 ], [ 347467.656499996781349, 257842.182399999350309 ], [ 347466.499099999666214, 257841.257800001651049 ], [ 347433.661499999463558, 257815.024500001221895 ], [ 347380.890799999237061, 257762.241399999707937 ], [ 347379.20440000295639, 257770.882399998605251 ], [ 347381.57660000026226, 257776.390299998223782 ], [ 347381.546099998056889, 257779.97859999909997 ], [ 347379.078599996864796, 257785.657999999821186 ], [ 347366.008500002324581, 257805.393800001591444 ], [ 347346.450199998915195, 257829.509500000625849 ], [ 347336.643200002610683, 257844.839000001549721 ], [ 347332.582900002598763, 257848.183299999684095 ], [ 347326.920699998736382, 257850.247900001704693 ], [ 347318.045900002121925, 257850.808499999344349 ], [ 347305.241999998688698, 257839.304699998348951 ], [ 347298.008599996566772, 257836.501299999654293 ], [ 347290.764300003647804, 257834.964299999177456 ], [ 347281.893100000917912, 257835.102800000458956 ], [ 347277.845399998128414, 257836.969500001519918 ], [ 347274.603900000452995, 257838.842799998819828 ], [ 347270.536399997770786, 257843.031399998813868 ], [ 347269.706699997186661, 257845.768800001591444 ], [ 347270.500399999320507, 257847.252999998629093 ], [ 347277.724899999797344, 257851.111800000071526 ], [ 347280.921400003135204, 257854.515500001609325 ], [ 347281.686300002038479, 257859.376899998635054 ], [ 347275.980999998748302, 257866.507399998605251 ], [ 347269.492700003087521, 257870.887200001627207 ], [ 347268.652199998497963, 257874.891100000590086 ], [ 347267.025200001895428, 257876.566599998623133 ], [ 347262.17119999974966, 257878.426699999719858 ], [ 347258.911799997091293, 257882.410799998790026 ], [ 347254.826200000941753, 257888.710099998861551 ], [ 347252.501000002026558, 257893.368900001049042 ], [ 347267.288800001144409, 257900.611999999731779 ], [ 347279.404600001871586, 257900.940400000661612 ], [ 347303.175700001418591, 257863.379099998623133 ], [ 347305.138899996876717, 257860.276900000870228 ], [ 347349.673100002110004, 257878.329500000923872 ], [ 347354.219499997794628, 257911.620400000363588 ], [ 347356.047499999403954, 257925.006000000983477 ], [ 347356.713703272340354, 257925.128285844955826 ], [ 347357.353200003504753, 257925.351500000804663 ], [ 347358.282883531413972, 257925.512595050822711 ], [ 347359.177230175584555, 257925.813272880594013 ], [ 347360.015412791981362, 257926.246531439450337 ], [ 347360.777912159275729, 257926.802281196170952 ], [ 347361.446971533820033, 257927.467580099357292 ], [ 347362.007010160537902, 257928.22693496622378 ], [ 347362.444986110844184, 257929.062662280717632 ], [ 347362.750699996948242, 257929.955299999564886 ], [ 347363.196565347199794, 257932.245675187557936 ], [ 347363.305849425785709, 257934.576484360877657 ], [ 347363.076245525793638, 257936.898530110076535 ], [ 347362.512599997222424, 257939.162799999117851 ], [ 347360.84570000320673, 257952.100999999791384 ], [ 347360.184320041618776, 257955.988678120833356 ], [ 347360.077776931924745, 257959.930773146596039 ], [ 347360.528200000524521, 257963.848499998450279 ], [ 347361.565064144437201, 257968.254447235405678 ], [ 347363.052046871569473, 257972.529530939471442 ], [ 347364.973200000822544, 257976.627900000661612 ], [ 347365.897908777929842, 257977.960160252347123 ], [ 347367.015123543213122, 257979.135674977500457 ], [ 347368.298665096284822, 257980.126898858492495 ], [ 347369.718456774600782, 257980.910604983801022 ], [ 347371.241229226638097, 257981.468429113767343 ], [ 347372.831299997866154, 257981.787300001829863 ], [ 347373.730416166130453, 257981.837216195533983 ], [ 347374.625509774778038, 257981.738682230556151 ], [ 347375.492237468191888, 257981.494377879542299 ], [ 347376.307027342671063, 257981.110947350040078 ], [ 347377.047720017901156, 257980.598818585654953 ], [ 347377.694171293405816, 257979.97191966327955 ], [ 347378.228799998760223, 257979.247299998998642 ], [ 347381.612642768304795, 257974.548456460121088 ], [ 347384.420100003480911, 257969.484099999070168 ], [ 347387.031450693146326, 257964.966709362372058 ], [ 347390.214500002563, 257960.83219999819994 ], [ 347397.024326697573997, 257953.928045763226692 ], [ 347403.31139999628067, 257946.544700000435114 ], [ 347406.72335300053237, 257940.637459418270737 ], [ 347409.820200003683567, 257934.559099998325109 ], [ 347414.0140655405703, 257924.957404649845557 ], [ 347417.598899997770786, 257915.112100001424551 ], [ 347419.542026981012896, 257908.770559474243782 ], [ 347420.773900002241135, 257902.253400001674891 ], [ 347421.272773709963076, 257897.642004136752803 ], [ 347422.472869287827052, 257893.161645065934863 ], [ 347424.345799997448921, 257888.918299999088049 ], [ 347426.74942885589553, 257884.04490295186406 ], [ 347429.533454764226917, 257879.378359240363352 ], [ 347432.680200003087521, 257874.948300000280142 ], [ 347436.890811561839655, 257870.135795828799019 ], [ 347441.478205523337238, 257865.680993617570493 ], [ 347446.412100002169609, 257861.613299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102204010600", "MAP": "D9-8015-T007", "PARCEL_NAM": "1-2-C", "ACRE": "2.65", "LONGITUDE": -65.03775065000001, "LATITUDE": 18.34985035, "OBJECTID_1": 1146, "PARCEL_NO_": "102204010600", "Tax_Legal_": "BOTANY BAY ESTATE 1 REMAINDER WESTEND QUARTER #7", "Name": "ATLANTIC LAND HOLDINGS, LLP", "Address": "PO Box 4010", "City": "East Lansing", "State": "Michigan", "Zip": 48826, "Country": "United States", "Land_Value": 567500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 446.82587780099999, "SHAPE_Area": 10389.835365200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347564.836099997162819, 257751.292399998754263 ], [ 347510.864600002765656, 257650.159000001847744 ], [ 347504.358400002121925, 257656.649700000882149 ], [ 347500.260300002992153, 257664.426600001752377 ], [ 347500.181199997663498, 257673.714099999517202 ], [ 347497.699299998581409, 257681.081999998539686 ], [ 347495.264200001955032, 257682.961899999529123 ], [ 347492.848800003528595, 257682.519999999552965 ], [ 347478.439499996602535, 257670.158599998801947 ], [ 347473.608800001442432, 257669.274700000882149 ], [ 347465.531300000846386, 257670.897399999201298 ], [ 347460.659299999475479, 257674.868299998342991 ], [ 347458.209700003266335, 257678.436799999326468 ], [ 347456.534199997782707, 257685.8114 ], [ 347458.091099999845028, 257692.368000000715256 ], [ 347459.689300000667572, 257694.06980000063777 ], [ 347462.050700001418591, 257700.844200000166893 ], [ 347464.446299999952316, 257703.607999999076128 ], [ 347465.22919999808073, 257706.358600001782179 ], [ 347464.386900000274181, 257710.573600001633167 ], [ 347457.097699999809265, 257714.3136 ], [ 347449.792400002479553, 257719.953299999237061 ], [ 347439.248700000345707, 257729.589299999177456 ], [ 347498.269000001251698, 257803.521000001579523 ], [ 347499.136200003325939, 257804.607299998402596 ], [ 347500.405699998140335, 257803.279199998825788 ], [ 347505.259212409786414, 257798.886014482966857 ], [ 347510.486400000751019, 257794.94480000063777 ], [ 347519.443728189216927, 257790.20100125396857 ], [ 347528.50450000166893, 257785.657900001853704 ], [ 347534.572937731863931, 257782.333971548476256 ], [ 347540.32866977766389, 257778.493921357992804 ], [ 347545.727914010349195, 257774.166959541238612 ], [ 347550.729599997401237, 257769.385999999940395 ], [ 347565.380699999630451, 257752.312800001353025 ], [ 347564.836099997162819, 257751.292399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102204010100", "MAP": "F9-2729-T70", "PARCEL_NAM": "1-3", "ACRE": null, "LONGITUDE": -65.0411921, "LATITUDE": 18.35386332, "OBJECTID_1": 1142, "PARCEL_NO_": "102204010100", "Tax_Legal_": "1-3 ESTATE BOTANY BAY WEST END QTR", "Name": "NATURE CONSERVANCY INC", "Address": "3052 Estate Little Princess", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 446500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 960.56799957800001, "SHAPE_Area": 25654.6094013 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347196.326200000941753, 258066.243099998682737 ], [ 347183.784999996423721, 258041.552700001746416 ], [ 347171.592699997127056, 258046.526299998164177 ], [ 347154.302500002086163, 258047.503100000321865 ], [ 347130.337600000202656, 258041.831599999219179 ], [ 347122.985600002110004, 258043.314100001007318 ], [ 347119.091899998486042, 258047.358800001442432 ], [ 347114.873800002038479, 258051.565200001001358 ], [ 347110.981100000441074, 258052.210999999195337 ], [ 347105.4662000015378, 258053.018300000578165 ], [ 347097.919299997389317, 258051.179900001734495 ], [ 347088.802799999713898, 258050.526099998503923 ], [ 347083.24889999628067, 258049.670699998736382 ], [ 347080.337399996817112, 258049.222199998795986 ], [ 347076.42960000038147, 258050.521200001239777 ], [ 347075.126800000667572, 258053.121300000697374 ], [ 347075.124300003051758, 258064.824599999934435 ], [ 347079.680699996650219, 258074.579100001603365 ], [ 347081.941899999976158, 258080.3885000012815 ], [ 347084.236699998378754, 258086.284299999475479 ], [ 347085.537399999797344, 258093.436799999326468 ], [ 347084.820600003004074, 258098.439300000667572 ], [ 347081.927500002086163, 258115.676600001752377 ], [ 347080.683399997651577, 258122.764899998903275 ], [ 347079.669200003147125, 258128.543999999761581 ], [ 347076.016400001943111, 258137.958399999886751 ], [ 347074.231100000441074, 258142.559900000691414 ], [ 347071.850100003182888, 258148.696600001305342 ], [ 347069.753200002014637, 258158.891699999570847 ], [ 347069.183899998664856, 258161.659800000488758 ], [ 347068.592699997127056, 258164.534000001847744 ], [ 347067.913900002837181, 258167.834600001573563 ], [ 347066.635200001299381, 258174.051399998366833 ], [ 347066.909400001168251, 258183.709199998527765 ], [ 347067.12950000166893, 258191.458799999207258 ], [ 347067.281300000846386, 258196.808100000023842 ], [ 347070.824000000953674, 258208.393199998885393 ], [ 347074.439800001680851, 258220.217599999159575 ], [ 347076.289899997413158, 258222.35020000115037 ], [ 347079.887599997222424, 258226.497299998998642 ], [ 347086.189099997282028, 258234.897199999541044 ], [ 347090.846900001168251, 258243.243599999696016 ], [ 347093.31870000064373, 258248.182700000703335 ], [ 347094.62049999833107, 258251.434399999678135 ], [ 347097.223899997770786, 258259.237500000745058 ], [ 347100.062200002372265, 258264.341600000858307 ], [ 347103.733300000429153, 258270.943399999290705 ], [ 347105.722599998116493, 258280.327199999243021 ], [ 347103.116499997675419, 258285.527499999850988 ], [ 347103.76630000025034, 258292.029699999839067 ], [ 347108.324000000953674, 258295.932399999350309 ], [ 347120.081299997866154, 258301.572500001639128 ], [ 347155.857100002467632, 258320.008099999278784 ], [ 347172.139200001955032, 258310.912399999797344 ], [ 347178.002099998295307, 258301.812100000679493 ], [ 347179.028300002217293, 258298.741099998354912 ], [ 347179.957099996507168, 258295.961100000888109 ], [ 347179.307300001382828, 258289.459300000220537 ], [ 347177.35419999808073, 258286.207400001585484 ], [ 347168.981700003147125, 258280.286699999123812 ], [ 347163.96509999781847, 258277.152399998158216 ], [ 347160.619800001382828, 258275.352299999445677 ], [ 347157.820699997246265, 258273.846200000494719 ], [ 347155.216499999165535, 258269.944200001657009 ], [ 347153.916299998760223, 258260.841099999845028 ], [ 347150.01070000231266, 258253.037200000137091 ], [ 347143.499899998307228, 258246.532999999821186 ], [ 347140.056500002741814, 258242.519600000232458 ], [ 347132.132500000298023, 258234.763399999588728 ], [ 347127.87389999628067, 258231.572299998253584 ], [ 347121.363600000739098, 258223.767599999904633 ], [ 347120.713699996471405, 258217.265799999237061 ], [ 347123.319899998605251, 258212.065099999308586 ], [ 347127.227899998426437, 258208.165800001472235 ], [ 347133.088600002229214, 258208.168099999427795 ], [ 347141.553300000727177, 258212.722800001502037 ], [ 347149.366599999368191, 258219.877900000661612 ], [ 347152.620600000023842, 258228.981499999761581 ], [ 347154.549500003457069, 258232.514499999582767 ], [ 347156.526299998164177, 258236.135099999606609 ], [ 347163.688400000333786, 258241.339699998497963 ], [ 347170.722800001502037, 258242.832800000905991 ], [ 347176.712099999189377, 258243.295200001448393 ], [ 347183.179899998009205, 258246.526900000870228 ], [ 347188.432899996638298, 258249.151700001209974 ], [ 347199.501599997282028, 258256.958200000226498 ], [ 347202.579000003635883, 258258.635600000619888 ], [ 347211.059399999678135, 258262.459899999201298 ], [ 347213.826899997889996, 258263.465900000184774 ], [ 347216.431199997663498, 258265.417500000447035 ], [ 347222.292199999094009, 258265.419900000095367 ], [ 347225.54900000244379, 258261.519999999552965 ], [ 347225.551600001752377, 258249.166600000113249 ], [ 347225.138999998569489, 258243.793400000780821 ], [ 347224.902500003576279, 258240.713799998164177 ], [ 347222.299999997019768, 258229.009500000625849 ], [ 347220.680799998342991, 258222.536499999463558 ], [ 347219.697499997913837, 258218.605700001120567 ], [ 347217.093599997460842, 258213.403200000524521 ], [ 347213.142599999904633, 258206.390799999237061 ], [ 347207.979999996721745, 258197.795099999755621 ], [ 347194.307499997317791, 258185.436200000345707 ], [ 347163.620800003409386, 258165.205600000917912 ], [ 347164.070500001311302, 258154.863699998706579 ], [ 347163.623199999332428, 258139.569299999624491 ], [ 347163.17400000244379, 258133.271999999880791 ], [ 347164.52759999781847, 258123.826200000941753 ], [ 347167.233000002801418, 258116.629599999636412 ], [ 347171.055699996650219, 258107.544599998742342 ], [ 347172.642599999904633, 258103.587099999189377 ], [ 347174.89639999717474, 258096.840799998492002 ], [ 347176.30120000243187, 258094.348999999463558 ], [ 347181.439099997282028, 258085.787099998444319 ], [ 347186.164300002157688, 258079.30180000141263 ], [ 347190.784100003540516, 258073.854100000113249 ], [ 347191.121799997985363, 258073.455899998545647 ], [ 347194.277300000190735, 258068.059300001710653 ], [ 347196.326200000941753, 258066.243099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102204010600", "MAP": "D9-181-T58", "PARCEL_NAM": "1", "ACRE": "2.00", "LONGITUDE": -65.039912, "LATITUDE": 18.35230056, "OBJECTID_1": 1146, "PARCEL_NO_": "102204010600", "Tax_Legal_": "BOTANY BAY ESTATE 1 REMAINDER WESTEND QUARTER #7", "Name": "ATLANTIC LAND HOLDINGS, LLP", "Address": "PO Box 4010", "City": "East Lansing", "State": "Michigan", "Zip": 48826, "Country": "United States", "Land_Value": 567500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1064.44355167, "SHAPE_Area": 5111.9284196500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347231.377700001001358, 258043.584199998527765 ], [ 347236.185900002717972, 258041.98589999973774 ], [ 347243.845100000500679, 258041.988899998366833 ], [ 347251.137299999594688, 258045.164500001817942 ], [ 347257.859999999403954, 258048.092000000178814 ], [ 347265.59570000320673, 258044.374200001358986 ], [ 347267.325199998915195, 258030.667300000786781 ], [ 347271.553900003433228, 258026.475499998778105 ], [ 347272.049567358277272, 258027.134051861299668 ], [ 347272.64432345086243, 258027.70470225578174 ], [ 347273.322808404511306, 258028.172713847452542 ], [ 347274.067500002682209, 258028.526000000536442 ], [ 347275.444667015457526, 258028.970965458982391 ], [ 347276.870159888523631, 258029.221072054671822 ], [ 347278.316548338916618, 258029.271507069963263 ], [ 347279.755999997258186, 258029.121300000697374 ], [ 347280.611777218815405, 258028.71853597133304 ], [ 347281.394964117032941, 258028.188260760973208 ], [ 347282.086712822376285, 258027.543235765420832 ], [ 347282.670375981135294, 258026.798983903892804 ], [ 347283.131907384027727, 258025.97341605060501 ], [ 347283.460199996829033, 258025.086399998515844 ], [ 347283.853559547278564, 258024.303207807301078 ], [ 347284.123525575094391, 258023.469397224427667 ], [ 347284.263846200192347, 258022.604277656675549 ], [ 347284.271271873963997, 258021.727883565152297 ], [ 347284.14563063235255, 258020.860510506579885 ], [ 347283.889832078537438, 258020.022245128435316 ], [ 347283.509800001978874, 258019.232500001788139 ], [ 347283.346939445647877, 258018.817951356613776 ], [ 347283.254302705812734, 258018.382299460645299 ], [ 347283.234400608052965, 258017.937352220498724 ], [ 347283.287772578827571, 258017.495169483649079 ], [ 347283.412972024467308, 258017.067736168566626 ], [ 347283.606605539913289, 258016.666637425456429 ], [ 347283.863424883398693, 258016.302744632441318 ], [ 347284.17646922491258, 258015.985920737730339 ], [ 347284.537253812362906, 258015.724752934416756 ], [ 347284.93599994230317, 258015.526319913187763 ], [ 347285.361900001764297, 258015.396000001579523 ], [ 347290.288763178628869, 258010.899443468253594 ], [ 347295.54839999973774, 258006.797100000083447 ], [ 347301.420411899511237, 257999.693854545679642 ], [ 347306.660899996757507, 257992.112700000405312 ], [ 347311.436849479796365, 257986.581445296702441 ], [ 347316.450499996542931, 257981.264699999243021 ], [ 347320.704625520855188, 257977.189295584656065 ], [ 347325.208600991696585, 257973.391834580659634 ], [ 347329.944300003349781, 257969.887600000947714 ], [ 347342.115099996328354, 257954.9386 ], [ 347347.580212074448355, 257944.542539127520286 ], [ 347352.830799996852875, 257934.036499999463558 ], [ 347353.064083732781, 257933.489376512821764 ], [ 347353.38676994049456, 257932.989737620780943 ], [ 347353.789511308423243, 257932.552056456392165 ], [ 347354.260641552158631, 257932.189011411624961 ], [ 347354.786513353988994, 257931.911118880088907 ], [ 347355.351893687387928, 257931.726428626570851 ], [ 347355.940405074565206, 257931.640290608134819 ], [ 347356.534999996423721, 257931.655200000852346 ], [ 347357.059504248027224, 257931.765763297473313 ], [ 347357.558056987763848, 257931.962674745096592 ], [ 347358.016552513581701, 257932.240363069111481 ], [ 347358.42201847420074, 257932.590971550584072 ], [ 347358.762982899730559, 257933.00458031866583 ], [ 347359.029798781441059, 257933.469487016584026 ], [ 347359.214917017670814, 257933.97253789982642 ], [ 347359.313100002706051, 257934.499499998986721 ], [ 347359.366858784225769, 257937.052113174664555 ], [ 347359.114600002765656, 257939.592799998819828 ], [ 347358.254699997603893, 257946.802700001746416 ], [ 347357.335950660461094, 257951.582174600596773 ], [ 347356.827619221585337, 257956.422533774632029 ], [ 347356.733400002121925, 257961.288600001484156 ], [ 347357.039605242433026, 257964.725300893769599 ], [ 347357.70349829812767, 257968.111142101319274 ], [ 347358.717799998819828, 257971.409000001847744 ], [ 347359.820562510751188, 257974.505257487529889 ], [ 347361.352265645749867, 257977.413312005868647 ], [ 347363.281800001859665, 257980.074099998921156 ], [ 347366.517379038210493, 257983.267433607135899 ], [ 347370.227200001478195, 257985.894900001585484 ], [ 347371.523970396607183, 257986.233275890903315 ], [ 347372.85478008229984, 257986.391570807987591 ], [ 347374.194742516439874, 257986.366824590135366 ], [ 347375.518799997866154, 257986.159499999135733 ], [ 347378.046912415476982, 257984.449572441226337 ], [ 347380.444200001657009, 257982.560600001364946 ], [ 347384.069373764388729, 257977.163747464859625 ], [ 347387.094400003552437, 257971.409000001847744 ], [ 347390.22204637248069, 257966.521740222116932 ], [ 347393.708999998867512, 257961.88399999961257 ], [ 347399.493100002408028, 257955.17960000038147 ], [ 347399.529799997806549, 257955.137099999934435 ], [ 347403.961599998176098, 257950.374600000679493 ], [ 347408.121173462073784, 257944.862345300643938 ], [ 347411.766800001263618, 257938.997499998658895 ], [ 347417.79280000180006, 257926.642000000923872 ], [ 347420.515899481135421, 257919.084389057796216 ], [ 347422.680900000035763, 257911.348400000482798 ], [ 347422.81732792314142, 257907.464553023717599 ], [ 347423.348332835710607, 257903.614759042189689 ], [ 347424.268399998545647, 257899.839000001549721 ], [ 347426.586344041861594, 257892.819285408477299 ], [ 347429.626199997961521, 257886.080699998885393 ], [ 347430.926153217325918, 257883.016457755875308 ], [ 347432.658249215281103, 257880.174046393978642 ], [ 347434.785599999129772, 257877.614000000059605 ], [ 347438.920200330438092, 257873.079501498345053 ], [ 347443.335942774428986, 257868.818302696425235 ], [ 347448.014799997210503, 257864.847800001502037 ], [ 347463.625299997627735, 257851.618599999696016 ], [ 347475.242600001394749, 257840.744300000369549 ], [ 347475.0287000015378, 257834.886900000274181 ], [ 347468.338200002908707, 257841.458599999547005 ], [ 347467.656499996781349, 257842.182399999350309 ], [ 347466.176500000059605, 257843.753899998962879 ], [ 347446.412100002169609, 257861.613299999386072 ], [ 347441.478205523337238, 257865.680993617512286 ], [ 347436.890811561839655, 257870.135795828769915 ], [ 347432.680200003087521, 257874.948300000280142 ], [ 347429.533454764226917, 257879.378359240363352 ], [ 347426.74942885589553, 257884.04490295186406 ], [ 347424.345799997448921, 257888.918299999088049 ], [ 347422.47286928788526, 257893.161645065963967 ], [ 347421.272773710021283, 257897.642004136752803 ], [ 347420.773900002241135, 257902.253400001674891 ], [ 347419.542026981012896, 257908.770559474243782 ], [ 347417.598899997770786, 257915.112100001424551 ], [ 347414.0140655405703, 257924.957404649845557 ], [ 347409.820200003683567, 257934.559099998325109 ], [ 347406.72335300053237, 257940.637459418270737 ], [ 347403.31139999628067, 257946.544700000435114 ], [ 347397.024326697573997, 257953.928045763226692 ], [ 347390.214500002563, 257960.83219999819994 ], [ 347387.031450693146326, 257964.966709362372058 ], [ 347384.420100003480911, 257969.484099999070168 ], [ 347381.612642768304795, 257974.548456460121088 ], [ 347378.228799998760223, 257979.247299998998642 ], [ 347377.694171293347608, 257979.971919663192239 ], [ 347377.047720017784741, 257980.598818585480331 ], [ 347376.307027342554647, 257981.110947349836351 ], [ 347375.492237468133681, 257981.494377879338572 ], [ 347374.625509774719831, 257981.738682230352424 ], [ 347373.730416166130453, 257981.837216195388464 ], [ 347372.831299997866154, 257981.787300001829863 ], [ 347371.24122922657989, 257981.468429113912862 ], [ 347369.718456774484366, 257980.910604984033853 ], [ 347368.298665096110199, 257980.12689885875443 ], [ 347367.015123543038499, 257979.135674977704184 ], [ 347365.897908777813427, 257977.960160252463538 ], [ 347364.973200000822544, 257976.627900000661612 ], [ 347363.052046871511266, 257972.529530939500546 ], [ 347361.565064144437201, 257968.254447235405678 ], [ 347360.528200000524521, 257963.848499998450279 ], [ 347360.077776931866538, 257959.930773146596039 ], [ 347360.184320041560568, 257955.988678120833356 ], [ 347360.84570000320673, 257952.100999999791384 ], [ 347362.512599997222424, 257939.162799999117851 ], [ 347363.07624552573543, 257936.898530110076535 ], [ 347363.305849425727502, 257934.576484360877657 ], [ 347363.196565347141586, 257932.245675187557936 ], [ 347362.750699996948242, 257929.955299999564886 ], [ 347362.444986110785976, 257929.062662280746736 ], [ 347362.007010160479695, 257928.226934966281988 ], [ 347361.446971533761825, 257927.467580099444604 ], [ 347360.777912159217522, 257926.802281196258264 ], [ 347360.015412791923154, 257926.246531439537648 ], [ 347359.177230175584555, 257925.813272880681325 ], [ 347358.282883531413972, 257925.512595050880918 ], [ 347357.353200003504753, 257925.351500000804663 ], [ 347356.713703272340354, 257925.128285844955826 ], [ 347356.047499999403954, 257925.006000000983477 ], [ 347355.296754902519751, 257924.991828032332705 ], [ 347354.554557019087952, 257925.105675944505492 ], [ 347353.842576722207014, 257925.344219655380584 ], [ 347353.181602104625199, 257925.700494268821785 ], [ 347352.590932017657906, 257926.164097432687413 ], [ 347352.08781259105308, 257926.721493062184891 ], [ 347351.686933688353747, 257927.356406560691539 ], [ 347351.399999998509884, 257928.050299998372793 ], [ 347346.824199996888638, 257939.771299999207258 ], [ 347346.320000000298023, 257940.829700000584126 ], [ 347343.808296995004639, 257946.257067568338243 ], [ 347340.848113178508356, 257951.453439617645927 ], [ 347337.460512427322101, 257956.381840154615929 ], [ 347333.669600002467632, 257961.007199998944998 ], [ 347330.544608662952669, 257964.628698340296978 ], [ 347326.978900000452995, 257967.817200001329184 ], [ 347319.729400001466274, 257973.161800000816584 ], [ 347315.696527587424498, 257976.494575164135313 ], [ 347311.950599998235703, 257980.146899998188019 ], [ 347303.801399998366833, 257989.513099998235703 ], [ 347299.476129707240034, 257995.668266143329674 ], [ 347295.334700003266335, 258001.948600001633167 ], [ 347293.720312531688251, 258004.173423375439597 ], [ 347291.821451561176218, 258006.16098795743892 ], [ 347289.672600001096725, 258007.875199999660254 ], [ 347286.178770053025801, 258010.488695682404796 ], [ 347282.475900001823902, 258012.796500001102686 ], [ 347282.209546834463254, 258013.026226372021483 ], [ 347281.908448841713835, 258013.208045551466057 ], [ 347281.581129716476426, 258013.336810474807862 ], [ 347281.236855437688064, 258013.408875974360853 ], [ 347280.885371962795034, 258013.422201969515299 ], [ 347280.536629332229495, 258013.376411218690919 ], [ 347280.200499996542931, 258013.272799998521805 ], [ 347279.393492657865863, 258012.831717075197957 ], [ 347278.527675342746079, 258012.52159553967067 ], [ 347277.624144934990909, 258012.349991949071409 ], [ 347276.704917252296582, 258012.321087671647547 ], [ 347275.792390598740894, 258012.435587001644308 ], [ 347274.9087999984622, 258012.690699998289347 ], [ 347274.036515303363558, 258012.784883594547864 ], [ 347273.191544539993629, 258013.02105206871056 ], [ 347272.396836362953763, 258013.392791295045754 ], [ 347271.673974339501001, 258013.890005166700576 ], [ 347271.042590759461746, 258014.49918979711947 ], [ 347270.519833439320792, 258015.2038002734771 ], [ 347270.1199000030756, 258015.984700001776218 ], [ 347270.024800002574921, 258016.160900000482798 ], [ 347269.074500001966953, 258014.6385000012815 ], [ 347235.824299998581409, 257961.368400000035763 ], [ 347229.966099999845028, 257994.880899999290705 ], [ 347220.92849999666214, 258010.328200001269579 ], [ 347207.980200000107288, 258026.853900000452995 ], [ 347188.929099999368191, 258039.454300001263618 ], [ 347183.784999996423721, 258041.552700001746416 ], [ 347196.326200000941753, 258066.243099998682737 ], [ 347202.613600000739098, 258060.670099999755621 ], [ 347212.523100003600121, 258053.362700000405312 ], [ 347217.725599996745586, 258050.067299999296665 ], [ 347225.1537000015378, 258045.927099999040365 ], [ 347231.377700001001358, 258043.584199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602010300", "MAP": "D9-4956-T90", "PARCEL_NAM": "13-A-2", "ACRE": ".1085", "LONGITUDE": -64.9734827, "LATITUDE": 18.36462837, "OBJECTID_1": 2352, "PARCEL_NO_": "102602010300", "Tax_Legal_": "13A-1 & 13-A-2 ROW CARET BAY 8 LITTLE NORTHSIDE QUARTER", "Name": "DELVILLE, VIOLET", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.64913551399999, "SHAPE_Area": 284.58919207700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354265.719099998474121, 259433.80799999833107 ], [ 354267.189499996602535, 259428.703899998217821 ], [ 354277.366999998688698, 259424.855599999427795 ], [ 354287.546499997377396, 259420.745400000363588 ], [ 354297.597499996423721, 259416.241099998354912 ], [ 354306.72919999808073, 259411.336599998176098 ], [ 354312.828100003302097, 259406.669900000095367 ], [ 354315.56360000371933, 259404.203200001269579 ], [ 354309.203500002622604, 259404.133600000292063 ], [ 354302.789700001478195, 259409.60249999910593 ], [ 354292.475199997425079, 259414.104600001126528 ], [ 354274.755599997937679, 259421.822200000286102 ], [ 354267.628700003027916, 259423.206199999898672 ], [ 354261.706399999558926, 259422.24210000038147 ], [ 354256.929499998688698, 259421.323399998247623 ], [ 354257.82209999859333, 259426.938700001686811 ], [ 354257.879600003361702, 259427.300400000065565 ], [ 354263.640900000929832, 259432.082800000905991 ], [ 354265.719099998474121, 259433.80799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602017000", "MAP": "D9-4956-T90", "PARCEL_NAM": "13-A-1", "ACRE": ".4853", "LONGITUDE": -64.97303284, "LATITUDE": 18.36462472, "OBJECTID_1": 2414, "PARCEL_NO_": "102602017000", "Tax_Legal_": "13-A-1 CARET BAY 8 LITTLE NORTHSIDE QUARTER", "Name": "WILKINS, JOSEPH A. & MARCIA A.", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101000, "Improved_V": 833900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.35221812999998, "SHAPE_Area": 2163.59906391 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354315.56360000371933, 259404.203200001269579 ], [ 354312.828100003302097, 259406.669900000095367 ], [ 354306.72919999808073, 259411.336599998176098 ], [ 354297.597499996423721, 259416.241099998354912 ], [ 354287.546499997377396, 259420.745400000363588 ], [ 354277.366999998688698, 259424.855599999427795 ], [ 354267.189499996602535, 259428.703899998217821 ], [ 354265.719099998474121, 259433.80799999833107 ], [ 354271.491599999368191, 259438.599800001829863 ], [ 354295.805200003087521, 259427.004399999976158 ], [ 354365.871500000357628, 259434.517099998891354 ], [ 354376.57320000231266, 259404.870600000023842 ], [ 354315.56360000371933, 259404.203200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602015000", "MAP": null, "PARCEL_NAM": "10REM", "ACRE": null, "LONGITUDE": -64.97262972, "LATITUDE": 18.36346879, "OBJECTID_1": 2397, "PARCEL_NO_": "102602015000", "Tax_Legal_": "10 REM CARET BAY NO 8 LITTLE NORTHSIDE QTR", "Name": "VINCENT FULLER & REBECCA BRAHM", "Address": "PO Box 303300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63900, "Improved_V": 53600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.198484987, "SHAPE_Area": 2183.0442578900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354342.527300000190735, 259317.231899999082088 ], [ 354359.562399998307228, 259323.219200000166893 ], [ 354399.289300002157688, 259298.002000000327826 ], [ 354403.356799997389317, 259293.813400000333786 ], [ 354403.408900000154972, 259287.692099999636412 ], [ 354401.828699998557568, 259283.87950000166893 ], [ 354393.864500001072884, 259272.204199999570847 ], [ 354383.484899997711182, 259260.086899999529123 ], [ 354377.018200002610683, 259261.933800000697374 ], [ 354364.894799999892712, 259265.212099999189377 ], [ 354344.611599996685982, 259312.807500001043081 ], [ 354342.527300000190735, 259317.231899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602015600", "MAP": null, "PARCEL_NAM": "12A", "ACRE": "0.25", "LONGITUDE": -64.97307114, "LATITUDE": 18.36383953, "OBJECTID_1": 2402, "PARCEL_NO_": "102602015600", "Tax_Legal_": "CARET BAY 12-A LT. NORTHSIDE", "Name": "SULLIVAN, CHARLES T. & HERRLICH, THOMAS J.", "Address": "4554 Kensington Cir", "City": "Naples", "State": "Florida", "Zip": 34119, "Country": "United States", "Land_Value": 66900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.01727272400001, "SHAPE_Area": 1358.2736655900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354342.832099996507168, 259272.518699999898672 ], [ 354344.014399997889996, 259279.640099998563528 ], [ 354344.146700002253056, 259283.608899999409914 ], [ 354344.940499998629093, 259285.857799999415874 ], [ 354346.6875, 259289.247999999672174 ], [ 354349.142599999904633, 259290.604499999433756 ], [ 354349.139899998903275, 259290.950899999588728 ], [ 354324.161300003528595, 259346.183800000697374 ], [ 354310.964599996805191, 259342.653799999505281 ], [ 354304.05629999935627, 259340.805900000035763 ], [ 354299.169299997389317, 259339.498700000345707 ], [ 354304.275700002908707, 259377.303899999707937 ], [ 354306.482299998402596, 259393.641399998217821 ], [ 354308.571400001645088, 259389.30519999936223 ], [ 354315.685099996626377, 259374.207699999213219 ], [ 354344.611599996685982, 259312.807500001043081 ], [ 354364.894799999892712, 259265.212099999189377 ], [ 354342.832099996507168, 259272.518699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602010200", "MAP": "C9-253-T80", "PARCEL_NAM": "9-A", "ACRE": ".479", "LONGITUDE": -64.97367827, "LATITUDE": 18.36413753, "OBJECTID_1": 2351, "PARCEL_NO_": "102602010200", "Tax_Legal_": "CARET BAY 9A LITTLE NORTHSIDE", "Name": "OGDEN, ARCHIBALD GRACIE & ELVIRA (TRUSTEES)", "Address": "PO Box 10016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 128400, "Improved_V": 262600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.495056586, "SHAPE_Area": 2181.4954484300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354278.892700001597404, 259384.192200001329184 ], [ 354271.377300001680851, 259323.116500001400709 ], [ 354267.630699999630451, 259324.809999998658895 ], [ 354266.599200002849102, 259325.276200000196695 ], [ 354260.337399996817112, 259328.106600001454353 ], [ 354253.068000003695488, 259329.524700000882149 ], [ 354241.779600001871586, 259329.432300001382828 ], [ 354250.991400003433228, 259383.969900000840425 ], [ 354252.179099999368191, 259391.441599998623133 ], [ 354254.221400000154972, 259404.287999998778105 ], [ 354254.677100002765656, 259407.154899999499321 ], [ 354280.916400000452995, 259400.310300000011921 ], [ 354278.892700001597404, 259384.192200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602011000", "MAP": "D9-9264-T018", "PARCEL_NAM": "12 REM", "ACRE": "0.35", "LONGITUDE": -64.97311737, "LATITUDE": 18.36362695, "OBJECTID_1": 2359, "PARCEL_NO_": "102602011000", "Tax_Legal_": "12 REM CARET BAY(CONS) NO. 8 LITTLE NORTHSIDE QTR", "Name": "RAWLINS, KEISHA C. & OVANDO K., CO-TRUSTEES", "Address": "PO Box 11074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 103400, "Improved_V": 168900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.10460491000001, "SHAPE_Area": 2227.2565882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354344.014399997889996, 259279.640099998563528 ], [ 354342.832099996507168, 259272.518699999898672 ], [ 354340.635300002992153, 259273.246199999004602 ], [ 354326.868600003421307, 259280.099599998444319 ], [ 354317.137100003659725, 259286.563799999654293 ], [ 354298.905299998819828, 259301.02419999986887 ], [ 354294.47580000013113, 259304.749400001019239 ], [ 354296.187299996614456, 259317.420899998396635 ], [ 354296.359999999403954, 259318.699700001627207 ], [ 354296.749700002372265, 259321.584499999880791 ], [ 354297.505500003695488, 259321.989799998700619 ], [ 354305.861400000751019, 259326.471400000154972 ], [ 354308.957099996507168, 259332.74210000038147 ], [ 354304.879900000989437, 259341.026200000196695 ], [ 354310.964599996805191, 259342.653799999505281 ], [ 354324.161300003528595, 259346.183800000697374 ], [ 354349.139899998903275, 259290.950899999588728 ], [ 354349.142599999904633, 259290.604499999433756 ], [ 354346.6875, 259289.247999999672174 ], [ 354344.940499998629093, 259285.857799999415874 ], [ 354344.146700002253056, 259283.608899999409914 ], [ 354344.014399997889996, 259279.640099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602015400", "MAP": "C9-253-T80", "PARCEL_NAM": "9-B", "ACRE": ".479", "LONGITUDE": -64.97342959, "LATITUDE": 18.36406568, "OBJECTID_1": 2401, "PARCEL_NO_": "102602015400", "Tax_Legal_": "CARET BAY 9B LT NORTHSIDE", "Name": "CARLSON, MARTIN & BARBARA", "Address": "6501 Redhook Plaza Ste", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 121500, "Improved_V": 277600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.3906791, "SHAPE_Area": 2071.6708427100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354296.749700002372265, 259321.584499999880791 ], [ 354286.421800002455711, 259311.522799998521805 ], [ 354282.27080000191927, 259315.013700000941753 ], [ 354273.314900003373623, 259322.240600001066923 ], [ 354271.377300001680851, 259323.116500001400709 ], [ 354278.892700001597404, 259384.192200001329184 ], [ 354280.916400000452995, 259400.310300000011921 ], [ 354306.482299998402596, 259393.641399998217821 ], [ 354304.275700002908707, 259377.303899999707937 ], [ 354296.749700002372265, 259321.584499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403012800", "MAP": "D9-280-T61", "PARCEL_NAM": "4-1-50", "ACRE": "0.59", "LONGITUDE": -65.01543538, "LATITUDE": 18.34858597, "OBJECTID_1": 1572, "PARCEL_NO_": "102403012800", "Tax_Legal_": "4-1-50 ESTATE FORTUNA WEST END QTR", "Name": "ETHLYN V TUITT MILLS REVOCABLE LIVING TRUST", "Address": "4-1-50 Estate Foruna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98000, "Improved_V": 259900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.898821967, "SHAPE_Area": 2468.3342798899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349890.046700000762939, 257609.304800000041723 ], [ 349873.886699996888638, 257590.176600001752377 ], [ 349854.799400001764297, 257563.013999998569489 ], [ 349849.132700003683567, 257572.85700000077486 ], [ 349845.016599997878075, 257582.744699999690056 ], [ 349844.161799997091293, 257588.437300000339746 ], [ 349838.357500001788139, 257607.177099999040365 ], [ 349837.20549999922514, 257609.343899998813868 ], [ 349867.240299999713898, 257654.855799999088049 ], [ 349868.614399999380112, 257652.387600000947714 ], [ 349873.531400002539158, 257643.139800000935793 ], [ 349880.079000003635883, 257631.794300001114607 ], [ 349882.523100003600121, 257628.859000001102686 ], [ 349883.363600000739098, 257624.855099998414516 ], [ 349890.046700000762939, 257609.304800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403012600", "MAP": "D9-6965-T001", "PARCEL_NAM": "4-1-46A", "ACRE": "0.33", "LONGITUDE": -65.01605692, "LATITUDE": 18.34923831, "OBJECTID_1": 1570, "PARCEL_NO_": "102403012600", "Tax_Legal_": "4-1-46A FORTUNA WESTEND QUARTER", "Name": "SMITH, LECIA", "Address": "PO Box 5515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32800, "Improved_V": 156200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.66134363800001, "SHAPE_Area": 1356.92225233 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349776.347999997437, 257715.288800001144409 ], [ 349778.201899997889996, 257712.859600000083447 ], [ 349788.127700001001358, 257702.536800000816584 ], [ 349795.472800001502037, 257694.794700000435114 ], [ 349800.237199999392033, 257691.816899999976158 ], [ 349810.163000002503395, 257684.074799999594688 ], [ 349813.934799998998642, 257677.920800000429153 ], [ 349822.596500001847744, 257666.215700000524521 ], [ 349808.611400000751019, 257646.142900001257658 ], [ 349800.857199996709824, 257654.999499998986721 ], [ 349797.603200003504753, 257658.350400000810623 ], [ 349788.589900001883507, 257675.164099998772144 ], [ 349785.30349999666214, 257682.314399998635054 ], [ 349781.2162000015378, 257688.824799999594688 ], [ 349770.604599997401237, 257703.936700001358986 ], [ 349768.973999999463558, 257706.034299999475479 ], [ 349767.329000003635883, 257709.820500001311302 ], [ 349765.682199999690056, 257713.817800000309944 ], [ 349767.280500002205372, 257715.519600000232458 ], [ 349773.727399997413158, 257715.994600001722574 ], [ 349776.347999997437, 257715.288800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403012900", "MAP": "D9-280-T61", "PARCEL_NAM": "4-1-49", "ACRE": "0.57", "LONGITUDE": -65.01565672, "LATITUDE": 18.34896481, "OBJECTID_1": 1573, "PARCEL_NO_": "102403012900", "Tax_Legal_": "4-1-49 ESTATE FORTUNA WEST END QTR", "Name": "PAIEWONSKY, JOHANNY", "Address": "PO Box 304168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 96300, "Improved_V": 216900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.50645824, "SHAPE_Area": 2367.6704903 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349867.240299999713898, 257654.855799999088049 ], [ 349837.20549999922514, 257609.343899998813868 ], [ 349830.98200000077486, 257621.048900000751019 ], [ 349826.914499998092651, 257625.237500000745058 ], [ 349808.611400000751019, 257646.142900001257658 ], [ 349837.397799998521805, 257687.459800001233816 ], [ 349856.325499996542931, 257675.085200000554323 ], [ 349858.7804000005126, 257670.883400000631809 ], [ 349861.242499999701977, 257665.83729999884963 ], [ 349863.686599999666214, 257662.901999998837709 ], [ 349865.338799998164177, 257658.271499998867512 ], [ 349867.240299999713898, 257654.855799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403012300", "MAP": "D9-6965-T001", "PARCEL_NAM": "4-1-46 REM", "ACRE": "0.23", "LONGITUDE": -65.01591178, "LATITUDE": 18.34933871, "OBJECTID_1": 1567, "PARCEL_NO_": "102403012300", "Tax_Legal_": "FORTUNA ESTATE 4-1-46 REM. No.8 WEST END QTR.", "Name": "SMITH, LECIA", "Address": "PO Box 5515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 97100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.42192247099999, "SHAPE_Area": 933.96686245299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349822.596500001847744, 257666.215700000524521 ], [ 349813.934799998998642, 257677.920800000429153 ], [ 349810.163000002503395, 257684.074799999594688 ], [ 349800.237199999392033, 257691.816899999976158 ], [ 349795.472800001502037, 257694.794700000435114 ], [ 349788.127700001001358, 257702.536800000816584 ], [ 349778.201899997889996, 257712.859600000083447 ], [ 349776.347999997437, 257715.288800001144409 ], [ 349786.659000001847744, 257712.511799998581409 ], [ 349803.649099998176098, 257705.895899999886751 ], [ 349810.932800002396107, 257702.789099998772144 ], [ 349819.026500001549721, 257699.266800001263618 ], [ 349827.944499999284744, 257693.6402000002563 ], [ 349837.397799998521805, 257687.459800001233816 ], [ 349822.596500001847744, 257666.215700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601024900", "MAP": "D9-1612-T80", "PARCEL_NAM": "26-A", "ACRE": ".76", "LONGITUDE": -64.98085455, "LATITUDE": 18.35765725, "OBJECTID_1": 2257, "PARCEL_NO_": "102601024900", "Tax_Legal_": "PEARL ESTATE 26A No.2 SOUTHSIDE QTR.", "Name": "PEETS, CASHEEM A", "Address": "PO Box 308217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 123600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.29637728699998, "SHAPE_Area": 2091.43125986 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353460.470200002193451, 258582.238400001078844 ], [ 353520.790899999439716, 258678.00730000063777 ], [ 353580.224299997091293, 258705.935899998992682 ], [ 353532.961199998855591, 258669.24100000038743 ], [ 353502.002300001680851, 258611.781199999153614 ], [ 353498.807599999010563, 258608.166499998420477 ], [ 353493.181400001049042, 258606.009500000625849 ], [ 353485.163199998438358, 258600.666499998420477 ], [ 353472.384499996900558, 258586.207600001245737 ], [ 353468.405100002884865, 258580.053300000727177 ], [ 353460.470200002193451, 258582.238400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502010300", "MAP": "A9-306-T84", "PARCEL_NAM": "10", "ACRE": "92.67", "LONGITUDE": -64.98901548000001, "LATITUDE": 18.36053025, "OBJECTID_1": 1982, "PARCEL_NO_": "102502010300", "Tax_Legal_": "8-2,9,10-REM,ROW 7-REM, 8-REM, 11 SANTA MARIA WEST END QTR", "Name": "BOSCHULTE, LIONEL & OTHERS", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5014700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3935.7761383500001, "SHAPE_Area": 343661.47850700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353509.516400001943111, 258660.107099998742342 ], [ 353503.432199999690056, 258663.9222999997437 ], [ 353476.234999999403954, 258684.105399999767542 ], [ 353405.789300002157688, 258736.383299998939037 ], [ 353392.300300002098083, 258805.300500001758337 ], [ 353248.903300002217293, 258883.920299999415874 ], [ 352995.364000000059605, 259018.422699999064207 ], [ 352987.252300001680851, 259024.055799998342991 ], [ 352877.893100000917912, 259082.6891999989748 ], [ 352862.837499998509884, 259051.535199999809265 ], [ 352839.407700002193451, 259056.831900000572205 ], [ 352831.342699997127056, 259056.97690000012517 ], [ 352828.115699999034405, 259057.16160000115633 ], [ 352819.26240000128746, 259055.189300000667572 ], [ 352816.056999996304512, 259052.841099999845028 ], [ 352814.514499999582767, 259044.595800001174212 ], [ 352816.154100000858307, 259041.442800000309944 ], [ 352823.466600000858307, 259034.958799999207258 ], [ 352831.5962999984622, 259027.214800000190735 ], [ 352834.038599997758865, 259024.490600001066923 ], [ 352843.010499998927116, 259012.531700000166893 ], [ 352765.31360000371933, 258856.741999998688698 ], [ 352756.409999996423721, 258860.679900001734495 ], [ 352749.975699998438358, 258858.727400001138449 ], [ 352745.980099998414516, 258854.472800001502037 ], [ 352744.428599998354912, 258847.282999999821186 ], [ 352747.731100000441074, 258838.232999999076128 ], [ 352749.359999999403954, 258836.346500001847744 ], [ 352751.031900003552437, 258829.394099999219179 ], [ 352727.261500000953674, 258780.014699999243021 ], [ 352714.606899999082088, 258750.991300001740456 ], [ 352705.085799999535084, 258732.759399998933077 ], [ 352704.29559999704361, 258730.853000000119209 ], [ 352704.311800003051758, 258728.953299999237061 ], [ 352697.981799997389317, 258714.758299998939037 ], [ 352697.998000003397465, 258712.858500000089407 ], [ 352691.725500002503395, 258691.908900000154972 ], [ 352685.435000002384186, 258673.070099998265505 ], [ 352683.870999999344349, 258667.357799999415874 ], [ 352679.983300000429153, 258650.438499998301268 ], [ 352674.461400002241135, 258636.039000000804663 ], [ 352662.641800001263618, 258603.644900001585484 ], [ 352650.033900000154972, 258569.133499998599291 ], [ 352632.755400002002716, 258514.952100001275539 ], [ 352619.094800002872944, 258509.35190000012517 ], [ 352604.606299996376038, 258506.278000000864267 ], [ 352567.553700000047684, 258501.541700001806021 ], [ 352534.446400001645088, 258506.970300000160933 ], [ 352505.402900002896786, 258508.632399998605251 ], [ 352498.934500001370907, 258510.690400000661612 ], [ 352497.316399998962879, 258511.310499999672174 ], [ 352462.465199999511242, 258532.13459999859333 ], [ 352435.777800001204014, 258541.204300001263618 ], [ 352434.15429999679327, 258542.457499999552965 ], [ 352405.058799996972084, 258550.24100000038743 ], [ 352416.430600002408028, 258762.880199998617172 ], [ 352394.867700003087521, 258778.595499999821186 ], [ 352402.272600002586842, 258782.632199998944998 ], [ 352404.678999997675419, 258784.12950000166893 ], [ 352409.479099996387959, 258788.601799998432398 ], [ 352411.872900001704693, 258791.576699998229742 ], [ 352413.463899999856949, 258794.122800000011921 ], [ 352415.047799997031689, 258797.513300001621246 ], [ 352417.405599996447563, 258804.709800001233816 ], [ 352415.629299998283386, 258823.904699999839067 ], [ 352413.174400001764297, 258828.106499999761581 ], [ 352407.395400002598763, 258843.891199998557568 ], [ 352405.762900002300739, 258846.19990000128746 ], [ 352403.273900002241135, 258854.412200000137091 ], [ 352400.824400000274181, 258857.980700001120567 ], [ 352399.985699996352196, 258861.773499999195337 ], [ 352398.355099998414516, 258863.871100001037121 ], [ 352396.695699997246265, 258869.346000000834465 ], [ 352395.869599997997284, 258871.661200001835823 ], [ 352393.405699998140335, 258876.918400000780821 ], [ 352391.76070000231266, 258880.704599998891354 ], [ 352390.115699999034405, 258884.490899998694658 ], [ 352388.47070000320673, 258888.277100000530481 ], [ 352383.555600002408028, 258897.313900001347065 ], [ 352381.894400000572205, 258902.999800000339746 ], [ 352377.790899999439716, 258911.410000000149012 ], [ 352360.56700000166893, 258945.4662000015378 ], [ 352355.630199998617172, 258957.035900000482798 ], [ 352353.184299997985363, 258960.182300001382828 ], [ 352348.247599996626377, 258971.752000000327826 ], [ 352342.529600001871586, 258980.360100001096725 ], [ 352340.87389999628067, 258985.412799999117851 ], [ 352339.248599998652935, 258986.877099998295307 ], [ 352335.955099999904633, 258994.871700000017881 ], [ 352331.875, 259000.537799999117851 ], [ 352331.043499998748302, 259003.486299999058247 ], [ 352316.3158999979496, 259028.48589999973774 ], [ 352272.718199998140335, 259129.453999999910593 ], [ 352271.056999996304512, 259135.139899998903275 ], [ 352272.515000000596046, 259153.305900000035763 ], [ 352274.869199998676777, 259160.924600001424551 ], [ 352278.848600000143051, 259167.07880000025034 ], [ 352286.848800003528595, 259174.532600000500679 ], [ 352293.268700003623962, 259178.173700001090765 ], [ 352312.569899998605251, 259184.242300000041723 ], [ 352349.622500002384186, 259188.978500001132488 ], [ 352359.281999997794628, 259190.957400001585484 ], [ 352364.901000000536442, 259193.958700001239777 ], [ 352380.055600002408028, 259213.503400001674891 ], [ 352384.819700002670288, 259222.197200000286102 ], [ 352396.77589999884367, 259238.549300000071526 ], [ 352401.540100000798702, 259247.243099998682737 ], [ 352403.14190000295639, 259248.522799998521805 ], [ 352422.229099996387959, 259279.709699999541044 ], [ 352429.42119999974966, 259287.368000000715256 ], [ 352436.627599999308586, 259293.337600000202656 ], [ 352444.652999997138977, 259297.836199998855591 ], [ 352508.188000001013279, 259317.565699998289347 ], [ 352548.386799998581409, 259331.615800000727177 ], [ 352577.500299997627735, 259321.721599999815226 ], [ 352656.964900001883507, 259270.020799998193979 ], [ 352746.773100003600121, 259234.6587999984622 ], [ 352816.452200002968311, 259195.754599999636412 ], [ 352903.209600001573563, 259139.891600001603365 ], [ 353360.971699997782707, 258885.89299999922514 ], [ 353387.882100000977516, 258850.649500001221895 ], [ 353403.372900001704693, 258830.72239999845624 ], [ 353418.867200002074242, 258810.373100001364946 ], [ 353431.912100002169609, 258793.592399999499321 ], [ 353477.572700001299381, 258734.437699999660254 ], [ 353520.790899999439716, 258678.00730000063777 ], [ 353509.516400001943111, 258660.107099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601022100", "MAP": "D9-8470-T010", "PARCEL_NAM": "1-G", "ACRE": ".61", "LONGITUDE": -64.98138923, "LATITUDE": 18.35734799, "OBJECTID_1": 2229, "PARCEL_NO_": "102601022100", "Tax_Legal_": "1 REM SANTA MARIA NO.1 WEST END QTR", "Name": "O'NEAL HENDERSON, CHARLENE", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 463200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.37762717699999, "SHAPE_Area": 1739.3495256599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353423.448100000619888, 258592.394999999552965 ], [ 353445.382600001990795, 258633.075300000607967 ], [ 353483.877099998295307, 258619.400600001215935 ], [ 353460.470200002193451, 258582.238400001078844 ], [ 353440.115800000727177, 258587.843299999833107 ], [ 353423.448100000619888, 258592.394999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601022100", "MAP": "C3-66-T47", "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.98236055, "LATITUDE": 18.35845964, "OBJECTID_1": 2229, "PARCEL_NO_": "102601022100", "Tax_Legal_": "1 REM SANTA MARIA NO.1 WEST END QTR", "Name": "O'NEAL HENDERSON, CHARLENE", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 463200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1044.6735456599999, "SHAPE_Area": 35835.752372900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353445.382600001990795, 258633.075300000607967 ], [ 353423.448100000619888, 258592.394999999552965 ], [ 353417.336499996483326, 258594.063900001347065 ], [ 353378.353100001811981, 258604.709499999880791 ], [ 353400.354800000786781, 258649.070900000631809 ], [ 353359.290500000119209, 258662.510999999940395 ], [ 353289.850199997425079, 258687.148699998855591 ], [ 353270.141099996864796, 258634.040899999439716 ], [ 353249.902199998497963, 258704.563499998301268 ], [ 353238.222599998116493, 258728.268100000917912 ], [ 353237.722499996423721, 258751.109400000423193 ], [ 353237.305299997329712, 258763.480599999427795 ], [ 353248.301500000059605, 258785.778200000524521 ], [ 353239.829499997198582, 258802.991999998688698 ], [ 353264.805799998342991, 258815.656100001186132 ], [ 353248.903300002217293, 258883.920299999415874 ], [ 353392.300300002098083, 258805.300500001758337 ], [ 353405.789300002157688, 258736.383299998939037 ], [ 353503.432199999690056, 258663.9222999997437 ], [ 353509.516400001943111, 258660.107099998742342 ], [ 353483.877099998295307, 258619.400600001215935 ], [ 353445.382600001990795, 258633.075300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402011700", "MAP": "G9-857-T66", "PARCEL_NAM": "3F", "ACRE": ".50", "LONGITUDE": -65.00044983, "LATITUDE": 18.36131299, "OBJECTID_1": 1428, "PARCEL_NO_": "102402011700", "Tax_Legal_": "HOPE 3F WESTEND QTR.", "Name": "THOMAS-FAHIE (LIFE ESTATE), SHARLEEN", "Address": "PO Box 816", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.19944146399999, "SHAPE_Area": 1667.80930126 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351418.35700000077486, 258990.745000001043081 ], [ 351431.793499998748302, 259071.208200000226498 ], [ 351453.67790000140667, 259066.102400001138449 ], [ 351452.893899999558926, 259062.447399999946356 ], [ 351443.763899996876717, 259019.880899999290705 ], [ 351442.683100000023842, 259014.841899998486042 ], [ 351436.815200001001358, 258987.484499998390675 ], [ 351418.35700000077486, 258990.745000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402012800", "MAP": "B9-126-T65", "PARCEL_NAM": "2E", "ACRE": ".28", "LONGITUDE": -65.00035382, "LATITUDE": 18.36061893, "OBJECTID_1": 1437, "PARCEL_NO_": "102402012800", "Tax_Legal_": "HOPE 2E WEST END QTR.", "Name": "CARRILLO, JOSE PILAR", "Address": "PO Box 5333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31200, "Improved_V": 120700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.724578729, "SHAPE_Area": 1270.14109349 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351434.482100002467632, 258976.606699999421835 ], [ 351463.430299997329712, 258973.071800000965595 ], [ 351461.924199998378754, 258968.97580000013113 ], [ 351460.936999998986721, 258963.227699998766184 ], [ 351459.473899997770786, 258943.23369999974966 ], [ 351457.731700003147125, 258925.461800001561642 ], [ 351451.942800000309944, 258927.474800001829863 ], [ 351447.896799996495247, 258929.130499999970198 ], [ 351443.84009999781847, 258932.052600000053644 ], [ 351427.363300003111362, 258943.417300000786781 ], [ 351434.482100002467632, 258976.606699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501010300", "MAP": "A3-90-T55", "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.99771395, "LATITUDE": 18.36121413, "OBJECTID_1": 1958, "PARCEL_NO_": "102501010300", "Tax_Legal_": "1 REM HOPE WEST END QTR", "Name": "ABRAHAM, EARLE JR. & OTHERS", "Address": "605 Water St", "City": "New York", "State": "New York", "Zip": 10002, "Country": "United States", "Land_Value": 322300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1194.84718034, "SHAPE_Area": 61087.463701599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351601.621299996972084, 258931.171999998390675 ], [ 351631.368199996650219, 258924.708799999207258 ], [ 351631.307700000703335, 258963.795400001108646 ], [ 351608.888899996876717, 258967.906700000166893 ], [ 351610.311700001358986, 258975.098499998450279 ], [ 351659.841700002551079, 259225.452399998903275 ], [ 351666.319799996912479, 259225.182599999010563 ], [ 351689.699199996888638, 259225.796100001782179 ], [ 351696.894900001585484, 259233.032200001180172 ], [ 351705.742799997329712, 259235.637699998915195 ], [ 351717.059900000691414, 259232.352800000458956 ], [ 351720.324699997901917, 259227.735500000417233 ], [ 351721.174199998378754, 259222.676199998706579 ], [ 351721.203000001609325, 259219.298900000751019 ], [ 351717.254100002348423, 259209.55629999935627 ], [ 351718.082000002264977, 259207.030000001192093 ], [ 351722.943300001323223, 259204.325500000268221 ], [ 351726.145099997520447, 259207.096000000834465 ], [ 351739.838100001215935, 259208.896800000220537 ], [ 351740.70549999922514, 259201.726700000464916 ], [ 351739.931599996984005, 259197.920699998736382 ], [ 351732.789800003170967, 259184.352200001478195 ], [ 351728.08500000089407, 259168.692800000309944 ], [ 351728.130000002682209, 259163.415800001472235 ], [ 351729.825300000607967, 259153.719399999827147 ], [ 351731.454099997878075, 259151.832899998873472 ], [ 351733.934199996292591, 259144.675999999046326 ], [ 351742.877400003373623, 259136.094399999827147 ], [ 351750.985399998724461, 259130.883400000631809 ], [ 351763.130500003695488, 259125.072200000286102 ], [ 351767.233999997377396, 259116.662000000476837 ], [ 351793.237400002777576, 259093.232400000095367 ], [ 351803.019199997186661, 259080.857900001108646 ], [ 351809.502099998295307, 259077.111299999058247 ], [ 351816.037100002169609, 259067.243400000035763 ], [ 351828.98309999704361, 259062.072000000625849 ], [ 351844.315600000321865, 259060.719799999147654 ], [ 351850.76070000231266, 259061.405900001525879 ], [ 351859.603100001811981, 259064.644600000232458 ], [ 351865.26349999755621, 259062.79109999909997 ], [ 351869.361599996685982, 259055.014199998229742 ], [ 351872.610200002789497, 259052.296599999070168 ], [ 351885.545400001108646, 259048.391699999570847 ], [ 351892.022900000214577, 259045.278299998492002 ], [ 351832.425200000405312, 258941.987900000065565 ], [ 351827.657399997115135, 258933.716299999505281 ], [ 351804.610600002110004, 258894.053100001066923 ], [ 351782.357500001788139, 258855.874200001358986 ], [ 351759.647699996829033, 258871.309200000017881 ], [ 351749.118900001049042, 258876.711500000208616 ], [ 351733.761200003325939, 258881.018800001591444 ], [ 351724.882799997925758, 258882.001600001007318 ], [ 351625.70269999653101, 258881.611999999731779 ], [ 351608.754000000655651, 258883.373100001364946 ], [ 351599.056699998676777, 258885.826900001615286 ], [ 351592.972900003194809, 258887.457800000905991 ], [ 351600.67059999704361, 258926.366599999368191 ], [ 351601.621299996972084, 258931.171999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501011800", "MAP": "F9-3284-T74", "PARCEL_NAM": "2H", "ACRE": "0.32", "LONGITUDE": -64.99898997, "LATITUDE": 18.36064213, "OBJECTID_1": 1970, "PARCEL_NO_": "102501011800", "Tax_Legal_": "HOPE 2H WEST END QTR", "Name": "DOTTIN, LEONOR D.", "Address": "PO Box 7247", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43500, "Improved_V": 189000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.46118589400001, "SHAPE_Area": 1465.2997373200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351569.404799997806549, 258938.869199998676777 ], [ 351580.082800000905991, 258983.737100001424551 ], [ 351610.311700001358986, 258975.098499998450279 ], [ 351602.297700002789497, 258934.590999998152256 ], [ 351601.621299996972084, 258931.171999998390675 ], [ 351569.404799997806549, 258938.869199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402012200", "MAP": null, "PARCEL_NAM": "2A", "ACRE": null, "LONGITUDE": -64.99908198, "LATITUDE": 18.36024764, "OBJECTID_1": 1432, "PARCEL_NO_": "102402012200", "Tax_Legal_": "HOPE 2A 5 WEST END QTR", "Name": "DOTTIN, IRIS L.C", "Address": "PO Box 7247", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19400, "Improved_V": 185200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.10240789, "SHAPE_Area": 1496.28276297 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351601.621299996972084, 258931.171999998390675 ], [ 351600.67059999704361, 258926.366599999368191 ], [ 351592.972900003194809, 258887.457800000905991 ], [ 351559.316699996590614, 258896.479899998754263 ], [ 351569.404799997806549, 258938.869199998676777 ], [ 351601.621299996972084, 258931.171999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402012600", "MAP": "F9-3663-T79", "PARCEL_NAM": "2J", "ACRE": ".45", "LONGITUDE": -64.99933297, "LATITUDE": 18.36073237, "OBJECTID_1": 1435, "PARCEL_NO_": "102402012600", "Tax_Legal_": "HOPE 2J WEST END QTR", "Name": "JOSE MIGUEL CARRILLO (LIFE ESTATE)", "Address": "PO Box 9971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012971, "Country": "United States", "Land_Value": 56700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.573511403, "SHAPE_Area": 2014.8138554699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351527.623599998652935, 258948.851599998772144 ], [ 351538.997599996626377, 258995.292700000107288 ], [ 351552.003200002014637, 258991.852000001817942 ], [ 351580.082800000905991, 258983.737100001424551 ], [ 351569.404799997806549, 258938.869199998676777 ], [ 351527.623599998652935, 258948.851599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402012100", "MAP": "G9-829-T65", "PARCEL_NAM": "2B", "ACRE": "0.32", "LONGITUDE": -64.99940238000001, "LATITUDE": 18.36032964, "OBJECTID_1": 1431, "PARCEL_NO_": "102402012100", "Tax_Legal_": "2B ESTATE HOPE WEST END QTR", "Name": "JOSE MIGUEL CARRILLO (LIFE ESTATE) & IDALIA CARRILLO", "Address": "PO Box 9971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012971, "Country": "United States", "Land_Value": 44900, "Improved_V": 105000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.553310149, "SHAPE_Area": 1558.4895431899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351524.670000001788139, 258905.609700001776218 ], [ 351533.999600000679493, 258947.328200001269579 ], [ 351569.404799997806549, 258938.869199998676777 ], [ 351559.316699996590614, 258896.479899998754263 ], [ 351557.029500000178814, 258897.093100000172853 ], [ 351538.646799996495247, 258901.915600001811981 ], [ 351534.400600001215935, 258903.029599998146296 ], [ 351524.670000001788139, 258905.609700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402012000", "MAP": "G9-829-T65", "PARCEL_NAM": "2C", "ACRE": ".32", "LONGITUDE": -64.99970851, "LATITUDE": 18.36040502, "OBJECTID_1": 1430, "PARCEL_NO_": "102402012000", "Tax_Legal_": "HOPE 2C WEST END QTR.", "Name": "DE LA ROSA, JOSE M.", "Address": "PO Box 852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44900, "Improved_V": 130200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.94477059, "SHAPE_Area": 1299.85288838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351494.968500003218651, 258913.705600000917912 ], [ 351504.206500001251698, 258954.44649999961257 ], [ 351533.999600000679493, 258947.328200001269579 ], [ 351524.670000001788139, 258905.609700001776218 ], [ 351518.951800003647804, 258907.125900000333786 ], [ 351499.648299999535084, 258912.244300000369549 ], [ 351494.968500003218651, 258913.705600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402015800", "MAP": "D9-8032-T007", "PARCEL_NAM": "2Q", "ACRE": ".52", "LONGITUDE": -64.99947142000001, "LATITUDE": 18.3623551, "OBJECTID_1": 1458, "PARCEL_NO_": "102402015800", "Tax_Legal_": "2Q ESTATE HOPE No.5 WEST END QTR", "Name": "DOTTIN, IRIS E.", "Address": "PO Box 7247", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.45727305, "SHAPE_Area": 2008.2367642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351513.795400001108646, 259122.296900000423193 ], [ 351518.9358000010252, 259170.313900001347065 ], [ 351572.393100000917912, 259164.240499999374151 ], [ 351542.914499998092651, 259118.934399999678135 ], [ 351513.795400001108646, 259122.296900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402012700", "MAP": "D9-7450-T004", "PARCEL_NAM": "2K", "ACRE": ".62", "LONGITUDE": -64.99980093000001, "LATITUDE": 18.36083965, "OBJECTID_1": 1436, "PARCEL_NO_": "102402012700", "Tax_Legal_": "HOPE 2K WEST END QTR", "Name": "RED BALL GROCERY INC", "Address": "PO Box 515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.979148291, "SHAPE_Area": 2831.97688487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351504.206500001251698, 258954.44649999961257 ], [ 351474.315099999308586, 258961.588199999183416 ], [ 351466.473700001835823, 258962.929099999368191 ], [ 351469.621200002729893, 258975.059599999338388 ], [ 351478.92339999973774, 258993.499200001358986 ], [ 351484.885099999606609, 259002.808499999344349 ], [ 351494.518100000917912, 259006.444299999624491 ], [ 351509.35419999808073, 259002.90430000051856 ], [ 351515.875500001013279, 259001.002300001680851 ], [ 351528.01860000193119, 258998.19709999859333 ], [ 351538.997599996626377, 258995.292700000107288 ], [ 351527.623599998652935, 258948.851599998772144 ], [ 351504.206500001251698, 258954.44649999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402011900", "MAP": "D9-7450-T004", "PARCEL_NAM": "2D", "ACRE": ".407", "LONGITUDE": -65.00001228000001, "LATITUDE": 18.36048893, "OBJECTID_1": 1429, "PARCEL_NO_": "102402011900", "Tax_Legal_": "HOPE 2D WEST END QTR", "Name": "FEBRES, GEORGINA C.", "Address": "PO Box 303117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37300, "Improved_V": 185600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.762162534, "SHAPE_Area": 1470.55244201 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351466.473700001835823, 258962.929099999368191 ], [ 351474.315099999308586, 258961.588199999183416 ], [ 351504.206500001251698, 258954.44649999961257 ], [ 351494.968500003218651, 258913.705600000917912 ], [ 351467.202299997210503, 258922.375300001353025 ], [ 351464.073399998247623, 258923.352200001478195 ], [ 351462.495099999010563, 258923.854400001466274 ], [ 351466.473700001835823, 258962.929099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501010100", "MAP": "D9-7450-T004", "PARCEL_NAM": "2F", "ACRE": ".32", "LONGITUDE": -65.00024207, "LATITUDE": 18.36100727, "OBJECTID_1": 1956, "PARCEL_NO_": "102501010100", "Tax_Legal_": "HOPE 2F WEST END QTR", "Name": "CARRILLO, JOSE RAUL", "Address": "PO Box 515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30100, "Improved_V": 172900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.780981844, "SHAPE_Area": 1506.91180362 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351474.375600002706051, 259013.257500000298023 ], [ 351496.113200001418591, 259010.181600000709295 ], [ 351490.378200002014637, 259008.827599998563528 ], [ 351483.082400001585484, 259005.626200001686811 ], [ 351478.898199997842312, 259001.712000001221895 ], [ 351465.957000002264977, 258978.534699998795986 ], [ 351463.430299997329712, 258973.071800000965595 ], [ 351434.482100002467632, 258976.606699999421835 ], [ 351442.683100000023842, 259014.841899998486042 ], [ 351443.315600000321865, 259017.790600001811981 ], [ 351474.375600002706051, 259013.257500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402012900", "MAP": "D9-7450-T004", "PARCEL_NAM": "2G", "ACRE": ".585", "LONGITUDE": -65.00007743, "LATITUDE": 18.36134181, "OBJECTID_1": 1438, "PARCEL_NO_": "102402012900", "Tax_Legal_": "HOPE 2G WEST END QTR.", "Name": "CARRILLO, JOSE RAUL", "Address": "PO Box 515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.72015295599999, "SHAPE_Area": 2268.8426286499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351496.113200001418591, 259010.181600000709295 ], [ 351474.375600002706051, 259013.257500000298023 ], [ 351443.315600000321865, 259017.790600001811981 ], [ 351443.763899996876717, 259019.880899999290705 ], [ 351452.22860000282526, 259059.345100000500679 ], [ 351503.544799998402596, 259048.947200000286102 ], [ 351501.919600002467632, 259014.218400001525879 ], [ 351500.001500003039837, 259010.952500000596046 ], [ 351496.113200001418591, 259010.181600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402015500", "MAP": "D9-7450-T004", "PARCEL_NAM": "2L REM", "ACRE": ".522", "LONGITUDE": -64.9989802, "LATITUDE": 18.36110194, "OBJECTID_1": 1455, "PARCEL_NO_": "102402015500", "Tax_Legal_": "2L HOPE REMAINDER #5 WEST END QUARTER", "Name": "CARRILLO, DIJON", "Address": "PO Box 305333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.062043894, "SHAPE_Area": 2141.3317275300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351566.965700000524521, 258991.809399999678135 ], [ 351564.695600003004074, 259034.582800000905991 ], [ 351619.648199997842312, 259022.290699999779463 ], [ 351611.169200003147125, 258979.432500001043081 ], [ 351604.743400000035763, 258980.153900001198053 ], [ 351604.94200000166893, 258984.030600000172853 ], [ 351594.844200000166893, 258985.001800000667572 ], [ 351581.047200001776218, 258987.609200000762939 ], [ 351574.265000000596046, 258989.71339999884367 ], [ 351566.965700000524521, 258991.809399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402015100", "MAP": "D9-7450-T004", "PARCEL_NAM": "2L-1", "ACRE": ".521", "LONGITUDE": -64.99948315, "LATITUDE": 18.36119928, "OBJECTID_1": 1452, "PARCEL_NO_": "102402015100", "Tax_Legal_": "2L-1 ESTATE HOPE No.5 WESTEND QUARTER", "Name": "CARRILLO, JOSE P. & ORGYLL P.", "Address": "PO Box 305333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.51807106699999, "SHAPE_Area": 2219.0138504199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351564.695600003004074, 259034.582800000905991 ], [ 351566.965700000524521, 258991.809399999678135 ], [ 351558.41889999806881, 258994.263700000941753 ], [ 351547.031700000166893, 258997.464299999177456 ], [ 351527.222699999809265, 259001.958599999547005 ], [ 351505.335400000214577, 259007.932900000363588 ], [ 351506.765399999916553, 259017.075300000607967 ], [ 351508.154799997806549, 259033.578499998897314 ], [ 351509.252099998295307, 259040.848000001162291 ], [ 351564.695600003004074, 259034.582800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402015400", "MAP": "D9-7427-T004", "PARCEL_NAM": "2M", "ACRE": "1.009", "LONGITUDE": -64.99959312, "LATITUDE": 18.36173728, "OBJECTID_1": 1454, "PARCEL_NO_": "102402015400", "Tax_Legal_": "2M ESTATE HOPE #5 WEST END QUARTER", "Name": "CARRILLO, JOSE P. & JOSE P. CARRILLO, JR.", "Address": "PO Box 305333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.32411991399999, "SHAPE_Area": 4221.1109417199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351543.09179999679327, 259112.339200001209974 ], [ 351564.695600003004074, 259034.582800000905991 ], [ 351509.252099998295307, 259040.848000001162291 ], [ 351509.071699999272823, 259045.381599999964237 ], [ 351508.860600002110004, 259050.690000001341105 ], [ 351508.016999997198582, 259058.028099998831749 ], [ 351506.872500002384186, 259063.644900001585484 ], [ 351504.144900001585484, 259070.655799999833107 ], [ 351500.315600000321865, 259077.814300000667572 ], [ 351484.709600001573563, 259103.164200000464916 ], [ 351482.626800000667572, 259108.148600000888109 ], [ 351483.385899998247623, 259111.592500001192093 ], [ 351485.095600001513958, 259114.106199998408556 ], [ 351492.630699999630451, 259115.571600001305342 ], [ 351501.901199996471405, 259116.269299998879433 ], [ 351510.387999996542931, 259116.648299999535084 ], [ 351518.882299996912479, 259116.089699998497963 ], [ 351543.09179999679327, 259112.339200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402015200", "MAP": "D9-7427-T004", "PARCEL_NAM": "2N", "ACRE": ".555", "LONGITUDE": -65.00006516000001, "LATITUDE": 18.36176222, "OBJECTID_1": 1453, "PARCEL_NO_": "102402015200", "Tax_Legal_": "2N ESTATE HOPE No.5 WESTEND QUARTER", "Name": "FEBRES, EDUARDO & ALNESAH POPO-FEBRES", "Address": "PO Box 303117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.172828393, "SHAPE_Area": 2058.36391813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351466.5050999969244, 259125.906100001186132 ], [ 351487.377899996936321, 259123.812800001353025 ], [ 351481.574600003659725, 259122.04839999973774 ], [ 351478.445100001990795, 259120.148699998855591 ], [ 351476.431999996304512, 259116.226199999451637 ], [ 351475.526600003242493, 259111.374699998646975 ], [ 351476.036200001835823, 259106.534299999475479 ], [ 351477.642499998211861, 259102.171300001442432 ], [ 351480.188500002026558, 259098.284400001168251 ], [ 351493.709100000560284, 259078.2314000017941 ], [ 351500.247699998319149, 259066.405900001525879 ], [ 351502.188000001013279, 259059.545200001448393 ], [ 351503.342299997806549, 259052.678300000727177 ], [ 351503.544799998402596, 259048.947200000286102 ], [ 351452.22860000282526, 259059.345100000500679 ], [ 351452.893899999558926, 259062.447399999946356 ], [ 351466.5050999969244, 259125.906100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402010600", "MAP": "A3-90-T55", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.9992206, "LATITUDE": 18.36311103, "OBJECTID_1": 1417, "PARCEL_NO_": "102402010600", "Tax_Legal_": "PAR 2 Rem. HOPE No.5 WEST END QTR.", "Name": "RED BALL GROCERY, INC.", "Address": "PO Box 515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 992.74103401000002, "SHAPE_Area": 24020.3652358 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351588.813699997961521, 259098.270199999213219 ], [ 351607.595200002193451, 259136.916600000113249 ], [ 351572.393100000917912, 259164.240499999374151 ], [ 351477.050800003111362, 259175.072500001639128 ], [ 351538.033600002527237, 259459.389499999582767 ], [ 351542.603000000119209, 259454.684200000017881 ], [ 351545.133400000631809, 259441.61710000038147 ], [ 351541.958499997854233, 259435.680500000715256 ], [ 351541.195299997925758, 259430.607999999076128 ], [ 351543.64299999922514, 259427.250500001013279 ], [ 351550.939400002360344, 259422.666200000792742 ], [ 351558.268200002610683, 259414.282400000840425 ], [ 351559.913099996745586, 259410.496199999004602 ], [ 351559.151799999177456, 259405.212600000202656 ], [ 351554.380400002002716, 259397.363099999725819 ], [ 351544.902500003576279, 259374.065200001001358 ], [ 351540.976999998092651, 259361.578600000590086 ], [ 351533.846100002527237, 259346.743700001388788 ], [ 351539.679099999368191, 259324.626600001007318 ], [ 351544.572700001299381, 259318.122699998319149 ], [ 351547.909400001168251, 259305.062300000339746 ], [ 351555.326300002634525, 259286.33559999987483 ], [ 351566.720799997448921, 259273.974399998784065 ], [ 351582.920699998736382, 259265.452100001275539 ], [ 351598.346799999475479, 259253.1239 ], [ 351608.123199999332428, 259241.382599998265505 ], [ 351612.993500001728535, 259237.622800000011921 ], [ 351616.258299998939037, 259233.005499999970198 ], [ 351627.580799996852875, 259229.087400000542402 ], [ 351638.129399999976158, 259221.363200001418591 ], [ 351641.349299997091293, 259222.022900000214577 ], [ 351645.362800002098083, 259224.166700001806021 ], [ 351649.380000002682209, 259225.888300001621246 ], [ 351659.841700002551079, 259225.452399998903275 ], [ 351630.928800001740456, 259079.309599999338388 ], [ 351588.813699997961521, 259098.270199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402015700", "MAP": "D9-8032-T007", "PARCEL_NAM": "2P", "ACRE": ".52", "LONGITUDE": -64.99988808000001, "LATITUDE": 18.36237384, "OBJECTID_1": 1457, "PARCEL_NO_": "102402015700", "Tax_Legal_": "2P ESTATE HOPE No.5 WEST END QTR", "Name": "BELLE, ZOLAYMA & KIBWE K.", "Address": "PO Box 305912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77400, "Improved_V": 177200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.26021100400001, "SHAPE_Area": 2197.5962066699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351518.9358000010252, 259170.313900001347065 ], [ 351513.795400001108646, 259122.296900000423193 ], [ 351496.02080000191927, 259124.349300000816584 ], [ 351487.377899996936321, 259123.812800001353025 ], [ 351466.5050999969244, 259125.906100001186132 ], [ 351477.050800003111362, 259175.072500001639128 ], [ 351518.9358000010252, 259170.313900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402010500", "MAP": "A3-90-T55", "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -65.00068918, "LATITUDE": 18.36083161, "OBJECTID_1": 1416, "PARCEL_NO_": "102402010500", "Tax_Legal_": "HOPE 3 WEST END QTR", "Name": "BENJAMIN, CLIFFORD", "Address": "PO Box 305868", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1002700, "Improved_V": 234100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.849316657, "SHAPE_Area": 1614.72022674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351365.3766999989748, 259000.103500001132488 ], [ 351436.815200001001358, 258987.484499998390675 ], [ 351427.363300003111362, 258943.417300000786781 ], [ 351425.995099999010563, 258944.361000001430511 ], [ 351406.498000003397465, 258961.300000000745058 ], [ 351404.061099998652935, 258963.390999998897314 ], [ 351399.165600001811981, 258970.105900000780821 ], [ 351383.718000002205372, 258984.967199999839067 ], [ 351378.842399999499321, 258989.360199999064207 ], [ 351365.3766999989748, 259000.103500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402010500", "MAP": "A3-90-T55", "PARCEL_NAM": "3 REM", "ACRE": null, "LONGITUDE": -65.00078525000001, "LATITUDE": 18.36369498, "OBJECTID_1": 1416, "PARCEL_NO_": "102402010500", "Tax_Legal_": "HOPE 3 WEST END QTR", "Name": "BENJAMIN, CLIFFORD", "Address": "PO Box 305868", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1002700, "Improved_V": 234100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1595.1183045299999, "SHAPE_Area": 94806.848026799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351453.67790000140667, 259066.102400001138449 ], [ 351380.431999996304512, 259083.191100001335144 ], [ 351365.3766999989748, 259000.103500001132488 ], [ 351354.485799998044968, 259008.792599998414516 ], [ 351352.862400002777576, 259010.045800000429153 ], [ 351345.551600001752377, 259016.318799998611212 ], [ 351329.306699998676777, 259030.118000000715256 ], [ 351317.942800000309944, 259038.890999998897314 ], [ 351304.141999997198582, 259049.754900000989437 ], [ 351300.090599998831749, 259052.043699998408556 ], [ 351297.642899997532368, 259055.401200000196695 ], [ 351296.824000000953674, 259056.87220000103116 ], [ 351297.571000002324581, 259063.844399999827147 ], [ 351298.229800000786781, 259081.159400001168251 ], [ 351296.480599999427795, 259097.188200000673532 ], [ 351293.219300001859665, 259101.383400000631809 ], [ 351281.850100003182888, 259110.789599999785423 ], [ 351272.91950000077486, 259117.8935999982059 ], [ 351256.687100000679493, 259130.215300001204014 ], [ 351269.14580000191927, 259182.246300000697374 ], [ 351358.590000003576279, 259568.22410000115633 ], [ 351374.694700002670288, 259570.888999998569489 ], [ 351378.737000003457069, 259569.655499998480082 ], [ 351382.802799999713898, 259565.677999999374151 ], [ 351384.442400000989437, 259562.525100000202656 ], [ 351384.503499999642372, 259555.348400000482798 ], [ 351382.172700002789497, 259544.985700000077486 ], [ 351383.034699998795986, 259538.448899999260902 ], [ 351381.528200000524521, 259525.98200000077486 ], [ 351379.163199998438358, 259519.629900000989437 ], [ 351375.982900001108646, 259514.326499998569489 ], [ 351371.188199996948242, 259509.221000000834465 ], [ 351366.427599996328354, 259500.105000000447035 ], [ 351368.101400002837181, 259492.941500000655651 ], [ 351377.877899996936321, 259481.200300000607967 ], [ 351389.166199997067451, 259481.292700000107288 ], [ 351396.396099999547005, 259484.518300000578165 ], [ 351406.762999996542931, 259498.113099999725819 ], [ 351407.481299996376038, 259508.462600000202656 ], [ 351406.579599998891354, 259519.643199998885393 ], [ 351404.083400003612041, 259528.699700001627207 ], [ 351403.984499998390675, 259540.309099998325109 ], [ 351405.501800000667572, 259551.509500000625849 ], [ 351410.251599997282028, 259561.8918999992311 ], [ 351414.277699999511242, 259562.558200001716614 ], [ 351422.347999997437, 259561.779800001531839 ], [ 351433.681400001049042, 259556.595300000160933 ], [ 351443.378700003027916, 259554.141499999910593 ], [ 351473.420900002121925, 259529.900499999523163 ], [ 351479.09740000218153, 259526.147300001233816 ], [ 351493.656000003218651, 259520.989100001752377 ], [ 351497.732500001788139, 259515.745099999010563 ], [ 351501.063799999654293, 259503.317899998277426 ], [ 351506.774599999189377, 259495.554200001060963 ], [ 351522.134099997580051, 259491.035799998790026 ], [ 351523.757500000298023, 259489.782499998807907 ], [ 351524.63570000231266, 259481.346000000834465 ], [ 351523.068000003695488, 259476.055799998342991 ], [ 351523.886900000274181, 259474.584899999201298 ], [ 351524.741800002753735, 259468.892299998551607 ], [ 351528.795000001788139, 259466.392400000244379 ], [ 351532.860699996352196, 259462.414900001138449 ], [ 351537.721900001168251, 259459.710499998182058 ], [ 351538.033600002527237, 259459.389499999582767 ], [ 351453.67790000140667, 259066.102400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402011400", "MAP": "F9-1746-T66", "PARCEL_NAM": "3C", "ACRE": ".50", "LONGITUDE": -65.00096575000001, "LATITUDE": 18.36140185, "OBJECTID_1": 1425, "PARCEL_NO_": "102402011400", "Tax_Legal_": "HOPE 3C WEST END QTR", "Name": "BENJAMIN, CAROL, JOY,LANDA, & JULIA BENJAMIN BENNERSON", "Address": "PO BOX 302144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70200, "Improved_V": 225500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.56714919000001, "SHAPE_Area": 1365.52062544 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351395.671700000762939, 259079.635600000619888 ], [ 351382.00280000269413, 258997.166600000113249 ], [ 351365.3766999989748, 259000.103500001132488 ], [ 351380.431999996304512, 259083.191100001335144 ], [ 351395.671700000762939, 259079.635600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402011500", "MAP": "G9-857-T66", "PARCEL_NAM": "3D", "ACRE": ".50", "LONGITUDE": -65.00080422000001, "LATITUDE": 18.36137374, "OBJECTID_1": 1426, "PARCEL_NO_": "102402011500", "Tax_Legal_": "HOPE 3D WEST END QTR", "Name": "GERRARD, ALEXIS B", "Address": "P.O. BOX 5868", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65900, "Improved_V": 144900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.13687419499999, "SHAPE_Area": 1533.4528820800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351413.633400000631809, 259075.445099998265505 ], [ 351400.226499997079372, 258993.947599999606609 ], [ 351382.00280000269413, 258997.166600000113249 ], [ 351395.671700000762939, 259079.635600000619888 ], [ 351413.633400000631809, 259075.445099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402011600", "MAP": "G9-857-T66", "PARCEL_NAM": "3E", "ACRE": ".50", "LONGITUDE": -65.00063289000001, "LATITUDE": 18.36133991, "OBJECTID_1": 1427, "PARCEL_NO_": "102402011600", "Tax_Legal_": "HOPE 3E WESTEND QTR.", "Name": "ENCARNACION, JOYCELYN", "Address": "PO Box 2844", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.22925105799999, "SHAPE_Area": 1519.3381134599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351431.793499998748302, 259071.208200000226498 ], [ 351418.35700000077486, 258990.745000001043081 ], [ 351400.226499997079372, 258993.947599999606609 ], [ 351413.633400000631809, 259075.445099998265505 ], [ 351431.793499998748302, 259071.208200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501010200", "MAP": "D9-3950-T87", "PARCEL_NAM": "1A", "ACRE": ".27", "LONGITUDE": -64.99872559000001, "LATITUDE": 18.36054029, "OBJECTID_1": 1957, "PARCEL_NO_": "102501010200", "Tax_Legal_": "HOPE 1A WEST END QTR", "Name": "ABRAHAM, OSWIN", "Address": "PO Box 9084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.766961955, "SHAPE_Area": 1007.87095376 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351608.888899996876717, 258967.906700000166893 ], [ 351631.307700000703335, 258963.795400001108646 ], [ 351631.368199996650219, 258924.708799999207258 ], [ 351601.621299996972084, 258931.171999998390675 ], [ 351602.297700002789497, 258934.590999998152256 ], [ 351608.888899996876717, 258967.906700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601010100", "MAP": "F9-845-T61", "PARCEL_NAM": "3", "ACRE": ".56", "LONGITUDE": -64.98134609, "LATITUDE": 18.36466591, "OBJECTID_1": 2170, "PARCEL_NO_": "102601010100", "Tax_Legal_": "SORGENFRI ESTATE 3 SOUTHSIDE QTR", "Name": "SHANKO, SHELLY P.", "Address": "217 Sunrise Ave", "City": "Lantana", "State": "Florida", "Zip": 33462, "Country": "United States", "Land_Value": 91900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.84617140899999, "SHAPE_Area": 2461.7635972100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353415.373599998652935, 259413.065200001001358 ], [ 353434.12049999833107, 259449.717000000178814 ], [ 353439.251299999654293, 259446.564800001680851 ], [ 353440.871100001037121, 259445.73369999974966 ], [ 353477.324199996888638, 259426.189300000667572 ], [ 353486.238600000739098, 259420.984900001436472 ], [ 353488.720799997448921, 259419.336100000888109 ], [ 353464.256599999964237, 259383.248799998313189 ], [ 353450.175700001418591, 259394.72520000115037 ], [ 353433.968500003218651, 259404.09180000051856 ], [ 353423.448700003325939, 259408.438700001686811 ], [ 353415.373599998652935, 259413.065200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601010400", "MAP": "F9-845-T61", "PARCEL_NAM": "2", "ACRE": ".62", "LONGITUDE": -64.98090941, "LATITUDE": 18.36435659, "OBJECTID_1": 2173, "PARCEL_NO_": "102601010400", "Tax_Legal_": "SORGENFRI 2 S S QTR", "Name": "RICHARDS, LEROY E.", "Address": "6800 ESTATE SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 127700, "Improved_V": 149700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.62040186600001, "SHAPE_Area": 2618.8734783999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353464.256599999964237, 259383.248799998313189 ], [ 353488.720799997448921, 259419.336100000888109 ], [ 353495.970100000500679, 259414.520700000226498 ], [ 353506.51690000295639, 259407.007599998265505 ], [ 353522.751000002026558, 259394.474899999797344 ], [ 353524.376199997961521, 259393.010499998927116 ], [ 353532.505900003015995, 259385.266600001603365 ], [ 353504.612199999392033, 259346.619300000369549 ], [ 353483.515000000596046, 259362.067499998956919 ], [ 353471.30349999666214, 259375.688700001686811 ], [ 353464.791799999773502, 259382.8125 ], [ 353464.256599999964237, 259383.248799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003013600", "MAP": "D9-546-T65", "PARCEL_NAM": "8", "ACRE": ".668", "LONGITUDE": -64.98252076, "LATITUDE": 18.36506951, "OBJECTID_1": 133, "PARCEL_NO_": "101003013600", "Tax_Legal_": "SORGENFRI 5-32 & 5-8 S S QTR", "Name": "GODFREY, SCOTT J", "Address": "PO Box 12027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 132100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.71453070300001, "SHAPE_Area": 2643.614052 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353302.352099999785423, 259496.719500001519918 ], [ 353351.945500001311302, 259485.882199998944998 ], [ 353339.520700000226498, 259415.32660000026226 ], [ 353324.927500002086163, 259425.364199999719858 ], [ 353309.702799998223782, 259436.330899998545647 ], [ 353302.352099999785423, 259496.719500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003013900", "MAP": "F9-845-T61", "PARCEL_NAM": "4", "ACRE": ".59", "LONGITUDE": -64.98192567, "LATITUDE": 18.36501154, "OBJECTID_1": 136, "PARCEL_NO_": "101003013900", "Tax_Legal_": "4 SORGENFRI (EASTERN PART) No.1 SOUTHSIDE QTR.", "Name": "SZYMANSKI, RAYMOND R. & CAROLYN H.", "Address": "4 Estate Sorgenfri", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165500, "Improved_V": 193400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.62758692899999, "SHAPE_Area": 3163.8312332300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353434.12049999833107, 259449.717000000178814 ], [ 353415.373599998652935, 259413.065200001001358 ], [ 353412.914499998092651, 259414.474199999123812 ], [ 353408.040700003504753, 259418.656100001186132 ], [ 353403.161399997770786, 259423.471400000154972 ], [ 353387.904700003564358, 259434.395500000566244 ], [ 353370.124899998307228, 259448.541200000792742 ], [ 353353.444099999964237, 259456.497000001370907 ], [ 353346.86259999871254, 259457.018300000578165 ], [ 353353.087700001895428, 259492.368299998342991 ], [ 353357.430699996650219, 259490.8581000007689 ], [ 353375.230700001120567, 259483.82660000026226 ], [ 353378.468599997460842, 259482.375500001013279 ], [ 353387.37219999730587, 259478.437600001692772 ], [ 353434.12049999833107, 259449.717000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003013600", "MAP": "D9-546-T65", "PARCEL_NAM": "5-32", "ACRE": ".032", "LONGITUDE": -64.98251981, "LATITUDE": 18.36538279, "OBJECTID_1": 133, "PARCEL_NO_": "101003013600", "Tax_Legal_": "SORGENFRI 5-32 & 5-8 S S QTR", "Name": "GODFREY, SCOTT J", "Address": "PO Box 12027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 132100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.65188331900001, "SHAPE_Area": 407.46531699600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353351.945500001311302, 259485.882199998944998 ], [ 353302.352099999785423, 259496.719500001519918 ], [ 353301.288699999451637, 259505.455600000917912 ], [ 353313.790899999439716, 259502.111099999397993 ], [ 353316.213500000536442, 259501.708700001239777 ], [ 353329.942400000989437, 259499.287999998778105 ], [ 353348.534299999475479, 259493.951699998229742 ], [ 353353.087700001895428, 259492.368299998342991 ], [ 353351.945500001311302, 259485.882199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015000", "MAP": "D9-5060-T91", "PARCEL_NAM": "18", "ACRE": "1.85", "LONGITUDE": -64.98062536, "LATITUDE": 18.3631806, "OBJECTID_1": 146, "PARCEL_NO_": "101003015000", "Tax_Legal_": "SORGENFRI/EASTERN PORTION S S QTR", "Name": "MILLIN, AGNES & H. & KILPATRICK, A & G", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6079400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 433.55388015300002, "SHAPE_Area": 6173.9100043999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353527.994599997997284, 259283.124800000339746 ], [ 353568.252300001680851, 259244.06700000166893 ], [ 353600.053900003433228, 259247.373799998313189 ], [ 353600.636399999260902, 259244.180399999022484 ], [ 353602.313799999654293, 259236.594799999147654 ], [ 353610.646600000560284, 259204.999000001698732 ], [ 353611.467299997806549, 259203.316899999976158 ], [ 353610.691600002348423, 259199.721999999135733 ], [ 353434.355599999427795, 259270.853100001811981 ], [ 353438.598999999463558, 259272.258499998599291 ], [ 353494.570699997246265, 259294.138300001621246 ], [ 353510.303700000047684, 259300.288499999791384 ], [ 353527.994599997997284, 259283.124800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601020200", "MAP": "G9-1251-T69", "PARCEL_NAM": "12", "ACRE": ".72", "LONGITUDE": -64.98035531, "LATITUDE": 18.36339668, "OBJECTID_1": 2210, "PARCEL_NO_": "102601020200", "Tax_Legal_": "SORGENFRI 12 S S QTR", "Name": "MILLIN, HENRY", "Address": "PO BOX 3926", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 122300, "Improved_V": 183400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.62512325500001, "SHAPE_Area": 2826.161348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353510.303700000047684, 259300.288499999791384 ], [ 353531.516400001943111, 259316.024999998509884 ], [ 353547.711800001561642, 259304.120000001043081 ], [ 353586.661200001835823, 259275.519000001251698 ], [ 353592.352099999785423, 259270.077100001275539 ], [ 353597.272699996829033, 259260.4070999994874 ], [ 353598.098800003528595, 259258.09180000051856 ], [ 353600.053900003433228, 259247.373799998313189 ], [ 353568.252300001680851, 259244.06700000166893 ], [ 353527.994599997997284, 259283.124800000339746 ], [ 353510.303700000047684, 259300.288499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601025000", "MAP": "G9-2051-T72", "PARCEL_NAM": "14", "ACRE": "1.424", "LONGITUDE": -64.98114302, "LATITUDE": 18.36370594, "OBJECTID_1": 2258, "PARCEL_NO_": "102601025000", "Tax_Legal_": "SORGENFRI 14 S S QTR", "Name": "MILLIN, AGNES A", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 243700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.667686366, "SHAPE_Area": 4150.2907518000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353487.865099996328354, 259341.394600000232458 ], [ 353494.217399999499321, 259343.059900000691414 ], [ 353512.009300000965595, 259330.214499998837709 ], [ 353530.671400003135204, 259316.646200001239777 ], [ 353531.516400001943111, 259316.024999998509884 ], [ 353510.303700000047684, 259300.288499999791384 ], [ 353494.570699997246265, 259294.138300001621246 ], [ 353438.598999999463558, 259272.258499998599291 ], [ 353429.822999998927116, 259326.179000001400709 ], [ 353487.865099996328354, 259341.394600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601020100", "MAP": "G9-1505-T70", "PARCEL_NAM": "13", "ACRE": ".862", "LONGITUDE": -64.98139038, "LATITUDE": 18.36414112, "OBJECTID_1": 2209, "PARCEL_NO_": "102601020100", "Tax_Legal_": "SORGENFRI 13 S S QTR", "Name": "KILPATRICK, GLORIA & JUSTINE KILPATRICK LAFORTUNE", "Address": "PO Box 306802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 142600, "Improved_V": 182600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.7150213, "SHAPE_Area": 2755.3816963099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353494.217399999499321, 259343.059900000691414 ], [ 353487.865099996328354, 259341.394600000232458 ], [ 353429.822999998927116, 259326.179000001400709 ], [ 353417.51240000128746, 259401.817400000989437 ], [ 353438.10980000346899, 259391.249000001698732 ], [ 353452.709700003266335, 259381.236000001430511 ], [ 353464.903300002217293, 259369.725600000470877 ], [ 353473.050999999046326, 259359.870900001376867 ], [ 353477.118500001728535, 259355.682399999350309 ], [ 353481.178800001740456, 259352.338100001215935 ], [ 353486.857199996709824, 259348.373799998313189 ], [ 353494.217399999499321, 259343.059900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98355892, "LATITUDE": 18.3688861, "OBJECTID_1": 146, "PARCEL_NO_": "101003015000", "Tax_Legal_": "SORGENFRI/EASTERN PORTION S S QTR", "Name": "MILLIN, AGNES & H. & KILPATRICK, A & G", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6079400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 660.28690738299997, "SHAPE_Area": 2042.3106159199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353164.270300000905991, 259961.61430000141263 ], [ 353171.73870000243187, 259957.239999998360872 ], [ 353192.684799998998642, 259945.988600000739098 ], [ 353208.471199996769428, 259937.400499999523163 ], [ 353213.028800003230572, 259934.432100001722574 ], [ 353217.300899997353554, 259929.358199998736382 ], [ 353219.466600000858307, 259923.065799999982119 ], [ 353220.114000000059605, 259917.662799999117851 ], [ 353218.621699996292591, 259915.247400000691414 ], [ 353215.322999998927116, 259911.916299998760223 ], [ 353211.093800000846386, 259911.582299999892712 ], [ 353204.42509999871254, 259913.933100000023842 ], [ 353198.356200002133846, 259916.889600001275539 ], [ 353191.984999999403954, 259919.843699999153614 ], [ 353186.832299999892712, 259921.605700001120567 ], [ 353181.6891999989748, 259922.165800001472235 ], [ 353174.730099998414516, 259923.012099999934435 ], [ 353171.419600002467632, 259921.183200001716614 ], [ 353172.066899999976158, 259915.780200000852346 ], [ 353173.31870000064373, 259910.381900001317263 ], [ 353177.298000000417233, 259904.103900000452995 ], [ 353183.086099997162819, 259898.441100001335144 ], [ 353187.669900000095367, 259892.167899999767542 ], [ 353191.632600001990795, 259887.992899999022484 ], [ 353196.199699997901917, 259883.822700001299381 ], [ 353199.567400000989437, 259878.441199999302626 ], [ 353203.244400002062321, 259872.160799998790026 ], [ 353205.10080000013113, 259866.767299998551607 ], [ 353207.863899998366833, 259861.381000000983477 ], [ 353210.931699998676777, 259855.696699999272823 ], [ 353214.001900002360344, 259849.711899999529123 ], [ 353216.750699996948242, 259846.128199998289347 ], [ 353221.025200001895428, 259840.753899998962879 ], [ 353226.499099999666214, 259836.590900000184774 ], [ 353232.575300000607967, 259832.7331000007689 ], [ 353239.8699000030756, 259827.683100000023842 ], [ 353249.5945999994874, 259821.150199998170137 ], [ 353259.302500002086163, 259816.720199998468161 ], [ 353273.546800002455711, 259812.025800000876188 ], [ 353296.266199998557568, 259805.896200001239777 ], [ 353311.107900001108646, 259802.107799999415874 ], [ 353315.486000001430511, 259800.610800001770258 ], [ 353314.522100001573563, 259794.903799999505281 ], [ 353282.374200001358986, 259804.283900000154972 ], [ 353257.831699997186661, 259811.60080000013113 ], [ 353246.003100000321865, 259816.614900000393391 ], [ 353233.246399998664856, 259824.325699999928474 ], [ 353221.701099999248981, 259831.745600000023842 ], [ 353214.699199996888638, 259837.999699998646975 ], [ 353203.67509999871254, 259855.939699999988079 ], [ 353194.150499999523163, 259875.393800001591444 ], [ 353190.168799996376038, 259881.972199998795986 ], [ 353177.676399998366833, 259894.492400001734495 ], [ 353169.432199999690056, 259904.942999999970198 ], [ 353166.640500001609325, 259913.934500001370907 ], [ 353165.381499998271465, 259920.234099999070168 ], [ 353167.452200002968311, 259925.958999998867512 ], [ 353173.471199996769428, 259929.311700001358986 ], [ 353184.042999997735023, 259930.296700000762939 ], [ 353194.043700002133846, 259927.070900000631809 ], [ 353200.424400001764297, 259922.915100000798702 ], [ 353204.363300003111362, 259921.74439999833703 ], [ 353206.783699996769428, 259921.463100001215935 ], [ 353209.794399999082088, 259922.989199999719858 ], [ 353210.375100001692772, 259925.998399998992682 ], [ 353209.437399998307228, 259929.896800000220537 ], [ 353203.661200001835823, 259934.057399999350309 ], [ 353172.71679999679327, 259948.234200000762939 ], [ 353163.988200001418591, 259952.486400000751019 ], [ 353164.270300000905991, 259961.61430000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98267448, "LATITUDE": 18.36705961, "OBJECTID_1": 115, "PARCEL_NO_": "101003011400", "Tax_Legal_": "11-14 SORGENFRI NO.1 SOUTHSIDE QTR.", "Name": "YVONNE E BOWSKY REV. TRUST", "Address": "PO Box 8164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64900, "Improved_V": 329000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.704738647, "SHAPE_Area": 2509.7505281600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353330.781199999153614, 259706.804900001734495 ], [ 353337.349899999797344, 259655.197200000286102 ], [ 353328.609899997711182, 259655.697399999946356 ], [ 353319.735100001096725, 259656.258000001311302 ], [ 353283.431199997663498, 259658.282900001853704 ], [ 353283.355700001120567, 259667.148200001567602 ], [ 353282.223899997770786, 259705.346900001168251 ], [ 353319.310699999332428, 259706.072599999606609 ], [ 353321.729599997401237, 259706.092399999499321 ], [ 353330.781199999153614, 259706.804900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98229782, "LATITUDE": 18.36706682, "OBJECTID_1": 116, "PARCEL_NO_": "101003011500", "Tax_Legal_": "11-15 ESTATE SORGENFRI No.1 SOUTHSIDE QTR.", "Name": "LETITIA I ROGERS WARNER REVOCABLE LIVING TRUST", "Address": "PO Box 301772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98700, "Improved_V": 238400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.94787934300001, "SHAPE_Area": 1557.9230170599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353362.109499998390675, 259709.413699999451637 ], [ 353364.017800003290176, 259653.671000000089407 ], [ 353344.745099999010563, 259654.774000000208616 ], [ 353337.349899999797344, 259655.197200000286102 ], [ 353330.781199999153614, 259706.804900001734495 ], [ 353342.681199997663498, 259707.741599999368191 ], [ 353362.109499998390675, 259709.413699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98223364, "LATITUDE": 18.36659496, "OBJECTID_1": 122, "PARCEL_NO_": "101003012300", "Tax_Legal_": "SORGENFRI EST. 5-31 EASTERN SEC-S S QTR", "Name": "MURPHY, DENNIS & DEBORAH", "Address": "P O BOX 5674", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 174400, "Improved_V": 68400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.41171864699999, "SHAPE_Area": 3614.6920243700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353397.992299996316433, 259651.621199999004602 ], [ 353393.5050999969244, 259610.42119999974966 ], [ 353378.190600000321865, 259609.662599999457598 ], [ 353366.914800003170967, 259608.092700000852346 ], [ 353337.140600003302097, 259600.88289999961853 ], [ 353333.10360000282526, 259601.4831000007689 ], [ 353327.405500002205372, 259607.769299998879433 ], [ 353322.535199999809265, 259611.529100000858307 ], [ 353310.379399999976158, 259618.606800001114607 ], [ 353328.609899997711182, 259655.697399999946356 ], [ 353344.745099999010563, 259654.774000000208616 ], [ 353373.788599997758865, 259653.111800000071526 ], [ 353397.992299996316433, 259651.621199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98199983000001, "LATITUDE": 18.3670631, "OBJECTID_1": 117, "PARCEL_NO_": "101003011600", "Tax_Legal_": "SORGENFRI 11-16 SOUTHSIDE QTR", "Name": "JACKSON, JR. AMERICUS & A", "Address": "P O BOX 2024", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98900, "Improved_V": 194800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.067863604, "SHAPE_Area": 1966.5824193399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353397.972300000488758, 259652.149300001561642 ], [ 353380.894400000572205, 259652.674199998378754 ], [ 353373.788599997758865, 259653.111800000071526 ], [ 353364.017800003290176, 259653.671000000089407 ], [ 353362.109499998390675, 259709.413699999451637 ], [ 353372.494999997317791, 259710.307599999010563 ], [ 353395.678700000047684, 259712.67790000140667 ], [ 353397.972300000488758, 259652.149300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98168436, "LATITUDE": 18.36707027, "OBJECTID_1": 118, "PARCEL_NO_": "101003011700", "Tax_Legal_": "SORGENFRI EST. 11-17 S S QTR.", "Name": "FORDE, GLENN", "Address": "PO BOX 48176", "City": "LOS ANGELES", "State": "California", "Zip": 90048, "Country": "United States", "Land_Value": 105900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.28655330399999, "SHAPE_Area": 2071.6354568900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353431.21339999884367, 259651.127700001001358 ], [ 353397.972300000488758, 259652.149300001561642 ], [ 353395.678700000047684, 259712.67790000140667 ], [ 353403.916000001132488, 259713.520100001245737 ], [ 353414.388999998569489, 259714.661299999803305 ], [ 353428.504100002348423, 259715.568999998271465 ], [ 353431.21339999884367, 259651.127700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98136026, "LATITUDE": 18.36707306, "OBJECTID_1": 119, "PARCEL_NO_": "101003011800", "Tax_Legal_": "SORGENFRI EST. 11-18 SOUTHSIDE QTR", "Name": "SEWER, IRVIN A", "Address": "PO Box 131", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.06102204499999, "SHAPE_Area": 2335.3337223799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353467.258599996566772, 259650.640700001269579 ], [ 353431.21339999884367, 259651.127700001001358 ], [ 353428.504100002348423, 259715.568999998271465 ], [ 353436.954999998211861, 259716.112500000745058 ], [ 353443.4037000015378, 259716.376400001347065 ], [ 353463.793499998748302, 259716.748599998652935 ], [ 353467.258599996566772, 259650.640700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98110611, "LATITUDE": 18.3679618, "OBJECTID_1": 112, "PARCEL_NO_": "101003011100", "Tax_Legal_": "SORGENFRI EST. 11-34 S.S. QTR", "Name": "PAUL, LOUANN JAMES", "Address": "PO BOX 3391", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.73261905000001, "SHAPE_Area": 1448.01533262 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353487.121899999678135, 259808.212200000882149 ], [ 353492.08219999819994, 259758.866399999707937 ], [ 353457.528899997472763, 259762.088199999183416 ], [ 353455.594400003552437, 259799.8581000007689 ], [ 353487.121899999678135, 259808.212200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98108737, "LATITUDE": 18.36760066, "OBJECTID_1": 149, "PARCEL_NO_": "101003015300", "Tax_Legal_": "SORGENFRI 11-20 S.S. QTR.", "Name": "JOHNSON, PATRICE K. -TRUSTEE", "Address": "PO Box 306141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.71895768300001, "SHAPE_Area": 1290.1328944700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353492.08219999819994, 259758.866399999707937 ], [ 353495.751999996602535, 259722.359499998390675 ], [ 353486.895999997854233, 259722.43189999833703 ], [ 353471.549099996685982, 259725.472699999809265 ], [ 353458.640900000929832, 259726.211399998515844 ], [ 353457.528899997472763, 259762.088199999183416 ], [ 353492.08219999819994, 259758.866399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015000", "MAP": null, "PARCEL_NAM": "11-19", "ACRE": null, "LONGITUDE": -64.98103955000001, "LATITUDE": 18.36706298, "OBJECTID_1": 146, "PARCEL_NO_": "101003015000", "Tax_Legal_": "SORGENFRI/EASTERN PORTION S S QTR", "Name": "MILLIN, AGNES & H. & KILPATRICK, A & G", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6079400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.75107494100001, "SHAPE_Area": 2084.4885655500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353496.649099998176098, 259713.43470000103116 ], [ 353499.445900000631809, 259650.205899998545647 ], [ 353467.258599996566772, 259650.640700001269579 ], [ 353463.793499998748302, 259716.748599998652935 ], [ 353464.36599999666214, 259716.759100001305342 ], [ 353481.321999996900558, 259714.153599999845028 ], [ 353496.649099998176098, 259713.43470000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015000", "MAP": "C9-320-T91", "PARCEL_NAM": "15", "ACRE": "33.5", "LONGITUDE": -64.98209401, "LATITUDE": 18.36973023, "OBJECTID_1": 146, "PARCEL_NO_": "101003015000", "Tax_Legal_": "SORGENFRI/EASTERN PORTION S S QTR", "Name": "MILLIN, AGNES & H. & KILPATRICK, A & G", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6079400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2468.2797778200002, "SHAPE_Area": 129002.47838299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353492.08219999819994, 259758.866399999707937 ], [ 353487.121899999678135, 259808.212200000882149 ], [ 353493.408399999141693, 259809.877900000661612 ], [ 353496.626400001347065, 259810.748599998652935 ], [ 353492.521200001239777, 259819.369899999350309 ], [ 353471.528300002217293, 259822.575599998235703 ], [ 353453.652699999511242, 259838.47239999845624 ], [ 353424.681199997663498, 259831.691300000995398 ], [ 353406.717600002884865, 259857.931000001728535 ], [ 353403.485100001096725, 259858.7489 ], [ 353374.389499999582767, 259866.532400000840425 ], [ 353369.540899999439716, 259867.759199999272823 ], [ 353341.316299997270107, 259867.950399998575449 ], [ 353337.887199997901917, 259797.206000000238419 ], [ 353315.486000001430511, 259800.610800001770258 ], [ 353311.107900001108646, 259802.107799999415874 ], [ 353296.266199998557568, 259805.896200001239777 ], [ 353273.546800002455711, 259812.025800000876188 ], [ 353259.302500002086163, 259816.720199998468161 ], [ 353249.5945999994874, 259821.150199998170137 ], [ 353239.8699000030756, 259827.683100000023842 ], [ 353232.575300000607967, 259832.7331000007689 ], [ 353226.499099999666214, 259836.590900000184774 ], [ 353221.025200001895428, 259840.753899998962879 ], [ 353216.750699996948242, 259846.128199998289347 ], [ 353214.001900002360344, 259849.711899999529123 ], [ 353210.931699998676777, 259855.696699999272823 ], [ 353207.863899998366833, 259861.381000000983477 ], [ 353205.10080000013113, 259866.767299998551607 ], [ 353203.244400002062321, 259872.160799998790026 ], [ 353199.567400000989437, 259878.441199999302626 ], [ 353196.199699997901917, 259883.822700001299381 ], [ 353191.632600001990795, 259887.992899999022484 ], [ 353187.669900000095367, 259892.167899999767542 ], [ 353183.086099997162819, 259898.441100001335144 ], [ 353177.298000000417233, 259904.103900000452995 ], [ 353173.31870000064373, 259910.381900001317263 ], [ 353172.066899999976158, 259915.780200000852346 ], [ 353171.419600002467632, 259921.183200001716614 ], [ 353174.730099998414516, 259923.012099999934435 ], [ 353181.6891999989748, 259922.165800001472235 ], [ 353186.832299999892712, 259921.605700001120567 ], [ 353191.984999999403954, 259919.843699999153614 ], [ 353198.356200002133846, 259916.889600001275539 ], [ 353204.42509999871254, 259913.933100000023842 ], [ 353211.093800000846386, 259911.582299999892712 ], [ 353215.322999998927116, 259911.916299998760223 ], [ 353218.621699996292591, 259915.247400000691414 ], [ 353220.114000000059605, 259917.662799999117851 ], [ 353219.466600000858307, 259923.065799999982119 ], [ 353217.300899997353554, 259929.358199998736382 ], [ 353213.028800003230572, 259934.432100001722574 ], [ 353208.471199996769428, 259937.400499999523163 ], [ 353192.684799998998642, 259945.988600000739098 ], [ 353171.73870000243187, 259957.239999998360872 ], [ 353164.270300000905991, 259961.61430000141263 ], [ 353151.999300003051758, 259968.801399998366833 ], [ 353132.583499997854233, 259977.661400001496077 ], [ 353112.551399998366833, 259988.018699999898672 ], [ 353102.833999998867512, 259993.650400001555681 ], [ 353095.844099998474121, 259998.402300000190735 ], [ 353086.412299998104572, 260006.139400001615286 ], [ 353076.694899998605251, 260011.771099999547005 ], [ 353068.498400002717972, 260016.213100001215935 ], [ 353049.677699998021126, 260026.279500000178814 ], [ 353047.247800000011921, 260027.762600000947714 ], [ 353046.01969999819994, 260030.156500000506639 ], [ 353046.010200001299381, 260031.358199998736382 ], [ 353047.512000001966953, 260032.571899998933077 ], [ 353052.648000001907349, 260032.912999998778105 ], [ 353064.148000001907349, 260031.201200000941753 ], [ 353074.448399998247623, 260028.278200000524521 ], [ 353084.732299998402596, 260027.458200000226498 ], [ 353099.252499997615814, 260026.070799998939037 ], [ 353111.956699997186661, 260024.969500001519918 ], [ 353128.887800000607967, 260024.502599999308586 ], [ 353142.784500002861023, 260025.513900000602007 ], [ 353157.894900001585484, 260025.933899998664856 ], [ 353166.29110000282526, 260026.997900001704693 ], [ 353178.126999996602535, 260028.497699998319149 ], [ 353190.488600000739098, 260032.501400001347065 ], [ 353198.335400000214577, 260034.065799999982119 ], [ 353207.976599998772144, 260038.047899998724461 ], [ 353219.407600000500679, 260045.048799999058247 ], [ 353231.11710000038147, 260055.056400001049042 ], [ 353234.403899997472763, 260059.889699999243021 ], [ 353235.279700003564358, 260063.802499998360872 ], [ 353235.258299998939037, 260066.506299998611212 ], [ 353228.085699997842312, 260092.899999998509884 ], [ 353228.121200002729893, 260092.894099999219179 ], [ 353234.566299997270107, 260093.580099999904633 ], [ 353235.345600001513958, 260096.752900000661612 ], [ 353233.69879999756813, 260100.750199999660254 ], [ 353232.82599999755621, 260108.55350000038743 ], [ 353236.018899999558926, 260112.379299998283386 ], [ 353242.447800002992153, 260114.96510000154376 ], [ 353252.913699999451637, 260116.950599998235703 ], [ 353256.122699998319149, 260118.8766999989748 ], [ 353263.32379999756813, 260125.479499999433756 ], [ 353273.741099998354912, 260133.164099998772144 ], [ 353288.145099997520447, 260146.158700000494719 ], [ 353296.096699997782707, 260159.311599999666214 ], [ 353300.790700003504753, 260176.237500000745058 ], [ 353299.079199999570847, 260187.833599999547005 ], [ 353294.919900000095367, 260202.787200000137091 ], [ 353285.678300000727177, 260246.407999999821186 ], [ 353286.407300002872944, 260255.49100000038743 ], [ 353290.411899998784065, 260258.690099999308586 ], [ 353296.835400000214577, 260261.909099999815226 ], [ 353309.714800000190735, 260264.547699999064207 ], [ 353316.933899998664856, 260269.039700001478195 ], [ 353324.941200003027916, 260275.649099998176098 ], [ 353338.517300002276897, 260291.170099999755621 ], [ 353344.089500002563, 260299.659400001168251 ], [ 353351.295999996364117, 260305.629000000655651 ], [ 353356.124899998307228, 260306.723999999463558 ], [ 353365.023100003600121, 260303.419399999082088 ], [ 353379.560099996626377, 260300.794100001454353 ], [ 353385.222300000488758, 260298.729499999433756 ], [ 353439.704800002276897, 260150.565600000321865 ], [ 353449.617899999022484, 260122.782400000840425 ], [ 353468.601899996399879, 260071.430900000035763 ], [ 353480.159999996423721, 260039.8614999987185 ], [ 353494.200000002980232, 260000.924100000411272 ], [ 353505.750900000333786, 259970.199000000953674 ], [ 353518.955799996852875, 259934.632199998944998 ], [ 353532.153499998152256, 259899.909800000488758 ], [ 353541.224299997091293, 259876.341600000858307 ], [ 353553.606700003147125, 259842.667899999767542 ], [ 353565.987300001084805, 259809.205400001257658 ], [ 353577.538199998438358, 259778.48030000180006 ], [ 353592.402500003576279, 259737.438700001686811 ], [ 353595.704999998211861, 259728.388700000941753 ], [ 353603.960600003600121, 259705.869199998676777 ], [ 353573.56530000269413, 259676.911699999123812 ], [ 353549.570100001990795, 259653.917300000786781 ], [ 353539.172499999403954, 259643.910799998790026 ], [ 353502.872299998998642, 259645.5135000012815 ], [ 353499.645199999213219, 259645.69819999858737 ], [ 353440.750299997627735, 259649.22690000012517 ], [ 353407.673500001430511, 259651.067099999636412 ], [ 353399.015399999916553, 259651.562600001692772 ], [ 353397.992299996316433, 259651.621199999004602 ], [ 353380.894400000572205, 259652.674199998378754 ], [ 353397.972300000488758, 259652.149300001561642 ], [ 353431.21339999884367, 259651.127700001001358 ], [ 353467.258599996566772, 259650.640700001269579 ], [ 353499.445900000631809, 259650.205899998545647 ], [ 353496.649099998176098, 259713.43470000103116 ], [ 353495.751999996602535, 259722.359499998390675 ], [ 353492.08219999819994, 259758.866399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601020400", "MAP": "D9-3351-T86", "PARCEL_NAM": "28", "ACRE": ".80", "LONGITUDE": -64.98119457, "LATITUDE": 18.3612256, "OBJECTID_1": 2212, "PARCEL_NO_": "102601020400", "Tax_Legal_": "PEARL 28 S S QTR", "Name": "LEWIS, JOHN & ARIANE", "Address": "PO Box 305090", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 201700, "Improved_V": 332000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.864324815, "SHAPE_Area": 2601.6063643699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353496.023100003600121, 259076.284200001507998 ], [ 353498.586800001561642, 259075.460499998182058 ], [ 353503.111000001430511, 259073.77589999884367 ], [ 353501.316500000655651, 259070.904100000858307 ], [ 353497.337099999189377, 259064.749800000339746 ], [ 353493.440399996936321, 259048.885899998247623 ], [ 353491.953599996864796, 259034.097199998795986 ], [ 353490.389499999582767, 259028.384899999946356 ], [ 353488.811099998652935, 259024.361200001090765 ], [ 353486.431699998676777, 259019.697599999606609 ], [ 353484.838799998164177, 259017.36259999871254 ], [ 353477.653999999165535, 259008.859999999403954 ], [ 353461.626599997282028, 258997.118700001388788 ], [ 353435.544100001454353, 259032.642799999564886 ], [ 353435.992600001394749, 259033.052099999040365 ], [ 353463.472900003194809, 259057.906899999827147 ], [ 353490.890799999237061, 259073.785399999469519 ], [ 353496.023100003600121, 259076.284200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904012300", "MAP": "A9-671-T006", "PARCEL_NAM": "C", "ACRE": "4.00", "LONGITUDE": -64.99171662000001, "LATITUDE": 18.36816408, "OBJECTID_1": 49, "PARCEL_NO_": "100904012300", "Tax_Legal_": "\"C\" REM. SORGENFRI NO.1 SOUTHSIDE QTR", "Name": "LEAL I. & LUZ M. VAN BEVERHOUDT (TRUSTEES)", "Address": "PO Box 10184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 243800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 581.06081365399996, "SHAPE_Area": 13341.9853578 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352367.599200002849102, 259750.486299999058247 ], [ 352367.593999996781349, 259750.535300001502037 ], [ 352332.66889999806881, 259788.212099999189377 ], [ 352281.045299999415874, 259761.114100001752377 ], [ 352279.393100000917912, 259765.744600001722574 ], [ 352271.308399997651577, 259768.211599998176098 ], [ 352257.676600001752377, 259759.234099999070168 ], [ 352253.639700002968311, 259759.834300000220537 ], [ 352250.353299997746944, 259766.984600000083447 ], [ 352246.305500000715256, 259768.851300001144409 ], [ 352244.642599999904633, 259774.7483000010252 ], [ 352249.403099998831749, 259783.86430000141263 ], [ 352250.970799997448921, 259789.154500000178814 ], [ 352250.826899997889996, 259806.040800001472235 ], [ 352252.340599998831749, 259817.66330000013113 ], [ 352255.488600000739098, 259826.766100000590086 ], [ 352261.122000001370907, 259828.07880000025034 ], [ 352266.782300002872944, 259826.225299999117851 ], [ 352272.460699997842312, 259822.260999999940395 ], [ 352284.5608000010252, 259821.726700000464916 ], [ 352287.769799999892712, 259823.652800001204014 ], [ 352292.553800001740456, 259830.02479999884963 ], [ 352290.896200001239777, 259835.288600001484156 ], [ 352438.162399999797344, 259836.080600000917912 ], [ 352434.919699996709824, 259825.974399998784065 ], [ 352433.67509999871254, 259786.740200001746416 ], [ 352435.447599999606609, 259758.95719999819994 ], [ 352438.633500002324581, 259743.171000000089407 ], [ 352437.158399999141693, 259739.131000000983477 ], [ 352432.804099999368191, 259737.111900001764297 ], [ 352424.721100002527237, 259740.032600000500679 ], [ 352411.001800000667572, 259743.795699998736382 ], [ 352399.947700001299381, 259745.958999998867512 ], [ 352385.208099998533726, 259748.937100000679493 ], [ 352376.42230000346899, 259750.555700000375509 ], [ 352367.599200002849102, 259750.486299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601020500", "MAP": "B9-466-T75", "PARCEL_NAM": "27", "ACRE": "1.2", "LONGITUDE": -64.97980269, "LATITUDE": 18.36179587, "OBJECTID_1": 2213, "PARCEL_NO_": "102601020500", "Tax_Legal_": "PEARL 27 S S QTR", "Name": "MANCIVALANO, CLAIRE", "Address": "P.O. BOX 3803", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 252500, "Improved_V": 152800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 452.78226283700002, "SHAPE_Area": 5471.4387586900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353605.102700002491474, 259078.445300001651049 ], [ 353593.550200000405312, 259078.837099999189377 ], [ 353571.813299998641014, 259077.744800001382828 ], [ 353547.303000003099442, 259076.324000000953674 ], [ 353531.280599996447563, 259074.204100001603365 ], [ 353514.201300002634525, 259072.909400001168251 ], [ 353503.111000001430511, 259073.77589999884367 ], [ 353507.303000003099442, 259076.805399999022484 ], [ 353519.345799997448921, 259084.447299998253584 ], [ 353538.569899998605251, 259093.742600001394749 ], [ 353559.439999997615814, 259100.859200000762939 ], [ 353592.11150000244379, 259109.010800000280142 ], [ 353610.611699998378754, 259114.439500000327826 ], [ 353615.797499999403954, 259112.379299998283386 ], [ 353621.315099999308586, 259111.995099999010563 ], [ 353636.650200001895428, 259120.29839999973774 ], [ 353643.155799999833107, 259125.785399999469519 ], [ 353651.613200001418591, 259128.918400000780821 ], [ 353682.9712999984622, 259139.5185999982059 ], [ 353689.430799998342991, 259138.515999998897314 ], [ 353698.29839999973774, 259138.799699999392033 ], [ 353703.926399998366833, 259140.745600000023842 ], [ 353707.947200000286102, 259142.045099999755621 ], [ 353686.436499997973442, 259110.484299998730421 ], [ 353635.738899998366833, 259076.51969999819994 ], [ 353613.839100003242493, 259078.356699999421835 ], [ 353605.102700002491474, 259078.445300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904010100", "MAP": "A9-671-T006", "PARCEL_NAM": "ROW AA", "ACRE": "5.14", "LONGITUDE": -64.98617415, "LATITUDE": 18.36547298, "OBJECTID_1": 27, "PARCEL_NO_": "100904010100", "Tax_Legal_": "ROW \"AA\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "SORGENFRI WEST OWNERS ASSOCIATION, INC.", "Address": "PO Box 10184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4090.6903874300001, "SHAPE_Area": 19606.153030099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352426.648599997162819, 259732.017599999904633 ], [ 352401.146099999547005, 259737.529599998146296 ], [ 352387.255500003695488, 259740.514400001615286 ], [ 352376.205799996852875, 259742.115200001746416 ], [ 352370.559399999678135, 259740.383000001311302 ], [ 352368.607299998402596, 259736.710700001567602 ], [ 352370.344999998807907, 259731.661100000143051 ], [ 352374.934799998998642, 259723.820999998599291 ], [ 352386.367200002074242, 259709.565000001341105 ], [ 352390.651799999177456, 259704.535399999469519 ], [ 352394.938699997961521, 259699.224500000476837 ], [ 352398.951399996876717, 259692.786299999803305 ], [ 352402.659100003540516, 259689.158700000494719 ], [ 352407.233300000429153, 259683.287500001490116 ], [ 352411.803199999034405, 259677.978900000452995 ], [ 352418.661300003528595, 259669.594000000506639 ], [ 352423.527500003576279, 259662.599899999797344 ], [ 352427.549099996685982, 259655.03660000115633 ], [ 352427.209499999880791, 259650.109999999403954 ], [ 352428.34570000320673, 259640.838700000196695 ], [ 352426.924400001764297, 259632.246700000017881 ], [ 352425.857699997723103, 259628.975699998438358 ], [ 352422.430100001394749, 259624.571800000965595 ], [ 352419.749600000679493, 259621.414500001817942 ], [ 352416.461499996483326, 259620.481499999761581 ], [ 352412.254799999296665, 259620.311599999666214 ], [ 352403.729000002145767, 259624.503199998289347 ], [ 352403.555100001394749, 259628.792300000786781 ], [ 352404.159500002861023, 259633.305500000715256 ], [ 352409.547600001096725, 259635.947999998927116 ], [ 352414.076499998569489, 259635.841699998825788 ], [ 352416.072899997234344, 259638.912399999797344 ], [ 352417.746500000357628, 259642.019799999892712 ], [ 352418.292499996721745, 259644.555799998342991 ], [ 352417.686700001358986, 259649.61430000141263 ], [ 352416.508199997246265, 259655.512299999594688 ], [ 352415.057800002396107, 259660.001600001007318 ], [ 352411.913999997079372, 259663.91499999910593 ], [ 352405.0625, 259671.456000000238419 ], [ 352399.637000001966953, 259677.601799998432398 ], [ 352394.213799998164177, 259683.466299999505281 ], [ 352388.505300000309944, 259689.6097999997437 ], [ 352380.517499998211861, 259697.704500000923872 ], [ 352374.793600000441074, 259705.81700000166893 ], [ 352371.91499999910593, 259711.982799999415874 ], [ 352365.916900001466274, 259718.967999998480082 ], [ 352361.913099996745586, 259724.281100001186132 ], [ 352359.023400001227856, 259731.853300001472235 ], [ 352357.579700000584126, 259735.498700000345707 ], [ 352355.271600000560284, 259741.106499999761581 ], [ 352356.089500002563, 259745.050999999046326 ], [ 352360.309900000691414, 259748.17850000038743 ], [ 352364.820000000298023, 259750.464400000870228 ], [ 352376.42230000346899, 259750.555700000375509 ], [ 352385.208099998533726, 259748.937100000679493 ], [ 352399.947700001299381, 259745.958999998867512 ], [ 352411.001800000667572, 259743.795699998736382 ], [ 352424.721100002527237, 259740.032600000500679 ], [ 352432.804099999368191, 259737.111900001764297 ], [ 352437.158399999141693, 259739.131000000983477 ], [ 352438.633500002324581, 259743.171000000089407 ], [ 352435.447599999606609, 259758.95719999819994 ], [ 352433.67509999871254, 259786.740200001746416 ], [ 352434.919699996709824, 259825.974399998784065 ], [ 352440.682099997997284, 259843.933200001716614 ], [ 352443.400600001215935, 259853.837999999523163 ], [ 352447.973600000143051, 259864.99269999936223 ], [ 352452.274899996817112, 259871.203600000590086 ], [ 352464.877700001001358, 259888.598600000143051 ], [ 352470.737300001084805, 259894.204199999570847 ], [ 352475.041000001132488, 259900.106300000101328 ], [ 352479.978299997746944, 259904.469099998474121 ], [ 352486.48369999974966, 259906.991200000047684 ], [ 352489.267899997532368, 259908.557399999350309 ], [ 352496.433600001037121, 259906.14299999922514 ], [ 352501.11370000243187, 259903.709100000560284 ], [ 352509.859700001776218, 259897.909800000488758 ], [ 352515.491400003433228, 259893.012600000947714 ], [ 352521.438699997961521, 259887.500100001692772 ], [ 352530.184799998998642, 259881.700800001621246 ], [ 352540.472199998795986, 259877.458000000566244 ], [ 352552.949199996888638, 259871.379299998283386 ], [ 352565.110699996352196, 259865.915800001472235 ], [ 352573.203699998557568, 259864.126499999314547 ], [ 352584.110100001096725, 259860.197399999946356 ], [ 352597.499799996614456, 259856.596700001507998 ], [ 352609.350599996745586, 259851.130800001323223 ], [ 352625.553700000047684, 259845.390399999916553 ], [ 352638.336599998176098, 259839.93189999833703 ], [ 352650.828299999237061, 259832.000199999660254 ], [ 352666.732900001108646, 259824.713199999183416 ], [ 352676.095600001513958, 259819.53660000115633 ], [ 352685.470399998128414, 259812.815799999982119 ], [ 352694.226300001144409, 259805.781199999153614 ], [ 352706.096699997782707, 259797.844700001180172 ], [ 352716.090499997138977, 259791.437600001692772 ], [ 352725.759099997580051, 259786.881099998950958 ], [ 352730.441699996590614, 259784.138399999588728 ], [ 352735.75789999961853, 259779.8564000017941 ], [ 352746.368299998342991, 259774.071899998933077 ], [ 352753.541400000452995, 259770.731100000441074 ], [ 352762.586199998855591, 259766.478500001132488 ], [ 352776.609499998390675, 259761.338700000196695 ], [ 352781.289700001478195, 259758.904800001531839 ], [ 352785.960100002586842, 259757.706300001591444 ], [ 352797.483199998736382, 259754.399900000542402 ], [ 352810.239399999380112, 259752.338599998503923 ], [ 352822.08049999922514, 259748.108199998736382 ], [ 352830.180900000035763, 259745.392400000244379 ], [ 352839.849500000476837, 259740.835999999195337 ], [ 352845.7871999964118, 259736.558899998664856 ], [ 352853.909500002861023, 259731.063700001686811 ], [ 352862.024599999189377, 259726.494899999350309 ], [ 352873.246799997985363, 259721.950800001621246 ], [ 352883.879199996590614, 259713.386799998581409 ], [ 352888.583800002932549, 259707.864599999040365 ], [ 352890.824699997901917, 259699.543200001120567 ], [ 352894.929799996316433, 259691.2364999987185 ], [ 352896.573600001633167, 259679.821899998933077 ], [ 352898.535499997437, 259667.4831000007689 ], [ 352901.441699996590614, 259653.607599999755621 ], [ 352905.3141999989748, 259635.415600001811981 ], [ 352907.909699998795986, 259621.537599999457598 ], [ 352911.094899997115135, 259611.679400000721216 ], [ 352914.884499996900558, 259603.987900000065565 ], [ 352921.820200003683567, 259591.37950000166893 ], [ 352929.996399998664856, 259579.089899998158216 ], [ 352936.274099998176098, 259571.109200000762939 ], [ 352942.860100001096725, 259563.439800001680851 ], [ 352949.426600001752377, 259558.241099998354912 ], [ 352959.733800001442432, 259551.527699999511242 ], [ 352976.272399999201298, 259542.701499998569489 ], [ 352993.114399999380112, 259534.804400000721216 ], [ 353000.612999998033047, 259529.613099999725819 ], [ 353004.710900001227856, 259522.232900001108646 ], [ 353009.141500003635883, 259512.075599998235703 ], [ 353014.183700002729893, 259503.158599998801947 ], [ 353017.30799999833107, 259501.021200001239777 ], [ 353027.921099998056889, 259494.927999999374151 ], [ 353039.784400001168251, 259487.918099999427795 ], [ 353045.406599998474121, 259484.25620000064373 ], [ 353058.855200000107288, 259473.243700001388788 ], [ 353071.677599996328354, 259462.843899998813868 ], [ 353086.376400001347065, 259450.914599999785423 ], [ 353094.205399997532368, 259443.255100000649691 ], [ 353102.961599998176098, 259436.220600001513958 ], [ 353112.659800000488758, 259427.958099998533726 ], [ 353118.920500002801418, 259422.139299999922514 ], [ 353126.448499999940395, 259413.241900000721216 ], [ 353132.714199997484684, 259406.805399999022484 ], [ 353139.921700000762939, 259399.140999998897314 ], [ 353145.548799999058247, 259394.861400000751019 ], [ 353152.73929999768734, 259389.358899999409914 ], [ 353160.86429999768734, 259383.554800000041723 ], [ 353166.794799998402596, 259380.204300001263618 ], [ 353173.346699997782707, 259376.85869999974966 ], [ 353190.1841000020504, 259369.579300001263618 ], [ 353215.432800002396107, 259359.586800001561642 ], [ 353228.230800002813339, 259352.275400001555681 ], [ 353240.488200001418591, 259334.767400000244379 ], [ 353248.620600000023842, 259328.036800000816584 ], [ 353260.503700003027916, 259318.556200001388788 ], [ 353267.704000003635883, 259311.818300001323223 ], [ 353281.771899998188019, 259301.119600001722574 ], [ 353297.077799998223782, 259291.04839999973774 ], [ 353308.013999998569489, 259283.413400001823902 ], [ 353316.467000000178814, 259275.449999999254942 ], [ 353321.790799997746944, 259270.241500001400709 ], [ 353326.823499999940395, 259262.559799998998642 ], [ 353339.457800000905991, 259236.715500000864267 ], [ 353350.198399998247623, 259214.562399998307228 ], [ 353352.449299998581409, 259205.005499999970198 ], [ 353354.673299998044968, 259198.845899999141693 ], [ 353352.278099998831749, 259187.398899998515844 ], [ 353347.399599999189377, 259175.623500000685453 ], [ 353323.491300001740456, 259134.04619999974966 ], [ 353319.826300002634525, 259125.986699998378754 ], [ 353315.554499998688698, 259116.069200001657009 ], [ 353314.081699997186661, 259105.864999998360872 ], [ 353314.805900000035763, 259092.898400001227856 ], [ 353317.399300001561642, 259079.328899998217821 ], [ 353320.8783999979496, 259071.634799998253584 ], [ 353326.216899998486042, 259064.57319999858737 ], [ 353332.788599997758865, 259058.756799999624491 ], [ 353340.605499997735023, 259052.641399998217821 ], [ 353363.068000003695488, 259041.391399998217821 ], [ 353368.387000001966953, 259036.800599999725819 ], [ 353374.014300003647804, 259032.521000001579523 ], [ 353377.490900002419949, 259025.135800000280142 ], [ 353380.32660000026226, 259020.216400001198053 ], [ 353383.74210000038147, 259020.552400000393391 ], [ 353386.215599998831749, 259022.116300001740456 ], [ 353387.742299996316433, 259025.52589999884367 ], [ 353387.703100003302097, 259030.467500001192093 ], [ 353386.726899996399879, 259036.019299998879433 ], [ 353384.476000003516674, 259045.576299998909235 ], [ 353380.544200003147125, 259071.181000001728535 ], [ 353380.155100002884865, 259081.061599999666214 ], [ 353396.138599999248981, 259142.343499999493361 ], [ 353399.500200003385544, 259149.47410000115633 ], [ 353403.81360000371933, 259154.141199998557568 ], [ 353411.865299999713898, 259157.60249999910593 ], [ 353424.893500000238419, 259160.485599998384714 ], [ 353444.76240000128746, 259162.80519999936223 ], [ 353484.397200003266335, 259163.857900001108646 ], [ 353482.861900001764297, 259154.768300000578165 ], [ 353472.800700001418591, 259153.761599998921156 ], [ 353466.275600001215935, 259153.709800001233816 ], [ 353453.851700000464916, 259152.993599999696016 ], [ 353444.534999996423721, 259152.302000001072884 ], [ 353437.706500001251698, 259151.321299999952316 ], [ 353428.088899999856949, 259149.391800001263618 ], [ 353421.262800000607967, 259148.102299999445677 ], [ 353415.376299999654293, 259145.893500000238419 ], [ 353410.754699997603893, 259140.915100000798702 ], [ 353406.766699999570847, 259134.397300001233816 ], [ 353404.320100001990795, 259129.436099998652935 ], [ 353402.201399996876717, 259122.315400000661612 ], [ 353397.349799998104572, 259107.142599999904633 ], [ 353393.719099998474121, 259094.759199999272823 ], [ 353391.311700001358986, 259084.8564000017941 ], [ 353390.753899998962879, 259076.82149999961257 ], [ 353389.892700001597404, 259067.857599999755621 ], [ 353389.924500003457069, 259063.842599999159575 ], [ 353390.609600000083447, 259055.817499998956919 ], [ 353392.579199999570847, 259042.551899999380112 ], [ 353392.983000002801418, 259030.818199999630451 ], [ 353394.587999999523163, 259024.344700001180172 ], [ 353394.952600002288818, 259017.552499998360872 ], [ 353396.555100001394749, 259011.387899998575449 ], [ 353393.166599996387959, 259007.654699999839067 ], [ 353387.894100002944469, 259006.377399999648333 ], [ 353382.298600003123283, 259006.6418999992311 ], [ 353378.562600001692772, 259007.538899999111891 ], [ 353373.865099996328354, 259012.134700000286102 ], [ 353369.774300001561642, 259018.588500000536442 ], [ 353365.685999996960163, 259024.733399998396635 ], [ 353361.92059999704361, 259029.336500000208616 ], [ 353357.543600000441074, 259032.699400000274181 ], [ 353350.059299997985363, 259036.037599999457598 ], [ 353340.698499999940395, 259040.905299998819828 ], [ 353332.265000000596046, 259046.397999998182058 ], [ 353323.207599997520447, 259052.194699998944998 ], [ 353318.199299998581409, 259056.787999998778105 ], [ 353313.164200000464916, 259064.7787000015378 ], [ 353309.986000001430511, 259073.71059999987483 ], [ 353306.460400000214577, 259087.272700000554323 ], [ 353306.323399998247623, 259104.56810000166297 ], [ 353306.572999998927116, 259112.291700001806021 ], [ 353306.208400003612041, 259119.083799999207258 ], [ 353310.482699997723103, 259128.692499998956919 ], [ 353330.094700001180172, 259163.440699998289347 ], [ 353336.847300000488758, 259173.99549999833107 ], [ 353342.048799999058247, 259184.229200001806021 ], [ 353343.240299999713898, 259190.724800001829863 ], [ 353344.749799996614456, 259196.296300001442432 ], [ 353344.402400001883507, 259200.926500000059605 ], [ 353343.7246999964118, 259208.024999998509884 ], [ 353341.199799999594688, 259212.946800000965595 ], [ 353338.356799997389317, 259218.792700000107288 ], [ 353333.306999996304512, 259228.636300001293421 ], [ 353328.575300000607967, 259237.555799998342991 ], [ 353322.612899996340275, 259244.921300001442432 ], [ 353319.444600000977516, 259252.617800001055002 ], [ 353314.729999996721745, 259259.375399999320507 ], [ 353305.32769999653101, 259269.493400000035763 ], [ 353293.126500003039837, 259279.897999998182058 ], [ 353279.364399999380112, 259291.216899998486042 ], [ 353271.547600001096725, 259297.332299999892712 ], [ 353257.790399998426437, 259308.033500000834465 ], [ 353246.856600001454353, 259315.359600000083447 ], [ 353239.656300000846386, 259322.097500000149012 ], [ 353230.892599999904633, 259330.058499999344349 ], [ 353224.639200001955032, 259334.950800001621246 ], [ 353218.992499999701977, 259341.7010000012815 ], [ 353214.299999997019768, 259345.679000001400709 ], [ 353212.4087999984622, 259349.061500001698732 ], [ 353208.961499996483326, 259352.740600001066923 ], [ 353203.035899996757507, 259355.473400000482798 ], [ 353195.248499996960163, 259357.882699999958277 ], [ 353185.278599999845028, 259361.201200000941753 ], [ 353176.233599998056889, 259365.453699998557568 ], [ 353165.94820000231266, 259369.387499999254942 ], [ 353156.59009999781847, 259373.946299999952316 ], [ 353150.659599997103214, 259377.296799998730421 ], [ 353146.894299998879433, 259381.899900000542402 ], [ 353142.201800003647804, 259385.877999998629093 ], [ 353131.57880000025034, 259393.206599999219179 ], [ 353125.619000002741814, 259400.263199999928474 ], [ 353119.045100003480911, 259406.388399999588728 ], [ 353113.085299998521805, 259413.445000000298023 ], [ 353107.118199996650219, 259421.428199999034405 ], [ 353096.492799997329712, 259429.065600000321865 ], [ 353089.299900002777576, 259434.877000000327826 ], [ 353074.906900003552437, 259447.426399998366833 ], [ 353066.779399998486042, 259453.539299998432398 ], [ 353058.02080000191927, 259460.882699999958277 ], [ 353048.628499999642372, 259469.765299998223782 ], [ 353039.877199999988079, 259476.182199999690056 ], [ 353031.441500000655651, 259481.983800001442432 ], [ 353018.014899998903275, 259490.21680000051856 ], [ 353003.952100001275539, 259500.297899998724461 ], [ 353000.483000002801418, 259506.756499998271465 ], [ 352995.756399996578693, 259515.058299999684095 ], [ 352991.362400002777576, 259520.583099998533726 ], [ 352980.737099997699261, 259528.220499999821186 ], [ 352967.941699996590614, 259535.223099999129772 ], [ 352947.951099999248981, 259548.346000000834465 ], [ 352940.763199999928474, 259553.539799999445677 ], [ 352934.813299998641014, 259559.361000001430511 ], [ 352928.219999998807907, 259567.956999998539686 ], [ 352919.119000002741814, 259579.312800001353025 ], [ 352910.962399996817112, 259589.131700001657009 ], [ 352907.160599999129772, 259598.367400001734495 ], [ 352901.807700000703335, 259607.282000001519918 ], [ 352898.935699999332428, 259616.833799999207258 ], [ 352897.284500002861023, 259629.17509999871254 ], [ 352895.650399997830391, 259639.354400001466274 ], [ 352890.566799998283386, 259653.521600000560284 ], [ 352888.084399998188019, 259692.417899999767542 ], [ 352883.663699999451637, 259701.339800000190735 ], [ 352875.521799996495247, 259709.305700000375509 ], [ 352864.610299997031689, 259713.852299999445677 ], [ 352853.070100001990795, 259719.320500001311302 ], [ 352846.200300000607967, 259723.590300001204014 ], [ 352838.699400000274181, 259729.090399999171495 ], [ 352831.819799996912479, 259734.595499999821186 ], [ 352821.840499997138977, 259739.149500001221895 ], [ 352815.308300003409386, 259740.024500001221895 ], [ 352804.731899999082088, 259741.485199999064207 ], [ 352791.334799997508526, 259746.012299999594688 ], [ 352775.755400002002716, 259751.448600001633167 ], [ 352762.664200000464916, 259756.595800001174212 ], [ 352749.568000003695488, 259762.360700000077486 ], [ 352736.459700003266335, 259769.669700000435114 ], [ 352721.169100001454353, 259777.888099998235703 ], [ 352708.997800000011921, 259784.586899999529123 ], [ 352695.877400003373623, 259793.440099999308586 ], [ 352684.31530000269413, 259801.687899999320507 ], [ 352673.379600003361702, 259809.322999998927116 ], [ 352664.327600002288818, 259814.502099998295307 ], [ 352657.770999997854233, 259818.465399999171495 ], [ 352643.730700001120567, 259825.767200000584126 ], [ 352628.114900000393391, 259835.836199998855591 ], [ 352609.734300002455711, 259841.868299998342991 ], [ 352598.818099997937679, 259847.032699998468161 ], [ 352585.741599999368191, 259850.326999999582767 ], [ 352572.347000002861023, 259854.545299999415874 ], [ 352552.080399997532368, 259863.342300001531839 ], [ 352537.739100001752377, 259869.406300000846386 ], [ 352524.95380000025034, 259875.173700001090765 ], [ 352515.273199997842312, 259881.274399999529123 ], [ 352508.092799998819828, 259885.541799999773502 ], [ 352502.150499999523163, 259890.436599999666214 ], [ 352495.892499998211861, 259895.946600001305342 ], [ 352490.911399997770786, 259897.142799999564886 ], [ 352485.641599997878075, 259895.557000000029802 ], [ 352479.155599996447563, 259890.564300000667572 ], [ 352472.987700000405312, 259884.64750000089407 ], [ 352462.542900003492832, 259869.431400001049042 ], [ 352457.018200002610683, 259860.739999998360872 ], [ 352452.149099998176098, 259847.729800000786781 ], [ 352448.238799996674061, 259831.329799998551607 ], [ 352445.520300000905991, 259821.42509999871254 ], [ 352444.059199996292591, 259809.677099999040365 ], [ 352442.938000001013279, 259794.225600000470877 ], [ 352441.770599998533726, 259784.6418999992311 ], [ 352441.853299997746944, 259774.141600001603365 ], [ 352442.569600000977516, 259762.10190000012517 ], [ 352444.230200000107288, 259748.525400001555681 ], [ 352444.570100001990795, 259744.821800000965595 ], [ 352444.776100002229214, 259742.148899998515844 ], [ 352445.507700003683567, 259739.894099999219179 ], [ 352445.627599999308586, 259735.571100000292063 ], [ 352444.82599999755621, 259731.576200000941753 ], [ 352442.297700002789497, 259729.467300001531839 ], [ 352439.646200001239777, 259728.710299998521805 ], [ 352435.530699998140335, 259729.170499999076128 ], [ 352431.273900002241135, 259730.746599998325109 ], [ 352426.648599997162819, 259732.017599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015000", "MAP": "C9-319-T91", "PARCEL_NAM": "16", "ACRE": "51", "LONGITUDE": -64.98686913, "LATITUDE": 18.37006492, "OBJECTID_1": 146, "PARCEL_NO_": "101003015000", "Tax_Legal_": "SORGENFRI/EASTERN PORTION S S QTR", "Name": "MILLIN, AGNES & H. & KILPATRICK, A & G", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6079400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3094.3278079199999, "SHAPE_Area": 193355.57400200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352863.073399998247623, 259781.076499998569489 ], [ 352847.750799998641014, 259772.304699998348951 ], [ 352462.132200002670288, 260180.350400000810623 ], [ 352462.904399998486042, 260184.367499999701977 ], [ 352460.41889999806881, 260192.157600000500679 ], [ 352449.848700001835823, 260202.414599999785423 ], [ 352436.913599997758865, 260206.319600000977516 ], [ 352433.637999996542931, 260212.203400000929832 ], [ 352433.58219999819994, 260218.746800001710653 ], [ 352434.361599996685982, 260221.919599998742342 ], [ 352432.704000003635883, 260227.183400001376867 ], [ 352426.147399999201298, 260239.584199998527765 ], [ 352422.887999996542931, 260243.568300001323223 ], [ 352409.119499996304512, 260250.632800001651049 ], [ 352390.513199999928474, 260257.657699998468161 ], [ 352375.036799997091293, 260275.896200001239777 ], [ 352365.276600003242493, 260285.737700000405312 ], [ 352359.610799998044968, 260288.224399998784065 ], [ 352355.523500002920628, 260294.734900001436472 ], [ 352353.838899999856949, 260303.164799999445677 ], [ 352355.422799997031689, 260306.555300001055002 ], [ 352358.626500003039837, 260309.114700000733137 ], [ 352362.65259999781847, 260309.780900001525879 ], [ 352373.14190000295639, 260309.022399999201298 ], [ 352377.184199996292591, 260307.788899999111891 ], [ 352381.215800002217293, 260307.821899998933077 ], [ 352384.430299997329712, 260309.114700000733137 ], [ 352390.119400002062321, 260303.88399999961257 ], [ 352392.588699996471405, 260297.993599999696016 ], [ 352392.649800002574921, 260290.816899999976158 ], [ 352395.111900001764297, 260285.770799998193979 ], [ 352398.365900002419949, 260282.419900000095367 ], [ 352405.638899996876717, 260280.579599998891354 ], [ 352421.777800001204014, 260279.234000001102686 ], [ 352435.530000001192093, 260274.069299999624491 ], [ 352454.122000001370907, 260268.732999999076128 ], [ 352465.426500000059605, 260266.925700001418591 ], [ 352474.330099999904633, 260262.987799998372793 ], [ 352505.823100000619888, 260257.757100000977516 ], [ 352508.269000001251698, 260254.610700000077486 ], [ 352505.104900002479553, 260247.407600000500679 ], [ 352481.81530000269413, 260236.240100000053644 ], [ 352478.611699998378754, 260233.680799998342991 ], [ 352480.256599999964237, 260229.894600000232458 ], [ 352489.972000002861023, 260225.329999998211861 ], [ 352523.093699999153614, 260218.212900001555681 ], [ 352561.893799997866154, 260207.131400000303984 ], [ 352570.829800002276897, 260199.394000001251698 ], [ 352575.651500001549721, 260201.333299998193979 ], [ 352588.575800001621246, 260198.694899998605251 ], [ 352592.668499998748302, 260191.551199998706579 ], [ 352592.769199997186661, 260179.730799999088049 ], [ 352595.270900003612041, 260170.041000001132488 ], [ 352601.832900002598763, 260157.006900001317263 ], [ 352604.278800003230572, 260153.860500000417233 ], [ 352608.328299999237061, 260151.782699998468161 ], [ 352613.938400000333786, 260155.839400000870228 ], [ 352617.152800001204014, 260157.13230000063777 ], [ 352620.390699997544289, 260155.681099999696016 ], [ 352623.605099998414516, 260156.973999999463558 ], [ 352625.995300002396107, 260160.370999999344349 ], [ 352626.735100001096725, 260168.187600001692772 ], [ 352634.728100001811981, 260176.485599998384714 ], [ 352646.80120000243187, 260179.117600001394749 ], [ 352662.131899997591972, 260177.976500000804663 ], [ 352678.286899998784065, 260174.731199998408556 ], [ 352697.634800001978874, 260175.311700001358986 ], [ 352699.220499999821186, 260178.491099998354912 ], [ 352699.175499998033047, 260183.768100000917912 ], [ 352708.669600002467632, 260205.166200000792742 ], [ 352715.048199996352196, 260213.662200000137091 ], [ 352723.851099997758865, 260221.544700000435114 ], [ 352748.020700000226498, 260224.064599998295307 ], [ 352767.373999997973442, 260224.011900000274181 ], [ 352781.965000003576279, 260215.054299999028444 ], [ 352787.648699998855591, 260210.456700000911951 ], [ 352791.730599999427795, 260204.579500000923872 ], [ 352799.854900002479553, 260197.468800000846386 ], [ 352817.707000002264977, 260184.315999999642372 ], [ 352828.216099999845028, 260181.235599998384714 ], [ 352840.307199999690056, 260181.756799999624491 ], [ 352846.701899997889996, 260188.353000000119209 ], [ 352850.738899998366833, 260187.75279999896884 ], [ 352853.992899999022484, 260184.401900000870228 ], [ 352855.643299996852875, 260179.982500001788139 ], [ 352858.064000003039837, 260179.791200000792742 ], [ 352861.271300002932549, 260181.928399998694658 ], [ 352865.297499999403954, 260182.5945999994874 ], [ 352870.97580000013113, 260178.630300000309944 ], [ 352883.876800000667572, 260178.73589999973774 ], [ 352895.217299997806549, 260172.706999998539686 ], [ 352903.330799996852875, 260166.862799998372793 ], [ 352910.681100003421307, 260155.946100000292063 ], [ 352913.166599996387959, 260148.155999999493361 ], [ 352921.319600000977516, 260137.668000001460314 ], [ 352932.697899997234344, 260127.206399999558926 ], [ 352950.508699998259544, 260118.908500000834465 ], [ 352965.902400001883507, 260110.379599999636412 ], [ 353001.464599996805191, 260100.749299999326468 ], [ 353066.052400000393391, 260091.567600000649691 ], [ 353103.979599997401237, 260088.28940000012517 ], [ 353131.379900000989437, 260090.202399998903275 ], [ 353168.423500001430511, 260095.994100000709295 ], [ 353189.360600002110004, 260099.331799998879433 ], [ 353222.09910000115633, 260093.894299998879433 ], [ 353227.982799999415874, 260069.152800001204014 ], [ 353229.515399999916553, 260066.460900001227856 ], [ 353228.323100000619888, 260064.348299998790026 ], [ 353216.016199998557568, 260053.434599999338388 ], [ 353203.390500001609325, 260044.621599998325109 ], [ 353198.863799996674061, 260043.684399999678135 ], [ 353183.501000002026558, 260036.952799998223782 ], [ 353166.541799999773502, 260035.110100001096725 ], [ 353159.641800001263618, 260034.360399998724461 ], [ 353140.911499999463558, 260033.010299999266863 ], [ 353116.133599996566772, 260031.912900000810623 ], [ 353102.225100003182888, 260032.403799999505281 ], [ 353090.134900003671646, 260032.308100000023842 ], [ 353080.750699996948242, 260034.03660000115633 ], [ 353068.950800001621246, 260035.445500001311302 ], [ 353055.023299999535084, 260038.339899998158216 ], [ 353047.15990000218153, 260038.878600001335144 ], [ 353042.326099999248981, 260038.539900001138449 ], [ 353037.499600000679493, 260037.299899999052286 ], [ 353033.903399996459484, 260033.365600001066923 ], [ 353035.145700000226498, 260029.169100001454353 ], [ 353038.806000001728535, 260024.991799999028444 ], [ 353046.40990000218153, 260019.042899999767542 ], [ 353060.377899996936321, 260011.041200000792742 ], [ 353083.46339999884367, 259996.802099999040365 ], [ 353111.72070000320673, 259978.397599998861551 ], [ 353142.979099996387959, 259962.721000000834465 ], [ 353163.988200001418591, 259952.486400000751019 ], [ 353172.71679999679327, 259948.234200000762939 ], [ 353203.661200001835823, 259934.057399999350309 ], [ 353209.437399998307228, 259929.896800000220537 ], [ 353210.375100001692772, 259925.998399998992682 ], [ 353209.794399999082088, 259922.989199999719858 ], [ 353206.783699996769428, 259921.463100001215935 ], [ 353204.363300003111362, 259921.74439999833703 ], [ 353200.424400001764297, 259922.915100000798702 ], [ 353194.043700002133846, 259927.070900000631809 ], [ 353184.042999997735023, 259930.296700000762939 ], [ 353173.471199996769428, 259929.311700001358986 ], [ 353167.452200002968311, 259925.958999998867512 ], [ 353165.381499998271465, 259920.234099999070168 ], [ 353166.640500001609325, 259913.934500001370907 ], [ 353169.432199999690056, 259904.942999999970198 ], [ 353177.676399998366833, 259894.492400001734495 ], [ 353190.168799996376038, 259881.972199998795986 ], [ 353194.150499999523163, 259875.393800001591444 ], [ 353203.67509999871254, 259855.939699999988079 ], [ 353214.699199996888638, 259837.999699998646975 ], [ 353221.701099999248981, 259831.745600000023842 ], [ 353233.246399998664856, 259824.325699999928474 ], [ 353246.003100000321865, 259816.614900000393391 ], [ 353257.831699997186661, 259811.60080000013113 ], [ 353282.374200001358986, 259804.283900000154972 ], [ 353314.522100001573563, 259794.903799999505281 ], [ 353325.023900002241135, 259792.66780000180006 ], [ 353332.305900000035763, 259789.771999999880791 ], [ 353332.33110000193119, 259786.816899999976158 ], [ 353327.512999996542931, 259784.45549999922514 ], [ 353283.981100000441074, 259783.043699998408556 ], [ 353263.043999999761581, 259779.706000000238419 ], [ 353251.760999999940395, 259778.98030000180006 ], [ 353227.616599999368191, 259773.505399998277426 ], [ 353213.108300000429153, 259772.753400001674891 ], [ 353188.873999997973442, 259777.832400001585484 ], [ 353180.789300002157688, 259780.299300000071526 ], [ 353158.941600002348423, 259789.197500001639128 ], [ 353142.757799997925758, 259795.820099998265505 ], [ 353118.514399997889996, 259801.9543999992311 ], [ 353075.648599997162819, 259817.013399999588728 ], [ 353032.771999999880791, 259833.338899999856949 ], [ 353018.224200002849102, 259837.230599999427795 ], [ 353006.116899996995926, 259838.609200000762939 ], [ 352987.568099997937679, 259838.87950000166893 ], [ 352951.327200002968311, 259833.516699999570847 ], [ 352923.170999996364117, 259825.686900001019239 ], [ 352911.920400001108646, 259821.161800000816584 ], [ 352899.888700000941753, 259813.67509999871254 ], [ 352893.486699998378754, 259807.923200000077486 ], [ 352892.755900003015995, 259799.051199998706579 ], [ 352894.383000001311302, 259797.375799998641014 ], [ 352863.073399998247623, 259781.076499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015000", "MAP": "C9-318-T91", "PARCEL_NAM": "17", "ACRE": "16.35", "LONGITUDE": -64.98409734000001, "LATITUDE": 18.36579531, "OBJECTID_1": 146, "PARCEL_NO_": "101003015000", "Tax_Legal_": "SORGENFRI/EASTERN PORTION S S QTR", "Name": "MILLIN, AGNES & H. & KILPATRICK, A & G", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6079400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2118.8261650300001, "SHAPE_Area": 66602.4188288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353433.3800999969244, 259271.348999999463558 ], [ 353225.948700003325939, 259399.907900001853704 ], [ 353096.347699999809265, 259503.690499998629093 ], [ 352974.508199997246265, 259638.175299998372793 ], [ 352847.750799998641014, 259772.304699998348951 ], [ 352863.073399998247623, 259781.076499998569489 ], [ 352894.383000001311302, 259797.375799998641014 ], [ 352896.823499999940395, 259794.862700000405312 ], [ 352900.867600001394749, 259793.418099999427795 ], [ 352937.151699997484684, 259793.71510000154376 ], [ 352955.704099997878075, 259793.02250000089407 ], [ 352969.43469999730587, 259790.390700001269579 ], [ 352983.975299999117851, 259787.343299999833107 ], [ 353000.961900003254414, 259781.149500001221895 ], [ 353029.310500003397465, 259766.393899999558926 ], [ 353046.34009999781847, 259755.134199999272823 ], [ 353058.524700000882149, 259744.679299999028444 ], [ 353077.185000002384186, 259731.322000000625849 ], [ 353034.261600002646446, 259753.135499998927116 ], [ 353016.486800000071526, 259757.211899999529123 ], [ 353006.803800001740456, 259757.977099999785423 ], [ 353004.392099998891354, 259757.112900000065565 ], [ 353000.383900001645088, 259754.335900001227856 ], [ 352998.834200002253056, 259746.934999998658895 ], [ 353000.477399997413158, 259743.3597999997437 ], [ 353002.91610000282526, 259741.057799998670816 ], [ 353013.441399998962879, 259736.0777000002563 ], [ 353025.602600000798702, 259728.366700001060963 ], [ 353041.851099997758865, 259714.145300000905991 ], [ 353051.589800000190735, 259706.836800001561642 ], [ 353062.92849999666214, 259701.019000001251698 ], [ 353075.089699998497963, 259693.30799999833107 ], [ 353092.139200001955032, 259679.726500000804663 ], [ 353092.1554000005126, 259677.826799999922514 ], [ 353089.740000002086163, 259677.384799998253584 ], [ 353063.074199996888638, 259683.921599999070168 ], [ 353036.455099999904633, 259684.970300000160933 ], [ 353033.237000003457069, 259684.099599998444319 ], [ 353030.035099998116493, 259681.329100001603365 ], [ 353028.454899996519089, 259677.516499999910593 ], [ 353028.498000003397465, 259672.450599998235703 ], [ 353030.159199997782707, 259666.764699999243021 ], [ 353032.60869999974966, 259663.196199998259544 ], [ 353033.440200001001358, 259660.247699998319149 ], [ 353038.333800002932549, 259653.74379999935627 ], [ 353078.114699997007847, 259622.194299999624491 ], [ 353082.189400002360344, 259617.161400001496077 ], [ 353086.265900000929832, 259611.917399998754263 ], [ 353109.284999996423721, 259560.17680000141263 ], [ 353110.913800001144409, 259558.290300000458956 ], [ 353112.571400001645088, 259553.026500001549721 ], [ 353120.744199998676777, 259540.216699998825788 ], [ 353130.522399999201298, 259528.264400001615286 ], [ 353140.279100000858307, 259518.844999998807907 ], [ 353149.20610000193119, 259512.163100000470877 ], [ 353154.886200003325939, 259507.987700000405312 ], [ 353162.898999996483326, 259513.963899999856949 ], [ 353263.875799998641014, 259587.406500000506639 ], [ 353274.436999998986721, 259578.204900000244379 ], [ 353279.359399996697903, 259568.323800001293421 ], [ 353284.326700001955032, 259553.165699999779463 ], [ 353286.929099999368191, 259531.6554000005126 ], [ 353290.291000001132488, 259515.639800000935793 ], [ 353292.753100000321865, 259510.593699999153614 ], [ 353299.243100002408028, 259506.00279999896884 ], [ 353301.288699999451637, 259505.455600000917912 ], [ 353309.702799998223782, 259436.330899998545647 ], [ 353324.927500002086163, 259425.364199999719858 ], [ 353339.520700000226498, 259415.32660000026226 ], [ 353345.408299997448921, 259448.759899999946356 ], [ 353351.091899998486042, 259447.815200001001358 ], [ 353367.035800002515316, 259442.145300000905991 ], [ 353382.627999998629093, 259429.248199999332428 ], [ 353393.514399997889996, 259420.014899998903275 ], [ 353400.026100002229214, 259412.890999998897314 ], [ 353407.333200000226498, 259407.040199998766184 ], [ 353417.51240000128746, 259401.817400000989437 ], [ 353438.598999999463558, 259272.258499998599291 ], [ 353434.355599999427795, 259270.853100001811981 ], [ 353433.3800999969244, 259271.348999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904013300", "MAP": "A9-798-T014", "PARCEL_NAM": "REM of SORGENFRI (West)", "ACRE": "65.0", "LONGITUDE": -64.9884746, "LATITUDE": 18.36443721, "OBJECTID_1": 59, "PARCEL_NO_": "100904013300", "Tax_Legal_": "REM SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "UNIVERSITY OF THE VIRGIN ISLANDS", "Address": "2 JOHN BREWERS BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3400400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3300.7760553100002, "SHAPE_Area": 246648.80980700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352398.951399996876717, 259692.786299999803305 ], [ 352450.453400000929832, 259683.541799999773502 ], [ 352467.12219999730587, 259712.116900000721216 ], [ 352487.759700000286102, 259708.14809999987483 ], [ 352511.572300001978874, 259693.860599998384714 ], [ 352536.178599998354912, 259677.191799998283386 ], [ 352570.309900000691414, 259667.666799999773502 ], [ 352584.59740000218153, 259654.173000000417233 ], [ 352599.678700000047684, 259647.822999998927116 ], [ 352649.685000002384186, 259622.422899998724461 ], [ 352658.416299998760223, 259608.135400000959635 ], [ 352662.385099999606609, 259595.435400001704693 ], [ 352663.972599998116493, 259581.147900000214577 ], [ 352678.260099999606609, 259568.447799999266863 ], [ 352698.897600002586842, 259564.479100000113249 ], [ 352714.772699996829033, 259535.110300000756979 ], [ 352726.678900003433228, 259530.347800001502037 ], [ 352740.966499999165535, 259524.791499998420477 ], [ 352767.954000003635883, 259521.616500001400709 ], [ 352787.004100002348423, 259509.710200000554323 ], [ 352825.897900000214577, 259508.916499998420477 ], [ 352829.866700001060963, 259498.597699999809265 ], [ 352841.772900000214577, 259485.103900000452995 ], [ 352855.266699999570847, 259477.960200000554323 ], [ 352863.204199999570847, 259466.053899999707937 ], [ 352876.697999998927116, 259454.941399998962879 ], [ 352887.810500003397465, 259446.210099998861551 ], [ 352922.735600002110004, 259420.01630000025034 ], [ 352930.673100002110004, 259410.491300001740456 ], [ 352941.785599999129772, 259395.410000000149012 ], [ 352951.310599997639656, 259381.916200000792742 ], [ 352975.916900001466274, 259344.609900001436472 ], [ 352999.729500003159046, 259309.684799998998642 ], [ 353009.25450000166893, 259301.747299998998642 ], [ 353024.335799999535084, 259285.872299998998642 ], [ 353033.860799998044968, 259274.759700000286102 ], [ 353036.24210000038147, 259262.853500001132488 ], [ 353041.004600003361702, 259253.328499998897314 ], [ 353041.004600003361702, 259243.803399998694658 ], [ 353044.17960000038147, 259231.897199999541044 ], [ 353048.148299999535084, 259206.497099999338388 ], [ 353052.11710000038147, 259193.797100000083447 ], [ 353057.67339999973774, 259176.334600001573563 ], [ 353060.848399996757507, 259167.603300001472235 ], [ 353082.279700003564358, 259139.822000000625849 ], [ 353107.679700002074242, 259099.340599998831749 ], [ 353121.967200003564358, 259081.878100000321865 ], [ 353129.111000001430511, 259076.321899998933077 ], [ 353156.892300002276897, 259054.890599999576807 ], [ 353193.404899999499321, 259050.127999998629093 ], [ 353238.648699998855591, 259066.003100000321865 ], [ 353254.523800000548363, 259031.078000001609325 ], [ 353269.604999996721745, 259005.677999999374151 ], [ 353284.686300002038479, 258977.102899998426437 ], [ 353300.561300002038479, 258954.084100000560284 ], [ 353316.107900001108646, 258910.78660000115633 ], [ 352903.209600001573563, 259139.891600001603365 ], [ 352816.452200002968311, 259195.754599999636412 ], [ 352746.773100003600121, 259234.6587999984622 ], [ 352656.964900001883507, 259270.020799998193979 ], [ 352577.500299997627735, 259321.721599999815226 ], [ 352548.386799998581409, 259331.615800000727177 ], [ 352534.638099998235703, 259336.358500000089407 ], [ 352482.881300002336502, 259353.87779999896884 ], [ 352176.272900000214577, 259470.636199999600649 ], [ 352183.509900003671646, 259473.017499998211861 ], [ 352193.142499998211861, 259478.162599999457598 ], [ 352210.85980000346899, 259480.840700000524521 ], [ 352218.937299996614456, 259479.218100000172853 ], [ 352230.232900001108646, 259478.466099999845028 ], [ 352241.488899998366833, 259482.357900001108646 ], [ 352261.537000000476837, 259495.398699998855591 ], [ 352275.957099996507168, 259506.493599999696016 ], [ 352294.360200002789497, 259523.320599999278784 ], [ 352307.912900000810623, 259541.58559999987483 ], [ 352330.869800001382828, 259591.802700001746416 ], [ 352336.443800002336502, 259600.080899998545647 ], [ 352340.408900000154972, 259607.923799999058247 ], [ 352341.954999998211861, 259615.747000001370907 ], [ 352340.225500002503395, 259629.453899998217821 ], [ 352341.744599997997284, 259640.443199999630451 ], [ 352344.080799996852875, 259650.172600001096725 ], [ 352351.177599996328354, 259669.01799999922514 ], [ 352351.821999996900558, 259688.021699998527765 ], [ 352345.315800003707409, 259694.51240000128746 ], [ 352341.262699998915195, 259697.012299999594688 ], [ 352321.893200002610683, 259698.964699998497963 ], [ 352312.978799998760223, 259704.169100001454353 ], [ 352306.694300003349781, 259715.457699999213219 ], [ 352359.023400001227856, 259731.853300001472235 ], [ 352361.913099996745586, 259724.281100001186132 ], [ 352365.916900001466274, 259718.967999998480082 ], [ 352371.91499999910593, 259711.982799999415874 ], [ 352374.793600000441074, 259705.81700000166893 ], [ 352380.517499998211861, 259697.704500000923872 ], [ 352388.505300000309944, 259689.6097999997437 ], [ 352394.213799998164177, 259683.466299999505281 ], [ 352399.637000001966953, 259677.601799998432398 ], [ 352405.0625, 259671.456000000238419 ], [ 352411.913999997079372, 259663.91499999910593 ], [ 352415.057800002396107, 259660.001600001007318 ], [ 352416.508199997246265, 259655.512299999594688 ], [ 352417.686700001358986, 259649.61430000141263 ], [ 352418.292499996721745, 259644.555799998342991 ], [ 352417.746500000357628, 259642.019799999892712 ], [ 352416.072899997234344, 259638.912399999797344 ], [ 352414.076499998569489, 259635.841699998825788 ], [ 352409.547600001096725, 259635.947999998927116 ], [ 352404.159500002861023, 259633.305500000715256 ], [ 352403.555100001394749, 259628.792300000786781 ], [ 352403.729000002145767, 259624.503199998289347 ], [ 352412.254799999296665, 259620.311599999666214 ], [ 352416.461499996483326, 259620.481499999761581 ], [ 352419.749600000679493, 259621.414500001817942 ], [ 352422.430100001394749, 259624.571800000965595 ], [ 352425.857699997723103, 259628.975699998438358 ], [ 352426.924400001764297, 259632.246700000017881 ], [ 352428.34570000320673, 259640.838700000196695 ], [ 352427.209499999880791, 259650.109999999403954 ], [ 352427.549099996685982, 259655.03660000115633 ], [ 352423.527500003576279, 259662.599899999797344 ], [ 352418.661300003528595, 259669.594000000506639 ], [ 352411.803199999034405, 259677.978900000452995 ], [ 352407.233300000429153, 259683.287500001490116 ], [ 352402.659100003540516, 259689.158700000494719 ], [ 352398.951399996876717, 259692.786299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601026500", "MAP": "A9-798-T014", "PARCEL_NAM": "E-3", "ACRE": "8.8", "LONGITUDE": -64.98278448000001, "LATITUDE": 18.36337155, "OBJECTID_1": 2272, "PARCEL_NO_": "102601026500", "Tax_Legal_": "\"E-3\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "Ferguson, Charles & Ann and Richard & Muriel Ferguson, Co Tr", "Address": "185 Sulgrave Ct", "City": "Sterling", "State": "Virginia", "Zip": 20165, "Country": "United States", "Land_Value": 658500, "Improved_V": 48900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1440.7483295899999, "SHAPE_Area": 35846.068845900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353404.847099997103214, 259186.544799998402596 ], [ 353405.498700000345707, 259186.5152000002563 ], [ 353439.107299998402596, 259187.267599999904633 ], [ 353441.472759293857962, 259187.528227080852957 ], [ 353443.849053255398758, 259187.399575760849984 ], [ 353446.172548405244015, 259186.885091123258462 ], [ 353448.381025136215612, 259185.998550271149725 ], [ 353450.415343856497202, 259184.763693397631869 ], [ 353452.221028656465933, 259183.213588060287293 ], [ 353453.749726089416072, 259181.389743683073903 ], [ 353454.960500001907349, 259179.340999998152256 ], [ 353456.984310170228127, 259174.112012481520651 ], [ 353458.501563165977132, 259168.714229474309832 ], [ 353459.498499996960163, 259163.196600001305342 ], [ 353444.76240000128746, 259162.80519999936223 ], [ 353431.878200002014637, 259161.300999999046326 ], [ 353424.893500000238419, 259160.485599998384714 ], [ 353411.865299999713898, 259157.60249999910593 ], [ 353403.81360000371933, 259154.141199998557568 ], [ 353399.500200003385544, 259149.47410000115633 ], [ 353396.138599999248981, 259142.343499999493361 ], [ 353380.155100002884865, 259081.061599999666214 ], [ 353380.544200003147125, 259071.181000001728535 ], [ 353384.476000003516674, 259045.576299998909235 ], [ 353386.726899996399879, 259036.019299998879433 ], [ 353387.703100003302097, 259030.467500001192093 ], [ 353387.742299996316433, 259025.52589999884367 ], [ 353386.215599998831749, 259022.116300001740456 ], [ 353383.74210000038147, 259020.552400000393391 ], [ 353380.32660000026226, 259020.216400001198053 ], [ 353377.490900002419949, 259025.135800000280142 ], [ 353374.014300003647804, 259032.521000001579523 ], [ 353368.387000001966953, 259036.800599999725819 ], [ 353363.068000003695488, 259041.391399998217821 ], [ 353340.605499997735023, 259052.641399998217821 ], [ 353332.788599997758865, 259058.756799999624491 ], [ 353326.216899998486042, 259064.57319999858737 ], [ 353320.8783999979496, 259071.634799998253584 ], [ 353317.399300001561642, 259079.328899998217821 ], [ 353314.805900000035763, 259092.898400001227856 ], [ 353314.081699997186661, 259105.864999998360872 ], [ 353315.554499998688698, 259116.069200001657009 ], [ 353319.826300002634525, 259125.986699998378754 ], [ 353323.491300001740456, 259134.04619999974966 ], [ 353347.399599999189377, 259175.623500000685453 ], [ 353352.278099998831749, 259187.398899998515844 ], [ 353354.673299998044968, 259198.845899999141693 ], [ 353352.449299998581409, 259205.005499999970198 ], [ 353350.198399998247623, 259214.562399998307228 ], [ 353339.457800000905991, 259236.715500000864267 ], [ 353326.823499999940395, 259262.559799998998642 ], [ 353321.790799997746944, 259270.241500001400709 ], [ 353316.467000000178814, 259275.449999999254942 ], [ 353308.013999998569489, 259283.413400001823902 ], [ 353297.077799998223782, 259291.04839999973774 ], [ 353281.771899998188019, 259301.119600001722574 ], [ 353267.704000003635883, 259311.818300001323223 ], [ 353260.503700003027916, 259318.556200001388788 ], [ 353248.620600000023842, 259328.036800000816584 ], [ 353240.488200001418591, 259334.767400000244379 ], [ 353228.230800002813339, 259352.275400001555681 ], [ 353215.432800002396107, 259359.586800001561642 ], [ 353190.1841000020504, 259369.579300001263618 ], [ 353173.346699997782707, 259376.85869999974966 ], [ 353166.794799998402596, 259380.204300001263618 ], [ 353160.86429999768734, 259383.554800000041723 ], [ 353152.73929999768734, 259389.358899999409914 ], [ 353145.548799999058247, 259394.861400000751019 ], [ 353139.921700000762939, 259399.140999998897314 ], [ 353132.714199997484684, 259406.805399999022484 ], [ 353126.448499999940395, 259413.241900000721216 ], [ 353118.920500002801418, 259422.139299999922514 ], [ 353112.659800000488758, 259427.958099998533726 ], [ 353102.961599998176098, 259436.220600001513958 ], [ 353094.205399997532368, 259443.255100000649691 ], [ 353086.376400001347065, 259450.914599999785423 ], [ 353071.677599996328354, 259462.843899998813868 ], [ 353066.668200001120567, 259466.906800001859665 ], [ 353096.347699999809265, 259503.690499998629093 ], [ 353225.948700003325939, 259399.907900001853704 ], [ 353433.3800999969244, 259271.348999999463558 ], [ 353404.847099997103214, 259186.544799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904012400", "MAP": "A9-798-T014", "PARCEL_NAM": "D", "ACRE": "16.04", "LONGITUDE": -64.9908272, "LATITUDE": 18.36999347, "OBJECTID_1": 50, "PARCEL_NO_": "100904012400", "Tax_Legal_": "\"D\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "BOSCHULTE, BERTHA & OTHERS", "Address": "PO Box 753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040753, "Country": "United States", "Land_Value": 915300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1270.3972784499999, "SHAPE_Area": 59073.683353100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352313.054099999368191, 259884.654699999839067 ], [ 352327.803900003433228, 259876.285100001841784 ], [ 352334.418499998748302, 259886.53770000115037 ], [ 352342.686700001358986, 259884.88399999961257 ], [ 352346.655500002205372, 259890.837200000882149 ], [ 352354.923699997365475, 259902.081999998539686 ], [ 352361.53830000013113, 259912.665300000458956 ], [ 352362.861199997365475, 259920.602800000458956 ], [ 352365.8378000035882, 259934.493500001728535 ], [ 352362.199799999594688, 259944.415399998426437 ], [ 352355.25450000166893, 259950.368500001728535 ], [ 352353.60080000013113, 259950.699299998581409 ], [ 352347.647699996829033, 259953.675799999386072 ], [ 352341.033100001513958, 259960.621199999004602 ], [ 352341.033100001513958, 259965.582100000232458 ], [ 352344.671099998056889, 259968.558699999004602 ], [ 352351.285700000822544, 259968.558699999004602 ], [ 352358.892499998211861, 259968.558699999004602 ], [ 352365.176399998366833, 259967.235800001770258 ], [ 352370.137299999594688, 259968.227899998426437 ], [ 352375.428999997675419, 259972.196699999272823 ], [ 352376.42119999974966, 259982.118599999696016 ], [ 352375.428999997675419, 259985.756599999964237 ], [ 352368.48369999974966, 259992.701999999582767 ], [ 352364.184199996292591, 259991.048300001770258 ], [ 352356.577399998903275, 259996.670699998736382 ], [ 352356.2466000020504, 260000.970199998468161 ], [ 352361.207599997520447, 260005.600400000810623 ], [ 352355.585199996829033, 260007.915500000119209 ], [ 352351.616400003433228, 260010.892099998891354 ], [ 352346.655500002205372, 260014.199400000274181 ], [ 352341.694499999284744, 260018.829599998891354 ], [ 352335.296999998390675, 260018.670099999755621 ], [ 352330.4375, 260021.163400001823902 ], [ 352325.554700002074242, 260026.400800000876188 ], [ 352321.467399999499321, 260032.911200001835823 ], [ 352317.345899999141693, 260043.432199999690056 ], [ 352318.942400000989437, 260045.345100000500679 ], [ 352325.360500000417233, 260049.197299998253584 ], [ 352337.521700002253056, 260041.486400000751019 ], [ 352343.973999999463558, 260041.328099999576807 ], [ 352356.821099996566772, 260047.766100000590086 ], [ 352365.679700002074242, 260049.105099998414516 ], [ 352375.328500002622604, 260052.350499998778105 ], [ 352377.720399998128414, 260055.536499999463558 ], [ 352378.487199999392033, 260060.186799999326468 ], [ 352368.700000002980232, 260073.194499999284744 ], [ 352367.038800001144409, 260078.880399998277426 ], [ 352367.810900002717972, 260082.89750000089407 ], [ 352371.837099999189377, 260083.563799999654293 ], [ 352372.627199999988079, 260085.470100000500679 ], [ 352368.561499997973442, 260089.447599999606609 ], [ 352368.539899997413158, 260091.980500001460314 ], [ 352369.319300003349781, 260095.153299998492002 ], [ 352375.686999998986721, 260104.915699999779463 ], [ 352375.609700001776218, 260113.99210000038147 ], [ 352367.445900000631809, 260125.746500000357628 ], [ 352367.411700002849102, 260129.756999999284744 ], [ 352368.191100001335144, 260132.929800000041723 ], [ 352373.797499999403954, 260137.408700000494719 ], [ 352376.171499997377396, 260142.705400001257658 ], [ 352377.690600000321865, 260153.694699998944998 ], [ 352380.894299998879433, 260156.254099998623133 ], [ 352405.891800001263618, 260156.247600000351667 ], [ 352422.007200002670288, 260157.646000001579523 ], [ 352445.330899998545647, 260164.802999999374151 ], [ 352452.549999997019768, 260169.295099999755621 ], [ 352462.132200002670288, 260180.350400000810623 ], [ 352601.240299999713898, 260033.151900000870228 ], [ 352515.491400003433228, 259893.012600000947714 ], [ 352509.859700001776218, 259897.909800000488758 ], [ 352501.11370000243187, 259903.709100000560284 ], [ 352496.433600001037121, 259906.14299999922514 ], [ 352489.267899997532368, 259908.557399999350309 ], [ 352486.48369999974966, 259906.991200000047684 ], [ 352479.978299997746944, 259904.469099998474121 ], [ 352475.041000001132488, 259900.106300000101328 ], [ 352470.737300001084805, 259894.204199999570847 ], [ 352464.877700001001358, 259888.598600000143051 ], [ 352452.274899996817112, 259871.203600000590086 ], [ 352447.973600000143051, 259864.99269999936223 ], [ 352443.400600001215935, 259853.837999999523163 ], [ 352440.682099997997284, 259843.933200001716614 ], [ 352438.162399999797344, 259836.080600000917912 ], [ 352290.896200001239777, 259835.288600001484156 ], [ 352286.002599999308586, 259841.792399998754263 ], [ 352281.125100001692772, 259846.396499998867512 ], [ 352279.418999999761581, 259857.359400000423193 ], [ 352279.35249999910593, 259865.169399999082088 ], [ 352287.332900002598763, 259874.945000000298023 ], [ 352300.997000001370907, 259880.123100001364946 ], [ 352305.023199997842312, 259880.789299998432398 ], [ 352313.054099999368191, 259884.654699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904011800", "MAP": "A9-798-T014", "PARCEL_NAM": "B", "ACRE": "1.0", "LONGITUDE": -64.98083605, "LATITUDE": 18.3619753, "OBJECTID_1": 45, "PARCEL_NO_": "100904011800", "Tax_Legal_": "\"B\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "VAN BEVERHOUDT-MATTHIAS, AETHRA", "Address": "PO Box 304277", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75000, "Improved_V": 190100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.53392552899999, "SHAPE_Area": 3776.69981383 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353516.414599999785423, 259164.814500000327826 ], [ 353544.907999999821186, 259095.903799999505281 ], [ 353538.569899998605251, 259093.742600001394749 ], [ 353519.345799997448921, 259084.447299998253584 ], [ 353507.303000003099442, 259076.805399999022484 ], [ 353503.111000001430511, 259073.77589999884367 ], [ 353498.586800001561642, 259075.460499998182058 ], [ 353496.023100003600121, 259076.284200001507998 ], [ 353472.041199997067451, 259153.75560000166297 ], [ 353472.800700001418591, 259153.761599998921156 ], [ 353482.861900001764297, 259154.768300000578165 ], [ 353495.755699999630451, 259155.718199998140335 ], [ 353498.97919999808073, 259155.955699998885393 ], [ 353505.411700002849102, 259158.119300000369549 ], [ 353512.641500003635883, 259161.344799999147654 ], [ 353516.414599999785423, 259164.814500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904011700", "MAP": "A9-7901-T007", "PARCEL_NAM": "F", "ACRE": "2.24", "LONGITUDE": -64.9800593, "LATITUDE": 18.36220442, "OBJECTID_1": 44, "PARCEL_NO_": "100904011700", "Tax_Legal_": "\"E-5\"& \"F\" SORGENFRI(WESTERN HALF) NO.1 SOUTHSIDE QUARTER", "Name": "Leal I .& Luz M. Van Beverhoudt, Trustees", "Address": "PO Box 10184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 276000, "Improved_V": 350000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 410.16341048599998, "SHAPE_Area": 9234.2582493999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353544.907999999821186, 259095.903799999505281 ], [ 353516.414599999785423, 259164.814500000327826 ], [ 353521.4425999969244, 259169.438400000333786 ], [ 353523.845399998128414, 259171.357900001108646 ], [ 353529.460799999535084, 259174.781399998813868 ], [ 353533.485200002789497, 259175.658700000494719 ], [ 353543.974399998784065, 259174.900199998170137 ], [ 353551.227600000798702, 259175.381700001657009 ], [ 353557.663800001144409, 259177.123199999332428 ], [ 353568.901799999177456, 259183.125700000673532 ], [ 353576.939699999988079, 259186.146800000220537 ], [ 353578.550599999725819, 259186.371100001037121 ], [ 353589.014600001275539, 259188.567699998617172 ], [ 353597.880500003695488, 259189.0625 ], [ 353611.602200001478195, 259187.486000001430511 ], [ 353621.301299996674061, 259184.821199998259544 ], [ 353627.787799999117851, 259180.652399998158216 ], [ 353645.659699998795986, 259165.177700001746416 ], [ 353670.000100001692772, 259147.645100001245737 ], [ 353682.9712999984622, 259139.5185999982059 ], [ 353651.613200001418591, 259128.918400000780821 ], [ 353643.155799999833107, 259125.785399999469519 ], [ 353636.650200001895428, 259120.29839999973774 ], [ 353621.315099999308586, 259111.995099999010563 ], [ 353615.797499999403954, 259112.379299998283386 ], [ 353610.611699998378754, 259114.439500000327826 ], [ 353592.11150000244379, 259109.010800000280142 ], [ 353559.439999997615814, 259100.859200000762939 ], [ 353544.907999999821186, 259095.903799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601032200", "MAP": null, "PARCEL_NAM": "38D-3", "ACRE": null, "LONGITUDE": -64.97675617, "LATITUDE": 18.35664631, "OBJECTID_1": 2295, "PARCEL_NO_": "102601032200", "Tax_Legal_": "PEARL 38D-3&5 SOUTHSIDE QTR.", "Name": "CARTY, MAXWELL", "Address": "PO Box 305675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.20632245000002, "SHAPE_Area": 150.74252303200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353859.287900000810623, 258509.580899998545647 ], [ 353985.978699997067451, 258546.5 ], [ 353985.244999997317791, 258543.906500000506639 ], [ 353859.287900000810623, 258509.580899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021500", "MAP": null, "PARCEL_NAM": "3BBB", "ACRE": null, "LONGITUDE": -64.97589065, "LATITUDE": 18.35579388, "OBJECTID_1": 2588, "PARCEL_NO_": "102603021500", "Tax_Legal_": "CROWN & HAWK 3BBB S S QTR", "Name": "MILLIN, GERALDINE", "Address": "911 Studer Ave", "City": "Columbus", "State": "Ohio", "Zip": 43206, "Country": "United States", "Land_Value": 93000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.13366081800001, "SHAPE_Area": 4582.705169 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353990.831900000572205, 258427.601599998772144 ], [ 353997.699400000274181, 258477.924100000411272 ], [ 354001.154700003564358, 258480.780099999159575 ], [ 354079.021499998867512, 258450.286299999803305 ], [ 354079.692100003361702, 258425.620600000023842 ], [ 354081.549900002777576, 258410.707100000232458 ], [ 354081.18129999935627, 258398.250799998641014 ], [ 354074.685900002717972, 258403.475000001490116 ], [ 354069.021899998188019, 258405.750599998980761 ], [ 354063.357900001108646, 258408.026299998164177 ], [ 354022.167700000107288, 258415.710700001567602 ], [ 354009.234300002455711, 258419.404599998146296 ], [ 353995.478399999439716, 258424.991500001400709 ], [ 353990.831900000572205, 258427.601599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601032200", "MAP": null, "PARCEL_NAM": "38D-5", "ACRE": null, "LONGITUDE": -64.97554939, "LATITUDE": 18.35714785, "OBJECTID_1": 2295, "PARCEL_NO_": "102601032200", "Tax_Legal_": "PEARL 38D-3&5 SOUTHSIDE QTR.", "Name": "CARTY, MAXWELL", "Address": "PO Box 305675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.235716072, "SHAPE_Area": 377.70247136099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354076.503100000321865, 258568.776099998503923 ], [ 354057.009300000965595, 258606.127500001341105 ], [ 354067.288500003516674, 258609.230599999427795 ], [ 354083.74379999935627, 258570.735199999064207 ], [ 354076.503100000321865, 258568.776099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601032100", "MAP": null, "PARCEL_NAM": "38D-2", "ACRE": null, "LONGITUDE": -64.97600134, "LATITUDE": 18.35702925, "OBJECTID_1": 2294, "PARCEL_NO_": "102601032100", "Tax_Legal_": "38D-2 PEARL SOUTHSIDE QUARTER", "Name": "HOLDER, ANITA", "Address": "PO Box 308504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105900, "Improved_V": 211700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.647301914, "SHAPE_Area": 3325.8252515499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354067.207099996507168, 258570.170800000429153 ], [ 353985.978699997067451, 258546.5 ], [ 353983.332000002264977, 258553.597500000149012 ], [ 353973.185500003397465, 258580.807199999690056 ], [ 353991.738200001418591, 258586.412599999457598 ], [ 354033.50789999961853, 258599.032800000160933 ], [ 354057.009300000965595, 258606.127500001341105 ], [ 354074.644100002944469, 258572.338100001215935 ], [ 354067.207099996507168, 258570.170800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601032000", "MAP": null, "PARCEL_NAM": "38D-1", "ACRE": null, "LONGITUDE": -64.97702631, "LATITUDE": 18.35674925, "OBJECTID_1": 2293, "PARCEL_NO_": "102601032000", "Tax_Legal_": "PEARL ESTATE 38D-1 S.S.QTR.", "Name": "MILLN, FRANKLIN & ELSIE", "Address": "PO Box 307971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 161300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.35190425600001, "SHAPE_Area": 4863.9994328000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353973.185500003397465, 258580.807199999690056 ], [ 353983.332000002264977, 258553.597500000149012 ], [ 353985.978699997067451, 258546.5 ], [ 353859.287900000810623, 258509.580899998545647 ], [ 353852.774499997496605, 258516.915800001472235 ], [ 353849.502499997615814, 258522.377500001341105 ], [ 353845.395400002598763, 258531.209800001233816 ], [ 353843.728799998760223, 258537.528900001198053 ], [ 353843.694600000977516, 258541.53940000012517 ], [ 353973.185500003397465, 258580.807199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601032300", "MAP": "D9-3513-T85", "PARCEL_NAM": "38D-4", "ACRE": null, "LONGITUDE": -64.97589301, "LATITUDE": 18.35687153, "OBJECTID_1": 2296, "PARCEL_NO_": "102601032300", "Tax_Legal_": "PEARL 38D-4 SOUTHSIDE QTR.", "Name": "HOLDER, ANITA", "Address": "PO Box 308504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.652804097, "SHAPE_Area": 291.141834034 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353985.978699997067451, 258546.5 ], [ 354067.207099996507168, 258570.170800000429153 ], [ 354074.644100002944469, 258572.338100001215935 ], [ 354076.503100000321865, 258568.776099998503923 ], [ 353985.244999997317791, 258543.906500000506639 ], [ 353985.978699997067451, 258546.5 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601033400", "MAP": "D9-4962-T90", "PARCEL_NAM": "2E-1", "ACRE": ".043", "LONGITUDE": -64.97610365, "LATITUDE": 18.35674748, "OBJECTID_1": 2305, "PARCEL_NO_": "102601033400", "Tax_Legal_": "CROWN & HAWK 2E-1 SOUTHSIDE QTR.", "Name": "HOLDER, ANITA", "Address": "PO Box 308504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8200, "Improved_V": 7100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.481657008200003, "SHAPE_Area": 282.83061804599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354023.76519999653101, 258554.403999999165535 ], [ 354022.487499997019768, 258543.907699998468161 ], [ 354020.600500002503395, 258540.011900000274181 ], [ 354014.047799997031689, 258537.100099999457598 ], [ 354008.437799997627735, 258536.238499999046326 ], [ 353996.858000002801418, 258547.014899998903275 ], [ 353996.966700002551079, 258547.100900001823902 ], [ 354023.76519999653101, 258554.403999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021400", "MAP": "D9-3513-T85", "PARCEL_NAM": "2", "ACRE": "4.65", "LONGITUDE": -64.9758777, "LATITUDE": 18.3560668, "OBJECTID_1": 2586, "PARCEL_NO_": "102603021400", "Tax_Legal_": "2 CROWN & HAWK SOUTHSIDE QTR.", "Name": "MILLIN, ELSIE & OTHERS", "Address": "PO Box 307971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 238700, "Improved_V": 55600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 944.53811241200003, "SHAPE_Area": 15714.494713100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354103.04450000077486, 258520.30290000140667 ], [ 354126.027400001883507, 258312.33219999819994 ], [ 354118.978399999439716, 258315.600400000810623 ], [ 354117.358599998056889, 258316.431499999016523 ], [ 354111.67119999974966, 258321.451200000941753 ], [ 354108.415399998426437, 258325.013099998235703 ], [ 354106.765000000596046, 258329.432599999010563 ], [ 354100.053800001740456, 258359.986200001090765 ], [ 354091.798299998044968, 258382.505699999630451 ], [ 354089.341600000858307, 258386.918499998748302 ], [ 354086.067800000309944, 258392.591299999505281 ], [ 354081.18129999935627, 258398.250799998641014 ], [ 354081.549900002777576, 258410.707100000232458 ], [ 354079.692100003361702, 258425.620600000023842 ], [ 354079.021499998867512, 258450.286299999803305 ], [ 354001.154700003564358, 258480.780099999159575 ], [ 353997.699400000274181, 258477.924100000411272 ], [ 353990.831900000572205, 258427.601599998772144 ], [ 353982.514499999582767, 258432.273699998855591 ], [ 353932.343099996447563, 258464.816300000995398 ], [ 353935.20099999755621, 258530.237500000745058 ], [ 353935.26070000231266, 258530.28489999845624 ], [ 353985.244999997317791, 258543.906500000506639 ], [ 353983.33049999922514, 258534.96339999884367 ], [ 353988.102600000798702, 258526.122000001370907 ], [ 354036.851099997758865, 258497.628699999302626 ], [ 354046.744999997317791, 258483.266699999570847 ], [ 354051.558499999344349, 258486.950300000607967 ], [ 354055.392599999904633, 258495.532999999821186 ], [ 354046.476999998092651, 258522.847899999469519 ], [ 354041.184600003063679, 258526.1706000007689 ], [ 354038.401500001549721, 258527.316799998283386 ], [ 354031.869999997317791, 258556.612700000405312 ], [ 354103.04450000077486, 258520.30290000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601050100", "MAP": "D9-3513-T85", "PARCEL_NAM": "2E", "ACRE": ".54", "LONGITUDE": -64.97600583000001, "LATITUDE": 18.35654177, "OBJECTID_1": 2348, "PARCEL_NO_": "102601050100", "Tax_Legal_": "CROWN & HAWK 2E SOUTHSIDE QTR.", "Name": "MILLIN, JR. MILLIN & HOLDER, BROWN &", "Address": "277 Van Buren St", "City": "Brooklyn", "State": "New York", "Zip": 11221, "Country": "United States", "Land_Value": 66800, "Improved_V": 134400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.821715267, "SHAPE_Area": 2171.30801509 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353996.966700002551079, 258547.100900001823902 ], [ 353996.858000002801418, 258547.014899998903275 ], [ 354008.437799997627735, 258536.238499999046326 ], [ 354014.047799997031689, 258537.100099999457598 ], [ 354020.600500002503395, 258540.011900000274181 ], [ 354022.487499997019768, 258543.907699998468161 ], [ 354023.76519999653101, 258554.403999999165535 ], [ 354031.869999997317791, 258556.612700000405312 ], [ 354038.401500001549721, 258527.316799998283386 ], [ 354041.184600003063679, 258526.1706000007689 ], [ 354046.476999998092651, 258522.847899999469519 ], [ 354055.392599999904633, 258495.532999999821186 ], [ 354051.558499999344349, 258486.950300000607967 ], [ 354046.744999997317791, 258483.266699999570847 ], [ 354036.851099997758865, 258497.628699999302626 ], [ 353988.102600000798702, 258526.122000001370907 ], [ 353983.33049999922514, 258534.96339999884367 ], [ 353985.244999997317791, 258543.906500000506639 ], [ 353996.966700002551079, 258547.100900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-19", "ACRE": null, "LONGITUDE": -64.89374044, "LATITUDE": 18.36256875, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.45010589700001, "SHAPE_Area": 6654.0859773100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362747.381399996578693, 259231.860599998384714 ], [ 362712.205700002610683, 259196.108899999409914 ], [ 362708.075300000607967, 259207.685300000011921 ], [ 362709.662699997425079, 259210.653599999845028 ], [ 362707.979999996721745, 259218.872499998658895 ], [ 362702.308799996972084, 259221.992400001734495 ], [ 362695.867299996316433, 259220.884300000965595 ], [ 362694.269100002944469, 259219.182399999350309 ], [ 362655.213600002229214, 259260.237100001424551 ], [ 362657.598399996757507, 259264.267400000244379 ], [ 362679.151199996471405, 259289.986099999397993 ], [ 362700.032700002193451, 259299.867300000041723 ], [ 362723.351000003516674, 259307.657600000500679 ], [ 362749.953900001943111, 259308.508600000292063 ], [ 362752.378200002014637, 259307.895100001245737 ], [ 362747.381399996578693, 259231.860599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-22", "ACRE": null, "LONGITUDE": -64.89311805, "LATITUDE": 18.36248616, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.83236617900002, "SHAPE_Area": 5058.4773854300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362811.26349999755621, 259210.85190000012517 ], [ 362802.415600001811981, 259208.246300000697374 ], [ 362795.194799996912479, 259203.965300001204014 ], [ 362790.405500002205372, 259198.226599998772144 ], [ 362788.054899998009205, 259190.1858000010252 ], [ 362747.381399996578693, 259231.860599998384714 ], [ 362752.378200002014637, 259307.895100001245737 ], [ 362784.69370000064373, 259300.771299999207258 ], [ 362795.208099998533726, 259297.057700000703335 ], [ 362811.26349999755621, 259210.85190000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-23", "ACRE": null, "LONGITUDE": -64.89258338, "LATITUDE": 18.3625787, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.79842487399998, "SHAPE_Area": 5367.4873810299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362885.574400000274181, 259290.831199999898672 ], [ 362836.286100000143051, 259207.8902000002563 ], [ 362821.749099999666214, 259210.515500001609325 ], [ 362811.26349999755621, 259210.85190000012517 ], [ 362795.208099998533726, 259297.057700000703335 ], [ 362800.868500001728535, 259295.204199999570847 ], [ 362808.100100003182888, 259298.218699999153614 ], [ 362812.894799999892712, 259303.324200000613928 ], [ 362816.908399999141693, 259305.467999998480082 ], [ 362823.349899999797344, 259306.576200000941753 ], [ 362829.003100000321865, 259305.56700000166893 ], [ 362833.056199997663498, 259303.06700000166893 ], [ 362848.417499996721745, 259298.337600000202656 ], [ 362885.574400000274181, 259290.831199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-24", "ACRE": null, "LONGITUDE": -64.89197295, "LATITUDE": 18.36235517, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.12278391699999, "SHAPE_Area": 7039.4388459299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362873.491599999368191, 259194.684799998998642 ], [ 362841.941100001335144, 259206.670000001788139 ], [ 362836.286100000143051, 259207.8902000002563 ], [ 362885.574400000274181, 259290.831199999898672 ], [ 362908.201499998569489, 259285.105799999088049 ], [ 362929.259199999272823, 259274.301300000399351 ], [ 362939.015799999237061, 259264.881900001317263 ], [ 362945.577799998223782, 259251.847800001502037 ], [ 362951.27589999884367, 259245.561700001358986 ], [ 362964.203900001943111, 259242.5011 ], [ 362972.299400001764297, 259238.767599999904633 ], [ 362891.23589999973774, 259194.196699999272823 ], [ 362873.491599999368191, 259194.684799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89859134, "LATITUDE": 18.36235893, "OBJECTID_1": 6336, "PARCEL_NO_": "103101010200", "Tax_Legal_": "MANDAHL 34AB GR NORTHSIDE", "Name": "PASEK, RALPH & EDYTHE-CO-TRUSTEES", "Address": "34AB MANDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 134900, "Improved_V": 186400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.004129463, "SHAPE_Area": 4026.1703951700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362212.331600002944469, 259187.373599998652935 ], [ 362201.757799997925758, 259198.05290000140667 ], [ 362192.024499997496605, 259204.728199999779463 ], [ 362185.538000002503395, 259208.896999999880791 ], [ 362177.437200002372265, 259213.263700000941753 ], [ 362155.575000002980232, 259223.850499998778105 ], [ 362175.349799998104572, 259268.975299999117851 ], [ 362183.416500002145767, 259268.619100000709295 ], [ 362196.339100003242493, 259266.191700000315905 ], [ 362215.749899998307228, 259259.384500000625849 ], [ 362234.39580000191927, 259247.715900000184774 ], [ 362242.523699998855591, 259240.18299999833107 ], [ 362212.331600002944469, 259187.373599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89939735, "LATITUDE": 18.36226356, "OBJECTID_1": 6341, "PARCEL_NO_": "103101010700", "Tax_Legal_": "MANDAHL 34G GR NORTHSIDE QTR", "Name": "SCHREINER, ROBERT & TAMMY ESSEX SCHREINER", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130700, "Improved_V": 309800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.600848625, "SHAPE_Area": 2541.7062168000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362153.202799998223782, 259218.342599999159575 ], [ 362140.539200000464916, 259190.374600000679493 ], [ 362132.440099999308586, 259194.530200000852346 ], [ 362130.804099999368191, 259197.261100001633167 ], [ 362130.778899997472763, 259200.2162000015378 ], [ 362123.51129999756813, 259201.423200000077486 ], [ 362121.947200000286102, 259195.710900001227856 ], [ 362070.937399998307228, 259220.202500000596046 ], [ 362086.210600003600121, 259225.815900001674891 ], [ 362089.281199999153614, 259243.995099999010563 ], [ 362094.794100001454353, 259259.449999999254942 ], [ 362142.679399996995926, 259223.111699998378754 ], [ 362153.202799998223782, 259218.342599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89817645, "LATITUDE": 18.36189639, "OBJECTID_1": 6337, "PARCEL_NO_": "103101010300", "Tax_Legal_": "MANDAHL ESTATE 34AC GR NORTHSIDE", "Name": "MARKWOOD, CHRISTOPHER T.", "Address": "PO Box 503268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053268, "Country": "United States", "Land_Value": 163100, "Improved_V": 252600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.09719928300001, "SHAPE_Area": 4004.5447994699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362235.485500000417233, 259119.802099999040365 ], [ 362233.296800002455711, 259116.215399999171495 ], [ 362231.867799997329712, 259126.473400000482798 ], [ 362231.338600002229214, 259132.691100001335144 ], [ 362230.677199997007847, 259138.115100000053644 ], [ 362229.75110000371933, 259140.760899998247623 ], [ 362227.898999996483326, 259148.301500000059605 ], [ 362224.856299996376038, 259155.445300001651049 ], [ 362214.802100002765656, 259180.448499999940395 ], [ 362210.89639999717474, 259185.462099999189377 ], [ 362212.331600002944469, 259187.373599998652935 ], [ 362242.523699998855591, 259240.18299999833107 ], [ 362245.774099998176098, 259237.254299998283386 ], [ 362254.780199997127056, 259221.28489999845624 ], [ 362266.194499999284744, 259206.601799998432398 ], [ 362271.11150000244379, 259197.353900000452995 ], [ 362276.892300002276897, 259181.3581000007689 ], [ 362243.447999998927116, 259131.688499998301268 ], [ 362235.485500000417233, 259119.802099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-25", "ACRE": null, "LONGITUDE": -64.8914709, "LATITUDE": 18.36199811, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.03902816900001, "SHAPE_Area": 5244.0006383700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362892.978000000119209, 259179.012200001627207 ], [ 362890.533900000154972, 259181.947500001639128 ], [ 362884.8429000005126, 259187.389400001615286 ], [ 362883.219499997794628, 259188.642700001597404 ], [ 362873.491599999368191, 259194.684799998998642 ], [ 362891.23589999973774, 259194.196699999272823 ], [ 362972.299400001764297, 259238.767599999904633 ], [ 362978.771499998867512, 259236.287500001490116 ], [ 363001.468699999153614, 259222.329999998211861 ], [ 363008.826200000941753, 259210.568999998271465 ], [ 363015.395400002598763, 259196.690600000321865 ], [ 363015.417000003159046, 259194.157600000500679 ], [ 362910.050800003111362, 259162.686700001358986 ], [ 362905.119400002062321, 259173.623199999332428 ], [ 362892.978000000119209, 259179.012200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101015700", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-20", "ACRE": ".56", "LONGITUDE": -64.8934271, "LATITUDE": 18.36197166, "OBJECTID_1": 6364, "PARCEL_NO_": "103101015700", "Tax_Legal_": "MANDAHL ESTATE 37-20 GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lyndon B Johnson Fwy", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 291900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.51212885000001, "SHAPE_Area": 2694.89622048 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362785.756399996578693, 259176.023699998855591 ], [ 362768.676399998366833, 259193.193599998950958 ], [ 362731.094400003552437, 259155.944699998944998 ], [ 362721.281999997794628, 259171.907499998807907 ], [ 362720.461300000548363, 259173.589499998837709 ], [ 362712.205700002610683, 259196.108899999409914 ], [ 362747.381399996578693, 259231.860599998384714 ], [ 362788.054899998009205, 259190.1858000010252 ], [ 362786.492600001394749, 259184.26240000128746 ], [ 362785.756399996578693, 259176.023699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89959104, "LATITUDE": 18.36189261, "OBJECTID_1": 6345, "PARCEL_NO_": "103101011200", "Tax_Legal_": "MANDAHL 34F GREAT NORTHSIDE QTR", "Name": "JAMES A TRILLING TRUST", "Address": "PO Box 11480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84600, "Improved_V": 189200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.23679377900001, "SHAPE_Area": 3022.9670122000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362091.708400003612041, 259148.389600001275539 ], [ 362065.767899997532368, 259164.431499999016523 ], [ 362070.937399998307228, 259220.202500000596046 ], [ 362121.947200000286102, 259195.710900001227856 ], [ 362121.189499996602535, 259190.005199998617172 ], [ 362130.075099997222424, 259188.178100001066923 ], [ 362118.178199999034405, 259164.860399998724461 ], [ 362104.701099999248981, 259137.730099998414516 ], [ 362100.638899996876717, 259141.285500001162291 ], [ 362102.185000002384186, 259149.108600001782179 ], [ 362094.102099999785423, 259151.364500001072884 ], [ 362092.496699996292591, 259150.506900001317263 ], [ 362091.708400003612041, 259148.389600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89881884, "LATITUDE": 18.36192018, "OBJECTID_1": 6342, "PARCEL_NO_": "103101010800", "Tax_Legal_": "MANDAHL 34H GREAT NORTHSIDE QTR", "Name": "JO ANNE SICKLER REVOC TR", "Address": "6554 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84600, "Improved_V": 191800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.896870275, "SHAPE_Area": 2408.7729977600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362208.344999998807907, 259182.063700001686811 ], [ 362185.316100001335144, 259140.289799999445677 ], [ 362175.471400000154972, 259160.052000001072884 ], [ 362168.135399997234344, 259169.280099999159575 ], [ 362159.194099999964237, 259177.650600001215935 ], [ 362152.695000000298023, 259183.296999998390675 ], [ 362140.539200000464916, 259190.374600000679493 ], [ 362153.202799998223782, 259218.342599999159575 ], [ 362175.059600003063679, 259208.388999998569489 ], [ 362184.7820999994874, 259202.980200000107288 ], [ 362195.334299996495247, 259194.83390000090003 ], [ 362208.344999998807907, 259182.063700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8917228, "LATITUDE": 18.35965715, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3201.6625143000001, "SHAPE_Area": 17773.0555288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362905.316100001335144, 258771.913699999451637 ], [ 362906.914399996399879, 258773.615600001066923 ], [ 362939.814900003373623, 258792.461100000888109 ], [ 362943.826700001955032, 258794.815900001674891 ], [ 362959.029799997806549, 258808.661499999463558 ], [ 362962.228000000119209, 258811.853999998420477 ], [ 362965.417300000786781, 258816.102000001817942 ], [ 362967.782300002872944, 258822.454199999570847 ], [ 362969.265500001609325, 258837.665100000798702 ], [ 362975.316799998283386, 258884.577300000935793 ], [ 362976.094300001859665, 258887.961199998855591 ], [ 362981.495700001716614, 258916.502999998629093 ], [ 362987.692699998617172, 258946.317999999970198 ], [ 362987.638800002634525, 258952.650299999862909 ], [ 362986.66160000115633, 258972.696199998259544 ], [ 362981.602600000798702, 258998.619300000369549 ], [ 362979.946800000965595, 259003.671999998390675 ], [ 362977.481100000441074, 259009.140299998223782 ], [ 362975.017200000584126, 259014.397399999201298 ], [ 362973.38120000064373, 259017.128299999982119 ], [ 362970.116400003433228, 259021.745600000023842 ], [ 362968.482199996709824, 259024.265299998223782 ], [ 362966.025499999523163, 259028.678199999034405 ], [ 362962.731899999082088, 259036.672800000756979 ], [ 362961.900399997830391, 259039.621300000697374 ], [ 362956.184299997985363, 259048.018300000578165 ], [ 362948.861000001430511, 259055.768800001591444 ], [ 362943.184399999678135, 259059.521999999880791 ], [ 362937.507799997925758, 259063.275199998170137 ], [ 362915.678099997341633, 259070.062699999660254 ], [ 362902.757299996912479, 259072.278900001198053 ], [ 362890.642800003290176, 259074.501800000667572 ], [ 362868.040899999439716, 259077.272100001573563 ], [ 362817.194700002670288, 259082.555500000715256 ], [ 362801.052199997007847, 259084.32319999858737 ], [ 362790.541400000452995, 259087.614700000733137 ], [ 362781.630599997937679, 259092.396899998188019 ], [ 362775.127999998629093, 259098.465399999171495 ], [ 362742.605700001120567, 259129.863299999386072 ], [ 362725.522100001573563, 259147.455299999564886 ], [ 362721.45099999755621, 259152.066100001335144 ], [ 362718.188000001013279, 259156.472300000488758 ], [ 362713.2871999964118, 259163.820500001311302 ], [ 362712.468299999833107, 259165.291400000452995 ], [ 362710.825099997222424, 259168.866599999368191 ], [ 362705.053199999034405, 259183.807000000029802 ], [ 362703.401000000536442, 259188.4375 ], [ 362697.616599999368191, 259204.855500001460314 ], [ 362694.376999996602535, 259206.517700001597404 ], [ 362691.927400000393391, 259210.086199998855591 ], [ 362691.877099998295307, 259215.996399998664856 ], [ 362694.269100002944469, 259219.182399999350309 ], [ 362695.867299996316433, 259220.884300000965595 ], [ 362702.308799996972084, 259221.992400001734495 ], [ 362707.979999996721745, 259218.872499998658895 ], [ 362709.662699997425079, 259210.653599999845028 ], [ 362708.075300000607967, 259207.685300000011921 ], [ 362712.205700002610683, 259196.108899999409914 ], [ 362720.461300000548363, 259173.589499998837709 ], [ 362721.281999997794628, 259171.907499998807907 ], [ 362731.094400003552437, 259155.944699998944998 ], [ 362737.602399997413158, 259149.242899999022484 ], [ 362758.742799997329712, 259128.728799998760223 ], [ 362761.994999997317791, 259125.589000001549721 ], [ 362786.387599997222424, 259101.935100000351667 ], [ 362791.247000001370907, 259099.441700000315905 ], [ 362797.719099998474121, 259096.961599998176098 ], [ 362804.189400002360344, 259094.692499998956919 ], [ 362855.035599999129772, 259089.409099999815226 ], [ 362893.774599999189377, 259085.504299998283386 ], [ 362917.199000000953674, 259080.840900000184774 ], [ 362919.589199997484684, 259084.237900000065565 ], [ 362898.432599999010563, 259106.651799999177456 ], [ 362887.106499999761581, 259110.99210000038147 ], [ 362844.228100001811981, 259127.528599999845028 ], [ 362839.365000002086163, 259130.444099999964237 ], [ 362813.426399998366833, 259146.274900000542402 ], [ 362793.149899996817112, 259160.04109999909997 ], [ 362790.700400002300739, 259163.609700001776218 ], [ 362788.241899996995926, 259168.233600001782179 ], [ 362787.42119999974966, 259169.915699999779463 ], [ 362786.593299999833107, 259172.44200000166893 ], [ 362785.756399996578693, 259176.023699998855591 ], [ 362786.492600001394749, 259184.26240000128746 ], [ 362788.054899998009205, 259190.1858000010252 ], [ 362790.405500002205372, 259198.226599998772144 ], [ 362795.194799996912479, 259203.965300001204014 ], [ 362802.415600001811981, 259208.246300000697374 ], [ 362811.26349999755621, 259210.85190000012517 ], [ 362821.749099999666214, 259210.515500001609325 ], [ 362836.286100000143051, 259207.8902000002563 ], [ 362841.941100001335144, 259206.670000001788139 ], [ 362873.491599999368191, 259194.684799998998642 ], [ 362883.219499997794628, 259188.642700001597404 ], [ 362884.8429000005126, 259187.389400001615286 ], [ 362890.533900000154972, 259181.947500001639128 ], [ 362892.978000000119209, 259179.012200001627207 ], [ 362897.06530000269413, 259172.501800000667572 ], [ 362900.385799996554852, 259161.340999998152256 ], [ 362908.016699999570847, 259117.495999999344349 ], [ 362908.876900002360344, 259111.170200001448393 ], [ 362948.747699998319149, 259069.066799998283386 ], [ 362963.370999999344349, 259056.30970000103116 ], [ 362969.079899996519089, 259048.757100000977516 ], [ 362973.996899999678135, 259039.509199999272823 ], [ 362976.480599999427795, 259031.93019999936223 ], [ 362978.922899998724461, 259029.206000000238419 ], [ 362983.019199997186661, 259021.640099998563528 ], [ 362986.294799998402596, 259015.756299998611212 ], [ 362992.914300002157688, 258995.967700000852346 ], [ 362994.613300003111362, 258985.84910000115633 ], [ 362997.127499997615814, 258974.681699998676777 ], [ 362997.987800002098083, 258968.355900000780821 ], [ 363002.123599998652935, 258956.14640000090003 ], [ 363005.456799998879433, 258943.508000001311302 ], [ 363006.281000003218651, 258941.403900001198053 ], [ 363013.685300000011921, 258924.154800001531839 ], [ 363027.674900002777576, 258891.127599999308586 ], [ 363036.720600001513958, 258870.514499999582767 ], [ 363044.094300001859665, 258856.853700000792742 ], [ 363051.469800002872944, 258842.981899999082088 ], [ 363053.933700002729893, 258837.724700000137091 ], [ 363058.879399999976158, 258825.099599998444319 ], [ 363058.897399999201298, 258822.988800000399351 ], [ 363070.507700003683567, 258785.298099998384714 ], [ 363072.156300000846386, 258781.089699998497963 ], [ 363077.190099999308586, 258758.121700000017881 ], [ 363077.306999996304512, 258744.401599999517202 ], [ 363077.353799998760223, 258738.913499999791384 ], [ 363075.769900001585484, 258735.52309999987483 ], [ 363071.89299999922514, 258717.33729999884963 ], [ 363070.381099998950958, 258705.503699999302626 ], [ 363066.590499997138977, 258677.186099998652935 ], [ 363065.856100000441074, 258668.736400000751019 ], [ 363065.075000002980232, 258665.774700000882149 ], [ 363064.331600002944469, 258658.380300000309944 ], [ 363066.152800001204014, 258633.908399999141693 ], [ 363064.572499997913837, 258630.095800001174212 ], [ 363063.782399997115135, 258628.189399998635054 ], [ 363063.008500002324581, 258624.383400000631809 ], [ 363057.430799998342991, 258616.527300000190735 ], [ 363046.232299998402596, 258605.881000000983477 ], [ 363040.607900001108646, 258603.512899998575449 ], [ 363030.966300003230572, 258599.423200000077486 ], [ 363024.521200001239777, 258598.737199999392033 ], [ 363005.151799999177456, 258600.689599998295307 ], [ 362988.203000001609325, 258602.450699999928474 ], [ 362978.491300001740456, 258606.593100000172853 ], [ 362974.44539999961853, 258608.248799998313189 ], [ 362967.962499998509884, 258611.995400000363588 ], [ 362963.909299999475479, 258614.495299998670816 ], [ 362959.037299998104572, 258618.4662000015378 ], [ 362954.125699996948242, 258627.080899998545647 ], [ 362949.259099997580051, 258630.418499998748302 ], [ 362951.651000000536442, 258633.604499999433756 ], [ 362949.232100002467632, 258633.584699999541044 ], [ 362949.178099997341633, 258639.917100001126528 ], [ 362942.5945999994874, 258655.484099999070168 ], [ 362936.014600001275539, 258670.629000000655651 ], [ 362935.152500003576279, 258677.165800001472235 ], [ 362929.407700002193451, 258688.940099999308586 ], [ 362912.160400003194809, 258725.740299999713898 ], [ 362908.060500003397465, 258733.728300001472235 ], [ 362905.598399996757507, 258738.774399999529123 ], [ 362900.686800003051758, 258747.388999998569489 ], [ 362898.235500000417233, 258751.168600000441074 ], [ 362898.935699999332428, 258763.628899998962879 ], [ 362902.11599999666214, 258768.932199999690056 ], [ 362905.316100001335144, 258771.913699999451637 ] ], [ [ 363065.880199998617172, 258760.562300000339746 ], [ 363057.543700002133846, 258792.580299999564886 ], [ 363056.712300002574921, 258795.528799999505281 ], [ 363045.960500001907349, 258827.104800000786781 ], [ 363045.944300003349781, 258829.00450000166893 ], [ 363022.980899997055531, 258874.201699998229742 ], [ 363004.864399999380112, 258918.383099999278784 ], [ 363000.008599996566772, 258920.454300001263618 ], [ 362997.589599996805191, 258920.434500001370907 ], [ 362992.76969999819994, 258918.284099999815226 ], [ 362986.583599999547005, 258887.2027000002563 ], [ 362980.544900000095367, 258838.812800001353025 ], [ 362979.779899999499321, 258833.951400000602007 ], [ 362978.280599996447563, 258820.640299998223782 ], [ 362975.130800001323223, 258811.748599998652935 ], [ 362974.337099999189377, 258810.264400001615286 ], [ 362968.764899998903275, 258801.775100000202656 ], [ 362964.763899996876717, 258798.1537000015378 ], [ 362950.350900001823902, 258786.214499998837709 ], [ 362934.303800001740456, 258776.795099999755621 ], [ 362911.034000001847744, 258763.305700000375509 ], [ 362909.455600000917912, 258759.282000001519918 ], [ 362908.699600003659725, 258753.365200001746416 ], [ 362917.689499996602535, 258739.295499999076128 ], [ 362920.148000001907349, 258734.671599999070168 ], [ 362924.247900001704693, 258726.683600001037121 ], [ 362939.036700002849102, 258694.50730000063777 ], [ 362944.792300000786781, 258681.466600000858307 ], [ 362948.120099999010563, 258669.461500000208616 ], [ 362951.410099998116493, 258661.88910000026226 ], [ 362952.234399996697903, 258659.78489999845624 ], [ 362962.133100003004074, 258633.69029999896884 ], [ 362962.95380000025034, 258632.008299998939037 ], [ 362967.037500001490116, 258625.920000001788139 ], [ 362968.662699997425079, 258624.455600000917912 ], [ 362973.534699998795986, 258620.484700001776218 ], [ 362984.875299997627735, 258614.455800000578165 ], [ 362992.148299999535084, 258612.615499999374151 ], [ 363002.641099996864796, 258611.434799998998642 ], [ 363022.010600000619888, 258609.482400000095367 ], [ 363029.263800002634525, 258609.964000001549721 ], [ 363039.706299997866154, 258614.693500000983477 ], [ 363050.109300002455711, 258624.066799998283386 ], [ 363054.875200003385544, 258632.549499999731779 ], [ 363055.652699999511242, 258635.933400001376867 ], [ 363053.858499996364117, 258657.239100001752377 ], [ 363056.027500003576279, 258686.598900001496077 ], [ 363061.394799999892712, 258719.151200000196695 ], [ 363062.170500002801418, 258722.746199999004602 ], [ 363065.269900001585484, 258737.548099998384714 ], [ 363066.853699997067451, 258740.938499998301268 ], [ 363067.600699998438358, 258747.910700000822544 ], [ 363065.880199998617172, 258760.562300000339746 ] ], [ [ 362873.594099998474121, 259182.653299998492002 ], [ 362834.761600002646446, 259197.534200001507998 ], [ 362821.839100003242493, 259199.961500000208616 ], [ 362811.353399999439716, 259200.297899998724461 ], [ 362804.119999997317791, 259197.494500000029802 ], [ 362800.919900000095367, 259194.513000000268221 ], [ 362796.189900003373623, 259181.808699999004602 ], [ 362796.251000002026558, 259174.631999999284744 ], [ 362798.711300000548363, 259169.796999998390675 ], [ 362800.336599998176098, 259168.332600001245737 ], [ 362833.582400001585484, 259146.651000000536442 ], [ 362848.176899999380112, 259137.271200001239777 ], [ 362896.717500001192093, 259118.670099999755621 ], [ 362889.921800002455711, 259159.144400000572205 ], [ 362887.427299998700619, 259167.989900000393391 ], [ 362883.34179999679327, 259174.289299998432398 ], [ 362878.460799999535084, 259179.315600000321865 ], [ 362873.594099998474121, 259182.653299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103101010500", "MAP": "D9-8928-T014", "PARCEL_NAM": "33", "ACRE": "23.53", "LONGITUDE": -64.8942549, "LATITUDE": 18.35994586, "OBJECTID_1": 6339, "PARCEL_NO_": "103101010500", "Tax_Legal_": "MANDAHL 33 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1992.5680115, "SHAPE_Area": 94493.533194999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362602.577799998223782, 259191.623100001364946 ], [ 362609.836400002241135, 259191.471400000154972 ], [ 362615.468000002205372, 259192.995200000703335 ], [ 362621.085199996829033, 259196.207499999552965 ], [ 362626.670100003480911, 259203.219300001859665 ], [ 362629.832400001585484, 259210.633499998599291 ], [ 362657.599500000476837, 259169.486400000751019 ], [ 362660.050800003111362, 259165.706799998879433 ], [ 362676.38740000128746, 259141.142499998211861 ], [ 362695.988899998366833, 259111.960999999195337 ], [ 362722.936999998986721, 259072.284800000488758 ], [ 362764.350299999117851, 259038.426600001752377 ], [ 362791.147399999201298, 259016.481100000441074 ], [ 362804.120300002396107, 259008.1435999982059 ], [ 362840.604000002145767, 258985.010800000280142 ], [ 362897.35869999974966, 258948.745000001043081 ], [ 362903.301399998366833, 258913.752099998295307 ], [ 362832.912399999797344, 258846.681600000709295 ], [ 362793.028300002217293, 258795.692699998617172 ], [ 362763.173199996352196, 258797.9814000017941 ], [ 362735.661399997770786, 258809.155299998819828 ], [ 362720.296499997377396, 258814.30689999833703 ], [ 362693.632500000298023, 258820.632599998265505 ], [ 362653.218000002205372, 258831.912000000476837 ], [ 362634.598999999463558, 258840.41440000012517 ], [ 362598.909100003540516, 258865.031300000846386 ], [ 362555.143500000238419, 258891.059799998998642 ], [ 362521.874300003051758, 258915.485500000417233 ], [ 362516.204899996519089, 258918.394400000572205 ], [ 362508.931900002062321, 258920.234700001776218 ], [ 362331.130300000309944, 259061.90089999884367 ], [ 362335.113300003111362, 259067.633000001311302 ], [ 362344.859200000762939, 259059.480200000107288 ], [ 362357.821299999952316, 259052.409099999815226 ], [ 362369.145700000226498, 259048.279899999499321 ], [ 362383.684500001370907, 259045.443599998950958 ], [ 362411.118900001049042, 259043.346099998801947 ], [ 362434.500100001692772, 259043.748500000685453 ], [ 362457.057099997997284, 259046.255199998617172 ], [ 362480.398800000548363, 259051.301399998366833 ], [ 362523.025499999523163, 259064.315900001674891 ], [ 362532.665299996733665, 259068.616599999368191 ], [ 362543.097000002861023, 259074.61259999871254 ], [ 362557.677599996328354, 259083.098600000143051 ], [ 362575.277099996805191, 259098.164900001138449 ], [ 362582.450199998915195, 259109.605399999767542 ], [ 362586.280000001192093, 259116.973700001835823 ], [ 362591.873800002038479, 259122.930100001394749 ], [ 362591.850500002503395, 259125.674100000411272 ], [ 362591.024400003254414, 259127.989399999380112 ], [ 362574.052299998700619, 259132.494500000029802 ], [ 362564.342299997806549, 259136.425799999386072 ], [ 362556.236100003123283, 259141.425700001418591 ], [ 362557.013599999248981, 259144.809599999338388 ], [ 362565.0929000005126, 259142.975900001823902 ], [ 362581.283900000154972, 259135.50899999961257 ], [ 362598.255999997258186, 259131.003899998962879 ], [ 362603.122699998319149, 259127.666200000792742 ], [ 362604.823399998247623, 259117.336500000208616 ], [ 362602.435000002384186, 259113.728399999439716 ], [ 362600.829599998891354, 259112.870900001376867 ], [ 362598.646200001239777, 259085.199799999594688 ], [ 362601.293499998748302, 259058.412500001490116 ], [ 362602.969099998474121, 259051.037999998778105 ], [ 362606.223099999129772, 259047.687100000679493 ], [ 362631.89919999986887, 259062.673799999058247 ], [ 362651.137500002980232, 259076.130199998617172 ], [ 362671.955899998545647, 259093.399099998176098 ], [ 362642.473700001835823, 259146.564500000327826 ], [ 362638.397200003266335, 259151.808499999344349 ], [ 362631.907200001180172, 259156.399399999529123 ], [ 362622.211599998176098, 259158.642099998891354 ], [ 362535.612499997019768, 259195.93019999936223 ], [ 362532.358499996364117, 259199.280999999493361 ], [ 362530.717100001871586, 259202.645100001245737 ], [ 362531.449699997901917, 259211.305900000035763 ], [ 362533.026299998164177, 259215.540699999779463 ], [ 362537.833700001239777, 259219.168600000441074 ], [ 362547.505800001323223, 259219.670000001788139 ], [ 362552.34910000115633, 259219.076299998909235 ], [ 362558.814000003039837, 259217.440499998629093 ], [ 362566.909500002861023, 259213.707100000232458 ], [ 362581.521999999880791, 259202.216499999165535 ], [ 362596.917400002479553, 259193.476599998772144 ], [ 362602.577799998223782, 259191.623100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103101013000", "MAP": "D9-6769-T000", "PARCEL_NAM": "34B-5", "ACRE": ".595", "LONGITUDE": -64.89889762, "LATITUDE": 18.36059639, "OBJECTID_1": 6360, "PARCEL_NO_": "103101013000", "Tax_Legal_": "34B-5 ESTATE MANDAHL NO.1 GREAT NORTHSIDE QTR.", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 70000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1124.06574507, "SHAPE_Area": 2714.4790765500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362229.61879999935627, 259035.721099998801947 ], [ 362229.61879999935627, 259033.472199998795986 ], [ 362231.074000000953674, 259033.604400001466274 ], [ 362231.603200003504753, 259035.588799998164177 ], [ 362232.529200002551079, 259040.483600001782179 ], [ 362231.89919999986887, 259049.301500000059605 ], [ 362231.867799997329712, 259055.564899999648333 ], [ 362231.470899999141693, 259060.327399998903275 ], [ 362231.074000000953674, 259064.825300000607967 ], [ 362230.809399999678135, 259071.307599999010563 ], [ 362230.04450000077486, 259095.903999999165535 ], [ 362229.918700002133846, 259110.679499998688698 ], [ 362231.486000001430511, 259113.247999999672174 ], [ 362232.132399998605251, 259090.040199998766184 ], [ 362232.44990000128746, 259073.741799999028444 ], [ 362232.661499999463558, 259060.724300000816584 ], [ 362233.212700001895428, 259051.115499999374151 ], [ 362233.08049999922514, 259046.683699999004602 ], [ 362233.344999998807907, 259043.244100000709295 ], [ 362233.411200001835823, 259040.862900000065565 ], [ 362233.411200001835823, 259039.209199998527765 ], [ 362233.411200001835823, 259037.092500001192093 ], [ 362232.94820000231266, 259035.041999999433756 ], [ 362233.798500001430511, 259033.873199999332428 ], [ 362219.817100003361702, 258971.275100000202656 ], [ 362208.686999998986721, 258952.607799999415874 ], [ 362206.031999997794628, 258949.3445999994874 ], [ 362200.47580000013113, 258945.508200000971556 ], [ 362195.713299997150898, 258944.449799999594688 ], [ 362189.230999998748302, 258944.714400000870228 ], [ 362176.927799999713898, 258946.96339999884367 ], [ 362166.810900002717972, 258946.143300000578165 ], [ 362083.022699996829033, 258937.436000000685453 ], [ 362075.785700000822544, 258935.054699998348951 ], [ 362074.178400002419949, 258934.408300001174212 ], [ 362072.755500003695488, 258933.035399999469519 ], [ 362072.025799997150898, 258932.331199999898672 ], [ 362070.207800000905991, 258930.576900001615286 ], [ 362067.780100002884865, 258928.234200000762939 ], [ 362067.290500000119209, 258927.538400001823902 ], [ 362066.620899997651577, 258926.586800001561642 ], [ 362065.558399997651577, 258925.076699998229742 ], [ 362064.2787000015378, 258923.25789999961853 ], [ 362063.228100001811981, 258921.764800000935793 ], [ 362062.52589999884367, 258920.766699999570847 ], [ 362061.818899996578693, 258919.761900000274181 ], [ 362061.100900001823902, 258918.741399999707937 ], [ 362060.609600000083447, 258918.043099999427795 ], [ 362060.327200002968311, 258917.246100001037121 ], [ 362060.150799997150898, 258916.747999999672174 ], [ 362059.865599997341633, 258915.942800000309944 ], [ 362059.5304000005126, 258914.996599998325109 ], [ 362059.034699998795986, 258913.597199998795986 ], [ 362058.737300001084805, 258911.358199998736382 ], [ 362058.277000002563, 258907.891499999910593 ], [ 362058.79619999974966, 258906.95890000090003 ], [ 362059.914800003170967, 258904.949599999934435 ], [ 362063.971500001847744, 258902.027499999850988 ], [ 362046.776799999177456, 258906.679900001734495 ], [ 362047.109300002455711, 258907.75620000064373 ], [ 362047.503799997270107, 258909.032699998468161 ], [ 362047.763899996876717, 258909.874499998986721 ], [ 362048.142899997532368, 258911.100999999791384 ], [ 362048.594400003552437, 258912.561999998986721 ], [ 362049.047399997711182, 258914.028200000524521 ], [ 362049.346400000154972, 258914.995600000023842 ], [ 362050.261399999260902, 258916.830299999564886 ], [ 362051.768399998545647, 258919.739000000059605 ], [ 362053.313199996948242, 258922.627399999648333 ], [ 362054.13570000231266, 258923.393699999898672 ], [ 362054.91330000013113, 258924.118099998682737 ], [ 362055.205200001597404, 258924.847699999809265 ], [ 362059.241300001740456, 258934.933200001716614 ], [ 362065.726800002157688, 258933.624800000339746 ], [ 362067.472999997437, 258933.386700000613928 ], [ 362068.628200002014637, 258934.215399999171495 ], [ 362071.124300003051758, 258936.006099998950958 ], [ 362073.123700000345707, 258937.59180000051856 ], [ 362078.666799999773502, 258941.997499998658895 ], [ 362080.942900002002716, 258940.351399999111891 ], [ 362082.398100003600121, 258939.689899999648333 ], [ 362121.387699998915195, 258944.609700001776218 ], [ 362160.847199998795986, 258949.082600001245737 ], [ 362176.432700000703335, 258952.554900001734495 ], [ 362194.986800000071526, 258951.651299998164177 ], [ 362200.602300003170967, 258955.074700001627207 ], [ 362206.201499998569489, 258960.397900000214577 ], [ 362213.362999998033047, 258971.644499998539686 ], [ 362221.916000001132488, 259008.866900000721216 ], [ 362225.816299997270107, 259024.308699999004602 ], [ 362227.654700003564358, 259029.780699998140335 ], [ 362226.72860000282526, 259037.585900001227856 ], [ 362222.389600001275539, 259047.923099998384714 ], [ 362216.639300003647804, 259060.330600000917912 ], [ 362202.768399998545647, 259079.426600001752377 ], [ 362201.933300003409386, 259082.797200001776218 ], [ 362200.308100000023842, 259084.261599998921156 ], [ 362197.838799998164177, 259090.151999998837709 ], [ 362196.195600003004074, 259093.727099999785423 ], [ 362193.746100001037121, 259097.295699998736382 ], [ 362190.438100002706051, 259106.978900000452995 ], [ 362186.311300002038479, 259118.133099999278784 ], [ 362178.870999999344349, 259139.603700000792742 ], [ 362178.046700000762939, 259141.707899998873472 ], [ 362169.047799997031689, 259156.833000000566244 ], [ 362167.404600001871586, 259160.40819999948144 ], [ 362163.329899996519089, 259165.440999999642372 ], [ 362157.635399997234344, 259171.305100001394749 ], [ 362147.89130000025034, 259179.246899999678135 ], [ 362130.075099997222424, 259188.178100001066923 ], [ 362121.189499996602535, 259190.005199998617172 ], [ 362121.947200000286102, 259195.710900001227856 ], [ 362123.51129999756813, 259201.423200000077486 ], [ 362130.778899997472763, 259200.2162000015378 ], [ 362130.804099999368191, 259197.261100001633167 ], [ 362132.440099999308586, 259194.530200000852346 ], [ 362140.539200000464916, 259190.374600000679493 ], [ 362152.695000000298023, 259183.296999998390675 ], [ 362159.194099999964237, 259177.650600001215935 ], [ 362168.135399997234344, 259169.280099999159575 ], [ 362175.471400000154972, 259160.052000001072884 ], [ 362185.316100001335144, 259140.289799999445677 ], [ 362186.993500001728535, 259132.704100001603365 ], [ 362197.725500002503395, 259103.449999999254942 ], [ 362210.014399997889996, 259080.752399999648333 ], [ 362214.112499997019768, 259072.975499998778105 ], [ 362221.68129999935627, 259057.549300000071526 ], [ 362226.576099999248981, 259047.230500001460314 ], [ 362229.221900001168251, 259039.557599999010563 ], [ 362229.61879999935627, 259035.721099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101015200", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-57", "ACRE": null, "LONGITUDE": -64.89263985, "LATITUDE": 18.36180997, "OBJECTID_1": 6362, "PARCEL_NO_": "103101015200", "Tax_Legal_": "MANDAHL ESTATE 37-57 GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS, INC.", "Address": "2625 Middlefield Rd", "City": "Palo Alto", "State": "California", "Zip": 94306, "Country": "United States", "Land_Value": 164800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.01558108399999, "SHAPE_Area": 2347.15897245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362873.594099998474121, 259182.653299998492002 ], [ 362847.934199996292591, 259165.7668999992311 ], [ 362833.582400001585484, 259146.651000000536442 ], [ 362800.336599998176098, 259168.332600001245737 ], [ 362798.711300000548363, 259169.796999998390675 ], [ 362796.251000002026558, 259174.631999999284744 ], [ 362796.189900003373623, 259181.808699999004602 ], [ 362800.919900000095367, 259194.513000000268221 ], [ 362804.119999997317791, 259197.494500000029802 ], [ 362811.353399999439716, 259200.297899998724461 ], [ 362821.839100003242493, 259199.961500000208616 ], [ 362834.761600002646446, 259197.534200001507998 ], [ 362873.594099998474121, 259182.653299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89896412, "LATITUDE": 18.36147701, "OBJECTID_1": 6346, "PARCEL_NO_": "103101011300", "Tax_Legal_": "MANDAHL 34E GREAT NORTHSIDE QTR", "Name": "ROSENTHAL WILDGEN FAMILY TRUST", "Address": "4126 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94200, "Improved_V": 228200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.84024932199998, "SHAPE_Area": 3306.5341295899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362197.838799998164177, 259090.151999998837709 ], [ 362177.850000001490116, 259070.145599998533726 ], [ 362157.226499997079372, 259124.649999998509884 ], [ 362118.178199999034405, 259164.860399998724461 ], [ 362130.075099997222424, 259188.178100001066923 ], [ 362147.89130000025034, 259179.246899999678135 ], [ 362157.635399997234344, 259171.305100001394749 ], [ 362163.329899996519089, 259165.440999999642372 ], [ 362167.404600001871586, 259160.40819999948144 ], [ 362169.047799997031689, 259156.833000000566244 ], [ 362178.046700000762939, 259141.707899998873472 ], [ 362178.870999999344349, 259139.603700000792742 ], [ 362186.311300002038479, 259118.133099999278784 ], [ 362190.438100002706051, 259106.978900000452995 ], [ 362193.746100001037121, 259097.295699998736382 ], [ 362196.195600003004074, 259093.727099999785423 ], [ 362197.838799998164177, 259090.151999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-21", "ACRE": null, "LONGITUDE": -64.89326761, "LATITUDE": 18.3616646, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.683936058, "SHAPE_Area": 1945.47058354 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362790.700400002300739, 259163.609700001776218 ], [ 362758.742799997329712, 259128.728799998760223 ], [ 362737.602399997413158, 259149.242899999022484 ], [ 362731.094400003552437, 259155.944699998944998 ], [ 362768.676399998366833, 259193.193599998950958 ], [ 362785.756399996578693, 259176.023699998855591 ], [ 362786.593299999833107, 259172.44200000166893 ], [ 362787.42119999974966, 259169.915699999779463 ], [ 362788.241899996995926, 259168.233600001782179 ], [ 362790.700400002300739, 259163.609700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101015100", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-26", "ACRE": null, "LONGITUDE": -64.8914543, "LATITUDE": 18.36157903, "OBJECTID_1": 6361, "PARCEL_NO_": "103101015100", "Tax_Legal_": "MANDAHL ESTATE 37-26 GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "2625 Middlefield Rd", "City": "Palo Alto", "State": "California", "Zip": 94306, "Country": "United States", "Land_Value": 716700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.41309263800002, "SHAPE_Area": 5251.9236864499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362892.978000000119209, 259179.012200001627207 ], [ 362905.119400002062321, 259173.623199999332428 ], [ 362910.050800003111362, 259162.686700001358986 ], [ 363015.417000003159046, 259194.157600000500679 ], [ 363015.51410000026226, 259182.759399998933077 ], [ 363011.590400002896786, 259170.061599999666214 ], [ 363009.189499996602535, 259167.931000001728535 ], [ 363007.637999996542931, 259160.741200000047684 ], [ 363009.288400001823902, 259156.321699999272823 ], [ 362935.470899999141693, 259113.07660000026226 ], [ 362908.016699999570847, 259117.495999999344349 ], [ 362900.385799996554852, 259161.340999998152256 ], [ 362897.06530000269413, 259172.501800000667572 ], [ 362892.978000000119209, 259179.012200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89402797, "LATITUDE": 18.36181594, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.494701371, "SHAPE_Area": 228.927472279 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362705.053199999034405, 259183.807000000029802 ], [ 362660.050800003111362, 259165.706799998879433 ], [ 362657.599500000476837, 259169.486400000751019 ], [ 362703.401000000536442, 259188.4375 ], [ 362705.053199999034405, 259183.807000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89850892, "LATITUDE": 18.36143308, "OBJECTID_1": 6343, "PARCEL_NO_": "103101010900", "Tax_Legal_": "MANDAHL 34I 1 GR NORTHSIDE", "Name": "DEAN, JUDITH A", "Address": "4585 S Lake Dr", "City": "Boynton Beach", "State": "Florida", "Zip": 33436, "Country": "United States", "Land_Value": 88100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.73702970299999, "SHAPE_Area": 2559.58104998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362229.918700002133846, 259110.679499998688698 ], [ 362210.014399997889996, 259080.752399999648333 ], [ 362197.725500002503395, 259103.449999999254942 ], [ 362186.993500001728535, 259132.704100001603365 ], [ 362185.316100001335144, 259140.289799999445677 ], [ 362208.344999998807907, 259182.063700001686811 ], [ 362211.611599996685982, 259177.235300000756979 ], [ 362214.071900002658367, 259172.400199998170137 ], [ 362216.541199997067451, 259166.509799998253584 ], [ 362221.486900001764297, 259153.884700000286102 ], [ 362223.968800000846386, 259146.516699999570847 ], [ 362225.631800003349781, 259140.619699999690056 ], [ 362226.47580000013113, 259136.19370000064373 ], [ 362229.918700002133846, 259110.679499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010400", "MAP": "D9-6769-T000", "PARCEL_NAM": "34A", "ACRE": null, "LONGITUDE": -64.89781707, "LATITUDE": 18.36135457, "OBJECTID_1": 6338, "PARCEL_NO_": "103101010400", "Tax_Legal_": "MANDAHL ESTATE 34a GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "2625 Middlefield Rd", "City": "Palo Alto", "State": "California", "Zip": 94306, "Country": "United States", "Land_Value": 134900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.75529192499999, "SHAPE_Area": 2753.3581943099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362331.130300000309944, 259061.90089999884367 ], [ 362243.447999998927116, 259131.688499998301268 ], [ 362276.892300002276897, 259181.3581000007689 ], [ 362279.462300002574921, 259163.647300001233816 ], [ 362291.896799996495247, 259123.852400001138449 ], [ 362304.160599999129772, 259104.109999999403954 ], [ 362315.574799999594688, 259089.426899999380112 ], [ 362322.89639999717474, 259081.88740000128746 ], [ 362327.797200001776218, 259074.539200000464916 ], [ 362335.113300003111362, 259067.633000001311302 ], [ 362331.130300000309944, 259061.90089999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-17", "ACRE": null, "LONGITUDE": -64.89395631, "LATITUDE": 18.36167898, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.99696956099999, "SHAPE_Area": 1349.74710815 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362718.188000001013279, 259156.472300000488758 ], [ 362676.38740000128746, 259141.142499998211861 ], [ 362660.050800003111362, 259165.706799998879433 ], [ 362705.053199999034405, 259183.807000000029802 ], [ 362710.825099997222424, 259168.866599999368191 ], [ 362712.468299999833107, 259165.291400000452995 ], [ 362713.2871999964118, 259163.820500001311302 ], [ 362718.188000001013279, 259156.472300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101015300", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-58", "ACRE": ".59", "LONGITUDE": -64.8922578, "LATITUDE": 18.36156343, "OBJECTID_1": 6363, "PARCEL_NO_": "103101015300", "Tax_Legal_": "37-58 MANDAHL ESTATE GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS, INC.", "Address": "2625 Middlefield Rd", "City": "Palo Alto", "State": "California", "Zip": 94306, "Country": "United States", "Land_Value": 133000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.600079386, "SHAPE_Area": 2223.4208178600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362833.582400001585484, 259146.651000000536442 ], [ 362847.934199996292591, 259165.7668999992311 ], [ 362873.594099998474121, 259182.653299998492002 ], [ 362878.460799999535084, 259179.315600000321865 ], [ 362883.34179999679327, 259174.289299998432398 ], [ 362887.427299998700619, 259167.989900000393391 ], [ 362889.921800002455711, 259159.144400000572205 ], [ 362896.717500001192093, 259118.670099999755621 ], [ 362848.176899999380112, 259137.271200001239777 ], [ 362833.582400001585484, 259146.651000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.899127, "LATITUDE": 18.3612606, "OBJECTID_1": 6347, "PARCEL_NO_": "103101011400", "Tax_Legal_": "MANDAHL 34D GR NORTHSIDE QTR", "Name": "JONATHAN GULA LIVING REVOCABLE TRUST", "Address": "34D Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89800, "Improved_V": 573300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.040400928, "SHAPE_Area": 2893.8636672600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362177.850000001490116, 259070.145599998533726 ], [ 362157.861199997365475, 259050.139199998229742 ], [ 362155.329000003635883, 259063.417399998754263 ], [ 362152.008500002324581, 259074.578200001269579 ], [ 362150.379600003361702, 259076.464699998497963 ], [ 362149.544600002467632, 259079.835299998521805 ], [ 362147.917599998414516, 259081.510800000280142 ], [ 362146.267200000584126, 259085.93019999936223 ], [ 362144.641999997198582, 259087.394600000232458 ], [ 362133.994499996304512, 259106.728000000119209 ], [ 362127.473800003528595, 259114.907299999147654 ], [ 362104.701099999248981, 259137.730099998414516 ], [ 362118.178199999034405, 259164.860399998724461 ], [ 362157.226499997079372, 259124.649999998509884 ], [ 362177.850000001490116, 259070.145599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101011800", "MAP": "D9-554-T65", "PARCEL_NAM": "34J-3", "ACRE": ".78", "LONGITUDE": -64.8996658, "LATITUDE": 18.36132094, "OBJECTID_1": 6351, "PARCEL_NO_": "103101011800", "Tax_Legal_": "MANDAHL 34J-3 GR NORTHSIDE", "Name": "JEAN-PIERRE & ANITA L. CHAMBAS", "Address": "PO Box 9121", "City": "Columbia", "State": "South Carolina", "Zip": 29290, "Country": "United States", "Land_Value": 87200, "Improved_V": 184000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.48583147299999, "SHAPE_Area": 3005.8467403300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362122.668300002813339, 259111.068300001323223 ], [ 362105.188400000333786, 259080.527800001204014 ], [ 362096.682599999010563, 259083.600099999457598 ], [ 362061.499200001358986, 259096.308699999004602 ], [ 362060.621799997985363, 259105.916400000452995 ], [ 362065.767899997532368, 259164.431499999016523 ], [ 362091.708400003612041, 259148.389600001275539 ], [ 362086.949600003659725, 259139.0625 ], [ 362097.456900000572205, 259136.193199999630451 ], [ 362122.668300002813339, 259111.068300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89314078, "LATITUDE": 18.36151308, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.605757521, "SHAPE_Area": 204.67496518600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362793.149899996817112, 259160.04109999909997 ], [ 362761.994999997317791, 259125.589000001549721 ], [ 362758.742799997329712, 259128.728799998760223 ], [ 362790.700400002300739, 259163.609700001776218 ], [ 362793.149899996817112, 259160.04109999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-56", "ACRE": null, "LONGITUDE": -64.89295455, "LATITUDE": 18.36137098, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.503259095, "SHAPE_Area": 2245.7989024600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362839.365000002086163, 259130.444099999964237 ], [ 362822.439699999988079, 259129.461199998855591 ], [ 362797.719099998474121, 259096.961599998176098 ], [ 362791.247000001370907, 259099.441700000315905 ], [ 362786.387599997222424, 259101.935100000351667 ], [ 362761.994999997317791, 259125.589000001549721 ], [ 362793.149899996817112, 259160.04109999909997 ], [ 362813.426399998366833, 259146.274900000542402 ], [ 362839.365000002086163, 259130.444099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-16", "ACRE": null, "LONGITUDE": -64.89378209, "LATITUDE": 18.36142935, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.768465214, "SHAPE_Area": 1584.9681655700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362742.605700001120567, 259129.863299999386072 ], [ 362695.988899998366833, 259111.960999999195337 ], [ 362676.38740000128746, 259141.142499998211861 ], [ 362718.188000001013279, 259156.472300000488758 ], [ 362721.45099999755621, 259152.066100001335144 ], [ 362725.522100001573563, 259147.455299999564886 ], [ 362742.605700001120567, 259129.863299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-27", "ACRE": null, "LONGITUDE": -64.8911186, "LATITUDE": 18.36120082, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 385.47653621500001, "SHAPE_Area": 6830.2469001299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363071.762800000607967, 259111.236800000071526 ], [ 362948.747699998319149, 259069.066799998283386 ], [ 362908.876900002360344, 259111.170200001448393 ], [ 362908.016699999570847, 259117.495999999344349 ], [ 362935.470899999141693, 259113.07660000026226 ], [ 363009.288400001823902, 259156.321699999272823 ], [ 363013.354099996387959, 259152.344200000166893 ], [ 363037.651399999856949, 259139.877500001341105 ], [ 363056.309799998998642, 259126.731300000101328 ], [ 363071.762800000607967, 259111.236800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101011100", "MAP": "D9-6769-T000", "PARCEL_NAM": "34 REM", "ACRE": null, "LONGITUDE": -64.8972797, "LATITUDE": 18.36011437, "OBJECTID_1": 6344, "PARCEL_NO_": "103101011100", "Tax_Legal_": "MANDAHL ESTATE 34 REM. GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS, INC", "Address": "1750 Valley View Ln", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 543000, "Improved_V": 75400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 808.06258405000005, "SHAPE_Area": 30613.141673400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362339.085900001227856, 258885.280699998140335 ], [ 362325.391199998557568, 258883.690999999642372 ], [ 362318.425999999046326, 258883.886399999260902 ], [ 362232.794699996709824, 259029.379099998623133 ], [ 362233.798500001430511, 259033.873199999332428 ], [ 362234.381300002336502, 259039.028400000184774 ], [ 362234.318800002336502, 259046.216699998825788 ], [ 362234.248999997973442, 259054.241999998688698 ], [ 362233.85530000180006, 259079.866799999028444 ], [ 362233.296800002455711, 259116.215399999171495 ], [ 362235.485500000417233, 259119.802099999040365 ], [ 362243.447999998927116, 259131.688499998301268 ], [ 362331.130300000309944, 259061.90089999884367 ], [ 362508.931900002062321, 258920.234700001776218 ], [ 362498.45160000026226, 258919.937800001353025 ], [ 362408.310099996626377, 258899.779500000178814 ], [ 362372.083599999547005, 258892.728000000119209 ], [ 362339.085900001227856, 258885.280699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-15", "ACRE": null, "LONGITUDE": -64.89353985, "LATITUDE": 18.36113758, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.49345688700001, "SHAPE_Area": 2411.0757885100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362775.127999998629093, 259098.465399999171495 ], [ 362722.936999998986721, 259072.284800000488758 ], [ 362695.988899998366833, 259111.960999999195337 ], [ 362742.605700001120567, 259129.863299999386072 ], [ 362775.127999998629093, 259098.465399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-55", "ACRE": null, "LONGITUDE": -64.89253748, "LATITUDE": 18.36118509, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.04719264400001, "SHAPE_Area": 2225.1212609200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362887.106499999761581, 259110.99210000038147 ], [ 362855.035599999129772, 259089.409099999815226 ], [ 362804.189400002360344, 259094.692499998956919 ], [ 362797.719099998474121, 259096.961599998176098 ], [ 362822.439699999988079, 259129.461199998855591 ], [ 362839.365000002086163, 259130.444099999964237 ], [ 362844.228100001811981, 259127.528599999845028 ], [ 362887.106499999761581, 259110.99210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101011900", "MAP": "D9-554-T65", "PARCEL_NAM": "34J-2", "ACRE": ".75", "LONGITUDE": -64.89925544, "LATITUDE": 18.36079792, "OBJECTID_1": 6352, "PARCEL_NO_": "103101011900", "Tax_Legal_": "MANDAHL 34J-2 GR NORTHSIDE", "Name": "JOHNSON, SCOTT H", "Address": "PO Box 566", "City": "Onset", "State": "Massachusetts", "Zip": 2558, "Country": "United States", "Land_Value": 84600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.41042974499999, "SHAPE_Area": 2664.5658768799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362151.021899998188019, 259017.973700001835823 ], [ 362122.109700001776218, 259019.3429000005126 ], [ 362119.204999998211861, 259044.334399998188019 ], [ 362110.144900001585484, 259066.636199999600649 ], [ 362106.817199997603893, 259078.64130000025034 ], [ 362105.188400000333786, 259080.527800001204014 ], [ 362122.668300002813339, 259111.068300001323223 ], [ 362125.934900000691414, 259106.239900000393391 ], [ 362127.556500002741814, 259105.197700001299381 ], [ 362128.382600001990795, 259102.882399998605251 ], [ 362130.006099998950958, 259101.629099998623133 ], [ 362133.283500000834465, 259095.534299999475479 ], [ 362135.72580000013113, 259092.809999998658895 ], [ 362141.48139999806881, 259079.769299998879433 ], [ 362143.108400002121925, 259078.093899998813868 ], [ 362148.06139999628067, 259064.624499998986721 ], [ 362149.69200000166893, 259062.526900000870228 ], [ 362150.546899996697903, 259056.834300000220537 ], [ 362151.594099998474121, 259028.556400001049042 ], [ 362151.021899998188019, 259017.973700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101012000", "MAP": "G9-714-T63", "PARCEL_NAM": "34J", "ACRE": "3.11", "LONGITUDE": -64.89966167, "LATITUDE": 18.36056275, "OBJECTID_1": 6353, "PARCEL_NO_": "103101012000", "Tax_Legal_": "MANDAHL 34J & POR.OF 34BA. GR NORTHSIDE QTR", "Name": "NELTHROPP, GLEN A. & YVONNE", "Address": "PO Box 305375", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 139100, "Improved_V": 408700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.52642644700001, "SHAPE_Area": 4668.2163309899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362096.682599999010563, 259083.600099999457598 ], [ 362099.571199998259544, 259077.315400000661612 ], [ 362100.397299997508526, 259075.000100001692772 ], [ 362101.218000002205372, 259073.31810000166297 ], [ 362105.3412000015378, 259062.586100000888109 ], [ 362107.812299996614456, 259056.484600000083447 ], [ 362108.636600002646446, 259054.380399998277426 ], [ 362109.457299999892712, 259052.698399998247623 ], [ 362113.586000002920628, 259041.333099998533726 ], [ 362114.514600001275539, 259026.986299999058247 ], [ 362116.269199997186661, 259010.324299998581409 ], [ 362113.906099997460842, 259003.761100001633167 ], [ 362112.309600003063679, 259001.848200000822544 ], [ 362111.533900000154972, 258998.253199998289347 ], [ 362109.935599997639656, 258996.551399998366833 ], [ 362105.967000000178814, 258989.13060000166297 ], [ 362102.799300000071526, 258982.349700000137091 ], [ 362070.642099998891354, 258970.898600000888109 ], [ 362071.410700000822544, 258975.337799999862909 ], [ 362071.293799996376038, 258989.057900000363588 ], [ 362061.499200001358986, 259096.308699999004602 ], [ 362096.682599999010563, 259083.600099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37F", "ACRE": null, "LONGITUDE": -64.89206875000001, "LATITUDE": 18.36105539, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.58115935199999, "SHAPE_Area": 931.80119734200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362855.035599999129772, 259089.409099999815226 ], [ 362887.106499999761581, 259110.99210000038147 ], [ 362898.432599999010563, 259106.651799999177456 ], [ 362919.589199997484684, 259084.237900000065565 ], [ 362917.199000000953674, 259080.840900000184774 ], [ 362893.774599999189377, 259085.504299998283386 ], [ 362855.035599999129772, 259089.409099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-28", "ACRE": null, "LONGITUDE": -64.8908525, "LATITUDE": 18.36080212, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 385.983295785, "SHAPE_Area": 5697.8622619500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363054.53999999910593, 259050.511999998241663 ], [ 362983.019199997186661, 259021.640099998563528 ], [ 362978.922899998724461, 259029.206000000238419 ], [ 362976.480599999427795, 259031.93019999936223 ], [ 362973.996899999678135, 259039.509199999272823 ], [ 362969.079899996519089, 259048.757100000977516 ], [ 362963.370999999344349, 259056.30970000103116 ], [ 362948.747699998319149, 259069.066799998283386 ], [ 363071.762800000607967, 259111.236800000071526 ], [ 363077.461000002920628, 259104.950699999928474 ], [ 363079.964400000870228, 259095.049699999392033 ], [ 363076.88120000064373, 259078.348099999129772 ], [ 363077.710900001227856, 259075.610700000077486 ], [ 363080.963100001215935, 259072.470899999141693 ], [ 363083.417999997735023, 259068.269099999219179 ], [ 363052.765600003302097, 259069.495900001376867 ], [ 363043.111400000751019, 259066.883799999952316 ], [ 363035.897699996829033, 259061.758499998599291 ], [ 363054.53999999910593, 259050.511999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-14", "ACRE": null, "LONGITUDE": -64.89323767, "LATITUDE": 18.36085037, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.91281829100001, "SHAPE_Area": 2465.7097156899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362817.194700002670288, 259082.555500000715256 ], [ 362799.524099998176098, 259074.389299999922514 ], [ 362764.350299999117851, 259038.426600001752377 ], [ 362722.936999998986721, 259072.284800000488758 ], [ 362775.127999998629093, 259098.465399999171495 ], [ 362781.630599997937679, 259092.396899998188019 ], [ 362790.541400000452995, 259087.614700000733137 ], [ 362801.052199997007847, 259084.32319999858737 ], [ 362817.194700002670288, 259082.555500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101011500", "MAP": "D9-6769-T000", "PARCEL_NAM": "34C REM", "ACRE": null, "LONGITUDE": -64.89870895, "LATITUDE": 18.3606804, "OBJECTID_1": 6348, "PARCEL_NO_": "103101011500", "Tax_Legal_": "ESTATE MANDAHL 34C REM. NO.1 GREAT NORTHSIDE QTR.", "Name": "MANDAHL BAY HOLDINGS, INC", "Address": "1750 Valley View Ln", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 90700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.546445777, "SHAPE_Area": 3047.1531746000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362191.550200000405312, 259023.974399998784065 ], [ 362156.738399997353554, 259010.701200000941753 ], [ 362156.538099996745586, 259016.142299998551607 ], [ 362157.861199997365475, 259050.139199998229742 ], [ 362177.850000001490116, 259070.145599998533726 ], [ 362197.838799998164177, 259090.151999998837709 ], [ 362200.308100000023842, 259084.261599998921156 ], [ 362201.933300003409386, 259082.797200001776218 ], [ 362202.768399998545647, 259079.426600001752377 ], [ 362216.639300003647804, 259060.330600000917912 ], [ 362222.389600001275539, 259047.923099998384714 ], [ 362226.72860000282526, 259037.585900001227856 ], [ 362224.100599996745586, 259036.385299999266863 ], [ 362222.430200003087521, 259035.748399998992682 ], [ 362216.005699999630451, 259033.298900000751019 ], [ 362193.640100002288818, 259024.771200001239777 ], [ 362191.550200000405312, 259023.974399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-13", "ACRE": null, "LONGITUDE": -64.89283673, "LATITUDE": 18.36066127, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.89186093900003, "SHAPE_Area": 3355.1236925399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362868.040899999439716, 259077.272100001573563 ], [ 362847.146899998188019, 259068.868500001728535 ], [ 362804.120300002396107, 259008.1435999982059 ], [ 362791.147399999201298, 259016.481100000441074 ], [ 362764.350299999117851, 259038.426600001752377 ], [ 362799.524099998176098, 259074.389299999922514 ], [ 362817.194700002670288, 259082.555500000715256 ], [ 362868.040899999439716, 259077.272100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-12", "ACRE": null, "LONGITUDE": -64.89246953, "LATITUDE": 18.36051706, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.04785023400001, "SHAPE_Area": 3633.1619904600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362902.757299996912479, 259072.278900001198053 ], [ 362884.294799998402596, 259062.417500000447035 ], [ 362840.604000002145767, 258985.010800000280142 ], [ 362804.120300002396107, 259008.1435999982059 ], [ 362847.146899998188019, 259068.868500001728535 ], [ 362868.040899999439716, 259077.272100001573563 ], [ 362890.642800003290176, 259074.501800000667572 ], [ 362902.757299996912479, 259072.278900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-11", "ACRE": null, "LONGITUDE": -64.89208171, "LATITUDE": 18.36041503, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.84618704899998, "SHAPE_Area": 4644.5310224100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362948.861000001430511, 259055.768800001591444 ], [ 362928.721100002527237, 259053.493000000715256 ], [ 362885.068000003695488, 258971.653599999845028 ], [ 362840.604000002145767, 258985.010800000280142 ], [ 362884.294799998402596, 259062.417500000447035 ], [ 362902.757299996912479, 259072.278900001198053 ], [ 362915.678099997341633, 259070.062699999660254 ], [ 362937.507799997925758, 259063.275199998170137 ], [ 362943.184399999678135, 259059.521999999880791 ], [ 362948.861000001430511, 259055.768800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-10", "ACRE": null, "LONGITUDE": -64.89169936, "LATITUDE": 18.3602735, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.908232172, "SHAPE_Area": 4125.1490215100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362977.481100000441074, 259009.140299998223782 ], [ 362953.255800001323223, 259013.163899999111891 ], [ 362925.486199997365475, 258959.952100001275539 ], [ 362885.068000003695488, 258971.653599999845028 ], [ 362928.721100002527237, 259053.493000000715256 ], [ 362948.861000001430511, 259055.768800001591444 ], [ 362956.184299997985363, 259048.018300000578165 ], [ 362961.900399997830391, 259039.621300000697374 ], [ 362962.731899999082088, 259036.672800000756979 ], [ 362966.025499999523163, 259028.678199999034405 ], [ 362968.482199996709824, 259024.265299998223782 ], [ 362970.116400003433228, 259021.745600000023842 ], [ 362973.38120000064373, 259017.128299999982119 ], [ 362975.017200000584126, 259014.397399999201298 ], [ 362977.481100000441074, 259009.140299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-29", "ACRE": null, "LONGITUDE": -64.89073319000001, "LATITUDE": 18.36032765, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.99763844699999, "SHAPE_Area": 4175.9507421400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363059.001400001347065, 259000.097199998795986 ], [ 362997.127499997615814, 258974.681699998676777 ], [ 362994.613300003111362, 258985.84910000115633 ], [ 362992.914300002157688, 258995.967700000852346 ], [ 362986.294799998402596, 259015.756299998611212 ], [ 362983.019199997186661, 259021.640099998563528 ], [ 363054.53999999910593, 259050.511999998241663 ], [ 363073.988600000739098, 259039.272100001573563 ], [ 363077.237300001084805, 259036.554499998688698 ], [ 363080.503899998962879, 259031.726100001484156 ], [ 363082.228000000119209, 259018.652399998158216 ], [ 363071.004299998283386, 259010.961199998855591 ], [ 363059.725000001490116, 259009.813400000333786 ], [ 363057.331200003623962, 259006.838500000536442 ], [ 363057.36540000140667, 259002.828000001609325 ], [ 363059.001400001347065, 259000.097199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101011600", "MAP": "D9-6769-T000", "PARCEL_NAM": "34B-1", "ACRE": ".57", "LONGITUDE": -64.8985928, "LATITUDE": 18.36021409, "OBJECTID_1": 6349, "PARCEL_NO_": "103101011600", "Tax_Legal_": "MANDAHL 34B-1-STAGE #1 MANDAHL INN", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 176400, "Improved_V": 218600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.56122960799999, "SHAPE_Area": 2678.2138346199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362200.602300003170967, 258955.074700001627207 ], [ 362194.986800000071526, 258951.651299998164177 ], [ 362182.305699996650219, 258952.268899999558926 ], [ 362183.373199999332428, 258953.834100000560284 ], [ 362183.479099996387959, 258958.067499998956919 ], [ 362182.086300000548363, 258979.26410000026226 ], [ 362180.092399999499321, 259009.608399998396635 ], [ 362180.524800002574921, 259019.770500000566244 ], [ 362191.550200000405312, 259023.974399998784065 ], [ 362193.640100002288818, 259024.771200001239777 ], [ 362216.005699999630451, 259033.298900000751019 ], [ 362222.430200003087521, 259035.748399998992682 ], [ 362224.100599996745586, 259036.385299999266863 ], [ 362226.72860000282526, 259037.585900001227856 ], [ 362227.654700003564358, 259029.780699998140335 ], [ 362225.816299997270107, 259024.308699999004602 ], [ 362221.916000001132488, 259008.866900000721216 ], [ 362213.362999998033047, 258971.644499998539686 ], [ 362206.201499998569489, 258960.397900000214577 ], [ 362200.602300003170967, 258955.074700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101011700", "MAP": "D9-6769-T000", "PARCEL_NAM": "34B", "ACRE": null, "LONGITUDE": -64.89864278, "LATITUDE": 18.35956416, "OBJECTID_1": 6350, "PARCEL_NO_": "103101011700", "Tax_Legal_": "MANDAHL 34B REM.(34B,A&B NO.1 GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS, INC", "Address": "1750 Valley View Ln", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 202700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 826.51049525799999, "SHAPE_Area": 14384.8933223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362318.425999999046326, 258883.886399999260902 ], [ 362272.964699998497963, 258885.161699999123812 ], [ 362218.140799999237061, 258884.079700000584126 ], [ 362169.733300000429153, 258887.061099998652935 ], [ 362143.121399998664856, 258887.265399999916553 ], [ 362116.489699997007847, 258889.791700001806021 ], [ 362106.799599997699261, 258891.401099998503923 ], [ 362063.971500001847744, 258902.027499999850988 ], [ 362059.914800003170967, 258904.949599999934435 ], [ 362058.277000002563, 258907.891499999910593 ], [ 362059.034699998795986, 258913.597199998795986 ], [ 362060.609600000083447, 258918.043099999427795 ], [ 362067.780100002884865, 258928.234200000762939 ], [ 362074.178400002419949, 258934.408300001174212 ], [ 362075.785700000822544, 258935.054699998348951 ], [ 362083.022699996829033, 258937.436000000685453 ], [ 362166.810900002717972, 258946.143300000578165 ], [ 362176.927799999713898, 258946.96339999884367 ], [ 362204.984700001776218, 258926.590399999171495 ], [ 362251.683799996972084, 258926.855000000447035 ], [ 362264.383799999952316, 258935.718600001186132 ], [ 362267.823399998247623, 258941.27479999884963 ], [ 362265.045299999415874, 258948.947700001299381 ], [ 362258.695299997925758, 258953.313400000333786 ], [ 362225.886900000274181, 258952.254999998956919 ], [ 362206.031999997794628, 258949.3445999994874 ], [ 362208.686999998986721, 258952.607799999415874 ], [ 362219.817100003361702, 258971.275100000202656 ], [ 362232.794699996709824, 259029.379099998623133 ], [ 362318.425999999046326, 258883.886399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101012300", "MAP": "D9-6769-T000", "PARCEL_NAM": "34b-2", "ACRE": ".510", "LONGITUDE": -64.89901531, "LATITUDE": 18.36000592, "OBJECTID_1": 6355, "PARCEL_NO_": "103101012300", "Tax_Legal_": "MANDAHL ESTATE 34b-2 GT. NORTHSIDE", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "2625 Middlefield Rd", "City": "Palo Alto", "State": "California", "Zip": 94306, "Country": "United States", "Land_Value": 57500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.68600324300002, "SHAPE_Area": 2498.6696824700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362183.373199999332428, 258953.834100000560284 ], [ 362182.305699996650219, 258952.268899999558926 ], [ 362176.432700000703335, 258952.554900001734495 ], [ 362160.847199998795986, 258949.082600001245737 ], [ 362124.334700003266335, 258944.981600001454353 ], [ 362082.398100003600121, 258939.689899999648333 ], [ 362087.557499997317791, 258942.467999998480082 ], [ 362108.724200002849102, 258950.273299999535084 ], [ 362123.937799997627735, 258957.020199999213219 ], [ 362137.431599996984005, 258964.29619999974966 ], [ 362146.427400000393391, 258969.190999999642372 ], [ 362153.571199998259544, 258975.408700000494719 ], [ 362157.143100000917912, 258981.361900001764297 ], [ 362157.587200000882149, 258987.653299998492002 ], [ 362156.738399997353554, 259010.701200000941753 ], [ 362180.524800002574921, 259019.770500000566244 ], [ 362180.092399999499321, 259009.608399998396635 ], [ 362182.086300000548363, 258979.26410000026226 ], [ 362183.479099996387959, 258958.067499998956919 ], [ 362183.373199999332428, 258953.834100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101012200", "MAP": "D9-554-T65", "PARCEL_NAM": "34J-1", "ACRE": ".75", "LONGITUDE": -64.89923393, "LATITUDE": 18.36029943, "OBJECTID_1": 6354, "PARCEL_NO_": "103101012200", "Tax_Legal_": "MANDAHL 34BA & 34J-1 GR NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS 2 INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 84600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.077373862, "SHAPE_Area": 807.66354586900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362151.039599999785423, 258998.998700000345707 ], [ 362111.64360000193119, 258985.377399999648333 ], [ 362112.428300000727177, 258987.916900001466274 ], [ 362117.971799999475479, 258999.783599998801947 ], [ 362119.5574000030756, 259002.962900001555681 ], [ 362121.148500002920628, 259005.509100001305342 ], [ 362121.935000002384186, 259007.837499998509884 ], [ 362122.685599997639656, 259014.387600000947714 ], [ 362122.109700001776218, 259019.3429000005126 ], [ 362151.021899998188019, 259017.973700001835823 ], [ 362150.89750000089407, 259015.6739999987185 ], [ 362150.204499997198582, 259002.36939999833703 ], [ 362151.039599999785423, 258998.998700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-9", "ACRE": null, "LONGITUDE": -64.89142439, "LATITUDE": 18.36005431, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.98645982599999, "SHAPE_Area": 2029.1287361899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362986.66160000115633, 258972.696199998259544 ], [ 362933.570900000631809, 258957.485100001096725 ], [ 362925.486199997365475, 258959.952100001275539 ], [ 362953.255800001323223, 259013.163899999111891 ], [ 362977.481100000441074, 259009.140299998223782 ], [ 362979.946800000965595, 259003.671999998390675 ], [ 362981.602600000798702, 258998.619300000369549 ], [ 362986.66160000115633, 258972.696199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101012200", "MAP": null, "PARCEL_NAM": "34BA", "ACRE": null, "LONGITUDE": -64.89939013, "LATITUDE": 18.35999283, "OBJECTID_1": 6354, "PARCEL_NO_": "103101012200", "Tax_Legal_": "MANDAHL 34BA & 34J-1 GR NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS 2 INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 84600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.84272515800001, "SHAPE_Area": 1660.1126894199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362151.039599999785423, 258998.998700000345707 ], [ 362152.166299998760223, 258986.726799998432398 ], [ 362151.293200001120567, 258982.043699998408556 ], [ 362149.308799996972084, 258977.99549999833107 ], [ 362146.054399996995926, 258975.296799998730421 ], [ 362133.671899996697903, 258966.327399998903275 ], [ 362122.321199998259544, 258960.453600000590086 ], [ 362112.081799998879433, 258955.929200001060963 ], [ 362101.128100000321865, 258951.64299999922514 ], [ 362090.412399999797344, 258947.356699999421835 ], [ 362084.697400003671646, 258945.769200000911951 ], [ 362080.014300003647804, 258943.070500001311302 ], [ 362075.728000000119209, 258939.657299999147654 ], [ 362071.124300003051758, 258936.006099998950958 ], [ 362067.472999997437, 258933.386700000613928 ], [ 362065.726800002157688, 258933.624800000339746 ], [ 362065.296400003135204, 258935.813299998641014 ], [ 362070.076700001955032, 258942.607400000095367 ], [ 362079.671599999070168, 258952.185100000351667 ], [ 362091.697899997234344, 258960.305100001394749 ], [ 362098.897200003266335, 258967.118999999016523 ], [ 362108.46509999781847, 258979.863000001758337 ], [ 362111.64360000193119, 258985.377399999648333 ], [ 362151.039599999785423, 258998.998700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-30", "ACRE": null, "LONGITUDE": -64.89068533, "LATITUDE": 18.35984997, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.26578145899998, "SHAPE_Area": 3801.5798960799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363081.233900003135204, 258946.028099998831749 ], [ 363013.685300000011921, 258924.154800001531839 ], [ 363006.281000003218651, 258941.403900001198053 ], [ 363005.456799998879433, 258943.508000001311302 ], [ 363002.123599998652935, 258956.14640000090003 ], [ 362997.987800002098083, 258968.355900000780821 ], [ 362997.127499997615814, 258974.681699998676777 ], [ 363059.001400001347065, 259000.097199998795986 ], [ 363063.063500002026558, 258996.541799999773502 ], [ 363072.764399997889996, 258993.665899999439716 ], [ 363077.63289999961853, 258990.117199998348951 ], [ 363077.686800003051758, 258983.784800000488758 ], [ 363076.898500002920628, 258981.667399998754263 ], [ 363072.85249999910593, 258983.322999998927116 ], [ 363067.211900003254414, 258982.854699999094009 ], [ 363064.810999996960163, 258980.72410000115633 ], [ 363063.232500001788139, 258976.700399998575449 ], [ 363063.263099998235703, 258973.112100001424551 ], [ 363064.906300000846386, 258969.536899998784065 ], [ 363070.593599997460842, 258964.517200000584126 ], [ 363074.641400001943111, 258962.650499999523163 ], [ 363075.471100002527237, 258959.913100000470877 ], [ 363064.22410000115633, 258954.965900000184774 ], [ 363063.430299997329712, 258953.481699999421835 ], [ 363064.272600002586842, 258949.266800001263618 ], [ 363066.716700002551079, 258946.331500001251698 ], [ 363069.952799998223782, 258945.091400001198053 ], [ 363081.233900003135204, 258946.028099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101012000", "MAP": "G9-714-T63", "PARCEL_NAM": "34BA", "ACRE": null, "LONGITUDE": -64.89974082000001, "LATITUDE": 18.35995015, "OBJECTID_1": 6353, "PARCEL_NO_": "103101012000", "Tax_Legal_": "MANDAHL 34J & POR.OF 34BA. GR NORTHSIDE QTR", "Name": "NELTHROPP, GLEN A. & YVONNE", "Address": "PO Box 305375", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 139100, "Improved_V": 408700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.282898442, "SHAPE_Area": 424.668380152 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362102.799300000071526, 258982.349700000137091 ], [ 362090.029600001871586, 258966.835400000214577 ], [ 362077.205899998545647, 258957.653400000184774 ], [ 362069.211099997162819, 258949.566399998962879 ], [ 362059.652199998497963, 258935.767099998891354 ], [ 362069.914899997413158, 258961.604499999433756 ], [ 362070.642099998891354, 258970.898600000888109 ], [ 362102.799300000071526, 258982.349700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37E GREENBELT", "ACRE": null, "LONGITUDE": -64.8917231, "LATITUDE": 18.3598191, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.22233803500001, "SHAPE_Area": 2218.82052789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362840.604000002145767, 258985.010800000280142 ], [ 362885.068000003695488, 258971.653599999845028 ], [ 362925.486199997365475, 258959.952100001275539 ], [ 362933.570900000631809, 258957.485100001096725 ], [ 362986.66160000115633, 258972.696199998259544 ], [ 362987.638800002634525, 258952.650299999862909 ], [ 362939.360699996352196, 258940.434000000357628 ], [ 362897.35869999974966, 258948.745000001043081 ], [ 362840.604000002145767, 258985.010800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-8", "ACRE": null, "LONGITUDE": -64.89137098, "LATITUDE": 18.35959339, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.295171251, "SHAPE_Area": 1240.4727107799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362981.495700001716614, 258916.502999998629093 ], [ 362939.517099998891354, 258922.070099998265505 ], [ 362939.360699996352196, 258940.434000000357628 ], [ 362987.638800002634525, 258952.650299999862909 ], [ 362987.692699998617172, 258946.317999999970198 ], [ 362981.495700001716614, 258916.502999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37 REM", "ACRE": null, "LONGITUDE": -64.89224629, "LATITUDE": 18.35884384, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 513.95336042899999, "SHAPE_Area": 10682.8100772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362897.35869999974966, 258948.745000001043081 ], [ 362939.360699996352196, 258940.434000000357628 ], [ 362939.517099998891354, 258922.070099998265505 ], [ 362938.944600000977516, 258894.623199999332428 ], [ 362937.358900003135204, 258891.443900000303984 ], [ 362925.499799996614456, 258863.693500000983477 ], [ 362904.722699999809265, 258841.56980000063777 ], [ 362902.327200002968311, 258838.805900000035763 ], [ 362871.193899996578693, 258801.820900000631809 ], [ 362837.663199998438358, 258762.282999999821186 ], [ 362801.2550999969244, 258776.550500001758337 ], [ 362793.028300002217293, 258795.692699998617172 ], [ 362832.912399999797344, 258846.681600000709295 ], [ 362903.301399998366833, 258913.752099998295307 ], [ 362897.35869999974966, 258948.745000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-31", "ACRE": null, "LONGITUDE": -64.89045373, "LATITUDE": 18.35947885, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.10867414500001, "SHAPE_Area": 3070.2010754200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363105.669699996709824, 258917.308299999684095 ], [ 363027.674900002777576, 258891.127599999308586 ], [ 363013.685300000011921, 258924.154800001531839 ], [ 363081.233900003135204, 258946.028099998831749 ], [ 363093.306999996304512, 258948.660000000149012 ], [ 363099.757500000298023, 258948.712799999862909 ], [ 363103.798100002110004, 258947.690400000661612 ], [ 363110.284599997103214, 258943.521600000560284 ], [ 363105.471900001168251, 258940.526900000870228 ], [ 363103.877199999988079, 258938.402899999171495 ], [ 363103.13740000128746, 258930.586399998515844 ], [ 363101.557199999690056, 258926.773800000548363 ], [ 363102.385099999606609, 258924.247499998658895 ], [ 363105.637299999594688, 258921.107700001448393 ], [ 363105.669699996709824, 258917.308299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-7", "ACRE": null, "LONGITUDE": -64.89142552, "LATITUDE": 18.35934204, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.589723986, "SHAPE_Area": 1125.8365176899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362976.094300001859665, 258887.961199998855591 ], [ 362938.944600000977516, 258894.623199999332428 ], [ 362939.517099998891354, 258922.070099998265505 ], [ 362981.495700001716614, 258916.502999998629093 ], [ 362976.094300001859665, 258887.961199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-49", "ACRE": null, "LONGITUDE": -64.89104132, "LATITUDE": 18.35906684, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.01276700599999, "SHAPE_Area": 2226.6526300099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363022.980899997055531, 258874.201699998229742 ], [ 363018.170000001788139, 258870.995900001376867 ], [ 363015.778099998831749, 258867.809900000691414 ], [ 363012.687700003385544, 258851.952599998563528 ], [ 363011.978500001132488, 258840.547800000756979 ], [ 362980.544900000095367, 258838.812800001353025 ], [ 362986.583599999547005, 258887.2027000002563 ], [ 362992.76969999819994, 258918.284099999815226 ], [ 362997.589599996805191, 258920.434500001370907 ], [ 363000.008599996566772, 258920.454300001263618 ], [ 363004.864399999380112, 258918.383099999278784 ], [ 363022.980899997055531, 258874.201699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101029900", "MAP": "D9-5174-T74", "PARCEL_NAM": "20-D", "ACRE": null, "LONGITUDE": -64.89615364, "LATITUDE": 18.35900349, "OBJECTID_1": 6424, "PARCEL_NO_": "103101029900", "Tax_Legal_": "20D MANDAHL REMAINDER GT. NORTHSIDE", "Name": "WALWYN, PAUL & BRENDA", "Address": "PO Box 302644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57400, "Improved_V": 353900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.52561765199999, "SHAPE_Area": 3958.25642982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362477.195500001311302, 258859.391100000590086 ], [ 362447.822300001978874, 258805.110800001770258 ], [ 362420.2871999964118, 258819.0287000015378 ], [ 362431.37950000166893, 258842.128600001335144 ], [ 362452.628499999642372, 258903.51969999819994 ], [ 362500.114600002765656, 258914.040800001472235 ], [ 362506.563299998641014, 258914.304699998348951 ], [ 362477.195500001311302, 258859.391100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024700", "MAP": "F9-3986-T80", "PARCEL_NAM": "21B-B", "ACRE": null, "LONGITUDE": -64.89571296, "LATITUDE": 18.35914001, "OBJECTID_1": 6411, "PARCEL_NO_": "103101024700", "Tax_Legal_": "MANDAHL 21B-B GT. NORTHSIDE", "Name": "LEDEE, GREGORY & EVELYN", "Address": "6005 St Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.00686503700001, "SHAPE_Area": 2070.1477274200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362534.926299996674061, 258897.860399998724461 ], [ 362505.554899998009205, 258843.368999999016523 ], [ 362477.195500001311302, 258859.391100000590086 ], [ 362506.563299998641014, 258914.304699998348951 ], [ 362516.26240000128746, 258911.639899998903275 ], [ 362534.926299996674061, 258897.860399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-32", "ACRE": null, "LONGITUDE": -64.89029473, "LATITUDE": 18.35916903, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.13691077599998, "SHAPE_Area": 3421.3410504100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363122.906099997460842, 258881.774500001221895 ], [ 363044.094300001859665, 258856.853700000792742 ], [ 363036.720600001513958, 258870.514499999582767 ], [ 363027.674900002777576, 258891.127599999308586 ], [ 363105.669699996709824, 258917.308299999684095 ], [ 363105.6858000010252, 258915.408599998801947 ], [ 363096.962099999189377, 258898.238600000739098 ], [ 363114.614600002765656, 258908.515500001609325 ], [ 363118.633599996566772, 258910.026099998503923 ], [ 363121.858900003135204, 258910.052499998360872 ], [ 363125.901199996471405, 258908.818999998271465 ], [ 363128.336300000548363, 258906.939100001007318 ], [ 363129.98309999704361, 258902.941799998283386 ], [ 363130.841600000858307, 258896.827100001275539 ], [ 363127.693599998950958, 258887.724300000816584 ], [ 363122.906099997460842, 258881.774500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101020100", "MAP": "D9-5320-T92", "PARCEL_NAM": "20D-2", "ACRE": ".56", "LONGITUDE": -64.89652969, "LATITUDE": 18.35893302, "OBJECTID_1": 6368, "PARCEL_NO_": "103101020100", "Tax_Legal_": "20D-2 ESTATE MANDAHL No.1 GREAT NORTHSIDE QUARTER", "Name": "HARRIS, MICHAEL W. & LYNELLE E", "Address": "3723 SE 17th Ave", "City": "Cape Coral", "State": "Florida", "Zip": 33904, "Country": "United States", "Land_Value": 60200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.72200794, "SHAPE_Area": 2499.0674457700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362420.2871999964118, 258819.0287000015378 ], [ 362381.612899996340275, 258815.334600001573563 ], [ 362395.142200000584126, 258836.343600001186132 ], [ 362427.677799999713898, 258898.038100000470877 ], [ 362452.628499999642372, 258903.51969999819994 ], [ 362431.37950000166893, 258842.128600001335144 ], [ 362420.2871999964118, 258819.0287000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89954372, "LATITUDE": 18.35906552, "OBJECTID_1": 6369, "PARCEL_NO_": "103101020200", "Tax_Legal_": "MANDAHL 19-A-1 GT. NORTHSIDE", "Name": "RIVERS, CLIVE & VERNA", "Address": "PO Box 308473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.418037269, "SHAPE_Area": 2824.1677625799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362132.295100003480911, 258832.925799999386072 ], [ 362121.789700001478195, 258835.583999998867512 ], [ 362112.922100000083447, 258835.300299998372793 ], [ 362110.494099996984005, 258836.335900001227856 ], [ 362054.4324000030756, 258885.906300000846386 ], [ 362053.613499999046326, 258887.377199999988079 ], [ 362053.574000000953674, 258892.021000001579523 ], [ 362054.344300001859665, 258896.249099999666214 ], [ 362057.558799996972084, 258897.541999999433756 ], [ 362107.659800000488758, 258885.075399998575449 ], [ 362135.104999996721745, 258881.711399998515844 ], [ 362132.295100003480911, 258832.925799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101020400", "MAP": "D9-5320-T92", "PARCEL_NAM": "2D-1", "ACRE": null, "LONGITUDE": -64.89680707, "LATITUDE": 18.35892366, "OBJECTID_1": 6371, "PARCEL_NO_": "103101020400", "Tax_Legal_": "MANDAHL 20D-1 GREAT NORTHSIDE", "Name": "LIMA, DAVID & PATRICIA", "Address": "30 Turnpike Rd", "City": "Southborough", "State": "Massachusetts", "Zip": 1772, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.21751213900001, "SHAPE_Area": 2191.4239478600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362381.612899996340275, 258815.334600001573563 ], [ 362354.219899997115135, 258812.577300000935793 ], [ 362397.894500002264977, 258891.883799999952316 ], [ 362427.677799999713898, 258898.038100000470877 ], [ 362395.142200000584126, 258836.343600001186132 ], [ 362381.612899996340275, 258815.334600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023400", "MAP": "D9-5174-T91", "PARCEL_NAM": "20E", "ACRE": null, "LONGITUDE": -64.89717184, "LATITUDE": 18.35889499, "OBJECTID_1": 6398, "PARCEL_NO_": "103101023400", "Tax_Legal_": "MANDAHL 20E GREAT NORTHSIDE", "Name": "HILAIRE, ANNA & FRANCIS, ALCEDO", "Address": "PO Box 305037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.78955897399999, "SHAPE_Area": 3585.2508440900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362354.219899997115135, 258812.577300000935793 ], [ 362348.665600001811981, 258801.977200001478195 ], [ 362337.328699998557568, 258807.58390000090003 ], [ 362323.579999998211861, 258812.326499998569489 ], [ 362327.860399998724461, 258877.800599999725819 ], [ 362343.164200000464916, 258879.825699999928474 ], [ 362397.894500002264977, 258891.883799999952316 ], [ 362354.219899997115135, 258812.577300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37P", "ACRE": null, "LONGITUDE": -64.89144832, "LATITUDE": 18.35919862, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.341175058900006, "SHAPE_Area": 131.22924690100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362975.316799998283386, 258884.577300000935793 ], [ 362937.358900003135204, 258891.443900000303984 ], [ 362938.944600000977516, 258894.623199999332428 ], [ 362976.094300001859665, 258887.961199998855591 ], [ 362975.316799998283386, 258884.577300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-6", "ACRE": null, "LONGITUDE": -64.89148687, "LATITUDE": 18.35900399, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.97371176799999, "SHAPE_Area": 1672.7147663600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362969.265500001609325, 258837.665100000798702 ], [ 362925.499799996614456, 258863.693500000983477 ], [ 362937.358900003135204, 258891.443900000303984 ], [ 362975.316799998283386, 258884.577300000935793 ], [ 362969.265500001609325, 258837.665100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89904692, "LATITUDE": 18.35893527, "OBJECTID_1": 6414, "PARCEL_NO_": "103101025000", "Tax_Legal_": "MANDAHL 19-A REM GT. NORTHSIDE QTR.", "Name": "HANRY, JUNIOR R", "Address": "6542 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50500, "Improved_V": 82800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.06674233699999, "SHAPE_Area": 2139.4223033200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362174.626900002360344, 258880.557199999690056 ], [ 362170.339299999177456, 258815.927499998360872 ], [ 362161.424900002777576, 258821.131900001317263 ], [ 362154.106899999082088, 258828.249200001358986 ], [ 362145.214100003242493, 258830.9206000007689 ], [ 362132.295100003480911, 258832.925799999386072 ], [ 362135.104999996721745, 258881.711399998515844 ], [ 362174.626900002360344, 258880.557199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89869515, "LATITUDE": 18.35887296, "OBJECTID_1": 6415, "PARCEL_NO_": "103101025100", "Tax_Legal_": "MANDAHL 19-B-1 GR. NORTHSIDE QTR.", "Name": "ZOPPO, JAMES & SANDRA", "Address": "630 S Main St", "City": "Sharon", "State": "Massachusetts", "Zip": 2067, "Country": "United States", "Land_Value": 68700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.574064835, "SHAPE_Area": 2470.5614456600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362174.626900002360344, 258880.557199999690056 ], [ 362212.545199997723103, 258878.334399998188019 ], [ 362209.038699999451637, 258816.666400000452995 ], [ 362191.317800000309944, 258814.410399999469519 ], [ 362175.189699999988079, 258814.489500001072884 ], [ 362170.339299999177456, 258815.927499998360872 ], [ 362174.626900002360344, 258880.557199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89797467, "LATITUDE": 18.35889844, "OBJECTID_1": 6370, "PARCEL_NO_": "103101020300", "Tax_Legal_": "MANDAHL 19C-1 GT.NORTHSIDE QTR.", "Name": "THOMAS, CECIL V", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.519426815, "SHAPE_Area": 2088.0182156599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362288.342100001871586, 258878.532600000500679 ], [ 362283.187100000679493, 258821.072999998927116 ], [ 362267.048199996352196, 258822.418499998748302 ], [ 362246.888599999248981, 258822.464600000530481 ], [ 362251.248199999332428, 258878.651200000196695 ], [ 362273.015000000596046, 258879.251499999314547 ], [ 362288.342100001871586, 258878.532600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89833301, "LATITUDE": 18.35889074, "OBJECTID_1": 6416, "PARCEL_NO_": "103101025200", "Tax_Legal_": "MANDAHL 19-B REM GT. NORTHSIDE QTR.", "Name": "YEARWOOD, ELVIS & CANDY CARTER", "Address": "PO Box 644", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 67900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.18545729, "SHAPE_Area": 2221.9717437499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362246.888599999248981, 258822.464600000530481 ], [ 362225.940700002014637, 258820.393300000578165 ], [ 362209.038699999451637, 258816.666400000452995 ], [ 362212.545199997723103, 258878.334399998188019 ], [ 362251.248199999332428, 258878.651200000196695 ], [ 362246.888599999248981, 258822.464600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89760938000001, "LATITUDE": 18.35886611, "OBJECTID_1": 6413, "PARCEL_NO_": "103101024900", "Tax_Legal_": "MANDAHL 19C-2 GT.NORTHSIDE QTR.", "Name": "VICTOR C. SAMUEL SR. TRUSTEE", "Address": "9175 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.25955791800001, "SHAPE_Area": 2439.15504723 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362323.579999998211861, 258812.326499998569489 ], [ 362304.988099999725819, 258817.662799999117851 ], [ 362283.187100000679493, 258821.072999998927116 ], [ 362288.342100001871586, 258878.532600000500679 ], [ 362311.736000001430511, 258877.457499999552965 ], [ 362327.860399998724461, 258877.800599999725819 ], [ 362323.579999998211861, 258812.326499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-33", "ACRE": null, "LONGITUDE": -64.89020291, "LATITUDE": 18.35884865, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.41947271500001, "SHAPE_Area": 2741.4438952199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363134.500200003385544, 258845.983500000089407 ], [ 363058.879399999976158, 258825.099599998444319 ], [ 363053.933700002729893, 258837.724700000137091 ], [ 363051.469800002872944, 258842.981899999082088 ], [ 363044.094300001859665, 258856.853700000792742 ], [ 363122.906099997460842, 258881.774500001221895 ], [ 363116.487999998033047, 258877.9222999997437 ], [ 363115.705099999904633, 258875.171700000762939 ], [ 363118.151000000536442, 258872.025299999862909 ], [ 363121.376199997961521, 258872.051699999719858 ], [ 363126.228500001132488, 258870.402699999511242 ], [ 363123.053599998354912, 258864.466099999845028 ], [ 363123.901199996471405, 258859.617800001055002 ], [ 363127.983199998736382, 258853.740600001066923 ], [ 363132.032700002193451, 258851.662799999117851 ], [ 363134.500200003385544, 258845.983500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-50", "ACRE": null, "LONGITUDE": -64.89073563, "LATITUDE": 18.35849295, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.364181008, "SHAPE_Area": 3258.61656834 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363065.880199998617172, 258760.562300000339746 ], [ 363010.018100000917912, 258786.702899999916553 ], [ 363012.345299996435642, 258797.487700000405312 ], [ 363013.810500003397465, 258814.809300001710653 ], [ 363012.039599999785423, 258833.371100001037121 ], [ 363012.01799999922514, 258835.903999999165535 ], [ 363011.978500001132488, 258840.547800000756979 ], [ 363012.687700003385544, 258851.952599998563528 ], [ 363015.778099998831749, 258867.809900000691414 ], [ 363018.170000001788139, 258870.995900001376867 ], [ 363022.980899997055531, 258874.201699998229742 ], [ 363045.944300003349781, 258829.00450000166893 ], [ 363045.960500001907349, 258827.104800000786781 ], [ 363056.712300002574921, 258795.528799999505281 ], [ 363057.543700002133846, 258792.580299999564886 ], [ 363065.880199998617172, 258760.562300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-5", "ACRE": null, "LONGITUDE": -64.89162095, "LATITUDE": 18.35867121, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.677318353, "SHAPE_Area": 2406.1377080500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362943.826700001955032, 258794.815900001674891 ], [ 362904.722699999809265, 258841.56980000063777 ], [ 362925.499799996614456, 258863.693500000983477 ], [ 362969.265500001609325, 258837.665100000798702 ], [ 362967.782300002872944, 258822.454199999570847 ], [ 362965.417300000786781, 258816.102000001817942 ], [ 362962.228000000119209, 258811.853999998420477 ], [ 362959.029799997806549, 258808.661499999463558 ], [ 362943.826700001955032, 258794.815900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-34", "ACRE": null, "LONGITUDE": -64.89004916, "LATITUDE": 18.35852042, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.49805652399999, "SHAPE_Area": 3576.4828295900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363151.783399999141693, 258804.96169999986887 ], [ 363070.507700003683567, 258785.298099998384714 ], [ 363058.897399999201298, 258822.988800000399351 ], [ 363058.879399999976158, 258825.099599998444319 ], [ 363134.500200003385544, 258845.983500000089407 ], [ 363138.587499998509884, 258839.473099999129772 ], [ 363144.281999997794628, 258833.609000001102686 ], [ 363151.580200001597404, 258828.8136 ], [ 363153.223399996757507, 258825.238499999046326 ], [ 363154.089000001549721, 258818.279500000178814 ], [ 363152.499799996614456, 258815.522300001233816 ], [ 363142.820500001311302, 258815.865200001746416 ], [ 363138.794299997389317, 258815.199000000953674 ], [ 363138.82490000128746, 258811.610700000077486 ], [ 363142.867200002074242, 258810.377199999988079 ], [ 363148.549199998378754, 258805.990699999034405 ], [ 363151.783399999141693, 258804.96169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37N", "ACRE": null, "LONGITUDE": -64.89177145, "LATITUDE": 18.35853576, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.86904267899999, "SHAPE_Area": 247.140308745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362939.814900003373623, 258792.461100000888109 ], [ 362902.327200002968311, 258838.805900000035763 ], [ 362904.722699999809265, 258841.56980000063777 ], [ 362943.826700001955032, 258794.815900001674891 ], [ 362939.814900003373623, 258792.461100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37M", "ACRE": null, "LONGITUDE": -64.89108346, "LATITUDE": 18.35872273, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.343815263500005, "SHAPE_Area": 150.63422229700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363012.01799999922514, 258835.903999999165535 ], [ 362979.779899999499321, 258833.951400000602007 ], [ 362980.544900000095367, 258838.812800001353025 ], [ 363011.978500001132488, 258840.547800000756979 ], [ 363012.01799999922514, 258835.903999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": "37-4", "ACRE": null, "LONGITUDE": -64.89194939, "LATITUDE": 18.35841711, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.576770697, "SHAPE_Area": 2268.1807760199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362905.316100001335144, 258771.913699999451637 ], [ 362871.193899996578693, 258801.820900000631809 ], [ 362902.327200002968311, 258838.805900000035763 ], [ 362939.814900003373623, 258792.461100000888109 ], [ 362906.914399996399879, 258773.615600001066923 ], [ 362905.316100001335144, 258771.913699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010400", "MAP": "D9-1540-T80", "PARCEL_NAM": "4DA-3", "ACRE": null, "LONGITUDE": -65.02605879, "LATITUDE": 18.3426319, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.983037407, "SHAPE_Area": 904.80082609500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348762.780199997127056, 256930.685100000351667 ], [ 348734.629399999976158, 256922.221999999135733 ], [ 348728.763999998569489, 256948.1385000012815 ], [ 348726.986599996685982, 256954.877700001001358 ], [ 348756.344300001859665, 256958.420699998736382 ], [ 348757.764300003647804, 256951.542300000786781 ], [ 348762.780199997127056, 256930.685100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02634876, "LATITUDE": 18.34258343, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.568820082, "SHAPE_Area": 1195.32708766 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348734.629399999976158, 256922.221999999135733 ], [ 348707.286700002849102, 256913.554499998688698 ], [ 348693.318599998950958, 256944.048700001090765 ], [ 348690.473399996757507, 256950.471099998801947 ], [ 348726.986599996685982, 256954.877700001001358 ], [ 348728.763999998569489, 256948.1385000012815 ], [ 348734.629399999976158, 256922.221999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99413883, "LATITUDE": 18.36013589, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1329.91070489, "SHAPE_Area": 6609.6603118399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351983.3074000030756, 258836.620600000023842 ], [ 351984.034599997103214, 258845.914700001478195 ], [ 351992.02929999679327, 258854.001600001007318 ], [ 352003.244000002741814, 258862.7483000010252 ], [ 352024.901100002229214, 258876.224399998784065 ], [ 352037.710400000214577, 258887.094999998807907 ], [ 352038.480800002813339, 258891.32319999858737 ], [ 352044.031499996781349, 258902.345499999821186 ], [ 352051.270300000905991, 258904.515700001269579 ], [ 352057.684799998998642, 258908.790100000798702 ], [ 352060.062399998307228, 258913.664700001478195 ], [ 352066.437399998307228, 258922.582800000905991 ], [ 352076.024999998509884, 258933.004799999296665 ], [ 352096.053400002419949, 258948.367499999701977 ], [ 352107.291400000452995, 258954.370099999010563 ], [ 352116.132100000977516, 258957.819899998605251 ], [ 352136.2449000030756, 258963.261900000274181 ], [ 352149.133299998939037, 258964.844999998807907 ], [ 352166.87219999730587, 258964.990200001746416 ], [ 352183.019299998879433, 258963.500500001013279 ], [ 352202.422899998724461, 258964.6418999992311 ], [ 352219.543799996376038, 258973.772999998182058 ], [ 352220.114399999380112, 258987.469700001180172 ], [ 352213.266099996864796, 259003.449099998921156 ], [ 352199.569499999284744, 259021.711300000548363 ], [ 352185.872800000011921, 259030.842399999499321 ], [ 352158.479500003159046, 259035.978700000792742 ], [ 352151.060500003397465, 259039.973499998450279 ], [ 352151.060500003397465, 259047.963199999183416 ], [ 352156.196699999272823, 259053.670200001448393 ], [ 352167.610600002110004, 259056.523600000888109 ], [ 352169.893399998545647, 259048.534000001847744 ], [ 352176.170999996364117, 259046.821899998933077 ], [ 352183.019299998879433, 259043.397700000554323 ], [ 352191.579700000584126, 259037.690799999982119 ], [ 352203.564300000667572, 259029.130399998277426 ], [ 352213.266099996864796, 259020.569899998605251 ], [ 352224.679999999701977, 259010.868099998682737 ], [ 352234.381800003349781, 258989.752500001341105 ], [ 352232.669699996709824, 258978.909299999475479 ], [ 352230.957599997520447, 258968.636799998581409 ], [ 352219.543799996376038, 258958.934999998658895 ], [ 352206.41780000180006, 258950.945300001651049 ], [ 352183.590000003576279, 258951.515999998897314 ], [ 352166.949500001966953, 258955.913800001144409 ], [ 352151.62780000269413, 258955.999499998986721 ], [ 352135.515900000929832, 258954.178899999707937 ], [ 352120.230200000107288, 258950.043000001460314 ], [ 352103.362300001084805, 258942.305599998682737 ], [ 352082.531300000846386, 258926.514199998229742 ], [ 352068.955200001597404, 258910.993200000375509 ], [ 352064.988399997353554, 258903.361400000751019 ], [ 352053.017800003290176, 258888.697999998927116 ], [ 352038.620999999344349, 258874.859099999070168 ], [ 352002.53660000115633, 258851.13230000063777 ], [ 351992.135399997234344, 258841.548000000417233 ], [ 351992.156999997794628, 258839.015000000596046 ], [ 351993.776799999177456, 258838.183899998664856 ], [ 352030.9121999964118, 258833.210499998182058 ], [ 352044.615900002419949, 258833.744899999350309 ], [ 352053.472699999809265, 258835.295000001788139 ], [ 352059.098899997770786, 258837.451999999582767 ], [ 352069.546800002455711, 258841.548300001770258 ], [ 352074.364900000393391, 258843.909699998795986 ], [ 352078.392899997532368, 258844.364900000393391 ], [ 352083.236199997365475, 258843.771299999207258 ], [ 352086.477600000798702, 258841.897999998182058 ], [ 352088.934299997985363, 258837.485100001096725 ], [ 352089.771200001239777, 258833.903299998492002 ], [ 352089.814300000667572, 258828.837499998509884 ], [ 352087.436800003051758, 258823.962900001555681 ], [ 352081.052799999713898, 258816.100099999457598 ], [ 352061.829000003635883, 258800.955200001597404 ], [ 352046.640299998223782, 258785.421000000089407 ], [ 352021.892800003290176, 258756.087600000202656 ], [ 352009.178800001740456, 258734.029800001531839 ], [ 352006.014600001275539, 258726.826699998229742 ], [ 351997.913800001144409, 258731.193399999290705 ], [ 352005.037500001490116, 258746.872600000351667 ], [ 352013.793700002133846, 258760.243099998682737 ], [ 352018.577600002288818, 258766.615100000053644 ], [ 352020.971400000154972, 258769.589999999850988 ], [ 352048.128799997270107, 258799.998700000345707 ], [ 352060.925499998033047, 258812.346799999475479 ], [ 352076.141199998557568, 258824.714800000190735 ], [ 352077.741200000047684, 258826.20549999922514 ], [ 352080.923299998044968, 258831.297800000756979 ], [ 352080.896300002932549, 258834.464000001549721 ], [ 352078.468400001525879, 258835.499600000679493 ], [ 352064.012299999594688, 258828.626299999654293 ], [ 352052.752700001001358, 258825.156599998474121 ], [ 352043.892300002276897, 258824.028599999845028 ], [ 352033.408399999141693, 258824.153900001198053 ], [ 351989.005500003695488, 258830.334399998188019 ], [ 351984.945200003683567, 258833.678700000047684 ], [ 351983.3074000030756, 258836.620600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97248731000001, "LATITUDE": 18.35140727, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1575.7404128799999, "SHAPE_Area": 7302.3411411400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354348.112800002098083, 258016.878499999642372 ], [ 354366.918700002133846, 257986.423900000751019 ], [ 354373.205600000917912, 258005.684799998998642 ], [ 354377.931999996304512, 258018.811299998313189 ], [ 354379.503300003707409, 258023.679299999028444 ], [ 354381.070900000631809, 258028.969500001519918 ], [ 354385.76860000193119, 258045.473200000822544 ], [ 354390.164599999785423, 258060.837200000882149 ], [ 354409.150399997830391, 258056.919399999082088 ], [ 354408.372299998998642, 258042.491799999028444 ], [ 354415.805299997329712, 258021.865499999374151 ], [ 354423.175399996340275, 258008.626899998635054 ], [ 354430.549099996685982, 257994.9662000015378 ], [ 354432.179700002074242, 257992.868599999696016 ], [ 354435.430100001394749, 257989.939899999648333 ], [ 354450.039099998772144, 257978.871500000357628 ], [ 354451.664300002157688, 257977.407200001180172 ], [ 354454.914700001478195, 257974.478500001132488 ], [ 354459.036200001835823, 257963.957499999552965 ], [ 354459.928800001740456, 257953.832299999892712 ], [ 354466.58669999986887, 257917.752300001680851 ], [ 354457.766999997198582, 257923.628199998289347 ], [ 354447.483999997377396, 257930.478999998420477 ], [ 354451.91780000180006, 257943.162599999457598 ], [ 354451.039599999785423, 257956.081599999219179 ], [ 354449.342399999499321, 257965.989100001752377 ], [ 354446.077600002288818, 257970.6064000017941 ], [ 354429.854299999773502, 257981.872699998319149 ], [ 354421.713799998164177, 257990.883099999278784 ], [ 354408.600599996745586, 258015.684799998998642 ], [ 354399.52080000191927, 258040.308499999344349 ], [ 354397.895599998533726, 258041.772799998521805 ], [ 354395.474899999797344, 258041.964099999517202 ], [ 354393.073899999260902, 258039.833500001579523 ], [ 354389.978100001811981, 258024.609400000423193 ], [ 354388.414099998772144, 258018.897100001573563 ], [ 354386.058100000023842, 258011.489500001072884 ], [ 354374.240299999713898, 257978.884399998933077 ], [ 354373.459200002253056, 257975.922699999064207 ], [ 354376.101499997079372, 257963.248599998652935 ], [ 354380.070299997925758, 257953.194499999284744 ], [ 354383.413599997758865, 257943.284699998795986 ], [ 354375.458400003612041, 257930.554000001400709 ], [ 354355.604500003159046, 257894.716699998825788 ], [ 354368.519900001585484, 257893.133600000292063 ], [ 354389.528899997472763, 257888.028200000524521 ], [ 354411.365900002419949, 257880.396499998867512 ], [ 354421.889300003647804, 257875.627500001341105 ], [ 354428.366800002753735, 257872.51410000026226 ], [ 354447.750699996948242, 257868.872999999672174 ], [ 354454.193999998271465, 257869.770100001245737 ], [ 354463.050800003111362, 257871.320300001651049 ], [ 354492.085299998521805, 257870.713599998503923 ], [ 354501.813199996948242, 257864.671500001102686 ], [ 354509.145499996840954, 257855.865499999374151 ], [ 354512.455300003290176, 257845.971200000494719 ], [ 354513.320900000631809, 257839.012200001627207 ], [ 354513.391000002622604, 257830.780200000852346 ], [ 354512.611699998378754, 257827.607400000095367 ], [ 354510.230499997735023, 257823.154899999499321 ], [ 354507.861900001764297, 257817.224899999797344 ], [ 354502.268100000917912, 257811.268500000238419 ], [ 354494.257100000977516, 257805.081199999898672 ], [ 354475.038699999451637, 257789.302999999374151 ], [ 354466.1925999969244, 257786.486400000751019 ], [ 354460.562799997627735, 257784.751600001007318 ], [ 354455.752599999308586, 257784.809099998325109 ], [ 354454.036799997091293, 257793.564100001007318 ], [ 354463.696400001645088, 257795.543000001460314 ], [ 354467.71000000089407, 257797.686799999326468 ], [ 354493.359099999070168, 257815.839699998497963 ], [ 354499.757500000298023, 257822.013700000941753 ], [ 354502.934199996292591, 257827.73930000141263 ], [ 354504.501800000667572, 257833.029399998486042 ], [ 354503.605599999427795, 257843.576799999922514 ], [ 354501.939000003039837, 257849.895899999886751 ], [ 354499.48589999973774, 257853.886599998921156 ], [ 354495.421999998390675, 257857.653099998831749 ], [ 354492.986900001764297, 257859.532999999821186 ], [ 354488.933700002729893, 257862.032900001853704 ], [ 354466.355200000107288, 257862.059200000017881 ], [ 354459.105599999427795, 257861.155499998480082 ], [ 354447.829800002276897, 257859.58559999987483 ], [ 354424.403599999845028, 257864.460099998861551 ], [ 354413.8783999979496, 257869.440200001001358 ], [ 354409.834200002253056, 257870.884700000286102 ], [ 354380.720600001513958, 257880.778999999165535 ], [ 354367.792700000107288, 257883.839499998837709 ], [ 354347.607900001108646, 257886.840700000524521 ], [ 354345.169200003147125, 257889.142799999564886 ], [ 354345.115199998021126, 257895.47520000115037 ], [ 354368.154799997806549, 257935.982599999755621 ], [ 354371.335100002586842, 257941.285999998450279 ], [ 354374.78490000218153, 257949.946100000292063 ], [ 354372.549300000071526, 257955.695199999958277 ], [ 354370.711900003254414, 257962.764800000935793 ], [ 354358.085299998521805, 257982.129700001329184 ], [ 354344.181999996304512, 258005.025100000202656 ], [ 354343.361299999058247, 258006.707100000232458 ], [ 354322.098600000143051, 258041.574599999934435 ], [ 354283.513199999928474, 258122.107700001448393 ], [ 354277.786300003528595, 258131.771099999547005 ], [ 354270.443199999630451, 258141.843499999493361 ], [ 354283.360399998724461, 258140.049400001764297 ], [ 354288.261200003325939, 258132.701200000941753 ], [ 354292.359300002455711, 258124.924300000071526 ], [ 354293.99889999628067, 258121.771299999207258 ], [ 354326.837600000202656, 258053.223600000143051 ], [ 354330.123999997973442, 258046.073300000280142 ], [ 354332.580700002610683, 258041.660399999469519 ], [ 354348.112800002098083, 258016.878499999642372 ] ] ], [ [ [ 354371.4375, 258064.70160000026226 ], [ 354371.193099997937679, 258064.098000001162291 ], [ 354370.72070000320673, 258064.849500000476837 ], [ 354371.4375, 258064.70160000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10260136700", "MAP": "D9-8322-T009", "PARCEL_NAM": "38CB", "ACRE": ".65", "LONGITUDE": -64.97673362, "LATITUDE": 18.35762061, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.44367017600001, "SHAPE_Area": 1676.8784545000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353968.328500002622604, 258652.307199999690056 ], [ 353975.364200003445148, 258630.576400000602007 ], [ 353961.76860000193119, 258625.605099998414516 ], [ 353959.516599997878075, 258628.587900001555681 ], [ 353958.056999996304512, 258628.737399999052286 ], [ 353956.112700000405312, 258628.721900001168251 ], [ 353954.325199998915195, 258629.35190000012517 ], [ 353953.020000003278255, 258630.469000000506639 ], [ 353947.689599998295307, 258628.332800000905991 ], [ 353947.863200001418591, 258626.88459999859333 ], [ 353947.225299999117851, 258625.590999998152256 ], [ 353946.421499997377396, 258624.77930000051856 ], [ 353945.451899997889996, 258624.449400000274181 ], [ 353943.189900003373623, 258623.6261 ], [ 353926.268700003623962, 258617.772300001233816 ], [ 353916.474899999797344, 258652.082400001585484 ], [ 353918.538599997758865, 258653.609400000423193 ], [ 353960.386900000274181, 258661.773899998515844 ], [ 353968.328500002622604, 258652.307199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00854676, "LATITUDE": 18.35349667, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 486.94798219900002, "SHAPE_Area": 2127.25317675 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350588.488499999046326, 258245.330699998885393 ], [ 350587.091700002551079, 258219.988000001758337 ], [ 350586.46339999884367, 258199.084600001573563 ], [ 350586.506599999964237, 258194.018699999898672 ], [ 350587.580799996852875, 258162.574599999934435 ], [ 350588.399700000882149, 258161.10359999909997 ], [ 350593.260999999940395, 258158.39919999986887 ], [ 350597.281700000166893, 258159.698600001633167 ], [ 350606.892700001597404, 258167.3766999989748 ], [ 350626.053599998354912, 258189.909400001168251 ], [ 350624.570500001311302, 258174.698499999940395 ], [ 350613.398999996483326, 258160.885999999940395 ], [ 350608.600699998438358, 258156.2027000002563 ], [ 350600.580700002610683, 258151.070799998939037 ], [ 350598.975299999117851, 258150.213300000876188 ], [ 350587.730099998414516, 258145.054999999701977 ], [ 350586.131800003349781, 258143.353199999779463 ], [ 350583.142099998891354, 258115.675500001758337 ], [ 350580.130900003015995, 258090.530699998140335 ], [ 350577.132200002670288, 258063.908300001174212 ], [ 350570.679899998009205, 258064.066599998623133 ], [ 350575.15990000218153, 258106.11089999973774 ], [ 350571.126599997282028, 258106.289000000804663 ], [ 350567.017700001597404, 258115.332400001585484 ], [ 350571.810599997639656, 258120.649000000208616 ], [ 350573.390900000929832, 258124.461599998176098 ], [ 350574.179200001060963, 258126.578999999910593 ], [ 350577.267800003290176, 258142.647399999201298 ], [ 350577.152699999511242, 258156.156399998813868 ], [ 350577.703699998557568, 258186.136199999600649 ], [ 350578.263599999248981, 258215.060600001364946 ], [ 350579.611900001764297, 258246.102400001138449 ], [ 350588.488499999046326, 258245.330699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99338268, "LATITUDE": 18.35622885, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.89860394, "SHAPE_Area": 524.42340373699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352179.423000000417233, 258443.2212999984622 ], [ 352184.336300000548363, 258504.146699998527765 ], [ 352185.923799999058247, 258500.707100000232458 ], [ 352187.77589999884367, 258498.061299998313189 ], [ 352190.421700000762939, 258496.209199998527765 ], [ 352195.520499996840954, 258494.024000000208616 ], [ 352187.418399997055531, 258446.290399998426437 ], [ 352181.773500002920628, 258444.123500000685453 ], [ 352179.423000000417233, 258443.2212999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": "D9-7630-T005", "PARCEL_NAM": null, "ACRE": ".03", "LONGITUDE": -64.97785376, "LATITUDE": 18.36893574, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.280290843499998, "SHAPE_Area": 142.97473218 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353810.532899998128414, 259886.642599999904633 ], [ 353810.499399997293949, 259886.785900000482798 ], [ 353809.939499996602535, 259888.891399998217821 ], [ 353809.207699999213219, 259890.435100000351667 ], [ 353807.635600000619888, 259892.091400001198053 ], [ 353811.430200003087521, 259897.485300000756979 ], [ 353812.997500002384186, 259896.425000000745058 ], [ 353814.917999997735023, 259896.201900001615286 ], [ 353817.429499998688698, 259897.05629999935627 ], [ 353819.813500002026558, 259898.863099999725819 ], [ 353823.407999999821186, 259899.249299999326468 ], [ 353824.229800000786781, 259888.877300001680851 ], [ 353810.532899998128414, 259886.642599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97788768, "LATITUDE": 18.36888689, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.63835026713999998, "SHAPE_Area": 0.01846844486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353813.203599996864796, 259887.074200000613928 ], [ 353813.199799999594688, 259887.0777000002563 ], [ 353813.010099999606609, 259887.204599998891354 ], [ 353813.23929999768734, 259887.242899999022484 ], [ 353813.203400000929832, 259887.078299999237061 ], [ 353813.203599996864796, 259887.074200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": "D9-7505-T005", "PARCEL_NAM": null, "ACRE": ".05", "LONGITUDE": -64.97789639, "LATITUDE": 18.36879268, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.997151354899998, "SHAPE_Area": 257.56528022200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353824.214299999177456, 259889.073399998247623 ], [ 353824.229800000786781, 259888.877300001680851 ], [ 353824.316899999976158, 259888.7939000017941 ], [ 353819.011500000953674, 259879.070300001651049 ], [ 353813.093599997460842, 259869.249200001358986 ], [ 353811.516400001943111, 259862.999600000679493 ], [ 353803.00959999859333, 259866.122000001370907 ], [ 353802.859999999403954, 259867.049800001084805 ], [ 353803.33839999884367, 259871.295299999415874 ], [ 353805.015600003302097, 259875.041400000452995 ], [ 353807.382299996912479, 259877.944600000977516 ], [ 353809.867899999022484, 259882.811900001019239 ], [ 353810.211499996483326, 259884.840900000184774 ], [ 353810.499399997293949, 259886.785900000482798 ], [ 353813.010099999606609, 259887.204599998891354 ], [ 353813.199799999594688, 259887.0777000002563 ], [ 353813.203599996864796, 259887.074200000613928 ], [ 353813.203400000929832, 259887.078299999237061 ], [ 353813.23929999768734, 259887.242899999022484 ], [ 353819.824500001966953, 259888.3412000015378 ], [ 353824.214299999177456, 259889.073399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97778178, "LATITUDE": 18.36890243, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.97361725141, "SHAPE_Area": 0.04952246909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353824.316899999976158, 259888.7939000017941 ], [ 353824.229800000786781, 259888.877300001680851 ], [ 353824.214299999177456, 259889.073399998247623 ], [ 353824.494999997317791, 259889.120200000703335 ], [ 353824.316899999976158, 259888.7939000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": "D9-7630-T005", "PARCEL_NAM": null, "ACRE": ".15", "LONGITUDE": -64.97826068000001, "LATITUDE": 18.36918744, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.840142923, "SHAPE_Area": 709.89245628100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353778.940099999308586, 259881.488000001758337 ], [ 353768.22410000115633, 259901.909800000488758 ], [ 353766.362000003457069, 259909.881099998950958 ], [ 353765.231700003147125, 259916.308699999004602 ], [ 353765.030299998819828, 259926.557900000363588 ], [ 353766.614399999380112, 259938.489999998360872 ], [ 353770.243500001728535, 259949.603999998420477 ], [ 353776.393700003623962, 259960.380399998277426 ], [ 353782.217600002884865, 259951.844700001180172 ], [ 353777.963299997150898, 259943.943999998271465 ], [ 353775.281099997460842, 259934.386999998241663 ], [ 353774.383400000631809, 259926.632199998944998 ], [ 353774.53830000013113, 259922.223200000822544 ], [ 353774.820799998939037, 259916.861699998378754 ], [ 353776.194700002670288, 259909.959199998527765 ], [ 353778.286300003528595, 259903.300900001078844 ], [ 353785.692800000309944, 259882.648499999195337 ], [ 353785.692800000309944, 259882.589800000190735 ], [ 353778.940099999308586, 259881.488000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602013300", "MAP": "D9-9203-T017", "PARCEL_NAM": "7C", "ACRE": "0.50", "LONGITUDE": -64.97235196, "LATITUDE": 18.36179749, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.196373927, "SHAPE_Area": 2291.63303842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354445.702100001275539, 259099.612300001084805 ], [ 354446.145700000226498, 259098.479899998754263 ], [ 354459.194099999964237, 259081.276999998837709 ], [ 354463.498700000345707, 259075.831500001251698 ], [ 354361.060199998319149, 259108.353799998760223 ], [ 354361.360600002110004, 259112.140299998223782 ], [ 354365.04169999808073, 259134.347699999809265 ], [ 354380.188199996948242, 259134.673799999058247 ], [ 354380.399899996817112, 259132.345400001853704 ], [ 354401.037399999797344, 259123.455400001257658 ], [ 354445.593299999833107, 259099.537000000476837 ], [ 354445.702100001275539, 259099.612300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102504015300", "MAP": "D9-373-T63", "PARCEL_NAM": "2-3", "ACRE": "0.55", "LONGITUDE": -64.98632211, "LATITUDE": 18.35310621, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.40635249, "SHAPE_Area": 2712.6369172499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352967.236199997365475, 258147.702500000596046 ], [ 352939.919900000095367, 258092.310699999332428 ], [ 352932.270199999213219, 258095.005300000309944 ], [ 352929.813500002026558, 258099.418099999427795 ], [ 352927.367600001394749, 258102.564500000327826 ], [ 352921.667700000107288, 258109.061799999326468 ], [ 352900.837099999189377, 258132.296799998730421 ], [ 352938.629399999976158, 258171.486699998378754 ], [ 352961.614699997007847, 258152.662900000810623 ], [ 352965.67679999768734, 258149.107500001788139 ], [ 352967.236199997365475, 258147.702500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97806511, "LATITUDE": 18.35812066, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.89673086799999, "SHAPE_Area": 750.02958092100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353772.566600002348423, 258681.761900000274181 ], [ 353768.618199996650219, 258686.703999999910593 ], [ 353766.652900002896786, 258690.979400001466274 ], [ 353835.814599998295307, 258709.294300001114607 ], [ 353840.735200002789497, 258699.624299999326468 ], [ 353772.566600002348423, 258681.761900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "D9-8833-T013", "PARCEL_NAM": "5-A-D GREEN BELT", "ACRE": ".069", "LONGITUDE": -65.02915964, "LATITUDE": 18.35130074, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.320764095599998, "SHAPE_Area": 331.46379152999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348398.811200000345707, 257908.228199999779463 ], [ 348402.862899996340275, 257908.219900000840425 ], [ 348405.990699999034405, 257908.243900001049042 ], [ 348408.228200003504753, 257907.816899999976158 ], [ 348413.383699998259544, 257905.635600000619888 ], [ 348417.427299998700619, 257902.779599998146296 ], [ 348420.798900000751019, 257900.140500001609325 ], [ 348423.271799996495247, 257898.160799998790026 ], [ 348424.630999997258186, 257895.728399999439716 ], [ 348425.086400002241135, 257894.621500000357628 ], [ 348423.542000003159046, 257891.880399998277426 ], [ 348412.765299998223782, 257893.112900000065565 ], [ 348399.578299999237061, 257887.860199999064207 ], [ 348398.276799999177456, 257893.798200000077486 ], [ 348400.512199997901917, 257896.700500000268221 ], [ 348401.120399996638298, 257901.513799998909235 ], [ 348398.811200000345707, 257908.228199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-812-T015", "PARCEL_NAM": "6 REM", "ACRE": "21.16", "LONGITUDE": -65.03022646, "LATITUDE": 18.3521673, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1822.7340141100001, "SHAPE_Area": 81718.436191300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348441.625399999320507, 258116.206300001591444 ], [ 348446.821335663145874, 258113.674282560852589 ], [ 348452.219274481467437, 258111.607614649372408 ], [ 348457.777634998608846, 258110.022216243902221 ], [ 348463.453599996864796, 258108.930300001055002 ], [ 348467.091679096804, 258106.659736911853543 ], [ 348471.043164821981918, 258104.993352549528936 ], [ 348475.208522591216024, 258103.973121725866804 ], [ 348479.482830567518249, 258103.624743191874586 ], [ 348483.758422550396062, 258103.956992307998007 ], [ 348487.927599996328354, 258104.961500000208616 ], [ 348489.746721546340268, 258110.448723911133129 ], [ 348491.773999996483326, 258115.862500000745058 ], [ 348614.008599996566772, 258063.026900000870228 ], [ 348627.427100002765656, 258057.226799998432398 ], [ 348625.705600000917912, 258054.118900001049042 ], [ 348620.740235831122845, 258048.579119758825982 ], [ 348615.348923123732675, 258043.45293660153402 ], [ 348609.565999999642372, 258038.772999998182058 ], [ 348599.363444047805388, 258030.294741131860064 ], [ 348588.92849999666214, 258022.104200001806021 ], [ 348584.197923440777231, 258013.958736354368739 ], [ 348579.667999997735023, 258005.699999999254942 ], [ 348575.665117092139553, 257994.515828905685339 ], [ 348571.253425485920161, 257983.486516516510164 ], [ 348566.438900001347065, 257972.627000000327826 ], [ 348564.608004546083976, 257968.711149925511563 ], [ 348562.470100000500679, 257964.954100001603365 ], [ 348556.356499999761581, 257962.938400000333786 ], [ 348553.550599999725819, 257971.999899998307228 ], [ 348550.081500001251698, 257974.329199999570847 ], [ 348544.79280000180006, 257974.683200001716614 ], [ 348540.152500003576279, 257972.851100001484156 ], [ 348537.611299999058247, 257969.256999999284744 ], [ 348527.399400003254414, 257961.008099999278784 ], [ 348517.673900000751019, 257956.337499998509884 ], [ 348508.430699996650219, 257955.755899999290705 ], [ 348500.716899998486042, 257956.718100000172853 ], [ 348492.473800003528595, 257959.718800000846386 ], [ 348485.763899996876717, 257963.752500001341105 ], [ 348484.218800000846386, 257964.251299999654293 ], [ 348476.964000001549721, 257972.366200000047684 ], [ 348476.419100001454353, 257973.846900001168251 ], [ 348474.340499997138977, 257979.495299998670816 ], [ 348472.222900003194809, 257987.649599999189377 ], [ 348468.023000001907349, 257999.362500000745058 ], [ 348464.901500001549721, 258004.445099998265505 ], [ 348462.305399999022484, 258007.999800000339746 ], [ 348451.972099997103214, 258015.580299999564886 ], [ 348366.317699998617172, 258063.94649999961257 ], [ 348353.431500002741814, 258069.464899998158216 ], [ 348342.125600002706051, 258069.888900000602007 ], [ 348334.937399998307228, 258069.32319999858737 ], [ 348326.737300001084805, 258066.706999998539686 ], [ 348316.505900003015995, 258061.011399999260902 ], [ 348308.843000002205372, 258055.335499998182058 ], [ 348300.697800002992153, 258045.570599999278784 ], [ 348297.666299998760223, 258038.908900000154972 ], [ 348288.516999997198582, 258026.072399999946356 ], [ 348277.795299999415874, 258017.309099998325109 ], [ 348271.159800000488758, 258011.640999998897314 ], [ 348261.44990000128746, 258004.928100001066923 ], [ 348254.787100002169609, 258002.834399998188019 ], [ 348244.539899997413158, 257999.18129999935627 ], [ 348237.888800002634525, 257995.555799998342991 ], [ 348227.665100000798702, 257988.838899999856949 ], [ 348219.551100000739098, 257974.989000000059605 ], [ 348215.515600003302097, 257965.25560000166297 ], [ 348214.542900003492832, 257958.098999999463558 ], [ 348215.111299999058247, 257950.954100001603365 ], [ 348216.683799996972084, 257946.880899999290705 ], [ 348217.224899999797344, 257943.310400001704693 ], [ 348218.291500002145767, 257938.212000001221895 ], [ 348219.879600003361702, 257932.0962999984622 ], [ 348219.412799999117851, 257925.964800000190735 ], [ 348218.443999998271465, 257918.297499999403954 ], [ 348221.094700001180172, 257907.593899998813868 ], [ 348221.663199998438358, 257900.449099998921156 ], [ 348226.396300002932549, 257886.186799999326468 ], [ 348234.231299996376038, 257869.395100001245737 ], [ 348240.019199997186661, 257851.566300000995398 ], [ 348243.75620000064373, 257833.211100000888109 ], [ 348250.077399998903275, 257812.833099998533726 ], [ 348251.762999996542931, 257752.167599998414516 ], [ 348158.192699998617172, 257738.308899998664856 ], [ 348136.822200000286102, 257797.998399998992682 ], [ 348114.917999997735023, 257874.875 ], [ 348077.465999998152256, 257873.304299999028444 ], [ 348081.302100002765656, 257878.469900000840425 ], [ 348084.487300001084805, 257884.272599998861551 ], [ 348085.069399997591972, 257892.623500000685453 ], [ 348086.302199997007847, 257900.33729999884963 ], [ 348084.281000003218651, 257911.236400000751019 ], [ 348082.230400003492832, 257925.987399999052286 ], [ 348084.735299997031689, 257936.279100000858307 ], [ 348092.402500003576279, 257947.252300001680851 ], [ 348097.515600003302097, 257954.353799998760223 ], [ 348103.264799997210503, 257962.744199998676777 ], [ 348112.189300000667572, 257978.221200000494719 ], [ 348116.622100003063679, 257989.811700001358986 ], [ 348121.705700002610683, 258000.765099998563528 ], [ 348125.477899998426437, 258014.276599999517202 ], [ 348131.133599996566772, 258034.864799998700619 ], [ 348132.376299999654293, 258041.294599998742342 ], [ 348136.779600001871586, 258056.736900001764297 ], [ 348141.868000000715256, 258067.048300001770258 ], [ 348149.520400002598763, 258079.947500001639128 ], [ 348160.416900001466274, 258090.945300001651049 ], [ 348168.098800003528595, 258099.992499999701977 ], [ 348184.808200001716614, 258111.03489999845624 ], [ 348198.988200001418591, 258114.995600000023842 ], [ 348208.272314689762425, 258120.958995960187167 ], [ 348217.893993895384483, 258126.360862877132604 ], [ 348227.819315534783527, 258131.182155989954481 ], [ 348238.013287006004248, 258135.405877402081387 ], [ 348248.439968558552209, 258139.017136009060778 ], [ 348259.062600001692772, 258142.003199998289347 ], [ 348266.501658409077208, 258143.334867071476765 ], [ 348274.007202420150861, 258144.217893843946513 ], [ 348281.552199997007847, 258144.649099998176098 ], [ 348290.023761845659465, 258143.148203832854051 ], [ 348298.59659194399137, 258142.422508608229691 ], [ 348307.199903483269736, 258142.47800647027907 ], [ 348315.762657965999097, 258143.31423916699714 ], [ 348324.214151778782252, 258144.924301832244964 ], [ 348332.484600000083447, 258147.294900000095367 ], [ 348338.557290049677249, 258150.989229677536059 ], [ 348345.000541407207493, 258153.990920558950165 ], [ 348351.7356633337331, 258156.263313315052073 ], [ 348358.680400506476872, 258157.778655456466367 ], [ 348365.74993759393692, 258158.51844027187326 ], [ 348372.857935096602887, 258158.473632848530542 ], [ 348379.917583802249283, 258157.644780414702836 ], [ 348386.842664977069944, 258156.042005656432593 ], [ 348393.548603346280288, 258153.684883090172661 ], [ 348399.953500002622604, 258150.602200001478195 ], [ 348409.673558952054009, 258141.187443878239719 ], [ 348419.878169069008436, 258132.300199580815388 ], [ 348430.538739029550925, 258123.965367431490449 ], [ 348441.625399999320507, 258116.206300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "A9-785-T013", "PARCEL_NAM": "13 REM", "ACRE": "2.11", "LONGITUDE": -65.03021798, "LATITUDE": 18.35027457, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 411.33429644099999, "SHAPE_Area": 9358.0890643900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348366.025799997150898, 257734.929900001734495 ], [ 348286.16780000180006, 257735.855999998748302 ], [ 348252.205300003290176, 257736.249899998307228 ], [ 348251.762999996542931, 257752.167599998414516 ], [ 348250.077399998903275, 257812.833099998533726 ], [ 348250.378799997270107, 257833.357799999415874 ], [ 348340.805699996650219, 257835.643899999558926 ], [ 348346.103299997746944, 257752.396999999880791 ], [ 348366.025799997150898, 257734.929900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "D9-8737-T013", "PARCEL_NAM": "5", "ACRE": "9.9", "LONGITUDE": -65.02991403, "LATITUDE": 18.35178819, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1217.7069036299999, "SHAPE_Area": 27194.568374400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348403.980999998748302, 257951.033399999141693 ], [ 348405.621142863703426, 257954.141585111763561 ], [ 348406.739991884038318, 257957.473110315244412 ], [ 348407.308411228703335, 257960.941219708038261 ], [ 348407.31159874855075, 257964.455600613902789 ], [ 348406.749471437768079, 257967.924735404929379 ], [ 348405.636667595244944, 257971.25828470257693 ], [ 348404.002165630168747, 257974.369439896050608 ], [ 348401.888529438350815, 257977.177183716325089 ], [ 348399.35080000013113, 257979.608399998396635 ], [ 348373.636100001633167, 257996.228000000119209 ], [ 348368.531400002539158, 257999.527199998497963 ], [ 348365.279286156001035, 258001.199945924279746 ], [ 348361.9121999964118, 258002.627199999988079 ], [ 348357.095092159463093, 258003.031637313717511 ], [ 348352.264808491221629, 258002.840699791966472 ], [ 348347.494655557267834, 258002.057285188755486 ], [ 348342.857027352380101, 258000.693282957770862 ], [ 348338.422306615801062, 257998.769393812748604 ], [ 348334.257796671823598, 257996.314815563935554 ], [ 348330.426700003445148, 257993.366799999028444 ], [ 348323.141801070538349, 257988.129720274213469 ], [ 348315.483164842997212, 257983.456172623904422 ], [ 348307.4942948850221, 257979.372704330715351 ], [ 348299.220570596924517, 257975.902510833169799 ], [ 348290.708989444712643, 257973.065303967916407 ], [ 348282.00789999961853, 257970.877199999988079 ], [ 348276.841204886732157, 257969.975703298405278 ], [ 348271.826942414452787, 257968.437975574983284 ], [ 348267.043136318679899, 257966.28794442868093 ], [ 348262.56422435073182, 257963.559065121022286 ], [ 348258.459899999201298, 257960.293800000101328 ], [ 348257.109912658866961, 257956.222224309050944 ], [ 348256.426177267218009, 257951.987522390263621 ], [ 348256.426177267218009, 257947.697977609408554 ], [ 348257.109912658866961, 257943.463275690621231 ], [ 348258.459899999201298, 257939.391699999570847 ], [ 348265.072255234699696, 257928.429066601907834 ], [ 348271.15990000218153, 257917.166600000113249 ], [ 348274.349577841057908, 257909.726687116053654 ], [ 348277.969724658352789, 257902.486460223241011 ], [ 348282.00789999961853, 257895.470800001174212 ], [ 348285.219832963077351, 257892.034400918608299 ], [ 348288.830105924338568, 257889.019225772470236 ], [ 348292.783875530934893, 257886.471077834343305 ], [ 348297.02108040190069, 257884.428665804938646 ], [ 348301.477353514987044, 257882.923015793261584 ], [ 348306.08500000089407, 257881.977000001817942 ], [ 348313.705169303109869, 257881.251367535296595 ], [ 348321.359689463512041, 257881.208428224286763 ], [ 348328.987520049384329, 257881.848524485365488 ], [ 348336.527833462168928, 257883.166551915899618 ], [ 348343.920500002801418, 257885.151999998837709 ], [ 348350.023378311423585, 257887.802297145302873 ], [ 348355.80581044300925, 257891.093600421736483 ], [ 348361.200713404861744, 257894.987726850929903 ], [ 348366.145499996840954, 257899.439500000327826 ], [ 348369.585100002586842, 257894.412399999797344 ], [ 348376.527438433549833, 257898.594176203652751 ], [ 348383.734329140628688, 257902.301471908722306 ], [ 348391.173391068470664, 257905.517629980546189 ], [ 348398.811200000345707, 257908.228199999779463 ], [ 348401.120399996638298, 257901.513799998909235 ], [ 348400.512199997901917, 257896.700500000268221 ], [ 348398.276799999177456, 257893.798200000077486 ], [ 348399.578299999237061, 257887.860199999064207 ], [ 348395.655444421572611, 257884.79494191709091 ], [ 348392.084266037272755, 257881.32632721675327 ], [ 348388.906027985853143, 257877.494433966610814 ], [ 348386.157453182211611, 257873.343537733133417 ], [ 348383.870300002396107, 257868.921599999070168 ], [ 348381.826709307904821, 257861.965548025706084 ], [ 348380.193247047485784, 257854.901928342675092 ], [ 348378.975500002503395, 257847.754900000989437 ], [ 348377.119599997997284, 257836.561999998986721 ], [ 348370.906800001859665, 257836.404899999499321 ], [ 348250.378799997270107, 257833.357799999415874 ], [ 348250.077399998903275, 257812.833099998533726 ], [ 348243.75620000064373, 257833.211100000888109 ], [ 348240.019199997186661, 257851.566300000995398 ], [ 348234.231299996376038, 257869.395100001245737 ], [ 348226.396300002932549, 257886.186799999326468 ], [ 348221.663199998438358, 257900.449099998921156 ], [ 348221.094700001180172, 257907.593899998813868 ], [ 348218.443999998271465, 257918.297499999403954 ], [ 348219.412799999117851, 257925.964800000190735 ], [ 348219.879600003361702, 257932.0962999984622 ], [ 348218.291500002145767, 257938.212000001221895 ], [ 348217.224899999797344, 257943.310400001704693 ], [ 348216.683799996972084, 257946.880899999290705 ], [ 348215.111299999058247, 257950.954100001603365 ], [ 348214.542900003492832, 257958.098999999463558 ], [ 348215.515600003302097, 257965.25560000166297 ], [ 348219.551100000739098, 257974.989000000059605 ], [ 348227.665100000798702, 257988.838899999856949 ], [ 348237.888800002634525, 257995.555799998342991 ], [ 348244.539899997413158, 257999.18129999935627 ], [ 348254.787100002169609, 258002.834399998188019 ], [ 348261.44990000128746, 258004.928100001066923 ], [ 348271.159800000488758, 258011.640999998897314 ], [ 348277.795299999415874, 258017.309099998325109 ], [ 348288.516999997198582, 258026.072399999946356 ], [ 348297.666299998760223, 258038.908900000154972 ], [ 348300.697800002992153, 258045.570599999278784 ], [ 348308.843000002205372, 258055.335499998182058 ], [ 348316.505900003015995, 258061.011399999260902 ], [ 348326.737300001084805, 258066.706999998539686 ], [ 348334.937399998307228, 258069.32319999858737 ], [ 348342.125600002706051, 258069.888900000602007 ], [ 348353.431500002741814, 258069.464899998158216 ], [ 348366.317699998617172, 258063.94649999961257 ], [ 348451.972099997103214, 258015.580299999564886 ], [ 348462.305399999022484, 258007.999800000339746 ], [ 348464.901500001549721, 258004.445099998265505 ], [ 348468.023000001907349, 257999.362500000745058 ], [ 348472.222900003194809, 257987.649599999189377 ], [ 348474.340499997138977, 257979.495299998670816 ], [ 348476.419100001454353, 257973.846900001168251 ], [ 348448.469999998807907, 257951.566399998962879 ], [ 348414.732400000095367, 257934.958200000226498 ], [ 348414.077600002288818, 257936.235500000417233 ], [ 348411.738899998366833, 257946.796599999070168 ], [ 348403.980999998748302, 257951.033399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "D9-8807-T013", "PARCEL_NAM": "6-14", "ACRE": "1.70", "LONGITUDE": -65.02759807, "LATITUDE": 18.35321715, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 381.30450857199997, "SHAPE_Area": 7686.9951808599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348627.427100002765656, 258057.226799998432398 ], [ 348614.008599996566772, 258063.026900000870228 ], [ 348491.773999996483326, 258115.862500000745058 ], [ 348498.470899999141693, 258133.110199999064207 ], [ 348500.702100001275539, 258139.010299999266863 ], [ 348602.567199997603893, 258151.61600000038743 ], [ 348608.125100001692772, 258152.303800001740456 ], [ 348610.39054424589267, 258146.005428638716694 ], [ 348613.005599997937679, 258139.844000000506639 ], [ 348621.022449982818216, 258120.349154355586506 ], [ 348628.616099998354912, 258100.685600001364946 ], [ 348630.461191268521361, 258095.024733187223319 ], [ 348631.831583346065599, 258089.230615442764247 ], [ 348632.717878832831047, 258083.342979653010843 ], [ 348633.114000000059605, 258077.402199998497963 ], [ 348632.44926986831706, 258072.171704462118214 ], [ 348631.271386613545474, 258067.032391206244938 ], [ 348629.591859630774707, 258062.034477759792935 ], [ 348627.427100002765656, 258057.226799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "D9-8807-T013", "PARCEL_NAM": "6-17", "ACRE": "1.43", "LONGITUDE": -65.02742418, "LATITUDE": 18.35494274, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 384.16350483100001, "SHAPE_Area": 6223.6709321799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348658.19650000333786, 258301.504799999296665 ], [ 348637.400200001895428, 258273.088500000536442 ], [ 348629.06530000269413, 258273.719900000840425 ], [ 348571.486100003123283, 258288.889400001615286 ], [ 348517.436099998652935, 258272.183400001376867 ], [ 348517.401399999856949, 258276.708500001579523 ], [ 348516.463100001215935, 258280.32149999961257 ], [ 348515.531800001859665, 258283.029599998146296 ], [ 348513.238099999725819, 258285.274599999189377 ], [ 348528.604400001466274, 258325.339000001549721 ], [ 348660.196699999272823, 258325.339000001549721 ], [ 348668.979900002479553, 258325.339000001549721 ], [ 348668.769269549986348, 258320.683990123710828 ], [ 348667.880300000309944, 258316.1097999997437 ], [ 348663.203844697505701, 258308.697602406668011 ], [ 348658.19650000333786, 258301.504799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "D9-8807-T013", "PARCEL_NAM": "6-15", "ACRE": "1.87", "LONGITUDE": -65.02780748000001, "LATITUDE": 18.35387418, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.55056804999998, "SHAPE_Area": 8355.8552396199993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348602.567199997603893, 258151.61600000038743 ], [ 348500.702100001275539, 258139.010299999266863 ], [ 348502.022699996829033, 258144.903400000184774 ], [ 348503.305100001394749, 258155.774000000208616 ], [ 348503.273900002241135, 258159.846599999815226 ], [ 348502.321699999272823, 258165.26969999819994 ], [ 348501.348700001835823, 258173.407900001853704 ], [ 348498.102899998426437, 258181.0760000012815 ], [ 348494.811999998986721, 258194.626800000667572 ], [ 348491.965899996459484, 258209.538499999791384 ], [ 348492.74099999666214, 258227.193300001323223 ], [ 348613.894799999892712, 258212.899000000208616 ], [ 348617.95889999717474, 258212.41950000077486 ], [ 348613.501172949851025, 258197.083210719196359 ], [ 348608.507700003683567, 258181.912900000810623 ], [ 348606.843825656513218, 258175.842853594658663 ], [ 348605.694596179411747, 258169.6547025925247 ], [ 348605.068099997937679, 258163.392000000923872 ], [ 348606.462916119431611, 258157.811043557303492 ], [ 348608.125100001692772, 258152.303800001740456 ], [ 348602.567199997603893, 258151.61600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "A9-824-T016", "PARCEL_NAM": "11-6", "ACRE": "1.25", "LONGITUDE": -65.03331655, "LATITUDE": 18.35315578, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 449.33157122300003, "SHAPE_Area": 6669.7079543600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347966.501999996602535, 258034.108800001442432 ], [ 347922.056400001049042, 258063.585299998521805 ], [ 347924.993730932415929, 258068.249233434355119 ], [ 347928.496093980909791, 258072.505245789972832 ], [ 347932.507500000298023, 258076.285300001502037 ], [ 347942.164800003170967, 258083.5614 ], [ 347945.511868211906403, 258089.882416196283884 ], [ 347948.234702593705151, 258096.496362391771981 ], [ 347950.307996467454359, 258103.341766971541801 ], [ 347951.712480138696264, 258110.355007090402069 ], [ 347952.435099996626377, 258117.470899999141693 ], [ 347953.647242102539167, 258121.920211551128887 ], [ 347954.328991461952683, 258126.481009681127034 ], [ 347954.470930970448535, 258131.090295411850093 ], [ 347954.071099996566772, 258135.684399999678135 ], [ 347952.150211493542884, 258161.576026892784284 ], [ 347949.57320000231266, 258187.410599999129772 ], [ 347948.590790234156884, 258203.229557025508257 ], [ 347947.324199996888638, 258219.028299998492002 ], [ 347947.165164980979171, 258219.208127830323065 ], [ 347947.038318444625475, 258219.411941818048945 ], [ 347946.947207223623991, 258219.634042990481248 ], [ 347946.894378936267458, 258219.868221036944306 ], [ 347946.881310747470707, 258220.107927957637003 ], [ 347946.908368065138347, 258220.346461156470468 ], [ 347946.974794322566595, 258220.577150856523076 ], [ 347947.078732133377343, 258220.793546597880777 ], [ 347947.217275226954371, 258220.989597602980211 ], [ 347947.386549712682609, 258221.159821966284653 ], [ 347947.581822400155943, 258221.29945993720321 ], [ 347947.797633146750741, 258221.404607010539621 ], [ 347948.027947532420512, 258221.472323102789233 ], [ 347948.266325591597706, 258221.500714761670679 ], [ 347948.506101885286625, 258221.488988110126229 ], [ 347948.740571877686307, 258221.437471044453559 ], [ 347948.963179405720439, 258221.347604065726046 ], [ 347949.167700000107288, 258221.221900001168251 ], [ 347949.571599997580051, 258220.762699998915195 ], [ 347951.549599997699261, 258218.513900000602007 ], [ 347959.178400002419949, 258202.461599998176098 ], [ 347967.520599998533726, 258175.725099999457598 ], [ 347990.192100003361702, 258117.983500000089407 ], [ 348005.135200001299381, 258086.467999998480082 ], [ 348009.246324753214139, 258078.616795378446113 ], [ 348012.95160000026226, 258070.566100001335144 ], [ 348013.100510381802451, 258069.236920369352447 ], [ 348013.032868612266611, 258067.901136933738599 ], [ 348012.750449532177299, 258066.593799081834732 ], [ 348012.260663486260455, 258065.349209822277771 ], [ 348011.576361884654034, 258064.200025714351796 ], [ 348010.715499997138977, 258063.176399998366833 ], [ 348003.176374264992774, 258056.802004375815159 ], [ 347995.316264542634599, 258050.827892600034829 ], [ 347987.156400002539158, 258045.270199999213219 ], [ 347976.640539052721579, 258040.038620958512183 ], [ 347966.501999996602535, 258034.108800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019900", "MAP": "D9-8662-T012", "PARCEL_NAM": "4-34", "ACRE": "3.77", "LONGITUDE": -65.03691479, "LATITUDE": 18.3490496, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 559.79468568899995, "SHAPE_Area": 17603.607518100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347648.978399999439716, 257689.636900000274181 ], [ 347652.893899999558926, 257690.148400001227856 ], [ 347654.618100002408028, 257687.96510000154376 ], [ 347654.540200002491474, 257663.859900001436472 ], [ 347654.24719999730587, 257573.227899998426437 ], [ 347652.67059999704361, 257568.993200000375509 ], [ 347651.916400000452995, 257562.865299999713898 ], [ 347649.540700003504753, 257557.779599998146296 ], [ 347644.717200003564358, 257556.051399998366833 ], [ 347630.984700001776218, 257558.894299998879433 ], [ 347622.115199998021126, 257558.821699999272823 ], [ 347611.651199996471405, 257556.625100001692772 ], [ 347606.006999999284744, 257556.578899998217821 ], [ 347585.023100003600121, 257558.729200001806021 ], [ 347580.178000003099442, 257559.533900000154972 ], [ 347577.744699999690056, 257561.202799998223782 ], [ 347576.893399998545647, 257566.473099999129772 ], [ 347580.066500000655651, 257572.620799999684095 ], [ 347580.833200000226498, 257577.271099999547005 ], [ 347578.394500002264977, 257579.57319999858737 ], [ 347575.952200002968311, 257582.297400001436472 ], [ 347567.061200000345707, 257584.757800001651049 ], [ 347560.580099999904633, 257588.293299999088049 ], [ 347555.706299997866154, 257592.475299999117851 ], [ 347545.931699998676777, 257604.005499999970198 ], [ 347532.04450000077486, 257625.001200001686811 ], [ 347526.279899999499321, 257639.097199998795986 ], [ 347523.022200003266335, 257642.870299998670816 ], [ 347510.864600002765656, 257650.159000001847744 ], [ 347564.836099997162819, 257751.292399998754263 ], [ 347565.380699999630451, 257752.312800001353025 ], [ 347565.581600002944469, 257752.078699998557568 ], [ 347572.076333973789588, 257744.68680985562969 ], [ 347578.281599998474121, 257737.050299998372793 ], [ 347585.36527197365649, 257729.030034381954465 ], [ 347592.14580000191927, 257720.751899998635054 ], [ 347596.083079137140885, 257715.869749888312072 ], [ 347599.642742191907018, 257710.705802209908143 ], [ 347602.804700002074242, 257705.289200000464916 ], [ 347608.442488548753317, 257699.522377539280569 ], [ 347614.582500003278255, 257694.293499998748302 ], [ 347618.97406558226794, 257692.855620807822561 ], [ 347623.463235202827491, 257691.759855814947514 ], [ 347628.023400001227856, 257691.012699998915195 ], [ 347638.477386017795652, 257689.966655280935811 ], [ 347648.978399999439716, 257689.636900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01085705, "LATITUDE": 18.35746351, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1036.08096469, "SHAPE_Area": 4301.64304997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350430.27759999781847, 258732.794399999082088 ], [ 350431.380400002002716, 258728.894299998879433 ], [ 350436.11879999935627, 258715.120900001376867 ], [ 350441.858499996364117, 258704.9358000010252 ], [ 350451.223999999463558, 258691.709899999201298 ], [ 350462.619999997317791, 258682.080200001597404 ], [ 350478.160300001502037, 258668.902300000190735 ], [ 350485.767899997532368, 258660.555300001055002 ], [ 350486.651500001549721, 258651.485500000417233 ], [ 350482.645099997520447, 258648.497400000691414 ], [ 350477.114200003445148, 258635.153299998492002 ], [ 350463.520199999213219, 258621.743099998682737 ], [ 350449.873999997973442, 258614.454300001263618 ], [ 350407.283299997448921, 258597.218199998140335 ], [ 350397.616599999368191, 258596.083599999547005 ], [ 350394.387699998915195, 258596.479400001466274 ], [ 350388.734499998390675, 258597.488600000739098 ], [ 350386.310199998319149, 258598.102000001817942 ], [ 350361.204800002276897, 258610.773200001567602 ], [ 350353.933600001037121, 258612.402499999850988 ], [ 350346.678599998354912, 258612.131999999284744 ], [ 350339.439800001680851, 258609.961800001561642 ], [ 350324.989100001752377, 258602.455299999564886 ], [ 350304.091499999165535, 258594.473799999803305 ], [ 350270.3091000020504, 258584.486999999731779 ], [ 350249.409699998795986, 258576.716600000858307 ], [ 350231.76070000231266, 258566.017400000244379 ], [ 350222.956000000238419, 258558.346000000834465 ], [ 350220.587499998509884, 258552.416000001132488 ], [ 350219.847699999809265, 258544.599500000476837 ], [ 350225.718400001525879, 258518.049699999392033 ], [ 350229.971199996769428, 258492.120000001043081 ], [ 350231.741999998688698, 258473.558299999684095 ], [ 350232.771300002932549, 258447.391100000590086 ], [ 350223.797600001096725, 258459.561099998652935 ], [ 350222.854599997401237, 258475.596500001847744 ], [ 350219.413599997758865, 258500.899599999189377 ], [ 350215.167999997735023, 258525.984900001436472 ], [ 350210.159299999475479, 258545.997800000011921 ], [ 350212.470399998128414, 258558.682399999350309 ], [ 350214.853399999439716, 258562.923700001090765 ], [ 350226.055399999022484, 258573.147900000214577 ], [ 350234.071800000965595, 258578.701999999582767 ], [ 350249.323399998247623, 258586.848299998790026 ], [ 350300.792499996721745, 258603.101599998772144 ], [ 350314.458499997854233, 258608.068599998950958 ], [ 350336.945299997925758, 258618.807300001382828 ], [ 350344.184199996292591, 258620.97749999910593 ], [ 350354.662600003182888, 258621.485500000417233 ], [ 350362.740099996328354, 258619.862799998372793 ], [ 350389.472499996423721, 258605.516199998557568 ], [ 350393.513099998235703, 258604.49379999935627 ], [ 350399.157300002872944, 258604.53999999910593 ], [ 350403.179799996316433, 258605.628400001674891 ], [ 350451.394900001585484, 258625.232500001788139 ], [ 350457.813100002706051, 258629.084699999541044 ], [ 350467.411499999463558, 258638.240299999713898 ], [ 350471.396300002932549, 258643.761300001293421 ], [ 350474.551399998366833, 258652.019799999892712 ], [ 350475.670900002121925, 258658.141600001603365 ], [ 350474.079499997198582, 258664.267099998891354 ], [ 350465.268299996852875, 258672.382500000298023 ], [ 350449.20549999922514, 258686.579300001263618 ], [ 350437.781800001859665, 258699.789200000464916 ], [ 350429.951999999582767, 258714.050000000745058 ], [ 350425.237499997019768, 258724.754599999636412 ], [ 350423.372100003063679, 258732.202799998223782 ], [ 350430.27759999781847, 258732.794399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01953077, "LATITUDE": 18.35731688, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.39143499799999, "SHAPE_Area": 239.05550534100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349396.306500002741814, 258570.994899999350309 ], [ 349410.070600003004074, 258575.336399998515844 ], [ 349416.152699999511242, 258575.988400001078844 ], [ 349422.02250000089407, 258577.848900001496077 ], [ 349447.961400002241135, 258571.686500001698732 ], [ 349446.67119999974966, 258568.006900001317263 ], [ 349446.711000002920628, 258562.864000000059605 ], [ 349442.394400000572205, 258567.317099999636412 ], [ 349436.688400000333786, 258570.499899998307228 ], [ 349426.114699997007847, 258573.443500000983477 ], [ 349411.120800003409386, 258570.705899998545647 ], [ 349391.268500000238419, 258566.519000001251698 ], [ 349396.306500002741814, 258570.994899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01831234, "LATITUDE": 18.35725871, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 683.88704456699998, "SHAPE_Area": 2094.0034829199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349487.364600002765656, 258557.312399998307228 ], [ 349488.086800001561642, 258566.229899998754263 ], [ 349495.052100002765656, 258552.12950000166893 ], [ 349510.335500001907349, 258519.483199998736382 ], [ 349523.408299997448921, 258499.925500001758337 ], [ 349527.414200000464916, 258493.403599999845028 ], [ 349529.513700000941753, 258494.730399999767542 ], [ 349530.290600001811981, 258496.571199998259544 ], [ 349530.787600003182888, 258500.506799999624491 ], [ 349531.45099999755621, 258517.025199998170137 ], [ 349532.718900002539158, 258523.587799999862909 ], [ 349535.572899997234344, 258529.6385000012815 ], [ 349542.558899998664856, 258546.99210000038147 ], [ 349556.027699999511242, 258578.550000000745058 ], [ 349569.969200000166893, 258617.188499998301268 ], [ 349571.233000002801418, 258624.275299999862909 ], [ 349574.722099997103214, 258650.513700000941753 ], [ 349577.604400001466274, 258652.894999999552965 ], [ 349581.547600001096725, 258654.498100001364946 ], [ 349585.251400001347065, 258652.954100001603365 ], [ 349588.170199997723103, 258650.617600001394749 ], [ 349593.228900000452995, 258644.36600000038743 ], [ 349599.374799996614456, 258633.928899999707937 ], [ 349603.409199997782707, 258623.737700000405312 ], [ 349609.088500000536442, 258605.433600001037121 ], [ 349611.357699997723103, 258597.197900000959635 ], [ 349609.872699998319149, 258586.892099998891354 ], [ 349609.913999997079372, 258582.037300001829863 ], [ 349608.62950000166893, 258580.228100001811981 ], [ 349606.621799997985363, 258583.396899998188019 ], [ 349606.859099999070168, 258586.80629999935627 ], [ 349606.274999998509884, 258594.140999998897314 ], [ 349603.784299999475479, 258609.324299998581409 ], [ 349600.547100000083447, 258618.735399998724461 ], [ 349596.2550999969244, 258628.138300001621246 ], [ 349587.979400001466274, 258641.179999999701977 ], [ 349585.052500002086163, 258644.564899999648333 ], [ 349582.152000002563, 258644.542500000447035 ], [ 349580.336499996483326, 258640.596700001507998 ], [ 349579.843599997460842, 258636.136999998241663 ], [ 349578.604099996387959, 258625.905000001192093 ], [ 349577.591899998486042, 258620.392799999564886 ], [ 349574.23480000346899, 258611.192800000309944 ], [ 349571.405199997127056, 258601.997000001370907 ], [ 349565.224500000476837, 258582.814899999648333 ], [ 349556.408900000154972, 258563.350299999117851 ], [ 349545.021200001239777, 258535.478100001811981 ], [ 349540.096100002527237, 258524.431200001388788 ], [ 349537.041199997067451, 258510.253400001674891 ], [ 349535.779500000178814, 258502.904399998486042 ], [ 349535.053199999034405, 258494.511100001633167 ], [ 349534.568300001323223, 258489.002900000661612 ], [ 349534.592600002884865, 258485.857700001448393 ], [ 349532.5033999979496, 258483.220400001853704 ], [ 349528.813699997961521, 258482.929800000041723 ], [ 349525.373599998652935, 258484.475900001823902 ], [ 349521.665700003504753, 258486.544199999421835 ], [ 349517.126199997961521, 258493.848299998790026 ], [ 349502.140900000929832, 258522.041000001132488 ], [ 349487.364600002765656, 258557.312399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02108165, "LATITUDE": 18.35888251, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1645.92019867, "SHAPE_Area": 2971.3845349500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348901.110600002110004, 258773.106199998408556 ], [ 348900.433300003409386, 258778.533399999141693 ], [ 348898.944799996912479, 258787.395799998193979 ], [ 348900.093900002539158, 258796.278499998152256 ], [ 348903.89919999986887, 258802.761399999260902 ], [ 348909.733300000429153, 258809.260000001639128 ], [ 348914.371899999678135, 258812.925900001078844 ], [ 348922.244300000369549, 258818.230099998414516 ], [ 348930.734600000083447, 258822.328999999910593 ], [ 348935.785199999809265, 258825.191399998962879 ], [ 348941.822200000286102, 258831.691500000655651 ], [ 348952.700699999928474, 258841.859099999070168 ], [ 348959.358800001442432, 258846.750599998980761 ], [ 348970.678700000047684, 258852.283100001513958 ], [ 348982.218599997460842, 258855.598700001835823 ], [ 348995.192699998617172, 258857.110399998724461 ], [ 349005.132700003683567, 258857.388599999248981 ], [ 349012.447599999606609, 258856.03319999948144 ], [ 349019.16160000115633, 258853.664700001478195 ], [ 349033.210699997842312, 258847.319200001657009 ], [ 349042.983599998056889, 258842.957600001245737 ], [ 349052.748700000345707, 258839.604299999773502 ], [ 349062.71679999679327, 258836.252500001341105 ], [ 349082.432800002396107, 258831.765799999237061 ], [ 349104.184000000357628, 258826.488099999725819 ], [ 349114.548500001430511, 258824.349500000476837 ], [ 349125.32660000026226, 258821.205699998885393 ], [ 349136.31530000269413, 258817.055100001394749 ], [ 349147.928199999034405, 258810.892599999904633 ], [ 349156.294900000095367, 258804.704999998211861 ], [ 349170.407799996435642, 258790.091299999505281 ], [ 349178.38740000128746, 258781.480700001120567 ], [ 349190.2483000010252, 258769.471400000154972 ], [ 349194.335699997842312, 258765.671000000089407 ], [ 349198.619699999690056, 258762.678800001740456 ], [ 349204.523699998855591, 258760.10249999910593 ], [ 349225.031300000846386, 258758.243900001049042 ], [ 349244.552299998700619, 258752.747400000691414 ], [ 349258.784299999475479, 258749.025299999862909 ], [ 349262.247400000691414, 258747.236900001764297 ], [ 349267.954800002276897, 258743.852299999445677 ], [ 349279.567800000309944, 258737.689899999648333 ], [ 349284.654100000858307, 258735.914000000804663 ], [ 349293.781099997460842, 258736.387800000607967 ], [ 349306.769199997186661, 258736.084600001573563 ], [ 349314.285499997437, 258734.932500001043081 ], [ 349319.978900000452995, 258733.363000001758337 ], [ 349323.849399998784065, 258731.3761 ], [ 349326.714800000190735, 258728.171300001442432 ], [ 349329.790799997746944, 258723.959800001233816 ], [ 349334.310500003397465, 258716.734200000762939 ], [ 349339.265500001609325, 258705.680100001394749 ], [ 349341.968400001525879, 258697.230500001460314 ], [ 349346.130500003695488, 258683.750100001692772 ], [ 349348.624300003051758, 258676.105500001460314 ], [ 349351.942199997603893, 258666.853799998760223 ], [ 349356.859899997711182, 258660.639699999243021 ], [ 349359.921899996697903, 258658.243200000375509 ], [ 349363.789300002157688, 258656.659600000828505 ], [ 349368.053199999034405, 258656.289200000464916 ], [ 349372.71339999884367, 258657.131799999624491 ], [ 349375.549300000071526, 258657.758799999952316 ], [ 349379.99889999628067, 258659.608199998736382 ], [ 349388.681199997663498, 258665.120600000023842 ], [ 349411.715899996459484, 258677.600900001823902 ], [ 349414.745300002396107, 258679.439399998635054 ], [ 349417.378200002014637, 258680.064699999988079 ], [ 349423.659999996423721, 258681.121599998325109 ], [ 349425.692100003361702, 258680.734000001102686 ], [ 349444.537600003182888, 258683.904699999839067 ], [ 349465.215499997138977, 258686.282800000160933 ], [ 349473.530900001525879, 258686.750399999320507 ], [ 349482.659500002861023, 258687.022599998861551 ], [ 349504.57490000128746, 258686.788499999791384 ], [ 349518.178000003099442, 258685.683499999344349 ], [ 349535.247400000691414, 258682.386900000274181 ], [ 349543.784400001168251, 258680.436099998652935 ], [ 349548.669399999082088, 258678.456999998539686 ], [ 349552.33389999717474, 258676.871899999678135 ], [ 349556.213799998164177, 258673.675000000745058 ], [ 349567.232299998402596, 258665.692999999970198 ], [ 349581.341300003230572, 258654.414299998432398 ], [ 349577.604400001466274, 258652.894999999552965 ], [ 349576.87389999628067, 258652.291499998420477 ], [ 349575.425899997353554, 258655.6722999997437 ], [ 349565.635600000619888, 258662.252099998295307 ], [ 349555.425599999725819, 258670.643699999898672 ], [ 349551.34910000115633, 258673.032400000840425 ], [ 349536.097900003194809, 258677.351500000804663 ], [ 349524.306800000369549, 258680.285599999129772 ], [ 349504.204899996519089, 258682.146999999880791 ], [ 349491.01070000231266, 258682.851799998432398 ], [ 349460.99210000038147, 258681.40989999845624 ], [ 349438.090300001204014, 258678.00620000064373 ], [ 349425.726300001144409, 258676.2972999997437 ], [ 349406.493600003421307, 258670.703499998897314 ], [ 349398.006399996578693, 258666.2010000012815 ], [ 349388.918300002813339, 258660.685499999672174 ], [ 349381.645400002598763, 258656.59569999948144 ], [ 349374.567500002682209, 258653.515900000929832 ], [ 349363.617499999701977, 258652.624699998646975 ], [ 349358.545199997723103, 258652.585499998182058 ], [ 349353.850699998438358, 258656.179499998688698 ], [ 349347.288099996745586, 258665.204500000923872 ], [ 349343.770499996840954, 258674.051199998706579 ], [ 349341.665299996733665, 258683.917300000786781 ], [ 349339.352600000798702, 258694.386799998581409 ], [ 349337.278599999845028, 258700.219500001519918 ], [ 349331.281099997460842, 258714.895799998193979 ], [ 349329.221100002527237, 258718.913400001823902 ], [ 349325.319499999284744, 258724.933699999004602 ], [ 349323.062799997627735, 258728.143199998885393 ], [ 349319.193800002336502, 258729.928399998694658 ], [ 349312.687299996614456, 258731.693300001323223 ], [ 349306.186999998986721, 258732.651599999517202 ], [ 349300.301600001752377, 258732.807799998670816 ], [ 349294.41780000180006, 258732.762499999254942 ], [ 349288.335699997842312, 258732.110500000417233 ], [ 349283.875200003385544, 258731.672699999064207 ], [ 349278.788900002837181, 258733.448600001633167 ], [ 349274.305100001394749, 258736.035900000482798 ], [ 349270.838799998164177, 258738.227600000798702 ], [ 349266.55629999935627, 258741.018100000917912 ], [ 349261.460699997842312, 258744.003899998962879 ], [ 349225.262100003659725, 258754.61540000140667 ], [ 349219.576499998569489, 258755.176600001752377 ], [ 349210.237300001084805, 258755.911299999803305 ], [ 349202.521300002932549, 258756.658599998801947 ], [ 349198.251199997961521, 258757.835700001567602 ], [ 349191.922700002789497, 258762.828899998217821 ], [ 349160.424199998378754, 258795.459699999541044 ], [ 349155.308399997651577, 258801.067200001329184 ], [ 349150.401699997484684, 258805.869699999690056 ], [ 349140.616400003433228, 258811.8445999994874 ], [ 349137.354599997401237, 258813.836300000548363 ], [ 349124.947200000286102, 258817.77419999986887 ], [ 349116.609999999403954, 258820.130100000649691 ], [ 349099.531499996781349, 258824.637099999934435 ], [ 349072.29450000077486, 258830.881000000983477 ], [ 349061.527400001883507, 258832.613200001418591 ], [ 349051.353399999439716, 258836.366700001060963 ], [ 349040.565999999642372, 258840.720499999821186 ], [ 349025.497800000011921, 258847.663199998438358 ], [ 349014.713600002229214, 258851.613699998706579 ], [ 349006.782200001180172, 258853.972800001502037 ], [ 348999.678000003099442, 258854.321400001645088 ], [ 348990.146799996495247, 258853.64299999922514 ], [ 348977.381800003349781, 258851.326299998909235 ], [ 348972.323499999940395, 258849.472199998795986 ], [ 348963.627199999988079, 258845.775100000202656 ], [ 348954.142599999904633, 258839.046700000762939 ], [ 348944.874899998307228, 258830.504900000989437 ], [ 348939.438699997961521, 258825.017799999564886 ], [ 348934.998400002717972, 258821.958500001579523 ], [ 348930.75789999961853, 258819.304000001400709 ], [ 348918.025499999523163, 258812.752399999648333 ], [ 348909.366400003433228, 258804.215199999511242 ], [ 348904.150200001895428, 258796.511300001293421 ], [ 348902.756300002336502, 258793.07209999859333 ], [ 348901.771300002932549, 258789.232599999755621 ], [ 348902.228299997746944, 258782.580800000578165 ], [ 348904.388400003314018, 258772.811500001698732 ], [ 348901.110600002110004, 258773.106199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01928033, "LATITUDE": 18.35584785, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1109.53878164, "SHAPE_Area": 2877.58836225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349488.086800001561642, 258566.229899998754263 ], [ 349487.364600002765656, 258557.312399998307228 ], [ 349481.762299999594688, 258565.656800001859665 ], [ 349477.520999997854233, 258568.50730000063777 ], [ 349470.638700000941753, 258571.861600000411272 ], [ 349463.249300003051758, 258572.590900000184774 ], [ 349458.512999996542931, 258571.24379999935627 ], [ 349455.103299997746944, 258568.858399998396635 ], [ 349453.289800003170967, 258564.650600001215935 ], [ 349453.062600001692772, 258559.930700000375509 ], [ 349454.954899996519089, 258553.916700001806021 ], [ 349458.964900001883507, 258546.870600000023842 ], [ 349464.873400002717972, 258533.024099998176098 ], [ 349477.919299997389317, 258482.798700001090765 ], [ 349479.294399999082088, 258475.470100000500679 ], [ 349479.048900000751019, 258473.109200000762939 ], [ 349478.276100002229214, 258470.744100000709295 ], [ 349477.241499997675419, 258468.114999998360872 ], [ 349475.158299997448921, 258464.691399998962879 ], [ 349471.768799997866154, 258459.684999998658895 ], [ 349468.922799997031689, 258452.585900001227856 ], [ 349467.407499998807907, 258443.924400001764297 ], [ 349466.668999999761581, 258437.10359999909997 ], [ 349466.184199996292591, 258431.595400001853704 ], [ 349467.034000001847744, 258424.000599998980761 ], [ 349467.329999998211861, 258419.809099998325109 ], [ 349466.832999996840954, 258415.873500000685453 ], [ 349463.705099999904633, 258411.13120000064373 ], [ 349456.126900002360344, 258402.160700000822544 ], [ 349450.911700002849102, 258394.519099999219179 ], [ 349447.793999999761581, 258388.466299999505281 ], [ 349434.513599999248981, 258366.607999999076128 ], [ 349429.586400002241135, 258355.82319999858737 ], [ 349427.793200001120567, 258348.994300000369549 ], [ 349426.788999997079372, 258342.433600001037121 ], [ 349430.531300000846386, 258335.909499999135733 ], [ 349435.837600000202656, 258331.756599999964237 ], [ 349446.452100001275539, 258323.188700001686811 ], [ 349453.632500000298023, 258315.38060000166297 ], [ 349457.101000003516674, 258310.16499999910593 ], [ 349462.44370000064373, 258301.294300001114607 ], [ 349467.839100003242493, 258285.608800001442432 ], [ 349470.3074000030756, 258273.308299999684095 ], [ 349472.767700001597404, 258262.056200001388788 ], [ 349485.614900000393391, 258217.305700000375509 ], [ 349480.7212999984622, 258223.809599999338388 ], [ 349465.603500001132488, 258267.767499998211861 ], [ 349462.05799999833107, 258282.942999999970198 ], [ 349458.526799999177456, 258296.2837999984622 ], [ 349452.90820000320673, 258306.725099999457598 ], [ 349443.060500003397465, 258318.444400001317263 ], [ 349433.498700000345707, 258327.282499998807907 ], [ 349427.13570000231266, 258331.689399998635054 ], [ 349423.691500000655651, 258333.759799998253584 ], [ 349421.306100003421307, 258335.314100001007318 ], [ 349419.435999996960163, 258338.445000000298023 ], [ 349418.352799996733665, 258342.106300000101328 ], [ 349415.166299998760223, 258344.964999999850988 ], [ 349401.47240000218153, 258342.500199999660254 ], [ 349391.999799996614456, 258340.168400000780821 ], [ 349389.681500002741814, 258344.61600000038743 ], [ 349391.427799999713898, 258345.56810000166297 ], [ 349399.332500003278255, 258346.415500000119209 ], [ 349406.973600000143051, 258347.260800000280142 ], [ 349413.563900001347065, 258347.573800001293421 ], [ 349415.4037000015378, 258348.374400001019239 ], [ 349415.651199996471405, 258350.473200000822544 ], [ 349413.462700001895428, 258360.678899999707937 ], [ 349412.351300001144409, 258368.00959999859333 ], [ 349415.444799996912479, 258377.207600001245737 ], [ 349422.686499997973442, 258395.611699998378754 ], [ 349422.911700002849102, 258400.593699999153614 ], [ 349422.905699998140335, 258401.379999998956919 ], [ 349422.323700003325939, 258408.452599998563528 ], [ 349419.100699998438358, 258416.029100000858307 ], [ 349413.570200003683567, 258426.147799998521805 ], [ 349415.734200000762939, 258431.203299999237061 ], [ 349420.102799996733665, 258422.85190000012517 ], [ 349424.656400002539158, 258413.712999999523163 ], [ 349426.26690000295639, 258410.055799998342991 ], [ 349427.621799997985363, 258405.348099999129772 ], [ 349427.919900000095367, 258400.894400000572205 ], [ 349427.944200001657009, 258397.749200001358986 ], [ 349426.155000001192093, 258390.396099999547005 ], [ 349421.743000000715256, 258381.188000001013279 ], [ 349417.866599999368191, 258370.935499999672174 ], [ 349420.941200003027916, 258348.417100001126528 ], [ 349421.476700000464916, 258347.372800000011921 ], [ 349423.054799996316433, 258347.909200001507998 ], [ 349423.29619999974966, 258350.794399999082088 ], [ 349424.314599998295307, 258355.520300000905991 ], [ 349424.807599999010563, 258359.980099998414516 ], [ 349427.128200002014637, 258366.813099998980761 ], [ 349430.260099999606609, 258371.031199999153614 ], [ 349434.166900001466274, 258377.352099999785423 ], [ 349443.264600001275539, 258394.46000000089407 ], [ 349451.116700001060963, 258402.122000001370907 ], [ 349458.409000001847744, 258413.973600000143051 ], [ 349459.958800002932549, 258418.179400000721216 ], [ 349461.250900000333786, 258421.596900001168251 ], [ 349461.238799996674061, 258423.16950000077486 ], [ 349461.216499999165535, 258426.052600000053644 ], [ 349461.165899999439716, 258432.605200000107288 ], [ 349461.115299999713898, 258439.157699998468161 ], [ 349463.419699996709824, 258448.087400000542402 ], [ 349465.722099997103214, 258457.27930000051856 ], [ 349466.752599999308586, 258460.432599999010563 ], [ 349471.701999999582767, 258468.334300000220537 ], [ 349473.270000003278255, 258470.18129999935627 ], [ 349474.564099997282028, 258473.336599998176098 ], [ 349474.801500000059605, 258476.745999999344349 ], [ 349473.963899999856949, 258482.768199998885393 ], [ 349461.512199997901917, 258524.348400000482798 ], [ 349456.378600001335144, 258540.297699999064207 ], [ 349452.900100000202656, 258546.823800001293421 ], [ 349449.159800000488758, 258553.08559999987483 ], [ 349446.73200000077486, 258560.144000001251698 ], [ 349446.67119999974966, 258568.006900001317263 ], [ 349447.961400002241135, 258571.686500001698732 ], [ 349450.578000001609325, 258574.327899999916553 ], [ 349455.567900002002716, 258576.987500000745058 ], [ 349464.253499999642372, 258579.151500001549721 ], [ 349473.222999997437, 258578.696600001305342 ], [ 349479.833499997854233, 258576.388599999248981 ], [ 349483.817100003361702, 258572.749800000339746 ], [ 349488.086800001561642, 258566.229899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "D9-8833-T013", "PARCEL_NAM": "5-A-4", "ACRE": ".367", "LONGITUDE": -65.02880342, "LATITUDE": 18.3516664, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.19332234699999, "SHAPE_Area": 1534.02689521 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348418.534000001847744, 257920.787999998778105 ], [ 348414.732400000095367, 257934.958200000226498 ], [ 348448.469999998807907, 257951.566399998962879 ], [ 348476.419100001454353, 257973.846900001168251 ], [ 348476.964000001549721, 257972.366200000047684 ], [ 348480.712399996817112, 257968.17339999973774 ], [ 348446.479800000786781, 257911.847500000149012 ], [ 348445.505900003015995, 257912.322299998253584 ], [ 348442.132500000298023, 257915.183400001376867 ], [ 348437.202100001275539, 257917.144299998879433 ], [ 348433.390500001609325, 257918.891699999570847 ], [ 348430.926100000739098, 257919.761100001633167 ], [ 348428.020000003278255, 257919.960900001227856 ], [ 348419.970299996435642, 257920.787500001490116 ], [ 348418.534000001847744, 257920.787999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "D9-8833-T013", "PARCEL_NAM": "5-A-A", "ACRE": ".329", "LONGITUDE": -65.0287678, "LATITUDE": 18.35135658, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.46394358200001, "SHAPE_Area": 1356.7022909299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348406.777999997138977, 257920.791799999773502 ], [ 348419.970299996435642, 257920.787500001490116 ], [ 348428.020000003278255, 257919.960900001227856 ], [ 348430.926100000739098, 257919.761100001633167 ], [ 348433.390500001609325, 257918.891699999570847 ], [ 348437.202100001275539, 257917.144299998879433 ], [ 348442.132500000298023, 257915.183400001376867 ], [ 348445.505900003015995, 257912.322299998253584 ], [ 348447.299999997019768, 257911.447700001299381 ], [ 348449.769500002264977, 257909.912099998444319 ], [ 348455.376900002360344, 257907.06810000166297 ], [ 348457.172799997031689, 257905.971500001847744 ], [ 348460.087399996817112, 257904.661400001496077 ], [ 348463.898999996483326, 257902.914000000804663 ], [ 348467.480400003492832, 257902.053100001066923 ], [ 348471.730400003492832, 257901.41950000077486 ], [ 348475.08669999986887, 257900.778999999165535 ], [ 348480.892099998891354, 257901.267700001597404 ], [ 348486.472300000488758, 257901.976799998432398 ], [ 348492.27589999884367, 257902.6875 ], [ 348497.182499997317791, 257903.83559999987483 ], [ 348500.750299997627735, 257904.751299999654293 ], [ 348502.534199997782707, 257905.209100000560284 ], [ 348504.983199998736382, 257906.338300000876188 ], [ 348507.207099996507168, 257907.687800001353025 ], [ 348512.096699997782707, 257911.056499999016523 ], [ 348517.057800002396107, 257905.098499998450279 ], [ 348515.72410000115633, 257904.19990000128746 ], [ 348514.835600003600121, 257903.526900000870228 ], [ 348514.170400001108646, 257902.855500001460314 ], [ 348514.175599999725819, 257902.189300000667572 ], [ 348514.1841000020504, 257901.078999999910593 ], [ 348513.972599998116493, 257899.522799998521805 ], [ 348513.755999997258186, 257898.63289999961853 ], [ 348514.886699996888638, 257896.864900000393391 ], [ 348510.211999997496605, 257894.608300000429153 ], [ 348509.985200002789497, 257895.050700001418591 ], [ 348509.084799997508526, 257895.932100001722574 ], [ 348508.187700003385544, 257896.369300000369549 ], [ 348506.400399997830391, 257896.355599999427795 ], [ 348503.495999999344349, 257896.333299998193979 ], [ 348483.852700002491474, 257893.961800001561642 ], [ 348483.213100001215935, 257889.959499999880791 ], [ 348479.635099999606609, 257890.376200001686811 ], [ 348478.495800003409386, 257893.25450000166893 ], [ 348477.827299997210503, 257893.027300000190735 ], [ 348473.579000003635883, 257893.438900001347065 ], [ 348468.660499997437, 257893.845300000160933 ], [ 348461.722800001502037, 257895.346599999815226 ], [ 348455.898699998855591, 257897.300700001418591 ], [ 348451.633400000631809, 257899.932900000363588 ], [ 348436.594899997115135, 257908.922699999064207 ], [ 348435.02419999986887, 257909.7989999987185 ], [ 348432.566600002348423, 257909.780200000852346 ], [ 348431.004399999976158, 257909.546100001782179 ], [ 348429.679300002753735, 257907.537200000137091 ], [ 348430.366599999368191, 257905.321699999272823 ], [ 348430.60530000180006, 257903.324799999594688 ], [ 348431.517700001597404, 257900.888999998569489 ], [ 348434.462899997830391, 257895.581700000911951 ], [ 348436.519599996507168, 257889.601399999111891 ], [ 348437.732900001108646, 257885.629000000655651 ], [ 348427.27080000191927, 257891.453899998217821 ], [ 348423.542000003159046, 257891.880399998277426 ], [ 348425.086400002241135, 257894.621500000357628 ], [ 348424.630999997258186, 257895.728399999439716 ], [ 348423.271799996495247, 257898.160799998790026 ], [ 348420.798900000751019, 257900.140500001609325 ], [ 348417.427299998700619, 257902.779599998146296 ], [ 348413.383699998259544, 257905.635600000619888 ], [ 348408.228200003504753, 257907.816899999976158 ], [ 348405.990699999034405, 257908.243900001049042 ], [ 348402.862899996340275, 257908.219900000840425 ], [ 348398.811200000345707, 257908.228199999779463 ], [ 348406.777999997138977, 257920.791799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "D9-8833-T013", "PARCEL_NAM": "5-A-2", "ACRE": ".329", "LONGITUDE": -65.02838826, "LATITUDE": 18.35155088, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.458092902, "SHAPE_Area": 1449.62123735 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348480.892099998891354, 257901.267700001597404 ], [ 348475.08669999986887, 257900.778999999165535 ], [ 348473.284199997782707, 257901.122999999672174 ], [ 348484.218800000846386, 257964.251299999654293 ], [ 348485.763899996876717, 257963.752500001341105 ], [ 348487.135300002992153, 257962.928100001066923 ], [ 348492.473800003528595, 257959.718800000846386 ], [ 348493.951300002634525, 257959.181000001728535 ], [ 348512.096699997782707, 257911.056499999016523 ], [ 348507.207099996507168, 257907.687800001353025 ], [ 348504.983199998736382, 257906.338300000876188 ], [ 348502.534199997782707, 257905.209100000560284 ], [ 348500.750299997627735, 257904.751299999654293 ], [ 348497.182499997317791, 257903.83559999987483 ], [ 348492.27589999884367, 257902.6875 ], [ 348486.472300000488758, 257901.976799998432398 ], [ 348480.892099998891354, 257901.267700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "D9-8833-T013", "PARCEL_NAM": "5-A-3", "ACRE": ".347", "LONGITUDE": -65.02860435, "LATITUDE": 18.35156891, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.404782681, "SHAPE_Area": 1100.98248248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348484.218800000846386, 257964.251299999654293 ], [ 348473.284199997782707, 257901.122999999672174 ], [ 348471.730400003492832, 257901.41950000077486 ], [ 348467.480400003492832, 257902.053100001066923 ], [ 348463.898999996483326, 257902.914000000804663 ], [ 348460.087399996817112, 257904.661400001496077 ], [ 348457.172799997031689, 257905.971500001847744 ], [ 348455.376900002360344, 257907.06810000166297 ], [ 348449.769500002264977, 257909.912099998444319 ], [ 348447.299999997019768, 257911.447700001299381 ], [ 348446.479800000786781, 257911.847500000149012 ], [ 348480.712399996817112, 257968.17339999973774 ], [ 348484.218800000846386, 257964.251299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "D9-8833-T013", "PARCEL_NAM": "5-A-C GREEN BELT", "ACRE": ".78", "LONGITUDE": -65.02825891000001, "LATITUDE": 18.35141988, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 419.30198258600001, "SHAPE_Area": 2976.6422914899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348517.057800002396107, 257905.098499998450279 ], [ 348528.610500000417233, 257913.6261 ], [ 348534.397100001573563, 257916.557500001043081 ], [ 348541.283699996769428, 257921.718199998140335 ], [ 348532.637199997901917, 257942.083000000566244 ], [ 348524.781599998474121, 257959.750900000333786 ], [ 348527.399400003254414, 257961.008099999278784 ], [ 348537.611299999058247, 257969.256999999284744 ], [ 348540.152500003576279, 257972.851100001484156 ], [ 348544.79280000180006, 257974.683200001716614 ], [ 348550.081500001251698, 257974.329199999570847 ], [ 348553.550599999725819, 257971.999899998307228 ], [ 348556.356499999761581, 257962.938400000333786 ], [ 348550.834100000560284, 257938.78319999948144 ], [ 348546.700599998235703, 257918.172699999064207 ], [ 348543.253899998962879, 257910.280499998480082 ], [ 348531.140699997544289, 257898.073600001633167 ], [ 348518.367200002074242, 257886.663800001144409 ], [ 348501.330899998545647, 257877.549600001424551 ], [ 348479.331299997866154, 257875.220199998468161 ], [ 348457.064099997282028, 257879.066799998283386 ], [ 348444.522900000214577, 257881.848600000143051 ], [ 348437.732900001108646, 257885.629000000655651 ], [ 348436.519599996507168, 257889.601399999111891 ], [ 348434.462899997830391, 257895.581700000911951 ], [ 348431.517700001597404, 257900.888999998569489 ], [ 348430.60530000180006, 257903.324799999594688 ], [ 348430.366599999368191, 257905.321699999272823 ], [ 348429.679300002753735, 257907.537200000137091 ], [ 348431.004399999976158, 257909.546100001782179 ], [ 348432.566600002348423, 257909.780200000852346 ], [ 348435.02419999986887, 257909.7989999987185 ], [ 348436.594899997115135, 257908.922699999064207 ], [ 348451.633400000631809, 257899.932900000363588 ], [ 348455.898699998855591, 257897.300700001418591 ], [ 348461.722800001502037, 257895.346599999815226 ], [ 348468.660499997437, 257893.845300000160933 ], [ 348473.579000003635883, 257893.438900001347065 ], [ 348477.827299997210503, 257893.027300000190735 ], [ 348478.495800003409386, 257893.25450000166893 ], [ 348479.635099999606609, 257890.376200001686811 ], [ 348483.213100001215935, 257889.959499999880791 ], [ 348483.852700002491474, 257893.961800001561642 ], [ 348503.495999999344349, 257896.333299998193979 ], [ 348506.400399997830391, 257896.355599999427795 ], [ 348508.187700003385544, 257896.369300000369549 ], [ 348509.084799997508526, 257895.932100001722574 ], [ 348509.985200002789497, 257895.050700001418591 ], [ 348510.211999997496605, 257894.608300000429153 ], [ 348514.886699996888638, 257896.864900000393391 ], [ 348513.755999997258186, 257898.63289999961853 ], [ 348513.972599998116493, 257899.522799998521805 ], [ 348514.1841000020504, 257901.078999999910593 ], [ 348514.175599999725819, 257902.189300000667572 ], [ 348514.170400001108646, 257902.855500001460314 ], [ 348514.835600003600121, 257903.526900000870228 ], [ 348515.72410000115633, 257904.19990000128746 ], [ 348517.057800002396107, 257905.098499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "D9-8833-T013", "PARCEL_NAM": "5-A-1", "ACRE": ".375", "LONGITUDE": -65.0281277, "LATITUDE": 18.35161953, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.216187429, "SHAPE_Area": 1427.6859716900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348524.781599998474121, 257959.750900000333786 ], [ 348532.637199997901917, 257942.083000000566244 ], [ 348541.283699996769428, 257921.718199998140335 ], [ 348534.397100001573563, 257916.557500001043081 ], [ 348528.610500000417233, 257913.6261 ], [ 348517.057800002396107, 257905.098499998450279 ], [ 348512.096699997782707, 257911.056499999016523 ], [ 348493.951300002634525, 257959.181000001728535 ], [ 348500.716899998486042, 257956.718100000172853 ], [ 348508.430699996650219, 257955.755899999290705 ], [ 348517.673900000751019, 257956.337499998509884 ], [ 348524.781599998474121, 257959.750900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.03707875000001, "LATITUDE": 18.35001419, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 554.25611767600003, "SHAPE_Area": 1236.55864182 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347641.358400002121925, 257693.870200000703335 ], [ 347641.92059999704361, 257693.973799999803305 ], [ 347643.908399999141693, 257694.254099998623133 ], [ 347649.063900001347065, 257694.592799998819828 ], [ 347649.069700002670288, 257694.593299999833107 ], [ 347653.866599999368191, 257695.241300001740456 ], [ 347658.659299999475479, 257695.920699998736382 ], [ 347666.147100001573563, 257697.034299999475479 ], [ 347669.370800003409386, 257697.675500001758337 ], [ 347677.173799999058247, 257699.344000000506639 ], [ 347683.76240000128746, 257700.752900000661612 ], [ 347684.639700002968311, 257697.177499998360872 ], [ 347685.27929999679327, 257695.35190000012517 ], [ 347668.028399996459484, 257691.965199999511242 ], [ 347652.893899999558926, 257690.148400001227856 ], [ 347648.978399999439716, 257689.636900000274181 ], [ 347638.477386017795652, 257689.966655280935811 ], [ 347628.023400001227856, 257691.012699998915195 ], [ 347623.463235202827491, 257691.759855814947514 ], [ 347618.97406558226794, 257692.855620807822561 ], [ 347614.582500003278255, 257694.293499998748302 ], [ 347608.442488548753317, 257699.522377539280569 ], [ 347602.804700002074242, 257705.289200000464916 ], [ 347599.642742191907018, 257710.705802209908143 ], [ 347596.083079137140885, 257715.869749888312072 ], [ 347592.14580000191927, 257720.751899998635054 ], [ 347585.36527197365649, 257729.030034381954465 ], [ 347578.281599998474121, 257737.050299998372793 ], [ 347572.076333973789588, 257744.68680985562969 ], [ 347565.581600002944469, 257752.078699998557568 ], [ 347565.380699999630451, 257752.312800001353025 ], [ 347550.729599997401237, 257769.385999999940395 ], [ 347545.727914010349195, 257774.166959541238612 ], [ 347540.32866977766389, 257778.493921357992804 ], [ 347534.572937731863931, 257782.333971548476256 ], [ 347528.50450000166893, 257785.657900001853704 ], [ 347519.443728189216927, 257790.20100125396857 ], [ 347510.486400000751019, 257794.94480000063777 ], [ 347505.259212409786414, 257798.886014482966857 ], [ 347500.405699998140335, 257803.279199998825788 ], [ 347499.136200003325939, 257804.607299998402596 ], [ 347495.519255555816926, 257808.768009472987615 ], [ 347492.206236664671451, 257813.174560992658371 ], [ 347489.213799998164177, 257817.804800000041723 ], [ 347484.817225138889626, 257824.034073638205882 ], [ 347480.006300002336502, 257829.949200000613928 ], [ 347475.0287000015378, 257834.886900000274181 ], [ 347475.242600001394749, 257840.744300000369549 ], [ 347483.975100003182888, 257832.013000000268221 ], [ 347492.547600001096725, 257821.2972999997437 ], [ 347496.484421704197302, 257815.813924866350135 ], [ 347500.713112139666919, 257810.552352365950355 ], [ 347505.221199996769428, 257805.528099998831749 ], [ 347510.084526204620488, 257801.551935373514425 ], [ 347515.2753000035882, 257798.013900000602007 ], [ 347521.484899997711182, 257794.924199998378754 ], [ 347529.833200015011244, 257790.467476989986608 ], [ 347538.029600001871586, 257785.737199999392033 ], [ 347541.995505589991808, 257783.123884105414618 ], [ 347545.729301796702202, 257780.188480729004368 ], [ 347549.204899996519089, 257776.951499998569489 ], [ 347551.470399998128414, 257774.518899999558926 ], [ 347571.631700001657009, 257751.976300001144409 ], [ 347580.292400002479553, 257740.54280000180006 ], [ 347580.598800003528595, 257740.177299998700619 ], [ 347607.703299999237061, 257707.840199999511242 ], [ 347610.38908111123601, 257704.464308226801222 ], [ 347613.581385335710365, 257701.56271225537057 ], [ 347617.197614077536855, 257699.210488811600953 ], [ 347621.144199997186661, 257697.468499999493361 ], [ 347625.441075070295483, 257695.822585799149238 ], [ 347629.90915688109817, 257694.72330699878512 ], [ 347634.47919999808073, 257694.187699999660254 ], [ 347637.91254326881608, 257693.893386832205579 ], [ 347641.358400002121925, 257693.870200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-803-T014", "PARCEL_NAM": "4-47", "ACRE": "3.0", "LONGITUDE": -65.0364872, "LATITUDE": 18.35239331, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 495.23868225699999, "SHAPE_Area": 13728.3594245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347600.67059999704361, 257930.900600001215935 ], [ 347577.433600001037121, 258070.991200000047684 ], [ 347579.836400002241135, 258072.910599999129772 ], [ 347584.690399996936321, 258071.050500001758337 ], [ 347587.955200001597404, 258066.433200001716614 ], [ 347596.029100000858307, 258065.232700001448393 ], [ 347598.442699998617172, 258065.885800000280142 ], [ 347604.004199996590614, 258075.641600001603365 ], [ 347607.146700002253056, 258085.377599999308586 ], [ 347610.350400000810623, 258087.936999998986721 ], [ 347636.127199999988079, 258091.103199999779463 ], [ 347643.360600002110004, 258093.906599998474121 ], [ 347657.058899998664856, 258095.074200000613928 ], [ 347661.135499998927116, 258089.830200001597404 ], [ 347662.013700000941753, 258081.393699999898672 ], [ 347664.465000003576279, 258077.614100001752377 ], [ 347666.901900000870228, 258075.52309999987483 ], [ 347679.837099999189377, 258071.618200000375509 ], [ 347692.80460000038147, 258063.913800001144409 ], [ 347660.797399997711182, 257924.129700001329184 ], [ 347647.872299998998642, 257927.302200000733137 ], [ 347639.251396749808919, 257929.040402721235296 ], [ 347630.515600003302097, 257930.053899999707937 ], [ 347613.158900000154972, 257930.900600001215935 ], [ 347600.67059999704361, 257930.900600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89904697, "LATITUDE": 18.36234021, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.721897628299999, "SHAPE_Area": 194.63303342399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362142.679399996995926, 259223.111699998378754 ], [ 362152.178900003433228, 259243.876600001007318 ], [ 362158.656400002539158, 259240.763199999928474 ], [ 362152.335400000214577, 259225.512699998915195 ], [ 362155.575000002980232, 259223.850499998778105 ], [ 362153.202799998223782, 259218.342599999159575 ], [ 362142.679399996995926, 259223.111699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89873056, "LATITUDE": 18.36210037, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.375503057, "SHAPE_Area": 401.52061374900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362212.331600002944469, 259187.373599998652935 ], [ 362208.344999998807907, 259182.063700001686811 ], [ 362195.334299996495247, 259194.83390000090003 ], [ 362184.7820999994874, 259202.980200000107288 ], [ 362175.059600003063679, 259208.388999998569489 ], [ 362153.202799998223782, 259218.342599999159575 ], [ 362155.575000002980232, 259223.850499998778105 ], [ 362177.437200002372265, 259213.263700000941753 ], [ 362185.538000002503395, 259208.896999999880791 ], [ 362192.024499997496605, 259204.728199999779463 ], [ 362201.757799997925758, 259198.05290000140667 ], [ 362212.331600002944469, 259187.373599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89836685, "LATITUDE": 18.36159755, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.78712701000001, "SHAPE_Area": 298.21061878699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362233.296800002455711, 259116.215399999171495 ], [ 362229.918700002133846, 259110.679499998688698 ], [ 362226.47580000013113, 259136.19370000064373 ], [ 362225.631800003349781, 259140.619699999690056 ], [ 362223.968800000846386, 259146.516699999570847 ], [ 362221.486900001764297, 259153.884700000286102 ], [ 362216.541199997067451, 259166.509799998253584 ], [ 362214.071900002658367, 259172.400199998170137 ], [ 362211.611599996685982, 259177.235300000756979 ], [ 362208.344999998807907, 259182.063700001686811 ], [ 362210.89639999717474, 259185.462099999189377 ], [ 362214.802100002765656, 259180.448499999940395 ], [ 362224.856299996376038, 259155.445300001651049 ], [ 362227.898999996483326, 259148.301500000059605 ], [ 362229.75110000371933, 259140.760899998247623 ], [ 362230.677199997007847, 259138.115100000053644 ], [ 362231.338600002229214, 259132.691100001335144 ], [ 362231.867799997329712, 259126.473400000482798 ], [ 362233.296800002455711, 259116.215399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89942341, "LATITUDE": 18.36055964, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.983674009, "SHAPE_Area": 650.78192173800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362105.188400000333786, 259080.527800001204014 ], [ 362106.817199997603893, 259078.64130000025034 ], [ 362110.144900001585484, 259066.636199999600649 ], [ 362119.204999998211861, 259044.334399998188019 ], [ 362122.685599997639656, 259014.387600000947714 ], [ 362121.935000002384186, 259007.837499998509884 ], [ 362121.148500002920628, 259005.509100001305342 ], [ 362119.5574000030756, 259002.962900001555681 ], [ 362117.971799999475479, 258999.783599998801947 ], [ 362112.428300000727177, 258987.916900001466274 ], [ 362111.64360000193119, 258985.377399999648333 ], [ 362102.799300000071526, 258982.349700000137091 ], [ 362105.967000000178814, 258989.13060000166297 ], [ 362109.935599997639656, 258996.551399998366833 ], [ 362111.533900000154972, 258998.253199998289347 ], [ 362112.309600003063679, 259001.848200000822544 ], [ 362113.906099997460842, 259003.761100001633167 ], [ 362116.269199997186661, 259010.324299998581409 ], [ 362114.514600001275539, 259026.986299999058247 ], [ 362113.586000002920628, 259041.333099998533726 ], [ 362109.457299999892712, 259052.698399998247623 ], [ 362108.636600002646446, 259054.380399998277426 ], [ 362107.812299996614456, 259056.484600000083447 ], [ 362105.3412000015378, 259062.586100000888109 ], [ 362101.218000002205372, 259073.31810000166297 ], [ 362100.397299997508526, 259075.000100001692772 ], [ 362099.571199998259544, 259077.315400000661612 ], [ 362096.682599999010563, 259083.600099999457598 ], [ 362105.188400000333786, 259080.527800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89836734, "LATITUDE": 18.36092726, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.32521255500001, "SHAPE_Area": 780.39933341699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362231.074000000953674, 259033.604400001466274 ], [ 362229.61879999935627, 259033.472199998795986 ], [ 362229.61879999935627, 259035.721099998801947 ], [ 362229.221900001168251, 259039.557599999010563 ], [ 362226.576099999248981, 259047.230500001460314 ], [ 362221.68129999935627, 259057.549300000071526 ], [ 362214.112499997019768, 259072.975499998778105 ], [ 362210.014399997889996, 259080.752399999648333 ], [ 362229.918700002133846, 259110.679499998688698 ], [ 362230.04450000077486, 259095.903999999165535 ], [ 362230.809399999678135, 259071.307599999010563 ], [ 362231.074000000953674, 259064.825300000607967 ], [ 362231.470899999141693, 259060.327399998903275 ], [ 362231.867799997329712, 259055.564899999648333 ], [ 362231.89919999986887, 259049.301500000059605 ], [ 362232.529200002551079, 259040.483600001782179 ], [ 362231.603200003504753, 259035.588799998164177 ], [ 362231.074000000953674, 259033.604400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101015400", "MAP": "D9-5940-T95", "PARCEL_NAM": "22-35A", "ACRE": null, "LONGITUDE": -64.89459461, "LATITUDE": 18.35831391, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.70359857800003, "SHAPE_Area": 3672.8165615100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362663.890600003302097, 258809.623399998992682 ], [ 362618.482900001108646, 258744.445999998599291 ], [ 362579.679200001060963, 258755.949700001627207 ], [ 362632.225100003182888, 258835.117600001394749 ], [ 362638.707900002598763, 258831.370999999344349 ], [ 362650.037699997425079, 258826.608600001782179 ], [ 362671.053900003433228, 258820.658900000154972 ], [ 362663.890600003302097, 258809.623399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-48", "ACRE": null, "LONGITUDE": -64.89110913, "LATITUDE": 18.35846105, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.357196297, "SHAPE_Area": 1946.2354805800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363010.018100000917912, 258786.702899999916553 ], [ 362991.541199997067451, 258778.530099999159575 ], [ 362964.763899996876717, 258798.1537000015378 ], [ 362968.764899998903275, 258801.775100000202656 ], [ 362974.337099999189377, 258810.264400001615286 ], [ 362975.130800001323223, 258811.748599998652935 ], [ 362978.280599996447563, 258820.640299998223782 ], [ 362979.779899999499321, 258833.951400000602007 ], [ 363012.01799999922514, 258835.903999999165535 ], [ 363012.039599999785423, 258833.371100001037121 ], [ 363013.810500003397465, 258814.809300001710653 ], [ 363012.345299996435642, 258797.487700000405312 ], [ 363010.018100000917912, 258786.702899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101020500", "MAP": "D9-7648-T005", "PARCEL_NAM": "19-E", "ACRE": "1.0", "LONGITUDE": -64.89878853, "LATITUDE": 18.35837746, "OBJECTID_1": 6372, "PARCEL_NO_": "103101020500", "Tax_Legal_": "MANDAHL 19E GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS 2 INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 97700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.56664124500003, "SHAPE_Area": 3451.8064491800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362221.460600003600121, 258778.348999999463558 ], [ 362197.32880000025034, 258771.396499998867512 ], [ 362181.256499998271465, 258764.932199999690056 ], [ 362167.608499996364117, 258757.854400001466274 ], [ 362164.383299998939037, 258757.828000001609325 ], [ 362159.532799996435642, 258759.265999998897314 ], [ 362154.649999998509884, 258764.503299999982119 ], [ 362153.82209999859333, 258767.029699999839067 ], [ 362154.601400002837181, 258770.202500000596046 ], [ 362153.651299998164177, 258787.08219999819994 ], [ 362148.67849999666214, 258802.873500000685453 ], [ 362143.777699999511242, 258810.221700001507998 ], [ 362138.083200000226498, 258816.085700001567602 ], [ 362124.293200001120567, 258825.683100000023842 ], [ 362124.277000002563, 258827.582800000905991 ], [ 362125.884199999272823, 258828.229299999773502 ], [ 362150.118500001728535, 258823.150299999862909 ], [ 362159.866200000047684, 258814.786299999803305 ], [ 362165.541000001132488, 258811.244199998676777 ], [ 362172.014799997210503, 258808.55290000140667 ], [ 362191.3699000030756, 258808.289099998772144 ], [ 362199.427699998021126, 258808.988400001078844 ], [ 362230.825300000607967, 258814.944899998605251 ], [ 362221.460600003600121, 258778.348999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023500", "MAP": "D9-5174-T91", "PARCEL_NAM": "20-c", "ACRE": null, "LONGITUDE": -64.89669327, "LATITUDE": 18.35837157, "OBJECTID_1": 6399, "PARCEL_NO_": "103101023500", "Tax_Legal_": "MANDAHL 20-C GREAT NORTHSIDE QTR.", "Name": "THOMAS, AVERYL A.", "Address": "PO Box 302023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.311902917, "SHAPE_Area": 3529.7626963100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362365.702500000596046, 258789.873199999332428 ], [ 362366.487199999392033, 258792.41270000115037 ], [ 362364.82599999755621, 258798.098700001835823 ], [ 362362.38910000026226, 258800.189699999988079 ], [ 362359.156700000166893, 258801.007599998265505 ], [ 362353.517899997532368, 258800.328099999576807 ], [ 362348.665600001811981, 258801.977200001478195 ], [ 362354.219899997115135, 258812.577300000935793 ], [ 362381.612899996340275, 258815.334600001573563 ], [ 362420.2871999964118, 258819.0287000015378 ], [ 362447.822300001978874, 258805.110800001770258 ], [ 362420.040100000798702, 258753.376499999314547 ], [ 362365.702500000596046, 258789.873199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024800", "MAP": null, "PARCEL_NAM": "22-35 REM", "ACRE": null, "LONGITUDE": -64.89391812, "LATITUDE": 18.3583877, "OBJECTID_1": 6412, "PARCEL_NO_": "103101024800", "Tax_Legal_": "22-35 REM.ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "PAUL E SMITH LIVING TRUST", "Address": "PO Box 307776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.42013415900001, "SHAPE_Area": 1913.3859436800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362740.572999998927116, 258800.540699999779463 ], [ 362690.831600002944469, 258770.791600000113249 ], [ 362686.7820999994874, 258772.86939999833703 ], [ 362663.890600003302097, 258809.623399998992682 ], [ 362671.053900003433228, 258820.658900000154972 ], [ 362692.070200003683567, 258814.709199998527765 ], [ 362713.883799999952316, 258809.82149999961257 ], [ 362740.572999998927116, 258800.540699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101020600", "MAP": "C9-24-T58", "PARCEL_NAM": "19-D", "ACRE": null, "LONGITUDE": -64.89779061, "LATITUDE": 18.35838, "OBJECTID_1": 6373, "PARCEL_NO_": "103101020600", "Tax_Legal_": "MANDAHL 19D GREAT NORTHSIDE QTR", "Name": "NICHOLAS, CLAIRE M", "Address": "6541 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 118000, "Improved_V": 380900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.032872188, "SHAPE_Area": 4149.6570836399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362294.876400001347065, 258774.094799999147654 ], [ 362298.882799997925758, 258777.082899998873472 ], [ 362299.640600003302097, 258782.788600001484156 ], [ 362297.194700002670288, 258785.934999998658895 ], [ 362293.152300000190735, 258787.168499998748302 ], [ 362288.321599997580051, 258786.284499999135733 ], [ 362285.91889999806881, 258784.364999998360872 ], [ 362252.060999996960163, 258783.243599999696016 ], [ 362236.755400002002716, 258781.429499998688698 ], [ 362221.460600003600121, 258778.348999999463558 ], [ 362230.825300000607967, 258814.944899998605251 ], [ 362254.197599999606609, 258816.402699999511242 ], [ 362281.623000003397465, 258815.360599998384714 ], [ 362301.809600003063679, 258812.148400001227856 ], [ 362329.294299997389317, 258804.140700001269579 ], [ 362347.0996999964118, 258796.475900001823902 ], [ 362350.346600003540516, 258793.969399999827147 ], [ 362332.904399998486042, 258758.996199999004602 ], [ 362294.876400001347065, 258774.094799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101025900", "MAP": "D9-6338-T97", "PARCEL_NAM": "22-35C", "ACRE": ".58", "LONGITUDE": -64.894319, "LATITUDE": 18.35809658, "OBJECTID_1": 6422, "PARCEL_NO_": "103101025900", "Tax_Legal_": "22-35C MANDAHL No.1 GREAT NORTHSIDE QTR", "Name": "Brooks, Arliss", "Address": "PO Box 303874", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.195370196, "SHAPE_Area": 2599.1519132899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362682.924900002777576, 258752.361699998378754 ], [ 362635.534100003540516, 258730.653400000184774 ], [ 362618.482900001108646, 258744.445999998599291 ], [ 362663.890600003302097, 258809.623399998992682 ], [ 362686.7820999994874, 258772.86939999833703 ], [ 362684.395499996840954, 258769.050200000405312 ], [ 362681.18639999628067, 258767.124000001698732 ], [ 362677.970200002193451, 258766.042300000786781 ], [ 362672.324199996888638, 258766.207100000232458 ], [ 362671.582599997520447, 258758.601700000464916 ], [ 362678.045699998736382, 258757.176899999380112 ], [ 362682.924900002777576, 258752.361699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "103002010200", "MAP": null, "PARCEL_NAM": "1B", "ACRE": null, "LONGITUDE": -64.89999234, "LATITUDE": 18.35808105, "OBJECTID_1": 5289, "PARCEL_NO_": "103002010200", "Tax_Legal_": "MANDAHL 1B&C GR NORTHSIDE", "Name": "QUERRARD, LOUIS THOMAS P", "Address": "7472 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 198900, "Improved_V": 81700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 412.48817518300001, "SHAPE_Area": 5346.4292753199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362095.018399998545647, 258733.314699999988079 ], [ 362015.093400001525879, 258716.951699998229742 ], [ 362016.912600003182888, 258746.699599999934435 ], [ 362014.036899998784065, 258800.2939000017941 ], [ 362026.20719999819994, 258791.527499999850988 ], [ 362110.920299999415874, 258786.310300000011921 ], [ 362145.771600000560284, 258765.486099999397993 ], [ 362144.984999999403954, 258763.157699998468161 ], [ 362112.559900000691414, 258783.157299999147654 ], [ 362097.22919999808073, 258784.29839999973774 ], [ 362095.018399998545647, 258733.314699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37T", "ACRE": null, "LONGITUDE": -64.88998416, "LATITUDE": 18.35831475, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.93039302700001, "SHAPE_Area": 385.43321441099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363153.433799996972084, 258800.542300000786781 ], [ 363072.156300000846386, 258781.089699998497963 ], [ 363070.507700003683567, 258785.298099998384714 ], [ 363151.783399999141693, 258804.96169999986887 ], [ 363153.406800001859665, 258803.708399999886751 ], [ 363153.433799996972084, 258800.542300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89226246, "LATITUDE": 18.35810696, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.19217395000001, "SHAPE_Area": 2347.16043838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362908.060500003397465, 258733.728300001472235 ], [ 362890.190399996936321, 258748.991799999028444 ], [ 362833.732299998402596, 258750.42960000038147 ], [ 362834.475699998438358, 258757.824000000953674 ], [ 362836.066699996590614, 258760.370099999010563 ], [ 362837.663199998438358, 258762.282999999821186 ], [ 362871.193899996578693, 258801.820900000631809 ], [ 362905.316100001335144, 258771.913699999451637 ], [ 362902.11599999666214, 258768.932199999690056 ], [ 362898.935699999332428, 258763.628899998962879 ], [ 362898.235500000417233, 258751.168600000441074 ], [ 362900.686800003051758, 258747.388999998569489 ], [ 362905.598399996757507, 258738.774399999529123 ], [ 362908.060500003397465, 258733.728300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024800", "MAP": "D9-6338-T97", "PARCEL_NAM": "22-35-1 DRAINAGE", "ACRE": ".02", "LONGITUDE": -64.89372798, "LATITUDE": 18.35827289, "OBJECTID_1": 6412, "PARCEL_NO_": "103101024800", "Tax_Legal_": "22-35 REM.ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "PAUL E SMITH LIVING TRUST", "Address": "PO Box 307776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.19674053599999, "SHAPE_Area": 123.741572878 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362743.001000002026558, 258799.505100000649691 ], [ 362693.259499996900558, 258769.756000000983477 ], [ 362690.831600002944469, 258770.791600000113249 ], [ 362740.572999998927116, 258800.540699999779463 ], [ 362743.001000002026558, 258799.505100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101026000", "MAP": "D9-6336-T97", "PARCEL_NAM": "22-35D", "ACRE": ".63", "LONGITUDE": -64.89367834, "LATITUDE": 18.3580765, "OBJECTID_1": 6423, "PARCEL_NO_": "103101026000", "Tax_Legal_": "MANDAHL 22-35D GT. NORTHSIDE QTR.", "Name": "SMITH, PATRICK E", "Address": "PO Box 10581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.21353548100001, "SHAPE_Area": 2757.3596699499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362732.939699999988079, 258750.026900000870228 ], [ 362705.825300000607967, 258714.552299998700619 ], [ 362704.19650000333786, 258716.438799999654293 ], [ 362702.546099998056889, 258720.858300000429153 ], [ 362700.821999996900558, 258733.932000000029802 ], [ 362698.334799997508526, 258741.933200001716614 ], [ 362692.580899998545647, 258754.762800000607967 ], [ 362690.142200000584126, 258757.064899999648333 ], [ 362689.314300000667572, 258759.5912000015378 ], [ 362690.071999996900558, 258765.296900000423193 ], [ 362693.259499996900558, 258769.756000000983477 ], [ 362743.001000002026558, 258799.505100000649691 ], [ 362753.524400003254414, 258794.736099999397993 ], [ 362764.843299999833107, 258791.240100000053644 ], [ 362732.939699999988079, 258750.026900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101020700", "MAP": "D9-5174-T91", "PARCEL_NAM": "20B", "ACRE": null, "LONGITUDE": -64.89695077, "LATITUDE": 18.3579962, "OBJECTID_1": 6374, "PARCEL_NO_": "103101020700", "Tax_Legal_": "20-B ESTATE MANDAHL No.1GREAT NORTHSIDE QTR.", "Name": "TRAN", "Address": "17113 Royal Palm Drive", "City": "Groveland", "State": "Florida", "Zip": 347369084, "Country": "United States", "Land_Value": 141100, "Improved_V": 350500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.04159359, "SHAPE_Area": 3917.4951038600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362363.787000000476837, 258730.751299999654293 ], [ 362332.904399998486042, 258758.996199999004602 ], [ 362350.346600003540516, 258793.969399999827147 ], [ 362352.814099997282028, 258788.28999999910593 ], [ 362356.057300001382828, 258786.205699998885393 ], [ 362362.504199996590614, 258786.680599998682737 ], [ 362365.702500000596046, 258789.873199999332428 ], [ 362420.040100000798702, 258753.376499999314547 ], [ 362393.048000000417233, 258703.548599999397993 ], [ 362363.787000000476837, 258730.751299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499B-T97", "PARCEL_NAM": "37-35", "ACRE": null, "LONGITUDE": -64.88994974000001, "LATITUDE": 18.35812224, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.40400957, "SHAPE_Area": 3176.4091254199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363158.613300003111362, 258760.47690000012517 ], [ 363077.306999996304512, 258744.401599999517202 ], [ 363077.190099999308586, 258758.121700000017881 ], [ 363072.156300000846386, 258781.089699998497963 ], [ 363153.433799996972084, 258800.542300000786781 ], [ 363152.650799997150898, 258797.791600000113249 ], [ 363155.994800001382828, 258783.886799998581409 ], [ 363158.613300003111362, 258760.47690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": "37-47", "ACRE": null, "LONGITUDE": -64.89133569000001, "LATITUDE": 18.35812807, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.016717597, "SHAPE_Area": 2000.61842271 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362990.120999999344349, 258755.931400001049042 ], [ 362987.711000002920628, 258754.856300000101328 ], [ 362965.224200002849102, 258744.117499999701977 ], [ 362934.303800001740456, 258776.795099999755621 ], [ 362950.350900001823902, 258786.214499998837709 ], [ 362964.763899996876717, 258798.1537000015378 ], [ 362991.541199997067451, 258778.530099999159575 ], [ 363010.018100000917912, 258786.702899999916553 ], [ 362997.286100000143051, 258766.755899999290705 ], [ 362996.499600000679493, 258764.427400000393391 ], [ 362990.120999999344349, 258755.931400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024400", "MAP": "A9-200-T73", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89335277000001, "LATITUDE": 18.3580448, "OBJECTID_1": 6408, "PARCEL_NO_": "103101024400", "Tax_Legal_": "MANDAHL 23-17 GT. NORTHSIDE", "Name": "SMITHEN, J & S. & MAYNARD, D", "Address": "PO Box 307434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 47400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.986206705, "SHAPE_Area": 950.49896797999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362780.919900000095367, 258772.468899998813868 ], [ 362765.183200001716614, 258751.346200000494719 ], [ 362758.828000001609325, 258740.106199998408556 ], [ 362732.939699999988079, 258750.026900000870228 ], [ 362755.364500001072884, 258778.995400000363588 ], [ 362780.919900000095367, 258772.468899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "103101020800", "MAP": null, "PARCEL_NAM": "1A", "ACRE": null, "LONGITUDE": -64.89942237, "LATITUDE": 18.3580781, "OBJECTID_1": 6375, "PARCEL_NO_": "103101020800", "Tax_Legal_": "1A&1D MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "BERRY, JENINE R.", "Address": "7630 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172600, "Improved_V": 212000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.70695343099999, "SHAPE_Area": 1737.8957512500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362133.077399998903275, 258741.106499999761581 ], [ 362095.018399998545647, 258733.314699999988079 ], [ 362097.22919999808073, 258784.29839999973774 ], [ 362112.559900000691414, 258783.157299999147654 ], [ 362144.984999999403954, 258763.157699998468161 ], [ 362142.609300002455711, 258758.072000000625849 ], [ 362134.639600001275539, 258747.029899999499321 ], [ 362133.077399998903275, 258741.106499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": "37-51", "ACRE": null, "LONGITUDE": -64.8907436, "LATITUDE": 18.35798103, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.39127639599999, "SHAPE_Area": 2595.83477498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363062.170500002801418, 258722.746199999004602 ], [ 362990.120999999344349, 258755.931400001049042 ], [ 362996.499600000679493, 258764.427400000393391 ], [ 362997.286100000143051, 258766.755899999290705 ], [ 363010.018100000917912, 258786.702899999916553 ], [ 363065.880199998617172, 258760.562300000339746 ], [ 363067.600699998438358, 258747.910700000822544 ], [ 363066.853699997067451, 258740.938499998301268 ], [ 363065.269900001585484, 258737.548099998384714 ], [ 363062.170500002801418, 258722.746199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021100", "MAP": "D9-3468-T86", "PARCEL_NAM": "19-F", "ACRE": null, "LONGITUDE": -64.89840803, "LATITUDE": 18.35789943, "OBJECTID_1": 6377, "PARCEL_NO_": "103101021100", "Tax_Legal_": "MANDAHL 19F GREAT NORTHSIDE QTR", "Name": "LOEWY, LYNNE STEWART & WILLIAM EMIL", "Address": "506 Anderson Ave", "City": "ROCKVILLE", "State": "Maryland", "Zip": 20850, "Country": "United States", "Land_Value": 143700, "Improved_V": 264000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.914818975, "SHAPE_Area": 5742.1196963399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362229.503300003707409, 258686.166999999433756 ], [ 362217.352799996733665, 258692.611400000751019 ], [ 362195.433100000023842, 258709.952799998223782 ], [ 362179.978299997746944, 258725.658300001174212 ], [ 362166.119999997317791, 258743.276799999177456 ], [ 362166.069600000977516, 258749.186999998986721 ], [ 362168.46339999884367, 258752.161899998784065 ], [ 362197.38459999859333, 258764.853100001811981 ], [ 362215.076700001955032, 258770.486299999058247 ], [ 362239.2246999964118, 258775.539099998772144 ], [ 362259.366300001740456, 258777.603799998760223 ], [ 362281.944899998605251, 258777.577500000596046 ], [ 362229.503300003707409, 258686.166999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021200", "MAP": null, "PARCEL_NAM": "19G", "ACRE": null, "LONGITUDE": -64.89784627, "LATITUDE": 18.35774649, "OBJECTID_1": 6378, "PARCEL_NO_": "103101021200", "Tax_Legal_": "MANDAHL 19G GREAT NORTHSIDE QTR", "Name": "BARCZYK, MARK & KIRSTY", "Address": "6572 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 131200, "Improved_V": 280200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 319.59652290299999, "SHAPE_Area": 5675.5614468000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362332.904399998486042, 258758.996199999004602 ], [ 362285.279100000858307, 258670.15819999948144 ], [ 362261.017800003290176, 258678.403400000184774 ], [ 362239.207800000905991, 258682.868900001049042 ], [ 362229.503300003707409, 258686.166999999433756 ], [ 362281.944899998605251, 258777.577500000596046 ], [ 362284.363799996674061, 258777.597300000488758 ], [ 362285.994400002062321, 258775.499699998646975 ], [ 362288.424099996685982, 258774.253100000321865 ], [ 362290.848499998450279, 258773.639600001275539 ], [ 362294.876400001347065, 258774.094799999147654 ], [ 362332.904399998486042, 258758.996199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024300", "MAP": "A9-200-T73", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89305889000001, "LATITUDE": 18.35797345, "OBJECTID_1": 6407, "PARCEL_NO_": "103101024300", "Tax_Legal_": "MANDAHL 23-18 GT. NORTHSIDE", "Name": "Aldora Chapman White,Thomas White & Tameca F White", "Address": "PO Box 9743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.890597599, "SHAPE_Area": 1082.5140815 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362798.101700000464916, 258768.080899998545647 ], [ 362800.553000003099442, 258764.301300000399351 ], [ 362809.5033999979496, 258754.875399999320507 ], [ 362810.325900003314018, 258752.982299998402596 ], [ 362789.56139999628067, 258729.380899999290705 ], [ 362765.183200001716614, 258751.346200000494719 ], [ 362780.919900000095367, 258772.468899998813868 ], [ 362798.101700000464916, 258768.080899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89208311, "LATITUDE": 18.35729603, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 522.92850194200003, "SHAPE_Area": 2360.95006857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362942.5945999994874, 258655.484099999070168 ], [ 362946.238799996674061, 258606.329100001603365 ], [ 362945.455899998545647, 258603.578499998897314 ], [ 362942.236000001430511, 258602.9189000017941 ], [ 362940.618000000715256, 258603.538899999111891 ], [ 362836.304099999368191, 258732.507699999958277 ], [ 362803.733300000429153, 258769.604699999094009 ], [ 362801.2550999969244, 258776.550500001758337 ], [ 362837.663199998438358, 258762.282999999821186 ], [ 362836.066699996590614, 258760.370099999010563 ], [ 362834.475699998438358, 258757.824000000953674 ], [ 362833.732299998402596, 258750.42960000038147 ], [ 362832.958400003612041, 258746.623599998652935 ], [ 362835.427699998021126, 258740.733199998736382 ], [ 362862.314699999988079, 258708.23369999974966 ], [ 362918.527500003576279, 258640.932799998670816 ], [ 362936.014600001275539, 258670.629000000655651 ], [ 362942.5945999994874, 258655.484099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89160178, "LATITUDE": 18.35791773, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.01205651800001, "SHAPE_Area": 2139.7622833800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362985.428800001740456, 258738.79450000077486 ], [ 362966.145599998533726, 258730.615100000053644 ], [ 362924.247900001704693, 258726.683600001037121 ], [ 362920.148000001907349, 258734.671599999070168 ], [ 362917.689499996602535, 258739.295499999076128 ], [ 362908.699600003659725, 258753.365200001746416 ], [ 362909.455600000917912, 258759.282000001519918 ], [ 362911.034000001847744, 258763.305700000375509 ], [ 362934.303800001740456, 258776.795099999755621 ], [ 362965.224200002849102, 258744.117499999701977 ], [ 362987.711000002920628, 258754.856300000101328 ], [ 362988.540700003504753, 258752.11879999935627 ], [ 362985.365800000727177, 258746.182199999690056 ], [ 362985.428800001740456, 258738.79450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021300", "MAP": "F9-576-T60", "PARCEL_NAM": "20A", "ACRE": ".93", "LONGITUDE": -64.8974411, "LATITUDE": 18.35756057, "OBJECTID_1": 6379, "PARCEL_NO_": "103101021300", "Tax_Legal_": "MANDAHL 20A GREAT NORTHSIDE QTR", "Name": "YOUNG, JUANITA & PHILLIPS, JOHN", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 100400, "Improved_V": 375900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.482295889, "SHAPE_Area": 3839.7926308599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362363.787000000476837, 258730.751299999654293 ], [ 362318.51410000026226, 258649.743000000715256 ], [ 362294.999799996614456, 258664.960400000214577 ], [ 362285.279100000858307, 258670.15819999948144 ], [ 362332.904399998486042, 258758.996199999004602 ], [ 362363.787000000476837, 258730.751299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101022200", "MAP": "F9-2528-T70", "PARCEL_NAM": "22-32", "ACRE": null, "LONGITUDE": -64.8949226, "LATITUDE": 18.35783456, "OBJECTID_1": 6388, "PARCEL_NO_": "103101022200", "Tax_Legal_": "MANDAHL 22-32 GT. NORTHSIDE", "Name": "PEREZ-FERDINAND, JUDY & NATASHA S. SMITH", "Address": "394-308 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.349259803, "SHAPE_Area": 1353.8307458300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362618.482900001108646, 258744.445999998599291 ], [ 362604.204800002276897, 258716.675900001078844 ], [ 362584.842500001192093, 258717.784000001847744 ], [ 362563.75789999961853, 258731.754700001329184 ], [ 362579.679200001060963, 258755.949700001627207 ], [ 362618.482900001108646, 258744.445999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021000", "MAP": null, "PARCEL_NAM": "19H", "ACRE": null, "LONGITUDE": -64.89869403, "LATITUDE": 18.35739357, "OBJECTID_1": 6376, "PARCEL_NO_": "103101021000", "Tax_Legal_": "MANDAHL 19H GT.NORTHSIDE QTR.", "Name": "GREAVES, FLEAVIOEUS", "Address": "PO Box 4798", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 160300, "Improved_V": 227800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 397.99753817800001, "SHAPE_Area": 6210.5210734800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362174.243500001728535, 258641.596200000494719 ], [ 362159.479999996721745, 258670.817299999296665 ], [ 362144.648100003600121, 258708.059500001370907 ], [ 362138.008699998259544, 258730.170000001788139 ], [ 362139.509900003671646, 258743.270100001245737 ], [ 362144.288400001823902, 258750.275299999862909 ], [ 362146.694799996912479, 258751.772599998861551 ], [ 362150.722699999809265, 258752.227800000458956 ], [ 362154.768700003623962, 258750.57209999859333 ], [ 362165.38740000128746, 258734.615899998694658 ], [ 362167.00900000333786, 258733.573699999600649 ], [ 362180.865599997341633, 258716.166400000452995 ], [ 362193.885300002992153, 258702.340799998492002 ], [ 362210.932899996638298, 258688.970300000160933 ], [ 362220.662600003182888, 258682.717099998146296 ], [ 362232.798600003123283, 258677.961300000548363 ], [ 362256.215899996459484, 258674.142200000584126 ], [ 362277.228500001132488, 258668.614599999040365 ], [ 362272.521899998188019, 258653.166299998760223 ], [ 362174.243500001728535, 258641.596200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88994821, "LATITUDE": 18.35773865, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.34423946800001, "SHAPE_Area": 3761.7528944699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363158.613300003111362, 258760.47690000012517 ], [ 363158.703199997544289, 258749.922899998724461 ], [ 363156.429899998009205, 258732.805799998342991 ], [ 363152.524300001561642, 258717.99720000103116 ], [ 363147.790700003504753, 258705.71510000154376 ], [ 363070.381099998950958, 258705.503699999302626 ], [ 363071.89299999922514, 258717.33729999884963 ], [ 363075.769900001585484, 258735.52309999987483 ], [ 363077.353799998760223, 258738.913499999791384 ], [ 363077.306999996304512, 258744.401599999517202 ], [ 363158.613300003111362, 258760.47690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89087192, "LATITUDE": 18.35768126, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.33375961, "SHAPE_Area": 2821.52868902 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362999.508299998939037, 258695.213300000876188 ], [ 362994.530199997127056, 258711.637899998575449 ], [ 362992.069899998605251, 258716.472899999469519 ], [ 362988.814000003039837, 258720.034800000488758 ], [ 362985.524099998176098, 258727.607299998402596 ], [ 362984.690800003707409, 258730.7668999992311 ], [ 362985.428800001740456, 258738.79450000077486 ], [ 362985.365800000727177, 258746.182199999690056 ], [ 362988.540700003504753, 258752.11879999935627 ], [ 362987.711000002920628, 258754.856300000101328 ], [ 362990.120999999344349, 258755.931400001049042 ], [ 363062.170500002801418, 258722.746199999004602 ], [ 363061.394799999892712, 258719.151200000196695 ], [ 363056.027500003576279, 258686.598900001496077 ], [ 363046.979999996721745, 258707.423099998384714 ], [ 362999.508299998939037, 258695.213300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101025800", "MAP": "D9-6338-T97", "PARCEL_NAM": "22-35B", "ACRE": ".56", "LONGITUDE": -64.89415155, "LATITUDE": 18.35767132, "OBJECTID_1": 6421, "PARCEL_NO_": "103101025800", "Tax_Legal_": "MANDAHL 22-35B GT. NORTHSIDE QTR.", "Name": "SMITH, PAUL L", "Address": "PO Box 10581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.057623079, "SHAPE_Area": 2357.5458737200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362700.23870000243187, 258707.751600001007318 ], [ 362675.509099997580051, 258676.307300001382828 ], [ 362651.775399997830391, 258717.276299998164177 ], [ 362635.534100003540516, 258730.653400000184774 ], [ 362682.924900002777576, 258752.361699998378754 ], [ 362691.959799997508526, 258733.015099998563528 ], [ 362695.364900000393391, 258711.933600001037121 ], [ 362697.002700001001358, 258708.991700001060963 ], [ 362700.23870000243187, 258707.751600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024200", "MAP": "A9-200-T73", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89326481000001, "LATITUDE": 18.357709, "OBJECTID_1": 6406, "PARCEL_NO_": "103101024200", "Tax_Legal_": "MANDAHL 23-15 GT. NORTHSIDE", "Name": "GUISHARD, GINA", "Address": "P.O.BOX 4825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33900, "Improved_V": 350600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.531636381, "SHAPE_Area": 1189.5780677299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362745.419200003147125, 258704.954999998211861 ], [ 362758.828000001609325, 258740.106199998408556 ], [ 362765.183200001716614, 258751.346200000494719 ], [ 362789.56139999628067, 258729.380899999290705 ], [ 362787.165799997746944, 258726.61710000038147 ], [ 362781.566600002348423, 258721.2939000017941 ], [ 362779.172799997031689, 258718.318999998271465 ], [ 362777.585400000214577, 258715.350699998438358 ], [ 362774.433799996972084, 258706.670099999755621 ], [ 362771.235600002110004, 258703.47749999910593 ], [ 362764.806599996984005, 258700.891800001263618 ], [ 362759.160599999129772, 258701.056699998676777 ], [ 362745.419200003147125, 258704.954999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024100", "MAP": "A9-200-T73", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89356105, "LATITUDE": 18.35774324, "OBJECTID_1": 6405, "PARCEL_NO_": "103101024100", "Tax_Legal_": "MANDAHL 23-16 GT. NORTHSIDE", "Name": "FITZROY LEWIS (LIFE ESTATE) and VENETTA DEMMING", "Address": "620 Oak Ridge Dr", "City": "Brandon", "State": "Florida", "Zip": 33510, "Country": "United States", "Land_Value": 31700, "Improved_V": 330400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.840084219, "SHAPE_Area": 1335.2183537599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362745.419200003147125, 258704.954999998211861 ], [ 362712.281199999153614, 258713.971900001168251 ], [ 362708.360799998044968, 258714.079100001603365 ], [ 362705.825300000607967, 258714.552299998700619 ], [ 362732.939699999988079, 258750.026900000870228 ], [ 362758.828000001609325, 258740.106199998408556 ], [ 362745.419200003147125, 258704.954999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89220385, "LATITUDE": 18.35774645, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.407715166, "SHAPE_Area": 2667.6594296500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362929.407700002193451, 258688.940099999308586 ], [ 362903.415100000798702, 258711.103199999779463 ], [ 362862.314699999988079, 258708.23369999974966 ], [ 362835.427699998021126, 258740.733199998736382 ], [ 362832.958400003612041, 258746.623599998652935 ], [ 362833.732299998402596, 258750.42960000038147 ], [ 362890.190399996936321, 258748.991799999028444 ], [ 362908.060500003397465, 258733.728300001472235 ], [ 362912.160400003194809, 258725.740299999713898 ], [ 362929.407700002193451, 258688.940099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103101022100", "MAP": "D9-8904-T014", "PARCEL_NAM": "23-B-1", "ACRE": ".26", "LONGITUDE": -64.89284328, "LATITUDE": 18.35767187, "OBJECTID_1": 6387, "PARCEL_NO_": "103101022100", "Tax_Legal_": "REM. 23-B-1 MANDAHL No.1 GREAT NORTHSIDE QTR", "Name": "MADIR, ALPHONSUS", "Address": "PO Box 305664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81500, "Improved_V": 204900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.863996181, "SHAPE_Area": 1002.33673312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362830.690499998629093, 258728.873199999332428 ], [ 362819.228699997067451, 258708.559399999678135 ], [ 362806.289099998772144, 258695.094099998474121 ], [ 362789.062299996614456, 258711.580699998885393 ], [ 362817.496500000357628, 258745.0912000015378 ], [ 362821.720399998128414, 258740.620999999344349 ], [ 362826.617600001394749, 258733.695000000298023 ], [ 362829.868000000715256, 258730.76630000025034 ], [ 362830.690499998629093, 258728.873199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101022300", "MAP": "F9-2528-T70", "PARCEL_NAM": "22-33", "ACRE": ".23", "LONGITUDE": -64.89457485, "LATITUDE": 18.35770452, "OBJECTID_1": 6389, "PARCEL_NO_": "103101022300", "Tax_Legal_": "MANDAHL 22-33 GT. NORTHSIDE", "Name": "GIFT, JAMES & IDA", "Address": "6584 Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 100300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.41156277100001, "SHAPE_Area": 974.86141601999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362651.775399997830391, 258717.276299998164177 ], [ 362639.021899998188019, 258699.862300001084805 ], [ 362632.517399996519089, 258706.1418999992311 ], [ 362622.791299998760223, 258711.972899999469519 ], [ 362616.319300003349781, 258714.453000001609325 ], [ 362604.204800002276897, 258716.675900001078844 ], [ 362618.482900001108646, 258744.445999998599291 ], [ 362635.534100003540516, 258730.653400000184774 ], [ 362651.775399997830391, 258717.276299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89140404, "LATITUDE": 18.35760068, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.91442354899999, "SHAPE_Area": 2211.7618787199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362999.508299998939037, 258695.213300000876188 ], [ 362939.036700002849102, 258694.50730000063777 ], [ 362924.247900001704693, 258726.683600001037121 ], [ 362966.145599998533726, 258730.615100000053644 ], [ 362985.428800001740456, 258738.79450000077486 ], [ 362984.690800003707409, 258730.7668999992311 ], [ 362985.524099998176098, 258727.607299998402596 ], [ 362988.814000003039837, 258720.034800000488758 ], [ 362992.069899998605251, 258716.472899999469519 ], [ 362994.530199997127056, 258711.637899998575449 ], [ 362999.508299998939037, 258695.213300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101022200", "MAP": "F9-2528-T70", "PARCEL_NAM": "22-32-1", "ACRE": null, "LONGITUDE": -64.89511276, "LATITUDE": 18.35772894, "OBJECTID_1": 6388, "PARCEL_NO_": "103101022200", "Tax_Legal_": "MANDAHL 22-32 GT. NORTHSIDE", "Name": "PEREZ-FERDINAND, JUDY & NATASHA S. SMITH", "Address": "394-308 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.479485923399999, "SHAPE_Area": 118.633915594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362584.842500001192093, 258717.784000001847744 ], [ 362578.388400003314018, 258718.153400000184774 ], [ 362575.978500001132488, 258717.078200001269579 ], [ 362560.574000000953674, 258726.873500000685453 ], [ 362563.75789999961853, 258731.754700001329184 ], [ 362584.842500001192093, 258717.784000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101022600", "MAP": "B9-279-T70", "PARCEL_NAM": "22-28-1", "ACRE": null, "LONGITUDE": -64.89516123, "LATITUDE": 18.35768859, "OBJECTID_1": 6392, "PARCEL_NO_": "103101022600", "Tax_Legal_": "MANDAHL 22-28 GT. NORTHSIDE", "Name": "BESTER, MARY E", "Address": "PO Box 411", "City": "Swampscott", "State": "Massachusetts", "Zip": 1907, "Country": "United States", "Land_Value": 25800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.980434250400002, "SHAPE_Area": 125.613833434 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362575.978500001132488, 258717.078200001269579 ], [ 362572.774800002574921, 258714.518800001591444 ], [ 362571.99549999833107, 258711.346000000834465 ], [ 362556.5945999994874, 258720.719200000166893 ], [ 362560.574000000953674, 258726.873500000685453 ], [ 362575.978500001132488, 258717.078200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101022600", "MAP": "B9-279-T70", "PARCEL_NAM": "22-28", "ACRE": null, "LONGITUDE": -64.89520243, "LATITUDE": 18.35746665, "OBJECTID_1": 6392, "PARCEL_NO_": "103101022600", "Tax_Legal_": "MANDAHL 22-28 GT. NORTHSIDE", "Name": "BESTER, MARY E", "Address": "PO Box 411", "City": "Swampscott", "State": "Massachusetts", "Zip": 1907, "Country": "United States", "Land_Value": 25800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.88756357700001, "SHAPE_Area": 1437.31567999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362596.443800002336502, 258681.148699998855591 ], [ 362529.523400001227856, 258680.178800001740456 ], [ 362556.5945999994874, 258720.719200000166893 ], [ 362571.99549999833107, 258711.346000000834465 ], [ 362572.03320000320673, 258706.913400001823902 ], [ 362593.168200001120567, 258687.032499998807907 ], [ 362596.443800002336502, 258681.148699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "103101020800", "MAP": "B9-244-T69", "PARCEL_NAM": "1D", "ACRE": "2.05", "LONGITUDE": -64.89985488000001, "LATITUDE": 18.3574251, "OBJECTID_1": 6375, "PARCEL_NO_": "103101020800", "Tax_Legal_": "1A&1D MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "BERRY, JENINE R.", "Address": "7630 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172600, "Improved_V": 212000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 459.38117040899999, "SHAPE_Area": 10638.5253529 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362074.183499999344349, 258649.854200001806021 ], [ 361989.750799998641014, 258622.143199998885393 ], [ 362013.373800002038479, 258688.831000000238419 ], [ 362015.093400001525879, 258716.951699998229742 ], [ 362095.018399998545647, 258733.314699999988079 ], [ 362133.077399998903275, 258741.106499999761581 ], [ 362131.54389999806881, 258731.805799998342991 ], [ 362135.710299998521805, 258716.00789999961853 ], [ 362139.8496999964118, 258703.376200001686811 ], [ 362141.48030000180006, 258701.278599999845028 ], [ 362141.500100001692772, 258698.956700000911951 ], [ 362144.800899997353554, 258690.117800001055002 ], [ 362151.380900003015995, 258674.972899999469519 ], [ 362074.183499999344349, 258649.854200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101022400", "MAP": "F9-2528-T70", "PARCEL_NAM": "22-34", "ACRE": null, "LONGITUDE": -64.8942977, "LATITUDE": 18.35739021, "OBJECTID_1": 6390, "PARCEL_NO_": "103101022400", "Tax_Legal_": "MANDAHL 22-34 GT. NORTHSIDE", "Name": "GIFT, JAMES & IDA TYRENE", "Address": "6584 Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30000, "Improved_V": 56000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.82021621499999, "SHAPE_Area": 953.15879707600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362675.509099997580051, 258676.307300001382828 ], [ 362661.150200001895428, 258658.035799998790026 ], [ 362656.276299998164177, 258662.217799998819828 ], [ 362654.640299998223782, 258664.948600001633167 ], [ 362652.122500002384186, 258676.538100000470877 ], [ 362647.171300001442432, 258689.796500001102686 ], [ 362642.272299997508526, 258696.933600001037121 ], [ 362639.021899998188019, 258699.862300001084805 ], [ 362651.775399997830391, 258717.276299998164177 ], [ 362675.509099997580051, 258676.307300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101025700", "MAP": "D9-6205-T97", "PARCEL_NAM": "23-B-2", "ACRE": ".500", "LONGITUDE": -64.89299912, "LATITUDE": 18.35732939, "OBJECTID_1": 6420, "PARCEL_NO_": "103101025700", "Tax_Legal_": "MANDAHL 23-B-2 GT. NORTHSIDE QTR.", "Name": "PHILLIP, LARRY A. & MONET M. WHEATLEY", "Address": "2834 Spotted Eagle Dr", "City": "Jacksonville", "State": "Florida", "Zip": 32226, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.58819019000001, "SHAPE_Area": 1726.5946049700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362764.277400001883507, 258682.371100001037121 ], [ 362789.062299996614456, 258711.580699998885393 ], [ 362822.238200001418591, 258679.830299999564886 ], [ 362807.161100000143051, 258651.209300000220537 ], [ 362764.277400001883507, 258682.371100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8947242, "LATITUDE": 18.35746089, "OBJECTID_1": 6409, "PARCEL_NO_": "103101024500", "Tax_Legal_": "22-29 & 22-30 MANDAHL NO 1 GREAT NORTHSIDE QTR", "Name": "LOEWY, WILLIAM EMIL and LYNNE STEWART", "Address": "506 Anderson Ave", "City": "ROCKVILLE", "State": "Maryland", "Zip": 20850, "Country": "United States", "Land_Value": 61000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.7530161, "SHAPE_Area": 1323.4489440299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362604.555399999022484, 258675.515500001609325 ], [ 362602.883500002324581, 258682.4679000005126 ], [ 362598.788999997079372, 258689.822700001299381 ], [ 362577.655799999833107, 258709.492499999701977 ], [ 362578.442400000989437, 258711.820999998599291 ], [ 362604.2550999969244, 258710.765700001269579 ], [ 362615.565099999308586, 258708.325100000947714 ], [ 362627.713699996471405, 258702.09180000051856 ], [ 362631.772299997508526, 258698.958599999547005 ], [ 362639.09740000218153, 258690.997000001370907 ], [ 362641.546899996697903, 258687.428399998694658 ], [ 362643.18469999730587, 258684.4864999987185 ], [ 362644.01799999922514, 258681.326900001615286 ], [ 362604.555399999022484, 258675.515500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89195528, "LATITUDE": 18.3573331, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.204681655, "SHAPE_Area": 2480.0899459500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362862.314699999988079, 258708.23369999974966 ], [ 362903.415100000798702, 258711.103199999779463 ], [ 362929.407700002193451, 258688.940099999308586 ], [ 362935.152500003576279, 258677.165800001472235 ], [ 362936.014600001275539, 258670.629000000655651 ], [ 362918.527500003576279, 258640.932799998670816 ], [ 362862.314699999988079, 258708.23369999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89392089, "LATITUDE": 18.35726971, "OBJECTID_1": 6403, "PARCEL_NO_": "103101023900", "Tax_Legal_": "MANDAHL ESTATE 23-13 No.1 GREAT NORTHSIDE QTR", "Name": "WILLIAMS, LaREESA M", "Address": "8248 Plantation Mnr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44200, "Improved_V": 149000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.60201902, "SHAPE_Area": 1672.96773932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362675.509099997580051, 258676.307300001382828 ], [ 362700.23870000243187, 258707.751600001007318 ], [ 362700.280100002884865, 258702.896800000220537 ], [ 362709.289800003170967, 258686.505199998617172 ], [ 362714.982500001788139, 258680.852299999445677 ], [ 362721.485100001096725, 258674.7837999984622 ], [ 362732.008599996566772, 258670.014800000935793 ], [ 362740.931900002062321, 258663.754999998956919 ], [ 362732.069700002670288, 258662.838100001215935 ], [ 362667.616800002753735, 258656.188900001347065 ], [ 362661.150200001895428, 258658.035799998790026 ], [ 362675.509099997580051, 258676.307300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89354681, "LATITUDE": 18.35740476, "OBJECTID_1": 6404, "PARCEL_NO_": "103101024000", "Tax_Legal_": "MANDAHL 23-14 GT. NORTHSIDE", "Name": "LINCOLN, SHIRLEY H", "Address": "PO Box 503118", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 25800, "Improved_V": 137400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.26306745599999, "SHAPE_Area": 1221.2383813199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362769.687700003385544, 258695.865499999374151 ], [ 362760.911700002849102, 258684.816799998283386 ], [ 362747.355499997735023, 258666.973999999463558 ], [ 362732.760899998247623, 258676.353700000792742 ], [ 362726.287100002169609, 258679.045000001788139 ], [ 362719.795199997723103, 258683.846999999135733 ], [ 362714.097099997103214, 258690.133200000971556 ], [ 362708.32880000025034, 258704.651399999856949 ], [ 362709.113499999046326, 258707.190900001674891 ], [ 362713.139700002968311, 258707.857200000435114 ], [ 362757.598399996757507, 258695.133299998939037 ], [ 362764.858800001442432, 258694.770500000566244 ], [ 362769.687700003385544, 258695.865499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010900", "MAP": "A3-25-T36", "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.89285745, "LATITUDE": 18.3559294, "OBJECTID_1": 6434, "PARCEL_NO_": "103103010900", "Tax_Legal_": "MANDAHL 24 GREAT NORTHSIDE QTR", "Name": "LAPLACE, L. & AUBAIN, J", "Address": "6581 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 676300, "Improved_V": 149000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1148.84715886, "SHAPE_Area": 51244.788017600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362730.970299996435642, 258387.071899998933077 ], [ 362716.465199999511242, 258406.370600000023842 ], [ 362692.123400002717972, 258396.210499998182058 ], [ 362679.42339999973774, 258376.102200001478195 ], [ 362697.288699999451637, 258359.820000000298023 ], [ 362675.159199997782707, 258338.765900000929832 ], [ 362663.725199997425079, 258355.770899999886751 ], [ 362658.770400002598763, 258369.451400000602007 ], [ 362653.029100000858307, 258380.80350000038743 ], [ 362642.431999996304512, 258394.226700000464916 ], [ 362632.671700000762939, 258404.068199999630451 ], [ 362633.436700001358986, 258408.929699998348951 ], [ 362641.485399998724461, 258410.684300001710653 ], [ 362647.955700002610683, 258408.415199998766184 ], [ 362650.390799999237061, 258406.535300001502037 ], [ 362654.234999999403954, 258405.947200000286102 ], [ 362655.972000002861023, 258406.726500000804663 ], [ 362658.040600001811981, 258407.654599998146296 ], [ 362660.164499998092651, 258409.67119999974966 ], [ 362662.998099997639656, 258407.682900000363588 ], [ 362686.493100002408028, 258444.513000000268221 ], [ 362675.225900001823902, 258453.504299998283386 ], [ 362660.63289999961853, 258465.149700000882149 ], [ 362677.129299998283386, 258486.125300001353025 ], [ 362723.397299997508526, 258544.97690000012517 ], [ 362757.700099997222424, 258588.531800001859665 ], [ 362775.251999996602535, 258610.629200000315905 ], [ 362807.161100000143051, 258651.209300000220537 ], [ 362822.238200001418591, 258679.830299999564886 ], [ 362850.239799998700619, 258705.812899999320507 ], [ 362934.991800002753735, 258601.381900001317263 ], [ 362953.804899998009205, 258570.083000000566244 ], [ 362961.148000001907349, 258560.010600000619888 ], [ 362975.789300002157688, 258545.142799999564886 ], [ 362989.584700003266335, 258534.912099998444319 ], [ 362911.746500000357628, 258490.367600001394749 ], [ 362909.338299997150898, 258489.081300001591444 ], [ 362864.400600001215935, 258463.38230000063777 ], [ 362809.031199999153614, 258431.687300000339746 ], [ 362730.970299996435642, 258387.071899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89078662, "LATITUDE": 18.35730302, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.36812571799999, "SHAPE_Area": 2284.1842422999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363053.858499996364117, 258657.239100001752377 ], [ 363000.602300003170967, 258661.447299998253584 ], [ 363000.577100001275539, 258664.402399998158216 ], [ 362999.508299998939037, 258695.213300000876188 ], [ 363046.979999996721745, 258707.423099998384714 ], [ 363056.027500003576279, 258686.598900001496077 ], [ 363053.858499996364117, 258657.239100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89007996, "LATITUDE": 18.35736188, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.96913328799999, "SHAPE_Area": 2596.8532577800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363147.790700003504753, 258705.71510000154376 ], [ 363145.402300000190735, 258702.106899999082088 ], [ 363143.004900000989437, 258699.554200001060963 ], [ 363139.036300003528595, 258692.133400000631809 ], [ 363135.109099999070168, 258679.857900001108646 ], [ 363132.785400003194809, 258668.65089999884367 ], [ 363065.856100000441074, 258668.736400000751019 ], [ 363066.590499997138977, 258677.186099998652935 ], [ 363070.381099998950958, 258705.503699999302626 ], [ 363147.790700003504753, 258705.71510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8913199, "LATITUDE": 18.35729886, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.504735087, "SHAPE_Area": 1743.3469653699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363000.577100001275539, 258664.402399998158216 ], [ 362951.410099998116493, 258661.88910000026226 ], [ 362948.120099999010563, 258669.461500000208616 ], [ 362944.792300000786781, 258681.466600000858307 ], [ 362939.036700002849102, 258694.50730000063777 ], [ 362999.508299998939037, 258695.213300000876188 ], [ 363000.577100001275539, 258664.402399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101022500", "MAP": "D9-5027-T90", "PARCEL_NAM": "23C-1", "ACRE": ".4848", "LONGITUDE": -64.89320806000001, "LATITUDE": 18.35703185, "OBJECTID_1": 6391, "PARCEL_NO_": "103101022500", "Tax_Legal_": "MANDAHL 23C-1 GR NORTHSIDE QTR", "Name": "POWELL, VINCENT", "Address": "16353 Johns Folly", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 46800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.21651471199999, "SHAPE_Area": 2437.6271174499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362749.149700000882149, 258645.668200001120567 ], [ 362753.166900001466274, 258647.389800000935793 ], [ 362748.206699997186661, 258661.703600000590086 ], [ 362747.355499997735023, 258666.973999999463558 ], [ 362760.911700002849102, 258684.816799998283386 ], [ 362807.161100000143051, 258651.209300000220537 ], [ 362775.251999996602535, 258610.629200000315905 ], [ 362759.83500000089407, 258621.902100000530481 ], [ 362749.149700000882149, 258645.668200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024600", "MAP": "B9-279-T70", "PARCEL_NAM": "22-27", "ACRE": null, "LONGITUDE": -64.89524765, "LATITUDE": 18.35720401, "OBJECTID_1": 6410, "PARCEL_NO_": "103101024600", "Tax_Legal_": "MANDAHL 22-27 GT. NORTHSIDE", "Name": "MILES, RAYMOND", "Address": "PO Box 7666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.73883395199999, "SHAPE_Area": 2215.6792266900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362595.846000000834465, 258656.656899999827147 ], [ 362541.880699999630451, 258649.460200000554323 ], [ 362538.718299999833107, 258642.046100001782179 ], [ 362514.397699996829033, 258657.256900001317263 ], [ 362529.523400001227856, 258680.178800001740456 ], [ 362596.443800002336502, 258681.148699998855591 ], [ 362598.976000003516674, 258667.87049999833107 ], [ 362595.846000000834465, 258656.656899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89456038, "LATITUDE": 18.35715236, "OBJECTID_1": 6409, "PARCEL_NO_": "103101024500", "Tax_Legal_": "22-29 & 22-30 MANDAHL NO 1 GREAT NORTHSIDE QTR", "Name": "LOEWY, WILLIAM EMIL and LYNNE STEWART", "Address": "506 Anderson Ave", "City": "ROCKVILLE", "State": "Maryland", "Zip": 20850, "Country": "United States", "Land_Value": 61000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.93668842100001, "SHAPE_Area": 1541.22647966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362656.348300002515316, 258653.774599999189377 ], [ 362645.182199999690056, 258639.328899998217821 ], [ 362641.195500001311302, 258634.018899999558926 ], [ 362603.084899999201298, 258658.827100001275539 ], [ 362604.555399999022484, 258675.515500001609325 ], [ 362644.01799999922514, 258681.326900001615286 ], [ 362649.01410000026226, 258662.791600000113249 ], [ 362652.284299999475479, 258657.541000001132488 ], [ 362656.348300002515316, 258653.774599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "103101021500", "MAP": "B9-244-T69", "PARCEL_NAM": "1G", "ACRE": "4.94", "LONGITUDE": -64.89945813, "LATITUDE": 18.35659586, "OBJECTID_1": 6381, "PARCEL_NO_": "103101021500", "Tax_Legal_": "MANDAHL 1G GR NORTHSIDE", "Name": "QUERRARD, LEOPOLD & MARIE", "Address": "1G Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 711.53558202299996, "SHAPE_Area": 21208.2429997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362245.142599999904633, 258554.150400001555681 ], [ 362250.07209999859333, 258543.425000000745058 ], [ 362111.336000002920628, 258548.200100000947714 ], [ 362104.275200001895428, 258525.133099999278784 ], [ 362040.509999997913837, 258532.421700000762939 ], [ 362034.048699997365475, 258533.635400000959635 ], [ 362041.289599999785423, 258568.380399998277426 ], [ 362044.985600002110004, 258586.115299999713898 ], [ 361981.88400000333786, 258600.137600000947714 ], [ 361989.750799998641014, 258622.143199998885393 ], [ 362074.183499999344349, 258649.854200001806021 ], [ 362151.380900003015995, 258674.972899999469519 ], [ 362154.678000003099442, 258666.556200001388788 ], [ 362157.94820000231266, 258661.305599998682737 ], [ 362162.051700003445148, 258652.895399998873472 ], [ 362166.972300000488758, 258643.225400000810623 ], [ 362168.622699998319149, 258638.805900000035763 ], [ 362189.81700000166893, 258611.959399998188019 ], [ 362245.142599999904633, 258554.150400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021600", "MAP": "F9-576-T60", "PARCEL_NAM": "20A-3", "ACRE": "1.01", "LONGITUDE": -64.89825473, "LATITUDE": 18.35691679, "OBJECTID_1": 6382, "PARCEL_NO_": "103101021600", "Tax_Legal_": "MANDAHL 20A-3 GT. NORTHSIDE", "Name": "QUICK, FLORETTA", "Address": "4435 Baychester Ave", "City": "Bronx", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.332017458, "SHAPE_Area": 4445.8209021599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362263.965400002896786, 258616.36600000038743 ], [ 362215.773699998855591, 258594.017799999564886 ], [ 362192.181999996304512, 258618.311599999666214 ], [ 362174.243500001728535, 258641.596200000494719 ], [ 362272.521899998188019, 258653.166299998760223 ], [ 362277.228500001132488, 258668.614599999040365 ], [ 362290.987999998033047, 258662.605500001460314 ], [ 362298.291599996387959, 258657.176899999380112 ], [ 362292.879399999976158, 258629.901500001549721 ], [ 362263.965400002896786, 258616.36600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": "37S", "ACRE": null, "LONGITUDE": -64.89012299, "LATITUDE": 18.35717836, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.98464885600001, "SHAPE_Area": 198.29129185 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363132.785400003194809, 258668.65089999884367 ], [ 363132.004299998283386, 258665.6891999989748 ], [ 363065.075000002980232, 258665.774700000882149 ], [ 363065.856100000441074, 258668.736400000751019 ], [ 363132.785400003194809, 258668.65089999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89010901, "LATITUDE": 18.35698278, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.51617250300001, "SHAPE_Area": 2712.4234746000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363132.004299998283386, 258665.6891999989748 ], [ 363132.169699996709824, 258646.269900001585484 ], [ 363133.854299999773502, 258637.839999999850988 ], [ 363138.82880000025034, 258621.837600000202656 ], [ 363064.572499997913837, 258630.095800001174212 ], [ 363066.152800001204014, 258633.908399999141693 ], [ 363064.331600002944469, 258658.380300000309944 ], [ 363065.075000002980232, 258665.774700000882149 ], [ 363132.004299998283386, 258665.6891999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": "37L", "ACRE": null, "LONGITUDE": -64.89127223, "LATITUDE": 18.35713997, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.84275793800001, "SHAPE_Area": 124.251394234 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363000.602300003170967, 258661.447299998253584 ], [ 362952.234399996697903, 258659.78489999845624 ], [ 362951.410099998116493, 258661.88910000026226 ], [ 363000.577100001275539, 258664.402399998158216 ], [ 363000.602300003170967, 258661.447299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89123599, "LATITUDE": 18.35693788, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.958696844, "SHAPE_Area": 1808.11122847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362952.234399996697903, 258659.78489999845624 ], [ 363000.602300003170967, 258661.447299998253584 ], [ 363000.7820999994874, 258640.339400000870228 ], [ 363002.641099996864796, 258611.434799998998642 ], [ 362992.148299999535084, 258612.615499999374151 ], [ 362984.875299997627735, 258614.455800000578165 ], [ 362973.534699998795986, 258620.484700001776218 ], [ 362968.662699997425079, 258624.455600000917912 ], [ 362967.037500001490116, 258625.920000001788139 ], [ 362962.95380000025034, 258632.008299998939037 ], [ 362962.133100003004074, 258633.69029999896884 ], [ 362952.234399996697903, 258659.78489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89081486000001, "LATITUDE": 18.35690605, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.28153757499999, "SHAPE_Area": 2421.7102556499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363002.641099996864796, 258611.434799998998642 ], [ 363000.7820999994874, 258640.339400000870228 ], [ 363000.602300003170967, 258661.447299998253584 ], [ 363053.858499996364117, 258657.239100001752377 ], [ 363055.652699999511242, 258635.933400001376867 ], [ 363054.875200003385544, 258632.549499999731779 ], [ 363050.109300002455711, 258624.066799998283386 ], [ 363039.706299997866154, 258614.693500000983477 ], [ 363029.263800002634525, 258609.964000001549721 ], [ 363022.010600000619888, 258609.482400000095367 ], [ 363002.641099996864796, 258611.434799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023300", "MAP": "B9-279-T70", "PARCEL_NAM": "22-22", "ACRE": null, "LONGITUDE": -64.89559494, "LATITUDE": 18.35684998, "OBJECTID_1": 6397, "PARCEL_NO_": "103101023300", "Tax_Legal_": "MANDAHL 22-22 GT. NORTHSIDE", "Name": "SHAW, DAVID and THAMES A", "Address": "PO Box 10978", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30000, "Improved_V": 184600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.49897617600001, "SHAPE_Area": 1967.1709709700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362505.112199999392033, 258611.373599998652935 ], [ 362490.513999998569489, 258621.175500001758337 ], [ 362514.397699996829033, 258657.256900001317263 ], [ 362538.718299999833107, 258642.046100001782179 ], [ 362540.348899997770786, 258639.948499999940395 ], [ 362544.47580000013113, 258628.794300001114607 ], [ 362546.973899997770786, 258619.526599999517202 ], [ 362547.011600002646446, 258615.094000000506639 ], [ 362518.166000001132488, 258593.537500001490116 ], [ 362512.390500001609325, 258608.899999998509884 ], [ 362509.955399997532368, 258610.779899999499321 ], [ 362505.112199999392033, 258611.373599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89511255, "LATITUDE": 18.35664646, "OBJECTID_1": 6396, "PARCEL_NO_": "103101023200", "Tax_Legal_": "22-25 MANDAHL GREAT NORTHSIDE QTR.", "Name": "ROBBINS, HEATHER S and MICHELLE L", "Address": "3300 Veterans Dr", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55700, "Improved_V": 322800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.61500265399999, "SHAPE_Area": 982.15919433800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362554.694799996912479, 258610.383200000971556 ], [ 362590.473099999129772, 258624.773699998855591 ], [ 362590.491400003433228, 258622.627000000327826 ], [ 362592.960699997842312, 258616.736600000411272 ], [ 362597.028200000524521, 258612.548000000417233 ], [ 362559.417400002479553, 258578.676300000399351 ], [ 362556.973300002515316, 258581.611600000411272 ], [ 362554.496799997985363, 258588.346400000154972 ], [ 362555.175499998033047, 258603.339600000530481 ], [ 362554.694799996912479, 258610.383200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89153439, "LATITUDE": 18.35687641, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 9.5692366194100007, "SHAPE_Area": 3.8296278878500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362949.259099997580051, 258630.418499998748302 ], [ 362949.232100002467632, 258633.584699999541044 ], [ 362951.651000000536442, 258633.604499999433756 ], [ 362949.259099997580051, 258630.418499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": "37C", "ACRE": null, "LONGITUDE": -64.89145204, "LATITUDE": 18.35668875, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.473803918300007, "SHAPE_Area": 344.83952914100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362978.491300001740456, 258606.593100000172853 ], [ 362949.51799999922514, 258600.023200001567602 ], [ 362951.891999997198582, 258605.319899998605251 ], [ 362949.259099997580051, 258630.418499998748302 ], [ 362954.125699996948242, 258627.080899998545647 ], [ 362959.037299998104572, 258618.4662000015378 ], [ 362963.909299999475479, 258614.495299998670816 ], [ 362967.962499998509884, 258611.995400000363588 ], [ 362974.44539999961853, 258608.248799998313189 ], [ 362978.491300001740456, 258606.593100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89014838, "LATITUDE": 18.35659172, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.93630194600001, "SHAPE_Area": 4012.55615253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363138.82880000025034, 258621.837600000202656 ], [ 363139.823899999260902, 258599.680900000035763 ], [ 363139.0608000010252, 258594.608399998396635 ], [ 363135.930799998342991, 258583.394799999892712 ], [ 363128.796300001442432, 258568.982099998742342 ], [ 363064.122299998998642, 258588.295499999076128 ], [ 363044.720399998128414, 258594.047400001436472 ], [ 363040.607900001108646, 258603.512899998575449 ], [ 363046.232299998402596, 258605.881000000983477 ], [ 363057.430799998342991, 258616.527300000190735 ], [ 363063.008500002324581, 258624.383400000631809 ], [ 363063.782399997115135, 258628.189399998635054 ], [ 363064.572499997913837, 258630.095800001174212 ], [ 363138.82880000025034, 258621.837600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010300", "MAP": "D9-900-T70", "PARCEL_NAM": "22-18-1", "ACRE": null, "LONGITUDE": -64.89586798000001, "LATITUDE": 18.35667511, "OBJECTID_1": 6428, "PARCEL_NO_": "103103010300", "Tax_Legal_": "MANDAHL ESTATE 22-18 No.1 GREAT NORTHSIDE QTR.", "Name": "MASAR, MARTIN S. III & LAUREN S.", "Address": "PO Box 1025", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68200, "Improved_V": 333200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.992811926599998, "SHAPE_Area": 180.84673223499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362486.76519999653101, 258615.634100001305342 ], [ 362500.157899998128414, 258607.918499998748302 ], [ 362499.503899998962879, 258607.105799999088049 ], [ 362500.410899996757507, 258595.291999999433756 ], [ 362481.754299998283386, 258608.227099999785423 ], [ 362486.76519999653101, 258615.634100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89540575, "LATITUDE": 18.35647801, "OBJECTID_1": 6430, "PARCEL_NO_": "103103010500", "Tax_Legal_": "MANDAHL 22-23 GT NORTHSIDE", "Name": "MILES, NADIA", "Address": "PO Box 8045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.71183595700001, "SHAPE_Area": 1145.6658026699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362547.011600002646446, 258615.094000000506639 ], [ 362548.634999997913837, 258613.840700000524521 ], [ 362548.031900003552437, 258589.982200000435114 ], [ 362550.526399999856949, 258581.136700000613928 ], [ 362557.059600003063679, 258571.479899998754263 ], [ 362572.473099999129772, 258560.629200000315905 ], [ 362567.655000001192093, 258558.267700001597404 ], [ 362550.679200001060963, 258563.195000000298023 ], [ 362536.102700002491474, 258570.464000001549721 ], [ 362528.795500002801418, 258576.314800001680851 ], [ 362522.274899996817112, 258584.494100000709295 ], [ 362518.166000001132488, 258593.537500001490116 ], [ 362547.011600002646446, 258615.094000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89498407000001, "LATITUDE": 18.35650503, "OBJECTID_1": 6431, "PARCEL_NO_": "103103010600", "Tax_Legal_": "22-24 MANDAHL GREAT NORTHSIDE QTR.", "Name": "KIRK R. BOEGER LIVING REV. TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.17823467700001, "SHAPE_Area": 1070.4338613800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362612.468599997460842, 258598.531100001186132 ], [ 362575.664099998772144, 258564.666000001132488 ], [ 362561.055200003087521, 258575.734400000423193 ], [ 362559.417400002479553, 258578.676300000399351 ], [ 362597.028200000524521, 258612.548000000417233 ], [ 362612.468599997460842, 258598.531100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010300", "MAP": "D9-900-T70", "PARCEL_NAM": "22-18", "ACRE": null, "LONGITUDE": -64.89597648, "LATITUDE": 18.35636884, "OBJECTID_1": 6428, "PARCEL_NO_": "103103010300", "Tax_Legal_": "MANDAHL ESTATE 22-18 No.1 GREAT NORTHSIDE QTR.", "Name": "MASAR, MARTIN S. III & LAUREN S.", "Address": "PO Box 1025", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68200, "Improved_V": 333200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.51482473, "SHAPE_Area": 2028.2756204299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362471.736100003123283, 258553.68299999833107 ], [ 362448.219999998807907, 258569.111400000751019 ], [ 362455.421099998056889, 258575.714200001209974 ], [ 362469.015100002288818, 258589.124400001019239 ], [ 362481.754299998283386, 258608.227099999785423 ], [ 362500.410899996757507, 258595.291999999433756 ], [ 362496.089199997484684, 258534.672800000756979 ], [ 362493.675599999725819, 258534.01969999819994 ], [ 362483.931500002741814, 258541.961500000208616 ], [ 362478.229800000786781, 258548.669900000095367 ], [ 362473.357799999415874, 258552.640799999237061 ], [ 362471.736100003123283, 258553.68299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010400", "MAP": "D9-900-T70", "PARCEL_NAM": "22-20", "ACRE": ".30", "LONGITUDE": -64.89561263, "LATITUDE": 18.3562453, "OBJECTID_1": 6429, "PARCEL_NO_": "103103010400", "Tax_Legal_": "22-20 MANDAHL GREAT NORTHSIDE QTR", "Name": "DAVIS, CHARLES A. & NURSEEN I.", "Address": "PO Box 10541", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30300, "Improved_V": 293400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.77891747800001, "SHAPE_Area": 1448.39034582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362531.432499997317791, 258538.80180000141263 ], [ 362502.397900000214577, 258536.232400000095367 ], [ 362503.211099997162819, 258550.563099998980761 ], [ 362506.915399998426437, 258589.01240000128746 ], [ 362505.994000002741814, 258602.514899998903275 ], [ 362507.604800000786781, 258602.739100001752377 ], [ 362515.012699998915195, 258585.067899998277426 ], [ 362522.364799998700619, 258573.940099999308586 ], [ 362529.677400000393391, 258567.4560999982059 ], [ 362542.64130000025034, 258560.173900000751019 ], [ 362548.269100002944469, 258557.870999999344349 ], [ 362534.166500002145767, 258539.043800000101328 ], [ 362531.432499997317791, 258538.80180000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89398479, "LATITUDE": 18.35634901, "OBJECTID_1": 6487, "PARCEL_NO_": "103103016300", "Tax_Legal_": "MANDAHL 23E-9 GT NORTHSIDE", "Name": "FALCOFF, ARNOLDO & GRACIELA IRIARTE (TRUSTEES)", "Address": "PO Box 10894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 212800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.81252391000001, "SHAPE_Area": 1014.34920326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362711.120999999344349, 258566.196899998933077 ], [ 362682.289800003170967, 258542.951699998229742 ], [ 362681.258699998259544, 258569.329999998211861 ], [ 362680.420000001788139, 258573.122800000011921 ], [ 362677.972300000488758, 258576.48030000180006 ], [ 362673.919200003147125, 258578.980200000107288 ], [ 362691.474600002169609, 258600.6554000005126 ], [ 362701.308600001037121, 258582.159699998795986 ], [ 362711.120999999344349, 258566.196899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104014000", "MAP": "A9-499A-T97", "PARCEL_NAM": "37-40", "ACRE": null, "LONGITUDE": -64.89074873, "LATITUDE": 18.35635874, "OBJECTID_1": 6772, "PARCEL_NO_": "103104014000", "Tax_Legal_": "MANDAHL ESTATE 37-40 GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 169500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.12851622, "SHAPE_Area": 2306.2263997599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363064.122299998998642, 258588.295499999076128 ], [ 363053.134199999272823, 258552.953000001609325 ], [ 363030.645499996840954, 258542.425299998372793 ], [ 363003.681199997663498, 258584.001200001686811 ], [ 363005.151799999177456, 258600.689599998295307 ], [ 363024.521200001239777, 258598.737199999392033 ], [ 363030.966300003230572, 258599.423200000077486 ], [ 363040.607900001108646, 258603.512899998575449 ], [ 363044.720399998128414, 258594.047400001436472 ], [ 363064.122299998998642, 258588.295499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499A-T97", "PARCEL_NAM": "37A GREENBELT", "ACRE": null, "LONGITUDE": -64.89131551, "LATITUDE": 18.35650731, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.67784772100001, "SHAPE_Area": 630.53358903699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362961.007799997925758, 258576.474700000137091 ], [ 362951.200800001621246, 258591.804299999028444 ], [ 362951.981899999082088, 258594.765999998897314 ], [ 362988.203000001609325, 258602.450699999928474 ], [ 363005.151799999177456, 258600.689599998295307 ], [ 362961.007799997925758, 258576.474700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103016100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8948015, "LATITUDE": 18.35636816, "OBJECTID_1": 6485, "PARCEL_NO_": "103103016100", "Tax_Legal_": "MANDAHL 23E-5 GT NORTHSIDE", "Name": "HEILEMAN, DENNIS", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24200, "Improved_V": 174500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.83380714699999, "SHAPE_Area": 1304.5516869400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362627.851499997079372, 258591.268800001591444 ], [ 362615.279500000178814, 258552.535799998790026 ], [ 362590.247900001704693, 258556.552799999713898 ], [ 362575.664099998772144, 258564.666000001132488 ], [ 362612.468599997460842, 258598.531100001186132 ], [ 362618.951499998569489, 258594.784499999135733 ], [ 362627.851499997079372, 258591.268800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89449105, "LATITUDE": 18.35630644, "OBJECTID_1": 6484, "PARCEL_NO_": "103103016000", "Tax_Legal_": "MANDAHL 23E-6 GT NORTHSIDE", "Name": "GREAUX, REED", "Address": "PO Box 302448", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 36600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.990049486, "SHAPE_Area": 1342.51224789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362662.646999999880791, 258576.988099999725819 ], [ 362646.005699999630451, 258542.654699999839067 ], [ 362632.242700003087521, 258549.085999999195337 ], [ 362615.279500000178814, 258552.535799998790026 ], [ 362627.851499997079372, 258591.268800001591444 ], [ 362662.646999999880791, 258576.988099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104014100", "MAP": "A9-499A-T97", "PARCEL_NAM": "37-42", "ACRE": null, "LONGITUDE": -64.8903521, "LATITUDE": 18.35609482, "OBJECTID_1": 6773, "PARCEL_NO_": "103104014100", "Tax_Legal_": "MANDAHL ESTATE 37-42 GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 264600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.85355956900003, "SHAPE_Area": 4341.2207364300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363011.367799997329712, 258533.612700000405312 ], [ 363030.645499996840954, 258542.425299998372793 ], [ 363053.134199999272823, 258552.953000001609325 ], [ 363064.122299998998642, 258588.295499999076128 ], [ 363128.796300001442432, 258568.982099998742342 ], [ 363124.016000002622604, 258562.188000001013279 ], [ 363112.020199999213219, 258550.479600001126528 ], [ 363104.79389999806881, 258546.831900000572205 ], [ 363100.80009999871254, 258542.366200000047684 ], [ 363098.442299999296665, 258535.169799998402596 ], [ 363097.70610000193119, 258526.931099999696016 ], [ 363100.177199997007847, 258520.829599998891354 ], [ 363104.232199996709824, 258518.118599999696016 ], [ 363099.397900000214577, 258517.656800001859665 ], [ 363092.965400002896786, 258515.493200000375509 ], [ 363085.7516999989748, 258510.368000000715256 ], [ 363082.556999996304512, 258506.753199998289347 ], [ 363079.380300000309944, 258501.027699999511242 ], [ 363077.855800002813339, 258490.671599999070168 ], [ 363075.3074000030756, 258505.849500000476837 ], [ 363070.404799997806549, 258513.4087999984622 ], [ 363066.342699997127056, 258516.964099999517202 ], [ 363059.051700003445148, 258520.915199998766184 ], [ 363022.693899996578693, 258529.27250000089407 ], [ 363011.367799997329712, 258533.612700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004053800", "MAP": "D9-8303-T009", "PARCEL_NAM": "1A-4", "ACRE": ".06", "LONGITUDE": -64.90255254, "LATITUDE": 18.35569932, "OBJECTID_1": 6319, "PARCEL_NO_": "103004053800", "Tax_Legal_": "1A-4 ESTATE WINTBERG GREAT NORTHSIDE", "Name": "EMELDA LEDEE REVOCABLE TRUST", "Address": "PO Box 12265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43800, "Improved_V": 189300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.94155877599999, "SHAPE_Area": 1311.4442537 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361759.646600000560284, 258498.800500001758337 ], [ 361825.703100003302097, 258512.424499999731779 ], [ 361818.212300002574921, 258501.8935999982059 ], [ 361812.616700001060963, 258496.148299999535084 ], [ 361803.002099998295307, 258488.892400000244379 ], [ 361774.109700001776218, 258472.823899999260902 ], [ 361768.51410000026226, 258467.078600000590086 ], [ 361766.942800000309944, 258462.21059999987483 ], [ 361762.726000003516674, 258483.918699998408556 ], [ 361759.646600000560284, 258498.800500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103015900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89423322, "LATITUDE": 18.35611084, "OBJECTID_1": 6483, "PARCEL_NO_": "103103015900", "Tax_Legal_": "23E-7 ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "CAMPBELL, KENNETH M. & MICHELLE F.", "Address": "7900 Regatta Point Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.81182213400001, "SHAPE_Area": 1156.8992758300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362662.646999999880791, 258576.988099999725819 ], [ 362673.98030000180006, 258571.80350000038743 ], [ 362674.808200001716614, 258569.277199998497963 ], [ 362676.949500001966953, 258507.233199998736382 ], [ 362676.161200001835823, 258505.115800000727177 ], [ 362672.935900002717972, 258505.089400000870228 ], [ 362664.684000000357628, 258527.186700001358986 ], [ 362656.548900000751019, 258535.563900001347065 ], [ 362646.005699999630451, 258542.654699999839067 ], [ 362662.646999999880791, 258576.988099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103012300", "MAP": null, "PARCEL_NAM": "22-17", "ACRE": null, "LONGITUDE": -64.8963001, "LATITUDE": 18.35609109, "OBJECTID_1": 6448, "PARCEL_NO_": "103103012300", "Tax_Legal_": "MANDAHL 22-17 GT. NORTHSIDE", "Name": "DEFOE, EMANUEL", "Address": "PO Box 10368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.677396402, "SHAPE_Area": 1682.15985456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362435.693000003695488, 258525.101399999111891 ], [ 362416.2246999964118, 258538.663199998438358 ], [ 362429.822300001978874, 258551.651200000196695 ], [ 362448.219999998807907, 258569.111400000751019 ], [ 362471.736100003123283, 258553.68299999833107 ], [ 362470.164899997413158, 258548.814899999648333 ], [ 362455.974899999797344, 258510.701999999582767 ], [ 362435.693000003695488, 258525.101399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8939286, "LATITUDE": 18.35598901, "OBJECTID_1": 6488, "PARCEL_NO_": "103103016400", "Tax_Legal_": "MANDAHL 23E-8 GT. NORTHSIDE", "Name": "JOBSIS ROSSIGNOL FAMILY TRUST", "Address": "2 JOHN BREWERS BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026004, "Country": "United States", "Land_Value": 49600, "Improved_V": 210300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.425748774, "SHAPE_Area": 1561.39430176 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362677.129299998283386, 258486.125300001353025 ], [ 362672.989900000393391, 258498.756999999284744 ], [ 362678.628700003027916, 258499.436500001698732 ], [ 362682.622500002384186, 258503.902100000530481 ], [ 362682.289800003170967, 258542.951699998229742 ], [ 362711.120999999344349, 258566.196899998933077 ], [ 362723.397299997508526, 258544.97690000012517 ], [ 362677.129299998283386, 258486.125300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104020600", "MAP": "D9-9118-T016", "PARCEL_NAM": "4-19A", "ACRE": "2.64", "LONGITUDE": -64.88626596, "LATITUDE": 18.35553774, "OBJECTID_1": 6778, "PARCEL_NO_": "103104020600", "Tax_Legal_": "TABOR&HARMONY ESTATE 4-19A No.5&6 EASTEND QTR.", "Name": "GREENE, GLENN J. & NEWBURGER, JOAN", "Address": "72 Jacobs Creek Rd", "City": "West Trenton", "State": "New Jersey", "Zip": 8628, "Country": "United States", "Land_Value": 191600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 504.49494538800002, "SHAPE_Area": 13619.0595378 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363555.338500000536442, 258477.480999998748302 ], [ 363551.339299999177456, 258473.648600000888109 ], [ 363549.75900000333786, 258469.835999999195337 ], [ 363545.120700001716614, 258446.366599999368191 ], [ 363540.405100002884865, 258431.973700001835823 ], [ 363524.530599996447563, 258402.290699999779463 ], [ 363522.136900000274181, 258399.315799999982119 ], [ 363519.752099998295307, 258395.285500001162291 ], [ 363516.575400002300739, 258389.559900000691414 ], [ 363457.399899996817112, 258426.017000000923872 ], [ 363461.393700003623962, 258430.482599999755621 ], [ 363465.362300001084805, 258437.903400000184774 ], [ 363468.515600003302097, 258446.372900001704693 ], [ 363470.067100003361702, 258453.562800001353025 ], [ 363469.921499997377396, 258470.660199999809265 ], [ 363468.175800003111362, 258486.266800001263618 ], [ 363464.005800001323223, 258502.486900001764297 ], [ 363456.592500001192093, 258520.791400000452995 ], [ 363450.061099998652935, 258530.237100001424551 ], [ 363448.414300002157688, 258534.234400000423193 ], [ 363449.128899998962879, 258545.006099998950958 ], [ 363451.511900000274181, 258549.247400000691414 ], [ 363456.313799999654293, 258553.508600000292063 ], [ 363463.550800003111362, 258555.889899998903275 ], [ 363467.582400001585484, 258555.922899998724461 ], [ 363481.329300001263618, 258551.39130000025034 ], [ 363486.172499999403954, 258550.797699999064207 ], [ 363495.038400001823902, 258551.292399998754263 ], [ 363502.278999999165535, 258553.251499999314547 ], [ 363510.30799999833107, 258557.328000001609325 ], [ 363518.311700001358986, 258564.359600000083447 ], [ 363527.132600001990795, 258570.131299998611212 ], [ 363537.593099996447563, 258572.750100001692772 ], [ 363546.466099999845028, 258572.400499999523163 ], [ 363553.740900002419949, 258570.34910000115633 ], [ 363556.982400000095367, 258568.47580000013113 ], [ 363555.338500000536442, 258477.480999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103012100", "MAP": "D9-900-T70", "PARCEL_NAM": "22-21", "ACRE": ".26", "LONGITUDE": -64.89529578, "LATITUDE": 18.35605539, "OBJECTID_1": 6446, "PARCEL_NO_": "103103012100", "Tax_Legal_": "MANDAHL 22-21 GT. NORTHSIDE", "Name": "ETIENNE, HERRIE & ELIZABETH", "Address": "2934 HIGHPLAINS DR.", "City": "HOPE MILLS", "State": "North Carolina", "Zip": 28348, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.04928192400001, "SHAPE_Area": 1019.98242854 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362554.327799998223782, 258518.565000001341105 ], [ 362551.275986724416725, 258517.465807418862823 ], [ 362548.454099997878075, 258515.866200000047684 ], [ 362547.012216031376738, 258514.355181596474722 ], [ 362545.718900002539158, 258512.715199999511242 ], [ 362534.166500002145767, 258539.043800000101328 ], [ 362548.269100002944469, 258557.870999999344349 ], [ 362554.779100000858307, 258555.206999998539686 ], [ 362568.51519999653101, 258551.941899999976158 ], [ 362576.581900000572205, 258551.585799999535084 ], [ 362578.626800000667572, 258551.359400000423193 ], [ 362559.688900001347065, 258525.800400000065565 ], [ 362554.327799998223782, 258518.565000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104020700", "MAP": "G9-520-T59", "PARCEL_NAM": "4-19B", "ACRE": "1.12", "LONGITUDE": -64.88552119000001, "LATITUDE": 18.35581708, "OBJECTID_1": 6779, "PARCEL_NO_": "103104020700", "Tax_Legal_": "TARBOR & HARMONY 4-19B EAST END QTR", "Name": "COCO SOLEIL, LLC", "Address": "111 Cascade Rd", "City": "Stamford", "State": "Connecticut", "Zip": 6903, "Country": "United States", "Land_Value": 149700, "Improved_V": 1062100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.33404416799999, "SHAPE_Area": 4694.8253827899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363605.297499999403954, 258481.689599998295307 ], [ 363564.985399998724461, 258480.9375 ], [ 363560.154799997806549, 258480.053599998354912 ], [ 363555.338500000536442, 258477.480999998748302 ], [ 363556.982400000095367, 258568.47580000013113 ], [ 363571.575099997222424, 258559.307100001722574 ], [ 363582.093099996447563, 258555.171300001442432 ], [ 363589.366099998354912, 258553.331000000238419 ], [ 363603.0878000035882, 258551.754599999636412 ], [ 363630.50789999961853, 258551.34569999948144 ], [ 363608.488499999046326, 258485.726500000804663 ], [ 363605.297499999403954, 258481.689599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017700", "MAP": "D9-5577-T93", "PARCEL_NAM": "1A-2 REM", "ACRE": null, "LONGITUDE": -64.90200505, "LATITUDE": 18.35580534, "OBJECTID_1": 6052, "PARCEL_NO_": "103004017700", "Tax_Legal_": "1A-2 REM.ESTATE WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "SPL 2005 TRUST", "Address": "PO Box 11113", "City": "ST.THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 178100, "Improved_V": 227400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.52569707800001, "SHAPE_Area": 1979.85194862 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361857.118500001728535, 258478.358399998396635 ], [ 361818.433499999344349, 258475.930900000035763 ], [ 361815.139899998903275, 258483.925500001758337 ], [ 361824.682599999010563, 258499.624499998986721 ], [ 361833.420800000429153, 258515.105900000780821 ], [ 361838.192100003361702, 258522.955400001257658 ], [ 361844.572499997913837, 258531.240200001746416 ], [ 361851.768200002610683, 258538.476300001144409 ], [ 361862.988200001418591, 258546.589699998497963 ], [ 361866.987400002777576, 258550.422100000083447 ], [ 361857.118500001728535, 258478.358399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "103103010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89861622, "LATITUDE": 18.3558122, "OBJECTID_1": 6425, "PARCEL_NO_": "103103010100", "Tax_Legal_": "MANDAHL 1F GR NORTHSIDE", "Name": "QUERRARD, LOUIS LEOPOLD", "Address": "7A MANDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165900, "Improved_V": 39500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 486.19802654199998, "SHAPE_Area": 8047.6578176499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362250.07209999859333, 258543.425000000745058 ], [ 362252.640299998223782, 258525.925299998372793 ], [ 362249.693800002336502, 258493.181600000709295 ], [ 362252.265600003302097, 258475.259700000286102 ], [ 362255.591499999165535, 258463.465700000524521 ], [ 362259.709399998188019, 258453.366900000721216 ], [ 362271.994699999690056, 258431.091600000858307 ], [ 362272.041500002145767, 258425.603500001132488 ], [ 362237.983900003135204, 258447.911800000816584 ], [ 362222.565099999308586, 258459.395700000226498 ], [ 362213.630900003015995, 258466.921999998390675 ], [ 362182.710500001907349, 258499.599500000476837 ], [ 362171.348399996757507, 258508.161299999803305 ], [ 362163.25110000371933, 258512.105799999088049 ], [ 362147.074500001966953, 258517.884100001305342 ], [ 362126.875399999320507, 258522.573899999260902 ], [ 362104.275200001895428, 258525.133099999278784 ], [ 362111.336000002920628, 258548.200100000947714 ], [ 362250.07209999859333, 258543.425000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103017200", "MAP": "D9-4272-T88", "PARCEL_NAM": "21K", "ACRE": "1.00", "LONGITUDE": -64.89725023, "LATITUDE": 18.35577663, "OBJECTID_1": 6495, "PARCEL_NO_": "103103017200", "Tax_Legal_": "MANDAHL 21K GT.NORTHSIDE QTR.", "Name": "MALONE, KAREN", "Address": "PO Box 12276", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.59219494499999, "SHAPE_Area": 4052.1280686800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362314.425399996340275, 258467.113600000739098 ], [ 362314.398400001227856, 258470.279800001531839 ], [ 362317.982199996709824, 258522.871500000357628 ], [ 362319.587600000202656, 258523.728999998420477 ], [ 362366.130800001323223, 258550.285500001162291 ], [ 362372.624399997293949, 258545.272399999201298 ], [ 362375.89639999717474, 258539.8108000010252 ], [ 362377.518100000917912, 258538.7685999982059 ], [ 362381.6233000010252, 258530.147300001233816 ], [ 362387.429399996995926, 258511.196400001645088 ], [ 362375.431800000369549, 258499.699200000613928 ], [ 362329.838799998164177, 258456.262899998575449 ], [ 362314.425399996340275, 258467.113600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89500591, "LATITUDE": 18.35602167, "OBJECTID_1": 6445, "PARCEL_NO_": "103103012000", "Tax_Legal_": "MANDAHL 23E-4 No.1 GREAT NORTHSIDE QTR.", "Name": "H Weston Drumheller & Snjezana Drumheller Trust", "Address": "33144 Stone Road", "City": "Warren", "State": "Oregon", "Zip": 970539708, "Country": "United States", "Land_Value": 33800, "Improved_V": 304200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.572840464, "SHAPE_Area": 1036.22496062 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362610.153099998831749, 258547.410000000149012 ], [ 362592.87389999628067, 258520.474500000476837 ], [ 362591.818800002336502, 258518.829799998551607 ], [ 362584.787220901169349, 258520.252154467802029 ], [ 362577.664099998772144, 258521.105000000447035 ], [ 362571.760310037469026, 258521.442164081439842 ], [ 362565.855285869445652, 258521.1273544561991 ], [ 362560.020808154193219, 258520.16439790718141 ], [ 362554.327799998223782, 258518.565000001341105 ], [ 362559.688900001347065, 258525.800400000065565 ], [ 362578.626800000667572, 258551.359400000423193 ], [ 362603.217200003564358, 258548.63740000128746 ], [ 362610.153099998831749, 258547.410000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103012200", "MAP": "D9-900-T70", "PARCEL_NAM": "22-19", "ACRE": ".26", "LONGITUDE": -64.89556656000001, "LATITUDE": 18.35590177, "OBJECTID_1": 6447, "PARCEL_NO_": "103103012200", "Tax_Legal_": "MANDAHL 22-19 GT. NORTHSIDE QTR", "Name": "RICHARDS, STEPHANIE", "Address": "PO Box 81", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30800, "Improved_V": 295600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.72673565299999, "SHAPE_Area": 1157.9921549000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362545.718900002539158, 258512.715199999511242 ], [ 362544.152336366998497, 258510.179267674160656 ], [ 362542.940067029034253, 258507.456130249163834 ], [ 362542.104000002145767, 258504.594999998807907 ], [ 362542.360799998044968, 258500.469300001859665 ], [ 362539.506700001657009, 258496.568900000303984 ], [ 362535.906000003218651, 258498.901599999517202 ], [ 362507.534000001847744, 258516.401299998164177 ], [ 362504.274599999189377, 258520.385400000959635 ], [ 362501.808899998664856, 258525.85359999909997 ], [ 362502.397900000214577, 258536.232400000095367 ], [ 362531.432499997317791, 258538.80180000141263 ], [ 362534.166500002145767, 258539.043800000101328 ], [ 362545.718900002539158, 258512.715199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89605214, "LATITUDE": 18.35582126, "OBJECTID_1": 6449, "PARCEL_NO_": "103103012400", "Tax_Legal_": "MANDAHL 22-16 GREAT NORTHSIDE QTR", "Name": "SWAN, IVE ARLINGTON", "Address": "PO Box 8522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.83971781, "SHAPE_Area": 1787.9444242899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362498.64299999922514, 258518.861600000411272 ], [ 362481.994499996304512, 258485.372600000351667 ], [ 362448.098800003528595, 258488.683800000697374 ], [ 362455.974899999797344, 258510.701999999582767 ], [ 362470.164899997413158, 258548.814899999648333 ], [ 362498.64299999922514, 258518.861600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104020900", "MAP": "D9-5469-T93", "PARCEL_NAM": "4-32", "ACRE": "1.4", "LONGITUDE": -64.88448227000001, "LATITUDE": 18.35525918, "OBJECTID_1": 6781, "PARCEL_NO_": "103104020900", "Tax_Legal_": "TABOR & HARMONY 4-32 EAST END", "Name": "CASA REVOCABLE TRUST AGREEMENT", "Address": "118 Riverdown Dr", "City": "Aspen", "State": "Colorado", "Zip": 816111071, "Country": "United States", "Land_Value": 152800, "Improved_V": 653600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 478.43471067600001, "SHAPE_Area": 7534.8443826100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363711.893299996852875, 258558.133499998599291 ], [ 363729.664499998092651, 258554.479299999773502 ], [ 363742.565499998629093, 258554.584899999201298 ], [ 363706.584600001573563, 258424.045699998736382 ], [ 363687.797799997031689, 258357.608500000089407 ], [ 363676.468000002205372, 258362.370999999344349 ], [ 363660.298600003123283, 258367.304900001734495 ], [ 363655.453500002622604, 258368.109600000083447 ], [ 363651.842000000178814, 258367.907999999821186 ], [ 363666.508000001311302, 258421.560499999672174 ], [ 363699.137900002300739, 258540.930599998682737 ], [ 363703.160499997437, 258542.018899999558926 ], [ 363703.088600002229214, 258550.462099999189377 ], [ 363703.860699996352196, 258554.479200001806021 ], [ 363707.062600001692772, 258557.249600000679493 ], [ 363711.893299996852875, 258558.133499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8946842, "LATITUDE": 18.35595925, "OBJECTID_1": 6444, "PARCEL_NO_": "103103011900", "Tax_Legal_": "MANDAHL 23E-3 GR NORTHSIDE", "Name": "HUPPRICH, III F. C. & SHARON", "Address": "PO Box 12178", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53200, "Improved_V": 397000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.860050828, "SHAPE_Area": 1224.4013547300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362646.875, 258535.273600000888109 ], [ 362613.850000001490116, 258504.143100000917912 ], [ 362611.636399999260902, 258506.909699998795986 ], [ 362608.369800001382828, 258511.738200001418591 ], [ 362600.267099998891354, 258516.315900001674891 ], [ 362596.074012256634887, 258517.677238900912926 ], [ 362591.818800002336502, 258518.829799998551607 ], [ 362592.87389999628067, 258520.474500000476837 ], [ 362610.153099998831749, 258547.410000000149012 ], [ 362622.599299997091293, 258545.207400001585484 ], [ 362630.680399999022484, 258543.162599999457598 ], [ 362639.58219999819994, 258539.4358000010252 ], [ 362646.875, 258535.273600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104021000", "MAP": "D9-4976-T90", "PARCEL_NAM": "4-20", "ACRE": "1.89", "LONGITUDE": -64.88399737, "LATITUDE": 18.35546714, "OBJECTID_1": 6782, "PARCEL_NO_": "103104021000", "Tax_Legal_": "TARBOR & HARMONY 4-20 EAST END QTR", "Name": "HUMANA INTERNATIONAL, LTD.", "Address": "P.O. BOX 260 BUTTERFIELD SQ", "City": "PROV. TURKS/CAICOS", "State": null, "Zip": 0, "Country": "United States", "Land_Value": 180700, "Improved_V": 1109000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 406.54375747199998, "SHAPE_Area": 6897.2289855099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363749.47919999808073, 258405.609400000423193 ], [ 363745.406300000846386, 258410.431200001388788 ], [ 363742.112700000405312, 258418.425799999386072 ], [ 363736.49549999833107, 258415.213500000536442 ], [ 363738.964800000190735, 258409.322999998927116 ], [ 363744.675499998033047, 258401.559300001710653 ], [ 363706.584600001573563, 258424.045699998736382 ], [ 363742.565499998629093, 258554.584899999201298 ], [ 363750.614200003445148, 258556.339499998837709 ], [ 363758.673799999058247, 258556.8277000002563 ], [ 363768.371100001037121, 258554.3739 ], [ 363774.042300000786781, 258551.253899998962879 ], [ 363778.104400001466274, 258547.698600001633167 ], [ 363788.723099999129772, 258531.742400001734495 ], [ 363749.47919999808073, 258405.609400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104020800", "MAP": "G9-520-T59", "PARCEL_NAM": "4-19C", "ACRE": "1.42", "LONGITUDE": -64.8849246, "LATITUDE": 18.35556092, "OBJECTID_1": 6780, "PARCEL_NO_": "103104020800", "Tax_Legal_": "TABOR&HARMONY 4-19C EAST END QTR", "Name": "JUNE E PENICK TRUST & EDWIN L MILLER TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 162300, "Improved_V": 427300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 387.76417027299999, "SHAPE_Area": 7930.2136094199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363699.137900002300739, 258540.930599998682737 ], [ 363666.508000001311302, 258421.560499999672174 ], [ 363620.077200002968311, 258450.56870000064373 ], [ 363593.325099997222424, 258467.237199999392033 ], [ 363599.708999998867512, 258475.100000001490116 ], [ 363605.297499999403954, 258481.689599998295307 ], [ 363608.488499999046326, 258485.726500000804663 ], [ 363630.50789999961853, 258551.34569999948144 ], [ 363638.585400000214577, 258549.723099999129772 ], [ 363646.652099996805191, 258549.366900000721216 ], [ 363653.097199998795986, 258550.05290000140667 ], [ 363661.140500001609325, 258552.440799999982119 ], [ 363666.786499999463558, 258552.27589999884367 ], [ 363671.655000001192093, 258548.727200001478195 ], [ 363673.343099996447563, 258539.875100001692772 ], [ 363674.975500002503395, 258537.566399998962879 ], [ 363678.215199999511242, 258535.904199998825788 ], [ 363683.852200001478195, 258536.794700000435114 ], [ 363687.030599996447563, 258542.309099998325109 ], [ 363689.433399997651577, 258544.22859999909997 ], [ 363693.459600001573563, 258544.894900001585484 ], [ 363696.697400003671646, 258543.44370000064373 ], [ 363699.137900002300739, 258540.930599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89663563000001, "LATITUDE": 18.35587215, "OBJECTID_1": 6453, "PARCEL_NO_": "103103012800", "Tax_Legal_": "MANDAHL 22-13 GR NORTHSIDE", "Name": "RHYMER, IDA & OTHERS", "Address": "PO Box 11241", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28800, "Improved_V": 202300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.90176725200001, "SHAPE_Area": 1048.05040465 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362435.693000003695488, 258525.101399999111891 ], [ 362413.360799998044968, 258496.209899999201298 ], [ 362404.453599996864796, 258500.570000000298023 ], [ 362400.396899998188019, 258503.49210000038147 ], [ 362394.749099999666214, 258503.868099998682737 ], [ 362391.536499999463558, 258502.364100001752377 ], [ 362387.429399996995926, 258511.196400001645088 ], [ 362416.2246999964118, 258538.663199998438358 ], [ 362435.693000003695488, 258525.101399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89448139, "LATITUDE": 18.35577423, "OBJECTID_1": 6443, "PARCEL_NO_": "103103011800", "Tax_Legal_": "MANDAHL 23E-2 GR NORTHSIDE", "Name": "ROBERTS, ALBERT J. III & THERE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56900, "Improved_V": 457000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.72637856399999, "SHAPE_Area": 1390.4518796699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362613.850000001490116, 258504.143100000917912 ], [ 362646.875, 258535.273600000888109 ], [ 362656.620899997651577, 258527.120700001716614 ], [ 362659.063199996948242, 258524.396499998867512 ], [ 362663.18639999628067, 258513.664500001817942 ], [ 362634.457699999213219, 258478.387800000607967 ], [ 362613.850000001490116, 258504.143100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004051800", "MAP": "D9-6198-T97", "PARCEL_NAM": "1B2-1", "ACRE": ".27", "LONGITUDE": -64.90339117000001, "LATITUDE": 18.35592534, "OBJECTID_1": 6300, "PARCEL_NO_": "103004051800", "Tax_Legal_": "WINTBERG 1B2-1 GT. NORTHSIDE QTR.", "Name": "DANIEL-HAZELL, DEBBIE", "Address": "Domini Tver Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.38121150200001, "SHAPE_Area": 541.17680186699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361690.751999996602535, 258508.238699998706579 ], [ 361689.13400000333786, 258508.85869999974966 ], [ 361673.774499997496605, 258513.377000000327826 ], [ 361660.864500001072884, 258514.326900001615286 ], [ 361718.006599999964237, 258527.249099999666214 ], [ 361719.734300002455711, 258513.753199998289347 ], [ 361690.751999996602535, 258508.238699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89144236, "LATITUDE": 18.35568182, "OBJECTID_1": 6435, "PARCEL_NO_": "103103011000", "Tax_Legal_": "MANDAHL 25A-3 1 GR NORTHSIDE", "Name": "DEJONGH, CECILE R", "Address": "PO Box 8361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.433250407, "SHAPE_Area": 2338.9891968799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362971.579000003635883, 258471.436700001358986 ], [ 362911.746500000357628, 258490.367600001394749 ], [ 362989.584700003266335, 258534.912099998444319 ], [ 362996.069399997591972, 258530.9543999992311 ], [ 362992.138599999248981, 258519.100999999791384 ], [ 362971.579000003635883, 258471.436700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103015600", "MAP": "A9-200-T73", "PARCEL_NAM": "23-11", "ACRE": null, "LONGITUDE": -64.89512673, "LATITUDE": 18.35572491, "OBJECTID_1": 6480, "PARCEL_NO_": "103103015600", "Tax_Legal_": "MANDAHL 23-11 GR NORTHSIDE", "Name": "COFFELT, SHIRLEY A", "Address": "PO Box 867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41500, "Improved_V": 625600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.52742032699999, "SHAPE_Area": 1681.2912623499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362600.267099998891354, 258516.315900001674891 ], [ 362583.855400003492832, 258480.306200001388788 ], [ 362561.063500002026558, 258480.109099999070168 ], [ 362556.177000001072884, 258485.768699999898672 ], [ 362548.159000001847744, 258490.963300000876188 ], [ 362547.288199278351385, 258495.359766848559957 ], [ 362546.072800002992153, 258499.673700001090765 ], [ 362545.762351410812698, 258501.211371255922131 ], [ 362545.696106744930148, 258502.778669204795733 ], [ 362545.875695014197845, 258504.337052748684073 ], [ 362546.296700000762939, 258505.848200000822544 ], [ 362547.819099999964237, 258507.928700000047684 ], [ 362551.711400002241135, 258514.289299998432398 ], [ 362554.327799998223782, 258518.565000001341105 ], [ 362560.020808154135011, 258520.164397907297825 ], [ 362565.855285869387444, 258521.127354456373723 ], [ 362571.760310037410818, 258521.442164081556257 ], [ 362577.664099998772144, 258521.105000000447035 ], [ 362585.327361891162582, 258520.163621194893494 ], [ 362592.880548038636334, 258518.56326001411071 ], [ 362600.267099998891354, 258516.315900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89640168, "LATITUDE": 18.35575772, "OBJECTID_1": 6454, "PARCEL_NO_": "103103012900", "Tax_Legal_": "MANDAHL 22-14 GT. NORTHSIDE", "Name": "ETIENNE, JULES", "Address": "PO Box 9892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30800, "Improved_V": 372700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.512558289, "SHAPE_Area": 900.90699037800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362448.098800003528595, 258488.683800000697374 ], [ 362431.148299999535084, 258490.655999999493361 ], [ 362420.642800003290176, 258493.3141999989748 ], [ 362413.360799998044968, 258496.209899999201298 ], [ 362435.693000003695488, 258525.101399999111891 ], [ 362455.974899999797344, 258510.701999999582767 ], [ 362448.098800003528595, 258488.683800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89086788, "LATITUDE": 18.35571416, "OBJECTID_1": 6735, "PARCEL_NO_": "103104010100", "Tax_Legal_": "MANDAHL 26A-3 GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS 2 INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.73874002700001, "SHAPE_Area": 1871.1750457099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363032.790399998426437, 258479.959199998527765 ], [ 362988.270599998533726, 258499.8597999997437 ], [ 363000.119000002741814, 258528.876600001007318 ], [ 363009.026199996471405, 258524.516499999910593 ], [ 363021.158600002527237, 258520.182900000363588 ], [ 363056.70830000191927, 258512.030099999159575 ], [ 363059.949699997901917, 258510.156800001859665 ], [ 363032.790399998426437, 258479.959199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103017100", "MAP": "D9-4272-T88", "PARCEL_NAM": "21C", "ACRE": ".56", "LONGITUDE": -64.89771704, "LATITUDE": 18.35564768, "OBJECTID_1": 6494, "PARCEL_NO_": "103103017100", "Tax_Legal_": "MANDAHL 21C GT.NORTHSIDE QTR.", "Name": "MARY HODGE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021373, "Country": "United States", "Land_Value": 61000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.06988098799999, "SHAPE_Area": 2101.0399347799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362307.982100002467632, 258466.216499999165535 ], [ 362288.736699998378754, 258453.604499999433756 ], [ 362287.088100001215935, 258457.812899999320507 ], [ 362284.64580000191927, 258460.537099998444319 ], [ 362282.183700002729893, 258465.583200000226498 ], [ 362278.87389999628067, 258475.47749999910593 ], [ 362278.047799997031689, 258477.79280000180006 ], [ 362277.05629999935627, 258499.527300000190735 ], [ 362284.289700001478195, 258502.330699998885393 ], [ 362283.341300003230572, 258518.999299999326468 ], [ 362317.982199996709824, 258522.871500000357628 ], [ 362314.398400001227856, 258470.279800001531839 ], [ 362311.991999998688698, 258468.782499998807907 ], [ 362307.982100002467632, 258466.216499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104021100", "MAP": "B9-31-T57", "PARCEL_NAM": "4-23", "ACRE": "1.30", "LONGITUDE": -64.88357761, "LATITUDE": 18.35503401, "OBJECTID_1": 6783, "PARCEL_NO_": "103104021100", "Tax_Legal_": "TARBOR & HARMONY 4 23 EAST END QTR", "Name": "INFINITY INVESTORS LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 150900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 395.64548703899999, "SHAPE_Area": 8019.6640753499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363828.019500002264977, 258462.403099998831749 ], [ 363819.944899998605251, 258369.033700000494719 ], [ 363798.196000002324581, 258366.322500001639128 ], [ 363790.937399998307228, 258366.474199999123812 ], [ 363785.278800003230572, 258368.116700001060963 ], [ 363777.978900000452995, 258373.123199999332428 ], [ 363776.3429000005126, 258375.853999998420477 ], [ 363749.47919999808073, 258405.609400000423193 ], [ 363788.723099999129772, 258531.742400001734495 ], [ 363794.442800000309944, 258522.923200000077486 ], [ 363805.036399997770786, 258509.922200001776218 ], [ 363811.585799999535084, 258498.365600001066923 ], [ 363814.170199997723103, 258478.9662000015378 ], [ 363816.648400001227856, 258472.020399998873472 ], [ 363821.536700002849102, 258466.149700000882149 ], [ 363828.019500002264977, 258462.403099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010200", "MAP": null, "PARCEL_NAM": "21A", "ACRE": null, "LONGITUDE": -64.89798342, "LATITUDE": 18.35563677, "OBJECTID_1": 6426, "PARCEL_NO_": "103103010200", "Tax_Legal_": "MANDAHL 21 GREAT NORTHSIDE QTR", "Name": "CHARLES MALONE", "Address": "6543 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 210200, "Improved_V": 50400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.06997566499999, "SHAPE_Area": 1270.6001210100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362282.183700002729893, 258465.583200000226498 ], [ 362267.779700003564358, 258452.588599998503923 ], [ 362265.32660000026226, 258456.579300001263618 ], [ 362261.205099999904633, 258467.10020000115037 ], [ 362257.011699996888638, 258486.064300000667572 ], [ 362258.369000002741814, 258516.050700001418591 ], [ 362283.341300003230572, 258518.999299999326468 ], [ 362284.289700001478195, 258502.330699998885393 ], [ 362277.05629999935627, 258499.527300000190735 ], [ 362278.047799997031689, 258477.79280000180006 ], [ 362278.87389999628067, 258475.47749999910593 ], [ 362282.183700002729893, 258465.583200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004019800", "MAP": "D9-5577-T93", "PARCEL_NAM": "1A-2-1", "ACRE": ".46", "LONGITUDE": -64.90228974, "LATITUDE": 18.35545597, "OBJECTID_1": 6072, "PARCEL_NO_": "103004019800", "Tax_Legal_": "WINTBERG 1A-2-1 GREAT NORTHSIDE", "Name": "SPL 2005 TRUST", "Address": "PO Box 11113", "City": "ST.THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 150300, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.68859016, "SHAPE_Area": 2225.8837989399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361853.338699996471405, 258448.774399999529123 ], [ 361824.237700000405312, 258457.191100001335144 ], [ 361806.581600002944469, 258447.336300000548363 ], [ 361780.741800002753735, 258451.557700000703335 ], [ 361777.511200003325939, 258452.164599999785423 ], [ 361773.459799997508526, 258454.453400000929832 ], [ 361771.015699997544289, 258457.388799998909235 ], [ 361771.771700002253056, 258463.305599998682737 ], [ 361774.959200002253056, 258467.764600001275539 ], [ 361803.849799998104572, 258484.044199999421835 ], [ 361813.468000002205372, 258490.877900000661612 ], [ 361824.682599999010563, 258499.624499998986721 ], [ 361815.139899998903275, 258483.925500001758337 ], [ 361818.433499999344349, 258475.930900000035763 ], [ 361857.118500001728535, 258478.358399998396635 ], [ 361853.338699996471405, 258448.774399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89575183, "LATITUDE": 18.35567143, "OBJECTID_1": 6450, "PARCEL_NO_": "103103012500", "Tax_Legal_": "MANDAHL 22-15 GR NORTHSIDE", "Name": "VANSLUYTMAN, BERNARD M. & GAIL P", "Address": "PO Box 6878", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.58917198399999, "SHAPE_Area": 954.86194734499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362531.104000002145767, 258494.640500001609325 ], [ 362515.911799997091293, 258479.528499998152256 ], [ 362497.323399998247623, 258484.442600000649691 ], [ 362481.994499996304512, 258485.372600000351667 ], [ 362498.64299999922514, 258518.861600000411272 ], [ 362500.286100000143051, 258515.286499999463558 ], [ 362505.165399998426437, 258510.4712999984622 ], [ 362531.104000002145767, 258494.640500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004016200", "MAP": "D9-6198-T97", "PARCEL_NAM": "1B2 REM", "ACRE": ".24", "LONGITUDE": -64.90300922, "LATITUDE": 18.35571892, "OBJECTID_1": 6037, "PARCEL_NO_": "103004016200", "Tax_Legal_": "WINTBERG 1B-2 REM GR NORTHSIDE", "Name": "HAZELL, DEBBIE T. & RUEL P", "Address": "PO Box 11968", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.19305917099999, "SHAPE_Area": 1056.0687523199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361704.025499999523163, 258501.392499998211861 ], [ 361757.714299999177456, 258508.138700000941753 ], [ 361762.726000003516674, 258483.918699998408556 ], [ 361728.895099997520447, 258479.631000000983477 ], [ 361722.377999998629093, 258487.388199999928474 ], [ 361716.690700002014637, 258492.407800000160933 ], [ 361715.067299999296665, 258493.661100000143051 ], [ 361704.025499999523163, 258501.392499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103015700", "MAP": "A9-200-T73", "PARCEL_NAM": "23-10", "ACRE": null, "LONGITUDE": -64.89491261000001, "LATITUDE": 18.35556112, "OBJECTID_1": 6481, "PARCEL_NO_": "103103015700", "Tax_Legal_": "MADAHL 23-10 GT. NORTHSIDE", "Name": "TRUST AGREEMENT OF S & F HUPPRICH, III & R GRAHAM", "Address": "PO Box 12178", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.461054703, "SHAPE_Area": 1437.53616614 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362604.466399997472763, 258466.491200000047684 ], [ 362598.142899997532368, 258463.319899998605251 ], [ 362587.822800002992153, 258462.5962999984622 ], [ 362568.446199998259544, 258465.39299999922514 ], [ 362563.602899998426437, 258465.986600000411272 ], [ 362564.391199998557568, 258468.103999998420477 ], [ 362564.326499998569489, 258475.702899999916553 ], [ 362563.500399999320507, 258478.018100000917912 ], [ 362561.063500002026558, 258480.109099999070168 ], [ 362583.855400003492832, 258480.306200001388788 ], [ 362600.267099998891354, 258516.315900001674891 ], [ 362608.369800001382828, 258511.738200001418591 ], [ 362611.636399999260902, 258506.909699998795986 ], [ 362618.233499996364117, 258498.664700001478195 ], [ 362604.466399997472763, 258466.491200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "103103020100", "MAP": "D9-594-T66", "PARCEL_NAM": "16", "ACRE": "7.15", "LONGITUDE": -64.8993232, "LATITUDE": 18.35418853, "OBJECTID_1": 6510, "PARCEL_NO_": "103103020100", "Tax_Legal_": "MANDAHL 16 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 358700, "Improved_V": 4347700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 970.08682996699997, "SHAPE_Area": 25171.718889799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362140.112300001084805, 258199.286899998784065 ], [ 362136.278499998152256, 258176.035199999809265 ], [ 362120.858900003135204, 258092.949299998581409 ], [ 362131.616099998354912, 258060.739999998360872 ], [ 362129.197200000286102, 258060.720199998468161 ], [ 362117.0, 258072.652699999511242 ], [ 362116.143299996852875, 258078.55629999935627 ], [ 362110.35530000180006, 258095.39640000090003 ], [ 362108.508900001645088, 258122.823499999940395 ], [ 362106.829700000584126, 258130.620200000703335 ], [ 362103.520000003278255, 258140.514499999582767 ], [ 362101.075900003314018, 258143.449799999594688 ], [ 362095.303999997675419, 258158.3902000002563 ], [ 362091.987000003457069, 258169.128800000995398 ], [ 362089.443999998271465, 258183.673500001430511 ], [ 362090.630500003695488, 258233.712400000542402 ], [ 362088.796700000762939, 258259.661899998784065 ], [ 362087.137299999594688, 258265.136700000613928 ], [ 362084.549300000071526, 258284.958299998193979 ], [ 362085.16499999910593, 258307.339299999177456 ], [ 362081.637699998915195, 258342.774099998176098 ], [ 362083.079499997198582, 258362.839800000190735 ], [ 362087.786100000143051, 258378.288199998438358 ], [ 362090.178099997341633, 258381.47410000115633 ], [ 362098.122500002384186, 258395.4712999984622 ], [ 362105.221100002527237, 258414.105700001120567 ], [ 362114.562399998307228, 258453.445500001311302 ], [ 362124.589500002563, 258506.934300001710653 ], [ 362126.1841000020504, 258509.058299999684095 ], [ 362129.391400001943111, 258511.19539999961853 ], [ 362135.031999997794628, 258511.663800001144409 ], [ 362149.581600002944469, 258507.561000000685453 ], [ 362163.335600003600121, 258502.185100000351667 ], [ 362175.504100002348423, 258493.629900000989437 ], [ 362190.960699997842312, 258477.713300000876188 ], [ 362160.152099996805191, 258307.953000001609325 ], [ 362150.130400002002716, 258253.831000000238419 ], [ 362140.112300001084805, 258199.286899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017800", "MAP": "D9-8224-T008", "PARCEL_NAM": "1B1-A", "ACRE": ".413", "LONGITUDE": -64.90421951, "LATITUDE": 18.35555186, "OBJECTID_1": 6053, "PARCEL_NO_": "103004017800", "Tax_Legal_": "1B1-A REM & 1B1-B2 WINTBERG NO. GREAT NORTHSIDE QUARTER", "Name": "PHILLIP, CARL", "Address": "PO Box 306221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.750189484, "SHAPE_Area": 1272.1922789400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361629.674300000071526, 258456.058299999684095 ], [ 361607.337300002574921, 258449.2787000015378 ], [ 361585.382299996912479, 258484.808800000697374 ], [ 361630.810900002717972, 258500.825899999588728 ], [ 361631.525200001895428, 258497.462099999189377 ], [ 361632.436599999666214, 258493.170400001108646 ], [ 361618.579300001263618, 258486.229800000786781 ], [ 361629.674300000071526, 258456.058299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052200", "MAP": null, "PARCEL_NAM": "1B2-A1", "ACRE": null, "LONGITUDE": -64.90356518, "LATITUDE": 18.35561887, "OBJECTID_1": 6303, "PARCEL_NO_": "103004052200", "Tax_Legal_": "WINTBERG 1B2-A1 GREAT NORTHSIDE", "Name": "JOSEPH, AVRILL S", "Address": "6551 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29400, "Improved_V": 237600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.56163114200001, "SHAPE_Area": 860.82193815799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361679.929399996995926, 258453.47690000012517 ], [ 361673.493299998342991, 258451.735399998724461 ], [ 361668.195100001990795, 258505.73200000077486 ], [ 361676.272600002586842, 258504.109400000423193 ], [ 361683.549199998378754, 258501.846900001168251 ], [ 361695.679799996316433, 258497.724300000816584 ], [ 361679.929399996995926, 258453.47690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89432173, "LATITUDE": 18.35555136, "OBJECTID_1": 6442, "PARCEL_NO_": "103103011700", "Tax_Legal_": "MANDAHL 23E-1 GR NORTHSIDE", "Name": "ALEJANDRO & ANA BELMONTE REVOC LIV TR", "Address": "PO Box 303708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44600, "Improved_V": 175000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.303573419, "SHAPE_Area": 1222.8551881000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362652.399800002574921, 258454.681099999696016 ], [ 362634.457699999213219, 258478.387800000607967 ], [ 362663.18639999628067, 258513.664500001817942 ], [ 362667.315099999308586, 258502.299199998378754 ], [ 362672.989900000393391, 258498.756999999284744 ], [ 362677.129299998283386, 258486.125300001353025 ], [ 362652.399800002574921, 258454.681099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103015800", "MAP": "A9-200-T73", "PARCEL_NAM": "23A-1-A", "ACRE": null, "LONGITUDE": -64.89459558, "LATITUDE": 18.3553909, "OBJECTID_1": 6482, "PARCEL_NO_": "103103015800", "Tax_Legal_": "MANDAHL 23-9 GREAT NORTHSIDE QTR", "Name": "GRAHAM, ROBERT", "Address": "PO Box 10424", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49500, "Improved_V": 240600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.34354325199999, "SHAPE_Area": 1385.8802035000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362604.466399997472763, 258466.491200000047684 ], [ 362618.233499996364117, 258498.664700001478195 ], [ 362634.457699999213219, 258478.387800000607967 ], [ 362652.399800002574921, 258454.681099999696016 ], [ 362640.46509999781847, 258435.796100001782179 ], [ 362604.466399997472763, 258466.491200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89054957, "LATITUDE": 18.35556122, "OBJECTID_1": 6738, "PARCEL_NO_": "103104010400", "Tax_Legal_": "MANDAHL 26B 4 GR NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS 2 INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 14900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.77435488, "SHAPE_Area": 791.29551568099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363069.117700003087521, 258475.19029999896884 ], [ 363069.151799999177456, 258471.179800000041723 ], [ 363037.646300002932549, 258477.888000000268221 ], [ 363032.790399998426437, 258479.959199998527765 ], [ 363059.949699997901917, 258510.156800001859665 ], [ 363064.825400002300739, 258505.763700000941753 ], [ 363067.299999997019768, 258499.240100000053644 ], [ 363069.117700003087521, 258475.19029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052300", "MAP": "D9-6098-T96", "PARCEL_NAM": "1B2-A2", "ACRE": ".25", "LONGITUDE": -64.90335689, "LATITUDE": 18.35553722, "OBJECTID_1": 6304, "PARCEL_NO_": "103004052300", "Tax_Legal_": "1B2-A-2 WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "GRAHAM, MARK C. & DEBRA M.", "Address": "PO Box 307123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27100, "Improved_V": 445800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.60335743100001, "SHAPE_Area": 1013.32978769 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361693.60249999910593, 258457.599500000476837 ], [ 361679.929399996995926, 258453.47690000012517 ], [ 361695.679799996316433, 258497.724300000816584 ], [ 361703.786100000143051, 258492.724399998784065 ], [ 361718.403999999165535, 258480.600600000470877 ], [ 361725.75789999961853, 258469.261799998581409 ], [ 361726.578599996864796, 258467.579700000584126 ], [ 361693.60249999910593, 258457.599500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004016100", "MAP": "D9-7799-T006", "PARCEL_NAM": "1B1-REM", "ACRE": "1.06", "LONGITUDE": -64.9044545, "LATITUDE": 18.35516544, "OBJECTID_1": 6036, "PARCEL_NO_": "103004016100", "Tax_Legal_": "WINTBERG 1B-1 GR NORTHSIDE", "Name": "BERRY, EVELYN F", "Address": "PO Box 57", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 129600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.63168209499997, "SHAPE_Area": 4514.5923655799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361585.382299996912479, 258484.808800000697374 ], [ 361611.480899997055531, 258442.573100000619888 ], [ 361623.75900000333786, 258421.142000000923872 ], [ 361626.267899997532368, 258410.607900001108646 ], [ 361630.389399997889996, 258400.086899999529123 ], [ 361582.039399996399879, 258396.313700001686811 ], [ 361549.795900002121925, 258394.994300000369549 ], [ 361569.555699996650219, 258488.222100000828505 ], [ 361581.105599999427795, 258483.300900001078844 ], [ 361585.382299996912479, 258484.808800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004011100", "MAP": "B9-284-T70", "PARCEL_NAM": "900E", "ACRE": null, "LONGITUDE": -64.90496193, "LATITUDE": 18.35489161, "OBJECTID_1": 5948, "PARCEL_NO_": "103004011100", "Tax_Legal_": "WINTBERG 900E GR NORTHSIDE QTR", "Name": "FRANCOIS, FRANK L. & RENE E.", "Address": "27 SACRAMENTO DRIVE, APT. 115", "City": "HAMPTON", "State": "Virginia", "Zip": 23666, "Country": "United States", "Land_Value": 168300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 470.97618088799999, "SHAPE_Area": 7167.9996292300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361569.555699996650219, 258488.222100000828505 ], [ 361549.795900002121925, 258394.994300000369549 ], [ 361528.116400003433228, 258289.481199998408556 ], [ 361502.244300000369549, 258297.502099998295307 ], [ 361524.784699998795986, 258491.259399998933077 ], [ 361558.1841000020504, 258493.067400000989437 ], [ 361569.555699996650219, 258488.222100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103013400", "MAP": "G9-1393-T69", "PARCEL_NAM": "22-9", "ACRE": null, "LONGITUDE": -64.89709116, "LATITUDE": 18.35547456, "OBJECTID_1": 6458, "PARCEL_NO_": "103103013400", "Tax_Legal_": "MANDAHL 22-9 GR NORTHSIDE", "Name": "SMALLS, LEONARD & PATRICIA", "Address": "PO Box 10576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.36134802699999, "SHAPE_Area": 1478.0805050900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362395.774800002574921, 258478.122999999672174 ], [ 362343.635999999940395, 258445.821199998259544 ], [ 362329.838799998164177, 258456.262899998575449 ], [ 362375.431800000369549, 258499.699200000613928 ], [ 362386.77589999884367, 258493.248100001364946 ], [ 362388.426299996674061, 258488.828699998557568 ], [ 362395.774800002574921, 258478.122999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90530938000001, "LATITUDE": 18.35495432, "OBJECTID_1": 5947, "PARCEL_NO_": "103004011000", "Tax_Legal_": "WINTBERG 900D GR NORTHSIDE QTR", "Name": "DANIEL, HILDA ADINA (LIFE ESTATE)", "Address": "PO BOX 304562", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 167500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 453.32572665800001, "SHAPE_Area": 6904.1211411599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361480.421700000762939, 258303.445199999958277 ], [ 361479.288099996745586, 258341.855000000447035 ], [ 361477.321299999952316, 258383.424300000071526 ], [ 361476.248800002038479, 258414.657400000840425 ], [ 361475.12780000269413, 258451.589600000530481 ], [ 361474.010399997234344, 258488.099599998444319 ], [ 361505.440399996936321, 258490.256700001657009 ], [ 361524.784699998795986, 258491.259399998933077 ], [ 361502.244300000369549, 258297.502099998295307 ], [ 361480.421700000762939, 258303.445199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89652142, "LATITUDE": 18.35547644, "OBJECTID_1": 6456, "PARCEL_NO_": "103103013100", "Tax_Legal_": "MANDAHL 22-12 GT. NORTHSIDE", "Name": "BOODRAM, SAMANTHA & DHANESH", "Address": "6200 FRYDENHOJ SUITE 4", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31300, "Improved_V": 189500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.43607766900001, "SHAPE_Area": 1328.2122426000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362440.416900001466274, 258443.869100000709295 ], [ 362426.625100001692772, 258453.677600000053644 ], [ 362413.6216000020504, 258465.603500001132488 ], [ 362399.770400002598763, 258482.377599999308586 ], [ 362393.231799997389317, 258492.667700000107288 ], [ 362394.009300000965595, 258496.051500000059605 ], [ 362394.803099997341633, 258497.535700000822544 ], [ 362397.218400001525879, 258497.977600000798702 ], [ 362411.800399996340275, 258490.075399998575449 ], [ 362419.080600000917912, 258487.390799999237061 ], [ 362432.814800001680851, 258484.336800001561642 ], [ 362448.151000000536442, 258482.5625 ], [ 362440.416900001466274, 258443.869100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90565039000001, "LATITUDE": 18.35550394, "OBJECTID_1": 5946, "PARCEL_NO_": "103004010900", "Tax_Legal_": "900C-5 REM ESTATE WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "BUTCHER, EDDIE J.", "Address": "995 NW 83rd Dr", "City": "Coral Springs", "State": "Florida", "Zip": 33071, "Country": "United States", "Land_Value": 28300, "Improved_V": 275200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.250670724, "SHAPE_Area": 1097.5799937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361475.12780000269413, 258451.589600000530481 ], [ 361447.74379999935627, 258447.776799999177456 ], [ 361440.994800001382828, 258482.763099998235703 ], [ 361474.010399997234344, 258488.099599998444319 ], [ 361475.12780000269413, 258451.589600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89108682, "LATITUDE": 18.35541595, "OBJECTID_1": 6736, "PARCEL_NO_": "103104010200", "Tax_Legal_": "26A 2 MANDAHL No.1 GREAT NORTHSIDE QTR", "Name": "HERMON, BEVERLY A.", "Address": "PO Box 596", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 55100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.43356295000001, "SHAPE_Area": 1906.15068707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363032.790399998426437, 258479.959199998527765 ], [ 363000.843599997460842, 258443.811799999326468 ], [ 362970.095899999141693, 258456.22580000013113 ], [ 362988.270599998533726, 258499.8597999997437 ], [ 363032.790399998426437, 258479.959199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89544382, "LATITUDE": 18.35553388, "OBJECTID_1": 6451, "PARCEL_NO_": "103103012600", "Tax_Legal_": "MANDAHL 23 REMAINDER GREAT NORTHSIDE QTR", "Name": "W I MARINE SALES INC", "Address": "PO Box 1579", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.60738788800001, "SHAPE_Area": 538.45157055300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362531.104000002145767, 258494.640500001609325 ], [ 362549.748099997639656, 258483.182900000363588 ], [ 362557.886799998581409, 258474.383600000292063 ], [ 362558.727300003170967, 258470.379700001329184 ], [ 362555.521799996495247, 258468.031399998813868 ], [ 362515.911799997091293, 258479.528499998152256 ], [ 362531.104000002145767, 258494.640500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004018000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90590922, "LATITUDE": 18.35548408, "OBJECTID_1": 6055, "PARCEL_NO_": "103004018000", "Tax_Legal_": "WINTBERG 900C-5-1 GT. NORTHSIDE", "Name": "ESPRIT, VIVIAN J", "Address": "1117 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.96944705200001, "SHAPE_Area": 780.65761067799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361447.74379999935627, 258447.776799999177456 ], [ 361439.689599998295307, 258446.655499998480082 ], [ 361438.024899996817112, 258452.7635000012815 ], [ 361429.175200000405312, 258450.369100000709295 ], [ 361427.546400003135204, 258452.25560000166297 ], [ 361427.524800002574921, 258454.788499999791384 ], [ 361421.086900003254414, 258453.258200000971556 ], [ 361415.226899996399879, 258478.541499998420477 ], [ 361440.994800001382828, 258482.763099998235703 ], [ 361447.74379999935627, 258447.776799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052100", "MAP": "D9-6102-T96", "PARCEL_NAM": "1B2-E", "ACRE": ".24", "LONGITUDE": -64.90286349, "LATITUDE": 18.35532245, "OBJECTID_1": 6302, "PARCEL_NO_": "103004052100", "Tax_Legal_": "WINTBERG 1B2-E GT. NORTHSIDE QTR.", "Name": "MATTHEW, PHILLIPSON & MICARLA THOMAS", "Address": "PO Box 302986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 213000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.00812392500001, "SHAPE_Area": 1997.55449301 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361774.487300001084805, 258428.497400000691414 ], [ 361777.85639999806881, 258411.63740000128746 ], [ 361734.940200001001358, 258432.606600001454353 ], [ 361736.527699999511242, 258435.57490000128746 ], [ 361737.312399998307228, 258438.114500001072884 ], [ 361738.093599997460842, 258441.076200000941753 ], [ 361738.016199998557568, 258450.15260000154376 ], [ 361737.98929999768734, 258453.318799998611212 ], [ 361737.136200003325939, 258458.800200000405312 ], [ 361733.799500003457069, 258471.860700000077486 ], [ 361730.525700002908707, 258477.533399999141693 ], [ 361728.895099997520447, 258479.631000000983477 ], [ 361762.726000003516674, 258483.918699998408556 ], [ 361766.942800000309944, 258462.21059999987483 ], [ 361767.005699999630451, 258454.822799999266863 ], [ 361768.627300001680851, 258453.780600000172853 ], [ 361770.297499999403954, 258447.039299998432398 ], [ 361774.487300001084805, 258428.497400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004010800", "MAP": "D9-6623-T99", "PARCEL_NAM": "900B", "ACRE": null, "LONGITUDE": -64.90653408, "LATITUDE": 18.3552641, "OBJECTID_1": 5945, "PARCEL_NO_": "103004010800", "Tax_Legal_": "900B REM. WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "BELLOT, NAOMI", "Address": "PO Box 6732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32500, "Improved_V": 99900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.04725777100001, "SHAPE_Area": 2017.17101284 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361381.731499999761581, 258467.395500000566244 ], [ 361389.656000003218651, 258437.851199999451637 ], [ 361391.232199996709824, 258432.395199999213219 ], [ 361384.384800001978874, 258428.602800000458956 ], [ 361387.401100002229214, 258423.681600000709295 ], [ 361362.027699999511242, 258407.000799998641014 ], [ 361354.965999998152256, 258420.036299999803305 ], [ 361351.327600002288818, 258426.752599999308586 ], [ 361342.207900002598763, 258443.587200000882149 ], [ 361336.331900000572205, 258452.948300000280142 ], [ 361347.203500002622604, 258460.045800000429153 ], [ 361363.013899996876717, 258464.344700001180172 ], [ 361381.171400003135204, 258469.281800001859665 ], [ 361381.731499999761581, 258467.395500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89166198, "LATITUDE": 18.35538903, "OBJECTID_1": 6436, "PARCEL_NO_": "103103011100", "Tax_Legal_": "MANDAHL 25A-2 GREAT NORTHSIDE QTR", "Name": "YETTA W GALIBER IRREVOCABLE TRUST", "Address": "1001 Aster Blvd", "City": "Rockville", "State": "Maryland", "Zip": 20850, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.477456851, "SHAPE_Area": 1668.7989988700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362971.579000003635883, 258471.436700001358986 ], [ 362962.09570000320673, 258448.771999999880791 ], [ 362961.319899998605251, 258445.177099999040365 ], [ 362909.57209999859333, 258461.641100000590086 ], [ 362909.338299997150898, 258489.081300001591444 ], [ 362911.746500000357628, 258490.367600001394749 ], [ 362971.579000003635883, 258471.436700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89215787000001, "LATITUDE": 18.35474445, "OBJECTID_1": 6438, "PARCEL_NO_": "103103011300", "Tax_Legal_": "MANDAHL 25F 4 GREAT NORTHSIDE", "Name": "BRYAN, MAUREEN E", "Address": "5DD Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 142500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 447.20089808, "SHAPE_Area": 6829.2287529499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362909.57209999859333, 258461.641100000590086 ], [ 362910.532300002872944, 258348.925000000745058 ], [ 362904.1537000015378, 258340.429000001400709 ], [ 362874.606100000441074, 258306.6233000010252 ], [ 362840.993400000035763, 258371.364999998360872 ], [ 362878.85419999808073, 258375.896699998527765 ], [ 362864.400600001215935, 258463.38230000063777 ], [ 362909.338299997150898, 258489.081300001591444 ], [ 362909.57209999859333, 258461.641100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89619778, "LATITUDE": 18.3553552, "OBJECTID_1": 6455, "PARCEL_NO_": "103103013000", "Tax_Legal_": "MANDAHL 22-11 GR NORTHSIDE QTR", "Name": "WHEATLEY, ORAL E", "Address": "PO Box 1192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.669593021, "SHAPE_Area": 1266.5111691499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362479.624099999666214, 258479.6537000015378 ], [ 362463.0996999964118, 258431.60020000115037 ], [ 362440.416900001466274, 258443.869100000709295 ], [ 362448.151000000536442, 258482.5625 ], [ 362479.624099999666214, 258479.6537000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103020200", "MAP": "F9-1804-T66", "PARCEL_NAM": "15B", "ACRE": null, "LONGITUDE": -64.89857492, "LATITUDE": 18.35454005, "OBJECTID_1": 6511, "PARCEL_NO_": "103103020200", "Tax_Legal_": "MANDAHL 15B 1 GR NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 251100, "Improved_V": 4646600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 492.353978154, "SHAPE_Area": 11686.2728444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362245.373800002038479, 258432.351300001144409 ], [ 362242.597000002861023, 258326.913800001144409 ], [ 362244.299900002777576, 258274.444600000977516 ], [ 362160.152099996805191, 258307.953000001609325 ], [ 362190.960699997842312, 258477.713300000876188 ], [ 362205.609099999070168, 258462.001200001686811 ], [ 362213.728000000119209, 258455.523699998855591 ], [ 362214.546899996697903, 258454.052799999713898 ], [ 362226.722499996423721, 258444.653200000524521 ], [ 362245.373800002038479, 258432.351300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89595189000001, "LATITUDE": 18.3553548, "OBJECTID_1": 6457, "PARCEL_NO_": "103103013200", "Tax_Legal_": "MANDAHL 22-10 GT. NORTHSIDE", "Name": "CHARLES, ALBERT", "Address": "PO Box 373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.50997142700001, "SHAPE_Area": 962.69545245699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362493.531000003218651, 258456.336100000888109 ], [ 362466.343000002205372, 258429.515799999237061 ], [ 362463.0996999964118, 258431.60020000115037 ], [ 362479.624099999666214, 258479.6537000015378 ], [ 362495.761200003325939, 258478.519200000911951 ], [ 362511.92339999973774, 258474.42960000038147 ], [ 362493.531000003218651, 258456.336100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103013600", "MAP": "G9-1393-T69", "PARCEL_NAM": "22-8", "ACRE": null, "LONGITUDE": -64.8969681, "LATITUDE": 18.35529572, "OBJECTID_1": 6460, "PARCEL_NO_": "103103013600", "Tax_Legal_": "MANDAHL 22-8 GR NORTHSIDE QTR", "Name": "HILL, JOHN W", "Address": "PO Box 306237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35500, "Improved_V": 152900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.693853187, "SHAPE_Area": 1398.1685984400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362408.808899998664856, 258462.608800001442432 ], [ 362366.369199998676777, 258427.642099998891354 ], [ 362343.635999999940395, 258445.821199998259544 ], [ 362395.774800002574921, 258478.122999999672174 ], [ 362408.808899998664856, 258462.608800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89078655, "LATITUDE": 18.35527446, "OBJECTID_1": 6739, "PARCEL_NO_": "103104010500", "Tax_Legal_": "MANDAHL 26CA-1 GR NORTHSIDE", "Name": "SCIPIO, VERNON", "Address": "PO Box 4038", "City": "Columbia", "State": "South Carolina", "Zip": 29240, "Country": "United States", "Land_Value": 64300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.7806462, "SHAPE_Area": 1692.7123013800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363070.035499997437, 258462.109999999403954 ], [ 362980.874600000679493, 258421.483600001782179 ], [ 363000.843599997460842, 258443.811799999326468 ], [ 363032.790399998426437, 258479.959199998527765 ], [ 363037.646300002932549, 258477.888000000268221 ], [ 363069.151799999177456, 258471.179800000041723 ], [ 363070.035499997437, 258462.109999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89558997, "LATITUDE": 18.35531378, "OBJECTID_1": 6479, "PARCEL_NO_": "103103015500", "Tax_Legal_": "MANDAHL 23-7 GR NORTHSIDE QTR", "Name": "ROGERS, URIEL M.,JR. & BERMELL ROGERS WILKINS", "Address": "740 E 78th St", "City": "Brooklyn", "State": "New York", "Zip": 11236, "Country": "United States", "Land_Value": 38800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.98344359500001, "SHAPE_Area": 1239.7911837900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362550.725299999117851, 258463.136999998241663 ], [ 362531.625500001013279, 258433.427600000053644 ], [ 362524.330899998545647, 258437.800900001078844 ], [ 362493.531000003218651, 258456.336100000888109 ], [ 362511.92339999973774, 258474.42960000038147 ], [ 362550.725299999117851, 258463.136999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004019900", "MAP": null, "PARCEL_NAM": "1B2-B2", "ACRE": null, "LONGITUDE": -64.90322989000001, "LATITUDE": 18.35529363, "OBJECTID_1": 6073, "PARCEL_NO_": "103004019900", "Tax_Legal_": "WINTBERG 1B2-B2 GT. NORTHSIDE QTR.", "Name": "CAREY, VINCENT", "Address": "PO Box 9284", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 216100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.78598902100001, "SHAPE_Area": 1000.99059518 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361714.874099999666214, 258421.676600001752377 ], [ 361693.60249999910593, 258457.599500000476837 ], [ 361726.578599996864796, 258467.579700000584126 ], [ 361727.422700002789497, 258463.1537000015378 ], [ 361729.904600001871586, 258455.785700000822544 ], [ 361730.815200001001358, 258443.549699999392033 ], [ 361729.231299996376038, 258440.159299999475479 ], [ 361726.875299997627735, 258432.7516999989748 ], [ 361723.685999996960163, 258428.503800000995398 ], [ 361720.487800002098083, 258425.311200000345707 ], [ 361714.874099999666214, 258421.676600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010200", "MAP": "D9-4272-T88", "PARCEL_NAM": "21A", "ACRE": ".59", "LONGITUDE": -64.89776958, "LATITUDE": 18.35522748, "OBJECTID_1": 6426, "PARCEL_NO_": "103103010200", "Tax_Legal_": "MANDAHL 21 GREAT NORTHSIDE QTR", "Name": "CHARLES MALONE", "Address": "6543 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 210200, "Improved_V": 50400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.289270294, "SHAPE_Area": 1392.8911689900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362314.425399996340275, 258467.113600000739098 ], [ 362313.039300002157688, 258440.50450000166893 ], [ 362288.241400003433228, 258417.081300001591444 ], [ 362283.383799999952316, 258419.363499999046326 ], [ 362280.937899999320507, 258422.509899999946356 ], [ 362280.092000000178814, 258427.147100001573563 ], [ 362275.97410000115633, 258437.245799999684095 ], [ 362274.350699998438358, 258438.499099999666214 ], [ 362267.779700003564358, 258452.588599998503923 ], [ 362282.183700002729893, 258465.583200000226498 ], [ 362284.64580000191927, 258460.537099998444319 ], [ 362287.088100001215935, 258457.812899999320507 ], [ 362288.736699998378754, 258453.604499999433756 ], [ 362307.982100002467632, 258466.216499999165535 ], [ 362311.991999998688698, 258468.782499998807907 ], [ 362314.398400001227856, 258470.279800001531839 ], [ 362314.425399996340275, 258467.113600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103104010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88947312000001, "LATITUDE": 18.35445363, "OBJECTID_1": 6741, "PARCEL_NO_": "103104010700", "Tax_Legal_": "MANDAHL 30 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 663.874602278, "SHAPE_Area": 14250.530581200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363081.206900000572205, 258475.922499999403954 ], [ 363084.469999998807907, 258471.51630000025034 ], [ 363091.778899997472763, 258465.4543999992311 ], [ 363123.516400001943111, 258431.517000000923872 ], [ 363144.705300003290176, 258405.303700000047684 ], [ 363145.531400002539158, 258402.988400001078844 ], [ 363153.688000001013279, 258392.078299999237061 ], [ 363174.004100002348423, 258373.668400000780821 ], [ 363191.017599999904633, 258364.308400001376867 ], [ 363206.384300000965595, 258358.945700000971556 ], [ 363215.251900002360344, 258359.229400001466274 ], [ 363220.876299999654293, 258361.597500000149012 ], [ 363225.679999999701977, 258365.647599998861551 ], [ 363232.827100001275539, 258378.582800000905991 ], [ 363245.604099996387959, 258393.25279999896884 ], [ 363256.016000002622604, 258401.570700000971556 ], [ 363263.24040000140667, 258405.429499998688698 ], [ 363265.448299996554852, 258335.575599998235703 ], [ 363226.375900000333786, 258283.96000000089407 ], [ 363176.238899998366833, 258300.648299999535084 ], [ 363110.38629999756813, 258363.648499999195337 ], [ 363087.469700001180172, 258403.357599999755621 ], [ 363083.3716000020504, 258411.134500000625849 ], [ 363071.906999997794628, 258431.727800000458956 ], [ 363071.062899999320507, 258436.153900001198053 ], [ 363070.035499997437, 258462.109999999403954 ], [ 363069.151799999177456, 258471.179800000041723 ], [ 363069.117700003087521, 258475.19029999896884 ], [ 363077.983499996364117, 258475.684999998658895 ], [ 363081.206900000572205, 258475.922499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88128343, "LATITUDE": 18.35487391, "OBJECTID_1": 6956, "PARCEL_NO_": "103203010400", "Tax_Legal_": "4-38REM.&4-50-5-A TABOR&HARMONY No.5&6 EASTEND QTR.", "Name": "CHRISTOPHER J DEGRAFF and SUSAN K LESMERISES DEGRAFF", "Address": "PO Box 7278", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010278, "Country": "United States", "Land_Value": 131900, "Improved_V": 571600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 429.44880183100003, "SHAPE_Area": 8885.8422577500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364032.886900000274181, 258361.910599999129772 ], [ 364016.818199999630451, 258355.024099998176098 ], [ 364009.60809999704361, 258349.476599998772144 ], [ 363996.764700002968311, 258342.616500001400709 ], [ 363994.769799999892712, 258482.133000001311302 ], [ 364006.052699998021126, 258482.85869999974966 ], [ 364016.547399997711182, 258481.466899998486042 ], [ 364027.864500001072884, 258478.182000000029802 ], [ 364035.155500002205372, 258474.230900000780821 ], [ 364051.391500003635883, 258461.487100001424551 ], [ 364060.338200002908707, 258452.483300000429153 ], [ 364070.066100001335144, 258446.441199999302626 ], [ 364098.337399996817112, 258440.761999998241663 ], [ 364108.043700002133846, 258437.25279999896884 ], [ 364117.760799996554852, 258432.477200001478195 ], [ 364037.625900000333786, 258373.559500001370907 ], [ 364032.886900000274181, 258361.910599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203010300", "MAP": "G9-493-T59", "PARCEL_NAM": "4-37", "ACRE": "1.04", "LONGITUDE": -64.88192184, "LATITUDE": 18.35472169, "OBJECTID_1": 6955, "PARCEL_NO_": "103203010300", "Tax_Legal_": "TARBOR & HARMONY 4-37 EAST END QUARTER", "Name": "HAYES, PAUL V. & TEYANA O.", "Address": "6682 Estate Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 116400, "Improved_V": 335000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 385.005937367, "SHAPE_Area": 7970.2176583199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363996.764700002968311, 258342.616500001400709 ], [ 363973.48589999973774, 258330.182599999010563 ], [ 363949.282200001180172, 258331.673200000077486 ], [ 363946.85419999808073, 258332.708799999207258 ], [ 363941.964199997484684, 258338.790500000119209 ], [ 363941.059000000357628, 258350.393199998885393 ], [ 363936.172600001096725, 258356.052799999713898 ], [ 363932.124799996614456, 258357.91950000077486 ], [ 363946.54389999806881, 258463.795400001108646 ], [ 363946.52589999884367, 258465.906199999153614 ], [ 363953.734099999070168, 258471.664700001478195 ], [ 363962.569399997591972, 258475.747800000011921 ], [ 363973.830799996852875, 258479.006299998611212 ], [ 363988.326499998569489, 258481.23589999973774 ], [ 363994.769799999892712, 258482.133000001311302 ], [ 363996.764700002968311, 258342.616500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103017200", "MAP": "D9-4272-T88", "PARCEL_NAM": "21K", "ACRE": null, "LONGITUDE": -64.89751811, "LATITUDE": 18.35531701, "OBJECTID_1": 6495, "PARCEL_NO_": "103103017200", "Tax_Legal_": "MANDAHL 21K GT.NORTHSIDE QTR.", "Name": "MALONE, KAREN", "Address": "PO Box 12276", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.528540485199997, "SHAPE_Area": 212.58842859200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362314.425399996340275, 258467.113600000739098 ], [ 362329.838799998164177, 258456.262899998575449 ], [ 362313.039300002157688, 258440.50450000166893 ], [ 362314.425399996340275, 258467.113600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103011600", "MAP": "A9-200-T73", "PARCEL_NAM": "23A-1-A", "ACRE": null, "LONGITUDE": -64.89471536000001, "LATITUDE": 18.35519856, "OBJECTID_1": 6441, "PARCEL_NO_": "103103011600", "Tax_Legal_": "MANDAHL 23A-1A GR NORTHSIDE QTR", "Name": "JAMES, SYLVIA & E. -LIFE ESTATE", "Address": "Bovoni--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.98133926599999, "SHAPE_Area": 907.90053558099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362581.215400002896786, 258458.144000001251698 ], [ 362589.512517064984422, 258457.609594970126636 ], [ 362597.825400002300739, 258457.763599999248981 ], [ 362609.067299999296665, 258462.56810000166297 ], [ 362640.46509999781847, 258435.796100001782179 ], [ 362630.909800000488758, 258421.574599999934435 ], [ 362589.520000003278255, 258452.688799999654293 ], [ 362587.08669999986887, 258454.357599999755621 ], [ 362583.841600000858307, 258456.653099998831749 ], [ 362581.215400002896786, 258458.144000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024900", "MAP": "G9-520-T59", "PARCEL_NAM": "4-19D", "ACRE": "1.35", "LONGITUDE": -64.88569307, "LATITUDE": 18.35495787, "OBJECTID_1": 6819, "PARCEL_NO_": "103104024900", "Tax_Legal_": "4-19D ESTATE TOBOR&HARMONY No.5&6 EASTEND QTR.", "Name": "OKIYE, MARIBEL, BEATRICE & STEPHEN", "Address": "PO Box 8839", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 93200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.83026475600002, "SHAPE_Area": 5304.4298684100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363620.077200002968311, 258450.56870000064373 ], [ 363555.483400002121925, 258365.813700001686811 ], [ 363521.438400000333786, 258386.644400000572205 ], [ 363525.428599998354912, 258391.532200001180172 ], [ 363546.070900000631809, 258429.486900001764297 ], [ 363546.054700002074242, 258431.386599998921156 ], [ 363550.003600001335144, 258441.129299998283386 ], [ 363553.122699998319149, 258453.609299998730421 ], [ 363554.663400001823902, 258462.065699998289347 ], [ 363554.618500001728535, 258467.342599999159575 ], [ 363557.006800003349781, 258470.950800001621246 ], [ 363561.015000000596046, 258473.727800000458956 ], [ 363565.037600003182888, 258474.816199999302626 ], [ 363599.708999998867512, 258475.100000001490116 ], [ 363593.325099997222424, 258467.237199999392033 ], [ 363620.077200002968311, 258450.56870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89526508, "LATITUDE": 18.35518893, "OBJECTID_1": 6478, "PARCEL_NO_": "103103015400", "Tax_Legal_": "MANDAHL 23-8 GT. NORTHSIDE", "Name": "SAVAGE, TONIA T. & TARIQ BROOKS", "Address": "PO Box 301912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104500, "Improved_V": 160400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.347496592, "SHAPE_Area": 1321.30636684 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362559.600100003182888, 258462.576400000602007 ], [ 362564.86214213562198, 258460.836601335613523 ], [ 362570.264420861843973, 258459.599115431512473 ], [ 362575.759099997580051, 258458.874899998307228 ], [ 362581.215400002896786, 258458.144000001251698 ], [ 362583.841600000858307, 258456.653099998831749 ], [ 362559.986699998378754, 258417.194400001317263 ], [ 362542.9695999994874, 258426.976599998772144 ], [ 362531.625500001013279, 258433.427600000053644 ], [ 362550.725299999117851, 258463.136999998241663 ], [ 362555.573899999260902, 258461.910100001841784 ], [ 362559.600100003182888, 258462.576400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017900", "MAP": null, "PARCEL_NAM": "1B2-B1", "ACRE": null, "LONGITUDE": -64.90345784, "LATITUDE": 18.3551891, "OBJECTID_1": 6054, "PARCEL_NO_": "103004017900", "Tax_Legal_": "WINTBERG 1B2-B GT. NORTHSIDE", "Name": "BLYDEN, SHEILA", "Address": "PO Box 6673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.92046866000001, "SHAPE_Area": 1080.3891085299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361673.493299998342991, 258451.735399998724461 ], [ 361679.929399996995926, 258453.47690000012517 ], [ 361693.60249999910593, 258457.599500000476837 ], [ 361714.874099999666214, 258421.676600001752377 ], [ 361703.618100002408028, 258417.784800000488758 ], [ 361678.611699998378754, 258418.846700001507998 ], [ 361673.493299998342991, 258451.735399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103013800", "MAP": "G9-1393-T69", "PARCEL_NAM": "22-7", "ACRE": null, "LONGITUDE": -64.89680309000001, "LATITUDE": 18.35516073, "OBJECTID_1": 6463, "PARCEL_NO_": "103103013800", "Tax_Legal_": "MANDAHL 22-7 GREAT NORTHSIDE QTR", "Name": "ANTHONY, CALVIN & VIOLA", "Address": "1469 Givan Ave", "City": "Bronx", "State": "New York", "Zip": 10469, "Country": "United States", "Land_Value": 30300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.239244845, "SHAPE_Area": 1101.07319975 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362422.62950000166893, 258449.423000000417233 ], [ 362383.42230000346899, 258413.638399999588728 ], [ 362366.369199998676777, 258427.642099998891354 ], [ 362408.808899998664856, 258462.608800001442432 ], [ 362422.62950000166893, 258449.423000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89251109, "LATITUDE": 18.35491125, "OBJECTID_1": 6493, "PARCEL_NO_": "103103017000", "Tax_Legal_": "MANDAHL 25F-1 GT. NORTHSIDE QTR.", "Name": "BERRY, CLIFTON", "Address": "GERS COMPLEX-3rd FLOOR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98900, "Improved_V": 228600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.24873375, "SHAPE_Area": 3810.77721238 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362840.993400000035763, 258371.364999998360872 ], [ 362818.831000000238419, 258417.201999999582767 ], [ 362816.397699996829033, 258418.870799999684095 ], [ 362809.031199999153614, 258431.687300000339746 ], [ 362864.400600001215935, 258463.38230000063777 ], [ 362878.85419999808073, 258375.896699998527765 ], [ 362840.993400000035763, 258371.364999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90569279, "LATITUDE": 18.3551687, "OBJECTID_1": 6044, "PARCEL_NO_": "103004016900", "Tax_Legal_": "WINTBERG 900C-4 GT. NORTHSIDE", "Name": "TRUST AGREEMENT OF ELROY FLEMING AND CLOVER MAY FL", "Address": "PO Box 9878", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24000, "Improved_V": 204000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.825833149, "SHAPE_Area": 1501.2282167000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361476.248800002038479, 258414.657400000840425 ], [ 361440.002499997615814, 258409.927700001746416 ], [ 361430.035499997437, 258444.043299999088049 ], [ 361439.689599998295307, 258446.655499998480082 ], [ 361447.74379999935627, 258447.776799999177456 ], [ 361475.12780000269413, 258451.589600000530481 ], [ 361476.248800002038479, 258414.657400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89175611, "LATITUDE": 18.35491233, "OBJECTID_1": 6437, "PARCEL_NO_": "103103011200", "Tax_Legal_": "MANDAHL 25A-1 GREAT NORTHSIDE", "Name": "YETTA W GALIBER IRREVOCABLE TRUST", "Address": "1001 Aster Blvd", "City": "Rockville", "State": "Maryland", "Zip": 20850, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.13853762100001, "SHAPE_Area": 3375.0414605300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362909.57209999859333, 258461.641100000590086 ], [ 362961.319899998605251, 258445.177099999040365 ], [ 362948.708400003612041, 258411.087799999862909 ], [ 362947.151600003242493, 258404.531199999153614 ], [ 362935.260099999606609, 258380.580299999564886 ], [ 362932.085199996829033, 258374.643699999898672 ], [ 362910.532300002872944, 258348.925000000745058 ], [ 362909.57209999859333, 258461.641100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90649636000001, "LATITUDE": 18.35458789, "OBJECTID_1": 5943, "PARCEL_NO_": "103004010600", "Tax_Legal_": "900A ESTATE WINTBERG GR NORTHSIDE QTR", "Name": "ELGADI, JARRAH", "Address": "PO Box 10935", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 394.75948524799998, "SHAPE_Area": 4066.2413963499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361341.362199999392033, 258445.148299999535084 ], [ 361420.792300000786781, 258298.52419999986887 ], [ 361399.108199998736382, 258288.214200001209974 ], [ 361396.11150000244379, 258287.116599999368191 ], [ 361376.733900003135204, 258326.994500000029802 ], [ 361360.271499998867512, 258360.872699998319149 ], [ 361346.881599999964237, 258388.428300000727177 ], [ 361324.482199996709824, 258434.524599999189377 ], [ 361320.784199997782707, 258442.798000000417233 ], [ 361332.773699998855591, 258450.625300001353025 ], [ 361336.331900000572205, 258452.948300000280142 ], [ 361341.362199999392033, 258445.148299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103013500", "MAP": "G9-1393-T69", "PARCEL_NAM": "22-1", "ACRE": null, "LONGITUDE": -64.89753153, "LATITUDE": 18.35511891, "OBJECTID_1": 6459, "PARCEL_NO_": "103103013500", "Tax_Legal_": "MANDAHL 22-1 GREAT NORTHSIDE QTR.", "Name": "LETTSOME, R", "Address": "7018 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 27600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.11521147400001, "SHAPE_Area": 829.68546409700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362288.241400003433228, 258417.081300001591444 ], [ 362311.260300002992153, 258431.206000000238419 ], [ 362313.039300002157688, 258440.50450000166893 ], [ 362329.838799998164177, 258456.262899998575449 ], [ 362343.635999999940395, 258445.821199998259544 ], [ 362340.435999996960163, 258442.839699998497963 ], [ 362303.627899996936321, 258409.396699998527765 ], [ 362288.241400003433228, 258417.081300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89081067, "LATITUDE": 18.35506818, "OBJECTID_1": 6759, "PARCEL_NO_": "103104012600", "Tax_Legal_": "MANDAHL 26CA GT. NORTHSIDE", "Name": "HILAIRE, ANNA & FRANCIS, ALCEDO", "Address": "PO Box 305037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90900, "Improved_V": 278800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.77864628600003, "SHAPE_Area": 1833.8135815000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363071.062899999320507, 258436.153900001198053 ], [ 362965.698499999940395, 258404.471900001168251 ], [ 362980.874600000679493, 258421.483600001782179 ], [ 363070.035499997437, 258462.109999999403954 ], [ 363071.062899999320507, 258436.153900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203010200", "MAP": "B9-31-T57", "PARCEL_NAM": "4-33", "ACRE": "1.20", "LONGITUDE": -64.88245534000001, "LATITUDE": 18.35483584, "OBJECTID_1": 6954, "PARCEL_NO_": "103203010200", "Tax_Legal_": "TARBOR & HARMONY 4-33 EAST END QUARTER", "Name": "SLOPE, JACQUELINE A. & RONALD W.", "Address": "PO BOX 822", "City": "Manhasset", "State": "New York", "Zip": 11030, "Country": "United States", "Land_Value": 444300, "Improved_V": 128400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.48366794999998, "SHAPE_Area": 5770.5442469899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363932.124799996614456, 258357.91950000077486 ], [ 363928.084299996495247, 258358.941899999976158 ], [ 363919.216600000858307, 258358.65819999948144 ], [ 363904.677799999713898, 258361.494500000029802 ], [ 363890.108499996364117, 258367.919199999421835 ], [ 363880.409299999475479, 258370.583999998867512 ], [ 363886.059600003063679, 258464.566899999976158 ], [ 363898.931900002062321, 258468.049699999392033 ], [ 363909.408500000834465, 258468.768800001591444 ], [ 363916.676100000739098, 258467.561700001358986 ], [ 363923.96169999986887, 258464.24379999935627 ], [ 363928.837399996817112, 258459.85080000013113 ], [ 363933.691399998962879, 258457.990600001066923 ], [ 363938.527500003576279, 258458.241300001740456 ], [ 363941.740099996328354, 258459.745299998670816 ], [ 363946.54389999806881, 258463.795400001108646 ], [ 363932.124799996614456, 258357.91950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89584138, "LATITUDE": 18.35510077, "OBJECTID_1": 6476, "PARCEL_NO_": "103103015100", "Tax_Legal_": "23-6 MANDAHL GREAT NORTHSIDE", "Name": "TURNBULL, EVETTE & LAWRENCE", "Address": "PO Box 6473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32100, "Improved_V": 171200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.57397343900001, "SHAPE_Area": 1473.9098932700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362497.1537000015378, 258409.714099999517202 ], [ 362488.228500001132488, 258416.184900000691414 ], [ 362466.343000002205372, 258429.515799999237061 ], [ 362493.531000003218651, 258456.336100000888109 ], [ 362524.330899998545647, 258437.800900001078844 ], [ 362504.421300001442432, 258408.506999999284744 ], [ 362497.1537000015378, 258409.714099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203010100", "MAP": "B9-31-T57", "PARCEL_NAM": "4-24", "ACRE": "1.25", "LONGITUDE": -64.88300485000001, "LATITUDE": 18.35482773, "OBJECTID_1": 6953, "PARCEL_NO_": "103203010100", "Tax_Legal_": "TARBOR & HARMONY 4 24 EAST END QUARTER", "Name": "INFINITY INVESTORS LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 136400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.07305831999997, "SHAPE_Area": 4946.9906423599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363880.409299999475479, 258370.583999998867512 ], [ 363867.486800000071526, 258373.011399999260902 ], [ 363853.775799997150898, 258373.321299999952316 ], [ 363819.944899998605251, 258369.033700000494719 ], [ 363828.019500002264977, 258462.403099998831749 ], [ 363843.427599996328354, 258452.185600001364946 ], [ 363851.510499998927116, 258449.929800000041723 ], [ 363857.154700003564358, 258449.975999999791384 ], [ 363865.20160000026226, 258451.941700000315905 ], [ 363876.425200000405312, 258459.63289999961853 ], [ 363886.059600003063679, 258464.566899999976158 ], [ 363880.409299999475479, 258370.583999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89135329, "LATITUDE": 18.35500894, "OBJECTID_1": 6737, "PARCEL_NO_": "103104010300", "Tax_Legal_": "MANDAHL 26A-1 GR NORTHSIDE", "Name": "HILAIRE, ANNA W. & FRANCIS, A. J", "Address": "PO Box 305037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.276549507, "SHAPE_Area": 1380.8894636099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362965.698499999940395, 258404.471900001168251 ], [ 362940.93299999833107, 258377.249200001358986 ], [ 362942.504299998283386, 258382.117199998348951 ], [ 362944.104299999773502, 258383.607999999076128 ], [ 362948.056800000369549, 258392.928399998694658 ], [ 362950.38400000333786, 258403.713300000876188 ], [ 362956.704999998211861, 258418.963700000196695 ], [ 362970.095899999141693, 258456.22580000013113 ], [ 363000.843599997460842, 258443.811799999326468 ], [ 362980.874600000679493, 258421.483600001782179 ], [ 362965.698499999940395, 258404.471900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90696488, "LATITUDE": 18.35490942, "OBJECTID_1": 5942, "PARCEL_NO_": "103004010500", "Tax_Legal_": "1 127 WINTBERG GREAT NORTHSIDE QUARTER", "Name": "JOSEPH, BERNARD & CORINTHIA", "Address": "6403 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31200, "Improved_V": 114600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.45360053300001, "SHAPE_Area": 2099.87608421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361327.699600003659725, 258340.825399998575449 ], [ 361323.667999997735023, 258340.792399998754263 ], [ 361323.412699997425079, 258370.765599999576807 ], [ 361303.872400000691414, 258392.770500000566244 ], [ 361295.623099997639656, 258402.446699999272823 ], [ 361310.247900001704693, 258435.121399998664856 ], [ 361316.564599998295307, 258440.043299999088049 ], [ 361320.784199997782707, 258442.798000000417233 ], [ 361324.482199996709824, 258434.524599999189377 ], [ 361346.881599999964237, 258388.428300000727177 ], [ 361327.446000002324581, 258370.587499998509884 ], [ 361327.699600003659725, 258340.825399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103013700", "MAP": "G9-1393-T69", "PARCEL_NAM": "22-2", "ACRE": null, "LONGITUDE": -64.89738073, "LATITUDE": 18.35498778, "OBJECTID_1": 6461, "PARCEL_NO_": "103103013700", "Tax_Legal_": "22-2 ESTATE MANDAHL GREAT NORTHSIDE QTR", "Name": "FRANCIS, MILTON & MONA", "Address": "PO Box 10731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.42710479900001, "SHAPE_Area": 1309.0645366799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362362.364600002765656, 258424.442899998277426 ], [ 362330.354900002479553, 258395.683299999684095 ], [ 362303.627899996936321, 258409.396699998527765 ], [ 362340.435999996960163, 258442.839699998497963 ], [ 362362.364600002765656, 258424.442899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004035200", "MAP": "D9-7007-T002", "PARCEL_NAM": "2-3", "ACRE": null, "LONGITUDE": -64.9008986, "LATITUDE": 18.35473165, "OBJECTID_1": 6175, "PARCEL_NO_": "103004035200", "Tax_Legal_": "2-3 ESTATE MANDAHL #1 GREAT NORTHSIDE QTR.", "Name": "QUERRARD, GEORGE J., & ELEANORE M. & ENTIENNE, ANNETTE", "Address": "7366 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163400, "Improved_V": 73500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.98342233300002, "SHAPE_Area": 2629.2403877400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361932.540200002491474, 258393.707499999552965 ], [ 361964.196999996900558, 258397.816799998283386 ], [ 361956.856100000441074, 258431.027800001204014 ], [ 361976.803400002419949, 258438.174800001084805 ], [ 361982.89360000193119, 258385.873399998992682 ], [ 361985.429399996995926, 258372.173099998384714 ], [ 361985.479699999094009, 258366.262899998575449 ], [ 361975.038999997079372, 258361.322299998253584 ], [ 361961.364100001752377, 258357.410700000822544 ], [ 361962.224299997091293, 258351.084899999201298 ], [ 361963.053999997675419, 258348.347500000149012 ], [ 361955.809799998998642, 258346.810499999672174 ], [ 361949.384499996900558, 258343.802600000053644 ], [ 361942.818899996578693, 258357.258900001645088 ], [ 361932.540200002491474, 258393.707499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104021400", "MAP": "G9-520-T59", "PARCEL_NAM": "4-19", "ACRE": "1.35", "LONGITUDE": -64.88525714, "LATITUDE": 18.354669, "OBJECTID_1": 6786, "PARCEL_NO_": "103104021400", "Tax_Legal_": "TABOR&HARMONY 4-19 No.5&6 EASTEND QTR.", "Name": "HORII, JUNJI K. & JAY P. KNOEPFEL", "Address": "6264 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 112900, "Improved_V": 593200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 329.97093654999998, "SHAPE_Area": 6405.2247885200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363666.508000001311302, 258421.560499999672174 ], [ 363651.842000000178814, 258367.907999999821186 ], [ 363646.587700001895428, 258367.614799998700619 ], [ 363639.348899997770786, 258365.444600000977516 ], [ 363631.330700002610683, 258360.101700000464916 ], [ 363626.4712999984622, 258362.594999998807907 ], [ 363620.825300000607967, 258362.759899999946356 ], [ 363617.607199996709824, 258361.889199998229742 ], [ 363612.792700000107288, 258359.105599999427795 ], [ 363593.585100002586842, 258342.060899998992682 ], [ 363555.483400002121925, 258365.813700001686811 ], [ 363620.077200002968311, 258450.56870000064373 ], [ 363666.508000001311302, 258421.560499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004053700", "MAP": "D9-7177-T003", "PARCEL_NAM": "1A-3", "ACRE": "1.854", "LONGITUDE": -64.90230615, "LATITUDE": 18.35450671, "OBJECTID_1": 6318, "PARCEL_NO_": "103004053700", "Tax_Legal_": "1A-3 ESTATE WINTBERG #3 GREAT NORTHISIDE QTR", "Name": "WINSTON LEDEE TRUST", "Address": "PO Box 11113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 164700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 400.37092637699999, "SHAPE_Area": 7468.2918583299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361844.785800002515316, 258411.551899999380112 ], [ 361848.084299996495247, 258410.039599999785423 ], [ 361846.51349999755621, 258398.056099999696016 ], [ 361843.486000001430511, 258374.811000000685453 ], [ 361830.65259999781847, 258272.114500001072884 ], [ 361803.207400001585484, 258275.478500001132488 ], [ 361796.388300001621246, 258318.696899998933077 ], [ 361789.605099998414516, 258357.693599998950958 ], [ 361777.85639999806881, 258411.63740000128746 ], [ 361774.487300001084805, 258428.497400000691414 ], [ 361784.969400003552437, 258428.583099998533726 ], [ 361809.96509999781847, 258428.78770000115037 ], [ 361844.785800002515316, 258411.551899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89096449, "LATITUDE": 18.35474107, "OBJECTID_1": 6740, "PARCEL_NO_": "103104010600", "Tax_Legal_": "MANDAHL 26C 4 GREAT NORTHSIDE", "Name": "NILES, MANGUS O", "Address": "PO Box 1261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 166900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 356.86490258200001, "SHAPE_Area": 5256.0083031699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363036.952500000596046, 258370.0135000012815 ], [ 362991.802599996328354, 258369.221799999475479 ], [ 362932.94539999961853, 258368.317899998277426 ], [ 362940.93299999833107, 258377.249200001358986 ], [ 362965.698499999940395, 258404.471900001168251 ], [ 363071.062899999320507, 258436.153900001198053 ], [ 363071.906999997794628, 258431.727800000458956 ], [ 363083.3716000020504, 258411.134500000625849 ], [ 363053.656700000166893, 258396.959100000560284 ], [ 363047.249399997293949, 258391.840399999171495 ], [ 363044.047499999403954, 258389.070000000298023 ], [ 363040.068099997937679, 258382.915699999779463 ], [ 363036.952500000596046, 258370.0135000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103018000", "MAP": "D9-6878-T001", "PARCEL_NAM": "25E-C", "ACRE": ".52", "LONGITUDE": -64.89388971, "LATITUDE": 18.35417368, "OBJECTID_1": 6503, "PARCEL_NO_": "103103018000", "Tax_Legal_": "25E-C MANDAHL ESTATE No 1 GREAT NORTHSIDE QTR", "Name": "SMITH, GLEN J. & ANNETA HEYLIGER", "Address": "PO Box 303573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.81853315000001, "SHAPE_Area": 2322.0654021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362735.205600000917912, 258329.770300000905991 ], [ 362702.245800003409386, 258301.413600001484156 ], [ 362698.7128000035882, 258282.070099998265505 ], [ 362694.920699998736382, 258290.798300001770258 ], [ 362688.30120000243187, 258310.586899999529123 ], [ 362680.060000002384186, 258331.417700000107288 ], [ 362675.159199997782707, 258338.765900000929832 ], [ 362706.836800001561642, 258368.904100000858307 ], [ 362735.205600000917912, 258329.770300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103015300", "MAP": "A9-200-T73", "PARCEL_NAM": "23-4", "ACRE": "0.24", "LONGITUDE": -64.89543266, "LATITUDE": 18.35484422, "OBJECTID_1": 6477, "PARCEL_NO_": "103103015300", "Tax_Legal_": "MANDAHL 23-4&23-5 GT. NORTHSIDE", "Name": "RHYMER, LESLIE L", "Address": "PO Box 7852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.790155513, "SHAPE_Area": 852.73893022699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362537.717500001192093, 258380.915199998766184 ], [ 362513.376999996602535, 258398.447799999266863 ], [ 362523.072599999606609, 258396.205099999904633 ], [ 362542.9695999994874, 258426.976599998772144 ], [ 362559.986699998378754, 258417.194400001317263 ], [ 362537.717500001192093, 258380.915199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103013900", "MAP": "G9-1393-T69", "PARCEL_NAM": "22-3", "ACRE": null, "LONGITUDE": -64.8971971, "LATITUDE": 18.35486237, "OBJECTID_1": 6464, "PARCEL_NO_": "103103013900", "Tax_Legal_": "MANDAHL 22-3 GREAT NORTHSIDE QTR", "Name": "FRANCIS, RAYMOND LUCIEN", "Address": "PO BOX 303734", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.35364206, "SHAPE_Area": 730.69863303499994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362374.542000003159046, 258414.832299999892712 ], [ 362349.790899999439716, 258385.921000000089407 ], [ 362330.354900002479553, 258395.683299999684095 ], [ 362362.364600002765656, 258424.442899998277426 ], [ 362374.542000003159046, 258414.832299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89616749, "LATITUDE": 18.35479702, "OBJECTID_1": 6475, "PARCEL_NO_": "103103015000", "Tax_Legal_": "MANDAHL 23-3 GR NORTHSIDE", "Name": "REGISTE, JOSEPH", "Address": "23-3 MANDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 531400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.693212407, "SHAPE_Area": 1158.2047175 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362431.762599997222424, 258380.799100000411272 ], [ 362432.608999997377396, 258381.654500000178814 ], [ 362467.014700002968311, 258422.299400001764297 ], [ 362488.291400000452995, 258408.797200001776218 ], [ 362466.754799999296665, 258381.178700000047684 ], [ 362432.085100002586842, 258380.683899998664856 ], [ 362431.762599997222424, 258380.799100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004011800", "MAP": "D9-6705-T000", "PARCEL_NAM": "2A-4 REM", "ACRE": null, "LONGITUDE": -64.90130293, "LATITUDE": 18.35466079, "OBJECTID_1": 5954, "PARCEL_NO_": "103004011800", "Tax_Legal_": "MANDAHL 2A-4 GT. NORTHSIDE", "Name": "LAPLACE, FRANK R. & KRYSTLE GARCIA-LAPLACE", "Address": "PO Box 11028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 168300, "Improved_V": 287400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.969855384, "SHAPE_Area": 2339.5854944500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361949.384499996900558, 258343.802600000053644 ], [ 361896.873499996960163, 258355.194099999964237 ], [ 361905.241200000047684, 258414.157699998468161 ], [ 361926.156800001859665, 258420.028400000184774 ], [ 361927.852099999785423, 258410.331999998539686 ], [ 361942.818899996578693, 258357.258900001645088 ], [ 361949.384499996900558, 258343.802600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90564641, "LATITUDE": 18.35486754, "OBJECTID_1": 6043, "PARCEL_NO_": "103004016800", "Tax_Legal_": "WINTBERG 900C-3 GT. NORTHSIDE", "Name": "PROCTOR, EVERIET M", "Address": "PO Box 306332", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.596834492, "SHAPE_Area": 1008.56430668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361477.321299999952316, 258383.424300000071526 ], [ 361448.317400000989437, 258380.442699998617172 ], [ 361440.002499997615814, 258409.927700001746416 ], [ 361476.248800002038479, 258414.657400000840425 ], [ 361477.321299999952316, 258383.424300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203010500", "MAP": "D9-345-T62", "PARCEL_NAM": "4-50-5", "ACRE": "1.0", "LONGITUDE": -64.88066581, "LATITUDE": 18.35463694, "OBJECTID_1": 6957, "PARCEL_NO_": "103203010500", "Tax_Legal_": "4-50-5REM.&4-38-A TABOR&HARMONY No.5&6 EASTEND QTR.", "Name": "Murdock, Richard D.", "Address": "2421 Acanthus Dr", "City": "Wake Forest", "State": "North Carolina", "Zip": 27587, "Country": "United States", "Land_Value": 120200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.88449922900003, "SHAPE_Area": 3873.6606564 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364116.705600000917912, 258367.029599998146296 ], [ 364073.105400003492832, 258373.638799998909235 ], [ 364032.886900000274181, 258361.910599999129772 ], [ 364037.625900000333786, 258373.559500001370907 ], [ 364117.760799996554852, 258432.477200001478195 ], [ 364133.154500000178814, 258423.948300000280142 ], [ 364153.427400000393391, 258410.604299999773502 ], [ 364116.705600000917912, 258367.029599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017600", "MAP": "D9-4472-T88", "PARCEL_NAM": "2A-3", "ACRE": null, "LONGITUDE": -64.9016959, "LATITUDE": 18.35474441, "OBJECTID_1": 6051, "PARCEL_NO_": "103004017600", "Tax_Legal_": "MANDAHL 2A-3 GT NORTHSIDE QRT #1", "Name": "LEDEE, LOUIS & ESTHER", "Address": "PO Box 7161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.72078125, "SHAPE_Area": 2057.2975338299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361896.873499996960163, 258355.194099999964237 ], [ 361866.861900001764297, 258375.846700001507998 ], [ 361843.486000001430511, 258374.811000000685453 ], [ 361846.51349999755621, 258398.056099999696016 ], [ 361905.241200000047684, 258414.157699998468161 ], [ 361896.873499996960163, 258355.194099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104020500", "MAP": "F9-527-T60", "PARCEL_NAM": "4-43", "ACRE": "1.02", "LONGITUDE": -64.88666312, "LATITUDE": 18.35459792, "OBJECTID_1": 6777, "PARCEL_NO_": "103104020500", "Tax_Legal_": "TABOR & HARMORY 4 43 EAST END QTR", "Name": "THOMAS, LEONIE & LUKE", "Address": "PO Box 11134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 124100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.12580238699999, "SHAPE_Area": 3971.3623730700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363516.575400002300739, 258389.559900000691414 ], [ 363504.599399998784065, 258375.529699999839067 ], [ 363470.923100002110004, 258353.089299999177456 ], [ 363457.2516999989748, 258348.755499999970198 ], [ 363436.300200000405312, 258347.1064000017941 ], [ 363436.561700001358986, 258411.069899998605251 ], [ 363441.386900000274181, 258412.587000001221895 ], [ 363448.611400000751019, 258416.445799998939037 ], [ 363455.8125, 258423.048700001090765 ], [ 363457.399899996817112, 258426.017000000923872 ], [ 363516.575400002300739, 258389.559900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90387196, "LATITUDE": 18.35493151, "OBJECTID_1": 6050, "PARCEL_NO_": "103004017500", "Tax_Legal_": "WINTBERG 1B1-D GT. NORTHSIDE", "Name": "SMITH, MARJORIE & BARONVILLE, INGRID", "Address": "PO Box 7462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.01611929000001, "SHAPE_Area": 383.90397801500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361667.456399999558926, 258403.134500000625849 ], [ 361630.389399997889996, 258400.086899999529123 ], [ 361626.267899997532368, 258410.607900001108646 ], [ 361670.613300003111362, 258411.18189999833703 ], [ 361669.061800003051758, 258403.991999998688698 ], [ 361667.456399999558926, 258403.134500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103004011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90354031, "LATITUDE": 18.3544131, "OBJECTID_1": 5949, "PARCEL_NO_": "103004011200", "Tax_Legal_": "WINTBERG 1B-6 GR NORTHSIDE QTR", "Name": "PES, INC.", "Address": "PO Box 307776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.99715876800002, "SHAPE_Area": 1290.16812729 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361693.957800000905991, 258321.236000001430511 ], [ 361700.706799998879433, 258286.249699998646975 ], [ 361691.034699998795986, 258285.748399998992682 ], [ 361676.735799998044968, 258355.0810999982059 ], [ 361667.456399999558926, 258403.134500000625849 ], [ 361669.061800003051758, 258403.991999998688698 ], [ 361670.613300003111362, 258411.18189999833703 ], [ 361677.870099999010563, 258411.241300001740456 ], [ 361682.767300002276897, 258404.31529999896884 ], [ 361680.364500001072884, 258402.395799998193979 ], [ 361678.793300002813339, 258397.527800001204014 ], [ 361678.818499997258186, 258394.572700001299381 ], [ 361688.895199999213219, 258347.581300001591444 ], [ 361693.957800000905991, 258321.236000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004016400", "MAP": "D9-5483-T93", "PARCEL_NAM": "1B4-I", "ACRE": ".22", "LONGITUDE": -64.90298066, "LATITUDE": 18.35422394, "OBJECTID_1": 6039, "PARCEL_NO_": "103004016400", "Tax_Legal_": "1B4 REM ESTATE WINTBERG NO.3 GT NORTHSIDE QTR", "Name": "APS & ASSOCIATES LLC", "Address": "PO Box 9474", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 253200, "Improved_V": 1140900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.03590692700001, "SHAPE_Area": 1010.73928599 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361692.313500002026558, 258329.79280000180006 ], [ 361712.93860000371933, 258338.833999998867512 ], [ 361794.7837999984622, 258327.921300001442432 ], [ 361796.388300001621246, 258318.696899998933077 ], [ 361775.400799997150898, 258321.269299998879433 ], [ 361756.833999998867512, 258323.650499999523163 ], [ 361750.376299999654293, 258324.44200000166893 ], [ 361722.941899999976158, 258326.539500001817942 ], [ 361709.230999998748302, 258326.849399998784065 ], [ 361693.957800000905991, 258321.236000001430511 ], [ 361692.313500002026558, 258329.79280000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014100", "MAP": "G9-1393-T69", "PARCEL_NAM": "22-4", "ACRE": null, "LONGITUDE": -64.89692849, "LATITUDE": 18.35473447, "OBJECTID_1": 6466, "PARCEL_NO_": "103103014100", "Tax_Legal_": "MANDAHL 22-4 GREAT NORTHSIDE QTR", "Name": "GREGORY B & DORENE BROWNE LOUIS REVOCABLE TRUST", "Address": "22-4 Estate Mandal", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23200, "Improved_V": 434600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.42724765599999, "SHAPE_Area": 1421.57230323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362374.542000003159046, 258414.832299999892712 ], [ 362415.928300000727177, 258384.140299998223782 ], [ 362415.960699997842312, 258380.340799998492002 ], [ 362415.166900001466274, 258378.856699999421835 ], [ 362396.643299996852875, 258376.171999998390675 ], [ 362380.517099998891354, 258376.03999999910593 ], [ 362362.745800003409386, 258379.694200001657009 ], [ 362349.790899999439716, 258385.921000000089407 ], [ 362374.542000003159046, 258414.832299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104020200", "MAP": "F9-527-T60", "PARCEL_NAM": "4-44", "ACRE": "1.01", "LONGITUDE": -64.8875283, "LATITUDE": 18.35457396, "OBJECTID_1": 6775, "PARCEL_NO_": "103104020200", "Tax_Legal_": "TABOR & HARMONY 4 44 EAST END QTR", "Name": "GALLAGHER, MIRIAM & DEFREITAS", "Address": "PO Box 502758", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 123200, "Improved_V": 491900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 409.27129358399998, "SHAPE_Area": 8659.3319409300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363424.479599997401237, 258409.493299998342991 ], [ 363430.125500001013279, 258409.328499998897314 ], [ 363436.561700001358986, 258411.069899998605251 ], [ 363436.300200000405312, 258347.1064000017941 ], [ 363343.628200002014637, 258340.015099998563528 ], [ 363337.213699996471405, 258335.740699999034405 ], [ 363335.127099998295307, 258331.0472999997437 ], [ 363306.816899999976158, 258421.532999999821186 ], [ 363313.102300003170967, 258421.036299999803305 ], [ 363338.927699998021126, 258418.503400001674891 ], [ 363344.561099998652935, 258419.816100001335144 ], [ 363350.183700002729893, 258422.395300000905991 ], [ 363355.023400001227856, 258422.223799999803305 ], [ 363359.072899997234344, 258420.146000001579523 ], [ 363363.160199999809265, 258413.635499998927116 ], [ 363366.408900000154972, 258410.917899999767542 ], [ 363373.681900002062321, 258409.077599998563528 ], [ 363380.920699998736382, 258411.247800000011921 ], [ 363386.510899998247623, 258417.626299999654293 ], [ 363392.124600000679493, 258421.260899998247623 ], [ 363401.789499998092651, 258422.606499999761581 ], [ 363409.876000002026558, 258419.92850000038743 ], [ 363412.309299997985363, 258418.259700000286102 ], [ 363417.195799998939037, 258412.600099999457598 ], [ 363424.479599997401237, 258409.493299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104020100", "MAP": "D9-4429-T88", "PARCEL_NAM": "4-45", "ACRE": "1.01", "LONGITUDE": -64.88822009, "LATITUDE": 18.35432229, "OBJECTID_1": 6774, "PARCEL_NO_": "103104020100", "Tax_Legal_": "TABOR & HARMONY 4-45 EAST END QTR", "Name": "THAKER, HELENE M. & GUNVANT K.", "Address": "2804 Flag Marsh Rd", "City": "Mount Airy", "State": "Maryland", "Zip": 21771, "Country": "United States", "Land_Value": 138200, "Improved_V": 556800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.32790993899999, "SHAPE_Area": 5152.1362036299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363301.974600002169609, 258298.070500001311302 ], [ 363285.170100003480911, 258292.699499998241663 ], [ 363281.907200001180172, 258296.657999999821186 ], [ 363278.578400000929832, 258403.444099999964237 ], [ 363284.202799998223782, 258405.812100000679493 ], [ 363285.800999999046326, 258407.513999998569489 ], [ 363286.57490000128746, 258411.320000000298023 ], [ 363288.96509999781847, 258414.717000000178814 ], [ 363296.177000001072884, 258420.053399998694658 ], [ 363303.419399999082088, 258421.801399998366833 ], [ 363306.816899999976158, 258421.532999999821186 ], [ 363335.127099998295307, 258331.0472999997437 ], [ 363333.257600001990795, 258326.842399999499321 ], [ 363330.91780000180006, 258317.535199999809265 ], [ 363330.644599996507168, 258307.233899999409914 ], [ 363301.974600002169609, 258298.070500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004018200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89995291, "LATITUDE": 18.35476992, "OBJECTID_1": 6057, "PARCEL_NO_": "103004018200", "Tax_Legal_": "MANDAHL 2D-2 GT. NORTHSIDE", "Name": "JACOBS, DALE E. & LAURA", "Address": "7830 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.81832544100001, "SHAPE_Area": 839.59813411000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362037.2516999989748, 258397.412300001829863 ], [ 362091.208499997854233, 258403.037900000810623 ], [ 362088.437799997627735, 258396.447500001639128 ], [ 362080.482500001788139, 258383.71680000051856 ], [ 362035.337999999523163, 258382.291900001466274 ], [ 362037.2516999989748, 258397.412300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103011400", "MAP": "D9-6269-T97", "PARCEL_NAM": "25D", "ACRE": null, "LONGITUDE": -64.89286863, "LATITUDE": 18.35449601, "OBJECTID_1": 6439, "PARCEL_NO_": "103103011400", "Tax_Legal_": "MANDAHL 25D 4 GREAT NORTHSIDE", "Name": "NILES SR., VIGGO", "Address": "Hospital Ground--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.153569205, "SHAPE_Area": 2786.6118367899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362840.993400000035763, 258371.364999998360872 ], [ 362808.275499999523163, 258326.231699999421835 ], [ 362799.355400003492832, 258332.506999999284744 ], [ 362778.550999999046326, 258347.143100000917912 ], [ 362781.47919999808073, 258352.934999998658895 ], [ 362782.271099999547005, 258354.630199998617172 ], [ 362784.655900001525879, 258358.660500001162291 ], [ 362787.845100000500679, 258362.908500000834465 ], [ 362792.596699997782707, 258373.079799998551607 ], [ 362794.1824000030756, 258376.259199999272823 ], [ 362797.368000000715256, 258380.929400000721216 ], [ 362798.944700002670288, 258385.164099998772144 ], [ 362799.73480000346899, 258387.07039999961853 ], [ 362802.90429999679327, 258393.640299998223782 ], [ 362806.079199999570847, 258399.576900001615286 ], [ 362818.831000000238419, 258417.201999999582767 ], [ 362840.993400000035763, 258371.364999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104021300", "MAP": "D9-1822-T81", "PARCEL_NAM": "4-36", "ACRE": "1.01", "LONGITUDE": -64.88429591000001, "LATITUDE": 18.35453024, "OBJECTID_1": 6785, "PARCEL_NO_": "103104021300", "Tax_Legal_": "TABOR & HARMONY 4 36 EAST END", "Name": "STEINBRONN, WENDY K", "Address": "PO Box 9437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82600, "Improved_V": 314400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.969595365, "SHAPE_Area": 3081.2597261800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363747.108800001442432, 258399.890500001609325 ], [ 363726.705700002610683, 258333.862300001084805 ], [ 363699.946400001645088, 258351.375199999660254 ], [ 363687.797799997031689, 258357.608500000089407 ], [ 363706.584600001573563, 258424.045699998736382 ], [ 363744.675499998033047, 258401.559300001710653 ], [ 363747.108800001442432, 258399.890500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90406947, "LATITUDE": 18.35466678, "OBJECTID_1": 6038, "PARCEL_NO_": "103004016300", "Tax_Legal_": "WINTBERG 1B3-D GR NORTHSIDE", "Name": "GALIBER, DANTE (TRUSTEE)", "Address": "PO Box 649", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.555868041, "SHAPE_Area": 4429.9046170199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361676.735799998044968, 258355.0810999982059 ], [ 361632.469499997794628, 258345.2195999994874 ], [ 361604.957800000905991, 258356.393500000238419 ], [ 361578.1570999994874, 258378.761100001633167 ], [ 361565.185900002717972, 258386.887600000947714 ], [ 361549.795900002121925, 258394.994300000369549 ], [ 361582.039399996399879, 258396.313700001686811 ], [ 361630.389399997889996, 258400.086899999529123 ], [ 361667.456399999558926, 258403.134500000625849 ], [ 361676.735799998044968, 258355.0810999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89581465000001, "LATITUDE": 18.35469623, "OBJECTID_1": 6474, "PARCEL_NO_": "103103014900", "Tax_Legal_": "MANDAHL 23-2 GR NORTHSIDE QTR", "Name": "REGISTE, JOSEPH", "Address": "23-2 MANDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.81523676899999, "SHAPE_Area": 1098.8575430400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362488.291400000452995, 258408.797200001776218 ], [ 362512.624700002372265, 258392.108800001442432 ], [ 362542.648800000548363, 258369.978700000792742 ], [ 362525.692900002002716, 258372.584100000560284 ], [ 362494.988300003111362, 258379.932199999690056 ], [ 362466.754799999296665, 258381.178700000047684 ], [ 362488.291400000452995, 258408.797200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004019300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90474285000001, "LATITUDE": 18.35425394, "OBJECTID_1": 6067, "PARCEL_NO_": "103004019300", "Tax_Legal_": "WINTBERG 1B3-A GT. NORTHSIDE QTR.", "Name": "MONSANTO, AMBI", "Address": "8066 Estate Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.82736811799998, "SHAPE_Area": 4081.6587279700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361578.1570999994874, 258378.761100001633167 ], [ 361572.607500001788139, 258272.957899998873472 ], [ 361528.116400003433228, 258289.481199998408556 ], [ 361549.795900002121925, 258394.994300000369549 ], [ 361565.185900002717972, 258386.887600000947714 ], [ 361578.1570999994874, 258378.761100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90710473, "LATITUDE": 18.35465094, "OBJECTID_1": 5941, "PARCEL_NO_": "103004010400", "Tax_Legal_": "WINTBERG 1-126 3 GR NORTHSIDE", "Name": "PINNEY, VANCE E", "Address": "PO Box 7783", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.331727723, "SHAPE_Area": 1087.5481978 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361323.667999997735023, 258340.792399998754263 ], [ 361318.844499997794628, 258339.064100001007318 ], [ 361318.790600001811981, 258345.396499998867512 ], [ 361291.953900001943111, 258371.985700000077486 ], [ 361284.819200001657009, 258378.308499999344349 ], [ 361295.623099997639656, 258402.446699999272823 ], [ 361303.872400000691414, 258392.770500000566244 ], [ 361323.412699997425079, 258370.765599999576807 ], [ 361323.667999997735023, 258340.792399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9067775, "LATITUDE": 18.35456189, "OBJECTID_1": 5944, "PARCEL_NO_": "103004010700", "Tax_Legal_": "1-128 WINTBERG ESTATE GREAT NORTHSIDE QUARTER", "Name": "DURAND, SHIRLEEN S", "Address": "PO Box 11304", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 183200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.726135156, "SHAPE_Area": 960.42362836100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361360.271499998867512, 258360.872699998319149 ], [ 361331.756300002336502, 258337.903299998492002 ], [ 361330.12389999628067, 258340.211899999529123 ], [ 361327.699600003659725, 258340.825399998575449 ], [ 361327.446000002324581, 258370.587499998509884 ], [ 361346.881599999964237, 258388.428300000727177 ], [ 361360.271499998867512, 258360.872699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104010700", "MAP": "F9-584-T60", "PARCEL_NAM": "PARK AREA", "ACRE": null, "LONGITUDE": -64.88850414, "LATITUDE": 18.35435408, "OBJECTID_1": 6741, "PARCEL_NO_": "103104010700", "Tax_Legal_": "MANDAHL 30 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.66414547799999, "SHAPE_Area": 1512.8908642199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363281.907200001180172, 258296.657999999821186 ], [ 363266.423600003123283, 258315.740800000727177 ], [ 363265.448299996554852, 258335.575599998235703 ], [ 363263.24040000140667, 258405.429499998688698 ], [ 363265.645000003278255, 258407.137899998575449 ], [ 363272.912600003182888, 258405.930799998342991 ], [ 363278.578400000929832, 258403.444099999964237 ], [ 363281.907200001180172, 258296.657999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203010700", "MAP": "D9-345-T62", "PARCEL_NAM": "4-50-2", "ACRE": "1.4", "LONGITUDE": -64.87997237, "LATITUDE": 18.35439305, "OBJECTID_1": 6958, "PARCEL_NO_": "103203010700", "Tax_Legal_": "TARBOR & HARMONY 4-50-2 EAST END ST THOMAS", "Name": "SCHREUDER, ERIC M. & JANA R.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172400, "Improved_V": 2058800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.522626183, "SHAPE_Area": 6697.23274451 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364153.427400000393391, 258410.604299999773502 ], [ 364155.862499997019768, 258408.724399998784065 ], [ 364159.903099998831749, 258407.701999999582767 ], [ 364167.971600003540516, 258407.134700000286102 ], [ 364183.282499998807907, 258408.315499998629093 ], [ 364190.566299997270107, 258405.208700001239777 ], [ 364193.816699996590614, 258402.280000001192093 ], [ 364194.642800003290176, 258399.964699998497963 ], [ 364198.692400000989437, 258397.886999998241663 ], [ 364205.146499998867512, 258397.517599999904633 ], [ 364213.994300000369549, 258400.123100001364946 ], [ 364217.230400003492832, 258398.883099999278784 ], [ 364218.857400000095367, 258397.207600001245737 ], [ 364219.746399998664856, 258387.504599999636412 ], [ 364222.195900000631809, 258383.936099998652935 ], [ 364227.175800003111362, 258367.300400000065565 ], [ 364227.269299998879433, 258356.324299998581409 ], [ 364224.121399998664856, 258347.221500001847744 ], [ 364222.649099998176098, 258330.744199998676777 ], [ 364113.687200002372265, 258342.729100000113249 ], [ 364115.141599997878075, 258361.317200001329184 ], [ 364115.112800002098083, 258364.694499999284744 ], [ 364116.705600000917912, 258367.029599998146296 ], [ 364153.427400000393391, 258410.604299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103020700", "MAP": "D9-5458-T93", "PARCEL_NAM": "14B-1", "ACRE": null, "LONGITUDE": -64.89732854, "LATITUDE": 18.35432659, "OBJECTID_1": 6515, "PARCEL_NO_": "103103020700", "Tax_Legal_": "MANDAHL 14B GREAT NORTHSIDE QTR", "Name": "AUBAIN, CLARITA", "Address": "14B Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 119000, "Improved_V": 63800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.22800149099999, "SHAPE_Area": 2873.5266609099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362327.0641999989748, 258308.6858000010252 ], [ 362324.625500001013279, 258310.987900000065565 ], [ 362324.433100000023842, 258333.573300000280142 ], [ 362316.676299996674061, 258392.193900000303984 ], [ 362355.54839999973774, 258372.669199999421835 ], [ 362366.0574000030756, 258369.588799998164177 ], [ 362348.965899996459484, 258293.455200001597404 ], [ 362327.0641999989748, 258308.6858000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90559588000001, "LATITUDE": 18.35455592, "OBJECTID_1": 6042, "PARCEL_NO_": "103004016700", "Tax_Legal_": "WINTBERG 900C-2 GT. NORTHSIDE", "Name": "SAUNDERS, LILLIAN", "Address": "PO Box 9721", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.57548786199999, "SHAPE_Area": 981.58583317199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361479.288099996745586, 258341.855000000447035 ], [ 361459.936599999666214, 258341.696600001305342 ], [ 361448.317400000989437, 258380.442699998617172 ], [ 361477.321299999952316, 258383.424300000071526 ], [ 361479.288099996745586, 258341.855000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104021200", "MAP": "B9-31-T57", "PARCEL_NAM": "4-35", "ACRE": "1.16", "LONGITUDE": -64.88374228000001, "LATITUDE": 18.35416398, "OBJECTID_1": 6784, "PARCEL_NO_": "103104021200", "Tax_Legal_": "TARBOR & HARMONY 4-35 EAST END QTR", "Name": "BERGAN, RANDOLPH & LAVEEN", "Address": "PO Box 7392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 91500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 329.21641329099998, "SHAPE_Area": 5851.1356616499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363819.997000001370907, 258362.912399999797344 ], [ 363824.546499997377396, 258302.154699999839067 ], [ 363805.202200002968311, 258301.151999998837709 ], [ 363766.479400001466274, 258303.1570999994874 ], [ 363760.826200000941753, 258304.166299998760223 ], [ 363754.346900001168251, 258307.490699999034405 ], [ 363739.691299997270107, 258324.047200001776218 ], [ 363726.705700002610683, 258333.862300001084805 ], [ 363747.108800001442432, 258399.890500001609325 ], [ 363773.986900001764297, 258368.446400001645088 ], [ 363783.716600000858307, 258362.193300001323223 ], [ 363789.375100001692772, 258360.550799999386072 ], [ 363798.248199999332428, 258360.201299998909235 ], [ 363819.997000001370907, 258362.912399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004018100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90005123, "LATITUDE": 18.35455451, "OBJECTID_1": 6056, "PARCEL_NO_": "103004018100", "Tax_Legal_": "MANDAHL 2D-1 GT. NORTHSIDE", "Name": "MALA, KELLY", "Address": "PO Box 6493", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.848099007, "SHAPE_Area": 1297.74656751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362074.157899998128414, 258368.8885000012815 ], [ 362063.816100001335144, 258352.338599998503923 ], [ 362025.92119999974966, 258351.817299999296665 ], [ 362035.337999999523163, 258382.291900001466274 ], [ 362080.482500001788139, 258383.71680000051856 ], [ 362078.907700002193451, 258379.271000001579523 ], [ 362077.311200000345707, 258377.3581000007689 ], [ 362076.540899999439716, 258373.129900000989437 ], [ 362074.157899998128414, 258368.8885000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004019400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90441417, "LATITUDE": 18.35411471, "OBJECTID_1": 6068, "PARCEL_NO_": "103004019400", "Tax_Legal_": "WINTBERG 1B3-B GT. NORTHSIDE QTR.", "Name": "THOMAS, EPIPHANE G. & PAULINA", "Address": "1B4-D ESTATE WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.70606027500003, "SHAPE_Area": 3255.4667111099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361604.957800000905991, 258356.393500000238419 ], [ 361612.170699998736382, 258266.948899999260902 ], [ 361592.804799996316433, 258268.479100000113249 ], [ 361572.607500001788139, 258272.957899998873472 ], [ 361578.1570999994874, 258378.761100001633167 ], [ 361604.957800000905991, 258356.393500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90720332, "LATITUDE": 18.35441165, "OBJECTID_1": 5940, "PARCEL_NO_": "103004010300", "Tax_Legal_": "WINTBERG 1-125 GR NORTHSIDE QTR", "Name": "STALEY, JR. O. & GREAVES, G", "Address": "PO Box 54", "City": "ST. MICHAEL", "State": null, "Zip": 0, "Country": "Barbados", "Land_Value": 30600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.19962316499999, "SHAPE_Area": 1575.36535104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361314.919100001454353, 258326.577500000596046 ], [ 361310.192699998617172, 258313.4510000012815 ], [ 361275.260499998927116, 258343.773699998855591 ], [ 361270.735799998044968, 258346.843100000172853 ], [ 361284.819200001657009, 258378.308499999344349 ], [ 361291.953900001943111, 258371.985700000077486 ], [ 361291.993400000035763, 258371.973000001162291 ], [ 361291.98369999974966, 258371.956199999898672 ], [ 361318.790600001811981, 258345.396499998867512 ], [ 361318.844499997794628, 258339.064100001007318 ], [ 361318.880500003695488, 258334.842599999159575 ], [ 361314.919100001454353, 258326.577500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9019135, "LATITUDE": 18.35419648, "OBJECTID_1": 6049, "PARCEL_NO_": "103004017400", "Tax_Legal_": "MANDAHL 2A-1 GT. NORTHSIDE", "Name": "LEDEE, LOUIS E. & ESTHER R", "Address": "PO Box 7161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 235200, "Improved_V": 68500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.08358672999998, "SHAPE_Area": 3604.99136993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361843.486000001430511, 258374.811000000685453 ], [ 361866.861900001764297, 258375.846700001507998 ], [ 361896.873499996960163, 258355.194099999964237 ], [ 361868.013400003314018, 258335.326200000941753 ], [ 361862.095200002193451, 258272.794100001454353 ], [ 361850.830200001597404, 258269.957600001245737 ], [ 361830.65259999781847, 258272.114500001072884 ], [ 361843.486000001430511, 258374.811000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88604086, "LATITUDE": 18.35417852, "OBJECTID_1": 6787, "PARCEL_NO_": "103104021500", "Tax_Legal_": "TABOR & HARMONY 4-49 EAST END QTR", "Name": "O, KIYE MARIBEL", "Address": "PO Box 8839", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.01064887199999, "SHAPE_Area": 5596.7604040599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363593.585100002586842, 258342.060899998992682 ], [ 363559.165399998426437, 258312.226100001484156 ], [ 363536.69650000333786, 258299.376600001007318 ], [ 363533.494599997997284, 258296.606199998408556 ], [ 363526.270199999213219, 258292.747299998998642 ], [ 363517.427699998021126, 258289.508600000292063 ], [ 363482.211400002241135, 258353.181699998676777 ], [ 363507.869599997997284, 258370.279199998825788 ], [ 363515.86259999871254, 258378.577199999243021 ], [ 363521.438400000333786, 258386.644400000572205 ], [ 363555.483400002121925, 258365.813700001686811 ], [ 363593.585100002586842, 258342.060899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90665618, "LATITUDE": 18.35430931, "OBJECTID_1": 5960, "PARCEL_NO_": "103004012400", "Tax_Legal_": "WINTBERG 1-129 3 GR NORTHSIDE QTR", "Name": "PINNEY, JAMES A. & MELVINA C. TRUS", "Address": "PO Box 7783", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29600, "Improved_V": 389600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.13029156299999, "SHAPE_Area": 1162.3866961900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361376.733900003135204, 258326.994500000029802 ], [ 361344.072200000286102, 258312.039599999785423 ], [ 361338.298500001430511, 258327.190999999642372 ], [ 361334.195000000298023, 258335.601199999451637 ], [ 361331.756300002336502, 258337.903299998492002 ], [ 361360.271499998867512, 258360.872699998319149 ], [ 361376.733900003135204, 258326.994500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89551569, "LATITUDE": 18.35427643, "OBJECTID_1": 6535, "PARCEL_NO_": "103103022500", "Tax_Legal_": "MANDAHL 13G GR NORTHSIDE", "Name": "QUESTEL, A. & QUERRARD, I", "Address": "13C MANDAL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47800, "Improved_V": 132500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.58569730400001, "SHAPE_Area": 2311.92528743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362554.835199996829033, 258359.312600001692772 ], [ 362560.86599999666214, 258313.97690000012517 ], [ 362516.493699997663498, 258316.568999998271465 ], [ 362510.576200000941753, 258348.606800001114607 ], [ 362504.825900003314018, 258361.014299999922514 ], [ 362500.765500001609325, 258364.358500000089407 ], [ 362491.865500003099442, 258367.874299999326468 ], [ 362483.789800003170967, 258369.285799998790026 ], [ 362473.304200001060963, 258369.62220000103116 ], [ 362466.02759999781847, 258371.884700000286102 ], [ 362486.995300002396107, 258371.634100001305342 ], [ 362499.106200002133846, 258369.833399999886751 ], [ 362526.580099999904633, 258363.092199999839067 ], [ 362554.835199996829033, 258359.312600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103020800", "MAP": "C9-59-T63", "PARCEL_NAM": "14A REM", "ACRE": ".60", "LONGITUDE": -64.8969961, "LATITUDE": 18.35385006, "OBJECTID_1": 6516, "PARCEL_NO_": "103103020800", "Tax_Legal_": "PAR 14A REM MANDAHL 1 GREAT NORTHSIDE QTR", "Name": "HENRY, DIANE A., RICHARD P. & WANDA M. BRYAN", "Address": "5661 Oak Leafe Dr", "City": "Mount Joy", "State": "Pennsylvania", "Zip": 17552, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.985401486, "SHAPE_Area": 1958.5851055799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362388.075599998235703, 258311.519799999892712 ], [ 362417.342200003564358, 258298.806200001388788 ], [ 362361.330300003290176, 258261.892400000244379 ], [ 362348.965899996459484, 258293.455200001597404 ], [ 362354.411300003528595, 258317.711500000208616 ], [ 362382.775799997150898, 258307.04839999973774 ], [ 362388.075599998235703, 258311.519799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014300", "MAP": "D9-8895-T014", "PARCEL_NAM": "25C", "ACRE": "2.354", "LONGITUDE": -64.89286371, "LATITUDE": 18.35374718, "OBJECTID_1": 6468, "PARCEL_NO_": "103103014300", "Tax_Legal_": "MANDAHL 25C 4 GR NORTHSIDE", "Name": "BREM DEVELOPMENTS LIMITED", "Address": "1 Queen's Road East", "City": "Hong Kong", "State": "Hong Kong", "Zip": 0, "Country": "Hong Kong", "Land_Value": 195500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 423.65875075700001, "SHAPE_Area": 8699.9846153800008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362840.993400000035763, 258371.364999998360872 ], [ 362874.606100000441074, 258306.6233000010252 ], [ 362869.81139999628067, 258301.517799999564886 ], [ 362865.034599997103214, 258294.301500000059605 ], [ 362862.674999997019768, 258287.316100001335144 ], [ 362836.260899998247623, 258264.30180000141263 ], [ 362773.027999997138977, 258209.111099999397993 ], [ 362755.98030000180006, 258222.481499999761581 ], [ 362742.165100000798702, 258235.034099999815226 ], [ 362840.993400000035763, 258371.364999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8914299, "LATITUDE": 18.35429491, "OBJECTID_1": 6491, "PARCEL_NO_": "103103016800", "Tax_Legal_": "MANDAHL 26D-C GT. NORTHSIDE", "Name": "BERRY, CLIFTON", "Address": "PO Box 11174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.07767311699999, "SHAPE_Area": 2656.4253777600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362994.611800000071526, 258323.4375 ], [ 362949.443899996578693, 258324.756599999964237 ], [ 362943.785300001502037, 258326.399000000208616 ], [ 362939.730400003492832, 258329.109999999403954 ], [ 362938.10700000077486, 258330.363299999386072 ], [ 362933.220499999821186, 258336.022799998521805 ], [ 362930.73870000243187, 258343.390799999237061 ], [ 362931.402900002896786, 258360.072599999606609 ], [ 362932.94539999961853, 258368.317899998277426 ], [ 362991.802599996328354, 258369.221799999475479 ], [ 362994.611800000071526, 258323.4375 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89592985, "LATITUDE": 18.35421648, "OBJECTID_1": 6520, "PARCEL_NO_": "103103021100", "Tax_Legal_": "MANDAHL 13 GREAT NORTHSIDE QTR", "Name": "QUESTEL, MARIE A", "Address": "6595 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38200, "Improved_V": 22000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.14690976599999, "SHAPE_Area": 2225.6045021599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362477.076099999248981, 258305.480599999427795 ], [ 362471.836900003254414, 258304.913499999791384 ], [ 362468.807800002396107, 258333.450199998915195 ], [ 362465.284999996423721, 258366.638900000602007 ], [ 362466.076099999248981, 258366.185600001364946 ], [ 362472.541000001132488, 258364.549699999392033 ], [ 362478.188799999654293, 258364.173799999058247 ], [ 362488.678000003099442, 258363.415199998766184 ], [ 362497.576300002634525, 258360.110599998384714 ], [ 362500.011399999260902, 258358.230599999427795 ], [ 362506.544600002467632, 258348.573800001293421 ], [ 362513.334899999201298, 258308.732700001448393 ], [ 362477.076099999248981, 258305.480599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004019500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9041071, "LATITUDE": 18.35403994, "OBJECTID_1": 6069, "PARCEL_NO_": "103004019500", "Tax_Legal_": "WINTBERG 1B3-C GT. NORTHSIDE QTR", "Name": "THOMAS, GLADSTON & VELMA", "Address": "P.O. BOX 3726", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.51027613900001, "SHAPE_Area": 2531.4945313899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361646.815200001001358, 258270.398800000548363 ], [ 361627.488899998366833, 258267.285300001502037 ], [ 361612.170699998736382, 258266.948899999260902 ], [ 361604.957800000905991, 258356.393500000238419 ], [ 361632.469499997794628, 258345.2195999994874 ], [ 361646.815200001001358, 258270.398800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004016500", "MAP": "D9-2640-T84", "PARCEL_NAM": "1B-5", "ACRE": ".89", "LONGITUDE": -64.90375182, "LATITUDE": 18.3540971, "OBJECTID_1": 6040, "PARCEL_NO_": "103004016500", "Tax_Legal_": "WINTBERG 1B-5 GT. NORTHSIDE", "Name": "PES, INC.", "Address": "PO Box 307776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.348374318, "SHAPE_Area": 3348.9142935300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361691.034699998795986, 258285.748399998992682 ], [ 361676.548000000417233, 258282.46339999884367 ], [ 361660.48650000244379, 258274.732599999755621 ], [ 361646.815200001001358, 258270.398800000548363 ], [ 361632.469499997794628, 258345.2195999994874 ], [ 361676.735799998044968, 258355.0810999982059 ], [ 361691.034699998795986, 258285.748399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90168851, "LATITUDE": 18.35408478, "OBJECTID_1": 6048, "PARCEL_NO_": "103004017300", "Tax_Legal_": "MANDAHL 2A-2 GT. NORTHSIDE QTR.", "Name": "LEDEE, LOUIS E. & ESTHER", "Address": "PO Box 7161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53000, "Improved_V": 277000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.920358416, "SHAPE_Area": 1663.0151695899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361896.873499996960163, 258355.194099999964237 ], [ 361891.72919999808073, 258296.467999998480082 ], [ 361870.908900000154972, 258279.410100001841784 ], [ 361870.115199998021126, 258277.925900001078844 ], [ 361862.095200002193451, 258272.794100001454353 ], [ 361868.013400003314018, 258335.326200000941753 ], [ 361896.873499996960163, 258355.194099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004018900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90137593, "LATITUDE": 18.35423904, "OBJECTID_1": 6063, "PARCEL_NO_": "103004018900", "Tax_Legal_": "MANDAHL 2A GT.NORTHSIDE QTR.", "Name": "BRIN, GENE & FRANCIA", "Address": "7631 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.34099888899999, "SHAPE_Area": 1544.1186414399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361896.873499996960163, 258355.194099999964237 ], [ 361949.384499996900558, 258343.802600000053644 ], [ 361945.372699998319149, 258341.447799999266863 ], [ 361891.72919999808073, 258296.467999998480082 ], [ 361896.873499996960163, 258355.194099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103021900", "MAP": "D9-8851-T014", "PARCEL_NAM": "12 REM", "ACRE": ".93", "LONGITUDE": -64.895044, "LATITUDE": 18.35386025, "OBJECTID_1": 6528, "PARCEL_NO_": "103103021900", "Tax_Legal_": "12 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "LEON JOSEPH BRYAN REVOCABLE TRUST", "Address": "PO Box 11503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85800, "Improved_V": 75500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.19127574300001, "SHAPE_Area": 3870.44676837 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362587.785700000822544, 258244.120900001376867 ], [ 362569.320500001311302, 258243.27760000154376 ], [ 362566.911200001835823, 258266.952500000596046 ], [ 362560.86599999666214, 258313.97690000012517 ], [ 362554.835199996829033, 258359.312600001692772 ], [ 362582.260600000619888, 258358.270500000566244 ], [ 362590.436099998652935, 258356.365800000727177 ], [ 362587.677199997007847, 258336.220100000500679 ], [ 362586.588100001215935, 258328.267499998211861 ], [ 362581.526299998164177, 258291.306200001388788 ], [ 362581.203199997544289, 258288.946800000965595 ], [ 362606.837700001895428, 258282.690600000321865 ], [ 362624.232199996709824, 258278.445300001651049 ], [ 362606.444499999284744, 258244.973000001162291 ], [ 362587.785700000822544, 258244.120900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103016700", "MAP": "D9-6269-T97", "PARCEL_NAM": "25D-A", "ACRE": ".38", "LONGITUDE": -64.89312303, "LATITUDE": 18.35410107, "OBJECTID_1": 6490, "PARCEL_NO_": "103103016700", "Tax_Legal_": "MANDAHL 25DA GR. NORTHSIDE", "Name": "CLENDINEN, ASIAH INEZ", "Address": "PO Box 9134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.353948597, "SHAPE_Area": 1090.70953893 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362808.275499999523163, 258326.231699999421835 ], [ 362790.851499997079372, 258302.195700000971556 ], [ 362783.49099999666214, 258306.088700000196695 ], [ 362761.601899996399879, 258319.841699998825788 ], [ 362771.947300001978874, 258335.969500001519918 ], [ 362777.51410000026226, 258345.092000000178814 ], [ 362778.550999999046326, 258347.143100000917912 ], [ 362799.355400003492832, 258332.506999999284744 ], [ 362808.275499999523163, 258326.231699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203010800", "MAP": "B9-31-T57", "PARCEL_NAM": "4-34 & 4-34-A", "ACRE": "1.08", "LONGITUDE": -64.88286898, "LATITUDE": 18.35414892, "OBJECTID_1": 6959, "PARCEL_NO_": "103203010800", "Tax_Legal_": "4-34&4-34-A ESTATE TABOR&HARMONY No.5&6 EASTEND QTR.", "Name": "BOUMEDINE, M. K. & HOFFART, R. N", "Address": "PO Box 302446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86800, "Improved_V": 740600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.00829391899998, "SHAPE_Area": 5054.9065520100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363819.997000001370907, 258362.912399999797344 ], [ 363853.021700002253056, 258367.193500000983477 ], [ 363865.118199996650219, 258367.081399999558926 ], [ 363876.420900002121925, 258365.485100001096725 ], [ 363886.928199999034405, 258362.615800000727177 ], [ 363903.115500003099442, 258355.571100000292063 ], [ 363913.619199998676777, 258353.124000001698732 ], [ 363928.136399999260902, 258352.820599999278784 ], [ 363932.180600002408028, 258351.375999998301268 ], [ 363934.617499999701977, 258349.285000000149012 ], [ 363935.450800001621246, 258346.125500001013279 ], [ 363935.515500001609325, 258338.526599999517202 ], [ 363930.738799996674061, 258331.310300000011921 ], [ 363928.334200002253056, 258329.60190000012517 ], [ 363887.300399996340275, 258318.922499999403954 ], [ 363839.040299996733665, 258304.595300000160933 ], [ 363824.546499997377396, 258302.154699999839067 ], [ 363819.997000001370907, 258362.912399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022000", "MAP": "D9-5773-T94", "PARCEL_NAM": "12DA", "ACRE": null, "LONGITUDE": -64.89474116, "LATITUDE": 18.35412335, "OBJECTID_1": 6529, "PARCEL_NO_": "103103022000", "Tax_Legal_": "MANDAHL 12C-3 & 12DA 1 GR NORTHSIDE", "Name": "BRYAN, LEON", "Address": "PO Box 8124", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 432200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.62899491100001, "SHAPE_Area": 1836.68913488 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362646.290200002491474, 258319.953400000929832 ], [ 362633.600699998438358, 258296.074700001627207 ], [ 362617.480999998748302, 258304.831799998879433 ], [ 362585.740099996328354, 258322.074999999254942 ], [ 362586.588100001215935, 258328.267499998211861 ], [ 362587.677199997007847, 258336.220100000500679 ], [ 362592.764300003647804, 258355.823399998247623 ], [ 362605.721000000834465, 258349.385499998927116 ], [ 362630.064999997615814, 258331.430700000375509 ], [ 362646.290200002491474, 258319.953400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90731338000001, "LATITUDE": 18.35410812, "OBJECTID_1": 5939, "PARCEL_NO_": "103004010200", "Tax_Legal_": "WINTBERG 1-124 GREAT NORTHSIDE QTR", "Name": "GREAVES, GLORIA", "Address": "PO Box 54", "City": "ST. MICHAEL", "State": null, "Zip": 0, "Country": "Barbados", "Land_Value": 52100, "Improved_V": 155700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.71136110200001, "SHAPE_Area": 1849.6638929400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361275.260499998927116, 258343.773699998855591 ], [ 361310.192699998617172, 258313.4510000012815 ], [ 361306.287000000476837, 258298.642499998211861 ], [ 361303.126500003039837, 258291.017299998551607 ], [ 361301.530000001192093, 258289.104400001466274 ], [ 361299.168600000441074, 258282.329999998211861 ], [ 361293.608999997377396, 258272.363099999725819 ], [ 361273.980499997735023, 258304.710900001227856 ], [ 361267.481499999761581, 258310.357200000435114 ], [ 361261.813900001347065, 258313.055100001394749 ], [ 361256.160700000822544, 258314.064300000667572 ], [ 361270.735799998044968, 258346.843100000172853 ], [ 361275.260499998927116, 258343.773699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89182951, "LATITUDE": 18.35398175, "OBJECTID_1": 6469, "PARCEL_NO_": "103103014400", "Tax_Legal_": "MANDAHL REM 26D 4 GREAT NORTHSIDE", "Name": "BOYLE, LOIS C", "Address": "510 Tudor Ct", "City": "Newport News", "State": "Virginia", "Zip": 23603, "Country": "United States", "Land_Value": 57600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.56297426699999, "SHAPE_Area": 2391.67024081 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362955.168999999761581, 258315.304200001060963 ], [ 362949.819700002670288, 258280.641100000590086 ], [ 362882.665600001811981, 258307.111400000751019 ], [ 362888.237899996340275, 258315.60080000013113 ], [ 362920.967600002884865, 258354.498799998313189 ], [ 362921.025200001895428, 258347.744300000369549 ], [ 362921.888999998569489, 258340.996300000697374 ], [ 362922.722300000488758, 258337.836800001561642 ], [ 362925.193400003015995, 258331.735300000756979 ], [ 362929.269900001585484, 258326.491300001740456 ], [ 362932.525700002908707, 258322.929400000721216 ], [ 362942.251800000667572, 258317.098299998790026 ], [ 362949.523000001907349, 258315.469099998474121 ], [ 362955.168999999761581, 258315.304200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90553878, "LATITUDE": 18.35421476, "OBJECTID_1": 6041, "PARCEL_NO_": "103004016600", "Tax_Legal_": "WINTBERG 900C-1 GT. NORTHSIDE", "Name": "HARRIGAN, PHYLLIS", "Address": "PO Box 10950", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24000, "Improved_V": 301700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.470549917, "SHAPE_Area": 522.96236078000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361480.421700000762939, 258303.445199999958277 ], [ 361473.958599999547005, 258304.870000001043081 ], [ 361470.711800001561642, 258307.376499999314547 ], [ 361459.936599999666214, 258341.696600001305342 ], [ 361479.288099996745586, 258341.855000000447035 ], [ 361480.421700000762939, 258303.445199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104021600", "MAP": "F9-525-T60", "PARCEL_NAM": "4-42", "ACRE": "1.05", "LONGITUDE": -64.88587193, "LATITUDE": 18.35366732, "OBJECTID_1": 6788, "PARCEL_NO_": "103104021600", "Tax_Legal_": "TARBOR & HARMONY 4-42 EAST END QTR", "Name": "WEBSTER, LORNA", "Address": "PO BOX 302875", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 378.429048868, "SHAPE_Area": 3688.6476906399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363539.732199996709824, 258226.996300000697374 ], [ 363498.167900003492832, 258278.585200000554323 ], [ 363499.757200002670288, 258281.342399999499321 ], [ 363515.066299997270107, 258282.734200000762939 ], [ 363527.130500003695488, 258286.421599999070168 ], [ 363535.159400001168251, 258290.498100001364946 ], [ 363539.163999997079372, 258293.697200000286102 ], [ 363562.433799996972084, 258307.186599999666214 ], [ 363579.251299999654293, 258320.834199998527765 ], [ 363617.664800003170967, 258355.134700000286102 ], [ 363621.683700002729893, 258356.645199999213219 ], [ 363627.335100002586842, 258355.847100000828505 ], [ 363611.334700003266335, 258340.939599998295307 ], [ 363592.971199996769428, 258319.468899998813868 ], [ 363539.732199996709824, 258226.996300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88675609000001, "LATITUDE": 18.35402097, "OBJECTID_1": 6825, "PARCEL_NO_": "103104025500", "Tax_Legal_": "TARBOR & HARMONY 4-48 EAST END QTR.", "Name": "ZIMMERMAN FAMILY TRUST", "Address": "PO Box 502580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 96200, "Improved_V": 1258500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 347.68857258999998, "SHAPE_Area": 4273.7337381999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363517.427699998021126, 258289.508600000292063 ], [ 363512.598899997770786, 258288.413600001484156 ], [ 363498.092399999499321, 258287.450500000268221 ], [ 363470.611299999058247, 258295.035999998450279 ], [ 363439.84910000115633, 258309.138599999248981 ], [ 363368.681400001049042, 258333.465199999511242 ], [ 363369.468000002205372, 258335.793600000441074 ], [ 363456.499399997293949, 258342.416600000113249 ], [ 363471.783299997448921, 258346.7635000012815 ], [ 363482.211400002241135, 258353.181699998676777 ], [ 363517.427699998021126, 258289.508600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203015900", "MAP": "D9-8507-T010", "PARCEL_NAM": "4-40-1", "ACRE": ".50", "LONGITUDE": -64.88140824, "LATITUDE": 18.35403638, "OBJECTID_1": 6998, "PARCEL_NO_": "103203015900", "Tax_Legal_": "4-40-1 TABOR & HARMONY NO.5&6 EAST END QTR", "Name": "DRAFTS III, TARANCE F.", "Address": "806 NW 37th Pl", "City": "Cape Coral", "State": "Florida", "Zip": 33993, "Country": "United States", "Land_Value": 55100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.17913085500001, "SHAPE_Area": 2119.8086080100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364011.546899996697903, 258293.422499999403954 ], [ 364010.857900001108646, 258293.442499998956919 ], [ 363991.204999998211861, 258332.649599999189377 ], [ 364014.485600002110004, 258344.872499998658895 ], [ 364023.301100000739098, 258351.277399998158216 ], [ 364036.153499998152256, 258357.08219999819994 ], [ 364043.4966000020504, 258347.009799998253584 ], [ 364056.121200002729893, 258329.819499999284744 ], [ 364011.546899996697903, 258293.422499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004030500", "MAP": "G9-1953-T72", "PARCEL_NAM": "3C-1", "ACRE": "0.25", "LONGITUDE": -64.90092822, "LATITUDE": 18.35401524, "OBJECTID_1": 6132, "PARCEL_NO_": "103004030500", "Tax_Legal_": "3C-1 ESTATE MANDAHL GR NORTHSIDE", "Name": "OLIVE, CLAUDETTE & ANDREW", "Address": "6465 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 322400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.935899654, "SHAPE_Area": 803.54826360100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361970.132100000977516, 258274.733800001442432 ], [ 361942.418999999761581, 258309.548500001430511 ], [ 361955.210299998521805, 258322.529899999499321 ], [ 361960.786100000143051, 258330.597100000828505 ], [ 361962.364600002765656, 258334.620700001716614 ], [ 361962.3412000015378, 258337.364799998700619 ], [ 361964.742200002074242, 258339.495400000363588 ], [ 361966.358400002121925, 258339.086399998515844 ], [ 361970.132100000977516, 258274.733800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004038000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90063137, "LATITUDE": 18.35409326, "OBJECTID_1": 6197, "PARCEL_NO_": "103004038000", "Tax_Legal_": "MANDAHL 4G GREAT NORTHSIDE QTR", "Name": "BERRY, JOSEPH A", "Address": "PO Box 307741", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32800, "Improved_V": 167000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.995152238, "SHAPE_Area": 1255.28001066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362011.103000000119209, 258292.800900001078844 ], [ 361973.904700003564358, 258305.162099998444319 ], [ 361972.031400002539158, 258335.755300000309944 ], [ 361972.814300000667572, 258338.506000000983477 ], [ 361976.844099998474121, 258338.75 ], [ 362004.339599996805191, 258329.475900001823902 ], [ 362008.414300002157688, 258324.442999999970198 ], [ 362011.103000000119209, 258292.800900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90650654, "LATITUDE": 18.35400928, "OBJECTID_1": 5961, "PARCEL_NO_": "103004012500", "Tax_Legal_": "WINTBERG 1-130 GR NORTHSIDE", "Name": "DAWSON, J. WALTER", "Address": "PO Box 308711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29200, "Improved_V": 265200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.286961045, "SHAPE_Area": 1415.4867447700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361396.11150000244379, 258287.116599999368191 ], [ 361390.265799999237061, 258284.975499998778105 ], [ 361375.780900001525879, 258281.479400001466274 ], [ 361370.134900003671646, 258281.644299998879433 ], [ 361362.860100001096725, 258283.695700000971556 ], [ 361357.179999999701977, 258287.871100001037121 ], [ 361353.900799997150898, 258294.177000001072884 ], [ 361351.445900000631809, 258298.378800000995398 ], [ 361349.820699997246265, 258299.843199998140335 ], [ 361344.072200000286102, 258312.039599999785423 ], [ 361376.733900003135204, 258326.994500000029802 ], [ 361396.11150000244379, 258287.116599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90689341, "LATITUDE": 18.35398301, "OBJECTID_1": 5959, "PARCEL_NO_": "103004012300", "Tax_Legal_": "1-131 WINTBERG No.3 GREAT NORTHSIDE QTR", "Name": "DION JENNINGS & OTHERS", "Address": "6146 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29200, "Improved_V": 356600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.133730679, "SHAPE_Area": 906.35434427500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361329.8462999984622, 258278.148200001567602 ], [ 361313.597699999809265, 258292.369500000029802 ], [ 361319.848600000143051, 258315.852099999785423 ], [ 361321.443300001323223, 258317.976100001484156 ], [ 361324.600199997425079, 258326.023499999195337 ], [ 361327.821900002658367, 258326.471999999135733 ], [ 361330.258799999952316, 258324.381000000983477 ], [ 361334.401799999177456, 258311.327100001275539 ], [ 361339.33500000089407, 258300.179499998688698 ], [ 361343.420500002801418, 258293.880199998617172 ], [ 361349.145599998533726, 258284.427799999713898 ], [ 361348.359099999070168, 258282.099399998784065 ], [ 361343.531999997794628, 258280.793299999088049 ], [ 361333.856200002133846, 258280.714099999517202 ], [ 361331.444499999284744, 258279.850000001490116 ], [ 361329.8462999984622, 258278.148200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103011500", "MAP": null, "PARCEL_NAM": "25E-B", "ACRE": null, "LONGITUDE": -64.89413172, "LATITUDE": 18.3539505, "OBJECTID_1": 6440, "PARCEL_NO_": "103103011500", "Tax_Legal_": "MANDAHL ESTATE 25E-A,25E-B No.1 GREAT NORTHSIDE QTR.", "Name": "NILES, UNA GEORGE", "Address": "PO Box 6011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.435147481, "SHAPE_Area": 705.59614078899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362671.960900001227856, 258335.573300000280142 ], [ 362676.048199996352196, 258329.062899999320507 ], [ 362692.557499997317791, 258284.235100001096725 ], [ 362704.884099997580051, 258257.104899998754263 ], [ 362702.459799997508526, 258257.718299999833107 ], [ 362697.537399999797344, 258267.599399998784065 ], [ 362670.580300003290176, 258308.330899998545647 ], [ 362667.329800002276897, 258311.25959999859333 ], [ 362665.69200000166893, 258314.201499998569489 ], [ 362657.5641999989748, 258321.734400000423193 ], [ 362671.960900001227856, 258335.573300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004018400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90334073, "LATITUDE": 18.35401381, "OBJECTID_1": 6059, "PARCEL_NO_": "103004018400", "Tax_Legal_": "WINTBERG 1B4-E GT.NORTHSIDE QTR.", "Name": "WALTERS, THEODORE E. & CARMEN A. (TRUSTEES)", "Address": "PO Box 304456", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.878625157, "SHAPE_Area": 586.79142313600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361709.230999998748302, 258326.849399998784065 ], [ 361715.23309999704361, 258284.890999998897314 ], [ 361700.706799998879433, 258286.249699998646975 ], [ 361693.957800000905991, 258321.236000001430511 ], [ 361709.230999998748302, 258326.849399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004019000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90320428, "LATITUDE": 18.35401231, "OBJECTID_1": 6064, "PARCEL_NO_": "103004019000", "Tax_Legal_": "WINTBERG 1B4-D GT.NORTHSIDE QTR.", "Name": "THOMAS, EPIPHANE GUY & PAULINA", "Address": "1B4-D ESTATE WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 329400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.700358232, "SHAPE_Area": 596.15056210099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361722.941899999976158, 258326.539500001817942 ], [ 361729.762900002300739, 258283.109999999403954 ], [ 361715.23309999704361, 258284.890999998897314 ], [ 361709.230999998748302, 258326.849399998784065 ], [ 361722.941899999976158, 258326.539500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004018300", "MAP": "D9-8391-T010", "PARCEL_NAM": "1B4-C", "ACRE": ".20", "LONGITUDE": -64.90300334, "LATITUDE": 18.35399559, "OBJECTID_1": 6058, "PARCEL_NO_": "103004018300", "Tax_Legal_": "1B4-C & 1B4-B-A WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "BOURDEAU, MARIE M.", "Address": "P.O. BOX 3751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21200, "Improved_V": 379500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.90130878900001, "SHAPE_Area": 1229.4061541000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361751.382700003683567, 258324.318599998950958 ], [ 361758.153099998831749, 258279.983399998396635 ], [ 361729.762900002300739, 258283.109999999403954 ], [ 361722.941899999976158, 258326.539500001817942 ], [ 361750.376299999654293, 258324.44200000166893 ], [ 361751.382700003683567, 258324.318599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022300", "MAP": "D9-218-T59", "PARCEL_NAM": "12C", "ACRE": null, "LONGITUDE": -64.8944435, "LATITUDE": 18.35368385, "OBJECTID_1": 6532, "PARCEL_NO_": "103103022300", "Tax_Legal_": "MANDAHL 12C GREAT NORTHSIDE QTR", "Name": "LEDEE, DOLICIA", "Address": "6578-12C Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64500, "Improved_V": 293300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.319855864, "SHAPE_Area": 2741.1543077900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362633.600699998438358, 258296.074700001627207 ], [ 362635.968500003218651, 258294.628299999982119 ], [ 362640.201899997889996, 258300.660799998790026 ], [ 362637.675599999725819, 258303.74269999936223 ], [ 362646.290200002491474, 258319.953400000929832 ], [ 362656.854999996721745, 258310.329500000923872 ], [ 362665.002599999308586, 258300.474800001829863 ], [ 362677.260899998247623, 258281.365600001066923 ], [ 362681.853000000119209, 258274.593299999833107 ], [ 362683.254100002348423, 258272.527100000530481 ], [ 362642.773199997842312, 258250.4560999982059 ], [ 362635.337099999189377, 258246.401700001209974 ], [ 362606.444499999284744, 258244.973000001162291 ], [ 362633.600699998438358, 258296.074700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203011300", "MAP": "D9-345-T62", "PARCEL_NAM": "4-50-3", "ACRE": "1.0", "LONGITUDE": -64.88015499, "LATITUDE": 18.35391762, "OBJECTID_1": 6964, "PARCEL_NO_": "103203011300", "Tax_Legal_": "4-50-3 & 4-50-4 REM TABOR & HARMONY NO.5&6 EAST END QTR", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 160300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.26670791499998, "SHAPE_Area": 4645.5568318100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364222.649099998176098, 258330.744199998676777 ], [ 364221.095799997448921, 258323.765399999916553 ], [ 364217.132500000298023, 258315.711399998515844 ], [ 364215.528899997472763, 258314.642799999564886 ], [ 364212.343199998140335, 258309.972699999809265 ], [ 364205.939499996602535, 258304.431800000369549 ], [ 364199.508699998259544, 258302.057199999690056 ], [ 364182.583400003612041, 258301.074299998581409 ], [ 364177.765299998223782, 258298.712799999862909 ], [ 364170.521099999547005, 258297.175900001078844 ], [ 364164.907399997115135, 258293.541299998760223 ], [ 364159.281199999153614, 258291.384300000965595 ], [ 364131.099899999797344, 258286.50959999859333 ], [ 364123.063699997961521, 258283.277499999850988 ], [ 364115.841099999845028, 258279.207600001245737 ], [ 364110.03320000320673, 258298.369500000029802 ], [ 364108.361299999058247, 258305.321899998933077 ], [ 364103.37049999833107, 258323.223999999463558 ], [ 364112.995899997651577, 258329.21339999884367 ], [ 364113.687200002372265, 258342.729100000113249 ], [ 364222.649099998176098, 258330.744199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022100", "MAP": "D9-5773-T94", "PARCEL_NAM": "12D", "ACRE": null, "LONGITUDE": -64.8948306, "LATITUDE": 18.3538758, "OBJECTID_1": 6530, "PARCEL_NO_": "103103022100", "Tax_Legal_": "12D ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "WAYNE ALPHONSO BRYAN and LAHREN PANDOLFI", "Address": "12D Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27100, "Improved_V": 192000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.16043284700001, "SHAPE_Area": 1280.22801901 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362633.600699998438358, 258296.074700001627207 ], [ 362624.232199996709824, 258278.445300001651049 ], [ 362606.837700001895428, 258282.690600000321865 ], [ 362581.203199997544289, 258288.946800000965595 ], [ 362581.526299998164177, 258291.306200001388788 ], [ 362585.740099996328354, 258322.074999999254942 ], [ 362617.480999998748302, 258304.831799998879433 ], [ 362633.600699998438358, 258296.074700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90254486000001, "LATITUDE": 18.35394367, "OBJECTID_1": 6045, "PARCEL_NO_": "103004017000", "Tax_Legal_": "1B4-A WINTBERG GREAT NORTHSIDE QTR", "Name": "DANIEL, LELIA", "Address": "PO Box 742", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18200, "Improved_V": 183400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.666922183, "SHAPE_Area": 910.94942469700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361803.207400001585484, 258275.478500001132488 ], [ 361781.415399998426437, 258277.833299998193979 ], [ 361775.400799997150898, 258321.269299998879433 ], [ 361796.388300001621246, 258318.696899998933077 ], [ 361803.207400001585484, 258275.478500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88759589, "LATITUDE": 18.35374984, "OBJECTID_1": 6790, "PARCEL_NO_": "103104021800", "Tax_Legal_": "TABOR & HARMONY 4-53B EAST END QTR", "Name": "ROBERT LACARRUBBA & SARAH SYED", "Address": "161 Brantwood Rd", "City": "Buffalo", "State": "New York", "Zip": 142264369, "Country": "United States", "Land_Value": 82000, "Improved_V": 1304800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.42047127199999, "SHAPE_Area": 4679.4265099599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363373.631899997591972, 258225.636900000274181 ], [ 363355.722199998795986, 258245.544199999421835 ], [ 363343.460199996829033, 258265.075500000268221 ], [ 363338.48030000180006, 258281.711199998855591 ], [ 363335.879799999296665, 258303.010299999266863 ], [ 363338.136900000274181, 258322.027199998497963 ], [ 363341.29559999704361, 258329.863499999046326 ], [ 363344.493900001049042, 258333.056099999696016 ], [ 363349.328100003302097, 258333.517900001257658 ], [ 363432.624700002372265, 258305.279800001531839 ], [ 363390.82769999653101, 258289.527899999171495 ], [ 363373.631899997591972, 258225.636900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004038100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90017236, "LATITUDE": 18.35374531, "OBJECTID_1": 6198, "PARCEL_NO_": "103004038100", "Tax_Legal_": "MANDAHL 4H GREAT NORTHSIDE QTR", "Name": "EURICE AGATHA NIBBS REVOCABLE LIVING TRUST", "Address": "PO Box 8434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 212400, "Improved_V": 96300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.81085529800001, "SHAPE_Area": 2712.2557563099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362049.418600000441074, 258243.929699998348951 ], [ 362045.340300001204014, 258249.384799998253584 ], [ 362038.968900002539158, 258240.04450000077486 ], [ 362030.06530000269413, 258243.982400000095367 ], [ 362022.736599996685982, 258252.366200000047684 ], [ 362020.258299998939037, 258259.311999998986721 ], [ 362017.467200003564358, 258302.985500000417233 ], [ 362019.074400000274181, 258303.631999999284744 ], [ 362021.500500001013279, 258302.807399999350309 ], [ 362027.983400002121925, 258299.0608000010252 ], [ 362031.235600002110004, 258295.921000000089407 ], [ 362034.42849999666214, 258299.746800001710653 ], [ 362027.936599999666214, 258304.548900000751019 ], [ 362017.416799999773502, 258308.895700000226498 ], [ 362018.181800000369549, 258313.757100000977516 ], [ 362018.952100001275539, 258317.985300000756979 ], [ 362021.353100001811981, 258320.115899998694658 ], [ 362023.766599997878075, 258320.768899999558926 ], [ 362031.858499996364117, 258317.457699999213219 ], [ 362039.154899999499321, 258312.8733000010252 ], [ 362044.838600002229214, 258308.275800000876188 ], [ 362051.348499998450279, 258301.363000001758337 ], [ 362068.494999997317791, 258276.383200000971556 ], [ 362070.926500000059605, 258274.925400000065565 ], [ 362073.370700001716614, 258271.990100000053644 ], [ 362049.418600000441074, 258243.929699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004010100", "MAP": "A9-81-T68", "PARCEL_NAM": "1-112", "ACRE": "0.31", "LONGITUDE": -64.90780424, "LATITUDE": 18.35395925, "OBJECTID_1": 5938, "PARCEL_NO_": "103004010100", "Tax_Legal_": "WINTBERG 1-112 GR NORTHSIDE", "Name": "RAMKISSOON, KRISHNARINE & S", "Address": "BOX 5001", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.11382879300001, "SHAPE_Area": 856.48119037200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361234.670800000429153, 258280.957800000905991 ], [ 361210.531800001859665, 258274.849599998444319 ], [ 361227.173100002110004, 258309.182900000363588 ], [ 361256.160700000822544, 258314.064300000667572 ], [ 361252.201099999248981, 258305.588100001215935 ], [ 361238.693400003015995, 258282.04619999974966 ], [ 361234.670800000429153, 258280.957800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004016000", "MAP": "G9-3047-T80", "PARCEL_NAM": "1-115", "ACRE": "0.49", "LONGITUDE": -64.9075111, "LATITUDE": 18.35379958, "OBJECTID_1": 6035, "PARCEL_NO_": "103004016000", "Tax_Legal_": "WINTBERG 1-115 GR NORTHSIDE", "Name": "LEDEE, DAVID T. & CLEOTIDE", "Address": "PO Box 303374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.20600207699999, "SHAPE_Area": 2200.2714919199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361293.608999997377396, 258272.363099999725819 ], [ 361271.136500000953674, 258259.9358000010252 ], [ 361273.006300002336502, 258229.764699999243021 ], [ 361263.260399997234344, 258237.917599998414516 ], [ 361260.79110000282526, 258243.80799999833107 ], [ 361259.164099998772144, 258245.483399998396635 ], [ 361257.524499997496605, 258248.636399999260902 ], [ 361238.693400003015995, 258282.04619999974966 ], [ 361252.201099999248981, 258305.588100001215935 ], [ 361256.160700000822544, 258314.064300000667572 ], [ 361261.813900001347065, 258313.055100001394749 ], [ 361267.481499999761581, 258310.357200000435114 ], [ 361273.980499997735023, 258304.710900001227856 ], [ 361293.608999997377396, 258272.363099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104022000", "MAP": "F9-584-T60", "PARCEL_NAM": "4-46", "ACRE": "1.02", "LONGITUDE": -64.88788098000001, "LATITUDE": 18.35332198, "OBJECTID_1": 6792, "PARCEL_NO_": "103104022000", "Tax_Legal_": "4-46 TARBOR & HARMONY NO 5& 6 EAST END QTR", "Name": "BERNSTEIN-NAVORI FAMILY TRUST", "Address": "53 Princevile Ln", "City": "Las Vegas", "State": "Nevada", "Zip": 89113, "Country": "United States", "Land_Value": 83200, "Improved_V": 312000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 392.71591662899999, "SHAPE_Area": 3643.89074897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363387.952399998903275, 258153.771200001239777 ], [ 363383.1199000030756, 258153.098400000482798 ], [ 363375.7804000005126, 258162.748599998652935 ], [ 363361.03660000115633, 258189.647900000214577 ], [ 363360.201499998569489, 258193.0185999982059 ], [ 363358.574500001966953, 258194.693999998271465 ], [ 363352.827799998223782, 258206.679299999028444 ], [ 363351.202600002288818, 258208.1435999982059 ], [ 363343.02080000191927, 258222.008799999952316 ], [ 363334.048799999058247, 258233.967700000852346 ], [ 363332.427199997007847, 258235.009899999946356 ], [ 363304.7212999984622, 258268.98030000180006 ], [ 363291.17400000244379, 258285.415600001811981 ], [ 363285.170100003480911, 258292.699499998241663 ], [ 363301.974600002169609, 258298.070500001311302 ], [ 363330.644599996507168, 258307.233899999409914 ], [ 363330.307499997317791, 258294.521000001579523 ], [ 363332.859499998390675, 258278.920899998396635 ], [ 363336.183700002729893, 258267.337999999523163 ], [ 363339.480800002813339, 258258.92119999974966 ], [ 363341.105999998748302, 258257.456900000572205 ], [ 363344.385200001299381, 258251.15089999884367 ], [ 363346.008699998259544, 258249.897599998861551 ], [ 363350.099600002169609, 258242.964999999850988 ], [ 363356.612999998033047, 258235.630100000649691 ], [ 363358.250799998641014, 258232.688200000673532 ], [ 363368.011100001633167, 258222.846700001507998 ], [ 363372.093000002205372, 258216.969399999827147 ], [ 363377.047700002789497, 258203.288899999111891 ], [ 363387.952399998903275, 258153.771200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003014300", "MAP": "A9-81-T68", "PARCEL_NAM": "1-110", "ACRE": "0.29", "LONGITUDE": -64.90821316, "LATITUDE": 18.35391043, "OBJECTID_1": 5647, "PARCEL_NO_": "103003014300", "Tax_Legal_": "WINTBERG 1-110 GR NORTHSIDE", "Name": "SALEM, TAHIEH", "Address": "6100 Red Hook Quarter", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44600, "Improved_V": 511300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.82134337100001, "SHAPE_Area": 1734.42020437 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361227.173100002110004, 258309.182900000363588 ], [ 361210.531800001859665, 258274.849599998444319 ], [ 361200.875799998641014, 258272.448499999940395 ], [ 361186.338799998164177, 258275.073800001293421 ], [ 361176.663099996745586, 258274.994600001722574 ], [ 361166.999899998307228, 258273.437800001353025 ], [ 361165.390900000929832, 258273.002500001341105 ], [ 361163.49889999628067, 258272.366099998354912 ], [ 361162.654351689096075, 258273.004781888419529 ], [ 361161.924733010295313, 258273.772136424086057 ], [ 361161.329414187697694, 258274.64779154988355 ], [ 361160.884199999272823, 258275.608500000089407 ], [ 361157.233489152626134, 258285.604642428777879 ], [ 361153.215999998152256, 258295.459100000560284 ], [ 361155.519100002944469, 258295.930900000035763 ], [ 361157.210799999535084, 258296.499899998307228 ], [ 361158.735399998724461, 258297.012699998915195 ], [ 361160.342600002884865, 258297.659099999815226 ], [ 361227.173100002110004, 258309.182900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89542813, "LATITUDE": 18.35383427, "OBJECTID_1": 6536, "PARCEL_NO_": "103103022600", "Tax_Legal_": "MANDAHL 13F GT. NORTHSIDE", "Name": "QUESTEL, L. & LEDEE, R. & D", "Address": "6566 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43400, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.867821819, "SHAPE_Area": 2044.4445157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362566.911200001835823, 258266.952500000596046 ], [ 362526.546999998390675, 258272.321699999272823 ], [ 362520.107299998402596, 258271.002399999648333 ], [ 362517.364699997007847, 258308.976799998432398 ], [ 362516.493699997663498, 258316.568999998271465 ], [ 362560.86599999666214, 258313.97690000012517 ], [ 362566.911200001835823, 258266.952500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004030400", "MAP": "G9-1953-T72", "PARCEL_NAM": "3C-2", "ACRE": "0.27", "LONGITUDE": -64.9010209, "LATITUDE": 18.35376089, "OBJECTID_1": 6131, "PARCEL_NO_": "103004030400", "Tax_Legal_": "3C-2 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "CHURCH, PETER (Trustee)", "Address": "120 2nd St", "City": "Elkins", "State": "West Virginia", "Zip": 26241, "Country": "United States", "Land_Value": 28200, "Improved_V": 229100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.30049544100001, "SHAPE_Area": 1360.8177492100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361971.956900000572205, 258249.839600000530481 ], [ 361972.304899998009205, 258243.211500000208616 ], [ 361921.26070000231266, 258290.821400001645088 ], [ 361925.619499996304512, 258293.78999999910593 ], [ 361934.431400001049042, 258300.617199998348951 ], [ 361942.418999999761581, 258309.548500001430511 ], [ 361970.132100000977516, 258274.733800001442432 ], [ 361971.956900000572205, 258249.839600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026000", "MAP": "D9-8281-T009", "PARCEL_NAM": "14B-2-1", "ACRE": ".07", "LONGITUDE": -64.89738062000001, "LATITUDE": 18.35389423, "OBJECTID_1": 6565, "PARCEL_NO_": "103103026000", "Tax_Legal_": "MANDAHL 14B-2 GREAT NORTHSIDE", "Name": "RHYMER, ALFORD SR. & PONT, IRMA", "Address": "394-188 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 92600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.245704071399999, "SHAPE_Area": 194.62980907799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362348.965899996459484, 258293.455200001597404 ], [ 362328.828299999237061, 258289.686000000685453 ], [ 362327.0641999989748, 258308.6858000010252 ], [ 362348.965899996459484, 258293.455200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90061502, "LATITUDE": 18.3536475, "OBJECTID_1": 6133, "PARCEL_NO_": "103004030600", "Tax_Legal_": "4E ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "AUBIN, LEON G. & MARIE J. RAYMONDE DE AUBIN", "Address": "PO Box 10482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54900, "Improved_V": 255900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.264198284, "SHAPE_Area": 2301.9690555100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362011.103000000119209, 258292.800900001078844 ], [ 362012.418200001120567, 258233.072200000286102 ], [ 361977.721600003540516, 258235.743599999696016 ], [ 361973.904700003564358, 258305.162099998444319 ], [ 362011.103000000119209, 258292.800900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89585961, "LATITUDE": 18.3537838, "OBJECTID_1": 6537, "PARCEL_NO_": "103103022700", "Tax_Legal_": "MANDAHL 13X GT. NORTHSIDE", "Name": "GEORGE ADAM QUERRARD TRUST & JOESPH E QUESTEL", "Address": "13-C Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52100, "Improved_V": 7500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.51350532500001, "SHAPE_Area": 1865.4900669399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362487.916000001132488, 258263.561700001358986 ], [ 362476.661799997091293, 258259.458799999207258 ], [ 362471.836900003254414, 258304.913499999791384 ], [ 362477.076099999248981, 258305.480599999427795 ], [ 362513.334899999201298, 258308.732700001448393 ], [ 362517.364699997007847, 258308.976799998432398 ], [ 362520.107299998402596, 258271.002399999648333 ], [ 362487.916000001132488, 258263.561700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040100", "MAP": null, "PARCEL_NAM": "2B", "ACRE": null, "LONGITUDE": -64.90571519, "LATITUDE": 18.35378314, "OBJECTID_1": 6211, "PARCEL_NO_": "103004040100", "Tax_Legal_": "2B WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "OTTLEY, ANTHONY", "Address": "PO Box 9073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.050981081, "SHAPE_Area": 2148.8690602800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361473.655799999833107, 258245.761300001293421 ], [ 361422.62610000371933, 258272.574700001627207 ], [ 361423.310199998319149, 258286.93470000103116 ], [ 361428.090499997138977, 258293.728799998760223 ], [ 361435.313199996948242, 258297.798700001090765 ], [ 361445.777199998497963, 258299.995299998670816 ], [ 361454.648500002920628, 258299.856800001114607 ], [ 361482.116999998688698, 258293.748799998313189 ], [ 361473.655799999833107, 258245.761300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003014200", "MAP": "A9-81-T68", "PARCEL_NAM": "1-109", "ACRE": "0.27", "LONGITUDE": -64.90871106, "LATITUDE": 18.35379507, "OBJECTID_1": 5646, "PARCEL_NO_": "103003014200", "Tax_Legal_": "WINTBERG 1-109 GR NORTHSIDE QTR", "Name": "FRANCOIS, VICTOR & MARTA", "Address": "PO Box 502265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052265, "Country": "United States", "Land_Value": 25800, "Improved_V": 222100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.40025139, "SHAPE_Area": 1026.7476081 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361135.693999998271465, 258256.716299999505281 ], [ 361130.892099998891354, 258252.455099999904633 ], [ 361115.369800001382828, 258285.256499998271465 ], [ 361115.16610000282526, 258285.686900001019239 ], [ 361149.07940000295639, 258294.611600000411272 ], [ 361149.769299998879433, 258293.186200000345707 ], [ 361160.302400000393391, 258271.423700001090765 ], [ 361160.357699997723103, 258271.309500001370907 ], [ 361152.52589999884367, 258268.675299998372793 ], [ 361142.898699998855591, 258262.896999999880791 ], [ 361138.883299998939037, 258260.964299999177456 ], [ 361135.693999998271465, 258256.716299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90701694000001, "LATITUDE": 18.35363563, "OBJECTID_1": 5958, "PARCEL_NO_": "103004012200", "Tax_Legal_": "WINTBERG 1-132 GREAT NORTHSIDE", "Name": "Benjamin, Rolston M. & Janet M. (Co-Trustees)", "Address": "PO Box 304552", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40700, "Improved_V": 364900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.18152397599999, "SHAPE_Area": 1201.2389100400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361329.8462999984622, 258278.148200001567602 ], [ 361327.45610000193119, 258274.7511 ], [ 361328.703000001609325, 258223.043400000780821 ], [ 361317.312100000679493, 258234.982500001788139 ], [ 361309.987000003457069, 258242.944099999964237 ], [ 361308.354500003159046, 258245.25279999896884 ], [ 361299.346600003540516, 258261.433200001716614 ], [ 361298.520599998533726, 258263.748500000685453 ], [ 361302.5, 258269.902800001204014 ], [ 361306.477600000798702, 258276.268100000917912 ], [ 361307.256899997591972, 258279.440900001674891 ], [ 361308.853399999439716, 258281.353799998760223 ], [ 361313.597699999809265, 258292.369500000029802 ], [ 361329.8462999984622, 258278.148200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040200", "MAP": "D9-8812-T013", "PARCEL_NAM": "2C-1", "ACRE": ".01", "LONGITUDE": -64.90507568, "LATITUDE": 18.3534926, "OBJECTID_1": 6212, "PARCEL_NO_": "103004040200", "Tax_Legal_": "2C & 2D-1 WINTBERG GR NORTHSIDE", "Name": "PURCELL, ALFRED & VICTORIA", "Address": "PO Box 303468", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.171677944499997, "SHAPE_Area": 43.0708633478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361517.668300002813339, 258239.582400001585484 ], [ 361526.298600003123283, 258258.807799998670816 ], [ 361522.185999996960163, 258239.66499999910593 ], [ 361517.668300002813339, 258239.582400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003014100", "MAP": "A9-81-T68", "PARCEL_NAM": "1-107", "ACRE": "0.29", "LONGITUDE": -64.90897291, "LATITUDE": 18.35369341, "OBJECTID_1": 5645, "PARCEL_NO_": "103003014100", "Tax_Legal_": "WINTBERG 1-107 GR NORTHSIDE QTR", "Name": "TESTAMARK, EVADNEY", "Address": "PO Box 397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38800, "Improved_V": 221200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.413455838, "SHAPE_Area": 1075.19680857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361126.109899997711182, 258245.872099999338388 ], [ 361123.51519999653101, 258241.894099999219179 ], [ 361089.542099997401237, 258261.276900000870228 ], [ 361089.282899998128414, 258261.424800001084805 ], [ 361091.955300003290176, 258279.578600000590086 ], [ 361115.16610000282526, 258285.686900001019239 ], [ 361115.369800001382828, 258285.256499998271465 ], [ 361130.892099998891354, 258252.455099999904633 ], [ 361126.109899997711182, 258245.872099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004030300", "MAP": "G9-1953-T72", "PARCEL_NAM": "3C-3", "ACRE": "0.31", "LONGITUDE": -64.90114083, "LATITUDE": 18.35359551, "OBJECTID_1": 6130, "PARCEL_NO_": "103004030300", "Tax_Legal_": "3C-3 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "OBAIDE, EMAD I", "Address": "PO Box 307886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 101300, "Improved_V": 320600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.899683065, "SHAPE_Area": 1515.4738115600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361972.304899998009205, 258243.211500000208616 ], [ 361972.694600000977516, 258235.788899999111891 ], [ 361948.303199999034405, 258236.960999999195337 ], [ 361937.697700001299381, 258246.001400001347065 ], [ 361905.749200001358986, 258273.234999999403954 ], [ 361907.221699997782707, 258276.329799998551607 ], [ 361908.002899996936321, 258279.291499998420477 ], [ 361911.18860000371933, 258283.961599998176098 ], [ 361921.26070000231266, 258290.821400001645088 ], [ 361972.304899998009205, 258243.211500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88725339, "LATITUDE": 18.35340821, "OBJECTID_1": 6791, "PARCEL_NO_": "103104021900", "Tax_Legal_": "4-53A TABOR & HARMONY EAST END QUARTER", "Name": "KOMIVES FAMILY TRUST", "Address": "6679 Estate Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75300, "Improved_V": 427200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.77573100500001, "SHAPE_Area": 4228.9716639799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363464.191299997270107, 258291.394900001585484 ], [ 363417.644599996507168, 258265.260499998927116 ], [ 363393.535400003194809, 258160.994100000709295 ], [ 363381.838799998164177, 258208.816599998623133 ], [ 363377.715599998831749, 258219.548599999397993 ], [ 363373.631899997591972, 258225.636900000274181 ], [ 363390.82769999653101, 258289.527899999171495 ], [ 363432.624700002372265, 258305.279800001531839 ], [ 363464.191299997270107, 258291.394900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004015600", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-8", "ACRE": "0.35", "LONGITUDE": -64.9077515, "LATITUDE": 18.35361678, "OBJECTID_1": 5992, "PARCEL_NO_": "103004015600", "Tax_Legal_": "1-123-8 WINTBERG GREAT NORTHSIDE QUARTER", "Name": "LEEDEE, MARIE", "Address": "BOX 1972", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35500, "Improved_V": 174300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.957077119, "SHAPE_Area": 770.274434165 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361249.49549999833107, 258244.559900000691414 ], [ 361222.923199996352196, 258240.120600000023842 ], [ 361234.670800000429153, 258280.957800000905991 ], [ 361238.693400003015995, 258282.04619999974966 ], [ 361257.524499997496605, 258248.636399999260902 ], [ 361249.49549999833107, 258244.559900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003014400", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-9", "ACRE": "0.28", "LONGITUDE": -64.90802862, "LATITUDE": 18.35363698, "OBJECTID_1": 5648, "PARCEL_NO_": "103003014400", "Tax_Legal_": "WINTBERG 1-123-9 GR NORTHSIDE QTR", "Name": "HEWITT, HAINSLEY & C. WHITE", "Address": "Po Box 305412", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38800, "Improved_V": 179300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.74021089, "SHAPE_Area": 1228.4719471799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361187.380699999630451, 258247.429000001400709 ], [ 361181.553099997341633, 258268.912900000810623 ], [ 361190.426100000739098, 258268.563299998641014 ], [ 361197.695500001311302, 258267.145199999213219 ], [ 361199.318899996578693, 258265.8918999992311 ], [ 361199.340499997138977, 258263.358899999409914 ], [ 361205.002700001001358, 258261.294300001114607 ], [ 361206.604500003159046, 258262.574000000953674 ], [ 361209.772200003266335, 258269.354899998754263 ], [ 361200.875799998641014, 258272.448499999940395 ], [ 361210.531800001859665, 258274.849599998444319 ], [ 361234.670800000429153, 258280.957800000905991 ], [ 361222.923199996352196, 258240.120600000023842 ], [ 361187.380699999630451, 258247.429000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90618329, "LATITUDE": 18.35367734, "OBJECTID_1": 5963, "PARCEL_NO_": "103004012700", "Tax_Legal_": "1-137 WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "JOHNSON, ANDREA I.", "Address": "103 Wesley Park Blvd", "City": "Madison", "State": "Alabama", "Zip": 35756, "Country": "United States", "Land_Value": 30200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.793683612400002, "SHAPE_Area": 527.30341560299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361415.542000003159046, 258252.2516999989748 ], [ 361393.76070000231266, 258253.339999999850988 ], [ 361393.663599997758865, 258264.738299999386072 ], [ 361394.423199996352196, 258270.232900001108646 ], [ 361396.804399996995926, 258274.685400001704693 ], [ 361404.00900000333786, 258280.866099998354912 ], [ 361408.843299999833107, 258281.327799998223782 ], [ 361412.08110000193119, 258279.8766999989748 ], [ 361413.72070000320673, 258276.723700001835823 ], [ 361415.542000003159046, 258252.2516999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040300", "MAP": "D9-8812-T013", "PARCEL_NAM": "2D", "ACRE": ".505", "LONGITUDE": -64.90489255, "LATITUDE": 18.35352141, "OBJECTID_1": 6213, "PARCEL_NO_": "103004040300", "Tax_Legal_": "2D & 2C-1 WINTBERG GR NORTHSIDE", "Name": "TODMANN, WINONA", "Address": "PO Box 11158", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 233100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.07071856600001, "SHAPE_Area": 1404.1976565299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361526.298600003123283, 258258.807799998670816 ], [ 361534.659699998795986, 258277.433800000697374 ], [ 361556.511799998581409, 258269.237500000745058 ], [ 361556.111900001764297, 258221.527100000530481 ], [ 361522.937799997627735, 258234.207800000905991 ], [ 361522.185999996960163, 258239.66499999910593 ], [ 361526.298600003123283, 258258.807799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90659904, "LATITUDE": 18.35352895, "OBJECTID_1": 5962, "PARCEL_NO_": "103004012600", "Tax_Legal_": "1-133 WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "DIAZ, MURIEL D", "Address": "PO Box 11504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 313200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.72334694200001, "SHAPE_Area": 2267.16185111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361385.956500001251698, 258222.878699999302626 ], [ 361337.545400001108646, 258226.282200001180172 ], [ 361337.970499999821186, 258271.037500001490116 ], [ 361344.399400003254414, 258273.623199999332428 ], [ 361354.059000000357628, 258275.602099999785423 ], [ 361362.122100003063679, 258275.668099999427795 ], [ 361371.817699998617172, 258273.425400000065565 ], [ 361379.106799997389317, 258269.685400001704693 ], [ 361383.178000003099442, 258265.074700001627207 ], [ 361385.956500001251698, 258222.878699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90366614, "LATITUDE": 18.35336788, "OBJECTID_1": 6216, "PARCEL_NO_": "103004040600", "Tax_Legal_": "WINTBERG 380 GT. NORTHSIDE", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81000, "Improved_V": 225400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.12124419400001, "SHAPE_Area": 3591.7982999300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361654.735500000417233, 258192.570099998265505 ], [ 361647.487700000405312, 258191.455299999564886 ], [ 361645.287100002169609, 258260.464899998158216 ], [ 361658.961999997496605, 258264.376499999314547 ], [ 361681.454199999570847, 258274.48200000077486 ], [ 361689.501199997961521, 258276.447700001299381 ], [ 361697.558899998664856, 258277.146899998188019 ], [ 361691.779100000858307, 258198.361699998378754 ], [ 361654.735500000417233, 258192.570099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90322267000001, "LATITUDE": 18.35341124, "OBJECTID_1": 6217, "PARCEL_NO_": "103004040700", "Tax_Legal_": "WINTBERG 381 GT. NORTHSIDE", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65300, "Improved_V": 206200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.28432949399999, "SHAPE_Area": 3485.76238762 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361702.248599998652935, 258199.92509999871254 ], [ 361691.779100000858307, 258198.361699998378754 ], [ 361697.558899998664856, 258277.146899998188019 ], [ 361706.431900002062321, 258276.797400001436472 ], [ 361745.986199997365475, 258271.843800000846386 ], [ 361739.292199999094009, 258205.716699998825788 ], [ 361702.248599998652935, 258199.92509999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88693156, "LATITUDE": 18.35322441, "OBJECTID_1": 6776, "PARCEL_NO_": "103104020300", "Tax_Legal_": "TABOR & HAMRONY 4-53 EAST TND QTR", "Name": "MELBERT A MATTHIAS SR TRUST", "Address": "PO Box 9370", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75300, "Improved_V": 151700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 378.74897248500002, "SHAPE_Area": 6351.6297276599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363464.191299997270107, 258291.394900001585484 ], [ 363469.04900000244379, 258289.11259999871254 ], [ 363496.531900003552437, 258281.315999999642372 ], [ 363499.757200002670288, 258281.342399999499321 ], [ 363498.167900003492832, 258278.585200000554323 ], [ 363455.207900002598763, 258210.050299998372793 ], [ 363397.671300001442432, 258148.784499999135733 ], [ 363395.218199998140335, 258152.775199998170137 ], [ 363393.535400003194809, 258160.994100000709295 ], [ 363417.644599996507168, 258265.260499998927116 ], [ 363464.191299997270107, 258291.394900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012100", "MAP": "A9-81-T68", "PARCEL_NAM": "1-120", "ACRE": "0.31", "LONGITUDE": -64.90727196, "LATITUDE": 18.35348525, "OBJECTID_1": 5957, "PARCEL_NO_": "103004012100", "Tax_Legal_": "1-120 WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "FRANCIS, ALFRED", "Address": "PO Box 1145", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 8511145, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.045996546, "SHAPE_Area": 1530.33208016 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361317.312100000679493, 258234.982500001788139 ], [ 361281.999799996614456, 258215.272900000214577 ], [ 361275.446800000965595, 258227.251600001007318 ], [ 361273.006300002336502, 258229.764699999243021 ], [ 361271.136500000953674, 258259.9358000010252 ], [ 361293.608999997377396, 258272.363099999725819 ], [ 361298.520599998533726, 258263.748500000685453 ], [ 361299.346600003540516, 258261.433200001716614 ], [ 361308.354500003159046, 258245.25279999896884 ], [ 361309.987000003457069, 258242.944099999964237 ], [ 361317.312100000679493, 258234.982500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004044200", "MAP": "D9-3987-T87", "PARCEL_NAM": "2A-1", "ACRE": ".23", "LONGITUDE": -64.90581792, "LATITUDE": 18.35346554, "OBJECTID_1": 6252, "PARCEL_NO_": "103004044200", "Tax_Legal_": "WINTBERG 2A-1 GT. NORTHSIDE", "Name": "HOOVER, ELIZABETH R", "Address": "PO Box 173", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 23200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.79537734799999, "SHAPE_Area": 1690.09392718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361469.058899998664856, 258217.437100000679493 ], [ 361457.044600002467632, 258231.896499998867512 ], [ 361442.915799997746944, 258229.991500001400709 ], [ 361435.930799998342991, 258224.435199998319149 ], [ 361424.94030000269413, 258206.325300000607967 ], [ 361422.62610000371933, 258272.574700001627207 ], [ 361473.655799999833107, 258245.761300001293421 ], [ 361469.058899998664856, 258217.437100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004030200", "MAP": "F9-4002-T72", "PARCEL_NAM": "3C", "ACRE": "0.15", "LONGITUDE": -64.901445, "LATITUDE": 18.35348675, "OBJECTID_1": 6129, "PARCEL_NO_": "103004030200", "Tax_Legal_": "REM OF 3C ESTATE MANDAHL GREAT NORTHSIDE Qtr", "Name": "HENDRICKSON, CARMEN & OREILLY, SHANNA GLORIANA", "Address": "PO Box 9009", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 272600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.761703611, "SHAPE_Area": 604.49990937999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361916.167099997401237, 258238.505199998617172 ], [ 361884.146200001239777, 258240.0439000017941 ], [ 361892.920299999415874, 258251.303700000047684 ], [ 361899.322800002992153, 258261.080400001257658 ], [ 361911.132299996912479, 258260.970600001513958 ], [ 361925.684399999678135, 258247.873700000345707 ], [ 361916.167099997401237, 258238.505199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022400", "MAP": "D9-218-T59", "PARCEL_NAM": "12B", "ACRE": ".50", "LONGITUDE": -64.89424818000001, "LATITUDE": 18.35335944, "OBJECTID_1": 6534, "PARCEL_NO_": "103103022400", "Tax_Legal_": "12B ESTATE MANDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "BISKE LOBERG, GLORIA", "Address": "PO Box 502246", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 54900, "Improved_V": 248100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.28544197799999, "SHAPE_Area": 2397.24906065 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362643.161300003528595, 258213.958799999207258 ], [ 362637.432700000703335, 258213.382199998944998 ], [ 362635.49379999935627, 258243.932000000029802 ], [ 362635.337099999189377, 258246.401700001209974 ], [ 362642.773199997842312, 258250.4560999982059 ], [ 362683.254100002348423, 258272.527100000530481 ], [ 362692.776900000870228, 258258.483399998396635 ], [ 362698.575699999928474, 258240.376800000667572 ], [ 362700.251299999654293, 258233.002300001680851 ], [ 362661.67230000346899, 258218.121100001037121 ], [ 362643.161300003528595, 258213.958799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003014500", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-10", "ACRE": "0.27", "LONGITUDE": -64.90844953, "LATITUDE": 18.35355925, "OBJECTID_1": 5649, "PARCEL_NO_": "103003014500", "Tax_Legal_": "WINTBERG 1-123-10 GR NORTHSIDE QTR", "Name": "TULIP TREE TRUST", "Address": "3216 Grand Rte St John", "City": "New Orleans", "State": "Louisiana", "Zip": 70119, "Country": "United States", "Land_Value": 29600, "Improved_V": 84400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.77122787900001, "SHAPE_Area": 1196.38662798 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361187.380699999630451, 258247.429000001400709 ], [ 361167.386500000953674, 258228.055900000035763 ], [ 361137.362400002777576, 258250.186099998652935 ], [ 361143.76070000231266, 258256.360100001096725 ], [ 361156.598800003528595, 258263.853500001132488 ], [ 361171.076399996876717, 258268.193900000303984 ], [ 361181.553099997341633, 258268.912900000810623 ], [ 361187.380699999630451, 258247.429000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90277202, "LATITUDE": 18.3533798, "OBJECTID_1": 6218, "PARCEL_NO_": "103004040800", "Tax_Legal_": "382 WINTBERG GREAT NORTHSIDE QTR", "Name": "HUGGINS-CHARLESWELL, CHERYL", "Address": "PO Box 305340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63700, "Improved_V": 171300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.509942655, "SHAPE_Area": 3136.9267772500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361791.179300002753735, 258267.569600000977516 ], [ 361785.322200000286102, 258197.860800001770258 ], [ 361775.631999999284744, 258199.470199998468161 ], [ 361739.292199999094009, 258205.716699998825788 ], [ 361745.986199997365475, 258271.843800000846386 ], [ 361791.179300002753735, 258267.569600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90454116, "LATITUDE": 18.35329836, "OBJECTID_1": 6214, "PARCEL_NO_": "103004040400", "Tax_Legal_": "378 WINTBERG NO.3 GREAT NORTHSIDE QTR.", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "66 Boetzberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83800, "Improved_V": 249200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.31376026000001, "SHAPE_Area": 3588.3080549699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361609.022799998521805, 258257.846099998801947 ], [ 361594.337600000202656, 258183.209899999201298 ], [ 361556.431900002062321, 258183.955099999904633 ], [ 361556.111900001764297, 258221.527100000530481 ], [ 361556.511799998581409, 258269.237500000745058 ], [ 361567.839699998497963, 258264.686200000345707 ], [ 361580.769500002264977, 258261.414500001817942 ], [ 361592.075800001621246, 258259.396099999547005 ], [ 361609.022799998521805, 258257.846099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003014600", "MAP": "A9-81-T68", "PARCEL_NAM": "1-106", "ACRE": "0.24", "LONGITUDE": -64.9090471, "LATITUDE": 18.35345101, "OBJECTID_1": 5650, "PARCEL_NO_": "103003014600", "Tax_Legal_": "WINTBERG 1-106 GREAT NORTHSIDE QTR", "Name": "VARLACK, NELLIE and EVADNEY V.T. HODGE", "Address": "PO Box 397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25200, "Improved_V": 118000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.299041622, "SHAPE_Area": 1029.85084824 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361117.404100000858307, 258226.591299999505281 ], [ 361113.457099996507168, 258216.637600000947714 ], [ 361084.321999996900558, 258229.064800001680851 ], [ 361088.906300000846386, 258258.866500001400709 ], [ 361089.282899998128414, 258261.424800001084805 ], [ 361089.542099997401237, 258261.276900000870228 ], [ 361123.51519999653101, 258241.894099999219179 ], [ 361122.926100000739098, 258240.990899998694658 ], [ 361118.984399996697903, 258230.403999999165535 ], [ 361117.387999996542931, 258228.49100000038743 ], [ 361117.404100000858307, 258226.591299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89989348, "LATITUDE": 18.353398, "OBJECTID_1": 6134, "PARCEL_NO_": "103004030700", "Tax_Legal_": "4B ESTATE MANDAHL GREAT NORTHSIDE QTR", "Name": "CHARLES, BERYL", "Address": "PO Box 10885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52100, "Improved_V": 255800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.29219053, "SHAPE_Area": 1154.68825356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362080.410999998450279, 258202.809099998325109 ], [ 362049.418600000441074, 258243.929699998348951 ], [ 362073.370700001716614, 258271.990100000053644 ], [ 362079.097599998116493, 258262.326699998229742 ], [ 362079.965000003576279, 258255.156599998474121 ], [ 362081.761100001633167, 258233.639800000935793 ], [ 362080.410999998450279, 258202.809099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89539482000001, "LATITUDE": 18.3534162, "OBJECTID_1": 6523, "PARCEL_NO_": "103103021400", "Tax_Legal_": "13E MANDAHL GREAT NORTHSIDE QUARTER", "Name": "LEDEE, ANN JOSEPHINE (TRUSTEE)", "Address": "PO Box 628", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 50500, "Improved_V": 321400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.965274209, "SHAPE_Area": 2232.2693909200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362569.551299996674061, 258241.00959999859333 ], [ 362572.133900001645088, 258221.821199998259544 ], [ 362523.739000000059605, 258223.324999999254942 ], [ 362520.107299998402596, 258271.002399999648333 ], [ 362526.546999998390675, 258272.321699999272823 ], [ 362566.911200001835823, 258266.952500000596046 ], [ 362569.551299996674061, 258241.00959999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8957651, "LATITUDE": 18.35341418, "OBJECTID_1": 6522, "PARCEL_NO_": "103103021300", "Tax_Legal_": "13D MANDAHL GREAT NORTHSIDE QUARTER", "Name": "QUETEL, JULIE, MONDO & ARLEN", "Address": "6603-13D Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47500, "Improved_V": 123100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.27742347700001, "SHAPE_Area": 1428.3776626900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362523.739000000059605, 258223.324999999254942 ], [ 362490.669399999082088, 258224.320900000631809 ], [ 362487.916000001132488, 258263.561700001358986 ], [ 362520.107299998402596, 258271.002399999648333 ], [ 362523.739000000059605, 258223.324999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104021700", "MAP": "B9-31-T57", "PARCEL_NAM": "4-41", "ACRE": "1.21", "LONGITUDE": -64.88637112000001, "LATITUDE": 18.35314961, "OBJECTID_1": 6789, "PARCEL_NO_": "103104021700", "Tax_Legal_": "TABOR&HARMONY 4-41 No.5&6 EASTEND QTR.", "Name": "MARTIN, JAMES C. & GINGER B", "Address": "PO Box 306827", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 94500, "Improved_V": 407300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.16194189300001, "SHAPE_Area": 4304.8829905800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363539.732199996709824, 258226.996300000697374 ], [ 363518.222499996423721, 258196.21169999986887 ], [ 363516.672799997031689, 258188.8108000010252 ], [ 363515.978000000119209, 258175.717300001531839 ], [ 363455.207900002598763, 258210.050299998372793 ], [ 363498.167900003492832, 258278.585200000554323 ], [ 363539.732199996709824, 258226.996300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90411656000001, "LATITUDE": 18.35325691, "OBJECTID_1": 6215, "PARCEL_NO_": "103004040500", "Tax_Legal_": "WINTBERG 379 GR NORTHSIDE", "Name": "EDWARDS, OLGA", "Address": "PO Box 8512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66300, "Improved_V": 371000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.315541032, "SHAPE_Area": 3158.3697547299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361647.487700000405312, 258191.455299999564886 ], [ 361594.337600000202656, 258183.209899999201298 ], [ 361609.022799998521805, 258257.846099998801947 ], [ 361625.148999996483326, 258257.978100001811981 ], [ 361645.287100002169609, 258260.464899998158216 ], [ 361647.487700000405312, 258191.455299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014500", "MAP": "D9-9045-T015", "PARCEL_NAM": "25G", "ACRE": "1.8", "LONGITUDE": -64.89174599, "LATITUDE": 18.35310744, "OBJECTID_1": 6470, "PARCEL_NO_": "103103014500", "Tax_Legal_": "MANDAHL 25G & 26E 4 GREAT NORTHSIDE", "Name": "MANDAHL RLTY. C/O SWIDLER & SWI", "Address": "PO Box 2208", "City": "ROAD TOWN", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 183500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 377.76442334799998, "SHAPE_Area": 6244.6567367600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362891.987499997019768, 258159.422200001776218 ], [ 362895.413000002503395, 258230.588799998164177 ], [ 362897.517300002276897, 258267.547400001436472 ], [ 362922.628100000321865, 258254.242899999022484 ], [ 362931.524499997496605, 258251.149399999529123 ], [ 362940.404700003564358, 258249.95549999922514 ], [ 362948.467799998819828, 258250.021499998867512 ], [ 362980.707699999213219, 258251.763000000268221 ], [ 362985.55460000038147, 258250.74720000103116 ], [ 362989.616700001060963, 258247.191799998283386 ], [ 362989.661700002849102, 258241.914900001138449 ], [ 362965.560400001704693, 258231.374000001698732 ], [ 362963.155900001525879, 258229.665600001811981 ], [ 362963.200800001621246, 258224.388599999248981 ], [ 362972.158399999141693, 258214.118400000035763 ], [ 362974.633100003004074, 258207.594700001180172 ], [ 362977.183300003409386, 258192.205800000578165 ], [ 362977.226400002837181, 258187.139899998903275 ], [ 362960.295699998736382, 258186.790199998766184 ], [ 362945.002700001001358, 258183.498599998652935 ], [ 362927.328599996864796, 258175.754599999636412 ], [ 362898.423600003123283, 258161.163699999451637 ], [ 362891.987499997019768, 258159.422200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89612739, "LATITUDE": 18.35337062, "OBJECTID_1": 6521, "PARCEL_NO_": "103103021200", "Tax_Legal_": "MANDAHL 13C GR NORTHSIDE", "Name": "GEORGE A & IRENE QUERRARD TRUST", "Address": "6595 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36200, "Improved_V": 132000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.50331796200001, "SHAPE_Area": 1441.7401680800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362490.669399999082088, 258224.320900000631809 ], [ 362443.080700002610683, 258225.831199999898672 ], [ 362439.686499997973442, 258245.646200001239777 ], [ 362476.661799997091293, 258259.458799999207258 ], [ 362487.916000001132488, 258263.561700001358986 ], [ 362490.669399999082088, 258224.320900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90618205, "LATITUDE": 18.35343967, "OBJECTID_1": 5969, "PARCEL_NO_": "103004013300", "Tax_Legal_": "WINTBEGR 1-136 3 GR NORTHSIDE", "Name": "JARVIS, DORIS", "Address": "1-136 ESTATE WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27100, "Improved_V": 272800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.101426855900002, "SHAPE_Area": 591.81015065300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361415.542000003159046, 258252.2516999989748 ], [ 361416.580200001597404, 258225.029199998825788 ], [ 361394.79900000244379, 258226.117499999701977 ], [ 361393.76070000231266, 258253.339999999850988 ], [ 361415.542000003159046, 258252.2516999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003014700", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-11", "ACRE": "0.26", "LONGITUDE": -64.90867457, "LATITUDE": 18.35334388, "OBJECTID_1": 5651, "PARCEL_NO_": "103003014700", "Tax_Legal_": "WINTBERG 1-123-11 GR NORTHSIDE", "Name": "MCDONALD, DEBORAH & JOHN", "Address": "PO Box 1422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34800, "Improved_V": 132200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.05594890099999, "SHAPE_Area": 1154.09145599 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361167.386500000953674, 258228.055900000035763 ], [ 361144.195900000631809, 258205.279100000858307 ], [ 361119.913000002503395, 258216.057199999690056 ], [ 361129.385499998927116, 258239.988299999386072 ], [ 361137.362400002777576, 258250.186099998652935 ], [ 361167.386500000953674, 258228.055900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003017800", "MAP": "G9-2096-T72", "PARCEL_NAM": "1-111", "ACRE": "0.30", "LONGITUDE": -64.90836277, "LATITUDE": 18.3532331, "OBJECTID_1": 5701, "PARCEL_NO_": "103003017800", "Tax_Legal_": "WINTBERG 1 111 GREAT NORTHSIDE QTR", "Name": "SIMMONDS, R. & SEWER, L. C. & Z. M", "Address": "PO Box 9434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.16991451300001, "SHAPE_Area": 1516.6316322099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361198.227799996733665, 258204.665800001472235 ], [ 361192.578199997544289, 258205.252900000661612 ], [ 361188.555600002408028, 258204.164500001817942 ], [ 361184.545699998736382, 258201.598499998450279 ], [ 361180.562700003385544, 258195.866399999707937 ], [ 361180.5878000035882, 258192.911299999803305 ], [ 361179.023800000548363, 258187.199000000953674 ], [ 361144.195900000631809, 258205.279100000858307 ], [ 361167.386500000953674, 258228.055900000035763 ], [ 361187.380699999630451, 258247.429000001400709 ], [ 361198.227799996733665, 258204.665800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003017700", "MAP": "F9-1425-T64", "PARCEL_NAM": "1-108", "ACRE": "0.40", "LONGITUDE": -64.90800235, "LATITUDE": 18.35332045, "OBJECTID_1": 5700, "PARCEL_NO_": "103003017700", "Tax_Legal_": "WINTBERG 1-108 GR NORTHSIDE QTR", "Name": "SIMMONDS, RUBY", "Address": "PO Box 9434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41700, "Improved_V": 216000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.65501155300001, "SHAPE_Area": 1490.2527673300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361245.753499999642372, 258210.543200001120567 ], [ 361198.227799996733665, 258204.665800001472235 ], [ 361187.380699999630451, 258247.429000001400709 ], [ 361222.923199996352196, 258240.120600000023842 ], [ 361245.753499999642372, 258210.543200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103024700", "MAP": "D9-3807-T84", "PARCEL_NAM": "15C", "ACRE": null, "LONGITUDE": -64.89892429, "LATITUDE": 18.35321547, "OBJECTID_1": 6555, "PARCEL_NO_": "103103024700", "Tax_Legal_": "MANDAHL 15C GT. NORTHSIDE", "Name": "FREDERICKS, JULIUS & VERA E", "Address": "PO Box 8086", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66200, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.70147996599999, "SHAPE_Area": 2584.2330670400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362214.527900002896786, 258212.648800000548363 ], [ 362138.906400002539158, 258191.973499998450279 ], [ 362140.112300001084805, 258199.286899998784065 ], [ 362148.494499996304512, 258244.924600001424551 ], [ 362196.324500001966953, 258241.647199999541044 ], [ 362197.594499997794628, 258239.107200000435114 ], [ 362200.981200002133846, 258234.662200000137091 ], [ 362206.907899998128414, 258225.137200001627207 ], [ 362210.294600002467632, 258221.538800001144409 ], [ 362212.628799997270107, 258218.341499999165535 ], [ 362213.681199997663498, 258215.400499999523163 ], [ 362214.527900002896786, 258212.648800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012000", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-7", "ACRE": "0.27", "LONGITUDE": -64.90763136, "LATITUDE": 18.35327631, "OBJECTID_1": 5956, "PARCEL_NO_": "103004012000", "Tax_Legal_": "WINTBERG 1-123-7 GR NORTHSIDE", "Name": "MICHAEL, COLLINS", "Address": "394-4 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.03284114600001, "SHAPE_Area": 1192.4719910399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361278.868000000715256, 258204.270399998873472 ], [ 361258.80009999871254, 258193.551399998366833 ], [ 361245.753499999642372, 258210.543200001120567 ], [ 361222.923199996352196, 258240.120600000023842 ], [ 361249.49549999833107, 258244.559900000691414 ], [ 361250.334200002253056, 258240.767099998891354 ], [ 361246.315200001001358, 258239.256599999964237 ], [ 361250.418700002133846, 258230.846400000154972 ], [ 361252.826899997889996, 258232.132699999958277 ], [ 361256.050300002098083, 258232.370099999010563 ], [ 361260.933200001716614, 258227.132800001651049 ], [ 361266.609700001776218, 258223.37950000166893 ], [ 361271.5050999969244, 258216.664599999785423 ], [ 361273.987000003457069, 258209.296700000762939 ], [ 361278.868000000715256, 258204.270399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004031400", "MAP": "D9-8229-T009", "PARCEL_NAM": "3E", "ACRE": "1.799", "LONGITUDE": -64.90180776, "LATITUDE": 18.35267482, "OBJECTID_1": 6139, "PARCEL_NO_": "103004031400", "Tax_Legal_": "3 ESTATE MANDAHL GREAT NORTHSIDE QTR", "Name": "BRYAN, EDMUND & EDWARD", "Address": "LERKENLUND 7E-1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 311400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 398.50782775, "SHAPE_Area": 6651.31244161 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361822.466499999165535, 258191.831999998539686 ], [ 361833.860699996352196, 258202.279500000178814 ], [ 361836.225000001490116, 258204.417899999767542 ], [ 361849.431800000369549, 258194.065400000661612 ], [ 361860.345200002193451, 258187.224199999123812 ], [ 361870.022200003266335, 258184.699799999594688 ], [ 361880.18129999935627, 258182.774399999529123 ], [ 361891.455200001597404, 258182.038899999111891 ], [ 361900.451099999248981, 258181.509700000286102 ], [ 361911.034400001168251, 258179.922200001776218 ], [ 361953.367700003087521, 258170.661800000816584 ], [ 361957.071900002658367, 258168.80970000103116 ], [ 361958.92400000244379, 258165.899300001561642 ], [ 361959.18860000371933, 258162.459699999541044 ], [ 361957.336499996483326, 258158.75560000166297 ], [ 361953.896899998188019, 258156.638900000602007 ], [ 361891.190600000321865, 258141.293099999427795 ], [ 361811.413500003516674, 258107.469500001519918 ], [ 361816.424199998378754, 258143.86430000141263 ], [ 361822.466499999165535, 258191.831999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103027300", "MAP": "D9-5458-T93", "PARCEL_NAM": "14-1", "ACRE": null, "LONGITUDE": -64.89782336, "LATITUDE": 18.35316993, "OBJECTID_1": 6577, "PARCEL_NO_": "103103027300", "Tax_Legal_": "MANDAHL ESTATE 14-1 GREAT NORTHSIDE", "Name": "BERRY, ELSIE D.", "Address": "PO Box 9560", "City": "ST.THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 188700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.35947116400001, "SHAPE_Area": 2179.3337427400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362250.14190000295639, 258251.272100001573563 ], [ 362272.070600003004074, 258232.875300001353025 ], [ 362277.756099998950958, 258228.066700000315905 ], [ 362324.495300002396107, 258231.615699999034405 ], [ 362326.275100000202656, 258211.998500000685453 ], [ 362297.411499999463558, 258192.552799999713898 ], [ 362284.454800002276897, 258198.990600001066923 ], [ 362265.927599996328354, 258196.728100001811981 ], [ 362250.14190000295639, 258251.272100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90007023, "LATITUDE": 18.35316317, "OBJECTID_1": 6135, "PARCEL_NO_": "103004030800", "Tax_Legal_": "4F ESTATE MANDALH GREAT NORTHSIDE QTR.", "Name": "PILGRIM, IAN E. & CLAIRE M", "Address": "PO Box 12125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34800, "Improved_V": 502200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.96822336400001, "SHAPE_Area": 1754.0480284400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362080.410999998450279, 258202.809099998325109 ], [ 362048.101300001144409, 258182.651999998837709 ], [ 362027.027099996805191, 258222.003800000995398 ], [ 362033.398500002920628, 258231.344099998474121 ], [ 362038.968900002539158, 258240.04450000077486 ], [ 362045.340300001204014, 258249.384799998253584 ], [ 362049.418600000441074, 258243.929699998348951 ], [ 362080.410999998450279, 258202.809099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004039100", "MAP": "G9-2383-T74", "PARCEL_NAM": "3D", "ACRE": "0.50", "LONGITUDE": -64.90172397000001, "LATITUDE": 18.35320015, "OBJECTID_1": 6207, "PARCEL_NO_": "103004039100", "Tax_Legal_": "MANDAHL 3D GR NORTHSIDE QTR", "Name": "AUBAIN, JOSEPH E. & JUNE BRYAN", "Address": "7E-3 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62600, "Improved_V": 536800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.59265123200001, "SHAPE_Area": 2031.1316821299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361916.167099997401237, 258238.505199998617172 ], [ 361878.937100000679493, 258188.916700001806021 ], [ 361869.236199997365475, 258191.792599998414516 ], [ 361849.785800002515316, 258203.243500001728535 ], [ 361843.290399998426437, 258208.467700000852346 ], [ 361836.834100000560284, 258216.171300001442432 ], [ 361837.778800003230572, 258218.297400001436472 ], [ 361841.29559999704361, 258220.434799998998642 ], [ 361851.236599996685982, 258222.253800000995398 ], [ 361861.693499997258186, 258225.294700000435114 ], [ 361873.736000001430511, 258231.515000000596046 ], [ 361884.146200001239777, 258240.0439000017941 ], [ 361916.167099997401237, 258238.505199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89281608, "LATITUDE": 18.35245417, "OBJECTID_1": 6472, "PARCEL_NO_": "103103014700", "Tax_Legal_": "MANDAHL 27A GR NORTHSIDE QTR", "Name": "FRAZER, LEROY", "Address": "PO Box 1603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 227900, "Improved_V": 15800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 600.48500578599999, "SHAPE_Area": 12448.370753900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362904.016699999570847, 258072.550200000405312 ], [ 362896.738300003111362, 258075.023699998855591 ], [ 362879.796800002455711, 258075.940499998629093 ], [ 362860.409299999475479, 258080.003699999302626 ], [ 362843.417400002479553, 258086.830699998885393 ], [ 362831.290299996733665, 258090.531199999153614 ], [ 362794.115500003099442, 258100.148299999535084 ], [ 362784.389399997889996, 258105.979299999773502 ], [ 362781.133500002324581, 258109.541299998760223 ], [ 362777.044399999082088, 258116.262800000607967 ], [ 362771.202399998903275, 258139.435300000011921 ], [ 362763.002700001001358, 258155.411299999803305 ], [ 362727.13289999961853, 258201.136100001633167 ], [ 362714.064699999988079, 258220.660799998790026 ], [ 362707.461300000548363, 258238.549699999392033 ], [ 362709.009199999272823, 258246.161800000816584 ], [ 362711.417400002479553, 258247.447999998927116 ], [ 362715.459700003266335, 258246.214600000530481 ], [ 362722.756099998950958, 258241.630199998617172 ], [ 362742.278399996459484, 258221.736099999397993 ], [ 362776.368299998342991, 258195.628400001674891 ], [ 362812.869999997317791, 258170.384899999946356 ], [ 362840.410499997437, 258155.833700001239777 ], [ 362860.620399996638298, 258149.877399999648333 ], [ 362876.759199999272823, 258148.531800001859665 ], [ 362884.820600003004074, 258148.808899998664856 ], [ 362894.48369999974966, 258150.365699999034405 ], [ 362906.540700003504753, 258154.897300001233816 ], [ 362904.016699999570847, 258072.550200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004013100", "MAP": "A9-81-T68", "PARCEL_NAM": "1-121", "ACRE": "0.28", "LONGITUDE": -64.90701894, "LATITUDE": 18.35314205, "OBJECTID_1": 5967, "PARCEL_NO_": "103004013100", "Tax_Legal_": "WINTBERG 1-121 GR NORTHSIDE", "Name": "PETER, HESKETH & MARY (life estate)", "Address": "PO Box 502234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24800, "Improved_V": 128400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.51061984200001, "SHAPE_Area": 2012.19157685 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361336.855999998748302, 258212.555399999022484 ], [ 361340.939699999988079, 258206.467099998146296 ], [ 361347.503499999642372, 258193.221999999135733 ], [ 361325.844499997794628, 258179.956900000572205 ], [ 361327.532700002193451, 258171.104800000786781 ], [ 361319.420999996364117, 258176.737900000065565 ], [ 361310.481499999761581, 258184.897399999201298 ], [ 361309.660800002515316, 258186.5793999992311 ], [ 361298.2753000035882, 258197.885299999266863 ], [ 361294.992499999701977, 258204.613400001078844 ], [ 361290.120399996638298, 258208.584300000220537 ], [ 361284.454700000584126, 258211.071100000292063 ], [ 361281.999799996614456, 258215.272900000214577 ], [ 361317.312100000679493, 258234.982500001788139 ], [ 361328.703000001609325, 258223.043400000780821 ], [ 361332.772299997508526, 258218.643699999898672 ], [ 361336.855999998748302, 258212.555399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003014800", "MAP": "A9-81-T68", "PARCEL_NAM": "1-105", "ACRE": "0.25", "LONGITUDE": -64.90911896, "LATITUDE": 18.35315216, "OBJECTID_1": 5652, "PARCEL_NO_": "103003014800", "Tax_Legal_": "WINTBERG 1-105 GR NORTHSIDE QTR", "Name": "ETINOFF, JOSEPH J", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33500, "Improved_V": 151300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.14686201800001, "SHAPE_Area": 1110.7729874199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361113.457099996507168, 258216.637600000947714 ], [ 361104.882600001990795, 258181.948100000619888 ], [ 361078.207699999213219, 258189.540300000458956 ], [ 361078.978100001811981, 258193.768399998545647 ], [ 361083.54619999974966, 258225.469799999147654 ], [ 361084.321999996900558, 258229.064800001680851 ], [ 361113.457099996507168, 258216.637600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004038200", "MAP": "A9-353-T88", "PARCEL_NAM": "4J-1", "ACRE": ".50", "LONGITUDE": -64.90047849, "LATITUDE": 18.35312831, "OBJECTID_1": 6199, "PARCEL_NO_": "103004038200", "Tax_Legal_": "MANDAHL 4J-1 GR NORTHSIDE QTR", "Name": "BRYAN, SYLVE P & CARMEN", "Address": "1 Zufriedenheit", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.24265995900001, "SHAPE_Area": 2538.2002734500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362048.101300001144409, 258182.651999998837709 ], [ 361980.264200001955032, 258192.993999999016523 ], [ 361977.721600003540516, 258235.743599999696016 ], [ 362012.418200001120567, 258233.072200000286102 ], [ 362033.398500002920628, 258231.344099998474121 ], [ 362027.027099996805191, 258222.003800000995398 ], [ 362048.101300001144409, 258182.651999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90657615000001, "LATITUDE": 18.3531662, "OBJECTID_1": 5968, "PARCEL_NO_": "103004013200", "Tax_Legal_": "WINBERG 1-134 3 GR NORTHSIDE QTR", "Name": "PEARLINE V & RONALD L WOODCOCK,SR REVOC FAM TRUST", "Address": "PO Box 9591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 452900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.14790882400001, "SHAPE_Area": 1536.8883027100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361385.956500001251698, 258222.878699999302626 ], [ 361388.659599997103214, 258189.548000000417233 ], [ 361347.503499999642372, 258193.221999999135733 ], [ 361340.939699999988079, 258206.467099998146296 ], [ 361336.855999998748302, 258212.555399999022484 ], [ 361337.545400001108646, 258226.282200001180172 ], [ 361385.956500001251698, 258222.878699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90617246, "LATITUDE": 18.35323232, "OBJECTID_1": 5974, "PARCEL_NO_": "103004013800", "Tax_Legal_": "WINTBERG 1 139 GREAT NORTHSIDE QTR", "Name": "LINDESAY, CARMEN O", "Address": "PO Box 305256", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.472484511100006, "SHAPE_Area": 399.90254118399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361416.580200001597404, 258225.029199998825788 ], [ 361417.546599999070168, 258206.249800000339746 ], [ 361396.571699999272823, 258207.3445999994874 ], [ 361394.79900000244379, 258226.117499999701977 ], [ 361416.580200001597404, 258225.029199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103103024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89432583, "LATITUDE": 18.3531245, "OBJECTID_1": 6551, "PARCEL_NO_": "103103024200", "Tax_Legal_": "12A-2 MANDAHL NO. 1 GREAT NORTHSIDE QTR", "Name": "ROHLOFF, WALTER H. & CARRIE L.", "Address": "PO BOX 11780", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55100, "Improved_V": 206600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.706341743, "SHAPE_Area": 369.86154959499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362619.119400002062321, 258196.452399998903275 ], [ 362631.12780000269413, 258206.683100000023842 ], [ 362639.158500000834465, 258210.548500001430511 ], [ 362643.161300003528595, 258213.958799999207258 ], [ 362661.67230000346899, 258218.121100001037121 ], [ 362700.251299999654293, 258233.002300001680851 ], [ 362693.851099997758865, 258227.039299998432398 ], [ 362693.059199996292591, 258225.344099998474121 ], [ 362662.518200002610683, 258213.483899999409914 ], [ 362647.228799998760223, 258209.770199999213219 ], [ 362641.602600000798702, 258207.613200001418591 ], [ 362634.378200002014637, 258203.754399999976158 ], [ 362621.55629999935627, 258194.361400000751019 ], [ 362619.119400002062321, 258196.452399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003017200", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-12", "ACRE": "0.27", "LONGITUDE": -64.90881437, "LATITUDE": 18.3529843, "OBJECTID_1": 5695, "PARCEL_NO_": "103003017200", "Tax_Legal_": "WINTBERG 1-123-12 GR NORTHSIDE", "Name": "GREEN, ROBERT & INDUSTRIOUS", "Address": "PO Box 6561", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 166200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.83980933399999, "SHAPE_Area": 1385.1400019600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361139.694300003349781, 258165.767700001597404 ], [ 361139.130300000309944, 258159.984200000762939 ], [ 361108.966499999165535, 258166.451799999922514 ], [ 361109.815700002014637, 258170.800500001758337 ], [ 361114.437799997627735, 258196.169599998742342 ], [ 361119.913000002503395, 258216.057199999690056 ], [ 361144.195900000631809, 258205.279100000858307 ], [ 361139.694300003349781, 258165.767700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89590446, "LATITUDE": 18.35313322, "OBJECTID_1": 6541, "PARCEL_NO_": "103103023100", "Tax_Legal_": "MANDAHL 13B-8 GT. NORTHSIDE", "Name": "GHENT, BEZZLE & MARJORIE", "Address": "394-358 ANNAS RETRET", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 369.12283240599999, "SHAPE_Area": 1322.03065838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362572.133900001645088, 258221.821199998259544 ], [ 362573.181100003421307, 258214.483500000089407 ], [ 362498.795400001108646, 258216.999099999666214 ], [ 362467.345600001513958, 258217.163899999111891 ], [ 362461.728399999439716, 258213.951499998569489 ], [ 362456.931900002062321, 258209.057100001722574 ], [ 362452.95610000193119, 258202.480700001120567 ], [ 362451.409999996423721, 258194.657499998807907 ], [ 362454.815099999308586, 258173.576099999248981 ], [ 362455.64299999922514, 258171.049699999392033 ], [ 362453.263599999248981, 258166.386199999600649 ], [ 362454.095100000500679, 258163.437699999660254 ], [ 362451.676100000739098, 258163.417899999767542 ], [ 362446.514600001275539, 258201.372499998658895 ], [ 362443.080700002610683, 258225.831199999898672 ], [ 362490.669399999082088, 258224.320900000631809 ], [ 362523.739000000059605, 258223.324999999254942 ], [ 362572.133900001645088, 258221.821199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103024200", "MAP": "A9-259-T77", "PARCEL_NAM": "12A-2", "ACRE": ".44", "LONGITUDE": -64.89438179, "LATITUDE": 18.35298978, "OBJECTID_1": 6551, "PARCEL_NO_": "103103024200", "Tax_Legal_": "12A-2 MANDAHL NO. 1 GREAT NORTHSIDE QTR", "Name": "ROHLOFF, WALTER H. & CARRIE L.", "Address": "PO BOX 11780", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55100, "Improved_V": 206600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.93549448300001, "SHAPE_Area": 1148.98428453 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362646.706600002944469, 258176.413199998438358 ], [ 362621.55629999935627, 258194.361400000751019 ], [ 362634.378200002014637, 258203.754399999976158 ], [ 362641.602600000798702, 258207.613200001418591 ], [ 362647.228799998760223, 258209.770199999213219 ], [ 362662.518200002610683, 258213.483899999409914 ], [ 362693.059199996292591, 258225.344099998474121 ], [ 362654.688900001347065, 258185.977699998766184 ], [ 362646.706600002944469, 258176.413199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103024800", "MAP": "D9-3807-T84", "PARCEL_NAM": "15E", "ACRE": null, "LONGITUDE": -64.89887739, "LATITUDE": 18.35293509, "OBJECTID_1": 6556, "PARCEL_NO_": "103103024800", "Tax_Legal_": "MANDAHL15E GT. NORTHSIDE", "Name": "SIBILLY JUAREZ, ANTHONY", "Address": "PO BOX 575", "City": "Key West", "State": "Florida", "Zip": 33041, "Country": "United States", "Land_Value": 53000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.56353034399999, "SHAPE_Area": 1985.8084045000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362138.906400002539158, 258191.973499998450279 ], [ 362214.527900002896786, 258212.648800000548363 ], [ 362215.374600000679493, 258208.20380000025034 ], [ 362215.374600000679493, 258200.372099999338388 ], [ 362215.617200002074242, 258196.490699999034405 ], [ 362215.151399999856949, 258196.370799999684095 ], [ 362216.432899996638298, 258192.752099998295307 ], [ 362218.317199997603893, 258190.617800001055002 ], [ 362221.089599996805191, 258189.153799999505281 ], [ 362224.264600001275539, 258188.095400001853704 ], [ 362216.441399998962879, 258186.324299998581409 ], [ 362160.582299999892712, 258173.67790000140667 ], [ 362139.039899997413158, 258168.800700001418591 ], [ 362134.755800001323223, 258167.830800000578165 ], [ 362136.278499998152256, 258176.035199999809265 ], [ 362138.906400002539158, 258191.973499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031100", "MAP": "A3-25-T36", "PARCEL_NAM": "9REM", "ACRE": null, "LONGITUDE": -64.89407688, "LATITUDE": 18.35275455, "OBJECTID_1": 6592, "PARCEL_NO_": "103103031100", "Tax_Legal_": "MANDAHL 9 GREAT NORTHSIDE QTR", "Name": "WILLIAMS, JUANITO", "Address": "PO Box 11322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 172500, "Improved_V": 165000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 437.39052626500001, "SHAPE_Area": 4090.9132557299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362720.718400001525879, 258196.861699998378754 ], [ 362757.399800002574921, 258150.510299999266863 ], [ 362748.490800000727177, 258155.081399999558926 ], [ 362733.140299998223782, 258158.544300001114607 ], [ 362716.13400000333786, 258167.059999998658895 ], [ 362705.63400000333786, 258169.08500000089407 ], [ 362696.762800000607967, 258169.223499998450279 ], [ 362688.708599999547005, 258168.102099999785423 ], [ 362681.469800002872944, 258165.93189999833703 ], [ 362672.638099998235703, 258161.426699999719858 ], [ 362633.881099998950958, 258146.444299999624491 ], [ 362635.709600001573563, 258142.125999998301268 ], [ 362648.923500001430511, 258105.503899998962879 ], [ 362614.844400003552437, 258130.345100000500679 ], [ 362618.831000000238419, 258135.655099999159575 ], [ 362625.218500003218651, 258143.095600001513958 ], [ 362668.347599998116493, 258191.789000000804663 ], [ 362669.953000001609325, 258192.646499998867512 ], [ 362682.733599998056889, 258206.894400000572205 ], [ 362693.930200003087521, 258217.751800000667572 ], [ 362698.72860000282526, 258222.435100000351667 ], [ 362702.756499998271465, 258222.890299998223782 ], [ 362705.996200002729893, 258221.228100001811981 ], [ 362707.64469999819994, 258217.01969999819994 ], [ 362720.718400001525879, 258196.861699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90784202, "LATITUDE": 18.35305171, "OBJECTID_1": 5964, "PARCEL_NO_": "103004012800", "Tax_Legal_": "WINTBERG 1-13,1-108-1&1-12-1 WINTBERG", "Name": "MONA MINGO TRUST", "Address": "PO Box 304074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27100, "Improved_V": 239400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.124063799, "SHAPE_Area": 1203.87548797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361258.80009999871254, 258193.551399998366833 ], [ 361220.271600000560284, 258172.760000001639128 ], [ 361207.149400003254414, 258198.61710000038147 ], [ 361203.081900000572205, 258202.805700000375509 ], [ 361198.227799996733665, 258204.665800001472235 ], [ 361245.753499999642372, 258210.543200001120567 ], [ 361258.80009999871254, 258193.551399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004041100", "MAP": null, "PARCEL_NAM": "2H", "ACRE": null, "LONGITUDE": -64.90579537000001, "LATITUDE": 18.3528511, "OBJECTID_1": 6221, "PARCEL_NO_": "103004041100", "Tax_Legal_": "WINTBERG 2H GT NORTHSIDE", "Name": "GRACE L GREGORY REVOCABLE LIVING TRUST", "Address": "PO Box 7431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010431, "Country": "United States", "Land_Value": 55700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.15326459, "SHAPE_Area": 2066.8975509400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361461.524499997496605, 258146.4527000002563 ], [ 361427.935999996960163, 258141.834199998527765 ], [ 361427.767200000584126, 258142.372099999338388 ], [ 361425.825499996542931, 258180.986299999058247 ], [ 361425.667300000786781, 258185.515599999576807 ], [ 361469.058899998664856, 258217.437100000679493 ], [ 361467.525399997830391, 258208.136500000953674 ], [ 361462.170699998736382, 258174.106600001454353 ], [ 361460.723499998450279, 258154.674100000411272 ], [ 361461.524499997496605, 258146.4527000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003017900", "MAP": "F9-1157-T63", "PARCEL_NAM": "1-113", "ACRE": "0.30", "LONGITUDE": -64.90852315, "LATITUDE": 18.35288944, "OBJECTID_1": 5702, "PARCEL_NO_": "103003017900", "Tax_Legal_": "WINTBERG 1 113 GREAT NORTHSIDE QTR", "Name": "DENHAM, JOHN, ERVA, C. &", "Address": "ERVA,A.-BOX 4022", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 263100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.32940355900001, "SHAPE_Area": 1494.5073371599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361179.023800000548363, 258187.199000000953674 ], [ 361174.479000002145767, 258152.753499999642372 ], [ 361138.95269999653101, 258158.162300001829863 ], [ 361139.694300003349781, 258165.767700001597404 ], [ 361144.195900000631809, 258205.279100000858307 ], [ 361179.023800000548363, 258187.199000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90616099, "LATITUDE": 18.3530503, "OBJECTID_1": 5975, "PARCEL_NO_": "103004013900", "Tax_Legal_": "WINTBERG 1 140 GREAT NORTHSIDE QTR", "Name": "LINDESAY, CARMEN O", "Address": "PO Box 305256", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48000, "Improved_V": 396200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.339977074299995, "SHAPE_Area": 441.17758754 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361417.546599999070168, 258206.249800000339746 ], [ 361418.536300003528595, 258184.726300001144409 ], [ 361398.367700003087521, 258185.827799998223782 ], [ 361396.571699999272823, 258207.3445999994874 ], [ 361417.546599999070168, 258206.249800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004013000", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-6", "ACRE": "0.28", "LONGITUDE": -64.90734601, "LATITUDE": 18.35294437, "OBJECTID_1": 5966, "PARCEL_NO_": "103004013000", "Tax_Legal_": "WINTBERG 1-123-6 GR NORTHSIDE", "Name": "LEDEE, DAVID T. & CLEOTILDE", "Address": "PO Box 303374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.288297038, "SHAPE_Area": 1027.8814315 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361306.523599997162819, 258176.210200000554323 ], [ 361284.079899996519089, 258160.405600000172853 ], [ 361275.108000002801418, 258172.364500001072884 ], [ 361258.80009999871254, 258193.551399998366833 ], [ 361278.868000000715256, 258204.270399998873472 ], [ 361280.494999997317791, 258202.594900000840425 ], [ 361287.782399997115135, 258199.065999999642372 ], [ 361291.06700000166893, 258192.126800000667572 ], [ 361292.686800003051758, 258191.295699998736382 ], [ 361306.523599997162819, 258176.210200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026600", "MAP": "D9-5854-T93", "PARCEL_NAM": "15A-4", "ACRE": null, "LONGITUDE": -64.89771415, "LATITUDE": 18.35279551, "OBJECTID_1": 6571, "PARCEL_NO_": "103103026600", "Tax_Legal_": "MANDAHL ESTATE 15-A-4 GREAT NORTHSIDE", "Name": "BERRY, ELSIE D.", "Address": "PO Box 9560", "City": "ST.THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 188300, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.85598151100001, "SHAPE_Area": 2902.8848203399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362341.036899998784065, 258182.988400001078844 ], [ 362322.578000001609325, 258172.704900000244379 ], [ 362313.141400001943111, 258144.552200000733137 ], [ 362282.528499998152256, 258141.135200001299381 ], [ 362265.927599996328354, 258196.728100001811981 ], [ 362284.454800002276897, 258198.990600001066923 ], [ 362297.411499999463558, 258192.552799999713898 ], [ 362326.275100000202656, 258211.998500000685453 ], [ 362327.991999998688698, 258199.769099999219179 ], [ 362329.642399996519089, 258195.349700000137091 ], [ 362330.464900001883507, 258193.456599999219179 ], [ 362332.097300000488758, 258191.147900000214577 ], [ 362336.173900000751019, 258185.903900001198053 ], [ 362337.793700002133846, 258185.072799999266863 ], [ 362341.036899998784065, 258182.988400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89604063, "LATITUDE": 18.35290699, "OBJECTID_1": 6538, "PARCEL_NO_": "103103022800", "Tax_Legal_": "MANDAHL 13B-9 GT. NORTHSIDE QTR", "Name": "PHILLIP, LESTER M. & MARITZA M.", "Address": "PO Box 11636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.444381838, "SHAPE_Area": 1636.1191123900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362492.38629999756813, 258212.091499999165535 ], [ 362499.201800003647804, 258169.295299999415874 ], [ 362469.402400001883507, 258165.040600001811981 ], [ 362466.936700001358986, 258170.508900001645088 ], [ 362464.5033999979496, 258172.177700001746416 ], [ 362461.274599999189377, 258172.573499999940395 ], [ 362460.446699999272823, 258175.099800001829863 ], [ 362458.8125, 258177.619600001722574 ], [ 362455.457699999213219, 258192.790800001472235 ], [ 362459.388599999248981, 258204.644200000911951 ], [ 362464.181500002741814, 258209.960799999535084 ], [ 362468.191500000655651, 258212.526799999177456 ], [ 362492.38629999756813, 258212.091499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89565646, "LATITUDE": 18.35293546, "OBJECTID_1": 6539, "PARCEL_NO_": "103103022900", "Tax_Legal_": "MANDAHL 13B-10 GT. NORTHSIDE", "Name": "JARVIS, EDWARD & RUTHLYN", "Address": "1-136 ESTATE WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.43723697900001, "SHAPE_Area": 1778.6670804600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362545.084299996495247, 258178.747800000011921 ], [ 362499.201800003647804, 258169.295299999415874 ], [ 362492.38629999756813, 258212.091499999165535 ], [ 362539.9712999984622, 258211.003299999982119 ], [ 362545.084299996495247, 258178.747800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90303636, "LATITUDE": 18.35286451, "OBJECTID_1": 6228, "PARCEL_NO_": "103004041800", "Tax_Legal_": "WINTBERG 371 GR NORTHSIDE", "Name": "Cecilia I Rivera- Hill (Life Estate)", "Address": "PO Box 303624", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033624, "Country": "United States", "Land_Value": 97800, "Improved_V": 324000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.85584097200001, "SHAPE_Area": 3446.0188132799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361770.367299996316433, 258154.886399999260902 ], [ 361706.702799998223782, 258150.354499999433756 ], [ 361702.248599998652935, 258199.92509999871254 ], [ 361739.292199999094009, 258205.716699998825788 ], [ 361775.631999999284744, 258199.470199998468161 ], [ 361770.367299996316433, 258154.886399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89526474, "LATITUDE": 18.3528652, "OBJECTID_1": 6540, "PARCEL_NO_": "103103023000", "Tax_Legal_": "MANDAHL 13B-11 GT. NORTHSIDE", "Name": "KENT AND JULIE MAGEE REVOCABLE TRUST", "Address": "7350 Estate Bovoni B108", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51400, "Improved_V": 311800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.923388579, "SHAPE_Area": 1650.33284983 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362579.026799999177456, 258169.948600001633167 ], [ 362550.161300003528595, 258150.713899999856949 ], [ 362545.084299996495247, 258178.747800000011921 ], [ 362539.9712999984622, 258211.003299999982119 ], [ 362573.848999999463558, 258209.80290000140667 ], [ 362579.026799999177456, 258169.948600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89494127, "LATITUDE": 18.35295372, "OBJECTID_1": 6550, "PARCEL_NO_": "103103024000", "Tax_Legal_": "MANDAHL 12A-3 GT. NORTHSIDE", "Name": "RICHARDSON, ELVIS G. & NATACHA V. JERMAIN", "Address": "PO BOX 304393", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47200, "Improved_V": 235200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.543171239, "SHAPE_Area": 1105.5815357500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362573.848999999463558, 258209.80290000140667 ], [ 362622.247500002384186, 258207.877000000327826 ], [ 362623.091600000858307, 258203.4510000012815 ], [ 362599.069499999284744, 258183.622600000351667 ], [ 362579.026799999177456, 258169.948600001633167 ], [ 362573.848999999463558, 258209.80290000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003038300", "MAP": "F9-1071-T63", "PARCEL_NAM": "1-40", "ACRE": ".19", "LONGITUDE": -64.90815785, "LATITUDE": 18.35286419, "OBJECTID_1": 5879, "PARCEL_NO_": "103003038300", "Tax_Legal_": "1-40 WINTBERG No.3 GREAT NORTHSIDE QTR", "Name": "Walters, Austin & Others", "Address": "PO Box 12195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18700, "Improved_V": 109400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.45251479800001, "SHAPE_Area": 920.38908121400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361216.618699997663498, 258163.949499998241663 ], [ 361182.136900000274181, 258151.886100001633167 ], [ 361182.495399996638298, 258158.307599999010563 ], [ 361184.053999997675419, 258164.653099998831749 ], [ 361187.839199997484684, 258193.603900000452995 ], [ 361191.840199999511242, 258197.225299999117851 ], [ 361197.484399996697903, 258197.271499998867512 ], [ 361200.733000002801418, 258194.553800001740456 ], [ 361214.668700002133846, 258167.859000001102686 ], [ 361216.618699997663498, 258163.949499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90357347, "LATITUDE": 18.35281157, "OBJECTID_1": 6227, "PARCEL_NO_": "103004041700", "Tax_Legal_": "WINTBERG 372 GR NORTHSIDE QTR", "Name": "HUME, MARK J. & JESSICA D.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76800, "Improved_V": 321600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.65165857700001, "SHAPE_Area": 2301.2890942899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361706.702799998223782, 258150.354499999433756 ], [ 361687.370999999344349, 258147.874299999326468 ], [ 361662.413099996745586, 258143.237100001424551 ], [ 361654.735500000417233, 258192.570099998265505 ], [ 361691.779100000858307, 258198.361699998378754 ], [ 361702.248599998652935, 258199.92509999871254 ], [ 361706.702799998223782, 258150.354499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89991345, "LATITUDE": 18.352691, "OBJECTID_1": 6136, "PARCEL_NO_": "103004031000", "Tax_Legal_": "4D ESTATE MANDAHL 1 GR NORTHSIDE", "Name": "RICHARDSON, MARIA", "Address": "PO BOX 307244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.20582222, "SHAPE_Area": 2050.0051823399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362048.101300001144409, 258182.651999998837709 ], [ 362080.410999998450279, 258202.809099998325109 ], [ 362080.601599998772144, 258180.43470000103116 ], [ 362081.454599998891354, 258174.953200001269579 ], [ 362084.798600003123283, 258161.04839999973774 ], [ 362087.278599999845028, 258153.891600001603365 ], [ 362088.910999998450279, 258151.582899998873472 ], [ 362092.226199999451637, 258141.055300001055002 ], [ 362053.654500000178814, 258125.329799998551607 ], [ 362052.549699999392033, 258160.362300001084805 ], [ 362050.048000000417233, 258170.052099999040365 ], [ 362048.101300001144409, 258182.651999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026400", "MAP": null, "PARCEL_NAM": "14-3", "ACRE": null, "LONGITUDE": -64.89658066, "LATITUDE": 18.35281389, "OBJECTID_1": 6569, "PARCEL_NO_": "103103026400", "Tax_Legal_": "MANDAHL 14-3 LITTLE NORTHSIDE", "Name": "ESTATE OF ANN CLARITA AUBAIN", "Address": "PO Box 8889", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 160900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.99070362399999, "SHAPE_Area": 2570.90026124 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362452.511200003325939, 258160.047200001776218 ], [ 362398.534999996423721, 258154.116999998688698 ], [ 362392.896200001239777, 258153.437600001692772 ], [ 362387.018299996852875, 258180.831599999219179 ], [ 362394.262500002980232, 258182.368599999696016 ], [ 362397.451800003647804, 258186.616599999368191 ], [ 362402.943099997937679, 258204.604499999433756 ], [ 362446.514600001275539, 258201.372499998658895 ], [ 362451.676100000739098, 258163.417899999767542 ], [ 362452.511200003325939, 258160.047200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90768464, "LATITUDE": 18.3528389, "OBJECTID_1": 5965, "PARCEL_NO_": "103004012900", "Tax_Legal_": "WINTBERG 1 12 GREAT NORTHSIDE QTR", "Name": "RICHARDS, ALBERT & FELICITA", "Address": "PO Box 502763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30200, "Improved_V": 249500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.23249684300001, "SHAPE_Area": 1253.1490552299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361275.108000002801418, 258172.364500001072884 ], [ 361233.386500000953674, 258147.74720000103116 ], [ 361230.917300000786781, 258153.637600000947714 ], [ 361220.271600000560284, 258172.760000001639128 ], [ 361258.80009999871254, 258193.551399998366833 ], [ 361275.108000002801418, 258172.364500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004013600", "MAP": "A9-81-T68", "PARCEL_NAM": "1-122", "ACRE": "0.40", "LONGITUDE": -64.90670785, "LATITUDE": 18.3528111, "OBJECTID_1": 5972, "PARCEL_NO_": "103004013600", "Tax_Legal_": "WINTBERG 1-122 GR NORTHSIDE QTR", "Name": "LEDEE, DAVID T", "Address": "PO Box 303374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38200, "Improved_V": 199300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.531975184, "SHAPE_Area": 1120.3908935699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361376.114600002765656, 258147.648800000548363 ], [ 361370.486599996685982, 258145.702899999916553 ], [ 361365.648800000548363, 258145.66330000013113 ], [ 361360.80009999871254, 258146.8902000002563 ], [ 361346.997500002384186, 258157.965199999511242 ], [ 361327.532700002193451, 258171.104800000786781 ], [ 361325.844499997794628, 258179.956900000572205 ], [ 361347.503499999642372, 258193.221999999135733 ], [ 361356.464599996805191, 258182.529500000178814 ], [ 361361.365500003099442, 258175.181400001049042 ], [ 361371.221000000834465, 258154.152699999511242 ], [ 361376.114600002765656, 258147.648800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90648606000001, "LATITUDE": 18.3528665, "OBJECTID_1": 5973, "PARCEL_NO_": "103004013700", "Tax_Legal_": "WINTBERG 1-135 3 GR NORTHSIDE QTR", "Name": "PEARLINE V & RONALD L WOODCOCK,SR REVOC FAM TRUST", "Address": "PO Box 9591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107800, "Improved_V": 253500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.46695990699999, "SHAPE_Area": 994.52183456499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361347.503499999642372, 258193.221999999135733 ], [ 361388.659599997103214, 258189.548000000417233 ], [ 361389.566600002348423, 258177.734200000762939 ], [ 361390.385499998927116, 258176.263300001621246 ], [ 361389.622400000691414, 258171.190799999982119 ], [ 361385.671700000762939, 258161.659200001507998 ], [ 361384.071699999272823, 258160.168499998748302 ], [ 361376.114600002765656, 258147.648800000548363 ], [ 361371.221000000834465, 258154.152699999511242 ], [ 361361.365500003099442, 258175.181400001049042 ], [ 361356.464599996805191, 258182.529500000178814 ], [ 361347.503499999642372, 258193.221999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104026000", "MAP": "D9-2266-T83", "PARCEL_NAM": "4-54", "ACRE": "1.04", "LONGITUDE": -64.88698458, "LATITUDE": 18.35256032, "OBJECTID_1": 6827, "PARCEL_NO_": "103104026000", "Tax_Legal_": "TARBOR & HARMONY 4-54 EAST END QTR.", "Name": "WEINBERG FAMILY TRUST", "Address": "1725 Shuey Ave", "City": "Walnut Creek", "State": "California", "Zip": 94596, "Country": "United States", "Land_Value": 84400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.75003222199999, "SHAPE_Area": 3053.77331663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363413.226800002157688, 258121.258499998599291 ], [ 363397.671300001442432, 258148.784499999135733 ], [ 363455.207900002598763, 258210.050299998372793 ], [ 363463.858999997377396, 258141.093499999493361 ], [ 363455.806699998676777, 258139.761100001633167 ], [ 363413.226800002157688, 258121.258499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104026100", "MAP": "D9-2266-T83", "PARCEL_NAM": "4-55", "ACRE": "1.08", "LONGITUDE": -64.88652122000001, "LATITUDE": 18.3526622, "OBJECTID_1": 6828, "PARCEL_NO_": "103104026100", "Tax_Legal_": "TARBOR & HARMONY 4-55 EAST END QTR.", "Name": "WINSTON, VALINE A", "Address": "PO Box 15102", "City": "Beverly Hills", "State": "California", "Zip": 90209, "Country": "United States", "Land_Value": 68900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.1702271, "SHAPE_Area": 2623.4919186799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363519.408299997448921, 258151.680700000375509 ], [ 363463.858999997377396, 258141.093499999493361 ], [ 363455.207900002598763, 258210.050299998372793 ], [ 363515.978000000119209, 258175.717300001531839 ], [ 363516.883199997246265, 258164.114500001072884 ], [ 363519.408299997448921, 258151.680700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003016900", "MAP": "A9-81-T69", "PARCEL_NAM": "1-104", "ACRE": "0.24", "LONGITUDE": -64.90918659, "LATITUDE": 18.35280659, "OBJECTID_1": 5692, "PARCEL_NO_": "103003016900", "Tax_Legal_": "1-104 ESTATE WINTBERG No.3 GREAT NORETHSIDE QTR.", "Name": "ROGERS, PATRICIA, INGRID ROGERS-LAKE & OTHERS", "Address": "PO Box 307625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32100, "Improved_V": 376400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.80756818500001, "SHAPE_Area": 1073.83881827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361104.882600001990795, 258181.948100000619888 ], [ 361098.746699996292591, 258144.956500001251698 ], [ 361071.292599998414516, 258149.375900000333786 ], [ 361073.619800001382828, 258160.160700000822544 ], [ 361078.207699999213219, 258189.540300000458956 ], [ 361104.882600001990795, 258181.948100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103025800", "MAP": "D9-3807-T84", "PARCEL_NAM": "15H", "ACRE": null, "LONGITUDE": -64.89870294000001, "LATITUDE": 18.35270468, "OBJECTID_1": 6564, "PARCEL_NO_": "103103025800", "Tax_Legal_": "15-H MANDAHL GREAT NORTHSIDE QUARTER", "Name": "EMELDA ELEANOR LAPLACE REVOC FAMILY TRUST", "Address": "6515 Estate Mandal 15H", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 225100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.662089737, "SHAPE_Area": 1799.3268480900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362227.561099998652935, 258188.3885000012815 ], [ 362203.320000000298023, 258132.481699999421835 ], [ 362195.464800000190735, 258138.311700001358986 ], [ 362193.843199998140335, 258139.353900000452995 ], [ 362193.006300002336502, 258142.935600001364946 ], [ 362189.754100002348423, 258146.075399998575449 ], [ 362185.713500000536442, 258147.097800001502037 ], [ 362182.491800002753735, 258146.649300001561642 ], [ 362160.582299999892712, 258173.67790000140667 ], [ 362216.441399998962879, 258186.324299998581409 ], [ 362224.264600001275539, 258188.095400001853704 ], [ 362227.561099998652935, 258188.3885000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103025400", "MAP": "D9-3807-T84", "PARCEL_NAM": "15I", "ACRE": null, "LONGITUDE": -64.8984026, "LATITUDE": 18.35255633, "OBJECTID_1": 6560, "PARCEL_NO_": "103103025400", "Tax_Legal_": "15 I MANDAHL No.1GREAT NORTHSIDE QTR", "Name": "RITA E GREAUX - PAUL G BERRY FAMILY TRUST", "Address": "6534 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.37349838899999, "SHAPE_Area": 1862.6337421200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362243.960400000214577, 258124.987500000745058 ], [ 362218.196199998259544, 258120.343699999153614 ], [ 362216.563799999654293, 258122.652399998158216 ], [ 362203.320000000298023, 258132.481699999421835 ], [ 362227.561099998652935, 258188.3885000012815 ], [ 362231.399800002574921, 258188.729699999094009 ], [ 362234.102799996733665, 258188.969900000840425 ], [ 362251.25620000064373, 258126.322500001639128 ], [ 362243.960400000214577, 258124.987500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103025700", "MAP": "D9-3807-T84", "PARCEL_NAM": "15J", "ACRE": null, "LONGITUDE": -64.89810663, "LATITUDE": 18.35265396, "OBJECTID_1": 6563, "PARCEL_NO_": "103103025700", "Tax_Legal_": "MANDAHL 15-J GT. NORTHSIDE", "Name": "RITA E GREAUX PAUL G BERRY FAMILY TRUST", "Address": "6534 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023410, "Country": "United States", "Land_Value": 64300, "Improved_V": 94200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.17707071699999, "SHAPE_Area": 2104.0504880399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362251.25620000064373, 258126.322500001639128 ], [ 362234.102799996733665, 258188.969900000840425 ], [ 362243.314599998295307, 258189.788800001144409 ], [ 362267.919699996709824, 258190.057000000029802 ], [ 362282.528499998152256, 258141.135200001299381 ], [ 362285.021200001239777, 258132.500799998641014 ], [ 362251.25620000064373, 258126.322500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90409124, "LATITUDE": 18.35273233, "OBJECTID_1": 6226, "PARCEL_NO_": "103004041600", "Tax_Legal_": "373 ESTATE WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "BURNETT, KAREN", "Address": "6500 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99500, "Improved_V": 224400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.79991410400001, "SHAPE_Area": 3189.9388668900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361662.413099996745586, 258143.237100001424551 ], [ 361638.247100003063679, 258140.295099999755621 ], [ 361612.48650000244379, 258135.229100000113249 ], [ 361595.562899999320507, 258134.035100001841784 ], [ 361594.337600000202656, 258183.209899999201298 ], [ 361647.487700000405312, 258191.455299999564886 ], [ 361654.735500000417233, 258192.570099998265505 ], [ 361662.413099996745586, 258143.237100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103103024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89487796, "LATITUDE": 18.35281094, "OBJECTID_1": 6552, "PARCEL_NO_": "103103024400", "Tax_Legal_": "MANDAHL 12A-4 GT. NORTHSIDE QTR.", "Name": "SCOTT, STUART", "Address": "4605 TUT MALL STe.133", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44200, "Improved_V": 244600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.57729341700001, "SHAPE_Area": 151.825817672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362583.096100002527237, 258165.5489999987185 ], [ 362579.888800002634525, 258163.411800000816584 ], [ 362579.055500000715256, 258166.571400001645088 ], [ 362601.509999997913837, 258181.109499998390675 ], [ 362619.119400002062321, 258196.452399998903275 ], [ 362621.55629999935627, 258194.361400000751019 ], [ 362603.142399996519089, 258178.800799999386072 ], [ 362583.096100002527237, 258165.5489999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90616161, "LATITUDE": 18.35281533, "OBJECTID_1": 5956, "PARCEL_NO_": "103004012000", "Tax_Legal_": "WINTBERG 1-123-7 GR NORTHSIDE", "Name": "MICHAEL, COLLINS", "Address": "394-4 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.479232418, "SHAPE_Area": 624.74710214599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361418.536300003528595, 258184.726300001144409 ], [ 361418.784500002861023, 258155.59739999845624 ], [ 361392.971699997782707, 258156.652699999511242 ], [ 361397.726800002157688, 258166.401900000870228 ], [ 361398.477399997413158, 258172.951999999582767 ], [ 361398.367700003087521, 258185.827799998223782 ], [ 361418.536300003528595, 258184.726300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90498719, "LATITUDE": 18.35271366, "OBJECTID_1": 6224, "PARCEL_NO_": "103004041400", "Tax_Legal_": "WINTBERG 2F GR NORTHSIDE", "Name": "RICHARDSON, MICHELLE, & BORTON", "Address": "P.O. BOX 4281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54800, "Improved_V": 261400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.92709206699999, "SHAPE_Area": 2390.5649773599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361556.852700002491474, 258134.562600001692772 ], [ 361527.803900003433228, 258136.857999999076128 ], [ 361515.719999998807907, 258135.492499999701977 ], [ 361506.872100003063679, 258132.886999998241663 ], [ 361508.845100000500679, 258185.254399999976158 ], [ 361556.431900002062321, 258183.955099999904633 ], [ 361556.852700002491474, 258134.562600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103024400", "MAP": "A9-259-T77", "PARCEL_NAM": "12A-4", "ACRE": ".32", "LONGITUDE": -64.89472761, "LATITUDE": 18.35271433, "OBJECTID_1": 6552, "PARCEL_NO_": "103103024400", "Tax_Legal_": "MANDAHL 12A-4 GT. NORTHSIDE QTR.", "Name": "SCOTT, STUART", "Address": "4605 TUT MALL STe.133", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44200, "Improved_V": 244600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.47173605200001, "SHAPE_Area": 1560.12106503 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362646.706600002944469, 258176.413199998438358 ], [ 362634.718099996447563, 258163.860500000417233 ], [ 362617.1554000005126, 258143.029599998146296 ], [ 362583.096100002527237, 258165.5489999987185 ], [ 362603.142399996519089, 258178.800799999386072 ], [ 362621.55629999935627, 258194.361400000751019 ], [ 362646.706600002944469, 258176.413199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004041500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90457423, "LATITUDE": 18.35269906, "OBJECTID_1": 6225, "PARCEL_NO_": "103004041500", "Tax_Legal_": "WINTBERG 374 GR NORTHSIDE QTR", "Name": "BENJAMIN, JOSEPH, SHELDON JOSEPH, CALVIA ROMNEY", "Address": "PO BOX 305176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.25137194499999, "SHAPE_Area": 1904.4532422100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361595.562899999320507, 258134.035100001841784 ], [ 361574.602399997413158, 258133.441300000995398 ], [ 361556.852700002491474, 258134.562600001692772 ], [ 361556.431900002062321, 258183.955099999904633 ], [ 361594.337600000202656, 258183.209899999201298 ], [ 361595.562899999320507, 258134.035100001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004014100", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-5", "ACRE": "0.23", "LONGITUDE": -64.9071198, "LATITUDE": 18.35267692, "OBJECTID_1": 5977, "PARCEL_NO_": "103004014100", "Tax_Legal_": "1-123-4&5 WINTBERG GREAT NORTHSIDE", "Name": "FLEMING, JERRAIN E", "Address": "6873 ESTATE WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56500, "Improved_V": 327400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.463934685, "SHAPE_Area": 1127.1162769699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361333.306400001049042, 258155.953299999237061 ], [ 361324.463899999856949, 258152.714499998837709 ], [ 361306.949799999594688, 258126.184500001370907 ], [ 361289.799599997699261, 258151.586399998515844 ], [ 361284.079899996519089, 258160.405600000172853 ], [ 361306.523599997162819, 258176.210200000554323 ], [ 361321.954999998211861, 258163.248700000345707 ], [ 361333.306400001049042, 258155.953299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026300", "MAP": "D9-5854-T93", "PARCEL_NAM": "14-2", "ACRE": null, "LONGITUDE": -64.8972249, "LATITUDE": 18.35267526, "OBJECTID_1": 6568, "PARCEL_NO_": "103103026300", "Tax_Legal_": "MANDAHL 14-2 LITTLE NORTHSIDE", "Name": "ESTATE OF ANN CLARITA AUBAIN", "Address": "13C Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 155200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.48870621500001, "SHAPE_Area": 1989.2146737400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362351.810300000011921, 258148.879399999976158 ], [ 362313.141400001943111, 258144.552200000733137 ], [ 362322.578000001609325, 258172.704900000244379 ], [ 362341.036899998784065, 258182.988400001078844 ], [ 362354.01519999653101, 258174.017599999904633 ], [ 362359.673799999058247, 258172.375199999660254 ], [ 362366.11710000038147, 258173.272300001233816 ], [ 362387.018299996852875, 258180.831599999219179 ], [ 362392.896200001239777, 258153.437600001692772 ], [ 362351.810300000011921, 258148.879399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103025100", "MAP": "D9-3807-T84", "PARCEL_NAM": "15G", "ACRE": null, "LONGITUDE": -64.8990177, "LATITUDE": 18.3524309, "OBJECTID_1": 6558, "PARCEL_NO_": "103103025100", "Tax_Legal_": "15-G MANDAHL NO.1 GREAT NORTHSIDE QTR", "Name": "GREAUX -BAGLEY, SYLVIA", "Address": "3245 Fort Lincoln Dr", "City": "Washington", "State": "District of Columbia", "Zip": 20018, "Country": "United States", "Land_Value": 70500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.37192200499999, "SHAPE_Area": 2303.18245832 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362176.962700001895428, 258133.094000000506639 ], [ 362185.744099996984005, 258087.508699998259544 ], [ 362179.762900002300739, 258088.365100000053644 ], [ 362170.094300001859665, 258087.441599998623133 ], [ 362167.841399997472763, 258086.832100000232458 ], [ 362134.755800001323223, 258167.830800000578165 ], [ 362139.039899997413158, 258168.800700001418591 ], [ 362160.582299999892712, 258173.67790000140667 ], [ 362182.491800002753735, 258146.649300001561642 ], [ 362179.282799996435642, 258144.723200000822544 ], [ 362176.894400000572205, 258141.114999998360872 ], [ 362176.937600001692772, 258136.049100000411272 ], [ 362176.962700001895428, 258133.094000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90754807, "LATITUDE": 18.35262894, "OBJECTID_1": 5970, "PARCEL_NO_": "103004013400", "Tax_Legal_": "WINTBERG 1-11 GR NORTHSIDE QTR", "Name": "O'LEARI, CAROLYN", "Address": "PO Box 10230", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35500, "Improved_V": 289100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.99777508599999, "SHAPE_Area": 1364.6382406299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361289.799599997699261, 258151.586399998515844 ], [ 361251.333999998867512, 258123.407299999147654 ], [ 361239.935900002717972, 258136.190699998289347 ], [ 361233.386500000953674, 258147.74720000103116 ], [ 361275.108000002801418, 258172.364500001072884 ], [ 361284.079899996519089, 258160.405600000172853 ], [ 361289.799599997699261, 258151.586399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003017300", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-13", "ACRE": "0.24", "LONGITUDE": -64.90886518000001, "LATITUDE": 18.35266641, "OBJECTID_1": 5696, "PARCEL_NO_": "103003017300", "Tax_Legal_": "WINTBERG 1-123-13 GR NORTHSIDE QTR", "Name": "DONASTORG, ADLAH ALPHONSE", "Address": "PO Box 10325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 270700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.856028405, "SHAPE_Area": 763.39288007000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361139.130300000309944, 258159.984200000762939 ], [ 361138.95269999653101, 258158.162300001829863 ], [ 361136.722599998116493, 258135.979200001806021 ], [ 361104.4070999994874, 258143.103000000119209 ], [ 361108.966499999165535, 258166.451799999922514 ], [ 361139.130300000309944, 258159.984200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103025000", "MAP": "D9-3807-T84", "PARCEL_NAM": "15F", "ACRE": null, "LONGITUDE": -64.89923513, "LATITUDE": 18.35218307, "OBJECTID_1": 6557, "PARCEL_NO_": "103103025000", "Tax_Legal_": "MANDAHL 15-F GT. NORTHSIDE", "Name": "GREAUX, SYLVIA & C", "Address": "3245 Fort Lincoln Dr. NE", "City": "Washington", "State": "District of Columbia", "Zip": 200184316, "Country": "United States", "Land_Value": 50500, "Improved_V": 66200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.84892254600001, "SHAPE_Area": 2470.2085336700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362167.841399997472763, 258086.832100000232458 ], [ 362162.853699997067451, 258085.482500001788139 ], [ 362155.629299998283386, 258081.623700000345707 ], [ 362142.832599997520447, 258069.275499999523163 ], [ 362131.616099998354912, 258060.739999998360872 ], [ 362120.858900003135204, 258092.949299998581409 ], [ 362134.755800001323223, 258167.830800000578165 ], [ 362167.841399997472763, 258086.832100000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003038200", "MAP": "F9-1071-T63", "PARCEL_NAM": "1-41", "ACRE": ".35", "LONGITUDE": -64.90809327, "LATITUDE": 18.35254007, "OBJECTID_1": 5878, "PARCEL_NO_": "103003038200", "Tax_Legal_": "WINTBERG 1-41 GREAT NORTHSIDE QTR.", "Name": "THOMAS, ARTHURLYN & KENRICK", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34400, "Improved_V": 95400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.97642685299999, "SHAPE_Area": 1769.5765488500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361182.136900000274181, 258151.886100001633167 ], [ 361216.618699997663498, 258163.949499998241663 ], [ 361228.615199998021126, 258139.897700000554323 ], [ 361233.519599996507168, 258132.127399999648333 ], [ 361209.234999999403954, 258117.078099999576807 ], [ 361205.076399996876717, 258117.083399999886751 ], [ 361180.248599998652935, 258117.114599999040365 ], [ 361180.396499998867512, 258120.715700000524521 ], [ 361182.136900000274181, 258151.886100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89559903, "LATITUDE": 18.35257176, "OBJECTID_1": 6542, "PARCEL_NO_": "103103023200", "Tax_Legal_": "MANDAHL 13B-7 GT. NORTHSIDE", "Name": "JARVIS, EDWARD & RUTHLYN", "Address": "1-136 ESTATE WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.91361051499999, "SHAPE_Area": 1988.02211287 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362539.848300002515316, 258130.786699999123812 ], [ 362506.839800000190735, 258124.605999998748302 ], [ 362499.201800003647804, 258169.295299999415874 ], [ 362545.084299996495247, 258178.747800000011921 ], [ 362550.161300003528595, 258150.713899999856949 ], [ 362545.348600000143051, 258147.719200000166893 ], [ 362541.392599999904633, 258138.820900000631809 ], [ 362540.606100000441074, 258136.492499999701977 ], [ 362539.828500002622604, 258133.108600001782179 ], [ 362539.848300002515316, 258130.786699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014800", "MAP": "D9-551-T65", "PARCEL_NAM": "27", "ACRE": null, "LONGITUDE": -64.89146731, "LATITUDE": 18.35182607, "OBJECTID_1": 6473, "PARCEL_NO_": "103103014800", "Tax_Legal_": "MANDAHL 27 GREAT NORTHSIDE QTR", "Name": "FRAZER, AMANDA", "Address": "PO Box 1603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 183400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 592.73303368500001, "SHAPE_Area": 16323.9040062 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363017.239600002765656, 257939.010200001299381 ], [ 363009.178300000727177, 257938.733199998736382 ], [ 363003.525100000202656, 257939.742400001734495 ], [ 362997.047600001096725, 257942.855799999088049 ], [ 362989.709899999201298, 257952.294900000095367 ], [ 362950.560900002717972, 258004.325699999928474 ], [ 362948.125799998641014, 258006.205600000917912 ], [ 362930.982900001108646, 258030.763199999928474 ], [ 362926.870399996638298, 258040.228799998760223 ], [ 362925.229000002145767, 258043.5929000005126 ], [ 362922.774099998176098, 258047.794599998742342 ], [ 362922.75789999961853, 258049.694299999624491 ], [ 362921.127300001680851, 258051.791900001466274 ], [ 362917.826499998569489, 258060.630899999290705 ], [ 362912.119400002062321, 258067.97239999845624 ], [ 362908.872599996626377, 258070.478999998420477 ], [ 362904.016699999570847, 258072.550200000405312 ], [ 362906.540700003504753, 258154.897300001233816 ], [ 362947.49719999730587, 258174.653099998831749 ], [ 362959.568499997258186, 258177.496100001037121 ], [ 362981.337099999189377, 258177.885400000959635 ], [ 362986.1587999984622, 258179.824700001627207 ], [ 363017.239600002765656, 257939.010200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003018100", "MAP": "F9-2022-T67", "PARCEL_NAM": "1-114", "ACRE": "0.24", "LONGITUDE": -64.90854734, "LATITUDE": 18.35256715, "OBJECTID_1": 5704, "PARCEL_NO_": "103003018100", "Tax_Legal_": "WINTBERG 1-114 3 GR NORTHSIDE QTR", "Name": "Veronica, Felicien,Jr, L,& M Lake & F Lake-Cook", "Address": "12719 Alyssa Ave", "City": "Missouri City", "State": "Texas", "Zip": 77489, "Country": "United States", "Land_Value": 26300, "Improved_V": 484100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.29904433600001, "SHAPE_Area": 1084.3039793800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361174.479000002145767, 258152.753499999642372 ], [ 361173.132500000298023, 258121.500700000673532 ], [ 361135.962999999523163, 258130.484600000083447 ], [ 361136.722599998116493, 258135.979200001806021 ], [ 361138.95269999653101, 258158.162300001829863 ], [ 361174.479000002145767, 258152.753499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89602452, "LATITUDE": 18.35248324, "OBJECTID_1": 6541, "PARCEL_NO_": "103103023100", "Tax_Legal_": "MANDAHL 13B-8 GT. NORTHSIDE", "Name": "GHENT, BEZZLE & MARJORIE", "Address": "394-358 ANNAS RETRET", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.92321396899999, "SHAPE_Area": 2164.0993168099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362506.839800000190735, 258124.605999998748302 ], [ 362458.532999999821186, 258115.7668999992311 ], [ 362452.511200003325939, 258160.047200001776218 ], [ 362451.676100000739098, 258163.417899999767542 ], [ 362454.095100000500679, 258163.437699999660254 ], [ 362458.177000001072884, 258157.560499999672174 ], [ 362463.018500000238419, 258157.17790000140667 ], [ 362467.831200003623962, 258160.172600001096725 ], [ 362469.402400001883507, 258165.040600001811981 ], [ 362499.201800003647804, 258169.295299999415874 ], [ 362506.839800000190735, 258124.605999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9062175, "LATITUDE": 18.35255302, "OBJECTID_1": 5979, "PARCEL_NO_": "103004014300", "Tax_Legal_": "WINTBEGR 1-137-6 3 GR NORTHSIDE", "Name": "ROBINSON, CLEMENT & CHRYSTALIA", "Address": "6324 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39600, "Improved_V": 517300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.68392367, "SHAPE_Area": 971.11758443099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361423.022799998521805, 258131.3564000017941 ], [ 361382.759300000965595, 258124.905099999159575 ], [ 361382.685599997639656, 258133.559300001710653 ], [ 361385.016400001943111, 258143.921999998390675 ], [ 361387.413800001144409, 258146.474700000137091 ], [ 361392.971699997782707, 258156.652699999511242 ], [ 361418.784500002861023, 258155.59739999845624 ], [ 361420.531999997794628, 258139.779699999839067 ], [ 361423.022799998521805, 258131.3564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004014100", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-4", "ACRE": "0.32", "LONGITUDE": -64.90687635, "LATITUDE": 18.35248044, "OBJECTID_1": 5977, "PARCEL_NO_": "103004014100", "Tax_Legal_": "1-123-4&5 WINTBERG GREAT NORTHSIDE", "Name": "FLEMING, JERRAIN E", "Address": "6873 ESTATE WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56500, "Improved_V": 327400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.551191133, "SHAPE_Area": 1407.27560122 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361368.227700002491474, 258126.897100001573563 ], [ 361346.42849999666214, 258130.096200000494719 ], [ 361327.291000001132488, 258104.819400001317263 ], [ 361306.949799999594688, 258126.184500001370907 ], [ 361324.463899999856949, 258152.714499998837709 ], [ 361333.306400001049042, 258155.953299999237061 ], [ 361355.21169999986887, 258140.300599999725819 ], [ 361367.394500002264977, 258130.056699998676777 ], [ 361368.227700002491474, 258126.897100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023800", "MAP": "A9-259-T77", "PARCEL_NAM": "12A-5", "ACRE": ".20", "LONGITUDE": -64.89492514, "LATITUDE": 18.35245161, "OBJECTID_1": 6548, "PARCEL_NO_": "103103023800", "Tax_Legal_": "MANDAHL 12A-5&13B-1 GT. NORTHSIDE", "Name": "ASHLEY, BRETT D.L. AND JESSICA MEGAN", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 264900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.732504871, "SHAPE_Area": 965.16248000500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362617.1554000005126, 258143.029599998146296 ], [ 362609.968699999153614, 258134.738099999725819 ], [ 362591.650100000202656, 258107.99040000140667 ], [ 362579.888800002634525, 258163.411800000816584 ], [ 362583.096100002527237, 258165.5489999987185 ], [ 362617.1554000005126, 258143.029599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104022800", "MAP": "F9-2590-T70", "PARCEL_NAM": "4-14A", "ACRE": "1.00", "LONGITUDE": -64.88555306000001, "LATITUDE": 18.35231353, "OBJECTID_1": 6799, "PARCEL_NO_": "103104022800", "Tax_Legal_": "TARBOR & HARMONY 4-14A EAST END QTR", "Name": "POTTER, CASIM & ELISE", "Address": "PO BOX 302875", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82000, "Improved_V": 1198600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.61663486700002, "SHAPE_Area": 4683.39500701 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363639.029899999499321, 258128.835999999195337 ], [ 363571.721500001847744, 258094.987300001084805 ], [ 363561.7753000035882, 258100.520599998533726 ], [ 363552.043799996376038, 258106.984900001436472 ], [ 363543.098800003528595, 258115.77760000154376 ], [ 363536.571000002324581, 258124.801199998706579 ], [ 363530.001800000667572, 258138.67960000038147 ], [ 363619.401399999856949, 258171.717199999839067 ], [ 363621.43860000371933, 258167.799600001424551 ], [ 363625.78660000115633, 258157.429000001400709 ], [ 363630.479500003159046, 258147.749899998307228 ], [ 363632.385899998247623, 258143.643699999898672 ], [ 363635.465599998831749, 258138.070900000631809 ], [ 363639.425200000405312, 258132.644799999892712 ], [ 363642.033900000154972, 258130.346700001507998 ], [ 363639.029899999499321, 258128.835999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031100", "MAP": "A3-25-T36", "PARCEL_NAM": "9REM", "ACRE": null, "LONGITUDE": -64.89353125, "LATITUDE": 18.35219201, "OBJECTID_1": 6592, "PARCEL_NO_": "103103031100", "Tax_Legal_": "MANDAHL 9 GREAT NORTHSIDE QTR", "Name": "WILLIAMS, JUANITO", "Address": "PO Box 11322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 172500, "Improved_V": 165000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.92429216599999, "SHAPE_Area": 4462.9229571400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362761.496100001037121, 258142.944400001317263 ], [ 362766.456299997866154, 258128.63060000166297 ], [ 362768.144400000572205, 258119.778499998152256 ], [ 362771.443400003015995, 258111.150699999183416 ], [ 362777.155900001525879, 258103.175900001078844 ], [ 362785.273000001907349, 258096.909499999135733 ], [ 362750.174699999392033, 258052.081500001251698 ], [ 362713.388899996876717, 258110.675500001758337 ], [ 362725.327100001275539, 258129.138399999588728 ], [ 362728.521799996495247, 258132.753100000321865 ], [ 362709.037299998104572, 258148.214600000530481 ], [ 362686.338200002908707, 258162.383200000971556 ], [ 362691.165299996733665, 258163.6891999989748 ], [ 362704.0591000020504, 258164.63910000026226 ], [ 362713.749300003051758, 258163.029699999839067 ], [ 362731.565499998629093, 258154.098499998450279 ], [ 362746.916000001132488, 258150.635499998927116 ], [ 362761.496100001037121, 258142.944400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023800", "MAP": "A9-259-T77", "PARCEL_NAM": "13B-1", "ACRE": ".19", "LONGITUDE": -64.89513234, "LATITUDE": 18.35243997, "OBJECTID_1": 6548, "PARCEL_NO_": "103103023800", "Tax_Legal_": "MANDAHL 12A-5&13B-1 GT. NORTHSIDE", "Name": "ASHLEY, BRETT D.L. AND JESSICA MEGAN", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 264900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.9517602, "SHAPE_Area": 938.94891796800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362591.650100000202656, 258107.99040000140667 ], [ 362550.222499996423721, 258143.537300001829863 ], [ 362579.888800002634525, 258163.411800000816584 ], [ 362591.650100000202656, 258107.99040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90737144000001, "LATITUDE": 18.35242792, "OBJECTID_1": 5976, "PARCEL_NO_": "103004014000", "Tax_Legal_": "WINTBERG 1 10 GREAT NORTHSIDE", "Name": "CHALLENGER, WALTER", "Address": "PO Box 861", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24300, "Improved_V": 161000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.68986264500001, "SHAPE_Area": 1355.7005859599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361306.949799999594688, 258126.184500001370907 ], [ 361275.703199997544289, 258102.497400000691414 ], [ 361256.215000003576279, 258118.381000000983477 ], [ 361251.333999998867512, 258123.407299999147654 ], [ 361289.799599997699261, 258151.586399998515844 ], [ 361306.949799999594688, 258126.184500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003017000", "MAP": "A9-81-T68", "PARCEL_NAM": "1-103", "ACRE": "0.24", "LONGITUDE": -64.90925375, "LATITUDE": 18.35244343, "OBJECTID_1": 5693, "PARCEL_NO_": "103003017000", "Tax_Legal_": "1-103 WINTBERG GREAT NORTHSIDE QUARTER", "Name": "LLOYD, NEVILLE & JOAN", "Address": "PO Box 302187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032187, "Country": "United States", "Land_Value": 32100, "Improved_V": 238700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.77926072100001, "SHAPE_Area": 1179.5348752 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361093.418999999761581, 258107.760400000959635 ], [ 361064.431400001049042, 258102.879099998623133 ], [ 361071.292599998414516, 258149.375900000333786 ], [ 361098.746699996292591, 258144.956500001251698 ], [ 361093.418999999761581, 258107.760400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026700", "MAP": "D9-5429-T92", "PARCEL_NAM": "14-O", "ACRE": ".56", "LONGITUDE": -64.89659077, "LATITUDE": 18.35243254, "OBJECTID_1": 6572, "PARCEL_NO_": "103103026700", "Tax_Legal_": "MANDAHL 14-O GT. NORTHSIDE QTR.", "Name": "RODNEY, DEBRA A", "Address": "PO Box 240819", "City": "Dorchester Center", "State": "Massachusetts", "Zip": 2124, "Country": "United States", "Land_Value": 67900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.259570744, "SHAPE_Area": 1890.2378320299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362429.525600001215935, 258113.207400001585484 ], [ 362397.299999997019768, 258109.777300000190735 ], [ 362398.534999996423721, 258154.116999998688698 ], [ 362452.511200003325939, 258160.047200001776218 ], [ 362440.608900003135204, 258137.362799998372793 ], [ 362429.525600001215935, 258113.207400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89640301, "LATITUDE": 18.35215316, "OBJECTID_1": 6527, "PARCEL_NO_": "103103021800", "Tax_Legal_": "CONSOLIDATED 14-REM MANDAHL No.1 GREAT NORTHSIDE QUARTER", "Name": "ELSIE D. BERRY REVOCABLE TRUST", "Address": "PO Box 9560", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.27132396299999, "SHAPE_Area": 2329.3723056600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362458.532999999821186, 258115.7668999992311 ], [ 362464.484700001776218, 258079.718600001186132 ], [ 362441.900799997150898, 258080.378100000321865 ], [ 362412.895099997520447, 258077.607599999755621 ], [ 362412.877099998295307, 258079.718400001525879 ], [ 362412.020400002598763, 258085.622000001370907 ], [ 362407.882799997925758, 258098.042599998414516 ], [ 362409.452299997210503, 258103.121700000017881 ], [ 362411.842399999499321, 258106.518800001591444 ], [ 362429.565099999308586, 258108.563700001686811 ], [ 362429.525600001215935, 258113.207400001585484 ], [ 362440.608900003135204, 258137.362799998372793 ], [ 362452.511200003325939, 258160.047200001776218 ], [ 362458.532999999821186, 258115.7668999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103032400", "MAP": "F9-3790-T80", "PARCEL_NAM": "9A", "ACRE": ".50", "LONGITUDE": -64.89427476, "LATITUDE": 18.35237848, "OBJECTID_1": 6605, "PARCEL_NO_": "103103032400", "Tax_Legal_": "MANDAHL 9A GT. NORTHSIDE", "Name": "WILLIAMS, JUANITO", "Address": "PO Box 11322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67000, "Improved_V": 230100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.99963518300001, "SHAPE_Area": 1874.74819966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362693.137599997222424, 258121.486699998378754 ], [ 362648.923500001430511, 258105.503899998962879 ], [ 362635.709600001573563, 258142.125999998301268 ], [ 362675.0912000015378, 258157.436000000685453 ], [ 362679.903899997472763, 258160.430700000375509 ], [ 362693.137599997222424, 258121.486699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103032600", "MAP": "D9-3843-T87", "PARCEL_NAM": "9B", "ACRE": null, "LONGITUDE": -64.89391608, "LATITUDE": 18.35238569, "OBJECTID_1": 6607, "PARCEL_NO_": "103103032600", "Tax_Legal_": "MANDAHL 9B GT. NORTHSIDE", "Name": "SIMMONDS, L. & LETTSOME, J", "Address": "PO Box 302957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69600, "Improved_V": 333700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.41103081599999, "SHAPE_Area": 995.45881269799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362713.388899996876717, 258110.675500001758337 ], [ 362693.137599997222424, 258121.486699998378754 ], [ 362679.903899997472763, 258160.430700000375509 ], [ 362688.002999998629093, 258156.275100000202656 ], [ 362703.407499998807907, 258146.479800000786781 ], [ 362719.637999996542931, 258134.369199998676777 ], [ 362725.327100001275539, 258129.138399999588728 ], [ 362713.388899996876717, 258110.675500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026800", "MAP": "D-5429-T92", "PARCEL_NAM": null, "ACRE": ".50", "LONGITUDE": -64.89700585, "LATITUDE": 18.35237999, "OBJECTID_1": 6573, "PARCEL_NO_": "103103026800", "Tax_Legal_": "MANDAHL 14-N GREAT NORTHSIDE", "Name": "LA RONDE, HYACINTH", "Address": "PO Box 12288", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.36310003899999, "SHAPE_Area": 1933.72169551 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362397.299999997019768, 258109.777300000190735 ], [ 362356.212300002574921, 258105.43019999936223 ], [ 362351.810300000011921, 258148.879399999976158 ], [ 362392.896200001239777, 258153.437600001692772 ], [ 362398.534999996423721, 258154.116999998688698 ], [ 362397.299999997019768, 258109.777300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003017400", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-14", "ACRE": "0.25", "LONGITUDE": -64.908909, "LATITUDE": 18.35242786, "OBJECTID_1": 5697, "PARCEL_NO_": "103003017400", "Tax_Legal_": "WINTBERG 1-123-14 GREAT NORTHSIDE", "Name": "EMANUEL, KILO", "Address": "PO BOX 9841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33500, "Improved_V": 126300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.185655713, "SHAPE_Area": 990.09577062799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361134.513999998569489, 258111.263199999928474 ], [ 361119.201300002634525, 258110.293499998748302 ], [ 361099.860600002110004, 258108.868599999696016 ], [ 361104.4070999994874, 258143.103000000119209 ], [ 361136.722599998116493, 258135.979200001806021 ], [ 361135.962999999523163, 258130.484600000083447 ], [ 361134.513999998569489, 258111.263199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042800", "MAP": "A9-87-T68", "PARCEL_NAM": "369", "ACRE": null, "LONGITUDE": -64.90264793, "LATITUDE": 18.35232476, "OBJECTID_1": 6238, "PARCEL_NO_": "103004042800", "Tax_Legal_": "WINTBERG ESTATE 369 GT. NORTHSIDE", "Name": "C CHARLES REVOCABLE TRUST", "Address": "PO BOX 304837", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 89000, "Improved_V": 340200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.025039303, "SHAPE_Area": 3583.9728051799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361808.830399997532368, 258088.706700000911951 ], [ 361746.68860000371933, 258094.741999998688698 ], [ 361743.848899997770786, 258144.114700000733137 ], [ 361777.699600003659725, 258146.08049999922514 ], [ 361783.377999998629093, 258142.116200000047684 ], [ 361788.221199996769428, 258141.52250000089407 ], [ 361793.044699996709824, 258143.250700000673532 ], [ 361796.235799998044968, 258147.287599999457598 ], [ 361816.424199998378754, 258143.86430000141263 ], [ 361808.830399997532368, 258088.706700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003038100", "MAP": "F9-1071-T63", "PARCEL_NAM": "1-42", "ACRE": ".22", "LONGITUDE": -64.9078706, "LATITUDE": 18.35229421, "OBJECTID_1": 5877, "PARCEL_NO_": "103003038100", "Tax_Legal_": "WINBERG 1-42&1-138 GR NORTHSIDE", "Name": "MCBROWNE, RINA", "Address": "PO Box 12149", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34800, "Improved_V": 277200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.22215655100001, "SHAPE_Area": 975.07189380700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361221.804300002753735, 258087.490800000727177 ], [ 361219.207900002598763, 258085.2787000015378 ], [ 361214.413800001144409, 258100.565000001341105 ], [ 361209.234999999403954, 258117.078099999576807 ], [ 361233.519599996507168, 258132.127399999648333 ], [ 361249.800499998033047, 258114.106600001454353 ], [ 361221.804300002753735, 258087.490800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90316164, "LATITUDE": 18.35230846, "OBJECTID_1": 6237, "PARCEL_NO_": "103004042700", "Tax_Legal_": "368 WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "JEFFERY L. & LILLY B. CHANDLER REV. TRST", "Address": "PO Box 7931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.650557878, "SHAPE_Area": 2037.3860543400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361746.68860000371933, 258094.741999998688698 ], [ 361708.050300002098083, 258086.826400000602007 ], [ 361704.364699997007847, 258140.836199998855591 ], [ 361743.848899997770786, 258144.114700000733137 ], [ 361746.68860000371933, 258094.741999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023900", "MAP": "D-5429-T92", "PARCEL_NAM": null, "ACRE": ".57", "LONGITUDE": -64.89746333, "LATITUDE": 18.35236266, "OBJECTID_1": 6549, "PARCEL_NO_": "103103023900", "Tax_Legal_": "14M MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "RODNEY, MYRIAM & LEON S. VIGILANT", "Address": "10L Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61800, "Improved_V": 177400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.42564122900001, "SHAPE_Area": 2115.4218206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362356.212300002574921, 258105.43019999936223 ], [ 362341.711199998855591, 258103.83390000090003 ], [ 362335.273299999535084, 258102.30350000038743 ], [ 362328.853399999439716, 258098.662399999797344 ], [ 362315.765399999916553, 258120.50899999961257 ], [ 362285.021200001239777, 258132.500799998641014 ], [ 362282.528499998152256, 258141.135200001299381 ], [ 362313.141400001943111, 258144.552200000733137 ], [ 362351.810300000011921, 258148.879399999976158 ], [ 362356.212300002574921, 258105.43019999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103103021700", "MAP": "D9-3807-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89848979, "LATITUDE": 18.35215842, "OBJECTID_1": 6526, "PARCEL_NO_": "103103021700", "Tax_Legal_": "15 MANDAHL GREAT NORTHSIDE QTR", "Name": "GREAUX, MICHEL (TRUSTEE)", "Address": "PO Box 6580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 151900, "Improved_V": 376500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.92690486100003, "SHAPE_Area": 1251.87347335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362243.68639999628067, 258062.501600001007318 ], [ 362207.733900003135204, 258117.936099998652935 ], [ 362189.879900000989437, 258131.299899999052286 ], [ 362187.468199998140335, 258130.4358000010252 ], [ 362182.630300000309944, 258130.396200001239777 ], [ 362176.962700001895428, 258133.094000000506639 ], [ 362176.937600001692772, 258136.049100000411272 ], [ 362176.894400000572205, 258141.114999998360872 ], [ 362179.282799996435642, 258144.723200000822544 ], [ 362182.491800002753735, 258146.649300001561642 ], [ 362185.713500000536442, 258147.097800001502037 ], [ 362189.754100002348423, 258146.075399998575449 ], [ 362193.006300002336502, 258142.935600001364946 ], [ 362193.843199998140335, 258139.353900000452995 ], [ 362195.464800000190735, 258138.311700001358986 ], [ 362216.563799999654293, 258122.652399998158216 ], [ 362218.196199998259544, 258120.343699999153614 ], [ 362239.433600001037121, 258088.43129999935627 ], [ 362264.760200001299381, 258049.797400001436472 ], [ 362243.68639999628067, 258062.501600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9035496, "LATITUDE": 18.35225625, "OBJECTID_1": 6236, "PARCEL_NO_": "103004042600", "Tax_Legal_": "367 WINTBERG GREAT NORTHSIDE QUARTER", "Name": "MARTINEZ, EVAN & MAUREEN F.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83000, "Improved_V": 354200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.28089181799999, "SHAPE_Area": 2392.85771436 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361690.340199999511242, 258083.304000001400709 ], [ 361667.80120000243187, 258078.686500001698732 ], [ 361658.464299999177456, 258133.49439999833703 ], [ 361704.364699997007847, 258140.836199998855591 ], [ 361708.050300002098083, 258086.826400000602007 ], [ 361690.340199999511242, 258083.304000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89982427, "LATITUDE": 18.35224119, "OBJECTID_1": 6137, "PARCEL_NO_": "103004031100", "Tax_Legal_": "4C&4C-1 ESTATE MANDAHL GR NORTHSIDE QTR", "Name": "AUBIN, RAYMOND", "Address": "PO Box 1664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 98900, "Improved_V": 279000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.21832963899999, "SHAPE_Area": 1871.17293903 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362100.659800000488758, 258097.63910000026226 ], [ 362062.086199998855591, 258082.124699998646975 ], [ 362061.209799997508526, 258090.350099999457598 ], [ 362053.654500000178814, 258125.329799998551607 ], [ 362092.226199999451637, 258141.055300001055002 ], [ 362095.494599997997284, 258136.015799999237061 ], [ 362098.815200001001358, 258124.855099998414516 ], [ 362100.659800000488758, 258097.63910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104026700", "MAP": "D9-2266-T83", "PARCEL_NAM": "4-56", "ACRE": "1.03", "LONGITUDE": -64.88627088, "LATITUDE": 18.35211759, "OBJECTID_1": 6833, "PARCEL_NO_": "103104026700", "Tax_Legal_": "TARBOR & HARMONY 4-56 EAST END QTR.", "Name": "CHESTERFIELD, BURT", "Address": "PO Box 10707", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.00703559300001, "SHAPE_Area": 4144.12171304 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363463.858999997377396, 258141.093499999493361 ], [ 363519.408299997448921, 258151.680700000375509 ], [ 363521.902699999511242, 258142.835200000554323 ], [ 363527.670999996364117, 258128.316899999976158 ], [ 363535.84740000218153, 258115.08500000089407 ], [ 363548.863499999046326, 258101.681499999016523 ], [ 363561.024700000882149, 258093.970600001513958 ], [ 363510.486000001430511, 258063.159499999135733 ], [ 363463.858999997377396, 258141.093499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023700", "MAP": "A9-259-T77", "PARCEL_NAM": "13B-2", "ACRE": null, "LONGITUDE": -64.89524637, "LATITUDE": 18.35214874, "OBJECTID_1": 6547, "PARCEL_NO_": "103103023700", "Tax_Legal_": "MANDAHL ESTATE 13B-2 No.1 GREAT NORTHSIDE QTR.", "Name": "SAUNDER, BASIL & EVA E", "Address": "PO Box 305422", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.95082518800001, "SHAPE_Area": 2185.6332219400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362572.553900003433228, 258077.858800001442432 ], [ 362566.204099997878075, 258065.985599998384714 ], [ 362543.415200002491474, 258090.708200000226498 ], [ 362542.572899997234344, 258094.923099998384714 ], [ 362544.126199997961521, 258101.901900000870228 ], [ 362542.355400003492832, 258120.463700000196695 ], [ 362543.04839999973774, 258133.768199998885393 ], [ 362543.813299998641014, 258138.629700001329184 ], [ 362545.398999996483326, 258141.809000000357628 ], [ 362546.995399996638298, 258143.721900001168251 ], [ 362547.7837999984622, 258145.839299999177456 ], [ 362550.188299998641014, 258147.547800000756979 ], [ 362550.222499996423721, 258143.537300001829863 ], [ 362591.650100000202656, 258107.99040000140667 ], [ 362572.553900003433228, 258077.858800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003018200", "MAP": "F9-2022-T67", "PARCEL_NAM": "1-11", "ACRE": "0.28", "LONGITUDE": -64.90856175, "LATITUDE": 18.35230839, "OBJECTID_1": 5705, "PARCEL_NO_": "103003018200", "Tax_Legal_": "WINTBERG 1-116 3 GR NORTHSIDE QTR", "Name": "THOMAS A & FLORINDA JAMES REVOCABLE TRUST", "Address": "5516 Daywalt Ave", "City": "Baltimore", "State": "Maryland", "Zip": 21206, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.77456070299999, "SHAPE_Area": 1023.5448192600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361173.132500000298023, 258121.500700000673532 ], [ 361172.446699999272823, 258107.351799998432398 ], [ 361170.893399998545647, 258100.372999999672174 ], [ 361167.720299996435642, 258094.225299999117851 ], [ 361162.925499998033047, 258089.119800001382828 ], [ 361134.513999998569489, 258111.263199999928474 ], [ 361135.962999999523163, 258130.484600000083447 ], [ 361173.132500000298023, 258121.500700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90398957, "LATITUDE": 18.35217498, "OBJECTID_1": 6235, "PARCEL_NO_": "103004042500", "Tax_Legal_": "366 & 365-C WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "HARRIS, VADIM, ALTHEA, COLIN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66200, "Improved_V": 251300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.33736627799999, "SHAPE_Area": 2897.6114661299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361633.993600003421307, 258071.654800001531839 ], [ 361615.479000002145767, 258067.914700001478195 ], [ 361610.953000001609325, 258125.928399998694658 ], [ 361639.937100000679493, 258131.231899999082088 ], [ 361658.464299999177456, 258133.49439999833703 ], [ 361667.80120000243187, 258078.686500001698732 ], [ 361633.993600003421307, 258071.654800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90614037, "LATITUDE": 18.35228003, "OBJECTID_1": 5982, "PARCEL_NO_": "103004014600", "Tax_Legal_": "1-137-5 WINTBERG GREAT NORTHSIDE", "Name": "TRUST AGREEMENT OF EVANS OLIVER HENDRICKS AND HYACINTH VIOLA HENDRICKS", "Address": "PO Box 7974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010974, "Country": "United States", "Land_Value": 29600, "Improved_V": 346100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.93791744699999, "SHAPE_Area": 1393.9994665199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361423.022799998521805, 258131.3564000017941 ], [ 361431.307099997997284, 258105.459699999541044 ], [ 361434.64750000089407, 258091.977000001817942 ], [ 361399.162500001490116, 258092.530999999493361 ], [ 361395.861699998378754, 258101.369899999350309 ], [ 361394.220299996435642, 258104.733899999409914 ], [ 361390.134800001978874, 258111.033300001174212 ], [ 361388.486199997365475, 258115.241700001060963 ], [ 361386.031300000846386, 258119.443500000983477 ], [ 361383.589000001549721, 258122.167700000107288 ], [ 361382.759300000965595, 258124.905099999159575 ], [ 361423.022799998521805, 258131.3564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004014500", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-3", "ACRE": "0.27", "LONGITUDE": -64.9066751, "LATITUDE": 18.35231327, "OBJECTID_1": 5981, "PARCEL_NO_": "103004014500", "Tax_Legal_": "WINTBERG 1-123-3 GR NORTHSIDE", "Name": "GREENAWAY, CLAYTON H", "Address": "PO Box 9067", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 184200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.62346351, "SHAPE_Area": 1021.84142309 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361382.92119999974966, 258105.907999999821186 ], [ 361347.450599998235703, 258104.773299999535084 ], [ 361334.623400002717972, 258096.0135000012815 ], [ 361327.291000001132488, 258104.819400001317263 ], [ 361346.42849999666214, 258130.096200000494719 ], [ 361368.227700002491474, 258126.897100001573563 ], [ 361369.842200003564358, 258126.699200000613928 ], [ 361375.554700002074242, 258118.724399998784065 ], [ 361377.199699997901917, 258114.938200000673532 ], [ 361378.823100000619888, 258113.684900000691414 ], [ 361382.92119999974966, 258105.907999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003038000", "MAP": "F9-1071-T63", "PARCEL_NAM": "1-43", "ACRE": ".33", "LONGITUDE": -64.90820199, "LATITUDE": 18.35210999, "OBJECTID_1": 5876, "PARCEL_NO_": "103003038000", "Tax_Legal_": "WINTBERG 1-43 GREAT NORTHSIDE", "Name": "PEARLINE V & RONALD L WOODCOCK,SR REVOC FAM TRUST", "Address": "PO Box 9591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34400, "Improved_V": 309800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.652617228, "SHAPE_Area": 1965.50361593 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361219.207900002598763, 258085.2787000015378 ], [ 361189.781999997794628, 258060.208700001239777 ], [ 361160.600100003182888, 258078.1239 ], [ 361165.414599999785423, 258080.907499998807907 ], [ 361168.614699997007847, 258083.888999998569489 ], [ 361174.206699997186661, 258090.056499999016523 ], [ 361178.170000001788139, 258098.110500000417233 ], [ 361179.72860000282526, 258104.4560999982059 ], [ 361180.248599998652935, 258117.114599999040365 ], [ 361205.076399996876717, 258117.083399999886751 ], [ 361209.234999999403954, 258117.078099999576807 ], [ 361214.413800001144409, 258100.565000001341105 ], [ 361219.207900002598763, 258085.2787000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103025300", "MAP": "D9-3807-T84", "PARCEL_NAM": "15M", "ACRE": null, "LONGITUDE": -64.8986429, "LATITUDE": 18.3521282, "OBJECTID_1": 6559, "PARCEL_NO_": "103103025300", "Tax_Legal_": "MANDAHL 15-M GT. NORTHSIDE", "Name": "GRANT, ELLEN (LIFE ESTATE)", "Address": "PO Box 8462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.33899366399999, "SHAPE_Area": 1677.0805808499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362185.744099996984005, 258087.508699998259544 ], [ 362176.962700001895428, 258133.094000000506639 ], [ 362182.630300000309944, 258130.396200001239777 ], [ 362187.468199998140335, 258130.4358000010252 ], [ 362189.879900000989437, 258131.299899999052286 ], [ 362207.733900003135204, 258117.936099998652935 ], [ 362243.68639999628067, 258062.501600001007318 ], [ 362224.226999998092651, 258075.008000001311302 ], [ 362211.271999999880791, 258081.234700001776218 ], [ 362195.102600000798702, 258086.168600000441074 ], [ 362185.744099996984005, 258087.508699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004014400", "MAP": "F9-920-T62", "PARCEL_NAM": "1-14", "ACRE": ".29", "LONGITUDE": -64.90716316, "LATITUDE": 18.35221476, "OBJECTID_1": 5980, "PARCEL_NO_": "103004014400", "Tax_Legal_": "WINTBERGG 1 14 3 GREAT NORTHSIDE QT", "Name": "CALLWOOD, E. & THOMAS, R", "Address": "PO Box 305853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.234601406, "SHAPE_Area": 1213.748543 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361327.291000001132488, 258104.819400001317263 ], [ 361300.912900000810623, 258077.583599999547005 ], [ 361291.94990000128746, 258088.487100001424551 ], [ 361283.006800003349781, 258097.06870000064373 ], [ 361275.703199997544289, 258102.497400000691414 ], [ 361306.949799999594688, 258126.184500001370907 ], [ 361327.291000001132488, 258104.819400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90487992, "LATITUDE": 18.3522128, "OBJECTID_1": 6230, "PARCEL_NO_": "103004042000", "Tax_Legal_": "351 & 365-A WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "GARCIA, MICHAEL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69800, "Improved_V": 405200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.87657705500001, "SHAPE_Area": 2957.1789414999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361518.609999999403954, 258080.209699999541044 ], [ 361507.860100001096725, 258111.574599999934435 ], [ 361507.842100001871586, 258113.685400001704693 ], [ 361506.211499996483326, 258115.782999999821186 ], [ 361506.162900000810623, 258121.482099998742342 ], [ 361507.759400002658367, 258123.395100001245737 ], [ 361515.799099996685982, 258126.205099999904633 ], [ 361524.657799996435642, 258127.544100001454353 ], [ 361534.333499997854233, 258127.6233000010252 ], [ 361566.614799998700619, 258124.510000001639128 ], [ 361576.292300000786781, 258124.378199998289347 ], [ 361580.665500000119209, 258084.306200001388788 ], [ 361518.609999999403954, 258080.209699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103025500", "MAP": "D9-3807-T84", "PARCEL_NAM": "15K", "ACRE": null, "LONGITUDE": -64.89807469, "LATITUDE": 18.35217054, "OBJECTID_1": 6561, "PARCEL_NO_": "103103025500", "Tax_Legal_": "15 K ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "QUESTEL, ASHLEY & DANIELLE", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.341958382, "SHAPE_Area": 2765.6131771099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362285.021200001239777, 258132.500799998641014 ], [ 362300.799699999392033, 258078.801100000739098 ], [ 362239.433600001037121, 258088.43129999935627 ], [ 362218.196199998259544, 258120.343699999153614 ], [ 362243.960400000214577, 258124.987500000745058 ], [ 362285.021200001239777, 258132.500799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103027200", "MAP": "D-5429-T92", "PARCEL_NAM": null, "ACRE": ".61", "LONGITUDE": -64.89758272, "LATITUDE": 18.35196947, "OBJECTID_1": 6576, "PARCEL_NO_": "103103027200", "Tax_Legal_": "14J MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "PICKERING, LEON NELSON, LACIBA JOSEPH & J AVRIL DAVIS", "Address": "6561 Estate Mandhal", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.83079277600001, "SHAPE_Area": 2738.2104738200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362285.021200001239777, 258132.500799998641014 ], [ 362315.765399999916553, 258120.50899999961257 ], [ 362328.853399999439716, 258098.662399999797344 ], [ 362329.677699998021126, 258096.558200001716614 ], [ 362328.898299999535084, 258093.385400000959635 ], [ 362331.354999996721745, 258088.972500000149012 ], [ 362332.983800001442432, 258087.085999999195337 ], [ 362334.607299998402596, 258085.832800000905991 ], [ 362341.093699999153614, 258081.664000000804663 ], [ 362338.955300003290176, 258048.715900000184774 ], [ 362312.433300003409386, 258038.366300001740456 ], [ 362300.799699999392033, 258078.801100000739098 ], [ 362285.021200001239777, 258132.500799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89572963000001, "LATITUDE": 18.35215752, "OBJECTID_1": 6543, "PARCEL_NO_": "103103023300", "Tax_Legal_": "MANDAHL 13B-6 GT. NORTHSIDE", "Name": "FENTON, CLIFFORD & ADELICIA", "Address": "PO Box 11103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70500, "Improved_V": 199700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.89074137099999, "SHAPE_Area": 2397.62811646 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362526.613899998366833, 258075.160799998790026 ], [ 362458.532999999821186, 258115.7668999992311 ], [ 362506.839800000190735, 258124.605999998748302 ], [ 362539.848300002515316, 258130.786699999123812 ], [ 362539.117499999701977, 258121.914799999445677 ], [ 362540.868600003421307, 258105.675000000745058 ], [ 362541.689300000667572, 258103.992899999022484 ], [ 362540.123400002717972, 258098.491700001060963 ], [ 362538.552199997007847, 258093.623700000345707 ], [ 362526.613899998366833, 258075.160799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023300", "MAP": "F9-2590-T70", "PARCEL_NAM": "4-14", "ACRE": "0.90", "LONGITUDE": -64.88522524, "LATITUDE": 18.35203599, "OBJECTID_1": 6804, "PARCEL_NO_": "103104023300", "Tax_Legal_": "TARBOR & HARMONY 4-14&4-15-1 EAST END QTR", "Name": "CRUZ BAY MANAGEMENT CO., LLC", "Address": "PO Box 8336", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 70100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.975107565, "SHAPE_Area": 2413.9783174899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363659.223300002515316, 258118.41950000077486 ], [ 363662.00959999859333, 258117.832899998873472 ], [ 363664.03490000218153, 258118.033900000154972 ], [ 363668.071900002658367, 258117.433699999004602 ], [ 363676.937700003385544, 258117.92850000038743 ], [ 363601.557199999690056, 258071.744600001722574 ], [ 363599.882299996912479, 258076.13459999859333 ], [ 363595.811200000345707, 258080.745299998670816 ], [ 363590.942800000309944, 258084.293999999761581 ], [ 363571.721500001847744, 258094.987300001084805 ], [ 363639.029899999499321, 258128.835999999195337 ], [ 363642.033900000154972, 258130.346700001507998 ], [ 363645.584600001573563, 258127.218600001186132 ], [ 363651.01070000231266, 258122.232500001788139 ], [ 363659.223300002515316, 258118.41950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103033100", "MAP": "D9-5878-T95", "PARCEL_NAM": "9-1", "ACRE": "2.00", "LONGITUDE": -64.89442769, "LATITUDE": 18.35190197, "OBJECTID_1": 6612, "PARCEL_NO_": "103103033100", "Tax_Legal_": "MANDAHL 9C-1 GREAT NORTHSIDE", "Name": "BRIN, ALBERT R. & CELESTE J", "Address": "P.O. BOX 5265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 206400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 383.36691019400001, "SHAPE_Area": 6762.7582352500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362614.844400003552437, 258130.345100000500679 ], [ 362648.923500001430511, 258105.503899998962879 ], [ 362693.137599997222424, 258121.486699998378754 ], [ 362713.388899996876717, 258110.675500001758337 ], [ 362636.576099999248981, 258004.519999999552965 ], [ 362627.834499999880791, 258025.326799999922514 ], [ 362623.601599998772144, 258048.934599999338388 ], [ 362617.856700003147125, 258060.70890000090003 ], [ 362596.525700002908707, 258103.59739999845624 ], [ 362599.700599998235703, 258109.534000001847744 ], [ 362601.304300002753735, 258110.602600000798702 ], [ 362606.869300000369549, 258119.936200000345707 ], [ 362614.844400003552437, 258130.345100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87304375, "LATITUDE": 18.35226181, "OBJECTID_1": 7063, "PARCEL_NO_": "103204010800", "Tax_Legal_": "FRYDENDAHL 19 REM. No.4 EASTEND QTR.", "Name": "DWORKIN, DEBRA JOAN", "Address": "331 W Goshawk Ridge Rd", "City": "Park City", "State": "Utah", "Zip": 84098, "Country": "United States", "Land_Value": 11100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.180971587899997, "SHAPE_Area": 127.996169239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364911.394900001585484, 258128.876299999654293 ], [ 364900.817500002682209, 258139.977699998766184 ], [ 364901.605899997055531, 258142.095100000500679 ], [ 364904.814900003373623, 258144.021200001239777 ], [ 364913.677199997007847, 258144.938099998980761 ], [ 364912.998499996960163, 258129.944899998605251 ], [ 364911.394900001585484, 258128.876299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87298583, "LATITUDE": 18.35169637, "OBJECTID_1": 7082, "PARCEL_NO_": "103204013000", "Tax_Legal_": "FRYDENDAHL 19B No.4 EASTEND QTR.", "Name": "DWORKIN, DEBRA JOAN", "Address": "331 W Goshawk Ridge Rd", "City": "Park City", "State": "Utah", "Zip": 84098, "Country": "United States", "Land_Value": 367300, "Improved_V": 208900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 431.56220848200002, "SHAPE_Area": 6504.2181190600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364960.770599998533726, 258106.904500000178814 ], [ 364924.449799999594688, 258016.259199999272823 ], [ 364905.030000001192093, 258024.121800001710653 ], [ 364883.209200002253056, 258029.853799998760223 ], [ 364829.927799999713898, 258037.017099998891354 ], [ 364839.571199998259544, 258040.895700000226498 ], [ 364854.855200000107288, 258045.24269999936223 ], [ 364891.02419999986887, 258059.048700001090765 ], [ 364889.370200000703335, 258063.890299998223782 ], [ 364891.763999998569489, 258066.865200001746416 ], [ 364911.394900001585484, 258128.876299999654293 ], [ 364912.998499996960163, 258129.944899998605251 ], [ 364913.677199997007847, 258144.938099998980761 ], [ 364918.520400002598763, 258144.344399999827147 ], [ 364927.416799999773502, 258141.250799998641014 ], [ 364931.448399998247623, 258141.2837999984622 ], [ 364938.678199999034405, 258144.509399998933077 ], [ 364941.903499998152256, 258144.535799998790026 ], [ 364943.654600001871586, 258128.295899998396635 ], [ 364946.887000001966953, 258127.478000000119209 ], [ 364951.715899996459484, 258128.572999998927116 ], [ 364952.585199996829033, 258121.191799998283386 ], [ 364951.840000003576279, 258114.008600000292063 ], [ 364952.664300002157688, 258111.904399998486042 ], [ 364955.916500002145767, 258108.764600001275539 ], [ 364960.770599998533726, 258106.904500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90795928, "LATITUDE": 18.35189811, "OBJECTID_1": 5874, "PARCEL_NO_": "103003037800", "Tax_Legal_": "WINTBERG 1-46 GREAT NORTHSIDE QTR", "Name": "ONEAL, EMANUEL R", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32300, "Improved_V": 247900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.46615544299999, "SHAPE_Area": 1428.38216745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361189.781999997794628, 258060.208700001239777 ], [ 361221.804300002753735, 258087.490800000727177 ], [ 361249.800499998033047, 258114.106600001454353 ], [ 361254.672499999403954, 258110.13569999858737 ], [ 361221.874499998986721, 258079.258699998259544 ], [ 361238.191299997270107, 258057.01630000025034 ], [ 361222.173000000417233, 258044.2195999994874 ], [ 361214.176399998366833, 258036.343699999153614 ], [ 361189.781999997794628, 258060.208700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042100", "MAP": "D9-9425-T020", "PARCEL_NAM": "2J REM", "ACRE": "0.50", "LONGITUDE": -64.90570978, "LATITUDE": 18.35187094, "OBJECTID_1": 6231, "PARCEL_NO_": "103004042100", "Tax_Legal_": "PAR 2J REM WINTBERG 3 NORTHSIDE QTR D9-9425-T020", "Name": "GRACE L GREGORY REVOCABLE LIVING TRUST", "Address": "PO Box 7431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010431, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.604990499, "SHAPE_Area": 1546.5028991199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361440.715800002217293, 258098.945999998599291 ], [ 361470.866099998354912, 258099.944400001317263 ], [ 361470.917099997401237, 258093.962600000202656 ], [ 361464.864000000059605, 258047.261399999260902 ], [ 361460.858599998056889, 258029.955299999564886 ], [ 361453.150399997830391, 258011.166600000113249 ], [ 361450.741599999368191, 258002.976599998772144 ], [ 361450.600400000810623, 258017.802600000053644 ], [ 361448.676600001752377, 258054.306099999696016 ], [ 361446.952500000596046, 258067.379799999296665 ], [ 361441.882700003683567, 258094.569299999624491 ], [ 361440.715800002217293, 258098.945999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003017600", "MAP": "F9-2022-T67", "PARCEL_NAM": "1-117", "ACRE": "0.25", "LONGITUDE": -64.90873953000001, "LATITUDE": 18.35212377, "OBJECTID_1": 5699, "PARCEL_NO_": "103003017600", "Tax_Legal_": "1-117 ESTATE WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "GEORGE, IESHA R.", "Address": "REDHOOK PLAZA SUITE 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29200, "Improved_V": 104400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.07323321000001, "SHAPE_Area": 1103.4537142 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361162.925499998033047, 258089.119800001382828 ], [ 361159.725500002503395, 258086.138300001621246 ], [ 361138.854900002479553, 258074.990600001066923 ], [ 361122.778999999165535, 258068.948399998247623 ], [ 361119.201300002634525, 258110.293499998748302 ], [ 361134.513999998569489, 258111.263199999928474 ], [ 361162.925499998033047, 258089.119800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004044100", "MAP": "D9-3816-T87", "PARCEL_NAM": "350-2", "ACRE": ".23", "LONGITUDE": -64.90534373, "LATITUDE": 18.35183397, "OBJECTID_1": 6251, "PARCEL_NO_": "103004044100", "Tax_Legal_": "WINTBERG 350-2 GT. NORTHSIDE", "Name": "REY, JASMINE, EVADNIE & JUDITH", "Address": "16750 SW 248 St", "City": "Homestead", "State": "Florida", "Zip": 33031, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.27166137899999, "SHAPE_Area": 946.96551549399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361510.5320999994874, 258073.699000000953674 ], [ 361512.262000001966953, 258068.125399999320507 ], [ 361515.535800002515316, 258062.4527000002563 ], [ 361515.552000001072884, 258060.552999999374151 ], [ 361517.180799998342991, 258058.666400000452995 ], [ 361519.23759999871254, 258048.868299998342991 ], [ 361502.495200000703335, 258052.104600001126528 ], [ 361474.523599997162819, 258049.240299999713898 ], [ 361477.927400000393391, 258076.607400000095367 ], [ 361510.5320999994874, 258073.699000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003017500", "MAP": "D9-3614-T86", "PARCEL_NAM": "1-117A", "ACRE": "0.26", "LONGITUDE": -64.90898427, "LATITUDE": 18.35208381, "OBJECTID_1": 5698, "PARCEL_NO_": "103003017500", "Tax_Legal_": "WINTBERG 1-117A 3 GR NORTHSIDE QTR", "Name": "ALLEN, HASKELL E. & CHERYL L. K", "Address": "6816 Foghorn Ln", "City": "Grand Prairie", "State": "Texas", "Zip": 75054, "Country": "United States", "Land_Value": 32100, "Improved_V": 148100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.7717789, "SHAPE_Area": 954.94910360200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361122.778999999165535, 258068.948399998247623 ], [ 361113.13740000128746, 258064.85869999974966 ], [ 361106.701300002634525, 258063.117300000041723 ], [ 361102.66610000282526, 258063.506499998271465 ], [ 361099.412100002169609, 258066.857299998402596 ], [ 361099.860600002110004, 258108.868599999696016 ], [ 361119.201300002634525, 258110.293499998748302 ], [ 361122.778999999165535, 258068.948399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9076691, "LATITUDE": 18.35204933, "OBJECTID_1": 5993, "PARCEL_NO_": "103004015700", "Tax_Legal_": "WINTBERG 1-45 GREAT NORTHSIDE QUARTER", "Name": "MEYERS, ISHMAEL A. & GWENDOLYN L. (TRUSTEES)", "Address": "PO Box 7632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35100, "Improved_V": 167100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.23701125599999, "SHAPE_Area": 1458.50661173 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361254.672499999403954, 258110.13569999858737 ], [ 361275.784100003540516, 258092.998799998313189 ], [ 361275.832699999213219, 258087.299699999392033 ], [ 361275.046099998056889, 258084.971200000494719 ], [ 361238.191299997270107, 258057.01630000025034 ], [ 361221.874499998986721, 258079.258699998259544 ], [ 361254.672499999403954, 258110.13569999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87345015, "LATITUDE": 18.35181777, "OBJECTID_1": 7083, "PARCEL_NO_": "103204013100", "Tax_Legal_": "FRYDENDAHL 19A EAST END QTR", "Name": "MASON, KENN S. & ROLDA M.L. (TRUSTEES)", "Address": "PO Box 12035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 287700, "Improved_V": 180600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.96327762499999, "SHAPE_Area": 4615.6865888100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364889.370200000703335, 258063.890299998223782 ], [ 364854.002099998295307, 258050.72410000115633 ], [ 364829.058600001037121, 258044.398299999535084 ], [ 364827.691200003027916, 258110.2483000010252 ], [ 364834.9408999979496, 258111.151999998837709 ], [ 364841.414700001478195, 258108.460700001567602 ], [ 364843.03999999910593, 258106.996399998664856 ], [ 364846.272399999201298, 258106.17850000038743 ], [ 364852.715700000524521, 258107.075599998235703 ], [ 364863.92679999768734, 258116.244300000369549 ], [ 364866.31870000064373, 258119.430300001055002 ], [ 364869.529600001871586, 258121.145399998873472 ], [ 364873.553999997675419, 258122.022700000554323 ], [ 364881.627899996936321, 258120.822200000286102 ], [ 364885.653999999165535, 258121.488400001078844 ], [ 364891.217299997806549, 258131.03319999948144 ], [ 364899.235500000417233, 258136.3761 ], [ 364900.817500002682209, 258139.977699998766184 ], [ 364911.394900001585484, 258128.876299999654293 ], [ 364891.763999998569489, 258066.865200001746416 ], [ 364889.370200000703335, 258063.890299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003017100", "MAP": "F9-2323-T68", "PARCEL_NAM": "1-119", "ACRE": "0.37", "LONGITUDE": -64.90930634, "LATITUDE": 18.35202568, "OBJECTID_1": 5694, "PARCEL_NO_": "103003017100", "Tax_Legal_": "WINTBERG 1 119 GREAT NORTHSIDE QTR", "Name": "BRIN, ROSE", "Address": "PO Box 306192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44200, "Improved_V": 360700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.217187139, "SHAPE_Area": 1569.7341141700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361093.418999999761581, 258107.760400000959635 ], [ 361092.193000003695488, 258062.365299999713898 ], [ 361091.402900002896786, 258060.458999998867512 ], [ 361088.188400000333786, 258059.16609999909997 ], [ 361055.989900000393391, 258052.56980000063777 ], [ 361062.120300002396107, 258090.194600000977516 ], [ 361064.431400001049042, 258102.879099998623133 ], [ 361093.418999999761581, 258107.760400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89595895, "LATITUDE": 18.35185737, "OBJECTID_1": 6544, "PARCEL_NO_": "103103023400", "Tax_Legal_": "MANDAHL 13B-5 GT. NORTHSIDE", "Name": "BONELLI, LEONARD & KIM", "Address": "PO Box 9773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73100, "Improved_V": 398600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.18371820199999, "SHAPE_Area": 2761.6151986700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362506.673699997365475, 258049.455299999564886 ], [ 362470.506499998271465, 258035.438200000673532 ], [ 362468.773400001227856, 258049.567299999296665 ], [ 362464.484700001776218, 258079.718600001186132 ], [ 362458.532999999821186, 258115.7668999992311 ], [ 362526.613899998366833, 258075.160799998790026 ], [ 362517.058600001037121, 258060.939300000667572 ], [ 362513.0253000035882, 258061.117400001734495 ], [ 362507.415299996733665, 258057.060699999332428 ], [ 362506.621500000357628, 258055.57660000026226 ], [ 362506.673699997365475, 258049.455299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004014800", "MAP": "G9-1715-T71", "PARCEL_NAM": "1-123-2", "ACRE": "0.23", "LONGITUDE": -64.90659565, "LATITUDE": 18.35212125, "OBJECTID_1": 5984, "PARCEL_NO_": "103004014800", "Tax_Legal_": "WINTBERG 1-123-2 GR NORTHSIDE QTR", "Name": "DESUZA, RANDA", "Address": "PO BOX 307197", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24000, "Improved_V": 186200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.495822065, "SHAPE_Area": 1102.6880003199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361389.48139999806881, 258093.08500000089407 ], [ 361366.242200002074242, 258076.00730000063777 ], [ 361348.465499997138977, 258080.294799998402596 ], [ 361334.623400002717972, 258096.0135000012815 ], [ 361347.450599998235703, 258104.773299999535084 ], [ 361382.92119999974966, 258105.907999999821186 ], [ 361389.48139999806881, 258093.08500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004014700", "MAP": "F9-920-T62", "PARCEL_NAM": "1-15", "ACRE": null, "LONGITUDE": -64.90695524, "LATITUDE": 18.35199631, "OBJECTID_1": 5983, "PARCEL_NO_": "103004014700", "Tax_Legal_": "WINTBERG ESTATE 1-15 No.3 GREAT NORTHSIDE QTR.", "Name": "O'BRYAN, ELSA REVOCABLE LIVING", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 268700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.226514898, "SHAPE_Area": 1231.2779528399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361348.465499997138977, 258080.294799998402596 ], [ 361322.897299997508526, 258052.643399998545647 ], [ 361300.912900000810623, 258077.583599999547005 ], [ 361327.291000001132488, 258104.819400001317263 ], [ 361334.623400002717972, 258096.0135000012815 ], [ 361348.465499997138977, 258080.294799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87443503, "LATITUDE": 18.35190252, "OBJECTID_1": 7062, "PARCEL_NO_": "103204010700", "Tax_Legal_": "FRYDENDAHL 18A EAST END QUARTER", "Name": "KOBAN, STEPHEN D", "Address": "874 H ewitt Dr", "City": "Port Orange", "State": "Florida", "Zip": 32127, "Country": "United States", "Land_Value": 266600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.957790007, "SHAPE_Area": 3794.94363178 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364802.643399998545647, 258116.16499999910593 ], [ 364762.84570000320673, 258055.044300001114607 ], [ 364736.179799996316433, 258061.581000000238419 ], [ 364729.731100000441074, 258061.317200001329184 ], [ 364734.855599999427795, 258122.365100000053644 ], [ 364751.750399999320507, 258126.9364 ], [ 364779.138099998235703, 258130.326900001615286 ], [ 364788.795800000429153, 258132.5168999992311 ], [ 364794.43639999628067, 258132.985300000756979 ], [ 364796.860799998044968, 258132.371800001710653 ], [ 364799.301299996674061, 258129.85869999974966 ], [ 364800.15429999679327, 258124.377199999988079 ], [ 364799.360600002110004, 258122.893100000917912 ], [ 364799.407399997115135, 258117.405000001192093 ], [ 364802.643399998545647, 258116.16499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103103029900", "MAP": "D9-5429-T92", "PARCEL_NAM": "14-Q", "ACRE": ".82", "LONGITUDE": -64.89685931, "LATITUDE": 18.35181479, "OBJECTID_1": 6581, "PARCEL_NO_": "103103029900", "Tax_Legal_": "14-Q ESTATE MANDAHL R.O.W. #1 GREAT NORTHSIDE QTR", "Name": "CALVIN JONES and NIKKORI MATTHEW", "Address": "PO Box 10437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 659.48553307700001, "SHAPE_Area": 1486.75869814 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362411.842399999499321, 258106.518800001591444 ], [ 362409.452299997210503, 258103.121700000017881 ], [ 362407.882799997925758, 258098.042599998414516 ], [ 362404.657499998807907, 258098.016199998557568 ], [ 362402.989200003445148, 258104.546500001102686 ], [ 362400.561200000345707, 258105.582100000232458 ], [ 362361.089699998497963, 258100.826099999248981 ], [ 362338.523699998855591, 258099.374800000339746 ], [ 362333.7128000035882, 258096.168999999761581 ], [ 362333.747000001370907, 258092.158500000834465 ], [ 362341.048799999058247, 258086.940999999642372 ], [ 362358.870399996638298, 258077.376499999314547 ], [ 362372.640600003302097, 258070.100900001823902 ], [ 362386.39469999819994, 258064.725099999457598 ], [ 362399.326200000941753, 258061.242300000041723 ], [ 362402.529799997806549, 258060.3761 ], [ 362406.964000001549721, 258059.177099999040365 ], [ 362411.449699997901917, 258057.964099999517202 ], [ 362414.874600000679493, 258056.849700000137091 ], [ 362418.347499996423721, 258055.7195999994874 ], [ 362421.547100000083447, 258054.67850000038743 ], [ 362424.782600000500679, 258053.625700000673532 ], [ 362427.578900001943111, 258052.436599999666214 ], [ 362430.989200003445148, 258050.722300000488758 ], [ 362433.455099999904633, 258049.482599999755621 ], [ 362436.025200001895428, 258048.190600000321865 ], [ 362438.804999999701977, 258046.793099999427795 ], [ 362442.005599997937679, 258045.184099998325109 ], [ 362444.942800000309944, 258043.707600001245737 ], [ 362446.250600002706051, 258043.05009999871254 ], [ 362447.379900000989437, 258041.790500000119209 ], [ 362448.692900002002716, 258040.325899999588728 ], [ 362448.708999998867512, 258038.43019999936223 ], [ 362448.720299996435642, 258037.115200001746416 ], [ 362448.73030000180006, 258035.936000000685453 ], [ 362448.743299998342991, 258034.415699999779463 ], [ 362447.139600001275539, 258033.347100000828505 ], [ 362445.989900000393391, 258032.254200000315905 ], [ 362444.637900002300739, 258030.968899998813868 ], [ 362443.29280000180006, 258029.690000001341105 ], [ 362441.540399998426437, 258028.024000000208616 ], [ 362437.721900001168251, 258026.576999999582767 ], [ 362434.345600001513958, 258025.297499999403954 ], [ 362431.586800001561642, 258024.252099998295307 ], [ 362429.057599999010563, 258023.293600000441074 ], [ 362426.342299997806549, 258022.264699999243021 ], [ 362422.578100003302097, 258020.838199999183416 ], [ 362418.984300002455711, 258019.476300001144409 ], [ 362413.898100003600121, 258017.548900000751019 ], [ 362408.610100001096725, 258015.545000001788139 ], [ 362404.758900001645088, 258014.085499998182058 ], [ 362401.366899996995926, 258012.80009999871254 ], [ 362397.115800000727177, 258011.189100001007318 ], [ 362394.35700000077486, 258010.143699999898672 ], [ 362390.952899999916553, 258008.853700000792742 ], [ 362388.839400000870228, 258008.052700001746416 ], [ 362386.883799999952316, 258007.311599999666214 ], [ 362385.287299998104572, 258005.398699998855591 ], [ 362385.646899998188019, 258004.123399998992682 ], [ 362386.11879999935627, 258002.450199998915195 ], [ 362369.951200000941753, 258007.173000000417233 ], [ 362373.366099998354912, 258007.32880000025034 ], [ 362375.593599997460842, 258007.430300001055002 ], [ 362377.961300000548363, 258008.343699999153614 ], [ 362380.555500000715256, 258009.344300001859665 ], [ 362384.406800001859665, 258010.829900000244379 ], [ 362388.680900000035763, 258012.47859999909997 ], [ 362392.4358000010252, 258013.927000001072884 ], [ 362396.754000000655651, 258015.592599999159575 ], [ 362399.708999998867512, 258016.732500001788139 ], [ 362402.391400001943111, 258017.767200000584126 ], [ 362406.53320000320673, 258019.364799998700619 ], [ 362410.67509999871254, 258020.962499998509884 ], [ 362413.972900003194809, 258022.234600000083447 ], [ 362417.429099999368191, 258023.567699998617172 ], [ 362421.210199996829033, 258025.026200000196695 ], [ 362425.159400001168251, 258026.549600001424551 ], [ 362429.688199996948242, 258028.296500001102686 ], [ 362432.422799997031689, 258029.351300001144409 ], [ 362435.403899997472763, 258030.501200001686811 ], [ 362437.109999999403954, 258031.159299999475479 ], [ 362438.473200000822544, 258031.685100000351667 ], [ 362439.891800001263618, 258032.232299998402596 ], [ 362442.413999997079372, 258033.979899998754263 ], [ 362443.899999998509884, 258035.009399998933077 ], [ 362442.253200002014637, 258039.006700001657009 ], [ 362438.3766999989748, 258041.121399998664856 ], [ 362434.660700000822544, 258043.148499999195337 ], [ 362430.944700002670288, 258045.175700001418591 ], [ 362426.612499997019768, 258047.539000000804663 ], [ 362424.027800001204014, 258048.949000000953674 ], [ 362422.810000002384186, 258049.613299999386072 ], [ 362419.568599998950958, 258050.734999999403954 ], [ 362413.923000000417233, 258052.6886 ], [ 362411.487499997019768, 258053.531399998813868 ], [ 362405.476000003516674, 258054.948100000619888 ], [ 362403.339400000870228, 258055.45160000026226 ], [ 362399.367600001394749, 258056.387499999254942 ], [ 362383.201800003647804, 258060.899300001561642 ], [ 362369.442299999296665, 258066.908399999141693 ], [ 362341.093699999153614, 258081.664000000804663 ], [ 362334.607299998402596, 258085.832800000905991 ], [ 362332.983800001442432, 258087.085999999195337 ], [ 362331.354999996721745, 258088.972500000149012 ], [ 362328.898299999535084, 258093.385400000959635 ], [ 362329.677699998021126, 258096.558200001716614 ], [ 362328.853399999439716, 258098.662399999797344 ], [ 362335.273299999535084, 258102.30350000038743 ], [ 362341.711199998855591, 258103.83390000090003 ], [ 362356.212300002574921, 258105.43019999936223 ], [ 362397.299999997019768, 258109.777300000190735 ], [ 362429.525600001215935, 258113.207400001585484 ], [ 362429.565099999308586, 258108.563700001686811 ], [ 362411.842399999499321, 258106.518800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023400", "MAP": "D9-3784-T86", "PARCEL_NAM": "4-15-4", "ACRE": "1.00", "LONGITUDE": -64.88481796000001, "LATITUDE": 18.35167305, "OBJECTID_1": 6805, "PARCEL_NO_": "103104023400", "Tax_Legal_": "TABOR & HARMONY 4-15-4 No.5&6 EASTEND QTR.", "Name": "HAMED, WAHEED", "Address": "PO Box 503358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 92000, "Improved_V": 1888600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.71777828900002, "SHAPE_Area": 8043.3866731099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363658.318199999630451, 258015.436000000685453 ], [ 363631.191100001335144, 257997.864000000059605 ], [ 363618.031199999153614, 258028.153799999505281 ], [ 363613.076499998569489, 258041.834300000220537 ], [ 363608.954999998211861, 258052.355200000107288 ], [ 363604.948399998247623, 258062.856300000101328 ], [ 363676.937700003385544, 258117.92850000038743 ], [ 363681.766599997878075, 258119.023400001227856 ], [ 363689.025200001895428, 258118.871800001710653 ], [ 363696.305399999022484, 258116.187100000679493 ], [ 363701.989100001752377, 258111.589600000530481 ], [ 363710.147600002586842, 258100.468400001525879 ], [ 363727.768399998545647, 258061.726500000804663 ], [ 363657.492600001394749, 258016.815999999642372 ], [ 363658.318199999630451, 258015.436000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103032700", "MAP": "D9-5878-T95", "PARCEL_NAM": "9C", "ACRE": "1.42", "LONGITUDE": -64.89402752, "LATITUDE": 18.35142714, "OBJECTID_1": 6608, "PARCEL_NO_": "103103032700", "Tax_Legal_": "9C REM MANDAHL NO.1 GREAT NORTHSIDE QTR", "Name": "COMISSIONG, SIDNEY J. & THELMA", "Address": "PO Box 306813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 154900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 410.9399164, "SHAPE_Area": 8469.27254765 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362726.188299998641014, 258021.310699999332428 ], [ 362663.230599999427795, 257940.545800000429153 ], [ 362641.003499999642372, 257993.981699999421835 ], [ 362636.576099999248981, 258004.519999999552965 ], [ 362713.388899996876717, 258110.675500001758337 ], [ 362750.174699999392033, 258052.081500001251698 ], [ 362726.188299998641014, 258021.310699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103027100", "MAP": "D-5429-T92", "PARCEL_NAM": null, "ACRE": ".51", "LONGITUDE": -64.89696185, "LATITUDE": 18.35197333, "OBJECTID_1": 6575, "PARCEL_NO_": "103103027100", "Tax_Legal_": "MANDAHL 14-K GT. NORTHSIDE QTR.", "Name": "LETTSOME, EGBERT, KEWIN & KEVIN", "Address": "P.O. BOX 3430", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63500, "Improved_V": 399800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.123985678, "SHAPE_Area": 2296.35334758 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362412.895099997520447, 258077.607599999755621 ], [ 362411.449699997901917, 258057.964099999517202 ], [ 362399.326200000941753, 258061.242300000041723 ], [ 362386.39469999819994, 258064.725099999457598 ], [ 362372.640600003302097, 258070.100900001823902 ], [ 362358.870399996638298, 258077.376499999314547 ], [ 362341.048799999058247, 258086.940999999642372 ], [ 362333.747000001370907, 258092.158500000834465 ], [ 362333.7128000035882, 258096.168999999761581 ], [ 362338.523699998855591, 258099.374800000339746 ], [ 362361.089699998497963, 258100.826099999248981 ], [ 362400.561200000345707, 258105.582100000232458 ], [ 362402.989200003445148, 258104.546500001102686 ], [ 362404.657499998807907, 258098.016199998557568 ], [ 362407.882799997925758, 258098.042599998414516 ], [ 362412.020400002598763, 258085.622000001370907 ], [ 362412.877099998295307, 258079.718400001525879 ], [ 362412.895099997520447, 258077.607599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87496756, "LATITUDE": 18.35181955, "OBJECTID_1": 7054, "PARCEL_NO_": "103203025500", "Tax_Legal_": "FRYDENDAHL ESTATE 18-B No.4 RED HOOK QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 177000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.69007464500001, "SHAPE_Area": 3093.5183718200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364729.731100000441074, 258061.317200001329184 ], [ 364705.579499997198582, 258056.686500001698732 ], [ 364693.524400003254414, 258051.943799998611212 ], [ 364664.898800000548363, 258099.205600000917912 ], [ 364669.736699998378754, 258099.245200000703335 ], [ 364678.571999996900558, 258103.328299999237061 ], [ 364689.041500002145767, 258104.891600001603365 ], [ 364695.457800000905991, 258108.954900000244379 ], [ 364697.844400003552437, 258112.774099998176098 ], [ 364701.847199998795986, 258116.184399999678135 ], [ 364705.862499997019768, 258118.11710000038147 ], [ 364711.499499998986721, 258119.007599998265505 ], [ 364721.987000003457069, 258118.460099998861551 ], [ 364734.855599999427795, 258122.365100000053644 ], [ 364729.731100000441074, 258061.317200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103032800", "MAP": "D9-5880-T95", "PARCEL_NAM": "8-2", "ACRE": ".68", "LONGITUDE": -64.8950337, "LATITUDE": 18.35172324, "OBJECTID_1": 6609, "PARCEL_NO_": "103103032800", "Tax_Legal_": "MANDAHL 8-2 GT. NORTHSIDE QTR.", "Name": "BRIN, CELESTE & ALBERT", "Address": "P.O. BOX 5265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81900, "Improved_V": 400600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.27165295, "SHAPE_Area": 2090.2314743799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362617.856700003147125, 258060.70890000090003 ], [ 362588.112999998033047, 258049.910700000822544 ], [ 362580.177599996328354, 258034.858199998736382 ], [ 362568.242899999022484, 258015.973200000822544 ], [ 362552.824100002646446, 258027.457100000232458 ], [ 362564.713799998164177, 258051.619100000709295 ], [ 362566.313799999654293, 258053.1097999997437 ], [ 362571.067199997603893, 258063.070099998265505 ], [ 362574.256499998271465, 258067.31810000166297 ], [ 362575.039399996399879, 258070.06870000064373 ], [ 362596.525700002908707, 258103.59739999845624 ], [ 362617.856700003147125, 258060.70890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004015000", "MAP": "A9-81-T68", "PARCEL_NAM": "1-123-1", "ACRE": "0.26", "LONGITUDE": -64.90640803, "LATITUDE": 18.35185798, "OBJECTID_1": 5986, "PARCEL_NO_": "103004015000", "Tax_Legal_": "WINTBERG 1-123-1 GR NORTHSIDE QTR", "Name": "LECUYER, FRANCIS", "Address": "PO Box 305958", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27100, "Improved_V": 289400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.82250492899999, "SHAPE_Area": 1089.66825698 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361389.48139999806881, 258093.08500000089407 ], [ 361393.663999997079372, 258075.38740000128746 ], [ 361394.797600001096725, 258036.977600000798702 ], [ 361395.661399997770786, 258030.229699999094009 ], [ 361389.972300000488758, 258035.460499998182058 ], [ 361368.016599997878075, 258057.023400001227856 ], [ 361366.242200002074242, 258076.00730000063777 ], [ 361389.48139999806881, 258093.08500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90604808000001, "LATITUDE": 18.35191524, "OBJECTID_1": 5987, "PARCEL_NO_": "103004015100", "Tax_Legal_": "WINTBERG 137-4 3 GR NORTHSIDE", "Name": "GEORGE, WILMOTH O", "Address": "FLUSHING", "City": "Fresh Meadows", "State": "New York", "Zip": 11366, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.41126892599999, "SHAPE_Area": 1527.69968965 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361434.64750000089407, 258091.977000001817942 ], [ 361438.014799997210503, 258075.328200001269579 ], [ 361441.473800003528595, 258047.914299998432398 ], [ 361403.55009999871254, 258050.770300000905991 ], [ 361404.237800002098083, 258064.708099998533726 ], [ 361402.509999997913837, 258078.203999999910593 ], [ 361399.162500001490116, 258092.530999999493361 ], [ 361434.64750000089407, 258091.977000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90322833, "LATITUDE": 18.35187335, "OBJECTID_1": 6240, "PARCEL_NO_": "103004043000", "Tax_Legal_": "WINTBERG 358 GR NORTHSIDE QTR", "Name": "FLORENCE V RICHARDSON REVOCABLE TRUST", "Address": "PO Box 1327", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 77700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.804939658, "SHAPE_Area": 2157.6328244900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361740.621100001037121, 258049.729400001466274 ], [ 361736.585900001227856, 258050.118599999696016 ], [ 361734.172399997711182, 258049.465500000864267 ], [ 361729.368699997663498, 258045.415500000119209 ], [ 361718.071299999952316, 258046.378499999642372 ], [ 361696.327899999916553, 258043.034099999815226 ], [ 361690.340199999511242, 258083.304000001400709 ], [ 361708.050300002098083, 258086.826400000602007 ], [ 361746.68860000371933, 258094.741999998688698 ], [ 361740.621100001037121, 258049.729400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90270633, "LATITUDE": 18.35183782, "OBJECTID_1": 6239, "PARCEL_NO_": "103004042900", "Tax_Legal_": "WINTBERG 359 GR NORTHSIDE", "Name": "TYRRELL REVOCABLE TRUST", "Address": "6325 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101500, "Improved_V": 351900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.266218847, "SHAPE_Area": 3307.8955507599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361798.016699999570847, 258032.889499999582767 ], [ 361747.150700002908707, 258040.494699999690056 ], [ 361744.67059999704361, 258047.651599999517202 ], [ 361740.621100001037121, 258049.729400001466274 ], [ 361746.68860000371933, 258094.741999998688698 ], [ 361808.830399997532368, 258088.706700000911951 ], [ 361798.016699999570847, 258032.889499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004031100", "MAP": "G9-669-T63", "PARCEL_NAM": "4C", "ACRE": "1.00", "LONGITUDE": -64.89976095, "LATITUDE": 18.35189346, "OBJECTID_1": 6137, "PARCEL_NO_": "103004031100", "Tax_Legal_": "4C&4C-1 ESTATE MANDAHL GR NORTHSIDE QTR", "Name": "AUBIN, RAYMOND", "Address": "PO Box 1664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 98900, "Improved_V": 279000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.89595387, "SHAPE_Area": 1386.93649065 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362073.635300002992153, 258051.610599998384714 ], [ 362068.81360000371933, 258049.671300001442432 ], [ 362062.086199998855591, 258082.124699998646975 ], [ 362100.659800000488758, 258097.63910000026226 ], [ 362103.172200001776218, 258086.682799998670816 ], [ 362107.295500002801418, 258075.950800001621246 ], [ 362108.992600001394749, 258066.043299999088049 ], [ 362073.635300002992153, 258051.610599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87402738, "LATITUDE": 18.35170876, "OBJECTID_1": 7084, "PARCEL_NO_": "103204013200", "Tax_Legal_": "FRYDENDAHL 18A-2 EAST END QTR", "Name": "TRUST AGREEMENT OF GIGI CAINES & LEONARD GUMBS SR", "Address": "PO Box 6756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 207200, "Improved_V": 69000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.601093451, "SHAPE_Area": 3093.7761986599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364829.058600001037121, 258044.398299999535084 ], [ 364808.117799997329712, 258041.482599999755621 ], [ 364778.205200001597404, 258050.52589999884367 ], [ 364783.800800003111362, 258056.271299999207258 ], [ 364800.67400000244379, 258063.375500001013279 ], [ 364799.032600000500679, 258066.739500001072884 ], [ 364762.84570000320673, 258055.044300001114607 ], [ 364802.643399998545647, 258116.16499999910593 ], [ 364816.359700001776218, 258115.221799999475479 ], [ 364824.462399996817112, 258110.644000001251698 ], [ 364827.691200003027916, 258110.2483000010252 ], [ 364829.058600001037121, 258044.398299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90732863, "LATITUDE": 18.35182771, "OBJECTID_1": 6075, "PARCEL_NO_": "103004020200", "Tax_Legal_": "WINTBERG 1-55 3 GREAT NORTHSIDE QTR.", "Name": "WEBSTER, ROSS & YVETTE", "Address": "PO Box 38", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33400, "Improved_V": 206200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.02259454700001, "SHAPE_Area": 1260.8245488800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361288.358900003135204, 258036.739799998700619 ], [ 361285.207000002264977, 258034.5608000010252 ], [ 361260.690800003707409, 258066.277499999850988 ], [ 361279.912799999117851, 258081.633600000292063 ], [ 361284.741700001060963, 258082.728500001132488 ], [ 361287.977700002491474, 258081.488499999046326 ], [ 361291.231700003147125, 258078.137600000947714 ], [ 361292.054200001060963, 258076.244500000029802 ], [ 361310.788199998438358, 258054.232999999076128 ], [ 361288.358900003135204, 258036.739799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90479165000001, "LATITUDE": 18.35181733, "OBJECTID_1": 6233, "PARCEL_NO_": "103004042300", "Tax_Legal_": "352 WINTBERG No.3 GREAT NORTHSIDE QTR", "Name": "PRINS, ANDREW A. & KATIE BIERZONSKI", "Address": "PO Box 600148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53800, "Improved_V": 210700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.466947834, "SHAPE_Area": 2534.8331751800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361582.429200001060963, 258066.588700000196695 ], [ 361581.90820000320673, 258039.423799999058247 ], [ 361531.082400001585484, 258035.982099998742342 ], [ 361527.698899999260902, 258054.530699998140335 ], [ 361525.206200003623962, 258063.165100000798702 ], [ 361523.577399998903275, 258065.051600001752377 ], [ 361520.287399999797344, 258072.624000001698732 ], [ 361518.609999999403954, 258080.209699999541044 ], [ 361580.665500000119209, 258084.306200001388788 ], [ 361582.429200001060963, 258066.588700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103025600", "MAP": "D9-3807-T84", "PARCEL_NAM": "15Z", "ACRE": null, "LONGITUDE": -64.89789667, "LATITUDE": 18.35175503, "OBJECTID_1": 6562, "PARCEL_NO_": "103103025600", "Tax_Legal_": "MANDAHL 15-L GT. NORTHSIDE QTR.", "Name": "LAUDAT, NYDIA G. & DELBERT", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63500, "Improved_V": 254800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.958954009, "SHAPE_Area": 2354.8184898899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362312.433300003409386, 258038.366300001740456 ], [ 362316.590700000524521, 258023.623799998313189 ], [ 362295.556500002741814, 258031.684300001710653 ], [ 362264.760200001299381, 258049.797400001436472 ], [ 362239.433600001037121, 258088.43129999935627 ], [ 362300.799699999392033, 258078.801100000739098 ], [ 362312.433300003409386, 258038.366300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89545537, "LATITUDE": 18.35167116, "OBJECTID_1": 6546, "PARCEL_NO_": "103103023600", "Tax_Legal_": "MANDAHL 13B-3 GT. NORTHSIDE", "Name": "BONELLI, LEONARD & KIM", "Address": "PO Box 9773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.166841404, "SHAPE_Area": 1919.2580477700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362543.415200002491474, 258090.708200000226498 ], [ 362566.204099997878075, 258065.985599998384714 ], [ 362562.2246999964118, 258059.831399999558926 ], [ 362544.773599997162819, 258025.913600001484156 ], [ 362537.577899999916553, 258018.677499998360872 ], [ 362529.548900000751019, 258014.600999999791384 ], [ 362518.806100003421307, 258045.121599998325109 ], [ 362522.000799998641014, 258048.736400000751019 ], [ 362521.126199997961521, 258056.750799998641014 ], [ 362543.415200002491474, 258090.708200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90369901, "LATITUDE": 18.35179965, "OBJECTID_1": 6241, "PARCEL_NO_": "103004043100", "Tax_Legal_": "357 WINTBERG GREAT NORTHSIDE QTR.", "Name": "PETERS, VALERIE F", "Address": "PO BOX 9407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43900, "Improved_V": 13600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.89627097799999, "SHAPE_Area": 1933.4717391300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361696.327899999916553, 258043.034099999815226 ], [ 361668.141099996864796, 258038.792599998414516 ], [ 361657.685999996960163, 258035.540699999779463 ], [ 361633.993600003421307, 258071.654800001531839 ], [ 361667.80120000243187, 258078.686500001698732 ], [ 361690.340199999511242, 258083.304000001400709 ], [ 361696.327899999916553, 258043.034099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90674335, "LATITUDE": 18.35180041, "OBJECTID_1": 5985, "PARCEL_NO_": "103004014900", "Tax_Legal_": "WINTBERG 1-16&1-123 GR NORTHSIDE QTR", "Name": "HENNESSEY, ISELYNE M & JOHN J", "Address": "5761 Exeter Ct", "City": "Alexandria", "State": "Virginia", "Zip": 22311, "Country": "United States", "Land_Value": 34400, "Improved_V": 293500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.54770944500001, "SHAPE_Area": 1275.10870568 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361368.016599997878075, 258057.023400001227856 ], [ 361341.633100003004074, 258030.420800000429153 ], [ 361322.897299997508526, 258052.643399998545647 ], [ 361348.465499997138977, 258080.294799998402596 ], [ 361366.242200002074242, 258076.00730000063777 ], [ 361368.016599997878075, 258057.023400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90855645000001, "LATITUDE": 18.35181192, "OBJECTID_1": 5870, "PARCEL_NO_": "103003037400", "Tax_Legal_": "WINTBERG ESTATE 1-19 3 GREAT NORTHSIDE", "Name": "ALFONSO M LOPEZ& THERESE R LOPEZ FAMILY TRUST AGRE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 52100, "Improved_V": 221100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.09596387100001, "SHAPE_Area": 1410.50852164 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361164.906800001859665, 258045.861800000071526 ], [ 361140.836099997162819, 258031.732700001448393 ], [ 361129.279799997806549, 258063.090999998152256 ], [ 361142.942199997603893, 258068.480200000107288 ], [ 361160.600100003182888, 258078.1239 ], [ 361189.781999997794628, 258060.208700001239777 ], [ 361164.906800001859665, 258045.861800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204011300", "MAP": "F9-138-T57", "PARCEL_NAM": "20", "ACRE": null, "LONGITUDE": -64.87234791, "LATITUDE": 18.35139763, "OBJECTID_1": 7068, "PARCEL_NO_": "103204011300", "Tax_Legal_": "FRYDENDAHL 2O EAST END QUARTER", "Name": "WHITE, E. MARCUS & ZIMMERMANN", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 358100, "Improved_V": 176500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 375.91997647400001, "SHAPE_Area": 8423.8162086200009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365043.293200001120567, 258074.860399998724461 ], [ 365007.7787000015378, 257984.221700001507998 ], [ 364968.962399996817112, 257997.202899999916553 ], [ 364942.260600000619888, 258007.961199998855591 ], [ 364924.449799999594688, 258016.259199999272823 ], [ 364960.770599998533726, 258106.904500000178814 ], [ 364993.175899997353554, 258089.226700000464916 ], [ 365003.726300001144409, 258081.291499998420477 ], [ 365014.231700003147125, 258078.633299998939037 ], [ 365026.321000002324581, 258079.365499999374151 ], [ 365031.984999999403954, 258077.089899998158216 ], [ 365035.231799997389317, 258074.583299998193979 ], [ 365038.464299999177456, 258073.765399999916553 ], [ 365043.293200001120567, 258074.860399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87577013000001, "LATITUDE": 18.35126391, "OBJECTID_1": 7001, "PARCEL_NO_": "103203020200", "Tax_Legal_": "FRYDENDAHL 18 No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 397100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 498.35883388500002, "SHAPE_Area": 12645.816487300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364693.524400003254414, 258051.943799998611212 ], [ 364687.901799999177456, 258049.364700000733137 ], [ 364683.098099999129772, 258045.314599998295307 ], [ 364670.312100000679493, 258031.69990000128746 ], [ 364659.160400003194809, 258015.565600000321865 ], [ 364657.572999998927116, 258012.597300000488758 ], [ 364656.791799999773502, 258009.635499998927116 ], [ 364655.191799998283386, 258008.144799999892712 ], [ 364652.815999999642372, 258003.059099998325109 ], [ 364643.402800001204014, 257972.162399999797344 ], [ 364636.304200001060963, 257953.528099998831749 ], [ 364632.330200001597404, 257946.740600001066923 ], [ 364631.550899997353554, 257943.567800000309944 ], [ 364629.950800001621246, 257942.076999999582767 ], [ 364628.376000002026558, 257937.63120000064373 ], [ 364620.420699998736382, 257924.900400001555681 ], [ 364564.132399998605251, 258001.066700000315905 ], [ 364562.501800000667572, 258003.164299998432398 ], [ 364555.831900000572205, 258028.863099999725819 ], [ 364556.614900000393391, 258031.613800000399351 ], [ 364558.218500003218651, 258032.682300001382828 ], [ 364564.65820000320673, 258034.001600001007318 ], [ 364566.216899998486042, 258040.347199998795986 ], [ 364569.442199997603893, 258040.373599998652935 ], [ 364571.045800000429153, 258041.442200001329184 ], [ 364567.768399998545647, 258047.537099998444319 ], [ 364566.148599997162819, 258048.368200000375509 ], [ 364566.895599998533726, 258055.340399999171495 ], [ 364570.090199999511242, 258058.955099999904633 ], [ 364570.878600001335144, 258061.072500001639128 ], [ 364573.290299996733665, 258061.936599999666214 ], [ 364577.327299997210503, 258061.336399998515844 ], [ 364578.932700000703335, 258062.193900000303984 ], [ 364584.524700000882149, 258068.361400000751019 ], [ 364592.539300002157688, 258074.126499999314547 ], [ 364597.371799997985363, 258074.799300000071526 ], [ 364599.814099997282028, 258072.075100000947714 ], [ 364603.042900003492832, 258071.679299999028444 ], [ 364604.650200001895428, 258072.325800001621246 ], [ 364609.457500003278255, 258075.953699998557568 ], [ 364614.279200002551079, 258077.89299999922514 ], [ 364613.417099997401237, 258084.429900001734495 ], [ 364617.418099999427795, 258088.051199998706579 ], [ 364624.648000001907349, 258091.276799999177456 ], [ 364627.875, 258091.092099998146296 ], [ 364629.503799997270107, 258089.205600000917912 ], [ 364629.520000003278255, 258087.305900000035763 ], [ 364633.548000000417233, 258087.760999999940395 ], [ 364635.148000001907349, 258089.251800000667572 ], [ 364641.505000002682209, 258100.280699998140335 ], [ 364644.706900000572205, 258103.051100000739098 ], [ 364649.539300002157688, 258103.723900001496077 ], [ 364664.898800000548363, 258099.205600000917912 ], [ 364693.524400003254414, 258051.943799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103030300", "MAP": "A9-123-T69", "PARCEL_NAM": "7D", "ACRE": "1.91", "LONGITUDE": -64.89895044, "LATITUDE": 18.35148954, "OBJECTID_1": 6584, "PARCEL_NO_": "103103030300", "Tax_Legal_": "MANDAHL 7D GR NORTHSIDE", "Name": "QUERRARD, LOUIS THOMAS P", "Address": "7472 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 148000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.01213076400001, "SHAPE_Area": 5852.0637240200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362174.558499999344349, 257942.034699998795986 ], [ 362127.634900003671646, 258054.796799998730421 ], [ 362132.474600002169609, 258054.625300001353025 ], [ 362137.296300001442432, 258056.564599998295307 ], [ 362148.503700003027916, 258066.155499998480082 ], [ 362151.696599997580051, 258069.9814000017941 ], [ 362153.303800001740456, 258070.62779999896884 ], [ 362157.295800000429153, 258075.304499998688698 ], [ 362163.714000001549721, 258079.156700000166893 ], [ 362171.755500003695488, 258081.755699999630451 ], [ 362181.427699998021126, 258082.256999999284744 ], [ 362200.813299998641014, 258078.404899999499321 ], [ 362210.52139999717474, 258074.68470000103116 ], [ 362174.558499999344349, 257942.034699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026500", "MAP": "D-5429-T92", "PARCEL_NAM": null, "ACRE": ".54", "LONGITUDE": -64.89728697, "LATITUDE": 18.35158066, "OBJECTID_1": 6570, "PARCEL_NO_": "103103026500", "Tax_Legal_": "MANDAHL ESTATE 14-I GREAT NORTHSIDE", "Name": "SHILLINGFORD, GLEN E. & CYNTHIA", "Address": "PO Box 502834", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 66100, "Improved_V": 365400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.72839600699999, "SHAPE_Area": 2319.84232587 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362369.442299999296665, 258066.908399999141693 ], [ 362365.098999999463558, 258008.82209999859333 ], [ 362316.590700000524521, 258023.623799998313189 ], [ 362312.433300003409386, 258038.366300001740456 ], [ 362338.955300003290176, 258048.715900000184774 ], [ 362341.093699999153614, 258081.664000000804663 ], [ 362369.442299999296665, 258066.908399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103027500", "MAP": "D-5429-T92", "PARCEL_NAM": null, "ACRE": ".50", "LONGITUDE": -64.89638309, "LATITUDE": 18.35176587, "OBJECTID_1": 6579, "PARCEL_NO_": "103103027500", "Tax_Legal_": "MANDAHL 14-L GT. NORTHSIDE QTR.", "Name": "JACKSON, DAMIAN & DIONNE V. CARTY", "Address": "319E Walnut Ln", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19144, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.53339394, "SHAPE_Area": 1745.6477931899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362468.773400001227856, 258049.567299999296665 ], [ 362448.743299998342991, 258034.415699999779463 ], [ 362448.692900002002716, 258040.325899999588728 ], [ 362446.250600002706051, 258043.05009999871254 ], [ 362426.004699997603893, 258053.228000000119209 ], [ 362411.449699997901917, 258057.964099999517202 ], [ 362412.895099997520447, 258077.607599999755621 ], [ 362441.900799997150898, 258080.378100000321865 ], [ 362464.484700001776218, 258079.718600001186132 ], [ 362468.773400001227856, 258049.567299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004038800", "MAP": "D9-3349-T86", "PARCEL_NAM": "3A-1", "ACRE": null, "LONGITUDE": -64.90089913, "LATITUDE": 18.35161935, "OBJECTID_1": 6204, "PARCEL_NO_": "103004038800", "Tax_Legal_": "MANDAHL 3A-1 GT. NORTHSIDE", "Name": "FLAHARTY, LEONARD", "Address": "P.O. BOX 2384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67100, "Improved_V": 291500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.02023430700001, "SHAPE_Area": 1887.25727106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361960.258199997246265, 258013.952399998903275 ], [ 361953.021099999547005, 258011.571100000292063 ], [ 361948.933799996972084, 258018.081599999219179 ], [ 361946.414200000464916, 258029.882199998944998 ], [ 361946.146300002932549, 258061.332899998873472 ], [ 361981.51070000231266, 258074.921300001442432 ], [ 361984.379199996590614, 258022.171399999409914 ], [ 361960.258199997246265, 258013.952399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90412549, "LATITUDE": 18.35170388, "OBJECTID_1": 6242, "PARCEL_NO_": "103004043200", "Tax_Legal_": "WINTBERG 356 GR NORTHSIDE", "Name": "CHUNG, LOUIN", "Address": "PO BOX 3327", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60200, "Improved_V": 350600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.549778917, "SHAPE_Area": 1941.0441727299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361657.685999996960163, 258035.540699999779463 ], [ 361644.028999999165535, 258029.518300000578165 ], [ 361636.811800003051758, 258024.815099999308586 ], [ 361630.407999999821186, 258019.274300001561642 ], [ 361599.505599997937679, 258049.840999998152256 ], [ 361582.429200001060963, 258066.588700000196695 ], [ 361615.479000002145767, 258067.914700001478195 ], [ 361633.993600003421307, 258071.654800001531839 ], [ 361657.685999996960163, 258035.540699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89849313000001, "LATITUDE": 18.35105617, "OBJECTID_1": 6585, "PARCEL_NO_": "103103030400", "Tax_Legal_": "7C MANDHAL No.1 GREAT NORTHSIDE QTR.", "Name": "BERRY, LAWRENCE SYLVESTER & JENNIE R.", "Address": "7630 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 193500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 455.20651421999997, "SHAPE_Area": 9959.1769637699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362236.824400000274181, 257921.434999998658895 ], [ 362236.361599996685982, 257881.112300001084805 ], [ 362185.220399998128414, 257921.012600000947714 ], [ 362174.558499999344349, 257942.034699998795986 ], [ 362210.52139999717474, 258074.68470000103116 ], [ 362225.097999997437, 258067.415699999779463 ], [ 362229.968299999833107, 258063.655900001525879 ], [ 362266.439300000667572, 258042.000700000673532 ], [ 362236.824400000274181, 257921.434999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90890141, "LATITUDE": 18.35167598, "OBJECTID_1": 5869, "PARCEL_NO_": "103003037300", "Tax_Legal_": "WINTBERG 1-20 REM. GREAT NORTHSIDE QTR", "Name": "COLEMAN, MAJOR R. & TANYA E. V", "Address": "PO Box 307668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 300300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.44858188000001, "SHAPE_Area": 1106.3725134700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361107.066299997270107, 258020.268300000578165 ], [ 361099.844400003552437, 258053.956000000238419 ], [ 361112.401199996471405, 258056.620099999010563 ], [ 361129.279799997806549, 258063.090999998152256 ], [ 361140.836099997162819, 258031.732700001448393 ], [ 361107.066299997270107, 258020.268300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004044300", "MAP": "D9-5919-T95", "PARCEL_NAM": "355A", "ACRE": null, "LONGITUDE": -64.90443967, "LATITUDE": 18.35156634, "OBJECTID_1": 6253, "PARCEL_NO_": "103004044300", "Tax_Legal_": "WINTBERG 355A GREAT NORTHSIDE", "Name": "WALTERS, DELVIN A. & REGINA J", "Address": "4018 Ayden Ct", "City": "Mitchellville", "State": "Maryland", "Zip": 20721, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.704414404, "SHAPE_Area": 925.10161140499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361593.902800001204014, 258044.940000001341105 ], [ 361597.156800001859665, 258041.589099999517202 ], [ 361600.378499999642372, 258042.03770000115037 ], [ 361612.57209999859333, 258030.527399998158216 ], [ 361604.570100001990795, 258023.284699998795986 ], [ 361596.449400000274181, 258029.973200000822544 ], [ 361592.471799999475479, 258023.607900001108646 ], [ 361598.961900003254414, 258019.0168999992311 ], [ 361587.770599998533726, 258007.526299998164177 ], [ 361581.097000002861023, 257997.121399998664856 ], [ 361581.491200000047684, 258017.676600001752377 ], [ 361581.90820000320673, 258039.423799999058247 ], [ 361582.429200001060963, 258066.588700000196695 ], [ 361599.505599997937679, 258049.840999998152256 ], [ 361593.902800001204014, 258044.940000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89231977, "LATITUDE": 18.35165141, "OBJECTID_1": 6594, "PARCEL_NO_": "103103031300", "Tax_Legal_": "11AF MANDAL (AKA MONDAHL) NO 1 GREAT NORTHSIDE", "Name": "XAVIER, ORION & JACQULINE", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45500, "Improved_V": 178300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.70969947099999, "SHAPE_Area": 1440.7190065899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362890.634900003671646, 258034.232700001448393 ], [ 362883.342100001871586, 258038.394900001585484 ], [ 362876.879000000655651, 258039.819600000977516 ], [ 362877.644000001251698, 258044.681099999696016 ], [ 362873.608800001442432, 258045.070199999958277 ], [ 362871.299500003457069, 258032.174600001424551 ], [ 362850.304899998009205, 258035.591400001198053 ], [ 362854.001999996602535, 258074.885000001639128 ], [ 362871.782200001180172, 258070.175400000065565 ], [ 362896.797700002789497, 258068.058100000023842 ], [ 362890.634900003671646, 258034.232700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9082535, "LATITUDE": 18.35162444, "OBJECTID_1": 5871, "PARCEL_NO_": "103003037500", "Tax_Legal_": "WINTBERG 1-47 GR NORTHSIDE QTR", "Name": "JOSEPH, NOVILLE & ROINA", "Address": "PO Box 9622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 353600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.99489642399999, "SHAPE_Area": 1319.7877430799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361214.176399998366833, 258036.343699999153614 ], [ 361194.970499999821186, 258019.087900001555681 ], [ 361180.534199997782707, 258009.892799999564886 ], [ 361164.906800001859665, 258045.861800000071526 ], [ 361189.781999997794628, 258060.208700001239777 ], [ 361214.176399998366833, 258036.343699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89969122, "LATITUDE": 18.35158923, "OBJECTID_1": 6162, "PARCEL_NO_": "103004033900", "Tax_Legal_": "5B-11 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "LETTSOME, AUSTINE O. & MARY F", "Address": "Po Box 7606", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19100, "Improved_V": 126500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.066943514, "SHAPE_Area": 1358.42632465 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362108.992600001394749, 258066.043299999088049 ], [ 362110.185500003397465, 258020.667899999767542 ], [ 362073.892499998211861, 258021.426300000399351 ], [ 362073.741400003433228, 258039.157000001519918 ], [ 362073.635300002992153, 258051.610599998384714 ], [ 362108.992600001394749, 258066.043299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103027400", "MAP": "D-5429-T92", "PARCEL_NAM": null, "ACRE": ".56", "LONGITUDE": -64.89682973, "LATITUDE": 18.35152982, "OBJECTID_1": 6578, "PARCEL_NO_": "103103027400", "Tax_Legal_": "MANDAHL 14-H GREAT NORTHSIDE QTR.", "Name": "WHITE, LORRAINE", "Address": "1607 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.51613618900001, "SHAPE_Area": 2674.38613317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362399.367600001394749, 258056.387499999254942 ], [ 362411.487499997019768, 258053.531399998813868 ], [ 362422.810000002384186, 258049.613299999386072 ], [ 362442.253200002014637, 258039.006700001657009 ], [ 362443.899999998509884, 258035.009399998933077 ], [ 362439.891800001263618, 258032.232299998402596 ], [ 362375.593599997460842, 258007.430300001055002 ], [ 362369.951200000941753, 258007.173000000417233 ], [ 362365.098999999463558, 258008.82209999859333 ], [ 362369.442299999296665, 258066.908399999141693 ], [ 362383.201800003647804, 258060.899300001561642 ], [ 362399.367600001394749, 258056.387499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90657776, "LATITUDE": 18.35158455, "OBJECTID_1": 5988, "PARCEL_NO_": "103004015200", "Tax_Legal_": "WINTBERG 1-17 GREAT NORTHSIDE QTR", "Name": "WILLIAMS, AUGUSTUS, & H", "Address": "PO Box 8771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26100, "Improved_V": 226400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.763045444, "SHAPE_Area": 1106.00747669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361389.972300000488758, 258035.460499998182058 ], [ 361358.738300003111362, 258010.295800000429153 ], [ 361341.633100003004074, 258030.420800000429153 ], [ 361368.016599997878075, 258057.023400001227856 ], [ 361389.972300000488758, 258035.460499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004031300", "MAP": "D9-3349-T86", "PARCEL_NAM": "3A", "ACRE": null, "LONGITUDE": -64.90183831, "LATITUDE": 18.35126247, "OBJECTID_1": 6138, "PARCEL_NO_": "103004031300", "Tax_Legal_": "3A ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "JANICE V HODGE LOUIS and DELPHYNIUS WARREN LOUIS", "Address": "PO Box 306215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 195900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 493.94890719, "SHAPE_Area": 9103.4510634100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361953.021099999547005, 258011.571100000292063 ], [ 361960.258199997246265, 258013.952399998903275 ], [ 361962.716700002551079, 258009.328499998897314 ], [ 361956.285899996757507, 258006.95380000025034 ], [ 361949.853399999439716, 258004.790199998766184 ], [ 361947.394900001585484, 258009.414200000464916 ], [ 361911.217000000178814, 257996.663499999791384 ], [ 361913.682700000703335, 257991.195300001651049 ], [ 361863.043200001120567, 257972.204599998891354 ], [ 361836.515799999237061, 257962.488299999386072 ], [ 361826.870600000023842, 257958.820700000971556 ], [ 361782.661899998784065, 257942.204700000584126 ], [ 361781.027699999511242, 257944.724399998784065 ], [ 361784.096500001847744, 257963.114700000733137 ], [ 361791.826999999582767, 258002.23030000180006 ], [ 361946.146300002932549, 258061.332899998873472 ], [ 361946.414200000464916, 258029.882199998944998 ], [ 361948.933799996972084, 258018.081599999219179 ], [ 361953.021099999547005, 258011.571100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89200373, "LATITUDE": 18.35154435, "OBJECTID_1": 6595, "PARCEL_NO_": "103103031400", "Tax_Legal_": "MANDAHL 11AE GR NORTHSIDE QTR", "Name": "JOHNSON, DALE, THOMAS, GUY & KELLY & JAMIE L. THOMAS-FRANCE", "Address": "6492 David Ford Rd", "City": "Manassas", "State": "Virginia", "Zip": 20111, "Country": "United States", "Land_Value": 29300, "Improved_V": 137200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.32915857899999, "SHAPE_Area": 954.26534205999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362924.543099999427795, 258029.443999998271465 ], [ 362902.052699998021126, 258019.127399999648333 ], [ 362899.581600002944469, 258025.228900000452995 ], [ 362890.634900003671646, 258034.232700001448393 ], [ 362896.797700002789497, 258068.058100000023842 ], [ 362904.887800000607967, 258064.957899998873472 ], [ 362910.576899997889996, 258059.727099999785423 ], [ 362913.028200000524521, 258055.947500001639128 ], [ 362913.868699997663498, 258051.943599998950958 ], [ 362919.629699997603893, 258038.26969999819994 ], [ 362924.543099999427795, 258029.443999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90711545000001, "LATITUDE": 18.35160235, "OBJECTID_1": 6077, "PARCEL_NO_": "103004020400", "Tax_Legal_": "WINTBERG 1-56&PART OF 55 GR NORTHSIDE QTR", "Name": "Winston Charles & Vera Charles (Life Estate)", "Address": "PO Box 7731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29400, "Improved_V": 231800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.51671324100001, "SHAPE_Area": 790.18812316399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361328.701499998569489, 258033.903499998152256 ], [ 361304.666799999773502, 258015.552799999713898 ], [ 361292.437200002372265, 258031.284699998795986 ], [ 361288.358900003135204, 258036.739799998700619 ], [ 361310.788199998438358, 258054.232999999076128 ], [ 361328.701499998569489, 258033.903499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90930479, "LATITUDE": 18.35157312, "OBJECTID_1": 5868, "PARCEL_NO_": "103003037200", "Tax_Legal_": "WINTBERG 1-20&1-21 GR NORTHSIDE QTR", "Name": "KARLIN, H. & JOHNSON, D", "Address": "PO Box 10422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52200, "Improved_V": 519200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.26852876500001, "SHAPE_Area": 1765.1112727300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361094.201300002634525, 258015.941199999302626 ], [ 361055.602600000798702, 258003.381799999624491 ], [ 361053.641099996864796, 258044.317899998277426 ], [ 361090.668499998748302, 258052.009199999272823 ], [ 361099.844400003552437, 258053.956000000238419 ], [ 361100.266500003635883, 258028.109600000083447 ], [ 361100.431000001728535, 258018.036499999463558 ], [ 361094.201300002634525, 258015.941199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90602915, "LATITUDE": 18.35157307, "OBJECTID_1": 5990, "PARCEL_NO_": "103004015400", "Tax_Legal_": "WINTBERG 1-137-3\nGR NORTHSIDE", "Name": "Melchiade,Julian,Una,Elma Johnathan & D Louis", "Address": "6331 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34400, "Improved_V": 387900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.08205281799999, "SHAPE_Area": 1266.7680990199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361441.473800003528595, 258047.914299998432398 ], [ 361443.359700001776218, 258015.843499999493361 ], [ 361404.647699996829033, 258016.58219999819994 ], [ 361403.55009999871254, 258050.770300000905991 ], [ 361441.473800003528595, 258047.914299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103033400", "MAP": "D9-5880-T95", "PARCEL_NAM": "8-4", "ACRE": ".23", "LONGITUDE": -64.89510978, "LATITUDE": 18.35145669, "OBJECTID_1": 6613, "PARCEL_NO_": "103103033400", "Tax_Legal_": "MANDAHL 8-4 GREAT NORTHSIDE", "Name": "BRIN, ALBERT R. & CELESTE S", "Address": "P.O. BOX 5265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.28151498599999, "SHAPE_Area": 1209.4130175099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362524.784800000488758, 258005.907200001180172 ], [ 362533.625500001013279, 258009.35700000077486 ], [ 362541.648999996483326, 258014.066700000315905 ], [ 362552.824100002646446, 258027.457100000232458 ], [ 362568.242899999022484, 258015.973200000822544 ], [ 362580.177599996328354, 258034.858199998736382 ], [ 362588.112999998033047, 258049.910700000822544 ], [ 362617.856700003147125, 258060.70890000090003 ], [ 362623.601599998772144, 258048.934599999338388 ], [ 362595.47240000218153, 258037.9386 ], [ 362592.263300001621246, 258036.012499999254942 ], [ 362558.6841000020504, 258002.173799999058247 ], [ 362524.784800000488758, 258005.907200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043400", "MAP": null, "PARCEL_NAM": "349", "ACRE": null, "LONGITUDE": -64.90542126, "LATITUDE": 18.35128141, "OBJECTID_1": 6244, "PARCEL_NO_": "103004043400", "Tax_Legal_": "WINTBERG 349 GR NORTHSIDE", "Name": "SPENCER SR., LEO & TERENCE B.", "Address": "BOX 3864", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.31253376699999, "SHAPE_Area": 3472.9915033500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361522.33839999884367, 258021.170699998736382 ], [ 361522.502400003373623, 258001.925799999386072 ], [ 361525.850000001490116, 257987.598900001496077 ], [ 361459.122000001370907, 257964.043499998748302 ], [ 361456.645499996840954, 257970.778299998492002 ], [ 361454.959200002253056, 257979.419300001114607 ], [ 361456.422600001096725, 257996.951999999582767 ], [ 361468.222300000488758, 258031.668000001460314 ], [ 361469.820600003004074, 258033.369800001382828 ], [ 361469.804399996995926, 258035.269499998539686 ], [ 361471.398999996483326, 258037.393500000238419 ], [ 361522.33839999884367, 258021.170699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90851961, "LATITUDE": 18.35147524, "OBJECTID_1": 5872, "PARCEL_NO_": "103003037600", "Tax_Legal_": "WINBERG 1 48 GR NORTHSIDE QTR", "Name": "JOSEPH, NOVELLE", "Address": "PO Box 9622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94700, "Improved_V": 316400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.27433161600001, "SHAPE_Area": 1186.51380939 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361180.534199997782707, 258009.892799999564886 ], [ 361174.1233000010252, 258005.196199998259544 ], [ 361165.295199997723103, 258000.268800001591444 ], [ 361151.63289999961853, 257994.879700001329184 ], [ 361140.836099997162819, 258031.732700001448393 ], [ 361164.906800001859665, 258045.861800000071526 ], [ 361180.534199997782707, 258009.892799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033800", "MAP": "A9-124-T69", "PARCEL_NAM": "5B-8", "ACRE": "0.26", "LONGITUDE": -64.90012835, "LATITUDE": 18.35145283, "OBJECTID_1": 6161, "PARCEL_NO_": "103004033800", "Tax_Legal_": "5B-8 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "MAUVAIS, DUNEL & ANNETTE", "Address": "PO Box 12245", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.872151874, "SHAPE_Area": 1755.42850767 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362030.971500001847744, 257999.19029999896884 ], [ 362024.116599999368191, 257995.638999998569489 ], [ 362019.271300002932549, 258030.677700001746416 ], [ 362068.81360000371933, 258049.671300001442432 ], [ 362073.635300002992153, 258051.610599998384714 ], [ 362073.741400003433228, 258039.157000001519918 ], [ 362073.892499998211861, 258021.426300000399351 ], [ 362030.971500001847744, 257999.19029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204011400", "MAP": "D9-6805-T000", "PARCEL_NAM": "21 REM", "ACRE": "1.6", "LONGITUDE": -64.87121399, "LATITUDE": 18.35105467, "OBJECTID_1": 7069, "PARCEL_NO_": "103204011400", "Tax_Legal_": "21 REMAINDER ESTATE FRYDENDAHL EAST END QUARTER", "Name": "RAYMOND W & ANGELA D WALTERS JOINT REVOCABLE TRU", "Address": "PO Box 12285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 326400, "Improved_V": 131500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.78166477000002, "SHAPE_Area": 7158.9855979900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365048.885600000619888, 257969.687399998307228 ], [ 365060.178700000047684, 257974.724399998784065 ], [ 365086.115800000727177, 258064.867300000041723 ], [ 365094.988899998366833, 258064.517700001597404 ], [ 365103.92119999974966, 258057.202500000596046 ], [ 365106.34740000218153, 258056.377999998629093 ], [ 365128.112400002777576, 258057.189399998635054 ], [ 365132.151199996471405, 258056.378100000321865 ], [ 365135.390799999237061, 258054.715900000184774 ], [ 365147.568199999630451, 258045.10530000180006 ], [ 365157.346400000154972, 258033.153000000864267 ], [ 365097.67679999768734, 257938.305799998342991 ], [ 365056.315700002014637, 257966.042700000107288 ], [ 365048.885600000619888, 257969.687399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104025900", "MAP": "D9-3784-T86", "PARCEL_NAM": "4-15-2", "ACRE": null, "LONGITUDE": -64.88452824, "LATITUDE": 18.35141539, "OBJECTID_1": 6826, "PARCEL_NO_": "103104025900", "Tax_Legal_": "TARBOR & AHRMONY 4-15-2 EAST END QTR.", "Name": "DAVID HALL and MARILYN BRATHWAITE -HALL", "Address": "PO Box 302037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.65691037900001, "SHAPE_Area": 732.575378301 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363661.750100001692772, 258007.613299999386072 ], [ 363658.318199999630451, 258015.436000000685453 ], [ 363728.226300001144409, 258060.719700001180172 ], [ 363732.328000001609325, 258052.520599998533726 ], [ 363661.750100001692772, 258007.613299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103027600", "MAP": "D-5429-T92", "PARCEL_NAM": null, "ACRE": ".61", "LONGITUDE": -64.89639488, "LATITUDE": 18.3512964, "OBJECTID_1": 6580, "PARCEL_NO_": "103103027600", "Tax_Legal_": "14-G ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "CALVIN JONES and NIKKORI MATTHEW", "Address": "PO Box 10437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.85780220800001, "SHAPE_Area": 2878.03401932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362470.506499998271465, 258035.438200000673532 ], [ 362477.32379999756813, 257992.430900000035763 ], [ 362455.580399997532368, 257989.086599998176098 ], [ 362441.873099997639656, 257988.974399998784065 ], [ 362430.575699999928474, 257989.937399998307228 ], [ 362412.804499998688698, 257993.591600000858307 ], [ 362386.11879999935627, 258002.450199998915195 ], [ 362385.287299998104572, 258005.398699998855591 ], [ 362386.883799999952316, 258007.311599999666214 ], [ 362441.540399998426437, 258028.024000000208616 ], [ 362447.139600001275539, 258033.347100000828505 ], [ 362448.743299998342991, 258034.415699999779463 ], [ 362468.773400001227856, 258049.567299999296665 ], [ 362470.506499998271465, 258035.438200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89588175, "LATITUDE": 18.35138936, "OBJECTID_1": 6545, "PARCEL_NO_": "103103023500", "Tax_Legal_": "MANDAHL 13B-4 GT. NORTHSIDE", "Name": "PEMBERTON, ROMANA S", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.54589857600001, "SHAPE_Area": 1996.4478744 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362523.922700002789497, 258012.443999998271465 ], [ 362510.281999997794628, 258004.521899998188019 ], [ 362498.232199996709824, 257999.145899999886751 ], [ 362477.32379999756813, 257992.430900000035763 ], [ 362470.506499998271465, 258035.438200000673532 ], [ 362506.673699997365475, 258049.455299999564886 ], [ 362509.121399998664856, 258046.097800001502037 ], [ 362513.167300000786781, 258044.442200001329184 ], [ 362523.922700002789497, 258012.443999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103030900", "MAP": "D9-8529-T010", "PARCEL_NAM": "8 REM", "ACRE": "1.137", "LONGITUDE": -64.89497991, "LATITUDE": 18.35124312, "OBJECTID_1": 6590, "PARCEL_NO_": "103103030900", "Tax_Legal_": "8 MANDAHL NO. 1 GREAT NORTHSIDE QUARTER", "Name": "EMELDA LEDEE REVOCABLE TRUST", "Address": "PO Box 12265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 123300, "Improved_V": 345700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.01676272999998, "SHAPE_Area": 4171.3525114800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362641.003499999642372, 257993.981699999421835 ], [ 362570.990900002419949, 257977.365499999374151 ], [ 362554.897100001573563, 257973.434099998325109 ], [ 362522.376599997282028, 258004.620900001376867 ], [ 362524.784800000488758, 258005.907200001180172 ], [ 362558.6841000020504, 258002.173799999058247 ], [ 362592.263300001621246, 258036.012499999254942 ], [ 362595.47240000218153, 258037.9386 ], [ 362623.601599998772144, 258048.934599999338388 ], [ 362627.834499999880791, 258025.326799999922514 ], [ 362641.003499999642372, 257993.981699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004044400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90478864000001, "LATITUDE": 18.35149824, "OBJECTID_1": 6254, "PARCEL_NO_": "103004044400", "Tax_Legal_": "353B ESTATE WINTBERG GREAT NORTHSIDE QUARTER", "Name": "TRUST AGREEMENT OF LEONARD L GUMBS SR", "Address": "PO Box 6756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.89840677000001, "SHAPE_Area": 1148.6162641400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361581.491200000047684, 258017.676600001752377 ], [ 361566.732699997723103, 258016.008900001645088 ], [ 361566.704000003635883, 258019.386199999600649 ], [ 361565.078699998557568, 258020.850499998778105 ], [ 361563.457099996507168, 258021.892700001597404 ], [ 361561.029200002551079, 258022.928300000727177 ], [ 361558.606700003147125, 258023.330699998885393 ], [ 361555.394000001251698, 258021.826699998229742 ], [ 361554.603900000452995, 258019.920400001108646 ], [ 361548.201899997889996, 258014.168499998748302 ], [ 361532.185400001704693, 258001.160700000822544 ], [ 361531.346699997782707, 258004.953499998897314 ], [ 361531.082400001585484, 258035.982099998742342 ], [ 361581.90820000320673, 258039.423799999058247 ], [ 361581.491200000047684, 258017.676600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90285932, "LATITUDE": 18.35127559, "OBJECTID_1": 6140, "PARCEL_NO_": "103004031500", "Tax_Legal_": "360&364A ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "BLAZEK, BLAKE B. & LISA S.", "Address": "10 S Briar Hollowlane", "City": "Houston", "State": "Texas", "Zip": 77027, "Country": "United States", "Land_Value": 131400, "Improved_V": 486200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.10007309600002, "SHAPE_Area": 4689.0430133099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361723.554700002074242, 257970.640799999237061 ], [ 361724.604500003159046, 258036.721599999815226 ], [ 361731.062200002372265, 258035.930100001394749 ], [ 361735.119000002741814, 258033.008000001311302 ], [ 361739.958599999547005, 258032.836500000208616 ], [ 361744.774899996817112, 258035.409099999815226 ], [ 361747.150700002908707, 258040.494699999690056 ], [ 361798.016699999570847, 258032.889499999582767 ], [ 361791.826999999582767, 258002.23030000180006 ], [ 361784.096500001847744, 257963.114700000733137 ], [ 361723.554700002074242, 257970.640799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90643319, "LATITUDE": 18.3513753, "OBJECTID_1": 5989, "PARCEL_NO_": "103004015300", "Tax_Legal_": "WINTBERG 1-18 GR NORTHSIDE", "Name": "JOHNSON, JOY", "Address": "PO Box 307004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 287300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.68721748799999, "SHAPE_Area": 1019.11730909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361395.661399997770786, 258030.229699999094009 ], [ 361395.00620000064373, 258012.492499999701977 ], [ 361391.084299996495247, 257999.583700001239777 ], [ 361386.320100001990795, 257990.889800000935793 ], [ 361383.116499997675419, 257988.33049999922514 ], [ 361380.702899999916553, 257987.677499998360872 ], [ 361376.66780000180006, 257988.066599998623133 ], [ 361373.422700002789497, 257990.362100001424551 ], [ 361372.596600003540516, 257992.677400000393391 ], [ 361370.975000001490116, 257993.7195999994874 ], [ 361369.333599999547005, 257997.083599999547005 ], [ 361358.738300003111362, 258010.295800000429153 ], [ 361389.972300000488758, 258035.460499998182058 ], [ 361395.661399997770786, 258030.229699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90336847, "LATITUDE": 18.35131857, "OBJECTID_1": 6141, "PARCEL_NO_": "103004031600", "Tax_Legal_": "361&363 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "BLAZEK, BLAKE B. & LISA S.", "Address": "10 S Briar Hollowlane", "City": "Houston", "State": "Texas", "Zip": 77027, "Country": "United States", "Land_Value": 157900, "Improved_V": 206200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.94354286000001, "SHAPE_Area": 2424.7716160999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361723.554700002074242, 257970.640799999237061 ], [ 361697.723999999463558, 257973.806800000369549 ], [ 361673.050899997353554, 258030.38910000026226 ], [ 361718.954999998211861, 258037.308699999004602 ], [ 361724.604500003159046, 258036.721599999815226 ], [ 361723.554700002074242, 257970.640799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9069396, "LATITUDE": 18.35139373, "OBJECTID_1": 6080, "PARCEL_NO_": "103004020700", "Tax_Legal_": "WINTBERG 1-56&1-58 3 GR NORTHSIDE QTR", "Name": "ROSALIA G HARRIGAN", "Address": "PO Box 306443", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036443, "Country": "United States", "Land_Value": 28200, "Improved_V": 176900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.80189187400001, "SHAPE_Area": 1003.37120265 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361349.879600003361702, 258008.956700000911951 ], [ 361324.23589999973774, 257990.1706000007689 ], [ 361304.666799999773502, 258015.552799999713898 ], [ 361328.701499998569489, 258033.903499998152256 ], [ 361349.879600003361702, 258008.956700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90881893, "LATITUDE": 18.35137474, "OBJECTID_1": 5873, "PARCEL_NO_": "103003037700", "Tax_Legal_": "WINTBERG 1-49 GR NORTHSIDE QTR", "Name": "WHITE, MANASSA A", "Address": "PO Box 306992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34000, "Improved_V": 286600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.602424187, "SHAPE_Area": 1359.9574077300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361151.63289999961853, 257994.879700001329184 ], [ 361138.756999999284744, 257991.818999998271465 ], [ 361121.030699998140335, 257990.196199998259544 ], [ 361111.380199998617172, 257987.161899998784065 ], [ 361107.066299997270107, 258020.268300000578165 ], [ 361140.836099997162819, 258031.732700001448393 ], [ 361151.63289999961853, 257994.879700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004034100", "MAP": "A9-124-T69", "PARCEL_NAM": "5B-9", "ACRE": "0.26", "LONGITUDE": -64.90004499, "LATITUDE": 18.35122166, "OBJECTID_1": 6164, "PARCEL_NO_": "103004034100", "Tax_Legal_": "5B-9 ESTATRE MANDAHL GREAT NORTHSIDE QTR.", "Name": "MARSHALL, CURLINA", "Address": "PO Box 306963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 79800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.938916608, "SHAPE_Area": 1021.1285352 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362074.165799997746944, 257989.342399999499321 ], [ 362039.027300000190735, 257982.420699998736382 ], [ 362035.427000001072884, 257987.8766999989748 ], [ 362033.339415439812001, 257993.588699679909041 ], [ 362030.971500001847744, 257999.19029999896884 ], [ 362073.892499998211861, 258021.426300000399351 ], [ 362074.088500000536442, 257998.418699998408556 ], [ 362074.165799997746944, 257989.342399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104025000", "MAP": "D9-2872-T84", "PARCEL_NAM": "4-16-A", "ACRE": "1.25", "LONGITUDE": -64.88429468, "LATITUDE": 18.35120161, "OBJECTID_1": 6820, "PARCEL_NO_": "103104025000", "Tax_Legal_": "TABOR & HARMONY 4-16A&16C EAST END QTR", "Name": "DAVID HALL and MARILYN BRATHWAITE -HALL", "Address": "PO Box 302037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90200, "Improved_V": 759800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.10089367799998, "SHAPE_Area": 4785.6368030800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363740.881999999284744, 257994.962099999189377 ], [ 363727.111800000071526, 258002.237700000405312 ], [ 363700.571800000965595, 257993.9989 ], [ 363694.248999997973442, 257978.959499999880791 ], [ 363685.552100002765656, 257958.6233000010252 ], [ 363661.750100001692772, 258007.613299999386072 ], [ 363732.328000001609325, 258052.520599998533726 ], [ 363733.148699998855591, 258050.838599998503923 ], [ 363784.314999997615814, 258007.983199998736382 ], [ 363760.323399998247623, 257984.566500000655651 ], [ 363740.881999999284744, 257994.962099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043500", "MAP": "D9-8617-T011", "PARCEL_NAM": "355 REM", "ACRE": ".397", "LONGITUDE": -64.90431079, "LATITUDE": 18.35131807, "OBJECTID_1": 6245, "PARCEL_NO_": "103004043500", "Tax_Legal_": "WINTBERG 355 GR NORTHSIDE QTR", "Name": "GREAVES, EVELYN A", "Address": "355 Estate Wintbergh", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40400, "Improved_V": 279600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.552607897, "SHAPE_Area": 1240.52930262 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361612.57209999859333, 258030.527399998158216 ], [ 361627.207999996840954, 258016.29280000180006 ], [ 361622.411399997770786, 258011.398400001227856 ], [ 361614.524499997496605, 257990.646699998527765 ], [ 361609.676100000739098, 257979.373599998652935 ], [ 361581.097000002861023, 257997.121399998664856 ], [ 361587.770599998533726, 258007.526299998164177 ], [ 361598.961900003254414, 258019.0168999992311 ], [ 361592.471799999475479, 258023.607900001108646 ], [ 361596.449400000274181, 258029.973200000822544 ], [ 361604.570100001990795, 258023.284699998795986 ], [ 361612.57209999859333, 258030.527399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90377732, "LATITUDE": 18.35114868, "OBJECTID_1": 6142, "PARCEL_NO_": "103004031700", "Tax_Legal_": "362 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "BENJAMIN, DORNICE P", "Address": "PO BOX 8896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 89000, "Improved_V": 254400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.609547623, "SHAPE_Area": 3921.4929726700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361683.449500001966953, 257945.614599999040365 ], [ 361674.538699999451637, 257950.396800000220537 ], [ 361656.73870000243187, 257957.428300000727177 ], [ 361636.492799997329712, 257967.606199998408556 ], [ 361625.954999998211861, 257974.063799999654293 ], [ 361623.503700003027916, 257977.843400001525879 ], [ 361623.455099999904633, 257983.542599998414516 ], [ 361630.515900000929832, 258006.609600000083447 ], [ 361633.710600003600121, 258010.224300000816584 ], [ 361641.7162000015378, 258017.044799998402596 ], [ 361652.946999996900558, 258023.891699999570847 ], [ 361665.806699998676777, 258028.852099999785423 ], [ 361673.050899997353554, 258030.38910000026226 ], [ 361697.723999999463558, 257973.806800000369549 ], [ 361683.449500001966953, 257945.614599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203020300", "MAP": "D9-347-T62", "PARCEL_NAM": "16-2", "ACRE": ".75", "LONGITUDE": -64.87473329, "LATITUDE": 18.35125272, "OBJECTID_1": 7002, "PARCEL_NO_": "103203020300", "Tax_Legal_": "FRYDENDAHL 16-2 EAST END QUARTER", "Name": "CROOKE, WAYNE & CAROL", "Address": "PO Box 503212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 162400, "Improved_V": 260100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.98935748, "SHAPE_Area": 3124.1487045700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364720.639799997210503, 257992.637299999594688 ], [ 364717.364600002765656, 257990.743700001388788 ], [ 364709.816200003027916, 258005.047100000083447 ], [ 364691.204300001263618, 258040.314699999988079 ], [ 364696.82150000333786, 258043.526999998837709 ], [ 364708.074000000953674, 258047.840999998152256 ], [ 364722.558799996972084, 258051.337099999189377 ], [ 364734.644500002264977, 258052.491399999707937 ], [ 364763.734700001776218, 258045.341299999505281 ], [ 364760.883500002324581, 258001.410500001162291 ], [ 364750.403200000524521, 258001.113600000739098 ], [ 364739.129199996590614, 257999.332600001245737 ], [ 364728.67230000346899, 257996.291700001806021 ], [ 364720.639799997210503, 257992.637299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89230335000001, "LATITUDE": 18.35123012, "OBJECTID_1": 6596, "PARCEL_NO_": "103103031500", "Tax_Legal_": "11AG MANDAHL & 11Aj MANDAHL(1/12 Int.) NO.1 GREAT NORTHSIDE QTR", "Name": "PAUL & ELIZABETH B. KOCH", "Address": "9762 Broadway Dr", "City": "Chagrin Falls", "State": "Ohio", "Zip": 44023, "Country": "United States", "Land_Value": 50900, "Improved_V": 350900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.05881897399999, "SHAPE_Area": 2346.8193247600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362887.130199998617172, 257972.35359999909997 ], [ 362884.714800000190735, 257971.91160000115633 ], [ 362847.394299998879433, 257998.626200001686811 ], [ 362847.395300000905991, 257998.638900000602007 ], [ 362850.304899998009205, 258035.591400001198053 ], [ 362871.299500003457069, 258032.174600001424551 ], [ 362876.144599996507168, 258031.369899999350309 ], [ 362887.45099999755621, 258029.351500000804663 ], [ 362889.065399996936321, 258029.153599999845028 ], [ 362893.937399998307228, 258025.182700000703335 ], [ 362896.385099999606609, 258021.825199998915195 ], [ 362898.069700002670288, 258013.395300000905991 ], [ 362902.16780000180006, 258005.618400000035763 ], [ 362887.130199998617172, 257972.35359999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89223695, "LATITUDE": 18.35145693, "OBJECTID_1": 6594, "PARCEL_NO_": "103103031300", "Tax_Legal_": "11AF MANDAL (AKA MONDAHL) NO 1 GREAT NORTHSIDE", "Name": "XAVIER, ORION & JACQULINE", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45500, "Improved_V": 178300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.820220012699998, "SHAPE_Area": 31.998859605500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362876.144599996507168, 258031.369899999350309 ], [ 362876.110500000417233, 258035.380399998277426 ], [ 362885.816799998283386, 258031.871199999004602 ], [ 362887.45099999755621, 258029.351500000804663 ], [ 362876.144599996507168, 258031.369899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033700", "MAP": "A9-124-T69", "PARCEL_NAM": "5B-6", "ACRE": "0.24", "LONGITUDE": -64.90064357, "LATITUDE": 18.3512807, "OBJECTID_1": 6160, "PARCEL_NO_": "103004033700", "Tax_Legal_": "3A-2&5B-6 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "DENIS, JOSEPH", "Address": "P.O. BOX 5466", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 410500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.581537806, "SHAPE_Area": 1379.7493122200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362019.271300002932549, 258030.677700001746416 ], [ 361999.421300001442432, 257978.215199999511242 ], [ 361991.1587999984622, 257983.596700001507998 ], [ 361974.138099998235703, 257993.800999999046326 ], [ 361968.438199996948242, 258000.298300001770258 ], [ 361962.716700002551079, 258009.328499998897314 ], [ 361985.223300002515316, 258017.745299998670816 ], [ 362012.551600001752377, 258028.101500000804663 ], [ 362019.271300002932549, 258030.677700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004038700", "MAP": "A9-124-T69", "PARCEL_NAM": "5B-7", "ACRE": "0.23", "LONGITUDE": -64.9003781, "LATITUDE": 18.35109993, "OBJECTID_1": 6203, "PARCEL_NO_": "103004038700", "Tax_Legal_": "5B-7 MANDAHL GREAT NORTHSIDE", "Name": "KURTZ, KATHRYN", "Address": "PO Box 502727", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28800, "Improved_V": 186600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.191226973, "SHAPE_Area": 1242.2586061300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361999.421300001442432, 257978.215199999511242 ], [ 362019.271300002932549, 258030.677700001746416 ], [ 362024.116599999368191, 257995.638999998569489 ], [ 362036.696999996900558, 257974.700399998575449 ], [ 362049.714599996805191, 257956.285399999469519 ], [ 362049.585085863887798, 257955.915700526587898 ], [ 362049.396647562796716, 257955.572272779361811 ], [ 362049.154396342812106, 257955.264431980787776 ], [ 362048.864903088484425, 257955.000528084230609 ], [ 362048.536020089872181, 257954.787719287269283 ], [ 362048.176668054307811, 257954.631777870643418 ], [ 362047.796594139304943, 257954.53693362971535 ], [ 362047.406107568065636, 257954.505759144143667 ], [ 362047.015799999237061, 257954.539099998772144 ], [ 362036.617949447943829, 257959.512575721048051 ], [ 362026.521899998188019, 257965.07319999858737 ], [ 362003.321800000965595, 257975.674699999392033 ], [ 361999.421300001442432, 257978.215199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90925031, "LATITUDE": 18.35123417, "OBJECTID_1": 5867, "PARCEL_NO_": "103003037100", "Tax_Legal_": "1-22 WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "NIEBERG FAMILY TRUST", "Address": "PO Box 1263", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35100, "Improved_V": 202900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.92555753600001, "SHAPE_Area": 2071.8487418999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361111.380199998617172, 257987.161899998784065 ], [ 361107.361199997365475, 257985.651399999856949 ], [ 361099.343000002205372, 257980.308400001376867 ], [ 361092.94650000333786, 257973.923300001770258 ], [ 361089.75900000333786, 257969.464200001209974 ], [ 361057.510099999606609, 257968.778099998831749 ], [ 361056.597699999809265, 257981.225099999457598 ], [ 361056.513199999928474, 257991.145799998193979 ], [ 361055.602600000798702, 258003.381799999624491 ], [ 361094.201300002634525, 258015.941199999302626 ], [ 361103.850000001490116, 258019.186500001698732 ], [ 361107.066299997270107, 258020.268300000578165 ], [ 361111.380199998617172, 257987.161899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204020600", "MAP": "D9-347-T62", "PARCEL_NAM": "16-1", "ACRE": ".75", "LONGITUDE": -64.87423423, "LATITUDE": 18.35107707, "OBJECTID_1": 7139, "PARCEL_NO_": "103204020600", "Tax_Legal_": "FRYDENDAHL 16-1 EAST END QTR", "Name": "LESLIE, CARLTON & ANNA", "Address": "PO Box 1676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 99700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.03770375, "SHAPE_Area": 2640.5059916599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364804.156400002539158, 258033.217599999159575 ], [ 364802.163599997758865, 257983.172100000083447 ], [ 364801.558700002729893, 257959.524700000882149 ], [ 364786.985799998044968, 257966.371500000357628 ], [ 364763.354599997401237, 257995.309000000357628 ], [ 364761.711400002241135, 257998.884100001305342 ], [ 364760.883500002324581, 258001.410500001162291 ], [ 364763.734700001776218, 258045.341299999505281 ], [ 364791.226599998772144, 258036.489199999719858 ], [ 364804.156400002539158, 258033.217599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043300", "MAP": null, "PARCEL_NAM": "353", "ACRE": null, "LONGITUDE": -64.90475272, "LATITUDE": 18.35121471, "OBJECTID_1": 6243, "PARCEL_NO_": "103004043300", "Tax_Legal_": "WINTBERG 353-A & 354-1 GR NORTHSIDE QTR", "Name": "OSBORNE, BERNICE & ARANHA,BERNADINE O.", "Address": "PO Box 503124", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 38400, "Improved_V": 200800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.08984204699999, "SHAPE_Area": 1590.2889079500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361581.097000002861023, 257997.121399998664856 ], [ 361552.451700001955032, 257962.445000000298023 ], [ 361551.048799999058247, 257963.951499998569489 ], [ 361546.155199997127056, 257970.455400001257658 ], [ 361538.812100000679493, 257980.527800001204014 ], [ 361533.038400001823902, 257995.679299999028444 ], [ 361552.2550999969244, 258011.668600000441074 ], [ 361557.854299999773502, 258016.991700001060963 ], [ 361558.646200001239777, 258018.686900001019239 ], [ 361561.869699999690056, 258018.924400001764297 ], [ 361563.511100001633167, 258015.560400001704693 ], [ 361566.732699997723103, 258016.008900001645088 ], [ 361581.491200000047684, 258017.676600001752377 ], [ 361581.097000002861023, 257997.121399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004033700", "MAP": null, "PARCEL_NAM": "3A-2", "ACRE": null, "LONGITUDE": -64.90082891, "LATITUDE": 18.35137792, "OBJECTID_1": 6160, "PARCEL_NO_": "103004033700", "Tax_Legal_": "3A-2&5B-6 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "DENIS, JOSEPH", "Address": "P.O. BOX 5466", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 410500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.254488790700002, "SHAPE_Area": 119.230293324 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361962.716700002551079, 258009.328499998897314 ], [ 361960.258199997246265, 258013.952399998903275 ], [ 361984.379199996590614, 258022.171399999409914 ], [ 361985.223300002515316, 258017.745299998670816 ], [ 361962.716700002551079, 258009.328499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8918578, "LATITUDE": 18.35124611, "OBJECTID_1": 6597, "PARCEL_NO_": "103103031600", "Tax_Legal_": "11Ad MANDAHL No.1 GREAT NORTHSIDE QTR", "Name": "HUMPHRIES, MICHELE L.", "Address": "7280 Frenchman S Bay 16-1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 273300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.83807715, "SHAPE_Area": 923.79996551 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362943.325699999928474, 258001.733399998396635 ], [ 362916.825300000607967, 257988.85080000013113 ], [ 362907.011100001633167, 258005.024700000882149 ], [ 362902.079700000584126, 258015.961199998855591 ], [ 362902.052699998021126, 258019.127399999648333 ], [ 362924.543099999427795, 258029.443999998271465 ], [ 362931.092500001192093, 258017.88740000128746 ], [ 362943.325699999928474, 258001.733399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90610551, "LATITUDE": 18.35114804, "OBJECTID_1": 5991, "PARCEL_NO_": "103004015500", "Tax_Legal_": "WINTBERG 1-137-2 GT. NORTHSIDE", "Name": "ELLEN JANE EVANS HODGE REVOCABLE TRUST", "Address": "6324 Estate Winteberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47800, "Improved_V": 250500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.62831269399999, "SHAPE_Area": 2390.6474399399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361443.359700001776218, 258015.843499999493361 ], [ 361443.428099997341633, 258007.822500001639128 ], [ 361441.854999996721745, 258003.165600001811981 ], [ 361437.063900001347065, 257997.638000000268221 ], [ 361433.905199997127056, 257989.801699999719858 ], [ 361428.500100001692772, 257961.682000000029802 ], [ 361423.7162000015378, 257955.309999998658895 ], [ 361419.706200003623962, 257952.744100000709295 ], [ 361415.685400001704693, 257951.444600000977516 ], [ 361407.62049999833107, 257951.589699998497963 ], [ 361399.523199997842312, 257955.534200001507998 ], [ 361394.649400003254414, 257959.7162000015378 ], [ 361391.377400003373623, 257965.177799999713898 ], [ 361389.721600003540516, 257970.230500001460314 ], [ 361390.468599997460842, 257977.2027000002563 ], [ 361392.023699998855591, 257983.970400001853704 ], [ 361398.393200002610683, 257993.521800000220537 ], [ 361402.338500000536442, 258003.686599999666214 ], [ 361404.647699996829033, 258016.58219999819994 ], [ 361443.359700001776218, 258015.843499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90706078, "LATITUDE": 18.3510578, "OBJECTID_1": 6079, "PARCEL_NO_": "103004020600", "Tax_Legal_": "WINTBERG 1-59 GR NORTHSIDE", "Name": "WILLIAMS, DAVID E. & ROCINA P", "Address": "PO Box 303416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49500, "Improved_V": 219900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.66955267200001, "SHAPE_Area": 2239.8452906000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361348.709399998188019, 257957.018100000917912 ], [ 361330.29900000244379, 257941.035399999469519 ], [ 361321.363099999725819, 257948.772799998521805 ], [ 361307.57660000026226, 257957.948100000619888 ], [ 361294.616300001740456, 257964.808100000023842 ], [ 361281.670299999415874, 257969.979400001466274 ], [ 361304.666799999773502, 258015.552799999713898 ], [ 361324.23589999973774, 257990.1706000007689 ], [ 361348.709399998188019, 257957.018100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004034000", "MAP": "A9-124-T69", "PARCEL_NAM": "5B-10", "ACRE": "0.23", "LONGITUDE": -64.8997021, "LATITUDE": 18.35131254, "OBJECTID_1": 6163, "PARCEL_NO_": "103004034000", "Tax_Legal_": "5B-10 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "HERBERT, KATHLEEN", "Address": "PO Box 302177", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19100, "Improved_V": 281500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.263657384, "SHAPE_Area": 833.67385599199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362110.185500003397465, 258020.667899999767542 ], [ 362109.57880000025034, 257997.231600001454353 ], [ 362074.088500000536442, 257998.418699998408556 ], [ 362073.892499998211861, 258021.426300000399351 ], [ 362110.185500003397465, 258020.667899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203013200", "MAP": null, "PARCEL_NAM": "3B", "ACRE": null, "LONGITUDE": -64.87788085, "LATITUDE": 18.35090462, "OBJECTID_1": 6980, "PARCEL_NO_": "103203013200", "Tax_Legal_": "TABOR&HARMONY 3B No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 112500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 330.07321606400001, "SHAPE_Area": 4607.5135764200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364364.66499999910593, 257940.961300000548363 ], [ 364355.860299997031689, 257933.289799999445677 ], [ 364336.172600001096725, 257972.603199999779463 ], [ 364390.037299998104572, 257991.620299998670816 ], [ 364422.732900001108646, 258034.528799999505281 ], [ 364441.294200003147125, 258032.780799999833107 ], [ 364439.780500002205372, 258021.158300001174212 ], [ 364450.532300002872944, 257989.582299999892712 ], [ 364440.127499997615814, 257980.420099999755621 ], [ 364428.896700002253056, 257973.57319999858737 ], [ 364424.080399997532368, 257971.000599998980761 ], [ 364416.852399997413158, 257967.563999999314547 ], [ 364399.160300001502037, 257961.930700000375509 ], [ 364383.096900001168251, 257954.410999998450279 ], [ 364375.076999999582767, 257949.279100000858307 ], [ 364372.672399997711182, 257947.570700000971556 ], [ 364364.66499999910593, 257940.961300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90672903, "LATITUDE": 18.35113065, "OBJECTID_1": 6081, "PARCEL_NO_": "103004020800", "Tax_Legal_": "WINTBERG 1-58 3 GR NORTHSIDE QTR", "Name": "HAZELL, RUEL and DEBBIE DANIEL HAZELL", "Address": "PO Box 11968", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 49000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.03968912, "SHAPE_Area": 1330.3394316900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361374.353100001811981, 257975.804299999028444 ], [ 361348.709399998188019, 257957.018100000917912 ], [ 361324.23589999973774, 257990.1706000007689 ], [ 361349.879600003361702, 258008.956700000911951 ], [ 361362.101999998092651, 257994.069099999964237 ], [ 361374.353100001811981, 257975.804299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203020400", "MAP": "D9-347-T62", "PARCEL_NAM": "16-3", "ACRE": ".75", "LONGITUDE": -64.87516766, "LATITUDE": 18.35101136, "OBJECTID_1": 7003, "PARCEL_NO_": "103203020400", "Tax_Legal_": "FRYDENDAHL 16-3 EAST END QTR.", "Name": "BERRY, NEIL & MICHAEL", "Address": "BOX 3632", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120900, "Improved_V": 227200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.05162008299999, "SHAPE_Area": 2572.0674422799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364695.807700000703335, 257973.224599998444319 ], [ 364687.825300000607967, 257964.961100000888109 ], [ 364654.580200001597404, 257977.749899998307228 ], [ 364656.978799998760223, 257987.683299999684095 ], [ 364659.336599998176098, 257994.879799999296665 ], [ 364660.915100000798702, 257998.903499998152256 ], [ 364663.305299997329712, 258002.300599999725819 ], [ 364667.26129999756813, 258011.198899999260902 ], [ 364675.223700001835823, 258023.085299998521805 ], [ 364684.809600003063679, 258033.718400001525879 ], [ 364691.204300001263618, 258040.314699999988079 ], [ 364709.816200003027916, 258005.047100000083447 ], [ 364717.364600002765656, 257990.743700001388788 ], [ 364706.196299999952316, 257984.286499999463558 ], [ 364695.807700000703335, 257973.224599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204013800", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".70", "LONGITUDE": -64.8737675, "LATITUDE": 18.35104673, "OBJECTID_1": 7090, "PARCEL_NO_": "103204013800", "Tax_Legal_": "FRYDENDAHL 26B EAST END QTR.", "Name": "WOOD PROPERTIES, LLC", "Address": "117 Manhattan Ave", "City": "New York", "State": "New York", "Zip": 10025, "Country": "United States", "Land_Value": 114600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.344869934, "SHAPE_Area": 2970.11912609 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364861.859499998390675, 257980.28319999948144 ], [ 364861.10360000282526, 257974.366399999707937 ], [ 364802.163599997758865, 257983.172100000083447 ], [ 364804.156400002539158, 258033.217599999159575 ], [ 364834.853799998760223, 258026.713799998164177 ], [ 364864.718000002205372, 258023.369699999690056 ], [ 364863.409199997782707, 257987.684099998325109 ], [ 364861.859499998390675, 257980.28319999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003038400", "MAP": "D9-7572-T005", "PARCEL_NAM": "1-52", "ACRE": ".504", "LONGITUDE": -64.90861535000001, "LATITUDE": 18.35102764, "OBJECTID_1": 5880, "PARCEL_NO_": "103003038400", "Tax_Legal_": "WINTBERG 1-52 GREAT NORTHSIDE QTR", "Name": "KENNINGTON, PAUL & KATHRYN", "Address": "702 Aquarius Way", "City": "La Grande", "State": "Oregon", "Zip": 97850, "Country": "United States", "Land_Value": 67000, "Improved_V": 332200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.181135033, "SHAPE_Area": 1777.94927712 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361164.571199998259544, 257993.499299999326468 ], [ 361180.963699996471405, 257963.694699998944998 ], [ 361170.489100001752377, 257958.514800000935793 ], [ 361148.050800003111362, 257942.076999999582767 ], [ 361114.648599997162819, 257982.122400000691414 ], [ 361120.278399996459484, 257983.857299998402596 ], [ 361142.835299998521805, 257986.363899998366833 ], [ 361153.295800000429153, 257988.982700001448393 ], [ 361162.136500000953674, 257992.432500001043081 ], [ 361164.571199998259544, 257993.499299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004033500", "MAP": null, "PARCEL_NAM": "3A-3", "ACRE": null, "LONGITUDE": -64.90123442, "LATITUDE": 18.35124237, "OBJECTID_1": 6158, "PARCEL_NO_": "103004033500", "Tax_Legal_": "3A-3&5B-4 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "CALLWOOD, REUBEN", "Address": "PO Box 307101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.235636495099996, "SHAPE_Area": 214.97188609400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361947.394900001585484, 258009.414200000464916 ], [ 361949.853399999439716, 258004.790199998766184 ], [ 361913.682700000703335, 257991.195300001651049 ], [ 361911.217000000178814, 257996.663499999791384 ], [ 361947.394900001585484, 258009.414200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204011800", "MAP": "F9-205-T57", "PARCEL_NAM": "22", "ACRE": null, "LONGITUDE": -64.87075546, "LATITUDE": 18.35064699, "OBJECTID_1": 7073, "PARCEL_NO_": "103204011800", "Tax_Legal_": "FRYDENDAHL ESTATE 22 EAST END QUARTER", "Name": "RAYMOND W & ANGELA D H WALTERS JOINT REVOC TRUST", "Address": "PO Box 12285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 300500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.461803084, "SHAPE_Area": 7276.0275490100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365203.595799997448921, 257999.545400001108646 ], [ 365194.184299997985363, 257968.437600001692772 ], [ 365181.454199999570847, 257948.279599998146296 ], [ 365165.640799999237061, 257911.419900000095367 ], [ 365164.182800002396107, 257893.253899998962879 ], [ 365128.509099997580051, 257915.971099998801947 ], [ 365094.483900003135204, 257934.480000000447035 ], [ 365097.67679999768734, 257938.305799998342991 ], [ 365157.346400000154972, 258033.153000000864267 ], [ 365164.695000000298023, 258022.447299998253584 ], [ 365169.572400003671646, 258017.843199998140335 ], [ 365172.851599998772144, 258011.537200000137091 ], [ 365177.730800002813339, 258006.721999999135733 ], [ 365185.826300002634525, 258002.988600000739098 ], [ 365197.139899998903275, 258000.125900000333786 ], [ 365203.595799997448921, 257999.545400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043600", "MAP": "G9-1900-T71", "PARCEL_NAM": "354", "ACRE": null, "LONGITUDE": -64.90451677, "LATITUDE": 18.3509368, "OBJECTID_1": 6246, "PARCEL_NO_": "103004043600", "Tax_Legal_": "354 ESTATE WINTBERG GR.NORTHSIDE QTR.", "Name": "WALLACE, JACKWREL A.& DAPHNE L.", "Address": "PO Box 11184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74900, "Improved_V": 288100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.50662444899999, "SHAPE_Area": 1978.8979728100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361609.676100000739098, 257979.373599998652935 ], [ 361592.384800001978874, 257939.169700000435114 ], [ 361589.252999998629093, 257928.167199999094009 ], [ 361587.651199996471405, 257926.887499999254942 ], [ 361585.233999997377396, 257926.656700000166893 ], [ 361583.614200003445148, 257927.487799998372793 ], [ 361579.532300002872944, 257933.364999998360872 ], [ 361556.24379999935627, 257958.372900001704693 ], [ 361577.232699997723103, 257991.096599999815226 ], [ 361581.097000002861023, 257997.121399998664856 ], [ 361609.676100000739098, 257979.373599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033500", "MAP": "A9-124-T69", "PARCEL_NAM": "5B-4", "ACRE": "0.23", "LONGITUDE": -64.90115024000001, "LATITUDE": 18.35113429, "OBJECTID_1": 6158, "PARCEL_NO_": "103004033500", "Tax_Legal_": "3A-3&5B-4 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "CALLWOOD, REUBEN", "Address": "PO Box 307101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.511347736, "SHAPE_Area": 836.824387968 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361949.853399999439716, 258004.790199998766184 ], [ 361951.47860000282526, 258003.325899999588728 ], [ 361953.132600001990795, 257998.484200000762939 ], [ 361954.761399999260902, 257996.597699999809265 ], [ 361958.983599998056889, 257974.256400000303984 ], [ 361917.796899996697903, 257981.5185999982059 ], [ 361913.682700000703335, 257991.195300001651049 ], [ 361949.853399999439716, 258004.790199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103030100", "MAP": "A9-124-T69", "PARCEL_NAM": "5A-1-12", "ACRE": ".23", "LONGITUDE": -64.89933429, "LATITUDE": 18.35111075, "OBJECTID_1": 6582, "PARCEL_NO_": "103103030100", "Tax_Legal_": "MANDAHL 5A-1-12 GT. NORTHSIDE", "Name": "VENZEN, MELVIN & ETHELINE", "Address": "PO Box 302262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 328700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.45698303899999, "SHAPE_Area": 2109.6052621399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362129.299900002777576, 257955.390299998223782 ], [ 362116.394000001251698, 257954.478500001132488 ], [ 362116.270300000905991, 257968.999800000339746 ], [ 362116.283299997448921, 258027.546500001102686 ], [ 362116.459700003266335, 258036.012800000607967 ], [ 362126.181500002741814, 258035.308600001037121 ], [ 362130.29839999973774, 258026.109900001436472 ], [ 362138.535899996757507, 258005.701200000941753 ], [ 362154.996699996292591, 257966.572500001639128 ], [ 362158.998099997639656, 257957.488499999046326 ], [ 362129.299900002777576, 257955.390299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103033000", "MAP": "D9-8529-T010", "PARCEL_NAM": "8-3", "ACRE": "1.014", "LONGITUDE": -64.896039, "LATITUDE": 18.35095358, "OBJECTID_1": 6611, "PARCEL_NO_": "103103033000", "Tax_Legal_": "MANDAHL 8-3 GT.NORTHSIDE QTR.", "Name": "BRIN, ALBERT R. & CELESTE S.", "Address": "PO Box 305265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.28065240199999, "SHAPE_Area": 4166.9322932699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362500.978399999439716, 257960.749400001019239 ], [ 362426.135200001299381, 257943.249400001019239 ], [ 362413.664700001478195, 257987.265799999237061 ], [ 362424.976499997079372, 257984.614199999719858 ], [ 362438.69820000231266, 257983.037799999117851 ], [ 362454.826200000941753, 257982.958700001239777 ], [ 362466.911899998784065, 257984.113099999725819 ], [ 362477.37780000269413, 257986.098600000143051 ], [ 362493.464500002563, 257990.874299999326468 ], [ 362514.354900002479553, 257999.700100000947714 ], [ 362522.376599997282028, 258004.620900001376867 ], [ 362554.897100001573563, 257973.434099998325109 ], [ 362500.978399999439716, 257960.749400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204010900", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".68", "LONGITUDE": -64.87306267, "LATITUDE": 18.35090532, "OBJECTID_1": 7064, "PARCEL_NO_": "103204010900", "Tax_Legal_": "FRYDENDAHL 26-A EAST END QUARTER", "Name": "WOOD PROPERTIES, LLC", "Address": "117 Manhattan Ave", "City": "New York", "State": "New York", "Zip": 10025, "Country": "United States", "Land_Value": 112000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.93382257799999, "SHAPE_Area": 3427.97906087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364864.718000002205372, 258023.369699999690056 ], [ 364885.712600000202656, 258019.952899999916553 ], [ 364908.348700001835823, 258013.172100000083447 ], [ 364975.792400002479553, 257952.717999998480082 ], [ 364975.826499998569489, 257948.707499999552965 ], [ 364972.610299997031689, 257947.625700000673532 ], [ 364945.922799997031689, 257956.69539999961853 ], [ 364912.716600000858307, 257973.733300000429153 ], [ 364861.859499998390675, 257980.28319999948144 ], [ 364863.409199997782707, 257987.684099998325109 ], [ 364864.718000002205372, 258023.369699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89199739, "LATITUDE": 18.35091841, "OBJECTID_1": 6598, "PARCEL_NO_": "103103031700", "Tax_Legal_": "11AH MANDAHL & 11Aj MANDAHL(1/12 Int.) NO.1 GREAT NORTHSIDE QTR", "Name": "KOCH, PAUL & ELIZABETH B.", "Address": "9762 Broadway Dr", "City": "Chagrin Falls", "State": "Ohio", "Zip": 44023, "Country": "United States", "Land_Value": 44600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.75632121000001, "SHAPE_Area": 1182.3458351500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362928.30969999730587, 257965.935600001364946 ], [ 362909.946099996566772, 257944.464899998158216 ], [ 362902.599399998784065, 257954.959399998188019 ], [ 362893.647200003266335, 257964.596500001847744 ], [ 362889.588699996471405, 257967.729699999094009 ], [ 362887.130199998617172, 257972.35359999909997 ], [ 362902.16780000180006, 258005.618400000035763 ], [ 362910.365800000727177, 257989.853399999439716 ], [ 362928.30969999730587, 257965.935600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004034300", "MAP": "A9-124-T69", "PARCEL_NAM": "5A-1-11", "ACRE": "0.23", "LONGITUDE": -64.89970452, "LATITUDE": 18.35108427, "OBJECTID_1": 6166, "PARCEL_NO_": "103004034300", "Tax_Legal_": "5A-1-11 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "FURY, DEBORAH L", "Address": "PO Box 303555", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19100, "Improved_V": 291300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.480575718, "SHAPE_Area": 966.09572959699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362109.57880000025034, 257997.231600001454353 ], [ 362109.8108000010252, 257970.002399999648333 ], [ 362074.320500001311302, 257971.189599998295307 ], [ 362074.165799997746944, 257989.342399999499321 ], [ 362074.088500000536442, 257998.418699998408556 ], [ 362109.57880000025034, 257997.231600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89167185, "LATITUDE": 18.35098463, "OBJECTID_1": 6599, "PARCEL_NO_": "103103031800", "Tax_Legal_": "MANDAHL 11AC GR NORTHSIDE QTR", "Name": "INNISS, DARYL & LOLITA K.B.", "Address": "11AC Estate Mandahl", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 56700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.92736950400001, "SHAPE_Area": 1101.1577812800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362965.338899999856949, 257973.415899999439716 ], [ 362939.666400000452995, 257958.006999999284744 ], [ 362929.882700003683567, 257970.592599999159575 ], [ 362929.056599996984005, 257972.907800000160933 ], [ 362926.621500000357628, 257974.787799999117851 ], [ 362920.09910000115633, 257983.178100001066923 ], [ 362916.825300000607967, 257988.85080000013113 ], [ 362943.325699999928474, 258001.733399998396635 ], [ 362965.338899999856949, 257973.415899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104025300", "MAP": "D9-1678-T81", "PARCEL_NAM": "4-17-A", "ACRE": ".51", "LONGITUDE": -64.8848894, "LATITUDE": 18.35085918, "OBJECTID_1": 6823, "PARCEL_NO_": "103104025300", "Tax_Legal_": "TARBOR & HARMONY 4-17A EAST END QTR", "Name": "DE LA CRUZ RIVERA, JORGE", "Address": "PO BOX 9706", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.004135883, "SHAPE_Area": 2002.9988714399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363685.552100002765656, 257958.6233000010252 ], [ 363648.632600001990795, 257938.267299998551607 ], [ 363646.965999998152256, 257944.586399998515844 ], [ 363645.340800002217293, 257946.050799999386072 ], [ 363636.142300002276897, 257984.605599999427795 ], [ 363633.678400002419949, 257989.862799998372793 ], [ 363661.750100001692772, 258007.613299999386072 ], [ 363685.552100002765656, 257958.6233000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8835762, "LATITUDE": 18.35082736, "OBJECTID_1": 6809, "PARCEL_NO_": "103104023800", "Tax_Legal_": "TABOR & HARMONY 4-16B EAST END QTR", "Name": "MERCER, LEROY A", "Address": "4-16B TABOR & HARMONY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70000, "Improved_V": 685800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.69721082000001, "SHAPE_Area": 1882.7502445299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363784.314999997615814, 258007.983199998736382 ], [ 363803.806800000369549, 257991.677400000393391 ], [ 363808.687799997627735, 257986.651099998503923 ], [ 363812.784100003540516, 257979.085299998521805 ], [ 363816.095600001513958, 257968.979899998754263 ], [ 363817.164499998092651, 257938.168999999761581 ], [ 363816.376199997961521, 257936.051600001752377 ], [ 363812.407499998807907, 257928.630800001323223 ], [ 363806.819099999964237, 257922.041200000792742 ], [ 363798.80629999935627, 257916.065000001341105 ], [ 363793.181900002062321, 257913.696899998933077 ], [ 363799.533500000834465, 257925.359099999070168 ], [ 363802.681400001049042, 257934.461800001561642 ], [ 363803.44820000231266, 257939.112199999392033 ], [ 363800.881800003349781, 257956.400800000876188 ], [ 363796.785499997437, 257963.966699998825788 ], [ 363788.652199998497963, 257972.132800001651049 ], [ 363770.834299996495247, 257981.274999998509884 ], [ 363760.323399998247623, 257984.566500000655651 ], [ 363784.314999997615814, 258007.983199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033400", "MAP": "F9-1171-T63", "PARCEL_NAM": "5B-1", "ACRE": ".502", "LONGITUDE": -64.90147474, "LATITUDE": 18.35084478, "OBJECTID_1": 6157, "PARCEL_NO_": "103004033400", "Tax_Legal_": "5B-1 ESTATE MANDAHL NO 1 GREAT NORTHSIDE QTR", "Name": "JUSTIN & ELIZABETH WORKMAN REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62600, "Improved_V": 437300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.59688840199999, "SHAPE_Area": 2780.6484661200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361881.088799998164177, 257949.88569999858737 ], [ 361867.078900001943111, 257973.718100000172853 ], [ 361913.682700000703335, 257991.195300001651049 ], [ 361917.796899996697903, 257981.5185999982059 ], [ 361927.652500003576279, 257960.489999998360872 ], [ 361939.970200002193451, 257934.415199998766184 ], [ 361904.603900000452995, 257921.037900000810623 ], [ 361898.914800003170967, 257926.268699999898672 ], [ 361893.992399998009205, 257936.14979999884963 ], [ 361887.466300003230572, 257944.96229999884963 ], [ 361881.088799998164177, 257949.88569999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89234067, "LATITUDE": 18.3509148, "OBJECTID_1": 6604, "PARCEL_NO_": "103103032300", "Tax_Legal_": "MANDAHL ESTATE 11Am No.1 GREAT NORTHSIDE QTR.", "Name": "LAUER, ROGER J.", "Address": "6618 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42900, "Improved_V": 196800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.30950913199999, "SHAPE_Area": 976.90374879299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362884.714800000190735, 257971.91160000115633 ], [ 362885.549900002777576, 257968.541000001132488 ], [ 362887.167900003492832, 257967.920899998396635 ], [ 362892.867899999022484, 257961.423700001090765 ], [ 362900.993900001049042, 257954.10190000012517 ], [ 362905.889300003647804, 257947.386999998241663 ], [ 362907.536100000143051, 257943.389699999243021 ], [ 362845.166000001132488, 257976.23200000077486 ], [ 362847.394299998879433, 257998.626200001686811 ], [ 362884.714800000190735, 257971.91160000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90528371000001, "LATITUDE": 18.35085821, "OBJECTID_1": 6247, "PARCEL_NO_": "103004043700", "Tax_Legal_": "WINTBERG 348 GR NORTHSIDE", "Name": "RUAN, LEVETTE D. & BARBARA HUBBARD", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83700, "Improved_V": 297800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.99826524599999, "SHAPE_Area": 3216.66454518 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361543.032499998807907, 257958.39750000089407 ], [ 361499.050300002098083, 257915.185499999672174 ], [ 361477.098300002515316, 257936.326299998909235 ], [ 361462.402999997138977, 257957.526500001549721 ], [ 361459.122000001370907, 257964.043499998748302 ], [ 361525.850000001490116, 257987.598900001496077 ], [ 361531.601999998092651, 257974.98030000180006 ], [ 361543.032499998807907, 257958.39750000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003038500", "MAP": "C9-782-T64", "PARCEL_NAM": "1-145", "ACRE": null, "LONGITUDE": -64.90898706, "LATITUDE": 18.3508198, "OBJECTID_1": 5881, "PARCEL_NO_": "103003038500", "Tax_Legal_": "1-145 WINTBERG GREAT NORTHSIDE QTR", "Name": "PARSON, VERDELLE V", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 74000, "Improved_V": 387500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.73867628799999, "SHAPE_Area": 2586.2148114400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361136.90089999884367, 257925.731499999761581 ], [ 361074.021099999547005, 257923.739199999719858 ], [ 361074.789700001478195, 257928.17850000038743 ], [ 361087.478500001132488, 257953.191300000995398 ], [ 361096.222099997103214, 257968.039500001817942 ], [ 361105.816899999976158, 257977.617199998348951 ], [ 361114.648599997162819, 257982.122400000691414 ], [ 361148.050800003111362, 257942.076999999582767 ], [ 361140.048900000751019, 257934.834300000220537 ], [ 361136.90089999884367, 257925.731499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004034200", "MAP": "A9-124-T69", "PARCEL_NAM": "5A-1-9", "ACRE": "0.23", "LONGITUDE": -64.89998906, "LATITUDE": 18.35095823, "OBJECTID_1": 6165, "PARCEL_NO_": "103004034200", "Tax_Legal_": "5A-1-9 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "WILLIAMS, RITA", "Address": "5A-1-9 MANDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23200, "Improved_V": 199000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.87369608200001, "SHAPE_Area": 933.69853435100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362074.520000003278255, 257947.759799998253584 ], [ 362070.828400000929832, 257943.267799999564886 ], [ 362060.827100001275539, 257952.316599998623133 ], [ 362055.814300000667572, 257959.10359999909997 ], [ 362047.227454196079634, 257970.622951898898464 ], [ 362039.027300000190735, 257982.420699998736382 ], [ 362074.165799997746944, 257989.342399999499321 ], [ 362074.320500001311302, 257971.189599998295307 ], [ 362074.520000003278255, 257947.759799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031000", "MAP": "D9-6620-T99", "PARCEL_NAM": "8-1-C", "ACRE": null, "LONGITUDE": -64.89473427, "LATITUDE": 18.35082198, "OBJECTID_1": 6591, "PARCEL_NO_": "103103031000", "Tax_Legal_": "MANDAHL 8-1-C # 1 GRT NORTHSIDE QRT", "Name": "SMITH, PERRY E. & ARLEEN T.", "Address": "PO BOX 304476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.876667234, "SHAPE_Area": 3950.8621948800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362588.976199999451637, 257926.894299998879433 ], [ 362574.644599996507168, 257978.232700001448393 ], [ 362641.003499999642372, 257993.981699999421835 ], [ 362663.230599999427795, 257940.545800000429153 ], [ 362631.831200003623962, 257934.800400000065565 ], [ 362588.976199999451637, 257926.894299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-6338-T97", "PARCEL_NAM": "22-35-2", "ACRE": null, "LONGITUDE": -64.89397842, "LATITUDE": 18.35789601, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.02241864699999, "SHAPE_Area": 670.44610057499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362705.825300000607967, 258714.552299998700619 ], [ 362703.429799996316433, 258711.788499999791384 ], [ 362700.23870000243187, 258707.751600001007318 ], [ 362697.002700001001358, 258708.991700001060963 ], [ 362695.364900000393391, 258711.933600001037121 ], [ 362691.959799997508526, 258733.015099998563528 ], [ 362682.924900002777576, 258752.361699998378754 ], [ 362678.045699998736382, 258757.176899999380112 ], [ 362671.582599997520447, 258758.601700000464916 ], [ 362672.324199996888638, 258766.207100000232458 ], [ 362677.970200002193451, 258766.042300000786781 ], [ 362681.18639999628067, 258767.124000001698732 ], [ 362684.395499996840954, 258769.050200000405312 ], [ 362686.7820999994874, 258772.86939999833703 ], [ 362690.831600002944469, 258770.791600000113249 ], [ 362693.259499996900558, 258769.756000000983477 ], [ 362690.071999996900558, 258765.296900000423193 ], [ 362689.314300000667572, 258759.5912000015378 ], [ 362690.142200000584126, 258757.064899999648333 ], [ 362692.580899998545647, 258754.762800000607967 ], [ 362698.334799997508526, 258741.933200001716614 ], [ 362700.821999996900558, 258733.932000000029802 ], [ 362702.546099998056889, 258720.858300000429153 ], [ 362704.19650000333786, 258716.438799999654293 ], [ 362705.825300000607967, 258714.552299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89347636, "LATITUDE": 18.35714667, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.7799833308, "SHAPE_Area": 35.232973048799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362747.355499997735023, 258666.973999999463558 ], [ 362748.206699997186661, 258661.703600000590086 ], [ 362745.012100003659725, 258658.088899999856949 ], [ 362738.584899999201298, 258655.292100001126528 ], [ 362747.355499997735023, 258666.973999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89346011000001, "LATITUDE": 18.35706825, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.092596877200002, "SHAPE_Area": 135.57049416300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362749.149700000882149, 258645.668200001120567 ], [ 362745.134300000965595, 258643.735500000417233 ], [ 362738.584899999201298, 258655.292100001126528 ], [ 362745.012100003659725, 258658.088899999856949 ], [ 362748.206699997186661, 258661.703600000590086 ], [ 362753.166900001466274, 258647.389800000935793 ], [ 362749.149700000882149, 258645.668200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90331482000001, "LATITUDE": 18.35544866, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 400.893603321, "SHAPE_Area": 1480.9026944100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361690.751999996602535, 258508.238699998706579 ], [ 361700.465499997138977, 258503.885200001299381 ], [ 361715.067299999296665, 258493.661100000143051 ], [ 361716.690700002014637, 258492.407800000160933 ], [ 361722.377999998629093, 258487.388199999928474 ], [ 361728.895099997520447, 258479.631000000983477 ], [ 361730.525700002908707, 258477.533399999141693 ], [ 361733.799500003457069, 258471.860700000077486 ], [ 361737.136200003325939, 258458.800200000405312 ], [ 361737.98929999768734, 258453.318799998611212 ], [ 361738.016199998557568, 258450.15260000154376 ], [ 361738.093599997460842, 258441.076200000941753 ], [ 361737.312399998307228, 258438.114500001072884 ], [ 361736.527699999511242, 258435.57490000128746 ], [ 361734.940200001001358, 258432.606600001454353 ], [ 361730.968000002205372, 258425.607999999076128 ], [ 361729.3716000020504, 258423.695099998265505 ], [ 361722.967799998819828, 258418.15430000051856 ], [ 361720.561499997973442, 258416.656899999827147 ], [ 361714.143399998545647, 258412.804699998348951 ], [ 361706.100000001490116, 258410.416900001466274 ], [ 361698.841399997472763, 258410.568599998950958 ], [ 361677.870099999010563, 258411.241300001740456 ], [ 361678.611699998378754, 258418.846700001507998 ], [ 361703.618100002408028, 258417.784800000488758 ], [ 361714.874099999666214, 258421.676600001752377 ], [ 361720.487800002098083, 258425.311200000345707 ], [ 361723.685999996960163, 258428.503800000995398 ], [ 361726.875299997627735, 258432.7516999989748 ], [ 361729.231299996376038, 258440.159299999475479 ], [ 361730.815200001001358, 258443.549699999392033 ], [ 361729.904600001871586, 258455.785700000822544 ], [ 361727.422700002789497, 258463.1537000015378 ], [ 361726.578599996864796, 258467.579700000584126 ], [ 361725.75789999961853, 258469.261799998581409 ], [ 361718.403999999165535, 258480.600600000470877 ], [ 361703.786100000143051, 258492.724399998784065 ], [ 361695.679799996316433, 258497.724300000816584 ], [ 361683.549199998378754, 258501.846900001168251 ], [ 361676.272600002586842, 258504.109400000423193 ], [ 361668.195100001990795, 258505.73200000077486 ], [ 361656.894100002944469, 258507.117199998348951 ], [ 361650.823399998247623, 258508.039500001817942 ], [ 361647.516099996864796, 258507.907200001180172 ], [ 361649.050899997353554, 258511.186000000685453 ], [ 361650.407600000500679, 258511.285999998450279 ], [ 361658.45099999755621, 258513.673799999058247 ], [ 361660.864500001072884, 258514.326900001615286 ], [ 361673.774499997496605, 258513.377000000327826 ], [ 361689.13400000333786, 258508.85869999974966 ], [ 361690.751999996602535, 258508.238699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "900B-2 REM", "ACRE": null, "LONGITUDE": -64.90619237, "LATITUDE": 18.35490324, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.34249047399999, "SHAPE_Area": 3679.9108058100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361425.860600002110004, 258436.575300000607967 ], [ 361441.033600002527237, 258383.549499999731779 ], [ 361418.498199999332428, 258378.509899999946356 ], [ 361400.84740000218153, 258368.021800000220537 ], [ 361395.681699998676777, 258365.063900001347065 ], [ 361387.335100002586842, 258360.284600000828505 ], [ 361362.027699999511242, 258407.000799998641014 ], [ 361387.401100002229214, 258423.681600000709295 ], [ 361384.384800001978874, 258428.602800000458956 ], [ 361394.703599996864796, 258434.317899998277426 ], [ 361405.974799998104572, 258437.016600001603365 ], [ 361406.927299998700619, 258433.047899998724461 ], [ 361425.860600002110004, 258436.575300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "A9-200-T73", "PARCEL_NAM": "23-1", "ACRE": null, "LONGITUDE": -64.89514707, "LATITUDE": 18.35508569, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.14624427499999, "SHAPE_Area": 169.18896854 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362587.08669999986887, 258454.357599999755621 ], [ 362537.717500001192093, 258380.915199998766184 ], [ 362559.986699998378754, 258417.194400001317263 ], [ 362583.841600000858307, 258456.653099998831749 ], [ 362587.08669999986887, 258454.357599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103015200", "MAP": "A9-200-T73", "PARCEL_NAM": "23-5", "ACRE": "0.24", "LONGITUDE": -64.89559635000001, "LATITUDE": 18.35495322, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.68869324600001, "SHAPE_Area": 858.69711958200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362513.376999996602535, 258398.447799999266863 ], [ 362497.1537000015378, 258409.714099999517202 ], [ 362504.421300001442432, 258408.506999999284744 ], [ 362524.330899998545647, 258437.800900001078844 ], [ 362531.625500001013279, 258433.427600000053644 ], [ 362542.9695999994874, 258426.976599998772144 ], [ 362523.072599999606609, 258396.205099999904633 ], [ 362513.376999996602535, 258398.447799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.90384984000001, "LATITUDE": 18.35501425, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.977196771, "SHAPE_Area": 479.72805703500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361677.870099999010563, 258411.241300001740456 ], [ 361670.613300003111362, 258411.18189999833703 ], [ 361626.267899997532368, 258410.607900001108646 ], [ 361623.75900000333786, 258421.142000000923872 ], [ 361647.959200002253056, 258420.073499999940395 ], [ 361678.611699998378754, 258418.846700001507998 ], [ 361677.870099999010563, 258411.241300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89328274, "LATITUDE": 18.35418487, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.02337092200003, "SHAPE_Area": 586.869369044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362717.779799997806549, 258257.843699999153614 ], [ 362731.379199996590614, 258270.620600000023842 ], [ 362733.787299998104572, 258271.906899999827147 ], [ 362736.978399999439716, 258275.943799998611212 ], [ 362740.138899996876717, 258283.568999998271465 ], [ 362740.108400002121925, 258287.157400000840425 ], [ 362747.235699996352196, 258302.41440000012517 ], [ 362779.846799999475479, 258355.243599999696016 ], [ 362781.435999996960163, 258358.000900000333786 ], [ 362782.22070000320673, 258360.540399998426437 ], [ 362785.397399999201298, 258366.265900000929832 ], [ 362786.997500002384186, 258367.756700001657009 ], [ 362788.574100002646446, 258371.991399999707937 ], [ 362790.174199998378754, 258373.482200000435114 ], [ 362795.715899996459484, 258385.559900000691414 ], [ 362797.314099997282028, 258387.261700000613928 ], [ 362802.054899998009205, 258398.699599999934435 ], [ 362816.397699996829033, 258418.870799999684095 ], [ 362818.831000000238419, 258417.201999999582767 ], [ 362806.079199999570847, 258399.576900001615286 ], [ 362802.90429999679327, 258393.640299998223782 ], [ 362799.73480000346899, 258387.07039999961853 ], [ 362798.944700002670288, 258385.164099998772144 ], [ 362797.368000000715256, 258380.929400000721216 ], [ 362794.1824000030756, 258376.259199999272823 ], [ 362792.596699997782707, 258373.079799998551607 ], [ 362787.845100000500679, 258362.908500000834465 ], [ 362784.655900001525879, 258358.660500001162291 ], [ 362782.271099999547005, 258354.630199998617172 ], [ 362781.47919999808073, 258352.934999998658895 ], [ 362777.51410000026226, 258345.092000000178814 ], [ 362771.947300001978874, 258335.969500001519918 ], [ 362761.601899996399879, 258319.841699998825788 ], [ 362749.667199999094009, 258300.956700000911951 ], [ 362743.340800002217293, 258286.339400000870228 ], [ 362741.794699996709824, 258278.51630000025034 ], [ 362739.411700002849102, 258274.274900000542402 ], [ 362735.421499997377396, 258269.387099999934435 ], [ 362718.616599999368191, 258254.261999998241663 ], [ 362716.181500002741814, 258256.1418999992311 ], [ 362717.779799997806549, 258257.843699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89439403, "LATITUDE": 18.35463806, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.63566880799999, "SHAPE_Area": 501.25458458000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362647.67339999973774, 258411.133099999278784 ], [ 362650.848399996757507, 258410.392200000584126 ], [ 362654.184900000691414, 258410.839800000190735 ], [ 362654.713500000536442, 258411.080699998885393 ], [ 362656.800499998033047, 258412.031800001859665 ], [ 362660.164499998092651, 258409.67119999974966 ], [ 362658.040600001811981, 258407.654599998146296 ], [ 362655.972000002861023, 258406.726500000804663 ], [ 362654.234999999403954, 258405.947200000286102 ], [ 362650.390799999237061, 258406.535300001502037 ], [ 362647.955700002610683, 258408.415199998766184 ], [ 362641.485399998724461, 258410.684300001710653 ], [ 362633.436700001358986, 258408.929699998348951 ], [ 362632.671700000762939, 258404.068199999630451 ], [ 362642.431999996304512, 258394.226700000464916 ], [ 362653.029100000858307, 258380.80350000038743 ], [ 362658.770400002598763, 258369.451400000602007 ], [ 362663.725199997425079, 258355.770899999886751 ], [ 362675.159199997782707, 258338.765900000929832 ], [ 362671.960900001227856, 258335.573300000280142 ], [ 362659.711599998176098, 258353.627099998295307 ], [ 362653.099299997091293, 258372.571400001645088 ], [ 362638.421999998390675, 258391.660799998790026 ], [ 362629.475199997425079, 258400.664599999785423 ], [ 362627.833800002932549, 258404.028599999845028 ], [ 362628.589800000190735, 258409.945500001311302 ], [ 362630.184399999678135, 258412.069400001317263 ], [ 362633.393500000238419, 258413.99549999833107 ], [ 362636.596799999475479, 258414.721900001168251 ], [ 362643.334200002253056, 258412.297200001776218 ], [ 362647.67339999973774, 258411.133099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88404937, "LATITUDE": 18.3547996, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.595249913499998, "SHAPE_Area": 105.01777978200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363744.675499998033047, 258401.559300001710653 ], [ 363738.964800000190735, 258409.322999998927116 ], [ 363736.49549999833107, 258415.213500000536442 ], [ 363742.112700000405312, 258418.425799999386072 ], [ 363745.406300000846386, 258410.431200001388788 ], [ 363749.47919999808073, 258405.609400000423193 ], [ 363747.108800001442432, 258399.890500001609325 ], [ 363744.675499998033047, 258401.559300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "900B-1", "ACRE": null, "LONGITUDE": -64.90596509, "LATITUDE": 18.35436647, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.04272587200001, "SHAPE_Area": 3760.7246158399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361461.757799997925758, 258317.224599998444319 ], [ 361463.449600003659725, 258307.950399998575449 ], [ 361445.69990000128746, 258309.071600001305342 ], [ 361436.038599997758865, 258307.303800001740456 ], [ 361430.410499997437, 258305.357900001108646 ], [ 361424.793300002813339, 258302.145500000566244 ], [ 361420.792300000786781, 258298.52419999986887 ], [ 361387.335100002586842, 258360.284600000828505 ], [ 361395.681699998676777, 258365.063900001347065 ], [ 361400.84740000218153, 258368.021800000220537 ], [ 361418.498199999332428, 258378.509899999946356 ], [ 361441.033600002527237, 258383.549499999731779 ], [ 361452.654600001871586, 258344.592300001531839 ], [ 361454.292400002479553, 258341.650400001555681 ], [ 361455.973399996757507, 258333.642599999904633 ], [ 361457.611199997365475, 258330.700699999928474 ], [ 361458.462499998509884, 258325.430300001055002 ], [ 361461.757799997925758, 258317.224599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89153748, "LATITUDE": 18.35413213, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.50039949000001, "SHAPE_Area": 957.67191102799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362955.168999999761581, 258315.304200001060963 ], [ 362949.523000001907349, 258315.469099998474121 ], [ 362942.251800000667572, 258317.098299998790026 ], [ 362932.525700002908707, 258322.929400000721216 ], [ 362929.269900001585484, 258326.491300001740456 ], [ 362925.193400003015995, 258331.735300000756979 ], [ 362922.722300000488758, 258337.836800001561642 ], [ 362921.888999998569489, 258340.996300000697374 ], [ 362921.025200001895428, 258347.744300000369549 ], [ 362920.967600002884865, 258354.498799998313189 ], [ 362932.94539999961853, 258368.317899998277426 ], [ 362931.402900002896786, 258360.072599999606609 ], [ 362930.73870000243187, 258343.390799999237061 ], [ 362933.220499999821186, 258336.022799998521805 ], [ 362938.10700000077486, 258330.363299999386072 ], [ 362939.730400003492832, 258329.109999999403954 ], [ 362943.785300001502037, 258326.399000000208616 ], [ 362949.443899996578693, 258324.756599999964237 ], [ 362994.611800000071526, 258323.4375 ], [ 362998.643299996852875, 258323.470499999821186 ], [ 362997.919799998402596, 258313.754299998283386 ], [ 362955.168999999761581, 258315.304200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89689334000001, "LATITUDE": 18.35305947, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.77201789499998, "SHAPE_Area": 1335.87085613 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362341.036899998784065, 258182.988400001078844 ], [ 362337.793700002133846, 258185.072799999266863 ], [ 362342.559600003063679, 258193.555599998682737 ], [ 362349.049699999392033, 258188.964600000530481 ], [ 362351.491999998688698, 258186.24040000140667 ], [ 362357.159599997103214, 258183.542599998414516 ], [ 362367.630800001323223, 258184.894799999892712 ], [ 362371.656999997794628, 258185.561099998652935 ], [ 362383.722900003194809, 258189.037300001829863 ], [ 362387.723899997770786, 258192.658700000494719 ], [ 362389.307800002396107, 258196.049100000411272 ], [ 362405.752999998629093, 258253.390099998563528 ], [ 362408.163000002503395, 258254.465300001204014 ], [ 362422.712499998509884, 258250.362500000745058 ], [ 362421.146700002253056, 258244.861200001090765 ], [ 362416.308799996972084, 258244.821600001305342 ], [ 362413.902400001883507, 258243.324299998581409 ], [ 362402.943099997937679, 258204.604499999433756 ], [ 362397.451800003647804, 258186.616599999368191 ], [ 362394.262500002980232, 258182.368599999696016 ], [ 362387.018299996852875, 258180.831599999219179 ], [ 362366.11710000038147, 258173.272300001233816 ], [ 362359.673799999058247, 258172.375199999660254 ], [ 362354.01519999653101, 258174.017599999904633 ], [ 362341.036899998784065, 258182.988400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89741532, "LATITUDE": 18.35310125, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.948775493, "SHAPE_Area": 413.859895827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362342.559600003063679, 258193.555599998682737 ], [ 362337.793700002133846, 258185.072799999266863 ], [ 362336.173900000751019, 258185.903900001198053 ], [ 362332.097300000488758, 258191.147900000214577 ], [ 362330.464900001883507, 258193.456599999219179 ], [ 362329.642399996519089, 258195.349700000137091 ], [ 362327.991999998688698, 258199.769099999219179 ], [ 362326.275100000202656, 258211.998500000685453 ], [ 362324.495300002396107, 258231.615699999034405 ], [ 362326.912399999797344, 258231.846500001847744 ], [ 362333.359300002455711, 258232.32149999961257 ], [ 362336.85249999910593, 258200.897100001573563 ], [ 362339.314599998295307, 258195.850999999791384 ], [ 362342.559600003063679, 258193.555599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89589491, "LATITUDE": 18.35299747, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 358.201239585, "SHAPE_Area": 913.47471769799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362573.181100003421307, 258214.483500000089407 ], [ 362573.848999999463558, 258209.80290000140667 ], [ 362539.9712999984622, 258211.003299999982119 ], [ 362492.38629999756813, 258212.091499999165535 ], [ 362468.191500000655651, 258212.526799999177456 ], [ 362464.181500002741814, 258209.960799999535084 ], [ 362459.388599999248981, 258204.644200000911951 ], [ 362455.457699999213219, 258192.790800001472235 ], [ 362458.8125, 258177.619600001722574 ], [ 362460.446699999272823, 258175.099800001829863 ], [ 362461.274599999189377, 258172.573499999940395 ], [ 362464.5033999979496, 258172.177700001746416 ], [ 362466.936700001358986, 258170.508900001645088 ], [ 362469.402400001883507, 258165.040600001811981 ], [ 362467.831200003623962, 258160.172600001096725 ], [ 362463.018500000238419, 258157.17790000140667 ], [ 362458.177000001072884, 258157.560499999672174 ], [ 362454.095100000500679, 258163.437699999660254 ], [ 362453.263599999248981, 258166.386199999600649 ], [ 362455.64299999922514, 258171.049699999392033 ], [ 362454.815099999308586, 258173.576099999248981 ], [ 362451.409999996423721, 258194.657499998807907 ], [ 362452.95610000193119, 258202.480700001120567 ], [ 362456.931900002062321, 258209.057100001722574 ], [ 362461.728399999439716, 258213.951499998569489 ], [ 362467.345600001513958, 258217.163899999111891 ], [ 362498.795400001108646, 258216.999099999666214 ], [ 362573.181100003421307, 258214.483500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89454877, "LATITUDE": 18.35309192, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.063834242699997, "SHAPE_Area": 47.4878558351 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362629.464800000190735, 258212.580099999904633 ], [ 362643.161300003528595, 258213.958799999207258 ], [ 362639.158500000834465, 258210.548500001430511 ], [ 362631.12780000269413, 258206.683100000023842 ], [ 362629.464800000190735, 258212.580099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89521735, "LATITUDE": 18.35262574, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.802424330400001, "SHAPE_Area": 94.973340756100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362579.055500000715256, 258166.571400001645088 ], [ 362550.188299998641014, 258147.547800000756979 ], [ 362550.161300003528595, 258150.713899999856949 ], [ 362579.026799999177456, 258169.948600001633167 ], [ 362579.055500000715256, 258166.571400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89396275, "LATITUDE": 18.35260364, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.33078316500001, "SHAPE_Area": 621.277530867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362635.709600001573563, 258142.125999998301268 ], [ 362633.881099998950958, 258146.444299999624491 ], [ 362672.638099998235703, 258161.426699999719858 ], [ 362681.469800002872944, 258165.93189999833703 ], [ 362688.708599999547005, 258168.102099999785423 ], [ 362696.762800000607967, 258169.223499998450279 ], [ 362705.63400000333786, 258169.08500000089407 ], [ 362716.13400000333786, 258167.059999998658895 ], [ 362733.140299998223782, 258158.544300001114607 ], [ 362748.490800000727177, 258155.081399999558926 ], [ 362757.399800002574921, 258150.510299999266863 ], [ 362761.496100001037121, 258142.944400001317263 ], [ 362746.916000001132488, 258150.635499998927116 ], [ 362731.565499998629093, 258154.098499998450279 ], [ 362713.749300003051758, 258163.029699999839067 ], [ 362704.0591000020504, 258164.63910000026226 ], [ 362691.165299996733665, 258163.6891999989748 ], [ 362686.338200002908707, 258162.383200000971556 ], [ 362679.903899997472763, 258160.430700000375509 ], [ 362675.0912000015378, 258157.436000000685453 ], [ 362635.709600001573563, 258142.125999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89521882, "LATITUDE": 18.35259256, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.558464946200004, "SHAPE_Area": 113.358787533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362579.888800002634525, 258163.411800000816584 ], [ 362550.222499996423721, 258143.537300001829863 ], [ 362550.188299998641014, 258147.547800000756979 ], [ 362579.055500000715256, 258166.571400001645088 ], [ 362579.888800002634525, 258163.411800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004030900", "MAP": "B9-447-T75", "PARCEL_NAM": "4K", "ACRE": "1.15", "LONGITUDE": -64.90037459, "LATITUDE": 18.35234145, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.83467633399999, "SHAPE_Area": 5013.2049527299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362061.209799997508526, 258090.350099999457598 ], [ 361987.066799998283386, 258085.310300000011921 ], [ 361982.427500002086163, 258156.622000001370907 ], [ 362052.549699999392033, 258160.362300001084805 ], [ 362053.654500000178814, 258125.329799998551607 ], [ 362061.209799997508526, 258090.350099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89388571000001, "LATITUDE": 18.3525077, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.517232072, "SHAPE_Area": 239.48089547500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362725.327100001275539, 258129.138399999588728 ], [ 362719.637999996542931, 258134.369199998676777 ], [ 362703.407499998807907, 258146.479800000786781 ], [ 362688.002999998629093, 258156.275100000202656 ], [ 362679.903899997472763, 258160.430700000375509 ], [ 362686.338200002908707, 258162.383200000971556 ], [ 362709.037299998104572, 258148.214600000530481 ], [ 362728.521799996495247, 258132.753100000321865 ], [ 362725.327100001275539, 258129.138399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89553843, "LATITUDE": 18.3520372, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.42560330399999, "SHAPE_Area": 361.94536554699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362542.572899997234344, 258094.923099998384714 ], [ 362513.912500001490116, 258051.625500001013279 ], [ 362506.673699997365475, 258049.455299999564886 ], [ 362506.621500000357628, 258055.57660000026226 ], [ 362507.415299996733665, 258057.060699999332428 ], [ 362513.0253000035882, 258061.117400001734495 ], [ 362517.058600001037121, 258060.939300000667572 ], [ 362526.613899998366833, 258075.160799998790026 ], [ 362538.552199997007847, 258093.623700000345707 ], [ 362540.123400002717972, 258098.491700001060963 ], [ 362541.689300000667572, 258103.992899999022484 ], [ 362540.868600003421307, 258105.675000000745058 ], [ 362539.117499999701977, 258121.914799999445677 ], [ 362539.848300002515316, 258130.786699999123812 ], [ 362539.828500002622604, 258133.108600001782179 ], [ 362540.606100000441074, 258136.492499999701977 ], [ 362541.392599999904633, 258138.820900000631809 ], [ 362545.348600000143051, 258147.719200000166893 ], [ 362550.161300003528595, 258150.713899999856949 ], [ 362550.188299998641014, 258147.547800000756979 ], [ 362547.7837999984622, 258145.839299999177456 ], [ 362546.995399996638298, 258143.721900001168251 ], [ 362545.398999996483326, 258141.809000000357628 ], [ 362543.813299998641014, 258138.629700001329184 ], [ 362543.04839999973774, 258133.768199998885393 ], [ 362542.355400003492832, 258120.463700000196695 ], [ 362544.126199997961521, 258101.901900000870228 ], [ 362542.572899997234344, 258094.923099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004030900", "MAP": "B9-447-T75", "PARCEL_NAM": "REM 4", "ACRE": "1.25", "LONGITUDE": -64.90037343, "LATITUDE": 18.35176964, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.96129948599997, "SHAPE_Area": 4537.8094664600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361984.379199996590614, 258022.171399999409914 ], [ 361981.51070000231266, 258074.921300001442432 ], [ 361980.6199000030756, 258084.835400000214577 ], [ 361987.066799998283386, 258085.310300000011921 ], [ 362061.209799997508526, 258090.350099999457598 ], [ 362062.086199998855591, 258082.124699998646975 ], [ 362068.81360000371933, 258049.671300001442432 ], [ 362012.551600001752377, 258028.101500000804663 ], [ 361985.223300002515316, 258017.745299998670816 ], [ 361984.379199996590614, 258022.171399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89559807000001, "LATITUDE": 18.35168311, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.82878959199999, "SHAPE_Area": 303.73389904599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362529.548900000751019, 258014.600999999791384 ], [ 362526.334499999880791, 258013.308100000023842 ], [ 362513.912500001490116, 258051.625500001013279 ], [ 362542.572899997234344, 258094.923099998384714 ], [ 362543.415200002491474, 258090.708200000226498 ], [ 362521.126199997961521, 258056.750799998641014 ], [ 362522.000799998641014, 258048.736400000751019 ], [ 362518.806100003421307, 258045.121599998325109 ], [ 362529.548900000751019, 258014.600999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9042432, "LATITUDE": 18.35157082, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.39174768300001, "SHAPE_Area": 215.99059600199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361630.407999999821186, 258019.274300001561642 ], [ 361627.207999996840954, 258016.29280000180006 ], [ 361612.57209999859333, 258030.527399998158216 ], [ 361600.378499999642372, 258042.03770000115037 ], [ 361597.156800001859665, 258041.589099999517202 ], [ 361593.902800001204014, 258044.940000001341105 ], [ 361599.505599997937679, 258049.840999998152256 ], [ 361630.407999999821186, 258019.274300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89567575, "LATITUDE": 18.35150954, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.683626451899997, "SHAPE_Area": 132.08250753900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362526.334499999880791, 258013.308100000023842 ], [ 362523.922700002789497, 258012.443999998271465 ], [ 362513.167300000786781, 258044.442200001329184 ], [ 362509.121399998664856, 258046.097800001502037 ], [ 362506.673699997365475, 258049.455299999564886 ], [ 362513.912500001490116, 258051.625500001013279 ], [ 362526.334499999880791, 258013.308100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87424711, "LATITUDE": 18.35154789, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.111019733199996, "SHAPE_Area": 191.312334171 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364778.205200001597404, 258050.52589999884367 ], [ 364762.84570000320673, 258055.044300001114607 ], [ 364799.032600000500679, 258066.739500001072884 ], [ 364800.67400000244379, 258063.375500001013279 ], [ 364783.800800003111362, 258056.271299999207258 ], [ 364778.205200001597404, 258050.52589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89224839000001, "LATITUDE": 18.35149603, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.280291769200005, "SHAPE_Area": 129.35823937000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362890.634900003671646, 258034.232700001448393 ], [ 362889.065399996936321, 258029.153599999845028 ], [ 362887.45099999755621, 258029.351500000804663 ], [ 362885.816799998283386, 258031.871199999004602 ], [ 362876.110500000417233, 258035.380399998277426 ], [ 362876.144599996507168, 258031.369899999350309 ], [ 362871.299500003457069, 258032.174600001424551 ], [ 362873.608800001442432, 258045.070199999958277 ], [ 362877.644000001251698, 258044.681099999696016 ], [ 362876.879000000655651, 258039.819600000977516 ], [ 362883.342100001871586, 258038.394900001585484 ], [ 362890.634900003671646, 258034.232700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90483973000001, "LATITUDE": 18.35137013, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.809334903800007, "SHAPE_Area": 195.82225421000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361533.038400001823902, 257995.679299999028444 ], [ 361532.185400001704693, 258001.160700000822544 ], [ 361548.201899997889996, 258014.168499998748302 ], [ 361554.603900000452995, 258019.920400001108646 ], [ 361555.394000001251698, 258021.826699998229742 ], [ 361558.606700003147125, 258023.330699998885393 ], [ 361561.029200002551079, 258022.928300000727177 ], [ 361563.457099996507168, 258021.892700001597404 ], [ 361565.078699998557568, 258020.850499998778105 ], [ 361566.704000003635883, 258019.386199999600649 ], [ 361566.732699997723103, 258016.008900001645088 ], [ 361563.511100001633167, 258015.560400001704693 ], [ 361561.869699999690056, 258018.924400001764297 ], [ 361558.646200001239777, 258018.686900001019239 ], [ 361557.854299999773502, 258016.991700001060963 ], [ 361552.2550999969244, 258011.668600000441074 ], [ 361533.038400001823902, 257995.679299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004034900", "MAP": "A9-124-T69", "PARCEL_NAM": "5B-5", "ACRE": "0.23", "LONGITUDE": -64.90077178, "LATITUDE": 18.35092924, "OBJECTID_1": 6172, "PARCEL_NO_": "103004034900", "Tax_Legal_": "5B-5 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "CLERMOND, DIDIER & MERVIN", "Address": "PO Box 7966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28800, "Improved_V": 169700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.824301092, "SHAPE_Area": 923.63163962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361969.699400000274181, 257946.901900000870228 ], [ 361964.577399998903275, 257980.212799999862909 ], [ 361966.134300000965595, 257986.769400000572205 ], [ 361971.767700001597404, 257988.082100000232458 ], [ 361990.411799997091293, 257976.624499998986721 ], [ 361997.882600001990795, 257951.565499998629093 ], [ 361969.699400000274181, 257946.901900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104025000", "MAP": "D9-2872-T84", "PARCEL_NAM": "4-16-C", "ACRE": ".04", "LONGITUDE": -64.88434247000001, "LATITUDE": 18.35103054, "OBJECTID_1": 6820, "PARCEL_NO_": "103104025000", "Tax_Legal_": "TABOR & HARMONY 4-16A&16C EAST END QTR", "Name": "DAVID HALL and MARILYN BRATHWAITE -HALL", "Address": "PO Box 302037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90200, "Improved_V": 759800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.98026546200001, "SHAPE_Area": 453.34772434299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363740.881999999284744, 257994.962099999189377 ], [ 363694.248999997973442, 257978.959499999880791 ], [ 363700.571800000965595, 257993.9989 ], [ 363727.111800000071526, 258002.237700000405312 ], [ 363740.881999999284744, 257994.962099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004022100", "MAP": "D9-131-T57", "PARCEL_NAM": "1Y", "ACRE": null, "LONGITUDE": -64.90563202, "LATITUDE": 18.35036547, "OBJECTID_1": 6094, "PARCEL_NO_": "103004022100", "Tax_Legal_": "WINTBERG 1Y,1YB&1YD GR NORTHSIDE", "Name": "BORNN, MICHAEL, STEVEN & DAVID", "Address": "PO Box 6408", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046408, "Country": "United States", "Land_Value": 494300, "Improved_V": 62800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.19055229000003, "SHAPE_Area": 6214.1814284399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361452.073100000619888, 257844.929099999368191 ], [ 361449.094400003552437, 257843.979200001806021 ], [ 361442.994999997317791, 257869.341600000858307 ], [ 361424.592600002884865, 257947.084499999880791 ], [ 361427.80349999666214, 257948.799600001424551 ], [ 361434.191100001335144, 257956.240100000053644 ], [ 361435.776699997484684, 257959.41950000077486 ], [ 361438.832900002598763, 257979.287300001829863 ], [ 361442.038400001823902, 257981.635600000619888 ], [ 361445.270900003612041, 257980.817699998617172 ], [ 361447.795900002121925, 257968.383799999952316 ], [ 361449.451700001955032, 257963.3310999982059 ], [ 361451.082299999892712, 257961.233500000089407 ], [ 361451.098499998450279, 257959.333799999207258 ], [ 361454.375900000333786, 257953.238899998366833 ], [ 361468.259400002658367, 257932.665399998426437 ], [ 361490.220399998128414, 257910.469200000166893 ], [ 361495.087099999189377, 257907.131499998271465 ], [ 361504.030199997127056, 257898.549899999052286 ], [ 361510.552699998021126, 257890.159499999135733 ], [ 361512.174300000071526, 257889.117300000041723 ], [ 361526.07039999961853, 257867.066199999302626 ], [ 361505.158399999141693, 257860.773400001227856 ], [ 361452.073100000619888, 257844.929099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033600", "MAP": "A9-124-T69", "PARCEL_NAM": "5B-3", "ACRE": "0.23", "LONGITUDE": -64.90113314, "LATITUDE": 18.35095154, "OBJECTID_1": 6159, "PARCEL_NO_": "103004033600", "Tax_Legal_": "5B-3 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "GEORGE, LOLITA", "Address": "PO Box 11132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.62650972100001, "SHAPE_Area": 706.87012366600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361958.983599998056889, 257974.256400000303984 ], [ 361960.758100003004074, 257955.27250000089407 ], [ 361927.652500003576279, 257960.489999998360872 ], [ 361917.796899996697903, 257981.5185999982059 ], [ 361958.983599998056889, 257974.256400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87221552, "LATITUDE": 18.3507035, "OBJECTID_1": 7067, "PARCEL_NO_": "103204011200", "Tax_Legal_": "FRYDENDAHL 27 EAST END QUARTER", "Name": "DEWERD, DAWN & DONALD", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 138500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.28797675599998, "SHAPE_Area": 2452.8563932799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365012.159100003540516, 257943.305399999022484 ], [ 364991.940200001001358, 257950.317099999636412 ], [ 364979.789700001478195, 257956.761500000953674 ], [ 364926.154100000858307, 258005.50730000063777 ], [ 364945.582999996840954, 257996.589299999177456 ], [ 364973.091099999845028, 257985.837600000202656 ], [ 365035.346199996769428, 257966.504299998283386 ], [ 365049.112800002098083, 257959.65089999884367 ], [ 365059.657799996435642, 257952.348999999463558 ], [ 365012.159100003540516, 257943.305399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021600", "MAP": "G9-2485-T75", "PARCEL_NAM": "1-144", "ACRE": "1.12", "LONGITUDE": -64.90625813, "LATITUDE": 18.35056909, "OBJECTID_1": 6089, "PARCEL_NO_": "103004021600", "Tax_Legal_": "WINTBERG 1-144 GREAT NORTHSIDE QTR", "Name": "ESTRILL, CONSTANCE L", "Address": "PO Box 7562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 106700, "Improved_V": 263900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.41799705599999, "SHAPE_Area": 3610.60714581 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361418.968199998140335, 257944.716499999165535 ], [ 361437.370600000023842, 257866.973600000143051 ], [ 361414.059500001370907, 257858.339000001549721 ], [ 361406.464599996805191, 257897.962499998509884 ], [ 361383.686499997973442, 257921.418499998748302 ], [ 361348.709399998188019, 257957.018100000917912 ], [ 361374.353100001811981, 257975.804299999028444 ], [ 361385.781800001859665, 257959.432500001043081 ], [ 361393.92400000244379, 257950.210999999195337 ], [ 361402.836599998176098, 257945.217700000852346 ], [ 361406.878899998962879, 257943.984200000762939 ], [ 361414.139300003647804, 257943.621500000357628 ], [ 361418.968199998140335, 257944.716499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104025100", "MAP": "G9-495-T59", "PARCEL_NAM": "4-16", "ACRE": "1.55", "LONGITUDE": -64.88408061, "LATITUDE": 18.35062485, "OBJECTID_1": 6821, "PARCEL_NO_": "103104025100", "Tax_Legal_": "TABOR & HARMONY 4-16 EAST END QTR", "Name": "SHARP, DAVID & ANNA M", "Address": "PO Box 502312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 123200, "Improved_V": 711500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 321.03669236399998, "SHAPE_Area": 7070.2432554699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363760.323399998247623, 257984.566500000655651 ], [ 363758.761100001633167, 257978.643100000917912 ], [ 363771.69990000128746, 257974.315999999642372 ], [ 363787.095399998128414, 257965.576099999248981 ], [ 363792.797100000083447, 257958.867800001055002 ], [ 363796.106899999082088, 257948.973499998450279 ], [ 363797.013899996876717, 257937.159699998795986 ], [ 363793.07940000295639, 257925.728399999439716 ], [ 363788.31530000269413, 257917.034600000828505 ], [ 363783.531300000846386, 257910.662599999457598 ], [ 363754.590400002896786, 257900.293299999088049 ], [ 363746.568599998950958, 257895.372499998658895 ], [ 363694.568999998271465, 257941.387499999254942 ], [ 363685.552100002765656, 257958.6233000010252 ], [ 363694.248999997973442, 257978.959499999880791 ], [ 363740.881999999284744, 257994.962099999189377 ], [ 363760.323399998247623, 257984.566500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87675465, "LATITUDE": 18.35047537, "OBJECTID_1": 7000, "PARCEL_NO_": "103203020100", "Tax_Legal_": "FRYDENDAHL 17 No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 610900, "Improved_V": 2759200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 661.86360875000003, "SHAPE_Area": 15507.1584554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364488.257399998605251, 257915.375 ], [ 364423.633699998259544, 257928.778299998492002 ], [ 364384.860600002110004, 257936.693599998950958 ], [ 364364.66499999910593, 257940.961300000548363 ], [ 364372.672399997711182, 257947.570700000971556 ], [ 364375.076999999582767, 257949.279100000858307 ], [ 364383.096900001168251, 257954.410999998450279 ], [ 364399.160300001502037, 257961.930700000375509 ], [ 364416.852399997413158, 257967.563999999314547 ], [ 364424.080399997532368, 257971.000599998980761 ], [ 364428.896700002253056, 257973.57319999858737 ], [ 364440.127499997615814, 257980.420099999755621 ], [ 364450.532300002872944, 257989.582299999892712 ], [ 364459.482600003480911, 257980.156300000846386 ], [ 364466.775399997830391, 257975.994100000709295 ], [ 364475.666400000452995, 257973.5337999984622 ], [ 364482.118699997663498, 257973.375500001013279 ], [ 364485.336800001561642, 257974.246199999004602 ], [ 364498.979400001466274, 257981.95719999819994 ], [ 364507.040700003504753, 257982.234299998730421 ], [ 364513.498400002717972, 257981.442800000309944 ], [ 364539.377700001001358, 257972.577599998563528 ], [ 364547.435400001704693, 257973.276799999177456 ], [ 364555.464400000870228, 257977.353300001472235 ], [ 364561.056400001049042, 257983.520799998193979 ], [ 364562.62049999833107, 257989.2331000007689 ], [ 364564.132399998605251, 258001.066700000315905 ], [ 364620.420699998736382, 257924.900400001555681 ], [ 364617.231499999761581, 257920.652499999850988 ], [ 364610.102300003170967, 257905.606499999761581 ], [ 364606.200199998915195, 257890.375799998641014 ], [ 364603.898199997842312, 257876.635899998247623 ], [ 364601.52419999986887, 257871.339099999517202 ], [ 364595.14919999986887, 257862.421000000089407 ], [ 364591.131999999284744, 257860.699400000274181 ], [ 364587.098700001835823, 257860.877500001341105 ], [ 364510.823399998247623, 257916.826299998909235 ], [ 364506.79900000244379, 257915.948899999260902 ], [ 364507.644900001585484, 257911.311799999326468 ], [ 364488.257399998605251, 257915.375 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90939508, "LATITUDE": 18.35082925, "OBJECTID_1": 5866, "PARCEL_NO_": "103003037000", "Tax_Legal_": "WINTBERG 1-23 GR NORTHSIDE QTR", "Name": "NIEBERG FAMILY TRUST", "Address": "PO Box 1263", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.079668763, "SHAPE_Area": 1049.2435517700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361068.441699996590614, 257916.094200000166893 ], [ 361056.352399997413158, 257915.361900001764297 ], [ 361057.510099999606609, 257968.778099998831749 ], [ 361089.75900000333786, 257969.464200001209974 ], [ 361070.71679999679327, 257933.000300001353025 ], [ 361069.15089999884367, 257927.499000001698732 ], [ 361068.441699996590614, 257916.094200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90054304, "LATITUDE": 18.35083837, "OBJECTID_1": 6171, "PARCEL_NO_": "103004034800", "Tax_Legal_": "5A-1-8 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "BAPTISTE, JULIA J. & WILLIAM J", "Address": "PO Box 306138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.286810954, "SHAPE_Area": 501.26176742400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362014.710900001227856, 257963.946699999272823 ], [ 362006.141699999570847, 257928.6239 ], [ 361997.882600001990795, 257951.565499998629093 ], [ 361990.411799997091293, 257976.624499998986721 ], [ 362014.710900001227856, 257963.946699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004031600", "MAP": "B9-274-T70", "PARCEL_NAM": "363", "ACRE": null, "LONGITUDE": -64.90309679000001, "LATITUDE": 18.35077265, "OBJECTID_1": 6141, "PARCEL_NO_": "103004031600", "Tax_Legal_": "361&363 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "BLAZEK, BLAKE B. & LISA S.", "Address": "10 S Briar Hollowlane", "City": "Houston", "State": "Texas", "Zip": 77027, "Country": "United States", "Land_Value": 157900, "Improved_V": 206200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.83832415099999, "SHAPE_Area": 3860.9869881099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361781.027699999511242, 257944.724399998784065 ], [ 361757.795699998736382, 257926.802400000393391 ], [ 361733.760999999940395, 257908.451699998229742 ], [ 361725.62049999833107, 257917.462099999189377 ], [ 361713.441299997270107, 257927.2837999984622 ], [ 361695.599899999797344, 257939.170099999755621 ], [ 361683.449500001966953, 257945.614599999040365 ], [ 361697.723999999463558, 257973.806800000369549 ], [ 361723.554700002074242, 257970.640799999237061 ], [ 361784.096500001847744, 257963.114700000733137 ], [ 361781.027699999511242, 257944.724399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003036700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90779795, "LATITUDE": 18.35081936, "OBJECTID_1": 5863, "PARCEL_NO_": "103003036700", "Tax_Legal_": "WINTBERG 1-82 GR NORTHSIDE QTR", "Name": "MARILYN PENN REVOCABLE LIVING TRUST", "Address": "PO Box 7261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61600, "Improved_V": 352500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.07677604099999, "SHAPE_Area": 2144.9527809599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361236.905299998819828, 257924.0168999992311 ], [ 361218.370899997651577, 257922.598600000143051 ], [ 361206.735399998724461, 257963.24439999833703 ], [ 361233.296999998390675, 257968.950300000607967 ], [ 361241.352899998426437, 257969.860599998384714 ], [ 361253.449400000274181, 257969.748500000685453 ], [ 361266.372000001370907, 257967.321100000292063 ], [ 361255.437799997627735, 257925.646200001239777 ], [ 361236.905299998819828, 257924.0168999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90736955, "LATITUDE": 18.3507339, "OBJECTID_1": 6078, "PARCEL_NO_": "103004020500", "Tax_Legal_": "WINTBERG 1-81 GREAT NORTHSIDE QTR", "Name": "ALLEN, EWALDO and SHANETTE S.", "Address": "PO Box 11351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44900, "Improved_V": 271100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.28373335399999, "SHAPE_Area": 1979.8522184399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361314.142200000584126, 257944.491799999028444 ], [ 361289.439599998295307, 257909.881400000303984 ], [ 361255.437799997627735, 257925.646200001239777 ], [ 361266.372000001370907, 257967.321100000292063 ], [ 361280.118900001049042, 257962.789599999785423 ], [ 361290.640500001609325, 257958.231600001454353 ], [ 361304.410700000822544, 257950.9560999982059 ], [ 361314.142200000584126, 257944.491799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033300", "MAP": "F9-1162-T63", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90194213, "LATITUDE": 18.35092849, "OBJECTID_1": 6156, "PARCEL_NO_": "103004033300", "Tax_Legal_": "5-5 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "TAYLOR, DANIEL PATRICK & MARGARET ANNA WHITE", "Address": "3105 N Newhall St", "City": "Milwaukee", "State": "Wisconsin", "Zip": 53211, "Country": "United States", "Land_Value": 43900, "Improved_V": 238800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.0518116983, "SHAPE_Area": 201.58561910700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361862.492899999022484, 257958.246500000357628 ], [ 361850.237499997019768, 257960.911800000816584 ], [ 361836.515799999237061, 257962.488299999386072 ], [ 361863.043200001120567, 257972.204599998891354 ], [ 361867.078900001943111, 257973.718100000172853 ], [ 361862.492899999022484, 257958.246500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103033800", "MAP": "D9-6971-T001", "PARCEL_NAM": "8-1-B-1", "ACRE": ".500", "LONGITUDE": -64.89560334, "LATITUDE": 18.3506581, "OBJECTID_1": 6616, "PARCEL_NO_": "103103033800", "Tax_Legal_": "8-1-B-1 ESTATE MANDAHL #1 GREAT NT.SIDE QTR", "Name": "EVELYN, J., K.GARNETT,O. BROOKS,L., C. & V. RAMSAY", "Address": "PO Box 304127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52100, "Improved_V": 203700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.78280321599999, "SHAPE_Area": 2018.79971247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362550.766500003635883, 257919.798000000417233 ], [ 362519.922799997031689, 257914.041700001806021 ], [ 362511.065999999642372, 257912.491500001400709 ], [ 362500.978399999439716, 257960.749400001019239 ], [ 362539.7466000020504, 257969.869899999350309 ], [ 362550.804999999701977, 257919.909699998795986 ], [ 362550.766500003635883, 257919.798000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204010500", "MAP": "D9-347-T62", "PARCEL_NAM": "16-6", "ACRE": ".75", "LONGITUDE": -64.87446083, "LATITUDE": 18.35062388, "OBJECTID_1": 7061, "PARCEL_NO_": "103204010500", "Tax_Legal_": "FRYDENDAHL 16-6 EAST END QTR", "Name": "HARPER, MARIA E", "Address": "171 Echo Pl", "City": "Bronx", "State": "New York", "Zip": 10453, "Country": "United States", "Land_Value": 120900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.00749609399998, "SHAPE_Area": 3915.4517443300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364801.2212999984622, 257954.652300000190735 ], [ 364799.928800001740456, 257917.06700000166893 ], [ 364787.826899997889996, 257917.812399998307228 ], [ 364737.646700002253056, 257939.566500000655651 ], [ 364709.933600001037121, 257974.38120000064373 ], [ 364715.541799999773502, 257978.649000000208616 ], [ 364732.409599997103214, 257986.386399999260902 ], [ 364749.311599999666214, 257990.113299999386072 ], [ 364763.017200000584126, 257990.436599999666214 ], [ 364786.648400001227856, 257961.499099999666214 ], [ 364801.2212999984622, 257954.652300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004034400", "MAP": "A9-124-69", "PARCEL_NAM": "5A-1-10", "ACRE": "0.24", "LONGITUDE": -64.8996922, "LATITUDE": 18.35081241, "OBJECTID_1": 6167, "PARCEL_NO_": "103004034400", "Tax_Legal_": "5A-1-10 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "ENID ROSEMARY HODGE LIVING TRUST", "Address": "PO Box 12401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28800, "Improved_V": 428900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.28128369300001, "SHAPE_Area": 1143.02785782 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362109.8108000010252, 257970.002399999648333 ], [ 362110.082299999892712, 257938.12950000166893 ], [ 362107.695699997246265, 257934.310300000011921 ], [ 362103.680399999022484, 257932.377599999308586 ], [ 362098.838899999856949, 257932.760099999606609 ], [ 362097.211900003254414, 257934.435600001364946 ], [ 362074.520000003278255, 257947.759799998253584 ], [ 362074.320500001311302, 257971.189599998295307 ], [ 362109.8108000010252, 257970.002399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003036800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90832768, "LATITUDE": 18.35067799, "OBJECTID_1": 5864, "PARCEL_NO_": "103003036800", "Tax_Legal_": "WINTBERG 1-83 3 GR NORTHSIDE QTR", "Name": "DORSETT, AKINSHEY X", "Address": "177 E Main St", "City": "New Rochelle", "State": "New York", "Zip": 10801, "Country": "United States", "Land_Value": 56500, "Improved_V": 352300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.51007759000001, "SHAPE_Area": 2742.89318538 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361183.7820999994874, 257912.605200000107288 ], [ 361145.977200001478195, 257901.530000001192093 ], [ 361145.156499996781349, 257903.212099999189377 ], [ 361144.146899998188019, 257927.057399999350309 ], [ 361147.332599997520447, 257931.72749999910593 ], [ 361152.134499996900558, 257935.988699998706579 ], [ 361157.751800000667572, 257939.2010000012815 ], [ 361166.556500002741814, 257946.872499998658895 ], [ 361176.180100001394749, 257953.072999998927116 ], [ 361187.421700000762939, 257958.653400000184774 ], [ 361201.098399996757507, 257962.353900000452995 ], [ 361206.735399998724461, 257963.24439999833703 ], [ 361218.370899997651577, 257922.598600000143051 ], [ 361183.7820999994874, 257912.605200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004031800", "MAP": "C9-118-T71", "PARCEL_NAM": "340", "ACRE": "0.70", "LONGITUDE": -64.9041766, "LATITUDE": 18.35057269, "OBJECTID_1": 6143, "PARCEL_NO_": "103004031800", "Tax_Legal_": "340 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "FUENTES, MAXINE C. & CARLOS A. JR.", "Address": "PO Box 600169", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68100, "Improved_V": 191200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.27328290400001, "SHAPE_Area": 3010.1653063099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361621.224600002169609, 257881.843800000846386 ], [ 361615.124700002372265, 257884.961500000208616 ], [ 361600.86150000244379, 257890.687600001692772 ], [ 361591.987800002098083, 257894.681800000369549 ], [ 361591.440200001001358, 257899.610300000756979 ], [ 361591.166400000452995, 257907.550799999386072 ], [ 361593.219999998807907, 257913.574599999934435 ], [ 361596.642599999904633, 257924.116300001740456 ], [ 361601.282999999821186, 257935.864999998360872 ], [ 361608.847800001502037, 257954.275100000202656 ], [ 361613.208099998533726, 257960.94370000064373 ], [ 361616.767599999904633, 257962.586599998176098 ], [ 361619.094999998807907, 257962.860399998724461 ], [ 361624.434299997985363, 257961.217500001192093 ], [ 361629.089000001549721, 257958.616300001740456 ], [ 361636.755699999630451, 257953.687800001353025 ], [ 361642.916400000452995, 257950.128199998289347 ], [ 361650.035499997437, 257946.842500001192093 ], [ 361653.733499996364117, 257945.639899998903275 ], [ 361655.137999996542931, 257945.183200001716614 ], [ 361625.257299996912479, 257889.125999998301268 ], [ 361621.383100003004074, 257882.078899998217821 ], [ 361621.224600002169609, 257881.843800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89240315000001, "LATITUDE": 18.3506486, "OBJECTID_1": 6603, "PARCEL_NO_": "103103032200", "Tax_Legal_": "MANDAHL 11AL GR NORTHSIDE QTR", "Name": "BRANDT, WAYNE & ANNE", "Address": "6501 RED HOOK PLAZA STREET 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60500, "Improved_V": 197000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.48974274599999, "SHAPE_Area": 1809.9844139700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362877.896799996495247, 257920.348999999463558 ], [ 362853.671400003135204, 257924.372600000351667 ], [ 362840.750699996948242, 257926.588899999856949 ], [ 362845.191100001335144, 257973.276900000870228 ], [ 362888.123499996960163, 257950.407999999821186 ], [ 362888.393200002610683, 257918.746199999004602 ], [ 362877.896799996495247, 257920.348999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203020700", "MAP": null, "PARCEL_NAM": "16-4", "ACRE": null, "LONGITUDE": -64.8754235, "LATITUDE": 18.35058388, "OBJECTID_1": 7005, "PARCEL_NO_": "103203020700", "Tax_Legal_": "FRYDENDAHL 16-4 EAST END QTR", "Name": "RABSATT, LINTON & MARILYN", "Address": "#2 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103600, "Improved_V": 171100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.37736826899999, "SHAPE_Area": 1385.6022294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364687.825300000607967, 257964.961100000888109 ], [ 364681.420000001788139, 257958.330299999564886 ], [ 364652.687600001692772, 257923.47580000013113 ], [ 364647.864100001752377, 257921.747600000351667 ], [ 364638.146999999880791, 257926.523200001567602 ], [ 364636.520000003278255, 257928.198600001633167 ], [ 364635.674099996685982, 257932.835700001567602 ], [ 364641.235600002110004, 257942.591600000858307 ], [ 364642.015000000596046, 257945.764400001615286 ], [ 364643.613200001418591, 257947.4662000015378 ], [ 364645.971000000834465, 257954.66270000115037 ], [ 364648.354000002145767, 257958.903999999165535 ], [ 364648.3378000035882, 257960.803700000047684 ], [ 364649.9324000030756, 257962.927700001746416 ], [ 364653.863300003111362, 257974.781100001186132 ], [ 364654.580200001597404, 257977.749899998307228 ], [ 364687.825300000607967, 257964.961100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031900", "MAP": "B9-281-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89148928, "LATITUDE": 18.3507595, "OBJECTID_1": 6600, "PARCEL_NO_": "103103031900", "Tax_Legal_": "MANDAHL 11AB GR NORTHSIDE", "Name": "WALSH, GREGORY M.", "Address": "6620 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31300, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.360581869, "SHAPE_Area": 758.52811583699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362980.843999996781349, 257951.800200000405312 ], [ 362959.181500002741814, 257938.95719999819994 ], [ 362946.197800002992153, 257948.561299998313189 ], [ 362939.666400000452995, 257958.006999999284744 ], [ 362965.338899999856949, 257973.415899999439716 ], [ 362980.843999996781349, 257951.800200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103030200", "MAP": "A9-124-T69", "PARCEL_NAM": "5A-1-13", "ACRE": ".25", "LONGITUDE": -64.89927785, "LATITUDE": 18.35070097, "OBJECTID_1": 6583, "PARCEL_NO_": "103103030200", "Tax_Legal_": "MANDAHL 5A-1-13 GT. NORTHSIDE", "Name": "GRANT, ELTON & VERONICA", "Address": "7505 Frenchman Bay Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.20623107700001, "SHAPE_Area": 1244.20694022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362148.854900002479553, 257932.82149999961257 ], [ 362127.24210000038147, 257925.434900000691414 ], [ 362115.320000000298023, 257921.360300000756979 ], [ 362115.713899999856949, 257939.653200000524521 ], [ 362116.433899998664856, 257949.791600000113249 ], [ 362116.394000001251698, 257954.478500001132488 ], [ 362129.299900002777576, 257955.390299998223782 ], [ 362158.998099997639656, 257957.488499999046326 ], [ 362161.574799999594688, 257951.638700000941753 ], [ 362165.7179000005126, 257938.584800001233816 ], [ 362160.450099997222424, 257936.784400001168251 ], [ 362148.854900002479553, 257932.82149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90041337, "LATITUDE": 18.35069212, "OBJECTID_1": 6170, "PARCEL_NO_": "103004034700", "Tax_Legal_": "5A-1-7 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "BAPTISTE, JULIA J. & WILLIAM J", "Address": "PO Box 306138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32500, "Improved_V": 336900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.887723971, "SHAPE_Area": 694.27637081600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362031.713600002229214, 257955.853199999779463 ], [ 362015.158600002527237, 257911.388099998235703 ], [ 362007.804700002074242, 257922.72690000012517 ], [ 362005.351599998772144, 257926.717599999159575 ], [ 362006.141699999570847, 257928.6239 ], [ 362014.710900001227856, 257963.946699999272823 ], [ 362031.713600002229214, 257955.853199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021500", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-61", "ACRE": ".31", "LONGITUDE": -64.90665831, "LATITUDE": 18.35066445, "OBJECTID_1": 6088, "PARCEL_NO_": "103004021500", "Tax_Legal_": "WINTBERG 1-143-61 GREAT NORTHSIDE QTR", "Name": "MILLER, ERIE M", "Address": "PO Box 306391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35100, "Improved_V": 233000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.58711826199999, "SHAPE_Area": 1153.32512004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361383.686499997973442, 257921.418499998748302 ], [ 361364.468099996447563, 257905.640299998223782 ], [ 361349.79619999974966, 257924.096400000154972 ], [ 361340.853000000119209, 257932.678100001066923 ], [ 361330.29900000244379, 257941.035399999469519 ], [ 361348.709399998188019, 257957.018100000917912 ], [ 361383.686499997973442, 257921.418499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90496322, "LATITUDE": 18.35055226, "OBJECTID_1": 6248, "PARCEL_NO_": "103004043800", "Tax_Legal_": "347 WINTBERG GREAT NORTHSIDE", "Name": "RAVALIER, SR., LENROY LENOX", "Address": "PO Box 503120", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 82200, "Improved_V": 643600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.045107196, "SHAPE_Area": 2727.74087328 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361573.956399999558926, 257925.297800000756979 ], [ 361527.559000000357628, 257881.643899999558926 ], [ 361522.647399999201298, 257890.258499998599291 ], [ 361515.309600003063679, 257899.697700001299381 ], [ 361504.732299998402596, 257910.799100000411272 ], [ 361499.050300002098083, 257915.185499999672174 ], [ 361543.032499998807907, 257958.39750000089407 ], [ 361573.956399999558926, 257925.297800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004038600", "MAP": "A9-124-T69", "PARCEL_NAM": "5B-2", "ACRE": "0.23", "LONGITUDE": -64.90105905, "LATITUDE": 18.35073857, "OBJECTID_1": 6202, "PARCEL_NO_": "103004038600", "Tax_Legal_": "MANDAHL 5B-2 GT. NORTHSIDE", "Name": "HUYGHUE, WILTON L.,SR., ROSALIA E. & RHUDEL T.", "Address": "5-58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.817640173, "SHAPE_Area": 762.69933580899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361960.758100003004074, 257955.27250000089407 ], [ 361967.449500001966953, 257927.040699999779463 ], [ 361939.970200002193451, 257934.415199998766184 ], [ 361927.652500003576279, 257960.489999998360872 ], [ 361960.758100003004074, 257955.27250000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033200", "MAP": "F9-1278-T63", "PARCEL_NAM": "5-2", "ACRE": "0.26", "LONGITUDE": -64.90238814, "LATITUDE": 18.35064019, "OBJECTID_1": 6155, "PARCEL_NO_": "103004033200", "Tax_Legal_": "5-2 ESTATE MANDAHL GREAT NORTHDISE QTR.", "Name": "KRYGSVELD,TIM &, JENKINS,HOLLIS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 183000, "Improved_V": 101500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.19540916400001, "SHAPE_Area": 1250.85353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361836.072700001299381, 257919.843699999153614 ], [ 361802.274099998176098, 257911.756700001657009 ], [ 361782.661899998784065, 257942.204700000584126 ], [ 361826.870600000023842, 257958.820700000971556 ], [ 361821.26240000128746, 257954.552999999374151 ], [ 361818.92620000243187, 257944.823499999940395 ], [ 361819.76129999756813, 257941.452899999916553 ], [ 361825.493600003421307, 257931.156199999153614 ], [ 361829.566500000655651, 257926.334399998188019 ], [ 361835.250200003385544, 257921.736800000071526 ], [ 361836.072700001299381, 257919.843699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87382933000001, "LATITUDE": 18.35055239, "OBJECTID_1": 7065, "PARCEL_NO_": "103204011000", "Tax_Legal_": "FRYDENDAHL 25A EAST END QUARTER", "Name": "WOOD PROPERTIES, LLC", "Address": "117 Manhattan Ave", "City": "New York", "State": "New York", "Zip": 10025, "Country": "United States", "Land_Value": 158800, "Improved_V": 77100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.2226842, "SHAPE_Area": 3306.792196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364861.10360000282526, 257974.366399999707937 ], [ 364840.716700002551079, 257906.438499998301268 ], [ 364814.814000003039837, 257918.047699999064207 ], [ 364800.266199998557568, 257921.939399998635054 ], [ 364801.558700002729893, 257959.524700000882149 ], [ 364802.163599997758865, 257983.172100000083447 ], [ 364861.10360000282526, 257974.366399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "NL", "PARCEL_NO": "103303010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86444271000001, "LATITUDE": 18.34884607, "OBJECTID_1": 7179, "PARCEL_NO_": "103303010200", "Tax_Legal_": "COKI POINT PCL C EAST END QTR", "Name": "DEPT OF PLANNING & NATURAL RES", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 544100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 325.68410304999998, "SHAPE_Area": 5780.0928715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365864.890299998223782, 257776.721099998801947 ], [ 365868.018399998545647, 257713.430399999022484 ], [ 365846.206600002944469, 257723.2060999982059 ], [ 365769.231100000441074, 257766.694600000977516 ], [ 365773.662600003182888, 257814.438000001013279 ], [ 365784.151900000870228, 257813.679499998688698 ], [ 365794.655500002205372, 257811.232400000095367 ], [ 365801.935699999332428, 257808.547699999064207 ], [ 365809.226700000464916, 257804.596599999815226 ], [ 365810.868100002408028, 257801.232599999755621 ], [ 365814.923000000417233, 257798.521499998867512 ], [ 365830.262699998915195, 257796.325100000947714 ], [ 365842.396999999880791, 257791.780299998819828 ], [ 365846.444700002670288, 257789.913600001484156 ], [ 365856.968199998140335, 257785.144600000232458 ], [ 365861.843800000846386, 257780.751499999314547 ], [ 365864.890299998223782, 257776.721099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103032000", "MAP": "B9-281-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89174281, "LATITUDE": 18.35059706, "OBJECTID_1": 6601, "PARCEL_NO_": "103103032000", "Tax_Legal_": "MANDAHL 11AI GR NORTHSIDE", "Name": "MORGAN, MICOL L. & MEYERS, JR. I. A", "Address": "PO Box 10001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42900, "Improved_V": 244700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.96541255299999, "SHAPE_Area": 1239.70490668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362928.30969999730587, 257965.935600001364946 ], [ 362936.477099999785423, 257953.759100001305342 ], [ 362940.546400003135204, 257949.359400000423193 ], [ 362942.187799997627735, 257945.995299998670816 ], [ 362946.249899998307228, 257942.440000001341105 ], [ 362951.109399996697903, 257939.946600001305342 ], [ 362956.114500001072884, 257920.355900000780821 ], [ 362952.934199996292591, 257915.052499998360872 ], [ 362946.485500000417233, 257914.788699999451637 ], [ 362934.354800000786781, 257918.911299999803305 ], [ 362927.060300000011921, 257923.284499999135733 ], [ 362922.994499996304512, 257927.261999998241663 ], [ 362909.946099996566772, 257944.464899998158216 ], [ 362928.30969999730587, 257965.935600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203020600", "MAP": "D9-347-T62", "PARCEL_NAM": "16-5", "ACRE": ".75", "LONGITUDE": -64.87476563, "LATITUDE": 18.35044476, "OBJECTID_1": 7004, "PARCEL_NO_": "103203020600", "Tax_Legal_": "FRYDENDAHL 16-5 EAST END QTR", "Name": "SUTTON, RALPH & UNA", "Address": "PO Box 503294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 109900, "Improved_V": 172400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.75027105200002, "SHAPE_Area": 2929.7788087600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364788.164300002157688, 257922.684799998998642 ], [ 364777.691200003027916, 257921.543600000441074 ], [ 364752.765699997544289, 257913.106899999082088 ], [ 364714.946299999952316, 257903.720400001853704 ], [ 364692.68860000371933, 257960.744500000029802 ], [ 364710.270999997854233, 257979.253600001335144 ], [ 364737.984099999070168, 257944.438900001347065 ], [ 364788.164300002157688, 257922.684799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103032500", "MAP": "D9-6620-T99", "PARCEL_NAM": "8-1-AB", "ACRE": ".535", "LONGITUDE": -64.89596676, "LATITUDE": 18.35057795, "OBJECTID_1": 6606, "PARCEL_NO_": "103103032500", "Tax_Legal_": "MANDAHL 8-1AB GT. NORTHSIDE QTR.", "Name": "SWIFT, ALEXANDER & JOAN", "Address": "PO Box 1451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44800, "Improved_V": 200900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.868062458, "SHAPE_Area": 1859.0255397799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362470.324199996888638, 257902.684200000017881 ], [ 362467.987099997699261, 257912.860300000756979 ], [ 362469.254100002348423, 257953.331500001251698 ], [ 362500.978399999439716, 257960.749400001019239 ], [ 362511.065999999642372, 257912.491500001400709 ], [ 362482.886399999260902, 257907.405699998140335 ], [ 362470.324199996888638, 257902.684200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9002031, "LATITUDE": 18.35055472, "OBJECTID_1": 6169, "PARCEL_NO_": "103004034600", "Tax_Legal_": "5A-1-6 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "JEAN BAPTISTE, WILLIAMSON & JULIA", "Address": "PO Box 306138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 204600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.51323881900001, "SHAPE_Area": 1890.23497453 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362034.314099997282028, 257899.101599998772144 ], [ 362023.372699998319149, 257896.303800001740456 ], [ 362020.077399998903275, 257901.929099999368191 ], [ 362015.158600002527237, 257911.388099998235703 ], [ 362031.713600002229214, 257955.853199999779463 ], [ 362069.763099998235703, 257938.221700001507998 ], [ 362053.067900002002716, 257910.22069999948144 ], [ 362047.089100003242493, 257902.368400000035763 ], [ 362034.314099997282028, 257899.101599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033300", "MAP": "F9-1162-T63", "PARCEL_NAM": "5-5", "ACRE": ".26", "LONGITUDE": -64.90205653, "LATITUDE": 18.35070022, "OBJECTID_1": 6156, "PARCEL_NO_": "103004033300", "Tax_Legal_": "5-5 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "TAYLOR, DANIEL PATRICK & MARGARET ANNA WHITE", "Address": "3105 N Newhall St", "City": "Milwaukee", "State": "Wisconsin", "Zip": 53211, "Country": "United States", "Land_Value": 43900, "Improved_V": 238800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.209838715, "SHAPE_Area": 678.60029578399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361852.981200002133846, 257926.156800001859665 ], [ 361841.689999997615814, 257923.056099999696016 ], [ 361839.242200002074242, 257926.413600001484156 ], [ 361833.558499999344349, 257931.011100001633167 ], [ 361830.299099996685982, 257934.995200000703335 ], [ 361827.01630000025034, 257941.723299998790026 ], [ 361827.779399998486042, 257946.795800000429153 ], [ 361829.374099999666214, 257948.919799998402596 ], [ 361834.195799998939037, 257950.859099999070168 ], [ 361851.925700001418591, 257952.05970000103116 ], [ 361860.405699998140335, 257951.204900000244379 ], [ 361852.981200002133846, 257926.156800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004035000", "MAP": "A9-124-T69", "PARCEL_NAM": "5A-1-3", "ACRE": "0.23", "LONGITUDE": -64.90068989, "LATITUDE": 18.35064881, "OBJECTID_1": 6173, "PARCEL_NO_": "103004035000", "Tax_Legal_": "5A-1-3 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "STRIDIRON, ANTHONY C, & BEVERLY", "Address": "PO Box 6846", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28800, "Improved_V": 177400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.026145376, "SHAPE_Area": 863.88714802200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362007.804700002074242, 257922.72690000012517 ], [ 361976.3800999969244, 257919.936599999666214 ], [ 361969.699400000274181, 257946.901900000870228 ], [ 361997.882600001990795, 257951.565499998629093 ], [ 362006.141699999570847, 257928.6239 ], [ 362005.351599998772144, 257926.717599999159575 ], [ 362007.804700002074242, 257922.72690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004031900", "MAP": "C9-118-T71", "PARCEL_NAM": "339", "ACRE": "0.81", "LONGITUDE": -64.9038042, "LATITUDE": 18.3503977, "OBJECTID_1": 6144, "PARCEL_NO_": "103004031900", "Tax_Legal_": "339 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "SIMMONDS, MICHAEL A. (TRUSTEE)", "Address": "PO Box 6160", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 214000, "Improved_V": 247800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.92094883799999, "SHAPE_Area": 3339.9085217299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361646.202100001275539, 257868.806800000369549 ], [ 361627.446199998259544, 257878.663899999111891 ], [ 361621.224600002169609, 257881.843800000846386 ], [ 361621.383100003004074, 257882.078899998217821 ], [ 361625.257299996912479, 257889.125999998301268 ], [ 361655.137999996542931, 257945.183200001716614 ], [ 361666.874799996614456, 257941.366300001740456 ], [ 361678.237899996340275, 257936.026999998837709 ], [ 361696.910400003194809, 257924.869100000709295 ], [ 361699.0, 257923.053300000727177 ], [ 361657.234099999070168, 257861.600900001823902 ], [ 361655.237899996340275, 257862.919799998402596 ], [ 361646.202100001275539, 257868.806800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87316959, "LATITUDE": 18.35036692, "OBJECTID_1": 7066, "PARCEL_NO_": "103204011100", "Tax_Legal_": "FRYDENDAHL 25 EAST END QUARTER", "Name": "GREENSTONE LLC", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 221700, "Improved_V": 74000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.32636236299999, "SHAPE_Area": 7444.9489569899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364967.811899997293949, 257942.942400000989437 ], [ 364906.288699999451637, 257876.366599999368191 ], [ 364904.672499999403954, 257876.775600001215935 ], [ 364885.252700001001358, 257884.638199999928474 ], [ 364867.429300002753735, 257894.413699999451637 ], [ 364840.716700002551079, 257906.438499998301268 ], [ 364861.10360000282526, 257974.366399999707937 ], [ 364911.15429999679327, 257967.809900000691414 ], [ 364943.550599999725819, 257951.187600001692772 ], [ 364967.811899997293949, 257942.942400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004035800", "MAP": "F9-1161-T63", "PARCEL_NAM": "5-4", "ACRE": ".28", "LONGITUDE": -64.90181289, "LATITUDE": 18.35063473, "OBJECTID_1": 6179, "PARCEL_NO_": "103004035800", "Tax_Legal_": "5-4 ESTATE MANDAHL GR NORTHSIDE QTR", "Name": "Margaret A W Taylor,Daniel P Taylor & John E White", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35000, "Improved_V": 225400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.114421346, "SHAPE_Area": 837.51059492499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361873.636600002646446, 257919.451799999922514 ], [ 361865.040299996733665, 257912.32880000025034 ], [ 361852.981200002133846, 257926.156800001859665 ], [ 361860.405699998140335, 257951.204900000244379 ], [ 361861.610399998724461, 257951.083500001579523 ], [ 361868.883400000631809, 257949.243200000375509 ], [ 361877.788800001144409, 257945.094200000166893 ], [ 361884.287799999117851, 257939.447900000959635 ], [ 361885.925599999725819, 257936.506000000983477 ], [ 361888.368000000715256, 257933.781700000166893 ], [ 361889.197700001299381, 257931.044300001114607 ], [ 361890.151699997484684, 257929.817099999636412 ], [ 361890.835199996829033, 257928.937899999320507 ], [ 361877.907200001180172, 257922.99040000140667 ], [ 361873.636600002646446, 257919.451799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004020900", "MAP": null, "PARCEL_NAM": "1-80", "ACRE": null, "LONGITUDE": -64.90701961000001, "LATITUDE": 18.35050475, "OBJECTID_1": 6082, "PARCEL_NO_": "103004020900", "Tax_Legal_": "1-80 ESTATE WINTBERG GREAT NORTHSIDE", "Name": "ROBLES, CLEVIA R", "Address": "PMP GARDEN B#20 A160", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50100, "Improved_V": 329000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.887476873, "SHAPE_Area": 1885.3036865700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361351.525700002908707, 257910.389499999582767 ], [ 361318.679099999368191, 257885.211599998176098 ], [ 361289.439599998295307, 257909.881400000303984 ], [ 361314.142200000584126, 257944.491799999028444 ], [ 361336.877199999988079, 257926.101599998772144 ], [ 361351.525700002908707, 257910.389499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004031500", "MAP": "B9-274-T70", "PARCEL_NAM": "364A", "ACRE": null, "LONGITUDE": -64.90261503000001, "LATITUDE": 18.35050943, "OBJECTID_1": 6140, "PARCEL_NO_": "103004031500", "Tax_Legal_": "360&364A ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "BLAZEK, BLAKE B. & LISA S.", "Address": "10 S Briar Hollowlane", "City": "Houston", "State": "Texas", "Zip": 77027, "Country": "United States", "Land_Value": 131400, "Improved_V": 486200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.06302189300001, "SHAPE_Area": 1144.2190995000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361802.274099998176098, 257911.756700001657009 ], [ 361811.260499998927116, 257898.109099999070168 ], [ 361804.005500003695488, 257897.838599998503923 ], [ 361799.991899996995926, 257895.694899998605251 ], [ 361796.795400001108646, 257892.291200000792742 ], [ 361796.017899997532368, 257888.907299999147654 ], [ 361793.616899996995926, 257886.776799999177456 ], [ 361793.552199997007847, 257894.375599998980761 ], [ 361791.104500003159046, 257897.7331000007689 ], [ 361788.662100002169609, 257900.457299999892712 ], [ 361775.6621999964118, 257911.960999999195337 ], [ 361757.795699998736382, 257926.802400000393391 ], [ 361781.027699999511242, 257944.724399998784065 ], [ 361782.661899998784065, 257942.204700000584126 ], [ 361802.274099998176098, 257911.756700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024200", "MAP": "D9-1678-T81", "PARCEL_NAM": "4-17 REM", "ACRE": "1.26", "LONGITUDE": -64.88460018000001, "LATITUDE": 18.35032788, "OBJECTID_1": 6812, "PARCEL_NO_": "103104024200", "Tax_Legal_": "TABOR & HARMONY REM 4-17 EAST END QTR", "Name": "SHARP, DAVID L. & ANN-MARIE", "Address": "PO Box 502312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 197600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.70930690400002, "SHAPE_Area": 4225.2275178700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363746.568599998950958, 257895.372499998658895 ], [ 363728.896300002932549, 257887.417399998754263 ], [ 363710.370899997651577, 257884.94370000064373 ], [ 363695.052699998021126, 257884.607200000435114 ], [ 363682.950900003314018, 257885.352600000798702 ], [ 363657.915600001811981, 257889.791700001806021 ], [ 363654.667000003159046, 257892.509399998933077 ], [ 363653.837300002574921, 257895.246800001710653 ], [ 363652.827799998223782, 257919.092099998146296 ], [ 363651.105499997735023, 257931.954700000584126 ], [ 363648.632600001990795, 257938.267299998551607 ], [ 363685.552100002765656, 257958.6233000010252 ], [ 363694.568999998271465, 257941.387499999254942 ], [ 363746.568599998950958, 257895.372499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104011000", "MAP": "B9-281-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89124261000001, "LATITUDE": 18.35055195, "OBJECTID_1": 6744, "PARCEL_NO_": "103104011000", "Tax_Legal_": "MANDAHL 11AA GT. NORTHSIDE", "Name": "JOWERS, WILLIAM & YVONNE", "Address": "PO Box 344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40200, "Improved_V": 216500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.94441458099999, "SHAPE_Area": 908.805788893 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363027.56360000371933, 257932.716499999165535 ], [ 363027.673699997365475, 257929.712099999189377 ], [ 363023.774599999189377, 257929.142299998551607 ], [ 363005.269000001251698, 257924.346799999475479 ], [ 362990.802100002765656, 257918.739999998360872 ], [ 362984.349799998104572, 257918.898299999535084 ], [ 362980.309199996292591, 257919.920699998736382 ], [ 362977.0641999989748, 257922.216099999845028 ], [ 362975.431800000369549, 257924.52479999884963 ], [ 362959.181500002741814, 257938.95719999819994 ], [ 362980.843999996781349, 257951.800200000405312 ], [ 362984.101700000464916, 257948.027100000530481 ], [ 362986.561899997293949, 257943.192099999636412 ], [ 362993.066399998962879, 257936.912500001490116 ], [ 362999.545699998736382, 257933.588100001215935 ], [ 363004.396099999547005, 257932.150100000202656 ], [ 363011.658299997448921, 257931.576299998909235 ], [ 363027.56360000371933, 257932.716499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036100", "MAP": "G9-939-T67", "PARCEL_NAM": "5-1-A", "ACRE": ".13", "LONGITUDE": -64.90198088, "LATITUDE": 18.35046739, "OBJECTID_1": 6181, "PARCEL_NO_": "103004036100", "Tax_Legal_": "5A-4&5-1A ESTATE MANDAHL GREAT NORTHSIDE", "Name": "DUBOIS, MICHAEL J. & DIANA", "Address": "10 School Ave", "City": "Chatham", "State": "New Jersey", "Zip": 7928, "Country": "United States", "Land_Value": 56300, "Improved_V": 534800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.672634357800007, "SHAPE_Area": 362.18046710900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361841.689999997615814, 257923.056099999696016 ], [ 361852.981200002133846, 257926.156800001859665 ], [ 361865.040299996733665, 257912.32880000025034 ], [ 361866.798900000751019, 257909.962699998170137 ], [ 361841.074199996888638, 257900.675200000405312 ], [ 361844.240199998021126, 257907.667199999094009 ], [ 361843.358300000429153, 257916.52589999884367 ], [ 361841.689999997615814, 257923.056099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104011100", "MAP": "B9-281-T70", "PARCEL_NAM": "11AJ", "ACRE": ".35", "LONGITUDE": -64.89123603, "LATITUDE": 18.35037661, "OBJECTID_1": 6745, "PARCEL_NO_": "103104011100", "Tax_Legal_": "MANDAHL 11 AJ GR NORTHSIDE", "Name": "DLJ MORTGAGE CAPITAL INC", "Address": "3815 S West Temple", "City": "Salt Lake City", "State": "Utah", "Zip": 84115, "Country": "United States", "Land_Value": 43800, "Improved_V": 2600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.27216816599997, "SHAPE_Area": 1403.375299 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362975.491200000047684, 257917.559200000017881 ], [ 362984.391199998557568, 257914.043400000780821 ], [ 362990.841700002551079, 257914.096200000494719 ], [ 363007.722099997103214, 257920.356100000441074 ], [ 363027.840300001204014, 257925.164799999445677 ], [ 363027.26240000128746, 257898.351199999451637 ], [ 362990.920800000429153, 257904.808800000697374 ], [ 362957.034100003540516, 257907.064500000327826 ], [ 362936.285800002515316, 257910.563799999654293 ], [ 362936.894000001251698, 257914.947299998253584 ], [ 362937.543399997055531, 257917.8277000002563 ], [ 362937.702299997210503, 257917.773699998855591 ], [ 362939.720799997448921, 257917.087699998170137 ], [ 362942.175599999725819, 257916.253400001674891 ], [ 362945.107100002467632, 257915.257199998944998 ], [ 362946.485500000417233, 257914.788699999451637 ], [ 362948.176700003445148, 257914.857900001108646 ], [ 362950.537699997425079, 257914.954500000923872 ], [ 362952.934199996292591, 257915.052499998360872 ], [ 362953.732699997723103, 257916.384100001305342 ], [ 362954.747800000011921, 257918.076900001615286 ], [ 362956.114500001072884, 257920.355900000780821 ], [ 362951.109399996697903, 257939.946600001305342 ], [ 362958.425499998033047, 257933.040399998426437 ], [ 362972.233499996364117, 257921.33219999819994 ], [ 362975.491200000047684, 257917.559200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024300", "MAP": "D9-9114-T016", "PARCEL_NAM": "4-5C", "ACRE": ".50", "LONGITUDE": -64.88528107, "LATITUDE": 18.35050417, "OBJECTID_1": 6813, "PARCEL_NO_": "103104024300", "Tax_Legal_": "TABOR & HARMONY 4-5 EAST END QTR", "Name": "BLYDEN, BASIL&THELMA E.", "Address": "PO Box 306223", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 188200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.78046845700001, "SHAPE_Area": 1926.3894143099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363647.803000003099442, 257905.039000000804663 ], [ 363634.029899999499321, 257909.945999998599291 ], [ 363613.07490000128746, 257929.472300000488758 ], [ 363584.177000001072884, 257913.400499999523163 ], [ 363582.829000003635883, 257945.894099999219179 ], [ 363637.840800002217293, 257954.004599999636412 ], [ 363639.5253000035882, 257945.574599999934435 ], [ 363643.646799996495247, 257935.053599998354912 ], [ 363646.992499999701977, 257920.937800001353025 ], [ 363647.803000003099442, 257905.039000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203020700", "MAP": "D9-347-T62", "PARCEL_NAM": "16-4", "ACRE": ".75", "LONGITUDE": -64.87515404, "LATITUDE": 18.35035314, "OBJECTID_1": 7005, "PARCEL_NO_": "103203020700", "Tax_Legal_": "FRYDENDAHL 16-4 EAST END QTR", "Name": "RABSATT, LINTON & MARILYN", "Address": "#2 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103600, "Improved_V": 171100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.65045581300001, "SHAPE_Area": 1742.66555982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364714.946299999952316, 257903.720400001853704 ], [ 364700.434500001370907, 257903.390500001609325 ], [ 364685.904700003564358, 257905.171399999409914 ], [ 364667.310900002717972, 257910.718800000846386 ], [ 364660.835299998521805, 257913.621100001037121 ], [ 364658.391199998557568, 257916.556400001049042 ], [ 364658.353399999439716, 257920.989000000059605 ], [ 364692.68860000371933, 257960.744500000029802 ], [ 364714.946299999952316, 257903.720400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89985687, "LATITUDE": 18.35050441, "OBJECTID_1": 6168, "PARCEL_NO_": "103004034500", "Tax_Legal_": "5A-1-5 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "JEAN BAPTISTE, WILLIAMSON & JULIA", "Address": "PO Box 306138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.29726094700001, "SHAPE_Area": 947.02411101099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362049.794799998402596, 257903.060300000011921 ], [ 362047.089100003242493, 257902.368400000035763 ], [ 362053.067900002002716, 257910.22069999948144 ], [ 362069.763099998235703, 257938.221700001507998 ], [ 362094.859499998390675, 257926.605799999088049 ], [ 362110.667099997401237, 257919.770100001245737 ], [ 362099.892200000584126, 257916.087600000202656 ], [ 362097.375500001013279, 257915.227400001138449 ], [ 362049.794799998402596, 257903.060300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004035600", "MAP": "F9-1164-T63", "PARCEL_NAM": "5-4A", "ACRE": ".024", "LONGITUDE": -64.90173969, "LATITUDE": 18.35051674, "OBJECTID_1": 6178, "PARCEL_NO_": "103004035600", "Tax_Legal_": "5A-3,5-3&5-4A ESTATE MANDAHL GR NORTHSIDE QTR", "Name": "ARNET, WILLIAM & NIKKI", "Address": "6310 Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41300, "Improved_V": 244400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.964428084700003, "SHAPE_Area": 97.664291098099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361891.712600000202656, 257927.809200000017881 ], [ 361866.798900000751019, 257909.962699998170137 ], [ 361865.040299996733665, 257912.32880000025034 ], [ 361873.636600002646446, 257919.451799999922514 ], [ 361877.907200001180172, 257922.99040000140667 ], [ 361890.835199996829033, 257928.937899999320507 ], [ 361891.712600000202656, 257927.809200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041500", "MAP": "D9-242B-T79", "PARCEL_NAM": "260-25", "ACRE": null, "LONGITUDE": -64.89426325, "LATITUDE": 18.3504251, "OBJECTID_1": 6634, "PARCEL_NO_": "103103041500", "Tax_Legal_": "ANNAS RETREAT 260-25 NEW QTR", "Name": "THOMAS, LEONIE", "Address": "PO Box 11134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120400, "Improved_V": 546800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.926779528, "SHAPE_Area": 1831.4347887199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362699.080600000917912, 257897.142900001257658 ], [ 362684.606600001454353, 257892.380300000309944 ], [ 362674.997299998998642, 257884.491200000047684 ], [ 362631.831200003623962, 257934.800400000065565 ], [ 362663.230599999427795, 257940.545800000429153 ], [ 362671.281199999153614, 257942.089400000870228 ], [ 362699.080600000917912, 257897.142900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041600", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-27", "ACRE": "0.50", "LONGITUDE": -64.89390433, "LATITUDE": 18.35047576, "OBJECTID_1": 6635, "PARCEL_NO_": "103103041600", "Tax_Legal_": "ANNAS RETREAT 260-27 NEW QTR", "Name": "TIEDEMANN, HELGA", "Address": "3993 N. 3rd Ave", "City": "Phoenix", "State": "Arizona", "Zip": 85013, "Country": "United States", "Land_Value": 82200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.19810451500001, "SHAPE_Area": 1815.51768814 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362727.2871999964118, 257899.0625 ], [ 362715.993400000035763, 257899.603300001472235 ], [ 362699.080600000917912, 257897.142900001257658 ], [ 362671.281199999153614, 257942.089400000870228 ], [ 362709.194099999964237, 257940.499800000339746 ], [ 362729.368100002408028, 257938.765099998563528 ], [ 362727.2871999964118, 257899.0625 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004035300", "MAP": "A9-124-T69", "PARCEL_NAM": "5A-1-2", "ACRE": "0.23", "LONGITUDE": -64.90112609000001, "LATITUDE": 18.35050674, "OBJECTID_1": 6176, "PARCEL_NO_": "103004035300", "Tax_Legal_": "5A-1-2 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "CLAXTON, LAVERN", "Address": "PO Box 9733", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29500, "Improved_V": 320700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.41301629899999, "SHAPE_Area": 1265.20255909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361967.449500001966953, 257927.040699999779463 ], [ 361969.985299997031689, 257913.340399999171495 ], [ 361971.1908999979496, 257908.259100001305342 ], [ 361965.76690000295639, 257905.613200001418591 ], [ 361951.744000002741814, 257905.348700001835823 ], [ 361936.5304000005126, 257908.391399998217821 ], [ 361918.803300000727177, 257912.492400001734495 ], [ 361907.955300003290176, 257916.461199998855591 ], [ 361904.603900000452995, 257921.037900000810623 ], [ 361939.970200002193451, 257934.415199998766184 ], [ 361967.449500001966953, 257927.040699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003036300", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".55", "LONGITUDE": -64.90899075, "LATITUDE": 18.3504026, "OBJECTID_1": 5859, "PARCEL_NO_": "103003036300", "Tax_Legal_": "1-143-45 WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "MILES, WILLIAM T. & GEOFFREY T", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56500, "Improved_V": 439000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.478952115, "SHAPE_Area": 2864.0825603500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361136.90089999884367, 257925.731499999761581 ], [ 361137.062799997627735, 257906.734400000423193 ], [ 361142.161399997770786, 257876.167599998414516 ], [ 361136.554899998009205, 257871.688700001686811 ], [ 361129.317900002002716, 257869.307500001043081 ], [ 361124.478200003504753, 257869.478900000452995 ], [ 361112.349399998784065, 257873.390399999916553 ], [ 361094.534999996423721, 257882.110599998384714 ], [ 361088.853000000119209, 257886.497000001370907 ], [ 361081.499099999666214, 257897.835900001227856 ], [ 361079.872100003063679, 257899.511300001293421 ], [ 361079.855899997055531, 257901.410999998450279 ], [ 361078.225299999117851, 257903.508600000292063 ], [ 361076.571299999952316, 257908.35020000115037 ], [ 361074.055299997329712, 257919.728700000792742 ], [ 361074.021099999547005, 257923.739199999719858 ], [ 361136.90089999884367, 257925.731499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041700", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-29", "ACRE": "0.25", "LONGITUDE": -64.89357961, "LATITUDE": 18.35043769, "OBJECTID_1": 6636, "PARCEL_NO_": "103103041700", "Tax_Legal_": "ANNAS RETREAT 260-29 NEW QTR", "Name": "JEFFREY, RALSTON & HEATHER", "Address": "PO Box 11391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81700, "Improved_V": 123800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.399114172, "SHAPE_Area": 926.01201020200006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362753.577200002968311, 257936.641199998557568 ], [ 362749.081000000238419, 257896.496599998325109 ], [ 362727.2871999964118, 257899.0625 ], [ 362729.368100002408028, 257938.765099998563528 ], [ 362753.577200002968311, 257936.641199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024400", "MAP": "D9-124-T57", "PARCEL_NAM": "4-4", "ACRE": "1.40", "LONGITUDE": -64.88593316, "LATITUDE": 18.35023908, "OBJECTID_1": 6814, "PARCEL_NO_": "103104024400", "Tax_Legal_": "4-4 ESTATE TABOR&HARMONY EAST END QTR", "Name": "MC CANN, THERESA", "Address": "227 Wheatland Ct", "City": "Christiansburg", "State": "Virginia", "Zip": 24073, "Country": "United States", "Land_Value": 176800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.59437122600002, "SHAPE_Area": 5344.5471843699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363585.873700000345707, 257872.254599999636412 ], [ 363572.227200001478195, 257869.520199999213219 ], [ 363537.589900001883507, 257865.225999999791384 ], [ 363512.217600002884865, 257859.890500001609325 ], [ 363511.590000003576279, 257933.768800001591444 ], [ 363582.829000003635883, 257945.894099999219179 ], [ 363585.873700000345707, 257872.254599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021000", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".32", "LONGITUDE": -64.90761463, "LATITUDE": 18.35043572, "OBJECTID_1": 6083, "PARCEL_NO_": "103004021000", "Tax_Legal_": "WINTBERG 1-143-19 3 GR NORTHSIDE", "Name": "KELLY, ANNE MARIE", "Address": "PO Box 304882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 340900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.05674335800001, "SHAPE_Area": 1539.8654895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361289.439599998295307, 257909.881400000303984 ], [ 361255.829899996519089, 257879.631000000983477 ], [ 361242.826399996876717, 257891.55689999833703 ], [ 361237.970499999821186, 257893.628100000321865 ], [ 361232.320900000631809, 257894.21510000154376 ], [ 361236.905299998819828, 257924.0168999992311 ], [ 361255.437799997627735, 257925.646200001239777 ], [ 361289.439599998295307, 257909.881400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041800", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-31", "ACRE": "0.23", "LONGITUDE": -64.89334495, "LATITUDE": 18.35041099, "OBJECTID_1": 6637, "PARCEL_NO_": "103103041800", "Tax_Legal_": "ANNAS RETREAT 260-31 NEW QTR", "Name": "JEFFREY, ROLSTON", "Address": "PO Box 11391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37800, "Improved_V": 266400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.21825392599999, "SHAPE_Area": 1092.9023735599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362781.01519999653101, 257934.121500000357628 ], [ 362774.911799997091293, 257893.33049999922514 ], [ 362749.081000000238419, 257896.496599998325109 ], [ 362753.577200002968311, 257936.641199998557568 ], [ 362781.01519999653101, 257934.121500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003036600", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".31", "LONGITUDE": -64.90800059, "LATITUDE": 18.35046132, "OBJECTID_1": 5862, "PARCEL_NO_": "103003036600", "Tax_Legal_": "WINTBERG 1-143-20 3 GR NORTHSIDE QTR", "Name": "TABORN, CLAUDIA F.", "Address": "13 Dogwood Dr", "City": "Asbury Park", "State": "New Jersey", "Zip": 7712, "Country": "United States", "Land_Value": 35100, "Improved_V": 265300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.28255413700001, "SHAPE_Area": 1107.2003277399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361232.320900000631809, 257894.21510000154376 ], [ 361224.273999996483326, 257892.249400001019239 ], [ 361218.669399999082088, 257887.559500001370907 ], [ 361183.7820999994874, 257912.605200000107288 ], [ 361218.370899997651577, 257922.598600000143051 ], [ 361236.905299998819828, 257924.0168999992311 ], [ 361232.320900000631809, 257894.21510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103034000", "MAP": "D9-6903-T001", "PARCEL_NAM": "298-B", "ACRE": ".57", "LONGITUDE": -64.89474041, "LATITUDE": 18.3502651, "OBJECTID_1": 6618, "PARCEL_NO_": "103103034000", "Tax_Legal_": "289-B(CONSOLIDATED)ANNA'S RETRET No.1 NEW QTR.", "Name": "FREEMAN, DEREK & JANICE", "Address": "PO Box 305986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 87400, "Improved_V": 433000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.24128233100001, "SHAPE_Area": 2098.0504206599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362617.074199996888638, 257878.956399999558926 ], [ 362613.24379999935627, 257864.608300000429153 ], [ 362585.581200003623962, 257873.837999999523163 ], [ 362587.962300002574921, 257878.290500000119209 ], [ 362586.279600001871586, 257886.509300000965595 ], [ 362585.21339999884367, 257887.378299999982119 ], [ 362586.91160000115633, 257889.910100001841784 ], [ 362588.499099999666214, 257893.243900001049042 ], [ 362591.991599999368191, 257894.831399999558926 ], [ 362631.316299997270107, 257931.770799998193979 ], [ 362631.831200003623962, 257934.800400000065565 ], [ 362652.828100003302097, 257910.328899998217821 ], [ 362623.263800002634525, 257884.387499999254942 ], [ 362617.074199996888638, 257878.956399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041300", "MAP": "D9-6903-T001", "PARCEL_NAM": "282 REM", "ACRE": ".46", "LONGITUDE": -64.89448771000001, "LATITUDE": 18.35009369, "OBJECTID_1": 6632, "PARCEL_NO_": "103103041300", "Tax_Legal_": "282 REMAINDER ANNA'S RETREAT No.1 NEW QTR.", "Name": "THOMAS, LUKE & LEONIE", "Address": "PO Box 11134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77300, "Improved_V": 12200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.29484285199999, "SHAPE_Area": 1904.77869992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362660.609600000083447, 257869.596900001168251 ], [ 362650.273199997842312, 257852.413699999451637 ], [ 362619.545199997723103, 257862.505800001323223 ], [ 362613.24379999935627, 257864.608300000429153 ], [ 362617.074199996888638, 257878.956399999558926 ], [ 362623.263800002634525, 257884.387499999254942 ], [ 362652.828100003302097, 257910.328899998217821 ], [ 362674.997299998998642, 257884.491200000047684 ], [ 362670.99099999666214, 257881.503100000321865 ], [ 362660.609600000083447, 257869.596900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004032100", "MAP": "C9-118-T71", "PARCEL_NAM": "338", "ACRE": "0.97", "LONGITUDE": -64.90342829, "LATITUDE": 18.35018315, "OBJECTID_1": 6145, "PARCEL_NO_": "103004032100", "Tax_Legal_": "338 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "JACKSON, KEITHLY", "Address": "PO Box 302013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91900, "Improved_V": 149200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.184447264, "SHAPE_Area": 3414.4784927199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361744.482199996709824, 257880.464000001549721 ], [ 361685.900100000202656, 257847.265000000596046 ], [ 361684.515000000596046, 257846.504000000655651 ], [ 361678.511699996888638, 257843.20549999922514 ], [ 361675.434199996292591, 257845.279500000178814 ], [ 361671.666400000452995, 257849.913899999111891 ], [ 361662.904500000178814, 257857.854400001466274 ], [ 361657.234099999070168, 257861.600900001823902 ], [ 361699.0, 257923.053300000727177 ], [ 361720.952200002968311, 257907.687699999660254 ], [ 361732.862899996340275, 257895.092500001192093 ], [ 361744.482199996709824, 257880.464000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90471793, "LATITUDE": 18.35013411, "OBJECTID_1": 6249, "PARCEL_NO_": "103004043900", "Tax_Legal_": "WINTBERG 346 GR NORTHSIDE", "Name": "STEELE, L & WILLIAMS, C", "Address": "PO Box 305814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77700, "Improved_V": 344000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.75702911899998, "SHAPE_Area": 3195.47154585 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361573.956399999558926, 257925.297800000756979 ], [ 361582.923000000417233, 257913.972100000828505 ], [ 361582.966099999845028, 257908.906300000846386 ], [ 361580.680299997329712, 257893.266600001603365 ], [ 361579.999799996614456, 257878.484499998390675 ], [ 361579.213299997150898, 257876.155999999493361 ], [ 361581.007500000298023, 257854.850299999117851 ], [ 361583.534400001168251, 257842.205299999564886 ], [ 361589.362000003457069, 257820.721500001847744 ], [ 361586.946599997580051, 257820.279500000178814 ], [ 361566.670100003480911, 257834.045800000429153 ], [ 361555.295500002801418, 257844.085200000554323 ], [ 361546.343299999833107, 257853.722199998795986 ], [ 361530.82379999756813, 257877.026500001549721 ], [ 361527.559000000357628, 257881.643899999558926 ], [ 361573.956399999558926, 257925.297800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004032600", "MAP": "D9-3023-T85", "PARCEL_NAM": "364", "ACRE": "0.58", "LONGITUDE": -64.90276836, "LATITUDE": 18.35023549, "OBJECTID_1": 6150, "PARCEL_NO_": "103004032600", "Tax_Legal_": "364 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "SIMMONDS, MICHAEL", "Address": "PO Box 10137", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50400, "Improved_V": 208800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.78330782200001, "SHAPE_Area": 2574.2256746100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361793.616899996995926, 257886.776799999177456 ], [ 361791.562299996614456, 257882.968600001186132 ], [ 361790.900799997150898, 257878.073800001293421 ], [ 361787.99040000140667, 257854.525800000876188 ], [ 361785.476800002157688, 257840.635200001299381 ], [ 361784.418499998748302, 257839.709100000560284 ], [ 361783.624799996614456, 257839.576799999922514 ], [ 361782.4341000020504, 257839.841400001198053 ], [ 361781.243500001728535, 257840.238299999386072 ], [ 361780.846600003540516, 257840.635200001299381 ], [ 361779.92059999704361, 257841.032000001519918 ], [ 361777.192500002682209, 257841.654500000178814 ], [ 361772.985399998724461, 257847.555599998682737 ], [ 361750.867899999022484, 257888.115600001066923 ], [ 361749.246299996972084, 257889.157800000160933 ], [ 361748.420199997723103, 257891.473099999129772 ], [ 361745.167999997735023, 257894.612900000065565 ], [ 361743.528399996459484, 257897.765900000929832 ], [ 361733.760999999940395, 257908.451699998229742 ], [ 361757.795699998736382, 257926.802400000393391 ], [ 361775.6621999964118, 257911.960999999195337 ], [ 361788.662100002169609, 257900.457299999892712 ], [ 361791.104500003159046, 257897.7331000007689 ], [ 361793.552199997007847, 257894.375599998980761 ], [ 361793.616899996995926, 257886.776799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041900", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-33", "ACRE": "0.23", "LONGITUDE": -64.89312223, "LATITUDE": 18.35038259, "OBJECTID_1": 6638, "PARCEL_NO_": "103103041900", "Tax_Legal_": "ANNAS RETREAT 260-33 NEW QTR", "Name": "PERCEL, WINSTON", "Address": "7055 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37800, "Improved_V": 209700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.07930570400001, "SHAPE_Area": 866.52605019199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362801.1891999989748, 257932.386799998581409 ], [ 362795.902900002896786, 257890.335900001227856 ], [ 362774.911799997091293, 257893.33049999922514 ], [ 362781.01519999653101, 257934.121500000357628 ], [ 362788.277400001883507, 257933.547699999064207 ], [ 362801.1891999989748, 257932.386799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88986551000001, "LATITUDE": 18.35047322, "OBJECTID_1": 6749, "PARCEL_NO_": "103104011500", "Tax_Legal_": "MANDAHL 11C-1&11C-2A GREAT NORTHSIDE QTR", "Name": "SANDERS, DIANA and RICKY LARSON", "Address": "PO BOX 11246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 107300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.442653366, "SHAPE_Area": 650.192758669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363107.578900001943111, 257935.94990000128746 ], [ 363149.514399997889996, 257935.448800001293421 ], [ 363140.101199999451637, 257904.552099999040365 ], [ 363107.578900001943111, 257935.94990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021700", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-60", "ACRE": ".42", "LONGITUDE": -64.9063472, "LATITUDE": 18.35025179, "OBJECTID_1": 6090, "PARCEL_NO_": "103004021700", "Tax_Legal_": "WINTBERG 1-143-60 GR NORTHSIDE", "Name": "NEWTON, GREGORY H. & LISA E.", "Address": "13253 Queensdale Dr", "City": "Woodbridge", "State": "Virginia", "Zip": 22193, "Country": "United States", "Land_Value": 32300, "Improved_V": 129600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.241498549, "SHAPE_Area": 1894.8337239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361414.059500001370907, 257858.339000001549721 ], [ 361380.208800002932549, 257856.373199999332428 ], [ 361380.955700002610683, 257863.345400001853704 ], [ 361378.412699997425079, 257877.890099998563528 ], [ 361375.923699997365475, 257886.102400001138449 ], [ 361374.296599999070168, 257887.777800001204014 ], [ 361371.82379999756813, 257894.090300001204014 ], [ 361370.198600001633167, 257895.554699998348951 ], [ 361368.549999997019768, 257899.763099998235703 ], [ 361366.109399996697903, 257902.276200000196695 ], [ 361364.468099996447563, 257905.640299998223782 ], [ 361383.686499997973442, 257921.418499998748302 ], [ 361406.464599996805191, 257897.962499998509884 ], [ 361414.059500001370907, 257858.339000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103030600", "MAP": "A9-121-T69", "PARCEL_NAM": "7A", "ACRE": null, "LONGITUDE": -64.89748308, "LATITUDE": 18.35022016, "OBJECTID_1": 6587, "PARCEL_NO_": "103103030600", "Tax_Legal_": "MANDAHL 7A GR NORTHSIDE", "Name": "QUERRARD, LOUIS LEOPOLD", "Address": "7A MANDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 477.48076287599997, "SHAPE_Area": 9842.4964646099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362236.824400000274181, 257921.434999998658895 ], [ 362308.545199997723103, 257917.506599999964237 ], [ 362380.970499999821186, 257913.539599999785423 ], [ 362436.214599996805191, 257910.513799998909235 ], [ 362441.892099998891354, 257892.082600001245737 ], [ 362411.345799997448921, 257880.855700001120567 ], [ 362365.526199996471405, 257864.015399999916553 ], [ 362348.64580000191927, 257857.755499999970198 ], [ 362336.572700001299381, 257855.123599998652935 ], [ 362323.695100001990795, 257852.274000000208616 ], [ 362250.972300000488758, 257869.832800000905991 ], [ 362236.361599996685982, 257881.112300001084805 ], [ 362236.824400000274181, 257921.434999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88970957, "LATITUDE": 18.35040622, "OBJECTID_1": 6757, "PARCEL_NO_": "103104012400", "Tax_Legal_": "11-G MANDAHL", "Name": "CASIMIR, JEANNE", "Address": "11G Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8800, "Improved_V": 74900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.460923007900007, "SHAPE_Area": 313.35016184800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363158.385600000619888, 257935.310300000011921 ], [ 363147.417300000786781, 257897.645899999886751 ], [ 363140.101199999451637, 257904.552099999040365 ], [ 363149.514399997889996, 257935.448800001293421 ], [ 363158.385600000619888, 257935.310300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103042000", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-35", "ACRE": "0.23", "LONGITUDE": -64.89291644, "LATITUDE": 18.35035549, "OBJECTID_1": 6639, "PARCEL_NO_": "103103042000", "Tax_Legal_": "ANNAS RETREAT 260-35 NEW QTR", "Name": "BALY, VICTOR & JOSETTE", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 37800, "Improved_V": 302400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.46817112299999, "SHAPE_Area": 996.73361113600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362824.602799996733665, 257928.989900000393391 ], [ 362818.510200001299381, 257886.932399999350309 ], [ 362810.443499997258186, 257887.288499999791384 ], [ 362795.902900002896786, 257890.335900001227856 ], [ 362801.1891999989748, 257932.386799998581409 ], [ 362824.602799996733665, 257928.989900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88956215, "LATITUDE": 18.3503652, "OBJECTID_1": 6750, "PARCEL_NO_": "103104011600", "Tax_Legal_": "MANDAHL 11C 2 GREAT NORTHSIDE QTR", "Name": "GIFFT, JOHN & YVONNE", "Address": "PO Box 8052", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 134600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.599348413, "SHAPE_Area": 977.84099800700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363180.992899999022484, 257931.906700000166893 ], [ 363170.865099996328354, 257890.238400001078844 ], [ 363147.417300000786781, 257897.645899999886751 ], [ 363158.385600000619888, 257935.310300000011921 ], [ 363170.491099998354912, 257934.142799999564886 ], [ 363180.992899999022484, 257931.906700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003036200", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".47", "LONGITUDE": -64.90925092000001, "LATITUDE": 18.35002064, "OBJECTID_1": 5858, "PARCEL_NO_": "103003036200", "Tax_Legal_": "WINTBERG 1-143-44 3 GR NORTHSIDE", "Name": "MILLER, RUTH & GALEN G. SWINGEN", "Address": "PO Box 11175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55700, "Improved_V": 330800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.323918655, "SHAPE_Area": 3079.1370716800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361113.211400002241135, 257866.85359999909997 ], [ 361112.775600001215935, 257823.364799998700619 ], [ 361059.528399996459484, 257826.517499998211861 ], [ 361060.286100000143051, 257832.223299998790026 ], [ 361066.421899996697903, 257869.214899998158216 ], [ 361065.558100000023842, 257875.962799999862909 ], [ 361056.359600000083447, 257914.517599999904633 ], [ 361056.352399997413158, 257915.361900001764297 ], [ 361068.441699996590614, 257916.094200000166893 ], [ 361073.425200000405312, 257899.036400001496077 ], [ 361076.707999996840954, 257892.308200001716614 ], [ 361081.60700000077486, 257885.17119999974966 ], [ 361087.298000000417233, 257879.729299999773502 ], [ 361092.164599999785423, 257876.391600001603365 ], [ 361107.551100000739098, 257868.707100000232458 ], [ 361113.211400002241135, 257866.85359999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004035100", "MAP": "A9-124-T69", "PARCEL_NAM": "5A-1-4", "ACRE": "0.30", "LONGITUDE": -64.90061219, "LATITUDE": 18.35038221, "OBJECTID_1": 6174, "PARCEL_NO_": "103004035100", "Tax_Legal_": "5A-1-4 ESTATE MANDAHL GREAT NORTHSIDE QTR.", "Name": "WILLIAMS, WEAN", "Address": "PO Box 303183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37500, "Improved_V": 183400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.42700261900001, "SHAPE_Area": 1201.81807654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361999.590000003576279, 257890.222100000828505 ], [ 361988.706500001251698, 257887.438999999314547 ], [ 361983.723499998450279, 257892.491200000047684 ], [ 361979.934399999678135, 257896.332899998873472 ], [ 361971.969300001859665, 257904.408500000834465 ], [ 361975.669100001454353, 257908.742800001055002 ], [ 361977.267300002276897, 257910.444699998944998 ], [ 361976.3800999969244, 257919.936599999666214 ], [ 362007.804700002074242, 257922.72690000012517 ], [ 362015.158600002527237, 257911.388099998235703 ], [ 362020.077399998903275, 257901.929099999368191 ], [ 362023.372699998319149, 257896.303800001740456 ], [ 362018.613899998366833, 257895.086899999529123 ], [ 361999.590000003576279, 257890.222100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103042100", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-37", "ACRE": "0.25", "LONGITUDE": -64.89267855, "LATITUDE": 18.35032998, "OBJECTID_1": 6640, "PARCEL_NO_": "103103042100", "Tax_Legal_": "ANNAS RETREAT 260-37 NEW QTR", "Name": "PETERS, CARDINAL & SHIRLEY", "Address": "PO Box 597", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 81700, "Improved_V": 133700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.813880934, "SHAPE_Area": 1136.9866432199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362849.268100000917912, 257906.034299999475479 ], [ 362844.32660000026226, 257885.454900000244379 ], [ 362818.510200001299381, 257886.932399999350309 ], [ 362824.602799996733665, 257928.989900000393391 ], [ 362840.750699996948242, 257926.588899999856949 ], [ 362853.671400003135204, 257924.372600000351667 ], [ 362849.268100000917912, 257906.034299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88935556, "LATITUDE": 18.35033802, "OBJECTID_1": 6751, "PARCEL_NO_": "103104011700", "Tax_Legal_": "MANDAHL 11D-1 GREAT NORTHSIDE QTR", "Name": "GIFT, JOHN & YVONNE", "Address": "PO Box 8052", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 371000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.950771265, "SHAPE_Area": 830.69970846399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363206.883100003004074, 257921.775100000202656 ], [ 363181.376000002026558, 257886.946899998933077 ], [ 363170.865099996328354, 257890.238400001078844 ], [ 363180.992899999022484, 257931.906700000166893 ], [ 363193.928099997341633, 257928.001800000667572 ], [ 363206.883100003004074, 257921.775100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87834423, "LATITUDE": 18.35007925, "OBJECTID_1": 7011, "PARCEL_NO_": "103203021400", "Tax_Legal_": "53-5 FRYDENDAHL No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.77738555600001, "SHAPE_Area": 3613.4998482400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364352.663900002837181, 257929.886199999600649 ], [ 364354.260300002992153, 257931.799100000411272 ], [ 364355.860299997031689, 257933.289799999445677 ], [ 364364.66499999910593, 257940.961300000548363 ], [ 364384.860600002110004, 257936.693599998950958 ], [ 364363.751900002360344, 257858.83839999884367 ], [ 364355.688799999654293, 257858.772399999201298 ], [ 364349.252700001001358, 257857.030999999493361 ], [ 364341.230899997055531, 257852.110199999064207 ], [ 364336.443400003015995, 257846.160399999469519 ], [ 364310.537100002169609, 257858.191799998283386 ], [ 364313.722800001502037, 257862.861900001764297 ], [ 364317.695000000298023, 257869.860500000417233 ], [ 364319.278899997472763, 257873.250900000333786 ], [ 364322.42679999768734, 257882.353700000792742 ], [ 364336.703000001609325, 257910.334899999201298 ], [ 364343.875299997627735, 257920.315000001341105 ], [ 364352.663900002837181, 257929.886199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004035600", "MAP": null, "PARCEL_NAM": "5A-3", "ACRE": null, "LONGITUDE": -64.90160814, "LATITUDE": 18.35034695, "OBJECTID_1": 6178, "PARCEL_NO_": "103004035600", "Tax_Legal_": "5A-3,5-3&5-4A ESTATE MANDAHL GR NORTHSIDE QTR", "Name": "ARNET, WILLIAM & NIKKI", "Address": "6310 Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41300, "Improved_V": 244400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.730755445, "SHAPE_Area": 1080.3452364300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361915.837399996817112, 257894.300299998372793 ], [ 361888.023800000548363, 257879.527899999171495 ], [ 361870.882600001990795, 257903.874400001019239 ], [ 361866.798900000751019, 257909.962699998170137 ], [ 361876.444099999964237, 257913.630300000309944 ], [ 361895.736299999058247, 257920.754200000315905 ], [ 361911.226999998092651, 257900.827100001275539 ], [ 361913.475299999117851, 257898.078899998217821 ], [ 361915.837399996817112, 257894.300299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104011200", "MAP": null, "PARCEL_NAM": "11B", "ACRE": null, "LONGITUDE": -64.8906559, "LATITUDE": 18.35037851, "OBJECTID_1": 6746, "PARCEL_NO_": "103104011200", "Tax_Legal_": "MANDAHL 11B GREAT NORTHSIDE QTR", "Name": "THOMAS, LEONIE", "Address": "PO Box 11134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 111100, "Improved_V": 311800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.37883106800001, "SHAPE_Area": 1621.6681154099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363067.897600002586842, 257935.450399998575449 ], [ 363067.859600000083447, 257929.980200000107288 ], [ 363069.410099998116493, 257890.738899998366833 ], [ 363030.493000000715256, 257897.74439999833703 ], [ 363027.26240000128746, 257898.351199999451637 ], [ 363027.840300001204014, 257925.164799999445677 ], [ 363027.673699997365475, 257929.712099999189377 ], [ 363027.56360000371933, 257932.716499999165535 ], [ 363064.846199996769428, 257935.38910000026226 ], [ 363067.897600002586842, 257935.450399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036000", "MAP": null, "PARCEL_NAM": "5-1", "ACRE": null, "LONGITUDE": -64.90226201, "LATITUDE": 18.35041317, "OBJECTID_1": 6180, "PARCEL_NO_": "103004036000", "Tax_Legal_": "5-1 ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "HUDSON, GARTH", "Address": "PO Box 7100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54200, "Improved_V": 309800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.190463150300005, "SHAPE_Area": 557.85503137900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361836.072700001299381, 257919.843699999153614 ], [ 361838.565399996936321, 257911.209300000220537 ], [ 361837.793300002813339, 257907.192200001329184 ], [ 361833.810199998319149, 257901.460099998861551 ], [ 361828.196599997580051, 257897.825500000268221 ], [ 361821.758699998259544, 257896.295200001448393 ], [ 361816.918999999761581, 257896.466699998825788 ], [ 361811.260499998927116, 257898.109099999070168 ], [ 361802.274099998176098, 257911.756700001657009 ], [ 361836.072700001299381, 257919.843699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024500", "MAP": "D9-124-T57", "PARCEL_NAM": "4-3", "ACRE": "1.12", "LONGITUDE": -64.88654965000001, "LATITUDE": 18.35012452, "OBJECTID_1": 6815, "PARCEL_NO_": "103104024500", "Tax_Legal_": "TABOR & HARMONY 4 3 EAST END QTR", "Name": "EVANS, MARION", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 157000, "Improved_V": 160000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.60619155000001, "SHAPE_Area": 4367.5081681900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363512.217600002884865, 257859.890500001609325 ], [ 363455.91780000180006, 257842.753400001674891 ], [ 363454.433600001037121, 257922.323499999940395 ], [ 363511.590000003576279, 257933.768800001591444 ], [ 363512.217600002884865, 257859.890500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89538081000001, "LATITUDE": 18.35028943, "OBJECTID_1": 6631, "PARCEL_NO_": "103103041200", "Tax_Legal_": "ANNAS RETREAT 290 NEW QTR", "Name": "MONSANTO, JR., LEONARD ALBERT", "Address": "PO Box 1001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 127300, "Improved_V": 490400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.67427046200001, "SHAPE_Area": 2064.9565967200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362574.145300000905991, 257891.054099999368191 ], [ 362569.327299997210503, 257888.692600000649691 ], [ 362566.931699998676777, 257885.928800001740456 ], [ 362566.150600001215935, 257882.967099998146296 ], [ 362563.749600000679493, 257880.836500000208616 ], [ 362530.755500003695488, 257872.967099998146296 ], [ 362519.922799997031689, 257914.041700001806021 ], [ 362577.889200001955032, 257924.859700001776218 ], [ 362574.145300000905991, 257891.054099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024700", "MAP": "D9-124-T57", "PARCEL_NAM": "4-1", "ACRE": "1.02", "LONGITUDE": -64.88753694, "LATITUDE": 18.35009282, "OBJECTID_1": 6817, "PARCEL_NO_": "103104024700", "Tax_Legal_": "4-1 ESTATE TABOR & HARMONY 5&6 EAST END QTR.", "Name": "STEDMAN, DANA", "Address": "PO BOX 600202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 135000, "Improved_V": 142400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.01882855600002, "SHAPE_Area": 4580.1058784300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363404.404399998486042, 257926.346999999135733 ], [ 363406.743500001728535, 257841.084300000220537 ], [ 363352.693599998950958, 257843.808400001376867 ], [ 363351.952799998223782, 257930.772799998521805 ], [ 363404.404399998486042, 257926.346999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204016800", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".06", "LONGITUDE": -64.87173626000001, "LATITUDE": 18.35043384, "OBJECTID_1": 7119, "PARCEL_NO_": "103204016800", "Tax_Legal_": "FRYDENDAHL 56-B EAST END QTR.", "Name": "DEWERD, DAWN", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.220437249400007, "SHAPE_Area": 244.503184659 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365046.965400002896786, 257927.758200000971556 ], [ 365038.038400001823902, 257934.440200001001358 ], [ 365031.546599999070168, 257939.242199998348951 ], [ 365066.981200002133846, 257944.598400000482798 ], [ 365046.965400002896786, 257927.758200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204013900", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".29", "LONGITUDE": -64.87153097, "LATITUDE": 18.35032399, "OBJECTID_1": 7091, "PARCEL_NO_": "103204013900", "Tax_Legal_": "FRYDENDAHL 56-81 EAST END QTR", "Name": "GARDINER, WINSTON", "Address": "PO Box 8011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51800, "Improved_V": 341100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.048556847, "SHAPE_Area": 923.54300107799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365091.307199999690056, 257928.754399999976158 ], [ 365075.403899997472763, 257902.448699999600649 ], [ 365070.524700000882149, 257907.263900000602007 ], [ 365068.901299998164177, 257908.517200000584126 ], [ 365055.894199997186661, 257920.865200001746416 ], [ 365046.965400002896786, 257927.758200000971556 ], [ 365066.981200002133846, 257944.598400000482798 ], [ 365091.307199999690056, 257928.754399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003036400", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".32", "LONGITUDE": -64.90846163000001, "LATITUDE": 18.35027248, "OBJECTID_1": 5860, "PARCEL_NO_": "103003036400", "Tax_Legal_": "WINTBERG 1-143-22 3 GR NORTHSIDE QTR", "Name": "METHODIST CHIRCH, ST. T. & ST. J. C", "Address": "PO Box 1045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30600, "Improved_V": 610500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.37275271799999, "SHAPE_Area": 1507.0157023500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361183.7820999994874, 257912.605200000107288 ], [ 361184.201099999248981, 257863.423799999058247 ], [ 361151.115299999713898, 257866.319400001317263 ], [ 361145.977200001478195, 257901.530000001192093 ], [ 361183.7820999994874, 257912.605200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003036500", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".26", "LONGITUDE": -64.90817478, "LATITUDE": 18.35024966, "OBJECTID_1": 5861, "PARCEL_NO_": "103003036500", "Tax_Legal_": "WINTBERG 1-143-21 3 GR NORTHSIDE QTR", "Name": "MOOREHEAD, LORRAINE", "Address": "PO Box 303985", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28500, "Improved_V": 96500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.10471889900001, "SHAPE_Area": 1102.6048003200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361210.780699998140335, 257867.018899999558926 ], [ 361184.201099999248981, 257863.423799999058247 ], [ 361183.7820999994874, 257912.605200000107288 ], [ 361218.669399999082088, 257887.559500001370907 ], [ 361217.072899997234344, 257885.646600000560284 ], [ 361210.780699998140335, 257867.018899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87267524000001, "LATITUDE": 18.35009012, "OBJECTID_1": 7070, "PARCEL_NO_": "103204011500", "Tax_Legal_": "FRYDENDAHL 28 EAST END QUARTER", "Name": "DEWERD, DAWN & DONALD", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.48333056800001, "SHAPE_Area": 2984.9269895699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364989.647100001573563, 257935.521800000220537 ], [ 364943.585900001227856, 257852.396099999547005 ], [ 364938.704899996519089, 257857.422400001436472 ], [ 364928.154500000178814, 257865.357599999755621 ], [ 364912.760799996554852, 257873.886399999260902 ], [ 364906.288699999451637, 257876.366599999368191 ], [ 364967.811899997293949, 257942.942400000989437 ], [ 364989.647100001573563, 257935.521800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87791162000001, "LATITUDE": 18.35008946, "OBJECTID_1": 7010, "PARCEL_NO_": "103203021300", "Tax_Legal_": "FRYDENDAHL 53-4 EAST END QTR.", "Name": "HODGE, SHAWN & GEORGES, LEEDA", "Address": "PO Box 10146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 83400, "Improved_V": 60800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.06264226100001, "SHAPE_Area": 3466.10470192 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364423.633699998259544, 257928.778299998492002 ], [ 364414.589199997484684, 257854.610399998724461 ], [ 364404.895400002598763, 257856.642000000923872 ], [ 364363.751900002360344, 257858.83839999884367 ], [ 364384.860600002110004, 257936.693599998950958 ], [ 364423.633699998259544, 257928.778299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021100", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".40", "LONGITUDE": -64.90729904, "LATITUDE": 18.35020974, "OBJECTID_1": 6084, "PARCEL_NO_": "103004021100", "Tax_Legal_": "1-143-18 WINTBERG NO 3 GREAT NORTHSIDE QTR", "Name": "KNOECK, BENJAMIN SCOTT and STEPHANIE COLE", "Address": "PO BOX 1543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41700, "Improved_V": 222200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.157767412, "SHAPE_Area": 2019.0003751300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361322.046400003135204, 257868.562800001353025 ], [ 361280.21339999884367, 257857.032499998807907 ], [ 361268.845899999141693, 257866.22749999910593 ], [ 361255.829899996519089, 257879.631000000983477 ], [ 361289.439599998295307, 257909.881400000303984 ], [ 361318.679099999368191, 257885.211599998176098 ], [ 361322.046400003135204, 257868.562800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021400", "MAP": "G9-791-T64", "PARCEL_NAM": "1-79", "ACRE": null, "LONGITUDE": -64.90676944000001, "LATITUDE": 18.35017475, "OBJECTID_1": 6087, "PARCEL_NO_": "103004021400", "Tax_Legal_": "1-79 WINTBERG GREAT NORTHSIDE QTR", "Name": "CARTY, DALE & EDITA", "Address": "PO Box 307682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50100, "Improved_V": 371900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.190259623, "SHAPE_Area": 2116.78089688 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361372.138400003314018, 257857.151599999517202 ], [ 361324.593000002205372, 257853.596000000834465 ], [ 361322.046400003135204, 257868.562800001353025 ], [ 361318.679099999368191, 257885.211599998176098 ], [ 361351.525700002908707, 257910.389499999582767 ], [ 361358.049900002777576, 257901.788100000470877 ], [ 361367.048799999058247, 257886.662999998778105 ], [ 361368.688400000333786, 257883.510000001639128 ], [ 361372.014399997889996, 257871.715999998152256 ], [ 361372.928599998354912, 257859.057900000363588 ], [ 361372.138400003314018, 257857.151599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024600", "MAP": "D9-124-T57", "PARCEL_NAM": "4-2", "ACRE": "1.01", "LONGITUDE": -64.8870522, "LATITUDE": 18.35006541, "OBJECTID_1": 6816, "PARCEL_NO_": "103104024600", "Tax_Legal_": "TABOR & HARMONY 4-2 EAST END QTR", "Name": "MCBEAN, YVETTE M. (TRUSTEE)", "Address": "PO Box 731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 139400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.46781425799998, "SHAPE_Area": 4139.4468018099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363404.404399998486042, 257926.346999999135733 ], [ 363454.433600001037121, 257922.323499999940395 ], [ 363455.91780000180006, 257842.753400001674891 ], [ 363434.170699998736382, 257839.831199999898672 ], [ 363406.743500001728535, 257841.084300000220537 ], [ 363404.404399998486042, 257926.346999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004038500", "MAP": "A9-124-T69", "PARCEL_NAM": "5A-1-1", "ACRE": "0.22", "LONGITUDE": -64.90108612, "LATITUDE": 18.35026453, "OBJECTID_1": 6201, "PARCEL_NO_": "103004038500", "Tax_Legal_": "MANDAHL 5A-1-1 GT. NORTHSIDE", "Name": "CURRENCE, BENJAMIN", "Address": "P O BOX 1533 KINGSHILL", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 35000, "Improved_V": 227900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.97639547099999, "SHAPE_Area": 1575.7058641000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361953.463799998164177, 257901.909099999815226 ], [ 361964.179399996995926, 257901.247600000351667 ], [ 361971.1908999979496, 257903.496599998325109 ], [ 361971.969300001859665, 257904.408500000834465 ], [ 361979.934399999678135, 257896.332899998873472 ], [ 361983.723499998450279, 257892.491200000047684 ], [ 361988.706500001251698, 257887.438999999314547 ], [ 361968.875100001692772, 257882.367800001055002 ], [ 361967.777000002563, 257882.087000001221895 ], [ 361956.815099999308586, 257879.283900000154972 ], [ 361946.230599999427795, 257875.951900001615286 ], [ 361934.437700003385544, 257872.0489999987185 ], [ 361921.65089999884367, 257890.693999998271465 ], [ 361906.834200002253056, 257912.125300001353025 ], [ 361919.067900002002716, 257909.185100000351667 ], [ 361938.250200003385544, 257904.819499999284744 ], [ 361953.463799998164177, 257901.909099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103042300", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-41", "ACRE": "0.25", "LONGITUDE": -64.89218858, "LATITUDE": 18.35025225, "OBJECTID_1": 6642, "PARCEL_NO_": "103103042300", "Tax_Legal_": "ANNAS RETREAT 260-41 NEW QTR", "Name": "MORTON, KARINA", "Address": "PO Box 305438", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44000, "Improved_V": 258900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.435567521, "SHAPE_Area": 1015.5415605 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362902.928400002419949, 257916.331999998539686 ], [ 362896.805200003087521, 257877.862900000065565 ], [ 362870.976199999451637, 257880.817899998277426 ], [ 362874.495999999344349, 257900.92339999973774 ], [ 362877.896799996495247, 257920.348999999463558 ], [ 362888.393200002610683, 257918.746199999004602 ], [ 362902.928400002419949, 257916.331999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204016700", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".03", "LONGITUDE": -64.87203192, "LATITUDE": 18.35031932, "OBJECTID_1": 7118, "PARCEL_NO_": "103204016700", "Tax_Legal_": "FRYDENDAHL 56-A EASTEND QTR.", "Name": "DEWERD, DAWN", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.325755333199993, "SHAPE_Area": 179.908782938 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365026.7483000010252, 257934.558800000697374 ], [ 365006.881800003349781, 257900.199099998921156 ], [ 365017.86089999973774, 257936.596999999135733 ], [ 365022.695100001990795, 257937.058800000697374 ], [ 365026.7483000010252, 257934.558800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8723709, "LATITUDE": 18.34993729, "OBJECTID_1": 7071, "PARCEL_NO_": "103204011600", "Tax_Legal_": "FRYDENDAHL 28A EAST END QUARTER", "Name": "DEWERD, DAWN & DONALD", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 171200, "Improved_V": 269200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.93438108599997, "SHAPE_Area": 3879.02882619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364991.165500000119209, 257851.941100001335144 ], [ 364988.804099999368191, 257845.166799999773502 ], [ 364982.540600001811981, 257823.161800000816584 ], [ 364946.839900001883507, 257849.045200001448393 ], [ 364943.585900001227856, 257852.396099999547005 ], [ 364989.647100001573563, 257935.521800000220537 ], [ 365013.836499996483326, 257935.719700001180172 ], [ 365017.86089999973774, 257936.596999999135733 ], [ 365006.881800003349781, 257900.199099998921156 ], [ 364991.951999999582767, 257854.269600000232458 ], [ 364991.165500000119209, 257851.941100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036100", "MAP": "F9-1419-T64", "PARCEL_NAM": "5A-4", "ACRE": ".318", "LONGITUDE": -64.90207393, "LATITUDE": 18.35021679, "OBJECTID_1": 6181, "PARCEL_NO_": "103004036100", "Tax_Legal_": "5A-4&5-1A ESTATE MANDAHL GREAT NORTHSIDE", "Name": "DUBOIS, MICHAEL J. & DIANA", "Address": "10 School Ave", "City": "Chatham", "State": "New Jersey", "Zip": 7928, "Country": "United States", "Land_Value": 56300, "Improved_V": 534800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.34188319399999, "SHAPE_Area": 948.56641834100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361866.798900000751019, 257909.962699998170137 ], [ 361840.607799999415874, 257860.774700000882149 ], [ 361837.384300000965595, 257860.537200000137091 ], [ 361830.84570000320673, 257870.827300000935793 ], [ 361829.222300000488758, 257872.08049999922514 ], [ 361823.482799999415874, 257883.221500001847744 ], [ 361822.658500000834465, 257885.325699999928474 ], [ 361823.425300002098083, 257889.975999999791384 ], [ 361825.0253000035882, 257891.46680000051856 ], [ 361834.675899997353554, 257894.5011 ], [ 361838.682300001382828, 257897.489199999719858 ], [ 361841.074199996888638, 257900.675200000405312 ], [ 361866.798900000751019, 257909.962699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204014000", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".33", "LONGITUDE": -64.87187198, "LATITUDE": 18.35013468, "OBJECTID_1": 7092, "PARCEL_NO_": "103204014000", "Tax_Legal_": "FRYDENDAHL 56-80 EAST END QTR.", "Name": "PERKINS, PAUL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59000, "Improved_V": 258700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.25588758500001, "SHAPE_Area": 1744.0288567299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365059.218400001525879, 257909.282299999147654 ], [ 365045.825699999928474, 257872.231300000101328 ], [ 365006.881800003349781, 257900.199099998921156 ], [ 365026.7483000010252, 257934.558800000697374 ], [ 365032.423000000417233, 257931.016699999570847 ], [ 365050.278800003230572, 257917.441799998283386 ], [ 365059.218400001525879, 257909.282299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041100", "MAP": "D9-1790-T81", "PARCEL_NAM": "291A", "ACRE": null, "LONGITUDE": -64.89596878, "LATITUDE": 18.35016745, "OBJECTID_1": 6630, "PARCEL_NO_": "103103041100", "Tax_Legal_": "291A ANNAS RETREAT No.1 NEW QTR", "Name": "SWIFT, ALEXANDER A. & JOAN M.", "Address": "PO Box 1451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.488913946, "SHAPE_Area": 1210.8287649199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362477.933899998664856, 257860.747800000011921 ], [ 362470.324199996888638, 257902.684200000017881 ], [ 362482.886399999260902, 257907.405699998140335 ], [ 362498.390000000596046, 257910.20380000025034 ], [ 362504.379399999976158, 257868.495200000703335 ], [ 362477.933899998664856, 257860.747800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87739513, "LATITUDE": 18.35003379, "OBJECTID_1": 7009, "PARCEL_NO_": "103203021200", "Tax_Legal_": "FRYDENDAHL 53-3 EAST END QTR.", "Name": "MOTILEWA, KWAME O", "Address": "PO Box 304938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.01986828600002, "SHAPE_Area": 4564.5371592199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364488.257399998605251, 257915.375 ], [ 364481.518500000238419, 257854.524900000542402 ], [ 364436.379399999976158, 257852.466699998825788 ], [ 364414.589199997484684, 257854.610399998724461 ], [ 364423.633699998259544, 257928.778299998492002 ], [ 364488.257399998605251, 257915.375 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87101074, "LATITUDE": 18.34996833, "OBJECTID_1": 7072, "PARCEL_NO_": "103204011700", "Tax_Legal_": "FRYEDNDAHL 23 EAST END QUARTER", "Name": "RAYMOND & MARIANA REGISTE", "Address": "6514 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 158600, "Improved_V": 246400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.86580468400001, "SHAPE_Area": 4868.7844946300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365075.403899997472763, 257902.448699999600649 ], [ 365091.307199999690056, 257928.754399999976158 ], [ 365094.483900003135204, 257934.480000000447035 ], [ 365128.509099997580051, 257915.971099998801947 ], [ 365164.182800002396107, 257893.253899998962879 ], [ 365170.904899999499321, 257861.433800000697374 ], [ 365167.810900002717972, 257845.998599998652935 ], [ 365117.776299998164177, 257850.6554000005126 ], [ 365111.246699996292591, 257859.890000000596046 ], [ 365099.011799998581409, 257876.255199998617172 ], [ 365089.233499996364117, 257888.207499999552965 ], [ 365075.403899997472763, 257902.448699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103042400", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-43", "ACRE": "0.25", "LONGITUDE": -64.89194161, "LATITUDE": 18.35022005, "OBJECTID_1": 6643, "PARCEL_NO_": "103103042400", "Tax_Legal_": "ANNAS RETREAT 260-43 NEW QTR", "Name": "HODGE, RAYMOND", "Address": "P.O. BOX 205064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.61637170700001, "SHAPE_Area": 1021.75425881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362929.578100003302097, 257911.695000000298023 ], [ 362924.237800002098083, 257875.976500000804663 ], [ 362896.805200003087521, 257877.862900000065565 ], [ 362902.928400002419949, 257916.331999998539686 ], [ 362929.578100003302097, 257911.695000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104011800", "MAP": "D9-228-T60", "PARCEL_NAM": "11D-2", "ACRE": null, "LONGITUDE": -64.8890957, "LATITUDE": 18.35018824, "OBJECTID_1": 6752, "PARCEL_NO_": "103104011800", "Tax_Legal_": "11-1A & 11D2 MANDAHL GREAT NORTHSIDE QUARTER", "Name": "Phillippa Webbe & Diann I Love itf Malachi Webbe", "Address": "PO Box 10402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 148400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.435237091, "SHAPE_Area": 947.37079554599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363219.493299998342991, 257878.628899998962879 ], [ 363218.071699999272823, 257876.679900001734495 ], [ 363210.596799999475479, 257877.403299998492002 ], [ 363206.680900000035763, 257878.144099999219179 ], [ 363201.495099999010563, 257879.625799998641014 ], [ 363191.078699998557568, 257883.859999999403954 ], [ 363214.987499997019768, 257916.986200001090765 ], [ 363232.035199999809265, 257903.615800000727177 ], [ 363232.854099996387959, 257902.144799999892712 ], [ 363235.176700003445148, 257900.130899999290705 ], [ 363219.493299998342991, 257878.628899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036200", "MAP": null, "PARCEL_NAM": "5A-5", "ACRE": null, "LONGITUDE": -64.90180698, "LATITUDE": 18.35006393, "OBJECTID_1": 6182, "PARCEL_NO_": "103004036200", "Tax_Legal_": "5A-5 ESTATE MANDAHL GR NORTHSIDE QTR", "Name": "HALL, TIMOTHY ANDREW & SCHALLER, SUAAN LORENE", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59900, "Improved_V": 367300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.79509003300001, "SHAPE_Area": 1662.67015487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361851.230099998414516, 257844.396299999207258 ], [ 361843.872599996626377, 257856.157299999147654 ], [ 361870.882600001990795, 257903.874400001019239 ], [ 361888.023800000548363, 257879.527899999171495 ], [ 361901.887500002980232, 257861.276200000196695 ], [ 361851.230099998414516, 257844.396299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103042500", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-45", "ACRE": "0.25", "LONGITUDE": -64.89168069, "LATITUDE": 18.3501878, "OBJECTID_1": 6644, "PARCEL_NO_": "103103042500", "Tax_Legal_": "ANNAS RETREAT 260-45 NEW QTR", "Name": "ISAAC, LINDA", "Address": "PO Box 11983", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81700, "Improved_V": 184600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.23884713, "SHAPE_Area": 984.90494074599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362957.034100003540516, 257907.064500000327826 ], [ 362953.282999999821186, 257874.103199999779463 ], [ 362924.237800002098083, 257875.976500000804663 ], [ 362929.578100003302097, 257911.695000000298023 ], [ 362957.034100003540516, 257907.064500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004035500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9014394, "LATITUDE": 18.35012777, "OBJECTID_1": 6177, "PARCEL_NO_": "103004035500", "Tax_Legal_": "5A-2 ESTATE MANDAHL GR NORTHSIDE QTR", "Name": "GALVIN, ZORA TRUSTEE", "Address": "5040 Norre Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31300, "Improved_V": 155700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.36460239100001, "SHAPE_Area": 763.35729417899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361888.023800000548363, 257879.527899999171495 ], [ 361915.837399996817112, 257894.300299998372793 ], [ 361930.551600001752377, 257870.762800000607967 ], [ 361901.887500002980232, 257861.276200000196695 ], [ 361888.023800000548363, 257879.527899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203024400", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".26", "LONGITUDE": -64.87571788, "LATITUDE": 18.350163, "OBJECTID_1": 7043, "PARCEL_NO_": "103203024400", "Tax_Legal_": "FRYDENDAHL 56-1 No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.745798181, "SHAPE_Area": 666.78654269699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364611.894799999892712, 257884.511799998581409 ], [ 364616.596000000834465, 257900.593400001525879 ], [ 364626.102700002491474, 257920.513999998569489 ], [ 364630.116300001740456, 257922.657800000160933 ], [ 364634.153200000524521, 257922.057500001043081 ], [ 364644.690999999642372, 257915.599899999797344 ], [ 364629.610299997031689, 257887.401000000536442 ], [ 364611.894799999892712, 257884.511799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103042600", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-47", "ACRE": "0.25", "LONGITUDE": -64.89137554, "LATITUDE": 18.35015665, "OBJECTID_1": 6645, "PARCEL_NO_": "103103042600", "Tax_Legal_": "ANNAS RETREAT 260-47 NEW QTR", "Name": "FAHIE, ERMINIE", "Address": "7071 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.09947477599999, "SHAPE_Area": 1202.94140694 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362990.920800000429153, 257904.808800000697374 ], [ 362991.201300002634525, 257871.880499999970198 ], [ 362981.527300000190735, 257871.590199999511242 ], [ 362953.282999999821186, 257874.103199999779463 ], [ 362957.034100003540516, 257907.064500000327826 ], [ 362990.920800000429153, 257904.808800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104012700", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-49", "ACRE": "0.25", "LONGITUDE": -64.89103273000001, "LATITUDE": 18.35013745, "OBJECTID_1": 6760, "PARCEL_NO_": "103104012700", "Tax_Legal_": "ANNAS RETREAT 260-49 NEW QTR", "Name": "GEORGE, ALBERT", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.042896633, "SHAPE_Area": 1108.13355172 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363028.284500002861023, 257873.028400000184774 ], [ 362991.201300002634525, 257871.880499999970198 ], [ 362990.920800000429153, 257904.808800000697374 ], [ 363027.26240000128746, 257898.351199999451637 ], [ 363030.493000000715256, 257897.74439999833703 ], [ 363028.284500002861023, 257873.028400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041000", "MAP": "C9-229-T78", "PARCEL_NAM": "292", "ACRE": "0.53", "LONGITUDE": -64.89633579, "LATITUDE": 18.35005715, "OBJECTID_1": 6629, "PARCEL_NO_": "103103041000", "Tax_Legal_": "292 ANNAS RETREAT NO.1 NEW QTR", "Name": "GRANEAU, FREDERICA", "Address": "PO Box 8882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75600, "Improved_V": 270500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.783421465, "SHAPE_Area": 2161.9081944099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362470.400799997150898, 257858.540899999439716 ], [ 362426.588200002908707, 257846.289299998432398 ], [ 362419.062700003385544, 257883.69200000166893 ], [ 362441.892099998891354, 257892.082600001245737 ], [ 362462.791500002145767, 257899.853000000119209 ], [ 362470.324199996888638, 257902.684200000017881 ], [ 362477.933899998664856, 257860.747800000011921 ], [ 362470.400799997150898, 257858.540899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87673997, "LATITUDE": 18.34993314, "OBJECTID_1": 7008, "PARCEL_NO_": "103203021100", "Tax_Legal_": "FRYDENDAHL 53-2 EAST END QTR.", "Name": "GREENAWAY, KENNEDY", "Address": "P.O. BOX 3326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.09292391399998, "SHAPE_Area": 3563.9745416300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364507.644900001585484, 257911.311799999326468 ], [ 364559.560000002384186, 257875.217500001192093 ], [ 364578.241800002753735, 257859.327300000935793 ], [ 364577.4679000005126, 257855.521299999207258 ], [ 364575.871399998664856, 257853.608399998396635 ], [ 364572.6587999984622, 257852.104400001466274 ], [ 364520.20889999717474, 257856.319200001657009 ], [ 364499.244800001382828, 257856.147599998861551 ], [ 364481.518500000238419, 257854.524900000542402 ], [ 364488.257399998605251, 257915.375 ], [ 364507.644900001585484, 257911.311799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003035800", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-32", "ACRE": ".31", "LONGITUDE": -64.90782717, "LATITUDE": 18.350061, "OBJECTID_1": 5854, "PARCEL_NO_": "103003035800", "Tax_Legal_": "WINTBERG 1-143-32 3 GR NORTHSIDE QTR", "Name": "VESSUP, LINDA", "Address": "PO Box 7294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34000, "Improved_V": 240300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.80000374900001, "SHAPE_Area": 1414.3371501900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361223.157700002193451, 257833.978500001132488 ], [ 361218.231700003147125, 257844.281800001859665 ], [ 361216.570500001311302, 257849.967700000852346 ], [ 361215.703000001609325, 257857.137800000607967 ], [ 361218.017700001597404, 257869.400100000202656 ], [ 361223.535999998450279, 257884.221799999475479 ], [ 361228.345100000500679, 257887.638700000941753 ], [ 361230.758599996566772, 257888.291700001806021 ], [ 361236.406400002539158, 257887.915800001472235 ], [ 361241.269500002264977, 257885.000300001353025 ], [ 361252.647799998521805, 257874.538699999451637 ], [ 361257.534199997782707, 257868.879200000315905 ], [ 361258.372900001704693, 257865.086399998515844 ], [ 361255.167400002479553, 257862.738099999725819 ], [ 361260.042999997735023, 257858.344999998807907 ], [ 361239.156199999153614, 257849.097100000828505 ], [ 361223.157700002193451, 257833.978500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004032200", "MAP": "C9-118-T71", "PARCEL_NAM": "345", "ACRE": "0.86", "LONGITUDE": -64.90427696, "LATITUDE": 18.3499633, "OBJECTID_1": 6146, "PARCEL_NO_": "103004032200", "Tax_Legal_": "345 ESTATE WINTBERG GREAT NORTHSIDE QTR", "Name": "ST THOMAS ASSEMBLY OF GOD, IN", "Address": "PO Box 10770", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 86600, "Improved_V": 329000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.58527960200001, "SHAPE_Area": 2851.01633287 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361604.778999999165535, 257809.448600001633167 ], [ 361603.487800002098083, 257807.473400000482798 ], [ 361600.339000001549721, 257811.169799998402596 ], [ 361595.684199996292591, 257820.342399999499321 ], [ 361592.398500002920628, 257828.693599998950958 ], [ 361588.154500000178814, 257852.651999998837709 ], [ 361587.059199996292591, 257881.265099998563528 ], [ 361588.154500000178814, 257888.794900000095367 ], [ 361591.987800002098083, 257894.681800000369549 ], [ 361600.86150000244379, 257890.687600001692772 ], [ 361615.124700002372265, 257884.961500000208616 ], [ 361621.224600002169609, 257881.843800000846386 ], [ 361627.446199998259544, 257878.663899999111891 ], [ 361646.202100001275539, 257868.806800000369549 ], [ 361645.40820000320673, 257867.620799999684095 ], [ 361604.778999999165535, 257809.448600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203024500", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".26", "LONGITUDE": -64.87549803, "LATITUDE": 18.35008345, "OBJECTID_1": 7044, "PARCEL_NO_": "103203024500", "Tax_Legal_": "FRYDENDAHL 56-2 & 56-3A EAST END QTR.", "Name": "COGGINS, NORMA O", "Address": "BOX 4113", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.18809256199999, "SHAPE_Area": 944.13904550699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364671.409000001847744, 257902.941799998283386 ], [ 364661.1570999994874, 257875.837999999523163 ], [ 364629.610299997031689, 257887.401000000536442 ], [ 364644.690999999642372, 257915.599899999797344 ], [ 364656.845100000500679, 257908.733300000429153 ], [ 364671.409000001847744, 257902.941799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90230971, "LATITUDE": 18.34995755, "OBJECTID_1": 6153, "PARCEL_NO_": "103004033000", "Tax_Legal_": "314 WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "LIKENS, KEVIN D. & JESSICA", "Address": "15 Upper Havensight", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37200, "Improved_V": 250100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.02634802099999, "SHAPE_Area": 1806.1538957400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361856.129100002348423, 257837.259199999272823 ], [ 361794.842200003564358, 257837.602000001817942 ], [ 361800.090800002217293, 257884.085499998182058 ], [ 361802.461199998855591, 257889.804499998688698 ], [ 361806.472900003194809, 257892.159299999475479 ], [ 361810.50450000166893, 257892.192299999296665 ], [ 361813.744099996984005, 257890.530099999159575 ], [ 361814.577399998903275, 257887.37049999833107 ], [ 361816.207999996840954, 257885.272900000214577 ], [ 361816.224200002849102, 257883.373199999332428 ], [ 361817.851199999451637, 257881.697799999266863 ], [ 361822.782600000500679, 257870.761300001293421 ], [ 361833.392300002276897, 257855.860500000417233 ], [ 361838.246399998664856, 257854.000300001353025 ], [ 361842.272600002586842, 257854.666600000113249 ], [ 361843.872599996626377, 257856.157299999147654 ], [ 361851.230099998414516, 257844.396299999207258 ], [ 361856.129100002348423, 257837.259199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204022100", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".24", "LONGITUDE": -64.87408704000001, "LATITUDE": 18.35011453, "OBJECTID_1": 7153, "PARCEL_NO_": "103204022100", "Tax_Legal_": "FRYDENDAHL 56-7 EAST END QTR.", "Name": "CARTY, SONIA M", "Address": "1448 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28600, "Improved_V": 142200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.68298309, "SHAPE_Area": 887.54661928999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364817.30120000243187, 257910.046500001102686 ], [ 364809.49889999628067, 257879.374099999666214 ], [ 364803.840300001204014, 257881.016499999910593 ], [ 364791.713200002908707, 257884.717000000178814 ], [ 364788.487999998033047, 257884.690600000321865 ], [ 364784.993000000715256, 257916.3260000012815 ], [ 364794.666900001466274, 257916.616300001740456 ], [ 364801.932800002396107, 257915.620299998670816 ], [ 364810.015699997544289, 257913.364399999380112 ], [ 364817.30120000243187, 257910.046500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204022000", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".25", "LONGITUDE": -64.87431964, "LATITUDE": 18.35011109, "OBJECTID_1": 7152, "PARCEL_NO_": "103204022000", "Tax_Legal_": "FRYDENDAHL 56-6 EAST END QTR.", "Name": "HODGE, P. & HENDRICKSON, B", "Address": "P.O.BOX 3612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.176699078, "SHAPE_Area": 672.65980011600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364788.487999998033047, 257884.690600000321865 ], [ 364765.914800003170967, 257884.083599999547005 ], [ 364762.466600000858307, 257910.230999998748302 ], [ 364772.918099999427795, 257913.905099999159575 ], [ 364784.993000000715256, 257916.3260000012815 ], [ 364788.487999998033047, 257884.690600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104011900", "MAP": "D9-2965-T85", "PARCEL_NAM": "11D-3", "ACRE": null, "LONGITUDE": -64.88882137, "LATITUDE": 18.35007729, "OBJECTID_1": 6753, "PARCEL_NO_": "103104011900", "Tax_Legal_": "11D-3 ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "SIMON, GLENVILLE THEOPHILUS", "Address": "46100 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.150493149, "SHAPE_Area": 655.36591051400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363219.493299998342991, 257878.628899998962879 ], [ 363235.176700003445148, 257900.130899999290705 ], [ 363248.289099998772144, 257888.761199999600649 ], [ 363275.874600000679493, 257868.93299999833107 ], [ 363219.493299998342991, 257878.628899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104012100", "MAP": "D9-1438-T70", "PARCEL_NAM": "260-51A", "ACRE": ".255", "LONGITUDE": -64.89061722, "LATITUDE": 18.35010262, "OBJECTID_1": 6755, "PARCEL_NO_": "103104012100", "Tax_Legal_": "260-51A ANNAS RETREAT NEW QTR.", "Name": "CHARLES, KEITH & LANIS", "Address": "PO Box 10079", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33500, "Improved_V": 411800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.431049223, "SHAPE_Area": 1024.8190044800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363082.267899997532368, 257878.114199999719858 ], [ 363079.859700001776218, 257876.828000001609325 ], [ 363079.065999999642372, 257875.343800000846386 ], [ 363075.8496999964118, 257874.261999998241663 ], [ 363028.284500002861023, 257873.028400000184774 ], [ 363030.493000000715256, 257897.74439999833703 ], [ 363070.873400002717972, 257890.475499998778105 ], [ 363083.795999996364117, 257888.048099998384714 ], [ 363082.267899997532368, 257878.114199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204021900", "MAP": "A9-290-T81", "PARCEL_NAM": "56-5", "ACRE": null, "LONGITUDE": -64.8745556, "LATITUDE": 18.35005422, "OBJECTID_1": 7151, "PARCEL_NO_": "103204021900", "Tax_Legal_": "56-5 ESTATE FRYDENDAHL EAST END QTR.", "Name": "VICTORINE, REBECCA R", "Address": "91 Barnum Ave", "City": "BRIDGEPORT", "State": "Connecticut", "Zip": 6608, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.57949283000001, "SHAPE_Area": 720.91407638199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364765.914800003170967, 257884.083599999547005 ], [ 364737.767599999904633, 257875.198399998247623 ], [ 364737.531999997794628, 257902.849700000137091 ], [ 364754.428599998354912, 257907.209899999201298 ], [ 364762.466600000858307, 257910.230999998748302 ], [ 364765.914800003170967, 257884.083599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024000", "MAP": "D9-140-T57", "PARCEL_NAM": "4-6", "ACRE": "1.04", "LONGITUDE": -64.88382722, "LATITUDE": 18.34985579, "OBJECTID_1": 6811, "PARCEL_NO_": "103104024000", "Tax_Legal_": "TABOR & HARMONY 4 6 EAST END QUARTER", "Name": "WEBSTER, OLIVER & LORNA", "Address": "P.O. BOX 2875", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 155000, "Improved_V": 509800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.50504227599998, "SHAPE_Area": 5029.3255849200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363823.470399998128414, 257860.538100000470877 ], [ 363834.852300003170967, 257849.654399998486042 ], [ 363822.910499997437, 257846.92960000038147 ], [ 363804.278999999165535, 257840.898200001567602 ], [ 363785.829099997878075, 257830.254799999296665 ], [ 363776.216300003230572, 257822.787799999117851 ], [ 363772.154100000858307, 257826.343199998140335 ], [ 363751.897399999201298, 257837.787500001490116 ], [ 363720.334299996495247, 257851.250300001353025 ], [ 363720.896099999547005, 257879.963599998503923 ], [ 363732.971000000834465, 257882.384500000625849 ], [ 363746.627999998629093, 257888.406899999827147 ], [ 363757.860600002110004, 257895.042700000107288 ], [ 363776.348200000822544, 257901.949000000953674 ], [ 363823.470399998128414, 257860.538100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103048800", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-26", "ACRE": "0.25", "LONGITUDE": -64.8938909, "LATITUDE": 18.35007987, "OBJECTID_1": 6707, "PARCEL_NO_": "103103048800", "Tax_Legal_": "ANNAS RETREAT 260-26 NEW QTR", "Name": "BROWNE, LERUE C.", "Address": "260-26 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 160400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.99827145500001, "SHAPE_Area": 1114.60489863 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362729.765500001609325, 257892.116700001060963 ], [ 362725.170299999415874, 257863.581399999558926 ], [ 362695.32599999755621, 257864.603700000792742 ], [ 362678.272900000214577, 257878.607400000095367 ], [ 362687.07940000295639, 257886.067800000309944 ], [ 362703.162500001490116, 257891.265599999576807 ], [ 362715.244599997997284, 257892.842199999839067 ], [ 362729.765500001609325, 257892.116700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204022200", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".24", "LONGITUDE": -64.87382478000001, "LATITUDE": 18.35000974, "OBJECTID_1": 7154, "PARCEL_NO_": "103204022200", "Tax_Legal_": "FRYDENDAHL 56-8 EAST END QTR.", "Name": "HODGE, PATRICK & SHIRLEY", "Address": "P.O. BOX 3612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.947264695, "SHAPE_Area": 1028.73207555 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364849.674199998378754, 257896.168200001120567 ], [ 364834.609600000083447, 257866.069600000977516 ], [ 364809.49889999628067, 257879.374099999666214 ], [ 364817.30120000243187, 257910.046500001102686 ], [ 364849.674199998378754, 257896.168200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103048700", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-28", "ACRE": "0.23", "LONGITUDE": -64.89354371, "LATITUDE": 18.35005664, "OBJECTID_1": 6706, "PARCEL_NO_": "103103048700", "Tax_Legal_": "ANNAS RETREAT 260-28 NEW QTR", "Name": "BENJAMIN, J & GRAHAM, F", "Address": "PO Box 9251", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 299500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.59934629599999, "SHAPE_Area": 963.03438988400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362763.668300002813339, 257887.961199998855591 ], [ 362757.458800002932549, 257859.623799998313189 ], [ 362725.170299999415874, 257863.581399999558926 ], [ 362729.765500001609325, 257892.116700001060963 ], [ 362763.668300002813339, 257887.961199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204014100", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".31", "LONGITUDE": -64.8715577, "LATITUDE": 18.34990476, "OBJECTID_1": 7093, "PARCEL_NO_": "103204014100", "Tax_Legal_": "FRYDENDAHL 56-79 EAST END QTR.", "Name": "BLAKE, DENRY & MONIQUE", "Address": "PO Box 7835", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55400, "Improved_V": 280200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.900671015, "SHAPE_Area": 1368.1273181700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365094.206299997866154, 257872.416200000792742 ], [ 365070.171499997377396, 257854.065400000661612 ], [ 365045.825699999928474, 257872.231300000101328 ], [ 365059.218400001525879, 257909.282299999147654 ], [ 365064.095799997448921, 257904.678100001066923 ], [ 365078.735299997031689, 257890.02140000090003 ], [ 365088.499200001358986, 257879.757699999958277 ], [ 365094.206299997866154, 257872.416200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004032500", "MAP": "C9-118-T71", "PARCEL_NAM": "337", "ACRE": "0.68", "LONGITUDE": -64.90320034, "LATITUDE": 18.34985055, "OBJECTID_1": 6149, "PARCEL_NO_": "103004032500", "Tax_Legal_": "337 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "BROWN, ELROY & DOLORES", "Address": "PO Box 9166", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66300, "Improved_V": 127700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.75722832599999, "SHAPE_Area": 3058.8528866299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361685.900100000202656, 257847.265000000596046 ], [ 361744.482199996709824, 257880.464000001549721 ], [ 361749.377599999308586, 257873.749099999666214 ], [ 361763.31870000064373, 257846.421000000089407 ], [ 361764.945699997246265, 257844.745600000023842 ], [ 361715.220399998128414, 257813.096700001507998 ], [ 361708.170900002121925, 257809.610100001096725 ], [ 361706.303400002419949, 257811.58049999922514 ], [ 361698.226000003516674, 257821.026999998837709 ], [ 361692.202200002968311, 257827.461500000208616 ], [ 361686.726000003516674, 257834.717399999499321 ], [ 361678.511699996888638, 257843.20549999922514 ], [ 361685.900100000202656, 257847.265000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103048600", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-32", "ACRE": "0.23", "LONGITUDE": -64.89323881, "LATITUDE": 18.35000844, "OBJECTID_1": 6705, "PARCEL_NO_": "103103048600", "Tax_Legal_": "ANNAS RETREAT 260-32 NEW QTR", "Name": "MARCELLIN, F.", "Address": "PO Box 10476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58000, "Improved_V": 387500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.766371161, "SHAPE_Area": 955.80097598700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362794.346000000834465, 257883.77930000051856 ], [ 362788.966099999845028, 257852.704500000923872 ], [ 362757.458800002932549, 257859.623799998313189 ], [ 362763.668300002813339, 257887.961199998855591 ], [ 362794.346000000834465, 257883.77930000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203024600", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".28", "LONGITUDE": -64.8751798, "LATITUDE": 18.34997133, "OBJECTID_1": 7045, "PARCEL_NO_": "103203024600", "Tax_Legal_": "FRYDENDAHL 56-2&56-3 EAST END QTR.", "Name": "CHARLES, JEAN M.", "Address": "P.O.BOX 1733 VDS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33300, "Improved_V": 186800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.05413019, "SHAPE_Area": 1203.2830013099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364703.187899999320507, 257864.149599999189377 ], [ 364697.559900000691414, 257862.203699998557568 ], [ 364661.1570999994874, 257875.837999999523163 ], [ 364671.409000001847744, 257902.941799998283386 ], [ 364686.764899998903275, 257898.84569999948144 ], [ 364702.905599996447563, 257897.289000000804663 ], [ 364703.187899999320507, 257864.149599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203024800", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".24", "LONGITUDE": -64.87485025, "LATITUDE": 18.34998085, "OBJECTID_1": 7047, "PARCEL_NO_": "103203024800", "Tax_Legal_": "FRYDENDAHL 56-4 EAST END QTR.", "Name": "DALEY, JOSEPH & LAUREL", "Address": "6550 Est Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28600, "Improved_V": 223400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.37526731, "SHAPE_Area": 1020.22139622 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364737.767599999904633, 257875.198399998247623 ], [ 364703.187899999320507, 257864.149599999189377 ], [ 364702.905599996447563, 257897.289000000804663 ], [ 364719.832699999213219, 257898.0608000010252 ], [ 364737.531999997794628, 257902.849700000137091 ], [ 364737.767599999904633, 257875.198399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104012200", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-51B", "ACRE": "0.12", "LONGITUDE": -64.89001146, "LATITUDE": 18.35001488, "OBJECTID_1": 6756, "PARCEL_NO_": "103104012200", "Tax_Legal_": "ANNAS RETREAT 260-51B NEW QTR", "Name": "RICHARDS, A", "Address": "1590 Lincoln Pl", "City": "Brooklyn", "State": "New York", "Zip": 11233, "Country": "United States", "Land_Value": 19700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.28040496599999, "SHAPE_Area": 984.30777411300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363150.827799998223782, 257875.931200001388788 ], [ 363148.52929999679327, 257861.769099999219179 ], [ 363092.821800000965595, 257869.756900001317263 ], [ 363091.977799996733665, 257874.182900000363588 ], [ 363090.338200002908707, 257877.335900001227856 ], [ 363087.100299999117851, 257878.787099998444319 ], [ 363082.267899997532368, 257878.114199999719858 ], [ 363083.795999996364117, 257888.048099998384714 ], [ 363150.827799998223782, 257875.931200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103040900", "MAP": "C9-229-T78", "PARCEL_NAM": "293", "ACRE": "0.51", "LONGITUDE": -64.89679033, "LATITUDE": 18.34991951, "OBJECTID_1": 6628, "PARCEL_NO_": "103103040900", "Tax_Legal_": "ANNAS RETREAT 293 NEW QTR", "Name": "MORGAN, TRUSTEES, VERNON & URSULA", "Address": "PO BOX 502362", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 127300, "Improved_V": 117800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.55123370300001, "SHAPE_Area": 1760.3993896500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362404.489900000393391, 257833.725699998438358 ], [ 362401.298900000751019, 257829.688799999654293 ], [ 362365.526199996471405, 257864.015399999916553 ], [ 362411.345799997448921, 257880.855700001120567 ], [ 362419.062700003385544, 257883.69200000166893 ], [ 362426.588200002908707, 257846.289299998432398 ], [ 362423.742499999701977, 257845.493500001728535 ], [ 362410.0945999994874, 257838.415699999779463 ], [ 362404.489900000393391, 257833.725699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103048500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89295456000001, "LATITUDE": 18.34995591, "OBJECTID_1": 6704, "PARCEL_NO_": "103103048500", "Tax_Legal_": "ANNAS RETREAT 260-36 NEW QTR", "Name": "GRIFFIN, CLAUDIO & MAUREEN", "Address": "PO Box 4231", "City": "Waynesville", "State": "Missouri", "Zip": 65583, "Country": "United States", "Land_Value": 40500, "Improved_V": 266800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.815135142, "SHAPE_Area": 964.73551704399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362824.213699996471405, 257880.013000000268221 ], [ 362817.248199999332428, 257845.758799999952316 ], [ 362788.966099999845028, 257852.704500000923872 ], [ 362794.346000000834465, 257883.77930000051856 ], [ 362810.501000002026558, 257880.534000001847744 ], [ 362824.213699996471405, 257880.013000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003036100", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".40", "LONGITUDE": -64.90883383000001, "LATITUDE": 18.34983554, "OBJECTID_1": 5857, "PARCEL_NO_": "103003036100", "Tax_Legal_": "WINTBERG 1-143-43 3 GR NORTHSIDE QTR", "Name": "SCARBRIEL, LUBIN & ALANA", "Address": "PO Box 9697", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41700, "Improved_V": 166400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.77812529799999, "SHAPE_Area": 1626.49929643 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361113.211400002241135, 257866.85359999909997 ], [ 361122.916000001132488, 257863.555500000715256 ], [ 361128.563799999654293, 257863.17960000038147 ], [ 361137.415200002491474, 257865.362900000065565 ], [ 361143.831500001251698, 257869.426199998706579 ], [ 361143.943000003695488, 257856.339299999177456 ], [ 361141.599600002169609, 257847.454199999570847 ], [ 361144.338600002229214, 257809.901999998837709 ], [ 361112.870899997651577, 257812.177600000053644 ], [ 361112.775600001215935, 257823.364799998700619 ], [ 361113.211400002241135, 257866.85359999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204014300", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".37", "LONGITUDE": -64.87201222, "LATITUDE": 18.34980151, "OBJECTID_1": 7095, "PARCEL_NO_": "103204014300", "Tax_Legal_": "FRYDENDAHL 56-76 EAST END QTR.", "Name": "CALLWOOD, WENDELL & OLIVIA", "Address": "PO Box 9833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66100, "Improved_V": 139000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.81962692600001, "SHAPE_Area": 1859.5149338900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365045.825699999928474, 257872.231300000101328 ], [ 365037.946000002324581, 257850.635299999266863 ], [ 365042.922399997711182, 257834.421799998730421 ], [ 365007.300800003111362, 257851.017700001597404 ], [ 365006.449500001966953, 257856.288100000470877 ], [ 365000.790899999439716, 257857.930500000715256 ], [ 364996.788099996745586, 257854.520300000905991 ], [ 364991.951999999582767, 257854.269600000232458 ], [ 365006.881800003349781, 257900.199099998921156 ], [ 365045.825699999928474, 257872.231300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021300", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".46", "LONGITUDE": -64.90719752, "LATITUDE": 18.34985231, "OBJECTID_1": 6086, "PARCEL_NO_": "103004021300", "Tax_Legal_": "WINTBERG 1-143-17 3 GR NORTHSID QTR.", "Name": "TURNBULL, ANGEL & BERNICE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48000, "Improved_V": 409000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.690671374, "SHAPE_Area": 1902.6641185000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361281.334399998188019, 257820.100299999117851 ], [ 361276.2195999994874, 257852.566799998283386 ], [ 361280.21339999884367, 257857.032499998807907 ], [ 361322.046400003135204, 257868.562800001353025 ], [ 361324.593000002205372, 257853.596000000834465 ], [ 361314.44539999961853, 257814.249600000679493 ], [ 361281.334399998188019, 257820.100299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003035900", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".29", "LONGITUDE": -64.90816562000001, "LATITUDE": 18.3498764, "OBJECTID_1": 5855, "PARCEL_NO_": "103003035900", "Tax_Legal_": "WINTBERG 1-143-24 3 GR NORTHSIDE", "Name": "CHRISTIE, VIRGINIA R", "Address": "26252 Sibley Rd", "City": "Romulus", "State": "Michigan", "Zip": 48174, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.53088475800001, "SHAPE_Area": 1226.43081194 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361219.205200001597404, 257824.657999999821186 ], [ 361183.745399996638298, 257822.256900001317263 ], [ 361184.201099999248981, 257863.423799999058247 ], [ 361210.780699998140335, 257867.018899999558926 ], [ 361210.105599999427795, 257851.603500001132488 ], [ 361211.781199999153614, 257844.228999998420477 ], [ 361216.708999998867512, 257833.714600000530481 ], [ 361219.205200001597404, 257824.657999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003036000", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".37", "LONGITUDE": -64.9084702, "LATITUDE": 18.34986267, "OBJECTID_1": 5856, "PARCEL_NO_": "103003036000", "Tax_Legal_": "WINTBERG 1-143-23 3 GR NORTHSIDE", "Name": "SCARBRIEL, ALANA J. & LUBIN", "Address": "PO Box 9697", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.90557899800001, "SHAPE_Area": 1568.4565531200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361183.745399996638298, 257822.256900001317263 ], [ 361151.566699996590614, 257813.338700000196695 ], [ 361149.720299996435642, 257840.765700001269579 ], [ 361151.225000001490116, 257853.443599998950958 ], [ 361151.115299999713898, 257866.319400001317263 ], [ 361184.201099999248981, 257863.423799999058247 ], [ 361183.745399996638298, 257822.256900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103048400", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-40", "ACRE": "0.23", "LONGITUDE": -64.89269415, "LATITUDE": 18.3499178, "OBJECTID_1": 6703, "PARCEL_NO_": "103103048400", "Tax_Legal_": "ANNAS RETREAT 260-40 NEW QTR", "Name": "DOLPHIN, MAGDALENE", "Address": "PO Box 8635", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 326600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.575853689, "SHAPE_Area": 951.97088736499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362850.046300001442432, 257876.635800000280142 ], [ 362843.892499998211861, 257841.754999998956919 ], [ 362817.248199999332428, 257845.758799999952316 ], [ 362824.213699996471405, 257880.013000000268221 ], [ 362840.345299996435642, 257879.511700000613928 ], [ 362850.046300001442432, 257876.635800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103048900", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-9", "ACRE": "0.31", "LONGITUDE": -64.89421352, "LATITUDE": 18.34983945, "OBJECTID_1": 6708, "PARCEL_NO_": "103103048900", "Tax_Legal_": "ANNAS RETREAT 260-9 NEW QTR", "Name": "TUITT, ALICE A.", "Address": "PO Box 9395", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44700, "Improved_V": 123800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.745501854, "SHAPE_Area": 1273.4066326899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362681.886600002646446, 257833.040800001472235 ], [ 362658.535899996757507, 257829.050000000745058 ], [ 362653.689000003039837, 257830.065799999982119 ], [ 362652.061999998986721, 257831.741200000047684 ], [ 362651.241300001740456, 257833.423200000077486 ], [ 362652.018899999558926, 257836.807100001722574 ], [ 362659.120999999344349, 257855.019299998879433 ], [ 362667.880800001323223, 257867.967700000852346 ], [ 362678.272900000214577, 257878.607400000095367 ], [ 362695.32599999755621, 257864.603700000792742 ], [ 362681.886600002646446, 257833.040800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204022300", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.87357448, "LATITUDE": 18.34987834, "OBJECTID_1": 7155, "PARCEL_NO_": "103204022300", "Tax_Legal_": "FRYDENDAHL 56-9 EAST END QTR.", "Name": "KELLY, EARL J & ANNETTE", "Address": "PO Box 9941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 196800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.71527464099999, "SHAPE_Area": 974.52304257900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364873.159800000488758, 257884.328099999576807 ], [ 364862.150100000202656, 257851.518500000238419 ], [ 364834.609600000083447, 257866.069600000977516 ], [ 364849.674199998378754, 257896.168200001120567 ], [ 364873.159800000488758, 257884.328099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9060247, "LATITUDE": 18.34951416, "OBJECTID_1": 6093, "PARCEL_NO_": "103004022000", "Tax_Legal_": "WINTBERG 1 68 GR NORTHSIDE QTR", "Name": "THOMAS, LEONIE", "Address": "PO Box 11134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 117300, "Improved_V": 261600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.351959561, "SHAPE_Area": 4808.0129053000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361461.623999997973442, 257765.00279999896884 ], [ 361429.375100001692772, 257764.316700000315905 ], [ 361386.644199997186661, 257763.544700000435114 ], [ 361390.569600000977516, 257776.031399998813868 ], [ 361402.319099999964237, 257816.657499998807907 ], [ 361414.059500001370907, 257858.339000001549721 ], [ 361437.370600000023842, 257866.973600000143051 ], [ 361461.623999997973442, 257765.00279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004032300", "MAP": "C9-118-T71", "PARCEL_NAM": "344", "ACRE": "0.56", "LONGITUDE": -64.90399714, "LATITUDE": 18.34972342, "OBJECTID_1": 6147, "PARCEL_NO_": "103004032300", "Tax_Legal_": "344 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "ALCENDOR, BLAIZIA & LOUIS", "Address": "PO Box 502533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 55800, "Improved_V": 103600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.35617027200001, "SHAPE_Area": 2501.9251543099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361604.778999999165535, 257809.448600001633167 ], [ 361645.40820000320673, 257867.620799999684095 ], [ 361646.202100001275539, 257868.806800000369549 ], [ 361655.237899996340275, 257862.919799998402596 ], [ 361662.904500000178814, 257857.854400001466274 ], [ 361671.666400000452995, 257849.913899999111891 ], [ 361675.434199996292591, 257845.279500000178814 ], [ 361630.715899996459484, 257793.828899998217821 ], [ 361628.267599999904633, 257790.907900001853704 ], [ 361625.392599999904633, 257792.413800001144409 ], [ 361621.011600002646446, 257796.110300000756979 ], [ 361611.565200001001358, 257802.271000001579523 ], [ 361603.487800002098083, 257807.473400000482798 ], [ 361604.778999999165535, 257809.448600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103048300", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-42", "ACRE": "0.23", "LONGITUDE": -64.89244262, "LATITUDE": 18.34987799, "OBJECTID_1": 6702, "PARCEL_NO_": "103103048300", "Tax_Legal_": "ANNAS RETREAT 260-42 NEW QTR", "Name": "WILTSHIRE, MATHAIUS & ELIZABETH", "Address": "PO Box 10952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 255700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.43167716000001, "SHAPE_Area": 991.116938893 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362871.310699999332428, 257841.557199999690056 ], [ 362870.545699998736382, 257836.695799998939037 ], [ 362843.892499998211861, 257841.754999998956919 ], [ 362850.046300001442432, 257876.635800000280142 ], [ 362877.491499997675419, 257873.271800000220537 ], [ 362871.310699999332428, 257841.557199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103042900", "MAP": "A9-86-T66", "PARCEL_NAM": "283", "ACRE": null, "LONGITUDE": -64.89479217, "LATITUDE": 18.34977417, "OBJECTID_1": 6648, "PARCEL_NO_": "103103042900", "Tax_Legal_": "ANNAS RETREAT 283 & 284B NEW QTR", "Name": "RICHARDSON, IVAN", "Address": "PO Box 502002", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052002, "Country": "United States", "Land_Value": 104200, "Improved_V": 373100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.330896706, "SHAPE_Area": 2554.0474844 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362585.796999998390675, 257848.508499998599291 ], [ 362582.38289999961853, 257870.645399998873472 ], [ 362585.581200003623962, 257873.837999999523163 ], [ 362619.545199997723103, 257862.505800001323223 ], [ 362650.273199997842312, 257852.413699999451637 ], [ 362642.40429999679327, 257829.551199998706579 ], [ 362639.206000000238419, 257826.35869999974966 ], [ 362635.190600000321865, 257824.425900001078844 ], [ 362590.108999997377396, 257815.613200001418591 ], [ 362585.796999998390675, 257848.508499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103043000", "MAP": "D9-6479-T98", "PARCEL_NAM": "284-REM", "ACRE": null, "LONGITUDE": -64.89525087, "LATITUDE": 18.3498801, "OBJECTID_1": 6649, "PARCEL_NO_": "103103043000", "Tax_Legal_": "ANNAS RETREAT REM. 284 & 285B NEW QTR", "Name": "FORBES, IONA S. & FRANK", "Address": "P.0.BOX 502966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 44700, "Improved_V": 280300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.202910081, "SHAPE_Area": 1251.28265169 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362544.680399999022484, 257847.538699999451637 ], [ 362542.090599998831749, 257867.571400001645088 ], [ 362564.622400000691414, 257873.03319999948144 ], [ 362568.657600000500679, 257872.644000001251698 ], [ 362570.282799996435642, 257871.179699998348951 ], [ 362575.136900000274181, 257869.319600000977516 ], [ 362578.362099997699261, 257869.346000000834465 ], [ 362582.38289999961853, 257870.645399998873472 ], [ 362585.796999998390675, 257848.508499998599291 ], [ 362560.941500000655651, 257831.839800000190735 ], [ 362544.680399999022484, 257847.538699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021200", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-31", "ACRE": ".47", "LONGITUDE": -64.90765772, "LATITUDE": 18.34979036, "OBJECTID_1": 6085, "PARCEL_NO_": "103004021200", "Tax_Legal_": "WINTBERG 1-143-31 GREAT NORTHSIDE QTR", "Name": "LANCLOS, PEDRITO & BERNICE", "Address": "PO Box 306122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49000, "Improved_V": 309000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.85974242200001, "SHAPE_Area": 1944.44685691 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361281.334399998188019, 257820.100299999117851 ], [ 361262.778499998152256, 257821.214999999850988 ], [ 361230.6554000005126, 257805.753299999982119 ], [ 361223.157700002193451, 257833.978500001132488 ], [ 361239.156199999153614, 257849.097100000828505 ], [ 361260.042999997735023, 257858.344999998807907 ], [ 361262.43860000371933, 257861.108899999409914 ], [ 361265.662000000476837, 257861.3462999984622 ], [ 361272.978200003504753, 257854.440099999308586 ], [ 361276.2195999994874, 257852.566799998283386 ], [ 361281.334399998188019, 257820.100299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104013200", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-68", "ACRE": "0.35", "LONGITUDE": -64.88956102, "LATITUDE": 18.34983983, "OBJECTID_1": 6765, "PARCEL_NO_": "103104013200", "Tax_Legal_": "ANNAS RETREAT 260-68 NEW QTR", "Name": "GEORGE, CLEVE A. & ALBERT H", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61600, "Improved_V": 235000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.60670032199999, "SHAPE_Area": 1248.64426718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363185.554999999701977, 257869.671500001102686 ], [ 363180.994000002741814, 257837.125700000673532 ], [ 363144.688400000333786, 257839.361699998378754 ], [ 363148.52929999679327, 257861.769099999219179 ], [ 363150.827799998223782, 257875.931200001388788 ], [ 363185.554999999701977, 257869.671500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103048200", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-46", "ACRE": "0.23", "LONGITUDE": -64.8921387, "LATITUDE": 18.34986823, "OBJECTID_1": 6701, "PARCEL_NO_": "103103048200", "Tax_Legal_": "ANNAS RETREAT 260-46 NEW QTR", "Name": "Una Counsins (Life Estate) & Williams Cousins, Jr.", "Address": "PO Box 7683", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 170200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.556658938, "SHAPE_Area": 1124.3873836600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362912.430799998342991, 257842.104899998754263 ], [ 362871.310699999332428, 257841.557199999690056 ], [ 362877.491499997675419, 257873.271800000220537 ], [ 362911.385399997234344, 257870.171700000762939 ], [ 362912.430799998342991, 257842.104899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203024300", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".27", "LONGITUDE": -64.87567397, "LATITUDE": 18.34986257, "OBJECTID_1": 7042, "PARCEL_NO_": "103203024300", "Tax_Legal_": "FRYDENDAHL 56-53 No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.929330929, "SHAPE_Area": 1164.55752005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364661.1570999994874, 257875.837999999523163 ], [ 364633.987099997699261, 257846.906899999827147 ], [ 364621.797100000083447, 257857.995099999010563 ], [ 364612.834100000560284, 257868.898600000888109 ], [ 364611.181900002062321, 257873.529100000858307 ], [ 364611.101000003516674, 257883.02760000154376 ], [ 364611.894799999892712, 257884.511799998581409 ], [ 364629.610299997031689, 257887.401000000536442 ], [ 364661.1570999994874, 257875.837999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004022200", "MAP": "D9-1119-T73", "PARCEL_NAM": "1YC", "ACRE": ".64", "LONGITUDE": -64.90547771, "LATITUDE": 18.34968348, "OBJECTID_1": 6095, "PARCEL_NO_": "103004022200", "Tax_Legal_": "WINTBERG 1-YC REMAINDER GREAT NORTHSIDE QTR", "Name": "BORNN, MICHAEL A. & BRIGITTE M.", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65300, "Improved_V": 318600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.02319620399999, "SHAPE_Area": 3288.76774174 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361466.251500003039837, 257789.738600000739098 ], [ 361462.571800000965595, 257787.936999998986721 ], [ 361449.094400003552437, 257843.979200001806021 ], [ 361452.073100000619888, 257844.929099999368191 ], [ 361505.158399999141693, 257860.773400001227856 ], [ 361506.02589999884367, 257853.603300001472235 ], [ 361515.341300003230572, 257801.328299999237061 ], [ 361466.251500003039837, 257789.738600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012500", "MAP": null, "PARCEL_NAM": "4-7-1", "ACRE": null, "LONGITUDE": -64.88321803, "LATITUDE": 18.34985937, "OBJECTID_1": 6974, "PARCEL_NO_": "103203012500", "Tax_Legal_": "TARBOR & HARMONY 1-2 &4-7-1 EAST END QTR", "Name": "WEEKS, GENEVA", "Address": "PO Box 12302", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15800, "Improved_V": 280400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.095466081400005, "SHAPE_Area": 244.41827341800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363823.470399998128414, 257860.538100000470877 ], [ 363848.304300002753735, 257879.739799998700619 ], [ 363834.852300003170967, 257849.654399998486042 ], [ 363823.470399998128414, 257860.538100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024900", "MAP": "D9-1119-T73", "PARCEL_NAM": "1YCA", "ACRE": ".329", "LONGITUDE": -64.90502848, "LATITUDE": 18.34973646, "OBJECTID_1": 6120, "PARCEL_NO_": "103004024900", "Tax_Legal_": "WINTBERG YCA GREAT NORTHSIDE QTR", "Name": "LEO T. BARBEL, JR. TRUSTEE", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31500, "Improved_V": 247900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.652696443, "SHAPE_Area": 2027.42371318 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361567.577200002968311, 257822.231899999082088 ], [ 361530.630599997937679, 257805.042100001126528 ], [ 361515.341300003230572, 257801.328299999237061 ], [ 361506.02589999884367, 257853.603300001472235 ], [ 361530.157700002193451, 257860.555799998342991 ], [ 361531.79730000346899, 257857.402800001204014 ], [ 361549.714199997484684, 257836.651200000196695 ], [ 361557.840300001204014, 257829.3293999992311 ], [ 361567.577200002968311, 257822.231899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021900", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-59", "ACRE": ".24", "LONGITUDE": -64.90633636, "LATITUDE": 18.34982292, "OBJECTID_1": 6092, "PARCEL_NO_": "103004021900", "Tax_Legal_": "WINTBERG 1-143-59 GT. NORTHSIDE", "Name": "ZAJAC, KATHLYN M. & CHARLOTTE L", "Address": "6849 Upper Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22900, "Improved_V": 183500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.160582834, "SHAPE_Area": 1258.6836625799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361402.319099999964237, 257816.657499998807907 ], [ 361369.998199999332428, 257824.414500001817942 ], [ 361375.473399996757507, 257844.302099999040365 ], [ 361377.859999999403954, 257848.121399998664856 ], [ 361380.208800002932549, 257856.373199999332428 ], [ 361414.059500001370907, 257858.339000001549721 ], [ 361402.319099999964237, 257816.657499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103043100", "MAP": "D9-8846-T014", "PARCEL_NAM": "285-REM", "ACRE": ".405", "LONGITUDE": -64.89556193, "LATITUDE": 18.34970646, "OBJECTID_1": 6650, "PARCEL_NO_": "103103043100", "Tax_Legal_": "ANNAS RETREAT 285 NEW QTR", "Name": "SEWER, ANNETTE N.(Trustee)", "Address": "PO Box 10845", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69200, "Improved_V": 1200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.70842788600001, "SHAPE_Area": 1870.0668301400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362551.468999996781349, 257807.908700000494719 ], [ 362522.48309999704361, 257802.816300000995398 ], [ 362509.080399997532368, 257861.601700000464916 ], [ 362529.214800000190735, 257864.51069999858737 ], [ 362542.090599998831749, 257867.571400001645088 ], [ 362544.680399999022484, 257847.538699999451637 ], [ 362551.468999996781349, 257807.908700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103042800", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-48", "ACRE": "0.23", "LONGITUDE": -64.89181701, "LATITUDE": 18.34982929, "OBJECTID_1": 6647, "PARCEL_NO_": "103103042800", "Tax_Legal_": "ANNAS RETREAT 260-48 NEW QTR", "Name": "MATTHEW (LIFE ESTATE), CATHERINE", "Address": "PO Box 9065", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34200, "Improved_V": 200800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.58049100900001, "SHAPE_Area": 1032.1374002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362943.110299997031689, 257837.711899999529123 ], [ 362928.607400000095367, 257836.32660000026226 ], [ 362913.326999999582767, 257831.557500001043081 ], [ 362912.430799998342991, 257842.104899998754263 ], [ 362911.385399997234344, 257870.171700000762939 ], [ 362942.043200001120567, 257868.311700001358986 ], [ 362943.110299997031689, 257837.711899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021400", "MAP": "D9-5976-T95", "PARCEL_NAM": "1-78-A", "ACRE": ".10", "LONGITUDE": -64.90674848, "LATITUDE": 18.34992145, "OBJECTID_1": 6087, "PARCEL_NO_": "103004021400", "Tax_Legal_": "1-79 WINTBERG GREAT NORTHSIDE QTR", "Name": "CARTY, DALE & EDITA", "Address": "PO Box 307682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50100, "Improved_V": 371900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.726520267, "SHAPE_Area": 434.96389538699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361372.138400003314018, 257857.151599999517202 ], [ 361348.924400001764297, 257837.11879999935627 ], [ 361324.593000002205372, 257853.596000000834465 ], [ 361372.138400003314018, 257857.151599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004021800", "MAP": "D9-5976-T95", "PARCEL_NAM": "1-78", "ACRE": null, "LONGITUDE": -64.90681499, "LATITUDE": 18.34972582, "OBJECTID_1": 6091, "PARCEL_NO_": "103004021800", "Tax_Legal_": "WINTBERG 1-78 REM. GR NORTHSIDE QTR", "Name": "TRUST AGREEMENT OF GIGI A CAINES", "Address": "PO Box 6756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38600, "Improved_V": 279000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.77349682, "SHAPE_Area": 1695.52057969 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361372.138400003314018, 257857.151599999517202 ], [ 361369.791400000452995, 257848.6886 ], [ 361368.196800000965595, 257846.564599998295307 ], [ 361368.212999999523163, 257844.664900001138449 ], [ 361363.499200001358986, 257830.060899998992682 ], [ 361358.083400003612041, 257803.207699999213219 ], [ 361314.44539999961853, 257814.249600000679493 ], [ 361324.593000002205372, 257853.596000000834465 ], [ 361348.924400001764297, 257837.11879999935627 ], [ 361372.138400003314018, 257857.151599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204021700", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".29", "LONGITUDE": -64.87422604, "LATITUDE": 18.34977062, "OBJECTID_1": 7149, "PARCEL_NO_": "103204021700", "Tax_Legal_": "FRYDENDAHL 56-48 EAST END QTR.", "Name": "WILLIAMS, ALLENTON A. & BERNADINE R. (LIFE ESTATE)", "Address": "PO Box 7416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 174400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.51355484300001, "SHAPE_Area": 1466.933831 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364803.840300001204014, 257881.016499999910593 ], [ 364797.792599998414516, 257833.682100001722574 ], [ 364776.8158999979496, 257834.988000001758337 ], [ 364765.914800003170967, 257884.083599999547005 ], [ 364788.487999998033047, 257884.690600000321865 ], [ 364791.713200002908707, 257884.717000000178814 ], [ 364803.840300001204014, 257881.016499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204021800", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".28", "LONGITUDE": -64.87450429, "LATITUDE": 18.34972543, "OBJECTID_1": 7150, "PARCEL_NO_": "103204021800", "Tax_Legal_": "FRYDENDAHL 56-49 EAST END QTR.", "Name": "GREENAWAY, CORALINE E", "Address": "PO Box 303326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30300, "Improved_V": 80200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.65936238200001, "SHAPE_Area": 1444.7219562099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364776.8158999979496, 257834.988000001758337 ], [ 364760.696800000965595, 257834.011700000613928 ], [ 364744.592100001871586, 257831.346799999475479 ], [ 364737.767599999904633, 257875.198399998247623 ], [ 364765.914800003170967, 257884.083599999547005 ], [ 364776.8158999979496, 257834.988000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103040800", "MAP": "C9-229-T78", "PARCEL_NAM": "294", "ACRE": "0.69", "LONGITUDE": -64.89711255, "LATITUDE": 18.34971774, "OBJECTID_1": 6627, "PARCEL_NO_": "103103040800", "Tax_Legal_": "ANNAS RETREAT 294 NEW QTR", "Name": "CASEY, LEON & MARGUERITA", "Address": "PO Box 503032", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 148200, "Improved_V": 185400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.165224494, "SHAPE_Area": 2234.5645815399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362401.298900000751019, 257829.688799999654293 ], [ 362396.505900003015995, 257824.372299998998642 ], [ 362392.530100002884865, 257817.795800000429153 ], [ 362387.812700003385544, 257803.614000000059605 ], [ 362339.219999998807907, 257828.336399998515844 ], [ 362336.572700001299381, 257855.123599998652935 ], [ 362348.64580000191927, 257857.755499999970198 ], [ 362365.526199996471405, 257864.015399999916553 ], [ 362401.298900000751019, 257829.688799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104013100", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-58", "ACRE": "0.36", "LONGITUDE": -64.89003129, "LATITUDE": 18.34982563, "OBJECTID_1": 6764, "PARCEL_NO_": "103104013100", "Tax_Legal_": "ANNAS RETREAT 260-58 NEW QTR", "Name": "ARTHUR THOMAS REVOC LIVING TRUST & VIOLET THOMAS", "Address": "19A 6403 ESTATE NADIR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.49806998, "SHAPE_Area": 1527.7836158499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363144.688400000333786, 257839.361699998378754 ], [ 363114.836800001561642, 257841.228300001472235 ], [ 363085.806000001728535, 257841.412900000810623 ], [ 363085.61540000140667, 257863.787300001829863 ], [ 363088.835199996829033, 257864.446899998933077 ], [ 363091.239799998700619, 257866.155299998819828 ], [ 363092.821800000965595, 257869.756900001317263 ], [ 363148.52929999679327, 257861.769099999219179 ], [ 363144.688400000333786, 257839.361699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204022400", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.87334681, "LATITUDE": 18.34977527, "OBJECTID_1": 7156, "PARCEL_NO_": "103204022400", "Tax_Legal_": "FRYDENDAHL 56-10 EAST END QTR.", "Name": "WILLIAMS, LEROY", "Address": "PO Box 11488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.13757440400001, "SHAPE_Area": 854.78228868400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364898.254399999976158, 257872.923300001770258 ], [ 364880.787000000476837, 257840.905200000852346 ], [ 364862.150100000202656, 257851.518500000238419 ], [ 364873.159800000488758, 257884.328099999576807 ], [ 364887.738099999725819, 257876.848000001162291 ], [ 364898.254399999976158, 257872.923300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103042700", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-50", "ACRE": "0.23", "LONGITUDE": -64.8915179, "LATITUDE": 18.34982989, "OBJECTID_1": 6646, "PARCEL_NO_": "103103042700", "Tax_Legal_": "ANNAS RETREAT 260-50 NEW QTR", "Name": "HIBISCUS DEVELOPERS INC", "Address": "PO Box 4906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.10390546799999, "SHAPE_Area": 925.92766268800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362974.551100000739098, 257838.60249999910593 ], [ 362943.110299997031689, 257837.711899999529123 ], [ 362942.043200001120567, 257868.311700001358986 ], [ 362975.129000000655651, 257865.41609999909997 ], [ 362974.551100000739098, 257838.60249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104032800", "MAP": "D9-3278-T85", "PARCEL_NAM": "123B-2", "ACRE": null, "LONGITUDE": -64.88526742000001, "LATITUDE": 18.34967824, "OBJECTID_1": 6863, "PARCEL_NO_": "103104032800", "Tax_Legal_": "123B-2 ANNAS RETREAT NO.1 NEW QTR", "Name": "LEWIS, JASON A.", "Address": "4500 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107900, "Improved_V": 235100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.746724105, "SHAPE_Area": 2118.0880937400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363622.300599999725819, 257802.772100001573563 ], [ 363608.183300003409386, 257839.999499998986721 ], [ 363597.599899999797344, 257836.559900000691414 ], [ 363591.117600001394749, 257862.224500000476837 ], [ 363601.710799999535084, 257870.223799999803305 ], [ 363606.462700001895428, 257871.638799998909235 ], [ 363616.932099997997284, 257873.202100001275539 ], [ 363628.218699999153614, 257873.50560000166297 ], [ 363635.745300002396107, 257841.903099998831749 ], [ 363639.161100000143051, 257819.55519999936223 ], [ 363640.930200003087521, 257801.204500000923872 ], [ 363622.300599999725819, 257802.772100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104013300", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-70", "ACRE": "0.35", "LONGITUDE": -64.88918708, "LATITUDE": 18.3498, "OBJECTID_1": 6766, "PARCEL_NO_": "103104013300", "Tax_Legal_": "ANNAS RETREAT 260-70 NEW QTR", "Name": "GEORGE, ALBERT H", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.08109383199999, "SHAPE_Area": 1303.3633372899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363185.554999999701977, 257869.671500001102686 ], [ 363229.166000001132488, 257861.795800000429153 ], [ 363227.758299998939037, 257837.7195999994874 ], [ 363212.443800002336502, 257836.960999999195337 ], [ 363180.994000002741814, 257837.125700000673532 ], [ 363185.554999999701977, 257869.671500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103049000", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-11", "ACRE": "0.25", "LONGITUDE": -64.89390778000001, "LATITUDE": 18.34981296, "OBJECTID_1": 6709, "PARCEL_NO_": "103103049000", "Tax_Legal_": "260-11 ANNAS RETREAT NEW QUARTER", "Name": "CALLWOOD, JUSTIN", "Address": "PO Box 7485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34200, "Improved_V": 261300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.69897779900001, "SHAPE_Area": 1030.5178003599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362722.191399998962879, 257834.637200001627207 ], [ 362704.44539999961853, 257835.336399998515844 ], [ 362681.886600002646446, 257833.040800001472235 ], [ 362695.32599999755621, 257864.603700000792742 ], [ 362725.170299999415874, 257863.581399999558926 ], [ 362722.191399998962879, 257834.637200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104012900", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-56", "ACRE": "0.23", "LONGITUDE": -64.89048564, "LATITUDE": 18.3498336, "OBJECTID_1": 6762, "PARCEL_NO_": "103104012900", "Tax_Legal_": "ANNAS RETREAT 260-56 NEW QTR", "Name": "DESSUIT, MARJORIE & P.HARRIGAN, TRUSTEE", "Address": "PO BOX 600139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 225200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.339049049, "SHAPE_Area": 922.18548670899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363085.806000001728535, 257841.412900000810623 ], [ 363050.331799998879433, 257840.700399998575449 ], [ 363049.302500002086163, 257866.867600001394749 ], [ 363077.519900001585484, 257867.520700000226498 ], [ 363082.384700000286102, 257864.394099999219179 ], [ 363085.61540000140667, 257863.787300001829863 ], [ 363085.806000001728535, 257841.412900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88484052, "LATITUDE": 18.34974492, "OBJECTID_1": 6927, "PARCEL_NO_": "103104040100", "Tax_Legal_": "394-106 ANNAS RETREAT NEW QUARTER", "Name": "JAMES, MELFORD & VIOLET (LIFE ESTATE)", "Address": "394-106 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 200500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.046933895, "SHAPE_Area": 1757.3076394 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363680.256099998950958, 257823.057900000363588 ], [ 363645.485699996352196, 257834.383499998599291 ], [ 363638.785300001502037, 257863.6706000007689 ], [ 363638.747500002384186, 257868.103300001472235 ], [ 363642.757500000298023, 257870.669199999421835 ], [ 363646.778300002217293, 257871.968699999153614 ], [ 363653.230599999427795, 257871.810400001704693 ], [ 363671.824299998581409, 257866.263099998235703 ], [ 363692.063100002706051, 257856.929499998688698 ], [ 363680.256099998950958, 257823.057900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104013000", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-54", "ACRE": "0.23", "LONGITUDE": -64.89082774000001, "LATITUDE": 18.34982996, "OBJECTID_1": 6763, "PARCEL_NO_": "103104013000", "Tax_Legal_": "ANNAS RETREAT 260-54 NEW QTR", "Name": "HARRIGAN, ROLSTON", "Address": "3 Bania Pass Pl", "City": "Ocala", "State": "Florida", "Zip": 34472, "Country": "United States", "Land_Value": 40500, "Improved_V": 273700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.361458176, "SHAPE_Area": 967.54218139499994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363050.331799998879433, 257840.700399998575449 ], [ 363013.246899999678135, 257839.763599999248981 ], [ 363012.219400003552437, 257865.719700001180172 ], [ 363049.302500002086163, 257866.867600001394749 ], [ 363050.331799998879433, 257840.700399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204025200", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".28", "LONGITUDE": -64.87395862, "LATITUDE": 18.34970195, "OBJECTID_1": 7175, "PARCEL_NO_": "103204025200", "Tax_Legal_": "56-47 FRYDENDAHL EAST END QUARTER", "Name": "THOMAS, ALICIA", "Address": "PO BOX 3956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30300, "Improved_V": 141900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.35592124799999, "SHAPE_Area": 1246.93819147 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364834.609600000083447, 257866.069600000977516 ], [ 364821.217000000178814, 257829.0185999982059 ], [ 364807.479099996387959, 257832.494800001382828 ], [ 364797.792599998414516, 257833.682100001722574 ], [ 364803.840300001204014, 257881.016499999910593 ], [ 364809.49889999628067, 257879.374099999666214 ], [ 364834.609600000083447, 257866.069600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103049100", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-13", "ACRE": "0.23", "LONGITUDE": -64.89358756, "LATITUDE": 18.34979494, "OBJECTID_1": 6710, "PARCEL_NO_": "103103049100", "Tax_Legal_": "ANNAS RETREAT 260-13 NEW QTR", "Name": "GRAHAM, JOHN B. & FLORITA", "Address": "PO Box 9251", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 268600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.114989908, "SHAPE_Area": 947.11952900200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362757.458800002932549, 257859.623799998313189 ], [ 362752.883500002324581, 257828.766699999570847 ], [ 362739.145599998533726, 257832.242899999022484 ], [ 362722.191399998962879, 257834.637200001627207 ], [ 362725.170299999415874, 257863.581399999558926 ], [ 362757.458800002932549, 257859.623799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103043200", "MAP": "D9-1576-T80", "PARCEL_NAM": "286", "ACRE": "0.50", "LONGITUDE": -64.89586763, "LATITUDE": 18.34963679, "OBJECTID_1": 6651, "PARCEL_NO_": "103103043200", "Tax_Legal_": "286 ANNAS RETREAT NO.1 NEW QTR", "Name": "ROBERTS SEWER, ANDREA", "Address": "PO Box 10845", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88000, "Improved_V": 247900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.20884773099999, "SHAPE_Area": 2073.63926627 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362522.48309999704361, 257802.816300000995398 ], [ 362484.642099998891354, 257795.962699998170137 ], [ 362477.711499996483326, 257852.26799999922514 ], [ 362509.080399997532368, 257861.601700000464916 ], [ 362522.48309999704361, 257802.816300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104012800", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-52", "ACRE": "0.23", "LONGITUDE": -64.89118322, "LATITUDE": 18.34982253, "OBJECTID_1": 6761, "PARCEL_NO_": "103104012800", "Tax_Legal_": "ANNAS RETREAT 260-52 NEW QTR", "Name": "HODGE, RUFUS", "Address": "PO Box 8527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 290900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.638661214, "SHAPE_Area": 988.22475221299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363013.246899999678135, 257839.763599999248981 ], [ 362974.551100000739098, 257838.60249999910593 ], [ 362975.129000000655651, 257865.41609999909997 ], [ 362981.584899999201298, 257864.835700001567602 ], [ 363012.219400003552437, 257865.719700001180172 ], [ 363013.246899999678135, 257839.763599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203024700", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".30", "LONGITUDE": -64.87536708, "LATITUDE": 18.34968851, "OBJECTID_1": 7046, "PARCEL_NO_": "103203024700", "Tax_Legal_": "FRYDENDAHL 56-52 EAST END QTR.", "Name": "BROUET, RAPHAEL & JANIS", "Address": "6263 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42300, "Improved_V": 207500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.62857285800001, "SHAPE_Area": 1722.58499164 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364697.559900000691414, 257862.203699998557568 ], [ 364668.852700002491474, 257824.394099999219179 ], [ 364648.596000000834465, 257835.838500000536442 ], [ 364633.987099997699261, 257846.906899999827147 ], [ 364661.1570999994874, 257875.837999999523163 ], [ 364697.559900000691414, 257862.203699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103049200", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-15", "ACRE": "0.24", "LONGITUDE": -64.89329468, "LATITUDE": 18.34973498, "OBJECTID_1": 6711, "PARCEL_NO_": "103103049200", "Tax_Legal_": "ANNAS RETREAT 260-15 NEW QTR", "Name": "JAMES, EDRIS & LEON", "Address": "PO BOX 308743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 179800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.922823812, "SHAPE_Area": 1003.96618831 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362788.966099999845028, 257852.704500000923872 ], [ 362782.787100002169609, 257820.778799999505281 ], [ 362752.883500002324581, 257828.766699999570847 ], [ 362757.458800002932549, 257859.623799998313189 ], [ 362788.966099999845028, 257852.704500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204021300", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".28", "LONGITUDE": -64.8747952, "LATITUDE": 18.34965679, "OBJECTID_1": 7146, "PARCEL_NO_": "103204021300", "Tax_Legal_": "FRYDENADHL 56-50 EAST END QTR.", "Name": "GREENAWAY, LOUISA & JOSEPH", "Address": "2610 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33300, "Improved_V": 900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.381608215, "SHAPE_Area": 1435.95139298 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364744.592100001871586, 257831.346799999475479 ], [ 364739.765000000596046, 257830.040699999779463 ], [ 364732.540600001811981, 257826.18189999833703 ], [ 364724.540399998426437, 257818.728199999779463 ], [ 364722.961999997496605, 257814.704500000923872 ], [ 364703.187899999320507, 257864.149599999189377 ], [ 364737.767599999904633, 257875.198399998247623 ], [ 364744.592100001871586, 257831.346799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041400", "MAP": null, "PARCEL_NAM": "285A", "ACRE": null, "LONGITUDE": -64.89742483000001, "LATITUDE": 18.34949345, "OBJECTID_1": 6633, "PARCEL_NO_": "103103041400", "Tax_Legal_": "ANNAS RETREAT 284A & 285A NEW QUARTER", "Name": "FORBES, IONA S. & FRANK A", "Address": "PO Box 502966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 94700, "Improved_V": 65100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.38121200500001, "SHAPE_Area": 1163.28367495 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362345.374899998307228, 257768.436200000345707 ], [ 362331.683700002729893, 257766.424300000071526 ], [ 362323.695100001990795, 257852.274000000208616 ], [ 362336.572700001299381, 257855.123599998652935 ], [ 362339.219999998807907, 257828.336399998515844 ], [ 362345.374899998307228, 257768.436200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104013400", "MAP": "C9-242A-T79", "PARCEL_NAM": "260-72", "ACRE": "0.35", "LONGITUDE": -64.88872797000001, "LATITUDE": 18.34977481, "OBJECTID_1": 6767, "PARCEL_NO_": "103104013400", "Tax_Legal_": "260-72 ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "SIMON, GLENVILLE THEOPHILUS", "Address": "46100 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.92387775500001, "SHAPE_Area": 930.52434285200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363229.166000001132488, 257861.795800000429153 ], [ 363301.851000003516674, 257848.669599998742342 ], [ 363250.318899996578693, 257839.804099999368191 ], [ 363227.758299998939037, 257837.7195999994874 ], [ 363229.166000001132488, 257861.795800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89774558000001, "LATITUDE": 18.34944718, "OBJECTID_1": 6625, "PARCEL_NO_": "103103040600", "Tax_Legal_": "ANNAS RETREAT 296 & 297 NEW QTR", "Name": "THOMAS, LEONIE", "Address": "PO Box 11134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 269500, "Improved_V": 292600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.797209872, "SHAPE_Area": 4650.3236794499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362331.683700002729893, 257766.424300000071526 ], [ 362309.938500002026558, 257763.291000001132488 ], [ 362276.091300003230572, 257760.903000000864267 ], [ 362268.964699998497963, 257840.215900000184774 ], [ 362299.548799999058247, 257847.010099999606609 ], [ 362323.695100001990795, 257852.274000000208616 ], [ 362331.683700002729893, 257766.424300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104032700", "MAP": "F9-33-T56", "PARCEL_NAM": "123A", "ACRE": "0.69", "LONGITUDE": -64.88592289, "LATITUDE": 18.34957153, "OBJECTID_1": 6862, "PARCEL_NO_": "103104032700", "Tax_Legal_": "ANNAS RETREAT 123A NEW QUARTER", "Name": "GARDNER, LEO", "Address": "6768 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 110000, "Improved_V": 168100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.594916842, "SHAPE_Area": 3026.54079047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363551.454700000584126, 257797.5168999992311 ], [ 363537.610699996352196, 257813.446699999272823 ], [ 363505.039899997413158, 257850.543699998408556 ], [ 363531.594300001859665, 257857.093800000846386 ], [ 363567.032499998807907, 257862.027899999171495 ], [ 363572.210199996829033, 257822.173599999397993 ], [ 363586.057800002396107, 257805.821699999272823 ], [ 363562.039200000464916, 257785.571199998259544 ], [ 363551.454700000584126, 257797.5168999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204022500", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.87313302, "LATITUDE": 18.34966696, "OBJECTID_1": 7157, "PARCEL_NO_": "103204022500", "Tax_Legal_": "FRYDENDAHL 56-11 EAST END QTR.", "Name": "ESTRILL, LEROY V", "Address": "834 N WOODROW ST.", "City": "ARLINGTON", "State": "Virginia", "Zip": 22203, "Country": "United States", "Land_Value": 24900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.20561300099999, "SHAPE_Area": 1019.88326112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364924.164300002157688, 257860.469799999147654 ], [ 364900.257200002670288, 257827.132399998605251 ], [ 364885.648299999535084, 257838.200800001621246 ], [ 364880.787000000476837, 257840.905200000852346 ], [ 364898.254399999976158, 257872.923300001770258 ], [ 364909.58049999922514, 257868.583099998533726 ], [ 364924.164300002157688, 257860.469799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103043300", "MAP": "C9-229-T78", "PARCEL_NAM": "287", "ACRE": "0.50", "LONGITUDE": -64.89620752, "LATITUDE": 18.3495771, "OBJECTID_1": 6652, "PARCEL_NO_": "103103043300", "Tax_Legal_": "287 ANNAS RETREAT NEW QUARTER", "Name": "GEORGE, LEANDA", "Address": "9153 Estate Thomas 14-43", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88000, "Improved_V": 216100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.334269831, "SHAPE_Area": 2062.9963352 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362484.642099998891354, 257795.962699998170137 ], [ 362450.022900000214577, 257789.557700000703335 ], [ 362439.094800002872944, 257841.819400001317263 ], [ 362477.711499996483326, 257852.26799999922514 ], [ 362484.642099998891354, 257795.962699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004032400", "MAP": "C9-118-T71", "PARCEL_NAM": "343", "ACRE": "0.53", "LONGITUDE": -64.90376164, "LATITUDE": 18.34950027, "OBJECTID_1": 6148, "PARCEL_NO_": "103004032400", "Tax_Legal_": "343 ESTATE WINTBERG GREAT NORTHSIDE QTR", "Name": "CHRISTIAN, JOHN", "Address": "PO Box 6314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53100, "Improved_V": 279900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.51314688, "SHAPE_Area": 2581.4891916699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361630.715899996459484, 257793.828899998217821 ], [ 361675.434199996292591, 257845.279500000178814 ], [ 361678.511699996888638, 257843.20549999922514 ], [ 361686.726000003516674, 257834.717399999499321 ], [ 361692.202200002968311, 257827.461500000208616 ], [ 361696.630300000309944, 257822.731499999761581 ], [ 361698.226000003516674, 257821.026999998837709 ], [ 361697.422200001776218, 257819.917199999094009 ], [ 361683.896499998867512, 257798.486000001430511 ], [ 361661.553599998354912, 257770.861000001430511 ], [ 361659.071199998259544, 257767.634100001305342 ], [ 361654.142599999904633, 257770.509100001305342 ], [ 361638.809299997985363, 257781.050700001418591 ], [ 361630.86879999935627, 257787.759100001305342 ], [ 361628.267599999904633, 257790.907900001853704 ], [ 361630.715899996459484, 257793.828899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204014200", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".34", "LONGITUDE": -64.87166689, "LATITUDE": 18.34960893, "OBJECTID_1": 7094, "PARCEL_NO_": "103204014200", "Tax_Legal_": "FRYDENDAHL 56-77 EAST END QTR.", "Name": "MARTIN, SE. L. & BALBOSA, A", "Address": "ESTATE TUTU #173-105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.751371705, "SHAPE_Area": 1108.72921815 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365070.171499997377396, 257854.065400000661612 ], [ 365077.685500003397465, 257823.940499998629093 ], [ 365062.33500000089407, 257827.403499998152256 ], [ 365042.922399997711182, 257834.421799998730421 ], [ 365037.946000002324581, 257850.635299999266863 ], [ 365045.825699999928474, 257872.231300000101328 ], [ 365070.171499997377396, 257854.065400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87131655, "LATITUDE": 18.34958137, "OBJECTID_1": 7117, "PARCEL_NO_": "103204016600", "Tax_Legal_": "FRYDENDAHL 56-78 EAST END QTR.", "Name": "HARRIS, CYNTHIA", "Address": "PO Box 1075", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.253267217, "SHAPE_Area": 1599.6099709499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365077.685500003397465, 257823.940499998629093 ], [ 365070.171499997377396, 257854.065400000661612 ], [ 365094.206299997866154, 257872.416200000792742 ], [ 365100.725100003182888, 257864.447999998927116 ], [ 365113.809500001370907, 257843.023499999195337 ], [ 365117.885999999940395, 257837.779500000178814 ], [ 365118.753499999642372, 257830.609499998390675 ], [ 365117.96339999884367, 257828.703200001269579 ], [ 365115.575000002980232, 257825.094999998807907 ], [ 365112.360500000417233, 257823.802099999040365 ], [ 365109.945200003683567, 257823.360199999064207 ], [ 365105.920800000429153, 257822.482900001108646 ], [ 365077.685500003397465, 257823.940499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004032900", "MAP": "C9-118-T71", "PARCEL_NAM": "336", "ACRE": "0.64", "LONGITUDE": -64.90295456, "LATITUDE": 18.34951629, "OBJECTID_1": 6152, "PARCEL_NO_": "103004032900", "Tax_Legal_": "336 ESTATE WINTBERG GREAT NORTHSIDE QTR", "Name": "PHILLIPS, KELLEN J and CHARISSE R", "Address": "PO Box 6463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.94814957700001, "SHAPE_Area": 2929.7058533099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361751.697300001978874, 257774.043299999088049 ], [ 361746.416500002145767, 257768.181699998676777 ], [ 361742.003300003707409, 257773.097600001841784 ], [ 361735.601000003516674, 257780.229299999773502 ], [ 361723.69030000269413, 257793.235300000756979 ], [ 361708.170900002121925, 257809.610100001096725 ], [ 361715.220399998128414, 257813.096700001507998 ], [ 361764.945699997246265, 257844.745600000023842 ], [ 361773.125699996948242, 257831.091400001198053 ], [ 361780.441799998283386, 257824.185199998319149 ], [ 361785.23309999704361, 257811.235300000756979 ], [ 361766.319399997591972, 257790.25959999859333 ], [ 361751.697300001978874, 257774.043299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103049300", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-17", "ACRE": "0.23", "LONGITUDE": -64.89301709, "LATITUDE": 18.34966527, "OBJECTID_1": 6712, "PARCEL_NO_": "103103049300", "Tax_Legal_": "ANNAS RETREAT 260-17\nNEW QTR", "Name": "DAMAS ELOI AND ROSEMOND ELOI TRUST", "Address": "PO Box 9226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 281600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.064873441, "SHAPE_Area": 956.82115051999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362817.248199999332428, 257845.758799999952316 ], [ 362811.074600003659725, 257813.19990000128746 ], [ 362782.787100002169609, 257820.778799999505281 ], [ 362788.966099999845028, 257852.704500000923872 ], [ 362817.248199999332428, 257845.758799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041400", "MAP": "D9-6479-T98", "PARCEL_NAM": "284A", "ACRE": null, "LONGITUDE": -64.89520938, "LATITUDE": 18.34962106, "OBJECTID_1": 6633, "PARCEL_NO_": "103103041400", "Tax_Legal_": "ANNAS RETREAT 284A & 285A NEW QUARTER", "Name": "FORBES, IONA S. & FRANK A", "Address": "PO Box 502966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 94700, "Improved_V": 65100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.31446722699999, "SHAPE_Area": 1139.5376158199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362590.108999997377396, 257815.613200001418591 ], [ 362551.468999996781349, 257807.908700000494719 ], [ 362544.680399999022484, 257847.538699999451637 ], [ 362560.941500000655651, 257831.839800000190735 ], [ 362585.796999998390675, 257848.508499998599291 ], [ 362590.108999997377396, 257815.613200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8845496, "LATITUDE": 18.3496357, "OBJECTID_1": 6928, "PARCEL_NO_": "103104040200", "Tax_Legal_": "ANNAS RETREAT 394-105 NEW QTR", "Name": "CREQUE, ROAN & DION PARSON", "Address": "PO Box 304116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22300, "Improved_V": 133600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.944545698, "SHAPE_Area": 640.65877507799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363698.016500003635883, 257820.670200001448393 ], [ 363688.342600002884865, 257820.379900000989437 ], [ 363680.256099998950958, 257823.057900000363588 ], [ 363692.063100002706051, 257856.929499998688698 ], [ 363710.683799996972084, 257848.215999998152256 ], [ 363698.016500003635883, 257820.670200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204025000", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.87371003, "LATITUDE": 18.34958954, "OBJECTID_1": 7174, "PARCEL_NO_": "103204025000", "Tax_Legal_": "FRYDENDAHL 56-46 EAST END QTR.", "Name": "BACHAN, GANGADEEN R. & SHARON", "Address": "PO BOX 502133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.263647298, "SHAPE_Area": 1072.90031234 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364862.150100000202656, 257851.518500000238419 ], [ 364843.086300000548363, 257817.587499998509884 ], [ 364830.115199998021126, 257825.714000001549721 ], [ 364821.217000000178814, 257829.0185999982059 ], [ 364834.609600000083447, 257866.069600000977516 ], [ 364862.150100000202656, 257851.518500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203024900", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".30", "LONGITUDE": -64.87505552, "LATITUDE": 18.34950965, "OBJECTID_1": 7048, "PARCEL_NO_": "103203024900", "Tax_Legal_": "56-51 ESTATE FRYDENDAHL No.4 EASTEND QTR", "Name": "FELIX, CURTIS L. & GEMMA", "Address": "PO Box 9546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42300, "Improved_V": 172200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.07836774699999, "SHAPE_Area": 1592.3762635800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364722.961999997496605, 257814.704500000923872 ], [ 364720.580799996852875, 257810.252000000327826 ], [ 364716.579800002276897, 257806.630699999630451 ], [ 364680.184199996292591, 257819.4206000007689 ], [ 364668.852700002491474, 257824.394099999219179 ], [ 364697.559900000691414, 257862.203699998557568 ], [ 364703.187899999320507, 257864.149599999189377 ], [ 364722.961999997496605, 257814.704500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90224502, "LATITUDE": 18.34960084, "OBJECTID_1": 6154, "PARCEL_NO_": "103004033100", "Tax_Legal_": "313 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "ROGERS, SHERIANN C. & DALE", "Address": "PO Box 7337", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 453800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.57725865899999, "SHAPE_Area": 2525.96058911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361867.568499997258186, 257819.620999999344349 ], [ 361808.187299996614456, 257785.571100000292063 ], [ 361797.545199997723103, 257804.271299999207258 ], [ 361792.585100002586842, 257818.585099998861551 ], [ 361794.842200003564358, 257837.602000001817942 ], [ 361856.129100002348423, 257837.259199999272823 ], [ 361867.568499997258186, 257819.620999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87878121, "LATITUDE": 18.34945058, "OBJECTID_1": 7012, "PARCEL_NO_": "103203021500", "Tax_Legal_": "FRYDENDAHL 53-7 EAST END QTR", "Name": "MONSANTO, EUGENE & SHETALIA", "Address": "1635 E 174th", "City": "Bronx", "State": "New York", "Zip": 10472, "Country": "United States", "Land_Value": 82200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.96155642100001, "SHAPE_Area": 2505.53860695 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364335.16160000115633, 257807.308699999004602 ], [ 364253.045400001108646, 257791.648899998515844 ], [ 364265.050200000405312, 257802.301899999380112 ], [ 364285.821900002658367, 257825.058899998664856 ], [ 364291.406800001859665, 257832.070700000971556 ], [ 364299.387199997901917, 257841.8462999984622 ], [ 364300.987199999392033, 257843.337000001221895 ], [ 364301.773699998855591, 257845.665500000119209 ], [ 364310.537100002169609, 257858.191799998283386 ], [ 364336.443400003015995, 257846.160399999469519 ], [ 364334.846900001168251, 257844.247400000691414 ], [ 364332.492700003087521, 257836.628800000995398 ], [ 364331.000600002706051, 257822.473299998790026 ], [ 364335.16160000115633, 257807.308699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103049400", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-19", "ACRE": "0.23", "LONGITUDE": -64.89275813, "LATITUDE": 18.34960564, "OBJECTID_1": 6713, "PARCEL_NO_": "103103049400", "Tax_Legal_": "ANNAS RETREAT 260-19 NEW QTR", "Name": "FRANCIS, JOSEPH & EURIES", "Address": "PO Box 9834", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34200, "Improved_V": 160200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.062271443, "SHAPE_Area": 929.67315169699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362843.892499998211861, 257841.754999998956919 ], [ 362836.937799997627735, 257806.234400000423193 ], [ 362811.074600003659725, 257813.19990000128746 ], [ 362817.248199999332428, 257845.758799999952316 ], [ 362843.892499998211861, 257841.754999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103043400", "MAP": "C9-229-T78", "PARCEL_NAM": "288", "ACRE": "0.50", "LONGITUDE": -64.8965891, "LATITUDE": 18.34946652, "OBJECTID_1": 6653, "PARCEL_NO_": "103103043400", "Tax_Legal_": "ANNAS RETREAT 288 NEW QTR", "Name": "SEWER, ERMA B", "Address": "PO Box 7635", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 126200, "Improved_V": 245600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.41274814299999, "SHAPE_Area": 2310.05346534 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362450.022900000214577, 257789.557700000703335 ], [ 362409.775600001215935, 257781.206700000911951 ], [ 362405.744000002741814, 257781.173700001090765 ], [ 362400.079999998211861, 257783.449400000274181 ], [ 362396.007100000977516, 257788.271200001239777 ], [ 362395.179200001060963, 257790.797499999403954 ], [ 362395.893799997866154, 257801.569200001657009 ], [ 362399.034599997103214, 257811.51630000025034 ], [ 362402.995999999344349, 257819.781300000846386 ], [ 362410.182700000703335, 257828.072799999266863 ], [ 362418.19370000064373, 257834.260099999606609 ], [ 362427.027099996805191, 257838.554200001060963 ], [ 362439.094800002872944, 257841.819400001317263 ], [ 362450.022900000214577, 257789.557700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104032600", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-119", "ACRE": "0.16", "LONGITUDE": -64.8862611, "LATITUDE": 18.34955001, "OBJECTID_1": 6861, "PARCEL_NO_": "103104032600", "Tax_Legal_": "ANNAS RETREAT 394-119\nNEW QTR", "Name": "STEELE, KEITH A, LYDIA R & STEPHEN A", "Address": "PO Box 1221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20100, "Improved_V": 153000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.55112604599999, "SHAPE_Area": 724.91211888099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363502.948299996554852, 257812.107500001788139 ], [ 363501.827299997210503, 257849.039700001478195 ], [ 363505.039899997413158, 257850.543699998408556 ], [ 363537.610699996352196, 257813.446699999272823 ], [ 363502.948299996554852, 257812.107500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89813089, "LATITUDE": 18.34938882, "OBJECTID_1": 6624, "PARCEL_NO_": "103103040500", "Tax_Legal_": "WINTBERG 298 GR. NORTHSIDE", "Name": "GUMBS, BRIAN V", "Address": "10P Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75600, "Improved_V": 108600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.90676871400001, "SHAPE_Area": 2004.5314727499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362276.091300003230572, 257760.903000000864267 ], [ 362247.875799998641014, 257760.038800001144409 ], [ 362245.623000003397465, 257835.169700000435114 ], [ 362268.964699998497963, 257840.215900000184774 ], [ 362276.091300003230572, 257760.903000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204022600", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.87294211, "LATITUDE": 18.34952278, "OBJECTID_1": 7158, "PARCEL_NO_": "103204022600", "Tax_Legal_": "FRYDENDAHL 56-12 EAST END QTR.", "Name": "CHRISTOPHIN JOSEPH", "Address": "PO Box 12348", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8015348, "Country": "United States", "Land_Value": 28900, "Improved_V": 134300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.29234071299999, "SHAPE_Area": 1082.0070765299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364943.657799996435642, 257843.952899999916553 ], [ 364918.957000002264977, 257809.131400000303984 ], [ 364910.013899996876717, 257817.713100001215935 ], [ 364900.257200002670288, 257827.132399998605251 ], [ 364924.164300002157688, 257860.469799999147654 ], [ 364931.464199997484684, 257855.463300000876188 ], [ 364943.657799996435642, 257843.952899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203024200", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".41", "LONGITUDE": -64.87569927, "LATITUDE": 18.34946235, "OBJECTID_1": 7041, "PARCEL_NO_": "103203024200", "Tax_Legal_": "FRYDENDAHL 55A EAST END QTR", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.81626207599999, "SHAPE_Area": 1329.40326071 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364639.261900000274181, 257795.65430000051856 ], [ 364600.086000002920628, 257850.851300001144409 ], [ 364600.057199999690056, 257854.228500001132488 ], [ 364601.651900000870228, 257856.35249999910593 ], [ 364604.061800003051758, 257857.427700001746416 ], [ 364608.097000002861023, 257857.038499999791384 ], [ 364617.022100001573563, 257850.567699998617172 ], [ 364628.405799999833107, 257839.472899999469519 ], [ 364641.39130000025034, 257829.657800000160933 ], [ 364662.459799997508526, 257817.586800001561642 ], [ 364639.261900000274181, 257795.65430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203014400", "MAP": "D9-2056-T82", "PARCEL_NAM": "2H", "ACRE": ".52", "LONGITUDE": -64.88349156, "LATITUDE": 18.34959886, "OBJECTID_1": 6984, "PARCEL_NO_": "103203014400", "Tax_Legal_": "TABOR&HARMONY 2G&2H No.5&6 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.839608951, "SHAPE_Area": 642.75034955800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363834.852300003170967, 257849.654399998486042 ], [ 363826.121299996972084, 257833.32880000025034 ], [ 363811.634700000286102, 257830.043800000101328 ], [ 363785.917199999094009, 257819.911899998784065 ], [ 363780.271200001239777, 257820.076799999922514 ], [ 363776.216300003230572, 257822.787799999117851 ], [ 363785.829099997878075, 257830.254799999296665 ], [ 363804.278999999165535, 257840.898200001567602 ], [ 363822.910499997437, 257846.92960000038147 ], [ 363834.852300003170967, 257849.654399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103049500", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-21", "ACRE": "0.23", "LONGITUDE": -64.89251227, "LATITUDE": 18.34955413, "OBJECTID_1": 6714, "PARCEL_NO_": "103103049500", "Tax_Legal_": "ANNAS RETREAT 260-21 NEW QTR", "Name": "MASON, GERALD & WINIFRED", "Address": "PO Box 10896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.15605373, "SHAPE_Area": 986.51892467499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362870.545699998736382, 257836.695799998939037 ], [ 362862.784699998795986, 257801.168600000441074 ], [ 362852.295500002801418, 257801.927099999040365 ], [ 362836.937799997627735, 257806.234400000423193 ], [ 362843.892499998211861, 257841.754999998956919 ], [ 362870.545699998736382, 257836.695799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103049600", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-23", "ACRE": "0.26", "LONGITUDE": -64.8922141, "LATITUDE": 18.34959745, "OBJECTID_1": 6715, "PARCEL_NO_": "103103049600", "Tax_Legal_": "260-23 ANNA'S RETREAT NO.1 NEW QTR", "Name": "AGUSTINA S., DARRYL, & NIEGEL LEWIS", "Address": "PO Box 10544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37500, "Improved_V": 179800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.06046873899999, "SHAPE_Area": 1154.5167716200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362913.326999999582767, 257831.557500001043081 ], [ 362908.505400002002716, 257829.618200000375509 ], [ 362895.667300000786781, 257822.124899998307228 ], [ 362878.063299998641014, 257806.148800000548363 ], [ 362872.444300003349781, 257803.14750000089407 ], [ 362862.784699998795986, 257801.168600000441074 ], [ 362870.545699998736382, 257836.695799998939037 ], [ 362871.310699999332428, 257841.557199999690056 ], [ 362912.430799998342991, 257842.104899998754263 ], [ 362913.326999999582767, 257831.557500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003035300", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".40", "LONGITUDE": -64.90922822, "LATITUDE": 18.34948288, "OBJECTID_1": 5849, "PARCEL_NO_": "103003035300", "Tax_Legal_": "WINTBERG 1 143 42 GREAT NORTHSIDE QTR", "Name": "LEWIS, VIVIAN A", "Address": "6870 EST WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45200, "Improved_V": 250400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.499414202, "SHAPE_Area": 2845.1868154200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361112.870899997651577, 257812.177600000053644 ], [ 361112.427799999713898, 257769.533100001513958 ], [ 361104.364699997007847, 257769.467099998146296 ], [ 361104.44200000166893, 257760.390700001269579 ], [ 361055.816899999976158, 257788.912500001490116 ], [ 361056.515299998223782, 257801.583799999207258 ], [ 361058.039800003170967, 257811.939899999648333 ], [ 361059.528399996459484, 257826.517499998211861 ], [ 361112.775600001215935, 257823.364799998700619 ], [ 361112.870899997651577, 257812.177600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104040300", "MAP": "D9-8946-T014", "PARCEL_NAM": "394-3 REM", "ACRE": ".13", "LONGITUDE": -64.88436486000001, "LATITUDE": 18.34956477, "OBJECTID_1": 6929, "PARCEL_NO_": "103104040300", "Tax_Legal_": "394-3 REM ANNAS RETREAT No.1 NEW QUARTER", "Name": "HODGE, BRIAN O. & RENA C.", "Address": "4215 Annas Retreat 309", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19900, "Improved_V": 493700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.173232938, "SHAPE_Area": 698.360044862 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363731.726999998092651, 257839.100099999457598 ], [ 363717.45610000193119, 257810.485700000077486 ], [ 363698.016500003635883, 257820.670200001448393 ], [ 363710.683799996972084, 257848.215999998152256 ], [ 363731.726999998092651, 257839.100099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104032500", "MAP": "D9-695-T68", "PARCEL_NAM": "125C", "ACRE": ".37", "LONGITUDE": -64.88658623000001, "LATITUDE": 18.34943861, "OBJECTID_1": 6860, "PARCEL_NO_": "103104032500", "Tax_Legal_": "ANNAS RETREAT 125C NEW QTR", "Name": "MARCHENA, LEROY L", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.29252073500001, "SHAPE_Area": 1906.3459331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363468.128300003707409, 257777.985700000077486 ], [ 363467.73480000346899, 257780.788600001484156 ], [ 363460.008699998259544, 257835.820799998939037 ], [ 363489.759499996900558, 257845.774599999189377 ], [ 363492.990199998021126, 257845.167700000107288 ], [ 363495.032700002193451, 257844.263199999928474 ], [ 363497.73139999806881, 257799.813099998980761 ], [ 363497.704174572601914, 257797.819217677199049 ], [ 363497.365281465579756, 257795.854158034606371 ], [ 363496.723070258449297, 257793.966335823090049 ], [ 363495.793363624310587, 257792.2022628338309 ], [ 363494.599067491828464, 257790.605401949229417 ], [ 363493.169606693496462, 257789.215096312720561 ], [ 363491.540200002491474, 257788.065600000321865 ], [ 363479.770012990396935, 257783.174848952330649 ], [ 363468.128300003707409, 257777.985700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89839771, "LATITUDE": 18.34936843, "OBJECTID_1": 6623, "PARCEL_NO_": "103103040400", "Tax_Legal_": "299 WINTBERG NO.3 GREAT NORTHSIDE QTR.", "Name": "JOHN J. & SELINA M. CANNONIER (LIFE ESTATE)", "Address": "PO Box 8773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80500, "Improved_V": 159600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.562728365, "SHAPE_Area": 2218.0584617599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362247.875799998641014, 257760.038800001144409 ], [ 362216.435000002384186, 257759.148200001567602 ], [ 362215.843400001525879, 257828.593199998140335 ], [ 362245.623000003397465, 257835.169700000435114 ], [ 362247.875799998641014, 257760.038800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87816155, "LATITUDE": 18.34950842, "OBJECTID_1": 7030, "PARCEL_NO_": "103203022900", "Tax_Legal_": "53-11 FRYDENDAHL NO 4 EAST END QTR", "Name": "SCHULTRBRANDT, JR., ARIEL", "Address": "2506 Barge Rd", "City": "Atlanta", "State": "Georgia", "Zip": 30331, "Country": "United States", "Land_Value": 74500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.61903807300001, "SHAPE_Area": 1967.3434274000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364406.722000002861023, 257831.536800000816584 ], [ 364381.170000001788139, 257801.985700000077486 ], [ 364339.040299996733665, 257825.283300001174212 ], [ 364338.2195999994874, 257826.965399999171495 ], [ 364342.127099998295307, 257841.562800001353025 ], [ 364346.119099996984005, 257846.239500001072884 ], [ 364350.127300001680851, 257849.016600001603365 ], [ 364356.559799998998642, 257851.18019999936223 ], [ 364367.045500002801418, 257850.843800000846386 ], [ 364406.722000002861023, 257831.536800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87770203, "LATITUDE": 18.34957157, "OBJECTID_1": 7013, "PARCEL_NO_": "103203021600", "Tax_Legal_": "FRYDENDAHL 53-6 EAST END QTR.", "Name": "SCHULTERBRANDT, LINDA & ARIEL", "Address": "P.O. BOX 4109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98200, "Improved_V": 483600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.69211540399999, "SHAPE_Area": 1269.6645944 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364446.92620000243187, 257844.953699998557568 ], [ 364443.97070000320673, 257813.265399999916553 ], [ 364406.722000002861023, 257831.536800000816584 ], [ 364367.045500002801418, 257850.843800000846386 ], [ 364404.153800003230572, 257849.03660000115633 ], [ 364412.233199998736382, 257847.202799998223782 ], [ 364428.377400003373623, 257845.223999999463558 ], [ 364446.92620000243187, 257844.953699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003035600", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".36", "LONGITUDE": -64.9081061, "LATITUDE": 18.34951292, "OBJECTID_1": 5852, "PARCEL_NO_": "103003035600", "Tax_Legal_": "WINTBERG 1-143-25 GREAT NORTHSIDE", "Name": "HODGE, GERARD", "Address": "PO Box 9934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39500, "Improved_V": 200400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.63931510200001, "SHAPE_Area": 1475.86669719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361221.942400000989437, 257787.316899999976158 ], [ 361194.6266999989748, 257775.483199998736382 ], [ 361183.745399996638298, 257822.256900001317263 ], [ 361219.205200001597404, 257824.657999999821186 ], [ 361223.369800001382828, 257809.071199998259544 ], [ 361226.762299999594688, 257789.467199999839067 ], [ 361221.942400000989437, 257787.316899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104031600", "MAP": "C9-211-T76", "PARCEL_NAM": "394-257", "ACRE": ".146", "LONGITUDE": -64.88825422, "LATITUDE": 18.34961301, "OBJECTID_1": 6851, "PARCEL_NO_": "103104031600", "Tax_Legal_": "ANNAS RETREAT 394-257 NEW QTR", "Name": "STAPLETON, P. & CONNOR, E", "Address": "PO Box 502202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17600, "Improved_V": 182100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.554743733099997, "SHAPE_Area": 482.19875753000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363285.938699997961521, 257823.419199999421835 ], [ 363284.225400000810623, 257835.226399999111891 ], [ 363316.43469999730587, 257840.55629999935627 ], [ 363318.86089999973774, 257839.731800001114607 ], [ 363321.303199999034405, 257837.007500000298023 ], [ 363320.590400002896786, 257826.02479999884963 ], [ 363285.938699997961521, 257823.419199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023400", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-58", "ACRE": ".28", "LONGITUDE": -64.90644485, "LATITUDE": 18.34947678, "OBJECTID_1": 6105, "PARCEL_NO_": "103004023400", "Tax_Legal_": "1-143-58&59A WINTBERG No.3 GREAT NORTHSIDE QUARTER", "Name": "DOUGLAS, B. & E", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 252700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.75994213199999, "SHAPE_Area": 1333.31978007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361390.569600000977516, 257776.031399998813868 ], [ 361358.239799998700619, 257784.843800000846386 ], [ 361365.379699997603893, 257798.6233000010252 ], [ 361369.998199999332428, 257824.414500001817942 ], [ 361402.319099999964237, 257816.657499998807907 ], [ 361390.569600000977516, 257776.031399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003035500", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".42", "LONGITUDE": -64.90841907, "LATITUDE": 18.34942652, "OBJECTID_1": 5851, "PARCEL_NO_": "103003035500", "Tax_Legal_": "WINTBERG 1 143 26 GREAT NORTHSIDE QTR", "Name": "LEWIS, JR , HULBERT & ROSE", "Address": "PO Box 1088", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46100, "Improved_V": 184300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.75318890200001, "SHAPE_Area": 1751.2625895199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361194.6266999989748, 257775.483199998736382 ], [ 361164.098300002515316, 257762.145500000566244 ], [ 361159.154399998486042, 257774.559500001370907 ], [ 361155.002300001680851, 257788.668800000101328 ], [ 361152.475500002503395, 257801.313799999654293 ], [ 361151.566699996590614, 257813.338700000196695 ], [ 361183.745399996638298, 257822.256900001317263 ], [ 361194.6266999989748, 257775.483199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8771303, "LATITUDE": 18.34950536, "OBJECTID_1": 7014, "PARCEL_NO_": "103203021700", "Tax_Legal_": "53-13 FRYDENDAHL EAST END QUARTER", "Name": "MANICKCHAN, S. , R. , & G", "Address": "PO Box 502805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 75700, "Improved_V": 81100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.797390358, "SHAPE_Area": 2247.9313177099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364508.983499996364117, 257848.839099999517202 ], [ 364514.130599997937679, 257812.573100000619888 ], [ 364443.97070000320673, 257813.265399999916553 ], [ 364446.92620000243187, 257844.953699998557568 ], [ 364508.983499996364117, 257848.839099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87658664, "LATITUDE": 18.34950423, "OBJECTID_1": 7015, "PARCEL_NO_": "103203021800", "Tax_Legal_": "FRYDENDAHL 53-15 EAST END QTR.", "Name": "MOORE & F. HAZEL, CARVA ANYA", "Address": "PO Box 8653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.611152132, "SHAPE_Area": 1788.4530492700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364560.6216000020504, 257845.250900000333786 ], [ 364564.935500003397465, 257812.144600000232458 ], [ 364514.130599997937679, 257812.573100000619888 ], [ 364508.983499996364117, 257848.839099999517202 ], [ 364533.181800000369549, 257847.981699999421835 ], [ 364560.6216000020504, 257845.250900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87348993000001, "LATITUDE": 18.34946278, "OBJECTID_1": 7144, "PARCEL_NO_": "103204021100", "Tax_Legal_": "FRYDENDAHL 56-45 EAST END QTR.", "Name": "LETTSOME, RADFORD & LEAH", "Address": "PO Box 502802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28600, "Improved_V": 76700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.723130365, "SHAPE_Area": 1025.24545521 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364885.648299999535084, 257838.200800001621246 ], [ 364864.968299999833107, 257804.678800001740456 ], [ 364843.086300000548363, 257817.587499998509884 ], [ 364862.150100000202656, 257851.518500000238419 ], [ 364880.787000000476837, 257840.905200000852346 ], [ 364885.648299999535084, 257838.200800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87217816, "LATITUDE": 18.34946523, "OBJECTID_1": 7096, "PARCEL_NO_": "103204014500", "Tax_Legal_": "FRYDENDAHL 56-75 EASTEND QTR.", "Name": "HARRIS, GARRIE", "Address": "PO Box 308545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.83454244699999, "SHAPE_Area": 1134.2602278100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365027.593400001525879, 257835.351799998432398 ], [ 365006.072899997234344, 257805.833700001239777 ], [ 364982.540600001811981, 257823.161800000816584 ], [ 364988.804099999368191, 257845.166799999773502 ], [ 364991.165500000119209, 257851.941100001335144 ], [ 365027.593400001525879, 257835.351799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023700", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-30", "ACRE": ".36", "LONGITUDE": -64.90764001, "LATITUDE": 18.34946418, "OBJECTID_1": 6108, "PARCEL_NO_": "103004023700", "Tax_Legal_": "1-143-30 WINTBERG 3 GREAT NORTHSIDE QUARTER", "Name": "CHESTERFIELD, BERT & LORNA", "Address": "PO Box 10707", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37500, "Improved_V": 221600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.22594606600001, "SHAPE_Area": 1574.8433155299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361264.739900000393391, 257780.278900001198053 ], [ 361263.16330000013113, 257776.044100001454353 ], [ 361260.769500002264977, 257773.069200001657009 ], [ 361255.949600003659725, 257770.918800000101328 ], [ 361250.298199996352196, 257771.716899998486042 ], [ 361242.186599999666214, 257777.350099999457598 ], [ 361236.486599996685982, 257783.847300000488758 ], [ 361232.386699996888638, 257791.835299998521805 ], [ 361230.6554000005126, 257805.753299999982119 ], [ 361262.778499998152256, 257821.214999999850988 ], [ 361281.334399998188019, 257820.100299999117851 ], [ 361264.739900000393391, 257780.278900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89882418000001, "LATITUDE": 18.34932178, "OBJECTID_1": 6622, "PARCEL_NO_": "103103040300", "Tax_Legal_": "WINTBERG 300 GT. NORTHSIDE", "Name": "GEORGE WILLIAM STRAUN, II", "Address": "PO Box 106", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 76800, "Improved_V": 203800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.89629150900001, "SHAPE_Area": 3966.6845835499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362216.435000002384186, 257759.148200001567602 ], [ 362191.457299999892712, 257756.832899998873472 ], [ 362164.0912000015378, 257750.909400001168251 ], [ 362149.844400003552437, 257814.120799999684095 ], [ 362215.843400001525879, 257828.593199998140335 ], [ 362216.435000002384186, 257759.148200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104031900", "MAP": "D9-695-T68", "PARCEL_NAM": "125", "ACRE": ".32", "LONGITUDE": -64.88790628, "LATITUDE": 18.34934948, "OBJECTID_1": 6854, "PARCEL_NO_": "103104031900", "Tax_Legal_": "ANNAS RETREAT 125 NEW QUARTER", "Name": "FAHIE, L & PICKERING, F", "Address": "PO Box 11866", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47500, "Improved_V": 578100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.125211441, "SHAPE_Area": 1830.03436663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363352.597099997103214, 257767.296000000089407 ], [ 363352.463799998164177, 257763.371700000017881 ], [ 363342.738809271831997, 257767.434552169026574 ], [ 363333.107299998402596, 257771.714299999177456 ], [ 363330.504515386128332, 257774.418065120931715 ], [ 363328.288514872314408, 257777.446955230203457 ], [ 363326.499466705368832, 257780.746067266445607 ], [ 363325.169799998402596, 257784.25560000166297 ], [ 363325.210893800307531, 257796.946075659012422 ], [ 363325.928992492554244, 257809.616284630377777 ], [ 363327.322050589660648, 257822.23013615355012 ], [ 363329.386100001633167, 257834.7516999989748 ], [ 363332.587999999523163, 257837.522100001573563 ], [ 363345.503300003707409, 257835.938999999314547 ], [ 363354.92790000140667, 257835.913400001823902 ], [ 363353.910499997437, 257805.962900001555681 ], [ 363353.706399999558926, 257799.954300001263618 ], [ 363353.684900000691414, 257799.322000000625849 ], [ 363352.597099997103214, 257767.296000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023600", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".30", "LONGITUDE": -64.90729856, "LATITUDE": 18.34947082, "OBJECTID_1": 6107, "PARCEL_NO_": "103004023600", "Tax_Legal_": "WINTBERG 1-143-16 GREAT NORTHSIDE QTR.", "Name": "PERCEL, JUDITH", "Address": "PO Box 302747", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 191500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.470278971, "SHAPE_Area": 1360.4700559099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361307.443899996578693, 257784.217000000178814 ], [ 361272.810199998319149, 257779.500500001013279 ], [ 361267.952600002288818, 257781.782800000160933 ], [ 361264.739900000393391, 257780.278900001198053 ], [ 361281.334399998188019, 257820.100299999117851 ], [ 361314.44539999961853, 257814.249600000679493 ], [ 361307.443899996578693, 257784.217000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004022100", "MAP": null, "PARCEL_NAM": "1Y", "ACRE": null, "LONGITUDE": -64.90478178, "LATITUDE": 18.34903222, "OBJECTID_1": 6094, "PARCEL_NO_": "103004022100", "Tax_Legal_": "WINTBERG 1Y,1YB&1YD GR NORTHSIDE", "Name": "BORNN, MICHAEL, STEVEN & DAVID", "Address": "PO Box 6408", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046408, "Country": "United States", "Land_Value": 494300, "Improved_V": 62800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 489.90988753099998, "SHAPE_Area": 15622.8182686 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361615.447400003671646, 257693.012299999594688 ], [ 361597.020900003612041, 257678.929299999028444 ], [ 361586.533399999141693, 257679.476799998432398 ], [ 361579.224399998784065, 257685.538600001484156 ], [ 361563.818199999630451, 257695.545000001788139 ], [ 361552.479500003159046, 257701.362900000065565 ], [ 361541.151500001549721, 257705.914200000464916 ], [ 361520.135300002992153, 257711.863899998366833 ], [ 361500.760399997234344, 257714.449499998241663 ], [ 361468.074500001966953, 257765.055599998682737 ], [ 361462.571800000965595, 257787.936999998986721 ], [ 361466.251500003039837, 257789.738600000739098 ], [ 361515.341300003230572, 257801.328299999237061 ], [ 361530.630599997937679, 257805.042100001126528 ], [ 361567.577200002968311, 257822.231899999082088 ], [ 361587.851800002157688, 257808.67680000141263 ], [ 361618.64639999717474, 257790.77479999884963 ], [ 361621.180399999022484, 257777.285500001162291 ], [ 361632.007700003683567, 257736.844200000166893 ], [ 361633.690499998629093, 257728.625300001353025 ], [ 361634.608300000429153, 257715.545000001788139 ], [ 361633.031599998474121, 257711.310300000011921 ], [ 361631.429799996316433, 257710.030600000172853 ], [ 361630.641400001943111, 257707.913199998438358 ], [ 361615.447400003671646, 257693.012299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103044300", "MAP": "C9-229-T78", "PARCEL_NAM": "295", "ACRE": "0.63", "LONGITUDE": -64.89716994, "LATITUDE": 18.34936035, "OBJECTID_1": 6662, "PARCEL_NO_": "103103044300", "Tax_Legal_": "ANNAS RETREAT 295 NEW QTR", "Name": "SMITH, WILLIAM & CECILIA", "Address": "PO BOX 8761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 141200, "Improved_V": 165300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.094091623, "SHAPE_Area": 1879.5998837699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362339.219999998807907, 257828.336399998515844 ], [ 362387.812700003385544, 257803.614000000059605 ], [ 362387.135899998247623, 257788.409699998795986 ], [ 362383.966399997472763, 257781.839800000190735 ], [ 362380.769900001585484, 257778.436200000345707 ], [ 362374.35360000282526, 257774.372900001704693 ], [ 362345.374899998307228, 257768.436200000345707 ], [ 362339.219999998807907, 257828.336399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8708391, "LATITUDE": 18.34953072, "OBJECTID_1": 7101, "PARCEL_NO_": "103204015000", "Tax_Legal_": "FRYDENDAHL 56-82 EAST END QTR.", "Name": "REGISTE, RAYMOND & MARIANA", "Address": "6514 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.84254299400001, "SHAPE_Area": 918.26912682199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365162.359099999070168, 257823.366999998688698 ], [ 365124.397699996829033, 257830.655699998140335 ], [ 365123.512199997901917, 257839.936500001698732 ], [ 365118.613200001418591, 257847.073600001633167 ], [ 365117.776299998164177, 257850.6554000005126 ], [ 365167.810900002717972, 257845.998599998652935 ], [ 365162.359099999070168, 257823.366999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88418281, "LATITUDE": 18.34947652, "OBJECTID_1": 6930, "PARCEL_NO_": "103104040400", "Tax_Legal_": "ANNAS RETREAT 394-2 NEW QTR", "Name": "LEWIS, JOSEPH & MARGARET", "Address": "PO Box 304543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22300, "Improved_V": 121000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.87931387499999, "SHAPE_Area": 678.10537330800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363750.345899999141693, 257830.597699999809265 ], [ 363736.087600000202656, 257800.505699999630451 ], [ 363728.796700000762939, 257804.456799998879433 ], [ 363717.45610000193119, 257810.485700000077486 ], [ 363731.726999998092651, 257839.100099999457598 ], [ 363750.345899999141693, 257830.597699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104031500", "MAP": "C9-211-T76", "PARCEL_NAM": "394-256", "ACRE": ".156", "LONGITUDE": -64.88851082, "LATITUDE": 18.34947564, "OBJECTID_1": 6850, "PARCEL_NO_": "103104031500", "Tax_Legal_": "ANNAS RETREAT 394-256 NEW QTR", "Name": "CALLWOOD, WILLIS & BEATRICE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 111100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.89521779499999, "SHAPE_Area": 733.08299914400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363289.370800003409386, 257799.171500001102686 ], [ 363267.602099999785423, 257798.782299999147654 ], [ 363264.0945999994874, 257831.895300000905991 ], [ 363284.225400000810623, 257835.226399999111891 ], [ 363285.938699997961521, 257823.419199999421835 ], [ 363289.370800003409386, 257799.171500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104032000", "MAP": "D9-695-T68", "PARCEL_NAM": "125A", "ACRE": ".338", "LONGITUDE": -64.88755907, "LATITUDE": 18.34949279, "OBJECTID_1": 6855, "PARCEL_NO_": "103104032000", "Tax_Legal_": "ANNAS RETREAT 125A NEW QTR", "Name": "MCBEAN, YVETTE M. (TRUSTEE)", "Address": "PO Box 731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.661713816, "SHAPE_Area": 1417.37403363 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363398.737899996340275, 257834.263799998909235 ], [ 363396.631899997591972, 257797.51630000025034 ], [ 363364.314699999988079, 257804.851199999451637 ], [ 363364.289499998092651, 257807.80629999935627 ], [ 363359.437200002372265, 257809.455299999564886 ], [ 363358.65429999679327, 257806.704700000584126 ], [ 363355.438000001013279, 257805.622900001704693 ], [ 363353.910499997437, 257805.962900001555681 ], [ 363354.92790000140667, 257835.913400001823902 ], [ 363364.856600001454353, 257835.886399999260902 ], [ 363398.737899996340275, 257834.263799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8761214, "LATITUDE": 18.34946822, "OBJECTID_1": 7018, "PARCEL_NO_": "103203021900", "Tax_Legal_": "FRYDENDAHL 53-17 EAST END QTR", "Name": "GREENWAY, FRANCIS & OTHERS", "Address": "6262 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021302, "Country": "United States", "Land_Value": 69500, "Improved_V": 227800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.82579923099999, "SHAPE_Area": 1423.7827455199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364620.578299999237061, 257811.75560000166297 ], [ 364564.935500003397465, 257812.144600000232458 ], [ 364560.6216000020504, 257845.250900000333786 ], [ 364588.059600003063679, 257842.731300000101328 ], [ 364597.765900000929832, 257839.222100000828505 ], [ 364602.650600001215935, 257833.773699998855591 ], [ 364608.334299996495247, 257829.176100000739098 ], [ 364620.578299999237061, 257811.75560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104032400", "MAP": "D9-695-T68", "PARCEL_NAM": "125F", "ACRE": ".23", "LONGITUDE": -64.88690293000001, "LATITUDE": 18.3492101, "OBJECTID_1": 6859, "PARCEL_NO_": "103104032400", "Tax_Legal_": "ANNAS RETREAT 125F NEW QTR", "Name": "PROPHET, LAUREL", "Address": "PO Box 307136", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15000, "Improved_V": 284400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.717353288, "SHAPE_Area": 1617.2133219699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363425.970899999141693, 257758.110599998384714 ], [ 363425.947999998927116, 257762.710900001227856 ], [ 363425.934299997985363, 257765.458799999207258 ], [ 363422.478799998760223, 257792.450500000268221 ], [ 363437.760999999940395, 257797.008499998599291 ], [ 363444.181000001728535, 257800.649700000882149 ], [ 363448.181900002062321, 257804.271000001579523 ], [ 363452.960500001907349, 257811.276200000196695 ], [ 363454.538900002837181, 257815.299899999052286 ], [ 363457.625699996948242, 257831.5793999992311 ], [ 363458.408699996769428, 257834.329999998211861 ], [ 363460.008699998259544, 257835.820799998939037 ], [ 363467.73480000346899, 257780.788600001484156 ], [ 363468.128300003707409, 257777.985700000077486 ], [ 363454.075099997222424, 257771.238099999725819 ], [ 363440.10299347381806, 257764.50309479914722 ], [ 363425.970899999141693, 257758.110599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103046000", "MAP": "C9-229-T78", "PARCEL_NAM": "260-10", "ACRE": "0.27", "LONGITUDE": -64.89405248, "LATITUDE": 18.34947711, "OBJECTID_1": 6679, "PARCEL_NO_": "103103046000", "Tax_Legal_": "ANNAS RETREAT 260-10 NEW QTR", "Name": "JOEL MARTIN AND JOYCE HENNEMAN MARTIN REVOCABLE LI", "Address": "PO Box 10106", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42000, "Improved_V": 171100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.696071047, "SHAPE_Area": 1181.83595593 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362710.382700003683567, 257800.976700000464916 ], [ 362675.80290000140667, 257789.92790000140667 ], [ 362670.671999998390675, 257824.294199999421835 ], [ 362694.024400003254414, 257828.073899999260902 ], [ 362709.340800002217293, 257828.621399998664856 ], [ 362710.382700003683567, 257800.976700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103046200", "MAP": "C9-226-T78", "PARCEL_NAM": "260-12", "ACRE": "0.27", "LONGITUDE": -64.89373286, "LATITUDE": 18.34944727, "OBJECTID_1": 6681, "PARCEL_NO_": "103103046200", "Tax_Legal_": "ANNAS RETREAT 260-12 NEW QTR", "Name": "PARKER, DALMA R. & A. DOLORES", "Address": "PO Box 12084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40100, "Improved_V": 200800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.610540988, "SHAPE_Area": 1182.34408521 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362717.025600001215935, 257778.444099999964237 ], [ 362710.382700003683567, 257800.976700000464916 ], [ 362709.340800002217293, 257828.621399998664856 ], [ 362719.020099997520447, 257828.278499998152256 ], [ 362734.358000002801418, 257826.293099999427795 ], [ 362740.821099996566772, 257824.868299998342991 ], [ 362744.069799996912479, 257822.150699999183416 ], [ 362744.123700000345707, 257815.818300001323223 ], [ 362741.76410000026226, 257808.832899998873472 ], [ 362737.790100000798702, 257802.045400001108646 ], [ 362727.441100001335144, 257786.339800000190735 ], [ 362717.025600001215935, 257778.444099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104032200", "MAP": "D9-695-T68", "PARCEL_NAM": "125B", "ACRE": ".33", "LONGITUDE": -64.88713868000001, "LATITUDE": 18.34947107, "OBJECTID_1": 6857, "PARCEL_NO_": "103104032200", "Tax_Legal_": "ANNAS RETREAT 125B NEW QTR", "Name": "MCBEAN, YVETTE M. (TRUSTEE)", "Address": "PO Box 731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 69400, "Improved_V": 279400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.668231405, "SHAPE_Area": 1671.9475150799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363398.737899996340275, 257834.263799998909235 ], [ 363430.202100001275539, 257832.410399999469519 ], [ 363451.150100000202656, 257834.481699999421835 ], [ 363448.875, 257817.575599998235703 ], [ 363446.501000002026558, 257812.278799999505281 ], [ 363441.71169999986887, 257806.540100000798702 ], [ 363433.688100002706051, 257801.830400001257658 ], [ 363416.791500002145767, 257797.470199998468161 ], [ 363402.281499996781349, 257796.929299999028444 ], [ 363396.631899997591972, 257797.51630000025034 ], [ 363398.737899996340275, 257834.263799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030400", "MAP": "C9-211-T76", "PARCEL_NAM": "394-273", "ACRE": ".248", "LONGITUDE": -64.8903602, "LATITUDE": 18.34940233, "OBJECTID_1": 6839, "PARCEL_NO_": "103104030400", "Tax_Legal_": "ANNAS RETREAT 394-273 NEW QTR", "Name": "PRENTICE, WENWORTH & EDRIS", "Address": "PO Box 502032", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31400, "Improved_V": 153400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.726687728, "SHAPE_Area": 1043.9668756399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363092.340999998152256, 257831.545000001788139 ], [ 363090.358999997377396, 257780.232999999076128 ], [ 363071.002099998295307, 257780.707899998873472 ], [ 363070.574199996888638, 257830.944699998944998 ], [ 363092.340999998152256, 257831.545000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104038700", "MAP": "C9-211-T76", "PARCEL_NAM": "394-272", "ACRE": ".230", "LONGITUDE": -64.89016012, "LATITUDE": 18.34939782, "OBJECTID_1": 6916, "PARCEL_NO_": "103104038700", "Tax_Legal_": "ANNAS RETREAT 394-272 NEW QTR", "Name": "JAMES, NATHANIEL & RONA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 229400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.567782016, "SHAPE_Area": 1120.7314203400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363114.921400003135204, 257831.307599999010563 ], [ 363111.328500002622604, 257779.77140000090003 ], [ 363090.358999997377396, 257780.232999999076128 ], [ 363092.340999998152256, 257831.545000001788139 ], [ 363114.921400003135204, 257831.307599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004032800", "MAP": "C9-118-T71", "PARCEL_NAM": "342", "ACRE": "0.56", "LONGITUDE": -64.90349743, "LATITUDE": 18.34927998, "OBJECTID_1": 6151, "PARCEL_NO_": "103004032800", "Tax_Legal_": "342 ESTATE WINTBERG GREAT NORTHSIDE QTR", "Name": "RHYMER, JUEL", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48600, "Improved_V": 274100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.757203995, "SHAPE_Area": 2316.94069657 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361661.553599998354912, 257770.861000001430511 ], [ 361683.896499998867512, 257798.486000001430511 ], [ 361697.422200001776218, 257819.917199999094009 ], [ 361698.226000003516674, 257821.026999998837709 ], [ 361706.303400002419949, 257811.58049999922514 ], [ 361723.69030000269413, 257793.235300000756979 ], [ 361722.662500001490116, 257791.41499999910593 ], [ 361693.993100002408028, 257749.172800000756979 ], [ 361691.517700001597404, 257744.907900001853704 ], [ 361679.880699999630451, 257752.026900000870228 ], [ 361668.654500000178814, 257760.925700001418591 ], [ 361659.071199998259544, 257767.634100001305342 ], [ 361661.553599998354912, 257770.861000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104039200", "MAP": "C9-211-T76", "PARCEL_NAM": "394-274", "ACRE": ".237", "LONGITUDE": -64.89055486, "LATITUDE": 18.34940037, "OBJECTID_1": 6920, "PARCEL_NO_": "103104039200", "Tax_Legal_": "ANNAS RETREAT 394-274 NEW QTR", "Name": "THOMAS, ANGELA & CHESNA O. TROTMAN", "Address": "PO Box 502872", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32900, "Improved_V": 142900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.56623233100001, "SHAPE_Area": 1022.09652997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363071.002099998295307, 257780.707899998873472 ], [ 363050.838899999856949, 257781.176199998706579 ], [ 363049.613600000739098, 257830.350900001823902 ], [ 363070.574199996888638, 257830.944699998944998 ], [ 363071.002099998295307, 257780.707899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030500", "MAP": "C9-211-T76", "PARCEL_NAM": "394-271", "ACRE": ".240", "LONGITUDE": -64.88996966000001, "LATITUDE": 18.34937287, "OBJECTID_1": 6840, "PARCEL_NO_": "103104030500", "Tax_Legal_": "ANNAS RETREAT 394-271 NEW QTR", "Name": "WILSON, JANE", "Address": "394-271 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 161200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.33766790499999, "SHAPE_Area": 1048.62436394 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363129.862899996340275, 257781.189699999988079 ], [ 363129.290799997746944, 257774.787200000137091 ], [ 363127.571999996900558, 257775.024900000542402 ], [ 363123.971340158372186, 257775.496662984049181 ], [ 363120.339907144545577, 257775.499081963615026 ], [ 363116.738621997646987, 257775.032116358401254 ], [ 363113.227899998426437, 257774.10359999909997 ], [ 363111.328500002622604, 257779.77140000090003 ], [ 363114.921400003135204, 257831.307599999010563 ], [ 363134.280000001192093, 257830.621700000017881 ], [ 363129.862899996340275, 257781.189699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104034300", "MAP": "C9-211-T76", "PARCEL_NAM": "394-275", "ACRE": ".226", "LONGITUDE": -64.89075881, "LATITUDE": 18.3493968, "OBJECTID_1": 6878, "PARCEL_NO_": "103104034300", "Tax_Legal_": "ANNAS RETREAT 394-275 NEW QTR", "Name": "PINNEY, GILBERT S. & BERNADETTE", "Address": "394-275 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 289900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.28580838400001, "SHAPE_Area": 1096.1323226899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363050.838899999856949, 257781.176199998706579 ], [ 363027.450499996542931, 257781.618000000715256 ], [ 363027.848600000143051, 257829.539500001817942 ], [ 363049.613600000739098, 257830.350900001823902 ], [ 363050.838899999856949, 257781.176199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104031400", "MAP": "C9-211-T76", "PARCEL_NAM": "394-255", "ACRE": ".158", "LONGITUDE": -64.88870357, "LATITUDE": 18.34946068, "OBJECTID_1": 6849, "PARCEL_NO_": "103104031400", "Tax_Legal_": "ANNAS RETREAT 394-255 NEW QTR", "Name": "SMITH, MARY & JOHN", "Address": "PO Box 7085", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 161600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.417421792, "SHAPE_Area": 630.36467172699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363267.602099999785423, 257798.782299999147654 ], [ 363259.538999997079372, 257798.716299999505281 ], [ 363246.637999996542931, 257798.610700000077486 ], [ 363245.572700001299381, 257828.999499998986721 ], [ 363264.0945999994874, 257831.895300000905991 ], [ 363267.602099999785423, 257798.782299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030600", "MAP": "C9-211-T76", "PARCEL_NAM": "394-270", "ACRE": ".217", "LONGITUDE": -64.88979151, "LATITUDE": 18.34937687, "OBJECTID_1": 6841, "PARCEL_NO_": "103104030600", "Tax_Legal_": "ANNAS RETREAT 394-270 NEW QTR", "Name": "CLAXTON, SYLVANIA", "Address": "394-270 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27600, "Improved_V": 161200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.39697052400001, "SHAPE_Area": 1029.8709641400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363144.396300002932549, 257778.986600000411272 ], [ 363142.81139999628067, 257772.645300000905991 ], [ 363129.290799997746944, 257774.787200000137091 ], [ 363129.862899996340275, 257781.189699999988079 ], [ 363134.280000001192093, 257830.621700000017881 ], [ 363156.873000003397465, 257828.906800001859665 ], [ 363144.396300002932549, 257778.986600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030200", "MAP": "C9-211-T76", "PARCEL_NAM": "294-388", "ACRE": ".210", "LONGITUDE": -64.89096098, "LATITUDE": 18.3494109, "OBJECTID_1": 6837, "PARCEL_NO_": "103104030200", "Tax_Legal_": "ANNAS RETREAT 394-388 NEW QTR", "Name": "THOMAS, LUDRICK & RITA", "Address": "PO Box 8513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27900, "Improved_V": 206200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.3089734, "SHAPE_Area": 943.63150909700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363027.450499996542931, 257781.618000000715256 ], [ 363009.697200000286102, 257783.161499999463558 ], [ 363005.275399997830391, 257828.932599999010563 ], [ 363027.848600000143051, 257829.539500001817942 ], [ 363027.450499996542931, 257781.618000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88484884, "LATITUDE": 18.34934747, "OBJECTID_1": 6932, "PARCEL_NO_": "103104040600", "Tax_Legal_": "ANNAS RETREAT 394-107 NEW QTR", "Name": "EDMEAD, ERMINE N", "Address": "394-107 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 185100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.15432655800001, "SHAPE_Area": 1688.37235693 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363688.342600002884865, 257820.379900000989437 ], [ 363685.351099997758865, 257792.913199998438358 ], [ 363679.706900000572205, 257792.866999998688698 ], [ 363672.462700001895428, 257791.330099999904633 ], [ 363663.630999997258186, 257786.82490000128746 ], [ 363657.230899997055531, 257780.861800000071526 ], [ 363646.100699998438358, 257762.194499999284744 ], [ 363638.906800001859665, 257754.747400000691414 ], [ 363644.471900001168251, 257764.081000000238419 ], [ 363648.312899999320507, 257786.488400001078844 ], [ 363648.11150000244379, 257810.129200000315905 ], [ 363645.485699996352196, 257834.383499998599291 ], [ 363680.256099998950958, 257823.057900000363588 ], [ 363688.342600002884865, 257820.379900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90204351, "LATITUDE": 18.3493474, "OBJECTID_1": 6185, "PARCEL_NO_": "103004036500", "Tax_Legal_": "312 ESTATE WINTBERG GT NORTHSIDE", "Name": "SHERIANN CHARLES ROGERS 2010 TRUST", "Address": "6326 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.609957098, "SHAPE_Area": 2068.19433 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361883.914200000464916, 257794.001299999654293 ], [ 361826.141999997198582, 257760.386799998581409 ], [ 361808.187299996614456, 257785.571100000292063 ], [ 361867.568499997258186, 257819.620999999344349 ], [ 361883.914200000464916, 257794.001299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030100", "MAP": "C9-211-T76", "PARCEL_NAM": "394-389", "ACRE": ".194", "LONGITUDE": -64.89116425, "LATITUDE": 18.34940817, "OBJECTID_1": 6836, "PARCEL_NO_": "103104030100", "Tax_Legal_": "ANNAS RETREAT 394-389 NEW QTR", "Name": "LLEWELLYN, K. & MCCOY, L", "Address": "PO Box 11401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26000, "Improved_V": 172500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.042820299, "SHAPE_Area": 1015.62628512 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363009.697200000286102, 257783.161499999463558 ], [ 362986.294399999082088, 257785.291900001466274 ], [ 362982.704099997878075, 257828.114599999040365 ], [ 363005.275399997830391, 257828.932599999010563 ], [ 363009.697200000286102, 257783.161499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103047100", "MAP": "C9-211-T76", "PARCEL_NAM": "394-390", "ACRE": ".173", "LONGITUDE": -64.89140503, "LATITUDE": 18.34941758, "OBJECTID_1": 6690, "PARCEL_NO_": "103103047100", "Tax_Legal_": "ANNAS RETREAT 394-390. NEW QTR", "Name": "WILLIAMS, JOYCELYN", "Address": "PO Box 7123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 277100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.71819528699999, "SHAPE_Area": 1137.9225801600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362986.294399999082088, 257785.291900001466274 ], [ 362956.424800001084805, 257789.269400000572205 ], [ 362956.101199999451637, 257827.2635000012815 ], [ 362982.704099997878075, 257828.114599999040365 ], [ 362986.294399999082088, 257785.291900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023500", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".32", "LONGITUDE": -64.90691497, "LATITUDE": 18.34942674, "OBJECTID_1": 6106, "PARCEL_NO_": "103004023500", "Tax_Legal_": "WINTBERG 1-143-15 GREAT NORTHSIDE QTR", "Name": "MILLER, NANCY F", "Address": "471 S Elm St", "City": "Wallingford", "State": "Connecticut", "Zip": 6492, "Country": "United States", "Land_Value": 33400, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.601440446, "SHAPE_Area": 1307.4492046400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361358.083400003612041, 257803.207699999213219 ], [ 361358.103100001811981, 257800.885800000280142 ], [ 361356.524700000882149, 257796.862100001424551 ], [ 361347.770300000905991, 257783.280499998480082 ], [ 361346.18469999730587, 257780.101100001484156 ], [ 361344.60080000013113, 257776.71059999987483 ], [ 361343.817900002002716, 257773.96000000089407 ], [ 361307.443899996578693, 257784.217000000178814 ], [ 361314.44539999961853, 257814.249600000679493 ], [ 361358.083400003612041, 257803.207699999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204022700", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".24", "LONGITUDE": -64.87273581, "LATITUDE": 18.34934602, "OBJECTID_1": 7159, "PARCEL_NO_": "103204022700", "Tax_Legal_": "FRYDENDAHL 56-13 EAST END QTR.", "Name": "JACKSON, JASON", "Address": "6575 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30200, "Improved_V": 264200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.45833214699999, "SHAPE_Area": 1445.3140348699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364969.626999996602535, 257824.5337999984622 ], [ 364942.534299999475479, 257786.526299998164177 ], [ 364938.468599997460842, 257790.503800000995398 ], [ 364918.957000002264977, 257809.131400000303984 ], [ 364943.657799996435642, 257843.952899999916553 ], [ 364969.626999996602535, 257824.5337999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003035400", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".34", "LONGITUDE": -64.90883298, "LATITUDE": 18.34941541, "OBJECTID_1": 5850, "PARCEL_NO_": "103003035400", "Tax_Legal_": "WINTBERG 1-143-41 GR NORTHSIDE QTR", "Name": "HODGE, IRENE", "Address": "PO Box 2073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38400, "Improved_V": 186700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.40117207, "SHAPE_Area": 1286.9349213200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361112.870899997651577, 257812.177600000053644 ], [ 361144.338600002229214, 257809.901999998837709 ], [ 361145.24379999935627, 257798.299300000071526 ], [ 361149.431800000369549, 257779.968400001525879 ], [ 361133.363099999725819, 257773.081900000572205 ], [ 361122.0962999984622, 257770.456599999219179 ], [ 361112.427799999713898, 257769.533100001513958 ], [ 361112.870899997651577, 257812.177600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030700", "MAP": "C9-211-T76", "PARCEL_NAM": "394-269", "ACRE": ".229", "LONGITUDE": -64.88960753000001, "LATITUDE": 18.3493322, "OBJECTID_1": 6842, "PARCEL_NO_": "103104030700", "Tax_Legal_": "394-269 ANNAS RETREAT NO 1 NEW QTR", "Name": "SARGEANT, EVERETTE K.", "Address": "1715 7th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 140800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.59485840799999, "SHAPE_Area": 1286.84107365 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363165.412600003182888, 257773.036899998784065 ], [ 363164.2449000030756, 257768.244699999690056 ], [ 363153.558870407461654, 257770.594626383186551 ], [ 363142.81139999628067, 257772.645300000905991 ], [ 363144.396300002932549, 257778.986600000411272 ], [ 363156.873000003397465, 257828.906800001859665 ], [ 363178.657799996435642, 257827.396299999207258 ], [ 363165.412600003182888, 257773.036899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103045800", "MAP": "C9-229-T78", "PARCEL_NAM": "260-8", "ACRE": "0.27", "LONGITUDE": -64.89437522, "LATITUDE": 18.34941685, "OBJECTID_1": 6677, "PARCEL_NO_": "103103045800", "Tax_Legal_": "260-8 ANNAS RETREAT NEW QTR", "Name": "FRETT, SANDRA", "Address": "6421 Nadir Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40100, "Improved_V": 159500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.94995845299999, "SHAPE_Area": 1154.51791112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362675.80290000140667, 257789.92790000140667 ], [ 362643.593599997460842, 257784.598000001162291 ], [ 362636.857199996709824, 257818.106800001114607 ], [ 362670.671999998390675, 257824.294199999421835 ], [ 362675.80290000140667, 257789.92790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104031300", "MAP": "C9-211-T76", "PARCEL_NAM": "394-254", "ACRE": ".157", "LONGITUDE": -64.88891033, "LATITUDE": 18.34945239, "OBJECTID_1": 6848, "PARCEL_NO_": "103104031300", "Tax_Legal_": "ANNAS RETREAT 394-254 NEW QTR", "Name": "WARNER, ROY M & ELISE C", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20100, "Improved_V": 96600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.15920871900001, "SHAPE_Area": 709.509613339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363246.637999996542931, 257798.610700000077486 ], [ 363233.738799996674061, 257798.293999999761581 ], [ 363222.450400002300739, 257798.20160000026226 ], [ 363222.202299997210503, 257827.33049999922514 ], [ 363245.572700001299381, 257828.999499998986721 ], [ 363246.637999996542931, 257798.610700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030800", "MAP": "C9-211-T76", "PARCEL_NAM": "394-268", "ACRE": ".236", "LONGITUDE": -64.88940369, "LATITUDE": 18.34928546, "OBJECTID_1": 6843, "PARCEL_NO_": "103104030800", "Tax_Legal_": "394-268 ANNAS RETREAT NEW QTR", "Name": "CLENDINEN, SONIA", "Address": "PO Box 9134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 136600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.31400523400001, "SHAPE_Area": 1400.4397366799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363190.453299999237061, 257767.964499998837709 ], [ 363189.819700002670288, 257763.814500000327826 ], [ 363181.489742162288167, 257764.723396068060538 ], [ 363173.212700001895428, 257766.029100000858307 ], [ 363164.2449000030756, 257768.244699999690056 ], [ 363165.412600003182888, 257773.036899998784065 ], [ 363178.657799996435642, 257827.396299999207258 ], [ 363195.595799997448921, 257826.901700001209974 ], [ 363195.035800002515316, 257797.977299999445677 ], [ 363190.453299999237061, 257767.964499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104039300", "MAP": "C9-211-T76", "PARCEL_NAM": "394-397", "ACRE": ".162", "LONGITUDE": -64.88915132, "LATITUDE": 18.34944844, "OBJECTID_1": 6921, "PARCEL_NO_": "103104039300", "Tax_Legal_": "ANNAS RETREAT 394-397 RIDGEVIEW 2", "Name": "BLACKWOOD, O. & WILLIAMS, S", "Address": "PO Box 12086", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 229000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.085249769, "SHAPE_Area": 783.97534408499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363222.450400002300739, 257798.20160000026226 ], [ 363212.774700000882149, 257798.122400000691414 ], [ 363195.035800002515316, 257797.977299999445677 ], [ 363195.595799997448921, 257826.901700001209974 ], [ 363222.202299997210503, 257827.33049999922514 ], [ 363222.450400002300739, 257798.20160000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88402635, "LATITUDE": 18.34936677, "OBJECTID_1": 6931, "PARCEL_NO_": "103104040500", "Tax_Legal_": "ANNAS RETREAT 394-1 NEW QTR", "Name": "ARCHIBALD, ANTONETTA A", "Address": "PO Box 8418", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21200, "Improved_V": 268000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.469806629, "SHAPE_Area": 596.83399672300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363750.345899999141693, 257830.597699999809265 ], [ 363756.017099998891354, 257827.477699998766184 ], [ 363757.645900003612041, 257825.5912000015378 ], [ 363760.392099998891354, 257787.194600000977516 ], [ 363741.758799999952316, 257797.38569999858737 ], [ 363736.087600000202656, 257800.505699999630451 ], [ 363750.345899999141693, 257830.597699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104031700", "MAP": "C9-211-T76", "PARCEL_NAM": "394-258", "ACRE": null, "LONGITUDE": -64.88825132, "LATITUDE": 18.34943993, "OBJECTID_1": 6852, "PARCEL_NO_": "103104031700", "Tax_Legal_": "ANNAS RETREAT 394-258 NEW QTR", "Name": "BENJAMIN, DIANA", "Address": "PO Box 1043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17600, "Improved_V": 244200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.508549704, "SHAPE_Area": 818.01600576199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363319.202500000596046, 257799.626800000667572 ], [ 363289.370800003409386, 257799.171500001102686 ], [ 363285.938699997961521, 257823.419199999421835 ], [ 363320.590400002896786, 257826.02479999884963 ], [ 363319.202500000596046, 257799.626800000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204020900", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.87327124, "LATITUDE": 18.34933111, "OBJECTID_1": 7142, "PARCEL_NO_": "103204020900", "Tax_Legal_": "FRYDENDAHL 56-44 EAST END QTR.", "Name": "XAVIER, BILLY & MYRTLE", "Address": "PO Box 502534", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24900, "Improved_V": 232900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.42239072699999, "SHAPE_Area": 1087.7946187099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364910.013899996876717, 257817.713100001215935 ], [ 364887.661899998784065, 257791.143399998545647 ], [ 364864.968299999833107, 257804.678800001740456 ], [ 364885.648299999535084, 257838.200800001621246 ], [ 364900.257200002670288, 257827.132399998605251 ], [ 364910.013899996876717, 257817.713100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103046300", "MAP": "C9-229-T78", "PARCEL_NAM": "260-16", "ACRE": "0.28", "LONGITUDE": -64.893424, "LATITUDE": 18.34930099, "OBJECTID_1": 6682, "PARCEL_NO_": "103103046300", "Tax_Legal_": "ANNAS RETREAT 260-16 NEW QTR", "Name": "THOMAS, BERNARD & SHEILA", "Address": "PO Box 11562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43600, "Improved_V": 150800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.32889574199999, "SHAPE_Area": 1303.36462394 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362769.324400000274181, 257791.959899999201298 ], [ 362759.95610000193119, 257755.786200001835823 ], [ 362737.115000002086163, 257786.629999998956919 ], [ 362746.657700002193451, 257802.329100001603365 ], [ 362749.046099998056889, 257805.937199998646975 ], [ 362751.39130000025034, 257814.611200001090765 ], [ 362754.586000002920628, 257818.225999999791384 ], [ 362758.606799997389317, 257819.525400001555681 ], [ 362762.640100002288818, 257819.347300000488758 ], [ 362776.381599999964237, 257815.449000000953674 ], [ 362769.324400000274181, 257791.959899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89924112, "LATITUDE": 18.34923529, "OBJECTID_1": 6621, "PARCEL_NO_": "103103040200", "Tax_Legal_": "WINTBERG 301 GT. NORTHSIDE", "Name": "MARSH, EDWINA", "Address": "PO Box 9915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85700, "Improved_V": 140400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.09195608, "SHAPE_Area": 1902.5737527799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362164.0912000015378, 257750.909400001168251 ], [ 362139.968400001525879, 257742.901500001549721 ], [ 362118.455799996852875, 257807.108899999409914 ], [ 362149.844400003552437, 257814.120799999684095 ], [ 362164.0912000015378, 257750.909400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103045600", "MAP": "C9-229-T78", "PARCEL_NAM": "260-6", "ACRE": "0.27", "LONGITUDE": -64.89468621, "LATITUDE": 18.34936101, "OBJECTID_1": 6675, "PARCEL_NO_": "103103045600", "Tax_Legal_": "ANNAS RETREAT 260-6 NEW QTR", "Name": "AMEY, LEONARD K. & LYNETTE P.", "Address": "PO BOX 9306", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42000, "Improved_V": 204500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.98983387499999, "SHAPE_Area": 1138.43407742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362643.593599997460842, 257784.598000001162291 ], [ 362610.590499997138977, 257777.784000001847744 ], [ 362604.658600002527237, 257811.510400000959635 ], [ 362636.857199996709824, 257818.106800001114607 ], [ 362643.593599997460842, 257784.598000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104025400", "MAP": "D9-1806-T81", "PARCEL_NAM": "2A", "ACRE": ".51", "LONGITUDE": -64.88338626, "LATITUDE": 18.34937966, "OBJECTID_1": 6824, "PARCEL_NO_": "103104025400", "Tax_Legal_": "TARBOR & HARMONY 2A EAST END QTR.", "Name": "FLEMING, DAVID & CORDELIA", "Address": "PO Box 9281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66100, "Improved_V": 214000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.89475442899999, "SHAPE_Area": 1277.4058912 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363821.69879999756813, 257784.530000001192093 ], [ 363807.091700002551079, 257795.387299999594688 ], [ 363790.024300001561642, 257811.079599998891354 ], [ 363789.993699997663498, 257814.668000001460314 ], [ 363813.297600001096725, 257824.146800000220537 ], [ 363828.588799998164177, 257827.649399999529123 ], [ 363837.456399999558926, 257827.933100000023842 ], [ 363845.535800002515316, 257826.099399998784065 ], [ 363821.69879999756813, 257784.530000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87768988000001, "LATITUDE": 18.34926337, "OBJECTID_1": 7029, "PARCEL_NO_": "103203022800", "Tax_Legal_": "FRYDENDAHL 53-12 EAST END QTR", "Name": "SEBASTIEN, AGNES", "Address": "2734 Bronx Park E", "City": "Bronx", "State": "New York", "Zip": 10467, "Country": "United States", "Land_Value": 80900, "Improved_V": 245200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.87303149900001, "SHAPE_Area": 2312.0965780500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364457.135999999940395, 257782.342399999499321 ], [ 364432.165500000119209, 257779.182799998670816 ], [ 364425.729400001466274, 257777.441300000995398 ], [ 364381.170000001788139, 257801.985700000077486 ], [ 364406.722000002861023, 257831.536800000816584 ], [ 364443.97070000320673, 257813.265399999916553 ], [ 364457.135999999940395, 257782.342399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203015100", "MAP": "D9-1806-T81", "PARCEL_NAM": "2B", "ACRE": ".53", "LONGITUDE": -64.88308153, "LATITUDE": 18.34923935, "OBJECTID_1": 6991, "PARCEL_NO_": "103203015100", "Tax_Legal_": "TARBOR & HARMONY 2B&2C EAST END QTR", "Name": "JACKSON, NORMA", "Address": "PO BOX 303725", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.678751011, "SHAPE_Area": 1906.40850675 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363881.218500003218651, 257802.326799999922514 ], [ 363853.314000003039837, 257764.945900000631809 ], [ 363837.110500000417233, 257773.890299998223782 ], [ 363821.69879999756813, 257784.530000001192093 ], [ 363845.535800002515316, 257826.099399998784065 ], [ 363881.218500003218651, 257802.326799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87191748, "LATITUDE": 18.34929914, "OBJECTID_1": 7097, "PARCEL_NO_": "103204014600", "Tax_Legal_": "56-74 FRYDENDAHL EAST END QUARTER", "Name": "BARTON, OCTAVIA & KEITHROY", "Address": "PO Box 8653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44700, "Improved_V": 202800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.89526404599999, "SHAPE_Area": 1265.91779778 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365053.497900001704693, 257823.531500000506639 ], [ 365034.477300003170967, 257784.534600000828505 ], [ 365006.072899997234344, 257805.833700001239777 ], [ 365027.593400001525879, 257835.351799998432398 ], [ 365053.497900001704693, 257823.531500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103046400", "MAP": "C9-229-T78", "PARCEL_NAM": "260-18", "ACRE": "0.28", "LONGITUDE": -64.89312714, "LATITUDE": 18.34930291, "OBJECTID_1": 6683, "PARCEL_NO_": "103103046400", "Tax_Legal_": "ANNAS RETREAT 260-18 NEW QTR", "Name": "RUAN, COLETTE & BROWNE, HYACINTH", "Address": "PO Box 9944", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43600, "Improved_V": 151600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.31130406700001, "SHAPE_Area": 1198.0871717 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362806.351800002157688, 257799.651200000196695 ], [ 362794.582599997520447, 257761.346999999135733 ], [ 362769.324400000274181, 257791.959899999201298 ], [ 362776.381599999964237, 257815.449000000953674 ], [ 362808.709600001573563, 257806.847699999809265 ], [ 362806.351800002157688, 257799.651200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88447233, "LATITUDE": 18.3493241, "OBJECTID_1": 6933, "PARCEL_NO_": "103104040700", "Tax_Legal_": "ANNAS RETREAT 394-4 NEW QTR", "Name": "MICHAEL, JUDITH & COLLINS", "Address": "394-4 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 147100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.523723437, "SHAPE_Area": 969.756904674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363688.342600002884865, 257820.379900000989437 ], [ 363698.016500003635883, 257820.670200001448393 ], [ 363717.45610000193119, 257810.485700000077486 ], [ 363728.796700000762939, 257804.456799998879433 ], [ 363707.204199999570847, 257783.381799999624491 ], [ 363697.471000000834465, 257790.057100001722574 ], [ 363685.351099997758865, 257792.913199998438358 ], [ 363688.342600002884865, 257820.379900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103045500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89499549, "LATITUDE": 18.34930556, "OBJECTID_1": 6674, "PARCEL_NO_": "103103045500", "Tax_Legal_": "259A ANNAS RETREAT NEW QTR", "Name": "SMITH, JAMES B. & ULALIE A", "Address": "PO Box 306156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45000, "Improved_V": 329800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.07761523400001, "SHAPE_Area": 1139.9608715700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362610.590499997138977, 257777.784000001847744 ], [ 362578.39019999653101, 257771.398800000548363 ], [ 362571.652000002563, 257805.118599999696016 ], [ 362604.658600002527237, 257811.510400000959635 ], [ 362610.590499997138977, 257777.784000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89952752000001, "LATITUDE": 18.34916852, "OBJECTID_1": 6620, "PARCEL_NO_": "103103040100", "Tax_Legal_": "302 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "FAML MANAGEMENT LLC", "Address": "PO Box 9951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62300, "Improved_V": 58400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.423049225, "SHAPE_Area": 2310.56618901 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362120.683399997651577, 257734.933200001716614 ], [ 362115.877899996936321, 257731.094099998474121 ], [ 362096.20269999653101, 257768.929900001734495 ], [ 362080.620300002396107, 257799.622099999338388 ], [ 362094.654399998486042, 257802.399099998176098 ], [ 362118.455799996852875, 257807.108899999409914 ], [ 362139.968400001525879, 257742.901500001549721 ], [ 362127.105099998414516, 257738.363200001418591 ], [ 362120.683399997651577, 257734.933200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87857032, "LATITUDE": 18.34893916, "OBJECTID_1": 7031, "PARCEL_NO_": "103203023000", "Tax_Legal_": "FRYDENDAHL 53-9 EAST END QTR.", "Name": "ADAMS, ANNETTA", "Address": "PO Box 308301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.26164411399998, "SHAPE_Area": 3806.60321277 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364305.314800001680851, 257713.972100000828505 ], [ 364276.946400001645088, 257731.049600001424551 ], [ 364276.12389999628067, 257732.942699998617172 ], [ 364276.86540000140667, 257740.548099998384714 ], [ 364278.460100002586842, 257742.672100000083447 ], [ 364298.472199998795986, 257759.934500001370907 ], [ 364308.108400002121925, 257764.657400000840425 ], [ 364318.52759999781847, 257772.131000000983477 ], [ 364327.325099997222424, 257780.646699998527765 ], [ 364336.099200002849102, 257791.906500000506639 ], [ 364340.0641999989748, 257799.749400001019239 ], [ 364341.664300002157688, 257801.240200001746416 ], [ 364343.239100001752377, 257805.686000000685453 ], [ 364342.375299997627735, 257812.433899998664856 ], [ 364339.076300002634525, 257821.061799999326468 ], [ 364339.040299996733665, 257825.283300001174212 ], [ 364381.170000001788139, 257801.985700000077486 ], [ 364305.314800001680851, 257713.972100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204021400", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".32", "LONGITUDE": -64.87428727, "LATITUDE": 18.3493421, "OBJECTID_1": 7147, "PARCEL_NO_": "103204021400", "Tax_Legal_": "FRYDENDAHL 12B-2 EAST END QTR.", "Name": "JONES, MERLENE L", "Address": "PO Box 304406", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39300, "Improved_V": 129700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.53401731400001, "SHAPE_Area": 858.95114872900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364805.916799999773502, 257826.571400001645088 ], [ 364768.349200002849102, 257787.633799999952316 ], [ 364766.733000002801418, 257788.04280000180006 ], [ 364766.39130000025034, 257828.147700000554323 ], [ 364786.54559999704361, 257828.734900001436472 ], [ 364805.916799999773502, 257826.571400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204024300", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".28", "LONGITUDE": -64.87456651, "LATITUDE": 18.34930315, "OBJECTID_1": 7173, "PARCEL_NO_": "103204024300", "Tax_Legal_": "FRYDENDAHL 12B-1 EAST END QTR.", "Name": "RICHARDSON, RUSSELL & CHRISTA", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 235800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.168052252, "SHAPE_Area": 1098.17795114 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364766.733000002801418, 257788.04280000180006 ], [ 364728.714000001549721, 257802.085900001227856 ], [ 364727.893299996852875, 257803.76799999922514 ], [ 364730.209799997508526, 257815.819299999624491 ], [ 364735.008100003004074, 257820.502599999308586 ], [ 364743.839800000190735, 257825.00789999961853 ], [ 364766.39130000025034, 257828.147700000554323 ], [ 364766.733000002801418, 257788.04280000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87090779, "LATITUDE": 18.34930313, "OBJECTID_1": 7102, "PARCEL_NO_": "103204015100", "Tax_Legal_": "FRYDENDAHL 56-83 EAST END QTR.", "Name": "SPENCER, GARFIELD & BERYL", "Address": "PO Box 12246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48300, "Improved_V": 303000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.75944558, "SHAPE_Area": 1281.74945822 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365167.211400002241135, 257821.717999998480082 ], [ 365141.679099999368191, 257789.844900000840425 ], [ 365102.747699998319149, 257816.335200000554323 ], [ 365113.222599998116493, 257817.265299998223782 ], [ 365117.232600003480911, 257819.831199999898672 ], [ 365120.438000001013279, 257822.179499998688698 ], [ 365122.837200000882149, 257824.521200001239777 ], [ 365124.417499996721745, 257828.333799999207258 ], [ 365124.397699996829033, 257830.655699998140335 ], [ 365162.359099999070168, 257823.366999998688698 ], [ 365167.211400002241135, 257821.717999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036400", "MAP": "C9-118-T71", "PARCEL_NAM": "335", "ACRE": "0.67", "LONGITUDE": -64.90265345, "LATITUDE": 18.3491448, "OBJECTID_1": 6184, "PARCEL_NO_": "103004036400", "Tax_Legal_": "335 ESTATE WINTBERG GREAT NORTHSIDE QTR", "Name": "BARRY, JOANNE U. & MONIQUE PLASKETT", "Address": "PO Box 8572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58300, "Improved_V": 222200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.90751866799999, "SHAPE_Area": 2821.3872995299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361792.005500003695488, 257732.179200001060963 ], [ 361787.214100003242493, 257726.836399998515844 ], [ 361777.493900001049042, 257736.419799998402596 ], [ 361771.470100000500679, 257742.443599998950958 ], [ 361760.517700001597404, 257753.806699998676777 ], [ 361753.398599997162819, 257760.788800001144409 ], [ 361746.416500002145767, 257768.181699998676777 ], [ 361751.697300001978874, 257774.043299999088049 ], [ 361766.319399997591972, 257790.25959999859333 ], [ 361785.23309999704361, 257811.235300000756979 ], [ 361788.695600003004074, 257801.876899998635054 ], [ 361795.254000000655651, 257789.264899998903275 ], [ 361801.785400003194809, 257779.819200001657009 ], [ 361813.219400003552437, 257762.8141999989748 ], [ 361815.078900001943111, 257760.320099998265505 ], [ 361792.005500003695488, 257732.179200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204021200", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".31", "LONGITUDE": -64.87415137000001, "LATITUDE": 18.34919442, "OBJECTID_1": 7145, "PARCEL_NO_": "103204021200", "Tax_Legal_": "FRYDENDAHL 12B-3 EAST END QTR.", "Name": "GEORGES, HAMIL & JESSICA", "Address": "8096 NORTH WEST 4TH AVENUE", "City": "Miami", "State": "Florida", "Zip": 33150, "Country": "United States", "Land_Value": 36900, "Improved_V": 104100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.89399733299999, "SHAPE_Area": 1059.8830140800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364810.765500001609325, 257825.344500001519918 ], [ 364803.938500002026558, 257774.83729999884963 ], [ 364768.349200002849102, 257787.633799999952316 ], [ 364805.916799999773502, 257826.571400001645088 ], [ 364810.765500001609325, 257825.344500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204021000", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".30", "LONGITUDE": -64.87392466, "LATITUDE": 18.34921778, "OBJECTID_1": 7143, "PARCEL_NO_": "103204021000", "Tax_Legal_": "FRYDENDAHL 12B-4 EAST END QTR.", "Name": "WILLIAMS, SHERWIN & JOYCELYN", "Address": "6210 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35700, "Improved_V": 162900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.418429656, "SHAPE_Area": 1035.1153900500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364839.090700000524521, 257813.332899998873472 ], [ 364813.644799999892712, 257771.328099999576807 ], [ 364803.938500002026558, 257774.83729999884963 ], [ 364810.765500001609325, 257825.344500001519918 ], [ 364824.505199998617172, 257821.657299999147654 ], [ 364839.090700000524521, 257813.332899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104038800", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-120", "ACRE": "0.15", "LONGITUDE": -64.88623345000001, "LATITUDE": 18.34931955, "OBJECTID_1": 6917, "PARCEL_NO_": "103104038800", "Tax_Legal_": "394-120 ANNAS RETREAT NO.1 NEW QTR", "Name": "JEFFERY L. & LILLY B. CHANDLER REV. TRST", "Address": "PO Box 7931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49000, "Improved_V": 207800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.09562361899999, "SHAPE_Area": 679.806841416 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363518.527099996805191, 257781.837600000202656 ], [ 363510.422600001096725, 257786.626400001347065 ], [ 363507.175800003111362, 257789.13289999961853 ], [ 363504.728100001811981, 257792.49040000140667 ], [ 363503.905599996447563, 257794.383499998599291 ], [ 363502.948299996554852, 257812.107500001788139 ], [ 363537.610699996352196, 257813.446699999272823 ], [ 363518.527099996805191, 257781.837600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104038900", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-121", "ACRE": "0.15", "LONGITUDE": -64.88606459, "LATITUDE": 18.34924139, "OBJECTID_1": 6918, "PARCEL_NO_": "103104038900", "Tax_Legal_": "ANNAS RETREAT 394-121 NEW QTR", "Name": "SAMUEL, SELDEN & LISA", "Address": "394-233 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 156300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.490742746, "SHAPE_Area": 615.21517255799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363551.454700000584126, 257797.5168999992311 ], [ 363533.109099999070168, 257773.935400001704693 ], [ 363518.527099996805191, 257781.837600000202656 ], [ 363537.610699996352196, 257813.446699999272823 ], [ 363551.454700000584126, 257797.5168999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103045300", "MAP": "C9-229-T78", "PARCEL_NAM": "260-4", "ACRE": "0.25", "LONGITUDE": -64.89530151, "LATITUDE": 18.34924806, "OBJECTID_1": 6672, "PARCEL_NO_": "103103045300", "Tax_Legal_": "ANNAS RETREAT 260-4 NEW QTR", "Name": "PETRUS, EFFIELD", "Address": "PO Box 502663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 38900, "Improved_V": 136900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.21507915399999, "SHAPE_Area": 1140.7314881499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362578.39019999653101, 257771.398800000548363 ], [ 362547.0050999969244, 257763.964699998497963 ], [ 362539.449799999594688, 257798.944400001317263 ], [ 362571.652000002563, 257805.118599999696016 ], [ 362578.39019999653101, 257771.398800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103046500", "MAP": "C9-229-T78", "PARCEL_NAM": "260-N", "ACRE": "0.28", "LONGITUDE": -64.89269106, "LATITUDE": 18.34923554, "OBJECTID_1": 6684, "PARCEL_NO_": "103103046500", "Tax_Legal_": "ANNAS RETREAT 260-N NEW QTR", "Name": "FRETT, ROY & CLAUDIA", "Address": "260-N Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40400, "Improved_V": 17000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.002409876, "SHAPE_Area": 1353.14975392 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362834.095499999821186, 257761.248199999332428 ], [ 362806.351800002157688, 257799.651200000196695 ], [ 362808.709600001573563, 257806.847699999809265 ], [ 362857.19990000128746, 257794.156800001859665 ], [ 362859.636799998581409, 257792.065799999982119 ], [ 362861.332099996507168, 257782.36939999833703 ], [ 362854.145400002598763, 257774.077899999916553 ], [ 362847.739900000393391, 257768.748100001364946 ], [ 362834.095499999821186, 257761.248199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204022800", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".24", "LONGITUDE": -64.87254065, "LATITUDE": 18.34918492, "OBJECTID_1": 7160, "PARCEL_NO_": "103204022800", "Tax_Legal_": "FRYDENDAHL 56-14 EAST END QTR.", "Name": "SMITH (LIFE ESTATE), DOLCIE I", "Address": "56-14 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30200, "Improved_V": 108700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.17010152099999, "SHAPE_Area": 1071.1146932700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364987.477399997413158, 257811.592099998146296 ], [ 364958.795400001108646, 257770.827399998903275 ], [ 364942.534299999475479, 257786.526299998164177 ], [ 364969.626999996602535, 257824.5337999984622 ], [ 364987.477399997413158, 257811.592099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037200", "MAP": "D9-1577--T80", "PARCEL_NAM": "304", "ACRE": null, "LONGITUDE": -64.89994723, "LATITUDE": 18.34923258, "OBJECTID_1": 6192, "PARCEL_NO_": "103004037200", "Tax_Legal_": "304 WINTBERG NO.3 GREAT NORTHSIDE QTR.", "Name": "TURNER -SHIELDS, JACKIE E. S.", "Address": "400 N Rolling Rd", "City": "Catonsville", "State": "Maryland", "Zip": 21228, "Country": "United States", "Land_Value": 83300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.205181186, "SHAPE_Area": 1506.93255841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362096.20269999653101, 257768.929900001734495 ], [ 362068.087899997830391, 257756.245299998670816 ], [ 362066.426700003445148, 257761.93129999935627 ], [ 362060.7466000020504, 257766.106600001454353 ], [ 362057.51410000026226, 257766.924600001424551 ], [ 362051.875299997627735, 257766.245099999010563 ], [ 362047.062600001692772, 257763.250399999320507 ], [ 362041.175700001418591, 257791.69990000128746 ], [ 362080.620300002396107, 257799.622099999338388 ], [ 362096.20269999653101, 257768.929900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87166531, "LATITUDE": 18.34914353, "OBJECTID_1": 7098, "PARCEL_NO_": "103204014700", "Tax_Legal_": "FRYDENDAHL 56-73 EAST END QTR.", "Name": "JAMES, VONNIE", "Address": "P. O. BOX 10704", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32200, "Improved_V": 198800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.830300943, "SHAPE_Area": 1436.8034086 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365069.661899998784065, 257819.230799999088049 ], [ 365074.880999997258186, 257774.521699998527765 ], [ 365057.181699998676777, 257769.732799999415874 ], [ 365053.141199998557568, 257770.755199998617172 ], [ 365034.477300003170967, 257784.534600000828505 ], [ 365053.497900001704693, 257823.531500000506639 ], [ 365069.661899998784065, 257819.230799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003035200", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".46", "LONGITUDE": -64.90933273, "LATITUDE": 18.34905452, "OBJECTID_1": 5848, "PARCEL_NO_": "103003035200", "Tax_Legal_": "WINTBERG 1 143 39\nGREAT NORTHSIDE QTR", "Name": "GORING, ATHLONE", "Address": "PO Box 302662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.273344057, "SHAPE_Area": 2616.0884158700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361104.44200000166893, 257760.390700001269579 ], [ 361108.781000003218651, 257724.329199999570847 ], [ 361103.937799997627735, 257724.922800000756979 ], [ 361043.390600003302097, 257733.082100000232458 ], [ 361055.923000000417233, 257776.45890000090003 ], [ 361055.816899999976158, 257788.912500001490116 ], [ 361104.44200000166893, 257760.390700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034900", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".35", "LONGITUDE": -64.90783948000001, "LATITUDE": 18.34905679, "OBJECTID_1": 5845, "PARCEL_NO_": "103003034900", "Tax_Legal_": "WINTBERG 1-143-28 GR NORTHSIDE QTR", "Name": "LLOYD, RICHARD & HERMAN", "Address": "PO Box 7728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36500, "Improved_V": 695700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.49723366200001, "SHAPE_Area": 1719.6068594799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361226.762299999594688, 257789.467199999839067 ], [ 361231.679300002753735, 257780.219399999827147 ], [ 361239.006300002336502, 257772.046700000762939 ], [ 361243.874700002372265, 257768.497900001704693 ], [ 361251.972000002861023, 257764.553399998694658 ], [ 361253.611599996685982, 257761.400499999523163 ], [ 361254.532999999821186, 257747.897999998182058 ], [ 361252.981499999761581, 257740.708099998533726 ], [ 361248.237099997699261, 257729.692400000989437 ], [ 361240.265699997544289, 257718.861400000751019 ], [ 361213.439800001680851, 257744.184200000017881 ], [ 361221.942400000989437, 257787.316899999976158 ], [ 361226.762299999594688, 257789.467199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203024100", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".48", "LONGITUDE": -64.87535858, "LATITUDE": 18.34900482, "OBJECTID_1": 7040, "PARCEL_NO_": "103203024100", "Tax_Legal_": "FRYDENDAHL 55B\nEASTEND QTR", "Name": "ALLIANCE POINT ENTERPRISE LLC", "Address": "PO Box 631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60400, "Improved_V": 276300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.636947518, "SHAPE_Area": 1703.26316367 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364685.592100001871586, 257752.548200000077486 ], [ 364697.173600003123283, 257718.2347999997437 ], [ 364694.738499999046326, 257720.114700000733137 ], [ 364677.62610000371933, 257741.083999998867512 ], [ 364639.261900000274181, 257795.65430000051856 ], [ 364662.459799997508526, 257817.586800001561642 ], [ 364664.077799998223782, 257816.96680000051856 ], [ 364685.592100001871586, 257752.548200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87066506, "LATITUDE": 18.34916744, "OBJECTID_1": 7103, "PARCEL_NO_": "103204015200", "Tax_Legal_": "FRYDENDAHL 56-70 EAST END QUARTER", "Name": "REGISTE, CATHERINE", "Address": "6514 ESTATE NAZARETH 2W 29", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40800, "Improved_V": 32900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.79141280499999, "SHAPE_Area": 899.63262360900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365175.299699999392033, 257818.82880000025034 ], [ 365176.417099997401237, 257782.318799998611212 ], [ 365149.808700002729893, 257782.100999999791384 ], [ 365141.679099999368191, 257789.844900000840425 ], [ 365167.211400002241135, 257821.717999998480082 ], [ 365175.299699999392033, 257818.82880000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103046100", "MAP": "C9-229-T78", "PARCEL_NAM": "260-65", "ACRE": "0.30", "LONGITUDE": -64.89400699, "LATITUDE": 18.34919639, "OBJECTID_1": 6680, "PARCEL_NO_": "103103046100", "Tax_Legal_": "ANNAS RETREAT 260-65 NEW QTR", "Name": "ROBINSON, LEROY & HUGHES, PATR", "Address": "18 ANNAS FANCY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44600, "Improved_V": 238000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.26169034599999, "SHAPE_Area": 1113.49795483 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362717.025600001215935, 257778.444099999964237 ], [ 362698.604500003159046, 257763.727800000458956 ], [ 362691.380000002682209, 257759.868999999016523 ], [ 362683.33669999986887, 257757.481199998408556 ], [ 362675.80290000140667, 257789.92790000140667 ], [ 362710.382700003683567, 257800.976700000464916 ], [ 362717.025600001215935, 257778.444099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203023900", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".30", "LONGITUDE": -64.87513607, "LATITUDE": 18.34911134, "OBJECTID_1": 7038, "PARCEL_NO_": "103203023900", "Tax_Legal_": "FRYDENDAHL 12BA-1 EAST END QTR", "Name": "DAVIS, UNA, PAMELA & WILLARD", "Address": "148 Jerome St", "City": "Medford", "State": "Massachusetts", "Zip": 2155, "Country": "United States", "Land_Value": 42300, "Improved_V": 162200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.00271676899999, "SHAPE_Area": 1582.84541268 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364664.077799998223782, 257816.96680000051856 ], [ 364680.266999997198582, 257809.710999999195337 ], [ 364721.518399998545647, 257794.849899999797344 ], [ 364685.592100001871586, 257752.548200000077486 ], [ 364664.077799998223782, 257816.96680000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90192222, "LATITUDE": 18.34912107, "OBJECTID_1": 6188, "PARCEL_NO_": "103004036800", "Tax_Legal_": "311 ESTATE WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "SBA TOWERS USVI INC", "Address": "8051 Congress Ave", "City": "Boca Raton", "State": "Florida", "Zip": 33487, "Country": "United States", "Land_Value": 140500, "Improved_V": 314000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.23160209400001, "SHAPE_Area": 1597.7352277800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361892.085199996829033, 257781.40260000154376 ], [ 361848.941699996590614, 257734.397799998521805 ], [ 361826.141999997198582, 257760.386799998581409 ], [ 361883.914200000464916, 257794.001299999654293 ], [ 361892.085199996829033, 257781.40260000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103045100", "MAP": "C9-229-T78", "PARCEL_NAM": "260-2", "ACRE": "0.25", "LONGITUDE": -64.89556218, "LATITUDE": 18.34920153, "OBJECTID_1": 6670, "PARCEL_NO_": "103103045100", "Tax_Legal_": "ANNAS RETREAT 260-2 NEW QTR", "Name": "MILLER, IOLANI & IRA H", "Address": "PO Box 502476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 34200, "Improved_V": 186000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.21428993400001, "SHAPE_Area": 850.01593733599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362544.589800000190735, 257763.522799998521805 ], [ 362524.462499998509884, 257759.769400000572205 ], [ 362515.296400003135204, 257794.524900000542402 ], [ 362539.449799999594688, 257798.944400001317263 ], [ 362547.0050999969244, 257763.964699998497963 ], [ 362544.589800000190735, 257763.522799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87142792, "LATITUDE": 18.34916905, "OBJECTID_1": 7099, "PARCEL_NO_": "103204014800", "Tax_Legal_": "FRYDENDAHL 56-72 EAST END QTR.", "Name": "BESS, LORRAINE A", "Address": "1348 W St SE", "City": "Washington", "State": "District of Columbia", "Zip": 20020, "Country": "United States", "Land_Value": 46500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.875160587, "SHAPE_Area": 855.20805338000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365095.800200000405312, 257779.970199998468161 ], [ 365074.880999997258186, 257774.521699998527765 ], [ 365069.661899998784065, 257819.230799999088049 ], [ 365089.835900001227856, 257817.496100001037121 ], [ 365095.800200000405312, 257779.970199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204020700", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".24", "LONGITUDE": -64.87303652, "LATITUDE": 18.34915091, "OBJECTID_1": 7140, "PARCEL_NO_": "103204020700", "Tax_Legal_": "56-43 ESTATE FRYDENDAHL EAST END QTR.", "Name": "JACQUES, ZEPHANIAH(TRUSTEE)", "Address": "PO Box 8171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.88380386700001, "SHAPE_Area": 1109.5817299099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364938.468599997460842, 257790.503800000995398 ], [ 364907.981499999761581, 257772.311299998313189 ], [ 364905.524800002574921, 257776.724199999123812 ], [ 364899.82490000128746, 257783.221400000154972 ], [ 364892.519500002264977, 257788.861200001090765 ], [ 364887.661899998784065, 257791.143399998545647 ], [ 364910.013899996876717, 257817.713100001215935 ], [ 364918.957000002264977, 257809.131400000303984 ], [ 364938.468599997460842, 257790.503800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036300", "MAP": "C9-118-T71", "PARCEL_NAM": "341", "ACRE": "0.51", "LONGITUDE": -64.9032187, "LATITUDE": 18.34906037, "OBJECTID_1": 6183, "PARCEL_NO_": "103004036300", "Tax_Legal_": "341 ESTATE WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "THE SAUTER-FRETT FAMILY TRUST", "Address": "PO Box 301738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51400, "Improved_V": 308900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.207022671, "SHAPE_Area": 2103.8838050700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361693.993100002408028, 257749.172800000756979 ], [ 361722.662500001490116, 257791.41499999910593 ], [ 361723.69030000269413, 257793.235300000756979 ], [ 361735.601000003516674, 257780.229299999773502 ], [ 361746.416500002145767, 257768.181699998676777 ], [ 361754.767700001597404, 257759.419799998402596 ], [ 361753.586499996483326, 257758.31529999896884 ], [ 361720.779399998486042, 257728.493700001388788 ], [ 361716.297399997711182, 257725.193599998950958 ], [ 361709.178400002419949, 257731.491200000047684 ], [ 361702.469999998807907, 257736.693599998950958 ], [ 361691.517700001597404, 257744.907900001853704 ], [ 361693.993100002408028, 257749.172800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003035000", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".40", "LONGITUDE": -64.90820703, "LATITUDE": 18.34910089, "OBJECTID_1": 5846, "PARCEL_NO_": "103003035000", "Tax_Legal_": "WINTBERG 1-143-27 GREAT NORTHSIDE", "Name": "LLOYD, HERMAN A & MAUDE W", "Address": "PO Box 9039", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.819922604, "SHAPE_Area": 1819.5178244700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361213.439800001680851, 257744.184200000017881 ], [ 361186.161899998784065, 257727.91780000180006 ], [ 361173.111599996685982, 257745.331799998879433 ], [ 361167.381099998950958, 257755.417399998754263 ], [ 361165.725299999117851, 257760.470100000500679 ], [ 361164.098300002515316, 257762.145500000566244 ], [ 361194.6266999989748, 257775.483199998736382 ], [ 361221.942400000989437, 257787.316899999976158 ], [ 361213.439800001680851, 257744.184200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87709633, "LATITUDE": 18.34923479, "OBJECTID_1": 7025, "PARCEL_NO_": "103203022400", "Tax_Legal_": "FRYDENDAHL 53-14 EAST END QTR", "Name": "BELLOT, ROBINSON & D. R", "Address": "PO Box 10045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 78400, "Improved_V": 195800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.45617816399999, "SHAPE_Area": 1856.11055012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364525.605999998748302, 257790.713300000876188 ], [ 364511.101400002837181, 257789.539099998772144 ], [ 364457.135999999940395, 257782.342399999499321 ], [ 364443.97070000320673, 257813.265399999916553 ], [ 364514.130599997937679, 257812.573100000619888 ], [ 364525.605999998748302, 257790.713300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103047000", "MAP": "G9-2919-T79", "PARCEL_NAM": "260-81", "ACRE": ".28", "LONGITUDE": -64.89291319, "LATITUDE": 18.34909161, "OBJECTID_1": 6689, "PARCEL_NO_": "103103047000", "Tax_Legal_": "ANNAS RETREAT 260-79 NEW QTR", "Name": "ARTHUR LEE JAMISON SR. AS TRUSTEE OF THE ALJ TRUST", "Address": "PO Box 7745", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59200, "Improved_V": 141600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.13549706000001, "SHAPE_Area": 1017.8391666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362834.095499999821186, 257761.248199999332428 ], [ 362805.178000003099442, 257748.134799998253584 ], [ 362794.582599997520447, 257761.346999999135733 ], [ 362806.351800002157688, 257799.651200000196695 ], [ 362834.095499999821186, 257761.248199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204015300", "MAP": null, "PARCEL_NAM": "56-69", "ACRE": null, "LONGITUDE": -64.87034803, "LATITUDE": 18.34917154, "OBJECTID_1": 7104, "PARCEL_NO_": "103204015300", "Tax_Legal_": "FRYDENDAHL 56-69 EAST END QTR.", "Name": "JOSEPH, CORTWRIGHT & MONICA", "Address": "PO Box 12395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36100, "Improved_V": 119900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.457828877, "SHAPE_Area": 1193.32182192 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365175.299699999392033, 257818.82880000025034 ], [ 365237.572700001299381, 257797.384799998253584 ], [ 365220.67790000140667, 257792.813499998301268 ], [ 365198.153300002217293, 257786.507500000298023 ], [ 365195.755999997258186, 257783.954700000584126 ], [ 365192.543300002813339, 257782.450800001621246 ], [ 365176.417099997401237, 257782.318799998611212 ], [ 365175.299699999392033, 257818.82880000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104034500", "MAP": "D9-2951-T85", "PARCEL_NAM": "123C", "ACRE": "1.03", "LONGITUDE": -64.88539791, "LATITUDE": 18.34911819, "OBJECTID_1": 6880, "PARCEL_NO_": "103104034500", "Tax_Legal_": "ANNAS RETREAT 123C NEW QTR.", "Name": "GARDNER, LEO & SHIRLEY", "Address": "6768 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.472629971, "SHAPE_Area": 3253.0358132699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363606.811599999666214, 257744.571699999272823 ], [ 363583.208400003612041, 257761.679800000041723 ], [ 363562.039200000464916, 257785.571199998259544 ], [ 363586.057800002396107, 257805.821699999272823 ], [ 363640.930200003087521, 257801.204500000923872 ], [ 363641.048900000751019, 257787.273299999535084 ], [ 363639.553099997341633, 257773.53999999910593 ], [ 363635.595299996435642, 257764.852800000458956 ], [ 363632.406000003218651, 257760.604800000786781 ], [ 363627.604099996387959, 257756.343600001186132 ], [ 363606.811599999666214, 257744.571699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87649653, "LATITUDE": 18.34924589, "OBJECTID_1": 7023, "PARCEL_NO_": "103203022200", "Tax_Legal_": "FRYDENDAHL 53-16 EAST END QTR.", "Name": "DE GRAFF, DWAYNE M", "Address": "PO Box 307593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.16075900600001, "SHAPE_Area": 1134.0094273699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364564.935500003397465, 257812.144600000232458 ], [ 364581.255999997258186, 257789.480000000447035 ], [ 364551.40259999781847, 257791.557700000703335 ], [ 364525.605999998748302, 257790.713300000876188 ], [ 364514.130599997937679, 257812.573100000619888 ], [ 364564.935500003397465, 257812.144600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87114274, "LATITUDE": 18.34915113, "OBJECTID_1": 7100, "PARCEL_NO_": "103204014900", "Tax_Legal_": "FRYDENDAHL 56-71 EAST END QTR.", "Name": "MOSCOSCO, F. & THOMAS, C", "Address": "P.O. BOX 4223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.480316397, "SHAPE_Area": 1202.0909763499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365149.808700002729893, 257782.100999999791384 ], [ 365119.15990000218153, 257782.905600000172853 ], [ 365095.800200000405312, 257779.970199998468161 ], [ 365089.835900001227856, 257817.496100001037121 ], [ 365102.747699998319149, 257816.335200000554323 ], [ 365141.679099999368191, 257789.844900000840425 ], [ 365149.808700002729893, 257782.100999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103050200", "MAP": "G9-3034-T80", "PARCEL_NAM": "215-189", "ACRE": ".152", "LONGITUDE": -64.89219476, "LATITUDE": 18.34918236, "OBJECTID_1": 6721, "PARCEL_NO_": "103103050200", "Tax_Legal_": "ANNAS RETREAT 215-189 NEW QTR.", "Name": "GUMBS, ELIZABETH & ANDREA & BINTA OLIVER & LIONEL SELWOOD", "Address": "4215 Annas Retreat NO. 272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 130100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.99437315, "SHAPE_Area": 830.18602152799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362891.338299997150898, 257762.350000001490116 ], [ 362888.100500002503395, 257763.801100000739098 ], [ 362886.531000003218651, 257758.721999999135733 ], [ 362867.849200002849102, 257774.612199999392033 ], [ 362870.233900003135204, 257778.642499998211861 ], [ 362885.39919999986887, 257796.920699998736382 ], [ 362887.803800001740456, 257798.629099998623133 ], [ 362892.641599997878075, 257798.668699998408556 ], [ 362906.410099998116493, 257791.604200001806021 ], [ 362891.338299997150898, 257762.350000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104042500", "MAP": "F9-1020-T62", "PARCEL_NAM": "14-1", "ACRE": null, "LONGITUDE": -64.88358785, "LATITUDE": 18.34893165, "OBJECTID_1": 6951, "PARCEL_NO_": "103104042500", "Tax_Legal_": "ANNAS RETREAT 14-1 NEW QTR.", "Name": "ELLIOTT, CECIL S. & ROSELYN E. (CO-TRUSTEES)", "Address": "6698 Estate Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82500, "Improved_V": 274600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.96942133599998, "SHAPE_Area": 3412.7175584500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363773.968800000846386, 257752.607200000435114 ], [ 363771.456699997186661, 257813.798599999397993 ], [ 363773.066500000655651, 257813.896099999547005 ], [ 363774.695299997925758, 257812.00959999859333 ], [ 363778.755699999630451, 257808.665399998426437 ], [ 363782.812399998307228, 257805.743200000375509 ], [ 363795.00959999859333, 257793.810699999332428 ], [ 363815.307700000703335, 257777.511599998921156 ], [ 363835.141800001263618, 257765.030000001192093 ], [ 363834.760999999940395, 257764.884199999272823 ], [ 363808.171400003135204, 257719.530699998140335 ], [ 363802.717299997806549, 257711.644999999552965 ], [ 363800.672200001776218, 257708.688000001013279 ], [ 363796.235100001096725, 257715.964899998158216 ], [ 363790.931599996984005, 257719.967500001192093 ], [ 363788.429899998009205, 257723.26969999819994 ], [ 363784.727399997413158, 257729.373799998313189 ], [ 363784.855800002813339, 257732.460900001227856 ], [ 363783.423799999058247, 257733.976399999111891 ], [ 363780.981499999761581, 257736.700699999928474 ], [ 363777.691500000655651, 257744.27309999987483 ], [ 363773.968800000846386, 257752.607200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87596432, "LATITUDE": 18.34921986, "OBJECTID_1": 7021, "PARCEL_NO_": "103203022000", "Tax_Legal_": "FRYDENDAHL 53-18 EAST END QTR.", "Name": "JOHN, ALBERT", "Address": "PO Box 1676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 69500, "Improved_V": 242700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.49400257299999, "SHAPE_Area": 1417.7452527200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364620.578299999237061, 257811.75560000166297 ], [ 364635.269900001585484, 257790.977600000798702 ], [ 364635.305900000035763, 257786.756000000983477 ], [ 364632.913900002837181, 257783.570000000298023 ], [ 364628.083200000226498, 257782.686099998652935 ], [ 364609.505699999630451, 257786.333700001239777 ], [ 364581.255999997258186, 257789.480000000447035 ], [ 364564.935500003397465, 257812.144600000232458 ], [ 364620.578299999237061, 257811.75560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103044900", "MAP": "D9-2031-T82", "PARCEL_NAM": "256", "ACRE": ".25", "LONGITUDE": -64.89585009, "LATITUDE": 18.34916506, "OBJECTID_1": 6668, "PARCEL_NO_": "103103044900", "Tax_Legal_": "ANNAS RETREAT 256 NEW QTR", "Name": "STAPLETON, EDWIN & MURIEL", "Address": "PO Box 7011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40400, "Improved_V": 293400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.803245538, "SHAPE_Area": 1227.5503963399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362484.241999998688698, 257757.098400000482798 ], [ 362479.999300003051758, 257788.192400000989437 ], [ 362515.296400003135204, 257794.524900000542402 ], [ 362523.871799997985363, 257762.009100001305342 ], [ 362484.241999998688698, 257757.098400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88426915, "LATITUDE": 18.3491568, "OBJECTID_1": 6934, "PARCEL_NO_": "103104040800", "Tax_Legal_": "ANNAS RETREAT 394-5 NEW QTR", "Name": "CULPEPPER, DUFFERIN C. & EUPHELIA MARK", "Address": "6725 Cow Hollow Dr", "City": "Charlotte", "State": "North Carolina", "Zip": 28226, "Country": "United States", "Land_Value": 25200, "Improved_V": 187700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.441761907, "SHAPE_Area": 739.29657895000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363741.758799999952316, 257797.38569999858737 ], [ 363728.310400001704693, 257766.878100000321865 ], [ 363725.13910000026226, 257760.519400000572205 ], [ 363707.204199999570847, 257783.381799999624491 ], [ 363728.796700000762939, 257804.456799998879433 ], [ 363736.087600000202656, 257800.505699999630451 ], [ 363741.758799999952316, 257797.38569999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024000", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-57", "ACRE": ".36", "LONGITUDE": -64.90657277, "LATITUDE": 18.34910724, "OBJECTID_1": 6111, "PARCEL_NO_": "103004024000", "Tax_Legal_": "WINTBERG 1-143-57 3 GR NORTHSIDE QTR", "Name": "HARDING, JOHN E. & DOLORES", "Address": "PO Box 1342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37500, "Improved_V": 243700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.07464829599999, "SHAPE_Area": 1570.2498757599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361386.644199997186661, 257763.544700000435114 ], [ 361376.475000001490116, 257726.731199998408556 ], [ 361344.807599999010563, 257752.436599999666214 ], [ 361351.877400003373623, 257774.448100000619888 ], [ 361353.475699998438358, 257776.149999998509884 ], [ 361355.844200000166893, 257782.079999998211861 ], [ 361358.239799998700619, 257784.843800000846386 ], [ 361390.569600000977516, 257776.031399998813868 ], [ 361386.644199997186661, 257763.544700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204020800", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".27", "LONGITUDE": -64.87369224, "LATITUDE": 18.34906483, "OBJECTID_1": 7141, "PARCEL_NO_": "103204020800", "Tax_Legal_": "FRYDENDAHL 12B-5 EAST END QTR.", "Name": "SKELTON, SAMUEL & ERNESTINE", "Address": "PO Box 502956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 33300, "Improved_V": 21500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.961809832, "SHAPE_Area": 1739.0051523100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364869.890600003302097, 257794.797699999064207 ], [ 364852.471799999475479, 257757.08049999922514 ], [ 364813.644799999892712, 257771.328099999576807 ], [ 364839.090700000524521, 257813.332899998873472 ], [ 364869.890600003302097, 257794.797699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023800", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-14", "ACRE": ".33", "LONGITUDE": -64.90734425, "LATITUDE": 18.34916073, "OBJECTID_1": 6109, "PARCEL_NO_": "103004023800", "Tax_Legal_": "WINTBERG 1-143-14 GR NORTHSIDE QTR", "Name": "BRUNN, TERRENCE A., JR. & ITALIA E. (TRUSTEES)", "Address": "PO Box 11262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34400, "Improved_V": 247200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.688284759, "SHAPE_Area": 1216.0706187200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361298.108000002801418, 257744.243900001049042 ], [ 361296.749499998986721, 257741.732099998742342 ], [ 361284.882200002670288, 257746.615699999034405 ], [ 361261.63400000333786, 257756.182700000703335 ], [ 361272.810199998319149, 257779.500500001013279 ], [ 361307.443899996578693, 257784.217000000178814 ], [ 361298.108000002801418, 257744.243900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023900", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-13", "ACRE": ".31", "LONGITUDE": -64.90701936000001, "LATITUDE": 18.34912356, "OBJECTID_1": 6110, "PARCEL_NO_": "103004023900", "Tax_Legal_": "WINTBERG 1-143-13 3 GR NORTHSIDE QTR", "Name": "BRUNN, TERRENCE A., JR. & ITALIA E. (TRUSTEES)", "Address": "PO Box 11262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32300, "Improved_V": 243600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.919288693, "SHAPE_Area": 1402.1056388100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361334.119099996984005, 257737.700699999928474 ], [ 361298.578900001943111, 257746.260200001299381 ], [ 361307.443899996578693, 257784.217000000178814 ], [ 361343.817900002002716, 257773.96000000089407 ], [ 361337.532799996435642, 257754.487900000065565 ], [ 361334.119099996984005, 257737.700699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104031800", "MAP": "A9-167I-T71", "PARCEL_NAM": "394-263", "ACRE": ".285", "LONGITUDE": -64.88828884, "LATITUDE": 18.34913377, "OBJECTID_1": 6853, "PARCEL_NO_": "103104031800", "Tax_Legal_": "ANNAS RETREAT 394-263 NEW QTR", "Name": "WILLIAMS, IVAN & CLAUDINE", "Address": "394-263 ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 166700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.91309243699999, "SHAPE_Area": 1381.6342384100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363304.258400000631809, 257755.385899998247623 ], [ 363301.906999997794628, 257752.0439000017941 ], [ 363293.333800002932549, 257756.636300001293421 ], [ 363285.913527010241523, 257760.586010363069363 ], [ 363278.389399997889996, 257764.334100000560284 ], [ 363279.163800001144409, 257766.790699999779463 ], [ 363289.370800003409386, 257799.171500001102686 ], [ 363319.202500000596046, 257799.626800000667572 ], [ 363318.500500001013279, 257787.377599999308586 ], [ 363320.989600002765656, 257779.165300000458956 ], [ 363304.258400000631809, 257755.385899998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104032100", "MAP": "D9-695-T68", "PARCEL_NAM": "125D", "ACRE": ".23", "LONGITUDE": -64.88763886, "LATITUDE": 18.34912455, "OBJECTID_1": 6856, "PARCEL_NO_": "103104032100", "Tax_Legal_": "ANNAS RETREAT 125D NEW QUARTER", "Name": "CALLWOOD, KEITH", "Address": "PO Box 502431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32900, "Improved_V": 275700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.086052169, "SHAPE_Area": 1227.1070351000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363380.005599997937679, 257756.734099999070168 ], [ 363379.1233000010252, 257753.645799998193979 ], [ 363374.804644590534735, 257754.929434777557617 ], [ 363370.572400003671646, 257756.474300000816584 ], [ 363352.463799998164177, 257763.371700000017881 ], [ 363352.597099997103214, 257767.296000000089407 ], [ 363353.684900000691414, 257799.322000000625849 ], [ 363353.706399999558926, 257799.954300001263618 ], [ 363353.873999997973442, 257799.910599999129772 ], [ 363388.606499999761581, 257793.017599999904633 ], [ 363381.610500000417233, 257762.351799998432398 ], [ 363380.005599997937679, 257756.734099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104031200", "MAP": "A9-167I-71", "PARCEL_NAM": "394-264", "ACRE": ".166", "LONGITUDE": -64.88855503000001, "LATITUDE": 18.34918602, "OBJECTID_1": 6847, "PARCEL_NO_": "103104031200", "Tax_Legal_": "ANNAS RETREAT 394-264 NEW QTR", "Name": "JOHN WHITE, LOUISE WHITE & CHARLENE M WHITE-HEWITT", "Address": "PO Box 9414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012414, "Country": "United States", "Land_Value": 21300, "Improved_V": 122400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.74419714299999, "SHAPE_Area": 795.55849241299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363289.370800003409386, 257799.171500001102686 ], [ 363279.163800001144409, 257766.790699999779463 ], [ 363278.389399997889996, 257764.334100000560284 ], [ 363273.093099996447563, 257766.822799999266863 ], [ 363270.30620746355271, 257767.732010956853628 ], [ 363267.411564870679285, 257768.195129532046849 ], [ 363264.480114318896085, 257768.200805582775502 ], [ 363261.583700001239777, 257767.7489 ], [ 363258.910599999129772, 257767.607799999415874 ], [ 363258.971799999475479, 257770.636199999600649 ], [ 363259.538999997079372, 257798.716299999505281 ], [ 363267.602099999785423, 257798.782299999147654 ], [ 363289.370800003409386, 257799.171500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104031000", "MAP": "A9-167I-71", "PARCEL_NAM": "394-266", "ACRE": ".161", "LONGITUDE": -64.88900872000001, "LATITUDE": 18.34916164, "OBJECTID_1": 6845, "PARCEL_NO_": "103104031000", "Tax_Legal_": "ANNAS RETREAT 394-266 NEW QTR", "Name": "FOY, HELEN", "Address": "PO Box 7031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 103800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.585892628, "SHAPE_Area": 768.213235188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363213.070600003004074, 257763.385400000959635 ], [ 363213.038999997079372, 257767.093899998813868 ], [ 363212.774700000882149, 257798.122400000691414 ], [ 363222.450400002300739, 257798.20160000026226 ], [ 363233.738799996674061, 257798.293999999761581 ], [ 363237.214000001549721, 257768.980500001460314 ], [ 363237.532999999821186, 257766.289799999445677 ], [ 363229.427230564586353, 257764.93981797946617 ], [ 363221.267126743274275, 257763.970975775533589 ], [ 363213.070600003004074, 257763.385400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104031100", "MAP": "A9-167I-71", "PARCEL_NAM": "394-265", "ACRE": ".146", "LONGITUDE": -64.8887894, "LATITUDE": 18.349181, "OBJECTID_1": 6846, "PARCEL_NO_": "103104031100", "Tax_Legal_": "ANNAS RETREAT 394-265 NEW QTR", "Name": "PICKERING, AUBREY & P", "Address": "394-265 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18800, "Improved_V": 138700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.566099851, "SHAPE_Area": 746.51813301799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363237.532999999821186, 257766.289799999445677 ], [ 363237.214000001549721, 257768.980500001460314 ], [ 363233.738799996674061, 257798.293999999761581 ], [ 363246.637999996542931, 257798.610700000077486 ], [ 363259.538999997079372, 257798.716299999505281 ], [ 363258.971799999475479, 257770.636199999600649 ], [ 363258.910599999129772, 257767.607799999415874 ], [ 363237.532999999821186, 257766.289799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030900", "MAP": "A9-167I-71", "PARCEL_NAM": "394-267", "ACRE": ".151", "LONGITUDE": -64.88921259, "LATITUDE": 18.34915419, "OBJECTID_1": 6844, "PARCEL_NO_": "103104030900", "Tax_Legal_": "394-267 ANNAS RETREAT NEW QUARTER", "Name": "WILKINSON, ERNESTINE A", "Address": "PO Box 502935", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18800, "Improved_V": 140400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.308392231, "SHAPE_Area": 712.38000652899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363189.819700002670288, 257763.814500000327826 ], [ 363190.453299999237061, 257767.964499998837709 ], [ 363195.035800002515316, 257797.977299999445677 ], [ 363212.774700000882149, 257798.122400000691414 ], [ 363213.038999997079372, 257767.093899998813868 ], [ 363213.070600003004074, 257763.385400000959635 ], [ 363201.438030616322067, 257763.214184109499911 ], [ 363189.819700002670288, 257763.814500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204022900", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".27", "LONGITUDE": -64.87237295, "LATITUDE": 18.34905412, "OBJECTID_1": 7161, "PARCEL_NO_": "103204022900", "Tax_Legal_": "FRYDENDAHL 56-15 EAST END QTR.", "Name": "CELESTINE, JOACHIM & V", "Address": "6552 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 245700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.03545694799999, "SHAPE_Area": 1206.9417019 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365006.947599999606609, 257797.819299999624491 ], [ 364977.462899997830391, 257756.625799998641014 ], [ 364969.363799996674061, 257760.781399998813868 ], [ 364958.795400001108646, 257770.827399998903275 ], [ 364987.477399997413158, 257811.592099998146296 ], [ 365006.947599999606609, 257797.819299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203015100", "MAP": "D9-1806-T81", "PARCEL_NAM": "2C", "ACRE": ".51", "LONGITUDE": -64.88266156, "LATITUDE": 18.34898863, "OBJECTID_1": 6991, "PARCEL_NO_": "103203015100", "Tax_Legal_": "TARBOR & HARMONY 2B&2C EAST END QTR", "Name": "JACKSON, NORMA", "Address": "PO BOX 303725", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.31417431200001, "SHAPE_Area": 2894.97366173 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363937.931900002062321, 257770.915800001472235 ], [ 363907.619300000369549, 257732.248700000345707 ], [ 363882.472599998116493, 257749.774700000882149 ], [ 363853.314000003039837, 257764.945900000631809 ], [ 363881.218500003218651, 257802.326799999922514 ], [ 363901.491400003433228, 257788.982700001448393 ], [ 363916.888599999248981, 257780.031700000166893 ], [ 363937.931900002062321, 257770.915800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103047000", "MAP": "C9-229-T78", "PARCEL_NAM": "260-79", "ACRE": "0.38", "LONGITUDE": -64.89325273, "LATITUDE": 18.34896185, "OBJECTID_1": 6689, "PARCEL_NO_": "103103047000", "Tax_Legal_": "ANNAS RETREAT 260-79 NEW QTR", "Name": "ARTHUR LEE JAMISON SR. AS TRUSTEE OF THE ALJ TRUST", "Address": "PO Box 7745", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59200, "Improved_V": 141600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.17746089600001, "SHAPE_Area": 1584.88840609 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362805.178000003099442, 257748.134799998253584 ], [ 362753.770000003278255, 257724.704799998551607 ], [ 362759.95610000193119, 257755.786200001835823 ], [ 362769.324400000274181, 257791.959899999201298 ], [ 362794.582599997520447, 257761.346999999135733 ], [ 362805.178000003099442, 257748.134799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104039000", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-122", "ACRE": "0.14", "LONGITUDE": -64.88586564000001, "LATITUDE": 18.34909701, "OBJECTID_1": 6919, "PARCEL_NO_": "103104039000", "Tax_Legal_": "ANNAS RETREAT 394-122 NEW QTR", "Name": "GIFFT, TYRONE", "Address": "PO Box 307294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20800, "Improved_V": 177800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.929902094, "SHAPE_Area": 779.29423582599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363583.208400003612041, 257761.679800000041723 ], [ 363577.600100003182888, 257757.412000000476837 ], [ 363576.75789999961853, 257761.627000000327826 ], [ 363574.322700001299381, 257763.506900001317263 ], [ 363552.523500002920628, 257766.706000000238419 ], [ 363533.109099999070168, 257773.935400001704693 ], [ 363551.454700000584126, 257797.5168999992311 ], [ 363562.039200000464916, 257785.571199998259544 ], [ 363583.208400003612041, 257761.679800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103045900", "MAP": "C9-229-T78", "PARCEL_NAM": "260-63", "ACRE": "0.28", "LONGITUDE": -64.89431693, "LATITUDE": 18.34911129, "OBJECTID_1": 6678, "PARCEL_NO_": "103103045900", "Tax_Legal_": "ANNAS RETREAT 260-63 NEW QTR", "Name": "GUMBS, LUCIEN & ANNETTE", "Address": "PO Box 8703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40400, "Improved_V": 275800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.00254202599999, "SHAPE_Area": 1121.3254284499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362683.33669999986887, 257757.481199998408556 ], [ 362650.331799998879433, 257750.878199998289347 ], [ 362643.593599997460842, 257784.598000001162291 ], [ 362675.80290000140667, 257789.92790000140667 ], [ 362683.33669999986887, 257757.481199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103050400", "MAP": "G9-3034-T80", "PARCEL_NAM": "215-190", "ACRE": ".149", "LONGITUDE": -64.8919952, "LATITUDE": 18.34909406, "OBJECTID_1": 6723, "PARCEL_NO_": "103103050400", "Tax_Legal_": "ANNAS RETREAT 215-190 NEW QTR.", "Name": "LEONARD, JOSEPH", "Address": "PO Box 7626", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18800, "Improved_V": 113200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.750398309, "SHAPE_Area": 767.58453998200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362906.410099998116493, 257791.604200001806021 ], [ 362925.682300001382828, 257779.479200001806021 ], [ 362913.200499996542931, 257751.763099998235703 ], [ 362891.35809999704361, 257760.028099998831749 ], [ 362891.338299997150898, 257762.350000001490116 ], [ 362906.410099998116493, 257791.604200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103044700", "MAP": "C9-229-T78", "PARCEL_NAM": "255", "ACRE": "0.54", "LONGITUDE": -64.8962, "LATITUDE": 18.349, "OBJECTID_1": 6666, "PARCEL_NO_": "103103044700", "Tax_Legal_": "ANNAS RETREAT 255 NEW QTR", "Name": "HENDRICKSON, O. E. & B", "Address": "PO Box 305736", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78900, "Improved_V": 266500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.60303469300001, "SHAPE_Area": 2252.5320148000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362447.331699997186661, 257726.840799998492002 ], [ 362441.10639999806881, 257781.028599999845028 ], [ 362475.8445999994874, 257787.447000000625849 ], [ 362479.999300003051758, 257788.192400000989437 ], [ 362484.241999998688698, 257757.098400000482798 ], [ 362487.816799998283386, 257730.89979999884963 ], [ 362481.976099997758865, 257730.290800001472235 ], [ 362447.331699997186661, 257726.840799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037000", "MAP": "A9-85-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90086569, "LATITUDE": 18.34886674, "OBJECTID_1": 6190, "PARCEL_NO_": "103004037000", "Tax_Legal_": "WINTBERG 307,308&309 GR NORTHSIDE QTR", "Name": "FLOWERS, ADAM & TESS RICHARDS", "Address": "PO Box 396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 166000, "Improved_V": 633200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.75865232500001, "SHAPE_Area": 3337.1718839700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361997.8074000030756, 257771.079900000244379 ], [ 361980.742899999022484, 257691.780200000852346 ], [ 361943.586000002920628, 257699.286499999463558 ], [ 361957.457599997520447, 257774.760499998927116 ], [ 362000.122100003063679, 257783.342300001531839 ], [ 361997.8074000030756, 257771.079900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88405794000001, "LATITUDE": 18.34905302, "OBJECTID_1": 6936, "PARCEL_NO_": "103104041000", "Tax_Legal_": "ANNAS RETREAT 394-6&7 NEW QTR", "Name": "JACOBS, REHALIO", "Address": "PO Box 8657", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45200, "Improved_V": 192100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.622689411, "SHAPE_Area": 993.33182768999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363760.392099998891354, 257787.194600000977516 ], [ 363761.437600001692772, 257759.127700001001358 ], [ 363759.070799998939037, 257752.986600000411272 ], [ 363756.680600002408028, 257749.589600000530481 ], [ 363728.310400001704693, 257766.878100000321865 ], [ 363741.758799999952316, 257797.38569999858737 ], [ 363760.392099998891354, 257787.194600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87824413, "LATITUDE": 18.34879494, "OBJECTID_1": 7032, "PARCEL_NO_": "103203023100", "Tax_Legal_": "FRYDENDAHL 53-10 EAST END QTR.", "Name": "WILLIAMS, L. & BELLOT, C", "Address": "PO Box 6851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.03078054600002, "SHAPE_Area": 4535.51200453 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364425.729400001466274, 257777.441300000995398 ], [ 364416.082400001585484, 257773.984900001436472 ], [ 364408.857900001108646, 257770.1261 ], [ 364399.239699997007847, 257763.292399998754263 ], [ 364391.2449000030756, 257755.205400001257658 ], [ 364385.669100001454353, 257747.138199999928474 ], [ 364368.099200002849102, 257727.151599999517202 ], [ 364349.706900000572205, 257709.058100000023842 ], [ 364339.296800002455711, 257700.529199998825788 ], [ 364332.853500001132488, 257699.631999999284744 ], [ 364328.812899999320507, 257700.654399998486042 ], [ 364305.314800001680851, 257713.972100000828505 ], [ 364381.170000001788139, 257801.985700000077486 ], [ 364425.729400001466274, 257777.441300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90161967, "LATITUDE": 18.34888618, "OBJECTID_1": 6189, "PARCEL_NO_": "103004036900", "Tax_Legal_": "WINTBERG 310 GT. NORTHSIDE", "Name": "SBA TOWERS USVI INC", "Address": "8051 Congress Ave", "City": "Boca Raton", "State": "Florida", "Zip": 33487, "Country": "United States", "Land_Value": 98000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.418873268, "SHAPE_Area": 3548.56755918 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361927.672600001096725, 257768.817200001329184 ], [ 361912.103799998760223, 257703.250700000673532 ], [ 361896.767700001597404, 257705.025100000202656 ], [ 361886.260499998927116, 257707.894400000572205 ], [ 361878.168600000441074, 257711.205600000917912 ], [ 361861.957800000905991, 257720.99439999833703 ], [ 361854.645199999213219, 257727.478399999439716 ], [ 361848.941699996590614, 257734.397799998521805 ], [ 361892.085199996829033, 257781.40260000154376 ], [ 361903.522799998521805, 257763.975499998778105 ], [ 361927.672600001096725, 257768.817200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104032300", "MAP": "D9-695-T68", "PARCEL_NAM": "125E", "ACRE": ".23", "LONGITUDE": -64.88731096, "LATITUDE": 18.34905801, "OBJECTID_1": 6858, "PARCEL_NO_": "103104032300", "Tax_Legal_": "ANNAS RETREAT 125E NEW QTR", "Name": "HODGE, CLOTHILDA", "Address": "707 E 242nd St", "City": "Bronx", "State": "New York", "Zip": 10470, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.75726413000001, "SHAPE_Area": 1601.7459235 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363388.606499999761581, 257793.017599999904633 ], [ 363402.333599999547005, 257790.80799999833107 ], [ 363412.009400002658367, 257790.887200001627207 ], [ 363422.478799998760223, 257792.450500000268221 ], [ 363425.934299997985363, 257765.458799999207258 ], [ 363425.947999998927116, 257762.710900001227856 ], [ 363425.970899999141693, 257758.110599998384714 ], [ 363411.212499998509884, 257751.87049999833107 ], [ 363406.146548681310378, 257750.842788091686089 ], [ 363400.992741190828383, 257750.444890035840217 ], [ 363395.829075806948822, 257750.682827662996715 ], [ 363390.73369999974966, 257751.552999999374151 ], [ 363384.886598339129705, 257752.36693867991562 ], [ 363379.1233000010252, 257753.645799998193979 ], [ 363380.005599997937679, 257756.734099999070168 ], [ 363381.610500000417233, 257762.351799998432398 ], [ 363388.606499999761581, 257793.017599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037900", "MAP": "D9-598-T66", "PARCEL_NAM": "1YA", "ACRE": ".45", "LONGITUDE": -64.9038478, "LATITUDE": 18.34893073, "OBJECTID_1": 6196, "PARCEL_NO_": "103004037900", "Tax_Legal_": "WINTBERG 1YA GR NORTHSIDE", "Name": "LEWIS, LISTON", "Address": "PO Box 305895", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49400, "Improved_V": 331800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.87395901299999, "SHAPE_Area": 1628.8099175 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361645.328699998557568, 257712.250500001013279 ], [ 361643.233300000429153, 257711.006000000983477 ], [ 361643.760300002992153, 257714.213100001215935 ], [ 361644.269599996507168, 257717.312899999320507 ], [ 361641.694200001657009, 257735.656899999827147 ], [ 361631.687600001692772, 257774.416200000792742 ], [ 361631.664200000464916, 257777.160300001502037 ], [ 361635.873199999332428, 257775.416799999773502 ], [ 361644.654200002551079, 257768.517400000244379 ], [ 361652.494400002062321, 257762.715700000524521 ], [ 361664.568199999630451, 257754.561900001019239 ], [ 361673.819600000977516, 257747.819400001317263 ], [ 361681.032600000500679, 257743.272100001573563 ], [ 361691.582299999892712, 257737.156300000846386 ], [ 361671.107600003480911, 257726.131499998271465 ], [ 361645.328699998557568, 257712.250500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103047200", "MAP": "C9-229-T78", "PARCEL_NAM": "260-14", "ACRE": "0.39", "LONGITUDE": -64.89360004, "LATITUDE": 18.34896164, "OBJECTID_1": 6691, "PARCEL_NO_": "103103047200", "Tax_Legal_": "ANNAS RETREAT 260-14 NEW QTR", "Name": "LA FRANQUE, EUGENIE", "Address": "PO Box 306616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60700, "Improved_V": 138600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.30781865700001, "SHAPE_Area": 1580.3758859 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362753.770000003278255, 257724.704799998551607 ], [ 362723.806900002062321, 257739.658300001174212 ], [ 362717.111900001764297, 257768.312300000339746 ], [ 362731.531999997794628, 257779.407200001180172 ], [ 362737.115000002086163, 257786.629999998956919 ], [ 362759.95610000193119, 257755.786200001835823 ], [ 362753.770000003278255, 257724.704799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103045700", "MAP": "C9-229-T78", "PARCEL_NAM": "260-61", "ACRE": "0.27", "LONGITUDE": -64.89462698, "LATITUDE": 18.34905751, "OBJECTID_1": 6676, "PARCEL_NO_": "103103045700", "Tax_Legal_": "ANNAS RETREAT 260-61 NEW QTR", "Name": "RAMSEY, XAVIA M", "Address": "PO Box 304127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42000, "Improved_V": 151800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.92366124, "SHAPE_Area": 1154.6015472900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362650.331799998879433, 257750.878199998289347 ], [ 362617.326899997889996, 257744.275299999862909 ], [ 362610.590499997138977, 257777.784000001847744 ], [ 362643.593599997460842, 257784.598000001162291 ], [ 362650.331799998879433, 257750.878199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003035100", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".40", "LONGITUDE": -64.9087781, "LATITUDE": 18.34899007, "OBJECTID_1": 5847, "PARCEL_NO_": "103003035100", "Tax_Legal_": "WINTBERG 1-143-40 GREAT NORTHSIDE QTR", "Name": "Coulianos, Katina", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43900, "Improved_V": 289700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.93946959, "SHAPE_Area": 2165.46375915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361171.590700000524521, 257734.553599998354912 ], [ 361127.347800001502037, 257721.947999998927116 ], [ 361108.781000003218651, 257724.329199999570847 ], [ 361104.44200000166893, 257760.390700001269579 ], [ 361116.536700002849102, 257760.489700000733137 ], [ 361130.226000003516674, 257762.712600000202656 ], [ 361143.092799998819828, 257766.828699998557568 ], [ 361152.730800002813339, 257771.340599998831749 ], [ 361154.391999997198582, 257765.654599998146296 ], [ 361156.022600002586842, 257763.557000000029802 ], [ 361156.038800001144409, 257761.657299999147654 ], [ 361160.145900003612041, 257752.824999999254942 ], [ 361171.590700000524521, 257734.553599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103044500", "MAP": "C9-229-T78", "PARCEL_NAM": "254", "ACRE": "0.54", "LONGITUDE": -64.8965603, "LATITUDE": 18.34895922, "OBJECTID_1": 6664, "PARCEL_NO_": "103103044500", "Tax_Legal_": "254 ANNAS RETREAT NEW QTR", "Name": "WILFRED N. TITLEY REVOC FAMILY TRUST & TROY TITLEY", "Address": "2411 Loch Haven Dr SE", "City": "Conyers", "State": "Georgia", "Zip": 30013, "Country": "United States", "Land_Value": 78900, "Improved_V": 272300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.79058879, "SHAPE_Area": 1929.7164579 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362442.497400000691414, 257726.379099998623133 ], [ 362413.493500001728535, 257723.39750000089407 ], [ 362402.587099999189377, 257773.126299999654293 ], [ 362436.39469999819994, 257780.157999999821186 ], [ 362441.10639999806881, 257781.028599999845028 ], [ 362447.331699997186661, 257726.840799998492002 ], [ 362442.497400000691414, 257726.379099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90120515, "LATITUDE": 18.34885198, "OBJECTID_1": 6190, "PARCEL_NO_": "103004037000", "Tax_Legal_": "WINTBERG 307,308&309 GR NORTHSIDE QTR", "Name": "FLOWERS, ADAM & TESS RICHARDS", "Address": "PO Box 396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 166000, "Improved_V": 633200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.23070732299999, "SHAPE_Area": 2145.7227565399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361943.586000002920628, 257699.286499999463558 ], [ 361912.103799998760223, 257703.250700000673532 ], [ 361927.672600001096725, 257768.817200001329184 ], [ 361957.457599997520447, 257774.760499998927116 ], [ 361943.586000002920628, 257699.286499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103050600", "MAP": "G9-3034-T80", "PARCEL_NAM": "215-193", "ACRE": ".159", "LONGITUDE": -64.89178972000001, "LATITUDE": 18.348992, "OBJECTID_1": 6725, "PARCEL_NO_": "103103050600", "Tax_Legal_": "ANNAS RETREAT 215-193 NEW QTR.", "Name": "LEROY A PETERSEN TRUST", "Address": "PO Box 10943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 123100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.30351882799999, "SHAPE_Area": 735.97961687400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362925.682300001382828, 257779.479200001806021 ], [ 362947.894100002944469, 257765.504799999296665 ], [ 362939.82490000128746, 257750.081199999898672 ], [ 362941.446599997580051, 257749.039000000804663 ], [ 362938.269900001585484, 257743.313499998301268 ], [ 362932.605899997055531, 257745.589099999517202 ], [ 362931.020199999213219, 257742.409800000488758 ], [ 362913.200499996542931, 257751.763099998235703 ], [ 362925.682300001382828, 257779.479200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204016900", "MAP": "A9-494-T96", "PARCEL_NAM": "B-7-A", "ACRE": ".299", "LONGITUDE": -64.86694471, "LATITUDE": 18.34901248, "OBJECTID_1": 7120, "PARCEL_NO_": "103204016900", "Tax_Legal_": "COKI POINT B-7-A,B-9,B-10 & B-11 EAST END #4A", "Name": "HEIRS OF CECILIA BIRCH KING", "Address": "PO Box 502283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 277600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.841281358, "SHAPE_Area": 1169.6395287800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365566.589599996805191, 257795.222500000149012 ], [ 365567.010200001299381, 257802.261399999260902 ], [ 365581.05460000038147, 257801.040399998426437 ], [ 365581.977799996733665, 257787.326900001615286 ], [ 365577.957099996507168, 257786.027399998158216 ], [ 365574.739000000059605, 257785.156700000166893 ], [ 365577.296400003135204, 257768.92339999973774 ], [ 365573.26129999756813, 257769.312600001692772 ], [ 365535.33219999819994, 257772.80180000141263 ], [ 365530.40259999781847, 257783.527300000190735 ], [ 365520.642300002276897, 257793.36879999935627 ], [ 365566.75, 257792.201999999582767 ], [ 365566.589599996805191, 257795.222500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204023000", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".26", "LONGITUDE": -64.87219835000001, "LATITUDE": 18.34893782, "OBJECTID_1": 7162, "PARCEL_NO_": "103204023000", "Tax_Legal_": "FRYDENDAHL 56-16 EAST END QTR.", "Name": "JOHNSON, IAN", "Address": "PO Box 307286", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.92124968, "SHAPE_Area": 1056.30668934 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364996.897100001573563, 257747.074499998241663 ], [ 364979.082699999213219, 257755.794700000435114 ], [ 364977.462899997830391, 257756.625799998641014 ], [ 365006.947599999606609, 257797.819299999624491 ], [ 365023.178099997341633, 257785.708700001239777 ], [ 364998.51690000295639, 257746.243400000035763 ], [ 364996.897100001573563, 257747.074499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103046900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89493778000001, "LATITUDE": 18.3490002, "OBJECTID_1": 6688, "PARCEL_NO_": "103103046900", "Tax_Legal_": "ANNAS RETREAT 259-B NEW QTR.", "Name": "SIMMONS, KENNETH", "Address": "2640 NW 23rd St", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33311, "Country": "United States", "Land_Value": 84900, "Improved_V": 155000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.662192866, "SHAPE_Area": 1133.0687309100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362617.326899997889996, 257744.275299999862909 ], [ 362584.320299997925758, 257737.883400000631809 ], [ 362578.39019999653101, 257771.398800000548363 ], [ 362610.590499997138977, 257777.784000001847744 ], [ 362617.326899997889996, 257744.275299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203024000", "MAP": "A9-290-T81", "PARCEL_NAM": "12BA-2", "ACRE": ".28", "LONGITUDE": -64.87483207, "LATITUDE": 18.34897574, "OBJECTID_1": 7039, "PARCEL_NO_": "103203024000", "Tax_Legal_": "12BA-2 ESTATE FRYDENDAHL No.4 EASTEND QTR.", "Name": "GERARD & OCTAVIA CASTOR JOINT LIV TR", "Address": "PO Box 9435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41400, "Improved_V": 379700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.81784951700001, "SHAPE_Area": 1360.98185607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364750.792000003159046, 257766.169599998742342 ], [ 364685.592100001871586, 257752.548200000077486 ], [ 364721.518399998545647, 257794.849899999797344 ], [ 364746.593199998140335, 257785.767000000923872 ], [ 364750.792000003159046, 257766.169599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104037600", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-125", "ACRE": "0.16", "LONGITUDE": -64.88637238, "LATITUDE": 18.34903258, "OBJECTID_1": 6906, "PARCEL_NO_": "103104037600", "Tax_Legal_": "394-125 ANNAS RETREAT NEW QUARTER", "Name": "HAZEL, GLADSTONE & SONIA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21200, "Improved_V": 119300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.093582376, "SHAPE_Area": 683.12733214900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363518.59910000115633, 257773.394400000572205 ], [ 363512.340999998152256, 257750.75620000064373 ], [ 363503.435599997639656, 257754.905200000852346 ], [ 363497.809399999678135, 257752.748199999332428 ], [ 363486.280000001192093, 257780.940400000661612 ], [ 363493.508100003004074, 257784.377000000327826 ], [ 363499.150499999523163, 257784.634300000965595 ], [ 363503.192800000309944, 257783.400800000876188 ], [ 363509.686499997973442, 257778.387699998915195 ], [ 363518.59910000115633, 257773.394400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204025300", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".26", "LONGITUDE": -64.87334366, "LATITUDE": 18.34890322, "OBJECTID_1": 7176, "PARCEL_NO_": "103204025300", "Tax_Legal_": "FRYDENDAHL 12B-6 EAST END QTR.", "Name": "GERARD & OCTAVIA CASTOR JOINT LIV TR", "Address": "PO Box 9435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70600, "Improved_V": 319400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.872440286, "SHAPE_Area": 1641.6529696600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364869.890600003302097, 257794.797699999064207 ], [ 364885.291500002145767, 257785.424499999731779 ], [ 364890.957299999892712, 257782.937800001353025 ], [ 364895.827500000596046, 257779.17790000140667 ], [ 364900.712099999189377, 257773.729499999433756 ], [ 364904.009300000965595, 257765.312699999660254 ], [ 364904.065099999308586, 257758.769299998879433 ], [ 364898.51799999922514, 257747.324799999594688 ], [ 364895.317900002002716, 257744.343299999833107 ], [ 364891.302500002086163, 257742.410599999129772 ], [ 364852.471799999475479, 257757.08049999922514 ], [ 364869.890600003302097, 257794.797699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037000", "MAP": "D9-7931-T007", "PARCEL_NAM": "307 REM", "ACRE": ".646", "LONGITUDE": -64.90054846, "LATITUDE": 18.34868632, "OBJECTID_1": 6190, "PARCEL_NO_": "103004037000", "Tax_Legal_": "WINTBERG 307,308&309 GR NORTHSIDE QTR", "Name": "FLOWERS, ADAM & TESS RICHARDS", "Address": "PO Box 396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 166000, "Improved_V": 633200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.71261996199999, "SHAPE_Area": 2519.2478965800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361997.8074000030756, 257771.079900000244379 ], [ 362023.8108000010252, 257737.464400000870228 ], [ 362014.497500002384186, 257716.721099998801947 ], [ 362029.734899997711182, 257709.688499998301268 ], [ 362022.777199998497963, 257679.669700000435114 ], [ 362000.137500002980232, 257686.872699998319149 ], [ 361980.742899999022484, 257691.780200000852346 ], [ 361997.8074000030756, 257771.079900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204012200", "MAP": "D3-126-T45", "PARCEL_NAM": "7A", "ACRE": null, "LONGITUDE": -64.86920757, "LATITUDE": 18.34865423, "OBJECTID_1": 7076, "PARCEL_NO_": "103204012200", "Tax_Legal_": "FRYDENDAHL 7A EAST END QTR", "Name": "SCOTT, WINIFRED (LIFE INTEREST)", "Address": "PO Box 502653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 103500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 440.81682445500002, "SHAPE_Area": 2914.6363412000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365359.138199999928474, 257725.763599999248981 ], [ 365407.770499996840954, 257696.397399999201298 ], [ 365401.42790000140667, 257683.679900001734495 ], [ 365294.439000003039837, 257748.0320999994874 ], [ 365220.67790000140667, 257792.813499998301268 ], [ 365237.572700001299381, 257797.384799998253584 ], [ 365261.060099996626377, 257785.333599999547005 ], [ 365328.336499996483326, 257744.509899999946356 ], [ 365333.199500001966953, 257741.594399999827147 ], [ 365335.630999997258186, 257740.136599998921156 ], [ 365359.138199999928474, 257725.763599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104041800", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-108", "ACRE": "0.19", "LONGITUDE": -64.88458957, "LATITUDE": 18.34899658, "OBJECTID_1": 6944, "PARCEL_NO_": "103104041800", "Tax_Legal_": "ANNAS RETREAT 394-108 NEW QTR", "Name": "PEETS, R. , ALFREDO & L", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.40526078800001, "SHAPE_Area": 815.80465030300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363688.203400000929832, 257742.063000001013279 ], [ 363674.147200003266335, 257782.900100000202656 ], [ 363683.810400001704693, 257784.456900000572205 ], [ 363691.887900002300739, 257782.834199998527765 ], [ 363699.995999999344349, 257777.6233000010252 ], [ 363710.589500002563, 257764.62220000103116 ], [ 363688.203400000929832, 257742.063000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103044400", "MAP": "C9-229-T78", "PARCEL_NAM": "253B", "ACRE": "0.54", "LONGITUDE": -64.89696982, "LATITUDE": 18.3489082, "OBJECTID_1": 6663, "PARCEL_NO_": "103103044400", "Tax_Legal_": "ANNAS RETREAT 253B NEW QTR", "Name": "SOOKDEO, MOLLY, TRUSTEE", "Address": "2626 Monaco Cove Cir", "City": "Orlando", "State": "Florida", "Zip": 32825, "Country": "United States", "Land_Value": 78900, "Improved_V": 185300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.78748173400001, "SHAPE_Area": 2435.7517805799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362407.856499999761581, 257722.506999999284744 ], [ 362383.695900000631809, 257718.931699998676777 ], [ 362347.201499998569489, 257743.331000000238419 ], [ 362351.926100000739098, 257756.668600000441074 ], [ 362351.90990000218153, 257758.568300001323223 ], [ 362356.706399999558926, 257763.462699998170137 ], [ 362359.920800000429153, 257764.755499999970198 ], [ 362402.587099999189377, 257773.126299999654293 ], [ 362413.493500001728535, 257723.39750000089407 ], [ 362407.856499999761581, 257722.506999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004022300", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-55", "ACRE": ".41", "LONGITUDE": -64.90581695, "LATITUDE": 18.34894938, "OBJECTID_1": 6096, "PARCEL_NO_": "103004022300", "Tax_Legal_": "WINTBERG 1-143-55 GREAT NORTHSIDE QTR", "Name": "HAWLEY, MICHAEL & JANNEY", "Address": "PO Box 12156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42800, "Improved_V": 477000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.55642592800001, "SHAPE_Area": 1632.1207463200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361461.623999997973442, 257765.00279999896884 ], [ 361472.481899999082088, 257720.973099999129772 ], [ 361426.487899996340275, 257724.607400000095367 ], [ 361429.375100001692772, 257764.316700000315905 ], [ 361461.623999997973442, 257765.00279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004022600", "MAP": "D9-598-T66", "PARCEL_NAM": "1-200", "ACRE": ".50", "LONGITUDE": -64.9053686, "LATITUDE": 18.3486343, "OBJECTID_1": 6099, "PARCEL_NO_": "103004022600", "Tax_Legal_": "WINTBERG 1-200 3 GR NORTHSIDE", "Name": "BORNN, ANDREW H", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.71777727700001, "SHAPE_Area": 1446.2542276300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361504.844099998474121, 257708.361299999058247 ], [ 361533.442699998617172, 257664.265700001269579 ], [ 361517.2246999964118, 257674.898699998855591 ], [ 361504.273299999535084, 257680.703299999237061 ], [ 361495.348200000822544, 257687.174199998378754 ], [ 361488.019400000572205, 257695.557900000363588 ], [ 361485.557300001382828, 257700.603999998420477 ], [ 361483.932099997997284, 257702.068399999290705 ], [ 361480.634900003671646, 257710.485100001096725 ], [ 361478.955799996852875, 257718.281899999827147 ], [ 361468.074500001966953, 257765.055599998682737 ], [ 361500.760399997234344, 257714.449499998241663 ], [ 361504.844099998474121, 257708.361299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104041900", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-109", "ACRE": "0.22", "LONGITUDE": -64.88478483, "LATITUDE": 18.34890714, "OBJECTID_1": 6945, "PARCEL_NO_": "103104041900", "Tax_Legal_": "ANNAS RETREAT 394-109 NEW QTR", "Name": "PEETS, BASIL M. & IRMA D", "Address": "11131 126th St", "City": "Jamaica", "State": "New York", "Zip": 11420, "Country": "United States", "Land_Value": 27600, "Improved_V": 147200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.47370666899999, "SHAPE_Area": 986.18242870300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363688.203400000929832, 257742.063000001013279 ], [ 363675.383299998939037, 257732.45890000090003 ], [ 363650.990699999034405, 257756.112799998372793 ], [ 363658.164800003170967, 257765.881900001317263 ], [ 363662.925399996340275, 257774.997800000011921 ], [ 363669.327299997210503, 257780.749800000339746 ], [ 363674.147200003266335, 257782.900100000202656 ], [ 363688.203400000929832, 257742.063000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023300", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-56", "ACRE": ".38", "LONGITUDE": -64.90622202, "LATITUDE": 18.34897076, "OBJECTID_1": 6104, "PARCEL_NO_": "103004023300", "Tax_Legal_": "WINTBERG 1-143-56 GREAT NORTHSIDE QTR", "Name": "BUTLER, LISA C.", "Address": "PO Box 11850", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39600, "Improved_V": 148700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.882288066, "SHAPE_Area": 1752.6227429099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361426.487899996340275, 257724.607400000095367 ], [ 361384.532700002193451, 257727.430500000715256 ], [ 361376.475000001490116, 257726.731199998408556 ], [ 361386.644199997186661, 257763.544700000435114 ], [ 361429.375100001692772, 257764.316700000315905 ], [ 361426.487899996340275, 257724.607400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104037700", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-126", "ACRE": "0.14", "LONGITUDE": -64.88656508, "LATITUDE": 18.34898076, "OBJECTID_1": 6907, "PARCEL_NO_": "103104037700", "Tax_Legal_": "394-126 ANNA'S RETREAT NEW QTR", "Name": "VINCENT, ASCELIA", "Address": "PO Box 502943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20800, "Improved_V": 159500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.315476399, "SHAPE_Area": 607.21537221999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363483.340700000524521, 257747.352400001138449 ], [ 363479.321699999272823, 257745.841899998486042 ], [ 363467.004100002348423, 257771.916700001806021 ], [ 363486.280000001192093, 257780.940400000661612 ], [ 363497.809399999678135, 257752.748199999332428 ], [ 363483.340700000524521, 257747.352400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104033100", "MAP": "A9-167I-T71", "PARCEL_NAM": "394-262", "ACRE": ".225", "LONGITUDE": -64.88812881, "LATITUDE": 18.34896921, "OBJECTID_1": 6866, "PARCEL_NO_": "103104033100", "Tax_Legal_": "394-262 ANNA'S RETREAT NEW QTR", "Name": "CARR, JENNIFER", "Address": "394-262 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 231100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.600884692099996, "SHAPE_Area": 485.280420827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363331.55969999730587, 257768.908300001174212 ], [ 363317.260099999606609, 257743.671100001782179 ], [ 363301.906999997794628, 257752.0439000017941 ], [ 363304.258400000631809, 257755.385899998247623 ], [ 363320.989600002765656, 257779.165300000458956 ], [ 363325.883199997246265, 257772.661499999463558 ], [ 363331.55969999730587, 257768.908300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004038400", "MAP": "D9-1577-T80", "PARCEL_NAM": "303", "ACRE": null, "LONGITUDE": -64.89971556, "LATITUDE": 18.34895713, "OBJECTID_1": 6200, "PARCEL_NO_": "103004038400", "Tax_Legal_": "WINBERG 303 GT. NORTHSIDE", "Name": "BATTISTE, DELORES AND ALPHONSO WILLIAMS", "Address": "PO Box 10475", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85700, "Improved_V": 111600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.06799915100001, "SHAPE_Area": 935.88189836200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362115.877899996936321, 257731.094099998474121 ], [ 362112.67059999704361, 257728.956999998539686 ], [ 362107.832800000905991, 257728.917399998754263 ], [ 362077.866099998354912, 257744.293000001460314 ], [ 362072.1824000030756, 257748.890599999576807 ], [ 362068.111299999058247, 257753.501299999654293 ], [ 362068.087899997830391, 257756.245299998670816 ], [ 362096.20269999653101, 257768.929900001734495 ], [ 362115.877899996936321, 257731.094099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103050100", "MAP": "G9-3034-T80", "PARCEL_NAM": "215-188", "ACRE": ".156", "LONGITUDE": -64.89235733, "LATITUDE": 18.34894687, "OBJECTID_1": 6720, "PARCEL_NO_": "103103050100", "Tax_Legal_": "ANNAS RETREAT 215-188 NEW QTR.", "Name": "HERNANDEZ, MARIE", "Address": "PO BOX 10794", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 190200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.053768476, "SHAPE_Area": 785.76590752300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362875.711199998855591, 257734.854800000786781 ], [ 362869.656011896906421, 257738.54995943341055 ], [ 362863.910074865620118, 257742.709732722403714 ], [ 362858.508959054888692, 257747.308368844300276 ], [ 362853.486100003123283, 257752.317400000989437 ], [ 362853.057520402478985, 257752.631264586176258 ], [ 362852.684018456726335, 257753.009004904975882 ], [ 362852.37500963488128, 257753.441098644747399 ], [ 362852.138283623324241, 257753.916653318126919 ], [ 362851.979807958414312, 257754.423680847510695 ], [ 362851.90357759303879, 257754.949399767938303 ], [ 362851.911514189734589, 257755.480557430390036 ], [ 362852.003417677711695, 257756.003764082473936 ], [ 362852.176971296896227, 257756.50583040600759 ], [ 362852.427799999713898, 257756.97410000115633 ], [ 362858.071506713342387, 257762.400487301376415 ], [ 362863.224842063966207, 257768.294572418235475 ], [ 362867.849200002849102, 257774.612199999392033 ], [ 362886.531000003218651, 257758.721999999135733 ], [ 362884.836016875342466, 257751.67442747039604 ], [ 362882.744105997728184, 257744.734315422945656 ], [ 362880.262000001966953, 257737.9239999987185 ], [ 362879.325550857349299, 257736.890403300989419 ], [ 362878.235630342329387, 257736.020154827885563 ], [ 362877.020385534851812, 257735.335728650796227 ], [ 362875.711199998855591, 257734.854800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204016900", "MAP": "A9-494-T96", "PARCEL_NAM": "B-9", "ACRE": "1.085", "LONGITUDE": -64.8677207, "LATITUDE": 18.34873709, "OBJECTID_1": 7120, "PARCEL_NO_": "103204016900", "Tax_Legal_": "COKI POINT B-7-A,B-9,B-10 & B-11 EAST END #4A", "Name": "HEIRS OF CECILIA BIRCH KING", "Address": "PO Box 502283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 277600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.45108805900003, "SHAPE_Area": 4948.3544630899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365438.375100001692772, 257795.439699999988079 ], [ 365468.217699997127056, 257794.628400001674891 ], [ 365477.925800003111362, 257790.90819999948144 ], [ 365488.463600002229214, 257784.450599998235703 ], [ 365505.583200000226498, 257762.636999998241663 ], [ 365509.648900002241135, 257758.659499999135733 ], [ 365513.739799998700619, 257751.726799998432398 ], [ 365517.071099996566772, 257739.299600001424551 ], [ 365518.010499998927116, 257723.6864 ], [ 365515.618500001728535, 257720.500399999320507 ], [ 365496.303000003099442, 257716.120400000363588 ], [ 365476.958700001239777, 257715.11769999936223 ], [ 365460.801899999380112, 257718.574099998921156 ], [ 365459.185699999332428, 257718.982999999076128 ], [ 365446.230700001120567, 257725.209800001233816 ], [ 365443.77759999781847, 257729.200500000268221 ], [ 365442.942500002682209, 257732.571199998259544 ], [ 365438.862400002777576, 257738.237300001084805 ], [ 365445.221199996769428, 257749.055100001394749 ], [ 365445.201399996876717, 257751.377000000327826 ], [ 365436.163000002503395, 257771.145799998193979 ], [ 365436.883000001311302, 257781.284200001507998 ], [ 365438.375100001692772, 257795.439699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103045400", "MAP": "C9-229-T78", "PARCEL_NAM": "260-59", "ACRE": "0.25", "LONGITUDE": -64.89523963000001, "LATITUDE": 18.34894868, "OBJECTID_1": 6673, "PARCEL_NO_": "103103045400", "Tax_Legal_": "ANNAS RETREAT 260-59 NEW QTR", "Name": "JOSEPH AND SUSAN CRANSTON FAMILY TRUST", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38900, "Improved_V": 167300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.67559778, "SHAPE_Area": 1058.3501214400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362584.320299997925758, 257737.883400000631809 ], [ 362556.144299998879433, 257732.375500001013279 ], [ 362544.589800000190735, 257763.522799998521805 ], [ 362547.0050999969244, 257763.964699998497963 ], [ 362578.39019999653101, 257771.398800000548363 ], [ 362584.320299997925758, 257737.883400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204020500", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".28", "LONGITUDE": -64.87285968, "LATITUDE": 18.34896916, "OBJECTID_1": 7138, "PARCEL_NO_": "103204020500", "Tax_Legal_": "FRYDENDAHL 56-42 EAST END QTR.", "Name": "HUGHES, ISAAC & YVONNE", "Address": "6221 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30300, "Improved_V": 37300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.03172479200001, "SHAPE_Area": 773.67629406100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364958.795400001108646, 257770.827399998903275 ], [ 364933.839299999177456, 257765.979100000113249 ], [ 364916.924699999392033, 257763.729699999094009 ], [ 364908.928099997341633, 257755.853799998760223 ], [ 364908.831000000238419, 257767.252000000327826 ], [ 364907.981499999761581, 257772.311299998313189 ], [ 364938.468599997460842, 257790.503800000995398 ], [ 364942.534299999475479, 257786.526299998164177 ], [ 364958.795400001108646, 257770.827399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204012100", "MAP": "D3-136-T46", "PARCEL_NAM": "9", "ACRE": "1.0", "LONGITUDE": -64.8692078, "LATITUDE": 18.34849087, "OBJECTID_1": 7075, "PARCEL_NO_": "103204012100", "Tax_Legal_": "FRYDENDAHL 9 EAST END QUARTER", "Name": "SMITH, EULALIE", "Address": "PO Box 62", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 119900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 557.52972836100002, "SHAPE_Area": 4273.9947638499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365401.42790000140667, 257683.679900001734495 ], [ 365438.712399996817112, 257661.186900001019239 ], [ 365420.235600002110004, 257653.01410000026226 ], [ 365348.085400000214577, 257698.019799999892712 ], [ 365319.736800000071526, 257712.775499999523163 ], [ 365305.147600002586842, 257721.521999999880791 ], [ 365288.936800003051758, 257731.310699999332428 ], [ 365252.465800002217293, 257752.965900000184774 ], [ 365238.688299998641014, 257761.085799999535084 ], [ 365207.87219999730587, 257781.520799998193979 ], [ 365198.153300002217293, 257786.507500000298023 ], [ 365220.67790000140667, 257792.813499998301268 ], [ 365294.439000003039837, 257748.0320999994874 ], [ 365401.42790000140667, 257683.679900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103204019800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86739738, "LATITUDE": 18.34874497, "OBJECTID_1": 7132, "PARCEL_NO_": "103204019800", "Tax_Legal_": "COKI POINT B-4,B-15 & B-16 & 'D' EAST END #4A (ROAD)", "Name": "ESTATE OF JOSEPHINE BELL & HEI", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 189500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.64880663899999, "SHAPE_Area": 675.46537375699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365518.924699999392033, 257711.028200000524521 ], [ 365515.618500001728535, 257720.500399999320507 ], [ 365518.010499998927116, 257723.6864 ], [ 365517.071099996566772, 257739.299600001424551 ], [ 365513.739799998700619, 257751.726799998432398 ], [ 365509.648900002241135, 257758.659499999135733 ], [ 365505.583200000226498, 257762.636999998241663 ], [ 365488.463600002229214, 257784.450599998235703 ], [ 365477.925800003111362, 257790.90819999948144 ], [ 365468.217699997127056, 257794.628400001674891 ], [ 365484.347499996423721, 257794.338300000876188 ], [ 365491.643899999558926, 257789.753899998962879 ], [ 365495.707800000905991, 257785.987500000745058 ], [ 365507.129199996590614, 257770.460099998861551 ], [ 365516.9003000035882, 257759.352099999785423 ], [ 365518.55969999730587, 257753.877199999988079 ], [ 365521.046899996697903, 257745.875999998301268 ], [ 365521.885600000619888, 257742.083200000226498 ], [ 365525.258299998939037, 257724.801100000739098 ], [ 365527.706000000238419, 257721.44370000064373 ], [ 365532.560099996626377, 257719.583599999547005 ], [ 365519.74719999730587, 257709.135099999606609 ], [ 365518.924699999392033, 257711.028200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204016900", "MAP": "A9-494-T96", "PARCEL_NAM": "B-10", "ACRE": ".566", "LONGITUDE": -64.86723571, "LATITUDE": 18.34879234, "OBJECTID_1": 7120, "PARCEL_NO_": "103204016900", "Tax_Legal_": "COKI POINT B-7-A,B-9,B-10 & B-11 EAST END #4A", "Name": "HEIRS OF CECILIA BIRCH KING", "Address": "PO Box 502283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 277600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.543471826, "SHAPE_Area": 2032.2767850499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365555.057700000703335, 257729.055799998342991 ], [ 365532.560099996626377, 257719.583599999547005 ], [ 365527.706000000238419, 257721.44370000064373 ], [ 365525.258299998939037, 257724.801100000739098 ], [ 365521.885600000619888, 257742.083200000226498 ], [ 365521.046899996697903, 257745.875999998301268 ], [ 365518.55969999730587, 257753.877199999988079 ], [ 365516.9003000035882, 257759.352099999785423 ], [ 365507.129199996590614, 257770.460099998861551 ], [ 365495.707800000905991, 257785.987500000745058 ], [ 365491.643899999558926, 257789.753899998962879 ], [ 365484.347499996423721, 257794.338300000876188 ], [ 365520.642300002276897, 257793.36879999935627 ], [ 365530.40259999781847, 257783.527300000190735 ], [ 365535.33219999819994, 257772.80180000141263 ], [ 365555.057700000703335, 257729.055799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87647331, "LATITUDE": 18.34879722, "OBJECTID_1": 7026, "PARCEL_NO_": "103203022500", "Tax_Legal_": "FRYDENDAHL REM 53-21&53-20A EAST END QTR.", "Name": "SHOURNAGH MCWEENEY REVOCABLE TRUST", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98600, "Improved_V": 106300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.43588557699999, "SHAPE_Area": 2174.2267691799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364589.887299999594688, 257722.845100000500679 ], [ 364560.102300003170967, 257716.901799999177456 ], [ 364526.67849999666214, 257759.480200000107288 ], [ 364507.931900002062321, 257782.969300001859665 ], [ 364539.360100001096725, 257785.337400000542402 ], [ 364589.887299999594688, 257722.845100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87611472, "LATITUDE": 18.34882387, "OBJECTID_1": 7024, "PARCEL_NO_": "103203022300", "Tax_Legal_": "53-20&53-21-1 FRYDENDAHL REM EAST END QUARTER", "Name": "CHRISTIAN, ROSE & OLIVER", "Address": "PO Box 304385", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 89700, "Improved_V": 185000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.53699814199999, "SHAPE_Area": 2774.3828113899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364596.326999999582767, 257724.16440000012517 ], [ 364589.887299999594688, 257722.845100000500679 ], [ 364539.360100001096725, 257785.337400000542402 ], [ 364561.940399996936321, 257785.100099999457598 ], [ 364585.343299999833107, 257782.9695999994874 ], [ 364634.965300001204014, 257732.079999998211861 ], [ 364596.326999999582767, 257724.16440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037400", "MAP": "C9-118-T71", "PARCEL_NAM": "334", "ACRE": "0.55", "LONGITUDE": -64.90230266, "LATITUDE": 18.34874128, "OBJECTID_1": 6193, "PARCEL_NO_": "103004037400", "Tax_Legal_": "WINTBERG 334 GR NORTHSIDE", "Name": "SCATLIFFE, ARMANDO, SYLVIA & M", "Address": "PO Box 8813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54900, "Improved_V": 350500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.32338105900001, "SHAPE_Area": 2341.6650512800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361792.005500003695488, 257732.179200001060963 ], [ 361815.078900001943111, 257760.320099998265505 ], [ 361824.63910000026226, 257747.497800000011921 ], [ 361850.6891999989748, 257718.580099999904633 ], [ 361853.7128000035882, 257716.294700000435114 ], [ 361823.271300002932549, 257687.672499999403954 ], [ 361812.267700001597404, 257698.63399999961257 ], [ 361803.368900001049042, 257708.080400001257658 ], [ 361797.618900001049042, 257714.515000000596046 ], [ 361790.089199997484684, 257723.550700001418591 ], [ 361787.214100003242493, 257726.836399998515844 ], [ 361792.005500003695488, 257732.179200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104034200", "MAP": "A9-167I-71", "PARCEL_NAM": "394-288", "ACRE": ".188", "LONGITUDE": -64.88992409, "LATITUDE": 18.34896823, "OBJECTID_1": 6877, "PARCEL_NO_": "103104034200", "Tax_Legal_": "ANNAS RETREAT 394-288 NEW QTR", "Name": "ALICIA L BRATHWAITE JENNINGS REVOCABLE TRUST", "Address": "PO Box 1601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21900, "Improved_V": 139700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.282742709, "SHAPE_Area": 637.58160098899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363136.331900000572205, 257740.676300000399351 ], [ 363134.227200001478195, 257742.173099998384714 ], [ 363106.643500000238419, 257761.790100000798702 ], [ 363109.332134077616502, 257764.646441269724164 ], [ 363112.4240400751587, 257767.060474398895167 ], [ 363115.847229346923996, 257768.97599361219909 ], [ 363119.521999999880791, 257770.348400000482798 ], [ 363130.383765253645834, 257770.513839826744515 ], [ 363141.244800001382828, 257770.305900000035763 ], [ 363139.682499997317791, 257764.382500000298023 ], [ 363140.638099998235703, 257746.869600001722574 ], [ 363140.814599998295307, 257743.635800000280142 ], [ 363139.751350031525362, 257743.346419757494004 ], [ 363138.747281107178424, 257742.892451683757827 ], [ 363137.827689697791357, 257742.285333032632479 ], [ 363137.015743952651974, 257741.540359527250985 ], [ 363136.331900000572205, 257740.676300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204010200", "MAP": "D9-3162-T85", "PARCEL_NAM": "12-1", "ACRE": ".400", "LONGITUDE": -64.87440542, "LATITUDE": 18.34871428, "OBJECTID_1": 7059, "PARCEL_NO_": "103204010200", "Tax_Legal_": "FRYDENDAHL 12-1 EAST END QUARTER", "Name": "DONOVAN, LEROY", "Address": "PO Box 9243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.307184906, "SHAPE_Area": 1894.9357413600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364776.096799999475479, 257775.130899999290705 ], [ 364787.518299996852875, 257708.017099998891354 ], [ 364769.851400002837181, 257705.952899999916553 ], [ 364764.212600000202656, 257705.273499999195337 ], [ 364750.792000003159046, 257766.169599998742342 ], [ 364746.593199998140335, 257785.767000000923872 ], [ 364776.096799999475479, 257775.130899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103047300", "MAP": "C9-229-T78", "PARCEL_NAM": "260-66", "ACRE": "0.28", "LONGITUDE": -64.89397795, "LATITUDE": 18.34885419, "OBJECTID_1": 6692, "PARCEL_NO_": "103103047300", "Tax_Legal_": "ANNAS RETREAT 260-66 NEW QTR", "Name": "DAVIS, LEROY E., DAVIS JR., LEROY E. & FRETT, ALDIN", "Address": "14-72 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43600, "Improved_V": 67100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.94507910300001, "SHAPE_Area": 1242.4288547199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362723.806900002062321, 257739.658300001174212 ], [ 362682.047700002789497, 257719.473799999803305 ], [ 362672.9408999979496, 257747.263599999248981 ], [ 362687.431199997663498, 257750.126400001347065 ], [ 362694.666400000452995, 257752.718699999153614 ], [ 362705.099899999797344, 257758.503699999302626 ], [ 362717.111900001764297, 257768.312300000339746 ], [ 362723.806900002062321, 257739.658300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87732945, "LATITUDE": 18.34887705, "OBJECTID_1": 7028, "PARCEL_NO_": "103203022700", "Tax_Legal_": "FRYDENDAHL 53-23 EAST END QTR.", "Name": "MARK, HELINA & EDWY", "Address": "6260 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 74700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.99103510999998, "SHAPE_Area": 3600.4015590499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364451.847800001502037, 257740.502599999308586 ], [ 364436.515299998223782, 257741.854800000786781 ], [ 364422.0016999989748, 257741.736000001430511 ], [ 364396.228500001132488, 257738.147599998861551 ], [ 364392.169900000095367, 257741.280799999833107 ], [ 364392.125, 257746.557700000703335 ], [ 364400.90990000218153, 257756.550999999046326 ], [ 364412.929099999368191, 257765.515299998223782 ], [ 364424.174300000071526, 257770.673599999397993 ], [ 364433.828400000929832, 257773.285799998790026 ], [ 364507.931900002062321, 257782.969300001859665 ], [ 364526.67849999666214, 257759.480200000107288 ], [ 364451.847800001502037, 257740.502599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89160202, "LATITUDE": 18.34887307, "OBJECTID_1": 6727, "PARCEL_NO_": "103103050800", "Tax_Legal_": "215-194 ANNA'S RETREAT NEW QTR.", "Name": "RAMKISSOON, KRISHNARINE & SITA", "Address": "PO Box 305001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 198400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.276638156, "SHAPE_Area": 615.86051138899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362947.894100002944469, 257765.504799999296665 ], [ 362966.251299999654293, 257753.95549999922514 ], [ 362951.305699996650219, 257727.588100001215935 ], [ 362935.0878000035882, 257738.221200000494719 ], [ 362938.269900001585484, 257743.313499998301268 ], [ 362941.446599997580051, 257749.039000000804663 ], [ 362939.82490000128746, 257750.081199999898672 ], [ 362947.894100002944469, 257765.504799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87568961, "LATITUDE": 18.3488453, "OBJECTID_1": 7022, "PARCEL_NO_": "103203022100", "Tax_Legal_": "FRYDENDAHL 53-19 EAST END QTR", "Name": "RICHARDS, C. & RICHARDS, G", "Address": "P.O. BOX 3774", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75700, "Improved_V": 308300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.645520312, "SHAPE_Area": 2040.3594931 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364668.774700000882149, 257738.900600001215935 ], [ 364634.965300001204014, 257732.079999998211861 ], [ 364585.343299999833107, 257782.9695999994874 ], [ 364620.864200003445148, 257778.194099999964237 ], [ 364649.148000001907349, 257771.037300001829863 ], [ 364671.189999997615814, 257739.342500001192093 ], [ 364668.774700000882149, 257738.900600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104034100", "MAP": "A9-167I-71", "PARCEL_NAM": "394-289", "ACRE": ".182", "LONGITUDE": -64.88964832000001, "LATITUDE": 18.34893328, "OBJECTID_1": 6876, "PARCEL_NO_": "103104034100", "Tax_Legal_": "394-289 ANNAS RETREAT NEW QTR", "Name": "DeGOUT,JOHN A.&, RITZA L.,CO-TRUSTEES", "Address": "PO Box 1512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26000, "Improved_V": 159500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.16919719000001, "SHAPE_Area": 784.39731235500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363177.613399997353554, 257760.682199999690056 ], [ 363172.930200003087521, 257742.489799998700619 ], [ 363148.719200000166893, 257744.824799999594688 ], [ 363146.522100001573563, 257742.165500000119209 ], [ 363145.695665863458999, 257742.752330005139811 ], [ 363144.792590531695168, 257743.212566666625207 ], [ 363143.832124382723123, 257743.536399364500539 ], [ 363142.834741162660066, 257743.716925129352603 ], [ 363141.821701559063513, 257743.750295789475786 ], [ 363140.814599998295307, 257743.635800000280142 ], [ 363140.638099998235703, 257746.869600001722574 ], [ 363139.682499997317791, 257764.382500000298023 ], [ 363141.244800001382828, 257770.305900000035763 ], [ 363177.613399997353554, 257760.682199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104037800", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-124", "ACRE": "0.18", "LONGITUDE": -64.88608826, "LATITUDE": 18.34889647, "OBJECTID_1": 6908, "PARCEL_NO_": "103104037800", "Tax_Legal_": "ANNAS RETREAT 394-124 NEW QTR", "Name": "EDWARDS, JOSEPH", "Address": "9A Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 264200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.43628143399999, "SHAPE_Area": 882.77946558199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363555.027000002563, 257756.805100001394749 ], [ 363545.531000003218651, 257735.618000000715256 ], [ 363516.388700000941753, 257748.889499999582767 ], [ 363512.340999998152256, 257750.75620000064373 ], [ 363518.59910000115633, 257773.394400000572205 ], [ 363533.179200001060963, 257765.703299999237061 ], [ 363550.970200002193451, 257759.727200001478195 ], [ 363555.027000002563, 257756.805100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204023100", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".24", "LONGITUDE": -64.8720146, "LATITUDE": 18.34883532, "OBJECTID_1": 7163, "PARCEL_NO_": "103204023100", "Tax_Legal_": "FRYDENDAHL 56-17 EAST END QTR.", "Name": "BROOKS, CONROY", "Address": "7466 Frenchman Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25900, "Improved_V": 90300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.6537051, "SHAPE_Area": 1033.0736157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365041.840199999511242, 257772.140299998223782 ], [ 365019.570900000631809, 257735.861099999397993 ], [ 364998.51690000295639, 257746.243400000035763 ], [ 365023.178099997341633, 257785.708700001239777 ], [ 365041.840199999511242, 257772.140299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036700", "MAP": "C9-118-T71", "PARCEL_NAM": "334-A", "ACRE": "0.59", "LONGITUDE": -64.90293606, "LATITUDE": 18.34877937, "OBJECTID_1": 6187, "PARCEL_NO_": "103004036700", "Tax_Legal_": "334A ESTATE WINTBERG GREAT NORTHSIDE QTR", "Name": "LAWRENCE, DAVID", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51300, "Improved_V": 240700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.14595722300001, "SHAPE_Area": 2353.3413991299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361720.779399998486042, 257728.493700001388788 ], [ 361753.586499996483326, 257758.31529999896884 ], [ 361754.767700001597404, 257759.419799998402596 ], [ 361777.493900001049042, 257736.419799998402596 ], [ 361787.214100003242493, 257726.836399998515844 ], [ 361790.089199997484684, 257723.550700001418591 ], [ 361788.565399996936321, 257722.504599999636412 ], [ 361746.852899998426437, 257696.831999998539686 ], [ 361743.541500002145767, 257694.390000000596046 ], [ 361742.993900001049042, 257695.074499998241663 ], [ 361739.023599997162819, 257700.003100000321865 ], [ 361730.672399997711182, 257711.092399999499321 ], [ 361724.511699996888638, 257718.348299998790026 ], [ 361721.089100003242493, 257721.770899999886751 ], [ 361716.297399997711182, 257725.193599998950958 ], [ 361720.779399998486042, 257728.493700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104036500", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-127", "ACRE": "0.14", "LONGITUDE": -64.8867528, "LATITUDE": 18.34890494, "OBJECTID_1": 6897, "PARCEL_NO_": "103104036500", "Tax_Legal_": "ANNAS RETREAT 394-127 NEW QTR", "Name": "TURNBULL, VERNON & ARDEAN", "Address": "1856 So Mott Dr", "City": "Mobile", "State": "Alabama", "Zip": 36617, "Country": "United States", "Land_Value": 20800, "Improved_V": 137100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.473643499, "SHAPE_Area": 634.448354494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363464.853000000119209, 257740.446100000292063 ], [ 363457.619599997997284, 257737.642700001597404 ], [ 363446.921800002455711, 257762.886399999260902 ], [ 363467.004100002348423, 257771.916700001806021 ], [ 363479.321699999272823, 257745.841899998486042 ], [ 363464.853000000119209, 257740.446100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103045200", "MAP": "C9-229-T78", "PARCEL_NAM": "260-57", "ACRE": "0.25", "LONGITUDE": -64.89549171, "LATITUDE": 18.34888017, "OBJECTID_1": 6671, "PARCEL_NO_": "103103045200", "Tax_Legal_": "ANNAS RETREAT 260-57 NEW QTR", "Name": "BASS, JOSEPH & MARGARET", "Address": "PO Box 8672", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38900, "Improved_V": 277500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.35392481700001, "SHAPE_Area": 800.14650838199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362556.144299998879433, 257732.375500001013279 ], [ 362547.294600002467632, 257729.980999998748302 ], [ 362539.267499998211861, 257725.693500000983477 ], [ 362533.630500003695488, 257724.80290000140667 ], [ 362529.618699997663498, 257722.448100000619888 ], [ 362530.31530000269413, 257735.33049999922514 ], [ 362524.462499998509884, 257759.769400000572205 ], [ 362544.589800000190735, 257763.522799998521805 ], [ 362556.144299998879433, 257732.375500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104033000", "MAP": "A9-167I-71", "PARCEL_NAM": "394-261", "ACRE": ".219", "LONGITUDE": -64.88797639000001, "LATITUDE": 18.34887443, "OBJECTID_1": 6865, "PARCEL_NO_": "103104033000", "Tax_Legal_": "ANNAS RETREAT 394-261 NEW QTR", "Name": "HODGE, PAULINE", "Address": "PO Box 1653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20500, "Improved_V": 178200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.481315331, "SHAPE_Area": 714.76007301499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363332.686099998652935, 257731.342799998819828 ], [ 363330.560000002384186, 257728.351500000804663 ], [ 363325.83954607922351, 257733.203940374136437 ], [ 363321.401496884063818, 257738.31594410649268 ], [ 363317.260099999606609, 257743.671100001782179 ], [ 363331.55969999730587, 257768.908300001174212 ], [ 363352.606600001454353, 257759.370200000703335 ], [ 363332.686099998652935, 257731.342799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024100", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-52", "ACRE": ".46", "LONGITUDE": -64.90667861, "LATITUDE": 18.34869427, "OBJECTID_1": 6112, "PARCEL_NO_": "103004024100", "Tax_Legal_": "1-143-52 WINTBERG NO. 3 GREAT NORTHSIDE QUARTER", "Name": "BENJAMIN, KENNETH R., JR. & RAQUEL", "Address": "PO Box 10374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43900, "Improved_V": 287700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.075802506, "SHAPE_Area": 2036.2764963100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361382.437399998307228, 257689.416499998420477 ], [ 361354.259700000286102, 257684.119600001722574 ], [ 361331.485100001096725, 257707.153499998152256 ], [ 361335.462700001895428, 257713.518899999558926 ], [ 361339.40259999781847, 257724.316899999976158 ], [ 361344.807599999010563, 257752.436599999666214 ], [ 361376.475000001490116, 257726.731199998408556 ], [ 361374.057800002396107, 257726.500399999320507 ], [ 361374.910899996757507, 257721.018899999558926 ], [ 361376.528899997472763, 257720.398899998515844 ], [ 361379.154700003564358, 257696.144600000232458 ], [ 361382.437399998307228, 257689.416499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103044200", "MAP": "C9-229-T78", "PARCEL_NAM": "320", "ACRE": ".59", "LONGITUDE": -64.89762942, "LATITUDE": 18.34877938, "OBJECTID_1": 6661, "PARCEL_NO_": "103103044200", "Tax_Legal_": "320 ANNAS RETREAT NEW QTR", "Name": "PENN, HARAN W & CECILE L", "Address": "PO Box 304692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84700, "Improved_V": 229000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.39881761199999, "SHAPE_Area": 2842.9828009500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362332.8108000010252, 257704.753499999642372 ], [ 362293.040600001811981, 257696.26410000026226 ], [ 362284.208400003612041, 257754.636700000613928 ], [ 362307.578900001943111, 257756.305599998682737 ], [ 362338.184600003063679, 257760.566899999976158 ], [ 362342.226899996399879, 257759.333399999886751 ], [ 362343.877300001680851, 257754.913899999111891 ], [ 362342.343800000846386, 257745.613299999386072 ], [ 362334.535999998450279, 257715.574099998921156 ], [ 362332.8108000010252, 257704.753499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024700", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-11", "ACRE": ".26", "LONGITUDE": -64.90747583, "LATITUDE": 18.34886797, "OBJECTID_1": 6118, "PARCEL_NO_": "103004024700", "Tax_Legal_": "WINTBERG 1-143-11 GREAT NORTHSIDE QTR", "Name": "TRUST AGREEMENT OF JOHN E FLEMING", "Address": "6873 ESTATE WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27100, "Improved_V": 320200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.97345516, "SHAPE_Area": 1244.3614450099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361287.787799999117851, 257725.160999998450279 ], [ 361279.058600001037121, 257708.624200001358986 ], [ 361249.117200002074242, 257721.044799998402596 ], [ 361254.682199999690056, 257730.378499999642372 ], [ 361257.070600003004074, 257733.986600000411272 ], [ 361259.428400002419949, 257741.183100000023842 ], [ 361260.95830000191927, 257750.905900001525879 ], [ 361260.925899997353554, 257754.705299999564886 ], [ 361261.63400000333786, 257756.182700000703335 ], [ 361284.882200002670288, 257746.615699999034405 ], [ 361296.749499998986721, 257741.732099998742342 ], [ 361287.787799999117851, 257725.160999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87012213, "LATITUDE": 18.34880237, "OBJECTID_1": 7105, "PARCEL_NO_": "103204015400", "Tax_Legal_": "FRYDENDAHL 56-68 EASTEND QTR.", "Name": "BRATHWAITE, ANECIA", "Address": "5337 Commons Ct", "City": "VIRGINIA BEACH", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 42100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.02862013500001, "SHAPE_Area": 1362.8500058100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365245.307899996638298, 257741.297200001776218 ], [ 365213.067900002002716, 257739.555700000375509 ], [ 365202.393500000238419, 257762.055300001055002 ], [ 365181.332299999892712, 257773.282000001519918 ], [ 365198.259400002658367, 257774.053800001740456 ], [ 365203.077500000596046, 257776.415300000458956 ], [ 365207.87219999730587, 257781.520799998193979 ], [ 365238.688299998641014, 257761.085799999535084 ], [ 365252.465800002217293, 257752.965900000184774 ], [ 365245.307899996638298, 257741.297200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203014900", "MAP": "D9-1840-T81", "PARCEL_NAM": "2D", "ACRE": ".52", "LONGITUDE": -64.88228087, "LATITUDE": 18.34878515, "OBJECTID_1": 6990, "PARCEL_NO_": "103203014900", "Tax_Legal_": "TARBOR & HARMONY 2D EAST END QTR", "Name": "SALEM, NAEL", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 166600, "Improved_V": 26300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.97832541700001, "SHAPE_Area": 1420.97602009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363965.449000000953674, 257759.10869999974966 ], [ 363929.513800002634525, 257717.862399999052286 ], [ 363907.619300000369549, 257732.248700000345707 ], [ 363937.931900002062321, 257770.915800001472235 ], [ 363965.449000000953674, 257759.10869999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103050300", "MAP": "G9-3034-T80", "PARCEL_NAM": "215-191", "ACRE": ".150", "LONGITUDE": -64.89211504, "LATITUDE": 18.34884663, "OBJECTID_1": 6722, "PARCEL_NO_": "103103050300", "Tax_Legal_": "ANNAS RETREAT 215-191 NEW QTR.", "Name": "LANCLOS, ELMA", "Address": "PO Box 9050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 56800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.3396114974, "SHAPE_Area": 596.152774056 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362896.492700003087521, 257725.239700000733137 ], [ 362883.5287000015378, 257732.521800000220537 ], [ 362881.898100003600121, 257734.61939999833703 ], [ 362891.35809999704361, 257760.028099998831749 ], [ 362913.200499996542931, 257751.763099998235703 ], [ 362896.492700003087521, 257725.239700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104034600", "MAP": "A9-167I-71", "PARCEL_NAM": "394-287", "ACRE": ".158", "LONGITUDE": -64.89002826, "LATITUDE": 18.34881159, "OBJECTID_1": 6881, "PARCEL_NO_": "103104034600", "Tax_Legal_": "ANNAS RETREAT 394-287 No.1 NEW QTR.", "Name": "JOYCELYN HARLEY-PETERS", "Address": "PO Box 302242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032242, "Country": "United States", "Land_Value": 19200, "Improved_V": 104800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.292599705, "SHAPE_Area": 661.59357316800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363133.48200000077486, 257734.989799998700619 ], [ 363106.164499998092651, 257723.36710000038147 ], [ 363105.124399997293949, 257750.800799999386072 ], [ 363106.643500000238419, 257761.790100000798702 ], [ 363134.227200001478195, 257742.173099998384714 ], [ 363136.331900000572205, 257740.676300000399351 ], [ 363136.111400000751019, 257740.324700001627207 ], [ 363135.339223929797299, 257739.463801441917894 ], [ 363134.715185098466463, 257738.490159951586975 ], [ 363134.255453994730487, 257737.429005143407267 ], [ 363133.971943461103365, 257736.307834330393234 ], [ 363133.872000001370907, 257735.155699998140335 ], [ 363133.48200000077486, 257734.989799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88413407, "LATITUDE": 18.34887381, "OBJECTID_1": 6936, "PARCEL_NO_": "103104041000", "Tax_Legal_": "ANNAS RETREAT 394-6&7 NEW QTR", "Name": "JACOBS, REHALIO", "Address": "PO Box 8657", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45200, "Improved_V": 192100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.834884068099996, "SHAPE_Area": 343.90311934300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363756.680600002408028, 257749.589600000530481 ], [ 363750.275100000202656, 257744.259799998253584 ], [ 363746.250699996948242, 257743.382500000298023 ], [ 363737.37049999833107, 257744.576400000602007 ], [ 363725.13910000026226, 257760.519400000572205 ], [ 363728.310400001704693, 257766.878100000321865 ], [ 363756.680600002408028, 257749.589600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103044000", "MAP": "C9-229-T78", "PARCEL_NAM": "319", "ACRE": ".71", "LONGITUDE": -64.8980543, "LATITUDE": 18.34868306, "OBJECTID_1": 6659, "PARCEL_NO_": "103103044000", "Tax_Legal_": "ANNAS RETREAT 319 & 321B NEW QTR", "Name": "MILLS, DELLO, ALICE, STAN & WIL", "Address": "PO BOX 502114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 90600, "Improved_V": 207000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.131287461, "SHAPE_Area": 2617.8208855500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362274.325000002980232, 257688.856699999421835 ], [ 362255.702299997210503, 257681.486099999397993 ], [ 362254.089900001883507, 257684.140799999237061 ], [ 362249.436099998652935, 257691.80290000140667 ], [ 362248.907300002872944, 257753.342999998480082 ], [ 362284.208400003612041, 257754.636700000613928 ], [ 362293.040600001811981, 257696.26410000026226 ], [ 362274.325000002980232, 257688.856699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89143856, "LATITUDE": 18.34877898, "OBJECTID_1": 6729, "PARCEL_NO_": "103103051000", "Tax_Legal_": "ANNAS RETREAT 215-197 NEW QTR.", "Name": "THOMAS, C. R. & RITTER, A. , K. & SHARL", "Address": "4215 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.201734064999997, "SHAPE_Area": 562.93883523700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362966.251299999654293, 257753.95549999922514 ], [ 362982.933200001716614, 257743.460099998861551 ], [ 362969.928199999034405, 257718.663499999791384 ], [ 362960.999499998986721, 257725.556499999016523 ], [ 362951.305699996650219, 257727.588100001215935 ], [ 362966.251299999654293, 257753.95549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104033800", "MAP": "A9-167I-71", "PARCEL_NAM": "394-292", "ACRE": ".165", "LONGITUDE": -64.8887423, "LATITUDE": 18.34888964, "OBJECTID_1": 6873, "PARCEL_NO_": "103104033800", "Tax_Legal_": "ANNAS RETREAT 394-292 NEW QTR", "Name": "ILDA R COLON TRUST", "Address": "PO Box 1232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21900, "Improved_V": 154200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.357174130499999, "SHAPE_Area": 527.30246485500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363267.916799999773502, 257761.843499999493361 ], [ 363262.457800000905991, 257740.056200001388788 ], [ 363239.87389999628067, 257740.715700000524521 ], [ 363238.903899997472763, 257759.917300000786781 ], [ 363267.916799999773502, 257761.843499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104033700", "MAP": "A9-167I-71", "PARCEL_NAM": "394-293", "ACRE": ".132", "LONGITUDE": -64.88850505000001, "LATITUDE": 18.34883833, "OBJECTID_1": 6872, "PARCEL_NO_": "103104033700", "Tax_Legal_": "ANNAS RETREAT 394-293 NEW QTR", "Name": "RICHARDS, RUPERT M", "Address": "PO Box 303172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 107600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.09457494599999, "SHAPE_Area": 626.44777543099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363297.86540000140667, 257748.578600000590086 ], [ 363279.483900003135204, 257729.218699999153614 ], [ 363271.375799998641014, 257734.42960000038147 ], [ 363262.457800000905991, 257740.056200001388788 ], [ 363267.916799999773502, 257761.843499999493361 ], [ 363297.86540000140667, 257748.578600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103043700", "MAP": "C9-229-T78", "PARCEL_NAM": "318", "ACRE": null, "LONGITUDE": -64.89839106, "LATITUDE": 18.34871794, "OBJECTID_1": 6656, "PARCEL_NO_": "103103043700", "Tax_Legal_": "318 WINTBERG GREAT NORTHSIDE", "Name": "CRAWFORD, MARYJ", "Address": "756 Purdue Ct", "City": "Santa Clara", "State": "California", "Zip": 95051, "Country": "United States", "Land_Value": 66300, "Improved_V": 178100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.26004199, "SHAPE_Area": 1973.2514178 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362247.075099997222424, 257691.769099999219179 ], [ 362221.462899997830391, 257691.402100000530481 ], [ 362212.333400003612041, 257751.853999998420477 ], [ 362247.126999996602535, 257753.277699999511242 ], [ 362248.907300002872944, 257753.342999998480082 ], [ 362249.436099998652935, 257691.80290000140667 ], [ 362247.075099997222424, 257691.769099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104034000", "MAP": "A9-167I-71", "PARCEL_NAM": "394-290", "ACRE": ".149", "LONGITUDE": -64.88931533, "LATITUDE": 18.34888153, "OBJECTID_1": 6875, "PARCEL_NO_": "103104034000", "Tax_Legal_": "ANNAS RETREAT 394-290 NEW QTR", "Name": "CANTON, RITA A", "Address": "PO Box 307731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 171100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.077161597, "SHAPE_Area": 614.19319365199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363209.892899997532368, 257757.780000001192093 ], [ 363207.63400000333786, 257738.974199999123812 ], [ 363190.685199998319149, 257740.735300000756979 ], [ 363172.930200003087521, 257742.489799998700619 ], [ 363177.613399997353554, 257760.682199999690056 ], [ 363191.340499997138977, 257758.472500000149012 ], [ 363209.892899997532368, 257757.780000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104036700", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-128", "ACRE": "0.14", "LONGITUDE": -64.88694504, "LATITUDE": 18.34882875, "OBJECTID_1": 6898, "PARCEL_NO_": "103104036700", "Tax_Legal_": "ANNAS RETREAT 394-128 NEW QTR", "Name": "SELKRIDGE, MARGARITA & SHYRA RAYMOND", "Address": "394-128 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 225500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.092006138100004, "SHAPE_Area": 585.940034481 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363450.386200003325939, 257734.839299999177456 ], [ 363439.158900000154972, 257727.570199999958277 ], [ 363427.636799998581409, 257754.918099999427795 ], [ 363446.921800002455711, 257762.886399999260902 ], [ 363457.619599997997284, 257737.642700001597404 ], [ 363450.386200003325939, 257734.839299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003039000", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".29", "LONGITUDE": -64.90802662, "LATITUDE": 18.34877121, "OBJECTID_1": 5886, "PARCEL_NO_": "103003039000", "Tax_Legal_": "WINTBERG 1-143-29 GR NORTHSIDE", "Name": "LLOYD, HERMAN & MAUDE W", "Address": "PO Box 9039", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 238600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.820000169, "SHAPE_Area": 1315.95802409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361240.265699997544289, 257718.861400000751019 ], [ 361229.884400002658367, 257706.955200001597404 ], [ 361226.704099997878075, 257701.651900000870228 ], [ 361225.132799997925758, 257696.7837999984622 ], [ 361223.529200002551079, 257695.715199999511242 ], [ 361220.300300002098083, 257696.111000001430511 ], [ 361219.48139999806881, 257697.581999998539686 ], [ 361209.748099997639656, 257704.25730000063777 ], [ 361186.161899998784065, 257727.91780000180006 ], [ 361213.439800001680851, 257744.184200000017881 ], [ 361240.265699997544289, 257718.861400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104041700", "MAP": "A9-167A-T71", "PARCEL_NAM": "394-15", "ACRE": "0.19", "LONGITUDE": -64.88446194, "LATITUDE": 18.34878901, "OBJECTID_1": 6943, "PARCEL_NO_": "103104041700", "Tax_Legal_": "ANNAS RETREAT 394-15 NEW QTR", "Name": "POTTER, MARGARET", "Address": "52 BA FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 153800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.129625727, "SHAPE_Area": 739.12677421599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363724.455099999904633, 257746.159400001168251 ], [ 363694.824699997901917, 257722.063299998641014 ], [ 363688.203400000929832, 257742.063000001013279 ], [ 363710.589500002563, 257764.62220000103116 ], [ 363724.455099999904633, 257746.159400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024800", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-12", "ACRE": ".32", "LONGITUDE": -64.9071093, "LATITUDE": 18.34881059, "OBJECTID_1": 6119, "PARCEL_NO_": "103004024800", "Tax_Legal_": "WINTBERG 1-143-12 & 1-143-9-1 GREAT NORTHSIDE QTR", "Name": "BETRAND, BENJAMIN & ROSALIND", "Address": "18306 Wild Orchid Dr", "City": "Houston", "State": "Texas", "Zip": 77084, "Country": "United States", "Land_Value": 39600, "Improved_V": 124800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.90326999199999, "SHAPE_Area": 1212.0100385600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361327.162900000810623, 257739.375999998301268 ], [ 361333.663099996745586, 257735.457899998873472 ], [ 361332.126000002026558, 257726.579300001263618 ], [ 361328.978100001811981, 257717.476599998772144 ], [ 361325.009400002658367, 257710.055799998342991 ], [ 361320.221900001168251, 257704.105999998748302 ], [ 361285.944099999964237, 257721.668299999088049 ], [ 361287.787799999117851, 257725.160999998450279 ], [ 361298.108000002801418, 257744.243900001049042 ], [ 361327.162900000810623, 257739.375999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103043800", "MAP": "D9-1680-T81", "PARCEL_NAM": "317", "ACRE": null, "LONGITUDE": -64.89874213, "LATITUDE": 18.34862545, "OBJECTID_1": 6657, "PARCEL_NO_": "103103043800", "Tax_Legal_": "317 WINTBERG GREAT NORTHSIDE", "Name": "MAURICE A WHEATLEY REVOCABLE TRUST", "Address": "PO Box 8583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 101900, "Improved_V": 190300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.90888672899999, "SHAPE_Area": 2887.09664823 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362221.462899997830391, 257691.402100000530481 ], [ 362216.332299999892712, 257691.328600000590086 ], [ 362213.378799997270107, 257691.370700001716614 ], [ 362210.458499997854233, 257690.3761 ], [ 362207.442199997603893, 257688.153599999845028 ], [ 362204.766599997878075, 257682.441899999976158 ], [ 362204.290399998426437, 257681.330699998885393 ], [ 362203.337899997830391, 257679.584399998188019 ], [ 362202.067900002002716, 257678.631900001317263 ], [ 362200.162900000810623, 257677.520700000226498 ], [ 362196.987899996340275, 257675.298200000077486 ], [ 362190.571099996566772, 257671.543800000101328 ], [ 362177.695299997925758, 257668.4831000007689 ], [ 362176.085699997842312, 257746.813900001347065 ], [ 362201.986100003123283, 257751.430599998682737 ], [ 362212.333400003612041, 257751.853999998420477 ], [ 362221.462899997830391, 257691.402100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104033900", "MAP": "A9-167I-71", "PARCEL_NAM": "394-291", "ACRE": ".151", "LONGITUDE": -64.88901152, "LATITUDE": 18.34887509, "OBJECTID_1": 6874, "PARCEL_NO_": "103104033900", "Tax_Legal_": "ANNAS RETREAT 394-291 NEW QTR", "Name": "AMIN, OMODOSO & MUHAMMAD, NORM", "Address": "PO Box 8792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 102700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.543830759599999, "SHAPE_Area": 579.98156115100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363234.231499999761581, 257740.458399999886751 ], [ 363207.63400000333786, 257738.974199999123812 ], [ 363209.892899997532368, 257757.780000001192093 ], [ 363238.903899997472763, 257759.917300000786781 ], [ 363239.87389999628067, 257740.715700000524521 ], [ 363234.231499999761581, 257740.458399999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104038400", "MAP": null, "PARCEL_NAM": "394-143", "ACRE": null, "LONGITUDE": -64.88554813, "LATITUDE": 18.34877072, "OBJECTID_1": 6913, "PARCEL_NO_": "103104038400", "Tax_Legal_": "ANNAS RETREAT 394-143 No.1 NEW QTR.", "Name": "CORAM, STANLEY & INA N. -LIFE ESTA", "Address": "PO Box 303674", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26700, "Improved_V": 196400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.50972436399999, "SHAPE_Area": 638.65717393399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363589.032499998807907, 257721.64919999986887 ], [ 363587.552799999713898, 257724.985100001096725 ], [ 363574.398299999535084, 257754.641600001603365 ], [ 363577.600100003182888, 257757.412000000476837 ], [ 363583.208400003612041, 257761.679800000041723 ], [ 363601.121699996292591, 257741.350299999117851 ], [ 363606.819799996912479, 257735.064100001007318 ], [ 363609.114600002765656, 257731.633200000971556 ], [ 363599.118693138472736, 257726.550397816346958 ], [ 363589.032499998807907, 257721.64919999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104032900", "MAP": "A9-167I-71", "PARCEL_NAM": "394-260", "ACRE": ".214", "LONGITUDE": -64.88782215000001, "LATITUDE": 18.34877377, "OBJECTID_1": 6864, "PARCEL_NO_": "103104032900", "Tax_Legal_": "ANNAS RETREAT 394-260 NEW QTR", "Name": "BLACKMAN, EDITH", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 188000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.08338550800001, "SHAPE_Area": 752.41360887400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363348.909500002861023, 257720.07660000026226 ], [ 363347.518500000238419, 257717.936799999326468 ], [ 363331.830700002610683, 257727.135200001299381 ], [ 363330.560000002384186, 257728.351500000804663 ], [ 363332.686099998652935, 257731.342799998819828 ], [ 363352.606600001454353, 257759.370200000703335 ], [ 363369.603900000452995, 257751.910000000149012 ], [ 363348.909500002861023, 257720.07660000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87125169, "LATITUDE": 18.34880787, "OBJECTID_1": 7108, "PARCEL_NO_": "103204015700", "Tax_Legal_": "56-64 FRYDENDAHL EAST END QUARTER", "Name": "SMITH, EDRIS", "Address": "PO Box 306951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42100, "Improved_V": 363800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.21077549899999, "SHAPE_Area": 1182.9408113699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365119.566299997270107, 257735.201799999922514 ], [ 365100.94200000166893, 257744.337499998509884 ], [ 365078.282499998807907, 257753.862399999052286 ], [ 365070.991499997675419, 257757.813499998301268 ], [ 365068.549199998378754, 257760.53770000115037 ], [ 365070.134900003671646, 257763.717099998146296 ], [ 365093.464000001549721, 257770.240800000727177 ], [ 365107.151500001549721, 257772.674899999052286 ], [ 365121.656099997460842, 257773.84910000115633 ], [ 365119.566299997270107, 257735.201799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87096566, "LATITUDE": 18.34874832, "OBJECTID_1": 7109, "PARCEL_NO_": "103204015800", "Tax_Legal_": "FRYDENDAHL 56-65 EAST END QTR.", "Name": "DUME, MADELEINE & RENEL GUE", "Address": "56-63 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.16784045, "SHAPE_Area": 922.18285393600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365142.945699997246265, 257735.815400000661612 ], [ 365138.995099999010563, 257726.2837999984622 ], [ 365119.566299997270107, 257735.201799999922514 ], [ 365121.656099997460842, 257773.84910000115633 ], [ 365141.014799997210503, 257773.163100000470877 ], [ 365142.945699997246265, 257735.815400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88320151000001, "LATITUDE": 18.34862998, "OBJECTID_1": 6937, "PARCEL_NO_": "103104041100", "Tax_Legal_": "ANNAS RETREAT 14-2 EAST END", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 119800, "Improved_V": 148900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.43058798300001, "SHAPE_Area": 2878.34307528 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363844.468999996781349, 257698.094000000506639 ], [ 363839.096500001847744, 257690.8429000005126 ], [ 363800.672200001776218, 257708.688000001013279 ], [ 363802.717299997806549, 257711.644999999552965 ], [ 363808.171400003135204, 257719.530699998140335 ], [ 363834.760999999940395, 257764.884199999272823 ], [ 363835.141800001263618, 257765.030000001192093 ], [ 363838.818400003015995, 257762.716400001198053 ], [ 363848.54450000077486, 257756.885299999266863 ], [ 363867.167000003159046, 257747.960700001567602 ], [ 363877.245300002396107, 257742.136199999600649 ], [ 363877.194899998605251, 257742.048500001430511 ], [ 363853.476400002837181, 257710.250900000333786 ], [ 363844.468999996781349, 257698.094000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204015600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8707216, "LATITUDE": 18.34877263, "OBJECTID_1": 7107, "PARCEL_NO_": "103204015600", "Tax_Legal_": "FRYDENDAHL 56-66 EAST END QTR.", "Name": "FAHIE, CHERYL & VERNIE", "Address": "PO Box 1203", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37400, "Improved_V": 141000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.934146564, "SHAPE_Area": 1120.38860875 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365175.185599997639656, 257737.55689999833703 ], [ 365142.945699997246265, 257735.815400000661612 ], [ 365141.014799997210503, 257773.163100000470877 ], [ 365164.399700000882149, 257773.143399998545647 ], [ 365173.36259999871254, 257762.239900000393391 ], [ 365175.185599997639656, 257737.55689999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87180759, "LATITUDE": 18.3487096, "OBJECTID_1": 7169, "PARCEL_NO_": "103204023800", "Tax_Legal_": "FRYDENDAHL 56-18 EAST END QTR.", "Name": "WEBSTER, MACLEAN & ZELMA", "Address": "PO Box 303798", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30200, "Improved_V": 242600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.15452367699999, "SHAPE_Area": 1149.6659832099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365043.864600002765656, 257723.816500000655651 ], [ 365024.430399999022484, 257733.36769999936223 ], [ 365019.570900000631809, 257735.861099999397993 ], [ 365041.840199999511242, 257772.140299998223782 ], [ 365060.513099998235703, 257757.305500000715256 ], [ 365064.564400002360344, 257755.016600001603365 ], [ 365046.294299997389317, 257722.56980000063777 ], [ 365043.864600002765656, 257723.816500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8704263, "LATITUDE": 18.34876828, "OBJECTID_1": 7106, "PARCEL_NO_": "103204015500", "Tax_Legal_": "FRYDENDAHL 56-67 EAST END QTR.", "Name": "JONES, SAMUEL & ELVIA", "Address": "PO Box 4315", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75100, "Improved_V": 124300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.50362134100001, "SHAPE_Area": 1047.0317525 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365182.438900001347065, 257738.038400001823902 ], [ 365175.185599997639656, 257737.55689999833703 ], [ 365173.36259999871254, 257762.239900000393391 ], [ 365164.399700000882149, 257773.143399998545647 ], [ 365181.332299999892712, 257773.282000001519918 ], [ 365202.393500000238419, 257762.055300001055002 ], [ 365213.067900002002716, 257739.555700000375509 ], [ 365182.438900001347065, 257738.038400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "103103051700", "MAP": "D9-9000-T015", "PARCEL_NAM": "215-4-A", "ACRE": "1.156", "LONGITUDE": -64.89272753, "LATITUDE": 18.34857814, "OBJECTID_1": 6734, "PARCEL_NO_": "103103051700", "Tax_Legal_": "215-4-A-1 ANNAS RETREAT No.1 NEW QTR.", "Name": "ONE STOP INC.", "Address": "7003 Estate Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 269500, "Improved_V": 17900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.35302056, "SHAPE_Area": 4395.0520769699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362862.031599998474121, 257700.259700000286102 ], [ 362854.931199997663498, 257681.836399998515844 ], [ 362838.093999996781349, 257670.51069999858737 ], [ 362829.906800001859665, 257685.009100001305342 ], [ 362801.379699997603893, 257680.936099998652935 ], [ 362804.616499997675419, 257682.752399999648333 ], [ 362807.62610000371933, 257685.795099999755621 ], [ 362800.416199997067451, 257690.0945999994874 ], [ 362797.130999997258186, 257689.096200000494719 ], [ 362788.542099997401237, 257713.168200001120567 ], [ 362788.52589999884367, 257715.067899998277426 ], [ 362788.294828473008238, 257716.146639623708325 ], [ 362788.234568797633983, 257717.24820305861067 ], [ 362788.34659135970287, 257718.345711224916158 ], [ 362788.628162714070641, 257719.412383996648714 ], [ 362789.072412281937432, 257720.422193657403113 ], [ 362789.668499998748302, 257721.350499998778105 ], [ 362792.101130262715742, 257724.402240428695222 ], [ 362794.982417416293174, 257727.034538662439445 ], [ 362798.24099999666214, 257729.182199999690056 ], [ 362802.871047216409352, 257733.0509130320861 ], [ 362807.849541602481622, 257736.459559601091314 ], [ 362813.130933016829658, 257739.376952703227289 ], [ 362818.666900001466274, 257741.776399999856949 ], [ 362828.951435244642198, 257746.161335769080324 ], [ 362838.986900001764297, 257751.089699998497963 ], [ 362839.956721373193432, 257751.509025337873027 ], [ 362840.982740411011036, 257751.761358781688614 ], [ 362842.036425600934308, 257751.839683447295101 ], [ 362843.088476089178585, 257751.741821284173056 ], [ 362844.109636479523033, 257751.470493641128996 ], [ 362845.07151036709547, 257751.033245591126615 ], [ 362845.947349984489847, 257750.442236118018627 ], [ 362846.7128000035882, 257749.713899999856949 ], [ 362862.058700002729893, 257736.061299998313189 ], [ 362866.988741401059087, 257732.604936110787094 ], [ 362872.304396641557105, 257729.777292414015392 ], [ 362877.925899997353554, 257727.620799999684095 ], [ 362862.031599998474121, 257700.259700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204020400", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".26", "LONGITUDE": -64.87285894, "LATITUDE": 18.34873093, "OBJECTID_1": 7137, "PARCEL_NO_": "103204020400", "Tax_Legal_": "FRYDENDAHL 56-41 EAST END QTR.", "Name": "GEORGES, WINSTON & LEEDA", "Address": "PO Box 10927", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30900, "Improved_V": 35300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.579167235, "SHAPE_Area": 1592.0347500299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364940.674599997699261, 257720.861000001430511 ], [ 364905.864699997007847, 257736.830299999564886 ], [ 364906.597300000488758, 257745.491099998354912 ], [ 364908.953299999237061, 257752.898699998855591 ], [ 364908.928099997341633, 257755.853799998760223 ], [ 364916.924699999392033, 257763.729699999094009 ], [ 364933.839299999177456, 257765.979100000113249 ], [ 364958.795400001108646, 257770.827399998903275 ], [ 364940.674599997699261, 257720.861000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204020300", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.87259015, "LATITUDE": 18.34865169, "OBJECTID_1": 7136, "PARCEL_NO_": "103204020300", "Tax_Legal_": "FRYDENDAHL 56-40 EAST END QTR.", "Name": "AUGUSTIN, ETIENNE", "Address": "7010 Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 36700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.09003368399999, "SHAPE_Area": 1201.6645575099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364979.082699999213219, 257755.794700000435114 ], [ 364962.53490000218153, 257710.485199999064207 ], [ 364940.674599997699261, 257720.861000001430511 ], [ 364958.795400001108646, 257770.827399998903275 ], [ 364969.363799996674061, 257760.781399998813868 ], [ 364977.462899997830391, 257756.625799998641014 ], [ 364979.082699999213219, 257755.794700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004025300", "MAP": "D9-5649-T94", "PARCEL_NAM": "1X1-A", "ACRE": null, "LONGITUDE": -64.90342648, "LATITUDE": 18.34846259, "OBJECTID_1": 6124, "PARCEL_NO_": "103004025300", "Tax_Legal_": "1X-1-A ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "OASIS DEVELOPMENT LLC", "Address": "PO Box 7986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 118100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.79274632200003, "SHAPE_Area": 4951.7987634299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361752.875500001013279, 257671.212000001221895 ], [ 361725.958400003612041, 257649.873599998652935 ], [ 361725.770199999213219, 257649.724399998784065 ], [ 361712.668799996376038, 257640.629099998623133 ], [ 361709.874499998986721, 257643.601100001484156 ], [ 361645.328699998557568, 257712.250500001013279 ], [ 361654.124799996614456, 257716.986900001764297 ], [ 361671.107600003480911, 257726.131499998271465 ], [ 361691.582299999892712, 257737.156300000846386 ], [ 361702.74379999935627, 257728.479299999773502 ], [ 361714.654600001871586, 257717.937600001692772 ], [ 361729.851000003516674, 257699.455400001257658 ], [ 361747.511699996888638, 257677.413800001144409 ], [ 361752.875500001013279, 257671.212000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103043600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89907408000001, "LATITUDE": 18.34856364, "OBJECTID_1": 6655, "PARCEL_NO_": "103103043600", "Tax_Legal_": "WINTBERG 316 GT. NORTHSIDE QTR.", "Name": "LISA BRIN & DENISE WEBSTER", "Address": "PO Box 306724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036724, "Country": "United States", "Land_Value": 62300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.354269794, "SHAPE_Area": 2401.5217091300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362176.085699997842312, 257746.813900001347065 ], [ 362177.695299997925758, 257668.4831000007689 ], [ 362166.403300002217293, 257668.812899999320507 ], [ 362142.987899996340275, 257672.420899998396635 ], [ 362144.849399998784065, 257737.875199999660254 ], [ 362159.321699999272823, 257742.848799999803305 ], [ 362172.195699997246265, 257746.12049999833107 ], [ 362176.085699997842312, 257746.813900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204012300", "MAP": null, "PARCEL_NAM": "12C", "ACRE": null, "LONGITUDE": -64.87398506, "LATITUDE": 18.34864466, "OBJECTID_1": 7077, "PARCEL_NO_": "103204012300", "Tax_Legal_": "FRYDENDAHL 12C 4 EAST END QTR", "Name": "ROGERS, ALFONSO & JACQUELINE", "Address": "PO Box 307875", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60800, "Improved_V": 429800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.07281678199999, "SHAPE_Area": 1166.7721844299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364827.851999998092651, 257712.760400000959635 ], [ 364805.296800002455711, 257710.042700000107288 ], [ 364797.550899997353554, 257767.396699998527765 ], [ 364821.009499996900558, 257758.722800001502037 ], [ 364827.851999998092651, 257712.760400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103050500", "MAP": "G9-3034-T80", "PARCEL_NAM": "215-192", "ACRE": ".165", "LONGITUDE": -64.89194729, "LATITUDE": 18.34875543, "OBJECTID_1": 6724, "PARCEL_NO_": "103103050500", "Tax_Legal_": "ANNAS RETREAT 215-192 NEW QTR.", "Name": "SCATLIFFE, ULRIC & SANDRA", "Address": "215-192 EST ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 126600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.037957226, "SHAPE_Area": 664.14692325099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362931.020199999213219, 257742.409800000488758 ], [ 362918.318800002336502, 257718.874400001019239 ], [ 362915.91610000282526, 257716.954900000244379 ], [ 362910.271899998188019, 257716.908700000494719 ], [ 362896.492700003087521, 257725.239700000733137 ], [ 362913.200499996542931, 257751.763099998235703 ], [ 362931.020199999213219, 257742.409800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104038200", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-141", "ACRE": "0.22", "LONGITUDE": -64.88590474, "LATITUDE": 18.34864127, "OBJECTID_1": 6911, "PARCEL_NO_": "103104038200", "Tax_Legal_": "ANNAS RETREAT 394-141 NEW QTR", "Name": "BARRY, LISTON", "Address": "394-141 ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32700, "Improved_V": 166500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.671550637, "SHAPE_Area": 1081.2397519900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363542.174900002777576, 257703.322700001299381 ], [ 363537.625863804540131, 257706.191563430678798 ], [ 363533.235699996352196, 257709.298099998384714 ], [ 363536.027900002896786, 257715.275199998170137 ], [ 363545.531000003218651, 257735.618000000715256 ], [ 363555.027000002563, 257756.805100001394749 ], [ 363563.131499998271465, 257752.016199998557568 ], [ 363567.168399997055531, 257751.416000001132488 ], [ 363562.663199998438358, 257712.326799999922514 ], [ 363562.121399998664856, 257707.625700000673532 ], [ 363553.816600002348423, 257703.454999998211861 ], [ 363549.963609962898772, 257702.73055275331717 ], [ 363546.043358534225263, 257702.686001764028333 ], [ 363542.174900002777576, 257703.322700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8912501, "LATITUDE": 18.34866955, "OBJECTID_1": 6731, "PARCEL_NO_": "103103051200", "Tax_Legal_": "ANNAS RETREAT 215-198 NEW QTR.", "Name": "PERCIVAL, ANNETTE", "Address": "215-198 ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.268412313, "SHAPE_Area": 708.44784027699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362982.933200001716614, 257743.460099998861551 ], [ 363004.818000003695488, 257729.691399998962879 ], [ 362995.006599999964237, 257709.158500000834465 ], [ 362992.618299998342991, 257705.550299998372793 ], [ 362974.780500002205372, 257717.014499999582767 ], [ 362969.928199999034405, 257718.663499999791384 ], [ 362982.933200001716614, 257743.460099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204017000", "MAP": "A9-494-T96", "PARCEL_NAM": "B-7-B", "ACRE": ".369", "LONGITUDE": -64.8668949, "LATITUDE": 18.34872828, "OBJECTID_1": 7121, "PARCEL_NO_": "103204017000", "Tax_Legal_": "COKI POINT B-7-B,B-8,B-12 & B-14 EAST END #4", "Name": "ESTATE OF JOSEPHINE B. BELL", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 277600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.122582838, "SHAPE_Area": 1336.21360194 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365587.200499996542931, 257742.195599999278784 ], [ 365555.057700000703335, 257729.055799998342991 ], [ 365535.33219999819994, 257772.80180000141263 ], [ 365573.26129999756813, 257769.312600001692772 ], [ 365576.583599999547005, 257757.940699998289347 ], [ 365579.027699999511242, 257755.005399998277426 ], [ 365584.679099999368191, 257754.207299999892712 ], [ 365587.121399998664856, 257751.4831000007689 ], [ 365587.200499996542931, 257742.195599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203020900", "MAP": null, "PARCEL_NAM": "12A", "ACRE": null, "LONGITUDE": -64.87479294000001, "LATITUDE": 18.34860423, "OBJECTID_1": 7007, "PARCEL_NO_": "103203020900", "Tax_Legal_": "FRYDENDAHL 12A EAST END QUARTER", "Name": "GEORGE, ALBERT H.", "Address": "1330 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 119900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.49063917399999, "SHAPE_Area": 3662.1819972799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364764.212600000202656, 257705.273499999195337 ], [ 364756.962999999523163, 257704.369699999690056 ], [ 364715.072499997913837, 257699.593899998813868 ], [ 364697.173600003123283, 257718.2347999997437 ], [ 364685.592100001871586, 257752.548200000077486 ], [ 364750.792000003159046, 257766.169599998742342 ], [ 364764.212600000202656, 257705.273499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104037100", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-129", "ACRE": "0.19", "LONGITUDE": -64.887136, "LATITUDE": 18.34873961, "OBJECTID_1": 6902, "PARCEL_NO_": "103104037100", "Tax_Legal_": "ANNAS RETREAT 394-129 NEW QTR", "Name": "BRYAN, GERALD A & ANDREA C & ANDRE WARD", "Address": "PO Box 9076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 188200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.242574062, "SHAPE_Area": 756.57176725 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363439.158900000154972, 257727.570199999958277 ], [ 363430.348800003528595, 257720.532000001519918 ], [ 363411.801899999380112, 257720.591299999505281 ], [ 363408.335600003600121, 257748.849500000476837 ], [ 363418.796099998056889, 257751.468199998140335 ], [ 363427.636799998581409, 257754.918099999427795 ], [ 363439.158900000154972, 257727.570199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104037500", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-138", "ACRE": "0.14", "LONGITUDE": -64.88639388, "LATITUDE": 18.34878306, "OBJECTID_1": 6905, "PARCEL_NO_": "103104037500", "Tax_Legal_": "ANNAS RETREAT 394-138 NEW QTR", "Name": "ORTIZ, RAMON LUIS", "Address": "PO Box 7871", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 114100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.054444949000001, "SHAPE_Area": 575.833879314 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363507.695500001311302, 257728.131099998950958 ], [ 363506.335100002586842, 257724.882500000298023 ], [ 363506.32379999756813, 257724.886300001293421 ], [ 363504.034210067009553, 257726.001505176187493 ], [ 363501.607237751304638, 257726.773327701841481 ], [ 363499.094067086465657, 257727.185490098810988 ], [ 363496.547700002789497, 257727.229299999773502 ], [ 363494.778300002217293, 257729.925299998372793 ], [ 363483.340700000524521, 257747.352400001138449 ], [ 363497.809399999678135, 257752.748199999332428 ], [ 363503.435599997639656, 257754.905200000852346 ], [ 363512.340999998152256, 257750.75620000064373 ], [ 363516.388700000941753, 257748.889499999582767 ], [ 363507.695500001311302, 257728.131099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104042000", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-110", "ACRE": "0.16", "LONGITUDE": -64.88494109, "LATITUDE": 18.34871788, "OBJECTID_1": 6946, "PARCEL_NO_": "103104042000", "Tax_Legal_": "ANNAS RETREAT 394-110 NEW QTR", "Name": "BAKER, WILLOUGHBY & GLADYS", "Address": "PO Box 7935", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23800, "Improved_V": 202200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.43879891100001, "SHAPE_Area": 800.22988412500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363675.383299998939037, 257732.45890000090003 ], [ 363650.542300000786781, 257714.101500000804663 ], [ 363637.396700002253056, 257742.7027000002563 ], [ 363650.990699999034405, 257756.112799998372793 ], [ 363675.383299998939037, 257732.45890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103047500", "MAP": "C9-229-T78", "PARCEL_NAM": "260-64", "ACRE": "0.28", "LONGITUDE": -64.89438769, "LATITUDE": 18.34873879, "OBJECTID_1": 6694, "PARCEL_NO_": "103103047500", "Tax_Legal_": "ANNAS RETREAT 260-64 NEW QTR", "Name": "FRASER, MACAULAY & LORNA E", "Address": "PO Box 9304", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38400, "Improved_V": 316400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.28726794400001, "SHAPE_Area": 1253.5770864399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362682.047700002789497, 257719.473799999803305 ], [ 362638.569799996912479, 257711.729600001126528 ], [ 362630.274700000882149, 257738.892799999564886 ], [ 362672.9408999979496, 257747.263599999248981 ], [ 362682.047700002789497, 257719.473799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104038100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88570702, "LATITUDE": 18.34867562, "OBJECTID_1": 6910, "PARCEL_NO_": "103104038100", "Tax_Legal_": "ANNAS RETREAT 394-142 NEW QTR", "Name": "PETTY - MATTHIAS, ELVA", "Address": "PO Box 8706", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29700, "Improved_V": 223500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.72165715, "SHAPE_Area": 687.87732628399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363562.121399998664856, 257707.625700000673532 ], [ 363562.663199998438358, 257712.326799999922514 ], [ 363567.168399997055531, 257751.416000001132488 ], [ 363571.194600000977516, 257752.08219999819994 ], [ 363574.398299999535084, 257754.641600001603365 ], [ 363587.552799999713898, 257724.985100001096725 ], [ 363589.032499998807907, 257721.64919999986887 ], [ 363579.481200002133846, 257717.213300000876188 ], [ 363571.435318826290313, 257712.552480533457128 ], [ 363563.209299996495247, 257708.217500001192093 ], [ 363562.121399998664856, 257707.625700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034700", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".44", "LONGITUDE": -64.90859162, "LATITUDE": 18.34868142, "OBJECTID_1": 5843, "PARCEL_NO_": "103003034700", "Tax_Legal_": "WINTBERG 1-143-35 GREAT NORTHSIDE QTR", "Name": "BONELLI, BEVERLY", "Address": "Nye Gade Apt #2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.103619904, "SHAPE_Area": 1740.9667947800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361167.110699996352196, 257692.509300000965595 ], [ 361142.203100003302097, 257681.961800001561642 ], [ 361127.347800001502037, 257721.947999998927116 ], [ 361171.590700000524521, 257734.553599998354912 ], [ 361176.491499997675419, 257727.205400001257658 ], [ 361182.997699998319149, 257720.714699998497963 ], [ 361167.110699996352196, 257692.509300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034500", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".41", "LONGITUDE": -64.90938899, "LATITUDE": 18.34868756, "OBJECTID_1": 5841, "PARCEL_NO_": "103003034500", "Tax_Legal_": "WINTBERG 1-143-38 3 GR NORTHSIDE QTR", "Name": "FRANK J FUREY TRUST", "Address": "11901 Thomas Ave", "City": "Great Falls", "State": "Virginia", "Zip": 22066, "Country": "United States", "Land_Value": 42800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.251412996, "SHAPE_Area": 2313.9690469400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361103.937799997627735, 257724.922800000756979 ], [ 361100.822200000286102, 257712.020599998533726 ], [ 361099.281499996781349, 257703.564300000667572 ], [ 361098.527300000190735, 257697.4364 ], [ 361097.836099997162819, 257683.920699998736382 ], [ 361089.753200002014637, 257686.176600001752377 ], [ 361034.79450000077486, 257700.925500001758337 ], [ 361043.390600003302097, 257733.082100000232458 ], [ 361103.937799997627735, 257724.922800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104033200", "MAP": "A9-167I-71", "PARCEL_NAM": "394-259", "ACRE": ".177", "LONGITUDE": -64.88765553, "LATITUDE": 18.34867914, "OBJECTID_1": 6867, "PARCEL_NO_": "103104033200", "Tax_Legal_": "ANNAS RETREAT 394-259 NEW QTR", "Name": "HOST, ALOMA", "Address": "865 E 172nd St", "City": "Bronx", "State": "New York", "Zip": 10460, "Country": "United States", "Land_Value": 31500, "Improved_V": 194900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.94644523, "SHAPE_Area": 912.28828413700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363372.396799996495247, 257708.025400001555681 ], [ 363371.460799999535084, 257704.931600000709295 ], [ 363364.058925243967678, 257708.32174289424438 ], [ 363356.9662000015378, 257712.318500000983477 ], [ 363347.518500000238419, 257717.936799999326468 ], [ 363348.909500002861023, 257720.07660000026226 ], [ 363369.603900000452995, 257751.910000000149012 ], [ 363384.956200003623962, 257748.23589999973774 ], [ 363378.671099998056889, 257728.763900000602007 ], [ 363372.396799996495247, 257708.025400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103049700", "MAP": "C9-229-T78", "PARCEL_NAM": "253A", "ACRE": "0.54", "LONGITUDE": -64.89721284, "LATITUDE": 18.34845038, "OBJECTID_1": 6716, "PARCEL_NO_": "103103049700", "Tax_Legal_": "ANNAS RETREAT 253A NEW QTR", "Name": "WESLEYAN HOLINESS CHURCH", "Address": "PO Box 812", "City": "FREDERICKSTED", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 113300, "Improved_V": 271800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.88398327499999, "SHAPE_Area": 3216.65903463 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362383.695900000631809, 257718.931699998676777 ], [ 362380.907600000500679, 257667.613200001418591 ], [ 362371.239100001752377, 257666.689699999988079 ], [ 362359.17849999666214, 257662.580200001597404 ], [ 362351.155000001192093, 257657.87049999833107 ], [ 362342.353900000452995, 257649.776900000870228 ], [ 362338.325900003314018, 257649.321699999272823 ], [ 362334.272799998521805, 257651.821699999272823 ], [ 362333.453900001943111, 257653.292599998414516 ], [ 362336.344700001180172, 257692.579700000584126 ], [ 362343.27419999986887, 257731.055399999022484 ], [ 362347.201499998569489, 257743.331000000238419 ], [ 362383.695900000631809, 257718.931699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87678475, "LATITUDE": 18.34864129, "OBJECTID_1": 7027, "PARCEL_NO_": "103203022600", "Tax_Legal_": "FRYDENDAHL 53-22 EAST END QTR.", "Name": "LETTSOME, SIMON", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 95700, "Improved_V": 368600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.662188472, "SHAPE_Area": 2422.13388188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364560.102300003170967, 257716.901799999177456 ], [ 364520.659500002861023, 257708.768500000238419 ], [ 364509.326200000941753, 257713.953099999576807 ], [ 364510.893899999558926, 257719.243299998342991 ], [ 364494.679499998688698, 257729.454100001603365 ], [ 364482.529100000858307, 257735.898600000888109 ], [ 364470.405599996447563, 257739.176899999380112 ], [ 364451.847800001502037, 257740.502599999308586 ], [ 364526.67849999666214, 257759.480200000107288 ], [ 364560.102300003170967, 257716.901799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104033600", "MAP": "A9-167I-71", "PARCEL_NAM": "394-294", "ACRE": ".143", "LONGITUDE": -64.88834393, "LATITUDE": 18.34872892, "OBJECTID_1": 6871, "PARCEL_NO_": "103104033600", "Tax_Legal_": "ANNAS RETREAT 394-294 NEW QTR", "Name": "GRIFFIN, NORRIS & EDELTA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 178800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.128518869900006, "SHAPE_Area": 427.13464213499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363309.232900001108646, 257739.383499998599291 ], [ 363294.089199997484684, 257718.572399999946356 ], [ 363289.220799997448921, 257722.121199999004602 ], [ 363279.483900003135204, 257729.218699999153614 ], [ 363297.86540000140667, 257748.578600000590086 ], [ 363309.232900001108646, 257739.383499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104037300", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-130", "ACRE": "0.16", "LONGITUDE": -64.88738036, "LATITUDE": 18.34874027, "OBJECTID_1": 6904, "PARCEL_NO_": "103104037300", "Tax_Legal_": "ANNAS RETREAT 394-130 NEW QTR", "Name": "HODGE, GWENETTE A.", "Address": "394-130 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 172800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.024169359, "SHAPE_Area": 659.97911942799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363411.801899999380112, 257720.591299999505281 ], [ 363406.152300000190735, 257721.178300000727177 ], [ 363403.713600002229214, 257723.480399999767542 ], [ 363378.671099998056889, 257728.763900000602007 ], [ 363384.956200003623962, 257748.23589999973774 ], [ 363400.281499996781349, 257747.728100001811981 ], [ 363408.335600003600121, 257748.849500000476837 ], [ 363411.801899999380112, 257720.591299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89943697, "LATITUDE": 18.34852185, "OBJECTID_1": 6654, "PARCEL_NO_": "103103043500", "Tax_Legal_": "WINTBERG 315 GR NORTHSIDE QTR", "Name": "WHEATLEY, GLORIA", "Address": "PO Box 8102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 76300, "Improved_V": 189700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.67659892399999, "SHAPE_Area": 2330.9041398099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362142.987899996340275, 257672.420899998396635 ], [ 362092.109300002455711, 257681.503699999302626 ], [ 362088.050800003111362, 257684.636900000274181 ], [ 362088.004000000655651, 257690.124899998307228 ], [ 362115.147100001573563, 257722.222199998795986 ], [ 362123.958999998867512, 257729.049300000071526 ], [ 362129.578000001609325, 257732.050599999725819 ], [ 362144.849399998784065, 257737.875199999660254 ], [ 362142.987899996340275, 257672.420899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104038000", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-139", "ACRE": "0.15", "LONGITUDE": -64.88615755, "LATITUDE": 18.34868003, "OBJECTID_1": 6909, "PARCEL_NO_": "103104038000", "Tax_Legal_": "ANNAS RETREAT 394-139 NEW QTR", "Name": "NIBBS, CECIL & MARILYN", "Address": "139 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 165600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.579430335, "SHAPE_Area": 826.74642560799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363536.027900002896786, 257715.275199998170137 ], [ 363533.235699996352196, 257709.298099998384714 ], [ 363530.53320000320673, 257711.392499998211861 ], [ 363524.117077646602411, 257716.464332965522772 ], [ 363517.436300002038479, 257721.182100001722574 ], [ 363506.335100002586842, 257724.882500000298023 ], [ 363507.695500001311302, 257728.131099998950958 ], [ 363516.388700000941753, 257748.889499999582767 ], [ 363545.531000003218651, 257735.618000000715256 ], [ 363536.027900002896786, 257715.275199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87360481, "LATITUDE": 18.34859682, "OBJECTID_1": 7060, "PARCEL_NO_": "103204010400", "Tax_Legal_": "12Ca ESTATE FRYDENDAHL 4 EAST END", "Name": "TODMAN, LIONEL A. & HENRITA", "Address": "PO Box 668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 163400, "Improved_V": 168100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.35824618000001, "SHAPE_Area": 1974.06297789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364867.321699999272823, 257717.72749999910593 ], [ 364827.851999998092651, 257712.760400000959635 ], [ 364821.009499996900558, 257758.722800001502037 ], [ 364855.788800001144409, 257746.34180000051856 ], [ 364906.762699998915195, 257726.071899998933077 ], [ 364880.204800002276897, 257719.943900000303984 ], [ 364873.765000000596046, 257718.624600000679493 ], [ 364867.321699999272823, 257717.72749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104035300", "MAP": "A9-167I-71", "PARCEL_NAM": "394-306", "ACRE": ".193", "LONGITUDE": -64.88951475, "LATITUDE": 18.34871645, "OBJECTID_1": 6886, "PARCEL_NO_": "103104035300", "Tax_Legal_": "ANNAS RETREAT 394-306 NEW QTR", "Name": "DAVIS, FITZROY(Life Estate)", "Address": "394-306 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 187900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.438085589, "SHAPE_Area": 841.50148729900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363183.640600003302097, 257715.7685999982059 ], [ 363182.387500002980232, 257711.327399998903275 ], [ 363178.233199998736382, 257712.80799999833107 ], [ 363173.850939056777861, 257714.781508043495705 ], [ 363169.707906938565429, 257717.217535513598705 ], [ 363165.852738004585262, 257720.087486289907247 ], [ 363162.330687437730376, 257723.357670500641689 ], [ 363159.183100000023842, 257726.989700000733137 ], [ 363154.620734571653884, 257731.657928012806224 ], [ 363150.448942963441368, 257736.678255278297001 ], [ 363146.694799996912479, 257742.018100000917912 ], [ 363146.522100001573563, 257742.165500000119209 ], [ 363148.719200000166893, 257744.824799999594688 ], [ 363172.930200003087521, 257742.489799998700619 ], [ 363190.685199998319149, 257740.735300000756979 ], [ 363183.640600003302097, 257715.7685999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104036400", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-137", "ACRE": "0.14", "LONGITUDE": -64.88659302000001, "LATITUDE": 18.34870313, "OBJECTID_1": 6896, "PARCEL_NO_": "103104036400", "Tax_Legal_": "ANNAS RETREAT 394-137. NEW QTR", "Name": "HODGE, DAISY I", "Address": "394-137 TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 156900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.323113449100006, "SHAPE_Area": 562.53475817499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363491.126400001347065, 257720.151200000196695 ], [ 363488.410499997437, 257720.162799999117851 ], [ 363471.476199999451637, 257720.235300000756979 ], [ 363464.853000000119209, 257740.446100000292063 ], [ 363479.321699999272823, 257745.841899998486042 ], [ 363483.340700000524521, 257747.352400001138449 ], [ 363494.778300002217293, 257729.925299998372793 ], [ 363496.547700002789497, 257727.229299999773502 ], [ 363494.549800001084805, 257727.002900000661612 ], [ 363493.750280306732748, 257726.692264828161569 ], [ 363493.012093680619728, 257726.255450843513245 ], [ 363492.354988791048527, 257725.704144108371111 ], [ 363491.796545130724553, 257725.053093703027116 ], [ 363491.351702713698614, 257724.319717144855531 ], [ 363491.032362385769375, 257723.523634418583242 ], [ 363490.847067442140542, 257722.686143083730713 ], [ 363490.800775068695657, 257721.829648502141936 ], [ 363490.894723722944036, 257720.977064428618178 ], [ 363491.126400001347065, 257720.151200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103047700", "MAP": "C9-229-T78", "PARCEL_NAM": "260-62", "ACRE": "0.28", "LONGITUDE": -64.89477555000001, "LATITUDE": 18.34866401, "OBJECTID_1": 6696, "PARCEL_NO_": "103103047700", "Tax_Legal_": "260-62 ANNA'S RETREAT NEW QTR", "Name": "DOOBAY, PATRANI", "Address": "PO Box 6005", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43600, "Improved_V": 63200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.15734712, "SHAPE_Area": 1149.3242548000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362638.569799996912479, 257711.729600001126528 ], [ 362599.143200002610683, 257701.696699999272823 ], [ 362593.24549999833107, 257731.412599999457598 ], [ 362630.274700000882149, 257738.892799999564886 ], [ 362638.569799996912479, 257711.729600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103047400", "MAP": "C9-229-T78", "PARCEL_NAM": "260-75", "ACRE": "0.34", "LONGITUDE": -64.89383632000001, "LATITUDE": 18.34864635, "OBJECTID_1": 6693, "PARCEL_NO_": "103103047400", "Tax_Legal_": "260-75 ANNAS RETREAT NEW QTR", "Name": "LETTSOME, ARNOLD S", "Address": "6795 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52900, "Improved_V": 242600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.03859289600001, "SHAPE_Area": 1478.6765928699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362753.770000003278255, 257724.704799998551607 ], [ 362699.968199998140335, 257698.300000000745058 ], [ 362691.878100000321865, 257701.400199998170137 ], [ 362682.047700002789497, 257719.473799999803305 ], [ 362723.806900002062321, 257739.658300001174212 ], [ 362753.770000003278255, 257724.704799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004022500", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-53", "ACRE": ".34", "LONGITUDE": -64.90623268, "LATITUDE": 18.34864533, "OBJECTID_1": 6098, "PARCEL_NO_": "103004022500", "Tax_Legal_": "WINTBERG 1-143-53 GR. NORTHSIDE QTR", "Name": "JOHN,JR., TIMOTHY A.", "Address": "6535 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32500, "Improved_V": 117600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.177298218, "SHAPE_Area": 1468.5483577800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361425.001199997961521, 257709.81870000064373 ], [ 361423.552199997007847, 257690.597300000488758 ], [ 361410.652999997138977, 257690.280699998140335 ], [ 361395.34740000218153, 257688.466699998825788 ], [ 361392.923100002110004, 257689.080099999904633 ], [ 361388.058300003409386, 257692.206700000911951 ], [ 361386.427699998021126, 257694.304299999028444 ], [ 361384.779100000858307, 257698.512699998915195 ], [ 361382.174900002777576, 257720.234000001102686 ], [ 361382.96679999679327, 257721.929200001060963 ], [ 361384.572300001978874, 257722.786699999123812 ], [ 361384.532700002193451, 257727.430500000715256 ], [ 361426.487899996340275, 257724.607400000095367 ], [ 361425.001199997961521, 257709.81870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034600", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-36", "ACRE": ".47", "LONGITUDE": -64.90895028, "LATITUDE": 18.34858611, "OBJECTID_1": 5842, "PARCEL_NO_": "103003034600", "Tax_Legal_": "WINTBERG 1-143-36 GREAT NORTHSIDE QTR", "Name": "RODGERS FAMILY TRUST", "Address": "1280 Serena Dr", "City": "Winter Park", "State": "Florida", "Zip": 32789, "Country": "United States", "Land_Value": 49000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.622579909, "SHAPE_Area": 1522.7613233100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361142.203100003302097, 257681.961800001561642 ], [ 361099.497299998998642, 257678.2347999997437 ], [ 361097.836099997162819, 257683.920699998736382 ], [ 361098.527300000190735, 257697.4364 ], [ 361099.281499996781349, 257703.564300000667572 ], [ 361100.822200000286102, 257712.020599998533726 ], [ 361103.937799997627735, 257724.922800000756979 ], [ 361108.781000003218651, 257724.329199999570847 ], [ 361127.347800001502037, 257721.947999998927116 ], [ 361142.203100003302097, 257681.961800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104041600", "MAP": "A9-167A-T71", "PARCEL_NAM": "394-14", "ACRE": "0.18", "LONGITUDE": -64.88433622, "LATITUDE": 18.34863613, "OBJECTID_1": 6942, "PARCEL_NO_": "103104041600", "Tax_Legal_": "ANNAS RETREAT 394-14 NEW QTR", "Name": "WARRINGTON, LOLA", "Address": "394-14 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 195000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.819882221, "SHAPE_Area": 743.55065095099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363723.95269999653101, 257710.480500001460314 ], [ 363694.824699997901917, 257722.063299998641014 ], [ 363724.455099999904633, 257746.159400001168251 ], [ 363734.242299996316433, 257733.151700001209974 ], [ 363734.3125, 257724.919700000435114 ], [ 363723.95269999653101, 257710.480500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204020200", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.87239833, "LATITUDE": 18.34854775, "OBJECTID_1": 7135, "PARCEL_NO_": "103204020200", "Tax_Legal_": "FRYDENDAHL 56-39 EAST END QTR.", "Name": "THOMAS, DOLORES", "Address": "2337 Tiffany Cir", "City": "Decatur", "State": "Georgia", "Zip": 30035, "Country": "United States", "Land_Value": 24900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.77432065, "SHAPE_Area": 1031.9695632600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364996.897100001573563, 257747.074499998241663 ], [ 364983.585400000214577, 257700.524999998509884 ], [ 364962.53490000218153, 257710.485199999064207 ], [ 364979.082699999213219, 257755.794700000435114 ], [ 364996.897100001573563, 257747.074499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024800", "MAP": "D9-8477-T010", "PARCEL_NAM": "1-143-9-1", "ACRE": ".05", "LONGITUDE": -64.90724977000001, "LATITUDE": 18.34867153, "OBJECTID_1": 6119, "PARCEL_NO_": "103004024800", "Tax_Legal_": "WINTBERG 1-143-12 & 1-143-9-1 GREAT NORTHSIDE QTR", "Name": "BETRAND, BENJAMIN & ROSALIND", "Address": "18306 Wild Orchid Dr", "City": "Houston", "State": "Texas", "Zip": 77084, "Country": "United States", "Land_Value": 39600, "Improved_V": 124800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.098462503099995, "SHAPE_Area": 320.98058012400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361320.221900001168251, 257704.105999998748302 ], [ 361294.85249999910593, 257703.540699999779463 ], [ 361280.886399999260902, 257712.086899999529123 ], [ 361285.944099999964237, 257721.668299999088049 ], [ 361320.221900001168251, 257704.105999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103045000", "MAP": "C9-229-T78", "PARCEL_NAM": "250", "ACRE": "0.54", "LONGITUDE": -64.8957738, "LATITUDE": 18.34851627, "OBJECTID_1": 6669, "PARCEL_NO_": "103103045000", "Tax_Legal_": "ANNAS RETREAT 250 NEW QTR", "Name": "PETERS, CARDINAL", "Address": "PO Box 597", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 82500, "Improved_V": 316200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.576058953, "SHAPE_Area": 2332.26380268 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362494.232799999415874, 257670.264199998229742 ], [ 362487.816799998283386, 257730.89979999884963 ], [ 362530.31530000269413, 257735.33049999922514 ], [ 362529.618699997663498, 257722.448100000619888 ], [ 362529.685199998319149, 257714.638199999928474 ], [ 362525.221400000154972, 257670.694200001657009 ], [ 362494.232799999415874, 257670.264199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104035500", "MAP": "A9-167I-71", "PARCEL_NAM": "394-305", "ACRE": ".178", "LONGITUDE": -64.88925248, "LATITUDE": 18.34863042, "OBJECTID_1": 6888, "PARCEL_NO_": "103104035500", "Tax_Legal_": "ANNAS RETREAT 394-305 NEW QTR", "Name": "DOWERS, ST CLAIRE & MONA", "Address": "394-305 Hidden Vly", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 152900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.347377577, "SHAPE_Area": 804.856236276 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363205.538199998438358, 257706.034699998795986 ], [ 363197.710148481302895, 257707.28681711430545 ], [ 363189.981980993412435, 257709.053626414766768 ], [ 363182.387500002980232, 257711.327399998903275 ], [ 363183.640600003302097, 257715.7685999982059 ], [ 363190.685199998319149, 257740.735300000756979 ], [ 363207.63400000333786, 257738.974199999123812 ], [ 363213.526299998164177, 257709.891499999910593 ], [ 363214.332099996507168, 257705.914299998432398 ], [ 363213.143831949972082, 257705.344905354897492 ], [ 363211.882470731856301, 257704.963907864381326 ], [ 363210.577684198506176, 257704.780268781265477 ], [ 363209.260161591868382, 257704.798307390126865 ], [ 363207.96089171274798, 257705.017599413666176 ], [ 363206.71043404849479, 257705.432986992178485 ], [ 363205.538199998438358, 257706.034699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104041200", "MAP": "C9-217-T77", "PARCEL_NAM": "394-8", "ACRE": "0.15", "LONGITUDE": -64.88390734, "LATITUDE": 18.34860177, "OBJECTID_1": 6938, "PARCEL_NO_": "103104041200", "Tax_Legal_": "ANNAS RETREAT 394-8 NEW QTR", "Name": "GUMBS, YASMEEN & NAILAH", "Address": "PO Box 670324", "City": "Flushing", "State": "New York", "Zip": 11367, "Country": "United States", "Land_Value": 22300, "Improved_V": 38400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.15058735700001, "SHAPE_Area": 739.212356978 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363762.713200002908707, 257704.042700000107288 ], [ 363759.432199999690056, 257710.559799998998642 ], [ 363744.799900002777576, 257724.37220000103116 ], [ 363744.780100002884865, 257726.694099999964237 ], [ 363756.010999999940395, 257733.541000001132488 ], [ 363763.208400003612041, 257740.565999999642372 ], [ 363765.593199998140335, 257744.5962999984622 ], [ 363767.198600001633167, 257745.45380000025034 ], [ 363768.816699996590614, 257744.833799999207258 ], [ 363775.441600002348423, 257724.411899998784065 ], [ 363778.713600002229214, 257718.950199998915195 ], [ 363781.967600002884865, 257715.599399998784065 ], [ 363762.713200002908707, 257704.042700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103050700", "MAP": "G9-3034-T80", "PARCEL_NAM": "215-195", "ACRE": ".145", "LONGITUDE": -64.89173817, "LATITUDE": 18.34862947, "OBJECTID_1": 6726, "PARCEL_NO_": "103103050700", "Tax_Legal_": "ANNAS RETREAT 215-195 NEW QTR.", "Name": "PEMBERTON, JAMES N", "Address": "Po Box 8795", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 118000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.517470826899995, "SHAPE_Area": 587.979948326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362937.821400001645088, 257701.302200000733137 ], [ 362924.859300002455711, 257708.3733000010252 ], [ 362923.232199996709824, 257710.048700001090765 ], [ 362922.38459999859333, 257714.896899998188019 ], [ 362935.0878000035882, 257738.221200000494719 ], [ 362951.305699996650219, 257727.588100001215935 ], [ 362937.821400001645088, 257701.302200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104035700", "MAP": "A9-167I-71", "PARCEL_NAM": "394-303", "ACRE": ".192", "LONGITUDE": -64.88877352, "LATITUDE": 18.34865539, "OBJECTID_1": 6890, "PARCEL_NO_": "103104035700", "Tax_Legal_": "ANNAS RETREAT 394-303 NEW QTR", "Name": "WARRELL, LEON & CYNTHIA", "Address": "394-303 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 225400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.541242959, "SHAPE_Area": 1004.04245766 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363256.280699998140335, 257707.919399999082088 ], [ 363253.597099997103214, 257703.206399999558926 ], [ 363245.64919999986887, 257707.51630000025034 ], [ 363242.662036641559098, 257709.36144753973349 ], [ 363239.419718655990437, 257710.708699725393672 ], [ 363236.004569285549223, 257711.523849496414186 ], [ 363232.503300003707409, 257711.786200001835823 ], [ 363232.818499997258186, 257717.015500001609325 ], [ 363234.231499999761581, 257740.458399999886751 ], [ 363239.87389999628067, 257740.715700000524521 ], [ 363262.457800000905991, 257740.056200001388788 ], [ 363271.375799998641014, 257734.42960000038147 ], [ 363256.280699998140335, 257707.919399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104035600", "MAP": "A9-167I-71", "PARCEL_NAM": "394-304", "ACRE": ".158", "LONGITUDE": -64.88903644, "LATITUDE": 18.34866064, "OBJECTID_1": 6889, "PARCEL_NO_": "103104035600", "Tax_Legal_": "ANNAS RETREAT 394-304 NEW QTR", "Name": "RICHARDS, LEONICE", "Address": "394-2A ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 217800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.352767513, "SHAPE_Area": 687.06276149200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363214.534100003540516, 257706.034699998795986 ], [ 363214.332099996507168, 257705.914299998432398 ], [ 363213.526299998164177, 257709.891499999910593 ], [ 363207.63400000333786, 257738.974199999123812 ], [ 363234.231499999761581, 257740.458399999886751 ], [ 363232.818499997258186, 257717.015500001609325 ], [ 363232.503300003707409, 257711.786200001835823 ], [ 363229.085115914349444, 257711.502312570781214 ], [ 363225.752400003373623, 257710.691399998962879 ], [ 363220.062947093218099, 257708.556505050306441 ], [ 363214.534100003540516, 257706.034699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8715811, "LATITUDE": 18.34858547, "OBJECTID_1": 7170, "PARCEL_NO_": "103204023900", "Tax_Legal_": "FRYDENDAHL 56-19 EAST END QTR.", "Name": "YAN, REALTHA & DEVEDI", "Address": "2427 Fripp Ter", "City": "Riverdale", "State": "Georgia", "Zip": 30296, "Country": "United States", "Land_Value": 24900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.189992473, "SHAPE_Area": 930.013624607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365087.243600003421307, 257743.169900000095367 ], [ 365068.969999998807907, 257711.145199999213219 ], [ 365046.294299997389317, 257722.56980000063777 ], [ 365064.564400002360344, 257755.016600001603365 ], [ 365071.054499998688698, 257750.425700001418591 ], [ 365087.243600003421307, 257743.169900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90572254, "LATITUDE": 18.34861034, "OBJECTID_1": 6097, "PARCEL_NO_": "103004022400", "Tax_Legal_": "WINTBERG 1-143-54A 3 GR NORTHSIDE QTR", "Name": "HAWLEY, MICHAEL & JANNEY", "Address": "PO Box 12156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.34187935700001, "SHAPE_Area": 1368.21222081 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361472.481899999082088, 257720.973099999129772 ], [ 361470.894500002264977, 257718.004799999296665 ], [ 361466.067400000989437, 257716.698699999600649 ], [ 361467.73030000180006, 257710.801699999719858 ], [ 361472.559199996292591, 257711.896699998527765 ], [ 361474.990800000727177, 257710.438999999314547 ], [ 361475.83839999884367, 257705.590700000524521 ], [ 361479.126599997282028, 257698.229400001466274 ], [ 361488.917400002479553, 257684.799499999731779 ], [ 361488.946199998259544, 257681.4222999997437 ], [ 361480.906499996781349, 257678.612199999392033 ], [ 361473.653300002217293, 257678.130699999630451 ], [ 361454.109300002455711, 257700.557700000703335 ], [ 361425.001199997961521, 257709.81870000064373 ], [ 361426.487899996340275, 257724.607400000095367 ], [ 361472.481899999082088, 257720.973099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104042100", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-111", "ACRE": "0.14", "LONGITUDE": -64.88512366, "LATITUDE": 18.34861511, "OBJECTID_1": 6947, "PARCEL_NO_": "103104042100", "Tax_Legal_": "394-111 ANNAS RETREAT NEW QUARTER", "Name": "BOYNES, CHRISTINE", "Address": "6779 Victoria Dr", "City": "Morrow", "State": "Georgia", "Zip": 30260, "Country": "United States", "Land_Value": 20800, "Improved_V": 73900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.579501204, "SHAPE_Area": 610.87472178400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363650.542300000786781, 257714.101500000804663 ], [ 363648.936800003051758, 257713.243999999016523 ], [ 363633.683399997651577, 257705.308699999004602 ], [ 363619.740599997341633, 257732.847899999469519 ], [ 363637.396700002253056, 257742.7027000002563 ], [ 363650.542300000786781, 257714.101500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104039600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89102181, "LATITUDE": 18.34854443, "OBJECTID_1": 6924, "PARCEL_NO_": "103104039600", "Tax_Legal_": "ANNAS RETREAT 215-201 NEW QTR.", "Name": "BERNICE COUMARBATCH FAMILY TRUST", "Address": "PO Box 9961", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 105000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.638998939, "SHAPE_Area": 685.60364109700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363004.818000003695488, 257729.691399998962879 ], [ 363029.444799996912479, 257714.197599999606609 ], [ 363019.285899996757507, 257698.802499998360872 ], [ 363023.342699997127056, 257695.880399998277426 ], [ 363019.354299999773502, 257690.781500000506639 ], [ 363016.931699998676777, 257691.183899998664856 ], [ 363007.176899999380112, 257700.392200000584126 ], [ 362995.006599999964237, 257709.158500000834465 ], [ 363004.818000003695488, 257729.691399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104033500", "MAP": "A9-167I-71", "PARCEL_NAM": "394-295", "ACRE": ".140", "LONGITUDE": -64.88819619, "LATITUDE": 18.34862431, "OBJECTID_1": 6870, "PARCEL_NO_": "103104033500", "Tax_Legal_": "ANNAS RETREAT 394-295 NEW QTR", "Name": "BRITTANE M PETER", "Address": "349-295 Hidden Valley", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 111500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.980517415400001, "SHAPE_Area": 572.32204953500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363327.095899999141693, 257724.964299999177456 ], [ 363312.742299996316433, 257706.059500001370907 ], [ 363303.831500001251698, 257710.841699998825788 ], [ 363294.089199997484684, 257718.572399999946356 ], [ 363309.232900001108646, 257739.383499998599291 ], [ 363327.095899999141693, 257724.964299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104036800", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-135", "ACRE": "0.21", "LONGITUDE": -64.88677791000001, "LATITUDE": 18.34854715, "OBJECTID_1": 6899, "PARCEL_NO_": "103104036800", "Tax_Legal_": "ANNAS RETREAT 394-135 NEW QTR", "Name": "JONATHAN S PETERS TRUST", "Address": "PO Box 302242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31200, "Improved_V": 159700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.947302709, "SHAPE_Area": 866.87991077900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363450.739900000393391, 257693.318300001323223 ], [ 363450.724200002849102, 257695.156500000506639 ], [ 363450.386200003325939, 257734.839299999177456 ], [ 363457.619599997997284, 257737.642700001597404 ], [ 363464.853000000119209, 257740.446100000292063 ], [ 363471.476199999451637, 257720.235300000756979 ], [ 363470.881999999284744, 257695.321400001645088 ], [ 363470.843500003218651, 257693.709199998527765 ], [ 363450.739900000393391, 257693.318300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034400", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-34", "ACRE": ".24", "LONGITUDE": -64.90828331, "LATITUDE": 18.3485375, "OBJECTID_1": 5840, "PARCEL_NO_": "103003034400", "Tax_Legal_": "WINTBERG 1-143-34 GR NORTHSIDE QTR", "Name": "LAING, SAMUEL A. & BETH A. , TR", "Address": "PO Box 8224", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 227800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.48754626499999, "SHAPE_Area": 1084.39083919 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361211.450699999928474, 257693.716499999165535 ], [ 361187.453699998557568, 257670.933100000023842 ], [ 361167.110699996352196, 257692.509300000965595 ], [ 361182.997699998319149, 257720.714699998497963 ], [ 361191.942699998617172, 257711.921999998390675 ], [ 361197.648000001907349, 257704.791499998420477 ], [ 361211.450699999928474, 257693.716499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024600", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-10", "ACRE": ".35", "LONGITUDE": -64.90765558, "LATITUDE": 18.34857286, "OBJECTID_1": 6117, "PARCEL_NO_": "103004024600", "Tax_Legal_": "WINTBERG 1-143-10 3 GR NORTHSIDE", "Name": "FLEMING, JOHN E. & JOEL E.", "Address": "6873 Upper Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.22674250700001, "SHAPE_Area": 1251.02379995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361263.182300001382828, 257679.152300000190735 ], [ 361230.863300003111362, 257686.69819999858737 ], [ 361231.592299997806549, 257695.781199999153614 ], [ 361233.174300000071526, 257699.382800001651049 ], [ 361237.146600000560284, 257706.381400000303984 ], [ 361239.551100000739098, 257708.089800000190735 ], [ 361249.117200002074242, 257721.044799998402596 ], [ 361279.058600001037121, 257708.624200001358986 ], [ 361263.182300001382828, 257679.152300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103047900", "MAP": "C9-229-T78", "PARCEL_NAM": "260-60", "ACRE": "0.28", "LONGITUDE": -64.89514086, "LATITUDE": 18.3486082, "OBJECTID_1": 6698, "PARCEL_NO_": "103103047900", "Tax_Legal_": "ANNAS RETREAT 260-60 NEW QTR", "Name": "MITCHEL, ROBERT D. & DAVINA", "Address": "PO Box 502694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 43600, "Improved_V": 244400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.61839754299999, "SHAPE_Area": 1125.2431129199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362599.143200002610683, 257701.696699999272823 ], [ 362595.11879999935627, 257700.819299999624491 ], [ 362566.093400001525879, 257700.370700001716614 ], [ 362560.434799998998642, 257702.013099998235703 ], [ 362555.584299996495247, 257703.451099999248981 ], [ 362552.994599997997284, 257723.483800001442432 ], [ 362593.24549999833107, 257731.412599999457598 ], [ 362599.143200002610683, 257701.696699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103044800", "MAP": "C9-229-T78", "PARCEL_NAM": "251", "ACRE": "0.54", "LONGITUDE": -64.89613828, "LATITUDE": 18.34848466, "OBJECTID_1": 6667, "PARCEL_NO_": "103103044800", "Tax_Legal_": "ANNAS RETREAT 251 NEW QTR", "Name": "NICHOLSON, ALPHEUS & ANN", "Address": "251 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73100, "Improved_V": 221900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.48857758700001, "SHAPE_Area": 2360.8625179800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362488.132799997925758, 257670.179499998688698 ], [ 362455.075800001621246, 257669.697900000959635 ], [ 362447.331699997186661, 257726.840799998492002 ], [ 362481.976099997758865, 257730.290800001472235 ], [ 362487.816799998283386, 257730.89979999884963 ], [ 362494.232799999415874, 257670.264199998229742 ], [ 362488.132799997925758, 257670.179499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86971408, "LATITUDE": 18.34854335, "OBJECTID_1": 7113, "PARCEL_NO_": "103204016200", "Tax_Legal_": "FRYDENDAHL 56-60 EAST END QTR.", "Name": "FAHIE, PEGGY", "Address": "PO Box 307341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35700, "Improved_V": 265400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.39120826300001, "SHAPE_Area": 1144.72741099 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365288.936800003051758, 257731.310699999332428 ], [ 365284.13849999755621, 257726.627399999648333 ], [ 365287.392499998211861, 257723.276500001549721 ], [ 365286.611400000751019, 257720.314800001680851 ], [ 365284.210500001907349, 257718.184200000017881 ], [ 365268.924699999392033, 257714.048300001770258 ], [ 365250.406499996781349, 257710.730399999767542 ], [ 365245.307899996638298, 257741.297200001776218 ], [ 365252.465800002217293, 257752.965900000184774 ], [ 365288.936800003051758, 257731.310699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104035000", "MAP": "D9-3128-T85", "PARCEL_NAM": "394-286", "ACRE": null, "LONGITUDE": -64.88997361, "LATITUDE": 18.34860694, "OBJECTID_1": 6883, "PARCEL_NO_": "103104035000", "Tax_Legal_": "ANNAS RETREAT 394-286 NEW QTR", "Name": "VANTERPOOL, EDWARD", "Address": "8609 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.362640719, "SHAPE_Area": 699.64793326799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363138.503300003707409, 257713.499299999326468 ], [ 363111.988499999046326, 257702.305500000715256 ], [ 363110.357900001108646, 257704.403000000864267 ], [ 363107.064300000667572, 257712.397599998861551 ], [ 363106.22919999808073, 257715.768300000578165 ], [ 363106.164499998092651, 257723.36710000038147 ], [ 363133.48200000077486, 257734.989799998700619 ], [ 363133.872000001370907, 257735.155699998140335 ], [ 363133.958749469020404, 257733.999088408163516 ], [ 363134.230490628222469, 257732.871510214608861 ], [ 363134.680140495183878, 257731.802355951978825 ], [ 363135.295978862850461, 257730.81949332417571 ], [ 363136.061953790136613, 257729.94854082778329 ], [ 363136.958099998533726, 257729.212200000882149 ], [ 363139.08389999717474, 257728.306200001388788 ], [ 363138.503300003707409, 257713.499299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037800", "MAP": "D9-9415-T019", "PARCEL_NAM": "333 REM", "ACRE": "0.39", "LONGITUDE": -64.9025445, "LATITUDE": 18.34848431, "OBJECTID_1": 6195, "PARCEL_NO_": "103004037800", "Tax_Legal_": "WINTBERG 333 GREAT NORTHSIDE QTR", "Name": "HENDRICKS, ARTHUR & MARY", "Address": "PO Box 7934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63700, "Improved_V": 287400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.90314118399999, "SHAPE_Area": 1924.4270101 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361804.118000000715256, 257666.869600001722574 ], [ 361769.592600002884865, 257690.082400001585484 ], [ 361761.040799997746944, 257705.5641999989748 ], [ 361788.565399996936321, 257722.504599999636412 ], [ 361790.089199997484684, 257723.550700001418591 ], [ 361797.618900001049042, 257714.515000000596046 ], [ 361803.368900001049042, 257708.080400001257658 ], [ 361812.267700001597404, 257698.63399999961257 ], [ 361823.271300002932549, 257687.672499999403954 ], [ 361830.270599998533726, 257680.381499998271465 ], [ 361828.468699999153614, 257679.409499999135733 ], [ 361804.118000000715256, 257666.869600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104036000", "MAP": "A9-167I-71", "PARCEL_NAM": "394-302", "ACRE": ".161", "LONGITUDE": -64.88856435, "LATITUDE": 18.3485463, "OBJECTID_1": 6892, "PARCEL_NO_": "103104036000", "Tax_Legal_": "ANNAS RETREAT 394-302 NEW QTR", "Name": "GRAHAM, WINIFRED-TRUSTEE", "Address": "PO Box 502572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21900, "Improved_V": 132900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.19730325499999, "SHAPE_Area": 761.93422335599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363275.722099997103214, 257697.523800000548363 ], [ 363273.128899998962879, 257692.798500001430511 ], [ 363253.597099997103214, 257703.206399999558926 ], [ 363256.280699998140335, 257707.919399999082088 ], [ 363271.375799998641014, 257734.42960000038147 ], [ 363279.483900003135204, 257729.218699999153614 ], [ 363289.220799997448921, 257722.121199999004602 ], [ 363275.722099997103214, 257697.523800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103044600", "MAP": "C9-229-T78", "PARCEL_NAM": "252", "ACRE": "0.54", "LONGITUDE": -64.89651898, "LATITUDE": 18.34846145, "OBJECTID_1": 6665, "PARCEL_NO_": "103103044600", "Tax_Legal_": "ANNAS RETREAT 252 NEW QTR", "Name": "GIDEON, GARFIELD", "Address": "PO BOX 302396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 73100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.579037793, "SHAPE_Area": 2285.46157515 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362455.075800001621246, 257669.697900000959635 ], [ 362413.154700003564358, 257668.510400000959635 ], [ 362407.856499999761581, 257722.506999999284744 ], [ 362413.493500001728535, 257723.39750000089407 ], [ 362442.497400000691414, 257726.379099998623133 ], [ 362447.331699997186661, 257726.840799998492002 ], [ 362455.075800001621246, 257669.697900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104036900", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-134", "ACRE": "0.17", "LONGITUDE": -64.88696471, "LATITUDE": 18.34850982, "OBJECTID_1": 6900, "PARCEL_NO_": "103104036900", "Tax_Legal_": "ANNAS RETREAT 394-134 NEW QTR", "Name": "BROWN, CLAUDETTE", "Address": "394-134 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 262600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.46772212899999, "SHAPE_Area": 726.34072384399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363430.520499996840954, 257693.136199999600649 ], [ 363428.8412000015378, 257693.179800000041723 ], [ 363428.951999999582767, 257695.189399998635054 ], [ 363430.348800003528595, 257720.532000001519918 ], [ 363439.158900000154972, 257727.570199999958277 ], [ 363450.386200003325939, 257734.839299999177456 ], [ 363450.724200002849102, 257695.156500000506639 ], [ 363450.739900000393391, 257693.318300001323223 ], [ 363430.520499996840954, 257693.136199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204020100", "MAP": "A9-290-T81", "PARCEL_NAM": null, "ACRE": ".25", "LONGITUDE": -64.87218287, "LATITUDE": 18.34846126, "OBJECTID_1": 7134, "PARCEL_NO_": "103204020100", "Tax_Legal_": "FRYDENDAHL 56-38 EAST END QTR.", "Name": "DALY, VIOLET", "Address": "PO Box 895", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 27000, "Improved_V": 33100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.39804586299999, "SHAPE_Area": 1329.8272444700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364996.897100001573563, 257747.074499998241663 ], [ 364998.51690000295639, 257746.243400000035763 ], [ 365019.570900000631809, 257735.861099999397993 ], [ 365024.430399999022484, 257733.36769999936223 ], [ 365007.058300003409386, 257690.162500001490116 ], [ 364983.585400000214577, 257700.524999998509884 ], [ 364996.897100001573563, 257747.074499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104035200", "MAP": "A9-167I-71", "PARCEL_NAM": "394-207", "ACRE": ".230", "LONGITUDE": -64.88971487000001, "LATITUDE": 18.34854635, "OBJECTID_1": 6885, "PARCEL_NO_": "103104035200", "Tax_Legal_": "ANNAS RETREAT 394-307 NEW QTR", "Name": "JAMES, BERNARD & JULIETE", "Address": "PO BOX 306921", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 158500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.284656134700001, "SHAPE_Area": 493.10629696299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363165.848600000143051, 257712.826799999922514 ], [ 363151.566100001335144, 257694.607799999415874 ], [ 363149.132799997925758, 257696.276700001209974 ], [ 363138.503300003707409, 257713.499299999326468 ], [ 363139.08389999717474, 257728.306200001388788 ], [ 363152.727300003170967, 257722.438900001347065 ], [ 363159.14038180722855, 257717.431407386757201 ], [ 363165.848600000143051, 257712.826799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103051600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89225059, "LATITUDE": 18.34852033, "OBJECTID_1": 6733, "PARCEL_NO_": "103103051600", "Tax_Legal_": "ANNAS RETREAT 215-184 NEW QTR.", "Name": "EDWARDS, TERENCE M.", "Address": "PO Box 7634", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 94600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.02170097299999, "SHAPE_Area": 868.14145135199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362901.429399996995926, 257713.669900000095367 ], [ 362887.948700003325939, 257686.961800001561642 ], [ 362862.031599998474121, 257700.259700000286102 ], [ 362877.925899997353554, 257727.620799999684095 ], [ 362901.429399996995926, 257713.669900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037700", "MAP": "C9-118-T71", "PARCEL_NAM": "331", "ACRE": "0.57", "LONGITUDE": -64.90195724, "LATITUDE": 18.34838852, "OBJECTID_1": 6194, "PARCEL_NO_": "103004037700", "Tax_Legal_": "WINTBERG 331 GREAT NORTHSIDE QTR", "Name": "SCATLIFFE, COLLIN", "Address": "PO Box 8813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56700, "Improved_V": 11400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.39764426100001, "SHAPE_Area": 2124.42313857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361823.271300002932549, 257687.672499999403954 ], [ 361853.7128000035882, 257716.294700000435114 ], [ 361863.674699999392033, 257708.765000000596046 ], [ 361876.633299998939037, 257702.116099998354912 ], [ 361876.727099999785423, 257651.411400001496077 ], [ 361876.735200002789497, 257647.050599999725819 ], [ 361866.691799998283386, 257652.237900000065565 ], [ 361866.403099998831749, 257652.424499999731779 ], [ 361860.6216000020504, 257655.99040000140667 ], [ 361849.364200003445148, 257664.488699998706579 ], [ 361842.300700001418591, 257670.227699998766184 ], [ 361830.270599998533726, 257680.381499998271465 ], [ 361823.271300002932549, 257687.672499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103050900", "MAP": "G9-3034-T80", "PARCEL_NAM": "215-196", "ACRE": ".143", "LONGITUDE": -64.89156888, "LATITUDE": 18.34854186, "OBJECTID_1": 6728, "PARCEL_NO_": "103103050900", "Tax_Legal_": "ANNAS RETREAT 215-196 NEW QTR.", "Name": "JOSHUA SR, GREGORY M.", "Address": "626 Larchmont Acres", "City": "Larchmont", "State": "New York", "Zip": 10538, "Country": "United States", "Land_Value": 20500, "Improved_V": 109900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.73644114299999, "SHAPE_Area": 662.78643632599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362969.928199999034405, 257718.663499999791384 ], [ 362959.634999997913837, 257696.414500001817942 ], [ 362957.239399999380112, 257693.650600001215935 ], [ 362954.82769999653101, 257692.786499999463558 ], [ 362950.790700003504753, 257693.386799998581409 ], [ 362937.821400001645088, 257701.302200000733137 ], [ 362951.305699996650219, 257727.588100001215935 ], [ 362960.999499998986721, 257725.556499999016523 ], [ 362969.928199999034405, 257718.663499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103049800", "MAP": "C9-229-T78", "PARCEL_NAM": "253C", "ACRE": "0.54", "LONGITUDE": -64.8968455, "LATITUDE": 18.3484317, "OBJECTID_1": 6717, "PARCEL_NO_": "103103049800", "Tax_Legal_": "ANNAS RETREAT 253C NEW QTR", "Name": "WESLEYAN HOLINESS CHURCH", "Address": "PO Box 812", "City": "FREDERICKSTED", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 113300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.333386287, "SHAPE_Area": 1487.9520235 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362413.154700003564358, 257668.510400000959635 ], [ 362380.907600000500679, 257667.613200001418591 ], [ 362383.695900000631809, 257718.931699998676777 ], [ 362407.856499999761581, 257722.506999999284744 ], [ 362413.154700003564358, 257668.510400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104042200", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-112", "ACRE": "0.14", "LONGITUDE": -64.88529752, "LATITUDE": 18.34852639, "OBJECTID_1": 6948, "PARCEL_NO_": "103104042200", "Tax_Legal_": "ANNAS RETREAT 394-112 NEW QTR", "Name": "HENRY, IOLA", "Address": "394-112 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 182200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.645568873, "SHAPE_Area": 676.74434986599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363612.805600002408028, 257695.005399998277426 ], [ 363601.272699996829033, 257723.619699999690056 ], [ 363619.740599997341633, 257732.847899999469519 ], [ 363633.683399997651577, 257705.308699999004602 ], [ 363612.805600002408028, 257695.005399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103048100", "MAP": "C9-229-T78", "PARCEL_NAM": "260-67", "ACRE": "0.28", "LONGITUDE": -64.89545868, "LATITUDE": 18.34841453, "OBJECTID_1": 6700, "PARCEL_NO_": "103103048100", "Tax_Legal_": "ANNAS RETREAT 260-67 NEW QTR", "Name": "BATTISTE, ALVIN & PATRICIA", "Address": "6804 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41600, "Improved_V": 208400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.78763296, "SHAPE_Area": 1361.149149 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362560.434799998998642, 257702.013099998235703 ], [ 362557.473899997770786, 257670.958099998533726 ], [ 362525.221400000154972, 257670.694200001657009 ], [ 362529.685199998319149, 257714.638199999928474 ], [ 362532.9391999989748, 257711.287300001829863 ], [ 362538.588799998164177, 257710.700300000607967 ], [ 362540.998800002038479, 257711.775400001555681 ], [ 362544.182700000703335, 257716.656700000166893 ], [ 362544.961999997496605, 257719.8293999992311 ], [ 362552.994599997997284, 257723.483800001442432 ], [ 362555.584299996495247, 257703.451099999248981 ], [ 362560.434799998998642, 257702.013099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8713983, "LATITUDE": 18.34849549, "OBJECTID_1": 7148, "PARCEL_NO_": "103204021600", "Tax_Legal_": "FRYDENDAHL 56-20 EAST END QTR", "Name": "DESILVA, YVETTE & OTHERS", "Address": "403 Rich Ave", "City": "Mount Vernon", "State": "New York", "Zip": 10552, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.829578355, "SHAPE_Area": 662.95687902099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365102.626500003039837, 257735.907600000500679 ], [ 365085.974500000476837, 257702.840700000524521 ], [ 365068.969999998807907, 257711.145199999213219 ], [ 365087.243600003421307, 257743.169900000095367 ], [ 365102.626500003039837, 257735.907600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104037200", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-132", "ACRE": "0.15", "LONGITUDE": -64.88744582, "LATITUDE": 18.34852849, "OBJECTID_1": 6903, "PARCEL_NO_": "103104037200", "Tax_Legal_": "ANNAS RETREAT 394-132\nNEW QTR", "Name": "VIRGIL & YVONNE AUDAIN (LIFE ESTATE)", "Address": "PO Box 7221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 131800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.888152848, "SHAPE_Area": 820.35945431899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363403.1283999979496, 257697.511100001633167 ], [ 363402.842000000178814, 257695.269900001585484 ], [ 363399.167300000786781, 257695.7820999994874 ], [ 363391.852240146836266, 257697.662904315191554 ], [ 363384.656542757758871, 257699.958435762528097 ], [ 363377.603699997067451, 257702.661200001835823 ], [ 363371.460799999535084, 257704.931600000709295 ], [ 363372.396799996495247, 257708.025400001555681 ], [ 363378.671099998056889, 257728.763900000602007 ], [ 363403.713600002229214, 257723.480399999767542 ], [ 363406.152300000190735, 257721.178300000727177 ], [ 363403.1283999979496, 257697.511100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87788861, "LATITUDE": 18.34847714, "OBJECTID_1": 7035, "PARCEL_NO_": "103203023500", "Tax_Legal_": "FRYDENDAHL 53-25 EAST END QTR.", "Name": "FARRELL, E. & ROGERS, C", "Address": "PO Box 502853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 83400, "Improved_V": 147800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.11873174800002, "SHAPE_Area": 2783.4008941500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364447.234700001776218, 257714.078200001269579 ], [ 364436.725699998438358, 257717.158599998801947 ], [ 364427.060699999332428, 257715.812899999320507 ], [ 364418.223700001835823, 257711.940900001674891 ], [ 364402.189099997282028, 257701.0439000017941 ], [ 364390.943899996578693, 257695.885600000619888 ], [ 364380.490599997341633, 257692.422600001096725 ], [ 364364.389499999582767, 257689.335499998182058 ], [ 364357.132700003683567, 257689.276099998503923 ], [ 364345.819200001657009, 257692.138799998909235 ], [ 364344.195799998939037, 257693.392099998891354 ], [ 364344.17059999704361, 257696.347199998795986 ], [ 364345.768799997866154, 257698.0489999987185 ], [ 364357.777199998497963, 257708.279800001531839 ], [ 364376.162399999797344, 257727.217599999159575 ], [ 364397.085100002586842, 257732.243999999016523 ], [ 364420.446599997580051, 257734.968299999833107 ], [ 364443.025200001895428, 257734.94200000166893 ], [ 364468.049599997699261, 257731.769299998879433 ], [ 364447.234700001776218, 257714.078200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204016100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87002516, "LATITUDE": 18.34849728, "OBJECTID_1": 7112, "PARCEL_NO_": "103204016100", "Tax_Legal_": "FRYDENDAHL 56-61 EAST END QTR.", "Name": "WILLIAMS, SR. ALVIN & JENNIFER T", "Address": "PO Box 1441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.826393419, "SHAPE_Area": 1054.0114783900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365250.406499996781349, 257710.730399999767542 ], [ 365215.763800002634525, 257707.069299999624491 ], [ 365213.890399999916553, 257737.662599999457598 ], [ 365213.067900002002716, 257739.555700000375509 ], [ 365245.307899996638298, 257741.297200001776218 ], [ 365250.406499996781349, 257710.730399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90586289, "LATITUDE": 18.34852114, "OBJECTID_1": 6121, "PARCEL_NO_": "103004025000", "Tax_Legal_": "WINTBERG 1-143-54B GT. NORTHSIDE", "Name": "SMALL BUS. DEV. VI GOVT.", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.55579297599999, "SHAPE_Area": 638.87151970699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361473.653300002217293, 257678.130699999630451 ], [ 361459.897399999201298, 257683.717599999159575 ], [ 361448.578400000929832, 257687.213599998503923 ], [ 361437.270300000905991, 257689.44310000166297 ], [ 361423.552199997007847, 257690.597300000488758 ], [ 361425.001199997961521, 257709.81870000064373 ], [ 361454.109300002455711, 257700.557700000703335 ], [ 361473.653300002217293, 257678.130699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103204019800", "MAP": "A9-494-T96", "PARCEL_NAM": "ROW B-15", "ACRE": ".415", "LONGITUDE": -64.86812287, "LATITUDE": 18.34843747, "OBJECTID_1": 7132, "PARCEL_NO_": "103204019800", "Tax_Legal_": "COKI POINT B-4,B-15 & B-16 & 'D' EAST END #4A (ROAD)", "Name": "ESTATE OF JOSEPHINE BELL & HEI", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 189500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.32755629600001, "SHAPE_Area": 1591.35413662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365518.924699999392033, 257711.028200000524521 ], [ 365515.694099999964237, 257711.635099999606609 ], [ 365502.015500001609325, 257708.145599998533726 ], [ 365493.155100002884865, 257707.017599999904633 ], [ 365477.838699996471405, 257706.470100000500679 ], [ 365464.923299998044968, 257708.053100001066923 ], [ 365458.465700000524521, 257708.8445999994874 ], [ 365359.138199999928474, 257725.763599999248981 ], [ 365335.630999997258186, 257740.136599998921156 ], [ 365347.756300002336502, 257736.647300001233816 ], [ 365459.185699999332428, 257718.982999999076128 ], [ 365460.801899999380112, 257718.574099998921156 ], [ 365476.958700001239777, 257715.11769999936223 ], [ 365496.303000003099442, 257716.120400000363588 ], [ 365515.618500001728535, 257720.500399999320507 ], [ 365518.924699999392033, 257711.028200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104033400", "MAP": "A9-167I-71", "PARCEL_NAM": "394-296", "ACRE": ".154", "LONGITUDE": -64.88801288000001, "LATITUDE": 18.34850339, "OBJECTID_1": 6869, "PARCEL_NO_": "103104033400", "Tax_Legal_": "ANNAS RETREAT 394-296 NEW QTR", "Name": "CALLWOOD,JULIA &, AMARO,LOUIS C.", "Address": "PO Box 303865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 120700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.195038746099996, "SHAPE_Area": 542.36699427099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363346.5625, 257711.613600000739098 ], [ 363335.42509999871254, 257693.790600001811981 ], [ 363324.894500002264977, 257699.403900001198053 ], [ 363312.742299996316433, 257706.059500001370907 ], [ 363327.095899999141693, 257724.964299999177456 ], [ 363337.648100003600121, 257716.817999999970198 ], [ 363346.5625, 257711.613600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103047600", "MAP": "C9-229-T78", "PARCEL_NAM": "260-73", "ACRE": "0.28", "LONGITUDE": -64.89430087, "LATITUDE": 18.3484874, "OBJECTID_1": 6695, "PARCEL_NO_": "103103047600", "Tax_Legal_": "ANNAS RETREAT 260-73 NEW QTR", "Name": "ANN MARIA BERRY (LIFE ESTATE) & Z SMITH", "Address": "PO Box 303508", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033508, "Country": "United States", "Land_Value": 38400, "Improved_V": 127700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.954620527, "SHAPE_Area": 1376.4653499799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362699.968199998140335, 257698.300000000745058 ], [ 362680.681400001049042, 257690.54280000180006 ], [ 362646.076499998569489, 257682.449099998921156 ], [ 362638.569799996912479, 257711.729600001126528 ], [ 362682.047700002789497, 257719.473799999803305 ], [ 362691.878100000321865, 257701.400199998170137 ], [ 362699.968199998140335, 257698.300000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87033183, "LATITUDE": 18.3484775, "OBJECTID_1": 7111, "PARCEL_NO_": "103204016000", "Tax_Legal_": "FRYDENDAHL 56-62 EAST END QTR.", "Name": "TITUS JOSEPH (LIFE ESTATE)", "Address": "PO Box 9789", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 141200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.516713412, "SHAPE_Area": 1068.30587386 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365183.520300000905991, 257705.75 ], [ 365182.438900001347065, 257738.038400001823902 ], [ 365213.067900002002716, 257739.555700000375509 ], [ 365213.890399999916553, 257737.662599999457598 ], [ 365215.763800002634525, 257707.069299999624491 ], [ 365192.404100000858307, 257704.133900001645088 ], [ 365186.759900003671646, 257704.087699998170137 ], [ 365183.520300000905991, 257705.75 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024300", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-51", "ACRE": ".35", "LONGITUDE": -64.90693207, "LATITUDE": 18.34839171, "OBJECTID_1": 6114, "PARCEL_NO_": "103004024300", "Tax_Legal_": "WINTBERG 1-143-51 3 GR NORTHSIDE", "Name": "CARTY, CHARLES", "Address": "11929 N E 6th Ave", "City": "BISCAYNE PARK", "State": "Florida", "Zip": 33161, "Country": "United States", "Land_Value": 33400, "Improved_V": 67600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.995102293, "SHAPE_Area": 1353.0649909000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361343.975400000810623, 257660.815099999308586 ], [ 361327.82940000295639, 257663.004999998956919 ], [ 361314.120300002396107, 257663.103900000452995 ], [ 361309.26799999922514, 257664.752900000661612 ], [ 361306.006800003349781, 257668.948100000619888 ], [ 361306.741200000047684, 257677.397900000214577 ], [ 361314.741400003433228, 257684.851599998772144 ], [ 361317.918099999427795, 257690.577199999243021 ], [ 361320.318999998271465, 257692.707699999213219 ], [ 361321.109099999070168, 257694.614100001752377 ], [ 361326.711999997496605, 257699.515099998563528 ], [ 361331.485100001096725, 257707.153499998152256 ], [ 361354.259700000286102, 257684.119600001722574 ], [ 361343.975400000810623, 257660.815099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004022100", "MAP": "D9-598-T66", "PARCEL_NAM": "1YB", "ACRE": null, "LONGITUDE": -64.90489225, "LATITUDE": 18.34836672, "OBJECTID_1": 6094, "PARCEL_NO_": "103004022100", "Tax_Legal_": "WINTBERG 1Y,1YB&1YD GR NORTHSIDE", "Name": "BORNN, MICHAEL, STEVEN & DAVID", "Address": "PO Box 6408", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046408, "Country": "United States", "Land_Value": 494300, "Improved_V": 62800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.297447017, "SHAPE_Area": 2153.7161687600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361504.844099998474121, 257708.361299999058247 ], [ 361513.724299997091293, 257707.167399998754263 ], [ 361529.07660000026226, 257703.493299998342991 ], [ 361544.445100001990795, 257697.919599998742342 ], [ 361563.88289999961853, 257687.946199998259544 ], [ 361581.733300000429153, 257675.00450000166893 ], [ 361583.398100003600121, 257668.89640000090003 ], [ 361560.166000001132488, 257650.974399998784065 ], [ 361557.754299998283386, 257650.110300000756979 ], [ 361552.909199997782707, 257650.91499999910593 ], [ 361533.442699998617172, 257664.265700001269579 ], [ 361504.844099998474121, 257708.361299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204015900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87064582, "LATITUDE": 18.34851407, "OBJECTID_1": 7110, "PARCEL_NO_": "103204015900", "Tax_Legal_": "FRYDENDAHL 56-63 EAST END QTR.", "Name": "VINCENT, JEAN JOEL & MARIE ISLANDE KERNIZAN", "Address": "605 TUTU PARK MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 79700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.262334498, "SHAPE_Area": 864.82532958000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365183.520300000905991, 257705.75 ], [ 365169.7483000010252, 257713.236600000411272 ], [ 365138.995099999010563, 257726.2837999984622 ], [ 365142.945699997246265, 257735.815400000661612 ], [ 365175.185599997639656, 257737.55689999833703 ], [ 365182.438900001347065, 257738.038400001823902 ], [ 365183.520300000905991, 257705.75 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104036100", "MAP": "A9-167I-71", "PARCEL_NAM": "394-301", "ACRE": ".145", "LONGITUDE": -64.88840129, "LATITUDE": 18.34844537, "OBJECTID_1": 6893, "PARCEL_NO_": "103104036100", "Tax_Legal_": "ANNAS RETREAT 394-301 NEW QTR", "Name": "JOSEPH, BEULAH", "Address": "HIDDEN VALLEY 394-301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 159900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.31219044, "SHAPE_Area": 611.582047558 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363293.536499999463558, 257688.803700000047684 ], [ 363291.047899998724461, 257683.476500000804663 ], [ 363273.128899998962879, 257692.798500001430511 ], [ 363275.722099997103214, 257697.523800000548363 ], [ 363289.220799997448921, 257722.121199999004602 ], [ 363294.089199997484684, 257718.572399999946356 ], [ 363303.831500001251698, 257710.841699998825788 ], [ 363293.536499999463558, 257688.803700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87704409, "LATITUDE": 18.34833826, "OBJECTID_1": 7036, "PARCEL_NO_": "103203023700", "Tax_Legal_": "FRYDENDAHL ESTATE 53-24 No.4 EASTEND QTR.", "Name": "HODGE, HILLARY", "Address": "6754 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021808, "Country": "United States", "Land_Value": 83400, "Improved_V": 175400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.77180781499999, "SHAPE_Area": 2322.01417958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364495.613499999046326, 257714.47410000115633 ], [ 364506.153099998831749, 257707.805399999022484 ], [ 364509.326200000941753, 257713.953099999576807 ], [ 364520.659500002861023, 257708.768500000238419 ], [ 364511.0, 257706.789599999785423 ], [ 364520.113899998366833, 257678.155499998480082 ], [ 364520.938199996948242, 257676.051300000399351 ], [ 364524.434900000691414, 257665.188200000673532 ], [ 364518.883199997246265, 257666.96339999884367 ], [ 364482.210100002586842, 257678.689599998295307 ], [ 364480.520099997520447, 257687.75279999896884 ], [ 364470.741899996995926, 257699.705099999904633 ], [ 364460.187899999320507, 257708.0625 ], [ 364451.277099996805191, 257712.844700001180172 ], [ 364447.234700001776218, 257714.078200001269579 ], [ 364468.049599997699261, 257731.769299998879433 ], [ 364480.981200002133846, 257728.28660000115633 ], [ 364496.376599997282028, 257719.546599999070168 ], [ 364495.613499999046326, 257714.47410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104042300", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-113", "ACRE": "0.14", "LONGITUDE": -64.88547843000001, "LATITUDE": 18.3484465, "OBJECTID_1": 6949, "PARCEL_NO_": "103104042300", "Tax_Legal_": "394-113 ANNAS RETREAT NEW QUARTER", "Name": "GRIFFIN, R. & E. & KING JR, A", "Address": "4233 Digney Ave", "City": "Bronx", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 19200, "Improved_V": 16800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.998446657, "SHAPE_Area": 620.66168682 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363595.140500001609325, 257686.205899998545647 ], [ 363582.804799996316433, 257714.391499999910593 ], [ 363601.272699996829033, 257723.619699999690056 ], [ 363612.805600002408028, 257695.005399998277426 ], [ 363595.140500001609325, 257686.205899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87124292, "LATITUDE": 18.34842696, "OBJECTID_1": 7171, "PARCEL_NO_": "103204024000", "Tax_Legal_": "FRYDENDAHL 56-21 EAST END QTR.", "Name": "ROBERTS, JOEL & GLORIA", "Address": "PO Box 8948", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27000, "Improved_V": 217300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.574870198, "SHAPE_Area": 673.85004859399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365119.632799997925758, 257727.3918999992311 ], [ 365101.362700000405312, 257694.945099998265505 ], [ 365095.693400003015995, 257697.853999998420477 ], [ 365085.974500000476837, 257702.840700000524521 ], [ 365102.626500003039837, 257735.907600000500679 ], [ 365119.632799997925758, 257727.3918999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104037000", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-133", "ACRE": "0.14", "LONGITUDE": -64.88718906, "LATITUDE": 18.34848046, "OBJECTID_1": 6901, "PARCEL_NO_": "103104037000", "Tax_Legal_": "ANNAS RETREAT 394-133 NEW QTR", "Name": "TODMAN, CHARLES", "Address": "KONGENS GADE #9", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 110600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.83413887099999, "SHAPE_Area": 672.16927813400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363428.951999999582767, 257695.189399998635054 ], [ 363428.8412000015378, 257693.179800000041723 ], [ 363415.814939079165924, 257693.893209105764981 ], [ 363402.842000000178814, 257695.269900001585484 ], [ 363403.1283999979496, 257697.511100001633167 ], [ 363406.152300000190735, 257721.178300000727177 ], [ 363411.801899999380112, 257720.591299999505281 ], [ 363430.348800003528595, 257720.532000001519918 ], [ 363428.951999999582767, 257695.189399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89135894, "LATITUDE": 18.34843174, "OBJECTID_1": 6730, "PARCEL_NO_": "103103051100", "Tax_Legal_": "ANNAS RETREAT 215-199 NEW QTR.", "Name": "HARRIGAN, JOYCE ANN", "Address": "PO Box 6734", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 88600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.884820812100003, "SHAPE_Area": 599.46998381499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362975.908699996769428, 257679.238000001758337 ], [ 362963.75110000371933, 257686.526799999177456 ], [ 362962.930399999022484, 257688.208799999207258 ], [ 362962.899800002574921, 257691.797100000083447 ], [ 362974.780500002205372, 257717.014499999582767 ], [ 362992.618299998342991, 257705.550299998372793 ], [ 362975.908699996769428, 257679.238000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87196151000001, "LATITUDE": 18.34834869, "OBJECTID_1": 7168, "PARCEL_NO_": "103204023700", "Tax_Legal_": "FRYDENDAHL 56-37 EAST END QTR", "Name": "BENN, JULIA M", "Address": "PO Box 9159", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 65800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.02911266300001, "SHAPE_Area": 1109.2421059000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365043.864600002765656, 257723.816500000655651 ], [ 365032.941299997270107, 257680.875100001692772 ], [ 365007.058300003409386, 257690.162500001490116 ], [ 365024.430399999022484, 257733.36769999936223 ], [ 365043.864600002765656, 257723.816500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104036300", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-136", "ACRE": "0.14", "LONGITUDE": -64.88655691, "LATITUDE": 18.34846767, "OBJECTID_1": 6895, "PARCEL_NO_": "103104036300", "Tax_Legal_": "ANNAS RETREAT 394-136 NEW QTR", "Name": "HUTTON, WILLILAM & ESTHER", "Address": "394-136 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 113200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.858570151, "SHAPE_Area": 684.83542449100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363496.6858000010252, 257695.32149999961257 ], [ 363496.569300003349781, 257692.029800001531839 ], [ 363474.3091000020504, 257693.797699999064207 ], [ 363470.843500003218651, 257693.709199998527765 ], [ 363470.881999999284744, 257695.321400001645088 ], [ 363471.476199999451637, 257720.235300000756979 ], [ 363488.410499997437, 257720.162799999117851 ], [ 363491.126400001347065, 257720.151200000196695 ], [ 363491.408851873478852, 257719.520854661270278 ], [ 363491.771700002253056, 257718.933100000023842 ], [ 363492.485719662508927, 257718.090311136242235 ], [ 363493.31660496693803, 257717.362474097462837 ], [ 363494.246056742151268, 257716.765618552308297 ], [ 363495.253605015750509, 257716.312889471650124 ], [ 363496.317059841239825, 257716.014257627481129 ], [ 363497.413000002503395, 257715.876299999654293 ], [ 363497.335699997842312, 257713.69200000166893 ], [ 363496.6858000010252, 257695.32149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104041500", "MAP": "A9-167A-T71", "PARCEL_NAM": "394.13", "ACRE": "0.14", "LONGITUDE": -64.88447185, "LATITUDE": 18.34846347, "OBJECTID_1": 6941, "PARCEL_NO_": "103104041500", "Tax_Legal_": "ANNAS RETREAT 394-13 NEW QTR", "Name": "SAMUEL, ERROL & AMELIA", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 19200, "Improved_V": 166200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.872250411, "SHAPE_Area": 597.34155632099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363723.95269999653101, 257710.480500001460314 ], [ 363707.993699997663498, 257690.718199998140335 ], [ 363686.057800002396107, 257709.959300000220537 ], [ 363694.824699997901917, 257722.063299998641014 ], [ 363723.95269999653101, 257710.480500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104038300", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-140", "ACRE": "0.15", "LONGITUDE": -64.88627382, "LATITUDE": 18.34843457, "OBJECTID_1": 6912, "PARCEL_NO_": "103104038300", "Tax_Legal_": "ANNAS RETREAT 394-140 NEW QTR", "Name": "GARFIELD, VICTOR & WINIFRED", "Address": "394-140 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21600, "Improved_V": 222700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.863475318, "SHAPE_Area": 797.20476024699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363516.415500000119209, 257716.008900001645088 ], [ 363529.620600000023842, 257710.156500000506639 ], [ 363530.920628695748746, 257709.004739012452774 ], [ 363532.014703167194966, 257707.655802752240561 ], [ 363532.87333915696945, 257706.146043758111773 ], [ 363533.47339724865742, 257704.51614858667017 ], [ 363533.798706452420447, 257702.810041349352105 ], [ 363533.840499997138977, 257701.073699999600649 ], [ 363533.82061344338581, 257699.662008100218372 ], [ 363533.584733155730646, 257698.270020318770548 ], [ 363533.138425954501145, 257696.930587836017366 ], [ 363532.492224775953218, 257695.675321517395787 ], [ 363531.661380092788022, 257694.533845890749944 ], [ 363530.665500000119209, 257693.533100001513958 ], [ 363524.974127621972002, 257692.204460152977845 ], [ 363519.190873744606506, 257691.361265048850328 ], [ 363513.35706767818192, 257691.009540478815325 ], [ 363507.514399997889996, 257691.151799999177456 ], [ 363496.569300003349781, 257692.029800001531839 ], [ 363496.6858000010252, 257695.32149999961257 ], [ 363497.335699997842312, 257713.69200000166893 ], [ 363497.413000002503395, 257715.876299999654293 ], [ 363498.38629999756813, 257715.890399999916553 ], [ 363510.424800001084805, 257714.699799999594688 ], [ 363511.975721060589422, 257714.716043971420731 ], [ 363513.510018143977504, 257714.943095638271188 ], [ 363514.999171369476244, 257715.376734509423841 ], [ 363516.415500000119209, 257716.008900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103047800", "MAP": "C9-229-T78", "PARCEL_NAM": "260-71", "ACRE": "0.28", "LONGITUDE": -64.894713, "LATITUDE": 18.34840493, "OBJECTID_1": 6697, "PARCEL_NO_": "103103047800", "Tax_Legal_": "ANNAS RETREAT 260-71 NEW QTR", "Name": "JAMES, ADRIENNE", "Address": "PO Box 8863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43600, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.587716591, "SHAPE_Area": 1246.5979634 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362646.076499998569489, 257682.449099998921156 ], [ 362603.419299997389317, 257673.022900000214577 ], [ 362599.143200002610683, 257701.696699999272823 ], [ 362638.569799996912479, 257711.729600001126528 ], [ 362646.076499998569489, 257682.449099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004025301", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-H", "ACRE": ".248", "LONGITUDE": -64.90432379000001, "LATITUDE": 18.34816895, "OBJECTID_1": 6125, "PARCEL_NO_": "103004025301", "Tax_Legal_": "1X-1-H ESTATE WINTBERG GREAT NORTHSIDE QTR", "Name": "WEBSTER, EDMUND & BERENICE & C", "Address": "PO Box 7986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 324600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.106973872, "SHAPE_Area": 1051.4463104599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361630.043700002133846, 257645.75560000166297 ], [ 361619.883699998259544, 257645.27930000051856 ], [ 361602.897399999201298, 257644.168099999427795 ], [ 361588.292400002479553, 257644.485599998384714 ], [ 361582.894900001585484, 257645.438099998980761 ], [ 361580.989900000393391, 257647.978100001811981 ], [ 361580.672399997711182, 257651.470600001513958 ], [ 361582.894900001585484, 257654.010600000619888 ], [ 361587.510499998927116, 257659.430900000035763 ], [ 361615.35360000282526, 257681.1587999984622 ], [ 361630.043700002133846, 257645.75560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104035400", "MAP": "A9-167I-71", "PARCEL_NAM": "394-308", "ACRE": ".185", "LONGITUDE": -64.88952365, "LATITUDE": 18.34837809, "OBJECTID_1": 6887, "PARCEL_NO_": "103104035400", "Tax_Legal_": "ANNAS RETREAT 394-308 NEW QTR", "Name": "SOLOMON, L; FERDINAND,J.P. & SMITH, N.S.", "Address": "394-308 Anna's Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 321800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.183541354, "SHAPE_Area": 809.32132787299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363188.876199997961521, 257702.699499998241663 ], [ 363175.150600001215935, 257671.158399999141693 ], [ 363164.589400000870228, 257680.360100001096725 ], [ 363151.566100001335144, 257694.607799999415874 ], [ 363165.848600000143051, 257712.826799999922514 ], [ 363170.605815300776158, 257709.911413729510969 ], [ 363175.481499999761581, 257707.198800001293421 ], [ 363179.819544792524539, 257705.337665610539261 ], [ 363184.294277816487011, 257703.834596015018178 ], [ 363188.876199997961521, 257702.699499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104035100", "MAP": "A9-167I-71", "PARCEL_NAM": "394-285", "ACRE": ".152", "LONGITUDE": -64.88989245, "LATITUDE": 18.34842656, "OBJECTID_1": 6884, "PARCEL_NO_": "103104035100", "Tax_Legal_": "394-285 ANNAS RETREAT NEW QUARTER", "Name": "THOMAS, BENTLEY & JOYCELYN", "Address": "PO Box 4465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18800, "Improved_V": 166600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.517707811099996, "SHAPE_Area": 601.59729701000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363149.132799997925758, 257696.276700001209974 ], [ 363129.891000002622604, 257683.242499999701977 ], [ 363116.07039999961853, 257696.428199999034405 ], [ 363111.988499999046326, 257702.305500000715256 ], [ 363138.503300003707409, 257713.499299999326468 ], [ 363149.132799997925758, 257696.276700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004038900", "MAP": "A9-289-T81", "PARCEL_NAM": "330A", "ACRE": ".43", "LONGITUDE": -64.90131794, "LATITUDE": 18.3483276, "OBJECTID_1": 6205, "PARCEL_NO_": "103004038900", "Tax_Legal_": "WINTBERG 330A\nGT. NORTHSIDE", "Name": "DAVIS, ARTHUR M", "Address": "PO Box 7804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010804, "Country": "United States", "Land_Value": 55100, "Improved_V": 250000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.24367250900002, "SHAPE_Area": 2981.9092420799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361876.717200003564358, 257656.764600001275539 ], [ 361876.633299998939037, 257702.116099998354912 ], [ 361887.959399998188019, 257697.775800000876188 ], [ 361897.654899999499321, 257695.533100001513958 ], [ 361938.818199999630451, 257691.014899998903275 ], [ 361984.86259999871254, 257681.470300000160933 ], [ 362018.325599998235703, 257672.469000000506639 ], [ 362010.048100002110004, 257668.847600001841784 ], [ 362003.710600003600121, 257666.3902000002563 ], [ 361992.975699998438358, 257666.260899998247623 ], [ 361984.180799998342991, 257668.200899999588728 ], [ 361969.565800003707409, 257673.76240000128746 ], [ 361958.442900002002716, 257676.607799999415874 ], [ 361951.200099997222424, 257675.831799998879433 ], [ 361934.256999999284744, 257670.528999999165535 ], [ 361914.209899999201298, 257663.156800001859665 ], [ 361890.023999996483326, 257655.396600000560284 ], [ 361876.727099999785423, 257651.411400001496077 ], [ 361876.717200003564358, 257656.764600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104041400", "MAP": "C9-217-T77", "PARCEL_NAM": "394-12", "ACRE": "0.15", "LONGITUDE": -64.88409825, "LATITUDE": 18.34837753, "OBJECTID_1": 6940, "PARCEL_NO_": "103104041400", "Tax_Legal_": "ANNAS RETREAT 394-12 NEW QTR", "Name": "ROSEMINA AUGUSTE-THEZE & CLAUDE AUGUSTE", "Address": "394-215 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 85100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.671912689, "SHAPE_Area": 665.16995346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363754.059600003063679, 257678.640700001269579 ], [ 363725.66780000180006, 257698.462200000882149 ], [ 363739.220499999821186, 257716.727200001478195 ], [ 363741.637599997222424, 257716.958000000566244 ], [ 363743.257399998605251, 257716.126899998635054 ], [ 363754.64469999819994, 257704.609999999403954 ], [ 363756.316699996590614, 257697.657600000500679 ], [ 363757.216499999165535, 257686.688099998980761 ], [ 363755.648800000548363, 257681.397900000214577 ], [ 363754.059600003063679, 257678.640700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90596406, "LATITUDE": 18.35043689, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.98756737400001, "SHAPE_Area": 480.83405004299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361442.994999997317791, 257869.341600000858307 ], [ 361437.370600000023842, 257866.973600000143051 ], [ 361418.968199998140335, 257944.716499999165535 ], [ 361424.592600002884865, 257947.084499999880791 ], [ 361442.994999997317791, 257869.341600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87154938, "LATITUDE": 18.349744, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 592.95494572300004, "SHAPE_Area": 1765.8162685 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365042.922399997711182, 257834.421799998730421 ], [ 365062.33500000089407, 257827.403499998152256 ], [ 365077.685500003397465, 257823.940499998629093 ], [ 365105.920800000429153, 257822.482900001108646 ], [ 365109.945200003683567, 257823.360199999064207 ], [ 365112.360500000417233, 257823.802099999040365 ], [ 365115.575000002980232, 257825.094999998807907 ], [ 365117.96339999884367, 257828.703200001269579 ], [ 365118.753499999642372, 257830.609499998390675 ], [ 365117.885999999940395, 257837.779500000178814 ], [ 365113.809500001370907, 257843.023499999195337 ], [ 365100.725100003182888, 257864.447999998927116 ], [ 365094.206299997866154, 257872.416200000792742 ], [ 365088.499200001358986, 257879.757699999958277 ], [ 365078.735299997031689, 257890.02140000090003 ], [ 365064.095799997448921, 257904.678100001066923 ], [ 365059.218400001525879, 257909.282299999147654 ], [ 365050.278800003230572, 257917.441799998283386 ], [ 365032.423000000417233, 257931.016699999570847 ], [ 365026.7483000010252, 257934.558800000697374 ], [ 365022.695100001990795, 257937.058800000697374 ], [ 365031.546599999070168, 257939.242199998348951 ], [ 365038.038400001823902, 257934.440200001001358 ], [ 365046.965400002896786, 257927.758200000971556 ], [ 365055.894199997186661, 257920.865200001746416 ], [ 365068.901299998164177, 257908.517200000584126 ], [ 365070.524700000882149, 257907.263900000602007 ], [ 365075.403899997472763, 257902.448699999600649 ], [ 365089.233499996364117, 257888.207499999552965 ], [ 365099.011799998581409, 257876.255199998617172 ], [ 365111.246699996292591, 257859.890000000596046 ], [ 365117.776299998164177, 257850.6554000005126 ], [ 365118.613200001418591, 257847.073600001633167 ], [ 365123.512199997901917, 257839.936500001698732 ], [ 365124.397699996829033, 257830.655699998140335 ], [ 365124.417499996721745, 257828.333799999207258 ], [ 365122.837200000882149, 257824.521200001239777 ], [ 365120.438000001013279, 257822.179499998688698 ], [ 365117.232600003480911, 257819.831199999898672 ], [ 365113.222599998116493, 257817.265299998223782 ], [ 365102.747699998319149, 257816.335200000554323 ], [ 365089.835900001227856, 257817.496100001037121 ], [ 365069.661899998784065, 257819.230799999088049 ], [ 365053.497900001704693, 257823.531500000506639 ], [ 365027.593400001525879, 257835.351799998432398 ], [ 364991.165500000119209, 257851.941100001335144 ], [ 364991.951999999582767, 257854.269600000232458 ], [ 364996.788099996745586, 257854.520300000905991 ], [ 365000.790899999439716, 257857.930500000715256 ], [ 365006.449500001966953, 257856.288100000470877 ], [ 365007.300800003111362, 257851.017700001597404 ], [ 365042.922399997711182, 257834.421799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88924216, "LATITUDE": 18.35026045, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.618174952, "SHAPE_Area": 399.8151352 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363214.987499997019768, 257916.986200001090765 ], [ 363191.078699998557568, 257883.859999999403954 ], [ 363181.376000002026558, 257886.946899998933077 ], [ 363206.883100003004074, 257921.775100000202656 ], [ 363214.987499997019768, 257916.986200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8812583, "LATITUDE": 18.34977213, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 674.50726178499997, "SHAPE_Area": 1661.9177072800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364048.046800002455711, 257907.550200000405312 ], [ 364060.211599998176098, 257899.417100001126528 ], [ 364075.657399997115135, 257884.767000000923872 ], [ 364089.454599998891354, 257874.325300000607967 ], [ 364092.715800002217293, 257870.130100000649691 ], [ 364094.398599997162819, 257861.911200001835823 ], [ 364094.499300003051758, 257850.090799998492002 ], [ 364093.802699998021126, 257837.208399999886751 ], [ 364092.260200001299381, 257828.963100001215935 ], [ 364089.891599997878075, 257823.033100001513958 ], [ 364085.906800001859665, 257817.511999998241663 ], [ 364078.676899999380112, 257814.286499999463558 ], [ 364073.038099996745586, 257813.60700000077486 ], [ 364062.070000000298023, 257815.483800001442432 ], [ 364044.47860000282526, 257814.99439999833703 ], [ 364017.396799996495247, 257809.606899999082088 ], [ 364006.961400002241135, 257811.088700000196695 ], [ 363992.592100001871586, 257815.225900001823902 ], [ 363977.476999998092651, 257824.94649999961257 ], [ 363967.594200000166893, 257827.976599998772144 ], [ 363959.675700001418591, 257829.3114 ], [ 363943.905900001525879, 257826.904500000178814 ], [ 363931.055200003087521, 257820.888700000941753 ], [ 363927.023699998855591, 257820.960099998861551 ], [ 363923.76240000128746, 257825.050900001078844 ], [ 363929.397600002586842, 257826.152499999850988 ], [ 363938.970357154728845, 257828.600637557887239 ], [ 363948.646099999547005, 257830.603399999439716 ], [ 363955.39659599319566, 257830.87895404259325 ], [ 363962.148181422089692, 257830.631526504119392 ], [ 363968.860399998724461, 257829.86259999871254 ], [ 363971.94061670161318, 257829.477135967812501 ], [ 363974.931923175463453, 257828.647435397928348 ], [ 363977.770605346770026, 257827.391170701972442 ], [ 363980.396200001239777, 257825.735100001096725 ], [ 363986.714858580788132, 257821.383464569080388 ], [ 363993.432099997997284, 257817.676600001752377 ], [ 363997.85869999974966, 257815.680900000035763 ], [ 364002.735107564833015, 257814.147323721233988 ], [ 364007.76266112702433, 257813.222709140827646 ], [ 364012.865618123614695, 257812.920986031502252 ], [ 364017.967100001871586, 257813.246700000017881 ], [ 364022.079516394005623, 257813.638162496616133 ], [ 364026.093672761751805, 257814.613744437810965 ], [ 364029.927040447073523, 257816.153388441423886 ], [ 364033.500807699281722, 257818.225440346053801 ], [ 364036.741499997675419, 257820.787300001829863 ], [ 364051.185000002384186, 257823.1385000012815 ], [ 364061.672399997711182, 257822.590999998152256 ], [ 364077.017599999904633, 257819.761300001293421 ], [ 364083.432099997997284, 257824.035700000822544 ], [ 364086.583599999547005, 257832.716299999505281 ], [ 364088.889300003647804, 257846.034099999815226 ], [ 364087.912100002169609, 257866.079999998211861 ], [ 364086.279700003564358, 257868.388599999248981 ], [ 364083.835600003600121, 257871.324000000953674 ], [ 364075.720299996435642, 257877.379200000315905 ], [ 364070.040200002491474, 257881.55460000038147 ], [ 364061.093400001525879, 257890.558400001376867 ], [ 364048.914200000464916, 257900.380100000649691 ], [ 364035.962899997830391, 257906.184799998998642 ], [ 364019.836599998176098, 257906.052799999713898 ], [ 364012.594200000166893, 257904.304699998348951 ], [ 364007.783299997448921, 257901.098999999463558 ], [ 364005.438100002706051, 257892.424899999052286 ], [ 363998.412799999117851, 257887.3462999984622 ], [ 364001.327399998903275, 257901.679400000721216 ], [ 364004.514899998903275, 257906.1385000012815 ], [ 364012.538500003516674, 257910.848200000822544 ], [ 364018.978200003504753, 257912.167500000447035 ], [ 364034.296300001442432, 257912.503899998962879 ], [ 364048.046800002455711, 257907.550200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88899031, "LATITUDE": 18.34994576, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.24492367900001, "SHAPE_Area": 1570.6166677599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363180.554200001060963, 257883.511900000274181 ], [ 363185.090899996459484, 257880.366599999368191 ], [ 363192.181699998676777, 257877.297400001436472 ], [ 363197.685099996626377, 257875.4983000010252 ], [ 363205.410899996757507, 257873.699099998921156 ], [ 363214.300999999046326, 257873.064100001007318 ], [ 363219.698499999940395, 257873.381599999964237 ], [ 363226.577600002288818, 257872.323300000280142 ], [ 363233.456799998879433, 257871.264899998903275 ], [ 363239.912699997425079, 257869.994899999350309 ], [ 363246.050999999046326, 257868.407400000840425 ], [ 363252.506899997591972, 257866.608300000429153 ], [ 363289.142700001597404, 257862.428300000727177 ], [ 363305.024099998176098, 257854.817299999296665 ], [ 363306.654700003564358, 257852.719700001180172 ], [ 363305.070799998939037, 257849.329199999570847 ], [ 363301.851000003516674, 257848.669599998742342 ], [ 363229.166000001132488, 257861.795800000429153 ], [ 363185.554999999701977, 257869.671500001102686 ], [ 363150.827799998223782, 257875.931200001388788 ], [ 363153.138800002634525, 257888.615699999034405 ], [ 363180.554200001060963, 257883.511900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90576654, "LATITUDE": 18.34961491, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.62796777400001, "SHAPE_Area": 652.488829743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361468.074500001966953, 257765.055599998682737 ], [ 361461.623999997973442, 257765.00279999896884 ], [ 361437.370600000023842, 257866.973600000143051 ], [ 361442.994999997317791, 257869.341600000858307 ], [ 361468.074500001966953, 257765.055599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90515436, "LATITUDE": 18.35000952, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.861133939299997, "SHAPE_Area": 170.462379607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361530.157700002193451, 257860.555799998342991 ], [ 361506.02589999884367, 257853.603300001472235 ], [ 361505.158399999141693, 257860.773400001227856 ], [ 361526.07039999961853, 257867.066199999302626 ], [ 361530.157700002193451, 257860.555799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024100", "MAP": null, "PARCEL_NAM": "4-6A", "ACRE": null, "LONGITUDE": -64.88453081, "LATITUDE": 18.34993623, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.66485090099999, "SHAPE_Area": 953.074762083 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363720.334299996495247, 257851.250300001353025 ], [ 363699.29110000282526, 257860.366200000047684 ], [ 363683.902800001204014, 257868.261799998581409 ], [ 363669.342500001192093, 257873.631000000983477 ], [ 363658.027099996805191, 257876.704799998551607 ], [ 363655.590199999511242, 257878.795800000429153 ], [ 363654.746100001037121, 257883.221900001168251 ], [ 363657.159699998795986, 257883.874899998307228 ], [ 363671.701999999582767, 257880.616399999707937 ], [ 363691.07150000333786, 257878.664000000804663 ], [ 363704.780599996447563, 257878.565200001001358 ], [ 363720.896099999547005, 257879.963599998503923 ], [ 363720.334299996495247, 257851.250300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90560575000001, "LATITUDE": 18.34894942, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.83316657500001, "SHAPE_Area": 279.05568946099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361468.074500001966953, 257765.055599998682737 ], [ 361478.955799996852875, 257718.281899999827147 ], [ 361472.481899999082088, 257720.973099999129772 ], [ 361461.623999997973442, 257765.00279999896884 ], [ 361468.074500001966953, 257765.055599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89205237, "LATITUDE": 18.34841654, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.010960248999993, "SHAPE_Area": 573.76880986799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362918.444700002670288, 257704.098900001496077 ], [ 362904.958599999547005, 257678.024000000208616 ], [ 362887.948700003325939, 257686.961800001561642 ], [ 362901.429399996995926, 257713.669900000095367 ], [ 362918.444700002670288, 257704.098900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204013300", "MAP": null, "PARCEL_NAM": "52-8A", "ACRE": null, "LONGITUDE": -64.87320055000001, "LATITUDE": 18.34841264, "OBJECTID_1": 7085, "PARCEL_NO_": "103204013300", "Tax_Legal_": "FRYDENDAHL 52-8A EAST END QTR.", "Name": "DONASTROG, AMELIA T", "Address": "394-189 HIDDEN VALLY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.292648778, "SHAPE_Area": 724.48845084799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364913.236599996685982, 257723.38060000166297 ], [ 364908.5929000005126, 257700.54450000077486 ], [ 364877.14130000025034, 257700.920400001108646 ], [ 364880.204800002276897, 257719.943900000303984 ], [ 364906.762699998915195, 257726.071899998933077 ], [ 364913.236599996685982, 257723.38060000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87106121, "LATITUDE": 18.34833877, "OBJECTID_1": 7172, "PARCEL_NO_": "103204024100", "Tax_Legal_": "FRYDENDAHL 56-22 EAST END QTR.", "Name": "HECTOR, KETURAH & MELAINE", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021736, "Country": "United States", "Land_Value": 32500, "Improved_V": 111600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.14402314500001, "SHAPE_Area": 923.03623666800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365142.303099997341633, 257716.600600000470877 ], [ 365124.029399998486042, 257684.575899999588728 ], [ 365122.409599997103214, 257685.407000001519918 ], [ 365101.362700000405312, 257694.945099998265505 ], [ 365119.632799997925758, 257727.3918999992311 ], [ 365142.303099997341633, 257716.600600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103203025400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8761624, "LATITUDE": 18.34829555, "OBJECTID_1": 7053, "PARCEL_NO_": "103203025400", "Tax_Legal_": "FRYDENDAHL 5-6 EAST END QTR", "Name": "PILGRIM, ULYSSES", "Address": "P.O. BOX 4109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.35879507300001, "SHAPE_Area": 1489.31418343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364605.608199998736382, 257675.899900000542402 ], [ 364575.009700000286102, 257670.794300001114607 ], [ 364560.102300003170967, 257716.901799999177456 ], [ 364589.887299999594688, 257722.845100000500679 ], [ 364605.608199998736382, 257675.899900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104039700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89118525000001, "LATITUDE": 18.34835261, "OBJECTID_1": 6925, "PARCEL_NO_": "103104039700", "Tax_Legal_": "ANNAS RETREAT 215-200 NEW QTR", "Name": "GRANT, JANICE", "Address": "PO Box 303904", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 174100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.094898151, "SHAPE_Area": 719.46648406199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362992.618299998342991, 257705.550299998372793 ], [ 362995.006599999964237, 257709.158500000834465 ], [ 363007.176899999380112, 257700.392200000584126 ], [ 363016.931699998676777, 257691.183899998664856 ], [ 363012.902000002563, 257690.939800001680851 ], [ 363008.886600002646446, 257689.007100000977516 ], [ 362994.500600002706051, 257673.901700001209974 ], [ 362992.094300001859665, 257672.404399998486042 ], [ 362988.870800003409386, 257672.166900001466274 ], [ 362975.908699996769428, 257679.238000001758337 ], [ 362992.618299998342991, 257705.550299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104041300", "MAP": "C9-217-T77", "PARCEL_NAM": "394-9", "ACRE": "0.17", "LONGITUDE": -64.88377607, "LATITUDE": 18.34837491, "OBJECTID_1": 6939, "PARCEL_NO_": "103104041300", "Tax_Legal_": "ANNAS RETREAT 394-9 NEW QTR", "Name": "DAWSON, ERIC & MURIEL", "Address": "2416 Laurelwood Dr", "City": "Arlington", "State": "Texas", "Zip": 76010, "Country": "United States", "Land_Value": 23300, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.85190341000001, "SHAPE_Area": 691.10868165700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363791.042700000107288, 257687.884100001305342 ], [ 363764.472800001502037, 257684.338799998164177 ], [ 363764.444256583461538, 257686.688814606197411 ], [ 363764.176500000059605, 257689.023699998855591 ], [ 363762.713200002908707, 257704.042700000107288 ], [ 363781.967600002884865, 257715.599399998784065 ], [ 363784.794326868781354, 257713.487403537379578 ], [ 363787.286663596634753, 257710.989570183795877 ], [ 363789.392427714192308, 257708.158197493990883 ], [ 363791.067530484870076, 257705.052566393045709 ], [ 363792.276900000870228, 257701.737700000405312 ], [ 363792.792120728059672, 257698.244300044490956 ], [ 363792.75530296517536, 257694.713303003692999 ], [ 363792.167350702919066, 257691.231405850267038 ], [ 363791.042700000107288, 257687.884100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104033300", "MAP": "A9-167I-71", "PARCEL_NAM": "344-297", "ACRE": ".139", "LONGITUDE": -64.88780452, "LATITUDE": 18.34838745, "OBJECTID_1": 6868, "PARCEL_NO_": "103104033300", "Tax_Legal_": "ANNAS RETREAT 394-297 NEW QTR", "Name": "GREIG, RUSSEL JR & LORNA E & OTHERS", "Address": "PO Box 894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 116600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.464120835200006, "SHAPE_Area": 530.19515304900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363367.623700000345707, 257700.386900000274181 ], [ 363359.726000003516674, 257680.901700001209974 ], [ 363346.765699997544289, 257687.761700000613928 ], [ 363335.42509999871254, 257693.790600001811981 ], [ 363346.5625, 257711.613600000739098 ], [ 363351.429099999368191, 257708.27589999884367 ], [ 363367.623700000345707, 257700.386900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104036200", "MAP": "A9-167I-71", "PARCEL_NAM": "394-300", "ACRE": ".150", "LONGITUDE": -64.8882228, "LATITUDE": 18.3483497, "OBJECTID_1": 6894, "PARCEL_NO_": "103104036200", "Tax_Legal_": "ANNAS RETREAT 394-300 NEW QTR", "Name": "SIMON, TOYA JELLICE (TRUSTEE)", "Address": "PO Box 10308", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 118100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.07335081700001, "SHAPE_Area": 708.98348544199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363314.597699999809265, 257677.576999999582767 ], [ 363312.486000001430511, 257673.100699998438358 ], [ 363293.697599999606609, 257682.116300001740456 ], [ 363291.047899998724461, 257683.476500000804663 ], [ 363293.536499999463558, 257688.803700000047684 ], [ 363303.831500001251698, 257710.841699998825788 ], [ 363312.742299996316433, 257706.059500001370907 ], [ 363324.894500002264977, 257699.403900001198053 ], [ 363314.597699999809265, 257677.576999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033900", "MAP": "A9-31-T65", "PARCEL_NAM": "1-142-2", "ACRE": ".34", "LONGITUDE": -64.90852393, "LATITUDE": 18.34830781, "OBJECTID_1": 5835, "PARCEL_NO_": "103003033900", "Tax_Legal_": "1-142-2 WINTBERG No.3 GREAT NORTHSIDE QTR", "Name": "CASWELL, JR., HUMPHREY & VERNIQUE", "Address": "PO Box 306663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42500, "Improved_V": 433900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.38951610300001, "SHAPE_Area": 1400.0418696 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361187.453699998557568, 257670.933100000023842 ], [ 361169.131499998271465, 257644.607599999755621 ], [ 361165.072899997234344, 257647.740800000727177 ], [ 361156.165700003504753, 257652.10080000013113 ], [ 361148.896300002932549, 257653.519000001251698 ], [ 361142.447599999606609, 257653.255100000649691 ], [ 361142.203100003302097, 257681.961800001561642 ], [ 361167.110699996352196, 257692.509300000965595 ], [ 361187.453699998557568, 257670.933100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204023600", "MAP": "G9-3043-T80", "PARCEL_NAM": "56-36", "ACRE": null, "LONGITUDE": -64.87174065000001, "LATITUDE": 18.34827371, "OBJECTID_1": 7167, "PARCEL_NO_": "103204023600", "Tax_Legal_": "FRYDENDAHL 56-36 EAST END QTR", "Name": "BENN, ANTHIA E. S", "Address": "PO Box 9159", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.87468823200001, "SHAPE_Area": 1061.0715952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365068.969999998807907, 257711.145199999213219 ], [ 365053.973700001835823, 257673.025699999183416 ], [ 365043.452100001275539, 257677.583599999547005 ], [ 365032.941299997270107, 257680.875100001692772 ], [ 365043.864600002765656, 257723.816500000655651 ], [ 365046.294299997389317, 257722.56980000063777 ], [ 365068.969999998807907, 257711.145199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204012700", "MAP": "A9-494-T96", "PARCEL_NAM": "B-6", "ACRE": ".861", "LONGITUDE": -64.86818554, "LATITUDE": 18.34825698, "OBJECTID_1": 7081, "PARCEL_NO_": "103204012700", "Tax_Legal_": "COKI POINT B-5 & B-6 EAST END QTR", "Name": "VIALET, FREDERICK", "Address": "PO Box 546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.23825624699998, "SHAPE_Area": 2138.2268138899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365453.161300003528595, 257668.904599998146296 ], [ 365407.770499996840954, 257696.397399999201298 ], [ 365359.138199999928474, 257725.763599999248981 ], [ 365458.465700000524521, 257708.8445999994874 ], [ 365452.918600000441074, 257697.400199998170137 ], [ 365452.187799997627735, 257688.528299998492002 ], [ 365457.070600003004074, 257683.290899999439716 ], [ 365478.850000001490116, 257682.413699999451637 ], [ 365453.161300003528595, 257668.904599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103048000", "MAP": "C9-229-T78", "PARCEL_NAM": "260-69", "ACRE": "0.28", "LONGITUDE": -64.89511111, "LATITUDE": 18.34835072, "OBJECTID_1": 6699, "PARCEL_NO_": "103103048000", "Tax_Legal_": "ANNAS RETREAT 260-69 NEW QTR", "Name": "CHICHESTER, MAGDALENE & OTHERS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43600, "Improved_V": 179200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.25923508700001, "SHAPE_Area": 1242.93900977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362603.419299997389317, 257673.022900000214577 ], [ 362588.111900001764297, 257671.420000001788139 ], [ 362557.473899997770786, 257670.958099998533726 ], [ 362560.434799998998642, 257702.013099998235703 ], [ 362566.093400001525879, 257700.370700001716614 ], [ 362595.11879999935627, 257700.819299999624491 ], [ 362599.143200002610683, 257701.696699999272823 ], [ 362603.419299997389317, 257673.022900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104035800", "MAP": "A9-167I-71", "PARCEL_NAM": "394-314", "ACRE": ".178", "LONGITUDE": -64.88892741, "LATITUDE": 18.34836954, "OBJECTID_1": 6891, "PARCEL_NO_": "103104035800", "Tax_Legal_": "ANNAS RETREAT 394-314 NEW QTR", "Name": "GEORGE, BERNARD & JEANNE", "Address": "394-314 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 189400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.69420177400001, "SHAPE_Area": 721.76232052700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363232.384400002658367, 257673.315600000321865 ], [ 363217.716099999845028, 257691.349599998444319 ], [ 363218.443300001323223, 257700.6435999982059 ], [ 363220.838899999856949, 257703.407400000840425 ], [ 363228.869599997997284, 257707.272900000214577 ], [ 363235.318300001323223, 257707.536699999123812 ], [ 363240.167000003159046, 257706.309799998998642 ], [ 363252.319200001657009, 257699.65430000051856 ], [ 363242.776500001549721, 257683.955299999564886 ], [ 363232.384400002658367, 257673.315600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103051400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89190096, "LATITUDE": 18.34833722, "OBJECTID_1": 6732, "PARCEL_NO_": "103103051400", "Tax_Legal_": "ANNAS RETREAT 215-182 NEW QTR.", "Name": "SAMUEL K BAILEY REVOC TRUST (LIFE ESTATE) & CYNTHI", "Address": "PO Box 10639", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 116500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.292829396200005, "SHAPE_Area": 496.57992668399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362933.842000000178814, 257695.147900000214577 ], [ 362919.538699999451637, 257670.332899998873472 ], [ 362909.008100003004074, 257675.946199998259544 ], [ 362904.958599999547005, 257678.024000000208616 ], [ 362918.444700002670288, 257704.098900001496077 ], [ 362933.842000000178814, 257695.147900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104038500", "MAP": "A9-167I-71", "PARCEL_NAM": "394-309", "ACRE": ".161", "LONGITUDE": -64.88931078, "LATITUDE": 18.34829958, "OBJECTID_1": 6914, "PARCEL_NO_": "103104038500", "Tax_Legal_": "ANNAS RETREAT 394-309 NEW QTR", "Name": "STRAUN, AVIS", "Address": "394-309 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 144200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.730050933, "SHAPE_Area": 741.79286151899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363191.27139999717474, 257671.923599999397993 ], [ 363180.837899997830391, 257666.138700000941753 ], [ 363175.150600001215935, 257671.158399999141693 ], [ 363188.876199997961521, 257702.699499998241663 ], [ 363193.217434366932139, 257701.979389261978213 ], [ 363197.600699998438358, 257701.589699998497963 ], [ 363199.643867328588385, 257701.1785593937675 ], [ 363201.601215463073459, 257700.46276779245818 ], [ 363203.427601439820137, 257699.458833731012419 ], [ 363205.080902720219456, 257698.189911269932054 ], [ 363206.522988674521912, 257696.685265984066064 ], [ 363207.720600001513958, 257694.979600001126528 ], [ 363208.042199999094009, 257691.059300001710653 ], [ 363209.692500002682209, 257686.639800000935793 ], [ 363212.13849999755621, 257683.493400000035763 ], [ 363191.27139999717474, 257671.923599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024200", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-50", "ACRE": ".29", "LONGITUDE": -64.90654789, "LATITUDE": 18.34829976, "OBJECTID_1": 6113, "PARCEL_NO_": "103004024200", "Tax_Legal_": "WINTBERG 1-143-50 3 GR NORTHSIDE", "Name": "WINTBERG 4 LLC", "Address": "PO BOX 503268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31800, "Improved_V": 42700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.060111302, "SHAPE_Area": 1336.2126423899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361392.975299999117851, 257682.958799999207258 ], [ 361386.828599996864796, 257647.23369999974966 ], [ 361366.598899997770786, 257655.511900000274181 ], [ 361343.975400000810623, 257660.815099999308586 ], [ 361354.259700000286102, 257684.119600001722574 ], [ 361382.437399998307228, 257689.416499998420477 ], [ 361388.123000003397465, 257684.607799999415874 ], [ 361392.975299999117851, 257682.958799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024400", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-8", "ACRE": ".48", "LONGITUDE": -64.90756076, "LATITUDE": 18.34821474, "OBJECTID_1": 6115, "PARCEL_NO_": "103004024400", "Tax_Legal_": "WINTBERG 1 143 8 GREAT NORTHSIDE QTR", "Name": "DUCLOUX, PIERRE F.", "Address": "PO Box 6174", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 156800, "Improved_V": 201000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.458581501, "SHAPE_Area": 2254.5677645199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361292.446900002658367, 257651.527499999850988 ], [ 361289.236100003123283, 257649.812399998307228 ], [ 361245.887599997222424, 257626.870600000023842 ], [ 361244.12389999628067, 257644.588100001215935 ], [ 361235.789300002157688, 257676.394999999552965 ], [ 361231.700199998915195, 257683.116500001400709 ], [ 361230.863300003111362, 257686.69819999858737 ], [ 361263.182300001382828, 257679.152300000190735 ], [ 361297.925700001418591, 257670.992899999022484 ], [ 361298.769799999892712, 257666.566899999976158 ], [ 361300.411200001835823, 257663.202799998223782 ], [ 361305.290399998426437, 257658.387600000947714 ], [ 361292.446900002658367, 257651.527499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023100", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-49", "ACRE": ".28", "LONGITUDE": -64.90618971000001, "LATITUDE": 18.34824338, "OBJECTID_1": 6102, "PARCEL_NO_": "103004023100", "Tax_Legal_": "WINTBERG 1-143-49 GR NORTHSIDE QTR", "Name": "PIERRE, GEORGE", "Address": "PO Box 971", "City": "ST. JOHN", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 24300, "Improved_V": 125400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.19160978599999, "SHAPE_Area": 1477.31286123 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361429.252099998295307, 257684.100099999457598 ], [ 361427.169399999082088, 257644.608600001782179 ], [ 361416.678400002419949, 257645.578200001269579 ], [ 361393.302500002086163, 257644.542500000447035 ], [ 361386.828599996864796, 257647.23369999974966 ], [ 361392.975299999117851, 257682.958799999207258 ], [ 361398.624799996614456, 257682.371800001710653 ], [ 361413.122299998998642, 257684.390299998223782 ], [ 361429.252099998295307, 257684.100099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104038600", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-151", "ACRE": ".120", "LONGITUDE": -64.88758373, "LATITUDE": 18.34829193, "OBJECTID_1": 6915, "PARCEL_NO_": "103104038600", "Tax_Legal_": "ANNAS RETREAT 394-151 NEW QTR", "Name": "ELAINE HANLEY", "Address": "P. O. Box 502401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16400, "Improved_V": 185100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.102734121200001, "SHAPE_Area": 525.85569368899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363391.085900001227856, 257691.290800001472235 ], [ 363384.79900000244379, 257672.029899999499321 ], [ 363369.432300001382828, 257677.392499998211861 ], [ 363359.726000003516674, 257680.901700001209974 ], [ 363367.623700000345707, 257700.386900000274181 ], [ 363385.429099999368191, 257692.722199998795986 ], [ 363391.085900001227856, 257691.290800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003039100", "MAP": "A9-31-T65", "PARCEL_NAM": "1-142-1", "ACRE": ".30", "LONGITUDE": -64.90888552, "LATITUDE": 18.34830067, "OBJECTID_1": 5887, "PARCEL_NO_": "103003039100", "Tax_Legal_": "WINTBERG 1-142-1 GT. NORTHSIDE", "Name": "RITA E DAWSON LIVING TRUST", "Address": "4907 Estate Tutu E-7", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31300, "Improved_V": 174500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.325531125, "SHAPE_Area": 970.17997364799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361142.447599999606609, 257653.255100000649691 ], [ 361136.801700003445148, 257653.420000001788139 ], [ 361122.284400001168251, 257653.723400000482798 ], [ 361114.196099996566772, 257656.612500000745058 ], [ 361110.14299999922514, 257659.112399999052286 ], [ 361105.254799999296665, 257664.982999999076128 ], [ 361102.80349999666214, 257668.762699998915195 ], [ 361101.162100002169609, 257672.1266999989748 ], [ 361100.336000002920628, 257674.44200000166893 ], [ 361099.497299998998642, 257678.2347999997437 ], [ 361142.203100003302097, 257681.961800001561642 ], [ 361142.447599999606609, 257653.255100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023000", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-48", "ACRE": ".28", "LONGITUDE": -64.90583633, "LATITUDE": 18.34820587, "OBJECTID_1": 6101, "PARCEL_NO_": "103004023000", "Tax_Legal_": "WINTBERG 1-143-47&48 ST. NORTHSIDE", "Name": "MATA, CRISTIAN S. & CORINA", "Address": "73 Rhododendron Rd", "City": "STONY BROOK", "State": "New York", "Zip": 11730, "Country": "United States", "Land_Value": 169900, "Improved_V": 91800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.34019757, "SHAPE_Area": 1489.06074805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361465.620700001716614, 257674.476399999111891 ], [ 361463.548799999058247, 257633.718299999833107 ], [ 361444.130800001323223, 257641.369899999350309 ], [ 361427.169399999082088, 257644.608600001782179 ], [ 361429.252099998295307, 257684.100099999457598 ], [ 361439.744999997317791, 257682.919399999082088 ], [ 361450.248599998652935, 257680.472300000488758 ], [ 361465.620700001716614, 257674.476399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204023500", "MAP": "G9-3043-T80", "PARCEL_NAM": "56-35", "ACRE": null, "LONGITUDE": -64.87151853, "LATITUDE": 18.3481722, "OBJECTID_1": 7166, "PARCEL_NO_": "103204023500", "Tax_Legal_": "FRYDENDAHL 56-35 EAST END QTR.", "Name": "MURRAINE, ROSHAWN V. & ALENIA E. BUNCOME", "Address": "PO Box 8628", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 140300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.53873736899999, "SHAPE_Area": 1074.68870879 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365095.693400003015995, 257697.853999998420477 ], [ 365074.2195999994874, 257662.847800001502037 ], [ 365053.973700001835823, 257673.025699999183416 ], [ 365068.969999998807907, 257711.145199999213219 ], [ 365085.974500000476837, 257702.840700000524521 ], [ 365095.693400003015995, 257697.853999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204017000", "MAP": "A9-494-T96", "PARCEL_NAM": "B-12", "ACRE": ".298", "LONGITUDE": -64.86767434, "LATITUDE": 18.3482318, "OBJECTID_1": 7121, "PARCEL_NO_": "103204017000", "Tax_Legal_": "COKI POINT B-7-B,B-8,B-12 & B-14 EAST END #4", "Name": "ESTATE OF JOSEPHINE B. BELL", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 277600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.89815388599999, "SHAPE_Area": 1183.4498982600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365478.850000001490116, 257682.413699999451637 ], [ 365457.070600003004074, 257683.290899999439716 ], [ 365452.187799997627735, 257688.528299998492002 ], [ 365452.918600000441074, 257697.400199998170137 ], [ 365458.465700000524521, 257708.8445999994874 ], [ 365464.923299998044968, 257708.053100001066923 ], [ 365477.838699996471405, 257706.470100000500679 ], [ 365493.155100002884865, 257707.017599999904633 ], [ 365502.015500001609325, 257708.145599998533726 ], [ 365515.694099999964237, 257711.635099999606609 ], [ 365518.924699999392033, 257711.028200000524521 ], [ 365519.74719999730587, 257709.135099999606609 ], [ 365500.525200001895428, 257693.779100000858307 ], [ 365478.850000001490116, 257682.413699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86980675, "LATITUDE": 18.348179, "OBJECTID_1": 7114, "PARCEL_NO_": "103204016300", "Tax_Legal_": "FRYDENDAHL 56-58 EAST END QTR.", "Name": "PARSONS, JUSTIN & SONDRA", "Address": "PO Box 12062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30900, "Improved_V": 39600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.02532778299999, "SHAPE_Area": 1313.83006759 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365278.88629999756813, 257680.565999999642372 ], [ 365245.913800001144409, 257670.163600001484156 ], [ 365244.297600001096725, 257670.572599999606609 ], [ 365232.955300003290176, 257676.812600001692772 ], [ 365233.540399998426437, 257702.781899999827147 ], [ 365257.711800001561642, 257705.090599998831749 ], [ 365273.008400000631809, 257707.96000000089407 ], [ 365278.88629999756813, 257680.565999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103033700", "MAP": "D9-5902-T95", "PARCEL_NAM": "321A", "ACRE": null, "LONGITUDE": -64.89763312, "LATITUDE": 18.34836676, "OBJECTID_1": 6615, "PARCEL_NO_": "103103033700", "Tax_Legal_": "321A ANNAS RETREAT NEW QUARTER", "Name": "MARIE ELLEASE LIVING TRUST", "Address": "PO Box 11202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26100, "Improved_V": 197900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.931337305, "SHAPE_Area": 1071.1862211600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362303.515100002288818, 257661.135200001299381 ], [ 362293.040600001811981, 257696.26410000026226 ], [ 362332.8108000010252, 257704.753499999642372 ], [ 362332.435599997639656, 257702.399900000542402 ], [ 362329.177799999713898, 257681.966400001198053 ], [ 362329.226300001144409, 257676.267200000584126 ], [ 362303.515100002288818, 257661.135200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023000", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-47", "ACRE": ".26", "LONGITUDE": -64.90553998, "LATITUDE": 18.3481311, "OBJECTID_1": 6101, "PARCEL_NO_": "103004023000", "Tax_Legal_": "WINTBERG 1-143-47&48 ST. NORTHSIDE", "Name": "MATA, CRISTIAN S. & CORINA", "Address": "73 Rhododendron Rd", "City": "STONY BROOK", "State": "New York", "Zip": 11730, "Country": "United States", "Land_Value": 169900, "Improved_V": 91800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.80733922499999, "SHAPE_Area": 1095.54035215 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361491.424500003457069, 257674.476500000804663 ], [ 361490.97240000218153, 257632.887299999594688 ], [ 361483.729999996721745, 257631.139299999922514 ], [ 361476.475000001490116, 257630.86879999935627 ], [ 361463.548799999058247, 257633.718299999833107 ], [ 361465.620700001716614, 257674.476399999111891 ], [ 361474.51349999755621, 257671.804900001734495 ], [ 361480.155900001525879, 257672.062199998646975 ], [ 361491.424500003457069, 257674.476500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004022800", "MAP": "A9-31-T65", "PARCEL_NAM": "1-143-46", "ACRE": ".25", "LONGITUDE": -64.90524053, "LATITUDE": 18.3481517, "OBJECTID_1": 6100, "PARCEL_NO_": "103004022800", "Tax_Legal_": "WINTBERG 1-143-46 3 GR NORTHSIDE", "Name": "LINDQVIST, L MARK & RYAN, SUSAN", "Address": "PO Box 425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26100, "Improved_V": 224400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.99666612300001, "SHAPE_Area": 1216.1327972500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361491.424500003457069, 257674.476500000804663 ], [ 361501.103799998760223, 257674.133499998599291 ], [ 361510.804799996316433, 257671.257599998265505 ], [ 361544.048799999058247, 257649.787000000476837 ], [ 361543.260499998927116, 257647.669599998742342 ], [ 361528.759400002658367, 257646.073300000280142 ], [ 361513.468299999833107, 257642.570700000971556 ], [ 361490.97240000218153, 257632.887299999594688 ], [ 361491.424500003457069, 257674.476500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702015000", "MAP": null, "PARCEL_NAM": "52-8", "ACRE": null, "LONGITUDE": -64.87329671000001, "LATITUDE": 18.34795332, "OBJECTID_1": 22302, "PARCEL_NO_": "105702015000", "Tax_Legal_": "FRYDENDAHL 52-8 EAST END QTR", "Name": "LUTHERAN CHURCH OF THE REFORMA", "Address": "PO Box 502323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 170300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.79936258699999, "SHAPE_Area": 2544.7731438599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364877.14130000025034, 257700.920400001108646 ], [ 364908.5929000005126, 257700.54450000077486 ], [ 364907.853100001811981, 257692.728000000119209 ], [ 364903.22749999910593, 257667.781100001186132 ], [ 364899.388300001621246, 257645.16270000115037 ], [ 364894.748199999332428, 257621.904399998486042 ], [ 364862.49210000038147, 257622.062600001692772 ], [ 364877.14130000025034, 257700.920400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.870125, "LATITUDE": 18.34821072, "OBJECTID_1": 7115, "PARCEL_NO_": "103204016400", "Tax_Legal_": "FRYDENDAHL 56-57 EAST END QTR.", "Name": "THOMAS, GLADSTON & VELMA", "Address": "PO Box 3726", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 247600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.677371389699999, "SHAPE_Area": 493.85672362899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365232.955300003290176, 257676.812600001692772 ], [ 365200.544600002467632, 257695.123500000685453 ], [ 365200.521200001239777, 257697.867600001394749 ], [ 365202.925700001418591, 257699.5760000012815 ], [ 365233.540399998426437, 257702.781899999827147 ], [ 365232.955300003290176, 257676.812600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014200", "MAP": "D9-6708-T000", "PARCEL_NAM": "324A", "ACRE": ".25", "LONGITUDE": -64.89938441, "LATITUDE": 18.34804277, "OBJECTID_1": 19839, "PARCEL_NO_": "105502014200", "Tax_Legal_": "WINTBERG ESTATE 324A REM. GT. NORTHSIDE", "Name": "DAVIS, LEROY & GRANT, ALTHEA V", "Address": "PO Box 7601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.81831325499999, "SHAPE_Area": 2526.8810161900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362161.41610000282526, 257665.116700001060963 ], [ 362156.288000002503395, 257648.744300000369549 ], [ 362159.843400001525879, 257622.466699998825788 ], [ 362157.92230000346899, 257623.147300001233816 ], [ 362143.379900000989437, 257626.405699998140335 ], [ 362128.853699997067451, 257627.764499999582767 ], [ 362114.341899998486042, 257627.434599999338388 ], [ 362097.430900000035763, 257624.763099998235703 ], [ 362103.457000002264977, 257674.630499999970198 ], [ 362126.879600003361702, 257670.178100001066923 ], [ 362158.028200000524521, 257665.613200001418591 ], [ 362161.41610000282526, 257665.116700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103043900", "MAP": "D9-5822-T94", "PARCEL_NAM": "322A", "ACRE": null, "LONGITUDE": -64.89781918, "LATITUDE": 18.34793515, "OBJECTID_1": 6658, "PARCEL_NO_": "103103043900", "Tax_Legal_": "322A ANNA'S RETREAT NO.1 NEW QTR", "Name": "THOMAS, LEE", "Address": "PO Box 11134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.157400618, "SHAPE_Area": 2679.7914345899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362258.420500002801418, 257611.51969999819994 ], [ 362247.720600001513958, 257628.121599998325109 ], [ 362261.027800001204014, 257636.023499999195337 ], [ 362266.645000003278255, 257639.235800001770258 ], [ 362301.94650000333786, 257660.211899999529123 ], [ 362329.226300001144409, 257676.267200000584126 ], [ 362327.867200002074242, 257646.491900000721216 ], [ 362326.301399998366833, 257640.990699999034405 ], [ 362320.74889999628067, 257630.179400000721216 ], [ 362310.340499997138977, 257621.439399998635054 ], [ 362301.508900001645088, 257616.934200000017881 ], [ 362293.463699996471405, 257614.757399998605251 ], [ 362271.714900001883507, 257612.046300001442432 ], [ 362258.420500002801418, 257611.51969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103044100", "MAP": "D9-5902-T95", "PARCEL_NAM": "321", "ACRE": ".42", "LONGITUDE": -64.89794987000001, "LATITUDE": 18.34823106, "OBJECTID_1": 6660, "PARCEL_NO_": "103103044100", "Tax_Legal_": "ANNAS RETREAT REM. 321 & 322B NEW QTR", "Name": "KIRKPATRICK, ROBERT &", "Address": "PO Box 2907", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.463945268, "SHAPE_Area": 1549.0961577200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362301.94650000333786, 257660.211899999529123 ], [ 362270.03660000115633, 257641.251200001686811 ], [ 362263.444099999964237, 257659.755699999630451 ], [ 362260.017399996519089, 257669.374099999666214 ], [ 362255.702299997210503, 257681.486099999397993 ], [ 362274.325000002980232, 257688.856699999421835 ], [ 362293.040600001811981, 257696.26410000026226 ], [ 362303.515100002288818, 257661.135200001299381 ], [ 362301.94650000333786, 257660.211899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204023400", "MAP": "G9-3043-T80", "PARCEL_NAM": "56-34", "ACRE": null, "LONGITUDE": -64.87129618, "LATITUDE": 18.34805311, "OBJECTID_1": 7165, "PARCEL_NO_": "103204023400", "Tax_Legal_": "56-34 FRYDENDAHL 5 EAST END QUARTER", "Name": "HANLEY, WINSTON & MARY", "Address": "BOX 2354", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32100, "Improved_V": 171700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.22812515300001, "SHAPE_Area": 1160.21923885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365122.409599997103214, 257685.407000001519918 ], [ 365094.497900001704693, 257648.87049999833107 ], [ 365088.011500000953674, 257653.039299998432398 ], [ 365083.947499997913837, 257656.805700000375509 ], [ 365074.2195999994874, 257662.847800001502037 ], [ 365095.693400003015995, 257697.853999998420477 ], [ 365101.362700000405312, 257694.945099998265505 ], [ 365122.409599997103214, 257685.407000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014100", "MAP": "D9-6709-T000", "PARCEL_NAM": "323A", "ACRE": null, "LONGITUDE": -64.89845187, "LATITUDE": 18.34796884, "OBJECTID_1": 19838, "PARCEL_NO_": "105502014100", "Tax_Legal_": "WINTBERG ESTATE 323REM&324B-1 GT. NORTHSIDE", "Name": "RABSATT, ECEDRO (LIFE ESTATE)", "Address": "PO Box 1212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47700, "Improved_V": 476600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.743767416, "SHAPE_Area": 1550.1606729 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362232.450099997222424, 257611.540899999439716 ], [ 362212.009400002658367, 257638.425500001758337 ], [ 362203.074400000274181, 257672.508699998259544 ], [ 362204.131599999964237, 257673.234400000423193 ], [ 362209.561599999666214, 257675.104400001466274 ], [ 362212.736599996685982, 257676.05689999833703 ], [ 362214.403399996459484, 257675.97749999910593 ], [ 362216.149700000882149, 257675.739399999380112 ], [ 362218.204800002276897, 257673.918000001460314 ], [ 362222.656800001859665, 257667.010200001299381 ], [ 362231.259999997913837, 257653.66160000115633 ], [ 362247.720600001513958, 257628.121599998325109 ], [ 362258.420500002801418, 257611.51969999819994 ], [ 362251.562399998307228, 257611.247999999672174 ], [ 362235.434399999678135, 257611.327100001275539 ], [ 362232.450099997222424, 257611.540899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204023300", "MAP": null, "PARCEL_NAM": "56-33", "ACRE": null, "LONGITUDE": -64.87109215, "LATITUDE": 18.34793471, "OBJECTID_1": 7164, "PARCEL_NO_": "103204023300", "Tax_Legal_": "FRYDENDAHL 56-33 EAST END QTR", "Name": "SOMERSALL, EDWARD A. & SYMONE R.", "Address": "394-317 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30900, "Improved_V": 83000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.03312778099999, "SHAPE_Area": 1131.9622533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365144.268100000917912, 257675.242300000041723 ], [ 365114.765399999916553, 257636.159699998795986 ], [ 365098.558300003409386, 257645.526200000196695 ], [ 365094.497900001704693, 257648.87049999833107 ], [ 365122.409599997103214, 257685.407000001519918 ], [ 365124.029399998486042, 257684.575899999588728 ], [ 365144.268100000917912, 257675.242300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034100", "MAP": "A9-31-T65", "PARCEL_NAM": "1-142-4 REM", "ACRE": ".39", "LONGITUDE": -64.90802683, "LATITUDE": 18.34786232, "OBJECTID_1": 5837, "PARCEL_NO_": "103003034100", "Tax_Legal_": "WINTBERG1-142-4 REM. & 1-142-3-1 GREAT NORTH SIDE QTR.", "Name": "PENN, EDMUND & ANGELINA", "Address": "PO Box 7355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37200, "Improved_V": 220400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.442155466, "SHAPE_Area": 1870.5783287899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361236.041000001132488, 257646.843899998813868 ], [ 361237.876599997282028, 257620.683400001376867 ], [ 361236.353900000452995, 257610.116200000047684 ], [ 361234.771899998188019, 257606.514699999243021 ], [ 361232.378100000321865, 257603.539799999445677 ], [ 361228.3699000030756, 257600.762800000607967 ], [ 361212.277800001204014, 257596.620299998670816 ], [ 361203.439000003039837, 257592.959300000220537 ], [ 361200.215499997138977, 257592.721900001168251 ], [ 361197.784000001847744, 257594.17960000038147 ], [ 361196.9003000035882, 257603.249400001019239 ], [ 361193.547399997711182, 257618.209600001573563 ], [ 361188.64299999922514, 257625.979899998754263 ], [ 361198.219899997115135, 257637.668499998748302 ], [ 361236.041000001132488, 257646.843899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004025200", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-D", "ACRE": ".2330", "LONGITUDE": -64.90417346, "LATITUDE": 18.34786842, "OBJECTID_1": 6123, "PARCEL_NO_": "103004025200", "Tax_Legal_": "WINTBERG 1X-1 GREAT NORTHSIDE QTR", "Name": "WEBSTER, CLEVE E", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146900, "Improved_V": 743700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.21241966900001, "SHAPE_Area": 1129.16109044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361619.420699998736382, 257605.229899998754263 ], [ 361608.620700001716614, 257597.556600000709295 ], [ 361609.088699996471405, 257608.131799999624491 ], [ 361603.373700000345707, 257634.325599998235703 ], [ 361612.962200000882149, 257640.558100000023842 ], [ 361623.954599998891354, 257640.941799998283386 ], [ 361633.972900003194809, 257642.599599998444319 ], [ 361647.755400002002716, 257624.664599999785423 ], [ 361625.833400003612041, 257609.715300001204014 ], [ 361619.420699998736382, 257605.229899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034100", "MAP": "D9-6065-T96", "PARCEL_NAM": "1-142-3-1", "ACRE": null, "LONGITUDE": -64.9082556, "LATITUDE": 18.34796988, "OBJECTID_1": 5837, "PARCEL_NO_": "103003034100", "Tax_Legal_": "WINTBERG1-142-4 REM. & 1-142-3-1 GREAT NORTH SIDE QTR.", "Name": "PENN, EDMUND & ANGELINA", "Address": "PO Box 7355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37200, "Improved_V": 220400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.547482277900002, "SHAPE_Area": 48.8497109192 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361188.64299999922514, 257625.979899998754263 ], [ 361185.381800003349781, 257630.17509999871254 ], [ 361193.392800003290176, 257636.362399999052286 ], [ 361198.219899997115135, 257637.668499998748302 ], [ 361188.64299999922514, 257625.979899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501012600", "MAP": "G9-2511-T75", "PARCEL_NAM": "1CA-3A", "ACRE": ".156", "LONGITUDE": -64.90930352, "LATITUDE": 18.34661842, "OBJECTID_1": 19680, "PARCEL_NO_": "105501012600", "Tax_Legal_": "WINTBERG 1CA-2 & 1CA-3A GREAT NORTHSIDE", "Name": "DIMPOULOS, J. , C. , K. , & N", "Address": "PO Box 11969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.87296877200001, "SHAPE_Area": 587.21480652399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361090.446599997580051, 257510.130300000309944 ], [ 361082.084200002253056, 257450.533399999141693 ], [ 361072.392300002276897, 257452.353999998420477 ], [ 361081.544799998402596, 257513.857099998742342 ], [ 361090.446599997580051, 257510.130300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602085500", "MAP": "D9-2753-T84", "PARCEL_NAM": "215-42", "ACRE": null, "LONGITUDE": -64.89128148, "LATITUDE": 18.3459515, "OBJECTID_1": 21422, "PARCEL_NO_": "105602085500", "Tax_Legal_": "215-42 ANNAS RETREAT NEW QTR.", "Name": "FRANCIS, DELIA & ANDRE", "Address": "PO Box 502326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23800, "Improved_V": 3900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.797830355, "SHAPE_Area": 577.00179145300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363005.421800002455711, 257433.133400000631809 ], [ 362986.287900000810623, 257407.434399999678135 ], [ 362975.764499999582767, 257412.203499998897314 ], [ 362967.683399997651577, 257414.248199999332428 ], [ 362988.433499999344349, 257439.538199998438358 ], [ 363005.421800002455711, 257433.133400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702071600", "MAP": "D9-8995-T015", "PARCEL_NAM": "125", "ACRE": "0.37", "LONGITUDE": -64.87461843, "LATITUDE": 18.34559847, "OBJECTID_1": 22746, "PARCEL_NO_": "105702071600", "Tax_Legal_": "125 SMITH BAY 1,2,3 EAST END QUARTER", "Name": "Glen, Desiree, Emile Jr & Sonnell Francis", "Address": "PO Box 8920", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44000, "Improved_V": 77600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.743879456, "SHAPE_Area": 1297.87888696 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364780.561499997973442, 257395.3108000010252 ], [ 364778.98480000346899, 257391.0760000012815 ], [ 364775.781199999153614, 257388.516699999570847 ], [ 364772.557700000703335, 257388.279199998825788 ], [ 364758.01349999755621, 257391.748799998313189 ], [ 364747.52250000089407, 257392.718400001525879 ], [ 364731.394400000572205, 257392.797499999403954 ], [ 364715.277199998497963, 257391.610100001096725 ], [ 364713.26690000295639, 257391.330200001597404 ], [ 364700.779700003564358, 257389.591600000858307 ], [ 364670.9983000010252, 257383.226199999451637 ], [ 364671.418300002813339, 257385.902199998497963 ], [ 364715.728100001811981, 257398.378499999642372 ], [ 364755.874099999666214, 257409.682399999350309 ], [ 364786.210500001907349, 257418.224199999123812 ], [ 364782.16330000013113, 257396.590500000864267 ], [ 364780.561499997973442, 257395.3108000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602088600", "MAP": "C9-239-T79", "PARCEL_NAM": "215-33", "ACRE": ".13", "LONGITUDE": -64.89111097, "LATITUDE": 18.34518773, "OBJECTID_1": 21453, "PARCEL_NO_": "105602088600", "Tax_Legal_": "215-33 ANNAS RETREAT No.1 NEW QUARTER", "Name": "THOMAS, RENA", "Address": "PO Box 8433", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 75200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.30407114, "SHAPE_Area": 515.04769482799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363012.605999998748302, 257347.065999999642372 ], [ 363023.16889999806881, 257337.653200000524521 ], [ 363017.593099996447563, 257329.585999999195337 ], [ 363011.106600001454353, 257333.754799999296665 ], [ 363008.779399998486042, 257322.969999998807907 ], [ 362993.342600002884865, 257336.564699999988079 ], [ 362986.028200000524521, 257343.259899999946356 ], [ 362989.226499997079372, 257346.452399998903275 ], [ 362991.659800000488758, 257344.783599998801947 ], [ 362993.281400002539158, 257343.741399999707937 ], [ 363006.904200002551079, 257353.774300001561642 ], [ 363012.605999998748302, 257347.065999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702040900", "MAP": "G9-1626-T70", "PARCEL_NAM": "56A-D", "ACRE": null, "LONGITUDE": -64.87347257, "LATITUDE": 18.34486704, "OBJECTID_1": 22574, "PARCEL_NO_": "105702040900", "Tax_Legal_": "SMITH BAY 56AD EAST END QTR", "Name": "ROBERTS, CHARMAINE", "Address": "PO Box 302305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32400, "Improved_V": 116500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.87240944, "SHAPE_Area": 771.89023447299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364884.273000001907349, 257337.05350000038743 ], [ 364874.937100000679493, 257297.080400001257658 ], [ 364858.778499998152256, 257300.747800000011921 ], [ 364860.981600001454353, 257326.097100000828505 ], [ 364861.676500000059605, 257339.190499998629093 ], [ 364884.273000001907349, 257337.05350000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702062800", "MAP": "F9-3305-T75", "PARCEL_NAM": "57X-14", "ACRE": ".13", "LONGITUDE": -64.87248355, "LATITUDE": 18.34469765, "OBJECTID_1": 22673, "PARCEL_NO_": "105702062800", "Tax_Legal_": "57X-14 SMITH BAY EAST END QUARTER", "Name": "SIBILLY, ONELIA", "Address": "PO Box 7753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 88700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.95083332199999, "SHAPE_Area": 704.99887547900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364991.888400003314018, 257293.815699998289347 ], [ 364958.062799997627735, 257288.894799999892712 ], [ 364959.46679999679327, 257313.393100000917912 ], [ 364994.975100003182888, 257310.095199998468161 ], [ 364991.888400003314018, 257293.815699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701038400", "MAP": "D9-528-T65", "PARCEL_NAM": "20-22B", "ACRE": null, "LONGITUDE": -64.87767188, "LATITUDE": 18.34464496, "OBJECTID_1": 22025, "PARCEL_NO_": "105701038400", "Tax_Legal_": "20-22A & 20-22B SMITH BAY 1,2&3 EAST END QTR", "Name": "SMITH BAY PLAZA LLC", "Address": "PO Box 7395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.551653042, "SHAPE_Area": 489.15563576199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364424.181800000369549, 257268.132100000977516 ], [ 364412.594899997115135, 257295.735800001770258 ], [ 364450.168200001120567, 257312.156599998474121 ], [ 364438.332800000905991, 257302.920499999076128 ], [ 364433.729099996387959, 257289.34739999845624 ], [ 364424.181800000369549, 257268.132100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701012400", "MAP": "D9-6012-T95", "PARCEL_NAM": "21B", "ACRE": ".04", "LONGITUDE": -64.88192021, "LATITUDE": 18.34449988, "OBJECTID_1": 21857, "PARCEL_NO_": "105701012400", "Tax_Legal_": "21 ANNAS RETREAT NEW QTR", "Name": "HODGE, ANNETTE", "Address": "PO Box 10376", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 207400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.082325192, "SHAPE_Area": 445.09255984700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363970.304799996316433, 257283.765799999237061 ], [ 363996.166199997067451, 257277.011300001293421 ], [ 363994.639899998903275, 257266.866399999707937 ], [ 363976.863200001418591, 257271.153799999505281 ], [ 363972.165600001811981, 257254.650100000202656 ], [ 363963.272799998521805, 257257.32149999961257 ], [ 363970.304799996316433, 257283.765799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": "D9-6271-T97", "PARCEL_NAM": "57X-65", "ACRE": null, "LONGITUDE": -64.87279937, "LATITUDE": 18.34441197, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.043486045600005, "SHAPE_Area": 400.70364099199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364948.653399996459484, 257252.699700001627207 ], [ 364937.400799997150898, 257253.261999998241663 ], [ 364933.911200001835823, 257284.26410000026226 ], [ 364947.133799999952316, 257286.784200001507998 ], [ 364948.653399996459484, 257252.699700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702068400", "MAP": null, "PARCEL_NAM": "57-117A", "ACRE": null, "LONGITUDE": -64.87205718, "LATITUDE": 18.34436341, "OBJECTID_1": 22719, "PARCEL_NO_": "105702068400", "Tax_Legal_": "57-117 SMITH BAY E No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 77000, "Improved_V": 5800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.208728258700006, "SHAPE_Area": 452.87103142199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365038.119699999690056, 257262.318900000303984 ], [ 365005.464900001883507, 257254.475400000810623 ], [ 365005.086099997162819, 257259.093299999833107 ], [ 365003.385300002992153, 257269.422899998724461 ], [ 365036.404600001871586, 257274.337200000882149 ], [ 365038.119699999690056, 257262.318900000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701031700", "MAP": "B9-144-T66", "PARCEL_NAM": "20-23", "ACRE": "0.28", "LONGITUDE": -64.8766111, "LATITUDE": 18.34421837, "OBJECTID_1": 21965, "PARCEL_NO_": "105701031700", "Tax_Legal_": "20-23&29 SMITH BAY EAST END QTR", "Name": "HUSBAND, CLARENCE & ALICIA", "Address": "PO Box 7805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 93500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.11880685200001, "SHAPE_Area": 1353.0511017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364553.689499996602535, 257239.144600000232458 ], [ 364549.866599999368191, 257214.626499999314547 ], [ 364517.450400002300739, 257233.570700000971556 ], [ 364524.590400002896786, 257247.35020000115037 ], [ 364526.971500001847744, 257251.802600000053644 ], [ 364528.503200002014637, 257261.314399998635054 ], [ 364527.639399997889996, 257268.062300000339746 ], [ 364551.787299998104572, 257273.121100001037121 ], [ 364551.825199998915195, 257268.682399999350309 ], [ 364552.847300000488758, 257243.359600000083447 ], [ 364553.689499996602535, 257239.144600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702061900", "MAP": null, "PARCEL_NAM": "57T-4D", "ACRE": null, "LONGITUDE": -64.87110538, "LATITUDE": 18.34418329, "OBJECTID_1": 22639, "PARCEL_NO_": "105702061900", "Tax_Legal_": "57T SMITH BAY No.1,2 & 3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 119700, "Improved_V": 43800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.465468466, "SHAPE_Area": 1769.81452098 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365150.287000000476837, 257252.682300001382828 ], [ 365136.838699996471405, 257222.174800001084805 ], [ 365111.781800001859665, 257229.146899998188019 ], [ 365101.290799997746944, 257230.116500001400709 ], [ 365096.456500001251698, 257229.654699999839067 ], [ 365098.557199999690056, 257267.035500001162291 ], [ 365131.639399997889996, 257264.561999998986721 ], [ 365150.287000000476837, 257252.682300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060200", "MAP": null, "PARCEL_NAM": "57T-3", "ACRE": null, "LONGITUDE": -64.87203883, "LATITUDE": 18.34423112, "OBJECTID_1": 22624, "PARCEL_NO_": "105702060200", "Tax_Legal_": "SMITH BAY 57-117B & 57T-3 EAST END QTR", "Name": "APOSTOLIC FAITH MISSION INC", "Address": "PO Box 305101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035101, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.411760036900006, "SHAPE_Area": 529.81995461700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365005.464900001883507, 257254.475400000810623 ], [ 365038.119699999690056, 257262.318900000303984 ], [ 365039.85639999806881, 257247.767700001597404 ], [ 365008.494699999690056, 257237.589600000530481 ], [ 365005.98589999973774, 257248.123799998313189 ], [ 365005.464900001883507, 257254.475400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87840701, "LATITUDE": 18.34340279, "OBJECTID_1": 22209, "PARCEL_NO_": "105701064900", "Tax_Legal_": "REMAINDER 173B-82 ANNAS RETREAT NEW QTR", "Name": "HYPPOLITE, VIERGENITH & CASTEL, JULNER", "Address": "PO Box 502743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 43100, "Improved_V": 322400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.85863548899999, "SHAPE_Area": 1402.0906416299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364366.894100002944469, 257111.381799999624491 ], [ 364349.182099997997284, 257108.07039999961853 ], [ 364339.195299997925758, 257144.50789999961853 ], [ 364343.963100001215935, 257152.779599998146296 ], [ 364346.295699998736382, 257162.931099999696016 ], [ 364344.600299999117851, 257172.627599999308586 ], [ 364337.951999999582767, 257195.793499998748302 ], [ 364340.074299998581409, 257230.64130000025034 ], [ 364366.894100002944469, 257111.381799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89028954, "LATITUDE": 18.34377428, "OBJECTID_1": 21219, "PARCEL_NO_": "105602044100", "Tax_Legal_": "143A-28&29A ANNAS RETREAT NO 1 NEW QTR", "Name": "IVA IONA PARRY FAMILY REVOCABLE TRUST", "Address": "PO Box 10994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34200, "Improved_V": 323500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.204184405299998, "SHAPE_Area": 70.975511147999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363092.922899998724461, 257195.313799999654293 ], [ 363096.957999996840954, 257194.924600001424551 ], [ 363091.60869999974966, 257160.261500000953674 ], [ 363092.922899998724461, 257195.313799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702022600", "MAP": "D9-6313-T97", "PARCEL_NAM": "4G-8", "ACRE": "0.20", "LONGITUDE": -64.86740262, "LATITUDE": 18.34341937, "OBJECTID_1": 22390, "PARCEL_NO_": "105702022600", "Tax_Legal_": "SMITH BAY 4G 8 1 2 & 3 EAST END QTR", "Name": "NICHOLSON, MARY & OTHERS", "Address": "PO BOX 5036", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.31580159699999, "SHAPE_Area": 777.56528586100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365527.353200003504753, 257163.145799998193979 ], [ 365522.173799999058247, 257152.467399999499321 ], [ 365521.706399999558926, 257152.492400001734495 ], [ 365485.615599997341633, 257154.416999999433756 ], [ 365478.116700001060963, 257154.816799998283386 ], [ 365486.405299998819828, 257159.168299999088049 ], [ 365515.446599997580051, 257174.414700001478195 ], [ 365528.910099998116493, 257181.482900001108646 ], [ 365538.123800002038479, 257186.320000000298023 ], [ 365539.592799998819828, 257187.091299999505281 ], [ 365530.875100001692772, 257170.406800001859665 ], [ 365527.353200003504753, 257163.145799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702066300", "MAP": null, "PARCEL_NAM": "57X-23", "ACRE": "0.24", "LONGITUDE": -64.87278065, "LATITUDE": 18.34272727, "OBJECTID_1": 22706, "PARCEL_NO_": "105702066300", "Tax_Legal_": "SMITH BAY 57X-23 EAST END QTR", "Name": "JOSEPH, A & SYLVESTER, L", "Address": "PO Box 306076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33800, "Improved_V": 189000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.41798175, "SHAPE_Area": 1218.5976533099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364947.48759999871254, 257110.434200000017881 ], [ 364962.285300001502037, 257077.202500000596046 ], [ 364964.853500001132488, 257059.702799998223782 ], [ 364948.727300003170967, 257059.570799998939037 ], [ 364932.45719999819994, 257076.325100000947714 ], [ 364923.483400002121925, 257088.495099999010563 ], [ 364929.842200003564358, 257099.312899999320507 ], [ 364931.433300003409386, 257101.859000001102686 ], [ 364947.48759999871254, 257110.434200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066900", "MAP": null, "PARCEL_NAM": "173B-90B", "ACRE": null, "LONGITUDE": -64.87996475, "LATITUDE": 18.34246929, "OBJECTID_1": 22228, "PARCEL_NO_": "105701066900", "Tax_Legal_": "173B-90 ANNAS RETREAT NEW QUARTER", "Name": "MAYNARD, JUDY J.", "Address": "PO Box 301911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41400, "Improved_V": 208000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.476113428299996, "SHAPE_Area": 209.86651968499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364195.667400002479553, 257049.185499999672174 ], [ 364186.115699999034405, 257034.541799999773502 ], [ 364177.883500002324581, 257054.317200001329184 ], [ 364187.512500002980232, 257059.884500000625849 ], [ 364189.177299998700619, 257053.776399999856949 ], [ 364190.807899996638298, 257051.678800001740456 ], [ 364195.667400002479553, 257049.185499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044900", "MAP": "G9-802-T65", "PARCEL_NAM": "146-6", "ACRE": null, "LONGITUDE": -64.89525282, "LATITUDE": 18.34250068, "OBJECTID_1": 20743, "PARCEL_NO_": "105601044900", "Tax_Legal_": "146-6 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 100200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.29536317700001, "SHAPE_Area": 3498.5705144200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362624.576200000941753, 256987.986400000751019 ], [ 362620.544600002467632, 256987.953400000929832 ], [ 362596.223999999463558, 257003.164200000464916 ], [ 362567.038500003516674, 257021.501499999314547 ], [ 362518.397200003266335, 257051.923099998384714 ], [ 362519.185300000011921, 257052.828699998557568 ], [ 362544.274300001561642, 257091.046700000762939 ], [ 362548.742200002074242, 257086.790800001472235 ], [ 362554.44030000269413, 257080.504599999636412 ], [ 362570.780500002205372, 257055.518199998885393 ], [ 362582.216300003230572, 257038.302200000733137 ], [ 362589.530699998140335, 257031.60700000077486 ], [ 362597.633400000631809, 257027.02930000051856 ], [ 362610.573899999260902, 257022.491099998354912 ], [ 362624.28660000115633, 257021.970100000500679 ], [ 362624.576200000941753, 256987.986400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": "D9-5745-T94", "PARCEL_NAM": "57X-59", "ACRE": ".14", "LONGITUDE": -64.87260259, "LATITUDE": 18.34215004, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.058702381, "SHAPE_Area": 539.81201762800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364978.938400000333786, 257015.488400001078844 ], [ 364959.693000003695488, 257002.876400001347065 ], [ 364949.059900000691414, 257020.521200001239777 ], [ 364964.29169999808073, 257030.989399999380112 ], [ 364969.046899996697903, 257040.738699998706579 ], [ 364978.938400000333786, 257015.488400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57X-13", "ACRE": null, "LONGITUDE": -64.8724961, "LATITUDE": 18.3417304, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.479119776299996, "SHAPE_Area": 193.86624346299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364980.163699999451637, 256966.3136 ], [ 364959.955600000917912, 256972.058800000697374 ], [ 364985.680200003087521, 256981.346400000154972 ], [ 364985.748599998652935, 256973.325399998575449 ], [ 364983.365599997341633, 256969.083999998867512 ], [ 364980.163699999451637, 256966.3136 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57X REM", "ACRE": null, "LONGITUDE": -64.87278216, "LATITUDE": 18.34113097, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.511378122, "SHAPE_Area": 2479.6713402199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364968.960900001227856, 256861.519499998539686 ], [ 364936.625699996948242, 256870.965199999511242 ], [ 364934.870999999344349, 256887.627199999988079 ], [ 364931.5253000035882, 256901.743099998682737 ], [ 364928.748499996960163, 256943.728000000119209 ], [ 364928.561499997973442, 256965.68019999936223 ], [ 364934.273999996483326, 256957.705400001257658 ], [ 364944.840599998831749, 256947.87049999833107 ], [ 364952.988300003111362, 256938.015799999237061 ], [ 364965.4425999969244, 256895.899000000208616 ], [ 364968.023400001227856, 256876.921700000762939 ], [ 364968.960900001227856, 256861.519499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57X REM", "ACRE": null, "LONGITUDE": -64.8722271, "LATITUDE": 18.34110294, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.29610729299998, "SHAPE_Area": 2021.2131041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365011.594800002872944, 256873.689699999988079 ], [ 365009.362899996340275, 256851.717700000852346 ], [ 364993.186300002038479, 256857.495900001376867 ], [ 364994.575900003314018, 256883.682900000363588 ], [ 364986.500200003385544, 256885.094500001519918 ], [ 364986.264700002968311, 256912.745799999684095 ], [ 365006.341499999165535, 256922.409299999475479 ], [ 365014.041400000452995, 256965.113200001418591 ], [ 365024.512699998915195, 256966.465500000864267 ], [ 365018.438000001013279, 256922.297200001776218 ], [ 365018.457800000905991, 256919.975400000810623 ], [ 365014.624099999666214, 256896.723700001835823 ], [ 365013.844700001180172, 256893.550900001078844 ], [ 365011.594800002872944, 256873.689699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57X-63", "ACRE": null, "LONGITUDE": -64.87242911, "LATITUDE": 18.34082817, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.207636489500004, "SHAPE_Area": 484.750306 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364993.186300002038479, 256857.495900001376867 ], [ 364975.393500000238419, 256863.683100000023842 ], [ 364974.468500003218651, 256877.607700001448393 ], [ 364972.771300002932549, 256887.5152000002563 ], [ 364986.500200003385544, 256885.094500001519918 ], [ 364994.575900003314018, 256883.682900000363588 ], [ 364993.186300002038479, 256857.495900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57 REM", "ACRE": null, "LONGITUDE": -64.87357057, "LATITUDE": 18.34071854, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.57076089399999, "SHAPE_Area": 1067.36910081 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364893.882200002670288, 256871.670800000429153 ], [ 364889.886600002646446, 256867.416200000792742 ], [ 364887.455099999904633, 256868.874000001698732 ], [ 364884.240599997341633, 256867.5810999982059 ], [ 364871.452899999916553, 256854.177600000053644 ], [ 364865.878799997270107, 256845.899300001561642 ], [ 364855.578400000929832, 256824.494500000029802 ], [ 364852.153499998152256, 256847.897900000214577 ], [ 364846.383500002324581, 256862.627199999988079 ], [ 364843.941200003027916, 256865.351399999111891 ], [ 364838.235799998044968, 256872.481899999082088 ], [ 364897.874200001358986, 256876.347500000149012 ], [ 364893.882200002670288, 256871.670800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57X-62", "ACRE": null, "LONGITUDE": -64.87237808, "LATITUDE": 18.34060363, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.318059443, "SHAPE_Area": 658.44553522599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364972.367799997329712, 256840.227000001817942 ], [ 364974.680699996650219, 256852.700399998575449 ], [ 364975.393500000238419, 256863.683100000023842 ], [ 364993.186300002038479, 256857.495900001376867 ], [ 365009.362899996340275, 256851.717700000852346 ], [ 365008.610500000417233, 256845.378699999302626 ], [ 365007.868900001049042, 256837.773299999535084 ], [ 364972.367799997329712, 256840.227000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703099300", "MAP": null, "PARCEL_NAM": "113-2Ha", "ACRE": "0.28", "LONGITUDE": -64.8751816, "LATITUDE": 18.3401147, "OBJECTID_1": 23406, "PARCEL_NO_": "105703099300", "Tax_Legal_": "SMITH BAY 113-2HA EAST END QTR.", "Name": "CHRISTOPHER, VANCITO & Y", "Address": "PO Box 8701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37100, "Improved_V": 364700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.07414548, "SHAPE_Area": 1411.1034061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364706.02139999717474, 256774.296799998730421 ], [ 364681.95610000193119, 256759.534400001168251 ], [ 364675.959499999880791, 256800.859600000083447 ], [ 364712.020599998533726, 256827.330400001257658 ], [ 364708.944600000977516, 256809.784400001168251 ], [ 364708.379199996590614, 256781.493299998342991 ], [ 364704.381800003349781, 256777.449799999594688 ], [ 364706.02139999717474, 256774.296799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87288402, "LATITUDE": 18.34021677, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.895491123, "SHAPE_Area": 296.50117724699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364945.330799996852875, 256795.675999999046326 ], [ 364942.919100001454353, 256794.811900001019239 ], [ 364919.467699997127056, 256802.641499999910593 ], [ 364919.440700002014637, 256805.807700000703335 ], [ 364937.969700001180172, 256807.859200000762939 ], [ 364945.059299997985363, 256827.548900000751019 ], [ 364945.330799996852875, 256795.675999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701039100", "MAP": "F9-3011-T72", "PARCEL_NAM": "20-32", "ACRE": "0.23", "LONGITUDE": -64.87597711, "LATITUDE": 18.34015884, "OBJECTID_1": 22026, "PARCEL_NO_": "105701039100", "Tax_Legal_": "20-32 SMITH BAY EAST END QTR", "Name": "SMITH, CATHERINE E", "Address": "BOX 4287", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.05878347800001, "SHAPE_Area": 1263.6975994699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364629.392300002276897, 256777.122600000351667 ], [ 364606.399700000882149, 256774.427700001746416 ], [ 364604.393700003623962, 256777.264699999243021 ], [ 364600.290200002491474, 256785.674899999052286 ], [ 364598.66499999910593, 256787.139199998229742 ], [ 364597.020000003278255, 256790.925400000065565 ], [ 364583.946400001645088, 256811.083399999886751 ], [ 364583.92119999974966, 256814.038499999791384 ], [ 364585.521200001239777, 256815.52930000051856 ], [ 364596.008699998259544, 256814.981800001114607 ], [ 364616.198899999260902, 256811.34739999845624 ], [ 364619.429499998688698, 256810.740499999374151 ], [ 364624.288999997079372, 256808.24720000103116 ], [ 364628.358300000429153, 256803.847500000149012 ], [ 364629.191600002348423, 256800.687899999320507 ], [ 364629.304899998009205, 256787.390000000596046 ], [ 364629.392300002276897, 256777.122600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703096500", "MAP": "D9-4071-T87", "PARCEL_NAM": "20-35B-5", "ACRE": "0.30", "LONGITUDE": -64.87568348000001, "LATITUDE": 18.34007105, "OBJECTID_1": 23399, "PARCEL_NO_": "105703096500", "Tax_Legal_": "SMITH BAY 20-35B-5 EAST END QTR.", "Name": "JAMES, IVANIA", "Address": "PO Box 8486", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39800, "Improved_V": 130400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.53040080900001, "SHAPE_Area": 913.16703926399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364675.959499999880791, 256800.859600000083447 ], [ 364631.885600000619888, 256768.41270000115037 ], [ 364629.464900001883507, 256768.603999998420477 ], [ 364614.135999999940395, 256769.534000001847744 ], [ 364610.903499998152256, 256770.35190000012517 ], [ 364607.658500000834465, 256772.647399999201298 ], [ 364606.399700000882149, 256774.427700001746416 ], [ 364629.392300002276897, 256777.122600000351667 ], [ 364629.304899998009205, 256787.390000000596046 ], [ 364629.191600002348423, 256800.687899999320507 ], [ 364638.874499998986721, 256799.922800000756979 ], [ 364675.959499999880791, 256800.859600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602054100", "MAP": "A9-102-T68", "PARCEL_NAM": "173-237", "ACRE": "0.142", "LONGITUDE": -64.88503763, "LATITUDE": 18.34002683, "OBJECTID_1": 21308, "PARCEL_NO_": "105602054100", "Tax_Legal_": "173-237 ANNAS RETREAT NEW QTR", "Name": "LESLIE, SIDO J. & CHRISTALIA A.", "Address": "PO Box 502066", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 14900, "Improved_V": 137500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.386190549399998, "SHAPE_Area": 530.43602726100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363670.671300001442432, 256771.100299999117851 ], [ 363664.973800003528595, 256759.854200001806021 ], [ 363633.753499999642372, 256772.367600001394749 ], [ 363634.360200002789497, 256773.969500001519918 ], [ 363642.304700002074242, 256787.966699998825788 ], [ 363671.283699996769428, 256772.411200001835823 ], [ 363670.671300001442432, 256771.100299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503041500", "MAP": "G9-696-T63", "PARCEL_NAM": "REM 40A", "ACRE": "0.36 (d.)", "LONGITUDE": -64.90845691, "LATITUDE": 18.33943558, "OBJECTID_1": 20139, "PARCEL_NO_": "105503041500", "Tax_Legal_": "EST THOMAS 40 A NEW QTR", "Name": "MCBEAN, FELICIDAD", "Address": "PO Box 10673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 239400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.28080229299999, "SHAPE_Area": 1638.2405377499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361175.364799998700619, 256713.675700001418591 ], [ 361202.982199996709824, 256700.029899999499321 ], [ 361198.250399999320507, 256687.53660000115633 ], [ 361195.881800003349781, 256681.606600001454353 ], [ 361187.98589999973774, 256661.910300001502037 ], [ 361186.040899999439716, 256656.238699998706579 ], [ 361179.235100001096725, 256658.846799999475479 ], [ 361179.141599997878075, 256658.882599998265505 ], [ 361178.992799997329712, 256659.397999998182058 ], [ 361174.801500000059605, 256664.020799998193979 ], [ 361164.800200000405312, 256675.609600000083447 ], [ 361147.165700003504753, 256689.528900001198053 ], [ 361149.18469999730587, 256691.667500000447035 ], [ 361162.4341000020504, 256705.701400000602007 ], [ 361168.872299998998642, 256702.686200000345707 ], [ 361168.895199999213219, 256702.675400000065565 ], [ 361173.378799997270107, 256700.575599998235703 ], [ 361175.364799998700619, 256713.675700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703097000", "MAP": "D9-4185-T87", "PARCEL_NAM": "20-35A-3", "ACRE": "0.233", "LONGITUDE": -64.87525686, "LATITUDE": 18.33945482, "OBJECTID_1": 23404, "PARCEL_NO_": "105703097000", "Tax_Legal_": "SMITH BAY 20-35A-3 EASTEND QTR.", "Name": "ROUSE, AUSTIN", "Address": "B#4 APT#E THOMASVILLE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 200100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.862690699, "SHAPE_Area": 790.69978949300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364703.168399997055531, 256730.577100001275539 ], [ 364700.153499998152256, 256705.854400001466274 ], [ 364691.289499998092651, 256705.148600000888109 ], [ 364665.458700001239777, 256708.314699999988079 ], [ 364682.1503000035882, 256736.737900000065565 ], [ 364693.480099998414516, 256731.975400000810623 ], [ 364703.168399997055531, 256730.577100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703099500", "MAP": null, "PARCEL_NAM": "20-36", "ACRE": "1.28", "LONGITUDE": -64.87498558, "LATITUDE": 18.33916549, "OBJECTID_1": 23408, "PARCEL_NO_": "105703099500", "Tax_Legal_": "SMITH BAY 20-36 EAST END QTR.", "Name": "SMITH ( LIFE ESTATE), VALENTINE", "Address": "PO Box 8546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 168200, "Improved_V": 213000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 360.123969579, "SHAPE_Area": 5385.9707295600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364665.458700001239777, 256708.314699999988079 ], [ 364691.289499998092651, 256705.148600000888109 ], [ 364700.153499998152256, 256705.854400001466274 ], [ 364731.583599999547005, 256708.011500000953674 ], [ 364750.371399998664856, 256707.453899998217821 ], [ 364774.868900001049042, 256706.72690000012517 ], [ 364781.590999998152256, 256706.527399998158216 ], [ 364784.002199999988079, 256706.455800000578165 ], [ 364781.642399996519089, 256700.504299998283386 ], [ 364776.008100003004074, 256686.294700000435114 ], [ 364762.377499997615814, 256651.918800000101328 ], [ 364761.087300002574921, 256652.313200000673532 ], [ 364733.598999999463558, 256660.743099998682737 ], [ 364690.778099998831749, 256670.525100000202656 ], [ 364659.269000001251698, 256677.655499998480082 ], [ 364650.381599999964237, 256679.69370000064373 ], [ 364633.985600002110004, 256711.223499998450279 ], [ 364665.458700001239777, 256708.314699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": null, "PARCEL_NAM": "173", "ACRE": null, "LONGITUDE": -64.87878723, "LATITUDE": 18.33881355, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 579.28856103600003, "SHAPE_Area": 3281.8672914600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364225.937200002372265, 256702.557000000029802 ], [ 364231.6554000005126, 256705.608600001782179 ], [ 364250.339100003242493, 256689.50730000063777 ], [ 364251.964299999177456, 256688.043000001460314 ], [ 364275.520000003278255, 256667.970800001174212 ], [ 364291.764899998903275, 256654.171599999070168 ], [ 364312.883699998259544, 256636.190400000661612 ], [ 364328.316899999976158, 256623.017799999564886 ], [ 364332.317900002002716, 256626.63910000026226 ], [ 364346.723600000143051, 256639.422600001096725 ], [ 364368.5371999964118, 256634.53489999845624 ], [ 364390.35080000013113, 256629.647199999541044 ], [ 364415.396899998188019, 256623.941599998623133 ], [ 364436.720899999141693, 256619.120999999344349 ], [ 364434.057099997997284, 256610.584300000220537 ], [ 364419.509300000965595, 256614.475999999791384 ], [ 364404.961499996483326, 256618.36769999936223 ], [ 364390.420900002121925, 256621.415100000798702 ], [ 364380.745200000703335, 256621.335900001227856 ], [ 364367.054099999368191, 256619.324000000953674 ], [ 364344.51690000295639, 256614.49549999833107 ], [ 364332.463600002229214, 256609.541700001806021 ], [ 364328.437399998307228, 256608.875500001013279 ], [ 364320.370700001716614, 256609.231699999421835 ], [ 364314.67790000140667, 256614.88459999859333 ], [ 364305.73480000346899, 256623.4662000015378 ], [ 364295.978100001811981, 256632.885600000619888 ], [ 364284.596199996769428, 256643.769299998879433 ], [ 364274.839500002563, 256653.188700001686811 ], [ 364265.89639999717474, 256661.770300000905991 ], [ 364256.139700002968311, 256671.189599998295307 ], [ 364248.008299998939037, 256679.14469999819994 ], [ 364241.501999996602535, 256685.635299999266863 ], [ 364238.269599996507168, 256686.453200001269579 ], [ 364229.245099999010563, 256694.578999999910593 ], [ 364198.233199998736382, 256689.20380000025034 ], [ 364190.915500000119209, 256697.287799999117851 ], [ 364225.937200002372265, 256702.557000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8858137, "LATITUDE": 18.33925441, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.88646141, "SHAPE_Area": 259.22564384200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363584.181100003421307, 256700.942600000649691 ], [ 363582.708800002932549, 256684.465300001204014 ], [ 363571.427599996328354, 256683.528599999845028 ], [ 363560.974299997091293, 256680.065499998629093 ], [ 363542.497400000691414, 256671.892700001597404 ], [ 363584.181100003421307, 256700.942600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87926585, "LATITUDE": 18.33927381, "OBJECTID_1": 23391, "PARCEL_NO_": "105703095500", "Tax_Legal_": "ANNAS RETREAT 173B-55 NEW QTR", "Name": "RICHARDS, CARL & PHILOMEN", "Address": "PO Box 583", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.885617713899997, "SHAPE_Area": 42.2970402738 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364257.568899996578693, 256692.732900001108646 ], [ 364268.772799998521805, 256702.745999999344349 ], [ 364263.234700001776218, 256690.246100001037121 ], [ 364257.568899996578693, 256692.732900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704021100", "MAP": "F9-2507-T69", "PARCEL_NAM": "113-1", "ACRE": ".26", "LONGITUDE": -64.87438786, "LATITUDE": 18.33897396, "OBJECTID_1": 23515, "PARCEL_NO_": "105704021100", "Tax_Legal_": "SMITH BAY 113-1 EAST END QTR", "Name": "SWAN, THANE K. & SONYA C", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.090259172, "SHAPE_Area": 883.72919968099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364790.596000000834465, 256643.276200000196695 ], [ 364791.044900000095367, 256640.359600000083447 ], [ 364769.171999998390675, 256649.8462999984622 ], [ 364762.377499997615814, 256651.918800000101328 ], [ 364776.008100003004074, 256686.294700000435114 ], [ 364781.642399996519089, 256700.504299998283386 ], [ 364784.002199999988079, 256706.455800000578165 ], [ 364787.803000003099442, 256667.957600001245737 ], [ 364788.900799997150898, 256656.837400000542402 ], [ 364789.919900000095367, 256648.684799998998642 ], [ 364790.596000000834465, 256643.276200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703035600", "MAP": "D9-2151-T82", "PARCEL_NAM": "173A-91", "ACRE": "0.04", "LONGITUDE": -64.87743814, "LATITUDE": 18.33848181, "OBJECTID_1": 23003, "PARCEL_NO_": "105703035600", "Tax_Legal_": "ANNAS RETREAT 173A-91 NEW QTR", "Name": "CODRINGTON, JUANITA", "Address": "7756 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.544075507700001, "SHAPE_Area": 132.59237554000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364464.682599999010563, 256612.523699998855591 ], [ 364462.348200000822544, 256602.583200000226498 ], [ 364449.414800003170967, 256606.276999998837709 ], [ 364451.754600003361702, 256615.584300000220537 ], [ 364462.258299998939037, 256613.137200001627207 ], [ 364464.682599999010563, 256612.523699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032400", "MAP": "D9-2151-T82", "PARCEL_NAM": "173A-90", "ACRE": null, "LONGITUDE": -64.87730729, "LATITUDE": 18.33844721, "OBJECTID_1": 22980, "PARCEL_NO_": "105703032400", "Tax_Legal_": "ANNAS RETREAT 173-96&173A-90 NEW QTR", "Name": "HODGE, LEONA", "Address": "7754 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 71100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.422284037799997, "SHAPE_Area": 157.86741297200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364479.230400003492832, 256608.631999999284744 ], [ 364477.704099997878075, 256598.486999999731779 ], [ 364462.348200000822544, 256602.583200000226498 ], [ 364464.682599999010563, 256612.523699998855591 ], [ 364479.230400003492832, 256608.631999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032500", "MAP": "D9-2151-T82", "PARCEL_NAM": "173A-89", "ACRE": "0.54", "LONGITUDE": -64.87716213, "LATITUDE": 18.33841002, "OBJECTID_1": 22981, "PARCEL_NO_": "105703032500", "Tax_Legal_": "ANNAS RETREAT 173-97&173A-89 NEW QTR.", "Name": "DIXON, VIVIAN SCHNEIDER", "Address": "43182 Maple Cross St", "City": "SOUTH RIDING", "State": "Virginia", "Zip": 20152, "Country": "United States", "Land_Value": 17600, "Improved_V": 145100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.090309251900003, "SHAPE_Area": 167.143906802 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364495.394400000572205, 256604.331300001591444 ], [ 364493.060000002384186, 256594.390799999237061 ], [ 364477.704099997878075, 256598.486999999731779 ], [ 364479.230400003492832, 256608.631999999284744 ], [ 364486.5033999979496, 256606.791700001806021 ], [ 364495.394400000572205, 256604.331300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703046700", "MAP": "D9-1983-T82", "PARCEL_NAM": "173A-85", "ACRE": "1582 sq ft", "LONGITUDE": -64.87659721, "LATITUDE": 18.33825869, "OBJECTID_1": 23058, "PARCEL_NO_": "105703046700", "Tax_Legal_": "ANNAS RETREAT 173A-85 NEW QTR.", "Name": "VENTURA, PATRICIA", "Address": "7744 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.507736825800002, "SHAPE_Area": 158.207377691 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364555.203599996864796, 256588.144499998539686 ], [ 364552.062899999320507, 256578.197399999946356 ], [ 364537.511500000953674, 256582.511199999600649 ], [ 364539.847699999809265, 256592.240600001066923 ], [ 364551.163000002503395, 256589.166900001466274 ], [ 364555.203599996864796, 256588.144499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604022800", "MAP": null, "PARCEL_NAM": "148-303", "ACRE": "0.163", "LONGITUDE": -64.884835, "LATITUDE": 18.338044, "OBJECTID_1": 21703, "PARCEL_NO_": "105604022800", "Tax_Legal_": "148-303 ANNAS RETREAT NEW QUARTER", "Name": "DANIEL, ANTHONY & CAROLIE", "Address": "7322 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 118400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.54284139000001, "SHAPE_Area": 704.62789638200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363695.177500002086163, 256544.797499999403954 ], [ 363658.337700001895428, 256543.981199998408556 ], [ 363658.067299999296665, 256546.815799999982119 ], [ 363658.383799999952316, 256563.167500000447035 ], [ 363658.718999996781349, 256564.975099999457598 ], [ 363692.600299999117851, 256563.352600000798702 ], [ 363695.177500002086163, 256544.797499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604035000", "MAP": "D9-9069-T016", "PARCEL_NAM": "176", "ACRE": "1.53", "LONGITUDE": -64.8857672, "LATITUDE": 18.33792078, "OBJECTID_1": 21822, "PARCEL_NO_": "105604035000", "Tax_Legal_": "176THRU183&POR OF EST RD ANNAS RETREAT", "Name": "EMANUEL BAPTIST CHURCH", "Address": "P.O.BOX 3539", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 439100, "Improved_V": 66300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 463.060966458, "SHAPE_Area": 6192.3455390700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363636.631700001657009, 256564.971799999475479 ], [ 363638.879399999976158, 256564.586399998515844 ], [ 363640.11089999973774, 256564.504000000655651 ], [ 363640.116999998688698, 256564.659299999475479 ], [ 363658.768399998545647, 256565.758600000292063 ], [ 363658.718999996781349, 256564.975099999457598 ], [ 363658.383799999952316, 256563.167500000447035 ], [ 363658.067299999296665, 256546.815799999982119 ], [ 363659.838200002908707, 256528.254000000655651 ], [ 363661.605499997735023, 256510.114399999380112 ], [ 363594.177500002086163, 256537.853799998760223 ], [ 363589.609899997711182, 256536.967300001531839 ], [ 363579.151199996471405, 256534.137499999254942 ], [ 363571.106100000441074, 256531.960799999535084 ], [ 363566.278999999165535, 256530.654699999839067 ], [ 363555.015799999237061, 256527.607200000435114 ], [ 363545.365199998021126, 256524.572900000959635 ], [ 363534.109200000762939, 256520.681099999696016 ], [ 363509.187200002372265, 256511.822299998253584 ], [ 363482.657999999821186, 256502.31700000166893 ], [ 363475.260999999940395, 256518.721799999475479 ], [ 363473.242299996316433, 256521.111600000411272 ], [ 363476.897299997508526, 256522.605900000780821 ], [ 363495.457900002598763, 256533.859400000423193 ], [ 363510.225500002503395, 256545.060100000351667 ], [ 363526.809900000691414, 256551.943799998611212 ], [ 363532.243100002408028, 256553.690900001674891 ], [ 363535.146200001239777, 256554.347899999469519 ], [ 363535.158500000834465, 256554.350400000810623 ], [ 363537.848099999129772, 256554.796799998730421 ], [ 363540.402699999511242, 256555.161800000816584 ], [ 363540.420100003480911, 256555.164599999785423 ], [ 363541.456600002944469, 256555.342999998480082 ], [ 363546.137682070722803, 256556.375136506278068 ], [ 363550.727099999785423, 256557.75899999961257 ], [ 363553.008699998259544, 256558.588300000876188 ], [ 363553.023699998855591, 256558.593899998813868 ], [ 363553.564900003373623, 256558.790399998426437 ], [ 363555.740000002086163, 256559.5472999997437 ], [ 363556.88120000064373, 256559.922699999064207 ], [ 363556.905799999833107, 256559.930599998682737 ], [ 363558.599399998784065, 256560.46059999987483 ], [ 363558.704999998211861, 256560.492600001394749 ], [ 363560.195100001990795, 256560.931000001728535 ], [ 363560.327299997210503, 256560.968699999153614 ], [ 363562.644299998879433, 256561.599800001829863 ], [ 363564.740500003099442, 256562.120700001716614 ], [ 363564.786399997770786, 256562.131700001657009 ], [ 363567.468299999833107, 256562.730599999427795 ], [ 363567.487800002098083, 256562.7347999997437 ], [ 363571.141699999570847, 256563.381999999284744 ], [ 363571.161899998784065, 256563.385099999606609 ], [ 363573.662600003182888, 256563.743900001049042 ], [ 363573.73870000243187, 256563.754299998283386 ], [ 363576.676500000059605, 256564.111699998378754 ], [ 363576.700900003314018, 256564.11430000141263 ], [ 363579.321999996900558, 256564.375300001353025 ], [ 363579.465400002896786, 256564.388099998235703 ], [ 363581.555100001394749, 256564.555500000715256 ], [ 363581.726700000464916, 256564.567800000309944 ], [ 363583.647200003266335, 256564.689699999988079 ], [ 363588.025100000202656, 256564.860100001096725 ], [ 363588.045900002121925, 256564.860599998384714 ], [ 363591.848899997770786, 256564.888599999248981 ], [ 363591.894100002944469, 256564.888199999928474 ], [ 363594.266500003635883, 256564.848700001835823 ], [ 363595.973600000143051, 256564.857599999755621 ], [ 363599.679300002753735, 256565.002199999988079 ], [ 363601.966700002551079, 256565.096500001847744 ], [ 363606.239900000393391, 256565.307700000703335 ], [ 363622.256599999964237, 256566.099300000816584 ], [ 363624.821400001645088, 256566.065400000661612 ], [ 363624.869699999690056, 256566.063799999654293 ], [ 363626.691200003027916, 256565.995200000703335 ], [ 363626.7483000010252, 256565.992199998348951 ], [ 363628.419600002467632, 256565.896200001239777 ], [ 363628.452500000596046, 256565.893699999898672 ], [ 363630.924300000071526, 256565.694099999964237 ], [ 363630.951200000941753, 256565.691300000995398 ], [ 363634.162399999797344, 256565.329500000923872 ], [ 363634.167599998414516, 256565.32880000025034 ], [ 363636.525700002908707, 256564.988299999386072 ], [ 363636.611299999058247, 256564.97520000115037 ], [ 363636.631700001657009, 256564.971799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033600", "MAP": null, "PARCEL_NAM": "173A-78", "ACRE": null, "LONGITUDE": -64.87562296, "LATITUDE": 18.338019, "OBJECTID_1": 22992, "PARCEL_NO_": "105703033600", "Tax_Legal_": "173-108&173A-78 ANNAS RETREAT NEW QUARTER", "Name": "PEREZ, KAREL (LIFE ESTATE)", "Address": "PO Box 10154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 146900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.4507204298, "SHAPE_Area": 162.88868589500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364657.016500003635883, 256563.435400001704693 ], [ 364657.108300000429153, 256552.670400001108646 ], [ 364640.949600003659725, 256556.337799999862909 ], [ 364642.475900001823902, 256566.482799999415874 ], [ 364657.016500003635883, 256563.435400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88781856, "LATITUDE": 18.33765872, "OBJECTID_1": 21676, "PARCEL_NO_": "105604020100", "Tax_Legal_": "148-320,321&322 ANNAS RETREAT NEW QTR", "Name": "GRACE GOSPEL CHAPEL INC", "Address": "PO Box 7094", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 200400, "Improved_V": 198200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.789135988300004, "SHAPE_Area": 238.422189567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363364.738600000739098, 256524.572200000286102 ], [ 363366.622800000011921, 256492.712499998509884 ], [ 363350.778999999165535, 256509.027800001204014 ], [ 363364.693000003695488, 256524.722500000149012 ], [ 363364.738600000739098, 256524.572200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704037000", "MAP": "D9-2257-T83", "PARCEL_NAM": "173A-71", "ACRE": ".21", "LONGITUDE": -64.87379473, "LATITUDE": 18.33753152, "OBJECTID_1": 23616, "PARCEL_NO_": "105704037000", "Tax_Legal_": "ANNAS RETREAT 173A-71 NEW QTR", "Name": "MOHAMMED, CALVIN", "Address": "4-5 S Quarter Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.44118773100001, "SHAPE_Area": 882.60918158799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364830.131999999284744, 256498.568900000303984 ], [ 364830.848399996757507, 256509.12950000166893 ], [ 364819.364100001752377, 256532.044700000435114 ], [ 364842.043300002813339, 256520.197900000959635 ], [ 364858.243299998342991, 256511.675700001418591 ], [ 364863.102700002491474, 256509.182399999350309 ], [ 364856.041900001466274, 256486.11540000140667 ], [ 364830.131999999284744, 256498.568900000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703017100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-219", "ACRE": "0.13", "LONGITUDE": -64.88147763000001, "LATITUDE": 18.33755523, "OBJECTID_1": 22892, "PARCEL_NO_": "105703017100", "Tax_Legal_": "ANNAS RETREAT 148-219 NEW QTR", "Name": "VAN, PUTTEN ALVIRA", "Address": "PO BOX 11426", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 101700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.206279002100004, "SHAPE_Area": 523.47150639400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364047.918999999761581, 256502.721599999815226 ], [ 364043.941399998962879, 256496.356199998408556 ], [ 364035.961000002920628, 256486.580600000917912 ], [ 364014.019799999892712, 256506.454900000244379 ], [ 364022.000200003385544, 256516.230500001460314 ], [ 364023.593000002205372, 256518.565600000321865 ], [ 364047.918999999761581, 256502.721599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88792982, "LATITUDE": 18.33753472, "OBJECTID_1": 21676, "PARCEL_NO_": "105604020100", "Tax_Legal_": "148-320,321&322 ANNAS RETREAT NEW QTR", "Name": "GRACE GOSPEL CHAPEL INC", "Address": "PO Box 7094", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 200400, "Improved_V": 198200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.639621705799996, "SHAPE_Area": 397.46236218600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363366.513199999928474, 256491.6385000012815 ], [ 363332.05120000243187, 256484.627000000327826 ], [ 363331.79715027048951, 256484.744206483592279 ], [ 363331.567191086709499, 256484.903572100476595 ], [ 363331.368248806684278, 256485.10029676911654 ], [ 363331.206315558752976, 256485.328455155424308 ], [ 363331.086268761660904, 256485.581175143801374 ], [ 363331.011724217038136, 256485.850844824890373 ], [ 363330.984927201643586, 256486.129341765627032 ], [ 363331.00668483984191, 256486.408277656475548 ], [ 363331.076341792999301, 256486.679250966815744 ], [ 363331.191799998283386, 256486.934099998325109 ], [ 363350.778999999165535, 256509.027800001204014 ], [ 363366.622800000011921, 256492.712499998509884 ], [ 363366.89639999717474, 256491.747000001370907 ], [ 363366.513199999928474, 256491.6385000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704012500", "MAP": "D9-2344-T83", "PARCEL_NAM": "57B-12B", "ACRE": ".12", "LONGITUDE": -64.87183381, "LATITUDE": 18.33753157, "OBJECTID_1": 23470, "PARCEL_NO_": "105704012500", "Tax_Legal_": "57-13&57-12B ESTATE SMITH BAY EASTEND QTR.", "Name": "POTTER, MILTON E. & VENZEN, P. M", "Address": "7630 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89100, "Improved_V": 199100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.621970807500006, "SHAPE_Area": 497.77201105199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365065.42059999704361, 256518.648699998855591 ], [ 365051.932700000703335, 256492.78489999845624 ], [ 365034.915600001811981, 256502.56700000166893 ], [ 365049.247599996626377, 256524.004799999296665 ], [ 365065.42059999704361, 256518.648699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031100", "MAP": "D9-2255-T83", "PARCEL_NAM": "173A-67", "ACRE": ".10", "LONGITUDE": -64.87301544, "LATITUDE": 18.33709961, "OBJECTID_1": 23565, "PARCEL_NO_": "105704031100", "Tax_Legal_": "ANNAS RETREAT 173-305&173A-67 NEW QTR", "Name": "THOMAS, MICHAEL A", "Address": "7614 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 121500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.934036748099999, "SHAPE_Area": 355.903919266 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364937.657499998807907, 256465.885099999606609 ], [ 364927.344499997794628, 256445.957899998873472 ], [ 364913.559799998998642, 256454.922100000083447 ], [ 364925.487300001084805, 256474.651399999856949 ], [ 364937.657499998807907, 256465.885099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704036300", "MAP": "D9-4573-T88", "PARCEL_NAM": "173A-66", "ACRE": ".09", "LONGITUDE": -64.87288841, "LATITUDE": 18.33701623, "OBJECTID_1": 23613, "PARCEL_NO_": "105704036300", "Tax_Legal_": "173A-66 ANNAS RETREAT NEW QTR.", "Name": "WHITE, CHARLENE", "Address": "PO Box 8802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 134700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.918524197300002, "SHAPE_Area": 363.041807909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364948.001500003039837, 256458.434200000017881 ], [ 364949.824799999594688, 256457.108399998396635 ], [ 364944.35080000013113, 256437.442200001329184 ], [ 364933.019199997186661, 256442.415699999779463 ], [ 364927.344499997794628, 256445.957899998873472 ], [ 364937.657499998807907, 256465.885099999606609 ], [ 364947.998099997639656, 256458.436700001358986 ], [ 364948.001500003039837, 256458.434200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604030900", "MAP": null, "PARCEL_NAM": "2C", "ACRE": "0.196", "LONGITUDE": -64.88804084, "LATITUDE": 18.33668562, "OBJECTID_1": 21779, "PARCEL_NO_": "105604030900", "Tax_Legal_": "ANNAS RETREAT 2C NEW QTR", "Name": "ASHBY, ENRIQUE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12100, "Improved_V": 100500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.937796450700006, "SHAPE_Area": 608.06548919 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363351.212200000882149, 256408.571100000292063 ], [ 363351.397399999201298, 256386.829999998211861 ], [ 363324.745899997651577, 256391.678100001066923 ], [ 363326.177000001072884, 256413.010299999266863 ], [ 363327.75900000333786, 256416.611800000071526 ], [ 363351.212200000882149, 256408.571100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034900", "MAP": null, "PARCEL_NAM": "2F", "ACRE": "0.231", "LONGITUDE": -64.88773928000001, "LATITUDE": 18.33668998, "OBJECTID_1": 21821, "PARCEL_NO_": "105604034900", "Tax_Legal_": "2E&2F ANNAS RETREAT 1 NEW QTR", "Name": "SALEM, RIFAT & HAKMA", "Address": "PO Box 502128", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 35300, "Improved_V": 150300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.340844194, "SHAPE_Area": 993.69158008500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363388.933499999344349, 256413.836199998855591 ], [ 363390.987899996340275, 256391.144000001251698 ], [ 363351.397399999201298, 256386.829999998211861 ], [ 363351.212200000882149, 256408.571100000292063 ], [ 363353.570000000298023, 256415.767599999904633 ], [ 363388.933499999344349, 256413.836199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604031000", "MAP": null, "PARCEL_NAM": "2B", "ACRE": "0.239", "LONGITUDE": -64.88805128, "LATITUDE": 18.33638169, "OBJECTID_1": 21780, "PARCEL_NO_": "105604031000", "Tax_Legal_": "ANNAS RETREAT 2B NEW QTR", "Name": "DE CASTRO, HAZEL & ROWAN", "Address": "PO Box 306231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15500, "Improved_V": 147300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.42474708500001, "SHAPE_Area": 1198.17449807 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363350.840999998152256, 256357.483500000089407 ], [ 363350.941699996590614, 256345.662999998778105 ], [ 363343.695699997246265, 256344.337200000882149 ], [ 363336.438900001347065, 256344.277800001204014 ], [ 363328.352399997413158, 256346.955800000578165 ], [ 363322.679399996995926, 256350.286899998784065 ], [ 363324.745899997651577, 256391.678100001066923 ], [ 363351.397399999201298, 256386.829999998211861 ], [ 363350.840999998152256, 256357.483500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034700", "MAP": null, "PARCEL_NAM": "2G", "ACRE": "0.255", "LONGITUDE": -64.88773741, "LATITUDE": 18.33645676, "OBJECTID_1": 21819, "PARCEL_NO_": "105604034700", "Tax_Legal_": "2G ANNAS RETREAT 1 NEW QTR", "Name": "THOMAS, CULBERT & ALVA", "Address": "129-133W 147th St", "City": "New York", "State": "New York", "Zip": 10039, "Country": "United States", "Land_Value": 15400, "Improved_V": 111000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.95060687700001, "SHAPE_Area": 1040.85404859 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363391.867700003087521, 256369.007199998944998 ], [ 363350.840999998152256, 256357.483500000089407 ], [ 363351.397399999201298, 256386.829999998211861 ], [ 363390.987899996340275, 256391.144000001251698 ], [ 363391.304099999368191, 256387.651999998837709 ], [ 363391.867700003087521, 256369.007199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85136943000001, "LATITUDE": 18.33589422, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.82583176700001, "SHAPE_Area": 1891.3424989499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367243.787100002169609, 256286.54280000180006 ], [ 367225.38570000231266, 256269.504700001329184 ], [ 367221.880000002682209, 256302.406599998474121 ], [ 367219.324400000274181, 256318.428800001740456 ], [ 367215.244199998676777, 256324.094900000840425 ], [ 367211.963200002908707, 256330.611999999731779 ], [ 367211.124600000679493, 256334.404800001531839 ], [ 367209.494000002741814, 256336.502399999648333 ], [ 367207.840000003576279, 256341.344000000506639 ], [ 367190.328400000929832, 256409.172800000756979 ], [ 367208.825000002980232, 256415.023699998855591 ], [ 367218.354400001466274, 256337.630399998277426 ], [ 367243.787100002169609, 256286.54280000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704042200", "MAP": "D9-2504-T83", "PARCEL_NAM": "173C-109", "ACRE": ".03", "LONGITUDE": -64.87185367, "LATITUDE": 18.3363054, "OBJECTID_1": 23638, "PARCEL_NO_": "105704042200", "Tax_Legal_": "ANNAS RETREAT 173C-8&109 NEW QTR.", "Name": "GLENBERT M DAVID", "Address": "12156 Bottlebrush Pl", "City": "Charlotte", "State": "North Carolina", "Zip": 282771793, "Country": "United States", "Land_Value": 43300, "Improved_V": 204600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.889124954099998, "SHAPE_Area": 257.52455822899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365056.123599998652935, 256379.461899999529123 ], [ 365057.053999997675419, 256364.904100000858307 ], [ 365038.506999999284744, 256364.96339999884367 ], [ 365040.092600002884865, 256368.142799999564886 ], [ 365041.689099997282028, 256370.055700000375509 ], [ 365043.265699997544289, 256374.290500000119209 ], [ 365044.023500002920628, 256379.996199999004602 ], [ 365046.415500000119209, 256383.182199999690056 ], [ 365051.246200002729893, 256384.066100001335144 ], [ 365056.093000002205372, 256383.050299998372793 ], [ 365056.123599998652935, 256379.461899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704013200", "MAP": "D9-5848-T94", "PARCEL_NAM": "57B-19-1", "ACRE": ".11", "LONGITUDE": -64.87155242, "LATITUDE": 18.33628765, "OBJECTID_1": 23477, "PARCEL_NO_": "105704013200", "Tax_Legal_": "SMITH BAY 57B-19 EAST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.264963295, "SHAPE_Area": 728.48716614600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365119.948100000619888, 256365.207800000905991 ], [ 365057.053999997675419, 256364.904100000858307 ], [ 365056.123599998652935, 256379.461899999529123 ], [ 365056.093000002205372, 256383.050299998372793 ], [ 365105.358999997377396, 256373.954300001263618 ], [ 365111.834700003266335, 256371.052000001072884 ], [ 365119.948100000619888, 256365.207800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703087400", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-68", "ACRE": "0.36", "LONGITUDE": -64.87458091000001, "LATITUDE": 18.33531656, "OBJECTID_1": 23334, "PARCEL_NO_": "105703087400", "Tax_Legal_": "ANNAS RETREAT 173C-68 NEW QTR.", "Name": "CALLWOOD, CHESTER A", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49300, "Improved_V": 408800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.963876511, "SHAPE_Area": 1779.00766727 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364784.580799996852875, 256260.926899999380112 ], [ 364770.221799999475479, 256242.6554000005126 ], [ 364758.209799997508526, 256232.846799999475479 ], [ 364746.169100001454353, 256226.415399998426437 ], [ 364745.904700003564358, 256257.443999998271465 ], [ 364739.443499997258186, 256258.657699998468161 ], [ 364740.905000001192093, 256276.401500001549721 ], [ 364782.719999998807907, 256290.042599998414516 ], [ 364784.580799996852875, 256260.926899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010200", "MAP": "D9-6154-T96", "PARCEL_NAM": "5D", "ACRE": "0.56", "LONGITUDE": -64.89686581, "LATITUDE": 18.33542776, "OBJECTID_1": 21500, "PARCEL_NO_": "105603010200", "Tax_Legal_": "5 ESTATE CHARLOTTE AMALIE NEW QUARTER", "Name": "BOUGH, JAMES A", "Address": "PO Box 6096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 147000, "Improved_V": 332200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.349735305, "SHAPE_Area": 1416.6324868300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362429.379799999296665, 256237.217799998819828 ], [ 362377.736299999058247, 256241.4391999989748 ], [ 362378.45269999653101, 256251.999699998646975 ], [ 362380.850000001490116, 256254.552400000393391 ], [ 362391.317699998617172, 256256.326900001615286 ], [ 362404.222300000488758, 256256.010299999266863 ], [ 362404.996200002729893, 256259.816300000995398 ], [ 362399.341300003230572, 256261.03660000115633 ], [ 362392.082599997520447, 256261.188299998641014 ], [ 362384.026699997484684, 256260.278000000864267 ], [ 362380.005900003015995, 256258.978500001132488 ], [ 362381.525100000202656, 256269.967799998819828 ], [ 362431.530799999833107, 256268.688299998641014 ], [ 362429.379799999296665, 256237.217799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": null, "PARCEL_NAM": "11-H", "ACRE": null, "LONGITUDE": -64.8518532, "LATITUDE": 18.33471954, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.17257959800003, "SHAPE_Area": 3328.14351816 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367118.744999997317791, 256198.337799999862909 ], [ 367109.650700002908707, 256224.649999998509884 ], [ 367129.74379999935627, 256232.413800001144409 ], [ 367213.603900000452995, 256232.677999999374151 ], [ 367216.030000001192093, 256231.853500001132488 ], [ 367217.660700000822544, 256229.755899999290705 ], [ 367217.696599997580051, 256225.534299999475479 ], [ 367212.268200002610683, 256200.158700000494719 ], [ 367118.744999997317791, 256198.337799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105603021700", "MAP": "D9-4954-T90", "PARCEL_NAM": "ROW 3B-3", "ACRE": "0.07", "LONGITUDE": -64.89390966000001, "LATITUDE": 18.33455555, "OBJECTID_1": 21561, "PARCEL_NO_": "105603021700", "Tax_Legal_": "CHARLOTTE AMALIE 3B-1,3B-3& 3REM. No.3 NEW QUARTER", "Name": "MILES, DONNA LEE", "Address": "PO Box 502174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.98774603800001, "SHAPE_Area": 379.22661326299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362730.512699998915195, 256133.771299999207258 ], [ 362722.58110000193119, 256130.182700000703335 ], [ 362711.248599998652935, 256184.851500000804663 ], [ 362713.633400000631809, 256188.881799999624491 ], [ 362716.844200000166893, 256190.596799999475479 ], [ 362727.790200002491474, 256136.224300000816584 ], [ 362730.512699998915195, 256133.771299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604036700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88949923, "LATITUDE": 18.33454131, "OBJECTID_1": 21829, "PARCEL_NO_": "105604036700", "Tax_Legal_": "10-2-A ESTATE CHARLOTTE AMALIE NEW QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 320200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.61728961200001, "SHAPE_Area": 631.64018994599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363215.641599997878075, 256136.417399998754263 ], [ 363167.025499999523163, 256163.883900001645088 ], [ 363178.1233000010252, 256186.350600000470877 ], [ 363179.755699999630451, 256184.041999999433756 ], [ 363183.031300000846386, 256178.158100001513958 ], [ 363184.656499996781349, 256176.693799998611212 ], [ 363192.836499996483326, 256163.039700001478195 ], [ 363215.641599997878075, 256136.417399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804043500", "MAP": "D9-5267-T92", "PARCEL_NAM": "19-2-114", "ACRE": ".272", "LONGITUDE": -64.85594716, "LATITUDE": 18.33435838, "OBJECTID_1": 24712, "PARCEL_NO_": "105804043500", "Tax_Legal_": "SMITH BAY 19-2-114 EAST END QUARTER", "Name": "THOMAS, BERNARD", "Address": "PO Box 223821", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.08727003199999, "SHAPE_Area": 1072.14212054 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366713.438100002706051, 256176.369199998676777 ], [ 366738.142099998891354, 256197.966899998486042 ], [ 366753.749700002372265, 256164.319699998944998 ], [ 366722.422200001776218, 256150.131099998950958 ], [ 366720.780799999833107, 256153.495200000703335 ], [ 366717.481899999082088, 256162.122999999672174 ], [ 366716.653999999165535, 256164.649399999529123 ], [ 366713.438100002706051, 256176.369199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032600", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-74", "ACRE": ".26", "LONGITUDE": -64.85974645, "LATITUDE": 18.33423759, "OBJECTID_1": 23943, "PARCEL_NO_": "105803032600", "Tax_Legal_": "SMITH BAY 19-2-74 EASTEND QTR.", "Name": "GARDNER, HAROLD", "Address": "412 Lapla Rd", "City": "Kingston", "State": "New York", "Zip": 12401, "Country": "United States", "Land_Value": 51700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.01008223700001, "SHAPE_Area": 1000.73442116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366335.973800003528595, 256173.354899998754263 ], [ 366336.00620000064373, 256169.555500000715256 ], [ 366334.398900002241135, 256168.909099999815226 ], [ 366337.669100001454353, 256163.658500000834465 ], [ 366339.272799998521805, 256164.727099999785423 ], [ 366346.605099998414516, 256155.92119999974966 ], [ 366349.092399999499321, 256147.920000001788139 ], [ 366349.97240000218153, 256139.272300001233816 ], [ 366349.187700003385544, 256136.732799999415874 ], [ 366315.282999999821186, 256141.099399998784065 ], [ 366320.572899997234344, 256182.728100001811981 ], [ 366335.973800003528595, 256173.354899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86647214, "LATITUDE": 18.33272913, "OBJECTID_1": 23895, "PARCEL_NO_": "105803023600", "Tax_Legal_": "FRYDENHOJ 146 & 147 RED HOOK", "Name": "CLENDINEN, PEARLE & ULYSSES", "Address": "4442 Mandolin Blvd", "City": "Winter Haven", "State": "Florida", "Zip": 33884, "Country": "United States", "Land_Value": 50700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.51721020700001, "SHAPE_Area": 1036.98996966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365618.507100000977516, 255960.399999998509884 ], [ 365611.241300001740456, 255961.396000001579523 ], [ 365608.451899997889996, 256004.858500000089407 ], [ 365632.652099996805191, 256003.78999999910593 ], [ 365633.765900000929832, 255967.702100001275539 ], [ 365633.816200003027916, 255961.791900001466274 ], [ 365632.230599999427795, 255958.612500000745058 ], [ 365618.507100000977516, 255960.399999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803037100", "MAP": "D9-5262-T92", "PARCEL_NAM": "19-2-66", "ACRE": ".283", "LONGITUDE": -64.8598557, "LATITUDE": 18.33248118, "OBJECTID_1": 23987, "PARCEL_NO_": "105803037100", "Tax_Legal_": "19-2-66 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "ZAKERS, WILBERT & IRMA", "Address": "PO Box 9558", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.1476581, "SHAPE_Area": 1325.9150376499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366307.688500002026558, 255991.371899999678135 ], [ 366344.955099999904633, 255970.989700000733137 ], [ 366344.170299999415874, 255968.450199998915195 ], [ 366342.579300001263618, 255965.903999999165535 ], [ 366338.589100003242493, 255961.016199998557568 ], [ 366334.622299998998642, 255953.384399998933077 ], [ 366329.0337999984622, 255946.794700000435114 ], [ 366326.650799997150898, 255942.553399998694658 ], [ 366317.864100001752377, 255932.771099999547005 ], [ 366317.074000000953674, 255930.864799998700619 ], [ 366313.872100003063679, 255928.094399999827147 ], [ 366309.903499998152256, 255920.673700001090765 ], [ 366307.688500002026558, 255991.371899999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803022700", "MAP": "G9-1077-T68", "PARCEL_NAM": "116-A", "ACRE": ".22", "LONGITUDE": -64.86625728, "LATITUDE": 18.33206761, "OBJECTID_1": 23886, "PARCEL_NO_": "105803022700", "Tax_Legal_": "FRYDENHOJ 116 3 RED HOOK QTR", "Name": "HODGE, ARTHUR & DELMA", "Address": "PO Box 302021", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 94400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.86778120700001, "SHAPE_Area": 1183.61935045 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365631.207800000905991, 255889.36540000140667 ], [ 365628.45440000295639, 255928.606300000101328 ], [ 365638.932800002396107, 255929.114199999719858 ], [ 365659.911300003528595, 255927.597199998795986 ], [ 365661.034100003540516, 255890.453899998217821 ], [ 365631.207800000905991, 255889.36540000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804044700", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-31", "ACRE": ".339", "LONGITUDE": -64.85745031, "LATITUDE": 18.33164207, "OBJECTID_1": 24724, "PARCEL_NO_": "105804044700", "Tax_Legal_": "SMITH BAY 19-2-31 EASTEND QRT 1,2,& 3", "Name": "DEWEY L BOWEN IRA NO 68115 EQUITY TRUST COMPANY CU", "Address": "9155 Wister Dr", "City": "La Mesa", "State": "California", "Zip": 91941, "Country": "United States", "Land_Value": 55800, "Improved_V": 469400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.97498513100001, "SHAPE_Area": 1145.66442654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366591.752499997615814, 255870.629200000315905 ], [ 366595.153999999165535, 255849.969900000840425 ], [ 366558.8141999989748, 255856.216400001198053 ], [ 366560.345899999141693, 255865.728100001811981 ], [ 366558.603799998760223, 255880.912599999457598 ], [ 366557.74889999628067, 255886.605099998414516 ], [ 366588.361800000071526, 255890.022100001573563 ], [ 366591.752499997615814, 255870.629200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701041100", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-48", "ACRE": "0.29", "LONGITUDE": -64.85919477, "LATITUDE": 18.33129498, "OBJECTID_1": 39343, "PARCEL_NO_": "107701041100", "Tax_Legal_": "SMITH BAY 19-2-48 EAST END QRT 1,2,3", "Name": "BRUNEY, ROY & HELEN", "Address": "HIDDEN VALLEY 394-313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.327611327, "SHAPE_Area": 1047.1164608399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366413.155699998140335, 255821.671500001102686 ], [ 366388.221199996769428, 255814.290199998766184 ], [ 366376.171400003135204, 255808.914200000464916 ], [ 366371.326399996876717, 255809.719000000506639 ], [ 366373.651799999177456, 255820.714899998158216 ], [ 366379.979999996721745, 255835.120999999344349 ], [ 366381.571099996566772, 255837.667199999094009 ], [ 366398.318400003015995, 255859.546900000423193 ], [ 366399.974200002849102, 255854.494199998676777 ], [ 366413.155699998140335, 255821.671500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701050300", "MAP": "D9-5779-T94", "PARCEL_NAM": "37-D", "ACRE": ".02", "LONGITUDE": -64.86524084, "LATITUDE": 18.33116747, "OBJECTID_1": 39377, "PARCEL_NO_": "107701050300", "Tax_Legal_": "FRYDENHOJ ESTATE 37-C RED HOOK QUARTER", "Name": "VANTERPOOL, ELRIC & MERLE", "Address": "PO Box 9656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29300, "Improved_V": 161700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.461902754299999, "SHAPE_Area": 51.487495611900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365755.319799996912479, 255802.777399998158216 ], [ 365752.0945999994874, 255802.750999998301268 ], [ 365751.162399999797344, 255817.519900001585484 ], [ 365754.371500000357628, 255819.445999998599291 ], [ 365755.319799996912479, 255802.777399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601065900", "MAP": "C9-278A-T82", "PARCEL_NAM": "7-79", "ACRE": ".22", "LONGITUDE": -64.87727474, "LATITUDE": 18.33097536, "OBJECTID_1": 38174, "PARCEL_NO_": "107601065900", "Tax_Legal_": "7-79 MARIENDAHL RED HOOK QTR.", "Name": "MONA JOLLY (LIFE ESTATE)", "Address": "6705 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27500, "Improved_V": 136100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.598707073, "SHAPE_Area": 975.46064528199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364499.31700000166893, 255765.266499999910593 ], [ 364475.199500001966953, 255756.625399999320507 ], [ 364462.81530000269413, 255790.510099999606609 ], [ 364488.531000003218651, 255800.853100001811981 ], [ 364499.31700000166893, 255765.266499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701042101", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-26", "ACRE": ".24", "LONGITUDE": -64.85949342000001, "LATITUDE": 18.33081027, "OBJECTID_1": 39352, "PARCEL_NO_": "107701042101", "Tax_Legal_": "19-2-26 ESTATE SMITH BAY EASTEND QTR.", "Name": "RAWLINS, MARGARET", "Address": "6545 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 199200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.244144234, "SHAPE_Area": 1089.42644703 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366383.396700002253056, 255785.289099998772144 ], [ 366355.555399999022484, 255745.06810000166297 ], [ 366342.074799999594688, 255789.185600001364946 ], [ 366348.0996999964118, 255791.163699999451637 ], [ 366360.162100002169609, 255795.062100000679493 ], [ 366363.390900000929832, 255794.666400000452995 ], [ 366373.08110000193119, 255793.05689999833703 ], [ 366380.373800002038479, 255788.894799999892712 ], [ 366382.817900002002716, 255785.959399998188019 ], [ 366383.396700002253056, 255785.289099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601081200", "MAP": "D9-1474-T79", "PARCEL_NAM": "10-18", "ACRE": ".29", "LONGITUDE": -64.87697074, "LATITUDE": 18.3301521, "OBJECTID_1": 38202, "PARCEL_NO_": "107601081200", "Tax_Legal_": "10-18 ESTATE MARIELDAHL RED HOOK QUARTER", "Name": "HAMILTON, EILEEN & STEDMAN", "Address": "1380 University Ave", "City": "Bronx", "State": "New York", "Zip": 10452, "Country": "United States", "Land_Value": 28800, "Improved_V": 122700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.19165372099999, "SHAPE_Area": 1253.72609364 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364538.039399996399879, 255666.748700000345707 ], [ 364538.178999997675419, 255665.617600001394749 ], [ 364537.465700000524521, 255665.886700000613928 ], [ 364514.088699996471405, 255673.955200001597404 ], [ 364489.446800000965595, 255682.460400000214577 ], [ 364490.317299999296665, 255685.821699999272823 ], [ 364496.562799997627735, 255709.9375 ], [ 364534.595499999821186, 255694.656700000166893 ], [ 364538.039399996399879, 255666.748700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012200", "MAP": "A9-503-T97", "PARCEL_NAM": "32-5", "ACRE": ".24", "LONGITUDE": -64.86409701, "LATITUDE": 18.32986229, "OBJECTID_1": 39142, "PARCEL_NO_": "107701012200", "Tax_Legal_": "FRYDENHOJ ESTATE 32 No.3 RED HOOK QUARTER", "Name": "FRYDENHOJ ESTATE CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 243500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.707259365, "SHAPE_Area": 1054.0100611099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365890.464199997484684, 255651.684999998658895 ], [ 365888.047100000083447, 255651.454199999570847 ], [ 365877.493100002408028, 255659.811500001698732 ], [ 365875.889399997889996, 255658.742899999022484 ], [ 365872.656999997794628, 255659.560899998992682 ], [ 365870.25959999859333, 255657.008099999278784 ], [ 365872.694700002670288, 255655.128199998289347 ], [ 365869.507299996912479, 255650.669100001454353 ], [ 365857.511500000953674, 255638.960799999535084 ], [ 365858.798600003123283, 255677.179299999028444 ], [ 365894.985600002110004, 255688.874499998986721 ], [ 365890.464199997484684, 255651.684999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701051700", "MAP": "A9-464-T95", "PARCEL_NAM": "37-32", "ACRE": ".25", "LONGITUDE": -64.86594838000001, "LATITUDE": 18.32969553, "OBJECTID_1": 39391, "PARCEL_NO_": "107701051700", "Tax_Legal_": "FRYDENHOJ ESTATE 37-32 No.3 RED HOOK QTR.", "Name": "FRYDENHOJ ESTATES CORP", "Address": "PO Box 3784", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.95665540900001, "SHAPE_Area": 931.376506339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365688.857299998402596, 255653.412500001490116 ], [ 365693.759900003671646, 255645.853199999779463 ], [ 365697.897600002586842, 255633.432599999010563 ], [ 365698.75959999859333, 255626.895700000226498 ], [ 365672.136900000274181, 255628.366599999368191 ], [ 365664.486299999058247, 255674.533500000834465 ], [ 365663.631399996578693, 255680.225999999791384 ], [ 365665.23870000243187, 255680.872400000691414 ], [ 365671.770099997520447, 255671.426699999719858 ], [ 365688.857299998402596, 255653.412500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012200", "MAP": null, "PARCEL_NAM": "32 REM", "ACRE": null, "LONGITUDE": -64.86408098, "LATITUDE": 18.3293924, "OBJECTID_1": 39142, "PARCEL_NO_": "107701012200", "Tax_Legal_": "FRYDENHOJ ESTATE 32 No.3 RED HOOK QUARTER", "Name": "FRYDENHOJ ESTATE CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 243500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.28239723900001, "SHAPE_Area": 982.97539838600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365882.19709999859333, 255580.901000000536442 ], [ 365870.000299997627735, 255587.290100000798702 ], [ 365867.30799999833107, 255635.003899998962879 ], [ 365877.622500002384186, 255644.613899998366833 ], [ 365888.952299997210503, 255639.851399999111891 ], [ 365882.19709999859333, 255580.901000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012100", "MAP": "A9-503-T97", "PARCEL_NAM": "32-7", "ACRE": ".27", "LONGITUDE": -64.86430162000001, "LATITUDE": 18.3292827, "OBJECTID_1": 39141, "PARCEL_NO_": "107701012100", "Tax_Legal_": "32-7 ESTATE FRYDENHOJ #3 RED HOOK QTR.", "Name": "M. Jennings & J. Jennings Arnold (LIFE ESTATE)", "Address": "PO Box 9164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48900, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.189255557, "SHAPE_Area": 1393.6830155600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365865.956299997866154, 255584.359099999070168 ], [ 365846.805699996650219, 255570.478900000452995 ], [ 365834.887299999594688, 255618.808899998664856 ], [ 365858.422100000083447, 255626.724800001829863 ], [ 365867.30799999833107, 255635.003899998962879 ], [ 365870.000299997627735, 255587.290100000798702 ], [ 365865.956299997866154, 255584.359099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86464215, "LATITUDE": 18.32883518, "OBJECTID_1": 39142, "PARCEL_NO_": "107701012200", "Tax_Legal_": "FRYDENHOJ ESTATE 32 No.3 RED HOOK QUARTER", "Name": "FRYDENHOJ ESTATE CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 243500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 429.307737051, "SHAPE_Area": 3480.7404088100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365855.537799999117851, 255492.023600000888109 ], [ 365841.539099998772144, 255526.106100000441074 ], [ 365822.79619999974966, 255549.173000000417233 ], [ 365791.999799996614456, 255567.286100000143051 ], [ 365759.581900000572205, 255586.441399998962879 ], [ 365758.640699997544289, 255602.265700001269579 ], [ 365757.683399997651577, 255619.989700000733137 ], [ 365778.791299998760223, 255603.274999998509884 ], [ 365796.627300001680851, 255592.021899998188019 ], [ 365840.437899999320507, 255560.716499999165535 ], [ 365850.306100003421307, 255538.210200000554323 ], [ 365864.180600002408028, 255518.692099999636412 ], [ 365863.483999997377396, 255505.80970000103116 ], [ 365873.976899996399879, 255504.629000000655651 ], [ 365868.722900003194809, 255458.7787000015378 ], [ 365855.537799999117851, 255492.023600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012200", "MAP": null, "PARCEL_NAM": "32 REN", "ACRE": null, "LONGITUDE": -64.86456578000001, "LATITUDE": 18.32924365, "OBJECTID_1": 39142, "PARCEL_NO_": "107701012200", "Tax_Legal_": "FRYDENHOJ ESTATE 32 No.3 RED HOOK QUARTER", "Name": "FRYDENHOJ ESTATE CORP", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 243500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.47803216200001, "SHAPE_Area": 983.37617711500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365834.887299999594688, 255618.808899998664856 ], [ 365846.805699996650219, 255570.478900000452995 ], [ 365800.561800003051758, 255603.453200001269579 ], [ 365800.531199999153614, 255607.041499998420477 ], [ 365829.475699998438358, 255616.988699998706579 ], [ 365834.887299999594688, 255618.808899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602050800", "MAP": "A9-457-T94", "PARCEL_NAM": "37-39", "ACRE": null, "LONGITUDE": -64.8665439, "LATITUDE": 18.32906411, "OBJECTID_1": 38521, "PARCEL_NO_": "107602050800", "Tax_Legal_": "ESTATE FRYDENHOJ 37-39 RED HOOK QUARTER", "Name": "DUBERRY, RUPERT & BEVERLY", "Address": "P.O. BOX 506606", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 35200, "Improved_V": 504600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.456244188, "SHAPE_Area": 992.22492901800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365634.794100001454353, 255563.044100001454353 ], [ 365600.943300001323223, 255561.078299999237061 ], [ 365599.896099999547005, 255589.356300000101328 ], [ 365633.730599999427795, 255593.221799999475479 ], [ 365634.794100001454353, 255563.044100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107401019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9116119, "LATITUDE": 18.32872249, "OBJECTID_1": 33004, "PARCEL_NO_": "107401019900", "Tax_Legal_": "16-A thru 16-F,16-H,16-I,16-64-A,16-63-A,B,C,D ROW'S FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SCOTT, CURTIS E", "Address": "2525 Laguna Dr", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33316, "Country": "United States", "Land_Value": 343900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.04305484899999, "SHAPE_Area": 1022.60485368 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360906.158100001513958, 255478.957400001585484 ], [ 360902.196599997580051, 255470.692299999296665 ], [ 360851.18860000371933, 255494.972800001502037 ], [ 360801.800300002098083, 255518.422100000083447 ], [ 360806.569799996912479, 255526.482700001448393 ], [ 360906.158100001513958, 255478.957400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702053400", "MAP": "A9-471-T95", "PARCEL_NAM": "37-28", "ACRE": ".25", "LONGITUDE": -64.86573537, "LATITUDE": 18.32845754, "OBJECTID_1": 39595, "PARCEL_NO_": "107702053400", "Tax_Legal_": "FRYDENHOJ ESTATE 37-28 No.3 RED HOOK QTR.", "Name": "CLEAVELAND, ALEXIS EDEN", "Address": "6501 Red Hook Plza", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.601081923, "SHAPE_Area": 748.99720570700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365692.574500001966953, 255501.033399999141693 ], [ 365678.859999999403954, 255501.765500001609325 ], [ 365694.003700003027916, 255522.57660000026226 ], [ 365719.823700003325939, 255520.677000001072884 ], [ 365720.656999997794628, 255517.517400000244379 ], [ 365722.355899997055531, 255507.398800000548363 ], [ 365722.397299997508526, 255502.543999999761581 ], [ 365718.390900000929832, 255499.555900000035763 ], [ 365692.574500001966953, 255501.033399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107401019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91248983, "LATITUDE": 18.32768272, "OBJECTID_1": 33004, "PARCEL_NO_": "107401019900", "Tax_Legal_": "16-A thru 16-F,16-H,16-I,16-64-A,16-63-A,B,C,D ROW'S FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SCOTT, CURTIS E", "Address": "2525 Laguna Dr", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33316, "Country": "United States", "Land_Value": 343900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 570.18297503099996, "SHAPE_Area": 2466.3053869099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360661.613799996674061, 255314.836100000888109 ], [ 360669.667900003492832, 255315.957400001585484 ], [ 360688.175300002098083, 255320.541900001466274 ], [ 360709.071099996566772, 255328.734499998390675 ], [ 360717.103699997067451, 255332.388799998909235 ], [ 360721.110100001096725, 255335.376899998635054 ], [ 360725.915600001811981, 255339.215900000184774 ], [ 360733.102300003170967, 255347.507399998605251 ], [ 360735.490599997341633, 255351.115499999374151 ], [ 360737.074500001966953, 255354.506000000983477 ], [ 360738.656499996781349, 255358.107500001788139 ], [ 360746.538000002503395, 255379.492499999701977 ], [ 360747.310199998319149, 255383.50959999859333 ], [ 360753.65820000320673, 255395.593899998813868 ], [ 360759.210699997842312, 255406.405099999159575 ], [ 360760.002599999308586, 255408.100299999117851 ], [ 360763.195500001311302, 255411.926100000739098 ], [ 360766.39019999653101, 255415.540899999439716 ], [ 360777.58500000089407, 255426.609299998730421 ], [ 360813.718000002205372, 255444.636900000274181 ], [ 360816.127999998629093, 255445.712099999189377 ], [ 360825.784000001847744, 255448.113200001418591 ], [ 360835.46509999781847, 255447.559099998325109 ], [ 360841.933600001037121, 255445.5011 ], [ 360843.553400002419949, 255444.670000001788139 ], [ 360850.840800002217293, 255441.141100000590086 ], [ 360868.703699998557568, 255426.721799999475479 ], [ 360863.11710000038147, 255419.921100001782179 ], [ 360844.456799998879433, 255433.278400000184774 ], [ 360841.213600002229214, 255435.362799998372793 ], [ 360837.975699998438358, 255436.813900001347065 ], [ 360831.507299996912479, 255438.871899999678135 ], [ 360824.250500001013279, 255438.8125 ], [ 360816.205300003290176, 255436.63569999858737 ], [ 360783.290399998426437, 255419.478900000452995 ], [ 360774.48929999768734, 255411.385299999266863 ], [ 360772.891000002622604, 255409.683400001376867 ], [ 360766.517800003290176, 255400.554299999028444 ], [ 360757.786899998784065, 255384.22859999909997 ], [ 360750.688299998641014, 255365.594300001859665 ], [ 360747.545800000429153, 255355.858199998736382 ], [ 360745.173600003123283, 255350.350400000810623 ], [ 360741.986100003123283, 255345.89130000025034 ], [ 360737.202200002968311, 255339.519400000572205 ], [ 360732.421800002455711, 255332.725299999117851 ], [ 360721.205399997532368, 255324.189699999988079 ], [ 360697.102300003170967, 255313.859999999403954 ], [ 360672.966899998486042, 255307.329599998891354 ], [ 360655.244199998676777, 255305.284699998795986 ], [ 360661.613799996674061, 255314.836100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602019900", "MAP": "D9-5715-T94", "PARCEL_NAM": "2B-51", "ACRE": ".315", "LONGITUDE": -64.87424814000001, "LATITUDE": 18.32793192, "OBJECTID_1": 38370, "PARCEL_NO_": "107602019900", "Tax_Legal_": "2B MARIENDAHL RED HOOK", "Name": "MONSANTO, L & JENSEN, M", "Address": "PO Box 172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 293700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.974504357, "SHAPE_Area": 1408.5487876899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364835.851000003516674, 255448.636399999260902 ], [ 364789.327600002288818, 255419.758000001311302 ], [ 364780.352099999785423, 255432.138999998569489 ], [ 364775.411700002849102, 255444.130899999290705 ], [ 364777.017200000584126, 255444.988400001078844 ], [ 364818.754799999296665, 255467.706000000238419 ], [ 364827.706900000572205, 255458.068900000303984 ], [ 364835.851000003516674, 255448.636399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107401019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91046682, "LATITUDE": 18.3272612, "OBJECTID_1": 33004, "PARCEL_NO_": "107401019900", "Tax_Legal_": "16-A thru 16-F,16-H,16-I,16-64-A,16-63-A,B,C,D ROW'S FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SCOTT, CURTIS E", "Address": "2525 Laguna Dr", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33316, "Country": "United States", "Land_Value": 343900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 575.56623987800003, "SHAPE_Area": 2513.8727347899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361013.954300001263618, 255319.830699998885393 ], [ 361046.359700001776218, 255302.153000000864267 ], [ 361065.820900000631809, 255289.435600001364946 ], [ 361091.782899998128414, 255270.860700000077486 ], [ 361094.214400000870228, 255269.403000000864267 ], [ 361090.254799999296665, 255260.92680000141263 ], [ 361081.340400002896786, 255266.13120000064373 ], [ 361068.353100001811981, 255276.157400000840425 ], [ 361064.294600002467632, 255279.290600001811981 ], [ 361048.886500000953674, 255289.508099999278784 ], [ 361042.398299999535084, 255293.887899998575449 ], [ 361008.371299996972084, 255312.607900001108646 ], [ 360993.798299998044968, 255319.454700000584126 ], [ 360980.046099998056889, 255324.619500000029802 ], [ 360963.032600000500679, 255333.979400001466274 ], [ 360942.77589999884367, 255345.423799999058247 ], [ 360932.223700001835823, 255353.570099998265505 ], [ 360926.54169999808073, 255357.956500001251698 ], [ 360912.740900002419949, 255368.82039999961853 ], [ 360898.902300000190735, 255384.116999998688698 ], [ 360892.394299998879433, 255390.81870000064373 ], [ 360890.769100002944469, 255392.283100001513958 ], [ 360880.998000003397465, 255403.391100000590086 ], [ 360863.11710000038147, 255419.921100001782179 ], [ 360868.703699998557568, 255426.721799999475479 ], [ 360877.639700002968311, 255418.984499998390675 ], [ 360882.517099998891354, 255414.380399998277426 ], [ 360896.348499998450279, 255399.928100001066923 ], [ 360901.245700001716614, 255393.002099998295307 ], [ 360915.069899998605251, 255379.394200000911951 ], [ 360924.01129999756813, 255371.023600000888109 ], [ 360949.978699997067451, 255351.815499998629093 ], [ 360967.001199997961521, 255341.400199998170137 ], [ 360981.577799998223782, 255334.13120000064373 ], [ 361007.473300002515316, 255323.366300001740456 ], [ 361013.954300001263618, 255319.830699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602011500", "MAP": null, "PARCEL_NAM": "2B-39", "ACRE": null, "LONGITUDE": -64.87346862, "LATITUDE": 18.32696537, "OBJECTID_1": 38313, "PARCEL_NO_": "107602011500", "Tax_Legal_": "2B-39 MARIENDAL NO.4 RED HOOK QTR", "Name": "WARREN, ALFRED, JOSEPHINE, CONROY, E., H. & ARLENE T REED", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.771893306, "SHAPE_Area": 656.21813306499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364870.582800000905991, 255347.173500001430511 ], [ 364889.436899997293949, 255359.277100000530481 ], [ 364897.246899999678135, 255340.847899999469519 ], [ 364898.083800002932549, 255337.266100000590086 ], [ 364898.971000000834465, 255327.77419999986887 ], [ 364898.193499997258186, 255324.390299998223782 ], [ 364895.823100000619888, 255318.671399999409914 ], [ 364891.820299997925758, 255315.261100001633167 ], [ 364888.584200002253056, 255316.501200001686811 ], [ 364884.468199998140335, 255326.388900000602007 ], [ 364880.375500001013279, 255333.532600000500679 ], [ 364874.657600000500679, 255342.140599999576807 ], [ 364870.582800000905991, 255347.173500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401038700", "MAP": "D9-6396-T98", "PARCEL_NAM": "16-64", "ACRE": ".504", "LONGITUDE": -64.90789146, "LATITUDE": 18.32572841, "OBJECTID_1": 33089, "PARCEL_NO_": "107401038700", "Tax_Legal_": "16-63-8&16-64 REM.FRENCHMANS BAY #4 FRENCHMAN'S BAY QTR", "Name": "GUMBS, VERONICA P", "Address": "PO Box 304074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.02448950300001, "SHAPE_Area": 2256.9463380699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361238.791799999773502, 255146.885499998927116 ], [ 361221.810699999332428, 255152.445999998599291 ], [ 361215.98309999704361, 255173.929800000041723 ], [ 361220.74719999730587, 255182.623700000345707 ], [ 361238.437600001692772, 255188.467999998480082 ], [ 361252.090899996459484, 255194.912500001490116 ], [ 361298.264700002968311, 255170.170299999415874 ], [ 361238.791799999773502, 255146.885499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87544378, "LATITUDE": 18.3258879, "OBJECTID_1": 37980, "PARCEL_NO_": "107601032700", "Tax_Legal_": "EST. MARIENDAHL 2B-28A & 2B-28-1 RED HOOK QTR", "Name": "CONNOR, HARVEY", "Address": "BOX 4872", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23000, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.725727851199998, "SHAPE_Area": 82.975970718400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364688.607199996709824, 255221.561099998652935 ], [ 364671.798799999058247, 255206.8581000007689 ], [ 364678.91889999806881, 255222.959499999880791 ], [ 364688.607199996709824, 255221.561099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87561159000001, "LATITUDE": 18.32569406, "OBJECTID_1": 37981, "PARCEL_NO_": "107601032800", "Tax_Legal_": "EST MARIENDAHL 2B-28 & 2B-28-A-1 RED HOOK QTR", "Name": "CONNOR, MICHAEL", "Address": "PO Box 6454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24300, "Improved_V": 145200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.216336421199998, "SHAPE_Area": 111.656459861 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364671.798799999058247, 255206.8581000007689 ], [ 364665.477700002491474, 255191.607599999755621 ], [ 364649.380199998617172, 255188.098400000482798 ], [ 364671.798799999058247, 255206.8581000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404039900", "MAP": "D9-5049-T91", "PARCEL_NAM": "60-5", "ACRE": ".226", "LONGITUDE": -64.89992722, "LATITUDE": 18.32524948, "OBJECTID_1": 37457, "PARCEL_NO_": "107404039900", "Tax_Legal_": "BOLONGO 60-5(R.O.W) FRENCHMAN'S BAY QTR", "Name": "CARIBBEAN HOLDINGS, INC.", "Address": "10773 Poags Hole Rd", "City": "Dansville", "State": "New York", "Zip": 14437, "Country": "United States", "Land_Value": 18200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.778165108, "SHAPE_Area": 392.49821980799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362106.880300000309944, 255095.728500001132488 ], [ 362101.228900000452995, 255096.526599999517202 ], [ 362095.4408999979496, 255113.366799999028444 ], [ 362092.946400001645088, 255122.21229999884963 ], [ 362089.681599996984005, 255126.829599998891354 ], [ 362087.232100002467632, 255130.398200001567602 ], [ 362084.780799999833107, 255134.177799999713898 ], [ 362074.255599997937679, 255139.157900001853704 ], [ 362075.819700002670288, 255144.870200000703335 ], [ 362081.469200000166893, 255144.28319999948144 ], [ 362083.072899997234344, 255145.351799998432398 ], [ 362083.862999998033047, 255147.258099999278784 ], [ 362089.532399997115135, 255144.349199999123812 ], [ 362088.774599999189377, 255138.643399998545647 ], [ 362096.115900002419949, 255128.7820999994874 ], [ 362101.04730000346899, 255117.845600001513958 ], [ 362102.695900000631809, 255113.637200001627207 ], [ 362103.547200001776218, 255108.366900000721216 ], [ 362106.880300000309944, 255095.728500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401019900", "MAP": "D9-6155-T96", "PARCEL_NAM": "16-63-C", "ACRE": null, "LONGITUDE": -64.91041283, "LATITUDE": 18.32533036, "OBJECTID_1": 33004, "PARCEL_NO_": "107401019900", "Tax_Legal_": "16-A thru 16-F,16-H,16-I,16-64-A,16-63-A,B,C,D ROW'S FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SCOTT, CURTIS E", "Address": "2525 Laguna Dr", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33316, "Country": "United States", "Land_Value": 343900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.303805788099993, "SHAPE_Area": 198.37548623500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360967.931900002062321, 255137.491399999707937 ], [ 360993.847199998795986, 255124.404599998146296 ], [ 360989.928999997675419, 255111.073699999600649 ], [ 360967.931900002062321, 255137.491399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401019900", "MAP": "D9-6155-T96", "PARCEL_NAM": "16-63-D", "ACRE": null, "LONGITUDE": -64.91015092000001, "LATITUDE": 18.32525277, "OBJECTID_1": 33004, "PARCEL_NO_": "107401019900", "Tax_Legal_": "16-A thru 16-F,16-H,16-I,16-64-A,16-63-A,B,C,D ROW'S FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SCOTT, CURTIS E", "Address": "2525 Laguna Dr", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33316, "Country": "United States", "Land_Value": 343900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.77522738799999, "SHAPE_Area": 405.77222830300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360993.847199998795986, 255124.404599998146296 ], [ 361051.201499998569489, 255112.41950000077486 ], [ 360989.928999997675419, 255111.073699999600649 ], [ 360993.847199998795986, 255124.404599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029800", "MAP": "D9-4047-T87", "PARCEL_NAM": "16-47", "ACRE": ".556", "LONGITUDE": -64.90696755, "LATITUDE": 18.32480998, "OBJECTID_1": 33276, "PARCEL_NO_": "107402029800", "Tax_Legal_": "FRENCHMANS BAY EST. 16-46&47 FRENCHMAN BAY QTR.", "Name": "VILLA JASH LLC", "Address": "PO Box 301826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 125600, "Improved_V": 886200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.228524596, "SHAPE_Area": 2981.7753813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361339.74379999935627, 255033.932300001382828 ], [ 361322.802199997007847, 255034.84910000115633 ], [ 361325.959100000560284, 255042.896499998867512 ], [ 361325.869199998676777, 255053.450399998575449 ], [ 361323.306400001049042, 255070.316899999976158 ], [ 361323.990500003099442, 255084.676899999380112 ], [ 361325.54730000346899, 255091.233500000089407 ], [ 361358.485699996352196, 255105.64640000090003 ], [ 361380.317299999296665, 255098.647900000214577 ], [ 361377.964800000190735, 255090.818199999630451 ], [ 361358.299699999392033, 255032.817600000649691 ], [ 361339.74379999935627, 255033.932300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034300", "MAP": "D9-4698-T89", "PARCEL_NAM": "2B-1", "ACRE": ".26", "LONGITUDE": -64.87676552000001, "LATITUDE": 18.32484694, "OBJECTID_1": 37996, "PARCEL_NO_": "107601034300", "Tax_Legal_": "MARIENDAHL 2B-1 4 RED HOOK QTR", "Name": "IRA DIEMS and PAULETTE JULIEN", "Address": "PO Box 11626", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014626, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.04093166199999, "SHAPE_Area": 1084.0943986699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364564.713100001215935, 255093.257699999958277 ], [ 364540.615500003099442, 255082.294700000435114 ], [ 364515.793799996376038, 255094.169900000095367 ], [ 364519.505699999630451, 255099.220499999821186 ], [ 364523.497699998319149, 255103.897199999541044 ], [ 364544.276600003242493, 255125.809999998658895 ], [ 364564.713100001215935, 255093.257699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107403019900", "MAP": null, "PARCEL_NAM": "17-92", "ACRE": null, "LONGITUDE": -64.91503109, "LATITUDE": 18.32382495, "OBJECTID_1": 37155, "PARCEL_NO_": "107403019900", "Tax_Legal_": "17-92,17-107,17-108,17-A TO 17-J FRENCHMAN'S BAY", "Name": "V. I. ENT. S. A.", "Address": "FLAGSHIP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 996.63302675199998, "SHAPE_Area": 3876.8171316399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360493.089800000190735, 254935.388199999928474 ], [ 360478.858499996364117, 254902.129999998956919 ], [ 360475.701499998569489, 254894.082699999213219 ], [ 360473.325800001621246, 254888.997000001370907 ], [ 360470.9391999989748, 254885.177700001746416 ], [ 360461.369499996304512, 254872.644900001585484 ], [ 360455.795500002801418, 254864.366599999368191 ], [ 360443.778099998831749, 254855.191300000995398 ], [ 360440.578000001609325, 254852.209800001233816 ], [ 360435.781499996781349, 254847.31529999896884 ], [ 360428.657799996435642, 254831.636100001633167 ], [ 360423.875600002706051, 254825.053100001066923 ], [ 360419.892599999904633, 254819.320999998599291 ], [ 360416.697999998927116, 254815.706199999898672 ], [ 360392.715400002896786, 254791.234200000762939 ], [ 360384.582099996507168, 254799.400199998170137 ], [ 360387.769599996507168, 254803.859299998730421 ], [ 360388.550700001418591, 254806.820999998599291 ], [ 360388.523800000548363, 254809.987199999392033 ], [ 360385.269799999892712, 254813.338100001215935 ], [ 360390.066299997270107, 254818.232500001788139 ], [ 360396.572499997913837, 254811.741799999028444 ], [ 360400.607699997723103, 254811.352699998766184 ], [ 360403.820299997925758, 254812.856600001454353 ], [ 360411.815099999308586, 254820.943599998950958 ], [ 360418.989200003445148, 254830.712600000202656 ], [ 360422.96679999679327, 254837.078000001609325 ], [ 360423.760600000619888, 254838.562100000679493 ], [ 360425.342600002884865, 254842.163699999451637 ], [ 360430.889700002968311, 254853.6081000007689 ], [ 360435.688000001013279, 254858.291400000452995 ], [ 360438.889899998903275, 254861.061900001019239 ], [ 360453.30460000038147, 254872.78999999910593 ], [ 360457.296599999070168, 254877.466699998825788 ], [ 360468.428599998354912, 254895.923000000417233 ], [ 360471.583700001239777, 254904.181400001049042 ], [ 360474.747800000011921, 254911.384500000625849 ], [ 360475.534299999475479, 254913.712999999523163 ], [ 360488.189000003039837, 254942.736400000751019 ], [ 360489.785400003194809, 254944.649300001561642 ], [ 360492.146799996495247, 254951.423599999397993 ], [ 360492.936899997293949, 254953.329900000244379 ], [ 360496.826399996876717, 254970.038100000470877 ], [ 360498.298799999058247, 254986.515500001609325 ], [ 360499.826899997889996, 254996.449400000274181 ], [ 360503.78830000013113, 255004.714499998837709 ], [ 360514.1300999969244, 255021.264400001615286 ], [ 360512.48870000243187, 255024.628499999642372 ], [ 360500.395900003612041, 255024.318399999290705 ], [ 360497.148999996483326, 255026.82490000128746 ], [ 360493.898599997162819, 255029.753600001335144 ], [ 360494.633000001311302, 255038.203400000929832 ], [ 360505.052100002765656, 255045.677000001072884 ], [ 360512.233400002121925, 255054.601700000464916 ], [ 360513.014499999582767, 255057.563400000333786 ], [ 360515.401100002229214, 255061.382599998265505 ], [ 360520.052000001072884, 255083.374400001019239 ], [ 360523.262800000607967, 255085.089400000870228 ], [ 360524.868299998342991, 255085.946899998933077 ], [ 360528.082699999213219, 255087.239799998700619 ], [ 360529.765500001609325, 255079.020899999886751 ], [ 360528.982600003480911, 255076.270300000905991 ], [ 360526.578000001609325, 255074.561900001019239 ], [ 360523.462399996817112, 255061.659600000828505 ], [ 360521.887599997222424, 255057.213799998164177 ], [ 360519.511799998581409, 255052.128100000321865 ], [ 360509.938500002026558, 255040.017400000244379 ], [ 360504.332099996507168, 255035.538600001484156 ], [ 360506.772600002586842, 255033.025400001555681 ], [ 360520.456600002944469, 255035.881599999964237 ], [ 360534.916199997067451, 255042.332800000905991 ], [ 360540.562200002372265, 255042.167899999767542 ], [ 360544.608199998736382, 255040.512299999594688 ], [ 360584.477099999785423, 254998.619899999350309 ], [ 360595.070699997246265, 254985.61879999935627 ], [ 360596.710299998521805, 254982.465799998492002 ], [ 360602.376000002026558, 254979.978999998420477 ], [ 360603.985100001096725, 254980.41440000012517 ], [ 360605.581500001251698, 254982.327300000935793 ], [ 360610.464299999177456, 254977.089899998158216 ], [ 360607.271499998867512, 254973.26410000026226 ], [ 360608.110100001096725, 254969.4712999984622 ], [ 360609.731799997389317, 254968.429099999368191 ], [ 360607.334399998188019, 254965.876299999654293 ], [ 360604.132500000298023, 254963.105900000780821 ], [ 360582.140900000929832, 254988.890399999916553 ], [ 360573.993299998342991, 254998.745200000703335 ], [ 360541.438699997961521, 255033.942400000989437 ], [ 360538.211599998176098, 255034.127099998295307 ], [ 360536.597199998795986, 255034.324999999254942 ], [ 360534.187299996614456, 255033.249800000339746 ], [ 360530.974600002169609, 255031.745799999684095 ], [ 360529.370999999344349, 255030.677299998700619 ], [ 360526.971799999475479, 255028.33559999987483 ], [ 360510.273000001907349, 255000.756799999624491 ], [ 360506.343900002539158, 254988.692299999296665 ], [ 360504.846400000154972, 254975.170000001788139 ], [ 360501.752400003373623, 254959.734900001436472 ], [ 360500.9712999984622, 254956.773200001567602 ], [ 360499.403599999845028, 254951.482999999076128 ], [ 360493.089800000190735, 254935.388199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701015700", "MAP": "F9-541-T59", "PARCEL_NAM": "99", "ACRE": ".0101", "LONGITUDE": -64.86471583, "LATITUDE": 18.32462881, "OBJECTID_1": 39174, "PARCEL_NO_": "107701015700", "Tax_Legal_": "ESTATE FRYDENHOJ 99 RED HOOK QUARTER", "Name": "BAILEY, JOSEPH R, ANITA, MARCUS, GRACE, and PETER", "Address": "PO Box 11671", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.681553016600006, "SHAPE_Area": 387.96897384300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365822.720499999821186, 255075.171999998390675 ], [ 365810.682899996638298, 255073.666400000452995 ], [ 365808.848399996757507, 255079.980000000447035 ], [ 365804.571000002324581, 255094.700800001621246 ], [ 365806.793499998748302, 255098.987100001424551 ], [ 365822.83330000191927, 255098.912799999117851 ], [ 365823.344200000166893, 255090.73759999871254 ], [ 365823.387500002980232, 255090.077100001275539 ], [ 365822.762000001966953, 255079.911800000816584 ], [ 365822.720499999821186, 255075.171999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602041500", "MAP": "A9-58-T66", "PARCEL_NAM": "48-7", "ACRE": ".33", "LONGITUDE": -64.86724686, "LATITUDE": 18.32389948, "OBJECTID_1": 38499, "PARCEL_NO_": "107602041500", "Tax_Legal_": "47-1 48-7&8 FRYDENHOJ RED HOOK QTR", "Name": "TRUST AGREEMENT OF RALDA V SIMMONDS", "Address": "PO Box 7755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 134300, "Improved_V": 332000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.075587329, "SHAPE_Area": 1388.1241769400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365569.48200000077486, 254994.667899999767542 ], [ 365579.420299999415874, 254963.92960000038147 ], [ 365572.975199997425079, 254963.243599999696016 ], [ 365572.077200002968311, 254974.002000000327826 ], [ 365569.580899998545647, 254983.058600001037121 ], [ 365564.703500002622604, 254987.66270000115037 ], [ 365560.652199998497963, 254989.95160000026226 ], [ 365554.995399996638298, 254991.383000001311302 ], [ 365550.965599998831749, 254991.138900000602007 ], [ 365548.555699996650219, 254990.063700001686811 ], [ 365515.338600002229214, 255008.368099998682737 ], [ 365517.712600000202656, 255013.664799999445677 ], [ 365520.086599998176098, 255018.961599998176098 ], [ 365560.358999997377396, 255024.357500001788139 ], [ 365569.48200000077486, 254994.667899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107403019900", "MAP": "D9-4672-T89", "PARCEL_NAM": "17-107", "ACRE": "0.75", "LONGITUDE": -64.91305781, "LATITUDE": 18.32341336, "OBJECTID_1": 37155, "PARCEL_NO_": "107403019900", "Tax_Legal_": "17-92,17-107,17-108,17-A TO 17-J FRENCHMAN'S BAY", "Name": "V. I. ENT. S. A.", "Address": "FLAGSHIP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 638.71714841999994, "SHAPE_Area": 3352.7487060200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360611.278899997472763, 254881.471200000494719 ], [ 360592.665399998426437, 254889.340399999171495 ], [ 360570.022100001573563, 254896.965599998831749 ], [ 360567.610399998724461, 254896.101399999111891 ], [ 360564.442699998617172, 254889.320500001311302 ], [ 360560.314000003039837, 254900.6858000010252 ], [ 360561.903300002217293, 254903.442999999970198 ], [ 360565.112300001084805, 254905.369100000709295 ], [ 360570.75110000371933, 254906.048500001430511 ], [ 360581.261900000274181, 254902.757100000977516 ], [ 360599.861100003123283, 254896.576499998569489 ], [ 360612.812399998307228, 254890.771899998188019 ], [ 360621.714199997484684, 254887.045000001788139 ], [ 360634.656599998474121, 254882.295800000429153 ], [ 360641.125100001692772, 254880.237799998372793 ], [ 360658.10080000013113, 254875.310499999672174 ], [ 360686.366700001060963, 254870.264499999582767 ], [ 360693.612700000405312, 254871.590399999171495 ], [ 360700.025399997830391, 254876.075800001621246 ], [ 360715.102600000798702, 254904.696899998933077 ], [ 360725.471400000154972, 254918.080600000917912 ], [ 360727.86879999935627, 254920.633400000631809 ], [ 360729.468800000846386, 254922.124099999666214 ], [ 360733.476999998092651, 254924.901099998503923 ], [ 360740.699600003659725, 254928.971000000834465 ], [ 360752.785300001502037, 254930.125399999320507 ], [ 360752.726000003516674, 254937.090999998152256 ], [ 360757.562100000679493, 254937.341699998825788 ], [ 360761.588200002908707, 254938.00789999961853 ], [ 360764.003600001335144, 254938.44990000128746 ], [ 360769.629799999296665, 254940.606899999082088 ], [ 360770.401900000870228, 254944.624000001698732 ], [ 360769.564999997615814, 254948.205699998885393 ], [ 360776.76070000231266, 254955.441799998283386 ], [ 360779.930200003087521, 254962.011599998921156 ], [ 360782.237700000405312, 254975.118299998342991 ], [ 360784.672799997031689, 254973.238400001078844 ], [ 360789.507100000977516, 254973.700100000947714 ], [ 360791.101700000464916, 254975.824099998921156 ], [ 360791.083700001239777, 254977.934900000691414 ], [ 360799.161200001835823, 254976.312300000339746 ], [ 360794.530199997127056, 254951.998599998652935 ], [ 360792.237099997699261, 254937.203299999237061 ], [ 360791.44879999756813, 254935.085900001227856 ], [ 360789.857699997723103, 254932.539799999445677 ], [ 360787.458599999547005, 254930.198100000619888 ], [ 360783.452200002968311, 254927.21000000089407 ], [ 360780.243100002408028, 254925.283900000154972 ], [ 360776.229500003159046, 254923.140099998563528 ], [ 360774.618699997663498, 254922.915800001472235 ], [ 360747.218500003218651, 254921.00279999896884 ], [ 360742.393200002610683, 254919.485700000077486 ], [ 360739.176899999380112, 254918.403900001198053 ], [ 360733.570500001311302, 254913.925000000745058 ], [ 360724.000799998641014, 254901.392200000584126 ], [ 360719.240299999713898, 254892.276200000196695 ], [ 360707.329000003635883, 254870.647199999541044 ], [ 360700.12610000371933, 254864.255399998277426 ], [ 360695.306199997663498, 254862.105000000447035 ], [ 360684.831399999558926, 254861.174899999052286 ], [ 360652.524899996817112, 254867.243299998342991 ], [ 360628.274400003254414, 254874.221999999135733 ], [ 360611.278899997472763, 254881.471200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402036900", "MAP": "D9-6285-T97", "PARCEL_NAM": "14-130", "ACRE": null, "LONGITUDE": -64.90175722, "LATITUDE": 18.32361804, "OBJECTID_1": 33279, "PARCEL_NO_": "107402036900", "Tax_Legal_": "14-130 ESTATE FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "RYAN, BERYL", "Address": "PO Box 600295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.70947377100001, "SHAPE_Area": 640.91618272400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361901.098399996757507, 254924.958399999886751 ], [ 361895.531499996781349, 254915.835799999535084 ], [ 361887.115900002419949, 254957.141199998557568 ], [ 361918.587300002574921, 254954.443500000983477 ], [ 361901.098399996757507, 254924.958399999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404036900", "MAP": "D9-4153-T87", "PARCEL_NAM": "60-I", "ACRE": ".66", "LONGITUDE": -64.90096086, "LATITUDE": 18.32322458, "OBJECTID_1": 37449, "PARCEL_NO_": "107404036900", "Tax_Legal_": "BOLONGO 60-I FRENCHMANS BAY QTR.", "Name": "HENRY, ANDREA", "Address": "7146 Nadir Homes 3361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.650871161, "SHAPE_Area": 3177.6002015399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362032.592000000178814, 254918.435199998319149 ], [ 361978.208700001239777, 254865.638900000602007 ], [ 361974.168200001120567, 254866.661299999803305 ], [ 361958.032899998128414, 254867.584699999541044 ], [ 361950.749099999666214, 254870.691500000655651 ], [ 361946.694200001657009, 254873.402499999850988 ], [ 361939.354699999094009, 254883.052799999713898 ], [ 361998.554300002753735, 254938.421599999070168 ], [ 362009.101099997758865, 254930.908599998801947 ], [ 362013.962300002574921, 254928.204100001603365 ], [ 362032.592000000178814, 254918.435199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503017900", "MAP": "D9-4151-T87", "PARCEL_NAM": "26-A2", "ACRE": ".56", "LONGITUDE": -64.898939, "LATITUDE": 18.32324585, "OBJECTID_1": 37588, "PARCEL_NO_": "107503017900", "Tax_Legal_": "26-A2 & 26-A3 EST. BOLONGO FRENCHMANS BAY QTR.", "Name": "SAMUEL, MITCHELL", "Address": "PO Box 1121", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 96900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.92683474, "SHAPE_Area": 2449.7980017099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362233.487899996340275, 254905.513999998569489 ], [ 362231.889700002968311, 254903.812199998646975 ], [ 362225.564999997615814, 254888.983800001442432 ], [ 362223.965000003576279, 254887.493099998682737 ], [ 362219.936999998986721, 254887.037900000810623 ], [ 362211.047799997031689, 254889.287200000137091 ], [ 362207.822599999606609, 254889.260800000280142 ], [ 362204.613499999046326, 254887.334699999541044 ], [ 362204.645900003612041, 254883.535300001502037 ], [ 362184.500600002706051, 254881.892799999564886 ], [ 362168.336599998176098, 254886.193399999290705 ], [ 362165.912299998104572, 254886.80689999833703 ], [ 362161.826800003647804, 254893.106199998408556 ], [ 362155.33669999986887, 254897.697200000286102 ], [ 362152.093500003218651, 254899.781599998474121 ], [ 362180.976899996399879, 254916.905499998480082 ], [ 362230.854999996721745, 254930.61259999871254 ], [ 362233.487899996340275, 254905.513999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030300", "MAP": "D9-6715-T000", "PARCEL_NAM": "20-8", "ACRE": ".44", "LONGITUDE": -64.8731255, "LATITUDE": 18.32319533, "OBJECTID_1": 38466, "PARCEL_NO_": "107602030300", "Tax_Legal_": "20-8 & 20-6-1 ESTATE NADIR NO.2 REDHOOK QTR.", "Name": "MERCER, LISTON E., & YVONNE R. MATHEW", "Address": "PO Box 11436", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43800, "Improved_V": 88900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.17834505299999, "SHAPE_Area": 1819.6624092699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364942.598899997770786, 254939.296900000423193 ], [ 364954.573899999260902, 254930.317400000989437 ], [ 364966.385799996554852, 254921.460299998521805 ], [ 364938.322200000286102, 254907.10190000012517 ], [ 364934.239100001752377, 254901.881499998271465 ], [ 364929.876000002026558, 254904.285900000482798 ], [ 364927.88910000026226, 254905.374000001698732 ], [ 364914.069700002670288, 254900.953699998557568 ], [ 364906.13400000333786, 254898.415399998426437 ], [ 364901.492299996316433, 254896.930700000375509 ], [ 364901.903800003230572, 254905.175900001078844 ], [ 364903.602700002491474, 254939.216099999845028 ], [ 364906.313000001013279, 254939.210999999195337 ], [ 364914.376199997961521, 254939.276999998837709 ], [ 364942.598899997770786, 254939.296900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107403019900", "MAP": "D9-4670-T89", "PARCEL_NAM": "17-108", "ACRE": ".69", "LONGITUDE": -64.91529332, "LATITUDE": 18.32244648, "OBJECTID_1": 37155, "PARCEL_NO_": "107403019900", "Tax_Legal_": "17-92,17-107,17-108,17-A TO 17-J FRENCHMAN'S BAY", "Name": "V. I. ENT. S. A.", "Address": "FLAGSHIP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 583.12227765800003, "SHAPE_Area": 2592.59955446 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360358.419799998402596, 254746.834899999201298 ], [ 360360.765000000596046, 254755.50899999961257 ], [ 360383.424400001764297, 254745.984099999070168 ], [ 360390.688400000333786, 254745.199200000613928 ], [ 360393.899300001561642, 254746.914200000464916 ], [ 360395.502899996936321, 254747.982799999415874 ], [ 360397.103000000119209, 254749.473600000143051 ], [ 360397.050800003111362, 254755.594799999147654 ], [ 360401.055399999022484, 254758.793999999761581 ], [ 360402.6824000030756, 254757.118599999696016 ], [ 360405.914899997413158, 254756.300700001418591 ], [ 360409.136500000953674, 254756.749200001358986 ], [ 360426.762100003659725, 254770.192400000989437 ], [ 360446.813799999654293, 254782.811000000685453 ], [ 360455.589800000190735, 254793.859700001776218 ], [ 360469.214400000870228, 254803.681499999016523 ], [ 360471.609899997711182, 254806.445300001651049 ], [ 360472.389300003647804, 254809.618099998682737 ], [ 360474.775799997150898, 254813.437300000339746 ], [ 360478.785800002515316, 254816.003299999982119 ], [ 360481.192199997603893, 254817.500599998980761 ], [ 360482.799400001764297, 254818.147100001573563 ], [ 360485.214699998497963, 254818.589000001549721 ], [ 360507.771700002253056, 254821.09569999948144 ], [ 360515.814999997615814, 254823.483500000089407 ], [ 360521.426899999380112, 254827.329100001603365 ], [ 360523.831399999558926, 254829.037599999457598 ], [ 360527.031499996781349, 254832.019099999219179 ], [ 360533.393899999558926, 254842.414700001478195 ], [ 360535.785800002515316, 254845.600699998438358 ], [ 360537.36429999768734, 254849.624400001019239 ], [ 360543.62780000269413, 254871.629399999976158 ], [ 360545.226000003516674, 254873.331199999898672 ], [ 360560.314000003039837, 254900.6858000010252 ], [ 360564.442699998617172, 254889.320500001311302 ], [ 360554.10809999704361, 254871.926300000399351 ], [ 360546.23369999974966, 254849.697000000625849 ], [ 360546.253499999642372, 254847.375100001692772 ], [ 360541.507399998605251, 254836.570500001311302 ], [ 360534.329700000584126, 254827.223700001835823 ], [ 360526.33669999986887, 254818.925599999725819 ], [ 360520.717699997127056, 254815.924300000071526 ], [ 360516.702299997210503, 254813.991599999368191 ], [ 360507.85080000013113, 254811.808200001716614 ], [ 360486.902900002896786, 254809.736900001764297 ], [ 360482.081200003623962, 254807.797600001096725 ], [ 360475.720600001513958, 254797.190900001674891 ], [ 360464.495200000703335, 254789.710700001567602 ], [ 360452.522799998521805, 254775.258400000631809 ], [ 360436.47919999808073, 254765.416799999773502 ], [ 360417.246399998664856, 254751.327199999243021 ], [ 360401.219099998474121, 254739.585799999535084 ], [ 360395.5945999994874, 254737.217799998819828 ], [ 360388.348600000143051, 254735.8918999992311 ], [ 360380.272900000214577, 254737.30350000038743 ], [ 360358.419799998402596, 254746.834899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87253051, "LATITUDE": 18.32319276, "OBJECTID_1": 38471, "PARCEL_NO_": "107602030900", "Tax_Legal_": "NADIR 20-7 & 20-9 RED HOOK QTR", "Name": "ADAMS, J, D,J,D C,N & ANETTE ADAMS-HENRY", "Address": "BOX 4591", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 298100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.02269371, "SHAPE_Area": 63.865507472799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364971.003200002014637, 254917.997900001704693 ], [ 364997.362300001084805, 254924.935400001704693 ], [ 365002.422499999403954, 254921.421399999409914 ], [ 364971.003200002014637, 254917.997900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503016600", "MAP": "D9-4151-T87", "PARCEL_NAM": "61-34", "ACRE": ".803", "LONGITUDE": -64.89843601, "LATITUDE": 18.32285886, "OBJECTID_1": 37575, "PARCEL_NO_": "107503016600", "Tax_Legal_": "61-34 BOLONGO FRENCHMAN BAY QTR.", "Name": "WEAVER, MERCIA F", "Address": "PO Box 11817", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.749232001, "SHAPE_Area": 3740.81913102 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362265.620999999344349, 254825.139199998229742 ], [ 362223.565099999308586, 254839.782699998468161 ], [ 362221.878700003027916, 254848.423700001090765 ], [ 362212.768299996852875, 254876.63569999858737 ], [ 362213.542300000786781, 254880.441700000315905 ], [ 362219.188299998641014, 254880.276799999177456 ], [ 362225.640600003302097, 254880.118500001728535 ], [ 362228.046899996697903, 254881.615899998694658 ], [ 362230.449699997901917, 254883.535399999469519 ], [ 362232.847000002861023, 254886.088100001215935 ], [ 362237.576999999582767, 254898.792500000447035 ], [ 362239.970799997448921, 254901.767400000244379 ], [ 362242.378899998962879, 254903.053599998354912 ], [ 362243.982600003480911, 254904.12220000103116 ], [ 362248.015900000929832, 254903.944099999964237 ], [ 362250.449199996888638, 254902.275299999862909 ], [ 362256.944700002670288, 254897.051100000739098 ], [ 362270.792300000786781, 254880.699200000613928 ], [ 362278.144400000572205, 254869.571400001645088 ], [ 362279.791199997067451, 254865.574099998921156 ], [ 362281.414599999785423, 254864.320799998939037 ], [ 362282.242499999701977, 254861.79450000077486 ], [ 362287.137900002300739, 254855.079500000923872 ], [ 362302.612499997019768, 254837.052099999040365 ], [ 362301.820500001311302, 254835.356899999082088 ], [ 362281.635799996554852, 254838.3581000007689 ], [ 362274.387900002300739, 254837.243299998342991 ], [ 362268.781499996781349, 254832.764499999582767 ], [ 362266.396700002253056, 254828.734200000762939 ], [ 362265.620999999344349, 254825.139199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602025800", "MAP": "D9-4627-T89", "PARCEL_NAM": "1-81", "ACRE": null, "LONGITUDE": -64.87082213, "LATITUDE": 18.32278863, "OBJECTID_1": 38426, "PARCEL_NO_": "107602025800", "Tax_Legal_": "EST.FRYDENHOJ 1-81 REDHOOK QTR.", "Name": "CASSEUS, ANTOINETTE", "Address": "6014, 1-81 ESTATE FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32600, "Improved_V": 150000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.8675708, "SHAPE_Area": 1499.15710433 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365157.988499999046326, 254863.721200000494719 ], [ 365151.087559452222195, 254864.811154345545219 ], [ 365144.284482702380046, 254866.401477470382815 ], [ 365137.615500003099442, 254868.48369999974966 ], [ 365136.571985486487392, 254868.974408436246449 ], [ 365135.625849493546411, 254869.633607949886937 ], [ 365134.804039023758378, 254870.442523809411796 ], [ 365134.129960148362443, 254871.378117196349194 ], [ 365133.622811379260384, 254872.413741376280086 ], [ 365133.297036874399055, 254873.519900626997696 ], [ 365133.161915052041877, 254874.66509030960151 ], [ 365133.221294331073295, 254875.816694155219011 ], [ 365133.473483523936011, 254876.941913212533109 ], [ 365133.911300003528595, 254878.008699998259544 ], [ 365168.0320999994874, 254889.23930000141263 ], [ 365173.619599997997284, 254892.42509999871254 ], [ 365184.932800002396107, 254901.947299998253584 ], [ 365196.739399999380112, 254886.746199999004602 ], [ 365200.999499998986721, 254881.261300001293421 ], [ 365204.982400000095367, 254876.133200000971556 ], [ 365206.04280000180006, 254874.767900001257658 ], [ 365194.633299998939037, 254869.277399998158216 ], [ 365185.603359713219106, 254867.119836877885973 ], [ 365176.466748175327666, 254865.471434685896384 ], [ 365167.252151337219402, 254864.337368862354197 ], [ 365157.988499999046326, 254863.721200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": "B9-121-T65", "PARCEL_NAM": "33", "ACRE": null, "LONGITUDE": -64.87836581000001, "LATITUDE": 18.32211449, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 778.19068765099996, "SHAPE_Area": 8800.5925938399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364401.757799997925758, 254722.721400000154972 ], [ 364389.642899997532368, 254684.853500001132488 ], [ 364384.564599998295307, 254688.69370000064373 ], [ 364356.047700002789497, 254710.257699999958277 ], [ 364348.898599997162819, 254716.23200000077486 ], [ 364340.299599997699261, 254724.963300000876188 ], [ 364334.734899997711182, 254733.782999999821186 ], [ 364331.475500002503395, 254737.767099998891354 ], [ 364325.759400002658367, 254746.164000000804663 ], [ 364323.27929999679327, 254753.320900000631809 ], [ 364322.442500002682209, 254756.90260000154376 ], [ 364323.1300999969244, 254770.840500000864267 ], [ 364323.025799997150898, 254783.083000000566244 ], [ 364324.523299999535084, 254796.60530000180006 ], [ 364326.058600001037121, 254805.694899998605251 ], [ 364329.167000003159046, 254819.441399998962879 ], [ 364329.957099996507168, 254821.347699999809265 ], [ 364333.119499996304512, 254828.761799998581409 ], [ 364339.264899998903275, 254837.084300000220537 ], [ 364358.97240000218153, 254854.336399998515844 ], [ 364364.526500001549721, 254859.078600000590086 ], [ 364370.805418934964109, 254863.695190489728702 ], [ 364377.412954505474772, 254867.827768910268787 ], [ 364384.311873308382928, 254871.453048219234915 ], [ 364391.463299997150898, 254874.550599999725819 ], [ 364404.525192032451741, 254878.464736043970333 ], [ 364417.68695487169316, 254882.028650111053139 ], [ 364430.9391999989748, 254885.239799998700619 ], [ 364436.949957517674193, 254886.492771459306823 ], [ 364442.805366391374264, 254888.340291513537522 ], [ 364448.446774711657781, 254890.763854096410796 ], [ 364453.817674150632229, 254893.739183094352484 ], [ 364458.864265988289844, 254897.236475511890603 ], [ 364463.535999998450279, 254901.22069999948144 ], [ 364467.538647396897431, 254905.550601057650056 ], [ 364470.974424424930476, 254910.342747297429014 ], [ 364473.790462954086252, 254915.523399415891618 ], [ 364475.943431101739407, 254921.012839963426813 ], [ 364477.400200001895428, 254926.726599998772144 ], [ 364478.003801722195931, 254940.969781217369018 ], [ 364478.046156948315911, 254955.225683584372746 ], [ 364477.527199998497963, 254969.472199998795986 ], [ 364488.362700000405312, 254968.720899999141693 ], [ 364489.23369999974966, 254961.128699999302626 ], [ 364488.499300003051758, 254952.678899999707937 ], [ 364486.159500002861023, 254943.371599998325109 ], [ 364485.412500001490116, 254936.399399999529123 ], [ 364485.441299997270107, 254933.022199999541044 ], [ 364485.462899997830391, 254930.489199999719858 ], [ 364484.744699999690056, 254920.139800000935793 ], [ 364481.596799999475479, 254911.037000000476837 ], [ 364473.611000001430511, 254901.894600000232458 ], [ 364465.630500003695488, 254892.118999999016523 ], [ 364457.605200000107288, 254887.620299998670816 ], [ 364446.285099998116493, 254883.017299998551607 ], [ 364426.263700000941753, 254875.417399998754263 ], [ 364421.09009999781847, 254872.236800000071526 ], [ 364415.0253000035882, 254869.117800001055002 ], [ 364411.821599997580051, 254866.558400001376867 ], [ 364406.218800000846386, 254861.657400000840425 ], [ 364394.224799998104572, 254849.738000001758337 ], [ 364385.436300002038479, 254840.166900001466274 ], [ 364376.654899999499321, 254829.751400001347065 ], [ 364371.869199998676777, 254823.590599998831749 ], [ 364367.891599997878075, 254817.22520000115037 ], [ 364366.295100003480911, 254815.312300000339746 ], [ 364360.704899996519089, 254808.933699999004602 ], [ 364358.321900002658367, 254804.692400000989437 ], [ 364356.741700001060963, 254800.879700001329184 ], [ 364355.215400002896786, 254790.7347999997437 ], [ 364355.316100001335144, 254778.914299998432398 ], [ 364356.145700000226498, 254776.176899999380112 ], [ 364358.615000002086163, 254770.286499999463558 ], [ 364362.696900002658367, 254764.409299999475479 ], [ 364367.581600002944469, 254758.960799999535084 ], [ 364374.879699997603893, 254754.165399998426437 ], [ 364378.117600001394749, 254752.714299999177456 ], [ 364400.030100002884865, 254736.217199999839067 ], [ 364401.757799997925758, 254722.721400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602028100", "MAP": "A9-530-T99", "PARCEL_NAM": "1-53", "ACRE": ".32", "LONGITUDE": -64.87124499, "LATITUDE": 18.32256078, "OBJECTID_1": 38449, "PARCEL_NO_": "107602028100", "Tax_Legal_": "FRYDENHOJ ESTATE 1-53 REDHOOK QTR", "Name": "SMITH (LIFE ESTATE), ETHELYN D", "Address": "PO Box 8492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46600, "Improved_V": 136100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.95490994799999, "SHAPE_Area": 1407.9592708499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365113.626299999654293, 254835.57209999859333 ], [ 365095.723800003528595, 254854.635099999606609 ], [ 365124.580200001597404, 254874.925200000405312 ], [ 365127.850400000810623, 254869.674600001424551 ], [ 365130.289200000464916, 254867.372499998658895 ], [ 365133.878100000321865, 254864.734299998730421 ], [ 365152.035300001502037, 254860.149300001561642 ], [ 365153.502556738094427, 254858.562319905293407 ], [ 365154.699857957311906, 254856.7629261330585 ], [ 365155.59696052322397, 254854.79657033024705 ], [ 365156.171204144193325, 254852.712921506434213 ], [ 365156.408083758549765, 254850.564611425157636 ], [ 365156.301615924516227, 254848.405905155785149 ], [ 365155.854489957797341, 254846.291330369451316 ], [ 365155.078000001609325, 254844.274300001561642 ], [ 365133.249899998307228, 254837.924199998378754 ], [ 365113.626299999654293, 254835.57209999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90006118, "LATITUDE": 18.32192362, "OBJECTID_1": 37386, "PARCEL_NO_": "107404030100", "Tax_Legal_": "BOLONGO 26C,26D,27E,26F & 26G FRENCHMAN BAY QTR", "Name": "BOLONGO BAY HOTEL CORP", "Address": "7150 ESTATE BOLONGO", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 231700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.573019316, "SHAPE_Area": 1055.7963456099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362107.784400001168251, 254705.635000001639128 ], [ 362105.351099997758865, 254707.303899999707937 ], [ 362101.288999997079372, 254710.859200000762939 ], [ 362093.965599998831749, 254718.609700001776218 ], [ 362086.586499996483326, 254732.9037000015378 ], [ 362084.909199997782707, 254740.48930000141263 ], [ 362077.506700001657009, 254757.527300000190735 ], [ 362076.669799998402596, 254761.109099999070168 ], [ 362072.580700002610683, 254767.830600000917912 ], [ 362067.676299996674061, 254775.600900001823902 ], [ 362066.036700002849102, 254778.753899998962879 ], [ 362058.671999998390675, 254791.359200000762939 ], [ 362052.964900001883507, 254798.700800001621246 ], [ 362032.582299999892712, 254824.920699998736382 ], [ 362035.764399997889996, 254830.013000000268221 ], [ 362039.018399998545647, 254826.662099998444319 ], [ 362058.585699997842312, 254801.49100000038743 ], [ 362061.850500002503395, 254796.873700000345707 ], [ 362073.286300003528595, 254779.657600000500679 ], [ 362076.576300002634525, 254772.085200000554323 ], [ 362082.297799997031689, 254763.054999999701977 ], [ 362083.94820000231266, 254758.635499998927116 ], [ 362090.5371999964118, 254742.435199998319149 ], [ 362095.481100000441074, 254730.021200001239777 ], [ 362097.136900000274181, 254724.968499999493361 ], [ 362101.211599998176098, 254719.935600001364946 ], [ 362106.099899999797344, 254714.065000001341105 ], [ 362136.924999997019768, 254692.574599999934435 ], [ 362132.123099997639656, 254688.313499998301268 ], [ 362126.4375, 254693.122099999338388 ], [ 362107.784400001168251, 254705.635000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050600", "MAP": "D9-1182-T73", "PARCEL_NAM": "48-1-B", "ACRE": ".27", "LONGITUDE": -64.86680711, "LATITUDE": 18.32213398, "OBJECTID_1": 39055, "PARCEL_NO_": "107604050600", "Tax_Legal_": "46-1A&B&48-1A&B FRYDNHOJ RED HOOK QTR", "Name": "POLICEMANS BENEV. ASSOC", "Address": "PO Box 302959", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 136800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.737298821, "SHAPE_Area": 1144.95018721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365582.938699997961521, 254790.513199999928474 ], [ 365574.624399997293949, 254823.008799999952316 ], [ 365612.037100002169609, 254826.774700000882149 ], [ 365616.307800002396107, 254798.734200000762939 ], [ 365614.713200002908707, 254796.610199999064207 ], [ 365611.502300001680851, 254794.895199999213219 ], [ 365597.805799998342991, 254793.516499999910593 ], [ 365582.938699997961521, 254790.513199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050600", "MAP": "D9-1182-T73", "PARCEL_NAM": "46-1-B", "ACRE": ".29", "LONGITUDE": -64.86712196000001, "LATITUDE": 18.32209052, "OBJECTID_1": 39055, "PARCEL_NO_": "107604050600", "Tax_Legal_": "46-1A&B&48-1A&B FRYDNHOJ RED HOOK QTR", "Name": "POLICEMANS BENEV. ASSOC", "Address": "PO Box 302959", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 136800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.430682246, "SHAPE_Area": 1121.6996909699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365568.027999997138977, 254786.728900000452995 ], [ 365555.168399997055531, 254781.768500000238419 ], [ 365541.936499997973442, 254820.501400001347065 ], [ 365570.947599999606609, 254822.638700000941753 ], [ 365574.624399997293949, 254823.008799999952316 ], [ 365582.938699997961521, 254790.513199999928474 ], [ 365579.291199997067451, 254789.776399999856949 ], [ 365568.027999997138977, 254786.728900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403038100", "MAP": "D9-4151-T87", "PARCEL_NAM": "61-35", "ACRE": ".57", "LONGITUDE": -64.89897884, "LATITUDE": 18.32189263, "OBJECTID_1": 37266, "PARCEL_NO_": "107403038100", "Tax_Legal_": "61-35 BOLONGO FRENCHMAN'S BAY QTR.", "Name": "GODDARD, DALIS & CONNIE", "Address": "PO Box 502383", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 66600, "Improved_V": 81500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.05800182799999, "SHAPE_Area": 2316.2668395800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362218.805600002408028, 254735.88569999858737 ], [ 362172.975299999117851, 254720.311900001019239 ], [ 362176.488899998366833, 254781.135600000619888 ], [ 362182.14750000089407, 254779.493099998682737 ], [ 362191.011600002646446, 254780.199000000953674 ], [ 362207.0929000005126, 254785.607900001108646 ], [ 362220.148500002920628, 254767.560699999332428 ], [ 362218.805600002408028, 254735.88569999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503032700", "MAP": null, "PARCEL_NAM": "61-66", "ACRE": null, "LONGITUDE": -64.89673497, "LATITUDE": 18.32192815, "OBJECTID_1": 37617, "PARCEL_NO_": "107503032700", "Tax_Legal_": "61-66 ESTATE BOLONGO FRENCHMAN'S BAY QTR.", "Name": "RILEY, AUGUSTUS", "Address": "PO BOX 302906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.71893740900001, "SHAPE_Area": 2148.01864544 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362459.012999996542931, 254746.506499998271465 ], [ 362443.961000002920628, 254714.930399999022484 ], [ 362440.685400001704693, 254720.8141999989748 ], [ 362438.194499999284744, 254729.237500000745058 ], [ 362434.0945999994874, 254737.225499998778105 ], [ 362425.102899998426437, 254751.506299998611212 ], [ 362419.401199996471405, 254758.214600000530481 ], [ 362407.240000002086163, 254765.925599999725819 ], [ 362376.46339999884367, 254781.71680000051856 ], [ 362455.503600001335144, 254779.830600000917912 ], [ 362459.012999996542931, 254746.506499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019900", "MAP": "F9-3934-T57", "PARCEL_NAM": "3-64", "ACRE": ".22", "LONGITUDE": -64.8806175, "LATITUDE": 18.32186271, "OBJECTID_1": 38575, "PARCEL_NO_": "107603019900", "Tax_Legal_": "POR.3 BOVONI/EASTERN PT. FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE RAMON", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 173700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.74632834499999, "SHAPE_Area": 1166.9429154500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364157.173600003123283, 254752.594700001180172 ], [ 364146.718500003218651, 254749.342700000852346 ], [ 364136.281400002539158, 254743.980000000447035 ], [ 364130.651600003242493, 254742.245099999010563 ], [ 364116.60980000346899, 254781.3935999982059 ], [ 364142.325499996542931, 254791.736600000411272 ], [ 364157.173600003123283, 254752.594700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85317657, "LATITUDE": 18.3218368, "OBJECTID_1": 39974, "PARCEL_NO_": "107704030500", "Tax_Legal_": "9A-20 ESTATE NAZARETH RED HOOK QUARTER", "Name": "Virgin Islands Montessori School", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.045777800699994, "SHAPE_Area": 287.82036572800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367028.153800003230572, 254811.133799999952316 ], [ 367048.552599996328354, 254783.014199998229742 ], [ 367039.738899998366833, 254776.398200001567602 ], [ 367035.746899999678135, 254771.721500001847744 ], [ 367028.153800003230572, 254811.133799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503032600", "MAP": null, "PARCEL_NAM": "61-62", "ACRE": null, "LONGITUDE": -64.89638012, "LATITUDE": 18.3215658, "OBJECTID_1": 37616, "PARCEL_NO_": "107503032600", "Tax_Legal_": "ESTATE BOLONGO 61-62 No.3 FRENCHMAN'S BAY QTR.", "Name": "DAVIS, ROOSEVELT", "Address": "PO Box 8919", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.63111704400001, "SHAPE_Area": 1804.2826723200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362499.445500001311302, 254733.116399999707937 ], [ 362479.636500000953674, 254692.002099998295307 ], [ 362466.701399996876717, 254695.907000001519918 ], [ 362460.220299996435642, 254699.442499998956919 ], [ 362448.033900000154972, 254710.108600001782179 ], [ 362445.593400001525879, 254712.621700000017881 ], [ 362443.961000002920628, 254714.930399999022484 ], [ 362459.012999996542931, 254746.506499998271465 ], [ 362480.848200000822544, 254739.085900001227856 ], [ 362499.445500001311302, 254733.116399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703014600", "MAP": "A9-28-T64", "PARCEL_NAM": "REM 41-5", "ACRE": "8.0 +/-", "LONGITUDE": -64.86419738, "LATITUDE": 18.32039049, "OBJECTID_1": 39636, "PARCEL_NO_": "107703014600", "Tax_Legal_": "FRYDENHOJ ESTATE 41-5 RED HOOK QTR", "Name": "CLARENBACH, MICHAEL & CAROL, TRUSTEES", "Address": "4770 Dream Catcher Ave", "City": "Las Vegas", "State": "Nevada", "Zip": 891295323, "Country": "United States", "Land_Value": 475700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 917.46212116499999, "SHAPE_Area": 32720.825689500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366060.265600003302097, 254556.021600000560284 ], [ 366060.310500003397465, 254550.744600001722574 ], [ 365937.108900003135204, 254551.183899998664856 ], [ 365926.702899999916553, 254551.221000000834465 ], [ 365736.946800000965595, 254551.897700000554323 ], [ 365734.259199999272823, 254556.041600000113249 ], [ 365738.120999999344349, 254564.264600001275539 ], [ 365746.923299998044968, 254583.00789999961853 ], [ 365786.126299999654293, 254666.484600000083447 ], [ 365809.819799996912479, 254716.936299998313189 ], [ 365807.544100001454353, 254740.459399998188019 ], [ 365807.065099999308586, 254745.411100000143051 ], [ 365801.358000002801418, 254752.752700001001358 ], [ 365812.2449000030756, 254749.760000001639128 ], [ 365813.038599997758865, 254746.58500000089407 ], [ 365814.62610000371933, 254737.059999998658895 ], [ 365817.80120000243187, 254727.138099998235703 ], [ 365822.166799999773502, 254720.391199998557568 ], [ 365827.326200000941753, 254716.025600001215935 ], [ 365837.197200000286102, 254710.616200000047684 ], [ 365892.0912000015378, 254703.466099999845028 ], [ 365910.674099996685982, 254699.185199998319149 ], [ 365936.562399998307228, 254689.264600001275539 ], [ 365947.094800002872944, 254683.440200001001358 ], [ 365955.220899999141693, 254676.118400000035763 ], [ 365962.5675999969244, 254665.6239 ], [ 365965.862999998033047, 254657.418200001120567 ], [ 365971.920800000429153, 254608.916299998760223 ], [ 365977.656700000166893, 254598.197399999946356 ], [ 365986.61599999666214, 254587.716099999845028 ], [ 365995.546599999070168, 254580.611999999731779 ], [ 366008.503300003707409, 254574.174199998378754 ], [ 366019.816899999976158, 254571.3114 ], [ 366051.28999999910593, 254568.40260000154376 ], [ 366056.961199998855591, 254565.282600000500679 ], [ 366060.226000003516674, 254560.665300000458956 ], [ 366060.265600003302097, 254556.021600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "107603040100", "MAP": "G3-157-T76", "PARCEL_NAM": "43", "ACRE": "5,938 sq ft", "LONGITUDE": -64.87777308, "LATITUDE": 18.32123225, "OBJECTID_1": 38713, "PARCEL_NO_": "107603040100", "Tax_Legal_": "PCL OF NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 219300, "Improved_V": 114700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.35087624800001, "SHAPE_Area": 465.20443498600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364413.958599999547005, 254713.554099999368191 ], [ 364426.7162000015378, 254704.865600001066923 ], [ 364430.283100001513958, 254713.42339999973774 ], [ 364435.978100001811981, 254710.033399999141693 ], [ 364439.789300002157688, 254707.200599998235703 ], [ 364451.147799998521805, 254699.060899998992682 ], [ 364456.81530000269413, 254694.90260000154376 ], [ 364449.008299998939037, 254683.943599998950958 ], [ 364446.328100003302097, 254686.280499998480082 ], [ 364433.950099997222424, 254695.132800001651049 ], [ 364411.484099999070168, 254711.199799999594688 ], [ 364413.958599999547005, 254713.554099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704036200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85329409000001, "LATITUDE": 18.32100116, "OBJECTID_1": 40021, "PARCEL_NO_": "107704036200", "Tax_Legal_": "9E-4 EST. NAZARETH REDHOOK QTR.", "Name": "Virgin Islands Montessori School", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 215600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.90627595300001, "SHAPE_Area": 841.15966517200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367051.217100001871586, 254659.546300001442432 ], [ 367041.555799998342991, 254657.778499998152256 ], [ 367015.354599997401237, 254704.42680000141263 ], [ 367003.076499998569489, 254725.857900001108646 ], [ 367008.616300001740456, 254738.146600000560284 ], [ 367029.914899997413158, 254699.057599999010563 ], [ 367051.217100001871586, 254659.546300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704036200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85352662, "LATITUDE": 18.32108158, "OBJECTID_1": 40021, "PARCEL_NO_": "107704036200", "Tax_Legal_": "9E-4 EST. NAZARETH REDHOOK QTR.", "Name": "Virgin Islands Montessori School", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 215600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.91928535300001, "SHAPE_Area": 447.306141975 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367003.076499998569489, 254725.857900001108646 ], [ 367015.354599997401237, 254704.42680000141263 ], [ 366984.8800999969244, 254684.756799999624491 ], [ 367003.076499998569489, 254725.857900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503019900", "MAP": "D9-2330-T83", "PARCEL_NAM": "61-14", "ACRE": ".639", "LONGITUDE": -64.89798099, "LATITUDE": 18.32091853, "OBJECTID_1": 37594, "PARCEL_NO_": "107503019900", "Tax_Legal_": "61-14 TO 61-21 EST.BOLONGO No.3 FRENCHMANS BAY QTR.", "Name": "ST. THOMAS NURSING HOME PRIME L", "Address": "419 Belle Air Ln", "City": "Warrenton", "State": "Virginia", "Zip": 20186, "Country": "United States", "Land_Value": 301200, "Improved_V": 4002900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.21538279699999, "SHAPE_Area": 3311.8969537100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362308.604099996387959, 254607.009199999272823 ], [ 362298.930100001394749, 254606.718899998813868 ], [ 362290.87780000269413, 254605.386500000953674 ], [ 362282.7787000015378, 254609.542100001126528 ], [ 362267.424599997699261, 254613.427200000733137 ], [ 362295.035899996757507, 254685.213899999856949 ], [ 362304.706299997866154, 254685.926300000399351 ], [ 362325.661399997770786, 254687.153299998492002 ], [ 362330.515500001609325, 254685.293200001120567 ], [ 362336.184799998998642, 254682.384199999272823 ], [ 362308.604099996387959, 254607.009199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": null, "PARCEL_NAM": "33", "ACRE": null, "LONGITUDE": -64.87830211000001, "LATITUDE": 18.32100376, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.202411973400004, "SHAPE_Area": 192.54392887899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364374.049300000071526, 254662.332899998873472 ], [ 364381.934399999678135, 254683.295699998736382 ], [ 364384.383199997246265, 254688.830899998545647 ], [ 364384.564599998295307, 254688.69370000064373 ], [ 364389.642899997532368, 254684.853500001132488 ], [ 364387.716899998486042, 254678.833399999886751 ], [ 364382.465999998152256, 254662.420400001108646 ], [ 364380.823873367975466, 254661.910077064327197 ], [ 364379.125119681702927, 254661.643158944119932 ], [ 364377.405616898962762, 254661.625282995431917 ], [ 364375.701681203616317, 254661.856826761242701 ], [ 364374.049300000071526, 254662.332899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704036200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85312668, "LATITUDE": 18.32061598, "OBJECTID_1": 40021, "PARCEL_NO_": "107704036200", "Tax_Legal_": "9E-4 EST. NAZARETH REDHOOK QTR.", "Name": "Virgin Islands Montessori School", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 215600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 341.73637306400002, "SHAPE_Area": 4914.2254247600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367097.909500002861023, 254668.583299998193979 ], [ 367103.925899997353554, 254624.936200000345707 ], [ 367049.922799997031689, 254622.172200001776218 ], [ 367041.044299997389317, 254623.155000001192093 ], [ 367028.112800002098083, 254626.637699998915195 ], [ 367020.011900000274181, 254631.004399999976158 ], [ 367011.88400000333786, 254638.537200000137091 ], [ 367006.976000003516674, 254646.729699999094009 ], [ 367004.535499997437, 254649.242899999022484 ], [ 367002.071599997580051, 254654.5 ], [ 366991.454700000584126, 254670.245200000703335 ], [ 366985.71339999884367, 254681.597199998795986 ], [ 366984.8800999969244, 254684.756799999624491 ], [ 367015.354599997401237, 254704.42680000141263 ], [ 367041.555799998342991, 254657.778499998152256 ], [ 367051.217100001871586, 254659.546300001442432 ], [ 367097.909500002861023, 254668.583299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": "A9-78-T67", "PARCEL_NAM": "PARK AREA", "ACRE": null, "LONGITUDE": -64.87930329, "LATITUDE": 18.32118754, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 371.99953734399998, "SHAPE_Area": 664.37992909699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364260.130900003015995, 254731.692200001329184 ], [ 364258.966700002551079, 254728.622999999672174 ], [ 364264.152500003576279, 254714.441300000995398 ], [ 364265.571900002658367, 254712.107500001788139 ], [ 364270.541000001132488, 254696.738400001078844 ], [ 364281.973300002515316, 254679.944499999284744 ], [ 364294.15429999679327, 254669.911699999123812 ], [ 364300.651500001549721, 254664.476399999111891 ], [ 364307.332599997520447, 254660.889499999582767 ], [ 364310.675899997353554, 254661.084800001233816 ], [ 364312.751599997282028, 254663.942200001329184 ], [ 364319.886100001633167, 254678.354899998754263 ], [ 364321.29619999974966, 254677.378499999642372 ], [ 364310.023500002920628, 254656.839400000870228 ], [ 364308.179899998009205, 254632.662900000810623 ], [ 364306.393799997866154, 254632.765099998563528 ], [ 364307.811499997973442, 254652.065400000661612 ], [ 364308.016199998557568, 254651.871100001037121 ], [ 364307.993500001728535, 254654.543299999088049 ], [ 364305.691100001335144, 254658.565000001341105 ], [ 364295.009099997580051, 254664.219099998474121 ], [ 364290.959600001573563, 254666.296900000423193 ], [ 364287.716399997472763, 254668.381299998611212 ], [ 364278.796599999070168, 254674.218899998813868 ], [ 364277.975900001823902, 254675.901000000536442 ], [ 364271.439099997282028, 254685.980000000447035 ], [ 364265.7246999964118, 254694.165800001472235 ], [ 364264.999200001358986, 254695.708700001239777 ], [ 364257.944200001657009, 254709.908100001513958 ], [ 364255.79169999808073, 254727.988000001758337 ], [ 364252.616700001060963, 254730.528000000864267 ], [ 364245.318400003015995, 254730.066599998623133 ], [ 364233.175499998033047, 254728.729899998754263 ], [ 364233.159400001168251, 254730.629599999636412 ], [ 364255.718099996447563, 254732.925200000405312 ], [ 364276.626500003039837, 254739.6402000002563 ], [ 364277.450800001621246, 254737.535999998450279 ], [ 364265.384900003671646, 254734.05970000103116 ], [ 364260.130900003015995, 254731.692200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": null, "PARCEL_NAM": "PARK AREA", "ACRE": null, "LONGITUDE": -64.87848299, "LATITUDE": 18.32063448, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.96809099799999, "SHAPE_Area": 389.635172404 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364373.399499997496605, 254643.962499998509884 ], [ 364365.535899996757507, 254620.466699998825788 ], [ 364361.533100001513958, 254617.056499999016523 ], [ 364358.313299998641014, 254616.396800000220537 ], [ 364354.272699996829033, 254617.419199999421835 ], [ 364352.656499996781349, 254617.828200001269579 ], [ 364348.655699998140335, 254619.819899998605251 ], [ 364350.486199997365475, 254624.932599999010563 ], [ 364355.034500002861023, 254623.435899998992682 ], [ 364356.608999997377396, 254627.148699998855591 ], [ 364361.344300001859665, 254639.219700001180172 ], [ 364367.661799997091293, 254654.892400000244379 ], [ 364370.089699998497963, 254653.856800001114607 ], [ 364371.725699998438358, 254651.125900000333786 ], [ 364372.548199996352196, 254649.232799999415874 ], [ 364373.399499997496605, 254643.962499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703027000", "MAP": "A9-359-T88", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85894364000001, "LATITUDE": 18.32034777, "OBJECTID_1": 39730, "PARCEL_NO_": "107703027000", "Tax_Legal_": "NAZARETH ESTATE 2U RED HOOK QUARTER", "Name": "FOUR POINT REALTY MANAGEMENT L", "Address": "5194 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1056800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 510.83029004000002, "SHAPE_Area": 12644.875220600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366385.988799996674061, 254561.853900000452995 ], [ 366376.122500002384186, 254584.149000000208616 ], [ 366372.004600003361702, 254594.247800000011921 ], [ 366350.643100000917912, 254640.724700000137091 ], [ 366348.177400000393391, 254646.192899998277426 ], [ 366341.595600001513958, 254661.548900000751019 ], [ 366493.205700002610683, 254660.045499999076128 ], [ 366499.67059999704361, 254658.409699998795986 ], [ 366506.961599998176098, 254654.458599999547005 ], [ 366513.467799998819828, 254647.9679000005126 ], [ 366516.757799997925758, 254640.395500000566244 ], [ 366517.643299996852875, 254631.114599999040365 ], [ 366515.276500001549721, 254624.973499998450279 ], [ 366512.88629999756813, 254621.576499998569489 ], [ 366502.490599997341633, 254611.358899999409914 ], [ 366491.336999997496605, 254595.435600001364946 ], [ 366480.930500000715256, 254586.484499998390675 ], [ 366474.51240000128746, 254582.63230000063777 ], [ 366460.052699998021126, 254576.181099999696016 ], [ 366454.417499996721745, 254575.079500000923872 ], [ 366435.049800001084805, 254576.820900000631809 ], [ 366421.362300001084805, 254574.386799998581409 ], [ 366415.746899999678135, 254570.963300000876188 ], [ 366410.948499999940395, 254566.280000001192093 ], [ 366405.370899997651577, 254558.423900000751019 ], [ 366400.669699996709824, 254542.342300001531839 ], [ 366399.9712999984622, 254529.671000000089407 ], [ 366385.988799996674061, 254561.853900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503019900", "MAP": "D9-2330-T83", "PARCEL_NAM": "61-16", "ACRE": null, "LONGITUDE": -64.89721785, "LATITUDE": 18.32042651, "OBJECTID_1": 37594, "PARCEL_NO_": "107503019900", "Tax_Legal_": "61-14 TO 61-21 EST.BOLONGO No.3 FRENCHMANS BAY QTR.", "Name": "ST. THOMAS NURSING HOME PRIME L", "Address": "419 Belle Air Ln", "City": "Warrenton", "State": "Virginia", "Zip": 20186, "Country": "United States", "Land_Value": 301200, "Improved_V": 4002900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.58577849900001, "SHAPE_Area": 2220.7797059499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362418.51070000231266, 254578.777800001204014 ], [ 362389.639899998903275, 254560.176399998366833 ], [ 362388.012900002300739, 254561.851799998432398 ], [ 362382.303999997675419, 254569.404500000178814 ], [ 362372.502300001680851, 254584.10080000013113 ], [ 362369.250100001692772, 254587.240600001066923 ], [ 362356.278999999165535, 254595.36710000038147 ], [ 362344.951099999248981, 254599.918400000780821 ], [ 362349.643299996852875, 254617.055399999022484 ], [ 362395.633699998259544, 254613.843199998140335 ], [ 362418.51070000231266, 254578.777800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503019900", "MAP": "D9-2330-T83", "PARCEL_NAM": "61-17", "ACRE": null, "LONGITUDE": -64.89671056, "LATITUDE": 18.32023811, "OBJECTID_1": 37594, "PARCEL_NO_": "107503019900", "Tax_Legal_": "61-14 TO 61-21 EST.BOLONGO No.3 FRENCHMANS BAY QTR.", "Name": "ST. THOMAS NURSING HOME PRIME L", "Address": "419 Belle Air Ln", "City": "Warrenton", "State": "Virginia", "Zip": 20186, "Country": "United States", "Land_Value": 301200, "Improved_V": 4002900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.24388742399998, "SHAPE_Area": 2857.9492022499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362401.023599997162819, 254549.081599999219179 ], [ 362396.147900000214577, 254553.474700000137091 ], [ 362389.639899998903275, 254560.176399998366833 ], [ 362418.51070000231266, 254578.777800001204014 ], [ 362478.658699996769428, 254617.478000000119209 ], [ 362486.77929999679327, 254610.789500001817942 ], [ 362428.560500003397465, 254534.952599998563528 ], [ 362422.093800000846386, 254536.799499999731779 ], [ 362418.859600000083447, 254537.828499998897314 ], [ 362409.142399996519089, 254542.604200001806021 ], [ 362407.52080000191927, 254543.64640000090003 ], [ 362401.023599997162819, 254549.081599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503019900", "MAP": "D9-2330-T83", "PARCEL_NAM": "61-18", "ACRE": null, "LONGITUDE": -64.89641879, "LATITUDE": 18.32016543, "OBJECTID_1": 37594, "PARCEL_NO_": "107503019900", "Tax_Legal_": "61-14 TO 61-21 EST.BOLONGO No.3 FRENCHMANS BAY QTR.", "Name": "ST. THOMAS NURSING HOME PRIME L", "Address": "419 Belle Air Ln", "City": "Warrenton", "State": "Virginia", "Zip": 20186, "Country": "United States", "Land_Value": 301200, "Improved_V": 4002900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.46951466799999, "SHAPE_Area": 2235.5039204300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362486.77929999679327, 254610.789500001817942 ], [ 362490.843299999833107, 254607.02309999987483 ], [ 362498.166599996387959, 254599.272599998861551 ], [ 362476.089800000190735, 254540.407900001853704 ], [ 362460.814800001680851, 254535.005499999970198 ], [ 362450.347099997103214, 254533.231100000441074 ], [ 362439.866800002753735, 254532.934200000017881 ], [ 362432.599200002849102, 254534.14130000025034 ], [ 362428.560500003397465, 254534.952599998563528 ], [ 362486.77929999679327, 254610.789500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404030800", "MAP": null, "PARCEL_NAM": "27-L", "ACRE": null, "LONGITUDE": -64.89802417, "LATITUDE": 18.32039574, "OBJECTID_1": 37393, "PARCEL_NO_": "107404030800", "Tax_Legal_": "EST. BOLONGO (ROADWAY) 27-L FRENCHMAN BAY QTR", "Name": "BOLONGO BAY HOTEL CORP", "Address": "7150 Estate Bolongo Bay Hotel Corp", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 498.60441006500002, "SHAPE_Area": 1877.55667885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362389.639899998903275, 254560.176399998366833 ], [ 362396.147900000214577, 254553.474700000137091 ], [ 362401.023599997162819, 254549.081599999219179 ], [ 362396.237800002098083, 254542.920699998736382 ], [ 362390.554099999368191, 254547.518300000578165 ], [ 362381.603699997067451, 254556.944200001657009 ], [ 362374.258799999952316, 254567.227699998766184 ], [ 362368.528300002217293, 254577.313299998641014 ], [ 362362.835600003600121, 254582.9662000015378 ], [ 362358.780599996447563, 254585.677200000733137 ], [ 362341.788699999451637, 254592.504299998283386 ], [ 362336.126599997282028, 254594.568900000303984 ], [ 362320.770700000226498, 254598.66499999910593 ], [ 362303.832699999213219, 254599.159699998795986 ], [ 362249.089800000190735, 254588.579199999570847 ], [ 362247.479000002145767, 254588.354899998754263 ], [ 362237.01129999756813, 254586.58049999922514 ], [ 362231.372500002384186, 254585.901000000536442 ], [ 362224.121100001037121, 254585.208399999886751 ], [ 362212.821900002658367, 254586.382500000298023 ], [ 362203.124600000679493, 254588.836199998855591 ], [ 362184.536200001835823, 254593.750300001353025 ], [ 362179.687600001692772, 254594.977200001478195 ], [ 362183.663400001823902, 254601.553700000047684 ], [ 362213.56530000269413, 254593.776799999177456 ], [ 362228.087899997830391, 254592.840199999511242 ], [ 362238.559199996292591, 254594.192499998956919 ], [ 362276.38570000231266, 254602.734700001776218 ], [ 362290.87780000269413, 254605.386500000953674 ], [ 362298.930100001394749, 254606.718899998813868 ], [ 362308.604099996387959, 254607.009199999272823 ], [ 362321.513999998569489, 254606.059399999678135 ], [ 362344.951099999248981, 254599.918400000780821 ], [ 362356.278999999165535, 254595.36710000038147 ], [ 362369.250100001692772, 254587.240600001066923 ], [ 362372.502300001680851, 254584.10080000013113 ], [ 362382.303999997675419, 254569.404500000178814 ], [ 362388.012900002300739, 254561.851799998432398 ], [ 362389.639899998903275, 254560.176399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503019900", "MAP": "D9-2330-T83", "PARCEL_NAM": "61-19", "ACRE": null, "LONGITUDE": -64.89611597, "LATITUDE": 18.3201564, "OBJECTID_1": 37594, "PARCEL_NO_": "107503019900", "Tax_Legal_": "61-14 TO 61-21 EST.BOLONGO No.3 FRENCHMANS BAY QTR.", "Name": "ST. THOMAS NURSING HOME PRIME L", "Address": "419 Belle Air Ln", "City": "Warrenton", "State": "Virginia", "Zip": 20186, "Country": "United States", "Land_Value": 301200, "Improved_V": 4002900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.55239035700001, "SHAPE_Area": 1377.14725288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362498.166599996387959, 254599.272599998861551 ], [ 362504.679999999701977, 254591.937600001692772 ], [ 362513.686099998652935, 254575.968199998140335 ], [ 362518.67509999871254, 254558.277199998497963 ], [ 362520.323700003325939, 254554.068799998611212 ], [ 362518.770400002598763, 254547.089999999850988 ], [ 362515.555900000035763, 254545.797100000083447 ], [ 362499.433300003409386, 254545.243000000715256 ], [ 362488.961999997496605, 254543.890700001269579 ], [ 362476.089800000190735, 254540.407900001853704 ], [ 362498.166599996387959, 254599.272599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90796574, "LATITUDE": 18.3199971, "OBJECTID_1": 37216, "PARCEL_NO_": "107403026800", "Tax_Legal_": "15-73-1 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "CUFFY, ISMAY", "Address": "PO Box 302101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.871373366399993, "SHAPE_Area": 134.12268547900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361225.391199998557568, 254542.837099999189377 ], [ 361252.843599997460842, 254538.628800000995398 ], [ 361264.230899997055531, 254527.111900001764297 ], [ 361225.391199998557568, 254542.837099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603037800", "MAP": "C9-161-T73", "PARCEL_NAM": "33E", "ACRE": "0.05", "LONGITUDE": -64.87962418, "LATITUDE": 18.31974523, "OBJECTID_1": 38700, "PARCEL_NO_": "107603037800", "Tax_Legal_": "EST NADIR 33E RED HOOK QTR", "Name": "Eduardo Carmona, Angela Carmona & Shanice Xavier", "Address": "7012 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022533, "Country": "United States", "Land_Value": 6000, "Improved_V": 73600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.605216056700002, "SHAPE_Area": 178.804406589 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364251.206900000572205, 254527.779399998486042 ], [ 364237.927799999713898, 254525.681000001728535 ], [ 364236.504100002348423, 254538.891199998557568 ], [ 364248.568199999630451, 254541.961899999529123 ], [ 364251.206900000572205, 254527.779399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033300", "MAP": "G9-1577-T70", "PARCEL_NAM": "2-P", "ACRE": "0.15", "LONGITUDE": -64.87075863, "LATITUDE": 18.31939079, "OBJECTID_1": 38977, "PARCEL_NO_": "107604033300", "Tax_Legal_": "2P&2S FRYDENHOJ No.3 RED HOOK QTR", "Name": "FLEMING, ELVIN DON", "Address": "PO Box 1672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38900, "Improved_V": 155400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.980059388, "SHAPE_Area": 1038.39116171 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365195.435699999332428, 254508.624499998986721 ], [ 365194.690600000321865, 254501.441199999302626 ], [ 365182.822400003671646, 254474.746300000697374 ], [ 365177.946800000965595, 254479.139299999922514 ], [ 365166.552299998700619, 254491.500599998980761 ], [ 365165.728000000119209, 254493.604800000786781 ], [ 365162.472199998795986, 254497.166700001806021 ], [ 365159.820000000298023, 254501.897100001573563 ], [ 365165.173500001430511, 254506.375999998301268 ], [ 365190.449000000953674, 254527.522300001233816 ], [ 365193.782799996435642, 254525.617300000041723 ], [ 365197.592799998819828, 254524.347300000488758 ], [ 365195.435699999332428, 254508.624499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404029900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90378348, "LATITUDE": 18.31875389, "OBJECTID_1": 37385, "PARCEL_NO_": "107404029900", "Tax_Legal_": "FRENCHMAN'S BAY ROADS 21A THRU Y FRENCHMANS BAY QTRS", "Name": "GREN CAY PROPERTY OWNERS ASSOC", "Address": "PO Box 305673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 384600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 542.61372146400004, "SHAPE_Area": 1999.1670678 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361735.91499999910593, 254342.676899999380112 ], [ 361750.491599999368191, 254335.407999999821186 ], [ 361754.542900003492832, 254333.119100000709295 ], [ 361756.166400000452995, 254331.865800000727177 ], [ 361759.420400001108646, 254328.515000000596046 ], [ 361759.468900002539158, 254322.815799999982119 ], [ 361749.785999998450279, 254323.581000000238419 ], [ 361748.139200001955032, 254327.578299999237061 ], [ 361744.084299996495247, 254330.289299998432398 ], [ 361712.508599996566772, 254345.229600001126528 ], [ 361681.723099999129772, 254362.076200000941753 ], [ 361667.121299996972084, 254372.300299998372793 ], [ 361659.790799997746944, 254380.895100001245737 ], [ 361648.390900000929832, 254393.889600001275539 ], [ 361646.753100000321865, 254396.831500001251698 ], [ 361645.120700001716614, 254399.1402000002563 ], [ 361644.283900000154972, 254402.721900001168251 ], [ 361644.260499998927116, 254405.465999998152256 ], [ 361645.016400001943111, 254411.382800001651049 ], [ 361645.793999999761581, 254414.766600001603365 ], [ 361648.157200001180172, 254421.329900000244379 ], [ 361657.7195999994874, 254434.706999998539686 ], [ 361672.0641999989748, 254454.667199999094009 ], [ 361676.860799998044968, 254459.561599999666214 ], [ 361684.853699997067451, 254467.859700001776218 ], [ 361699.277500003576279, 254478.532400000840425 ], [ 361704.050599999725819, 254486.170899998396635 ], [ 361704.842500001192093, 254487.866099998354912 ], [ 361705.614699997007847, 254491.883200000971556 ], [ 361703.930100001394749, 254500.313099998980761 ], [ 361720.293700002133846, 254472.582699999213219 ], [ 361713.819899998605251, 254475.274000000208616 ], [ 361708.99099999666214, 254474.179000001400709 ], [ 361706.581000000238419, 254473.103799998760223 ], [ 361697.75110000371933, 254468.38740000128746 ], [ 361690.546499997377396, 254462.206799998879433 ], [ 361684.947300001978874, 254456.883600000292063 ], [ 361677.7533999979496, 254449.4364 ], [ 361675.359600000083447, 254446.461500000208616 ], [ 361660.223099999129772, 254424.806099999696016 ], [ 361653.848099999129772, 254415.888000000268221 ], [ 361652.305600002408028, 254407.642700001597404 ], [ 361652.357799999415874, 254401.521499998867512 ], [ 361654.816299997270107, 254396.89750000089407 ], [ 361667.843099996447563, 254382.227600000798702 ], [ 361678.402500003576279, 254373.236999999731779 ], [ 361707.571800000965595, 254356.799300000071526 ], [ 361735.91499999910593, 254342.676899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404029900", "MAP": "D9-4825-T89", "PARCEL_NAM": "21-A", "ACRE": "1.05", "LONGITUDE": -64.90281251, "LATITUDE": 18.31877337, "OBJECTID_1": 37385, "PARCEL_NO_": "107404029900", "Tax_Legal_": "FRENCHMAN'S BAY ROADS 21A THRU Y FRENCHMANS BAY QTRS", "Name": "GREN CAY PROPERTY OWNERS ASSOC", "Address": "PO Box 305673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 384600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 796.99420052899995, "SHAPE_Area": 3749.3322970300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361787.735500000417233, 254412.339800000190735 ], [ 361798.280500002205372, 254405.037799999117851 ], [ 361820.00959999859333, 254410.070799998939037 ], [ 361825.704199999570847, 254404.206799998879433 ], [ 361816.103900000452995, 254395.262299999594688 ], [ 361822.586800001561642, 254391.515599999576807 ], [ 361829.087700001895428, 254385.65819999948144 ], [ 361833.988499999046326, 254378.310100000351667 ], [ 361849.475599996745586, 254358.805100001394749 ], [ 361872.262800000607967, 254334.293699998408556 ], [ 361874.665500000119209, 254336.213199999183416 ], [ 361877.113200001418591, 254332.855700001120567 ], [ 361874.705099999904633, 254331.569400001317263 ], [ 361892.602200001478195, 254313.139699999243021 ], [ 361895.07150000333786, 254307.249299999326468 ], [ 361896.754199996590614, 254299.0304000005126 ], [ 361895.98030000180006, 254295.224399998784065 ], [ 361895.197400003671646, 254292.473799999803305 ], [ 361894.42339999973774, 254288.667700000107288 ], [ 361885.64750000089407, 254277.619100000709295 ], [ 361884.86089999973774, 254275.290600001811981 ], [ 361880.076999999582767, 254268.918600000441074 ], [ 361879.301299996674061, 254265.323699999600649 ], [ 361878.556100003421307, 254258.140399999916553 ], [ 361885.114500001072884, 254245.528499998152256 ], [ 361873.826099999248981, 254245.436099998652935 ], [ 361862.553900003433228, 254243.443999998271465 ], [ 361865.755800001323223, 254246.214400000870228 ], [ 361867.341499999165535, 254249.393800001591444 ], [ 361868.127999998629093, 254251.722300000488758 ], [ 361871.220200002193451, 254267.368500001728535 ], [ 361872.001299999654293, 254270.330200001597404 ], [ 361873.601300001144409, 254271.820900000631809 ], [ 361878.365500003099442, 254280.514800000935793 ], [ 361887.940499998629093, 254292.41440000012517 ], [ 361888.694700002670288, 254298.542300000786781 ], [ 361888.671300001442432, 254301.286299999803305 ], [ 361887.820100001990795, 254306.556699998676777 ], [ 361884.557099997997284, 254310.962900001555681 ], [ 361869.913999997079372, 254326.041799999773502 ], [ 361847.945699997246265, 254349.082299999892712 ], [ 361845.5033999979496, 254351.806499999016523 ], [ 361828.380199998617172, 254374.042300000786781 ], [ 361825.932499997317791, 254377.39979999884963 ], [ 361822.676700003445148, 254380.96169999986887 ], [ 361821.051500000059605, 254382.426100000739098 ], [ 361813.749700002372265, 254387.6435999982059 ], [ 361795.112800002098083, 254398.256900001317263 ], [ 361791.05969999730587, 254400.756799999624491 ], [ 361777.267899997532368, 254410.56529999896884 ], [ 361765.094099998474121, 254419.753800000995398 ], [ 361748.037399999797344, 254434.179699998348951 ], [ 361741.522200003266335, 254441.725699998438358 ], [ 361730.924999997019768, 254455.149000000208616 ], [ 361723.560300000011921, 254467.754299998283386 ], [ 361720.293700002133846, 254472.582699999213219 ], [ 361703.930100001394749, 254500.313099998980761 ], [ 361701.458999998867512, 254506.414599999785423 ], [ 361699.018500000238419, 254508.927799999713898 ], [ 361718.242299996316433, 254524.072799999266863 ], [ 361729.552299998700619, 254521.632199998944998 ], [ 361732.782899998128414, 254521.025400001555681 ], [ 361730.792000003159046, 254470.768800001591444 ], [ 361737.339599996805191, 254459.423300001770258 ], [ 361738.972000002861023, 254457.114700000733137 ], [ 361744.679099999368191, 254449.77309999987483 ], [ 361752.007799997925758, 254441.389299999922514 ], [ 361754.446599997580051, 254439.08729999884963 ], [ 361767.44650000333786, 254427.583500001579523 ], [ 361773.941899999976158, 254422.359400000423193 ], [ 361787.735500000417233, 254412.339800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703027900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86015198, "LATITUDE": 18.3192685, "OBJECTID_1": 39733, "PARCEL_NO_": "107703027900", "Tax_Legal_": "NAZARETH ESTATE REM. 2W-30-1,2W-5-5-2,2W-76-1A&2 RED HOOK QUARTER", "Name": "BAILEY, KELVIN S", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.064171467999998, "SHAPE_Area": 173.69546896200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366316.436599999666214, 254491.20160000026226 ], [ 366280.051899999380112, 254502.725000001490116 ], [ 366284.070900000631809, 254504.235500000417233 ], [ 366317.989900000393391, 254498.180399999022484 ], [ 366316.436599999666214, 254491.20160000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703027900", "MAP": null, "PARCEL_NAM": "2W-5-2", "ACRE": null, "LONGITUDE": -64.86070686, "LATITUDE": 18.31915618, "OBJECTID_1": 39733, "PARCEL_NO_": "107703027900", "Tax_Legal_": "NAZARETH ESTATE REM. 2W-30-1,2W-5-5-2,2W-76-1A&2 RED HOOK QUARTER", "Name": "BAILEY, KELVIN S", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.594925287799995, "SHAPE_Area": 239.56718024700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366227.058200001716614, 254476.115699999034405 ], [ 366224.587099999189377, 254482.217199999839067 ], [ 366227.00789999961853, 254482.02589999884367 ], [ 366263.977799996733665, 254496.471700001507998 ], [ 366259.208200000226498, 254488.411100000143051 ], [ 366247.163900002837181, 254482.401900000870228 ], [ 366227.058200001716614, 254476.115699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84554527, "LATITUDE": 18.31871004, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.96227720499999, "SHAPE_Area": 673.34138585999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367826.662799999117851, 254408.569899998605251 ], [ 367816.94030000269413, 254413.978799998760223 ], [ 367847.191699996590614, 254459.822599999606609 ], [ 367855.976700000464916, 254469.815900001674891 ], [ 367867.180500000715256, 254479.828999999910593 ], [ 367876.813100002706051, 254484.97410000115633 ], [ 367881.641999997198582, 254486.069099999964237 ], [ 367882.464500002563, 254484.175999999046326 ], [ 367861.674800001084805, 254463.529699999839067 ], [ 367856.869300000369549, 254459.690699998289347 ], [ 367844.092399999499321, 254445.020700000226498 ], [ 367830.575599998235703, 254422.534099999815226 ], [ 367826.662799999117851, 254408.569899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85214767, "LATITUDE": 18.31809693, "OBJECTID_1": 39797, "PARCEL_NO_": "107704014100", "Tax_Legal_": "2H-24 NAZARETH RED HOOK QTR", "Name": "SECRET HARBOUR BEACH RESORT AS", "Address": "6280 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41400, "Improved_V": 1800400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.33372282900001, "SHAPE_Area": 847.88923165300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367159.295000001788139, 254372.710400000214577 ], [ 367177.249600000679493, 254347.526099998503923 ], [ 367157.941299997270107, 254342.30180000141263 ], [ 367156.29450000077486, 254346.299100000411272 ], [ 367155.387500002980232, 254358.112900000065565 ], [ 367152.07769999653101, 254368.007199998944998 ], [ 367147.189499996602535, 254373.877900000661612 ], [ 367143.948100000619888, 254375.751200001686811 ], [ 367140.676100000739098, 254381.212799999862909 ], [ 367138.980700001120567, 254390.909200001507998 ], [ 367123.506099998950958, 254408.936599999666214 ], [ 367117.824199996888638, 254413.323100000619888 ], [ 367115.362099997699261, 254418.369199998676777 ], [ 367111.30179999768734, 254421.713500000536442 ], [ 367112.8783999979496, 254425.94819999858737 ], [ 367142.970899999141693, 254395.797100000083447 ], [ 367159.295000001788139, 254372.710400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404029900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90251984, "LATITUDE": 18.31816632, "OBJECTID_1": 37385, "PARCEL_NO_": "107404029900", "Tax_Legal_": "FRENCHMAN'S BAY ROADS 21A THRU Y FRENCHMANS BAY QTRS", "Name": "GREN CAY PROPERTY OWNERS ASSOC", "Address": "PO Box 305673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 384600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.12246899900001, "SHAPE_Area": 570.79103251699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361806.353699997067451, 254309.267400000244379 ], [ 361807.934000000357628, 254313.079999998211861 ], [ 361828.547499999403954, 254354.412000000476837 ], [ 361830.11150000244379, 254360.124299999326468 ], [ 361828.380199998617172, 254374.042300000786781 ], [ 361845.5033999979496, 254351.806499999016523 ], [ 361837.445699997246265, 254351.107299998402596 ], [ 361834.238399997353554, 254348.970100000500679 ], [ 361815.2195999994874, 254309.762099999934435 ], [ 361812.042900003492832, 254304.03660000115633 ], [ 361806.353699997067451, 254309.267400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85910569000001, "LATITUDE": 18.31818228, "OBJECTID_1": 39730, "PARCEL_NO_": "107703027000", "Tax_Legal_": "NAZARETH ESTATE 2U RED HOOK QUARTER", "Name": "FOUR POINT REALTY MANAGEMENT L", "Address": "5194 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1056800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.725073194, "SHAPE_Area": 951.45702051900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366432.873999997973442, 254358.954500000923872 ], [ 366417.559399999678135, 254358.195900000631809 ], [ 366411.090999998152256, 254360.253899998962879 ], [ 366407.802799999713898, 254367.615200001746416 ], [ 366405.360500000417233, 254370.339499998837709 ], [ 366402.079499997198582, 254376.856499999761581 ], [ 366399.604800000786781, 254383.380199998617172 ], [ 366397.095899999141693, 254393.914299998432398 ], [ 366397.828500002622604, 254402.575100000947714 ], [ 366422.097000002861023, 254393.485599998384714 ], [ 366432.873999997973442, 254358.954500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84584226, "LATITUDE": 18.31784884, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.938299691, "SHAPE_Area": 1308.2162714900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367826.662799999117851, 254408.569899998605251 ], [ 367825.395400002598763, 254368.029599998146296 ], [ 367822.39130000025034, 254342.040500000119209 ], [ 367817.790799997746944, 254314.1385000012815 ], [ 367810.798299998044968, 254283.050500001758337 ], [ 367808.424300000071526, 254277.753699999302626 ], [ 367804.443099997937679, 254271.810499999672174 ], [ 367800.445699997246265, 254267.767000000923872 ], [ 367796.396200001239777, 254269.844799999147654 ], [ 367798.793600000441074, 254272.397599998861551 ], [ 367803.555900000035763, 254281.302499998360872 ], [ 367806.70380000025034, 254290.405299998819828 ], [ 367815.944399997591972, 254341.565600000321865 ], [ 367814.925899997353554, 254366.466299999505281 ], [ 367809.893799997866154, 254389.223200000822544 ], [ 367810.622800000011921, 254398.306200001388788 ], [ 367812.957299999892712, 254408.246700000017881 ], [ 367816.94030000269413, 254413.978799998760223 ], [ 367826.662799999117851, 254408.569899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704014100", "MAP": "D9-625-T66", "PARCEL_NAM": "2H-24-1", "ACRE": ".67", "LONGITUDE": -64.8517754, "LATITUDE": 18.31807432, "OBJECTID_1": 39797, "PARCEL_NO_": "107704014100", "Tax_Legal_": "2H-24 NAZARETH RED HOOK QTR", "Name": "SECRET HARBOUR BEACH RESORT AS", "Address": "6280 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41400, "Improved_V": 1800400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.18727121000001, "SHAPE_Area": 1902.49439224 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367218.281700000166893, 254358.416600000113249 ], [ 367177.249600000679493, 254347.526099998503923 ], [ 367159.295000001788139, 254372.710400000214577 ], [ 367175.370899997651577, 254378.752599999308586 ], [ 367171.21339999884367, 254393.495099999010563 ], [ 367194.495800003409386, 254405.506900001317263 ], [ 367199.391199998557568, 254398.791999999433756 ], [ 367205.947800002992153, 254386.391100000590086 ], [ 367207.590999998152256, 254382.815999999642372 ], [ 367208.431500002741814, 254378.812100000679493 ], [ 367215.01690000295639, 254363.033900000154972 ], [ 367218.281700000166893, 254358.416600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": "B9-339-T71", "PARCEL_NAM": "8-1-9", "ACRE": ".63", "LONGITUDE": -64.84468037000001, "LATITUDE": 18.31792059, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.14087738500001, "SHAPE_Area": 1839.9444031400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367966.683499999344349, 254347.654399998486042 ], [ 367957.864399999380112, 254341.671599999070168 ], [ 367955.468800000846386, 254338.907800000160933 ], [ 367945.073100000619888, 254328.690200001001358 ], [ 367915.756300002336502, 254362.4364 ], [ 367930.711199998855591, 254405.410700000822544 ], [ 367938.882299996912479, 254392.811999998986721 ], [ 367966.683499999344349, 254347.654399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107403016800", "MAP": "D9-6322-T97", "PARCEL_NAM": "100-A", "ACRE": null, "LONGITUDE": -64.91436366000001, "LATITUDE": 18.31810698, "OBJECTID_1": 33374, "PARCEL_NO_": "107403016800", "Tax_Legal_": "FRENCHMANS BAY 100A, 100B & 100C #4 FRENCHMANS BAY QTR", "Name": "CLUB WYNDHAM ACCESS", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 0, "Improved_V": 3928900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.995821228099999, "SHAPE_Area": 279.99183168299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360572.607500001788139, 254309.513300001621246 ], [ 360561.207699999213219, 254322.507800001651049 ], [ 360573.210699997842312, 254333.371899999678135 ], [ 360584.614100001752377, 254319.955200001597404 ], [ 360572.607500001788139, 254309.513300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404029900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90371269000001, "LATITUDE": 18.31726672, "OBJECTID_1": 37385, "PARCEL_NO_": "107404029900", "Tax_Legal_": "FRENCHMAN'S BAY ROADS 21A THRU Y FRENCHMANS BAY QTRS", "Name": "GREN CAY PROPERTY OWNERS ASSOC", "Address": "PO Box 305673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 384600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 449.97849125699997, "SHAPE_Area": 1659.44128811 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361669.484899997711182, 254189.512600000947714 ], [ 361667.787699997425079, 254199.420099999755621 ], [ 361668.489799998700619, 254211.669300001114607 ], [ 361670.781000003218651, 254226.675700001418591 ], [ 361677.908399999141693, 254241.932700000703335 ], [ 361689.081699997186661, 254255.534200001507998 ], [ 361723.540899999439716, 254280.725299999117851 ], [ 361728.333800002932549, 254286.041799999773502 ], [ 361749.040799997746944, 254316.397700000554323 ], [ 361749.834499999880791, 254317.881799999624491 ], [ 361749.785999998450279, 254323.581000000238419 ], [ 361759.468900002539158, 254322.815799999982119 ], [ 361758.709399998188019, 254317.321199998259544 ], [ 361737.217699997127056, 254284.425799999386072 ], [ 361730.029200002551079, 254276.345400001853704 ], [ 361699.578100003302097, 254253.93129999935627 ], [ 361695.575300000607967, 254250.521099999547005 ], [ 361689.977899998426437, 254244.986800000071526 ], [ 361687.582299999892712, 254242.223000001162291 ], [ 361683.599299997091293, 254236.490899998694658 ], [ 361682.008299998939037, 254233.944699998944998 ], [ 361681.216300003230572, 254232.249499998986721 ], [ 361679.632500000298023, 254228.859099999070168 ], [ 361676.524099998176098, 254215.112500000745058 ], [ 361675.868900001049042, 254197.375300001353025 ], [ 361677.575000002980232, 254186.412399999797344 ], [ 361678.586300000548363, 254162.355999998748302 ], [ 361678.622299998998642, 254158.134399998933077 ], [ 361677.8699000030756, 254151.795499999076128 ], [ 361675.558799996972084, 254139.111000001430511 ], [ 361667.486699998378754, 254140.100400000810623 ], [ 361669.824699997901917, 254149.618700001388788 ], [ 361671.325900003314018, 254162.718800000846386 ], [ 361670.357699997723103, 254181.709300000220537 ], [ 361669.484899997711182, 254189.512600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803044000", "MAP": "G9-3089-T84", "PARCEL_NAM": "8-3-E", "ACRE": null, "LONGITUDE": -64.84232458, "LATITUDE": 18.31769583, "OBJECTID_1": 41790, "PARCEL_NO_": "107803044000", "Tax_Legal_": "8-3-E ESTATE NAZARETH No.1 RED HOOK QUARTER", "Name": "KRIER, JOHN B", "Address": "4346 NORRE GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.722045417999993, "SHAPE_Area": 278.80007567799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368186.673699997365475, 254365.075899999588728 ], [ 368196.622800000011921, 254333.071100000292063 ], [ 368182.190099999308586, 254323.453699998557568 ], [ 368186.673699997365475, 254365.075899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": null, "PARCEL_NAM": "8-1-4", "ACRE": null, "LONGITUDE": -64.84490811000001, "LATITUDE": 18.31743719, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.10123331900002, "SHAPE_Area": 1999.5943992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367912.536499999463558, 254361.776700001209974 ], [ 367942.675700001418591, 254326.137499999254942 ], [ 367941.079300001263618, 254324.224599998444319 ], [ 367936.30969999730587, 254316.164000000804663 ], [ 367903.684299997985363, 254265.023400001227856 ], [ 367889.316299997270107, 254247.807199999690056 ], [ 367884.557599999010563, 254238.480200000107288 ], [ 367882.131399996578693, 254239.304699998348951 ], [ 367903.482900001108646, 254288.664200000464916 ], [ 367912.536499999463558, 254361.776700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021600", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-1", "ACRE": "0.21", "LONGITUDE": -64.88696571, "LATITUDE": 18.31747016, "OBJECTID_1": 37749, "PARCEL_NO_": "107504021600", "Tax_Legal_": "REM 5A,5A-1,5A-95THRU 97 BOVONI", "Name": "V. I. BAPTIST MISSION", "Address": "PO Box 2087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 167700, "Improved_V": 1015300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.148072677, "SHAPE_Area": 956.95384378799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363484.0050999969244, 254261.780999999493361 ], [ 363461.482299998402596, 254255.263900000602007 ], [ 363449.945799998939037, 254284.300400000065565 ], [ 363479.230099998414516, 254295.499899998307228 ], [ 363479.79730000346899, 254294.093299999833107 ], [ 363486.024700000882149, 254274.569499999284744 ], [ 363486.193000003695488, 254269.520300000905991 ], [ 363484.0050999969244, 254261.780999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803043900", "MAP": null, "PARCEL_NAM": "7-12", "ACRE": null, "LONGITUDE": -64.84224073, "LATITUDE": 18.3174218, "OBJECTID_1": 41789, "PARCEL_NO_": "107803043900", "Tax_Legal_": "7-12 ESTATE NAZARETH #1 RED HOOK QTR", "Name": "EVANS, JR. JAMES A. & WILLIAM H", "Address": "2270 Interlaken Ln", "City": "Eustis", "State": "Florida", "Zip": 32726, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.19218377799999, "SHAPE_Area": 507.81420017400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368182.190099999308586, 254323.453699998557568 ], [ 368196.622800000011921, 254333.071100000292063 ], [ 368214.057099997997284, 254274.31870000064373 ], [ 368182.190099999308586, 254323.453699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107803040700", "MAP": "B9-339-T71", "PARCEL_NAM": "8-1-3", "ACRE": ".17", "LONGITUDE": -64.84473827, "LATITUDE": 18.3173625, "OBJECTID_1": 40448, "PARCEL_NO_": "107803040700", "Tax_Legal_": "ESTATE NAZARETH 8-1 RED HOOK QTR", "Name": "WYNDHAM ST. THOMAS INC", "Address": "PO Box 7480", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010480, "Country": "United States", "Land_Value": 383500, "Improved_V": 2053300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.627540431, "SHAPE_Area": 588.40813139199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367941.079300001263618, 254324.224599998444319 ], [ 367956.496299996972084, 254312.951699998229742 ], [ 367946.071800000965595, 254306.111400000751019 ], [ 367903.684299997985363, 254265.023400001227856 ], [ 367936.30969999730587, 254316.164000000804663 ], [ 367941.079300001263618, 254324.224599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404029900", "MAP": "D9-4826-T89", "PARCEL_NAM": "21-B", "ACRE": null, "LONGITUDE": -64.90193382, "LATITUDE": 18.31717916, "OBJECTID_1": 37385, "PARCEL_NO_": "107404029900", "Tax_Legal_": "FRENCHMAN'S BAY ROADS 21A THRU Y FRENCHMANS BAY QTRS", "Name": "GREN CAY PROPERTY OWNERS ASSOC", "Address": "PO Box 305673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 384600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.59508866499999, "SHAPE_Area": 962.77939354399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361923.435599997639656, 254196.024000000208616 ], [ 361919.245700001716614, 254214.565999999642372 ], [ 361916.785499997437, 254219.401000000536442 ], [ 361911.888199999928474, 254226.326999999582767 ], [ 361908.635999999940395, 254229.46680000051856 ], [ 361898.90990000218153, 254235.297800000756979 ], [ 361883.564800001680851, 254238.127500001341105 ], [ 361870.672799997031689, 254236.966499999165535 ], [ 361861.01860000193119, 254234.354400001466274 ], [ 361849.780599996447563, 254228.351799998432398 ], [ 361848.177000001072884, 254227.28319999948144 ], [ 361841.764200001955032, 254222.797800000756979 ], [ 361838.567699998617172, 254219.394099999219179 ], [ 361832.083099998533726, 254223.351799998432398 ], [ 361839.277000002563, 254230.7989999987185 ], [ 361845.687899999320507, 254235.49549999833107 ], [ 361854.52139999717474, 254239.789700001478195 ], [ 361862.553900003433228, 254243.443999998271465 ], [ 361873.826099999248981, 254245.436099998652935 ], [ 361885.114500001072884, 254245.528499998152256 ], [ 361891.57039999961853, 254244.947999998927116 ], [ 361898.035300001502037, 254243.312199998646975 ], [ 361900.461400002241135, 254242.487700000405312 ], [ 361906.125399999320507, 254240.212000001221895 ], [ 361914.235200002789497, 254234.789900001138449 ], [ 361918.306400001049042, 254230.179200001060963 ], [ 361920.752300001680851, 254227.032800000160933 ], [ 361923.201800003647804, 254223.464299999177456 ], [ 361925.660300001502037, 254218.840300001204014 ], [ 361931.498700000345707, 254196.089999999850988 ], [ 361923.435599997639656, 254196.024000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404029900", "MAP": "D9-4826-T89", "PARCEL_NAM": "21-D", "ACRE": ".893", "LONGITUDE": -64.90249405, "LATITUDE": 18.31632978, "OBJECTID_1": 37385, "PARCEL_NO_": "107404029900", "Tax_Legal_": "FRENCHMAN'S BAY ROADS 21A THRU Y FRENCHMANS BAY QTRS", "Name": "GREN CAY PROPERTY OWNERS ASSOC", "Address": "PO Box 305673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 384600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 795.25877192500002, "SHAPE_Area": 2970.8854258299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361896.409299999475479, 254150.206599999219179 ], [ 361891.596600003540516, 254147.211899999529123 ], [ 361875.518899999558926, 254141.380800001323223 ], [ 361869.910700000822544, 254137.113000001758337 ], [ 361866.726800002157688, 254132.231800001114607 ], [ 361857.232699997723103, 254110.833700001239777 ], [ 361841.390600003302097, 254077.351199999451637 ], [ 361835.803900003433228, 254070.550500001758337 ], [ 361830.19030000269413, 254066.916000001132488 ], [ 361822.946099996566772, 254065.379000000655651 ], [ 361813.286499999463558, 254063.400100000202656 ], [ 361801.985500000417233, 254064.785300001502037 ], [ 361791.472900003194809, 254068.287799999117851 ], [ 361784.180100001394749, 254072.449999999254942 ], [ 361776.865800000727177, 254079.145199999213219 ], [ 361771.963200002908707, 254086.7043999992311 ], [ 361770.330799996852875, 254089.013099998235703 ], [ 361768.689400002360344, 254092.377099998295307 ], [ 361767.035400003194809, 254097.218699999153614 ], [ 361764.539099998772144, 254106.275299999862909 ], [ 361763.695000000298023, 254110.701400000602007 ], [ 361764.427599996328354, 254119.362199999392033 ], [ 361764.402500003576279, 254122.317299999296665 ], [ 361765.08110000193119, 254137.310499999672174 ], [ 361769.019199997186661, 254148.319600000977516 ], [ 361777.72860000282526, 254167.178199999034405 ], [ 361788.887500002980232, 254182.468299999833107 ], [ 361803.285999998450279, 254196.096099998801947 ], [ 361832.083099998533726, 254223.351799998432398 ], [ 361838.567699998617172, 254219.394099999219179 ], [ 361800.975000001490116, 254183.41160000115633 ], [ 361794.574799999594688, 254177.448600001633167 ], [ 361786.599799998104572, 254167.039700001478195 ], [ 361779.459899999201298, 254153.260200001299381 ], [ 361773.930799998342991, 254139.704999998211861 ], [ 361773.147799998521805, 254136.9543999992311 ], [ 361772.417000003159046, 254128.082499999552965 ], [ 361770.896099999547005, 254117.304200001060963 ], [ 361770.926700003445148, 254113.715900000184774 ], [ 361771.776199996471405, 254108.656599998474121 ], [ 361775.100299999117851, 254097.073699999600649 ], [ 361776.745300002396107, 254093.287399999797344 ], [ 361779.1858000010252, 254090.774300001561642 ], [ 361786.5253000035882, 254081.124099999666214 ], [ 361788.152400001883507, 254079.448600001633167 ], [ 361790.58389999717474, 254077.990899998694658 ], [ 361797.066699996590614, 254074.244300000369549 ], [ 361809.188400000333786, 254071.177099999040365 ], [ 361819.66330000013113, 254072.107200000435114 ], [ 361827.706600002944469, 254074.495000001043081 ], [ 361830.109399996697903, 254076.414500001817942 ], [ 361834.909500002861023, 254080.886799998581409 ], [ 361836.496899999678135, 254083.855099998414516 ], [ 361841.2449000030756, 254094.448600001633167 ], [ 361860.24040000140667, 254136.400600001215935 ], [ 361863.424300000071526, 254141.281800001859665 ], [ 361869.030699998140335, 254145.76069999858737 ], [ 361872.234300002455711, 254148.320000000298023 ], [ 361890.720200002193451, 254155.437399998307228 ], [ 361901.139300003647804, 254162.910999998450279 ], [ 361911.579999998211861, 254167.851599998772144 ], [ 361920.372100003063679, 254177.000500001013279 ], [ 361921.957800000905991, 254180.179900001734495 ], [ 361923.527300000190735, 254185.25899999961257 ], [ 361923.435599997639656, 254196.024000000208616 ], [ 361931.498700000345707, 254196.089999999850988 ], [ 361930.803900003433228, 254182.996500000357628 ], [ 361926.856799997389317, 254173.04280000180006 ], [ 361918.870999999344349, 254163.900499999523163 ], [ 361910.042900003492832, 254158.973000001162291 ], [ 361906.032899998128414, 254156.4070999994874 ], [ 361896.409299999475479, 254150.206599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404029900", "MAP": "D9-4970-T90", "PARCEL_NAM": "21-J", "ACRE": null, "LONGITUDE": -64.90314901000001, "LATITUDE": 18.31548927, "OBJECTID_1": 37385, "PARCEL_NO_": "107404029900", "Tax_Legal_": "FRENCHMAN'S BAY ROADS 21A THRU Y FRENCHMANS BAY QTRS", "Name": "GREN CAY PROPERTY OWNERS ASSOC", "Address": "PO Box 305673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 384600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 475.98532009100001, "SHAPE_Area": 1711.7758656000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361844.311200000345707, 254018.480000000447035 ], [ 361851.607600003480911, 254013.895700000226498 ], [ 361837.963200002908707, 254006.395700000226498 ], [ 361834.754100002348423, 254004.4695999994874 ], [ 361831.543300002813339, 254002.754599999636412 ], [ 361818.674599997699261, 253998.849599998444319 ], [ 361800.948299996554852, 253997.22690000012517 ], [ 361789.652800001204014, 253997.978799998760223 ], [ 361774.291500002145767, 254002.708200000226498 ], [ 361764.568999998271465, 254008.11710000038147 ], [ 361733.73309999704361, 254030.8739 ], [ 361721.498099997639656, 254047.239100001752377 ], [ 361719.032499998807907, 254052.707299999892712 ], [ 361716.552400000393391, 254059.864199999719858 ], [ 361715.717299997806549, 254063.234900001436472 ], [ 361714.021999999880791, 254072.93129999935627 ], [ 361713.15990000218153, 254079.468100000172853 ], [ 361713.134700000286102, 254082.423200000077486 ], [ 361713.781000003218651, 254101.215900000184774 ], [ 361714.48480000346899, 254113.253899998962879 ], [ 361715.955399997532368, 254129.942400000989437 ], [ 361715.9391999989748, 254131.842099998146296 ], [ 361724.013099998235703, 254130.641600001603365 ], [ 361723.24099999666214, 254126.624499998986721 ], [ 361720.973099999129772, 254108.874099999666214 ], [ 361720.378899998962879, 254083.960200000554323 ], [ 361722.104900002479553, 254070.675400000065565 ], [ 361722.952500000596046, 254065.827199999243021 ], [ 361724.619099996984005, 254059.508000001311302 ], [ 361726.2550999969244, 254056.777199998497963 ], [ 361727.898299999535084, 254053.202100001275539 ], [ 361728.733400002121925, 254049.831399999558926 ], [ 361734.445900000631809, 254041.856600001454353 ], [ 361739.335900001227856, 254035.774900000542402 ], [ 361748.262900002300739, 254029.092999998480082 ], [ 361767.736699998378754, 254014.897999998182058 ], [ 361775.029500000178814, 254010.735800001770258 ], [ 361783.929499998688698, 254007.220100000500679 ], [ 361796.045699998736382, 254004.786100000143051 ], [ 361811.365699999034405, 254004.911499999463558 ], [ 361827.457699999213219, 254009.054000001400709 ], [ 361833.067800000309944, 254013.110700000077486 ], [ 361833.030000001192093, 254017.543299999088049 ], [ 361837.041799999773502, 254019.898200001567602 ], [ 361841.902999997138977, 254017.193799998611212 ], [ 361844.311200000345707, 254018.480000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012000", "MAP": "D9-5648-T94", "PARCEL_NAM": "13A-1", "ACRE": null, "LONGITUDE": -64.89639145, "LATITUDE": 18.31612052, "OBJECTID_1": 37536, "PARCEL_NO_": "107503012000", "Tax_Legal_": "13A REMAINDER & 13-1 BOLONGO FRENCHMAN BAY QTR", "Name": "MARK AND PATRICIA BORDEN FAMILY TRUST", "Address": "PO Box 503178", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053178, "Country": "United States", "Land_Value": 37500, "Improved_V": 164000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 18.5892957047, "SHAPE_Area": 15.6593292999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362474.013199999928474, 254121.581300001591444 ], [ 362477.288800001144409, 254115.697399999946356 ], [ 362472.458099998533726, 254114.813499998301268 ], [ 362474.013199999928474, 254121.581300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "109601010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86773364, "LATITUDE": 18.31543246, "OBJECTID_1": 42246, "PARCEL_NO_": "109601010200", "Tax_Legal_": "ROTTO CAY RED HOOK QTR", "Name": "CUMMINGS, DONALD B", "Address": "505 N Lake Shore Dr", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 294500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 507.61073261600001, "SHAPE_Area": 13320.2514699 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365489.417199999094009, 254140.565200001001358 ], [ 365492.19046008202713, 254140.392947585933143 ], [ 365494.8972168682958, 254139.765165711665759 ], [ 365497.463170535222162, 254138.699086839624215 ], [ 365499.817886271572206, 254137.223974578519119 ], [ 365501.896727696701419, 254135.380320405150997 ], [ 365503.642631113470998, 254133.218732183217071 ], [ 365505.007671892934013, 254130.798544989549555 ], [ 365505.954379993956536, 254128.186192380613647 ], [ 365506.456768506846856, 254125.453382807289017 ], [ 365506.501046987716109, 254122.675131235155277 ], [ 365506.086000002920628, 254119.927700001746416 ], [ 365502.691184308321681, 254116.972462232341059 ], [ 365499.736000001430511, 254113.577599998563528 ], [ 365499.057673464238178, 254112.777411938412115 ], [ 365498.520175412588287, 254111.876565854356159 ], [ 365498.138141943141818, 254110.899591826630058 ], [ 365497.921975844714325, 254109.873092902824283 ], [ 365497.877563330112025, 254108.825020695745479 ], [ 365498.006113754236139, 254107.783914259722224 ], [ 365498.304126683040522, 254106.778122970776167 ], [ 365498.763487210788298, 254105.835034571849974 ], [ 365499.371686929313, 254104.980329403333599 ], [ 365500.112164532300085, 254104.237281126203015 ], [ 365500.964756780653261, 254103.626122979127103 ], [ 365501.906247548293322, 254103.163496826513438 ], [ 365502.910999998450279, 254102.861999999731779 ], [ 365507.140252482437063, 254102.308712720725453 ], [ 365511.401928329956718, 254102.484275691153016 ], [ 365515.571341339498758, 254103.383552368322853 ], [ 365519.526504694193136, 254104.980232118337881 ], [ 365523.151699997484684, 254107.227600000798702 ], [ 365527.971165254246444, 254109.101215581147699 ], [ 365533.002297463885043, 254110.29511230753269 ], [ 365538.149730032251682, 254110.786659515579231 ], [ 365543.315891857782844, 254110.566539783059852 ], [ 365548.402856820146553, 254109.638925544393715 ], [ 365553.3141999989748, 254108.02140000090003 ], [ 365558.957432146882638, 254105.212482409056975 ], [ 365564.306772693933453, 254101.877719625248574 ], [ 365569.313369376817718, 254098.047566003282554 ], [ 365573.931500002741814, 254093.756999999284744 ], [ 365576.452899999916553, 254081.745299998670816 ], [ 365576.497800000011921, 254076.468400001525879 ], [ 365574.915799997746944, 254072.866799999028444 ], [ 365574.951700001955032, 254068.645300000905991 ], [ 365573.375100001692772, 254064.410500001162291 ], [ 365573.446999996900558, 254055.967300001531839 ], [ 365571.870399996638298, 254051.732599999755621 ], [ 365567.045100003480911, 254050.215399999171495 ], [ 365563.841399997472763, 254047.656100001186132 ], [ 365559.168999999761581, 254028.197200000286102 ], [ 365553.569700002670288, 254022.874000001698732 ], [ 365551.993100002408028, 254018.639299999922514 ], [ 365546.370399996638298, 254016.060100000351667 ], [ 365540.729900002479553, 254015.59180000051856 ], [ 365535.933300003409386, 254010.697399999946356 ], [ 365530.319700002670288, 254007.062800001353025 ], [ 365522.335699997842312, 253997.709399998188019 ], [ 365519.931199997663498, 253996.000900000333786 ], [ 365518.385099999606609, 253988.177799999713898 ], [ 365516.803000003099442, 253984.576299998909235 ], [ 365513.592200003564358, 253982.861299999058247 ], [ 365508.743500001728535, 253984.088100001215935 ], [ 365494.985799998044968, 253989.886199999600649 ], [ 365487.63910000026226, 254000.380699999630451 ], [ 365483.490699999034405, 254014.067800000309944 ], [ 365477.8429000005126, 254014.443799998611212 ], [ 365474.599600002169609, 254016.528200000524521 ], [ 365472.963600002229214, 254019.25899999961257 ], [ 365472.112400002777576, 254024.529399998486042 ], [ 365459.810900002717972, 254048.704500000923872 ], [ 365457.370399996638298, 254051.217599999159575 ], [ 365457.352399997413158, 254053.328400000929832 ], [ 365450.023699998855591, 254061.712200000882149 ], [ 365445.914800003170967, 254070.75560000166297 ], [ 365440.213100001215935, 254077.463899999856949 ], [ 365434.540100000798702, 254080.795000001788139 ], [ 365430.44200000166893, 254088.571899998933077 ], [ 365427.144799999892712, 254096.988600000739098 ], [ 365427.875600002706051, 254105.860500000417233 ], [ 365429.455899998545647, 254109.673200000077486 ], [ 365433.465800002217293, 254112.239100001752377 ], [ 365458.857799999415874, 254120.721400000154972 ], [ 365466.001599997282028, 254123.102699998766184 ], [ 365467.066456792061217, 254126.461753384617623 ], [ 365468.639501960657071, 254129.614956286415691 ], [ 365470.682650760747492, 254132.485967018408701 ], [ 365473.146436846931465, 254135.005276003794279 ], [ 365475.971209892537445, 254137.111888659972465 ], [ 365479.088579773961101, 254138.754802128387382 ], [ 365482.423072352888994, 254139.894240096647991 ], [ 365485.893956768442877, 254140.502615816250909 ], [ 365489.417199999094009, 254140.565200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403032500", "MAP": "A9-73-T67", "PARCEL_NAM": "15-7", "ACRE": "0.29", "LONGITUDE": -64.91025748, "LATITUDE": 18.31492178, "OBJECTID_1": 37243, "PARCEL_NO_": "107403032500", "Tax_Legal_": "FRENCHMAN'S BAY 15-6&15-7 FRENCHMAN'S BAY QTR.", "Name": "BRANDT, HENRY H. & JACQUELINE K", "Address": "182 Post Rd", "City": "North Hampton", "State": "New Hampshire", "Zip": 3862, "Country": "United States", "Land_Value": 161100, "Improved_V": 582700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.60303835, "SHAPE_Area": 1553.4797654399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360990.56700000166893, 253982.95160000026226 ], [ 360989.998400002717972, 254010.149700000882149 ], [ 360999.319099999964237, 254008.820000000298023 ], [ 361013.918999999761581, 253998.807000000029802 ], [ 361018.8378000035882, 253989.348000001162291 ], [ 361021.281900003552437, 253986.41270000115037 ], [ 361022.935900002717972, 253981.571100000292063 ], [ 361025.378200002014637, 253978.846900001168251 ], [ 361022.555799998342991, 253931.538800001144409 ], [ 361018.529600001871586, 253930.872600000351667 ], [ 361013.718699999153614, 253927.666799999773502 ], [ 361011.303400002419949, 253927.224800001829863 ], [ 361008.877199999988079, 253928.049400001764297 ], [ 361009.647600002586842, 253932.277499999850988 ], [ 361015.257600001990795, 253936.334199998527765 ], [ 361013.632399998605251, 253937.798599999397993 ], [ 361008.79450000077486, 253937.75899999961257 ], [ 361007.174699999392033, 253938.59010000154376 ], [ 361007.941500000655651, 253943.24040000140667 ], [ 361010.340599998831749, 253945.582100000232458 ], [ 361009.487499997019768, 253951.0636 ], [ 361000.594700001180172, 253953.734999999403954 ], [ 360998.139799997210503, 253957.936799999326468 ], [ 360998.915600001811981, 253961.531700000166893 ], [ 361001.311099998652935, 253964.295499999076128 ], [ 361005.331900000572205, 253965.594999998807907 ], [ 361007.72749999910593, 253968.358800001442432 ], [ 361007.641199998557568, 253978.490600001066923 ], [ 361003.577200002968311, 253982.256999999284744 ], [ 360990.56700000166893, 253982.95160000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401010600", "MAP": "B9-453-T75", "PARCEL_NAM": "1A", "ACRE": "0.07", "LONGITUDE": -64.89627945, "LATITUDE": 18.31402013, "OBJECTID_1": 41941, "PARCEL_NO_": "109401010600", "Tax_Legal_": "BOLONGO 2B & 1A FRENCHMANS BAY QTR", "Name": "DOUMENG, PAUL A. & COLLEEN M.", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34900, "Improved_V": 249400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.987286426099999, "SHAPE_Area": 267.14082392400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362480.978299997746944, 253871.914599999785423 ], [ 362473.619000002741814, 253883.886700000613928 ], [ 362503.350100003182888, 253896.162399999797344 ], [ 362503.421999998390675, 253887.719200000166893 ], [ 362495.378600001335144, 253885.331300001591444 ], [ 362489.761399999260902, 253882.118999999016523 ], [ 362480.978299997746944, 253871.914599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401011700", "MAP": "D9-1545-T80", "PARCEL_NAM": "1-B", "ACRE": "1.05", "LONGITUDE": -64.89588108, "LATITUDE": 18.31388572, "OBJECTID_1": 42006, "PARCEL_NO_": "109401011700", "Tax_Legal_": "1-B BOLONGO FRENCHMAN BAY QTR.", "Name": "HODGE, RHYS S. & JEAN", "Address": "PO Box 6520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 87400, "Improved_V": 459100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.18768632600001, "SHAPE_Area": 4942.31070645 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362521.63740000128746, 253831.92850000038743 ], [ 362516.002199999988079, 253830.826900001615286 ], [ 362509.549900002777576, 253830.985199999064207 ], [ 362503.889499999582767, 253832.838700000196695 ], [ 362501.45440000295639, 253834.718600001186132 ], [ 362499.003100000321865, 253838.498199999332428 ], [ 362498.153599999845028, 253843.557500001043081 ], [ 362480.978299997746944, 253871.914599999785423 ], [ 362489.761399999260902, 253882.118999999016523 ], [ 362495.378600001335144, 253885.331300001591444 ], [ 362503.421999998390675, 253887.719200000166893 ], [ 362503.350100003182888, 253896.162399999797344 ], [ 362504.13120000064373, 253899.124099999666214 ], [ 362512.167400002479553, 253902.356199998408556 ], [ 362515.645499996840954, 253902.30970000103116 ], [ 362580.716499999165535, 253901.439599998295307 ], [ 362573.630500003695488, 253881.3277000002563 ], [ 362572.851199999451637, 253878.155000001192093 ], [ 362572.870999999344349, 253875.833099998533726 ], [ 362565.828100003302097, 253850.655299998819828 ], [ 362540.10530000180006, 253841.156700000166893 ], [ 362521.63740000128746, 253831.92850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109701011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84425087, "LATITUDE": 18.31396807, "OBJECTID_1": 42261, "PARCEL_NO_": "109701011500", "Tax_Legal_": "8-5B&8-6 ESTATE NAZARETH RED HOOK QTR", "Name": "BLACK MAGIC FLIGHTOPS LLC", "Address": "PO BOX 6254", "City": "San Juan", "State": "Puerto Rico", "Zip": 914, "Country": "United States", "Land_Value": 486800, "Improved_V": 324200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.482741939500002, "SHAPE_Area": 324.58625722599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367984.905000001192093, 253912.528599999845028 ], [ 367978.391500003635883, 253919.863600000739098 ], [ 367971.892499998211861, 253925.509899999946356 ], [ 368008.054300002753735, 253940.160300001502037 ], [ 367984.905000001192093, 253912.528599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "D9-8747-T013", "PARCEL_NAM": "52-REM", "ACRE": "0.37", "LONGITUDE": -64.89642104000001, "LATITUDE": 18.31332555, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.72424600799999, "SHAPE_Area": 1765.46673571 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362497.500200003385544, 253825.679200001060963 ], [ 362494.385399997234344, 253787.393699999898672 ], [ 362489.876999996602535, 253774.055100001394749 ], [ 362489.875799998641014, 253774.03999999910593 ], [ 362423.263700000941753, 253831.545499999076128 ], [ 362467.736699998378754, 253817.133000001311302 ], [ 362486.143500000238419, 253833.537799999117851 ], [ 362494.2550999969244, 253827.904699999839067 ], [ 362497.500200003385544, 253825.679200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109302012500", "MAP": "A9-185-T72", "PARCEL_NAM": "56-1", "ACRE": "0.05", "LONGITUDE": -64.89847905000001, "LATITUDE": 18.31223122, "OBJECTID_1": 41883, "PARCEL_NO_": "109302012500", "Tax_Legal_": "59-1A & 56-1 EST BOLONGO RECREATIONAL PAVILION BLDG. NO. 5A FRENCHMAN BAY QTR", "Name": "PAVALION AT REGATTA POINT LLC", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 71800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.251312127999995, "SHAPE_Area": 237.863689252 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362256.892099998891354, 253672.708099998533726 ], [ 362255.317299999296665, 253668.262200001627207 ], [ 362247.902199998497963, 253686.777800001204014 ], [ 362255.1266999989748, 253690.636599998921156 ], [ 362268.754799999296665, 253700.036200001835823 ], [ 362267.975500002503395, 253696.863499999046326 ], [ 362256.892099998891354, 253672.708099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004011400", "MAP": "D9-7322-T003", "PARCEL_NAM": "2B-4 ROW", "ACRE": ".142", "LONGITUDE": -64.90149058, "LATITUDE": 18.35504733, "OBJECTID_1": 5951, "PARCEL_NO_": "103004011400", "Tax_Legal_": "2B REM,2B-2&2B-3 ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "CHARLES, SR. , JOSEPH M. & RUTH D. -", "Address": "PO Box 7337", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 160400, "Improved_V": 340300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.80956457400001, "SHAPE_Area": 745.78328983599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361893.349500000476837, 258431.081700000911951 ], [ 361895.466099999845028, 258430.023299999535084 ], [ 361908.37780000269413, 258431.081700000911951 ], [ 361916.63289999961853, 258430.446699999272823 ], [ 361923.617899999022484, 258427.059999998658895 ], [ 361926.156800001859665, 258420.028400000184774 ], [ 361923.700699999928474, 258419.339000001549721 ], [ 361905.241200000047684, 258414.157699998468161 ], [ 361879.502700001001358, 258407.100900001823902 ], [ 361879.565800003707409, 258423.268399998545647 ], [ 361881.895000003278255, 258426.4814000017941 ], [ 361886.02589999884367, 258428.169799998402596 ], [ 361886.018200002610683, 258428.173900000751019 ], [ 361886.910499997437, 258432.449400000274181 ], [ 361893.349500000476837, 258431.081700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052800", "MAP": "D9-6330-T97", "PARCEL_NAM": "2C-1", "ACRE": ".27", "LONGITUDE": -64.90105451, "LATITUDE": 18.3551934, "OBJECTID_1": 6309, "PARCEL_NO_": "103004052800", "Tax_Legal_": "2C-1 MANDAHL ESTATE No.1 GREAT NORTHSIDE QUARTER", "Name": "ELIZEE, CHRISTOPHER & VEDIA M.", "Address": "PO Box 12018", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31700, "Improved_V": 283600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.14690851200001, "SHAPE_Area": 823.990901323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361926.156800001859665, 258420.028400000184774 ], [ 361933.537500001490116, 258455.277100000530481 ], [ 361976.701800003647804, 258438.138300001621246 ], [ 361926.156800001859665, 258420.028400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004011700", "MAP": "D9-7905-T007", "PARCEL_NAM": "2D-A", "ACRE": ".295", "LONGITUDE": -64.90055413, "LATITUDE": 18.35477795, "OBJECTID_1": 5953, "PARCEL_NO_": "103004011700", "Tax_Legal_": "2D-5 & 2D-A ROW ESTATE MANDAHL NO.1 GREAT NORTHSIDE QUARTER", "Name": "QUETEL, LEO", "Address": "13A-1 ESTATE MANDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.361131441, "SHAPE_Area": 763.326829514 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362039.295800000429153, 258414.619199998676777 ], [ 362034.026299998164177, 258412.541799999773502 ], [ 362032.280100002884865, 258414.764299999922514 ], [ 362031.010099999606609, 258415.081799998879433 ], [ 362028.946299999952316, 258414.923000000417233 ], [ 361988.782600000500679, 258395.396800000220537 ], [ 361988.147600002586842, 258393.967999998480082 ], [ 361987.988799996674061, 258391.90430000051856 ], [ 361988.30629999935627, 258390.157999999821186 ], [ 361992.910099998116493, 258366.662999998778105 ], [ 361991.640100002288818, 258364.916799999773502 ], [ 361989.100100003182888, 258362.853000000119209 ], [ 361977.670100003480911, 258356.979299999773502 ], [ 361962.224299997091293, 258351.084899999201298 ], [ 361961.364100001752377, 258357.410700000822544 ], [ 361975.038999997079372, 258361.322299998253584 ], [ 361985.479699999094009, 258366.262899998575449 ], [ 361985.429399996995926, 258372.173099998384714 ], [ 361982.89360000193119, 258385.873399998992682 ], [ 361981.322999998927116, 258399.361200001090765 ], [ 362040.60639999806881, 258426.453499998897314 ], [ 362039.295800000429153, 258414.619199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004018700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89986811, "LATITUDE": 18.3553542, "OBJECTID_1": 6061, "PARCEL_NO_": "103004018700", "Tax_Legal_": "MANDAHL 2D-3 REMAINDER GREAT NORTHSIDE QTR.", "Name": "CONNOR, TREVOR A C", "Address": "PO Box 302969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.15476459499999, "SHAPE_Area": 1192.78175678 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362042.865299999713898, 258445.259399998933077 ], [ 362046.681100003421307, 258470.621800001710653 ], [ 362074.949100002646446, 258468.809500001370907 ], [ 362091.840400002896786, 258461.919599998742342 ], [ 362105.631999999284744, 258456.945599999278784 ], [ 362103.324299998581409, 258447.442899998277426 ], [ 362042.865299999713898, 258445.259399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004058900", "MAP": "D9-6330-T97", "PARCEL_NAM": "2C ROW", "ACRE": ".44", "LONGITUDE": -64.90011031, "LATITUDE": 18.35546389, "OBJECTID_1": 6332, "PARCEL_NO_": "103004058900", "Tax_Legal_": "MANDAHL 2C EASEMENT A No.1 GREAT NORTHSIDE QTR.", "Name": "MM ELECTRIC INC.", "Address": "PO Box 302640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.13826375100001, "SHAPE_Area": 1125.96844904 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362033.115199998021126, 258483.396299999207258 ], [ 362037.142099998891354, 258482.72520000115037 ], [ 362048.514600001275539, 258481.067699998617172 ], [ 362057.896600000560284, 258479.766600001603365 ], [ 362063.316699996590614, 258477.355999998748302 ], [ 362081.82379999756813, 258473.869199998676777 ], [ 362086.4712999984622, 258472.993500001728535 ], [ 362107.998599998652935, 258466.690699998289347 ], [ 362105.631999999284744, 258456.945599999278784 ], [ 362091.840400002896786, 258461.919700000435114 ], [ 362074.949100002646446, 258468.809500001370907 ], [ 362056.083099998533726, 258470.019000001251698 ], [ 362046.681100003421307, 258470.621800001710653 ], [ 362037.133699998259544, 258476.221200000494719 ], [ 362033.690700002014637, 258474.040800001472235 ], [ 362028.245899997651577, 258470.592700000852346 ], [ 362007.805600002408028, 258457.648499999195337 ], [ 361991.241499997675419, 258447.158900000154972 ], [ 361976.803400002419949, 258438.174800001084805 ], [ 361976.701800003647804, 258438.138300001621246 ], [ 361971.943899996578693, 258440.027499999850988 ], [ 361974.219400003552437, 258442.332600001245737 ], [ 361977.606100000441074, 258441.909299999475479 ], [ 361991.999499998986721, 258453.550999999046326 ], [ 362000.9712999984622, 258459.9364 ], [ 362004.064499996602535, 258462.440999999642372 ], [ 362006.816200003027916, 258464.769400000572205 ], [ 362011.261200003325939, 258467.521000001579523 ], [ 362019.304499998688698, 258471.542700000107288 ], [ 362019.516199998557568, 258477.636199999600649 ], [ 362015.9391999989748, 258477.636199999600649 ], [ 362020.606700003147125, 258484.249200001358986 ], [ 362030.423699997365475, 258483.579799998551607 ], [ 362033.115199998021126, 258483.396299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8996063, "LATITUDE": 18.35561571, "OBJECTID_1": 6305, "PARCEL_NO_": "103004052400", "Tax_Legal_": "MANDAHL ESTATE 2C-2 GREAT NORTHSIDE QUARTER", "Name": "ADAMS, BRADFORD & PATRICIA", "Address": "PO Box 9526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 271200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.044188451, "SHAPE_Area": 835.14262457899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362081.82379999756813, 258473.869199998676777 ], [ 362087.81360000371933, 258502.859499998390675 ], [ 362113.98139999806881, 258500.120999999344349 ], [ 362111.830600000917912, 258490.153499998152256 ], [ 362107.998599998652935, 258466.690699998289347 ], [ 362086.4712999984622, 258472.993500001728535 ], [ 362081.82379999756813, 258473.869199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004018800", "MAP": "D9-6546-T99", "PARCEL_NAM": "2C-5", "ACRE": null, "LONGITUDE": -64.90035929, "LATITUDE": 18.35578581, "OBJECTID_1": 6062, "PARCEL_NO_": "103004018800", "Tax_Legal_": "2C-5 ESTATE MANDAHL #1 GREAT NORTHSIDE QTR", "Name": "GREAUX, WAYNE & JACQUELINE", "Address": "PO Box 307911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 346900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.53043475300001, "SHAPE_Area": 1188.05224724 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362036.671899996697903, 258520.839800000190735 ], [ 362030.423699997365475, 258483.579799998551607 ], [ 362018.350000001490116, 258484.403000000864267 ], [ 362013.316399998962879, 258483.731899999082088 ], [ 362000.229000002145767, 258486.752000000327826 ], [ 362007.362400002777576, 258526.413100000470877 ], [ 362028.776699997484684, 258522.054400000721216 ], [ 362036.671899996697903, 258520.839800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004053000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9000842, "LATITUDE": 18.35575071, "OBJECTID_1": 6311, "PARCEL_NO_": "103004053000", "Tax_Legal_": "2C-4 MANDAHL ESTATE NO.1 GREAT NORTHSIDE QUARTER", "Name": "CRAWFORD, DAVID, JOAN P. & LEISHAR D.", "Address": "P O BOX 3613", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24000, "Improved_V": 286000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.26854018099999, "SHAPE_Area": 1058.10058538 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362064.899499997496605, 258517.407499998807907 ], [ 362057.896600000560284, 258479.766600001603365 ], [ 362048.514600001275539, 258481.067699998617172 ], [ 362037.142099998891354, 258482.72520000115037 ], [ 362033.115199998021126, 258483.396299999207258 ], [ 362030.423699997365475, 258483.579799998551607 ], [ 362036.671899996697903, 258520.839800000190735 ], [ 362053.541799999773502, 258518.24439999833703 ], [ 362064.899499997496605, 258517.407499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004053100", "MAP": "D9-6999-T001", "PARCEL_NAM": "2C-9", "ACRE": null, "LONGITUDE": -64.90105112000001, "LATITUDE": 18.3554376, "OBJECTID_1": 6312, "PARCEL_NO_": "103004053100", "Tax_Legal_": "MANDAHL ESTATE 2C-9 No.1 GREAT NORTHSIDE QTR.", "Name": "DAPHNE M THOMAS REVOC LIV TRUST & DENISE COUMARBAT", "Address": "PO BOX 502502", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17200, "Improved_V": 288000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.342637750600005, "SHAPE_Area": 518.48572833599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361933.537500001490116, 258455.277100000530481 ], [ 361938.866400003433228, 258480.726799998432398 ], [ 361958.589199997484684, 258474.124299999326468 ], [ 361950.896799996495247, 258448.384399998933077 ], [ 361933.537500001490116, 258455.277100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004054300", "MAP": "D9-6999-T001", "PARCEL_NAM": "2C-10", "ACRE": null, "LONGITUDE": -64.90080235000001, "LATITUDE": 18.35536101, "OBJECTID_1": 6322, "PARCEL_NO_": "103004054300", "Tax_Legal_": "2C-10 MANDAHL No.1 GREAT NORTHSIDE QUARTER", "Name": "THOMAS, DANNICA L. & KAYON K. HODGE", "Address": "PO Box 10314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24300, "Improved_V": 294900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.38042296200001, "SHAPE_Area": 949.22441469 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362000.9712999984622, 258459.9364 ], [ 361991.999499998986721, 258453.550999999046326 ], [ 361977.606100000441074, 258441.909299999475479 ], [ 361974.219400003552437, 258442.332600001245737 ], [ 361971.943899996578693, 258440.027499999850988 ], [ 361950.896799996495247, 258448.384399998933077 ], [ 361958.589199997484684, 258474.124299999326468 ], [ 362000.9712999984622, 258459.9364 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004054400", "MAP": "D9-7322-T003", "PARCEL_NAM": "2C-6", "ACRE": ".24", "LONGITUDE": -64.90060045, "LATITUDE": 18.35583313, "OBJECTID_1": 6323, "PARCEL_NO_": "103004054400", "Tax_Legal_": "2C-6 ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "BRAMBLE,MARVA, & RICHARDS JR., ALFORD & HUGGINS, JANICE", "Address": "PO Box 9646", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25800, "Improved_V": 388400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.413978313, "SHAPE_Area": 910.78481027099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362007.362400002777576, 258526.413100000470877 ], [ 362000.229000002145767, 258486.752000000327826 ], [ 361986.134999997913837, 258489.436599999666214 ], [ 361978.416799999773502, 258491.114500001072884 ], [ 361985.714599996805191, 258531.982200000435114 ], [ 362004.858300000429153, 258526.922800000756979 ], [ 362007.362400002777576, 258526.413100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89956972, "LATITUDE": 18.35581066, "OBJECTID_1": 6305, "PARCEL_NO_": "103004052400", "Tax_Legal_": "MANDAHL ESTATE 2C-2 GREAT NORTHSIDE QUARTER", "Name": "ADAMS, BRADFORD & PATRICIA", "Address": "PO Box 9526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 271200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.733811437499995, "SHAPE_Area": 311.380374373 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362115.709299996495247, 258508.128100000321865 ], [ 362113.98139999806881, 258500.120999999344349 ], [ 362087.81360000371933, 258502.859499998390675 ], [ 362091.046700000762939, 258515.029800001531839 ], [ 362109.421899996697903, 258513.3761 ], [ 362115.709299996495247, 258508.128100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89983427, "LATITUDE": 18.35571347, "OBJECTID_1": 6310, "PARCEL_NO_": "103004052900", "Tax_Legal_": "MANDAHL ESTATE 2C-3 No.1 GREAT NORTHSIDE QTR.", "Name": "HAZELWOOD, LAURA", "Address": "PO Box 6531", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22900, "Improved_V": 293300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.50368716700001, "SHAPE_Area": 1024.2342358599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362091.046700000762939, 258515.029800001531839 ], [ 362087.81360000371933, 258502.859499998390675 ], [ 362081.82379999756813, 258473.869199998676777 ], [ 362063.316699996590614, 258477.355999998748302 ], [ 362057.896600000560284, 258479.766600001603365 ], [ 362064.899499997496605, 258517.407499998807907 ], [ 362073.650100000202656, 258516.762699998915195 ], [ 362088.255199998617172, 258515.281100001186132 ], [ 362091.046700000762939, 258515.029800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052700", "MAP": "D9-6999-T001", "PARCEL_NAM": "2C-11", "ACRE": null, "LONGITUDE": -64.90060306, "LATITUDE": 18.35550552, "OBJECTID_1": 6308, "PARCEL_NO_": "103004052700", "Tax_Legal_": "2C ESTATE MANDAHL NO.1 GREAT NORTHSIDE QTR", "Name": "MM ELECTRIC, CORPORATION", "Address": "PO Box 302640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.17203663699999, "SHAPE_Area": 730.96477418699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362019.516199998557568, 258477.636199999600649 ], [ 362019.304499998688698, 258471.542700000107288 ], [ 362011.261200003325939, 258467.521000001579523 ], [ 362006.816200003027916, 258464.769400000572205 ], [ 362004.064499996602535, 258462.440999999642372 ], [ 362000.9712999984622, 258459.9364 ], [ 361968.652800001204014, 258470.755399998277426 ], [ 361970.956500001251698, 258484.385200001299381 ], [ 361971.646999999880791, 258485.30460000038147 ], [ 361976.45380000025034, 258484.045899998396635 ], [ 361976.45380000025034, 258481.029599998146296 ], [ 361982.109399996697903, 258480.275499999523163 ], [ 361985.879799999296665, 258482.53770000115037 ], [ 361991.912399999797344, 258480.652499999850988 ], [ 362014.157700002193451, 258477.636199999600649 ], [ 362019.516199998557568, 258477.636199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004056100", "MAP": "D9-7322-T003", "PARCEL_NAM": "2C-8", "ACRE": ".20", "LONGITUDE": -64.90095145, "LATITUDE": 18.35566197, "OBJECTID_1": 6330, "PARCEL_NO_": "103004056100", "Tax_Legal_": "2C-8 ESTATE MANDAHL NO.1 GREAT NORTHSIDE QTR", "Name": "KRIGGER, JUDITH J. & HODGE, ROSHELLE S.", "Address": "215-34 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20900, "Improved_V": 325200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.776286244, "SHAPE_Area": 865.40893776999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361938.866400003433228, 258480.726799998432398 ], [ 361944.672399997711182, 258508.454599998891354 ], [ 361944.929399996995926, 258509.682100001722574 ], [ 361949.912299998104572, 258508.3902000002563 ], [ 361961.859600000083447, 258503.150100000202656 ], [ 361972.683399997651577, 258494.602899998426437 ], [ 361971.13459999859333, 258485.438799999654293 ], [ 361971.646999999880791, 258485.30460000038147 ], [ 361970.956500001251698, 258484.385200001299381 ], [ 361968.652800001204014, 258470.755399998277426 ], [ 361938.866400003433228, 258480.726799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004054600", "MAP": "D9-7322-T003", "PARCEL_NAM": "2C-7", "ACRE": ".26", "LONGITUDE": -64.90085447, "LATITUDE": 18.35592622, "OBJECTID_1": 6325, "PARCEL_NO_": "103004054600", "Tax_Legal_": "2C-7 ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "JAMES, TRISHA D. & RICKY J.", "Address": "PO Box 502561", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28200, "Improved_V": 289400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.11868281299999, "SHAPE_Area": 1298.2891622899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361985.714599996805191, 258531.982200000435114 ], [ 361978.416799999773502, 258491.114500001072884 ], [ 361972.683399997651577, 258494.602899998426437 ], [ 361961.859600000083447, 258503.150100000202656 ], [ 361949.912299998104572, 258508.3902000002563 ], [ 361944.929399996995926, 258509.682100001722574 ], [ 361951.957000002264977, 258543.244100000709295 ], [ 361975.224899999797344, 258534.754399999976158 ], [ 361985.714599996805191, 258531.982200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502044000", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-76", "ACRE": ".12", "LONGITUDE": -64.90314266, "LATITUDE": 18.33877249, "OBJECTID_1": 19945, "PARCEL_NO_": "105502044000", "Tax_Legal_": "1-13-76 DONOE 2A NEW QTR", "Name": "WHEATLEY, EDDIE CAMILLE & MARIA ANGELICA", "Address": "7816 N Whiter St", "City": "Tampa", "State": "Florida", "Zip": 33617, "Country": "United States", "Land_Value": 8500, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.97010078, "SHAPE_Area": 530.28364806399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361751.979900002479553, 256605.7489 ], [ 361732.909800000488758, 256601.483500000089407 ], [ 361730.555100001394749, 256629.402800001204014 ], [ 361738.716099999845028, 256638.71510000154376 ], [ 361740.588562903169077, 256637.253819288918748 ], [ 361742.614900000393391, 256636.014699999243021 ], [ 361743.653599999845028, 256634.1739999987185 ], [ 361747.496399998664856, 256627.364100001752377 ], [ 361746.0945999994874, 256626.753100000321865 ], [ 361751.979900002479553, 256605.7489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502043600", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-66", "ACRE": ".13", "LONGITUDE": -64.90318602000001, "LATITUDE": 18.33941595, "OBJECTID_1": 19941, "PARCEL_NO_": "105502043600", "Tax_Legal_": "1-13-66 DONOE 2A NEW QTR", "Name": "MARCUS A. MONROSE & ELIZABETH ROGERS", "Address": "4001 Raphune Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9900, "Improved_V": 270100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.56812349099999, "SHAPE_Area": 571.33226311600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361751.910899996757507, 256688.867600001394749 ], [ 361739.071800000965595, 256673.44200000166893 ], [ 361737.251299999654293, 256674.825199998915195 ], [ 361732.864600002765656, 256670.989999998360872 ], [ 361731.182599999010563, 256673.854600001126528 ], [ 361723.696599997580051, 256693.539700001478195 ], [ 361722.408919750887435, 256697.199878913990688 ], [ 361721.689010583620984, 256701.012589351506904 ], [ 361721.553400002419949, 256704.890299998223782 ], [ 361721.478372982644942, 256705.523380603524856 ], [ 361721.511794987251051, 256706.16001478114049 ], [ 361721.652697794896085, 256706.781759507954121 ], [ 361721.896999510761816, 256707.370603101910092 ], [ 361722.237622817396186, 256707.909487012861064 ], [ 361722.664700001478195, 256708.382800001651049 ], [ 361723.138072545698378, 256708.666380683804164 ], [ 361723.651679901173338, 256708.868140574195422 ], [ 361724.191499501117505, 256708.98257120125345 ], [ 361724.742793129291385, 256709.006548366975039 ], [ 361725.290509304089937, 256708.939417443965795 ], [ 361725.819694215897471, 256708.783011248422554 ], [ 361726.3158999979496, 256708.541600000113249 ], [ 361729.179286899801809, 256704.618220779055264 ], [ 361732.507200002670288, 256701.080299999564886 ], [ 361747.845299996435642, 256692.8614999987185 ], [ 361752.447899997234344, 256689.512699998915195 ], [ 361751.910899996757507, 256688.867600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502043700", "MAP": "A9-758-T010", "PARCEL_NAM": "113-68", "ACRE": ".08", "LONGITUDE": -64.90305104, "LATITUDE": 18.33928075, "OBJECTID_1": 19942, "PARCEL_NO_": "105502043700", "Tax_Legal_": "1-13-68 DONOE 2A NEW QTR", "Name": "STEVE D and THORA T HENRY LETANG", "Address": "PO Box 307902", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037902, "Country": "United States", "Land_Value": 6400, "Improved_V": 288600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.517049737299999, "SHAPE_Area": 418.50212549000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361764.604599997401237, 256679.506400000303984 ], [ 361747.207599997520447, 256661.923000000417233 ], [ 361745.990099996328354, 256663.311200000345707 ], [ 361744.26630000025034, 256661.947000000625849 ], [ 361742.268026343255769, 256663.177828527725069 ], [ 361740.13738247519359, 256664.161898229998769 ], [ 361737.904700003564358, 256664.885200001299381 ], [ 361735.213219838216901, 256667.796067898074398 ], [ 361732.864600002765656, 256670.989999998360872 ], [ 361737.251299999654293, 256674.825199998915195 ], [ 361739.071800000965595, 256673.44200000166893 ], [ 361751.910899996757507, 256688.867600001394749 ], [ 361752.447899997234344, 256689.512699998915195 ], [ 361765.227799996733665, 256680.136300001293421 ], [ 361764.604599997401237, 256679.506400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502043800", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-70", "ACRE": ".11", "LONGITUDE": -64.90294573, "LATITUDE": 18.33919055, "OBJECTID_1": 19943, "PARCEL_NO_": "105502043800", "Tax_Legal_": "1-13-70 DONOE 2A NEW QTR", "Name": "D'ABREAU, PETER & LA'TISHA", "Address": "PO BOX 306353", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8500, "Improved_V": 281500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.281256178000007, "SHAPE_Area": 410.28505667899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361772.075099997222424, 256662.776599999517202 ], [ 361755.73870000243187, 256651.206399999558926 ], [ 361754.517800003290176, 256652.994199998676777 ], [ 361752.203699998557568, 256651.730700001120567 ], [ 361751.121955511975102, 256654.146911527670454 ], [ 361749.734391285572201, 256656.401443584036315 ], [ 361748.064699999988079, 256658.455800000578165 ], [ 361746.280456100474112, 256660.326471394801047 ], [ 361744.26630000025034, 256661.947000000625849 ], [ 361745.990099996328354, 256663.311200000345707 ], [ 361747.207599997520447, 256661.923000000417233 ], [ 361764.604599997401237, 256679.506400000303984 ], [ 361765.227799996733665, 256680.136300001293421 ], [ 361768.15990000218153, 256677.968899998813868 ], [ 361772.194099999964237, 256675.189300000667572 ], [ 361772.049699999392033, 256674.454900000244379 ], [ 361770.291400000452995, 256665.512099999934435 ], [ 361772.075099997222424, 256662.776599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502043900", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-72", "ACRE": ".12", "LONGITUDE": -64.90289596, "LATITUDE": 18.33901885, "OBJECTID_1": 19944, "PARCEL_NO_": "105502043900", "Tax_Legal_": "1-13-72 DONOE 2A NEW QTR", "Name": "SCATLIFFE, RUDENCE & CHANTAL N.", "Address": "7700 Thomasville", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9200, "Improved_V": 217600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.5174508761, "SHAPE_Area": 501.15386974799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361775.816200003027916, 256653.771499998867512 ], [ 361776.460900001227856, 256648.782499998807907 ], [ 361775.487700000405312, 256644.97859999909997 ], [ 361774.517899997532368, 256640.775199998170137 ], [ 361773.941699996590614, 256637.574000000953674 ], [ 361774.576300002634525, 256633.783500000834465 ], [ 361775.072999998927116, 256630.228900000452995 ], [ 361755.857299998402596, 256637.023299999535084 ], [ 361755.840599998831749, 256639.020899999886751 ], [ 361751.957699999213219, 256639.770300000905991 ], [ 361752.690255868248641, 256641.122291028907057 ], [ 361753.196134974772576, 256642.574394389783265 ], [ 361753.462200000882149, 256644.088899999856949 ], [ 361753.371352150687017, 256646.683093105384614 ], [ 361752.949543902999721, 256649.244375792419305 ], [ 361752.203699998557568, 256651.730700001120567 ], [ 361754.517800003290176, 256652.994199998676777 ], [ 361755.73870000243187, 256651.206399999558926 ], [ 361772.075099997222424, 256662.776599999517202 ], [ 361773.141699999570847, 256661.140799999237061 ], [ 361775.176500000059605, 256658.161200001835823 ], [ 361775.816200003027916, 256653.771499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502043500", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-53", "ACRE": ".07", "LONGITUDE": -64.90239521, "LATITUDE": 18.33919133, "OBJECTID_1": 19940, "PARCEL_NO_": "105502043500", "Tax_Legal_": "1-13-53 DONOE 2A NEW QTR", "Name": "RAGER, BROOKLYN N", "Address": "3300 Veterans Dr", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5700, "Improved_V": 279300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.810056925599994, "SHAPE_Area": 327.45335741100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361822.024700000882149, 256654.135200001299381 ], [ 361819.805399999022484, 256650.576900001615286 ], [ 361813.93688467447646, 256653.716457059170352 ], [ 361808.201800003647804, 256657.093600001186132 ], [ 361808.933700002729893, 256659.242499999701977 ], [ 361807.586900003254414, 256660.152699999511242 ], [ 361819.409400001168251, 256679.529199998825788 ], [ 361823.236100003123283, 256677.978700000792742 ], [ 361830.358800001442432, 256675.424300000071526 ], [ 361819.908100001513958, 256655.510999999940395 ], [ 361822.024700000882149, 256654.135200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502043400", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-51", "ACRE": ".07", "LONGITUDE": -64.90249779, "LATITUDE": 18.33924935, "OBJECTID_1": 19939, "PARCEL_NO_": "105502043400", "Tax_Legal_": "1-13-51 DONOE NO 2A NEW QTR", "Name": "HUGGINS, STEVE & RAYSA ROGERS", "Address": "PO Box 305322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5000, "Improved_V": 270000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.241338625300003, "SHAPE_Area": 299.69007652099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361808.933700002729893, 256659.242499999701977 ], [ 361808.201800003647804, 256657.093600001186132 ], [ 361801.916400000452995, 256661.173099998384714 ], [ 361797.902500003576279, 256663.770799998193979 ], [ 361799.799699999392033, 256667.364399999380112 ], [ 361797.577200002968311, 256668.846000000834465 ], [ 361808.169399999082088, 256684.854800000786781 ], [ 361813.040500000119209, 256682.400400001555681 ], [ 361819.409400001168251, 256679.529199998825788 ], [ 361807.586900003254414, 256660.152699999511242 ], [ 361808.933700002729893, 256659.242499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502043300", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-49", "ACRE": ".07", "LONGITUDE": -64.90259886, "LATITUDE": 18.33930135, "OBJECTID_1": 19938, "PARCEL_NO_": "105502043300", "Tax_Legal_": "1-13-49 DONOE 2A NEW QTR", "Name": "RICHARDSON, AMERICA & RAQUEL R.", "Address": "PO Box 308087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5000, "Improved_V": 270000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.088841292300003, "SHAPE_Area": 268.81003178899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361799.799699999392033, 256667.364399999380112 ], [ 361797.902500003576279, 256663.770799998193979 ], [ 361786.425499998033047, 256671.275100000202656 ], [ 361789.428000003099442, 256674.772700000554323 ], [ 361787.523000001907349, 256676.360199999064207 ], [ 361799.153499998152256, 256690.03830000013113 ], [ 361805.478900000452995, 256686.311700001358986 ], [ 361808.169399999082088, 256684.854800000786781 ], [ 361797.577200002968311, 256668.846000000834465 ], [ 361799.799699999392033, 256667.364399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502043200", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-47", "ACRE": ".06", "LONGITUDE": -64.90270024, "LATITUDE": 18.33936988, "OBJECTID_1": 19937, "PARCEL_NO_": "105502043200", "Tax_Legal_": "1-13-47 DONOE 2A NEW QTR", "Name": "PRINCE, DENLEY & NACHET J.", "Address": "PO BOX 11941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5000, "Improved_V": 290000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.4734039075, "SHAPE_Area": 326.71623219399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361789.428000003099442, 256674.772700000554323 ], [ 361786.425499998033047, 256671.275100000202656 ], [ 361782.972199998795986, 256673.555599998682737 ], [ 361775.20610000193119, 256679.096500001847744 ], [ 361775.997699998319149, 256680.143399998545647 ], [ 361773.773699998855591, 256681.723000001162291 ], [ 361783.774400003254414, 256693.51799999922514 ], [ 361787.795999996364117, 256698.261100001633167 ], [ 361797.242299996316433, 256691.251899998635054 ], [ 361799.153499998152256, 256690.03830000013113 ], [ 361787.523000001907349, 256676.360199999064207 ], [ 361789.428000003099442, 256674.772700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502043100", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-45", "ACRE": ".07", "LONGITUDE": -64.90280616, "LATITUDE": 18.3394482, "OBJECTID_1": 19936, "PARCEL_NO_": "105502043100", "Tax_Legal_": "1-13-45 DONOE 2A NEW QTR", "Name": "WILLIAMS, NAOMI H.", "Address": "2617 Gamle Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5000, "Improved_V": 315000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.893747415799993, "SHAPE_Area": 324.26684089100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361775.997699998319149, 256680.143399998545647 ], [ 361775.20610000193119, 256679.096500001847744 ], [ 361765.827100001275539, 256685.514800000935793 ], [ 361763.0996999964118, 256687.562699999660254 ], [ 361764.467100001871586, 256689.037000000476837 ], [ 361763.251199997961521, 256690.225400000810623 ], [ 361772.153099998831749, 256701.517900001257658 ], [ 361776.487700000405312, 256707.016600001603365 ], [ 361786.147200003266335, 256699.569499999284744 ], [ 361787.795999996364117, 256698.261100001633167 ], [ 361783.774400003254414, 256693.51799999922514 ], [ 361773.773699998855591, 256681.723000001162291 ], [ 361775.997699998319149, 256680.143399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87392759, "LATITUDE": 18.34757177, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 887.57774107600005, "SHAPE_Area": 2386.3049306299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364853.107699997723103, 257587.788600001484156 ], [ 364860.055200003087521, 257624.153599999845028 ], [ 364864.677299998700619, 257649.522599998861551 ], [ 364870.843699999153614, 257682.925900001078844 ], [ 364869.169900000095367, 257690.089400000870228 ], [ 364866.729400001466274, 257692.60249999910593 ], [ 364863.495200000703335, 257693.631499998271465 ], [ 364867.321699999272823, 257717.72749999910593 ], [ 364873.765000000596046, 257718.624600000679493 ], [ 364880.204800002276897, 257719.943900000303984 ], [ 364877.14130000025034, 257700.920400001108646 ], [ 364862.49210000038147, 257622.062600001692772 ], [ 364857.110500000417233, 257591.198899999260902 ], [ 364850.931500002741814, 257559.273200001567602 ], [ 364847.104900002479553, 257535.177200000733137 ], [ 364847.122900001704693, 257533.066399998962879 ], [ 364820.473200000822544, 257537.703400000929832 ], [ 364773.631599999964237, 257546.186000000685453 ], [ 364771.963200002908707, 257552.7162000015378 ], [ 364782.463299997150898, 257550.691199999302626 ], [ 364792.931000001728535, 257552.465700000524521 ], [ 364801.757200002670288, 257557.604200001806021 ], [ 364803.351899996399879, 257559.728100001811981 ], [ 364804.143799997866154, 257561.42339999973774 ], [ 364805.704300001263618, 257567.557900000363588 ], [ 364804.811700001358986, 257577.68299999833107 ], [ 364801.487499997019768, 257589.265999998897314 ], [ 364789.952799998223782, 257618.091400001198053 ], [ 364781.646899998188019, 257646.521000001579523 ], [ 364774.170699998736382, 257672.213300000876188 ], [ 364766.703500002622604, 257696.850099999457598 ], [ 364763.460299998521805, 257698.934500001370907 ], [ 364761.043099999427795, 257698.703600000590086 ], [ 364759.441299997270107, 257697.423900000751019 ], [ 364756.962999999523163, 257704.369699999690056 ], [ 364764.212600000202656, 257705.273499999195337 ], [ 364769.851400002837181, 257705.952899999916553 ], [ 364778.137500002980232, 257679.845100000500679 ], [ 364786.445200003683567, 257651.2043999992311 ], [ 364796.397900000214577, 257618.777399998158216 ], [ 364807.936200000345707, 257589.529899999499321 ], [ 364809.582999996840954, 257585.532600000500679 ], [ 364811.301700003445148, 257573.092099998146296 ], [ 364809.818599998950958, 257557.88120000064373 ], [ 364807.428400002419949, 257554.484200000762939 ], [ 364800.211099997162819, 257549.780999999493361 ], [ 364799.419200003147125, 257548.085799999535084 ], [ 364840.611299999058247, 257540.19029999896884 ], [ 364843.017599999904633, 257541.687600001692772 ], [ 364847.711599998176098, 257558.613499999046326 ], [ 364853.107699997723103, 257587.788600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87270625, "LATITUDE": 18.34791536, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.76687827399999, "SHAPE_Area": 707.46593418600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364952.507799997925758, 257656.996500000357628 ], [ 364946.348600000143051, 257622.7489 ], [ 364945.585500001907349, 257617.676399998366833 ], [ 364935.085400000214577, 257619.701400000602007 ], [ 364935.065600000321865, 257622.023299999535084 ], [ 364932.634099997580051, 257623.480999998748302 ], [ 364933.39190000295639, 257629.186799999326468 ], [ 364935.8108000010252, 257629.206599999219179 ], [ 364939.820799998939037, 257631.77250000089407 ], [ 364941.365099996328354, 257639.806699998676777 ], [ 364946.014200001955032, 257662.00959999859333 ], [ 364950.641599997878075, 257686.745400000363588 ], [ 364953.715800002217293, 257704.502399999648333 ], [ 364961.001400001347065, 257701.184500001370907 ], [ 364952.507799997925758, 257656.996500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003040000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90856884, "LATITUDE": 18.34787084, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.47888331499999, "SHAPE_Area": 1961.98036407 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361189.720899999141693, 257594.113600000739098 ], [ 361129.90089999884367, 257611.56700000166893 ], [ 361132.060900002717972, 257641.982099998742342 ], [ 361141.707900002598763, 257645.4386 ], [ 361151.383599996566772, 257645.517799999564886 ], [ 361158.665600001811981, 257642.622099999338388 ], [ 361169.208800002932549, 257635.531199999153614 ], [ 361179.780799999833107, 257625.063000001013279 ], [ 361186.312200002372265, 257615.617300000041723 ], [ 361188.817400000989437, 257605.505300000309944 ], [ 361189.720899999141693, 257594.113600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89150881, "LATITUDE": 18.34756826, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.10191886499999, "SHAPE_Area": 320.66862492299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362932.386900000274181, 257581.989799998700619 ], [ 362958.817199997603893, 257603.104400001466274 ], [ 362978.039200000464916, 257618.460499998182058 ], [ 362988.451099999248981, 257626.778299998492002 ], [ 362991.699699997901917, 257624.060699999332428 ], [ 362979.687799997627735, 257614.252099998295307 ], [ 362954.861100003123283, 257594.2060999982059 ], [ 362935.642700001597404, 257578.42790000140667 ], [ 362932.386900000274181, 257581.989799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89355005, "LATITUDE": 18.34652928, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.356451319, "SHAPE_Area": 323.42213842299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362764.224600002169609, 257458.61089999973774 ], [ 362761.933399997651577, 257458.328999999910593 ], [ 362759.508400000631809, 257458.620700001716614 ], [ 362754.726000003516674, 257461.468400001525879 ], [ 362753.311200000345707, 257465.277399998158216 ], [ 362752.662299998104572, 257467.024599999189377 ], [ 362745.352200001478195, 257482.300500001758337 ], [ 362739.365000002086163, 257497.315900001674891 ], [ 362732.473800003528595, 257499.197799999266863 ], [ 362731.311800003051758, 257504.101599998772144 ], [ 362733.266599997878075, 257506.153200000524521 ], [ 362737.500699996948242, 257508.027300000190735 ], [ 362743.608800001442432, 257502.960299998521805 ], [ 362746.618299998342991, 257495.335200000554323 ], [ 362747.423500001430511, 257490.36089999973774 ], [ 362749.302000001072884, 257486.392200000584126 ], [ 362759.515000000596046, 257463.796700000762939 ], [ 362764.224600002169609, 257458.61089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87237732, "LATITUDE": 18.34629101, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.34010471900001, "SHAPE_Area": 574.02143904000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364984.958499997854233, 257444.690900001674891 ], [ 364980.644599996507168, 257477.797200001776218 ], [ 364978.096199996769428, 257492.975099999457598 ], [ 364975.52080000191927, 257511.319200001657009 ], [ 364984.391999997198582, 257511.180700000375509 ], [ 364986.971000000834465, 257492.414500001817942 ], [ 364990.412000000476837, 257467.111400000751019 ], [ 364993.829700000584126, 257444.552400000393391 ], [ 364984.958499997854233, 257444.690900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90906756, "LATITUDE": 18.34542544, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 717.12228266800003, "SHAPE_Area": 3122.4491336599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361121.893899999558926, 257415.606600001454353 ], [ 361144.3699000030756, 257432.927299998700619 ], [ 361145.170800000429153, 257428.2516999989748 ], [ 361131.535400003194809, 257419.696299999952316 ], [ 361130.763300001621246, 257415.679200001060963 ], [ 361136.580099999904633, 257395.461899999529123 ], [ 361144.007700003683567, 257375.468800000846386 ], [ 361145.649099998176098, 257372.104699999094009 ], [ 361148.100400000810623, 257368.325100000947714 ], [ 361154.67679999768734, 257353.602299999445677 ], [ 361156.300200000405312, 257352.34910000115633 ], [ 361156.365000002086163, 257344.750199999660254 ], [ 361154.773900002241135, 257342.204100001603365 ], [ 361149.964800000190735, 257338.787200000137091 ], [ 361144.327799998223782, 257337.896699998527765 ], [ 361137.045800000429153, 257340.792399998754263 ], [ 361124.071099996566772, 257349.341099999845028 ], [ 361114.3378000035882, 257356.016399998217821 ], [ 361105.391099996864796, 257365.020199999213219 ], [ 361100.527999997138977, 257367.935699999332428 ], [ 361094.880199998617172, 257368.311700001358986 ], [ 361082.000799998641014, 257365.673099998384714 ], [ 361073.962899997830391, 257362.651999998837709 ], [ 361057.915700003504753, 257353.232599999755621 ], [ 361067.593299999833107, 257353.100699998438358 ], [ 361077.276199996471405, 257352.33559999987483 ], [ 361080.508699998259544, 257351.517700001597404 ], [ 361085.362700000405312, 257349.657499998807907 ], [ 361089.408699996769428, 257348.001899998635054 ], [ 361093.467200003564358, 257344.868700001388788 ], [ 361095.905900001525879, 257342.566700000315905 ], [ 361098.350000001490116, 257339.631400000303984 ], [ 361100.801299996674061, 257335.851700000464916 ], [ 361102.4408999979496, 257332.698699999600649 ], [ 361106.54619999974966, 257324.077500000596046 ], [ 361116.430600002408028, 257299.671599999070168 ], [ 361118.872900001704693, 257296.947299998253584 ], [ 361122.139499999582767, 257292.118900001049042 ], [ 361125.368299998342991, 257291.723200000822544 ], [ 361128.57379999756813, 257294.071400001645088 ], [ 361135.862999998033047, 257290.331399999558926 ], [ 361135.092600002884865, 257286.103199999779463 ], [ 361135.91330000013113, 257284.42119999974966 ], [ 361141.586300000548363, 257281.09010000154376 ], [ 361137.623099997639656, 257273.036100000143051 ], [ 361123.04110000282526, 257280.938299998641014 ], [ 361118.989799998700619, 257283.227200001478195 ], [ 361116.556400001049042, 257284.896000001579523 ], [ 361111.677199997007847, 257289.711300000548363 ], [ 361107.586300000548363, 257296.643899999558926 ], [ 361106.745800003409386, 257300.647799998521805 ], [ 361100.165799997746944, 257315.792599998414516 ], [ 361092.772399999201298, 257331.775199998170137 ], [ 361087.882399998605251, 257337.856899999082088 ], [ 361083.82379999756813, 257340.990100000053644 ], [ 361078.163400001823902, 257342.843600001186132 ], [ 361075.737300001084805, 257343.668099999427795 ], [ 361067.668799996376038, 257344.235399998724461 ], [ 361058.007399998605251, 257342.467599999159575 ], [ 361048.347900003194809, 257340.488699998706579 ], [ 361046.731600001454353, 257340.897599998861551 ], [ 361043.499200001358986, 257341.715500000864267 ], [ 361041.870399996638298, 257343.602099999785423 ], [ 361041.047899998724461, 257345.495200000703335 ], [ 361041.013700000941753, 257349.505699999630451 ], [ 361042.603000000119209, 257352.262899998575449 ], [ 361047.408500000834465, 257356.10190000012517 ], [ 361061.031300000846386, 257366.134799998253584 ], [ 361074.68469999730587, 257372.579300001263618 ], [ 361085.143299996852875, 257375.409200001507998 ], [ 361089.165899999439716, 257376.497600000351667 ], [ 361093.192100003361702, 257377.163800001144409 ], [ 361095.607400000095367, 257377.605700001120567 ], [ 361104.489399999380112, 257376.200800001621246 ], [ 361111.785800002515316, 257371.616399999707937 ], [ 361117.483900003135204, 257365.330299999564886 ], [ 361130.4712999984622, 257355.304099999368191 ], [ 361145.056800000369549, 257346.979699999094009 ], [ 361147.472199998795986, 257347.421700000762939 ], [ 361145.814599998295307, 257352.685400001704693 ], [ 361139.252599999308586, 257365.719500001519918 ], [ 361137.623800002038479, 257367.605999998748302 ], [ 361133.51129999756813, 257377.071600001305342 ], [ 361132.668999999761581, 257381.28660000115633 ], [ 361131.038400001823902, 257383.384199999272823 ], [ 361122.727099999785423, 257412.447000000625849 ], [ 361121.893899999558926, 257415.606600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "C9-272-T81", "PARCEL_NAM": "215", "ACRE": null, "LONGITUDE": -64.88890055, "LATITUDE": 18.3459398, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.702810452599998, "SHAPE_Area": 194.63218009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363241.674900002777576, 257434.644799999892712 ], [ 363245.751500003039837, 257429.400800000876188 ], [ 363245.8108000010252, 257422.435199998319149 ], [ 363243.425999999046326, 257418.404899999499321 ], [ 363238.61150000244379, 257415.621300000697374 ], [ 363231.31700000166893, 257419.994600001722574 ], [ 363228.064699999988079, 257423.134300000965595 ], [ 363241.674900002777576, 257434.644799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87141838, "LATITUDE": 18.34535746, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.31932888599999, "SHAPE_Area": 692.57249844199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365085.034699998795986, 257434.533100001513958 ], [ 365091.494199998676777, 257433.530499998480082 ], [ 365096.461599998176098, 257418.372400000691414 ], [ 365095.77929999679327, 257403.801399998366833 ], [ 365093.601300001144409, 257375.497000001370907 ], [ 365092.037299998104572, 257369.784699998795986 ], [ 365084.9746999964118, 257346.928800001740456 ], [ 365076.355200000107288, 257317.516199998557568 ], [ 365070.689400002360344, 257320.002999998629093 ], [ 365087.94820000231266, 257376.50620000064373 ], [ 365090.822800002992153, 257417.692999999970198 ], [ 365085.034699998795986, 257434.533100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "NL", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85843139000001, "LATITUDE": 18.34664773, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.311436334700005, "SHAPE_Area": 461.00703476000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366456.299500003457069, 257515.448499999940395 ], [ 366450.642700001597404, 257516.879900000989437 ], [ 366448.204000003635883, 257519.18189999833703 ], [ 366446.557199999690056, 257523.179200001060963 ], [ 366448.893399998545647, 257532.908700000494719 ], [ 366452.075499996542931, 257538.000900000333786 ], [ 366456.875699996948242, 257542.473200000822544 ], [ 366460.088299997150898, 257543.977099999785423 ], [ 366464.920800000429153, 257544.649999998509884 ], [ 366467.350500002503395, 257543.403299998492002 ], [ 366469.796400003135204, 257540.256900001317263 ], [ 366470.656700000166893, 257533.931200001388788 ], [ 366469.063799999654293, 257531.596099998801947 ], [ 366466.652099996805191, 257530.73200000077486 ], [ 366465.053900003433228, 257529.030099999159575 ], [ 366464.306900002062321, 257522.057900000363588 ], [ 366461.922100000083447, 257518.027699999511242 ], [ 366459.517599999904633, 257516.319200001657009 ], [ 366456.299500003457069, 257515.448499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9054873, "LATITUDE": 18.34527025, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.50292569499999, "SHAPE_Area": 1275.28172036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361525.623700000345707, 257351.57209999859333 ], [ 361520.0945999994874, 257338.0168999992311 ], [ 361511.324100002646446, 257326.33500000089407 ], [ 361504.929300002753735, 257319.738699998706579 ], [ 361495.332699999213219, 257310.372099999338388 ], [ 361487.294699996709824, 257307.350999999791384 ], [ 361480.041500002145767, 257306.86939999833703 ], [ 361472.764899998903275, 257309.131900001317263 ], [ 361469.530699998140335, 257310.160900000482798 ], [ 361466.29280000180006, 257311.611999999731779 ], [ 361463.019000001251698, 257317.284800000488758 ], [ 361456.092000000178814, 257373.167899999767542 ], [ 361463.339800000190735, 257374.282699998468161 ], [ 361464.950699999928474, 257374.506900001317263 ], [ 361471.87049999833107, 257319.468100000172853 ], [ 361473.499300003051758, 257317.581599999219179 ], [ 361484.800300002098083, 257316.19649999961257 ], [ 361490.428300000727177, 257318.142400000244379 ], [ 361496.835600003600121, 257323.261100001633167 ], [ 361505.611599996685982, 257334.309799998998642 ], [ 361508.800800003111362, 257338.557700000703335 ], [ 361514.373099997639656, 257347.047100000083447 ], [ 361518.327299997210503, 257356.156500000506639 ], [ 361523.024999998509884, 257372.660199999809265 ], [ 361525.623700000345707, 257351.57209999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "C9-239-T79", "PARCEL_NAM": "404 REM", "ACRE": null, "LONGITUDE": -64.89189531, "LATITUDE": 18.34524761, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.26403500500001, "SHAPE_Area": 503.47626927699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362913.670500002801418, 257317.969700001180172 ], [ 362905.600199997425079, 257318.747999999672174 ], [ 362903.16499999910593, 257320.627900000661612 ], [ 362903.134499996900558, 257324.216299999505281 ], [ 362907.938199996948242, 257328.266399998217821 ], [ 362917.516800001263618, 257339.74379999935627 ], [ 362923.081900000572205, 257349.077500000596046 ], [ 362925.421700000762939, 257358.384700000286102 ], [ 362926.924599997699261, 257371.273800000548363 ], [ 362943.079700000584126, 257368.028499998152256 ], [ 362927.930600002408028, 257347.850600000470877 ], [ 362913.670500002801418, 257317.969700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87595629, "LATITUDE": 18.34479929, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.58681470900001, "SHAPE_Area": 840.82922449199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364581.880599997937679, 257337.5337999984622 ], [ 364587.523000001907349, 257337.79109999909997 ], [ 364596.408600002527237, 257335.964000001549721 ], [ 364605.319399997591972, 257331.181800000369549 ], [ 364611.823899999260902, 257324.902199998497963 ], [ 364618.3462999984622, 257316.511799998581409 ], [ 364620.806599996984005, 257311.67680000141263 ], [ 364623.245300002396107, 257309.374699998646975 ], [ 364626.522699996829033, 257303.279899999499321 ], [ 364636.306400001049042, 257290.694299999624491 ], [ 364637.971100002527237, 257284.586199998855591 ], [ 364638.017899997532368, 257279.098200000822544 ], [ 364638.892499998211861, 257271.083799999207258 ], [ 364621.187799997627735, 257266.928100001066923 ], [ 364620.313199996948242, 257274.942499998956919 ], [ 364625.944799996912479, 257276.4662000015378 ], [ 364629.148400001227856, 257279.025600001215935 ], [ 364630.739500001072884, 257281.571699999272823 ], [ 364630.694499999284744, 257286.848700001835823 ], [ 364618.443400003015995, 257305.113600000739098 ], [ 364615.993900001049042, 257308.682100001722574 ], [ 364606.197700001299381, 257322.745200000703335 ], [ 364598.894100002944469, 257328.173900000751019 ], [ 364589.997699998319149, 257331.267499998211861 ], [ 364575.480499997735023, 257331.570799998939037 ], [ 364569.820100001990795, 257333.424300000071526 ], [ 364560.885600000619888, 257336.447500001639128 ], [ 364557.955300003290176, 257337.562399998307228 ], [ 364554.49578915379243, 257339.410450020892313 ], [ 364550.897299997508526, 257340.97069999948144 ], [ 364549.128499999642372, 257345.041799999773502 ], [ 364550.671948825533036, 257344.875546281953575 ], [ 364552.180734273686539, 257344.510250445397105 ], [ 364553.629299998283386, 257343.952100001275539 ], [ 364559.1875, 257341.854100000113249 ], [ 364564.583099998533726, 257340.142099998891354 ], [ 364570.27862303116126, 257338.842745517380536 ], [ 364576.055177084053867, 257337.971695600397652 ], [ 364581.880599997937679, 257337.5337999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9008697, "LATITUDE": 18.34494901, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.360638287900002, "SHAPE_Area": 121.78432277899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361986.385999999940395, 257313.33559999987483 ], [ 361966.40259999781847, 257292.695999998599291 ], [ 361963.148599997162819, 257296.046900000423193 ], [ 361983.140900000929832, 257315.631099998950958 ], [ 361986.385999999940395, 257313.33559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87747606000001, "LATITUDE": 18.3449037, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.400581571800004, "SHAPE_Area": 224.163956536 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364464.407200001180172, 257307.441500000655651 ], [ 364455.544900000095367, 257306.524500001221895 ], [ 364431.949699997901917, 257331.240499999374151 ], [ 364436.755199998617172, 257335.079500000923872 ], [ 364460.350400000810623, 257310.363600000739098 ], [ 364464.407200001180172, 257307.441500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88091935, "LATITUDE": 18.34450112, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.35792838500001, "SHAPE_Area": 467.45171272699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364074.553300000727177, 257270.716299999505281 ], [ 364079.279046239040326, 257276.510230355430394 ], [ 364084.496659748838283, 257281.865490922442405 ], [ 364090.165599330153782, 257286.740470973803895 ], [ 364096.241816949797794, 257291.097291594051057 ], [ 364102.678099997341633, 257294.902100000530481 ], [ 364113.065399996936321, 257294.982700001448393 ], [ 364114.598800003528595, 257289.168600000441074 ], [ 364099.321999996900558, 257283.977299999445677 ], [ 364098.479800000786781, 257288.192299999296665 ], [ 364093.670699998736382, 257284.775499999523163 ], [ 364084.883900001645088, 257274.993200000375509 ], [ 364066.56530000269413, 257248.24549999833107 ], [ 364051.338899999856949, 257237.144000001251698 ], [ 364074.553300000727177, 257270.716299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-395-T63", "PARCEL_NAM": "143-6", "ACRE": ".17", "LONGITUDE": -64.89268235, "LATITUDE": 18.34462488, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.876473946, "SHAPE_Area": 738.10463395199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362853.670000001788139, 257261.960999999195337 ], [ 362826.258900001645088, 257261.314500000327826 ], [ 362827.635999999940395, 257288.978999998420477 ], [ 362852.619099996984005, 257290.661100000143051 ], [ 362853.670000001788139, 257261.960999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-395-T63", "PARCEL_NAM": "143-8", "ACRE": ".17", "LONGITUDE": -64.89309276, "LATITUDE": 18.34461221, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.34876835, "SHAPE_Area": 640.66198785400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362808.523699998855591, 257260.747099999338388 ], [ 362785.954099997878075, 257259.717999998480082 ], [ 362783.314000003039837, 257285.660900000482798 ], [ 362804.265500001609325, 257287.310100000351667 ], [ 362809.101599998772144, 257287.5608000010252 ], [ 362808.523699998855591, 257260.747099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89167483, "LATITUDE": 18.34440211, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.416843782000001, "SHAPE_Area": 157.90889842000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362962.651600003242493, 257247.654199998825788 ], [ 362961.88849999755621, 257242.581799998879433 ], [ 362955.240599997341633, 257243.225900001823902 ], [ 362955.232299998402596, 257244.651299998164177 ], [ 362955.225100003182888, 257245.895700000226498 ], [ 362947.335299998521805, 257247.106699999421835 ], [ 362943.47749999910593, 257250.63230000063777 ], [ 362928.928300000727177, 257260.285199999809265 ], [ 362931.081399999558926, 257261.961300000548363 ], [ 362935.091300003230572, 257264.527300000190735 ], [ 362934.577200002968311, 257262.141499999910593 ], [ 362936.254199996590614, 257260.569299999624491 ], [ 362943.171800002455711, 257253.9662000015378 ], [ 362946.480400003492832, 257252.799199998378754 ], [ 362962.651600003242493, 257247.654199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-395-T63", "PARCEL_NAM": "143-5", "ACRE": ".17", "LONGITUDE": -64.89266818, "LATITUDE": 18.34429823, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.738221336, "SHAPE_Area": 702.70173656500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362853.982900001108646, 257225.233300000429153 ], [ 362845.116999998688698, 257224.738600000739098 ], [ 362830.610600002110004, 257223.775400001555681 ], [ 362829.550700001418591, 257253.530999999493361 ], [ 362853.732900001108646, 257254.573300000280142 ], [ 362853.916299998760223, 257233.043200001120567 ], [ 362853.982900001108646, 257225.233300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90301046, "LATITUDE": 18.34427289, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.77244634900001, "SHAPE_Area": 599.81272829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361780.744999997317791, 257220.67119999974966 ], [ 361779.209700003266335, 257211.581599999219179 ], [ 361716.117700003087521, 257234.496599998325109 ], [ 361719.270999997854233, 257242.9662000015378 ], [ 361780.744999997317791, 257220.67119999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89018206, "LATITUDE": 18.34396877, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 528.21186101900003, "SHAPE_Area": 1838.92027437 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363107.386100001633167, 257201.342799998819828 ], [ 363138.047600001096725, 257199.060600001364946 ], [ 363161.448600001633167, 257197.141199998557568 ], [ 363168.691100001335144, 257198.889199998229742 ], [ 363175.111000001430511, 257202.5304000005126 ], [ 363180.711999997496605, 257207.642400000244379 ], [ 363183.102200001478195, 257211.039500001817942 ], [ 363184.673500001430511, 257215.907499998807907 ], [ 363190.161200001835823, 257234.317600000649691 ], [ 363189.313500002026558, 257239.165800001472235 ], [ 363187.670299999415874, 257242.740899998694658 ], [ 363201.372299998998642, 257243.486299999058247 ], [ 363206.201099999248981, 257244.581300001591444 ], [ 363202.198399998247623, 257241.171100001782179 ], [ 363199.010899998247623, 257236.712000001221895 ], [ 363195.096199996769428, 257222.95890000090003 ], [ 363192.73480000346899, 257216.184599999338388 ], [ 363191.174300000071526, 257210.05009999871254 ], [ 363187.986800000071526, 257205.590999998152256 ], [ 363185.600299999117851, 257201.771800000220537 ], [ 363181.601099997758865, 257197.939399998635054 ], [ 363171.973899997770786, 257192.161100000143051 ], [ 363160.707099996507168, 257189.535799998790026 ], [ 363152.63849999755621, 257190.103000000119209 ], [ 363123.587899997830391, 257192.609499998390675 ], [ 363096.957999996840954, 257194.924600001424551 ], [ 363092.922899998724461, 257195.313799999654293 ], [ 363071.134499996900558, 257197.246399998664856 ], [ 363045.312700003385544, 257199.357099998742342 ], [ 363022.7179000005126, 257201.283100001513958 ], [ 363013.034999996423721, 257202.048200000077486 ], [ 362998.506999999284744, 257203.618099998682737 ], [ 362978.324000000953674, 257206.40819999948144 ], [ 362979.875500001013279, 257213.598099999129772 ], [ 362991.986400000751019, 257211.7972999997437 ], [ 363006.519799999892712, 257209.594300001859665 ], [ 363013.7837999984622, 257208.809300001710653 ], [ 363027.503700003027916, 257207.443999998271465 ], [ 363057.358800001442432, 257205.155200000852346 ], [ 363078.337300002574921, 257203.638199999928474 ], [ 363107.386100001633167, 257201.342799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89211988, "LATITUDE": 18.34410164, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.809728425900005, "SHAPE_Area": 180.93010879799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362911.236400000751019, 257225.068599998950958 ], [ 362904.794900000095367, 257223.960400000214577 ], [ 362898.445100001990795, 257212.087200000882149 ], [ 362897.728699997067451, 257201.526700001209974 ], [ 362892.887299999594688, 257201.909200001507998 ], [ 362892.871100001037121, 257203.808899998664856 ], [ 362894.388400003314018, 257215.009300000965595 ], [ 362898.340800002217293, 257224.329799998551607 ], [ 362900.716600000858307, 257229.415500000119209 ], [ 362909.578900001943111, 257230.332400001585484 ], [ 362911.236400000751019, 257225.068599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88916052, "LATITUDE": 18.34391314, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.743061019, "SHAPE_Area": 402.37187536900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363224.387800000607967, 257192.167899999767542 ], [ 363227.701099999248981, 257181.851399999111891 ], [ 363225.316399998962879, 257177.821100000292063 ], [ 363218.880199998617172, 257176.079700000584126 ], [ 363215.539899997413158, 257189.562399998307228 ], [ 363214.711999997496605, 257192.088700000196695 ], [ 363211.420199997723103, 257199.87220000103116 ], [ 363208.135600000619888, 257206.8114 ], [ 363204.068099997937679, 257211.0 ], [ 363198.400600001215935, 257213.697799999266863 ], [ 363192.73480000346899, 257216.184599999338388 ], [ 363195.096199996769428, 257222.95890000090003 ], [ 363203.999799996614456, 257219.021000001579523 ], [ 363212.122299998998642, 257212.121399998664856 ], [ 363216.209600001573563, 257205.61089999973774 ], [ 363221.146300002932549, 257194.041200000792742 ], [ 363224.387800000607967, 257192.167899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88248605, "LATITUDE": 18.34321342, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 347.33208425700002, "SHAPE_Area": 553.086986131 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363938.75110000371933, 257106.822200000286102 ], [ 363946.076300002634525, 257098.860599998384714 ], [ 363949.350100003182888, 257093.187899999320507 ], [ 363971.375799998641014, 257063.392900001257658 ], [ 363964.930699996650219, 257062.706799998879433 ], [ 363964.084899999201298, 257067.344000000506639 ], [ 363939.598800003528595, 257101.973999999463558 ], [ 363923.366400003433228, 257114.295699998736382 ], [ 363916.847599998116493, 257122.263900000602007 ], [ 363913.571999996900558, 257128.147700000554323 ], [ 363906.984899997711182, 257144.136900000274181 ], [ 363905.343500003218651, 257147.500900000333786 ], [ 363902.897600002586842, 257150.647300001233816 ], [ 363898.801299996674061, 257158.213199999183416 ], [ 363896.3445999994874, 257162.625999998301268 ], [ 363884.962700001895428, 257173.509700000286102 ], [ 363869.558200001716614, 257183.304999999701977 ], [ 363861.451899997889996, 257188.304900001734495 ], [ 363863.042999997735023, 257190.851100001484156 ], [ 363887.363600000739098, 257175.640299998223782 ], [ 363894.67620000243187, 257169.156300000846386 ], [ 363899.569799996912479, 257162.652399998158216 ], [ 363901.191399998962879, 257161.610199999064207 ], [ 363911.014600001275539, 257144.380899999290705 ], [ 363916.795500002801418, 257128.385099999606609 ], [ 363920.069300003349781, 257122.712400000542402 ], [ 363927.396200001239777, 257114.539700001478195 ], [ 363932.255699999630451, 257112.046399999409914 ], [ 363938.75110000371933, 257106.822200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86274353, "LATITUDE": 18.34235738, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 661.60996810100005, "SHAPE_Area": 2834.2915616300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365947.520400002598763, 256905.203400000929832 ], [ 365940.23480000346899, 256908.521200001239777 ], [ 366024.590800002217293, 257039.878600001335144 ], [ 366026.131499998271465, 257048.334899999201298 ], [ 366024.369699999690056, 257065.841299999505281 ], [ 366024.249200001358986, 257079.983600001782179 ], [ 366025.797100000083447, 257087.595600001513958 ], [ 366024.818099997937679, 257107.852600000798702 ], [ 366023.128200002014637, 257116.915699999779463 ], [ 366016.494300000369549, 257138.39299999922514 ], [ 366013.22410000115633, 257143.6435999982059 ], [ 366009.923299998044968, 257152.482500001788139 ], [ 366009.001900002360344, 257165.984900001436472 ], [ 366010.494000002741814, 257180.140399999916553 ], [ 366014.343999996781349, 257201.492400001734495 ], [ 366023.233199998736382, 257199.243099998682737 ], [ 366018.623700000345707, 257172.396499998867512 ], [ 366017.932499997317791, 257158.880800001323223 ], [ 366020.428700000047684, 257149.824299998581409 ], [ 366022.890799999237061, 257144.778200000524521 ], [ 366024.516000002622604, 257143.313799999654293 ], [ 366031.979599997401237, 257119.09910000115633 ], [ 366034.553199999034405, 257100.966099999845028 ], [ 366034.571199998259544, 257098.855399999767542 ], [ 366034.691699996590614, 257084.713100001215935 ], [ 366033.215700000524521, 257068.657900001853704 ], [ 366035.024400003254414, 257045.663499999791384 ], [ 366033.480099998414516, 257037.629299998283386 ], [ 366032.689900003373623, 257035.723000001162291 ], [ 365947.520400002598763, 256905.203400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89210818, "LATITUDE": 18.34344912, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.214089262, "SHAPE_Area": 294.11686439900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362923.267499998211861, 257137.985399998724461 ], [ 362922.506099998950958, 257132.701900001615286 ], [ 362898.278999999165535, 257136.936599999666214 ], [ 362885.945100001990795, 257164.910999998450279 ], [ 362891.576700001955032, 257166.434799998998642 ], [ 362894.044200003147125, 257160.755499999970198 ], [ 362902.265600003302097, 257142.246500000357628 ], [ 362923.267499998211861, 257137.985399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87522713, "LATITUDE": 18.34316506, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.79359137, "SHAPE_Area": 759.80666432099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364651.635600000619888, 257100.413400001823902 ], [ 364690.8158999979496, 257139.364199999719858 ], [ 364720.401299998164177, 257168.737199999392033 ], [ 364724.483199998736382, 257162.859999999403954 ], [ 364700.500600002706051, 257138.388000000268221 ], [ 364678.114500001072884, 257115.82880000025034 ], [ 364651.730899997055531, 257089.226199999451637 ], [ 364651.635600000619888, 257100.413400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88215292, "LATITUDE": 18.3428754, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.30508253, "SHAPE_Area": 247.054796232 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363975.39299999922514, 257065.114500001072884 ], [ 363971.375799998641014, 257063.392900001257658 ], [ 363949.350100003182888, 257093.187899999320507 ], [ 363946.076300002634525, 257098.860599998384714 ], [ 363938.75110000371933, 257106.822200000286102 ], [ 363952.402699999511242, 257113.477800000458956 ], [ 363950.062899999320507, 257104.1706000007689 ], [ 363950.115000002086163, 257098.049300000071526 ], [ 363971.329099997878075, 257068.880899999290705 ], [ 363975.39299999922514, 257065.114500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88898997, "LATITUDE": 18.34211924, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.683044546, "SHAPE_Area": 149.78264850100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363241.486100003123283, 256983.536299999803305 ], [ 363235.84009999781847, 256983.701200000941753 ], [ 363220.869800001382828, 257037.196400001645088 ], [ 363241.486100003123283, 256983.536299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88332667, "LATITUDE": 18.34189019, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 640.69324540599996, "SHAPE_Area": 2112.2663359500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363779.580600000917912, 256954.587600000202656 ], [ 363761.911899998784065, 256946.210299998521805 ], [ 363740.227799996733665, 256935.900299999862909 ], [ 363729.790700003504753, 256930.537599999457598 ], [ 363721.76349999755621, 256926.25 ], [ 363704.908299997448921, 256917.035000000149012 ], [ 363687.252099998295307, 256907.18019999936223 ], [ 363683.243900001049042, 256904.403200000524521 ], [ 363685.5962999984622, 256912.232900001108646 ], [ 363688.796400003135204, 256915.214400000870228 ], [ 363712.870700001716614, 256928.921399999409914 ], [ 363740.166599996387959, 256943.076999999582767 ], [ 363953.006899997591972, 257042.555300001055002 ], [ 363957.8412000015378, 257043.017099998891354 ], [ 363960.265500001609325, 257042.4037000015378 ], [ 363962.69879999756813, 257040.7347999997437 ], [ 363963.519500002264977, 257039.052799999713898 ], [ 363946.653499998152256, 257031.104299999773502 ], [ 363942.656099997460842, 257027.0608000010252 ], [ 363941.930699996650219, 257017.555599998682737 ], [ 363933.890900000929832, 257014.745600000023842 ], [ 363929.008100003004074, 257019.982999999076128 ], [ 363925.773900002241135, 257021.011999998241663 ], [ 363921.742299996316433, 257020.978999998420477 ], [ 363910.497100003063679, 257015.820700000971556 ], [ 363892.023800000548363, 257007.22580000013113 ], [ 363873.550599999725819, 256998.630899999290705 ], [ 363855.077299997210503, 256990.035900000482798 ], [ 363833.393200002610683, 256979.725900001823902 ], [ 363818.132600001990795, 256972.635000001639128 ], [ 363798.856600001454353, 256963.611299999058247 ], [ 363779.580600000917912, 256954.587600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89240631, "LATITUDE": 18.34216655, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.894281210499997, "SHAPE_Area": 320.75439659800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362876.6858000010252, 257021.291600000113249 ], [ 362875.380699999630451, 256985.184000000357628 ], [ 362866.502300001680851, 256986.166799999773502 ], [ 362867.809199996292591, 257022.063400000333786 ], [ 362876.6858000010252, 257021.291600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88888236, "LATITUDE": 18.34180316, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.629879669000005, "SHAPE_Area": 219.2268498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363253.864900000393391, 256950.284800000488758 ], [ 363244.973899997770786, 256952.745200000703335 ], [ 363235.84009999781847, 256983.701200000941753 ], [ 363241.486100003123283, 256983.536299999803305 ], [ 363253.864900000393391, 256950.284800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.87494774, "LATITUDE": 18.34149889, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.82581044, "SHAPE_Area": 445.77314595500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364722.240800000727177, 256952.803599998354912 ], [ 364730.266199998557568, 256957.302200000733137 ], [ 364739.112300001084805, 256960.118900001049042 ], [ 364739.97070000320673, 256954.004200000315905 ], [ 364735.141800001263618, 256952.909200001507998 ], [ 364731.938199996948242, 256950.349800001829863 ], [ 364730.338100001215935, 256948.859099999070168 ], [ 364718.344099998474121, 256936.939699999988079 ], [ 364711.924199998378754, 256933.298500001430511 ], [ 364705.473700001835823, 256933.245700001716614 ], [ 364702.230499997735023, 256935.330099999904633 ], [ 364699.757600001990795, 256941.642700001597404 ], [ 364700.540500000119209, 256944.393300000578165 ], [ 364703.744199998676777, 256946.9527000002563 ], [ 364708.5658999979496, 256948.892000000923872 ], [ 364719.031800001859665, 256950.877500001341105 ], [ 364722.240800000727177, 256952.803599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-2501-T83", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.88056312000001, "LATITUDE": 18.34202266, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 477.080412835, "SHAPE_Area": 709.59758192000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364196.859600000083447, 256909.240200001746416 ], [ 364195.252300001680851, 256908.593800000846386 ], [ 364192.01630000025034, 256909.833799999207258 ], [ 364191.98929999768734, 256913.0 ], [ 364184.642599999904633, 256923.494600001722574 ], [ 364176.489600002765656, 256933.982500001788139 ], [ 364168.354500003159046, 256942.359700001776218 ], [ 364166.72749999910593, 256944.035100001841784 ], [ 364161.029399998486042, 256950.321299999952316 ], [ 364148.810599997639656, 256964.786699999123812 ], [ 364143.10530000180006, 256971.917199999094009 ], [ 364134.129799999296665, 256984.298300001770258 ], [ 364128.422600001096725, 256991.639800000935793 ], [ 364124.347900003194809, 256996.672699999064207 ], [ 364117.827299997210503, 257004.852000001817942 ], [ 364117.008400000631809, 257006.322999998927116 ], [ 364112.114799998700619, 257012.826799999922514 ], [ 364108.052599996328354, 257016.382199998944998 ], [ 364100.747299998998642, 257022.021899998188019 ], [ 364095.864399999380112, 257027.259300000965595 ], [ 364094.235600002110004, 257029.145799998193979 ], [ 364090.151900000870228, 257035.234099999070168 ], [ 364084.441200003027916, 257042.997800000011921 ], [ 364076.281000003218651, 257054.330099999904633 ], [ 364072.215300001204014, 257058.307599999010563 ], [ 364066.538699999451637, 257062.0608000010252 ], [ 364058.407200001180172, 257070.015799999237061 ], [ 364046.150700002908707, 257088.913899999111891 ], [ 364048.557099997997284, 257090.411200001835823 ], [ 364058.373099997639656, 257074.026299998164177 ], [ 364069.747800000011921, 257063.986900001764297 ], [ 364078.685500003397465, 257056.038499999791384 ], [ 364080.314300000667572, 257054.151999998837709 ], [ 364088.467399999499321, 257043.664000000804663 ], [ 364091.748400002717972, 257037.146999999880791 ], [ 364101.524800002574921, 257025.405799999833107 ], [ 364108.82660000026226, 257020.188200000673532 ], [ 364114.517499998211861, 257014.746300000697374 ], [ 364134.910899996757507, 256987.260000001639128 ], [ 364151.215199999511242, 256966.495200000703335 ], [ 364169.94200000166893, 256945.328000001609325 ], [ 364180.519299998879433, 256934.226599998772144 ], [ 364187.04900000244379, 256924.991900000721216 ], [ 364194.393899999558926, 256914.708399999886751 ], [ 364196.829000003635883, 256912.828499998897314 ], [ 364196.859600000083447, 256909.240200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "WESSELHOLFT FAMILY CEMETERY", "ACRE": null, "LONGITUDE": -64.86894396, "LATITUDE": 18.34069479, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 375.35890998999997, "SHAPE_Area": 7179.5140891399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365333.148599997162819, 256917.427000001072884 ], [ 365410.298600003123283, 256909.137699998915195 ], [ 365389.376199997961521, 256869.865499999374151 ], [ 365376.357299998402596, 256840.366999998688698 ], [ 365358.135799996554852, 256802.221000000834465 ], [ 365341.993400000035763, 256803.988800000399351 ], [ 365327.479800000786781, 256803.870000001043081 ], [ 365315.394100002944469, 256802.715599998831749 ], [ 365303.319200001657009, 256800.294700000435114 ], [ 365300.882200002670288, 256802.38569999858737 ], [ 365307.246399998664856, 256812.570300001651049 ], [ 365310.414099998772144, 256819.351199999451637 ], [ 365315.928800001740456, 256834.595100000500679 ], [ 365318.223700001835823, 256849.179299999028444 ], [ 365333.148599997162819, 256917.427000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87970483, "LATITUDE": 18.3407231, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.08005959499999, "SHAPE_Area": 390.88149550899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364225.688299998641014, 256838.126499999314547 ], [ 364217.664700001478195, 256833.416799999773502 ], [ 364213.588200002908707, 256838.660799998790026 ], [ 364211.950400002300739, 256841.602699998766184 ], [ 364210.30179999768734, 256845.811000000685453 ], [ 364208.635300002992153, 256852.130199998617172 ], [ 364209.382200002670288, 256859.102400001138449 ], [ 364210.15259999781847, 256863.330600000917912 ], [ 364210.120200000703335, 256867.129999998956919 ], [ 364214.03490000218153, 256880.883099999278784 ], [ 364220.562700003385544, 256871.859499998390675 ], [ 364218.237300001084805, 256860.863600000739098 ], [ 364218.325400002300739, 256850.520799998193979 ], [ 364219.979400001466274, 256845.679200001060963 ], [ 364225.688299998641014, 256838.126499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8798333, "LATITUDE": 18.3404275, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.488563939299993, "SHAPE_Area": 151.569564998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364216.905199997127056, 256827.922100000083447 ], [ 364190.424500003457069, 256812.717799998819828 ], [ 364189.564300000667572, 256819.043499998748302 ], [ 364214.453900001943111, 256831.701799999922514 ], [ 364215.280000001192093, 256829.386500000953674 ], [ 364216.905199997127056, 256827.922100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "C9-303-T87", "PARCEL_NAM": "20-34", "ACRE": null, "LONGITUDE": -64.87551718, "LATITUDE": 18.34021714, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.590749537400001, "SHAPE_Area": 189.441203401 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364675.959499999880791, 256800.859600000083447 ], [ 364638.874499998986721, 256799.922800000756979 ], [ 364638.035800002515316, 256803.715599998831749 ], [ 364675.099200002849102, 256807.185400001704693 ], [ 364675.959499999880791, 256800.859600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9081947, "LATITUDE": 18.33987467, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.58759017899999, "SHAPE_Area": 417.24728323599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361216.12950000166893, 256737.28940000012517 ], [ 361250.278999999165535, 256728.601399999111891 ], [ 361248.740599997341633, 256724.046900000423193 ], [ 361241.974522266187705, 256726.42133913829457 ], [ 361235.07274535408942, 256728.36639557412127 ], [ 361228.062488807539921, 256729.874398304498754 ], [ 361220.971400000154972, 256730.939399998635054 ], [ 361208.952871910762042, 256733.092935928201769 ], [ 361197.079499997198582, 256735.940000001341105 ], [ 361192.044799998402596, 256737.065400000661612 ], [ 361183.598613789246883, 256738.420636684895726 ], [ 361175.073992788966279, 256739.131667451787507 ], [ 361166.520000003278255, 256739.194400001317263 ], [ 361159.98759999871254, 256739.53830000013113 ], [ 361159.161399997770786, 256744.067999999970198 ], [ 361170.086448923975695, 256743.612967729830416 ], [ 361180.98516523570288, 256742.72881210851483 ], [ 361191.840700000524521, 256741.416900001466274 ], [ 361204.048092876852024, 256739.723839609679999 ], [ 361216.12950000166893, 256737.28940000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88625099, "LATITUDE": 18.3394032, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.5346204672699999, "SHAPE_Area": 0.54957340414 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363525.323299996554852, 256703.058200001716614 ], [ 363524.494199998676777, 256702.776099998503923 ], [ 363524.483000002801418, 256704.098000001162291 ], [ 363525.323299996554852, 256703.058200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88647838, "LATITUDE": 18.33860636, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.877902752400004, "SHAPE_Area": 157.10069825299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363504.439999997615814, 256595.798700001090765 ], [ 363502.008500002324581, 256597.256400000303984 ], [ 363500.374300003051758, 256599.776200000196695 ], [ 363497.69820000231266, 256629.940600000321865 ], [ 363503.335199996829033, 256630.8310999982059 ], [ 363504.439999997615814, 256595.798700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89801059, "LATITUDE": 18.33824291, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 528.90293177700005, "SHAPE_Area": 2673.1067778299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362326.669200003147125, 256556.606100000441074 ], [ 362247.717100001871586, 256548.149399999529123 ], [ 362213.880800001323223, 256544.495000001043081 ], [ 362155.876599997282028, 256538.109600000083447 ], [ 362154.983999997377396, 256548.2347999997437 ], [ 362221.852200001478195, 256555.3260000012815 ], [ 362259.718299999833107, 256559.224500000476837 ], [ 362302.418700002133846, 256563.584800001233816 ], [ 362337.06139999628067, 256567.245799999684095 ], [ 362343.493900001049042, 256569.409400001168251 ], [ 362351.515699997544289, 256574.330200001597404 ], [ 362357.098700001835823, 256581.553100001066923 ], [ 362358.675399996340275, 256585.787799999117851 ], [ 362359.420500002801418, 256592.971099998801947 ], [ 362355.356600001454353, 256596.737500000745058 ], [ 362353.727799996733665, 256598.624099999666214 ], [ 362352.088200002908707, 256601.776999998837709 ], [ 362352.068400003015995, 256604.098900001496077 ], [ 362352.838799998164177, 256608.327100001275539 ], [ 362356.832599997520447, 256612.792700000107288 ], [ 362362.458800002932549, 256614.949700001627207 ], [ 362368.923699997365475, 256613.313900001347065 ], [ 362370.543499998748302, 256612.482799999415874 ], [ 362374.600199997425079, 256609.560699999332428 ], [ 362376.263199999928474, 256603.663600001484156 ], [ 362376.299199998378754, 256599.442099999636412 ], [ 362374.709899999201298, 256596.684799998998642 ], [ 362369.907999999821186, 256592.423700001090765 ], [ 362369.170000001788139, 256584.396099999547005 ], [ 362367.593400001525879, 256580.161299999803305 ], [ 362362.821999996900558, 256572.311799999326468 ], [ 362357.229999996721745, 256566.144299998879433 ], [ 362354.829000003635883, 256564.013700000941753 ], [ 362350.824400000274181, 256560.814500000327826 ], [ 362346.00450000166893, 256558.664200000464916 ], [ 362326.669200003147125, 256556.606100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88695655, "LATITUDE": 18.3384173, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.98659334800001, "SHAPE_Area": 285.94751975499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363435.151100002229214, 256588.898800000548363 ], [ 363419.048199996352196, 256586.022700000554323 ], [ 363413.411200001835823, 256585.132199998944998 ], [ 363416.600500002503395, 256589.380199998617172 ], [ 363421.431199997663498, 256590.26410000026226 ], [ 363477.790299996733665, 256600.435699999332428 ], [ 363485.036300003528595, 256601.761599998921156 ], [ 363485.074100002646446, 256597.328899998217821 ], [ 363456.892700001597404, 256592.454199999570847 ], [ 363435.151100002229214, 256588.898800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2151-T82", "PARCEL_NAM": "173A-88", "ACRE": ".03", "LONGITUDE": -64.87701934, "LATITUDE": 18.33837053, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.657957045700002, "SHAPE_Area": 153.35674379299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364509.943999998271465, 256600.228500001132488 ], [ 364507.609600000083447, 256590.287999998778105 ], [ 364493.060000002384186, 256594.390799999237061 ], [ 364495.394400000572205, 256604.331300001591444 ], [ 364505.903399996459484, 256601.250900000333786 ], [ 364509.943999998271465, 256600.228500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8891913, "LATITUDE": 18.33734589, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 467.66503143199998, "SHAPE_Area": 1814.2315978 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363228.908699996769428, 256583.403499998152256 ], [ 363220.650600001215935, 256475.652899999171495 ], [ 363211.365699999034405, 256371.593400001525879 ], [ 363201.633699998259544, 256360.906300000846386 ], [ 363216.387900002300739, 256522.091499999165535 ], [ 363222.254000000655651, 256590.744899999350309 ], [ 363228.908699996769428, 256583.403499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "173A-87", "ACRE": null, "LONGITUDE": -64.87687453, "LATITUDE": 18.33833219, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.614757142400002, "SHAPE_Area": 168.75998065300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364526.108000002801418, 256595.92790000140667 ], [ 364523.771799996495247, 256586.198499999940395 ], [ 364507.609600000083447, 256590.287999998778105 ], [ 364509.943999998271465, 256600.228500001132488 ], [ 364526.108000002801418, 256595.92790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "173A-86", "ACRE": null, "LONGITUDE": -64.87673315000001, "LATITUDE": 18.33829543, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.463964765599997, "SHAPE_Area": 142.54821518 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364539.847699999809265, 256592.240600001066923 ], [ 364537.511500000953674, 256582.511199999600649 ], [ 364523.771799996495247, 256586.198499999940395 ], [ 364526.108000002801418, 256595.92790000140667 ], [ 364528.532300002872944, 256595.314399998635054 ], [ 364539.847699999809265, 256592.240600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "173A-77", "ACRE": null, "LONGITUDE": -64.87548406000001, "LATITUDE": 18.33799578, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.138802540999997, "SHAPE_Area": 140.93145258000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364671.551700003445148, 256561.021299999207258 ], [ 364671.629100002348423, 256551.944899998605251 ], [ 364657.108300000429153, 256552.670400001108646 ], [ 364657.016500003635883, 256563.435400001704693 ], [ 364664.287699997425079, 256561.806200001388788 ], [ 364671.551700003445148, 256561.021299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2344-T83", "PARCEL_NAM": "57B-12A", "ACRE": ".11", "LONGITUDE": -64.87202684, "LATITUDE": 18.33761736, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.290001911, "SHAPE_Area": 622.44768298500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365049.247599996626377, 256524.004799999296665 ], [ 365034.915600001811981, 256502.56700000166893 ], [ 365011.422899998724461, 256515.251400001347065 ], [ 365021.759300000965595, 256532.434599999338388 ], [ 365049.247599996626377, 256524.004799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88672648, "LATITUDE": 18.33765607, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.778164094499999, "SHAPE_Area": 106.890238981 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363477.030000001192093, 256500.371100001037121 ], [ 363469.634800001978874, 256516.564800001680851 ], [ 363475.260999999940395, 256518.721799999475479 ], [ 363482.657999999821186, 256502.31700000166893 ], [ 363477.030000001192093, 256500.371100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8911588, "LATITUDE": 18.33659584, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 648.54469339699995, "SHAPE_Area": 3362.9536051700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363128.904799997806549, 256284.528499998152256 ], [ 363120.105499997735023, 256276.223799999803305 ], [ 363023.363099999725819, 256368.313200000673532 ], [ 362892.521799996495247, 256487.565600000321865 ], [ 362899.690499998629093, 256497.9679000005126 ], [ 363039.510899998247623, 256365.912200000137091 ], [ 363128.904799997806549, 256284.528499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "173A-70", "ACRE": null, "LONGITUDE": -64.87351918, "LATITUDE": 18.33738812, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.660850258, "SHAPE_Area": 662.95796403099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364890.643200002610683, 256494.63120000064373 ], [ 364879.520300000905991, 256475.119600001722574 ], [ 364856.041900001466274, 256486.11540000140667 ], [ 364863.102700002491474, 256509.182399999350309 ], [ 364880.920699998736382, 256500.040100000798702 ], [ 364890.643200002610683, 256494.63120000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2255-T83", "PARCEL_NAM": "173A-69", "ACRE": null, "LONGITUDE": -64.87332247000001, "LATITUDE": 18.33728311, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.763620875100003, "SHAPE_Area": 417.51953356199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364906.848600000143051, 256485.475699998438358 ], [ 364895.729299999773502, 256465.541900001466274 ], [ 364885.187899999320507, 256472.421700000762939 ], [ 364879.520300000905991, 256475.119600001722574 ], [ 364890.643200002610683, 256494.63120000064373 ], [ 364900.367499999701977, 256489.011300001293421 ], [ 364906.848600000143051, 256485.475699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2255-T83", "PARCEL_NAM": "173A-68", "ACRE": ".10", "LONGITUDE": -64.87316023, "LATITUDE": 18.33719135, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.196726662700001, "SHAPE_Area": 487.55759925500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364925.487300001084805, 256474.651399999856949 ], [ 364913.559799998998642, 256454.922100000083447 ], [ 364895.729299999773502, 256465.541900001466274 ], [ 364906.848600000143051, 256485.475699998438358 ], [ 364923.053999997675419, 256476.320199999958277 ], [ 364925.487300001084805, 256474.651399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2254-T83", "PARCEL_NAM": "173A-65", "ACRE": ".04", "LONGITUDE": -64.87275127, "LATITUDE": 18.33694623, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.845586878000006, "SHAPE_Area": 288.33157604600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364962.506499998271465, 256447.886999998241663 ], [ 364961.37219999730587, 256432.904800001531839 ], [ 364950.016500003635883, 256434.95549999922514 ], [ 364944.35080000013113, 256437.442200001329184 ], [ 364949.824799999594688, 256457.108399998396635 ], [ 364962.506499998271465, 256447.886999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2254-T83", "PARCEL_NAM": "173A-63", "ACRE": null, "LONGITUDE": -64.87242768, "LATITUDE": 18.33682373, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.194537103099997, "SHAPE_Area": 64.03417528 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364997.169100001454353, 256430.260200001299381 ], [ 364996.83389999717474, 256426.8462999984622 ], [ 364987.970799997448921, 256428.511100001633167 ], [ 364979.090499997138977, 256429.704999998211861 ], [ 364981.303199999034405, 256433.6858000010252 ], [ 364988.418499998748302, 256432.149500001221895 ], [ 364997.169100001454353, 256430.260200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2254-T83", "PARCEL_NAM": "173A-62", "ACRE": null, "LONGITUDE": -64.87226191000001, "LATITUDE": 18.3367913, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.354629983700001, "SHAPE_Area": 58.456136563999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365015.313799999654293, 256426.342599999159575 ], [ 365014.984499998390675, 256423.463100001215935 ], [ 365007.354599997401237, 256424.870099999010563 ], [ 364996.83389999717474, 256426.8462999984622 ], [ 364997.169100001454353, 256430.260200001299381 ], [ 365007.887199997901917, 256427.946100000292063 ], [ 365015.313799999654293, 256426.342599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88774393, "LATITUDE": 18.33629704, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.179627422, "SHAPE_Area": 379.98990301100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363395.134300000965595, 256364.178800001740456 ], [ 363350.941699996590614, 256345.662999998778105 ], [ 363350.840999998152256, 256357.483500000089407 ], [ 363391.867700003087521, 256369.007199998944998 ], [ 363395.134300000965595, 256364.178800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88770277, "LATITUDE": 18.33624271, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.874391495, "SHAPE_Area": 291.394693399 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363350.990299999713898, 256339.963899999856949 ], [ 363350.941699996590614, 256345.662999998778105 ], [ 363395.134300000965595, 256364.178800001740456 ], [ 363398.404500000178814, 256358.928199999034405 ], [ 363360.637299999594688, 256343.420400001108646 ], [ 363350.990299999713898, 256339.963899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-CC GREEN BELT", "ACRE": ".083", "LONGITUDE": -64.85663144, "LATITUDE": 18.33592237, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.202731169000003, "SHAPE_Area": 252.07523217799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366675.601800002157688, 256345.431600000709295 ], [ 366677.259400002658367, 256340.167899999767542 ], [ 366643.383500002324581, 256341.157200001180172 ], [ 366646.518799997866154, 256351.737500000745058 ], [ 366675.601800002157688, 256345.431600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87408049, "LATITUDE": 18.3358945, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.6587177838, "SHAPE_Area": 108.76287693499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364825.992899999022484, 256321.849700000137091 ], [ 364816.30460000038147, 256323.248100001364946 ], [ 364804.19370000064373, 256325.048799999058247 ], [ 364800.925300002098083, 256330.088300000876188 ], [ 364826.761500000953674, 256326.289000000804663 ], [ 364825.992899999022484, 256321.849700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85595532000001, "LATITUDE": 18.3351593, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 492.60222070100002, "SHAPE_Area": 2164.6983430199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366775.934500001370907, 256210.51969999819994 ], [ 366771.836400002241135, 256218.296599999070168 ], [ 366767.765299998223782, 256222.907299999147654 ], [ 366764.489699997007847, 256228.79109999909997 ], [ 366755.517700001597404, 256240.75 ], [ 366751.443000003695488, 256245.782900001853704 ], [ 366745.7449000030756, 256252.069099999964237 ], [ 366744.119699999690056, 256253.533500000834465 ], [ 366736.009800001978874, 256258.95549999922514 ], [ 366727.903499998152256, 256263.955400001257658 ], [ 366715.749499998986721, 256270.822000000625849 ], [ 366674.462099999189377, 256289.904699999839067 ], [ 366672.019799999892712, 256292.628899998962879 ], [ 366669.573899999260902, 256295.775299999862909 ], [ 366667.921700000762939, 256300.405900001525879 ], [ 366667.847999997437, 256309.060100000351667 ], [ 366678.875600002706051, 256339.758900001645088 ], [ 366677.259400002658367, 256340.167899999767542 ], [ 366675.601800002157688, 256345.431600000709295 ], [ 366691.774800002574921, 256340.075599998235703 ], [ 366688.564000003039837, 256338.360599998384714 ], [ 366682.262699998915195, 256320.788199998438358 ], [ 366676.739000000059605, 256306.599700000137091 ], [ 366676.776799999177456, 256302.167100001126528 ], [ 366679.220899999141693, 256299.231800001114607 ], [ 366680.856899999082088, 256296.500900000333786 ], [ 366703.514499999582767, 256287.187199998646975 ], [ 366721.327100001275539, 256278.678100001066923 ], [ 366729.431599996984005, 256273.889299999922514 ], [ 366740.777500003576279, 256267.227200001478195 ], [ 366744.022600002586842, 256264.931699998676777 ], [ 366749.706299997866154, 256260.334199998527765 ], [ 366752.960299998521805, 256256.983300000429153 ], [ 366763.543099999427795, 256245.248700000345707 ], [ 366773.335699997842312, 256231.607700001448393 ], [ 366779.861800000071526, 256222.795200001448393 ], [ 366788.052599996328354, 256207.874600000679493 ], [ 366795.485600002110004, 256187.2483000010252 ], [ 366797.935099996626377, 256183.679800000041723 ], [ 366798.759400002658367, 256181.575599998235703 ], [ 366801.2449000030756, 256173.785399999469519 ], [ 366793.214100003242493, 256169.920000001788139 ], [ 366780.041599996387959, 256201.687300000339746 ], [ 366775.934500001370907, 256210.51969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-BB GREEN BELT", "ACRE": ".352", "LONGITUDE": -64.85548859, "LATITUDE": 18.33533376, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 475.97951729300001, "SHAPE_Area": 1971.2566426000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366691.774800002574921, 256340.075599998235703 ], [ 366765.375799998641014, 256314.080200001597404 ], [ 366769.427199997007847, 256311.791299998760223 ], [ 366776.732500001788139, 256306.151599999517202 ], [ 366783.245999999344349, 256298.816599998623133 ], [ 366804.555299997329712, 256258.461100000888109 ], [ 366814.340800002217293, 256245.66440000012517 ], [ 366827.328100003302097, 256235.638199999928474 ], [ 366858.081299997866154, 256222.590999998152256 ], [ 366854.168399997055531, 256208.626800000667572 ], [ 366825.011699996888638, 256223.586899999529123 ], [ 366824.181999996304512, 256226.324400000274181 ], [ 366804.614699997007847, 256251.49549999833107 ], [ 366780.159199997782707, 256282.537099998444319 ], [ 366752.535999998450279, 256306.797899998724461 ], [ 366723.364900000393391, 256323.446600001305342 ], [ 366703.144100002944469, 256330.669399999082088 ], [ 366687.831399999558926, 256329.699700001627207 ], [ 366684.679799996316433, 256321.019099999219179 ], [ 366682.262699998915195, 256320.788199998438358 ], [ 366688.564000003039837, 256338.360599998384714 ], [ 366691.774800002574921, 256340.075599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85961055, "LATITUDE": 18.33388436, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.52572725300001, "SHAPE_Area": 1214.6005414900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366352.675499998033047, 256105.941700000315905 ], [ 366343.2837999984622, 256072.511999998241663 ], [ 366336.991599999368191, 256053.884300000965595 ], [ 366328.104099996387959, 256055.922499999403954 ], [ 366330.436800003051758, 256066.074099998921156 ], [ 366332.031400002539158, 256068.198100000619888 ], [ 366340.663500003516674, 256096.133099999278784 ], [ 366342.978100001811981, 256108.395399998873472 ], [ 366349.187700003385544, 256136.732799999415874 ], [ 366349.97240000218153, 256139.272300001233816 ], [ 366349.092399999499321, 256147.920000001788139 ], [ 366346.605099998414516, 256155.92119999974966 ], [ 366339.272799998521805, 256164.727099999785423 ], [ 366337.669100001454353, 256163.658500000834465 ], [ 366334.398900002241135, 256168.909099999815226 ], [ 366336.00620000064373, 256169.555500000715256 ], [ 366335.973800003528595, 256173.354899998754263 ], [ 366342.390100002288818, 256177.418200001120567 ], [ 366345.654899999499321, 256172.800900001078844 ], [ 366352.996299996972084, 256162.939599998295307 ], [ 366357.931199997663498, 256151.580899998545647 ], [ 366358.750100001692772, 256150.109900001436472 ], [ 366358.861599996685982, 256137.02309999987483 ], [ 366358.089500002563, 256133.006000000983477 ], [ 366352.675499998033047, 256105.941700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "111111111111", "MAP": "D9-6179-T79", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.90812452, "LATITUDE": 18.3343682, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.87255180700001, "SHAPE_Area": 781.84761092799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361257.929399996995926, 256118.705699998885393 ], [ 361175.62610000371933, 256124.998199999332428 ], [ 361181.1858000010252, 256134.96510000154376 ], [ 361227.185199998319149, 256130.697500001639128 ], [ 361258.658299997448921, 256127.788699999451637 ], [ 361257.929399996995926, 256118.705699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8591805, "LATITUDE": 18.3332631, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.91660223899999, "SHAPE_Area": 1211.1943275599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366427.503600001335144, 256030.560400001704693 ], [ 366438.928599998354912, 256014.610800001770258 ], [ 366443.800599999725819, 256010.639899998903275 ], [ 366449.464599996805191, 256008.36430000141263 ], [ 366446.313100002706051, 255999.683600001037121 ], [ 366439.023900002241135, 256003.423599999397993 ], [ 366437.404100000858307, 256004.254799999296665 ], [ 366432.5337999984622, 256008.014600001275539 ], [ 366431.713100001215935, 256009.696600001305342 ], [ 366421.087200000882149, 256026.497099999338388 ], [ 366416.209799997508526, 256031.101300001144409 ], [ 366412.147699996829033, 256034.656599998474121 ], [ 366410.526000000536442, 256035.698800001293421 ], [ 366391.09179999679327, 256045.250100001692772 ], [ 366368.439599998295307, 256053.930599998682737 ], [ 366359.530599996447563, 256058.5016999989748 ], [ 366356.274700000882149, 256062.063700001686811 ], [ 366352.988300003111362, 256069.214000001549721 ], [ 366350.542400002479553, 256072.360300000756979 ], [ 366347.306400001049042, 256073.600400000810623 ], [ 366343.2837999984622, 256072.511999998241663 ], [ 366352.675499998033047, 256105.941700000315905 ], [ 366352.772600002586842, 256094.543400000780821 ], [ 366353.614799998700619, 256090.328400000929832 ], [ 366356.082299999892712, 256084.649099998176098 ], [ 366359.392099998891354, 256074.754799999296665 ], [ 366366.728000000119209, 256065.526700001209974 ], [ 366377.260399997234344, 256059.702300000935793 ], [ 366400.737000003457069, 256048.917599998414516 ], [ 366412.880199998617172, 256043.317400000989437 ], [ 366427.503600001335144, 256030.560400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5268-T92", "PARCEL_NAM": "19-2-HH GREEN BELT", "ACRE": ".451", "LONGITUDE": -64.85625377, "LATITUDE": 18.33342452, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.744594565, "SHAPE_Area": 1777.7293413499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366707.189699999988079, 256045.092999998480082 ], [ 366711.993400000035763, 256049.14299999922514 ], [ 366674.627899996936321, 256081.134500000625849 ], [ 366673.009900003671646, 256081.754599999636412 ], [ 366648.728799998760223, 256092.321600001305342 ], [ 366638.957699999213219, 256103.42960000038147 ], [ 366680.968699999153614, 256094.063099998980761 ], [ 366706.126199997961521, 256075.270599998533726 ], [ 366741.809000000357628, 256051.497999999672174 ], [ 366758.0287000015378, 256040.653900001198053 ], [ 366751.589000001549721, 256039.334600001573563 ], [ 366732.226700000464916, 256040.442699998617172 ], [ 366707.189699999988079, 256045.092999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8553056, "LATITUDE": 18.33338495, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.44759854399999, "SHAPE_Area": 527.98457450599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366808.781499996781349, 256046.346599999815226 ], [ 366799.130900003015995, 256043.312300000339746 ], [ 366796.710199996829033, 256043.503600001335144 ], [ 366791.085699997842312, 256041.135499998927116 ], [ 366789.412000000476837, 256048.2989999987185 ], [ 366795.041799999773502, 256050.0337999984622 ], [ 366798.234700001776218, 256053.859700001776218 ], [ 366797.271899998188019, 256072.216899998486042 ], [ 366796.402699999511242, 256079.598099999129772 ], [ 366794.759499996900558, 256083.173200000077486 ], [ 366791.521600000560284, 256084.624400001019239 ], [ 366795.544200003147125, 256085.712799999862909 ], [ 366805.95610000193119, 256094.030600000172853 ], [ 366806.017300002276897, 256086.853999998420477 ], [ 366808.781499996781349, 256046.346599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89919332, "LATITUDE": 18.33305291, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.16284036600001, "SHAPE_Area": 1785.99338919 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362169.514899998903275, 255978.401099998503923 ], [ 362166.742799997329712, 255925.182900000363588 ], [ 362153.035400003194809, 255925.070700000971556 ], [ 362158.396200001239777, 256053.037300001829863 ], [ 362172.107100002467632, 256052.727299999445677 ], [ 362169.514899998903275, 255978.401099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8597363, "LATITUDE": 18.3314647, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1898.4298294, "SHAPE_Area": 8555.3882011500009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366348.0996999964118, 255791.163699999451637 ], [ 366315.130800001323223, 255780.339200001209974 ], [ 366284.575499996542931, 255770.167700000107288 ], [ 366249.194799996912479, 255758.479100000113249 ], [ 366217.827799998223782, 255748.934300001710653 ], [ 366214.624099999666214, 255746.374899998307228 ], [ 366213.83219999819994, 255744.679699998348951 ], [ 366213.866300001740456, 255740.669199999421835 ], [ 366215.493400000035763, 255738.99379999935627 ], [ 366208.290500000119209, 255732.602000001817942 ], [ 366204.190600000321865, 255740.589999999850988 ], [ 366196.107699997723103, 255742.845899999141693 ], [ 366193.699500001966953, 255741.559599999338388 ], [ 366186.521799996495247, 255732.212799999862909 ], [ 366179.328000001609325, 255724.765599999576807 ], [ 366160.953599996864796, 255704.561299998313189 ], [ 366149.744400002062321, 255695.181499999016523 ], [ 366147.347000002861023, 255692.628699999302626 ], [ 366146.359099999070168, 255713.941100001335144 ], [ 366155.244699999690056, 255712.114000000059605 ], [ 366160.867299996316433, 255714.69310000166297 ], [ 366164.067400000989437, 255717.674600001424551 ], [ 366184.803099997341633, 255744.653200000524521 ], [ 366192.00959999859333, 255750.622800000011921 ], [ 366194.423100002110004, 255751.275800000876188 ], [ 366208.904399998486042, 255755.193999998271465 ], [ 366237.048000000417233, 255764.501400001347065 ], [ 366270.015100002288818, 255775.537000000476837 ], [ 366271.622299998998642, 255776.183400001376867 ], [ 366273.217000000178814, 255778.307399999350309 ], [ 366271.467699997127056, 255794.336199998855591 ], [ 366272.189499996602535, 255804.2635000012815 ], [ 366272.91669999808073, 255813.557599999010563 ], [ 366273.686999998986721, 255817.785799998790026 ], [ 366277.607100002467632, 255830.905699998140335 ], [ 366279.205300003290176, 255832.607500001788139 ], [ 366279.183799996972084, 255835.140399999916553 ], [ 366270.802400000393391, 255872.435400001704693 ], [ 366275.615099996328354, 255875.430100001394749 ], [ 366278.971600003540516, 255860.047699999064207 ], [ 366283.134400002658367, 255844.671999998390675 ], [ 366286.36150000244379, 255844.487300001084805 ], [ 366296.748199999332428, 255855.760299999266863 ], [ 366309.559299997985363, 255866.419799998402596 ], [ 366312.748599998652935, 255870.66780000180006 ], [ 366315.919900000095367, 255877.026500001549721 ], [ 366317.482199996709824, 255882.94990000128746 ], [ 366316.618299998342991, 255889.697900000959635 ], [ 366314.942800000309944, 255897.072399999946356 ], [ 366311.681500002741814, 255901.267599999904633 ], [ 366309.214100003242493, 255906.946899998933077 ], [ 366309.955600000917912, 255914.552400000393391 ], [ 366309.926899999380112, 255917.92960000038147 ], [ 366309.903499998152256, 255920.673700001090765 ], [ 366313.872100003063679, 255928.094399999827147 ], [ 366317.074000000953674, 255930.864799998700619 ], [ 366317.864100001752377, 255932.771099999547005 ], [ 366326.650799997150898, 255942.553399998694658 ], [ 366329.0337999984622, 255946.794700000435114 ], [ 366334.622299998998642, 255953.384399998933077 ], [ 366338.589100003242493, 255961.016199998557568 ], [ 366342.579300001263618, 255965.903999999165535 ], [ 366344.170299999415874, 255968.450199998915195 ], [ 366344.955099999904633, 255970.989700000733137 ], [ 366346.526299998164177, 255975.857700001448393 ], [ 366349.693999998271465, 255982.638599999248981 ], [ 366350.468000002205372, 255986.444699998944998 ], [ 366349.593299999833107, 255994.459100000560284 ], [ 366348.754699997603893, 255998.251899998635054 ], [ 366347.104299999773502, 256002.671300001442432 ], [ 366344.654799997806549, 256006.239900000393391 ], [ 366342.196299999952316, 256010.863800000399351 ], [ 366328.285800002515316, 256034.603500001132488 ], [ 366327.443499997258186, 256038.818500000983477 ], [ 366328.104099996387959, 256055.922499999403954 ], [ 366336.991599999368191, 256053.884300000965595 ], [ 366336.204999998211861, 256051.555799998342991 ], [ 366336.289499998092651, 256041.635099999606609 ], [ 366337.137199997901917, 256036.786899998784065 ], [ 366344.4983000010252, 256024.603700000792742 ], [ 366348.5945999994874, 256017.037900000810623 ], [ 366355.122400000691414, 256008.014299999922514 ], [ 366355.943099997937679, 256006.332299999892712 ], [ 366356.780000001192093, 256002.750500001013279 ], [ 366356.8141999989748, 255998.739999998360872 ], [ 366358.55629999935627, 255983.555500000715256 ], [ 366357.784100003540516, 255979.538400001823902 ], [ 366356.209299996495247, 255975.092599999159575 ], [ 366353.846100002527237, 255968.52930000051856 ], [ 366348.282799996435642, 255958.984600000083447 ], [ 366341.110500000417233, 255949.00450000166893 ], [ 366337.127499997615814, 255943.272399999201298 ], [ 366330.761500000953674, 255933.298900000751019 ], [ 366329.16330000013113, 255931.597100000828505 ], [ 366321.177500002086163, 255922.454700000584126 ], [ 366318.029600001871586, 255913.35190000012517 ], [ 366318.045699998736382, 255911.452199999243021 ], [ 366318.889799997210503, 255907.026099998503923 ], [ 366322.151000000536442, 255902.830899998545647 ], [ 366325.469800002872944, 255891.88120000064373 ], [ 366326.367799997329712, 255881.122800000011921 ], [ 366325.590300001204014, 255877.739000000059605 ], [ 366324.803700000047684, 255875.410500001162291 ], [ 366323.230700001120567, 255870.753600001335144 ], [ 366320.842299997806549, 255867.145399998873472 ], [ 366316.853900000452995, 255862.046500001102686 ], [ 366292.063199996948242, 255837.778999999165535 ], [ 366284.143899999558926, 255820.826699998229742 ], [ 366282.554700002074242, 255818.069400001317263 ], [ 366281.769900001585484, 255815.529899999499321 ], [ 366281.197400003671646, 255788.083000000566244 ], [ 366282.849600002169609, 255783.452500000596046 ], [ 366285.275700002908707, 255782.627999998629093 ], [ 366289.318099997937679, 255781.394499998539686 ], [ 366315.852600000798702, 255790.266499999910593 ], [ 366341.584499999880791, 255798.709800001233816 ], [ 366355.254100002348423, 255803.254599999636412 ], [ 366358.468500003218651, 255804.547499999403954 ], [ 366361.656000003218651, 255809.006499998271465 ], [ 366362.39580000191927, 255816.823100000619888 ], [ 366363.992200002074242, 255818.736000001430511 ], [ 366367.903300002217293, 255832.911200001835823 ], [ 366375.068400003015995, 255843.735700000077486 ], [ 366376.657700002193451, 255846.492899999022484 ], [ 366378.252300001680851, 255848.616900000721216 ], [ 366386.227300003170967, 255859.025699999183416 ], [ 366398.988099999725819, 255875.595499999821186 ], [ 366402.163000002503395, 255881.5320999994874 ], [ 366403.755800001323223, 255883.86710000038147 ], [ 366406.109999999403954, 255891.485800001770258 ], [ 366406.88400000333786, 255895.291799999773502 ], [ 366408.365299999713898, 255910.713700000196695 ], [ 366409.936599999666214, 255915.581799998879433 ], [ 366412.32320000231266, 255919.401000000536442 ], [ 366420.317900002002716, 255927.488000001758337 ], [ 366423.528800003230572, 255929.203000001609325 ], [ 366433.974899999797344, 255933.510400000959635 ], [ 366449.267899997532368, 255936.801899999380112 ], [ 366461.366200000047684, 255936.478799998760223 ], [ 366473.486000001430511, 255933.622600000351667 ], [ 366479.141000002622604, 255932.402399998158216 ], [ 366488.05179999768734, 255927.620099999010563 ], [ 366495.35360000282526, 255922.40260000154376 ], [ 366498.609399996697903, 255918.840599998831749 ], [ 366518.138899996876717, 255898.102200001478195 ], [ 366512.523500002920628, 255894.678700000047684 ], [ 366509.314400002360344, 255892.752599999308586 ], [ 366499.532600000500679, 255905.127099998295307 ], [ 366489.770499996840954, 255915.179699998348951 ], [ 366484.090400002896786, 255919.355099998414516 ], [ 366471.138999998569489, 255925.159699998795986 ], [ 366460.640799999237061, 255926.973600000143051 ], [ 366458.218199998140335, 255927.375999998301268 ], [ 366449.343400001525879, 255927.936599999666214 ], [ 366435.659500002861023, 255925.080400001257658 ], [ 366426.82599999755621, 255920.786200001835823 ], [ 366425.22240000218153, 255919.717599999159575 ], [ 366423.622299998998642, 255918.22690000012517 ], [ 366418.033900000154972, 255911.637200001627207 ], [ 366415.773199997842312, 255893.042500000447035 ], [ 366414.999200001358986, 255889.2364999987185 ], [ 366413.433399997651577, 255883.735199999064207 ], [ 366410.258500002324581, 255877.798599999397993 ], [ 366407.097900003194809, 255870.17339999973774 ], [ 366400.710400000214577, 255862.732900001108646 ], [ 366398.318400003015995, 255859.546900000423193 ], [ 366381.571099996566772, 255837.667199999094009 ], [ 366379.979999996721745, 255835.120999999344349 ], [ 366373.651799999177456, 255820.714899998158216 ], [ 366371.326399996876717, 255809.719000000506639 ], [ 366376.171400003135204, 255808.914200000464916 ], [ 366388.221199996769428, 255814.290199998766184 ], [ 366391.520099997520447, 255805.662399999797344 ], [ 366383.482199996709824, 255802.64130000025034 ], [ 366382.704700000584126, 255799.257399998605251 ], [ 366385.951499998569489, 255796.750900000333786 ], [ 366388.406400002539158, 255792.549100000411272 ], [ 366395.735100001096725, 255784.165300000458956 ], [ 366401.417099997401237, 255779.778900001198053 ], [ 366412.744999997317791, 255775.22749999910593 ], [ 366428.880199998617172, 255774.304099999368191 ], [ 366432.101899996399879, 255774.752700001001358 ], [ 366439.353299997746944, 255775.445300001651049 ], [ 366440.235200002789497, 255766.586599998176098 ], [ 366428.151299998164177, 255765.221099998801947 ], [ 366414.44030000269413, 255765.531100001186132 ], [ 366404.744800001382828, 255767.773800000548363 ], [ 366397.45380000025034, 255771.724899999797344 ], [ 366391.768299996852875, 255776.533500000834465 ], [ 366387.70440000295639, 255780.299899999052286 ], [ 366382.817900002002716, 255785.959399998188019 ], [ 366380.373800002038479, 255788.894799999892712 ], [ 366373.08110000193119, 255793.05689999833703 ], [ 366363.390900000929832, 255794.666400000452995 ], [ 366360.162100002169609, 255795.062100000679493 ], [ 366348.0996999964118, 255791.163699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85635454, "LATITUDE": 18.33312707, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 482.800519608, "SHAPE_Area": 1981.2997569900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366774.194499999284744, 256036.142099998891354 ], [ 366764.540399998426437, 256033.530000001192093 ], [ 366751.653800003230572, 256031.735800001770258 ], [ 366741.171700000762939, 256031.649999998509884 ], [ 366727.451800003647804, 256033.015399999916553 ], [ 366717.758100003004074, 256035.046999998390675 ], [ 366715.328299999237061, 256036.293600000441074 ], [ 366711.298600003123283, 256036.049600001424551 ], [ 366708.094899997115135, 256033.490200001746416 ], [ 366709.039700001478195, 256017.243700001388788 ], [ 366706.687299996614456, 256009.414000000804663 ], [ 366700.252999998629093, 256007.461500000208616 ], [ 366692.997900001704693, 256007.191100001335144 ], [ 366689.745700001716614, 256010.330800000578165 ], [ 366680.802599996328354, 256018.912500001490116 ], [ 366671.877400003373623, 256025.383299998939037 ], [ 366670.255800001323223, 256026.425500001758337 ], [ 366656.4746999964118, 256034.967599999159575 ], [ 366645.139600001275539, 256040.363200001418591 ], [ 366631.394500002264977, 256044.683699999004602 ], [ 366622.514300003647804, 256045.877599999308586 ], [ 366616.875500001013279, 256045.198100000619888 ], [ 366607.206900000572205, 256044.274599999189377 ], [ 366595.133799999952316, 256041.642700001597404 ], [ 366592.64299999922514, 256050.066100001335144 ], [ 366615.183799996972084, 256054.47239999845624 ], [ 366635.364900000393391, 256051.893399998545647 ], [ 366654.766800001263618, 256046.141499999910593 ], [ 366675.835199996829033, 256034.070599999278784 ], [ 366689.634199999272823, 256023.417700000107288 ], [ 366696.136900000274181, 256017.349199999123812 ], [ 366699.353100001811981, 256018.431000001728535 ], [ 366699.967000000178814, 256041.02309999987483 ], [ 366707.189699999988079, 256045.092999998480082 ], [ 366732.226700000464916, 256040.442699998617172 ], [ 366751.589000001549721, 256039.334600001573563 ], [ 366758.0287000015378, 256040.653900001198053 ], [ 366759.6503000035882, 256039.611699998378754 ], [ 366789.412000000476837, 256048.2989999987185 ], [ 366791.085699997842312, 256041.135499998927116 ], [ 366785.455899998545647, 256039.400699999183416 ], [ 366774.194499999284744, 256036.142099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85700569, "LATITUDE": 18.33230428, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 485.40711156700002, "SHAPE_Area": 2174.3953648699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366624.975699998438358, 255946.261599998921156 ], [ 366625.817900002002716, 255942.046599999070168 ], [ 366629.969999998807907, 255927.937300000339746 ], [ 366632.541799999773502, 255910.015399999916553 ], [ 366641.589199997484684, 255889.191199999302626 ], [ 366643.239600002765656, 255884.771699998527765 ], [ 366645.726899996399879, 255876.770500000566244 ], [ 366654.880400002002716, 255843.49269999936223 ], [ 366647.697300001978874, 255834.778999999165535 ], [ 366639.5929000005126, 255839.567899998277426 ], [ 366639.5658999979496, 255842.734000001102686 ], [ 366638.711000002920628, 255848.426600001752377 ], [ 366641.923699997365475, 255849.930500000715256 ], [ 366642.710199996829033, 255852.25899999961257 ], [ 366634.38459999859333, 255883.010499998927116 ], [ 366623.69030000269413, 255907.831999998539686 ], [ 366621.989600002765656, 255918.161699999123812 ], [ 366621.114900000393391, 255926.176100000739098 ], [ 366616.968299999833107, 255939.652100000530481 ], [ 366616.12780000269413, 255943.655999999493361 ], [ 366615.272900000214577, 255949.348600000143051 ], [ 366615.244199998676777, 255952.72580000013113 ], [ 366615.139899998903275, 255964.968400001525879 ], [ 366616.63740000128746, 255978.490600001066923 ], [ 366615.755599997937679, 255987.349300000816584 ], [ 366613.250299997627735, 255997.461300000548363 ], [ 366609.132500000298023, 256007.560100000351667 ], [ 366605.052299998700619, 256013.226300001144409 ], [ 366603.425300002098083, 256014.901700001209974 ], [ 366584.76690000295639, 256028.047899998724461 ], [ 366581.493100002408028, 256033.720600001513958 ], [ 366583.825699999928474, 256043.87220000103116 ], [ 366587.007799997925758, 256048.964499998837709 ], [ 366592.64299999922514, 256050.066100001335144 ], [ 366595.133799999952316, 256041.642700001597404 ], [ 366593.528399996459484, 256040.785199999809265 ], [ 366591.122100003063679, 256039.287799999117851 ], [ 366591.163400001823902, 256034.43299999833107 ], [ 366609.001199997961521, 256022.968899998813868 ], [ 366609.821900002658367, 256021.286800000816584 ], [ 366611.441699996590614, 256020.455699998885393 ], [ 366618.799199998378754, 256008.694699998944998 ], [ 366618.815399996936321, 256006.795000001788139 ], [ 366622.087399996817112, 256001.333299998193979 ], [ 366624.603399999439716, 255989.954900000244379 ], [ 366624.689699999988079, 255979.823100000619888 ], [ 366624.9037000015378, 255954.704700000584126 ], [ 366624.975699998438358, 255946.261599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5261-T92", "PARCEL_NAM": "19-2-T GREENBELT", "ACRE": ".166", "LONGITUDE": -64.85842633, "LATITUDE": 18.33304189, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.88211653499999, "SHAPE_Area": 610.44697436000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366491.142899997532368, 256038.047400001436472 ], [ 366465.623199999332428, 256004.696800000965595 ], [ 366449.464599996805191, 256008.36430000141263 ], [ 366456.674699999392033, 256013.911699999123812 ], [ 366478.177199997007847, 256045.540600001811981 ], [ 366491.142899997532368, 256038.047400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85520337, "LATITUDE": 18.33290671, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.76533534199999, "SHAPE_Area": 572.83302195299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366814.626999996602535, 256022.752000000327826 ], [ 366823.821999996900558, 255984.619300000369549 ], [ 366815.821800000965595, 255977.165600001811981 ], [ 366810.778899997472763, 256001.188900001347065 ], [ 366801.560599997639656, 256042.065600000321865 ], [ 366799.130900003015995, 256043.312300000339746 ], [ 366808.781499996781349, 256046.346599999815226 ], [ 366814.626999996602535, 256022.752000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89971905, "LATITUDE": 18.33307998, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.016170735700001, "SHAPE_Area": 66.721360794500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362109.001900002360344, 255982.549899999052286 ], [ 362104.968500003218651, 255982.728000000119209 ], [ 362105.618400000035763, 256001.098499998450279 ], [ 362108.845399998128414, 256000.913800001144409 ], [ 362109.001900002360344, 255982.549899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-11 GREENBELT", "ACRE": "0.71", "LONGITUDE": -64.85558872, "LATITUDE": 18.33261426, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.15294318400001, "SHAPE_Area": 1177.4421975800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366770.531999997794628, 255933.447500001639128 ], [ 366763.269400000572205, 255933.682599999010563 ], [ 366764.253200002014637, 255944.83219999819994 ], [ 366765.234899997711182, 255971.443500000983477 ], [ 366766.661899998784065, 255973.807900000363588 ], [ 366768.836300000548363, 256002.534400001168251 ], [ 366764.540399998426437, 256033.530000001192093 ], [ 366774.194499999284744, 256036.142099998891354 ], [ 366779.302100002765656, 256004.519900001585484 ], [ 366776.229699999094009, 255986.55180000141263 ], [ 366774.717799998819828, 255974.718199998140335 ], [ 366784.630900003015995, 255946.934999998658895 ], [ 366770.531999997794628, 255933.447500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89972722, "LATITUDE": 18.33291586, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.2641012717, "SHAPE_Area": 56.594526678100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362104.968500003218651, 255982.728000000119209 ], [ 362109.001900002360344, 255982.549899999052286 ], [ 362105.207699999213219, 255954.654500000178814 ], [ 362104.968500003218651, 255982.728000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5262-T92", "PARCEL_NAM": "19-2-Q GREENBELT", "ACRE": "1.157", "LONGITUDE": -64.85937869, "LATITUDE": 18.33216394, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 631.25134671399996, "SHAPE_Area": 4791.1681955399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366377.865699999034405, 255893.998799998313189 ], [ 366365.128300003707409, 255874.685100000351667 ], [ 366341.010899998247623, 255866.0439000017941 ], [ 366322.600599996745586, 255850.061200000345707 ], [ 366320.199600003659725, 255847.930599998682737 ], [ 366303.389300003647804, 255833.438700001686811 ], [ 366284.143899999558926, 255820.826699998229742 ], [ 366292.063199996948242, 255837.778999999165535 ], [ 366316.853900000452995, 255862.046500001102686 ], [ 366320.842299997806549, 255867.145399998873472 ], [ 366323.230700001120567, 255870.753600001335144 ], [ 366324.803700000047684, 255875.410500001162291 ], [ 366361.751999996602535, 255892.389299999922514 ], [ 366364.693199999630451, 255925.766100000590086 ], [ 366318.029600001871586, 255913.35190000012517 ], [ 366321.177500002086163, 255922.454700000584126 ], [ 366329.16330000013113, 255931.597100000828505 ], [ 366330.761500000953674, 255933.298900000751019 ], [ 366375.038599997758865, 255941.893899999558926 ], [ 366386.955200001597404, 255962.889699999243021 ], [ 366405.232500001788139, 255994.492199998348951 ], [ 366431.713100001215935, 256009.696600001305342 ], [ 366432.5337999984622, 256008.014600001275539 ], [ 366437.404100000858307, 256004.254799999296665 ], [ 366439.023900002241135, 256003.423599999397993 ], [ 366446.313100002706051, 255999.683600001037121 ], [ 366442.373199999332428, 255988.885600000619888 ], [ 366443.263999998569489, 255978.971500001847744 ], [ 366416.740299999713898, 255968.833000000566244 ], [ 366409.495999999344349, 255967.296100001782179 ], [ 366387.144100002944469, 255940.726399999111891 ], [ 366384.001500003039837, 255930.99040000140667 ], [ 366377.865699999034405, 255893.998799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85805075, "LATITUDE": 18.33245506, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 355.22269710199998, "SHAPE_Area": 1555.18718592 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366542.220399998128414, 255910.964899998158216 ], [ 366534.004399999976158, 255928.840599998831749 ], [ 366529.107199996709824, 255935.766600001603365 ], [ 366522.566799998283386, 255946.267799999564886 ], [ 366519.291199997067451, 255952.151599999517202 ], [ 366517.651600003242493, 255955.30460000038147 ], [ 366506.993299998342991, 255975.904500000178814 ], [ 366502.92400000244379, 255980.304200001060963 ], [ 366500.485299997031689, 255982.606199998408556 ], [ 366495.616800002753735, 255986.155000001192093 ], [ 366485.903300002217293, 255990.508400000631809 ], [ 366446.313100002706051, 255999.683600001037121 ], [ 366449.464599996805191, 256008.36430000141263 ], [ 366465.623199999332428, 256004.696800000965595 ], [ 366489.054799996316433, 255999.189100001007318 ], [ 366493.10080000013113, 255997.533399999141693 ], [ 366500.386399999260902, 255994.215599998831749 ], [ 366506.876400001347065, 255989.624600000679493 ], [ 366512.576399996876717, 255983.127399999648333 ], [ 366515.835799999535084, 255979.143300000578165 ], [ 366519.12219999730587, 255971.993000000715256 ], [ 366520.749200001358986, 255970.317600000649691 ], [ 366521.582500003278255, 255967.157999999821186 ], [ 366524.845499999821186, 255962.7516999989748 ], [ 366526.481499999761581, 255960.020899999886751 ], [ 366529.776799999177456, 255951.815200001001358 ], [ 366540.401000000536442, 255935.22580000013113 ], [ 366543.667599998414516, 255930.397399999201298 ], [ 366547.781900003552437, 255920.72069999948144 ], [ 366549.410700000822544, 255918.834199998527765 ], [ 366551.068199999630451, 255913.57039999961853 ], [ 366554.401399999856949, 255900.932100001722574 ], [ 366556.904799997806549, 255891.031199999153614 ], [ 366548.055200003087521, 255888.636700000613928 ], [ 366545.551700003445148, 255898.53770000115037 ], [ 366542.220399998128414, 255910.964899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85638126000001, "LATITUDE": 18.3326131, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.665062017, "SHAPE_Area": 580.75029678099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366670.098600000143051, 255950.219500001519918 ], [ 366670.852799996733665, 255956.347300000488758 ], [ 366672.436599999666214, 255959.737799998372793 ], [ 366674.03660000115633, 255961.22859999909997 ], [ 366690.733599998056889, 255989.018500000238419 ], [ 366693.82940000295639, 256004.242499999701977 ], [ 366692.997900001704693, 256007.191100001335144 ], [ 366700.252999998629093, 256007.461500000208616 ], [ 366706.687299996614456, 256009.414000000804663 ], [ 366705.898900002241135, 256007.296599999070168 ], [ 366698.020999997854233, 255985.489500001072884 ], [ 366696.431800000369549, 255982.732299998402596 ], [ 366682.92230000346899, 255959.401399999856949 ], [ 366680.535700000822544, 255955.58219999819994 ], [ 366678.991400003433228, 255947.548000000417233 ], [ 366670.098600000143051, 255950.219500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8664469, "LATITUDE": 18.33242318, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.719180972000004, "SHAPE_Area": 271.99059716099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365630.794200003147125, 255937.913600001484156 ], [ 365618.708499997854233, 255936.759199999272823 ], [ 365618.507100000977516, 255960.399999998509884 ], [ 365632.230599999427795, 255958.612500000745058 ], [ 365630.643100000917912, 255955.644200000911951 ], [ 365630.794200003147125, 255937.913600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-PP (GREENBELT)", "ACRE": "0.22", "LONGITUDE": -64.85609985000001, "LATITUDE": 18.33227214, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.72160942100001, "SHAPE_Area": 1211.0993660700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366764.253200002014637, 255944.83219999819994 ], [ 366763.269400000572205, 255933.682599999010563 ], [ 366742.992600001394749, 255933.798300001770258 ], [ 366680.1266999989748, 255934.1570999994874 ], [ 366679.065099999308586, 255938.893800001591444 ], [ 366678.991400003433228, 255947.548000000417233 ], [ 366679.769500002264977, 255951.595800001174212 ], [ 366749.908500000834465, 255945.980599999427795 ], [ 366764.253200002014637, 255944.83219999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85649675000001, "LATITUDE": 18.33212263, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.663524014, "SHAPE_Area": 462.36782999399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366684.214100003242493, 255902.416799999773502 ], [ 366675.348300002515316, 255901.921999998390675 ], [ 366674.50959999859333, 255905.714800000190735 ], [ 366670.463600002229214, 255907.37049999833107 ], [ 366669.608800001442432, 255913.063000001013279 ], [ 366673.616899996995926, 255915.839999999850988 ], [ 366674.410700000822544, 255917.324200000613928 ], [ 366670.215499997138977, 255936.499299999326468 ], [ 366670.098600000143051, 255950.219500001519918 ], [ 366678.991400003433228, 255947.548000000417233 ], [ 366679.065099999308586, 255938.893800001591444 ], [ 366682.418099999427795, 255923.933600001037121 ], [ 366684.214100003242493, 255902.416799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86607043, "LATITUDE": 18.33207006, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.887107147999998, "SHAPE_Area": 320.758154408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365669.095499999821186, 255890.730999998748302 ], [ 365661.034100003540516, 255890.453899998217821 ], [ 365659.911300003528595, 255927.597199998795986 ], [ 365661.522200003266335, 255927.82149999961257 ], [ 365668.766400001943111, 255929.358399998396635 ], [ 365669.095499999821186, 255890.730999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5247-T92", "PARCEL_NAM": "19-2-B GEENBELT", "ACRE": ".818", "LONGITUDE": -64.86076589, "LATITUDE": 18.33210233, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 321.23940427100001, "SHAPE_Area": 1253.7193117 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366156.22070000320673, 255916.690200001001358 ], [ 366156.987400002777576, 255929.019499998539686 ], [ 366309.955600000917912, 255914.552400000393391 ], [ 366291.462600000202656, 255908.27930000051856 ], [ 366267.256999999284744, 255909.980999998748302 ], [ 366227.708200000226498, 255914.301399998366833 ], [ 366197.845799997448921, 255917.434500001370907 ], [ 366156.22070000320673, 255916.690200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-5247-T92", "PARCEL_NAM": "19-2-F", "ACRE": null, "LONGITUDE": -64.86144443000001, "LATITUDE": 18.33210213, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.313712409099999, "SHAPE_Area": 121.677671492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366156.22070000320673, 255916.690200001001358 ], [ 366155.539200000464916, 255905.729699999094009 ], [ 366154.321400001645088, 255905.83500000089407 ], [ 366150.187600001692772, 255906.192600000649691 ], [ 366150.348899997770786, 255908.179800000041723 ], [ 366151.08330000191927, 255916.629599999636412 ], [ 366151.779899999499321, 255929.511999998241663 ], [ 366156.987400002777576, 255929.019499998539686 ], [ 366156.22070000320673, 255916.690200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-5247-T91", "PARCEL_NAM": "19-2-G", "ACRE": null, "LONGITUDE": -64.86148557, "LATITUDE": 18.33130874, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 339.76998756400002, "SHAPE_Area": 952.32425408400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366150.961400002241135, 255741.631999999284744 ], [ 366146.127099998295307, 255741.170299999415874 ], [ 366148.269100002944469, 255773.696199998259544 ], [ 366145.240599997341633, 255845.232099998742342 ], [ 366150.187600001692772, 255906.192600000649691 ], [ 366154.321400001645088, 255905.83500000089407 ], [ 366155.539200000464916, 255905.729699999094009 ], [ 366153.829499997198582, 255878.232999999076128 ], [ 366153.298299998044968, 255845.931400001049042 ], [ 366152.786899998784065, 255811.307799998670816 ], [ 366152.243100002408028, 255780.48369999974966 ], [ 366150.961400002241135, 255741.631999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85805757, "LATITUDE": 18.33119148, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 378.77517155100003, "SHAPE_Area": 1649.22315854 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366439.353299997746944, 255775.445300001651049 ], [ 366444.99210000038147, 255776.124699998646975 ], [ 366458.658100001513958, 255781.091699998825788 ], [ 366469.894299998879433, 255787.305399999022484 ], [ 366473.103399999439716, 255789.231499999761581 ], [ 366485.131499998271465, 255797.140399999916553 ], [ 366490.741499997675419, 255801.19709999859333 ], [ 366507.566200003027916, 255814.000399999320507 ], [ 366527.594499997794628, 255829.363099999725819 ], [ 366540.391199998557568, 255841.711300000548363 ], [ 366548.373499996960163, 255851.275800000876188 ], [ 366549.13120000064373, 255856.981499999761581 ], [ 366550.691699996590614, 255863.11600000038743 ], [ 366549.786499999463558, 255874.718699999153614 ], [ 366548.901000000536442, 255883.999600000679493 ], [ 366548.055200003087521, 255888.636700000613928 ], [ 366556.904799997806549, 255891.031199999153614 ], [ 366557.74889999628067, 255886.605099998414516 ], [ 366558.603799998760223, 255880.912599999457598 ], [ 366560.345899999141693, 255865.728100001811981 ], [ 366558.8141999989748, 255856.216400001198053 ], [ 366554.879699997603893, 255844.785100001841784 ], [ 366543.697400003671646, 255832.239100001752377 ], [ 366533.301700003445148, 255822.021499998867512 ], [ 366522.889700002968311, 255813.703699998557568 ], [ 366517.281499996781349, 255809.435899998992682 ], [ 366504.457800000905991, 255800.253899998962879 ], [ 366495.645900003612041, 255793.42680000141263 ], [ 366490.836800001561642, 255790.009899999946356 ], [ 366479.609600000083447, 255782.740899998694658 ], [ 366467.577799998223782, 255775.254099998623133 ], [ 366448.287500001490116, 255767.919100001454353 ], [ 366442.652300000190735, 255766.817499998956919 ], [ 366440.235200002789497, 255766.586599998176098 ], [ 366439.353299997746944, 255775.445300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86335312, "LATITUDE": 18.33155396, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.768770039900005, "SHAPE_Area": 190.29144627700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365950.647799998521805, 255875.514600001275539 ], [ 365959.075900003314018, 255832.731600001454353 ], [ 365954.220100000500679, 255834.802799999713898 ], [ 365945.791900001466274, 255877.585799999535084 ], [ 365950.647799998521805, 255875.514600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86102142, "LATITUDE": 18.33118676, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.96175117400003, "SHAPE_Area": 1235.1955325900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366205.319499999284744, 255797.383400000631809 ], [ 366205.648599997162819, 255758.756000000983477 ], [ 366208.904399998486042, 255755.193999998271465 ], [ 366194.423100002110004, 255751.275800000876188 ], [ 366195.996200002729893, 255755.932799998670816 ], [ 366195.809199996292591, 255777.885000001639128 ], [ 366195.543099999427795, 255809.124600000679493 ], [ 366195.255300000309944, 255842.897300001233816 ], [ 366195.098899997770786, 255861.261100001633167 ], [ 366191.853900000452995, 255863.556600000709295 ], [ 366187.816899999976158, 255864.156800001859665 ], [ 366185.342200003564358, 255870.680500000715256 ], [ 366187.743199996650219, 255872.811099998652935 ], [ 366187.703599996864796, 255877.454799998551607 ], [ 366197.38120000064373, 255877.322900000959635 ], [ 366200.637000001966953, 255873.760999999940395 ], [ 366202.278399996459484, 255870.396899998188019 ], [ 366203.12610000371933, 255865.548700001090765 ], [ 366204.180500000715256, 255836.426399998366833 ], [ 366205.319499999284744, 255797.383400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-30", "ACRE": ".345", "LONGITUDE": -64.85749209, "LATITUDE": 18.33129975, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.149525208, "SHAPE_Area": 1700.7975988200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366591.36879999935627, 255821.019099999219179 ], [ 366576.212499998509884, 255801.685600001364946 ], [ 366543.697400003671646, 255832.239100001752377 ], [ 366554.879699997603893, 255844.785100001841784 ], [ 366558.8141999989748, 255856.216400001198053 ], [ 366595.153999999165535, 255849.969900000840425 ], [ 366591.36879999935627, 255821.019099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85878194, "LATITUDE": 18.33125043, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.43559739299999, "SHAPE_Area": 991.62745001799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366446.225299999117851, 255820.675599999725819 ], [ 366430.140399999916553, 255815.688799999654293 ], [ 366428.531400002539158, 255815.253400001674891 ], [ 366413.236599996685982, 255812.172899998724461 ], [ 366391.520099997520447, 255805.662399999797344 ], [ 366388.221199996769428, 255814.290199998766184 ], [ 366413.155699998140335, 255821.671500001102686 ], [ 366427.645999997854233, 255824.534299999475479 ], [ 366440.510999999940395, 255828.861400000751019 ], [ 366444.526399999856949, 255830.794199999421835 ], [ 366446.918300002813339, 255833.980099998414516 ], [ 366450.863600000739098, 255844.144900001585484 ], [ 366453.262699998915195, 255846.486600000411272 ], [ 366456.480800002813339, 255847.357299998402596 ], [ 366460.505199998617172, 255848.234600000083447 ], [ 366465.362800002098083, 255845.952300000935793 ], [ 366468.615099996328354, 255842.8125 ], [ 366470.258199997246265, 255839.237399999052286 ], [ 366468.714000001549721, 255831.203200001269579 ], [ 366455.069600000977516, 255823.703299999237061 ], [ 366446.225299999117851, 255820.675599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5264-T92", "PARCEL_NAM": "19-2-M GREENBELT", "ACRE": "2.219", "LONGITUDE": -64.85773385, "LATITUDE": 18.33053103, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 487.24250460299999, "SHAPE_Area": 7547.1677968900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366448.589599996805191, 255732.457800000905991 ], [ 366455.04730000346899, 255731.666299998760223 ], [ 366496.280699998140335, 255718.916000001132488 ], [ 366519.473200000822544, 255741.481699999421835 ], [ 366525.070600003004074, 255747.015900000929832 ], [ 366544.21169999986887, 255771.870600000023842 ], [ 366545.809900000691414, 255773.572399999946356 ], [ 366575.418700002133846, 255800.201400000602007 ], [ 366576.212499998509884, 255801.685600001364946 ], [ 366591.36879999935627, 255821.019099999219179 ], [ 366604.388400003314018, 255807.193500000983477 ], [ 366628.743199996650219, 255787.972199998795986 ], [ 366597.539800003170967, 255759.219200000166893 ], [ 366595.936200000345707, 255758.150600001215935 ], [ 366579.9358000010252, 255743.243099998682737 ], [ 366574.327600002288818, 255738.975299999117851 ], [ 366550.3378000035882, 255715.347600001841784 ], [ 366512.728799998760223, 255681.264800000935793 ], [ 366464.88849999755621, 255712.326200000941753 ], [ 366455.986699998378754, 255716.053100001066923 ], [ 366446.276699997484684, 255719.984400000423193 ], [ 366448.589599996805191, 255732.457800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-I GREENBELT", "ACRE": ".155", "LONGITUDE": -64.86139494, "LATITUDE": 18.33040988, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.720633345, "SHAPE_Area": 764.65596530300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366146.359099999070168, 255713.941100001335144 ], [ 366146.127099998295307, 255741.170299999415874 ], [ 366150.961400002241135, 255741.631999999284744 ], [ 366184.803099997341633, 255744.653200000524521 ], [ 366164.067400000989437, 255717.674600001424551 ], [ 366160.867299996316433, 255714.69310000166297 ], [ 366155.244699999690056, 255712.114000000059605 ], [ 366146.359099999070168, 255713.941100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86613812, "LATITUDE": 18.33011481, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.20120743300001, "SHAPE_Area": 1152.3059691200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365674.887500002980232, 255684.117800001055002 ], [ 365682.234200000762939, 255673.6233000010252 ], [ 365695.252099998295307, 255660.008699998259544 ], [ 365688.857299998402596, 255653.412500001490116 ], [ 365671.770099997520447, 255671.426699999719858 ], [ 365665.23870000243187, 255680.872400000691414 ], [ 365663.631399996578693, 255680.225999999791384 ], [ 365664.486299999058247, 255674.533500000834465 ], [ 365655.65820000320673, 255669.606100000441074 ], [ 365652.170400001108646, 255700.397199999541044 ], [ 365649.717299997806549, 255704.387899998575449 ], [ 365645.640799999237061, 255709.631900001317263 ], [ 365634.280500002205372, 255717.982599999755621 ], [ 365627.815600000321865, 255719.618500001728535 ], [ 365622.173299998044968, 255719.361200001090765 ], [ 365630.105099998414516, 255734.835900001227856 ], [ 365632.552799999713898, 255731.478500001132488 ], [ 365652.035599999129772, 255716.228100001811981 ], [ 365655.293200001120567, 255712.455099999904633 ], [ 365661.005699999630451, 255704.48030000180006 ], [ 365674.887500002980232, 255684.117800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5264-T92", "PARCEL_NAM": "19-2-U GEENBELT", "ACRE": ".703", "LONGITUDE": -64.85980992, "LATITUDE": 18.3303574, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 473.80736588500002, "SHAPE_Area": 3000.8357265099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366446.276699997484684, 255719.984400000423193 ], [ 366422.07660000026226, 255721.05290000140667 ], [ 366376.030500002205372, 255730.808499999344349 ], [ 366354.220499999821186, 255735.274000000208616 ], [ 366338.947300001978874, 255729.660599999129772 ], [ 366318.850599996745586, 255722.318900000303984 ], [ 366313.220799997448921, 255720.584100000560284 ], [ 366265.761600002646446, 255706.896800000220537 ], [ 366264.203000001609325, 255700.551199998706579 ], [ 366234.311899997293949, 255707.061599999666214 ], [ 366231.07940000295639, 255707.87950000166893 ], [ 366227.002899996936321, 255713.123500000685453 ], [ 366259.975400000810623, 255723.525800000876188 ], [ 366295.37219999730587, 255733.314699999988079 ], [ 366325.94200000166893, 255741.797600001096725 ], [ 366358.972000002861023, 255745.44539999961853 ], [ 366379.981100000441074, 255740.339999999850988 ], [ 366403.425300002098083, 255733.354699999094009 ], [ 366448.589599996805191, 255732.457800000905991 ], [ 366446.276699997484684, 255719.984400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86072161, "LATITUDE": 18.33021093, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.92238515599999, "SHAPE_Area": 711.55405900799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366226.317100003361702, 255698.974599998444319 ], [ 366219.054899998009205, 255699.54839999973774 ], [ 366218.17119999974966, 255708.618200000375509 ], [ 366208.290500000119209, 255732.602000001817942 ], [ 366215.493400000035763, 255738.99379999935627 ], [ 366225.374099999666214, 255715.010000001639128 ], [ 366227.002899996936321, 255713.123500000685453 ], [ 366231.07940000295639, 255707.87950000166893 ], [ 366234.311899997293949, 255707.061599999666214 ], [ 366264.203000001609325, 255700.551199998706579 ], [ 366261.053199999034405, 255691.659499999135733 ], [ 366235.208099998533726, 255696.514199998229742 ], [ 366226.317100003361702, 255698.974599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5264-T94", "PARCEL_NAM": "19-2-19", "ACRE": ".254", "LONGITUDE": -64.85982553, "LATITUDE": 18.33020726, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.69847575599999, "SHAPE_Area": 1064.3617849899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366317.522100001573563, 255688.955299999564886 ], [ 366314.479699999094009, 255688.531700000166893 ], [ 366305.934799998998642, 255718.482799999415874 ], [ 366313.220799997448921, 255720.584100000560284 ], [ 366318.850599996745586, 255722.318900000303984 ], [ 366338.947300001978874, 255729.660599999129772 ], [ 366348.037900000810623, 255703.770500000566244 ], [ 366335.187200002372265, 255697.754700001329184 ], [ 366328.778099998831749, 255692.847100000828505 ], [ 366317.522100001573563, 255688.955299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-J GREENBELT", "ACRE": ".151", "LONGITUDE": -64.8613283, "LATITUDE": 18.33011157, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.22793482899999, "SHAPE_Area": 830.015636556 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366181.127599999308586, 255702.82660000026226 ], [ 366177.300999999046326, 255678.730599999427795 ], [ 366146.587399996817112, 255687.134100001305342 ], [ 366147.347000002861023, 255692.628699999302626 ], [ 366149.744400002062321, 255695.181499999016523 ], [ 366160.953599996864796, 255704.561299998313189 ], [ 366179.328000001609325, 255724.765599999576807 ], [ 366181.127599999308586, 255702.82660000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85945105, "LATITUDE": 18.32984165, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 450.65066750400001, "SHAPE_Area": 1980.69895402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366424.295199997723103, 255649.932500001043081 ], [ 366422.678999997675419, 255650.341400001198053 ], [ 366410.568099997937679, 255652.142200000584126 ], [ 366396.03830000013113, 255653.923099998384714 ], [ 366385.527500003576279, 255657.214600000530481 ], [ 366367.711300000548363, 255666.145799998193979 ], [ 366357.200400002300739, 255669.437199998646975 ], [ 366350.73369999974966, 255671.284099999815226 ], [ 366327.312899999320507, 255675.525400001555681 ], [ 366322.466099999845028, 255676.541200000792742 ], [ 366294.993900001049042, 255683.071400001645088 ], [ 366261.053199999034405, 255691.659499999135733 ], [ 366264.203000001609325, 255700.551199998706579 ], [ 366286.826499998569489, 255695.247900001704693 ], [ 366311.07880000025034, 255688.058200001716614 ], [ 366335.309500001370907, 255683.401299998164177 ], [ 366359.542000003159046, 255678.533399999141693 ], [ 366372.484399996697903, 255673.784200001507998 ], [ 366384.634800001978874, 255667.339699998497963 ], [ 366395.151100002229214, 255663.41499999910593 ], [ 366412.101599998772144, 255661.442800000309944 ], [ 366414.524099998176098, 255661.040500000119209 ], [ 366437.144000001251698, 255656.159400001168251 ], [ 366443.607100002467632, 255654.734600000083447 ], [ 366471.118900001049042, 255643.560699999332428 ], [ 366463.136699996888638, 255633.996199999004602 ], [ 366455.042999997735023, 255637.518500000238419 ], [ 366455.019599996507168, 255640.262600000947714 ], [ 366440.455600000917912, 255646.054000001400709 ], [ 366424.295199997723103, 255649.932500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8660537, "LATITUDE": 18.32944404, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.827719075, "SHAPE_Area": 1002.94623755 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365673.480899997055531, 255565.260600000619888 ], [ 365668.382299996912479, 255595.827500000596046 ], [ 365661.604500003159046, 255634.190999999642372 ], [ 365655.65820000320673, 255669.606100000441074 ], [ 365664.486299999058247, 255674.533500000834465 ], [ 365672.136900000274181, 255628.366599999368191 ], [ 365678.088600002229214, 255592.318300001323223 ], [ 365682.368299998342991, 255563.22239999845624 ], [ 365673.480899997055531, 255565.260600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86568898, "LATITUDE": 18.32932886, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.915582427, "SHAPE_Area": 975.63277173100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365718.46000000089407, 255586.104800000786781 ], [ 365722.734300002455711, 255557.642200000584126 ], [ 365713.89360000193119, 255554.192299999296665 ], [ 365711.323600001633167, 255571.903200000524521 ], [ 365709.63910000026226, 255580.333099998533726 ], [ 365707.133799999952316, 255590.445099998265505 ], [ 365701.315200001001358, 255610.873500000685453 ], [ 365698.75959999859333, 255626.895700000226498 ], [ 365697.897600002586842, 255633.432599999010563 ], [ 365693.759900003671646, 255645.853199999779463 ], [ 365688.857299998402596, 255653.412500001490116 ], [ 365695.252099998295307, 255660.008699998259544 ], [ 365700.969999998807907, 255651.400699999183416 ], [ 365701.801500000059605, 255648.452199999243021 ], [ 365703.444700002670288, 255644.877000000327826 ], [ 365705.897799998521805, 255640.886300001293421 ], [ 365710.159500002861023, 255613.901200000196695 ], [ 365711.001800000667572, 255609.686299998313189 ], [ 365717.621299996972084, 255589.897599998861551 ], [ 365718.46000000089407, 255586.104800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86454911, "LATITUDE": 18.3292261, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 611.18714686099997, "SHAPE_Area": 3145.2651709800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365829.475699998438358, 255616.988699998706579 ], [ 365800.531199999153614, 255607.041499998420477 ], [ 365800.561800003051758, 255603.453200001269579 ], [ 365846.805699996650219, 255570.478900000452995 ], [ 365859.139600001275539, 255542.504399999976158 ], [ 365875.463600002229214, 255519.417700000107288 ], [ 365873.976899996399879, 255504.629000000655651 ], [ 365863.483999997377396, 255505.80970000103116 ], [ 365864.180600002408028, 255518.692099999636412 ], [ 365850.306100003421307, 255538.210200000554323 ], [ 365840.437899999320507, 255560.716499999165535 ], [ 365796.627300001680851, 255592.021899998188019 ], [ 365778.791299998760223, 255603.274999998509884 ], [ 365757.683399997651577, 255619.989700000733137 ], [ 365756.677500002086163, 255643.412900000810623 ], [ 365763.23589999973774, 255630.800900001078844 ], [ 365782.713200002908707, 255616.183800000697374 ], [ 365787.565499998629093, 255614.534800000488758 ], [ 365790.787100002169609, 255614.983300000429153 ], [ 365854.31139999628067, 255635.979299999773502 ], [ 365857.511500000953674, 255638.960799999535084 ], [ 365869.507299996912479, 255650.669100001454353 ], [ 365872.694700002670288, 255655.128199998289347 ], [ 365870.25959999859333, 255657.008099999278784 ], [ 365872.656999997794628, 255659.560899998992682 ], [ 365875.889399997889996, 255658.742899999022484 ], [ 365877.493100002408028, 255659.811500001698732 ], [ 365888.047100000083447, 255651.454199999570847 ], [ 365890.464199997484684, 255651.684999998658895 ], [ 365888.952299997210503, 255639.851399999111891 ], [ 365877.622500002384186, 255644.613899998366833 ], [ 365858.422100000083447, 255626.724800001829863 ], [ 365829.475699998438358, 255616.988699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86551191, "LATITUDE": 18.32829429, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 341.25946298100001, "SHAPE_Area": 1557.2319978099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365728.115199998021126, 255493.936000000685453 ], [ 365728.955700002610683, 255489.932100001722574 ], [ 365729.781800001859665, 255487.616799999028444 ], [ 365734.722199998795986, 255475.624899998307228 ], [ 365743.690499998629093, 255464.088199999183416 ], [ 365751.019199997186661, 255455.7043999992311 ], [ 365755.08500000089407, 255451.72690000012517 ], [ 365771.308300003409386, 255440.46059999987483 ], [ 365757.619000002741814, 255438.23759999871254 ], [ 365747.068599998950958, 255446.172899998724461 ], [ 365737.306500002741814, 255456.225400000810623 ], [ 365727.513899996876717, 255469.866399999707937 ], [ 365722.593299999833107, 255479.536400001496077 ], [ 365716.090700000524521, 255485.604899998754263 ], [ 365707.181699998676777, 255490.175999999046326 ], [ 365691.845499999821186, 255491.950399998575449 ], [ 365692.574500001966953, 255501.033399999141693 ], [ 365718.390900000929832, 255499.555900000035763 ], [ 365722.397299997508526, 255502.543999999761581 ], [ 365722.355899997055531, 255507.398800000548363 ], [ 365720.656999997794628, 255517.517400000244379 ], [ 365719.823700003325939, 255520.677000001072884 ], [ 365718.98139999806881, 255524.892000000923872 ], [ 365717.298699997365475, 255533.110800001770258 ], [ 365714.793399997055531, 255543.222800001502037 ], [ 365713.935000002384186, 255549.337499998509884 ], [ 365713.89360000193119, 255554.192299999296665 ], [ 365722.734300002455711, 255557.642200000584126 ], [ 365724.496200002729893, 255540.135800000280142 ], [ 365727.852700002491474, 255524.753499999642372 ], [ 365728.675200000405312, 255522.860399998724461 ], [ 365731.201999999582767, 255510.215399999171495 ], [ 365732.07490000128746, 255502.412099998444319 ], [ 365728.115199998021126, 255493.936000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8538562, "LATITUDE": 18.32863617, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.359695614900005, "SHAPE_Area": 364.49850037599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366966.154399998486042, 255557.686500001698732 ], [ 366962.41780000180006, 255523.03660000115633 ], [ 366954.34570000320673, 255524.026000000536442 ], [ 366951.924900002777576, 255524.217300001531839 ], [ 366955.665200002491474, 255558.445000000298023 ], [ 366966.154399998486042, 255557.686500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-541-T000", "PARCEL_NAM": "32-33", "ACRE": ".01", "LONGITUDE": -64.86512781, "LATITUDE": 18.32842891, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.041456335299998, "SHAPE_Area": 103.65557504100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365770.023699998855591, 255496.600999999791384 ], [ 365770.883900001645088, 255490.275199998170137 ], [ 365767.656900003552437, 255490.459899999201298 ], [ 365764.946699999272823, 255524.634899999946356 ], [ 365768.173699997365475, 255524.450199998915195 ], [ 365770.023699998855591, 255496.600999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85507128, "LATITUDE": 18.3282867, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 948.58960088599997, "SHAPE_Area": 4540.9621800699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366873.053700000047684, 255506.262099999934435 ], [ 366858.581500001251698, 255501.288499999791384 ], [ 366843.295699998736382, 255497.15260000154376 ], [ 366834.435300000011921, 255496.024599999189377 ], [ 366826.352399997413158, 255498.280499998480082 ], [ 366810.137999996542931, 255508.491300001740456 ], [ 366793.945200003683567, 255516.169300001114607 ], [ 366783.441600002348423, 255518.616399999707937 ], [ 366776.98929999768734, 255518.774700000882149 ], [ 366769.748700000345707, 255516.815600000321865 ], [ 366760.91160000115633, 255512.943599998950958 ], [ 366752.913199998438358, 255505.278799999505281 ], [ 366736.119099996984005, 255488.887099999934435 ], [ 366733.716300003230572, 255486.967599999159575 ], [ 366716.088899999856949, 255473.735500000417233 ], [ 366708.866300001740456, 255469.665600001811981 ], [ 366679.934399999678135, 255458.240899998694658 ], [ 366659.810699999332428, 255454.065400000661612 ], [ 366639.656499996781349, 255453.478300001472235 ], [ 366600.084200002253056, 255460.542700000107288 ], [ 366600.813199996948242, 255469.625599998980761 ], [ 366612.121399998664856, 255467.396200001239777 ], [ 366633.927799999713898, 255463.352800000458956 ], [ 366645.226999998092651, 255462.178700000047684 ], [ 366660.543300002813339, 255462.726199999451637 ], [ 366675.028200000524521, 255466.222300000488758 ], [ 366707.975500002503395, 255479.579700000584126 ], [ 366720.80629999935627, 255487.917399998754263 ], [ 366732.017399996519089, 255497.086199998855591 ], [ 366754.405299998819828, 255519.434200000017881 ], [ 366764.844200000166893, 255524.585900001227856 ], [ 366767.254199996590614, 255525.661100000143051 ], [ 366775.299300000071526, 255527.837900001555681 ], [ 366784.982299998402596, 255527.072799999266863 ], [ 366789.019199997186661, 255526.472500000149012 ], [ 366793.059799998998642, 255525.450100000947714 ], [ 366797.103900000452995, 255524.00560000166297 ], [ 366804.387699998915195, 255520.898800000548363 ], [ 366814.909299999475479, 255516.340799998492002 ], [ 366823.017399996519089, 255511.129900000989437 ], [ 366830.315600000321865, 255506.334499999880791 ], [ 366835.970600001513958, 255505.114199999719858 ], [ 366844.021099999547005, 255506.657699998468161 ], [ 366851.258100003004074, 255509.039000000804663 ], [ 366872.164700001478195, 255515.96510000154376 ], [ 366883.420699998736382, 255519.856899999082088 ], [ 366899.525399997830391, 255522.521800000220537 ], [ 366912.410199999809265, 255524.527100000530481 ], [ 366926.113899998366833, 255525.061500001698732 ], [ 366951.924900002777576, 255524.217300001531839 ], [ 366954.34570000320673, 255524.026000000536442 ], [ 366962.41780000180006, 255523.03660000115633 ], [ 366972.109700001776218, 255521.216099999845028 ], [ 366989.879100002348423, 255517.772900000214577 ], [ 366992.29450000077486, 255518.214800000190735 ], [ 366997.929700002074242, 255519.316399998962879 ], [ 367004.356799997389317, 255522.113299999386072 ], [ 367005.935300000011921, 255526.136999998241663 ], [ 367010.749799996614456, 255528.9206000007689 ], [ 367012.355200000107288, 255529.778099998831749 ], [ 367017.988600000739098, 255531.090799998492002 ], [ 367025.270599998533726, 255528.195000000298023 ], [ 367030.153399996459484, 255522.957699999213219 ], [ 367030.189400002360344, 255518.736099999397993 ], [ 367031.037000000476837, 255513.887899998575449 ], [ 367028.654100000858307, 255509.646499998867512 ], [ 367027.061200000345707, 255507.3114 ], [ 367023.848600000143051, 255505.807500001043081 ], [ 367019.833200000226498, 255503.874800000339746 ], [ 367014.1925999969244, 255503.406399998813868 ], [ 367010.144799999892712, 255505.27309999987483 ], [ 366988.33839999884367, 255509.316500000655651 ], [ 366969.762699998915195, 255512.753100000321865 ], [ 366959.271600000560284, 255513.722699999809265 ], [ 366930.221000000834465, 255516.229200001806021 ], [ 366905.237899996340275, 255514.546999998390675 ], [ 366892.358499996364117, 255511.908500000834465 ], [ 366885.116099998354912, 255510.160500001162291 ], [ 366879.486299999058247, 255508.425599999725819 ], [ 366873.053700000047684, 255506.262099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91214946, "LATITUDE": 18.32632431, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1286.17870406, "SHAPE_Area": 5013.9673710400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360687.643399998545647, 255193.670299999415874 ], [ 360685.165100000798702, 255200.616099998354912 ], [ 360704.473499998450279, 255205.840399999171495 ], [ 360714.905199997127056, 255211.836399998515844 ], [ 360725.335100002586842, 255218.043499998748302 ], [ 360730.948700003325939, 255221.677999999374151 ], [ 360747.020999997854233, 255228.142299998551607 ], [ 360757.44200000166893, 255235.404800001531839 ], [ 360762.240299999713898, 255240.088100001215935 ], [ 360773.39019999653101, 255256.433600001037121 ], [ 360776.565099999308586, 255262.370200000703335 ], [ 360786.840400002896786, 255286.730099998414516 ], [ 360802.441500000655651, 255348.497099999338388 ], [ 360793.557700000703335, 255350.113099999725819 ], [ 360814.252099998295307, 255381.94649999961257 ], [ 360817.533100001513958, 255375.429499998688698 ], [ 360794.116899996995926, 255284.467599999159575 ], [ 360788.594999998807907, 255270.067999999970198 ], [ 360786.222900003194809, 255264.560199998319149 ], [ 360779.874799996614456, 255252.475900001823902 ], [ 360773.499899998307228, 255243.557799998670816 ], [ 360765.523100003600121, 255233.359999999403954 ], [ 360756.716600000858307, 255225.899700000882149 ], [ 360752.706600002944469, 255223.333700001239777 ], [ 360746.290200002491474, 255219.270399998873472 ], [ 360733.428800001740456, 255214.521099999547005 ], [ 360724.60249999910593, 255209.382599998265505 ], [ 360714.215800002217293, 255198.109700001776218 ], [ 360712.626500003039837, 255195.352400001138449 ], [ 360712.6570999994874, 255191.76410000026226 ], [ 360715.902099996805191, 255189.468600001186132 ], [ 360734.504799999296665, 255182.865899998694658 ], [ 360738.55799999833107, 255180.365899998694658 ], [ 360745.856200002133846, 255175.570500001311302 ], [ 360789.650600001215935, 255146.164799999445677 ], [ 360808.292900003492832, 255134.918299999088049 ], [ 360815.587399996817112, 255130.545000001788139 ], [ 360823.641599997878075, 255131.666400000452995 ], [ 360826.839800000190735, 255134.859000001102686 ], [ 360829.962600000202656, 255146.916900001466274 ], [ 360832.309600003063679, 255155.379799999296665 ], [ 360834.167499996721745, 255221.25620000064373 ], [ 360834.88570000231266, 255231.605700001120567 ], [ 360834.856899999082088, 255234.982999999076128 ], [ 360835.519400000572205, 255251.875900000333786 ], [ 360836.284400001168251, 255256.737300001084805 ], [ 360837.839400000870228, 255263.504999998956919 ], [ 360841.750500001013279, 255277.680300001055002 ], [ 360847.317400000989437, 255286.80290000140667 ], [ 360848.912000000476837, 255288.92680000141263 ], [ 360852.907600000500679, 255293.181400001049042 ], [ 360855.3175999969244, 255294.256599999964237 ], [ 360858.531999997794628, 255295.549499999731779 ], [ 360861.750100001692772, 255296.420200001448393 ], [ 360868.206000000238419, 255295.839800000190735 ], [ 360875.493400000035763, 255292.3108000010252 ], [ 360878.73480000346899, 255290.4375 ], [ 360883.601400002837181, 255287.099800001829863 ], [ 360894.178800001740456, 255275.998399998992682 ], [ 360901.478799998760223, 255270.991900000721216 ], [ 360921.7516999989748, 255257.647900000214577 ], [ 360925.808399997651577, 255254.72580000013113 ], [ 360921.020900003612041, 255248.776000000536442 ], [ 360908.0371999964118, 255258.379999998956919 ], [ 360896.694899998605251, 255264.620000001043081 ], [ 360891.014700002968311, 255268.795400001108646 ], [ 360875.563500002026558, 255284.078699998557568 ], [ 360866.661700002849102, 255287.805599998682737 ], [ 360864.235600002110004, 255288.630100000649691 ], [ 360856.993100002408028, 255286.881999999284744 ], [ 360852.205600000917912, 255280.932199999690056 ], [ 360851.420900002121925, 255278.392700001597404 ], [ 360847.439699999988079, 255272.449499998241663 ], [ 360841.951899997889996, 255254.03940000012517 ], [ 360842.201899997889996, 255224.699499998241663 ], [ 360840.785199999809265, 255201.678700000047684 ], [ 360840.36370000243187, 255156.501200001686811 ], [ 360838.822999998927116, 255148.044900000095367 ], [ 360838.04730000346899, 255144.44990000128746 ], [ 360834.913800001144409, 255133.658500000834465 ], [ 360830.934299997985363, 255127.504200000315905 ], [ 360827.728900000452995, 255125.155999999493361 ], [ 360819.685500003397465, 255122.768100000917912 ], [ 360811.60980000346899, 255124.179699998348951 ], [ 360798.642300002276897, 255131.88399999961257 ], [ 360788.914399996399879, 255137.926100000739098 ], [ 360774.316299997270107, 255147.728000000119209 ], [ 360766.202799998223782, 255153.572200000286102 ], [ 360742.690200001001358, 255168.578499998897314 ], [ 360730.528999999165535, 255176.28940000012517 ], [ 360716.785800002515316, 255180.398800000548363 ], [ 360709.493000000715256, 255184.561000000685453 ], [ 360706.249700002372265, 255186.645399998873472 ], [ 360699.76690000295639, 255190.392000000923872 ], [ 360687.643399998545647, 255193.670299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "107401019900", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90804858, "LATITUDE": 18.32660727, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 658.38909168099997, "SHAPE_Area": 2901.7825639500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361221.062600001692772, 255240.254799999296665 ], [ 361228.319399997591972, 255240.3141999989748 ], [ 361241.189900003373623, 255244.008099999278784 ], [ 361252.415299996733665, 255251.488299999386072 ], [ 361260.399300001561642, 255260.841699998825788 ], [ 361266.761699996888638, 255271.237399999052286 ], [ 361267.553599998354912, 255272.932599999010563 ], [ 361272.247699998319149, 255289.858500000089407 ], [ 361274.630599997937679, 255294.099899999797344 ], [ 361277.031599998474121, 255296.230500001460314 ], [ 361283.464100003242493, 255298.394099999219179 ], [ 361294.756099998950958, 255298.064300000667572 ], [ 361302.806599996984005, 255299.607799999415874 ], [ 361314.046400003135204, 255305.399399999529123 ], [ 361321.24210000038147, 255312.635400000959635 ], [ 361322.840300001204014, 255314.33729999884963 ], [ 361335.590300001204014, 255332.173500001430511 ], [ 361337.18129999935627, 255334.7195999994874 ], [ 361339.5625, 255339.172100000083447 ], [ 361346.761799998581409, 255345.986000001430511 ], [ 361352.382600001990795, 255348.776200000196695 ], [ 361355.683399997651577, 255339.937300000339746 ], [ 361350.865299999713898, 255337.575800001621246 ], [ 361346.867899999022484, 255333.532299999147654 ], [ 361331.738600000739098, 255311.032600000500679 ], [ 361327.7483000010252, 255306.144799999892712 ], [ 361318.148100003600121, 255297.200300000607967 ], [ 361310.117399998009205, 255293.334899999201298 ], [ 361306.901100002229214, 255292.253100000321865 ], [ 361300.46679999679327, 255290.300599999725819 ], [ 361295.639700002968311, 255288.994500000029802 ], [ 361283.543200001120567, 255289.106600001454353 ], [ 361280.336000002920628, 255286.969399999827147 ], [ 361277.229400001466274, 255273.011799998581409 ], [ 361274.866200000047684, 255266.448600001633167 ], [ 361273.26799999922514, 255264.746700000017881 ], [ 361271.680500000715256, 255261.778400000184774 ], [ 361266.903800003230572, 255254.562199998646975 ], [ 361264.511799998581409, 255251.376200001686811 ], [ 361250.10249999910593, 255239.014800000935793 ], [ 361236.450900003314018, 255232.359200000762939 ], [ 361226.791299998760223, 255230.380300000309944 ], [ 361217.113799996674061, 255230.512200001627207 ], [ 361214.694899998605251, 255230.492400001734495 ], [ 361155.796300001442432, 255234.443300001323223 ], [ 361141.253899998962879, 255237.701799999922514 ], [ 361127.5033999979496, 255242.655499998480082 ], [ 361090.254799999296665, 255260.92680000141263 ], [ 361094.214400000870228, 255269.403000000864267 ], [ 361102.317100003361702, 255264.825199998915195 ], [ 361111.226099997758865, 255260.254099998623133 ], [ 361137.132399998605251, 255248.222699999809265 ], [ 361149.257700003683567, 255244.733399998396635 ], [ 361156.523500002920628, 255243.737399999052286 ], [ 361216.224799998104572, 255240.215199999511242 ], [ 361221.062600001692772, 255240.254799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90618066, "LATITUDE": 18.32706104, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.854767275, "SHAPE_Area": 454.96500791400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361456.01860000193119, 255299.384199999272823 ], [ 361456.054499998688698, 255295.162599999457598 ], [ 361453.678700000047684, 255290.076900001615286 ], [ 361451.213100001215935, 255295.545099999755621 ], [ 361447.131099998950958, 255301.422400001436472 ], [ 361429.230400003492832, 255320.274300001561642 ], [ 361425.978200003504753, 255323.414000000804663 ], [ 361421.10980000346899, 255326.962799999862909 ], [ 361411.406999997794628, 255330.049800001084805 ], [ 361398.500699996948242, 255330.577399998903275 ], [ 361394.420500002801418, 255336.243599999696016 ], [ 361409.742299996316433, 255336.157900001853704 ], [ 361418.629699997603893, 255334.119699999690056 ], [ 361425.913500003516674, 255331.012899998575449 ], [ 361432.403499998152256, 255326.421900000423193 ], [ 361452.753799997270107, 255304.001499999314547 ], [ 361456.01860000193119, 255299.384199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8513578, "LATITUDE": 18.32642101, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.44966039, "SHAPE_Area": 487.731651881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367230.270300000905991, 255317.512800000607967 ], [ 367225.874799996614456, 255265.547800000756979 ], [ 367217.851199999451637, 255260.837999999523163 ], [ 367222.336599998176098, 255302.249099999666214 ], [ 367226.085900001227856, 255335.421500001102686 ], [ 367232.541799999773502, 255334.840999998152256 ], [ 367230.270300000905991, 255317.512800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030200", "MAP": "D9-6332-T97", "PARCEL_NAM": "16-64-1", "ACRE": ".346", "LONGITUDE": -64.90730939, "LATITUDE": 18.32639054, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.20204704400001, "SHAPE_Area": 2086.5740505799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361334.788699999451637, 255236.963700000196695 ], [ 361317.924400001764297, 255228.804099999368191 ], [ 361309.060400001704693, 255228.098299998790026 ], [ 361298.569300003349781, 255229.067899998277426 ], [ 361289.716099999845028, 255227.095600001513958 ], [ 361281.683499999344349, 255223.441300000995398 ], [ 361260.040799997746944, 255208.276500001549721 ], [ 361279.88570000231266, 255245.169199999421835 ], [ 361357.021999999880791, 255277.464600000530481 ], [ 361334.788699999451637, 255236.963700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90963153, "LATITUDE": 18.32601039, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 656.497772478, "SHAPE_Area": 2447.1558710200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361114.231299996376038, 255191.462200000882149 ], [ 361107.782600000500679, 255191.198300000280142 ], [ 361081.185000002384186, 255189.714099999517202 ], [ 361060.238899998366833, 255187.431699998676777 ], [ 361044.933300003409386, 255185.61769999936223 ], [ 361015.900700002908707, 255186.013399999588728 ], [ 361001.360100001096725, 255189.060699999332428 ], [ 360989.229500003159046, 255193.183299999684095 ], [ 360977.064599998295307, 255201.316399998962879 ], [ 360973.00789999961853, 255204.238499999046326 ], [ 360946.196400001645088, 255227.872699998319149 ], [ 360929.134400002658367, 255242.931800000369549 ], [ 360921.020900003612041, 255248.776000000536442 ], [ 360925.808399997651577, 255254.72580000013113 ], [ 360935.54169999808073, 255248.050400000065565 ], [ 360944.479500003159046, 255240.102000001817942 ], [ 360968.863099999725819, 255217.503499999642372 ], [ 360978.608900003135204, 255209.350600000470877 ], [ 360982.667499996721745, 255206.217399999499321 ], [ 360987.534100003540516, 255202.879799999296665 ], [ 361000.485500000417233, 255197.075100000947714 ], [ 361014.221500001847744, 255193.810100000351667 ], [ 361028.742399998009205, 255193.084499999880791 ], [ 361050.509199999272823, 255193.684900000691414 ], [ 361081.120300002396107, 255197.312899999320507 ], [ 361114.162900000810623, 255199.483199998736382 ], [ 361123.842299997806549, 255199.1402000002563 ], [ 361129.479299999773502, 255200.030699998140335 ], [ 361134.327899999916553, 255198.803899999707937 ], [ 361146.449600003659725, 255195.736699998378754 ], [ 361179.533600002527237, 255193.052099999040365 ], [ 361205.366200000047684, 255189.675000000745058 ], [ 361223.101400002837181, 255190.242300000041723 ], [ 361220.74719999730587, 255182.623700000345707 ], [ 361214.307499997317791, 255181.304400000721216 ], [ 361204.620999999344349, 255182.491700001060963 ], [ 361181.212700001895428, 255185.255399998277426 ], [ 361148.128799997270107, 255187.939899999648333 ], [ 361127.940399996936321, 255191.363299999386072 ], [ 361114.231299996376038, 255191.462200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.907632, "LATITUDE": 18.32609825, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.94112826200001, "SHAPE_Area": 913.58728719500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361260.040799997746944, 255208.276500001549721 ], [ 361281.683499999344349, 255223.441300000995398 ], [ 361289.716099999845028, 255227.095600001513958 ], [ 361298.569300003349781, 255229.067899998277426 ], [ 361309.060400001704693, 255228.098299998790026 ], [ 361317.924400001764297, 255228.804099999368191 ], [ 361334.788699999451637, 255236.963700000196695 ], [ 361326.844200000166893, 255222.966499999165535 ], [ 361317.99099999666214, 255220.994199998676777 ], [ 361308.318800002336502, 255220.492899999022484 ], [ 361300.246699996292591, 255221.482299998402596 ], [ 361290.587099999189377, 255219.503400001674891 ], [ 361283.364500001072884, 255215.433499999344349 ], [ 361261.721699997782707, 255200.268699999898672 ], [ 361252.090899996459484, 255194.912500001490116 ], [ 361238.437600001692772, 255188.467999998480082 ], [ 361220.74719999730587, 255182.623700000345707 ], [ 361223.101400002837181, 255190.242300000041723 ], [ 361240.779200002551079, 255197.5641999989748 ], [ 361260.040799997746944, 255208.276500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91042772, "LATITUDE": 18.32582253, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.85876935799999, "SHAPE_Area": 817.93138409400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361000.90259999781847, 255148.104899998754263 ], [ 360993.62610000371933, 255150.367300000041723 ], [ 360987.935099996626377, 255155.809200000017881 ], [ 360984.679300002753735, 255159.371100001037121 ], [ 360981.405500002205372, 255165.0439000017941 ], [ 360975.624600000679493, 255181.039700001478195 ], [ 360973.999399997293949, 255182.504000000655651 ], [ 360967.440999999642372, 255195.115899998694658 ], [ 360963.364500001072884, 255200.359900001436472 ], [ 360956.833099998533726, 255209.805700000375509 ], [ 360953.561099998652935, 255215.267299998551607 ], [ 360952.726000003516674, 255218.638000000268221 ], [ 360946.196400001645088, 255227.872699998319149 ], [ 360973.00789999961853, 255204.238499999046326 ], [ 360972.22860000282526, 255201.065699998289347 ], [ 360982.035599999129772, 255185.736200001090765 ], [ 360987.802000001072884, 255171.429000001400709 ], [ 360992.708200000226498, 255163.447599999606609 ], [ 360998.368600003421307, 255161.594099998474121 ], [ 361001.570500001311302, 255164.364500001072884 ], [ 361007.239900000393391, 255161.455600000917912 ], [ 361007.282999999821186, 255156.389699999243021 ], [ 361009.714500002563, 255154.932000000029802 ], [ 361008.179200001060963, 255145.842399999499321 ], [ 361000.90259999781847, 255148.104899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86549944, "LATITUDE": 18.32611533, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.881703018700001, "SHAPE_Area": 32.849979633300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365738.266000002622604, 255248.939399998635054 ], [ 365727.7804000005126, 255249.275800000876188 ], [ 365726.113799996674061, 255255.594999998807907 ], [ 365738.266000002622604, 255248.939399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86541003000001, "LATITUDE": 18.32600355, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.132030444500003, "SHAPE_Area": 274.71450924700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365727.7804000005126, 255249.275800000876188 ], [ 365738.266000002622604, 255248.939399998635054 ], [ 365739.925399996340275, 255243.464600000530481 ], [ 365741.550599999725819, 255242.000199999660254 ], [ 365743.976800002157688, 255241.175700001418591 ], [ 365747.196599997580051, 255241.835299998521805 ], [ 365755.306500002741814, 255236.41330000013113 ], [ 365751.30009999871254, 255233.425200000405312 ], [ 365750.506399996578693, 255231.940999999642372 ], [ 365745.68469999730587, 255230.0016999989748 ], [ 365739.225199997425079, 255231.004299998283386 ], [ 365736.802699998021126, 255231.406700000166893 ], [ 365734.351400002837181, 255235.186299998313189 ], [ 365731.909000001847744, 255237.910500001162291 ], [ 365728.608300000429153, 255246.749400001019239 ], [ 365727.7804000005126, 255249.275800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86539157, "LATITUDE": 18.32604973, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.1690926068, "SHAPE_Area": 24.6798794322 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365738.266000002622604, 255248.939399998635054 ], [ 365747.196599997580051, 255241.835299998521805 ], [ 365743.976800002157688, 255241.175700001418591 ], [ 365741.550599999725819, 255242.000199999660254 ], [ 365739.925399996340275, 255243.464600000530481 ], [ 365738.266000002622604, 255248.939399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89137253, "LATITUDE": 18.32519076, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 656.24004628199998, "SHAPE_Area": 2919.73978601 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363120.045699998736382, 255052.725099999457598 ], [ 363112.016800001263618, 255048.648600000888109 ], [ 363108.750200003385544, 255053.477000001817942 ], [ 363103.813400000333786, 255065.046700000762939 ], [ 363101.369300000369549, 255067.98200000077486 ], [ 363100.537799999117851, 255070.930500000715256 ], [ 363091.542499996721745, 255085.633499998599291 ], [ 363079.325499996542931, 255099.887800000607967 ], [ 363065.501299999654293, 255113.495799999684095 ], [ 363054.94370000064373, 255122.275299999862909 ], [ 363033.850100003182888, 255137.301399998366833 ], [ 363018.460100002586842, 255145.408100001513958 ], [ 362999.853699997067451, 255152.43299999833107 ], [ 362986.124899998307228, 255154.853700000792742 ], [ 362977.25900000333786, 255154.359000001102686 ], [ 362962.76519999653101, 255151.918299999088049 ], [ 362954.729000002145767, 255148.686200000345707 ], [ 362945.101800002157688, 255142.907800000160933 ], [ 362927.508599996566772, 255125.665300000458956 ], [ 362921.08330000191927, 255122.657400000840425 ], [ 362914.645400002598763, 255121.127000000327826 ], [ 362903.362400002777576, 255120.401399999856949 ], [ 362857.343199998140335, 255126.990800000727177 ], [ 362858.878499999642372, 255136.080400001257658 ], [ 362862.899300001561642, 255137.379900000989437 ], [ 362864.476000003516674, 255141.614700000733137 ], [ 362871.740000002086163, 255140.829799998551607 ], [ 362871.77589999884367, 255136.608199998736382 ], [ 362875.830899998545647, 255133.897199999541044 ], [ 362897.628300003707409, 255130.909099999815226 ], [ 362915.372599996626377, 255130.421100001782179 ], [ 362923.405100002884865, 255134.075399998575449 ], [ 362935.402699999511242, 255145.572700001299381 ], [ 362937.805500000715256, 255147.492199998348951 ], [ 362950.63629999756813, 255155.829799998551607 ], [ 362959.473399996757507, 255159.701900001615286 ], [ 362973.1537000015378, 255162.980200000107288 ], [ 362987.663800001144409, 255163.521200001239777 ], [ 362996.542199999094009, 255162.538400001823902 ], [ 363007.049400001764297, 255159.669100001454353 ], [ 363020.80349999666214, 255154.293200001120567 ], [ 363037.813400000333786, 255145.355399999767542 ], [ 363058.899800002574921, 255131.173599999397993 ], [ 363072.707800000905991, 255119.465399999171495 ], [ 363084.908600002527237, 255107.110700000077486 ], [ 363090.610299997031689, 255100.402399998158216 ], [ 363102.837999999523163, 255084.881499998271465 ], [ 363107.742499999701977, 255077.111200001090765 ], [ 363109.39639999717474, 255072.269600000232458 ], [ 363111.840499997138977, 255069.334300000220537 ], [ 363120.045699998736382, 255052.725099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87529649, "LATITUDE": 18.32455708, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 757.34436742499997, "SHAPE_Area": 3651.6316429100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364746.313199996948242, 255073.634700000286102 ], [ 364765.927299998700619, 255042.975499998778105 ], [ 364758.706399999558926, 255038.694600000977516 ], [ 364752.162399999797344, 255049.617899999022484 ], [ 364747.333499997854233, 255048.522900000214577 ], [ 364741.612000003457069, 255057.553100001066923 ], [ 364743.215700000524521, 255058.621700000017881 ], [ 364743.978799998760223, 255063.694200001657009 ], [ 364733.385300002992153, 255076.695300001651049 ], [ 364728.550999999046326, 255076.233500000089407 ], [ 364726.133900001645088, 255076.002599999308586 ], [ 364724.528399996459484, 255075.145100001245737 ], [ 364714.958800002932549, 255062.612300001084805 ], [ 364705.421499997377396, 255046.280000001192093 ], [ 364694.266199998557568, 255030.567800000309944 ], [ 364661.500500001013279, 254995.891399998217821 ], [ 364661.545400001108646, 254990.614399999380112 ], [ 364664.811999998986721, 254985.785999998450279 ], [ 364660.011900000274181, 254981.313700001686811 ], [ 364657.562399998307228, 254984.88230000063777 ], [ 364651.106499999761581, 254985.462699998170137 ], [ 364647.114500001072884, 254980.785999998450279 ], [ 364640.608300000429153, 254987.276599999517202 ], [ 364642.204700000584126, 254989.189500000327826 ], [ 364659.785300001502037, 255007.909699998795986 ], [ 364675.769500002264977, 255024.716899998486042 ], [ 364688.559000000357628, 255037.909400001168251 ], [ 364693.344800002872944, 255044.070199999958277 ], [ 364699.700000002980232, 255055.310199998319149 ], [ 364706.859700001776218, 255066.767900001257658 ], [ 364710.043600000441074, 255071.649099998176098 ], [ 364721.209700003266335, 255086.094799999147654 ], [ 364729.989200003445148, 255096.721400000154972 ], [ 364729.926299996674061, 255104.109099999070168 ], [ 364720.952500000596046, 255116.279100000858307 ], [ 364719.332699999213219, 255117.110199999064207 ], [ 364717.712899997830391, 255117.941300000995398 ], [ 364712.858800001442432, 255119.801399998366833 ], [ 364708.827299997210503, 255119.768399998545647 ], [ 364697.567699998617172, 255116.298799999058247 ], [ 364691.153099998831749, 255112.024399999529123 ], [ 364685.552100002765656, 255106.912300001829863 ], [ 364672.823700003325939, 255086.543200001120567 ], [ 364665.669399999082088, 255074.452300000935793 ], [ 364656.090800002217293, 255062.974800001829863 ], [ 364652.894299998879433, 255059.571199998259544 ], [ 364644.100400000810623, 255050.633299998939037 ], [ 364636.893899999558926, 255044.663699999451637 ], [ 364634.491200000047684, 255042.744199998676777 ], [ 364629.584899999201298, 255050.725600000470877 ], [ 364641.596900001168251, 255060.534200001507998 ], [ 364659.161399997770786, 255081.153999999165535 ], [ 364675.071800000965595, 255106.615499999374151 ], [ 364670.183600001037121, 255112.486099999397993 ], [ 364691.837200000882149, 255126.384399998933077 ], [ 364713.492499999701977, 255140.071600001305342 ], [ 364730.610299997031689, 255118.469099998474121 ], [ 364736.315600000321865, 255111.338599998503923 ], [ 364737.976800002157688, 255105.652699999511242 ], [ 364739.681100003421307, 255094.900800000876188 ], [ 364738.167400002479553, 255083.278299998492002 ], [ 364746.313199996948242, 255073.634700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028400", "MAP": "F9-3427-T76", "PARCEL_NAM": "14-64-2", "ACRE": ".03", "LONGITUDE": -64.90172453, "LATITUDE": 18.32492095, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.96958176299999, "SHAPE_Area": 194.801144298 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361904.377199999988079, 255108.003299999982119 ], [ 361910.064499996602535, 255102.983600001782179 ], [ 361893.590499997138977, 255049.019900001585484 ], [ 361904.377199999988079, 255108.003299999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89987384, "LATITUDE": 18.32482261, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.851098844099994, "SHAPE_Area": 236.248234989 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362094.27419999986887, 255061.006000000983477 ], [ 362089.468699999153614, 255057.166999999433756 ], [ 362088.628200002014637, 255061.170899998396635 ], [ 362090.188699997961521, 255067.305399999022484 ], [ 362100.5016999989748, 255087.232599999755621 ], [ 362101.228900000452995, 255096.526599999517202 ], [ 362106.880300000309944, 255095.728500001132488 ], [ 362106.957599997520447, 255086.652100000530481 ], [ 362104.565700002014637, 255083.4662000015378 ], [ 362098.239200003445148, 255068.848900001496077 ], [ 362096.64639999717474, 255066.513900000602007 ], [ 362094.27419999986887, 255061.006000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90056074, "LATITUDE": 18.32431076, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.824309777, "SHAPE_Area": 917.16062637300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362017.161300003528595, 255025.966600000858307 ], [ 362042.916599996387959, 255031.665899999439716 ], [ 362055.781599998474121, 255035.993000000715256 ], [ 362074.23870000243187, 255046.487700000405312 ], [ 362078.250500001013279, 255048.842500001192093 ], [ 362083.860500000417233, 255052.89919999986887 ], [ 362086.265000000596046, 255054.607700001448393 ], [ 362087.868699997663498, 255055.676199998706579 ], [ 362089.468699999153614, 255057.166999999433756 ], [ 362094.27419999986887, 255061.006000000983477 ], [ 362088.743299998342991, 255047.661800000816584 ], [ 362086.324400000274181, 255047.642099998891354 ], [ 362079.112499997019768, 255042.305700000375509 ], [ 362074.299800001084805, 255039.311000000685453 ], [ 362064.668999999761581, 255033.954799998551607 ], [ 362057.440999999642372, 255030.518199998885393 ], [ 362048.603900000452995, 255026.646200001239777 ], [ 362031.700099997222424, 255023.130300000309944 ], [ 362015.602600000798702, 255019.621100001037121 ], [ 362002.751999996602535, 255013.60530000180006 ], [ 361991.542700000107288, 255004.225400000810623 ], [ 361986.755199998617172, 254998.275600001215935 ], [ 361982.792000003159046, 254990.221599999815226 ], [ 361981.19370000064373, 254988.519799999892712 ], [ 361979.624300003051758, 254983.440699998289347 ], [ 361979.707000002264977, 254973.731100000441074 ], [ 361981.371799997985363, 254967.622999999672174 ], [ 361977.313199996948242, 254970.75620000064373 ], [ 361974.854699999094009, 254975.380100000649691 ], [ 361973.231299996376038, 254976.633400000631809 ], [ 361972.392599999904633, 254980.426199998706579 ], [ 361973.996299996972084, 254981.494800001382828 ], [ 361974.757600001990795, 254986.778400000184774 ], [ 361976.336099997162819, 254990.802099999040365 ], [ 361977.127999998629093, 254992.497299998998642 ], [ 361983.479599997401237, 255004.159400001168251 ], [ 361989.874399997293949, 255010.755699999630451 ], [ 361992.2753000035882, 255012.886199999600649 ], [ 362001.889899998903275, 255020.142099998891354 ], [ 362014.749600000679493, 255025.10249999910593 ], [ 362017.161300003528595, 255025.966600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88857519, "LATITUDE": 18.32399697, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 645.49518895300002, "SHAPE_Area": 2756.0916591700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363252.210100002586842, 254967.469500001519918 ], [ 363259.475900001823902, 254966.473499998450279 ], [ 363269.957999996840954, 254966.559300001710653 ], [ 363278.818400003015995, 254967.687300000339746 ], [ 363294.091600000858307, 254973.300700001418591 ], [ 363303.72240000218153, 254978.656899999827147 ], [ 363326.153499998152256, 254995.939100001007318 ], [ 363392.649499997496605, 255046.723600000143051 ], [ 363396.632500000298023, 255052.455699998885393 ], [ 363397.366899996995926, 255060.9054000005126 ], [ 363395.732699997723103, 255063.425200000405312 ], [ 363392.494800001382828, 255064.876299999654293 ], [ 363392.439099997282028, 255071.419799998402596 ], [ 363407.717699997127056, 255076.399999998509884 ], [ 363405.521700002253056, 255050.206399999558926 ], [ 363405.541500002145767, 255047.884500000625849 ], [ 363400.752199999988079, 255042.145799998193979 ], [ 363328.648000001907349, 254987.093499999493361 ], [ 363307.017800003290176, 254970.451200000941753 ], [ 363296.582500003278255, 254964.877399999648333 ], [ 363286.939099997282028, 254960.998799998313189 ], [ 363271.646099999547005, 254957.70719999819994 ], [ 363259.553199999034405, 254957.397100001573563 ], [ 363249.866700001060963, 254958.584399998188019 ], [ 363168.252899996936321, 254978.60359999909997 ], [ 363164.225000001490116, 254978.148400001227856 ], [ 363161.822200000286102, 254976.228900000452995 ], [ 363161.05009999871254, 254972.211800001561642 ], [ 363151.207099996507168, 254991.763000000268221 ], [ 363252.210100002586842, 254967.469500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8999726, "LATITUDE": 18.32464093, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 8.4050941525000002, "SHAPE_Area": 3.1488218192000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362089.468699999153614, 255057.166999999433756 ], [ 362087.868699997663498, 255055.676199998706579 ], [ 362087.035400003194809, 255058.835799999535084 ], [ 362089.468699999153614, 255057.166999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89010873, "LATITUDE": 18.32423696, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.80280825200001, "SHAPE_Area": 666.27651922400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363151.207099996507168, 254991.763000000268221 ], [ 363141.556500002741814, 254988.728700000792742 ], [ 363112.016800001263618, 255048.648600000888109 ], [ 363120.045699998736382, 255052.725099999457598 ], [ 363120.875399999320507, 255049.98759999871254 ], [ 363123.308700002729893, 255048.318799998611212 ], [ 363126.537600003182888, 255047.923099998384714 ], [ 363128.949299998581409, 255048.787200000137091 ], [ 363130.601499997079372, 255044.156599998474121 ], [ 363127.392499998211861, 255042.230500001460314 ], [ 363126.614900000393391, 255038.846700001507998 ], [ 363151.207099996507168, 254991.763000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87657529000001, "LATITUDE": 18.32398386, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 422.91234619199997, "SHAPE_Area": 1954.3673307 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364539.197899997234344, 254959.188999999314547 ], [ 364530.212700001895428, 254964.566300000995398 ], [ 364527.814400002360344, 254975.798799999058247 ], [ 364522.615099996328354, 255018.186000000685453 ], [ 364518.549400001764297, 255022.163499999791384 ], [ 364511.285400003194809, 255022.948499999940395 ], [ 364514.436899997293949, 255031.629099998623133 ], [ 364516.653999999165535, 255037.727800000458956 ], [ 364528.898800000548363, 255031.050200000405312 ], [ 364531.464800000190735, 255020.58049999922514 ], [ 364536.667700000107288, 254977.771099999547005 ], [ 364538.296499997377396, 254975.88459999859333 ], [ 364542.324500001966953, 254976.339699998497963 ], [ 364563.900700002908707, 254999.314399998635054 ], [ 364567.890900000929832, 255004.202199999243021 ], [ 364581.499300003051758, 255015.923799999058247 ], [ 364604.756499998271465, 255030.890700001269579 ], [ 364611.968400001525879, 255036.227000001817942 ], [ 364615.173799999058247, 255038.575300000607967 ], [ 364629.584899999201298, 255050.725600000470877 ], [ 364634.491200000047684, 255042.744199998676777 ], [ 364631.29110000282526, 255039.762699998915195 ], [ 364617.688100002706051, 255027.407900001853704 ], [ 364592.017300002276897, 255011.787999998778105 ], [ 364588.009099997580051, 255009.010999999940395 ], [ 364581.600000001490116, 255004.103300001472235 ], [ 364548.024400003254414, 254969.842500001192093 ], [ 364544.854900002479553, 254963.272599998861551 ], [ 364543.43639999628067, 254958.28940000012517 ], [ 364539.197899997234344, 254959.188999999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-530-T99", "PARCEL_NAM": "SALT GUT", "ACRE": null, "LONGITUDE": -64.87259626, "LATITUDE": 18.32345449, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 679.26088756000001, "SHAPE_Area": 5897.0876946999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365062.335900001227856, 254892.991999998688698 ], [ 365077.005999997258186, 254874.746899999678135 ], [ 365095.723800003528595, 254854.635099999606609 ], [ 365113.626299999654293, 254835.57209999859333 ], [ 365104.79110000282526, 254831.489000000059605 ], [ 365089.456699997186661, 254833.052299998700619 ], [ 365057.602399997413158, 254880.709800001233816 ], [ 365034.80799999833107, 254906.065499998629093 ], [ 365016.932499997317791, 254921.962400000542402 ], [ 365001.511900000274181, 254933.657400000840425 ], [ 364977.187600001692772, 254949.290300000458956 ], [ 364937.487700000405312, 254971.341299999505281 ], [ 364934.249899998307228, 254972.792500000447035 ], [ 364926.175899997353554, 254973.992899999022484 ], [ 364919.707500003278255, 254976.050900001078844 ], [ 364909.169699996709824, 254982.508600000292063 ], [ 364904.276000000536442, 254989.01240000128746 ], [ 364902.654399998486042, 254990.05460000038147 ], [ 364901.828299999237061, 254992.369899999350309 ], [ 364889.587999999523163, 255009.368299998342991 ], [ 364887.939400002360344, 255013.576699998229742 ], [ 364885.495300002396107, 255016.511999998241663 ], [ 364881.395400002598763, 255024.5 ], [ 364875.636100001633167, 255037.962799999862909 ], [ 364872.338899999856949, 255046.379599999636412 ], [ 364872.322800002992153, 255048.27930000051856 ], [ 364890.835600003600121, 255052.230500001460314 ], [ 364911.268500000238419, 255020.100400000810623 ], [ 364919.444899998605251, 255006.868400000035763 ], [ 364940.578100003302097, 254987.198600001633167 ], [ 364947.892399996519089, 254980.503499999642372 ], [ 364969.729400001466274, 254972.871800001710653 ], [ 364998.036700002849102, 254962.970899999141693 ], [ 365023.185199998319149, 254945.233800001442432 ], [ 365027.240099996328354, 254942.522799998521805 ], [ 365036.217500001192093, 254929.930700000375509 ], [ 365046.827200002968311, 254915.029800001531839 ], [ 365062.335900001227856, 254892.991999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8775033, "LATITUDE": 18.32430307, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 13.1944218554, "SHAPE_Area": 5.10622513639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364464.351999998092651, 255042.195999998599291 ], [ 364465.174500003457069, 255040.30290000140667 ], [ 364461.169900000095367, 255037.103700000792742 ], [ 364464.351999998092651, 255042.195999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90033439, "LATITUDE": 18.3234813, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 559.116182697, "SHAPE_Area": 2040.5341907100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362120.60419999808073, 254904.59010000154376 ], [ 362125.431199997663498, 254905.896200001239777 ], [ 362133.498000003397465, 254905.53999999910593 ], [ 362142.378200002014637, 254904.346099998801947 ], [ 362152.093500003218651, 254899.781599998474121 ], [ 362155.33669999986887, 254897.697200000286102 ], [ 362161.826800003647804, 254893.106199998408556 ], [ 362165.912299998104572, 254886.80689999833703 ], [ 362168.336599998176098, 254886.193399999290705 ], [ 362169.173500001430511, 254882.611699998378754 ], [ 362162.757200002670288, 254878.54839999973774 ], [ 362160.304099999368191, 254882.539099998772144 ], [ 362159.483400002121925, 254884.221099998801947 ], [ 362151.353699997067451, 254891.96510000154376 ], [ 362144.872699998319149, 254895.500599998980761 ], [ 362136.787900000810623, 254897.967599999159575 ], [ 362122.274300001561642, 254897.848799999803305 ], [ 362113.428300000727177, 254895.0320999994874 ], [ 362111.828199997544289, 254893.541400000452995 ], [ 362111.052500002086163, 254889.94649999961257 ], [ 362103.801100000739098, 254889.253800000995398 ], [ 362102.957000002264977, 254893.679900001734495 ], [ 362101.335400000214577, 254894.722100000828505 ], [ 362082.739799998700619, 254900.480500001460314 ], [ 362063.305600002408028, 254910.031700000166893 ], [ 362044.724500000476837, 254914.101500000804663 ], [ 362032.592000000178814, 254918.435199998319149 ], [ 362013.962300002574921, 254928.204100001603365 ], [ 362009.101099997758865, 254930.908599998801947 ], [ 361998.554300002753735, 254938.421599999070168 ], [ 361992.062399998307228, 254943.223600000143051 ], [ 361975.783299997448921, 254961.033300001174212 ], [ 361965.178999997675419, 254975.300900001078844 ], [ 361948.808200001716614, 255003.875599998980761 ], [ 361953.584899999201298, 255011.091899998486042 ], [ 361970.776399999856949, 254980.835200000554323 ], [ 361972.392599999904633, 254980.426199998706579 ], [ 361973.231299996376038, 254976.633400000631809 ], [ 361974.854699999094009, 254975.380100000649691 ], [ 361977.313199996948242, 254970.75620000064373 ], [ 361981.371799997985363, 254967.622999999672174 ], [ 361987.093299999833107, 254958.592799998819828 ], [ 361998.475199997425079, 254947.709100000560284 ], [ 362007.403899997472763, 254940.816100001335144 ], [ 362009.837300002574921, 254939.147199999541044 ], [ 362021.996699996292591, 254931.647399999201298 ], [ 362030.905699998140335, 254927.076200000941753 ], [ 362048.694899998605251, 254921.311200000345707 ], [ 362050.312899999320507, 254920.691199999302626 ], [ 362064.047200001776218, 254917.637200001627207 ], [ 362081.856200002133846, 254909.550299998372793 ], [ 362089.140000000596046, 254906.443500000983477 ], [ 362105.305799998342991, 254901.931800000369549 ], [ 362111.75450000166893, 254902.195599999278784 ], [ 362120.60419999808073, 254904.59010000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84886684, "LATITUDE": 18.32376679, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.03149072599999, "SHAPE_Area": 842.527708727 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367493.496399998664856, 254992.472100000828505 ], [ 367483.750500001013279, 255000.625 ], [ 367471.004199996590614, 254982.366599999368191 ], [ 367446.805799998342991, 254983.22410000115633 ], [ 367457.253700003027916, 254987.320300001651049 ], [ 367468.484600000083447, 254994.167300000786781 ], [ 367483.705600000917912, 255005.901999998837709 ], [ 367500.494300000369549, 255022.926899999380112 ], [ 367516.528800003230572, 255033.823899999260902 ], [ 367526.166799999773502, 255038.335700001567602 ], [ 367493.496399998664856, 254992.472100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88964468, "LATITUDE": 18.3235237, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.24224600700001, "SHAPE_Area": 1145.07163453 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363234.179200001060963, 254906.949200000613928 ], [ 363222.92679999768734, 254902.635200001299381 ], [ 363206.725000001490116, 254911.368500001728535 ], [ 363188.88910000026226, 254922.621599998325109 ], [ 363182.395400002598763, 254927.634700000286102 ], [ 363167.752300001680851, 254942.713599998503923 ], [ 363157.95610000193119, 254956.776700001209974 ], [ 363141.556500002741814, 254988.728700000792742 ], [ 363151.207099996507168, 254991.763000000268221 ], [ 363161.05009999871254, 254972.211800001561642 ], [ 363169.246299996972084, 254956.657999999821186 ], [ 363174.958800002932549, 254948.683200001716614 ], [ 363185.537900000810623, 254937.370700001716614 ], [ 363194.470299996435642, 254930.055599998682737 ], [ 363210.688299998641014, 254919.422499999403954 ], [ 363234.179200001060963, 254906.949200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88578841, "LATITUDE": 18.3210503, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1738.5460995599999, "SHAPE_Area": 7790.2565598700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363669.798699997365475, 254743.456000000238419 ], [ 363674.785700000822544, 254732.36769999936223 ], [ 363667.869599997997284, 254733.602299999445677 ], [ 363654.108300000429153, 254739.822500001639128 ], [ 363645.184900000691414, 254746.082299999892712 ], [ 363641.939900003373623, 254748.377700001001358 ], [ 363637.066100001335144, 254752.55970000103116 ], [ 363634.616599999368191, 254756.128299999982119 ], [ 363631.380500003695488, 254757.368299998342991 ], [ 363628.1570999994874, 254757.130899999290705 ], [ 363620.945200003683567, 254751.79450000077486 ], [ 363576.133400000631809, 254711.320000000298023 ], [ 363575.38459999859333, 254704.558800000697374 ], [ 363608.853399999439716, 254656.703400000929832 ], [ 363613.745200000703335, 254650.410700000822544 ], [ 363628.501599997282028, 254622.0337999984622 ], [ 363677.822599999606609, 254511.824499998241663 ], [ 363690.969999998807907, 254483.012200001627207 ], [ 363691.792499996721745, 254481.119100000709295 ], [ 363693.423100002110004, 254479.021499998867512 ], [ 363703.300200000405312, 254455.459899999201298 ], [ 363709.030699998140335, 254445.374299999326468 ], [ 363710.675700001418591, 254441.588100001215935 ], [ 363711.498199999332428, 254439.695000000298023 ], [ 363713.157600000500679, 254434.220100000500679 ], [ 363713.98369999974966, 254431.904899999499321 ], [ 363715.625100001692772, 254428.540800001472235 ], [ 363717.253899998962879, 254426.65430000051856 ], [ 363718.090800002217293, 254423.072599999606609 ], [ 363719.7195999994874, 254421.186000000685453 ], [ 363731.227300003170967, 254395.526799999177456 ], [ 363732.854299999773502, 254393.851399999111891 ], [ 363735.336199998855591, 254386.483399998396635 ], [ 363741.907200001180172, 254372.393899999558926 ], [ 363744.354900002479553, 254369.036499999463558 ], [ 363746.017899997532368, 254363.139499999582767 ], [ 363757.538199998438358, 254336.002700001001358 ], [ 363748.686700001358986, 254333.819299999624491 ], [ 363744.572499997913837, 254343.495900001376867 ], [ 363743.73200000077486, 254347.499800000339746 ], [ 363741.282499998807907, 254351.068399999290705 ], [ 363733.062899999320507, 254369.366200000047684 ], [ 363730.579199999570847, 254376.945300001651049 ], [ 363729.754900000989437, 254379.049499999731779 ], [ 363728.113600000739098, 254382.413499999791384 ], [ 363726.48650000244379, 254384.089000001549721 ], [ 363718.259800001978874, 254403.231100000441074 ], [ 363715.812100000679493, 254406.588599998503923 ], [ 363714.976999998092651, 254409.959300000220537 ], [ 363713.350000001490116, 254411.634700000286102 ], [ 363706.778999999165535, 254425.724199999123812 ], [ 363698.539700001478195, 254446.343899998813868 ], [ 363696.910800002515316, 254448.230399999767542 ], [ 363695.251500003039837, 254453.705299999564886 ], [ 363692.8074000030756, 254456.640599999576807 ], [ 363687.872400000691414, 254467.999299999326468 ], [ 363682.950000002980232, 254477.880399998277426 ], [ 363675.527699999511242, 254497.240200001746416 ], [ 363674.703400000929832, 254499.344399999827147 ], [ 363673.062100000679493, 254502.708500001579523 ], [ 363668.148699998855591, 254511.534200001507998 ], [ 363627.034599997103214, 254604.923200000077486 ], [ 363623.744599997997284, 254612.495700001716614 ], [ 363622.103299997746944, 254615.859700001776218 ], [ 363609.002700001001358, 254639.183899998664856 ], [ 363603.275799997150898, 254648.847300000488758 ], [ 363490.609200000762939, 254811.733800001442432 ], [ 363427.708599999547005, 254906.844399999827147 ], [ 363388.502099998295307, 254965.629700001329184 ], [ 363397.3445999994874, 254968.868500001728535 ], [ 363477.397100001573563, 254848.144900001585484 ], [ 363506.796599999070168, 254804.689100001007318 ], [ 363564.767700001597404, 254720.304000001400709 ], [ 363568.003700003027916, 254719.063900001347065 ], [ 363572.832599997520447, 254720.158900000154972 ], [ 363610.438000001013279, 254754.663800001144409 ], [ 363615.238099999725819, 254759.136100001633167 ], [ 363628.862700000405312, 254768.957899998873472 ], [ 363631.274400003254414, 254769.822000000625849 ], [ 363636.119499996304512, 254769.017299998551607 ], [ 363643.460799999535084, 254759.155999999493361 ], [ 363648.334700003266335, 254754.973999999463558 ], [ 363654.020199999213219, 254750.165399998426437 ], [ 363662.121100001037121, 254745.798700001090765 ], [ 363669.798699997365475, 254743.456000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86923721, "LATITUDE": 18.3236304, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.034750939299997, "SHAPE_Area": 29.445648633400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365339.027699999511242, 254975.049899999052286 ], [ 365347.10700000077486, 254973.2162000015378 ], [ 365327.778899997472763, 254970.313799999654293 ], [ 365339.027699999511242, 254975.049899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86946859, "LATITUDE": 18.32357327, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.024764500300002, "SHAPE_Area": 58.8917072956 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365327.778899997472763, 254970.313799999654293 ], [ 365307.691200003027916, 254961.916700001806021 ], [ 365305.230899997055531, 254966.7516999989748 ], [ 365327.778899997472763, 254970.313799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86675181, "LATITUDE": 18.32349293, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.876403872699996, "SHAPE_Area": 328.24321075099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365586.770599998533726, 254953.012899998575449 ], [ 365582.744499996304512, 254952.346700001507998 ], [ 365580.25900000333786, 254960.136799998581409 ], [ 365618.094499997794628, 254967.623599998652935 ], [ 365621.389899998903275, 254959.418000001460314 ], [ 365586.770599998533726, 254953.012899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90923769, "LATITUDE": 18.32333641, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.512579776, "SHAPE_Area": 572.919179128 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361107.10530000180006, 254892.07319999858737 ], [ 361101.446800000965595, 254893.715599998831749 ], [ 361092.514399997889996, 254901.030799999833107 ], [ 361089.220799997448921, 254909.025400001555681 ], [ 361089.949799999594688, 254918.108399998396635 ], [ 361092.313000001013279, 254924.671599999070168 ], [ 361097.109499998390675, 254929.566100001335144 ], [ 361101.997699998319149, 254923.69539999961853 ], [ 361098.797700002789497, 254920.713899999856949 ], [ 361098.016500003635883, 254917.752199999988079 ], [ 361098.052500002086163, 254913.530699998140335 ], [ 361097.29110000282526, 254908.247099999338388 ], [ 361098.109999999403954, 254906.776099998503923 ], [ 361101.371299996972084, 254902.581000000238419 ], [ 361105.424400001764297, 254900.081000000238419 ], [ 361112.688400000333786, 254899.296100001782179 ], [ 361141.647299997508526, 254907.554699998348951 ], [ 361141.715599998831749, 254899.533700000494719 ], [ 361114.364000000059605, 254891.921500001102686 ], [ 361107.10530000180006, 254892.07319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-78-T67", "PARCEL_NAM": "PARK AREA", "ACRE": null, "LONGITUDE": -64.87798294, "LATITUDE": 18.32333579, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.7944663504, "SHAPE_Area": 496.06822684799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364404.08110000193119, 254923.27930000051856 ], [ 364399.239600002765656, 254923.661800000816584 ], [ 364395.99099999666214, 254926.37950000166893 ], [ 364397.537100002169609, 254934.202599998563528 ], [ 364399.126299999654293, 254936.959800001233816 ], [ 364403.139899998903275, 254939.10359999909997 ], [ 364410.384099997580051, 254940.640500001609325 ], [ 364418.44539999961853, 254940.917599998414516 ], [ 364432.181500002741814, 254937.652499999850988 ], [ 364433.828299999237061, 254933.655200000852346 ], [ 364433.043600000441074, 254931.115699999034405 ], [ 364430.642599999904633, 254928.985100001096725 ], [ 364416.161399997770786, 254925.066899999976158 ], [ 364404.08110000193119, 254923.27930000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90108538, "LATITUDE": 18.322924, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 321.685712825, "SHAPE_Area": 947.20609235200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362017.874499998986721, 254847.598400000482798 ], [ 362022.742899999022484, 254844.049699999392033 ], [ 362028.424900002777576, 254839.663199998438358 ], [ 362035.764399997889996, 254830.013000000268221 ], [ 362032.582299999892712, 254824.920699998736382 ], [ 362030.94990000128746, 254827.229400001466274 ], [ 362027.688699997961521, 254831.424499999731779 ], [ 362018.749099999666214, 254839.583999998867512 ], [ 362008.205899998545647, 254846.674899999052286 ], [ 362004.152800001204014, 254849.174899999052286 ], [ 362000.103200003504753, 254851.252599999308586 ], [ 361983.107699997723103, 254858.501800000667572 ], [ 361976.648199997842312, 254859.504399999976158 ], [ 361971.803199999034405, 254860.309099998325109 ], [ 361963.731100000441074, 254861.298500001430511 ], [ 361961.319300003349781, 254860.434399999678135 ], [ 361961.337300002574921, 254858.323600001633167 ], [ 361954.881399996578693, 254858.904100000858307 ], [ 361954.852600000798702, 254862.281300000846386 ], [ 361946.751800000667572, 254866.647999998182058 ], [ 361944.320200003683567, 254868.105799999088049 ], [ 361935.377099998295307, 254876.687399998307228 ], [ 361932.103299997746944, 254882.360100001096725 ], [ 361925.51969999819994, 254897.927200000733137 ], [ 361920.611699998378754, 254906.119600001722574 ], [ 361916.544200003147125, 254910.308200001716614 ], [ 361918.945100001990795, 254912.438799999654293 ], [ 361921.346100002527237, 254914.569400001317263 ], [ 361925.429799996316433, 254908.481100000441074 ], [ 361930.323399998247623, 254901.977299999445677 ], [ 361932.778300002217293, 254897.775499999523163 ], [ 361934.421499997377396, 254894.200300000607967 ], [ 361936.906999997794628, 254886.410199999809265 ], [ 361937.725900001823902, 254884.939300000667572 ], [ 361939.354699999094009, 254883.052799999713898 ], [ 361946.694200001657009, 254873.402499999850988 ], [ 361950.749099999666214, 254870.691500000655651 ], [ 361958.032899998128414, 254867.584699999541044 ], [ 361974.168200001120567, 254866.661299999803305 ], [ 361978.208700001239777, 254865.638900000602007 ], [ 361984.671800002455711, 254864.214099999517202 ], [ 362004.899800002574921, 254856.147100001573563 ], [ 362017.874499998986721, 254847.598400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88855727000001, "LATITUDE": 18.32298232, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.79164561599998, "SHAPE_Area": 1328.1288083300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363371.441100001335144, 254885.907800000160933 ], [ 363367.422200001776218, 254884.397199999541044 ], [ 363330.437899999320507, 254871.640000000596046 ], [ 363318.357600003480911, 254869.852400001138449 ], [ 363291.738499999046326, 254870.901099998503923 ], [ 363268.292499996721745, 254878.097500000149012 ], [ 363222.92679999768734, 254902.635200001299381 ], [ 363234.179200001060963, 254906.949200000613928 ], [ 363277.917900003492832, 254884.086899999529123 ], [ 363286.004399999976158, 254881.4087999984622 ], [ 363303.771999999880791, 254878.17680000141263 ], [ 363317.479400001466274, 254878.288899999111891 ], [ 363335.187700003385544, 254882.02250000089407 ], [ 363366.536700002849102, 254893.678100001066923 ], [ 363371.441100001335144, 254885.907800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89679038, "LATITUDE": 18.32247862, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 697.34776859299996, "SHAPE_Area": 2523.9199983399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362502.208599999547005, 254787.390000000596046 ], [ 362483.625699996948242, 254791.670899998396635 ], [ 362469.059900000691414, 254797.67339999973774 ], [ 362453.691399998962879, 254803.247099999338388 ], [ 362399.497599996626377, 254822.857500001788139 ], [ 362367.952600002288818, 254834.209399998188019 ], [ 362359.041799999773502, 254838.991599999368191 ], [ 362313.640100002288818, 254867.750999998301268 ], [ 362295.012199997901917, 254877.308800000697374 ], [ 362276.396899998188019, 254885.38910000026226 ], [ 362274.76630000025034, 254887.486699998378754 ], [ 362266.620399996638298, 254897.130300000309944 ], [ 362287.656499996781349, 254888.858800001442432 ], [ 362304.662799999117851, 254880.343100000172853 ], [ 362324.098800003528595, 254870.580800000578165 ], [ 362347.614900000393391, 254855.152300000190735 ], [ 362363.021200001239777, 254845.145899999886751 ], [ 362376.787799999117851, 254838.292500000447035 ], [ 362406.713100001215935, 254827.771699998527765 ], [ 362436.638400003314018, 254817.250799998641014 ], [ 362466.56360000371933, 254806.730000000447035 ], [ 362472.227600000798702, 254804.454300001263618 ], [ 362485.983499996364117, 254798.867400001734495 ], [ 362496.487099997699261, 254796.420200001448393 ], [ 362506.990699999034405, 254793.973099999129772 ], [ 362524.801500000059605, 254785.67509999871254 ], [ 362532.083499997854233, 254782.779399998486042 ], [ 362557.167300000786781, 254772.641100000590086 ], [ 362565.2466000020504, 254770.807399999350309 ], [ 362567.658399999141693, 254771.671500001102686 ], [ 362569.256599999964237, 254773.3733000010252 ], [ 362578.962899997830391, 254769.864199999719858 ], [ 362577.456399999558926, 254757.397300001233816 ], [ 362541.863600000739098, 254770.61600000038743 ], [ 362535.391500003635883, 254773.096099998801947 ], [ 362524.868100002408028, 254777.865200001746416 ], [ 362507.86540000140667, 254785.958700001239777 ], [ 362502.208599999547005, 254787.390000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87262144, "LATITUDE": 18.32307338, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.473304020900002, "SHAPE_Area": 73.784943368300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364971.003200002014637, 254917.997900001704693 ], [ 364989.667099997401237, 254904.218400001525879 ], [ 364981.620200000703335, 254902.252700001001358 ], [ 364971.003200002014637, 254917.997900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9109281, "LATITUDE": 18.32295199, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.990761881, "SHAPE_Area": 292.50124788599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360972.765799999237061, 254854.032299999147654 ], [ 360971.174800001084805, 254851.486200001090765 ], [ 360963.136900000274181, 254848.46510000154376 ], [ 360953.455700002610683, 254849.019099999219179 ], [ 360887.921400003135204, 254874.658399999141693 ], [ 360889.51070000231266, 254877.415600001811981 ], [ 360957.471100002527237, 254850.951799999922514 ], [ 360962.3108000010252, 254850.7804000005126 ], [ 360964.717100001871586, 254852.277699999511242 ], [ 360967.904600001871586, 254856.736800000071526 ], [ 360967.88120000064373, 254859.480799999088049 ], [ 360972.765799999237061, 254854.032299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9109114, "LATITUDE": 18.32292178, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.12938919300001, "SHAPE_Area": 235.141141715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360887.921400003135204, 254874.658399999141693 ], [ 360953.455700002610683, 254849.019099999219179 ], [ 360963.136900000274181, 254848.46510000154376 ], [ 360971.174800001084805, 254851.486200001090765 ], [ 360972.765799999237061, 254854.032299999147654 ], [ 360976.833400003612041, 254849.843800000846386 ], [ 360972.814400002360344, 254848.333200000226498 ], [ 360967.18639999628067, 254846.387299999594688 ], [ 360954.285400003194809, 254846.281700000166893 ], [ 360887.134900003671646, 254872.329900000244379 ], [ 360887.921400003135204, 254874.658399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89097739, "LATITUDE": 18.32231272, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.40711315499999, "SHAPE_Area": 1479.3860667599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363008.955399997532368, 254878.596799999475479 ], [ 363017.763400003314018, 254879.854899998754263 ], [ 363019.15089999884367, 254875.002900000661612 ], [ 363023.978000000119209, 254876.309000000357628 ], [ 363026.47070000320673, 254867.674499999731779 ], [ 363021.645400002598763, 254866.157400000840425 ], [ 363025.799199998378754, 254851.837000001221895 ], [ 363029.91889999806881, 254841.527199998497963 ], [ 363033.19990000128746, 254835.010099999606609 ], [ 363036.466499999165535, 254830.181699998676777 ], [ 363040.546599999070168, 254824.515599999576807 ], [ 363043.834799997508526, 254817.154199998825788 ], [ 363045.461800001561642, 254815.478799998760223 ], [ 363047.945500001311302, 254807.899700000882149 ], [ 363055.387500002980232, 254786.217999998480082 ], [ 363063.657399997115135, 254762.009899999946356 ], [ 363071.104900002479553, 254739.695000000298023 ], [ 363076.892899997532368, 254722.854800000786781 ], [ 363059.782300002872944, 254743.613099999725819 ], [ 363053.157399997115135, 254764.03489999845624 ], [ 363039.920100003480911, 254803.401099998503923 ], [ 363039.903899997472763, 254805.300799999386072 ], [ 363038.273299999535084, 254807.398400001227856 ], [ 363036.615800000727177, 254812.662099998444319 ], [ 363024.355599999427795, 254831.982400000095367 ], [ 363018.60360000282526, 254844.600900001823902 ], [ 363016.949600003659725, 254849.442600000649691 ], [ 363013.607400000095367, 254863.136300001293421 ], [ 363009.45719999819994, 254877.034499999135733 ], [ 363008.955399997532368, 254878.596799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89007636, "LATITUDE": 18.32185353, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 545.869858099, "SHAPE_Area": 2408.9454231599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363165.810199998319149, 254697.407000001519918 ], [ 363191.540299996733665, 254706.061299998313189 ], [ 363190.681900002062321, 254712.175999999046326 ], [ 363180.945000000298023, 254719.273499999195337 ], [ 363169.598999999463558, 254725.935600001364946 ], [ 363159.874700002372265, 254731.555599998682737 ], [ 363150.127099998295307, 254739.91950000077486 ], [ 363137.125399999320507, 254751.634399998933077 ], [ 363121.675999999046326, 254766.706599999219179 ], [ 363115.167900003492832, 254773.408399999141693 ], [ 363110.261699996888638, 254781.389800000935793 ], [ 363105.382500000298023, 254786.204999998211861 ], [ 363095.600599996745586, 254798.579500000923872 ], [ 363093.154700003564358, 254801.72580000013113 ], [ 363086.626900002360344, 254810.749400001019239 ], [ 363083.335100002586842, 254818.532999999821186 ], [ 363075.970399998128414, 254831.138300001621246 ], [ 363071.890299998223782, 254836.804400000721216 ], [ 363070.263300001621246, 254838.479899998754263 ], [ 363063.757100000977516, 254844.970499999821186 ], [ 363070.153599999845028, 254851.355700001120567 ], [ 363073.405799999833107, 254848.215900000184774 ], [ 363079.809600003063679, 254853.756700001657009 ], [ 363083.875299997627735, 254849.779199998825788 ], [ 363086.314000003039837, 254847.477099999785423 ], [ 363079.919299997389317, 254840.880899999290705 ], [ 363086.438100002706051, 254832.91270000115037 ], [ 363093.835199996829033, 254816.508000001311302 ], [ 363097.100000001490116, 254811.890599999576807 ], [ 363101.993600003421307, 254805.386799998581409 ], [ 363114.221400000154972, 254789.865899998694658 ], [ 363115.8412000015378, 254789.034800000488758 ], [ 363119.923100002110004, 254783.157600000500679 ], [ 363125.635600000619888, 254775.182799998670816 ], [ 363135.399499997496605, 254764.919100001454353 ], [ 363145.15429999679327, 254755.710799999535084 ], [ 363154.903800003230572, 254747.135800000280142 ], [ 363165.457800000905991, 254738.778400000184774 ], [ 363175.99379999935627, 254732.531899999827147 ], [ 363185.718099996447563, 254726.911899998784065 ], [ 363187.341499999165535, 254725.658700000494719 ], [ 363193.021700002253056, 254721.483300000429153 ], [ 363197.89190000295639, 254717.723400000482798 ], [ 363200.364799998700619, 254711.410900000482798 ], [ 363201.216099999845028, 254706.140500001609325 ], [ 363198.84570000320673, 254700.421599999070168 ], [ 363195.645599998533726, 254697.440099999308586 ], [ 363192.436499997973442, 254695.513999998569489 ], [ 363175.548900000751019, 254690.098400000482798 ], [ 363147.401699997484684, 254681.213199999183416 ], [ 363139.277500003576279, 254688.323899999260902 ], [ 363144.905500002205372, 254690.269799999892712 ], [ 363165.810199998319149, 254697.407000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87226294, "LATITUDE": 18.32250494, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.231328115700002, "SHAPE_Area": 91.655900231100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365026.505000002682209, 254839.503100000321865 ], [ 365016.019400000572205, 254839.839499998837709 ], [ 365015.063799999654293, 254857.352400001138449 ], [ 365026.505000002682209, 254839.503100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9038829, "LATITUDE": 18.32221898, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 311.38634247800002, "SHAPE_Area": 3964.13175065 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361737.428800001740456, 254827.571199998259544 ], [ 361683.128200002014637, 254765.06529999896884 ], [ 361652.768899999558926, 254731.886199999600649 ], [ 361645.468900002539158, 254736.892700001597404 ], [ 361638.978799998760223, 254741.48369999974966 ], [ 361640.461999997496605, 254756.694499999284744 ], [ 361645.965899996459484, 254773.204900000244379 ], [ 361645.897600002586842, 254781.225900001823902 ], [ 361645.05349999666214, 254785.651900000870228 ], [ 361643.421099998056889, 254787.96059999987483 ], [ 361638.550899997353554, 254791.720400001853704 ], [ 361635.316600002348423, 254792.749400001019239 ], [ 361661.021499998867512, 254804.358899999409914 ], [ 361673.058700002729893, 254811.212400000542402 ], [ 361691.537299998104572, 254819.174100000411272 ], [ 361716.471900001168251, 254826.555300001055002 ], [ 361727.749399997293949, 254827.914200000464916 ], [ 361737.428800001740456, 254827.571199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87148624, "LATITUDE": 18.32232618, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.270664371199999, "SHAPE_Area": 301.69268352099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365119.322700001299381, 254829.497000001370907 ], [ 365107.269299998879433, 254824.543200001120567 ], [ 365092.852799996733665, 254813.026200000196695 ], [ 365089.456699997186661, 254833.052299998700619 ], [ 365104.79110000282526, 254831.489000000059605 ], [ 365113.626299999654293, 254835.57209999859333 ], [ 365119.322700001299381, 254829.497000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87044125, "LATITUDE": 18.3222972, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.61571171600001, "SHAPE_Area": 802.78547691200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365204.779700003564358, 254812.582899998873472 ], [ 365192.503100000321865, 254812.466600000858307 ], [ 365192.705300003290176, 254813.627700001001358 ], [ 365196.476300001144409, 254835.278099998831749 ], [ 365231.3496999964118, 254836.324499998241663 ], [ 365227.499799996614456, 254814.972600001841784 ], [ 365227.104000002145767, 254812.733800001442432 ], [ 365204.779700003564358, 254812.582899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84665895000001, "LATITUDE": 18.32218189, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.60161539399999, "SHAPE_Area": 732.23006225500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367761.899899996817112, 254816.928100001066923 ], [ 367757.125, 254809.500700000673532 ], [ 367706.071999996900558, 254839.058200001716614 ], [ 367692.296300001442432, 254846.967000000178814 ], [ 367690.669299997389317, 254848.642400000244379 ], [ 367698.674900002777576, 254855.462900001555681 ], [ 367761.899899996817112, 254816.928100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87138364, "LATITUDE": 18.32180347, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.54406426200001, "SHAPE_Area": 3114.1868492600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365117.156499996781349, 254705.145199999213219 ], [ 365112.42119999974966, 254693.074099998921156 ], [ 365099.476999998092651, 254698.034400001168251 ], [ 365107.412500001490116, 254713.087000001221895 ], [ 365107.331500001251698, 254722.585499998182058 ], [ 365098.334399998188019, 254737.499499998986721 ], [ 365100.704800002276897, 254743.218499999493361 ], [ 365102.256300002336502, 254750.408300001174212 ], [ 365102.119599997997284, 254766.450300000607967 ], [ 365092.852799996733665, 254813.026200000196695 ], [ 365107.269299998879433, 254824.543200001120567 ], [ 365119.322700001299381, 254829.497000001370907 ], [ 365124.890799999237061, 254830.922200001776218 ], [ 365132.375100001692772, 254823.555900000035763 ], [ 365131.51799999922514, 254817.775600001215935 ], [ 365126.006899997591972, 254802.109600000083447 ], [ 365121.255400002002716, 254791.938200000673532 ], [ 365120.605499997735023, 254773.567699998617172 ], [ 365122.329599998891354, 254760.493999999016523 ], [ 365124.840300001204014, 254749.748799998313189 ], [ 365127.316699996590614, 254743.01410000026226 ], [ 365128.947300001978874, 254740.916499998420477 ], [ 365129.836400002241135, 254731.213500000536442 ], [ 365128.272299997508526, 254725.5011 ], [ 365117.156499996781349, 254705.145199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87017776, "LATITUDE": 18.32215464, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.615875945, "SHAPE_Area": 459.975072748 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365268.591399997472763, 254812.953099999576807 ], [ 365268.38400000333786, 254811.888700000941753 ], [ 365267.598700001835823, 254804.256099998950958 ], [ 365255.373800002038479, 254804.768699999898672 ], [ 365236.955399997532368, 254805.053199999034405 ], [ 365223.449500001966953, 254804.260099999606609 ], [ 365211.880199998617172, 254803.580699998885393 ], [ 365212.124899998307228, 254806.605700001120567 ], [ 365212.614399999380112, 254812.657200001180172 ], [ 365227.104000002145767, 254812.733800001442432 ], [ 365263.450499996542931, 254812.925900001078844 ], [ 365268.591399997472763, 254812.953099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87335583, "LATITUDE": 18.32212379, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.632171987000007, "SHAPE_Area": 143.144798966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364916.437600001692772, 254791.950599998235703 ], [ 364909.960100002586842, 254795.063999999314547 ], [ 364890.493600003421307, 254808.414599999785423 ], [ 364891.287299998104572, 254809.898800000548363 ], [ 364896.126999996602535, 254809.727299999445677 ], [ 364905.835100002586842, 254806.007100000977516 ], [ 364912.335900001227856, 254800.149700000882149 ], [ 364916.437600001692772, 254791.950599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89146429, "LATITUDE": 18.32127218, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 466.76457382799998, "SHAPE_Area": 1959.5108362399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362946.842100001871586, 254654.66270000115037 ], [ 362954.080899998545647, 254656.832899998873472 ], [ 362955.74210000038147, 254651.146899998188019 ], [ 362973.421599999070168, 254658.257699999958277 ], [ 362994.281499996781349, 254670.671900000423193 ], [ 363003.878100000321865, 254680.038499999791384 ], [ 363007.861100003123283, 254685.770700000226498 ], [ 363011.822499997913837, 254694.035700000822544 ], [ 363013.368600003421307, 254701.858899999409914 ], [ 363014.142599999904633, 254705.664900001138449 ], [ 363015.609499998390675, 254722.775499999523163 ], [ 363015.584399998188019, 254725.730599999427795 ], [ 363014.628799997270107, 254743.243500001728535 ], [ 363013.745200000703335, 254752.313299998641014 ], [ 363011.101499997079372, 254778.678399998694658 ], [ 363009.359399996697903, 254793.862799998372793 ], [ 363014.249399997293949, 254787.781100001186132 ], [ 363019.967299997806549, 254779.173099998384714 ], [ 363023.523400001227856, 254740.361000001430511 ], [ 363023.649300001561642, 254725.585499998182058 ], [ 363023.838100001215935, 254703.422200001776218 ], [ 363023.065999999642372, 254699.405099999159575 ], [ 363021.500100001692772, 254693.903799999505281 ], [ 363019.135099999606609, 254687.551699999719858 ], [ 363016.7449000030756, 254684.154599998146296 ], [ 363010.368199996650219, 254675.447599999606609 ], [ 363006.390500001609325, 254669.08219999819994 ], [ 363000.787699997425079, 254664.181200001388788 ], [ 362992.767700001597404, 254659.049300000071526 ], [ 362980.736000001430511, 254651.562600001692772 ], [ 362972.703400000929832, 254647.908300001174212 ], [ 362966.272699996829033, 254645.533599998801947 ], [ 362948.580600000917912, 254639.900400001555681 ], [ 362918.021600000560284, 254630.151000000536442 ], [ 362915.528999999165535, 254638.785500001162291 ], [ 362946.894199997186661, 254648.541400000452995 ], [ 362945.23309999704361, 254654.227299999445677 ], [ 362946.842100001871586, 254654.66270000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87318544, "LATITUDE": 18.32188667, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.023543444200001, "SHAPE_Area": 178.80296951599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364928.762500002980232, 254765.031500000506639 ], [ 364927.981299996376038, 254762.06980000063777 ], [ 364924.765100002288818, 254760.988000001758337 ], [ 364920.657999999821186, 254769.820300001651049 ], [ 364919.007600001990795, 254774.239799998700619 ], [ 364917.335600003600121, 254781.192200001329184 ], [ 364916.437600001692772, 254791.950599998235703 ], [ 364923.730400003492832, 254787.788400001823902 ], [ 364923.796899996697903, 254779.978500001132488 ], [ 364925.459899999201298, 254774.081500001251698 ], [ 364927.106700003147125, 254770.084199998527765 ], [ 364928.742700003087521, 254767.353399999439716 ], [ 364928.762500002980232, 254765.031500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87314047, "LATITUDE": 18.32191309, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.258662178100003, "SHAPE_Area": 83.402010881199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364923.730400003492832, 254787.788400001823902 ], [ 364930.204300001263618, 254785.097199998795986 ], [ 364928.742700003087521, 254767.353399999439716 ], [ 364927.106700003147125, 254770.084199998527765 ], [ 364925.459899999201298, 254774.081500001251698 ], [ 364923.796899996697903, 254779.978500001132488 ], [ 364923.730400003492832, 254787.788400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89087222000001, "LATITUDE": 18.32184895, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.904086395999997, "SHAPE_Area": 91.400844437399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363045.117600001394749, 254761.224899999797344 ], [ 363053.157399997115135, 254764.03489999845624 ], [ 363059.782300002872944, 254743.613099999725819 ], [ 363047.561800003051758, 254758.289599999785423 ], [ 363045.117600001394749, 254761.224899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91051738, "LATITUDE": 18.32141687, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1307.4153575299999, "SHAPE_Area": 6061.3470222200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360938.99099999666214, 254653.850299999117851 ], [ 360972.813000001013279, 254659.193399999290705 ], [ 360980.865299999713898, 254660.525800000876188 ], [ 361005.864600002765656, 254660.308299999684095 ], [ 361022.800700001418591, 254660.024700000882149 ], [ 361043.755900003015995, 254661.2516999989748 ], [ 361062.277699999511242, 254664.14750000089407 ], [ 361072.727399997413158, 254668.032699998468161 ], [ 361077.532899998128414, 254671.871700000017881 ], [ 361083.114100001752377, 254679.305599998682737 ], [ 361083.906099997460842, 254681.000900000333786 ], [ 361084.674599997699261, 254685.440099999308586 ], [ 361087.804499998688698, 254696.6537000015378 ], [ 361086.922700002789497, 254705.51240000128746 ], [ 361086.076800003647804, 254710.149500001221895 ], [ 361085.256099998950958, 254711.831599999219179 ], [ 361083.623700000345707, 254714.140299998223782 ], [ 361077.112099997699261, 254721.26410000026226 ], [ 361070.622000001370907, 254725.855099998414516 ], [ 361065.766199998557568, 254727.926300000399351 ], [ 361048.806599996984005, 254730.953899998217821 ], [ 361038.308399997651577, 254732.767799999564886 ], [ 361033.468699999153614, 254732.939300000667572 ], [ 361013.352300003170967, 254727.91950000077486 ], [ 361008.523400001227856, 254726.824499998241663 ], [ 360990.008799999952316, 254723.084399998188019 ], [ 360979.523100003600121, 254723.420699998736382 ], [ 360976.297899998724461, 254723.394299998879433 ], [ 360957.722099997103214, 254726.830899998545647 ], [ 360942.387800000607967, 254728.394099999219179 ], [ 360926.256099998950958, 254728.895399998873472 ], [ 360905.310000002384186, 254726.613000001758337 ], [ 360882.751199997961521, 254724.317400000989437 ], [ 360877.938500002026558, 254721.322700001299381 ], [ 360877.969099998474121, 254717.734400000423193 ], [ 360871.520400002598763, 254717.470499999821186 ], [ 360869.060099996626377, 254722.305500000715256 ], [ 360865.825900003314018, 254723.334499999880791 ], [ 360836.800399996340275, 254722.885899998247623 ], [ 360821.480499997735023, 254722.760499998927116 ], [ 360814.950900003314018, 254731.995200000703335 ], [ 360852.843900002539158, 254732.72749999910593 ], [ 360862.517899997532368, 254733.017799999564886 ], [ 360886.700099997222424, 254734.060100000351667 ], [ 360918.925599999725819, 254737.490200001746416 ], [ 360935.05009999871254, 254737.833299998193979 ], [ 360953.607799999415874, 254736.507500000298023 ], [ 360977.030500002205372, 254732.05519999936223 ], [ 360985.090000003576279, 254732.543299999088049 ], [ 360993.149499997496605, 254733.031500000506639 ], [ 361006.034299999475479, 254735.036800000816584 ], [ 361026.946299999952316, 254741.329599998891354 ], [ 361039.841899998486042, 254742.068500000983477 ], [ 361063.26630000025034, 254737.405000001192093 ], [ 361068.116800002753735, 254735.967099998146296 ], [ 361072.970799997448921, 254734.106899999082088 ], [ 361077.022200003266335, 254731.81810000166297 ], [ 361081.887000001966953, 254728.691500000655651 ], [ 361083.510499998927116, 254727.438200000673532 ], [ 361091.645499996840954, 254719.061099998652935 ], [ 361094.924699999392033, 254712.755100000649691 ], [ 361096.693800002336502, 254694.404399998486042 ], [ 361094.406099997460842, 254678.975900001823902 ], [ 361094.447499997913837, 254674.121100001037121 ], [ 361096.879000000655651, 254672.66330000013113 ], [ 361100.107799999415874, 254672.267499998211861 ], [ 361106.54389999806881, 254674.00899999961257 ], [ 361116.165700003504753, 254680.420499999076128 ], [ 361123.366800002753735, 254687.023400001227856 ], [ 361129.797499999403954, 254689.397999998182058 ], [ 361126.716099999845028, 254672.485300000756979 ], [ 361122.671999998390675, 254673.929900001734495 ], [ 361114.657399997115135, 254668.164799999445677 ], [ 361105.015799999237061, 254664.075100000947714 ], [ 361067.189300000667572, 254655.532800000160933 ], [ 361043.83500000089407, 254651.964200001209974 ], [ 361018.846500001847744, 254650.915300000458956 ], [ 360982.553400002419949, 254651.673700001090765 ], [ 360943.099899999797344, 254644.80689999833703 ], [ 360934.243000000715256, 254643.256799999624491 ], [ 360924.563699997961521, 254643.599700000137091 ], [ 360922.151900000870228, 254642.735599998384714 ], [ 360893.871699996292591, 254649.470199998468161 ], [ 360890.644599996507168, 254649.654899999499321 ], [ 360888.223899997770786, 254649.846200000494719 ], [ 360877.741800002753735, 254649.760400000959635 ], [ 360844.733300000429153, 254643.579599998891354 ], [ 360819.732299998402596, 254644.008299998939037 ], [ 360819.654899999499321, 254653.084699999541044 ], [ 360839.818099997937679, 254652.616399999707937 ], [ 360872.833800002932549, 254657.952899999916553 ], [ 360891.373599998652935, 254658.737900000065565 ], [ 360901.873599998652935, 254656.712900001555681 ], [ 360922.875500001013279, 254652.451799999922514 ], [ 360932.544100001454353, 254653.375399999320507 ], [ 360938.99099999666214, 254653.850299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90418673000001, "LATITUDE": 18.32056147, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 592.69787381799995, "SHAPE_Area": 2637.9647741799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361656.84570000320673, 254537.291299998760223 ], [ 361650.352099999785423, 254542.304400000721216 ], [ 361647.083700001239777, 254547.343899998813868 ], [ 361643.822400003671646, 254551.539099998772144 ], [ 361638.036200001835823, 254568.168099999427795 ], [ 361619.093599997460842, 254614.664799999445677 ], [ 361617.427000001072884, 254620.984000001102686 ], [ 361615.796400003135204, 254623.081500001251698 ], [ 361604.294100001454353, 254648.107500001788139 ], [ 361603.471600003540516, 254650.000599998980761 ], [ 361598.507799997925758, 254664.736600000411272 ], [ 361599.220600001513958, 254675.719300001859665 ], [ 361601.562299996614456, 254684.815499998629093 ], [ 361603.151500001549721, 254687.572700001299381 ], [ 361611.916599996387959, 254699.887800000607967 ], [ 361623.122299998998642, 254709.689899999648333 ], [ 361633.48929999768734, 254723.284699998795986 ], [ 361637.438100002706051, 254733.027300000190735 ], [ 361638.978799998760223, 254741.48369999974966 ], [ 361645.468900002539158, 254736.892700001597404 ], [ 361643.929999999701977, 254728.225299999117851 ], [ 361637.592799998819828, 254714.874499998986721 ], [ 361628.809600003063679, 254704.670200001448393 ], [ 361620.798699997365475, 254698.482900001108646 ], [ 361609.634400002658367, 254683.826099999248981 ], [ 361607.273000001907349, 254677.051699999719858 ], [ 361605.7449000030756, 254667.117800001055002 ], [ 361610.708599999547005, 254652.381900001317263 ], [ 361614.813900001347065, 254643.76069999858737 ], [ 361618.08049999922514, 254638.932300001382828 ], [ 361650.228000000119209, 254556.868900001049042 ], [ 361674.546800002455711, 254541.869199998676777 ], [ 361718.242299996316433, 254524.072799999266863 ], [ 361699.018500000238419, 254508.927799999713898 ], [ 361686.013199999928474, 254521.064800001680851 ], [ 361656.84570000320673, 254537.291299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85133228, "LATITUDE": 18.32177101, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17.718944775400001, "SHAPE_Area": 12.340308779000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367235.652999997138977, 254780.323699999600649 ], [ 367229.985399998724461, 254783.021499998867512 ], [ 367231.567500002682209, 254786.623100001364946 ], [ 367235.652999997138977, 254780.323699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89042902, "LATITUDE": 18.32153668, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.768016894, "SHAPE_Area": 609.85424884700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363098.076399996876717, 254697.27479999884963 ], [ 363092.121100001037121, 254733.745299998670816 ], [ 363092.050999999046326, 254741.977299999445677 ], [ 363091.172799997031689, 254750.413899999111891 ], [ 363100.844899997115135, 254750.915199998766184 ], [ 363100.931199997663498, 254740.783399999141693 ], [ 363106.568199999630451, 254741.6739999987185 ], [ 363108.258199997246265, 254732.610800001770258 ], [ 363101.814900003373623, 254731.713700000196695 ], [ 363106.078400000929832, 254704.517499998211861 ], [ 363109.463699996471405, 254685.75789999961853 ], [ 363104.591600000858307, 254689.728799998760223 ], [ 363102.964599996805191, 254691.404199998825788 ], [ 363098.076399996876717, 254697.27479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-25-A", "ACRE": null, "LONGITUDE": -64.9120622, "LATITUDE": 18.32169814, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.954629540799999, "SHAPE_Area": 137.52752083600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360814.950900003314018, 254731.995200000703335 ], [ 360821.480499997735023, 254722.760499998927116 ], [ 360802.254900000989437, 254707.82660000026226 ], [ 360814.950900003314018, 254731.995200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87311702, "LATITUDE": 18.32176636, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 11.967948181000001, "SHAPE_Area": 8.1699993537100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364927.981299996376038, 254762.06980000063777 ], [ 364928.762500002980232, 254765.031500000506639 ], [ 364930.376900002360344, 254764.833599999547005 ], [ 364931.215599998831749, 254761.040800001472235 ], [ 364927.981299996376038, 254762.06980000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90431179, "LATITUDE": 18.32096759, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 464.89731893700002, "SHAPE_Area": 1044.5602351 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361645.468900002539158, 254736.892700001597404 ], [ 361652.768899999558926, 254731.886199999600649 ], [ 361655.202200002968311, 254730.217399999499321 ], [ 361642.452200002968311, 254712.38120000064373 ], [ 361612.861400000751019, 254683.641399998217821 ], [ 361611.275799997150898, 254680.462000001221895 ], [ 361610.559399999678135, 254669.901399999856949 ], [ 361651.777699999511242, 254564.269799999892712 ], [ 361674.546800002455711, 254541.869199998676777 ], [ 361650.228000000119209, 254556.868900001049042 ], [ 361618.08049999922514, 254638.932300001382828 ], [ 361614.813900001347065, 254643.76069999858737 ], [ 361610.708599999547005, 254652.381900001317263 ], [ 361605.7449000030756, 254667.117800001055002 ], [ 361607.273000001907349, 254677.051699999719858 ], [ 361609.634400002658367, 254683.826099999248981 ], [ 361620.798699997365475, 254698.482900001108646 ], [ 361628.809600003063679, 254704.670200001448393 ], [ 361637.592799998819828, 254714.874499998986721 ], [ 361643.929999999701977, 254728.225299999117851 ], [ 361645.468900002539158, 254736.892700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85425169, "LATITUDE": 18.32088248, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 569.37720351799999, "SHAPE_Area": 1946.57225793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366914.649999998509884, 254693.681200001388788 ], [ 366978.742499999701977, 254647.976300001144409 ], [ 367019.338600002229214, 254615.377999998629093 ], [ 367048.565499998629093, 254592.1858000010252 ], [ 367040.513199999928474, 254590.853300001472235 ], [ 367015.344800002872944, 254610.912300001829863 ], [ 366986.931500002741814, 254633.266800001263618 ], [ 366971.507299996912479, 254645.38399999961257 ], [ 366946.35869999974966, 254663.121100001037121 ], [ 366923.643500000238419, 254679.189399998635054 ], [ 366887.136500000953674, 254705.066199999302626 ], [ 366826.292599998414516, 254748.05350000038743 ], [ 366821.425999999046326, 254751.391100000590086 ], [ 366831.825300000607967, 254761.186599999666214 ], [ 366865.972800001502037, 254728.324299998581409 ], [ 366914.649999998509884, 254693.681200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86677731, "LATITUDE": 18.32140222, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.960540027500002, "SHAPE_Area": 189.18564629100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365591.855200000107288, 254734.7837999984622 ], [ 365607.180500000715256, 254734.27589999884367 ], [ 365617.720100000500679, 254727.607200000435114 ], [ 365606.401199996471405, 254731.103100001811981 ], [ 365601.6621999964118, 254719.454199999570847 ], [ 365593.58110000193119, 254721.499000001698732 ], [ 365591.855200000107288, 254734.7837999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8666732, "LATITUDE": 18.32123439, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.23737399199999, "SHAPE_Area": 312.500590714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365593.58110000193119, 254721.499000001698732 ], [ 365601.6621999964118, 254719.454199999570847 ], [ 365606.401199996471405, 254731.103100001811981 ], [ 365617.720100000500679, 254727.607200000435114 ], [ 365612.981200002133846, 254715.958299998193979 ], [ 365621.87219999730587, 254713.497900001704693 ], [ 365618.722499996423721, 254704.606199998408556 ], [ 365611.613099999725819, 254687.238299999386072 ], [ 365620.520300000905991, 254682.878299999982119 ], [ 365618.931000001728535, 254680.121100001037121 ], [ 365607.594099998474121, 254685.727800000458956 ], [ 365617.054099999368191, 254711.136399999260902 ], [ 365608.967600002884865, 254713.814500000327826 ], [ 365612.903800003230572, 254725.034699998795986 ], [ 365608.051600001752377, 254726.683699999004602 ], [ 365604.118900001049042, 254715.041400000452995 ], [ 365594.417999997735023, 254717.917300000786781 ], [ 365593.58110000193119, 254721.499000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89069186, "LATITUDE": 18.32110741, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.733808469, "SHAPE_Area": 596.83116777299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363085.166400000452995, 254698.224599998444319 ], [ 363084.489600002765656, 254683.020300000905991 ], [ 363081.330799996852875, 254675.184000000357628 ], [ 363079.765000000596046, 254669.682799998670816 ], [ 363066.199699997901917, 254652.895399998873472 ], [ 363046.909400001168251, 254645.560300000011921 ], [ 363069.27929999679327, 254670.019099999219179 ], [ 363065.222599998116493, 254672.941199999302626 ], [ 363069.993900001049042, 254680.790800001472235 ], [ 363074.036300003528595, 254679.557300001382828 ], [ 363075.600299999117851, 254685.269600000232458 ], [ 363076.284400001168251, 254699.629599999636412 ], [ 363077.018799997866154, 254708.079300001263618 ], [ 363085.166400000452995, 254698.224599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86648332, "LATITUDE": 18.32112363, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.08931740700001, "SHAPE_Area": 632.23432874900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365647.292199999094009, 254663.887899998575449 ], [ 365640.748199999332428, 254674.811200000345707 ], [ 365637.492399998009205, 254678.373100001364946 ], [ 365631.000600002706051, 254683.175200000405312 ], [ 365628.49889999628067, 254692.864999998360872 ], [ 365626.042199999094009, 254697.277800001204014 ], [ 365625.19990000128746, 254701.492800001055002 ], [ 365620.340499997138977, 254703.986200001090765 ], [ 365618.722499996423721, 254704.606199998408556 ], [ 365621.87219999730587, 254713.497900001704693 ], [ 365612.981200002133846, 254715.958299998193979 ], [ 365617.720100000500679, 254727.607200000435114 ], [ 365626.638099998235703, 254721.980700001120567 ], [ 365651.318400003015995, 254664.554099999368191 ], [ 365651.354400001466274, 254660.332499999552965 ], [ 365647.292199999094009, 254663.887899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91311867, "LATITUDE": 18.32079472, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1037.0698713700001, "SHAPE_Area": 4797.3815014600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360777.218900002539158, 254617.695799998939037 ], [ 360769.263599999248981, 254604.96510000154376 ], [ 360763.734499998390675, 254591.40989999845624 ], [ 360762.139899998903275, 254589.285900000482798 ], [ 360762.157899998128414, 254587.17509999871254 ], [ 360758.237800002098083, 254574.05519999936223 ], [ 360757.451300002634525, 254571.726700000464916 ], [ 360754.29619999974966, 254563.468299999833107 ], [ 360751.906000003218651, 254560.071199998259544 ], [ 360746.348099999129772, 254549.893199998885393 ], [ 360741.553400002419949, 254544.78770000115037 ], [ 360736.738899998366833, 254542.004099998623133 ], [ 360731.105499997735023, 254540.691500000655651 ], [ 360715.778399996459484, 254541.410399999469519 ], [ 360713.357600003480911, 254541.601700000464916 ], [ 360701.248599998652935, 254543.191300000995398 ], [ 360682.656599998474121, 254548.52760000154376 ], [ 360674.559299997985363, 254552.472100000828505 ], [ 360658.364799998700619, 254560.361099999397993 ], [ 360647.009800001978874, 254568.078600000590086 ], [ 360638.064900003373623, 254576.871300000697374 ], [ 360619.363300003111362, 254595.083399999886751 ], [ 360612.011100001633167, 254606.211199998855591 ], [ 360610.384099997580051, 254607.886599998921156 ], [ 360607.923799999058247, 254612.721599999815226 ], [ 360606.287799999117851, 254615.452500000596046 ], [ 360604.662600003182888, 254616.916799999773502 ], [ 360601.367200002074242, 254625.122499998658895 ], [ 360600.528599999845028, 254628.915300000458956 ], [ 360601.203599996864796, 254644.330699998885393 ], [ 360603.568599998950958, 254650.682799998670816 ], [ 360611.516599997878075, 254664.25789999961853 ], [ 360619.525799997150898, 254670.656199999153614 ], [ 360621.930399999022484, 254672.364700000733137 ], [ 360625.943899996578693, 254674.508499998599291 ], [ 360630.765600003302097, 254676.447799999266863 ], [ 360660.566799998283386, 254680.491399999707937 ], [ 360682.335500001907349, 254680.88060000166297 ], [ 360703.314000003039837, 254679.363600000739098 ], [ 360715.423100002110004, 254677.773899998515844 ], [ 360726.738399997353554, 254674.700100000947714 ], [ 360729.974399998784065, 254673.460099998861551 ], [ 360736.450099997222424, 254670.557700000703335 ], [ 360743.737499997019768, 254667.028799999505281 ], [ 360745.359099999070168, 254665.986600000411272 ], [ 360757.513099998235703, 254659.120000001043081 ], [ 360762.369000002741814, 254657.048799999058247 ], [ 360774.503200002014637, 254652.504000000655651 ], [ 360791.446599997580051, 254651.376200001686811 ], [ 360801.923299998044968, 254652.095199998468161 ], [ 360819.654899999499321, 254653.084699999541044 ], [ 360819.732299998402596, 254644.008299998939037 ], [ 360790.719400003552437, 254642.082100000232458 ], [ 360785.094999998807907, 254639.714000001549721 ], [ 360781.916500002145767, 254634.199599999934435 ], [ 360781.155100002884865, 254628.916000001132488 ], [ 360777.218900002539158, 254617.695799998939037 ] ], [ [ 360737.453500002622604, 254552.775699999183416 ], [ 360742.235600002110004, 254559.358800001442432 ], [ 360745.387199997901917, 254568.03940000012517 ], [ 360747.755699999630451, 254573.969399999827147 ], [ 360756.407600000500679, 254599.582600001245737 ], [ 360757.991499997675419, 254602.973000001162291 ], [ 360759.589699998497963, 254604.674800001084805 ], [ 360761.162799999117851, 254609.331799998879433 ], [ 360766.74040000140667, 254617.187899999320507 ], [ 360773.052500002086163, 254633.49379999935627 ], [ 360772.192199997603893, 254639.819499999284744 ], [ 360770.550800003111362, 254643.183600001037121 ], [ 360768.117499999701977, 254644.852400001138449 ], [ 360754.366999998688698, 254649.806099999696016 ], [ 360745.449000000953674, 254655.432700000703335 ], [ 360729.245399996638298, 254664.377099998295307 ], [ 360710.6570999994874, 254669.291200000792742 ], [ 360685.639799997210503, 254671.619500000029802 ], [ 360665.48200000077486, 254671.454599998891354 ], [ 360645.338600002229214, 254669.600900001823902 ], [ 360630.844800002872944, 254667.160300001502037 ], [ 360625.223899997770786, 254664.370099999010563 ], [ 360618.821999996900558, 254658.618099998682737 ], [ 360615.63629999756813, 254653.947999998927116 ], [ 360610.897299997508526, 254642.299100000411272 ], [ 360610.125200003385544, 254638.282000001519918 ], [ 360610.218699999153614, 254627.305900000035763 ], [ 360612.684399999678135, 254621.837600000202656 ], [ 360618.414899997413158, 254611.752000000327826 ], [ 360620.04730000346899, 254609.443399999290705 ], [ 360629.017399996519089, 254597.695599999278784 ], [ 360637.138099998235703, 254591.006999999284744 ], [ 360651.779399998486042, 254576.139199998229742 ], [ 360668.812600001692772, 254564.457400001585484 ], [ 360683.383799999952316, 254557.821600001305342 ], [ 360693.89639999717474, 254554.319099999964237 ], [ 360710.861400000751019, 254550.658300001174212 ], [ 360724.575900003314018, 254549.926100000739098 ], [ 360732.633599996566772, 254550.625399999320507 ], [ 360737.453500002622604, 254552.775699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89886849, "LATITUDE": 18.3208929, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 395.240458864, "SHAPE_Area": 1138.09337428 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362224.585699997842312, 254625.320000000298023 ], [ 362245.603799998760223, 254619.159200001507998 ], [ 362267.424599997699261, 254613.427200000733137 ], [ 362282.7787000015378, 254609.542100001126528 ], [ 362290.87780000269413, 254605.386500000953674 ], [ 362276.38570000231266, 254602.734700001776218 ], [ 362276.367700003087521, 254604.845499999821186 ], [ 362239.19650000333786, 254614.040500000119209 ], [ 362223.023400001227856, 254619.396600000560284 ], [ 362216.545999996364117, 254622.510000001639128 ], [ 362211.656000003218651, 254628.591699998825788 ], [ 362210.028899997472763, 254630.267099998891354 ], [ 362208.391099996864796, 254633.208999998867512 ], [ 362201.802199997007847, 254649.409299999475479 ], [ 362198.501400001347065, 254658.248199999332428 ], [ 362194.439300000667572, 254661.80350000038743 ], [ 362192.002400003373623, 254663.894499998539686 ], [ 362180.690600000321865, 254666.546100001782179 ], [ 362165.377899996936321, 254665.576400000602007 ], [ 362159.737300001084805, 254665.1081000007689 ], [ 362151.648999996483326, 254667.99720000103116 ], [ 362146.762500002980232, 254673.656700000166893 ], [ 362137.808600001037121, 254683.504900000989437 ], [ 362132.123099997639656, 254688.313499998301268 ], [ 362136.924999997019768, 254692.574599999934435 ], [ 362149.12389999628067, 254680.431099999696016 ], [ 362153.205899998545647, 254674.553800001740456 ], [ 362156.447300001978874, 254672.680500000715256 ], [ 362163.714900001883507, 254671.473499998450279 ], [ 362176.606899999082088, 254672.634399998933077 ], [ 362183.064599998295307, 254671.8429000005126 ], [ 362187.105099998414516, 254670.820500001311302 ], [ 362192.767300002276897, 254668.755899999290705 ], [ 362197.621399998664856, 254666.895799998193979 ], [ 362201.681699998676777, 254663.551500000059605 ], [ 362204.953699998557568, 254658.089899998158216 ], [ 362213.211000002920628, 254635.359400000423193 ], [ 362218.914599999785423, 254628.440000001341105 ], [ 362224.585699997842312, 254625.320000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90730169, "LATITUDE": 18.32114937, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.48342422100001, "SHAPE_Area": 792.14337020599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361351.025600001215935, 254656.167100001126528 ], [ 361334.894000001251698, 254656.668400000780821 ], [ 361267.903499998152256, 254663.930599998682737 ], [ 361267.883799999952316, 254666.252399999648333 ], [ 361275.919900000095367, 254669.484600000083447 ], [ 361280.750600002706051, 254670.368500001728535 ], [ 361329.163500003516674, 254666.754000000655651 ], [ 361336.405900001525879, 254668.502000000327826 ], [ 361342.019500002264977, 254672.136500000953674 ], [ 361345.225000001490116, 254674.4847999997437 ], [ 361348.412500001490116, 254678.943900000303984 ], [ 361351.025600001215935, 254656.167100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89764578, "LATITUDE": 18.32084028, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.43137152, "SHAPE_Area": 2487.0684351099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362349.643299996852875, 254617.055399999022484 ], [ 362344.951099999248981, 254599.918400000780821 ], [ 362321.513999998569489, 254606.059399999678135 ], [ 362308.604099996387959, 254607.009199999272823 ], [ 362336.184799998998642, 254682.384199999272823 ], [ 362362.913599997758865, 254668.459699999541044 ], [ 362349.643299996852875, 254617.055399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91312986, "LATITUDE": 18.32100511, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.27309090200001, "SHAPE_Area": 847.63361523399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360745.449000000953674, 254655.432700000703335 ], [ 360702.791799999773502, 254646.006499998271465 ], [ 360696.377199999988079, 254641.732099998742342 ], [ 360694.775399997830391, 254640.452500000596046 ], [ 360687.574299998581409, 254633.849599998444319 ], [ 360690.036399997770786, 254628.80350000038743 ], [ 360689.262500002980232, 254624.997499998658895 ], [ 360689.291299998760223, 254621.620299998670816 ], [ 360686.089400000870228, 254618.849800001829863 ], [ 360680.454199999570847, 254617.748199999332428 ], [ 360675.600100003182888, 254619.608399998396635 ], [ 360673.163199998438358, 254621.699299998581409 ], [ 360672.322700001299381, 254625.703200001269579 ], [ 360672.290399998426437, 254629.502700001001358 ], [ 360673.888599999248981, 254631.204500000923872 ], [ 360674.673299998044968, 254633.743999999016523 ], [ 360685.862800002098083, 254645.445799998939037 ], [ 360693.870200000703335, 254652.05519999936223 ], [ 360704.318099997937679, 254656.151500001549721 ], [ 360728.473300002515316, 254660.359999999403954 ], [ 360729.245399996638298, 254664.377099998295307 ], [ 360745.449000000953674, 254655.432700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87094334, "LATITUDE": 18.32110182, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17.130134179199999, "SHAPE_Area": 13.616343732500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365163.245800003409386, 254690.323699999600649 ], [ 365156.793499998748302, 254690.48200000077486 ], [ 365156.775499999523163, 254692.592700000852346 ], [ 365163.227799996733665, 254692.434500001370907 ], [ 365163.245800003409386, 254690.323699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91146764, "LATITUDE": 18.32078582, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.328896343, "SHAPE_Area": 1029.32513425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360890.644599996507168, 254649.654899999499321 ], [ 360893.871699996292591, 254649.470199998468161 ], [ 360922.151900000870228, 254642.735599998384714 ], [ 360903.667900003492832, 254635.407200001180172 ], [ 360892.433499999344349, 254628.982400000095367 ], [ 360882.030500002205372, 254619.609099999070168 ], [ 360856.426299996674061, 254596.179299999028444 ], [ 360839.621399998664856, 254581.054099999368191 ], [ 360833.919699996709824, 254587.76240000128746 ], [ 360879.5253000035882, 254629.721099998801947 ], [ 360889.874300003051758, 254645.42680000141263 ], [ 360890.644599996507168, 254649.654899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90446184, "LATITUDE": 18.3206014, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.076398388, "SHAPE_Area": 789.16407155900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361638.036200001835823, 254568.168099999427795 ], [ 361632.397399999201298, 254567.488699998706579 ], [ 361627.538000002503395, 254569.982099998742342 ], [ 361615.223899997770786, 254595.634700000286102 ], [ 361615.193300001323223, 254599.223000001162291 ], [ 361615.987000003457069, 254600.70719999819994 ], [ 361618.395199999213219, 254601.993500001728535 ], [ 361615.121399998664856, 254607.666200000792742 ], [ 361609.466399997472763, 254608.886500000953674 ], [ 361606.205200001597404, 254613.081599999219179 ], [ 361599.461599998176098, 254647.43470000103116 ], [ 361604.294100001454353, 254648.107500001788139 ], [ 361615.796400003135204, 254623.081500001251698 ], [ 361617.427000001072884, 254620.984000001102686 ], [ 361619.093599997460842, 254614.664799999445677 ], [ 361638.036200001835823, 254568.168099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "10744030300", "MAP": null, "PARCEL_NAM": "26-1", "ACRE": null, "LONGITUDE": -64.90084816, "LATITUDE": 18.3205272, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.86794318099999, "SHAPE_Area": 2190.4458744499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362034.463799998164177, 254632.429099999368191 ], [ 361987.273800000548363, 254558.783100001513958 ], [ 361973.49099999666214, 254567.536200001835823 ], [ 361965.355899997055531, 254575.91330000013113 ], [ 362013.995899997651577, 254643.387899998575449 ], [ 362034.463799998164177, 254632.429099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86646047000001, "LATITUDE": 18.32063094, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.82748212199999, "SHAPE_Area": 266.63164741000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365640.748199999332428, 254674.811200000345707 ], [ 365647.292199999094009, 254663.887899998575449 ], [ 365640.854299999773502, 254662.357500001788139 ], [ 365627.58219999819994, 254611.164299998432398 ], [ 365623.534400001168251, 254613.030999999493361 ], [ 365640.748199999332428, 254674.811200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86596122, "LATITUDE": 18.32042216, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.39926091500001, "SHAPE_Area": 550.61956659800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365725.367200002074242, 254586.000100001692772 ], [ 365723.002199999988079, 254579.647900000214577 ], [ 365703.470899999141693, 254600.59739999845624 ], [ 365680.70889999717474, 254622.153799999505281 ], [ 365678.270199999213219, 254624.455800000578165 ], [ 365674.204499997198582, 254628.433299999684095 ], [ 365661.177599996328354, 254643.103300001472235 ], [ 365657.05969999730587, 254653.202100001275539 ], [ 365651.354400001466274, 254660.332499999552965 ], [ 365651.318400003015995, 254664.554099999368191 ], [ 365659.437299996614456, 254658.076699998229742 ], [ 365663.517399996519089, 254652.410500001162291 ], [ 365670.072200000286102, 254640.220800001174212 ], [ 365682.281999997794628, 254626.810699999332428 ], [ 365692.029600001871586, 254618.446699999272823 ], [ 365725.367200002074242, 254586.000100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91508675, "LATITUDE": 18.32037183, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.82632343899999, "SHAPE_Area": 895.37584234300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360505.327200002968311, 254540.110100001096725 ], [ 360480.317100003361702, 254541.594200000166893 ], [ 360468.197300001978874, 254544.450300000607967 ], [ 360473.015399999916553, 254546.811799999326468 ], [ 360478.637999996542931, 254549.390900000929832 ], [ 360484.231799997389317, 254555.347300000488758 ], [ 360486.618400000035763, 254559.166499998420477 ], [ 360488.976199999451637, 254566.363000001758337 ], [ 360495.169600002467632, 254596.600099999457598 ], [ 360495.891400001943111, 254606.527399998158216 ], [ 360507.92849999666214, 254613.380899999290705 ], [ 360507.156400002539158, 254609.363800000399351 ], [ 360507.976999998092651, 254607.681800000369549 ], [ 360512.028399996459484, 254605.392900001257658 ], [ 360511.277800001204014, 254598.842799998819828 ], [ 360507.248099997639656, 254598.598799999803305 ], [ 360504.841700002551079, 254597.101399999111891 ], [ 360503.24889999628067, 254594.766399998217821 ], [ 360503.282999999821186, 254590.755899999290705 ], [ 360497.105899997055531, 254558.619100000709295 ], [ 360496.371500000357628, 254550.169300001114607 ], [ 360499.645300000905991, 254544.496599998325109 ], [ 360505.327200002968311, 254540.110100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90017287000001, "LATITUDE": 18.32069577, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.503756745499999, "SHAPE_Area": 34.040871513200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362056.052000001072884, 254625.629399999976158 ], [ 362078.686300002038479, 254619.059599999338388 ], [ 362077.095299996435642, 254616.5135000012815 ], [ 362056.052000001072884, 254625.629399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90442283, "LATITUDE": 18.32032702, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.26194366600001, "SHAPE_Area": 938.013287805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361626.1266999989748, 254546.328000001609325 ], [ 361622.800800003111362, 254558.122099999338388 ], [ 361612.94879999756813, 254578.72859999909997 ], [ 361597.357299998402596, 254610.476100001484156 ], [ 361606.205200001597404, 254613.081599999219179 ], [ 361609.466399997472763, 254608.886500000953674 ], [ 361615.121399998664856, 254607.666200000792742 ], [ 361618.395199999213219, 254601.993500001728535 ], [ 361615.987000003457069, 254600.70719999819994 ], [ 361615.193300001323223, 254599.223000001162291 ], [ 361615.223899997770786, 254595.634700000286102 ], [ 361627.538000002503395, 254569.982099998742342 ], [ 361632.397399999201298, 254567.488699998706579 ], [ 361638.036200001835823, 254568.168099999427795 ], [ 361643.822400003671646, 254551.539099998772144 ], [ 361647.083700001239777, 254547.343899998813868 ], [ 361645.481799997389317, 254546.064300000667572 ], [ 361626.1266999989748, 254546.328000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90739123, "LATITUDE": 18.32057361, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.015350853699999, "SHAPE_Area": 15.7443935313 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361312.838699996471405, 254595.270799998193979 ], [ 361308.789200000464916, 254597.348499998450279 ], [ 361301.433499999344349, 254608.898499999195337 ], [ 361312.838699996471405, 254595.270799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91297586, "LATITUDE": 18.31973018, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 660.84983819199999, "SHAPE_Area": 2902.79999911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360578.145300000905991, 254511.364100001752377 ], [ 360605.689400002360344, 254496.390799999237061 ], [ 360612.973200000822544, 254493.284000001847744 ], [ 360625.944300003349781, 254485.157499998807907 ], [ 360638.893799997866154, 254479.563999999314547 ], [ 360647.786700002849102, 254476.892599999904633 ], [ 360674.434500001370907, 254472.466600000858307 ], [ 360691.377899996936321, 254471.338700000196695 ], [ 360702.6537000015378, 254472.908700000494719 ], [ 360737.238799996674061, 254483.324200000613928 ], [ 360756.516599997878075, 254492.136799998581409 ], [ 360762.920299999415874, 254497.677700001746416 ], [ 360764.520400002598763, 254499.168400000780821 ], [ 360770.90429999679327, 254507.031100001186132 ], [ 360778.11259999871254, 254512.789700001478195 ], [ 360785.295699998736382, 254521.503299999982119 ], [ 360790.8462999984622, 254532.525600001215935 ], [ 360792.390600003302097, 254540.559799998998642 ], [ 360793.178999997675419, 254542.677200000733137 ], [ 360793.967299997806549, 254544.79450000077486 ], [ 360794.755599997937679, 254546.911899998784065 ], [ 360797.138599999248981, 254551.153299998492002 ], [ 360801.123400002717972, 254556.674400001764297 ], [ 360808.320900000631809, 254563.699299998581409 ], [ 360818.741800002753735, 254570.961800001561642 ], [ 360833.919699996709824, 254587.76240000128746 ], [ 360839.621399998664856, 254581.054099999368191 ], [ 360830.04280000180006, 254569.576699998229742 ], [ 360822.845299996435642, 254562.551699999719858 ], [ 360810.822499997913837, 254554.009500000625849 ], [ 360805.241300001740456, 254546.575599998235703 ], [ 360798.947200000286102, 254528.158900000154972 ], [ 360796.558899998664856, 254524.550799999386072 ], [ 360791.792900003492832, 254516.067999999970198 ], [ 360788.61259999871254, 254510.764699999243021 ], [ 360776.609600000083447, 254499.900600001215935 ], [ 360770.222099997103214, 254492.460099998861551 ], [ 360765.423799999058247, 254487.776799999177456 ], [ 360760.621899999678135, 254483.515599999576807 ], [ 360734.907999999821186, 254472.961599998176098 ], [ 360733.298900000751019, 254472.526200000196695 ], [ 360705.142700001597404, 254464.696400001645088 ], [ 360701.118400000035763, 254463.819099999964237 ], [ 360694.671499997377396, 254463.344099998474121 ], [ 360680.973099999129772, 254462.176500000059605 ], [ 360651.90089999884367, 254467.215900000184774 ], [ 360645.439699999988079, 254468.42960000038147 ], [ 360643.015299998223782, 254469.043000001460314 ], [ 360630.88289999961853, 254473.3766999989748 ], [ 360622.79280000180006, 254476.47690000012517 ], [ 360607.395499996840954, 254485.42790000140667 ], [ 360600.104500003159046, 254489.379000000655651 ], [ 360574.185699999332428, 254502.888000000268221 ], [ 360578.145300000905991, 254511.364100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8977736, "LATITUDE": 18.32032389, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 347.809019664, "SHAPE_Area": 1045.49829742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362396.237800002098083, 254542.920699998736382 ], [ 362390.616999998688698, 254540.130499999970198 ], [ 362387.370200000703335, 254542.637099999934435 ], [ 362384.1216000020504, 254545.354699999094009 ], [ 362376.799999997019768, 254552.894099999219179 ], [ 362370.275799997150898, 254561.495600000023842 ], [ 362366.175899997353554, 254569.483600001782179 ], [ 362362.108400002121925, 254573.672100000083447 ], [ 362358.04450000077486, 254577.4386 ], [ 362353.174199998378754, 254581.198399998247623 ], [ 362346.687799997627735, 254585.367199998348951 ], [ 362345.067900002002716, 254586.198300000280142 ], [ 362331.312100000679493, 254591.785199999809265 ], [ 362321.621899999678135, 254593.39469999819994 ], [ 362309.525499999523163, 254593.506799999624491 ], [ 362263.652000002563, 254582.998799998313189 ], [ 362247.51129999756813, 254584.555500000715256 ], [ 362247.495099999010563, 254586.455200001597404 ], [ 362247.479000002145767, 254588.354899998754263 ], [ 362249.089800000190735, 254588.579199999570847 ], [ 362303.832699999213219, 254599.159699998795986 ], [ 362320.770700000226498, 254598.66499999910593 ], [ 362336.126599997282028, 254594.568900000303984 ], [ 362341.788699999451637, 254592.504299998283386 ], [ 362358.780599996447563, 254585.677200000733137 ], [ 362362.835600003600121, 254582.9662000015378 ], [ 362368.528300002217293, 254577.313299998641014 ], [ 362374.258799999952316, 254567.227699998766184 ], [ 362381.603699997067451, 254556.944200001657009 ], [ 362390.554099999368191, 254547.518300000578165 ], [ 362396.237800002098083, 254542.920699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86609468, "LATITUDE": 18.32025192, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.510056350200003, "SHAPE_Area": 127.994590608 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365678.270199999213219, 254624.455800000578165 ], [ 365680.70889999717474, 254622.153799999505281 ], [ 365668.176500000059605, 254578.776999998837709 ], [ 365665.748599998652935, 254579.812600001692772 ], [ 365678.270199999213219, 254624.455800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89804136, "LATITUDE": 18.32011328, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.30711889600002, "SHAPE_Area": 1176.9008349600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362308.992499999701977, 254561.416200000792742 ], [ 362325.237400002777576, 254547.616999998688698 ], [ 362330.924699999392033, 254542.597300000488758 ], [ 362343.116499997675419, 254531.298000000417233 ], [ 362360.977700002491474, 254517.089800000190735 ], [ 362355.3783999979496, 254511.766699999570847 ], [ 362353.755000002682209, 254513.019900001585484 ], [ 362341.574000000953674, 254523.052700001746416 ], [ 362335.886699996888638, 254528.072399999946356 ], [ 362324.506599999964237, 254538.745099999010563 ], [ 362304.215700000524521, 254554.19990000128746 ], [ 362289.6283999979496, 254562.735300000756979 ], [ 362280.715800002217293, 254567.72859999909997 ], [ 362272.618500001728535, 254571.673200000077486 ], [ 362269.380699999630451, 254573.124299999326468 ], [ 362259.681500002741814, 254575.789099998772144 ], [ 362242.741800002753735, 254576.494899999350309 ], [ 362240.335400000214577, 254574.997499998658895 ], [ 362238.733599998056889, 254573.717799998819828 ], [ 362234.6570999994874, 254578.961800001561642 ], [ 362231.372500002384186, 254585.901000000536442 ], [ 362237.01129999756813, 254586.58049999922514 ], [ 362247.479000002145767, 254588.354899998754263 ], [ 362247.495099999010563, 254586.455200001597404 ], [ 362247.51129999756813, 254584.555500000715256 ], [ 362263.652000002563, 254582.998799998313189 ], [ 362271.734899997711182, 254580.742899999022484 ], [ 362287.117700003087521, 254573.480599999427795 ], [ 362305.759999997913837, 254562.234099999070168 ], [ 362308.992499999701977, 254561.416200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89833207, "LATITUDE": 18.31996714, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.42746036099999, "SHAPE_Area": 896.22500925500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362288.427500002086163, 254514.385099999606609 ], [ 362264.861100003123283, 254535.723799999803305 ], [ 362258.360200002789497, 254541.581199999898672 ], [ 362250.208999998867512, 254551.857999999076128 ], [ 362238.013599999248981, 254563.579500000923872 ], [ 362233.949699997901917, 254567.345899999141693 ], [ 362226.604699999094009, 254577.629399999976158 ], [ 362224.121100001037121, 254585.208399999886751 ], [ 362231.372500002384186, 254585.901000000536442 ], [ 362234.6570999994874, 254578.961800001561642 ], [ 362238.733599998056889, 254573.717799998819828 ], [ 362255.811800003051758, 254556.75899999961257 ], [ 362257.449600003659725, 254553.817099999636412 ], [ 362265.586499996483326, 254545.228900000452995 ], [ 362295.650200001895428, 254518.454999998211861 ], [ 362298.916799999773502, 254513.626600001007318 ], [ 362305.381700001657009, 254511.990699999034405 ], [ 362307.033900000154972, 254507.360199999064207 ], [ 362304.631099998950958, 254505.440699998289347 ], [ 362304.65089999884367, 254503.11879999935627 ], [ 362296.616499997675419, 254499.675599999725819 ], [ 362294.140100002288818, 254506.410300001502037 ], [ 362290.05460000038147, 254512.709699999541044 ], [ 362288.427500002086163, 254514.385099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91548777, "LATITUDE": 18.32010007, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 539.69801489600002, "SHAPE_Area": 2488.6878415400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360354.674500003457069, 254523.889499999582767 ], [ 360338.485299997031689, 254531.145199999213219 ], [ 360369.706699997186661, 254557.787500001490116 ], [ 360371.308499999344349, 254559.067099999636412 ], [ 360382.542999997735023, 254565.491900000721216 ], [ 360389.780000001192093, 254567.873199999332428 ], [ 360403.4746999964118, 254569.462900001555681 ], [ 360412.353100001811981, 254568.480099998414516 ], [ 360418.01349999755621, 254566.626600001007318 ], [ 360458.489200003445148, 254548.170499999076128 ], [ 360464.961199998855591, 254545.690400000661612 ], [ 360468.197300001978874, 254544.450300000607967 ], [ 360480.317100003361702, 254541.594200000166893 ], [ 360505.327200002968311, 254540.110100001096725 ], [ 360518.256999999284744, 254536.838500000536442 ], [ 360535.229099996387959, 254532.333299998193979 ], [ 360547.366999998688698, 254527.366399999707937 ], [ 360578.145300000905991, 254511.364100001752377 ], [ 360574.185699999332428, 254502.888000000268221 ], [ 360545.023500002920628, 254518.481300000101328 ], [ 360526.417199999094009, 254525.50620000064373 ], [ 360509.443300001323223, 254530.22239999845624 ], [ 360505.402699999511242, 254531.244800001382828 ], [ 360485.241300001740456, 254531.502000000327826 ], [ 360470.704300001263618, 254534.127199999988079 ], [ 360454.53490000218153, 254539.061099998652935 ], [ 360423.770999997854233, 254553.374800000339746 ], [ 360414.055699996650219, 254557.939399998635054 ], [ 360404.36370000243187, 254559.759899999946356 ], [ 360397.918600000441074, 254559.073800001293421 ], [ 360393.087899997830391, 254558.189899999648333 ], [ 360386.649999998509884, 254556.659600000828505 ], [ 360383.435599997639656, 254555.366700001060963 ], [ 360377.814800001680851, 254552.576499998569489 ], [ 360364.21169999986887, 254540.221700001507998 ], [ 360361.803599998354912, 254538.935499999672174 ], [ 360361.009900003671646, 254537.451299998909235 ], [ 360361.042199999094009, 254533.651900000870228 ], [ 360362.672799997031689, 254531.554299999028444 ], [ 360354.674500003457069, 254523.889499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86878796000001, "LATITUDE": 18.3200092, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.89426955899999, "SHAPE_Area": 402.45472595400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365382.547700002789497, 254599.237399999052286 ], [ 365380.175499998033047, 254593.729499999433756 ], [ 365382.650200001895428, 254587.205899998545647 ], [ 365386.723099999129772, 254582.384100001305342 ], [ 365400.536499999463558, 254570.042599998414516 ], [ 365401.366200000047684, 254567.30519999936223 ], [ 365400.608499996364117, 254561.599500000476837 ], [ 365390.169600002467632, 254556.447799999266863 ], [ 365387.770400002598763, 254554.106100000441074 ], [ 365380.279799997806549, 254581.486999999731779 ], [ 365376.12780000269413, 254595.596200000494719 ], [ 365382.547700002789497, 254599.237399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85309198, "LATITUDE": 18.32002445, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.621241173800001, "SHAPE_Area": 60.678927922200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367055.876199997961521, 254585.912799999117851 ], [ 367047.015799999237061, 254584.784800000488758 ], [ 367040.513199999928474, 254590.853300001472235 ], [ 367048.565499998629093, 254592.1858000010252 ], [ 367055.876199997961521, 254585.912799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90417986, "LATITUDE": 18.32004867, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 14.2095911345, "SHAPE_Area": 6.12750984921 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361650.352099999785423, 254542.304400000721216 ], [ 361645.481799997389317, 254546.064300000667572 ], [ 361647.083700001239777, 254547.343899998813868 ], [ 361650.352099999785423, 254542.304400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89655798, "LATITUDE": 18.31985823, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.99805967100002, "SHAPE_Area": 490.10804983700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362521.324199996888638, 254531.278900001198053 ], [ 362514.031400002539158, 254535.441100001335144 ], [ 362490.673500001430511, 254532.294599998742342 ], [ 362482.626599997282028, 254530.328899998217821 ], [ 362472.983199998736382, 254526.450300000607967 ], [ 362457.688400000333786, 254523.369800001382828 ], [ 362439.152199998497963, 254522.162599999457598 ], [ 362427.045000001788139, 254523.541200000792742 ], [ 362412.49719999730587, 254527.432900000363588 ], [ 362400.352099999785423, 254533.244100000709295 ], [ 362390.616999998688698, 254540.130499999970198 ], [ 362396.237800002098083, 254542.920699998736382 ], [ 362403.548600003123283, 254536.647799998521805 ], [ 362415.699000000953674, 254530.203299999237061 ], [ 362431.862999998033047, 254525.90260000154376 ], [ 362448.80460000038147, 254524.985800001770258 ], [ 362459.272299997508526, 254526.760200001299381 ], [ 362482.588799998164177, 254534.761500000953674 ], [ 362501.114200003445148, 254537.235199999064207 ], [ 362510.781000003218651, 254538.369800001382828 ], [ 362516.4324000030756, 254537.571699999272823 ], [ 362519.671999998390675, 254535.909400001168251 ], [ 362521.304399996995926, 254533.60080000013113 ], [ 362521.324199996888638, 254531.278900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90379589, "LATITUDE": 18.31968938, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.26975867199999, "SHAPE_Area": 718.78561845499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361703.930100001394749, 254500.313099998980761 ], [ 361705.614699997007847, 254491.883200000971556 ], [ 361704.842500001192093, 254487.866099998354912 ], [ 361704.050599999725819, 254486.170899998396635 ], [ 361696.792000003159046, 254486.322500001639128 ], [ 361671.616499997675419, 254507.225900001823902 ], [ 361680.387000001966953, 254518.907800000160933 ], [ 361656.84570000320673, 254537.291299998760223 ], [ 361686.013199999928474, 254521.064800001680851 ], [ 361699.018500000238419, 254508.927799999713898 ], [ 361701.458999998867512, 254506.414599999785423 ], [ 361703.930100001394749, 254500.313099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91189206, "LATITUDE": 18.3195091, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.41780778, "SHAPE_Area": 930.61342395500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360802.139399997889996, 254437.414799999445677 ], [ 360803.725000001490116, 254440.594200000166893 ], [ 360802.103399999439716, 254441.636399999260902 ], [ 360803.681900002062321, 254445.660100001841784 ], [ 360805.301700003445148, 254444.828999999910593 ], [ 360807.715199999511242, 254445.48200000077486 ], [ 360822.014899998903275, 254470.719200000166893 ], [ 360838.701099999248981, 254499.775600001215935 ], [ 360840.284999996423721, 254503.166000001132488 ], [ 360849.872599996626377, 254513.588100001215935 ], [ 360856.288900002837181, 254517.651399999856949 ], [ 360861.117799997329712, 254518.746399998664856 ], [ 360864.325099997222424, 254520.883499998599291 ], [ 360868.42679999768734, 254512.684500001370907 ], [ 360864.418600000441074, 254509.907400000840425 ], [ 360857.982500001788139, 254508.166000001132488 ], [ 360853.177000001072884, 254504.326999999582767 ], [ 360845.99210000038147, 254495.824499998241663 ], [ 360835.668300002813339, 254477.163699999451637 ], [ 360811.044799998402596, 254433.265799999237061 ], [ 360802.139399997889996, 254437.414799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88028014, "LATITUDE": 18.31960929, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.748443686300007, "SHAPE_Area": 188.07968479100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364175.95830000191927, 254535.32209999859333 ], [ 364183.256399996578693, 254530.526700001209974 ], [ 364179.250100001692772, 254527.538499999791384 ], [ 364173.816299997270107, 254502.796100001782179 ], [ 364172.212600000202656, 254501.72749999910593 ], [ 364167.376599997282028, 254501.47690000012517 ], [ 364175.95830000191927, 254535.32209999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89702561, "LATITUDE": 18.31946546, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.09790158000001, "SHAPE_Area": 905.58971690600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362452.513599999248981, 254468.23200000077486 ], [ 362448.539499998092651, 254461.444499999284744 ], [ 362442.879199996590614, 254463.298000000417233 ], [ 362431.558399997651577, 254467.004999998956919 ], [ 362394.300800003111362, 254486.331799998879433 ], [ 362384.581900000572205, 254491.318500000983477 ], [ 362378.106200002133846, 254494.220800001174212 ], [ 362376.477399997413158, 254496.107299998402596 ], [ 362372.417099997401237, 254499.45160000026226 ], [ 362355.3783999979496, 254511.766699999570847 ], [ 362360.977700002491474, 254517.089800000190735 ], [ 362364.222699999809265, 254514.794300001114607 ], [ 362386.930699996650219, 254499.57039999961853 ], [ 362390.982100002467632, 254497.281500000506639 ], [ 362415.290100000798702, 254483.548300001770258 ], [ 362420.934299997985363, 254483.594500001519918 ], [ 362423.335299998521805, 254485.725099999457598 ], [ 362424.123599998652935, 254487.842399999499321 ], [ 362430.602899998426437, 254484.51799999922514 ], [ 362429.8091000020504, 254483.0337999984622 ], [ 362429.852300003170967, 254477.9679000005126 ], [ 362433.091899998486042, 254476.305700000375509 ], [ 362441.196400001645088, 254471.5168999992311 ], [ 362452.513599999248981, 254468.23200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91138763, "LATITUDE": 18.31912746, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.329244711, "SHAPE_Area": 1389.4060508499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360870.220299996435642, 254396.808800000697374 ], [ 360865.46509999781847, 254387.059599999338388 ], [ 360863.118100002408028, 254378.596599999815226 ], [ 360863.141500003635883, 254375.852600000798702 ], [ 360861.537900000810623, 254374.784000001847744 ], [ 360860.796300001442432, 254367.17850000038743 ], [ 360851.890900000929832, 254371.327500000596046 ], [ 360855.784000001847744, 254387.613600000739098 ], [ 360863.661899998784065, 254409.420699998736382 ], [ 360882.704099997878075, 254445.884700000286102 ], [ 360896.242399998009205, 254465.838300000876188 ], [ 360901.829000003635883, 254472.638999998569489 ], [ 360908.185999996960163, 254483.667899999767542 ], [ 360912.975400000810623, 254489.406599998474121 ], [ 360923.362099997699261, 254500.67960000038147 ], [ 360930.663900002837181, 254495.462000001221895 ], [ 360929.071000002324581, 254493.126899998635054 ], [ 360920.287900000810623, 254482.922499999403954 ], [ 360913.895000003278255, 254476.115200001746416 ], [ 360911.519199997186661, 254471.029500000178814 ], [ 360908.338899999856949, 254465.726199999451637 ], [ 360905.153200000524521, 254461.056000001728535 ], [ 360902.764799997210503, 254457.447900000959635 ], [ 360893.200599998235703, 254444.281800001859665 ], [ 360890.020300000905991, 254438.978399999439716 ], [ 360883.66330000013113, 254427.949599999934435 ], [ 360874.124200001358986, 254411.828400000929832 ], [ 360872.540299996733665, 254408.437899999320507 ], [ 360870.182499997317791, 254401.241399999707937 ], [ 360870.220299996435642, 254396.808800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86185115000001, "LATITUDE": 18.31962724, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.5678450459, "SHAPE_Area": 37.786720729899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366112.832299999892712, 254538.08669999986887 ], [ 366128.960400000214577, 254538.007599998265505 ], [ 366125.774700000882149, 254533.337400000542402 ], [ 366112.832299999892712, 254538.08669999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90970554, "LATITUDE": 18.31870263, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 882.78280490400005, "SHAPE_Area": 3905.4044745800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361092.971100002527237, 254374.144999999552965 ], [ 361042.171599999070168, 254373.940400000661612 ], [ 361001.85419999808073, 254373.82149999961257 ], [ 360976.050399996340275, 254373.821400001645088 ], [ 360971.212499998509884, 254373.781800001859665 ], [ 360962.332299999892712, 254374.975699998438358 ], [ 360951.807099997997284, 254379.955800000578165 ], [ 360944.499899998307228, 254385.806600000709295 ], [ 360933.895599998533726, 254400.074099998921156 ], [ 360931.447899997234344, 254403.431600000709295 ], [ 360928.170500002801418, 254409.526500001549721 ], [ 360924.065200001001358, 254418.147700000554323 ], [ 360923.231899999082088, 254421.307300001382828 ], [ 360920.706900000572205, 254433.741200000047684 ], [ 360917.157999999821186, 254471.708999998867512 ], [ 360916.333700001239777, 254473.813200000673532 ], [ 360913.895000003278255, 254476.115200001746416 ], [ 360920.287900000810623, 254482.922499999403954 ], [ 360929.071000002324581, 254493.126899998635054 ], [ 360929.105200000107288, 254489.116399999707937 ], [ 360926.909199997782707, 254462.922800000756979 ], [ 360930.393399998545647, 254432.553899999707937 ], [ 360930.411399997770786, 254430.44310000166297 ], [ 360932.086999997496605, 254423.068500000983477 ], [ 360933.742799997329712, 254418.015799999237061 ], [ 360936.211999997496605, 254412.125399999320507 ], [ 360938.668700002133846, 254407.712600000202656 ], [ 360951.704599998891354, 254391.987300001084805 ], [ 360956.57660000026226, 254388.016399998217821 ], [ 360958.19650000333786, 254387.185199998319149 ], [ 360966.293700002133846, 254383.240699999034405 ], [ 360972.753200002014637, 254382.238099999725819 ], [ 361031.615800000727177, 254382.508799999952316 ], [ 361081.608999997377396, 254382.706900000572205 ], [ 361126.762500002980232, 254383.076400000602007 ], [ 361167.078100003302097, 254383.406399998813868 ], [ 361214.652400001883507, 254383.584699999541044 ], [ 361243.029799997806549, 254365.451799999922514 ], [ 361257.624300003051758, 254356.072000000625849 ], [ 361250.466399997472763, 254344.403299998492002 ], [ 361231.008799999952316, 254356.698600001633167 ], [ 361233.391800001263618, 254360.939899999648333 ], [ 361212.312600001692772, 254374.277399998158216 ], [ 361177.639300003647804, 254374.204700000584126 ], [ 361135.707500003278255, 254374.283700000494719 ], [ 361092.971100002527237, 254374.144999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89718829, "LATITUDE": 18.31912036, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.18442693700001, "SHAPE_Area": 776.740239137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362394.300800003111362, 254486.331799998879433 ], [ 362393.51969999819994, 254483.370099999010563 ], [ 362403.303300000727177, 254470.784600000828505 ], [ 362405.025600001215935, 254457.921900000423193 ], [ 362404.244499996304512, 254454.960200000554323 ], [ 362402.662500001490116, 254451.35869999974966 ], [ 362397.075800001621246, 254444.55799999833107 ], [ 362393.877499997615814, 254441.36540000140667 ], [ 362381.870999999344349, 254430.923599999397993 ], [ 362381.091600000858307, 254427.750799998641014 ], [ 362378.696099996566772, 254424.986999999731779 ], [ 362377.97070000320673, 254415.481800001114607 ], [ 362380.413000002503395, 254412.757599998265505 ], [ 362379.648000001907349, 254407.896200001239777 ], [ 362377.241700001060963, 254406.398800000548363 ], [ 362372.407399997115135, 254405.937100000679493 ], [ 362369.972300000488758, 254407.81700000166893 ], [ 362369.932700000703335, 254412.460700001567602 ], [ 362370.658100001513958, 254421.965900000184774 ], [ 362371.431999996304512, 254425.771899998188019 ], [ 362372.996100001037121, 254431.484200000762939 ], [ 362374.590800002217293, 254433.608199998736382 ], [ 362378.586400002241135, 254437.862799998372793 ], [ 362389.788400001823902, 254448.086899999529123 ], [ 362392.986699998378754, 254451.279500000178814 ], [ 362396.175999999046326, 254455.527499999850988 ], [ 362397.747299998998642, 254460.395500000566244 ], [ 362395.25280000269413, 254469.24100000038743 ], [ 362387.101599998772144, 254479.517900001257658 ], [ 362380.553999997675419, 254490.863299999386072 ], [ 362378.106200002133846, 254494.220800001174212 ], [ 362384.581900000572205, 254491.318500000983477 ], [ 362394.300800003111362, 254486.331799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87428715, "LATITUDE": 18.31916741, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.688439786, "SHAPE_Area": 315.56610078199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364812.539800003170967, 254493.458299998193979 ], [ 364811.214900001883507, 254459.672499999403954 ], [ 364812.096699997782707, 254450.813799999654293 ], [ 364806.46509999781847, 254449.290100000798702 ], [ 364804.714000001549721, 254465.529899999499321 ], [ 364804.618699997663498, 254476.717099998146296 ], [ 364805.234399996697903, 254499.098099999129772 ], [ 364812.539800003170967, 254493.458299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91000825, "LATITUDE": 18.31900848, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.01771202200001, "SHAPE_Area": 395.81540460799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361062.740199998021126, 254420.549300000071526 ], [ 361020.8496999964118, 254415.773499999195337 ], [ 361018.164599999785423, 254446.993299998342991 ], [ 361021.388099998235703, 254447.230799999088049 ], [ 361023.13910000026226, 254430.990899998694658 ], [ 361062.740199998021126, 254420.549300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83871482000001, "LATITUDE": 18.31901064, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.693843291199997, "SHAPE_Area": 62.890668546299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368571.042700000107288, 254491.289299998432398 ], [ 368570.337099999189377, 254479.46229999884963 ], [ 368567.111900001764297, 254479.435899998992682 ], [ 368567.707800000905991, 254504.138700000941753 ], [ 368569.34740000218153, 254500.985700000077486 ], [ 368569.415700003504753, 254492.964699998497963 ], [ 368571.042700000107288, 254491.289299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87586322, "LATITUDE": 18.3189938, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.333912024999997, "SHAPE_Area": 80.592251181699993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364648.296599999070168, 254463.405299998819828 ], [ 364644.387299999594688, 254449.019000001251698 ], [ 364633.10080000013113, 254448.715500000864267 ], [ 364648.296599999070168, 254463.405299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87032045, "LATITUDE": 18.31895579, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 18.852039184199999, "SHAPE_Area": 16.850579435899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365228.118000000715256, 254458.440600000321865 ], [ 365230.590899996459484, 254452.127999998629093 ], [ 365224.939499996602535, 254452.926199998706579 ], [ 365228.118000000715256, 254458.440600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "C9-231-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85095802, "LATITUDE": 18.31877882, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.406526692, "SHAPE_Area": 1696.2046516299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367314.602200001478195, 254410.500700000673532 ], [ 367331.732600003480911, 254387.4206000007689 ], [ 367326.054200001060963, 254391.384899999946356 ], [ 367319.587499998509884, 254393.231800001114607 ], [ 367312.327100001275539, 254393.5945999994874 ], [ 367306.69370000064373, 254392.281899999827147 ], [ 367298.380599997937679, 254421.555900000035763 ], [ 367282.945600003004074, 254434.939500000327826 ], [ 367258.51349999755621, 254463.237199999392033 ], [ 367235.706600002944469, 254490.070500001311302 ], [ 367227.476199999451637, 254509.634799998253584 ], [ 367235.510600000619888, 254513.078099999576807 ], [ 367264.049800001084805, 254475.948100000619888 ], [ 367268.124499998986721, 254470.915199998766184 ], [ 367286.8800999969244, 254446.370799999684095 ], [ 367314.602200001478195, 254410.500700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8760506, "LATITUDE": 18.31886155, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.000408142200001, "SHAPE_Area": 253.60965986100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364631.648199997842312, 254429.916299998760223 ], [ 364614.704800002276897, 254431.044199999421835 ], [ 364615.36370000243187, 254448.359299998730421 ], [ 364626.6503000035882, 254448.66270000115037 ], [ 364631.648199997842312, 254429.916299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-2682-T84", "PARCEL_NAM": "8-5-C", "ACRE": "0.321", "LONGITUDE": -64.84210545000001, "LATITUDE": 18.31856213, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.60914126799997, "SHAPE_Area": 1278.4286686299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368264.513800002634525, 254409.409299999475479 ], [ 368237.036300003528595, 254416.572700001299381 ], [ 368224.104699999094009, 254420.055500000715256 ], [ 368208.716399997472763, 254427.951099999248981 ], [ 368203.85700000077486, 254430.444400001317263 ], [ 368197.372299998998642, 254434.402100000530481 ], [ 368189.255199998617172, 254440.668499998748302 ], [ 368183.558899998664856, 254446.743599999696016 ], [ 368177.884099997580051, 254450.285700000822544 ], [ 368169.803000003099442, 254452.33049999922514 ], [ 368160.13629999756813, 254451.195900000631809 ], [ 368159.299400001764297, 254454.777699999511242 ], [ 368164.052699998021126, 254464.738000001758337 ], [ 368175.346500001847744, 254464.19709999859333 ], [ 368182.619499996304512, 254462.356800001114607 ], [ 368187.477200001478195, 254460.074499998241663 ], [ 368192.34740000218153, 254456.314699999988079 ], [ 368193.972599998116493, 254454.850400000810623 ], [ 368223.231799997389317, 254427.858800001442432 ], [ 368270.111199997365475, 254414.943599998950958 ], [ 368275.748199999332428, 254415.834100000560284 ], [ 368282.281499996781349, 254406.177200000733137 ], [ 368272.594899997115135, 254407.364500001072884 ], [ 368264.513800002634525, 254409.409299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91047588000001, "LATITUDE": 18.31682224, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2433.7107916499999, "SHAPE_Area": 11535.4706699 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360888.545699998736382, 254138.791299998760223 ], [ 360886.92230000346899, 254140.044599998742342 ], [ 360852.076399996876717, 254160.235500000417233 ], [ 360843.162100002169609, 254165.439899999648333 ], [ 360823.704499997198582, 254177.735100001096725 ], [ 360818.018899999558926, 254182.543800000101328 ], [ 360812.308200001716614, 254190.307500001043081 ], [ 360809.871299996972084, 254192.398499999195337 ], [ 360804.898500002920628, 254208.189800001680851 ], [ 360803.991499997675419, 254220.003600001335144 ], [ 360803.955600000917912, 254224.22520000115037 ], [ 360867.023100003600121, 254298.835200000554323 ], [ 360873.385499998927116, 254309.230900000780821 ], [ 360881.266999997198582, 254330.615800000727177 ], [ 360879.5320999994874, 254344.956000000238419 ], [ 360864.782899998128414, 254372.488499999046326 ], [ 360863.141500003635883, 254375.852600000798702 ], [ 360863.118100002408028, 254378.596599999815226 ], [ 360865.46509999781847, 254387.059599999338388 ], [ 360870.220299996435642, 254396.808800000697374 ], [ 360870.292199999094009, 254388.365600001066923 ], [ 360871.967799998819828, 254380.991099998354912 ], [ 360872.795699998736382, 254378.464699998497963 ], [ 360875.270300000905991, 254371.941100001335144 ], [ 360876.897399999201298, 254370.265599999576807 ], [ 360878.537000000476837, 254367.112700000405312 ], [ 360879.366599999368191, 254364.375199999660254 ], [ 360888.396099999547005, 254345.661800000816584 ], [ 360890.154399998486042, 254328.577599998563528 ], [ 360889.3733000010252, 254325.615899998694658 ], [ 360887.015500001609325, 254318.419399999082088 ], [ 360884.627099998295307, 254314.811299998313189 ], [ 360883.064800001680851, 254308.887899998575449 ], [ 360879.099799998104572, 254301.045000001788139 ], [ 360855.957699999213219, 254272.568999998271465 ], [ 360839.995099999010563, 254253.228900000452995 ], [ 360819.241300001740456, 254228.361099999397993 ], [ 360816.847599998116493, 254225.386199999600649 ], [ 360814.516699999570847, 254215.023499999195337 ], [ 360815.414800003170967, 254204.265099998563528 ], [ 360821.161499999463558, 254192.279800001531839 ], [ 360828.473999999463558, 254185.795699998736382 ], [ 360831.713600002229214, 254184.133499998599291 ], [ 360837.383000001311302, 254181.224599998444319 ], [ 360850.310999996960163, 254178.164000000804663 ], [ 360856.763300001621246, 254178.005699999630451 ], [ 360863.193999998271465, 254180.380399998277426 ], [ 360867.202200002968311, 254183.157400000840425 ], [ 360868.803999997675419, 254184.437100000679493 ], [ 360891.179399996995926, 254208.262699998915195 ], [ 360899.193899996578693, 254214.027800001204014 ], [ 360908.03999999910593, 254216.844399999827147 ], [ 360927.389700002968311, 254217.213899999856949 ], [ 360940.306900002062321, 254215.419799998402596 ], [ 360951.607799999415874, 254214.034600000828505 ], [ 360968.547600001096725, 254213.328899998217821 ], [ 360987.101800002157688, 254212.425299998372793 ], [ 361016.98030000180006, 254207.392499998211861 ], [ 361035.539899997413158, 254205.855599999427795 ], [ 361073.427599996328354, 254207.221200000494719 ], [ 361098.41610000282526, 254208.270100001245737 ], [ 361117.720799997448921, 254213.916499998420477 ], [ 361119.329800002276897, 254214.351799998432398 ], [ 361157.892599999904633, 254231.132800001651049 ], [ 361186.009199999272823, 254243.606300000101328 ], [ 361203.668999999761581, 254253.039000000804663 ], [ 361214.896200001239777, 254260.30799999833107 ], [ 361230.896600000560284, 254275.215500000864267 ], [ 361253.322300001978874, 254293.130899999290705 ], [ 361277.347999997437, 254312.537099998444319 ], [ 361287.057899996638298, 254308.605799999088049 ], [ 361276.645999997854233, 254300.287900000810623 ], [ 361239.805600002408028, 254270.644400000572205 ], [ 361219.800599999725819, 254252.53770000115037 ], [ 361205.362499997019768, 254243.553599998354912 ], [ 361203.757100000977516, 254242.696100000292063 ], [ 361191.710900001227856, 254236.897999998182058 ], [ 361159.580700002610683, 254222.280699998140335 ], [ 361123.435099996626377, 254205.730599999427795 ], [ 361115.395400002598763, 254202.9206000007689 ], [ 361113.786300003528595, 254202.485199999064207 ], [ 361098.497000001370907, 254198.771499998867512 ], [ 361080.76349999755621, 254197.993099998682737 ], [ 361047.713699996471405, 254196.667100001126528 ], [ 361024.321599997580051, 254197.531100001186132 ], [ 360992.022399999201298, 254202.755199998617172 ], [ 360975.881700001657009, 254204.311900001019239 ], [ 360971.056500002741814, 254202.794700000435114 ], [ 360968.666299998760223, 254199.397700000554323 ], [ 360969.512199997901917, 254194.760499998927116 ], [ 360971.954499997198582, 254192.036299999803305 ], [ 360975.242700003087521, 254184.674899999052286 ], [ 360984.252400003373623, 254168.283399999141693 ], [ 360985.879399999976158, 254166.607900001108646 ], [ 360987.522600002586842, 254163.032800000160933 ], [ 360991.640399999916553, 254152.934000000357628 ], [ 360994.894500002264977, 254149.583200000226498 ], [ 360998.134099997580051, 254147.920899998396635 ], [ 361007.831399999558926, 254145.467199999839067 ], [ 361028.824299998581409, 254142.261500000953674 ], [ 361036.891000002622604, 254141.905299998819828 ], [ 361038.487499997019768, 254143.818199999630451 ], [ 361039.255999997258186, 254148.257500000298023 ], [ 361044.900200001895428, 254148.303700000047684 ], [ 361045.746100001037121, 254143.666499998420477 ], [ 361049.78660000115633, 254142.644099999219179 ], [ 361058.648900002241135, 254143.561099998652935 ], [ 361057.099200002849102, 254136.160100001841784 ], [ 361057.11540000140667, 254134.260400000959635 ], [ 361044.221600003540516, 254133.310499999672174 ], [ 361036.156599998474121, 254133.455600000917912 ], [ 361026.479099996387959, 254133.587499998509884 ], [ 361013.567299999296665, 254134.7483000010252 ], [ 360992.55460000038147, 254140.27589999884367 ], [ 360990.121299996972084, 254141.944699998944998 ], [ 360987.688000001013279, 254143.613600000739098 ], [ 360982.79619999974966, 254149.906300000846386 ], [ 360978.672899998724461, 254160.638300001621246 ], [ 360976.223399996757507, 254164.206900000572205 ], [ 360972.944200001657009, 254170.512899998575449 ], [ 360971.297399997711182, 254174.510200001299381 ], [ 360968.021799996495247, 254180.394000001251698 ], [ 360965.575900003314018, 254183.540300000458956 ], [ 360960.667900003492832, 254191.732799999415874 ], [ 360950.920199997723103, 254200.096799999475479 ], [ 360949.298600003123283, 254201.138999998569489 ], [ 360941.197700001299381, 254205.50560000166297 ], [ 360929.081399999558926, 254207.939599998295307 ], [ 360912.145300000905991, 254208.223200000822544 ], [ 360904.094800002872944, 254206.67960000038147 ], [ 360900.084799997508526, 254204.113699998706579 ], [ 360897.687399998307228, 254201.560899998992682 ], [ 360866.519900001585484, 254168.586399998515844 ], [ 360865.728000000119209, 254166.891100000590086 ], [ 360865.756800003349781, 254163.513900000602007 ], [ 360867.385600000619888, 254161.627399999648333 ], [ 360892.503600001335144, 254147.47859999909997 ], [ 360900.622400000691414, 254141.0011 ], [ 360905.508900001645088, 254135.341600000858307 ], [ 360907.954800002276897, 254132.195199999958277 ], [ 360910.402500003576279, 254128.837699998170137 ], [ 360931.781999997794628, 254080.250100001692772 ], [ 360939.182599999010563, 254063.423200000077486 ], [ 360940.82039999961853, 254060.481300000101328 ], [ 360944.079899996519089, 254056.49720000103116 ], [ 360949.759999997913837, 254052.321800000965595 ], [ 360960.281599998474121, 254047.763900000602007 ], [ 360974.827600002288818, 254044.083200000226498 ], [ 360985.316899999976158, 254043.324700001627207 ], [ 360992.566500000655651, 254044.228399999439716 ], [ 361003.010799996554852, 254048.746899999678135 ], [ 361016.651600003242493, 254056.668999999761581 ], [ 361033.488799996674061, 254067.994699999690056 ], [ 361036.694300003349781, 254070.342999998480082 ], [ 361039.095299996435642, 254072.473600000143051 ], [ 361039.941100001335144, 254067.836399998515844 ], [ 361037.538400001823902, 254065.916900001466274 ], [ 361035.95269999653101, 254062.73759999871254 ], [ 361035.185999996960163, 254058.087200000882149 ], [ 361036.809399999678135, 254056.83390000090003 ], [ 361041.640100002288818, 254057.7179000005126 ], [ 361044.850900001823902, 254059.432900000363588 ], [ 361046.445600003004074, 254061.55689999833703 ], [ 361057.847199998795986, 254048.351300001144409 ], [ 361073.321800000965595, 254030.323899999260902 ], [ 361074.16950000077486, 254025.475699998438358 ], [ 361076.638800002634525, 254019.585299998521805 ], [ 361083.972900003194809, 254010.568300001323223 ], [ 361076.755699999630451, 254005.865200001746416 ], [ 361070.234999999403954, 254014.044399999082088 ], [ 361064.533299997448921, 254020.75279999896884 ], [ 361051.509999997913837, 254035.000500001013279 ], [ 361049.883000001311302, 254036.675999999046326 ], [ 361044.195699997246265, 254041.695700000971556 ], [ 361035.295699998736382, 254045.211399998515844 ], [ 361033.677599996328354, 254045.831399999558926 ], [ 361026.411799997091293, 254046.827500000596046 ], [ 361018.359499998390675, 254045.495000001043081 ], [ 360999.886200003325939, 254036.899999998509884 ], [ 360991.835699997842312, 254035.356499999761581 ], [ 360987.001400001347065, 254034.89469999819994 ], [ 360982.971699997782707, 254034.650699999183416 ], [ 360978.941899999976158, 254034.406599998474121 ], [ 360968.447300001978874, 254035.79839999973774 ], [ 360951.4679000005126, 254041.147799998521805 ], [ 360944.175200000405312, 254045.309999998658895 ], [ 360941.741800002753735, 254046.978799998760223 ], [ 360935.233800001442432, 254053.680599998682737 ], [ 360931.159100003540516, 254058.713500000536442 ], [ 360925.398000001907349, 254072.38740000128746 ], [ 360902.377099998295307, 254124.339099999517202 ], [ 360897.485299997031689, 254130.631900001317263 ], [ 360895.044799998402596, 254133.144999999552965 ], [ 360888.545699998736382, 254138.791299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-A-1", "ACRE": "0.056", "LONGITUDE": -64.84140175, "LATITUDE": 18.31834919, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.18874095, "SHAPE_Area": 125.274211579 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368282.281499996781349, 254406.177200000733137 ], [ 368275.748199999332428, 254415.834100000560284 ], [ 368293.461900003254414, 254418.934399999678135 ], [ 368295.902500003576279, 254416.42119999974966 ], [ 368282.281499996781349, 254406.177200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-2682-T84", "PARCEL_NAM": "8-3-D", "ACRE": "0.169", "LONGITUDE": -64.84185234, "LATITUDE": 18.31806759, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.43771050699999, "SHAPE_Area": 771.46365591400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368229.523400001227856, 254351.916600000113249 ], [ 368220.673699997365475, 254349.522100001573563 ], [ 368220.601800002157688, 254357.965300001204014 ], [ 368219.766699999570847, 254361.335900001227856 ], [ 368217.335199996829033, 254362.793699998408556 ], [ 368220.50110000371933, 254369.785700000822544 ], [ 368224.543399997055531, 254368.552200000733137 ], [ 368226.957000002264977, 254369.205299999564886 ], [ 368228.556999996304512, 254370.695999998599291 ], [ 368228.538999997079372, 254372.806800000369549 ], [ 368230.920199997723103, 254377.259199999272823 ], [ 368245.1875, 254406.295800000429153 ], [ 368245.149700000882149, 254410.728500001132488 ], [ 368244.330799996852875, 254412.199400000274181 ], [ 368237.036300003528595, 254416.572700001299381 ], [ 368264.513800002634525, 254409.409299999475479 ], [ 368259.683100000023842, 254408.525400001555681 ], [ 368255.682099997997284, 254404.904100000858307 ], [ 368229.523400001227856, 254351.916600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704023400", "MAP": "C9-231-T79", "PARCEL_NAM": "2H-23 REM", "ACRE": null, "LONGITUDE": -64.85140397000001, "LATITUDE": 18.31820007, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.782054621, "SHAPE_Area": 664.48916019299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367247.958800002932549, 254377.024599999189377 ], [ 367237.500100001692772, 254374.19480000063777 ], [ 367231.051399998366833, 254373.930900000035763 ], [ 367224.586499996483326, 254375.566799998283386 ], [ 367221.346900001168251, 254377.228999998420477 ], [ 367218.094700001180172, 254380.36879999935627 ], [ 367211.514700002968311, 254395.513700000941753 ], [ 367226.735699996352196, 254407.248399998992682 ], [ 367247.958800002932549, 254377.024599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "F9-3472-T76", "PARCEL_NAM": "25BB R.O.W", "ACRE": null, "LONGITUDE": -64.89809857, "LATITUDE": 18.3179408, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.400955193599998, "SHAPE_Area": 268.75854024699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362287.846400000154972, 254298.642700001597404 ], [ 362282.14639999717474, 254305.140000000596046 ], [ 362297.999300003051758, 254337.355900000780821 ], [ 362302.108199998736382, 254328.3125 ], [ 362287.846400000154972, 254298.642700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90749333, "LATITUDE": 18.31797404, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.601063270300003, "SHAPE_Area": 211.228065816 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361302.433600001037121, 254302.187699999660254 ], [ 361287.057899996638298, 254308.605799999088049 ], [ 361299.068099997937679, 254318.625500001013279 ], [ 361303.846600003540516, 254325.630699999630451 ], [ 361306.262000001966953, 254326.072599999606609 ], [ 361306.332099996507168, 254317.840599998831749 ], [ 361302.433600001037121, 254302.187699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90292502, "LATITUDE": 18.31799252, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.539463489, "SHAPE_Area": 237.95181827600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361806.353699997067451, 254309.267400000244379 ], [ 361759.468900002539158, 254322.815799999982119 ], [ 361759.420400001108646, 254328.515000000596046 ], [ 361807.934000000357628, 254313.079999998211861 ], [ 361806.353699997067451, 254309.267400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87443224, "LATITUDE": 18.31788134, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.184332786200002, "SHAPE_Area": 255.31115854399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364808.29280000180006, 254329.403900001198053 ], [ 364814.831399999558926, 254319.113800000399351 ], [ 364784.071099996566772, 254333.005300000309944 ], [ 364773.547700002789497, 254337.774300001561642 ], [ 364780.768500000238419, 254342.055300001055002 ], [ 364797.769400000572205, 254334.172899998724461 ], [ 364808.29280000180006, 254329.403900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8746377, "LATITUDE": 18.3178714, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.057166054699998, "SHAPE_Area": 120.67672039199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364773.547700002789497, 254337.774300001561642 ], [ 364784.071099996566772, 254333.005300000309944 ], [ 364759.982400000095367, 254320.986900001764297 ], [ 364773.547700002789497, 254337.774300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": "G3-83-T54", "PARCEL_NAM": "REM of NADIR", "ACRE": null, "LONGITUDE": -64.87255857, "LATITUDE": 18.31868655, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1369.74355535, "SHAPE_Area": 13847.762841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365103.898100003600121, 254557.693399999290705 ], [ 365109.136200003325939, 254555.459100000560284 ], [ 365109.574500001966953, 254548.769499998539686 ], [ 365052.951800003647804, 254523.617300000041723 ], [ 365054.422200001776218, 254499.831700000911951 ], [ 365055.931599996984005, 254450.947299998253584 ], [ 365068.518500000238419, 254451.223700001835823 ], [ 365067.746299996972084, 254447.206599999219179 ], [ 365067.821900002658367, 254438.341299999505281 ], [ 365065.406499996781349, 254437.899399999529123 ], [ 365065.309399999678135, 254449.297600001096725 ], [ 365050.898299999535084, 254437.147399999201298 ], [ 365048.477600000798702, 254437.338599998503923 ], [ 365044.401000000536442, 254442.582600001245737 ], [ 365040.360500000417233, 254443.605000000447035 ], [ 365037.968500003218651, 254440.418999999761581 ], [ 365038.799999997019768, 254437.470499999821186 ], [ 365038.011699996888638, 254435.353100001811981 ], [ 365032.387299999594688, 254432.985100001096725 ], [ 365025.907999999821186, 254436.309500001370907 ], [ 365024.304399996995926, 254435.240899998694658 ], [ 365023.517800003290176, 254432.912500001490116 ], [ 365027.594300001859665, 254427.668499998748302 ], [ 365029.250100001692772, 254422.615800000727177 ], [ 365026.894100002944469, 254415.208299998193979 ], [ 365028.521099999547005, 254413.532800000160933 ], [ 365031.755400002002716, 254412.503800000995398 ], [ 365034.195900000631809, 254409.990699999034405 ], [ 365035.03999999910593, 254405.564599998295307 ], [ 365035.075900003314018, 254401.342999998480082 ], [ 365032.691200003027916, 254397.312699999660254 ], [ 365031.942400000989437, 254390.551600001752377 ], [ 365033.608999997377396, 254384.232500001788139 ], [ 365032.854800000786781, 254378.104600001126528 ], [ 365031.276299998164177, 254374.080899998545647 ], [ 365026.481600001454353, 254368.975400000810623 ], [ 365020.916599996387959, 254359.641699999570847 ], [ 365019.348899997770786, 254354.351599998772144 ], [ 365013.762199997901917, 254347.550799999386072 ], [ 365010.549599997699261, 254346.046900000423193 ], [ 365003.276600003242493, 254347.887200001627207 ], [ 364999.252199999988079, 254347.009899999946356 ], [ 364998.478299997746944, 254343.203899998217821 ], [ 364997.438000001013279, 254341.39919999986887 ], [ 364996.888999998569489, 254340.446699999272823 ], [ 364990.461900003254414, 254337.64979999884963 ], [ 364989.671800002455711, 254335.743500001728535 ], [ 364988.068099997937679, 254334.674899999052286 ], [ 364984.059900000691414, 254331.897900000214577 ], [ 364976.828299999237061, 254328.883400000631809 ], [ 364972.796700000762939, 254328.850400000810623 ], [ 364970.392200000584126, 254327.142000000923872 ], [ 364968.813699997961521, 254323.118299998342991 ], [ 364966.410999998450279, 254321.198800001293421 ], [ 364960.773999996483326, 254320.308299999684095 ], [ 364959.987499997019768, 254317.979800000786781 ], [ 364957.59009999781847, 254315.427099999040365 ], [ 364953.571099996566772, 254313.916499998420477 ], [ 364948.72070000320673, 254315.354499999433756 ], [ 364943.085500001907349, 254314.252900000661612 ], [ 364943.945699997246265, 254307.927099999040365 ], [ 364943.153800003230572, 254306.231899999082088 ], [ 364939.143799997866154, 254303.665899999439716 ], [ 364934.309500001370907, 254303.204199999570847 ], [ 364929.500399999320507, 254299.787300001829863 ], [ 364926.311099998652935, 254295.53940000012517 ], [ 364925.526399999856949, 254292.999800000339746 ], [ 364920.706500001251698, 254290.849399998784065 ], [ 364917.511799998581409, 254287.234700001776218 ], [ 364911.082900002598763, 254284.649000000208616 ], [ 364909.493699997663498, 254281.891699999570847 ], [ 364904.664800003170967, 254280.796700000762939 ], [ 364903.872900001704693, 254279.101500000804663 ], [ 364903.910599999129772, 254274.6689000017941 ], [ 364901.506099998950958, 254272.960400000214577 ], [ 364899.916799999773502, 254270.203200001269579 ], [ 364895.107699997723103, 254266.786299999803305 ], [ 364892.690600000321865, 254266.555500000715256 ], [ 364889.479699999094009, 254264.840399999171495 ], [ 364887.886900000274181, 254262.505399998277426 ], [ 364883.8733000010252, 254260.361600000411272 ], [ 364880.705600000917912, 254253.580699998885393 ], [ 364880.730700001120567, 254250.625599998980761 ], [ 364878.383699998259544, 254242.162599999457598 ], [ 364875.160300001502037, 254241.92509999871254 ], [ 364872.687399998307228, 254248.237700000405312 ], [ 364864.597300000488758, 254251.337900001555681 ], [ 364869.534100003540516, 254239.768199998885393 ], [ 364868.758299998939037, 254236.173200000077486 ], [ 364865.542099997401237, 254235.091400001198053 ], [ 364855.844700001180172, 254237.545200001448393 ], [ 364854.260899998247623, 254234.154699999839067 ], [ 364851.84740000218153, 254233.5016999989748 ], [ 364848.611299999058247, 254234.741799999028444 ], [ 364842.977899998426437, 254233.429099999368191 ], [ 364834.970499999821186, 254226.819699998944998 ], [ 364822.096500001847744, 254223.547899998724461 ], [ 364815.647799998521805, 254223.284000001847744 ], [ 364801.161200001835823, 254219.999000001698732 ], [ 364797.122400000691414, 254220.810400001704693 ], [ 364798.605599999427795, 254236.021200001239777 ], [ 364814.737199999392033, 254235.519999999552965 ], [ 364831.641000002622604, 254239.035799998790026 ], [ 364850.089100003242493, 254250.585900001227856 ], [ 364930.121500000357628, 254321.535100001841784 ], [ 364939.728900000452995, 254329.635200001299381 ], [ 364942.131700001657009, 254331.554699998348951 ], [ 364951.740900002419949, 254339.443900000303984 ], [ 364962.152800001204014, 254347.761700000613928 ], [ 364975.733000002801418, 254357.473499998450279 ], [ 364977.381099998950958, 254358.652100000530481 ], [ 364996.8716000020504, 254344.838199999183416 ], [ 365001.692699998617172, 254352.284200001507998 ], [ 365006.396600000560284, 254359.549100000411272 ], [ 365011.105178968980908, 254367.977176027023233 ], [ 365015.248800002038479, 254376.696899998933077 ], [ 365015.326999999582767, 254376.875199999660254 ], [ 365016.647181961860042, 254380.3858251645579 ], [ 365017.579700000584126, 254384.018699999898672 ], [ 365018.941500000655651, 254401.350699998438358 ], [ 365024.982699997723103, 254400.907999999821186 ], [ 365020.379000000655651, 254417.338599998503923 ], [ 364991.81360000371933, 254419.735599998384714 ], [ 364982.032700002193451, 254475.213799998164177 ], [ 364983.492399998009205, 254493.168699998408556 ], [ 364985.826899997889996, 254503.109200000762939 ], [ 364991.35419999808073, 254516.875599998980761 ], [ 364998.521099999547005, 254527.488899998366833 ], [ 365007.307800002396107, 254537.271099999547005 ], [ 365020.122500002384186, 254547.508499998599291 ], [ 365028.149599999189377, 254551.796100001782179 ], [ 365034.569600000977516, 254555.437199998646975 ], [ 365042.607500001788139, 254558.458299998193979 ], [ 365053.066200003027916, 254561.288100000470877 ], [ 365067.565399996936321, 254563.095499999821186 ], [ 365078.855599999427795, 254562.976799998432398 ], [ 365092.580899998545647, 254560.978199999779463 ], [ 365103.898100003600121, 254557.693399999290705 ] ], [ [ 365061.851300001144409, 254543.653599999845028 ], [ 365057.288699999451637, 254557.003499999642372 ], [ 365022.79559999704361, 254546.403999999165535 ], [ 365035.172399997711182, 254521.008699998259544 ], [ 365061.851300001144409, 254543.653599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89835376000001, "LATITUDE": 18.31769783, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.1919097, "SHAPE_Area": 371.90604085500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362287.846400000154972, 254298.642700001597404 ], [ 362247.73030000180006, 254274.883000001311302 ], [ 362243.64299999922514, 254281.393500000238419 ], [ 362282.14639999717474, 254305.140000000596046 ], [ 362287.846400000154972, 254298.642700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704023400", "MAP": "A9-24-T64", "PARCEL_NAM": "2D-8", "ACRE": ".32", "LONGITUDE": -64.8513714, "LATITUDE": 18.31727633, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.01541415299999, "SHAPE_Area": 552.23869874100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367217.467399999499321, 254264.684399999678135 ], [ 367221.360500000417233, 254280.970499999821186 ], [ 367223.747100003063679, 254284.789700001478195 ], [ 367225.350699998438358, 254285.858300000429153 ], [ 367232.506899997591972, 254297.738099999725819 ], [ 367235.663800001144409, 254305.785500001162291 ], [ 367236.423299998044968, 254311.280099999159575 ], [ 367238.836900003254414, 254311.933200001716614 ], [ 367242.981700003147125, 254298.668200001120567 ], [ 367243.872599996626377, 254288.754099998623133 ], [ 367241.511200003325939, 254281.979800000786781 ], [ 367239.124600000679493, 254278.160500001162291 ], [ 367231.919900000095367, 254271.979899998754263 ], [ 367221.488200001418591, 254265.983899999409914 ], [ 367217.467399999499321, 254264.684399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87295352, "LATITUDE": 18.31703005, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.96628074500001, "SHAPE_Area": 2819.5710387200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364922.192500002682209, 254211.068199999630451 ], [ 364917.343900002539158, 254212.295099999755621 ], [ 364912.484399996697903, 254214.788499999791384 ], [ 364908.41330000013113, 254219.39919999986887 ], [ 364906.762900002300739, 254223.818599998950958 ], [ 364906.728699997067451, 254227.829100001603365 ], [ 364907.497299998998642, 254232.268399998545647 ], [ 364911.467699997127056, 254239.478100001811981 ], [ 364917.084899999201298, 254242.690499998629093 ], [ 364921.913800001144409, 254243.785399999469519 ], [ 364936.422100000083447, 254244.537500001490116 ], [ 364937.215800002217293, 254246.021600000560284 ], [ 364935.568999998271465, 254250.018899999558926 ], [ 364937.955600000917912, 254253.838100001215935 ], [ 364950.784599997103214, 254262.386900000274181 ], [ 364955.609899997711182, 254263.903999999165535 ], [ 364983.022699996829033, 254264.339499998837709 ], [ 364987.084899999201298, 254260.784099999815226 ], [ 364992.007299996912479, 254250.903000000864267 ], [ 364992.926899999380112, 254237.611699998378754 ], [ 364990.547499999403954, 254232.948100000619888 ], [ 364986.544699996709824, 254229.537900000810623 ], [ 364979.311300002038479, 254226.734499998390675 ], [ 364972.867899999022484, 254225.83729999884963 ], [ 364960.76070000231266, 254227.215900000184774 ], [ 364948.674999997019768, 254226.061500001698732 ], [ 364943.050599999725819, 254223.693500000983477 ], [ 364937.481899999082088, 254214.782000001519918 ], [ 364935.077399998903275, 254213.073499999940395 ], [ 364930.252099998295307, 254211.556400001049042 ], [ 364922.192500002682209, 254211.068199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87204782000001, "LATITUDE": 18.31709324, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.375120631900003, "SHAPE_Area": 296.16017218000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365042.115500003099442, 254237.592099998146296 ], [ 365037.265100002288818, 254239.030000001192093 ], [ 365037.164399996399879, 254250.850400000810623 ], [ 365041.188699997961521, 254251.727699998766184 ], [ 365042.772600002586842, 254255.118200000375509 ], [ 365046.807700000703335, 254254.728999998420477 ], [ 365049.241099998354912, 254253.060199998319149 ], [ 365050.8158999979496, 254257.506099998950958 ], [ 365053.234899997711182, 254257.52589999884367 ], [ 365058.141099996864796, 254249.54450000077486 ], [ 365054.976999998092651, 254242.341400001198053 ], [ 365050.171400003135204, 254238.502399999648333 ], [ 365042.115500003099442, 254237.592099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "A9-35-T65", "PARCEL_NAM": "PORTION OF 8", "ACRE": null, "LONGITUDE": -64.8476475, "LATITUDE": 18.3163358, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 385.942318968, "SHAPE_Area": 2507.6789922200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367667.116800002753735, 254111.099899999797344 ], [ 367667.219300001859665, 254099.068399999290705 ], [ 367654.923199996352196, 254122.610199999064207 ], [ 367626.24379999935627, 254176.204300001263618 ], [ 367614.775600001215935, 254197.219799999147654 ], [ 367572.010399997234344, 254247.772900000214577 ], [ 367565.411100000143051, 254255.574099998921156 ], [ 367603.953599996864796, 254237.027899999171495 ], [ 367621.065999999642372, 254216.058600001037121 ], [ 367646.421400003135204, 254174.047499999403954 ], [ 367648.86370000243187, 254171.32319999858737 ], [ 367653.789700001478195, 254161.019999999552965 ], [ 367655.41669999808073, 254159.344500001519918 ], [ 367661.199299998581409, 254143.137699998915195 ], [ 367665.369300000369549, 254126.917599998414516 ], [ 367667.116800002753735, 254111.099899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90325181, "LATITUDE": 18.31650095, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.29832502900001, "SHAPE_Area": 2219.8475506999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361764.402500003576279, 254122.317299999296665 ], [ 361724.013099998235703, 254130.641600001603365 ], [ 361730.964199997484684, 254166.584399998188019 ], [ 361735.659999996423721, 254183.299199998378754 ], [ 361738.035800002515316, 254188.384899999946356 ], [ 361777.72860000282526, 254167.178199999034405 ], [ 361769.019199997186661, 254148.319600000977516 ], [ 361765.08110000193119, 254137.310499999672174 ], [ 361764.402500003576279, 254122.317299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90151197, "LATITUDE": 18.31642844, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.001364147, "SHAPE_Area": 396.24349002100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361955.30969999730587, 254146.044599998742342 ], [ 361957.053599998354912, 254130.649099998176098 ], [ 361953.03999999910593, 254128.505300000309944 ], [ 361952.998700000345707, 254133.360100001096725 ], [ 361948.112199999392033, 254139.019600000232458 ], [ 361945.682499997317791, 254140.26630000025034 ], [ 361934.349200002849102, 254145.450899999588728 ], [ 361923.843699999153614, 254148.109099999070168 ], [ 361921.419399999082088, 254148.722600001841784 ], [ 361906.884199999272823, 254151.136700000613928 ], [ 361896.409299999475479, 254150.206599999219179 ], [ 361906.032899998128414, 254156.4070999994874 ], [ 361910.042900003492832, 254158.973000001162291 ], [ 361910.060900002717972, 254156.862300001084805 ], [ 361955.30969999730587, 254146.044599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90432962, "LATITUDE": 18.31642547, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.13123650399999, "SHAPE_Area": 213.015251052 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361667.486699998378754, 254140.100400000810623 ], [ 361666.709200002253056, 254136.716499999165535 ], [ 361601.291799999773502, 254148.635600000619888 ], [ 361601.266599997878075, 254151.590700000524521 ], [ 361667.486699998378754, 254140.100400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9037782, "LATITUDE": 18.31633421, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.979736181700005, "SHAPE_Area": 110.209765436 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361715.9391999989748, 254131.842099998146296 ], [ 361715.955399997532368, 254129.942400000989437 ], [ 361674.781300000846386, 254135.727099999785423 ], [ 361675.558799996972084, 254139.111000001430511 ], [ 361715.9391999989748, 254131.842099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90331235, "LATITUDE": 18.31624444, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.106104574, "SHAPE_Area": 145.10184444500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361764.427599996328354, 254119.362199999392033 ], [ 361723.24099999666214, 254126.624499998986721 ], [ 361724.013099998235703, 254130.641600001603365 ], [ 361764.402500003576279, 254122.317299999296665 ], [ 361764.427599996328354, 254119.362199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91046167, "LATITUDE": 18.31585772, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.83931518599999, "SHAPE_Area": 304.8417877 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360978.452799998223782, 254091.820000000298023 ], [ 360991.357400000095367, 254091.503499999642372 ], [ 360992.566500000655651, 254044.228399999439716 ], [ 360978.452799998223782, 254091.820000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83566295, "LATITUDE": 18.31585568, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.915654265199997, "SHAPE_Area": 99.060847773099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368893.399400003254414, 254135.068599998950958 ], [ 368890.964299999177456, 254136.948499999940395 ], [ 368890.908500000834465, 254143.491900000721216 ], [ 368889.259999997913837, 254147.700300000607967 ], [ 368891.668099999427795, 254148.986600000411272 ], [ 368897.314099997282028, 254148.821699999272823 ], [ 368898.933899998664856, 254147.990600001066923 ], [ 368899.765399999916553, 254145.042100001126528 ], [ 368896.603100001811981, 254137.627900000661612 ], [ 368895.010200001299381, 254135.292899999767542 ], [ 368893.399400003254414, 254135.068599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90260892000001, "LATITUDE": 18.31542103, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.836443307, "SHAPE_Area": 154.546814799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361844.311200000345707, 254018.480000000447035 ], [ 361841.902999997138977, 254017.193799998611212 ], [ 361837.041799999773502, 254019.898200001567602 ], [ 361796.503200002014637, 254045.741999998688698 ], [ 361801.985500000417233, 254064.785300001502037 ], [ 361798.911300003528595, 254047.028299998492002 ], [ 361844.311200000345707, 254018.480000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90187205, "LATITUDE": 18.31541483, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.41874190300001, "SHAPE_Area": 2568.8548387000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361909.777099996805191, 254000.861800000071526 ], [ 361860.315200001001358, 254032.965399999171495 ], [ 361869.717600002884865, 254065.128600001335144 ], [ 361936.056400001049042, 254039.706999998539686 ], [ 361909.777099996805191, 254000.861800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90230653, "LATITUDE": 18.31497182, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.261496088, "SHAPE_Area": 178.12191209100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361863.329300001263618, 253963.118099998682737 ], [ 361834.754100002348423, 254004.4695999994874 ], [ 361837.963200002908707, 254006.395700000226498 ], [ 361862.461800001561642, 253970.288199998438358 ], [ 361866.543799996376038, 253964.410999998450279 ], [ 361863.329300001263618, 253963.118099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89534929, "LATITUDE": 18.31362697, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.805012545499999, "SHAPE_Area": 53.1044899292 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362589.335299998521805, 253836.282299999147654 ], [ 362583.665899999439716, 253839.191199999302626 ], [ 362584.411100000143051, 253846.374400001019239 ], [ 362590.04450000077486, 253847.687100000679493 ], [ 362589.335299998521805, 253836.282299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88965822, "LATITUDE": 18.31346886, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.52686767900001, "SHAPE_Area": 278.37382332300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363204.742299996316433, 253818.94310000166297 ], [ 363189.355800002813339, 253826.627700001001358 ], [ 363168.326999999582767, 253834.054900001734495 ], [ 363167.464900001883507, 253840.59180000051856 ], [ 363182.018100000917912, 253836.066799998283386 ], [ 363200.631599999964237, 253828.197599999606609 ], [ 363203.855099998414516, 253828.435100000351667 ], [ 363205.458700001239777, 253829.503699999302626 ], [ 363209.524400003254414, 253825.526200000196695 ], [ 363204.742299996316433, 253818.94310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83127377, "LATITUDE": 18.31316261, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.275850337700007, "SHAPE_Area": 244.58763525800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369376.410800002515316, 253851.51240000128746 ], [ 369349.100400000810623, 253839.045400001108646 ], [ 369345.810500003397465, 253846.617899999022484 ], [ 369373.122599996626377, 253858.873700000345707 ], [ 369376.410800002515316, 253851.51240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87766218, "LATITUDE": 18.31276861, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.97706543000001, "SHAPE_Area": 1036.3955741300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364466.109899997711182, 253794.64750000089407 ], [ 364464.686099998652935, 253772.471000000834465 ], [ 364467.212899997830391, 253759.826099999248981 ], [ 364467.265100002288818, 253753.704799998551607 ], [ 364464.891099996864796, 253748.407999999821186 ], [ 364456.093599997460842, 253739.892299998551607 ], [ 364453.7195999994874, 253734.595499999821186 ], [ 364451.448100000619888, 253717.267299998551607 ], [ 364452.284999996423721, 253713.685499999672174 ], [ 364443.458700001239777, 253708.546999998390675 ], [ 364442.614600002765656, 253712.973099999129772 ], [ 364443.237499997019768, 253734.509700000286102 ], [ 364447.992700003087521, 253744.25899999961257 ], [ 364452.7837999984622, 253749.78660000115633 ], [ 364456.790200002491474, 253752.774700000882149 ], [ 364458.375799998641014, 253755.954100001603365 ], [ 364455.838200002908707, 253769.865499999374151 ], [ 364455.707000002264977, 253785.27419999986887 ], [ 364456.450300000607967, 253792.668600000441074 ], [ 364458.0, 253800.069600000977516 ], [ 364458.782999999821186, 253802.820199999958277 ], [ 364460.359600000083447, 253807.054999999701977 ], [ 364465.906700000166893, 253818.499400001019239 ], [ 364473.204899996519089, 253813.703999999910593 ], [ 364468.458700001239777, 253802.899399999529123 ], [ 364466.109899997711182, 253794.64750000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87345539, "LATITUDE": 18.31223576, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.775889603, "SHAPE_Area": 2753.86958486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364927.605800002813339, 253670.290800001472235 ], [ 364923.570699997246265, 253670.679999999701977 ], [ 364919.506700001657009, 253674.446400001645088 ], [ 364901.703100003302097, 253681.900100000202656 ], [ 364894.385200001299381, 253689.017400000244379 ], [ 364877.348300002515316, 253701.121300000697374 ], [ 364875.714100003242493, 253703.641100000590086 ], [ 364872.3378000035882, 253721.345300000160933 ], [ 364872.222699999809265, 253734.854400001466274 ], [ 364874.618299998342991, 253737.618200000375509 ], [ 364885.865299999713898, 253742.565400000661612 ], [ 364888.268100000917912, 253744.484900001436472 ], [ 364892.308600001037121, 253743.462499998509884 ], [ 364900.423900000751019, 253737.407200001180172 ], [ 364906.962499998509884, 253727.11710000038147 ], [ 364917.460699997842312, 253725.303199999034405 ], [ 364925.595799997448921, 253716.926100000739098 ], [ 364926.450699999928474, 253711.233500000089407 ], [ 364929.70830000191927, 253707.460499998182058 ], [ 364933.003600001335144, 253699.254799999296665 ], [ 364932.258500002324581, 253692.071600001305342 ], [ 364933.136699996888638, 253683.635000001639128 ], [ 364931.588799998164177, 253676.022999998182058 ], [ 364929.212999999523163, 253670.937300000339746 ], [ 364927.605800002813339, 253670.290800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109302012400", "MAP": "A9-188-T72", "PARCEL_NAM": "59-1B", "ACRE": null, "LONGITUDE": -64.89875364, "LATITUDE": 18.31196171, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.53599655599999, "SHAPE_Area": 995.60314401200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362247.13910000026226, 253681.705299999564886 ], [ 362246.450499996542931, 253667.329500000923872 ], [ 362245.672100000083447, 253664.594700001180172 ], [ 362244.898100003600121, 253660.788699999451637 ], [ 362244.946699999272823, 253655.089499998837709 ], [ 362244.197899997234344, 253648.328400000929832 ], [ 362223.253600001335144, 253645.83500000089407 ], [ 362221.246699996292591, 253637.887499999254942 ], [ 362219.123499996960163, 253629.479499999433756 ], [ 362192.31530000269413, 253619.847800001502037 ], [ 362209.36089999973774, 253637.292100001126528 ], [ 362219.765600003302097, 253647.940200001001358 ], [ 362226.507799997925758, 253671.537799999117851 ], [ 362239.028999999165535, 253682.61430000141263 ], [ 362247.902199998497963, 253686.777800001204014 ], [ 362247.13910000026226, 253681.705299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87378016, "LATITUDE": 18.31186817, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.79768431799999, "SHAPE_Area": 1034.8613490800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364871.404899999499321, 253641.544300001114607 ], [ 364868.176100000739098, 253641.940099999308586 ], [ 364864.925599999725819, 253644.86879999935627 ], [ 364862.41499999910593, 253655.614000000059605 ], [ 364857.519599996507168, 253662.328899998217821 ], [ 364855.862000003457069, 253667.592700000852346 ], [ 364854.145099997520447, 253679.82209999859333 ], [ 364854.082099996507168, 253687.209800001233816 ], [ 364854.87049999833107, 253689.327199999243021 ], [ 364858.878600001335144, 253692.104299999773502 ], [ 364865.330899998545647, 253691.945999998599291 ], [ 364873.462399996817112, 253683.99100000038743 ], [ 364875.922700002789497, 253679.155999999493361 ], [ 364880.803700000047684, 253674.129700001329184 ], [ 364881.635200001299381, 253671.181200001388788 ], [ 364883.323399998247623, 253662.328999999910593 ], [ 364883.382700003683567, 253655.363400001078844 ], [ 364881.051899999380112, 253645.000799998641014 ], [ 364877.846400000154972, 253642.652499999850988 ], [ 364871.404899999499321, 253641.544300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87340292, "LATITUDE": 18.31176517, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.725441007200004, "SHAPE_Area": 366.96762295000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364909.294399999082088, 253642.698800001293421 ], [ 364903.644799999892712, 253643.285799998790026 ], [ 364902.005199998617172, 253646.438799999654293 ], [ 364901.958499997854233, 253651.926899999380112 ], [ 364900.281099997460842, 253659.512499999254942 ], [ 364901.051399998366833, 253663.740699999034405 ], [ 364905.837200000882149, 253669.901599999517202 ], [ 364909.055200003087521, 253670.772300001233816 ], [ 364913.930900000035763, 253666.379200000315905 ], [ 364916.402000002563, 253660.277699999511242 ], [ 364917.269400000572205, 253653.107700001448393 ], [ 364915.728699997067451, 253644.651299998164177 ], [ 364914.125100001692772, 253643.582699999213219 ], [ 364909.294399999082088, 253642.698800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87311801, "LATITUDE": 18.31179515, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.899939158600006, "SHAPE_Area": 275.99131923099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364937.44879999756813, 253650.739700000733137 ], [ 364931.78660000115633, 253652.804299999028444 ], [ 364931.759700000286102, 253655.970499999821186 ], [ 364926.878600001335144, 253660.996800001710653 ], [ 364930.861599996685982, 253666.728900000452995 ], [ 364938.931999996304512, 253665.950599998235703 ], [ 364940.539200000464916, 253666.596999999135733 ], [ 364941.332900002598763, 253668.081199999898672 ], [ 364944.558200001716614, 253668.107599999755621 ], [ 364947.808600001037121, 253665.178800001740456 ], [ 364948.663400001823902, 253659.486299999058247 ], [ 364947.099399998784065, 253653.774000000208616 ], [ 364944.70380000025034, 253651.010200001299381 ], [ 364937.44879999756813, 253650.739700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87363327, "LATITUDE": 18.31139507, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.388037228, "SHAPE_Area": 1436.6345243200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364887.995099999010563, 253587.217999998480082 ], [ 364884.766199998557568, 253587.613699998706579 ], [ 364881.517599999904633, 253590.331399999558926 ], [ 364879.05009999871254, 253596.01069999858737 ], [ 364879.019599996507168, 253599.598999999463558 ], [ 364875.744000002741814, 253605.482799999415874 ], [ 364864.448399998247623, 253606.2347999997437 ], [ 364862.002499997615814, 253609.381099998950958 ], [ 364861.174599997699261, 253611.907499998807907 ], [ 364861.943099997937679, 253616.346700001507998 ], [ 364861.11879999935627, 253618.450899999588728 ], [ 364861.082900002598763, 253622.672499999403954 ], [ 364862.663099996745586, 253626.485100001096725 ], [ 364865.855999998748302, 253630.310899998992682 ], [ 364896.459899999201298, 253634.783300001174212 ], [ 364898.882500000298023, 253634.380899999290705 ], [ 364900.507700003683567, 253632.916600000113249 ], [ 364905.406700000166893, 253625.779500000178814 ], [ 364906.274099998176098, 253618.609400000423193 ], [ 364905.514600001275539, 253613.114799998700619 ], [ 364895.989900000393391, 253595.304999999701977 ], [ 364893.585299998521805, 253593.596500001847744 ], [ 364892.802400000393391, 253590.845899999141693 ], [ 364890.408600002527237, 253587.870999999344349 ], [ 364887.995099999010563, 253587.217999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8774086, "LATITUDE": 18.31113242, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.19500727600001, "SHAPE_Area": 1564.6326572 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364486.172799997031689, 253616.648699998855591 ], [ 364506.420500002801418, 253606.259799998253584 ], [ 364504.071699999272823, 253598.00789999961853 ], [ 364497.788400001823902, 253578.324799999594688 ], [ 364495.466600000858307, 253566.906700000166893 ], [ 364490.795900002121925, 253547.236800000071526 ], [ 364463.228399999439716, 253564.954100001603365 ], [ 364486.172799997031689, 253616.648699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87342978, "LATITUDE": 18.31090396, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.97042706, "SHAPE_Area": 1835.1751898099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364895.708599999547005, 253533.66330000013113 ], [ 364892.483400002121925, 253533.636900000274181 ], [ 364888.408699996769428, 253538.669799998402596 ], [ 364885.9358000010252, 253544.982400000095367 ], [ 364881.852099999785423, 253551.070700000971556 ], [ 364880.962999999523163, 253560.773699998855591 ], [ 364881.724399998784065, 253566.057300001382828 ], [ 364884.137900002300739, 253566.710299998521805 ], [ 364889.737199999392033, 253572.033500000834465 ], [ 364891.304799996316433, 253577.323699999600649 ], [ 364895.289700001478195, 253582.844700001180172 ], [ 364898.491499997675419, 253585.615100000053644 ], [ 364903.31139999628067, 253587.765500001609325 ], [ 364908.951999999582767, 253588.233899999409914 ], [ 364911.383500002324581, 253586.776099998503923 ], [ 364913.035700000822544, 253582.145599998533726 ], [ 364913.13459999859333, 253570.536200001835823 ], [ 364915.585900001227856, 253566.756599999964237 ], [ 364918.818400003015995, 253565.938700001686811 ], [ 364924.403200000524521, 253572.950500000268221 ], [ 364928.418600000441074, 253574.883200000971556 ], [ 364933.254699997603893, 253575.133900001645088 ], [ 364936.499700002372265, 253572.83839999884367 ], [ 364939.769900001585484, 253567.587799999862909 ], [ 364939.795100003480911, 253564.632699999958277 ], [ 364938.236400000751019, 253558.287200000137091 ], [ 364933.441699996590614, 253553.181699998676777 ], [ 364927.018200002610683, 253549.962699998170137 ], [ 364918.947800002992153, 253550.74100000038743 ], [ 364917.342399999499321, 253549.883499998599291 ], [ 364914.162100002169609, 253544.580099999904633 ], [ 364906.143899999558926, 253539.237199999392033 ], [ 364902.146499998867512, 253535.19370000064373 ], [ 364895.708599999547005, 253533.66330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8744897, "LATITUDE": 18.31064163, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.992446551, "SHAPE_Area": 2010.9985802199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364793.556900002062321, 253503.485300000756979 ], [ 364787.102799996733665, 253503.854600001126528 ], [ 364785.465000003576279, 253506.796500001102686 ], [ 364783.044299997389317, 253506.987799998372793 ], [ 364776.548799999058247, 253512.212000001221895 ], [ 364772.522600002586842, 253511.545800000429153 ], [ 364771.682199999690056, 253515.549699999392033 ], [ 364770.051600001752377, 253517.647199999541044 ], [ 364767.634400002658367, 253517.416400000452995 ], [ 364764.394799999892712, 253519.078600000590086 ], [ 364763.534500002861023, 253525.404399998486042 ], [ 364765.122000001370907, 253528.372699998319149 ], [ 364773.113200001418591, 253536.881799999624491 ], [ 364788.343199998140335, 253547.561099998652935 ], [ 364789.9324000030756, 253550.318399999290705 ], [ 364804.390299998223782, 253556.980599999427795 ], [ 364810.794100001454353, 253562.52140000090003 ], [ 364812.404899999499321, 253562.745700001716614 ], [ 364814.028300002217293, 253561.492499999701977 ], [ 364818.156999997794628, 253550.127199999988079 ], [ 364821.382200002670288, 253550.153599999845028 ], [ 364821.420000001788139, 253545.720899999141693 ], [ 364816.671999998390675, 253535.127399999648333 ], [ 364813.590599998831749, 253518.214699998497963 ], [ 364808.806699998676777, 253511.842700000852346 ], [ 364804.006599999964237, 253507.37049999833107 ], [ 364793.556900002062321, 253503.485300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87355663, "LATITUDE": 18.31015657, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.92547018499999, "SHAPE_Area": 4723.6809467800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364869.216499999165535, 253425.155499998480082 ], [ 364865.177699998021126, 253425.96680000051856 ], [ 364863.521899998188019, 253431.019499998539686 ], [ 364862.629299998283386, 253441.14469999819994 ], [ 364864.195200003683567, 253446.646000001579523 ], [ 364868.170999996364117, 253453.22239999845624 ], [ 364884.250500001013279, 253458.842399999499321 ], [ 364885.816399998962879, 253464.343699999153614 ], [ 364884.959700003266335, 253470.247299998998642 ], [ 364882.476000003516674, 253477.826299998909235 ], [ 364875.145499996840954, 253486.42119999974966 ], [ 364871.914899997413158, 253487.028000000864267 ], [ 364859.82379999756813, 253486.506900001317263 ], [ 364855.788599997758865, 253486.896000001579523 ], [ 364852.550800003111362, 253488.347199998795986 ], [ 364846.838299997150898, 253496.322000000625849 ], [ 364846.773500002920628, 253503.920800000429153 ], [ 364847.554700002074242, 253506.882500000298023 ], [ 364851.546700000762939, 253511.559300001710653 ], [ 364854.755699999630451, 253513.485399998724461 ], [ 364858.781900003552437, 253514.151599999517202 ], [ 364888.649599999189377, 253510.385299999266863 ], [ 364895.091099999845028, 253511.493500001728535 ], [ 364909.550800003111362, 253517.944600000977516 ], [ 364920.050899997353554, 253515.919599998742342 ], [ 364923.303099997341633, 253512.779800001531839 ], [ 364924.964299999177456, 253507.093899998813868 ], [ 364928.238099999725819, 253501.42119999974966 ], [ 364930.745099999010563, 253491.098099999129772 ], [ 364930.869199998676777, 253476.533700000494719 ], [ 364929.301500000059605, 253471.243500001728535 ], [ 364928.570699997246265, 253462.371599998325109 ], [ 364924.623700000345707, 253452.417899999767542 ], [ 364912.620700001716614, 253441.553899999707937 ], [ 364890.092500001192093, 253435.670000001788139 ], [ 364879.651799999177456, 253430.729400001466274 ], [ 364873.239100001752377, 253426.243900001049042 ], [ 364869.216499999165535, 253425.155499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8210682, "LATITUDE": 18.30628648, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.638810085599999, "SHAPE_Area": 189.866758925 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370451.348999999463558, 253088.552200000733137 ], [ 370449.734499998390675, 253088.750100001692772 ], [ 370444.866099998354912, 253092.298799999058247 ], [ 370436.738200001418591, 253099.831700000911951 ], [ 370436.720299996435642, 253101.942400000989437 ], [ 370439.914899997413158, 253105.557199999690056 ], [ 370441.523999996483326, 253105.992499999701977 ], [ 370447.187899999320507, 253103.716899998486042 ], [ 370451.244699999690056, 253100.794799998402596 ], [ 370454.504100002348423, 253096.810699999332428 ], [ 370456.15089999884367, 253092.813400000333786 ], [ 370454.561599999666214, 253090.056099999696016 ], [ 370451.348999999463558, 253088.552200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.82077489, "LATITUDE": 18.3061571, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.3060711527, "SHAPE_Area": 80.167836855700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370476.43639999628067, 253077.991700001060963 ], [ 370474.821900002658367, 253078.189599998295307 ], [ 370472.386799998581409, 253080.069499999284744 ], [ 370473.950900003314018, 253085.781899999827147 ], [ 370477.95549999922514, 253088.980999998748302 ], [ 370481.184299997985363, 253088.585299998521805 ], [ 370482.827500000596046, 253085.010099999606609 ], [ 370482.049999997019768, 253081.626299999654293 ], [ 370479.65259999781847, 253079.073499999940395 ], [ 370476.43639999628067, 253077.991700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.82128913, "LATITUDE": 18.30604371, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.241395432600001, "SHAPE_Area": 219.227462191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370426.574500001966953, 253062.384899999946356 ], [ 370423.343800000846386, 253062.991799999028444 ], [ 370419.292499996721745, 253065.280600000172853 ], [ 370414.411399997770786, 253070.30689999833703 ], [ 370413.592500001192093, 253071.777899999171495 ], [ 370414.355700001120567, 253076.850400000810623 ], [ 370416.762100003659725, 253078.347699999809265 ], [ 370421.60530000180006, 253077.754099998623133 ], [ 370427.265699997544289, 253075.900600001215935 ], [ 370429.700800001621246, 253074.020599998533726 ], [ 370432.148500002920628, 253070.663199998438358 ], [ 370433.804300002753735, 253065.610500000417233 ], [ 370431.405100002884865, 253063.268800001591444 ], [ 370426.574500001966953, 253062.384899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8206943, "LATITUDE": 18.30601822, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.250198753100001, "SHAPE_Area": 71.827215981500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370484.630800001323223, 253062.649000000208616 ], [ 370482.20099999755621, 253063.895700000226498 ], [ 370481.362400002777576, 253067.688499998301268 ], [ 370483.765100002288818, 253069.607999999076128 ], [ 370485.348999999463558, 253072.998399998992682 ], [ 370489.367899999022484, 253074.50899999961257 ], [ 370490.193999998271465, 253072.19370000064373 ], [ 370490.246200002729893, 253066.072399999946356 ], [ 370487.850599996745586, 253063.308600001037121 ], [ 370484.630800001323223, 253062.649000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.82034123, "LATITUDE": 18.3059551, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.893905118399999, "SHAPE_Area": 90.805738880800007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370525.824600003659725, 253054.542399998754263 ], [ 370521.780500002205372, 253055.986900001764297 ], [ 370520.155299998819828, 253057.451299998909235 ], [ 370519.334600001573563, 253059.133299998939037 ], [ 370519.293200001120567, 253063.988099999725819 ], [ 370520.079700000584126, 253066.316599998623133 ], [ 370524.908600002527237, 253067.41160000115633 ], [ 370528.956399999558926, 253065.544900000095367 ], [ 370527.379699997603893, 253061.310100000351667 ], [ 370527.419299997389317, 253056.666400000452995 ], [ 370525.824600003659725, 253054.542399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.82050596000001, "LATITUDE": 18.30591186, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.703916545600002, "SHAPE_Area": 85.784126547200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370506.509099997580051, 253050.162399999797344 ], [ 370503.269500002264977, 253051.824700001627207 ], [ 370501.631700001657009, 253054.766600001603365 ], [ 370501.592100001871586, 253059.410300001502037 ], [ 370503.9966000020504, 253061.118700001388788 ], [ 370509.637199997901917, 253061.587099999189377 ], [ 370512.07599999755621, 253059.285000000149012 ], [ 370508.915399998426437, 253051.659800000488758 ], [ 370506.509099997580051, 253050.162399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83609118, "LATITUDE": 18.30324392, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.801991199900002, "SHAPE_Area": 96.166338593800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368857.705799996852875, 252740.292399998754263 ], [ 368856.089599996805191, 252740.701400000602007 ], [ 368856.825800001621246, 252748.940000001341105 ], [ 368859.219499997794628, 252751.914900001138449 ], [ 368864.861900001764297, 252752.172200001776218 ], [ 368866.481700003147125, 252751.341099999845028 ], [ 368867.325800001621246, 252746.91499999910593 ], [ 368864.935599997639656, 252743.51799999922514 ], [ 368857.705799996852875, 252740.292399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83621951000001, "LATITUDE": 18.30321272, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.324312937400002, "SHAPE_Area": 75.656682551599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368848.85080000013113, 252738.531199999153614 ], [ 368844.003899998962879, 252739.546999998390675 ], [ 368843.177799999713898, 252741.862199999392033 ], [ 368843.928400002419949, 252748.412300001829863 ], [ 368848.769799999892712, 252748.029699999839067 ], [ 368853.658100001513958, 252742.159099999815226 ], [ 368852.8733000010252, 252739.619600001722574 ], [ 368848.85080000013113, 252738.531199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.836354, "LATITUDE": 18.30317037, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.656541494800003, "SHAPE_Area": 108.16722007600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368833.592000000178814, 252731.229100000113249 ], [ 368828.739699997007847, 252732.878100000321865 ], [ 368831.045299999415874, 252746.195900000631809 ], [ 368832.654399998486042, 252746.631299998611212 ], [ 368834.268799997866154, 252746.433400001376867 ], [ 368836.707500003278255, 252744.131299998611212 ], [ 368836.729099996387959, 252741.598400000482798 ], [ 368839.198399998247623, 252735.708000000566244 ], [ 368836.806400001049042, 252732.521999999880791 ], [ 368833.592000000178814, 252731.229100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8359461, "LATITUDE": 18.30313702, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.638465200900001, "SHAPE_Area": 115.315466859 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368876.367899999022484, 252726.72410000115633 ], [ 368873.122800000011921, 252729.019499998539686 ], [ 368872.284199997782707, 252732.812399998307228 ], [ 368873.016800001263618, 252741.473200000822544 ], [ 368877.04110000282526, 252742.350499998778105 ], [ 368880.271799996495247, 252741.743700001388788 ], [ 368881.916799999773502, 252737.957400001585484 ], [ 368879.58049999922514, 252728.228000000119209 ], [ 368876.367899999022484, 252726.72410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83617849, "LATITUDE": 18.30304421, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.908721354500003, "SHAPE_Area": 117.613108967 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368856.269400000572205, 252719.593499999493361 ], [ 368842.526100002229214, 252723.702899999916553 ], [ 368845.706399999558926, 252729.00620000064373 ], [ 368849.734399996697903, 252729.461399998515844 ], [ 368861.056900002062321, 252725.543299999088049 ], [ 368861.0929000005126, 252721.321699999272823 ], [ 368856.269400000572205, 252719.593499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83596618, "LATITUDE": 18.30270872, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.451100590900001, "SHAPE_Area": 63.742919629100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368876.74549999833107, 252682.39750000089407 ], [ 368872.697800002992153, 252684.264199998229742 ], [ 368871.061700001358986, 252686.995000001043081 ], [ 368871.022200003266335, 252691.638799998909235 ], [ 368871.8158999979496, 252693.122900001704693 ], [ 368875.861900001764297, 252691.467300001531839 ], [ 368879.10869999974966, 252688.960700001567602 ], [ 368879.929399996995926, 252687.2787000015378 ], [ 368879.148299999535084, 252684.31700000166893 ], [ 368876.74549999833107, 252682.39750000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83667682, "LATITUDE": 18.30265877, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.289703165100001, "SHAPE_Area": 98.719812741599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368798.583499997854233, 252675.847199998795986 ], [ 368794.544799998402596, 252676.658500000834465 ], [ 368793.702500000596046, 252680.873500000685453 ], [ 368796.092699997127056, 252684.270500000566244 ], [ 368799.310699999332428, 252685.141199998557568 ], [ 368800.100900001823902, 252687.047499999403954 ], [ 368801.708099998533726, 252687.693999998271465 ], [ 368804.938699997961521, 252687.087099999189377 ], [ 368805.791799999773502, 252681.605700001120567 ], [ 368804.999899998307228, 252679.910500001162291 ], [ 368802.604299999773502, 252677.146600000560284 ], [ 368798.583499997854233, 252675.847199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83653686, "LATITUDE": 18.3026113, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.836306734600001, "SHAPE_Area": 76.848516272300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368815.557499997317791, 252671.130899999290705 ], [ 368812.326800003647804, 252671.737799998372793 ], [ 368809.877300001680851, 252675.30629999935627 ], [ 368810.651299998164177, 252679.112300001084805 ], [ 368813.050399996340275, 252681.453999999910593 ], [ 368816.277500003576279, 252681.269299998879433 ], [ 368819.526100002229214, 252678.551699999719858 ], [ 368819.561999998986721, 252674.330099999904633 ], [ 368817.967399999499321, 252672.2060999982059 ], [ 368815.557499997317791, 252671.130899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.83653361, "LATITUDE": 18.30243918, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.158511082899999, "SHAPE_Area": 100.93319656600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368812.497599996626377, 252651.685300000011921 ], [ 368810.067900002002716, 252652.932000000029802 ], [ 368810.035499997437, 252656.7314000017941 ], [ 368812.402300000190735, 252662.872499998658895 ], [ 368816.430299997329712, 252663.327599998563528 ], [ 368818.858199998736382, 252662.291999999433756 ], [ 368821.32209999859333, 252657.03489999845624 ], [ 368820.537399999797344, 252654.495299998670816 ], [ 368818.136399999260902, 252652.364700000733137 ], [ 368812.497599996626377, 252651.685300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.81656612, "LATITUDE": 18.29461452, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.990808797, "SHAPE_Area": 774.35855383399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370934.935699999332428, 251790.907200001180172 ], [ 370929.291500002145767, 251790.861000001430511 ], [ 370927.6537000015378, 251793.80290000140667 ], [ 370928.424099996685982, 251798.031100001186132 ], [ 370924.376299999654293, 251799.897799998521805 ], [ 370917.958200000226498, 251796.0456000007689 ], [ 370913.899700000882149, 251799.178800001740456 ], [ 370913.869099996984005, 251802.767200000584126 ], [ 370915.449400000274181, 251806.579799998551607 ], [ 370919.439599998295307, 251811.467599999159575 ], [ 370921.021600000560284, 251815.069099999964237 ], [ 370924.225299999117851, 251817.628499999642372 ], [ 370937.09570000320673, 251821.322399999946356 ], [ 370941.102099999785423, 251824.310499999672174 ], [ 370943.48870000243187, 251828.129700001329184 ], [ 370952.338299997150898, 251830.52419999986887 ], [ 370954.782399997115135, 251827.588899999856949 ], [ 370950.803000003099442, 251821.434599999338388 ], [ 370945.268500000238419, 251808.512600000947714 ], [ 370942.869400002062321, 251806.170899998396635 ], [ 370942.120600000023842, 251799.409800000488758 ], [ 370934.935699999332428, 251790.907200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85457953, "LATITUDE": 18.33609425, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 472.20828992200001, "SHAPE_Area": 1951.9654019699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366800.284599997103214, 256286.501499999314547 ], [ 366846.592200003564358, 256340.709399998188019 ], [ 366950.569600000977516, 256455.50789999961853 ], [ 366956.114799998700619, 256450.477200001478195 ], [ 366924.178700000047684, 256414.804999999701977 ], [ 366893.041900001466274, 256378.241999998688698 ], [ 366841.113499999046326, 256321.243999999016523 ], [ 366827.544600002467632, 256304.878699999302626 ], [ 366805.1925999969244, 256278.309099998325109 ], [ 366800.284599997103214, 256286.501499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91084517, "LATITUDE": 18.32017144, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 403.54830439699998, "SHAPE_Area": 1780.4455357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360864.325099997222424, 254520.883499998599291 ], [ 360878.7128000035882, 254535.777800001204014 ], [ 360884.274300001561642, 254545.533700000494719 ], [ 360893.849399998784065, 254557.433299999684095 ], [ 360903.446000002324581, 254566.799899999052286 ], [ 360922.74889999628067, 254572.657400000840425 ], [ 360927.58500000089407, 254572.908100001513958 ], [ 360942.094999998807907, 254573.449099998921156 ], [ 360964.72749999910593, 254567.090399999171495 ], [ 360990.6283999979496, 254555.692200001329184 ], [ 360997.879799999296665, 254556.384899999946356 ], [ 361027.663099996745586, 254562.539299998432398 ], [ 361022.223200000822544, 254552.65819999948144 ], [ 361018.07490000128746, 254546.435699999332428 ], [ 361010.944499999284744, 254537.282299999147654 ], [ 361010.903099998831749, 254542.137099999934435 ], [ 361007.65089999884367, 254545.276900000870228 ], [ 361001.187799997627735, 254546.70160000026226 ], [ 360987.473300002515316, 254547.433800000697374 ], [ 360983.432800002396107, 254548.456199999898672 ], [ 360968.046300001442432, 254556.140700001269579 ], [ 360944.593099996447563, 254564.181400001049042 ], [ 360942.976899996399879, 254564.590399999171495 ], [ 360934.100199997425079, 254565.362100001424551 ], [ 360925.241599999368191, 254564.022999998182058 ], [ 360911.566600002348423, 254560.111400000751019 ], [ 360906.755699999630451, 254556.905600000172853 ], [ 360893.172499999403954, 254542.228999998420477 ], [ 360887.607400000095367, 254532.895300000905991 ], [ 360882.827100001275539, 254526.101199999451637 ], [ 360880.431500002741814, 254523.337400000542402 ], [ 360875.636799998581409, 254518.231899999082088 ], [ 360868.42679999768734, 254512.684500001370907 ], [ 360864.325099997222424, 254520.883499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85503797, "LATITUDE": 18.32773275, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.2478188037, "SHAPE_Area": 277.56251758799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366852.783100001513958, 255434.000399999320507 ], [ 366849.066600002348423, 255427.053800001740456 ], [ 366822.094899997115135, 255443.218699999153614 ], [ 366816.722000002861023, 255446.419199999421835 ], [ 366817.093900002539158, 255446.929200001060963 ], [ 366819.855099998414516, 255452.538199998438358 ], [ 366822.424199998378754, 255451.123799998313189 ], [ 366833.409599997103214, 255444.896600000560284 ], [ 366852.783100001513958, 255434.000399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87545873000001, "LATITUDE": 18.32702392, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.89105085436, "SHAPE_Area": 0.40772542146000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364676.655799999833107, 255342.486600000411272 ], [ 364676.641099996864796, 255342.673099998384714 ], [ 364677.087600000202656, 255343.267799999564886 ], [ 364677.756800003349781, 255342.803100001066923 ], [ 364676.655799999833107, 255342.486600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87546386, "LATITUDE": 18.3270211, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.69648407724000005, "SHAPE_Area": 0.01881497006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364676.641099996864796, 255342.673099998384714 ], [ 364676.655799999833107, 255342.486600000411272 ], [ 364676.458499997854233, 255342.429900001734495 ], [ 364676.641099996864796, 255342.673099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502043000", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-43", "ACRE": ".07", "LONGITUDE": -64.90290603, "LATITUDE": 18.33952375, "OBJECTID_1": 19935, "PARCEL_NO_": "105502043000", "Tax_Legal_": "1-13-43 DONOE 2A NEW QTR", "Name": "ALLEN, JOYCELYN", "Address": "7489 Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5000, "Improved_V": 275000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.478865858299997, "SHAPE_Area": 311.74340382899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361764.467100001871586, 256689.037000000476837 ], [ 361763.0996999964118, 256687.562699999660254 ], [ 361753.491200000047684, 256694.400199998170137 ], [ 361754.959499999880791, 256696.349199999123812 ], [ 361753.138999998569489, 256697.732400000095367 ], [ 361762.690999999642372, 256710.979499999433756 ], [ 361766.187299996614456, 256715.828299999237061 ], [ 361776.487700000405312, 256707.016600001603365 ], [ 361772.153099998831749, 256701.517900001257658 ], [ 361763.251199997961521, 256690.225400000810623 ], [ 361764.467100001871586, 256689.037000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502042900", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-41", "ACRE": ".07", "LONGITUDE": -64.90300118, "LATITUDE": 18.33958649, "OBJECTID_1": 19934, "PARCEL_NO_": "105502042900", "Tax_Legal_": "1-13-41 DONOE 2A NEW QTR", "Name": "JAMILLIA REBECCA NORRIS", "Address": "PO Box 307771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5700, "Improved_V": 274300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.850361273199994, "SHAPE_Area": 296.39894359700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361754.959499999880791, 256696.349199999123812 ], [ 361753.491200000047684, 256694.400199998170137 ], [ 361750.608499996364117, 256696.342000000178814 ], [ 361742.792700000107288, 256701.454199999570847 ], [ 361744.247699998319149, 256703.45160000026226 ], [ 361742.628200002014637, 256704.836500000208616 ], [ 361757.355700001120567, 256721.045899998396635 ], [ 361758.98589999973774, 256722.84010000154376 ], [ 361759.477099999785423, 256722.112100001424551 ], [ 361766.187299996614456, 256715.828299999237061 ], [ 361762.690999999642372, 256710.979499999433756 ], [ 361753.138999998569489, 256697.732400000095367 ], [ 361754.959499999880791, 256696.349199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502042800", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-40", "ACRE": ".08", "LONGITUDE": -64.90308262000001, "LATITUDE": 18.33966052, "OBJECTID_1": 19933, "PARCEL_NO_": "105502042800", "Tax_Legal_": "1-13-40 DONOE 2A NEW QTR", "Name": "BROWNE, AVON W & PATRECIA PATRICK", "Address": "BOX 5418", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5700, "Improved_V": 299300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.929952389500002, "SHAPE_Area": 354.06145079200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361744.247699998319149, 256703.45160000026226 ], [ 361742.792700000107288, 256701.454199999570847 ], [ 361731.828500002622604, 256709.231100000441074 ], [ 361733.931199997663498, 256711.3564000017941 ], [ 361732.310099996626377, 256712.941100001335144 ], [ 361751.378600001335144, 256730.595400001853704 ], [ 361753.647900000214577, 256732.696400001645088 ], [ 361756.09469458454987, 256727.647907428065082 ], [ 361758.98589999973774, 256722.84010000154376 ], [ 361757.355700001120567, 256721.045899998396635 ], [ 361742.628200002014637, 256704.836500000208616 ], [ 361744.247699998319149, 256703.45160000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502042700", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-36", "ACRE": ".10", "LONGITUDE": -64.90321979, "LATITUDE": 18.33984955, "OBJECTID_1": 19932, "PARCEL_NO_": "105502042700", "Tax_Legal_": "1-13-36 DONOE 2A NEW QTR", "Name": "LANGUEDOC, JERRY & JULIET", "Address": "PO Box 502098", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 7100, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.709394702, "SHAPE_Area": 470.64727098499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361724.013400003314018, 256719.664099998772144 ], [ 361722.64360000193119, 256718.081599999219179 ], [ 361713.800899997353554, 256728.241700001060963 ], [ 361716.090300001204014, 256729.786400001496077 ], [ 361714.864399999380112, 256732.173500001430511 ], [ 361739.518899999558926, 256753.482200000435114 ], [ 361747.115900002419949, 256751.888199999928474 ], [ 361750.079099997878075, 256751.266399998217821 ], [ 361749.901100002229214, 256749.030200000852346 ], [ 361747.344099998474121, 256746.410100001841784 ], [ 361722.594899997115135, 256721.050700001418591 ], [ 361724.013400003314018, 256719.664099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601023200", "MAP": "D9-6791-T002", "PARCEL_NAM": "3J-3A", "ACRE": "0.317", "LONGITUDE": -64.87861612, "LATITUDE": 18.32533262, "OBJECTID_1": 37937, "PARCEL_NO_": "107601023200", "Tax_Legal_": "3J-3A ESTATE MARIENDAHL #3 RED HOOK QTR", "Name": "MONSANTO, N. & A. & S. & P. & C. SR & A. SR", "Address": "PO Box 1673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.56888757499999, "SHAPE_Area": 1554.0118503199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364319.506300002336502, 255148.946699999272823 ], [ 364336.345200002193451, 255180.647399999201298 ], [ 364336.464599996805191, 255180.751899998635054 ], [ 364336.619699999690056, 255180.642499998211861 ], [ 364370.421700000762939, 255156.7989999987185 ], [ 364375.103900000452995, 255152.951099999248981 ], [ 364357.555900000035763, 255136.708399999886751 ], [ 364343.585900001227856, 255127.818399999290705 ], [ 364340.728299997746944, 255128.453400000929832 ], [ 364338.602700002491474, 255130.506000000983477 ], [ 364319.506300002336502, 255148.946699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004025400", "MAP": "D9-8742-T013", "PARCEL_NAM": "1A-5", "ACRE": ".435", "LONGITUDE": -64.90265557, "LATITUDE": 18.35597135, "OBJECTID_1": 6126, "PARCEL_NO_": "103004025400", "Tax_Legal_": "1A-5 ESTATE WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "DURAND, DANTON D. & AMY J.", "Address": "PO Box 11113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.948632992, "SHAPE_Area": 1587.52675772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361790.834600001573563, 258548.51069999858737 ], [ 361798.097699999809265, 258506.730900000780821 ], [ 361759.646600000560284, 258498.800500001758337 ], [ 361756.839100003242493, 258512.368099998682737 ], [ 361751.808799996972084, 258534.914000000804663 ], [ 361790.834600001573563, 258548.51069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004011300", "MAP": "D9-8742-T013", "PARCEL_NAM": "1A REM", "ACRE": ".653", "LONGITUDE": -64.90219243, "LATITUDE": 18.35612789, "OBJECTID_1": 5950, "PARCEL_NO_": "103004011300", "Tax_Legal_": "1A REM & EASEMENT \"A\" WINTBERG NO. 3 GREAT NORTHSIDE QTR", "Name": "LEDEE, JOSEPH", "Address": "PO Box 11113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73300, "Improved_V": 112400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.26386615499999, "SHAPE_Area": 2599.4384611700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361798.097699999809265, 258506.730900000780821 ], [ 361790.834600001573563, 258548.51069999858737 ], [ 361819.113399997353554, 258558.363099999725819 ], [ 361840.971100002527237, 258565.182799998670816 ], [ 361866.121399998664856, 258573.063799999654293 ], [ 361861.334200002253056, 258551.43129999935627 ], [ 361848.51410000026226, 258541.827199999243021 ], [ 361841.320299997925758, 258534.379999998956919 ], [ 361825.703100003302097, 258512.424499999731779 ], [ 361798.097699999809265, 258506.730900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203016000", "MAP": "D9-8507-T010", "PARCEL_NAM": "4-50-4-1", "ACRE": ".500", "LONGITUDE": -64.88090622, "LATITUDE": 18.35427446, "OBJECTID_1": 6999, "PARCEL_NO_": "103203016000", "Tax_Legal_": "4-50-4-1 TABOR & HARMONY NO.5&6 EAST END QTR", "Name": "DRAFTS III, TARANCE F.", "Address": "806 NW 37th Pl", "City": "Cape Coral", "State": "Florida", "Zip": 33993, "Country": "United States", "Land_Value": 55100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.858112546, "SHAPE_Area": 2355.5050189100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364114.001000002026558, 258346.74040000140667 ], [ 364056.225199997425079, 258329.677999999374151 ], [ 364043.4966000020504, 258347.009799998253584 ], [ 364036.153499998152256, 258357.08219999819994 ], [ 364032.886900000274181, 258361.910599999129772 ], [ 364073.105400003492832, 258373.638799998909235 ], [ 364116.705600000917912, 258367.029599998146296 ], [ 364115.112800002098083, 258364.694499999284744 ], [ 364115.141599997878075, 258361.317200001329184 ], [ 364114.001000002026558, 258346.74040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203011300", "MAP": "D9-8507-T010", "PARCEL_NAM": "4-50-4", "ACRE": ".55", "LONGITUDE": -64.88075649, "LATITUDE": 18.35389301, "OBJECTID_1": 6964, "PARCEL_NO_": "103203011300", "Tax_Legal_": "4-50-3 & 4-50-4 REM TABOR & HARMONY NO.5&6 EAST END QTR", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 160300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.563252922, "SHAPE_Area": 2342.6439337900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364056.225199997425079, 258329.677999999374151 ], [ 364114.001000002026558, 258346.74040000140667 ], [ 364113.687200002372265, 258342.729100000113249 ], [ 364112.995899997651577, 258329.21339999884367 ], [ 364103.37049999833107, 258323.223999999463558 ], [ 364108.361299999058247, 258305.321899998933077 ], [ 364110.03320000320673, 258298.369500000029802 ], [ 364115.841099999845028, 258279.207600001245737 ], [ 364099.79389999806881, 258269.788100000470877 ], [ 364081.8429000005126, 258294.550200000405312 ], [ 364071.234899997711182, 258309.239999998360872 ], [ 364056.225199997425079, 258329.677999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203011200", "MAP": "D9-8507-T010", "PARCEL_NAM": "4-40", "ACRE": ".586", "LONGITUDE": -64.88119798, "LATITUDE": 18.35370701, "OBJECTID_1": 6963, "PARCEL_NO_": "103203011200", "Tax_Legal_": "4-40 REM TABOR & HARMONY NO.5&6 EAST END QTR", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.49117323300001, "SHAPE_Area": 2834.8741121399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364011.065099999308586, 258293.029100000858307 ], [ 364056.121200002729893, 258329.819499999284744 ], [ 364071.234899997711182, 258309.239999998360872 ], [ 364081.8429000005126, 258294.550200000405312 ], [ 364038.640100002288818, 258254.510999999940395 ], [ 364033.040799997746944, 258249.187899999320507 ], [ 364011.065099999308586, 258293.029100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88152208, "LATITUDE": 18.35373062, "OBJECTID_1": 6963, "PARCEL_NO_": "103203011200", "Tax_Legal_": "4-40 REM TABOR & HARMONY NO.5&6 EAST END QTR", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.77371796038, "SHAPE_Area": 0.1403442985 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364010.857900001108646, 258293.442499998956919 ], [ 364011.546899996697903, 258293.422499999403954 ], [ 364011.065099999308586, 258293.029100000858307 ], [ 364010.857900001108646, 258293.442499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "109402010400", "MAP": "F9-3163-T73", "PARCEL_NAM": "16", "ACRE": "2.00", "LONGITUDE": -64.88748458000001, "LATITUDE": 18.31492399, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 708.88323610400005, "SHAPE_Area": 5160.3876054399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363423.287900000810623, 253911.291000001132488 ], [ 363358.116800002753735, 253894.292300000786781 ], [ 363446.995200000703335, 254065.420800000429153 ], [ 363445.435400001704693, 254075.015799999237061 ], [ 363441.703599996864796, 254090.027100000530481 ], [ 363437.470200002193451, 254113.045899998396635 ], [ 363433.501500003039837, 254126.804299999028444 ], [ 363430.855599999427795, 254141.885499998927116 ], [ 363429.79730000346899, 254150.087600000202656 ], [ 363426.093099996447563, 254164.90430000051856 ], [ 363424.24099999666214, 254174.164799999445677 ], [ 363422.505300000309944, 254192.461199998855591 ], [ 363423.347599998116493, 254188.246199999004602 ], [ 363428.313100002706051, 254173.299199998378754 ], [ 363431.696599997580051, 254154.750700000673532 ], [ 363441.607900001108646, 254127.17850000038743 ], [ 363456.583700001239777, 254073.05009999871254 ], [ 363458.917400002479553, 254065.065099999308586 ], [ 363460.980099998414516, 254058.838700000196695 ], [ 363458.901500001549721, 254048.487399999052286 ], [ 363454.668200001120567, 254036.581199999898672 ], [ 363451.493199996650219, 254029.437399998307228 ], [ 363448.318199999630451, 254022.293600000441074 ], [ 363443.555600002408028, 254011.974899999797344 ], [ 363439.586900003254414, 254002.978999998420477 ], [ 363433.501500003039837, 253993.453999999910593 ], [ 363426.886900000274181, 253984.458099998533726 ], [ 363417.891000002622604, 253973.610199999064207 ], [ 363411.011799998581409, 253965.672699999064207 ], [ 363404.926399998366833, 253957.735199999064207 ], [ 363403.603500001132488, 253952.443500000983477 ], [ 363404.397200003266335, 253942.918499998748302 ], [ 363408.36599999666214, 253937.362199999392033 ], [ 363418.931900002062321, 253925.593199998140335 ], [ 363421.065999999642372, 253921.751800000667572 ], [ 363425.299400001764297, 253916.460099998861551 ], [ 363430.691200003027916, 253913.205600000917912 ], [ 363423.287900000810623, 253911.291000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105804033100", "MAP": "D9-4165-T87", "PARCEL_NAM": "16-1", "ACRE": "10.94", "LONGITUDE": -64.85156149, "LATITUDE": 18.33355045, "OBJECTID_1": 24220, "PARCEL_NO_": "105804033100", "Tax_Legal_": "SMITH BAY 16-1 1,2&3 SMITH BAY", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 530200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1246.9739024099999, "SHAPE_Area": 17813.132911100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367253.148199997842312, 256060.717199999839067 ], [ 367115.895300000905991, 256093.128699999302626 ], [ 367094.72860000282526, 256108.011599998921156 ], [ 367080.176500000059605, 256092.798000000417233 ], [ 367073.231200002133846, 256099.412599999457598 ], [ 367054.738099999725819, 256078.557199999690056 ], [ 367047.772699996829033, 256084.583399999886751 ], [ 367039.885300002992153, 256090.209100000560284 ], [ 367029.565399996936321, 256098.211300000548363 ], [ 367000.685199998319149, 256125.831700000911951 ], [ 367054.322700001299381, 256188.10020000115037 ], [ 367072.977600000798702, 256175.376200001686811 ], [ 367100.552199997007847, 256156.814500000327826 ], [ 367123.262000001966953, 256141.37950000166893 ], [ 367268.236400000751019, 256087.462200000882149 ], [ 367318.046499997377396, 256068.937399998307228 ], [ 367361.640699997544289, 256083.099300000816584 ], [ 367355.378799997270107, 256040.191700000315905 ], [ 367389.601400002837181, 256034.208500001579523 ], [ 367388.874799996614456, 256028.214800000190735 ], [ 367396.811599999666214, 256024.350499998778105 ], [ 367391.500100001692772, 255985.254700001329184 ], [ 367384.259499996900558, 255983.2956000007689 ], [ 367380.894000001251698, 255999.733399998396635 ], [ 367373.651500001549721, 255997.985300000756979 ], [ 367363.759999997913837, 256023.235599998384714 ], [ 367346.902999997138977, 256014.231699999421835 ], [ 367347.739799998700619, 256010.649999998509884 ], [ 367335.706299997866154, 256003.374299999326468 ], [ 367253.148199997842312, 256060.717199999839067 ] ], [ [ 367098.997100003063679, 256150.046799998730421 ], [ 367054.376599997282028, 256181.767799999564886 ], [ 367049.241700001060963, 256174.434500001370907 ], [ 367047.168399997055531, 256176.009300000965595 ], [ 367040.791599996387959, 256167.302299998700619 ], [ 367044.855499997735023, 256163.535900000482798 ], [ 367040.073399998247623, 256156.952799998223782 ], [ 367092.026199996471405, 256116.425900001078844 ], [ 367098.404799997806549, 256124.921799998730421 ], [ 367095.962499998509884, 256127.646000001579523 ], [ 367100.274800002574921, 256134.561700001358986 ], [ 367096.258100003004074, 256137.4712999984622 ], [ 367099.879000000655651, 256141.188099998980761 ], [ 367095.008699998259544, 256144.947900000959635 ], [ 367098.997100003063679, 256150.046799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203011600", "MAP": "G9-819-T65", "PARCEL_NAM": null, "ACRE": ".17", "LONGITUDE": -64.88087894, "LATITUDE": 18.35354483, "OBJECTID_1": 6965, "PARCEL_NO_": "103203011600", "Tax_Legal_": "TABOR&HARMONY 4-51 No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.91921315800001, "SHAPE_Area": 842.53916540499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364075.282600000500679, 258254.363400001078844 ], [ 364058.875799998641014, 258273.265000000596046 ], [ 364081.8429000005126, 258294.550200000405312 ], [ 364099.79389999806881, 258269.788100000470877 ], [ 364082.956699997186661, 258258.46229999884963 ], [ 364075.282600000500679, 258254.363400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702035900", "MAP": "G9-2181-T73", "PARCEL_NAM": "83-5", "ACRE": ".20", "LONGITUDE": -64.87020794, "LATITUDE": 18.3422391, "OBJECTID_1": 22525, "PARCEL_NO_": "105702035900", "Tax_Legal_": "83-5 ESTATE SMITH BAY 1,2 & 3 EAST END QTR", "Name": "BLANCHARD, PETER and SHEILA", "Address": "PO Box 7024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31200, "Improved_V": 15900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.737992788, "SHAPE_Area": 765.19663173900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365224.437200002372265, 257053.242899999022484 ], [ 365231.832900002598763, 257019.124499998986721 ], [ 365205.566200003027916, 257011.010400000959635 ], [ 365208.521700002253056, 257042.698600001633167 ], [ 365209.23369999974966, 257049.5185999982059 ], [ 365224.437200002372265, 257053.242899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032800", "MAP": "d9-899-t70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86937307, "LATITUDE": 18.34288826, "OBJECTID_1": 22494, "PARCEL_NO_": "105702032800", "Tax_Legal_": "103G R.O.W. SMITH BAY 1,2&3 EAST END QTR", "Name": "HIRSCH, GEORGE", "Address": "719 Plymouth St", "City": "ALLENTOWN", "State": "Pennsylvania", "Zip": 18109, "Country": "United States", "Land_Value": 88100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.105642038, "SHAPE_Area": 662.65277705599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365310.348399996757507, 257080.331900000572205 ], [ 365294.750299997627735, 257088.262600000947714 ], [ 365295.092399999499321, 257116.548799999058247 ], [ 365324.296300001442432, 257124.733800001442432 ], [ 365315.187600001692772, 257110.910500001162291 ], [ 365312.023500002920628, 257103.707400001585484 ], [ 365309.73589999973774, 257088.278900001198053 ], [ 365310.348399996757507, 257080.331900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702022000", "MAP": null, "PARCEL_NAM": "4A", "ACRE": "1.33", "LONGITUDE": -64.86709456, "LATITUDE": 18.34435315, "OBJECTID_1": 22384, "PARCEL_NO_": "105702022000", "Tax_Legal_": "SMITH BAY 4A EAST END QUARTER", "Name": "HILAIRE, LIONEL", "Address": "7272 Estate Misgunst #6", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023423, "Country": "United States", "Land_Value": 159500, "Improved_V": 117000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.47241943500001, "SHAPE_Area": 5812.7258838799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365581.689300000667572, 257241.005399998277426 ], [ 365540.942299999296665, 257233.21229999884963 ], [ 365530.017499998211861, 257230.460200000554323 ], [ 365527.691600002348423, 257249.860599998384714 ], [ 365494.634199999272823, 257244.004599999636412 ], [ 365483.965400002896786, 257286.190499998629093 ], [ 365546.63910000026226, 257298.83049999922514 ], [ 365566.75280000269413, 257301.312399998307228 ], [ 365586.761799998581409, 257303.766499999910593 ], [ 365598.108000002801418, 257245.836899999529123 ], [ 365598.427299998700619, 257244.206599999219179 ], [ 365582.598200000822544, 257241.232900001108646 ], [ 365581.689300000667572, 257241.005399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004024500", "MAP": "D9-8477-T010", "PARCEL_NAM": "1-143-9-REM", "ACRE": ".29", "LONGITUDE": -64.90732342, "LATITUDE": 18.3484949, "OBJECTID_1": 6116, "PARCEL_NO_": "103004024500", "Tax_Legal_": "WINTBERG 1-143-9 REM GREAT NORTHSIDE QTR", "Name": "DAZLE, R. & OTHERS", "Address": "8601 Blossom Ave", "City": "Tampa", "State": "Florida", "Zip": 33614, "Country": "United States", "Land_Value": 30200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.04754819300001, "SHAPE_Area": 1193.6426737700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361280.886399999260902, 257712.086899999529123 ], [ 361294.85249999910593, 257703.540699999779463 ], [ 361320.221900001168251, 257704.105999998748302 ], [ 361312.228900000452995, 257695.807900000363588 ], [ 361308.254900000989437, 257689.020399998873472 ], [ 361301.053800001740456, 257682.417599998414516 ], [ 361298.672700002789497, 257677.96510000154376 ], [ 361297.925700001418591, 257670.992899999022484 ], [ 361263.182300001382828, 257679.152300000190735 ], [ 361279.058600001037121, 257708.624200001358986 ], [ 361280.886399999260902, 257712.086899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004023200", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".51", "LONGITUDE": -64.90691751, "LATITUDE": 18.34805598, "OBJECTID_1": 6103, "PARCEL_NO_": "103004023200", "Tax_Legal_": "WINTBERG 1-143-7 3 GR NORTHSIDE", "Name": "GUMBS, SAMUEL E", "Address": "PO Box 8141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.61428693400001, "SHAPE_Area": 1421.2303056799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361353.969400003552437, 257623.533399999141693 ], [ 361352.380199998617172, 257620.776200000196695 ], [ 361289.236100003123283, 257649.812399998307228 ], [ 361292.446900002658367, 257651.527499999850988 ], [ 361305.290399998426437, 257658.387600000947714 ], [ 361311.764300003647804, 257655.696400001645088 ], [ 361327.0878000035882, 257655.399599999189377 ], [ 361340.809500001370907, 257653.823100000619888 ], [ 361365.86089999973774, 257647.484299998730421 ], [ 361353.969400003552437, 257623.533399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012500", "MAP": "D9-2654-T84", "PARCEL_NAM": "1-2", "ACRE": ".16", "LONGITUDE": -64.8830376, "LATITUDE": 18.34985709, "OBJECTID_1": 6974, "PARCEL_NO_": "103203012500", "Tax_Legal_": "TARBOR & HARMONY 1-2 &4-7-1 EAST END QTR", "Name": "WEEKS, GENEVA", "Address": "PO Box 12302", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15800, "Improved_V": 280400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.921727711, "SHAPE_Area": 677.56621391800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363870.261799998581409, 257855.132500000298023 ], [ 363860.329599998891354, 257853.672600001096725 ], [ 363847.566100001335144, 257851.693300001323223 ], [ 363834.852300003170967, 257849.654399998486042 ], [ 363848.304300002753735, 257879.739799998700619 ], [ 363873.398800000548363, 257868.335099998861551 ], [ 363870.261799998581409, 257855.132500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89856896000001, "LATITUDE": 18.35348192, "OBJECTID_1": 6554, "PARCEL_NO_": "103103024600", "Tax_Legal_": "MANDAHL 15D GT. NORTHSIDE", "Name": "QUESTEL, CECILIA & ANGE", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 412700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 432.370235476, "SHAPE_Area": 6760.03643276 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362244.326899997889996, 258271.278400000184774 ], [ 362250.14190000295639, 258251.272100001573563 ], [ 362265.927599996328354, 258196.728100001811981 ], [ 362267.919699996709824, 258190.057000000029802 ], [ 362243.314599998295307, 258189.788800001144409 ], [ 362242.479999996721745, 258189.714600000530481 ], [ 362242.123999997973442, 258193.8581000007689 ], [ 362238.552100002765656, 258193.540600001811981 ], [ 362233.789599999785423, 258193.381799999624491 ], [ 362230.629699997603893, 258192.638000000268221 ], [ 362228.550800003111362, 258192.270599998533726 ], [ 362227.201499998569489, 258192.429299999028444 ], [ 362225.534599997103214, 258192.826200000941753 ], [ 362223.708999998867512, 258192.905600000172853 ], [ 362222.597699999809265, 258193.143699999898672 ], [ 362221.4070999994874, 258194.016800001263618 ], [ 362220.481899999082088, 258195.572399999946356 ], [ 362220.140699997544289, 258197.668099999427795 ], [ 362219.740199998021126, 258200.128699999302626 ], [ 362218.86710000038147, 258203.224300000816584 ], [ 362218.659500002861023, 258207.197700001299381 ], [ 362218.311499997973442, 258213.860599998384714 ], [ 362218.390799999237061, 258216.559399999678135 ], [ 362217.245600000023842, 258219.55460000038147 ], [ 362216.327100001275539, 258221.956900000572205 ], [ 362213.145300000905991, 258227.104899998754263 ], [ 362209.262699998915195, 258233.386900000274181 ], [ 362206.643299996852875, 258236.006299998611212 ], [ 362205.055799998342991, 258238.466899998486042 ], [ 362204.420800000429153, 258241.086300000548363 ], [ 362205.172499999403954, 258243.768500000238419 ], [ 362205.29389999806881, 258245.134399998933077 ], [ 362206.325800001621246, 258247.03940000012517 ], [ 362207.119599997997284, 258248.547600001096725 ], [ 362210.92960000038147, 258251.405099999159575 ], [ 362205.974399998784065, 258256.295800000429153 ], [ 362204.817699998617172, 258257.437600001692772 ], [ 362198.057599999010563, 258247.139800000935793 ], [ 362196.536200001835823, 258244.822200000286102 ], [ 362196.324500001966953, 258241.647199999541044 ], [ 362148.494499996304512, 258244.924600001424551 ], [ 362150.130400002002716, 258253.831000000238419 ], [ 362160.152099996805191, 258307.953000001609325 ], [ 362244.299900002777576, 258274.444600000977516 ], [ 362244.326899997889996, 258271.278400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103103021800", "MAP": "D9-8221-T008", "PARCEL_NAM": "14-REM", "ACRE": ".963", "LONGITUDE": -64.8978821, "LATITUDE": 18.35464467, "OBJECTID_1": 6527, "PARCEL_NO_": "103103021800", "Tax_Legal_": "CONSOLIDATED 14-REM MANDAHL No.1 GREAT NORTHSIDE QUARTER", "Name": "ELSIE D. BERRY REVOCABLE TRUST", "Address": "PO Box 9560", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.51461324399997, "SHAPE_Area": 4625.6400878499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362316.676299996674061, 258392.193799998611212 ], [ 362324.433100000023842, 258333.573300000280142 ], [ 362296.92849999666214, 258343.902800001204014 ], [ 362292.074500001966953, 258345.763000000268221 ], [ 362280.7483000010252, 258350.103300001472235 ], [ 362247.578000001609325, 258362.91950000077486 ], [ 362243.587099999189377, 258364.510499998927116 ], [ 362245.373800002038479, 258432.351300001144409 ], [ 362254.729299999773502, 258425.537200000137091 ], [ 362273.751199997961521, 258414.218400001525879 ], [ 362288.793200001120567, 258406.500399999320507 ], [ 362316.676299996674061, 258392.193799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103024500", "MAP": "G9-2728-T78", "PARCEL_NAM": "15A-2", "ACRE": ".2709", "LONGITUDE": -64.89805622, "LATITUDE": 18.35426414, "OBJECTID_1": 6553, "PARCEL_NO_": "103103024500", "Tax_Legal_": "MANDAHL 14E&15A-2 GR NORTHSIDE", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52100, "Improved_V": 335000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.94207737400001, "SHAPE_Area": 1514.51778513 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362284.254100002348423, 258317.201400000602007 ], [ 362285.116200000047684, 258310.664500001817942 ], [ 362281.070200003683567, 258312.320199999958277 ], [ 362246.281900003552437, 258325.756499998271465 ], [ 362242.597000002861023, 258326.913800001144409 ], [ 362243.587099999189377, 258364.510499998927116 ], [ 362247.578100003302097, 258362.91950000077486 ], [ 362280.7483000010252, 258350.103300001472235 ], [ 362285.044200003147125, 258319.107700001448393 ], [ 362284.254100002348423, 258317.201400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103024500", "MAP": "G9-2728-T78", "PARCEL_NAM": "14E", "ACRE": ".2296", "LONGITUDE": -64.89768959, "LATITUDE": 18.35415965, "OBJECTID_1": 6553, "PARCEL_NO_": "103103024500", "Tax_Legal_": "MANDAHL 14E&15A-2 GR NORTHSIDE", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52100, "Improved_V": 335000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.081368717, "SHAPE_Area": 1290.7695219 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362280.7483000010252, 258350.103300001472235 ], [ 362292.074500001966953, 258345.763000000268221 ], [ 362296.92849999666214, 258343.902899999171495 ], [ 362324.433100000023842, 258333.573300000280142 ], [ 362324.625500001013279, 258310.987900000065565 ], [ 362317.37219999730587, 258310.506299998611212 ], [ 362289.968400001525879, 258309.015500001609325 ], [ 362285.116200000047684, 258310.664500001817942 ], [ 362284.254100002348423, 258317.201400000602007 ], [ 362285.044200003147125, 258319.107700001448393 ], [ 362280.7483000010252, 258350.103300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103020300", "MAP": "D9-8221-T008", "PARCEL_NAM": "15A REM", "ACRE": ".542", "LONGITUDE": -64.89788868, "LATITUDE": 18.3539047, "OBJECTID_1": 6512, "PARCEL_NO_": "103103020300", "Tax_Legal_": "CONSOLIDATED MANDAHL 15A REMAINDER No.1 GREAT NORTHSIDE QUARTER", "Name": "CASTRO, JORGE", "Address": "PO BOX 307965", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 363.104995981, "SHAPE_Area": 2602.6034846399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362328.828299999237061, 258289.686000000685453 ], [ 362329.727700002491474, 258279.9989 ], [ 362335.778200000524521, 258232.341299999505281 ], [ 362333.359300002455711, 258232.32149999961257 ], [ 362329.914700001478195, 258258.046700000762939 ], [ 362326.757700003683567, 258289.646000001579523 ], [ 362320.177000001072884, 258289.166999999433756 ], [ 362317.555699996650219, 258288.976300001144409 ], [ 362287.741899996995926, 258286.410300001502037 ], [ 362265.985799998044968, 258284.543400000780821 ], [ 362244.299900002777576, 258274.444600000977516 ], [ 362242.597000002861023, 258326.913800001144409 ], [ 362246.281999997794628, 258325.756499998271465 ], [ 362281.070200003683567, 258312.320199999958277 ], [ 362285.116200000047684, 258310.664500001817942 ], [ 362289.968400001525879, 258309.015500001609325 ], [ 362317.37219999730587, 258310.506299998611212 ], [ 362324.625500001013279, 258310.987900000065565 ], [ 362327.0641999989748, 258308.6858000010252 ], [ 362328.828299999237061, 258289.686000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004053500", "MAP": "D9-2507-T85", "PARCEL_NAM": "1B1-B REM", "ACRE": null, "LONGITUDE": -64.9038155, "LATITUDE": 18.3556243, "OBJECTID_1": 6316, "PARCEL_NO_": "103004053500", "Tax_Legal_": "1B1-B REM.ESTATE WINTBERG 3 GREAT NORTHSIDE QTR", "Name": "RICHARDS, WINGROVE", "Address": "PO Box 301881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.24189378299999, "SHAPE_Area": 1544.6271323399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361656.894100002944469, 258507.117199998348951 ], [ 361668.195100001990795, 258505.73200000077486 ], [ 361672.447200000286102, 258462.396099999547005 ], [ 361639.673100002110004, 258459.093100000172853 ], [ 361632.436599999666214, 258493.170400001108646 ], [ 361647.516099996864796, 258507.907200001180172 ], [ 361650.823399998247623, 258508.039500001817942 ], [ 361656.894100002944469, 258507.117199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017800", "MAP": "D9-6663-T99", "PARCEL_NAM": "1B1-A2", "ACRE": null, "LONGITUDE": -64.90403753, "LATITUDE": 18.35555012, "OBJECTID_1": 6053, "PARCEL_NO_": "103004017800", "Tax_Legal_": "1B1-A REM & 1B1-B2 WINTBERG NO. GREAT NORTHSIDE QUARTER", "Name": "PHILLIP, CARL", "Address": "PO Box 306221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.931500446200005, "SHAPE_Area": 428.89746072100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361618.579300001263618, 258486.229800000786781 ], [ 361632.436599999666214, 258493.170400001108646 ], [ 361639.673100002110004, 258459.093100000172853 ], [ 361629.674300000071526, 258456.058299999684095 ], [ 361618.579300001263618, 258486.229800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004053400", "MAP": "D9-6555-T99", "PARCEL_NAM": "1B1-B1", "ACRE": ".251", "LONGITUDE": -64.90375718, "LATITUDE": 18.35523829, "OBJECTID_1": 6315, "PARCEL_NO_": "103004053400", "Tax_Legal_": "1B1-B1 ESTATE WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "RICHARDS, MONIQUE", "Address": "PO Box 301881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.503367467, "SHAPE_Area": 1306.6878887 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361639.673100002110004, 258459.093100000172853 ], [ 361672.447200000286102, 258462.396099999547005 ], [ 361673.493299998342991, 258451.735399998724461 ], [ 361678.611699998378754, 258418.846700001507998 ], [ 361647.959200002253056, 258420.073499999940395 ], [ 361639.673100002110004, 258459.093100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052500", "MAP": "D9-6555-T99", "PARCEL_NAM": "1B1-A1", "ACRE": ".250", "LONGITUDE": -64.90403958, "LATITUDE": 18.35522464, "OBJECTID_1": 6306, "PARCEL_NO_": "103004052500", "Tax_Legal_": "WINTBERG 1B1-A1 GT. NORTHSIDE QRT #3", "Name": "JOSEPH, CARLA", "Address": "PO Box 502661", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 33500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.487492567, "SHAPE_Area": 999.97440546899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361629.674300000071526, 258456.058299999684095 ], [ 361639.673100002110004, 258459.093100000172853 ], [ 361647.959200002253056, 258420.073499999940395 ], [ 361642.823499999940395, 258420.300299998372793 ], [ 361623.75900000333786, 258421.142000000923872 ], [ 361611.480899997055531, 258442.573100000619888 ], [ 361607.337300002574921, 258449.2787000015378 ], [ 361629.674300000071526, 258456.058299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004011700", "MAP": "D9-7905-T007", "PARCEL_NAM": "2D-5", "ACRE": ".36", "LONGITUDE": -64.90030073, "LATITUDE": 18.35525068, "OBJECTID_1": 5953, "PARCEL_NO_": "103004011700", "Tax_Legal_": "2D-5 & 2D-A ROW ESTATE MANDAHL NO.1 GREAT NORTHSIDE QUARTER", "Name": "QUETEL, LEO", "Address": "13A-1 ESTATE MANDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.152355414, "SHAPE_Area": 1814.28587834 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362009.528599999845028, 258412.2511 ], [ 362002.902800001204014, 258454.543600000441074 ], [ 362037.133699998259544, 258476.221200000494719 ], [ 362046.681100003421307, 258470.621800001710653 ], [ 362042.865299999713898, 258445.259399998933077 ], [ 362040.60639999806881, 258426.453499998897314 ], [ 362009.528599999845028, 258412.2511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004025500", "MAP": "D9-7905-T007", "PARCEL_NAM": "2D REM", "ACRE": ".662", "LONGITUDE": -64.90043277, "LATITUDE": 18.3546639, "OBJECTID_1": 6127, "PARCEL_NO_": "103004025500", "Tax_Legal_": "2D REMAINDER ESTATE MANDAHL NO. 1 GREAT NORTHSIDE QUARTER", "Name": "QUERRARD, TEX", "Address": "6473 # 2D Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69000, "Improved_V": 47000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.860381268, "SHAPE_Area": 2557.31535536 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361962.224299997091293, 258351.084899999201298 ], [ 361977.670100003480911, 258356.979299999773502 ], [ 361989.100100003182888, 258362.853000000119209 ], [ 361991.640100002288818, 258364.916799999773502 ], [ 361992.910099998116493, 258366.662999998778105 ], [ 361988.30629999935627, 258390.157999999821186 ], [ 361987.988799996674061, 258391.90430000051856 ], [ 361988.147600002586842, 258393.967999998480082 ], [ 361988.782600000500679, 258395.396800000220537 ], [ 362028.946299999952316, 258414.923000000417233 ], [ 362031.010099999606609, 258415.081799998879433 ], [ 362032.280100002884865, 258414.764299999922514 ], [ 362034.026299998164177, 258412.541799999773502 ], [ 362039.295800000429153, 258414.619199998676777 ], [ 362038.360100001096725, 258406.170200001448393 ], [ 362035.337999999523163, 258382.291900001466274 ], [ 362025.92119999974966, 258351.817299999296665 ], [ 361962.224299997091293, 258351.084899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004011900", "MAP": "D9-239-T56", "PARCEL_NAM": "4A", "ACRE": null, "LONGITUDE": -64.90013557, "LATITUDE": 18.3542481, "OBJECTID_1": 5955, "PARCEL_NO_": "103004011900", "Tax_Legal_": "MANDAHL 4A GREAT NORTHSIDE QTR", "Name": "LEDEE, RITA S. & MARIO S", "Address": "PO Box 8262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65300, "Improved_V": 251200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.35421307500002, "SHAPE_Area": 2570.56179952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361962.224299997091293, 258351.084899999201298 ], [ 362025.92119999974966, 258351.817299999296665 ], [ 362063.816100001335144, 258352.338599998503923 ], [ 362074.157899998128414, 258368.8885000012815 ], [ 362071.949400000274181, 258344.172499999403954 ], [ 362075.492899999022484, 258306.837900001555681 ], [ 362075.626000002026558, 258291.218100000172853 ], [ 362073.223200000822544, 258289.298599999397993 ], [ 362069.990800000727177, 258290.116500001400709 ], [ 362059.372000001370907, 258306.072700001299381 ], [ 362052.046899996697903, 258314.034299999475479 ], [ 362043.92620000243187, 258320.722800001502037 ], [ 362031.772200003266335, 258327.589400000870228 ], [ 362004.253300003707409, 258339.607599999755621 ], [ 361986.462300002574921, 258345.583700001239777 ], [ 361973.534299999475479, 258348.644299998879433 ], [ 361963.053999997675419, 258348.347500000149012 ], [ 361962.224299997091293, 258351.084899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004025600", "MAP": "D9-7905-T007", "PARCEL_NAM": "2D-4", "ACRE": ".25", "LONGITUDE": -64.90060658, "LATITUDE": 18.35508313, "OBJECTID_1": 6128, "PARCEL_NO_": "103004025600", "Tax_Legal_": "2D-4 ESTATE MANDAHL NO. 1 GREAT NORTHSIDE QUARTER", "Name": "BARON, HENRY", "Address": "2D Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.70357049699999, "SHAPE_Area": 1181.7142929900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362002.902800001204014, 258454.543600000441074 ], [ 362009.528599999845028, 258412.2511 ], [ 361981.322999998927116, 258399.361200001090765 ], [ 361976.803400002419949, 258438.174800001084805 ], [ 361991.241499997675419, 258447.158900000154972 ], [ 362002.902800001204014, 258454.543600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042400", "MAP": "D9-9169-T017", "PARCEL_NAM": "REM 365", "ACRE": "0.35", "LONGITUDE": -64.90439585, "LATITUDE": 18.35220791, "OBJECTID_1": 6234, "PARCEL_NO_": "103004042400", "Tax_Legal_": "365 REM. WINTBERG No. 3 GREAT NORTHSIDE QTR", "Name": "GARCIA, MICHAEL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.337881896, "SHAPE_Area": 1117.3971074599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361607.813400000333786, 258125.787999998778105 ], [ 361610.769100002944469, 258086.791999999433756 ], [ 361580.665500000119209, 258084.306200001388788 ], [ 361580.098700001835823, 258089.499600000679493 ], [ 361578.321299999952316, 258105.786100000143051 ], [ 361578.223999999463558, 258106.677700001746416 ], [ 361578.230700001120567, 258106.677400000393391 ], [ 361585.24210000038147, 258109.984700001776218 ], [ 361582.067100003361702, 258124.536800000816584 ], [ 361582.072999998927116, 258124.636700000613928 ], [ 361583.484200000762939, 258124.699799999594688 ], [ 361607.813400000333786, 258125.787999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017200", "MAP": "D9-5577-T93", "PARCEL_NAM": "1A-1", "ACRE": null, "LONGITUDE": -64.90222377000001, "LATITUDE": 18.35519543, "OBJECTID_1": 6047, "PARCEL_NO_": "103004017200", "Tax_Legal_": "1A-1 ESTATE WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "WINSTON LEDEE TRUST", "Address": "PO Box 11113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69700, "Improved_V": 344500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.62484309800001, "SHAPE_Area": 1961.5390978299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361848.084299996495247, 258410.039599999785423 ], [ 361844.785800002515316, 258411.551899999380112 ], [ 361809.96509999781847, 258428.78770000115037 ], [ 361784.969400003552437, 258428.583099998533726 ], [ 361781.587700001895428, 258446.9206000007689 ], [ 361780.741800002753735, 258451.557700000703335 ], [ 361806.581600002944469, 258447.336300000548363 ], [ 361824.237700000405312, 258457.191100001335144 ], [ 361853.338699996471405, 258448.774399999529123 ], [ 361851.056400001049042, 258432.712600000202656 ], [ 361848.084299996495247, 258410.039599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004020300", "MAP": "D9-7455-T004", "PARCEL_NAM": "1-57", "ACRE": ".545", "LONGITUDE": -64.90750932, "LATITUDE": 18.3512827, "OBJECTID_1": 6076, "PARCEL_NO_": "103004020300", "Tax_Legal_": "WINTBERG 1-57 3 GR NORTHSIDE", "Name": "CALLWOOD, FRANCIS E.", "Address": "PO BOX 12126", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 173200, "Improved_V": 116200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.59789247000001, "SHAPE_Area": 2895.1498877099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361285.207000002264977, 258034.5608000010252 ], [ 361288.358900003135204, 258036.739799998700619 ], [ 361292.437200002372265, 258031.284699998795986 ], [ 361304.666799999773502, 258015.552799999713898 ], [ 361281.670299999415874, 257969.979400001466274 ], [ 361273.578400000929832, 257973.290699999779463 ], [ 361262.264899998903275, 257976.153400000184774 ], [ 361250.963899999856949, 257977.538600001484156 ], [ 361235.647600002586842, 257976.99100000038743 ], [ 361230.706600002944469, 257976.013300001621246 ], [ 361221.234499998390675, 258004.116700001060963 ], [ 361251.528200000524521, 258006.608399998396635 ], [ 361285.207000002264977, 258034.5608000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004020100", "MAP": "F9-1375-T64", "PARCEL_NAM": "1-44", "ACRE": null, "LONGITUDE": -64.90768376, "LATITUDE": 18.3515753, "OBJECTID_1": 6074, "PARCEL_NO_": "103004020100", "Tax_Legal_": "WINTBERG 1-44 GR NORTHSIDE", "Name": "BUCHANAN, JOHN & PATRICIA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42000, "Improved_V": 177400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.32863787599999, "SHAPE_Area": 2520.0966677400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361285.207000002264977, 258034.5608000010252 ], [ 361251.528200000524521, 258006.608399998396635 ], [ 361221.234499998390675, 258004.116700001060963 ], [ 361213.288099996745586, 258027.69310000166297 ], [ 361225.443199999630451, 258038.969000000506639 ], [ 361239.863300003111362, 258050.063900001347065 ], [ 361254.276199996471405, 258062.003100000321865 ], [ 361260.690800003707409, 258066.277499999850988 ], [ 361285.207000002264977, 258034.5608000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034300", "MAP": "D9-7533-T005", "PARCEL_NAM": "1-143-33", "ACRE": ".308", "LONGITUDE": -64.90805132, "LATITUDE": 18.34826242, "OBJECTID_1": 5839, "PARCEL_NO_": "103003034300", "Tax_Legal_": "1-143-33 ESTATE WINTBERG 3 GR NORTHSIDE QTR", "Name": "HEYLIGER, SEDRIC", "Address": "PO Box 303311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32800, "Improved_V": 298600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.55462452200001, "SHAPE_Area": 1570.07829711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361205.256499998271465, 257639.375599998980761 ], [ 361203.007399998605251, 257643.618299998342991 ], [ 361187.453699998557568, 257670.933100000023842 ], [ 361211.450699999928474, 257693.716499999165535 ], [ 361220.384800001978874, 257686.19029999896884 ], [ 361226.093699999153614, 257678.637699998915195 ], [ 361230.218800000846386, 257667.694600000977516 ], [ 361233.560900002717972, 257654.000799998641014 ], [ 361235.204099997878075, 257650.425700001418591 ], [ 361236.041000001132488, 257646.843899998813868 ], [ 361205.256499998271465, 257639.375599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003031900", "MAP": "D9-7533-T005", "PARCEL_NAM": "1-142-3 REM", "ACRE": ".249", "LONGITUDE": -64.90829293, "LATITUDE": 18.34811703, "OBJECTID_1": 5815, "PARCEL_NO_": "103003031900", "Tax_Legal_": "WINTBERG 1-142-3REM. & 1-142-4A GT. NORTHSIDE QRT", "Name": "HEYLIGER, SEDRIC & BERNICE T", "Address": "PO Box 303311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.48254108899999, "SHAPE_Area": 709.25070637199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361198.219899997115135, 257637.668499998748302 ], [ 361193.392800003290176, 257636.362399999052286 ], [ 361185.381800003349781, 257630.17509999871254 ], [ 361175.621500000357628, 257640.016600001603365 ], [ 361169.131499998271465, 257644.607599999755621 ], [ 361187.453699998557568, 257670.933100000023842 ], [ 361203.007399998605251, 257643.618299998342991 ], [ 361205.256499998271465, 257639.375599998980761 ], [ 361198.219899997115135, 257637.668499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003036900", "MAP": "F9-1379-T64", "PARCEL_NAM": "1-53", "ACRE": null, "LONGITUDE": -64.90814783, "LATITUDE": 18.35121517, "OBJECTID_1": 5865, "PARCEL_NO_": "103003036900", "Tax_Legal_": "WINTBERG 1-53 GR NORTHSIDE QTR", "Name": "GIBSON, MELINDA", "Address": "Bovoni #16", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.84464214900001, "SHAPE_Area": 2250.9969907200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361213.288099996745586, 258027.69310000166297 ], [ 361230.706600002944469, 257976.013300001621246 ], [ 361197.811999998986721, 257969.504200000315905 ], [ 361186.548799999058247, 257966.456700000911951 ], [ 361180.963699996471405, 257963.694699998944998 ], [ 361164.571199998259544, 257993.499299999326468 ], [ 361170.973600000143051, 257996.304499998688698 ], [ 361182.202600002288818, 258003.362500000745058 ], [ 361199.04169999808073, 258014.477200001478195 ], [ 361213.288099996745586, 258027.69310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004016400", "MAP": "D9-7582-T005", "PARCEL_NAM": "1B4 REM", "ACRE": "1.05", "LONGITUDE": -64.90306751, "LATITUDE": 18.35470237, "OBJECTID_1": 6039, "PARCEL_NO_": "103004016400", "Tax_Legal_": "1B4 REM ESTATE WINTBERG NO.3 GT NORTHSIDE QTR", "Name": "APS & ASSOCIATES LLC", "Address": "PO Box 9474", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 253200, "Improved_V": 1140900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.68816797900001, "SHAPE_Area": 5302.9114058100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361789.882600001990795, 258356.098299998790026 ], [ 361721.549999997019768, 258359.602600000798702 ], [ 361689.378100000321865, 258345.06810000166297 ], [ 361688.895199999213219, 258347.581300001591444 ], [ 361678.818499997258186, 258394.572700001299381 ], [ 361678.793300002813339, 258397.527800001204014 ], [ 361680.364500001072884, 258402.395799998193979 ], [ 361682.767300002276897, 258404.31529999896884 ], [ 361698.88459999859333, 258405.502700001001358 ], [ 361777.85639999806881, 258411.63740000128746 ], [ 361789.605099998414516, 258357.693599998950958 ], [ 361789.882600001990795, 258356.098299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004054800", "MAP": "D9-5483-T93", "PARCEL_NAM": "1B4-F", "ACRE": ".17", "LONGITUDE": -64.90331032, "LATITUDE": 18.35436632, "OBJECTID_1": 6326, "PARCEL_NO_": "103004054800", "Tax_Legal_": "WINTBERG 1B4-F GR NORTHSIDE", "Name": "APS & ASSOCIATES LLC", "Address": "PO Box 9474", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.31570442100001, "SHAPE_Area": 575.56473205099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361721.549999997019768, 258359.602600000798702 ], [ 361725.0996999964118, 258337.212499998509884 ], [ 361712.93860000371933, 258338.833999998867512 ], [ 361692.313500002026558, 258329.79280000180006 ], [ 361689.378100000321865, 258345.06810000166297 ], [ 361721.549999997019768, 258359.602600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004054900", "MAP": "D9-5483-T93", "PARCEL_NAM": "1B4-G", "ACRE": ".17", "LONGITUDE": -64.90301167, "LATITUDE": 18.35438694, "OBJECTID_1": 6327, "PARCEL_NO_": "103004054900", "Tax_Legal_": "1B4-G ESTATE WINTBERG #3 GREAT NORTHSIDE QTR.", "Name": "APS & ASSOCIATES LLC", "Address": "PO Box 9474", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.63962524900001, "SHAPE_Area": 734.72399041899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361752.108900003135204, 258358.035399999469519 ], [ 361757.477300003170967, 258332.895500000566244 ], [ 361725.0996999964118, 258337.212499998509884 ], [ 361721.549999997019768, 258359.602600000798702 ], [ 361752.108900003135204, 258358.035399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004054500", "MAP": "D9-5483-T93", "PARCEL_NAM": "1B4-H", "ACRE": ".16", "LONGITUDE": -64.90268499, "LATITUDE": 18.35435669, "OBJECTID_1": 6324, "PARCEL_NO_": "103004054500", "Tax_Legal_": "1B4-H ESTATE WINTBERG #3 GREAT NORTHSIDE QTR.", "Name": "APS AND ASSOCIATES LLC", "Address": "PO Box 9474", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.76677511400001, "SHAPE_Area": 983.016807083 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361757.477300003170967, 258332.895500000566244 ], [ 361752.108900003135204, 258358.035399999469519 ], [ 361789.882600001990795, 258356.098299998790026 ], [ 361794.7837999984622, 258327.921300001442432 ], [ 361757.477300003170967, 258332.895500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004019700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90306764, "LATITUDE": 18.35500396, "OBJECTID_1": 6071, "PARCEL_NO_": "103004019700", "Tax_Legal_": "WINTBEGR 1B2-C2 GREAT NORTHSIDE", "Name": "WILLIAMS, MARSHA J.", "Address": "PO Box 10349", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27100, "Improved_V": 303200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.57740883899999, "SHAPE_Area": 979.030335186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361777.85639999806881, 258411.63740000128746 ], [ 361698.88459999859333, 258405.502700001001358 ], [ 361682.767300002276897, 258404.31529999896884 ], [ 361677.870099999010563, 258411.241300001740456 ], [ 361698.841399997472763, 258410.568599998950958 ], [ 361706.100000001490116, 258410.416900001466274 ], [ 361714.143399998545647, 258412.804699998348951 ], [ 361720.561499997973442, 258416.656899999827147 ], [ 361722.967799998819828, 258418.15430000051856 ], [ 361729.3716000020504, 258423.695099998265505 ], [ 361730.968000002205372, 258425.607999999076128 ], [ 361734.940200001001358, 258432.606600001454353 ], [ 361777.85639999806881, 258411.63740000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037100", "MAP": "D9-7931-T007", "PARCEL_NAM": "305-REM", "ACRE": ".485", "LONGITUDE": -64.90036249000001, "LATITUDE": 18.34913582, "OBJECTID_1": 6191, "PARCEL_NO_": "103004037100", "Tax_Legal_": "WINTBERG 305 REMAINDER GREAT NORTHSIDE QUARTER", "Name": "FLOWERS, ADAM & TESS RICHARDS", "Address": "PO Box 396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.58823503799999, "SHAPE_Area": 1688.2717473600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362046.787399999797344, 257759.2837999984622 ], [ 362023.8108000010252, 257737.464400000870228 ], [ 361997.8074000030756, 257771.079900000244379 ], [ 362000.122100003063679, 257783.342300001531839 ], [ 362041.175700001418591, 257791.69990000128746 ], [ 362047.062600001692772, 257763.250399999320507 ], [ 362046.787399999797344, 257759.2837999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017100", "MAP": "D9-8391-T010", "PARCEL_NAM": "1B4-B-A", "ACRE": ".01", "LONGITUDE": -64.90285514, "LATITUDE": 18.35396478, "OBJECTID_1": 6046, "PARCEL_NO_": "103004017100", "Tax_Legal_": "1B4-B REM WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "BOURDEAU, ALIX", "Address": "P.O. BOX 3751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20900, "Improved_V": 224500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.563539069300006, "SHAPE_Area": 97.884457707600006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361751.382700003683567, 258324.318599998950958 ], [ 361756.819099999964237, 258309.550799999386072 ], [ 361759.667599998414516, 258281.608899999409914 ], [ 361762.494300000369549, 258279.505300000309944 ], [ 361758.153099998831749, 258279.983399998396635 ], [ 361751.382700003683567, 258324.318599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017100", "MAP": "D9-8391-T010", "PARCEL_NAM": "1B4-B REM", "ACRE": ".19", "LONGITUDE": -64.90274796, "LATITUDE": 18.35397088, "OBJECTID_1": 6046, "PARCEL_NO_": "103004017100", "Tax_Legal_": "1B4-B REM WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "BOURDEAU, ALIX", "Address": "P.O. BOX 3751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20900, "Improved_V": 224500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.40344542299999, "SHAPE_Area": 924.38350734599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361762.494300000369549, 258279.505300000309944 ], [ 361759.667599998414516, 258281.608899999409914 ], [ 361756.819099999964237, 258309.550799999386072 ], [ 361751.382700003683567, 258324.318599998950958 ], [ 361756.833999998867512, 258323.650499999523163 ], [ 361775.400799997150898, 258321.269299998879433 ], [ 361781.415399998426437, 258277.833299998193979 ], [ 361763.6621999964118, 258279.3766999989748 ], [ 361762.494300000369549, 258279.505300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004041900", "MAP": "D9-8401-T010", "PARCEL_NAM": "370", "ACRE": ".704", "LONGITUDE": -64.90247755, "LATITUDE": 18.35281803, "OBJECTID_1": 6229, "PARCEL_NO_": "103004041900", "Tax_Legal_": "WINTBERG 370 GT. NORTHSIDE", "Name": "HAMILTON, CHARLES A and DAISY CATIA", "Address": "PO Box 302463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.616898429, "SHAPE_Area": 2058.3197483399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361816.424199998378754, 258143.86430000141263 ], [ 361796.235799998044968, 258147.287599999457598 ], [ 361797.015100002288818, 258150.460400000214577 ], [ 361796.171099998056889, 258154.886500000953674 ], [ 361793.723399996757507, 258158.243900001049042 ], [ 361788.865699999034405, 258160.526200000196695 ], [ 361782.422399997711182, 258159.629099998623133 ], [ 361778.423199996352196, 258155.796700000762939 ], [ 361770.367299996316433, 258154.886399999260902 ], [ 361775.631999999284744, 258199.470199998468161 ], [ 361785.322200000286102, 258197.860800001770258 ], [ 361822.466499999165535, 258191.831999998539686 ], [ 361816.424199998378754, 258143.86430000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004031400", "MAP": "D9-8367-T009", "PARCEL_NAM": "3F", "ACRE": "2.019", "LONGITUDE": -64.90108673, "LATITUDE": 18.35260684, "OBJECTID_1": 6139, "PARCEL_NO_": "103004031400", "Tax_Legal_": "3 ESTATE MANDAHL GREAT NORTHSIDE QTR", "Name": "BRYAN, EDMUND & EDWARD", "Address": "LERKENLUND 7E-1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 311400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 613.82785105899995, "SHAPE_Area": 8976.2905372299992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361972.694600000977516, 258235.788899999111891 ], [ 361980.6199000030756, 258084.835400000214577 ], [ 361981.51070000231266, 258074.921300001442432 ], [ 361946.146300002932549, 258061.332899998873472 ], [ 361905.122000001370907, 258045.621100001037121 ], [ 361939.597599998116493, 258133.886500000953674 ], [ 361939.569600000977516, 258137.234900001436472 ], [ 361936.857799999415874, 258139.221400000154972 ], [ 361932.880800001323223, 258141.704900000244379 ], [ 361954.955200001597404, 258146.849300000816584 ], [ 361959.453100003302097, 258149.759700000286102 ], [ 361964.480200000107288, 258153.463899999856949 ], [ 361967.390600003302097, 258157.697200000286102 ], [ 361968.449000000953674, 258162.195199999958277 ], [ 361968.978100001811981, 258168.545200001448393 ], [ 361966.86150000244379, 258171.720199998468161 ], [ 361963.951099999248981, 258176.218100000172853 ], [ 361956.278099998831749, 258179.657699998468161 ], [ 361907.065600000321865, 258188.653499998152256 ], [ 361878.937100000679493, 258188.916700001806021 ], [ 361916.167099997401237, 258238.505199998617172 ], [ 361972.694600000977516, 258235.788899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034200", "MAP": "F9-2168-T68", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.90907968, "LATITUDE": 18.34823656, "OBJECTID_1": 5838, "PARCEL_NO_": "103003034200", "Tax_Legal_": "WINTBERG 1-31 GREAT NORTHSIDE", "Name": "THOMAS, ARTHURLYN & KENRICK", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57500, "Improved_V": 298700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.25431215399999, "SHAPE_Area": 570.12942139799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361124.717299997806549, 257648.104499999433756 ], [ 361094.328599996864796, 257650.355500001460314 ], [ 361084.380199998617172, 257655.012099999934435 ], [ 361095.386900000274181, 257660.303800001740456 ], [ 361095.386900000274181, 257663.902100000530481 ], [ 361094.540200002491474, 257670.463799998164177 ], [ 361093.270199999213219, 257673.638799998909235 ], [ 361089.460199996829033, 257675.332100000232458 ], [ 361089.036899998784065, 257678.295499999076128 ], [ 361089.036899998784065, 257680.623799998313189 ], [ 361090.941899999976158, 257681.682100001722574 ], [ 361093.058600001037121, 257682.952100001275539 ], [ 361092.821800000965595, 257685.320199999958277 ], [ 361097.836099997162819, 257683.920699998736382 ], [ 361099.497299998998642, 257678.2347999997437 ], [ 361100.336000002920628, 257674.44200000166893 ], [ 361101.162100002169609, 257672.1266999989748 ], [ 361102.80349999666214, 257668.762699998915195 ], [ 361105.254799999296665, 257664.982999999076128 ], [ 361110.14299999922514, 257659.112399999052286 ], [ 361114.196099996566772, 257656.612500000745058 ], [ 361122.284400001168251, 257653.723400000482798 ], [ 361136.801700003445148, 257653.420000001788139 ], [ 361124.717299997806549, 257648.104499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034200", "MAP": "D9-7979-T007", "PARCEL_NAM": "1-31B", "ACRE": ".236", "LONGITUDE": -64.90962323, "LATITUDE": 18.34810466, "OBJECTID_1": 5838, "PARCEL_NO_": "103003034200", "Tax_Legal_": "WINTBERG 1-31 GREAT NORTHSIDE", "Name": "THOMAS, ARTHURLYN & KENRICK", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57500, "Improved_V": 298700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.93504223599999, "SHAPE_Area": 1512.7447319299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361021.931400001049042, 257638.160300001502037 ], [ 361023.53999999910593, 257654.929900001734495 ], [ 361024.646899998188019, 257661.579100001603365 ], [ 361028.875, 257677.973200000822544 ], [ 361078.665200002491474, 257632.363800000399351 ], [ 361085.394400000572205, 257633.325100000947714 ], [ 361084.565800003707409, 257632.516399998217821 ], [ 361083.78999999910593, 257628.921500001102686 ], [ 361083.820299997925758, 257625.363699998706579 ], [ 361053.159100003540516, 257627.615299999713898 ], [ 361021.931400001049042, 257638.160300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033800", "MAP": "D9-7979-T007", "PARCEL_NAM": "1-143-37 REM", "ACRE": ".231", "LONGITUDE": -64.90940971000001, "LATITUDE": 18.34841687, "OBJECTID_1": 5834, "PARCEL_NO_": "103003033800", "Tax_Legal_": "WINTBERG 1 143 37 GREAT NORTHSIDE QTR", "Name": "THOMAS, ARTHURLYN C", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49600, "Improved_V": 572300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.87312782000001, "SHAPE_Area": 1201.1079394400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361087.834899999201298, 257656.673099998384714 ], [ 361087.555200003087521, 257656.70549999922514 ], [ 361032.731100000441074, 257692.925000000745058 ], [ 361034.79450000077486, 257700.925500001758337 ], [ 361089.753200002014637, 257686.176600001752377 ], [ 361092.821800000965595, 257685.320199999958277 ], [ 361093.058600001037121, 257682.952100001275539 ], [ 361090.941899999976158, 257681.682100001722574 ], [ 361089.036899998784065, 257680.623799998313189 ], [ 361089.036899998784065, 257678.295499999076128 ], [ 361089.460199996829033, 257675.332100000232458 ], [ 361093.270199999213219, 257673.638799998909235 ], [ 361094.540200002491474, 257670.463799998164177 ], [ 361095.386900000274181, 257663.902100000530481 ], [ 361095.386900000274181, 257660.303800001740456 ], [ 361087.834899999201298, 257656.673099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034200", "MAP": "D9-7979-T007", "PARCEL_NAM": "1-31-REM", "ACRE": ".438", "LONGITUDE": -64.9094174, "LATITUDE": 18.34822069, "OBJECTID_1": 5838, "PARCEL_NO_": "103003034200", "Tax_Legal_": "WINTBERG 1-31 GREAT NORTHSIDE", "Name": "THOMAS, ARTHURLYN & KENRICK", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57500, "Improved_V": 298700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.69260375499999, "SHAPE_Area": 1682.7154487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361032.731100000441074, 257692.925000000745058 ], [ 361087.555200003087521, 257656.70549999922514 ], [ 361087.834899999201298, 257656.673099998384714 ], [ 361084.380199998617172, 257655.012099999934435 ], [ 361094.328599996864796, 257650.355500001460314 ], [ 361124.717299997806549, 257648.104499999433756 ], [ 361114.307599999010563, 257643.525600001215935 ], [ 361089.364100001752377, 257637.199700001627207 ], [ 361085.394400000572205, 257633.325100000947714 ], [ 361078.665200002491474, 257632.363800000399351 ], [ 361028.875, 257677.973200000822544 ], [ 361032.731100000441074, 257692.925000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603013700", "MAP": "D9-3551-T86", "PARCEL_NAM": "24 REM", "ACRE": "1.02", "LONGITUDE": -64.89248911, "LATITUDE": 18.33455026, "OBJECTID_1": 21532, "PARCEL_NO_": "105603013700", "Tax_Legal_": "24 REM CHARLOTTE AMALIE NO.3 NEW QTR", "Name": "HARTHMAN LEASING, II LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 22225, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.76618836300003, "SHAPE_Area": 2486.9119946000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362927.097599998116493, 256134.418099999427795 ], [ 362897.560500003397465, 256144.690400000661612 ], [ 362847.81870000064373, 256156.596599999815226 ], [ 362819.585799999535084, 256151.541000001132488 ], [ 362819.3141999989748, 256183.413899999111891 ], [ 362835.454899996519089, 256181.857299998402596 ], [ 362856.458599999547005, 256177.385099999606609 ], [ 362897.690200001001358, 256164.845899999141693 ], [ 362931.247800000011921, 256153.102899998426437 ], [ 362927.490599997341633, 256144.183200001716614 ], [ 362927.097599998116493, 256134.418099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203015400", "MAP": "C9-133-T72", "PARCEL_NAM": "5-12", "ACRE": ".29", "LONGITUDE": -64.87908508, "LATITUDE": 18.34824532, "OBJECTID_1": 6993, "PARCEL_NO_": "103203015400", "Tax_Legal_": "TABOR & HARMONY 5-12 EAST END QTR.", "Name": "LEWIS, RONALD & JACQUELINE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34800, "Improved_V": 466700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.35413823799999, "SHAPE_Area": 1365.04414221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364268.435199998319149, 257719.38230000063777 ], [ 364278.414099998772144, 257706.911499999463558 ], [ 364284.429899998009205, 257697.813400000333786 ], [ 364289.310699999332428, 257682.507699999958277 ], [ 364293.800899997353554, 257645.694699998944998 ], [ 364284.854099996387959, 257654.698499999940395 ], [ 364278.346100002527237, 257661.400199998170137 ], [ 364276.657899998128414, 257670.252300001680851 ], [ 364275.038099996745586, 257671.083399999886751 ], [ 364269.347199998795986, 257676.525299999862909 ], [ 364248.951999999582767, 257704.222699999809265 ], [ 364247.492399998009205, 257706.136399999260902 ], [ 364268.435199998319149, 257719.38230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203023400", "MAP": "D9-7850-T006", "PARCEL_NAM": "53-27H", "ACRE": ".23", "LONGITUDE": -64.87847679, "LATITUDE": 18.34791294, "OBJECTID_1": 7034, "PARCEL_NO_": "103203023400", "Tax_Legal_": "53-27H ESTATE FRYDENDAL NO.4 EAST END QTR", "Name": "LETTSOME, GWEN A.", "Address": "PO Box 304663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41100, "Improved_V": 38900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.394855221, "SHAPE_Area": 1108.4511813500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364364.449299998581409, 257654.326200000941753 ], [ 364353.42400000244379, 257630.280499998480082 ], [ 364350.357799999415874, 257632.647599998861551 ], [ 364343.061499997973442, 257637.231899999082088 ], [ 364334.159699998795986, 257640.958700001239777 ], [ 364326.883100003004074, 257643.221200000494719 ], [ 364318.346199996769428, 257644.571600001305342 ], [ 364316.603200003504753, 257673.508699998259544 ], [ 364364.449299998581409, 257654.326200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025900", "MAP": "D9-7850-T006", "PARCEL_NAM": "53-27D", "ACRE": ".25", "LONGITUDE": -64.87737524000001, "LATITUDE": 18.34815826, "OBJECTID_1": 7058, "PARCEL_NO_": "103203025900", "Tax_Legal_": "53-27D FRYDENDAHL EASTEND QUARTER", "Name": "LETTSOME, SAMUEL ALPEPHUS & GLORIA", "Address": "PO Box 304663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.318775604, "SHAPE_Area": 1457.1814135899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364451.590499997138977, 257645.731600001454353 ], [ 364444.563400000333786, 257676.777100000530481 ], [ 364430.020199999213219, 257708.479200001806021 ], [ 364433.56700000166893, 257709.322299998253584 ], [ 364440.022900000214577, 257708.741799999028444 ], [ 364450.539099998772144, 257704.817099999636412 ], [ 364458.64360000193119, 257700.028299998492002 ], [ 364465.140799999237061, 257694.592999998480082 ], [ 364471.65429999679327, 257687.258099999278784 ], [ 364474.143299996852875, 257679.045800000429153 ], [ 364473.419799998402596, 257669.329599998891354 ], [ 364463.878899998962879, 257653.41950000077486 ], [ 364458.276000000536442, 257648.518500000238419 ], [ 364451.590499997138977, 257645.731600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025600", "MAP": "D9-7850-T006", "PARCEL_NAM": "53-27A", "ACRE": ".25", "LONGITUDE": -64.87846391, "LATITUDE": 18.3481319, "OBJECTID_1": 7055, "PARCEL_NO_": "103203025600", "Tax_Legal_": "FRYDENDAHL 53-27A EASTEND QUARTER", "Name": "LETTSOME, GLENDA", "Address": "PO Box 304663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.545479946, "SHAPE_Area": 1123.6648468599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364364.820100001990795, 257681.739599999040365 ], [ 364361.826399996876717, 257655.37779999896884 ], [ 364316.603200003504753, 257673.508699998259544 ], [ 364315.01799999922514, 257699.8277000002563 ], [ 364329.700099997222424, 257691.162500001490116 ], [ 364348.31360000371933, 257683.293299999088049 ], [ 364356.391199998557568, 257681.6706000007689 ], [ 364364.820100001990795, 257681.739599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025700", "MAP": "D9-7850-T006", "PARCEL_NAM": "53-27B", "ACRE": ".25", "LONGITUDE": -64.87806889, "LATITUDE": 18.34807009, "OBJECTID_1": 7056, "PARCEL_NO_": "103203025700", "Tax_Legal_": "FRYDENDAHL 53-27B EASTEND QUARTER", "Name": "LETTSOME COLLINS, LINDA ELAINE", "Address": "PO Box 304663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.86455107899999, "SHAPE_Area": 1017.67187653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364393.02759999781847, 257688.91330000013113 ], [ 364403.749899998307228, 257659.055799998342991 ], [ 364364.449299998581409, 257654.326200000941753 ], [ 364361.826399996876717, 257655.37779999896884 ], [ 364364.820100001990795, 257681.739599999040365 ], [ 364365.260600000619888, 257681.743200000375509 ], [ 364384.579700000584126, 257685.7010000012815 ], [ 364393.02759999781847, 257688.91330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701023200", "MAP": "D9-7850-T006", "PARCEL_NAM": "53-27G", "ACRE": ".24", "LONGITUDE": -64.87813373, "LATITUDE": 18.34776084, "OBJECTID_1": 21942, "PARCEL_NO_": "105701023200", "Tax_Legal_": "FRYDENDAHL 53-27G EASTEND QUARTER", "Name": "LETTSOME, SAMUEL ALPEPHUS & GLORIA", "Address": "PO Box 304663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16200, "Improved_V": 238500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.58804135099999, "SHAPE_Area": 1111.4762849900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364380.768799997866154, 257656.290199998766184 ], [ 364397.855999998748302, 257626.46169999986887 ], [ 364394.773400001227856, 257624.989500001072884 ], [ 364375.499200001358986, 257615.754799999296665 ], [ 364365.780299998819828, 257620.741500001400709 ], [ 364353.42400000244379, 257630.280499998480082 ], [ 364364.449299998581409, 257654.326200000941753 ], [ 364380.768799997866154, 257656.290199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701023100", "MAP": "D9-7850-T006", "PARCEL_NAM": "53-27F", "ACRE": ".23", "LONGITUDE": -64.87790473, "LATITUDE": 18.34784019, "OBJECTID_1": 21941, "PARCEL_NO_": "105701023100", "Tax_Legal_": "FRYDENDAHL 53-27F EASTEND QUARTER", "Name": "LETTSOME, CYNTHIA PATRICIA", "Address": "PO Box 12361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.22871420600001, "SHAPE_Area": 638.09731583200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364405.687899999320507, 257659.289000000804663 ], [ 364414.41499999910593, 257634.369500000029802 ], [ 364397.855999998748302, 257626.46169999986887 ], [ 364380.768799997866154, 257656.290199998766184 ], [ 364405.687899999320507, 257659.289000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025800", "MAP": "D9-7850-T006", "PARCEL_NAM": "53-27C", "ACRE": ".25", "LONGITUDE": -64.87771829, "LATITUDE": 18.34818633, "OBJECTID_1": 7057, "PARCEL_NO_": "103203025800", "Tax_Legal_": "FRYDENDAHL 53-27C EASTEND QUARTER", "Name": "LETTSOME, ALPHEUS", "Address": "PO Box 304663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.23139545000001, "SHAPE_Area": 1433.8197003400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364403.749899998307228, 257659.055799998342991 ], [ 364393.02759999781847, 257688.91330000013113 ], [ 364394.224899999797344, 257689.368599999696016 ], [ 364408.682800002396107, 257696.030799999833107 ], [ 364427.129100002348423, 257707.791900001466274 ], [ 364430.020199999213219, 257708.479200001806021 ], [ 364444.563400000333786, 257676.777100000530481 ], [ 364405.687899999320507, 257659.289000000804663 ], [ 364403.749899998307228, 257659.055799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701023000", "MAP": "D9-7850-T006", "PARCEL_NAM": "53-27E", "ACRE": ".23", "LONGITUDE": -64.87761607, "LATITUDE": 18.34793269, "OBJECTID_1": 21940, "PARCEL_NO_": "105701023000", "Tax_Legal_": "FRYDENDAHL 53-27E EASTEND QUARTER", "Name": "LETTSOME, TILBERT SAMUEL", "Address": "PO Box 10297", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.09393090399999, "SHAPE_Area": 1124.4848229500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364414.41499999910593, 257634.369500000029802 ], [ 364405.687899999320507, 257659.289000000804663 ], [ 364444.563400000333786, 257676.777100000530481 ], [ 364451.590499997138977, 257645.731600001454353 ], [ 364451.044399999082088, 257645.504000000655651 ], [ 364439.766800001263618, 257644.145100001245737 ], [ 364428.503600001335144, 257641.097600001841784 ], [ 364414.41499999910593, 257634.369500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107504060500", "MAP": "D9-6152-T97", "PARCEL_NAM": "17G-1", "ACRE": null, "LONGITUDE": -64.88575856, "LATITUDE": 18.31454949, "OBJECTID_1": 37858, "PARCEL_NO_": "107504060500", "Tax_Legal_": "BOVONI ESTATE 17G FRENCHMAN'S BAY QTR.", "Name": "CHARLES, PATRICK", "Address": "17G ESTATE BOVONI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 166900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 380.92802017600002, "SHAPE_Area": 7455.3308570500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363657.088200002908707, 253915.056600000709295 ], [ 363604.060099996626377, 253894.194299999624491 ], [ 363582.158399999141693, 253885.5777000002563 ], [ 363557.453900001943111, 254023.677000001072884 ], [ 363564.254799999296665, 254023.268800001591444 ], [ 363593.298199996352196, 254021.606699999421835 ], [ 363603.596199996769428, 254005.203699998557568 ], [ 363618.118299998342991, 253982.546500001102686 ], [ 363657.088200002908707, 253915.056600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019900", "MAP": "F9-3920-T57", "PARCEL_NAM": "3-97 REM", "ACRE": null, "LONGITUDE": -64.87915858, "LATITUDE": 18.32322559, "OBJECTID_1": 38575, "PARCEL_NO_": "107603019900", "Tax_Legal_": "POR.3 BOVONI/EASTERN PT. FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE RAMON", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 173700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.539204049799999, "SHAPE_Area": 62.640883285100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364291.253700003027916, 254915.493400000035763 ], [ 364278.519199997186661, 254918.224700000137091 ], [ 364299.041199997067451, 254923.661100000143051 ], [ 364293.384400002658367, 254917.728100001811981 ], [ 364291.253700003027916, 254915.493400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603019900", "MAP": "F9-3920-T57", "PARCEL_NAM": "3-97", "ACRE": ".19", "LONGITUDE": -64.87945943, "LATITUDE": 18.32305343, "OBJECTID_1": 38575, "PARCEL_NO_": "107603019900", "Tax_Legal_": "POR.3 BOVONI/EASTERN PT. FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE RAMON", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 173700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.88995942, "SHAPE_Area": 602.87234721100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364242.792900003492832, 254908.76069999858737 ], [ 364266.176700003445148, 254914.955200001597404 ], [ 364268.195000000298023, 254915.489799998700619 ], [ 364269.185400001704693, 254907.632100000977516 ], [ 364270.829300001263618, 254894.590799998492002 ], [ 364253.660300001502037, 254879.8293999992311 ], [ 364242.792900003492832, 254908.76069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004051900", "MAP": "D9-6198-T97", "PARCEL_NAM": "1B2-2", "ACRE": ".24", "LONGITUDE": -64.90306734000001, "LATITUDE": 18.35591801, "OBJECTID_1": 6301, "PARCEL_NO_": "103004051900", "Tax_Legal_": "WINTBERG 1B2-2 GT. NORTHSIDE QTR.", "Name": "DANIEL, KIRTLEY", "Address": "PO Box 9033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24200, "Improved_V": 436600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.28929888799999, "SHAPE_Area": 1137.6518011400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361757.714299999177456, 258508.138700000941753 ], [ 361704.025499999523163, 258501.392499998211861 ], [ 361700.465499997138977, 258503.885200001299381 ], [ 361690.751999996602535, 258508.238699998706579 ], [ 361719.734300002455711, 258513.753199998289347 ], [ 361718.006599999964237, 258527.249099999666214 ], [ 361751.808799996972084, 258534.914000000804663 ], [ 361756.839100003242493, 258512.368099998682737 ], [ 361757.714299999177456, 258508.138700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103030500", "MAP": "A9-121-T69", "PARCEL_NAM": "7B", "ACRE": null, "LONGITUDE": -64.89781032, "LATITUDE": 18.35097255, "OBJECTID_1": 6586, "PARCEL_NO_": "103103030500", "Tax_Legal_": "MANDAHL 7B GREAT NORTHSIDE QTR.", "Name": "QUERRARD, LOUIS C.E", "Address": "3 HC", "City": "Guaynabo", "State": "Puerto Rico", "Zip": 971, "Country": "United States", "Land_Value": 192700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 398.70559892400001, "SHAPE_Area": 9167.2658921500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362313.400700002908707, 257924.805900000035763 ], [ 362308.545199997723103, 257917.506599999964237 ], [ 362236.824400000274181, 257921.434999998658895 ], [ 362266.439300000667572, 258042.000700000673532 ], [ 362285.085199996829033, 258030.331999998539686 ], [ 362302.897799998521805, 258021.822999998927116 ], [ 362360.300599999725819, 258004.138799998909235 ], [ 362313.400700002908707, 257924.805900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103034100", "MAP": "D9-8660-T012", "PARCEL_NAM": "7B-1-1", "ACRE": ".515", "LONGITUDE": -64.89672709, "LATITUDE": 18.35067107, "OBJECTID_1": 6619, "PARCEL_NO_": "103103034100", "Tax_Legal_": "7-B-1-1 & EASEMENT (A) MANDAHL NO.1 GREAT NORTHSIDE QTR", "Name": "ASFOUR, SALAMEH", "Address": "5521 Curacao Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64300, "Improved_V": 291200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.72836715099999, "SHAPE_Area": 2569.8715612599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362380.970499999821186, 257913.539599999785423 ], [ 362393.209100000560284, 257968.686000000685453 ], [ 362381.223999999463558, 257978.826999999582767 ], [ 362385.864000000059605, 257979.298599999397993 ], [ 362388.330899998545647, 257979.319299999624491 ], [ 362392.697499997913837, 257977.769299998879433 ], [ 362397.64469999819994, 257976.22410000115633 ], [ 362400.114000000059605, 257975.956300001591444 ], [ 362402.877199999988079, 257975.258200000971556 ], [ 362406.067199997603893, 257975.573499999940395 ], [ 362408.089100003242493, 257976.74439999833703 ], [ 362409.814699999988079, 257978.634100001305342 ], [ 362411.252499997615814, 257980.232900001108646 ], [ 362412.523400001227856, 257984.426699999719858 ], [ 362412.596600003540516, 257987.60359999909997 ], [ 362413.664700001478195, 257987.265799999237061 ], [ 362426.135200001299381, 257943.249400001019239 ], [ 362436.214599996805191, 257910.513799998909235 ], [ 362380.970499999821186, 257913.539599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103033600", "MAP": "D9-8660-T012", "PARCEL_NAM": "ROW 7B-1-2", "ACRE": "1735 sq ft", "LONGITUDE": -64.89681773, "LATITUDE": 18.35103531, "OBJECTID_1": 6614, "PARCEL_NO_": "103103033600", "Tax_Legal_": "PAR 7B-1 REM, 7B-1-2 (ROW) & EASEMENT \"A\" MANDAHL 1 GREAT NORTHSIDE QTR", "Name": "EATON, CHARI & SUSAN M. MADSEN, TRUSTEES", "Address": "9053 Estate Thomas", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.297513782099998, "SHAPE_Area": 226.957875954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362381.223999999463558, 257978.826999999582767 ], [ 362378.852600000798702, 257984.721200000494719 ], [ 362384.647399999201298, 257985.923799999058247 ], [ 362389.728699997067451, 257985.67790000140667 ], [ 362394.244099996984005, 257983.696299999952316 ], [ 362400.355800002813339, 257981.728199999779463 ], [ 362404.851800002157688, 257982.054400000721216 ], [ 362406.151799999177456, 257982.786499999463558 ], [ 362407.442100003361702, 257984.672600001096725 ], [ 362407.266699999570847, 257989.288800001144409 ], [ 362412.596600003540516, 257987.60359999909997 ], [ 362412.523400001227856, 257984.426699999719858 ], [ 362411.252499997615814, 257980.232900001108646 ], [ 362409.814699999988079, 257978.634100001305342 ], [ 362408.089100003242493, 257976.74439999833703 ], [ 362406.067199997603893, 257975.573499999940395 ], [ 362402.877199999988079, 257975.258200000971556 ], [ 362400.114000000059605, 257975.956300001591444 ], [ 362397.64469999819994, 257976.22410000115633 ], [ 362392.697499997913837, 257977.769299998879433 ], [ 362388.330899998545647, 257979.319299999624491 ], [ 362385.864000000059605, 257979.298599999397993 ], [ 362381.223999999463558, 257978.826999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704050100", "MAP": null, "PARCEL_NAM": "98", "ACRE": null, "LONGITUDE": -64.87136593, "LATITUDE": 18.34078306, "OBJECTID_1": 23661, "PARCEL_NO_": "105704050100", "Tax_Legal_": "98 SMITH BAY EAST END QTR", "Name": "MULRAINE, L. & FRANCIS, P", "Address": "PO Box 502584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 350900, "Improved_V": 188900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.31035334000001, "SHAPE_Area": 474.96894404900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365097.25450000166893, 256852.014899998903275 ], [ 365092.47240000218153, 256845.431800000369549 ], [ 365089.943800002336502, 256858.287799999117851 ], [ 365089.862899996340275, 256867.786400001496077 ], [ 365089.676299996674061, 256889.685899998992682 ], [ 365109.141999997198582, 256876.279500000178814 ], [ 365102.018700003623962, 256860.708700001239777 ], [ 365097.25450000166893, 256852.014899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702090100", "MAP": "A9-333-T86", "PARCEL_NAM": "98-8", "ACRE": "13.14", "LONGITUDE": -64.87072932, "LATITUDE": 18.34006878, "OBJECTID_1": 22765, "PARCEL_NO_": "105702090100", "Tax_Legal_": "SMITH BAY 98-6&98-8-1 EAST END QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 529300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 923.80833429400002, "SHAPE_Area": 31900.873962199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365144.558499999344349, 256948.353500001132488 ], [ 365152.694099999964237, 256969.594999998807907 ], [ 365145.318099997937679, 256990.083799999207258 ], [ 365145.377999998629093, 256993.371500000357628 ], [ 365150.101499997079372, 256990.502599999308586 ], [ 365171.306199997663498, 256953.064599998295307 ], [ 365183.226800002157688, 256927.223799999803305 ], [ 365185.967699997127056, 256921.282200001180172 ], [ 365195.114200003445148, 256902.970400001853704 ], [ 365205.394400000572205, 256882.388700000941753 ], [ 365211.039899997413158, 256871.032800000160933 ], [ 365222.007100000977516, 256848.972500000149012 ], [ 365234.399999998509884, 256854.177099999040365 ], [ 365240.982100002467632, 256856.941399998962879 ], [ 365253.357400000095367, 256862.138599999248981 ], [ 365246.039700001478195, 256814.421100001782179 ], [ 365224.952299997210503, 256676.913600001484156 ], [ 365197.909100003540516, 256679.31980000063777 ], [ 365066.440600000321865, 256682.887800000607967 ], [ 365067.963299997150898, 256693.454999998211861 ], [ 365071.077100001275539, 256706.568199999630451 ], [ 365072.669900000095367, 256708.903299998492002 ], [ 365073.447499997913837, 256712.287200000137091 ], [ 365090.925599999725819, 256743.038800001144409 ], [ 365094.075300000607967, 256751.930500000715256 ], [ 365095.610600002110004, 256761.020100001245737 ], [ 365096.811499997973442, 256809.370299998670816 ], [ 365094.948899999260902, 256838.69709999859333 ], [ 365102.918499998748302, 256849.739199999719858 ], [ 365106.879900000989437, 256858.004299998283386 ], [ 365108.467399999499321, 256860.972600001841784 ], [ 365110.857600003480911, 256864.369600001722574 ], [ 365114.23200000077486, 256872.773899998515844 ], [ 365142.824299998581409, 256853.081900000572205 ], [ 365144.558499999344349, 256948.353500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032000", "MAP": "D9-411-T63", "PARCEL_NAM": "40J", "ACRE": ".29", "LONGITUDE": -64.87059832, "LATITUDE": 18.34182153, "OBJECTID_1": 22485, "PARCEL_NO_": "105702032000", "Tax_Legal_": "40J SMITH BAY No. 1,2 &3 EAST END QTR", "Name": "J'NIQUE N SMITH", "Address": "PO Box 8352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011352, "Country": "United States", "Land_Value": 39700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.25965847399999, "SHAPE_Area": 1105.0901672499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365154.020900003612041, 257010.568999998271465 ], [ 365202.82940000295639, 256979.773800000548363 ], [ 365201.870899997651577, 256971.505699999630451 ], [ 365200.680299997329712, 256957.429900001734495 ], [ 365174.409500002861023, 256976.769400000572205 ], [ 365150.101499997079372, 256990.502599999308586 ], [ 365150.828599996864796, 256999.796599999070168 ], [ 365154.020900003612041, 257010.568999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103017900", "MAP": "D9-6570-T99", "PARCEL_NAM": "23D-A", "ACRE": null, "LONGITUDE": -64.8951384, "LATITUDE": 18.35502074, "OBJECTID_1": 6502, "PARCEL_NO_": "103103017900", "Tax_Legal_": "MANDAHL ESTATE 23A-A&23D-A No.1 GREAT NORTHSIDE QTR.", "Name": "KENNETH N BUCHANAN and MADIA THOMS", "Address": "6522 Estate Nazareth 2W-46", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52100, "Improved_V": 131900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.61857310799999, "SHAPE_Area": 481.00808085800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362551.392700001597404, 258389.636799998581409 ], [ 362550.421599999070168, 258399.814100001007318 ], [ 362587.08669999986887, 258454.357599999755621 ], [ 362589.520000003278255, 258452.688799999654293 ], [ 362592.996500000357628, 258450.075300000607967 ], [ 362551.392700001597404, 258389.636799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103017900", "MAP": "D9-6570-T99", "PARCEL_NAM": "23A-A", "ACRE": null, "LONGITUDE": -64.89503692, "LATITUDE": 18.3548914, "OBJECTID_1": 6502, "PARCEL_NO_": "103103017900", "Tax_Legal_": "MANDAHL ESTATE 23A-A&23D-A No.1 GREAT NORTHSIDE QTR.", "Name": "KENNETH N BUCHANAN and MADIA THOMS", "Address": "6522 Estate Nazareth 2W-46", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52100, "Improved_V": 131900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.05367443, "SHAPE_Area": 1662.439689 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362602.788500003516674, 258442.714299999177456 ], [ 362592.954499997198582, 258415.415100000798702 ], [ 362598.7246999964118, 258387.527899999171495 ], [ 362595.642399996519089, 258382.704900000244379 ], [ 362589.385300002992153, 258384.063299998641014 ], [ 362551.443300001323223, 258389.105999998748302 ], [ 362551.392700001597404, 258389.636799998581409 ], [ 362592.996500000357628, 258450.075300000607967 ], [ 362602.788500003516674, 258442.714299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103012700", "MAP": "D9-7952-T007", "PARCEL_NAM": "23A-B", "ACRE": ".538", "LONGITUDE": -64.89496636, "LATITUDE": 18.35476433, "OBJECTID_1": 6452, "PARCEL_NO_": "103103012700", "Tax_Legal_": "CONSOLIDATED 23A-B ESTATE MANDAHL GREAT NORTHSIDE QTR", "Name": "GEORGE, MICHAEL (TRUSTEE)", "Address": "6568 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54000, "Improved_V": 231100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.281188423, "SHAPE_Area": 2420.8872299599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362550.421599999070168, 258399.814100001007318 ], [ 362551.392700001597404, 258389.636799998581409 ], [ 362551.443300001323223, 258389.105999998748302 ], [ 362589.385300002992153, 258384.063299998641014 ], [ 362595.642399996519089, 258382.704900000244379 ], [ 362598.7246999964118, 258387.527899999171495 ], [ 362592.954499997198582, 258415.415100000798702 ], [ 362602.788500003516674, 258442.714299999177456 ], [ 362630.909800000488758, 258421.574599999934435 ], [ 362592.685199998319149, 258365.11089999973774 ], [ 362575.154899999499321, 258364.536299999803305 ], [ 362552.590400002896786, 258366.113200001418591 ], [ 362548.267800003290176, 258372.980000000447035 ], [ 362542.890600003302097, 258377.285500001162291 ], [ 362540.960699997842312, 258378.830800000578165 ], [ 362537.717500001192093, 258380.915199998766184 ], [ 362550.421599999070168, 258399.814100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704050100", "MAP": "D9-7399-T004", "PARCEL_NAM": "98-8 REM", "ACRE": "5.1", "LONGITUDE": -64.8705015, "LATITUDE": 18.33834323, "OBJECTID_1": 23661, "PARCEL_NO_": "105704050100", "Tax_Legal_": "98 SMITH BAY EAST END QTR", "Name": "MULRAINE, L. & FRANCIS, P", "Address": "PO Box 502584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 350900, "Improved_V": 188900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 745.73006556300004, "SHAPE_Area": 19315.766006400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365224.952299997210503, 256676.913600001484156 ], [ 365222.766699999570847, 256662.661299999803305 ], [ 365232.017399996519089, 256662.740299999713898 ], [ 365236.093299999833107, 256662.775100000202656 ], [ 365242.248499996960163, 256662.318199999630451 ], [ 365263.551100000739098, 256453.867600001394749 ], [ 365248.933700002729893, 256463.788699999451637 ], [ 365246.500399999320507, 256465.457499999552965 ], [ 365201.060999996960163, 256498.649500001221895 ], [ 365193.006800003349781, 256497.528099998831749 ], [ 365191.397600002586842, 256524.245600000023842 ], [ 365181.530799999833107, 256574.252300001680851 ], [ 365174.130699999630451, 256597.349500000476837 ], [ 365151.930399999022484, 256614.616399999707937 ], [ 365115.352099999785423, 256631.14809999987483 ], [ 365095.777400001883507, 256636.642400000244379 ], [ 365088.844499997794628, 256638.605099998414516 ], [ 365086.214100003242493, 256636.965199999511242 ], [ 365085.597999997437, 256633.538600001484156 ], [ 365078.068800002336502, 256643.086300000548363 ], [ 365072.334700003266335, 256653.594099998474121 ], [ 365068.202500000596046, 256665.381499998271465 ], [ 365066.440600000321865, 256682.887800000607967 ], [ 365197.909100003540516, 256679.31980000063777 ], [ 365224.952299997210503, 256676.913600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85459793, "LATITUDE": 18.32756571, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1006.16102051, "SHAPE_Area": 8943.9830537100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366871.822899997234344, 255363.983300000429153 ], [ 366655.102600000798702, 255378.263399999588728 ], [ 366657.284599997103214, 255378.580200001597404 ], [ 366668.803199999034405, 255379.667100001126528 ], [ 366677.140299998223782, 255380.924300000071526 ], [ 366679.516699999570847, 255381.932500001043081 ], [ 366682.694899998605251, 255382.157499998807907 ], [ 366687.863899998366833, 255382.004399999976158 ], [ 366698.589299999177456, 255382.886999998241663 ], [ 366709.11429999768734, 255383.965500000864267 ], [ 366713.484899997711182, 255384.200699999928474 ], [ 366717.660199999809265, 255384.039099998772144 ], [ 366720.644799999892712, 255383.669599998742342 ], [ 366723.432300001382828, 255383.100999999791384 ], [ 366727.417400002479553, 255381.94990000128746 ], [ 366730.80460000038147, 255380.991300001740456 ], [ 366733.590400002896786, 255380.620200000703335 ], [ 366735.780000001192093, 255380.243999999016523 ], [ 366747.910199999809265, 255379.558200001716614 ], [ 366758.2449000030756, 255379.647199999541044 ], [ 366768.173600003123283, 255380.720600001513958 ], [ 366772.938299998641014, 255381.354299999773502 ], [ 366780.884700000286102, 255381.817899998277426 ], [ 366794.772900000214577, 255384.703400000929832 ], [ 366800.320699997246265, 255386.726799998432398 ], [ 366811.988799996674061, 255393.544300001114607 ], [ 366820.295100003480911, 255398.357299998402596 ], [ 366826.612400002777576, 255403.35080000013113 ], [ 366841.979900002479553, 255419.090399999171495 ], [ 366849.066600002348423, 255427.053800001740456 ], [ 366852.783100001513958, 255434.000399999320507 ], [ 366856.193599998950958, 255453.390500001609325 ], [ 366860.463799998164177, 255469.639800000935793 ], [ 366882.155199997127056, 255479.105500001460314 ], [ 366901.524599999189377, 255477.153099998831749 ], [ 366925.735600002110004, 255474.81810000166297 ], [ 366954.789800003170967, 255471.889499999582767 ], [ 366984.6503000035882, 255468.967500001192093 ], [ 367012.09009999781847, 255466.236800000071526 ], [ 367045.179499998688698, 255462.918999999761581 ], [ 367074.23369999974966, 255459.99040000140667 ], [ 367079.019100002944469, 255459.674699999392033 ], [ 367078.259800001978874, 255443.656800001859665 ], [ 367072.755999997258186, 255444.146299999207258 ], [ 366883.895400002598763, 255464.132100000977516 ], [ 366878.684600003063679, 255413.215900000184774 ], [ 366871.822899997234344, 255363.983300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023200", "MAP": "A9-780-T013", "PARCEL_NAM": "4-REM", "ACRE": "13.217", "LONGITUDE": -64.88743153, "LATITUDE": 18.3517131, "OBJECTID_1": 6803, "PARCEL_NO_": "103104023200", "Tax_Legal_": "TARBOR & HARMONY 4 EAST END QTR", "Name": "COOPERATIVE PARTNERS C/O", "Address": "COOPER B.BOX 3893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 417300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1234.0806333099999, "SHAPE_Area": 52637.313049600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363567.793200001120567, 257949.963899999856949 ], [ 363582.829000003635883, 257945.894099999219179 ], [ 363511.590000003576279, 257933.768800001591444 ], [ 363454.433600001037121, 257922.323499999940395 ], [ 363404.404399998486042, 257926.346999999135733 ], [ 363351.952799998223782, 257930.772799998521805 ], [ 363351.318000003695488, 258005.283700000494719 ], [ 363282.90990000218153, 258005.301500000059605 ], [ 363266.508100003004074, 258305.820000000298023 ], [ 363327.6199000030756, 258231.381999999284744 ], [ 363329.241499997675419, 258230.339800000190735 ], [ 363344.750299997627735, 258208.301899999380112 ], [ 363370.969400003552437, 258159.54280000180006 ], [ 363386.463799998164177, 258139.193500000983477 ], [ 363393.736800000071526, 258137.353199999779463 ], [ 363395.342200003564358, 258138.210700001567602 ], [ 363397.762999996542931, 258138.019499998539686 ], [ 363408.185099996626377, 258118.329599998891354 ], [ 363413.226800002157688, 258121.258499998599291 ], [ 363455.806699998676777, 258139.761100001633167 ], [ 363463.858999997377396, 258141.093499999493361 ], [ 363499.092200003564358, 258082.203400000929832 ], [ 363512.851199999451637, 258016.071400001645088 ], [ 363513.897600002586842, 258011.569699998944998 ], [ 363514.658900000154972, 258005.513199999928474 ], [ 363515.214199997484684, 257999.7820999994874 ], [ 363513.524700000882149, 257996.24210000038147 ], [ 363506.754299998283386, 257991.925000000745058 ], [ 363546.816899999976158, 257964.699400000274181 ], [ 363549.119499996304512, 257960.709499999880791 ], [ 363553.336400002241135, 257956.035999998450279 ], [ 363567.793200001120567, 257949.963899999856949 ] ] ], [ [ [ 363582.829000003635883, 257945.894099999219179 ], [ 363583.042700000107288, 257945.930500000715256 ], [ 363583.311200000345707, 257945.763599999248981 ], [ 363582.829000003635883, 257945.894099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024800", "MAP": "D9-4337-T88", "PARCEL_NAM": "4A", "ACRE": "1.50", "LONGITUDE": -64.88808936, "LATITUDE": 18.35067757, "OBJECTID_1": 6818, "PARCEL_NO_": "103104024800", "Tax_Legal_": "TABOR & HARMONY 4A EAST END QTR", "Name": "CHRISTOPHER, ELVIS & DOREEN", "Address": "7037 Belgium Cir", "City": "Pensacola", "State": "Florida", "Zip": 32526, "Country": "United States", "Land_Value": 114800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.87943914700003, "SHAPE_Area": 7413.2030373500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363352.377099998295307, 257880.960400000214577 ], [ 363288.414300002157688, 257904.446400001645088 ], [ 363282.90990000218153, 258005.301500000059605 ], [ 363351.318000003695488, 258005.283700000494719 ], [ 363351.952799998223782, 257930.772799998521805 ], [ 363352.377099998295307, 257880.960400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104012000", "MAP": "A3-25-T36", "PARCEL_NAM": "29", "ACRE": null, "LONGITUDE": -64.88891054, "LATITUDE": 18.35208427, "OBJECTID_1": 6754, "PARCEL_NO_": "103104012000", "Tax_Legal_": "29 MANDAHL NO.1 GREAT NORTHSIDE QTR", "Name": "DANIEL, ERIC, MARY, DICKEY & O. ALLEN & OTHERS", "Address": "PO Box 305047", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 331300, "Improved_V": 116800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1132.43872489, "SHAPE_Area": 36487.560236800011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363262.301600001752377, 257885.818999998271465 ], [ 363281.351199999451637, 257910.6891999989748 ], [ 363248.8074000030756, 257930.797600001096725 ], [ 363234.700000002980232, 257909.203600000590086 ], [ 363218.164200000464916, 257922.711800001561642 ], [ 363198.726400002837181, 257932.685199998319149 ], [ 363188.213799998164177, 257936.187699999660254 ], [ 363176.238899998366833, 258300.648299999535084 ], [ 363226.375900000333786, 258283.96000000089407 ], [ 363265.448299996554852, 258335.575599998235703 ], [ 363266.423600003123283, 258315.740800000727177 ], [ 363266.508100003004074, 258305.820000000298023 ], [ 363282.90990000218153, 258005.301500000059605 ], [ 363290.366200000047684, 257868.684099998325109 ], [ 363281.484600000083447, 257872.989700000733137 ], [ 363274.191799998283386, 257877.151900000870228 ], [ 363262.301600001752377, 257885.818999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204012700", "MAP": "A9-494-T96", "PARCEL_NAM": "B-5", "ACRE": "1.139", "LONGITUDE": -64.86922903, "LATITUDE": 18.34898293, "OBJECTID_1": 7081, "PARCEL_NO_": "103204012700", "Tax_Legal_": "COKI POINT B-5 & B-6 EAST END QTR", "Name": "VIALET, FREDERICK", "Address": "PO Box 546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.22230465899997, "SHAPE_Area": 3710.85920622 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365237.572700001299381, 257797.384799998253584 ], [ 365359.32769999653101, 257798.170200001448393 ], [ 365363.359300002455711, 257798.203200001269579 ], [ 365364.23929999768734, 257789.555599998682737 ], [ 365359.527300000190735, 257774.74040000140667 ], [ 365345.146700002253056, 257759.001800000667572 ], [ 365333.199500001966953, 257741.594399999827147 ], [ 365328.336499996483326, 257744.509899999946356 ], [ 365261.060099996626377, 257785.333599999547005 ], [ 365237.572700001299381, 257797.384799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204017000", "MAP": "A9-494-T96", "PARCEL_NAM": "B-8", "ACRE": "1.429", "LONGITUDE": -64.86845413, "LATITUDE": 18.34880781, "OBJECTID_1": 7121, "PARCEL_NO_": "103204017000", "Tax_Legal_": "COKI POINT B-7-B,B-8,B-12 & B-14 EAST END #4", "Name": "ESTATE OF JOSEPHINE B. BELL", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 277600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 360.52896372100003, "SHAPE_Area": 6081.17015429 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365347.756300002336502, 257736.647300001233816 ], [ 365335.630999997258186, 257740.136599998921156 ], [ 365333.199500001966953, 257741.594399999827147 ], [ 365345.146700002253056, 257759.001800000667572 ], [ 365359.527300000190735, 257774.74040000140667 ], [ 365364.23929999768734, 257789.555599998682737 ], [ 365363.359300002455711, 257798.203200001269579 ], [ 365369.005300000309944, 257798.03830000013113 ], [ 365438.375100001692772, 257795.439699999988079 ], [ 365436.883000001311302, 257781.284200001507998 ], [ 365436.163000002503395, 257771.145799998193979 ], [ 365445.201399996876717, 257751.377000000327826 ], [ 365445.221199996769428, 257749.055100001394749 ], [ 365438.862400002777576, 257738.237300001084805 ], [ 365442.942500002682209, 257732.571199998259544 ], [ 365443.77759999781847, 257729.200500000268221 ], [ 365446.230700001120567, 257725.209800001233816 ], [ 365459.185699999332428, 257718.982999999076128 ], [ 365347.756300002336502, 257736.647300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204019800", "MAP": "A9-494-T96", "PARCEL_NAM": "B-13", "ACRE": ".24", "LONGITUDE": -64.86660683, "LATITUDE": 18.34840383, "OBJECTID_1": 7132, "PARCEL_NO_": "103204019800", "Tax_Legal_": "COKI POINT B-4,B-15 & B-16 & 'D' EAST END #4A (ROAD)", "Name": "ESTATE OF JOSEPHINE BELL & HEI", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 189500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.875664771, "SHAPE_Area": 1333.215718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365589.214100003242493, 257695.138199999928474 ], [ 365563.979299999773502, 257723.007100000977516 ], [ 365590.495899997651577, 257733.989900000393391 ], [ 365600.139300003647804, 257737.868500001728535 ], [ 365609.554300002753735, 257744.701299998909235 ], [ 365609.169900000095367, 257703.837900001555681 ], [ 365598.097999997437, 257693.522199999541044 ], [ 365594.592699997127056, 257690.637299999594688 ], [ 365589.214100003242493, 257695.138199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204017000", "MAP": "A9-494-T96", "PARCEL_NAM": "B-14", "ACRE": ".26", "LONGITUDE": -64.86683858000001, "LATITUDE": 18.34824978, "OBJECTID_1": 7121, "PARCEL_NO_": "103204017000", "Tax_Legal_": "COKI POINT B-7-B,B-8,B-12 & B-14 EAST END #4", "Name": "ESTATE OF JOSEPHINE B. BELL", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 277600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.57833448, "SHAPE_Area": 1143.36929128 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365567.130500003695488, 257675.87779999896884 ], [ 365554.089299999177456, 257704.514600001275539 ], [ 365537.443499997258186, 257710.968400001525879 ], [ 365538.272600002586842, 257711.608800001442432 ], [ 365543.893399998545647, 257714.399000000208616 ], [ 365547.9087999984622, 257716.331700000911951 ], [ 365563.979299999773502, 257723.007100000977516 ], [ 365589.214100003242493, 257695.138199999928474 ], [ 365594.592699997127056, 257690.637299999594688 ], [ 365589.289700001478195, 257686.272900000214577 ], [ 365584.480599999427795, 257682.855999998748302 ], [ 365567.130500003695488, 257675.87779999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204016900", "MAP": "A9-494-T96", "PARCEL_NAM": "B-11", "ACRE": ".41", "LONGITUDE": -64.86713694, "LATITUDE": 18.3481374, "OBJECTID_1": 7120, "PARCEL_NO_": "103204016900", "Tax_Legal_": "COKI POINT B-7-A,B-9,B-10 & B-11 EAST END #4A", "Name": "HEIRS OF CECILIA BIRCH KING", "Address": "PO Box 502283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 277600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.124314868, "SHAPE_Area": 1660.7324435 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365512.268899999558926, 257671.957499999552965 ], [ 365503.817699998617172, 257685.170200001448393 ], [ 365505.42960000038147, 257686.008699998259544 ], [ 365530.261600002646446, 257705.421500001102686 ], [ 365537.443499997258186, 257710.968400001525879 ], [ 365554.089299999177456, 257704.514600001275539 ], [ 365567.130500003695488, 257675.87779999896884 ], [ 365557.157700002193451, 257671.866599999368191 ], [ 365538.621500000357628, 257670.659499999135733 ], [ 365512.268899999558926, 257671.957499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204019700", "MAP": "A9-494-T96", "PARCEL_NAM": "B-3", "ACRE": ".19", "LONGITUDE": -64.86661499, "LATITUDE": 18.34915921, "OBJECTID_1": 7129, "PARCEL_NO_": "103204019700", "Tax_Legal_": "COKI POINT B-3 EAST END #4A", "Name": "ESTATE OF JOSEPHINE BELL & HEI", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.11662564900001, "SHAPE_Area": 759.93685817999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365567.010200001299381, 257802.261399999260902 ], [ 365567.588100001215935, 257811.931600000709295 ], [ 365581.781800001859665, 257810.334499999880791 ], [ 365593.8800999969244, 257810.011300001293421 ], [ 365601.934299997985363, 257811.132699999958277 ], [ 365610.161200001835823, 257812.124000001698732 ], [ 365610.006899997591972, 257794.980000000447035 ], [ 365602.105099998414516, 257791.080200001597404 ], [ 365588.431900002062321, 257786.957499999552965 ], [ 365578.79389999806881, 257782.445700000971556 ], [ 365577.957099996507168, 257786.027399998158216 ], [ 365581.977799996733665, 257787.326900001615286 ], [ 365581.05460000038147, 257801.040399998426437 ], [ 365567.010200001299381, 257802.261399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204019900", "MAP": "A9-494-T96", "PARCEL_NAM": "B-1", "ACRE": ".122", "LONGITUDE": -64.86656696, "LATITUDE": 18.348953, "OBJECTID_1": 7133, "PARCEL_NO_": "103204019900", "Tax_Legal_": "COKI POINT B-1 (CEMENTARY) EAST END 4A", "Name": "ESTATE OF JOSEPHINE BELL & HEI", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.626647772, "SHAPE_Area": 670.61745127400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365602.105099998414516, 257791.080200001597404 ], [ 365610.006899997591972, 257794.980000000447035 ], [ 365609.750200003385544, 257766.462499998509884 ], [ 365600.773999996483326, 257766.314599998295307 ], [ 365582.159500002861023, 257766.00789999961853 ], [ 365578.79389999806881, 257782.445700000971556 ], [ 365588.431900002062321, 257786.957499999552965 ], [ 365602.105099998414516, 257791.080200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204019800", "MAP": "A9-494-T96", "PARCEL_NAM": "B-4/ BEACH ROW", "ACRE": ".122", "LONGITUDE": -64.86661554, "LATITUDE": 18.348791, "OBJECTID_1": 7132, "PARCEL_NO_": "103204019800", "Tax_Legal_": "COKI POINT B-4,B-15 & B-16 & 'D' EAST END #4A (ROAD)", "Name": "ESTATE OF JOSEPHINE BELL & HEI", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 189500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.52425146, "SHAPE_Area": 631.07691825100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365582.159500002861023, 257766.00789999961853 ], [ 365600.773999996483326, 257766.314599998295307 ], [ 365609.750200003385544, 257766.462499998509884 ], [ 365609.648699998855591, 257755.184500001370907 ], [ 365600.05120000243187, 257748.211399998515844 ], [ 365587.200499996542931, 257742.195599999278784 ], [ 365587.121399998664856, 257751.4831000007689 ], [ 365584.679099999368191, 257754.207299999892712 ], [ 365579.027699999511242, 257755.005399998277426 ], [ 365576.583599999547005, 257757.940699998289347 ], [ 365573.26129999756813, 257769.312600001692772 ], [ 365577.296400003135204, 257768.92339999973774 ], [ 365574.739000000059605, 257785.156700000166893 ], [ 365577.957099996507168, 257786.027399998158216 ], [ 365578.79389999806881, 257782.445700000971556 ], [ 365582.159500002861023, 257766.00789999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103204012500", "MAP": "D9-1306-T76", "PARCEL_NAM": "A", "ACRE": "12.4", "LONGITUDE": -64.86913306, "LATITUDE": 18.34992498, "OBJECTID_1": 7079, "PARCEL_NO_": "103204012500", "Tax_Legal_": "PCL.A COKI POINT UNDIVED INSTEREST E END QTR", "Name": "CHINNERY, EMILY & OTHERS", "Address": "PO Box 306681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 830500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1079.1072559500001, "SHAPE_Area": 55522.946678599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365567.010200001299381, 257802.261399999260902 ], [ 365566.589599996805191, 257795.222500000149012 ], [ 365566.75, 257792.201999999582767 ], [ 365520.642300002276897, 257793.36879999935627 ], [ 365484.347499996423721, 257794.338300000876188 ], [ 365468.217699997127056, 257794.628400001674891 ], [ 365438.375100001692772, 257795.439699999988079 ], [ 365369.005300000309944, 257798.03830000013113 ], [ 365363.359300002455711, 257798.203200001269579 ], [ 365359.32769999653101, 257798.170200001448393 ], [ 365237.572700001299381, 257797.384799998253584 ], [ 365175.299699999392033, 257818.82880000025034 ], [ 365167.211400002241135, 257821.717999998480082 ], [ 365162.359099999070168, 257823.366999998688698 ], [ 365167.810900002717972, 257845.998599998652935 ], [ 365170.904899999499321, 257861.433800000697374 ], [ 365164.182800002396107, 257893.253899998962879 ], [ 365165.640799999237061, 257911.419900000095367 ], [ 365181.454199999570847, 257948.279599998146296 ], [ 365194.184299997985363, 257968.437600001692772 ], [ 365203.595799997448921, 257999.545400001108646 ], [ 365230.943899996578693, 258007.579700000584126 ], [ 365235.778099998831749, 258008.041499998420477 ], [ 365240.623199999332428, 258007.236699998378754 ], [ 365258.434000000357628, 257998.938799999654293 ], [ 365265.732199996709824, 257994.143399998545647 ], [ 365270.580799996852875, 257992.916499998420477 ], [ 365277.024099998176098, 257993.8136 ], [ 365281.843999996781349, 257995.964000001549721 ], [ 365288.255000002682209, 258000.660500001162291 ], [ 365291.476599998772144, 258001.109099999070168 ], [ 365296.332500003278255, 257999.037900000810623 ], [ 365301.218900002539158, 257993.378299999982119 ], [ 365306.062200002372265, 257992.784699998795986 ], [ 365307.67119999974966, 257993.220100000500679 ], [ 365310.064999997615814, 257996.195000000298023 ], [ 365314.080399997532368, 257998.127700001001358 ], [ 365318.885899998247623, 258001.966699998825788 ], [ 365322.111100003123283, 258001.993099998682737 ], [ 365326.965199999511242, 258000.133000001311302 ], [ 365344.840700000524521, 257984.236099999397993 ], [ 365356.190200001001358, 257977.151900000870228 ], [ 365382.056999996304512, 257969.764199998229742 ], [ 365386.918200001120567, 257967.059799998998642 ], [ 365389.35869999974966, 257964.546599999070168 ], [ 365395.087399996817112, 257954.672100000083447 ], [ 365396.743199996650219, 257949.61939999833703 ], [ 365401.647600002586842, 257941.84910000115633 ], [ 365405.720499999821186, 257937.027300000190735 ], [ 365413.830399997532368, 257931.605200000107288 ], [ 365428.502300001680851, 257913.149099998176098 ], [ 365430.122100003063679, 257912.317999999970198 ], [ 365438.179799996316433, 257913.017200000584126 ], [ 365440.607799999415874, 257911.981600001454353 ], [ 365451.989600002765656, 257901.097899999469519 ], [ 365454.437299996614456, 257897.74040000140667 ], [ 365457.678800001740456, 257895.86710000038147 ], [ 365468.986900001764297, 257893.637600000947714 ], [ 365477.073399998247623, 257890.959600001573563 ], [ 365481.135600000619888, 257887.404199998825788 ], [ 365486.032799996435642, 257880.478199999779463 ], [ 365493.436999998986721, 257863.229200001806021 ], [ 365508.188000001013279, 257835.485500000417233 ], [ 365514.712300002574921, 257826.884100001305342 ], [ 365519.586099997162819, 257822.702100001275539 ], [ 365521.223899997770786, 257819.760200001299381 ], [ 365526.088699996471405, 257816.633600000292063 ], [ 365538.210400000214577, 257813.566399998962879 ], [ 365547.895099997520447, 257812.590199999511242 ], [ 365560.796099998056889, 257812.695799998939037 ], [ 365567.588100001215935, 257811.931600000709295 ], [ 365567.010200001299381, 257802.261399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103303010600", "MAP": "G9-2534", "PARCEL_NAM": "C-1E", "ACRE": "0.34", "LONGITUDE": -64.86381111, "LATITUDE": 18.34909046, "OBJECTID_1": 7184, "PARCEL_NO_": "103303010600", "Tax_Legal_": "COKI POINT C-1E EAST END QTR", "Name": "ERA FREDERICKS TRUST", "Address": "PO Box 9482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 125300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.55430685600001, "SHAPE_Area": 1632.0838796800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365910.705200001597404, 257819.148299999535084 ], [ 365889.426100000739098, 257762.010600000619888 ], [ 365886.191399998962879, 257762.374600000679493 ], [ 365875.669799998402596, 257766.932500001043081 ], [ 365867.552699998021126, 257773.198899999260902 ], [ 365867.304099999368191, 257773.527699999511242 ], [ 365880.325000002980232, 257825.957299999892712 ], [ 365882.424900002777576, 257825.88289999961853 ], [ 365910.705200001597404, 257819.148299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103303010500", "MAP": "G9-2514-T75", "PARCEL_NAM": "C-1B", "ACRE": ".29", "LONGITUDE": -64.86299142, "LATITUDE": 18.34952449, "OBJECTID_1": 7183, "PARCEL_NO_": "103303010500", "Tax_Legal_": "COKI POINT C-1B EAST END QTR", "Name": "MASON, ANN MARIE & SAMUEL K", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72800, "Improved_V": 284200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.77490439100001, "SHAPE_Area": 1491.5902154099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365944.773999996483326, 257835.078099999576807 ], [ 365951.64019999653101, 257878.85700000077486 ], [ 365952.131700001657009, 257878.382399998605251 ], [ 365954.592000000178814, 257873.547400001436472 ], [ 365956.255000002682209, 257867.650400001555681 ], [ 365961.130599997937679, 257863.25730000063777 ], [ 365963.565800003707409, 257861.377399999648333 ], [ 365973.300800003111362, 257854.49100000038743 ], [ 365983.817100003361702, 257850.566300000995398 ], [ 366002.42339999973774, 257843.541400000452995 ], [ 366005.659400001168251, 257842.301300000399351 ], [ 366014.593599997460842, 257834.775100000202656 ], [ 366013.832299999892712, 257829.491500001400709 ], [ 366013.537399999797344, 257827.618000000715256 ], [ 365944.773999996483326, 257835.078099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103303010400", "MAP": "G9-2475-T74", "PARCEL_NAM": "C-1A", "ACRE": ".58", "LONGITUDE": -64.86297941, "LATITUDE": 18.34923673, "OBJECTID_1": 7182, "PARCEL_NO_": "103303010400", "Tax_Legal_": "COKI POINT PCL.C-1A&C-1AA EAST END QTR", "Name": "MAC DONALD LAND TRUST", "Address": "171 Gifford St", "City": "Falmouth", "State": "Massachusetts", "Zip": 2540, "Country": "United States", "Land_Value": 165100, "Improved_V": 424300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.41252266500001, "SHAPE_Area": 2527.344726 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365985.073600001633167, 257784.415300000458956 ], [ 365940.107299998402596, 257803.441399998962879 ], [ 365940.468999996781349, 257812.092000000178814 ], [ 365942.911200001835823, 257820.988000001758337 ], [ 365944.773999996483326, 257835.078099999576807 ], [ 366013.537399999797344, 257827.618000000715256 ], [ 366013.067299999296665, 257824.630100000649691 ], [ 366012.295199997723103, 257820.613000001758337 ], [ 366009.948100000619888, 257812.150100000202656 ], [ 365992.394500002264977, 257790.263799998909235 ], [ 365985.073600001633167, 257784.415300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103303011000", "MAP": "G9-2663-T77", "PARCEL_NAM": "C-1C", "ACRE": ".35", "LONGITUDE": -64.86338577, "LATITUDE": 18.34966125, "OBJECTID_1": 7187, "PARCEL_NO_": "103303011000", "Tax_Legal_": "COKI POINT C-1C EAST END QTR", "Name": "MASON, SAMUEL", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.35321652900001, "SHAPE_Area": 1822.6055512099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365945.994499996304512, 257842.859499998390675 ], [ 365938.517800003290176, 257844.840799998492002 ], [ 365935.379000000655651, 257822.760000001639128 ], [ 365912.240500003099442, 257828.237799998372793 ], [ 365925.358000002801418, 257898.088500000536442 ], [ 365931.830099999904633, 257895.103700000792742 ], [ 365936.703900001943111, 257890.921799998730421 ], [ 365941.561599999666214, 257888.639499999582767 ], [ 365945.620099999010563, 257885.506299998611212 ], [ 365948.87950000166893, 257881.522199999541044 ], [ 365951.64019999653101, 257878.85700000077486 ], [ 365945.994499996304512, 257842.859499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103303010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86330407, "LATITUDE": 18.3494222, "OBJECTID_1": 7184, "PARCEL_NO_": "103303010600", "Tax_Legal_": "COKI POINT C-1E EAST END QTR", "Name": "ERA FREDERICKS TRUST", "Address": "PO Box 9482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 125300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.864614138100002, "SHAPE_Area": 169.42149890799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365935.379000000655651, 257822.760000001639128 ], [ 365938.517800003290176, 257844.840799998492002 ], [ 365945.994499996304512, 257842.859499998390675 ], [ 365944.773999996483326, 257835.078099999576807 ], [ 365942.911200001835823, 257820.988000001758337 ], [ 365938.096400000154972, 257822.116700001060963 ], [ 365935.379000000655651, 257822.760000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103303010800", "MAP": "G9-2567-T76", "PARCEL_NAM": "C-1F", "ACRE": ".35", "LONGITUDE": -64.86357911, "LATITUDE": 18.34900532, "OBJECTID_1": 7185, "PARCEL_NO_": "103303010800", "Tax_Legal_": "COKI POINT C-1F EAST END QTR", "Name": "MASON, SAMUEL K & CAROLYE V", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99900, "Improved_V": 379000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.06955928599999, "SHAPE_Area": 1500.80030272 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365930.36429999768734, 257814.48759999871254 ], [ 365920.556400001049042, 257760.027300000190735 ], [ 365914.444700002670288, 257758.806099999696016 ], [ 365904.765399999916553, 257759.149099998176098 ], [ 365896.684299997985363, 257761.193900000303984 ], [ 365889.426100000739098, 257762.010600000619888 ], [ 365910.705200001597404, 257819.148299999535084 ], [ 365930.36429999768734, 257814.48759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103303010300", "MAP": "D9-2756-T84", "PARCEL_NAM": "C-1", "ACRE": ".37", "LONGITUDE": -64.86325752, "LATITUDE": 18.34897699, "OBJECTID_1": 7181, "PARCEL_NO_": "103303010300", "Tax_Legal_": "COKI POINT C-1G EAST END QTR", "Name": "THE MACDONALD LAND TRUST", "Address": "PO Box 586", "City": "Falmouth", "State": "Massachusetts", "Zip": 2541, "Country": "United States", "Land_Value": 105600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.350889999, "SHAPE_Area": 1759.45071267 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365920.556400001049042, 257760.027300000190735 ], [ 365930.36429999768734, 257814.48759999871254 ], [ 365940.468999996781349, 257812.092000000178814 ], [ 365940.107299998402596, 257803.441399998962879 ], [ 365985.073600001633167, 257784.415300000458956 ], [ 365977.177000001072884, 257778.106899999082088 ], [ 365963.538099996745586, 257769.973700001835823 ], [ 365952.278499998152256, 257766.504000000655651 ], [ 365935.374700002372265, 257762.988200001418591 ], [ 365920.556400001049042, 257760.027300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "NL", "PARCEL_NO": "103303010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86453948, "LATITUDE": 18.35036429, "OBJECTID_1": 7179, "PARCEL_NO_": "103303010200", "Tax_Legal_": "COKI POINT PCL C EAST END QTR", "Name": "DEPT OF PLANNING & NATURAL RES", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 544100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 509.32070832800002, "SHAPE_Area": 14464.2830082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365887.958599999547005, 257983.140900000929832 ], [ 365890.105700001120567, 257897.0287000015378 ], [ 365884.268399998545647, 257893.447900000959635 ], [ 365877.026000000536442, 257891.69990000128746 ], [ 365864.92230000346899, 257892.656300000846386 ], [ 365861.686300002038479, 257893.89640000090003 ], [ 365858.4341000020504, 257897.036200001835823 ], [ 365852.773699998855591, 257898.889699999243021 ], [ 365832.619499996304512, 257898.302499998360872 ], [ 365818.883400000631809, 257901.567600000649691 ], [ 365807.594999998807907, 257901.47520000115037 ], [ 365801.957999996840954, 257900.584699999541044 ], [ 365797.13629999756813, 257898.645399998873472 ], [ 365776.296300001442432, 257883.909400001168251 ], [ 365774.699799999594688, 257881.996500000357628 ], [ 365769.879900000989437, 257879.846099998801947 ], [ 365765.04389999806881, 257879.595400001853704 ], [ 365760.193400003015995, 257881.033399999141693 ], [ 365755.355499997735023, 257880.99379999935627 ], [ 365749.731100000441074, 257878.625700000673532 ], [ 365738.466099999845028, 257875.789299998432398 ], [ 365730.392200000584126, 257876.989799998700619 ], [ 365723.914700001478195, 257880.103199999779463 ], [ 365737.651500001549721, 257971.407999999821186 ], [ 365839.891400001943111, 257991.243200000375509 ], [ 365887.958599999547005, 257983.140900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103303010200", "MAP": "D9-1053-T72", "PARCEL_NAM": "C", "ACRE": "5.25", "LONGITUDE": -64.86496189, "LATITUDE": 18.3495725, "OBJECTID_1": 7179, "PARCEL_NO_": "103303010200", "Tax_Legal_": "COKI POINT PCL C EAST END QTR", "Name": "DEPT OF PLANNING & NATURAL RES", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 544100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 751.36857335800005, "SHAPE_Area": 14487.5537893 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365711.222499996423721, 257829.932700000703335 ], [ 365700.997400000691414, 257825.242400001734495 ], [ 365688.157499998807907, 257817.960099998861551 ], [ 365636.092500001192093, 257777.004000000655651 ], [ 365631.295999996364117, 257772.109600000083447 ], [ 365617.682199999690056, 257761.021299999207258 ], [ 365609.648699998855591, 257755.184500001370907 ], [ 365610.161200001835823, 257812.124000001698732 ], [ 365624.489399999380112, 257813.850400000810623 ], [ 365646.14299999922514, 257827.748700000345707 ], [ 365679.808499999344349, 257851.455600000917912 ], [ 365691.887000001966953, 257853.454300001263618 ], [ 365701.52139999717474, 257858.388300001621246 ], [ 365707.9341000020504, 257862.873799998313189 ], [ 365714.310900002717972, 257871.580800000578165 ], [ 365716.228000000119209, 257873.549199998378754 ], [ 365719.906499996781349, 257877.326099999248981 ], [ 365723.914700001478195, 257880.103199999779463 ], [ 365730.392200000584126, 257876.989799998700619 ], [ 365738.466099999845028, 257875.789299998432398 ], [ 365749.731100000441074, 257878.625700000673532 ], [ 365755.355499997735023, 257880.99379999935627 ], [ 365760.193400003015995, 257881.033399999141693 ], [ 365765.04389999806881, 257879.595400001853704 ], [ 365769.879900000989437, 257879.846099998801947 ], [ 365774.699799999594688, 257881.996500000357628 ], [ 365776.296300001442432, 257883.909400001168251 ], [ 365797.13629999756813, 257898.645399998873472 ], [ 365801.957999996840954, 257900.584699999541044 ], [ 365807.594999998807907, 257901.47520000115037 ], [ 365818.883400000631809, 257901.567600000649691 ], [ 365832.619499996304512, 257898.302499998360872 ], [ 365852.773699998855591, 257898.889699999243021 ], [ 365858.4341000020504, 257897.036200001835823 ], [ 365861.686300002038479, 257893.89640000090003 ], [ 365864.92230000346899, 257892.656300000846386 ], [ 365877.026000000536442, 257891.69990000128746 ], [ 365884.268399998545647, 257893.447900000959635 ], [ 365892.290200002491474, 257898.368700001388788 ], [ 365898.833400003612041, 257900.483399998396635 ], [ 365882.478900000452995, 257834.630399998277426 ], [ 365874.284500002861023, 257834.893300000578165 ], [ 365863.840199999511242, 257830.374800000339746 ], [ 365834.863300003111362, 257824.227099999785423 ], [ 365824.383000001311302, 257823.93019999936223 ], [ 365807.425300002098083, 257826.746700000017881 ], [ 365788.003600001335144, 257834.82039999961853 ], [ 365772.647699996829033, 257838.916600000113249 ], [ 365756.508900001645088, 257840.262200001627207 ], [ 365754.088200002908707, 257840.453400000929832 ], [ 365738.791599996387959, 257837.583999998867512 ], [ 365727.521200001239777, 257835.380800001323223 ], [ 365712.242600001394749, 257830.400600001215935 ], [ 365711.222499996423721, 257829.932700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103303010200", "MAP": "D9-1053-T72", "PARCEL_NAM": "C", "ACRE": null, "LONGITUDE": -64.8652132, "LATITUDE": 18.34904804, "OBJECTID_1": 7179, "PARCEL_NO_": "103303010200", "Tax_Legal_": "COKI POINT PCL C EAST END QTR", "Name": "DEPT OF PLANNING & NATURAL RES", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 544100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 714.17408422200003, "SHAPE_Area": 5713.5561226700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365880.325000002980232, 257825.957299999892712 ], [ 365867.304099999368191, 257773.527699999511242 ], [ 365861.843800000846386, 257780.751499999314547 ], [ 365856.968199998140335, 257785.144600000232458 ], [ 365846.444700002670288, 257789.913600001484156 ], [ 365842.396999999880791, 257791.780299998819828 ], [ 365830.262699998915195, 257796.325100000947714 ], [ 365814.923000000417233, 257798.521499998867512 ], [ 365810.868100002408028, 257801.232599999755621 ], [ 365809.226700000464916, 257804.596599999815226 ], [ 365801.935699999332428, 257808.547699999064207 ], [ 365794.655500002205372, 257811.232400000095367 ], [ 365784.151900000870228, 257813.679499998688698 ], [ 365773.662600003182888, 257814.438000001013279 ], [ 365768.810400001704693, 257816.087099999189377 ], [ 365752.67509999871254, 257817.010499998927116 ], [ 365727.63740000128746, 257812.665500000119209 ], [ 365712.834200002253056, 257803.489599999040365 ], [ 365707.614100001752377, 257798.489900000393391 ], [ 365701.344400003552437, 257792.484900001436472 ], [ 365691.492600001394749, 257787.577199999243021 ], [ 365677.559500001370907, 257779.964200001209974 ], [ 365663.543099999427795, 257773.006799999624491 ], [ 365660.359200000762939, 257768.125599998980761 ], [ 365654.819300003349781, 257755.836800001561642 ], [ 365648.429899998009205, 257748.607299998402596 ], [ 365644.463100001215935, 257740.975499998778105 ], [ 365638.876500003039837, 257734.174800001084805 ], [ 365630.885300002992153, 257725.665699999779463 ], [ 365622.071599997580051, 257719.049600001424551 ], [ 365609.298199996352196, 257703.957400001585484 ], [ 365609.169900000095367, 257703.837900001555681 ], [ 365609.554300002753735, 257744.701299998909235 ], [ 365623.380300000309944, 257754.735100001096725 ], [ 365693.862899996340275, 257810.829599998891354 ], [ 365709.983499996364117, 257819.135999999940395 ], [ 365716.342500001192093, 257822.412599999457598 ], [ 365738.870700001716614, 257828.296599999070168 ], [ 365743.697800002992153, 257829.602600000798702 ], [ 365759.802500002086163, 257832.267599999904633 ], [ 365780.80799999833107, 257827.584300000220537 ], [ 365797.801700003445148, 257820.54619999974966 ], [ 365809.930500000715256, 257816.634700000286102 ], [ 365820.425200000405312, 257815.243000000715256 ], [ 365836.549599997699261, 257815.585999999195337 ], [ 365866.334600001573563, 257821.52930000051856 ], [ 365877.585199996829033, 257826.054400000721216 ], [ 365880.325000002980232, 257825.957299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104039500", "MAP": null, "PARCEL_NAM": "215-202", "ACRE": null, "LONGITUDE": -64.89082992, "LATITUDE": 18.34841921, "OBJECTID_1": 6923, "PARCEL_NO_": "103104039500", "Tax_Legal_": "215-202 ANNAS RETREAT NEW QUARTER", "Name": "SINGLETON, JEAN", "Address": "PO Box 9332", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 100600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.937080207400001, "SHAPE_Area": 504.35624057799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363029.444799996912479, 257714.197599999606609 ], [ 363048.338500000536442, 257696.794399999082088 ], [ 363045.13289999961853, 257693.736699998378754 ], [ 363031.535300001502037, 257680.748700000345707 ], [ 363024.210100002586842, 257688.710299998521805 ], [ 363019.354299999773502, 257690.781500000506639 ], [ 363023.342699997127056, 257695.880399998277426 ], [ 363019.285899996757507, 257698.802499998360872 ], [ 363029.444799996912479, 257714.197599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104039400", "MAP": null, "PARCEL_NAM": "215-205", "ACRE": null, "LONGITUDE": -64.89068213, "LATITUDE": 18.34827262, "OBJECTID_1": 6922, "PARCEL_NO_": "103104039400", "Tax_Legal_": "215-205 ANNA'S RETEAT NEW QTR.", "Name": "TURNBULL, MARVIN & CYNTHELA", "Address": "PO Box 502603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 159200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.634419447200003, "SHAPE_Area": 530.653979843 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363062.194899998605251, 257678.677600000053644 ], [ 363046.988300003111362, 257665.254299998283386 ], [ 363031.535300001502037, 257680.748700000345707 ], [ 363045.13289999961853, 257693.736699998378754 ], [ 363048.338500000536442, 257696.794399999082088 ], [ 363065.420199997723103, 257681.060300000011921 ], [ 363062.194899998605251, 257678.677600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104039500", "MAP": "D9-6838-T000", "PARCEL_NAM": "394-279-A", "ACRE": null, "LONGITUDE": -64.89072746, "LATITUDE": 18.34850812, "OBJECTID_1": 6923, "PARCEL_NO_": "103104039500", "Tax_Legal_": "215-202 ANNAS RETREAT NEW QUARTER", "Name": "SINGLETON, JEAN", "Address": "PO Box 9332", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 100600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.457653410800006, "SHAPE_Area": 190.33731454700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363030.957599997520447, 257716.490100000053644 ], [ 363032.444200001657009, 257715.5472999997437 ], [ 363036.128700003027916, 257713.754700001329184 ], [ 363041.33049999922514, 257713.342599999159575 ], [ 363042.719099998474121, 257714.186599999666214 ], [ 363054.731299996376038, 257702.892299998551607 ], [ 363048.338500000536442, 257696.794399999082088 ], [ 363029.444799996912479, 257714.197599999606609 ], [ 363030.957599997520447, 257716.490100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103046800", "MAP": "C9-211-T76", "PARCEL_NAM": "394-391", "ACRE": ".292", "LONGITUDE": -64.89164752000001, "LATITUDE": 18.34935331, "OBJECTID_1": 6687, "PARCEL_NO_": "103103046800", "Tax_Legal_": "ANNAS RETREAT 394-391 NEW QTR", "Name": "AGARD, JOHN & ELEANOR", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36400, "Improved_V": 124400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.53154108300001, "SHAPE_Area": 1313.3959985199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362957.863499999046326, 257764.409400001168251 ], [ 362947.893100000917912, 257770.303599998354912 ], [ 362935.604299999773502, 257778.215599998831749 ], [ 362929.32039999961853, 257825.3429000005126 ], [ 362931.116300001740456, 257825.792500000447035 ], [ 362956.101199999451637, 257827.2635000012815 ], [ 362956.424800001084805, 257789.269400000572205 ], [ 362957.304899998009205, 257780.621700000017881 ], [ 362957.863499999046326, 257764.409400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103103046700", "MAP": "C9-211-T76", "PARCEL_NAM": "394-392", "ACRE": ".220", "LONGITUDE": -64.89190383, "LATITUDE": 18.3493902, "OBJECTID_1": 6686, "PARCEL_NO_": "103103046700", "Tax_Legal_": "ANNAS RETREAT 394-392 NEW QTR", "Name": "ADAMS, PHILLIP & AURILLETTE", "Address": "PO Box 8978", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31700, "Improved_V": 322400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.467413177, "SHAPE_Area": 1067.9286141699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362935.604299999773502, 257778.215599998831749 ], [ 362901.798900000751019, 257797.269799999892712 ], [ 362892.423600003123283, 257803.737900000065565 ], [ 362898.188699997961521, 257810.113200001418591 ], [ 362902.990599997341633, 257814.374299999326468 ], [ 362911.816899999976158, 257819.512800000607967 ], [ 362920.655799999833107, 257823.173799999058247 ], [ 362929.32039999961853, 257825.3429000005126 ], [ 362935.604299999773502, 257778.215599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030300", "MAP": "D9-8222-T008", "PARCEL_NAM": "394-394-A", "ACRE": ".306", "LONGITUDE": -64.89126298, "LATITUDE": 18.34905467, "OBJECTID_1": 6838, "PARCEL_NO_": "103104030300", "Tax_Legal_": "ANNAS RETREAT 394-393 & 394 NEW QUARTER", "Name": "EDGE DEVELOPMENT GROUP LLC", "Address": "4003 Raphune Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022904, "Country": "United States", "Land_Value": 208600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.55377569699999, "SHAPE_Area": 1872.01851951 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363009.697200000286102, 257783.161499999463558 ], [ 363008.669399999082088, 257735.586599998176098 ], [ 362972.478000000119209, 257755.76969999819994 ], [ 362957.863499999046326, 257764.409400001168251 ], [ 362957.498800002038479, 257769.741200000047684 ], [ 362957.304899998009205, 257780.621700000017881 ], [ 362956.424800001084805, 257789.269400000572205 ], [ 362986.294399999082088, 257785.291900001466274 ], [ 363009.697200000286102, 257783.161499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030300", "MAP": null, "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.89125867, "LATITUDE": 18.34886819, "OBJECTID_1": 6838, "PARCEL_NO_": "103104030300", "Tax_Legal_": "ANNAS RETREAT 394-393 & 394 NEW QUARTER", "Name": "EDGE DEVELOPMENT GROUP LLC", "Address": "4003 Raphune Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022904, "Country": "United States", "Land_Value": 208600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 379.960161922, "SHAPE_Area": 1056.3649799899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363045.632600001990795, 257716.962699998170137 ], [ 363045.133299998939037, 257715.654100000858307 ], [ 363042.719099998474121, 257714.186599999666214 ], [ 363041.33049999922514, 257713.342599999159575 ], [ 363036.128700003027916, 257713.754700001329184 ], [ 363032.444200001657009, 257715.5472999997437 ], [ 363030.957599997520447, 257716.490100000053644 ], [ 363029.444799996912479, 257714.197599999606609 ], [ 363004.818000003695488, 257729.691399998962879 ], [ 362982.933200001716614, 257743.460099998861551 ], [ 362966.251299999654293, 257753.95549999922514 ], [ 362947.894100002944469, 257765.504799999296665 ], [ 362925.682300001382828, 257779.479200001806021 ], [ 362906.410099998116493, 257791.604200001806021 ], [ 362892.641599997878075, 257798.668699998408556 ], [ 362887.803800001740456, 257798.629099998623133 ], [ 362892.423600003123283, 257803.737900000065565 ], [ 362901.798900000751019, 257797.269799999892712 ], [ 362932.981799997389317, 257779.903999999165535 ], [ 362947.893100000917912, 257770.303599998354912 ], [ 362972.478000000119209, 257755.76969999819994 ], [ 363027.778399996459484, 257724.929999999701977 ], [ 363029.764600001275539, 257725.098700001835823 ], [ 363030.824500001966953, 257726.323399998247623 ], [ 363031.729000002145767, 257727.850699998438358 ], [ 363035.384099997580051, 257729.553100001066923 ], [ 363036.754100002348423, 257729.615100000053644 ], [ 363039.510499998927116, 257729.739799998700619 ], [ 363039.645499996840954, 257729.703999999910593 ], [ 363043.954300001263618, 257728.561500001698732 ], [ 363045.80290000140667, 257726.9054000005126 ], [ 363046.744599997997284, 257724.026000000536442 ], [ 363047.22240000218153, 257721.750500001013279 ], [ 363046.180399999022484, 257718.398400001227856 ], [ 363045.632600001990795, 257716.962699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104034900", "MAP": "D9-6838-T000", "PARCEL_NAM": "394-279 REM", "ACRE": ".32", "LONGITUDE": -64.89041041, "LATITUDE": 18.34849465, "OBJECTID_1": 6882, "PARCEL_NO_": "103104034900", "Tax_Legal_": "ANNAS RETREAT 394-279&394-394-1 No.1 NEW QTR.", "Name": "ROMNEY, ELVET & MARY", "Address": "PO Box 8687", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63000, "Improved_V": 313800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.88204661, "SHAPE_Area": 1586.08658769 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363105.708700001239777, 257695.625999998301268 ], [ 363076.802699998021126, 257681.926899999380112 ], [ 363054.731299996376038, 257702.892299998551607 ], [ 363042.719099998474121, 257714.186599999666214 ], [ 363045.133299998939037, 257715.654100000858307 ], [ 363045.632600001990795, 257716.962699998170137 ], [ 363046.180399999022484, 257718.398400001227856 ], [ 363046.567699998617172, 257719.644200000911951 ], [ 363096.480200000107288, 257724.285900000482798 ], [ 363096.528300002217293, 257718.644200000911951 ], [ 363099.042499996721745, 257707.476799998432398 ], [ 363102.330700002610683, 257700.115499999374151 ], [ 363105.708700001239777, 257695.625999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104034900", "MAP": "D9-6838-T000", "PARCEL_NAM": "394-394-1", "ACRE": ".03", "LONGITUDE": -64.89053495, "LATITUDE": 18.34865377, "OBJECTID_1": 6882, "PARCEL_NO_": "103104034900", "Tax_Legal_": "ANNAS RETREAT 394-279&394-394-1 No.1 NEW QTR.", "Name": "ROMNEY, ELVET & MARY", "Address": "PO Box 8687", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63000, "Improved_V": 313800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.232425601, "SHAPE_Area": 158.39245640799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363096.480200000107288, 257724.285900000482798 ], [ 363046.567699998617172, 257719.644200000911951 ], [ 363047.22240000218153, 257721.750500001013279 ], [ 363046.744599997997284, 257724.026000000536442 ], [ 363046.079000003635883, 257726.061200000345707 ], [ 363053.012299999594688, 257725.81700000166893 ], [ 363096.480200000107288, 257724.285900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104039500", "MAP": "D9-6838-T000", "PARCEL_NAM": "394-279-A", "ACRE": null, "LONGITUDE": -64.89056808, "LATITUDE": 18.34836955, "OBJECTID_1": 6923, "PARCEL_NO_": "103104039500", "Tax_Legal_": "215-202 ANNAS RETREAT NEW QUARTER", "Name": "SINGLETON, JEAN", "Address": "PO Box 9332", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 100600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.5617178591, "SHAPE_Area": 203.795001869 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363072.099799998104572, 257686.394200000911951 ], [ 363065.420199997723103, 257681.060300000011921 ], [ 363048.338500000536442, 257696.794399999082088 ], [ 363054.731299996376038, 257702.892299998551607 ], [ 363072.099799998104572, 257686.394200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030300", "MAP": "D9-8222-T008", "PARCEL_NAM": "394-394-C", "ACRE": ".582", "LONGITUDE": -64.89040556, "LATITUDE": 18.34890461, "OBJECTID_1": 6838, "PARCEL_NO_": "103104030300", "Tax_Legal_": "ANNAS RETREAT 394-393 & 394 NEW QUARTER", "Name": "EDGE DEVELOPMENT GROUP LLC", "Address": "4003 Raphune Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022904, "Country": "United States", "Land_Value": 208600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.71716060399999, "SHAPE_Area": 2547.1345927799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363096.548100002110004, 257746.785000000149012 ], [ 363096.483499996364117, 257727.011500000953674 ], [ 363096.476099997758865, 257724.765500001609325 ], [ 363096.480200000107288, 257724.285900000482798 ], [ 363053.012299999594688, 257725.81700000166893 ], [ 363046.079000003635883, 257726.061200000345707 ], [ 363045.80290000140667, 257726.9054000005126 ], [ 363043.954300001263618, 257728.561500001698732 ], [ 363039.645499996840954, 257729.703999999910593 ], [ 363039.510499998927116, 257729.739799998700619 ], [ 363039.291400000452995, 257729.729899998754263 ], [ 363071.002099998295307, 257780.707899998873472 ], [ 363090.358999997377396, 257780.232999999076128 ], [ 363111.328500002622604, 257779.77140000090003 ], [ 363113.227899998426437, 257774.10359999909997 ], [ 363110.241700001060963, 257772.90819999948144 ], [ 363107.099158803990576, 257770.780859301652526 ], [ 363104.273183243058156, 257768.248073138354812 ], [ 363101.815696461766493, 257765.356377729185624 ], [ 363099.771851164288819, 257762.158903723058756 ], [ 363098.179200001060963, 257758.714400000870228 ], [ 363096.548100002110004, 257746.785000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701030900", "MAP": "D9-8227-T008", "PARCEL_NAM": "8-1", "ACRE": ".23", "LONGITUDE": -64.8817506, "LATITUDE": 18.34219822, "OBJECTID_1": 21956, "PARCEL_NO_": "105701030900", "Tax_Legal_": "8 ANNAS RETREAT NEW QUARTER", "Name": "INDUS VALLEY, INC.", "Address": "PO Box 12287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92900, "Improved_V": 268500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.70149599199999, "SHAPE_Area": 1090.03784883 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364020.089599996805191, 257019.045200001448393 ], [ 363990.850699998438358, 256989.486000001430511 ], [ 363986.430699996650219, 256999.97690000012517 ], [ 363984.766000002622604, 257006.08500000089407 ], [ 363983.135300002992153, 257008.182599999010563 ], [ 363979.017499998211861, 257018.281399998813868 ], [ 363978.178800001740456, 257022.074200000613928 ], [ 364003.021600000560284, 257040.220499999821186 ], [ 364020.089599996805191, 257019.045200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203015700", "MAP": "D9-608-T66", "PARCEL_NAM": "14-7", "ACRE": ".58", "LONGITUDE": -64.88286657, "LATITUDE": 18.34842604, "OBJECTID_1": 6996, "PARCEL_NO_": "103203015700", "Tax_Legal_": "ANNAS RETREAT 14-7 NEW QUARTER", "Name": "WILLIAMS, SYLVIA", "Address": "PO Box 5174", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 97200, "Improved_V": 240400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.33851162900001, "SHAPE_Area": 2517.7907432100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363874.346000000834465, 257672.247299998998642 ], [ 363870.229900002479553, 257666.498599998652935 ], [ 363845.104500003159046, 257687.407400000840425 ], [ 363839.096500001847744, 257690.8429000005126 ], [ 363844.468999996781349, 257698.094000000506639 ], [ 363853.476400002837181, 257710.250900000333786 ], [ 363877.194899998605251, 257742.048500001430511 ], [ 363877.245300002396107, 257742.136199999600649 ], [ 363880.132700003683567, 257740.467500001192093 ], [ 363892.30290000140667, 257731.701200000941753 ], [ 363902.584700003266335, 257724.786100000143051 ], [ 363908.915299996733665, 257720.528400000184774 ], [ 363874.346000000834465, 257672.247299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021800", "MAP": "D9-601A-T003", "PARCEL_NAM": "21B-C", "ACRE": ".2439", "LONGITUDE": -64.89632014, "LATITUDE": 18.35687136, "OBJECTID_1": 6384, "PARCEL_NO_": "103101021800", "Tax_Legal_": "21B,ROW,21B-C,21B-2 MANDAHL GREAT NORTHSIDE QT 1", "Name": "FRANCIS, ALCEDO & ANNA-TRUSTEES", "Address": "PO Box 305037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.396509756, "SHAPE_Area": 1096.9301124900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362481.754299998283386, 258608.227099999785423 ], [ 362426.285199999809265, 258633.855099998414516 ], [ 362421.012599997222424, 258634.90089999884367 ], [ 362416.195100001990795, 258633.988499999046326 ], [ 362412.70440000295639, 258631.779100000858307 ], [ 362410.971900001168251, 258629.148600000888109 ], [ 362410.769000001251698, 258627.184799998998642 ], [ 362412.117799997329712, 258623.272100001573563 ], [ 362409.073100000619888, 258620.194499999284744 ], [ 362405.772399999201298, 258621.474800001829863 ], [ 362402.700199998915195, 258621.666999999433756 ], [ 362401.174199998378754, 258620.5641999989748 ], [ 362395.529799997806549, 258627.025800000876188 ], [ 362396.723899997770786, 258628.157000001519918 ], [ 362402.374799996614456, 258634.308499999344349 ], [ 362407.384199999272823, 258638.492600001394749 ], [ 362412.181599996984005, 258641.80290000140667 ], [ 362416.993699997663498, 258643.369300000369549 ], [ 362421.1587999984622, 258643.622299998998642 ], [ 362425.109999999403954, 258643.219399999827147 ], [ 362428.189499996602535, 258642.155299998819828 ], [ 362490.513999998569489, 258621.175500001758337 ], [ 362481.754299998283386, 258608.227099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010200", "MAP": "D9-2877-T84", "PARCEL_NAM": "21", "ACRE": null, "LONGITUDE": -64.89719084, "LATITUDE": 18.35630416, "OBJECTID_1": 6426, "PARCEL_NO_": "103103010200", "Tax_Legal_": "MANDAHL 21 GREAT NORTHSIDE QTR", "Name": "CHARLES MALONE", "Address": "6543 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 210200, "Improved_V": 50400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.68080078000003, "SHAPE_Area": 7237.9721028100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362283.875699996948242, 258572.927999999374151 ], [ 362338.791299998760223, 258615.634199999272823 ], [ 362429.822300001978874, 258551.651200000196695 ], [ 362416.2246999964118, 258538.663199998438358 ], [ 362387.429399996995926, 258511.196400001645088 ], [ 362381.6233000010252, 258530.147300001233816 ], [ 362377.518100000917912, 258538.7685999982059 ], [ 362375.89639999717474, 258539.8108000010252 ], [ 362372.624399997293949, 258545.272399999201298 ], [ 362366.130800001323223, 258550.285500001162291 ], [ 362319.587600000202656, 258523.728999998420477 ], [ 362284.502599999308586, 258571.993299998342991 ], [ 362283.875699996948242, 258572.927999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103017800", "MAP": null, "PARCEL_NAM": "21D", "ACRE": null, "LONGITUDE": -64.89785858, "LATITUDE": 18.35608867, "OBJECTID_1": 6501, "PARCEL_NO_": "103103017800", "Tax_Legal_": "MANDAHL 21D GT NORTHSIDE QTR", "Name": "HUGGINS, RUBINA MALONE", "Address": "6536 Mandahl Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.07122714100001, "SHAPE_Area": 2169.64171433 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362253.695000000298023, 258549.457400001585484 ], [ 362283.875699996948242, 258572.927999999374151 ], [ 362284.502599999308586, 258571.993299998342991 ], [ 362319.587600000202656, 258523.728999998420477 ], [ 362317.982199996709824, 258522.871500000357628 ], [ 362283.341300003230572, 258518.999299999326468 ], [ 362258.369000002741814, 258516.050700001418591 ], [ 362259.119599997997284, 258522.60080000013113 ], [ 362257.388300001621246, 258536.518800001591444 ], [ 362255.69650000333786, 258545.793099999427795 ], [ 362254.058700002729893, 258548.734999999403954 ], [ 362253.695000000298023, 258549.457400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021400", "MAP": "F9-576-T60", "PARCEL_NAM": "20A-1", "ACRE": "1.04", "LONGITUDE": -64.89721237000001, "LATITUDE": 18.35720804, "OBJECTID_1": 6380, "PARCEL_NO_": "103101021400", "Tax_Legal_": "MANDAHL 20A-1 GR NORTHSIDE QTR", "Name": "LEONARD AND HELENE SMOLLETT FAMILY TRUST", "Address": "6539 Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98000, "Improved_V": 255300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.154325094, "SHAPE_Area": 4763.8905966399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362393.048000000417233, 258703.548599999397993 ], [ 362355.312200002372265, 258628.482099998742342 ], [ 362338.791299998760223, 258615.634199999272823 ], [ 362307.803999997675419, 258591.536299999803305 ], [ 362309.257299996912479, 258600.482500001788139 ], [ 362317.759999997913837, 258643.615100000053644 ], [ 362318.51410000026226, 258649.743000000715256 ], [ 362363.787000000476837, 258730.751299999654293 ], [ 362393.048000000417233, 258703.548599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021700", "MAP": "F9-576-T60", "PARCEL_NAM": "20A-2", "ACRE": "1.02", "LONGITUDE": -64.89793999, "LATITUDE": 18.35662146, "OBJECTID_1": 6383, "PARCEL_NO_": "103101021700", "Tax_Legal_": "MANDAHL 20A-2 GT. NORTHSIDE", "Name": "MELFORD BROOKS EDUCATIONAL TRUST", "Address": "PO Box 10739", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 108300, "Improved_V": 372200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.10341676000002, "SHAPE_Area": 4543.0711130099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362263.965400002896786, 258616.36600000038743 ], [ 362292.879399999976158, 258629.901500001549721 ], [ 362298.291599996387959, 258657.176899999380112 ], [ 362317.759999997913837, 258643.615100000053644 ], [ 362309.257299996912479, 258600.482500001788139 ], [ 362307.803999997675419, 258591.536299999803305 ], [ 362295.588899999856949, 258582.037000000476837 ], [ 362283.875699996948242, 258572.927999999374151 ], [ 362253.695000000298023, 258549.457400001585484 ], [ 362250.777800001204014, 258555.252000000327826 ], [ 362249.132799997925758, 258559.038199998438358 ], [ 362215.773699998855591, 258594.017799999564886 ], [ 362263.965400002896786, 258616.36600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101022000", "MAP": "D9-6435-T98", "PARCEL_NAM": "21B-1", "ACRE": null, "LONGITUDE": -64.89701911, "LATITUDE": 18.35685105, "OBJECTID_1": 6386, "PARCEL_NO_": "103101022000", "Tax_Legal_": "MANDAHL 21-B-1 GT. NORTHSIDE QTR.", "Name": "FRANCIS, ALCEDO & ANNA-TRUSTEE", "Address": "PO Box 305037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.56515756, "SHAPE_Area": 1607.3088513299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362367.064300000667572, 258651.860100001096725 ], [ 362402.848700001835823, 258634.704300001263618 ], [ 362402.374799996614456, 258634.308499999344349 ], [ 362396.723899997770786, 258628.157000001519918 ], [ 362364.45830000191927, 258597.593600001186132 ], [ 362338.791299998760223, 258615.634199999272823 ], [ 362355.312200002372265, 258628.482099998742342 ], [ 362367.064300000667572, 258651.860100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021800", "MAP": "A9-601A-T003", "PARCEL_NAM": "21B-2", "ACRE": "1.594", "LONGITUDE": -64.89651174, "LATITUDE": 18.35659322, "OBJECTID_1": 6384, "PARCEL_NO_": "103101021800", "Tax_Legal_": "21B,ROW,21B-C,21B-2 MANDAHL GREAT NORTHSIDE QT 1", "Name": "FRANCIS, ALCEDO & ANNA-TRUSTEES", "Address": "PO Box 305037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.06890221899999, "SHAPE_Area": 5245.99934029 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362395.529799997806549, 258627.025800000876188 ], [ 362401.174199998378754, 258620.5641999989748 ], [ 362402.700199998915195, 258621.666999999433756 ], [ 362405.772399999201298, 258621.474800001829863 ], [ 362409.073100000619888, 258620.194499999284744 ], [ 362412.117799997329712, 258623.272100001573563 ], [ 362410.769000001251698, 258627.184799998998642 ], [ 362410.971900001168251, 258629.148600000888109 ], [ 362412.70440000295639, 258631.779100000858307 ], [ 362416.195100001990795, 258633.988499999046326 ], [ 362421.012599997222424, 258634.90089999884367 ], [ 362426.285199999809265, 258633.855099998414516 ], [ 362481.754299998283386, 258608.227099999785423 ], [ 362469.015100002288818, 258589.124400001019239 ], [ 362455.421099998056889, 258575.714200001209974 ], [ 362448.219999998807907, 258569.111400000751019 ], [ 362429.822300001978874, 258551.651200000196695 ], [ 362364.45830000191927, 258597.593600001186132 ], [ 362395.529799997806549, 258627.025800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021800", "MAP": "A9-601A-T003", "PARCEL_NAM": "21B", "ACRE": "9.098", "LONGITUDE": -64.8957922, "LATITUDE": 18.35800755, "OBJECTID_1": 6384, "PARCEL_NO_": "103101021800", "Tax_Legal_": "21B,ROW,21B-C,21B-2 MANDAHL GREAT NORTHSIDE QT 1", "Name": "FRANCIS, ALCEDO & ANNA-TRUSTEES", "Address": "PO Box 305037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 835.61007586100004, "SHAPE_Area": 35554.0540951 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362402.848700001835823, 258634.704300001263618 ], [ 362367.064300000667572, 258651.860100001096725 ], [ 362393.048000000417233, 258703.548599999397993 ], [ 362420.040100000798702, 258753.376499999314547 ], [ 362447.822300001978874, 258805.110800001770258 ], [ 362477.195500001311302, 258859.391100000590086 ], [ 362505.554899998009205, 258843.368999999016523 ], [ 362534.926299996674061, 258897.860399998724461 ], [ 362551.155100002884865, 258885.960900001227856 ], [ 362595.726999998092651, 258859.938999999314547 ], [ 362624.932300001382828, 258839.279800001531839 ], [ 362632.225100003182888, 258835.117600001394749 ], [ 362579.679200001060963, 258755.949700001627207 ], [ 362563.75789999961853, 258731.754700001329184 ], [ 362560.574000000953674, 258726.873500000685453 ], [ 362556.5945999994874, 258720.719200000166893 ], [ 362529.523400001227856, 258680.178800001740456 ], [ 362514.397699996829033, 258657.256900001317263 ], [ 362490.513999998569489, 258621.175500001758337 ], [ 362428.189499996602535, 258642.155299998819828 ], [ 362425.109999999403954, 258643.219399999827147 ], [ 362421.1587999984622, 258643.622299998998642 ], [ 362416.993699997663498, 258643.369300000369549 ], [ 362412.181599996984005, 258641.80290000140667 ], [ 362407.384199999272823, 258638.492600001394749 ], [ 362402.848700001835823, 258634.704300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023300", "MAP": "D9-900-T70", "PARCEL_NAM": "22-22-1", "ACRE": null, "LONGITUDE": -64.89583827, "LATITUDE": 18.35674637, "OBJECTID_1": 6397, "PARCEL_NO_": "103101023300", "Tax_Legal_": "MANDAHL 22-22 GT. NORTHSIDE", "Name": "SHAW, DAVID and THAMES A", "Address": "PO Box 10978", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30000, "Improved_V": 184600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.970226585399999, "SHAPE_Area": 98.718669315699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362500.157899998128414, 258607.918499998748302 ], [ 362486.76519999653101, 258615.634100001305342 ], [ 362490.513999998569489, 258621.175500001758337 ], [ 362505.112199999392033, 258611.373599998652935 ], [ 362501.897699996829033, 258610.080699998885393 ], [ 362500.157899998128414, 258607.918499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103020400", "MAP": "D9-6058-T96", "PARCEL_NAM": "15A-1-REM", "ACRE": ".148", "LONGITUDE": -64.89809662, "LATITUDE": 18.35359969, "OBJECTID_1": 6513, "PARCEL_NO_": "103103020400", "Tax_Legal_": "MANDAHL 15A-1&14C-1 GR NORTHSIDE", "Name": "CASTRO, BRUNILDA", "Address": "PO Box 328", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16200, "Improved_V": 273900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.71905702399999, "SHAPE_Area": 800.52566300499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362270.323100000619888, 258248.692999999970198 ], [ 362259.718500003218651, 258243.238000001758337 ], [ 362250.14190000295639, 258251.272100001573563 ], [ 362244.326899997889996, 258271.278400000184774 ], [ 362244.299900002777576, 258274.444600000977516 ], [ 362265.985799998044968, 258284.543400000780821 ], [ 362272.562200002372265, 258269.820700000971556 ], [ 362270.323100000619888, 258248.692999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103020500", "MAP": "D9-6058-T96", "PARCEL_NAM": "14C-REM", "ACRE": null, "LONGITUDE": -64.8977594, "LATITUDE": 18.35353834, "OBJECTID_1": 6514, "PARCEL_NO_": "103103020500", "Tax_Legal_": "MANDAHL 14C G NORTHSIDE", "Name": "CASTRO, VICTOR & ANDRE", "Address": "PO Box328", "City": "St.Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44800, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.27835090400001, "SHAPE_Area": 2967.0132189400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362317.555699996650219, 258288.976199999451637 ], [ 362324.495300002396107, 258231.615699999034405 ], [ 362277.756099998950958, 258228.066599998623133 ], [ 362272.070600003004074, 258232.875300001353025 ], [ 362259.718500003218651, 258243.238000001758337 ], [ 362270.323100000619888, 258248.692999999970198 ], [ 362272.562200002372265, 258269.820700000971556 ], [ 362265.985799998044968, 258284.543400000780821 ], [ 362287.741899996995926, 258286.410199999809265 ], [ 362317.555699996650219, 258288.976199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103020400", "MAP": "D9-6058-T96", "PARCEL_NAM": "14-5 ROW", "ACRE": null, "LONGITUDE": -64.89747391, "LATITUDE": 18.35356584, "OBJECTID_1": 6513, "PARCEL_NO_": "103103020400", "Tax_Legal_": "MANDAHL 15A-1&14C-1 GR NORTHSIDE", "Name": "CASTRO, BRUNILDA", "Address": "PO Box 328", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16200, "Improved_V": 273900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.608976205, "SHAPE_Area": 508.64546414900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362317.555699996650219, 258288.976199999451637 ], [ 362326.757700003683567, 258289.646000001579523 ], [ 362329.914700001478195, 258258.046700000762939 ], [ 362333.359300002455711, 258232.32149999961257 ], [ 362326.912399999797344, 258231.846500001847744 ], [ 362324.495300002396107, 258231.615699999034405 ], [ 362317.555699996650219, 258288.976199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89093473, "LATITUDE": 18.35428792, "OBJECTID_1": 6769, "PARCEL_NO_": "103104013700", "Tax_Legal_": "MANDAHL 26D-A GT. NORTHSIDE QTR.", "Name": "BRIN, FRANCIA M", "Address": "7631 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52000, "Improved_V": 277500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.685624308, "SHAPE_Area": 2082.4858650299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363039.767099998891354, 258323.596000000834465 ], [ 362998.643299996852875, 258323.470499999821186 ], [ 362994.611800000071526, 258323.4375 ], [ 362991.802599996328354, 258369.221799999475479 ], [ 363036.952500000596046, 258370.0135000012815 ], [ 363039.767099998891354, 258323.596000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104010800", "MAP": "A3-25-T36", "PARCEL_NAM": "31", "ACRE": null, "LONGITUDE": -64.89070378, "LATITUDE": 18.35388184, "OBJECTID_1": 6742, "PARCEL_NO_": "103104010800", "Tax_Legal_": "MANDAHL EST. 31 GT NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 256200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 467.64257800199999, "SHAPE_Area": 4660.5332584300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363032.329300001263618, 258312.799300000071526 ], [ 363039.767099998891354, 258323.596000000834465 ], [ 363036.952500000596046, 258370.0135000012815 ], [ 363040.068099997937679, 258382.915699999779463 ], [ 363044.047499999403954, 258389.070000000298023 ], [ 363047.249399997293949, 258391.840399999171495 ], [ 363053.656700000166893, 258396.959100000560284 ], [ 363083.3716000020504, 258411.134500000625849 ], [ 363087.469700001180172, 258403.357599999755621 ], [ 363052.141199998557568, 258385.547699999064207 ], [ 363048.143799997866154, 258381.504200000315905 ], [ 363047.364500001072884, 258378.331399999558926 ], [ 363047.432800002396107, 258370.310400001704693 ], [ 363048.636500000953674, 258323.668600000441074 ], [ 363051.069799996912479, 258321.999699998646975 ], [ 363059.145599998533726, 258320.588199999183416 ], [ 363063.280900001525879, 258317.21000000089407 ], [ 363077.821999996900558, 258305.331199999898672 ], [ 363078.780799999833107, 258291.089600000530481 ], [ 363020.147699996829033, 258240.867400001734495 ], [ 363012.290600001811981, 258235.978399999439716 ], [ 362999.24210000038147, 258253.181200001388788 ], [ 362995.162000000476837, 258258.84739999845624 ], [ 363032.329300001263618, 258312.799300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89131556, "LATITUDE": 18.35379207, "OBJECTID_1": 6492, "PARCEL_NO_": "103103016900", "Tax_Legal_": "MANDAHL 26D-E GT. NORTHSIDE", "Name": "BRYAN, MAUREEN E", "Address": "7640 ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.13637746200001, "SHAPE_Area": 2019.9369665500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362995.162000000476837, 258258.84739999845624 ], [ 362949.819700002670288, 258280.641100000590086 ], [ 362955.168999999761581, 258315.304200001060963 ], [ 362997.919799998402596, 258313.754299998283386 ], [ 362995.162000000476837, 258258.84739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "103104013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89098288, "LATITUDE": 18.35388516, "OBJECTID_1": 6770, "PARCEL_NO_": "103104013800", "Tax_Legal_": "MANDAHL 26D-B GT. NORTHSIDE QTR.", "Name": "SMITH, DONNA M", "Address": "6540 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.468876564, "SHAPE_Area": 1335.02017127 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362995.162000000476837, 258258.84739999845624 ], [ 362997.919799998402596, 258313.754299998283386 ], [ 362998.643299996852875, 258323.470499999821186 ], [ 363039.767099998891354, 258323.596000000834465 ], [ 362995.162000000476837, 258258.84739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014500", "MAP": "D9-9045-T015", "PARCEL_NAM": "26E", "ACRE": ".794", "LONGITUDE": -64.89182155, "LATITUDE": 18.35369451, "OBJECTID_1": 6470, "PARCEL_NO_": "103103014500", "Tax_Legal_": "MANDAHL 25G & 26E 4 GREAT NORTHSIDE", "Name": "MANDAHL RLTY. C/O SWIDLER & SWI", "Address": "PO Box 2208", "City": "ROAD TOWN", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 183500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.097375193, "SHAPE_Area": 2093.8052531899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362995.162000000476837, 258258.84739999845624 ], [ 362986.270999997854233, 258261.307700000703335 ], [ 362983.036799997091293, 258262.33669999986887 ], [ 362939.504900000989437, 258260.925000000745058 ], [ 362927.390399999916553, 258263.147799998521805 ], [ 362901.478699997067451, 258275.8125 ], [ 362882.033699996769428, 258286.630199998617172 ], [ 362875.563500002026558, 258288.899300001561642 ], [ 362873.93639999628067, 258290.574700001627207 ], [ 362873.104999996721745, 258293.523200001567602 ], [ 362873.889700002968311, 258296.062800001353025 ], [ 362882.665600001811981, 258307.111400000751019 ], [ 362949.819700002670288, 258280.641100000590086 ], [ 362995.162000000476837, 258258.84739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104010900", "MAP": "D9-7602-T005", "PARCEL_NAM": "28", "ACRE": "19.175", "LONGITUDE": -64.89021656, "LATITUDE": 18.35239687, "OBJECTID_1": 6743, "PARCEL_NO_": "103104010900", "Tax_Legal_": "28 ESTATE MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS 2 INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 491600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1246.36196892, "SHAPE_Area": 69855.750648800022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362988.936300002038479, 258232.409699998795986 ], [ 363012.290600001811981, 258235.978399999439716 ], [ 363020.147699996829033, 258240.867400001734495 ], [ 363078.780799999833107, 258291.089600000530481 ], [ 363077.821999996900558, 258305.331199999898672 ], [ 363059.145599998533726, 258320.588199999183416 ], [ 363051.069799996912479, 258321.999699998646975 ], [ 363048.636500000953674, 258323.668600000441074 ], [ 363047.432800002396107, 258370.310400001704693 ], [ 363047.364500001072884, 258378.331399999558926 ], [ 363048.143799997866154, 258381.504200000315905 ], [ 363052.141199998557568, 258385.547699999064207 ], [ 363087.469700001180172, 258403.357599999755621 ], [ 363110.38629999756813, 258363.648499999195337 ], [ 363176.238899998366833, 258300.648299999535084 ], [ 363188.213799998164177, 257936.187699999660254 ], [ 363178.514700002968311, 257938.85249999910593 ], [ 363163.981299996376038, 257941.055599998682737 ], [ 363124.455799996852875, 257942.631999999284744 ], [ 363072.045500002801418, 257942.203000001609325 ], [ 363017.239600002765656, 257939.010200001299381 ], [ 362986.1587999984622, 258179.824700001627207 ], [ 362986.011399999260902, 258197.133200000971556 ], [ 362983.480899997055531, 258210.200300000607967 ], [ 362981.00620000064373, 258216.723900001496077 ], [ 362973.668499998748302, 258226.163100000470877 ], [ 362974.449699997901917, 258229.124800000339746 ], [ 362988.936300002038479, 258232.409699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004018600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89991185, "LATITUDE": 18.35493512, "OBJECTID_1": 6060, "PARCEL_NO_": "103004018600", "Tax_Legal_": "MANDAHL 2D-3-A GT.NORTHSIDE QTR.", "Name": "CLAIRMONT, HARRIET J", "Address": "7630 Estate Brookman", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27100, "Improved_V": 188700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.19786685099999, "SHAPE_Area": 1090.5575486299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362091.208499997854233, 258403.037900000810623 ], [ 362037.2516999989748, 258397.412300001829863 ], [ 362038.360100001096725, 258406.170200001448393 ], [ 362039.603200003504753, 258417.395500000566244 ], [ 362097.550499998033047, 258422.621800001710653 ], [ 362094.760600000619888, 258411.486900001764297 ], [ 362091.208499997854233, 258403.037900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004019200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89987396, "LATITUDE": 18.35514277, "OBJECTID_1": 6066, "PARCEL_NO_": "103004019200", "Tax_Legal_": "MANDAHL 2D-3-D GT. NORTHSIDE QTR.", "Name": "HANSEN, LORELIE M", "Address": "P.O. BOX 5905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 142900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.22195265299999, "SHAPE_Area": 1545.99052987 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362097.550499998033047, 258422.621800001710653 ], [ 362039.603200003504753, 258417.395500000566244 ], [ 362040.60639999806881, 258426.453499998897314 ], [ 362042.865299999713898, 258445.259399998933077 ], [ 362103.324299998581409, 258447.442899998277426 ], [ 362100.2195999994874, 258433.27419999986887 ], [ 362097.550499998033047, 258422.621800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004014200", "MAP": "D9-7322-T003", "PARCEL_NAM": "2B-1", "ACRE": ".666", "LONGITUDE": -64.90176781, "LATITUDE": 18.35525419, "OBJECTID_1": 5978, "PARCEL_NO_": "103004014200", "Tax_Legal_": "2B-1 ESTATE MANDAHL No.1 GREAT NPORTHSIDE QUARTER", "Name": "LAMBERTIS, JOYCELIN J", "Address": "PO Box 306056", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64600, "Improved_V": 369000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.632556378, "SHAPE_Area": 2798.9633990100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361846.51349999755621, 258398.056099999696016 ], [ 361851.056400001049042, 258432.712600000202656 ], [ 361853.338699996471405, 258448.774399999529123 ], [ 361857.118500001728535, 258478.358399998396635 ], [ 361857.80799999833107, 258483.393399998545647 ], [ 361896.764899998903275, 258479.665399998426437 ], [ 361886.018200002610683, 258428.173900000751019 ], [ 361886.02589999884367, 258428.169799998402596 ], [ 361881.895000003278255, 258426.4814000017941 ], [ 361879.565800003707409, 258423.268399998545647 ], [ 361879.502700001001358, 258407.100900001823902 ], [ 361875.552699998021126, 258406.017900001257658 ], [ 361846.51349999755621, 258398.056099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004011400", "MAP": "D9-7954-T007", "PARCEL_NAM": "2B", "ACRE": "1.885", "LONGITUDE": -64.90143276000001, "LATITUDE": 18.35579391, "OBJECTID_1": 5951, "PARCEL_NO_": "103004011400", "Tax_Legal_": "2B REM,2B-2&2B-3 ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "CHARLES, SR. , JOSEPH M. & RUTH D. -", "Address": "PO Box 7337", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 160400, "Improved_V": 340300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 436.38096015999997, "SHAPE_Area": 8551.1256620799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361951.957000002264977, 258543.244100000709295 ], [ 361937.82150000333786, 258475.736600000411272 ], [ 361926.156800001859665, 258420.028400000184774 ], [ 361923.617899999022484, 258427.059999998658895 ], [ 361916.63289999961853, 258430.446699999272823 ], [ 361908.37780000269413, 258431.081700000911951 ], [ 361895.466099999845028, 258430.023299999535084 ], [ 361893.349500000476837, 258431.081700000911951 ], [ 361886.910499997437, 258432.449400000274181 ], [ 361896.764899998903275, 258479.665399998426437 ], [ 361857.80799999833107, 258483.393399998545647 ], [ 361866.987400002777576, 258550.422100000083447 ], [ 361870.038199998438358, 258570.923200000077486 ], [ 361872.081600002944469, 258573.462600000202656 ], [ 361872.431999996304512, 258573.897999998182058 ], [ 361880.398100003600121, 258568.832899998873472 ], [ 361906.856499999761581, 258557.826200000941753 ], [ 361943.898199997842312, 258546.184500001370907 ], [ 361951.957000002264977, 258543.244100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026000", "MAP": "D9-8281-T009", "PARCEL_NAM": "14B-2-REM", "ACRE": "1.028", "LONGITUDE": -64.8972203, "LATITUDE": 18.35331403, "OBJECTID_1": 6565, "PARCEL_NO_": "103103026000", "Tax_Legal_": "MANDAHL 14B-2 GREAT NORTHSIDE", "Name": "RHYMER, ALFORD SR. & PONT, IRMA", "Address": "394-188 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 92600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.08075595499997, "SHAPE_Area": 3550.44075054 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362328.828299999237061, 258289.686000000685453 ], [ 362348.965899996459484, 258293.455200001597404 ], [ 362361.330300003290176, 258261.892400000244379 ], [ 362383.722900003194809, 258189.037300001829863 ], [ 362371.656999997794628, 258185.561099998652935 ], [ 362367.630800001323223, 258184.894799999892712 ], [ 362357.159599997103214, 258183.542599998414516 ], [ 362351.491999998688698, 258186.24040000140667 ], [ 362349.049699999392033, 258188.964600000530481 ], [ 362342.559600003063679, 258193.555599998682737 ], [ 362339.314599998295307, 258195.850999999791384 ], [ 362336.85249999910593, 258200.897100001573563 ], [ 362333.359300002455711, 258232.32149999961257 ], [ 362335.778200000524521, 258232.341299999505281 ], [ 362329.727700002491474, 258279.9989 ], [ 362328.828299999237061, 258289.686000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003040900", "MAP": "A9-87-T68", "PARCEL_NAM": "383", "ACRE": null, "LONGITUDE": -64.90237383, "LATITUDE": 18.35333058, "OBJECTID_1": 5898, "PARCEL_NO_": "103003040900", "Tax_Legal_": "WINTBERG 383 GR NORTHSIDE", "Name": "WILLIAMS, ALVIN A & DENIALA O", "Address": "PO Box 306538", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036538, "Country": "United States", "Land_Value": 61100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.799402141, "SHAPE_Area": 2766.5507321599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361831.538099996745586, 258262.833700001239777 ], [ 361822.466499999165535, 258191.831999998539686 ], [ 361785.322200000286102, 258197.860800001770258 ], [ 361791.179300002753735, 258267.569600000977516 ], [ 361831.538099996745586, 258262.833700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90183897, "LATITUDE": 18.35354314, "OBJECTID_1": 6219, "PARCEL_NO_": "103004040900", "Tax_Legal_": "PAR 2JA WINTBERG 3 GREAT NORTHSIDE QTR", "Name": "GRACE L GREGORY REVOCABLE LIVING TRUST", "Address": "PO Box 7431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010431, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 431.86029798700002, "SHAPE_Area": 2444.7914932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361834.920699998736382, 258225.289599999785423 ], [ 361828.833599999547005, 258223.456799998879433 ], [ 361828.360299997031689, 258220.087999999523163 ], [ 361831.537299998104572, 258211.408700000494719 ], [ 361836.225000001490116, 258204.417899999767542 ], [ 361833.860699996352196, 258202.279500000178814 ], [ 361822.466499999165535, 258191.831999998539686 ], [ 361827.09009999781847, 258228.019900001585484 ], [ 361831.538099996745586, 258262.833700001239777 ], [ 361846.069700002670288, 258260.841699998825788 ], [ 361851.713799998164177, 258260.887800000607967 ], [ 361862.17790000140667, 258263.084399998188019 ], [ 361871.814099997282028, 258267.807399999350309 ], [ 361952.683399997651577, 258335.174800001084805 ], [ 361927.92509999871254, 258307.107799999415874 ], [ 361918.314099997282028, 258299.429800000041723 ], [ 361908.685099996626377, 258293.862500000745058 ], [ 361903.085900001227856, 258288.53940000012517 ], [ 361899.903800003230572, 258283.44709999859333 ], [ 361899.127999998629093, 258279.852099999785423 ], [ 361895.960299998521805, 258273.071199998259544 ], [ 361889.585400000214577, 258264.153099998831749 ], [ 361887.997900001704693, 258261.184799998998642 ], [ 361884.828400000929832, 258254.614999998360872 ], [ 361880.919799998402596, 258248.509700000286102 ], [ 361872.742399998009205, 258240.795200001448393 ], [ 361864.498800002038479, 258234.491799999028444 ], [ 361855.281199999153614, 258231.125300001353025 ], [ 361846.178099997341633, 258228.499299999326468 ], [ 361834.920699998736382, 258225.289599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004031400", "MAP": "D9-8367-T009", "PARCEL_NAM": "3 REM", "ACRE": "3.149", "LONGITUDE": -64.90186111, "LATITUDE": 18.35192396, "OBJECTID_1": 6139, "PARCEL_NO_": "103004031400", "Tax_Legal_": "3 ESTATE MANDAHL GREAT NORTHSIDE QTR", "Name": "BRYAN, EDMUND & EDWARD", "Address": "LERKENLUND 7E-1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 311400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 476.505211497, "SHAPE_Area": 10997.2873021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361932.880800001323223, 258141.704900000244379 ], [ 361936.857799999415874, 258139.221400000154972 ], [ 361939.569600000977516, 258137.234900001436472 ], [ 361939.597599998116493, 258133.886500000953674 ], [ 361905.122000001370907, 258045.621100001037121 ], [ 361791.826999999582767, 258002.23030000180006 ], [ 361798.016699999570847, 258032.889499999582767 ], [ 361808.830399997532368, 258088.706700000911951 ], [ 361811.413500003516674, 258107.469500001519918 ], [ 361813.403099998831749, 258099.224300000816584 ], [ 361814.726099997758865, 258100.282699998468161 ], [ 361816.842699997127056, 258100.282699998468161 ], [ 361818.165600001811981, 258099.488899998366833 ], [ 361819.488600000739098, 258098.166000001132488 ], [ 361820.811499997973442, 258096.313900001347065 ], [ 361825.838600002229214, 258098.695199999958277 ], [ 361825.838600002229214, 258100.282699998468161 ], [ 361825.838600002229214, 258101.870200000703335 ], [ 361826.632299996912479, 258103.19310000166297 ], [ 361828.219800002872944, 258104.780600000172853 ], [ 361829.542700000107288, 258105.838899999856949 ], [ 361892.513599999248981, 258132.297200001776218 ], [ 361932.880800001323223, 258141.704900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103030700", "MAP": "D9-1790-T81", "PARCEL_NAM": "8-1-AA", "ACRE": null, "LONGITUDE": -64.89631374, "LATITUDE": 18.35051718, "OBJECTID_1": 6588, "PARCEL_NO_": "103103030700", "Tax_Legal_": "MANDAHL ESTATE 8-1-AA No.1 NORTHSIDE QTR", "Name": "SWIFT, ALEXANDER & JOAN", "Address": "PO Box 1451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.0963745, "SHAPE_Area": 1854.85675266 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362469.254100002348423, 257953.331500001251698 ], [ 362467.987099997699261, 257912.860300000756979 ], [ 362470.324199996888638, 257902.684200000017881 ], [ 362462.791500002145767, 257899.853000000119209 ], [ 362441.892099998891354, 257892.082600001245737 ], [ 362436.214599996805191, 257910.513799998909235 ], [ 362426.135200001299381, 257943.249400001019239 ], [ 362469.254100002348423, 257953.331500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103041100", "MAP": "D9-1790-T81", "PARCEL_NAM": "291B", "ACRE": null, "LONGITUDE": -64.89572359, "LATITUDE": 18.35020904, "OBJECTID_1": 6630, "PARCEL_NO_": "103103041100", "Tax_Legal_": "291A ANNAS RETREAT No.1 NEW QTR", "Name": "SWIFT, ALEXANDER A. & JOAN M.", "Address": "PO Box 1451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.27225697, "SHAPE_Area": 1020.53869767 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362504.379399999976158, 257868.495200000703335 ], [ 362498.390000000596046, 257910.20380000025034 ], [ 362511.065999999642372, 257912.491500001400709 ], [ 362519.922799997031689, 257914.041700001806021 ], [ 362530.755500003695488, 257872.967099998146296 ], [ 362508.205700002610683, 257869.616099998354912 ], [ 362504.379399999976158, 257868.495200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704023900", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-18", "ACRE": ".22", "LONGITUDE": -64.86869884, "LATITUDE": 18.33886324, "OBJECTID_1": 23542, "PARCEL_NO_": "105704023900", "Tax_Legal_": "100-18 SMITH BAY EAST END QUARTER", "Name": "DUNCAN, GERTRUDE E. & ARIA L.", "Address": "PO Box 502631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28900, "Improved_V": 78500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.635626965, "SHAPE_Area": 713.08230599399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365391.281400002539158, 256642.531199999153614 ], [ 365377.183799996972084, 256648.700800001621246 ], [ 365361.80629999935627, 256655.329999998211861 ], [ 365364.932599999010563, 256666.965700000524521 ], [ 365365.686800003051758, 256673.093600001186132 ], [ 365384.260799996554852, 256669.868099998682737 ], [ 365398.941799998283386, 256666.772999998182058 ], [ 365391.281400002539158, 256642.531199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704013900", "MAP": "D9-585-T66", "PARCEL_NAM": "104", "ACRE": "2.69", "LONGITUDE": -64.86937003, "LATITUDE": 18.33641973, "OBJECTID_1": 23484, "PARCEL_NO_": "105704013900", "Tax_Legal_": "SMITH BAY 104 EAST END QTR", "Name": "HERMAN, JOHN", "Address": "PO Box 8334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 247900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 391.418347751, "SHAPE_Area": 8356.7755379099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365293.629600003361702, 256305.2804000005126 ], [ 365265.305900000035763, 256436.696800000965595 ], [ 365278.349399998784065, 256431.712000001221895 ], [ 365288.426899999380112, 256433.804900001734495 ], [ 365330.32039999961853, 256459.392099998891354 ], [ 365350.759499996900558, 256430.323499999940395 ], [ 365351.145900003612041, 256418.858899999409914 ], [ 365347.50959999859333, 256371.809300001710653 ], [ 365333.126000002026558, 256333.555399999022484 ], [ 365293.629600003361702, 256305.2804000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603066500", "MAP": "D9-5308-T92", "PARCEL_NAM": "13A-4", "ACRE": "0.36", "LONGITUDE": -64.87512147, "LATITUDE": 18.32002571, "OBJECTID_1": 38841, "PARCEL_NO_": "107603066500", "Tax_Legal_": "13A-4 ESTATE NADIR RED HOOK QUARTER", "Name": "FREDERICKS, WILBERT & JEWEL", "Address": "7492 Estate Bovoni Number 5", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.06840025599999, "SHAPE_Area": 1862.13524082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364734.9966000020504, 254564.046999998390675 ], [ 364736.344300001859665, 254542.565900001674891 ], [ 364736.601199999451637, 254538.470899999141693 ], [ 364705.159800000488758, 254538.392700001597404 ], [ 364704.883100003004074, 254541.550900001078844 ], [ 364704.850699998438358, 254545.350299999117851 ], [ 364704.624099999666214, 254571.946299999952316 ], [ 364702.09910000115633, 254584.380100000649691 ], [ 364702.384900003671646, 254597.933299999684095 ], [ 364730.998400002717972, 254599.636100001633167 ], [ 364732.757200002670288, 254599.740699999034405 ], [ 364733.118900001049042, 254593.976199999451637 ], [ 364734.9966000020504, 254564.046999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89630959, "LATITUDE": 18.35437671, "OBJECTID_1": 6518, "PARCEL_NO_": "103103020900", "Tax_Legal_": "MANDAHL 13A-1 GR NORTHSIDE", "Name": "QUESTEL, KANA", "Address": "6554 Mandahl Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30600, "Improved_V": 163500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.057629408, "SHAPE_Area": 1468.97628811 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362465.284999996423721, 258366.638900000602007 ], [ 362468.807800002396107, 258333.450199998915195 ], [ 362432.553800001740456, 258330.396099999547005 ], [ 362426.301299996674061, 258370.705400001257658 ], [ 362455.541900001466274, 258372.221000000834465 ], [ 362465.284999996423721, 258366.638900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89624122, "LATITUDE": 18.3538502, "OBJECTID_1": 6519, "PARCEL_NO_": "103103021000", "Tax_Legal_": "MANDAHL 13A GR NORTHSIDE QTR", "Name": "QUESTEL, MARTEL L UISE", "Address": "3564 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70600, "Improved_V": 316800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.80774360300001, "SHAPE_Area": 2720.8986419900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362476.661799997091293, 258259.458799999207258 ], [ 362445.370300002396107, 258247.769499998539686 ], [ 362432.553800001740456, 258330.396099999547005 ], [ 362468.807800002396107, 258333.450199998915195 ], [ 362476.661799997091293, 258259.458799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89651259, "LATITUDE": 18.35324405, "OBJECTID_1": 6567, "PARCEL_NO_": "103103026200", "Tax_Legal_": "MANDAHL #14B-4 LITTLE NORTHSIDE", "Name": "GEORGE A. & IRENE QUERRARD TRUST", "Address": "6595 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 318700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.828919598, "SHAPE_Area": 1691.65324065 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362422.71169999986887, 258250.359400000423193 ], [ 362422.811599999666214, 258250.387899998575449 ], [ 362437.918499998748302, 258258.239199999719858 ], [ 362443.311599999666214, 258261.041999999433756 ], [ 362445.370300002396107, 258247.769499998539686 ], [ 362439.686499997973442, 258245.646200001239777 ], [ 362443.080700002610683, 258225.831199999898672 ], [ 362446.514600001275539, 258201.372499998658895 ], [ 362402.943099997937679, 258204.604499999433756 ], [ 362413.902400001883507, 258243.324299998581409 ], [ 362416.308799996972084, 258244.821600001305342 ], [ 362421.146700002253056, 258244.861200001090765 ], [ 362422.71169999986887, 258250.359400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026100", "MAP": "D9-5809-T94", "PARCEL_NAM": "14B-3-2", "ACRE": ".503", "LONGITUDE": -64.89654994, "LATITUDE": 18.35376081, "OBJECTID_1": 6566, "PARCEL_NO_": "103103026100", "Tax_Legal_": "14B-3-1 &14B REM(R.O.W.)MANDAHL NO.1 GREAT NORTHSIDE QTR", "Name": "WALSH, SANDRA E.", "Address": "9720 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.87192095500001, "SHAPE_Area": 2009.02243729 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362408.163000002503395, 258254.465300001204014 ], [ 362395.710699997842312, 258284.550299998372793 ], [ 362428.772600002586842, 258306.339200001209974 ], [ 362426.301299996674061, 258370.705400001257658 ], [ 362432.553800001740456, 258330.396099999547005 ], [ 362443.311599999666214, 258261.041999999433756 ], [ 362437.918499998748302, 258258.239199999719858 ], [ 362422.811599999666214, 258250.387899998575449 ], [ 362422.71169999986887, 258250.359400000423193 ], [ 362422.712499998509884, 258250.362500000745058 ], [ 362408.163000002503395, 258254.465300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103026100", "MAP": "D9-5809-T94", "PARCEL_NAM": "14B-3-1", "ACRE": ".507", "LONGITUDE": -64.89690668, "LATITUDE": 18.35340169, "OBJECTID_1": 6566, "PARCEL_NO_": "103103026100", "Tax_Legal_": "14B-3-1 &14B REM(R.O.W.)MANDAHL NO.1 GREAT NORTHSIDE QTR", "Name": "WALSH, SANDRA E.", "Address": "9720 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.38432274900001, "SHAPE_Area": 2321.7625659800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362395.710699997842312, 258284.550299998372793 ], [ 362408.163000002503395, 258254.465300001204014 ], [ 362405.752999998629093, 258253.390099998563528 ], [ 362389.307800002396107, 258196.049100000411272 ], [ 362387.723899997770786, 258192.658700000494719 ], [ 362383.722900003194809, 258189.037300001829863 ], [ 362361.330300003290176, 258261.892400000244379 ], [ 362395.710699997842312, 258284.550299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103020800", "MAP": "C9-59-T63", "PARCEL_NAM": "14A-2", "ACRE": ".50", "LONGITUDE": -64.89662916, "LATITUDE": 18.35421526, "OBJECTID_1": 6516, "PARCEL_NO_": "103103020800", "Tax_Legal_": "PAR 14A REM MANDAHL 1 GREAT NORTHSIDE QTR", "Name": "HENRY, DIANE A., RICHARD P. & WANDA M. BRYAN", "Address": "5661 Oak Leafe Dr", "City": "Mount Joy", "State": "Pennsylvania", "Zip": 17552, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.687482698, "SHAPE_Area": 1561.1817885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362417.342200003564358, 258298.806200001388788 ], [ 362388.075599998235703, 258311.519799999892712 ], [ 362411.543099999427795, 258331.319600000977516 ], [ 362415.505400002002716, 258335.324700001627207 ], [ 362417.454899996519089, 258341.100299999117851 ], [ 362416.817299999296665, 258345.662500001490116 ], [ 362412.964699998497963, 258352.382399998605251 ], [ 362403.125200003385544, 258358.257599998265505 ], [ 362382.494699999690056, 258366.951499998569489 ], [ 362395.10980000346899, 258366.871300000697374 ], [ 362426.301299996674061, 258370.705400001257658 ], [ 362428.772600002586842, 258306.339200001209974 ], [ 362417.342200003564358, 258298.806200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022200", "MAP": "G9-2570-T76", "PARCEL_NAM": "12A-1", "ACRE": null, "LONGITUDE": -64.89483438000001, "LATITUDE": 18.35325905, "OBJECTID_1": 6531, "PARCEL_NO_": "103103022200", "Tax_Legal_": "MANDAHL 12A-1 GREAT NORTHSIDE QTR", "Name": "LEDEE, ANN JOSEPHINE (TRUSTEE)", "Address": "PO Box 628", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 70500, "Improved_V": 345700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.55375383399999, "SHAPE_Area": 2045.8536744600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362637.432700000703335, 258213.382199998944998 ], [ 362629.464800000190735, 258212.580099999904633 ], [ 362573.181100003421307, 258214.483500000089407 ], [ 362572.133900001645088, 258221.821199998259544 ], [ 362569.551299996674061, 258241.00959999859333 ], [ 362569.320500001311302, 258243.27760000154376 ], [ 362587.785700000822544, 258244.120900001376867 ], [ 362606.444499999284744, 258244.973000001162291 ], [ 362635.337099999189377, 258246.401700001209974 ], [ 362635.49379999935627, 258243.932000000029802 ], [ 362637.432700000703335, 258213.382199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033300", "MAP": "D9-2191-T82", "PARCEL_NAM": "173A-81", "ACRE": "0.04", "LONGITUDE": -64.87604091, "LATITUDE": 18.33811844, "OBJECTID_1": 22989, "PARCEL_NO_": "105703033300", "Tax_Legal_": "ANNAS RETREAT 173-105&173A-81 NEW QTR", "Name": "ROBERTS, CATHERINE", "Address": "7736 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 139600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.413437510599998, "SHAPE_Area": 157.040942852 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364614.25900000333786, 256573.182199999690056 ], [ 364611.274999998509884, 256563.635899998247623 ], [ 364611.051299996674061, 256563.692499998956919 ], [ 364596.507100000977516, 256567.162099998444319 ], [ 364596.105800002813339, 256567.263599999248981 ], [ 364598.974500000476837, 256576.925200000405312 ], [ 364614.25900000333786, 256573.182199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104013900", "MAP": "A9-499A-T97", "PARCEL_NAM": "37-41", "ACRE": null, "LONGITUDE": -64.891101, "LATITUDE": 18.35625803, "OBJECTID_1": 6771, "PARCEL_NO_": "103104013900", "Tax_Legal_": "MANDAHL ESTATE 37-41 GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "2625 Middlefield Rd", "City": "Palo Alto", "State": "California", "Zip": 94306, "Country": "United States", "Land_Value": 193300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.065728436, "SHAPE_Area": 2195.9282038900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363000.840800002217293, 258538.803899999707937 ], [ 362990.30290000140667, 258545.261599998921156 ], [ 362978.121899999678135, 258555.294399999082088 ], [ 362964.281599998474121, 258570.802000001072884 ], [ 362961.007799997925758, 258576.474700000137091 ], [ 363005.151799999177456, 258600.689599998295307 ], [ 363003.681199997663498, 258584.001200001686811 ], [ 363030.645499996840954, 258542.425299998372793 ], [ 363011.367799997329712, 258533.612700000405312 ], [ 363000.840800002217293, 258538.803899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104013200", "MAP": "A9-780-T013", "PARCEL_NAM": "4-58", "ACRE": "1.2", "LONGITUDE": -64.88560809000001, "LATITUDE": 18.35095442, "OBJECTID_1": 6765, "PARCEL_NO_": "103104013200", "Tax_Legal_": "ANNAS RETREAT 260-68 NEW QTR", "Name": "GEORGE, CLEVE A. & ALBERT H", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61600, "Improved_V": 235000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.17124109899999, "SHAPE_Area": 6111.7893098100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363513.524700000882149, 257996.24210000038147 ], [ 363612.737800002098083, 258023.453999999910593 ], [ 363623.914599999785423, 258000.338199999183416 ], [ 363629.706200003623962, 257983.075899999588728 ], [ 363637.840800002217293, 257954.004599999636412 ], [ 363582.829000003635883, 257945.894099999219179 ], [ 363567.634300000965595, 257950.030699998140335 ], [ 363553.445200003683567, 257955.984999999403954 ], [ 363549.119499996304512, 257960.709499999880791 ], [ 363546.816899999976158, 257964.699400000274181 ], [ 363506.754299998283386, 257991.925000000745058 ], [ 363513.524700000882149, 257996.24210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104013200", "MAP": "A9-780-T013", "PARCEL_NAM": "4-57", "ACRE": "1.142", "LONGITUDE": -64.88586192, "LATITUDE": 18.35151822, "OBJECTID_1": 6765, "PARCEL_NO_": "103104013200", "Tax_Legal_": "ANNAS RETREAT 260-68 NEW QTR", "Name": "GEORGE, CLEVE A. & ALBERT H", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61600, "Improved_V": 235000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 364.78892012199998, "SHAPE_Area": 6816.7201296499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363612.737800002098083, 258023.453999999910593 ], [ 363513.524700000882149, 257996.24210000038147 ], [ 363515.214199997484684, 257999.7820999994874 ], [ 363514.725900001823902, 258005.5625 ], [ 363513.918799996376038, 258011.569699998944998 ], [ 363512.872400000691414, 258016.071400001645088 ], [ 363499.113399997353554, 258082.203400000929832 ], [ 363510.507200002670288, 258063.159499999135733 ], [ 363561.045900002121925, 258093.970600001513958 ], [ 363590.215199999511242, 258077.532900001853704 ], [ 363594.280900001525879, 258073.555399999022484 ], [ 363611.621699996292591, 258025.779100000858307 ], [ 363612.737800002098083, 258023.453999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103203015300", "MAP": "D9-2134-T82", "PARCEL_NAM": "3I", "ACRE": ".225", "LONGITUDE": -64.8804159, "LATITUDE": 18.34920675, "OBJECTID_1": 6992, "PARCEL_NO_": "103203015300", "Tax_Legal_": "2I & 3I TABOR & HARMONY NO. 5&6 EAST END QUARTER", "Name": "SLATER, WENDY", "Address": "13 Strawberry Cove", "City": "Gloucester", "State": "Massachusetts", "Zip": 19300000, "Country": "United States", "Land_Value": 70100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.4930242482899998, "SHAPE_Area": 0.47660482413 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364131.91610000282526, 257793.999800000339746 ], [ 364133.201399996876717, 257793.463500000536442 ], [ 364131.818499997258186, 257793.298900000751019 ], [ 364131.91610000282526, 257793.999800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012900", "MAP": "D9-8526-T010", "PARCEL_NAM": "3A-1", "ACRE": ".698", "LONGITUDE": -64.8805199, "LATITUDE": 18.35022116, "OBJECTID_1": 6977, "PARCEL_NO_": "103203012900", "Tax_Legal_": "3A TABOR AND HARMONY NO. 5 & 6 EAST END QUARTER", "Name": "SLATER, WENDY", "Address": "13 Strawberry Cove", "City": "Gloucester", "State": "Massachusetts", "Zip": 19300000, "Country": "United States", "Land_Value": 120200, "Improved_V": 1210100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.76251613100001, "SHAPE_Area": 1436.36913248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364106.901600003242493, 257943.480500001460314 ], [ 364126.888800002634525, 257923.4831000007689 ], [ 364134.779100000858307, 257916.7685999982059 ], [ 364146.027999997138977, 257907.195900000631809 ], [ 364149.355599999427795, 257904.263199999928474 ], [ 364132.00110000371933, 257898.852200001478195 ], [ 364129.024499997496605, 257888.469900000840425 ], [ 364119.643399998545647, 257874.37779999896884 ], [ 364107.828500002622604, 257875.325399998575449 ], [ 364107.57209999859333, 257894.179499998688698 ], [ 364106.901600003242493, 257943.480500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103203015300", "MAP": "D9-2134-T82", "PARCEL_NAM": "3I", "ACRE": ".225", "LONGITUDE": -64.88083959, "LATITUDE": 18.34890049, "OBJECTID_1": 6992, "PARCEL_NO_": "103203015300", "Tax_Legal_": "2I & 3I TABOR & HARMONY NO. 5&6 EAST END QUARTER", "Name": "SLATER, WENDY", "Address": "13 Strawberry Cove", "City": "Gloucester", "State": "Massachusetts", "Zip": 19300000, "Country": "United States", "Land_Value": 70100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.091549391299999, "SHAPE_Area": 49.489034679600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364096.064400002360344, 257759.295200001448393 ], [ 364090.580899998545647, 257756.233399998396635 ], [ 364089.932899996638298, 257756.319899998605251 ], [ 364079.740699999034405, 257759.601100001484156 ], [ 364084.460900001227856, 257762.335299998521805 ], [ 364096.064400002360344, 257759.295200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103203012900", "MAP": "D9-8526-T010", "PARCEL_NAM": "3A-REM", "ACRE": "1.350", "LONGITUDE": -64.88035641, "LATITUDE": 18.34973419, "OBJECTID_1": 6977, "PARCEL_NO_": "103203012900", "Tax_Legal_": "3A TABOR AND HARMONY NO. 5 & 6 EAST END QUARTER", "Name": "SLATER, WENDY", "Address": "13 Strawberry Cove", "City": "Gloucester", "State": "Massachusetts", "Zip": 19300000, "Country": "United States", "Land_Value": 120200, "Improved_V": 1210100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.598868659, "SHAPE_Area": 4817.6617280199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364136.105999998748302, 257801.543000001460314 ], [ 364109.004199996590614, 257803.559500001370907 ], [ 364108.478100001811981, 257818.330099999904633 ], [ 364108.267700001597404, 257843.026299998164177 ], [ 364107.828500002622604, 257875.325399998575449 ], [ 364119.643399998545647, 257874.37779999896884 ], [ 364129.024499997496605, 257888.469900000840425 ], [ 364132.00110000371933, 257898.852200001478195 ], [ 364149.355599999427795, 257904.263199999928474 ], [ 364161.775600001215935, 257893.31700000166893 ], [ 364173.871399998664856, 257878.905799999833107 ], [ 364174.115599997341633, 257875.229299999773502 ], [ 364173.350699998438358, 257870.367800001055002 ], [ 364168.669200003147125, 257851.964400000870228 ], [ 364167.096199996769428, 257847.307500001043081 ], [ 364164.729400001466274, 257841.166400000452995 ], [ 364163.942900002002716, 257838.837900001555681 ], [ 364163.149099998176098, 257837.353799998760223 ], [ 364159.187700003385544, 257829.088700000196695 ], [ 364157.605599999427795, 257825.487100001424551 ], [ 364136.105999998748302, 257801.543000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103203014400", "MAP": "D9-2056-T82", "PARCEL_NAM": "2G", "ACRE": null, "LONGITUDE": -64.88185372, "LATITUDE": 18.34920861, "OBJECTID_1": 6984, "PARCEL_NO_": "103203014400", "Tax_Legal_": "TABOR&HARMONY 2G&2H No.5&6 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 367.28228997999997, "SHAPE_Area": 1718.34453173 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363878.071400001645088, 257823.155799999833107 ], [ 364053.486400000751019, 257781.53999999910593 ], [ 364048.149599999189377, 257775.4695999994874 ], [ 364037.425999999046326, 257777.36540000140667 ], [ 364030.235399998724461, 257777.615100000053644 ], [ 364016.639600001275539, 257777.655200000852346 ], [ 364001.630800001323223, 257778.46000000089407 ], [ 363990.997299998998642, 257779.301899999380112 ], [ 363979.259499996900558, 257781.377000000327826 ], [ 363972.523299999535084, 257783.339200001209974 ], [ 363964.36089999973774, 257787.619199998676777 ], [ 363948.360699996352196, 257794.784000001847744 ], [ 363921.84910000115633, 257806.830200001597404 ], [ 363912.753200002014637, 257810.636399999260902 ], [ 363897.703699998557568, 257816.256000000983477 ], [ 363882.97070000320673, 257821.412399999797344 ], [ 363878.071400001645088, 257823.155799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88294803, "LATITUDE": 18.3496337, "OBJECTID_1": 6973, "PARCEL_NO_": "103203012400", "Tax_Legal_": "TABOR&HARMONY 1 REM.NORTH&SOUTH No.5&6EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 434900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.057808131, "SHAPE_Area": 922.90082498000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363877.88120000064373, 257855.184000000357628 ], [ 363858.108300000429153, 257849.453699998557568 ], [ 363840.76969999819994, 257846.196800000965595 ], [ 363861.034800000488758, 257836.415800001472235 ], [ 363868.533100001513958, 257831.988000001758337 ], [ 363876.145099997520447, 257829.938499998301268 ], [ 363895.541500002145767, 257824.819899998605251 ], [ 363912.479500003159046, 257824.325300000607967 ], [ 363919.732699997723103, 257824.806800000369549 ], [ 363923.76240000128746, 257825.050900001078844 ], [ 363927.023699998855591, 257820.960099998861551 ], [ 363919.227899998426437, 257821.098099999129772 ], [ 363904.208099998533726, 257820.970899999141693 ], [ 363895.476599998772144, 257820.896999999880791 ], [ 363878.071400001645088, 257823.155799999833107 ], [ 363868.385499998927116, 257826.602600000798702 ], [ 363851.152999997138977, 257829.311799999326468 ], [ 363847.907899998128414, 257831.607200000435114 ], [ 363839.825000002980232, 257833.863099999725819 ], [ 363833.370899997651577, 257834.232500001788139 ], [ 363826.121299996972084, 257833.32880000025034 ], [ 363834.852300003170967, 257849.654399998486042 ], [ 363847.566100001335144, 257851.693300001323223 ], [ 363860.329599998891354, 257853.672600001096725 ], [ 363870.261799998581409, 257855.132500000298023 ], [ 363873.398800000548363, 257868.335099998861551 ], [ 363882.248499996960163, 257870.729499999433756 ], [ 363877.88120000064373, 257855.184000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103203012400", "MAP": "D9-6948-T001", "PARCEL_NAM": "1-REM", "ACRE": "1.46", "LONGITUDE": -64.88165554, "LATITUDE": 18.34933932, "OBJECTID_1": 6973, "PARCEL_NO_": "103203012400", "Tax_Legal_": "TABOR&HARMONY 1 REM.NORTH&SOUTH No.5&6EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 434900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 443.81091175699999, "SHAPE_Area": 3556.4771975600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363927.023699998855591, 257820.960099998861551 ], [ 363931.055200003087521, 257820.888700000941753 ], [ 363943.905900001525879, 257826.904500000178814 ], [ 363959.675700001418591, 257829.3114 ], [ 363967.594200000166893, 257827.976599998772144 ], [ 363977.476999998092651, 257824.94649999961257 ], [ 363992.592100001871586, 257815.225900001823902 ], [ 364006.961400002241135, 257811.088700000196695 ], [ 364017.396799996495247, 257809.606899999082088 ], [ 364044.47860000282526, 257814.99439999833703 ], [ 364062.070000000298023, 257815.483800001442432 ], [ 364073.038099996745586, 257813.60700000077486 ], [ 364078.676899999380112, 257814.286499999463558 ], [ 364085.906800001859665, 257817.511999998241663 ], [ 364074.746399998664856, 257804.056099999696016 ], [ 364067.347000002861023, 257795.134700000286102 ], [ 364053.486400000751019, 257781.53999999910593 ], [ 363878.071400001645088, 257823.155799999833107 ], [ 363895.476599998772144, 257820.896999999880791 ], [ 363904.208099998533726, 257820.970899999141693 ], [ 363919.227899998426437, 257821.098099999129772 ], [ 363927.023699998855591, 257820.960099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012600", "MAP": "D9-8520-T010", "PARCEL_NAM": "1-1", "ACRE": "1.436", "LONGITUDE": -64.88232789, "LATITUDE": 18.34970416, "OBJECTID_1": 6975, "PARCEL_NO_": "103203012600", "Tax_Legal_": "1-1 TARBOR & HARMONY EAST END QTR", "Name": "GRAULICH, DEBRA J. & CHARLES E. ARTHUR", "Address": "6692 Estate Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93300, "Improved_V": 386300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 397.69657754600001, "SHAPE_Area": 5174.4090287 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363992.102399997413158, 257882.784499999135733 ], [ 363992.667000003159046, 257855.138000000268221 ], [ 363993.304999999701977, 257823.898600000888109 ], [ 363993.432099997997284, 257817.676600001752377 ], [ 363986.714858580788132, 257821.383464569080388 ], [ 363980.396200001239777, 257825.735100001096725 ], [ 363977.770605346770026, 257827.391170701972442 ], [ 363974.931923175463453, 257828.647435397928348 ], [ 363971.94061670161318, 257829.477135967812501 ], [ 363968.860399998724461, 257829.86259999871254 ], [ 363962.148181422089692, 257830.631526504119392 ], [ 363955.39659599319566, 257830.87895404259325 ], [ 363948.646099999547005, 257830.603399999439716 ], [ 363938.970357154728845, 257828.600637557887239 ], [ 363929.397600002586842, 257826.152499999850988 ], [ 363923.76240000128746, 257825.050900001078844 ], [ 363919.732699997723103, 257824.806800000369549 ], [ 363912.479500003159046, 257824.325300000607967 ], [ 363895.541500002145767, 257824.819899998605251 ], [ 363876.145099997520447, 257829.938499998301268 ], [ 363868.533100001513958, 257831.988000001758337 ], [ 363861.034800000488758, 257836.415800001472235 ], [ 363840.76969999819994, 257846.196800000965595 ], [ 363858.108300000429153, 257849.453699998557568 ], [ 363877.88120000064373, 257855.184000000357628 ], [ 363882.248499996960163, 257870.729499999433756 ], [ 363888.637500002980232, 257870.002900000661612 ], [ 363962.759999997913837, 257861.572799999266863 ], [ 363978.989500001072884, 257873.30519999936223 ], [ 363992.102399997413158, 257882.784499999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203015600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88106835000001, "LATITUDE": 18.34970436, "OBJECTID_1": 6995, "PARCEL_NO_": "103203015600", "Tax_Legal_": "TARBOR & HARMONY 1-1A-2 EASTEND QTR.", "Name": "MASON, SAMUEL K. & LAUREEN", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 176400, "Improved_V": 296200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.706059692, "SHAPE_Area": 2563.29065051 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364036.741499997675419, 257820.787300001829863 ], [ 364039.454599998891354, 257871.667700000107288 ], [ 364049.146200001239777, 257873.151000000536442 ], [ 364075.720299996435642, 257877.379200000315905 ], [ 364083.835600003600121, 257871.324000000953674 ], [ 364086.279700003564358, 257868.388599999248981 ], [ 364087.912100002169609, 257866.079999998211861 ], [ 364088.889300003647804, 257846.034099999815226 ], [ 364086.583599999547005, 257832.716299999505281 ], [ 364083.432099997997284, 257824.035700000822544 ], [ 364077.017599999904633, 257819.761300001293421 ], [ 364061.672399997711182, 257822.590999998152256 ], [ 364051.185000002384186, 257823.1385000012815 ], [ 364036.741499997675419, 257820.787300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88150947, "LATITUDE": 18.3496459, "OBJECTID_1": 6976, "PARCEL_NO_": "103203012800", "Tax_Legal_": "1-1A-3 TARBOR & HARMONY NO. 5&6 EAST END QTR", "Name": "ROY'S DEVELOPMENT LLC", "Address": "PO BOX 306198", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.60418479800001, "SHAPE_Area": 2322.5003492699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363997.85869999974966, 257815.680900000035763 ], [ 363993.432099997997284, 257817.676600001752377 ], [ 363993.304999999701977, 257823.898600000888109 ], [ 363992.667000003159046, 257855.138000000268221 ], [ 364002.231899999082088, 257864.203600000590086 ], [ 364010.292000003159046, 257866.310499999672174 ], [ 364018.544100001454353, 257868.467500001192093 ], [ 364039.454599998891354, 257871.667700000107288 ], [ 364036.741499997675419, 257820.787300001829863 ], [ 364033.500807699281722, 257818.225440346053801 ], [ 364029.927040447073523, 257816.153388441423886 ], [ 364026.093672761751805, 257814.613744437810965 ], [ 364022.079516394005623, 257813.638162496616133 ], [ 364017.967100001871586, 257813.246700000017881 ], [ 364012.865618123614695, 257812.920986031502252 ], [ 364007.76266112702433, 257813.222709140827646 ], [ 364002.735107564833015, 257814.147323721233988 ], [ 363997.85869999974966, 257815.680900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88140231, "LATITUDE": 18.35003531, "OBJECTID_1": 6994, "PARCEL_NO_": "103203015500", "Tax_Legal_": "TABOR & HARMONY 1-1A-1E EAST END QTR.", "Name": "HODGE, ROSCOE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47200, "Improved_V": 1074600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.93840107899999, "SHAPE_Area": 2225.2520461200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364018.544100001454353, 257868.467500001192093 ], [ 364010.292000003159046, 257866.310499999672174 ], [ 364002.231899999082088, 257864.203600000590086 ], [ 363992.667000003159046, 257855.138000000268221 ], [ 363992.102399997413158, 257882.784499999135733 ], [ 363998.412799999117851, 257887.3462999984622 ], [ 364005.438100002706051, 257892.424899999052286 ], [ 364007.783299997448921, 257901.098999999463558 ], [ 364012.594200000166893, 257904.304699998348951 ], [ 364019.836599998176098, 257906.052799999713898 ], [ 364035.962899997830391, 257906.184799998998642 ], [ 364048.914200000464916, 257900.380100000649691 ], [ 364061.093400001525879, 257890.558400001376867 ], [ 364070.040200002491474, 257881.55460000038147 ], [ 364075.720299996435642, 257877.379200000315905 ], [ 364049.146200001239777, 257873.151000000536442 ], [ 364018.544100001454353, 257868.467500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203023200", "MAP": null, "PARCEL_NAM": "53-26", "ACRE": null, "LONGITUDE": -64.87884211, "LATITUDE": 18.34818601, "OBJECTID_1": 7033, "PARCEL_NO_": "103203023200", "Tax_Legal_": "FRYDENDAHL 53-26 EAST END QUARTER", "Name": "OHIO VIRGIN LAND DEV. CORP.", "Address": "624 Rosedale Ave", "City": "Bronx", "State": "New York", "Zip": 10473, "Country": "United States", "Land_Value": 78400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.988855581, "SHAPE_Area": 1912.3681559900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364293.800899997353554, 257645.694699998944998 ], [ 364289.310699999332428, 257682.507699999958277 ], [ 364284.429899998009205, 257697.813400000333786 ], [ 364278.414099998772144, 257706.911499999463558 ], [ 364268.435199998319149, 257719.38230000063777 ], [ 364274.597300000488758, 257723.279699999839067 ], [ 364315.01799999922514, 257699.8277000002563 ], [ 364318.346199996769428, 257644.571600001305342 ], [ 364307.367299996316433, 257645.407699998468161 ], [ 364293.800899997353554, 257645.694699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203023800", "MAP": null, "PARCEL_NAM": "53-8", "ACRE": null, "LONGITUDE": -64.87905083, "LATITUDE": 18.349007, "OBJECTID_1": 7037, "PARCEL_NO_": "103203023800", "Tax_Legal_": "FRYDENDAHL 53-8 EAST END QTR.", "Name": "HARRIGAN, LILLIAN L", "Address": "PO Box 12314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.167152708, "SHAPE_Area": 3617.8098647800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364268.435199998319149, 257719.38230000063777 ], [ 364258.006599999964237, 257732.41499999910593 ], [ 364242.946400001645088, 257746.603300001472235 ], [ 364240.473499998450279, 257752.915899999439716 ], [ 364238.844700001180172, 257754.802400000393391 ], [ 364237.181699998676777, 257760.699400000274181 ], [ 364237.903499998152256, 257770.6266999989748 ], [ 364239.467600002884865, 257776.339099999517202 ], [ 364243.432599999010563, 257784.182000000029802 ], [ 364248.230899997055531, 257788.865299999713898 ], [ 364253.045400001108646, 257791.648899998515844 ], [ 364335.16160000115633, 257807.308699999004602 ], [ 364331.999300003051758, 257799.894499998539686 ], [ 364324.033299997448921, 257788.43019999936223 ], [ 364313.639300003647804, 257778.001600001007318 ], [ 364304.82379999756813, 257771.596599999815226 ], [ 364294.386699996888638, 257766.233899999409914 ], [ 364287.180299997329712, 257760.264299999922514 ], [ 364271.973600000143051, 257746.840900000184774 ], [ 364270.379000000655651, 257744.716899998486042 ], [ 364268.825699999928474, 257737.738099999725819 ], [ 364268.888599999248981, 257730.350400000810623 ], [ 364272.162399999797344, 257724.677600000053644 ], [ 364274.597300000488758, 257723.279699999839067 ], [ 364268.435199998319149, 257719.38230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203013700", "MAP": "C9-133-T72", "PARCEL_NAM": "5-13", "ACRE": ".29", "LONGITUDE": -64.87934418, "LATITUDE": 18.3485969, "OBJECTID_1": 6981, "PARCEL_NO_": "103203013700", "Tax_Legal_": "TARBOR & HARMONY 5-13 EAST END QTR.", "Name": "DONOVAN, PATRICIA CHARLES", "Address": "PO Box 7374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24600, "Improved_V": 757500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.814092348, "SHAPE_Area": 888.98254402099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364223.672200001776218, 257737.368599999696016 ], [ 364242.946400001645088, 257746.603300001472235 ], [ 364258.006599999964237, 257732.41499999910593 ], [ 364268.435199998319149, 257719.38230000063777 ], [ 364247.492399998009205, 257706.136399999260902 ], [ 364223.672200001776218, 257737.368599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103203015300", "MAP": "D9-2134-T82", "PARCEL_NAM": "3I", "ACRE": ".225", "LONGITUDE": -64.88039542, "LATITUDE": 18.34918129, "OBJECTID_1": 6992, "PARCEL_NO_": "103203015300", "Tax_Legal_": "2I & 3I TABOR & HARMONY NO. 5&6 EAST END QUARTER", "Name": "SLATER, WENDY", "Address": "13 Strawberry Cove", "City": "Gloucester", "State": "Massachusetts", "Zip": 19300000, "Country": "United States", "Land_Value": 70100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.48103631000001, "SHAPE_Area": 538.268637055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364090.580899998545647, 257756.233399998396635 ], [ 364096.064400002360344, 257759.295200001448393 ], [ 364096.911700002849102, 257759.07319999858737 ], [ 364109.098499998450279, 257760.299100000411272 ], [ 364113.374600000679493, 257762.131400000303984 ], [ 364118.089100003242493, 257765.539099998772144 ], [ 364121.895000003278255, 257769.71680000051856 ], [ 364125.921800002455711, 257774.136999998241663 ], [ 364129.028599999845028, 257780.674199998378754 ], [ 364130.608999997377396, 257784.6097999997437 ], [ 364131.818499997258186, 257793.298900000751019 ], [ 364133.201399996876717, 257793.463500000536442 ], [ 364131.91610000282526, 257793.999800000339746 ], [ 364132.390100002288818, 257797.404599998146296 ], [ 364157.605599999427795, 257825.487100001424551 ], [ 364159.187700003385544, 257829.088700000196695 ], [ 364166.4949000030756, 257823.237900000065565 ], [ 364137.862199999392033, 257796.361000001430511 ], [ 364130.857400000095367, 257775.164200000464916 ], [ 364126.652699999511242, 257767.856800001114607 ], [ 364123.990800000727177, 257764.991999998688698 ], [ 364119.713899999856949, 257760.38910000026226 ], [ 364116.117299996316433, 257758.337999999523163 ], [ 364109.586400002241135, 257756.037500001490116 ], [ 364101.013300001621246, 257754.842199999839067 ], [ 364090.580899998545647, 257756.233399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203014700", "MAP": "D9-2134-T82", "PARCEL_NAM": "3G", "ACRE": null, "LONGITUDE": -64.88055028, "LATITUDE": 18.34912208, "OBJECTID_1": 6987, "PARCEL_NO_": "103203014700", "Tax_Legal_": "TARBOR & HARMNOY 1-8, 2F & 3G EAST END QTR", "Name": "PENA, FIDEL", "Address": "PO Box 502771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 43100, "Improved_V": 247500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.431319882, "SHAPE_Area": 807.53267247899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364096.064400002360344, 257759.295200001448393 ], [ 364107.479699999094009, 257765.6689000017941 ], [ 364108.253300003707409, 257771.92850000038743 ], [ 364109.538000002503395, 257788.574499998241663 ], [ 364109.004199996590614, 257803.559500001370907 ], [ 364136.105999998748302, 257801.543000001460314 ], [ 364132.390100002288818, 257797.404599998146296 ], [ 364131.91610000282526, 257793.999800000339746 ], [ 364131.818499997258186, 257793.298900000751019 ], [ 364130.608999997377396, 257784.6097999997437 ], [ 364129.028599999845028, 257780.674199998378754 ], [ 364125.921800002455711, 257774.136999998241663 ], [ 364121.895000003278255, 257769.71680000051856 ], [ 364118.089100003242493, 257765.539099998772144 ], [ 364113.374600000679493, 257762.131400000303984 ], [ 364109.098499998450279, 257760.299100000411272 ], [ 364096.911700002849102, 257759.07319999858737 ], [ 364096.064400002360344, 257759.295200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203014700", "MAP": "D9-2056-T82", "PARCEL_NAM": "1-8", "ACRE": null, "LONGITUDE": -64.88080643000001, "LATITUDE": 18.3492502, "OBJECTID_1": 6987, "PARCEL_NO_": "103203014700", "Tax_Legal_": "TARBOR & HARMNOY 1-8, 2F & 3G EAST END QTR", "Name": "PENA, FIDEL", "Address": "PO Box 502771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 43100, "Improved_V": 247500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.09232362099999, "SHAPE_Area": 2195.78861413 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364108.253300003707409, 257771.92850000038743 ], [ 364107.479699999094009, 257765.6689000017941 ], [ 364098.948299996554852, 257768.176600001752377 ], [ 364053.486400000751019, 257781.53999999910593 ], [ 364067.347000002861023, 257795.134700000286102 ], [ 364074.746399998664856, 257804.056099999696016 ], [ 364085.906800001859665, 257817.511999998241663 ], [ 364089.891599997878075, 257823.033100001513958 ], [ 364108.169200003147125, 257850.269299998879433 ], [ 364108.267700001597404, 257843.026299998164177 ], [ 364108.478100001811981, 257818.330099999904633 ], [ 364109.119800001382828, 257800.314800001680851 ], [ 364109.538000002503395, 257788.574499998241663 ], [ 364108.253300003707409, 257771.92850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103203014700", "MAP": "D9-2056-T82", "PARCEL_NAM": "2F", "ACRE": null, "LONGITUDE": -64.88093331, "LATITUDE": 18.34899783, "OBJECTID_1": 6987, "PARCEL_NO_": "103203014700", "Tax_Legal_": "TARBOR & HARMNOY 1-8, 2F & 3G EAST END QTR", "Name": "PENA, FIDEL", "Address": "PO Box 502771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 43100, "Improved_V": 247500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.08504110800001, "SHAPE_Area": 456.24848436000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364053.486400000751019, 257781.53999999910593 ], [ 364098.948299996554852, 257768.176600001752377 ], [ 364107.479699999094009, 257765.6689000017941 ], [ 364096.064400002360344, 257759.295200001448393 ], [ 364084.460900001227856, 257762.335299998521805 ], [ 364080.558799996972084, 257763.889800000935793 ], [ 364068.517700001597404, 257768.686700001358986 ], [ 364061.384900003671646, 257771.51069999858737 ], [ 364049.163800001144409, 257775.290300000458956 ], [ 364048.149599999189377, 257775.4695999994874 ], [ 364053.486400000751019, 257781.53999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203015300", "MAP": "D9-2134-T82", "PARCEL_NAM": "2I", "ACRE": ".830", "LONGITUDE": -64.88181092000001, "LATITUDE": 18.34900679, "OBJECTID_1": 6992, "PARCEL_NO_": "103203015300", "Tax_Legal_": "2I & 3I TABOR & HARMONY NO. 5&6 EAST END QUARTER", "Name": "SLATER, WENDY", "Address": "13 Strawberry Cove", "City": "Gloucester", "State": "Massachusetts", "Zip": 19300000, "Country": "United States", "Land_Value": 70100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 474.40231099800002, "SHAPE_Area": 3969.9675701199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364070.633100003004074, 257745.095600001513958 ], [ 364060.200300000607967, 257739.270399998873472 ], [ 364039.286100000143051, 257727.592999998480082 ], [ 364039.094999998807907, 257727.836300000548363 ], [ 364031.773400001227856, 257735.375799998641014 ], [ 364029.183100000023842, 257736.928700000047684 ], [ 364022.04730000346899, 257741.206799998879433 ], [ 364015.560900002717972, 257745.375599998980761 ], [ 363924.928400002419949, 257782.841699998825788 ], [ 363907.914899997413158, 257792.201699998229742 ], [ 363883.588899999856949, 257808.045699998736382 ], [ 363858.161399997770786, 257824.71680000051856 ], [ 363862.006999999284744, 257824.186099998652935 ], [ 363872.816500000655651, 257821.015700001269579 ], [ 363883.782200001180172, 257817.846700001507998 ], [ 363890.272299997508526, 257815.116200000047684 ], [ 363893.191899999976158, 257813.887899998575449 ], [ 363896.646700002253056, 257811.897900000214577 ], [ 363907.3091000020504, 257807.63910000026226 ], [ 363920.784199997782707, 257803.403999999165535 ], [ 363929.570200003683567, 257799.284600000828505 ], [ 363935.060300000011921, 257796.845899999141693 ], [ 363943.217299997806549, 257793.187100000679493 ], [ 363949.025200001895428, 257790.129799999296665 ], [ 363973.195699997246265, 257777.753100000321865 ], [ 363982.430699996650219, 257775.967399999499321 ], [ 363987.901100002229214, 257775.858399998396635 ], [ 363997.348899997770786, 257776.375500001013279 ], [ 364008.061300002038479, 257773.811799999326468 ], [ 364034.70380000025034, 257770.019099999219179 ], [ 364048.450599998235703, 257765.48759999871254 ], [ 364054.940700002014637, 257760.896600000560284 ], [ 364060.629799999296665, 257755.665800001472235 ], [ 364063.781499996781349, 257752.444299999624491 ], [ 364070.633100003004074, 257745.095600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203015300", "MAP": "D9-2134-T82", "PARCEL_NAM": "2I", "ACRE": ".385", "LONGITUDE": -64.88164302, "LATITUDE": 18.34909127, "OBJECTID_1": 6992, "PARCEL_NO_": "103203015300", "Tax_Legal_": "2I & 3I TABOR & HARMONY NO. 5&6 EAST END QUARTER", "Name": "SLATER, WENDY", "Address": "13 Strawberry Cove", "City": "Gloucester", "State": "Massachusetts", "Zip": 19300000, "Country": "United States", "Land_Value": 70100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 525.04398266700002, "SHAPE_Area": 1493.6355131800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364070.633100003004074, 257745.095600001513958 ], [ 364063.781499996781349, 257752.444299999624491 ], [ 364060.629799999296665, 257755.665800001472235 ], [ 364054.940700002014637, 257760.896600000560284 ], [ 364048.450599998235703, 257765.48759999871254 ], [ 364034.70380000025034, 257770.019099999219179 ], [ 364008.061300002038479, 257773.811799999326468 ], [ 363997.348899997770786, 257776.375500001013279 ], [ 363987.901100002229214, 257775.858399998396635 ], [ 363982.430699996650219, 257775.967399999499321 ], [ 363973.195699997246265, 257777.753100000321865 ], [ 363949.025200001895428, 257790.129799999296665 ], [ 363943.217299997806549, 257793.187100000679493 ], [ 363935.060300000011921, 257796.845899999141693 ], [ 363929.570200003683567, 257799.284600000828505 ], [ 363920.784199997782707, 257803.403999999165535 ], [ 363907.3091000020504, 257807.63910000026226 ], [ 363896.646700002253056, 257811.897900000214577 ], [ 363893.191899999976158, 257813.887899998575449 ], [ 363890.272299997508526, 257815.116200000047684 ], [ 363883.782200001180172, 257817.846700001507998 ], [ 363872.816500000655651, 257821.015700001269579 ], [ 363862.006999999284744, 257824.186099998652935 ], [ 363858.161399997770786, 257824.71680000051856 ], [ 363851.152999997138977, 257829.311799999326468 ], [ 363868.385499998927116, 257826.602600000798702 ], [ 363878.071400001645088, 257823.155799999833107 ], [ 363882.97070000320673, 257821.412399999797344 ], [ 363897.703699998557568, 257816.256000000983477 ], [ 363912.753200002014637, 257810.636399999260902 ], [ 363921.84910000115633, 257806.830200001597404 ], [ 363948.360699996352196, 257794.784000001847744 ], [ 363964.36089999973774, 257787.619199998676777 ], [ 363972.523299999535084, 257783.339200001209974 ], [ 363979.259499996900558, 257781.377000000327826 ], [ 363990.997299998998642, 257779.301899999380112 ], [ 364001.630800001323223, 257778.46000000089407 ], [ 364016.639600001275539, 257777.655200000852346 ], [ 364030.235399998724461, 257777.615100000053644 ], [ 364037.425999999046326, 257777.36540000140667 ], [ 364049.163800001144409, 257775.290300000458956 ], [ 364061.384900003671646, 257771.51069999858737 ], [ 364080.558799996972084, 257763.889800000935793 ], [ 364084.460900001227856, 257762.335299998521805 ], [ 364079.740699999034405, 257759.601100001484156 ], [ 364089.932899996638298, 257756.319899998605251 ], [ 364090.580899998545647, 257756.233399998396635 ], [ 364070.633100003004074, 257745.095600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203014600", "MAP": "D9-1741-T81", "PARCEL_NAM": "3F", "ACRE": ".61", "LONGITUDE": -64.88138302, "LATITUDE": 18.34834784, "OBJECTID_1": 6986, "PARCEL_NO_": "103203014600", "Tax_Legal_": "TARBOR & HARMNOY 3F EAST END QTR", "Name": "MALONE, RUBY A", "Address": "PO Box 10343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.35775545600001, "SHAPE_Area": 1690.767539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364020.33500000089407, 257673.608899999409914 ], [ 364002.07660000026226, 257706.817099999636412 ], [ 364033.044299997389317, 257724.107900001108646 ], [ 364050.588299997150898, 257703.865699999034405 ], [ 364063.388199999928474, 257687.108899999409914 ], [ 364020.33500000089407, 257673.608899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203014500", "MAP": "D9-1741-T81", "PARCEL_NAM": "3E", "ACRE": ".60", "LONGITUDE": -64.88174796, "LATITUDE": 18.34821181, "OBJECTID_1": 6985, "PARCEL_NO_": "103203014500", "Tax_Legal_": "TARBOR & HARMONY 3E EAST END QTR", "Name": "REY, RUBY & OTHERS", "Address": "PO Box 10343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.16395986800001, "SHAPE_Area": 1418.3709843199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364011.381700001657009, 257670.801399998366833 ], [ 363979.45380000025034, 257660.789799999445677 ], [ 363976.727700002491474, 257665.686599999666214 ], [ 363975.898000001907349, 257668.4239999987185 ], [ 363970.180100001394749, 257677.032000001519918 ], [ 363963.627599999308586, 257685.34910000115633 ], [ 363994.144599996507168, 257702.388199999928474 ], [ 364000.513899996876717, 257705.944499999284744 ], [ 364002.07660000026226, 257706.817099999636412 ], [ 364020.33500000089407, 257673.608899999409914 ], [ 364011.381700001657009, 257670.801399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203014800", "MAP": "D9-1840-T81", "PARCEL_NAM": "2E", "ACRE": ".53", "LONGITUDE": -64.88188366, "LATITUDE": 18.34858442, "OBJECTID_1": 6988, "PARCEL_NO_": "103203014800", "Tax_Legal_": "TARBOR & HARMONY 2E EAST END QTR.", "Name": "TONGE, FERNANDO & ANTHONY, NAN", "Address": "6571 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.72550412200002, "SHAPE_Area": 3949.9506002799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364000.513899996876717, 257705.944499999284744 ], [ 363963.627599999308586, 257685.34910000115633 ], [ 363957.952299997210503, 257692.55290000140667 ], [ 363941.680399999022484, 257709.518300000578165 ], [ 363929.513800002634525, 257717.862399999052286 ], [ 363965.449000000953674, 257759.10869999974966 ], [ 364013.998599998652935, 257739.452199999243021 ], [ 364016.433700002729893, 257737.572299998253584 ], [ 364026.971500001847744, 257731.114599999040365 ], [ 364033.044299997389317, 257724.107900001108646 ], [ 364000.513899996876717, 257705.944499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203013000", "MAP": "D9-2134-T82", "PARCEL_NAM": "3H", "ACRE": ".385", "LONGITUDE": -64.88105491, "LATITUDE": 18.34853139, "OBJECTID_1": 6978, "PARCEL_NO_": "103203013000", "Tax_Legal_": "TABOR&HARMONY 3 REMAINDER No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 200500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.95159302499999, "SHAPE_Area": 1377.4093769900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364039.286100000143051, 257727.592999998480082 ], [ 364060.200300000607967, 257739.270399998873472 ], [ 364070.633100003004074, 257745.095600001513958 ], [ 364078.049900002777576, 257739.339499998837709 ], [ 364079.710299998521805, 257719.951699998229742 ], [ 364082.022600002586842, 257692.951999999582767 ], [ 364069.519900001585484, 257689.031599998474121 ], [ 364055.39919999986887, 257707.07149999961257 ], [ 364039.286100000143051, 257727.592999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203013000", "MAP": "D9-2301-T83", "PARCEL_NAM": "3-REM", "ACRE": "6.8", "LONGITUDE": -64.87965607, "LATITUDE": 18.3495287, "OBJECTID_1": 6978, "PARCEL_NO_": "103203013000", "Tax_Legal_": "TABOR&HARMONY 3 REMAINDER No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 200500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 824.163050064, "SHAPE_Area": 23892.679299399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364143.564499996602535, 257712.249499998986721 ], [ 364138.894500002264977, 257742.227800000458956 ], [ 364109.586400002241135, 257756.037500001490116 ], [ 364116.117299996316433, 257758.337999999523163 ], [ 364119.713899999856949, 257760.38910000026226 ], [ 364123.990800000727177, 257764.991999998688698 ], [ 364126.652699999511242, 257767.856800001114607 ], [ 364130.857400000095367, 257775.164200000464916 ], [ 364137.862199999392033, 257796.361000001430511 ], [ 364166.4949000030756, 257823.237900000065565 ], [ 364170.449100002646446, 257832.347300000488758 ], [ 364173.611400000751019, 257839.761399999260902 ], [ 364175.974600002169609, 257846.324700001627207 ], [ 364179.109999999403954, 257856.905000001192093 ], [ 364182.200300000607967, 257872.762299999594688 ], [ 364178.07940000295639, 257886.144400000572205 ], [ 364172.3412000015378, 257894.213199999183416 ], [ 364163.835500001907349, 257903.386900000274181 ], [ 364146.851700000464916, 257918.473799999803305 ], [ 364138.058799996972084, 257925.400499999523163 ], [ 364127.722900003194809, 257933.542599998414516 ], [ 364106.812700003385544, 257950.022100001573563 ], [ 364325.803300000727177, 257888.971599999815226 ], [ 364322.42679999768734, 257882.353700000792742 ], [ 364319.278899997472763, 257873.250900000333786 ], [ 364317.695000000298023, 257869.860500000417233 ], [ 364313.722800001502037, 257862.861900001764297 ], [ 364310.537100002169609, 257858.191799998283386 ], [ 364301.773699998855591, 257845.665500000119209 ], [ 364300.987199999392033, 257843.337000001221895 ], [ 364299.387199997901917, 257841.8462999984622 ], [ 364291.406800001859665, 257832.070700000971556 ], [ 364285.821900002658367, 257825.058899998664856 ], [ 364265.050200000405312, 257802.301899999380112 ], [ 364253.045400001108646, 257791.648899998515844 ], [ 364248.230899997055531, 257788.865299999713898 ], [ 364243.432599999010563, 257784.182000000029802 ], [ 364239.467600002884865, 257776.339099999517202 ], [ 364237.903499998152256, 257770.6266999989748 ], [ 364237.181699998676777, 257760.699400000274181 ], [ 364238.844700001180172, 257754.802400000393391 ], [ 364240.473499998450279, 257752.915899999439716 ], [ 364242.946400001645088, 257746.603300001472235 ], [ 364223.672200001776218, 257737.368599999696016 ], [ 364218.57880000025034, 257735.77140000090003 ], [ 364179.951800003647804, 257723.659299999475479 ], [ 364143.564499996602535, 257712.249499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203013100", "MAP": "B9-194-T68", "PARCEL_NAM": "3C-REM", "ACRE": "20.00", "LONGITUDE": -64.87903923, "LATITUDE": 18.35165631, "OBJECTID_1": 6979, "PARCEL_NO_": "103203013100", "Tax_Legal_": "TABOR & HARMONY 3C No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 548900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1268.3339031200001, "SHAPE_Area": 85663.858815500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364325.739500001072884, 257888.784699998795986 ], [ 364106.74889999628067, 257949.835200000554323 ], [ 364106.045400001108646, 258001.564100001007318 ], [ 364105.960900001227856, 258011.4847999997437 ], [ 364102.826999999582767, 258190.044300001114607 ], [ 364114.120800003409386, 258189.503400001674891 ], [ 364131.076700001955032, 258186.897999998182058 ], [ 364142.391999997198582, 258183.824200000613928 ], [ 364152.114500001072884, 258178.415300000458956 ], [ 364156.988399997353554, 258174.233399998396635 ], [ 364164.347699999809265, 258162.261300001293421 ], [ 364168.413400001823902, 258158.2837999984622 ], [ 364176.503499999642372, 258155.183600001037121 ], [ 364185.3800999969244, 258154.411800000816584 ], [ 364195.050499998033047, 258155.124299999326468 ], [ 364207.114600002765656, 258158.811599999666214 ], [ 364227.970799997448921, 258171.647900000214577 ], [ 364260.097499996423721, 258186.687399998307228 ], [ 364274.567900002002716, 258191.872099999338388 ], [ 364279.382399998605251, 258194.655699998140335 ], [ 364289.837499998509884, 258197.907699998468161 ], [ 364309.989900000393391, 258198.705899998545647 ], [ 364325.317100003361702, 258197.986999999731779 ], [ 364339.015399999916553, 258199.154599998146296 ], [ 364352.702899999916553, 258201.588599998503923 ], [ 364389.714199997484684, 258211.17960000038147 ], [ 364425.132600001990795, 258218.435600001364946 ], [ 364434.007399998605251, 258217.875 ], [ 364440.488499999046326, 258214.339400000870228 ], [ 364443.744300000369549, 258210.777499999850988 ], [ 364445.392899997532368, 258206.569099999964237 ], [ 364447.838799998164177, 258203.422699999064207 ], [ 364464.053199999034405, 258193.211800001561642 ], [ 364465.734099999070168, 258185.203999999910593 ], [ 364465.006899997591972, 258175.910000000149012 ], [ 364465.83839999884367, 258172.961500000208616 ], [ 364477.261699996888638, 258157.222899999469519 ], [ 364478.156099997460842, 258146.886700000613928 ], [ 364475.7820999994874, 258141.589899998158216 ], [ 364474.17849999666214, 258140.521299999207258 ], [ 364468.606200002133846, 258132.032000001519918 ], [ 364467.002599999308586, 258130.96339999884367 ], [ 364466.214199997484684, 258128.846000000834465 ], [ 364455.051700003445148, 258113.978100001811981 ], [ 364448.691200003027916, 258103.371300000697374 ], [ 364447.085699997842312, 258102.513799998909235 ], [ 364442.323399998247623, 258093.608899999409914 ], [ 364439.285099998116493, 258071.630300000309944 ], [ 364443.45160000026226, 258055.832400001585484 ], [ 364444.367600001394749, 258042.963199999183416 ], [ 364441.230400003492832, 258032.593899998813868 ], [ 364422.669100001454353, 258034.341899998486042 ], [ 364389.973499998450279, 257991.433400001376867 ], [ 364336.108800001442432, 257972.416299998760223 ], [ 364355.796499997377396, 257933.102899998426437 ], [ 364354.19650000333786, 257931.612199999392033 ], [ 364352.600100003182888, 257929.699299998581409 ], [ 364343.811499997973442, 257920.128100000321865 ], [ 364336.639200001955032, 257910.147999998182058 ], [ 364325.739500001072884, 257888.784699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025100", "MAP": "C9-133-T72", "PARCEL_NAM": "5-14", "ACRE": "0.23", "LONGITUDE": -64.87948075, "LATITUDE": 18.3483558, "OBJECTID_1": 7050, "PARCEL_NO_": "103203025100", "Tax_Legal_": "TARBOR & HARMONY 5-14 EAST END QTR.", "Name": "MCMILLIN, M. & REID, V", "Address": "27 Concord Dr", "City": "Middletown", "State": "Rhode Island", "Zip": 2842, "Country": "United States", "Land_Value": 41100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.182223384, "SHAPE_Area": 964.73036302000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364259.403800003230572, 257680.978799998760223 ], [ 364213.563500002026558, 257689.721799999475479 ], [ 364222.867200002074242, 257730.021200001239777 ], [ 364237.61150000244379, 257710.251600001007318 ], [ 364259.403800003230572, 257680.978799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025300", "MAP": "C9-133-T72", "PARCEL_NAM": "5-15", "ACRE": ".24", "LONGITUDE": -64.87946715, "LATITUDE": 18.34814488, "OBJECTID_1": 7052, "PARCEL_NO_": "103203025300", "Tax_Legal_": "TARBOR & HARMONY 5-15 EAST END QTR.", "Name": "BLYDEN, C. & RICHARDSON, E", "Address": "PO Box 503291", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.544409755, "SHAPE_Area": 858.542265348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364213.563500002026558, 257689.721799999475479 ], [ 364259.403800003230572, 257680.978799998760223 ], [ 364260.897799998521805, 257678.971999999135733 ], [ 364266.976800002157688, 257670.80629999935627 ], [ 364208.301399998366833, 257666.928800001740456 ], [ 364213.563500002026558, 257689.721799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025000", "MAP": "D9-5629-T93", "PARCEL_NAM": "5-17A", "ACRE": ".24", "LONGITUDE": -64.87988445000001, "LATITUDE": 18.3483398, "OBJECTID_1": 7049, "PARCEL_NO_": "103203025000", "Tax_Legal_": "TARBOR & HARMONY 5-16A & 5-17 EAST END QTR.", "Name": "BACHELOR, JENNIFER", "Address": "6693 Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22700, "Improved_V": 581300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.8268901693, "SHAPE_Area": 46.446090086600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364183.446699999272823, 257696.991099998354912 ], [ 364187.379299998283386, 257702.282699998468161 ], [ 364194.597000002861023, 257698.263700000941753 ], [ 364193.258599996566772, 257694.622800000011921 ], [ 364183.446699999272823, 257696.991099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88093455000001, "LATITUDE": 18.34822729, "OBJECTID_1": 6982, "PARCEL_NO_": "103203013800", "Tax_Legal_": "TABOR&HARMONY 5A REMAINDER No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.960474468699999, "SHAPE_Area": 139.19516304199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364082.022600002586842, 257692.951999999582767 ], [ 364084.101300001144409, 257674.321800000965595 ], [ 364079.041199997067451, 257676.867499999701977 ], [ 364069.519900001585484, 257689.031599998474121 ], [ 364082.022600002586842, 257692.951999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025000", "MAP": "D9-5629-T93", "PARCEL_NAM": "5-17", "ACRE": ".24", "LONGITUDE": -64.87976001, "LATITUDE": 18.34847683, "OBJECTID_1": 7049, "PARCEL_NO_": "103203025000", "Tax_Legal_": "TARBOR & HARMONY 5-16A & 5-17 EAST END QTR.", "Name": "BACHELOR, JENNIFER", "Address": "6693 Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22700, "Improved_V": 581300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.53153948, "SHAPE_Area": 1314.5970267 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364193.258599996566772, 257694.622800000011921 ], [ 364194.597000002861023, 257698.263700000941753 ], [ 364187.379299998283386, 257702.282699998468161 ], [ 364183.446699999272823, 257696.991099998354912 ], [ 364182.865500003099442, 257701.425799999386072 ], [ 364179.951800003647804, 257723.659299999475479 ], [ 364218.57880000025034, 257735.77140000090003 ], [ 364222.867200002074242, 257730.021200001239777 ], [ 364213.563500002026558, 257689.721799999475479 ], [ 364193.258599996566772, 257694.622800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025000", "MAP": "D9-5629-T93", "PARCEL_NAM": "5-16A", "ACRE": null, "LONGITUDE": -64.8797234, "LATITUDE": 18.34826164, "OBJECTID_1": 7049, "PARCEL_NO_": "103203025000", "Tax_Legal_": "TARBOR & HARMONY 5-16A & 5-17 EAST END QTR.", "Name": "BACHELOR, JENNIFER", "Address": "6693 Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22700, "Improved_V": 581300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.907322818600001, "SHAPE_Area": 56.333698659600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364212.350100003182888, 257684.465900000184774 ], [ 364193.258599996566772, 257694.622800000011921 ], [ 364213.563500002026558, 257689.721799999475479 ], [ 364212.350100003182888, 257684.465900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203013800", "MAP": "D9-2301-T83", "PARCEL_NAM": "5A REM", "ACRE": ".34", "LONGITUDE": -64.88011785, "LATITUDE": 18.3483234, "OBJECTID_1": 6982, "PARCEL_NO_": "103203013800", "Tax_Legal_": "TABOR&HARMONY 5A REMAINDER No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.105580465, "SHAPE_Area": 1556.7354823200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364184.305799998342991, 257690.435499999672174 ], [ 364156.627599999308586, 257659.727200001478195 ], [ 364143.564499996602535, 257712.249499998986721 ], [ 364179.951800003647804, 257723.659299999475479 ], [ 364184.305799998342991, 257690.435499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203025200", "MAP": "D9-8810-T013", "PARCEL_NAM": "5-16 REM", "ACRE": ".23", "LONGITUDE": -64.87989072000001, "LATITUDE": 18.34814671, "OBJECTID_1": 7051, "PARCEL_NO_": "103203025200", "Tax_Legal_": "TARBOR & HARMONY 5-16 & 5-17A EAST END QTR.", "Name": "MAYNARD, KAREN WOODS", "Address": "PO Box 503333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19500, "Improved_V": 518500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.921017702, "SHAPE_Area": 1038.0684129199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364193.258599996566772, 257694.622800000011921 ], [ 364212.350100003182888, 257684.465900000184774 ], [ 364208.301399998366833, 257666.928800001740456 ], [ 364190.414899997413158, 257665.746700000017881 ], [ 364170.025499999523163, 257661.967700000852346 ], [ 364160.626299999654293, 257660.225600000470877 ], [ 364156.627599999308586, 257659.727200001478195 ], [ 364184.305799998342991, 257690.435499999672174 ], [ 364183.446699999272823, 257696.991099998354912 ], [ 364193.258599996566772, 257694.622800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103203014000", "MAP": "G9-2446-T74", "PARCEL_NAM": "3D & 5AA", "ACRE": "1.4", "LONGITUDE": -64.88059752, "LATITUDE": 18.34841858, "OBJECTID_1": 6983, "PARCEL_NO_": "103203014000", "Tax_Legal_": "TARBOR & HARMONY 3D&5AA EAST END QTR", "Name": "MOHAMMAD WAHEED HAMED", "Address": "3082 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102100, "Improved_V": 697600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.20668573400002, "SHAPE_Area": 5816.7309898800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364090.580899998545647, 257756.233399998396635 ], [ 364101.013300001621246, 257754.842199999839067 ], [ 364109.586400002241135, 257756.037500001490116 ], [ 364138.894500002264977, 257742.227800000458956 ], [ 364143.564499996602535, 257712.249499998986721 ], [ 364156.627599999308586, 257659.727200001478195 ], [ 364138.877400003373623, 257657.514499999582767 ], [ 364113.034000001847744, 257662.158100001513958 ], [ 364100.097099997103214, 257666.274099998176098 ], [ 364084.101300001144409, 257674.321800000965595 ], [ 364082.022600002586842, 257692.951999999582767 ], [ 364079.710299998521805, 257719.951699998229742 ], [ 364078.049900002777576, 257739.339499998837709 ], [ 364070.633100003004074, 257745.095600001513958 ], [ 364090.580899998545647, 257756.233399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040200", "MAP": "D9-8812-T013", "PARCEL_NAM": "2C", "ACRE": ".547", "LONGITUDE": -64.90529544, "LATITUDE": 18.35363364, "OBJECTID_1": 6212, "PARCEL_NO_": "103004040200", "Tax_Legal_": "2C & 2D-1 WINTBERG GR NORTHSIDE", "Name": "PURCELL, ALFRED & VICTORIA", "Address": "PO Box 303468", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.852903161, "SHAPE_Area": 2532.9145400799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361526.298600003123283, 258258.807799998670816 ], [ 361517.668300002813339, 258239.582400001585484 ], [ 361509.137000001966953, 258239.426399998366833 ], [ 361502.287000000476837, 258239.195099998265505 ], [ 361496.36370000243187, 258237.939800001680851 ], [ 361485.108599998056889, 258234.09010000154376 ], [ 361479.67509999871254, 258231.389499999582767 ], [ 361473.831000000238419, 258225.166600000113249 ], [ 361469.058899998664856, 258217.437100000679493 ], [ 361473.655799999833107, 258245.761300001293421 ], [ 361482.116999998688698, 258293.748799998313189 ], [ 361507.173900000751019, 258286.776700001209974 ], [ 361530.625299997627735, 258278.94709999859333 ], [ 361526.298600003123283, 258258.807799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004040300", "MAP": "D9-8812-T013", "PARCEL_NAM": "2D-1", "ACRE": ".01", "LONGITUDE": -64.90499345000001, "LATITUDE": 18.35372424, "OBJECTID_1": 6213, "PARCEL_NO_": "103004040300", "Tax_Legal_": "2D & 2C-1 WINTBERG GR NORTHSIDE", "Name": "TODMANN, WINONA", "Address": "PO Box 11158", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 233100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.324268799000002, "SHAPE_Area": 43.898793517900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361534.659699998795986, 258277.433800000697374 ], [ 361526.298600003123283, 258258.807799998670816 ], [ 361530.625299997627735, 258278.94709999859333 ], [ 361534.659699998795986, 258277.433800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90539577, "LATITUDE": 18.35272168, "OBJECTID_1": 6223, "PARCEL_NO_": "103004041300", "Tax_Legal_": "2G WINTBERG GREAT NORTHSIDE", "Name": "MAHEU, MARIA ELENA & ADRIAN T HALE (TRUSTEES)", "Address": "5185 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64600, "Improved_V": 300000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.13429180399999, "SHAPE_Area": 2426.2115150700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361476.341300003230572, 258202.134300000965595 ], [ 361508.845100000500679, 258185.254399999976158 ], [ 361506.872100003063679, 258132.886999998241663 ], [ 361494.016099996864796, 258127.504399999976158 ], [ 361483.598800003528595, 258119.81980000063777 ], [ 361479.56360000371933, 258120.208999998867512 ], [ 361477.938400000333786, 258121.673300001770258 ], [ 361472.971000000834465, 258136.831399999558926 ], [ 361470.447800002992153, 258149.054200001060963 ], [ 361471.061700001358986, 258171.646200001239777 ], [ 361474.121500000357628, 258191.091899998486042 ], [ 361476.341300003230572, 258202.134300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90510631, "LATITUDE": 18.3531558, "OBJECTID_1": 6222, "PARCEL_NO_": "103004041200", "Tax_Legal_": "WINTBERG 2E GR NORTHSIDE", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "PO Box 12259", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54800, "Improved_V": 235100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.532209037, "SHAPE_Area": 3260.7383320700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361556.431900002062321, 258183.955099999904633 ], [ 361508.845100000500679, 258185.254399999976158 ], [ 361476.341300003230572, 258202.134300000965595 ], [ 361477.989500001072884, 258210.333000000566244 ], [ 361477.957099996507168, 258214.132500000298023 ], [ 361479.531999997794628, 258218.578299999237061 ], [ 361481.922100000083447, 258221.975400000810623 ], [ 361484.37389999628067, 258226.339800000190735 ], [ 361493.829700000584126, 258231.42960000038147 ], [ 361505.350900001823902, 258233.813900001347065 ], [ 361514.690200001001358, 258234.861299999058247 ], [ 361522.937799997627735, 258234.207800000905991 ], [ 361556.111900001764297, 258221.527100000530481 ], [ 361556.431900002062321, 258183.955099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89513053, "LATITUDE": 18.35694043, "OBJECTID_1": 6394, "PARCEL_NO_": "103101023000", "Tax_Legal_": "22-26 ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "AVAKIAN, JASON A. & MUDIWA S. MURERWA", "Address": "4003 RAPHUNE HILL STE. 606", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38800, "Improved_V": 376300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.933750747, "SHAPE_Area": 1562.1848333400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362590.473099999129772, 258624.773699998855591 ], [ 362554.694799996912479, 258610.383200000971556 ], [ 362554.254100002348423, 258616.842000000178814 ], [ 362550.096600003540516, 258631.584499999880791 ], [ 362541.880699999630451, 258649.460200000554323 ], [ 362595.846000000834465, 258656.656899999827147 ], [ 362591.981700003147125, 258636.993599999696016 ], [ 362590.419399999082088, 258631.070199999958277 ], [ 362590.473099999129772, 258624.773699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101021900", "MAP": "G9-1393-T69", "PARCEL_NAM": "22-9-1", "ACRE": null, "LONGITUDE": -64.8968953, "LATITUDE": 18.35573794, "OBJECTID_1": 6385, "PARCEL_NO_": "103101021900", "Tax_Legal_": "MANDAHL 22-31,22-9-1,22-1,18-1, 28-1&32-1 MANDAHL", "Name": "TALLMAN CORPORATION", "Address": "6F ESTATE HULL BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.908436560299997, "SHAPE_Area": 138.208550962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362388.343599997460842, 258498.53830000013113 ], [ 362386.77589999884367, 258493.248100001364946 ], [ 362375.431800000369549, 258499.699200000613928 ], [ 362387.429399996995926, 258511.196400001645088 ], [ 362391.536499999463558, 258502.364100001752377 ], [ 362388.343599997460842, 258498.53830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014000", "MAP": "G9-1393-T69", "PARCEL_NAM": "22-6", "ACRE": null, "LONGITUDE": -64.89661803, "LATITUDE": 18.35502036, "OBJECTID_1": 6465, "PARCEL_NO_": "103103014000", "Tax_Legal_": "22-6 MANDAHL GREAT NORTHSIDE", "Name": "MILLER, DENISE MARIA", "Address": "22-6 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29300, "Improved_V": 167500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.65068430900001, "SHAPE_Area": 1519.70798894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362445.135099999606609, 258434.258099999278784 ], [ 362409.175800003111362, 258395.486299999058247 ], [ 362404.515900000929832, 258398.612300001084805 ], [ 362383.42230000346899, 258413.638399999588728 ], [ 362422.62950000166893, 258449.423000000417233 ], [ 362440.478000000119209, 258436.692400000989437 ], [ 362445.135099999606609, 258434.258099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014200", "MAP": "G9-1393-T69", "PARCEL_NAM": "22-5", "ACRE": null, "LONGITUDE": -64.89639619, "LATITUDE": 18.35488474, "OBJECTID_1": 6467, "PARCEL_NO_": "103103014200", "Tax_Legal_": "MANDAHL 22-5 GREAT NORTHSIDE QTR", "Name": "RICHARDSON, CALVIN", "Address": "PO Box 6523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29600, "Improved_V": 347400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.37226989499999, "SHAPE_Area": 1381.1063239099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362409.175800003111362, 258395.486299999058247 ], [ 362445.135099999606609, 258434.258099999278784 ], [ 362462.34740000218153, 258425.261199999600649 ], [ 362467.014700002968311, 258422.299400001764297 ], [ 362432.608999997377396, 258381.654500000178814 ], [ 362431.762599997222424, 258380.799100000411272 ], [ 362428.041000001132488, 258382.128499999642372 ], [ 362423.16889999806881, 258386.099399998784065 ], [ 362409.175800003111362, 258395.486299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-128", "ACRE": null, "LONGITUDE": -64.8774251, "LATITUDE": 18.32342825, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.233199574300002, "SHAPE_Area": 310.67776920900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364466.135200001299381, 254953.475600000470877 ], [ 364477.944499999284744, 254959.672200001776218 ], [ 364478.05762065394083, 254943.850465824973071 ], [ 364477.479299999773502, 254928.038899999111891 ], [ 364467.73480000346899, 254929.077599998563528 ], [ 364466.135200001299381, 254953.475600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104011400", "MAP": null, "PARCEL_NAM": "11", "ACRE": null, "LONGITUDE": -64.88984256000001, "LATITUDE": 18.35022964, "OBJECTID_1": 6748, "PARCEL_NO_": "103104011400", "Tax_Legal_": "MANDAHL 11 GREAT NORTHSIDE QTR", "Name": "STEPHENS, A", "Address": "1590 Lincoln Pl", "City": "Brooklyn", "State": "New York", "Zip": 11233, "Country": "United States", "Land_Value": 79600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 482.36787091500003, "SHAPE_Area": 3012.8548650900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363191.078699998557568, 257883.859999999403954 ], [ 363201.495099999010563, 257879.625799998641014 ], [ 363206.680900000035763, 257878.144099999219179 ], [ 363210.596799999475479, 257877.403299998492002 ], [ 363227.001000002026558, 257875.815799999982119 ], [ 363233.245200000703335, 257874.969099998474121 ], [ 363259.068499997258186, 257869.783300001174212 ], [ 363280.303300000727177, 257866.749099999666214 ], [ 363286.401600003242493, 257863.741900000721216 ], [ 363289.142700001597404, 257862.428300000727177 ], [ 363252.506899997591972, 257866.608300000429153 ], [ 363246.050999999046326, 257868.407400000840425 ], [ 363239.912699997425079, 257869.994899999350309 ], [ 363233.456799998879433, 257871.264899998903275 ], [ 363226.577600002288818, 257872.323300000280142 ], [ 363219.698499999940395, 257873.381599999964237 ], [ 363214.300999999046326, 257873.064100001007318 ], [ 363205.410899996757507, 257873.699099998921156 ], [ 363197.685099996626377, 257875.4983000010252 ], [ 363192.181699998676777, 257877.297400001436472 ], [ 363185.090899996459484, 257880.366599999368191 ], [ 363180.554200001060963, 257883.511900000274181 ], [ 363153.138800002634525, 257888.615699999034405 ], [ 363150.827799998223782, 257875.931200001388788 ], [ 363090.6891999989748, 257886.802099999040365 ], [ 363090.101499997079372, 257936.005800001323223 ], [ 363107.578900001943111, 257935.94990000128746 ], [ 363140.101199999451637, 257904.552099999040365 ], [ 363147.417300000786781, 257897.645899999886751 ], [ 363170.865099996328354, 257890.238400001078844 ], [ 363181.376000002026558, 257886.946899998933077 ], [ 363191.078699998557568, 257883.859999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104011300", "MAP": "F9-270-T58", "PARCEL_NAM": "11E", "ACRE": ".10", "LONGITUDE": -64.89036844, "LATITUDE": 18.35044164, "OBJECTID_1": 6747, "PARCEL_NO_": "103104011300", "Tax_Legal_": "11E MANDAHL GREAT NORTHSIDE QTR", "Name": "TAYLOR, PERCY & JANE SHIELL & TERESA MAE", "Address": "PO Box 4709", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13400, "Improved_V": 126000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.552548325, "SHAPE_Area": 634.86381877600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363090.447599999606609, 257907.027100000530481 ], [ 363068.776199996471405, 257906.781899999827147 ], [ 363067.859600000083447, 257929.980200000107288 ], [ 363067.897600002586842, 257935.450399998575449 ], [ 363082.58330000191927, 257935.745400000363588 ], [ 363089.031999997794628, 257936.009199999272823 ], [ 363090.101499997079372, 257936.005800001323223 ], [ 363090.447599999606609, 257907.027100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104012400", "MAP": "F9-3645-T79", "PARCEL_NAM": "11G", "ACRE": ".07", "LONGITUDE": -64.89036492, "LATITUDE": 18.35021965, "OBJECTID_1": 6757, "PARCEL_NO_": "103104012400", "Tax_Legal_": "11-G MANDAHL", "Name": "CASIMIR, JEANNE", "Address": "11G Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8800, "Improved_V": 74900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.796328771899994, "SHAPE_Area": 343.286897012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363090.497800000011921, 257902.821800000965595 ], [ 363090.6891999989748, 257886.802099999040365 ], [ 363083.795999996364117, 257888.048099998384714 ], [ 363070.873400002717972, 257890.475499998778105 ], [ 363069.410099998116493, 257890.738899998366833 ], [ 363068.843299999833107, 257905.085299998521805 ], [ 363068.776199996471405, 257906.781899999827147 ], [ 363078.005199998617172, 257905.099300000816584 ], [ 363090.497800000011921, 257902.821800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101025700", "MAP": "G9-1042-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89318024000001, "LATITUDE": 18.35749474, "OBJECTID_1": 6420, "PARCEL_NO_": "103101025700", "Tax_Legal_": "MANDAHL 23-B-2 GT. NORTHSIDE QTR.", "Name": "PHILLIP, LARRY A. & MONET M. WHEATLEY", "Address": "2834 Spotted Eagle Dr", "City": "Jacksonville", "State": "Florida", "Zip": 32226, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.322093087400006, "SHAPE_Area": 191.13008879700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362789.062299996614456, 258711.580699998885393 ], [ 362764.277400001883507, 258682.371100001037121 ], [ 362760.911700002849102, 258684.816799998283386 ], [ 362769.687700003385544, 258695.865499999374151 ], [ 362783.243900001049042, 258713.708299998193979 ], [ 362784.840400002896786, 258715.621199999004602 ], [ 362789.062299996614456, 258711.580699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701023000", "MAP": "D9-5157-T91", "PARCEL_NAM": "4B-7", "ACRE": "0.23", "LONGITUDE": -64.86262056, "LATITUDE": 18.32573603, "OBJECTID_1": 39236, "PARCEL_NO_": "107701023000", "Tax_Legal_": "4B-7 ESTATE FRYDENHOJ #3 RED HOOK QTR", "Name": "BROOKS, EUGENE SR. & FRANCIENE", "Address": "PO Box 10775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 149800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.40551208399999, "SHAPE_Area": 801.49461018099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366043.534100003540516, 255194.864799998700619 ], [ 366043.178900003433228, 255193.443599998950958 ], [ 366027.233199998736382, 255194.871899999678135 ], [ 366022.797200001776218, 255195.269299998879433 ], [ 366023.053999997675419, 255206.574299998581409 ], [ 366024.106200002133846, 255227.933699999004602 ], [ 366030.120899997651577, 255228.035199999809265 ], [ 366049.335299998521805, 255228.359499998390675 ], [ 366050.113200001418591, 255227.776099998503923 ], [ 366048.195699997246265, 255215.590199999511242 ], [ 366043.534100003540516, 255194.864799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100504010100", "MAP": "D9-7637-T005", "PARCEL_NAM": "9-2-30 REM", "ACRE": "3.0", "LONGITUDE": -64.94054222, "LATITUDE": 18.3827063, "OBJECTID_1": 15, "PARCEL_NO_": "100504010100", "Tax_Legal_": "9-2-30 REM. PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "DIOCESE OF ST THOMAS IN THE VIRGIN ISLANDS INC", "Address": "PO Box 301825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 849500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 592.31743812800005, "SHAPE_Area": 12320.27984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357838.453699998557568, 261436.102000001817942 ], [ 357783.70099999755621, 261367.224700000137091 ], [ 357774.768299996852875, 261378.091299999505281 ], [ 357765.864699997007847, 261382.029199998825788 ], [ 357756.133199997246265, 261388.493500001728535 ], [ 357747.20269999653101, 261395.597600001841784 ], [ 357734.188400000333786, 261408.78999999910593 ], [ 357730.07769999653101, 261418.044399999082088 ], [ 357730.057899996638298, 261420.366300001740456 ], [ 357727.577799998223782, 261427.523200001567602 ], [ 357725.947200000286102, 261429.620799999684095 ], [ 357724.32379999756813, 261430.874000001698732 ], [ 357713.021099999547005, 261432.470300000160933 ], [ 357709.784999996423721, 261433.710400000214577 ], [ 357707.301399998366833, 261441.28940000012517 ], [ 357702.395099997520447, 261449.270799998193979 ], [ 357688.664499998092651, 261451.90260000154376 ], [ 357684.546599999070168, 261462.001400001347065 ], [ 357679.656599998474121, 261468.083099998533726 ], [ 357673.220399998128414, 261466.341699998825788 ], [ 357666.766400001943111, 261466.711100000888109 ], [ 357665.142899997532368, 261467.964299999177456 ], [ 357663.485399998724461, 261473.228100001811981 ], [ 357660.206200003623962, 261479.534099999815226 ], [ 357649.607199996709824, 261493.168400000780821 ], [ 357640.723399996757507, 261494.784400001168251 ], [ 357638.290100000798702, 261496.453299999237061 ], [ 357637.467600002884865, 261498.346400000154972 ], [ 357646.218299999833107, 261512.35020000115037 ], [ 357648.633699998259544, 261512.792100001126528 ], [ 357655.111100003123283, 261509.678700000047684 ], [ 357659.178700000047684, 261505.490200001746416 ], [ 357660.757100000977516, 261509.513900000602007 ], [ 357663.971600003540516, 261510.806699998676777 ], [ 357670.474200002849102, 261504.738200001418591 ], [ 357672.878799997270107, 261506.446699999272823 ], [ 357672.832000002264977, 261511.93470000103116 ], [ 357679.271700002253056, 261513.254000000655651 ], [ 357684.951899997889996, 261509.078600000590086 ], [ 357694.722999997437, 261497.970600001513958 ], [ 357702.021099999547005, 261493.175200000405312 ], [ 357706.846400000154972, 261494.692299999296665 ], [ 357714.004299998283386, 261506.361099999397993 ], [ 357716.412500001490116, 261507.647300001233816 ], [ 357720.443999998271465, 261507.680300001055002 ], [ 357722.956500001251698, 261496.723999999463558 ], [ 357724.592500001192093, 261493.993200000375509 ], [ 357729.464500002563, 261490.022300001233816 ], [ 357731.879900000989437, 261490.464299999177456 ], [ 357734.255599997937679, 261495.550000000745058 ], [ 357740.637800000607967, 261503.623700000345707 ], [ 357743.880999997258186, 261501.53940000012517 ], [ 357747.160199999809265, 261495.233399998396635 ], [ 357749.604299999773502, 261492.298099998384714 ], [ 357752.035899996757507, 261490.840300001204014 ], [ 357755.241300001740456, 261493.1886 ], [ 357756.027900002896786, 261495.517099998891354 ], [ 357760.059399999678135, 261495.55009999871254 ], [ 357773.914200000464916, 261478.353799998760223 ], [ 357780.418600000441074, 261472.074200000613928 ], [ 357785.323100000619888, 261464.303899999707937 ], [ 357791.005000002682209, 261459.917399998754263 ], [ 357799.084299996495247, 261458.083700001239777 ], [ 357808.765500001609325, 261457.529699999839067 ], [ 357815.232100002467632, 261455.682700000703335 ], [ 357833.881599999964237, 261443.592000000178814 ], [ 357837.972499996423721, 261436.659400001168251 ], [ 357838.453699998557568, 261436.102000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100504020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93804376, "LATITUDE": 18.38146429, "OBJECTID_1": 22, "PARCEL_NO_": "100504020500", "Tax_Legal_": "PETERBORG 9-2-15 & 9-2-16 GT. NORTHSIDE", "Name": "Nicolas G & Maria Rodriguez Van Heurck Revoc Trust", "Address": "PO Box 7802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 476600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.12388008, "SHAPE_Area": 2560.4292860300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358043.752300001680851, 261323.719799999147654 ], [ 358015.8496999964118, 261286.12779999896884 ], [ 358002.228699997067451, 261275.883900001645088 ], [ 357990.848600000143051, 261286.556499999016523 ], [ 357974.653999999165535, 261294.445500001311302 ], [ 358021.731899999082088, 261352.881499998271465 ], [ 358027.412100002169609, 261348.706199999898672 ], [ 358029.85980000346899, 261345.348700001835823 ], [ 358034.713799998164177, 261343.488600000739098 ], [ 358041.247100003063679, 261333.831700000911951 ], [ 358043.680399999022484, 261332.162900000810623 ], [ 358044.522699996829033, 261327.947900000959635 ], [ 358043.752300001680851, 261323.719799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100504020800", "MAP": "B9-503-T80", "PARCEL_NAM": "9-2-29", "ACRE": null, "LONGITUDE": -64.93898756, "LATITUDE": 18.38132815, "OBJECTID_1": 24, "PARCEL_NO_": "100504020800", "Tax_Legal_": "PETERBORG 9-2-29 GT. NORTHSIDE", "Name": "PAUL M & WENDY S YEDWAB REVOCABLE LIVING TRUST", "Address": "3570 Edgewood Park Dr", "City": "Commerce Township", "State": "Michigan", "Zip": 48382, "Country": "United States", "Land_Value": 254900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.30839104899999, "SHAPE_Area": 2751.1472973599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357955.277300000190735, 261297.242199998348951 ], [ 357903.142099998891354, 261264.518199998885393 ], [ 357896.632299996912479, 261271.431000001728535 ], [ 357886.915200002491474, 261276.206599999219179 ], [ 357886.063900001347065, 261281.477000001817942 ], [ 357881.204499997198582, 261283.970400001853704 ], [ 357881.145099997520447, 261290.936000000685453 ], [ 357877.099200002849102, 261292.591600000858307 ], [ 357876.273100003600121, 261294.906899999827147 ], [ 357881.033600002527237, 261304.022799998521805 ], [ 357887.4391999989748, 261309.352600000798702 ], [ 357894.674400001764297, 261311.945000000298023 ], [ 357894.633100003004074, 261316.799800001084805 ], [ 357925.996500000357628, 261326.766800001263618 ], [ 357934.057800002396107, 261327.043800000101328 ], [ 357939.035999998450279, 261310.619300000369549 ], [ 357946.370099999010563, 261301.602299999445677 ], [ 357955.277300000190735, 261297.242199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100504020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93784587, "LATITUDE": 18.38118766, "OBJECTID_1": 20, "PARCEL_NO_": "100504020300", "Tax_Legal_": "PETERBORG 9-2-14 GT. NORTHSIDE", "Name": "ZAPPIA, FRANK & GRAZIELLA R", "Address": "25 Woodfern St", "City": "Edison", "State": "New Jersey", "Zip": 8820, "Country": "United States", "Land_Value": 208700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.83693703599999, "SHAPE_Area": 2048.27572358 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358064.237400002777576, 261285.468400001525879 ], [ 358025.035599999129772, 261249.050500001758337 ], [ 358008.770900003612041, 261265.171599999070168 ], [ 358002.228699997067451, 261275.883900001645088 ], [ 358015.8496999964118, 261286.12779999896884 ], [ 358043.752300001680851, 261323.719799999147654 ], [ 358044.587399996817112, 261320.34910000115633 ], [ 358042.182800002396107, 261318.640700001269579 ], [ 358042.217000000178814, 261314.630199998617172 ], [ 358043.842200003564358, 261313.165800001472235 ], [ 358048.689099997282028, 261312.149999998509884 ], [ 358049.522399999201298, 261308.99040000140667 ], [ 358051.151199996471405, 261307.103900000452995 ], [ 358054.394400000572205, 261305.019499998539686 ], [ 358057.626900002360344, 261304.20160000026226 ], [ 358058.470899999141693, 261299.775600001215935 ], [ 358056.062799997627735, 261298.48930000141263 ], [ 358053.726599998772144, 261288.759899999946356 ], [ 358055.355400003492832, 261286.873399998992682 ], [ 358062.608599998056889, 261287.354899998754263 ], [ 358064.237400002777576, 261285.468400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100504020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93870975, "LATITUDE": 18.38109014, "OBJECTID_1": 23, "PARCEL_NO_": "100504020600", "Tax_Legal_": "PETERBORG 9-2-28 GT. NORTHSIDE", "Name": "BLR INVESTMENTS LLC", "Address": "158 Sandbar Dr", "City": "Jupiter", "State": "Florida", "Zip": 334770000, "Country": "United States", "Land_Value": 240200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.835426961, "SHAPE_Area": 1986.48908104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357983.615099996328354, 261283.753100000321865 ], [ 357932.358199998736382, 261242.592500001192093 ], [ 357929.92849999666214, 261243.839200001209974 ], [ 357929.093400001525879, 261247.209800001233816 ], [ 357925.029399998486042, 261250.976300001144409 ], [ 357925.004299998283386, 261253.931400001049042 ], [ 357922.563799999654293, 261256.444499999284744 ], [ 357920.144799999892712, 261256.424699999392033 ], [ 357916.136600002646446, 261253.647700000554323 ], [ 357908.881599999964237, 261253.377199999988079 ], [ 357906.444700002670288, 261255.468199998140335 ], [ 357904.799699999392033, 261259.254399999976158 ], [ 357904.765500001609325, 261263.264899998903275 ], [ 357903.142099998891354, 261264.518199998885393 ], [ 357955.277300000190735, 261297.242199998348951 ], [ 357977.947599999606609, 261286.450899999588728 ], [ 357983.615099996328354, 261283.753100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100504020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93763128000001, "LATITUDE": 18.38099119, "OBJECTID_1": 18, "PARCEL_NO_": "100504020100", "Tax_Legal_": "PETERBORG 9-2-13 GT. NORTHSIDE QTR.", "Name": "HOPPER, SUDI", "Address": "4885 Franklin Rd", "City": "Bloomfield Hills", "State": "Michigan", "Zip": 48302, "Country": "United States", "Land_Value": 199800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.43561074900001, "SHAPE_Area": 1405.31518955 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358083.009099997580051, 261259.02419999986887 ], [ 358048.447400003671646, 261245.864700000733137 ], [ 358034.844400003552437, 261233.509899999946356 ], [ 358025.035599999129772, 261249.050500001758337 ], [ 358064.237400002777576, 261285.468400001525879 ], [ 358071.506800003349781, 261284.050200000405312 ], [ 358071.54280000180006, 261279.828699998557568 ], [ 358072.365199998021126, 261277.935499999672174 ], [ 358074.785999998450279, 261277.744300000369549 ], [ 358076.369800001382828, 261281.134700000286102 ], [ 358078.783399999141693, 261281.787799999117851 ], [ 358080.42119999974966, 261278.845899999141693 ], [ 358084.472499996423721, 261276.557000000029802 ], [ 358084.495899997651577, 261273.813000001013279 ], [ 358082.082400001585484, 261273.15989999845624 ], [ 358081.288599997758865, 261271.675799999386072 ], [ 358082.95160000026226, 261265.778799999505281 ], [ 358083.009099997580051, 261259.02419999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100504020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9384127, "LATITUDE": 18.38089071, "OBJECTID_1": 21, "PARCEL_NO_": "100504020400", "Tax_Legal_": "PETERBORG 9-2-27 GT. NORTHSIDE", "Name": "DEWINDT, FRANKLIN & VIVIAN", "Address": "PO Box 502582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 225900, "Improved_V": 597800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.963737874, "SHAPE_Area": 2669.3654874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357984.088100001215935, 261228.23930000141263 ], [ 357974.486000001430511, 261219.505899999290705 ], [ 357971.25, 261220.745999999344349 ], [ 357964.813900001347065, 261219.004599999636412 ], [ 357962.39130000025034, 261219.406899999827147 ], [ 357959.950800001621246, 261221.920099999755621 ], [ 357955.910300001502037, 261222.942499998956919 ], [ 357955.059000000357628, 261228.212799999862909 ], [ 357949.400399997830391, 261229.85530000180006 ], [ 357947.753600001335144, 261233.852600000798702 ], [ 357944.531999997794628, 261233.403999999165535 ], [ 357942.093299999833107, 261235.7060999982059 ], [ 357937.25, 261236.299699999392033 ], [ 357935.624799996614456, 261237.76410000026226 ], [ 357935.596000000834465, 261241.14130000025034 ], [ 357932.358199998736382, 261242.592500001192093 ], [ 357983.615099996328354, 261283.753100000321865 ], [ 357994.165500000119209, 261275.817899998277426 ], [ 357999.053800001740456, 261269.947299998253584 ], [ 357999.879799999296665, 261267.631999999284744 ], [ 358006.409500002861023, 261258.397300001233816 ], [ 358012.098600000143051, 261253.166499998420477 ], [ 357984.088100001215935, 261228.23930000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93742444, "LATITUDE": 18.38065704, "OBJECTID_1": 700, "PARCEL_NO_": "101202015400", "Tax_Legal_": "PETERBORG 9-2-12 GT. NORTHSIDE", "Name": "THOMAS, CLAUDIA L", "Address": "5421 Emerald Bay Ln", "City": "LADY LAKE", "State": "Florida", "Zip": 32159, "Country": "United States", "Land_Value": 249100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.79012184300001, "SHAPE_Area": 2978.9719162199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358126.812600001692772, 261228.563099998980761 ], [ 358089.262900002300739, 261187.514699999243021 ], [ 358080.343099996447563, 261193.352299999445677 ], [ 358034.844400003552437, 261233.509899999946356 ], [ 358048.447400003671646, 261245.864700000733137 ], [ 358083.009099997580051, 261259.02419999986887 ], [ 358083.840599998831749, 261256.075699999928474 ], [ 358087.091099999845028, 261253.146999999880791 ], [ 358087.125200003385544, 261249.136500000953674 ], [ 358084.729699999094009, 261246.372699998319149 ], [ 358084.760200001299381, 261242.784400001168251 ], [ 358090.42059999704361, 261240.930900000035763 ], [ 358091.31139999628067, 261231.016800001263618 ], [ 358094.545699998736382, 261229.987799998372793 ], [ 358100.1503000035882, 261234.677700001746416 ], [ 358104.180100001394749, 261234.921799998730421 ], [ 358106.629600003361702, 261231.353199999779463 ], [ 358109.860200002789497, 261230.746399998664856 ], [ 358110.70610000193119, 261226.109200000762939 ], [ 358113.94030000269413, 261225.080200001597404 ], [ 358115.542199999094009, 261226.359900001436472 ], [ 358120.376400001347065, 261226.821699999272823 ], [ 358121.148599997162819, 261230.838799998164177 ], [ 358122.759400002658367, 261231.063000001013279 ], [ 358126.812600001692772, 261228.563099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93801617, "LATITUDE": 18.38061844, "OBJECTID_1": 701, "PARCEL_NO_": "101202015500", "Tax_Legal_": "PETERBORG 9-1-13 GREAT NORTHSIDE QUARTER", "Name": "WILLIAMS, DONNICA L.", "Address": "PO BOX 307078", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 154000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.886340805, "SHAPE_Area": 2106.5686594399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358049.541400000452995, 261212.098700001835823 ], [ 358038.364500001072884, 261198.919399999082088 ], [ 358009.450599998235703, 261185.383799999952316 ], [ 358012.602099999785423, 261194.064500000327826 ], [ 358010.897799998521805, 261204.816300000995398 ], [ 358009.272600002586842, 261206.280600000172853 ], [ 358004.427500002086163, 261207.085400000214577 ], [ 358002.798699997365475, 261208.971900001168251 ], [ 357998.761699996888638, 261209.57209999859333 ], [ 357995.520300000905991, 261211.44539999961853 ], [ 357991.452799998223782, 261215.63399999961257 ], [ 357989.05179999768734, 261213.503400001674891 ], [ 357988.171800002455711, 261222.151000000536442 ], [ 357986.517800003290176, 261226.99269999936223 ], [ 357984.088100001215935, 261228.23930000141263 ], [ 358012.098600000143051, 261253.166499998420477 ], [ 358021.858900003135204, 261243.324999999254942 ], [ 358025.143500000238419, 261236.385800000280142 ], [ 358033.29110000282526, 261226.531100001186132 ], [ 358049.541400000452995, 261212.098700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9383582, "LATITUDE": 18.38064125, "OBJECTID_1": 701, "PARCEL_NO_": "101202015500", "Tax_Legal_": "PETERBORG 9-1-13 GREAT NORTHSIDE QUARTER", "Name": "WILLIAMS, DONNICA L.", "Address": "PO BOX 307078", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 154000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.532773909300001, "SHAPE_Area": 39.7431271114 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357984.088100001215935, 261228.23930000141263 ], [ 357981.751800000667572, 261218.509899999946356 ], [ 357978.530199997127056, 261218.0614 ], [ 357974.486000001430511, 261219.505899999290705 ], [ 357984.088100001215935, 261228.23930000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93696277, "LATITUDE": 18.38031975, "OBJECTID_1": 699, "PARCEL_NO_": "101202015300", "Tax_Legal_": "PETERBORG 9-2-11 GT. NORTHSIDE", "Name": "MISITE, PHYLLIS", "Address": "220 Neport Rd", "City": "HILL", "State": "Massachusetts", "Zip": 2045, "Country": "United States", "Land_Value": 237400, "Improved_V": 368600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.414074701, "SHAPE_Area": 2678.8069721900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358172.316699996590614, 261187.772300001233816 ], [ 358120.206699997186661, 261152.093199998140335 ], [ 358104.679999999701977, 261176.241799999028444 ], [ 358097.369199998676777, 261182.514800000935793 ], [ 358089.262900002300739, 261187.514699999243021 ], [ 358126.812600001692772, 261228.563099998980761 ], [ 358127.652999997138977, 261224.559200000017881 ], [ 358126.049400001764297, 261223.490600001066923 ], [ 358126.067400000989437, 261221.379799999296665 ], [ 358127.690800003707409, 261220.126499999314547 ], [ 358131.715199999511242, 261221.003899998962879 ], [ 358134.144900001585484, 261219.757199998944998 ], [ 358133.397900000214577, 261212.785000000149012 ], [ 358131.007799997925758, 261209.387899998575449 ], [ 358131.05629999935627, 261203.688799999654293 ], [ 358132.695900000631809, 261200.535799998790026 ], [ 358138.336499996483326, 261201.004200000315905 ], [ 358139.184199996292591, 261196.155900001525879 ], [ 358141.610299997031689, 261195.331399999558926 ], [ 358143.210299998521805, 261196.822200000286102 ], [ 358145.627499997615814, 261197.053100001066923 ], [ 358148.868900001049042, 261195.179699998348951 ], [ 358152.096000000834465, 261194.995099999010563 ], [ 358156.908699996769428, 261197.989799998700619 ], [ 358161.76630000025034, 261195.707499999552965 ], [ 358165.792499996721745, 261196.373700000345707 ], [ 358169.82940000295639, 261195.773499999195337 ], [ 358172.316699996590614, 261187.772300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93764475, "LATITUDE": 18.38025685, "OBJECTID_1": 697, "PARCEL_NO_": "101202015100", "Tax_Legal_": "PETERBORG 9-2-18 GT. NORTHSIDE", "Name": "ROBERT DEAN MARSHALL LIVING TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 225900, "Improved_V": 1125800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.275235412, "SHAPE_Area": 2594.89890715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358103.150100000202656, 261166.519000001251698 ], [ 358065.343299999833107, 261155.654899999499321 ], [ 358059.670299999415874, 261158.986000001430511 ], [ 358051.589199997484684, 261161.030799999833107 ], [ 358048.344200000166893, 261163.326200000941753 ], [ 358045.109899997711182, 261164.355200000107288 ], [ 358041.085600003600121, 261163.477899998426437 ], [ 358039.492700003087521, 261161.142900001257658 ], [ 358037.07379999756813, 261161.123100001364946 ], [ 358035.4324000030756, 261164.487100001424551 ], [ 358028.920800000429153, 261171.611000001430511 ], [ 358020.814499996602535, 261176.61089999973774 ], [ 358009.493699997663498, 261180.317899998277426 ], [ 358008.663999997079372, 261183.055399999022484 ], [ 358009.450599998235703, 261185.383799999952316 ], [ 358038.364500001072884, 261198.919399999082088 ], [ 358049.541400000452995, 261212.098700001835823 ], [ 358077.162799999117851, 261188.0489999987185 ], [ 358097.433899998664856, 261174.916000001132488 ], [ 358103.150100000202656, 261166.519000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93675442, "LATITUDE": 18.37997639, "OBJECTID_1": 674, "PARCEL_NO_": "101202012000", "Tax_Legal_": "PETERBORG 9-2-10 GT. NORTHSIDE", "Name": "DANDALOO LIMITED PARTNERSHIP", "Address": "7109 Anchorage Ln", "City": "Tega Cay", "State": "South Carolina", "Zip": 29708, "Country": "United States", "Land_Value": 253100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.49588712299999, "SHAPE_Area": 2095.6787502699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358176.6216000020504, 261155.7212999984622 ], [ 358136.73030000180006, 261105.576699998229742 ], [ 358135.078199997544289, 261110.207299999892712 ], [ 358133.345100000500679, 261124.336300000548363 ], [ 358130.008299998939037, 261137.396800000220537 ], [ 358126.729099996387959, 261143.702799998223782 ], [ 358120.206699997186661, 261152.093199998140335 ], [ 358172.316699996590614, 261187.772300001233816 ], [ 358173.157200001180172, 261183.768399998545647 ], [ 358178.054399996995926, 261176.842399999499321 ], [ 358178.097599998116493, 261171.776500001549721 ], [ 358175.687600001692772, 261170.701299998909235 ], [ 358173.261500000953674, 261171.525800000876188 ], [ 358172.435400001704693, 261173.841099999845028 ], [ 358170.020000003278255, 261173.399099998176098 ], [ 358170.057800002396107, 261168.966499999165535 ], [ 358166.029799997806549, 261168.511300001293421 ], [ 358166.051399998366833, 261165.978399999439716 ], [ 358171.717200003564358, 261163.491599999368191 ], [ 358174.195500001311302, 261156.545800000429153 ], [ 358176.6216000020504, 261155.7212999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93724629, "LATITUDE": 18.379877, "OBJECTID_1": 675, "PARCEL_NO_": "101202012700", "Tax_Legal_": "PETERBORG 9-2-19 GT. NORTHSIDE", "Name": "DEWROCK LLC", "Address": "1527 Valmont St", "City": "NEW ORLEANS", "State": "Louisiana", "Zip": 70011, "Country": "United States", "Land_Value": 307600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.841164771, "SHAPE_Area": 1931.0880641199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358126.876599997282028, 261126.394299998879433 ], [ 358085.925499998033047, 261106.005300000309944 ], [ 358083.48309999704361, 261108.729499999433756 ], [ 358084.240900002419949, 261114.435199998319149 ], [ 358083.332099996507168, 261126.460099998861551 ], [ 358079.973800003528595, 261142.053599998354912 ], [ 358073.447800002992153, 261150.866099998354912 ], [ 358065.343299999833107, 261155.654899999499321 ], [ 358103.150100000202656, 261166.519000001251698 ], [ 358121.923600003123283, 261139.863800000399351 ], [ 358126.876599997282028, 261126.394299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93655963, "LATITUDE": 18.37967426, "OBJECTID_1": 673, "PARCEL_NO_": "101202011900", "Tax_Legal_": "9-2-9 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "KARN, RICHARD RAYMOND", "Address": "5740 PLUMB ROAD", "City": "GALENA", "State": "Ohio", "Zip": 43021, "Country": "United States", "Land_Value": 290700, "Improved_V": 505500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.48476085, "SHAPE_Area": 2772.9344823000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358200.91889999806881, 261143.25450000166893 ], [ 358180.265799999237061, 261106.566300000995398 ], [ 358187.04900000244379, 261067.569499999284744 ], [ 358145.698700003325939, 261094.03999999910593 ], [ 358140.821199998259544, 261098.644099999219179 ], [ 358136.73030000180006, 261105.576699998229742 ], [ 358176.6216000020504, 261155.7212999984622 ], [ 358180.640600003302097, 261157.231800001114607 ], [ 358182.218999996781349, 261161.255499999970198 ], [ 358186.247000001370907, 261161.710700001567602 ], [ 358187.870399996638298, 261160.457400001585484 ], [ 358190.327100001275539, 261156.044599998742342 ], [ 358195.994699999690056, 261153.346700001507998 ], [ 358198.487300001084805, 261144.71229999884963 ], [ 358200.91889999806881, 261143.25450000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93614608, "LATITUDE": 18.37948634, "OBJECTID_1": 672, "PARCEL_NO_": "101202011800", "Tax_Legal_": "9-2-8 PETERBORG GREAT NORTHSIDE QUARTER", "Name": "CASAGRANDE, DIRK & WERA", "Address": "40 Mystic St", "City": "Arlington", "State": "Massachusetts", "Zip": 2474, "Country": "United States", "Land_Value": 226500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.88117399399999, "SHAPE_Area": 4610.9128038400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358267.403300002217293, 261100.735599998384714 ], [ 358206.634199999272823, 261040.28770000115037 ], [ 358201.668700002133846, 261055.234700001776218 ], [ 358194.345399998128414, 261062.985199999064207 ], [ 358187.04900000244379, 261067.569499999284744 ], [ 358180.265799999237061, 261106.566300000995398 ], [ 358200.91889999806881, 261143.25450000166893 ], [ 358204.138700000941753, 261143.914200000464916 ], [ 358205.728000000119209, 261146.671399999409914 ], [ 358207.342399999499321, 261146.473499998450279 ], [ 358212.187399998307228, 261145.668800000101328 ], [ 358214.586599998176098, 261148.010499998927116 ], [ 358217.012699998915195, 261147.185899998992682 ], [ 358217.838799998164177, 261144.870700001716614 ], [ 358221.073100000619888, 261143.841699998825788 ], [ 358222.698299996554852, 261142.377300001680851 ], [ 358219.528800003230572, 261135.807500001043081 ], [ 358221.168399997055531, 261132.654500000178814 ], [ 358227.656599998474121, 261128.274599999189377 ], [ 358231.68639999628067, 261128.518699999898672 ], [ 358233.331399999558926, 261124.732500001788139 ], [ 358235.757500000298023, 261123.907999999821186 ], [ 358235.777300000190735, 261121.586100000888109 ], [ 358232.580799996852875, 261118.182500001043081 ], [ 358234.256399996578693, 261110.807900000363588 ], [ 358232.670699998736382, 261107.628499999642372 ], [ 358232.694099999964237, 261104.884500000625849 ], [ 358235.138199999928474, 261101.949200000613928 ], [ 358240.796800002455711, 261100.306699998676777 ], [ 358245.674199998378754, 261095.702599998563528 ], [ 358249.702200002968311, 261096.157800000160933 ], [ 358251.255500003695488, 261103.136599998921156 ], [ 358255.985500000417233, 261115.840900000184774 ], [ 358260.000799998641014, 261117.773600000888109 ], [ 358262.434199996292591, 261116.104800000786781 ], [ 358259.293399997055531, 261106.157699998468161 ], [ 358260.141099996864796, 261101.309399999678135 ], [ 358263.368100002408028, 261101.124800000339746 ], [ 358265.776299998164177, 261102.410999998450279 ], [ 358267.403300002217293, 261100.735599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93709591, "LATITUDE": 18.37943599, "OBJECTID_1": 676, "PARCEL_NO_": "101202012800", "Tax_Legal_": "PETERBORG 9-2-20 GT. NORTHSIDE", "Name": "DEWROCK LLC", "Address": "1527 Valmont St", "City": "NEW ORLEANS", "State": "Louisiana", "Zip": 70011, "Country": "United States", "Land_Value": 287500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.293464508, "SHAPE_Area": 2411.8370314099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358149.002999998629093, 261084.778900001198053 ], [ 358106.541799999773502, 261052.345199998468161 ], [ 358104.896799996495247, 261056.131400000303984 ], [ 358099.222099997103214, 261059.673500001430511 ], [ 358096.767200000584126, 261063.875300001353025 ], [ 358095.865500003099442, 261075.055900000035763 ], [ 358093.4087999984622, 261079.468699999153614 ], [ 358093.318899996578693, 261090.022700000554323 ], [ 358090.063100002706051, 261093.584600001573563 ], [ 358089.175899997353554, 261103.07660000026226 ], [ 358085.925499998033047, 261106.005300000309944 ], [ 358126.876599997282028, 261126.394299998879433 ], [ 358128.616899996995926, 261111.420899998396635 ], [ 358131.105899997055531, 261103.208700001239777 ], [ 358134.381499998271465, 261097.32490000128746 ], [ 358139.271600000560284, 261091.243200000375509 ], [ 358149.002999998629093, 261084.778900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202011700", "MAP": "B9-463-T75", "PARCEL_NAM": "9-2-7", "ACRE": null, "LONGITUDE": -64.93586769, "LATITUDE": 18.3790646, "OBJECTID_1": 671, "PARCEL_NO_": "101202011700", "Tax_Legal_": "PETERBORG 9-2-7 GT. NORTHSIDE", "Name": "CASAGRANDE, NIKOLAS A.", "Address": "24 Arlington St", "City": "Winchester", "State": "Massachusetts", "Zip": 1890, "Country": "United States", "Land_Value": 224600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.82740527200002, "SHAPE_Area": 3461.34252513 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358255.930799998342991, 261027.603300001472235 ], [ 358220.67059999704361, 261001.772399999201298 ], [ 358209.125100001692772, 261031.86430000141263 ], [ 358206.634199999272823, 261040.28770000115037 ], [ 358267.403300002217293, 261100.735599998384714 ], [ 358266.661700002849102, 261093.130199998617172 ], [ 358268.290500000119209, 261091.243700001388788 ], [ 358272.332900002598763, 261090.010200001299381 ], [ 358275.581500001251698, 261087.292500000447035 ], [ 358274.814800001680851, 261082.642200000584126 ], [ 358273.225500002503395, 261079.885000001639128 ], [ 358273.247100003063679, 261077.352000001817942 ], [ 358274.875900000333786, 261075.465500000864267 ], [ 358279.731799997389317, 261073.394299998879433 ], [ 358281.371399998664856, 261070.241399999707937 ], [ 358284.603799998760223, 261069.42339999973774 ], [ 358255.930799998342991, 261027.603300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93680679000001, "LATITUDE": 18.37904836, "OBJECTID_1": 677, "PARCEL_NO_": "101202012900", "Tax_Legal_": "PETERBORG 9-2-21 GT. NORTHSIDE", "Name": "FAGAN, RANDOLPH & JOEDNA", "Address": "9108 W Simmons CR", "City": "Ocean Springs", "State": "Mississippi", "Zip": 39564, "Country": "United States", "Land_Value": 212300, "Improved_V": 287100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.25018900699999, "SHAPE_Area": 3373.0833326100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358185.488499999046326, 261061.434999998658895 ], [ 358144.069099999964237, 261001.356600001454353 ], [ 358136.745800003409386, 261009.107099998742342 ], [ 358131.072800002992153, 261012.438200000673532 ], [ 358127.0016999989748, 261017.048900000751019 ], [ 358118.77139999717474, 261036.613200001418591 ], [ 358113.884900003671646, 261042.272799998521805 ], [ 358109.025499999523163, 261044.766100000590086 ], [ 358106.541799999773502, 261052.345199998468161 ], [ 358149.002999998629093, 261084.778900001198053 ], [ 358185.488499999046326, 261061.434999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93654687, "LATITUDE": 18.37879014, "OBJECTID_1": 678, "PARCEL_NO_": "101202013000", "Tax_Legal_": "PETERBORG 9-2-22 GT. NORTHSIDE", "Name": "VILLA TRANQUILITY, LLC", "Address": "1001 Lake Carolyn Pkwy", "City": "Irving", "State": "Texas", "Zip": 75039, "Country": "United States", "Land_Value": 182000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.81268690499999, "SHAPE_Area": 1840.45349945 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358185.250399999320507, 260994.72749999910593 ], [ 358162.758199997246265, 260984.622000001370907 ], [ 358161.102399997413158, 260989.674699999392033 ], [ 358156.214199997484684, 260995.545400001108646 ], [ 358144.069099999964237, 261001.356600001454353 ], [ 358185.488499999046326, 261061.434999998658895 ], [ 358191.975000001490116, 261057.26630000025034 ], [ 358190.585299998521805, 261031.079300001263618 ], [ 358186.704800002276897, 261013.315699998289347 ], [ 358185.250399999320507, 260994.72749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202011100", "MAP": "B9-462-T75", "PARCEL_NAM": "9-2-1", "ACRE": null, "LONGITUDE": -64.93464734, "LATITUDE": 18.37845544, "OBJECTID_1": 666, "PARCEL_NO_": "101202011100", "Tax_Legal_": "PETERBORG 9-2-1 GT. NORTHSIDE", "Name": "SILVIO HIDALGO REVOCABLE TRUST", "Address": "8168 Crown Bay", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 331900, "Improved_V": 495900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.36612700400002, "SHAPE_Area": 4059.7014143900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358415.771300002932549, 261006.535599999129772 ], [ 358363.191200003027916, 260931.378199998289347 ], [ 358327.535400003194809, 260951.984600000083447 ], [ 358387.309399999678135, 261034.589200001209974 ], [ 358388.13910000026226, 261031.851799998432398 ], [ 358390.563400000333786, 261031.238400001078844 ], [ 358392.168799996376038, 261032.095899999141693 ], [ 358392.150799997150898, 261034.206700000911951 ], [ 358393.743699997663498, 261036.541700001806021 ], [ 358397.778899997472763, 261036.15260000154376 ], [ 358399.371699996292591, 261038.48759999871254 ], [ 358402.596900001168251, 261038.513999998569489 ], [ 358405.897699996829033, 261029.67509999871254 ], [ 358405.955300003290176, 261022.9206000007689 ], [ 358402.006399996578693, 261013.177999999374151 ], [ 358404.430699996650219, 261012.564500000327826 ], [ 358406.822700001299381, 261015.750500001013279 ], [ 358409.243400000035763, 261015.559200000017881 ], [ 358411.716300003230572, 261009.246700000017881 ], [ 358415.771300002932549, 261006.535599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202011600", "MAP": "G9-2648-T77", "PARCEL_NAM": "9-2-5", "ACRE": null, "LONGITUDE": -64.93579301, "LATITUDE": 18.37855025, "OBJECTID_1": 670, "PARCEL_NO_": "101202011600", "Tax_Legal_": "PETERBORG 9-2-5 GT. NORTHSIDE", "Name": "BROOME, WILLIAM B", "Address": "PO Box 309720", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 220200, "Improved_V": 353700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.86512845300001, "SHAPE_Area": 2602.7218820600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358290.184299997985363, 260982.287500001490116 ], [ 358238.770900003612041, 260959.490800000727177 ], [ 358233.026100002229214, 260971.265000000596046 ], [ 358220.67059999704361, 261001.772399999201298 ], [ 358255.930799998342991, 261027.603300001472235 ], [ 358281.982699997723103, 260998.474599998444319 ], [ 358278.782700002193451, 260995.493000000715256 ], [ 358290.184299997985363, 260982.287500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93637348, "LATITUDE": 18.37838829, "OBJECTID_1": 679, "PARCEL_NO_": "101202013100", "Tax_Legal_": "PETERBORG 9-2-23 GT. NORTHSIDE", "Name": "LENTNEK, RUTH", "Address": "560 Rica Ln", "City": "Woodmere", "State": "New York", "Zip": 11598, "Country": "United States", "Land_Value": 223000, "Improved_V": 114100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.05676643800001, "SHAPE_Area": 2296.5233150099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358224.113499999046326, 260976.258299998939037 ], [ 358212.061899997293949, 260971.093400001525879 ], [ 358179.325000002980232, 260933.039700001478195 ], [ 358170.281099997460842, 260953.441799998283386 ], [ 358167.727300003170967, 260969.252900000661612 ], [ 358164.392399996519089, 260982.102299999445677 ], [ 358162.758199997246265, 260984.622000001370907 ], [ 358185.250399999320507, 260994.72749999910593 ], [ 358191.677500002086163, 260997.524399999529123 ], [ 358212.564300000667572, 261006.772300001233816 ], [ 358224.113499999046326, 260976.258299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93297775000001, "LATITUDE": 18.37809962, "OBJECTID_1": 886, "PARCEL_NO_": "101301030900", "Tax_Legal_": "PETERBORG 9-1-29A&B GR NORTHSIDE QTR", "Name": "SILVER, VIVIENNE R", "Address": "184 Atlantic St", "City": "Stamford", "State": "Connecticut", "Zip": 6901, "Country": "United States", "Land_Value": 305800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.53596411799998, "SHAPE_Area": 3282.7020557300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358567.485699996352196, 260992.789700001478195 ], [ 358564.463600002229214, 260968.911400001496077 ], [ 358584.138800002634525, 260931.075599998235703 ], [ 358563.359899997711182, 260909.162900000810623 ], [ 358563.408399999141693, 260903.463799998164177 ], [ 358556.918399997055531, 260908.054699998348951 ], [ 358548.824699997901917, 260911.576999999582767 ], [ 358539.939099997282028, 260913.404199998825788 ], [ 358527.847999997437, 260912.883000001311302 ], [ 358524.882399998605251, 260977.031199999153614 ], [ 358528.136399999260902, 260973.680300001055002 ], [ 358530.555399999022484, 260973.700100000947714 ], [ 358544.975500002503395, 260984.795000001788139 ], [ 358548.189900003373623, 260986.087900001555681 ], [ 358551.418799996376038, 260985.692099999636412 ], [ 358557.9087999984622, 260981.101199999451637 ], [ 358561.135899998247623, 260980.916499998420477 ], [ 358563.538599997758865, 260982.835999999195337 ], [ 358563.472099997103214, 260990.645899999886751 ], [ 358565.07209999859333, 260992.136700000613928 ], [ 358567.485699996352196, 260992.789700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93263842, "LATITUDE": 18.37804645, "OBJECTID_1": 886, "PARCEL_NO_": "101301030900", "Tax_Legal_": "PETERBORG 9-1-29A&B GR NORTHSIDE QTR", "Name": "SILVER, VIVIENNE R", "Address": "184 Atlantic St", "City": "Stamford", "State": "Connecticut", "Zip": 6901, "Country": "United States", "Land_Value": 305800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.01063385399999, "SHAPE_Area": 2730.3840984600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358616.342799998819828, 260937.038699999451637 ], [ 358575.659599997103214, 260885.198899999260902 ], [ 358569.925499998033047, 260895.706599999219179 ], [ 358563.408399999141693, 260903.463799998164177 ], [ 358563.359899997711182, 260909.162900000810623 ], [ 358584.138800002634525, 260931.075599998235703 ], [ 358564.463600002229214, 260968.911400001496077 ], [ 358567.485699996352196, 260992.789700001478195 ], [ 358573.131700001657009, 260992.624800000339746 ], [ 358577.994699999690056, 260989.709300000220537 ], [ 358579.690099999308586, 260980.012899998575449 ], [ 358582.146799996495247, 260975.600000001490116 ], [ 358585.398999996483326, 260972.460200000554323 ], [ 358590.254799999296665, 260970.388999998569489 ], [ 358595.121500000357628, 260967.051399998366833 ], [ 358602.444799996912479, 260959.300900001078844 ], [ 358604.874600000679493, 260958.054200001060963 ], [ 358610.520499996840954, 260957.889299999922514 ], [ 358613.758400000631809, 260956.438099998980761 ], [ 358613.823100000619888, 260948.839299999177456 ], [ 358614.706799998879433, 260939.769499998539686 ], [ 358616.342799998819828, 260937.038699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93326355000001, "LATITUDE": 18.37780834, "OBJECTID_1": 657, "PARCEL_NO_": "101202010200", "Tax_Legal_": "9-1-30 & 9-1-33-A-1 PETERBORG NO.12 GREAT NORTHSIDE QUARTER", "Name": "SILVER ST THOMAS TRUST", "Address": "298 Ocean Dr E", "City": "Stamford", "State": "Connecticut", "Zip": 6902, "Country": "United States", "Land_Value": 281800, "Improved_V": 265900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 417.89602380600002, "SHAPE_Area": 5120.858966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358482.080600000917912, 260889.921399999409914 ], [ 358489.845200002193451, 260925.026500001549721 ], [ 358499.148699998855591, 260968.7989999987185 ], [ 358501.560500003397465, 260969.663100000470877 ], [ 358503.088600002229214, 260979.596999999135733 ], [ 358504.674199998378754, 260982.776399999856949 ], [ 358510.26630000025034, 260988.943900000303984 ], [ 358513.484300002455711, 260989.814599998295307 ], [ 358517.521300002932549, 260989.214400000870228 ], [ 358519.954599998891354, 260987.545499999076128 ], [ 358524.882399998605251, 260977.031199999153614 ], [ 358527.847999997437, 260912.883000001311302 ], [ 358527.901900000870228, 260906.550599999725819 ], [ 358542.415600001811981, 260906.669399999082088 ], [ 358547.26240000128746, 260905.653599999845028 ], [ 358554.549800001084805, 260902.124699998646975 ], [ 358561.853399999439716, 260896.695999998599291 ], [ 358568.379399999976158, 260887.883499998599291 ], [ 358568.435099996626377, 260881.34010000154376 ], [ 358566.835100002586842, 260879.849300000816584 ], [ 358560.425999999046326, 260874.941700000315905 ], [ 358549.95830000191927, 260873.167300000786781 ], [ 358547.551899999380112, 260871.669900000095367 ], [ 358545.959100000560284, 260869.334899999201298 ], [ 358546.000399999320507, 260864.480099998414516 ], [ 358546.824699997901917, 260862.375900000333786 ], [ 358546.070600003004074, 260856.247999999672174 ], [ 358548.536300003528595, 260850.779699999839067 ], [ 358554.221799999475479, 260845.971099998801947 ], [ 358554.263199999928474, 260841.116300001740456 ], [ 358552.675700001418591, 260838.147999998182058 ], [ 358539.805299997329712, 260834.454100001603365 ], [ 358537.240699999034405, 260851.531700000166893 ], [ 358532.276900000870228, 260866.267599999904633 ], [ 358523.3175999969244, 260876.7489 ], [ 358512.769000001251698, 260884.473099999129772 ], [ 358506.295100003480911, 260887.164299998432398 ], [ 358495.795100003480911, 260889.189300000667572 ], [ 358482.080600000917912, 260889.921399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202015200", "MAP": "B9-462-T75", "PARCEL_NAM": "9-2-4", "ACRE": null, "LONGITUDE": -64.93558824, "LATITUDE": 18.37818408, "OBJECTID_1": 698, "PARCEL_NO_": "101202015200", "Tax_Legal_": "PETERBORG 9-2-4 GT. NORTHSIDE", "Name": "SHAHBAZI, MASOUD & MARYAM", "Address": "6003 N Mattox Rd", "City": "Kansas City", "State": "Missouri", "Zip": 64151, "Country": "United States", "Land_Value": 179400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.58956253400001, "SHAPE_Area": 2503.3308556000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358312.984099999070168, 260956.298500001430511 ], [ 358264.131700001657009, 260916.8462999984622 ], [ 358250.244499996304512, 260937.842000000178814 ], [ 358247.780599996447563, 260943.099199999123812 ], [ 358246.1554000005126, 260944.5636 ], [ 358245.323899999260902, 260947.512099999934435 ], [ 358242.879799999296665, 260950.447399999946356 ], [ 358238.770900003612041, 260959.490800000727177 ], [ 358290.184299997985363, 260982.287500001490116 ], [ 358312.984099999070168, 260956.298500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93365304, "LATITUDE": 18.3780126, "OBJECTID_1": 659, "PARCEL_NO_": "101202010400", "Tax_Legal_": "9-1-33-A-REM PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "SILVER, VIVIENNE R", "Address": "184 Atlantic St", "City": "Stamford", "State": "Connecticut", "Zip": 6901, "Country": "United States", "Land_Value": 224500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.56455267600001, "SHAPE_Area": 1669.6489657499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358489.845200002193451, 260925.026500001549721 ], [ 358478.673699997365475, 260911.214000001549721 ], [ 358477.239100001752377, 260890.304000001400709 ], [ 358456.273199997842312, 260890.343499999493361 ], [ 358465.772699996829033, 260911.108399998396635 ], [ 358478.895599998533726, 260979.821199998259544 ], [ 358482.128100000321865, 260979.003299999982119 ], [ 358493.486599996685982, 260970.863600000739098 ], [ 358499.148699998855591, 260968.7989999987185 ], [ 358489.845200002193451, 260925.026500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93618268, "LATITUDE": 18.37804862, "OBJECTID_1": 680, "PARCEL_NO_": "101202013200", "Tax_Legal_": "PETERBORG 9-2-24 GT. NORTHSIDE", "Name": "CORAL GARDENS, LLC", "Address": "13600 Cotton Wood Valley Cir S", "City": "Irving", "State": "Texas", "Zip": 75038, "Country": "United States", "Land_Value": 223000, "Improved_V": 1327000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.92827074, "SHAPE_Area": 2771.0620194100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358247.069600000977516, 260931.9054000005126 ], [ 358198.16330000013113, 260898.785599999129772 ], [ 358191.6300999969244, 260908.442499998956919 ], [ 358179.325000002980232, 260933.039700001478195 ], [ 358212.061899997293949, 260971.093400001525879 ], [ 358224.113499999046326, 260976.258299998939037 ], [ 358229.032300002872944, 260966.799300000071526 ], [ 358229.04839999973774, 260964.899599999189377 ], [ 358232.334799997508526, 260957.749299999326468 ], [ 358234.782499998807907, 260954.3918999992311 ], [ 358235.621200002729893, 260950.59910000115633 ], [ 358247.069600000977516, 260931.9054000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93533584, "LATITUDE": 18.37790124, "OBJECTID_1": 668, "PARCEL_NO_": "101202011400", "Tax_Legal_": "PETERBORG 9-2-3 GT. NORTHSIDE", "Name": "JACQUELINE JEFFRIES LIVING REVOCABLE TRUST", "Address": "PO Box 11796", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 182900, "Improved_V": 47200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.41527548400001, "SHAPE_Area": 2632.1718154700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358338.942500002682209, 260938.145799998193979 ], [ 358301.495399996638298, 260885.065900001674891 ], [ 358278.798100002110004, 260899.023400001227856 ], [ 358270.664899997413158, 260907.189500000327826 ], [ 358264.131700001657009, 260916.8462999984622 ], [ 358312.984099999070168, 260956.298500001430511 ], [ 358319.488499999046326, 260950.018899999558926 ], [ 358338.942500002682209, 260938.145799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030700", "MAP": "D9-1242-T75", "PARCEL_NAM": "9-1-27", "ACRE": ".83", "LONGITUDE": -64.93221034, "LATITUDE": 18.37758718, "OBJECTID_1": 884, "PARCEL_NO_": "101301030700", "Tax_Legal_": "PETERBORG ESTATE 9-1-27\nGT. NORTHSIDE", "Name": "ALEXANDER KUDELKA AND DYLAN VARONE", "Address": "348 Lakemoore Dr NE", "City": "Atlanta", "State": "Georgia", "Zip": 30342, "Country": "United States", "Land_Value": 215200, "Improved_V": 390200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.71179483399999, "SHAPE_Area": 2943.9921725600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358656.649400003254414, 260938.4239999987185 ], [ 358639.739500001072884, 260840.971500001847744 ], [ 358622.758400000631809, 260846.5320999994874 ], [ 358604.193400003015995, 260848.702100001275539 ], [ 358627.676100000739098, 260931.854100000113249 ], [ 358632.517599999904633, 260931.471500001847744 ], [ 358634.931100003421307, 260932.124600000679493 ], [ 358642.126800000667572, 260939.360700000077486 ], [ 358646.952100001275539, 260940.87779999896884 ], [ 358650.983599998056889, 260940.910799998790026 ], [ 358656.649400003254414, 260938.4239999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93190896, "LATITUDE": 18.37749366, "OBJECTID_1": 882, "PARCEL_NO_": "101301030500", "Tax_Legal_": "PETERBORG 9-1-26 GT. NORTHSIDE", "Name": "HAYES, THOMAS MICHAEL & JUDY ANN", "Address": "6600 Ormond Dr", "City": "Nashville", "State": "Tennessee", "Zip": 37205, "Country": "United States", "Land_Value": 300400, "Improved_V": 193300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.87948488299998, "SHAPE_Area": 3235.2135502599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358687.452899999916553, 260919.466600000858307 ], [ 358676.129600003361702, 260828.814800001680851 ], [ 358639.739500001072884, 260840.971500001847744 ], [ 358656.649400003254414, 260938.4239999987185 ], [ 358664.816799998283386, 260926.247499998658895 ], [ 358668.880699999630451, 260922.480999998748302 ], [ 358673.73480000346899, 260920.620900001376867 ], [ 358683.412299998104572, 260920.489000000059605 ], [ 358687.452899999916553, 260919.466600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93258287, "LATITUDE": 18.37752165, "OBJECTID_1": 885, "PARCEL_NO_": "101301030800", "Tax_Legal_": "9-1-28 PETERBORG No.12 GREAT NORTHSIDE QTR", "Name": "VILLA GWENN LLC", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 297500, "Improved_V": 802000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.09045404, "SHAPE_Area": 3155.21966234 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358604.193400003015995, 260848.702100001275539 ], [ 358584.854500003159046, 260847.066199999302626 ], [ 358560.713699996471405, 260841.169100001454353 ], [ 358559.846199996769428, 260848.339200001209974 ], [ 358552.522900000214577, 260856.089699998497963 ], [ 358552.425800003111362, 260867.488000001758337 ], [ 358558.066399998962879, 260867.956300001591444 ], [ 358565.303400002419949, 260870.337600000202656 ], [ 358573.316200003027916, 260876.313799999654293 ], [ 358574.903599999845028, 260879.2820999994874 ], [ 358575.659599997103214, 260885.198899999260902 ], [ 358616.342799998819828, 260937.038699999451637 ], [ 358622.019299998879433, 260933.285500001162291 ], [ 358627.676100000739098, 260931.854100000113249 ], [ 358604.193400003015995, 260848.702100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93599379, "LATITUDE": 18.37764174, "OBJECTID_1": 681, "PARCEL_NO_": "101202013300", "Tax_Legal_": "PETERBORG 9-2-25 GT. NORTHSIDE", "Name": "VILLA CORAL GARDENS, LLC", "Address": "1001 Lake Carolyn Pkwy", "City": "Irving", "State": "Texas", "Zip": 75039, "Country": "United States", "Land_Value": 233000, "Improved_V": 492400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.61689816099999, "SHAPE_Area": 2744.8452766700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358259.563500002026558, 260885.144900001585484 ], [ 358227.593299999833107, 260851.741599999368191 ], [ 358223.543799996376038, 260853.819400001317263 ], [ 358222.685300000011921, 260859.934000000357628 ], [ 358221.065499998629093, 260860.7652000002563 ], [ 358217.037500001490116, 260860.309999998658895 ], [ 358214.605999998748302, 260861.767799999564886 ], [ 358212.876500003039837, 260875.474700000137091 ], [ 358207.180200003087521, 260881.549800001084805 ], [ 358198.16330000013113, 260898.785599999129772 ], [ 358247.069600000977516, 260931.9054000005126 ], [ 358247.89750000089407, 260929.379099998623133 ], [ 358247.204499997198582, 260916.074499998241663 ], [ 358248.896200001239777, 260906.800200000405312 ], [ 358253.030299998819828, 260894.801699999719858 ], [ 358259.563500002026558, 260885.144900001585484 ] ] ], [ [ [ 358271.552100002765656, 260897.697599999606609 ], [ 358263.560900002717972, 260889.188400000333786 ], [ 358262.729400001466274, 260892.136900000274181 ], [ 358257.826800003647804, 260899.696199998259544 ], [ 358253.676600001752377, 260913.594399999827147 ], [ 358253.629799999296665, 260919.082400001585484 ], [ 358255.240599997341633, 260919.306699998676777 ], [ 358264.226999998092651, 260905.659200001507998 ], [ 358271.552100002765656, 260897.697599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93362801000001, "LATITUDE": 18.37774805, "OBJECTID_1": 657, "PARCEL_NO_": "101202010200", "Tax_Legal_": "9-1-30 & 9-1-33-A-1 PETERBORG NO.12 GREAT NORTHSIDE QUARTER", "Name": "SILVER ST THOMAS TRUST", "Address": "298 Ocean Dr E", "City": "Stamford", "State": "Connecticut", "Zip": 6902, "Country": "United States", "Land_Value": 281800, "Improved_V": 265900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.534073740899998, "SHAPE_Area": 193.356365135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358477.239100001752377, 260890.304000001400709 ], [ 358478.673699997365475, 260911.214000001549721 ], [ 358489.845200002193451, 260925.026500001549721 ], [ 358482.080600000917912, 260889.921399999409914 ], [ 358477.239100001752377, 260890.304000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93467257, "LATITUDE": 18.37757956, "OBJECTID_1": 665, "PARCEL_NO_": "101202011000", "Tax_Legal_": "PETERBORG 9-1-37 & 38 GREAT NORTH SIDE", "Name": "GRIFFITH, JAMES E", "Address": "PO Box 7391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 268900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.98137086200001, "SHAPE_Area": 2433.7143237400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358382.317199997603893, 260863.351500000804663 ], [ 358375.978200003504753, 260850.211800001561642 ], [ 358357.341300003230572, 260860.824999999254942 ], [ 358338.729599997401237, 260868.483199998736382 ], [ 358368.919900000095367, 260921.503699999302626 ], [ 358392.414499998092651, 260908.608199998736382 ], [ 358408.5929000005126, 260902.618900001049042 ], [ 358400.587300002574921, 260895.798300001770258 ], [ 358382.317199997603893, 260863.351500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93153919, "LATITUDE": 18.37739887, "OBJECTID_1": 880, "PARCEL_NO_": "101301030300", "Tax_Legal_": "9-1-25 PETERBORG No.12 GREAT NORTHSIDE QTR", "Name": "BELLA BRISA LLC", "Address": "PO Box 13612", "City": "Savannah", "State": "Georgia", "Zip": 31416, "Country": "United States", "Land_Value": 312200, "Improved_V": 268200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.81235249299999, "SHAPE_Area": 3966.5939010500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358737.580899998545647, 260903.833799999207258 ], [ 358710.10980000346899, 260815.583000000566244 ], [ 358676.129600003361702, 260828.814800001680851 ], [ 358687.452899999916553, 260919.466600000858307 ], [ 358695.544799998402596, 260916.1554000005126 ], [ 358700.422200001776218, 260911.551199998706579 ], [ 358704.471799999475479, 260909.473400000482798 ], [ 358709.318599998950958, 260908.457600001245737 ], [ 358721.40429999679327, 260909.611999999731779 ], [ 358724.636799998581409, 260908.794100001454353 ], [ 358731.121399998664856, 260904.836399998515844 ], [ 358737.580899998545647, 260903.833799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93107677, "LATITUDE": 18.37728591, "OBJECTID_1": 878, "PARCEL_NO_": "101301030100", "Tax_Legal_": "PETERBORG 9-1-24 GT. NORTHSIDE", "Name": "2013 OCEAN HAVEN REVOCABLE LIVING TRUST", "Address": "707 G St SW", "City": "Washington", "State": "District of Columbia", "Zip": 20024, "Country": "United States", "Land_Value": 397800, "Improved_V": 237000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.54857084999998, "SHAPE_Area": 5188.1767452900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358799.132200002670288, 260872.462400000542402 ], [ 358743.281900003552437, 260802.555599998682737 ], [ 358710.10980000346899, 260815.583000000566244 ], [ 358737.580899998545647, 260903.833799999207258 ], [ 358748.892700001597404, 260901.182199999690056 ], [ 358754.560199998319149, 260898.484299998730421 ], [ 358765.114200003445148, 260890.127000000327826 ], [ 358771.584499999880791, 260887.857900001108646 ], [ 358773.195299997925758, 260888.08219999819994 ], [ 358773.981899999082088, 260890.410700000822544 ], [ 358769.926899999380112, 260893.121700000017881 ], [ 358769.086499996483326, 260897.125599998980761 ], [ 358765.027900002896786, 260900.258799999952316 ], [ 358765.000900000333786, 260903.424899999052286 ], [ 358766.601000003516674, 260904.915699999779463 ], [ 358768.211800001561642, 260905.140000000596046 ], [ 358772.261399999260902, 260903.062199998646975 ], [ 358773.866800002753735, 260903.919700000435114 ], [ 358773.850599996745586, 260905.819400001317263 ], [ 358775.456000000238419, 260906.676899999380112 ], [ 358777.878600001335144, 260906.274599999189377 ], [ 358779.554099999368191, 260898.899999998509884 ], [ 358789.291000001132488, 260891.802499998360872 ], [ 358796.616200000047684, 260883.840900000184774 ], [ 358799.132200002670288, 260872.462400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93422791, "LATITUDE": 18.37752098, "OBJECTID_1": 662, "PARCEL_NO_": "101202010700", "Tax_Legal_": "9-1-35 ESTATE PETERBORG GREAT NORTHSIDE QTR.", "Name": "WILLIAMS, GILTRICE S. & AUSTIN", "Address": "9721 Thompson Lake Dr", "City": "Missouri City", "State": "Texas", "Zip": 77459, "Country": "United States", "Land_Value": 202300, "Improved_V": 719700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.92828070799999, "SHAPE_Area": 1810.7506781699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358408.5929000005126, 260902.618900001049042 ], [ 358440.947899997234344, 260890.851300001144409 ], [ 358449.862199999392033, 260885.646899998188019 ], [ 358457.928999997675419, 260885.290800001472235 ], [ 358447.601499997079372, 260867.052200000733137 ], [ 358382.317199997603893, 260863.351500000804663 ], [ 358400.587300002574921, 260895.798300001770258 ], [ 358408.5929000005126, 260902.618900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93568107, "LATITUDE": 18.37731973, "OBJECTID_1": 682, "PARCEL_NO_": "101202013400", "Tax_Legal_": "9-2-26 PETERBORG GREAT NORTHSIDE QUARTER", "Name": "SANZABAL, LLC", "Address": "1001 Lake Carolyn Pkwy", "City": "Irving", "State": "Texas", "Zip": 75039, "Country": "United States", "Land_Value": 188700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.13897865199999, "SHAPE_Area": 2938.1185808199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358291.27759999781847, 260853.951499998569489 ], [ 358263.398299999535084, 260813.615600001066923 ], [ 358259.355999998748302, 260814.84910000115633 ], [ 358258.524499997496605, 260817.797600001096725 ], [ 358252.851499997079372, 260821.128600001335144 ], [ 358247.941699996590614, 260829.532200001180172 ], [ 358246.285999998450279, 260834.584899999201298 ], [ 358237.348200000822544, 260842.533300001174212 ], [ 358232.486900001764297, 260845.237700000405312 ], [ 358230.026600003242493, 260850.072700001299381 ], [ 358227.593299999833107, 260851.741599999368191 ], [ 358259.563500002026558, 260885.144900001585484 ], [ 358262.016599997878075, 260881.154199998825788 ], [ 358291.27759999781847, 260853.951499998569489 ] ] ], [ [ [ 358306.412299998104572, 260875.817999999970198 ], [ 358294.463299997150898, 260858.621700000017881 ], [ 358266.82209999859333, 260884.993200000375509 ], [ 358263.560900002717972, 260889.188400000333786 ], [ 358271.552100002765656, 260897.697599999606609 ], [ 358280.484499998390675, 260890.382399998605251 ], [ 358306.412299998104572, 260875.817999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93419016, "LATITUDE": 18.37726789, "OBJECTID_1": 663, "PARCEL_NO_": "101202010800", "Tax_Legal_": "9-1-36 ESTATE PETERBORG GT. NORTHSIDE", "Name": "DANILSON LIVING REVOCABLE TRUST", "Address": "1040 NW Union St", "City": "Bend", "State": "Oregon", "Zip": 97703, "Country": "United States", "Land_Value": 198700, "Improved_V": 569100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.26390580899999, "SHAPE_Area": 2447.3249128799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358469.224500000476837, 260884.538899999111891 ], [ 358437.489900000393391, 260823.484200000762939 ], [ 358416.464599996805191, 260830.48930000141263 ], [ 358375.978200003504753, 260850.211800001561642 ], [ 358382.317199997603893, 260863.351500000804663 ], [ 358447.601499997079372, 260867.052200000733137 ], [ 358457.928999997675419, 260885.290800001472235 ], [ 358469.224500000476837, 260884.538899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9337661, "LATITUDE": 18.377189, "OBJECTID_1": 660, "PARCEL_NO_": "101202010500", "Tax_Legal_": "PETERBORG 9-1-32 GT. NORTHSIDE", "Name": "DEVINE, BEN (TRUSTEE)", "Address": "9820 Drysdale Ln", "City": "Houston", "State": "Texas", "Zip": 77041, "Country": "United States", "Land_Value": 141400, "Improved_V": 402200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.55389913299999, "SHAPE_Area": 2094.65999904 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358474.872299998998642, 260884.162900000810623 ], [ 358495.560599997639656, 260822.059599999338388 ], [ 358479.452299997210503, 260819.816799998283386 ], [ 358462.523400001227856, 260819.256099998950958 ], [ 358447.993600003421307, 260821.037000000476837 ], [ 358437.489900000393391, 260823.484200000762939 ], [ 358469.224500000476837, 260884.538899999111891 ], [ 358474.872299998998642, 260884.162900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93341527, "LATITUDE": 18.37728083, "OBJECTID_1": 658, "PARCEL_NO_": "101202010300", "Tax_Legal_": "PETERBORG 9-1-31 GT. NORTHSIDE", "Name": "FAGAN, T. R. & FAGAN, R. F. & J. R", "Address": "PO Box 600208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8016208, "Country": "United States", "Land_Value": 166800, "Improved_V": 110600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.24257672499999, "SHAPE_Area": 2340.4365524300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358474.872299998998642, 260884.162900000810623 ], [ 358495.847199998795986, 260883.067999999970198 ], [ 358507.164399996399879, 260879.783100001513958 ], [ 358518.508500002324581, 260873.332100000232458 ], [ 358522.574199996888638, 260869.354600001126528 ], [ 358528.290299996733665, 260860.957600001245737 ], [ 358531.6199000030756, 260848.741399999707937 ], [ 358534.177299998700619, 260832.508200000971556 ], [ 358495.560599997639656, 260822.059599999338388 ], [ 358474.872299998998642, 260884.162900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93530922, "LATITUDE": 18.37710573, "OBJECTID_1": 683, "PARCEL_NO_": "101202013500", "Tax_Legal_": "PETERBORG 9-1-9 GT. NORTHSIDE", "Name": "TWADDEL, MARGARET MARY", "Address": "312 Buckwalter Rd", "City": "Phoenixville", "State": "Pennsylvania", "Zip": 19460, "Country": "United States", "Land_Value": 327600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.97247170599999, "SHAPE_Area": 3628.1394653100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358291.27759999781847, 260853.951499998569489 ], [ 358294.463299997150898, 260858.621700000017881 ], [ 358306.412299998104572, 260875.817999999970198 ], [ 358314.513199999928474, 260871.451400000602007 ], [ 358348.497000001370907, 260857.7972999997437 ], [ 358330.981100000441074, 260831.478399999439716 ], [ 358300.729699999094009, 260785.63459999859333 ], [ 358295.049500003457069, 260789.809999998658895 ], [ 358286.898299999535084, 260800.086800001561642 ], [ 358281.228900000452995, 260802.995700001716614 ], [ 358274.735299997031689, 260808.008799999952316 ], [ 358267.462300002574921, 260809.849199999123812 ], [ 358265.828100003302097, 260812.368900001049042 ], [ 358263.398299999535084, 260813.615600001066923 ], [ 358291.27759999781847, 260853.951499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301016600", "MAP": "D9-2123-T82", "PARCEL_NAM": "10-17", "ACRE": ".57", "LONGITUDE": -64.93080944, "LATITUDE": 18.37695028, "OBJECTID_1": 853, "PARCEL_NO_": "101301016600", "Tax_Legal_": "10-17 CONSOLIDATED ESTATE PETERBORG 12 GREAT NORTHSIDE QTR.", "Name": "SLJ HOLDINGS LLC", "Address": "5330 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 400600, "Improved_V": 550800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.051496939, "SHAPE_Area": 2748.17063323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358814.835199996829033, 260827.627999998629093 ], [ 358774.130400002002716, 260778.321199998259544 ], [ 358768.423299998044968, 260785.662799999117851 ], [ 358763.549400001764297, 260789.844700001180172 ], [ 358755.430600002408028, 260796.322200000286102 ], [ 358743.281900003552437, 260802.555599998682737 ], [ 358799.132200002670288, 260872.462400000542402 ], [ 358798.523699998855591, 260849.237199999392033 ], [ 358799.355200000107288, 260846.288699999451637 ], [ 358801.819099999964237, 260841.031500000506639 ], [ 358805.897399999201298, 260835.576400000602007 ], [ 358814.835199996829033, 260827.627999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93466645, "LATITUDE": 18.37703501, "OBJECTID_1": 694, "PARCEL_NO_": "101202014700", "Tax_Legal_": "PETERBORG 9-1-10 GT. NORTHSIDE", "Name": "OTTO, WILLIAM R", "Address": "P.O. BOX 5080", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 128900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.063679312, "SHAPE_Area": 2505.1968610399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358413.282600000500679, 260825.396999999880791 ], [ 358396.617899999022484, 260793.807700000703335 ], [ 358385.293600000441074, 260797.936799999326468 ], [ 358367.484600000083447, 260806.023699998855591 ], [ 358365.035099998116493, 260809.592300001531839 ], [ 358365.805399999022484, 260813.820500001311302 ], [ 358360.946000002324581, 260816.313799999654293 ], [ 358330.981100000441074, 260831.478399999439716 ], [ 358348.497000001370907, 260857.7972999997437 ], [ 358365.506899997591972, 260848.859499998390675 ], [ 358374.417700000107288, 260844.077300000935793 ], [ 358413.282600000500679, 260825.396999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93280479000001, "LATITUDE": 18.37685904, "OBJECTID_1": 693, "PARCEL_NO_": "101202014500", "Tax_Legal_": "PETERBORG 9-1-17 No.12 GREAT NORTHSIDE QTR.", "Name": "MEYER, DAVID G.", "Address": "PO BOX 151623", "City": "Lufkin", "State": "Texas", "Zip": 75915, "Country": "United States", "Land_Value": 211600, "Improved_V": 57400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.476472785, "SHAPE_Area": 2982.4578696200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358594.913199998438358, 260802.185600001364946 ], [ 358593.516400001943111, 260776.8429000005126 ], [ 358537.004399999976158, 260784.613099999725819 ], [ 358540.825599998235703, 260809.342300001531839 ], [ 358551.120600000023842, 260831.380300000309944 ], [ 358586.515699997544289, 260841.380300000309944 ], [ 358596.98870000243187, 260842.521499998867512 ], [ 358594.913199998438358, 260802.185600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93223467, "LATITUDE": 18.37698764, "OBJECTID_1": 883, "PARCEL_NO_": "101301030600", "Tax_Legal_": "PETERBORG 9-1-18 GREAT NORTHSIDE QUARTER", "Name": "MICHAEL LEE TURNER REVOCABLE TRUST", "Address": "30221 Oakmont Dr", "City": "Georgetown", "State": "Texas", "Zip": 78628, "Country": "United States", "Land_Value": 165000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.62962521700001, "SHAPE_Area": 2054.5756993800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358611.039499998092651, 260802.317600000649691 ], [ 358594.913199998438358, 260802.185600001364946 ], [ 358596.98870000243187, 260842.521499998867512 ], [ 358614.738399997353554, 260841.400199998170137 ], [ 358630.085299998521805, 260838.359400000423193 ], [ 358685.083599999547005, 260818.966699998825788 ], [ 358685.11599999666214, 260815.167300000786781 ], [ 358683.517700001597404, 260813.465500000864267 ], [ 358681.921300001442432, 260811.552600000053644 ], [ 358677.092399999499321, 260810.457600001245737 ], [ 358640.790299996733665, 260812.27140000090003 ], [ 358623.060500003397465, 260811.070799998939037 ], [ 358611.755900003015995, 260812.878100000321865 ], [ 358606.939599998295307, 260810.305599998682737 ], [ 358606.975599996745586, 260806.083999998867512 ], [ 358611.039499998092651, 260802.317600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202013600", "MAP": "B9-464-T75", "PARCEL_NAM": "9-1-8", "ACRE": null, "LONGITUDE": -64.93504475, "LATITUDE": 18.37675207, "OBJECTID_1": 684, "PARCEL_NO_": "101202013600", "Tax_Legal_": "PETERBORG 9-1-8 GT. NORTHSIDE", "Name": "OTTO, WILLIAM R", "Address": "P.O. BOX 5080", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 202600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.20149622299999, "SHAPE_Area": 2598.7267569599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358365.108800001442432, 260800.938000001013279 ], [ 358336.471799999475479, 260754.89640000090003 ], [ 358332.418600000441074, 260757.396299999207258 ], [ 358328.338500000536442, 260763.062399998307228 ], [ 358316.990800000727177, 260769.935699999332428 ], [ 358312.908900000154972, 260775.812899999320507 ], [ 358300.729699999094009, 260785.63459999859333 ], [ 358330.981100000441074, 260831.478399999439716 ], [ 358360.946000002324581, 260816.313799999654293 ], [ 358359.354900002479553, 260813.767700001597404 ], [ 358356.945000000298023, 260812.692499998956919 ], [ 358352.094499997794628, 260814.130399998277426 ], [ 358348.9087999984622, 260809.460299998521805 ], [ 358365.108800001442432, 260800.938000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93405517, "LATITUDE": 18.37678738, "OBJECTID_1": 695, "PARCEL_NO_": "101202014800", "Tax_Legal_": "PETERBORG 9-1-11 GT. NORTHSIDE", "Name": "OTTO, WILLIAM R", "Address": "P.O. BOX 5080", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.15851079800001, "SHAPE_Area": 2534.72882974 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358475.471100002527237, 260813.873599998652935 ], [ 358464.551399998366833, 260770.510099999606609 ], [ 358458.075699999928474, 260773.412399999797344 ], [ 358425.73870000243187, 260783.069099999964237 ], [ 358396.617899999022484, 260793.807700000703335 ], [ 358413.282600000500679, 260825.396999999880791 ], [ 358426.226700000464916, 260820.436700001358986 ], [ 358444.006899997591972, 260815.727099999785423 ], [ 358456.924099996685982, 260813.932900000363588 ], [ 358475.471100002527237, 260813.873599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93351278, "LATITUDE": 18.37672784, "OBJECTID_1": 696, "PARCEL_NO_": "101202015000", "Tax_Legal_": "PETERBORG 9-1-12 GT. NORTHSIDE", "Name": "JONES, NELSON L.", "Address": "2767 Darby", "City": "Las Vegas", "State": "Nevada", "Zip": 89134, "Country": "United States", "Land_Value": 214100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.839180669, "SHAPE_Area": 2575.6623354799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358528.599600002169609, 260824.652100000530481 ], [ 358530.338100001215935, 260809.889699999243021 ], [ 358492.095499999821186, 260755.536800000816584 ], [ 358474.263099998235703, 260766.36769999936223 ], [ 358464.551399998366833, 260770.510099999606609 ], [ 358475.471100002527237, 260813.873599998652935 ], [ 358497.223600000143051, 260816.162599999457598 ], [ 358528.599600002169609, 260824.652100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93325419, "LATITUDE": 18.37645505, "OBJECTID_1": 701, "PARCEL_NO_": "101202015500", "Tax_Legal_": "PETERBORG 9-1-13 GREAT NORTHSIDE QUARTER", "Name": "WILLIAMS, DONNICA L.", "Address": "PO BOX 307078", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 154000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.24352110900003, "SHAPE_Area": 2096.2733785 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358492.095499999821186, 260755.536800000816584 ], [ 358530.338100001215935, 260809.889699999243021 ], [ 358528.599600002169609, 260824.652100000530481 ], [ 358531.839299999177456, 260822.989799998700619 ], [ 358534.283399999141693, 260820.054499998688698 ], [ 358532.173699997365475, 260783.729200001806021 ], [ 358531.459100000560284, 260772.957499999552965 ], [ 358533.125699996948242, 260766.638399999588728 ], [ 358539.721799999475479, 260749.593800000846386 ], [ 358551.23139999806881, 260723.723499998450279 ], [ 358551.254799999296665, 260720.979499999433756 ], [ 358548.03490000218153, 260720.31980000063777 ], [ 358530.191699996590614, 260732.417199999094009 ], [ 358492.095499999821186, 260755.536800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301016900", "MAP": "B9-508-T83", "PARCEL_NAM": "10-A-16", "ACRE": null, "LONGITUDE": -64.93016265, "LATITUDE": 18.37629307, "OBJECTID_1": 855, "PARCEL_NO_": "101301016900", "Tax_Legal_": "PETERBORG 10-A-16 GT. NORTHSIDE", "Name": "CALYPSO DELIGHT TRUST", "Address": "5914 Nita Ave", "City": "WOODLAND HILLS", "State": "California", "Zip": 91367, "Country": "United States", "Land_Value": 417800, "Improved_V": 927400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.010543837, "SHAPE_Area": 3881.4969357099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358880.209399998188019, 260820.77479999884963 ], [ 358861.040600001811981, 260704.516499999910593 ], [ 358848.972900003194809, 260701.251299999654293 ], [ 358837.72410000115633, 260696.5152000002563 ], [ 358825.65990000218153, 260692.827899999916553 ], [ 358813.572499997913837, 260691.884500000625849 ], [ 358809.522900000214577, 260693.96229999884963 ], [ 358809.494099996984005, 260697.339600000530481 ], [ 358806.979900002479553, 260708.506999999284744 ], [ 358838.190499998629093, 260736.415699999779463 ], [ 358850.570000000298023, 260797.734099999070168 ], [ 358853.777300000190735, 260799.871300000697374 ], [ 358856.135099999606609, 260807.067800000309944 ], [ 358861.721799999475479, 260813.868500001728535 ], [ 358868.922799997031689, 260820.471400000154972 ], [ 358872.135499998927116, 260821.975299999117851 ], [ 358876.971600003540516, 260822.225999999791384 ], [ 358880.209399998188019, 260820.77479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301017000", "MAP": "B9-508-T83", "PARCEL_NAM": "10-A-17", "ACRE": null, "LONGITUDE": -64.92978394, "LATITUDE": 18.37642776, "OBJECTID_1": 856, "PARCEL_NO_": "101301017000", "Tax_Legal_": "10-A-17 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "SCOTT C FULLER REVOCABLE LIVING TRUST", "Address": "PO Box 1141", "City": "Moultonboro", "State": "New Hampshire", "Zip": 3254, "Country": "United States", "Land_Value": 394500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.98437818500003, "SHAPE_Area": 3891.02355519 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358929.646200001239777, 260791.626299999654293 ], [ 358881.198399998247623, 260704.681499999016523 ], [ 358872.320000000298023, 260705.664299998432398 ], [ 358861.040600001811981, 260704.516499999910593 ], [ 358880.209399998188019, 260820.77479999884963 ], [ 358888.335500001907349, 260813.453099999576807 ], [ 358896.420199997723103, 260810.986099999397993 ], [ 358901.28320000320673, 260808.070599999278784 ], [ 358904.542599998414516, 260804.086500000208616 ], [ 358906.194799996912479, 260799.456000000238419 ], [ 358909.441600002348423, 260796.949400000274181 ], [ 358914.299300000071526, 260794.667100001126528 ], [ 358923.983999997377396, 260793.690900001674891 ], [ 358929.646200001239777, 260791.626299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030200", "MAP": "D9-6083-T96", "PARCEL_NAM": "9-1-22", "ACRE": ".481", "LONGITUDE": -64.93163488, "LATITUDE": 18.37667749, "OBJECTID_1": 879, "PARCEL_NO_": "101301030200", "Tax_Legal_": "PETERBORG 9-1-22 REM.&10-16-1 No.12 GREAT NORTHSIDE QTR", "Name": "MALETTO, FRANK D. SR. & DIANA M.", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 156100, "Improved_V": 818900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.71500461300002, "SHAPE_Area": 2842.6917974399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358720.846699997782707, 260774.353799998760223 ], [ 358713.831799998879433, 260771.710900001227856 ], [ 358700.995099999010563, 260749.647199999541044 ], [ 358686.361699998378754, 260766.672100000083447 ], [ 358675.890500001609325, 260778.854699999094009 ], [ 358633.587499998509884, 260805.879599999636412 ], [ 358643.25959999859333, 260806.381000000983477 ], [ 358680.368000000715256, 260804.573800001293421 ], [ 358687.596000000834465, 260808.010400000959635 ], [ 358689.995200000703335, 260810.352099999785423 ], [ 358691.577200002968311, 260813.953600000590086 ], [ 358694.793499998748302, 260815.035399999469519 ], [ 358731.20160000026226, 260800.767900001257658 ], [ 358732.027699999511242, 260798.4527000002563 ], [ 358739.293499998748302, 260797.456700000911951 ], [ 358720.846699997782707, 260774.353799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92906314, "LATITUDE": 18.37634085, "OBJECTID_1": 866, "PARCEL_NO_": "101301020200", "Tax_Legal_": "PETERBORG 7-8B,8C & 8D GT. NORTHSIDE", "Name": "MARIO and OLGA LIMA FAMILY TRUST", "Address": "PO Box 7218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010218, "Country": "United States", "Land_Value": 632800, "Improved_V": 867500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.037792368, "SHAPE_Area": 5365.7885282799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358916.737300001084805, 260697.795200001448393 ], [ 358952.395599998533726, 260771.547600001096725 ], [ 358954.77139999717474, 260776.633200000971556 ], [ 358974.585699997842312, 260817.11430000141263 ], [ 358996.395700000226498, 260812.648699998855591 ], [ 359010.146200001239777, 260807.695000000298023 ], [ 359017.435400001704693, 260803.954999998211861 ], [ 358948.305799998342991, 260683.699200000613928 ], [ 358935.343599997460842, 260690.770300000905991 ], [ 358916.737300001084805, 260697.795200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93203193, "LATITUDE": 18.37655371, "OBJECTID_1": 881, "PARCEL_NO_": "101301030400", "Tax_Legal_": "PETERBORG 9-1-23 GT. NORTHSIDE", "Name": "MEYER, JR., DAVID GERALD", "Address": "PO BOX 151623", "City": "Lufkin", "State": "Texas", "Zip": 75915, "Country": "United States", "Land_Value": 165000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.779275195, "SHAPE_Area": 1833.8715170200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358686.361699998378754, 260766.672100000083447 ], [ 358644.600000001490116, 260743.697200000286102 ], [ 358637.996699996292591, 260761.586100000888109 ], [ 358632.982600003480911, 260782.232200000435114 ], [ 358632.12049999833107, 260788.769000001251698 ], [ 358630.49889999628067, 260789.811200000345707 ], [ 358628.03320000320673, 260795.279500000178814 ], [ 358621.535899996757507, 260800.714800000190735 ], [ 358622.317100003361702, 260803.676500000059605 ], [ 358633.587499998509884, 260805.879599999636412 ], [ 358675.890500001609325, 260778.854699999094009 ], [ 358686.361699998378754, 260766.672100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95286821000001, "LATITUDE": 18.37642494, "OBJECTID_1": 391, "PARCEL_NO_": "101102013400", "Tax_Legal_": "4-30-17,-18,-19-20&-21 HULL No.4B LT NORTHSIDE QTR.", "Name": "THE HULL POINT, LTD. CO.", "Address": "989 Melvin Rd", "City": "Annapolis", "State": "Maryland", "Zip": 21403, "Country": "United States", "Land_Value": 359800, "Improved_V": 3000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.62670713099999, "SHAPE_Area": 1956.3626274000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356467.293799996376038, 260756.696600001305342 ], [ 356459.262999996542931, 260752.831199999898672 ], [ 356457.781700000166893, 260737.409200001507998 ], [ 356458.688699997961521, 260725.595400001853704 ], [ 356461.154399998486042, 260720.127199999988079 ], [ 356467.691200003027916, 260710.048200000077486 ], [ 356476.637999996542931, 260701.044399999082088 ], [ 356479.89019999653101, 260697.904599998146296 ], [ 356445.175599999725819, 260702.686700001358986 ], [ 356441.061300002038479, 260712.363400001078844 ], [ 356441.768700003623962, 260723.979299999773502 ], [ 356444.078000001609325, 260736.874899998307228 ], [ 356442.458200000226498, 260737.706000000238419 ], [ 356437.571699999272823, 260743.365499999374151 ], [ 356434.288900002837181, 260750.093699999153614 ], [ 356432.611599996685982, 260757.679299999028444 ], [ 356428.533299997448921, 260763.134399998933077 ], [ 356426.101700000464916, 260764.592099998146296 ], [ 356426.082000002264977, 260766.914000000804663 ], [ 356431.727899998426437, 260766.749099999666214 ], [ 356437.347000002861023, 260769.750399999320507 ], [ 356434.056999996304512, 260777.322799999266863 ], [ 356453.332900002598763, 260786.346500001847744 ], [ 356467.293799996376038, 260756.696600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9324407, "LATITUDE": 18.37664098, "OBJECTID_1": 888, "PARCEL_NO_": "101301031100", "Tax_Legal_": "PETERBORG 9-1-19 GT. NORTHSIDE", "Name": "FEDDERSEN, KIRST BRODER", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 166800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.67476210700001, "SHAPE_Area": 972.48025541499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358629.033699996769428, 260772.489599999040365 ], [ 358595.217100001871586, 260766.513300001621246 ], [ 358593.516400001943111, 260776.8429000005126 ], [ 358594.913199998438358, 260802.185600001364946 ], [ 358611.039499998092651, 260802.317600000649691 ], [ 358621.600699998438358, 260793.115899998694658 ], [ 358626.501500003039837, 260785.767799999564886 ], [ 358629.033699996769428, 260772.489599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301016800", "MAP": "D9-2123-T82", "PARCEL_NAM": "10-A-15", "ACRE": ".68", "LONGITUDE": -64.93042653000001, "LATITUDE": 18.37638393, "OBJECTID_1": 854, "PARCEL_NO_": "101301016800", "Tax_Legal_": "10-A-15 PETERBORG GREAT NORTHSIDE QUARTER", "Name": "MARTIN, LUC A", "Address": "7531 ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 245600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.29804965299999, "SHAPE_Area": 2939.6495093899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358806.979900002479553, 260708.506999999284744 ], [ 358802.802699998021126, 260725.571400001645088 ], [ 358798.663199998438358, 260738.203099999576807 ], [ 358795.387599997222424, 260744.086899999529123 ], [ 358789.680500000715256, 260751.42850000038743 ], [ 358832.784400001168251, 260803.076999999582767 ], [ 358836.848300002515316, 260799.310600001364946 ], [ 358840.086199998855591, 260797.859400000423193 ], [ 358843.318599998950958, 260797.041499998420477 ], [ 358850.570000000298023, 260797.734099999070168 ], [ 358838.190499998629093, 260736.415699999779463 ], [ 358806.979900002479553, 260708.506999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92875494, "LATITUDE": 18.37617866, "OBJECTID_1": 866, "PARCEL_NO_": "101301020200", "Tax_Legal_": "PETERBORG 7-8B,8C & 8D GT. NORTHSIDE", "Name": "MARIO and OLGA LIMA FAMILY TRUST", "Address": "PO Box 7218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010218, "Country": "United States", "Land_Value": 632800, "Improved_V": 867500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 343.80054786599999, "SHAPE_Area": 4859.0712223500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359048.280199997127056, 260780.142799999564886 ], [ 358975.860600002110004, 260667.459399998188019 ], [ 358948.305799998342991, 260683.699200000613928 ], [ 359017.435400001704693, 260803.954999998211861 ], [ 359029.593000002205372, 260796.666200000792742 ], [ 359037.710100002586842, 260790.399900000542402 ], [ 359048.280199997127056, 260780.142799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301030200", "MAP": "D9-2123-T82", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93112996000001, "LATITUDE": 18.37649353, "OBJECTID_1": 879, "PARCEL_NO_": "101301030200", "Tax_Legal_": "PETERBORG 9-1-22 REM.&10-16-1 No.12 GREAT NORTHSIDE QTR", "Name": "MALETTO, FRANK D. SR. & DIANA M.", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 156100, "Improved_V": 818900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.58052285400001, "SHAPE_Area": 1652.51167736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358735.627300001680851, 260732.714000001549721 ], [ 358740.343099996447563, 260758.534600000828505 ], [ 358720.846699997782707, 260774.353799998760223 ], [ 358739.293499998748302, 260797.456700000911951 ], [ 358750.626900002360344, 260792.272100001573563 ], [ 358761.177299998700619, 260784.336899999529123 ], [ 358767.688900001347065, 260777.212999999523163 ], [ 358774.140299998223782, 260765.515399999916553 ], [ 358737.241899996995926, 260731.674400001764297 ], [ 358735.627300001680851, 260732.714000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301021900", "MAP": "B9-508-T83", "PARCEL_NAM": "7-8", "ACRE": null, "LONGITUDE": -64.92950806, "LATITUDE": 18.37622893, "OBJECTID_1": 875, "PARCEL_NO_": "101301021900", "Tax_Legal_": "PETERBORG 7-8-A GT.NORTHSIDE QTR.", "Name": "MARIO and OLGA LIMA FAMILY TRUST", "Address": "PO Box 7218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010218, "Country": "United States", "Land_Value": 443600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.85283257899999, "SHAPE_Area": 2908.0761152199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358916.737300001084805, 260697.795200001448393 ], [ 358902.189499996602535, 260701.686900001019239 ], [ 358881.198399998247623, 260704.681499999016523 ], [ 358929.646200001239777, 260791.626299999654293 ], [ 358934.502099998295307, 260789.55519999936223 ], [ 358939.372299998998642, 260785.795299999415874 ], [ 358945.086599998176098, 260777.609400000423193 ], [ 358949.969499997794628, 260772.372099999338388 ], [ 358952.395599998533726, 260771.547600001096725 ], [ 358916.737300001084805, 260697.795200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93282869, "LATITUDE": 18.37641258, "OBJECTID_1": 692, "PARCEL_NO_": "101202014400", "Tax_Legal_": "PETERBORG 9-1-16 GT. NORTHSIDE", "Name": "KEITH D BRYANT and MEREDITH P CONLON", "Address": "PO BOX 402", "City": "Bridgeport", "State": "Pennsylvania", "Zip": 19405, "Country": "United States", "Land_Value": 157900, "Improved_V": 922100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.37434366299999, "SHAPE_Area": 2418.30508087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358599.457299999892712, 260742.061099998652935 ], [ 358556.026100002229214, 260728.828999999910593 ], [ 358554.397299997508526, 260730.715500000864267 ], [ 358538.750100001692772, 260769.006400000303984 ], [ 358537.070900000631809, 260776.803199999034405 ], [ 358537.004399999976158, 260784.613099999725819 ], [ 358593.516400001943111, 260776.8429000005126 ], [ 358595.217100001871586, 260766.513300001621246 ], [ 358599.457299999892712, 260742.061099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92849843, "LATITUDE": 18.37598203, "OBJECTID_1": 866, "PARCEL_NO_": "101301020200", "Tax_Legal_": "PETERBORG 7-8B,8C & 8D GT. NORTHSIDE", "Name": "MARIO and OLGA LIMA FAMILY TRUST", "Address": "PO Box 7218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010218, "Country": "United States", "Land_Value": 632800, "Improved_V": 867500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 339.07011242, "SHAPE_Area": 4336.12394881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359076.691799998283386, 260757.999400001019239 ], [ 359001.808300003409386, 260650.57319999858737 ], [ 358994.50110000371933, 260656.4239999987185 ], [ 358975.860600002110004, 260667.459399998188019 ], [ 359048.280199997127056, 260780.142799999564886 ], [ 359051.537900000810623, 260776.369800001382828 ], [ 359056.458400003612041, 260766.699700001627207 ], [ 359060.53320000320673, 260761.666799999773502 ], [ 359063.760200001299381, 260761.482200000435114 ], [ 359066.155799999833107, 260764.245999999344349 ], [ 359070.990099996328354, 260764.707699999213219 ], [ 359074.233300000429153, 260762.6233000010252 ], [ 359076.691799998283386, 260757.999400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93235531000001, "LATITUDE": 18.37606831, "OBJECTID_1": 890, "PARCEL_NO_": "101301031300", "Tax_Legal_": "PETERBORG 9-1-20 GT. NORTHSIDE", "Name": "ABBOTT, ROLSTON", "Address": "P.O. BOX 2363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 179400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.22573421499999, "SHAPE_Area": 3757.6663482600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358597.525700002908707, 260684.839000001549721 ], [ 358599.457299999892712, 260742.061099998652935 ], [ 358595.217100001871586, 260766.513300001621246 ], [ 358629.033699996769428, 260772.489599999040365 ], [ 358632.372299998998642, 260759.217999998480082 ], [ 358637.336000002920628, 260744.482099998742342 ], [ 358640.705099999904633, 260727.62220000103116 ], [ 358643.120399996638298, 260728.064100001007318 ], [ 358631.581399999558926, 260662.741799999028444 ], [ 358597.525700002908707, 260684.839000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93193144, "LATITUDE": 18.37610457, "OBJECTID_1": 891, "PARCEL_NO_": "101301031400", "Tax_Legal_": "9-1-21 PETERBORG GREAT NORTHSIDE", "Name": "O'BOYLE, ALLISON H. & CASEY NICOLE PAYTON", "Address": "PO Box 746", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 133000, "Improved_V": 252700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.72767022800002, "SHAPE_Area": 2678.2530517300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358700.995099999010563, 260749.647199999541044 ], [ 358672.273599997162819, 260713.526200000196695 ], [ 358631.581399999558926, 260662.741799999028444 ], [ 358643.120399996638298, 260728.064100001007318 ], [ 358647.144799999892712, 260728.941399998962879 ], [ 358646.300700001418591, 260733.367499999701977 ], [ 358651.129600003361702, 260734.462499998509884 ], [ 358650.287299998104572, 260738.677499998360872 ], [ 358645.451300002634525, 260738.42680000141263 ], [ 358644.600000001490116, 260743.697200000286102 ], [ 358686.361699998378754, 260766.672100000083447 ], [ 358700.995099999010563, 260749.647199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202013900", "MAP": "B9-464-T75", "PARCEL_NAM": "9-1-5", "ACRE": ".51", "LONGITUDE": -64.93389803, "LATITUDE": 18.37617248, "OBJECTID_1": 687, "PARCEL_NO_": "101202013900", "Tax_Legal_": "PETERBORG 9-1-5 GT. NORTHSIDE", "Name": "HAJIMIHALIS (TRUSTEE), GEORGE J.", "Address": "PO Box 9953", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 196900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.79076949899999, "SHAPE_Area": 1978.74793387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358488.917000003159046, 260750.022300001233816 ], [ 358443.422899998724461, 260694.976799998432398 ], [ 358439.387699998915195, 260695.365899998694658 ], [ 358433.714800000190735, 260698.697000000625849 ], [ 358424.766199998557568, 260707.911899998784065 ], [ 358459.753100000321865, 260765.826799999922514 ], [ 358469.464800000190735, 260761.684399999678135 ], [ 358488.917000003159046, 260750.022300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301020100", "MAP": "B9-508-T83", "PARCEL_NAM": "10-23", "ACRE": ".86", "LONGITUDE": -64.92829102, "LATITUDE": 18.37576504, "OBJECTID_1": 865, "PARCEL_NO_": "101301020100", "Tax_Legal_": "10-23 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "S DONALD SUSSMAN 2013 REVOCABLE TRUST", "Address": "5 Harborage Isle Dr", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33316, "Country": "United States", "Land_Value": 356300, "Improved_V": 803400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.50094083599998, "SHAPE_Area": 3777.9222081600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359092.317400000989437, 260722.241399999707937 ], [ 359019.746799997985363, 260627.288600001484156 ], [ 359014.012699998915195, 260637.796399999409914 ], [ 359001.808300003409386, 260650.57319999858737 ], [ 359076.691799998283386, 260757.999400001019239 ], [ 359078.360100001096725, 260751.469200000166893 ], [ 359083.270000003278255, 260743.065600000321865 ], [ 359084.994099996984005, 260729.991900000721216 ], [ 359084.202100001275539, 260728.296700000762939 ], [ 359085.028200000524521, 260725.9814000017941 ], [ 359087.466899998486042, 260723.679299999028444 ], [ 359092.317400000989437, 260722.241399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301016400", "MAP": "D9-2123-T82", "PARCEL_NAM": "10-A-14", "ACRE": ".58", "LONGITUDE": -64.93087109, "LATITUDE": 18.37606893, "OBJECTID_1": 851, "PARCEL_NO_": "101301016400", "Tax_Legal_": "PETERBORG 10-A-14 GT.NORTHSIDE QTR.", "Name": "10 A 1314 PETERBORG LLC", "Address": "23102 Cimber Ln", "City": "Spring", "State": "Texas", "Zip": 77373, "Country": "United States", "Land_Value": 195200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.193931413, "SHAPE_Area": 2841.2277992200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358797.528899997472763, 260682.042899999767542 ], [ 358791.915299996733665, 260678.408399999141693 ], [ 358746.316799998283386, 260722.833200000226498 ], [ 358737.241899996995926, 260731.674400001764297 ], [ 358774.140299998223782, 260765.515399999916553 ], [ 358779.974200002849102, 260754.937600001692772 ], [ 358792.219899997115135, 260737.306000001728535 ], [ 358796.348600000143051, 260725.940699998289347 ], [ 358803.018500000238419, 260700.241900000721216 ], [ 358803.099399998784065, 260690.743400000035763 ], [ 358799.926299996674061, 260684.59569999948144 ], [ 358797.528899997472763, 260682.042899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93363162, "LATITUDE": 18.37600577, "OBJECTID_1": 688, "PARCEL_NO_": "101202014000", "Tax_Legal_": "PETERBORG 9-1-4 GT. NORTHSIDE", "Name": "THOMAS FAMILY REVOCABLE LIVING TRUST", "Address": "PO Box 10808", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 260300, "Improved_V": 433200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.68990864099999, "SHAPE_Area": 2715.4846436799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358488.917000003159046, 260750.022300001233816 ], [ 358522.146600000560284, 260730.24040000140667 ], [ 358506.988499999046326, 260711.117899999022484 ], [ 358503.001900002360344, 260705.80799999833107 ], [ 358477.467799998819828, 260674.146099999547005 ], [ 358453.924699999392033, 260692.740699999034405 ], [ 358447.45440000295639, 260695.009799998253584 ], [ 358443.422899998724461, 260694.976799998432398 ], [ 358488.917000003159046, 260750.022300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301016200", "MAP": "D9-2123-T82", "PARCEL_NAM": "10-15", "ACRE": ".58", "LONGITUDE": -64.93155262000001, "LATITUDE": 18.3761028, "OBJECTID_1": 849, "PARCEL_NO_": "101301016200", "Tax_Legal_": "PETERBORG 10-15 REM, 10-16-2 & 9 -22-1 GREAT NORTHSIDE QUARTER", "Name": "FAIR WINDS VILLA, LLC", "Address": "15 Memorial Sq", "City": "Narragansett", "State": "Rhode Island", "Zip": 2882, "Country": "United States", "Land_Value": 175800, "Improved_V": 565000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.52185332, "SHAPE_Area": 1683.64229761 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358731.737700000405312, 260735.218199998140335 ], [ 358735.627300001680851, 260732.714000001549721 ], [ 358721.134300000965595, 260718.212099999189377 ], [ 358696.057300001382828, 260698.532999999821186 ], [ 358686.031199999153614, 260707.728199999779463 ], [ 358683.630300000309944, 260705.597600001841784 ], [ 358672.273599997162819, 260713.526200000196695 ], [ 358700.995099999010563, 260749.647199999541044 ], [ 358703.850400000810623, 260753.172600001096725 ], [ 358731.737700000405312, 260735.218199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95215008, "LATITUDE": 18.37607107, "OBJECTID_1": 361, "PARCEL_NO_": "101102010300", "Tax_Legal_": "HULL 4-30-6 LT. NORTHSIDE", "Name": "LINDBERG, TRAVIS & ROSEMARY", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 142400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.984685498, "SHAPE_Area": 1509.05784842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356567.583999998867512, 260721.420400001108646 ], [ 356509.914399996399879, 260675.774399999529123 ], [ 356495.267700001597404, 260691.275499999523163 ], [ 356532.025399997830391, 260730.628600001335144 ], [ 356536.924400001764297, 260723.491500001400709 ], [ 356545.829800002276897, 260719.342500001192093 ], [ 356548.275700002908707, 260716.196199998259544 ], [ 356548.221799999475479, 260722.528499998152256 ], [ 356550.656900003552437, 260720.648600000888109 ], [ 356552.294699996709824, 260717.706700000911951 ], [ 356552.312700003385544, 260715.595899999141693 ], [ 356555.528899997472763, 260716.677700001746416 ], [ 356556.310099996626377, 260719.639400001615286 ], [ 356561.9003000035882, 260726.01799999922514 ], [ 356565.9425999969244, 260724.784499999135733 ], [ 356567.583999998867512, 260721.420400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93270033, "LATITUDE": 18.37598714, "OBJECTID_1": 887, "PARCEL_NO_": "101301031000", "Tax_Legal_": "PETERBORG 9-1-15 GT. NORTHSIDE", "Name": "COMISSIONG, GILBERT K., JR. & ARNELLE L.", "Address": "PO Box 9401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 161500, "Improved_V": 572800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.20763464800001, "SHAPE_Area": 1810.75140111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358597.525700002908707, 260684.839000001549721 ], [ 358577.425399996340275, 260677.91950000077486 ], [ 358572.501199997961521, 260688.011700000613928 ], [ 358564.240299999713898, 260711.164299998432398 ], [ 358556.026100002229214, 260728.828999999910593 ], [ 358599.457299999892712, 260742.061099998652935 ], [ 358597.525700002908707, 260684.839000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95196315, "LATITUDE": 18.37589114, "OBJECTID_1": 362, "PARCEL_NO_": "101102010400", "Tax_Legal_": "HULL 4-30-7 LT NORTHSIDE", "Name": "FLORENCE W SIMMONS, TRUSTEE", "Address": "2409 SE 11th St", "City": "Pompano Beach", "State": "Florida", "Zip": 33062, "Country": "United States", "Land_Value": 142400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.15237810299999, "SHAPE_Area": 2337.79428061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356585.407399997115135, 260711.644900001585484 ], [ 356534.382399998605251, 260643.255199998617172 ], [ 356527.874399997293949, 260649.956900000572205 ], [ 356522.95380000025034, 260659.626899998635054 ], [ 356517.237700000405312, 260668.023899998515844 ], [ 356509.914399996399879, 260675.774399999529123 ], [ 356567.583999998867512, 260721.420400001108646 ], [ 356566.822700001299381, 260716.136900000274181 ], [ 356569.247000001370907, 260715.523400001227856 ], [ 356570.040700003504753, 260717.007599998265505 ], [ 356572.448899999260902, 260718.2939000017941 ], [ 356577.286799997091293, 260718.333399999886751 ], [ 356579.714699998497963, 260717.297899998724461 ], [ 356581.354299999773502, 260714.144900001585484 ], [ 356581.37049999833107, 260712.245200000703335 ], [ 356585.407399997115135, 260711.644900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93329445000001, "LATITUDE": 18.37576948, "OBJECTID_1": 689, "PARCEL_NO_": "101202014100", "Tax_Legal_": "PETERBORG 9-1-3 GT. NORTHSIDE", "Name": "SHANNON, PHILIP WOODWARD S", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 271700, "Improved_V": 567700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.03674021, "SHAPE_Area": 3694.4375886799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358540.362000003457069, 260674.449700001627207 ], [ 358511.613499999046326, 260641.494899999350309 ], [ 358477.467799998819828, 260674.146099999547005 ], [ 358503.001900002360344, 260705.80799999833107 ], [ 358506.988499999046326, 260711.117899999022484 ], [ 358522.146600000560284, 260730.24040000140667 ], [ 358559.45099999755621, 260705.425599999725819 ], [ 358561.923799999058247, 260699.113000001758337 ], [ 358544.354000002145767, 260679.126400001347065 ], [ 358540.362000003457069, 260674.449700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95175911, "LATITUDE": 18.37571137, "OBJECTID_1": 364, "PARCEL_NO_": "101102010600", "Tax_Legal_": "HULL 4-30-8 LT. NORTHSIDE", "Name": "PARFITT, CORBY & LISA", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 162800, "Improved_V": 505100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.36100530799999, "SHAPE_Area": 2268.2699601499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356590.540200002491474, 260677.067600000649691 ], [ 356588.28490000218153, 260657.839600000530481 ], [ 356556.298500001430511, 260626.335999999195337 ], [ 356534.382399998605251, 260643.255199998617172 ], [ 356585.407399997115135, 260711.644900001585484 ], [ 356587.842600002884865, 260709.765000000596046 ], [ 356588.688400000333786, 260705.127900000661612 ], [ 356591.155900001525879, 260699.448499999940395 ], [ 356592.784699998795986, 260697.561999998986721 ], [ 356590.540200002491474, 260677.067600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95124247, "LATITUDE": 18.37585456, "OBJECTID_1": 367, "PARCEL_NO_": "101102010900", "Tax_Legal_": "HULL 4-30-10 LT. NORTHSIDE", "Name": "HOWE, JOHN, BARBARA & ROBERT", "Address": "920 SOUTH WEST, 21ST COURT", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33315, "Country": "United States", "Land_Value": 215500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.49237932200001, "SHAPE_Area": 2654.7240638399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356615.762500002980232, 260650.676199998706579 ], [ 356590.540200002491474, 260677.067600000649691 ], [ 356592.784699998795986, 260697.561999998986721 ], [ 356599.980400003492832, 260704.798099998384714 ], [ 356600.76690000295639, 260707.126600001007318 ], [ 356602.370600000023842, 260708.195199999958277 ], [ 356604.789499998092651, 260708.214999999850988 ], [ 356607.221000000834465, 260706.757199998944998 ], [ 356607.246200002729893, 260703.802099999040365 ], [ 356611.322700001299381, 260698.558100000023842 ], [ 356613.750600002706051, 260697.52250000089407 ], [ 356614.542599998414516, 260699.217799998819828 ], [ 356618.552599996328354, 260701.783700000494719 ], [ 356635.456299997866154, 260705.299499999731779 ], [ 356646.750100001692772, 260704.758699998259544 ], [ 356650.796099998056889, 260703.103100001811981 ], [ 356656.487000003457069, 260697.661200001835823 ], [ 356658.14639999717474, 260692.1864 ], [ 356626.316500000655651, 260642.318900000303984 ], [ 356618.9679000005126, 260653.024500001221895 ], [ 356615.762500002980232, 260650.676199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95263527, "LATITUDE": 18.37582735, "OBJECTID_1": 360, "PARCEL_NO_": "101102010200", "Tax_Legal_": "HULL 4-30-5 LT. NORTHSIDE", "Name": "MCGRATH, KATHLEEN AND MEGAN KATHERINE MCGRATH", "Address": "PO Box 8556", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 95300, "Improved_V": 291400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.22296839099999, "SHAPE_Area": 1725.731589 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356503.479999996721745, 260673.821899998933077 ], [ 356484.356899999082088, 260646.856499999761581 ], [ 356479.488499999046326, 260650.405299998819828 ], [ 356473.829899996519089, 260652.047699999064207 ], [ 356467.348800003528595, 260655.583200000226498 ], [ 356465.6858000010252, 260661.48030000180006 ], [ 356463.247100003063679, 260663.782299999147654 ], [ 356460.011100001633167, 260665.022399999201298 ], [ 356457.512999996542931, 260674.290100000798702 ], [ 356454.24099999666214, 260679.7516999989748 ], [ 356454.946599997580051, 260691.578699998557568 ], [ 356451.689000003039837, 260695.351799998432398 ], [ 356446.008900001645088, 260699.527100000530481 ], [ 356445.175599999725819, 260702.686700001358986 ], [ 356479.89019999653101, 260697.904599998146296 ], [ 356487.200900003314018, 260691.631599999964237 ], [ 356503.479999996721745, 260673.821899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301018000", "MAP": "B9-508-T83", "PARCEL_NAM": "10-22", "ACRE": "1.03", "LONGITUDE": -64.92810128000001, "LATITUDE": 18.37543864, "OBJECTID_1": 863, "PARCEL_NO_": "101301018000", "Tax_Legal_": "PETERBORG 10-22 GT. NORTHSIDE", "Name": "HICKSTED, PATRICIA M. & RICHARD L., TRUSTEES", "Address": "18124 Wedge Pkwy", "City": "Reno", "State": "Nevada", "Zip": 89511, "Country": "United States", "Land_Value": 374800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.30361120100002, "SHAPE_Area": 5487.0552720699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359113.707699999213219, 260672.387299999594688 ], [ 359049.869800001382828, 260593.549100000411272 ], [ 359012.545699998736382, 260620.6858000010252 ], [ 359020.569300003349781, 260625.395500000566244 ], [ 359019.746799997985363, 260627.288600001484156 ], [ 359092.317400000989437, 260722.241399999707937 ], [ 359095.553400002419949, 260721.001299999654293 ], [ 359100.434500001370907, 260715.975000001490116 ], [ 359102.936099998652935, 260706.285199999809265 ], [ 359106.186599999666214, 260703.356499999761581 ], [ 359108.653999999165535, 260697.677099999040365 ], [ 359113.707699999213219, 260672.387299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301016300", "MAP": "D9-2123-T82", "PARCEL_NAM": "10-A-13", "ACRE": ".645", "LONGITUDE": -64.93115509, "LATITUDE": 18.37582566, "OBJECTID_1": 850, "PARCEL_NO_": "101301016300", "Tax_Legal_": "PETERBORG 10-A-13 GT.NORTHSIDE QTR.", "Name": "10 A 1314 PETERBORG LLC", "Address": "23102 Cimber Ln", "City": "Spring", "State": "Texas", "Zip": 77373, "Country": "United States", "Land_Value": 211300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.019172137, "SHAPE_Area": 2485.1600839799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358776.636699996888638, 260673.428199999034405 ], [ 358762.123099997639656, 260673.309399999678135 ], [ 358710.416599996387959, 260684.918600000441074 ], [ 358703.111199997365475, 260690.558299999684095 ], [ 358703.086099997162819, 260693.513399999588728 ], [ 358704.686099998652935, 260695.004099998623133 ], [ 358735.835799999535084, 260722.750199999660254 ], [ 358741.074600003659725, 260727.940499998629093 ], [ 358746.316799998283386, 260722.833200000226498 ], [ 358791.915299996733665, 260678.408399999141693 ], [ 358783.069200001657009, 260675.59180000051856 ], [ 358776.636699996888638, 260673.428199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95091552, "LATITUDE": 18.37552299, "OBJECTID_1": 368, "PARCEL_NO_": "101102011000", "Tax_Legal_": "HULL 4-30-11 LT. NORTHSIDE", "Name": "HOWE, JOHN, BARBARA & ROBERT", "Address": "920 SOUTH WEST, 21ST COURT", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33315, "Country": "United States", "Land_Value": 188100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.8281065, "SHAPE_Area": 2358.5617305300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356693.301500000059605, 260635.689899999648333 ], [ 356670.127099998295307, 260611.013399999588728 ], [ 356627.167700000107288, 260637.048500001430511 ], [ 356627.957900002598763, 260638.954799998551607 ], [ 356626.316500000655651, 260642.318900000303984 ], [ 356658.14639999717474, 260692.1864 ], [ 356659.012000001966953, 260685.227400001138449 ], [ 356667.316100001335144, 260657.008799999952316 ], [ 356677.090800002217293, 260645.47859999909997 ], [ 356682.769100002944469, 260641.514299999922514 ], [ 356691.670900002121925, 260637.787500001490116 ], [ 356693.301500000059605, 260635.689899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101301010300", "MAP": "B9-508-T83", "PARCEL_NAM": "ROW 7-1", "ACRE": "0.292", "LONGITUDE": -64.92930256, "LATITUDE": 18.37566588, "OBJECTID_1": 798, "PARCEL_NO_": "101301010300", "Tax_Legal_": "7-1,7-2 & 7-3 ROW'S PETERBORG NO. 12 GREAT NORTHSIDE QTR", "Name": "JOHNSON, R BRENT", "Address": "PO Box 1015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.09275101200001, "SHAPE_Area": 1218.0055962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359001.808300003409386, 260650.57319999858737 ], [ 358996.228799998760223, 260642.928100001066923 ], [ 358988.108199998736382, 260649.616700001060963 ], [ 358955.690200001001358, 260668.771999999880791 ], [ 358937.859700001776218, 260679.391800001263618 ], [ 358915.201999999582767, 260688.705600000917912 ], [ 358903.076700001955032, 260692.194899998605251 ], [ 358890.965899996459484, 260693.995600000023842 ], [ 358888.543300002813339, 260694.397999998182058 ], [ 358877.240599997341633, 260695.994199998676777 ], [ 358881.198399998247623, 260704.681499999016523 ], [ 358902.189499996602535, 260701.686900001019239 ], [ 358916.737300001084805, 260697.795200001448393 ], [ 358935.343599997460842, 260690.770300000905991 ], [ 358948.305799998342991, 260683.699200000613928 ], [ 358975.860600002110004, 260667.459399998188019 ], [ 358994.50110000371933, 260656.4239999987185 ], [ 359001.808300003409386, 260650.57319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95155487, "LATITUDE": 18.37545348, "OBJECTID_1": 366, "PARCEL_NO_": "101102010800", "Tax_Legal_": "HULL 4-30-9 LT. NORTHSIDE", "Name": "HOWE, JOHN, BARBARA & ROBERT", "Address": "920 SOUTH WEST, 21ST COURT", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33315, "Country": "United States", "Land_Value": 81800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.630522705, "SHAPE_Area": 2072.3598360699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356615.762500002980232, 260650.676199998706579 ], [ 356612.565999999642372, 260647.272599998861551 ], [ 356614.291900001466274, 260633.987799998372793 ], [ 356612.71339999884367, 260629.964099999517202 ], [ 356587.942500002682209, 260603.374699998646975 ], [ 356578.196599997580051, 260611.52760000154376 ], [ 356556.298500001430511, 260626.335999999195337 ], [ 356588.28490000218153, 260657.839600000530481 ], [ 356590.540200002491474, 260677.067600000649691 ], [ 356615.762500002980232, 260650.676199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301021800", "MAP": "D9-2842-T84", "PARCEL_NAM": "7-7-D", "ACRE": ".696", "LONGITUDE": -64.92938361, "LATITUDE": 18.37545164, "OBJECTID_1": 874, "PARCEL_NO_": "101301021800", "Tax_Legal_": "7-7-D ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "ODLUM, FRANK A. & JULIA R. (CO-TRUSTEES)", "Address": "PO Box 12138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 171900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.994222444, "SHAPE_Area": 2408.9799698100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358897.841499999165535, 260655.582899998873472 ], [ 358897.996899999678135, 260658.986699998378754 ], [ 358907.0591000020504, 260691.048900000751019 ], [ 358915.201999999582767, 260688.705600000917912 ], [ 358937.859700001776218, 260679.391800001263618 ], [ 358955.690200001001358, 260668.771999999880791 ], [ 358960.092200003564358, 260625.322700001299381 ], [ 358955.570799998939037, 260588.133200000971556 ], [ 358948.314000003039837, 260588.073800001293421 ], [ 358952.749099999666214, 260635.395100001245737 ], [ 358920.37610000371933, 260649.273400001227856 ], [ 358897.841499999165535, 260655.582899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95232895, "LATITUDE": 18.37551595, "OBJECTID_1": 363, "PARCEL_NO_": "101102010500", "Tax_Legal_": "HULL 4-30-4 LT. NORTHSIDE", "Name": "HARWOOD, ANDREW R.", "Address": "304 Azalea St", "City": "Lafayette", "State": "Louisiana", "Zip": 70506, "Country": "United States", "Land_Value": 96900, "Improved_V": 122200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.69033020200001, "SHAPE_Area": 1439.7007076299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356533.635499998927116, 260636.282999999821186 ], [ 356513.668300002813339, 260613.743599999696016 ], [ 356503.117899999022484, 260621.678800001740456 ], [ 356498.283600002527237, 260621.217099998146296 ], [ 356499.831500001251698, 260628.829100001603365 ], [ 356499.782899998128414, 260634.528299998492002 ], [ 356494.918099999427795, 260637.654800001531839 ], [ 356491.692800000309944, 260637.628400001674891 ], [ 356489.282899998128414, 260636.553300000727177 ], [ 356487.657700002193451, 260638.017599999904633 ], [ 356488.424400001764297, 260642.667899999767542 ], [ 356484.356899999082088, 260646.856499999761581 ], [ 356503.479999996721745, 260673.821899998933077 ], [ 356514.062799997627735, 260662.08729999884963 ], [ 356520.617600001394749, 260649.89750000089407 ], [ 356525.512999996542931, 260643.182599999010563 ], [ 356533.635499998927116, 260636.282999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301020800", "MAP": "D9-2123-T82", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93162249, "LATITUDE": 18.37547416, "OBJECTID_1": 867, "PARCEL_NO_": "101301020800", "Tax_Legal_": "PETERBORG 10-A-8 GT. NORTHSIDE", "Name": "STOLZ, ROBERT C and CAMILLU MCKAYLE", "Address": "PO BOX 303164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 127100, "Improved_V": 265600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.38203166, "SHAPE_Area": 2127.5928379000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358727.439099997282028, 260674.503199998289347 ], [ 358702.883900001645088, 260622.584300000220537 ], [ 358685.051600001752377, 260633.415199998766184 ], [ 358684.232699997723103, 260634.886199999600649 ], [ 358685.017399996519089, 260637.425700001418591 ], [ 358680.154399998486042, 260640.3412000015378 ], [ 358677.751599997282028, 260638.421700000762939 ], [ 358675.325499996542931, 260639.246199999004602 ], [ 358672.937100000679493, 260635.638099998235703 ], [ 358662.39750000089407, 260642.306800000369549 ], [ 358696.66610000282526, 260689.872299998998642 ], [ 358699.934500001370907, 260684.832800000905991 ], [ 358703.185000002384186, 260681.904100000858307 ], [ 358709.66780000180006, 260678.157400000840425 ], [ 358727.439099997282028, 260674.503199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301031200", "MAP": "B9-491-T75", "PARCEL_NAM": "9-1-14", "ACRE": "0.53", "LONGITUDE": -64.93249732, "LATITUDE": 18.37552876, "OBJECTID_1": 889, "PARCEL_NO_": "101301031200", "Tax_Legal_": "PETERBORG 9-1-14 GT. NORTHSIDE", "Name": "MEYER, DARRY and MIRANDA", "Address": "201 Autumn Lake Dr", "City": "Lufkin", "State": "Texas", "Zip": 75904, "Country": "United States", "Land_Value": 170400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.9732364, "SHAPE_Area": 1459.86985753 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.581399999558926, 260662.741799999028444 ], [ 358605.253600001335144, 260629.59569999948144 ], [ 358587.261200003325939, 260659.212600000202656 ], [ 358577.425399996340275, 260677.91950000077486 ], [ 358597.525700002908707, 260684.839000001549721 ], [ 358629.838600002229214, 260663.872600000351667 ], [ 358631.581399999558926, 260662.741799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202014200", "MAP": "B9-461-T75", "PARCEL_NAM": "9-1-2", "ACRE": "0.65", "LONGITUDE": -64.93302744, "LATITUDE": 18.37546606, "OBJECTID_1": 690, "PARCEL_NO_": "101202014200", "Tax_Legal_": "PETERBORG 9-1-2 GT. NORTHSIDE", "Name": "PHILLIP, W. S SHANNON", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 266000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.395472584, "SHAPE_Area": 2735.57168056 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358569.623000003397465, 260647.247000001370907 ], [ 358542.494300000369549, 260613.461100000888109 ], [ 358538.424999997019768, 260617.860800001770258 ], [ 358535.188900001347065, 260619.100900001823902 ], [ 358511.613499999046326, 260641.494899999350309 ], [ 358540.362000003457069, 260674.449700001627207 ], [ 358544.354000002145767, 260679.126400001347065 ], [ 358561.923799999058247, 260699.113000001758337 ], [ 358566.876800000667572, 260685.6435999982059 ], [ 358579.99719999730587, 260659.997600000351667 ], [ 358573.615000002086163, 260651.923799999058247 ], [ 358569.623000003397465, 260647.247000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301017200", "MAP": "B9-508-T83", "PARCEL_NAM": "10-A-19", "ACRE": null, "LONGITUDE": -64.93039971, "LATITUDE": 18.37537741, "OBJECTID_1": 858, "PARCEL_NO_": "101301017200", "Tax_Legal_": "PETERBORG 10-A-19 GT. NORTHSIDE", "Name": "MARTIN, SR, CHARLES A", "Address": "PO Box 306588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 157900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.09834137499999, "SHAPE_Area": 2078.48662001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358839.94990000128746, 260624.550500001758337 ], [ 358808.608000002801418, 260612.050599999725819 ], [ 358806.948600001633167, 260617.525400001555681 ], [ 358806.07039999961853, 260625.962000001221895 ], [ 358807.584100000560284, 260637.584499999880791 ], [ 358808.057700000703335, 260676.640700001269579 ], [ 358822.591099999845028, 260674.437600001692772 ], [ 358833.915500000119209, 260670.308400001376867 ], [ 358842.016400001943111, 260665.941700000315905 ], [ 358851.751500003039837, 260659.055300001055002 ], [ 358853.403599999845028, 260654.424800001084805 ], [ 358853.448600001633167, 260649.147799998521805 ], [ 358844.651100002229214, 260640.632100000977516 ], [ 358843.060000002384186, 260638.085900001227856 ], [ 358841.497800000011921, 260632.162500001490116 ], [ 358841.530100002884865, 260628.363099999725819 ], [ 358839.94990000128746, 260624.550500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301015900", "MAP": "D9-2123-T82", "PARCEL_NAM": "10-A-9", "ACRE": ".51", "LONGITUDE": -64.9312701, "LATITUDE": 18.37536655, "OBJECTID_1": 847, "PARCEL_NO_": "101301015900", "Tax_Legal_": "PETERBORG 10-A-9 GT. NORTHSIDE", "Name": "ZIVICK, JEFFREY C", "Address": "5055 S Dorchester Ave", "City": "Chicago", "State": "Illinois", "Zip": 60615, "Country": "United States", "Land_Value": 188000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.83161246200001, "SHAPE_Area": 2221.8016322 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358757.608900003135204, 260635.275600001215935 ], [ 358719.90820000320673, 260611.957899998873472 ], [ 358702.883900001645088, 260622.584300000220537 ], [ 358727.439099997282028, 260674.503199998289347 ], [ 358761.36710000038147, 260667.392599999904633 ], [ 358757.608900003135204, 260635.275600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301015800", "MAP": "D9-2123-T82", "PARCEL_NAM": "10-A-10", "ACRE": ".513", "LONGITUDE": -64.93081745000001, "LATITUDE": 18.37541053, "OBJECTID_1": 846, "PARCEL_NO_": "101301015800", "Tax_Legal_": "PETERBORG 10-A-10 GT. NORTHSIDE", "Name": "JUDITH, COX", "Address": "PO Box 11489", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 166800, "Improved_V": 161300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.82035915599999, "SHAPE_Area": 1636.03531916 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358801.200099997222424, 260629.721799999475479 ], [ 358785.899999998509884, 260627.274500001221895 ], [ 358757.608900003135204, 260635.275600001215935 ], [ 358761.36710000038147, 260667.392599999904633 ], [ 358762.983400002121925, 260666.983600001782179 ], [ 358772.664499998092651, 260666.42960000038147 ], [ 358795.183700002729893, 260673.368900001049042 ], [ 358800.030599996447563, 260672.353100001811981 ], [ 358801.891400001943111, 260643.237399999052286 ], [ 358801.200099997222424, 260629.721799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92790847000001, "LATITUDE": 18.37493662, "OBJECTID_1": 800, "PARCEL_NO_": "101301010500", "Tax_Legal_": "PETERSBORG 10-2-10 GT. NORTHSIDE", "Name": "CLIFF HANGER LLC", "Address": "1365 Turtle Creek Ln", "City": "Oakland", "State": "Michigan", "Zip": 48363, "Country": "United States", "Land_Value": 480800, "Improved_V": 191900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 358.83101766300001, "SHAPE_Area": 6344.8253459199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359141.429799996316433, 260636.517200000584126 ], [ 359087.415200002491474, 260540.449700001627207 ], [ 359083.448299996554852, 260532.817899998277426 ], [ 359033.910800002515316, 260573.786800000816584 ], [ 359049.869800001382828, 260593.549100000411272 ], [ 359113.707699999213219, 260672.387299999594688 ], [ 359118.655299998819828, 260659.551100000739098 ], [ 359120.285899996757507, 260657.453499998897314 ], [ 359121.126400001347065, 260653.449599999934435 ], [ 359125.215499997138977, 260646.728100001811981 ], [ 359134.165799997746944, 260637.302099999040365 ], [ 359137.401900000870228, 260636.061999998986721 ], [ 359141.429799996316433, 260636.517200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301021000", "MAP": "D9-2842-T84", "PARCEL_NAM": "7-7-C", "ACRE": ".387", "LONGITUDE": -64.92903644, "LATITUDE": 18.37524556, "OBJECTID_1": 869, "PARCEL_NO_": "101301021000", "Tax_Legal_": "PETERBORG 7-7C&10-24 GT. NORTHSIDE", "Name": "FRANK A & JULIA R ODLUM LIV TR", "Address": "PO Box 12138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 188000, "Improved_V": 1045400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.87609994799999, "SHAPE_Area": 1495.95537835 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358989.060099996626377, 260632.52589999884367 ], [ 358957.993400000035763, 260587.730900000780821 ], [ 358955.570799998939037, 260588.133200000971556 ], [ 358960.092200003564358, 260625.322700001299381 ], [ 358955.690200001001358, 260668.771999999880791 ], [ 358988.108199998736382, 260649.616700001060963 ], [ 358989.060099996626377, 260632.52589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95009228000001, "LATITUDE": 18.37508173, "OBJECTID_1": 373, "PARCEL_NO_": "101102011600", "Tax_Legal_": "4-30-16 ESTATE HULL (CONSOLIDATED) No.4B LITTLE NORTHSIDE QTR.", "Name": "HURD FAMILY TRUST", "Address": "1321 Briddle Bit Rd", "City": "Flower Mound", "State": "Texas", "Zip": 75022, "Country": "United States", "Land_Value": 331800, "Improved_V": 1568200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.206234083, "SHAPE_Area": 2595.4084293400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356725.479599997401237, 260550.038199998438358 ], [ 356730.287600003182888, 260648.236099999397993 ], [ 356740.85419999808073, 260638.401099998503923 ], [ 356741.67849999666214, 260636.296999998390675 ], [ 356744.11540000140667, 260634.206000000238419 ], [ 356752.281000003218651, 260622.240499999374151 ], [ 356762.057499997317791, 260610.499200001358986 ], [ 356766.929499998688698, 260606.528299998492002 ], [ 356777.573399998247623, 260587.616999998688698 ], [ 356733.494199998676777, 260555.803300000727177 ], [ 356725.479599997401237, 260550.038199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101301010300", "MAP": "B9-508-T83", "PARCEL_NAM": "7-2", "ACRE": "0.086", "LONGITUDE": -64.93016096, "LATITUDE": 18.37534519, "OBJECTID_1": 798, "PARCEL_NO_": "101301010300", "Tax_Legal_": "7-1,7-2 & 7-3 ROW'S PETERBORG NO. 12 GREAT NORTHSIDE QTR", "Name": "JOHNSON, R BRENT", "Address": "PO Box 1015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.5435308279, "SHAPE_Area": 219.48264115699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358859.893700003623962, 260649.83390000090003 ], [ 358857.521499998867512, 260644.3260000012815 ], [ 358852.715999998152256, 260640.486999999731779 ], [ 358848.72580000013113, 260635.599199999123812 ], [ 358846.396799996495247, 260625.025400001555681 ], [ 358841.530100002884865, 260628.363099999725819 ], [ 358841.497800000011921, 260632.162500001490116 ], [ 358843.060000002384186, 260638.085900001227856 ], [ 358844.651100002229214, 260640.632100000977516 ], [ 358853.448600001633167, 260649.147799998521805 ], [ 358853.403599999845028, 260654.424800001084805 ], [ 358857.377700001001358, 260661.21229999884963 ], [ 358859.832599997520447, 260657.010499998927116 ], [ 358859.893700003623962, 260649.83390000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95199792, "LATITUDE": 18.37517147, "OBJECTID_1": 365, "PARCEL_NO_": "101102010700", "Tax_Legal_": "HULL 4-30-3 LT. NOTTHSEDE", "Name": "KATHERINE MALLETTE IRREVOCABLE TRUST", "Address": "PO Box 1301", "City": "Dillon", "State": "Montana", "Zip": 59725, "Country": "United States", "Land_Value": 87800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.54188774900001, "SHAPE_Area": 1901.72753663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356569.332599997520447, 260610.821699999272823 ], [ 356556.794799998402596, 260568.078200001269579 ], [ 356538.105800002813339, 260584.812699999660254 ], [ 356513.668300002813339, 260613.743599999696016 ], [ 356533.635499998927116, 260636.282999999821186 ], [ 356546.630000002682209, 260625.412500001490116 ], [ 356569.332599997520447, 260610.821699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95116579, "LATITUDE": 18.37512595, "OBJECTID_1": 369, "PARCEL_NO_": "101102011100", "Tax_Legal_": "HULL 4-30-12 LT. NORTHSIDE", "Name": "ROCHELLE ELLICK FAMILY TRUST", "Address": "705 Westminster Dr", "City": "Greensboro", "State": "North Carolina", "Zip": 27410, "Country": "United States", "Land_Value": 127000, "Improved_V": 324200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.40146065900001, "SHAPE_Area": 3002.8853576699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356670.127099998295307, 260611.013399999588728 ], [ 356650.950000002980232, 260590.380399998277426 ], [ 356642.384400002658367, 260554.635499998927116 ], [ 356635.872800000011921, 260561.759300000965595 ], [ 356626.942199997603893, 260568.863400001078844 ], [ 356595.249700002372265, 260597.523899998515844 ], [ 356595.215499997138977, 260601.534400001168251 ], [ 356618.380999997258186, 260627.26630000025034 ], [ 356619.934299997985363, 260634.245099999010563 ], [ 356622.344200000166893, 260635.320300001651049 ], [ 356626.384800001978874, 260634.297899998724461 ], [ 356627.167700000107288, 260637.048500001430511 ], [ 356670.127099998295307, 260611.013399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95074592, "LATITUDE": 18.37505214, "OBJECTID_1": 372, "PARCEL_NO_": "101102011400", "Tax_Legal_": "4-30-13 HULL No.4B LITTLE NORTHSIDE QTR.", "Name": "DANIEL HOLTON FAMILY TRUST", "Address": "436 Flint St", "City": "Staten Island", "State": "New York", "Zip": 10306, "Country": "United States", "Land_Value": 197200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.920705129, "SHAPE_Area": 2623.2340694300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356670.127099998295307, 260611.013399999588728 ], [ 356693.301500000059605, 260635.689899999648333 ], [ 356698.175399996340275, 260631.50789999961853 ], [ 356704.634900003671646, 260630.505300000309944 ], [ 356704.152199998497963, 260592.504599999636412 ], [ 356647.283500000834465, 260547.498399998992682 ], [ 356642.384400002658367, 260554.635499998927116 ], [ 356650.950000002980232, 260590.380399998277426 ], [ 356670.127099998295307, 260611.013399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92860957000001, "LATITUDE": 18.37496691, "OBJECTID_1": 871, "PARCEL_NO_": "101301021200", "Tax_Legal_": "PETERBORG 7-6&10-21 GT. NORTHSIDE", "Name": "FRANK A & JULIA R ODLUM LIV TR", "Address": "PO Box 12138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 136000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.23729518900001, "SHAPE_Area": 2010.23403985 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359033.910800002515316, 260573.786800000816584 ], [ 359028.322400003671646, 260567.19709999859333 ], [ 358991.741599999368191, 260601.728199999779463 ], [ 358989.060099996626377, 260632.52589999884367 ], [ 358996.228799998760223, 260642.928100001066923 ], [ 359001.106299996376038, 260638.324000000953674 ], [ 359000.32150000333786, 260635.784499999135733 ], [ 358998.7179000005126, 260634.715900000184774 ], [ 359002.781800001859665, 260630.949400000274181 ], [ 359004.381899997591972, 260632.440200001001358 ], [ 359006.804399996995926, 260632.037799999117851 ], [ 359012.545699998736382, 260620.6858000010252 ], [ 359049.869800001382828, 260593.549100000411272 ], [ 359033.910800002515316, 260573.786800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301015700", "MAP": "D9-2123-T82", "PARCEL_NAM": "10-A-11-A", "ACRE": ".51", "LONGITUDE": -64.93105562, "LATITUDE": 18.37505609, "OBJECTID_1": 845, "PARCEL_NO_": "101301015700", "Tax_Legal_": "PETERBORG 10-A-11-A GT. NORTHSIDE QTR.", "Name": "HILL, LOUIS & DESIREE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 157900, "Improved_V": 949400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.85867328699999, "SHAPE_Area": 1985.8945272200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358785.899999998509884, 260627.274500001221895 ], [ 358764.580899998545647, 260574.115600001066923 ], [ 358760.502599999308586, 260579.570599999278784 ], [ 358749.118900001049042, 260590.665399998426437 ], [ 358719.90820000320673, 260611.957899998873472 ], [ 358757.608900003135204, 260635.275600001215935 ], [ 358785.899999998509884, 260627.274500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92751407, "LATITUDE": 18.37465281, "OBJECTID_1": 801, "PARCEL_NO_": "101301010700", "Tax_Legal_": "PETERBORG 10-2-9 GREAT NORTHSIDE QTR", "Name": "BLAIR JAMES LAMPERT", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021373, "Country": "United States", "Land_Value": 423500, "Improved_V": 100300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.53962544799998, "SHAPE_Area": 5296.8517054499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359148.687700003385544, 260541.7956000007689 ], [ 359141.785099998116493, 260500.153599999845028 ], [ 359087.415200002491474, 260540.449700001627207 ], [ 359141.429799996316433, 260636.517200000584126 ], [ 359145.454199999570847, 260637.394499998539686 ], [ 359148.68299999833107, 260636.998700000345707 ], [ 359164.89019999653101, 260627.632199998944998 ], [ 359148.687700003385544, 260541.7956000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301021000", "MAP": "D9-2842-T84", "PARCEL_NAM": "10-24", "ACRE": ".119", "LONGITUDE": -64.92896019, "LATITUDE": 18.37497124, "OBJECTID_1": 869, "PARCEL_NO_": "101301021000", "Tax_Legal_": "PETERBORG 7-7C&10-24 GT. NORTHSIDE", "Name": "FRANK A & JULIA R ODLUM LIV TR", "Address": "PO Box 12138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 188000, "Improved_V": 1045400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.73479425100001, "SHAPE_Area": 757.762662976 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358991.741599999368191, 260601.728199999779463 ], [ 358973.376199997961521, 260580.468499999493361 ], [ 358964.45830000191927, 260586.094999998807907 ], [ 358957.993400000035763, 260587.730900000780821 ], [ 358989.060099996626377, 260632.52589999884367 ], [ 358991.741599999368191, 260601.728199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301015600", "MAP": "D9-2123-T82", "PARCEL_NAM": "10-a-11-B", "ACRE": "351", "LONGITUDE": -64.93073871, "LATITUDE": 18.37484167, "OBJECTID_1": 844, "PARCEL_NO_": "101301015600", "Tax_Legal_": "PETERBORG 10-A-11-B GREAT NORTHSIDE", "Name": "CLARKE, JR. LESLIE F. & RITA T", "Address": "PO Box 152134", "City": "San Diego", "State": "California", "Zip": 92195, "Country": "United States", "Land_Value": 188000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.005300893, "SHAPE_Area": 2431.02133985 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358817.541799999773502, 260578.720199998468161 ], [ 358787.865000002086163, 260546.18470000103116 ], [ 358784.958099998533726, 260548.528900001198053 ], [ 358780.885099999606609, 260553.350699998438358 ], [ 358770.295199997723103, 260565.929699998348951 ], [ 358764.580899998545647, 260574.115600001066923 ], [ 358785.899999998509884, 260627.274500001221895 ], [ 358801.200099997222424, 260629.721799999475479 ], [ 358800.481899999082088, 260619.372299998998642 ], [ 358802.164700001478195, 260611.153400000184774 ], [ 358805.468999996781349, 260601.892400000244379 ], [ 358811.204899996519089, 260591.173500001430511 ], [ 358817.541799999773502, 260578.720199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95163501, "LATITUDE": 18.37488386, "OBJECTID_1": 370, "PARCEL_NO_": "101102011200", "Tax_Legal_": "HULL 4-30-2 LT. NORTHSIDE", "Name": "JOSEPH TULIS REVOCABLE TRUST", "Address": "PO Box 305374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 119000, "Improved_V": 215700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.763721745, "SHAPE_Area": 2193.8032531499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356615.632299996912479, 260571.304000001400709 ], [ 356579.632299996912479, 260537.656599998474121 ], [ 356556.794799998402596, 260568.078200001269579 ], [ 356569.332599997520447, 260610.821699999272823 ], [ 356579.883000001311302, 260602.886500000953674 ], [ 356615.632299996912479, 260571.304000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92706966, "LATITUDE": 18.37473564, "OBJECTID_1": 802, "PARCEL_NO_": "101301010800", "Tax_Legal_": "PETERBORG 10-2-11 GREAT NORTHSIDE QTR", "Name": "CASAGRANDE, DIRK R. & WERA", "Address": "40 MASSACHUSETTS AVENUE", "City": "ARLINGTON", "State": "Massachusetts", "Zip": 2474, "Country": "United States", "Land_Value": 248900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.08422790200001, "SHAPE_Area": 3952.2994493599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359198.666500002145767, 260543.682300001382828 ], [ 359197.105999998748302, 260537.547800000756979 ], [ 359195.568899996578693, 260528.669300001114607 ], [ 359148.687700003385544, 260541.7956000007689 ], [ 359164.89019999653101, 260627.632199998944998 ], [ 359172.978500001132488, 260624.743099998682737 ], [ 359189.093999996781349, 260626.141499999910593 ], [ 359201.204800002276897, 260624.340799998492002 ], [ 359198.666500002145767, 260543.682300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301017300", "MAP": "B9-508-T83", "PARCEL_NAM": "10-A-20", "ACRE": ".508", "LONGITUDE": -64.93031195, "LATITUDE": 18.37487315, "OBJECTID_1": 859, "PARCEL_NO_": "101301017300", "Tax_Legal_": "PETERBORG 10-A-20 GT. NORTHSIDE QTR.", "Name": "JONES, ROSEMARY and GAVEN ELLISTON", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 157900, "Improved_V": 559100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.8342117, "SHAPE_Area": 1869.55681979 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358862.053000003099442, 260585.679099999368191 ], [ 358853.277000002563, 260574.630399998277426 ], [ 358852.553400002419949, 260564.914200000464916 ], [ 358843.0, 260550.481600001454353 ], [ 358831.585699997842312, 260565.164799999445677 ], [ 358830.755999997258186, 260567.902199998497963 ], [ 358811.914200000464916, 260602.578400000929832 ], [ 358808.608000002801418, 260612.050599999725819 ], [ 358839.94990000128746, 260624.550500001758337 ], [ 358841.67400000244379, 260611.476799998432398 ], [ 358846.608999997377396, 260600.118099998682737 ], [ 358854.756599999964237, 260590.263399999588728 ], [ 358862.053000003099442, 260585.679099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95070822, "LATITUDE": 18.37468214, "OBJECTID_1": 374, "PARCEL_NO_": "101102011700", "Tax_Legal_": "HULL 4-30-14&4-30-15-1 No.4B LITTLE NORTHSIDE QTR.", "Name": "BOGGUS McCALL FAMILY TRUST", "Address": "10457 Courtney Dr", "City": "Fairfax", "State": "Virginia", "Zip": 22030, "Country": "United States", "Land_Value": 69900, "Improved_V": 23100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.890998123, "SHAPE_Area": 2251.67237574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356703.838600002229214, 260534.662399999797344 ], [ 356689.317800000309944, 260535.387899998575449 ], [ 356658.829000003635883, 260517.406500000506639 ], [ 356651.370800003409386, 260540.987900000065565 ], [ 356649.747299998998642, 260542.241200000047684 ], [ 356647.283500000834465, 260547.498399998992682 ], [ 356704.152199998497963, 260592.504599999636412 ], [ 356703.838600002229214, 260534.662399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102012100", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".64", "LONGITUDE": -64.94990919, "LATITUDE": 18.37466777, "OBJECTID_1": 378, "PARCEL_NO_": "101102012100", "Tax_Legal_": "4-14 REM. HULL NO.4B LITTLE NORTHSIDE QTR", "Name": "CERGE, KENNETH & JET`AIME CERGE-GRANT", "Address": "5332 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 162500, "Improved_V": 153200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.69353612500001, "SHAPE_Area": 2619.6609244000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356799.732299998402596, 260542.202199999243021 ], [ 356741.083599999547005, 260516.813099998980761 ], [ 356733.494199998676777, 260555.803300000727177 ], [ 356777.573399998247623, 260587.616999998688698 ], [ 356780.022900000214577, 260584.048500001430511 ], [ 356792.338799998164177, 260558.184799998998642 ], [ 356793.967600002884865, 260556.298300001770258 ], [ 356796.433300003409386, 260550.829999998211861 ], [ 356799.732299998402596, 260542.202199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301017800", "MAP": "B9-508-T83", "PARCEL_NAM": "10-20", "ACRE": ".49", "LONGITUDE": -64.9287835, "LATITUDE": 18.37461011, "OBJECTID_1": 862, "PARCEL_NO_": "101301017800", "Tax_Legal_": "PETERBORG 10-20&10-A-24 GT. NORTHSIDE", "Name": "C. V. FERREYRA LLC", "Address": "PO BOX 304993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 182600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.78481678200001, "SHAPE_Area": 2274.5681163099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358973.766500003635883, 260534.66440000012517 ], [ 358982.504600003361702, 260550.145700000226498 ], [ 358985.650700002908707, 260559.459600001573563 ], [ 358985.5878000035882, 260566.84739999845624 ], [ 358979.891500003635883, 260572.922499999403954 ], [ 358971.781599998474121, 260578.344500001519918 ], [ 358973.376199997961521, 260580.468499999493361 ], [ 358991.741599999368191, 260601.728199999779463 ], [ 359028.322400003671646, 260567.19709999859333 ], [ 358990.812299996614456, 260521.504999998956919 ], [ 358973.766500003635883, 260534.66440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301015500", "MAP": "D9-2122-T82", "PARCEL_NAM": "10-A-12", "ACRE": ".519", "LONGITUDE": -64.93042903, "LATITUDE": 18.37443954, "OBJECTID_1": 843, "PARCEL_NO_": "101301015500", "Tax_Legal_": "10-A-12 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "GORDON, LEROY S. & CHRISTIAN, D. V", "Address": "PO Box 9681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 165000, "Improved_V": 1221000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.72100275299999, "SHAPE_Area": 1992.15150386 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358787.865000002086163, 260546.18470000103116 ], [ 358817.541799999773502, 260578.720199998468161 ], [ 358823.506399996578693, 260566.998500000685453 ], [ 358831.673799999058247, 260554.821899998933077 ], [ 358847.166400000452995, 260534.683699999004602 ], [ 358858.55009999871254, 260523.588899999856949 ], [ 358864.230200000107288, 260519.413499999791384 ], [ 358864.271600000560284, 260514.558699999004602 ], [ 358860.250799998641014, 260513.259300000965595 ], [ 358833.581399999558926, 260520.218199998140335 ], [ 358813.347999997437, 260528.918499998748302 ], [ 358797.137299999594688, 260538.70719999819994 ], [ 358787.865000002086163, 260546.18470000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95133509, "LATITUDE": 18.37459112, "OBJECTID_1": 371, "PARCEL_NO_": "101102011300", "Tax_Legal_": "4-30-1 HULL LITTLE NORTHSIDE QTR.", "Name": "SEIBERT, SHARON A., TRUSTEE", "Address": "7718 Estate Hull Bay4-30-1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 139600, "Improved_V": 443000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.32134836899999, "SHAPE_Area": 2067.2531150700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356648.229999996721745, 260531.040800001472235 ], [ 356593.535599999129772, 260514.761199999600649 ], [ 356595.049400001764297, 260526.383699998259544 ], [ 356587.763800002634525, 260529.70160000026226 ], [ 356582.891699999570847, 260533.672499999403954 ], [ 356579.632299996912479, 260537.656599998474121 ], [ 356615.632299996912479, 260571.304000001400709 ], [ 356628.628600001335144, 260560.22239999845624 ], [ 356639.205899998545647, 260549.120999999344349 ], [ 356642.483300000429153, 260543.026099998503923 ], [ 356644.108599998056889, 260541.561799999326468 ], [ 356648.229999996721745, 260531.040800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101301010300", "MAP": "B9-508-T83", "PARCEL_NAM": "ROW 7-3", "ACRE": "0.042", "LONGITUDE": -64.92933279, "LATITUDE": 18.37478253, "OBJECTID_1": 798, "PARCEL_NO_": "101301010300", "Tax_Legal_": "7-1,7-2 & 7-3 ROW'S PETERBORG NO. 12 GREAT NORTHSIDE QTR", "Name": "JOHNSON, R BRENT", "Address": "PO Box 1015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.694790781799995, "SHAPE_Area": 217.099147902 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358948.314000003039837, 260588.073800001293421 ], [ 358955.570799998939037, 260588.133200000971556 ], [ 358957.993400000035763, 260587.730900000780821 ], [ 358954.008599996566772, 260582.209800001233816 ], [ 358943.535499997437, 260581.068599998950958 ], [ 358925.875699996948242, 260571.635999999940395 ], [ 358919.383900001645088, 260576.438000001013279 ], [ 358926.624499998986721, 260578.397100001573563 ], [ 358939.460799999535084, 260586.101500000804663 ], [ 358948.314000003039837, 260588.073800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301021600", "MAP": "B9-508-T83", "PARCEL_NAM": "10-A-21", "ACRE": ".501", "LONGITUDE": -64.92996924000001, "LATITUDE": 18.37451349, "OBJECTID_1": 873, "PARCEL_NO_": "101301021600", "Tax_Legal_": "PETERBORG 10-A-21 GT. NORTHSIDE QTR.", "Name": "CANNINGS, LATISHA & OTTO A. ETTIENNE", "Address": "PO Box 302003", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 165000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.73969411, "SHAPE_Area": 2361.0356079799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358894.409800000488758, 260573.700500000268221 ], [ 358886.913099996745586, 260507.14469999819994 ], [ 358883.669799998402596, 260509.229100000113249 ], [ 358879.598700001835823, 260513.839800000190735 ], [ 358856.037600003182888, 260534.545200001448393 ], [ 358843.0, 260550.481600001454353 ], [ 358852.553400002419949, 260564.914200000464916 ], [ 358853.277000002563, 260574.630399998277426 ], [ 358862.053000003099442, 260585.679099999368191 ], [ 358868.535800002515316, 260581.932500001043081 ], [ 358894.409800000488758, 260573.700500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301021400", "MAP": "B9-508-T83", "PARCEL_NAM": "7-5", "ACRE": ".042", "LONGITUDE": -64.92932368, "LATITUDE": 18.37470514, "OBJECTID_1": 872, "PARCEL_NO_": "101301021400", "Tax_Legal_": "PETERBORG 10-19,10A-23&7-5 GT. NORTHSIDE", "Name": "ST.JOSEPH,LLC", "Address": "180 W Main St", "City": "Clinton", "State": "Connecticut", "Zip": 6413, "Country": "United States", "Land_Value": 218800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.601805161900003, "SHAPE_Area": 262.11914001600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358939.674800001084805, 260560.983199998736382 ], [ 358925.875699996948242, 260571.635999999940395 ], [ 358943.535499997437, 260581.068599998950958 ], [ 358954.008599996566772, 260582.209800001233816 ], [ 358939.674800001084805, 260560.983199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301021400", "MAP": "B9-508-T83", "PARCEL_NAM": "10-19", "ACRE": ".306", "LONGITUDE": -64.92908767, "LATITUDE": 18.37459578, "OBJECTID_1": 872, "PARCEL_NO_": "101301021400", "Tax_Legal_": "PETERBORG 10-19,10A-23&7-5 GT. NORTHSIDE", "Name": "ST.JOSEPH,LLC", "Address": "180 W Main St", "City": "Clinton", "State": "Connecticut", "Zip": 6413, "Country": "United States", "Land_Value": 218800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.67884025699999, "SHAPE_Area": 1280.4672566900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358973.766500003635883, 260534.66440000012517 ], [ 358939.674800001084805, 260560.983199998736382 ], [ 358954.008599996566772, 260582.209800001233816 ], [ 358962.895999997854233, 260580.171599999070168 ], [ 358970.192400000989437, 260575.58729999884963 ], [ 358971.781599998474121, 260578.344500001519918 ], [ 358979.891500003635883, 260572.922499999403954 ], [ 358985.5878000035882, 260566.84739999845624 ], [ 358985.650700002908707, 260559.459600001573563 ], [ 358982.504600003361702, 260550.145700000226498 ], [ 358973.766500003635883, 260534.66440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301017500", "MAP": "B9-508-T83", "PARCEL_NAM": "10-A-22", "ACRE": ".565", "LONGITUDE": -64.92962245, "LATITUDE": 18.37436819, "OBJECTID_1": 860, "PARCEL_NO_": "101301017500", "Tax_Legal_": "PETERBORG 10-A-22 GT. NORTHSIDE", "Name": "VAN DOP, JACOBUS", "Address": "20600 Bucklodge Rd", "City": "Boyds", "State": "Maryland", "Zip": 20841, "Country": "United States", "Land_Value": 166900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.85185426199999, "SHAPE_Area": 2567.2345651800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358925.875699996948242, 260571.635999999940395 ], [ 358925.963799998164177, 260561.293099999427795 ], [ 358930.063699997961521, 260553.305100001394749 ], [ 358921.701399996876717, 260493.708299998193979 ], [ 358886.913099996745586, 260507.14469999819994 ], [ 358894.409800000488758, 260573.700500000268221 ], [ 358900.878300003707409, 260571.642499998211861 ], [ 358910.568400003015995, 260570.033100001513958 ], [ 358918.631499998271465, 260570.09910000115633 ], [ 358925.875699996948242, 260571.635999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92839504, "LATITUDE": 18.37427545, "OBJECTID_1": 820, "PARCEL_NO_": "101301012600", "Tax_Legal_": "PETERBORG 1,2,3,4,5&6 GR NORTHSIDE", "Name": "AT&T OF THE VI INC", "Address": "At&T Way", "City": "Bedminster", "State": "New Jersey", "Zip": 7921, "Country": "United States", "Land_Value": 606000, "Improved_V": 255000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.72188500200002, "SHAPE_Area": 4568.6180177099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359083.448299996554852, 260532.817899998277426 ], [ 359048.443499997258186, 260477.013799998909235 ], [ 358990.812299996614456, 260521.504999998956919 ], [ 359028.322400003671646, 260567.19709999859333 ], [ 359033.910800002515316, 260573.786800000816584 ], [ 359083.448299996554852, 260532.817899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301021400", "MAP": "B9-508-T83", "PARCEL_NAM": "10-A-23", "ACRE": null, "LONGITUDE": -64.92929463, "LATITUDE": 18.37427477, "OBJECTID_1": 872, "PARCEL_NO_": "101301021400", "Tax_Legal_": "PETERBORG 10-19,10A-23&7-5 GT. NORTHSIDE", "Name": "ST.JOSEPH,LLC", "Address": "180 W Main St", "City": "Clinton", "State": "Connecticut", "Zip": 6413, "Country": "United States", "Land_Value": 218800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.269220131, "SHAPE_Area": 2462.73596008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358973.766500003635883, 260534.66440000012517 ], [ 358946.759999997913837, 260486.525100000202656 ], [ 358921.701399996876717, 260493.708299998193979 ], [ 358930.063699997961521, 260553.305100001394749 ], [ 358925.963799998164177, 260561.293099999427795 ], [ 358925.875699996948242, 260571.635999999940395 ], [ 358939.674800001084805, 260560.983199998736382 ], [ 358973.766500003635883, 260534.66440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102012000", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".45", "LONGITUDE": -64.95034681, "LATITUDE": 18.37430517, "OBJECTID_1": 377, "PARCEL_NO_": "101102012000", "Tax_Legal_": "HULL ESTATE 4-15REM.&4-30-15-2 No.4B LT.NORTHSIDE QTR.", "Name": "STRYKER LIVING TRUST", "Address": "7705 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94900, "Improved_V": 303300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.38225652, "SHAPE_Area": 1602.1613635599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356738.117299996316433, 260486.391399998217821 ], [ 356705.915200002491474, 260480.217199999839067 ], [ 356703.838600002229214, 260534.662399999797344 ], [ 356725.479599997401237, 260550.038199998438358 ], [ 356724.718199998140335, 260544.754599999636412 ], [ 356720.706399999558926, 260542.39979999884963 ], [ 356722.38740000128746, 260534.392000000923872 ], [ 356725.608999997377396, 260534.840500000864267 ], [ 356728.852300003170967, 260532.756099998950958 ], [ 356738.117299996316433, 260486.391399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102012200", "MAP": "A9-108-T69", "PARCEL_NAM": "4-13", "ACRE": ".64", "LONGITUDE": -64.94981932, "LATITUDE": 18.37431086, "OBJECTID_1": 379, "PARCEL_NO_": "101102012200", "Tax_Legal_": "4-13 HULL(ENSOMHED) 4B LITTLE NORTHSIDE", "Name": "LATHAM SMITH LIVING TRUST", "Address": "PO Box 188", "City": "Green Cove Springs", "State": "Florida", "Zip": 32043, "Country": "United States", "Land_Value": 168000, "Improved_V": 1209900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.54335755299999, "SHAPE_Area": 2354.3047542 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356807.318099997937679, 260503.634199999272823 ], [ 356747.834399998188019, 260481.615800000727177 ], [ 356741.083599999547005, 260516.813099998980761 ], [ 356799.732299998402596, 260542.202199999243021 ], [ 356802.226700000464916, 260533.356699999421835 ], [ 356803.95440000295639, 260519.860800001770258 ], [ 356807.318099997937679, 260503.634199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102011900", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".45", "LONGITUDE": -64.95067564, "LATITUDE": 18.37425428, "OBJECTID_1": 376, "PARCEL_NO_": "101102011900", "Tax_Legal_": "HULL 4-25 LT. NORTHSIDE", "Name": "STRYKER LIVING TRUST", "Address": "7705 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.75096937500001, "SHAPE_Area": 2239.9315249800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356705.915200002491474, 260480.217199999839067 ], [ 356660.786799997091293, 260476.892499998211861 ], [ 356660.632200002670288, 260495.045299999415874 ], [ 356664.633199997246265, 260498.666700001806021 ], [ 356663.751400001347065, 260507.525400001555681 ], [ 356659.703599996864796, 260509.392099998891354 ], [ 356658.879299998283386, 260511.496300000697374 ], [ 356658.829000003635883, 260517.406500000506639 ], [ 356689.317800000309944, 260535.387899998575449 ], [ 356703.838600002229214, 260534.662399999797344 ], [ 356705.915200002491474, 260480.217199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102011800", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".52", "LONGITUDE": -64.95124987, "LATITUDE": 18.37425557, "OBJECTID_1": 375, "PARCEL_NO_": "101102011800", "Tax_Legal_": "4-26 HULL 4B GREAT NORTHSIDE", "Name": "VAN DRIESON FAMILY TRUST", "Address": "3439 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 133300, "Improved_V": 226000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.64681324200001, "SHAPE_Area": 2298.7363957299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356654.226700000464916, 260489.715599998831749 ], [ 356590.601700000464916, 260480.53999999910593 ], [ 356593.535599999129772, 260514.761199999600649 ], [ 356648.229999996721745, 260531.040800001472235 ], [ 356650.717299997806549, 260523.039599999785423 ], [ 356653.258500002324581, 260508.7060999982059 ], [ 356654.226700000464916, 260489.715599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92714632000001, "LATITUDE": 18.37409578, "OBJECTID_1": 803, "PARCEL_NO_": "101301010900", "Tax_Legal_": "10-2-8 PETERBORG GREAT NORTHSIDE QUARTER", "Name": "CASAGRANDE, DIRK R", "Address": "40 MASSACHUSETTS AVENUE", "City": "ARLINGTON", "State": "Massachusetts", "Zip": 2474, "Country": "United States", "Land_Value": 166900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.93469988699999, "SHAPE_Area": 2698.5536465199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359191.880800001323223, 260488.320199999958277 ], [ 359189.681199997663498, 260462.548799999058247 ], [ 359149.095899999141693, 260493.880699999630451 ], [ 359149.848300002515316, 260500.2195999994874 ], [ 359147.414899997413158, 260501.8885000012815 ], [ 359145.019400000572205, 260499.124699998646975 ], [ 359141.785099998116493, 260500.153599999845028 ], [ 359148.687700003385544, 260541.7956000007689 ], [ 359195.568899996578693, 260528.669300001114607 ], [ 359191.880800001323223, 260488.320199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9267022, "LATITUDE": 18.37401156, "OBJECTID_1": 805, "PARCEL_NO_": "101301011100", "Tax_Legal_": "PETERBORG 10-2-7 GR NORTHSIDE", "Name": "THE LOUIS R & GLORIA S GREWAY REVOCABLE TRUST", "Address": "5386 Dunraven Cir", "City": "Golden", "State": "Colorado", "Zip": 80403, "Country": "United States", "Land_Value": 174000, "Improved_V": 442400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.49581961199999, "SHAPE_Area": 2136.53009681 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359249.08219999819994, 260494.276799999177456 ], [ 359244.483499996364117, 260466.163699999451637 ], [ 359191.880800001323223, 260488.320199999958277 ], [ 359195.568899996578693, 260528.669300001114607 ], [ 359197.105999998748302, 260537.547800000756979 ], [ 359205.205099999904633, 260533.392200000584126 ], [ 359216.614000000059605, 260519.342300001531839 ], [ 359228.807499997317791, 260507.831999998539686 ], [ 359239.357900001108646, 260499.896800000220537 ], [ 359249.08219999819994, 260494.276799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301017800", "MAP": "B9-508-T83", "PARCEL_NAM": "10-A-24", "ACRE": ".271", "LONGITUDE": -64.92905627, "LATITUDE": 18.37412195, "OBJECTID_1": 862, "PARCEL_NO_": "101301017800", "Tax_Legal_": "PETERBORG 10-20&10-A-24 GT. NORTHSIDE", "Name": "C. V. FERREYRA LLC", "Address": "PO BOX 304993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 182600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.82132874600001, "SHAPE_Area": 895.54582015200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358990.812299996614456, 260521.504999998956919 ], [ 358959.693400003015995, 260482.831300001591444 ], [ 358946.759999997913837, 260486.525100000202656 ], [ 358973.766500003635883, 260534.66440000012517 ], [ 358990.812299996614456, 260521.504999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9277828, "LATITUDE": 18.37382028, "OBJECTID_1": 820, "PARCEL_NO_": "101301012600", "Tax_Legal_": "PETERBORG 1,2,3,4,5&6 GR NORTHSIDE", "Name": "AT&T OF THE VI INC", "Address": "At&T Way", "City": "Bedminster", "State": "New Jersey", "Zip": 7921, "Country": "United States", "Land_Value": 606000, "Improved_V": 255000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.99272635900002, "SHAPE_Area": 6300.3952609600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359161.368600003421307, 260473.082899998873472 ], [ 359118.279100000858307, 260419.745700001716614 ], [ 359069.547899998724461, 260460.721200000494719 ], [ 359048.443499997258186, 260477.013799998909235 ], [ 359083.448299996554852, 260532.817899998277426 ], [ 359098.062600001692772, 260521.116200000047684 ], [ 359115.095899999141693, 260509.434399999678135 ], [ 359161.368600003421307, 260473.082899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301011700", "MAP": "A9-139-T70", "PARCEL_NAM": "10-1-36", "ACRE": "1.0", "LONGITUDE": -64.92515454, "LATITUDE": 18.37386641, "OBJECTID_1": 811, "PARCEL_NO_": "101301011700", "Tax_Legal_": "10-1-36 PETERBORG GREAT NORTHSIDE QUARTER", "Name": "REVOCABLE LIVING TRUST OF THOMAS L GREEN", "Address": "Po Box 301", "City": "Chilmark", "State": "Massachusetts", "Zip": 2535, "Country": "United States", "Land_Value": 366300, "Improved_V": 700200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.14269597800001, "SHAPE_Area": 4298.09875379 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359421.552199997007847, 260505.187600001692772 ], [ 359365.059199996292591, 260425.765500001609325 ], [ 359361.718900002539158, 260429.548599999397993 ], [ 359335.738899998366833, 260450.234200000762939 ], [ 359390.662399999797344, 260534.276799999177456 ], [ 359393.092100001871586, 260533.030099999159575 ], [ 359400.341700002551079, 260533.933800000697374 ], [ 359405.996699996292591, 260532.713599998503923 ], [ 359410.026500001549721, 260532.957600001245737 ], [ 359416.500299997627735, 260530.266399998217821 ], [ 359418.944399997591972, 260527.3310999982059 ], [ 359420.632600001990795, 260518.478999998420477 ], [ 359421.552199997007847, 260505.187600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102013000", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".56", "LONGITUDE": -64.94975902, "LATITUDE": 18.37397261, "OBJECTID_1": 387, "PARCEL_NO_": "101102013000", "Tax_Legal_": "HULL 4-12 LT. NORTHSIDE", "Name": "DAILEY,TRUSTEE, ALEAXANDER", "Address": "168 CROWN BAY SUITE 310", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 153400, "Improved_V": 608800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.448916142, "SHAPE_Area": 2404.0105293000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356817.261799998581409, 260472.262600000947714 ], [ 356759.462700001895428, 260441.814300000667572 ], [ 356757.830300003290176, 260444.122900001704693 ], [ 356753.712399996817112, 260454.221700001507998 ], [ 356747.834399998188019, 260481.615800000727177 ], [ 356807.318099997937679, 260503.634199999272823 ], [ 356810.653099998831749, 260490.784699998795986 ], [ 356817.261799998581409, 260472.262600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301017700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92869968, "LATITUDE": 18.37393894, "OBJECTID_1": 861, "PARCEL_NO_": "101301017700", "Tax_Legal_": "PETERBORG 10-3-9 GT. NORTHSIDE", "Name": "SBA TOWERS USVI INC", "Address": "8051 Congress Ave", "City": "Boca Raton", "State": "Florida", "Zip": 33487, "Country": "United States", "Land_Value": 183000, "Improved_V": 165000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.164950299, "SHAPE_Area": 2468.2619873399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359069.547899998724461, 260460.721200000494719 ], [ 358959.693400003015995, 260482.831300001591444 ], [ 358990.812299996614456, 260521.504999998956919 ], [ 359048.443499997258186, 260477.013799998909235 ], [ 359069.547899998724461, 260460.721200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301013800", "MAP": "D9-152-T80", "PARCEL_NAM": "10-8", "ACRE": ".51", "LONGITUDE": -64.93132811, "LATITUDE": 18.373869, "OBJECTID_1": 829, "PARCEL_NO_": "101301013800", "Tax_Legal_": "PETERBORG 10-8 GT. NORTHSIDE", "Name": "DELFANI, IRAJ", "Address": "425 South St", "City": "Honolulu", "State": "Hawaii", "Zip": 96813, "Country": "United States", "Land_Value": 228800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.52842557400001, "SHAPE_Area": 2866.4645496399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358766.178400002419949, 260481.247499998658895 ], [ 358734.258599996566772, 260441.933899998664856 ], [ 358724.555799998342991, 260445.020899999886751 ], [ 358714.81530000269413, 260452.540500000119209 ], [ 358705.042499996721745, 260463.859600000083447 ], [ 358703.39750000089407, 260467.645799998193979 ], [ 358700.953400000929832, 260470.5810999982059 ], [ 358699.303000003099442, 260475.000599998980761 ], [ 358694.423799999058247, 260479.815799999982119 ], [ 358726.348999999463558, 260518.496100001037121 ], [ 358729.612000003457069, 260514.089899998158216 ], [ 358752.384800001978874, 260491.267099998891354 ], [ 358766.178400002419949, 260481.247499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102012500", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".54", "LONGITUDE": -64.95124988000001, "LATITUDE": 18.37392262, "OBJECTID_1": 382, "PARCEL_NO_": "101102012500", "Tax_Legal_": "HULL ESTATE 4-27 LT. NORTHSIDE", "Name": "SCHULTERBRANDT, GAIL", "Address": "PO Box 303584", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 149700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.69706354900001, "SHAPE_Area": 2327.6732524700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356656.175499998033047, 260450.256999999284744 ], [ 356590.878600001335144, 260448.0337999984622 ], [ 356589.987800002098083, 260457.947900000959635 ], [ 356590.601700000464916, 260480.53999999910593 ], [ 356654.226700000464916, 260489.715599998831749 ], [ 356654.345299996435642, 260475.784400001168251 ], [ 356656.175499998033047, 260450.256999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301014900", "MAP": null, "PARCEL_NAM": "10-A-6", "ACRE": null, "LONGITUDE": -64.92999682, "LATITUDE": 18.37383214, "OBJECTID_1": 839, "PARCEL_NO_": "101301014900", "Tax_Legal_": "PETERBORG 10-A-6 GREAT NORTHSIDE", "Name": "BRUMANT, JR., EDMUND L.", "Address": "PO Box 302007", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 188000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.26499579599999, "SHAPE_Area": 2289.7486959299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358895.328500002622604, 260493.679299999028444 ], [ 358887.444600000977516, 260443.815200001001358 ], [ 358872.89750000089407, 260448.557000000029802 ], [ 358843.805600002408028, 260455.918299999088049 ], [ 358852.243400000035763, 260506.64979999884963 ], [ 358882.147100001573563, 260498.661899998784065 ], [ 358895.328500002622604, 260493.679299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102012300", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".44", "LONGITUDE": -64.95028489000001, "LATITUDE": 18.37383819, "OBJECTID_1": 380, "PARCEL_NO_": "101102012300", "Tax_Legal_": "HULL 4-16 LT. NORTHSIDE", "Name": "STRYKER LIVING TRUST", "Address": "7705 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76500, "Improved_V": 472800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.34254765, "SHAPE_Area": 1701.0513688799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356748.984200000762939, 260441.30629999935627 ], [ 356711.992700003087521, 260429.393399998545647 ], [ 356705.915200002491474, 260480.217199999839067 ], [ 356738.117299996316433, 260486.391399998217821 ], [ 356744.86089999973774, 260452.03830000013113 ], [ 356748.984200000762939, 260441.30629999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102012400", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".54", "LONGITUDE": -64.95066226, "LATITUDE": 18.3737878, "OBJECTID_1": 381, "PARCEL_NO_": "101102012400", "Tax_Legal_": "HULL 4-24 LT. NORTHSIDE", "Name": "STRYKER LIVING TRUST", "Address": "7705 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 104300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.752422075, "SHAPE_Area": 2385.4553262300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356711.992700003087521, 260429.393399998545647 ], [ 356665.262599997222424, 260424.789099998772144 ], [ 356665.196000002324581, 260432.598999999463558 ], [ 356663.502499997615814, 260442.084300000220537 ], [ 356660.786799997091293, 260476.892499998211861 ], [ 356705.915200002491474, 260480.217199999839067 ], [ 356711.992700003087521, 260429.393399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92618692000001, "LATITUDE": 18.37361498, "OBJECTID_1": 817, "PARCEL_NO_": "101301012300", "Tax_Legal_": "PETERBORG 10-2-5 GREAT NORTHSIDE QTR", "Name": "ROSENBERG, MARK & JAYNE", "Address": "PO Box 192830", "City": "San Juan", "State": "Puerto Rico", "Zip": 919, "Country": "United States", "Land_Value": 193400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.16321501, "SHAPE_Area": 2762.2917547400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359315.742899999022484, 260431.072200000286102 ], [ 359304.5641999989748, 260418.103999998420477 ], [ 359240.633599996566772, 260444.811799999326468 ], [ 359244.483499996364117, 260466.163699999451637 ], [ 359249.08219999819994, 260494.276799999177456 ], [ 359300.898400001227856, 260469.791900001466274 ], [ 359300.920000001788139, 260467.258900001645088 ], [ 359291.245999999344349, 260466.968699999153614 ], [ 359284.007200002670288, 260464.798500001430511 ], [ 359282.468299999833107, 260456.131099998950958 ], [ 359295.4628000035882, 260445.260499998927116 ], [ 359315.742899999022484, 260431.072200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301025000", "MAP": null, "PARCEL_NAM": "10-A-7", "ACRE": null, "LONGITUDE": -64.92955697, "LATITUDE": 18.3737191, "OBJECTID_1": 876, "PARCEL_NO_": "101301025000", "Tax_Legal_": "PETERBORG 10-A-7 GT. NORTHSIDE QTR.", "Name": "BUTLER, MYRLA", "Address": "PO Box 306105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 130700, "Improved_V": 422000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.08241710300001, "SHAPE_Area": 2442.1801522000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358959.079599998891354, 260473.656800001859665 ], [ 358918.986800000071526, 260433.735500000417233 ], [ 358893.112899996340275, 260441.967500001192093 ], [ 358887.444600000977516, 260443.815200001001358 ], [ 358895.328500002622604, 260493.679299999028444 ], [ 358902.371500000357628, 260491.017000000923872 ], [ 358922.593999996781349, 260483.583099998533726 ], [ 358952.503100000321865, 260474.962000001221895 ], [ 358959.079599998891354, 260473.656800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102013100", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".52", "LONGITUDE": -64.94963741, "LATITUDE": 18.37367127, "OBJECTID_1": 388, "PARCEL_NO_": "101102013100", "Tax_Legal_": "HULL 4-11 LT. NORTHSIDE", "Name": "STRYKER LIVING TRUST", "Address": "7705 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.61114114, "SHAPE_Area": 2196.7810363899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356829.565099999308586, 260447.876400001347065 ], [ 356779.1216000020504, 260405.878199998289347 ], [ 356759.462700001895428, 260441.814300000667572 ], [ 356817.261799998581409, 260472.262600000947714 ], [ 356822.198600001633167, 260460.692899998277426 ], [ 356823.825599998235703, 260459.017400000244379 ], [ 356824.660700000822544, 260455.646800000220537 ], [ 356827.939900003373623, 260449.340799998492002 ], [ 356829.565099999308586, 260447.876400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92670344, "LATITUDE": 18.37367026, "OBJECTID_1": 819, "PARCEL_NO_": "101301012500", "Tax_Legal_": "PETERBORG 10-2-6 GT.NORTHSIDE QTR.", "Name": "Mark and Jayne Carol Rosenberg Revocable Trust", "Address": "11 Shad Rd W", "City": "Pound Ridge", "State": "New York", "Zip": 10576, "Country": "United States", "Land_Value": 165100, "Improved_V": 322600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.89984448300001, "SHAPE_Area": 1726.7528329700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359240.633599996566772, 260444.811799999326468 ], [ 359236.758500002324581, 260426.414900001138449 ], [ 359229.442299999296665, 260433.321100000292063 ], [ 359216.447800002992153, 260444.191700000315905 ], [ 359189.681199997663498, 260462.548799999058247 ], [ 359191.880800001323223, 260488.320199999958277 ], [ 359244.483499996364117, 260466.163699999451637 ], [ 359240.633599996566772, 260444.811799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301013700", "MAP": "D9-1542-T80", "PARCEL_NAM": "10-7", "ACRE": ".5", "LONGITUDE": -64.9309138, "LATITUDE": 18.37361884, "OBJECTID_1": 828, "PARCEL_NO_": "101301013700", "Tax_Legal_": "PETERBORG 10-7 GT. NORTHSIDE QTR.", "Name": "DELFANI, IRAJ", "Address": "425 South St", "City": "Honolulu", "State": "Hawaii", "Zip": 96813, "Country": "United States", "Land_Value": 228800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.65209054300001, "SHAPE_Area": 2299.1632659400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358811.531499996781349, 260458.187300000339746 ], [ 358783.601899996399879, 260423.761500000953674 ], [ 358734.258599996566772, 260441.933899998664856 ], [ 358766.178400002419949, 260481.247499998658895 ], [ 358774.291900001466274, 260475.403299998492002 ], [ 358787.255800001323223, 260468.121100001037121 ], [ 358801.821599997580051, 260462.118599999696016 ], [ 358811.531499996781349, 260458.187300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92718824000001, "LATITUDE": 18.37335329, "OBJECTID_1": 820, "PARCEL_NO_": "101301012600", "Tax_Legal_": "PETERBORG 1,2,3,4,5&6 GR NORTHSIDE", "Name": "AT&T OF THE VI INC", "Address": "At&T Way", "City": "Bedminster", "State": "New Jersey", "Zip": 7921, "Country": "United States", "Land_Value": 606000, "Improved_V": 255000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.22809559500001, "SHAPE_Area": 4813.7219260100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359118.279100000858307, 260419.745700001716614 ], [ 359161.368600003421307, 260473.082899998873472 ], [ 359195.462099999189377, 260446.552999999374151 ], [ 359208.431400001049042, 260438.637600000947714 ], [ 359216.550300002098083, 260432.160199999809265 ], [ 359188.620700001716614, 260397.734400000423193 ], [ 359170.266099996864796, 260375.208299998193979 ], [ 359162.946299999952316, 260382.53660000115633 ], [ 359118.279100000858307, 260419.745700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102012600", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".54", "LONGITUDE": -64.95124557, "LATITUDE": 18.37360568, "OBJECTID_1": 383, "PARCEL_NO_": "101102012600", "Tax_Legal_": "4-28 HULL LITTLE NORTHSIDE QUARTER", "Name": "ABU SOUD, ALI & NISREN", "Address": "PO Box 301800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 149700, "Improved_V": 283600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.72308330499999, "SHAPE_Area": 2382.1342118799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356657.312700003385544, 260411.42509999871254 ], [ 356587.086199998855591, 260419.927400000393391 ], [ 356589.465599998831749, 260424.590900000184774 ], [ 356585.419600002467632, 260426.246500000357628 ], [ 356581.391699999570847, 260425.791400000452995 ], [ 356582.149400003254414, 260431.497099999338388 ], [ 356583.744099996984005, 260433.621100001037121 ], [ 356586.954899996519089, 260435.336100000888109 ], [ 356587.737899996340275, 260438.08669999986887 ], [ 356589.336099997162819, 260439.788600001484156 ], [ 356590.907399997115135, 260444.656599998474121 ], [ 356590.878600001335144, 260448.0337999984622 ], [ 356656.175499998033047, 260450.256999999284744 ], [ 356659.598600000143051, 260427.064699999988079 ], [ 356657.312700003385544, 260411.42509999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101201010100", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".76", "LONGITUDE": -64.94945302000001, "LATITUDE": 18.37337623, "OBJECTID_1": 654, "PARCEL_NO_": "101201010100", "Tax_Legal_": "HULL BAY 4-10 LT. NORTHSIDE", "Name": "SANKOFA FAMILY TRUST", "Address": "PO Box 8502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 209200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.65540608699999, "SHAPE_Area": 2869.4410674599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356851.691600002348423, 260406.260999999940395 ], [ 356788.307599999010563, 260368.800900001078844 ], [ 356785.760999999940395, 260383.767700001597404 ], [ 356779.1216000020504, 260405.878199998289347 ], [ 356829.565099999308586, 260447.876400001347065 ], [ 356830.394799999892712, 260445.138999998569489 ], [ 356834.451499998569489, 260442.216899998486042 ], [ 356840.158600002527237, 260434.875300001353025 ], [ 356843.470200002193451, 260424.769999999552965 ], [ 356845.185300000011921, 260412.7516999989748 ], [ 356851.691600002348423, 260406.260999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102012900", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".49", "LONGITUDE": -64.95015477, "LATITUDE": 18.37344796, "OBJECTID_1": 386, "PARCEL_NO_": "101102012900", "Tax_Legal_": "4-17 HULL LITTLE NORTHSIDE QUARTER", "Name": "HODGINS FAMILY TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103300, "Improved_V": 71000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.237726159, "SHAPE_Area": 1891.1746206099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356770.284599997103214, 260402.006099998950958 ], [ 356745.375200003385544, 260391.669799998402596 ], [ 356715.437299996614456, 260403.668200001120567 ], [ 356711.992700003087521, 260429.393399998545647 ], [ 356748.984200000762939, 260441.30629999935627 ], [ 356752.245399996638298, 260437.111099999397993 ], [ 356760.436200000345707, 260422.190499998629093 ], [ 356762.08839999884367, 260417.559999998658895 ], [ 356763.713600002229214, 260416.095600001513958 ], [ 356766.18469999730587, 260409.994100000709295 ], [ 356768.626999996602535, 260407.269900001585484 ], [ 356770.284599997103214, 260402.006099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301013600", "MAP": "D9-1542-T80", "PARCEL_NAM": "10-6", "ACRE": ".5", "LONGITUDE": -64.93051542000001, "LATITUDE": 18.37348114, "OBJECTID_1": 827, "PARCEL_NO_": "101301013600", "Tax_Legal_": "PETERBORG 10-6 GT. NORTHSIDE QTR.", "Name": "DELFANI, IRAJ", "Address": "425 South St", "City": "Honolulu", "State": "Hawaii", "Zip": 96813, "Country": "United States", "Land_Value": 223000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.63574454900001, "SHAPE_Area": 1497.57132209 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358847.092000000178814, 260448.76799999922514 ], [ 358818.361400000751019, 260413.702399998903275 ], [ 358783.601899996399879, 260423.761500000953674 ], [ 358811.531499996781349, 260458.187300000339746 ], [ 358847.092000000178814, 260448.76799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92827651, "LATITUDE": 18.37341343, "OBJECTID_1": 842, "PARCEL_NO_": "101301015400", "Tax_Legal_": "PETERBORG 10-3-8 GT. NORTHSIDE", "Name": "CLIFFSIDE BUILDERS LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 159700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.34652610399999, "SHAPE_Area": 2186.8258848599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359078.582800000905991, 260441.374499998986721 ], [ 359069.279200002551079, 260397.602000001817942 ], [ 359020.679300002753735, 260423.168800000101328 ], [ 359035.700699999928474, 260458.333200000226498 ], [ 359065.588200002908707, 260452.245099999010563 ], [ 359078.582800000905991, 260441.374499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012000", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92542011, "LATITUDE": 18.37307275, "OBJECTID_1": 814, "PARCEL_NO_": "101301012000", "Tax_Legal_": "PETERBORG 10-1-24 GR NORTHSIDE", "Name": "THE JORDAN TRUST", "Address": "29 Cheever Pl", "City": "Brooklyn", "State": "New York", "Zip": 11231, "Country": "United States", "Land_Value": 213100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 360.86584659099998, "SHAPE_Area": 3988.63862225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359396.026399999856949, 260377.900400001555681 ], [ 359384.088100001215935, 260359.4375 ], [ 359354.500900000333786, 260330.275600001215935 ], [ 359349.553400002419949, 260343.111800000071526 ], [ 359345.358199998736382, 260362.287000000476837 ], [ 359345.061499997973442, 260397.114999998360872 ], [ 359342.541799999773502, 260408.915600001811981 ], [ 359331.930299997329712, 260424.027499999850988 ], [ 359325.42230000346899, 260430.729200001806021 ], [ 359311.614200003445148, 260442.437399998307228 ], [ 359291.343199998140335, 260455.57039999961853 ], [ 359288.906199999153614, 260457.661400001496077 ], [ 359288.884700000286102, 260460.194299999624491 ], [ 359303.398299999535084, 260460.313099998980761 ], [ 359317.136200003325939, 260456.837000001221895 ], [ 359330.929799996316433, 260446.817400000989437 ], [ 359358.536799997091293, 260424.456300001591444 ], [ 359361.801600001752377, 260419.839000001549721 ], [ 359365.050300002098083, 260417.121399998664856 ], [ 359385.409500002861023, 260393.645500000566244 ], [ 359391.13459999859333, 260384.193199999630451 ], [ 359396.026399999856949, 260377.900400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": "A9-758-T010", "PARCEL_NAM": null, "ACRE": ".10", "LONGITUDE": -64.90329168, "LATITUDE": 18.34004115, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.79856653, "SHAPE_Area": 391.57219606799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361747.175300002098083, 256759.022199999541044 ], [ 361748.065737388038542, 256758.502551291545387 ], [ 361748.854424159449991, 256757.838558298593853 ], [ 361749.518218333891127, 256757.049704185279552 ], [ 361750.037642580515239, 256756.159135844238335 ], [ 361750.397455732454546, 256755.19298471021466 ], [ 361750.587099999189377, 256754.17960000038147 ], [ 361750.079099997878075, 256751.266399998217821 ], [ 361747.115900002419949, 256751.888199999928474 ], [ 361739.518899999558926, 256753.482200000435114 ], [ 361712.629299998283386, 256759.124400001019239 ], [ 361702.714199997484684, 256751.467199999839067 ], [ 361700.459899999201298, 256749.726300001144409 ], [ 361700.104500003159046, 256750.60249999910593 ], [ 361699.572844237787649, 256752.283563148608664 ], [ 361699.333705969387665, 256754.030401450785575 ], [ 361699.394000403000973, 256755.792501262563746 ], [ 361699.751983993453905, 256757.518907620979007 ], [ 361700.397304863785394, 256759.159697717172094 ], [ 361701.311302152113058, 256760.667424523446243 ], [ 361702.467545631516259, 256761.998488827608526 ], [ 361703.832599997520447, 256763.114399999380112 ], [ 361705.035499997437, 256763.875700000673532 ], [ 361707.671700000762939, 256765.742800001055002 ], [ 361710.583999998867512, 256766.294199999421835 ], [ 361712.707400001585484, 256766.04839999973774 ], [ 361715.893700003623962, 256765.547899998724461 ], [ 361717.222599998116493, 256765.319200001657009 ], [ 361747.175300002098083, 256759.022199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89748784, "LATITUDE": 18.32156936, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3426.25023474, "SHAPE_Area": 13706.7984223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362401.023599997162819, 254549.081599999219179 ], [ 362407.52080000191927, 254543.64640000090003 ], [ 362409.142399996519089, 254542.604200001806021 ], [ 362418.859600000083447, 254537.828499998897314 ], [ 362422.093800000846386, 254536.799499999731779 ], [ 362428.560500003397465, 254534.952599998563528 ], [ 362432.599200002849102, 254534.14130000025034 ], [ 362439.866800002753735, 254532.934200000017881 ], [ 362450.347099997103214, 254533.231100000441074 ], [ 362460.814800001680851, 254535.005499999970198 ], [ 362476.089800000190735, 254540.407900001853704 ], [ 362488.961999997496605, 254543.890700001269579 ], [ 362499.433300003409386, 254545.243000000715256 ], [ 362515.555900000035763, 254545.797100000083447 ], [ 362518.770400002598763, 254547.089999999850988 ], [ 362520.323700003325939, 254554.068799998611212 ], [ 362518.67509999871254, 254558.277199998497963 ], [ 362513.686099998652935, 254575.968199998140335 ], [ 362504.679999999701977, 254591.937600001692772 ], [ 362498.166599996387959, 254599.272599998861551 ], [ 362490.843299999833107, 254607.02309999987483 ], [ 362486.77929999679327, 254610.789500001817942 ], [ 362478.658699996769428, 254617.478000000119209 ], [ 362442.997500002384186, 254638.717700000852346 ], [ 362428.392200000584126, 254649.364000000059605 ], [ 362421.889499999582767, 254655.432399999350309 ], [ 362418.635499998927116, 254658.783300001174212 ], [ 362416.191399998962879, 254661.718600001186132 ], [ 362411.304999999701977, 254667.378100000321865 ], [ 362411.285199999809265, 254669.699999999254942 ], [ 362407.149300001561642, 254681.909600000828505 ], [ 362404.669299997389317, 254689.066500000655651 ], [ 362403.042199999094009, 254690.741900000721216 ], [ 362399.754100002348423, 254698.103300001472235 ], [ 362397.313500002026558, 254700.616399999707937 ], [ 362394.039700001478195, 254706.289099998772144 ], [ 362390.79110000282526, 254709.006799999624491 ], [ 362389.16950000077486, 254710.0489999987185 ], [ 362381.075800001621246, 254713.571299999952316 ], [ 362362.51799999922514, 254714.897100001573563 ], [ 362338.256700001657009, 254723.142299998551607 ], [ 362334.236000001430511, 254721.842799998819828 ], [ 362331.154600001871586, 254704.930100001394749 ], [ 362332.824699997901917, 254698.188799999654293 ], [ 362336.107500001788139, 254691.46059999987483 ], [ 362350.687700003385544, 254683.769499998539686 ], [ 362355.518399998545647, 254684.653400000184774 ], [ 362357.894100002944469, 254689.739100001752377 ], [ 362365.986000001430511, 254686.427799999713898 ], [ 362364.411200001835823, 254681.98200000077486 ], [ 362365.266000002622604, 254676.289500001817942 ], [ 362374.180399999022484, 254671.085099998861551 ], [ 362371.012699998915195, 254664.304200001060963 ], [ 362362.913599997758865, 254668.459699999541044 ], [ 362336.184799998998642, 254682.384199999272823 ], [ 362330.515500001609325, 254685.293200001120567 ], [ 362325.661399997770786, 254687.153299998492002 ], [ 362304.706299997866154, 254685.926300000399351 ], [ 362295.035899996757507, 254685.213899999856949 ], [ 362278.10700000077486, 254684.653099998831749 ], [ 362275.688000001013279, 254684.633299998939037 ], [ 362264.376299999654293, 254687.285000000149012 ], [ 362260.335699997842312, 254688.307399999350309 ], [ 362249.814099997282028, 254692.865299999713898 ], [ 362227.089900001883507, 254709.989000000059605 ], [ 362230.273800000548363, 254714.870200000703335 ], [ 362233.488300003111362, 254716.163100000470877 ], [ 362237.532399997115135, 254714.718499999493361 ], [ 362237.559399999678135, 254711.552299998700619 ], [ 362253.789899997413158, 254699.441700000315905 ], [ 362261.888999998569489, 254695.286200001835823 ], [ 362269.162000000476837, 254693.445799998939037 ], [ 362272.38910000026226, 254693.261199999600649 ], [ 362286.105400003492832, 254692.317999999970198 ], [ 362298.991999998688698, 254694.112199999392033 ], [ 362315.111000001430511, 254695.088500000536442 ], [ 362319.131800003349781, 254696.387899998575449 ], [ 362322.328299999237061, 254699.791600000113249 ], [ 362326.930600002408028, 254727.482500001788139 ], [ 362320.449500001966953, 254731.018100000917912 ], [ 362315.586499996483326, 254733.933600001037121 ], [ 362310.705399997532368, 254738.959899999201298 ], [ 362308.252300001680851, 254742.950599998235703 ], [ 362292.732799999415874, 254766.254900000989437 ], [ 362291.901299998164177, 254769.203400000929832 ], [ 362289.455399997532368, 254772.349800001829863 ], [ 362287.821199998259544, 254774.869600001722574 ], [ 362283.712300002574921, 254783.912999998778105 ], [ 362281.259199999272823, 254787.9037000015378 ], [ 362272.271099999547005, 254801.762299999594688 ], [ 362270.633299998939037, 254804.704199999570847 ], [ 362267.346900001168251, 254811.854499999433756 ], [ 362265.698299996554852, 254816.062899999320507 ], [ 362265.620999999344349, 254825.139199998229742 ], [ 362266.396700002253056, 254828.734200000762939 ], [ 362268.781499996781349, 254832.764499999582767 ], [ 362274.387900002300739, 254837.243299998342991 ], [ 362281.635799996554852, 254838.3581000007689 ], [ 362301.820500001311302, 254835.356899999082088 ], [ 362302.612499997019768, 254837.052099999040365 ], [ 362287.137900002300739, 254855.079500000923872 ], [ 362282.242499999701977, 254861.79450000077486 ], [ 362281.414599999785423, 254864.320799998939037 ], [ 362279.791199997067451, 254865.574099998921156 ], [ 362278.144400000572205, 254869.571400001645088 ], [ 362270.792300000786781, 254880.699200000613928 ], [ 362256.944700002670288, 254897.051100000739098 ], [ 362250.449199996888638, 254902.275299999862909 ], [ 362248.015900000929832, 254903.944099999964237 ], [ 362243.982600003480911, 254904.12220000103116 ], [ 362242.378899998962879, 254903.053599998354912 ], [ 362239.970799997448921, 254901.767400000244379 ], [ 362237.576999999582767, 254898.792500000447035 ], [ 362232.847000002861023, 254886.088100001215935 ], [ 362230.449699997901917, 254883.535399999469519 ], [ 362228.046899996697903, 254881.615899998694658 ], [ 362225.640600003302097, 254880.118500001728535 ], [ 362219.188299998641014, 254880.276799999177456 ], [ 362213.542300000786781, 254880.441700000315905 ], [ 362212.768299996852875, 254876.63569999858737 ], [ 362221.878700003027916, 254848.423700001090765 ], [ 362223.565099999308586, 254839.782699998468161 ], [ 362224.39299999922514, 254837.256299998611212 ], [ 362224.445100001990795, 254831.135000001639128 ], [ 362226.264499999582767, 254806.874200001358986 ], [ 362225.487000003457069, 254803.490299999713898 ], [ 362223.100400000810623, 254799.671100001782179 ], [ 362219.929099999368191, 254793.312300000339746 ], [ 362212.720899999141693, 254787.553800001740456 ], [ 362207.0929000005126, 254785.607900001108646 ], [ 362191.011600002646446, 254780.199000000953674 ], [ 362182.14750000089407, 254779.493099998682737 ], [ 362176.488899998366833, 254781.135600000619888 ], [ 362167.594300001859665, 254784.018100000917912 ], [ 362153.813299998641014, 254792.560100000351667 ], [ 362151.380000002682209, 254794.228999998420477 ], [ 362149.754799999296665, 254795.693300001323223 ], [ 362139.990900002419949, 254805.956999998539686 ], [ 362129.388400003314018, 254820.0135000012815 ], [ 362126.125299997627735, 254824.419700000435114 ], [ 362120.418200001120567, 254831.761300001293421 ], [ 362104.959799997508526, 254847.888999998569489 ], [ 362083.785300001502037, 254872.413600001484156 ], [ 362064.244999997317791, 254894.418499998748302 ], [ 362060.177500002086163, 254898.607099998742342 ], [ 362052.053199999034405, 254905.717799998819828 ], [ 362032.592000000178814, 254918.435199998319149 ], [ 362044.724500000476837, 254914.101500000804663 ], [ 362063.305600002408028, 254910.031700000166893 ], [ 362062.526299998164177, 254906.859000001102686 ], [ 362069.838799998164177, 254900.374899998307228 ], [ 362110.557300001382828, 254853.423200000077486 ], [ 362118.695900000631809, 254844.6239 ], [ 362122.763400003314018, 254840.435300000011921 ], [ 362134.165100000798702, 254827.229699999094009 ], [ 362150.48369999974966, 254804.776299998164177 ], [ 362156.167499996721745, 254800.178800001740456 ], [ 362160.22240000218153, 254797.467700000852346 ], [ 362172.381899997591972, 254789.9679000005126 ], [ 362180.466600000858307, 254787.500900000333786 ], [ 362191.749499998986721, 254788.226500000804663 ], [ 362211.038099996745586, 254795.772700000554323 ], [ 362215.836400002241135, 254800.456000000238419 ], [ 362216.615800000727177, 254803.628800000995398 ], [ 362217.404100000858307, 254805.746199999004602 ], [ 362218.174400001764297, 254809.974399998784065 ], [ 362218.034199997782707, 254826.438499998301268 ], [ 362217.161300003528595, 254834.241799999028444 ], [ 362214.620099999010563, 254848.575399998575449 ], [ 362212.984099999070168, 254851.306200001388788 ], [ 362203.871899999678135, 254879.729299999773502 ], [ 362204.645900003612041, 254883.535300001502037 ], [ 362204.613499999046326, 254887.334699999541044 ], [ 362207.822599999606609, 254889.260800000280142 ], [ 362211.047799997031689, 254889.287200000137091 ], [ 362219.936999998986721, 254887.037900000810623 ], [ 362223.965000003576279, 254887.493099998682737 ], [ 362225.564999997615814, 254888.983800001442432 ], [ 362231.889700002968311, 254903.812199998646975 ], [ 362233.487899996340275, 254905.513999998569489 ], [ 362235.883500002324581, 254908.277800001204014 ], [ 362240.699799999594688, 254910.850400000810623 ], [ 362248.759300000965595, 254911.338500000536442 ], [ 362258.479999996721745, 254906.140700001269579 ], [ 362266.620399996638298, 254897.130300000309944 ], [ 362274.76630000025034, 254887.486699998378754 ], [ 362276.396899998188019, 254885.38910000026226 ], [ 362294.362300001084805, 254858.938400000333786 ], [ 362302.509999997913837, 254849.083599999547005 ], [ 362311.481899999082088, 254837.124699998646975 ], [ 362313.135899998247623, 254832.283100001513958 ], [ 362317.181800000369549, 254830.627500001341105 ], [ 362321.251199997961521, 254826.227800000458956 ], [ 362334.3175999969244, 254806.914200000464916 ], [ 362335.94820000231266, 254804.816599998623133 ], [ 362341.637299999594688, 254799.585799999535084 ], [ 362376.46339999884367, 254781.71680000051856 ], [ 362407.240000002086163, 254765.925599999725819 ], [ 362419.401199996471405, 254758.214600000530481 ], [ 362425.102899998426437, 254751.506299998611212 ], [ 362434.0945999994874, 254737.225499998778105 ], [ 362438.194499999284744, 254729.237500000745058 ], [ 362440.685400001704693, 254720.8141999989748 ], [ 362443.961000002920628, 254714.930399999022484 ], [ 362445.593400001525879, 254712.621700000017881 ], [ 362448.033900000154972, 254710.108600001782179 ], [ 362460.220299996435642, 254699.442499998956919 ], [ 362466.701399996876717, 254695.907000001519918 ], [ 362479.636500000953674, 254692.002099998295307 ], [ 362490.959100000560284, 254688.083999998867512 ], [ 362518.456399999558926, 254678.598700001835823 ], [ 362537.834899999201298, 254675.590900000184774 ], [ 362558.008900001645088, 254673.856199998408556 ], [ 362562.836000002920628, 254675.162300001829863 ], [ 362564.412600003182888, 254679.396999999880791 ], [ 362573.289300002157688, 254678.625300001353025 ], [ 362574.158500000834465, 254671.244199998676777 ], [ 362579.057499997317791, 254664.107099998742342 ], [ 362537.104099996387959, 254666.719000000506639 ], [ 362514.496799997985363, 254670.122600000351667 ], [ 362491.844499997794628, 254678.803100001066923 ], [ 362461.121899999678135, 254688.261999998241663 ], [ 362448.138199999928474, 254697.86600000038743 ], [ 362445.703100003302097, 254699.745900001376867 ], [ 362437.573399998247623, 254707.489799998700619 ], [ 362435.9391999989748, 254710.00959999859333 ], [ 362433.482500001788139, 254714.422400001436472 ], [ 362432.659999996423721, 254716.315499998629093 ], [ 362427.707099996507168, 254729.785000000149012 ], [ 362418.715300001204014, 254744.065799999982119 ], [ 362416.265799999237061, 254747.634300000965595 ], [ 362413.009999997913837, 254751.196199998259544 ], [ 362411.386600002646446, 254752.449499998241663 ], [ 362396.799300000071526, 254760.984999999403954 ], [ 362355.49210000038147, 254782.389499999582767 ], [ 362337.674099996685982, 254791.531800001859665 ], [ 362336.054300002753735, 254792.362900000065565 ], [ 362331.995800003409386, 254795.496100001037121 ], [ 362327.919200003147125, 254800.740100000053644 ], [ 362313.227600000798702, 254821.518100000917912 ], [ 362306.728500001132488, 254827.16440000012517 ], [ 362279.281599998474121, 254830.739500001072884 ], [ 362273.67509999871254, 254826.260600000619888 ], [ 362272.933600001037121, 254818.655200000852346 ], [ 362274.58389999717474, 254814.235700000077486 ], [ 362279.506300002336502, 254804.354600001126528 ], [ 362286.032399997115135, 254795.542100001126528 ], [ 362296.688799999654293, 254775.153299998492002 ], [ 362299.968000002205372, 254768.847300000488758 ], [ 362315.489399999380112, 254745.331799998879433 ], [ 362317.118199996650219, 254743.445300001651049 ], [ 362320.368600003421307, 254740.516600001603365 ], [ 362324.423500001430511, 254737.805599998682737 ], [ 362327.663199998438358, 254736.143399998545647 ], [ 362336.57039999961853, 254731.783300001174212 ], [ 362362.447899997234344, 254723.129200000315905 ], [ 362383.435400001704693, 254720.556699998676777 ], [ 362389.095799997448921, 254718.703200001269579 ], [ 362395.576800003647804, 254715.167700000107288 ], [ 362401.27139999717474, 254709.303599998354912 ], [ 362410.266699999570847, 254694.600699998438358 ], [ 362411.904500000178814, 254691.6587999984622 ], [ 362413.547700002789497, 254688.083700001239777 ], [ 362417.692500002682209, 254674.81870000064373 ], [ 362420.154600001871586, 254669.772599998861551 ], [ 362425.865299999713898, 254662.008900001645088 ], [ 362429.114000000059605, 254659.291299998760223 ], [ 362440.483300000429153, 254649.885099999606609 ], [ 362463.992200002074242, 254635.300999999046326 ], [ 362481.824600003659725, 254624.469999998807907 ], [ 362493.192100003361702, 254615.274999998509884 ], [ 362499.691100001335144, 254609.628600001335144 ], [ 362507.021700002253056, 254601.0337999984622 ], [ 362509.469400003552437, 254597.676300000399351 ], [ 362514.370200000703335, 254590.328200001269579 ], [ 362517.640399999916553, 254585.077599998563528 ], [ 362518.462899997830391, 254583.184500001370907 ], [ 362526.716600000858307, 254560.8761 ], [ 362527.549900002777576, 254557.716499999165535 ], [ 362527.666799999773502, 254543.996399998664856 ], [ 362528.505500003695488, 254540.203600000590086 ], [ 362530.155799999833107, 254535.784099999815226 ], [ 362531.791900001466274, 254533.053300000727177 ], [ 362535.870200000703335, 254527.598299998790026 ], [ 362538.301700003445148, 254526.140500001609325 ], [ 362548.907799996435642, 254511.661899998784065 ], [ 362558.693300001323223, 254498.865200001746416 ], [ 362559.517599999904633, 254496.760999999940395 ], [ 362561.142800003290176, 254495.296700000762939 ], [ 362561.96169999986887, 254493.825699999928474 ], [ 362569.288599997758865, 254485.653099998831749 ], [ 362577.416500002145767, 254478.120200000703335 ], [ 362595.265000000596046, 254465.389600001275539 ], [ 362598.490299999713898, 254465.416000001132488 ], [ 362600.083099998533726, 254467.750999998301268 ], [ 362604.13629999756813, 254465.2511 ], [ 362602.638700000941753, 254451.728900000452995 ], [ 362588.042400002479553, 254461.319699998944998 ], [ 362579.932499997317791, 254466.741799999028444 ], [ 362574.252400003373623, 254470.917100001126528 ], [ 362571.003700003027916, 254473.634799998253584 ], [ 362563.684000000357628, 254480.963100001215935 ], [ 362557.177699998021126, 254487.45380000025034 ], [ 362541.686999998986721, 254507.380899999290705 ], [ 362531.071900002658367, 254522.914900001138449 ], [ 362523.7449000030756, 254531.087600000202656 ], [ 362521.324199996888638, 254531.278900001198053 ], [ 362521.304399996995926, 254533.60080000013113 ], [ 362519.671999998390675, 254535.909400001168251 ], [ 362516.4324000030756, 254537.571699999272823 ], [ 362510.781000003218651, 254538.369800001382828 ], [ 362501.114200003445148, 254537.235199999064207 ], [ 362482.588799998164177, 254534.761500000953674 ], [ 362459.272299997508526, 254526.760200001299381 ], [ 362448.80460000038147, 254524.985800001770258 ], [ 362431.862999998033047, 254525.90260000154376 ], [ 362415.699000000953674, 254530.203299999237061 ], [ 362403.548600003123283, 254536.647799998521805 ], [ 362396.237800002098083, 254542.920699998736382 ], [ 362401.023599997162819, 254549.081599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8762236, "LATITUDE": 18.32535145, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2452.1766890899999, "SHAPE_Area": 12098.511061900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364466.52139999717474, 254882.204900000244379 ], [ 364461.415807151875924, 254879.766348543693312 ], [ 364456.075300000607967, 254877.89750000089407 ], [ 364448.031900003552437, 254875.50959999859333 ], [ 364439.994000002741814, 254872.488600000739098 ], [ 364435.175899997353554, 254870.127099998295307 ], [ 364420.725199997425079, 254862.62049999833107 ], [ 364426.263700000941753, 254875.417399998754263 ], [ 364446.285099998116493, 254883.017299998551607 ], [ 364457.605200000107288, 254887.620299998670816 ], [ 364465.630500003695488, 254892.118999999016523 ], [ 364473.611000001430511, 254901.894600000232458 ], [ 364481.596799999475479, 254911.037000000476837 ], [ 364484.744699999690056, 254920.139800000935793 ], [ 364485.462899997830391, 254930.489199999719858 ], [ 364485.441299997270107, 254933.022199999541044 ], [ 364485.412500001490116, 254936.399399999529123 ], [ 364486.159500002861023, 254943.371599998325109 ], [ 364488.499300003051758, 254952.678899999707937 ], [ 364489.23369999974966, 254961.128699999302626 ], [ 364488.362700000405312, 254968.720899999141693 ], [ 364487.493400000035763, 254976.102099999785423 ], [ 364487.459200002253056, 254980.11259999871254 ], [ 364486.626000002026558, 254983.272100001573563 ], [ 364481.676600001752377, 254996.319400001317263 ], [ 364479.230700001120567, 254999.465799998492002 ], [ 364475.967699997127056, 255003.872099999338388 ], [ 364472.70830000191927, 255007.856199998408556 ], [ 364466.221799999475479, 255012.024999998509884 ], [ 364433.809299997985363, 255030.546999998390675 ], [ 364403.047100000083447, 255044.649599999189377 ], [ 364353.687600001692772, 255064.721700001507998 ], [ 364342.356100000441074, 255069.695199999958277 ], [ 364305.132700003683567, 255085.011500000953674 ], [ 364307.474299997091293, 255094.107599999755621 ], [ 364321.23369999974966, 255088.098499998450279 ], [ 364333.3716000020504, 255083.131599999964237 ], [ 364352.791400000452995, 255075.269000001251698 ], [ 364377.152400001883507, 255065.112700000405312 ], [ 364423.195900000631809, 255045.870000001043081 ], [ 364448.304899998009205, 255032.776599999517202 ], [ 364453.144599996507168, 255032.605099998414516 ], [ 364460.824600003659725, 255035.155799999833107 ], [ 364464.351999998092651, 255042.195999998599291 ], [ 364485.049999997019768, 255073.607299998402596 ], [ 364489.02759999781847, 255079.972600001841784 ], [ 364490.622299998998642, 255082.096599999815226 ], [ 364531.298299998044968, 255134.780799999833107 ], [ 364534.509099997580051, 255136.495799999684095 ], [ 364539.327200002968311, 255138.857200000435114 ], [ 364543.364200003445148, 255138.256999999284744 ], [ 364561.747500002384186, 255157.405900001525879 ], [ 364566.545800000429153, 255162.089200001209974 ], [ 364580.15429999679327, 255173.810699999332428 ], [ 364592.977899998426437, 255182.99269999936223 ], [ 364616.240500003099442, 255197.326400000602007 ], [ 364641.103100001811981, 255213.150800000876188 ], [ 364647.519500002264977, 255217.214099999517202 ], [ 364654.709799997508526, 255225.083399999886751 ], [ 364664.299199998378754, 255235.294399999082088 ], [ 364667.484899997711182, 255239.964499998837709 ], [ 364670.665200002491474, 255245.267900001257658 ], [ 364672.266999997198582, 255246.547499999403954 ], [ 364677.821299999952316, 255257.147700000554323 ], [ 364681.793499998748302, 255264.146299999207258 ], [ 364684.935999996960163, 255273.88230000063777 ], [ 364690.522699996829033, 255280.68299999833107 ], [ 364702.462700001895428, 255298.934799998998642 ], [ 364706.427799999713898, 255306.777699999511242 ], [ 364708.747800000011921, 255318.406800001859665 ], [ 364709.534299999475479, 255320.735300000756979 ], [ 364718.988899998366833, 255346.777199998497963 ], [ 364725.369300000369549, 255355.062100000679493 ], [ 364730.981100000441074, 255358.907699998468161 ], [ 364739.00110000371933, 255364.039599999785423 ], [ 364743.784999996423721, 255370.411499999463558 ], [ 364741.103500001132488, 255401.209199998527765 ], [ 364737.995399996638298, 255424.145599998533726 ], [ 364741.697599999606609, 255426.123100001364946 ], [ 364748.720600001513958, 255429.874299999326468 ], [ 364750.701899997889996, 255410.364799998700619 ], [ 364751.695299997925758, 255388.419199999421835 ], [ 364752.593299999833107, 255377.660799998790026 ], [ 364754.259900003671646, 255371.341600000858307 ], [ 364759.153499998152256, 255364.837799999862909 ], [ 364764.819200001657009, 255362.350999999791384 ], [ 364772.104800000786781, 255359.03319999948144 ], [ 364786.713799998164177, 255347.964800000190735 ], [ 364803.729000002145767, 255338.393699999898672 ], [ 364806.970499999821186, 255336.520399998873472 ], [ 364811.028999999165535, 255333.387200001627207 ], [ 364817.547799997031689, 255325.418999999761581 ], [ 364821.62610000371933, 255319.964000001549721 ], [ 364823.263899996876717, 255317.022100001573563 ], [ 364824.943099997937679, 255309.225299999117851 ], [ 364825.859099999070168, 255296.356100000441074 ], [ 364823.483300000429153, 255291.270399998873472 ], [ 364822.700400002300739, 255288.519799999892712 ], [ 364820.317400000989437, 255284.278400000184774 ], [ 364817.94879999756813, 255278.348400000482798 ], [ 364813.983800001442432, 255270.505499999970198 ], [ 364805.994400002062321, 255261.785300001502037 ], [ 364795.607600003480911, 255250.512299999594688 ], [ 364781.198299996554852, 255238.151000000536442 ], [ 364776.381999999284744, 255235.578400000929832 ], [ 364754.712300002574921, 255223.579799998551607 ], [ 364737.054300002753735, 255213.936099998652935 ], [ 364733.042499996721745, 255211.581199999898672 ], [ 364721.811700001358986, 255204.734299998730421 ], [ 364708.975400000810623, 255197.029899999499321 ], [ 364690.525600001215935, 255185.690900001674891 ], [ 364672.876599997282028, 255174.991799999028444 ], [ 364660.796300001442432, 255173.204199999570847 ], [ 364654.333200000226498, 255174.628899998962879 ], [ 364645.418799996376038, 255179.833299998193979 ], [ 364642.173799999058247, 255182.128800000995398 ], [ 364638.111699998378754, 255185.684099998325109 ], [ 364636.47749999910593, 255188.203899998217821 ], [ 364634.834299996495247, 255191.778999999165535 ], [ 364634.013599999248981, 255193.461100000888109 ], [ 364627.559500001370907, 255193.830400001257658 ], [ 364618.736800000071526, 255188.269799999892712 ], [ 364599.489600002765656, 255175.86879999935627 ], [ 364578.658500000834465, 255160.077399998903275 ], [ 364565.852799996733665, 255148.784600000828505 ], [ 364563.453699998557568, 255146.442999999970198 ], [ 364544.276600003242493, 255125.809999998658895 ], [ 364523.497699998319149, 255103.897199999541044 ], [ 364519.505699999630451, 255099.220499999821186 ], [ 364497.186099998652935, 255068.851500000804663 ], [ 364472.479900002479553, 255034.663199998438358 ], [ 364470.32039999961853, 255026.883299998939037 ], [ 364473.385099999606609, 255023.060499999672174 ], [ 364480.694099999964237, 255016.998599998652935 ], [ 364484.76519999653101, 255012.387800000607967 ], [ 364489.653399996459484, 255006.517200000584126 ], [ 364492.928999997675419, 255000.633400000631809 ], [ 364497.854999996721745, 254990.330099999904633 ], [ 364498.882500000298023, 254964.374000001698732 ], [ 364495.844200000166893, 254942.395399998873472 ], [ 364494.389899998903275, 254923.807300001382828 ], [ 364493.63570000231266, 254917.679400000721216 ], [ 364492.062600001692772, 254913.02250000089407 ], [ 364489.697599999606609, 254906.670299999415874 ], [ 364488.905699998140335, 254904.975099999457598 ], [ 364484.132600001990795, 254897.33669999986887 ], [ 364476.940499998629093, 254889.678399998694658 ], [ 364466.52139999717474, 254882.204900000244379 ] ], [ [ 364652.623499996960163, 255186.013999998569489 ], [ 364658.294600002467632, 255182.894000001251698 ], [ 364669.575800001621246, 255183.830699998885393 ], [ 364707.283699996769428, 255206.304200001060963 ], [ 364732.956200003623962, 255221.712999999523163 ], [ 364737.770700000226498, 255224.496599998325109 ], [ 364763.457599997520447, 255238.216899998486042 ], [ 364773.082999996840954, 255244.206300001591444 ], [ 364776.290299996733665, 255246.343499999493361 ], [ 364791.500600002706051, 255259.3445999994874 ], [ 364808.2550999969244, 255280.379999998956919 ], [ 364810.634499996900558, 255285.043600000441074 ], [ 364814.610299997031689, 255291.620000001043081 ], [ 364816.964500002563, 255299.238600000739098 ], [ 364816.061099998652935, 255310.630300000309944 ], [ 364808.701800003647804, 255322.602400001138449 ], [ 364803.012599997222424, 255327.833200000226498 ], [ 364798.952299997210503, 255331.177400000393391 ], [ 364782.752300001680851, 255339.699700001627207 ], [ 364777.883900001645088, 255343.248399998992682 ], [ 364771.386600002646446, 255348.683699999004602 ], [ 364760.85419999808073, 255354.508099999278784 ], [ 364747.92620000243187, 255357.56870000064373 ], [ 364739.085600003600121, 255354.118900001049042 ], [ 364732.674599997699261, 255349.4222999997437 ], [ 364727.087999999523163, 255342.621599998325109 ], [ 364723.148100003600121, 255331.823600001633167 ], [ 364720.815499998629093, 255321.671999998390675 ], [ 364716.895400002598763, 255308.552099999040365 ], [ 364712.154700003564358, 255297.11430000141263 ], [ 364696.226199999451637, 255273.763599999248981 ], [ 364694.629799999296665, 255271.850699998438358 ], [ 364693.844999998807907, 255269.311200000345707 ], [ 364688.306900002062321, 255256.811299998313189 ], [ 364685.925800003111362, 255252.358899999409914 ], [ 364682.738300003111362, 255247.89979999884963 ], [ 364681.957099996507168, 255244.938099998980761 ], [ 364676.374099999666214, 255237.715199999511242 ], [ 364673.987499997019768, 255233.896000001579523 ], [ 364670.008100003004074, 255227.741700001060963 ], [ 364658.021300002932549, 255214.978000000119209 ], [ 364653.224799998104572, 255210.083599999547005 ], [ 364645.203000001609325, 255205.162799999117851 ], [ 364643.606600001454353, 255203.249899998307228 ], [ 364643.671300001442432, 255195.651000000536442 ], [ 364645.321699999272823, 255191.231600001454353 ], [ 364649.380199998617172, 255188.098400000482798 ], [ 364652.623499996960163, 255186.013999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": "D9-4669-T89", "PARCEL_NAM": "3E", "ACRE": ".22", "LONGITUDE": -64.87469038, "LATITUDE": 18.32790072, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.788437928699999, "SHAPE_Area": 199.473854456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364748.720600001513958, 255429.874299999326468 ], [ 364749.299099996685982, 255434.157800000160933 ], [ 364750.241400003433228, 255438.648899998515844 ], [ 364751.579099997878075, 255442.753600001335144 ], [ 364753.119599997997284, 255446.080299999564886 ], [ 364754.475699998438358, 255448.041000001132488 ], [ 364755.650499999523163, 255448.245900001376867 ], [ 364757.997000001370907, 255449.0456000007689 ], [ 364760.74379999935627, 255448.874099999666214 ], [ 364762.123099997639656, 255448.106100000441074 ], [ 364763.708400003612041, 255446.170400001108646 ], [ 364766.280799999833107, 255443.463500000536442 ], [ 364768.573399998247623, 255440.478300001472235 ], [ 364767.38459999859333, 255439.843400001525879 ], [ 364753.738399997353554, 255432.554499998688698 ], [ 364749.724799998104572, 255430.410700000822544 ], [ 364748.720600001513958, 255429.874299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-7628-T005", "PARCEL_NAM": "11-7", "ACRE": null, "LONGITUDE": -64.8708887, "LATITUDE": 18.33400467, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.50647069600001, "SHAPE_Area": 836.98262541899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365129.477899998426437, 256109.575500000268221 ], [ 365138.227799996733665, 256109.767400000244379 ], [ 365150.593099996447563, 256111.963199999183416 ], [ 365164.144500002264977, 256112.07880000025034 ], [ 365176.755300000309944, 256112.883200000971556 ], [ 365180.954899996519089, 256113.615800000727177 ], [ 365181.836000002920628, 256119.894099999219179 ], [ 365179.1925999969244, 256128.464800000190735 ], [ 365165.969800002872944, 256144.609499998390675 ], [ 365161.481100000441074, 256150.377399999648333 ], [ 365154.439400002360344, 256159.219799999147654 ], [ 365157.02250000089407, 256164.357099998742342 ], [ 365170.618900001049042, 256147.436099998652935 ], [ 365184.556500002741814, 256129.671799998730421 ], [ 365189.546300001442432, 256119.959899999201298 ], [ 365190.078900001943111, 256112.300200000405312 ], [ 365185.210100002586842, 256107.845800001174212 ], [ 365174.927799999713898, 256107.990299999713898 ], [ 365158.804399996995926, 256108.08500000089407 ], [ 365141.999799996614456, 256105.851399999111891 ], [ 365129.640500001609325, 256102.95890000090003 ], [ 365115.629699997603893, 256101.910399999469519 ], [ 365107.685900002717972, 256101.842599999159575 ], [ 365105.184500001370907, 256101.942499998956919 ], [ 365097.557099997997284, 256110.205600000917912 ], [ 365129.477899998426437, 256109.575500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88710153, "LATITUDE": 18.3152146, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1117.26059117, "SHAPE_Area": 3519.31004003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363477.787000000476837, 254045.148200001567602 ], [ 363481.075099997222424, 254037.786800000816584 ], [ 363486.836199998855591, 254024.112900000065565 ], [ 363488.465000003576279, 254022.226399999111891 ], [ 363490.946900002658367, 254014.858399998396635 ], [ 363492.575699999928474, 254012.971900001168251 ], [ 363495.057599999010563, 254005.603900000452995 ], [ 363496.68639999628067, 254003.717399999499321 ], [ 363506.595899999141693, 253976.356300000101328 ], [ 363507.504699997603893, 253964.331500001251698 ], [ 363505.20269999653101, 253950.591499999165535 ], [ 363500.519400000572205, 253932.39919999986887 ], [ 363497.49379999935627, 253908.942999999970198 ], [ 363496.131099998950958, 253879.589899998158216 ], [ 363496.996799997985363, 253872.630800001323223 ], [ 363496.318099997937679, 253857.637699998915195 ], [ 363489.057700000703335, 253858.000399999320507 ], [ 363491.050499998033047, 253908.045899998396635 ], [ 363494.846500001847744, 253935.730200000107288 ], [ 363501.874899998307228, 253962.596599999815226 ], [ 363500.973300002515316, 253973.777199998497963 ], [ 363494.348399996757507, 253994.199099998921156 ], [ 363486.963899999856949, 254009.126299999654293 ], [ 363486.126999996602535, 254012.708000000566244 ], [ 363484.483800001442432, 254016.283100001513958 ], [ 363482.854999996721745, 254018.169700000435114 ], [ 363481.193800002336502, 254023.855599999427795 ], [ 363479.550599999725819, 254027.430700000375509 ], [ 363477.921800002455711, 254029.317200001329184 ], [ 363474.631800003349781, 254036.889699999243021 ], [ 363470.555299997329712, 254042.133699998259544 ], [ 363465.251500003039837, 254041.872800000011921 ], [ 363460.224399998784065, 254036.581199999898672 ], [ 363456.255699999630451, 254023.352000001817942 ], [ 363452.022299997508526, 254012.239399999380112 ], [ 363446.466099999845028, 254002.185300000011921 ], [ 363440.380599997937679, 253992.131099998950958 ], [ 363426.357699997723103, 253975.46229999884963 ], [ 363416.038900002837181, 253962.762299999594688 ], [ 363411.276399999856949, 253954.2956000007689 ], [ 363411.276399999856949, 253945.035100001841784 ], [ 363417.097300000488758, 253937.362199999392033 ], [ 363423.976400002837181, 253931.012200001627207 ], [ 363427.680600002408028, 253926.249699998646975 ], [ 363430.855599999427795, 253921.222600001841784 ], [ 363434.295199997723103, 253918.047600001096725 ], [ 363430.855599999427795, 253913.285100001841784 ], [ 363430.448600001633167, 253913.352099999785423 ], [ 363425.299400001764297, 253916.460099998861551 ], [ 363421.065999999642372, 253921.751800000667572 ], [ 363418.931900002062321, 253925.593199998140335 ], [ 363408.36599999666214, 253937.362199999392033 ], [ 363404.397200003266335, 253942.918499998748302 ], [ 363403.603500001132488, 253952.443500000983477 ], [ 363404.926399998366833, 253957.735199999064207 ], [ 363411.011799998581409, 253965.672699999064207 ], [ 363417.891000002622604, 253973.610199999064207 ], [ 363426.886900000274181, 253984.458099998533726 ], [ 363433.501500003039837, 253993.453999999910593 ], [ 363439.586900003254414, 254002.978999998420477 ], [ 363443.555600002408028, 254011.974899999797344 ], [ 363448.318199999630451, 254022.293600000441074 ], [ 363451.493199996650219, 254029.437399998307228 ], [ 363454.668200001120567, 254036.581199999898672 ], [ 363458.901500001549721, 254048.487399999052286 ], [ 363460.980099998414516, 254058.838700000196695 ], [ 363458.917400002479553, 254065.065099999308586 ], [ 363456.583700001239777, 254073.05009999871254 ], [ 363441.607900001108646, 254127.17850000038743 ], [ 363431.696599997580051, 254154.750700000673532 ], [ 363428.313100002706051, 254173.299199998378754 ], [ 363423.347599998116493, 254188.246199999004602 ], [ 363422.505300000309944, 254192.461199998855591 ], [ 363423.938100002706051, 254213.582299999892712 ], [ 363423.004100002348423, 254228.562300000339746 ], [ 363418.943800002336502, 254231.906500000506639 ], [ 363429.407899998128414, 254234.103100001811981 ], [ 363428.650100000202656, 254228.397399999201298 ], [ 363430.348999999463558, 254218.278799999505281 ], [ 363428.113499999046326, 254196.728999998420477 ], [ 363430.634999997913837, 254184.717300001531839 ], [ 363434.767200000584126, 254172.929800000041723 ], [ 363438.150700002908707, 254154.381299998611212 ], [ 363442.270400002598763, 254144.071400001645088 ], [ 363447.232299998402596, 254129.546599999070168 ], [ 363463.858499996364117, 254070.998700000345707 ], [ 363464.718699999153614, 254064.672899998724461 ], [ 363467.191600002348423, 254058.360300000756979 ], [ 363477.787000000476837, 254045.148200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "d9-899-t70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86941286, "LATITUDE": 18.34289803, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.48680996300001, "SHAPE_Area": 356.874518626 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365310.747299998998642, 257075.156899999827147 ], [ 365290.248099997639656, 257085.758499998599291 ], [ 365291.325099997222424, 257120.26410000026226 ], [ 365327.309600003063679, 257129.306699998676777 ], [ 365324.296300001442432, 257124.733800001442432 ], [ 365295.092399999499321, 257116.548799999058247 ], [ 365294.750299997627735, 257088.262600000947714 ], [ 365310.348399996757507, 257080.331900000572205 ], [ 365310.747299998998642, 257075.156899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "G9-949-T67", "PARCEL_NAM": "4G REM", "ACRE": "0.17", "LONGITUDE": -64.86763698, "LATITUDE": 18.34430392, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.424726639, "SHAPE_Area": 252.491685674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365499.973700001835823, 257222.891800001263618 ], [ 365499.699100002646446, 257222.822599999606609 ], [ 365491.459700003266335, 257243.442299999296665 ], [ 365477.39639999717474, 257285.123700000345707 ], [ 365483.965400002896786, 257286.190499998629093 ], [ 365494.634199999272823, 257244.004599999636412 ], [ 365499.973700001835823, 257222.891800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91696664, "LATITUDE": 18.31919441, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 426.70570511900002, "SHAPE_Area": 1653.49572741 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360380.189400002360344, 254417.915300000458956 ], [ 360379.0320999994874, 254409.676100000739098 ], [ 360355.62389999628067, 254412.439800001680851 ], [ 360342.715700000524521, 254413.178599998354912 ], [ 360318.529899999499321, 254412.558400001376867 ], [ 360306.420900002121925, 254414.14809999987483 ], [ 360303.9983000010252, 254414.550400000065565 ], [ 360288.638800002634525, 254419.068799998611212 ], [ 360271.636100001633167, 254427.162300001829863 ], [ 360269.206399999558926, 254428.408900000154972 ], [ 360261.890299998223782, 254435.315200001001358 ], [ 360257.792199999094009, 254443.092099998146296 ], [ 360253.526799999177456, 254470.499299999326468 ], [ 360252.688199996948242, 254474.292100001126528 ], [ 360248.546899996697903, 254487.135000001639128 ], [ 360247.708200000226498, 254490.927799999713898 ], [ 360254.295999996364117, 254525.200899999588728 ], [ 360253.215800002217293, 254507.015999998897314 ], [ 360254.070600003004074, 254501.323399998247623 ], [ 360256.548900000751019, 254494.377599999308586 ], [ 360262.369300000369549, 254473.738099999725819 ], [ 360264.068199999630451, 254463.619500000029802 ], [ 360264.984200000762939, 254450.750300001353025 ], [ 360267.464299999177456, 254443.593400001525879 ], [ 360271.538999997079372, 254438.560499999672174 ], [ 360273.977799996733665, 254436.258499998599291 ], [ 360278.847999997437, 254432.498599998652935 ], [ 360294.216499999165535, 254426.924899999052286 ], [ 360300.686800003051758, 254424.655799999833107 ], [ 360316.031900003552437, 254421.826099999248981 ], [ 360363.618699997663498, 254420.526799999177456 ], [ 360380.189400002360344, 254417.915300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-6871-T000", "PARCEL_NAM": "3J-", "ACRE": null, "LONGITUDE": -64.87756056000001, "LATITUDE": 18.32481179, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.32588016099999, "SHAPE_Area": 635.44194470699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364429.038900002837181, 255094.027300000190735 ], [ 364432.437299996614456, 255103.871100001037121 ], [ 364436.479000002145767, 255101.969099998474121 ], [ 364439.331900000572205, 255100.304900001734495 ], [ 364444.08669999986887, 255101.018199998885393 ], [ 364446.226400002837181, 255104.584300000220537 ], [ 364447.415100000798702, 255107.91270000115037 ], [ 364450.505800001323223, 255110.527899999171495 ], [ 364457.875799998641014, 255112.905299998819828 ], [ 364468.574299998581409, 255115.045000001788139 ], [ 364476.419799998402596, 255114.331799998879433 ], [ 364476.895300000905991, 255106.723999999463558 ], [ 364469.525200001895428, 255108.388199999928474 ], [ 364463.106200002133846, 255108.388199999928474 ], [ 364458.113600000739098, 255106.96169999986887 ], [ 364452.645499996840954, 255103.395599998533726 ], [ 364451.218999996781349, 255100.067200001329184 ], [ 364452.170000001788139, 255096.500999998301268 ], [ 364457.4003000035882, 255092.459399998188019 ], [ 364486.483400002121925, 255075.901200000196695 ], [ 364485.049999997019768, 255073.607299998402596 ], [ 364483.009400002658367, 255070.510400000959635 ], [ 364474.280100002884865, 255076.530600000172853 ], [ 364465.008100003004074, 255081.998700000345707 ], [ 364456.211599998176098, 255087.229100000113249 ], [ 364446.701899997889996, 255090.795200001448393 ], [ 364437.9054000005126, 255092.69709999859333 ], [ 364435.039300002157688, 255092.198399998247623 ], [ 364429.038900002837181, 255094.027300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84639892, "LATITUDE": 18.32263766, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.79583280099999, "SHAPE_Area": 908.73989908700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367750.846000000834465, 254883.965399999171495 ], [ 367749.229800000786781, 254884.374299999326468 ], [ 367743.580200001597404, 254884.961399998515844 ], [ 367725.096199996769428, 254877.63289999961853 ], [ 367703.35809999704361, 254873.655299998819828 ], [ 367705.696099996566772, 254883.173700001090765 ], [ 367725.015299998223782, 254887.131499998271465 ], [ 367743.50110000371933, 254894.2489 ], [ 367751.569600000977516, 254893.681600000709295 ], [ 367769.357100002467632, 254888.127700001001358 ], [ 367781.469700001180172, 254886.115899998694658 ], [ 367805.668099999427795, 254885.258400000631809 ], [ 367798.486800000071526, 254876.333700001239777 ], [ 367779.932599999010563, 254877.237399999052286 ], [ 367765.395599998533726, 254879.86259999871254 ], [ 367750.846000000834465, 254883.965399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84576016, "LATITUDE": 18.32311485, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.538443786, "SHAPE_Area": 348.077155791 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367811.133799999952316, 254949.142200000584126 ], [ 367813.103699997067451, 254958.99100000038743 ], [ 367818.917300000786781, 254960.203600000590086 ], [ 367822.236599996685982, 254949.801100000739098 ], [ 367825.312399998307228, 254936.454300001263618 ], [ 367825.72749999910593, 254919.607299998402596 ], [ 367823.929799996316433, 254909.695300001651049 ], [ 367819.137999996542931, 254913.232999999076128 ], [ 367818.995999999344349, 254929.908300001174212 ], [ 367817.302400000393391, 254939.3935999982059 ], [ 367813.989100001752377, 254949.710099998861551 ], [ 367811.133799999952316, 254949.142200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-697-T006", "PARCEL_NAM": "F", "ACRE": null, "LONGITUDE": -64.85984831, "LATITUDE": 18.32717187, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.811444173500007, "SHAPE_Area": 106.863176313 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366322.836499996483326, 255357.330200001597404 ], [ 366320.207500003278255, 255360.146899998188019 ], [ 366330.715999998152256, 255387.7804000005126 ], [ 366331.334799997508526, 255388.561999998986721 ], [ 366334.234999999403954, 255387.595199998468161 ], [ 366322.836499996483326, 255357.330200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86166124, "LATITUDE": 18.31852768, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.81364742100001, "SHAPE_Area": 485.19793901999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366149.498700000345707, 254398.853900000452995 ], [ 366123.07379999756813, 254377.106100000441074 ], [ 366135.856100000441074, 254391.142900001257658 ], [ 366140.618400000035763, 254400.047800000756979 ], [ 366141.225100003182888, 254409.394499998539686 ], [ 366137.861400000751019, 254439.710799999535084 ], [ 366146.712899997830391, 254441.894200000911951 ], [ 366151.005199998617172, 254411.320799998939037 ], [ 366150.288800001144409, 254400.760200001299381 ], [ 366149.498700000345707, 254398.853900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90700217, "LATITUDE": 18.34499072, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.74211631700001, "SHAPE_Area": 625.77619229300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361348.197200000286102, 257292.484499998390675 ], [ 361347.512699998915195, 257284.010299999266863 ], [ 361346.371699996292591, 257284.877099998295307 ], [ 361332.572599999606609, 257295.530000001192093 ], [ 361326.881700001657009, 257300.971799999475479 ], [ 361292.978799998760223, 257305.127300001680851 ], [ 361297.7466000020504, 257313.399000000208616 ], [ 361346.175700001418591, 257307.884700000286102 ], [ 361349.402699999511242, 257307.699999999254942 ], [ 361348.675499998033047, 257298.405999999493361 ], [ 361339.800700001418591, 257298.966600000858307 ], [ 361348.197200000286102, 257292.484499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.906056, "LATITUDE": 18.34443439, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.102156416200003, "SHAPE_Area": 218.99058374399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361411.196699999272823, 257247.833000000566244 ], [ 361417.20440000295639, 257252.456399999558926 ], [ 361428.9662000015378, 257244.389899998903275 ], [ 361431.381499998271465, 257244.831799998879433 ], [ 361431.365299999713898, 257246.731499999761581 ], [ 361437.02929999679327, 257244.455899998545647 ], [ 361437.848200000822544, 257242.984900001436472 ], [ 361436.275100000202656, 257238.328000001609325 ], [ 361437.902199998497963, 257236.65260000154376 ], [ 361439.520199999213219, 257236.032499998807907 ], [ 361436.330899998545647, 257231.784499999135733 ], [ 361411.196699999272823, 257247.833000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037500", "MAP": "D9-7931-T007", "PARCEL_NAM": "305-2", "ACRE": ".07", "LONGITUDE": -64.90021349, "LATITUDE": 18.34891847, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.068954741599995, "SHAPE_Area": 318.686790304 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362023.8108000010252, 257737.464400000870228 ], [ 362046.787399999797344, 257759.2837999984622 ], [ 362046.344400003552437, 257752.901000000536442 ], [ 362050.426299996674061, 257747.023699998855591 ], [ 362054.475900001823902, 257744.945999998599291 ], [ 362040.769900001585484, 257734.723600000143051 ], [ 362028.461300000548363, 257736.712900001555681 ], [ 362023.8108000010252, 257737.464400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037300", "MAP": "D9-7772-T006", "PARCEL_NAM": "306", "ACRE": ".838", "LONGITUDE": -64.90008976, "LATITUDE": 18.3486133, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.682825173, "SHAPE_Area": 3636.5969210399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362022.777199998497963, 257679.669700000435114 ], [ 362029.734899997711182, 257709.688499998301268 ], [ 362014.497500002384186, 257716.721099998801947 ], [ 362023.8108000010252, 257737.464400000870228 ], [ 362028.461300000548363, 257736.712900001555681 ], [ 362040.769900001585484, 257734.723600000143051 ], [ 362054.475900001823902, 257744.945999998599291 ], [ 362056.900200001895428, 257744.332499999552965 ], [ 362062.540799997746944, 257744.800900001078844 ], [ 362065.7804000005126, 257743.138599999248981 ], [ 362073.20099999755621, 257736.643800001591444 ], [ 362094.215400002896786, 257718.251200001686811 ], [ 362094.271099999547005, 257711.707800000905991 ], [ 362083.094200000166893, 257698.528499998152256 ], [ 362079.112999998033047, 257692.585299998521805 ], [ 362072.714599996805191, 257686.411200001835823 ], [ 362059.070299997925758, 257678.911299999803305 ], [ 362045.38629999756813, 257676.055100001394749 ], [ 362033.286300003528595, 257676.589299999177456 ], [ 362022.777199998497963, 257679.669700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87567743, "LATITUDE": 18.34740563, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 577.22528189599996, "SHAPE_Area": 1626.3166080799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364672.38289999961853, 257471.762200001627207 ], [ 364674.821199998259544, 257472.466600000858307 ], [ 364670.012100003659725, 257488.968199998140335 ], [ 364667.457599997520447, 257488.204799998551607 ], [ 364661.051700003445148, 257509.589800000190735 ], [ 364649.448700003325939, 257546.436200000345707 ], [ 364642.821999996900558, 257567.069099999964237 ], [ 364630.414399996399879, 257603.697799999266863 ], [ 364618.008599996566772, 257640.115499999374151 ], [ 364605.608199998736382, 257675.899900000542402 ], [ 364589.887299999594688, 257722.845100000500679 ], [ 364596.326999999582767, 257724.16440000012517 ], [ 364651.763300001621246, 257558.698600001633167 ], [ 364682.458200000226498, 257457.835999999195337 ], [ 364676.821199998259544, 257456.945500001311302 ], [ 364672.38289999961853, 257471.762200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90210907, "LATITUDE": 18.33657467, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1385.1163766100001, "SHAPE_Area": 6711.5087355300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361513.497100003063679, 256321.86879999935627 ], [ 361519.247500002384186, 256320.7804000005126 ], [ 361546.481799997389317, 256325.719900000840425 ], [ 361570.728299997746944, 256337.61430000141263 ], [ 361590.554999999701977, 256350.067200001329184 ], [ 361603.170800000429153, 256357.476199999451637 ], [ 361625.429200001060963, 256368.15260000154376 ], [ 361642.358499996364117, 256375.247900001704693 ], [ 361655.745099999010563, 256383.399300001561642 ], [ 361676.645300000905991, 256391.911699999123812 ], [ 361698.768700003623962, 256397.456599999219179 ], [ 361869.05969999730587, 256395.08390000090003 ], [ 361919.057899996638298, 256390.235500000417233 ], [ 361972.090000003576279, 256384.660300001502037 ], [ 362023.955300003290176, 256382.83729999884963 ], [ 362064.839500002563, 256381.674800001084805 ], [ 362123.973899997770786, 256370.508400000631809 ], [ 362173.895099997520447, 256362.724399998784065 ], [ 362177.685599997639656, 256349.584199998527765 ], [ 362118.75450000166893, 256361.060100000351667 ], [ 362066.441399998962879, 256371.155099999159575 ], [ 362044.851400002837181, 256373.231499999761581 ], [ 361964.972000002861023, 256375.948499999940395 ], [ 361925.57320000231266, 256380.509199999272823 ], [ 361886.183899998664856, 256383.941599998623133 ], [ 361857.040799997746944, 256384.074000000953674 ], [ 361846.053400002419949, 256385.486900001764297 ], [ 361841.529899999499321, 256385.542100001126528 ], [ 361791.170000001788139, 256386.156599998474121 ], [ 361741.985299997031689, 256384.240800000727177 ], [ 361679.974399998784065, 256377.327599998563528 ], [ 361652.770599998533726, 256371.833799999207258 ], [ 361622.220499999821186, 256359.164599999785423 ], [ 361581.521600000560284, 256338.134700000286102 ], [ 361555.528399996459484, 256323.622800000011921 ], [ 361542.099899999797344, 256317.296300001442432 ], [ 361521.162399999797344, 256314.683699999004602 ], [ 361512.048699997365475, 256313.052400000393391 ], [ 361513.497100003063679, 256321.86879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-568-T001", "PARCEL_NAM": "1-10", "ACRE": ".19", "LONGITUDE": -64.89909245, "LATITUDE": 18.33921752, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.73406759700001, "SHAPE_Area": 719.14341560900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362135.641400001943111, 256641.395199999213219 ], [ 362201.114399999380112, 256714.922800000756979 ], [ 362206.133400000631809, 256711.055599998682737 ], [ 362156.489500001072884, 256655.482700001448393 ], [ 362151.746899999678135, 256644.255899999290705 ], [ 362149.405299998819828, 256635.159699998795986 ], [ 362146.99889999628067, 256633.662399999797344 ], [ 362144.576399996876717, 256634.064699999988079 ], [ 362135.641400001943111, 256641.395199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90027344000001, "LATITUDE": 18.33247984, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 933.72637246900001, "SHAPE_Area": 3145.6304731599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362038.337899997830391, 255716.005399998277426 ], [ 362028.862400002777576, 255718.139899998903275 ], [ 362052.878300003707409, 255944.727000001817942 ], [ 362051.737499997019768, 255983.981100000441074 ], [ 362051.014600001275539, 256068.834800001233816 ], [ 362051.564699999988079, 256082.017000000923872 ], [ 362052.353900000452995, 256100.932000000029802 ], [ 362056.864500001072884, 256139.387899998575449 ], [ 362055.93299999833107, 256163.662399999797344 ], [ 362056.406199999153614, 256162.763700000941753 ], [ 362055.828000001609325, 256166.399399999529123 ], [ 362055.93299999833107, 256163.662399999797344 ], [ 362053.391099996864796, 256168.49040000140667 ], [ 362061.438100002706051, 256170.4560999982059 ], [ 362062.512299999594688, 256139.011900000274181 ], [ 362061.822899997234344, 256125.285199999809265 ], [ 362058.743299998342991, 256108.161400001496077 ], [ 362057.296099998056889, 256088.728999998420477 ], [ 362057.495700001716614, 256065.299199998378754 ], [ 362057.860699996352196, 256022.450199998915195 ], [ 362058.015399999916553, 256004.297499999403954 ], [ 362058.141199998557568, 255989.521899998188019 ], [ 362058.186200000345707, 255984.245000001043081 ], [ 362058.491899996995926, 255948.361600000411272 ], [ 362058.536799997091293, 255943.084600001573563 ], [ 362038.337899997830391, 255716.005399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90129088, "LATITUDE": 18.33435285, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.70359023999998, "SHAPE_Area": 1719.42139763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361865.345899999141693, 256187.427400000393391 ], [ 361892.807300001382828, 256182.163699999451637 ], [ 361889.589199997484684, 256181.293000001460314 ], [ 361888.808100000023842, 256178.331300001591444 ], [ 361891.268399998545647, 256173.496300000697374 ], [ 361909.12950000166893, 256159.288100000470877 ], [ 361911.548500001430511, 256159.307900000363588 ], [ 361949.596199996769428, 256141.887499999254942 ], [ 361968.258299998939037, 256128.319099999964237 ], [ 361977.210400000214577, 256118.682100001722574 ], [ 361982.955300003290176, 256106.907900001853704 ], [ 361985.455200001597404, 256097.429099999368191 ], [ 361986.35530000180006, 256082.991300001740456 ], [ 361984.826899997889996, 256076.525699999183416 ], [ 361978.505800001323223, 256061.275199998170137 ], [ 361967.203100003302097, 256062.871500000357628 ], [ 361973.558300003409386, 256074.1114999987185 ], [ 361977.499899998307228, 256084.698399998247623 ], [ 361976.609099999070168, 256094.612500000745058 ], [ 361974.933499999344349, 256101.987100001424551 ], [ 361972.451700001955032, 256109.355000000447035 ], [ 361967.559799998998642, 256115.647799998521805 ], [ 361958.613099999725819, 256124.651599999517202 ], [ 361945.634800001978874, 256133.622400000691414 ], [ 361907.604999996721745, 256148.932100001722574 ], [ 361900.308600001037121, 256153.516399998217821 ], [ 361890.564599998295307, 256161.458200000226498 ], [ 361872.647699996829033, 256182.209800001233816 ], [ 361869.39360000193119, 256185.560699999332428 ], [ 361865.345899999141693, 256187.427400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90725948, "LATITUDE": 18.34003265, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.258756799, "SHAPE_Area": 1195.1976257700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361287.975000001490116, 256737.87950000166893 ], [ 361271.868900001049042, 256730.72749999910593 ], [ 361262.945100001990795, 256732.9831000007689 ], [ 361254.253499999642372, 256739.501800000667572 ], [ 361256.614900000393391, 256746.276099998503923 ], [ 361263.068999998271465, 256745.906800001859665 ], [ 361276.787100002169609, 256744.752500001341105 ], [ 361341.805299997329712, 256779.692899998277426 ], [ 361354.648800000548363, 256786.552999999374151 ], [ 361345.151000000536442, 256765.576999999582767 ], [ 361343.529399998486042, 256766.619199998676777 ], [ 361341.110500000417233, 256766.599399998784065 ], [ 361321.0371999964118, 256756.513700000941753 ], [ 361287.975000001490116, 256737.87950000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-6153-T95", "PARCEL_NAM": "17 REM", "ACRE": ".2015", "LONGITUDE": -64.90642023, "LATITUDE": 18.34134565, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.56353260200001, "SHAPE_Area": 817.51451629099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361406.838600002229214, 256907.514499999582767 ], [ 361405.339299999177456, 256894.203400000929832 ], [ 361398.073499999940395, 256895.199400000274181 ], [ 361395.663500003516674, 256894.124200001358986 ], [ 361386.075900003314018, 256883.702100001275539 ], [ 361369.276399999856949, 256867.94370000064373 ], [ 361366.834100000560284, 256870.667899999767542 ], [ 361362.766599997878075, 256874.856499999761581 ], [ 361373.963200002908707, 256885.713899999856949 ], [ 361377.161499999463558, 256888.906500000506639 ], [ 361392.351999998092651, 256904.229600001126528 ], [ 361395.5287000015378, 256909.955099999904633 ], [ 361397.0675999969244, 256918.622499998658895 ], [ 361396.98030000180006, 256926.010299999266863 ], [ 361397.138599999248981, 256938.170299999415874 ], [ 361403.001999996602535, 256936.858800001442432 ], [ 361407.558600001037121, 256917.652899999171495 ], [ 361406.838600002229214, 256907.514499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-8531-T010", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.88390307, "LATITUDE": 18.32083809, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 445.03494388799999, "SHAPE_Area": 1635.5369499200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363757.807300001382828, 254744.519099999219179 ], [ 363763.751999996602535, 254747.293299999088049 ], [ 363773.857600003480911, 254729.086199998855591 ], [ 363778.496699996292591, 254718.276999998837709 ], [ 363779.8141999989748, 254715.207299999892712 ], [ 363783.817900002002716, 254702.085799999535084 ], [ 363789.005800001323223, 254687.039500001817942 ], [ 363791.298799999058247, 254680.64979999884963 ], [ 363800.13400000333786, 254660.048900000751019 ], [ 363804.506599999964237, 254650.523899998515844 ], [ 363805.884499996900558, 254647.522399999201298 ], [ 363811.428900003433228, 254636.348499998450279 ], [ 363814.207699999213219, 254629.987700000405312 ], [ 363815.416299998760223, 254625.161299999803305 ], [ 363814.875, 254620.1266999989748 ], [ 363812.387500002980232, 254615.075599998235703 ], [ 363810.112400002777576, 254611.311099998652935 ], [ 363806.629000000655651, 254605.547200001776218 ], [ 363801.2466000020504, 254597.569600000977516 ], [ 363796.057199999690056, 254589.787099998444319 ], [ 363794.859300002455711, 254586.694699998944998 ], [ 363793.200000002980232, 254582.411299999803305 ], [ 363793.079000003635883, 254573.7043999992311 ], [ 363795.148100003600121, 254559.212099999189377 ], [ 363796.065200001001358, 254554.740800000727177 ], [ 363797.23309999704361, 254549.046700000762939 ], [ 363792.456500001251698, 254544.056200001388788 ], [ 363790.733900003135204, 254548.589899998158216 ], [ 363789.252099998295307, 254555.47749999910593 ], [ 363787.530699998140335, 254567.383699998259544 ], [ 363786.427500002086163, 254582.839000001549721 ], [ 363787.013199999928474, 254584.899300001561642 ], [ 363788.630900003015995, 254590.589999999850988 ], [ 363799.483199998736382, 254607.791999999433756 ], [ 363803.343800000846386, 254613.911499999463558 ], [ 363806.524999998509884, 254621.026399999856949 ], [ 363806.138199999928474, 254628.433200001716614 ], [ 363797.890900000929832, 254645.438999999314547 ], [ 363796.652699999511242, 254647.974399998784065 ], [ 363791.623700000345707, 254658.27309999987483 ], [ 363786.304300002753735, 254674.014899998903275 ], [ 363784.377099998295307, 254678.635099999606609 ], [ 363775.055500000715256, 254700.982799999415874 ], [ 363769.893399998545647, 254715.523200001567602 ], [ 363763.765900000929832, 254732.782900001853704 ], [ 363757.807300001382828, 254744.519099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88514805, "LATITUDE": 18.32181521, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.731761702499995, "SHAPE_Area": 299.54441806099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363655.316500000655651, 254777.217799998819828 ], [ 363662.727300003170967, 254759.178800001740456 ], [ 363669.798699997365475, 254743.456000000238419 ], [ 363662.121100001037121, 254745.798700001090765 ], [ 363654.020199999213219, 254750.165399998426437 ], [ 363648.334700003266335, 254754.973999999463558 ], [ 363655.316500000655651, 254777.217799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87738129, "LATITUDE": 18.31126055, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 586.65208750600004, "SHAPE_Area": 2533.4514852699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364433.959499999880791, 253498.431200001388788 ], [ 364437.920999996364117, 253506.696299999952316 ], [ 364446.806599996984005, 253504.869199998676777 ], [ 364456.478699997067451, 253505.37049999833107 ], [ 364466.933799996972084, 253508.622499998658895 ], [ 364478.971000000834465, 253515.475999999791384 ], [ 364480.574600003659725, 253516.544599998742342 ], [ 364482.176399998366833, 253517.824299998581409 ], [ 364485.362099997699261, 253522.49439999833703 ], [ 364487.669600002467632, 253535.601100001484156 ], [ 364490.795900002121925, 253547.236800000071526 ], [ 364495.466600000858307, 253566.906700000166893 ], [ 364497.788400001823902, 253578.324799999594688 ], [ 364504.071699999272823, 253598.00789999961853 ], [ 364506.420500002801418, 253606.259799998253584 ], [ 364507.99889999628067, 253610.283500000834465 ], [ 364508.780100002884865, 253613.245200000703335 ], [ 364511.884800001978874, 253627.413899999111891 ], [ 364509.318499997258186, 253644.702500000596046 ], [ 364503.593299999833107, 253654.154899999499321 ], [ 364497.91499999910593, 253658.119199998676777 ], [ 364490.589900001883507, 253666.080800000578165 ], [ 364467.052100002765656, 253684.042199999094009 ], [ 364443.458700001239777, 253708.546999998390675 ], [ 364452.284999996423721, 253713.685499999672174 ], [ 364453.134400002658367, 253708.626200001686811 ], [ 364454.772200003266335, 253705.684300001710653 ], [ 364475.070299997925758, 253689.385200001299381 ], [ 364498.606200002133846, 253671.634799998253584 ], [ 364503.498000003397465, 253665.342099998146296 ], [ 364509.988099999725819, 253660.7511 ], [ 364514.885300002992153, 253653.825100000947714 ], [ 364517.34740000218153, 253648.778999999165535 ], [ 364519.859899997711182, 253637.822700001299381 ], [ 364519.958800002932549, 253626.21339999884367 ], [ 364520.001900002360344, 253621.14750000089407 ], [ 364517.669299997389317, 253610.995900001376867 ], [ 364512.163599997758865, 253594.696600001305342 ], [ 364504.341399997472763, 253566.346099998801947 ], [ 364498.135399997234344, 253537.586599998176098 ], [ 364496.548000000417233, 253534.618299998342991 ], [ 364496.587600000202656, 253529.974500000476837 ], [ 364493.464800000190735, 253517.916600000113249 ], [ 364490.282700002193451, 253512.824400000274181 ], [ 364486.279899999499321, 253509.414099998772144 ], [ 364474.246399998664856, 253502.138399999588728 ], [ 364459.777699999511242, 253496.74269999936223 ], [ 364451.723600000143051, 253495.621300000697374 ], [ 364445.271300002932549, 253495.779599998146296 ], [ 364433.959499999880791, 253498.431200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103034200", "MAP": "D9-8660-T012", "PARCEL_NAM": "7B-1 REM", "ACRE": ".846", "LONGITUDE": -64.89717374, "LATITUDE": 18.35078161, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.520775367, "SHAPE_Area": 4732.7858169499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362407.266699999570847, 257989.288800001144409 ], [ 362407.442100003361702, 257984.672600001096725 ], [ 362406.151799999177456, 257982.786499999463558 ], [ 362404.851800002157688, 257982.054400000721216 ], [ 362400.355800002813339, 257981.728199999779463 ], [ 362394.244099996984005, 257983.696299999952316 ], [ 362389.728699997067451, 257985.67790000140667 ], [ 362384.647399999201298, 257985.923799999058247 ], [ 362378.852600000798702, 257984.721200000494719 ], [ 362381.223999999463558, 257978.826999999582767 ], [ 362393.209100000560284, 257968.686000000685453 ], [ 362380.970499999821186, 257913.539599999785423 ], [ 362308.545199997723103, 257917.506599999964237 ], [ 362313.400700002908707, 257924.805900000035763 ], [ 362360.300599999725819, 258004.138799998909235 ], [ 362407.266699999570847, 257989.288800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87903917, "LATITUDE": 18.32179108, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1656.6896334099999, "SHAPE_Area": 7345.3705547700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364374.049300000071526, 254662.332899998873472 ], [ 364375.701681203674525, 254661.856826761475531 ], [ 364377.405616898962762, 254661.625282995752059 ], [ 364379.125119681702927, 254661.643158944440074 ], [ 364380.823873367917258, 254661.910077064560028 ], [ 364382.465999998152256, 254662.420400001108646 ], [ 364363.382100000977516, 254602.769400000572205 ], [ 364355.987899996340275, 254605.40089999884367 ], [ 364353.550899997353554, 254607.491900000721216 ], [ 364350.311300002038479, 254609.154199998825788 ], [ 364325.209499999880791, 254621.403200000524521 ], [ 364313.901399999856949, 254623.632699999958277 ], [ 364305.83110000193119, 254624.410999998450279 ], [ 364293.723800003528595, 254625.789599999785423 ], [ 364289.68860000371933, 254626.178800001740456 ], [ 364282.417400002479553, 254627.80799999833107 ], [ 364276.757100000977516, 254629.661499999463558 ], [ 364272.709299996495247, 254631.528200000524521 ], [ 364266.226400002837181, 254635.27479999884963 ], [ 364264.604800000786781, 254636.31700000166893 ], [ 364262.979599997401237, 254637.781399998813868 ], [ 364250.787799999117851, 254649.080699998885393 ], [ 364245.095100000500679, 254654.733600001782179 ], [ 364241.835699997842312, 254658.717700000852346 ], [ 364237.755599997937679, 254664.383799999952316 ], [ 364234.479999996721745, 254670.267599999904633 ], [ 364230.347699999809265, 254682.055100001394749 ], [ 364229.510799996554852, 254685.636799998581409 ], [ 364228.623599998652935, 254695.128699999302626 ], [ 364226.883299998939037, 254710.102099999785423 ], [ 364225.135799996554852, 254725.919900000095367 ], [ 364223.424300000071526, 254737.515999998897314 ], [ 364224.070500001311302, 254756.308600001037121 ], [ 364218.404799997806549, 254758.795400001108646 ], [ 364215.161499999463558, 254760.879799999296665 ], [ 364211.902099996805191, 254764.863899998366833 ], [ 364211.05629999935627, 254769.500999998301268 ], [ 364213.426600001752377, 254775.219900000840425 ], [ 364214.206000000238419, 254778.392700001597404 ], [ 364216.610500000417233, 254780.101100001484156 ], [ 364218.214199997484684, 254781.169700000435114 ], [ 364221.428599998354912, 254782.462600000202656 ], [ 364231.108000002801418, 254782.119600001722574 ], [ 364232.663099996745586, 254788.887299999594688 ], [ 364235.850500002503395, 254793.346400000154972 ], [ 364238.258699998259544, 254794.632699999958277 ], [ 364240.666799999773502, 254795.9189000017941 ], [ 364245.490299999713898, 254797.647199999541044 ], [ 364257.590400002896786, 254797.112900000065565 ], [ 364270.507600001990795, 254795.318799998611212 ], [ 364274.530199997127056, 254796.407200001180172 ], [ 364276.925700001418591, 254799.171000000089407 ], [ 364279.217000000178814, 254814.177400000393391 ], [ 364283.146099999547005, 254826.241900000721216 ], [ 364287.874200001358986, 254839.157299999147654 ], [ 364290.253600001335144, 254843.820799998939037 ], [ 364295.028599999845028, 254851.248199999332428 ], [ 364298.223200000822544, 254854.862900000065565 ], [ 364299.009800001978874, 254857.191399998962879 ], [ 364300.235299997031689, 254858.008000001311302 ], [ 364314.974200002849102, 254876.320500001311302 ], [ 364345.414499998092651, 254900.000999998301268 ], [ 364353.427199997007847, 254905.977200001478195 ], [ 364365.458999998867512, 254913.463899999856949 ], [ 364370.271700002253056, 254916.458599999547005 ], [ 364385.521499998867512, 254924.816100001335144 ], [ 364389.508100003004074, 254930.1261 ], [ 364389.488300003111362, 254932.447900000959635 ], [ 364391.862300001084805, 254937.744699999690056 ], [ 364395.863300003111362, 254941.366099998354912 ], [ 364398.267899997532368, 254943.074499998241663 ], [ 364399.8733000010252, 254943.932000000029802 ], [ 364404.695000000298023, 254945.871300000697374 ], [ 364411.138300001621246, 254946.768399998545647 ], [ 364424.852799996733665, 254946.036299999803305 ], [ 364433.740199998021126, 254943.998100001364946 ], [ 364439.441899999976158, 254937.289799999445677 ], [ 364439.465300001204014, 254934.545699998736382 ], [ 364439.495899997651577, 254930.957400001585484 ], [ 364437.114699997007847, 254926.504900000989437 ], [ 364434.715499997138977, 254924.16330000013113 ], [ 364431.497500002384186, 254923.292599998414516 ], [ 364417.822499997913837, 254919.381000000983477 ], [ 364404.126000002026558, 254918.002300001680851 ], [ 364392.846600003540516, 254916.854499999433756 ], [ 364387.215000003576279, 254915.330800000578165 ], [ 364370.35980000346899, 254906.115800000727177 ], [ 364351.915299996733665, 254894.1435999982059 ], [ 364327.887800000607967, 254874.948499999940395 ], [ 364320.683100000023842, 254868.767799999564886 ], [ 364316.6875, 254864.513300001621246 ], [ 364307.907999999821186, 254853.886700000613928 ], [ 364299.149999998509884, 254840.727200001478195 ], [ 364297.573399998247623, 254836.492499999701977 ], [ 364294.389499999582767, 254831.611299999058247 ], [ 364291.246899999678135, 254821.875199999660254 ], [ 364287.335900001227856, 254807.699999999254942 ], [ 364285.859899997711182, 254791.644799999892712 ], [ 364284.38570000231266, 254775.378499999642372 ], [ 364282.909800000488758, 254759.323300000280142 ], [ 364283.802400000393391, 254749.198100000619888 ], [ 364286.302299998700619, 254739.719399999827147 ], [ 364287.131899997591972, 254736.981899999082088 ], [ 364288.780500002205372, 254732.773600000888109 ], [ 364290.421899996697903, 254729.409499999135733 ], [ 364293.693899996578693, 254723.947900000959635 ], [ 364302.683799996972084, 254709.878199998289347 ], [ 364305.954099997878075, 254704.627599999308586 ], [ 364313.279200002551079, 254696.666000001132488 ], [ 364315.7179000005126, 254694.363899998366833 ], [ 364326.279100000858307, 254685.162200000137091 ], [ 364334.392599999904633, 254679.317999999970198 ], [ 364341.681699998676777, 254675.578000001609325 ], [ 364345.729500003159046, 254673.711300000548363 ], [ 364354.633100003004074, 254669.773400001227856 ], [ 364374.049300000071526, 254662.332899998873472 ] ], [ [ 364432.181500002741814, 254937.652499999850988 ], [ 364418.44539999961853, 254940.917599998414516 ], [ 364410.384099997580051, 254940.640500001609325 ], [ 364403.139899998903275, 254939.10359999909997 ], [ 364399.126299999654293, 254936.959800001233816 ], [ 364397.537100002169609, 254934.202599998563528 ], [ 364395.99099999666214, 254926.37950000166893 ], [ 364399.239600002765656, 254923.661800000816584 ], [ 364404.08110000193119, 254923.27930000051856 ], [ 364416.161399997770786, 254925.066899999976158 ], [ 364430.642599999904633, 254928.985100001096725 ], [ 364433.043600000441074, 254931.115699999034405 ], [ 364433.828299999237061, 254933.655200000852346 ], [ 364432.181500002741814, 254937.652499999850988 ] ], [ [ 364241.559500001370907, 254785.793800000101328 ], [ 364236.899599999189377, 254764.857400000095367 ], [ 364233.773299999535084, 254753.221599999815226 ], [ 364233.850599996745586, 254744.145199999213219 ], [ 364233.159400001168251, 254730.629599999636412 ], [ 364233.175499998033047, 254728.729899998754263 ], [ 364235.77250000089407, 254707.852899998426437 ], [ 364238.362300001084805, 254687.820199999958277 ], [ 364240.858499996364117, 254678.763599999248981 ], [ 364244.963799998164177, 254670.142299998551607 ], [ 364249.864600002765656, 254662.794199999421835 ], [ 364255.564599998295307, 254656.296900000423193 ], [ 364270.187899999320507, 254643.539900001138449 ], [ 364271.809500001370907, 254642.497699998319149 ], [ 364274.24099999666214, 254641.03999999910593 ], [ 364280.718500003218651, 254637.926600001752377 ], [ 364286.384199999272823, 254635.439800001680851 ], [ 364295.271700002253056, 254633.401599999517202 ], [ 364308.179899998009205, 254632.662900000810623 ], [ 364317.056500002741814, 254631.891199998557568 ], [ 364320.285300001502037, 254631.495400000363588 ], [ 364327.55290000140667, 254630.28830000013113 ], [ 364336.460100002586842, 254625.928300000727177 ], [ 364338.889899998903275, 254624.681600000709295 ], [ 364352.656499996781349, 254617.828200001269579 ], [ 364354.272699996829033, 254617.419199999421835 ], [ 364358.313299998641014, 254616.396800000220537 ], [ 364361.533100001513958, 254617.056499999016523 ], [ 364365.535899996757507, 254620.466699998825788 ], [ 364373.399499997496605, 254643.962499998509884 ], [ 364372.548199996352196, 254649.232799999415874 ], [ 364371.725699998438358, 254651.125900000333786 ], [ 364370.089699998497963, 254653.856800001114607 ], [ 364367.661799997091293, 254654.892400000244379 ], [ 364351.478000000119209, 254661.514899998903275 ], [ 364341.768100000917912, 254665.446199998259544 ], [ 364333.672600001096725, 254669.17960000038147 ], [ 364330.431100003421307, 254671.052999999374151 ], [ 364319.886100001633167, 254678.354899998754263 ], [ 364318.262699998915195, 254679.608199998736382 ], [ 364308.509700000286102, 254688.605399999767542 ], [ 364299.553900003433228, 254698.664599999785423 ], [ 364297.92509999871254, 254700.551100000739098 ], [ 364293.017099998891354, 254708.743599999696016 ], [ 364285.666799999773502, 254719.660300001502037 ], [ 364280.749799996614456, 254728.90819999948144 ], [ 364278.282300002872944, 254734.587499998509884 ], [ 364277.450800001621246, 254737.535999998450279 ], [ 364276.626500003039837, 254739.6402000002563 ], [ 364274.950900003314018, 254747.014699999243021 ], [ 364274.115900002419949, 254750.385400000959635 ], [ 364273.982799999415874, 254766.005199998617172 ], [ 364274.639899998903275, 254783.531399998813868 ], [ 364271.39299999922514, 254786.037900000810623 ], [ 364257.671300001442432, 254787.614399999380112 ], [ 364246.370399996638298, 254788.999499998986721 ], [ 364241.559500001370907, 254785.793800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-333-T86", "PARCEL_NAM": "98-7", "ACRE": "2.0", "LONGITUDE": -64.86982458, "LATITUDE": 18.33991089, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 486.25961961000002, "SHAPE_Area": 7581.7706787099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365253.357400000095367, 256862.138599999248981 ], [ 365309.917400002479553, 256851.49269999936223 ], [ 365307.041400000452995, 256836.633299998939037 ], [ 365304.685400001704693, 256829.225699998438358 ], [ 365299.939300000667572, 256818.421100001782179 ], [ 365298.340999998152256, 256816.719300001859665 ], [ 365283.254900000989437, 256789.1537000015378 ], [ 365282.475500002503395, 256785.980900000780821 ], [ 365280.877300001680851, 256784.278999999165535 ], [ 365279.309600003063679, 256778.988899998366833 ], [ 365275.3445999994874, 256771.146000001579523 ], [ 365274.570600003004074, 256767.339899998158216 ], [ 365272.976000003516674, 256765.215999998152256 ], [ 365265.925999999046326, 256740.882500000298023 ], [ 365261.264300003647804, 256720.157200001180172 ], [ 365252.884499996900558, 256666.236900001764297 ], [ 365249.515399999916553, 256664.958000000566244 ], [ 365246.848499998450279, 256663.885899998247623 ], [ 365242.248499996960163, 256662.318199999630451 ], [ 365236.093299999833107, 256662.775100000202656 ], [ 365232.017399996519089, 256662.740299999713898 ], [ 365222.766699999570847, 256662.661299999803305 ], [ 365224.952299997210503, 256676.913600001484156 ], [ 365246.039700001478195, 256814.421100001782179 ], [ 365253.357400000095367, 256862.138599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-333-T86", "PARCEL_NAM": "98C", "ACRE": ".042", "LONGITUDE": -64.87088093, "LATITUDE": 18.34161454, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.228614641900002, "SHAPE_Area": 74.799146732200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365144.931699998676777, 256968.857200000435114 ], [ 365152.218699999153614, 256968.353900000452995 ], [ 365144.558499999344349, 256948.353500001132488 ], [ 365144.931699998676777, 256968.857200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-333-T86", "PARCEL_NAM": "98B", "ACRE": ".04", "LONGITUDE": -64.87087475, "LATITUDE": 18.3417404, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.639560902200003, "SHAPE_Area": 86.883719224000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365152.218699999153614, 256968.353900000452995 ], [ 365144.931699998676777, 256968.857200000435114 ], [ 365145.318099997937679, 256990.083799999207258 ], [ 365152.694099999964237, 256969.594999998807907 ], [ 365152.218699999153614, 256968.353900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86357846, "LATITUDE": 18.34934087, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.91895006, "SHAPE_Area": 565.27282159599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365942.911200001835823, 257820.988000001758337 ], [ 365940.468999996781349, 257812.092000000178814 ], [ 365910.705200001597404, 257819.148299999535084 ], [ 365882.424900002777576, 257825.88289999961853 ], [ 365880.325000002980232, 257825.957299999892712 ], [ 365882.478900000452995, 257834.630399998277426 ], [ 365884.770099997520447, 257834.55689999833703 ], [ 365912.240500003099442, 257828.237799998372793 ], [ 365938.096400000154972, 257822.116700001060963 ], [ 365942.911200001835823, 257820.988000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "1033003010900", "MAP": "G9-2608-T77", "PARCEL_NAM": "C-1D", "ACRE": ".34", "LONGITUDE": -64.86364035, "LATITUDE": 18.34971779, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.51248618, "SHAPE_Area": 2003.24050659 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365925.358000002801418, 257898.088500000536442 ], [ 365912.240500003099442, 257828.237799998372793 ], [ 365884.770099997520447, 257834.55689999833703 ], [ 365882.478900000452995, 257834.630399998277426 ], [ 365898.833400003612041, 257900.483399998396635 ], [ 365900.331699997186661, 257900.967700000852346 ], [ 365913.229099996387959, 257901.495400000363588 ], [ 365923.734600000083447, 257898.837200000882149 ], [ 365925.358000002801418, 257898.088500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86521378, "LATITUDE": 18.34924558, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 624.35124233099998, "SHAPE_Area": 2740.7982123699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365711.222499996423721, 257829.932700000703335 ], [ 365712.242600001394749, 257830.400600001215935 ], [ 365727.521200001239777, 257835.380800001323223 ], [ 365738.791599996387959, 257837.583999998867512 ], [ 365754.088200002908707, 257840.453400000929832 ], [ 365756.508900001645088, 257840.262200001627207 ], [ 365772.647699996829033, 257838.916600000113249 ], [ 365788.003600001335144, 257834.82039999961853 ], [ 365807.425300002098083, 257826.746700000017881 ], [ 365824.383000001311302, 257823.93019999936223 ], [ 365834.863300003111362, 257824.227099999785423 ], [ 365863.840199999511242, 257830.374800000339746 ], [ 365874.284500002861023, 257834.893300000578165 ], [ 365882.478900000452995, 257834.630399998277426 ], [ 365880.325000002980232, 257825.957299999892712 ], [ 365877.585199996829033, 257826.054400000721216 ], [ 365866.334600001573563, 257821.52930000051856 ], [ 365836.549599997699261, 257815.585999999195337 ], [ 365820.425200000405312, 257815.243000000715256 ], [ 365809.930500000715256, 257816.634700000286102 ], [ 365797.801700003445148, 257820.54619999974966 ], [ 365780.80799999833107, 257827.584300000220537 ], [ 365759.802500002086163, 257832.267599999904633 ], [ 365743.697800002992153, 257829.602600000798702 ], [ 365738.870700001716614, 257828.296599999070168 ], [ 365716.342500001192093, 257822.412599999457598 ], [ 365709.983499996364117, 257819.135999999940395 ], [ 365693.862899996340275, 257810.829599998891354 ], [ 365623.380300000309944, 257754.735100001096725 ], [ 365609.554300002753735, 257744.701299998909235 ], [ 365609.648699998855591, 257755.184500001370907 ], [ 365617.682199999690056, 257761.021299999207258 ], [ 365631.295999996364117, 257772.109600000083447 ], [ 365636.092500001192093, 257777.004000000655651 ], [ 365688.157499998807907, 257817.960099998861551 ], [ 365700.997400000691414, 257825.242400001734495 ], [ 365711.222499996423721, 257829.932700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-6838-T000", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89047953, "LATITUDE": 18.34827201, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.8148319855, "SHAPE_Area": 61.4551280608 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363068.665799997746944, 257678.070700000971556 ], [ 363064.91780000180006, 257676.29450000077486 ], [ 363062.194899998605251, 257678.677600000053644 ], [ 363065.420199997723103, 257681.060300000011921 ], [ 363072.099799998104572, 257686.394200000911951 ], [ 363076.802699998021126, 257681.926899999380112 ], [ 363068.665799997746944, 257678.070700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-102-T68", "PARCEL_NAM": "PORTION OF 173 REM", "ACRE": null, "LONGITUDE": -64.88669664, "LATITUDE": 18.33898645, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.157767350300006, "SHAPE_Area": 193.23252254499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363460.198499999940395, 256655.119600001722574 ], [ 363480.217500001192093, 256664.400499999523163 ], [ 363482.965000003576279, 256661.048599999397993 ], [ 363494.333599999547005, 256650.7483000010252 ], [ 363480.879600003361702, 256652.706799998879433 ], [ 363460.198499999940395, 256655.119600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88621137, "LATITUDE": 18.33920974, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.955899765599995, "SHAPE_Area": 334.35701357400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363524.494199998676777, 256702.776099998503923 ], [ 363525.323299996554852, 256703.058200001716614 ], [ 363532.178099997341633, 256694.575899999588728 ], [ 363535.101599998772144, 256688.149700000882149 ], [ 363535.265799999237061, 256668.878199998289347 ], [ 363524.016999997198582, 256664.142099998891354 ], [ 363524.38400000333786, 256693.849500000476837 ], [ 363524.494199998676777, 256702.776099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-6029-T96", "PARCEL_NAM": "4A-6 ROW", "ACRE": null, "LONGITUDE": -64.88641956, "LATITUDE": 18.33950356, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.12425734599999, "SHAPE_Area": 289.243206778 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363524.38400000333786, 256693.849500000476837 ], [ 363515.189900003373623, 256703.934399999678135 ], [ 363488.914700001478195, 256723.810699999332428 ], [ 363493.222599998116493, 256728.935300000011921 ], [ 363495.022799998521805, 256727.932799998670816 ], [ 363496.822899997234344, 256726.930399999022484 ], [ 363499.629600003361702, 256727.971799999475479 ], [ 363504.778399996459484, 256724.453499998897314 ], [ 363503.531000003218651, 256720.626899998635054 ], [ 363524.494199998676777, 256702.776099998503923 ], [ 363524.38400000333786, 256693.849500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "C9-177-T74", "PARCEL_NAM": "121", "ACRE": "1.339", "LONGITUDE": -64.86772767, "LATITUDE": 18.33672377, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.89524188600001, "SHAPE_Area": 5271.2572927199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365445.346600003540516, 256403.741099998354912 ], [ 365443.107199996709824, 256424.805300001055002 ], [ 365443.876900002360344, 256435.993099998682737 ], [ 365448.388599999248981, 256448.072999998927116 ], [ 365462.729900002479553, 256472.213599998503923 ], [ 365467.206399999558926, 256468.518300000578165 ], [ 365484.5574000030756, 256460.219500001519918 ], [ 365509.568400003015995, 256450.578400000929832 ], [ 365520.987499997019768, 256444.909800000488758 ], [ 365522.181199997663498, 256426.843400001525879 ], [ 365525.277500003576279, 256375.788400001823902 ], [ 365445.346600003540516, 256403.741099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89484536000001, "LATITUDE": 18.35300412, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.78354328899999, "SHAPE_Area": 483.41160859600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362573.848999999463558, 258209.80290000140667 ], [ 362573.181100003421307, 258214.483500000089407 ], [ 362629.464800000190735, 258212.580099999904633 ], [ 362631.12780000269413, 258206.683100000023842 ], [ 362619.119400002062321, 258196.452399998903275 ], [ 362601.509999997913837, 258181.109499998390675 ], [ 362579.055500000715256, 258166.571400001645088 ], [ 362579.026799999177456, 258169.948600001633167 ], [ 362599.069499999284744, 258183.622600000351667 ], [ 362623.091600000858307, 258203.4510000012815 ], [ 362622.247500002384186, 258207.877000000327826 ], [ 362573.848999999463558, 258209.80290000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2191-T82", "PARCEL_NAM": "173A-83", "ACRE": "0.04", "LONGITUDE": -64.87632733, "LATITUDE": 18.33818791, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.869428491000001, "SHAPE_Area": 144.316488467 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364583.048900000751019, 256580.8136 ], [ 364580.651900000870228, 256571.212099999189377 ], [ 364580.616200000047684, 256571.175200000405312 ], [ 364566.608800001442432, 256574.516699999570847 ], [ 364568.945100001990795, 256584.246100001037121 ], [ 364583.048900000751019, 256580.8136 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2191-T82", "PARCEL_NAM": "173A-82", "ACRE": "1659 sq ft", "LONGITUDE": -64.87618654000001, "LATITUDE": 18.33815397, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.395360948700002, "SHAPE_Area": 161.77819666299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364598.974500000476837, 256576.925200000405312 ], [ 364596.105800002813339, 256567.263599999248981 ], [ 364581.152999997138977, 256571.047200001776218 ], [ 364580.616200000047684, 256571.175200000405312 ], [ 364580.651900000870228, 256571.212099999189377 ], [ 364583.048900000751019, 256580.8136 ], [ 364590.762299999594688, 256578.936299998313189 ], [ 364598.974500000476837, 256576.925200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.86867801, "LATITUDE": 18.31968249, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.637500199200005, "SHAPE_Area": 164.36635207500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365405.588299997150898, 254523.909099999815226 ], [ 365390.913699999451637, 254545.33729999884963 ], [ 365391.706399999558926, 254545.933100000023842 ], [ 365396.364399999380112, 254549.032699998468161 ], [ 365411.052500002086163, 254526.222899999469519 ], [ 365408.979099996387959, 254525.570999998599291 ], [ 365405.588299997150898, 254523.909099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": "D9-1228-T75", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86769346, "LATITUDE": 18.31991742, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.744993945000004, "SHAPE_Area": 115.555386106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365495.07490000128746, 254575.53489999845624 ], [ 365515.86710000038147, 254555.310300000011921 ], [ 365514.366800002753735, 254554.50899999961257 ], [ 365511.171400003135204, 254552.745900001376867 ], [ 365493.113099999725819, 254573.11089999973774 ], [ 365493.904200002551079, 254573.671399999409914 ], [ 365494.660099998116493, 254574.874600000679493 ], [ 365495.07490000128746, 254575.53489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": "D9-1228-T75", "PARCEL_NAM": "20", "ACRE": null, "LONGITUDE": -64.86760283, "LATITUDE": 18.32004995, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.236755627400001, "SHAPE_Area": 149.18030698300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365526.977600000798702, 254568.432000000029802 ], [ 365499.040600001811981, 254583.511799998581409 ], [ 365500.873099997639656, 254587.598000001162291 ], [ 365528.230099998414516, 254573.443500000983477 ], [ 365527.935699999332428, 254570.874200001358986 ], [ 365527.741400003433228, 254570.379000000655651 ], [ 365526.977600000798702, 254568.432000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8801361, "LATITUDE": 18.34753388, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 432.95633148799999, "SHAPE_Area": 1267.0179370799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364077.304200001060963, 257668.890799999237061 ], [ 364079.363200001418591, 257670.915500000119209 ], [ 364086.000900000333786, 257667.803300000727177 ], [ 364092.087899997830391, 257659.875700000673532 ], [ 364110.75900000333786, 257645.252000000327826 ], [ 364153.782999999821186, 257611.618099998682737 ], [ 364175.688299998641014, 257595.965300001204014 ], [ 364187.847800001502037, 257588.465500000864267 ], [ 364199.989200003445148, 257583.076400000602007 ], [ 364208.084700003266335, 257579.342999998480082 ], [ 364225.069399997591972, 257573.360300000756979 ], [ 364240.315600000321865, 257582.139899998903275 ], [ 364251.548199996352196, 257588.775800000876188 ], [ 364254.818400003015995, 257583.525199998170137 ], [ 364233.960400000214577, 257570.899999998509884 ], [ 364226.741400003433228, 257566.407900001853704 ], [ 364200.856600001454353, 257575.906399998813868 ], [ 364191.951200000941753, 257580.055300001055002 ], [ 364166.83330000191927, 257594.204100001603365 ], [ 364087.284199997782707, 257655.825699999928474 ], [ 364077.304200001060963, 257668.890799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8799681, "LATITUDE": 18.34839848, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.44981479906, "SHAPE_Area": 0.00292675574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364180.3496999964118, 257704.439800001680851 ], [ 364180.439999997615814, 257704.642200000584126 ], [ 364180.40820000320673, 257704.506099998950958 ], [ 364180.3496999964118, 257704.439800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87983332, "LATITUDE": 18.34811583, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 571.02175306900006, "SHAPE_Area": 1588.5288996700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364218.57880000025034, 257735.77140000090003 ], [ 364223.672200001776218, 257737.368599999696016 ], [ 364248.951999999582767, 257704.222699999809265 ], [ 364269.347199998795986, 257676.525299999862909 ], [ 364275.038099996745586, 257671.083399999886751 ], [ 364272.646099999547005, 257667.897399999201298 ], [ 364271.055100001394749, 257665.351300001144409 ], [ 364268.639799997210503, 257664.909299999475479 ], [ 364266.222599998116493, 257664.67850000038743 ], [ 364236.401600003242493, 257662.956700000911951 ], [ 364192.878799997270107, 257660.489599999040365 ], [ 364176.772299997508526, 257658.035700000822544 ], [ 364173.550599999725819, 257657.587200000882149 ], [ 364131.792599998414516, 257649.38399999961257 ], [ 364125.83389999717474, 257651.327799998223782 ], [ 364104.542099997401237, 257658.331700000911951 ], [ 364092.062700003385544, 257664.961300000548363 ], [ 364086.000900000333786, 257667.803300000727177 ], [ 364079.041199997067451, 257676.867499999701977 ], [ 364100.097099997103214, 257666.274099998176098 ], [ 364113.034000001847744, 257662.158100001513958 ], [ 364138.877400003373623, 257657.514499999582767 ], [ 364160.626299999654293, 257660.225600000470877 ], [ 364190.414899997413158, 257665.746800001710653 ], [ 364266.976800002157688, 257670.80629999935627 ], [ 364237.61150000244379, 257710.251600001007318 ], [ 364218.57880000025034, 257735.77140000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88119004000001, "LATITUDE": 18.34842701, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.37048252400001, "SHAPE_Area": 581.43064477500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364033.044299997389317, 257724.107900001108646 ], [ 364026.971500001847744, 257731.114599999040365 ], [ 364016.433700002729893, 257737.572299998253584 ], [ 364022.04730000346899, 257741.206799998879433 ], [ 364031.773400001227856, 257735.375799998641014 ], [ 364039.094999998807907, 257727.836300000548363 ], [ 364039.286100000143051, 257727.592999998480082 ], [ 364055.39919999986887, 257707.07149999961257 ], [ 364069.519900001585484, 257689.031599998474121 ], [ 364079.041199997067451, 257676.867499999701977 ], [ 364086.000900000333786, 257667.803300000727177 ], [ 364079.363200001418591, 257670.915500000119209 ], [ 364077.304200001060963, 257668.890799999237061 ], [ 364063.388199999928474, 257687.108899999409914 ], [ 364050.588299997150898, 257703.865699999034405 ], [ 364033.044299997389317, 257724.107900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-45", "ACRE": ".27", "LONGITUDE": -64.85850981, "LATITUDE": 18.3316454, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.395752784, "SHAPE_Area": 1053.32887106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366443.770000003278255, 255878.86089999973774 ], [ 366468.237999998033047, 255889.029500000178814 ], [ 366486.856299996376038, 255878.636700000613928 ], [ 366465.362800002098083, 255845.952300000935793 ], [ 366460.505199998617172, 255848.234600000083447 ], [ 366456.480800002813339, 255847.357299998402596 ], [ 366444.125399999320507, 255877.864700000733137 ], [ 366443.770000003278255, 255878.86089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87373645, "LATITUDE": 18.31826379, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.42745949799999, "SHAPE_Area": 521.25912908800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364893.996399998664856, 254397.2331000007689 ], [ 364876.460699997842312, 254373.236000001430511 ], [ 364874.065200001001358, 254370.472100000828505 ], [ 364849.297899998724461, 254343.46059999987483 ], [ 364846.02589999884367, 254348.922200001776218 ], [ 364855.62610000371933, 254357.866700001060963 ], [ 364868.404799997806549, 254372.325699999928474 ], [ 364860.284100003540516, 254379.014199998229742 ], [ 364845.660800002515316, 254391.771200001239777 ], [ 364848.056400001049042, 254394.535000000149012 ], [ 364871.590499997138977, 254376.995799999684095 ], [ 364880.362800002098083, 254388.466600000858307 ], [ 364881.966499999165535, 254389.535199999809265 ], [ 364882.752999998629093, 254391.863699998706579 ], [ 364888.337899997830391, 254398.875500001013279 ], [ 364893.996399998664856, 254397.2331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101012100", "MAP": "G9-1042-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89294162, "LATITUDE": 18.35776303, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.468477139499996, "SHAPE_Area": 245.88411241 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362817.496500000357628, 258745.0912000015378 ], [ 362789.062299996614456, 258711.580699998885393 ], [ 362784.840400002896786, 258715.621199999004602 ], [ 362790.421599999070168, 258723.05519999936223 ], [ 362814.396999999880791, 258748.371500000357628 ], [ 362817.496500000357628, 258745.0912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89345263, "LATITUDE": 18.3575233, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 433.66405346599998, "SHAPE_Area": 1207.6780195599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362783.243900001049042, 258713.708299998193979 ], [ 362769.687700003385544, 258695.865499999374151 ], [ 362764.858800001442432, 258694.770500000566244 ], [ 362757.598399996757507, 258695.133299998939037 ], [ 362713.139700002968311, 258707.857200000435114 ], [ 362709.113499999046326, 258707.190900001674891 ], [ 362708.32880000025034, 258704.651399999856949 ], [ 362714.097099997103214, 258690.133200000971556 ], [ 362719.795199997723103, 258683.846999999135733 ], [ 362726.287100002169609, 258679.045000001788139 ], [ 362732.760899998247623, 258676.353700000792742 ], [ 362747.355499997735023, 258666.973999999463558 ], [ 362738.584899999201298, 258655.292100001126528 ], [ 362732.069700002670288, 258662.838100001215935 ], [ 362740.931900002062321, 258663.754999998956919 ], [ 362732.008599996566772, 258670.014800000935793 ], [ 362721.485100001096725, 258674.7837999984622 ], [ 362714.982500001788139, 258680.852299999445677 ], [ 362709.289800003170967, 258686.505199998617172 ], [ 362700.280100002884865, 258702.896800000220537 ], [ 362700.23870000243187, 258707.751600001007318 ], [ 362703.429799996316433, 258711.788499999791384 ], [ 362705.825300000607967, 258714.552299998700619 ], [ 362708.360799998044968, 258714.079100001603365 ], [ 362712.281199999153614, 258713.971900001168251 ], [ 362745.419200003147125, 258704.954999998211861 ], [ 362759.160599999129772, 258701.056699998676777 ], [ 362764.806599996984005, 258700.891800001263618 ], [ 362771.235600002110004, 258703.47749999910593 ], [ 362774.433799996972084, 258706.670099999755621 ], [ 362777.585400000214577, 258715.350699998438358 ], [ 362779.172799997031689, 258718.318999998271465 ], [ 362781.566600002348423, 258721.2939000017941 ], [ 362787.165799997746944, 258726.61710000038147 ], [ 362789.56139999628067, 258729.380899999290705 ], [ 362810.325900003314018, 258752.982299998402596 ], [ 362811.951099999248981, 258751.517900001257658 ], [ 362814.396999999880791, 258748.371500000357628 ], [ 362790.421599999070168, 258723.05519999936223 ], [ 362784.840400002896786, 258715.621199999004602 ], [ 362783.243900001049042, 258713.708299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86253502, "LATITUDE": 18.32503249, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.70542326100001, "SHAPE_Area": 374.45962390199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366042.262900002300739, 255154.775199998170137 ], [ 366051.129199996590614, 255155.213599998503923 ], [ 366051.233199998736382, 255142.998799998313189 ], [ 366047.399499997496605, 255119.74720000103116 ], [ 366045.074000000953674, 255108.751299999654293 ], [ 366037.729099996387959, 255119.034699998795986 ], [ 366041.607799999415874, 255137.009399998933077 ], [ 366042.295500002801418, 255150.947200000286102 ], [ 366042.262900002300739, 255154.775199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86252768, "LATITUDE": 18.3253927, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.814190854000003, "SHAPE_Area": 342.54562022900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366051.129199996590614, 255155.213599998503923 ], [ 366042.262900002300739, 255154.775199998170137 ], [ 366042.219899997115135, 255159.8125 ], [ 366041.38849999755621, 255162.760999999940395 ], [ 366039.718299999833107, 255169.502399999648333 ], [ 366040.414899997413158, 255182.384799998253584 ], [ 366043.178900003433228, 255193.443599998950958 ], [ 366052.423299998044968, 255192.615600001066923 ], [ 366048.501400001347065, 255179.706700000911951 ], [ 366048.569700002670288, 255171.6858000010252 ], [ 366051.069600000977516, 255162.206999998539686 ], [ 366051.129199996590614, 255155.213599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100504020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93833381, "LATITUDE": 18.38167087, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.32962700500002, "SHAPE_Area": 3271.6409732000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358021.731899999082088, 261352.881499998271465 ], [ 357974.653999999165535, 261294.445500001311302 ], [ 357950.362099997699261, 261306.278999999165535 ], [ 357946.299999997019768, 261309.834399998188019 ], [ 357944.660400003194809, 261312.987300001084805 ], [ 357944.525499999523163, 261328.818300001323223 ], [ 357946.122000001370907, 261330.731199998408556 ], [ 357952.593999996781349, 261328.250999998301268 ], [ 357959.757399998605251, 261339.286499999463558 ], [ 357981.238300003111362, 261373.448399998247623 ], [ 357987.746299996972084, 261366.746700000017881 ], [ 357990.978799998760223, 261365.928700000047684 ], [ 357990.953599996864796, 261368.883799999952316 ], [ 357989.333800002932549, 261369.714999999850988 ], [ 357988.489699997007847, 261374.140999998897314 ], [ 357990.888899996876717, 261376.482700001448393 ], [ 357994.115900002419949, 261376.298000000417233 ], [ 358012.781599998474121, 261362.307500001043081 ], [ 358020.857299998402596, 261360.895899999886751 ], [ 358021.685199998319149, 261358.369600001722574 ], [ 358020.081500001251698, 261357.300999999046326 ], [ 358019.300399996340275, 261354.339299999177456 ], [ 358021.731899999082088, 261352.881499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93452149, "LATITUDE": 18.37782225, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4524.6742521599999, "SHAPE_Area": 14331.033218299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358437.489900000393391, 260823.484200000762939 ], [ 358447.993600003421307, 260821.037000000476837 ], [ 358462.523400001227856, 260819.256099998950958 ], [ 358479.452299997210503, 260819.816799998283386 ], [ 358495.560599997639656, 260822.059599999338388 ], [ 358534.177299998700619, 260832.508200000971556 ], [ 358531.6199000030756, 260848.741399999707937 ], [ 358528.290299996733665, 260860.957600001245737 ], [ 358522.574199996888638, 260869.354600001126528 ], [ 358518.508500002324581, 260873.332100000232458 ], [ 358507.164399996399879, 260879.783100001513958 ], [ 358495.847199998795986, 260883.067999999970198 ], [ 358474.872299998998642, 260884.162900000810623 ], [ 358469.224500000476837, 260884.538899999111891 ], [ 358457.928999997675419, 260885.290800001472235 ], [ 358449.862199999392033, 260885.646899998188019 ], [ 358440.947899997234344, 260890.851300001144409 ], [ 358408.5929000005126, 260902.618900001049042 ], [ 358392.414499998092651, 260908.608199998736382 ], [ 358368.919900000095367, 260921.503699999302626 ], [ 358338.942500002682209, 260938.145799998193979 ], [ 358319.488499999046326, 260950.018899999558926 ], [ 358312.984099999070168, 260956.298500001430511 ], [ 358290.184299997985363, 260982.287500001490116 ], [ 358278.782700002193451, 260995.493000000715256 ], [ 358281.982699997723103, 260998.474599998444319 ], [ 358287.661100000143051, 260994.510200001299381 ], [ 358290.884499996900558, 260994.747699998319149 ], [ 358294.898100003600121, 260996.891499999910593 ], [ 358298.159299999475479, 260992.696299999952316 ], [ 358297.367399998009205, 260991.0011 ], [ 358297.432099997997284, 260983.402300000190735 ], [ 358300.693400003015995, 260979.207100000232458 ], [ 358316.983199998736382, 260960.130899999290705 ], [ 358327.535400003194809, 260951.984600000083447 ], [ 358363.191200003027916, 260931.378199998289347 ], [ 358394.78660000115633, 260914.11600000038743 ], [ 358412.581299997866154, 260907.717700000852346 ], [ 358444.938100002706051, 260895.739100001752377 ], [ 358450.611000001430511, 260892.408100001513958 ], [ 358456.273199997842312, 260890.343499999493361 ], [ 358477.239100001752377, 260890.304000001400709 ], [ 358482.080600000917912, 260889.921399999409914 ], [ 358495.795100003480911, 260889.189300000667572 ], [ 358506.295100003480911, 260887.164299998432398 ], [ 358512.769000001251698, 260884.473099999129772 ], [ 358523.3175999969244, 260876.7489 ], [ 358532.276900000870228, 260866.267599999904633 ], [ 358537.240699999034405, 260851.531700000166893 ], [ 358539.805299997329712, 260834.454100001603365 ], [ 358552.675700001418591, 260838.147999998182058 ], [ 358554.263199999928474, 260841.116300001740456 ], [ 358554.221799999475479, 260845.971099998801947 ], [ 358548.536300003528595, 260850.779699999839067 ], [ 358546.070600003004074, 260856.247999999672174 ], [ 358546.824699997901917, 260862.375900000333786 ], [ 358546.000399999320507, 260864.480099998414516 ], [ 358545.959100000560284, 260869.334899999201298 ], [ 358547.551899999380112, 260871.669900000095367 ], [ 358549.95830000191927, 260873.167300000786781 ], [ 358560.425999999046326, 260874.941700000315905 ], [ 358566.835100002586842, 260879.849300000816584 ], [ 358568.435099996626377, 260881.34010000154376 ], [ 358568.379399999976158, 260887.883499998599291 ], [ 358561.853399999439716, 260896.695999998599291 ], [ 358554.549800001084805, 260902.124699998646975 ], [ 358547.26240000128746, 260905.653599999845028 ], [ 358542.415600001811981, 260906.669399999082088 ], [ 358527.901900000870228, 260906.550599999725819 ], [ 358527.847999997437, 260912.883000001311302 ], [ 358539.939099997282028, 260913.404199998825788 ], [ 358548.824699997901917, 260911.576999999582767 ], [ 358556.918399997055531, 260908.054699998348951 ], [ 358563.408399999141693, 260903.463799998164177 ], [ 358569.925499998033047, 260895.706599999219179 ], [ 358575.659599997103214, 260885.198899999260902 ], [ 358574.903599999845028, 260879.2820999994874 ], [ 358573.316200003027916, 260876.313799999654293 ], [ 358565.303400002419949, 260870.337600000202656 ], [ 358558.066399998962879, 260867.956300001591444 ], [ 358552.425800003111362, 260867.488000001758337 ], [ 358552.522900000214577, 260856.089699998497963 ], [ 358559.846199996769428, 260848.339200001209974 ], [ 358560.713699996471405, 260841.169100001454353 ], [ 358584.854500003159046, 260847.066199999302626 ], [ 358604.193400003015995, 260848.702100001275539 ], [ 358622.758400000631809, 260846.5320999994874 ], [ 358639.739500001072884, 260840.971500001847744 ], [ 358676.129600003361702, 260828.814800001680851 ], [ 358710.10980000346899, 260815.583000000566244 ], [ 358743.281900003552437, 260802.555599998682737 ], [ 358739.293499998748302, 260797.456700000911951 ], [ 358732.027699999511242, 260798.4527000002563 ], [ 358731.20160000026226, 260800.767900001257658 ], [ 358694.793499998748302, 260815.035399999469519 ], [ 358691.577200002968311, 260813.953600000590086 ], [ 358689.995200000703335, 260810.352099999785423 ], [ 358687.596000000834465, 260808.010400000959635 ], [ 358680.368000000715256, 260804.573800001293421 ], [ 358643.25959999859333, 260806.381000000983477 ], [ 358633.587499998509884, 260805.879599999636412 ], [ 358622.317100003361702, 260803.676500000059605 ], [ 358621.535899996757507, 260800.714800000190735 ], [ 358628.03320000320673, 260795.279500000178814 ], [ 358630.49889999628067, 260789.811200000345707 ], [ 358632.12049999833107, 260788.769000001251698 ], [ 358632.982600003480911, 260782.232200000435114 ], [ 358637.996699996292591, 260761.586100000888109 ], [ 358644.600000001490116, 260743.697200000286102 ], [ 358645.451300002634525, 260738.42680000141263 ], [ 358650.287299998104572, 260738.677499998360872 ], [ 358651.129600003361702, 260734.462499998509884 ], [ 358646.300700001418591, 260733.367499999701977 ], [ 358647.144799999892712, 260728.941399998962879 ], [ 358643.120399996638298, 260728.064100001007318 ], [ 358640.705099999904633, 260727.62220000103116 ], [ 358637.336000002920628, 260744.482099998742342 ], [ 358632.372299998998642, 260759.217999998480082 ], [ 358629.033699996769428, 260772.489599999040365 ], [ 358626.501500003039837, 260785.767799999564886 ], [ 358621.600699998438358, 260793.115899998694658 ], [ 358611.039499998092651, 260802.317600000649691 ], [ 358606.975599996745586, 260806.083999998867512 ], [ 358606.939599998295307, 260810.305599998682737 ], [ 358611.755900003015995, 260812.878100000321865 ], [ 358623.060500003397465, 260811.070799998939037 ], [ 358640.790299996733665, 260812.27140000090003 ], [ 358677.092399999499321, 260810.457600001245737 ], [ 358681.921300001442432, 260811.552600000053644 ], [ 358683.517700001597404, 260813.465500000864267 ], [ 358685.11599999666214, 260815.167300000786781 ], [ 358685.083599999547005, 260818.966699998825788 ], [ 358630.085299998521805, 260838.359400000423193 ], [ 358614.738399997353554, 260841.400199998170137 ], [ 358596.98870000243187, 260842.521499998867512 ], [ 358586.515699997544289, 260841.380300000309944 ], [ 358551.120600000023842, 260831.380300000309944 ], [ 358540.825599998235703, 260809.342300001531839 ], [ 358537.004399999976158, 260784.613099999725819 ], [ 358537.070900000631809, 260776.803199999034405 ], [ 358538.750100001692772, 260769.006400000303984 ], [ 358554.397299997508526, 260730.715500000864267 ], [ 358556.026100002229214, 260728.828999999910593 ], [ 358564.240299999713898, 260711.164299998432398 ], [ 358572.501199997961521, 260688.011700000613928 ], [ 358577.425399996340275, 260677.91950000077486 ], [ 358587.261200003325939, 260659.212600000202656 ], [ 358605.253600001335144, 260629.59569999948144 ], [ 358601.263400003314018, 260624.707899998873472 ], [ 358597.183300003409386, 260630.374000001698732 ], [ 358569.623000003397465, 260647.247000001370907 ], [ 358573.615000002086163, 260651.923799999058247 ], [ 358589.827600002288818, 260641.9239999987185 ], [ 358579.99719999730587, 260659.997600000351667 ], [ 358566.876800000667572, 260685.6435999982059 ], [ 358561.923799999058247, 260699.113000001758337 ], [ 358559.45099999755621, 260705.425599999725819 ], [ 358522.146600000560284, 260730.24040000140667 ], [ 358488.917000003159046, 260750.022300001233816 ], [ 358469.464800000190735, 260761.684399999678135 ], [ 358459.753100000321865, 260765.826799999922514 ], [ 358409.612400002777576, 260782.937100000679493 ], [ 358401.52589999884367, 260785.615200001746416 ], [ 358374.82769999653101, 260795.951299998909235 ], [ 358365.108800001442432, 260800.938000001013279 ], [ 358348.9087999984622, 260809.460299998521805 ], [ 358352.094499997794628, 260814.130399998277426 ], [ 358356.945000000298023, 260812.692499998956919 ], [ 358359.354900002479553, 260813.767700001597404 ], [ 358360.946000002324581, 260816.313799999654293 ], [ 358365.805399999022484, 260813.820500001311302 ], [ 358365.035099998116493, 260809.592300001531839 ], [ 358367.484600000083447, 260806.023699998855591 ], [ 358385.293600000441074, 260797.936799999326468 ], [ 358396.617899999022484, 260793.807700000703335 ], [ 358425.73870000243187, 260783.069099999964237 ], [ 358458.075699999928474, 260773.412399999797344 ], [ 358464.551399998366833, 260770.510099999606609 ], [ 358474.263099998235703, 260766.36769999936223 ], [ 358492.095499999821186, 260755.536800000816584 ], [ 358530.191699996590614, 260732.417199999094009 ], [ 358548.03490000218153, 260720.31980000063777 ], [ 358551.254799999296665, 260720.979499999433756 ], [ 358551.23139999806881, 260723.723499998450279 ], [ 358539.721799999475479, 260749.593800000846386 ], [ 358533.125699996948242, 260766.638399999588728 ], [ 358531.459100000560284, 260772.957499999552965 ], [ 358532.173699997365475, 260783.729200001806021 ], [ 358534.283399999141693, 260820.054499998688698 ], [ 358531.839299999177456, 260822.989799998700619 ], [ 358528.599600002169609, 260824.652100000530481 ], [ 358497.223600000143051, 260816.162599999457598 ], [ 358475.471100002527237, 260813.873599998652935 ], [ 358456.924099996685982, 260813.932900000363588 ], [ 358444.006899997591972, 260815.727099999785423 ], [ 358426.226700000464916, 260820.436700001358986 ], [ 358413.282600000500679, 260825.396999999880791 ], [ 358374.417700000107288, 260844.077300000935793 ], [ 358365.506899997591972, 260848.859499998390675 ], [ 358348.497000001370907, 260857.7972999997437 ], [ 358314.513199999928474, 260871.451400000602007 ], [ 358306.412299998104572, 260875.817999999970198 ], [ 358280.484499998390675, 260890.382399998605251 ], [ 358271.552100002765656, 260897.697599999606609 ], [ 358264.226999998092651, 260905.659200001507998 ], [ 358255.240599997341633, 260919.306699998676777 ], [ 358253.629799999296665, 260919.082400001585484 ], [ 358253.676600001752377, 260913.594399999827147 ], [ 358257.826800003647804, 260899.696199998259544 ], [ 358262.729400001466274, 260892.136900000274181 ], [ 358263.560900002717972, 260889.188400000333786 ], [ 358259.563500002026558, 260885.144900001585484 ], [ 358253.030299998819828, 260894.801699999719858 ], [ 358248.896200001239777, 260906.800200000405312 ], [ 358247.204499997198582, 260916.074499998241663 ], [ 358247.89750000089407, 260929.379099998623133 ], [ 358247.069600000977516, 260931.9054000005126 ], [ 358235.621200002729893, 260950.59910000115633 ], [ 358234.782499998807907, 260954.3918999992311 ], [ 358232.334799997508526, 260957.749299999326468 ], [ 358229.04839999973774, 260964.899599999189377 ], [ 358229.032300002872944, 260966.799300000071526 ], [ 358224.113499999046326, 260976.258299998939037 ], [ 358212.564300000667572, 261006.772300001233816 ], [ 358203.49889999628067, 261029.707299999892712 ], [ 358203.480899997055531, 261031.81810000166297 ], [ 358197.732400000095367, 261044.014499999582767 ], [ 358197.026799999177456, 261032.1875 ], [ 358192.376000002026558, 261010.195700000971556 ], [ 358191.677500002086163, 260997.524399999529123 ], [ 358185.250399999320507, 260994.72749999910593 ], [ 358186.704800002276897, 261013.315699998289347 ], [ 358190.585299998521805, 261031.079300001263618 ], [ 358191.975000001490116, 261057.26630000025034 ], [ 358185.488499999046326, 261061.434999998658895 ], [ 358149.002999998629093, 261084.778900001198053 ], [ 358139.271600000560284, 261091.243200000375509 ], [ 358134.381499998271465, 261097.32490000128746 ], [ 358131.105899997055531, 261103.208700001239777 ], [ 358128.616899996995926, 261111.420899998396635 ], [ 358126.876599997282028, 261126.394299998879433 ], [ 358121.923600003123283, 261139.863800000399351 ], [ 358103.150100000202656, 261166.519000001251698 ], [ 358097.433899998664856, 261174.916000001132488 ], [ 358077.162799999117851, 261188.0489999987185 ], [ 358049.541400000452995, 261212.098700001835823 ], [ 358033.29110000282526, 261226.531100001186132 ], [ 358025.143500000238419, 261236.385800000280142 ], [ 358021.858900003135204, 261243.324999999254942 ], [ 358012.098600000143051, 261253.166499998420477 ], [ 358006.409500002861023, 261258.397300001233816 ], [ 357999.879799999296665, 261267.631999999284744 ], [ 357999.053800001740456, 261269.947299998253584 ], [ 357994.165500000119209, 261275.817899998277426 ], [ 357983.615099996328354, 261283.753100000321865 ], [ 357977.947599999606609, 261286.450899999588728 ], [ 357955.277300000190735, 261297.242199998348951 ], [ 357946.370099999010563, 261301.602299999445677 ], [ 357939.035999998450279, 261310.619300000369549 ], [ 357934.057800002396107, 261327.043800000101328 ], [ 357933.217399999499321, 261331.047699999064207 ], [ 357945.983499996364117, 261346.984200000762939 ], [ 357959.757399998605251, 261339.286499999463558 ], [ 357952.593999996781349, 261328.250999998301268 ], [ 357946.122000001370907, 261330.731199998408556 ], [ 357944.525499999523163, 261328.818300001323223 ], [ 357944.660400003194809, 261312.987300001084805 ], [ 357946.299999997019768, 261309.834399998188019 ], [ 357950.362099997699261, 261306.278999999165535 ], [ 357974.653999999165535, 261294.445500001311302 ], [ 357990.848600000143051, 261286.556499999016523 ], [ 358002.228699997067451, 261275.883900001645088 ], [ 358008.770900003612041, 261265.171599999070168 ], [ 358025.035599999129772, 261249.050500001758337 ], [ 358034.844400003552437, 261233.509899999946356 ], [ 358080.343099996447563, 261193.352299999445677 ], [ 358089.262900002300739, 261187.514699999243021 ], [ 358097.369199998676777, 261182.514800000935793 ], [ 358104.679999999701977, 261176.241799999028444 ], [ 358120.206699997186661, 261152.093199998140335 ], [ 358126.729099996387959, 261143.702799998223782 ], [ 358130.008299998939037, 261137.396800000220537 ], [ 358133.345100000500679, 261124.336300000548363 ], [ 358135.078199997544289, 261110.207299999892712 ], [ 358136.73030000180006, 261105.576699998229742 ], [ 358140.821199998259544, 261098.644099999219179 ], [ 358145.698700003325939, 261094.03999999910593 ], [ 358187.04900000244379, 261067.569499999284744 ], [ 358194.345399998128414, 261062.985199999064207 ], [ 358201.668700002133846, 261055.234700001776218 ], [ 358206.634199999272823, 261040.28770000115037 ], [ 358209.125100001692772, 261031.86430000141263 ], [ 358220.67059999704361, 261001.772399999201298 ], [ 358233.026100002229214, 260971.265000000596046 ], [ 358238.770900003612041, 260959.490800000727177 ], [ 358242.879799999296665, 260950.447399999946356 ], [ 358245.323899999260902, 260947.512099999934435 ], [ 358246.1554000005126, 260944.5636 ], [ 358247.780599996447563, 260943.099199999123812 ], [ 358250.244499996304512, 260937.842000000178814 ], [ 358264.131700001657009, 260916.8462999984622 ], [ 358270.664899997413158, 260907.189500000327826 ], [ 358278.798100002110004, 260899.023400001227856 ], [ 358301.495399996638298, 260885.065900001674891 ], [ 358313.64580000191927, 260878.621500000357628 ], [ 358338.729599997401237, 260868.483199998736382 ], [ 358357.341300003230572, 260860.824999999254942 ], [ 358375.978200003504753, 260850.211800001561642 ], [ 358416.464599996805191, 260830.48930000141263 ], [ 358437.489900000393391, 260823.484200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93628655000001, "LATITUDE": 18.37876465, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.11503899, "SHAPE_Area": 467.13270901599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358212.564300000667572, 261006.772300001233816 ], [ 358191.677500002086163, 260997.524399999529123 ], [ 358192.376000002026558, 261010.195700000971556 ], [ 358197.026799999177456, 261032.1875 ], [ 358197.732400000095367, 261044.014499999582767 ], [ 358203.480899997055531, 261031.81810000166297 ], [ 358203.49889999628067, 261029.707299999892712 ], [ 358212.564300000667572, 261006.772300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93380115, "LATITUDE": 18.37790952, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.69150443699999, "SHAPE_Area": 466.79418849899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358450.611000001430511, 260892.408100001513958 ], [ 358478.895599998533726, 260979.821199998259544 ], [ 358465.772699996829033, 260911.108399998396635 ], [ 358456.273199997842312, 260890.343499999493361 ], [ 358450.611000001430511, 260892.408100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93501132, "LATITUDE": 18.37772968, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.06891503, "SHAPE_Area": 2363.8370032100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358368.919900000095367, 260921.503699999302626 ], [ 358338.729599997401237, 260868.483199998736382 ], [ 358313.64580000191927, 260878.621500000357628 ], [ 358301.495399996638298, 260885.065900001674891 ], [ 358338.942500002682209, 260938.145799998193979 ], [ 358368.919900000095367, 260921.503699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93557755, "LATITUDE": 18.37745538, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.492869976099996, "SHAPE_Area": 257.354244069 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358294.463299997150898, 260858.621700000017881 ], [ 358291.27759999781847, 260853.951499998569489 ], [ 358262.016599997878075, 260881.154199998825788 ], [ 358259.563500002026558, 260885.144900001585484 ], [ 358263.560900002717972, 260889.188400000333786 ], [ 358266.82209999859333, 260884.993200000375509 ], [ 358294.463299997150898, 260858.621700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9527499, "LATITUDE": 18.37686319, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.89386772500001, "SHAPE_Area": 1797.7305461200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356488.879000000655651, 260778.615899998694658 ], [ 356476.829300001263618, 260773.239900000393391 ], [ 356471.244400002062321, 260766.228199999779463 ], [ 356467.293799996376038, 260756.696600001305342 ], [ 356453.332900002598763, 260786.346500001847744 ], [ 356434.056999996304512, 260777.322799999266863 ], [ 356431.591300003230572, 260782.79109999909997 ], [ 356431.55349999666214, 260787.223799999803305 ], [ 356432.332900002598763, 260790.396499998867512 ], [ 356437.944700002670288, 260794.24210000038147 ], [ 356438.6503000035882, 260806.069200001657009 ], [ 356440.239500001072884, 260808.826400000602007 ], [ 356447.503499999642372, 260808.041499998420477 ], [ 356453.910899996757507, 260813.160100001841784 ], [ 356458.730800002813339, 260815.310499999672174 ], [ 356463.561499997973442, 260816.194400001317263 ], [ 356465.993000000715256, 260814.736699998378754 ], [ 356466.059500001370907, 260806.92680000141263 ], [ 356467.71169999986887, 260802.29619999974966 ], [ 356474.09570000320673, 260810.158900000154972 ], [ 356477.306500002741814, 260811.874000001698732 ], [ 356482.155199997127056, 260810.647100001573563 ], [ 356483.8074000030756, 260806.016600001603365 ], [ 356484.637100003659725, 260803.279100000858307 ], [ 356488.879000000655651, 260778.615899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301026700", "MAP": "D9-2123-T82", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93059804000001, "LATITUDE": 18.37668605, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.21534057900001, "SHAPE_Area": 1980.2749129399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358832.784400001168251, 260803.076999999582767 ], [ 358789.680500000715256, 260751.42850000038743 ], [ 358784.781499996781349, 260758.565600000321865 ], [ 358783.950000002980232, 260761.51410000026226 ], [ 358782.324799999594688, 260762.978399999439716 ], [ 358778.210500001907349, 260772.655099999159575 ], [ 358774.130400002002716, 260778.321199998259544 ], [ 358814.835199996829033, 260827.627999998629093 ], [ 358816.464000001549721, 260825.741500001400709 ], [ 358822.948600001633167, 260821.7837999984622 ], [ 358827.01799999922514, 260817.384199999272823 ], [ 358831.152000002563, 260805.38569999858737 ], [ 358832.784400001168251, 260803.076999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95240633, "LATITUDE": 18.37662857, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.28585403400001, "SHAPE_Area": 1731.9440847400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356464.158500000834465, 260746.116300001740456 ], [ 356464.941399998962879, 260748.866900000721216 ], [ 356471.364900000393391, 260752.085900001227856 ], [ 356476.109300002455711, 260763.101599998772144 ], [ 356488.879000000655651, 260778.615899998694658 ], [ 356484.637100003659725, 260803.279100000858307 ], [ 356489.528899997472763, 260796.986400000751019 ], [ 356494.406300000846386, 260792.382199998944998 ], [ 356496.054899998009205, 260788.173900000751019 ], [ 356501.686499997973442, 260789.697599999606609 ], [ 356501.715300001204014, 260786.320300001651049 ], [ 356503.340499997138977, 260784.855999998748302 ], [ 356513.025200001895428, 260783.879799999296665 ], [ 356517.071199998259544, 260782.22410000115633 ], [ 356517.91889999806881, 260777.375900000333786 ], [ 356523.61879999935627, 260770.878699999302626 ], [ 356523.670900002121925, 260764.757399998605251 ], [ 356524.502400003373623, 260761.808899998664856 ], [ 356526.959100000560284, 260757.396000001579523 ], [ 356529.395999997854233, 260755.304999999701977 ], [ 356509.313799999654293, 260746.27479999884963 ], [ 356500.428099997341633, 260748.10190000012517 ], [ 356464.158500000834465, 260746.116300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92915079, "LATITUDE": 18.37677127, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.959225851, "SHAPE_Area": 750.36056534600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358954.77139999717474, 260776.633200000971556 ], [ 358952.339800000190735, 260778.090999998152256 ], [ 358949.065999999642372, 260783.763700000941753 ], [ 358944.181400001049042, 260789.212200000882149 ], [ 358943.35530000180006, 260791.527499999850988 ], [ 358944.066299997270107, 260802.721200000494719 ], [ 358945.623199999332428, 260809.277899999171495 ], [ 358949.608000002801418, 260814.798900000751019 ], [ 358955.225199997425079, 260818.011300001293421 ], [ 358961.670299999415874, 260818.697299998253584 ], [ 358974.585699997842312, 260817.11430000141263 ], [ 358954.77139999717474, 260776.633200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93095142, "LATITUDE": 18.37658541, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.71593386200001, "SHAPE_Area": 405.093622783 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358789.680500000715256, 260751.42850000038743 ], [ 358779.974200002849102, 260754.937600001692772 ], [ 358767.688900001347065, 260777.212999999523163 ], [ 358761.177299998700619, 260784.336899999529123 ], [ 358750.626900002360344, 260792.272100001573563 ], [ 358739.293499998748302, 260797.456700000911951 ], [ 358743.281900003552437, 260802.555599998682737 ], [ 358755.430600002408028, 260796.322200000286102 ], [ 358763.549400001764297, 260789.844700001180172 ], [ 358768.423299998044968, 260785.662799999117851 ], [ 358774.130400002002716, 260778.321199998259544 ], [ 358778.210500001907349, 260772.655099999159575 ], [ 358782.324799999594688, 260762.978399999439716 ], [ 358783.950000002980232, 260761.51410000026226 ], [ 358784.781499996781349, 260758.565600000321865 ], [ 358789.680500000715256, 260751.42850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95269756, "LATITUDE": 18.37639481, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.83421900499999, "SHAPE_Area": 511.89807494299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356480.633599996566772, 260705.2989999987185 ], [ 356476.637999996542931, 260701.044399999082088 ], [ 356467.691200003027916, 260710.048200000077486 ], [ 356461.154399998486042, 260720.127199999988079 ], [ 356458.688699997961521, 260725.595400001853704 ], [ 356457.781700000166893, 260737.409200001507998 ], [ 356459.262999996542931, 260752.831199999898672 ], [ 356467.293799996376038, 260756.696600001305342 ], [ 356471.244400002062321, 260766.228199999779463 ], [ 356476.829300001263618, 260773.239900000393391 ], [ 356488.879000000655651, 260778.615899998694658 ], [ 356476.109300002455711, 260763.101599998772144 ], [ 356471.364900000393391, 260752.085900001227856 ], [ 356464.941399998962879, 260748.866900000721216 ], [ 356464.158500000834465, 260746.116300001740456 ], [ 356463.478000000119209, 260731.334199998527765 ], [ 356465.958099998533726, 260724.177299998700619 ], [ 356474.129100002348423, 260711.578499998897314 ], [ 356480.633599996566772, 260705.2989999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95242394, "LATITUDE": 18.37628644, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.29575723100001, "SHAPE_Area": 2612.2600623200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356532.025399997830391, 260730.628600001335144 ], [ 356495.267700001597404, 260691.275499999523163 ], [ 356490.386600002646446, 260696.30180000141263 ], [ 356491.142599999904633, 260702.218600001186132 ], [ 356486.281300000846386, 260704.923000000417233 ], [ 356482.258799999952316, 260703.834600001573563 ], [ 356480.633599996566772, 260705.2989999987185 ], [ 356474.129100002348423, 260711.578499998897314 ], [ 356465.958099998533726, 260724.177299998700619 ], [ 356463.478000000119209, 260731.334199998527765 ], [ 356464.158500000834465, 260746.116300001740456 ], [ 356500.428099997341633, 260748.10190000012517 ], [ 356509.313799999654293, 260746.27479999884963 ], [ 356529.395999997854233, 260755.304999999701977 ], [ 356531.831200003623962, 260753.42509999871254 ], [ 356531.919299997389317, 260743.082299999892712 ], [ 356530.35700000077486, 260737.158900000154972 ], [ 356528.767800003290176, 260734.401599999517202 ], [ 356532.025399997830391, 260730.628600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.930632, "LATITUDE": 18.37487097, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1474.8382027600001, "SHAPE_Area": 5668.8475507499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358780.183100000023842, 260541.101599998772144 ], [ 358763.088699996471405, 260559.960099998861551 ], [ 358750.851999998092651, 260576.536299999803305 ], [ 358746.786300003528595, 260580.513799998909235 ], [ 358712.700000002980232, 260606.199299998581409 ], [ 358673.79559999704361, 260629.523400001227856 ], [ 358670.554099999368191, 260631.396699998527765 ], [ 358672.937100000679493, 260635.638099998235703 ], [ 358675.325499996542931, 260639.246199999004602 ], [ 358677.751599997282028, 260638.421700000762939 ], [ 358680.154399998486042, 260640.3412000015378 ], [ 358685.017399996519089, 260637.425700001418591 ], [ 358684.232699997723103, 260634.886199999600649 ], [ 358685.051600001752377, 260633.415199998766184 ], [ 358702.883900001645088, 260622.584300000220537 ], [ 358719.90820000320673, 260611.957899998873472 ], [ 358749.118900001049042, 260590.665399998426437 ], [ 358760.502599999308586, 260579.570599999278784 ], [ 358764.580899998545647, 260574.115600001066923 ], [ 358770.295199997723103, 260565.929699998348951 ], [ 358780.885099999606609, 260553.350699998438358 ], [ 358784.958099998533726, 260548.528900001198053 ], [ 358797.137299999594688, 260538.70719999819994 ], [ 358813.347999997437, 260528.918499998748302 ], [ 358833.581399999558926, 260520.218199998140335 ], [ 358860.250799998641014, 260513.259300000965595 ], [ 358864.271600000560284, 260514.558699999004602 ], [ 358864.230200000107288, 260519.413499999791384 ], [ 358858.55009999871254, 260523.588899999856949 ], [ 358847.166400000452995, 260534.683699999004602 ], [ 358831.673799999058247, 260554.821899998933077 ], [ 358823.506399996578693, 260566.998500000685453 ], [ 358811.204899996519089, 260591.173500001430511 ], [ 358805.468999996781349, 260601.892400000244379 ], [ 358802.164700001478195, 260611.153400000184774 ], [ 358800.481899999082088, 260619.372299998998642 ], [ 358801.200099997222424, 260629.721799999475479 ], [ 358801.891400001943111, 260643.237399999052286 ], [ 358800.030599996447563, 260672.353100001811981 ], [ 358795.183700002729893, 260673.368900001049042 ], [ 358772.664499998092651, 260666.42960000038147 ], [ 358762.983400002121925, 260666.983600001782179 ], [ 358761.36710000038147, 260667.392599999904633 ], [ 358727.439099997282028, 260674.503199998289347 ], [ 358709.66780000180006, 260678.157400000840425 ], [ 358703.185000002384186, 260681.904100000858307 ], [ 358699.934500001370907, 260684.832800000905991 ], [ 358696.66610000282526, 260689.872299998998642 ], [ 358685.291400000452995, 260699.911699999123812 ], [ 358684.465400002896786, 260702.22690000012517 ], [ 358682.847300000488758, 260702.846999999135733 ], [ 358683.630300000309944, 260705.597600001841784 ], [ 358686.031199999153614, 260707.728199999779463 ], [ 358699.034699998795986, 260695.802299998700619 ], [ 358702.241999998688698, 260697.939500000327826 ], [ 358704.686099998652935, 260695.004099998623133 ], [ 358703.086099997162819, 260693.513399999588728 ], [ 358703.111199997365475, 260690.558299999684095 ], [ 358710.416599996387959, 260684.918600000441074 ], [ 358762.123099997639656, 260673.309399999678135 ], [ 358776.636699996888638, 260673.428199999034405 ], [ 358783.069200001657009, 260675.59180000051856 ], [ 358791.915299996733665, 260678.408399999141693 ], [ 358797.528899997472763, 260682.042899999767542 ], [ 358799.926299996674061, 260684.59569999948144 ], [ 358803.099399998784065, 260690.743400000035763 ], [ 358803.018500000238419, 260700.241900000721216 ], [ 358796.348600000143051, 260725.940699998289347 ], [ 358792.219899997115135, 260737.306000001728535 ], [ 358779.974200002849102, 260754.937600001692772 ], [ 358789.680500000715256, 260751.42850000038743 ], [ 358795.387599997222424, 260744.086899999529123 ], [ 358798.663199998438358, 260738.203099999576807 ], [ 358802.802699998021126, 260725.571400001645088 ], [ 358806.979900002479553, 260708.506999999284744 ], [ 358809.494099996984005, 260697.339600000530481 ], [ 358809.522900000214577, 260693.96229999884963 ], [ 358809.609200000762939, 260683.830600000917912 ], [ 358808.057700000703335, 260676.640700001269579 ], [ 358807.584100000560284, 260637.584499999880791 ], [ 358806.07039999961853, 260625.962000001221895 ], [ 358806.948600001633167, 260617.525400001555681 ], [ 358808.608000002801418, 260612.050599999725819 ], [ 358811.914200000464916, 260602.578400000929832 ], [ 358830.755999997258186, 260567.902199998497963 ], [ 358831.585699997842312, 260565.164799999445677 ], [ 358843.0, 260550.481600001454353 ], [ 358856.037600003182888, 260534.545200001448393 ], [ 358879.598700001835823, 260513.839800000190735 ], [ 358883.669799998402596, 260509.229100000113249 ], [ 358886.913099996745586, 260507.14469999819994 ], [ 358921.701399996876717, 260493.708299998193979 ], [ 358946.759999997913837, 260486.525100000202656 ], [ 358959.693400003015995, 260482.831300001591444 ], [ 358952.503100000321865, 260474.962000001221895 ], [ 358922.593999996781349, 260483.583099998533726 ], [ 358902.371500000357628, 260491.017000000923872 ], [ 358882.147100001573563, 260498.661899998784065 ], [ 358852.243400000035763, 260506.64979999884963 ], [ 358826.382100000977516, 260513.404199998825788 ], [ 358808.578500002622604, 260520.857900001108646 ], [ 358792.364100001752377, 260531.068799998611212 ], [ 358780.183100000023842, 260541.101599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301026100", "MAP": "D9-2123-T82", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93191575, "LATITUDE": 18.37566962, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.74935045699999, "SHAPE_Area": 2194.3978024500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358696.66610000282526, 260689.872299998998642 ], [ 358662.39750000089407, 260642.306800000369549 ], [ 358631.581399999558926, 260662.741799999028444 ], [ 358672.273599997162819, 260713.526200000196695 ], [ 358683.630300000309944, 260705.597600001841784 ], [ 358682.847300000488758, 260702.846999999135733 ], [ 358684.465400002896786, 260702.22690000012517 ], [ 358685.291400000452995, 260699.911699999123812 ], [ 358696.66610000282526, 260689.872299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "B9-508-T83", "PARCEL_NAM": "ROW 10-A-B", "ACRE": "0.176", "LONGITUDE": -64.9302193, "LATITUDE": 18.3758128, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.77007094699999, "SHAPE_Area": 641.25781102999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358809.522900000214577, 260693.96229999884963 ], [ 358813.572499997913837, 260691.884500000625849 ], [ 358825.65990000218153, 260692.827899999916553 ], [ 358837.72410000115633, 260696.5152000002563 ], [ 358848.972900003194809, 260701.251299999654293 ], [ 358861.040600001811981, 260704.516499999910593 ], [ 358872.320000000298023, 260705.664299998432398 ], [ 358881.198399998247623, 260704.681499999016523 ], [ 358877.240599997341633, 260695.994199998676777 ], [ 358865.948600001633167, 260696.324000000953674 ], [ 358860.311599999666214, 260695.433499999344349 ], [ 358853.071000002324581, 260693.474399998784065 ], [ 358837.004100002348423, 260686.376800000667572 ], [ 358820.904799997806549, 260683.078600000590086 ], [ 358809.609200000762939, 260683.830600000917912 ], [ 358809.522900000214577, 260693.96229999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "B9-508-T83", "PARCEL_NAM": "ROW 10-A-C", "ACRE": "0.129", "LONGITUDE": -64.93033175, "LATITUDE": 18.37561485, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.620435282, "SHAPE_Area": 341.01125655499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358857.377700001001358, 260661.21229999884963 ], [ 358853.403599999845028, 260654.424800001084805 ], [ 358851.751500003039837, 260659.055300001055002 ], [ 358842.016400001943111, 260665.941700000315905 ], [ 358833.915500000119209, 260670.308400001376867 ], [ 358822.591099999845028, 260674.437600001692772 ], [ 358808.057700000703335, 260676.640700001269579 ], [ 358809.609200000762939, 260683.830600000917912 ], [ 358820.904799997806549, 260683.078600000590086 ], [ 358820.922799997031689, 260680.967799998819828 ], [ 358831.431800000369549, 260677.887499999254942 ], [ 358843.576800003647804, 260672.076200000941753 ], [ 358855.743500001728535, 260663.732099998742342 ], [ 358857.377700001001358, 260661.21229999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101102010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95136056, "LATITUDE": 18.37536966, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.304401238, "SHAPE_Area": 465.94248183500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356627.167700000107288, 260637.048500001430511 ], [ 356626.384800001978874, 260634.297899998724461 ], [ 356622.344200000166893, 260635.320300001651049 ], [ 356619.934299997985363, 260634.245099999010563 ], [ 356618.380999997258186, 260627.26630000025034 ], [ 356595.215499997138977, 260601.534400001168251 ], [ 356595.249700002372265, 260597.523899998515844 ], [ 356587.942500002682209, 260603.374699998646975 ], [ 356612.71339999884367, 260629.964099999517202 ], [ 356614.291900001466274, 260633.987799998372793 ], [ 356612.565999999642372, 260647.272599998861551 ], [ 356615.762500002980232, 260650.676199998706579 ], [ 356618.9679000005126, 260653.024500001221895 ], [ 356626.316500000655651, 260642.318900000303984 ], [ 356627.957900002598763, 260638.954799998551607 ], [ 356627.167700000107288, 260637.048500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95036341, "LATITUDE": 18.37507201, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.78045783800002, "SHAPE_Area": 2378.81783253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356725.479599997401237, 260550.038199998438358 ], [ 356703.838600002229214, 260534.662399999797344 ], [ 356704.152199998497963, 260592.504599999636412 ], [ 356704.634900003671646, 260630.505300000309944 ], [ 356710.268299996852875, 260631.817999999970198 ], [ 356714.260300002992153, 260636.494699999690056 ], [ 356713.428800001740456, 260639.443199999630451 ], [ 356714.982100002467632, 260646.421999998390675 ], [ 356716.560500003397465, 260650.445700000971556 ], [ 356720.563299998641014, 260653.855999998748302 ], [ 356724.607500001788139, 260652.411400001496077 ], [ 356730.287600003182888, 260648.236099999397993 ], [ 356725.479599997401237, 260550.038199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92867312, "LATITUDE": 18.37526781, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.669081023499999, "SHAPE_Area": 297.35395242200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359012.545699998736382, 260620.6858000010252 ], [ 359006.804399996995926, 260632.037799999117851 ], [ 359004.381899997591972, 260632.440200001001358 ], [ 359002.781800001859665, 260630.949400000274181 ], [ 358998.7179000005126, 260634.715900000184774 ], [ 359000.32150000333786, 260635.784499999135733 ], [ 359001.106299996376038, 260638.324000000953674 ], [ 358996.228799998760223, 260642.928100001066923 ], [ 359001.808300003409386, 260650.57319999858737 ], [ 359014.012699998915195, 260637.796399999409914 ], [ 359019.746799997985363, 260627.288600001484156 ], [ 359020.569300003349781, 260625.395500000566244 ], [ 359012.545699998736382, 260620.6858000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92883492, "LATITUDE": 18.37532541, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.270948540399999, "SHAPE_Area": 66.210336086300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358988.108199998736382, 260649.616700001060963 ], [ 358996.228799998760223, 260642.928100001066923 ], [ 358989.060099996626377, 260632.52589999884367 ], [ 358988.108199998736382, 260649.616700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93110926, "LATITUDE": 18.37418469, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 770.89869174900002, "SHAPE_Area": 2294.2224558500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358843.805600002408028, 260455.918299999088049 ], [ 358872.89750000089407, 260448.557000000029802 ], [ 358893.112899996340275, 260441.967500001192093 ], [ 358918.986800000071526, 260433.735500000417233 ], [ 358914.998400002717972, 260428.636599998921156 ], [ 358897.207400001585484, 260434.612700000405312 ], [ 358890.738899998366833, 260436.670699998736382 ], [ 358880.226300001144409, 260440.173300001770258 ], [ 358847.092000000178814, 260448.76799999922514 ], [ 358811.531499996781349, 260458.187300000339746 ], [ 358801.821599997580051, 260462.118599999696016 ], [ 358787.255800001323223, 260468.121100001037121 ], [ 358774.291900001466274, 260475.403299998492002 ], [ 358766.178400002419949, 260481.247499998658895 ], [ 358752.384800001978874, 260491.267099998891354 ], [ 358729.612000003457069, 260514.089899998158216 ], [ 358726.348999999463558, 260518.496100001037121 ], [ 358710.055500000715256, 260537.994500000029802 ], [ 358694.609700001776218, 260552.644600000232458 ], [ 358677.553099997341633, 260567.070500001311302 ], [ 358663.770199999213219, 260575.823600001633167 ], [ 358637.034299999475479, 260590.592399999499321 ], [ 358628.911799997091293, 260597.491999998688698 ], [ 358610.224500000476837, 260614.015500001609325 ], [ 358601.263400003314018, 260624.707899998873472 ], [ 358605.253600001335144, 260629.59569999948144 ], [ 358606.893200002610683, 260626.442699998617172 ], [ 358619.909299999475479, 260613.039299998432398 ], [ 358640.216300003230572, 260595.68470000103116 ], [ 358644.273100003600121, 260592.762600000947714 ], [ 358670.190200001001358, 260579.464699998497963 ], [ 358679.921700000762939, 260573.000500001013279 ], [ 358691.289200000464916, 260563.805399999022484 ], [ 358710.798900000751019, 260545.388799998909235 ], [ 358724.630300000309944, 260530.936599999666214 ], [ 358735.230999998748302, 260517.0912000015378 ], [ 358753.126299999654293, 260498.872499998658895 ], [ 358770.982100002467632, 260485.297600001096725 ], [ 358788.814499996602535, 260474.466600000858307 ], [ 358814.713600002229214, 260463.279599998146296 ], [ 358843.805600002408028, 260455.918299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "B9-508-T83", "PARCEL_NAM": "ROW 10-A-D", "ACRE": "0.240", "LONGITUDE": -64.92994446, "LATITUDE": 18.37486593, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.81805955799999, "SHAPE_Area": 659.29613145200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358894.409800000488758, 260573.700500000268221 ], [ 358868.535800002515316, 260581.932500001043081 ], [ 358862.053000003099442, 260585.679099999368191 ], [ 358854.756599999964237, 260590.263399999588728 ], [ 358846.608999997377396, 260600.118099998682737 ], [ 358841.67400000244379, 260611.476799998432398 ], [ 358839.94990000128746, 260624.550500001758337 ], [ 358841.530100002884865, 260628.363099999725819 ], [ 358846.396799996495247, 260625.025400001555681 ], [ 358847.29839999973774, 260613.844900000840425 ], [ 358848.954199999570847, 260608.792199999094009 ], [ 358850.59740000218153, 260605.217000000178814 ], [ 358859.560300000011921, 260594.313499998301268 ], [ 358870.906199999153614, 260587.651399999856949 ], [ 358906.481100000441074, 260576.543499998748302 ], [ 358910.519799999892712, 260575.732200000435114 ], [ 358919.383900001645088, 260576.438000001013279 ], [ 358925.875699996948242, 260571.635999999940395 ], [ 358918.631499998271465, 260570.09910000115633 ], [ 358910.568400003015995, 260570.033100001513958 ], [ 358900.878300003707409, 260571.642499998211861 ], [ 358894.409800000488758, 260573.700500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92909642, "LATITUDE": 18.37479001, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.595588904700001, "SHAPE_Area": 104.422040135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358971.781599998474121, 260578.344500001519918 ], [ 358970.192400000989437, 260575.58729999884963 ], [ 358962.895999997854233, 260580.171599999070168 ], [ 358954.008599996566772, 260582.209800001233816 ], [ 358957.993400000035763, 260587.730900000780821 ], [ 358964.45830000191927, 260586.094999998807907 ], [ 358973.376199997961521, 260580.468499999493361 ], [ 358971.781599998474121, 260578.344500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92703747, "LATITUDE": 18.37368465, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 515.29371579400004, "SHAPE_Area": 2239.0780725200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359236.758500002324581, 260426.414900001138449 ], [ 359252.213299997150898, 260410.709399998188019 ], [ 359255.488899998366833, 260404.825599998235703 ], [ 359260.3699000030756, 260399.799300000071526 ], [ 359267.666299998760223, 260395.214999999850988 ], [ 359280.608599998056889, 260390.465700000524521 ], [ 359274.219300001859665, 260383.236299999058247 ], [ 359262.086800001561642, 260387.569899998605251 ], [ 359255.600299999117851, 260391.738699998706579 ], [ 359249.909400001168251, 260397.180599998682737 ], [ 359246.639200001955032, 260402.431099999696016 ], [ 359236.864500001072884, 260413.961300000548363 ], [ 359223.043999999761581, 260427.147100001573563 ], [ 359216.550300002098083, 260432.160199999809265 ], [ 359208.431400001049042, 260438.637600000947714 ], [ 359195.462099999189377, 260446.552999999374151 ], [ 359161.368600003421307, 260473.082899998873472 ], [ 359115.095899999141693, 260509.434399999678135 ], [ 359098.062600001692772, 260521.116200000047684 ], [ 359083.448299996554852, 260532.817899998277426 ], [ 359087.415200002491474, 260540.449700001627207 ], [ 359141.785099998116493, 260500.153599999845028 ], [ 359145.019400000572205, 260499.124699998646975 ], [ 359147.414899997413158, 260501.8885000012815 ], [ 359149.848300002515316, 260500.2195999994874 ], [ 359149.095899999141693, 260493.880699999630451 ], [ 359189.681199997663498, 260462.548799999058247 ], [ 359216.447800002992153, 260444.191700000315905 ], [ 359229.442299999296665, 260433.321100000292063 ], [ 359236.758500002324581, 260426.414900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301013500", "MAP": "D9-1542-T80", "PARCEL_NAM": "10-5", "ACRE": ".5", "LONGITUDE": -64.93019168, "LATITUDE": 18.37339338, "OBJECTID_1": 826, "PARCEL_NO_": "101301013500", "Tax_Legal_": "PETERBORG 10-5 GT. NORTHSIDE", "Name": "DELFANI, IRAJ", "Address": "425 South St", "City": "Honolulu", "State": "Hawaii", "Zip": 96813, "Country": "United States", "Land_Value": 223000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.03047668900001, "SHAPE_Area": 1438.2510787599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358847.092000000178814, 260448.76799999922514 ], [ 358880.226300001144409, 260440.173300001770258 ], [ 358876.237899996340275, 260435.074400000274181 ], [ 358873.847699999809265, 260431.677299998700619 ], [ 358850.705600000917912, 260403.201400000602007 ], [ 358837.754299998283386, 260409.006000000983477 ], [ 358818.361400000751019, 260413.702399998903275 ], [ 358847.092000000178814, 260448.76799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102012800", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".66", "LONGITUDE": -64.95066975, "LATITUDE": 18.37328549, "OBJECTID_1": 385, "PARCEL_NO_": "101102012800", "Tax_Legal_": "HULL 4-23 LT. NORTHSIDE", "Name": "WIEGAND, JOHN A", "Address": "7713 Lower Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 105200, "Improved_V": 203500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.727834814, "SHAPE_Area": 3032.4110620299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356715.437299996614456, 260403.668200001120567 ], [ 356715.462499998509884, 260400.713100001215935 ], [ 356705.208800002932549, 260373.820300001651049 ], [ 356689.915899999439716, 260370.5287000015378 ], [ 356677.867899999022484, 260364.941700000315905 ], [ 356666.602899998426437, 260362.10530000180006 ], [ 356660.146999999880791, 260362.685699999332428 ], [ 356656.891199998557568, 260366.247600000351667 ], [ 356656.828299999237061, 260373.635400000959635 ], [ 356665.262599997222424, 260424.789099998772144 ], [ 356711.992700003087521, 260429.393399998545647 ], [ 356715.437299996614456, 260403.668200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92623043, "LATITUDE": 18.37327771, "OBJECTID_1": 818, "PARCEL_NO_": "101301012400", "Tax_Legal_": "PETERBORG 10-2-4 No.12 GREAT NORTHSIDE QTR.", "Name": "L. L. HOLDING, LLC", "Address": "P O BOX 4998", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 231600, "Improved_V": 751800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.83893920599999, "SHAPE_Area": 1833.7281232099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359304.5641999989748, 260418.103999998420477 ], [ 359280.608599998056889, 260390.465700000524521 ], [ 359267.666299998760223, 260395.214999999850988 ], [ 359260.3699000030756, 260399.799300000071526 ], [ 359255.488899998366833, 260404.825599998235703 ], [ 359252.213299997150898, 260410.709399998188019 ], [ 359236.758500002324581, 260426.414900001138449 ], [ 359240.633599996566772, 260444.811799999326468 ], [ 359304.5641999989748, 260418.103999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102012700", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".61", "LONGITUDE": -64.95132403, "LATITUDE": 18.37329398, "OBJECTID_1": 384, "PARCEL_NO_": "101102012700", "Tax_Legal_": "HULL 4-29 LT. NORTHSIDE", "Name": "NYRUI REALITY LLC", "Address": "PO Box 9285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 162500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.70529975599999, "SHAPE_Area": 2816.0809982199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356651.965199999511242, 260376.550900001078844 ], [ 356603.557700000703335, 260379.532200001180172 ], [ 356577.741300001740456, 260381.009700000286102 ], [ 356579.291000001132488, 260388.410599999129772 ], [ 356578.375, 260401.279800001531839 ], [ 356576.704899996519089, 260408.021200001239777 ], [ 356581.508599996566772, 260412.071199998259544 ], [ 356587.086199998855591, 260419.927400000393391 ], [ 356657.312700003385544, 260411.42509999871254 ], [ 356651.965199999511242, 260376.550900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9277244, "LATITUDE": 18.37306847, "OBJECTID_1": 823, "PARCEL_NO_": "101301013100", "Tax_Legal_": "PETERBORG 10-2-19\nNo.12 GREAT NORTHSIDE QTR.", "Name": "PLAYA VISTA PROPERTIES LLC", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.343106328, "SHAPE_Area": 2767.7430018700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359149.246200002729893, 260381.580099999904633 ], [ 359140.628499999642372, 260351.956500001251698 ], [ 359074.941399998962879, 260395.537399999797344 ], [ 359083.456600002944469, 260437.192600000649691 ], [ 359149.246200002729893, 260381.580099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92659407, "LATITUDE": 18.37304217, "OBJECTID_1": 821, "PARCEL_NO_": "101301012800", "Tax_Legal_": "10-2-3 ESTATE PETERBORG GR NORTHSIDE QTR", "Name": "ADOLPHUS, ELENA and RENEL SMITH", "Address": "PO BOX 303948", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 181200, "Improved_V": 759700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.39278343800001, "SHAPE_Area": 3097.9443484499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359274.219300001859665, 260383.236299999058247 ], [ 359246.271600000560284, 260350.921300001442432 ], [ 359188.620700001716614, 260397.734400000423193 ], [ 359216.550300002098083, 260432.160199999809265 ], [ 359223.043999999761581, 260427.147100001573563 ], [ 359236.864500001072884, 260413.961300000548363 ], [ 359246.639200001955032, 260402.431099999696016 ], [ 359249.909400001168251, 260397.180599998682737 ], [ 359255.600299999117851, 260391.738699998706579 ], [ 359262.086800001561642, 260387.569899998605251 ], [ 359274.219300001859665, 260383.236299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92953536, "LATITUDE": 18.37313754, "OBJECTID_1": 824, "PARCEL_NO_": "101301013300", "Tax_Legal_": "PETERBORG 10-3-4 GREAT NORTHSIDE QTR", "Name": "JASETH III LLC", "Address": "130 Campbell Dr", "City": "Far Hills", "State": "New Jersey", "Zip": 7931, "Country": "United States", "Land_Value": 264600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.48049567000001, "SHAPE_Area": 2349.8845860800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358954.655199997127056, 260411.651500001549721 ], [ 358923.595600001513958, 260366.012200001627207 ], [ 358917.0912000015378, 260372.291799999773502 ], [ 358908.17679999768734, 260377.496199999004602 ], [ 358898.479400001466274, 260379.94990000128746 ], [ 358881.482100002467632, 260387.410199999809265 ], [ 358914.998400002717972, 260428.636599998921156 ], [ 358933.601199999451637, 260422.033900000154972 ], [ 358954.655199997127056, 260411.651500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92577016, "LATITUDE": 18.37306017, "OBJECTID_1": 815, "PARCEL_NO_": "101301012100", "Tax_Legal_": "10-1-23 PETERBORG NO.1 GREAT NORTHSIDE QTR.", "Name": "MGA IRREVOCABLE TRUST", "Address": "4608 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 174000, "Improved_V": 588300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.816569383, "SHAPE_Area": 2366.05403664 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359280.608599998056889, 260390.465700000524521 ], [ 359304.5641999989748, 260418.103999998420477 ], [ 359315.742899999022484, 260431.072200000286102 ], [ 359324.682499997317791, 260422.91270000115037 ], [ 359333.645400002598763, 260412.009199999272823 ], [ 359337.763300001621246, 260401.910399999469519 ], [ 359340.313500002026558, 260386.52140000090003 ], [ 359338.880699999630451, 260365.400299999862909 ], [ 359339.773299999535084, 260355.275199998170137 ], [ 359334.937200002372265, 260355.024500001221895 ], [ 359325.184199996292591, 260364.021699998527765 ], [ 359309.770700000226498, 260374.872400000691414 ], [ 359303.284299999475479, 260379.041200000792742 ], [ 359280.608599998056889, 260390.465700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101201010200", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".90", "LONGITUDE": -64.94929818, "LATITUDE": 18.37302519, "OBJECTID_1": 655, "PARCEL_NO_": "101201010200", "Tax_Legal_": "HULL 4-9 LT. NORTHSIDE", "Name": "DAVID, KATHLEEN ROSE", "Address": "P.O. BOX 2726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 223000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.136180623, "SHAPE_Area": 3479.6295908000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356869.822400003671646, 260360.390999998897314 ], [ 356791.829499997198582, 260333.999299999326468 ], [ 356788.307599999010563, 260368.800900001078844 ], [ 356851.691600002348423, 260406.260999999940395 ], [ 356858.996899999678135, 260400.621300000697374 ], [ 356868.719400003552437, 260395.212400000542402 ], [ 356869.822400003671646, 260360.390999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92839963, "LATITUDE": 18.37307946, "OBJECTID_1": 841, "PARCEL_NO_": "101301015300", "Tax_Legal_": "PETERBORG 10-3-7 GREAT NORTHSIDE", "Name": "BP ST THOMAS RESIDENCE LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 193400, "Improved_V": 784800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.49007122399999, "SHAPE_Area": 2015.42448457 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359060.70830000191927, 260362.49040000140667 ], [ 359053.411899998784065, 260367.074700001627207 ], [ 359006.437200002372265, 260391.177099999040365 ], [ 359020.679300002753735, 260423.168800000101328 ], [ 359069.279200002551079, 260397.602000001817942 ], [ 359060.70830000191927, 260362.49040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102013300", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".44", "LONGITUDE": -64.95023687, "LATITUDE": 18.37302778, "OBJECTID_1": 390, "PARCEL_NO_": "101102013300", "Tax_Legal_": "HULL 4-22 LT. NORTHSIDE", "Name": "MCNALLY, JEFFREY S. & EILEEN M.", "Address": "7712 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 92800, "Improved_V": 307300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.36864897300001, "SHAPE_Area": 2047.3393022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356753.853699997067451, 260342.976599998772144 ], [ 356741.026399999856949, 260334.216699998825788 ], [ 356737.819200001657009, 260332.079599998891354 ], [ 356712.584299996495247, 260359.948499999940395 ], [ 356717.402400001883507, 260362.309900000691414 ], [ 356713.279100000858307, 260373.041999999433756 ], [ 356705.208800002932549, 260373.820300001651049 ], [ 356715.462499998509884, 260400.713100001215935 ], [ 356715.437299996614456, 260403.668200001120567 ], [ 356745.375200003385544, 260391.669799998402596 ], [ 356753.853699997067451, 260342.976599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102013200", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".41", "LONGITUDE": -64.94993259, "LATITUDE": 18.37304551, "OBJECTID_1": 389, "PARCEL_NO_": "101102013200", "Tax_Legal_": "HULL 4-18 LT. NORTHSIDE", "Name": "AUBIN, JEAN KEVIN", "Address": "4925 NW 96 Terr", "City": "SUNSRISE", "State": "Florida", "Zip": 33351, "Country": "United States", "Land_Value": 121500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.23594616299999, "SHAPE_Area": 1501.7397573200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356781.234200000762939, 260347.211399998515844 ], [ 356753.853699997067451, 260342.976599998772144 ], [ 356745.375200003385544, 260391.669799998402596 ], [ 356770.284599997103214, 260402.006099998950958 ], [ 356774.413199998438358, 260390.640900000929832 ], [ 356777.751800000667572, 260377.369300000369549 ], [ 356781.234200000762939, 260347.211399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92921105000001, "LATITUDE": 18.37295036, "OBJECTID_1": 822, "PARCEL_NO_": "101301012900", "Tax_Legal_": "10-3-3 ESTATE PETERBORG GREAT NORTHSIDE QTR", "Name": "JASETH II LLC", "Address": "130 Campbell Dr", "City": "Far Hills", "State": "New Jersey", "Zip": 7931, "Country": "United States", "Land_Value": 273200, "Improved_V": 386100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.89819843800001, "SHAPE_Area": 2106.0565411299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358986.245200000703335, 260395.022599998861551 ], [ 358950.38910000026226, 260344.488899998366833 ], [ 358943.915299996733665, 260347.180100001394749 ], [ 358933.370300002396107, 260354.482099998742342 ], [ 358926.048699997365475, 260362.021499998867512 ], [ 358923.595600001513958, 260366.012200001627207 ], [ 358954.655199997127056, 260411.651500001549721 ], [ 358986.245200000703335, 260395.022599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101102013500", "MAP": "D9-6173-T97", "PARCEL_NAM": "4-5-A REM", "ACRE": ".87", "LONGITUDE": -64.95140411, "LATITUDE": 18.37249317, "OBJECTID_1": 392, "PARCEL_NO_": "101102013500", "Tax_Legal_": "HULL 4-5-A REM. LT. NORTHSIDE QTR.", "Name": "UNE PLUIE DE ROSES TRUST ETHEL L. BRYAN TRUSTEE", "Address": "PO Box 302908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 156300, "Improved_V": 700200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.03837460300002, "SHAPE_Area": 3146.6237842099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356575.618100002408028, 260342.739199999719858 ], [ 356615.297200001776218, 260345.855500001460314 ], [ 356631.660999998450279, 260298.913400001823902 ], [ 356641.30799999833107, 260302.369800001382828 ], [ 356651.208499997854233, 260276.0641999989748 ], [ 356642.339100003242493, 260275.991599999368191 ], [ 356660.513099998235703, 260225.055700000375509 ], [ 356654.024899996817112, 260229.435600001364946 ], [ 356647.441299997270107, 260245.002599999308586 ], [ 356636.160300001502037, 260278.134899999946356 ], [ 356631.691399998962879, 260276.847100000828505 ], [ 356630.197700001299381, 260281.38060000166297 ], [ 356621.999700002372265, 260297.145599998533726 ], [ 356620.36370000243187, 260299.876400001347065 ], [ 356589.786700002849102, 260292.237900000065565 ], [ 356571.927400000393391, 260306.234999999403954 ], [ 356570.26799999922514, 260311.709800001233816 ], [ 356570.968199998140335, 260324.170099999755621 ], [ 356576.493699997663498, 260338.14750000089407 ], [ 356575.618100002408028, 260342.739199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304014400", "MAP": "D9-7183-T003", "PARCEL_NAM": "10-1-38-1", "ACRE": ".05", "LONGITUDE": -64.92378212, "LATITUDE": 18.37239616, "OBJECTID_1": 968, "PARCEL_NO_": "101304014400", "Tax_Legal_": "10-1-37 & 10-1-38-1 PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "HANCOCK, MICHAEL J. (TRUSTEE)", "Address": "8102 Lindberg Bay Dr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.379034114800007, "SHAPE_Area": 175.06917153000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359513.330200001597404, 260333.264199998229742 ], [ 359539.497800000011921, 260320.695500001311302 ], [ 359530.447899997234344, 260311.661699999123812 ], [ 359513.330200001597404, 260333.264199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104015700", "MAP": "D9-4898-T90", "PARCEL_NAM": "4-5-A-4", "ACRE": ".500", "LONGITUDE": -64.95105309, "LATITUDE": 18.37264685, "OBJECTID_1": 543, "PARCEL_NO_": "101104015700", "Tax_Legal_": "4-5-A-4 ESTATE HULL LT. NORTHSIDE", "Name": "SMITH, GLENROY & THOMAS, DEBOR", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 142400, "Improved_V": 431800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.62305470199999, "SHAPE_Area": 1993.6625566299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356615.297200001776218, 260345.855500001460314 ], [ 356655.789700001478195, 260349.035700000822544 ], [ 356657.884499996900558, 260344.302000001072884 ], [ 356662.783600002527237, 260337.16499999910593 ], [ 356667.666400000452995, 260331.927600000053644 ], [ 356684.715800002217293, 260318.346000000834465 ], [ 356641.30799999833107, 260302.369800001382828 ], [ 356631.660999998450279, 260298.913400001823902 ], [ 356615.297200001776218, 260345.855500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92684341, "LATITUDE": 18.37272544, "OBJECTID_1": 899, "PARCEL_NO_": "101303010500", "Tax_Legal_": "10-2-17 PETERBORG NO 12 GREAT NORTHSIDE QTR", "Name": "BATT, CARL", "Address": "117 Devlin Rd", "City": "Groton", "State": "New York", "Zip": 13073, "Country": "United States", "Land_Value": 177600, "Improved_V": 250000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.088104644, "SHAPE_Area": 3373.1681449900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359238.285800002515316, 260341.778900001198053 ], [ 359213.534699998795986, 260312.867600001394749 ], [ 359196.460100002586842, 260329.40430000051856 ], [ 359181.035899996757507, 260341.52140000090003 ], [ 359162.946299999952316, 260382.53660000115633 ], [ 359170.266099996864796, 260375.208299998193979 ], [ 359188.620700001716614, 260397.734400000423193 ], [ 359246.271600000560284, 260350.921300001442432 ], [ 359238.285800002515316, 260341.778900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92888988, "LATITUDE": 18.37277852, "OBJECTID_1": 895, "PARCEL_NO_": "101303010100", "Tax_Legal_": "PETERBORG 10-3-2 GR NORTHSIDE QTR", "Name": "JASETH LLC", "Address": "130 Campbell Rd", "City": "Far Hills", "State": "New Jersey", "Zip": 7931, "Country": "United States", "Land_Value": 253100, "Improved_V": 1111100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.084078871, "SHAPE_Area": 2619.9164035600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359025.126199997961521, 260374.442600000649691 ], [ 358982.850199997425079, 260320.267700001597404 ], [ 358976.351199999451637, 260325.914000000804663 ], [ 358971.425200000405312, 260336.217300001531839 ], [ 358967.361299999058247, 260339.98369999974966 ], [ 358964.1216000020504, 260341.645899999886751 ], [ 358956.861199997365475, 260342.008699998259544 ], [ 358950.38910000026226, 260344.488899998366833 ], [ 358986.245200000703335, 260395.022599998861551 ], [ 359025.126199997961521, 260374.442600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303010300", "MAP": "A9-155-T71", "PARCEL_NAM": "10-2-20", "ACRE": ".59", "LONGITUDE": -64.92780554, "LATITUDE": 18.37274812, "OBJECTID_1": 897, "PARCEL_NO_": "101303010300", "Tax_Legal_": "PETERBORG 10-2-20 GT. NORTHSIDE", "Name": "SMITH, DAVON and VANIQUA GUMBS-SMITH", "Address": "PO Box 303623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 174000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.34807300099999, "SHAPE_Area": 2600.68281957 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359140.628499999642372, 260351.956500001251698 ], [ 359131.206299997866154, 260322.115200001746416 ], [ 359097.190200001001358, 260339.568599998950958 ], [ 359080.171300001442432, 260349.561799999326468 ], [ 359066.383000001311302, 260358.94819999858737 ], [ 359074.941399998962879, 260395.537399999797344 ], [ 359140.628499999642372, 260351.956500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104013300", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".55", "LONGITUDE": -64.95052289, "LATITUDE": 18.37275373, "OBJECTID_1": 523, "PARCEL_NO_": "101104013300", "Tax_Legal_": "4-21 ESTATE HULL LT.NORTHSIDE QTR.", "Name": "PIERCE, EDWARD & JUDY", "Address": "PO Box 11293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92600, "Improved_V": 303800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.79251769800001, "SHAPE_Area": 2181.9715843700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356712.584299996495247, 260359.948499999940395 ], [ 356737.819200001657009, 260332.079599998891354 ], [ 356702.546400003135204, 260307.726199999451637 ], [ 356694.393399998545647, 260318.214200001209974 ], [ 356667.581900000572205, 260341.848299998790026 ], [ 356667.547700002789497, 260345.858800001442432 ], [ 356670.729800000786781, 260350.951099999248981 ], [ 356675.531700000166893, 260355.212200000882149 ], [ 356687.574299998581409, 260361.432500001043081 ], [ 356694.010399997234344, 260363.173900000751019 ], [ 356700.462700001895428, 260363.015700001269579 ], [ 356708.585100002586842, 260356.11600000038743 ], [ 356712.584299996495247, 260359.948499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303010600", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92608961000001, "LATITUDE": 18.37264706, "OBJECTID_1": 900, "PARCEL_NO_": "101303010600", "Tax_Legal_": "PETERBORG 10-1-22 No.12 GREAT NORTHSIDE QTR", "Name": "CAMPBELL, JR. , PHIL C", "Address": "1322 L St SE", "City": "Washington", "State": "District of Columbia", "Zip": 20003, "Country": "United States", "Land_Value": 174000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.63012867500001, "SHAPE_Area": 3347.4710340800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359327.723600000143051, 260349.89919999986887 ], [ 359293.370399996638298, 260312.25450000166893 ], [ 359238.285800002515316, 260341.778900001198053 ], [ 359246.271600000560284, 260350.921300001442432 ], [ 359274.219300001859665, 260383.236299999058247 ], [ 359275.839100003242493, 260382.405099999159575 ], [ 359301.754399999976158, 260369.318399999290705 ], [ 359312.297600001096725, 260362.22749999910593 ], [ 359327.723600000143051, 260349.89919999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92726546, "LATITUDE": 18.37250241, "OBJECTID_1": 898, "PARCEL_NO_": "101303010400", "Tax_Legal_": "PETERBORG 10-2-18 GREAT NORTHSIDE QTR", "Name": "ANDERSON, SHAWNA", "Address": "1620 N Ocean Blvd", "City": "Pompano Beach", "State": "Florida", "Zip": 33062, "Country": "United States", "Land_Value": 150400, "Improved_V": 440300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.80645904, "SHAPE_Area": 2429.797703 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359131.206299997866154, 260322.115200001746416 ], [ 359140.628499999642372, 260351.956500001251698 ], [ 359149.246200002729893, 260381.580099999904633 ], [ 359154.931800000369549, 260376.771499998867512 ], [ 359195.203500002622604, 260287.597500000149012 ], [ 359191.981899999082088, 260287.148899998515844 ], [ 359131.206299997866154, 260322.115200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203013700", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".80", "LONGITUDE": -64.94933133000001, "LATITUDE": 18.37260236, "OBJECTID_1": 737, "PARCEL_NO_": "101203013700", "Tax_Legal_": "HULL 4-8 4B LT NORTHSIDE QTR", "Name": "ITAL ISLAND VENTURES LLC", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 178700, "Improved_V": 342600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.51419663499999, "SHAPE_Area": 3600.3127768899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356870.814000003039837, 260338.656500000506639 ], [ 356830.130800001323223, 260286.816700000315905 ], [ 356784.864000000059605, 260299.745099999010563 ], [ 356786.451499998569489, 260302.71339999884367 ], [ 356786.422700002789497, 260306.090700000524521 ], [ 356791.86370000243187, 260329.988800000399351 ], [ 356791.829499997198582, 260333.999299999326468 ], [ 356869.822400003671646, 260360.390999998897314 ], [ 356869.138400003314018, 260346.031100001186132 ], [ 356870.814000003039837, 260338.656500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92482974000001, "LATITUDE": 18.37265875, "OBJECTID_1": 903, "PARCEL_NO_": "101303010900", "Tax_Legal_": "PETERBORG 10-1-26 GR NORTHSIDE", "Name": "MARTIN, SCOTT J", "Address": "PO Box 301887", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 157900, "Improved_V": 316700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.57464026900001, "SHAPE_Area": 2007.76663151 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359467.194099999964237, 260353.573800001293421 ], [ 359445.418200001120567, 260354.028900001198053 ], [ 359426.366999998688698, 260318.620299998670816 ], [ 359408.540100000798702, 260328.817999999970198 ], [ 359402.832900002598763, 260336.159600000828505 ], [ 359384.088100001215935, 260359.4375 ], [ 359396.026399999856949, 260377.900400001555681 ], [ 359404.141699999570847, 260371.845100000500679 ], [ 359430.825499996542931, 260363.197599999606609 ], [ 359449.402999997138977, 260359.549899999052286 ], [ 359467.194099999964237, 260353.573800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92852651, "LATITUDE": 18.37256556, "OBJECTID_1": 896, "PARCEL_NO_": "101303010200", "Tax_Legal_": "PETERBORG 10-3-1 GREAT NORTHSIDE QTR", "Name": "BONIFACE C ABBA MD REVOC FAMILY TRUST", "Address": "PO Box 12080", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 297500, "Improved_V": 943000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.102351473, "SHAPE_Area": 3160.1560760699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359059.955899998545647, 260356.151399999856949 ], [ 359046.730499997735023, 260299.470100000500679 ], [ 359026.409100003540516, 260318.513300001621246 ], [ 359013.617799997329712, 260305.531899999827147 ], [ 359010.365500003099442, 260308.671700000762939 ], [ 359004.6925999969244, 260312.002700001001358 ], [ 358993.384400002658367, 260314.232200000435114 ], [ 358982.850199997425079, 260320.267700001597404 ], [ 359025.126199997961521, 260374.442600000649691 ], [ 359059.955899998545647, 260356.151399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104013400", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".43", "LONGITUDE": -64.94992096, "LATITUDE": 18.37261332, "OBJECTID_1": 524, "PARCEL_NO_": "101104013400", "Tax_Legal_": "HULL 4-19 LT. NORTHSIDE", "Name": "AUBAIN, JEAN", "Address": "PO Box 10452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90700, "Improved_V": 350000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.387721336, "SHAPE_Area": 1440.80771078 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356766.401500001549721, 260289.883699998259544 ], [ 356741.026399999856949, 260334.216699998825788 ], [ 356753.853699997067451, 260342.976599998772144 ], [ 356781.234200000762939, 260347.211399998515844 ], [ 356782.972699999809265, 260332.449099998921156 ], [ 356777.562200002372265, 260304.962699998170137 ], [ 356775.989200003445148, 260300.305700000375509 ], [ 356773.602600000798702, 260296.4864999987185 ], [ 356766.401500001549721, 260289.883699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304010100", "MAP": "D9-7938-T007", "PARCEL_NAM": "8-27-1 REM", "ACRE": ".929", "LONGITUDE": -64.92378635, "LATITUDE": 18.37176846, "OBJECTID_1": 937, "PARCEL_NO_": "101304010100", "Tax_Legal_": "8-27-1 REM & 10-1-29A REM PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "BILGER, ERIC W.", "Address": "2738 Claudia Ct", "City": "Bellmore", "State": "New York", "Zip": 11710, "Country": "United States", "Land_Value": 383400, "Improved_V": 1084300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.80198232800001, "SHAPE_Area": 4717.5055341999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359512.618299998342991, 260203.100699998438358 ], [ 359479.508500002324581, 260257.522799998521805 ], [ 359496.865099996328354, 260278.245200000703335 ], [ 359509.319499999284744, 260290.559000000357628 ], [ 359530.9324000030756, 260274.988000001758337 ], [ 359598.913999997079372, 260277.426100000739098 ], [ 359558.452299997210503, 260242.652199998497963 ], [ 359515.226099997758865, 260205.357099998742342 ], [ 359512.618299998342991, 260203.100699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92519945, "LATITUDE": 18.37248056, "OBJECTID_1": 902, "PARCEL_NO_": "101303010800", "Tax_Legal_": "PETERBORG 10-1-25 GREAT NORTHSIDE", "Name": "PETTWAY, CORBIN D. & CINDY J. (TRUSTEES)", "Address": "16 Meadow Shores Rd", "City": "Dartmouth", "State": "Massachusetts", "Zip": 2748, "Country": "United States", "Land_Value": 161500, "Improved_V": 317000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.26069830899999, "SHAPE_Area": 1485.73869479 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359402.832900002598763, 260336.159600000828505 ], [ 359374.116800002753735, 260299.4054000005126 ], [ 359361.089900001883507, 260314.075300000607967 ], [ 359357.814300000667572, 260319.959100000560284 ], [ 359354.500900000333786, 260330.275600001215935 ], [ 359384.088100001215935, 260359.4375 ], [ 359402.832900002598763, 260336.159600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104013200", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".45", "LONGITUDE": -64.95021236, "LATITUDE": 18.37243772, "OBJECTID_1": 522, "PARCEL_NO_": "101104013200", "Tax_Legal_": "HULL 4-20 LT. NORTHSIDE", "Name": "NICHOLAS VAN HEURCK &MARIA VAN HEURCK REVOC TRU", "Address": "PO Box 7702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 100000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.942447394, "SHAPE_Area": 1933.8107756300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356766.401500001549721, 260289.883699998259544 ], [ 356745.500399999320507, 260282.324299998581409 ], [ 356732.603000000119209, 260281.796599999070168 ], [ 356724.521799996495247, 260283.841400001198053 ], [ 356715.611000001430511, 260288.623599998652935 ], [ 356709.921899996697903, 260293.854400001466274 ], [ 356707.44539999961853, 260300.589099999517202 ], [ 356702.546400003135204, 260307.726199999451637 ], [ 356737.819200001657009, 260332.079599998891354 ], [ 356741.026399999856949, 260334.216699998825788 ], [ 356766.401500001549721, 260289.883699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92781416, "LATITUDE": 18.37233688, "OBJECTID_1": 905, "PARCEL_NO_": "101303011500", "Tax_Legal_": "PETERBORG 10-2-21 GT. NORTHSIDE", "Name": "SCARBRIEL, ALFREDO", "Address": "PO Box 10229", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 109800, "Improved_V": 183700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.72971168000001, "SHAPE_Area": 2957.3550577800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359133.201999999582767, 260277.168600000441074 ], [ 359129.227899998426437, 260270.381099998950958 ], [ 359058.618400000035763, 260323.843100000172853 ], [ 359064.824400000274181, 260352.602600000798702 ], [ 359094.009900003671646, 260334.265299998223782 ], [ 359115.872000001370907, 260323.678399998694658 ], [ 359143.423299998044968, 260307.860800001770258 ], [ 359133.201999999582767, 260277.168600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303010700", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9256762, "LATITUDE": 18.37235688, "OBJECTID_1": 901, "PARCEL_NO_": "101303010700", "Tax_Legal_": "PETERBORG 10-1-19 GR NORTHSIDE QTR", "Name": "BAILEY, WILLIAM W. & JOYCE MARIE WENSEL (TRUSTEES)", "Address": "PO Box 11612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 170400, "Improved_V": 434600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.00124295699999, "SHAPE_Area": 2080.7001700300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359358.769900001585484, 260302.446199998259544 ], [ 359333.899999998509884, 260287.466099999845028 ], [ 359293.370399996638298, 260312.25450000166893 ], [ 359327.723600000143051, 260349.89919999986887 ], [ 359342.370300002396107, 260334.398200001567602 ], [ 359350.609600000083447, 260313.778400000184774 ], [ 359358.769900001585484, 260302.446199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92637927, "LATITUDE": 18.3723019, "OBJECTID_1": 909, "PARCEL_NO_": "101303011900", "Tax_Legal_": "PETERBORG 10-1-21 GREAT NORTHSIDE QTR", "Name": "SAUNDERS, EDWARD & CHRISTIANA", "Address": "PO Box 7515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 175800, "Improved_V": 660600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.35283572, "SHAPE_Area": 2780.0784258100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359293.370399996638298, 260312.25450000166893 ], [ 359270.291299998760223, 260276.390799999237061 ], [ 359254.105700001120567, 260283.224399998784065 ], [ 359237.092200003564358, 260292.584399998188019 ], [ 359221.669799998402596, 260304.490499999374151 ], [ 359213.534699998795986, 260312.867600001394749 ], [ 359238.285800002515316, 260341.778900001198053 ], [ 359293.370399996638298, 260312.25450000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104016100", "MAP": "D9-4898-T90", "PARCEL_NAM": "4-5-A-3", "ACRE": ".50", "LONGITUDE": -64.95077486, "LATITUDE": 18.37235186, "OBJECTID_1": 546, "PARCEL_NO_": "101104016100", "Tax_Legal_": "4-5-A-3 ESTATE HULL\nLT.NORTHSIDE QTR.", "Name": "JOSEPH I ALSINA REVOCABLE TRUST & JULIA ALSINA", "Address": "PO BOX 5135", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99700, "Improved_V": 393100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.022038331, "SHAPE_Area": 1991.0841906799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356709.264799997210503, 260276.328200001269579 ], [ 356677.816899999976158, 260276.282000001519918 ], [ 356651.208499997854233, 260276.0641999989748 ], [ 356641.30799999833107, 260302.369800001382828 ], [ 356684.715800002217293, 260318.346000000834465 ], [ 356688.776199996471405, 260315.001800000667572 ], [ 356700.185000002384186, 260300.951900001615286 ], [ 356709.264799997210503, 260276.328200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303012800", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92487113, "LATITUDE": 18.37218223, "OBJECTID_1": 918, "PARCEL_NO_": "101303012800", "Tax_Legal_": "PETERBORG 10-1-28 GR NORTHSIDE", "Name": "HEBERT FAMILY TRUST", "Address": "PO Box 11694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014694, "Country": "United States", "Land_Value": 170400, "Improved_V": 386200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.991933015, "SHAPE_Area": 3154.3699422200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359453.916500002145767, 260303.013799998909235 ], [ 359422.837200000882149, 260259.696299999952316 ], [ 359412.311899997293949, 260264.676399998366833 ], [ 359398.521899998188019, 260274.273899998515844 ], [ 359387.145400002598763, 260284.524300001561642 ], [ 359374.116800002753735, 260299.4054000005126 ], [ 359402.832900002598763, 260336.159600000828505 ], [ 359408.540100000798702, 260328.817999999970198 ], [ 359426.366999998688698, 260318.620299998670816 ], [ 359453.916500002145767, 260303.013799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004020200", "MAP": "A9-811-T015", "PARCEL_NAM": "12", "ACRE": "45.4", "LONGITUDE": -64.97305289000001, "LATITUDE": 18.36970837, "OBJECTID_1": 351, "PARCEL_NO_": "101004020200", "Tax_Legal_": "10 & 12 NELTJEBERG (WESTERN SECTION) NO. 6 LITTLE NORTHSIDE QUARTER", "Name": "LOUIS JOSEPH HELM BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1202800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2151.9993987100002, "SHAPE_Area": 172539.74160400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354540.519199997186661, 260136.354899998754263 ], [ 354463.040100000798702, 259757.617800001055002 ], [ 354452.06270963588031, 259760.72931409321609 ], [ 354440.951032816723455, 259763.320695469068596 ], [ 354429.729699999094009, 259765.386199999600649 ], [ 354427.898412937065586, 259765.394106920139166 ], [ 354426.09290690778289, 259765.087801841815235 ], [ 354424.366692221607082, 259764.476362817862537 ], [ 354422.770929208199959, 259763.577911245520227 ], [ 354421.352911962836515, 259762.419074796838686 ], [ 354420.154666677524801, 259761.034198246750748 ], [ 354419.211706098285504, 259759.464325586654013 ], [ 354418.551977023715153, 259757.755983591923723 ], [ 354418.195032037387136, 259755.959802894009044 ], [ 354418.151450022298377, 259754.129017425730126 ], [ 354418.422522631357424, 259752.317886711651227 ], [ 354419.000216006417759, 259750.58008776261704 ], [ 354419.867408879799768, 259748.967124234477524 ], [ 354420.998400002717972, 259747.526799999177456 ], [ 354468.623499996960163, 259695.932900000363588 ], [ 354473.257900136115495, 259689.477448868710781 ], [ 354477.248988925013691, 259682.605642392823938 ], [ 354480.559655464079697, 259675.381377653044183 ], [ 354483.159115718968678, 259667.871829041687306 ], [ 354485.023198764480185, 259660.146823646064149 ], [ 354486.134571536211297, 259652.278191965451697 ], [ 354486.482900001108646, 259644.339099999517202 ], [ 354485.383925438974984, 259634.892557984101586 ], [ 354483.82429690787103, 259625.511062368721468 ], [ 354481.807746572420001, 259616.217062913085101 ], [ 354479.339100003242493, 259607.032800000160933 ], [ 354474.935171685181558, 259599.018971265089931 ], [ 354469.942154939577449, 259591.358304231223883 ], [ 354464.388219572138041, 259584.094019162468612 ], [ 354458.304700002074242, 259577.267099998891354 ], [ 354453.995876761386171, 259573.648415896313963 ], [ 354450.017147916543763, 259569.669653634860879 ], [ 354446.398500002920628, 259565.360800001770258 ], [ 354436.436147236439865, 259551.035176721488824 ], [ 354426.951499998569489, 259536.388900000602007 ], [ 354425.876871809537988, 259534.367574907373637 ], [ 354424.546302054135595, 259532.504737017734442 ], [ 354422.982799999415874, 259530.832600001245737 ], [ 354421.606596918893047, 259530.235997628828045 ], [ 354420.149483455577865, 259529.880062712589279 ], [ 354418.653211453172844, 259529.77499414185877 ], [ 354417.160654796694871, 259529.923802530916873 ], [ 354415.714580912026577, 259530.322223953320645 ], [ 354414.356425317178946, 259530.958842119667679 ], [ 354413.12510433641728, 259531.815415497752838 ], [ 354412.055900000035763, 259532.867400001734495 ], [ 354459.164599999785423, 259638.716699998825788 ], [ 354373.836300000548363, 259694.940699998289347 ], [ 354355.319200001657009, 259698.9847999997437 ], [ 354258.690099999308586, 259720.087900001555681 ], [ 354258.608999997377396, 259720.304299999028444 ], [ 354214.901600003242493, 259834.14809999987483 ], [ 354201.6841000020504, 259871.192400000989437 ], [ 354193.450199998915195, 259891.178899999707937 ], [ 354081.238200001418591, 260190.013399999588728 ], [ 354086.070699997246265, 260190.686200000345707 ], [ 354096.515000000596046, 260195.204700000584126 ], [ 354111.820600003004074, 260197.018699999898672 ], [ 354120.623499996960163, 260204.901200000196695 ], [ 354129.372400000691414, 260219.116099998354912 ], [ 354134.849399998784065, 260238.792599998414516 ], [ 354135.50110000371933, 260256.951999999582767 ], [ 354138.672399997711182, 260263.310699999332428 ], [ 354145.868000000715256, 260270.546799998730421 ], [ 354158.711499996483326, 260277.406899999827147 ], [ 354168.383599996566772, 260277.908300001174212 ], [ 354176.471900001168251, 260275.019099999219179 ], [ 354182.159299999475479, 260269.999499998986721 ], [ 354190.226000003516674, 260269.643300000578165 ], [ 354196.658500000834465, 260271.80689999833703 ], [ 354200.663099996745586, 260275.006000000983477 ], [ 354203.056900002062321, 260277.980900000780821 ], [ 354204.613799996674061, 260284.537599999457598 ], [ 354210.207599997520447, 260290.493999999016523 ], [ 354218.247299998998642, 260293.304000001400709 ], [ 354223.086999997496605, 260293.132500000298023 ], [ 354227.129399999976158, 260291.899099998176098 ], [ 354231.994199998676777, 260288.77250000089407 ], [ 354235.253600001335144, 260284.788400001823902 ], [ 354236.941799998283386, 260275.936299998313189 ], [ 354238.570600003004074, 260274.049699999392033 ], [ 354239.405699998140335, 260270.679099999368191 ], [ 354250.02080000191927, 260255.144999999552965 ], [ 354258.154100000858307, 260246.978999998420477 ], [ 354264.647699996829033, 260241.965900000184774 ], [ 354282.480099998414516, 260231.134899999946356 ], [ 354290.615099996328354, 260222.757800001651049 ], [ 354300.422200001776218, 260207.428199999034405 ], [ 354306.114900000393391, 260201.775299999862909 ], [ 354314.224799998104572, 260196.353199999779463 ], [ 354322.316699996590614, 260193.041999999433756 ], [ 354330.394199997186661, 260191.419300001114607 ], [ 354339.265399999916553, 260191.280799999833107 ], [ 354350.537600003182888, 260193.272900000214577 ], [ 354365.891699999570847, 260189.387800000607967 ], [ 354378.848499998450279, 260182.949999999254942 ], [ 354386.152000002563, 260177.521299999207258 ], [ 354393.475400000810623, 260169.770799998193979 ], [ 354403.192500002682209, 260164.995200000703335 ], [ 354411.255599997937679, 260165.061200000345707 ], [ 354418.489000000059605, 260167.864599999040365 ], [ 354424.88740000128746, 260174.038699999451637 ], [ 354431.334299996495247, 260174.513599999248981 ], [ 354435.374799996614456, 260173.491200000047684 ], [ 354440.237899996340275, 260170.575699999928474 ], [ 354445.950400002300739, 260162.600900001823902 ], [ 354456.502599999308586, 260154.454599998891354 ], [ 354468.658399999141693, 260147.376899998635054 ], [ 354479.988200001418591, 260142.614500001072884 ], [ 354491.305299997329712, 260139.329599998891354 ], [ 354504.224299997091293, 260137.324400000274181 ], [ 354513.883900001645088, 260139.303300000727177 ], [ 354525.98030000180006, 260139.191199999302626 ], [ 354540.519199997186661, 260136.354899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101304014400", "MAP": "A9-139-T70", "PARCEL_NAM": "10-1-37", "ACRE": ".07", "LONGITUDE": -64.9238629, "LATITUDE": 18.37237736, "OBJECTID_1": 968, "PARCEL_NO_": "101304014400", "Tax_Legal_": "10-1-37 & 10-1-38-1 PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "HANCOCK, MICHAEL J. (TRUSTEE)", "Address": "8102 Lindberg Bay Dr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.372389081099996, "SHAPE_Area": 210.88640176000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359513.330099999904633, 260333.264199998229742 ], [ 359530.447899997234344, 260311.661699999123812 ], [ 359524.852200001478195, 260305.916400000452995 ], [ 359507.721900001168251, 260328.996500000357628 ], [ 359513.330099999904633, 260333.264199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104017200", "MAP": "D9-6173-T97", "PARCEL_NAM": "4-5-A-7", "ACRE": ".144", "LONGITUDE": -64.95152891, "LATITUDE": 18.37234148, "OBJECTID_1": 555, "PARCEL_NO_": "101104017200", "Tax_Legal_": "HULL 4-5-A-7 LITTLE NORTHSIDE", "Name": "HOLT, JAMES M. & DEBORAH A.", "Address": "PO Box 306838", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.48782693000001, "SHAPE_Area": 483.73166341699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356621.999700002372265, 260297.145599998533726 ], [ 356614.017499998211861, 260287.581000000238419 ], [ 356587.448700003325939, 260282.719500001519918 ], [ 356572.850599996745586, 260292.52140000090003 ], [ 356573.620899997651577, 260296.749600000679493 ], [ 356575.217399999499321, 260298.662500001490116 ], [ 356571.927400000393391, 260306.234999999403954 ], [ 356589.786700002849102, 260292.237900000065565 ], [ 356620.36370000243187, 260299.876400001347065 ], [ 356621.999700002372265, 260297.145599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92796743, "LATITUDE": 18.37193361, "OBJECTID_1": 904, "PARCEL_NO_": "101303011400", "Tax_Legal_": "PETERBORG 10-2-2 GR NORTHSIDE", "Name": "SCHLEICHER, DUANE A. & LAVONA A.", "Address": "PO Box 65", "City": "Ashfield", "State": "Pennsylvania", "Zip": 18212, "Country": "United States", "Land_Value": 237400, "Improved_V": 2291900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.05982299200002, "SHAPE_Area": 4423.6012137199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359110.927299998700619, 260241.522599998861551 ], [ 359091.0337999984622, 260210.328999999910593 ], [ 359069.061999998986721, 260233.791700001806021 ], [ 359066.608900003135204, 260237.782400000840425 ], [ 359064.987300001084805, 260238.824599999934435 ], [ 359057.649499997496605, 260248.263700000941753 ], [ 359070.392300002276897, 260266.944200001657009 ], [ 359057.401399999856949, 260277.392599999904633 ], [ 359051.636699996888638, 260291.488699998706579 ], [ 359058.618400000035763, 260323.843100000172853 ], [ 359129.227899998426437, 260270.381099998950958 ], [ 359115.700400002300739, 260249.160999998450279 ], [ 359110.927299998700619, 260241.522599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104013500", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".52", "LONGITUDE": -64.94965036000001, "LATITUDE": 18.37215852, "OBJECTID_1": 525, "PARCEL_NO_": "101104013500", "Tax_Legal_": "HULL 4-7 LITTLE NORTHSIDE", "Name": "SMOCK, HENRY & TERRYLN M", "Address": "PO Box 6571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 102000, "Improved_V": 378300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.84479897899999, "SHAPE_Area": 2076.4460857200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356792.638700000941753, 260239.013799998909235 ], [ 356760.066100001335144, 260276.321800000965595 ], [ 356771.307700000703335, 260281.902300000190735 ], [ 356775.314099997282028, 260284.890399999916553 ], [ 356781.705300003290176, 260291.9087999984622 ], [ 356784.864000000059605, 260299.745099999010563 ], [ 356830.130800001323223, 260286.816700000315905 ], [ 356792.638700000941753, 260239.013799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104016600", "MAP": "D9-6173-T97", "PARCEL_NAM": "4-5-A-6", "ACRE": ".50", "LONGITUDE": -64.95140439, "LATITUDE": 18.37211003, "OBJECTID_1": 550, "PARCEL_NO_": "101104016600", "Tax_Legal_": "HULL ESTATE 4-5-A-6 No.4B LITTLE NORTHSIDE QTR.", "Name": "JAMES MICHAEL HOLT & DEBORAH ANN HOLT FAMILY TRUST", "Address": "PO Box 306838", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 123900, "Improved_V": 418500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.80190115400001, "SHAPE_Area": 2304.69195623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356642.614200003445148, 260243.69649999961257 ], [ 356640.200699999928474, 260243.043499998748302 ], [ 356624.04389999806881, 260246.499800000339746 ], [ 356594.267899997532368, 260239.5011 ], [ 356586.798900000751019, 260264.34910000115633 ], [ 356581.124099999666214, 260267.891199998557568 ], [ 356574.598099999129772, 260276.703699998557568 ], [ 356572.944099999964237, 260281.545299999415874 ], [ 356572.917099997401237, 260284.711500000208616 ], [ 356572.850599996745586, 260292.52140000090003 ], [ 356587.448700003325939, 260282.719500001519918 ], [ 356614.017499998211861, 260287.581000000238419 ], [ 356621.999700002372265, 260297.145599998533726 ], [ 356630.197700001299381, 260281.38060000166297 ], [ 356642.614200003445148, 260243.69649999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303012300", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92590722, "LATITUDE": 18.37207418, "OBJECTID_1": 913, "PARCEL_NO_": "101303012300", "Tax_Legal_": "PETERBORG 10-1-20 GT. NORTHSIDE QTR", "Name": "THE SAUNDERS REVOCABLE FAMILY TRUST", "Address": "PO Box 7515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 168700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.48426840900001, "SHAPE_Area": 1798.4113497599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359333.899999998509884, 260287.466099999845028 ], [ 359319.63459999859333, 260258.218400001525879 ], [ 359306.677799999713898, 260264.656199999153614 ], [ 359289.685900002717972, 260271.483300000429153 ], [ 359270.291299998760223, 260276.390799999237061 ], [ 359293.370399996638298, 260312.25450000166893 ], [ 359333.899999998509884, 260287.466099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92718397, "LATITUDE": 18.37199569, "OBJECTID_1": 906, "PARCEL_NO_": "101303011600", "Tax_Legal_": "PETERBORG 10-2-22 GT. NORTHSIDE", "Name": "GRIEGER, RUSSELL & PATRICIA", "Address": "106 Mountain View Dr", "City": "Charlottesville", "State": "Virginia", "Zip": 22903, "Country": "United States", "Land_Value": 234500, "Improved_V": 188500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.501990855, "SHAPE_Area": 2311.4151143399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359208.260899998247623, 260269.339200001209974 ], [ 359185.909000001847744, 260242.769499998539686 ], [ 359133.201999999582767, 260277.168600000441074 ], [ 359143.423299998044968, 260307.860800001770258 ], [ 359203.388899996876717, 260273.310100000351667 ], [ 359208.260899998247623, 260269.339200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303012700", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92549258, "LATITUDE": 18.37196611, "OBJECTID_1": 917, "PARCEL_NO_": "101303012700", "Tax_Legal_": "PETERBORG 10-1-18 GR NORTHSIDE", "Name": "GUMBS, RENEE A", "Address": "7406 Est Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 157900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.22202486099999, "SHAPE_Area": 1793.4774081400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359319.63459999859333, 260258.218400001525879 ], [ 359333.899999998509884, 260287.466099999845028 ], [ 359358.769900001585484, 260302.446199998259544 ], [ 359371.787699997425079, 260288.831599999219179 ], [ 359373.488499999046326, 260278.502000000327826 ], [ 359371.107299998402596, 260274.049499999731779 ], [ 359369.501900002360344, 260273.19200000166893 ], [ 359343.157899998128414, 260241.945599999278784 ], [ 359319.63459999859333, 260258.218400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104015900", "MAP": "D9-4631-T89", "PARCEL_NAM": "4-5-B-3", "ACRE": ".510", "LONGITUDE": -64.95086115, "LATITUDE": 18.37192167, "OBJECTID_1": 544, "PARCEL_NO_": "101104015900", "Tax_Legal_": "4-5-B-3 ESTATE HULL LT.NORTHSIDE QTR.", "Name": "KRALL BLONDEAU, MARIE E", "Address": "4-5-B-3 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 322900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.601525772, "SHAPE_Area": 1484.19909882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356666.182599999010563, 260276.186700001358986 ], [ 356682.677500002086163, 260234.604100000113249 ], [ 356696.5641999989748, 260210.303300000727177 ], [ 356660.513099998235703, 260225.055700000375509 ], [ 356642.339100003242493, 260275.991599999368191 ], [ 356651.208499997854233, 260276.0641999989748 ], [ 356666.182599999010563, 260276.186700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104013100", "MAP": "A9-108-T69", "PARCEL_NAM": null, "ACRE": ".54", "LONGITUDE": -64.9499968, "LATITUDE": 18.37187593, "OBJECTID_1": 521, "PARCEL_NO_": "101104013100", "Tax_Legal_": "HULL 4-6 LT. NORTHSIDE", "Name": "SMOCK, HENRY & TERRILYN", "Address": "PO Box 6571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 91500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.214512472, "SHAPE_Area": 2623.149333 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356771.100199997425079, 260211.6064000017941 ], [ 356749.30460000038147, 260214.383400000631809 ], [ 356741.160599999129772, 260223.815900001674891 ], [ 356734.668700002133846, 260228.617899999022484 ], [ 356726.519299998879433, 260238.683699999004602 ], [ 356724.059000000357628, 260243.518699999898672 ], [ 356725.621299996972084, 260249.442099999636412 ], [ 356745.629799999296665, 260267.1266999989748 ], [ 356760.066100001335144, 260276.321800000965595 ], [ 356792.638700000941753, 260239.013799998909235 ], [ 356771.100199997425079, 260211.6064000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9264593, "LATITUDE": 18.37184537, "OBJECTID_1": 910, "PARCEL_NO_": "101303012000", "Tax_Legal_": "PETERBORG 10-1-10 GR NORTHSIDE QTR", "Name": "GUMBS, ANNA", "Address": "PO Box 9039", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 157900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.924052053, "SHAPE_Area": 2485.4555619799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359282.490199998021126, 260264.24720000103116 ], [ 359256.308100000023842, 260214.003699999302626 ], [ 359217.117799997329712, 260270.889299999922514 ], [ 359213.014300003647804, 260279.299499999731779 ], [ 359210.571999996900558, 260282.023699998855591 ], [ 359209.742299996316433, 260284.761100001633167 ], [ 359207.287399999797344, 260288.962900001555681 ], [ 359204.845100000500679, 260291.687100000679493 ], [ 359204.019000001251698, 260294.002399999648333 ], [ 359208.844300001859665, 260295.519600000232458 ], [ 359217.720899999141693, 260294.747800000011921 ], [ 359222.580399997532368, 260292.25450000166893 ], [ 359233.944300003349781, 260283.481600001454353 ], [ 359248.527999997138977, 260275.368299998342991 ], [ 359267.947899997234344, 260267.505699999630451 ], [ 359282.490199998021126, 260264.24720000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304010200", "MAP": "A9-109-T69", "PARCEL_NAM": "8-28", "ACRE": null, "LONGITUDE": -64.92299642, "LATITUDE": 18.37151411, "OBJECTID_1": 938, "PARCEL_NO_": "101304010200", "Tax_Legal_": "PETERBORG ESTATE 8-28 No.12 GREAT NORTH SIDE QTR.", "Name": "CHARLES E BIELE, III & CATHERINE BIELE", "Address": "2057 Fairhaven Cir NE", "City": "Atlanta", "State": "Georgia", "Zip": 30305, "Country": "United States", "Land_Value": 571900, "Improved_V": 767800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.79460516300003, "SHAPE_Area": 6619.7918886799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359618.034699998795986, 260175.653999999165535 ], [ 359590.39299999922514, 260184.862900000065565 ], [ 359577.357100002467632, 260200.588199999183416 ], [ 359572.422200001776218, 260211.946899998933077 ], [ 359558.452299997210503, 260242.652199998497963 ], [ 359604.081299997866154, 260281.866900000721216 ], [ 359607.360399998724461, 260275.560899998992682 ], [ 359615.49549999833107, 260267.183800000697374 ], [ 359620.401699997484684, 260259.202399998903275 ], [ 359643.919600002467632, 260243.562800001353025 ], [ 359662.55290000140667, 260233.371800001710653 ], [ 359674.773500002920628, 260218.695199999958277 ], [ 359623.496799997985363, 260179.856499999761581 ], [ 359618.034699998795986, 260175.653999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92734717, "LATITUDE": 18.37174729, "OBJECTID_1": 907, "PARCEL_NO_": "101303011700", "Tax_Legal_": "PETERBORG 10-2-23 GR NORTHSIDE", "Name": "SILVERMAN, KENNETH D. & TONI M.", "Address": "118 Peninsula Dr", "City": "Babylon", "State": "New York", "Zip": 11702, "Country": "United States", "Land_Value": 186700, "Improved_V": 319900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.98780868, "SHAPE_Area": 1849.2208463500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359185.909000001847744, 260242.769499998539686 ], [ 359165.956200003623962, 260218.541600000113249 ], [ 359151.37780000269413, 260226.021600000560284 ], [ 359135.971500001847744, 260236.028000000864267 ], [ 359134.331900000572205, 260239.181000001728535 ], [ 359132.615000002086163, 260251.410399999469519 ], [ 359126.945699997246265, 260254.319299999624491 ], [ 359125.372599996626377, 260249.662399999797344 ], [ 359115.700400002300739, 260249.160999998450279 ], [ 359129.227899998426437, 260270.381099998950958 ], [ 359133.201999999582767, 260277.168600000441074 ], [ 359185.909000001847744, 260242.769499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92510822, "LATITUDE": 18.37167161, "OBJECTID_1": 920, "PARCEL_NO_": "101303013000", "Tax_Legal_": "PETERBORG 10-1-17 12 GR NORTHSIDE QTR", "Name": "MARK G. SEYMOUR VIRGIN ISLANDS REVOCABLE TRUST", "Address": "2301 WILTON DRIVE APT. 314", "City": "Wilton Manors", "State": "Florida", "Zip": 333051203, "Country": "United States", "Land_Value": 184800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.20080500200001, "SHAPE_Area": 2082.4840784100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359387.812600001692772, 260206.214099999517202 ], [ 359370.784699998795986, 260217.262699998915195 ], [ 359365.919900000095367, 260220.389299999922514 ], [ 359371.220600001513958, 260260.751499999314547 ], [ 359380.003700003027916, 260270.955899998545647 ], [ 359384.020900003612041, 260272.677499998360872 ], [ 359388.06139999628067, 260271.655099999159575 ], [ 359396.997400000691414, 260263.91780000180006 ], [ 359414.833400003612041, 260252.664700001478195 ], [ 359415.689999997615814, 260246.761100001633167 ], [ 359410.938500002026558, 260236.589800000190735 ], [ 359405.366200000047684, 260228.100400000810623 ], [ 359403.762599997222424, 260227.031800001859665 ], [ 359387.812600001692772, 260206.214099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92689937, "LATITUDE": 18.37161485, "OBJECTID_1": 911, "PARCEL_NO_": "101303012100", "Tax_Legal_": "PETERBORG 10-1-8 GREAT NORTHSIDE QTR", "Name": "CULLEN, WILLIAM J and MARTA", "Address": "1800 NW Corporate Blvd", "City": "Boca Raton", "State": "Florida", "Zip": 33498, "Country": "United States", "Land_Value": 166900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.54941611800001, "SHAPE_Area": 1974.31726966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359227.057899996638298, 260239.939899999648333 ], [ 359199.160599999129772, 260201.714800000190735 ], [ 359165.956200003623962, 260218.541600000113249 ], [ 359185.909000001847744, 260242.769499998539686 ], [ 359208.260899998247623, 260269.339200001209974 ], [ 359227.057899996638298, 260239.939899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104016300", "MAP": "D9-4629-T88", "PARCEL_NAM": "4-5-A-2", "ACRE": ".48", "LONGITUDE": -64.95130848, "LATITUDE": 18.37171065, "OBJECTID_1": 548, "PARCEL_NO_": "101104016300", "Tax_Legal_": "HULL 4-5A2 & 4-5B-2 LT.NORTHSIDE QTR.", "Name": "SARAH E HAYNES TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 129600, "Improved_V": 659300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.428181833, "SHAPE_Area": 1904.9586870099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356645.212999999523163, 260222.608399998396635 ], [ 356620.45830000191927, 260194.119300000369549 ], [ 356605.975199997425079, 260190.412200000137091 ], [ 356600.097300000488758, 260217.806200001388788 ], [ 356594.267899997532368, 260239.5011 ], [ 356624.04389999806881, 260246.499800000339746 ], [ 356640.200699999928474, 260243.043499998748302 ], [ 356644.343699999153614, 260229.989599999040365 ], [ 356647.565399996936321, 260230.438200000673532 ], [ 356646.789700001478195, 260226.843199998140335 ], [ 356645.212999999523163, 260222.608399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303012400", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92600905, "LATITUDE": 18.37151945, "OBJECTID_1": 914, "PARCEL_NO_": "101303012400", "Tax_Legal_": "10-1-11PETERBORG GREAT NORTHSIDE QTR", "Name": "KEMPEN, STANLEY MICHAEL", "Address": "PO Box 9368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 163300, "Improved_V": 431900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.54726188000001, "SHAPE_Area": 3778.0091257700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359312.893799997866154, 260197.5793999992311 ], [ 359285.63570000231266, 260178.991099998354912 ], [ 359266.910599999129772, 260199.947200000286102 ], [ 359256.308100000023842, 260214.003699999302626 ], [ 359282.490199998021126, 260264.24720000103116 ], [ 359284.914599999785423, 260263.633699998259544 ], [ 359300.286700002849102, 260257.637800000607967 ], [ 359313.241599999368191, 260251.411100000143051 ], [ 359332.704599998891354, 260238.482599999755621 ], [ 359312.893799997866154, 260197.5793999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92551281, "LATITUDE": 18.37139501, "OBJECTID_1": 921, "PARCEL_NO_": "101303013100", "Tax_Legal_": "PETERBORG 10-1-12 GR NORTHSIDE QTR", "Name": "SILMANI LLC", "Address": "49711 Keycove Ct", "City": "New Baltimore", "State": "Michigan", "Zip": 48047, "Country": "United States", "Land_Value": 165100, "Improved_V": 1814000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.08611435200001, "SHAPE_Area": 2686.2985326500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359370.784699998795986, 260217.262699998915195 ], [ 359354.274700000882149, 260167.520599998533726 ], [ 359312.893799997866154, 260197.5793999992311 ], [ 359332.704599998891354, 260238.482599999755621 ], [ 359339.201800003647804, 260233.0472999997437 ], [ 359344.048699997365475, 260232.031500000506639 ], [ 359348.87219999730587, 260233.759700000286102 ], [ 359371.220600001513958, 260260.751499999314547 ], [ 359365.919900000095367, 260220.389299999922514 ], [ 359370.784699998795986, 260217.262699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104016300", "MAP": "D9-4629-T88", "PARCEL_NAM": "4-5-B-2", "ACRE": null, "LONGITUDE": -64.95114542, "LATITUDE": 18.37155862, "OBJECTID_1": 548, "PARCEL_NO_": "101104016300", "Tax_Legal_": "HULL 4-5A2 & 4-5B-2 LT.NORTHSIDE QTR.", "Name": "SARAH E HAYNES TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 129600, "Improved_V": 659300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.472481577799996, "SHAPE_Area": 270.79882938499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356645.212999999523163, 260222.608399998396635 ], [ 356644.536100000143051, 260207.404199998825788 ], [ 356646.206299997866154, 260200.662799999117851 ], [ 356620.45830000191927, 260194.119300000369549 ], [ 356645.212999999523163, 260222.608399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104015600", "MAP": "D9-6351-T97", "PARCEL_NAM": "4-5-C-1", "ACRE": "0.5093", "LONGITUDE": -64.95053211, "LATITUDE": 18.3714081, "OBJECTID_1": 542, "PARCEL_NO_": "101104015600", "Tax_Legal_": "HULL 4-5-C LT. NORTHSIDE", "Name": "DAGGETT-LENAHAN, CAROL", "Address": "7301 Flagg Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 258100, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.490605633, "SHAPE_Area": 2225.0823008500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356724.429700002074242, 260151.710900001227856 ], [ 356697.343900002539158, 260186.403299998492002 ], [ 356652.947700001299381, 260199.864000000059605 ], [ 356651.00280000269413, 260205.557199999690056 ], [ 356651.674300000071526, 260221.394799999892712 ], [ 356653.285099998116493, 260221.618999999016523 ], [ 356702.649999998509884, 260200.913699999451637 ], [ 356731.747400000691414, 260192.919199999421835 ], [ 356747.968900002539158, 260181.864000000059605 ], [ 356724.429700002074242, 260151.710900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92761669, "LATITUDE": 18.3714088, "OBJECTID_1": 908, "PARCEL_NO_": "101303011800", "Tax_Legal_": "8-13REM.&8-14-A ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "BROWN, RICHARD L. & DOLORITA M. BAECHER, TRUSTEES", "Address": "PO Box 11958", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 181000, "Improved_V": 449000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.54108787199999, "SHAPE_Area": 2226.5677792500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359159.563199996948242, 260211.734299998730421 ], [ 359130.026299998164177, 260176.662099998444319 ], [ 359112.168799996376038, 260190.448100000619888 ], [ 359091.0337999984622, 260210.328999999910593 ], [ 359110.927299998700619, 260241.522599998861551 ], [ 359142.555100001394749, 260220.460999999195337 ], [ 359159.563199996948242, 260211.734299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011300", "MAP": "A9-109-T69", "PARCEL_NAM": "8-26", "ACRE": null, "LONGITUDE": -64.92363668, "LATITUDE": 18.37138134, "OBJECTID_1": 948, "PARCEL_NO_": "101304011300", "Tax_Legal_": "8-26 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "ST ELSEWHERE LLC", "Address": "2738 Claudia Ct", "City": "Bellmore", "State": "New York", "Zip": 11710, "Country": "United States", "Land_Value": 161500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.98038936399999, "SHAPE_Area": 1751.3494025099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359572.422200001776218, 260211.946899998933077 ], [ 359526.760799996554852, 260176.531700000166893 ], [ 359522.597999997437, 260191.907400000840425 ], [ 359518.487300001084805, 260201.161899998784065 ], [ 359515.226099997758865, 260205.357099998742342 ], [ 359558.452299997210503, 260242.652199998497963 ], [ 359572.422200001776218, 260211.946899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92658857000001, "LATITUDE": 18.37136436, "OBJECTID_1": 915, "PARCEL_NO_": "101303012500", "Tax_Legal_": "10-1-9 PETERBORG GREAT NORTHSIDE QUARTER", "Name": "ROYER, ROBERT W. & MADELEINE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 179300, "Improved_V": 340100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.347116648, "SHAPE_Area": 1856.8755755699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359199.160599999129772, 260201.714800000190735 ], [ 359227.057899996638298, 260239.939899999648333 ], [ 359245.833200000226498, 260213.073600001633167 ], [ 359267.846400000154972, 260184.75620000064373 ], [ 359261.421099998056889, 260181.7483000010252 ], [ 359255.782300002872944, 260181.068799998611212 ], [ 359234.773199997842312, 260186.174199998378754 ], [ 359221.028200000524521, 260190.494699999690056 ], [ 359199.160599999129772, 260201.714800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104013000", "MAP": "D9-4309-T88", "PARCEL_NAM": "4-5-B", "ACRE": "2.128", "LONGITUDE": -64.95115202, "LATITUDE": 18.37125835, "OBJECTID_1": 520, "PARCEL_NO_": "101104013000", "Tax_Legal_": "HULL 4-5B REMAINDER & 4-5A-1 LITTLE NORTHSIDE", "Name": "KG TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 121200, "Improved_V": 360500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.327610472, "SHAPE_Area": 2067.5919072299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356670.013700000941753, 260151.039599999785423 ], [ 356622.441299997270107, 260150.650299999862909 ], [ 356615.100000001490116, 260160.511599998921156 ], [ 356611.000100001692772, 260168.499600000679493 ], [ 356608.520000003278255, 260175.656399998813868 ], [ 356607.657999999821186, 260182.193300001323223 ], [ 356620.45830000191927, 260194.119300000369549 ], [ 356646.206299997866154, 260200.662799999117851 ], [ 356656.092500001192093, 260176.045800000429153 ], [ 356658.534800000488758, 260173.321600001305342 ], [ 356670.013700000941753, 260151.039599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103010200", "MAP": "D9-915-T68", "PARCEL_NAM": "1", "ACRE": "17.42", "LONGITUDE": -64.96345803, "LATITUDE": 18.36919574, "OBJECTID_1": 399, "PARCEL_NO_": "101103010200", "Tax_Legal_": "NELTJBERG 1 EASTERN PORTION", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 695200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1471.4239735199999, "SHAPE_Area": 68499.876908499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355293.288400001823902, 259802.233199998736382 ], [ 355271.667999997735023, 259879.105399999767542 ], [ 355255.031000003218651, 259938.919799998402596 ], [ 355220.925700001418591, 260061.497099999338388 ], [ 355237.017700001597404, 260065.639600001275539 ], [ 355251.470200002193451, 260072.934999998658895 ], [ 355261.88400000333786, 260081.041799999773502 ], [ 355270.670699998736382, 260090.824000000953674 ], [ 355277.83219999819994, 260102.070599999278784 ], [ 355283.355899997055531, 260116.259100001305342 ], [ 355285.670500002801418, 260128.521499998867512 ], [ 355283.861900001764297, 260151.515900000929832 ], [ 355291.037799999117851, 260161.073800001293421 ], [ 355303.843500003218651, 260172.366599999368191 ], [ 355319.895999997854233, 260181.152800001204014 ], [ 355337.595299996435642, 260185.941700000315905 ], [ 355344.846799999475479, 260186.634300000965595 ], [ 355356.945000000298023, 260186.311200000345707 ], [ 355366.635200001299381, 260184.701699998229742 ], [ 355378.832400001585484, 260172.769200000911951 ], [ 355394.303300000727177, 260155.164000000804663 ], [ 355412.252599999308586, 260130.612900000065565 ], [ 355420.427199997007847, 260117.592000000178814 ], [ 355400.019100002944469, 259862.846200000494719 ], [ 355394.919799998402596, 259798.843100000172853 ], [ 355371.514700002968311, 259517.263799998909235 ], [ 355299.927699998021126, 259780.122699998319149 ], [ 355297.436899997293949, 259788.546000000089407 ], [ 355293.288400001823902, 259802.233199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95985638000001, "LATITUDE": 18.36943129, "OBJECTID_1": 417, "PARCEL_NO_": "101103020100", "Tax_Legal_": "DORTHEA REM. 19&19-2 LT. NORTHSIDE", "Name": "Y & S CORPORATION, INC.", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 983000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1042.07445267, "SHAPE_Area": 50692.261426199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355682.931500002741814, 259782.624099999666214 ], [ 355653.337899997830391, 259848.876400001347065 ], [ 355621.396099999547005, 260001.446699999272823 ], [ 355626.207000002264977, 260004.652499999850988 ], [ 355633.411700002849102, 260010.833099998533726 ], [ 355635.00450000166893, 260013.168200001120567 ], [ 355636.611699998378754, 260013.814599998295307 ], [ 355654.968099996447563, 260036.129700001329184 ], [ 355657.914700001478195, 260068.8733000010252 ], [ 355661.732199996709824, 260094.024700000882149 ], [ 355672.605200000107288, 260142.876299999654293 ], [ 355681.266099996864796, 260167.434000000357628 ], [ 355681.248099997639656, 260169.544799998402596 ], [ 355682.842699997127056, 260171.668800000101328 ], [ 355683.598700001835823, 260177.58559999987483 ], [ 355685.963699996471405, 260183.937800001353025 ], [ 355690.769199997186661, 260187.776799999177456 ], [ 355698.817900002002716, 260189.531399998813868 ], [ 355703.664800003170967, 260188.515599999576807 ], [ 355706.904399998486042, 260186.853399999439716 ], [ 355707.743100002408028, 260183.060600001364946 ], [ 355710.194399997591972, 260179.280900001525879 ], [ 355712.676299996674061, 260171.912999998778105 ], [ 355714.305100001394749, 260170.026500001549721 ], [ 355715.143799997866154, 260166.23369999974966 ], [ 355718.417599998414516, 260160.560899998992682 ], [ 355722.530100002884865, 260151.095400001853704 ], [ 355724.189400002360344, 260145.62049999833107 ], [ 355725.818300001323223, 260143.734000001102686 ], [ 355727.477600000798702, 260138.259199999272823 ], [ 355733.218900002539158, 260126.9070999994874 ], [ 355740.630400002002716, 260108.813700001686811 ], [ 355744.697899997234344, 260104.625100001692772 ], [ 355752.793399997055531, 260100.891699999570847 ], [ 355759.254699997603893, 260099.677999999374151 ], [ 355766.50789999961853, 260100.159600000828505 ], [ 355773.737700000405312, 260103.385099999606609 ], [ 355776.939599998295307, 260106.155600000172853 ], [ 355780.128899998962879, 260110.403499998152256 ], [ 355781.711000002920628, 260114.005100000649691 ], [ 355781.691200003027916, 260116.326900001615286 ], [ 355788.987499997019768, 260111.742600001394749 ], [ 355796.30009999871254, 260105.258600000292063 ], [ 355790.177199997007847, 259877.438499998301268 ], [ 355790.207800000905991, 259873.85020000115037 ], [ 355790.238399997353554, 259870.261799998581409 ], [ 355787.80969999730587, 259776.72749999910593 ], [ 355682.931500002741814, 259782.624099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303013500", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92516583, "LATITUDE": 18.37113127, "OBJECTID_1": 925, "PARCEL_NO_": "101303013500", "Tax_Legal_": "PETERBORG 10-1-15 GR NORTHSIDE", "Name": "GOLDAMMER-GAVIOLA LIVING TRUST", "Address": "1851 Barry Ave", "City": "Los Angeles", "State": "California", "Zip": 90025, "Country": "United States", "Land_Value": 159700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.435047021, "SHAPE_Area": 2399.6662289199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359370.784699998795986, 260217.262699998915195 ], [ 359387.812600001692772, 260206.214099999517202 ], [ 359392.679200001060963, 260202.876400001347065 ], [ 359417.820500001311302, 260185.983600001782179 ], [ 359413.828500002622604, 260181.30689999833703 ], [ 359383.490800000727177, 260145.594900000840425 ], [ 359354.274700000882149, 260167.520599998533726 ], [ 359370.784699998795986, 260217.262699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104013000", "MAP": "D9-4309-T88", "PARCEL_NAM": "4-5-A-1", "ACRE": ".02", "LONGITUDE": -64.95138783, "LATITUDE": 18.37141012, "OBJECTID_1": 520, "PARCEL_NO_": "101104013000", "Tax_Legal_": "HULL 4-5B REMAINDER & 4-5A-1 LITTLE NORTHSIDE", "Name": "KG TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 121200, "Improved_V": 360500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.834476142699998, "SHAPE_Area": 62.6367292495 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356605.975199997425079, 260190.412200000137091 ], [ 356620.45830000191927, 260194.119300000369549 ], [ 356607.657999999821186, 260182.193300001323223 ], [ 356605.975199997425079, 260190.412200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304010300", "MAP": "A9-109-T69", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92246618, "LATITUDE": 18.37107262, "OBJECTID_1": 939, "PARCEL_NO_": "101304010300", "Tax_Legal_": "8-29 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "AARON and STACY HUGHES", "Address": "6501 Red Hook Plz Ste 201 PMB 864", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 235700, "Improved_V": 1064300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.06738395, "SHAPE_Area": 3854.0030991899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359713.089199997484684, 260169.824000000953674 ], [ 359655.331399999558926, 260134.520899999886751 ], [ 359654.496299996972084, 260137.891499999910593 ], [ 359651.231499999761581, 260142.508900001645088 ], [ 359650.399999998509884, 260145.457400001585484 ], [ 359623.496799997985363, 260179.856499999761581 ], [ 359674.773500002920628, 260218.695199999958277 ], [ 359689.425599999725819, 260202.560899998992682 ], [ 359713.089199997484684, 260169.824000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303012200", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92719504, "LATITUDE": 18.37111714, "OBJECTID_1": 912, "PARCEL_NO_": "101303012200", "Tax_Legal_": "PETERBORG 10-1-5,6&7 No.12 GREAT NORTHSIDE QTR.", "Name": "PARKS, ALEXANDER N. & JENNIFER M", "Address": "3643 46th Ave SW", "City": "Seattle", "State": "Washington", "Zip": 98116, "Country": "United States", "Land_Value": 271700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.89324762499999, "SHAPE_Area": 2879.14321707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359205.717200003564358, 260189.313900001347065 ], [ 359171.506099998950958, 260134.993999999016523 ], [ 359160.111599996685982, 260147.355200000107288 ], [ 359148.681199997663498, 260163.938099998980761 ], [ 359130.026299998164177, 260176.662099998444319 ], [ 359159.563199996948242, 260211.734299998730421 ], [ 359197.6199000030756, 260193.258400000631809 ], [ 359205.717200003564358, 260189.313900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011400", "MAP": "A9-109-T69", "PARCEL_NAM": "8-25", "ACRE": null, "LONGITUDE": -64.92349375000001, "LATITUDE": 18.37102576, "OBJECTID_1": 949, "PARCEL_NO_": "101304011400", "Tax_Legal_": "PETERBORG 8-25 GT. NORTHSIDE", "Name": "WILLIAMS - JONES FAMILY TRUST", "Address": "PO Box 7640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 159700, "Improved_V": 377400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.541738407, "SHAPE_Area": 3029.9484325799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359584.104299999773502, 260165.813000001013279 ], [ 359572.29559999704361, 260132.152499999850988 ], [ 359543.156800001859665, 260145.001800000667572 ], [ 359534.237000003457069, 260150.839400000870228 ], [ 359526.954999998211861, 260153.735100001096725 ], [ 359527.709200002253056, 260159.863000001758337 ], [ 359526.760799996554852, 260176.531700000166893 ], [ 359572.422200001776218, 260211.946899998933077 ], [ 359577.357100002467632, 260200.588199999183416 ], [ 359590.39299999922514, 260184.862900000065565 ], [ 359584.104299999773502, 260165.813000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303013200", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92575732, "LATITUDE": 18.37103934, "OBJECTID_1": 922, "PARCEL_NO_": "101303013200", "Tax_Legal_": "PETERBORG 10-1-13 GR NORTHSIDE", "Name": "EMMANUEL, MARTIN", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 137800, "Improved_V": 645000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.00412495200001, "SHAPE_Area": 1929.72561288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359354.274700000882149, 260167.520599998533726 ], [ 359327.900200001895428, 260139.86259999871254 ], [ 359307.594899997115135, 260157.006000000983477 ], [ 359285.63570000231266, 260178.991099998354912 ], [ 359312.893799997866154, 260197.5793999992311 ], [ 359354.274700000882149, 260167.520599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303012600", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92672082, "LATITUDE": 18.37078319, "OBJECTID_1": 916, "PARCEL_NO_": "101303012600", "Tax_Legal_": "PETERBORG 10-1-4 GR NORTHSIDE", "Name": "HINENI ASSETS LLC", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 266000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.85606816000001, "SHAPE_Area": 3574.3508216800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359255.89919999986887, 260167.348700001835823 ], [ 359222.656199999153614, 260094.03830000013113 ], [ 359216.986900001764297, 260096.947200000286102 ], [ 359201.576999999582767, 260107.375700000673532 ], [ 359180.460100002586842, 260125.145799998193979 ], [ 359217.050499998033047, 260184.129299998283386 ], [ 359242.946000002324581, 260173.364399999380112 ], [ 359251.046899996697903, 260168.997699998319149 ], [ 359255.89919999986887, 260167.348700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92299416, "LATITUDE": 18.3709075, "OBJECTID_1": 950, "PARCEL_NO_": "101304011500", "Tax_Legal_": "8-24 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "FALEY, TIMOTHY L. & KELLEY HEATH FALEY", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 156100, "Improved_V": 482100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.32539099799999, "SHAPE_Area": 1444.0410490899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359642.374600000679493, 260140.958700001239777 ], [ 359628.76799999922514, 260129.026099998503923 ], [ 359584.104299999773502, 260165.813000001013279 ], [ 359590.39299999922514, 260184.862900000065565 ], [ 359616.286700002849102, 260174.309099998325109 ], [ 359642.374600000679493, 260140.958700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303013800", "MAP": "A9-109-T69", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92456927000001, "LATITUDE": 18.37067769, "OBJECTID_1": 928, "PARCEL_NO_": "101303013800", "Tax_Legal_": "PETERBORG 8-12 GR NORTHSIDE", "Name": "PUIG, SELWYN", "Address": "PO Box 307675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 186600, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.60178779799998, "SHAPE_Area": 5398.8036031900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359434.642700001597404, 260104.428100001066923 ], [ 359381.097000002861023, 260142.620000001043081 ], [ 359383.490800000727177, 260145.594900000840425 ], [ 359413.828500002622604, 260181.30689999833703 ], [ 359438.206699997186661, 260159.341600000858307 ], [ 359469.017399996519089, 260139.539900001138449 ], [ 359477.910199999809265, 260136.868400000035763 ], [ 359501.305900000035763, 260135.582299999892712 ], [ 359501.35980000346899, 260129.249899998307228 ], [ 359505.551399998366833, 260110.496899999678135 ], [ 359510.511600002646446, 260096.183100000023842 ], [ 359510.536799997091293, 260093.228000000119209 ], [ 359508.93129999935627, 260092.37049999833107 ], [ 359497.64299999922514, 260092.278099998831749 ], [ 359486.342000000178814, 260093.66330000013113 ], [ 359452.395999997854233, 260102.884700000286102 ], [ 359447.525700002908707, 260106.644499998539686 ], [ 359445.875299997627735, 260111.063900001347065 ], [ 359441.831200003623962, 260112.508499998599291 ], [ 359441.049999997019768, 260109.546799998730421 ], [ 359437.857199996709824, 260105.721000000834465 ], [ 359434.642700001597404, 260104.428100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104019900", "MAP": "D9-4309-T88", "PARCEL_NAM": "4-5-B-1", "ACRE": ".36", "LONGITUDE": -64.95092759000001, "LATITUDE": 18.37091141, "OBJECTID_1": 568, "PARCEL_NO_": "101104019900", "Tax_Legal_": "HULL 4-3-A-1, 4-3-A-2 & 4-5-B-1 LITTLE NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.686131633, "SHAPE_Area": 1288.89556057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356681.701300002634525, 260104.27250000089407 ], [ 356650.858300000429153, 260127.873599998652935 ], [ 356650.014200001955032, 260132.299699999392033 ], [ 356645.971799999475479, 260133.53319999948144 ], [ 356636.25110000371933, 260138.730900000780821 ], [ 356628.947599999606609, 260144.159600000828505 ], [ 356622.441299997270107, 260150.650299999862909 ], [ 356670.013700000941753, 260151.039599999785423 ], [ 356675.747800000011921, 260140.531899999827147 ], [ 356678.231499999761581, 260132.952799998223782 ], [ 356680.682800002396107, 260129.173200000077486 ], [ 356683.180900000035763, 260119.905499998480082 ], [ 356684.071699999272823, 260109.991399999707937 ], [ 356682.484300002455711, 260107.02309999987483 ], [ 356681.701300002634525, 260104.27250000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303013300", "MAP": "A9-139-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92637281, "LATITUDE": 18.37060678, "OBJECTID_1": 923, "PARCEL_NO_": "101303013300", "Tax_Legal_": "PETERBORG 10-1-3 GR NORTHSIDE", "Name": "HARWOOD, ANDREW R. & KAREN J", "Address": "304 Azalea St", "City": "Lafayette", "State": "Louisiana", "Zip": 70506, "Country": "United States", "Land_Value": 303200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.35729444200001, "SHAPE_Area": 2966.7196814399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359288.385499998927116, 260140.172400001436472 ], [ 359254.239100001752377, 260078.253600001335144 ], [ 359237.241800002753735, 260085.713899999856949 ], [ 359222.656199999153614, 260094.03830000013113 ], [ 359255.89919999986887, 260167.348700001835823 ], [ 359260.753300003707409, 260165.488600000739098 ], [ 359268.864900000393391, 260159.855500001460314 ], [ 359288.385499998927116, 260140.172400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92542119, "LATITUDE": 18.37078656, "OBJECTID_1": 926, "PARCEL_NO_": "101303013600", "Tax_Legal_": "PETERBORG 10-1-14 GT. NORTHSIDE", "Name": "TRATTNER, AMANDA S.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.690569633, "SHAPE_Area": 1428.7214713599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359381.097000002861023, 260142.620000001043081 ], [ 359359.540600001811981, 260117.323399998247623 ], [ 359349.002700001001358, 260123.781100001186132 ], [ 359327.900200001895428, 260139.86259999871254 ], [ 359354.274700000882149, 260167.520599998533726 ], [ 359383.490800000727177, 260145.594900000840425 ], [ 359381.097000002861023, 260142.620000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304010400", "MAP": "A9-109-T69", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92224293, "LATITUDE": 18.37074607, "OBJECTID_1": 940, "PARCEL_NO_": "101304010400", "Tax_Legal_": "PETERBORG 8-30 GR NORTHSIDE", "Name": "KIM HOLDSWORTH TRUST", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 309000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.45182501900001, "SHAPE_Area": 1936.70125882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359727.836499996483326, 260142.502599999308586 ], [ 359664.391400001943111, 260112.219099998474121 ], [ 359661.112199999392033, 260118.525100000202656 ], [ 359655.331399999558926, 260134.520899999886751 ], [ 359713.089199997484684, 260169.824000000953674 ], [ 359719.615199998021126, 260161.011500000953674 ], [ 359726.170000001788139, 260148.821699999272823 ], [ 359727.836499996483326, 260142.502599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304012000", "MAP": "A9-109-T69", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92313354, "LATITUDE": 18.3706922, "OBJECTID_1": 954, "PARCEL_NO_": "101304012000", "Tax_Legal_": "PETERBORG 8-23 GT. NORTHSIDE", "Name": "CHASE, J.M. & C.E. & PRIOR, JR. C.B. & G.J.", "Address": "PO Box 8179", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 161500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.073236071, "SHAPE_Area": 1657.98736388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359628.76799999922514, 260129.026099998503923 ], [ 359600.755699999630451, 260104.309999998658895 ], [ 359584.464000001549721, 260123.597300000488758 ], [ 359578.778399996459484, 260128.405900001525879 ], [ 359572.29559999704361, 260132.152499999850988 ], [ 359584.104299999773502, 260165.813000001013279 ], [ 359628.76799999922514, 260129.026099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203012500", "MAP": "D9-6237-T97", "PARCEL_NAM": "17-8A", "ACRE": "0.52", "LONGITUDE": -64.94782594, "LATITUDE": 18.37046217, "OBJECTID_1": 726, "PARCEL_NO_": "101203012500", "Tax_Legal_": "ST PETER 17-8A LT. NORTHSIDE QTR", "Name": "BERRY, CHARLES A.", "Address": "PO Box 11583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.86745887000001, "SHAPE_Area": 2709.3606566499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357003.082999996840954, 260051.807399999350309 ], [ 356988.537000000476837, 260055.488099999725819 ], [ 356958.609999999403954, 260066.219999998807907 ], [ 356960.974899999797344, 260072.572200000286102 ], [ 356983.81139999628067, 260136.931499999016523 ], [ 357017.305299997329712, 260086.120999999344349 ], [ 357003.082999996840954, 260051.807399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103010400", "MAP": "17-2", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96244846, "LATITUDE": 18.36949153, "OBJECTID_1": 401, "PARCEL_NO_": "101103010400", "Tax_Legal_": "DOROTHEA REM 17-2 LT NORTHSIDE", "Name": "Y & S COORPORATION", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 246500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 822.56109463600001, "SHAPE_Area": 12590.880162 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355539.157999999821186, 259942.142799999564886 ], [ 355511.922799997031689, 259943.793999999761581 ], [ 355511.922799997031689, 259954.377300001680851 ], [ 355486.125900000333786, 259959.668999999761581 ], [ 355483.149300001561642, 259945.778400000184774 ], [ 355452.391500003635883, 259959.338300000876188 ], [ 355447.761200003325939, 259946.770599998533726 ], [ 355446.769100002944469, 259888.892799999564886 ], [ 355463.305600002408028, 259863.426600001752377 ], [ 355486.744499996304512, 259858.024700000882149 ], [ 355400.019100002944469, 259862.846200000494719 ], [ 355420.427199997007847, 260117.592000000178814 ], [ 355427.79730000346899, 260104.353500001132488 ], [ 355440.13120000064373, 260076.379000000655651 ], [ 355447.558799996972084, 260056.385899998247623 ], [ 355455.040399998426437, 260030.060400001704693 ], [ 355460.954300001263618, 259998.44480000063777 ], [ 355470.684000000357628, 259992.191599998623133 ], [ 355489.304700002074242, 259983.478100001811981 ], [ 355504.66780000180006, 259978.537599999457598 ], [ 355517.592200003564358, 259975.899099998176098 ], [ 355531.312100000679493, 259974.5337999984622 ], [ 355539.307099997997284, 259974.738800000399351 ], [ 355539.157999999821186, 259942.142799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92370623, "LATITUDE": 18.37052597, "OBJECTID_1": 955, "PARCEL_NO_": "101304012100", "Tax_Legal_": "PETERBORG 8-16 GR NORTHSIDE", "Name": "PRIOR, JR. CORNELIUS & GERTRUDE", "Address": "PO Box 12030", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 159700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.98119107400001, "SHAPE_Area": 2332.5537759 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359576.443999998271465, 260118.465399999171495 ], [ 359530.232699997723103, 260078.315400000661612 ], [ 359521.826899997889996, 260093.109299998730421 ], [ 359515.230800002813339, 260110.153900001198053 ], [ 359511.055399999022484, 260127.007199998944998 ], [ 359511.773599997162819, 260137.356699999421835 ], [ 359514.163699999451637, 260140.753800000995398 ], [ 359518.173699997365475, 260143.319699998944998 ], [ 359525.423299998044968, 260144.223400000482798 ], [ 359529.465700000524521, 260142.989900000393391 ], [ 359533.527800001204014, 260139.434599999338388 ], [ 359564.282799996435642, 260126.176300000399351 ], [ 359576.443999998271465, 260118.465399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92499861, "LATITUDE": 18.37048342, "OBJECTID_1": 929, "PARCEL_NO_": "101303013900", "Tax_Legal_": "8-11PETERBORG NO.12 GREAT NORTHDSIDE QTR", "Name": "SAMPSON, SHELLIE A", "Address": "5645 Southland Dr", "City": "Stone Mountain", "State": "Georgia", "Zip": 30087, "Country": "United States", "Land_Value": 157900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.144940674, "SHAPE_Area": 2305.03098116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359435.538900002837181, 260093.880800001323223 ], [ 359429.266400001943111, 260072.931200001388788 ], [ 359395.203500002622604, 260095.872699998319149 ], [ 359359.540600001811981, 260117.323399998247623 ], [ 359381.097000002861023, 260142.620000001043081 ], [ 359434.642700001597404, 260104.428100001066923 ], [ 359435.538900002837181, 260093.880800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92608819, "LATITUDE": 18.37042838, "OBJECTID_1": 924, "PARCEL_NO_": "101303013400", "Tax_Legal_": "PETERBORG 10-1-2 GR NORTHSIDE", "Name": "SKODA, NIKOLA & TOMAS", "Address": "PO Box 308592", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 317600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.800249135, "SHAPE_Area": 2122.9096546199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359317.6266999989748, 260115.291600000113249 ], [ 359282.539099998772144, 260069.19709999859333 ], [ 359254.239100001752377, 260078.253600001335144 ], [ 359288.385499998927116, 260140.172400001436472 ], [ 359307.078100003302097, 260123.015700001269579 ], [ 359317.6266999989748, 260115.291600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95056327, "LATITUDE": 18.37004657, "OBJECTID_1": 569, "PARCEL_NO_": "101104020100", "Tax_Legal_": "HULL 15-1 LT. NORTHSIDE", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 158800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 379.76369081899998, "SHAPE_Area": 8659.8990337300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356692.434399999678135, 259980.237300001084805 ], [ 356677.802100002765656, 259994.049699999392033 ], [ 356660.731100000441074, 260010.164200000464916 ], [ 356642.848399996757507, 260026.9054000005126 ], [ 356688.169799998402596, 260102.214499998837709 ], [ 356689.741099998354912, 260107.082499999552965 ], [ 356697.716099999845028, 260117.491399999707937 ], [ 356709.146499998867512, 260100.908500000834465 ], [ 356745.750699996948242, 260063.633499998599291 ], [ 356738.142499998211861, 260010.164500001817942 ], [ 356710.318899996578693, 259963.285100001841784 ], [ 356692.434399999678135, 259980.237300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304010500", "MAP": "A9-109-T69", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92196996, "LATITUDE": 18.37038713, "OBJECTID_1": 941, "PARCEL_NO_": "101304010500", "Tax_Legal_": "PETERBORG 8-31 GT. NORTHSIDE", "Name": "KIM HOLDSWORTH TRUST", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 337600, "Improved_V": 556300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.55461451299999, "SHAPE_Area": 5901.1788804300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359780.703599996864796, 260089.317499998956919 ], [ 359762.295100003480911, 260073.123700000345707 ], [ 359673.62049999833107, 260070.075899999588728 ], [ 359672.754799999296665, 260077.03489999845624 ], [ 359664.391400001943111, 260112.219099998474121 ], [ 359727.836499996483326, 260142.502599999308586 ], [ 359731.101400002837181, 260137.885200001299381 ], [ 359735.9391999989748, 260137.924800001084805 ], [ 359741.599600002169609, 260136.071299999952316 ], [ 359761.859899997711182, 260124.204799998551607 ], [ 359764.309399999678135, 260120.636300001293421 ], [ 359763.540899999439716, 260116.197000000625849 ], [ 359764.377700001001358, 260112.615299999713898 ], [ 359766.006599999964237, 260110.728700000792742 ], [ 359770.867799997329712, 260108.024300001561642 ], [ 359772.500200003385544, 260105.715599998831749 ], [ 359773.340700000524521, 260101.71169999986887 ], [ 359780.703599996864796, 260089.317499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011600", "MAP": "A9-109-T69", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92281167, "LATITUDE": 18.37042258, "OBJECTID_1": 951, "PARCEL_NO_": "101304011600", "Tax_Legal_": "PETERBORG 8-22 GR NORTHSIDE", "Name": "JESSICA L ROSENBERG REVOCABLE TRUST", "Address": "PO Box 9877", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 161500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.00843311700001, "SHAPE_Area": 2175.4171606999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359659.731499999761581, 260091.282699998468161 ], [ 359618.758900001645088, 260073.426600001752377 ], [ 359615.48870000243187, 260078.677200000733137 ], [ 359613.010399997234344, 260085.622999999672174 ], [ 359604.830399997532368, 260099.277100000530481 ], [ 359600.755699999630451, 260104.309999998658895 ], [ 359628.76799999922514, 260129.026099998503923 ], [ 359642.374600000679493, 260140.958700001239777 ], [ 359644.831299997866154, 260136.545899998396635 ], [ 359652.264300003647804, 260115.91950000077486 ], [ 359654.717500001192093, 260111.928800001740456 ], [ 359659.731499999761581, 260091.282699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92577331, "LATITUDE": 18.37032141, "OBJECTID_1": 927, "PARCEL_NO_": "101303013700", "Tax_Legal_": "PETERBORG 10-1-1 GR NORTHSIDE", "Name": "MICHIELS, EMIEL & BERNADETE", "Address": "Po Box 1326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 271700, "Improved_V": 686400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.30381345800001, "SHAPE_Area": 2335.5478150399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359354.223600000143051, 260109.486900001764297 ], [ 359311.44030000269413, 260052.701900001615286 ], [ 359305.222000002861023, 260056.928300000727177 ], [ 359293.041000001132488, 260066.961100000888109 ], [ 359282.539099998772144, 260069.19709999859333 ], [ 359317.6266999989748, 260115.291600000113249 ], [ 359320.815999999642372, 260119.539599999785423 ], [ 359327.185599997639656, 260129.090900000184774 ], [ 359347.478200003504753, 260113.425000000745058 ], [ 359354.223600000143051, 260109.486900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.920735, "LATITUDE": 18.37017958, "OBJECTID_1": 1044, "PARCEL_NO_": "101304031300", "Tax_Legal_": "PETERBORG 11-23 GREAT NORTHSIDE", "Name": "BLEIMANN, ROBERT L. & MAY L. CHIN", "Address": "2201 GOLDENTREE WAY", "City": "VIENNA", "State": "Virginia", "Zip": 22182, "Country": "United States", "Land_Value": 400600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.91313251399998, "SHAPE_Area": 4287.9492773600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359837.68129999935627, 260026.877900000661612 ], [ 359836.016599997878075, 260032.986000001430511 ], [ 359833.525700002908707, 260041.409400001168251 ], [ 359835.107699997723103, 260045.010899998247623 ], [ 359835.834899999201298, 260054.304999999701977 ], [ 359834.137800000607967, 260064.212499998509884 ], [ 359829.965999998152256, 260080.643699999898672 ], [ 359820.995800003409386, 260092.391499999910593 ], [ 359816.084200002253056, 260101.006099998950958 ], [ 359814.372699998319149, 260112.602299999445677 ], [ 359815.933200001716614, 260118.736699998378754 ], [ 359821.557599999010563, 260121.104800000786781 ], [ 359828.011699996888638, 260120.735399998724461 ], [ 359841.745999999344349, 260117.681400001049042 ], [ 359886.218999996781349, 260103.268899999558926 ], [ 359894.291199997067451, 260102.279500000178814 ], [ 359860.234700001776218, 260029.806800000369549 ], [ 359852.141000002622604, 260033.329100001603365 ], [ 359849.768799997866154, 260027.821299999952316 ], [ 359853.010300002992153, 260025.947900000959635 ], [ 359853.035400003194809, 260022.992800001055002 ], [ 359851.440800003707409, 260020.86879999935627 ], [ 359837.68129999935627, 260026.877900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303014100", "MAP": "B9-168-T67", "PARCEL_NAM": "8-5", "ACRE": "0.56", "LONGITUDE": -64.92518263, "LATITUDE": 18.36999059, "OBJECTID_1": 931, "PARCEL_NO_": "101303014100", "Tax_Legal_": "8-5 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "O'BYMACHOW, RICHARD", "Address": "180 W Main St", "City": "Clinton", "State": "Connecticut", "Zip": 6413, "Country": "United States", "Land_Value": 277000, "Improved_V": 723000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.544498909, "SHAPE_Area": 2813.1703857299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359342.630400002002716, 260034.16950000077486 ], [ 359382.90429999679327, 260092.006499998271465 ], [ 359422.8699000030756, 260066.546000000089407 ], [ 359377.303900003433228, 260019.943599998950958 ], [ 359361.935400001704693, 260025.517299998551607 ], [ 359342.630400002002716, 260034.16950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92025827000001, "LATITUDE": 18.37003988, "OBJECTID_1": 1045, "PARCEL_NO_": "101304031400", "Tax_Legal_": "PETERBORG 11-24 GT.NORTHSIDE QTR.", "Name": "PRINCE, GEORGE R", "Address": "PO Box 7734", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 314700, "Improved_V": 663400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.43561651800002, "SHAPE_Area": 3968.5518365500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359947.651600003242493, 260085.828699998557568 ], [ 359887.778800003230572, 260014.833500001579523 ], [ 359860.234700001776218, 260029.806800000369549 ], [ 359894.291199997067451, 260102.279500000178814 ], [ 359914.479500003159046, 260098.856100000441074 ], [ 359920.924599997699261, 260099.542199999094009 ], [ 359924.101300001144409, 260105.267700001597404 ], [ 359927.3175999969244, 260106.349500000476837 ], [ 359929.738300003111362, 260106.15819999948144 ], [ 359932.166299998760223, 260105.122600000351667 ], [ 359936.239200003445148, 260100.300799999386072 ], [ 359944.363399997353554, 260093.190099999308586 ], [ 359947.651600003242493, 260085.828699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103010100", "MAP": "D9-5057-T91", "PARCEL_NAM": "2 REM", "ACRE": "1.27", "LONGITUDE": -64.96474062, "LATITUDE": 18.36987557, "OBJECTID_1": 393, "PARCEL_NO_": "101103010100", "Tax_Legal_": "NELTJBERG 2 REM.EASTERN PART LITTLE NORTHSIDE QTR", "Name": "KOPKO, MARY E", "Address": "4901 S Ellis Ave", "City": "Chicago", "State": "Illinois", "Zip": 60615, "Country": "United States", "Land_Value": 131900, "Improved_V": 208600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 354.61386859200002, "SHAPE_Area": 7235.6177531900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355251.779700003564358, 259950.605099998414516 ], [ 355162.983999997377396, 259968.797899998724461 ], [ 355165.181500002741814, 259979.136500000953674 ], [ 355166.678999997675419, 259992.6587999984622 ], [ 355165.694700002670288, 260013.5489999987185 ], [ 355163.135499998927116, 260029.993299998342991 ], [ 355161.481499999761581, 260034.83500000089407 ], [ 355162.952100001275539, 260051.523400001227856 ], [ 355166.128799997270107, 260057.2489 ], [ 355169.325300000607967, 260060.65260000154376 ], [ 355174.935300000011921, 260064.709300000220537 ], [ 355180.563299998641014, 260066.655200000852346 ], [ 355187.035400003194809, 260064.175000000745058 ], [ 355199.961499996483326, 260061.325500000268221 ], [ 355207.223700001835823, 260060.7516999989748 ], [ 355220.925700001418591, 260061.497099999338388 ], [ 355251.779700003564358, 259950.605099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92441947, "LATITUDE": 18.37014238, "OBJECTID_1": 933, "PARCEL_NO_": "101303014300", "Tax_Legal_": "PETERBORG 8-10 GT. NORTHSIDE", "Name": "HARGIS, PAUL D. & SUSAN G", "Address": "28640 Wahoo Dr", "City": "Bonita Springs", "State": "Florida", "Zip": 34135, "Country": "United States", "Land_Value": 163300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.22790883799999, "SHAPE_Area": 2035.1707271499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359494.482400000095367, 260084.652899999171495 ], [ 359476.32209999859333, 260039.330200001597404 ], [ 359450.354599997401237, 260058.53830000013113 ], [ 359429.266400001943111, 260072.931200001388788 ], [ 359435.538900002837181, 260093.880800001323223 ], [ 359465.404799997806549, 260090.325500000268221 ], [ 359494.482400000095367, 260084.652899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92268592000001, "LATITUDE": 18.37001515, "OBJECTID_1": 952, "PARCEL_NO_": "101304011700", "Tax_Legal_": "PETERBORG 8-21 GR NORTHSIDE", "Name": "JESSICA L ROSENBERG REVOCABLE TRUST", "Address": "PO Box 9877", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 172200, "Improved_V": 683800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.60392037099999, "SHAPE_Area": 1929.5551337500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359618.758900001645088, 260073.426600001752377 ], [ 359659.731499999761581, 260091.282699998468161 ], [ 359664.751000002026558, 260070.003299999982119 ], [ 359665.659800000488758, 260057.978399999439716 ], [ 359663.332599997520447, 260047.193599998950958 ], [ 359659.385600000619888, 260037.239900000393391 ], [ 359656.189099997282028, 260033.836300000548363 ], [ 359652.21509999781847, 260027.048700001090765 ], [ 359648.199699997901917, 260025.11600000038743 ], [ 359643.354599997401237, 260025.920800000429153 ], [ 359640.113200001418591, 260027.794100001454353 ], [ 359638.482600003480911, 260029.891699999570847 ], [ 359625.324400000274181, 260059.970300000160933 ], [ 359620.420000001788139, 260067.740699999034405 ], [ 359618.758900001645088, 260073.426600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304012800", "MAP": "A9-109-T69", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92403631000001, "LATITUDE": 18.36997295, "OBJECTID_1": 962, "PARCEL_NO_": "101304012800", "Tax_Legal_": "PETERBORG ESTATE 8-9 No.12 GREAT NORTHSIDE QTR.", "Name": "EARL E BREWLEY, JR", "Address": "1410 30th Ave NW Apt 5211", "City": "Minot", "State": "North Dakota", "Zip": 587035086, "Country": "United States", "Land_Value": 175800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.11475026799999, "SHAPE_Area": 2087.3394132100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359531.795800000429153, 260058.782699998468161 ], [ 359500.696699999272823, 260017.787099998444319 ], [ 359486.059000000357628, 260032.232700001448393 ], [ 359476.32209999859333, 260039.330200001597404 ], [ 359494.482400000095367, 260084.652899999171495 ], [ 359502.561800003051758, 260082.819200001657009 ], [ 359520.35639999806881, 260076.420899998396635 ], [ 359531.795800000429153, 260058.782699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92003642, "LATITUDE": 18.36979358, "OBJECTID_1": 1046, "PARCEL_NO_": "101304031500", "Tax_Legal_": "11-25 PETERBORG NO. 12 GREAT NORTHSIDE QUARTER", "Name": "MILLER DEVELOPMENT CORPORATION", "Address": "PO Box 10811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010000, "Country": "United States", "Land_Value": 162000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.427225956, "SHAPE_Area": 2391.4137109200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359962.443999998271465, 260053.23030000180006 ], [ 359911.302100002765656, 259998.560699999332428 ], [ 359887.778800003230572, 260014.833500001579523 ], [ 359947.651600003242493, 260085.828699998557568 ], [ 359946.1199000030756, 260076.31700000166893 ], [ 359943.742299996316433, 260071.442400000989437 ], [ 359944.568400003015995, 260069.127099998295307 ], [ 359947.017899997532368, 260065.558600001037121 ], [ 359954.308899998664856, 260061.607500001788139 ], [ 359961.617899999022484, 260055.5456000007689 ], [ 359962.443999998271465, 260053.23030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91863628, "LATITUDE": 18.36967656, "OBJECTID_1": 1052, "PARCEL_NO_": "101304032100", "Tax_Legal_": "PETERBORG 11-31 No.12 GREAT NORTHSIDE QTR.", "Name": "BLACKSTONE CENTRE III LLC", "Address": "60 Carriage Dr", "City": "Portsmouth", "State": "Rhode Island", "Zip": 2871, "Country": "United States", "Land_Value": 394900, "Improved_V": 630200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.78787464599998, "SHAPE_Area": 4923.0805187699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360082.48309999704361, 259971.464099999517202 ], [ 360076.066799998283386, 259967.400800000876188 ], [ 360078.534299999475479, 259961.721500001847744 ], [ 360075.330600000917912, 259959.162099998444319 ], [ 360062.280299998819828, 259976.576099999248981 ], [ 360058.103100001811981, 259993.640500001609325 ], [ 360052.279100000858307, 260014.702199999243021 ], [ 360053.072800002992153, 260016.186299998313189 ], [ 360052.954199999570847, 260030.117499999701977 ], [ 360050.466899998486042, 260038.118700001388788 ], [ 360042.373199999332428, 260041.641100000590086 ], [ 360035.071400001645088, 260046.858600001782179 ], [ 360034.218400001525879, 260052.34010000154376 ], [ 360034.889799997210503, 260068.177600000053644 ], [ 360039.684500001370907, 260073.283100001513958 ], [ 360050.958499997854233, 260075.064100001007318 ], [ 360055.825199998915195, 260071.726399999111891 ], [ 360058.227899998426437, 260073.645899999886751 ], [ 360063.064000003039837, 260073.896600000560284 ], [ 360065.524300001561642, 260069.061599999666214 ], [ 360068.763899996876717, 260067.399399999529123 ], [ 360072.800899997353554, 260066.799100000411272 ], [ 360076.019000001251698, 260067.669799998402596 ], [ 360078.448700003325939, 260066.423200000077486 ], [ 360081.744099996984005, 260058.217500001192093 ], [ 360083.367499999701977, 260056.964200001209974 ], [ 360089.020599998533726, 260055.954999998211861 ], [ 360090.674599997699261, 260051.113400001078844 ], [ 360093.91610000282526, 260049.240100000053644 ], [ 360098.761100001633167, 260048.435400001704693 ], [ 360102.020499996840954, 260044.451299998909235 ], [ 360106.062899999320507, 260043.217799998819828 ], [ 360110.168200001120567, 260034.596599999815226 ], [ 360112.612300001084805, 260031.661200001835823 ], [ 360118.281700000166893, 260028.752300001680851 ], [ 360082.48309999704361, 259971.464099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304014200", "MAP": "B9-158-T79", "PARCEL_NAM": "8-1", "ACRE": ".66", "LONGITUDE": -64.92481168, "LATITUDE": 18.36979175, "OBJECTID_1": 966, "PARCEL_NO_": "101304014200", "Tax_Legal_": "8-1 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "DIBRE, DINA", "Address": "1124 US Highway 202 Ste B9", "City": "Raritan", "State": "New Jersey", "Zip": 88691463, "Country": "United States", "Land_Value": 425100, "Improved_V": 4459900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.51057461400001, "SHAPE_Area": 2689.8487640100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359462.4358000010252, 260038.273699998855591 ], [ 359419.456500001251698, 259999.048000000417233 ], [ 359416.965999998152256, 260002.325199998915195 ], [ 359410.438199996948242, 260011.348799999803305 ], [ 359391.04900000244379, 260015.623100001364946 ], [ 359377.303900003433228, 260019.943599998950958 ], [ 359422.8699000030756, 260066.546000000089407 ], [ 359452.076999999582767, 260045.675700001418591 ], [ 359462.4358000010252, 260038.273699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101104012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9515384, "LATITUDE": 18.36955225, "OBJECTID_1": 518, "PARCEL_NO_": "101104012800", "Tax_Legal_": "HULL 4-3 LT. NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 209100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.48206188099999, "SHAPE_Area": 1237.1313089600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356611.546300001442432, 260016.168000001460314 ], [ 356623.476400002837181, 260006.447999998927116 ], [ 356600.599299997091293, 259969.564300000667572 ], [ 356586.21509999781847, 259954.247800000011921 ], [ 356583.03490000218153, 259948.944499999284744 ], [ 356572.360399998724461, 259971.444099999964237 ], [ 356598.738499999046326, 259998.679999999701977 ], [ 356611.546300001442432, 260016.168000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94252149, "LATITUDE": 18.36859015, "OBJECTID_1": 728, "PARCEL_NO_": "101203012700", "Tax_Legal_": "ST PETER 13-9 LITTLE NORTHSIDE", "Name": "QUERRARD, LAWRENCE J", "Address": "7433 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 432000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 796.76288112999998, "SHAPE_Area": 23357.6984094 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357629.173799999058247, 259821.562399998307228 ], [ 357626.02589999884367, 259812.459600001573563 ], [ 357621.247400000691414, 259805.4543999992311 ], [ 357621.263599999248981, 259803.554699998348951 ], [ 357617.302100002765656, 259795.289599999785423 ], [ 357584.106700003147125, 259811.061000000685453 ], [ 357576.821099996566772, 259814.378899998962879 ], [ 357574.416500002145767, 259812.670499999076128 ], [ 357570.388599999248981, 259812.215300001204014 ], [ 357566.335400000214577, 259814.715300001204014 ], [ 357563.142499998211861, 259810.889499999582767 ], [ 357565.590199999511242, 259807.532000001519918 ], [ 357565.638800002634525, 259801.832899998873472 ], [ 357557.001299999654293, 259774.531100001186132 ], [ 357518.879900000989437, 259800.605799999088049 ], [ 357494.11429999768734, 259773.383099999278784 ], [ 357487.615299999713898, 259779.029399998486042 ], [ 357484.406199999153614, 259777.103300001472235 ], [ 357480.369300000369549, 259777.703600000590086 ], [ 357477.179999999701977, 259773.455600000917912 ], [ 357477.271700002253056, 259762.690600000321865 ], [ 357471.703000001609325, 259753.779100000858307 ], [ 357478.150399997830391, 259788.956300001591444 ], [ 357522.838799998164177, 260032.774000000208616 ], [ 357536.368400000035763, 260019.441799998283386 ], [ 357538.799999997019768, 260017.984099999070168 ], [ 357542.871100001037121, 260013.373399998992682 ], [ 357546.927799999713898, 260010.451200000941753 ], [ 357550.99889999628067, 260005.840500000864267 ], [ 357552.616999998688698, 260005.220499999821186 ], [ 357568.062799997627735, 259990.570300001651049 ], [ 357573.777099996805191, 259982.384500000625849 ], [ 357577.905799999833107, 259971.019200000911951 ], [ 357580.418200001120567, 259960.062899999320507 ], [ 357588.48309999704361, 259959.91780000180006 ], [ 357592.523699998855591, 259958.895399998873472 ], [ 357598.193000003695488, 259955.9864999987185 ], [ 357603.878600001335144, 259951.17790000140667 ], [ 357607.964100003242493, 259944.878499999642372 ], [ 357610.48369999974966, 259933.077899999916553 ], [ 357608.969999998807907, 259921.455400001257658 ], [ 357608.38849999755621, 259895.063900001347065 ], [ 357610.087399996817112, 259884.945300001651049 ], [ 357614.2466000020504, 259869.991700001060963 ], [ 357615.877199999988079, 259867.894099999219179 ], [ 357615.895199999213219, 259865.783300001174212 ], [ 357621.593400001525879, 259859.49720000103116 ], [ 357623.238399997353554, 259855.710999999195337 ], [ 357624.863600000739098, 259854.246599998325109 ], [ 357629.017399996519089, 259839.926199998706579 ], [ 357629.946000002324581, 259825.579500000923872 ], [ 357629.173799999058247, 259821.562399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304012700", "MAP": "A9-109-T69", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92380743, "LATITUDE": 18.3696852, "OBJECTID_1": 961, "PARCEL_NO_": "101304012700", "Tax_Legal_": "PETERBORG 8-8 GT. NORTHSIDE", "Name": "DOVE WAY COMMUNITY ASSOC. , INC.", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.18615755600001, "SHAPE_Area": 1799.8550065699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359549.953599996864796, 260009.746500000357628 ], [ 359524.318899996578693, 259989.905000001192093 ], [ 359512.901000000536442, 260005.010299999266863 ], [ 359500.696699999272823, 260017.787099998444319 ], [ 359531.795800000429153, 260058.782699998468161 ], [ 359537.520900003612041, 260049.330299999564886 ], [ 359546.584499999880791, 260026.6064000017941 ], [ 359549.953599996864796, 260009.746500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91970017, "LATITUDE": 18.36947432, "OBJECTID_1": 1047, "PARCEL_NO_": "101304031600", "Tax_Legal_": "PETERBORG 11-26 GT.NORTHSIDE QTR.", "Name": "BABINSKI BUILDING LLC", "Address": "11 Adams Ave", "City": "Bayville", "State": "New York", "Zip": 11709, "Country": "United States", "Land_Value": 266000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.16908105300001, "SHAPE_Area": 5993.9384364699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360003.675599999725819, 260040.691100001335144 ], [ 359980.239699997007847, 259952.050999999046326 ], [ 359972.196299999952316, 259949.663199998438358 ], [ 359964.138599999248981, 259948.963899999856949 ], [ 359956.867399998009205, 259950.593199998140335 ], [ 359945.517899997532368, 259957.677499998360872 ], [ 359931.754799999296665, 259964.10869999974966 ], [ 359924.330799996852875, 259983.679699998348951 ], [ 359917.804799996316433, 259992.492199998348951 ], [ 359911.302100002765656, 259998.560699999332428 ], [ 359962.443999998271465, 260053.23030000180006 ], [ 359964.081799998879433, 260050.288400001823902 ], [ 359969.747500002384186, 260047.801600001752377 ], [ 359978.611599996685982, 260048.507500000298023 ], [ 359985.814499996602535, 260054.89919999986887 ], [ 359992.270300000905991, 260054.318799998611212 ], [ 360003.675599999725819, 260040.691100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104027800", "MAP": "D9-5844-T94", "PARCEL_NAM": "15-2-1", "ACRE": ".24", "LONGITUDE": -64.95110283, "LATITUDE": 18.36974869, "OBJECTID_1": 643, "PARCEL_NO_": "101104027800", "Tax_Legal_": "HULL 15-2-1 LT. NORTHSIDE QTR.", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 199500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.30378069699999, "SHAPE_Area": 734.78780543599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356660.731100000441074, 260010.164200000464916 ], [ 356641.598999999463558, 259984.254200000315905 ], [ 356626.972000002861023, 259997.433400001376867 ], [ 356626.945100001990795, 260000.599599998444319 ], [ 356641.260899998247623, 260023.937100000679493 ], [ 356642.848399996757507, 260026.9054000005126 ], [ 356660.731100000441074, 260010.164200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91932819, "LATITUDE": 18.36936373, "OBJECTID_1": 1048, "PARCEL_NO_": "101304031700", "Tax_Legal_": "11-27 ESTATE PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "MOUNTAIN LION REALTY LLC", "Address": "100 Blackbeard' South Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 240200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.95448086499999, "SHAPE_Area": 1672.7086906 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360012.413000002503395, 259961.60249999910593 ], [ 359980.239699997007847, 259952.050999999046326 ], [ 360003.675599999725819, 260040.691100001335144 ], [ 360014.276299998164177, 260026.845600001513958 ], [ 360012.413000002503395, 259961.60249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104027700", "MAP": "D9-5844-T94", "PARCEL_NAM": "15-2-2", "ACRE": ".23", "LONGITUDE": -64.95094558, "LATITUDE": 18.36959555, "OBJECTID_1": 642, "PARCEL_NO_": "101104027700", "Tax_Legal_": "HULL 15-2-2 LT. NORTHSIDE QTR", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.928163246, "SHAPE_Area": 788.73982161000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356677.802100002765656, 259994.049699999392033 ], [ 356658.689800001680851, 259965.817899998277426 ], [ 356655.430299997329712, 259969.802000001072884 ], [ 356641.598999999463558, 259984.254200000315905 ], [ 356660.731100000441074, 260010.164200000464916 ], [ 356677.802100002765656, 259994.049699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101304039800", "MAP": "A9-370-T98", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92098222, "LATITUDE": 18.3677754, "OBJECTID_1": 1096, "PARCEL_NO_": "101304039800", "Tax_Legal_": "PETERBORG ROAD PARCELS 11-D,E,F, G,H,&I No.12 GREAT NORTHSIDE QTR", "Name": "SIDNEY'S FANCY HOME-OWNERS", "Address": "100 BLACKBEARD'S CASTLE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2661.8068931799999, "SHAPE_Area": 10055.810589799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359927.590899996459484, 259600.993700001388788 ], [ 359900.063000001013279, 259614.067299999296665 ], [ 359879.752300001680851, 259631.844000000506639 ], [ 359871.628100000321865, 259638.954700000584126 ], [ 359843.965300001204014, 259667.859200000762939 ], [ 359830.945600003004074, 259681.684900000691414 ], [ 359829.325800001621246, 259682.515999998897314 ], [ 359824.430399999022484, 259689.230900000780821 ], [ 359797.493000000715256, 259727.640500001609325 ], [ 359789.331000000238419, 259739.183899998664856 ], [ 359786.877899996936321, 259743.174600001424551 ], [ 359783.582500003278255, 259751.380300000309944 ], [ 359781.13120000064373, 259755.15989999845624 ], [ 359774.53320000320673, 259772.415600001811981 ], [ 359762.177799999713898, 259802.923000000417233 ], [ 359754.84009999781847, 259812.362199999392033 ], [ 359715.78999999910593, 259852.783599998801947 ], [ 359709.271200001239777, 259860.751800000667572 ], [ 359691.230200000107288, 259896.067899998277426 ], [ 359689.590599998831749, 259899.220899999141693 ], [ 359666.737000003457069, 259931.542199999094009 ], [ 359665.113600000739098, 259932.795499999076128 ], [ 359661.827200002968311, 259939.945799998939037 ], [ 359660.124600000679493, 259950.4864999987185 ], [ 359661.623999997973442, 259963.797699999064207 ], [ 359664.788099996745586, 259971.000799998641014 ], [ 359667.973800003528595, 259975.670899998396635 ], [ 359676.773100003600121, 259983.975600000470877 ], [ 359682.422399997711182, 259985.98200000077486 ], [ 359687.587200000882149, 259979.849500000476837 ], [ 359681.664899997413158, 259977.682799998670816 ], [ 359673.662900000810623, 259970.440099999308586 ], [ 359669.688900001347065, 259963.65260000154376 ], [ 359668.232699997723103, 259945.275499999523163 ], [ 359671.528099998831749, 259937.069899998605251 ], [ 359678.057700000703335, 259927.835200000554323 ], [ 359686.88400000333786, 259932.973700001835823 ], [ 359700.488799996674061, 259945.117400001734495 ], [ 359705.299699999392033, 259948.323100000619888 ], [ 359713.337700001895428, 259951.344200000166893 ], [ 359724.60980000346899, 259953.336300000548363 ], [ 359734.287399999797344, 259953.2043999992311 ], [ 359741.544200003147125, 259953.263799998909235 ], [ 359764.983000002801418, 259946.911800000816584 ], [ 359777.928999997675419, 259941.74040000140667 ], [ 359800.582999996840954, 259932.848799999803305 ], [ 359808.6875, 259928.059999998658895 ], [ 359811.946900002658367, 259924.075899999588728 ], [ 359814.409000001847744, 259919.029800001531839 ], [ 359816.077399998903275, 259912.499499998986721 ], [ 359820.967399999499321, 259906.41780000180006 ], [ 359825.018799997866154, 259904.129000000655651 ], [ 359836.337700001895428, 259900.633000001311302 ], [ 359846.042199999094009, 259897.334899999201298 ], [ 359874.351300001144409, 259887.223000001162291 ], [ 359883.262100003659725, 259882.440799999982119 ], [ 359889.743100002408028, 259878.905299998819828 ], [ 359899.481799997389317, 259871.596700001507998 ], [ 359919.805100001394749, 259852.342399999499321 ], [ 359932.814000003039837, 259839.783300001174212 ], [ 359942.593999996781349, 259827.619899999350309 ], [ 359953.227099999785423, 259809.975099999457598 ], [ 359959.79450000077486, 259796.307799998670816 ], [ 359965.593299999833107, 259778.201200000941753 ], [ 359969.768700003623962, 259761.347899999469519 ], [ 359972.381899997591972, 259738.571100000292063 ], [ 359975.104699999094009, 259702.918600000441074 ], [ 359971.920800000429153, 259698.037399999797344 ], [ 359967.914399996399879, 259695.049300000071526 ], [ 359963.087399996817112, 259693.743200000375509 ], [ 359958.242299996316433, 259694.548000000417233 ], [ 359953.395400002598763, 259695.563799999654293 ], [ 359939.619800001382828, 259703.472600001841784 ], [ 359909.638800002634525, 259720.536899998784065 ], [ 359893.40820000320673, 259732.647399999201298 ], [ 359892.589299999177456, 259734.118400000035763 ], [ 359890.9712999984622, 259734.738400001078844 ], [ 359869.85249999910593, 259752.7195999994874 ], [ 359842.234700001776218, 259776.347199998795986 ], [ 359836.55460000038147, 259780.52250000089407 ], [ 359825.197899997234344, 259788.451099999248981 ], [ 359817.066399998962879, 259796.406199999153614 ], [ 359798.291000001132488, 259823.27250000089407 ], [ 359795.031599998474121, 259827.256599999964237 ], [ 359791.736299999058247, 259835.462200000882149 ], [ 359788.453500002622604, 259842.190400000661612 ], [ 359786.76349999755621, 259851.253600001335144 ], [ 359785.712600000202656, 259879.953699998557568 ], [ 359786.414700001478195, 259892.202899999916553 ], [ 359787.186800003051758, 259896.219900000840425 ], [ 359788.779700003564358, 259898.554999999701977 ], [ 359791.97070000320673, 259902.591899998486042 ], [ 359805.586300000548363, 259913.469099998474121 ], [ 359805.534199997782707, 259919.590399999171495 ], [ 359800.660400003194809, 259923.772399999201298 ], [ 359761.817100003361702, 259939.919799998402596 ], [ 359735.152999997138977, 259946.245400000363588 ], [ 359727.088100001215935, 259946.390500001609325 ], [ 359711.796999998390675, 259942.887899998575449 ], [ 359704.576099999248981, 259938.606899999082088 ], [ 359691.772200003266335, 259927.103100001811981 ], [ 359682.947700001299381, 259921.753499999642372 ], [ 359697.637599997222424, 259901.186599999666214 ], [ 359702.549199998378754, 259892.571899998933077 ], [ 359713.227200001478195, 259869.650100000202656 ], [ 359717.314499996602535, 259863.139699999243021 ], [ 359718.928999997675419, 259862.941799998283386 ], [ 359720.577600002288818, 259858.733399998396635 ], [ 359722.197400003671646, 259857.902300000190735 ], [ 359760.4375, 259817.89640000090003 ], [ 359766.958099998533726, 259809.717099998146296 ], [ 359767.784199997782707, 259807.401900000870228 ], [ 359771.065200001001358, 259800.884799998253584 ], [ 359775.157899998128414, 259793.741099998354912 ], [ 359789.190700002014637, 259755.647999998182058 ], [ 359793.281599998474121, 259748.715399999171495 ], [ 359818.602799996733665, 259710.714699998497963 ], [ 359833.288999997079372, 259690.570000000298023 ], [ 359873.971500001847744, 259647.839800000190735 ], [ 359876.415600001811981, 259644.904500000178814 ], [ 359883.729999996721745, 259638.209399998188019 ], [ 359896.728100001811981, 259626.916700001806021 ], [ 359908.917999997735023, 259615.828499998897314 ], [ 359912.148699998855591, 259615.221700001507998 ], [ 359914.549599997699261, 259617.352299999445677 ], [ 359919.423500001430511, 259613.170299999415874 ], [ 359917.821599997580051, 259611.890599999576807 ], [ 359917.855800002813339, 259607.880100000649691 ], [ 359927.590899996459484, 259600.993700001388788 ] ], [ [ 359901.4425999969244, 259736.090700000524521 ], [ 359924.836400002241135, 259735.015599999576807 ], [ 359929.640100002288818, 259739.065699998289347 ], [ 359932.0320999994874, 259742.2516999989748 ], [ 359932.814999997615814, 259745.002300001680851 ], [ 359931.971000000834465, 259749.428399998694658 ], [ 359922.937899999320507, 259768.563900001347065 ], [ 359911.523599997162819, 259783.247099999338388 ], [ 359915.520999997854233, 259787.290600001811981 ], [ 359923.66330000013113, 259778.069099999964237 ], [ 359926.096600003540516, 259776.400299999862909 ], [ 359928.569499999284744, 259770.087699998170137 ], [ 359933.452299997210503, 259764.850299999117851 ], [ 359935.934199996292591, 259757.482299998402596 ], [ 359936.776500001549721, 259753.267400000244379 ], [ 359938.482600003480911, 259742.304499998688698 ], [ 359934.513999998569489, 259734.883699998259544 ], [ 359929.710299998521805, 259730.833599999547005 ], [ 359925.691299997270107, 259729.323100000619888 ], [ 359911.177699998021126, 259729.204300001263618 ], [ 359918.477600000798702, 259724.197799999266863 ], [ 359958.181100003421307, 259701.724599998444319 ], [ 359963.022600002586842, 259701.342099998146296 ], [ 359966.231700003147125, 259703.268199998885393 ], [ 359967.826300002634525, 259705.392200000584126 ], [ 359967.793999999761581, 259709.191599998623133 ], [ 359962.560500003397465, 259755.589299999177456 ], [ 359960.008500002324581, 259771.189399998635054 ], [ 359954.22580000013113, 259787.396200001239777 ], [ 359950.081000000238419, 259800.661200001835823 ], [ 359938.625399999320507, 259820.199200000613928 ], [ 359925.589500002563, 259835.924499999731779 ], [ 359903.63570000231266, 259857.276299998164177 ], [ 359895.505999997258186, 259865.020300000905991 ], [ 359883.335799999535084, 259873.78660000115633 ], [ 359872.801600001752377, 259879.82209999859333 ], [ 359850.149300001561642, 259888.502599999308586 ], [ 359814.576300002634525, 259899.399399999529123 ], [ 359803.284299999475479, 259899.729200001806021 ], [ 359796.860799998044968, 259896.510200001299381 ], [ 359794.467000000178814, 259893.535300001502037 ], [ 359792.924500003457069, 259885.28999999910593 ], [ 359794.005900003015995, 259853.001600001007318 ], [ 359798.17059999704361, 259837.414700001478195 ], [ 359808.794699996709824, 259820.825300000607967 ], [ 359823.479099996387959, 259800.891600001603365 ], [ 359847.83389999717474, 259781.670299999415874 ], [ 359849.455600000917912, 259780.628100000321865 ], [ 359881.947200000286102, 259752.818599998950958 ], [ 359901.4425999969244, 259736.090700000524521 ] ], [ [ 359805.652900002896786, 259905.659200001507998 ], [ 359815.335799999535084, 259904.894099999219179 ], [ 359812.079999998211861, 259908.456000000238419 ], [ 359811.248499996960163, 259911.404500000178814 ], [ 359809.659299999475479, 259908.647300001233816 ], [ 359805.652900002896786, 259905.659200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304036600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92050555, "LATITUDE": 18.36941996, "OBJECTID_1": 1094, "PARCEL_NO_": "101304036600", "Tax_Legal_": "PETERBORG 11-22 GT.NORTHSIDE QTR.", "Name": "GOMEZ, CURTIS V. & FRANCIS, SI", "Address": "PO Box 334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 172200, "Improved_V": 650200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.42450491700001, "SHAPE_Area": 2415.07457234 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359847.709499999880791, 259985.585700001567602 ], [ 359837.68129999935627, 260026.877900000661612 ], [ 359851.440800003707409, 260020.86879999935627 ], [ 359857.106600001454353, 260018.382100000977516 ], [ 359858.692199997603893, 260021.561500001698732 ], [ 359862.720200002193451, 260022.016600001603365 ], [ 359878.113799996674061, 260013.487799998372793 ], [ 359908.931699998676777, 259992.84180000051856 ], [ 359914.626299999654293, 259986.977699998766184 ], [ 359918.711800001561642, 259980.678399998694658 ], [ 359923.666500002145767, 259966.997800000011921 ], [ 359847.709499999880791, 259985.585700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9182516, "LATITUDE": 18.36927222, "OBJECTID_1": 1053, "PARCEL_NO_": "101304032200", "Tax_Legal_": "PETERBORG 11-32 GT. NORTHSIDE QTR.", "Name": "PATTERSON, ALAN L.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 257400, "Improved_V": 757600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.02896948099999, "SHAPE_Area": 3285.0892427700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360147.659599997103214, 259987.829500000923872 ], [ 360121.398299999535084, 259946.873500000685453 ], [ 360099.72860000282526, 259934.875 ], [ 360094.768399998545647, 259949.188700001686811 ], [ 360082.48309999704361, 259971.464099999517202 ], [ 360118.281700000166893, 260028.752300001680851 ], [ 360120.727600000798702, 260025.605999998748302 ], [ 360123.155500002205372, 260024.57039999961853 ], [ 360127.986199997365475, 260025.454300001263618 ], [ 360129.607799999415874, 260024.412099998444319 ], [ 360130.469899997115135, 260017.875199999660254 ], [ 360132.933700002729893, 260012.618099998682737 ], [ 360139.452600002288818, 260004.649900000542402 ], [ 360143.543499998748302, 259997.717199999839067 ], [ 360145.224399998784065, 259989.709499999880791 ], [ 360147.659599997103214, 259987.829500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304012900", "MAP": "B9-158-T67", "PARCEL_NAM": "8-2", "ACRE": "0.66", "LONGITUDE": -64.9244793, "LATITUDE": 18.36952471, "OBJECTID_1": 963, "PARCEL_NO_": "101304012900", "Tax_Legal_": "8-2 PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "DIBRE, DINA", "Address": "1124 US Highway 202 Ste B9", "City": "Raritan", "State": "New Jersey", "Zip": 88691463, "Country": "United States", "Land_Value": 268900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.52220653800001, "SHAPE_Area": 2710.4040267800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359496.780000001192093, 260008.964999999850988 ], [ 359444.202799998223782, 259966.764899998903275 ], [ 359438.169299997389317, 259974.423300001770258 ], [ 359423.706500001251698, 259993.455299999564886 ], [ 359419.456500001251698, 259999.048000000417233 ], [ 359462.4358000010252, 260038.273699998855591 ], [ 359465.62780000269413, 260035.992800001055002 ], [ 359473.982299998402596, 260030.022999998182058 ], [ 359482.106499999761581, 260022.912300001829863 ], [ 359486.170400001108646, 260019.145799998193979 ], [ 359495.925300002098083, 260009.937600001692772 ], [ 359496.780000001192093, 260008.964999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304014300", "MAP": "A9-109-T69", "PARCEL_NAM": "8-33", "ACRE": null, "LONGITUDE": -64.922567, "LATITUDE": 18.36954348, "OBJECTID_1": 967, "PARCEL_NO_": "101304014300", "Tax_Legal_": "8-33 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "REARDEN CAPITAL, LLC", "Address": "PO Box 7955", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.552866194700002, "SHAPE_Area": 437.09156858400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359670.995800003409386, 259999.549199998378754 ], [ 359657.362199999392033, 259990.782800000160933 ], [ 359645.046400003135204, 260016.646499998867512 ], [ 359653.105899997055531, 260017.13459999859333 ], [ 359659.515000000596046, 260022.042199999094009 ], [ 359661.107900001108646, 260024.377300001680851 ], [ 359670.995800003409386, 259999.549199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91905045, "LATITUDE": 18.36934137, "OBJECTID_1": 1049, "PARCEL_NO_": "101304031800", "Tax_Legal_": "PETERBORG ESTATE 11-28 No.12 GREAT NORTHSIDE QTR.", "Name": "VARLACK, NELLIE C.", "Address": "PO Box 397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 306100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.11572561099999, "SHAPE_Area": 1869.0488643399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360058.103100001811981, 259993.640500001609325 ], [ 360029.419299997389317, 259953.086800001561642 ], [ 360022.101400002837181, 259960.204100001603365 ], [ 360017.250900000333786, 259961.642099998891354 ], [ 360012.413000002503395, 259961.60249999910593 ], [ 360014.276299998164177, 260026.845600001513958 ], [ 360020.793399997055531, 260019.088500000536442 ], [ 360037.866200000047684, 260002.763000000268221 ], [ 360045.130199998617172, 260001.978000000119209 ], [ 360049.134800001978874, 260005.177200000733137 ], [ 360052.279100000858307, 260014.702199999243021 ], [ 360058.103100001811981, 259993.640500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104027200", "MAP": "D9-5844-T94", "PARCEL_NAM": "15-2-3", "ACRE": ".23", "LONGITUDE": -64.95079625, "LATITUDE": 18.36943954, "OBJECTID_1": 638, "PARCEL_NO_": "101104027200", "Tax_Legal_": "HULL BAY 15-2-3 LITTLE NORTHSIDE QTR", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 199500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.831120529, "SHAPE_Area": 769.84729852600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356692.434399999678135, 259980.237300001084805 ], [ 356675.764399997889996, 259949.281199999153614 ], [ 356670.102200001478195, 259951.345800001174212 ], [ 356658.689800001680851, 259965.817899998277426 ], [ 356677.802100002765656, 259994.049699999392033 ], [ 356692.434399999678135, 259980.237300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104027300", "MAP": "D9-5844-T94", "PARCEL_NAM": "9 REM", "ACRE": "0.22", "LONGITUDE": -64.95131814, "LATITUDE": 18.3693695, "OBJECTID_1": 639, "PARCEL_NO_": "101104027300", "Tax_Legal_": "9 REM. HULL 4A LITTLE NORTHSIDE QTR", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.74698991299999, "SHAPE_Area": 1246.2587589899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356613.777199998497963, 259937.163800001144409 ], [ 356596.682800002396107, 259956.022300001233816 ], [ 356611.8462999984622, 259974.511500000953674 ], [ 356615.019400000572205, 259980.659200001507998 ], [ 356621.399800002574921, 259988.944099999964237 ], [ 356623.822300001978874, 259988.541700001806021 ], [ 356628.696199998259544, 259984.359700001776218 ], [ 356645.781599998474121, 259966.556600000709295 ], [ 356613.777199998497963, 259937.163800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304030800", "MAP": "A9-370-T89", "PARCEL_NAM": "11-17", "ACRE": null, "LONGITUDE": -64.92263158, "LATITUDE": 18.36925605, "OBJECTID_1": 1040, "PARCEL_NO_": "101304030800", "Tax_Legal_": "PETERBORG 11-17 GT. NORTHSIDE QTR.", "Name": "MILLER, GEORGE, MALIK, DEHDAN, MAD", "Address": "1212 Bjerge Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168600, "Improved_V": 172100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.82615671, "SHAPE_Area": 1198.04761792 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359660.877199999988079, 259957.167899999767542 ], [ 359614.004799999296665, 259963.332899998873472 ], [ 359626.08330000191927, 259970.895100001245737 ], [ 359657.362199999392033, 259990.782800000160933 ], [ 359670.995800003409386, 259999.549199998378754 ], [ 359682.422399997711182, 259985.98200000077486 ], [ 359676.773100003600121, 259983.975600000470877 ], [ 359667.973800003528595, 259975.670899998396635 ], [ 359664.788099996745586, 259971.000799998641014 ], [ 359661.623999997973442, 259963.797699999064207 ], [ 359660.877199999988079, 259957.167899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92359627, "LATITUDE": 18.36926168, "OBJECTID_1": 960, "PARCEL_NO_": "101304012600", "Tax_Legal_": "PETERBORG 8-7 GT.NORTHSIDE QTR.", "Name": "GREGORY, FRETT DONNA", "Address": "PO Box 9124", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 179400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.46072272699999, "SHAPE_Area": 1341.06512582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359579.567100003361702, 259941.172400001436472 ], [ 359573.948100000619888, 259938.171100001782179 ], [ 359553.6554000005126, 259953.837000001221895 ], [ 359542.26630000025034, 259965.565000001341105 ], [ 359524.318899996578693, 259989.905000001192093 ], [ 359549.953599996864796, 260009.746500000357628 ], [ 359553.306599996984005, 259994.786299999803305 ], [ 359559.10360000282526, 259976.890799999237061 ], [ 359568.955600000917912, 259956.284200001507998 ], [ 359579.567100003361702, 259941.172400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104027500", "MAP": "D9-5844-T94", "PARCEL_NAM": "15-2-4", "ACRE": ".23", "LONGITUDE": -64.95061322, "LATITUDE": 18.36934148, "OBJECTID_1": 641, "PARCEL_NO_": "101104027500", "Tax_Legal_": "HULL 15-2-4 No.4A LT. NORTHSIDE QTR.", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.799320714, "SHAPE_Area": 650.44544377700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356709.640299998223782, 259948.291900001466274 ], [ 356693.497900001704693, 259950.05970000103116 ], [ 356675.764399997889996, 259949.281199999153614 ], [ 356692.434399999678135, 259980.237300001084805 ], [ 356710.318899996578693, 259963.285100001841784 ], [ 356709.640299998223782, 259948.291900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304034000", "MAP": "A9-370-T89", "PARCEL_NAM": "11-41", "ACRE": ".505", "LONGITUDE": -64.92160144, "LATITUDE": 18.36921615, "OBJECTID_1": 1071, "PARCEL_NO_": "101304034000", "Tax_Legal_": "11-41 PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "FEDDERSEN, KIRST & GINA", "Address": "6501 Redhook Plaza--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 157900, "Improved_V": 861500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.997675628, "SHAPE_Area": 2554.5560724400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359799.300200000405312, 259988.778099998831749 ], [ 359777.928999997675419, 259941.74040000140667 ], [ 359764.983000002801418, 259946.911800000816584 ], [ 359741.544200003147125, 259953.263799998909235 ], [ 359734.287399999797344, 259953.2043999992311 ], [ 359728.288999997079372, 259994.740800000727177 ], [ 359733.915200002491474, 259996.897799998521805 ], [ 359738.751199997961521, 259997.148400001227856 ], [ 359741.98369999974966, 259996.33049999922514 ], [ 359747.656599998474121, 259992.999400001019239 ], [ 359755.741300001740456, 259990.532499998807907 ], [ 359768.644100002944469, 259990.427000001072884 ], [ 359785.578500002622604, 259990.354499999433756 ], [ 359799.300200000405312, 259988.778099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304039700", "MAP": "A9-370-T89", "PARCEL_NAM": "11-40", "ACRE": ".506", "LONGITUDE": -64.92217976000001, "LATITUDE": 18.3691395, "OBJECTID_1": 1095, "PARCEL_NO_": "101304039700", "Tax_Legal_": "11-40 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "LIBURD, JANICE M", "Address": "11 Goldstar Drive", "City": "Princeton", "State": "New Jersey", "Zip": 8540, "Country": "United States", "Land_Value": 157900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.802145561, "SHAPE_Area": 2523.66591324 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359728.288999997079372, 259994.740800000727177 ], [ 359734.287399999797344, 259953.2043999992311 ], [ 359724.60980000346899, 259953.336300000548363 ], [ 359713.337700001895428, 259951.344200000166893 ], [ 359705.299699999392033, 259948.323100000619888 ], [ 359700.488799996674061, 259945.117400001734495 ], [ 359686.88400000333786, 259932.973700001835823 ], [ 359678.057700000703335, 259927.835200000554323 ], [ 359671.528099998831749, 259937.069899998605251 ], [ 359668.232699997723103, 259945.275499999523163 ], [ 359669.688900001347065, 259963.65260000154376 ], [ 359673.662900000810623, 259970.440099999308586 ], [ 359681.664899997413158, 259977.682799998670816 ], [ 359728.288999997079372, 259994.740800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104027100", "MAP": "D9-5844-T94", "PARCEL_NAM": "9-5", "ACRE": "0.46", "LONGITUDE": -64.95117872, "LATITUDE": 18.36921046, "OBJECTID_1": 637, "PARCEL_NO_": "101104027100", "Tax_Legal_": "9-5 HULL 4A LITTLE NORTHSIDE QTR", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 150300, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.815961688, "SHAPE_Area": 732.91327970600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356657.174199998378754, 259954.406399998813868 ], [ 356625.173500001430511, 259924.591400001198053 ], [ 356613.777199998497963, 259937.163800001144409 ], [ 356645.781599998474121, 259966.556600000709295 ], [ 356657.174199998378754, 259954.406399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91876451, "LATITUDE": 18.36898391, "OBJECTID_1": 1050, "PARCEL_NO_": "101304031900", "Tax_Legal_": "11-29 ESTATE PETERBORG GT. NORTHSIDE QTR.", "Name": "HAMMERSCHLAG, ALAN & BONNIE", "Address": "6901 Hillmead Rd", "City": "Bethesda", "State": "Maryland", "Zip": 20817, "Country": "United States", "Land_Value": 159700, "Improved_V": 1096200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.47649454800001, "SHAPE_Area": 2423.8388124200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360093.308600001037121, 259931.233800001442432 ], [ 360061.203599996864796, 259913.661400001496077 ], [ 360039.996699996292591, 259941.985399998724461 ], [ 360029.419299997389317, 259953.086800001561642 ], [ 360058.103100001811981, 259993.640500001609325 ], [ 360062.280299998819828, 259976.576099999248981 ], [ 360075.330600000917912, 259959.162099998444319 ], [ 360078.598999999463558, 259954.122600000351667 ], [ 360081.007100000977516, 259955.408900000154972 ], [ 360084.241400003433228, 259954.379900000989437 ], [ 360086.712499998509884, 259948.278400000184774 ], [ 360088.341300003230572, 259946.3918999992311 ], [ 360091.651000000536442, 259936.497600000351667 ], [ 360093.308600001037121, 259931.233800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95479336, "LATITUDE": 18.36851127, "OBJECTID_1": 506, "PARCEL_NO_": "101104011500", "Tax_Legal_": "2 H HULL BAY LITTLE NORTHSIDE QUARTER", "Name": "LAPLACE, JEREMIA R.", "Address": "7745 Upper Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 197300, "Improved_V": 252100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 412.57599740500001, "SHAPE_Area": 6523.0259870299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356228.120700001716614, 259962.082800000905991 ], [ 356230.552199997007847, 259960.625 ], [ 356230.568400003015995, 259958.725299999117851 ], [ 356237.160999998450279, 259942.102899998426437 ], [ 356240.524700000882149, 259925.876200001686811 ], [ 356243.829000003635883, 259916.615100000053644 ], [ 356249.550599999725819, 259907.584899999201298 ], [ 356254.42620000243187, 259903.191899999976158 ], [ 356253.74040000140667, 259889.043000001460314 ], [ 356298.942400000989437, 259883.71339999884367 ], [ 356300.718699999153614, 259864.518500000238419 ], [ 356299.951899997889996, 259859.868099998682737 ], [ 356296.019299998879433, 259848.22580000013113 ], [ 356291.238899998366833, 259841.431699998676777 ], [ 356288.114399999380112, 259829.584899999201298 ], [ 356286.629399999976158, 259814.585099998861551 ], [ 356288.290600001811981, 259808.899099998176098 ], [ 356286.688799999654293, 259807.619500000029802 ], [ 356276.188699997961521, 259809.644499998539686 ], [ 356253.532799996435642, 259818.747099999338388 ], [ 356217.162500001490116, 259828.581999998539686 ], [ 356228.120700001716614, 259962.082800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304033900", "MAP": "A9-370-T89", "PARCEL_NAM": "11-42", "ACRE": ".500", "LONGITUDE": -64.92114253, "LATITUDE": 18.36908872, "OBJECTID_1": 1070, "PARCEL_NO_": "101304033900", "Tax_Legal_": "PETERBORG ESTATE 11-42 GT.NORTHSIDE QTR.", "Name": "REID, LYN N", "Address": "PO Box 7155", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 156100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.879191246, "SHAPE_Area": 2395.7532102800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359842.124700002372265, 259978.573899999260902 ], [ 359814.409000001847744, 259919.029800001531839 ], [ 359811.946900002658367, 259924.075899999588728 ], [ 359808.6875, 259928.059999998658895 ], [ 359800.582999996840954, 259932.848799999803305 ], [ 359777.928999997675419, 259941.74040000140667 ], [ 359799.300200000405312, 259988.778099998831749 ], [ 359842.124700002372265, 259978.573899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91810594, "LATITUDE": 18.36891337, "OBJECTID_1": 1054, "PARCEL_NO_": "101304032300", "Tax_Legal_": "PETERBORG 11-33 GT.NORTHSIDE QTR.", "Name": "NICHOLS FAMILY REVOCABLE TRUST", "Address": "1000 BLACKBEARD'S HILL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 270700, "Improved_V": 701200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.42464770500001, "SHAPE_Area": 2229.1161306899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360163.184500001370907, 259963.8918999992311 ], [ 360129.752700001001358, 259912.744800001382828 ], [ 360108.082999996840954, 259900.746199999004602 ], [ 360099.72860000282526, 259934.875 ], [ 360121.398299999535084, 259946.873500000685453 ], [ 360147.659599997103214, 259987.829500000923872 ], [ 360151.727099999785423, 259983.640999998897314 ], [ 360152.589100003242493, 259977.104100000113249 ], [ 360150.994499996304512, 259974.980099998414516 ], [ 360152.625100001692772, 259972.882500000298023 ], [ 360158.292700000107288, 259970.18470000103116 ], [ 360163.184500001370907, 259963.8918999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104027000", "MAP": "D9-5334-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95144394, "LATITUDE": 18.36907645, "OBJECTID_1": 636, "PARCEL_NO_": "101104027000", "Tax_Legal_": "HULL 9-1 LITTLE NORTHSIDE", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75100, "Improved_V": 105400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.914014995, "SHAPE_Area": 954.35478187499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356625.173500001430511, 259924.591400001198053 ], [ 356639.821999996900558, 259908.879299998283386 ], [ 356595.372299998998642, 259920.547800000756979 ], [ 356592.87780000269413, 259929.393300000578165 ], [ 356591.24719999730587, 259931.490899998694658 ], [ 356587.951800003647804, 259939.696600001305342 ], [ 356589.488899998366833, 259948.575100000947714 ], [ 356596.682800002396107, 259956.022300001233816 ], [ 356613.777199998497963, 259937.163800001144409 ], [ 356625.173500001430511, 259924.591400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104028500", "MAP": "D9-5844-T94", "PARCEL_NAM": "9-4", "ACRE": ".23", "LONGITUDE": -64.95106974, "LATITUDE": 18.36906972, "OBJECTID_1": 649, "PARCEL_NO_": "101104028500", "Tax_Legal_": "HULL ESTATE 9-4 No.4A LITTLE NORTHSIDE QTR.", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.75335023, "SHAPE_Area": 916.99253029500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356667.755199998617172, 259942.88289999961853 ], [ 356645.478799998760223, 259907.447900000959635 ], [ 356639.821999996900558, 259908.879299998283386 ], [ 356625.173500001430511, 259924.591400001198053 ], [ 356657.174199998378754, 259954.406399998813868 ], [ 356661.259700000286102, 259948.107099998742342 ], [ 356667.755199998617172, 259942.88289999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304033800", "MAP": "A9-370-T89", "PARCEL_NAM": "11-43", "ACRE": ".60", "LONGITUDE": -64.9208468, "LATITUDE": 18.36893467, "OBJECTID_1": 1069, "PARCEL_NO_": "101304033800", "Tax_Legal_": "PETERBORG 11-43 GT, NORTHSIDE QTR", "Name": "BRUNT, IV THOMAS & PIA", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 174000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.775712849, "SHAPE_Area": 2189.8901195200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359856.949400000274181, 259942.175999999046326 ], [ 359836.337700001895428, 259900.633000001311302 ], [ 359825.018799997866154, 259904.129000000655651 ], [ 359820.967399999499321, 259906.41780000180006 ], [ 359816.077399998903275, 259912.499499998986721 ], [ 359814.409000001847744, 259919.029800001531839 ], [ 359842.124700002372265, 259978.573899999260902 ], [ 359872.829300001263618, 259971.22580000013113 ], [ 359856.949400000274181, 259942.175999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103034900", "MAP": "D9-4965-T90", "PARCEL_NAM": "2B", "ACRE": null, "LONGITUDE": -64.96480611, "LATITUDE": 18.3688288, "OBJECTID_1": 484, "PARCEL_NO_": "101103034900", "Tax_Legal_": "NELTJEBERG 2B LITTLE NORTHSIDE", "Name": "HUGH, JANET REVOCABLE TRUST", "Address": "PO Box 600168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 230600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.95676382099998, "SHAPE_Area": 7576.6141969500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355141.523400001227856, 259920.455299999564886 ], [ 355248.728000000119209, 259926.602299999445677 ], [ 355261.151699997484684, 259883.030099999159575 ], [ 355204.234399996697903, 259843.723000001162291 ], [ 355115.104900002479553, 259894.078200001269579 ], [ 355126.326700001955032, 259901.980500001460314 ], [ 355131.126800000667572, 259906.4527000002563 ], [ 355141.523400001227856, 259920.455299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020300", "MAP": "D9-5844-T94", "PARCEL_NAM": "9-3", "ACRE": "0.48", "LONGITUDE": -64.95086997, "LATITUDE": 18.36896373, "OBJECTID_1": 571, "PARCEL_NO_": "101104020300", "Tax_Legal_": "9-3 HULL 4A LITTLE NORTHSIDE QTR", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 137200, "Improved_V": 5000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.00652911500001, "SHAPE_Area": 1016.81710335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356683.098499998450279, 259940.264199998229742 ], [ 356681.039200000464916, 259898.0287000015378 ], [ 356660.834700003266335, 259903.351700000464916 ], [ 356645.478799998760223, 259907.447900000959635 ], [ 356667.755199998617172, 259942.88289999961853 ], [ 356672.623599998652935, 259939.334100000560284 ], [ 356673.455099999904633, 259936.385600000619888 ], [ 356680.703000001609325, 259937.500399999320507 ], [ 356683.098499998450279, 259940.264199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95383384, "LATITUDE": 18.36891665, "OBJECTID_1": 537, "PARCEL_NO_": "101104015000", "Tax_Legal_": "HULL REM #2 LT. NORTHSIDE", "Name": "LAPLACE, JULIE & OTHERS", "Address": "PO Box 9527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 172100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 434.21871714700001, "SHAPE_Area": 1985.8864074000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356445.335199996829033, 259926.708099998533726 ], [ 356444.827299997210503, 259916.231100000441074 ], [ 356421.205200001597404, 259919.54450000077486 ], [ 356395.354699999094009, 259925.032499998807907 ], [ 356360.785700000822544, 259912.717199999839067 ], [ 356343.991599999368191, 259896.325599998235703 ], [ 356335.94650000333786, 259894.148800000548363 ], [ 356304.574000000953674, 259885.237199999392033 ], [ 356298.942400000989437, 259883.71339999884367 ], [ 356253.74040000140667, 259889.043000001460314 ], [ 356254.42620000243187, 259903.191899999976158 ], [ 356257.674800001084805, 259900.474300000816584 ], [ 356267.390100002288818, 259895.909699998795986 ], [ 356281.122599996626377, 259893.066799998283386 ], [ 356298.051600001752377, 259893.627500001341105 ], [ 356314.95719999819994, 259896.932300001382828 ], [ 356339.877300001680851, 259906.002199999988079 ], [ 356355.937100000679493, 259913.944099999964237 ], [ 356359.146099999547005, 259915.870200000703335 ], [ 356361.532700002193451, 259919.689399998635054 ], [ 356369.532899998128414, 259927.143199998885393 ], [ 356373.54110000282526, 259929.920200001448393 ], [ 356383.981799997389317, 259934.860800001770258 ], [ 356392.827799998223782, 259937.677400000393391 ], [ 356400.077399998903275, 259938.5810999982059 ], [ 356415.449500001966953, 259932.585200000554323 ], [ 356434.036100000143051, 259927.882199998944998 ], [ 356445.335199996829033, 259926.708099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104027400", "MAP": "D9-5844-T94", "PARCEL_NAM": "9-2", "ACRE": "0.25", "LONGITUDE": -64.95062036, "LATITUDE": 18.36895509, "OBJECTID_1": 640, "PARCEL_NO_": "101104027400", "Tax_Legal_": "9-2 HULL 4A LITTLE NORTHSIDE QTR", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.77249577800001, "SHAPE_Area": 1126.1765197699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356704.476199999451637, 259891.887699998915195 ], [ 356681.039200000464916, 259898.0287000015378 ], [ 356683.098499998450279, 259940.264199998229742 ], [ 356698.41669999808073, 259940.600699998438358 ], [ 356708.913099996745586, 259938.997900001704693 ], [ 356704.476199999451637, 259891.887699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95192876, "LATITUDE": 18.36835709, "OBJECTID_1": 517, "PARCEL_NO_": "101104012600", "Tax_Legal_": "HULL 2 LT. NORTHSIDE", "Name": "FMP HOLDINGS, LLC", "Address": "10441 E Alder Creek Rd", "City": "Truckee", "State": "California", "Zip": 96161, "Country": "United States", "Land_Value": 162400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.42006406000002, "SHAPE_Area": 6684.8077654899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356503.071800000965595, 259775.193300001323223 ], [ 356505.958999998867512, 259814.902499999850988 ], [ 356511.529500000178814, 259823.602899998426437 ], [ 356539.396200001239777, 259865.416499998420477 ], [ 356583.155299998819828, 259934.802200000733137 ], [ 356592.231600001454353, 259910.600699998438358 ], [ 356606.435199998319149, 259852.455099999904633 ], [ 356588.775399997830391, 259843.02250000089407 ], [ 356575.15259999781847, 259832.989599999040365 ], [ 356563.972099997103214, 259820.232500001788139 ], [ 356557.613300003111362, 259809.414700001478195 ], [ 356549.615000002086163, 259801.749800000339746 ], [ 356528.744300000369549, 259790.602200001478195 ], [ 356518.299999997019768, 259786.083700001239777 ], [ 356503.071800000965595, 259775.193300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91804146, "LATITUDE": 18.36854792, "OBJECTID_1": 1055, "PARCEL_NO_": "101304032400", "Tax_Legal_": "11-34 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "NICHOLS FAMILY REVOCABLE TRUST", "Address": "1000 BLACKBEARD'S HILL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 223000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.94151423400001, "SHAPE_Area": 2676.8513066800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360171.263800002634525, 259962.058200001716614 ], [ 360131.965899996459484, 259842.257599998265505 ], [ 360121.437100000679493, 259847.65989999845624 ], [ 360123.010200001299381, 259852.316799998283386 ], [ 360122.96339999884367, 259857.804900001734495 ], [ 360114.713299997150898, 259879.691100001335144 ], [ 360108.082999996840954, 259900.746199999004602 ], [ 360129.752700001001358, 259912.744800001382828 ], [ 360163.184500001370907, 259963.8918999992311 ], [ 360171.263800002634525, 259962.058200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101104012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95262417000001, "LATITUDE": 18.36856476, "OBJECTID_1": 516, "PARCEL_NO_": "101104012500", "Tax_Legal_": "HULL 4-2 LT. NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 580600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.521465906, "SHAPE_Area": 5737.0145914599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356441.906099997460842, 259855.963700000196695 ], [ 356445.335199996829033, 259926.708099998533726 ], [ 356458.236199997365475, 259926.813700001686811 ], [ 356459.859700001776218, 259925.560400001704693 ], [ 356539.396200001239777, 259865.416499998420477 ], [ 356511.529500000178814, 259823.602899998426437 ], [ 356450.001599997282028, 259852.23030000180006 ], [ 356441.906099997460842, 259855.963700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304013100", "MAP": "B9-168-T67", "PARCEL_NAM": "8-4", "ACRE": "0.64", "LONGITUDE": -64.92394121, "LATITUDE": 18.36891145, "OBJECTID_1": 965, "PARCEL_NO_": "101304013100", "Tax_Legal_": "8-4 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "SANTARPIA, ROBERT", "Address": "PO Box 7549", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 263100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.17755734999997, "SHAPE_Area": 4196.0411096999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359565.931699998676777, 259932.616999998688698 ], [ 359505.781999997794628, 259894.127900000661612 ], [ 359501.703599996864796, 259899.582899998873472 ], [ 359491.126299999654293, 259910.684300001710653 ], [ 359465.791599996387959, 259939.748599998652935 ], [ 359521.105899997055531, 259979.851500000804663 ], [ 359529.342000000178814, 259968.203400000929832 ], [ 359530.168099999427795, 259965.888199999928474 ], [ 359537.496799997985363, 259957.504399999976158 ], [ 359550.511100001633167, 259944.311999998986721 ], [ 359565.931699998676777, 259932.616999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91780036, "LATITUDE": 18.36847257, "OBJECTID_1": 1017, "PARCEL_NO_": "101304025200", "Tax_Legal_": "PETERBORG 11-1-17&11-1-18A No.12 GT.NORTHSIDE QTR.", "Name": "WHITE, DAVID E. & JOAN TOSTI", "Address": "3750 Ross Mills Rd", "City": "Falconer", "State": "New York", "Zip": 14733, "Country": "United States", "Land_Value": 266000, "Improved_V": 478800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.65977005899998, "SHAPE_Area": 3534.4424482600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360168.25900000333786, 259841.499200001358986 ], [ 360134.436999998986721, 259836.156100001186132 ], [ 360129.611699998378754, 259834.638999998569489 ], [ 360131.965899996459484, 259842.257599998265505 ], [ 360171.263800002634525, 259962.058200001716614 ], [ 360174.496200002729893, 259961.240299999713898 ], [ 360177.762800000607967, 259956.411899998784065 ], [ 360191.511500000953674, 259951.669300001114607 ], [ 360168.25900000333786, 259841.499200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104012000", "MAP": null, "PARCEL_NAM": "2K", "ACRE": null, "LONGITUDE": -64.95339505, "LATITUDE": 18.36871827, "OBJECTID_1": 511, "PARCEL_NO_": "101104012000", "Tax_Legal_": "HULL BAY 2K LT. NORTHSIDE", "Name": "BERRY, ANN MARIE LAPLACE", "Address": "7691 Lower Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 282200, "Improved_V": 133800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 375.58184562700001, "SHAPE_Area": 5100.8155514800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356442.222499996423721, 259862.491300001740456 ], [ 356399.510999999940395, 259862.912399999797344 ], [ 356400.145999997854233, 259859.949099998921156 ], [ 356401.839400000870228, 259855.504099998623133 ], [ 356403.109399996697903, 259852.540800001472235 ], [ 356405.437700003385544, 259850.424100000411272 ], [ 356407.554399996995926, 259849.154100000858307 ], [ 356409.882700003683567, 259847.672400001436472 ], [ 356412.634400002658367, 259845.979100000113249 ], [ 356417.926100000739098, 259844.920699998736382 ], [ 356423.641099996864796, 259843.650699999183416 ], [ 356433.151699997484684, 259842.382100000977516 ], [ 356429.965999998152256, 259837.711899999529123 ], [ 356400.997900001704693, 259839.299800001084805 ], [ 356394.854400001466274, 259866.087400000542402 ], [ 356357.448600001633167, 259866.067400000989437 ], [ 356355.185099996626377, 259907.250900000333786 ], [ 356360.785700000822544, 259912.717199999839067 ], [ 356395.354699999094009, 259925.032499998807907 ], [ 356421.205200001597404, 259919.54450000077486 ], [ 356444.827299997210503, 259916.231100000441074 ], [ 356442.222499996423721, 259862.491300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304032600", "MAP": "A9-370-T89", "PARCEL_NAM": "11-36", "ACRE": ".608", "LONGITUDE": -64.9188057, "LATITUDE": 18.36827026, "OBJECTID_1": 1057, "PARCEL_NO_": "101304032600", "Tax_Legal_": "11-36 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "FLEUR DE LYS FINANCIAL LLC", "Address": "1521 Alton Rd", "City": "Miami Beach", "State": "Florida", "Zip": 33139, "Country": "United States", "Land_Value": 175800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 343.75806123699999, "SHAPE_Area": 3724.3925798300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360063.691899999976158, 259810.879200000315905 ], [ 360039.26519999653101, 259838.543600000441074 ], [ 360043.11150000244379, 259860.317699998617172 ], [ 360042.08049999922514, 259886.695999998599291 ], [ 360039.546400003135204, 259900.185199998319149 ], [ 360033.74040000140667, 259919.136100001633167 ], [ 360024.730700001120567, 259935.527699999511242 ], [ 360013.323700003325939, 259949.366500001400709 ], [ 360013.293099999427795, 259952.954799998551607 ], [ 360014.894900001585484, 259954.234499998390675 ], [ 360017.313900001347065, 259954.254299998283386 ], [ 360021.370600000023842, 259951.33219999819994 ], [ 360035.207400001585484, 259936.246700000017881 ], [ 360059.680900000035763, 259903.094200000166893 ], [ 360067.862700000405312, 259889.228999998420477 ], [ 360072.777900002896786, 259880.192200001329184 ], [ 360074.403099998831749, 259878.727899998426437 ], [ 360080.146200001239777, 259867.164700001478195 ], [ 360089.112700000405312, 259855.839099999517202 ], [ 360092.359499998390675, 259853.332499999552965 ], [ 360092.445799998939037, 259843.200699999928474 ], [ 360063.691899999976158, 259810.879200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91748721, "LATITUDE": 18.36846525, "OBJECTID_1": 1016, "PARCEL_NO_": "101304025100", "Tax_Legal_": "11-1-18 PETERBORG NO.9 GREAT NORTHSIDE QTR", "Name": "HINCKLEY, STANLEY(Trustee)&BEVERLY BROWN HINCKLEY(Trustee)", "Address": "PO Box 7727", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 231600, "Improved_V": 691800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.44656933499999, "SHAPE_Area": 3616.3995366099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360210.160300001502037, 259845.008600000292063 ], [ 360191.613300003111362, 259845.067800000309944 ], [ 360168.25900000333786, 259841.499200001358986 ], [ 360191.511500000953674, 259951.669300001114607 ], [ 360199.621399998664856, 259946.24720000103116 ], [ 360210.121399998664856, 259944.222199998795986 ], [ 360219.79900000244379, 259944.090300001204014 ], [ 360210.160300001502037, 259845.008600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304034200", "MAP": "A9-370-T89", "PARCEL_NAM": "11-66", "ACRE": ".531", "LONGITUDE": -64.92203311, "LATITUDE": 18.3687383, "OBJECTID_1": 1072, "PARCEL_NO_": "101304034200", "Tax_Legal_": "PETERBORG 11-66 GREAT NORTHSIDE QUARTER", "Name": "JAMES, AMY c and STEPHEN R", "Address": "3808 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 170400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.371556325, "SHAPE_Area": 2145.91052 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359735.384199999272823, 259946.190600000321865 ], [ 359740.663699999451637, 259897.667399998754263 ], [ 359702.549199998378754, 259892.571899998933077 ], [ 359697.637599997222424, 259901.186599999666214 ], [ 359682.947700001299381, 259921.753499999642372 ], [ 359691.772200003266335, 259927.103100001811981 ], [ 359704.576099999248981, 259938.606899999082088 ], [ 359711.796999998390675, 259942.887899998575449 ], [ 359727.088100001215935, 259946.390500001609325 ], [ 359735.152999997138977, 259946.245400000363588 ], [ 359735.384199999272823, 259946.190600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104028800", "MAP": "D9-9171-T017", "PARCEL_NAM": "10-1-2", "ACRE": "0.49", "LONGITUDE": -64.95130874, "LATITUDE": 18.36871239, "OBJECTID_1": 651, "PARCEL_NO_": "101104028800", "Tax_Legal_": "10-1-2 HULL 4A LITTLE NORTHSIDE QTR.", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.75524733399999, "SHAPE_Area": 2072.32324135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356649.500399999320507, 259906.375100001692772 ], [ 356648.147299997508526, 259880.875799998641014 ], [ 356626.447899997234344, 259876.787500001490116 ], [ 356629.093800000846386, 259856.890799999237061 ], [ 356629.061700001358986, 259856.590999998152256 ], [ 356612.074000000953674, 259853.13459999859333 ], [ 356598.6875, 259910.020300000905991 ], [ 356595.372299998998642, 259920.547800000756979 ], [ 356639.821999996900558, 259908.879299998283386 ], [ 356645.478799998760223, 259907.447900000959635 ], [ 356649.500399999320507, 259906.375100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203016900", "MAP": "D9-4913-T90", "PARCEL_NAM": "17-4-C", "ACRE": "1.00", "LONGITUDE": -64.94561328, "LATITUDE": 18.36858117, "OBJECTID_1": 768, "PARCEL_NO_": "101203016900", "Tax_Legal_": "17-4-C ST.PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, FRANCIS & VIVIAN", "Address": "PO Box 12165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 144000, "Improved_V": 176100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.93543592899999, "SHAPE_Area": 6104.8079437899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357255.608400002121925, 259847.002599999308586 ], [ 357207.405900001525879, 259825.920899998396635 ], [ 357207.373499996960163, 259829.720300000160933 ], [ 357204.085299998521805, 259837.081599999219179 ], [ 357191.830600000917912, 259855.768699999898672 ], [ 357179.620800003409386, 259869.178700000047684 ], [ 357172.335799999535084, 259876.680599998682737 ], [ 357170.67230000346899, 259878.3935999982059 ], [ 357166.280799999833107, 259884.355000000447035 ], [ 357183.065700002014637, 259895.399599999189377 ], [ 357212.170000001788139, 259911.539200000464916 ], [ 357220.315700002014637, 259916.782600000500679 ], [ 357225.686899997293949, 259919.045499999076128 ], [ 357241.803300000727177, 259926.885099999606609 ], [ 357251.063799999654293, 259933.764199998229742 ], [ 357256.77080000191927, 259937.397599998861551 ], [ 357265.3074000030756, 259942.949400000274181 ], [ 357263.047600001096725, 259920.312899999320507 ], [ 357255.608400002121925, 259847.002599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203018100", "MAP": "D9-6578-T99", "PARCEL_NAM": "16F-2", "ACRE": "0.66", "LONGITUDE": -64.94456548, "LATITUDE": 18.36826095, "OBJECTID_1": 780, "PARCEL_NO_": "101203018100", "Tax_Legal_": "16F-2 ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, LINDA MARY", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 123700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.687423792, "SHAPE_Area": 2510.9437104399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357334.855400003492832, 259820.842300001531839 ], [ 357306.400399997830391, 259826.377599999308586 ], [ 357309.193199999630451, 259851.204500000923872 ], [ 357312.316100001335144, 259865.726100001484156 ], [ 357315.530599996447563, 259868.973600000143051 ], [ 357321.580700002610683, 259872.244199998676777 ], [ 357331.30290000140667, 259872.32319999858737 ], [ 357349.139899998903275, 259870.857500001788139 ], [ 357363.920299999415874, 259868.636100001633167 ], [ 357354.251900002360344, 259815.723700001835823 ], [ 357334.855400003492832, 259820.842300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91715587, "LATITUDE": 18.36844027, "OBJECTID_1": 1015, "PARCEL_NO_": "101304025000", "Tax_Legal_": "PETERBORG 12-19 GT. NORTHSIDE", "Name": "GOSCIMINSKT, JEFFREY D and KIM E", "Address": "43 Tony Ter", "City": "Bridgewater", "State": "Massachusetts", "Zip": 2324, "Country": "United States", "Land_Value": 288900, "Improved_V": 866100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.19114819599997, "SHAPE_Area": 3303.8077995600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360251.387199997901917, 259927.672499999403954 ], [ 360246.487499997019768, 259840.239599999040365 ], [ 360231.142399996519089, 259843.069299999624491 ], [ 360210.160300001502037, 259845.008600000292063 ], [ 360219.79900000244379, 259944.090300001204014 ], [ 360227.068400003015995, 259942.672200001776218 ], [ 360239.20440000295639, 259937.916299998760223 ], [ 360246.508000001311302, 259932.487700000405312 ], [ 360251.387199997901917, 259927.672499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92311867, "LATITUDE": 18.36807492, "OBJECTID_1": 1097, "PARCEL_NO_": "101304039900", "Tax_Legal_": "PETERBORG 11REM,11-76-1-11-76-8& 11-76 REM GT. NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 508300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 531.42170179799996, "SHAPE_Area": 16017.873752199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359692.894299998879433, 259795.389899998903275 ], [ 359631.196599997580051, 259749.288699999451637 ], [ 359569.357600003480911, 259814.432700000703335 ], [ 359568.535099998116493, 259816.325800001621246 ], [ 359549.810099996626377, 259837.281899999827147 ], [ 359539.209399998188019, 259851.127300001680851 ], [ 359537.5878000035882, 259852.16950000077486 ], [ 359528.614100001752377, 259864.339499998837709 ], [ 359526.992399998009205, 259865.381700001657009 ], [ 359525.352799996733665, 259868.534600000828505 ], [ 359521.285300001502037, 259872.723200000822544 ], [ 359514.752099998295307, 259882.380100000649691 ], [ 359509.052199997007847, 259888.877300001680851 ], [ 359508.227899998426437, 259890.981499999761581 ], [ 359506.606299996376038, 259892.023699998855591 ], [ 359505.781999997794628, 259894.127900000661612 ], [ 359565.931699998676777, 259932.616999998688698 ], [ 359573.229900002479553, 259927.821600001305342 ], [ 359585.380300000309944, 259921.377099998295307 ], [ 359599.152400001883507, 259913.890500001609325 ], [ 359610.5253000035882, 259904.062199998646975 ], [ 359617.044100001454353, 259896.094000000506639 ], [ 359625.21509999781847, 259883.495200000703335 ], [ 359648.803199999034405, 259859.623599998652935 ], [ 359663.464199997484684, 259842.433899998664856 ], [ 359673.251500003039837, 259829.426300000399351 ], [ 359674.077600002288818, 259827.111000001430511 ], [ 359675.70099999755621, 259825.857700001448393 ], [ 359681.422499999403954, 259816.827500000596046 ], [ 359692.894299998879433, 259795.389899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103035000", "MAP": "D9-4965-T90", "PARCEL_NAM": "2A", "ACRE": null, "LONGITUDE": -64.96544903, "LATITUDE": 18.36836241, "OBJECTID_1": 485, "PARCEL_NO_": "101103035000", "Tax_Legal_": "NELTJEBERG 2A LITTLE NORTHSIDE", "Name": "KOPKO, JR, MARY ELIZABETH and FREDERICK H", "Address": "2686 Crown Bay Ctr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1000000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.64520999600001, "SHAPE_Area": 8006.7248775199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355104.828900001943111, 259775.148400001227856 ], [ 355100.725400000810623, 259783.558600001037121 ], [ 355088.425700001418591, 259807.522599998861551 ], [ 355085.711900003254414, 259842.119699999690056 ], [ 355074.943899996578693, 259875.595400001853704 ], [ 355091.826099999248981, 259881.644200000911951 ], [ 355103.069499999284744, 259887.013599999248981 ], [ 355115.104900002479553, 259894.078200001269579 ], [ 355204.234399996697903, 259843.723000001162291 ], [ 355104.828900001943111, 259775.148400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9184937, "LATITUDE": 18.36847733, "OBJECTID_1": 1051, "PARCEL_NO_": "101304032000", "Tax_Legal_": "PETERBORG 11-30 GT.NORTHSIDE QTR.", "Name": "SIMENSEN TRUST", "Address": "PO Box 7030", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 159700, "Improved_V": 498300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.84529726299999, "SHAPE_Area": 1859.6855709599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360061.203599996864796, 259913.661400001496077 ], [ 360093.308600001037121, 259931.233800001442432 ], [ 360101.677400000393391, 259895.416400000452995 ], [ 360107.479900002479553, 259876.887699998915195 ], [ 360115.731799997389317, 259854.790399998426437 ], [ 360115.758799999952316, 259851.624200001358986 ], [ 360114.158699996769428, 259850.133400000631809 ], [ 360110.933499999344349, 259850.10700000077486 ], [ 360102.017300002276897, 259855.52250000089407 ], [ 360092.258799999952316, 259865.152899999171495 ], [ 360085.741800002753735, 259872.910100001841784 ], [ 360075.092500001192093, 259892.454599998891354 ], [ 360061.203599996864796, 259913.661400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304024900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91685026, "LATITUDE": 18.36835586, "OBJECTID_1": 1014, "PARCEL_NO_": "101304024900", "Tax_Legal_": "PETERBORG 12-20 GT. NORTHSIDE", "Name": "PILLY BOY LLC", "Address": "6427 S Halm Ave", "City": "Los Angeles", "State": "California", "Zip": 90056, "Country": "United States", "Land_Value": 254500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.69447967100001, "SHAPE_Area": 2592.9398806 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360283.724200002849102, 259918.015700001269579 ], [ 360274.7533999979496, 259835.193599998950958 ], [ 360246.487499997019768, 259840.239599999040365 ], [ 360251.387199997901917, 259927.672499999403954 ], [ 360253.825900003314018, 259925.370400000363588 ], [ 360268.364699997007847, 259922.534099999815226 ], [ 360272.428700000047684, 259918.767700001597404 ], [ 360275.661100000143051, 259917.949700001627207 ], [ 360283.724200002849102, 259918.015700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95408158, "LATITUDE": 18.36836576, "OBJECTID_1": 510, "PARCEL_NO_": "101104011900", "Tax_Legal_": "HULL BAY 2-I LT. NORTHSIDE", "Name": "RANDY JOSEPH LAPLACE AND DEENICA ANN LAPLACE FAMILY TRUST", "Address": "7688 Estate Hull 2-1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 208000, "Improved_V": 105700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.47160190300002, "SHAPE_Area": 4714.3798729 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356353.758500002324581, 259809.730799999088049 ], [ 356346.334299996495247, 259810.640799999237061 ], [ 356332.630599997937679, 259810.1064000017941 ], [ 356315.717799998819828, 259807.646000001579523 ], [ 356300.392499998211861, 259808.153799999505281 ], [ 356293.078100003302097, 259814.848900001496077 ], [ 356293.776500001549721, 259827.520300000905991 ], [ 356296.111000001430511, 259837.460799999535084 ], [ 356299.302000001072884, 259841.497699998319149 ], [ 356303.265299998223782, 259849.551699999719858 ], [ 356306.391599997878075, 259861.187399998307228 ], [ 356305.39469999819994, 259883.555100001394749 ], [ 356304.574000000953674, 259885.237199999392033 ], [ 356335.94650000333786, 259894.148800000548363 ], [ 356343.991599999368191, 259896.325599998235703 ], [ 356355.185099996626377, 259907.250900000333786 ], [ 356358.792599998414516, 259841.613299999386072 ], [ 356353.758500002324581, 259809.730799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031200", "MAP": "A9-394A-T91", "PARCEL_NAM": "5", "ACRE": "4.6", "LONGITUDE": -64.96466367, "LATITUDE": 18.36777129, "OBJECTID_1": 449, "PARCEL_NO_": "101103031200", "Tax_Legal_": "NELTJBERG/EASTERN PT 5 LT. NORTHSIDE", "Name": "HUGH, JANET REVOCABLE TRUST", "Address": "PO Box 600168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 200500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 569.85213618800003, "SHAPE_Area": 18603.24058 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355108.928800001740456, 259767.160399999469519 ], [ 355271.667999997735023, 259879.105399999767542 ], [ 355293.288400001823902, 259802.233199998736382 ], [ 355264.673000000417233, 259753.658500000834465 ], [ 355263.071099996566772, 259752.378899998962879 ], [ 355262.288199998438358, 259749.628199998289347 ], [ 355259.098899997770786, 259745.380300000309944 ], [ 355254.34910000115633, 259734.997800000011921 ], [ 355252.750900000333786, 259733.296000000089407 ], [ 355247.263199999928474, 259714.885899998247623 ], [ 355240.898999996483326, 259704.701400000602007 ], [ 355227.306699998676777, 259691.080099999904633 ], [ 355223.287799999117851, 259689.569600000977516 ], [ 355171.584899999201298, 259700.756599999964237 ], [ 355168.334399998188019, 259703.685300000011921 ], [ 355168.291299998760223, 259708.7511 ], [ 355139.16330000013113, 259720.333999998867512 ], [ 355131.049900002777576, 259726.178199999034405 ], [ 355126.969700001180172, 259731.844300001859665 ], [ 355130.105099998414516, 259742.424699999392033 ], [ 355127.597999997437, 259752.747699998319149 ], [ 355125.963799998164177, 259755.267499998211861 ], [ 355122.717000000178814, 259757.774000000208616 ], [ 355112.206200003623962, 259761.065499998629093 ], [ 355108.928800001740456, 259767.160399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203015800", "MAP": "D9-5230-T92", "PARCEL_NAM": "17-12", "ACRE": "8.31", "LONGITUDE": -64.94664723, "LATITUDE": 18.36782014, "OBJECTID_1": 757, "PARCEL_NO_": "101203015800", "Tax_Legal_": "ST PETER 17-12 LITTLE NORTHISDE", "Name": "STIEHLER, ANN B", "Address": "17-3 EST. ST.PETER HULL BAY RD", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 448900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 644.11332662899997, "SHAPE_Area": 25110.265820799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357121.424599997699261, 259696.027899999171495 ], [ 357111.698499999940395, 259701.858899999409914 ], [ 357090.592399999499321, 259718.36259999871254 ], [ 357074.304300002753735, 259737.227699998766184 ], [ 357069.399899996817112, 259744.997999999672174 ], [ 357065.337700001895428, 259748.553300000727177 ], [ 357061.297200001776218, 259749.575699999928474 ], [ 357051.637599997222424, 259747.596799999475479 ], [ 357046.817699998617172, 259745.446400001645088 ], [ 357042.777199998497963, 259746.468800000846386 ], [ 357041.152000002563, 259747.933200001716614 ], [ 357041.126800000667572, 259750.888300001621246 ], [ 357039.496200002729893, 259752.98589999973774 ], [ 357035.3800999969244, 259762.873599998652935 ], [ 357032.12610000371933, 259766.224500000476837 ], [ 357028.072899997234344, 259768.724399998784065 ], [ 357025.626999996602535, 259771.870799999684095 ], [ 357020.674099996685982, 259785.340199999511242 ], [ 357010.924599997699261, 259793.915300000458956 ], [ 357008.498499996960163, 259794.739799998700619 ], [ 357006.047200001776218, 259798.519400000572205 ], [ 357001.185900002717972, 259801.223900001496077 ], [ 356998.743600003421307, 259803.948100000619888 ], [ 356988.225599996745586, 259808.08390000090003 ], [ 356980.952600002288818, 259809.924199998378754 ], [ 357150.376000002026558, 259894.481699999421835 ], [ 357151.997599996626377, 259893.439500000327826 ], [ 357167.49379999935627, 259872.879200000315905 ], [ 357173.99099999666214, 259867.443900000303984 ], [ 357185.390900000929832, 259854.449400000274181 ], [ 357199.283399999141693, 259832.820500001311302 ], [ 357200.964400000870228, 259824.812699999660254 ], [ 357202.713699996471405, 259808.783900000154972 ], [ 357207.727799996733665, 259788.137800000607967 ], [ 357209.430299997329712, 259777.596999999135733 ], [ 357203.05349999666214, 259768.890000000596046 ], [ 357195.123499996960163, 259753.204199999570847 ], [ 357190.348499998450279, 259745.776799999177456 ], [ 357179.184199996292591, 259731.120000001043081 ], [ 357171.1858000010252, 259723.455099999904633 ], [ 357159.965800002217293, 259715.34180000051856 ], [ 357143.114200003445148, 259705.704599998891354 ], [ 357127.837399996817112, 259700.513300001621246 ], [ 357121.424599997699261, 259696.027899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91657655, "LATITUDE": 18.36829692, "OBJECTID_1": 1012, "PARCEL_NO_": "101304024700", "Tax_Legal_": "PETERBORG 12-22 GT. NORTHSIDE", "Name": "ARAGONA, JOEL A.", "Address": "250 W 57th St", "City": "New York", "State": "New York", "Zip": 10107, "Country": "United States", "Land_Value": 240200, "Improved_V": 446200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.68430303900001, "SHAPE_Area": 2343.24345799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360311.180200003087521, 259913.385299999266863 ], [ 360301.428199999034405, 259827.601500000804663 ], [ 360290.098499998450279, 259832.363899998366833 ], [ 360274.7533999979496, 259835.193599998950958 ], [ 360283.724200002849102, 259918.015700001269579 ], [ 360304.704599998891354, 259916.287599999457598 ], [ 360311.180200003087521, 259913.385299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203011200", "MAP": "G9-2989-T80", "PARCEL_NAM": "18", "ACRE": ".9", "LONGITUDE": -64.94351941, "LATITUDE": 18.36797335, "OBJECTID_1": 712, "PARCEL_NO_": "101203011200", "Tax_Legal_": "ST PETER 18 LITTLE NORTHSIDE QTR", "Name": "QUERRARD, GEORGE R", "Address": "18 ST PETER", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.796813676, "SHAPE_Area": 3297.7483245899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357407.425599999725819, 259801.773600000888109 ], [ 357413.527000002563, 259846.544100001454353 ], [ 357485.409500002861023, 259828.561599999666214 ], [ 357478.150399997830391, 259788.956300001591444 ], [ 357477.213799998164177, 259783.845800001174212 ], [ 357407.425599999725819, 259801.773600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91634434, "LATITUDE": 18.36820044, "OBJECTID_1": 1011, "PARCEL_NO_": "101304024600", "Tax_Legal_": "PETERBORG 12-23 GT. NORTHSIDE", "Name": "CANNON CLIFFS LLC", "Address": "24067 Jeb Dr", "City": "Lawrenceburg", "State": "Indiana", "Zip": 47025, "Country": "United States", "Land_Value": 251700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.02513572800001, "SHAPE_Area": 2060.7907572200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360333.051399998366833, 259901.743099998682737 ], [ 360324.924599997699261, 259814.494899999350309 ], [ 360308.711999997496605, 259824.494699999690056 ], [ 360301.428199999034405, 259827.601500000804663 ], [ 360311.180200003087521, 259913.385299999266863 ], [ 360317.654100000858307, 259910.694099999964237 ], [ 360330.630599997937679, 259901.934300001710653 ], [ 360333.051399998366833, 259901.743099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95879306, "LATITUDE": 18.36818385, "OBJECTID_1": 439, "PARCEL_NO_": "101103025100", "Tax_Legal_": "BONNE RESLOUTION 17-1-B LT. NORTHSIDE QTR", "Name": "MARJARA SINGH, JETINDER", "Address": "576 N Winnebago Dr", "City": "Greenwood", "State": "Missouri", "Zip": 64034, "Country": "United States", "Land_Value": 94400, "Improved_V": 271200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.95692709400001, "SHAPE_Area": 3393.1703494499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355840.359200000762939, 259855.473299998790026 ], [ 355870.543399997055531, 259814.557100001722574 ], [ 355821.687399998307228, 259775.527100000530481 ], [ 355799.914099998772144, 259870.340999998152256 ], [ 355814.45830000191927, 259866.871500000357628 ], [ 355831.448399998247623, 259860.255499999970198 ], [ 355840.359200000762939, 259855.473299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304035600", "MAP": "A9-370-T89", "PARCEL_NAM": "11-65", "ACRE": ".617", "LONGITUDE": -64.92170584, "LATITUDE": 18.36836997, "OBJECTID_1": 1085, "PARCEL_NO_": "101304035600", "Tax_Legal_": "PETERBORG ESTATE 11-65 GT.NORTHSIDE QTR", "Name": "WATERS, TAMMY J. & DARRIN L", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 177600, "Improved_V": 508200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.12732076200001, "SHAPE_Area": 3067.2168706399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359786.76349999755621, 259851.253600001335144 ], [ 359718.928999997675419, 259862.941799998283386 ], [ 359717.314499996602535, 259863.139699999243021 ], [ 359713.227200001478195, 259869.650100000202656 ], [ 359702.549199998378754, 259892.571899998933077 ], [ 359759.736199997365475, 259900.217099998146296 ], [ 359788.779700003564358, 259898.554999999701977 ], [ 359787.186800003051758, 259896.219900000840425 ], [ 359786.414700001478195, 259892.202899999916553 ], [ 359785.712600000202656, 259879.953699998557568 ], [ 359786.76349999755621, 259851.253600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304035500", "MAP": "A9-370-T89", "PARCEL_NAM": "11-68", "ACRE": ".601", "LONGITUDE": -64.92107417, "LATITUDE": 18.36829082, "OBJECTID_1": 1084, "PARCEL_NO_": "101304035500", "Tax_Legal_": "PETERBORG 11-68\nGT.NORTHSIDE QTR.", "Name": "JD SG LLC", "Address": "20 N Martingale Rd", "City": "Schaumburg", "State": "Illinois", "Zip": 60173, "Country": "United States", "Land_Value": 182900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.89206697, "SHAPE_Area": 2700.1358792699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359844.14919999986887, 259890.340599998831749 ], [ 359846.278599999845028, 259852.705200001597404 ], [ 359799.345499999821186, 259835.579999998211861 ], [ 359798.17059999704361, 259837.414700001478195 ], [ 359794.005900003015995, 259853.001600001007318 ], [ 359792.924500003457069, 259885.28999999910593 ], [ 359794.467000000178814, 259893.535300001502037 ], [ 359796.860799998044968, 259896.510200001299381 ], [ 359803.284299999475479, 259899.729200001806021 ], [ 359814.576300002634525, 259899.399399999529123 ], [ 359844.14919999986887, 259890.340599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9622828, "LATITUDE": 18.36822436, "OBJECTID_1": 400, "PARCEL_NO_": "101103010300", "Tax_Legal_": "DOROTHEA REM 17 LT. NORTHSIDE", "Name": "Y & S CORPORATION, INC.", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 151800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 390.43669044400002, "SHAPE_Area": 8416.4088866599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355529.099200002849102, 259855.670000001788139 ], [ 355527.228699997067451, 259791.271200001239777 ], [ 355394.919799998402596, 259798.843100000172853 ], [ 355400.019100002944469, 259862.846200000494719 ], [ 355529.099200002849102, 259855.670000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9195038, "LATITUDE": 18.36838743, "OBJECTID_1": 1064, "PARCEL_NO_": "101304033300", "Tax_Legal_": "11-50 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "JOHNSON, MARLENE L.", "Address": "1617 Tuckerman St", "City": "Washington", "State": "District of Columbia", "Zip": 20011, "Country": "United States", "Land_Value": 161500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.32272975199999, "SHAPE_Area": 1983.07375437 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359979.933300003409386, 259857.726500000804663 ], [ 359947.725699998438358, 259887.823600001633167 ], [ 359987.428900003433228, 259911.139699999243021 ], [ 360010.688199996948242, 259880.106199998408556 ], [ 360005.875500001013279, 259877.1114999987185 ], [ 360010.772699996829033, 259870.185499999672174 ], [ 360015.635799996554852, 259867.269999999552965 ], [ 360017.277199998497963, 259863.905999999493361 ], [ 359979.933300003409386, 259857.726500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9161575, "LATITUDE": 18.36809425, "OBJECTID_1": 1013, "PARCEL_NO_": "101304024800", "Tax_Legal_": "12-21 PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "KEITH L MCCAFFERY & ROBERT D MARSHALL TRUST", "Address": "26838 PARKSIDE DRIVE", "City": "HAYWARD", "State": "California", "Zip": 94542, "Country": "United States", "Land_Value": 248800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.34694377700001, "SHAPE_Area": 1613.47962998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360344.978100001811981, 259826.902499999850988 ], [ 360344.391199998557568, 259801.144200000911951 ], [ 360337.083999998867512, 259806.995099999010563 ], [ 360324.924599997699261, 259814.494899999350309 ], [ 360333.051399998366833, 259901.743099998682737 ], [ 360347.566799998283386, 259901.650800000876188 ], [ 360344.978100001811981, 259826.902499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91584377, "LATITUDE": 18.36814176, "OBJECTID_1": 1010, "PARCEL_NO_": "101304024500", "Tax_Legal_": "PETERBORG 14-1 GT. NORTHSIDE", "Name": "SCHULTERBRANDT, KENNETH", "Address": "PO Box 303292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 283200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.98006652199999, "SHAPE_Area": 3708.8138526600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360391.034999996423721, 259815.880399998277426 ], [ 360344.978100001811981, 259826.902499999850988 ], [ 360347.566799998283386, 259901.650800000876188 ], [ 360352.417199999094009, 259900.212799999862909 ], [ 360366.925499998033047, 259900.964800000190735 ], [ 360371.781300000846386, 259898.8935999982059 ], [ 360376.638999998569489, 259896.611400000751019 ], [ 360391.262299999594688, 259883.854299999773502 ], [ 360395.333400003612041, 259879.243599999696016 ], [ 360396.653999999165535, 259818.881700001657009 ], [ 360393.4324000030756, 259818.433100000023842 ], [ 360393.457500003278255, 259815.478000000119209 ], [ 360391.034999996423721, 259815.880399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9610006, "LATITUDE": 18.36813647, "OBJECTID_1": 437, "PARCEL_NO_": "101103024800", "Tax_Legal_": "DOROTHEA 19-1 LT. NORTHSIDE", "Name": "Y & S CORPORATION, INC.", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 155400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 417.354423946, "SHAPE_Area": 9037.5061502499993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355560.305500000715256, 259789.430900000035763 ], [ 355549.818099997937679, 259789.978399999439716 ], [ 355527.228699997067451, 259791.271200001239777 ], [ 355529.099200002849102, 259855.670000001788139 ], [ 355653.337899997830391, 259848.876400001347065 ], [ 355682.931500002741814, 259782.624099999666214 ], [ 355560.305500000715256, 259789.430900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304035300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92056566, "LATITUDE": 18.36815659, "OBJECTID_1": 1082, "PARCEL_NO_": "101304035300", "Tax_Legal_": "PETERBORG 11-69 GT.NORTHSIDE QTR.", "Name": "C CHARLES REVOCABLE TRUST", "Address": "PO BOX 304837", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 177600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.37359252100001, "SHAPE_Area": 2464.9756542 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359884.602399997413158, 259819.756999999284744 ], [ 359881.402400001883507, 259816.775499999523163 ], [ 359868.40429999679327, 259828.068199999630451 ], [ 359846.278599999845028, 259852.705200001597404 ], [ 359844.14919999986887, 259890.340599998831749 ], [ 359850.149300001561642, 259888.502599999308586 ], [ 359872.801600001752377, 259879.82209999859333 ], [ 359883.335799999535084, 259873.78660000115633 ], [ 359895.505999997258186, 259865.020300000905991 ], [ 359903.63570000231266, 259857.276299998164177 ], [ 359884.602399997413158, 259819.756999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203015700", "MAP": "D9-5230-T92", "PARCEL_NAM": "17-11", "ACRE": "6.51", "LONGITUDE": -64.94785198, "LATITUDE": 18.36724743, "OBJECTID_1": 756, "PARCEL_NO_": "101203015700", "Tax_Legal_": "ST PETER 17-10 & 17-11 LITTLE NORTHSIDE", "Name": "BRYAN, PETER L", "Address": "17-1 Estate St. Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 440800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 759.27366808600004, "SHAPE_Area": 27634.187815599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356915.179099999368191, 259863.636900000274181 ], [ 356929.69990000128746, 259862.911400001496077 ], [ 356961.207299999892712, 259855.99210000038147 ], [ 356972.551399998366833, 259849.541000001132488 ], [ 356973.370300002396107, 259848.070099998265505 ], [ 356973.409800000488758, 259843.426300000399351 ], [ 356961.419399999082088, 259831.084800001233816 ], [ 356961.4662000015378, 259825.596700001507998 ], [ 356966.356200002133846, 259819.515000000596046 ], [ 356980.952600002288818, 259809.924199998378754 ], [ 356988.225599996745586, 259808.08390000090003 ], [ 356998.743600003421307, 259803.948100000619888 ], [ 357001.185900002717972, 259801.223900001496077 ], [ 357006.047200001776218, 259798.519400000572205 ], [ 357008.498499996960163, 259794.739799998700619 ], [ 357010.924599997699261, 259793.915300000458956 ], [ 357020.674099996685982, 259785.340199999511242 ], [ 357025.626999996602535, 259771.870799999684095 ], [ 357028.072899997234344, 259768.724399998784065 ], [ 357032.12610000371933, 259766.224500000476837 ], [ 357035.3800999969244, 259762.873599998652935 ], [ 357039.496200002729893, 259752.98589999973774 ], [ 357041.126800000667572, 259750.888300001621246 ], [ 357041.152000002563, 259747.933200001716614 ], [ 357042.777199998497963, 259746.468800000846386 ], [ 357046.817699998617172, 259745.446400001645088 ], [ 357051.637599997222424, 259747.596799999475479 ], [ 357061.297200001776218, 259749.575699999928474 ], [ 357065.337700001895428, 259748.553300000727177 ], [ 357069.399899996817112, 259744.997999999672174 ], [ 357074.304300002753735, 259737.227699998766184 ], [ 357090.592399999499321, 259718.36259999871254 ], [ 357111.698499999940395, 259701.858899999409914 ], [ 357121.424599997699261, 259696.027899999171495 ], [ 357116.642499998211861, 259689.444899998605251 ], [ 357111.214100003242493, 259664.069200001657009 ], [ 357107.22749999910593, 259658.759199999272823 ], [ 357104.817500002682209, 259657.684000000357628 ], [ 357077.411899998784065, 259656.40430000051856 ], [ 357022.616800002753735, 259651.945000000298023 ], [ 356999.235600002110004, 259651.542599998414516 ], [ 356972.616499997675419, 259652.591299999505281 ], [ 356957.301899999380112, 259651.832600001245737 ], [ 356933.098200000822544, 259653.323300000280142 ], [ 356905.647600002586842, 259657.320500001311302 ], [ 356915.179099999368191, 259863.636900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020600", "MAP": "D9-6172-T97", "PARCEL_NAM": "16-2", "ACRE": "0.27", "LONGITUDE": -64.95084865, "LATITUDE": 18.36827477, "OBJECTID_1": 574, "PARCEL_NO_": "101104020600", "Tax_Legal_": "HULL 16 LT. NORTHSIDE", "Name": "DEWERD, DAWN", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 180500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.55483031399999, "SHAPE_Area": 1230.2579704299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356694.474299997091293, 259835.443799998611212 ], [ 356642.164700001478195, 259823.194499999284744 ], [ 356652.405799999833107, 259851.564800001680851 ], [ 356696.677400000393391, 259860.793099999427795 ], [ 356694.474299997091293, 259835.443799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304036400", "MAP": "A9-370-T89", "PARCEL_NAM": "11-51", "ACRE": ".534", "LONGITUDE": -64.91983345, "LATITUDE": 18.36815673, "OBJECTID_1": 1092, "PARCEL_NO_": "101304036400", "Tax_Legal_": "PETERBORG ESTATE 11-51 GT.NORTHSIDE QTR.", "Name": "ESPITIA, LEONARDO AND TANIA A. ESPITIA", "Address": "23 Johnathan Landing Ct", "City": "The Woodlands", "State": "Texas", "Zip": 773894236, "Country": "United States", "Land_Value": 170400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.60087122600001, "SHAPE_Area": 1873.7017984900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359971.271499998867512, 259849.489599999040365 ], [ 359944.663099996745586, 259824.1864 ], [ 359942.593999996781349, 259827.619899999350309 ], [ 359932.814000003039837, 259839.783300001174212 ], [ 359919.805100001394749, 259852.342399999499321 ], [ 359947.725699998438358, 259887.823600001633167 ], [ 359979.933300003409386, 259857.726500000804663 ], [ 359971.271499998867512, 259849.489599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95585488, "LATITUDE": 18.36805995, "OBJECTID_1": 500, "PARCEL_NO_": "101104010900", "Tax_Legal_": "HULL BAY 2E LT. NORTHSIDE", "Name": "BRYAN, M. L. , J. F. & J. J. TRUSTEES", "Address": "PO Box 9527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 196000, "Improved_V": 190200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.791775559, "SHAPE_Area": 3646.3243233899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356170.229099996387959, 259847.829500000923872 ], [ 356167.579300001263618, 259780.25789999961853 ], [ 356115.174400001764297, 259779.195700000971556 ], [ 356115.145599998533726, 259782.572999998927116 ], [ 356116.387800000607967, 259826.068399999290705 ], [ 356116.817500002682209, 259849.489100001752377 ], [ 356170.229099996387959, 259847.829500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95273637, "LATITUDE": 18.36797938, "OBJECTID_1": 515, "PARCEL_NO_": "101104012400", "Tax_Legal_": "HULL 4C INC. POR OF FORMER 4-1", "Name": "FMP HOLDINGS, LLC", "Address": "10441 E Alder Creek Rd", "City": "Truckee", "State": "California", "Zip": 96161, "Country": "United States", "Land_Value": 225200, "Improved_V": 421600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.694862081, "SHAPE_Area": 4146.0830599700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356473.35869999974966, 259760.806800000369549 ], [ 356477.134900003671646, 259790.813000001013279 ], [ 356451.338299997150898, 259789.968600001186132 ], [ 356445.963899999856949, 259758.260600000619888 ], [ 356441.932300001382828, 259758.227600000798702 ], [ 356439.64360000193119, 259837.579999998211861 ], [ 356450.001599997282028, 259852.23030000180006 ], [ 356511.529500000178814, 259823.602899998426437 ], [ 356505.958999998867512, 259814.902499999850988 ], [ 356503.071800000965595, 259775.193300001323223 ], [ 356487.022900000214577, 259765.984900001436472 ], [ 356473.35869999974966, 259760.806800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95540263, "LATITUDE": 18.36779958, "OBJECTID_1": 504, "PARCEL_NO_": "101104011300", "Tax_Legal_": "2D HULL BAY No.4B LITTLE NORTHSIDE QTR", "Name": "Brin, Michael J & Jeannette E. Joseph", "Address": "PO Box 9551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 166800, "Improved_V": 265200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.90999732300003, "SHAPE_Area": 4758.22767724 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356218.832599997520447, 259821.840599998831749 ], [ 356207.552500002086163, 259726.122900001704693 ], [ 356196.219200000166893, 259731.307500001043081 ], [ 356176.021799996495247, 259735.786299999803305 ], [ 356169.544399999082088, 259738.899700000882149 ], [ 356165.482199996709824, 259742.454999998211861 ], [ 356167.579300001263618, 259780.25789999961853 ], [ 356170.229099996387959, 259847.829500000923872 ], [ 356189.656099997460842, 259839.122600000351667 ], [ 356207.499300003051758, 259827.025199998170137 ], [ 356218.832599997520447, 259821.840599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020600", "MAP": "D9-6172-T97", "PARCEL_NAM": "16-1", "ACRE": "0.29", "LONGITUDE": -64.95136177000001, "LATITUDE": 18.36817643, "OBJECTID_1": 574, "PARCEL_NO_": "101104020600", "Tax_Legal_": "HULL 16 LT. NORTHSIDE", "Name": "DEWERD, DAWN", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 180500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.176396592, "SHAPE_Area": 1599.43879158 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356608.357100002467632, 259816.162799999117851 ], [ 356583.404600001871586, 259810.892299998551607 ], [ 356584.059799998998642, 259828.62950000166893 ], [ 356592.877099998295307, 259834.823399998247623 ], [ 356608.126900002360344, 259843.180900000035763 ], [ 356652.405799999833107, 259851.564800001680851 ], [ 356642.164700001478195, 259823.194499999284744 ], [ 356608.357100002467632, 259816.162799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91537277, "LATITUDE": 18.36801434, "OBJECTID_1": 1009, "PARCEL_NO_": "101304024400", "Tax_Legal_": "PETERBORG 14-2 GR NORTHSIDE QTR", "Name": "NIETO GONZALEZ, ALFREDO & ROXANA APONTE MARQUEZ", "Address": "PO BOX 1049", "City": "Sabana Seca", "State": "Puerto Rico", "Zip": 952, "Country": "United States", "Land_Value": 257700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.72267605900001, "SHAPE_Area": 2555.1552232899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360457.044699996709824, 259829.086199998855591 ], [ 360399.917000003159046, 259814.475400000810623 ], [ 360399.069399997591972, 259819.323600001633167 ], [ 360396.653999999165535, 259818.881700001657009 ], [ 360395.333400003612041, 259879.243599999696016 ], [ 360398.585600003600121, 259876.103799998760223 ], [ 360401.060300000011921, 259869.580200001597404 ], [ 360405.102700002491474, 259868.346700001507998 ], [ 360406.71169999986887, 259868.7820999994874 ], [ 360409.101899996399879, 259872.179099999368191 ], [ 360411.517200000584126, 259872.621100001037121 ], [ 360413.943300001323223, 259871.796599999070168 ], [ 360426.039800003170967, 259871.684500001370907 ], [ 360434.94879999756813, 259867.113299999386072 ], [ 360440.648800000548363, 259860.616099998354912 ], [ 360443.137800000607967, 259852.403799999505281 ], [ 360457.829499997198582, 259831.625799998641014 ], [ 360457.044699996709824, 259829.086199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95346759, "LATITUDE": 18.36809561, "OBJECTID_1": 512, "PARCEL_NO_": "101104012100", "Tax_Legal_": "HULL BAY 2J LT. NORTHSIDE", "Name": "DANA(life estate), LINDA", "Address": "PO Box 9914", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99400, "Improved_V": 152600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.06279228299999, "SHAPE_Area": 2822.7473038799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356429.965999998152256, 259837.711899999529123 ], [ 356430.286100000143051, 259800.139899998903275 ], [ 356428.687899999320507, 259798.438099998980761 ], [ 356410.1570999994874, 259796.597699999809265 ], [ 356391.56870000064373, 259801.511799998581409 ], [ 356372.994800001382828, 259804.737199999392033 ], [ 356356.02080000191927, 259809.453499998897314 ], [ 356353.758500002324581, 259809.730799999088049 ], [ 356358.792599998414516, 259841.613299999386072 ], [ 356429.965999998152256, 259837.711899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203017000", "MAP": "D9-4913-T90", "PARCEL_NAM": "17-4-D", "ACRE": ".501", "LONGITUDE": -64.94553875, "LATITUDE": 18.36796978, "OBJECTID_1": 769, "PARCEL_NO_": "101203017000", "Tax_Legal_": "ST.PETER 17-4-D #2 LT.NORTHSIDE", "Name": "BRYAN, FRANCIS M. & VIVIAN", "Address": "PO. Box 12165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8015165, "Country": "United States", "Land_Value": 65500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.30409275299999, "SHAPE_Area": 2104.1884858899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357251.878899998962879, 259811.508299998939037 ], [ 357249.670400001108646, 259786.792300000786781 ], [ 357214.189099997282028, 259786.924100000411272 ], [ 357209.183899998664856, 259806.514800000935793 ], [ 357207.405900001525879, 259825.920899998396635 ], [ 357255.608400002121925, 259847.002599999308586 ], [ 357251.878899998962879, 259811.508299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304035700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9215877, "LATITUDE": 18.36800456, "OBJECTID_1": 1086, "PARCEL_NO_": "101304035700", "Tax_Legal_": "PETERBORG 11-64 GT.NORTHSIDE QTR.", "Name": "SCHULTERBRANDT, KOFI & TAKISHA", "Address": "6639 HUNTER'S WOOD CIRCLE", "City": "CATONSVILLE", "State": "Maryland", "Zip": 21228, "Country": "United States", "Land_Value": 181200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.519277794, "SHAPE_Area": 2056.2757485400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359798.291000001132488, 259823.27250000089407 ], [ 359767.784199997782707, 259807.401900000870228 ], [ 359766.958099998533726, 259809.717099998146296 ], [ 359760.4375, 259817.89640000090003 ], [ 359722.197400003671646, 259857.902300000190735 ], [ 359720.577600002288818, 259858.733399998396635 ], [ 359718.928999997675419, 259862.941799998283386 ], [ 359786.76349999755621, 259851.253600001335144 ], [ 359788.453500002622604, 259842.190400000661612 ], [ 359791.736299999058247, 259835.462200000882149 ], [ 359795.031599998474121, 259827.256599999964237 ], [ 359798.291000001132488, 259823.27250000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91927633, "LATITUDE": 18.36792859, "OBJECTID_1": 1063, "PARCEL_NO_": "101304033200", "Tax_Legal_": "PETERBORG 11-53 GREAT NORTHSIDE QTR.", "Name": "HOILETT, CHRISTOPHER & VICKI", "Address": "PO Box 305673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 159700, "Improved_V": 539800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.37742945599999, "SHAPE_Area": 2299.07903025 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360022.339199997484684, 259794.69539999961853 ], [ 360004.4087999984622, 259791.846799999475479 ], [ 360001.030299998819828, 259800.940600000321865 ], [ 359979.933300003409386, 259857.726500000804663 ], [ 360017.277199998497963, 259863.905999999493361 ], [ 360030.404700003564358, 259837.415600001811981 ], [ 360024.188000001013279, 259809.922600001096725 ], [ 360023.437399998307228, 259803.372499998658895 ], [ 360022.339199997484684, 259794.69539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020600", "MAP": "D9-6172-T97", "PARCEL_NAM": "16-3", "ACRE": "0.28", "LONGITUDE": -64.95083983000001, "LATITUDE": 18.36804339, "OBJECTID_1": 574, "PARCEL_NO_": "101104020600", "Tax_Legal_": "HULL 16 LT. NORTHSIDE", "Name": "DEWERD, DAWN", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 180500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.15919188399999, "SHAPE_Area": 1223.4508197499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356691.522399999201298, 259803.333500001579523 ], [ 356660.104900002479553, 259799.698800001293421 ], [ 356642.164700001478195, 259823.194499999284744 ], [ 356694.474299997091293, 259835.443799998611212 ], [ 356691.522399999201298, 259803.333500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304035100", "MAP": "A9-370-T89", "PARCEL_NAM": "11-70", "ACRE": ".53", "LONGITUDE": -64.92020564000001, "LATITUDE": 18.36786067, "OBJECTID_1": 1080, "PARCEL_NO_": "101304035100", "Tax_Legal_": "11-70 EST PETERBORG #12 GREAT NORTHSIDE QTR", "Name": "MORGAN R LOCKE REVOCABLE LIVING TRUST", "Address": "PO Box 306165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 191900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.793983747, "SHAPE_Area": 1850.6647776899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359938.625399999320507, 259820.199200000613928 ], [ 359911.453500002622604, 259791.479100000113249 ], [ 359902.508599996566772, 259800.271899998188019 ], [ 359899.240099996328354, 259805.3114 ], [ 359897.616700001060963, 259806.564599998295307 ], [ 359881.402400001883507, 259816.775499999523163 ], [ 359884.602399997413158, 259819.756999999284744 ], [ 359903.63570000231266, 259857.276299998164177 ], [ 359925.589500002563, 259835.924499999731779 ], [ 359938.625399999320507, 259820.199200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95183438, "LATITUDE": 18.367932, "OBJECTID_1": 625, "PARCEL_NO_": "101104025800", "Tax_Legal_": "HULL 3B LT. NORTHSIDE", "Name": "LAPLACE, GENE", "Address": "7694 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.370086536, "SHAPE_Area": 443.56237013800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356584.059799998998642, 259828.62950000166893 ], [ 356583.404600001871586, 259810.892299998551607 ], [ 356548.180399999022484, 259780.839800000190735 ], [ 356544.931699998676777, 259783.557500001043081 ], [ 356542.482199996709824, 259787.125999998301268 ], [ 356554.517599999904633, 259794.190600000321865 ], [ 356560.123999997973442, 259798.669399999082088 ], [ 356568.102600000798702, 259808.656100001186132 ], [ 356568.887299999594688, 259811.195700000971556 ], [ 356575.26410000026226, 259819.902699999511242 ], [ 356584.059799998998642, 259828.62950000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91959216, "LATITUDE": 18.36779515, "OBJECTID_1": 1076, "PARCEL_NO_": "101304034700", "Tax_Legal_": "PETERBORG 11-52 GT.NORTHSIDE QTR.", "Name": "BRYAN EATON FAMILY TRUST III", "Address": "79-25 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 159700, "Improved_V": 713400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.85619649399999, "SHAPE_Area": 2385.8335210599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360004.4087999984622, 259791.846799999475479 ], [ 359963.314000003039837, 259785.31810000166297 ], [ 359959.79450000077486, 259796.307799998670816 ], [ 359953.227099999785423, 259809.975099999457598 ], [ 359944.663099996745586, 259824.1864 ], [ 359971.271499998867512, 259849.489599999040365 ], [ 359979.933300003409386, 259857.726500000804663 ], [ 360001.030299998819828, 259800.940600000321865 ], [ 360004.4087999984622, 259791.846799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95488036, "LATITUDE": 18.36761132, "OBJECTID_1": 507, "PARCEL_NO_": "101104011600", "Tax_Legal_": "HULL BAY 2C LT. NORTHSIDE", "Name": "LAPLACE, JOHN H. & MARIE I. & STEVEN J.", "Address": "PO Box 9846", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 189900, "Improved_V": 189000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.73414315299999, "SHAPE_Area": 6467.7976348599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356218.832599997520447, 259821.840599998831749 ], [ 356226.913699999451637, 259819.795800000429153 ], [ 356249.544399999082088, 259813.648299999535084 ], [ 356275.434500001370907, 259803.516600001603365 ], [ 356282.707500003278255, 259801.676300000399351 ], [ 356282.950300000607967, 259773.180599998682737 ], [ 356284.112700000405312, 259731.3935999982059 ], [ 356275.257600001990795, 259729.632399998605251 ], [ 356255.166299998760223, 259721.657499998807907 ], [ 356243.127400003373623, 259715.015000000596046 ], [ 356235.083999998867512, 259712.627199999988079 ], [ 356223.770499996840954, 259715.489900000393391 ], [ 356214.839900001883507, 259722.594000000506639 ], [ 356207.552500002086163, 259726.122900001704693 ], [ 356218.832599997520447, 259821.840599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304032500", "MAP": "A9-370-T89", "PARCEL_NAM": "11-35", "ACRE": ".54", "LONGITUDE": -64.9184073, "LATITUDE": 18.36775625, "OBJECTID_1": 1056, "PARCEL_NO_": "101304032500", "Tax_Legal_": "11-35 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "IDWT TRUST", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172200, "Improved_V": 658900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.96460667700001, "SHAPE_Area": 3034.7127998400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360127.259300000965595, 259826.809300001710653 ], [ 360113.895499996840954, 259786.381000000983477 ], [ 360106.015799999237061, 259764.785000000149012 ], [ 360063.691899999976158, 259810.879200000315905 ], [ 360092.445799998939037, 259843.200699999928474 ], [ 360092.359499998390675, 259853.332499999552965 ], [ 360098.043300002813339, 259848.734999999403954 ], [ 360108.577500000596046, 259842.699499998241663 ], [ 360116.638800002634525, 259842.976599998772144 ], [ 360119.847900003194809, 259844.902699999511242 ], [ 360121.437100000679493, 259847.65989999845624 ], [ 360131.965899996459484, 259842.257599998265505 ], [ 360129.611699998378754, 259834.638999998569489 ], [ 360127.259300000965595, 259826.809300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95133486, "LATITUDE": 18.36781077, "OBJECTID_1": 576, "PARCEL_NO_": "101104020800", "Tax_Legal_": "HULL 4ABC-4 LT. NORTHSIDE", "Name": "La PLACE, LOUISE A.& LAURA M.& LISA M. NIMMO & LILLIAT WOLFE", "Address": "PO Box 11561", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52900, "Improved_V": 258200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.96289306200001, "SHAPE_Area": 1924.5348563499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356642.164700001478195, 259823.194499999284744 ], [ 356628.256999999284744, 259751.942099999636412 ], [ 356618.511200003325939, 259760.094999998807907 ], [ 356608.783299997448921, 259766.137099999934435 ], [ 356603.921999998390675, 259768.841499999165535 ], [ 356596.656199999153614, 259769.837499998509884 ], [ 356608.357100002467632, 259816.162799999117851 ], [ 356642.164700001478195, 259823.194499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304035400", "MAP": "A9-370-T89", "PARCEL_NAM": "11-75", "ACRE": ".605", "LONGITUDE": -64.92090307, "LATITUDE": 18.36787232, "OBJECTID_1": 1083, "PARCEL_NO_": "101304035400", "Tax_Legal_": "PETERBORG 11-75 GT.NORTHSIDE QTR.", "Name": "JD SG LLC", "Address": "20 N Martingale Rd", "City": "Schaumburg", "State": "Illinois", "Zip": 60173, "Country": "United States", "Land_Value": 214800, "Improved_V": 1091700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.89509945399999, "SHAPE_Area": 2438.2896464700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359868.40429999679327, 259828.068199999630451 ], [ 359864.410499997437, 259823.60249999910593 ], [ 359868.279100000858307, 259820.241500001400709 ], [ 359837.760799996554852, 259789.620200000703335 ], [ 359823.479099996387959, 259800.891600001603365 ], [ 359808.794699996709824, 259820.825300000607967 ], [ 359799.345499999821186, 259835.579999998211861 ], [ 359846.278599999845028, 259852.705200001597404 ], [ 359868.40429999679327, 259828.068199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95787155, "LATITUDE": 18.36783082, "OBJECTID_1": 552, "PARCEL_NO_": "101104016900", "Tax_Legal_": "BONNE RESOLUTION 17-3-A LITTLE NORTHSIDE", "Name": "QUERRARD, SHAWN C", "Address": "14-A ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 229900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.14954071099999, "SHAPE_Area": 1735.69019241 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355931.432199999690056, 259766.29280000180006 ], [ 355904.145300000905991, 259751.081900000572205 ], [ 355921.335699997842312, 259815.606100000441074 ], [ 355954.444899998605251, 259809.966400001198053 ], [ 355945.839800000190735, 259778.865299999713898 ], [ 355944.272100001573563, 259773.575100000947714 ], [ 355931.432199999690056, 259766.29280000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95169027, "LATITUDE": 18.36781434, "OBJECTID_1": 575, "PARCEL_NO_": "101104020700", "Tax_Legal_": "HULL ESTATE 4ABC-3 No.4A LITTLE NORTHSIDE QTR.", "Name": "LAPLACE, GENE A. & SHIRLEY L", "Address": "7694 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51800, "Improved_V": 258200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.02705446499999, "SHAPE_Area": 1556.6307279499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356596.656199999153614, 259769.837499998509884 ], [ 356560.327200002968311, 259774.817499998956919 ], [ 356553.050599999725819, 259777.079999998211861 ], [ 356548.180399999022484, 259780.839800000190735 ], [ 356583.404600001871586, 259810.892299998551607 ], [ 356608.357100002467632, 259816.162799999117851 ], [ 356596.656199999153614, 259769.837499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95746245, "LATITUDE": 18.36778303, "OBJECTID_1": 553, "PARCEL_NO_": "101104017000", "Tax_Legal_": "BONNE REWSOLUTION 17-3-B LITTLE NORTHSIDE", "Name": "LAPLACE, GENE A. & SHIRLEY L", "Address": "7694 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.72902975299999, "SHAPE_Area": 1821.2145171100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355954.444899998605251, 259809.966400001198053 ], [ 355958.474600002169609, 259810.210499998182058 ], [ 355958.528599999845028, 259803.878199998289347 ], [ 355964.187100000679493, 259802.235700000077486 ], [ 355965.756599999964237, 259807.314800001680851 ], [ 355967.356700003147125, 259808.805599998682737 ], [ 355993.266500003635883, 259796.352000001817942 ], [ 355992.065700002014637, 259748.001800000667572 ], [ 355945.839800000190735, 259778.865299999713898 ], [ 355954.444899998605251, 259809.966400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304032700", "MAP": "A9-370-T89", "PARCEL_NAM": "11-37", "ACRE": ".65", "LONGITUDE": -64.91873869, "LATITUDE": 18.36751878, "OBJECTID_1": 1058, "PARCEL_NO_": "101304032700", "Tax_Legal_": "PETERBORG 11-37 GT.NORTHSIDE QTR.", "Name": "FLEUR DE LYS FINANCIAL LLC", "Address": "1521 Alton Rd", "City": "Miami Beach", "State": "Florida", "Zip": 33139, "Country": "United States", "Land_Value": 184800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.83534177400003, "SHAPE_Area": 2977.8674544700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360106.015799999237061, 259764.785000000149012 ], [ 360097.362099997699261, 259739.38289999961853 ], [ 360029.173299998044968, 259792.6537000015378 ], [ 360039.26519999653101, 259838.543600000441074 ], [ 360063.691899999976158, 259810.879200000315905 ], [ 360106.015799999237061, 259764.785000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103010500", "MAP": "B9-488-T78", "PARCEL_NAM": "17", "ACRE": null, "LONGITUDE": -64.96245973000001, "LATITUDE": 18.36640586, "OBJECTID_1": 402, "PARCEL_NO_": "101103010500", "Tax_Legal_": "DOROTHEA 17-1&18C LT. NORTHSIDE", "Name": "Y & S CORPORATION, INC.", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 427100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1104.8541546700001, "SHAPE_Area": 37766.196987299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355537.259099997580051, 259404.459399998188019 ], [ 355537.749700002372265, 259402.535199999809265 ], [ 355530.517599999904633, 259405.208000000566244 ], [ 355519.218500003218651, 259406.381999999284744 ], [ 355499.040899999439716, 259408.538899999111891 ], [ 355484.615599997341633, 259416.51969999819994 ], [ 355477.20719999819994, 259421.546799998730421 ], [ 355471.386399999260902, 259426.309300001710653 ], [ 355457.363399997353554, 259439.009300000965595 ], [ 355446.780100002884865, 259444.565600000321865 ], [ 355425.084200002253056, 259453.8260000012815 ], [ 355419.792499996721745, 259456.207299999892712 ], [ 355411.061300002038479, 259465.467700000852346 ], [ 355401.007100000977516, 259476.051100000739098 ], [ 355392.275799997150898, 259483.723999999463558 ], [ 355379.046599999070168, 259498.805300001055002 ], [ 355371.514700002968311, 259517.263799998909235 ], [ 355394.919799998402596, 259798.843100000172853 ], [ 355527.228699997067451, 259791.271200001239777 ], [ 355525.553700000047684, 259694.381799999624491 ], [ 355501.055200003087521, 259669.592999998480082 ], [ 355494.1266999989748, 259662.582299999892712 ], [ 355480.497699998319149, 259648.791799999773502 ], [ 355455.161100000143051, 259623.154899999499321 ], [ 355416.011200003325939, 259583.541000001132488 ], [ 355467.370600000023842, 259529.236299999058247 ], [ 355468.205700002610683, 259525.865699999034405 ], [ 355469.836300000548363, 259523.768100000917912 ], [ 355469.854299999773502, 259521.657299999147654 ], [ 355471.484899997711182, 259519.55970000103116 ], [ 355473.129900000989437, 259515.773499999195337 ], [ 355477.249600000679493, 259505.463599998503923 ], [ 355482.143200002610683, 259498.959800001233816 ], [ 355484.612499997019768, 259493.069299999624491 ], [ 355499.298699997365475, 259472.924600001424551 ], [ 355520.451700001955032, 259450.932900000363588 ], [ 355533.447999998927116, 259439.851300001144409 ], [ 355537.259099997580051, 259404.459399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91743283, "LATITUDE": 18.36780795, "OBJECTID_1": 1004, "PARCEL_NO_": "101304023900", "Tax_Legal_": "PETERSBORG 11-1-16 GREAT NORTHSIDE QTR", "Name": "McGEE, ESCETA M", "Address": "19153 115th Ave", "City": "Saint Albans", "State": "New York", "Zip": 11412, "Country": "United States", "Land_Value": 118700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.60940233999997, "SHAPE_Area": 2849.4410691600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360249.782899998128414, 259832.034000001847744 ], [ 360236.298500001430511, 259805.747999999672174 ], [ 360225.98369999974966, 259786.031899999827147 ], [ 360208.943300001323223, 259798.55799999833107 ], [ 360183.027999997138977, 259811.644799999892712 ], [ 360170.085600003600121, 259816.394000001251698 ], [ 360140.196299999952316, 259822.693300001323223 ], [ 360136.949500001966953, 259825.199799999594688 ], [ 360137.732400000095367, 259827.950500000268221 ], [ 360165.899400003254414, 259834.513799998909235 ], [ 360187.650100000202656, 259837.013900000602007 ], [ 360208.614200003445148, 259837.185400001704693 ], [ 360230.398999996483326, 259835.675000000745058 ], [ 360249.782899998128414, 259832.034000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95421445, "LATITUDE": 18.36771053, "OBJECTID_1": 509, "PARCEL_NO_": "101104011800", "Tax_Legal_": "HULL ESTATE 2B No.4B LITTLE NORTHSIDE QTR.", "Name": "BERRY, ANNE M. L. & BRYAN, MARIE L", "Address": "PO Box 9527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84800, "Improved_V": 6100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.051321403, "SHAPE_Area": 2357.7994217400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356315.515699997544289, 259736.716899998486042 ], [ 356314.392899997532368, 259773.860100001096725 ], [ 356282.950300000607967, 259773.180599998682737 ], [ 356282.707500003278255, 259801.676300000399351 ], [ 356298.846400000154972, 259800.330699998885393 ], [ 356302.869000002741814, 259801.419100001454353 ], [ 356317.380800001323223, 259801.7489 ], [ 356337.516999997198582, 259804.446899998933077 ], [ 356338.049300000071526, 259741.967500001192093 ], [ 356326.793300002813339, 259738.075699999928474 ], [ 356315.515699997544289, 259736.716899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95363937, "LATITUDE": 18.36771332, "OBJECTID_1": 513, "PARCEL_NO_": "101104012200", "Tax_Legal_": "HULL BAY 2A 4b LITTLE NORTHSIDE QTR.", "Name": "BERRY, KEN LOUIS", "Address": "#2A ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79100, "Improved_V": 162700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.29988320699999, "SHAPE_Area": 3474.7827288399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356337.516999997198582, 259804.446899998933077 ], [ 356357.6891999989748, 259802.923200000077486 ], [ 356371.432499997317791, 259798.813799999654293 ], [ 356388.39019999653101, 259795.997299998998642 ], [ 356408.594800002872944, 259790.674300000071526 ], [ 356415.853399999439716, 259790.522599998861551 ], [ 356428.741800002753735, 259792.105700001120567 ], [ 356430.36879999935627, 259790.430300001055002 ], [ 356429.821400001645088, 259760.028299998492002 ], [ 356405.585299998521805, 259765.318399999290705 ], [ 356391.874399997293949, 259765.628400001674891 ], [ 356382.209499999880791, 259764.282699998468161 ], [ 356366.930900000035763, 259759.302499998360872 ], [ 356357.30009999871254, 259753.946299999952316 ], [ 356346.884499996900558, 259746.050599999725819 ], [ 356338.049300000071526, 259741.967500001192093 ], [ 356337.516999997198582, 259804.446899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94221147, "LATITUDE": 18.36762047, "OBJECTID_1": 727, "PARCEL_NO_": "101203012600", "Tax_Legal_": "ST PETER 13-7 LITTLE NORTHSIDE", "Name": "WOODS, WILLIAM", "Address": "511 Woodhaven", "City": "Ingleside", "State": "Texas", "Zip": 78362, "Country": "United States", "Land_Value": 116700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.100499082, "SHAPE_Area": 2271.5851162899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357603.088799998164177, 259759.920699998736382 ], [ 357566.853299997746944, 259753.924600001424551 ], [ 357556.51690000295639, 259736.741399999707937 ], [ 357553.304200001060963, 259735.237399999052286 ], [ 357550.071800000965595, 259736.055399999022484 ], [ 357548.444799996912479, 259737.730799999088049 ], [ 357548.410599999129772, 259741.741300001740456 ], [ 357557.951499998569489, 259757.651399999856949 ], [ 357565.073399998247623, 259773.541700001806021 ], [ 357567.42400000244379, 259781.582499999552965 ], [ 357570.550399996340275, 259793.218199998140335 ], [ 357576.909199997782707, 259804.035999998450279 ], [ 357584.106700003147125, 259811.061000000685453 ], [ 357617.302100002765656, 259795.289599999785423 ], [ 357613.346100002527237, 259786.39130000025034 ], [ 357611.747900001704693, 259784.689500000327826 ], [ 357610.1621999964118, 259781.510099999606609 ], [ 357603.088799998164177, 259759.920699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020600", "MAP": "D9-6172-T97", "PARCEL_NAM": "REM 16", "ACRE": "0.27", "LONGITUDE": -64.95076275, "LATITUDE": 18.36764109, "OBJECTID_1": 574, "PARCEL_NO_": "101104020600", "Tax_Legal_": "HULL 16 LT. NORTHSIDE", "Name": "DEWERD, DAWN", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 180500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.711295181, "SHAPE_Area": 1271.9582788099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356683.336199998855591, 259723.050900001078844 ], [ 356674.195299997925758, 259754.851199999451637 ], [ 356668.241800002753735, 259791.110599998384714 ], [ 356660.104900002479553, 259799.698800001293421 ], [ 356691.522399999201298, 259803.333500001579523 ], [ 356688.575800001621246, 259770.589800000190735 ], [ 356694.229000002145767, 259769.580600000917912 ], [ 356689.581699997186661, 259747.166700001806021 ], [ 356683.336199998855591, 259723.050900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91673421, "LATITUDE": 18.36769005, "OBJECTID_1": 1005, "PARCEL_NO_": "101304024000", "Tax_Legal_": "PETERBORG 12-18 GR NORTSDE", "Name": "REGINA AND KEITH HUSBANDS REVOCABLE TRUST", "Address": "5500 Monte Fino Ct", "City": "GREENACRES", "State": "Florida", "Zip": 33463, "Country": "United States", "Land_Value": 170400, "Improved_V": 2000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.10339445400001, "SHAPE_Area": 2434.4794286900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360312.036200001835823, 259812.911800000816584 ], [ 360302.667900003492832, 259776.738099999725819 ], [ 360236.298500001430511, 259805.747999999672174 ], [ 360249.782899998128414, 259832.034000001847744 ], [ 360286.936200000345707, 259824.949799999594688 ], [ 360298.260499998927116, 259820.820599999278784 ], [ 360312.036200001835823, 259812.911800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96001444, "LATITUDE": 18.36690895, "OBJECTID_1": 419, "PARCEL_NO_": "101103020300", "Tax_Legal_": "DOROTHEA REMAINDER 18 LT. NORTHSIDE", "Name": "Y & S CORPORATION, INC.", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 393900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 847.58148045899998, "SHAPE_Area": 35779.9840797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355781.132299996912479, 259519.349800001829863 ], [ 355723.069200001657009, 259543.597899999469519 ], [ 355722.041299998760223, 259545.886100001633167 ], [ 355713.863099999725819, 259559.329199999570847 ], [ 355700.008299998939037, 259576.525499999523163 ], [ 355686.999399997293949, 259589.084600001573563 ], [ 355665.805100001394749, 259615.931099999696016 ], [ 355664.979000002145767, 259618.246399998664856 ], [ 355663.357400000095367, 259619.288600001484156 ], [ 355662.531300000846386, 259621.603900000452995 ], [ 355659.275499999523163, 259625.165800001472235 ], [ 355647.834299996495247, 259643.015099998563528 ], [ 355642.910099998116493, 259653.107299998402596 ], [ 355637.924800001084805, 259670.376200001686811 ], [ 355629.725000001490116, 259686.352200001478195 ], [ 355619.955700002610683, 259697.249099999666214 ], [ 355602.91889999806881, 259709.353100001811981 ], [ 355593.963100001215935, 259719.412300001829863 ], [ 355560.305500000715256, 259789.430900000035763 ], [ 355682.931500002741814, 259782.624099999666214 ], [ 355787.80969999730587, 259776.72749999910593 ], [ 355781.132299996912479, 259519.349800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91801869, "LATITUDE": 18.36759823, "OBJECTID_1": 1003, "PARCEL_NO_": "101304023800", "Tax_Legal_": "PETERBORG 11-1-14&15 GR NORTHSIDE QTR", "Name": "DRISCOLL, RANDALL S. & SALLY L.", "Address": "6200 WINDWARD WAY #46", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 204600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.76726544900001, "SHAPE_Area": 1664.2875314600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360169.354800000786781, 259807.522100001573563 ], [ 360155.960400000214577, 259770.682199999690056 ], [ 360113.895499996840954, 259786.381000000983477 ], [ 360127.259300000965595, 259826.809300001710653 ], [ 360128.097999997437, 259823.016499999910593 ], [ 360132.997000001370907, 259815.879399999976158 ], [ 360137.04839999973774, 259813.590500000864267 ], [ 360153.196199998259544, 259811.189500000327826 ], [ 360169.354800000786781, 259807.522100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101403010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91526238, "LATITUDE": 18.36762134, "OBJECTID_1": 1099, "PARCEL_NO_": "101403010100", "Tax_Legal_": "14-4 ESTATE PETERBORG GT. NORTHSIDE", "Name": "NIETO GONZALEZ, ALFREDO & ROXANA APONTE MARQUEZ", "Address": "PO BOX 1049", "City": "Sabana Seca", "State": "Puerto Rico", "Zip": 952, "Country": "United States", "Land_Value": 254500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.74567557899999, "SHAPE_Area": 2490.4727580499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360469.482900001108646, 259788.869199998676777 ], [ 360406.7128000035882, 259774.0011 ], [ 360404.198499999940395, 259785.168400000780821 ], [ 360399.917000003159046, 259814.475400000810623 ], [ 360457.044699996709824, 259829.086199998855591 ], [ 360455.466300003230572, 259825.0625 ], [ 360457.903200000524521, 259822.971500001847744 ], [ 360456.342699997127056, 259816.837099999189377 ], [ 360457.183200001716614, 259812.833200000226498 ], [ 360462.924500003457069, 259801.481100000441074 ], [ 360468.604599997401237, 259797.305700000375509 ], [ 360469.482900001108646, 259788.869199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304035800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92125679, "LATITUDE": 18.36754535, "OBJECTID_1": 1087, "PARCEL_NO_": "101304035800", "Tax_Legal_": "PETERBORG 11-63 GT.NORTHSIDE QTR.", "Name": "HOLLAND, LORI & GAPE, DAVID A", "Address": "355 Colonial Ave", "City": "Marco Island", "State": "Florida", "Zip": 34145, "Country": "United States", "Land_Value": 174000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.27080095400001, "SHAPE_Area": 2494.0547710800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359836.55460000038147, 259780.52250000089407 ], [ 359793.281599998474121, 259748.715399999171495 ], [ 359789.190700002014637, 259755.647999998182058 ], [ 359775.157899998128414, 259793.741099998354912 ], [ 359771.065200001001358, 259800.884799998253584 ], [ 359767.784199997782707, 259807.401900000870228 ], [ 359798.291000001132488, 259823.27250000089407 ], [ 359817.066399998962879, 259796.406199999153614 ], [ 359825.197899997234344, 259788.451099999248981 ], [ 359836.55460000038147, 259780.52250000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91579084, "LATITUDE": 18.36753856, "OBJECTID_1": 1020, "PARCEL_NO_": "101304025600", "Tax_Legal_": "PETERBORG 14-3 GT. NORTHSIDE", "Name": "LONG, L. P. , A. M. , E. A. , T. L. , T. M. &", "Address": "7101 Wisconsin Ave", "City": "Bethesda", "State": "Maryland", "Zip": 20817, "Country": "United States", "Land_Value": 137800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.59290576399999, "SHAPE_Area": 2647.91730977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360391.034999996423721, 259815.880399998277426 ], [ 360391.882700003683567, 259811.0320999994874 ], [ 360393.500699996948242, 259810.412099998444319 ], [ 360394.325000002980232, 259808.307900000363588 ], [ 360398.565099999308586, 259783.855799999088049 ], [ 360402.749600000679493, 259765.94709999859333 ], [ 360406.168999999761581, 259743.176899999380112 ], [ 360403.764499999582767, 259741.468499999493361 ], [ 360384.263700000941753, 259758.829700000584126 ], [ 360372.064699999988079, 259770.973299998790026 ], [ 360355.767599999904633, 259790.893800001591444 ], [ 360344.391199998557568, 259801.144200000911951 ], [ 360344.978100001811981, 259826.902499999850988 ], [ 360391.034999996423721, 259815.880399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203015600", "MAP": "D9-5220-T92", "PARCEL_NAM": "14-5", "ACRE": ".66", "LONGITUDE": -64.94416689000001, "LATITUDE": 18.36661342, "OBJECTID_1": 755, "PARCEL_NO_": "101203015600", "Tax_Legal_": "ST PETER 14-5 LITTLE NORTHSIDE", "Name": "BRYAN, ELVER E", "Address": "PO Box 308181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99500, "Improved_V": 93500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.31656349799999, "SHAPE_Area": 2667.7712541400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357373.597199998795986, 259721.94539999961853 ], [ 357381.531499996781349, 259722.598999999463558 ], [ 357391.605800002813339, 259690.428700000047684 ], [ 357394.195600003004074, 259670.396000001579523 ], [ 357400.059199996292591, 259644.690600000321865 ], [ 357403.361699998378754, 259635.640599999576807 ], [ 357355.925999999046326, 259619.209300000220537 ], [ 357373.597199998795986, 259721.94539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203012400", "MAP": "A9-115-T69", "PARCEL_NAM": "13-6", "ACRE": "1.42", "LONGITUDE": -64.94286345, "LATITUDE": 18.36728341, "OBJECTID_1": 725, "PARCEL_NO_": "101203012400", "Tax_Legal_": "13-5 & 13-6 ST PETER LITTLE NORTHSIDE QUARTER", "Name": "NAPOLEON QUERRARD REVOCABLE LIVING TRUST", "Address": "7480 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 409400, "Improved_V": 32900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.17334973300001, "SHAPE_Area": 6231.0376810500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357494.11429999768734, 259773.383099999278784 ], [ 357518.879900000989437, 259800.605799999088049 ], [ 357557.001299999654293, 259774.531100001186132 ], [ 357542.739399999380112, 259744.861299999058247 ], [ 357540.385200001299381, 259737.242600001394749 ], [ 357539.63289999961853, 259730.9037000015378 ], [ 357539.737199999392033, 259718.661100000143051 ], [ 357549.598099999129772, 259696.999200001358986 ], [ 357554.49889999628067, 259689.651000000536442 ], [ 357554.549300000071526, 259683.740800000727177 ], [ 357552.1537000015378, 259680.977000001817942 ], [ 357545.706799998879433, 259680.502000000327826 ], [ 357486.630199998617172, 259705.349700000137091 ], [ 357480.950099997222424, 259709.525100000202656 ], [ 357475.250200003385544, 259716.022399999201298 ], [ 357472.752099998295307, 259725.28999999910593 ], [ 357474.213699996471405, 259743.033900000154972 ], [ 357476.598399996757507, 259747.0641999989748 ], [ 357477.374200001358986, 259750.659099999815226 ], [ 357478.974200002849102, 259752.14979999884963 ], [ 357483.733000002801418, 259761.47690000012517 ], [ 357494.11429999768734, 259773.383099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304035000", "MAP": "A9-370-T89", "PARCEL_NAM": "11-71", "ACRE": ".517", "LONGITUDE": -64.91992966, "LATITUDE": 18.36750252, "OBJECTID_1": 1079, "PARCEL_NO_": "101304035000", "Tax_Legal_": "PETERBORG ESTATE 11-71 No.12 GREAT NORTHSIDE QTR.", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "PO Box 12259", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 168600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.09028457, "SHAPE_Area": 1813.8148617700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359962.560500003397465, 259755.589299999177456 ], [ 359936.776500001549721, 259753.267400000244379 ], [ 359935.934199996292591, 259757.482299998402596 ], [ 359933.452299997210503, 259764.850299999117851 ], [ 359928.569499999284744, 259770.087699998170137 ], [ 359926.096600003540516, 259776.400299999862909 ], [ 359923.66330000013113, 259778.069099999964237 ], [ 359915.520999997854233, 259787.290600001811981 ], [ 359911.453500002622604, 259791.479100000113249 ], [ 359938.625399999320507, 259820.199200000613928 ], [ 359950.081000000238419, 259800.661200001835823 ], [ 359954.22580000013113, 259787.396200001239777 ], [ 359960.008500002324581, 259771.189399998635054 ], [ 359962.560500003397465, 259755.589299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9528349, "LATITUDE": 18.36767766, "OBJECTID_1": 514, "PARCEL_NO_": "101104012300", "Tax_Legal_": "HULL BAY 4C-1 LT. NORTHSIDE", "Name": "FMP HOLDINGS, LLC", "Address": "10441 E Alder Creek Rd", "City": "Truckee", "State": "California", "Zip": 96161, "Country": "United States", "Land_Value": 42000, "Improved_V": 10200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.801338974, "SHAPE_Area": 826.86586880799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356473.35869999974966, 259760.806800000369549 ], [ 356460.475699998438358, 259758.590500000864267 ], [ 356445.963899999856949, 259758.260600000619888 ], [ 356451.338299997150898, 259789.968600001186132 ], [ 356477.134900003671646, 259790.813000001013279 ], [ 356473.35869999974966, 259760.806800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031300", "MAP": "A9-394A-T91", "PARCEL_NAM": "6", "ACRE": "4.7", "LONGITUDE": -64.96397735, "LATITUDE": 18.3666166, "OBJECTID_1": 450, "PARCEL_NO_": "101103031300", "Tax_Legal_": "6 NELTJEBERG/EASTERN PART NO.6 LITTLE NORTHSIDE QTR.", "Name": "HUGHG, JANET", "Address": "PO Box 600168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 204100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 870.96233962899998, "SHAPE_Area": 18553.613506199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355371.514700002968311, 259517.263799998909235 ], [ 355323.776900000870228, 259536.293699998408556 ], [ 355316.710699997842312, 259513.859999999403954 ], [ 355313.323600001633167, 259532.830699998885393 ], [ 355287.170900002121925, 259573.779899999499321 ], [ 355282.644900001585484, 259631.793600000441074 ], [ 355259.060400001704693, 259655.243000000715256 ], [ 355176.128899998962879, 259640.632100000977516 ], [ 355144.206200003623962, 259696.310600001364946 ], [ 355160.390000000596046, 259689.688099998980761 ], [ 355162.787399999797344, 259692.240800000727177 ], [ 355166.81530000269413, 259692.695999998599291 ], [ 355220.139799997210503, 259680.46680000051856 ], [ 355228.197599999606609, 259681.166000001132488 ], [ 355233.012100003659725, 259683.949599999934435 ], [ 355249.802599996328354, 259700.763399999588728 ], [ 355255.367600001394749, 259710.097100000828505 ], [ 355264.030299998819828, 259734.443799998611212 ], [ 355286.281599998474121, 259772.833799999207258 ], [ 355290.298699997365475, 259774.555399999022484 ], [ 355295.147399999201298, 259773.328600000590086 ], [ 355299.927699998021126, 259780.122699998319149 ], [ 355371.514700002968311, 259517.263799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304030300", "MAP": "A9-370-T89", "PARCEL_NAM": "11-12", "ACRE": ".566", "LONGITUDE": -64.92180517, "LATITUDE": 18.36748679, "OBJECTID_1": 1035, "PARCEL_NO_": "101304030300", "Tax_Legal_": "11-12 PETERBORG No. 12 GREAT NORTHSIDE QTR.", "Name": "KORNEGAY, STEVEN & VICKI", "Address": "811 Karolina St", "City": "Kilgore", "State": "Texas", "Zip": 75662, "Country": "United States", "Land_Value": 168700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.31355440300001, "SHAPE_Area": 2475.5813665199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359774.53320000320673, 259772.415600001811981 ], [ 359728.778399996459484, 259747.976399999111891 ], [ 359718.168700002133846, 259762.877199999988079 ], [ 359706.671700000762939, 259787.269999999552965 ], [ 359754.84009999781847, 259812.362199999392033 ], [ 359762.177799999713898, 259802.923000000417233 ], [ 359774.53320000320673, 259772.415600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203015900", "MAP": "D9-5371-T92", "PARCEL_NAM": "14-6", "ACRE": ".58", "LONGITUDE": -64.943564, "LATITUDE": 18.3675694, "OBJECTID_1": 758, "PARCEL_NO_": "101203015900", "Tax_Legal_": "ST PETER 14-6 LITTLE NORTHSIDE", "Name": "HUNT, PEGGY", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 88000, "Improved_V": 237400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.137170798, "SHAPE_Area": 2725.03224619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357471.703000001609325, 259753.779100000858307 ], [ 357468.433300003409386, 259742.89640000090003 ], [ 357454.835199996829033, 259746.041700001806021 ], [ 357399.8800999969244, 259760.368400000035763 ], [ 357406.228100001811981, 259772.4527000002563 ], [ 357413.400399997830391, 259782.432799998670816 ], [ 357414.971600003540516, 259787.300799999386072 ], [ 357417.345600001513958, 259792.597600001841784 ], [ 357421.295500002801418, 259798.21059999987483 ], [ 357477.213799998164177, 259783.845800001174212 ], [ 357476.106499999761581, 259777.80460000038147 ], [ 357471.703000001609325, 259753.779100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304035200", "MAP": "A9-370-T89", "PARCEL_NAM": "11-74", "ACRE": ".611", "LONGITUDE": -64.92057049, "LATITUDE": 18.36755761, "OBJECTID_1": 1081, "PARCEL_NO_": "101304035200", "Tax_Legal_": "PETERBORG 11-74 GT. NORTHSIDE QTR.", "Name": "RANJIT NICHOLAS SINGH REVOCABLE TRUST", "Address": "27 Indian Waters Dr", "City": "New Canaan", "State": "Connecticut", "Zip": 6840, "Country": "United States", "Land_Value": 214800, "Improved_V": 1243400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.59610785300001, "SHAPE_Area": 2083.9710782400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359903.161200001835823, 259791.260600000619888 ], [ 359877.636699996888638, 259756.50789999961853 ], [ 359849.455600000917912, 259780.628100000321865 ], [ 359847.83389999717474, 259781.670299999415874 ], [ 359837.760799996554852, 259789.620200000703335 ], [ 359868.279100000858307, 259820.241500001400709 ], [ 359877.408600002527237, 259812.309900000691414 ], [ 359896.889499999582767, 259797.270599998533726 ], [ 359903.161200001835823, 259791.260600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104025300", "MAP": "G9-649-T62", "PARCEL_NAM": "3A", "ACRE": "0.11", "LONGITUDE": -64.9523103, "LATITUDE": 18.36757976, "OBJECTID_1": 620, "PARCEL_NO_": "101104025300", "Tax_Legal_": "HULL 3A LT. NORTHSIDE", "Name": "PENNINGTON BOSTWICK TRUST", "Address": "PO Box 505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.69262886800001, "SHAPE_Area": 726.78628271800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356501.746899999678135, 259741.407499998807907 ], [ 356500.145099997520447, 259740.12779999896884 ], [ 356498.35080000013113, 259761.433600001037121 ], [ 356512.788900002837181, 259770.417700000107288 ], [ 356516.788099996745586, 259774.250100001692772 ], [ 356522.401699997484684, 259777.88459999859333 ], [ 356536.056900002062321, 259784.118099998682737 ], [ 356536.884800001978874, 259781.59180000051856 ], [ 356541.773000001907349, 259775.721099998801947 ], [ 356501.746899999678135, 259741.407499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104017100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95755018, "LATITUDE": 18.36743491, "OBJECTID_1": 554, "PARCEL_NO_": "101104017100", "Tax_Legal_": "BONNE RESOLUTION LITTLE NORTHSIDE", "Name": "QUERRARD, AMANDA A", "Address": "452 Old Teal Rd", "City": "Hiram", "State": "Georgia", "Zip": 30141, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.96267594400001, "SHAPE_Area": 2297.9706485199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355955.210900001227856, 259720.046900000423193 ], [ 355931.432199999690056, 259766.29280000180006 ], [ 355944.272100001573563, 259773.575100000947714 ], [ 355945.839800000190735, 259778.865299999713898 ], [ 355992.065700002014637, 259748.001800000667572 ], [ 355990.634700000286102, 259726.669599998742342 ], [ 355966.617899999022484, 259706.208099998533726 ], [ 355958.428999997675419, 259720.917599998414516 ], [ 355955.210900001227856, 259720.046900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95587814, "LATITUDE": 18.36750553, "OBJECTID_1": 534, "PARCEL_NO_": "101104014400", "Tax_Legal_": "HULL 2EA LT. NORTHSIDE", "Name": "BRYAN, ROY G", "Address": "PO Box 9527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63900, "Improved_V": 237000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.21583194499999, "SHAPE_Area": 2775.3149188100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356164.771200001239777, 259731.261199999600649 ], [ 356164.812600001692772, 259726.406399998813868 ], [ 356114.022100001573563, 259725.146299999207258 ], [ 356115.174400001764297, 259779.195700000971556 ], [ 356167.579300001263618, 259780.25789999961853 ], [ 356165.482199996709824, 259742.454999998211861 ], [ 356164.771200001239777, 259731.261199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91627245, "LATITUDE": 18.36744509, "OBJECTID_1": 1008, "PARCEL_NO_": "101304024300", "Tax_Legal_": "PETERBORG 12-16 GR NORTHSIDE QTR", "Name": "NIX LIVING TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168700, "Improved_V": 345600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.001598296, "SHAPE_Area": 1697.39405349 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360344.475699998438358, 259791.223499998450279 ], [ 360343.265799999237061, 259743.928700000047684 ], [ 360311.600299999117851, 259769.422899998724461 ], [ 360302.667900003492832, 259776.738099999725819 ], [ 360312.036200001835823, 259812.911800000816584 ], [ 360332.296499997377396, 259801.045299999415874 ], [ 360344.475699998438358, 259791.223499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94578853, "LATITUDE": 18.36710472, "OBJECTID_1": 721, "PARCEL_NO_": "101203012100", "Tax_Legal_": "17-4 ESTATE ST.PETER LITTLE NORTHSIDE QTR", "Name": "BRYAN, LOUIS & ANN ZELMA", "Address": "3213 Friar Ln", "City": "Garland", "State": "Texas", "Zip": 75044, "Country": "United States", "Land_Value": 192200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 392.852767153, "SHAPE_Area": 7221.3888527999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357233.760999999940395, 259666.549800001084805 ], [ 357180.535400003194809, 259667.169700000435114 ], [ 357170.807499997317791, 259673.211800001561642 ], [ 357134.325599998235703, 259696.133499998599291 ], [ 357147.187100000679493, 259700.882800001651049 ], [ 357162.436899997293949, 259709.240299999713898 ], [ 357172.852399997413158, 259717.135999999940395 ], [ 357183.251800000667572, 259726.931400001049042 ], [ 357200.785599999129772, 259751.139600001275539 ], [ 357207.921999998390675, 259765.3412000015378 ], [ 357215.097900003194809, 259774.89919999986887 ], [ 357215.02589999884367, 259783.342300001531839 ], [ 357214.189099997282028, 259786.924100000411272 ], [ 357249.670400001108646, 259786.792300000786781 ], [ 357233.760999999940395, 259666.549800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9543775, "LATITUDE": 18.36750333, "OBJECTID_1": 508, "PARCEL_NO_": "101104011700", "Tax_Legal_": "HULL BAY 2BA LT. NORTHSIDE", "Name": "HULL BAY 2BA LLC", "Address": "6860 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47900, "Improved_V": 295000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.30605157100001, "SHAPE_Area": 1230.76817117 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356282.950300000607967, 259773.180599998682737 ], [ 356314.392899997532368, 259773.860100001096725 ], [ 356315.515699997544289, 259736.716899998486042 ], [ 356302.625500001013279, 259735.344799999147654 ], [ 356284.112700000405312, 259731.3935999982059 ], [ 356282.950300000607967, 259773.180599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021100", "MAP": "G9-649-T62", "PARCEL_NAM": "4AbC-1", "ACRE": "0.28", "LONGITUDE": -64.9521243, "LATITUDE": 18.36741865, "OBJECTID_1": 579, "PARCEL_NO_": "101104021100", "Tax_Legal_": "HULL 4ABC-1 LT. NORTHSIDE", "Name": "PENNINGTON BOSTWICK TRUST", "Address": "PO Box 505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34700, "Improved_V": 184600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.50324414400001, "SHAPE_Area": 1834.1564511500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356559.709700003266335, 259752.647700000554323 ], [ 356571.95719999819994, 259734.804900001734495 ], [ 356553.363499999046326, 259740.352299999445677 ], [ 356550.312700003385544, 259719.851199999451637 ], [ 356502.211199998855591, 259739.292700000107288 ], [ 356500.145099997520447, 259740.12779999896884 ], [ 356501.746899999678135, 259741.407499998807907 ], [ 356541.773000001907349, 259775.721099998801947 ], [ 356550.708999998867512, 259767.983800001442432 ], [ 356553.176500000059605, 259762.304499998688698 ], [ 356557.244000002741814, 259758.115899998694658 ], [ 356559.709700003266335, 259752.647700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91684902, "LATITUDE": 18.36742065, "OBJECTID_1": 1006, "PARCEL_NO_": "101304024100", "Tax_Legal_": "PETERBORG 12-17 GR NORTHSIDE QTR", "Name": "STOLZ, ROBERT & CAMIUE", "Address": "PO Box 303164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033164, "Country": "United States", "Land_Value": 174000, "Improved_V": 176500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.63404991199999, "SHAPE_Area": 2195.7606338599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360311.600299999117851, 259769.422899998724461 ], [ 360266.608599998056889, 259750.05629999935627 ], [ 360262.5320999994874, 259755.300200000405312 ], [ 360254.402400001883507, 259763.044199999421835 ], [ 360225.98369999974966, 259786.031899999827147 ], [ 360236.298500001430511, 259805.747999999672174 ], [ 360302.667900003492832, 259776.738099999725819 ], [ 360311.600299999117851, 259769.422899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91942025, "LATITUDE": 18.36737092, "OBJECTID_1": 1062, "PARCEL_NO_": "101304033100", "Tax_Legal_": "PETERBORG 11-54 GT.NORTHSIDE QTR.", "Name": "FERGUSON, SIMON J", "Address": "8822 Edenbridge St", "City": "Spring", "State": "Texas", "Zip": 77379, "Country": "United States", "Land_Value": 156100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.615827978, "SHAPE_Area": 2208.7102159199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359963.314000003039837, 259785.31810000166297 ], [ 360022.339199997484684, 259794.69539999961853 ], [ 360020.415399998426437, 259779.494199998676777 ], [ 360019.774499997496605, 259760.068399999290705 ], [ 360012.564400002360344, 259754.520899999886751 ], [ 359972.381899997591972, 259738.571100000292063 ], [ 359969.768700003623962, 259761.347899999469519 ], [ 359965.593299999833107, 259778.201200000941753 ], [ 359963.314000003039837, 259785.31810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95783867, "LATITUDE": 18.36728644, "OBJECTID_1": 495, "PARCEL_NO_": "101104010300", "Tax_Legal_": "BONNE RESOULTION 17-3 REMAINDER LT. NORTHSIDE", "Name": "QUERRARD, GINA M", "Address": "6F-2 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.10287119899999, "SHAPE_Area": 2155.9299615199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355961.011500000953674, 259701.729200001806021 ], [ 355939.392099998891354, 259683.82039999961853 ], [ 355904.145300000905991, 259751.081900000572205 ], [ 355931.432199999690056, 259766.29280000180006 ], [ 355955.210900001227856, 259720.046900000423193 ], [ 355951.996399998664856, 259718.754000000655651 ], [ 355952.055799998342991, 259711.788400001823902 ], [ 355950.452100001275539, 259710.719799999147654 ], [ 355953.718699999153614, 259705.891399998217821 ], [ 355956.134099997580051, 259706.333299998193979 ], [ 355958.560199998319149, 259705.508799999952316 ], [ 355960.185400001704693, 259704.04450000077486 ], [ 355961.011500000953674, 259701.729200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92245625, "LATITUDE": 18.36731746, "OBJECTID_1": 1097, "PARCEL_NO_": "101304039900", "Tax_Legal_": "PETERBORG 11REM,11-76-1-11-76-8& 11-76 REM GT. NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 508300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.32876402799999, "SHAPE_Area": 2232.2695816800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359709.31360000371933, 259761.11600000038743 ], [ 359649.89469999819994, 259731.498799998313189 ], [ 359636.887599997222424, 259743.846799999475479 ], [ 359631.196599997580051, 259749.288699999451637 ], [ 359692.894299998879433, 259795.389899998903275 ], [ 359695.34740000218153, 259791.39919999986887 ], [ 359702.764200001955032, 259772.672499999403954 ], [ 359709.31360000371933, 259761.11600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95158429, "LATITUDE": 18.36742253, "OBJECTID_1": 577, "PARCEL_NO_": "101104020900", "Tax_Legal_": "HULL 4ABC LT. NORTHSIDE", "Name": "GREAUX, ANN CHRYSTALIA", "Address": "4ABC Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33500, "Improved_V": 23100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.69388771000001, "SHAPE_Area": 1766.0707632799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356622.825000002980232, 259726.988600000739098 ], [ 356575.196900002658367, 259733.142700001597404 ], [ 356574.351000003516674, 259737.779800001531839 ], [ 356567.783600002527237, 259751.447200000286102 ], [ 356559.605400003492832, 259764.8902000002563 ], [ 356559.571199998259544, 259768.900699999183416 ], [ 356601.555200003087521, 259762.700399998575449 ], [ 356605.601199999451637, 259761.044799998402596 ], [ 356626.696599997580051, 259745.807599999010563 ], [ 356622.825000002980232, 259726.988600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304032800", "MAP": "A9-370-T89", "PARCEL_NAM": "11-38", "ACRE": ".57", "LONGITUDE": -64.91880238, "LATITUDE": 18.36720709, "OBJECTID_1": 1059, "PARCEL_NO_": "101304032800", "Tax_Legal_": "11-38 PETERBORG No.12 GREAT NORTHSIDE QUARTER", "Name": "SARA PUIG", "Address": "3820 Hermalinda St", "City": "Austin", "State": "Texas", "Zip": 787234552, "Country": "United States", "Land_Value": 125800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.64736700099999, "SHAPE_Area": 2281.2853663599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360097.362099997699261, 259739.38289999961853 ], [ 360089.489600002765656, 259716.942600000649691 ], [ 360029.53660000115633, 259750.015799999237061 ], [ 360027.866400003433228, 259756.757100000977516 ], [ 360029.173299998044968, 259792.6537000015378 ], [ 360097.362099997699261, 259739.38289999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104012300", "MAP": "B9-384-T73", "PARCEL_NAM": "4C-1", "ACRE": "0.31", "LONGITUDE": -64.95268165, "LATITUDE": 18.36736128, "OBJECTID_1": 514, "PARCEL_NO_": "101104012300", "Tax_Legal_": "HULL BAY 4C-1 LT. NORTHSIDE", "Name": "FMP HOLDINGS, LLC", "Address": "10441 E Alder Creek Rd", "City": "Truckee", "State": "California", "Zip": 96161, "Country": "United States", "Land_Value": 42000, "Improved_V": 10200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.866189639, "SHAPE_Area": 1158.5173240500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356498.35080000013113, 259761.433600001037121 ], [ 356500.145099997520447, 259740.12779999896884 ], [ 356471.326399996876717, 259715.405099999159575 ], [ 356464.809399999678135, 259723.162200000137091 ], [ 356460.720299996435642, 259729.883699998259544 ], [ 356456.593400001525879, 259741.037900000810623 ], [ 356455.720499999821186, 259748.8412000015378 ], [ 356470.2162000015378, 259751.070799998939037 ], [ 356488.716399997472763, 259756.499600000679493 ], [ 356498.35080000013113, 259761.433600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91591814, "LATITUDE": 18.36701671, "OBJECTID_1": 1019, "PARCEL_NO_": "101304025500", "Tax_Legal_": "PETERBORG 14-6 12 GRT NORTHSIDE QTR", "Name": "ORSHAN, PETER and PATRICIA", "Address": "12 Soundview Rd", "City": "Glen Cove", "State": "New York", "Zip": 11542, "Country": "United States", "Land_Value": 137800, "Improved_V": 347000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.39513158199998, "SHAPE_Area": 3307.89448171 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360400.602099999785423, 259734.054400000721216 ], [ 360373.518399998545647, 259694.991500001400709 ], [ 360341.26410000026226, 259694.9386 ], [ 360343.265799999237061, 259743.928700000047684 ], [ 360344.475699998438358, 259791.223499998450279 ], [ 360374.602300003170967, 259757.061900001019239 ], [ 360400.602099999785423, 259734.054400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021200", "MAP": "F9-1408-T64", "PARCEL_NAM": "1-1", "ACRE": null, "LONGITUDE": -64.953427, "LATITUDE": 18.36734683, "OBJECTID_1": 580, "PARCEL_NO_": "101104021200", "Tax_Legal_": "HULL 1-1&4C-2 LT. NORTHSIDE", "Name": "QUERRARD B. EDITH", "Address": "PO Box 9517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.35127196, "SHAPE_Area": 2318.9458125599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356430.908299997448921, 259727.106600001454353 ], [ 356373.751800000667572, 259715.873100001364946 ], [ 356358.998999997973442, 259743.827799998223782 ], [ 356363.811700001358986, 259746.822500001639128 ], [ 356375.857900001108646, 259752.620600000023842 ], [ 356388.730099998414516, 259756.103399999439716 ], [ 356398.403999999165535, 259756.393699999898672 ], [ 356409.701399996876717, 259755.430700000375509 ], [ 356423.540899999439716, 259752.289700001478195 ], [ 356450.22919999808073, 259730.853300001472235 ], [ 356430.908299997448921, 259727.106600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91816233, "LATITUDE": 18.36726136, "OBJECTID_1": 996, "PARCEL_NO_": "101304023000", "Tax_Legal_": "11-1-13 PETERBORG NO. 12 GREAT NORTHSIDE QTR", "Name": "ANN MARIE DUMAIS LIVING TRUST", "Address": "372 Monomoscoy Road", "City": "Mashpee", "State": "Massachusetts", "Zip": 26494501, "Country": "United States", "Land_Value": 156100, "Improved_V": 268900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.26814320299999, "SHAPE_Area": 1932.0241261399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360135.285800002515316, 259736.526900000870228 ], [ 360097.362099997699261, 259739.38289999961853 ], [ 360106.015799999237061, 259764.785000000149012 ], [ 360113.895499996840954, 259786.381000000983477 ], [ 360155.960400000214577, 259770.682199999690056 ], [ 360142.548000000417233, 259735.953099999576807 ], [ 360135.285800002515316, 259736.526900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91723923000001, "LATITUDE": 18.36720975, "OBJECTID_1": 1002, "PARCEL_NO_": "101304023600", "Tax_Legal_": "PETERBORG 12-14 GR NORTHSIDE QTR", "Name": "REGINA AND KEITH HUSBANDS REVOCABLE TRUST", "Address": "5500 Monte Fino Ct", "City": "GREENACRES", "State": "Florida", "Zip": 33463, "Country": "United States", "Land_Value": 156100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.866259227, "SHAPE_Area": 2011.8510187700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360253.684199996292591, 259752.694699998944998 ], [ 360237.815099999308586, 259722.378400001674891 ], [ 360204.583700001239777, 259742.371399998664856 ], [ 360194.047700002789497, 259748.618000000715256 ], [ 360212.265600003302097, 259787.186099998652935 ], [ 360245.550999999046326, 259760.860800001770258 ], [ 360253.684199996292591, 259752.694699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101403010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91515269, "LATITUDE": 18.36727669, "OBJECTID_1": 1100, "PARCEL_NO_": "101403010200", "Tax_Legal_": "PETERBORG 14-5 GT. NORTHSIDE", "Name": "STOKES (TRUSTEE), FRANCES C.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 277500, "Improved_V": 649300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.67018990599999, "SHAPE_Area": 2828.0807994000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360482.649999998509884, 259757.735100001096725 ], [ 360415.144500002264977, 259730.795899998396635 ], [ 360413.519299998879433, 259732.260200001299381 ], [ 360410.909800000488758, 259754.614799998700619 ], [ 360406.7128000035882, 259774.0011 ], [ 360469.482900001108646, 259788.869199998676777 ], [ 360474.351300001144409, 259785.32039999961853 ], [ 360479.194600000977516, 259784.726799998432398 ], [ 360484.912500001490116, 259776.118700001388788 ], [ 360485.762000001966953, 259771.059399999678135 ], [ 360482.570900000631809, 259767.022599998861551 ], [ 360481.814900003373623, 259761.105700001120567 ], [ 360482.649999998509884, 259757.735100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95807285, "LATITUDE": 18.36656757, "OBJECTID_1": 526, "PARCEL_NO_": "101104013600", "Tax_Legal_": "BONNE RESOLUTION 17-6 LT. NORTHSIDE", "Name": "QUERRARD, PAULA E.", "Address": "PO Box 304101", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 101800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 459.31809538900001, "SHAPE_Area": 9072.4799279599993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355906.3074000030756, 259591.934999998658895 ], [ 355858.162399999797344, 259564.098799999803305 ], [ 355856.519199997186661, 259567.673900000751019 ], [ 355904.145300000905991, 259751.081900000572205 ], [ 355939.392099998891354, 259683.82039999961853 ], [ 355968.091399997472763, 259627.904399998486042 ], [ 355906.3074000030756, 259591.934999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304034900", "MAP": "A9-370-T89", "PARCEL_NAM": "11-73", "ACRE": ".619", "LONGITUDE": -64.92023967, "LATITUDE": 18.36727759, "OBJECTID_1": 1078, "PARCEL_NO_": "101304034900", "Tax_Legal_": "PETERBORG 11-73 GT.NORTHSIDE QTR.", "Name": "RANJIT NICHOLAS SINGH REVOCABLE TRUST", "Address": "11-73 Peterborg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 186500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.87306218000001, "SHAPE_Area": 1811.3323987199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359929.640100002288818, 259739.065699998289347 ], [ 359924.836400002241135, 259735.015599999576807 ], [ 359901.4425999969244, 259736.090700000524521 ], [ 359881.947200000286102, 259752.818599998950958 ], [ 359877.636699996888638, 259756.50789999961853 ], [ 359903.161200001835823, 259791.260600000619888 ], [ 359911.523599997162819, 259783.247099999338388 ], [ 359922.937899999320507, 259768.563900001347065 ], [ 359931.971000000834465, 259749.428399998694658 ], [ 359932.814999997615814, 259745.002300001680851 ], [ 359932.0320999994874, 259742.2516999989748 ], [ 359929.640100002288818, 259739.065699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304035900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92096824, "LATITUDE": 18.36718402, "OBJECTID_1": 1088, "PARCEL_NO_": "101304035900", "Tax_Legal_": "PETERBORG 11-62 GT.NORTHSIDE QTR.", "Name": "SHANNON, ROBERT S. & JOANNE M", "Address": "5025 Clear Valley Pl", "City": "Brandywine", "State": "Maryland", "Zip": 20613, "Country": "United States", "Land_Value": 183000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.028760745, "SHAPE_Area": 2646.2980837700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359839.423000000417233, 259727.772599998861551 ], [ 359818.602799996733665, 259710.714699998497963 ], [ 359793.281599998474121, 259748.715399999171495 ], [ 359836.55460000038147, 259780.52250000089407 ], [ 359842.234700001776218, 259776.347199998795986 ], [ 359869.85249999910593, 259752.7195999994874 ], [ 359839.423000000417233, 259727.772599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203016800", "MAP": "D9-5371-T92", "PARCEL_NAM": "14-7", "ACRE": ".702", "LONGITUDE": -64.94371724, "LATITUDE": 18.36721914, "OBJECTID_1": 767, "PARCEL_NO_": "101203016800", "Tax_Legal_": "ST PETER 14-7 #2 LITTLE NORTHSIDE QUARTER", "Name": "BLANCHARD, GERARD L. & BETTEBA R", "Address": "PO Box 304153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104000, "Improved_V": 184800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.00715970900001, "SHAPE_Area": 3174.1865540600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357465.513300001621246, 259723.119899999350309 ], [ 357462.33330000191927, 259708.780600000172853 ], [ 357447.297200001776218, 259709.556099999696016 ], [ 357391.466300003230572, 259712.435400001704693 ], [ 357388.101899996399879, 259723.119600001722574 ], [ 357385.641599997878075, 259727.954599998891354 ], [ 357386.386799998581409, 259735.137899998575449 ], [ 357390.340999998152256, 259744.24720000103116 ], [ 357397.504299998283386, 259755.282699998468161 ], [ 357399.8800999969244, 259760.368400000035763 ], [ 357454.835199996829033, 259746.041700001806021 ], [ 357468.433300003409386, 259742.89640000090003 ], [ 357466.998199999332428, 259738.119699999690056 ], [ 357465.513300001621246, 259723.119899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94214261, "LATITUDE": 18.36721576, "OBJECTID_1": 729, "PARCEL_NO_": "101203012800", "Tax_Legal_": "ST PETER 13-10 GR. NORTHSIDE", "Name": "QUERRARD, JOSEPH O", "Address": "7477 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.23267107199999, "SHAPE_Area": 1220.5569567800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357603.088799998164177, 259759.920699998736382 ], [ 357599.193899996578693, 259743.84569999948144 ], [ 357598.452299997210503, 259736.240200001746416 ], [ 357600.102700002491474, 259731.820799998939037 ], [ 357604.18639999628067, 259725.732500001788139 ], [ 357605.869199998676777, 259717.513599999248981 ], [ 357612.485100001096725, 259698.147100001573563 ], [ 357604.45440000295639, 259694.281700000166893 ], [ 357571.759499996900558, 259745.943199999630451 ], [ 357566.853299997746944, 259753.924600001424551 ], [ 357603.088799998164177, 259759.920699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303030300", "MAP": "A9-370-T89", "PARCEL_NAM": "11-11", "ACRE": ".553", "LONGITUDE": -64.92158543, "LATITUDE": 18.36711413, "OBJECTID_1": 936, "PARCEL_NO_": "101303030300", "Tax_Legal_": "11-11 ESTATE PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "FINN, MARK T. & JONATHAN F", "Address": "3500 Pacific Ave", "City": "Virginia Beach", "State": "Virginia", "Zip": 23451, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.618944884, "SHAPE_Area": 2307.2480793899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359797.493000000715256, 259727.640500001609325 ], [ 359763.805900000035763, 259706.466600000858307 ], [ 359728.778399996459484, 259747.976399999111891 ], [ 359774.53320000320673, 259772.415600001811981 ], [ 359781.13120000064373, 259755.15989999845624 ], [ 359783.582500003278255, 259751.380300000309944 ], [ 359786.877899996936321, 259743.174600001424551 ], [ 359789.331000000238419, 259739.183899998664856 ], [ 359797.493000000715256, 259727.640500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95392763, "LATITUDE": 18.36710704, "OBJECTID_1": 582, "PARCEL_NO_": "101104021400", "Tax_Legal_": "HULL 1 LT. NORTHSIDE", "Name": "QUERRARD, EDITH BRYAN", "Address": "PO Box 9517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70400, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.83509016799999, "SHAPE_Area": 2715.5758512900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356386.87219999730587, 259690.227000001817942 ], [ 356315.929300002753735, 259688.168699998408556 ], [ 356314.78490000218153, 259727.844999998807907 ], [ 356328.479599997401237, 259729.43470000103116 ], [ 356338.133799999952316, 259732.046799998730421 ], [ 356346.160999998450279, 259736.334399998188019 ], [ 356358.998999997973442, 259743.827799998223782 ], [ 356373.751800000667572, 259715.873100001364946 ], [ 356386.87219999730587, 259690.227000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104023000", "MAP": "D9-2397-T83", "PARCEL_NAM": "4D", "ACRE": "0.34", "LONGITUDE": -64.95251953, "LATITUDE": 18.36712302, "OBJECTID_1": 598, "PARCEL_NO_": "101104023000", "Tax_Legal_": "HULL 4D LT. NORTHSIDE", "Name": "LAPLACE, JULIE & OTHERS", "Address": "PO Box 9527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.02361084399999, "SHAPE_Area": 1053.80484555 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356502.211199998855591, 259739.292700000107288 ], [ 356514.330700002610683, 259684.092999998480082 ], [ 356484.313699997961521, 259705.378899998962879 ], [ 356480.264200001955032, 259707.456700000911951 ], [ 356471.326399996876717, 259715.405099999159575 ], [ 356500.145099997520447, 259740.12779999896884 ], [ 356502.211199998855591, 259739.292700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95179764, "LATITUDE": 18.36686964, "OBJECTID_1": 622, "PARCEL_NO_": "101104025500", "Tax_Legal_": "HULL REM OF 4AB LT. NORTHSIDE", "Name": "QUERRARD, GEORGE, PAUL AND NANETTE M. BRYAN & RUTH BERNIER", "Address": "#4AB ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 155900, "Improved_V": 15000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.67448800199998, "SHAPE_Area": 7207.0412477999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356550.312700003385544, 259719.851199999451637 ], [ 356618.984099999070168, 259704.581300001591444 ], [ 356625.569399997591972, 259688.803199999034405 ], [ 356628.852200001478195, 259682.074999999254942 ], [ 356630.495399996638298, 259678.499899998307228 ], [ 356633.009700000286102, 259667.332499999552965 ], [ 356634.008400000631809, 259644.753699999302626 ], [ 356630.891000002622604, 259632.0625 ], [ 356600.935199998319149, 259646.171700000762939 ], [ 356549.990099996328354, 259663.064399998635054 ], [ 356529.744099996984005, 259673.242300000041723 ], [ 356514.330700002610683, 259684.092999998480082 ], [ 356502.211199998855591, 259739.292700000107288 ], [ 356550.312700003385544, 259719.851199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91772717000001, "LATITUDE": 18.36708882, "OBJECTID_1": 997, "PARCEL_NO_": "101304023100", "Tax_Legal_": "11-1-12 PETERBORG NO 12 GREAT NORTHSIDE", "Name": "LEE ELLERMAN & OTHERS, NANCY", "Address": "PO Box 36", "City": "Orland Park", "State": "Illinois", "Zip": 60462, "Country": "United States", "Land_Value": 97000, "Improved_V": 106700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.547406266, "SHAPE_Area": 2008.5306103099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360204.583700001239777, 259742.371399998664856 ], [ 360185.514499999582767, 259709.073699999600649 ], [ 360142.548000000417233, 259735.953099999576807 ], [ 360155.960400000214577, 259770.682199999690056 ], [ 360194.047700002789497, 259748.618000000715256 ], [ 360204.583700001239777, 259742.371399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95165366000001, "LATITUDE": 18.3671948, "OBJECTID_1": 599, "PARCEL_NO_": "101104023100", "Tax_Legal_": "HULL 4ABC-2 LT. NORTHSIDE", "Name": "GREAUX, JOSEPH H", "Address": "Hull Bay #4", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44200, "Improved_V": 296400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.878466256, "SHAPE_Area": 1433.0589336600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356618.984099999070168, 259704.581300001591444 ], [ 356550.312700003385544, 259719.851199999451637 ], [ 356553.363499999046326, 259740.352299999445677 ], [ 356571.95719999819994, 259734.804900001734495 ], [ 356575.196900002658367, 259733.142700001597404 ], [ 356622.825000002980232, 259726.988600000739098 ], [ 356618.984099999070168, 259704.581300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004010200", "MAP": "A9-477-T95", "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.97272615, "LATITUDE": 18.36640264, "OBJECTID_1": 339, "PARCEL_NO_": "101004010200", "Tax_Legal_": "NELTJBERG 1/WESTRN PART LT. NORTHSIDE", "Name": "BOSCHULTE, ANTHONY E", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 318000, "Improved_V": 241500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 650.55460325900003, "SHAPE_Area": 24133.983719200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354405.586400002241135, 259518.331000000238419 ], [ 354339.91160000115633, 259503.419599998742342 ], [ 354335.34570000320673, 259515.53830000013113 ], [ 354258.690099999308586, 259720.087900001555681 ], [ 354355.319200001657009, 259698.9847999997437 ], [ 354373.836300000548363, 259694.940699998289347 ], [ 354459.164599999785423, 259638.716699998825788 ], [ 354405.586400002241135, 259518.331000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91649024, "LATITUDE": 18.36711301, "OBJECTID_1": 1007, "PARCEL_NO_": "101304024200", "Tax_Legal_": "PETERBORG 12-15 12 GREAT NORTHSIDE", "Name": "STJ HOLDINGS LLC", "Address": "911 Winding River Blvd", "City": "Maineville", "State": "Ohio", "Zip": 45039, "Country": "United States", "Land_Value": 143200, "Improved_V": 776700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.40736894200001, "SHAPE_Area": 2163.6745182700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360343.265799999237061, 259743.928700000047684 ], [ 360289.496500000357628, 259713.724399998784065 ], [ 360277.205799996852875, 259736.633000001311302 ], [ 360266.608599998056889, 259750.05629999935627 ], [ 360311.600299999117851, 259769.422899998724461 ], [ 360343.265799999237061, 259743.928700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94218269, "LATITUDE": 18.36682941, "OBJECTID_1": 730, "PARCEL_NO_": "101203012900", "Tax_Legal_": "13-8 ST. PETER No. 2 LITTLE NORTHSIDE QTR", "Name": "BLANCHARD, LOUIS A. & SHERRY QUERRARD", "Address": "P.O. BOX 4153", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 225100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.51015068200002, "SHAPE_Area": 3790.4339303400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357626.469300001859665, 259665.753199998289347 ], [ 357614.669600002467632, 259631.037300001829863 ], [ 357595.953500002622604, 259650.938000001013279 ], [ 357594.317500002682209, 259653.668800000101328 ], [ 357585.369000002741814, 259662.883699998259544 ], [ 357584.546499997377396, 259664.776799999177456 ], [ 357582.111400000751019, 259666.656700000166893 ], [ 357581.288900002837181, 259668.549800001084805 ], [ 357578.853799998760223, 259670.429699998348951 ], [ 357578.031300000846386, 259672.322799999266863 ], [ 357570.70610000193119, 259680.284400001168251 ], [ 357555.19200000166893, 259702.955600000917912 ], [ 357547.827299997210503, 259715.560899998992682 ], [ 357548.583200000226498, 259721.477699998766184 ], [ 357571.759499996900558, 259745.943199999630451 ], [ 357604.45440000295639, 259694.281700000166893 ], [ 357612.485100001096725, 259698.147100001573563 ], [ 357617.436300002038479, 259684.888799998909235 ], [ 357619.889399997889996, 259680.89809999987483 ], [ 357620.729900002479553, 259676.894200000911951 ], [ 357624.840499997138977, 259667.639699999243021 ], [ 357626.469300001859665, 259665.753199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9222797, "LATITUDE": 18.36706065, "OBJECTID_1": 1097, "PARCEL_NO_": "101304039900", "Tax_Legal_": "PETERBORG 11REM,11-76-1-11-76-8& 11-76 REM GT. NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 508300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.52923386200001, "SHAPE_Area": 2221.6316688500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359731.3412000015378, 259731.109900001436472 ], [ 359674.308799996972084, 259705.311900001019239 ], [ 359670.212499998509884, 259712.877700001001358 ], [ 359655.590999998152256, 259725.423700001090765 ], [ 359649.89469999819994, 259731.498799998313189 ], [ 359709.31360000371933, 259761.11600000038743 ], [ 359717.493600003421307, 259747.461899999529123 ], [ 359731.3412000015378, 259731.109900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95577668, "LATITUDE": 18.36703359, "OBJECTID_1": 501, "PARCEL_NO_": "101104011000", "Tax_Legal_": "HULL BAY 3-1&3-2 LT. NORTHSIDE", "Name": "QUERRARD, BRETT ADOLPH", "Address": "PO BOX 4101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 196400, "Improved_V": 361400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.62385186500001, "SHAPE_Area": 3849.0661507200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356112.004100002348423, 259678.056000001728535 ], [ 356111.982600003480911, 259680.588899999856949 ], [ 356112.740299999713898, 259686.294599998742342 ], [ 356114.241499997675419, 259699.39469999819994 ], [ 356114.203699998557568, 259703.827399998903275 ], [ 356114.090400002896786, 259717.125300001353025 ], [ 356114.022100001573563, 259725.146299999207258 ], [ 356164.812600001692772, 259726.406399998813868 ], [ 356164.771200001239777, 259731.261199999600649 ], [ 356170.444200001657009, 259727.93019999936223 ], [ 356176.106299996376038, 259725.865600001066923 ], [ 356187.410899996757507, 259724.058200001716614 ], [ 356199.538000002503395, 259720.357799999415874 ], [ 356209.256899997591972, 259715.371100001037121 ], [ 356214.940600000321865, 259710.773600000888109 ], [ 356193.159400001168251, 259711.861900001764297 ], [ 356187.53320000320673, 259709.704900000244379 ], [ 356181.123999997973442, 259704.7972999997437 ], [ 356178.742899999022484, 259700.344799999147654 ], [ 356177.185999996960163, 259693.788199998438358 ], [ 356177.292099997401237, 259681.334499999880791 ], [ 356179.028800003230572, 259666.783300001174212 ], [ 356112.004100002348423, 259678.056000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95316647, "LATITUDE": 18.36705245, "OBJECTID_1": 581, "PARCEL_NO_": "101104021300", "Tax_Legal_": "HULL 1-2 LT. NORTHSIDE", "Name": "LEWIS, WILLIAM G", "Address": "10011 Old Franklin Ave", "City": "Lanham", "State": "Maryland", "Zip": 20706, "Country": "United States", "Land_Value": 83800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.079010461, "SHAPE_Area": 3229.11963926 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356477.108999997377396, 259699.19819999858737 ], [ 356470.237700000405312, 259683.169599998742342 ], [ 356469.475400000810623, 259683.449099998921156 ], [ 356461.110500000417233, 259684.079599998891354 ], [ 356386.87219999730587, 259690.227000001817942 ], [ 356373.751800000667572, 259715.873100001364946 ], [ 356430.908299997448921, 259727.106600001454353 ], [ 356450.22919999808073, 259730.853300001472235 ], [ 356451.049900002777576, 259729.171300001442432 ], [ 356452.691299997270107, 259725.807300001382828 ], [ 356461.677599996328354, 259712.159699998795986 ], [ 356470.622599996626377, 259703.366999998688698 ], [ 356477.108999997377396, 259699.19819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91925302, "LATITUDE": 18.36692051, "OBJECTID_1": 1061, "PARCEL_NO_": "101304033000", "Tax_Legal_": "PETERBORG 11-55 GT.NORTHSIDE QTR.", "Name": "PANORAMIC HOLDINGS, LLC", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 159700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.20634408699999, "SHAPE_Area": 2487.58007649 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360041.400399997830391, 259682.562899999320507 ], [ 360030.180299997329712, 259674.449599999934435 ], [ 359972.381899997591972, 259738.571100000292063 ], [ 360012.564400002360344, 259754.520899999886751 ], [ 360019.774499997496605, 259760.068399999290705 ], [ 360022.3462999984622, 259742.146499998867512 ], [ 360024.856899999082088, 259731.401299998164177 ], [ 360041.400399997830391, 259682.562899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95439826, "LATITUDE": 18.36697734, "OBJECTID_1": 583, "PARCEL_NO_": "101104021500", "Tax_Legal_": "1-5 REM ESTATE HULL NO.4B LITTLE NORTHSIDE QTR", "Name": "ISIDORE J. & CARMEN T. QUERRARD TRUST", "Address": "7355 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 100800, "Improved_V": 91600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.53620296099999, "SHAPE_Area": 1877.8121212000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356315.929300002753735, 259688.168699998408556 ], [ 356316.891999997198582, 259669.811500001698732 ], [ 356273.286399997770786, 259677.054000001400709 ], [ 356267.536100000143051, 259689.461399998515844 ], [ 356301.090199999511242, 259726.255199998617172 ], [ 356314.78490000218153, 259727.844999998807907 ], [ 356315.929300002753735, 259688.168699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95474564, "LATITUDE": 18.366837, "OBJECTID_1": 584, "PARCEL_NO_": "101104021600", "Tax_Legal_": "1-6 ESTATE HULL 4b LITTLE NORTHSIDE QTR.", "Name": "BRYAN, LAWRENCE J, MAUREEN E & JESSICA R.", "Address": "7640 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 127100, "Improved_V": 155400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.12375833800002, "SHAPE_Area": 2825.91571901 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356237.24040000140667, 259643.314399998635054 ], [ 356239.218199998140335, 259704.314899999648333 ], [ 356241.601099997758865, 259704.870099999010563 ], [ 356277.753899998962879, 259720.575800001621246 ], [ 356301.090199999511242, 259726.255199998617172 ], [ 356267.536100000143051, 259689.461399998515844 ], [ 356273.286399997770786, 259677.054000001400709 ], [ 356285.654399998486042, 259645.068999998271465 ], [ 356237.24040000140667, 259643.314399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304034800", "MAP": "A9-370-T89", "PARCEL_NAM": "11-72", "ACRE": ".615", "LONGITUDE": -64.91984663, "LATITUDE": 18.36700488, "OBJECTID_1": 1077, "PARCEL_NO_": "101304034800", "Tax_Legal_": "PETERBORG ESTATE 11-72 GT.NORTHSIDE QTR.", "Name": "VIEW CREST HOLDINGS LLC", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 186500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.71034769799999, "SHAPE_Area": 1616.97197594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359936.776500001549721, 259753.267400000244379 ], [ 359962.560500003397465, 259755.589299999177456 ], [ 359967.793999999761581, 259709.191599998623133 ], [ 359967.826300002634525, 259705.392200000584126 ], [ 359966.231700003147125, 259703.268199998885393 ], [ 359963.022600002586842, 259701.342099998146296 ], [ 359958.181100003421307, 259701.724599998444319 ], [ 359918.477600000798702, 259724.197799999266863 ], [ 359911.177699998021126, 259729.204300001263618 ], [ 359925.691299997270107, 259729.323100000619888 ], [ 359929.710299998521805, 259730.833599999547005 ], [ 359934.513999998569489, 259734.883699998259544 ], [ 359938.482600003480911, 259742.304499998688698 ], [ 359936.776500001549721, 259753.267400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304036000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92051985000001, "LATITUDE": 18.36692364, "OBJECTID_1": 1089, "PARCEL_NO_": "101304036000", "Tax_Legal_": "PETERBORG 11-61 GREAT NORTHSIDE", "Name": "VILLA CELEBRATION, LLC", "Address": "20 N MARTINGALE rOAD", "City": "Schaumburg", "State": "Illinois", "Zip": 601732423, "Country": "United States", "Land_Value": 156100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.24121978, "SHAPE_Area": 2447.0730056000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359909.638800002634525, 259720.536899998784065 ], [ 359893.049699999392033, 259680.08219999819994 ], [ 359839.423000000417233, 259727.772599998861551 ], [ 359869.85249999910593, 259752.7195999994874 ], [ 359890.9712999984622, 259734.738400001078844 ], [ 359892.589299999177456, 259734.118400000035763 ], [ 359893.40820000320673, 259732.647399999201298 ], [ 359909.638800002634525, 259720.536899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101403010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91502, "LATITUDE": 18.36695592, "OBJECTID_1": 1101, "PARCEL_NO_": "101403010300", "Tax_Legal_": "PETERBORG ESTATE 14-8 No.12 GREAT NORTHSIDE QTR", "Name": "ROBERT SCHMIDT DEVELOPMENT CORP", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 245900, "Improved_V": 859500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.32965300800001, "SHAPE_Area": 2694.9817847200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360498.228900000452995, 259727.46510000154376 ], [ 360442.065700002014637, 259694.285900000482798 ], [ 360427.359700001776218, 259716.752599999308586 ], [ 360415.144500002264977, 259730.795899998396635 ], [ 360482.649999998509884, 259757.735100001096725 ], [ 360483.495899997651577, 259753.097899999469519 ], [ 360490.000299997627735, 259746.818399999290705 ], [ 360497.38120000064373, 259732.313299998641014 ], [ 360498.228900000452995, 259727.46510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103034600", "MAP": "D9-9130-T016", "PARCEL_NAM": "4-2-A", "ACRE": "0.74", "LONGITUDE": -64.9656715, "LATITUDE": 18.36702609, "OBJECTID_1": 482, "PARCEL_NO_": "101103034600", "Tax_Legal_": "NELTJEBERG #4-2 E.PART LT.NORTHSIDE QTR.", "Name": "ESTATE OF GEORGE MOOLENAAR, SR", "Address": "PO Box 303441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 132600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.387395736, "SHAPE_Area": 2441.8766175599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355148.745099999010563, 259688.394000001251698 ], [ 355106.426100000739098, 259661.583200000226498 ], [ 355093.566799998283386, 259677.319899998605251 ], [ 355087.071299999952316, 259682.544100001454353 ], [ 355068.450599998235703, 259691.257599998265505 ], [ 355060.333499997854233, 259697.524000000208616 ], [ 355061.109300002455711, 259701.118900001049042 ], [ 355074.751800000667572, 259708.829900000244379 ], [ 355086.828500002622604, 259711.039700001478195 ], [ 355114.248599998652935, 259710.630899999290705 ], [ 355125.590899996459484, 259704.390900000929832 ], [ 355128.80179999768734, 259706.105900000780821 ], [ 355131.22070000320673, 259706.125700000673532 ], [ 355136.090899996459484, 259702.365899998694658 ], [ 355136.11429999768734, 259699.621899999678135 ], [ 355144.206200003623962, 259696.310600001364946 ], [ 355148.745099999010563, 259688.394000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91687612, "LATITUDE": 18.36685382, "OBJECTID_1": 1001, "PARCEL_NO_": "101304023500", "Tax_Legal_": "PETERBORG 12-12 GREAT NORTHSIDE QTR", "Name": "REGINA AND KEITH HUSBANDS REVOCABLE TRUST", "Address": "5500 Monte Fino Ct", "City": "GREENACRES", "State": "Florida", "Zip": 33463, "Country": "United States", "Land_Value": 136000, "Improved_V": 528000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.94823792700001, "SHAPE_Area": 1901.1328818 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360259.907399997115135, 259684.773499999195337 ], [ 360237.815099999308586, 259722.378400001674891 ], [ 360253.684199996292591, 259752.694699998944998 ], [ 360265.075099997222424, 259740.75560000166297 ], [ 360271.604699999094009, 259731.520899999886751 ], [ 360285.538599997758865, 259705.037200000137091 ], [ 360287.1925999969244, 259700.195599999278784 ], [ 360287.278899997472763, 259690.063799999654293 ], [ 360285.677100002765656, 259688.784099999815226 ], [ 360259.907399997115135, 259684.773499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95065397, "LATITUDE": 18.3667196, "OBJECTID_1": 601, "PARCEL_NO_": "101104023300", "Tax_Legal_": "HULL 12A LT. NORTHSIDE", "Name": "LAWRENCE AND LINDA BENJAMIN REVOCABLE TRUST", "Address": "PO Box 8738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 343400, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 412.40921289, "SHAPE_Area": 5741.4335055600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356740.693400003015995, 259616.073699999600649 ], [ 356721.045199997723103, 259650.743400000035763 ], [ 356690.410700000822544, 259649.859400000423193 ], [ 356642.039099998772144, 259648.619100000709295 ], [ 356640.239500001072884, 259670.558100000023842 ], [ 356637.727099999785423, 259681.514400001615286 ], [ 356637.67849999666214, 259687.213500000536442 ], [ 356646.465199999511242, 259696.995700001716614 ], [ 356656.085199996829033, 259703.618400000035763 ], [ 356663.259300000965595, 259713.38740000128746 ], [ 356679.466499999165535, 259704.020799998193979 ], [ 356683.336199998855591, 259723.050900001078844 ], [ 356715.919600002467632, 259684.476399999111891 ], [ 356749.082699999213219, 259672.504399999976158 ], [ 356743.796400003135204, 259630.453499998897314 ], [ 356756.806999996304512, 259617.683299999684095 ], [ 356748.873400002717972, 259602.419599998742342 ], [ 356743.146499998867512, 259612.083000000566244 ], [ 356740.693400003015995, 259616.073699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304032900", "MAP": "A9-370-T89", "PARCEL_NAM": "11-39", "ACRE": ".523", "LONGITUDE": -64.91883867, "LATITUDE": 18.36690057, "OBJECTID_1": 1060, "PARCEL_NO_": "101304032900", "Tax_Legal_": "11-39 ESTATE PETERBORG NO 12 GREAT NORTHSIDE QTR", "Name": "PERRELL, CHARLOTTE K. & JAMES S", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168600, "Improved_V": 275400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.50197102499999, "SHAPE_Area": 1623.3533078299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360029.53660000115633, 259750.015799999237061 ], [ 360089.489600002765656, 259716.942600000649691 ], [ 360047.813100002706051, 259687.04839999973774 ], [ 360035.410899996757507, 259723.0439000017941 ], [ 360035.371399998664856, 259727.687600001692772 ], [ 360039.390299998223782, 259729.19819999858737 ], [ 360037.736400000751019, 259734.039799999445677 ], [ 360034.516500003635883, 259733.380199998617172 ], [ 360032.086800001561642, 259734.626800000667572 ], [ 360029.53660000115633, 259750.015799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91631668, "LATITUDE": 18.36677064, "OBJECTID_1": 1000, "PARCEL_NO_": "101304023400", "Tax_Legal_": "12-11 PETERBORG NO 12 GREAT NORTHSIDE QTR", "Name": "ARAGONA, JOEL A.", "Address": "250 W 57th St", "City": "New York", "State": "New York", "Zip": 10107, "Country": "United States", "Land_Value": 156100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.23814532099999, "SHAPE_Area": 2374.3925175200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360341.26410000026226, 259694.9386 ], [ 360340.704099997878075, 259666.014199998229742 ], [ 360325.279899999499321, 259678.131400000303984 ], [ 360309.087099999189377, 259685.809300001710653 ], [ 360295.342000000178814, 259690.129799999296665 ], [ 360293.598099999129772, 259705.525299999862909 ], [ 360289.496500000357628, 259713.724399998784065 ], [ 360343.265799999237061, 259743.928700000047684 ], [ 360341.26410000026226, 259694.9386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91726604, "LATITUDE": 18.36680021, "OBJECTID_1": 999, "PARCEL_NO_": "101304023300", "Tax_Legal_": "PETERBORG 12-13 GREAT NORTHSIDE QTR", "Name": "REGINA AND KEITH HUSBANDS REVOCABLE TRUST", "Address": "5500 Monte Fino Ct", "City": "GREENACRES", "State": "Florida", "Zip": 33463, "Country": "United States", "Land_Value": 156100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.112607024, "SHAPE_Area": 2410.2172869299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360230.111599996685982, 259680.096700001507998 ], [ 360185.514499999582767, 259709.073699999600649 ], [ 360204.583700001239777, 259742.371399998664856 ], [ 360237.815099999308586, 259722.378400001674891 ], [ 360259.907399997115135, 259684.773499999195337 ], [ 360230.111599996685982, 259680.096700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91836699, "LATITUDE": 18.36674983, "OBJECTID_1": 995, "PARCEL_NO_": "101304022900", "Tax_Legal_": "PETERBORG 11-1-9 12 GREAT NORTHSIDE", "Name": "Horton, Don G. & Charles E. Koncak", "Address": "5907 Bonnard Dr", "City": "Dallas", "State": "Texas", "Zip": 75230, "Country": "United States", "Land_Value": 156100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.45297597699999, "SHAPE_Area": 2909.18210271 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360126.163900002837181, 259671.435499999672174 ], [ 360072.171499997377396, 259667.405000001192093 ], [ 360089.489600002765656, 259716.942600000649691 ], [ 360097.362099997699261, 259739.38289999961853 ], [ 360135.285800002515316, 259736.526900000870228 ], [ 360131.315399996936321, 259729.317299999296665 ], [ 360125.84740000218153, 259708.585299998521805 ], [ 360124.479299999773502, 259679.86540000140667 ], [ 360126.163900002837181, 259671.435499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104010400", "MAP": "D9-5886-T95", "PARCEL_NAM": "17-5-3", "ACRE": "1.08", "LONGITUDE": -64.95721199, "LATITUDE": 18.36680995, "OBJECTID_1": 496, "PARCEL_NO_": "101104010400", "Tax_Legal_": "BONNE RESOLUTION 17-5-3 LT. NORTHSIDE", "Name": "OVERBEEK, BERTRAND & DONNA", "Address": "PO Box 308234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 147400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 448.068330656, "SHAPE_Area": 5032.4263046899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356056.95380000025034, 259712.035700000822544 ], [ 356114.241499997675419, 259699.39469999819994 ], [ 356104.599899999797344, 259695.304999999701977 ], [ 356094.960100002586842, 259691.004299998283386 ], [ 356086.043799996376038, 259696.209800001233816 ], [ 356061.788000002503395, 259704.031700000166893 ], [ 356033.6587999984622, 259693.035700000822544 ], [ 356036.316899999976158, 259664.98200000077486 ], [ 355989.755699999630451, 259640.536200001835823 ], [ 355968.091399997472763, 259627.904399998486042 ], [ 355939.392099998891354, 259683.82039999961853 ], [ 355961.011500000953674, 259701.729200001806021 ], [ 355987.760099999606609, 259685.482799999415874 ], [ 356012.653300002217293, 259697.718899998813868 ], [ 356042.405900001525879, 259707.461599998176098 ], [ 356047.920400001108646, 259709.19539999961853 ], [ 356056.95380000025034, 259712.035700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91793208, "LATITUDE": 18.36669147, "OBJECTID_1": 994, "PARCEL_NO_": "101304022800", "Tax_Legal_": "PETERBORG 11-1-10 GT.NORTHSIDE QTR.", "Name": "LIVINGSTON, MARK D. & KIRSTYN A.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107700, "Improved_V": 297800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.81624201400001, "SHAPE_Area": 2454.3913033600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360142.548000000417233, 259735.953099999576807 ], [ 360185.514499999582767, 259709.073699999600649 ], [ 360167.12219999730587, 259690.980200000107288 ], [ 360146.539300002157688, 259646.059900000691414 ], [ 360137.554700002074242, 259659.496399998664856 ], [ 360135.897200003266335, 259664.760099999606609 ], [ 360132.6216000020504, 259670.643899999558926 ], [ 360130.935199998319149, 259679.285000000149012 ], [ 360132.33389999717474, 259704.416600000113249 ], [ 360137.79280000180006, 259726.203899998217821 ], [ 360139.391099996864796, 259727.905699998140335 ], [ 360141.811800003051758, 259727.714400000870228 ], [ 360142.58219999819994, 259731.942600000649691 ], [ 360142.548000000417233, 259735.953099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92207274, "LATITUDE": 18.36680336, "OBJECTID_1": 1097, "PARCEL_NO_": "101304039900", "Tax_Legal_": "PETERBORG 11REM,11-76-1-11-76-8& 11-76 REM GT. NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 508300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.660665556, "SHAPE_Area": 2180.2701231599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359754.151699997484684, 259703.854400001466274 ], [ 359694.704000003635883, 259677.614500001072884 ], [ 359675.955600000917912, 259701.314599998295307 ], [ 359674.308799996972084, 259705.311900001019239 ], [ 359731.3412000015378, 259731.109900001436472 ], [ 359754.151699997484684, 259703.854400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021700", "MAP": null, "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.95519997, "LATITUDE": 18.36663325, "OBJECTID_1": 585, "PARCEL_NO_": "101104021700", "Tax_Legal_": "3-4 HULL 4B LITTLE NORTHSDE QUARTER", "Name": "JERRY DEAN QUERRARD", "Address": "7585 Estate Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 157700, "Improved_V": 56100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.136748383, "SHAPE_Area": 4557.1427875600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356235.488099999725819, 259610.211899999529123 ], [ 356188.424300000071526, 259609.915399998426437 ], [ 356188.812399998307228, 259654.197700001299381 ], [ 356186.143500000238419, 259683.517900001257658 ], [ 356186.071599997580051, 259691.961100000888109 ], [ 356187.632100000977516, 259698.095499999821186 ], [ 356191.631300002336502, 259701.927999999374151 ], [ 356217.438699997961521, 259701.505899999290705 ], [ 356230.334299996495247, 259702.244699999690056 ], [ 356239.218199998140335, 259704.314899999648333 ], [ 356237.24040000140667, 259643.314399998635054 ], [ 356236.635600000619888, 259635.625100001692772 ], [ 356235.488099999725819, 259610.211899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103024500", "MAP": "G9-1961-T72", "PARCEL_NAM": "18B", "ACRE": ".48", "LONGITUDE": -64.9608343, "LATITUDE": 18.36662741, "OBJECTID_1": 436, "PARCEL_NO_": "101103024500", "Tax_Legal_": "DOROTHEA REM 18B LT. NORTHSIDE", "Name": "ZIEL, THOMAS & EDWARD F. , JR. & LUIG", "Address": "408 Madison St", "City": "Centralia", "State": "Washington", "Zip": 98531, "Country": "United States", "Land_Value": 56900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.20416511400001, "SHAPE_Area": 2846.1235484200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355653.690700002014637, 259618.153999999165535 ], [ 355637.195000000298023, 259602.841299999505281 ], [ 355590.099799998104572, 259656.564800001680851 ], [ 355581.724399998784065, 259666.215599998831749 ], [ 355603.992399998009205, 259697.704700000584126 ], [ 355609.502400003373623, 259693.785999998450279 ], [ 355618.440200001001358, 259685.837600000202656 ], [ 355622.525700002908707, 259679.538199998438358 ], [ 355624.147299997508526, 259678.496100001037121 ], [ 355626.612999998033047, 259673.027800001204014 ], [ 355630.727300003170967, 259663.351199999451637 ], [ 355634.060400001704693, 259650.712799999862909 ], [ 355636.527900002896786, 259645.033500000834465 ], [ 355642.247599996626377, 259636.214400000870228 ], [ 355643.894400000572205, 259632.217099998146296 ], [ 355653.690700002014637, 259618.153999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304036500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92071448, "LATITUDE": 18.36665712, "OBJECTID_1": 1093, "PARCEL_NO_": "101304036500", "Tax_Legal_": "11-60 ESTATE PETERBORG NO.12 GREAT NORTHSIDE QTR.", "Name": "FREEMAN, KIT ALIA & NAJOCKI BOYD", "Address": "PO BOX 502934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 152700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.279648931, "SHAPE_Area": 2576.9390234900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359888.310699999332428, 259668.433299999684095 ], [ 359873.971500001847744, 259647.839800000190735 ], [ 359833.288999997079372, 259690.570000000298023 ], [ 359818.602799996733665, 259710.714699998497963 ], [ 359839.423000000417233, 259727.772599998861551 ], [ 359893.049699999392033, 259680.08219999819994 ], [ 359888.310699999332428, 259668.433299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033500", "MAP": "A9-394A-T91", "PARCEL_NAM": "27", "ACRE": ".843", "LONGITUDE": -64.96813319, "LATITUDE": 18.36673438, "OBJECTID_1": 471, "PARCEL_NO_": "101103033500", "Tax_Legal_": "NELTJEBERG 27 EASTERN PART LT. NORTHSIDE", "Name": "THE SOMERSET TRUST", "Address": "3563 Trevis Way", "City": "Carmel", "State": "California", "Zip": 93923, "Country": "United States", "Land_Value": 81900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.927464555, "SHAPE_Area": 3359.1270276800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354882.688699997961521, 259631.475400000810623 ], [ 354869.76070000231266, 259634.535999998450279 ], [ 354856.044399999082088, 259635.479200001806021 ], [ 354847.16780000180006, 259636.250900000333786 ], [ 354847.200199998915195, 259632.451499998569489 ], [ 354806.844999998807907, 259636.765299998223782 ], [ 354810.662600003182888, 259661.916700001806021 ], [ 354816.100000001490116, 259686.236900001764297 ], [ 354884.746200002729893, 259673.922100000083447 ], [ 354882.688699997961521, 259631.475400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104022000", "MAP": "G9-2337-T74", "PARCEL_NAM": "5-C", "ACRE": null, "LONGITUDE": -64.95309554000001, "LATITUDE": 18.3660842, "OBJECTID_1": 588, "PARCEL_NO_": "101104022000", "Tax_Legal_": "HULL 5C LT. NORTHSIDE", "Name": "BRYAN, EDITH", "Address": "PO Box 9517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 210900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 409.56366925700002, "SHAPE_Area": 4646.1358223799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356479.212600000202656, 259641.586899999529123 ], [ 356469.686499997973442, 259564.590900000184774 ], [ 356335.44650000333786, 259576.440400000661612 ], [ 356337.873099997639656, 259583.429699998348951 ], [ 356339.699600003659725, 259588.690400000661612 ], [ 356378.326300002634525, 259582.137699998915195 ], [ 356409.809000000357628, 259576.796999998390675 ], [ 356432.614200003445148, 259636.871599998325109 ], [ 356447.361000001430511, 259638.356100000441074 ], [ 356459.531900003552437, 259640.075899999588728 ], [ 356469.850599996745586, 259641.134300000965595 ], [ 356479.400100000202656, 259643.201999999582767 ], [ 356479.212600000202656, 259641.586899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101403010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91484989, "LATITUDE": 18.36662139, "OBJECTID_1": 1102, "PARCEL_NO_": "101403010400", "Tax_Legal_": "PETERBORG ESTATE 14-11 No.12 GREAT NORTHSIDE QTR.", "Name": "BRIN NILSEN FAMILY TRUST", "Address": "PO Box 8623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 240200, "Improved_V": 409400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.73065093599999, "SHAPE_Area": 2452.6021747300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360514.675200000405312, 259690.025100000202656 ], [ 360463.366099998354912, 259654.985800001770258 ], [ 360451.059199996292591, 259679.794100001454353 ], [ 360449.419600002467632, 259682.94709999859333 ], [ 360442.065700002014637, 259694.285900000482798 ], [ 360498.228900000452995, 259727.46510000154376 ], [ 360499.173699997365475, 259711.218600001186132 ], [ 360498.432099997997284, 259703.613200001418591 ], [ 360499.27080000191927, 259699.82039999961853 ], [ 360504.968900002539158, 259693.534200001507998 ], [ 360514.675200000405312, 259690.025100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95650782, "LATITUDE": 18.36670462, "OBJECTID_1": 540, "PARCEL_NO_": "101104015400", "Tax_Legal_": "BONNE RESOLUTION 16E-1 LT. NORTHSIDE", "Name": "OLIVE, VIRGINA & S", "Address": "PO Box 302775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 183900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.03082202, "SHAPE_Area": 2109.8037638300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356097.7871999964118, 259643.109200000762939 ], [ 356039.6824000030756, 259648.544199999421835 ], [ 356036.316899999976158, 259664.98200000077486 ], [ 356091.749200001358986, 259689.289200000464916 ], [ 356094.960100002586842, 259691.004299998283386 ], [ 356099.013199999928474, 259688.504299998283386 ], [ 356102.276199996471405, 259684.098099999129772 ], [ 356103.15990000218153, 259675.028299998492002 ], [ 356097.7871999964118, 259643.109200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95246235, "LATITUDE": 18.36660981, "OBJECTID_1": 619, "PARCEL_NO_": "101104025200", "Tax_Legal_": "HULL 5I-1 LITTLE NORTHSIDE", "Name": "BRYAN, DAVID N.", "Address": "1-3 HULL BAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.7351517, "SHAPE_Area": 2023.08251825 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356521.228900000452995, 259631.587200000882149 ], [ 356520.478399999439716, 259625.037200000137091 ], [ 356479.212600000202656, 259641.586899999529123 ], [ 356485.222499996423721, 259693.353999998420477 ], [ 356521.729599997401237, 259667.477200001478195 ], [ 356527.400700002908707, 259664.357200000435114 ], [ 356521.228900000452995, 259631.587200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304036100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92014159, "LATITUDE": 18.3665599, "OBJECTID_1": 1090, "PARCEL_NO_": "101304036100", "Tax_Legal_": "PETERBORG 11-58 GREAT NORTHSIDE", "Name": "VILLA CELEBRATION LLC", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 143200, "Improved_V": 620800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.14830024700001, "SHAPE_Area": 2658.0442173800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359939.619800001382828, 259703.472600001841784 ], [ 359934.567199997603893, 259633.9814000017941 ], [ 359888.310699999332428, 259668.433299999684095 ], [ 359893.049699999392033, 259680.08219999819994 ], [ 359909.638800002634525, 259720.536899998784065 ], [ 359939.619800001382828, 259703.472600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95387875, "LATITUDE": 18.36672271, "OBJECTID_1": 591, "PARCEL_NO_": "101104022300", "Tax_Legal_": "HULL 1-4 LT. NORTHSIDE", "Name": "LEDEE, LOUIS & ESTHER", "Address": "PO Box 7161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92900, "Improved_V": 148300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.49968213700001, "SHAPE_Area": 2988.9255161699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356386.87219999730587, 259690.227000001817942 ], [ 356387.248000003397465, 259646.1114999987185 ], [ 356343.696299999952316, 259647.021699998527765 ], [ 356317.899700000882149, 259646.177200000733137 ], [ 356316.891999997198582, 259669.811500001698732 ], [ 356315.929300002753735, 259688.168699998408556 ], [ 356386.87219999730587, 259690.227000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95320185, "LATITUDE": 18.36670243, "OBJECTID_1": 592, "PARCEL_NO_": "101104022400", "Tax_Legal_": "HULL 1-3 LT. NORTHSIDE", "Name": "BRYAN, DAVID N. & ROBERT J. BRYAN", "Address": "1-3 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90600, "Improved_V": 163800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.10244479599999, "SHAPE_Area": 3226.6609199899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356470.237700000405312, 259683.169599998742342 ], [ 356453.975599996745586, 259645.235300000756979 ], [ 356446.229999996721745, 259644.565000001341105 ], [ 356439.555799998342991, 259643.780099999159575 ], [ 356424.368900001049042, 259642.826799999922514 ], [ 356417.112099997699261, 259642.767400000244379 ], [ 356387.248000003397465, 259646.1114999987185 ], [ 356386.87219999730587, 259690.227000001817942 ], [ 356461.110500000417233, 259684.079599998891354 ], [ 356469.475400000810623, 259683.449099998921156 ], [ 356470.237700000405312, 259683.169599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94647955000001, "LATITUDE": 18.36648809, "OBJECTID_1": 745, "PARCEL_NO_": "101203014500", "Tax_Legal_": "17-4-B ESTATE ST.PETER LT. NORTHSIDE", "Name": "BRYAN, FRANCIS & VIVIAN", "Address": "PO Box 12165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 149700, "Improved_V": 358200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.6746686, "SHAPE_Area": 4044.7234118299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357170.807499997317791, 259673.211800001561642 ], [ 357150.373800002038479, 259610.771899998188019 ], [ 357098.76799999922514, 259610.560699999332428 ], [ 357104.871500000357628, 259651.351700000464916 ], [ 357108.892300002276897, 259652.651099998503923 ], [ 357113.696000002324581, 259656.701200000941753 ], [ 357116.087899997830391, 259659.887200001627207 ], [ 357123.895700000226498, 259689.926399998366833 ], [ 357127.090400002896786, 259693.54109999909997 ], [ 357134.325599998235703, 259696.133499998599291 ], [ 357170.807499997317791, 259673.211800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902030300", "MAP": "D9-3276-T85", "PARCEL_NAM": "11-4", "ACRE": "5.96", "LONGITUDE": -64.91897431, "LATITUDE": 18.36565765, "OBJECTID_1": 4713, "PARCEL_NO_": "102902030300", "Tax_Legal_": "11-2,3,4&13 ESTATE PETERBORG GT. NORTHSIDE", "Name": "THE NATURE CONSERVANCY", "Address": "3052 Estate Little Princess", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 1274100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 849.46711806200005, "SHAPE_Area": 20353.4004504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360108.426100000739098, 259576.509300000965595 ], [ 360098.102300003170967, 259557.848499998450279 ], [ 360088.566799998283386, 259541.30519999936223 ], [ 360080.534199997782707, 259537.65089999884367 ], [ 360102.709200002253056, 259490.336300000548363 ], [ 360105.981200002133846, 259484.874699998646975 ], [ 360110.980899997055531, 259465.917199999094009 ], [ 360112.699699997901917, 259453.476700000464916 ], [ 360111.121200002729893, 259449.453000001609325 ], [ 360107.931900002062321, 259445.204999998211861 ], [ 360100.716499999165535, 259440.290800001472235 ], [ 360050.82039999961853, 259428.694499999284744 ], [ 360048.392499998211861, 259429.730099998414516 ], [ 360048.367299996316433, 259432.685199998319149 ], [ 360067.596500001847744, 259447.196899998933077 ], [ 360075.578699998557568, 259456.761500000953674 ], [ 360081.13120000064373, 259467.572700001299381 ], [ 360080.247599996626377, 259476.642499998211861 ], [ 360076.982799999415874, 259481.259799998253584 ], [ 360072.119699999690056, 259484.175299998372793 ], [ 360068.081000000238419, 259484.986699998378754 ], [ 360062.442199997603893, 259484.307199999690056 ], [ 360059.231299996376038, 259482.592199999839067 ], [ 360053.628499999642372, 259477.691199999302626 ], [ 360051.196900002658367, 259479.148899998515844 ], [ 360052.795199997723103, 259480.85080000013113 ], [ 360055.957500003278255, 259488.264899998903275 ], [ 360055.064900003373623, 259498.390099998563528 ], [ 360052.584799997508526, 259505.546999998390675 ], [ 360046.065999999642372, 259513.5152000002563 ], [ 360017.667000003159046, 259534.181000001728535 ], [ 360003.85360000282526, 259546.52250000089407 ], [ 359979.444799996912479, 259572.076099999248981 ], [ 359964.837700001895428, 259582.933400001376867 ], [ 359947.820600003004074, 259592.715599998831749 ], [ 359927.590899996459484, 259600.993700001388788 ], [ 359954.041000001132488, 259619.786400001496077 ], [ 359990.107500001788139, 259645.624000001698732 ], [ 360030.180299997329712, 259674.449599999934435 ], [ 360041.400399997830391, 259682.562899999320507 ], [ 360047.813100002706051, 259687.04839999973774 ], [ 360089.489600002765656, 259716.942600000649691 ], [ 360072.171499997377396, 259667.405000001192093 ], [ 360066.663999997079372, 259651.316799998283386 ], [ 360091.230999998748302, 259607.188200000673532 ], [ 360108.426100000739098, 259576.509300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101103010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9618297, "LATITUDE": 18.36656805, "OBJECTID_1": 403, "PARCEL_NO_": "101103010600", "Tax_Legal_": "DOROTHEA 17C LT. NORTHSIDE QTR.", "Name": "SPREAD EAGLE PARADISE HOLDING", "Address": "PO Box 6880", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 227800, "Improved_V": 206600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.55026307399999, "SHAPE_Area": 507.98911229100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355494.1266999989748, 259662.582299999892712 ], [ 355501.055200003087521, 259669.592999998480082 ], [ 355522.872000001370907, 259640.092500001192093 ], [ 355524.527800001204014, 259635.039799999445677 ], [ 355523.145400002598763, 259608.008499998599291 ], [ 355514.038599997758865, 259635.798300001770258 ], [ 355496.0929000005126, 259659.927200000733137 ], [ 355494.1266999989748, 259662.582299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95583999, "LATITUDE": 18.36665852, "OBJECTID_1": 494, "PARCEL_NO_": "101104010200", "Tax_Legal_": "BONNE RSOLUTION 17 No.5 LT. NORTHSIDE", "Name": "QUERRARD, SHAWN C.", "Address": "PO BOX 4101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.58144190900001, "SHAPE_Area": 1827.4327964500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356180.059900000691414, 259640.405000001192093 ], [ 356109.000100001692772, 259652.066899999976158 ], [ 356112.004100002348423, 259678.056000001728535 ], [ 356179.028800003230572, 259666.783300001174212 ], [ 356179.883599996566772, 259661.090799998492002 ], [ 356180.059900000691414, 259640.405000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104025700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95439871000001, "LATITUDE": 18.3666563, "OBJECTID_1": 624, "PARCEL_NO_": "101104025700", "Tax_Legal_": "HULL 1-5A LT.NORTHSIDE QTR.", "Name": "BRYAN, JOSEPH F. & NANCY M.", "Address": "PO Box 10156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42600, "Improved_V": 158800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.41604398199999, "SHAPE_Area": 1034.18085157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356285.654399998486042, 259645.068999998271465 ], [ 356273.286399997770786, 259677.054000001400709 ], [ 356316.891999997198582, 259669.811500001698732 ], [ 356317.899700000882149, 259646.177200000733137 ], [ 356285.654399998486042, 259645.068999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9176501, "LATITUDE": 18.36647325, "OBJECTID_1": 998, "PARCEL_NO_": "101304023200", "Tax_Legal_": "11-1-11 PETERBORG NO. 12 NORTHSIDE QUARTER", "Name": "MCLEAN, DOLACE", "Address": "6118 Estate Peterborg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 150400, "Improved_V": 356900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.29844675000001, "SHAPE_Area": 2786.3782797600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360146.539300002157688, 259646.059900000691414 ], [ 360167.12219999730587, 259690.980200000107288 ], [ 360185.514499999582767, 259709.073699999600649 ], [ 360230.111599996685982, 259680.096700001507998 ], [ 360218.040299996733665, 259677.253699999302626 ], [ 360211.611400000751019, 259674.667899999767542 ], [ 360198.775200001895428, 259666.963500000536442 ], [ 360187.573100000619888, 259656.73930000141263 ], [ 360172.409599997103214, 259638.250100001692772 ], [ 360170.827500000596046, 259634.648499999195337 ], [ 360169.22749999910593, 259633.157800000160933 ], [ 360168.444600000977516, 259630.407200001180172 ], [ 360164.420199997723103, 259629.529899999499321 ], [ 360154.67790000140667, 259637.260600000619888 ], [ 360146.539300002157688, 259646.059900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.921875, "LATITUDE": 18.36656058, "OBJECTID_1": 1097, "PARCEL_NO_": "101304039900", "Tax_Legal_": "PETERBORG 11REM,11-76-1-11-76-8& 11-76 REM GT. NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 508300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.83878595, "SHAPE_Area": 2103.6772171399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359776.125399999320507, 259680.180700000375509 ], [ 359715.900100000202656, 259650.55689999833703 ], [ 359694.704000003635883, 259677.614500001072884 ], [ 359754.151699997484684, 259703.854400001466274 ], [ 359765.558799996972084, 259690.015599999576807 ], [ 359776.125399999320507, 259680.180700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304036300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91977628, "LATITUDE": 18.36636621, "OBJECTID_1": 1091, "PARCEL_NO_": "101304036300", "Tax_Legal_": "PETERBORG REM.11-56 No.12 GREAT NORTHSIDE QUARTER", "Name": "VILLA VISTA HOLDINGS LLC", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026733, "Country": "United States", "Land_Value": 239900, "Improved_V": 621500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.36214876599999, "SHAPE_Area": 2709.1100174200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359954.041000001132488, 259619.786400001496077 ], [ 359934.567199997603893, 259633.9814000017941 ], [ 359939.619800001382828, 259703.472600001841784 ], [ 359953.395400002598763, 259695.563799999654293 ], [ 359958.242299996316433, 259694.548000000417233 ], [ 359990.107500001788139, 259645.624000001698732 ], [ 359954.041000001132488, 259619.786400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95700314, "LATITUDE": 18.3662866, "OBJECTID_1": 530, "PARCEL_NO_": "101104014000", "Tax_Legal_": "BONNE RESOLUTION 16D LT. NORTHSIDE", "Name": "BRYAN, LUCILLE V. & DALE G", "Address": "7692 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.77785798799999, "SHAPE_Area": 3746.2675167399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356039.6824000030756, 259648.544199999421835 ], [ 356055.543600000441074, 259585.134899999946356 ], [ 356035.423500001430511, 259580.537200000137091 ], [ 356016.070200003683567, 259580.589899998158216 ], [ 356004.817800000309944, 259576.276000000536442 ], [ 355991.42230000346899, 259634.217099998146296 ], [ 355989.755699999630451, 259640.536200001835823 ], [ 356036.316899999976158, 259664.98200000077486 ], [ 356039.6824000030756, 259648.544199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103010800", "MAP": "D9-5726-T94", "PARCEL_NAM": "17-1-A", "ACRE": ".50", "LONGITUDE": -64.9620353, "LATITUDE": 18.36635651, "OBJECTID_1": 416, "PARCEL_NO_": "101103010800", "Tax_Legal_": "DOROTHEA 17-1-A LT. NORTHSIDE QTR", "Name": "WHITE, CELESTINO A. & RUTHLYN", "Address": "PO Box 10548", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.47780035400001, "SHAPE_Area": 2996.9712416299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355523.145400002598763, 259608.008499998599291 ], [ 355485.477099999785423, 259580.89130000025034 ], [ 355455.161100000143051, 259623.154899999499321 ], [ 355480.497699998319149, 259648.791799999773502 ], [ 355494.1266999989748, 259662.582299999892712 ], [ 355496.0929000005126, 259659.927200000733137 ], [ 355514.038599997758865, 259635.798300001770258 ], [ 355523.145400002598763, 259608.008499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94591377, "LATITUDE": 18.36639443, "OBJECTID_1": 744, "PARCEL_NO_": "101203014400", "Tax_Legal_": "ST PETER 17-4-A LT. NORTHSIDE", "Name": "LEDEE, ARIEMENTHE", "Address": "PO Box 11113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 155400, "Improved_V": 255400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.27216764100001, "SHAPE_Area": 3982.9402827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357228.451300002634525, 259627.243000000715256 ], [ 357226.170800000429153, 259610.970100000500679 ], [ 357150.373800002038479, 259610.771899998188019 ], [ 357170.807499997317791, 259673.211800001561642 ], [ 357180.535400003194809, 259667.169700000435114 ], [ 357233.760999999940395, 259666.549800001084805 ], [ 357228.451300002634525, 259627.243000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031400", "MAP": "A9-394A-T91", "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.96447762, "LATITUDE": 18.36598798, "OBJECTID_1": 451, "PARCEL_NO_": "101103031400", "Tax_Legal_": "NELTJBERG/EASTERN PT. 7 LT. NORTHSIDE", "Name": "BNR PARTNERSHIP", "Address": "6539 Clucksberg", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 196700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 560.550242819, "SHAPE_Area": 17581.316095099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355316.710699997842312, 259513.859999999403954 ], [ 355312.772600002586842, 259502.850900001823902 ], [ 355202.282600000500679, 259504.901900000870228 ], [ 355189.858900003135204, 259543.430300001055002 ], [ 355188.230099998414516, 259545.316799998283386 ], [ 355180.827600002288818, 259562.354800000786781 ], [ 355179.188000001013279, 259565.507800001651049 ], [ 355177.550200000405312, 259568.449700001627207 ], [ 355159.57039999961853, 259596.589099999517202 ], [ 355153.873999997973442, 259602.664200000464916 ], [ 355130.235600002110004, 259632.445999998599291 ], [ 355176.128899998962879, 259640.632100000977516 ], [ 355259.060400001704693, 259655.243000000715256 ], [ 355282.644900001585484, 259631.793600000441074 ], [ 355287.170900002121925, 259573.779899999499321 ], [ 355313.323600001633167, 259532.830699998885393 ], [ 355316.710699997842312, 259513.859999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91534458, "LATITUDE": 18.36636412, "OBJECTID_1": 987, "PARCEL_NO_": "101304022000", "Tax_Legal_": "PETERBORG 14-7,14-10,&14-14 GT. NORTHSIDE", "Name": "HANFORD, KAREN L", "Address": "2130 Old Seneca Tunrpike", "City": "Marcellus", "State": "New York", "Zip": 13108, "Country": "United States", "Land_Value": 341800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.68856303600001, "SHAPE_Area": 1921.3859924799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360451.212099999189377, 259661.852400001138449 ], [ 360420.066200003027916, 259626.344900000840425 ], [ 360404.550300002098083, 259649.227099999785423 ], [ 360397.198100000619888, 259660.354899998754263 ], [ 360431.560300000011921, 259696.944200001657009 ], [ 360444.642899997532368, 259675.730799999088049 ], [ 360451.212099999189377, 259661.852400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104028000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95209174, "LATITUDE": 18.36643319, "OBJECTID_1": 645, "PARCEL_NO_": "101104028000", "Tax_Legal_": "HULL BAY 7CA-1 LITTLE NORTHSIDE", "Name": "SHEEN, MICHAEL O. & JANE B", "Address": "6249 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37300, "Improved_V": 140600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.900329113, "SHAPE_Area": 996.07550779099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356545.516000002622604, 259655.604899998754263 ], [ 356558.238899998366833, 259624.584199998527765 ], [ 356562.841399997472763, 259613.362399999052286 ], [ 356547.253899998962879, 259605.624600000679493 ], [ 356546.226400002837181, 259631.580699998885393 ], [ 356530.886699996888638, 259633.777199998497963 ], [ 356521.228900000452995, 259631.587200000882149 ], [ 356527.400700002908707, 259664.357200000435114 ], [ 356545.516000002622604, 259655.604899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91587811, "LATITUDE": 18.36637972, "OBJECTID_1": 988, "PARCEL_NO_": "101304022100", "Tax_Legal_": "PETERBORG 14-9 GT. NORTHSIDE", "Name": "DANN, HARRIET", "Address": "41 Rosemary St", "City": "Needham", "State": "Massachusetts", "Zip": 2494, "Country": "United States", "Land_Value": 128900, "Improved_V": 476600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.33297249500001, "SHAPE_Area": 2780.5936997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360404.550300002098083, 259649.227099999785423 ], [ 360361.237800002098083, 259622.063700001686811 ], [ 360356.255999997258186, 259638.910399999469519 ], [ 360354.569700002670288, 259647.551399998366833 ], [ 360352.9408999979496, 259649.437899999320507 ], [ 360350.471600003540516, 259655.328400000929832 ], [ 360340.704099997878075, 259666.014199998229742 ], [ 360341.26410000026226, 259694.9386 ], [ 360373.518399998545647, 259694.991500001400709 ], [ 360397.198100000619888, 259660.354899998754263 ], [ 360404.550300002098083, 259649.227099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101403010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91463143, "LATITUDE": 18.36625854, "OBJECTID_1": 1103, "PARCEL_NO_": "101403010600", "Tax_Legal_": "PETERBORG 14-15 GT. NORTHSIDE", "Name": "ORSHAN, JANET SUE", "Address": "45 Pebble Ln", "City": "Roslyn Heights", "State": "New York", "Zip": 11577, "Country": "United States", "Land_Value": 257400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.92978558199999, "SHAPE_Area": 3302.96307553 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360538.268700003623962, 259665.520199999213219 ], [ 360502.38740000128746, 259617.941599998623133 ], [ 360490.45269999653101, 259599.056600000709295 ], [ 360463.366099998354912, 259654.985800001770258 ], [ 360514.675200000405312, 259690.025100000202656 ], [ 360520.333800002932549, 259688.382599998265505 ], [ 360523.600400000810623, 259683.554200001060963 ], [ 360532.523800000548363, 259677.294399999082088 ], [ 360538.268700003623962, 259665.520199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94165413, "LATITUDE": 18.36622583, "OBJECTID_1": 742, "PARCEL_NO_": "101203014200", "Tax_Legal_": "LERKENLUND 1-8 GT. NORTHSIDE", "Name": "KAREN A WOODS LIVING TRUST", "Address": "PO Box 11007", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 157500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.86669359199999, "SHAPE_Area": 1949.8952682 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357680.923799999058247, 259615.536400001496077 ], [ 357664.991800002753735, 259592.607900001108646 ], [ 357641.504399999976158, 259604.659099999815226 ], [ 357631.763999998569489, 259612.178800001740456 ], [ 357614.669600002467632, 259631.037300001829863 ], [ 357626.469300001859665, 259665.753199998289347 ], [ 357633.045699998736382, 259651.030499998480082 ], [ 357641.180799998342991, 259642.653299998492002 ], [ 357652.553700000047684, 259632.824999999254942 ], [ 357663.9121999964118, 259624.685300000011921 ], [ 357680.923799999058247, 259615.536400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9560502, "LATITUDE": 18.3663279, "OBJECTID_1": 502, "PARCEL_NO_": "101104011100", "Tax_Legal_": "HULL BAY 3-3 LT. NORTHSIDE", "Name": "WHITE, RONALD M. & TERESA R.", "Address": "PO Box 305807", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69800, "Improved_V": 46400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.71596567, "SHAPE_Area": 1914.1805667000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356140.653499998152256, 259646.872099999338388 ], [ 356141.35869999974966, 259639.877199999988079 ], [ 356141.747100003063679, 259594.284200001507998 ], [ 356101.375699996948242, 259600.497600000351667 ], [ 356102.147799998521805, 259604.514699999243021 ], [ 356102.124499998986721, 259607.258799999952316 ], [ 356109.000100001692772, 259652.066899999976158 ], [ 356140.653499998152256, 259646.872099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92159715, "LATITUDE": 18.36631401, "OBJECTID_1": 1097, "PARCEL_NO_": "101304039900", "Tax_Legal_": "PETERBORG 11REM,11-76-1-11-76-8& 11-76 REM GT. NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 508300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.49561219500001, "SHAPE_Area": 2746.55139925 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359809.426899999380112, 259651.955600000917912 ], [ 359755.684500001370907, 259618.585200000554323 ], [ 359736.937899999320507, 259642.074200000613928 ], [ 359719.994599997997284, 259643.202100001275539 ], [ 359715.900100000202656, 259650.55689999833703 ], [ 359776.125399999320507, 259680.180700000375509 ], [ 359791.564000003039837, 259666.374899998307228 ], [ 359809.426899999380112, 259651.955600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104014300", "MAP": "D9-3503-T83", "PARCEL_NAM": "16E-2", "ACRE": null, "LONGITUDE": -64.95656367, "LATITUDE": 18.36632077, "OBJECTID_1": 533, "PARCEL_NO_": "101104014300", "Tax_Legal_": "BONNE RESOLUTION 16E-2 LT. NORTHSIDE", "Name": "OLIVE, STEVEN M. & VIRGINIA A.", "Address": "PO Box 302775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.73360275300001, "SHAPE_Area": 2481.3653242700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356039.6824000030756, 259648.544199999421835 ], [ 356097.7871999964118, 259643.109200000762939 ], [ 356091.644199997186661, 259606.961899999529123 ], [ 356088.465700000524521, 259601.447399999946356 ], [ 356082.058399997651577, 259596.32880000025034 ], [ 356055.543600000441074, 259585.134899999946356 ], [ 356039.6824000030756, 259648.544199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103030400", "MAP": "A9-394A-T91", "PARCEL_NAM": "3A", "ACRE": ".55", "LONGITUDE": -64.96830628, "LATITUDE": 18.36630785, "OBJECTID_1": 441, "PARCEL_NO_": "101103030400", "Tax_Legal_": "NELTJBERG/EAST PART 3A LT. NORTHSIDE", "Name": "MOOLENAAR, LEOPOLD", "Address": "261 E 188th St", "City": "Bronx", "State": "New York", "Zip": 10458, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.561721648, "SHAPE_Area": 2405.3686993900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354856.112800002098083, 259627.458200000226498 ], [ 354851.629100002348423, 259585.836100000888109 ], [ 354800.014399997889996, 259586.68019999936223 ], [ 354806.844999998807907, 259636.765299998223782 ], [ 354847.200199998915195, 259632.451499998569489 ], [ 354847.234300002455711, 259628.440999999642372 ], [ 354856.112800002098083, 259627.458200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91640013, "LATITUDE": 18.36624492, "OBJECTID_1": 989, "PARCEL_NO_": "101304022200", "Tax_Legal_": "PETERSBORG 12-10 GREAT NORTHSIDE QTR", "Name": "MOOREHEAD, RONALD L. & SUSAN B. (TRUSTEES)", "Address": "PO Box 1266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 181200, "Improved_V": 370300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.71429205300001, "SHAPE_Area": 2870.6320504599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360340.351000003516674, 259612.815699998289347 ], [ 360308.112800002098083, 259610.863099999725819 ], [ 360296.522399999201298, 259646.23200000077486 ], [ 360271.246200002729893, 259678.955699998885393 ], [ 360284.130999997258186, 259680.960999999195337 ], [ 360293.806699998676777, 259681.040199998766184 ], [ 360305.92119999974966, 259678.817299999296665 ], [ 360323.737400002777576, 259669.886100001633167 ], [ 360331.041000001132488, 259664.457400001585484 ], [ 360340.797600001096725, 259655.038100000470877 ], [ 360340.351000003516674, 259612.815699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103034700", "MAP": "A9-394A-T91", "PARCEL_NAM": "8-2", "ACRE": "2.1", "LONGITUDE": -64.96543907, "LATITUDE": 18.36584226, "OBJECTID_1": 483, "PARCEL_NO_": "101103034700", "Tax_Legal_": "NELTJEBERG 8-2 LT.NORTHSIDE QTR.", "Name": "KOPKO, JR., FREDERICK H. & MARY ELIZABETH", "Address": "PO Box 303620", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 156800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 459.88499842200002, "SHAPE_Area": 9663.8630025399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355068.019400000572205, 259552.565600000321865 ], [ 355089.063299998641014, 259638.019600000232458 ], [ 355121.391400001943111, 259629.418299999088049 ], [ 355153.996299996972084, 259588.3108000010252 ], [ 355171.175200000405312, 259559.531599998474121 ], [ 355172.800399996340275, 259558.067299999296665 ], [ 355186.777500003576279, 259526.517599999904633 ], [ 355186.79730000346899, 259524.195700000971556 ], [ 355192.5996999964118, 259505.666999999433756 ], [ 355196.7787000015378, 259488.391499999910593 ], [ 355197.673100002110004, 259478.055300001055002 ], [ 355197.709100000560284, 259473.833700001239777 ], [ 355195.300899997353554, 259472.547400001436472 ], [ 355192.8783999979496, 259472.949799999594688 ], [ 355192.057700000703335, 259474.631799999624491 ], [ 355190.439699999988079, 259475.251899998635054 ], [ 355187.99379999935627, 259478.398200001567602 ], [ 355178.244300000369549, 259486.973299998790026 ], [ 355163.640799999237061, 259497.408399999141693 ], [ 355139.327299997210503, 259511.774900000542402 ], [ 355123.947999998927116, 259518.615100000053644 ], [ 355118.271499998867512, 259522.368299998342991 ], [ 355110.957099996507168, 259529.063499998301268 ], [ 355105.235600002110004, 259538.093699999153614 ], [ 355099.535700000822544, 259544.590900000184774 ], [ 355097.915899999439716, 259545.421999998390675 ], [ 355097.093400001525879, 259547.315099999308586 ], [ 355089.786200001835823, 259553.166000001132488 ], [ 355084.116899996995926, 259556.07490000128746 ], [ 355076.854699999094009, 259556.648699998855591 ], [ 355072.830300003290176, 259555.77140000090003 ], [ 355068.019400000572205, 259552.565600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95051701, "LATITUDE": 18.36634757, "OBJECTID_1": 603, "PARCEL_NO_": "101104023500", "Tax_Legal_": "HULL ESTATE 12 REMAINDER 4A LITTLE NORTHSIDE QTR", "Name": "SIMMONDS, V. A. & PICKERING, D. M", "Address": "GERS COMPLEX-3rd FLOOR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107700, "Improved_V": 274700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.64144919200001, "SHAPE_Area": 1752.71286715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356683.385899998247623, 259622.570799998939037 ], [ 356690.410700000822544, 259649.859400000423193 ], [ 356721.045199997723103, 259650.743400000035763 ], [ 356740.693400003015995, 259616.073699999600649 ], [ 356732.649999998509884, 259613.685899998992682 ], [ 356714.929099999368191, 259611.429900001734495 ], [ 356693.94879999756813, 259613.157999999821186 ], [ 356678.603699997067451, 259615.987700000405312 ], [ 356665.70269999653101, 259615.882199998944998 ], [ 356658.408100001513958, 259620.255399998277426 ], [ 356667.284800000488758, 259619.48369999974966 ], [ 356693.088600002229214, 259619.483800001442432 ], [ 356692.257100000977516, 259622.432300001382828 ], [ 356683.385899998247623, 259622.570799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95091747, "LATITUDE": 18.36642165, "OBJECTID_1": 602, "PARCEL_NO_": "101104023400", "Tax_Legal_": "12B HULL 4A LITTLE NORTHSIDE", "Name": "THORPE, ANGELIQUE & CARL", "Address": "PO Box 8481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37300, "Improved_V": 331400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.08116483399999, "SHAPE_Area": 1113.3290451299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356642.039099998772144, 259648.619100000709295 ], [ 356690.410700000822544, 259649.859400000423193 ], [ 356683.385899998247623, 259622.570799998939037 ], [ 356660.805500000715256, 259622.808200001716614 ], [ 356647.879299998283386, 259625.657699998468161 ], [ 356659.162299998104572, 259626.383299998939037 ], [ 356659.133500002324581, 259629.760600000619888 ], [ 356646.237899996340275, 259629.021699998527765 ], [ 356639.776600003242493, 259630.235399998724461 ], [ 356642.039099998772144, 259648.619100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304022300", "MAP": "A9-65-T67", "PARCEL_NAM": "12-9", "ACRE": ".54", "LONGITUDE": -64.91675865000001, "LATITUDE": 18.3662366, "OBJECTID_1": 990, "PARCEL_NO_": "101304022300", "Tax_Legal_": "PETERBORG 12-9 GT.NORTHSIDE QTR.", "Name": "R. L. M. , INC.", "Address": "PO Box 1266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 172200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.05436280800001, "SHAPE_Area": 2209.6339907900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360271.246200002729893, 259678.955699998885393 ], [ 360296.522399999201298, 259646.23200000077486 ], [ 360308.112800002098083, 259610.863099999725819 ], [ 360280.710799999535084, 259609.161200001835823 ], [ 360270.794100001454353, 259637.366599999368191 ], [ 360269.16889999806881, 259638.830899998545647 ], [ 360267.523900002241135, 259642.61710000038147 ], [ 360256.129399999976158, 259654.978399999439716 ], [ 360248.016000002622604, 259660.822599999606609 ], [ 360239.110600002110004, 259664.971599999815226 ], [ 360222.934000000357628, 259670.749800000339746 ], [ 360232.597099997103214, 259672.306600000709295 ], [ 360271.246200002729893, 259678.955699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203015700", "MAP": "D9-5230-T92", "PARCEL_NAM": "17-11", "ACRE": "6.51", "LONGITUDE": -64.9485296, "LATITUDE": 18.36645281, "OBJECTID_1": 756, "PARCEL_NO_": "101203015700", "Tax_Legal_": "ST PETER 17-10 & 17-11 LITTLE NORTHSIDE", "Name": "BRYAN, PETER L", "Address": "17-1 Estate St. Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 440800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.15564219, "SHAPE_Area": 366.03255453999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356905.699699997901917, 259651.199200000613928 ], [ 356922.659299999475479, 259648.171599999070168 ], [ 356942.829700000584126, 259646.859000001102686 ], [ 356927.569099999964237, 259639.76799999922514 ], [ 356905.062399998307228, 259631.351199999451637 ], [ 356905.699699997901917, 259651.199200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203015700", "MAP": "D9-5228-T92", "PARCEL_NAM": "17-10", "ACRE": "1.61", "LONGITUDE": -64.94767452000001, "LATITUDE": 18.36630211, "OBJECTID_1": 756, "PARCEL_NO_": "101203015700", "Tax_Legal_": "ST PETER 17-10 & 17-11 LITTLE NORTHSIDE", "Name": "BRYAN, PETER L", "Address": "17-1 Estate St. Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 440800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 473.05889952899997, "SHAPE_Area": 7086.1537815600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357098.76799999922514, 259610.560699999332428 ], [ 357073.770599998533726, 259610.567200001329184 ], [ 356960.076899997889996, 259610.058800000697374 ], [ 356959.396499998867512, 259595.276700001209974 ], [ 356919.781099997460842, 259607.407000001519918 ], [ 356914.943199999630451, 259607.367400001734495 ], [ 356910.925999999046326, 259605.645799998193979 ], [ 356903.629600003361702, 259610.230099998414516 ], [ 356904.315499998629093, 259624.379000000655651 ], [ 356930.839299999177456, 259634.517499998211861 ], [ 356946.0962999984622, 259642.030600000172853 ], [ 356961.385600000619888, 259645.744300000369549 ], [ 356973.474899999797344, 259646.476599998772144 ], [ 356993.645300000905991, 259645.164000000804663 ], [ 357021.862700000405312, 259645.817099999636412 ], [ 357070.208999998867512, 259650.012499999254942 ], [ 357104.871500000357628, 259651.351700000464916 ], [ 357098.76799999922514, 259610.560699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104024900", "MAP": "A9-320-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95167765, "LATITUDE": 18.3663643, "OBJECTID_1": 616, "PARCEL_NO_": "101104024900", "Tax_Legal_": "7C&7CB HULL NO.4B LITTLE NORTHSIDE QTR", "Name": "SZEGI, JAMES & GENEVIEVE SZEGI", "Address": "8450 Canton Rd", "City": "Canton", "State": "Michigan", "Zip": 48187, "Country": "United States", "Land_Value": 54700, "Improved_V": 130200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.16163853200001, "SHAPE_Area": 677.82246606199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356562.841399997472763, 259613.362399999052286 ], [ 356576.794399999082088, 259644.85249999910593 ], [ 356593.737700000405312, 259639.146699998527765 ], [ 356616.400799997150898, 259629.199700001627207 ], [ 356597.882600001990795, 259625.881799999624491 ], [ 356569.737199999392033, 259616.785500001162291 ], [ 356565.892700001597404, 259614.877099998295307 ], [ 356562.841399997472763, 259613.362399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104013800", "MAP": "D9-6442-T98", "PARCEL_NAM": "3-3A", "ACRE": ".24", "LONGITUDE": -64.95572743, "LATITUDE": 18.36637431, "OBJECTID_1": 528, "PARCEL_NO_": "101104013800", "Tax_Legal_": "3-3A(REM) & 3-3A-1 HULL LITTLE NORTHSIDE QUARTER", "Name": "BETTY BRYAN TALLMAN FAMILY TRUST", "Address": "7583 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77900, "Improved_V": 203800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.005758122, "SHAPE_Area": 1079.75806339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356180.0945999994874, 259631.167700000107288 ], [ 356176.914800003170967, 259632.918299999088049 ], [ 356173.501599997282028, 259633.156500000506639 ], [ 356172.596485560236033, 259632.419711611932144 ], [ 356171.819482141116168, 259631.548875829292228 ], [ 356171.190202449157368, 259630.565973828634014 ], [ 356170.724530429288279, 259629.495815502217738 ], [ 356170.434220328344963, 259628.365413220337359 ], [ 356170.32660000026226, 259627.203299999237061 ], [ 356168.739100001752377, 259614.1064000017941 ], [ 356167.673163692059461, 259611.987134172668448 ], [ 356166.320162846939638, 259610.038571475713979 ], [ 356164.706915962859057, 259608.29933533250005 ], [ 356162.86540000140667, 259606.803899999707937 ], [ 356160.880999997258186, 259606.2483000010252 ], [ 356159.372800000011921, 259606.1689000017941 ], [ 356157.229699999094009, 259606.089499998837709 ], [ 356154.769100002944469, 259606.1689000017941 ], [ 356151.83219999819994, 259607.121399998664856 ], [ 356141.542999997735023, 259618.23759999871254 ], [ 356141.35869999974966, 259639.877199999988079 ], [ 356140.653499998152256, 259646.872099999338388 ], [ 356180.059900000691414, 259640.405000001192093 ], [ 356180.117399998009205, 259633.650499999523163 ], [ 356180.0945999994874, 259631.167700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020700", "MAP": "G9-1961-T72", "PARCEL_NAM": "18-B2", "ACRE": ".31", "LONGITUDE": -64.96123731, "LATITUDE": 18.36641159, "OBJECTID_1": 423, "PARCEL_NO_": "101103020700", "Tax_Legal_": "DOROTHEA 18B LT. NORTHSIDE", "Name": "SANTA C. SHORES & SPA INC.", "Address": "PO Box 696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.08783511600001, "SHAPE_Area": 2275.78158897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355593.002700001001358, 259619.553899999707937 ], [ 355571.893500000238419, 259594.450800001621246 ], [ 355570.019400000572205, 259595.726599998772144 ], [ 355561.114000000059605, 259599.875500001013279 ], [ 355556.821299999952316, 259601.394499998539686 ], [ 355550.601300001144409, 259603.378100000321865 ], [ 355537.943300001323223, 259604.304900001734495 ], [ 355581.724399998784065, 259666.215599998831749 ], [ 355590.099799998104572, 259656.564800001680851 ], [ 355607.466300003230572, 259636.754099998623133 ], [ 355593.002700001001358, 259619.553899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95251555, "LATITUDE": 18.36606779, "OBJECTID_1": 596, "PARCEL_NO_": "101104022800", "Tax_Legal_": "HULL 5-I LT. NORTHSIDE", "Name": "JOAN MARY KAMIN LIVING TRUST", "Address": "PO BOX 3076", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 141900, "Improved_V": 175200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.87774773800001, "SHAPE_Area": 3363.6201835900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356521.691399998962879, 259563.437800001353025 ], [ 356522.617399998009205, 259558.655200000852346 ], [ 356515.148199997842312, 259560.577899999916553 ], [ 356469.686499997973442, 259564.590900000184774 ], [ 356479.212600000202656, 259641.586899999529123 ], [ 356520.478399999439716, 259625.037200000137091 ], [ 356520.818300001323223, 259607.773899998515844 ], [ 356521.691399998962879, 259563.437800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304025700", "MAP": "A9-65-T67", "PARCEL_NAM": "11-1-8", "ACRE": ".50", "LONGITUDE": -64.91840557, "LATITUDE": 18.36624101, "OBJECTID_1": 1021, "PARCEL_NO_": "101304025700", "Tax_Legal_": "PETERBORG 11-1-8 GRT NORTHSIDE", "Name": "DRISCOLL, MATTHEW S", "Address": "PO Box 6693", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 102600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.79877517899999, "SHAPE_Area": 2915.2291895399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360140.913099996745586, 259643.902899999171495 ], [ 360091.230999998748302, 259607.188200000673532 ], [ 360066.663999997079372, 259651.316799998283386 ], [ 360072.171499997377396, 259667.405000001192093 ], [ 360126.163900002837181, 259671.435499999672174 ], [ 360132.745600000023842, 259656.079500000923872 ], [ 360140.913099996745586, 259643.902899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103030500", "MAP": "A9-394A-T91", "PARCEL_NAM": "3B", "ACRE": ".55", "LONGITUDE": -64.96780203, "LATITUDE": 18.36619781, "OBJECTID_1": 442, "PARCEL_NO_": "101103030500", "Tax_Legal_": "NELTJBERG/EAST PART 3B LT. NORTHSIDE", "Name": "MOOLENAAR, A", "Address": "715 Sable Xing", "City": "Suwanee", "State": "Georgia", "Zip": 30024, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.155436468, "SHAPE_Area": 2375.07383175 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354915.96509999781847, 259606.205400001257658 ], [ 354898.546300001442432, 259568.488200001418591 ], [ 354851.629100002348423, 259585.836100000888109 ], [ 354856.112800002098083, 259627.458200000226498 ], [ 354863.389399997889996, 259625.195700000971556 ], [ 354865.055900000035763, 259618.876600001007318 ], [ 354871.508199997246265, 259618.718299999833107 ], [ 354872.289399996399879, 259621.679999999701977 ], [ 354877.928199999034405, 259622.359400000423193 ], [ 354898.960600003600121, 259614.510000001639128 ], [ 354915.96509999781847, 259606.205400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104022500", "MAP": "G9-2337-T74", "PARCEL_NAM": "5C-1", "ACRE": "1.80", "LONGITUDE": -64.95444528, "LATITUDE": 18.36620185, "OBJECTID_1": 593, "PARCEL_NO_": "101104022500", "Tax_Legal_": "HULL 5C-1 LT. NORTHSIDE", "Name": "LEDEE, LOUIS E. & ESTHER R", "Address": "PO Box 7161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 201200, "Improved_V": 361700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.37520434499999, "SHAPE_Area": 6280.04933876 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356234.366099998354912, 259585.362900000065565 ], [ 356236.635600000619888, 259635.625100001692772 ], [ 356355.855800002813339, 259639.521800000220537 ], [ 356339.699600003659725, 259588.690400000661612 ], [ 356335.44650000333786, 259576.440400000661612 ], [ 356234.366099998354912, 259585.362900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104022100", "MAP": "D9-6587-T99", "PARCEL_NAM": "14-B", "ACRE": ".34", "LONGITUDE": -64.95348658, "LATITUDE": 18.36606224, "OBJECTID_1": 589, "PARCEL_NO_": "101104022100", "Tax_Legal_": "14B ESTATE HULL 4A LITTLE NORTHSIDE QTR", "Name": "QUERRARD, CYRIL F. & ANNA L.", "Address": "7629 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46000, "Improved_V": 210400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.88131478299999, "SHAPE_Area": 1429.4752937000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356358.842100001871586, 259585.44310000166297 ], [ 356386.393299996852875, 259612.251200001686811 ], [ 356422.722800001502037, 259610.81529999896884 ], [ 356409.809000000357628, 259576.796999998390675 ], [ 356378.326300002634525, 259582.137699998915195 ], [ 356358.842100001871586, 259585.44310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304030400", "MAP": "A9-370-T89", "PARCEL_NAM": "11-59", "ACRE": ".695", "LONGITUDE": -64.92020106, "LATITUDE": 18.36614979, "OBJECTID_1": 1036, "PARCEL_NO_": "101304030400", "Tax_Legal_": "11-59 PETERBORG NO.12 GREAT NORTHSDE QTR", "Name": "LIBERTY LIFE SERVICE CORPORATION", "Address": "1605 Lbj Fwy", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 200800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.652620899, "SHAPE_Area": 2162.8266042 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359927.590899996459484, 259600.993700001388788 ], [ 359917.855800002813339, 259607.880100000649691 ], [ 359917.821599997580051, 259611.890599999576807 ], [ 359919.423500001430511, 259613.170299999415874 ], [ 359914.549599997699261, 259617.352299999445677 ], [ 359912.148699998855591, 259615.221700001507998 ], [ 359908.917999997735023, 259615.828499998897314 ], [ 359896.728100001811981, 259626.916700001806021 ], [ 359883.729999996721745, 259638.209399998188019 ], [ 359876.415600001811981, 259644.904500000178814 ], [ 359873.971500001847744, 259647.839800000190735 ], [ 359888.310699999332428, 259668.433299999684095 ], [ 359934.567199997603893, 259633.9814000017941 ], [ 359954.041000001132488, 259619.786400001496077 ], [ 359927.590899996459484, 259600.993700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103024400", "MAP": "G9-1935-T71", "PARCEL_NAM": "16B", "ACRE": ".86", "LONGITUDE": -64.95754676, "LATITUDE": 18.36607702, "OBJECTID_1": 435, "PARCEL_NO_": "101103024400", "Tax_Legal_": "BONNE RESOLUTION 16B LT. NORTHSIDE", "Name": "COBB, MATTHEW", "Address": "PO Box 307524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.905900237, "SHAPE_Area": 3568.22632841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355991.42230000346899, 259634.217099998146296 ], [ 356004.817800000309944, 259576.276000000536442 ], [ 355998.387100003659725, 259573.901299998164177 ], [ 355933.151299998164177, 259564.501499999314547 ], [ 355916.791299998760223, 259591.80970000103116 ], [ 355991.42230000346899, 259634.217099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91746915, "LATITUDE": 18.36609943, "OBJECTID_1": 992, "PARCEL_NO_": "101304022500", "Tax_Legal_": "11-1-7 PETERBORG NO 12 GREAT NORTHSIDE", "Name": "EROLE MAE MCLEAN REVOCABLE TRUST", "Address": "6118 Estate Peterborg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111500, "Improved_V": 318400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.136273276, "SHAPE_Area": 2527.4102775800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360228.664499998092651, 259660.664200000464916 ], [ 360219.432899996638298, 259608.448600001633167 ], [ 360167.099899999797344, 259598.943199999630451 ], [ 360170.193899996578693, 259614.378400001674891 ], [ 360175.717600002884865, 259628.566899999976158 ], [ 360179.693400003015995, 259635.143300000578165 ], [ 360194.85869999974966, 259653.421500001102686 ], [ 360203.66160000115633, 259661.304000001400709 ], [ 360213.290600001811981, 259666.871199999004602 ], [ 360228.664499998092651, 259660.664200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95216284, "LATITUDE": 18.36625972, "OBJECTID_1": 617, "PARCEL_NO_": "101104025000", "Tax_Legal_": "HULL 7CA (REMAINDER) LITTLE NORTHSIDE", "Name": "COOMBES, JANE & PRATT, FRANCIS", "Address": "PO Box 303690", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40000, "Improved_V": 228600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.173070188, "SHAPE_Area": 744.20098990199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356520.818300001323223, 259607.773899998515844 ], [ 356520.478399999439716, 259625.037200000137091 ], [ 356521.228900000452995, 259631.587200000882149 ], [ 356530.886699996888638, 259633.777199998497963 ], [ 356546.226400002837181, 259631.580699998885393 ], [ 356547.253899998962879, 259605.624600000679493 ], [ 356544.041199997067451, 259604.120600000023842 ], [ 356541.652900002896786, 259600.512499999254942 ], [ 356520.818300001323223, 259607.773899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91707144, "LATITUDE": 18.36604382, "OBJECTID_1": 991, "PARCEL_NO_": "101304022400", "Tax_Legal_": "PETERBORG 12-8 GREAT NORTHSIDE QTR", "Name": "BLAKE, PHILLIP D and ORIEL R T", "Address": "5304 Yacht Haven Grande Suite", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165000, "Improved_V": 344000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.351517204, "SHAPE_Area": 2223.3308066099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360272.662100002169609, 259607.406599998474121 ], [ 360222.77139999717474, 259595.177000001072884 ], [ 360219.432899996638298, 259608.448600001633167 ], [ 360228.664499998092651, 259660.664200000464916 ], [ 360239.992399998009205, 259656.112900000065565 ], [ 360250.528399996459484, 259649.866300001740456 ], [ 360258.661700002849102, 259641.700199998915195 ], [ 360261.924699999392033, 259637.293999999761581 ], [ 360266.857799999415874, 259626.14640000090003 ], [ 360272.662100002169609, 259607.406599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91516154, "LATITUDE": 18.36606657, "OBJECTID_1": 987, "PARCEL_NO_": "101304022000", "Tax_Legal_": "PETERBORG 14-7,14-10,&14-14 GT. NORTHSIDE", "Name": "HANFORD, KAREN L", "Address": "2130 Old Seneca Tunrpike", "City": "Marcellus", "State": "New York", "Zip": 13108, "Country": "United States", "Land_Value": 341800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.10214966000001, "SHAPE_Area": 1519.4432661599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360467.622500002384186, 259628.633900001645088 ], [ 360438.868500001728535, 259596.312399998307228 ], [ 360433.940700002014637, 259606.826699998229742 ], [ 360420.066200003027916, 259626.344900000840425 ], [ 360451.212099999189377, 259661.852400001138449 ], [ 360467.622500002384186, 259628.633900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203011700", "MAP": "A9-115-T69", "PARCEL_NAM": "14 REM", "ACRE": null, "LONGITUDE": -64.944077, "LATITUDE": 18.36595271, "OBJECTID_1": 716, "PARCEL_NO_": "101203011700", "Tax_Legal_": "14 ESTATE ST.PETER LITTLE NORTHSIDE QTR", "Name": "ANN BRYAN", "Address": "3213 FRIAR LN", "City": "Garland", "State": "Texas", "Zip": 750445421, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.0049036, "SHAPE_Area": 4946.6272390599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357424.478000000119209, 259568.242800001055002 ], [ 357423.337999999523163, 259551.77589999884367 ], [ 357419.39019999653101, 259552.600999999791384 ], [ 357383.048600003123283, 259559.058499999344349 ], [ 357345.909599997103214, 259564.454100001603365 ], [ 357350.528099998831749, 259590.245299998670816 ], [ 357355.925999999046326, 259619.209300000220537 ], [ 357403.361699998378754, 259635.640599999576807 ], [ 357405.825599998235703, 259630.383499998599291 ], [ 357409.903999999165535, 259624.928399998694658 ], [ 357410.731799997389317, 259622.402100000530481 ], [ 357412.353500001132488, 259621.359900001436472 ], [ 357413.17960000038147, 259619.044599998742342 ], [ 357427.009099997580051, 259604.803399998694658 ], [ 357424.478000000119209, 259568.242800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96047547000001, "LATITUDE": 18.36586088, "OBJECTID_1": 424, "PARCEL_NO_": "101103020800", "Tax_Legal_": "DOROTHEA ESTATE 18A LT. NORTHSIDE", "Name": "SUAZO, DAGOBERTO P. & KELLY JO B", "Address": "PO Box 5217", "City": "St.Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72800, "Improved_V": 85300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.47462932799999, "SHAPE_Area": 4928.8118021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355686.252999998629093, 259536.149500001221895 ], [ 355667.627700001001358, 259519.540100000798702 ], [ 355658.491899996995926, 259527.845300000160933 ], [ 355632.524400003254414, 259547.053300000727177 ], [ 355602.484099999070168, 259571.083200000226498 ], [ 355622.489000000059605, 259589.189899999648333 ], [ 355653.690700002014637, 259618.153999999165535 ], [ 355680.604699999094009, 259582.488400001078844 ], [ 355688.730700001120567, 259575.166600000113249 ], [ 355699.320699997246265, 259562.587699998170137 ], [ 355700.949500001966953, 259560.701200000941753 ], [ 355706.204300001263618, 259553.941399998962879 ], [ 355686.252999998629093, 259536.149500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92127415, "LATITUDE": 18.36602915, "OBJECTID_1": 1097, "PARCEL_NO_": "101304039900", "Tax_Legal_": "PETERBORG 11REM,11-76-1-11-76-8& 11-76 REM GT. NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 508300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.30644847, "SHAPE_Area": 2985.3514584300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359845.914200000464916, 259628.400699999183416 ], [ 359784.212899997830391, 259582.721700001507998 ], [ 359755.684500001370907, 259618.585200000554323 ], [ 359809.426899999380112, 259651.955600000917912 ], [ 359827.271899998188019, 259639.647199999541044 ], [ 359845.914200000464916, 259628.400699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91605225000001, "LATITUDE": 18.36577596, "OBJECTID_1": 984, "PARCEL_NO_": "101304021600", "Tax_Legal_": "PETERBORG 14-12 GREAT NORTHSIDE QTR", "Name": "HUGHES, KEVIN D. & KAREN NELSON-HUGHES", "Address": "PO Box 8163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 128900, "Improved_V": 352500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.566837058, "SHAPE_Area": 1628.28594398 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360374.480400003492832, 259582.064300000667572 ], [ 360339.259800001978874, 259551.589699998497963 ], [ 360339.995999999344349, 259559.828299999237061 ], [ 360340.351000003516674, 259612.815699998289347 ], [ 360340.797600001096725, 259655.038100000470877 ], [ 360344.874099999666214, 259649.794100001454353 ], [ 360347.350599996745586, 259643.059399999678135 ], [ 360357.314099997282028, 259609.36600000038743 ], [ 360361.435599997639656, 259598.844999998807907 ], [ 360374.480400003492832, 259582.064300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95143363, "LATITUDE": 18.36606772, "OBJECTID_1": 614, "PARCEL_NO_": "101104024700", "Tax_Legal_": "7&11-H-1A HULL REM LITTLE NORTHSIDE", "Name": "MAYES, STEPHEN BOYD and AMIE R", "Address": "1323 Taren Trl", "City": "Wylie", "State": "Texas", "Zip": 75098, "Country": "United States", "Land_Value": 103000, "Improved_V": 457000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.47087279499999, "SHAPE_Area": 1693.56545607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356630.341899998486042, 259601.871700000017881 ], [ 356623.119199998676777, 259597.80180000141263 ], [ 356636.279100000858307, 259567.511999998241663 ], [ 356586.944799996912479, 259584.629000000655651 ], [ 356594.725599996745586, 259617.834399998188019 ], [ 356612.42679999768734, 259622.412200000137091 ], [ 356626.119699999690056, 259624.212999999523163 ], [ 356630.341899998486042, 259601.871700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020700", "MAP": "G9-1961-T72", "PARCEL_NAM": "18-B1", "ACRE": ".31", "LONGITUDE": -64.96095502, "LATITUDE": 18.3661835, "OBJECTID_1": 423, "PARCEL_NO_": "101103020700", "Tax_Legal_": "DOROTHEA 18B LT. NORTHSIDE", "Name": "SANTA C. SHORES & SPA INC.", "Address": "PO Box 696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.94731704899999, "SHAPE_Area": 2111.5629107099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355622.489000000059605, 259589.189899999648333 ], [ 355602.484099999070168, 259571.083200000226498 ], [ 355583.807599999010563, 259586.340199999511242 ], [ 355571.893500000238419, 259594.450800001621246 ], [ 355593.002700001001358, 259619.553899999707937 ], [ 355607.466300003230572, 259636.754099998623133 ], [ 355637.195000000298023, 259602.841299999505281 ], [ 355622.489000000059605, 259589.189899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103030600", "MAP": "A9-394A-T91", "PARCEL_NAM": "3C", "ACRE": ".35", "LONGITUDE": -64.96739347, "LATITUDE": 18.36601367, "OBJECTID_1": 443, "PARCEL_NO_": "101103030600", "Tax_Legal_": "NELTJBERG/EAST PART 3C LT. NORTHSIDE", "Name": "KRIGGER, JANICE", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.346642798, "SHAPE_Area": 1545.82146668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354950.845100000500679, 259582.004099998623133 ], [ 354935.773299999535084, 259552.749800000339746 ], [ 354898.546300001442432, 259568.488200001418591 ], [ 354915.96509999781847, 259606.205400001257658 ], [ 354929.747900001704693, 259597.452300000935793 ], [ 354950.845100000500679, 259582.004099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95176941, "LATITUDE": 18.36610062, "OBJECTID_1": 615, "PARCEL_NO_": "101104024800", "Tax_Legal_": "HULL 7D LT. NORTHSIDE", "Name": "THOMAS, CLARENCE & EUGENITA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49900, "Improved_V": 328000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.503011384, "SHAPE_Area": 771.20766497199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356586.944799996912479, 259584.629000000655651 ], [ 356571.578100003302097, 259589.991700001060963 ], [ 356547.314999997615814, 259598.447900000959635 ], [ 356564.972999997437, 259608.091600000858307 ], [ 356581.054300002753735, 259613.500599998980761 ], [ 356594.725599996745586, 259617.834399998188019 ], [ 356586.944799996912479, 259584.629000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91562815, "LATITUDE": 18.36596246, "OBJECTID_1": 986, "PARCEL_NO_": "101304021800", "Tax_Legal_": "PETERBORG 14-13 GT. NORTHSIDE QTR.", "Name": "HANFORD, GEORGE & KARENL", "Address": "2130 Old Seneca Marcellus", "City": "Marcellus", "State": "New York", "Zip": 13108, "Country": "United States", "Land_Value": 161500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.96473698599999, "SHAPE_Area": 2414.3077275700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360433.940700002014637, 259606.826699998229742 ], [ 360378.447200000286102, 259589.696100000292063 ], [ 360371.118500001728535, 259598.079900000244379 ], [ 360367.846500001847744, 259603.541499998420477 ], [ 360361.237800002098083, 259622.063700001686811 ], [ 360404.550300002098083, 259649.227099999785423 ], [ 360420.066200003027916, 259626.344900000840425 ], [ 360433.940700002014637, 259606.826699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91813676, "LATITUDE": 18.3658949, "OBJECTID_1": 993, "PARCEL_NO_": "101304022600", "Tax_Legal_": "PETERBORG 11-1-3 GRT NORTHSIDE", "Name": "DRISCOLL, LISSA F. & RICHARD", "Address": "PO Box 6693", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 102600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.82567831399999, "SHAPE_Area": 2966.7965771899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360159.92400000244379, 259589.385299999266863 ], [ 360108.426100000739098, 259576.509300000965595 ], [ 360091.230999998748302, 259607.188200000673532 ], [ 360140.913099996745586, 259643.902899999171495 ], [ 360154.748000003397465, 259629.028499998152256 ], [ 360161.256099998950958, 259622.326799999922514 ], [ 360162.085799999535084, 259619.589400000870228 ], [ 360159.92400000244379, 259589.385299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94186752, "LATITUDE": 18.36585526, "OBJECTID_1": 731, "PARCEL_NO_": "101203013000", "Tax_Legal_": "1-7 LERKENLUND No.9 GREAT NORTHSIDE QTR", "Name": "BLANCHARD, LOUIS A. & SHERRY QUERRARD", "Address": "P.O. BOX 4153", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.20297273200001, "SHAPE_Area": 2319.41860038 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357659.412299998104572, 259584.962900001555681 ], [ 357623.441200003027916, 259547.938200000673532 ], [ 357594.192699998617172, 259573.66330000013113 ], [ 357611.512599997222424, 259622.989900000393391 ], [ 357614.770300000905991, 259619.216899998486042 ], [ 357618.045900002121925, 259613.333099998533726 ], [ 357625.370999999344349, 259605.371399998664856 ], [ 357640.786200001835823, 259594.30970000103116 ], [ 357659.412299998104572, 259584.962900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95104894000001, "LATITUDE": 18.36589812, "OBJECTID_1": 610, "PARCEL_NO_": "101104024300", "Tax_Legal_": "HULL 7E&11-H-1 LT. NORTHSIDE", "Name": "HARPER, ROSARY E. & DECKERT, JOSEE (CO-TRUSTEES)", "Address": "7538 Lower Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99700, "Improved_V": 142100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.74281588400001, "SHAPE_Area": 2124.3577633700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356640.486900001764297, 259546.859299998730421 ], [ 356636.279100000858307, 259567.511999998241663 ], [ 356630.341899998486042, 259601.871700000017881 ], [ 356649.601599998772144, 259612.795099999755621 ], [ 356675.511500000953674, 259600.341499999165535 ], [ 356666.901000000536442, 259569.873599998652935 ], [ 356658.064000003039837, 259566.001600001007318 ], [ 356667.906999997794628, 259546.450399998575449 ], [ 356676.839299999177456, 259539.135299999266863 ], [ 356640.486900001764297, 259546.859299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9503956, "LATITUDE": 18.36605803, "OBJECTID_1": 578, "PARCEL_NO_": "101104021000", "Tax_Legal_": "HULL BAY (ENSOMED) 12-1 LT NORTHSIDE QTR", "Name": "ALKEMA, KIP D. & JENNIFER L.", "Address": "615 Kings Ln SW", "City": "Winter Haven", "State": "Florida", "Zip": 33880, "Country": "United States", "Land_Value": 27000, "Improved_V": 137200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.180348944, "SHAPE_Area": 1339.5293685199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356743.146499998867512, 259612.083000000566244 ], [ 356748.873400002717972, 259602.419599998742342 ], [ 356740.142399996519089, 259586.093899998813868 ], [ 356733.8141999989748, 259571.687800001353025 ], [ 356701.353100001811981, 259595.909000001847744 ], [ 356685.140500001609325, 259605.9087999984622 ], [ 356672.997299998998642, 259611.508900001645088 ], [ 356680.246899999678135, 259612.412599999457598 ], [ 356689.134300000965595, 259610.374400001019239 ], [ 356705.276799999177456, 259608.606699999421835 ], [ 356723.013800002634525, 259608.962900001555681 ], [ 356743.146499998867512, 259612.083000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "102902020100", "MAP": "A3--67-T47", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92306051, "LATITUDE": 18.36136816, "OBJECTID_1": 4704, "PARCEL_NO_": "102902020100", "Tax_Legal_": "MAGENS BAY PARK AUTHORITY", "Name": "MAGENS BAY AUTHORITY", "Address": "PO Box 10583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 751400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2969.0912219000002, "SHAPE_Area": 204423.30653599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359503.160800002515316, 258798.254599999636412 ], [ 359503.268500000238419, 258798.281100001186132 ], [ 359528.488099999725819, 258791.815200001001358 ], [ 359536.778399996459484, 258719.495600000023842 ], [ 359525.136699996888638, 258702.033100001513958 ], [ 359498.721500001847744, 258684.590199999511242 ], [ 359431.341700002551079, 258678.220600001513958 ], [ 359311.485299997031689, 258709.176899999380112 ], [ 359311.485299997031689, 258736.958200000226498 ], [ 359335.297799997031689, 258762.358199998736382 ], [ 359313.072800002992153, 258849.670899998396635 ], [ 359330.535300001502037, 258866.339699998497963 ], [ 359316.555600002408028, 258915.849300000816584 ], [ 359326.161200001835823, 258924.160500001162291 ], [ 359344.568000003695488, 258940.565400000661612 ], [ 359348.560000002384186, 258945.24210000038147 ], [ 359350.167199999094009, 258945.8885000012815 ], [ 359385.3429000005126, 258981.6402000002563 ], [ 359404.507299996912479, 259003.750700000673532 ], [ 359414.104000002145767, 259013.117400001734495 ], [ 359421.285300001502037, 259022.042100001126528 ], [ 359424.488899998366833, 259024.601399999111891 ], [ 359449.225699998438358, 259055.201400000602007 ], [ 359450.829300001263618, 259056.269999999552965 ], [ 359452.416799999773502, 259059.238299999386072 ], [ 359454.020400002598763, 259060.30689999833703 ], [ 359454.808700002729893, 259062.424300000071526 ], [ 359456.412399999797344, 259063.492800001055002 ], [ 359473.930100001394749, 259089.600699998438358 ], [ 359478.694200001657009, 259098.294599998742342 ], [ 359480.294299997389317, 259099.785300001502037 ], [ 359481.075400002300739, 259102.747000001370907 ], [ 359485.043999999761581, 259110.16780000180006 ], [ 359486.644100002944469, 259111.658500000834465 ], [ 359487.425200000405312, 259114.620200000703335 ], [ 359489.025200001895428, 259116.111000001430511 ], [ 359489.047200001776218, 259116.194299999624491 ], [ 359489.806400001049042, 259119.072700001299381 ], [ 359491.393799997866154, 259122.041000001132488 ], [ 359500.133799999952316, 259137.311200000345707 ], [ 359501.706799998879433, 259141.968199998140335 ], [ 359503.294299997389317, 259144.936500001698732 ], [ 359504.880000002682209, 259148.115899998694658 ], [ 359508.065600000321865, 259152.785999998450279 ], [ 359517.796999998390675, 259172.996300000697374 ], [ 359535.005500003695488, 259208.735199999064207 ], [ 359538.191200003027916, 259213.405299998819828 ], [ 359538.97240000218153, 259216.366999998688698 ], [ 359540.559799998998642, 259219.335299998521805 ], [ 359544.541000001132488, 259225.278499998152256 ], [ 359553.268399998545647, 259242.026299998164177 ], [ 359557.255000002682209, 259247.336300000548363 ], [ 359575.415399998426437, 259292.659000001847744 ], [ 359585.753600001335144, 259309.631099998950958 ], [ 359599.322499997913837, 259325.996300000697374 ], [ 359600.864900000393391, 259334.241599999368191 ], [ 359607.247100003063679, 259342.315400000661612 ], [ 359611.982500001788139, 259354.386500000953674 ], [ 359615.170000001788139, 259358.845499999821186 ], [ 359618.33049999922514, 259366.470800001174212 ], [ 359635.85360000282526, 259391.94539999961853 ], [ 359666.081699997186661, 259440.53319999948144 ], [ 359673.228799998760223, 259453.468400001525879 ], [ 359689.045800000429153, 259489.905999999493361 ], [ 359696.909299999475479, 259513.401700001209974 ], [ 359697.690399996936321, 259516.363400001078844 ], [ 359702.425800003111362, 259528.434500001370907 ], [ 359702.404200002551079, 259530.967500001192093 ], [ 359705.559299997985363, 259539.225900001823902 ], [ 359705.537799999117851, 259541.758900001645088 ], [ 359707.123400002717972, 259544.938299998641014 ], [ 359711.023699998855591, 259560.379999998956919 ], [ 359719.511900000274181, 259605.201299998909235 ], [ 359722.534000001847744, 259629.079599998891354 ], [ 359720.856600001454353, 259636.665300000458956 ], [ 359732.958499997854233, 259635.919900000095367 ], [ 359820.183399997651577, 259525.176399998366833 ], [ 359847.086599998176098, 259490.777300000190735 ], [ 359815.892200000584126, 259460.968899998813868 ], [ 359747.459899999201298, 259448.165399998426437 ], [ 359741.769000001251698, 259453.607200000435114 ], [ 359711.368199996650219, 259425.282999999821186 ], [ 359708.160999998450279, 259423.145799998193979 ], [ 359698.57150000333786, 259412.934799998998642 ], [ 359666.685900002717972, 259369.610700000077486 ], [ 359660.339699998497963, 259357.315400000661612 ], [ 359657.184500001370907, 259349.05689999833703 ], [ 359664.461099997162819, 259346.794399999082088 ], [ 359668.404600001871586, 259357.170299999415874 ], [ 359671.579499997198582, 259363.106899999082088 ], [ 359693.897299997508526, 259393.686999998986721 ], [ 359698.713600002229214, 259396.25959999859333 ], [ 359702.745200000703335, 259396.292599998414516 ], [ 359706.792900003492832, 259394.425900001078844 ], [ 359765.34009999781847, 259337.065400000661612 ], [ 359783.203100003302097, 259322.646099999547005 ], [ 359799.417400002479553, 259312.435300000011921 ], [ 359809.946199998259544, 259307.032999999821186 ], [ 359830.98589999973774, 259298.339299999177456 ], [ 359857.712899997830391, 259284.625900000333786 ], [ 359922.57209999859333, 259243.571299999952316 ], [ 359853.526299998164177, 259018.824799999594688 ], [ 359729.951899997889996, 259042.300299998372793 ], [ 359726.789300002157688, 259040.060600001364946 ], [ 359725.437899999320507, 259042.519200000911951 ], [ 359645.009999997913837, 259044.989799998700619 ], [ 359613.155000001192093, 259028.882399998605251 ], [ 359542.246500000357628, 258926.223799999803305 ], [ 359559.179799996316433, 258909.290500000119209 ], [ 359503.268500000238419, 258798.281100001186132 ], [ 359503.162500001490116, 258798.296999998390675 ], [ 359503.160800002515316, 258798.254599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104028300", "MAP": "D9-9245-T018", "PARCEL_NAM": "3-5D", "ACRE": "0.28", "LONGITUDE": -64.95526941, "LATITUDE": 18.36592908, "OBJECTID_1": 647, "PARCEL_NO_": "101104028300", "Tax_Legal_": "3-5D HULL NO. 4 LITTLE NORTHSIDE QTR", "Name": "BURTON-GREAUX, RYAN", "Address": "6534 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.01202427199999, "SHAPE_Area": 931.90414509699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356188.571999996900558, 259587.756099998950958 ], [ 356234.788400001823902, 259594.714800000190735 ], [ 356234.366099998354912, 259585.362900000065565 ], [ 356234.25110000371933, 259583.560499999672174 ], [ 356203.536200001835823, 259570.706500001251698 ], [ 356196.545299999415874, 259561.032000001519918 ], [ 356190.445900000631809, 259557.1081000007689 ], [ 356181.597999997437, 259554.502500001341105 ], [ 356185.550499998033047, 259563.822999998927116 ], [ 356188.656999997794628, 259577.780600000172853 ], [ 356188.571999996900558, 259587.756099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95197077, "LATITUDE": 18.36576789, "OBJECTID_1": 618, "PARCEL_NO_": "101104025100", "Tax_Legal_": "HULL 7B LT. NORTHSIDE", "Name": "STEWART, RUSSELL R. & ANNE E.", "Address": "678 Ocean Lakes Loop", "City": "Pawleys Island", "State": "South Carolina", "Zip": 295850000, "Country": "United States", "Land_Value": 107000, "Improved_V": 275100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.27812158900002, "SHAPE_Area": 3201.5902150900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356521.691399998962879, 259563.437800001353025 ], [ 356520.818300001323223, 259607.773899998515844 ], [ 356541.652900002896786, 259600.512499999254942 ], [ 356540.052799999713898, 259599.021800000220537 ], [ 356540.117600001394749, 259591.422899998724461 ], [ 356544.192299999296665, 259586.390000000596046 ], [ 356548.238200001418591, 259584.734400000423193 ], [ 356558.731100000441074, 259583.553700000047684 ], [ 356565.199600003659725, 259581.495700001716614 ], [ 356575.733800001442432, 259575.460200000554323 ], [ 356583.051700003445148, 259568.3429000005126 ], [ 356590.393100000917912, 259558.481600001454353 ], [ 356596.136200003325939, 259546.918499998748302 ], [ 356600.324199996888638, 259528.587600000202656 ], [ 356524.243699997663498, 259550.25620000064373 ], [ 356521.691399998962879, 259563.437800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104014200", "MAP": "D9-7051-T002", "PARCEL_NAM": "16-2", "ACRE": null, "LONGITUDE": -64.95675057, "LATITUDE": 18.36549158, "OBJECTID_1": 532, "PARCEL_NO_": "101104014200", "Tax_Legal_": "REM 16 BONNE RESOLUTION No.5 LITTLE NORTHSIDE QUARTER", "Name": "OLIVE, TIMOTHY M. & VIRGINIA A.", "Address": "PO Box 302775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.05480201099999, "SHAPE_Area": 2802.47302743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355998.110799998044968, 259542.81529999896884 ], [ 356036.349799998104572, 259541.115800000727177 ], [ 356092.678700000047684, 259553.593699999153614 ], [ 356089.811499997973442, 259538.130399998277426 ], [ 356084.408299997448921, 259509.799600001424551 ], [ 356019.878100000321865, 259512.226799998432398 ], [ 356015.83389999717474, 259513.671300001442432 ], [ 356010.135799996554852, 259519.957499999552965 ], [ 356004.432300001382828, 259526.876899998635054 ], [ 355998.674800001084805, 259540.128699999302626 ], [ 355998.110799998044968, 259542.81529999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203012000", "MAP": "B9-237-T69", "PARCEL_NAM": "17-1", "ACRE": "0.50", "LONGITUDE": -64.94752799, "LATITUDE": 18.36602796, "OBJECTID_1": 720, "PARCEL_NO_": "101203012000", "Tax_Legal_": "ST PETER 17-1 LITTLE NORTHSIDE", "Name": "BRYAN, PETER LEOPOLD", "Address": "17-1 St. Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99700, "Improved_V": 102100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.88061231500001, "SHAPE_Area": 2798.5524417699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356959.396499998867512, 259595.276700001209974 ], [ 356960.076899997889996, 259610.058800000697374 ], [ 357073.770599998533726, 259610.567200001329184 ], [ 357061.25620000064373, 259565.079599998891354 ], [ 357045.031000003218651, 259576.557000000029802 ], [ 357028.840000003576279, 259584.023800000548363 ], [ 356999.755199998617172, 259590.540800001472235 ], [ 356977.164099998772144, 259592.044599998742342 ], [ 356959.396499998867512, 259595.276700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94632415, "LATITUDE": 18.36570231, "OBJECTID_1": 722, "PARCEL_NO_": "101203012200", "Tax_Legal_": "ST PETER 17-3 LITTLE NORTHSIDE", "Name": "STIEHLER, ANN B. & BRYAN PETER", "Address": "17-3 EST. ST.PETER HULL BAY RD", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 360300, "Improved_V": 110400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 499.177558078, "SHAPE_Area": 14609.315237299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357177.148699998855591, 259496.789500001817942 ], [ 357096.222499996423721, 259530.746500000357628 ], [ 357072.627300001680851, 259555.462400000542402 ], [ 357061.25620000064373, 259565.079599998891354 ], [ 357073.770599998533726, 259610.567200001329184 ], [ 357098.76799999922514, 259610.560699999332428 ], [ 357150.373800002038479, 259610.771899998188019 ], [ 357226.170800000429153, 259610.970100000500679 ], [ 357216.334299996495247, 259535.10700000077486 ], [ 357209.507200002670288, 259484.599800001829863 ], [ 357198.152300000190735, 259492.317299999296665 ], [ 357186.833400003612041, 259495.813299998641014 ], [ 357177.148699998855591, 259496.789500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94114876, "LATITUDE": 18.3657271, "OBJECTID_1": 732, "PARCEL_NO_": "101203013100", "Tax_Legal_": "LERKENLUND 1-12 GR NORTHSIDE", "Name": "OKEEFE, CHRISTINE A. & THOMAS C.", "Address": "PO Box 11660", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 199600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.94513516500001, "SHAPE_Area": 3166.2846978299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357723.567800000309944, 259531.870200000703335 ], [ 357687.400600001215935, 259517.853100001811981 ], [ 357683.325900003314018, 259522.885999999940395 ], [ 357683.268299996852875, 259529.640500001609325 ], [ 357687.175800003111362, 259544.238000001758337 ], [ 357688.707500003278255, 259553.749699998646975 ], [ 357686.970799997448921, 259568.300999999046326 ], [ 357684.494300000369549, 259575.035700000822544 ], [ 357680.401600003242493, 259582.179400000721216 ], [ 357673.900799997150898, 259588.036800000816584 ], [ 357664.991800002753735, 259592.607900001108646 ], [ 357680.923799999058247, 259615.536400001496077 ], [ 357690.641000002622604, 259610.760800000280142 ], [ 357705.195900000631809, 259606.02479999884963 ], [ 357709.24549999833107, 259603.947000000625849 ], [ 357712.490500003099442, 259601.651500001549721 ], [ 357717.380500003695488, 259595.56980000063777 ], [ 357719.043499998748302, 259589.672800000756979 ], [ 357719.948700003325939, 259578.070099998265505 ], [ 357718.37389999628067, 259573.624200001358986 ], [ 357717.711400002241135, 259556.731300000101328 ], [ 357720.248999997973442, 259542.819899998605251 ], [ 357723.567800000309944, 259531.870200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104011200", "MAP": "G9-1796-T71", "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.95595969, "LATITUDE": 18.36581117, "OBJECTID_1": 503, "PARCEL_NO_": "101104011200", "Tax_Legal_": "3 & 3-A ESTATE HULL/WEST PART NO.4B LT NORTHSIDE QTR", "Name": "LAPLACE, EMANUEL B. & NOREEN C. (TRUSTEES)", "Address": "PO Box 152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 80400, "Improved_V": 166000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.55214308699999, "SHAPE_Area": 4702.4884936799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356143.090999998152256, 259531.178199999034405 ], [ 356089.811499997973442, 259538.130399998277426 ], [ 356101.375699996948242, 259600.497600000351667 ], [ 356141.747100003063679, 259594.284200001507998 ], [ 356179.699500001966953, 259588.050900001078844 ], [ 356179.764200001955032, 259580.451999999582767 ], [ 356177.447800002992153, 259568.400800000876188 ], [ 356173.506099998950958, 259557.813799999654293 ], [ 356167.149099998176098, 259546.78489999845624 ], [ 356156.749799996614456, 259536.989500001072884 ], [ 356150.328100003302097, 259533.559399999678135 ], [ 356143.090999998152256, 259531.178199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104015500", "MAP": "D9-8896-T014", "PARCEL_NAM": "3-5B", "ACRE": ".38", "LONGITUDE": -64.95515811, "LATITUDE": 18.36565557, "OBJECTID_1": 541, "PARCEL_NO_": "101104015500", "Tax_Legal_": "HUL 3-5B LT. NORTHSIDE", "Name": "KING, CAROL TERESA", "Address": "6E HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.47876704500001, "SHAPE_Area": 1736.4506346799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356201.797100000083447, 259521.013099998235703 ], [ 356204.796499997377396, 259524.340700000524521 ], [ 356204.806199997663498, 259524.034000001847744 ], [ 356204.806199997663498, 259524.351500000804663 ], [ 356204.796499997377396, 259524.340700000524521 ], [ 356204.608400002121925, 259530.285000000149012 ], [ 356204.01240000128746, 259549.116500001400709 ], [ 356200.996200002729893, 259554.990299999713898 ], [ 356196.593199998140335, 259561.062800001353025 ], [ 356203.536200001835823, 259570.706500001251698 ], [ 356234.25110000371933, 259583.560499999672174 ], [ 356229.83500000089407, 259514.325800001621246 ], [ 356226.236699998378754, 259514.749099999666214 ], [ 356218.198600001633167, 259517.649599999189377 ], [ 356210.927400000393391, 259519.278900001198053 ], [ 356201.797100000083447, 259521.013099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403010900", "MAP": "D9-1492-T79", "PARCEL_NAM": "C-23", "ACRE": ".51", "LONGITUDE": -64.9102529, "LATITUDE": 18.36575207, "OBJECTID_1": 1106, "PARCEL_NO_": "101403010900", "Tax_Legal_": "LOVENLUND C-23 #74 GT. NORTHSIDE", "Name": "GOMEZ, FABIO & EMILCE CACACE", "Address": "PO Box 155", "City": "Bronxville", "State": "New York", "Zip": 10708, "Country": "United States", "Land_Value": 333500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.935018055, "SHAPE_Area": 2915.65297573 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360994.725299999117851, 259564.764800000935793 ], [ 360982.664800003170967, 259560.655299998819828 ], [ 360969.01860000193119, 259553.366399999707937 ], [ 360928.917700000107288, 259622.488000001758337 ], [ 360935.344800002872944, 259625.284800000488758 ], [ 360936.92509999871254, 259629.09739999845624 ], [ 360940.920699998736382, 259633.352000001817942 ], [ 360946.536100000143051, 259636.775499999523163 ], [ 360955.385799996554852, 259639.169900000095367 ], [ 360964.26240000128746, 259638.398200001567602 ], [ 360991.347199998795986, 259582.680100001394749 ], [ 360994.725299999117851, 259564.764800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403011000", "MAP": "D9-1492-T79", "PARCEL_NAM": "C-24", "ACRE": null, "LONGITUDE": -64.90985725, "LATITUDE": 18.36576482, "OBJECTID_1": 1107, "PARCEL_NO_": "101403011000", "Tax_Legal_": "C-24&C-25-A LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "SAMELSON, BRIAN D.& HEATHER A.", "Address": "27586 Hickory Blvd", "City": "Bonita Springs", "State": "Florida", "Zip": 34134, "Country": "United States", "Land_Value": 357600, "Improved_V": 860600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.45572568599999, "SHAPE_Area": 2883.9089651600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361033.390500001609325, 259569.514199998229742 ], [ 360994.725299999117851, 259564.764800000935793 ], [ 360991.347199998795986, 259582.680100001394749 ], [ 360964.26240000128746, 259638.398200001567602 ], [ 360970.734499998390675, 259635.918099999427795 ], [ 360973.173199996352196, 259633.61600000038743 ], [ 360982.08219999819994, 259629.044900000095367 ], [ 360995.013700000941753, 259625.562100000679493 ], [ 361000.66330000013113, 259624.975099999457598 ], [ 361011.141800001263618, 259625.482999999076128 ], [ 361019.190499998629093, 259627.23759999871254 ], [ 361027.224899999797344, 259630.680900000035763 ], [ 361033.390500001609325, 259569.514199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92099002, "LATITUDE": 18.36580958, "OBJECTID_1": 1097, "PARCEL_NO_": "101304039900", "Tax_Legal_": "PETERBORG 11REM,11-76-1-11-76-8& 11-76 REM GT. NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 508300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.737536815, "SHAPE_Area": 2668.6846245299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359879.12219999730587, 259611.151700001209974 ], [ 359802.961300000548363, 259559.021499998867512 ], [ 359784.212899997830391, 259582.721700001507998 ], [ 359845.914200000464916, 259628.400699999183416 ], [ 359854.020499996840954, 259623.400800000876188 ], [ 359879.12219999730587, 259611.151700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031600", "MAP": "A9-394A-T91", "PARCEL_NAM": "8A", "ACRE": "1.414", "LONGITUDE": -64.96796422, "LATITUDE": 18.36581215, "OBJECTID_1": 453, "PARCEL_NO_": "101103031600", "Tax_Legal_": "8A REM.NELTJBERG EASTERN PART No.6 LITTLE NORTHSIDE QTR.", "Name": "GEORGES, DENISE", "Address": "P.O.BOX 3824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 347.215027421, "SHAPE_Area": 5758.9619742300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354829.4425999969244, 259539.847199998795986 ], [ 354798.700199998915195, 259551.627900000661612 ], [ 354798.567199997603893, 259567.247800000011921 ], [ 354800.014399997889996, 259586.68019999936223 ], [ 354851.629100002348423, 259585.836100000888109 ], [ 354898.546300001442432, 259568.488200001418591 ], [ 354935.773299999535084, 259552.749800000339746 ], [ 354916.741899996995926, 259515.019400000572205 ], [ 354911.090499997138977, 259515.817499998956919 ], [ 354899.769799999892712, 259519.524500001221895 ], [ 354885.999600000679493, 259526.80009999871254 ], [ 354872.247299998998642, 259531.964899998158216 ], [ 354830.220100000500679, 259543.231100000441074 ], [ 354829.4425999969244, 259539.847199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403011000", "MAP": "D9-4191-T88", "PARCEL_NAM": "C-25A", "ACRE": ".24", "LONGITUDE": -64.90951085, "LATITUDE": 18.36579825, "OBJECTID_1": 1107, "PARCEL_NO_": "101403011000", "Tax_Legal_": "C-24&C-25-A LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "SAMELSON, BRIAN D.& HEATHER A.", "Address": "27586 Hickory Blvd", "City": "Bonita Springs", "State": "Florida", "Zip": 34134, "Country": "United States", "Land_Value": 357600, "Improved_V": 860600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.94064608, "SHAPE_Area": 1548.9709294899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361053.93639999628067, 259637.558400001376867 ], [ 361053.082299999892712, 259601.89130000025034 ], [ 361053.949600003659725, 259568.839200001209974 ], [ 361047.097900003194809, 259569.626400001347065 ], [ 361033.390500001609325, 259569.514199998229742 ], [ 361027.224899999797344, 259630.680900000035763 ], [ 361033.64299999922514, 259634.533100001513958 ], [ 361047.325199998915195, 259637.600400000810623 ], [ 361053.93639999628067, 259637.558400001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95072343, "LATITUDE": 18.36574471, "OBJECTID_1": 609, "PARCEL_NO_": "101104024200", "Tax_Legal_": "HULL 11-H-2 LT. NORTHSIDE", "Name": "STEVENS, TERRY and JULIET ROBERTS", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62000, "Improved_V": 201800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.55003683499999, "SHAPE_Area": 2249.7140254000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356704.695200003683567, 259582.215199999511242 ], [ 356708.398800000548363, 259526.094700001180172 ], [ 356676.839299999177456, 259539.135299999266863 ], [ 356667.906999997794628, 259546.450399998575449 ], [ 356658.064000003039837, 259566.001600001007318 ], [ 356666.901000000536442, 259569.873599998652935 ], [ 356675.511500000953674, 259600.341499999165535 ], [ 356694.146600000560284, 259589.939399998635054 ], [ 356704.695200003683567, 259582.215199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020400", "MAP": "D9-212-T59", "PARCEL_NAM": "16-J", "ACRE": "1.08", "LONGITUDE": -64.96122739, "LATITUDE": 18.36578218, "OBJECTID_1": 420, "PARCEL_NO_": "101103020400", "Tax_Legal_": "DOROTHEA 16J LT. NORTHSIDE", "Name": "DAILEY, THERESA P.", "Address": "168 CROWN BAY SUITE 310", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93800, "Improved_V": 172400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.86213504599999, "SHAPE_Area": 3238.31276045 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355624.50450000166893, 259541.921399999409914 ], [ 355603.718299999833107, 259520.853100001811981 ], [ 355578.638099998235703, 259530.569200001657009 ], [ 355554.322899997234344, 259545.146699998527765 ], [ 355552.755199998617172, 259546.393800001591444 ], [ 355549.836300000548363, 259552.02309999987483 ], [ 355544.936300002038479, 259564.886300001293421 ], [ 355544.007799997925758, 259567.033300001174212 ], [ 355541.188799999654293, 259576.897300001233816 ], [ 355538.803199999034405, 259581.286100000143051 ], [ 355536.951099999248981, 259584.19649999961257 ], [ 355536.951099999248981, 259588.165300000458956 ], [ 355538.803199999034405, 259592.398600000888109 ], [ 355542.507299996912479, 259595.309099998325109 ], [ 355549.439599998295307, 259597.912500001490116 ], [ 355555.471900001168251, 259596.102800000458956 ], [ 355577.407499998807907, 259580.377199999988079 ], [ 355589.58669999986887, 259570.555500000715256 ], [ 355598.531599998474121, 259561.762800000607967 ], [ 355613.140600003302097, 259550.694400001317263 ], [ 355624.50450000166893, 259541.921399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9433894, "LATITUDE": 18.36561998, "OBJECTID_1": 763, "PARCEL_NO_": "101203016400", "Tax_Legal_": "PAR 13-5J ST PETER QTR No. 2 LITTLE NORTHSIDE", "Name": "QUERRARD, SHERRY & BLANCHARD", "Address": "P.O. BOX 4153", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70100, "Improved_V": 66600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.78338556400001, "SHAPE_Area": 2501.3146343600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357424.478000000119209, 259568.242800001055002 ], [ 357427.009099997580051, 259604.803399998694658 ], [ 357436.747800000011921, 259597.494899999350309 ], [ 357443.250500001013279, 259591.426399998366833 ], [ 357450.575599998235703, 259583.464800000190735 ], [ 357453.842200003564358, 259578.636300001293421 ], [ 357457.92230000346899, 259572.970199998468161 ], [ 357471.755500003695488, 259558.30689999833703 ], [ 357489.618500001728535, 259543.887600000947714 ], [ 357499.3733000010252, 259534.679299999028444 ], [ 357500.195799998939037, 259532.786200001835823 ], [ 357509.151600003242493, 259522.727000001817942 ], [ 357516.527099996805191, 259508.855200000107288 ], [ 357476.064000003039837, 259525.833700001239777 ], [ 357424.478000000119209, 259568.242800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103024300", "MAP": "G9-1935-T71", "PARCEL_NAM": "16A", "ACRE": ".86", "LONGITUDE": -64.95819649000001, "LATITUDE": 18.36568783, "OBJECTID_1": 434, "PARCEL_NO_": "101103024300", "Tax_Legal_": "BONNE RESOLUTION 16A LT. NORTHSIDE", "Name": "GREAUX, HENRY J", "Address": "4 EST. HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.23908458400001, "SHAPE_Area": 3553.76112354 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355900.51690000295639, 259514.416299998760223 ], [ 355883.577100001275539, 259515.122000001370907 ], [ 355858.162399999797344, 259564.098799999803305 ], [ 355906.3074000030756, 259591.934999998658895 ], [ 355928.397900000214577, 259554.541200000792742 ], [ 355919.875600002706051, 259513.73030000180006 ], [ 355900.51690000295639, 259514.416299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101403010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91498915, "LATITUDE": 18.36573005, "OBJECTID_1": 1104, "PARCEL_NO_": "101403010700", "Tax_Legal_": "PETERBORG 14-17 GR NORTHSIDE QTR", "Name": "ORSHAN, JANET SUE", "Address": "45 Pebble Ln", "City": "Roslyn Heights", "State": "New York", "Zip": 11577, "Country": "United States", "Land_Value": 193700, "Improved_V": 508600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.05595335800001, "SHAPE_Area": 1750.7514342500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360462.620200000703335, 259553.232599999755621 ], [ 360457.703199997544289, 259562.480500001460314 ], [ 360438.868500001728535, 259596.312399998307228 ], [ 360467.622500002384186, 259628.633900001645088 ], [ 360471.72410000115633, 259620.434799998998642 ], [ 360468.52589999884367, 259617.242300000041723 ], [ 360470.984399996697903, 259612.618299998342991 ], [ 360473.392499998211861, 259613.904599998146296 ], [ 360475.006899997591972, 259613.706700000911951 ], [ 360485.67960000038147, 259591.418200001120567 ], [ 360462.620200000703335, 259553.232599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103030800", "MAP": "A9-394A-T91", "PARCEL_NAM": "4A", "ACRE": ".58", "LONGITUDE": -64.96714704, "LATITUDE": 18.36567157, "OBJECTID_1": 445, "PARCEL_NO_": "101103030800", "Tax_Legal_": "NELTJBERG/EAST PART 4A LT. NORTHSIDE", "Name": "MOOLENAAR, K", "Address": "2386 Morris Ave", "City": "Bronx", "State": "New York", "Zip": 10468, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.25051205, "SHAPE_Area": 2610.81273758 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354978.417999997735023, 259563.653499998152256 ], [ 354965.181800000369549, 259508.238699998706579 ], [ 354916.741899996995926, 259515.019400000572205 ], [ 354935.773299999535084, 259552.749800000339746 ], [ 354950.845100000500679, 259582.004099998623133 ], [ 354965.454099997878075, 259570.935699999332428 ], [ 354978.417999997735023, 259563.653499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90855799000001, "LATITUDE": 18.36573093, "OBJECTID_1": 1110, "PARCEL_NO_": "101403011400", "Tax_Legal_": "C-28 LOVENLUND (CONS) NO.2 GREAT NORTHSIDE QTR.", "Name": "PRESERVATION LOVENLUND LIMITED", "Address": "20000 Shaker Blvd", "City": "Shaker Heights", "State": "Ohio", "Zip": 44122, "Country": "United States", "Land_Value": 352100, "Improved_V": 200500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.35508172300001, "SHAPE_Area": 2001.12461282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361157.856499999761581, 259630.694600000977516 ], [ 361158.410300001502037, 259565.682300001382828 ], [ 361127.768700003623962, 259565.642599999904633 ], [ 361124.896600000560284, 259618.814699999988079 ], [ 361129.714699998497963, 259621.176100000739098 ], [ 361135.308499999344349, 259627.132500000298023 ], [ 361141.726700000464916, 259630.984700001776218 ], [ 361151.391599997878075, 259632.330400001257658 ], [ 361157.856499999761581, 259630.694600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "101104023700", "MAP": "G9-1417-T69", "PARCEL_NAM": "15", "ACRE": null, "LONGITUDE": -64.94965476, "LATITUDE": 18.36581133, "OBJECTID_1": 605, "PARCEL_NO_": "101104023700", "Tax_Legal_": "HULL 15 /EASTRN PART LT. NORTHSIDE", "Name": "S.T. PROPERTIES LLC", "Address": "8168 Crown Bay Marine", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 217800, "Improved_V": 325700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.00532371200001, "SHAPE_Area": 2281.8019770699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356773.515900000929832, 259549.425700001418591 ], [ 356777.954599998891354, 259596.324799999594688 ], [ 356824.747699998319149, 259593.541400000452995 ], [ 356820.346799999475479, 259542.209600001573563 ], [ 356796.916900001466274, 259547.506299998611212 ], [ 356773.515900000929832, 259549.425700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94242215, "LATITUDE": 18.36562273, "OBJECTID_1": 766, "PARCEL_NO_": "101203016700", "Tax_Legal_": "13-5-K,13-5-K-1&ROW13-5-K-2 ST.PETER #2 LT.NORTHSIDE QTR", "Name": "QUERRARD, NOELLE Y", "Address": "7475 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113400, "Improved_V": 299600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.47530809300002, "SHAPE_Area": 2787.2327180699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357566.615599997341633, 259497.866099998354912 ], [ 357564.257799997925758, 259490.669700000435114 ], [ 357552.087600000202656, 259499.436000000685453 ], [ 357567.971000000834465, 259528.0636 ], [ 357563.892700001597404, 259533.518699999898672 ], [ 357563.846000000834465, 259539.006700001657009 ], [ 357533.010099999606609, 259561.7635000012815 ], [ 357552.021700002253056, 259601.815799999982119 ], [ 357592.612499997019768, 259569.850699998438358 ], [ 357580.019000001251698, 259533.650600001215935 ], [ 357566.615599997341633, 259497.866099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95138603, "LATITUDE": 18.36565458, "OBJECTID_1": 613, "PARCEL_NO_": "101104024600", "Tax_Legal_": "HULL 7A LT. NORTHSIDE", "Name": "MOOTOOVERAN, IRRESAPEN & BHANMATT", "Address": "PO Box 303434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 126900, "Improved_V": 109700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.07532145900001, "SHAPE_Area": 2335.9239018200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356570.814999997615814, 259584.919199999421835 ], [ 356571.578100003302097, 259589.991700001060963 ], [ 356586.944799996912479, 259584.629000000655651 ], [ 356636.279100000858307, 259567.511999998241663 ], [ 356640.486900001764297, 259546.859299998730421 ], [ 356647.20719999819994, 259515.250199999660254 ], [ 356605.971900001168251, 259528.21169999986887 ], [ 356603.430699996650219, 259542.545200001448393 ], [ 356600.115599997341633, 259553.072799999266863 ], [ 356592.749099999666214, 259565.889199998229742 ], [ 356583.787900000810623, 259576.581599999219179 ], [ 356576.482600003480911, 259582.2212999984622 ], [ 356570.814999997615814, 259584.919199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92072395, "LATITUDE": 18.3656063, "OBJECTID_1": 1097, "PARCEL_NO_": "101304039900", "Tax_Legal_": "PETERBORG 11REM,11-76-1-11-76-8& 11-76 REM GT. NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 508300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.70709744800001, "SHAPE_Area": 3784.7281449699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359918.775399997830391, 259594.588799998164177 ], [ 359826.596100002527237, 259529.661899998784065 ], [ 359802.961300000548363, 259559.021499998867512 ], [ 359879.12219999730587, 259611.151700001209974 ], [ 359918.775399997830391, 259594.588799998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304021500", "MAP": "A9-65-T67", "PARCEL_NAM": "12-6", "ACRE": ".56", "LONGITUDE": -64.91640788, "LATITUDE": 18.36568448, "OBJECTID_1": 983, "PARCEL_NO_": "101304021500", "Tax_Legal_": "PETERBORG 12-6 GR NORTHSIDE", "Name": "RONALD MOOREHEAD & SUSAN MOOREHEAD REV FAM TR", "Address": "PO Box 1266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 122300, "Improved_V": 490200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.009968262, "SHAPE_Area": 2830.2937084199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360339.995999999344349, 259559.828299999237061 ], [ 360283.568499997258186, 259557.677799999713898 ], [ 360286.747000001370907, 259563.192200001329184 ], [ 360289.097599998116493, 259571.232999999076128 ], [ 360288.179799996316433, 259584.313299998641014 ], [ 360280.710799999535084, 259609.161200001835823 ], [ 360308.112800002098083, 259610.863099999725819 ], [ 360340.351000003516674, 259612.815699998289347 ], [ 360339.995999999344349, 259559.828299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104028100", "MAP": "D9-6681-T99", "PARCEL_NAM": "11G-2", "ACRE": ".53", "LONGITUDE": -64.95010437000001, "LATITUDE": 18.3652614, "OBJECTID_1": 646, "PARCEL_NO_": "101104028100", "Tax_Legal_": "HULL ESTATE 11G-2 4A LITTLE NORTHSIDE QTR", "Name": "SCARING, DENISE", "Address": "2115 Central Dr S", "City": "East Meadow", "State": "New York", "Zip": 11554, "Country": "United States", "Land_Value": 85800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.54873458399999, "SHAPE_Area": 2353.6200790299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356779.482699997723103, 259536.105999998748302 ], [ 356770.932599999010563, 259474.044199999421835 ], [ 356709.241400003433228, 259511.046900000423193 ], [ 356727.075699999928474, 259520.87220000103116 ], [ 356738.981899999082088, 259527.486800000071526 ], [ 356747.448600001633167, 259530.926399998366833 ], [ 356753.004900000989437, 259533.043000001460314 ], [ 356759.354900002479553, 259535.159699998795986 ], [ 356763.323700003325939, 259535.424300000071526 ], [ 356768.086199998855591, 259536.217999998480082 ], [ 356773.37780000269413, 259536.217999998480082 ], [ 356779.482699997723103, 259536.105999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304021300", "MAP": "A9-65-T67", "PARCEL_NAM": "11-1-6", "ACRE": null, "LONGITUDE": -64.91751988, "LATITUDE": 18.36571491, "OBJECTID_1": 981, "PARCEL_NO_": "101304021300", "Tax_Legal_": "PETERBORG ESTATE 11-1-6 No.12 GREAT NORTHSIDE QTR.", "Name": "GREENAWAY, CLAYTON H. & ROSETTA C", "Address": "PO Box 9067", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 136000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.52311232400001, "SHAPE_Area": 1744.19940146 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360220.546700000762939, 259572.360700000077486 ], [ 360168.147100001573563, 259570.665300000458956 ], [ 360167.099899999797344, 259598.943199999630451 ], [ 360219.432899996638298, 259608.448600001633167 ], [ 360222.77139999717474, 259595.177000001072884 ], [ 360220.546700000762939, 259572.360700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304021400", "MAP": "D9-6373-T98", "PARCEL_NAM": "12-7", "ACRE": null, "LONGITUDE": -64.91698633, "LATITUDE": 18.36571112, "OBJECTID_1": 982, "PARCEL_NO_": "101304021400", "Tax_Legal_": "PETERBORG 12-4 REM.&12-7-A No.12 GREAT NORTHSIDE QTR.", "Name": "WEBBE, KESHEMA & DENNY", "Address": "PO Box 8573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 165000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.491961479, "SHAPE_Area": 1513.7458047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360259.346100002527237, 259573.881400000303984 ], [ 360255.681400001049042, 259577.558499999344349 ], [ 360220.546700000762939, 259572.360700000077486 ], [ 360222.77139999717474, 259595.177000001072884 ], [ 360272.662100002169609, 259607.406599998474121 ], [ 360280.105899997055531, 259585.513799998909235 ], [ 360281.810199998319149, 259574.761900000274181 ], [ 360259.346100002527237, 259573.881400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103036300", "MAP": "D9-8402-T010", "PARCEL_NAM": "8-1-B", "ACRE": "0.53", "LONGITUDE": -64.96630428, "LATITUDE": 18.3653139, "OBJECTID_1": 490, "PARCEL_NO_": "101103036300", "Tax_Legal_": "8-1-B NELTJEBERG(EASTERN PT) NO.6 LITTLE NORTHSIDE QTR.", "Name": "OSKAR & YENIFFER LALANNE", "Address": "PO BOX 12031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.81153798299999, "SHAPE_Area": 2718.4727562600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355004.917599998414516, 259496.879000000655651 ], [ 355021.7837999984622, 259512.362700000405312 ], [ 355026.465499997138977, 259541.622900001704693 ], [ 355031.852200001478195, 259538.548500001430511 ], [ 355039.157600000500679, 259532.9087999984622 ], [ 355045.629600003361702, 259530.428599998354912 ], [ 355049.382500000298023, 259530.852699998766184 ], [ 355050.262999996542931, 259527.135299999266863 ], [ 355073.107199996709824, 259501.39750000089407 ], [ 355071.888800002634525, 259486.929499998688698 ], [ 355047.67400000244379, 259473.527499999850988 ], [ 355023.068099997937679, 259472.716299999505281 ], [ 355019.424099996685982, 259482.929200001060963 ], [ 355008.031499996781349, 259495.0793999992311 ], [ 355004.917599998414516, 259496.879000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203013300", "MAP": "A9-115-T69", "PARCEL_NAM": "1-5", "ACRE": "3.75", "LONGITUDE": -64.94199915, "LATITUDE": 18.36486659, "OBJECTID_1": 734, "PARCEL_NO_": "101203013300", "Tax_Legal_": "LERKENLUND 1-1,2,3&5 GREAT NORTHSIDE", "Name": "JULIE BEATRICE DEITRICH REVOC LIVING TRUST", "Address": "7477 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 552300, "Improved_V": 107800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 622.8558698000001, "SHAPE_Area": 17059.45406 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357679.812899999320507, 259556.632199998944998 ], [ 357678.288400001823902, 259546.276200000196695 ], [ 357671.215000003576279, 259524.686700001358986 ], [ 357652.957500003278255, 259490.762299999594688 ], [ 357641.017499998211861, 259472.510600000619888 ], [ 357635.483000002801418, 259459.588599998503923 ], [ 357633.983599998056889, 259446.277399998158216 ], [ 357635.637599997222424, 259441.4358000010252 ], [ 357637.264600001275539, 259439.760299999266863 ], [ 357639.726700000464916, 259434.714299999177456 ], [ 357642.208599999547005, 259427.3462999984622 ], [ 357643.923699997365475, 259415.328000001609325 ], [ 357642.356100000441074, 259410.037799999117851 ], [ 357639.9712999984622, 259406.007500000298023 ], [ 357629.580899998545647, 259395.156700000166893 ], [ 357627.235699996352196, 259386.482700001448393 ], [ 357626.513899996876717, 259376.555399999022484 ], [ 357631.47410000115633, 259362.241599999368191 ], [ 357629.884800001978874, 259359.484400000423193 ], [ 357625.07209999859333, 259356.489700000733137 ], [ 357619.438699997961521, 259355.177000001072884 ], [ 357612.174699999392033, 259355.962000001221895 ], [ 357600.040500000119209, 259360.506700001657009 ], [ 357595.170199997723103, 259364.266499999910593 ], [ 357592.722499996423721, 259367.624000001698732 ], [ 357591.892800003290176, 259370.361400000751019 ], [ 357579.683100000023842, 259383.771499998867512 ], [ 357561.785999998450279, 259402.201200000941753 ], [ 357557.732799999415874, 259404.701200000941753 ], [ 357544.696999996900558, 259420.426500000059605 ], [ 357542.229500003159046, 259426.105799999088049 ], [ 357543.02139999717474, 259427.801100000739098 ], [ 357542.884700000286102, 259443.842999998480082 ], [ 357546.043399997055531, 259451.679400000721216 ], [ 357547.647100001573563, 259452.747999999672174 ], [ 357555.609499998390675, 259464.634399998933077 ], [ 357564.257799997925758, 259490.669700000435114 ], [ 357580.019000001251698, 259533.650600001215935 ], [ 357592.612499997019768, 259569.850699998438358 ], [ 357594.192699998617172, 259573.66330000013113 ], [ 357623.441200003027916, 259547.938200000673532 ], [ 357659.412299998104572, 259584.962900001555681 ], [ 357669.12950000166893, 259580.187300000339746 ], [ 357674.006899997591972, 259575.583099998533726 ], [ 357678.121200002729893, 259565.906500000506639 ], [ 357679.812899999320507, 259556.632199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91542385, "LATITUDE": 18.36556925, "OBJECTID_1": 985, "PARCEL_NO_": "101304021700", "Tax_Legal_": "PETERBORG 14-16 GT. NORTHSIDE", "Name": "HANFORD, GEORGE & KAREN", "Address": "2130 Old Seneca Tpke", "City": "Marcellus", "State": "New York", "Zip": 13108, "Country": "United States", "Land_Value": 159700, "Improved_V": 149200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.47129279800001, "SHAPE_Area": 3147.04818157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360457.703199997544289, 259562.480500001460314 ], [ 360399.853699997067451, 259537.942299999296665 ], [ 360395.748400002717972, 259546.5636 ], [ 360384.993000000715256, 259578.561799999326468 ], [ 360378.447200000286102, 259589.696100000292063 ], [ 360433.940700002014637, 259606.826699998229742 ], [ 360438.868500001728535, 259596.312399998307228 ], [ 360457.703199997544289, 259562.480500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021900", "MAP": "B9-201-T66", "PARCEL_NAM": "5F", "ACRE": null, "LONGITUDE": -64.95407697, "LATITUDE": 18.36543946, "OBJECTID_1": 587, "PARCEL_NO_": "101104021900", "Tax_Legal_": "HULL 5F LT. NORTHSIDE", "Name": "BRYAN, DAVID N.", "Address": "1-3 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 252400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 546.50000740799999, "SHAPE_Area": 10435.113166499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356290.208800002932549, 259526.056800000369549 ], [ 356287.701700001955032, 259580.654899999499321 ], [ 356335.44650000333786, 259576.440400000661612 ], [ 356393.359600000083447, 259571.328299999237061 ], [ 356392.123400002717972, 259560.159400001168251 ], [ 356382.286399997770786, 259471.285500001162291 ], [ 356348.329599998891354, 259481.773299999535084 ], [ 356340.2449000030756, 259484.240299999713898 ], [ 356282.242499999701977, 259477.643800001591444 ], [ 356278.990299999713898, 259480.783599998801947 ], [ 356277.885399997234344, 259479.64919999986887 ], [ 356274.496799997985363, 259482.152399998158216 ], [ 356272.3800999969244, 259482.787399999797344 ], [ 356270.686800003051758, 259483.84569999948144 ], [ 356269.416799999773502, 259485.539099998772144 ], [ 356268.358400002121925, 259486.59739999845624 ], [ 356266.030100002884865, 259488.079100001603365 ], [ 356263.701800003647804, 259489.5608000010252 ], [ 356261.373400002717972, 259491.88910000026226 ], [ 356260.526799999177456, 259494.005800001323223 ], [ 356259.468400001525879, 259495.699099998921156 ], [ 356256.716700002551079, 259497.392400000244379 ], [ 356255.235100001096725, 259499.085799999535084 ], [ 356252.483400002121925, 259500.567400000989437 ], [ 356249.520099997520447, 259502.895799998193979 ], [ 356245.075099997222424, 259504.800799999386072 ], [ 356239.994999997317791, 259506.705800000578165 ], [ 356239.994999997317791, 259507.340799998492002 ], [ 356240.630000002682209, 259508.1875 ], [ 356242.111699998378754, 259508.610800001770258 ], [ 356246.345100000500679, 259508.399099998176098 ], [ 356249.943400003015995, 259508.399099998176098 ], [ 356258.621799997985363, 259509.245799999684095 ], [ 356262.643399998545647, 259510.304099999368191 ], [ 356266.453400000929832, 259510.939100001007318 ], [ 356270.263400003314018, 259512.209100000560284 ], [ 356309.210199996829033, 259528.719200000166893 ], [ 356311.750200003385544, 259529.142499998211861 ], [ 356314.925200000405312, 259528.719200000166893 ], [ 356316.830200001597404, 259527.872499998658895 ], [ 356319.581900000572205, 259529.565799999982119 ], [ 356319.370200000703335, 259529.989199999719858 ], [ 356319.158500000834465, 259530.835799999535084 ], [ 356320.216899998486042, 259531.894200000911951 ], [ 356322.756899997591972, 259532.105799999088049 ], [ 356319.793499998748302, 259537.820900000631809 ], [ 356290.208800002932549, 259526.056800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90794907, "LATITUDE": 18.36540541, "OBJECTID_1": 1122, "PARCEL_NO_": "101404010100", "Tax_Legal_": "LOVENLUND C-30 /67 GT. NORTHISDE", "Name": "HORSTMEYER, ERIC S., NICOLE BOSWELL and ZACHARY ZOLLER", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 293300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.11382378100001, "SHAPE_Area": 2737.01597124 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361244.412399999797344, 259598.47239999845624 ], [ 361211.027400001883507, 259541.837200000882149 ], [ 361196.745800003409386, 259514.489199999719858 ], [ 361166.005199998617172, 259526.058899998664856 ], [ 361188.351800002157688, 259553.261700000613928 ], [ 361211.3445999994874, 259599.257199998944998 ], [ 361218.588899999856949, 259600.794199999421835 ], [ 361223.401600003242493, 259603.788899999111891 ], [ 361224.990800000727177, 259606.546100001782179 ], [ 361227.395400002598763, 259608.25450000166893 ], [ 361233.028800003230572, 259609.567200001329184 ], [ 361237.067500002682209, 259608.755899999290705 ], [ 361239.498999997973442, 259607.298099998384714 ], [ 361244.412399999797344, 259598.47239999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104014500", "MAP": null, "PARCEL_NAM": "16F", "ACRE": null, "LONGITUDE": -64.95872777, "LATITUDE": 18.3655391, "OBJECTID_1": 535, "PARCEL_NO_": "101104014500", "Tax_Legal_": "16F BONNE RESOLUTION No.5 LT.NORTHSIDE QTR.", "Name": "GREAUX, FRANCES & JOSEPH", "Address": "4ABC Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.795195793, "SHAPE_Area": 2458.0484436500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355883.577100001275539, 259515.122000001370907 ], [ 355866.63740000128746, 259515.8277000002563 ], [ 355822.272200003266335, 259517.575599998235703 ], [ 355781.132299996912479, 259519.349800001829863 ], [ 355858.162399999797344, 259564.098799999803305 ], [ 355883.577100001275539, 259515.122000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104014100", "MAP": "G9-1935-T71", "PARCEL_NAM": "16C", "ACRE": ".86", "LONGITUDE": -64.95759599, "LATITUDE": 18.36553663, "OBJECTID_1": 531, "PARCEL_NO_": "101104014100", "Tax_Legal_": "16C BONNE RESOLUTION LT. NORTHSIDE", "Name": "GREAUX, MICHAEL & JEFFREY", "Address": "439 Andrea Ct", "City": "Harvard", "State": "Illinois", "Zip": 60033, "Country": "United States", "Land_Value": 83400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.04989261099999, "SHAPE_Area": 3290.36358247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356008.622100003063679, 259508.33500000089407 ], [ 355970.70380000025034, 259510.557799998670816 ], [ 355936.818899996578693, 259512.60249999910593 ], [ 355919.875600002706051, 259513.73030000180006 ], [ 355928.397900000214577, 259554.541200000792742 ], [ 355988.799400001764297, 259563.479299999773502 ], [ 355988.145999997854233, 259545.530999999493361 ], [ 355989.826899997889996, 259537.523200001567602 ], [ 355993.950199998915195, 259526.79109999909997 ], [ 356002.93469999730587, 259513.354699999094009 ], [ 356008.622100003063679, 259508.33500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902030300", "MAP": "D9-3276-T85", "PARCEL_NAM": "11-3", "ACRE": "18.71", "LONGITUDE": -64.91993947, "LATITUDE": 18.36359863, "OBJECTID_1": 4713, "PARCEL_NO_": "102902030300", "Tax_Legal_": "11-2,3,4&13 ESTATE PETERBORG GT. NORTHSIDE", "Name": "THE NATURE CONSERVANCY", "Address": "3052 Estate Little Princess", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 1274100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1905.4946704, "SHAPE_Area": 79325.410369300022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359820.183399997651577, 259525.176399998366833 ], [ 359826.596100002527237, 259529.661899998784065 ], [ 359918.775399997830391, 259594.588799998164177 ], [ 359943.049300000071526, 259584.86600000038743 ], [ 359954.389799997210503, 259578.837200000882149 ], [ 359964.931199997663498, 259571.957299999892712 ], [ 359974.677100002765656, 259563.804499998688698 ], [ 359995.018299996852875, 259542.439399998635054 ], [ 360011.268700003623962, 259528.006900001317263 ], [ 360026.694700002670288, 259515.678700000047684 ], [ 360037.234300002455711, 259509.009899999946356 ], [ 360043.736900001764297, 259502.941500000655651 ], [ 360046.19539999961853, 259498.317499998956919 ], [ 360047.071900002658367, 259490.092000000178814 ], [ 360043.096100002527237, 259483.515599999576807 ], [ 360026.287600003182888, 259468.812600001692772 ], [ 360015.872000001370907, 259460.916900001466274 ], [ 359972.475000001490116, 259443.674199998378754 ], [ 359968.463200002908707, 259441.319299999624491 ], [ 359963.675700001418591, 259435.369500000029802 ], [ 359950.994099996984005, 259409.512299999594688 ], [ 359946.278499998152256, 259395.11939999833703 ], [ 359945.876800000667572, 259347.620000001043081 ], [ 359947.538000002503395, 259341.934099998325109 ], [ 359952.453100003302097, 259332.897300001233816 ], [ 359970.335900001227856, 259316.156199999153614 ], [ 360003.601499997079372, 259292.152699999511242 ], [ 360018.237400002777576, 259277.918099999427795 ], [ 360045.97749999910593, 259239.937199998646975 ], [ 360078.530299998819828, 259204.9510000012815 ], [ 360085.837399996817112, 259199.10020000115037 ], [ 360092.314900003373623, 259195.986800000071526 ], [ 360113.343800000846386, 259188.559599999338388 ], [ 360120.640100002288818, 259183.97520000115037 ], [ 360126.329300001263618, 259178.744500000029802 ], [ 360137.718400001525879, 259167.016399998217821 ], [ 360147.500200003385544, 259154.642000000923872 ], [ 360157.298199996352196, 259140.367800001055002 ], [ 360161.403499998152256, 259131.746599998325109 ], [ 360193.212899997830391, 259089.36600000038743 ], [ 360208.685699999332428, 259071.549699999392033 ], [ 360216.003700003027916, 259064.432399999350309 ], [ 360230.614399999380112, 259053.152899999171495 ], [ 360245.185599997639656, 259046.517200000584126 ], [ 360268.609999999403954, 259041.853799998760223 ], [ 360275.092799998819828, 259038.107099998742342 ], [ 360279.163999997079372, 259033.496399998664856 ], [ 360285.74210000038147, 259018.562600001692772 ], [ 360286.623999997973442, 259009.703899998217821 ], [ 360284.217600002884865, 259008.206500001251698 ], [ 360263.197800002992153, 259014.578400000929832 ], [ 360225.180600002408028, 259028.410500001162291 ], [ 360199.256300002336502, 259042.552700001746416 ], [ 360182.232100002467632, 259053.179099999368191 ], [ 360129.460299998521805, 259095.177000001072884 ], [ 360104.328000001609325, 259111.014400001615286 ], [ 360067.06139999628067, 259131.396600000560284 ], [ 360049.219999998807907, 259143.282900001853704 ], [ 360021.600400000810623, 259167.121500000357628 ], [ 360007.758199997246265, 259182.840199999511242 ], [ 359984.186300002038479, 259204.812100000679493 ], [ 359944.400100000202656, 259236.994899999350309 ], [ 359917.622699998319149, 259256.618599999696016 ], [ 359863.310300000011921, 259290.160100001841784 ], [ 359834.96169999986887, 259304.915699999779463 ], [ 359807.444600000977516, 259316.722800001502037 ], [ 359788.802299998700619, 259327.969300001859665 ], [ 359782.308600001037121, 259332.982400000095367 ], [ 359770.127599999308586, 259343.0152000002563 ], [ 359709.145300000905991, 259402.25560000166297 ], [ 359707.502099998295307, 259405.830699998885393 ], [ 359708.274300001561642, 259409.847800001502037 ], [ 359711.449199996888638, 259415.784400001168251 ], [ 359717.0574000030756, 259420.052200000733137 ], [ 359747.459899999201298, 259448.165399998426437 ], [ 359815.892200000584126, 259460.968899998813868 ], [ 359847.086599998176098, 259490.777300000190735 ], [ 359820.183399997651577, 259525.176399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033600", "MAP": "A9-394A-T91", "PARCEL_NAM": "28", "ACRE": ".759", "LONGITUDE": -64.96834087000001, "LATITUDE": 18.36539992, "OBJECTID_1": 472, "PARCEL_NO_": "101103033600", "Tax_Legal_": "NELTJEBERG 28/EASTERN PT LT. NORTHSIDE", "Name": "FOY, JOAN-TRUSTEE", "Address": "PO Box 304211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.35741979299999, "SHAPE_Area": 3434.4372043200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354831.150499999523163, 259528.673200000077486 ], [ 354840.039700001478195, 259526.423900000751019 ], [ 354840.819099999964237, 259529.596700001507998 ], [ 354844.040700003504753, 259530.045299999415874 ], [ 354859.400200001895428, 259525.526900000870228 ], [ 354865.427100002765656, 259523.687899999320507 ], [ 354842.429700002074242, 259474.243900001049042 ], [ 354830.793799996376038, 259475.896899998188019 ], [ 354800.949400000274181, 259476.919199999421835 ], [ 354798.133100003004074, 259523.547800000756979 ], [ 354798.700199998915195, 259551.627900000661612 ], [ 354829.4425999969244, 259539.847199998795986 ], [ 354827.8766999989748, 259534.346000000834465 ], [ 354831.114600002765656, 259532.894799999892712 ], [ 354831.150499999523163, 259528.673200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94354201, "LATITUDE": 18.36537892, "OBJECTID_1": 747, "PARCEL_NO_": "101203014700", "Tax_Legal_": "ST PETER 13-5B LT. NORTHSIDE", "Name": "KENNETH P QUERRARD & LISA L QUERRARD FAMILY TRUST", "Address": "PO Box 305072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 229400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.55923601200001, "SHAPE_Area": 2111.4831892699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357421.136600002646446, 259519.978700000792742 ], [ 357424.478000000119209, 259568.242800001055002 ], [ 357476.064000003039837, 259525.833700001239777 ], [ 357457.829899996519089, 259489.165300000458956 ], [ 357456.249700002372265, 259485.352699998766184 ], [ 357443.12389999628067, 259511.631999999284744 ], [ 357424.503200002014637, 259520.345499999821186 ], [ 357421.136600002646446, 259519.978700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90770428, "LATITUDE": 18.36532861, "OBJECTID_1": 1123, "PARCEL_NO_": "101404010200", "Tax_Legal_": "C-31 ESTATE LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "WILLIAMS, GUY A. & BONNIE B", "Address": "7 Vale Close Rd NE", "City": "Atlanta", "State": "Georgia", "Zip": 30324, "Country": "United States", "Land_Value": 370800, "Improved_V": 374800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.01830729599999, "SHAPE_Area": 2438.8172150800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361244.412399999797344, 259598.47239999845624 ], [ 361250.094400003552437, 259594.085900001227856 ], [ 361257.363799996674061, 259592.66780000180006 ], [ 361261.390000000596046, 259593.333999998867512 ], [ 361265.405299998819828, 259595.266699999570847 ], [ 361267.809900000691414, 259596.975099999457598 ], [ 361270.19650000333786, 259600.794399999082088 ], [ 361273.414499998092651, 259601.665100000798702 ], [ 361228.188400000333786, 259515.168800000101328 ], [ 361201.599799998104572, 259512.629099998623133 ], [ 361196.745800003409386, 259514.489199999719858 ], [ 361211.027400001883507, 259541.837200000882149 ], [ 361244.412399999797344, 259598.47239999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90739516, "LATITUDE": 18.36531288, "OBJECTID_1": 1124, "PARCEL_NO_": "101404010300", "Tax_Legal_": "C-32& C-33-1LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "ANDREW RIDNER", "Address": "327 N St SW", "City": "Washington", "State": "District of Columbia", "Zip": 200242903, "Country": "United States", "Land_Value": 294300, "Improved_V": 467200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.01310976600001, "SHAPE_Area": 2760.9354748199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361269.279700003564358, 259519.093699999153614 ], [ 361228.188400000333786, 259515.168800000101328 ], [ 361273.414499998092651, 259601.665100000798702 ], [ 361276.645199999213219, 259601.058200001716614 ], [ 361278.28660000115633, 259597.694200001657009 ], [ 361279.11089999973774, 259595.589999999850988 ], [ 361277.564800001680851, 259587.7668999992311 ], [ 361280.007100000977516, 259585.042599998414516 ], [ 361284.060199998319149, 259582.542700000107288 ], [ 361300.16669999808073, 259584.996500000357628 ], [ 361277.254799999296665, 259529.502500001341105 ], [ 361269.279700003564358, 259519.093699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104026100", "MAP": "D9-3172-T85", "PARCEL_NAM": "5G-2", "ACRE": "1.0", "LONGITUDE": -64.95304335, "LATITUDE": 18.36532294, "OBJECTID_1": 628, "PARCEL_NO_": "101104026100", "Tax_Legal_": "5G-2 ESTATE HULL No.4 LITTLE NORTHSIDE QTR.", "Name": "REL 2007 TRUST", "Address": "PO Box 11028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 138300, "Improved_V": 247800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.59253242099999, "SHAPE_Area": 4482.1044350800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356411.308300003409386, 259472.156300000846386 ], [ 356431.597999997437, 259567.953000001609325 ], [ 356469.686499997973442, 259564.590900000184774 ], [ 356474.453599996864796, 259564.170099999755621 ], [ 356450.120899997651577, 259459.597199998795986 ], [ 356442.907300002872944, 259454.471999999135733 ], [ 356437.266699999570847, 259454.003600001335144 ], [ 356424.29559999704361, 259462.130100000649691 ], [ 356420.229800000786781, 259466.107599999755621 ], [ 356411.308300003409386, 259472.156300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91809799000001, "LATITUDE": 18.36552421, "OBJECTID_1": 980, "PARCEL_NO_": "101304021200", "Tax_Legal_": "11-1-2 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "DRISCOLL, RICHARD D. & LISSA F.", "Address": "PO Box 6693", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 102600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.152116492, "SHAPE_Area": 1818.0723023800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360151.441100001335144, 259543.930700000375509 ], [ 360098.102300003170967, 259557.848499998450279 ], [ 360108.426100000739098, 259576.509300000965595 ], [ 360159.92400000244379, 259589.385299999266863 ], [ 360160.051600001752377, 259574.398699998855591 ], [ 360160.881300002336502, 259571.661299999803305 ], [ 360160.141599997878075, 259563.844700001180172 ], [ 360156.216099999845028, 259551.3581000007689 ], [ 360151.441100001335144, 259543.930700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104026700", "MAP": "D9-5661-T94", "PARCEL_NAM": "11B-1", "ACRE": "1.03", "LONGITUDE": -64.95176463, "LATITUDE": 18.36537904, "OBJECTID_1": 633, "PARCEL_NO_": "101104026700", "Tax_Legal_": "HULL 11-B-1 LITTLE NORTHSIDE", "Name": "BLAK, SOREN & GRACE", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 160200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 365.52799816599997, "SHAPE_Area": 2754.1816795300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356605.971900001168251, 259528.21169999986887 ], [ 356647.20719999819994, 259515.250199999660254 ], [ 356663.628300003707409, 259480.765299998223782 ], [ 356657.966099999845028, 259482.829900000244379 ], [ 356652.287799999117851, 259486.794199999421835 ], [ 356644.127599999308586, 259498.126499999314547 ], [ 356634.376299999654293, 259506.912599999457598 ], [ 356618.163699999451637, 259516.912399999797344 ], [ 356606.844800002872944, 259520.408300001174212 ], [ 356600.392499998211861, 259520.566599998623133 ], [ 356589.908600002527237, 259520.691899999976158 ], [ 356579.464299999177456, 259516.173500001430511 ], [ 356575.481299996376038, 259510.441300000995398 ], [ 356574.709200002253056, 259506.424199998378754 ], [ 356575.537100002169609, 259503.897900000214577 ], [ 356532.428099997341633, 259507.986699998378754 ], [ 356524.243699997663498, 259550.25620000064373 ], [ 356600.324199996888638, 259528.587600000202656 ], [ 356605.971900001168251, 259528.21169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020500", "MAP": "D9-212-T59", "PARCEL_NAM": "16-E", "ACRE": ".79", "LONGITUDE": -64.96149276, "LATITUDE": 18.3654037, "OBJECTID_1": 421, "PARCEL_NO_": "101103020500", "Tax_Legal_": "16E DOROTHEA LITTLE NORTHSIDE", "Name": "LEDEE, ANTHONY & JENNIFER", "Address": "PO Box 306386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 87300, "Improved_V": 30600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.66307731500001, "SHAPE_Area": 3992.4557431899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355611.081299997866154, 259508.458799999207258 ], [ 355567.033100001513958, 259474.104499999433756 ], [ 355522.052400000393391, 259511.305599998682737 ], [ 355482.593099996447563, 259543.940400000661612 ], [ 355486.580099999904633, 259546.069899998605251 ], [ 355522.856899999082088, 259547.211199998855591 ], [ 355534.949799999594688, 259547.521299999207258 ], [ 355537.374200001358986, 259546.907800000160933 ], [ 355553.608300000429153, 259534.375100001692772 ], [ 355568.197400003671646, 259525.628600001335144 ], [ 355587.626299999654293, 259516.71059999987483 ], [ 355607.031700000166893, 259510.53660000115633 ], [ 355611.081299997866154, 259508.458799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404010700", "MAP": "D9-6358-T97", "PARCEL_NAM": "34 REM", "ACRE": ".68", "LONGITUDE": -64.90689728, "LATITUDE": 18.36506564, "OBJECTID_1": 1127, "PARCEL_NO_": "101404010700", "Tax_Legal_": "LOVENLUND ESTATE C-34(63)REM. No.2 GREAT NORTHSIDE QTR.", "Name": "TAYLOR, KATHLEEN A. & CARGILL JR., THOMAS", "Address": "3421 MISSISSIPPI STREET", "City": "SAN DEIGO", "State": "California", "Zip": 92104, "Country": "United States", "Land_Value": 396900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.74974327400002, "SHAPE_Area": 3265.8052435300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361293.57150000333786, 259475.636399999260902 ], [ 361302.566699996590614, 259501.091899998486042 ], [ 361296.669600002467632, 259502.960900001227856 ], [ 361321.87780000269413, 259592.140299998223782 ], [ 361326.713899999856949, 259592.390999998897314 ], [ 361337.2516999989748, 259585.933299999684095 ], [ 361333.910599999129772, 259504.846099998801947 ], [ 361327.605800002813339, 259487.695900000631809 ], [ 361317.305299997329712, 259466.29109999909997 ], [ 361293.57150000333786, 259475.636399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203011900", "MAP": "D9-5347-T92", "PARCEL_NAM": "16D-1", "ACRE": null, "LONGITUDE": -64.945416, "LATITUDE": 18.36516743, "OBJECTID_1": 718, "PARCEL_NO_": "101203011900", "Tax_Legal_": "ST PETER 16D LITTLE NORTHSIDE QTR", "Name": "BRYAN, MARIE L QUESTEL", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 276500, "Improved_V": 249400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.87109564400001, "SHAPE_Area": 3741.66037895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357275.864699997007847, 259547.964800000190735 ], [ 357272.853900000452995, 259475.484099999070168 ], [ 357234.93299999833107, 259461.203699998557568 ], [ 357224.938699997961521, 259471.638300001621246 ], [ 357216.816200003027916, 259478.537900000810623 ], [ 357221.312399998307228, 259518.682500001043081 ], [ 357225.272100001573563, 259527.158599998801947 ], [ 357229.276699997484684, 259530.357799999415874 ], [ 357241.331799998879433, 259535.100499998778105 ], [ 357264.637500002980232, 259544.368299998342991 ], [ 357275.864699997007847, 259547.964800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90711141, "LATITUDE": 18.36524124, "OBJECTID_1": 1126, "PARCEL_NO_": "101404010600", "Tax_Legal_": "LOVENLUND C-33(64A)&C-32A No.2 GREAT NORTHSIDE QTR.", "Name": "TAYLOR, KATHLEEN A. & CARGILL JR., THOMAS P.", "Address": "3421 MISSISSIPPI STREET", "City": "SAN DEIGO", "State": "California", "Zip": 92104, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.967712285, "SHAPE_Area": 2036.7396638800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361296.669600002467632, 259502.960900001227856 ], [ 361266.914700001478195, 259512.741500001400709 ], [ 361269.279700003564358, 259519.093699999153614 ], [ 361277.254799999296665, 259529.502500001341105 ], [ 361300.16669999808073, 259584.996500000357628 ], [ 361309.819099999964237, 259587.81980000063777 ], [ 361316.240800000727177, 259591.249800000339746 ], [ 361321.87780000269413, 259592.140299998223782 ], [ 361296.669600002467632, 259502.960900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203015400", "MAP": "D9-4866-T90", "PARCEL_NAM": "14-4", "ACRE": ".507", "LONGITUDE": -64.94393289, "LATITUDE": 18.36544154, "OBJECTID_1": 753, "PARCEL_NO_": "101203015400", "Tax_Legal_": "BARRETTE 14-4 LT.NORTHSIDE QTR.", "Name": "BURTON FAMILY VI TRUST", "Address": "3213 Friar Ln", "City": "Garland", "State": "Texas", "Zip": 75044, "Country": "United States", "Land_Value": 82300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.04014470600001, "SHAPE_Area": 1561.5435100899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357421.136600002646446, 259519.978700000792742 ], [ 357419.206299997866154, 259492.097100000828505 ], [ 357415.514899998903275, 259492.314899999648333 ], [ 357415.005400002002716, 259499.369500000029802 ], [ 357413.337099999189377, 259505.899700000882149 ], [ 357411.70830000191927, 259507.786200001835823 ], [ 357410.06870000064373, 259510.9391999989748 ], [ 357397.059799998998642, 259523.498399998992682 ], [ 357380.024700000882149, 259535.39130000025034 ], [ 357383.048600003123283, 259559.058499999344349 ], [ 357419.39019999653101, 259552.600999999791384 ], [ 357423.337999999523163, 259551.77589999884367 ], [ 357421.136600002646446, 259519.978700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104028400", "MAP": "D9-8896-T014", "PARCEL_NAM": "3-5A", "ACRE": ".38", "LONGITUDE": -64.95543761, "LATITUDE": 18.36554025, "OBJECTID_1": 648, "PARCEL_NO_": "101104028400", "Tax_Legal_": "HULL BAY 3-5A LITTLE NORTHSIDE QTR", "Name": "BURTON, SHANNON", "Address": "8219 Panola St", "City": "New Orleans", "State": "Louisiana", "Zip": 70118, "Country": "United States", "Land_Value": 47100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.25613243, "SHAPE_Area": 853.07905801599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356204.796499997377396, 259524.340700000524521 ], [ 356201.797100000083447, 259521.013099998235703 ], [ 356160.851499997079372, 259528.790399998426437 ], [ 356168.858900003135204, 259535.399900000542402 ], [ 356175.246399998664856, 259542.840399999171495 ], [ 356188.104299999773502, 259548.011900000274181 ], [ 356200.996200002729893, 259554.990299999713898 ], [ 356204.01240000128746, 259549.116500001400709 ], [ 356204.608400002121925, 259530.285000000149012 ], [ 356204.796499997377396, 259524.340700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91593099000001, "LATITUDE": 18.36533508, "OBJECTID_1": 975, "PARCEL_NO_": "101304020700", "Tax_Legal_": "PETERBORG 14-18 GT. NORTHSIDE", "Name": "JARVIS, THOMAS & SHERDIAN", "Address": "PO Box 7001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 158900, "Improved_V": 418600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.63229069900001, "SHAPE_Area": 1943.00324669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360392.63289999961853, 259533.661400001496077 ], [ 360339.520499996840954, 259520.983199998736382 ], [ 360339.259800001978874, 259551.589699998497963 ], [ 360374.480400003492832, 259582.064300000667572 ], [ 360388.511399999260902, 259544.182300001382828 ], [ 360392.616700001060963, 259535.561099998652935 ], [ 360392.63289999961853, 259533.661400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020900", "MAP": "D9-7750-T006", "PARCEL_NAM": "16-I-REM", "ACRE": ".616", "LONGITUDE": -64.96065793, "LATITUDE": 18.36539624, "OBJECTID_1": 425, "PARCEL_NO_": "101103020900", "Tax_Legal_": "16-I REM & 16H-1 DOROTHEA NO.6 LITTLE NORTHSIDE QTR", "Name": "MERRITT, SHERRI L.", "Address": "PO Box 10726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67800, "Improved_V": 74900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.78080757800001, "SHAPE_Area": 1491.32001719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355664.630000002682209, 259500.371399998664856 ], [ 355662.398100003600121, 259501.387099999934435 ], [ 355642.360500000417233, 259488.93129999935627 ], [ 355631.284000001847744, 259503.346799999475479 ], [ 355623.962499998509884, 259510.886300001293421 ], [ 355616.662500001490116, 259515.892799999564886 ], [ 355603.718299999833107, 259520.853100001811981 ], [ 355624.50450000166893, 259541.921399999409914 ], [ 355652.097099997103214, 259521.249000001698732 ], [ 355669.979800000786781, 259504.50789999961853 ], [ 355664.630000002682209, 259500.371399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90664276, "LATITUDE": 18.36497557, "OBJECTID_1": 1128, "PARCEL_NO_": "101404010800", "Tax_Legal_": "LOVENLUND C-35 GT. NORTHSIDE", "Name": "SMITH, ESQUIRE, DELIA L.", "Address": "PO Box 600182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 423000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.57340815100002, "SHAPE_Area": 3531.63280377 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361360.708499997854233, 259577.470499999821186 ], [ 361363.085299998521805, 259487.775199998170137 ], [ 361348.051299996674061, 259454.088300000876188 ], [ 361317.305299997329712, 259466.29109999909997 ], [ 361327.605800002813339, 259487.695900000631809 ], [ 361333.910599999129772, 259504.846099998801947 ], [ 361337.2516999989748, 259585.933299999684095 ], [ 361348.592200003564358, 259579.904500000178814 ], [ 361359.081399999558926, 259579.145899999886751 ], [ 361360.708499997854233, 259577.470499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602026300", "MAP": "A9-660A-T006", "PARCEL_NAM": "20B", "ACRE": ".056", "LONGITUDE": -64.96618566, "LATITUDE": 18.36055825, "OBJECTID_1": 2461, "PARCEL_NO_": "102602026300", "Tax_Legal_": "8-1-F NELTJBERG (WESTERN SECT.) No.6 LITTLE NORTHSIDE QUARTER", "Name": "MATTHEW, NIKKORI OHANIO", "Address": "PO Box 10437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.83611458499999, "SHAPE_Area": 570.17770965700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355045.607100002467632, 258992.183600001037121 ], [ 355060.443999998271465, 258980.354499999433756 ], [ 355059.551399998366833, 258972.765700001269579 ], [ 355094.854299999773502, 258969.636900000274181 ], [ 355094.700499996542931, 258965.217099998146296 ], [ 355050.421800002455711, 258967.903499998152256 ], [ 355043.956900000572205, 258969.53940000012517 ], [ 355039.093900002539158, 258972.454900000244379 ], [ 355035.026399999856949, 258976.643399998545647 ], [ 355044.579800002276897, 258991.0760000012815 ], [ 355045.607100002467632, 258992.183600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95093525, "LATITUDE": 18.36530151, "OBJECTID_1": 612, "PARCEL_NO_": "101104024500", "Tax_Legal_": "HULL 11H-4 LT. NORTHSIDE", "Name": "SHACKELLL, LYNNE SUZANNE", "Address": "PO Box 12061", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71200, "Improved_V": 78400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.23668464900001, "SHAPE_Area": 1918.4088118899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356676.839299999177456, 259539.135299999266863 ], [ 356684.657200001180172, 259473.337999999523163 ], [ 356663.628300003707409, 259480.765299998223782 ], [ 356647.20719999819994, 259515.250199999660254 ], [ 356640.486900001764297, 259546.859299998730421 ], [ 356676.839299999177456, 259539.135299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020600", "MAP": "B9-488-T78", "PARCEL_NAM": "16-D", "ACRE": ".81", "LONGITUDE": -64.9617794, "LATITUDE": 18.36520441, "OBJECTID_1": 422, "PARCEL_NO_": "101103020600", "Tax_Legal_": "16D DOROTHEA NO.6 LITTLE NORTHSIDE QTR.", "Name": "PETERSEN, OCEAN S", "Address": "6501 RED HOOK PMB 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.47768241099999, "SHAPE_Area": 3235.5676924200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355555.008000001311302, 259464.725699998438358 ], [ 355535.782399997115135, 259449.791799999773502 ], [ 355520.34740000218153, 259463.175400000065565 ], [ 355505.69709999859333, 259479.098600000143051 ], [ 355500.805299997329712, 259485.391399998217821 ], [ 355499.97919999808073, 259487.706700000911951 ], [ 355495.91160000115633, 259491.895300000905991 ], [ 355491.820699997246265, 259498.827899999916553 ], [ 355486.898299999535084, 259508.708999998867512 ], [ 355486.075800001621246, 259510.602099999785423 ], [ 355482.798500001430511, 259516.697000000625849 ], [ 355481.169600002467632, 259518.583500001579523 ], [ 355477.877899996936321, 259526.366999998688698 ], [ 355476.990599997341633, 259535.859000001102686 ], [ 355477.766400001943111, 259539.453899998217821 ], [ 355480.158299997448921, 259542.639899998903275 ], [ 355482.593099996447563, 259543.940400000661612 ], [ 355522.052400000393391, 259511.305599998682737 ], [ 355567.033100001513958, 259474.104499999433756 ], [ 355555.008000001311302, 259464.725699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304020900", "MAP": "D9-9125-T016", "PARCEL_NAM": "12-4 REM & 12-7-A", "ACRE": "0.50", "LONGITUDE": -64.91711512000001, "LATITUDE": 18.36537605, "OBJECTID_1": 977, "PARCEL_NO_": "101304020900", "Tax_Legal_": "PETERBORG 12-4-1 & 12-7 REM. No.12 GREAT NORTHSIDE QTR.", "Name": "EMPIRE HOLDING CORPORATION", "Address": "PO Box 19492", "City": "Indianapolis", "State": "Indiana", "Zip": 46219, "Country": "United States", "Land_Value": 137800, "Improved_V": 557100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.62362858099999, "SHAPE_Area": 2384.3592116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360259.346100002527237, 259573.881400000303984 ], [ 360266.158900000154972, 259565.890299998223782 ], [ 360281.810199998319149, 259574.761900000274181 ], [ 360279.470399998128414, 259565.454700000584126 ], [ 360274.695500001311302, 259558.027300000190735 ], [ 360230.670199997723103, 259519.88120000064373 ], [ 360203.964699998497963, 259531.061700001358986 ], [ 360219.000600002706051, 259564.537599999457598 ], [ 360220.546700000762939, 259572.360700000077486 ], [ 360259.346100002527237, 259573.881400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304021000", "MAP": "A9-65-T67", "PARCEL_NAM": "11-1-5", "ACRE": null, "LONGITUDE": -64.91762031, "LATITUDE": 18.36533488, "OBJECTID_1": 978, "PARCEL_NO_": "101304021000", "Tax_Legal_": "PETERBORG 11-1-5 No.12 GREAT NORTHSIDE QTR.", "Name": "GREENAWAY, ROSETTA CARMELITA, JOHN S.& CLAYTON JR.", "Address": "PO Box 9067", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 136000, "Improved_V": 378300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.47294291200001, "SHAPE_Area": 2599.74933538 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360203.964699998497963, 259531.061700001358986 ], [ 360198.42849999666214, 259518.35080000013113 ], [ 360142.746100001037121, 259523.383499998599291 ], [ 360154.743699997663498, 259534.880699999630451 ], [ 360161.910599999129772, 259545.494100000709295 ], [ 360166.642399996519089, 259557.987300001084805 ], [ 360168.183100000023842, 259566.44370000064373 ], [ 360168.147100001573563, 259570.665300000458956 ], [ 360220.546700000762939, 259572.360700000077486 ], [ 360219.000600002706051, 259564.537599999457598 ], [ 360203.964699998497963, 259531.061700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104014600", "MAP": "D9-2389-T83", "PARCEL_NAM": "6H", "ACRE": null, "LONGITUDE": -64.95621963000001, "LATITUDE": 18.36545688, "OBJECTID_1": 536, "PARCEL_NO_": "101104014600", "Tax_Legal_": "6H ESTATE HULL GT. NORTHSIDE QTR.", "Name": "LAPLACE, EMANUEL & NOREEN", "Address": "PO Box 152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.13462874699999, "SHAPE_Area": 826.61168922000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356089.811499997973442, 259538.130399998277426 ], [ 356143.090999998152256, 259531.178199999034405 ], [ 356103.716600000858307, 259515.023899998515844 ], [ 356084.408299997448921, 259509.799600001424551 ], [ 356089.811499997973442, 259538.130399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033900", "MAP": "A9-394A-T91", "PARCEL_NAM": "31", "ACRE": ".77", "LONGITUDE": -64.9677011, "LATITUDE": 18.3652054, "OBJECTID_1": 475, "PARCEL_NO_": "101103033900", "Tax_Legal_": "NELTJEBERG 31/EASTERN PT LT. NORTHSIDE", "Name": "CLARKE, BEVERLY L & KAREN M", "Address": "2369 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77200, "Improved_V": 242000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.29667682799999, "SHAPE_Area": 3828.4819569299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354842.429700002074242, 259474.243900001049042 ], [ 354865.427100002765656, 259523.687899999320507 ], [ 354871.527300000190735, 259521.826499998569489 ], [ 354879.612000003457069, 259519.359600000083447 ], [ 354898.234499998390675, 259510.434900000691414 ], [ 354911.167900003492832, 259506.741099998354912 ], [ 354923.276900000870228, 259505.151500001549721 ], [ 354925.713899999856949, 259503.060499999672174 ], [ 354926.572300001978874, 259496.945799998939037 ], [ 354929.851499997079372, 259490.639800000935793 ], [ 354943.682899996638298, 259476.187600001692772 ], [ 354944.557499997317791, 259468.173200000077486 ], [ 354942.971900001168251, 259464.99379999935627 ], [ 354938.978100001811981, 259460.528099998831749 ], [ 354842.429700002074242, 259474.243900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95064351000001, "LATITUDE": 18.36518105, "OBJECTID_1": 611, "PARCEL_NO_": "101104024400", "Tax_Legal_": "HULL 11-H-3 LT. NORTHSIDE", "Name": "HODGE, STEPHEN A. & TUVIA R. BLAKE", "Address": "PO BOX 303487", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99700, "Improved_V": 230400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.940862791, "SHAPE_Area": 1884.1127522899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356712.203100003302097, 259458.1537000015378 ], [ 356692.752700001001358, 259469.604600001126528 ], [ 356684.657200001180172, 259473.337999999523163 ], [ 356676.839299999177456, 259539.135299999266863 ], [ 356708.398800000548363, 259526.094700001180172 ], [ 356712.203100003302097, 259458.1537000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203016300", "MAP": "D9-5130-T91", "PARCEL_NAM": "11-FE", "ACRE": ".503", "LONGITUDE": -64.94931908, "LATITUDE": 18.36519331, "OBJECTID_1": 762, "PARCEL_NO_": "101203016300", "Tax_Legal_": "HULL 11-FE LITTLE NORTHSIDE", "Name": "SITTIG, CATHERINE B & GARRET W", "Address": "PO Box 11771", "City": "St.Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56300, "Improved_V": 197700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.20439304000001, "SHAPE_Area": 2625.3540490700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356812.848300002515316, 259475.864900000393391 ], [ 356807.918999999761581, 259504.180700000375509 ], [ 356813.41610000282526, 259534.485300000756979 ], [ 356816.387100003659725, 259533.733500000089407 ], [ 356850.360100001096725, 259521.345899999141693 ], [ 356866.495399996638298, 259520.422499999403954 ], [ 356862.803700000047684, 259480.495600000023842 ], [ 356840.2449000030756, 259478.199999999254942 ], [ 356815.267200000584126, 259475.884700000286102 ], [ 356812.848300002515316, 259475.864900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9063771, "LATITUDE": 18.36481499, "OBJECTID_1": 1129, "PARCEL_NO_": "101404010900", "Tax_Legal_": "LOVENLUND C-36 GT. NORTHSIDE", "Name": "KOHLER, AARON", "Address": "788 E Alpine Blvd", "City": "Alpine", "State": "Utah", "Zip": 84004, "Country": "United States", "Land_Value": 234000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.21567726900003, "SHAPE_Area": 3488.0578008000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361397.067299999296665, 259474.33219999819994 ], [ 361382.044100001454353, 259439.378800000995398 ], [ 361348.051299996674061, 259454.088300000876188 ], [ 361363.085299998521805, 259487.775199998170137 ], [ 361360.708499997854233, 259577.470499999821186 ], [ 361368.836300000548363, 259569.937699999660254 ], [ 361376.940800003707409, 259565.148800000548363 ], [ 361397.067299999296665, 259474.33219999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95993246, "LATITUDE": 18.3653224, "OBJECTID_1": 429, "PARCEL_NO_": "101103021300", "Tax_Legal_": "DOROTHEA 16K LT. NORTHSIDE", "Name": "HARRIS, ALSTON A. (TRUSTEE)", "Address": "PO Box 9456", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63200, "Improved_V": 217700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.35584067799999, "SHAPE_Area": 3113.9983214 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355770.397699996829033, 259454.245099999010563 ], [ 355770.426500000059605, 259450.867899999022484 ], [ 355760.657200001180172, 259461.764800000935793 ], [ 355748.478000000119209, 259471.586500000208616 ], [ 355735.51410000026226, 259478.868700001388788 ], [ 355716.10869999974966, 259485.042599998414516 ], [ 355710.441100001335144, 259487.740499999374151 ], [ 355684.497000001370907, 259504.204500000923872 ], [ 355667.627700001001358, 259519.540100000798702 ], [ 355686.252999998629093, 259536.149500001221895 ], [ 355706.204300001263618, 259553.941399998962879 ], [ 355708.2871999964118, 259551.261999998241663 ], [ 355716.487000003457069, 259535.285999998450279 ], [ 355719.760799996554852, 259529.613299999386072 ], [ 355724.699400000274181, 259517.832499999552965 ], [ 355730.415500000119209, 259509.435499999672174 ], [ 355737.753200002014637, 259499.996300000697374 ], [ 355754.826099999248981, 259483.670800000429153 ], [ 355765.441200003027916, 259468.136700000613928 ], [ 355770.397699996829033, 259454.245099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90579845000001, "LATITUDE": 18.36496202, "OBJECTID_1": 1130, "PARCEL_NO_": "101404011000", "Tax_Legal_": "LOVENLUND/CANYON PK C-37 GT. NORTHSIDE QTR.", "Name": "BHANDARI (TRUSTEES), ASHU & KAREN COFFEE-BHANDARI", "Address": "6513 Tobago Dr. Ste 13", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 696800, "Improved_V": 1359100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 448.76163818499998, "SHAPE_Area": 9743.9453775000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361476.450400002300739, 259492.61879999935627 ], [ 361472.664599999785423, 259492.88289999961853 ], [ 361472.505900003015995, 259487.96169999986887 ], [ 361474.314499996602535, 259487.839400000870228 ], [ 361468.823700003325939, 259475.552799999713898 ], [ 361464.89469999819994, 259463.488299999386072 ], [ 361451.512800000607967, 259425.170899998396635 ], [ 361447.47410000115633, 259425.982200000435114 ], [ 361449.808499999344349, 259435.922699999064207 ], [ 361439.182599999010563, 259452.723200000822544 ], [ 361427.01240000128746, 259461.489500001072884 ], [ 361397.067299999296665, 259474.33219999819994 ], [ 361376.940800003707409, 259565.148800000548363 ], [ 361387.4695999994874, 259559.746599998325109 ], [ 361397.15259999781847, 259558.9814000017941 ], [ 361401.96169999986887, 259562.398299999535084 ], [ 361414.814099997282028, 259568.203000001609325 ], [ 361420.45830000191927, 259568.249200001358986 ], [ 361432.526000000536442, 259571.514400001615286 ], [ 361441.359499998390675, 259575.808600001037121 ], [ 361451.879299998283386, 259571.46169999986887 ], [ 361460.842200003564358, 259560.558200001716614 ], [ 361464.128600001335144, 259553.407900001853704 ], [ 361486.649599999189377, 259560.136100001633167 ], [ 361488.26410000026226, 259559.938200000673532 ], [ 361482.227200001478195, 259511.33729999884963 ], [ 361479.901699997484684, 259500.341400001198053 ], [ 361476.450400002300739, 259492.61879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103021500", "MAP": "C9-205-T75", "PARCEL_NAM": "16", "ACRE": "1.8", "LONGITUDE": -64.95935861, "LATITUDE": 18.36466612, "OBJECTID_1": 431, "PARCEL_NO_": "101103021500", "Tax_Legal_": "DOROTHEA REM OF 16 LT. NORTHSIDE", "Name": "SANTA SHORE SPA", "Address": "PO Box 696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 145400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 559.21841213200003, "SHAPE_Area": 5226.9601456800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355784.347099997103214, 259331.291700001806021 ], [ 355777.652300000190735, 259314.987399999052286 ], [ 355760.411100000143051, 259321.024999998509884 ], [ 355747.851999998092651, 259325.015399999916553 ], [ 355751.304499998688698, 259329.121500000357628 ], [ 355765.645400002598763, 259349.503800000995398 ], [ 355771.179899998009205, 259362.425799999386072 ], [ 355773.550300002098083, 259368.144799999892712 ], [ 355776.487999998033047, 259377.304000001400709 ], [ 355779.048900000751019, 259385.28830000013113 ], [ 355782.904200002551079, 259406.007100000977516 ], [ 355783.604400001466274, 259418.467300001531839 ], [ 355782.625500001013279, 259438.724300000816584 ], [ 355779.22580000013113, 259459.172499999403954 ], [ 355772.649400003254414, 259473.895300000905991 ], [ 355765.291900001466274, 259485.656300000846386 ], [ 355742.520999997854233, 259508.26799999922514 ], [ 355735.17790000140667, 259518.340399999171495 ], [ 355730.260899998247623, 259527.588300000876188 ], [ 355723.069200001657009, 259543.597899999469519 ], [ 355781.132299996912479, 259519.349800001829863 ], [ 355791.956000000238419, 259479.330600000917912 ], [ 355790.577100001275539, 259451.877199999988079 ], [ 355810.086900003254414, 259433.46059999987483 ], [ 355801.424199998378754, 259409.113899998366833 ], [ 355795.139200001955032, 259389.6418999992311 ], [ 355793.488499999046326, 259376.031899999827147 ], [ 355791.371899999678135, 259358.580299999564886 ], [ 355784.347099997103214, 259331.291700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9182808, "LATITUDE": 18.36519543, "OBJECTID_1": 979, "PARCEL_NO_": "101304021100", "Tax_Legal_": "PETERBORG 11-1-1 GT NORTHSIDE", "Name": "TRUE BUILDERS INC.", "Address": "BOX 4079", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 95100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.57255357299999, "SHAPE_Area": 2093.5473350900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360118.133500002324581, 259478.219099998474121 ], [ 360112.366999998688698, 259492.526299998164177 ], [ 360088.566799998283386, 259541.30519999936223 ], [ 360098.102300003170967, 259557.848499998450279 ], [ 360151.441100001335144, 259543.930700000375509 ], [ 360149.05460000038147, 259540.1114999987185 ], [ 360133.855099998414516, 259525.843899998813868 ], [ 360128.270300000905991, 259518.832100000232458 ], [ 360124.296300001442432, 259512.04450000077486 ], [ 360121.938500002026558, 259504.848099999129772 ], [ 360118.133500002324581, 259478.219099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702052100", "MAP": "D9-7557-T005", "PARCEL_NAM": "6G-5", "ACRE": "1.04", "LONGITUDE": -64.95615811, "LATITUDE": 18.36473434, "OBJECTID_1": 3175, "PARCEL_NO_": "102702052100", "Tax_Legal_": "6G-5 ESTATE HULL NO.4 LITTLE NORTHSIDE QTR.", "Name": "LAPLACE, STEVEN F. & SANDRA T", "Address": "PO Box 152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 148500, "Improved_V": 131400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.05535737100001, "SHAPE_Area": 3907.8547991800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356132.895999997854233, 259410.503199998289347 ], [ 356130.471199996769428, 259411.054299999028444 ], [ 356073.736800000071526, 259414.47069999948144 ], [ 356075.964400000870228, 259442.869899999350309 ], [ 356104.700800001621246, 259478.417399998754263 ], [ 356151.796700000762939, 259480.216499999165535 ], [ 356158.146700002253056, 259480.534000001847744 ], [ 356158.857799999415874, 259463.584100000560284 ], [ 356147.745200000703335, 259461.044100001454353 ], [ 356135.045199997723103, 259447.709100000560284 ], [ 356132.895999997854233, 259410.503199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9465101, "LATITUDE": 18.36521571, "OBJECTID_1": 736, "PARCEL_NO_": "101203013500", "Tax_Legal_": "ST PETER 23 LITTLE NORTHSIDE QTR", "Name": "STIEHLER, A. & BRYAN, P", "Address": "17-3 EST. ST.PETER HULL BAY RD", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.298542809, "SHAPE_Area": 995.37277136399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357096.222499996423721, 259530.746500000357628 ], [ 357177.148699998855591, 259496.789500001817942 ], [ 357134.42849999666214, 259494.7511 ], [ 357124.73480000346899, 259496.782699998468161 ], [ 357119.873499996960163, 259499.487100001424551 ], [ 357111.731299996376038, 259508.708599999547005 ], [ 357107.638599999248981, 259515.852299999445677 ], [ 357096.222499996423721, 259530.746500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90468595, "LATITUDE": 18.36502166, "OBJECTID_1": 1133, "PARCEL_NO_": "101404011300", "Tax_Legal_": "LOVENLUND C-40-AKA 55 GT. NORTHSIDE", "Name": "MAYA-JAKO FAMILY TRUST", "Address": "PO Box 6", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 297500, "Improved_V": 479800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.52129489399999, "SHAPE_Area": 2425.8914299100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361571.350199997425079, 259556.39640000090003 ], [ 361565.500299997627735, 259485.843299999833107 ], [ 361551.803800001740456, 259484.464600000530481 ], [ 361535.311599999666214, 259483.658900000154972 ], [ 361531.848700001835823, 259484.394600000232458 ], [ 361532.085100002586842, 259485.911499999463558 ], [ 361533.184900000691414, 259492.967099998146296 ], [ 361541.513099998235703, 259556.574400000274181 ], [ 361545.557199999690056, 259555.129799999296665 ], [ 361547.968999996781349, 259555.993900001049042 ], [ 361546.300599999725819, 259562.52419999986887 ], [ 361546.270000003278255, 259566.112500000745058 ], [ 361547.873599998652935, 259567.181099999696016 ], [ 361556.750299997627735, 259566.409400001168251 ], [ 361559.178199999034405, 259565.373799998313189 ], [ 361560.000699996948242, 259563.480700001120567 ], [ 361558.402500003576279, 259561.778900001198053 ], [ 361571.350199997425079, 259556.39640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203031000", "MAP": "D9-5967-T95", "PARCEL_NAM": "10", "ACRE": "1.8537", "LONGITUDE": -64.94704969, "LATITUDE": 18.36475936, "OBJECTID_1": 796, "PARCEL_NO_": "101203031000", "Tax_Legal_": "ST PETER 1O LITTLE NORTHSIDE QTR", "Name": "RR 2012 TRUST", "Address": "PO Box 36", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 227400, "Improved_V": 148100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 455.80457929699998, "SHAPE_Area": 11195.3596401 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357042.248599998652935, 259417.362700000405312 ], [ 357041.70160000026226, 259437.875700000673532 ], [ 357040.881099998950958, 259459.209300000220537 ], [ 357038.41950000077486, 259506.799499999731779 ], [ 357037.872500002384186, 259549.740100000053644 ], [ 357043.069099999964237, 259550.834199998527765 ], [ 357051.274300001561642, 259548.372600000351667 ], [ 357059.479500003159046, 259542.902399998158216 ], [ 357071.355999998748302, 259536.91950000077486 ], [ 357082.542199999094009, 259529.729499999433756 ], [ 357087.552599996328354, 259526.696600001305342 ], [ 357099.613200001418591, 259511.35359999909997 ], [ 357108.277199998497963, 259496.770399998873472 ], [ 357115.102200001478195, 259491.637600000947714 ], [ 357117.414300002157688, 259409.54109999909997 ], [ 357118.136799998581409, 259381.3766999989748 ], [ 357094.408299997448921, 259381.05689999833703 ], [ 357043.328900001943111, 259380.368400000035763 ], [ 357042.248599998652935, 259417.362700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90939755, "LATITUDE": 18.36527455, "OBJECTID_1": 1113, "PARCEL_NO_": "101403011900", "Tax_Legal_": "C-5-B-16 LOVENLUND GREAT NORTHSIDE QTR.", "Name": "MORGAN R LOCKE REVOCABLE LIVING TRUST", "Address": "PO Box 306165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 115900, "Improved_V": 854600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.23671120399999, "SHAPE_Area": 1376.89177608 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361074.829000003635883, 259532.700899999588728 ], [ 361032.114200003445148, 259530.02930000051856 ], [ 361031.887599997222424, 259556.625199999660254 ], [ 361028.617399998009205, 259561.875799998641014 ], [ 361044.741899996995926, 259562.218800000846386 ], [ 361057.659000001847744, 259560.424699999392033 ], [ 361069.769900001585484, 259558.624000001698732 ], [ 361082.703299999237061, 259554.93019999936223 ], [ 361078.803000003099442, 259539.488400001078844 ], [ 361074.829000003635883, 259532.700899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90981836, "LATITUDE": 18.36524784, "OBJECTID_1": 1115, "PARCEL_NO_": "101403012100", "Tax_Legal_": "C-5-B-14(AKA 90)ESTATE LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "VARGAS, CELSO E. & JULIA E.", "Address": "PO Box 600101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 165000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.89794949, "SHAPE_Area": 1439.78707459 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361032.114200003445148, 259530.02930000051856 ], [ 360994.2804000005126, 259522.331300001591444 ], [ 360983.537600003182888, 259552.852000001817942 ], [ 360999.620700001716614, 259558.049899999052286 ], [ 361028.617399998009205, 259561.875799998641014 ], [ 361031.887599997222424, 259556.625199999660254 ], [ 361032.114200003445148, 259530.02930000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90521872, "LATITUDE": 18.36506582, "OBJECTID_1": 1131, "PARCEL_NO_": "101404011100", "Tax_Legal_": "LOVENLUND C-38 #57 GT. NORTHSIDE", "Name": "MAXMO REALTY, LLC", "Address": "5A NEPERHAN AVENUE, SUITE 1, 2ND FLOOR", "City": "ELMSFORD", "State": "New York", "Zip": 10523, "Country": "United States", "Land_Value": 329800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.79618087200001, "SHAPE_Area": 1662.56850723 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361515.676899999380112, 259560.373700000345707 ], [ 361505.525700002908707, 259521.449400000274181 ], [ 361504.861400000751019, 259504.767599999904633 ], [ 361503.895700000226498, 259498.372000001370907 ], [ 361502.827200002968311, 259491.295400001108646 ], [ 361495.20719999819994, 259491.771699998527765 ], [ 361484.888400003314018, 259492.406700000166893 ], [ 361479.490900002419949, 259492.406700000166893 ], [ 361476.450400002300739, 259492.61879999935627 ], [ 361479.901699997484684, 259500.341400001198053 ], [ 361482.227200001478195, 259511.33729999884963 ], [ 361488.26410000026226, 259559.938200000673532 ], [ 361504.419100001454353, 259556.692999999970198 ], [ 361505.169699996709824, 259563.243000000715256 ], [ 361505.96339999884367, 259564.727200001478195 ], [ 361507.572400003671646, 259565.162500001490116 ], [ 361509.993100002408028, 259564.971200000494719 ], [ 361515.676899999380112, 259560.373700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94890895, "LATITUDE": 18.36485015, "OBJECTID_1": 784, "PARCEL_NO_": "101203020300", "Tax_Legal_": "HULL 8 LITTLE NORTHSIDE", "Name": "GREAVES, ALAN M", "Address": "7526 Upper Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113300, "Improved_V": 91900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.00835356699997, "SHAPE_Area": 1322.71837194 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356890.352799996733665, 259459.610300000756979 ], [ 356887.240299999713898, 259426.934799998998642 ], [ 356836.587399996817112, 259434.262699998915195 ], [ 356876.748400002717972, 259452.745400000363588 ], [ 356882.354800000786781, 259457.224199999123812 ], [ 356885.531499996781349, 259462.949799999594688 ], [ 356887.912600003182888, 259467.402199998497963 ], [ 356887.8766999989748, 259471.623799998313189 ], [ 356893.306900002062321, 259496.788400001823902 ], [ 356892.428599998354912, 259505.224899999797344 ], [ 356890.763899996876717, 259511.333000000566244 ], [ 356886.667599998414516, 259518.898899998515844 ], [ 356880.172100000083447, 259524.122999999672174 ], [ 356885.79110000282526, 259527.124299999326468 ], [ 356891.157999999821186, 259531.346200000494719 ], [ 356896.41499999910593, 259535.653299998492002 ], [ 356899.026199996471405, 259539.3310999982059 ], [ 356901.814400002360344, 259538.692899998277426 ], [ 356899.772699996829033, 259527.823699999600649 ], [ 356897.893500000238419, 259517.818799998611212 ], [ 356896.835100002586842, 259508.558400001376867 ], [ 356895.247599996626377, 259497.445799998939037 ], [ 356894.321599997580051, 259488.846900001168251 ], [ 356890.352799996733665, 259459.610300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701025100", "MAP": null, "PARCEL_NAM": "15-18", "ACRE": "0.23", "LONGITUDE": -64.95869671, "LATITUDE": 18.36526131, "OBJECTID_1": 2879, "PARCEL_NO_": "102701025100", "Tax_Legal_": "BONNE RESOLUTION 15-18 LT. NORTHSIDE", "Name": "NICHOLAS, NANCY & PETER", "Address": "PO Box 10242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25500, "Improved_V": 318800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.21038830500001, "SHAPE_Area": 1233.32068628 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355856.419600002467632, 259484.71339999884367 ], [ 355826.568099997937679, 259486.579999998211861 ], [ 355822.272200003266335, 259517.575599998235703 ], [ 355866.63740000128746, 259515.8277000002563 ], [ 355866.032399997115135, 259492.180300001055002 ], [ 355857.157600000500679, 259492.74100000038743 ], [ 355856.419600002467632, 259484.71339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94092758, "LATITUDE": 18.3650083, "OBJECTID_1": 733, "PARCEL_NO_": "101203013200", "Tax_Legal_": "LERKENLUND 1-13 GR NORTHSIDE", "Name": "QUERRARD, LAWRENCE J", "Address": "7433 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 199600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.844685443, "SHAPE_Area": 2734.3659231199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357724.562399998307228, 259441.556699998676777 ], [ 357722.657399997115135, 259441.556699998676777 ], [ 357720.048500001430511, 259441.698600001633167 ], [ 357716.933100000023842, 259458.777499999850988 ], [ 357711.109099999070168, 259479.839200001209974 ], [ 357702.891400001943111, 259497.925999999046326 ], [ 357695.54280000180006, 259508.631599999964237 ], [ 357687.400600001215935, 259517.853100001811981 ], [ 357723.567800000309944, 259531.870200000703335 ], [ 357731.785499997437, 259513.783399999141693 ], [ 357741.579999998211861, 259499.931400001049042 ], [ 357742.420500002801418, 259495.927499998360872 ], [ 357744.869999997317791, 259492.359000001102686 ], [ 357746.50959999859333, 259489.206000000238419 ], [ 357749.205200001597404, 259484.706399999558926 ], [ 357741.707500003278255, 259481.350099999457598 ], [ 357742.384999997913837, 259468.611999999731779 ], [ 357742.765799999237061, 259461.453400000929832 ], [ 357747.791599996387959, 259455.809000000357628 ], [ 357745.094099998474121, 259454.680100001394749 ], [ 357742.554099999368191, 259454.256700001657009 ], [ 357740.860799998044968, 259453.410100001841784 ], [ 357738.955799996852875, 259452.563400000333786 ], [ 357737.6858000010252, 259450.446699999272823 ], [ 357737.262500002980232, 259448.96510000154376 ], [ 357736.204099997878075, 259446.636700000613928 ], [ 357735.992499999701977, 259445.366700001060963 ], [ 357734.510799996554852, 259444.520100001245737 ], [ 357730.489100001752377, 259443.46169999986887 ], [ 357728.160800002515316, 259442.826699998229742 ], [ 357724.562399998307228, 259441.556699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90850849, "LATITUDE": 18.36527621, "OBJECTID_1": 1111, "PARCEL_NO_": "101403011600", "Tax_Legal_": "LOVENLUND C-7 GT NORTHSIDE", "Name": "STROBEL, KATHRYN and DAVID", "Address": "PO BOX 8043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 203800, "Improved_V": 500800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.19547091800001, "SHAPE_Area": 1642.15987408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361164.112099997699261, 259558.973999999463558 ], [ 361188.351800002157688, 259553.261700000613928 ], [ 361166.005199998617172, 259526.058899998664856 ], [ 361135.264600001275539, 259537.628499999642372 ], [ 361098.816899999976158, 259556.539700001478195 ], [ 361099.601700000464916, 259559.079300001263618 ], [ 361102.825099997222424, 259559.316700000315905 ], [ 361153.626400001347065, 259559.310300000011921 ], [ 361160.093099996447563, 259557.46339999884367 ], [ 361161.691299997270107, 259559.165199998766184 ], [ 361164.112099997699261, 259558.973999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95832759, "LATITUDE": 18.36523333, "OBJECTID_1": 433, "PARCEL_NO_": "101103021700", "Tax_Legal_": "BONNE RESOLUTION 15-16 LT. NORTHSIDE", "Name": "REY, JOYAE A. & KATHLEEN V", "Address": "PO Box 6348", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28800, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.63067671499999, "SHAPE_Area": 1081.5822043200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355900.51690000295639, 259514.416299998760223 ], [ 355900.78660000115633, 259482.75450000166893 ], [ 355869.324199996888638, 259484.396800000220537 ], [ 355866.082800000905991, 259486.270100001245737 ], [ 355865.260300002992153, 259488.163199998438358 ], [ 355866.032399997115135, 259492.180300001055002 ], [ 355866.63740000128746, 259515.8277000002563 ], [ 355883.577100001275539, 259515.122000001370907 ], [ 355900.51690000295639, 259514.416299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9049696, "LATITUDE": 18.36503261, "OBJECTID_1": 1132, "PARCEL_NO_": "101404011200", "Tax_Legal_": "LOVENLUND C-39#56 GT NORTHSIDE", "Name": "MAXMO REALTY, LLC", "Address": "5A NEPERHAN AVENUE, SUITE 1, 2ND FLOOR", "City": "ELMSFORD", "State": "New York", "Zip": 10523, "Country": "United States", "Land_Value": 344700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.509292405, "SHAPE_Area": 2154.7466417599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361539.058200001716614, 259560.776200000196695 ], [ 361541.513099998235703, 259556.574400000274181 ], [ 361533.184900000691414, 259492.967099998146296 ], [ 361532.085100002586842, 259485.911499999463558 ], [ 361531.848700001835823, 259484.394600000232458 ], [ 361520.289700001478195, 259486.850400000810623 ], [ 361512.034699998795986, 259488.596700001507998 ], [ 361509.239200003445148, 259489.416000001132488 ], [ 361502.827200002968311, 259491.295400001108646 ], [ 361503.895700000226498, 259498.372000001370907 ], [ 361504.861400000751019, 259504.767599999904633 ], [ 361505.525700002908707, 259521.449400000274181 ], [ 361515.676899999380112, 259560.373700000345707 ], [ 361518.101199999451637, 259559.760299999266863 ], [ 361519.701300002634525, 259561.250999998301268 ], [ 361522.13459999859333, 259559.58219999819994 ], [ 361524.54450000077486, 259560.657400000840425 ], [ 361526.162600003182888, 259560.037300001829863 ], [ 361535.013999998569489, 259562.22069999948144 ], [ 361539.058200001716614, 259560.776200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95799933000001, "LATITUDE": 18.36521856, "OBJECTID_1": 432, "PARCEL_NO_": "101103021600", "Tax_Legal_": "BONNE RESOLUTION 15-15 LT. NORTHSIDE", "Name": "FORBES, RAWLEIGH & JOYCELYN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 153100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.47874869699999, "SHAPE_Area": 1114.4310859899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355936.818899996578693, 259512.60249999910593 ], [ 355934.667900003492832, 259481.131900001317263 ], [ 355900.78660000115633, 259482.75450000166893 ], [ 355900.51690000295639, 259514.416299998760223 ], [ 355919.875600002706051, 259513.73030000180006 ], [ 355936.818899996578693, 259512.60249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203020300", "MAP": "G9-688-T63", "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.94896336, "LATITUDE": 18.36505566, "OBJECTID_1": 784, "PARCEL_NO_": "101203020300", "Tax_Legal_": "HULL 8 LITTLE NORTHSIDE", "Name": "GREAVES, ALAN M", "Address": "7526 Upper Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113300, "Improved_V": 91900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.85583402500001, "SHAPE_Area": 1277.5762840899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356859.824799999594688, 259451.551399998366833 ], [ 356862.803700000047684, 259480.495600000023842 ], [ 356866.495399996638298, 259520.422499999403954 ], [ 356872.130599997937679, 259521.524099998176098 ], [ 356876.176500000059605, 259519.868500001728535 ], [ 356880.233300000429153, 259516.946400001645088 ], [ 356883.490900002419949, 259513.173300001770258 ], [ 356885.967399999499321, 259506.4386 ], [ 356886.851000003516674, 259497.36879999935627 ], [ 356882.245099999010563, 259470.100099999457598 ], [ 356880.671999998390675, 259465.44310000166297 ], [ 356878.285499997437, 259461.6239 ], [ 356875.085400000214577, 259458.642400000244379 ], [ 356859.824799999594688, 259451.551399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90435862, "LATITUDE": 18.36501394, "OBJECTID_1": 1134, "PARCEL_NO_": "101404011400", "Tax_Legal_": "C-12 LOVENLUND (aka 54) NO.2 GREAT NORTHSIDE QTR.", "Name": "JCDUBYA TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 327800, "Improved_V": 878900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.52687464799999, "SHAPE_Area": 2435.2418854500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361565.500299997627735, 259485.843299999833107 ], [ 361571.350199997425079, 259556.39640000090003 ], [ 361574.593400001525879, 259554.311999998986721 ], [ 361573.810500003397465, 259551.5614 ], [ 361574.633000001311302, 259549.668299999088049 ], [ 361577.842100001871586, 259551.594399999827147 ], [ 361586.69709999859333, 259553.355599999427795 ], [ 361598.007100000977516, 259550.91499999910593 ], [ 361606.824400000274181, 259557.108899999409914 ], [ 361615.670400001108646, 259559.925500001758337 ], [ 361600.756899997591972, 259512.0962999984622 ], [ 361601.768200002610683, 259488.039900001138449 ], [ 361585.64190000295639, 259487.907999999821186 ], [ 361565.500299997627735, 259485.843299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9040291, "LATITUDE": 18.36500356, "OBJECTID_1": 1135, "PARCEL_NO_": "101404011500", "Tax_Legal_": "LOVENLUND C-13 GREAT NORTHSIDE QTR.", "Name": "KURG, MAURICE EDWARD & DENISE SANDRA", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 402400, "Improved_V": 208500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.16083504, "SHAPE_Area": 2558.64442998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361648.793999999761581, 259552.597300000488758 ], [ 361625.23759999871254, 259478.099500000476837 ], [ 361600.200499996542931, 259482.749800000339746 ], [ 361601.768200002610683, 259488.039900001138449 ], [ 361600.756899997591972, 259512.0962999984622 ], [ 361615.670400001108646, 259559.925500001758337 ], [ 361620.510099999606609, 259559.754099998623133 ], [ 361622.938000001013279, 259558.718499999493361 ], [ 361625.383900001645088, 259555.57209999859333 ], [ 361628.607400000095367, 259555.809599999338388 ], [ 361630.198399998247623, 259558.355700001120567 ], [ 361632.604800000786781, 259559.853000000119209 ], [ 361639.86879999935627, 259559.06810000166297 ], [ 361648.793999999761581, 259552.597300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94319501, "LATITUDE": 18.36509056, "OBJECTID_1": 748, "PARCEL_NO_": "101203014800", "Tax_Legal_": "ST PETER 13-5C LT. NORTHSIDE", "Name": "QUERRARD, RAPHELA & NAPOLEON QUERRARD REVOCABLE LIVING TRUST", "Address": "7480 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 221400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.07199356699999, "SHAPE_Area": 1915.34265663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357457.253799997270107, 259462.140599999576807 ], [ 357465.196400001645088, 259476.348900001496077 ], [ 357457.829899996519089, 259489.165300000458956 ], [ 357476.064000003039837, 259525.833700001239777 ], [ 357516.527099996805191, 259508.855200000107288 ], [ 357498.172499999403954, 259486.329100001603365 ], [ 357492.576899997889996, 259480.583799999207258 ], [ 357478.950499996542931, 259470.973000001162291 ], [ 357466.094400003552437, 259465.590500000864267 ], [ 357457.253799997270107, 259462.140599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103030900", "MAP": "A9-394-T91", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9653915, "LATITUDE": 18.36514263, "OBJECTID_1": 446, "PARCEL_NO_": "101103030900", "Tax_Legal_": "NELTJBERG 4B LT. NORTHSIDE", "Name": "PARROT, ASHFORD", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.925022485, "SHAPE_Area": 1431.70103118 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355166.17119999974966, 259484.341299999505281 ], [ 355134.975000001490116, 259454.743999999016523 ], [ 355130.921800002455711, 259457.243999999016523 ], [ 355113.64580000191927, 259497.421399999409914 ], [ 355118.429700002074242, 259503.793400000780821 ], [ 355120.832500003278255, 259505.712900001555681 ], [ 355123.249600000679493, 259505.943799998611212 ], [ 355128.08389999717474, 259506.405499998480082 ], [ 355148.329800002276897, 259496.227699998766184 ], [ 355166.17119999974966, 259484.341299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95767355, "LATITUDE": 18.36519775, "OBJECTID_1": 539, "PARCEL_NO_": "101104015200", "Tax_Legal_": "BONNE RESOLUTION 15-14 LT. NORTHSIDE", "Name": "WOMBOLD, DEBRA & NELSON, LINDA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 188200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.533755375, "SHAPE_Area": 1063.11613846 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355970.70380000025034, 259510.557799998670816 ], [ 355968.549199998378754, 259479.509399998933077 ], [ 355934.667900003492832, 259481.131900001317263 ], [ 355936.818899996578693, 259512.60249999910593 ], [ 355970.70380000025034, 259510.557799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90892225, "LATITUDE": 18.36513176, "OBJECTID_1": 1112, "PARCEL_NO_": "101403011800", "Tax_Legal_": "LOVENLUND C-5,B-18,AKA 92 GT.NORTHSIDE", "Name": "GORDON, GEORGE & DONNA", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 160100, "Improved_V": 763100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.551532812, "SHAPE_Area": 1349.99742113 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361086.288199998438358, 259512.740800000727177 ], [ 361083.808100000023842, 259519.897700000554323 ], [ 361082.88849999755621, 259533.189100001007318 ], [ 361082.703299999237061, 259554.93019999936223 ], [ 361098.079000003635883, 259548.512099999934435 ], [ 361128.052799999713898, 259532.292100001126528 ], [ 361149.900499999523163, 259523.393899999558926 ], [ 361099.160400003194809, 259516.223700001835823 ], [ 361086.288199998438358, 259512.740800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91016618, "LATITUDE": 18.36509147, "OBJECTID_1": 1117, "PARCEL_NO_": "101403012300", "Tax_Legal_": "LOVENLUND C-5-B-13--89 GT. NORTHSIDE", "Name": "CALLWOOD, LINDA C.", "Address": "PO Box 10281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 169800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.91541745399999, "SHAPE_Area": 1293.91460433 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360994.2804000005126, 259522.331300001591444 ], [ 360963.86710000038147, 259495.484600000083447 ], [ 360953.104599997401237, 259528.327199999243021 ], [ 360965.894100002944469, 259541.519600000232458 ], [ 360973.102300003170967, 259547.278099998831749 ], [ 360983.537600003182888, 259552.852000001817942 ], [ 360994.2804000005126, 259522.331300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103021000", "MAP": "D9-212-T59", "PARCEL_NAM": "16-C", "ACRE": "1.03", "LONGITUDE": -64.96108012000001, "LATITUDE": 18.36492725, "OBJECTID_1": 426, "PARCEL_NO_": "101103021000", "Tax_Legal_": "DOROTHEA 16C LT. NORTHSIDE", "Name": "JON EUWEMA and ROSA NOONAN", "Address": "PO Box 320", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96700, "Improved_V": 96900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.962519929, "SHAPE_Area": 4588.7873100899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355645.277199998497963, 259469.89750000089407 ], [ 355577.708400003612041, 259419.945500001311302 ], [ 355564.989500001072884, 259428.921500001102686 ], [ 355535.782399997115135, 259449.791799999773502 ], [ 355555.008000001311302, 259464.725699998438358 ], [ 355611.081299997866154, 259508.458799999207258 ], [ 355615.942500002682209, 259505.754399999976158 ], [ 355622.443400003015995, 259499.896999999880791 ], [ 355638.752999998629093, 259478.4989 ], [ 355645.277199998497963, 259469.89750000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103034000", "MAP": "A9-394A-T91", "PARCEL_NAM": "32", "ACRE": null, "LONGITUDE": -64.96692675, "LATITUDE": 18.36510669, "OBJECTID_1": 476, "PARCEL_NO_": "101103034000", "Tax_Legal_": "NELTJEBERG 32/EASTERN PT LT. NORTHSIDE", "Name": "MOOLENAAR, STANLEY", "Address": "715 Sable Xing", "City": "Suwanee", "State": "Georgia", "Zip": 30024, "Country": "United States", "Land_Value": 79500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.92800396600001, "SHAPE_Area": 2340.6075811599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355015.53999999910593, 259465.587699998170137 ], [ 354964.01690000295639, 259455.666799999773502 ], [ 354943.085199996829033, 259451.695799998939037 ], [ 354950.277300000190735, 259459.354100000113249 ], [ 354953.445000000298023, 259466.135000001639128 ], [ 354951.710100002586842, 259480.475099999457598 ], [ 354949.260600000619888, 259484.043699998408556 ], [ 354938.692199997603893, 259494.089699998497963 ], [ 354936.242700003087521, 259497.65819999948144 ], [ 354937.014799997210503, 259501.675299998372793 ], [ 354940.231100000441074, 259502.757100000977516 ], [ 354972.526699997484684, 259497.955200001597404 ], [ 354996.777199998497963, 259490.976500000804663 ], [ 355001.63849999755621, 259488.272100001573563 ], [ 355008.949299998581409, 259481.999099999666214 ], [ 355013.859099999070168, 259473.595499999821186 ], [ 355015.53999999910593, 259465.587699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031700", "MAP": "A9-394-T91", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96427643, "LATITUDE": 18.36478476, "OBJECTID_1": 454, "PARCEL_NO_": "101103031700", "Tax_Legal_": "NELTJBERG/EASTERN PT.9 LT. NORTHSIDE", "Name": "DOSSETT, EDGYLONA", "Address": "715 Sable Xing", "City": "Suwanee", "State": "Georgia", "Zip": 30024, "Country": "United States", "Land_Value": 181200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 495.32376040499997, "SHAPE_Area": 15271.1762894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355292.027099996805191, 259382.357799999415874 ], [ 355221.019500002264977, 259387.898299999535084 ], [ 355160.188199996948242, 259429.408100001513958 ], [ 355190.534999996423721, 259464.064699999988079 ], [ 355199.404399998486042, 259464.137299999594688 ], [ 355204.215300001204014, 259467.342999998480082 ], [ 355205.000100001692772, 259469.882599998265505 ], [ 355207.38120000064373, 259474.33500000089407 ], [ 355206.479599997401237, 259485.515599999576807 ], [ 355202.282600000500679, 259504.901900000870228 ], [ 355312.772600002586842, 259502.850900001823902 ], [ 355333.414099998772144, 259446.235700000077486 ], [ 355322.264200001955032, 259429.8902000002563 ], [ 355322.41889999806881, 259411.737399999052286 ], [ 355292.027099996805191, 259382.357799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95734974, "LATITUDE": 18.36518108, "OBJECTID_1": 538, "PARCEL_NO_": "101104015100", "Tax_Legal_": "BONNE RESOLUTION 15-13 LT. NORTHSIDE", "Name": "WOMBOLD, DEBRA & NELSON, LINDA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.507807625, "SHAPE_Area": 1070.34951699 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355968.549199998378754, 259479.509399998933077 ], [ 355970.70380000025034, 259510.557799998670816 ], [ 356008.622100003063679, 259508.33500000089407 ], [ 356006.221100002527237, 259506.2043999992311 ], [ 356002.401699997484684, 259481.26410000026226 ], [ 356000.805299997329712, 259479.351199999451637 ], [ 355995.978200003504753, 259478.045099999755621 ], [ 355968.549199998378754, 259479.509399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104026900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95113005, "LATITUDE": 18.36483682, "OBJECTID_1": 635, "PARCEL_NO_": "101104026900", "Tax_Legal_": "HULL 11-B-5 LITTLE NORTHSIDE", "Name": "BLAK, SOREN & GRACE", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 114300, "Improved_V": 253800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 485.31575324, "SHAPE_Area": 3155.73593845 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356670.150700002908707, 259472.374899998307228 ], [ 356705.449600003659725, 259407.5641999989748 ], [ 356680.299500003457069, 259408.529800001531839 ], [ 356673.174099996685982, 259408.803399998694658 ], [ 356615.421099998056889, 259411.020700000226498 ], [ 356616.05629999935627, 259414.625900000333786 ], [ 356618.173000000417233, 259416.319299999624491 ], [ 356622.618000000715256, 259417.377599999308586 ], [ 356629.179700002074242, 259418.012600000947714 ], [ 356645.266400001943111, 259420.552600000053644 ], [ 356663.469700001180172, 259419.494300000369549 ], [ 356670.878100000321865, 259419.494300000369549 ], [ 356680.25450000166893, 259422.217399999499321 ], [ 356687.350199997425079, 259423.930100001394749 ], [ 356686.627599999308586, 259431.346599999815226 ], [ 356683.355599999427795, 259436.808200001716614 ], [ 356658.982799999415874, 259458.140299998223782 ], [ 356586.850599996745586, 259501.035199999809265 ], [ 356581.973200000822544, 259505.639299999922514 ], [ 356582.741700001060963, 259510.078600000590086 ], [ 356589.962600000202656, 259514.359499998390675 ], [ 356603.668099999427795, 259514.682799998670816 ], [ 356618.223099999129772, 259509.946800000965595 ], [ 356636.068000003695488, 259497.638300001621246 ], [ 356640.956299997866154, 259491.767700001597404 ], [ 356641.791299998760223, 259488.396999999880791 ], [ 356650.736299999058247, 259479.604299999773502 ], [ 356658.025499999523163, 259475.86430000141263 ], [ 356670.150700002908707, 259472.374899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94364492, "LATITUDE": 18.36498191, "OBJECTID_1": 735, "PARCEL_NO_": "101203013400", "Tax_Legal_": "ST PETER 13-3 LITTLE NORTHSIDE QTR", "Name": "BRYAN, MICHEAL JAMES", "Address": "3213 Friar Ln", "City": "Garland", "State": "Texas", "Zip": 75044, "Country": "United States", "Land_Value": 66700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.90034777700001, "SHAPE_Area": 2002.87796469 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357416.543499998748302, 259453.63459999859333 ], [ 357421.136600002646446, 259519.978700000792742 ], [ 357424.503200002014637, 259520.345499999821186 ], [ 357443.12389999628067, 259511.631999999284744 ], [ 357456.249700002372265, 259485.352699998766184 ], [ 357460.349500000476837, 259477.364700000733137 ], [ 357452.42849999666214, 259460.623500000685453 ], [ 357428.282300002872944, 259455.359600000083447 ], [ 357416.543499998748302, 259453.63459999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103021200", "MAP": "D9-7750-T006", "PARCEL_NAM": "16-H-1", "ACRE": ".03", "LONGITUDE": -64.96029319, "LATITUDE": 18.36523177, "OBJECTID_1": 428, "PARCEL_NO_": "101103021200", "Tax_Legal_": "16H REM & 16-I-1 DOROTHEA NO.6 LITTLE NORTHSIDE QTR", "Name": "JOHN FEOLA ST THOMAS REVOCABLE TRUST", "Address": "PO Box 305062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 742900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.930919042, "SHAPE_Area": 92.235117537899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355692.702200002968311, 259487.595300000160933 ], [ 355664.630000002682209, 259500.371399998664856 ], [ 355669.979800000786781, 259504.50789999961853 ], [ 355692.702200002968311, 259487.595300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90384782, "LATITUDE": 18.36468152, "OBJECTID_1": 5351, "PARCEL_NO_": "103002031400", "Tax_Legal_": "LOVENLUND C-41 GT. NORTHSIDE", "Name": "ROY, GERALD & BONITA BONFIGILIO", "Address": "PO Box 7322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 261100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.85121565200001, "SHAPE_Area": 3293.3378021100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361669.936099998652935, 259531.872000001370907 ], [ 361647.997699998319149, 259456.754299998283386 ], [ 361642.571099996566772, 259431.167500000447035 ], [ 361623.230400003492832, 259429.74269999936223 ], [ 361620.804300002753735, 259430.567200001329184 ], [ 361607.81700000166893, 259440.593400001525879 ], [ 361618.954300001263618, 259458.416400000452995 ], [ 361625.23759999871254, 259478.099500000476837 ], [ 361648.793999999761581, 259552.597300000488758 ], [ 361658.520099997520447, 259546.76630000025034 ], [ 361660.991200000047684, 259540.664799999445677 ], [ 361662.605599999427795, 259540.466899998486042 ], [ 361665.040700003504753, 259538.587000001221895 ], [ 361666.6875, 259534.589699998497963 ], [ 361665.915299996733665, 259530.572599999606609 ], [ 361669.936099998652935, 259531.872000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104026800", "MAP": "D9-5661-T94", "PARCEL_NAM": "11B-2", "ACRE": ".56", "LONGITUDE": -64.95181277, "LATITUDE": 18.36502225, "OBJECTID_1": 634, "PARCEL_NO_": "101104026800", "Tax_Legal_": "HULL 11-B-2 LITTLE NORTHSIDE", "Name": "BLAK, SOREN & GRACE", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 106600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.65896524300001, "SHAPE_Area": 2812.20536838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356636.919299997389317, 259464.339000001549721 ], [ 356541.222000002861023, 259462.570000000298023 ], [ 356533.707599997520447, 259501.378499999642372 ], [ 356532.428099997341633, 259507.986699998378754 ], [ 356575.537100002169609, 259503.897900000214577 ], [ 356583.672100000083447, 259495.520700000226498 ], [ 356633.107100002467632, 259466.583299998193979 ], [ 356636.919299997389317, 259464.339000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702040300", "MAP": "A9-157-T71", "PARCEL_NAM": "15-6", "ACRE": null, "LONGITUDE": -64.95698591, "LATITUDE": 18.3649598, "OBJECTID_1": 3099, "PARCEL_NO_": "102702040300", "Tax_Legal_": "BONNE RESOLUTION 15-6 No5 LITTLE NORTHSIDE QTR.", "Name": "DEANN WESSING LIVING TRUST SP", "Address": "PO Box 1018", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35900, "Improved_V": 159000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.11257771800001, "SHAPE_Area": 1505.6521282900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356034.254299998283386, 259433.817699998617172 ], [ 356032.861100003123283, 259408.052799999713898 ], [ 356021.186099998652935, 259453.342399999499321 ], [ 356009.824000000953674, 259461.904199998825788 ], [ 356013.526500001549721, 259500.564699999988079 ], [ 356016.730200000107288, 259503.124000001698732 ], [ 356038.50959999859333, 259502.246800001710653 ], [ 356035.581000000238419, 259467.392400000244379 ], [ 356034.254299998283386, 259433.817699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701020700", "MAP": "A9-157-T71", "PARCEL_NAM": "15-5", "ACRE": ".24", "LONGITUDE": -64.95669483, "LATITUDE": 18.3650769, "OBJECTID_1": 2843, "PARCEL_NO_": "102701020700", "Tax_Legal_": "15-5 BONNE RESOLUTION NO 5 LITTLE NORTHSIDE", "Name": "BERNIER, JEAN M., PATRICIA ANNE & ROBERT G.", "Address": "7683 Lower Hull 15-5", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28400, "Improved_V": 219000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.02438152100001, "SHAPE_Area": 1385.6590819800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356069.491099998354912, 259462.392599999904633 ], [ 356035.581000000238419, 259467.392400000244379 ], [ 356038.50959999859333, 259502.246800001710653 ], [ 356077.232400000095367, 259500.241700001060963 ], [ 356077.331299997866154, 259488.632399998605251 ], [ 356069.491099998354912, 259462.392599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303020300", "MAP": "A9-65-T67", "PARCEL_NAM": "12-2", "ACRE": null, "LONGITUDE": -64.91691867, "LATITUDE": 18.36494273, "OBJECTID_1": 935, "PARCEL_NO_": "101303020300", "Tax_Legal_": "12-2 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "DRISCOLL, RICHARD D. & LISSA F.", "Address": "PO Box 6693", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 116900, "Improved_V": 597600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.332634756, "SHAPE_Area": 2167.7600465599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360282.304700002074242, 259516.715300001204014 ], [ 360283.431100003421307, 259479.14979999884963 ], [ 360235.039800003170967, 259480.2314000017941 ], [ 360235.558399997651577, 259514.010600000619888 ], [ 360237.961099997162819, 259515.930100001394749 ], [ 360240.381899997591972, 259515.738899998366833 ], [ 360242.007100000977516, 259514.274500001221895 ], [ 360246.798199996352196, 259519.802200000733137 ], [ 360246.762199997901917, 259524.023699998855591 ], [ 360258.772399999201298, 259534.043400000780821 ], [ 360262.802199997007847, 259534.287500001490116 ], [ 360268.4679000005126, 259531.800700001418591 ], [ 360282.304700002074242, 259516.715300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91616245, "LATITUDE": 18.36509585, "OBJECTID_1": 974, "PARCEL_NO_": "101304020600", "Tax_Legal_": "14-20 PETERBORG GREAT NORTHSIDE QUARTER", "Name": "BORNN, DAVID A", "Address": "14-20 ESTATE PETERBORG", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 133000, "Improved_V": 213600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4.24768996285, "SHAPE_Area": 0.35931981134000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360340.093199998140335, 259521.119899999350309 ], [ 360339.724399998784065, 259520.425700001418591 ], [ 360339.476499997079372, 259519.281599998474121 ], [ 360339.520499996840954, 259520.983199998736382 ], [ 360340.093199998140335, 259521.119899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801018700", "MAP": "D9-2070-T82", "PARCEL_NAM": "1-6", "ACRE": ".7", "LONGITUDE": -64.94138399000001, "LATITUDE": 18.36471724, "OBJECTID_1": 3764, "PARCEL_NO_": "102801018700", "Tax_Legal_": "LERKENLIND 1-6 GT. NORTHSIDE", "Name": "RICHARDS, NICHOLA ANNE", "Address": "PO Box 304569", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88300, "Improved_V": 167400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.72353203400002, "SHAPE_Area": 4293.1400611600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357709.782399997115135, 259446.264499999582767 ], [ 357653.718199998140335, 259401.475999999791384 ], [ 357644.832500003278255, 259403.303100001066923 ], [ 357648.804799996316433, 259410.301699999719858 ], [ 357650.361599996685982, 259416.858300000429153 ], [ 357649.479800000786781, 259425.717099998146296 ], [ 357646.146700002253056, 259438.355399999767542 ], [ 357644.370399996638298, 259457.550400000065565 ], [ 357649.910300001502037, 259469.839099999517202 ], [ 357655.489799998700619, 259477.484200000762939 ], [ 357661.042199999094009, 259488.295400001108646 ], [ 357667.413599997758865, 259497.635600000619888 ], [ 357672.95889999717474, 259509.291200000792742 ], [ 357676.974299997091293, 259511.223900001496077 ], [ 357680.201300002634525, 259511.039200000464916 ], [ 357682.632799997925758, 259509.581399999558926 ], [ 357685.894100002944469, 259505.386300001293421 ], [ 357694.864200003445148, 259493.638399999588728 ], [ 357701.436999998986721, 259479.337900001555681 ], [ 357706.402500003576279, 259464.390900000929832 ], [ 357709.782399997115135, 259446.264499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304020200", "MAP": "A9-65-T67", "PARCEL_NAM": "12-3", "ACRE": null, "LONGITUDE": -64.91737105, "LATITUDE": 18.36492666, "OBJECTID_1": 972, "PARCEL_NO_": "101304020200", "Tax_Legal_": "12-3 PETERBORG GREAT NORTHSIDE QUARTER", "Name": "FREDERICKS, KARL T. & MAXINE M", "Address": "3062 Quantm Ln", "City": "Atlanta", "State": "Georgia", "Zip": 30341, "Country": "United States", "Land_Value": 137800, "Improved_V": 513600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.76567001800001, "SHAPE_Area": 1966.0660517599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360235.039800003170967, 259480.2314000017941 ], [ 360208.431500002741814, 259480.013599999248981 ], [ 360181.01860000193119, 259479.578200001269579 ], [ 360198.42849999666214, 259518.35080000013113 ], [ 360203.964699998497963, 259531.061700001358986 ], [ 360230.670199997723103, 259519.88120000064373 ], [ 360235.558399997651577, 259514.010600000619888 ], [ 360235.039800003170967, 259480.2314000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031100", "MAP": "A9-394-T91", "PARCEL_NAM": "4D", "ACRE": ".34", "LONGITUDE": -64.96561035000001, "LATITUDE": 18.36483186, "OBJECTID_1": 448, "PARCEL_NO_": "101103031100", "Tax_Legal_": "NELTJBERG/EAST PART 4D LT. NORTHSIDE", "Name": "PARROTT, MERRILL", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.629835305, "SHAPE_Area": 1421.2298964 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355140.723399996757507, 259442.547600001096725 ], [ 355122.377899996936321, 259418.966099999845028 ], [ 355087.415100000798702, 259452.877099998295307 ], [ 355096.243199996650219, 259457.804499998688698 ], [ 355102.619999997317791, 259466.511500000953674 ], [ 355102.603799998760223, 259468.411200001835823 ], [ 355108.892399996519089, 259487.461100000888109 ], [ 355123.693800002336502, 259453.807300001382828 ], [ 355133.423500001430511, 259447.554099999368191 ], [ 355140.723399996757507, 259442.547600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94296243, "LATITUDE": 18.36480942, "OBJECTID_1": 751, "PARCEL_NO_": "101203015100", "Tax_Legal_": "ST.PETER ESTATE 13-5D&13-5E LT.NORTHSIDE QTR.", "Name": "ANGELA QUERRARD", "Address": "7479 Estate Barrette", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 142800, "Improved_V": 194600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.102729885, "SHAPE_Area": 1903.09038227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357502.718400001525879, 259425.993500001728535 ], [ 357478.210699997842312, 259463.156500000506639 ], [ 357490.244199998676777, 259470.432199999690056 ], [ 357499.853500001132488, 259478.321299999952316 ], [ 357521.404500000178814, 259504.2511 ], [ 357522.991999998688698, 259507.219399999827147 ], [ 357526.226199999451637, 259506.190400000661612 ], [ 357527.045100003480911, 259504.719399999827147 ], [ 357528.788999997079372, 259489.323899999260902 ], [ 357527.298699997365475, 259474.957299999892712 ], [ 357523.389399997889996, 259460.570999998599291 ], [ 357520.212700001895428, 259454.845400001853704 ], [ 357517.853100001811981, 259447.859999999403954 ], [ 357506.686999998986721, 259433.414299998432398 ], [ 357504.325599998235703, 259426.640000000596046 ], [ 357502.718400001525879, 259425.993500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91101948, "LATITUDE": 18.36501645, "OBJECTID_1": 1120, "PARCEL_NO_": "101403012600", "Tax_Legal_": "LOVENLUND C-2-D&C-5-B-11(75) GREAT NORTHSIDE QUARTER", "Name": "BEAKLEY, JOHN W. & MARY J.", "Address": "8214 Forest Hills Blvd", "City": "Dallas", "State": "Texas", "Zip": 75218, "Country": "United States", "Land_Value": 131200, "Improved_V": 301000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.88248209400001, "SHAPE_Area": 1001.84160474 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360931.406000003218651, 259519.705800000578165 ], [ 360910.45269999653101, 259518.267799999564886 ], [ 360899.178700000047684, 259516.486699998378754 ], [ 360858.247400000691414, 259493.775800000876188 ], [ 360851.825699999928474, 259490.345800001174212 ], [ 360875.651799999177456, 259533.181699998676777 ], [ 360931.406000003218651, 259519.705800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90936559, "LATITUDE": 18.36501372, "OBJECTID_1": 1114, "PARCEL_NO_": "101403012000", "Tax_Legal_": "LOVENLUND C-5-B-17 AKA 93 GT NORTHSIDE", "Name": "THOMPSON, JOHN R. and MAJORIE W.", "Address": "112 Hillside Rd", "City": "Harrisburg", "State": "Pennsylvania", "Zip": 17104, "Country": "United States", "Land_Value": 165000, "Improved_V": 760900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.274757142, "SHAPE_Area": 1361.9988976100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361042.09740000218153, 259494.013999998569489 ], [ 361032.114200003445148, 259530.02930000051856 ], [ 361074.829000003635883, 259532.700899999588728 ], [ 361082.88849999755621, 259533.189100001007318 ], [ 361083.808100000023842, 259519.897700000554323 ], [ 361086.288199998438358, 259512.740800000727177 ], [ 361073.417700000107288, 259509.046900000423193 ], [ 361042.09740000218153, 259494.013999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031000", "MAP": "A9-394-T91", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96516192, "LATITUDE": 18.36490099, "OBJECTID_1": 447, "PARCEL_NO_": "101103031000", "Tax_Legal_": "NELTJBERG/ EAST PART 4C LT. NORTHSIDE", "Name": "PARROTT, ADRIAN", "Address": "9920 Francis Lewis Blvd", "City": "Queens Village", "State": "New York", "Zip": 11429, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.05605111400001, "SHAPE_Area": 1596.62677074 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355133.423500001430511, 259447.554099999368191 ], [ 355137.406499996781349, 259453.286299999803305 ], [ 355134.975000001490116, 259454.743999999016523 ], [ 355166.17119999974966, 259484.341299999505281 ], [ 355180.787299998104572, 259472.428599998354912 ], [ 355186.48369999974966, 259466.353500001132488 ], [ 355190.534999996423721, 259464.064699999988079 ], [ 355160.188199996948242, 259429.408100001513958 ], [ 355140.723399996757507, 259442.547600001096725 ], [ 355133.423500001430511, 259447.554099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304020100", "MAP": "A9-65-T67", "PARCEL_NAM": "11-1-4", "ACRE": null, "LONGITUDE": -64.91786411, "LATITUDE": 18.36492795, "OBJECTID_1": 971, "PARCEL_NO_": "101304020100", "Tax_Legal_": "PETERBORG 11-1-4 GT. NORTHSIDE", "Name": "VAN, HOLTEN JUNE", "Address": "BOX 2293", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 136000, "Improved_V": 288800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.58325238399999, "SHAPE_Area": 2482.21859421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360181.01860000193119, 259479.578200001269579 ], [ 360127.00110000371933, 259478.50279999896884 ], [ 360129.251000002026558, 259498.364000000059605 ], [ 360130.804300002753735, 259505.342799998819828 ], [ 360135.550499998033047, 259516.147399999201298 ], [ 360142.746100001037121, 259523.383499998599291 ], [ 360198.42849999666214, 259518.35080000013113 ], [ 360181.01860000193119, 259479.578200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90973795, "LATITUDE": 18.36491158, "OBJECTID_1": 1116, "PARCEL_NO_": "101403012200", "Tax_Legal_": "LOVENLUND C-5-B-15 AKA 94 GT NORTHSIDE", "Name": "BABIS, KEVIN D. & CATHERINE", "Address": "30 Friar Ln", "City": "Trumbull", "State": "Connecticut", "Zip": 6611, "Country": "United States", "Land_Value": 165000, "Improved_V": 1110800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.79305317199999, "SHAPE_Area": 1586.24714853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361012.396899998188019, 259478.149999998509884 ], [ 361009.990599997341633, 259476.65260000154376 ], [ 360994.2804000005126, 259522.331300001591444 ], [ 361032.114200003445148, 259530.02930000051856 ], [ 361042.09740000218153, 259494.013999998569489 ], [ 361012.396899998188019, 259478.149999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91056157, "LATITUDE": 18.36481244, "OBJECTID_1": 1119, "PARCEL_NO_": "101403012500", "Tax_Legal_": "LOVENLUND C-5-B-12-88 GT. NORTHSIDE", "Name": "ISLAND DREAMS LTD", "Address": "8126 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025801, "Country": "United States", "Land_Value": 189200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.43206583200001, "SHAPE_Area": 1761.56029962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360932.537799999117851, 259481.507100000977516 ], [ 360905.326399996876717, 259457.430900000035763 ], [ 360903.622100003063679, 259468.182700000703335 ], [ 360904.302500002086163, 259482.964800000190735 ], [ 360907.448600001633167, 259492.2787000015378 ], [ 360916.242600001394749, 259501.216600000858307 ], [ 360937.901500001549721, 259514.481600001454353 ], [ 360946.709799997508526, 259521.730900000780821 ], [ 360953.104599997401237, 259528.327199999243021 ], [ 360963.86710000038147, 259495.484600000083447 ], [ 360939.753300003707409, 259486.421399999409914 ], [ 360932.537799999117851, 259481.507100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203011700", "MAP": "D9-4866-T90", "PARCEL_NAM": "14 REM", "ACRE": "1.3", "LONGITUDE": -64.94430875, "LATITUDE": 18.36494524, "OBJECTID_1": 716, "PARCEL_NO_": "101203011700", "Tax_Legal_": "14 ESTATE ST.PETER LITTLE NORTHSIDE QTR", "Name": "ANN BRYAN", "Address": "3213 FRIAR LN", "City": "Garland", "State": "Texas", "Zip": 750445421, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 325.516251463, "SHAPE_Area": 5165.3919244 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357353.446400001645088, 259436.998799998313189 ], [ 357323.171999998390675, 259434.447399999946356 ], [ 357325.131800003349781, 259447.760400000959635 ], [ 357334.376000002026558, 259498.498500000685453 ], [ 357338.202600002288818, 259522.594500001519918 ], [ 357345.51690000295639, 259515.899300001561642 ], [ 357377.058399997651577, 259504.969500001519918 ], [ 357379.274099998176098, 259528.8412000015378 ], [ 357392.252499997615814, 259519.870400000363588 ], [ 357400.382100000977516, 259512.126499999314547 ], [ 357406.078500002622604, 259506.051399998366833 ], [ 357409.359499998390675, 259499.534400001168251 ], [ 357409.382799997925758, 259496.790300000458956 ], [ 357407.858300000429153, 259486.434300001710653 ], [ 357403.974200002849102, 259469.092799998819828 ], [ 357399.98759999871254, 259463.782900001853704 ], [ 357391.992799997329712, 259455.695900000631809 ], [ 357383.978200003504753, 259449.930700000375509 ], [ 357363.026699997484684, 259448.281599998474121 ], [ 357355.012100003659725, 259442.516499999910593 ], [ 357353.417499996721745, 259440.392499998211861 ], [ 357353.446400001645088, 259436.998799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033200", "MAP": "A9-394-T91", "PARCEL_NAM": "24", "ACRE": "1.1", "LONGITUDE": -64.96798726, "LATITUDE": 18.36487755, "OBJECTID_1": 468, "PARCEL_NO_": "101103033200", "Tax_Legal_": "NELTJEBERG 24/EASTERN PT LT. NORTHSIDE", "Name": "SHINN, BONNIE & GIZA, DAVID", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 108400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.99461067300001, "SHAPE_Area": 4984.4313935199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354929.509099997580051, 259436.174899999052286 ], [ 354910.22240000218153, 259428.417700000107288 ], [ 354799.681999996304512, 259436.378899998962879 ], [ 354801.175999999046326, 259450.323300000280142 ], [ 354800.949400000274181, 259476.919199999421835 ], [ 354830.793799996376038, 259475.896899998188019 ], [ 354938.978100001811981, 259460.528099998831749 ], [ 354932.58330000191927, 259453.93189999833703 ], [ 354931.001299999654293, 259450.330400001257658 ], [ 354928.67230000346899, 259439.756599999964237 ], [ 354929.509099997580051, 259436.174899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90355318, "LATITUDE": 18.36466829, "OBJECTID_1": 5352, "PARCEL_NO_": "103002031500", "Tax_Legal_": "LOVENLUND C-42 GRT. NORTHSIDE", "Name": "TURNOF, AARON J & STACY L", "Address": "224 Lynn Ln", "City": "Westfield", "State": "New Jersey", "Zip": 7090, "Country": "United States", "Land_Value": 240000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.22220769799998, "SHAPE_Area": 3200.0690205400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361642.571099996566772, 259431.167500000447035 ], [ 361647.997699998319149, 259456.754299998283386 ], [ 361669.936099998652935, 259531.872000001370907 ], [ 361673.973099999129772, 259531.271800000220537 ], [ 361675.598300002515316, 259529.807500001043081 ], [ 361677.212700001895428, 259529.609600000083447 ], [ 361682.034400001168251, 259531.548900000751019 ], [ 361693.310199998319149, 259533.11879999935627 ], [ 361707.026500001549721, 259532.175599999725819 ], [ 361677.806100003421307, 259459.953600000590086 ], [ 361679.605700001120567, 259438.014600001275539 ], [ 361673.164200000464916, 259436.906399998813868 ], [ 361642.571099996566772, 259431.167500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90326796, "LATITUDE": 18.36466894, "OBJECTID_1": 5353, "PARCEL_NO_": "103002031600", "Tax_Legal_": "LOVENLUND C-43 GT. NORTHSIDE", "Name": "RAMONAS, GEORGE A.", "Address": "414 3rd St SE", "City": "Washington", "State": "District of Columbia", "Zip": 20003, "Country": "United States", "Land_Value": 270000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.26104875499999, "SHAPE_Area": 2472.8545044100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361679.605700001120567, 259438.014600001275539 ], [ 361677.806100003421307, 259459.953600000590086 ], [ 361707.026500001549721, 259532.175599999725819 ], [ 361708.640900000929832, 259531.977699998766184 ], [ 361713.511200003325939, 259528.2179000005126 ], [ 361717.537299998104572, 259528.884100001305342 ], [ 361719.1570999994874, 259528.052999999374151 ], [ 361724.853500001132488, 259521.977899998426437 ], [ 361728.091300003230572, 259520.526799999177456 ], [ 361734.525600001215935, 259522.479299999773502 ], [ 361708.384800001978874, 259467.381000000983477 ], [ 361705.359200000762939, 259443.924899999052286 ], [ 361679.605700001120567, 259438.014600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701020200", "MAP": "A9-157-T71", "PARCEL_NAM": "14-68", "ACRE": ".22", "LONGITUDE": -64.95877624000001, "LATITUDE": 18.36491736, "OBJECTID_1": 2839, "PARCEL_NO_": "102701020200", "Tax_Legal_": "BONNE RESOLUTION 14-68 LT. NORTHSIDE", "Name": "ADAMS, II, JOANNE and RAYMOND", "Address": "1441 E Buckeye Rd", "City": "Phoenix", "State": "Arizona", "Zip": 85036, "Country": "United States", "Land_Value": 19400, "Improved_V": 74800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.38047896800001, "SHAPE_Area": 1249.57669186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355846.309799998998642, 259440.934300001710653 ], [ 355842.321400001645088, 259435.835400000214577 ], [ 355830.962899997830391, 259443.975000001490116 ], [ 355815.421800002455711, 259469.812399998307228 ], [ 355816.120200000703335, 259482.48369999974966 ], [ 355856.457400001585484, 259480.280699998140335 ], [ 355854.927500002086163, 259470.557900000363588 ], [ 355846.309799998998642, 259440.934300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203020900", "MAP": "D9-276-T61", "PARCEL_NAM": "23A", "ACRE": null, "LONGITUDE": -64.946563, "LATITUDE": 18.36474043, "OBJECTID_1": 789, "PARCEL_NO_": "101203020900", "Tax_Legal_": "ST PETER 23A LITTLE NORTHSIDE QTR", "Name": "RICHARDSON, C. T. & SCHMIEMANN, M. M", "Address": "6003 Clerkenwell Ct", "City": "Burke", "State": "Virginia", "Zip": 22015, "Country": "United States", "Land_Value": 68900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.99138834300001, "SHAPE_Area": 1463.271186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357140.069899998605251, 259422.902499999850988 ], [ 357117.056500002741814, 259422.24549999833107 ], [ 357115.102200001478195, 259491.637600000947714 ], [ 357120.773299999535084, 259488.517599999904633 ], [ 357128.049900002777576, 259486.255100000649691 ], [ 357137.282799996435642, 259486.062199998646975 ], [ 357140.069899998605251, 259422.902499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103021100", "MAP": "D9-212-T59", "PARCEL_NAM": "16-B", "ACRE": "1.08", "LONGITUDE": -64.96073975, "LATITUDE": 18.36459795, "OBJECTID_1": 427, "PARCEL_NO_": "101103021100", "Tax_Legal_": "16B ESTATE DOROTHEA NO.6 LITTLE NORTHSIDE QTR", "Name": "COMBS, DOROTHY", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93600, "Improved_V": 292100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.19425382600002, "SHAPE_Area": 3886.9693359500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355675.481700003147125, 259429.729299999773502 ], [ 355622.59910000115633, 259386.963199999183416 ], [ 355611.231600001454353, 259396.158300001174212 ], [ 355596.627999998629093, 259406.593400001525879 ], [ 355577.708400003612041, 259419.945500001311302 ], [ 355645.277199998497963, 259469.89750000089407 ], [ 355646.906099997460842, 259468.010999999940395 ], [ 355651.805100001394749, 259460.8739 ], [ 355658.352700002491474, 259449.528400000184774 ], [ 355675.481700003147125, 259429.729299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95417317, "LATITUDE": 18.36492244, "OBJECTID_1": 3158, "PARCEL_NO_": "102702050300", "Tax_Legal_": "HULL 5E-3 LITTLE NORTHSIDE", "Name": "BRYAN, FRANCIS J. & CLARA I. (CO-TRUSTEES)", "Address": "7636 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.18483055199999, "SHAPE_Area": 1428.0408864399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356282.242499999701977, 259477.643800001591444 ], [ 356340.2449000030756, 259484.240299999713898 ], [ 356348.329599998891354, 259481.773299999535084 ], [ 356342.188400000333786, 259445.41499999910593 ], [ 356324.390100002288818, 259452.235399998724461 ], [ 356302.526199996471405, 259463.033300001174212 ], [ 356294.419900000095367, 259468.03319999948144 ], [ 356282.242499999701977, 259477.643800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91004223, "LATITUDE": 18.36474294, "OBJECTID_1": 1118, "PARCEL_NO_": "101403012400", "Tax_Legal_": "LOVENLUND C-6-G AKA 95 GT NORTHSIDE", "Name": "BLAKE, CHAD and JANA L.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165000, "Improved_V": 882400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.89123369800001, "SHAPE_Area": 1750.4116434800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361009.990599997341633, 259476.65260000154376 ], [ 361001.16610000282526, 259471.303100001066923 ], [ 360979.566500000655651, 259451.072399999946356 ], [ 360963.86710000038147, 259495.484600000083447 ], [ 360994.2804000005126, 259522.331300001591444 ], [ 361009.990599997341633, 259476.65260000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95373948, "LATITUDE": 18.36481899, "OBJECTID_1": 3159, "PARCEL_NO_": "102702050400", "Tax_Legal_": "HULL 5E-4 LITTLE NORTHSIDE", "Name": "CAPOZZOLI, RICHARD K. & PEGGY L.", "Address": "820 Daffodil Ct", "City": "Oviedo", "State": "Florida", "Zip": 32766, "Country": "United States", "Land_Value": 42200, "Improved_V": 222700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.471975714, "SHAPE_Area": 1740.0358099 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356394.882200002670288, 259470.049100000411272 ], [ 356391.32379999756813, 259435.207299999892712 ], [ 356380.963299997150898, 259437.288600001484156 ], [ 356364.009099997580051, 259439.682900000363588 ], [ 356342.188400000333786, 259445.41499999910593 ], [ 356348.329599998891354, 259481.773299999535084 ], [ 356382.286399997770786, 259471.285500001162291 ], [ 356387.9324000030756, 259471.120600000023842 ], [ 356392.772100001573563, 259470.949099998921156 ], [ 356394.882200002670288, 259470.049100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92808496000001, "LATITUDE": 18.37312813, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.097798439, "SHAPE_Area": 480.06918495500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359060.70830000191927, 260362.49040000140667 ], [ 359069.279200002551079, 260397.602000001817942 ], [ 359078.582800000905991, 260441.374499998986721 ], [ 359083.456600002944469, 260437.192600000649691 ], [ 359074.941399998962879, 260395.537399999797344 ], [ 359066.383000001311302, 260358.94819999858737 ], [ 359060.70830000191927, 260362.49040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92887894, "LATITUDE": 18.37311535, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 341.27466155799999, "SHAPE_Area": 1004.9061060400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359006.437200002372265, 260391.177099999040365 ], [ 359053.411899998784065, 260367.074700001627207 ], [ 359060.70830000191927, 260362.49040000140667 ], [ 359059.955899998545647, 260356.151399999856949 ], [ 359025.126199997961521, 260374.442600000649691 ], [ 358986.245200000703335, 260395.022599998861551 ], [ 358954.655199997127056, 260411.651500001549721 ], [ 358933.601199999451637, 260422.033900000154972 ], [ 358914.998400002717972, 260428.636599998921156 ], [ 358918.986800000071526, 260433.735500000417233 ], [ 358923.031000003218651, 260432.291000001132488 ], [ 358924.641800001263618, 260432.5152000002563 ], [ 358927.028399996459484, 260436.334499999880791 ], [ 358931.884199999272823, 260434.263300001621246 ], [ 358931.113899998366833, 260430.035100001841784 ], [ 358960.270599998533726, 260415.074999999254942 ], [ 359006.437200002372265, 260391.177099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92817684000001, "LATITUDE": 18.37275347, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.631842560399999, "SHAPE_Area": 37.530893940699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359064.824400000274181, 260352.602600000798702 ], [ 359059.955899998545647, 260356.151399999856949 ], [ 359060.70830000191927, 260362.49040000140667 ], [ 359066.383000001311302, 260358.94819999858737 ], [ 359064.824400000274181, 260352.602600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92827802, "LATITUDE": 18.37233117, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.33717505300001, "SHAPE_Area": 534.62224302200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359041.312899999320507, 260272.827899999916553 ], [ 359046.730499997735023, 260299.470100000500679 ], [ 359059.955899998545647, 260356.151399999856949 ], [ 359064.824400000274181, 260352.602600000798702 ], [ 359058.618400000035763, 260323.843100000172853 ], [ 359051.636699996888638, 260291.488699998706579 ], [ 359046.213699996471405, 260265.479800000786781 ], [ 359041.312899999320507, 260272.827899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010100", "MAP": "B9-276-T70", "PARCEL_NAM": "17-9", "ACRE": null, "LONGITUDE": -64.94803287000001, "LATITUDE": 18.3714638, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 657.87906139699999, "SHAPE_Area": 17067.043414399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356983.81139999628067, 260136.931499999016523 ], [ 356960.974899999797344, 260072.572200000286102 ], [ 356958.609999999403954, 260066.219999998807907 ], [ 356956.239600002765656, 260060.5011 ], [ 356953.003499999642372, 260061.741099998354912 ], [ 356919.833200000226498, 260074.557500001043081 ], [ 356926.033399999141693, 260293.301100000739098 ], [ 356942.208200000226498, 260287.734000001102686 ], [ 356943.847800001502037, 260284.581000000238419 ], [ 356947.100100003182888, 260281.441199999302626 ], [ 356954.394599996507168, 260277.067999999970198 ], [ 356960.859499998390675, 260275.432100001722574 ], [ 356965.699199996888638, 260275.260600000619888 ], [ 356971.258900001645088, 260285.22749999910593 ], [ 356972.860699996352196, 260286.507199998944998 ], [ 356975.241899996995926, 260290.959699999541044 ], [ 356976.845499999821186, 260292.028299998492002 ], [ 356977.633799999952316, 260294.145599998533726 ], [ 356994.564599998295307, 260294.495299998670816 ], [ 357008.255699999630451, 260296.507199998944998 ], [ 357030.783900000154972, 260302.391100000590086 ], [ 357044.4408999979496, 260308.413499999791384 ], [ 356983.81139999628067, 260136.931499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92847364000001, "LATITUDE": 18.37222453, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.54961216, "SHAPE_Area": 671.46887472799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359041.312899999320507, 260272.827899999916553 ], [ 359033.950000002980232, 260285.222199998795986 ], [ 359025.820299997925758, 260292.966099999845028 ], [ 359022.577100001275539, 260295.050500001758337 ], [ 359013.617799997329712, 260305.531899999827147 ], [ 359026.409100003540516, 260318.513300001621246 ], [ 359046.730499997735023, 260299.470100000500679 ], [ 359041.312899999320507, 260272.827899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95031507, "LATITUDE": 18.37212097, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.4059821715, "SHAPE_Area": 179.739330521 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356722.316899999976158, 260258.703200001269579 ], [ 356719.885399997234344, 260260.160999998450279 ], [ 356716.550399996340275, 260273.010400000959635 ], [ 356716.523500002920628, 260276.176600001752377 ], [ 356718.940600000321865, 260276.407400000840425 ], [ 356724.60639999806881, 260273.920699998736382 ], [ 356734.298299998044968, 260272.10020000115037 ], [ 356734.318099997937679, 260269.778299998492002 ], [ 356722.316899999976158, 260258.703200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92824587, "LATITUDE": 18.37193802, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.780256874, "SHAPE_Area": 471.30513830699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359057.649499997496605, 260248.263700000941753 ], [ 359051.123499996960163, 260257.076200000941753 ], [ 359046.213699996471405, 260265.479800000786781 ], [ 359051.636699996888638, 260291.488699998706579 ], [ 359057.401399999856949, 260277.392599999904633 ], [ 359070.392300002276897, 260266.944200001657009 ], [ 359057.649499997496605, 260248.263700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "A9-108-T69", "PARCEL_NAM": "4-4", "ACRE": ".06", "LONGITUDE": -64.950045, "LATITUDE": 18.37149084, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.73400567900001, "SHAPE_Area": 433.94346019599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356747.968900002539158, 260181.864000000059605 ], [ 356731.747400000691414, 260192.919199999421835 ], [ 356736.586999997496605, 260192.747699998319149 ], [ 356741.415899999439716, 260193.842700000852346 ], [ 356749.435900002717972, 260198.974599998444319 ], [ 356751.822499997913837, 260202.793800000101328 ], [ 356752.582000002264977, 260208.288499999791384 ], [ 356751.748700000345707, 260211.447999998927116 ], [ 356749.30460000038147, 260214.383400000631809 ], [ 356771.100199997425079, 260211.6064000017941 ], [ 356747.968900002539158, 260181.864000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92348763, "LATITUDE": 18.37032249, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1698.5180491599999, "SHAPE_Area": 7479.4314483899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359600.080600000917912, 260088.894600000232458 ], [ 359595.987899996340275, 260096.03830000013113 ], [ 359583.772699996829033, 260110.081599999219179 ], [ 359582.950199998915195, 260111.974700000137091 ], [ 359576.443999998271465, 260118.465399999171495 ], [ 359564.282799996435642, 260126.176300000399351 ], [ 359533.527800001204014, 260139.434599999338388 ], [ 359529.465700000524521, 260142.989900000393391 ], [ 359525.423299998044968, 260144.223400000482798 ], [ 359518.173699997365475, 260143.319699998944998 ], [ 359514.163699999451637, 260140.753800000995398 ], [ 359511.773599997162819, 260137.356699999421835 ], [ 359511.055399999022484, 260127.007199998944998 ], [ 359515.230800002813339, 260110.153900001198053 ], [ 359521.826899997889996, 260093.109299998730421 ], [ 359533.287900000810623, 260072.938099998980761 ], [ 359541.446400001645088, 260061.81700000166893 ], [ 359545.551700003445148, 260053.195700000971556 ], [ 359547.997599996626377, 260050.049300000071526 ], [ 359552.11540000140667, 260039.950599998235703 ], [ 359557.939499996602535, 260018.888900000602007 ], [ 359564.648900002241135, 259988.546300001442432 ], [ 359569.601800002157688, 259975.076900001615286 ], [ 359578.618699997663498, 259957.840999998152256 ], [ 359586.782600000500679, 259946.086599998176098 ], [ 359579.567100003361702, 259941.172400001436472 ], [ 359568.955600000917912, 259956.284200001507998 ], [ 359559.10360000282526, 259976.890799999237061 ], [ 359553.306599996984005, 259994.786299999803305 ], [ 359549.953599996864796, 260009.746500000357628 ], [ 359546.584499999880791, 260026.6064000017941 ], [ 359537.520900003612041, 260049.330299999564886 ], [ 359531.795800000429153, 260058.782699998468161 ], [ 359520.35639999806881, 260076.420899998396635 ], [ 359502.561800003051758, 260082.819200001657009 ], [ 359494.482400000095367, 260084.652899999171495 ], [ 359465.404799997806549, 260090.325500000268221 ], [ 359435.538900002837181, 260093.880800001323223 ], [ 359434.642700001597404, 260104.428100001066923 ], [ 359437.857199996709824, 260105.721000000834465 ], [ 359441.049999997019768, 260109.546799998730421 ], [ 359441.831200003623962, 260112.508499998599291 ], [ 359445.875299997627735, 260111.063900001347065 ], [ 359447.525700002908707, 260106.644499998539686 ], [ 359452.395999997854233, 260102.884700000286102 ], [ 359486.342000000178814, 260093.66330000013113 ], [ 359497.64299999922514, 260092.278099998831749 ], [ 359508.93129999935627, 260092.37049999833107 ], [ 359510.536799997091293, 260093.228000000119209 ], [ 359510.511600002646446, 260096.183100000023842 ], [ 359505.551399998366833, 260110.496899999678135 ], [ 359501.35980000346899, 260129.249899998307228 ], [ 359501.305900000035763, 260135.582299999892712 ], [ 359477.910199999809265, 260136.868400000035763 ], [ 359469.017399996519089, 260139.539900001138449 ], [ 359438.206699997186661, 260159.341600000858307 ], [ 359413.828500002622604, 260181.30689999833703 ], [ 359417.820500001311302, 260185.983600001782179 ], [ 359425.948399998247623, 260178.450800001621246 ], [ 359428.369099996984005, 260178.259500000625849 ], [ 359429.961999997496605, 260180.5945999994874 ], [ 359433.212399996817112, 260177.665899999439716 ], [ 359431.61599999666214, 260175.752900000661612 ], [ 359431.63400000333786, 260173.642200000584126 ], [ 359450.315800003707409, 260157.752000000327826 ], [ 359473.817500002682209, 260144.012099999934435 ], [ 359480.282399997115135, 260142.376299999654293 ], [ 359503.670900002121925, 260141.934399999678135 ], [ 359509.259300000965595, 260148.524099998176098 ], [ 359516.483800001442432, 260152.38289999961853 ], [ 359517.273900002241135, 260154.289200000464916 ], [ 359518.816399998962879, 260162.534499999135733 ], [ 359517.06530000269413, 260178.774300001561642 ], [ 359512.933100000023842, 260190.561799999326468 ], [ 359510.523100003600121, 260189.486600000411272 ], [ 359507.247500002384186, 260195.370400000363588 ], [ 359510.461999997496605, 260196.663199998438358 ], [ 359508.822400003671646, 260199.816199999302626 ], [ 359515.226099997758865, 260205.357099998742342 ], [ 359518.487300001084805, 260201.161899998784065 ], [ 359522.597999997437, 260191.907400000840425 ], [ 359526.760799996554852, 260176.531700000166893 ], [ 359527.709200002253056, 260159.863000001758337 ], [ 359526.954999998211861, 260153.735100001096725 ], [ 359534.237000003457069, 260150.839400000870228 ], [ 359543.156800001859665, 260145.001800000667572 ], [ 359572.29559999704361, 260132.152499999850988 ], [ 359578.778399996459484, 260128.405900001525879 ], [ 359584.464000001549721, 260123.597300000488758 ], [ 359600.755699999630451, 260104.309999998658895 ], [ 359604.830399997532368, 260099.277100000530481 ], [ 359613.010399997234344, 260085.622999999672174 ], [ 359615.48870000243187, 260078.677200000733137 ], [ 359618.758900001645088, 260073.426600001752377 ], [ 359620.420000001788139, 260067.740699999034405 ], [ 359625.324400000274181, 260059.970300000160933 ], [ 359638.482600003480911, 260029.891699999570847 ], [ 359640.113200001418591, 260027.794100001454353 ], [ 359643.354599997401237, 260025.920800000429153 ], [ 359648.199699997901917, 260025.11600000038743 ], [ 359652.21509999781847, 260027.048700001090765 ], [ 359656.189099997282028, 260033.836300000548363 ], [ 359659.385600000619888, 260037.239900000393391 ], [ 359663.332599997520447, 260047.193599998950958 ], [ 359665.659800000488758, 260057.978399999439716 ], [ 359664.751000002026558, 260070.003299999982119 ], [ 359659.731499999761581, 260091.282699998468161 ], [ 359654.717500001192093, 260111.928800001740456 ], [ 359652.264300003647804, 260115.91950000077486 ], [ 359644.831299997866154, 260136.545899998396635 ], [ 359642.374600000679493, 260140.958700001239777 ], [ 359616.286700002849102, 260174.309099998325109 ], [ 359623.496799997985363, 260179.856499999761581 ], [ 359650.399999998509884, 260145.457400001585484 ], [ 359651.231499999761581, 260142.508900001645088 ], [ 359654.496299996972084, 260137.891499999910593 ], [ 359655.331399999558926, 260134.520899999886751 ], [ 359661.112199999392033, 260118.525100000202656 ], [ 359664.391400001943111, 260112.219099998474121 ], [ 359672.754799999296665, 260077.03489999845624 ], [ 359673.62049999833107, 260070.075899999588728 ], [ 359674.552699998021126, 260055.307000000029802 ], [ 359673.784100003540516, 260050.867800001055002 ], [ 359670.646999999880791, 260040.498500000685453 ], [ 359667.482900001108646, 260033.295400001108646 ], [ 359661.107900001108646, 260024.377300001680851 ], [ 359659.515000000596046, 260022.042199999094009 ], [ 359653.105899997055531, 260017.13459999859333 ], [ 359645.046400003135204, 260016.646499998867512 ], [ 359637.773400001227856, 260018.486800000071526 ], [ 359633.718400001525879, 260021.197799999266863 ], [ 359630.455399997532368, 260025.604100000113249 ], [ 359616.480200000107288, 260056.942600000649691 ], [ 359613.215400002896786, 260061.559999998658895 ], [ 359607.445299997925758, 260076.289299998432398 ], [ 359605.816500000655651, 260078.175799999386072 ], [ 359603.348999999463558, 260083.855200000107288 ], [ 359600.080600000917912, 260088.894600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92698705, "LATITUDE": 18.37095085, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.33913616800001, "SHAPE_Area": 403.476686239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359210.576700001955032, 260186.820599999278784 ], [ 359176.388899996876717, 260129.756599999964237 ], [ 359171.506099998950958, 260134.993999999016523 ], [ 359205.717200003564358, 260189.313900001347065 ], [ 359210.576700001955032, 260186.820599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92692821, "LATITUDE": 18.37093347, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.09451914900001, "SHAPE_Area": 435.13759553 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359217.050499998033047, 260184.129299998283386 ], [ 359180.460100002586842, 260125.145799998193979 ], [ 359176.388899996876717, 260129.756599999964237 ], [ 359210.576700001955032, 260186.820599999278784 ], [ 359217.050499998033047, 260184.129299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92609433, "LATITUDE": 18.37094879, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.137584261300006, "SHAPE_Area": 293.52238042499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359296.319099999964237, 260155.436099998652935 ], [ 359290.768399998545647, 260144.413800001144409 ], [ 359281.823499999940395, 260153.206500001251698 ], [ 359276.911899998784065, 260161.821199998259544 ], [ 359275.256099998950958, 260166.873799998313189 ], [ 359274.35809999704361, 260177.63230000063777 ], [ 359296.319099999964237, 260155.436099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92587019, "LATITUDE": 18.37074419, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.470893644, "SHAPE_Area": 435.30532611400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359327.185599997639656, 260129.090900000184774 ], [ 359320.815999999642372, 260119.539599999785423 ], [ 359305.379199996590614, 260133.134300000965595 ], [ 359290.768399998545647, 260144.413800001144409 ], [ 359296.319099999964237, 260155.436099998652935 ], [ 359312.574799999594688, 260140.370400000363588 ], [ 359327.185599997639656, 260129.090900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203013600", "MAP": "D9-5230-T92", "PARCEL_NAM": "17 REM", "ACRE": "8.31", "LONGITUDE": -64.94775783, "LATITUDE": 18.36907769, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 876.18135811499997, "SHAPE_Area": 32048.6412862 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357047.940200001001358, 260007.294900000095367 ], [ 357024.119000002741814, 259982.728500001132488 ], [ 357035.078299999237061, 259956.906599998474121 ], [ 357058.104299999773502, 259934.388000000268221 ], [ 357082.450099997222424, 259914.818500000983477 ], [ 357123.476400002837181, 259928.458700001239777 ], [ 357126.786200001835823, 259918.564399998635054 ], [ 357134.950000002980232, 259906.809999998658895 ], [ 357141.457999996840954, 259900.108199998736382 ], [ 357150.376000002026558, 259894.481699999421835 ], [ 356980.952600002288818, 259809.924199998378754 ], [ 356966.356200002133846, 259819.515000000596046 ], [ 356961.4662000015378, 259825.596700001507998 ], [ 356961.419399999082088, 259831.084800001233816 ], [ 356973.409800000488758, 259843.426300000399351 ], [ 356973.370300002396107, 259848.070099998265505 ], [ 356972.551399998366833, 259849.541000001132488 ], [ 356961.207299999892712, 259855.99210000038147 ], [ 356929.69990000128746, 259862.911400001496077 ], [ 356915.179099999368191, 259863.636900000274181 ], [ 356915.553900003433228, 259914.302400000393391 ], [ 356919.833200000226498, 260074.557500001043081 ], [ 356953.003499999642372, 260061.741099998354912 ], [ 356956.239600002765656, 260060.5011 ], [ 356986.166599996387959, 260049.769099999219179 ], [ 357001.526100002229214, 260045.250799998641014 ], [ 357010.429700002074242, 260041.312899999320507 ], [ 357025.018899999558926, 260032.566399998962879 ], [ 357040.459299996495247, 260018.549499999731779 ], [ 357044.534000001847744, 260013.516600001603365 ], [ 357045.365500003099442, 260010.56810000166297 ], [ 357047.940200001001358, 260007.294900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94697878, "LATITUDE": 18.36791295, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1654.9714498599999, "SHAPE_Area": 5048.0081255599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356905.699699997901917, 259651.199200000613928 ], [ 356905.647600002586842, 259657.320500001311302 ], [ 356933.098200000822544, 259653.323300000280142 ], [ 356957.301899999380112, 259651.832600001245737 ], [ 356972.616499997675419, 259652.591299999505281 ], [ 356999.235600002110004, 259651.542599998414516 ], [ 357022.616800002753735, 259651.945000000298023 ], [ 357077.411899998784065, 259656.40430000051856 ], [ 357104.817500002682209, 259657.684000000357628 ], [ 357107.22749999910593, 259658.759199999272823 ], [ 357111.214100003242493, 259664.069200001657009 ], [ 357116.642499998211861, 259689.444899998605251 ], [ 357121.424599997699261, 259696.027899999171495 ], [ 357127.837399996817112, 259700.513300001621246 ], [ 357143.114200003445148, 259705.704599998891354 ], [ 357159.965800002217293, 259715.34180000051856 ], [ 357171.1858000010252, 259723.455099999904633 ], [ 357179.184199996292591, 259731.120000001043081 ], [ 357190.348499998450279, 259745.776799999177456 ], [ 357195.123499996960163, 259753.204199999570847 ], [ 357203.05349999666214, 259768.890000000596046 ], [ 357209.430299997329712, 259777.596999999135733 ], [ 357207.727799996733665, 259788.137800000607967 ], [ 357202.713699996471405, 259808.783900000154972 ], [ 357200.964400000870228, 259824.812699999660254 ], [ 357199.283399999141693, 259832.820500001311302 ], [ 357185.390900000929832, 259854.449400000274181 ], [ 357173.99099999666214, 259867.443900000303984 ], [ 357167.49379999935627, 259872.879200000315905 ], [ 357151.997599996626377, 259893.439500000327826 ], [ 357150.376000002026558, 259894.481699999421835 ], [ 357141.457999996840954, 259900.108199998736382 ], [ 357134.950000002980232, 259906.809999998658895 ], [ 357126.786200001835823, 259918.564399998635054 ], [ 357123.476400002837181, 259928.458700001239777 ], [ 357098.255900003015995, 259954.638999998569489 ], [ 357071.505599997937679, 259971.096400000154972 ], [ 357069.066799998283386, 259973.398499999195337 ], [ 357059.223899997770786, 259992.949599999934435 ], [ 357045.365500003099442, 260010.56810000166297 ], [ 357044.534000001847744, 260013.516600001603365 ], [ 357040.459299996495247, 260018.549499999731779 ], [ 357025.018899999558926, 260032.566399998962879 ], [ 357010.429700002074242, 260041.312899999320507 ], [ 357001.526100002229214, 260045.250799998641014 ], [ 356986.166599996387959, 260049.769099999219179 ], [ 356956.239600002765656, 260060.5011 ], [ 356958.609999999403954, 260066.219999998807907 ], [ 356988.537000000476837, 260055.488099999725819 ], [ 357003.082999996840954, 260051.807399999350309 ], [ 357007.123599998652935, 260050.785000000149012 ], [ 357020.893799997866154, 260043.509500000625849 ], [ 357033.875699996948242, 260034.116500001400709 ], [ 357047.710699997842312, 260019.24210000038147 ], [ 357052.622299998998642, 260010.627500001341105 ], [ 357055.066399998962879, 260007.692200001329184 ], [ 357066.480700001120567, 259993.00899999961257 ], [ 357068.136500000953674, 259987.956300001591444 ], [ 357073.872400000691414, 259977.237500000745058 ], [ 357081.980400003492832, 259972.026500001549721 ], [ 357102.247900001704693, 259959.315699998289347 ], [ 357123.399099998176098, 259937.535100001841784 ], [ 357127.466600000858307, 259933.346500001847744 ], [ 357131.589900001883507, 259922.614500001072884 ], [ 357138.130300000309944, 259912.113299999386072 ], [ 357144.638300001621246, 259905.41160000115633 ], [ 357155.987800002098083, 259898.327300000935793 ], [ 357170.67230000346899, 259878.3935999982059 ], [ 357179.620800003409386, 259869.178700000047684 ], [ 357191.830600000917912, 259855.768699999898672 ], [ 357204.085299998521805, 259837.081599999219179 ], [ 357207.373499996960163, 259829.720300000160933 ], [ 357207.405900001525879, 259825.920899998396635 ], [ 357209.183899998664856, 259806.514800000935793 ], [ 357214.189099997282028, 259786.924100000411272 ], [ 357215.02589999884367, 259783.342300001531839 ], [ 357215.097900003194809, 259774.89919999986887 ], [ 357207.921999998390675, 259765.3412000015378 ], [ 357200.785599999129772, 259751.139600001275539 ], [ 357183.251800000667572, 259726.931400001049042 ], [ 357172.852399997413158, 259717.135999999940395 ], [ 357162.436899997293949, 259709.240299999713898 ], [ 357147.187100000679493, 259700.882800001651049 ], [ 357134.325599998235703, 259696.133499998599291 ], [ 357127.090400002896786, 259693.54109999909997 ], [ 357123.895700000226498, 259689.926399998366833 ], [ 357116.087899997830391, 259659.887200001627207 ], [ 357113.696000002324581, 259656.701200000941753 ], [ 357108.892300002276897, 259652.651099998503923 ], [ 357104.871500000357628, 259651.351700000464916 ], [ 357070.208999998867512, 259650.012499999254942 ], [ 357021.862700000405312, 259645.817099999636412 ], [ 356993.645300000905991, 259645.164000000804663 ], [ 356973.474899999797344, 259646.476599998772144 ], [ 356961.385600000619888, 259645.744300000369549 ], [ 356946.0962999984622, 259642.030600000172853 ], [ 356930.839299999177456, 259634.517499998211861 ], [ 356904.315499998629093, 259624.379000000655651 ], [ 356905.062399998307228, 259631.351199999451637 ], [ 356927.569099999964237, 259639.76799999922514 ], [ 356942.829700000584126, 259646.859000001102686 ], [ 356922.659299999475479, 259648.171599999070168 ], [ 356905.699699997901917, 259651.199200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96106311, "LATITUDE": 18.36900823, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 478.226753137, "SHAPE_Area": 13121.559826000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355538.760300002992153, 259855.141800001263618 ], [ 355539.307099997997284, 259974.738800000399351 ], [ 355555.497900001704693, 259975.153900001198053 ], [ 355569.991700001060963, 259977.5945999994874 ], [ 355581.254900000989437, 259980.642099998891354 ], [ 355599.739000000059605, 259987.970499999821186 ], [ 355610.174300000071526, 259993.544399999082088 ], [ 355621.396099999547005, 260001.446699999272823 ], [ 355653.337899997830391, 259848.876400001347065 ], [ 355538.760300002992153, 259855.141800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101104012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95210933, "LATITUDE": 18.36894943, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.26372646800002, "SHAPE_Area": 4871.4167532800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356459.859700001776218, 259925.560400001704693 ], [ 356474.402000002563, 259922.302000001072884 ], [ 356485.703000001609325, 259920.916799999773502 ], [ 356501.82209999859333, 259921.893100000917912 ], [ 356515.498800002038479, 259925.593600001186132 ], [ 356525.939499996602535, 259930.534200001507998 ], [ 356534.758599996566772, 259936.517000000923872 ], [ 356540.361400000751019, 259941.418000001460314 ], [ 356544.349799998104572, 259946.5168999992311 ], [ 356550.760799996554852, 259951.213500000536442 ], [ 356570.765699997544289, 259969.320099998265505 ], [ 356572.360399998724461, 259971.444099999964237 ], [ 356583.03490000218153, 259948.944499999284744 ], [ 356582.327399998903275, 259937.328499998897314 ], [ 356583.155299998819828, 259934.802200000733137 ], [ 356539.396200001239777, 259865.416499998420477 ], [ 356459.859700001776218, 259925.560400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96475293, "LATITUDE": 18.36837766, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 501.02264010499999, "SHAPE_Area": 2188.6770691800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355248.728000000119209, 259926.602299999445677 ], [ 355258.368400000035763, 259926.920800000429153 ], [ 355271.667999997735023, 259879.105399999767542 ], [ 355108.928800001740456, 259767.160399999469519 ], [ 355104.828900001943111, 259775.148400001227856 ], [ 355204.234399996697903, 259843.723000001162291 ], [ 355261.151699997484684, 259883.030099999159575 ], [ 355248.728000000119209, 259926.602299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92333241, "LATITUDE": 18.36892358, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 21.133098165500002, "SHAPE_Area": 24.765585725099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359573.948100000619888, 259938.171100001782179 ], [ 359579.567100003361702, 259941.172400001436472 ], [ 359582.031000003218651, 259935.915199998766184 ], [ 359578.811099998652935, 259935.255499999970198 ], [ 359573.948100000619888, 259938.171100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104024100", "MAP": "D9-9171-T017", "PARCEL_NAM": "10-2-1", "ACRE": "0.24", "LONGITUDE": -64.95073131, "LATITUDE": 18.36866131, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.8681694, "SHAPE_Area": 985.47459034099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356657.803000003099442, 259882.826999999582767 ], [ 356662.829000003635883, 259902.826299998909235 ], [ 356681.039200000464916, 259898.0287000015378 ], [ 356704.476199999451637, 259891.887699998915195 ], [ 356702.231700003147125, 259871.393199998885393 ], [ 356677.771600000560284, 259866.456399999558926 ], [ 356675.025499999523163, 259886.312600001692772 ], [ 356657.803000003099442, 259882.826999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96587084, "LATITUDE": 18.36827138, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.125881096, "SHAPE_Area": 572.663339554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355095.909100003540516, 259780.986000001430511 ], [ 355082.795900002121925, 259805.78770000115037 ], [ 355080.078500002622604, 259840.807000000029802 ], [ 355068.507799997925758, 259873.853999998420477 ], [ 355074.943899996578693, 259875.595400001853704 ], [ 355085.711900003254414, 259842.119699999690056 ], [ 355088.425700001418591, 259807.522599998861551 ], [ 355100.725400000810623, 259783.558600001037121 ], [ 355095.909100003540516, 259780.986000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92113732, "LATITUDE": 18.36862712, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.782684731100002, "SHAPE_Area": 23.488297451699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359815.335799999535084, 259904.894099999219179 ], [ 359805.652900002896786, 259905.659200001507998 ], [ 359809.659299999475479, 259908.647300001233816 ], [ 359811.248499996960163, 259911.404500000178814 ], [ 359812.079999998211861, 259908.456000000238419 ], [ 359815.335799999535084, 259904.894099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95062384000001, "LATITUDE": 18.36801853, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.85455521899999, "SHAPE_Area": 475.64269674100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356694.229000002145767, 259769.580600000917912 ], [ 356688.575800001621246, 259770.589800000190735 ], [ 356691.522399999201298, 259803.333500001579523 ], [ 356694.474299997091293, 259835.443799998611212 ], [ 356696.677400000393391, 259860.793099999427795 ], [ 356701.506300002336502, 259861.888099998235703 ], [ 356694.229000002145767, 259769.580600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91915815, "LATITUDE": 18.36822551, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.657409841, "SHAPE_Area": 331.224542353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360030.404700003564358, 259837.415600001811981 ], [ 360017.277199998497963, 259863.905999999493361 ], [ 360015.635799996554852, 259867.269999999552965 ], [ 360010.772699996829033, 259870.185499999672174 ], [ 360005.875500001013279, 259877.1114999987185 ], [ 360010.688199996948242, 259880.106199998408556 ], [ 360017.914499998092651, 259883.754000000655651 ], [ 360021.209799997508526, 259875.548300001770258 ], [ 360020.452100001275539, 259869.842599999159575 ], [ 360032.739200003445148, 259847.356100000441074 ], [ 360030.404700003564358, 259837.415600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91728497, "LATITUDE": 18.36660408, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2378.2525555900002, "SHAPE_Area": 9052.21496897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360159.92400000244379, 259589.385299999266863 ], [ 360162.085799999535084, 259619.589400000870228 ], [ 360161.256099998950958, 259622.326799999922514 ], [ 360154.748000003397465, 259629.028499998152256 ], [ 360140.913099996745586, 259643.902899999171495 ], [ 360132.745600000023842, 259656.079500000923872 ], [ 360126.163900002837181, 259671.435499999672174 ], [ 360124.479299999773502, 259679.86540000140667 ], [ 360125.84740000218153, 259708.585299998521805 ], [ 360131.315399996936321, 259729.317299999296665 ], [ 360135.285800002515316, 259736.526900000870228 ], [ 360142.548000000417233, 259735.953099999576807 ], [ 360142.58219999819994, 259731.942600000649691 ], [ 360141.811800003051758, 259727.714400000870228 ], [ 360139.391099996864796, 259727.905699998140335 ], [ 360137.79280000180006, 259726.203899998217821 ], [ 360132.33389999717474, 259704.416600000113249 ], [ 360130.935199998319149, 259679.285000000149012 ], [ 360132.6216000020504, 259670.643899999558926 ], [ 360135.897200003266335, 259664.760099999606609 ], [ 360137.554700002074242, 259659.496399998664856 ], [ 360146.539300002157688, 259646.059900000691414 ], [ 360154.67790000140667, 259637.260600000619888 ], [ 360164.420199997723103, 259629.529899999499321 ], [ 360168.444600000977516, 259630.407200001180172 ], [ 360169.22749999910593, 259633.157800000160933 ], [ 360170.827500000596046, 259634.648499999195337 ], [ 360172.409599997103214, 259638.250100001692772 ], [ 360187.573100000619888, 259656.73930000141263 ], [ 360198.775200001895428, 259666.963500000536442 ], [ 360211.611400000751019, 259674.667899999767542 ], [ 360218.040299996733665, 259677.253699999302626 ], [ 360230.111599996685982, 259680.096700001507998 ], [ 360259.907399997115135, 259684.773499999195337 ], [ 360285.677100002765656, 259688.784099999815226 ], [ 360287.278899997472763, 259690.063799999654293 ], [ 360287.1925999969244, 259700.195599999278784 ], [ 360285.538599997758865, 259705.037200000137091 ], [ 360271.604699999094009, 259731.520899999886751 ], [ 360265.075099997222424, 259740.75560000166297 ], [ 360253.684199996292591, 259752.694699998944998 ], [ 360245.550999999046326, 259760.860800001770258 ], [ 360212.265600003302097, 259787.186099998652935 ], [ 360206.587300002574921, 259791.150499999523163 ], [ 360191.19539999961853, 259799.468199998140335 ], [ 360169.354800000786781, 259807.522100001573563 ], [ 360153.196199998259544, 259811.189500000327826 ], [ 360137.04839999973774, 259813.590500000864267 ], [ 360132.997000001370907, 259815.879399999976158 ], [ 360128.097999997437, 259823.016499999910593 ], [ 360127.259300000965595, 259826.809300001710653 ], [ 360129.611699998378754, 259834.638999998569489 ], [ 360134.436999998986721, 259836.156100001186132 ], [ 360168.25900000333786, 259841.499200001358986 ], [ 360191.613300003111362, 259845.067800000309944 ], [ 360210.160300001502037, 259845.008600000292063 ], [ 360231.142399996519089, 259843.069299999624491 ], [ 360246.487499997019768, 259840.239599999040365 ], [ 360274.7533999979496, 259835.193599998950958 ], [ 360290.098499998450279, 259832.363899998366833 ], [ 360301.428199999034405, 259827.601500000804663 ], [ 360308.711999997496605, 259824.494699999690056 ], [ 360324.924599997699261, 259814.494899999350309 ], [ 360337.083999998867512, 259806.995099999010563 ], [ 360344.391199998557568, 259801.144200000911951 ], [ 360344.475699998438358, 259791.223499998450279 ], [ 360332.296499997377396, 259801.045299999415874 ], [ 360312.036200001835823, 259812.911800000816584 ], [ 360298.260499998927116, 259820.820599999278784 ], [ 360286.936200000345707, 259824.949799999594688 ], [ 360249.782899998128414, 259832.034000001847744 ], [ 360230.398999996483326, 259835.675000000745058 ], [ 360208.614200003445148, 259837.185400001704693 ], [ 360187.650100000202656, 259837.013900000602007 ], [ 360165.899400003254414, 259834.513799998909235 ], [ 360137.732400000095367, 259827.950500000268221 ], [ 360136.949500001966953, 259825.199799999594688 ], [ 360140.196299999952316, 259822.693300001323223 ], [ 360170.085600003600121, 259816.394000001251698 ], [ 360183.027999997138977, 259811.644799999892712 ], [ 360208.943300001323223, 259798.55799999833107 ], [ 360225.98369999974966, 259786.031899999827147 ], [ 360254.402400001883507, 259763.044199999421835 ], [ 360262.5320999994874, 259755.300200000405312 ], [ 360266.608599998056889, 259750.05629999935627 ], [ 360277.205799996852875, 259736.633000001311302 ], [ 360289.496500000357628, 259713.724399998784065 ], [ 360293.598099999129772, 259705.525299999862909 ], [ 360295.342000000178814, 259690.129799999296665 ], [ 360309.087099999189377, 259685.809300001710653 ], [ 360325.279899999499321, 259678.131400000303984 ], [ 360340.704099997878075, 259666.014199998229742 ], [ 360340.797600001096725, 259655.038100000470877 ], [ 360331.041000001132488, 259664.457400001585484 ], [ 360323.737400002777576, 259669.886100001633167 ], [ 360305.92119999974966, 259678.817299999296665 ], [ 360293.806699998676777, 259681.040199998766184 ], [ 360284.130999997258186, 259680.960999999195337 ], [ 360271.246200002729893, 259678.955699998885393 ], [ 360232.597099997103214, 259672.306600000709295 ], [ 360222.934000000357628, 259670.749800000339746 ], [ 360239.110600002110004, 259664.971599999815226 ], [ 360248.016000002622604, 259660.822599999606609 ], [ 360256.129399999976158, 259654.978399999439716 ], [ 360267.523900002241135, 259642.61710000038147 ], [ 360269.16889999806881, 259638.830899998545647 ], [ 360270.794100001454353, 259637.366599999368191 ], [ 360280.710799999535084, 259609.161200001835823 ], [ 360288.179799996316433, 259584.313299998641014 ], [ 360289.097599998116493, 259571.232999999076128 ], [ 360286.747000001370907, 259563.192200001329184 ], [ 360283.568499997258186, 259557.677799999713898 ], [ 360279.581900000572205, 259552.367800001055002 ], [ 360275.580899998545647, 259548.746399998664856 ], [ 360274.880699999630451, 259536.286200001835823 ], [ 360278.993199996650219, 259526.820599999278784 ], [ 360285.497599996626377, 259520.54109999909997 ], [ 360282.304700002074242, 259516.715300001204014 ], [ 360268.4679000005126, 259531.800700001418591 ], [ 360262.802199997007847, 259534.287500001490116 ], [ 360258.772399999201298, 259534.043400000780821 ], [ 360246.762199997901917, 259524.023699998855591 ], [ 360246.798199996352196, 259519.802200000733137 ], [ 360242.007100000977516, 259514.274500001221895 ], [ 360240.381899997591972, 259515.738899998366833 ], [ 360237.961099997162819, 259515.930100001394749 ], [ 360235.558399997651577, 259514.010600000619888 ], [ 360230.670199997723103, 259519.88120000064373 ], [ 360274.695500001311302, 259558.027300000190735 ], [ 360279.470399998128414, 259565.454700000584126 ], [ 360281.810199998319149, 259574.761900000274181 ], [ 360280.105899997055531, 259585.513799998909235 ], [ 360272.662100002169609, 259607.406599998474121 ], [ 360266.857799999415874, 259626.14640000090003 ], [ 360261.924699999392033, 259637.293999999761581 ], [ 360258.661700002849102, 259641.700199998915195 ], [ 360250.528399996459484, 259649.866300001740456 ], [ 360239.992399998009205, 259656.112900000065565 ], [ 360228.664499998092651, 259660.664200000464916 ], [ 360213.290600001811981, 259666.871199999004602 ], [ 360203.66160000115633, 259661.304000001400709 ], [ 360194.85869999974966, 259653.421500001102686 ], [ 360179.693400003015995, 259635.143300000578165 ], [ 360175.717600002884865, 259628.566899999976158 ], [ 360170.193899996578693, 259614.378400001674891 ], [ 360167.099899999797344, 259598.943199999630451 ], [ 360168.147100001573563, 259570.665300000458956 ], [ 360168.183100000023842, 259566.44370000064373 ], [ 360166.642399996519089, 259557.987300001084805 ], [ 360161.910599999129772, 259545.494100000709295 ], [ 360154.743699997663498, 259534.880699999630451 ], [ 360142.746100001037121, 259523.383499998599291 ], [ 360135.550499998033047, 259516.147399999201298 ], [ 360130.804300002753735, 259505.342799998819828 ], [ 360129.251000002026558, 259498.364000000059605 ], [ 360127.00110000371933, 259478.50279999896884 ], [ 360125.526900000870228, 259462.2364999987185 ], [ 360118.133500002324581, 259478.219099998474121 ], [ 360121.938500002026558, 259504.848099999129772 ], [ 360124.296300001442432, 259512.04450000077486 ], [ 360128.270300000905991, 259518.832100000232458 ], [ 360133.855099998414516, 259525.843899998813868 ], [ 360149.05460000038147, 259540.1114999987185 ], [ 360151.441100001335144, 259543.930700000375509 ], [ 360156.216099999845028, 259551.3581000007689 ], [ 360160.141599997878075, 259563.844700001180172 ], [ 360160.881300002336502, 259571.661299999803305 ], [ 360160.051600001752377, 259574.398699998855591 ], [ 360159.92400000244379, 259589.385299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95756086, "LATITUDE": 18.36800276, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.7201478906, "SHAPE_Area": 46.381423525000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355958.474600002169609, 259810.210499998182058 ], [ 355967.356700003147125, 259808.805599998682737 ], [ 355965.756599999964237, 259807.314800001680851 ], [ 355964.187100000679493, 259802.235700000077486 ], [ 355958.528599999845028, 259803.878199998289347 ], [ 355958.474600002169609, 259810.210499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95734575, "LATITUDE": 18.36797271, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.007572168199999, "SHAPE_Area": 115.65634266000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355994.002700001001358, 259804.590700000524521 ], [ 355993.266500003635883, 259796.352000001817942 ], [ 355967.356700003147125, 259808.805599998682737 ], [ 355988.347800001502037, 259805.811000000685453 ], [ 355994.002700001001358, 259804.590700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94261723, "LATITUDE": 18.3670805, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 850.35252451600002, "SHAPE_Area": 3347.4699585799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357571.759499996900558, 259745.943199999630451 ], [ 357548.583200000226498, 259721.477699998766184 ], [ 357547.827299997210503, 259715.560899998992682 ], [ 357555.19200000166893, 259702.955600000917912 ], [ 357570.70610000193119, 259680.284400001168251 ], [ 357578.031300000846386, 259672.322799999266863 ], [ 357578.853799998760223, 259670.429699998348951 ], [ 357581.288900002837181, 259668.549800001084805 ], [ 357582.111400000751019, 259666.656700000166893 ], [ 357584.546499997377396, 259664.776799999177456 ], [ 357585.369000002741814, 259662.883699998259544 ], [ 357594.317500002682209, 259653.668800000101328 ], [ 357595.953500002622604, 259650.938000001013279 ], [ 357614.669600002467632, 259631.037300001829863 ], [ 357611.512599997222424, 259622.989900000393391 ], [ 357601.729000002145767, 259635.575399998575449 ], [ 357591.1587999984622, 259645.832499999552965 ], [ 357582.222900003194809, 259653.56980000063777 ], [ 357570.868000000715256, 259661.287300001829863 ], [ 357548.186899997293949, 259673.345100000500679 ], [ 357516.63459999859333, 259685.541400000452995 ], [ 357497.216600000858307, 259693.192999999970198 ], [ 357481.831900000572205, 259700.666400000452995 ], [ 357472.894199997186661, 259708.614799998700619 ], [ 357465.513300001621246, 259723.119899999350309 ], [ 357466.998199999332428, 259738.119699999690056 ], [ 357471.703000001609325, 259753.779100000858307 ], [ 357477.271700002253056, 259762.690600000321865 ], [ 357477.179999999701977, 259773.455600000917912 ], [ 357480.369300000369549, 259777.703600000590086 ], [ 357484.406199999153614, 259777.103300001472235 ], [ 357487.615299999713898, 259779.029399998486042 ], [ 357494.11429999768734, 259773.383099999278784 ], [ 357483.733000002801418, 259761.47690000012517 ], [ 357478.974200002849102, 259752.14979999884963 ], [ 357477.374200001358986, 259750.659099999815226 ], [ 357476.598399996757507, 259747.0641999989748 ], [ 357474.213699996471405, 259743.033900000154972 ], [ 357472.752099998295307, 259725.28999999910593 ], [ 357475.250200003385544, 259716.022399999201298 ], [ 357480.950099997222424, 259709.525100000202656 ], [ 357486.630199998617172, 259705.349700000137091 ], [ 357545.706799998879433, 259680.502000000327826 ], [ 357552.1537000015378, 259680.977000001817942 ], [ 357554.549300000071526, 259683.740800000727177 ], [ 357554.49889999628067, 259689.651000000536442 ], [ 357549.598099999129772, 259696.999200001358986 ], [ 357539.737199999392033, 259718.661100000143051 ], [ 357539.63289999961853, 259730.9037000015378 ], [ 357540.385200001299381, 259737.242600001394749 ], [ 357542.739399999380112, 259744.861299999058247 ], [ 357557.001299999654293, 259774.531100001186132 ], [ 357565.638800002634525, 259801.832899998873472 ], [ 357565.590199999511242, 259807.532000001519918 ], [ 357563.142499998211861, 259810.889499999582767 ], [ 357566.335400000214577, 259814.715300001204014 ], [ 357570.388599999248981, 259812.215300001204014 ], [ 357574.416500002145767, 259812.670499999076128 ], [ 357576.821099996566772, 259814.378899998962879 ], [ 357584.106700003147125, 259811.061000000685453 ], [ 357576.909199997782707, 259804.035999998450279 ], [ 357570.550399996340275, 259793.218199998140335 ], [ 357567.42400000244379, 259781.582499999552965 ], [ 357565.073399998247623, 259773.541700001806021 ], [ 357557.951499998569489, 259757.651399999856949 ], [ 357548.410599999129772, 259741.741300001740456 ], [ 357548.444799996912479, 259737.730799999088049 ], [ 357550.071800000965595, 259736.055399999022484 ], [ 357553.304200001060963, 259735.237399999052286 ], [ 357556.51690000295639, 259736.741399999707937 ], [ 357566.853299997746944, 259753.924600001424551 ], [ 357571.759499996900558, 259745.943199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92055548, "LATITUDE": 18.36783801, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.418937205699997, "SHAPE_Area": 103.145550843 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359881.402400001883507, 259816.775499999523163 ], [ 359877.408600002527237, 259812.309900000691414 ], [ 359864.410499997437, 259823.60249999910593 ], [ 359868.40429999679327, 259828.068199999630451 ], [ 359881.402400001883507, 259816.775499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96385105, "LATITUDE": 18.36784867, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 20.607947078, "SHAPE_Area": 19.488638380699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355297.436899997293949, 259788.546000000089407 ], [ 355299.927699998021126, 259780.122699998319149 ], [ 355296.691699996590614, 259781.362799998372793 ], [ 355295.872800000011921, 259782.833700001239777 ], [ 355295.831399999558926, 259787.688499998301268 ], [ 355297.436899997293949, 259788.546000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96065156, "LATITUDE": 18.36668726, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 653.43922791499995, "SHAPE_Area": 2876.6720028999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355719.760799996554852, 259529.613299999386072 ], [ 355716.487000003457069, 259535.285999998450279 ], [ 355708.2871999964118, 259551.261999998241663 ], [ 355700.949500001966953, 259560.701200000941753 ], [ 355699.320699997246265, 259562.587699998170137 ], [ 355688.730700001120567, 259575.166600000113249 ], [ 355680.604699999094009, 259582.488400001078844 ], [ 355653.690700002014637, 259618.153999999165535 ], [ 355643.894400000572205, 259632.217099998146296 ], [ 355642.247599996626377, 259636.214400000870228 ], [ 355636.527900002896786, 259645.033500000834465 ], [ 355634.060400001704693, 259650.712799999862909 ], [ 355630.727300003170967, 259663.351199999451637 ], [ 355626.612999998033047, 259673.027800001204014 ], [ 355624.147299997508526, 259678.496100001037121 ], [ 355622.525700002908707, 259679.538199998438358 ], [ 355618.440200001001358, 259685.837600000202656 ], [ 355609.502400003373623, 259693.785999998450279 ], [ 355595.710600003600121, 259703.594500001519918 ], [ 355590.829599998891354, 259708.620799999684095 ], [ 355583.482900001108646, 259719.11540000140667 ], [ 355549.818099997937679, 259789.978399999439716 ], [ 355560.305500000715256, 259789.430900000035763 ], [ 355593.963100001215935, 259719.412300001829863 ], [ 355602.91889999806881, 259709.353100001811981 ], [ 355619.955700002610683, 259697.249099999666214 ], [ 355629.725000001490116, 259686.352200001478195 ], [ 355637.924800001084805, 259670.376200001686811 ], [ 355642.910099998116493, 259653.107299998402596 ], [ 355647.834299996495247, 259643.015099998563528 ], [ 355659.275499999523163, 259625.165800001472235 ], [ 355662.531300000846386, 259621.603900000452995 ], [ 355663.357400000095367, 259619.288600001484156 ], [ 355664.979000002145767, 259618.246399998664856 ], [ 355665.805100001394749, 259615.931099999696016 ], [ 355686.999399997293949, 259589.084600001573563 ], [ 355700.008299998939037, 259576.525499999523163 ], [ 355713.863099999725819, 259559.329199999570847 ], [ 355722.041299998760223, 259545.886100001633167 ], [ 355730.260899998247623, 259527.588300000876188 ], [ 355719.760799996554852, 259529.613299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92033277, "LATITUDE": 18.36766381, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.15659298, "SHAPE_Area": 294.11710250099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359915.520999997854233, 259787.290600001811981 ], [ 359911.523599997162819, 259783.247099999338388 ], [ 359896.889499999582767, 259797.270599998533726 ], [ 359877.408600002527237, 259812.309900000691414 ], [ 359881.402400001883507, 259816.775499999523163 ], [ 359897.616700001060963, 259806.564599998295307 ], [ 359899.240099996328354, 259805.3114 ], [ 359902.508599996566772, 259800.271899998188019 ], [ 359911.453500002622604, 259791.479100000113249 ], [ 359915.520999997854233, 259787.290600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91538745, "LATITUDE": 18.36686329, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 689.85994141000003, "SHAPE_Area": 2461.19247339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360442.065700002014637, 259694.285900000482798 ], [ 360449.419600002467632, 259682.94709999859333 ], [ 360451.059199996292591, 259679.794100001454353 ], [ 360463.366099998354912, 259654.985800001770258 ], [ 360490.45269999653101, 259599.056600000709295 ], [ 360485.67960000038147, 259591.418200001120567 ], [ 360475.006899997591972, 259613.706700000911951 ], [ 360473.392499998211861, 259613.904599998146296 ], [ 360470.984399996697903, 259612.618299998342991 ], [ 360468.52589999884367, 259617.242300000041723 ], [ 360471.72410000115633, 259620.434799998998642 ], [ 360467.622500002384186, 259628.633900001645088 ], [ 360451.212099999189377, 259661.852400001138449 ], [ 360444.642899997532368, 259675.730799999088049 ], [ 360431.560300000011921, 259696.944200001657009 ], [ 360427.478399999439716, 259702.821400001645088 ], [ 360421.769500002264977, 259710.374000001698732 ], [ 360420.943400003015995, 259712.689300000667572 ], [ 360419.321800000965595, 259713.731499999761581 ], [ 360417.680399999022484, 259717.095600001513958 ], [ 360411.165100000798702, 259724.641600001603365 ], [ 360400.602099999785423, 259734.054400000721216 ], [ 360374.602300003170967, 259757.061900001019239 ], [ 360344.475699998438358, 259791.223499998450279 ], [ 360344.391199998557568, 259801.144200000911951 ], [ 360355.767599999904633, 259790.893800001591444 ], [ 360372.064699999988079, 259770.973299998790026 ], [ 360384.263700000941753, 259758.829700000584126 ], [ 360403.764499999582767, 259741.468499999493361 ], [ 360406.168999999761581, 259743.176899999380112 ], [ 360402.749600000679493, 259765.94709999859333 ], [ 360398.565099999308586, 259783.855799999088049 ], [ 360394.325000002980232, 259808.307900000363588 ], [ 360393.500699996948242, 259810.412099998444319 ], [ 360391.882700003683567, 259811.0320999994874 ], [ 360391.034999996423721, 259815.880399998277426 ], [ 360393.457500003278255, 259815.478000000119209 ], [ 360393.4324000030756, 259818.433100000023842 ], [ 360396.653999999165535, 259818.881700001657009 ], [ 360399.069399997591972, 259819.323600001633167 ], [ 360399.917000003159046, 259814.475400000810623 ], [ 360404.198499999940395, 259785.168400000780821 ], [ 360406.7128000035882, 259774.0011 ], [ 360410.909800000488758, 259754.614799998700619 ], [ 360413.519299998879433, 259732.260200001299381 ], [ 360415.144500002264977, 259730.795899998396635 ], [ 360427.359700001776218, 259716.752599999308586 ], [ 360442.065700002014637, 259694.285900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94396858, "LATITUDE": 18.36694087, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 421.85951346000002, "SHAPE_Area": 1280.30526932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357414.713100001215935, 259628.345300000160933 ], [ 357418.798600003123283, 259622.045899998396635 ], [ 357428.565999999642372, 259611.360100001096725 ], [ 357427.009099997580051, 259604.803399998694658 ], [ 357413.17960000038147, 259619.044599998742342 ], [ 357412.353500001132488, 259621.359900001436472 ], [ 357410.731799997389317, 259622.402100000530481 ], [ 357409.903999999165535, 259624.928399998694658 ], [ 357405.825599998235703, 259630.383499998599291 ], [ 357403.361699998378754, 259635.640599999576807 ], [ 357400.059199996292591, 259644.690600000321865 ], [ 357394.195600003004074, 259670.396000001579523 ], [ 357391.605800002813339, 259690.428700000047684 ], [ 357380.001000002026558, 259727.486200001090765 ], [ 357380.729999996721745, 259736.569200001657009 ], [ 357384.675200000405312, 259746.734000001102686 ], [ 357386.273500002920628, 259748.4358000010252 ], [ 357394.198100000619888, 259764.754900000989437 ], [ 357408.524700000882149, 259786.825899999588728 ], [ 357410.880699999630451, 259794.233399998396635 ], [ 357417.345600001513958, 259792.597600001841784 ], [ 357414.971600003540516, 259787.300799999386072 ], [ 357413.400399997830391, 259782.432799998670816 ], [ 357406.228100001811981, 259772.4527000002563 ], [ 357399.8800999969244, 259760.368400000035763 ], [ 357397.504299998283386, 259755.282699998468161 ], [ 357390.340999998152256, 259744.24720000103116 ], [ 357386.386799998581409, 259735.137899998575449 ], [ 357385.641599997878075, 259727.954599998891354 ], [ 357388.101899996399879, 259723.119600001722574 ], [ 357393.074600003659725, 259707.328200001269579 ], [ 357396.382600001990795, 259697.644999999552965 ], [ 357404.846699997782707, 259650.640399999916553 ], [ 357408.984399996697903, 259638.219799999147654 ], [ 357412.268899999558926, 259631.280600000172853 ], [ 357414.713100001215935, 259628.345300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95172233, "LATITUDE": 18.36756332, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.61610659899998, "SHAPE_Area": 813.08085929399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356571.95719999819994, 259734.804900001734495 ], [ 356559.709700003266335, 259752.647700000554323 ], [ 356557.244000002741814, 259758.115899998694658 ], [ 356553.176500000059605, 259762.304499998688698 ], [ 356550.708999998867512, 259767.983800001442432 ], [ 356541.773000001907349, 259775.721099998801947 ], [ 356548.180399999022484, 259780.839800000190735 ], [ 356553.050599999725819, 259777.079999998211861 ], [ 356560.327200002968311, 259774.817499998956919 ], [ 356596.656199999153614, 259769.837499998509884 ], [ 356603.921999998390675, 259768.841499999165535 ], [ 356608.783299997448921, 259766.137099999934435 ], [ 356618.511200003325939, 259760.094999998807907 ], [ 356628.256999999284744, 259751.942099999636412 ], [ 356626.696599997580051, 259745.807599999010563 ], [ 356605.601199999451637, 259761.044799998402596 ], [ 356601.555200003087521, 259762.700399998575449 ], [ 356559.571199998259544, 259768.900699999183416 ], [ 356559.605400003492832, 259764.8902000002563 ], [ 356567.783600002527237, 259751.447200000286102 ], [ 356574.351000003516674, 259737.779800001531839 ], [ 356575.196900002658367, 259733.142700001597404 ], [ 356571.95719999819994, 259734.804900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91761897000001, "LATITUDE": 18.36744403, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.56946727499999, "SHAPE_Area": 1918.23834285 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360212.265600003302097, 259787.186099998652935 ], [ 360194.047700002789497, 259748.618000000715256 ], [ 360155.960400000214577, 259770.682199999690056 ], [ 360169.354800000786781, 259807.522100001573563 ], [ 360191.19539999961853, 259799.468199998140335 ], [ 360206.587300002574921, 259791.150499999523163 ], [ 360212.265600003302097, 259787.186099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95757744, "LATITUDE": 18.36715743, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.393979249700003, "SHAPE_Area": 54.807039525599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355964.215199999511242, 259704.288499999791384 ], [ 355955.210900001227856, 259720.046900000423193 ], [ 355958.428999997675419, 259720.917599998414516 ], [ 355966.617899999022484, 259706.208099998533726 ], [ 355964.215199999511242, 259704.288499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95761919, "LATITUDE": 18.36713827, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.100974042499999, "SHAPE_Area": 113.018264884 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355955.210900001227856, 259720.046900000423193 ], [ 355964.215199999511242, 259704.288499999791384 ], [ 355961.011500000953674, 259701.729200001806021 ], [ 355960.185400001704693, 259704.04450000077486 ], [ 355958.560199998319149, 259705.508799999952316 ], [ 355956.134099997580051, 259706.333299998193979 ], [ 355953.718699999153614, 259705.891399998217821 ], [ 355950.452100001275539, 259710.719799999147654 ], [ 355952.055799998342991, 259711.788400001823902 ], [ 355951.996399998664856, 259718.754000000655651 ], [ 355955.210900001227856, 259720.046900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304036200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.919436, "LATITUDE": 18.36661374, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.57004116900001, "SHAPE_Area": 2806.7153764499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360030.180299997329712, 259674.449599999934435 ], [ 359990.107500001788139, 259645.624000001698732 ], [ 359958.242299996316433, 259694.548000000417233 ], [ 359963.087399996817112, 259693.743200000375509 ], [ 359967.914399996399879, 259695.049300000071526 ], [ 359971.920800000429153, 259698.037399999797344 ], [ 359975.104699999094009, 259702.918600000441074 ], [ 359972.381899997591972, 259738.571100000292063 ], [ 360030.180299997329712, 259674.449599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95616424000001, "LATITUDE": 18.36697298, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.809280545900002, "SHAPE_Area": 58.806364927700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356114.241499997675419, 259699.39469999819994 ], [ 356112.740299999713898, 259686.294599998742342 ], [ 356108.667400002479553, 259691.116500001400709 ], [ 356104.599899999797344, 259695.304999999701977 ], [ 356114.241499997675419, 259699.39469999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91556148, "LATITUDE": 18.36668919, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.55606491399999, "SHAPE_Area": 2195.0789860999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360431.560300000011921, 259696.944200001657009 ], [ 360397.198100000619888, 259660.354899998754263 ], [ 360373.518399998545647, 259694.991500001400709 ], [ 360400.602099999785423, 259734.054400000721216 ], [ 360411.165100000798702, 259724.641600001603365 ], [ 360417.680399999022484, 259717.095600001513958 ], [ 360419.321800000965595, 259713.731499999761581 ], [ 360420.943400003015995, 259712.689300000667572 ], [ 360421.769500002264977, 259710.374000001698732 ], [ 360427.478399999439716, 259702.821400001645088 ], [ 360431.560300000011921, 259696.944200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91580329, "LATITUDE": 18.3652811, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 563.08847878200004, "SHAPE_Area": 2070.9129224200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360385.87780000269413, 259474.710999999195337 ], [ 360393.892300002276897, 259480.476100001484156 ], [ 360400.279899999499321, 259487.916600000113249 ], [ 360405.029700003564358, 259498.299100000411272 ], [ 360404.959499999880791, 259506.531199999153614 ], [ 360401.683899998664856, 259512.41499999910593 ], [ 360399.218199998140335, 259517.883200000971556 ], [ 360399.202100001275539, 259519.782900001853704 ], [ 360397.571400001645088, 259521.880499999970198 ], [ 360392.63289999961853, 259533.661400001496077 ], [ 360392.616700001060963, 259535.561099998652935 ], [ 360388.511399999260902, 259544.182300001382828 ], [ 360374.480400003492832, 259582.064300000667572 ], [ 360361.435599997639656, 259598.844999998807907 ], [ 360357.314099997282028, 259609.36600000038743 ], [ 360347.350599996745586, 259643.059399999678135 ], [ 360344.874099999666214, 259649.794100001454353 ], [ 360340.797600001096725, 259655.038100000470877 ], [ 360340.704099997878075, 259666.014199998229742 ], [ 360350.471600003540516, 259655.328400000929832 ], [ 360352.9408999979496, 259649.437899999320507 ], [ 360354.569700002670288, 259647.551399998366833 ], [ 360356.255999997258186, 259638.910399999469519 ], [ 360361.237800002098083, 259622.063700001686811 ], [ 360367.846500001847744, 259603.541499998420477 ], [ 360371.118500001728535, 259598.079900000244379 ], [ 360378.447200000286102, 259589.696100000292063 ], [ 360384.993000000715256, 259578.561799999326468 ], [ 360395.748400002717972, 259546.5636 ], [ 360399.853699997067451, 259537.942299999296665 ], [ 360406.455300003290176, 259520.264499999582767 ], [ 360408.902999997138977, 259516.907000001519918 ], [ 360411.384900003671646, 259509.539099998772144 ], [ 360413.083800002932549, 259499.420499999076128 ], [ 360411.51969999819994, 259493.708200000226498 ], [ 360402.777999997138977, 259478.649000000208616 ], [ 360401.176100000739098, 259477.369300000369549 ], [ 360393.975000001490116, 259470.766499999910593 ], [ 360386.755999997258186, 259466.274399999529123 ], [ 360381.151399999856949, 259461.584499999880791 ], [ 360370.760999999940395, 259450.73369999974966 ], [ 360363.549199998378754, 259445.397300001233816 ], [ 360357.118400000035763, 259443.022599998861551 ], [ 360350.685900002717972, 259440.859099999070168 ], [ 360338.603799998760223, 259439.282499998807907 ], [ 360338.539099998772144, 259446.881400000303984 ], [ 360349.013999998569489, 259447.811500001698732 ], [ 360361.067299999296665, 259452.765299998223782 ], [ 360367.476400002837181, 259457.672899998724461 ], [ 360377.064099997282028, 259468.094900000840425 ], [ 360385.87780000269413, 259474.710999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94870945, "LATITUDE": 18.36622639, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.906971104199997, "SHAPE_Area": 166.03755876400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356903.690800003707409, 259603.053399998694658 ], [ 356894.762000001966953, 259609.946400001645088 ], [ 356893.108000002801418, 259614.788100000470877 ], [ 356894.654100000858307, 259622.611200001090765 ], [ 356897.848800003528595, 259626.225900001823902 ], [ 356901.847999997437, 259630.058299999684095 ], [ 356905.062399998307228, 259631.351199999451637 ], [ 356904.315499998629093, 259624.379000000655651 ], [ 356901.914499998092651, 259622.248399998992682 ], [ 356900.332500003278255, 259618.646899998188019 ], [ 356899.565700002014637, 259613.996500000357628 ], [ 356901.198100000619888, 259611.687899999320507 ], [ 356903.629600003361702, 259610.230099998414516 ], [ 356903.690800003707409, 259603.053399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95120494, "LATITUDE": 18.36620501, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.989199022500003, "SHAPE_Area": 238.20375753600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356626.119699999690056, 259624.212999999523163 ], [ 356649.601599998772144, 259612.795099999755621 ], [ 356630.341899998486042, 259601.871700000017881 ], [ 356626.119699999690056, 259624.212999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94867926000001, "LATITUDE": 18.3662208, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.6848315718, "SHAPE_Area": 41.360248931999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356904.315499998629093, 259624.379000000655651 ], [ 356903.629600003361702, 259610.230099998414516 ], [ 356901.198100000619888, 259611.687899999320507 ], [ 356899.565700002014637, 259613.996500000357628 ], [ 356900.332500003278255, 259618.646899998188019 ], [ 356901.914499998092651, 259622.248399998992682 ], [ 356904.315499998629093, 259624.379000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92149437, "LATITUDE": 18.36573844, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 328.28306149000002, "SHAPE_Area": 1136.56054339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359802.961300000548363, 259559.021499998867512 ], [ 359826.596100002527237, 259529.661899998784065 ], [ 359820.183399997651577, 259525.176399998366833 ], [ 359732.958499997854233, 259635.919900000095367 ], [ 359720.856600001454353, 259636.665300000458956 ], [ 359719.994599997997284, 259643.202100001275539 ], [ 359736.937899999320507, 259642.074200000613928 ], [ 359755.684500001370907, 259618.585200000554323 ], [ 359784.212899997830391, 259582.721700001507998 ], [ 359802.961300000548363, 259559.021499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94302325, "LATITUDE": 18.36508002, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 822.85020360500005, "SHAPE_Area": 2545.11322126 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357502.718400001525879, 259425.993500001728535 ], [ 357504.325599998235703, 259426.640000000596046 ], [ 357506.686999998986721, 259433.414299998432398 ], [ 357517.853100001811981, 259447.859999999403954 ], [ 357520.212700001895428, 259454.845400001853704 ], [ 357523.389399997889996, 259460.570999998599291 ], [ 357527.298699997365475, 259474.957299999892712 ], [ 357528.788999997079372, 259489.323899999260902 ], [ 357527.045100003480911, 259504.719399999827147 ], [ 357526.226199999451637, 259506.190400000661612 ], [ 357522.991999998688698, 259507.219399999827147 ], [ 357521.404500000178814, 259504.2511 ], [ 357499.853500001132488, 259478.321299999952316 ], [ 357490.244199998676777, 259470.432199999690056 ], [ 357478.210699997842312, 259463.156500000506639 ], [ 357466.159199997782707, 259457.991599999368191 ], [ 357452.484200000762939, 259454.079999998211861 ], [ 357452.42849999666214, 259460.623500000685453 ], [ 357457.253799997270107, 259462.140599999576807 ], [ 357466.094400003552437, 259465.590500000864267 ], [ 357478.950499996542931, 259470.973000001162291 ], [ 357492.576899997889996, 259480.583799999207258 ], [ 357498.172499999403954, 259486.329100001603365 ], [ 357516.527099996805191, 259508.855200000107288 ], [ 357509.151600003242493, 259522.727000001817942 ], [ 357500.195799998939037, 259532.786200001835823 ], [ 357499.3733000010252, 259534.679299999028444 ], [ 357489.618500001728535, 259543.887600000947714 ], [ 357471.755500003695488, 259558.30689999833703 ], [ 357457.92230000346899, 259572.970199998468161 ], [ 357453.842200003564358, 259578.636300001293421 ], [ 357450.575599998235703, 259583.464800000190735 ], [ 357443.250500001013279, 259591.426399998366833 ], [ 357436.747800000011921, 259597.494899999350309 ], [ 357427.009099997580051, 259604.803399998694658 ], [ 357428.565999999642372, 259611.360100001096725 ], [ 357446.427199997007847, 259597.151900000870228 ], [ 357453.750500001013279, 259589.401399999856949 ], [ 357462.727899998426437, 259576.809200000017881 ], [ 357473.310599997639656, 259565.074599999934435 ], [ 357483.056500002741814, 259556.921700000762939 ], [ 357484.681699998676777, 259555.457400001585484 ], [ 357494.42400000244379, 259547.726599998772144 ], [ 357505.807700000703335, 259536.631799999624491 ], [ 357513.95889999717474, 259526.355000000447035 ], [ 357520.513700000941753, 259514.165199998766184 ], [ 357525.35700000077486, 259513.571600001305342 ], [ 357531.026299998164177, 259510.662599999457598 ], [ 357533.47580000013113, 259507.094099998474121 ], [ 357534.42059999704361, 259490.847600001841784 ], [ 357546.286899998784065, 259517.753600001335144 ], [ 357551.950900003314018, 259515.478000000119209 ], [ 357531.389600001275539, 259468.024700000882149 ], [ 357530.626400001347065, 259462.952199999243021 ], [ 357525.09910000115633, 259449.185899998992682 ], [ 357510.761699996888638, 259428.381400000303984 ], [ 357509.258799999952316, 259415.492400001734495 ], [ 357510.907399997115135, 259411.284000001847744 ], [ 357514.163199998438358, 259407.722100000828505 ], [ 357516.628899998962879, 259402.253800000995398 ], [ 357521.520700000226498, 259395.960999999195337 ], [ 357528.082699999213219, 259382.927000001072884 ], [ 357524.911399997770786, 259376.568199999630451 ], [ 357512.629699997603893, 259398.421399999409914 ], [ 357511.00450000166893, 259399.885800000280142 ], [ 357510.174800001084805, 259402.623199999332428 ], [ 357505.282899998128414, 259408.916000001132488 ], [ 357502.795699998736382, 259416.917100001126528 ], [ 357503.551600001752377, 259422.833999998867512 ], [ 357502.718400001525879, 259425.993500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95125825, "LATITUDE": 18.3659895, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.184398376199994, "SHAPE_Area": 136.16680773900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356630.341899998486042, 259601.871700000017881 ], [ 356636.279100000858307, 259567.511999998241663 ], [ 356623.119199998676777, 259597.80180000141263 ], [ 356630.341899998486042, 259601.871700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95175851, "LATITUDE": 18.36581546, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.11144076299999, "SHAPE_Area": 615.72518797600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356570.814999997615814, 259584.919199999421835 ], [ 356576.482600003480911, 259582.2212999984622 ], [ 356583.787900000810623, 259576.581599999219179 ], [ 356592.749099999666214, 259565.889199998229742 ], [ 356600.115599997341633, 259553.072799999266863 ], [ 356603.430699996650219, 259542.545200001448393 ], [ 356605.971900001168251, 259528.21169999986887 ], [ 356600.324199996888638, 259528.587600000202656 ], [ 356596.136200003325939, 259546.918499998748302 ], [ 356590.393100000917912, 259558.481600001454353 ], [ 356583.051700003445148, 259568.3429000005126 ], [ 356575.733800001442432, 259575.460200000554323 ], [ 356565.199600003659725, 259581.495700001716614 ], [ 356558.731100000441074, 259583.553700000047684 ], [ 356548.238200001418591, 259584.734400000423193 ], [ 356544.192299999296665, 259586.390000000596046 ], [ 356540.117600001394749, 259591.422899998724461 ], [ 356540.052799999713898, 259599.021800000220537 ], [ 356541.652900002896786, 259600.512499999254942 ], [ 356547.314999997615814, 259598.447900000959635 ], [ 356545.741999998688698, 259593.791000001132488 ], [ 356548.184299997985363, 259591.066799998283386 ], [ 356560.293399997055531, 259589.477099999785423 ], [ 356570.814999997615814, 259584.919199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94865655, "LATITUDE": 18.36607553, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 11.3642022272, "SHAPE_Area": 5.1062242812200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356903.690800003707409, 259603.053399998694658 ], [ 356906.125900000333786, 259601.173500001430511 ], [ 356904.538400001823902, 259598.205200001597404 ], [ 356903.690800003707409, 259603.053399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95193758000001, "LATITUDE": 18.36602045, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.0775415759, "SHAPE_Area": 134.207843158 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356547.314999997615814, 259598.447900000959635 ], [ 356571.578100003302097, 259589.991700001060963 ], [ 356570.814999997615814, 259584.919199999421835 ], [ 356560.293399997055531, 259589.477099999785423 ], [ 356548.184299997985363, 259591.066799998283386 ], [ 356545.741999998688698, 259593.791000001132488 ], [ 356547.314999997615814, 259598.447900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90822011, "LATITUDE": 18.36564185, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.458824827, "SHAPE_Area": 2425.7967357299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361211.3445999994874, 259599.257199998944998 ], [ 361188.351800002157688, 259553.261700000613928 ], [ 361164.112099997699261, 259558.973999999463558 ], [ 361164.054499998688698, 259565.728500001132488 ], [ 361158.410300001502037, 259565.682300001382828 ], [ 361157.856499999761581, 259630.694600000977516 ], [ 361165.154700003564358, 259625.89919999986887 ], [ 361170.055500000715256, 259618.550999999046326 ], [ 361202.464400000870228, 259600.451099999248981 ], [ 361207.313100002706051, 259599.224199999123812 ], [ 361211.3445999994874, 259599.257199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90883534, "LATITUDE": 18.36567906, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.58752614, "SHAPE_Area": 1324.97999499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361102.773000001907349, 259565.438000001013279 ], [ 361098.284699998795986, 259619.019000001251698 ], [ 361105.564900003373623, 259616.334399998188019 ], [ 361115.245999999344349, 259615.7804000005126 ], [ 361124.896600000560284, 259618.814699999988079 ], [ 361127.768700003623962, 259565.642599999904633 ], [ 361102.773000001907349, 259565.438000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91926363, "LATITUDE": 18.36280747, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3589.8814334899998, "SHAPE_Area": 14051.969049 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360019.181800000369549, 259451.022599998861551 ], [ 360014.34570000320673, 259450.771899998188019 ], [ 359974.170400001108646, 259433.977800000458956 ], [ 359970.1621999964118, 259431.200800001621246 ], [ 359958.285099998116493, 259405.561200000345707 ], [ 359956.686800003051758, 259403.859400000423193 ], [ 359954.366800002753735, 259392.23030000180006 ], [ 359953.079599998891354, 259354.011799998581409 ], [ 359953.948899999260902, 259346.63060000166297 ], [ 359956.416400000452995, 259340.951299998909235 ], [ 359965.377499997615814, 259330.258900001645088 ], [ 359973.5, 259323.359299998730421 ], [ 359982.430600002408028, 259316.255199998617172 ], [ 360001.891800001263618, 259303.53770000115037 ], [ 360009.20610000193119, 259296.842599999159575 ], [ 360010.824100002646446, 259296.222600001841784 ], [ 360012.456500001251698, 259293.913899999111891 ], [ 360014.074600003659725, 259293.2939000017941 ], [ 360025.470799997448921, 259280.721500001847744 ], [ 360058.09910000115633, 259236.870000001043081 ], [ 360062.971199996769428, 259232.899099998176098 ], [ 360083.321400001645088, 259210.478700000792742 ], [ 360093.05290000140667, 259204.014400001615286 ], [ 360108.416000001132488, 259199.073899999260902 ], [ 360118.939400002360344, 259194.304900001734495 ], [ 360130.303300000727177, 259185.532000001519918 ], [ 360144.134700000286102, 259171.079700000584126 ], [ 360152.282300002872944, 259161.225000001490116 ], [ 360162.078599996864796, 259147.161899998784065 ], [ 360165.350599996745586, 259141.700300000607967 ], [ 360166.999099999666214, 259137.491900000721216 ], [ 360168.622599996626377, 259136.238600000739098 ], [ 360171.899999998509884, 259130.143699999898672 ], [ 360173.521600000560284, 259129.101500000804663 ], [ 360177.610699996352196, 259122.379999998956919 ], [ 360193.106799997389317, 259101.819699998944998 ], [ 360198.801399998366833, 259095.955600000917912 ], [ 360217.548000000417233, 259072.466600000858307 ], [ 360229.730800002813339, 259062.222699999809265 ], [ 360241.069499999284744, 259056.404899999499321 ], [ 360247.539800003170967, 259054.135800000280142 ], [ 360269.349799998104572, 259049.670299999415874 ], [ 360278.258799999952316, 259045.09910000115633 ], [ 360286.397399999201298, 259036.299800001084805 ], [ 360292.998999997973442, 259018.622000001370907 ], [ 360294.674500003457069, 259011.247400000691414 ], [ 360293.907799996435642, 259006.597100000828505 ], [ 360296.350100003182888, 259003.872900001704693 ], [ 360333.516000002622604, 258995.311099998652935 ], [ 360332.736599996685982, 258992.138300001621246 ], [ 360359.40429999679327, 258985.390500001609325 ], [ 360359.44030000269413, 258981.1689000017941 ], [ 360300.453599996864796, 258995.462699998170137 ], [ 360266.502099998295307, 259005.317299999296665 ], [ 360223.632700003683567, 259020.798500001430511 ], [ 360195.282300002872944, 259035.7652000002563 ], [ 360174.197700001299381, 259049.73589999973774 ], [ 360166.07880000025034, 259056.213300000876188 ], [ 360115.751199997961521, 259095.27589999884367 ], [ 360063.895400002598763, 259124.404599998146296 ], [ 360042.809000000357628, 259138.586399998515844 ], [ 360023.319099999964237, 259154.681099999696016 ], [ 359987.521300002932549, 259191.962699998170137 ], [ 359985.903200000524521, 259192.582800000905991 ], [ 359979.398800000548363, 259198.862300001084805 ], [ 359960.722300000488758, 259214.119300000369549 ], [ 359940.420699998736382, 259230.840599998831749 ], [ 359922.57209999859333, 259243.571299999952316 ], [ 359857.712899997830391, 259284.625900000333786 ], [ 359830.98589999973774, 259298.339299999177456 ], [ 359809.946199998259544, 259307.032999999821186 ], [ 359799.417400002479553, 259312.435300000011921 ], [ 359783.203100003302097, 259322.646099999547005 ], [ 359765.34009999781847, 259337.065400000661612 ], [ 359706.792900003492832, 259394.425900001078844 ], [ 359702.745200000703335, 259396.292599998414516 ], [ 359698.713600002229214, 259396.25959999859333 ], [ 359693.897299997508526, 259393.686999998986721 ], [ 359671.579499997198582, 259363.106899999082088 ], [ 359668.404600001871586, 259357.170299999415874 ], [ 359664.461099997162819, 259346.794399999082088 ], [ 359657.184500001370907, 259349.05689999833703 ], [ 359660.339699998497963, 259357.315400000661612 ], [ 359666.685900002717972, 259369.610700000077486 ], [ 359698.57150000333786, 259412.934799998998642 ], [ 359708.160999998450279, 259423.145799998193979 ], [ 359711.368199996650219, 259425.282999999821186 ], [ 359741.769000001251698, 259453.607200000435114 ], [ 359747.459899999201298, 259448.165399998426437 ], [ 359717.0574000030756, 259420.052200000733137 ], [ 359711.449199996888638, 259415.784400001168251 ], [ 359708.274300001561642, 259409.847800001502037 ], [ 359707.502099998295307, 259405.830699998885393 ], [ 359709.145300000905991, 259402.25560000166297 ], [ 359770.127599999308586, 259343.0152000002563 ], [ 359782.308600001037121, 259332.982400000095367 ], [ 359788.802299998700619, 259327.969300001859665 ], [ 359807.444600000977516, 259316.722800001502037 ], [ 359834.96169999986887, 259304.915699999779463 ], [ 359863.310300000011921, 259290.160100001841784 ], [ 359917.622699998319149, 259256.618599999696016 ], [ 359944.400100000202656, 259236.994899999350309 ], [ 359984.186300002038479, 259204.812100000679493 ], [ 360007.758199997246265, 259182.840199999511242 ], [ 360021.600400000810623, 259167.121500000357628 ], [ 360049.219999998807907, 259143.282900001853704 ], [ 360067.06139999628067, 259131.396600000560284 ], [ 360104.328000001609325, 259111.014400001615286 ], [ 360129.460299998521805, 259095.177000001072884 ], [ 360182.232100002467632, 259053.179099999368191 ], [ 360199.256300002336502, 259042.552700001746416 ], [ 360225.180600002408028, 259028.410500001162291 ], [ 360263.197800002992153, 259014.578400000929832 ], [ 360284.217600002884865, 259008.206500001251698 ], [ 360286.623999997973442, 259009.703899998217821 ], [ 360285.74210000038147, 259018.562600001692772 ], [ 360279.163999997079372, 259033.496399998664856 ], [ 360275.092799998819828, 259038.107099998742342 ], [ 360268.609999999403954, 259041.853799998760223 ], [ 360245.185599997639656, 259046.517200000584126 ], [ 360230.614399999380112, 259053.152899999171495 ], [ 360216.003700003027916, 259064.432399999350309 ], [ 360208.685699999332428, 259071.549699999392033 ], [ 360193.212899997830391, 259089.36600000038743 ], [ 360161.403499998152256, 259131.746599998325109 ], [ 360157.298199996352196, 259140.367800001055002 ], [ 360147.500200003385544, 259154.642000000923872 ], [ 360137.718400001525879, 259167.016399998217821 ], [ 360126.329300001263618, 259178.744500000029802 ], [ 360120.640100002288818, 259183.97520000115037 ], [ 360113.343800000846386, 259188.559599999338388 ], [ 360092.314900003373623, 259195.986800000071526 ], [ 360085.837399996817112, 259199.10020000115037 ], [ 360078.530299998819828, 259204.9510000012815 ], [ 360045.97749999910593, 259239.937199998646975 ], [ 360018.237400002777576, 259277.918099999427795 ], [ 360003.601499997079372, 259292.152699999511242 ], [ 359970.335900001227856, 259316.156199999153614 ], [ 359952.453100003302097, 259332.897300001233816 ], [ 359947.538000002503395, 259341.934099998325109 ], [ 359945.876800000667572, 259347.620000001043081 ], [ 359946.278499998152256, 259395.11939999833703 ], [ 359950.994099996984005, 259409.512299999594688 ], [ 359963.675700001418591, 259435.369500000029802 ], [ 359968.463200002908707, 259441.319299999624491 ], [ 359972.475000001490116, 259443.674199998378754 ], [ 360015.872000001370907, 259460.916900001466274 ], [ 360026.287600003182888, 259468.812600001692772 ], [ 360043.096100002527237, 259483.515599999576807 ], [ 360047.071900002658367, 259490.092000000178814 ], [ 360046.19539999961853, 259498.317499998956919 ], [ 360043.736900001764297, 259502.941500000655651 ], [ 360037.234300002455711, 259509.009899999946356 ], [ 360026.694700002670288, 259515.678700000047684 ], [ 360011.268700003623962, 259528.006900001317263 ], [ 359995.018299996852875, 259542.439399998635054 ], [ 359974.677100002765656, 259563.804499998688698 ], [ 359964.931199997663498, 259571.957299999892712 ], [ 359954.389799997210503, 259578.837200000882149 ], [ 359943.049300000071526, 259584.86600000038743 ], [ 359918.775399997830391, 259594.588799998164177 ], [ 359927.590899996459484, 259600.993700001388788 ], [ 359947.820600003004074, 259592.715599998831749 ], [ 359964.837700001895428, 259582.933400001376867 ], [ 359979.444799996912479, 259572.076099999248981 ], [ 360003.85360000282526, 259546.52250000089407 ], [ 360017.667000003159046, 259534.181000001728535 ], [ 360046.065999999642372, 259513.5152000002563 ], [ 360052.584799997508526, 259505.546999998390675 ], [ 360055.064900003373623, 259498.390099998563528 ], [ 360055.957500003278255, 259488.264899998903275 ], [ 360052.795199997723103, 259480.85080000013113 ], [ 360051.196900002658367, 259479.148899998515844 ], [ 360019.181800000369549, 259451.022599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96202436, "LATITUDE": 18.36540793, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.09281273800002, "SHAPE_Area": 1364.97672812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355520.34740000218153, 259463.175400000065565 ], [ 355520.451700001955032, 259450.932900000363588 ], [ 355499.298699997365475, 259472.924600001424551 ], [ 355484.612499997019768, 259493.069299999624491 ], [ 355482.143200002610683, 259498.959800001233816 ], [ 355477.249600000679493, 259505.463599998503923 ], [ 355473.129900000989437, 259515.773499999195337 ], [ 355471.484899997711182, 259519.55970000103116 ], [ 355469.854299999773502, 259521.657299999147654 ], [ 355469.836300000548363, 259523.768100000917912 ], [ 355468.205700002610683, 259525.865699999034405 ], [ 355467.370600000023842, 259529.236299999058247 ], [ 355468.108599998056889, 259537.263900000602007 ], [ 355469.667300000786781, 259543.609499998390675 ], [ 355474.453000001609325, 259549.770399998873472 ], [ 355480.066600002348423, 259553.404899999499321 ], [ 355487.310900002717972, 259554.941799998283386 ], [ 355522.779600001871586, 259556.287599999457598 ], [ 355522.856899999082088, 259547.211199998855591 ], [ 355486.580099999904633, 259546.069899998605251 ], [ 355480.158299997448921, 259542.639899998903275 ], [ 355477.766400001943111, 259539.453899998217821 ], [ 355476.990599997341633, 259535.859000001102686 ], [ 355477.877899996936321, 259526.366999998688698 ], [ 355481.169600002467632, 259518.583500001579523 ], [ 355482.798500001430511, 259516.697000000625849 ], [ 355486.075800001621246, 259510.602099999785423 ], [ 355486.898299999535084, 259508.708999998867512 ], [ 355491.820699997246265, 259498.827899999916553 ], [ 355495.91160000115633, 259491.895300000905991 ], [ 355499.97919999808073, 259487.706700000911951 ], [ 355500.805299997329712, 259485.391399998217821 ], [ 355505.69709999859333, 259479.098600000143051 ], [ 355520.34740000218153, 259463.175400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94395889, "LATITUDE": 18.36506632, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.22296396300001, "SHAPE_Area": 621.93955335199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357396.065700002014637, 259450.874099999666214 ], [ 357383.978200003504753, 259449.930700000375509 ], [ 357391.992799997329712, 259455.695900000631809 ], [ 357399.98759999871254, 259463.782900001853704 ], [ 357403.974200002849102, 259469.092799998819828 ], [ 357407.858300000429153, 259486.434300001710653 ], [ 357409.382799997925758, 259496.790300000458956 ], [ 357409.359499998390675, 259499.534400001168251 ], [ 357406.078500002622604, 259506.051399998366833 ], [ 357400.382100000977516, 259512.126499999314547 ], [ 357392.252499997615814, 259519.870400000363588 ], [ 357379.274099998176098, 259528.8412000015378 ], [ 357380.024700000882149, 259535.39130000025034 ], [ 357397.059799998998642, 259523.498399998992682 ], [ 357410.06870000064373, 259510.9391999989748 ], [ 357411.70830000191927, 259507.786200001835823 ], [ 357413.337099999189377, 259505.899700000882149 ], [ 357415.005400002002716, 259499.369500000029802 ], [ 357415.919600002467632, 259486.711399998515844 ], [ 357408.822899997234344, 259467.865899998694658 ], [ 357406.443499997258186, 259463.202399998903275 ], [ 357403.241599999368191, 259460.432000000029802 ], [ 357401.657799996435642, 259457.041499998420477 ], [ 357396.065700002014637, 259450.874099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90915159, "LATITUDE": 18.36521396, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.608209442800003, "SHAPE_Area": 70.210191494399993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361082.703299999237061, 259554.93019999936223 ], [ 361082.88849999755621, 259533.189100001007318 ], [ 361074.829000003635883, 259532.700899999588728 ], [ 361078.803000003099442, 259539.488400001078844 ], [ 361082.703299999237061, 259554.93019999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9186424, "LATITUDE": 18.36460347, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 628.93341104700005, "SHAPE_Area": 2942.1186123100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360088.566799998283386, 259541.30519999936223 ], [ 360112.366999998688698, 259492.526299998164177 ], [ 360118.133500002324581, 259478.219099998474121 ], [ 360125.526900000870228, 259462.2364999987185 ], [ 360123.192500002682209, 259452.296000000089407 ], [ 360116.833700001239777, 259441.478199999779463 ], [ 360110.433600001037121, 259435.5152000002563 ], [ 360104.011799998581409, 259432.085200000554323 ], [ 360053.316699996590614, 259419.637899998575449 ], [ 360048.478799998760223, 259419.598299998790026 ], [ 360041.997699998319149, 259423.133900001645088 ], [ 360039.544600002467632, 259427.124600000679493 ], [ 360040.280799999833107, 259435.363200001418591 ], [ 360041.861100003123283, 259439.175799999386072 ], [ 360062.686700001358986, 259455.600499998778105 ], [ 360067.477799996733665, 259461.128100000321865 ], [ 360072.241999998688698, 259469.822000000625849 ], [ 360069.776299998164177, 259475.290199998766184 ], [ 360066.545699998736382, 259475.897100001573563 ], [ 360064.133900001645088, 259475.032999999821186 ], [ 360036.933300003409386, 259449.690200001001358 ], [ 360032.912500001490116, 259448.390700001269579 ], [ 360029.687200002372265, 259448.36430000141263 ], [ 360019.181800000369549, 259451.022599998861551 ], [ 360051.196900002658367, 259479.148899998515844 ], [ 360053.628499999642372, 259477.691199999302626 ], [ 360059.231299996376038, 259482.592199999839067 ], [ 360062.442199997603893, 259484.307199999690056 ], [ 360068.081000000238419, 259484.986699998378754 ], [ 360072.119699999690056, 259484.175299998372793 ], [ 360076.982799999415874, 259481.259799998253584 ], [ 360080.247599996626377, 259476.642499998211861 ], [ 360081.13120000064373, 259467.572700001299381 ], [ 360075.578699998557568, 259456.761500000953674 ], [ 360067.596500001847744, 259447.196899998933077 ], [ 360048.367299996316433, 259432.685199998319149 ], [ 360048.392499998211861, 259429.730099998414516 ], [ 360050.82039999961853, 259428.694499999284744 ], [ 360100.716499999165535, 259440.290800001472235 ], [ 360107.931900002062321, 259445.204999998211861 ], [ 360111.121200002729893, 259449.453000001609325 ], [ 360112.699699997901917, 259453.476700000464916 ], [ 360110.980899997055531, 259465.917199999094009 ], [ 360105.981200002133846, 259484.874699998646975 ], [ 360102.709200002253056, 259490.336300000548363 ], [ 360080.534199997782707, 259537.65089999884367 ], [ 360088.566799998283386, 259541.30519999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91089972, "LATITUDE": 18.36492309, "OBJECTID_1": 1120, "PARCEL_NO_": "101403012600", "Tax_Legal_": "LOVENLUND C-2-D&C-5-B-11(75) GREAT NORTHSIDE QUARTER", "Name": "BEAKLEY, JOHN W. & MARY J.", "Address": "8214 Forest Hills Blvd", "City": "Dallas", "State": "Texas", "Zip": 75218, "Country": "United States", "Land_Value": 131200, "Improved_V": 301000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.747765047, "SHAPE_Area": 738.18889710799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360931.406000003218651, 259519.705800000578165 ], [ 360923.393299996852875, 259513.729600001126528 ], [ 360912.153399996459484, 259507.938099998980761 ], [ 360900.159500002861023, 259496.018699999898672 ], [ 360858.247400000691414, 259493.775800000876188 ], [ 360899.178700000047684, 259516.486699998378754 ], [ 360910.45269999653101, 259518.267799999564886 ], [ 360931.406000003218651, 259519.705800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203021600", "MAP": "D9-2726-T84", "PARCEL_NAM": "23C-2", "ACRE": ".24", "LONGITUDE": -64.94613517000001, "LATITUDE": 18.3648721, "OBJECTID_1": 795, "PARCEL_NO_": "101203021600", "Tax_Legal_": "23C-2 ST. PETER NO. 2 LITTLE NORTHSIDE QTR", "Name": "LEDEE, GERIANE LOUISE", "Address": "7491 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32500, "Improved_V": 111300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.56892231099999, "SHAPE_Area": 1209.9644311899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357189.745800003409386, 259485.425200000405312 ], [ 357189.894000001251698, 259452.331700000911951 ], [ 357164.406800001859665, 259452.327399998903275 ], [ 357155.857500001788139, 259452.325899999588728 ], [ 357153.812600001692772, 259486.427999999374151 ], [ 357161.106899999082088, 259486.736800000071526 ], [ 357182.872000001370907, 259487.548200000077486 ], [ 357189.745800003409386, 259485.425200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203021000", "MAP": "D9-276-T61", "PARCEL_NAM": "23B", "ACRE": null, "LONGITUDE": -64.94637404, "LATITUDE": 18.36473444, "OBJECTID_1": 790, "PARCEL_NO_": "101203021000", "Tax_Legal_": "ST PETER 23B LITTLE NORTHSIDE QTR", "Name": "RICHARDSON, C. T. & SCHMIEMANN, M. M", "Address": "6003 Clerkenwell Ct", "City": "Burke", "State": "Virginia", "Zip": 22015, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.42974756000001, "SHAPE_Area": 1073.7485909300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357157.591899998486042, 259423.402800001204014 ], [ 357140.069899998605251, 259422.902499999850988 ], [ 357137.282799996435642, 259486.062199998646975 ], [ 357142.567100003361702, 259485.951799999922514 ], [ 357153.812600001692772, 259486.427999999374151 ], [ 357157.591899998486042, 259423.402800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701020300", "MAP": "A9-157-T71", "PARCEL_NAM": "14-70", "ACRE": ".24", "LONGITUDE": -64.95848807, "LATITUDE": 18.36481072, "OBJECTID_1": 2840, "PARCEL_NO_": "102701020300", "Tax_Legal_": "BONNE RESOLUTION 14-70 LT. NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.637491106, "SHAPE_Area": 1329.99803647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355869.034000001847744, 259423.810600001364946 ], [ 355846.309799998998642, 259440.934300001710653 ], [ 355854.927500002086163, 259470.557900000363588 ], [ 355863.802299998700619, 259469.99720000103116 ], [ 355863.780699998140335, 259472.530200000852346 ], [ 355866.982600003480911, 259475.300599999725819 ], [ 355887.955700002610683, 259474.416799999773502 ], [ 355884.795199997723103, 259466.791600000113249 ], [ 355881.710199996829033, 259450.300999999046326 ], [ 355877.78830000013113, 259437.392200000584126 ], [ 355869.034000001847744, 259423.810600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90297903, "LATITUDE": 18.36463329, "OBJECTID_1": 5354, "PARCEL_NO_": "103002031700", "Tax_Legal_": "LOVENLUND C-44 GT. NORTHSIDE", "Name": "KIWI LUXURY PROPERTIES LLC", "Address": "7399 N Shadeland Ave", "City": "Indianapolis", "State": "Indiana", "Zip": 46250, "Country": "United States", "Land_Value": 334800, "Improved_V": 173900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.70941375800001, "SHAPE_Area": 2622.2192168400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361762.04280000180006, 259510.672200001776218 ], [ 361740.784800000488758, 259450.336500000208616 ], [ 361735.214299999177456, 259441.636100001633167 ], [ 361731.976499997079372, 259443.087200000882149 ], [ 361719.860200002789497, 259445.521200001239777 ], [ 361705.359200000762939, 259443.924899999052286 ], [ 361708.384800001978874, 259467.381000000983477 ], [ 361734.525600001215935, 259522.479299999773502 ], [ 361743.387900002300739, 259523.396200001239777 ], [ 361747.431999996304512, 259521.95160000026226 ], [ 361748.256300002336502, 259519.84739999845624 ], [ 361754.75900000333786, 259513.778999999165535 ], [ 361762.04280000180006, 259510.672200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701025000", "MAP": "A9-157-T71", "PARCEL_NAM": "15-9", "ACRE": null, "LONGITUDE": -64.95802618, "LATITUDE": 18.36484888, "OBJECTID_1": 2878, "PARCEL_NO_": "102701025000", "Tax_Legal_": "BONNE RESOLUTION 15-9 LT. NORTHSIDE", "Name": "POPO FAMILY TRUST", "Address": "PO BOX 305255", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27300, "Improved_V": 233800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.86079628100001, "SHAPE_Area": 1067.9680362 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355923.744599997997284, 259438.190499998629093 ], [ 355911.658900000154972, 259437.036100000143051 ], [ 355894.492499999701977, 259464.337799999862909 ], [ 355896.045800000429153, 259471.316599998623133 ], [ 355899.251299999654293, 259473.664900001138449 ], [ 355931.520000003278255, 259472.029100000858307 ], [ 355931.800499998033047, 259439.10080000013113 ], [ 355923.744599997997284, 259438.190499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701015000", "MAP": "D9-5307-T92", "PARCEL_NAM": "15-A", "ACRE": "1.17", "LONGITUDE": -64.96619829, "LATITUDE": 18.36447175, "OBJECTID_1": 2826, "PARCEL_NO_": "102701015000", "Tax_Legal_": "NELTJEBERG 15A LITTLE NORTH SIDE", "Name": "BOROWY, TERESA (TRUSTEE)", "Address": "682 Irolo St # 608", "City": "Los Angeles", "State": "California", "Zip": 900052367, "Country": "United States", "Land_Value": 108400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 367.98889212500001, "SHAPE_Area": 4733.8269395999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355072.895400002598763, 259358.821600001305342 ], [ 354983.353299997746944, 259459.390099998563528 ], [ 355015.53999999910593, 259465.587699998170137 ], [ 355018.012900002300739, 259459.275199998170137 ], [ 355024.529899999499321, 259451.51799999922514 ], [ 355031.014600001275539, 259447.560300000011921 ], [ 355039.905599996447563, 259445.100000001490116 ], [ 355122.854400001466274, 259363.030200000852346 ], [ 355072.895400002598763, 259358.821600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104023900", "MAP": null, "PARCEL_NAM": "11FA", "ACRE": null, "LONGITUDE": -64.94919361, "LATITUDE": 18.36483004, "OBJECTID_1": 607, "PARCEL_NO_": "101104023900", "Tax_Legal_": "HULL 11FA,B,C&D LT. NORTHSIDE", "Name": "MILLER, JEAN M. & RICHARD, H", "Address": "2860 Burlawn Pkwy", "City": "Brookfield", "State": "Wisconsin", "Zip": 53005, "Country": "United States", "Land_Value": 156800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.128611025, "SHAPE_Area": 751.46623397799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356835.727099999785423, 259440.58839999884367 ], [ 356840.2449000030756, 259478.199999999254942 ], [ 356862.803700000047684, 259480.495600000023842 ], [ 356859.824799999594688, 259451.551399998366833 ], [ 356835.727099999785423, 259440.58839999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702040100", "MAP": "A9-157-T71", "PARCEL_NAM": "15-12", "ACRE": null, "LONGITUDE": -64.95770884, "LATITUDE": 18.36484624, "OBJECTID_1": 3097, "PARCEL_NO_": "102702040100", "Tax_Legal_": "BONNE RESOLUTION 15-12 LT. NORTHSIDE", "Name": "MALLORY, CASSANDRA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25500, "Improved_V": 98800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.71782221399999, "SHAPE_Area": 1038.34728559 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355968.059399999678135, 259442.352899998426437 ], [ 355964.004399999976158, 259445.063900001347065 ], [ 355950.298900000751019, 259444.740699999034405 ], [ 355937.441100001335144, 259439.569200001657009 ], [ 355931.800499998033047, 259439.10080000013113 ], [ 355931.520000003278255, 259472.029100000858307 ], [ 355969.43639999628067, 259470.017400000244379 ], [ 355968.005400002002716, 259448.685300000011921 ], [ 355968.059399999678135, 259442.352899998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702050200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9543634, "LATITUDE": 18.36471378, "OBJECTID_1": 3157, "PARCEL_NO_": "102702050200", "Tax_Legal_": "HULL 5E-2 LITTLE NORTHSIDE", "Name": "Bryan, Toni, Jacques & Catherine", "Address": "355 ROSE LANE", "City": "Mattituck", "State": "New York", "Zip": 11952, "Country": "United States", "Land_Value": 45900, "Improved_V": 219800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.95714093500001, "SHAPE_Area": 895.23088982399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356285.030100002884865, 259434.392499998211861 ], [ 356280.867399998009205, 259463.195300001651049 ], [ 356287.604800000786781, 259463.901299998164177 ], [ 356291.254000000655651, 259461.041200000792742 ], [ 356306.649499997496605, 259452.301300000399351 ], [ 356326.890000000596046, 259442.756599999964237 ], [ 356347.105400003492832, 259436.167100001126528 ], [ 356285.030100002884865, 259434.392499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90846224000001, "LATITUDE": 18.364783, "OBJECTID_1": 5261, "PARCEL_NO_": "103001034300", "Tax_Legal_": "LOVENLUND C-5-B-20 AKA 101 GT. NORTHSIDE", "Name": "ROBERT E CONSANI TRUST", "Address": "43560 Cotisford", "City": "Northville", "State": "Michigan", "Zip": 48167, "Country": "United States", "Land_Value": 134200, "Improved_V": 751700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.98859445299999, "SHAPE_Area": 1718.67165682 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361175.320600003004074, 259473.783900000154972 ], [ 361134.222000002861023, 259470.703299999237061 ], [ 361130.660499997437, 259510.148699998855591 ], [ 361174.161799997091293, 259515.148800000548363 ], [ 361175.320600003004074, 259473.783900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90796106000001, "LATITUDE": 18.36469165, "OBJECTID_1": 5263, "PARCEL_NO_": "103001034500", "Tax_Legal_": "LOVENLUND C-5-B-21 AKA 102 GT. NORTHSIDE", "Name": "ROBERT E CONSANI TRUST", "Address": "43560 Cotisford", "City": "Northville", "State": "Michigan", "Zip": 48167, "Country": "United States", "Land_Value": 107500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.44501281699999, "SHAPE_Area": 2516.0903477900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361240.50959999859333, 259488.671799998730421 ], [ 361240.007200002670288, 259452.992899999022484 ], [ 361175.320600003004074, 259473.783900000154972 ], [ 361174.161799997091293, 259515.148800000548363 ], [ 361240.50959999859333, 259488.671799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104023900", "MAP": null, "PARCEL_NAM": "11-FB", "ACRE": null, "LONGITUDE": -64.94944109, "LATITUDE": 18.36476499, "OBJECTID_1": 607, "PARCEL_NO_": "101104023900", "Tax_Legal_": "HULL 11FA,B,C&D LT. NORTHSIDE", "Name": "MILLER, JEAN M. & RICHARD, H", "Address": "2860 Burlawn Pkwy", "City": "Brookfield", "State": "Wisconsin", "Zip": 53005, "Country": "United States", "Land_Value": 156800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.34225668, "SHAPE_Area": 1189.8331916 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356806.006800003349781, 259427.046300001442432 ], [ 356809.039700001478195, 259449.658100001513958 ], [ 356812.848300002515316, 259475.864900000393391 ], [ 356815.267200000584126, 259475.884700000286102 ], [ 356840.2449000030756, 259478.199999999254942 ], [ 356835.727099999785423, 259440.58839999884367 ], [ 356806.006800003349781, 259427.046300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95473279, "LATITUDE": 18.36475081, "OBJECTID_1": 3156, "PARCEL_NO_": "102702050100", "Tax_Legal_": "HULL 5E-1 LITTLE NORTHSIDE", "Name": "BRYAN, VICTOR MELVIN", "Address": "5E-1 Estate Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37300, "Improved_V": 231100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.71447052400001, "SHAPE_Area": 1012.65384078 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356280.867399998009205, 259463.195300001651049 ], [ 356285.030100002884865, 259434.392499998211861 ], [ 356264.865099996328354, 259435.071800000965595 ], [ 356258.412799999117851, 259435.230099998414516 ], [ 356238.581500001251698, 259450.137299999594688 ], [ 356237.717500001192093, 259457.031300000846386 ], [ 356237.514300003647804, 259458.65260000154376 ], [ 356242.671800002455711, 259459.192999999970198 ], [ 356269.339100003242493, 259461.987300001084805 ], [ 356280.867399998009205, 259463.195300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702040200", "MAP": "A9-157-T71", "PARCEL_NAM": "15-11", "ACRE": ".24", "LONGITUDE": -64.9573866, "LATITUDE": 18.36478762, "OBJECTID_1": 3098, "PARCEL_NO_": "102702040200", "Tax_Legal_": "15-11 BONNE RESOLUTION LITTLE NORTHSIDE QUARTER", "Name": "MILTON, CHRISTERLIN R.", "Address": "PO Box 8105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24000, "Improved_V": 139400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.51455246499999, "SHAPE_Area": 1100.731412 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355988.314300000667572, 259431.119600001722574 ], [ 355977.871799997985363, 259426.390099998563528 ], [ 355968.059399999678135, 259442.352899998426437 ], [ 355968.005400002002716, 259448.685300000011921 ], [ 355969.43639999628067, 259470.017400000244379 ], [ 355996.0591000020504, 259468.546599999070168 ], [ 355999.306000001728535, 259466.03999999910593 ], [ 356000.135600000619888, 259463.302600000053644 ], [ 355998.652500003576279, 259448.091699998825788 ], [ 355997.102799996733665, 259440.690799999982119 ], [ 355993.119800001382828, 259434.958599999547005 ], [ 355988.314300000667572, 259431.119600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404010500", "MAP": "D9-6358-T97", "PARCEL_NAM": "C-8", "ACRE": ".34", "LONGITUDE": -64.90741192, "LATITUDE": 18.36482846, "OBJECTID_1": 1125, "PARCEL_NO_": "101404010500", "Tax_Legal_": "LOVENLUND C-8(64B)&C-34-1 No.2 GREAT NORTHSIDE QTR.", "Name": "HARRIGAN FAMILY REVOC TR", "Address": "PO Box 304343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 179500, "Improved_V": 645600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.52238566700001, "SHAPE_Area": 1367.8284024100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361266.914700001478195, 259512.741500001400709 ], [ 361296.669600002467632, 259502.960900001227856 ], [ 361295.263400003314018, 259497.98589999973774 ], [ 361287.369300000369549, 259478.078499998897314 ], [ 361214.55120000243187, 259506.824499998241663 ], [ 361254.830899998545647, 259511.375999998301268 ], [ 361258.075900003314018, 259509.080600000917912 ], [ 361263.716499999165535, 259509.548900000751019 ], [ 361264.501199997961521, 259512.088500000536442 ], [ 361266.914700001478195, 259512.741500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203021200", "MAP": "D9-6478-T98", "PARCEL_NAM": "23D REM", "ACRE": ".26", "LONGITUDE": -64.94566303000001, "LATITUDE": 18.36458742, "OBJECTID_1": 792, "PARCEL_NO_": "101203021200", "Tax_Legal_": "ST PETER 23D LITTLE NORTHSIDE QTR", "Name": "BRYAN(Life Estate), DORIS T.", "Address": "7489 St Peter 23D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46900, "Improved_V": 94300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.367961753, "SHAPE_Area": 1187.01044594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357194.85360000282526, 259424.466600000858307 ], [ 357218.54389999806881, 259465.041999999433756 ], [ 357234.815800003707409, 259448.07660000026226 ], [ 357235.638300001621246, 259446.183499999344349 ], [ 357238.886900000274181, 259443.465900000184774 ], [ 357245.409400001168251, 259435.075500000268221 ], [ 357249.471500001847744, 259431.520199999213219 ], [ 357250.293999999761581, 259429.627099998295307 ], [ 357253.548100002110004, 259426.142299998551607 ], [ 357196.95719999819994, 259424.526599999517202 ], [ 357194.85360000282526, 259424.466600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94975207, "LATITUDE": 18.36483085, "OBJECTID_1": 607, "PARCEL_NO_": "101104023900", "Tax_Legal_": "HULL 11FA,B,C&D LT. NORTHSIDE", "Name": "MILLER, JEAN M. & RICHARD, H", "Address": "2860 Burlawn Pkwy", "City": "Brookfield", "State": "Wisconsin", "Zip": 53005, "Country": "United States", "Land_Value": 156800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.80848920599999, "SHAPE_Area": 1071.54266953 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356809.039700001478195, 259449.658100001513958 ], [ 356767.115000002086163, 259448.892799999564886 ], [ 356770.932599999010563, 259474.044199999421835 ], [ 356812.848300002515316, 259475.864900000393391 ], [ 356809.039700001478195, 259449.658100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90884775000001, "LATITUDE": 18.36475189, "OBJECTID_1": 5258, "PARCEL_NO_": "103001034000", "Tax_Legal_": "C-5-B-19 LOVENLUND (AKA 100) NO.2 GREAT NORTHSIDE QTR.", "Name": "PATRICK BAYARD & YANICK BAYARD REV. FAM, TRST", "Address": "PO Box 304520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 131200, "Improved_V": 862700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.36524122399999, "SHAPE_Area": 1520.6311990199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361134.222000002861023, 259470.703299999237061 ], [ 361097.959600001573563, 259467.873399998992682 ], [ 361088.784400001168251, 259503.684200000017881 ], [ 361106.492700003087521, 259507.417700000107288 ], [ 361130.660499997437, 259510.148699998855591 ], [ 361134.222000002861023, 259470.703299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702050500", "MAP": "B9-399-T73", "PARCEL_NAM": "5E-5", "ACRE": null, "LONGITUDE": -64.95339307, "LATITUDE": 18.36473383, "OBJECTID_1": 3160, "PARCEL_NO_": "102702050500", "Tax_Legal_": "HULL 5E-5 LITTLE NORTHSIDE", "Name": "BERRY, SANDRA MARIE", "Address": "PO Box 10156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49900, "Improved_V": 168800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.441187567, "SHAPE_Area": 834.59985892099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356419.50620000064373, 259456.391399998217821 ], [ 356417.626599997282028, 259428.151900000870228 ], [ 356414.894900001585484, 259429.755800001323223 ], [ 356409.234600000083447, 259431.609299998730421 ], [ 356391.32379999756813, 259435.207299999892712 ], [ 356394.882200002670288, 259470.049100000411272 ], [ 356397.627899996936321, 259468.877900000661612 ], [ 356400.874700002372265, 259466.371399998664856 ], [ 356408.144100002944469, 259464.953200001269579 ], [ 356410.577500000596046, 259463.284400001168251 ], [ 356419.50620000064373, 259456.391399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95674679, "LATITUDE": 18.36476402, "OBJECTID_1": 3100, "PARCEL_NO_": "102702040400", "Tax_Legal_": "15-4 BONNE RESOLUTION 5 LITTLE NORTHSIDE QUARTER", "Name": "DURAN, JUDY R. & KEMO I.", "Address": "PO Box 10388", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39100, "Improved_V": 200300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.71393699699999, "SHAPE_Area": 1068.47687928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356065.731100000441074, 259430.486699998378754 ], [ 356034.254299998283386, 259433.817699998617172 ], [ 356035.581000000238419, 259467.392400000244379 ], [ 356069.491099998354912, 259462.392599999904633 ], [ 356067.934199996292591, 259455.835900001227856 ], [ 356065.731100000441074, 259430.486699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026300", "MAP": "D9-1468-T79", "PARCEL_NAM": "11JB", "ACRE": null, "LONGITUDE": -64.95054663000001, "LATITUDE": 18.36464301, "OBJECTID_1": 3040, "PARCEL_NO_": "102702026300", "Tax_Legal_": "HULL 11-JB LT NORTHSIDE", "Name": "SHACKELL, LYNNE S", "Address": "PO Box 12061", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.15301616100001, "SHAPE_Area": 1644.97647957 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356760.864100001752377, 259425.410199999809265 ], [ 356717.56139999628067, 259428.029399998486042 ], [ 356706.554799996316433, 259414.694400001317263 ], [ 356705.449600003659725, 259407.5641999989748 ], [ 356670.150700002908707, 259472.374899998307228 ], [ 356680.665200002491474, 259468.661299999803305 ], [ 356695.239900000393391, 259461.603399999439716 ], [ 356742.252400003373623, 259433.068399999290705 ], [ 356760.864100001752377, 259425.410199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702051300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95485321, "LATITUDE": 18.36450945, "OBJECTID_1": 3168, "PARCEL_NO_": "102702051300", "Tax_Legal_": "HULL 5E-13 LITTLE NORTHSIDE", "Name": "THOMPSON, LORI & WILLIAM", "Address": "PO Box 9217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37300, "Improved_V": 259900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.305514794, "SHAPE_Area": 798.74547636199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356258.412799999117851, 259435.230099998414516 ], [ 356257.658600002527237, 259429.102200001478195 ], [ 356264.116300001740456, 259428.310699999332428 ], [ 356265.741499997675419, 259426.8462999984622 ], [ 356264.956799998879433, 259424.306800000369549 ], [ 356259.523000001907349, 259399.564399998635054 ], [ 356244.61710000038147, 259401.975299999117851 ], [ 356238.581500001251698, 259450.137299999594688 ], [ 356258.412799999117851, 259435.230099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602024200", "MAP": "D9-7266-T003", "PARCEL_NAM": "15-2", "ACRE": ".514", "LONGITUDE": -64.96685029, "LATITUDE": 18.36465907, "OBJECTID_1": 2440, "PARCEL_NO_": "102602024200", "Tax_Legal_": "15-2 ESTATE NELTJEBERG NO. 6 LITTLE NORTHSIDE QUARTER", "Name": "DAVIS, STEEL W. & COCHRAN, CYDALL", "Address": "PO Box 1524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60000, "Improved_V": 306700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.75119807, "SHAPE_Area": 3014.3518421200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355032.598499998450279, 259404.080800000578165 ], [ 354994.193400003015995, 259395.913899999111891 ], [ 354989.478399999439716, 259401.201999999582767 ], [ 354975.668499998748302, 259413.121300000697374 ], [ 354965.127099998295307, 259420.0011 ], [ 354948.925399996340275, 259428.734400000423193 ], [ 354939.177699998021126, 259437.098400000482798 ], [ 354938.35700000077486, 259438.7804000005126 ], [ 354939.102200001478195, 259445.963700000196695 ], [ 354939.886900000274181, 259448.503299999982119 ], [ 354943.085199996829033, 259451.695799998939037 ], [ 354964.01690000295639, 259455.666799999773502 ], [ 354983.353299997746944, 259459.390099998563528 ], [ 355032.598499998450279, 259404.080800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002031800", "MAP": "D9-8544-T011", "PARCEL_NAM": "C-45", "ACRE": null, "LONGITUDE": -64.90268262, "LATITUDE": 18.36446815, "OBJECTID_1": 5355, "PARCEL_NO_": "103002031800", "Tax_Legal_": "LOVENLUND ESTATE C-45(LOT 48) No.2 GREAT NORTHSIDE QTR", "Name": "TODD A OCHSNER", "Address": "6513 Tobago Dr Unit 14", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023242, "Country": "United States", "Land_Value": 220000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.013408583, "SHAPE_Area": 2619.2332449400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361792.896600000560284, 259485.80460000038147 ], [ 361777.19650000333786, 259435.646899998188019 ], [ 361762.002499997615814, 259420.745999999344349 ], [ 361748.991800002753735, 259433.516199998557568 ], [ 361741.689999997615814, 259438.733800001442432 ], [ 361735.214299999177456, 259441.636100001633167 ], [ 361740.784800000488758, 259450.336500000208616 ], [ 361762.04280000180006, 259510.672200001776218 ], [ 361768.541799999773502, 259505.025800000876188 ], [ 361772.625500001013279, 259498.9375 ], [ 361772.652500003576279, 259495.77140000090003 ], [ 361775.929899998009205, 259489.676500000059605 ], [ 361783.206500001251698, 259487.414000000804663 ], [ 361790.468699999153614, 259486.840199999511242 ], [ 361792.896600000560284, 259485.80460000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90922315, "LATITUDE": 18.36466884, "OBJECTID_1": 5255, "PARCEL_NO_": "103001033700", "Tax_Legal_": "LOVENLUND C-6-L AKA 99 GT.NORTHSIDE", "Name": "CYRIL V. FRANCOIS ASSOC.", "Address": "PO Box 6050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 120500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.26492607700001, "SHAPE_Area": 1476.0375768599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361097.959600001573563, 259467.873399998992682 ], [ 361057.730200000107288, 259457.411699999123812 ], [ 361047.007200002670288, 259485.610399998724461 ], [ 361071.903999999165535, 259497.424300000071526 ], [ 361088.784400001168251, 259503.684200000017881 ], [ 361097.959600001573563, 259467.873399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95707015000001, "LATITUDE": 18.36456262, "OBJECTID_1": 3101, "PARCEL_NO_": "102702040500", "Tax_Legal_": "BONNE RESOLUTION 15-7 LT. NORTHSIDE", "Name": "RICHARDS, WALTER & DENISE", "Address": "PO Box 7188", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59500, "Improved_V": 120500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.98419661299999, "SHAPE_Area": 1195.11039635 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356032.906000003218651, 259402.77589999884367 ], [ 356020.062600001692772, 259395.915800001472235 ], [ 355998.018799997866154, 259427.821600001305342 ], [ 356002.817100003361702, 259432.504900000989437 ], [ 356006.785700000822544, 259439.925599999725819 ], [ 356008.347999997437, 259445.848999999463558 ], [ 356009.824000000953674, 259461.904199998825788 ], [ 356021.186099998652935, 259453.342399999499321 ], [ 356032.861100003123283, 259408.052799999713898 ], [ 356032.906000003218651, 259402.77589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031800", "MAP": "A9-394-T91", "PARCEL_NAM": "10", "ACRE": "3.9", "LONGITUDE": -64.96503626000001, "LATITUDE": 18.36417353, "OBJECTID_1": 455, "PARCEL_NO_": "101103031800", "Tax_Legal_": "NELTJBERG/EASTERN PART 10 LT. NORTHSIDE", "Name": "MOOLENAAR, ZEPHIRA", "Address": "715 Sable Xing", "City": "Suwanee", "State": "Georgia", "Zip": 30024, "Country": "United States", "Land_Value": 180300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 646.14974429599999, "SHAPE_Area": 15990.8090168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355039.905599996447563, 259445.100000001490116 ], [ 355053.620099999010563, 259444.367899999022484 ], [ 355068.119400002062321, 259446.175299998372793 ], [ 355087.415100000798702, 259452.877099998295307 ], [ 355122.377899996936321, 259418.966099999845028 ], [ 355140.723399996757507, 259442.547600001096725 ], [ 355160.188199996948242, 259429.408100001513958 ], [ 355221.019500002264977, 259387.898299999535084 ], [ 355292.027099996805191, 259382.357799999415874 ], [ 355284.829700000584126, 259375.332800000905991 ], [ 355269.077399998903275, 259331.296399999409914 ], [ 355245.125399999320507, 259303.236000001430511 ], [ 355157.822499997913837, 259328.486000001430511 ], [ 355122.854400001466274, 259363.030200000852346 ], [ 355039.905599996447563, 259445.100000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702050600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95302491, "LATITUDE": 18.3646413, "OBJECTID_1": 3161, "PARCEL_NO_": "102702050600", "Tax_Legal_": "HULL 5E-6\nLITTLE NORTHSIDE", "Name": "Belcher-Zachman Trust, Rel 2007 Trust, C&B Merritt", "Address": "PO Box 11726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.16098592700001, "SHAPE_Area": 1288.9020922300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356417.626599997282028, 259428.151900000870228 ], [ 356419.50620000064373, 259456.391399998217821 ], [ 356434.10080000013113, 259447.011599998921156 ], [ 356437.333200000226498, 259446.19370000064373 ], [ 356442.975599996745586, 259446.4510000012815 ], [ 356447.79730000346899, 259448.390299998223782 ], [ 356453.405500002205372, 259452.657999999821186 ], [ 356458.241599999368191, 259452.908700000494719 ], [ 356462.287600003182888, 259451.253100000321865 ], [ 356464.731700003147125, 259448.317800000309944 ], [ 356471.210900001227856, 259444.993299998342991 ], [ 356477.677599996328354, 259443.14640000090003 ], [ 356485.744300000369549, 259442.790199998766184 ], [ 356485.767700001597404, 259440.04619999974966 ], [ 356476.135099999606609, 259434.901099998503923 ], [ 356448.769100002944469, 259428.977600000798702 ], [ 356436.712099999189377, 259424.445999998599291 ], [ 356425.47410000115633, 259418.443399999290705 ], [ 356423.827299997210503, 259422.440699998289347 ], [ 356420.567900002002716, 259426.424800001084805 ], [ 356417.626599997282028, 259428.151900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9407111, "LATITUDE": 18.36444342, "OBJECTID_1": 4023, "PARCEL_NO_": "102802010100", "Tax_Legal_": "LERKENLUND 1-14 GR NORTHSIDE", "Name": "BALLARD, WILLIAM HUDSON & ROBIN (TRUSTEES)", "Address": "PO Box 304977", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 138500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.842904301, "SHAPE_Area": 1666.2007522199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357720.498400002717972, 259439.232099998742342 ], [ 357722.5912000015378, 259439.118299998342991 ], [ 357724.980099998414516, 259439.118299998342991 ], [ 357728.888300001621246, 259440.497699998319149 ], [ 357731.120200000703335, 259441.1064000017941 ], [ 357735.441799998283386, 259442.243599999696016 ], [ 357738.207400001585484, 259443.823899999260902 ], [ 357738.556599996984005, 259445.919599998742342 ], [ 357739.557300001382828, 259448.120999999344349 ], [ 357739.942100003361702, 259449.467799998819828 ], [ 357740.6503000035882, 259450.64809999987483 ], [ 357741.901699997484684, 259451.204300001263618 ], [ 357743.316699996590614, 259451.911800000816584 ], [ 357745.774300001561642, 259452.321400001645088 ], [ 357749.506300002336502, 259453.883299998939037 ], [ 357756.52419999986887, 259446.0016999989748 ], [ 357774.040299996733665, 259433.395399998873472 ], [ 357748.099899999797344, 259397.182199999690056 ], [ 357732.681000001728535, 259408.666200000792742 ], [ 357726.142399996519089, 259418.956199999898672 ], [ 357724.513599999248981, 259420.842700000852346 ], [ 357722.85419999808073, 259426.317600000649691 ], [ 357720.498400002717972, 259439.232099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90531439, "LATITUDE": 18.36458862, "OBJECTID_1": 5345, "PARCEL_NO_": "103002030800", "Tax_Legal_": "LOVENLUND C-16A 114 GT. NORTHSIDE", "Name": "CONNOR, TREVOR", "Address": "BOX 4768", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 160100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.21052313200001, "SHAPE_Area": 913.31392287200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361507.52250000089407, 259484.363299999386072 ], [ 361498.80290000140667, 259458.699599999934435 ], [ 361464.89469999819994, 259463.488299999386072 ], [ 361468.823700003325939, 259475.552799999713898 ], [ 361474.314499996602535, 259487.839400000870228 ], [ 361484.2533999979496, 259487.167899999767542 ], [ 361491.079599998891354, 259487.485399998724461 ], [ 361498.540899999439716, 259486.691599998623133 ], [ 361502.827200002968311, 259486.374099999666214 ], [ 361505.367200002074242, 259485.104100000113249 ], [ 361507.52250000089407, 259484.363299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91108727, "LATITUDE": 18.36467365, "OBJECTID_1": 5222, "PARCEL_NO_": "103001030300", "Tax_Legal_": "C-2-E&C-5-B-10(aka 76)LOVENLUND GREAT NORTHSIDE QTR", "Name": "SERRANT, JURYEL J", "Address": "PO BOX 306171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 109300, "Improved_V": 490700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.26839807900001, "SHAPE_Area": 1415.69976165 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360896.402999997138977, 259463.690600000321865 ], [ 360861.785499997437, 259457.074499998241663 ], [ 360851.825699999928474, 259490.345800001174212 ], [ 360858.247400000691414, 259493.775800000876188 ], [ 360900.159500002861023, 259496.018699999898672 ], [ 360899.387299999594688, 259492.001600001007318 ], [ 360897.004299998283386, 259487.760200001299381 ], [ 360897.087099999189377, 259478.050599999725819 ], [ 360896.402999997138977, 259463.690600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103021500", "MAP": "C9-205-T75", "PARCEL_NAM": "16", "ACRE": ".33", "LONGITUDE": -64.96131914, "LATITUDE": 18.36439076, "OBJECTID_1": 431, "PARCEL_NO_": "101103021500", "Tax_Legal_": "DOROTHEA REM OF 16 LT. NORTHSIDE", "Name": "SANTA SHORE SPA", "Address": "PO Box 696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 145400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.09333926299999, "SHAPE_Area": 1755.4996705599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355625.152900002896786, 259371.152100000530481 ], [ 355626.075900003314018, 259369.892099998891354 ], [ 355579.066399998962879, 259387.265599999576807 ], [ 355537.749700002372265, 259402.535199999809265 ], [ 355537.259099997580051, 259404.459399998188019 ], [ 355533.447999998927116, 259439.851300001144409 ], [ 355548.861400000751019, 259429.000599998980761 ], [ 355587.803599998354912, 259401.24379999935627 ], [ 355592.668399997055531, 259398.117300000041723 ], [ 355608.89360000193119, 259386.639899998903275 ], [ 355625.152900002896786, 259371.152100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030100", "MAP": "D9-1492-T79", "PARCEL_NAM": "C-6-F", "ACRE": ".36", "LONGITUDE": -64.91031384, "LATITUDE": 18.36457567, "OBJECTID_1": 5220, "PARCEL_NO_": "103001030100", "Tax_Legal_": "LOVENLUND C-6-F AKA 96 GT. NORTHSIDE", "Name": "ROBERT SCHMIDT DEVELOPMENT CORPORATION", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.37535824899999, "SHAPE_Area": 1421.4023741200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360979.566500000655651, 259451.072399999946356 ], [ 360961.14360000193119, 259436.567200001329184 ], [ 360952.133900001645088, 259452.958799999207258 ], [ 360932.537799999117851, 259481.507100000977516 ], [ 360939.753300003707409, 259486.421399999409914 ], [ 360963.86710000038147, 259495.484600000083447 ], [ 360979.566500000655651, 259451.072399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701011800", "MAP": "D9-212-T59", "PARCEL_NAM": "16-A", "ACRE": "1.03", "LONGITUDE": -64.96037228, "LATITUDE": 18.36423335, "OBJECTID_1": 2791, "PARCEL_NO_": "102701011800", "Tax_Legal_": "16A ESTATE DOROTHEA NO.6 LITTLE NORTHSIDE QTR", "Name": "JAMES MOBLEY JR & NANCY DAUGHTERY COMBS LIV TR", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83700, "Improved_V": 297000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.62133003999998, "SHAPE_Area": 3853.8361971300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355701.730999998748302, 259374.311900001019239 ], [ 355678.694200001657009, 259350.445700000971556 ], [ 355657.159599997103214, 259358.40430000051856 ], [ 355649.284800000488758, 259361.314599998295307 ], [ 355652.770999997854233, 259345.503899998962879 ], [ 355651.152699999511242, 259348.144600000232458 ], [ 355641.550200000405312, 259364.173099998384714 ], [ 355639.700699999928474, 259367.260400000959635 ], [ 355633.991700001060963, 259374.813000001013279 ], [ 355622.59910000115633, 259386.963199999183416 ], [ 355675.481700003147125, 259429.729299999773502 ], [ 355703.144000001251698, 259397.754900000989437 ], [ 355705.62950000166893, 259389.964800000190735 ], [ 355706.486100003123283, 259384.061200000345707 ], [ 355706.282200001180172, 259383.401299998164177 ], [ 355704.91669999808073, 259378.982099998742342 ], [ 355701.730999998748302, 259374.311900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94312109000001, "LATITUDE": 18.36438088, "OBJECTID_1": 3786, "PARCEL_NO_": "102801021100", "Tax_Legal_": "ST PETER 13-1&4 LITTLE NORTHSIDE", "Name": "QUERRARD JR, LAWRENCE", "Address": "7433 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 405100, "Improved_V": 13700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.62740222299999, "SHAPE_Area": 1596.2879263 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357524.911399997770786, 259376.568199999630451 ], [ 357516.284699998795986, 259348.0 ], [ 357490.535599999129772, 259436.237399999052286 ], [ 357445.326300002634525, 259442.411299999803305 ], [ 357452.484200000762939, 259454.079999998211861 ], [ 357466.159199997782707, 259457.991599999368191 ], [ 357478.210699997842312, 259463.156500000506639 ], [ 357502.718400001525879, 259425.993500001728535 ], [ 357503.551600001752377, 259422.833999998867512 ], [ 357502.795699998736382, 259416.917100001126528 ], [ 357505.282899998128414, 259408.916000001132488 ], [ 357510.174800001084805, 259402.623199999332428 ], [ 357511.00450000166893, 259399.885800000280142 ], [ 357512.629699997603893, 259398.421399999409914 ], [ 357524.911399997770786, 259376.568199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91128329, "LATITUDE": 18.36457945, "OBJECTID_1": 5222, "PARCEL_NO_": "103001030300", "Tax_Legal_": "C-2-E&C-5-B-10(aka 76)LOVENLUND GREAT NORTHSIDE QTR", "Name": "SERRANT, JURYEL J", "Address": "PO BOX 306171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 109300, "Improved_V": 490700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.794304695700006, "SHAPE_Area": 141.61177594599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360851.825699999928474, 259490.345800001174212 ], [ 360861.785499997437, 259457.074499998241663 ], [ 360853.734999999403954, 259455.530999999493361 ], [ 360851.825699999928474, 259490.345800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90492891, "LATITUDE": 18.36452126, "OBJECTID_1": 5347, "PARCEL_NO_": "103002031000", "Tax_Legal_": "C-16-C LOVENLUND(aka 115) NO.2 GREAT NORTHSIDE QTR", "Name": "CUPOLO, MICHAEL J. & CAROL A.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165000, "Improved_V": 637600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.24023124499999, "SHAPE_Area": 1216.0006603100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361545.857799999415874, 259476.296100001782179 ], [ 361556.776500001549721, 259468.673300001770258 ], [ 361549.661799997091293, 259451.938700001686811 ], [ 361498.80290000140667, 259458.699599999934435 ], [ 361507.52250000089407, 259484.363299999386072 ], [ 361515.527199998497963, 259481.611600000411272 ], [ 361525.846000000834465, 259479.230399999767542 ], [ 361533.148500002920628, 259477.484099999070168 ], [ 361537.593500003218651, 259477.00789999961853 ], [ 361539.9746999964118, 259476.84910000115633 ], [ 361545.857799999415874, 259476.296100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702027400", "MAP": "D9-5661-T94", "PARCEL_NAM": "11B-4", "ACRE": ".52", "LONGITUDE": -64.95126486, "LATITUDE": 18.36467354, "OBJECTID_1": 3050, "PARCEL_NO_": "102702027400", "Tax_Legal_": "HULL 11-B-4 LITTLE NORTHSIDE", "Name": "BLAK, SOREN & GRACE", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 83500, "Improved_V": 74200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.11843990700001, "SHAPE_Area": 2439.1809338100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356679.370800003409386, 259431.287200000137091 ], [ 356671.089800000190735, 259426.690900001674891 ], [ 356665.374799996614456, 259427.11430000141263 ], [ 356645.478000000119209, 259428.384300000965595 ], [ 356631.508000001311302, 259426.690900001674891 ], [ 356612.457999996840954, 259423.939300000667572 ], [ 356600.989600002765656, 259423.087000001221895 ], [ 356596.957900002598763, 259450.455400001257658 ], [ 356594.904500000178814, 259463.562300000339746 ], [ 356636.919299997389317, 259464.339000001549721 ], [ 356652.557499997317791, 259455.132399998605251 ], [ 356660.676399998366833, 259448.654899999499321 ], [ 356672.873599998652935, 259436.72239999845624 ], [ 356677.738399997353554, 259433.595800001174212 ], [ 356679.370800003409386, 259431.287200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103032100", "MAP": "A9-394-T91", "PARCEL_NAM": "13", "ACRE": "2.5", "LONGITUDE": -64.96818915, "LATITUDE": 18.36388984, "OBJECTID_1": 457, "PARCEL_NO_": "101103032100", "Tax_Legal_": "NELTJBERG/EASTERN PT 13 LT. NORTHSIDE", "Name": "COOPEE, JEAN-PAUL", "Address": "PO Box 303893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 172700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 515.42476255999998, "SHAPE_Area": 10978.9794186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354799.681999996304512, 259436.378899998962879 ], [ 354849.129600003361702, 259405.963899999856949 ], [ 354840.258400000631809, 259406.102400001138449 ], [ 354839.498800002038479, 259400.607799999415874 ], [ 354837.106899999082088, 259397.421799998730421 ], [ 354835.497800000011921, 259396.986400000751019 ], [ 354835.566200003027916, 259388.965399999171495 ], [ 354838.798600003123283, 259388.14750000089407 ], [ 354842.189300000667572, 259368.754700001329184 ], [ 354846.280199997127056, 259361.822000000625849 ], [ 354853.5945999994874, 259355.126899998635054 ], [ 354874.648599997162819, 259344.744600001722574 ], [ 354885.159400001168251, 259341.453099999576807 ], [ 354893.233300000429153, 259340.252599999308586 ], [ 354901.294699996709824, 259340.529699999839067 ], [ 354919.796700000762939, 259345.747400000691414 ], [ 354915.410199999809265, 259292.727000001817942 ], [ 354915.917900003492832, 259282.402499999850988 ], [ 354848.666599996387959, 259285.063700001686811 ], [ 354788.571000002324581, 259320.81980000063777 ], [ 354783.449000000953674, 259354.13060000166297 ], [ 354791.15429999679327, 259396.201299998909235 ], [ 354797.388999998569489, 259421.583599999547005 ], [ 354799.681999996304512, 259436.378899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103032200", "MAP": "A9-394-T91", "PARCEL_NAM": "14", "ACRE": "2.1", "LONGITUDE": -64.96756884, "LATITUDE": 18.36435, "OBJECTID_1": 458, "PARCEL_NO_": "101103032200", "Tax_Legal_": "NELTJBERG/EASTERN PT 14 LT. NORTHSIDE", "Name": "COOPEE, JEAN-PAUL", "Address": "PO Box 303893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 158300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 508.87878230199999, "SHAPE_Area": 9731.1004384999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354849.129600003361702, 259405.963899999856949 ], [ 354799.681999996304512, 259436.378899998962879 ], [ 354910.22240000218153, 259428.417700000107288 ], [ 354929.509099997580051, 259436.174899999052286 ], [ 354931.967600002884865, 259431.550999999046326 ], [ 354937.660400003194809, 259425.897999998182058 ], [ 354947.397299997508526, 259418.800500001758337 ], [ 354970.087300002574921, 259405.687300000339746 ], [ 354986.335799999535084, 259391.465999998152256 ], [ 355007.530100002884865, 259364.619500000029802 ], [ 355006.777699999511242, 259358.280499998480082 ], [ 355004.36599999666214, 259357.416400000452995 ], [ 354996.288500003516674, 259359.039000000804663 ], [ 354972.808300003409386, 259370.245900001376867 ], [ 354964.729000002145767, 259372.079599998891354 ], [ 354959.892899997532368, 259371.828899998217821 ], [ 354955.87219999730587, 259370.529500000178814 ], [ 354948.653099998831749, 259366.037399999797344 ], [ 354947.859399996697903, 259364.553300000727177 ], [ 354943.853000000119209, 259361.565200001001358 ], [ 354932.602399997413158, 259357.040100000798702 ], [ 354919.712200000882149, 259355.668099999427795 ], [ 354902.828199997544289, 259349.830299999564886 ], [ 354892.3496999964118, 259349.322399999946356 ], [ 354878.609999999403954, 259353.00959999859333 ], [ 354854.305600002408028, 259366.320700000971556 ], [ 354850.214699998497963, 259373.253299999982119 ], [ 354849.129600003361702, 259405.963899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902030300", "MAP": "D9-3276-T85", "PARCEL_NAM": "11-2", "ACRE": "20.63", "LONGITUDE": -64.91788296, "LATITUDE": 18.36300989, "OBJECTID_1": 4713, "PARCEL_NO_": "102902030300", "Tax_Legal_": "11-2,3,4&13 ESTATE PETERBORG GT. NORTHSIDE", "Name": "THE NATURE CONSERVANCY", "Address": "3052 Estate Little Princess", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 1274100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1470.48515288, "SHAPE_Area": 89598.4030719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360314.182800002396107, 259240.387299999594688 ], [ 360296.306900002062321, 259004.532999999821186 ], [ 360295.918700002133846, 259004.353999998420477 ], [ 360293.907799996435642, 259006.597100000828505 ], [ 360294.674500003457069, 259011.247400000691414 ], [ 360292.998999997973442, 259018.622000001370907 ], [ 360286.397399999201298, 259036.299800001084805 ], [ 360278.258799999952316, 259045.09910000115633 ], [ 360269.349799998104572, 259049.670299999415874 ], [ 360247.539800003170967, 259054.135800000280142 ], [ 360241.069499999284744, 259056.404899999499321 ], [ 360229.730800002813339, 259062.222699999809265 ], [ 360217.548000000417233, 259072.466600000858307 ], [ 360198.801399998366833, 259095.955600000917912 ], [ 360193.106799997389317, 259101.819699998944998 ], [ 360177.610699996352196, 259122.379999998956919 ], [ 360173.521600000560284, 259129.101500000804663 ], [ 360171.899999998509884, 259130.143699999898672 ], [ 360168.622599996626377, 259136.238600000739098 ], [ 360166.999099999666214, 259137.491900000721216 ], [ 360165.350599996745586, 259141.700300000607967 ], [ 360162.078599996864796, 259147.161899998784065 ], [ 360152.282300002872944, 259161.225000001490116 ], [ 360144.134700000286102, 259171.079700000584126 ], [ 360130.303300000727177, 259185.532000001519918 ], [ 360118.939400002360344, 259194.304900001734495 ], [ 360108.416000001132488, 259199.073899999260902 ], [ 360093.05290000140667, 259204.014400001615286 ], [ 360083.321400001645088, 259210.478700000792742 ], [ 360062.971199996769428, 259232.899099998176098 ], [ 360058.09910000115633, 259236.870000001043081 ], [ 360025.470799997448921, 259280.721500001847744 ], [ 360014.074600003659725, 259293.2939000017941 ], [ 360012.456500001251698, 259293.913899999111891 ], [ 360010.824100002646446, 259296.222600001841784 ], [ 360009.20610000193119, 259296.842599999159575 ], [ 360001.891800001263618, 259303.53770000115037 ], [ 359982.430600002408028, 259316.255199998617172 ], [ 359973.5, 259323.359299998730421 ], [ 359965.377499997615814, 259330.258900001645088 ], [ 359956.416400000452995, 259340.951299998909235 ], [ 359953.948899999260902, 259346.63060000166297 ], [ 359953.079599998891354, 259354.011799998581409 ], [ 359954.366800002753735, 259392.23030000180006 ], [ 359956.686800003051758, 259403.859400000423193 ], [ 359958.285099998116493, 259405.561200000345707 ], [ 359970.1621999964118, 259431.200800001621246 ], [ 359974.170400001108646, 259433.977800000458956 ], [ 360014.34570000320673, 259450.771899998188019 ], [ 360019.181800000369549, 259451.022599998861551 ], [ 360029.687200002372265, 259448.36430000141263 ], [ 360032.912500001490116, 259448.390700001269579 ], [ 360036.933300003409386, 259449.690200001001358 ], [ 360064.133900001645088, 259475.032999999821186 ], [ 360066.545699998736382, 259475.897100001573563 ], [ 360069.776299998164177, 259475.290199998766184 ], [ 360072.241999998688698, 259469.822000000625849 ], [ 360067.477799996733665, 259461.128100000321865 ], [ 360062.686700001358986, 259455.600499998778105 ], [ 360041.861100003123283, 259439.175799999386072 ], [ 360040.280799999833107, 259435.363200001418591 ], [ 360039.544600002467632, 259427.124600000679493 ], [ 360041.997699998319149, 259423.133900001645088 ], [ 360048.478799998760223, 259419.598299998790026 ], [ 360053.316699996590614, 259419.637899998575449 ], [ 360104.011799998581409, 259432.085200000554323 ], [ 360110.433600001037121, 259435.5152000002563 ], [ 360116.833700001239777, 259441.478199999779463 ], [ 360123.192500002682209, 259452.296000000089407 ], [ 360125.526900000870228, 259462.2364999987185 ], [ 360127.00110000371933, 259478.50279999896884 ], [ 360181.01860000193119, 259479.578200001269579 ], [ 360208.431500002741814, 259480.013599999248981 ], [ 360314.182800002396107, 259240.387299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702027300", "MAP": "D9-5661-T94", "PARCEL_NAM": "11B-3", "ACRE": ".575", "LONGITUDE": -64.95181173, "LATITUDE": 18.36462862, "OBJECTID_1": 3049, "PARCEL_NO_": "102702027300", "Tax_Legal_": "HULL 11-B-3 LITTLE NORTHSIDE", "Name": "BLAK, SOREN & GRACE", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 90300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.312552076, "SHAPE_Area": 2668.9718002200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356596.957900002598763, 259450.455400001257658 ], [ 356602.695200003683567, 259411.509300000965595 ], [ 356550.722300000488758, 259413.504799999296665 ], [ 356544.408500000834465, 259446.112900000065565 ], [ 356541.222000002861023, 259462.570000000298023 ], [ 356594.904500000178814, 259463.562300000339746 ], [ 356596.957900002598763, 259450.455400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91669099000001, "LATITUDE": 18.36400773, "OBJECTID_1": 4713, "PARCEL_NO_": "102902030300", "Tax_Legal_": "11-2,3,4&13 ESTATE PETERBORG GT. NORTHSIDE", "Name": "THE NATURE CONSERVANCY", "Address": "3052 Estate Little Princess", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 1274100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 622.61660595199999, "SHAPE_Area": 14749.811298000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360330.21169999986887, 259447.312600001692772 ], [ 360329.836099997162819, 259446.916299998760223 ], [ 360314.182800002396107, 259240.387299999594688 ], [ 360208.431500002741814, 259480.013599999248981 ], [ 360235.039800003170967, 259480.2314000017941 ], [ 360283.431100003421307, 259479.14979999884963 ], [ 360330.432700000703335, 259478.286499999463558 ], [ 360330.582400001585484, 259477.887299999594688 ], [ 360330.21169999986887, 259447.312600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90751053, "LATITUDE": 18.36452828, "OBJECTID_1": 5338, "PARCEL_NO_": "103002030100", "Tax_Legal_": "LOVENLUND C-5-B-22 AKA 103 GT NORTHSIDE QRT", "Name": "VARGA, STEPHEN & PATRICIA J", "Address": "PO Box 502206", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 125900, "Improved_V": 347000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.995533679, "SHAPE_Area": 1013.58620539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361268.829499997198582, 259477.293400000780821 ], [ 361269.126199997961521, 259442.465399999171495 ], [ 361240.007200002670288, 259452.992899999022484 ], [ 361240.50959999859333, 259488.671799998730421 ], [ 361268.829499997198582, 259477.293400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90960705000001, "LATITUDE": 18.36450998, "OBJECTID_1": 5251, "PARCEL_NO_": "103001033300", "Tax_Legal_": "LOVENLUND C-6-J 98 GT.NORTHSIDE", "Name": "COOK, MICHAEL & MELIA E.", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 112600, "Improved_V": 516900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.23589112600001, "SHAPE_Area": 1308.38262487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361057.730200000107288, 259457.411699999123812 ], [ 361019.998999997973442, 259437.682199999690056 ], [ 361007.692100003361702, 259462.490499999374151 ], [ 361016.500399999320507, 259469.739799998700619 ], [ 361047.007200002670288, 259485.610399998724461 ], [ 361057.730200000107288, 259457.411699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9497769, "LATITUDE": 18.36461529, "OBJECTID_1": 608, "PARCEL_NO_": "101104024000", "Tax_Legal_": "HULL ESTATE 11G-1 No.4 LITTLE NORTHSIDE QTR.", "Name": "SCARING, DENISE", "Address": "2115 Central Dr S", "City": "East Meadow", "State": "New York", "Zip": 11554, "Country": "United States", "Land_Value": 122400, "Improved_V": 77500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.189333002, "SHAPE_Area": 916.31174492599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356806.006800003349781, 259427.046300001442432 ], [ 356801.991499997675419, 259425.113600000739098 ], [ 356797.1554000005126, 259424.862900000065565 ], [ 356764.850699998438358, 259430.720199998468161 ], [ 356767.115000002086163, 259448.892799999564886 ], [ 356809.039700001478195, 259449.658100001513958 ], [ 356806.006800003349781, 259427.046300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95767026, "LATITUDE": 18.3645977, "OBJECTID_1": 3103, "PARCEL_NO_": "102702040700", "Tax_Legal_": "BONNE RESOLUTION 15-10 & 17 LITTLE NORTHSIDE QUARTER", "Name": "MCDONNELL, REBECCA L. & EMILY R. MEAD", "Address": "7604 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34500, "Improved_V": 221400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.398882918, "SHAPE_Area": 924.22695977299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355977.871799997985363, 259426.390099998563528 ], [ 355965.031900003552437, 259419.107799999415874 ], [ 355953.811899997293949, 259410.99439999833703 ], [ 355923.744599997997284, 259438.190499998629093 ], [ 355931.800499998033047, 259439.10080000013113 ], [ 355937.441100001335144, 259439.569200001657009 ], [ 355968.059399999678135, 259442.352899998426437 ], [ 355977.871799997985363, 259426.390099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95870041000001, "LATITUDE": 18.36445313, "OBJECTID_1": 2841, "PARCEL_NO_": "102701020400", "Tax_Legal_": "BONNE RESOLUTION 14-69 LT. NORTHSIDE", "Name": "FRANCIS, NIRONE & SIMONE", "Address": "PO Box 304952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37900, "Improved_V": 303200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.26138623700001, "SHAPE_Area": 1409.1493614000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355848.397100001573563, 259385.222600001841784 ], [ 355820.858400002121925, 259399.562699999660254 ], [ 355828.76690000295639, 259417.781500000506639 ], [ 355842.321400001645088, 259435.835400000214577 ], [ 355846.309799998998642, 259440.934300001710653 ], [ 355869.034000001847744, 259423.810600001364946 ], [ 355863.458099998533726, 259415.743400000035763 ], [ 355861.868900001049042, 259412.986200001090765 ], [ 355848.397100001573563, 259385.222600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801020400", "MAP": "G9-3069-T80", "PARCEL_NAM": "13-1B-A", "ACRE": ".51", "LONGITUDE": -64.94318215, "LATITUDE": 18.36398437, "OBJECTID_1": 3779, "PARCEL_NO_": "102801020400", "Tax_Legal_": "ST.PETER ESTATE 13-1B-A GT.NORTHSIDE QTR.", "Name": "QUERRARD, LAWRENCE J", "Address": "7433 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.71133461599999, "SHAPE_Area": 2799.14550844 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357457.017499998211861, 259395.221999999135733 ], [ 357497.336900003254414, 259412.930500000715256 ], [ 357516.284699998795986, 259348.0 ], [ 357461.0050999969244, 259343.658300001174212 ], [ 357460.64190000295639, 259348.388900000602007 ], [ 357462.924199998378754, 259364.450699999928474 ], [ 357460.305699996650219, 259387.860700000077486 ], [ 357457.017499998211861, 259395.221999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91062542, "LATITUDE": 18.3643647, "OBJECTID_1": 5221, "PARCEL_NO_": "103001030200", "Tax_Legal_": "LOVENLUND C-6-E AKA 87- GT. NORTHSIDE", "Name": "SWEENEY, DAVID & JANET", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 129200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.04916921700001, "SHAPE_Area": 1877.90022662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360952.133900001645088, 259452.958799999207258 ], [ 360933.709200002253056, 259438.664700001478195 ], [ 360924.438000001013279, 259391.092799998819828 ], [ 360919.506599999964237, 259402.02930000051856 ], [ 360912.055600002408028, 259424.766399998217821 ], [ 360907.880199998617172, 259441.619699999690056 ], [ 360905.326399996876717, 259457.430900000035763 ], [ 360932.537799999117851, 259481.507100000977516 ], [ 360952.133900001645088, 259452.958799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203021100", "MAP": "D9-2726-T84", "PARCEL_NAM": "23C-1", "ACRE": ".24", "LONGITUDE": -64.94612891, "LATITUDE": 18.36458683, "OBJECTID_1": 791, "PARCEL_NO_": "101203021100", "Tax_Legal_": "23C-1 ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, ALAN GERARD", "Address": "7489 St Peter 23D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 145800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.45565007, "SHAPE_Area": 946.31962100800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357190.019400000572205, 259424.328600000590086 ], [ 357157.591899998486042, 259423.402800001204014 ], [ 357155.857500001788139, 259452.325899999588728 ], [ 357164.406800001859665, 259452.327399998903275 ], [ 357189.894000001251698, 259452.331700000911951 ], [ 357190.019400000572205, 259424.328600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95789696, "LATITUDE": 18.36448936, "OBJECTID_1": 3105, "PARCEL_NO_": "102702040900", "Tax_Legal_": "BONNE RESOLUTIION 14-44 LITTLE NORTHSIDE", "Name": "J&E COLBY LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40800, "Improved_V": 184700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.81117964699999, "SHAPE_Area": 974.01003835999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355935.396200001239777, 259395.644999999552965 ], [ 355909.39639999717474, 259418.652499999850988 ], [ 355914.929099999368191, 259431.785599999129772 ], [ 355911.658900000154972, 259437.036100000143051 ], [ 355923.744599997997284, 259438.190499998629093 ], [ 355953.811899997293949, 259410.99439999833703 ], [ 355935.396200001239777, 259395.644999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90428137000001, "LATITUDE": 18.36451846, "OBJECTID_1": 5350, "PARCEL_NO_": "103002031300", "Tax_Legal_": "LOVENLUND C-14 53B GT. NORTHSIDE", "Name": "JELOVSEK, SANDRA B. & FREDERIC", "Address": "112 Chestnut Ridge Dr", "City": "Jonesborough", "State": "Tennessee", "Zip": 37865, "Country": "United States", "Land_Value": 169800, "Improved_V": 423300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.40403182, "SHAPE_Area": 1576.4610123 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361600.200499996542931, 259482.749800000339746 ], [ 361625.23759999871254, 259478.099500000476837 ], [ 361618.954300001263618, 259458.416400000452995 ], [ 361607.81700000166893, 259440.593400001525879 ], [ 361557.523500002920628, 259475.645500000566244 ], [ 361557.500100001692772, 259478.389499999582767 ], [ 361559.101999998092651, 259479.669199999421835 ], [ 361583.26799999922514, 259482.611200001090765 ], [ 361585.703100003302097, 259480.731300000101328 ], [ 361593.771600000560284, 259480.164000000804663 ], [ 361595.355400003492832, 259483.554499998688698 ], [ 361600.200499996542931, 259482.749800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002031900", "MAP": "D9-8544-T011", "PARCEL_NAM": "D-5", "ACRE": ".50", "LONGITUDE": -64.90245704, "LATITUDE": 18.36427261, "OBJECTID_1": 5356, "PARCEL_NO_": "103002031900", "Tax_Legal_": "CONSOLIDATED D-5 LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "RAINBOW ECOLOGICAL LIVING TRUST", "Address": "1500 Bay Road #1538", "City": "Miami Beach", "State": "Florida", "Zip": 331393252, "Country": "United States", "Land_Value": 250500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.478921896, "SHAPE_Area": 1720.0311529600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361797.478399999439716, 259421.247400000691414 ], [ 361781.521200001239777, 259401.274000000208616 ], [ 361775.82490000128746, 259407.34910000115633 ], [ 361762.002499997615814, 259420.745999999344349 ], [ 361777.19650000333786, 259435.646899998188019 ], [ 361792.896600000560284, 259485.80460000038147 ], [ 361796.939000003039837, 259484.571100000292063 ], [ 361800.995700001716614, 259481.649000000208616 ], [ 361808.324400000274181, 259473.2652000002563 ], [ 361797.478399999439716, 259421.247400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90706754, "LATITUDE": 18.36438608, "OBJECTID_1": 5340, "PARCEL_NO_": "103002030300", "Tax_Legal_": "LOVENLUND C-5-B-23 AKA 104 GT NORTHSIDE QRT", "Name": "NOVOA, JOSE I. & SILVIA M.", "Address": "2137 Hickory Trce", "City": "Mabank", "State": "Texas", "Zip": 75156, "Country": "United States", "Land_Value": 184400, "Improved_V": 594300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.11062509600001, "SHAPE_Area": 2036.78340998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361341.64750000089407, 259448.547400001436472 ], [ 361342.608499996364117, 259430.401200000196695 ], [ 361284.494699999690056, 259436.891699999570847 ], [ 361269.126199997961521, 259442.465399999171495 ], [ 361268.829499997198582, 259477.293400000780821 ], [ 361341.64750000089407, 259448.547400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801021100", "MAP": "A9-115-T69", "PARCEL_NAM": "13-1", "ACRE": null, "LONGITUDE": -64.94360696, "LATITUDE": 18.36354272, "OBJECTID_1": 3786, "PARCEL_NO_": "102801021100", "Tax_Legal_": "ST PETER 13-1&4 LITTLE NORTHSIDE", "Name": "QUERRARD JR, LAWRENCE", "Address": "7433 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 405100, "Improved_V": 13700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 685.071104623, "SHAPE_Area": 7484.5249333800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357403.189999997615814, 259393.015900000929832 ], [ 357412.455300003290176, 259435.075899999588728 ], [ 357430.184399999678135, 259421.38910000026226 ], [ 357436.701399996876717, 259413.631999999284744 ], [ 357440.774300001561642, 259408.810199998319149 ], [ 357446.48870000243187, 259400.624299999326468 ], [ 357450.593999996781349, 259392.002999998629093 ], [ 357453.858800001442432, 259387.38569999858737 ], [ 357456.479099996387959, 259363.764699999243021 ], [ 357454.952799998223782, 259353.619699999690056 ], [ 357454.261600002646446, 259340.104100000113249 ], [ 357456.747000001370907, 259332.313900001347065 ], [ 357460.027999997138977, 259325.796900000423193 ], [ 357464.10809999704361, 259320.130800001323223 ], [ 357469.799099996685982, 259314.688900001347065 ], [ 357472.284500002861023, 259306.898800000548363 ], [ 357473.155599996447563, 259299.306499999016523 ], [ 357471.584299996495247, 259294.438499998301268 ], [ 357469.989699997007847, 259292.314500000327826 ], [ 357469.23369999974966, 259286.397700000554323 ], [ 357466.857900001108646, 259281.311999998986721 ], [ 357464.527099996805191, 259270.949400000274181 ], [ 357457.416000001132488, 259253.792599998414516 ], [ 357450.231100000441074, 259245.290100000798702 ], [ 357451.715999998152256, 259260.289900001138449 ], [ 357457.196599997580051, 259279.544199999421835 ], [ 357450.720899999141693, 259282.44649999961257 ], [ 357446.79900000244379, 259269.53770000115037 ], [ 357444.486199997365475, 259257.064300000667572 ], [ 357443.065999999642372, 259234.465599998831749 ], [ 357444.790100000798702, 259221.392000000923872 ], [ 357446.420699998736382, 259219.294399999082088 ], [ 357450.446900002658367, 259219.96059999987483 ], [ 357455.932800002396107, 259238.581700000911951 ], [ 357463.861100003123283, 259254.47859999909997 ], [ 357464.73030000180006, 259247.097500000149012 ], [ 357474.589500002563, 259225.646600000560284 ], [ 357464.359200000762939, 259196.009799998253584 ], [ 357452.160199999809265, 259208.153400000184774 ], [ 357442.378300003707409, 259220.527800001204014 ], [ 357436.667599998414516, 259228.291600000113249 ], [ 357428.473200000822544, 259243.634300000965595 ], [ 357430.022900000214577, 259251.035300001502037 ], [ 357430.7212999984622, 259263.706599999219179 ], [ 357430.566699996590614, 259281.859400000423193 ], [ 357427.829499997198582, 259319.200500000268221 ], [ 357417.89299999922514, 259349.727800000458956 ], [ 357412.034800000488758, 259374.800000000745058 ], [ 357406.270099997520447, 259388.896099999547005 ], [ 357403.189999997615814, 259393.015900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94039284, "LATITUDE": 18.36433596, "OBJECTID_1": 4026, "PARCEL_NO_": "102802010400", "Tax_Legal_": "LERKENLUND 1-11-A No.9 GREAT NORTHSIDE QTR.", "Name": "SPELL, ROLAND J. & BONNIE D", "Address": "PO Box 6662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 108300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.23133385, "SHAPE_Area": 1750.8399585300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357808.32880000025034, 259426.383900001645088 ], [ 357779.628799997270107, 259387.730000000447035 ], [ 357748.099899999797344, 259397.182199999690056 ], [ 357774.040299996733665, 259433.395399998873472 ], [ 357784.756899997591972, 259448.355799999088049 ], [ 357792.8462999984622, 259440.815499998629093 ], [ 357808.32880000025034, 259426.383900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95676805, "LATITUDE": 18.36447659, "OBJECTID_1": 3102, "PARCEL_NO_": "102702040600", "Tax_Legal_": "15-3 BONNE RESOLUTION LITTLE NORTHSIDE QUARTER", "Name": "BENTZ, KARIN A. (TRUSTEE)", "Address": "7605 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39100, "Improved_V": 238200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.778055634, "SHAPE_Area": 960.82186702499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356063.569300003349781, 259400.282600000500679 ], [ 356032.906000003218651, 259402.77589999884367 ], [ 356032.861100003123283, 259408.052799999713898 ], [ 356034.254299998283386, 259433.817699998617172 ], [ 356065.731100000441074, 259430.486699998378754 ], [ 356063.569300003349781, 259400.282600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801029700", "MAP": "D9-2070-T82", "PARCEL_NAM": "1-6-A", "ACRE": ".083", "LONGITUDE": -64.94133463, "LATITUDE": 18.36432442, "OBJECTID_1": 3840, "PARCEL_NO_": "102801029700", "Tax_Legal_": "1-6-A LERKENLUND GREAT NORTHSIDE QTR", "Name": "OBRIEN, KELLEY", "Address": "PO BOX 306656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.38908739300001, "SHAPE_Area": 768.23092882799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357709.782399997115135, 259446.264499999582767 ], [ 357687.50959999859333, 259410.407400000840425 ], [ 357678.791199997067451, 259392.604200001806021 ], [ 357653.718199998140335, 259401.475999999791384 ], [ 357709.782399997115135, 259446.264499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801028500", "MAP": "D9-1571-T80", "PARCEL_NAM": "1-4-A-3", "ACRE": ".5", "LONGITUDE": -64.94131282, "LATITUDE": 18.36413525, "OBJECTID_1": 3831, "PARCEL_NO_": "102801028500", "Tax_Legal_": "1-4-A-3 LERKENLUND GREAT NORTHSIDE QTR", "Name": "OBRIEN, KELLEY", "Address": "PO BOX 306656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86900, "Improved_V": 269500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.937786824, "SHAPE_Area": 2711.8273131699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357713.198299996554852, 259423.916499998420477 ], [ 357706.27589999884367, 259384.596500001847744 ], [ 357691.969099998474121, 259360.203600000590086 ], [ 357691.209499999880791, 259354.708999998867512 ], [ 357659.617700003087521, 259371.5489999987185 ], [ 357637.708800002932549, 259387.6239 ], [ 357638.464800000190735, 259393.540699999779463 ], [ 357641.641500003635883, 259399.266199998557568 ], [ 357644.044200003147125, 259401.185699999332428 ], [ 357644.832500003278255, 259403.303100001066923 ], [ 357653.718199998140335, 259401.475999999791384 ], [ 357678.791199997067451, 259392.604200001806021 ], [ 357687.50959999859333, 259410.407400000840425 ], [ 357709.782399997115135, 259446.264499999582767 ], [ 357713.160499997437, 259428.349199999123812 ], [ 357713.198299996554852, 259423.916499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90844781, "LATITUDE": 18.3644489, "OBJECTID_1": 5262, "PARCEL_NO_": "103001034400", "Tax_Legal_": "LOVENLUND C-6-0 AKA 109 GT NORTHSIDE", "Name": "HOFFMAN REVOCABLE TRUST", "Address": "3811 Lost Spring Dr", "City": "CALABASAS", "State": "California", "Zip": 91301, "Country": "United States", "Land_Value": 122000, "Improved_V": 592800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.978392746, "SHAPE_Area": 1338.3411344000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361136.923299998044968, 259437.583700001239777 ], [ 361134.222000002861023, 259470.703299999237061 ], [ 361175.320600003004074, 259473.783900000154972 ], [ 361175.608300000429153, 259440.011300001293421 ], [ 361136.923299998044968, 259437.583700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90797323, "LATITUDE": 18.36439514, "OBJECTID_1": 5264, "PARCEL_NO_": "103001034600", "Tax_Legal_": "C-6-P AKA 108 LOVENLUND NO 2 GREAT NORTHSIDE QTR", "Name": "WILD GINGER REVOCABLE TRUST", "Address": "216 Washington Ave", "City": "Santa Fe", "State": "New Mexico", "Zip": 87501, "Country": "United States", "Land_Value": 110400, "Improved_V": 424100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.82917576200001, "SHAPE_Area": 1763.2635972400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361240.007200002670288, 259452.992899999022484 ], [ 361239.405900001525879, 259428.923300001770258 ], [ 361206.269799999892712, 259437.729100000113249 ], [ 361175.608300000429153, 259440.011300001293421 ], [ 361175.320600003004074, 259473.783900000154972 ], [ 361240.007200002670288, 259452.992899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90609636000001, "LATITUDE": 18.36438904, "OBJECTID_1": 5343, "PARCEL_NO_": "103002030600", "Tax_Legal_": "LOVENLUND C-9 60 GT NORTHSIDE", "Name": "SHERRY, JOSEPH EDWARDS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 174700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.186586672, "SHAPE_Area": 1182.5143557900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361427.01240000128746, 259461.489500001072884 ], [ 361411.157600000500679, 259429.484600000083447 ], [ 361396.611699998378754, 259433.165300000458956 ], [ 361382.044100001454353, 259439.378800000995398 ], [ 361397.067299999296665, 259474.33219999819994 ], [ 361427.01240000128746, 259461.489500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90879756, "LATITUDE": 18.36442999, "OBJECTID_1": 5259, "PARCEL_NO_": "103001034100", "Tax_Legal_": "LOVENLUND C-6-N AKA 110 GT.NORTHSIDE", "Name": "BISCOE, JR. , BYRON W. & AVAIN M", "Address": "Nisky Center-", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.41599560899999, "SHAPE_Area": 1122.34528187 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361105.493299998342991, 259435.426699999719858 ], [ 361097.959600001573563, 259467.873399998992682 ], [ 361134.222000002861023, 259470.703299999237061 ], [ 361136.923299998044968, 259437.583700001239777 ], [ 361105.493299998342991, 259435.426699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95727912, "LATITUDE": 18.36436735, "OBJECTID_1": 3104, "PARCEL_NO_": "102702040800", "Tax_Legal_": "15-8 BONNE RESOLUTION LITTLE NORTHSIDE", "Name": "LEROY C JARVIS TRUST", "Address": "PO Box 9493", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44200, "Improved_V": 204100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.24455673899999, "SHAPE_Area": 1140.81512451 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356003.990299999713898, 259389.451400000602007 ], [ 355987.914399996399879, 259383.409200001507998 ], [ 355971.543600000441074, 259411.983899999409914 ], [ 355993.218699999153614, 259423.349300000816584 ], [ 355998.018799997866154, 259427.821600001305342 ], [ 356020.062600001692772, 259395.915800001472235 ], [ 356003.990299999713898, 259389.451400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95392678, "LATITUDE": 18.36437845, "OBJECTID_1": 3164, "PARCEL_NO_": "102702050900", "Tax_Legal_": "HULL 5E-9 LT.NORTHSIDE QTR.", "Name": "SIBILLY, RUBY & GOAD, STEPHEN", "Address": "PO Box 8203", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 65200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.869378668, "SHAPE_Area": 862.86817481100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356371.343299999833107, 259430.665899999439716 ], [ 356360.159199997782707, 259418.331000000238419 ], [ 356351.58110000193119, 259384.0636 ], [ 356333.81700000166893, 259386.873500000685453 ], [ 356341.601400002837181, 259419.656800001859665 ], [ 356348.770099997520447, 259430.059000000357628 ], [ 356371.343299999833107, 259430.665899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95372468, "LATITUDE": 18.36436102, "OBJECTID_1": 3163, "PARCEL_NO_": "102702050800", "Tax_Legal_": "HULL 5E-8 LITTLE NORTHSIDE", "Name": "LECUYER CORDERO, ANNETTE", "Address": "6043 Catlin Dr", "City": "Tampa", "State": "Florida", "Zip": 33647, "Country": "United States", "Land_Value": 39000, "Improved_V": 205400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.40000601599999, "SHAPE_Area": 1146.6859359699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356400.419100001454353, 259425.2043999992311 ], [ 356381.168300002813339, 259413.225600000470877 ], [ 356374.188400000333786, 259380.660100001841784 ], [ 356351.58110000193119, 259384.0636 ], [ 356360.159199997782707, 259418.331000000238419 ], [ 356371.343299999833107, 259430.665899999439716 ], [ 356400.419100001454353, 259425.2043999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95415213, "LATITUDE": 18.36438531, "OBJECTID_1": 3165, "PARCEL_NO_": "102702051000", "Tax_Legal_": "HULL 5E-10 LITTLE NORTHSIDE", "Name": "BRYAN, IVAN C. & LAURA C. TRUSTEES", "Address": "12702 Cedar Grove Ct", "City": "Humble", "State": "Texas", "Zip": 77346, "Country": "United States", "Land_Value": 37300, "Improved_V": 245000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.96756711699999, "SHAPE_Area": 1164.8993011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356333.81700000166893, 259386.873500000685453 ], [ 356318.475500002503395, 259389.281100001186132 ], [ 356305.554700002074242, 259391.497400000691414 ], [ 356312.565200001001358, 259420.474599998444319 ], [ 356324.584299996495247, 259429.438900001347065 ], [ 356348.770099997520447, 259430.059000000357628 ], [ 356341.601400002837181, 259419.656800001859665 ], [ 356333.81700000166893, 259386.873500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801010500", "MAP": "D9-4437-T88", "PARCEL_NAM": "11E-2", "ACRE": ".54", "LONGITUDE": -64.94917009, "LATITUDE": 18.36438161, "OBJECTID_1": 3687, "PARCEL_NO_": "102801010500", "Tax_Legal_": "HULL BAY 11E-2 LITTLE NORTHSIDE", "Name": "WILLEN, MARY C. & JAMES M.", "Address": "7435 LERKENLUND", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.69411431099999, "SHAPE_Area": 2457.2198996500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356887.240299999713898, 259426.934799998998642 ], [ 356883.493000000715256, 259390.800400000065565 ], [ 356862.716600000858307, 259396.057500001043081 ], [ 356840.213600002229214, 259387.218499999493361 ], [ 356833.67679999768734, 259397.297499999403954 ], [ 356823.101199999451637, 259408.187800001353025 ], [ 356810.938199996948242, 259416.1097999997437 ], [ 356808.495899997651577, 259418.833999998867512 ], [ 356807.669799998402596, 259421.149300001561642 ], [ 356836.587399996817112, 259434.262699998915195 ], [ 356887.240299999713898, 259426.934799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95438587, "LATITUDE": 18.36440727, "OBJECTID_1": 3166, "PARCEL_NO_": "102702051100", "Tax_Legal_": "5E-11 HULL LITTLE NORTHSIDE QUARTER", "Name": "BRYAN, GABY", "Address": "P O Box 12454", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 8010000, "Country": "United States", "Land_Value": 37300, "Improved_V": 147900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.69082426200001, "SHAPE_Area": 782.18630509699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356305.554700002074242, 259391.497400000691414 ], [ 356284.556400001049042, 259395.336300000548363 ], [ 356290.791199997067451, 259420.718499999493361 ], [ 356302.815700002014637, 259429.049600001424551 ], [ 356324.584299996495247, 259429.438900001347065 ], [ 356312.565200001001358, 259420.474599998444319 ], [ 356305.554700002074242, 259391.497400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95460889, "LATITUDE": 18.36442645, "OBJECTID_1": 3167, "PARCEL_NO_": "102702051200", "Tax_Legal_": "HULL 5E-12 LITTLE NORTHSIDE", "Name": "W B AND LORI THOMPSON TRUST", "Address": "PO Box 9217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.65646213100001, "SHAPE_Area": 831.54853178200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356284.556400001049042, 259395.336300000548363 ], [ 356259.523000001907349, 259399.564399998635054 ], [ 356264.956799998879433, 259424.306800000369549 ], [ 356271.409100003540516, 259424.148499999195337 ], [ 356272.193800002336502, 259426.688099998980761 ], [ 356275.404700003564358, 259428.403099998831749 ], [ 356302.815700002014637, 259429.049600001424551 ], [ 356290.791199997067451, 259420.718499999493361 ], [ 356284.556400001049042, 259395.336300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9091388, "LATITUDE": 18.36438779, "OBJECTID_1": 5256, "PARCEL_NO_": "103001033800", "Tax_Legal_": "LOVENLUND C-6-M AKA 111 GT NORTHSIDE", "Name": "BISCOE, JR. , BYRON W. & AVIAN M", "Address": "Nisky Center-", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109300, "Improved_V": 731500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.40589888400001, "SHAPE_Area": 1215.4510976900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361066.822700001299381, 259431.310499999672174 ], [ 361057.730200000107288, 259457.411699999123812 ], [ 361097.959600001573563, 259467.873399998992682 ], [ 361105.493299998342991, 259435.426699999719858 ], [ 361066.822700001299381, 259431.310499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032100", "MAP": "D9-8474-T010", "PARCEL_NAM": "D-9", "ACRE": ".52", "LONGITUDE": -64.90227188, "LATITUDE": 18.36407128, "OBJECTID_1": 5358, "PARCEL_NO_": "103002032100", "Tax_Legal_": "D-9 & D-10-1 ESTATE LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "PURKEY, JACKSON P.D. & ZIEBA, CHRISTINE", "Address": "4003 Raphune Hill Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 271900, "Improved_V": 617600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.08020480600001, "SHAPE_Area": 2014.53448359 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361823.332900002598763, 259396.091699998825788 ], [ 361799.832999996840954, 259383.646499998867512 ], [ 361781.521200001239777, 259401.274000000208616 ], [ 361797.478399999439716, 259421.247400000691414 ], [ 361808.324400000274181, 259473.2652000002563 ], [ 361811.578500002622604, 259469.914299998432398 ], [ 361815.669399999082088, 259462.981699999421835 ], [ 361818.970100000500679, 259454.142799999564886 ], [ 361819.828599996864796, 259448.028099998831749 ], [ 361816.720200002193451, 259434.281599998474121 ], [ 361819.999399997293949, 259427.975699998438358 ], [ 361824.050800003111362, 259425.686799999326468 ], [ 361828.091300003230572, 259424.66440000012517 ], [ 361832.929200001060963, 259424.703999999910593 ], [ 361823.332900002598763, 259396.091699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95830248, "LATITUDE": 18.36438677, "OBJECTID_1": 2844, "PARCEL_NO_": "102701020800", "Tax_Legal_": "BONNE RESOLUTION 14-64 & 65 LITTLE NORTHSIDE", "Name": "PILGRIM, ULRIC & LYNETTE", "Address": "GERS COMPLEX-3rd FLOOR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55700, "Improved_V": 173000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.22815142, "SHAPE_Area": 878.35639279700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355896.723700001835823, 259391.739900000393391 ], [ 355893.536200001835823, 259387.280799999833107 ], [ 355866.011900000274181, 259399.932300001382828 ], [ 355872.352700002491474, 259412.86089999973774 ], [ 355880.320600003004074, 259424.114000000059605 ], [ 355907.034999996423721, 259411.878199998289347 ], [ 355902.306800000369549, 259398.962799999862909 ], [ 355896.723700001835823, 259391.739900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030400", "MAP": "D9-1492-T79", "PARCEL_NAM": "C-5-B-9", "ACRE": null, "LONGITUDE": -64.91103292, "LATITUDE": 18.36437937, "OBJECTID_1": 5223, "PARCEL_NO_": "103001030400", "Tax_Legal_": "LOVENLUND C-2-F&C-5-B-9 77 GRT NORTHSIDE QRT", "Name": "DOWE, SHAWN J. & HADY", "Address": "PO BOX 12042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.433423469, "SHAPE_Area": 1020.81763423 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360900.666500002145767, 259436.494500000029802 ], [ 360894.251999996602535, 259432.220100000500679 ], [ 360871.725599996745586, 259426.125100001692772 ], [ 360861.785499997437, 259457.074499998241663 ], [ 360896.402999997138977, 259463.690600000321865 ], [ 360897.221900001168251, 259462.219700001180172 ], [ 360900.666500002145767, 259436.494500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90453919, "LATITUDE": 18.3642817, "OBJECTID_1": 5349, "PARCEL_NO_": "103002031200", "Tax_Legal_": "LOVENLUND C-16D 116 GT. NORTHSIDE", "Name": "SEAVIEW VILLA LLC", "Address": "250 W 57th St", "City": "New York", "State": "New York", "Zip": 10107, "Country": "United States", "Land_Value": 138300, "Improved_V": 933800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.127006274, "SHAPE_Area": 1631.7785738499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361536.996299996972084, 259424.181800000369549 ], [ 361549.661799997091293, 259451.938700001686811 ], [ 361556.776500001549721, 259468.673300001770258 ], [ 361594.903399996459484, 259441.965399999171495 ], [ 361608.706000000238419, 259430.890399999916553 ], [ 361608.72580000013113, 259428.568500000983477 ], [ 361536.996299996972084, 259424.181800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95350415, "LATITUDE": 18.36434201, "OBJECTID_1": 3162, "PARCEL_NO_": "102702050700", "Tax_Legal_": "HULL 5E-7 LITTLE NORTHSIDE", "Name": "MICHAEL VICTOR KIDDON REVOC TR", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 164700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.50553813100001, "SHAPE_Area": 1029.9228787100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356383.867700003087521, 259380.317099999636412 ], [ 356374.188400000333786, 259380.660100001841784 ], [ 356381.168300002813339, 259413.225600000470877 ], [ 356400.419100001454353, 259425.2043999992311 ], [ 356412.535300001502037, 259422.770399998873472 ], [ 356417.410999998450279, 259418.377399999648333 ], [ 356418.258699998259544, 259413.529199998825788 ], [ 356404.644799999892712, 259402.440900001674891 ], [ 356394.270700000226498, 259389.690400000661612 ], [ 356387.868699997663498, 259383.938400000333786 ], [ 356383.867700003087521, 259380.317099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91000082, "LATITUDE": 18.36423164, "OBJECTID_1": 5250, "PARCEL_NO_": "103001033200", "Tax_Legal_": "C-6-H LOVENLUND (aka 97) No.2 GREAT NORTHSIDE QTR", "Name": "NEWLAND FAMILY TRUST", "Address": "PO Box 812", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 180600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.157951118, "SHAPE_Area": 1662.2450796400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361007.692100003361702, 259462.490499999374151 ], [ 361019.998999997973442, 259437.682199999690056 ], [ 360979.20610000193119, 259398.718199998140335 ], [ 360965.349600002169609, 259416.125599998980761 ], [ 360964.523500002920628, 259418.440900001674891 ], [ 360966.859700001776218, 259428.170299999415874 ], [ 361007.692100003361702, 259462.490499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026000", "MAP": "F9-1744-T66", "PARCEL_NAM": "11-C", "ACRE": null, "LONGITUDE": -64.95018756, "LATITUDE": 18.36429273, "OBJECTID_1": 3037, "PARCEL_NO_": "102702026000", "Tax_Legal_": "HULL 11 4 LITTLE NORHTHSIDE", "Name": "PRYKE, ELIZABETH R", "Address": "248 Maplemere Ln", "City": "BLUFFTON", "State": "South Carolina", "Zip": 29909, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.257502845, "SHAPE_Area": 1117.8981603899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356775.406700000166893, 259383.566100001335144 ], [ 356776.193499997258186, 259381.491999998688698 ], [ 356742.680799998342991, 259393.8429000005126 ], [ 356716.725699998438358, 259403.408500000834465 ], [ 356705.449600003659725, 259407.5641999989748 ], [ 356706.554799996316433, 259414.694400001317263 ], [ 356713.046099998056889, 259414.300599999725819 ], [ 356765.647799998521805, 259411.109499998390675 ], [ 356770.793399997055531, 259395.727299999445677 ], [ 356775.406700000166893, 259383.566100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90542613, "LATITUDE": 18.36430115, "OBJECTID_1": 5346, "PARCEL_NO_": "103002030900", "Tax_Legal_": "LOVENLUND C-16-B(AKA 118) GT. NORTHSIDE", "Name": "PETER WILLIAM HOLMBERG REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 160100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.17181056699999, "SHAPE_Area": 1360.03991363 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361498.80290000140667, 259458.699599999934435 ], [ 361486.209399998188019, 259422.499499998986721 ], [ 361468.474200002849102, 259421.932199999690056 ], [ 361451.512800000607967, 259425.170899998396635 ], [ 361464.89469999819994, 259463.488299999386072 ], [ 361498.80290000140667, 259458.699599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030400", "MAP": "D9-1492-T79", "PARCEL_NAM": "C-2-F", "ACRE": null, "LONGITUDE": -64.91123592, "LATITUDE": 18.3643144, "OBJECTID_1": 5223, "PARCEL_NO_": "103001030400", "Tax_Legal_": "LOVENLUND C-2-F&C-5-B-9 77 GRT NORTHSIDE QRT", "Name": "DOWE, SHAWN J. & HADY", "Address": "PO BOX 12042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.922418826099999, "SHAPE_Area": 406.11471633100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360871.725599996745586, 259426.125100001692772 ], [ 360855.633500002324581, 259421.982599999755621 ], [ 360853.734999999403954, 259455.530999999493361 ], [ 360861.785499997437, 259457.074499998241663 ], [ 360871.725599996745586, 259426.125100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90583789, "LATITUDE": 18.36428749, "OBJECTID_1": 5344, "PARCEL_NO_": "103002030700", "Tax_Legal_": "C-10 ESTATE LOVENLUND GT NORTHSIDE", "Name": "PETER WILLIAM HOLMBERG REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 131200, "Improved_V": 708300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.290222013, "SHAPE_Area": 807.71959510500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361411.157600000500679, 259429.484600000083447 ], [ 361427.01240000128746, 259461.489500001072884 ], [ 361439.182599999010563, 259452.723200000822544 ], [ 361449.808499999344349, 259435.922699999064207 ], [ 361447.47410000115633, 259425.982200000435114 ], [ 361411.157600000500679, 259429.484600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90950691, "LATITUDE": 18.36427674, "OBJECTID_1": 5252, "PARCEL_NO_": "103001033400", "Tax_Legal_": "LOVENLUND C-6-K AKA 112 GT. NORTHSIDE", "Name": "BISCOE, JR. , BYRON W. & AVIAN M", "Address": "Nisky Center-", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.253209715, "SHAPE_Area": 1068.9039824399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361030.687799997627735, 259413.493999999016523 ], [ 361019.998999997973442, 259437.682199999690056 ], [ 361057.730200000107288, 259457.411699999123812 ], [ 361066.822700001299381, 259431.310499999672174 ], [ 361040.302500002086163, 259420.749800000339746 ], [ 361030.687799997627735, 259413.493999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90503026, "LATITUDE": 18.36427592, "OBJECTID_1": 5348, "PARCEL_NO_": "103002031100", "Tax_Legal_": "LOVENLUND C-16-E GT. NORTHSIDE", "Name": "FIRESTONE, JENNIFER", "Address": "6100 Leeward Way", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 160100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.95917325299999, "SHAPE_Area": 1657.3101969500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361486.209399998188019, 259422.499499998986721 ], [ 361498.80290000140667, 259458.699599999934435 ], [ 361549.661799997091293, 259451.938700001686811 ], [ 361536.996299996972084, 259424.181800000369549 ], [ 361486.209399998188019, 259422.499499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91047856, "LATITUDE": 18.36407262, "OBJECTID_1": 5226, "PARCEL_NO_": "103001030700", "Tax_Legal_": "C-6-D LOVENLUND (AKA 86) NO.2 GREAT NORTHSIDE QTR", "Name": "KATHERINE M. IRREV. TRUST", "Address": "PO Box 1301", "City": "Dillon", "State": "Montana", "Zip": 59725, "Country": "United States", "Land_Value": 119100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.93723404299999, "SHAPE_Area": 1660.11578639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360958.972800001502037, 259407.418600000441074 ], [ 360949.270099997520447, 259410.50560000166297 ], [ 360940.792599998414516, 259364.41780000180006 ], [ 360933.469300001859665, 259372.168299999088049 ], [ 360927.735200002789497, 259382.676100000739098 ], [ 360924.438000001013279, 259391.092799998819828 ], [ 360933.709200002253056, 259438.664700001478195 ], [ 360952.133900001645088, 259452.958799999207258 ], [ 360961.14360000193119, 259436.567200001329184 ], [ 360956.361400000751019, 259429.984200000762939 ], [ 360954.797399997711182, 259424.271899998188019 ], [ 360955.691799998283386, 259413.935600001364946 ], [ 360958.972800001502037, 259407.418600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95757903000001, "LATITUDE": 18.36422063, "OBJECTID_1": 3106, "PARCEL_NO_": "102702041000", "Tax_Legal_": "14-67 BONNE RESOLUTION LITTLE NORTHSIDE", "Name": "INDUSTRIOUS, JULIAN & FELICE", "Address": "P.O. BOX 4985", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56100, "Improved_V": 219000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.185403909, "SHAPE_Area": 1148.90024408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355963.823899999260902, 259371.60190000012517 ], [ 355953.413800001144409, 259363.072900000959635 ], [ 355941.105099998414516, 259388.092300001531839 ], [ 355958.712700001895428, 259403.646299999207258 ], [ 355971.543600000441074, 259411.983899999409914 ], [ 355987.914399996399879, 259383.409200001507998 ], [ 355969.42849999666214, 259376.291799999773502 ], [ 355963.823899999260902, 259371.60190000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94016793, "LATITUDE": 18.36412764, "OBJECTID_1": 4025, "PARCEL_NO_": "102802010300", "Tax_Legal_": "LERKENLUND 1-11-B GREAT NORTHSIDE", "Name": "ROSENBERG, FREDERICK D", "Address": "PO Box 8579", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 161700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.92156302699999, "SHAPE_Area": 1756.7092751499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357831.076300002634525, 259406.516199998557568 ], [ 357794.439099997282028, 259353.020700000226498 ], [ 357779.628799997270107, 259387.730000000447035 ], [ 357808.32880000025034, 259426.383900001645088 ], [ 357831.076300002634525, 259406.516199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801028400", "MAP": null, "PARCEL_NAM": "14-2", "ACRE": null, "LONGITUDE": -64.94443268000001, "LATITUDE": 18.36419206, "OBJECTID_1": 3830, "PARCEL_NO_": "102801028400", "Tax_Legal_": "14-2 ST PETER LITTLE NORTHSIDE", "Name": "BRYAN, TEDDY R. & ROBERTA L. (TRUSTEES)", "Address": "7482 Estate Barette", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 149700, "Improved_V": 150100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.56508587299999, "SHAPE_Area": 4447.4709939599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357385.368600003421307, 259372.271099999547005 ], [ 357362.364399999380112, 259354.948300000280142 ], [ 357353.292700000107288, 259360.386999998241663 ], [ 357313.612499997019768, 259380.116200000047684 ], [ 357319.769900001585484, 259414.574799999594688 ], [ 357322.082800000905991, 259427.048200000077486 ], [ 357323.171999998390675, 259434.447399999946356 ], [ 357353.446400001645088, 259436.998799998313189 ], [ 357353.483999997377396, 259432.582600001245737 ], [ 357355.123599998652935, 259429.42960000038147 ], [ 357365.668600000441074, 259422.127599999308586 ], [ 357377.027099996805191, 259413.988000001758337 ], [ 357390.847699999809265, 259400.802200000733137 ], [ 357395.752099998295307, 259393.031899999827147 ], [ 357401.255599997937679, 259384.234400000423193 ], [ 357385.368600003421307, 259372.271099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90752359, "LATITUDE": 18.36428167, "OBJECTID_1": 5339, "PARCEL_NO_": "103002030200", "Tax_Legal_": "LOVENLUND C-6-U 107\nGT NORTHSIDE", "Name": "BY, FANEL and WILCIA", "Address": "306 Shad Way", "City": "Kissimmee", "State": "Florida", "Zip": 34759, "Country": "United States", "Land_Value": 194100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.586587557, "SHAPE_Area": 586.61955454999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361269.126199997961521, 259442.465399999171495 ], [ 361269.259199999272823, 259426.845600001513958 ], [ 361239.405900001525879, 259428.923300001770258 ], [ 361240.007200002670288, 259452.992899999022484 ], [ 361269.126199997961521, 259442.465399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702051800", "MAP": "D9-5406-T92", "PARCEL_NAM": "6G-2", "ACRE": null, "LONGITUDE": -64.95520441, "LATITUDE": 18.36412115, "OBJECTID_1": 3173, "PARCEL_NO_": "102702051800", "Tax_Legal_": "HULL 6G-2 LITTLE NORTHSIDE QTR", "Name": "QUERRARD, CATHERINE & RODNEY", "Address": "7629 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 139400, "Improved_V": 269400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.19908078200001, "SHAPE_Area": 4342.4967047199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356244.61710000038147, 259401.975299999117851 ], [ 356253.315800003707409, 259332.562899999320507 ], [ 356251.2128000035882, 259333.8462999984622 ], [ 356243.920000001788139, 259338.008400000631809 ], [ 356222.086599998176098, 259345.217999998480082 ], [ 356209.925399996340275, 259352.928899999707937 ], [ 356202.645199999213219, 259355.613600000739098 ], [ 356196.99379999935627, 259356.411699999123812 ], [ 356192.163199998438358, 259355.527800001204014 ], [ 356190.875699996948242, 259354.635800000280142 ], [ 356161.744999997317791, 259404.228100001811981 ], [ 356182.007600001990795, 259406.680700000375509 ], [ 356243.434299997985363, 259411.413499999791384 ], [ 356244.61710000038147, 259401.975299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203013300", "MAP": "D9-9012-T015", "PARCEL_NAM": "1-3B", "ACRE": ".97", "LONGITUDE": -64.9424117, "LATITUDE": 18.36383287, "OBJECTID_1": 734, "PARCEL_NO_": "101203013300", "Tax_Legal_": "LERKENLUND 1-1,2,3&5 GREAT NORTHSIDE", "Name": "JULIE BEATRICE DEITRICH REVOC LIVING TRUST", "Address": "7477 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 552300, "Improved_V": 107800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.90799478100001, "SHAPE_Area": 3944.5569479300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357582.778099998831749, 259304.425599999725819 ], [ 357581.187100000679493, 259301.87950000166893 ], [ 357574.686200000345707, 259307.736900001764297 ], [ 357568.984499998390675, 259314.445199999958277 ], [ 357567.335900001227856, 259318.653599999845028 ], [ 357561.619800001382828, 259327.050599999725819 ], [ 357560.790100000798702, 259329.787999998778105 ], [ 357555.896499998867512, 259336.291799999773502 ], [ 357552.608300000429153, 259343.653200000524521 ], [ 357550.166000001132488, 259346.377399999648333 ], [ 357530.524999998509884, 259380.2027000002563 ], [ 357528.082699999213219, 259382.927000001072884 ], [ 357539.074299998581409, 259417.84739999845624 ], [ 357543.154500000178814, 259412.181200001388788 ], [ 357547.232799999415874, 259406.726199999451637 ], [ 357560.232699997723103, 259395.22239999845624 ], [ 357578.131599999964237, 259376.581599999219179 ], [ 357587.087300002574921, 259366.522399999201298 ], [ 357588.734099999070168, 259362.525100000202656 ], [ 357591.988099999725819, 259359.174199998378754 ], [ 357601.715999998152256, 259353.132100000977516 ], [ 357611.409800000488758, 259351.100499998778105 ], [ 357582.778099998831749, 259304.425599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90649847, "LATITUDE": 18.36418546, "OBJECTID_1": 5342, "PARCEL_NO_": "103002030500", "Tax_Legal_": "LOVENLUND C-5-B-24 AKA 105 GREAT NORTHSIDE", "Name": "HOLLAR, BRENDA", "Address": "PO Box 8897", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120000, "Improved_V": 420000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.691241037, "SHAPE_Area": 1047.79584273 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361342.745200000703335, 259414.359200000762939 ], [ 361342.608499996364117, 259430.401200000196695 ], [ 361341.64750000089407, 259448.547400001436472 ], [ 361361.875500001013279, 259440.48030000180006 ], [ 361396.685400001704693, 259424.510999999940395 ], [ 361383.83110000193119, 259418.917399998754263 ], [ 361364.504799999296665, 259415.803899999707937 ], [ 361342.745200000703335, 259414.359200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95706019000001, "LATITUDE": 18.364132, "OBJECTID_1": 3108, "PARCEL_NO_": "102702041200", "Tax_Legal_": "BONNE RESOLUTION 15-1 S S QTR", "Name": "RICHARDS, JEANNE G", "Address": "PO Box 303691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59500, "Improved_V": 180000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.50623529500001, "SHAPE_Area": 980.22376793800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356003.459100000560284, 259357.149700000882149 ], [ 356003.990299999713898, 259389.451400000602007 ], [ 356020.062600001692772, 259395.915800001472235 ], [ 356032.906000003218651, 259402.77589999884367 ], [ 356031.627899996936321, 259363.502000000327826 ], [ 356023.568300001323223, 259363.013900000602007 ], [ 356003.459100000560284, 259357.149700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95679338, "LATITUDE": 18.36417487, "OBJECTID_1": 3107, "PARCEL_NO_": "102702041100", "Tax_Legal_": "BONNE RESOLUTION 15-2 LITTLE NORTHSIDE", "Name": "SHULTERBRANDT, ELEANOR", "Address": "P.O. BOX 2794", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42500, "Improved_V": 184700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.76806956199999, "SHAPE_Area": 1082.77407253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356032.906000003218651, 259402.77589999884367 ], [ 356063.569300003349781, 259400.282600000500679 ], [ 356061.367899999022484, 259374.722300000488758 ], [ 356054.197400003671646, 259364.531100001186132 ], [ 356031.627899996936321, 259363.502000000327826 ], [ 356032.906000003218651, 259402.77589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702020800", "MAP": "B9-201-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95308848000001, "LATITUDE": 18.36398439, "OBJECTID_1": 3011, "PARCEL_NO_": "102702020800", "Tax_Legal_": "HULL 5D LITTLE NORTHSIDE", "Name": "BRYAN, EDITH", "Address": "PO Box 9517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 269500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.07173262800001, "SHAPE_Area": 5922.3089954500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356491.963899999856949, 259384.217700000852346 ], [ 356483.907499998807907, 259334.659699998795986 ], [ 356416.526600003242493, 259332.877199999988079 ], [ 356392.19879999756813, 259348.932300001382828 ], [ 356372.735799998044968, 259361.860800001770258 ], [ 356392.762299999594688, 259377.434599999338388 ], [ 356399.959799997508526, 259384.459600001573563 ], [ 356412.731299996376038, 259399.762800000607967 ], [ 356420.742299996316433, 259405.950100000947714 ], [ 356491.963899999856949, 259384.217700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701020500", "MAP": "D9-4759-T89", "PARCEL_NAM": "14-66", "ACRE": "0.27", "LONGITUDE": -64.95890577, "LATITUDE": 18.36404802, "OBJECTID_1": 2842, "PARCEL_NO_": "102701020500", "Tax_Legal_": "REM OF 14-66 BONNE RESOLUTION No.5 LITTLE NORTHSIDE QTR.", "Name": "ADAMS, DEAN A. & MICHELLE D", "Address": "PO Box 303692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20700, "Improved_V": 211000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.86772403699999, "SHAPE_Area": 1210.6692066799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355821.144299998879433, 259366.001200001686811 ], [ 355819.991099998354912, 259363.90819999948144 ], [ 355833.809199996292591, 259355.855200000107288 ], [ 355823.028499998152256, 259334.141499999910593 ], [ 355806.857299998402596, 259339.286400001496077 ], [ 355814.5337999984622, 259384.734400000423193 ], [ 355820.858400002121925, 259399.562699999660254 ], [ 355848.397100001573563, 259385.222600001841784 ], [ 355842.054499998688698, 259372.505100000649691 ], [ 355829.895099997520447, 259380.004999998956919 ], [ 355821.144299998879433, 259366.001200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801010400", "MAP": "D9-8429-T010", "PARCEL_NAM": "22F", "ACRE": ".71", "LONGITUDE": -64.94694277000001, "LATITUDE": 18.36383864, "OBJECTID_1": 3686, "PARCEL_NO_": "102801010400", "Tax_Legal_": "ST PETER 22 LITTLE NORTHSIDE QTR", "Name": "TODMAN, JULIE SMITH & BYRON", "Address": "PO Box 11011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 261100, "Improved_V": 218200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 356.78787598700001, "SHAPE_Area": 4055.0324140900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357118.136799998581409, 259381.3766999989748 ], [ 357121.222099997103214, 259341.177999999374151 ], [ 357121.276100002229214, 259334.845600001513958 ], [ 357140.591600000858307, 259339.225600000470877 ], [ 357155.907999999821186, 259339.77309999987483 ], [ 357168.839500002563, 259336.290399998426437 ], [ 357175.320600003004074, 259332.754799999296665 ], [ 357164.862300001084805, 259329.546999998390675 ], [ 357143.61599999666214, 259331.135499998927116 ], [ 357073.418799996376038, 259333.117899999022484 ], [ 357042.55629999935627, 259334.313999999314547 ], [ 357043.328900001943111, 259380.368400000035763 ], [ 357118.136799998581409, 259381.3766999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702051400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9547147, "LATITUDE": 18.36399678, "OBJECTID_1": 3169, "PARCEL_NO_": "102702051400", "Tax_Legal_": "HULL 5H-2 LITTLE NORTHSIDE", "Name": "BRIN, GENE & FRANCIA", "Address": "7631 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 300000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.47240190299999, "SHAPE_Area": 2426.6391051700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356253.315800003707409, 259332.562899999320507 ], [ 356244.61710000038147, 259401.975299999117851 ], [ 356259.523000001907349, 259399.564399998635054 ], [ 356284.556400001049042, 259395.336300000548363 ], [ 356284.289599999785423, 259332.006000000983477 ], [ 356269.005599997937679, 259327.659099999815226 ], [ 356263.359600000083447, 259327.824000000953674 ], [ 356257.697499997913837, 259329.888599999248981 ], [ 356253.315800003707409, 259332.562899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801010200", "MAP": "D9-4386-T88", "PARCEL_NAM": "22B", "ACRE": "1.59", "LONGITUDE": -64.9456696, "LATITUDE": 18.36417161, "OBJECTID_1": 3684, "PARCEL_NO_": "102801010200", "Tax_Legal_": "22B ST PETER NO 2 LITTLE NOTHSIDE", "Name": "BRYAN, EDWIN SR. & EDWIN BRYAN JR.", "Address": "7434 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 184400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 380.47639627199999, "SHAPE_Area": 5754.3351567999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357205.996399998664856, 259328.784000001847744 ], [ 357200.354000002145767, 259328.526700001209974 ], [ 357206.691299997270107, 259341.877500001341105 ], [ 357208.181599996984005, 259356.244100000709295 ], [ 357202.407999999821186, 259371.395500000566244 ], [ 357186.07490000128746, 259395.537599999457598 ], [ 357168.221000000834465, 259408.901500001549721 ], [ 357158.040799997746944, 259415.915800001472235 ], [ 357154.651199996471405, 259418.251299999654293 ], [ 357148.064999997615814, 259423.130800001323223 ], [ 357157.591899998486042, 259423.402800001204014 ], [ 357196.95719999819994, 259424.526599999517202 ], [ 357253.548100002110004, 259426.142299998551607 ], [ 357270.638800002634525, 259407.839899998158216 ], [ 357282.850400000810623, 259394.218699999153614 ], [ 357282.074600003659725, 259390.623799998313189 ], [ 357270.008699998259544, 259387.14750000089407 ], [ 357258.776100002229214, 259380.511700000613928 ], [ 357250.76690000295639, 259374.113400001078844 ], [ 357235.590800002217293, 259357.101700000464916 ], [ 357230.82490000128746, 259348.618900001049042 ], [ 357222.036399997770786, 259339.047800000756979 ], [ 357210.823499999940395, 259330.09010000154376 ], [ 357205.996399998664856, 259328.784000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9070116, "LATITUDE": 18.3641762, "OBJECTID_1": 5341, "PARCEL_NO_": "103002030400", "Tax_Legal_": "LOVENLUND C-6-V AKA 106 GT. NORTHSIDE", "Name": "EBENHOLTZ, DANIA", "Address": "PO Box 322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 165000, "Improved_V": 655000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.44145308899999, "SHAPE_Area": 1150.0065231000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361342.745200000703335, 259414.359200000762939 ], [ 361316.12610000371933, 259415.407900001853704 ], [ 361280.561999998986721, 259425.249400001019239 ], [ 361269.259199999272823, 259426.845600001513958 ], [ 361269.126199997961521, 259442.465399999171495 ], [ 361284.494699999690056, 259436.891699999570847 ], [ 361342.608499996364117, 259430.401200000196695 ], [ 361342.745200000703335, 259414.359200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90986912, "LATITUDE": 18.36400736, "OBJECTID_1": 5249, "PARCEL_NO_": "103001033100", "Tax_Legal_": "C-6-1 ESTATE LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "ERIKA A KELLERHALS REVOCABLE TRUST", "Address": "9100 Port Of Sale", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154800, "Improved_V": 607900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.126541729, "SHAPE_Area": 1430.8450999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360979.20610000193119, 259398.718199998140335 ], [ 361019.998999997973442, 259437.682199999690056 ], [ 361030.687799997627735, 259413.493999999016523 ], [ 361025.880500003695488, 259409.86600000038743 ], [ 361017.88570000231266, 259401.778999999165535 ], [ 361010.718800000846386, 259391.165699999779463 ], [ 361004.385200001299381, 259377.392799999564886 ], [ 361002.779799997806549, 259376.535300001502037 ], [ 360997.94370000064373, 259376.284600000828505 ], [ 360988.174500003457069, 259387.181499999016523 ], [ 360979.20610000193119, 259398.718199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030500", "MAP": "D9-8925-T014", "PARCEL_NAM": "C-5-B-8 & C-2-G", "ACRE": ".351", "LONGITUDE": -64.91103156, "LATITUDE": 18.36408687, "OBJECTID_1": 5224, "PARCEL_NO_": "103001030500", "Tax_Legal_": "LOVENLUND C-2-G&C-5-B-8 78 GRT NORTHSIDE QRT", "Name": "FELDMAN, GENE & BARBARA (TRUSTEES)", "Address": "100 E Bellevue Pl", "City": "CHICAGO", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 124100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.96281216, "SHAPE_Area": 1436.29528256 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360880.852200001478195, 259396.013399999588728 ], [ 360866.376299999654293, 259391.462000001221895 ], [ 360855.633500002324581, 259421.982599999755621 ], [ 360871.725599996745586, 259426.125100001692772 ], [ 360894.251999996602535, 259432.220100000500679 ], [ 360900.666500002145767, 259436.494500000029802 ], [ 360908.994000002741814, 259405.531899999827147 ], [ 360880.852200001478195, 259396.013399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702021300", "MAP": "F9-1658-T65", "PARCEL_NAM": "11A", "ACRE": null, "LONGITUDE": -64.95125216, "LATITUDE": 18.36414001, "OBJECTID_1": 3014, "PARCEL_NO_": "102702021300", "Tax_Legal_": "11A ESTATE HULL BAY 4A LITTLE NORTHSIDE", "Name": "THE ADOLPHUS LAPLACE FAMILY TR", "Address": "329 Barnard Clle", "City": "San Juan", "State": "Puerto Rico", "Zip": 926, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 404.16105935000002, "SHAPE_Area": 7680.13983878 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356703.948299996554852, 259395.646899998188019 ], [ 356698.2179000005126, 259350.160199999809265 ], [ 356694.569600000977516, 259350.984900001436472 ], [ 356684.128899998962879, 259346.044300001114607 ], [ 356676.870200000703335, 259346.195999998599291 ], [ 356624.307099997997284, 259363.708700001239777 ], [ 356614.616999998688698, 259365.318199999630451 ], [ 356596.885300002992153, 259364.328699998557568 ], [ 356586.430200003087521, 259361.076699998229742 ], [ 356582.398599997162819, 259361.043699998408556 ], [ 356559.771499998867512, 259366.769099999219179 ], [ 356553.537399999797344, 259398.965399999171495 ], [ 356550.722300000488758, 259413.504799999296665 ], [ 356602.695200003683567, 259411.509300000965595 ], [ 356673.174099996685982, 259408.803399998694658 ], [ 356680.299500003457069, 259408.529800001531839 ], [ 356705.449600003659725, 259407.5641999989748 ], [ 356703.948299996554852, 259395.646899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95439167000001, "LATITUDE": 18.36398454, "OBJECTID_1": 3170, "PARCEL_NO_": "102702051500", "Tax_Legal_": "HULL 5H-3 LITTLE NORTHSIDE", "Name": "QUERRARD, ELEANORE & GEORGE J.,WILSON,JULIA & BERRY,NICHOLAS", "Address": "5H-3 ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 438400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.76856365099999, "SHAPE_Area": 1880.45215295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356312.445799998939037, 259339.835900001227856 ], [ 356284.289599999785423, 259332.006000000983477 ], [ 356284.556400001049042, 259395.336300000548363 ], [ 356305.554700002074242, 259391.497400000691414 ], [ 356318.475500002503395, 259389.281100001186132 ], [ 356318.077399998903275, 259341.359600000083447 ], [ 356312.445799998939037, 259339.835900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002035400", "MAP": "D9-7019-T002", "PARCEL_NAM": "C-17-1", "ACRE": ".66", "LONGITUDE": -64.90477661, "LATITUDE": 18.36392051, "OBJECTID_1": 5410, "PARCEL_NO_": "103002035400", "Tax_Legal_": "C-17-1 ESTATE LOVENLUND #2 GREAT NORHTSIDE QTR", "Name": "PAPE(TRUSTEE), GREGORY", "Address": "51 Ford Ln", "City": "Naperville", "State": "Illinois", "Zip": 60565, "Country": "United States", "Land_Value": 279900, "Improved_V": 1015200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.19919199200001, "SHAPE_Area": 2359.7467399400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361583.987899996340275, 259418.642499998211861 ], [ 361560.677500002086163, 259368.002599999308586 ], [ 361530.043399997055531, 259388.449999999254942 ], [ 361486.279600001871586, 259414.267400000244379 ], [ 361573.336099997162819, 259417.935300000011921 ], [ 361583.987899996340275, 259418.642499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95734088, "LATITUDE": 18.36405487, "OBJECTID_1": 3109, "PARCEL_NO_": "102702041300", "Tax_Legal_": "BONNE RESOLUTION 14-52 LITTLE NORTHSIDE QTR", "Name": "Herman A ,Paul , Martin , Peter & Jon Richardson", "Address": "231 Capstone Dr", "City": "Lynchburg", "State": "Virginia", "Zip": 245025165, "Country": "United States", "Land_Value": 40800, "Improved_V": 301700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.786320637, "SHAPE_Area": 920.65170053199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355991.425499998033047, 259349.874099999666214 ], [ 355963.823899999260902, 259371.60190000012517 ], [ 355969.42849999666214, 259376.291799999773502 ], [ 355987.914399996399879, 259383.409200001507998 ], [ 356003.990299999713898, 259389.451400000602007 ], [ 356003.459100000560284, 259357.149700000882149 ], [ 355991.425499998033047, 259349.874099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801013700", "MAP": "A9-115-T69", "PARCEL_NAM": "13-2", "ACRE": ".44", "LONGITUDE": -64.94392177, "LATITUDE": 18.36356406, "OBJECTID_1": 3719, "PARCEL_NO_": "102801013700", "Tax_Legal_": "ST PETER 14-1&13-2 LITTLE NORTHSIDE", "Name": "RYNER, PETER JR., CLYDE & ELLA", "Address": "PO Box 11901", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 115700, "Improved_V": 379400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.372081444, "SHAPE_Area": 1844.7774322299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357386.876800000667572, 259334.170699998736382 ], [ 357401.255599997937679, 259384.234400000423193 ], [ 357403.109600000083447, 259381.270799998193979 ], [ 357408.076999999582767, 259366.112700000405312 ], [ 357413.931500002741814, 259341.462699998170137 ], [ 357420.547499999403954, 259322.0962999984622 ], [ 357423.193000003695488, 259295.520100001245737 ], [ 357423.477099999785423, 259262.169700000435114 ], [ 357421.884300000965595, 259259.834600001573563 ], [ 357410.282999999821186, 259296.469900000840425 ], [ 357407.837099999189377, 259299.616300001740456 ], [ 357404.54169999808073, 259307.822000000625849 ], [ 357402.916500002145767, 259309.286299999803305 ], [ 357390.643799997866154, 259330.084199998527765 ], [ 357386.876800000667572, 259334.170699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801010100", "MAP": "D9-4437-T88", "PARCEL_NAM": "11E-1", "ACRE": ".53", "LONGITUDE": -64.94904315, "LATITUDE": 18.36395367, "OBJECTID_1": 3683, "PARCEL_NO_": "102801010100", "Tax_Legal_": "HULL 11E-1 LT NORTHSIDE", "Name": "WILLEN, JAMES M&MARY C.", "Address": "11 E1 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103100, "Improved_V": 141700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.25020123199999, "SHAPE_Area": 1800.5751257300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356883.493000000715256, 259390.800400000065565 ], [ 356876.85080000013113, 259326.752099998295307 ], [ 356847.945200003683567, 259331.552999999374151 ], [ 356853.569600000977516, 259333.921100001782179 ], [ 356859.168799996376038, 259339.244300000369549 ], [ 356860.758000001311302, 259342.001499999314547 ], [ 356859.836599998176098, 259355.503899998962879 ], [ 356843.503600001335144, 259379.646000001579523 ], [ 356840.213600002229214, 259387.218499999493361 ], [ 356862.716600000858307, 259396.057500001043081 ], [ 356883.493000000715256, 259390.800400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90834969, "LATITUDE": 18.36408493, "OBJECTID_1": 5260, "PARCEL_NO_": "103001034200", "Tax_Legal_": "C-6-T ESTATE LOVENLUND (aka lot 119) No.2 GREAT NORTHSIDE QTR.", "Name": "APRICUS AGELESS LLC", "Address": "6216 N BLACK OAK COURT", "City": "Peoria", "State": "Illinois", "Zip": 616152255, "Country": "United States", "Land_Value": 95900, "Improved_V": 581500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.46162670499999, "SHAPE_Area": 2196.5804219000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361146.172100000083447, 259393.118700001388788 ], [ 361136.1554000005126, 259389.788400001823902 ], [ 361126.46339999884367, 259426.962000001221895 ], [ 361133.784400001168251, 259427.425599999725819 ], [ 361157.961099997162819, 259429.101100001484156 ], [ 361174.877499997615814, 259431.139400001615286 ], [ 361204.734499998390675, 259428.639499999582767 ], [ 361228.979599997401237, 259422.294100001454353 ], [ 361187.159199997782707, 259409.286200001835823 ], [ 361146.172100000083447, 259393.118700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702041500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95783379, "LATITUDE": 18.36400278, "OBJECTID_1": 3111, "PARCEL_NO_": "102702041500", "Tax_Legal_": "BONNE RESOLUTION 14-53 LITTLE NORTHSIDE", "Name": "PHILLIPS, LEMUEL L", "Address": "PO Box 1106", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47600, "Improved_V": 218500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.740468978, "SHAPE_Area": 851.88786255900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355953.413800001144409, 259363.072900000959635 ], [ 355942.265600003302097, 259346.516399998217821 ], [ 355939.888099998235703, 259341.641800001263618 ], [ 355917.169299997389317, 259358.132199998944998 ], [ 355923.540600001811981, 259367.472500000149012 ], [ 355934.713899999856949, 259381.073899999260902 ], [ 355941.105099998414516, 259388.092300001531839 ], [ 355953.413800001144409, 259363.072900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702051600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95401231, "LATITUDE": 18.3640263, "OBJECTID_1": 3171, "PARCEL_NO_": "102702051600", "Tax_Legal_": "HULL 5H-4 LT. NORTHSIDE", "Name": "QUERRARD, GEORGE & ELEANORE & BERRY", "Address": "7630 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 163800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.64737766600001, "SHAPE_Area": 1643.2655516100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356383.867700003087521, 259380.317099999636412 ], [ 356374.251299999654293, 259373.272300001233816 ], [ 356355.01129999756813, 259360.026999998837709 ], [ 356340.558799996972084, 259352.731600001454353 ], [ 356318.077399998903275, 259341.359600000083447 ], [ 356318.475500002503395, 259389.281100001186132 ], [ 356333.81700000166893, 259386.873500000685453 ], [ 356351.58110000193119, 259384.0636 ], [ 356374.188400000333786, 259380.660100001841784 ], [ 356383.867700003087521, 259380.317099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90888674, "LATITUDE": 18.36399034, "OBJECTID_1": 5257, "PARCEL_NO_": "103001033900", "Tax_Legal_": "C-6-S LOVENLUND (AKA LOT 120) NO 2 GREAT NORTHSIDE QTR.", "Name": "DAVID S. GOLUB & KATHRYN EMMETT", "Address": "47 Old Long Ridge Rd", "City": "Stamford", "State": "Connecticut", "Zip": 6903, "Country": "United States", "Land_Value": 107500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.051642708, "SHAPE_Area": 1845.9289142600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361136.1554000005126, 259389.788400001823902 ], [ 361118.832999996840954, 259384.028999999165535 ], [ 361099.533699996769428, 259377.749299999326468 ], [ 361083.121500000357628, 259411.178899999707937 ], [ 361087.846100002527237, 259424.516399998217821 ], [ 361126.46339999884367, 259426.962000001221895 ], [ 361136.1554000005126, 259389.788400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": null, "PARCEL_NAM": "11 REM", "ACRE": null, "LONGITUDE": -64.9601175, "LATITUDE": 18.36357741, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.11028430600001, "SHAPE_Area": 2677.4164079900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355738.998499996960163, 259328.158700000494719 ], [ 355729.625699996948242, 259318.178300000727177 ], [ 355711.228000000119209, 259300.717999998480082 ], [ 355700.006099998950958, 259292.815699998289347 ], [ 355675.924699999392033, 259279.953000001609325 ], [ 355668.709200002253056, 259275.038800001144409 ], [ 355663.909100003540516, 259270.566500000655651 ], [ 355666.256099998950958, 259279.029500000178814 ], [ 355666.214699998497963, 259283.884300000965595 ], [ 355677.073399998247623, 259334.424499999731779 ], [ 355683.450099997222424, 259343.131599999964237 ], [ 355687.5371999964118, 259347.177499998360872 ], [ 355738.998499996960163, 259328.158700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90921658000001, "LATITUDE": 18.36389546, "OBJECTID_1": 5254, "PARCEL_NO_": "103001033600", "Tax_Legal_": "LOVENLUND C-6-R AKA 121 GT. NORTHSIDE", "Name": "GOLUB, DAVID S. & EMMETT, KATHRYN", "Address": "47 Old Long Ridge Rd", "City": "Stamford", "State": "Connecticut", "Zip": 6903, "Country": "United States", "Land_Value": 150500, "Improved_V": 1154500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.15030327900001, "SHAPE_Area": 1830.6650107 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361099.533699996769428, 259377.749299999326468 ], [ 361076.3125, 259358.560899998992682 ], [ 361051.792199999094009, 259397.201400000602007 ], [ 361058.062899999320507, 259418.362100001424551 ], [ 361070.116200000047684, 259423.315900001674891 ], [ 361087.846100002527237, 259424.516399998217821 ], [ 361083.121500000357628, 259411.178899999707937 ], [ 361099.533699996769428, 259377.749299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702022800", "MAP": "D9-6041-T96", "PARCEL_NAM": "11-C-D", "ACRE": null, "LONGITUDE": -64.95038186, "LATITUDE": 18.36400881, "OBJECTID_1": 3029, "PARCEL_NO_": "102702022800", "Tax_Legal_": "11C-D ESTATE HULL No.4A LITTLE NORTHSIDE QUARTER", "Name": "SARGEANT, CHAUNDEY", "Address": "PO BOX 502996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 105400, "Improved_V": 162100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.12182293000001, "SHAPE_Area": 2531.4142744300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356748.827799998223782, 259353.173000000417233 ], [ 356763.818599998950958, 259340.050500001758337 ], [ 356757.555399999022484, 259340.523600000888109 ], [ 356717.999399997293949, 259345.688200000673532 ], [ 356698.2179000005126, 259350.160199999809265 ], [ 356703.948299996554852, 259395.646899998188019 ], [ 356705.449600003659725, 259407.5641999989748 ], [ 356716.725699998438358, 259403.408500000834465 ], [ 356740.951700001955032, 259394.480099998414516 ], [ 356740.97070000320673, 259394.379900000989437 ], [ 356741.976800002157688, 259389.060899998992682 ], [ 356743.860799998044968, 259379.191799998283386 ], [ 356748.827799998223782, 259353.173000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801010900", "MAP": "D9-6041-T96", "PARCEL_NAM": "11-C-B", "ACRE": ".58", "LONGITUDE": -64.94950602, "LATITUDE": 18.36394932, "OBJECTID_1": 3691, "PARCEL_NO_": "102801010900", "Tax_Legal_": "HULL 11-C-B LITTLE NORTHSIDE QTR", "Name": "BENTA, DAVID & ELIZABETH MARY", "Address": "11-c-b Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.40320160799999, "SHAPE_Area": 2227.6830223799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356843.845299996435642, 259339.541000001132488 ], [ 356828.5253000035882, 259339.415699999779463 ], [ 356789.647900000214577, 259359.573499999940395 ], [ 356782.243600003421307, 259376.822599999606609 ], [ 356778.110299997031689, 259386.336100000888109 ], [ 356830.168300002813339, 259385.73589999973774 ], [ 356831.369400002062321, 259384.190799999982119 ], [ 356835.476400002837181, 259375.358500000089407 ], [ 356845.288900002837181, 259359.395700000226498 ], [ 356851.811300002038479, 259351.005300000309944 ], [ 356851.865199998021126, 259344.672899998724461 ], [ 356847.864200003445148, 259341.051600001752377 ], [ 356843.845299996435642, 259339.541000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90946477, "LATITUDE": 18.36377336, "OBJECTID_1": 5253, "PARCEL_NO_": "103001033500", "Tax_Legal_": "LOVENLUND C-6-Q AKA 122 GT. NORTHSIDE", "Name": "GOLUB, DAVID S & KATHRYN EMMETT", "Address": "47 Old Long Ridge Rd", "City": "Stamford", "State": "Connecticut", "Zip": 6903, "Country": "United States", "Land_Value": 101700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.235799243, "SHAPE_Area": 1808.1119627200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361076.3125, 259358.560899998992682 ], [ 361064.32209999859333, 259346.219300001859665 ], [ 361047.312200002372265, 259355.1570999994874 ], [ 361021.21169999986887, 259389.984999999403954 ], [ 361025.194700002670288, 259395.717099998146296 ], [ 361032.390399999916553, 259402.953200001269579 ], [ 361044.402400001883507, 259412.761799998581409 ], [ 361058.062899999320507, 259418.362100001424551 ], [ 361051.792199999094009, 259397.201400000602007 ], [ 361076.3125, 259358.560899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002014900", "MAP": "D9-8695-T012", "PARCEL_NAM": "D-10 REM CONS", "ACRE": ".62", "LONGITUDE": -64.90195096, "LATITUDE": 18.36381772, "OBJECTID_1": 5292, "PARCEL_NO_": "103002014900", "Tax_Legal_": "CONSOLIDATED D-10 LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "RAINBOW ECOLOGICAL LIVING TRUST", "Address": "1500 Bay Road #1538", "City": "Miami Beach", "State": "Florida", "Zip": 331393252, "Country": "United States", "Land_Value": 291700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.449964018, "SHAPE_Area": 2413.04449161 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361866.295299999415874, 259379.269200000911951 ], [ 361860.510399997234344, 259362.64979999884963 ], [ 361844.722900003194809, 259365.483199998736382 ], [ 361835.038099996745586, 259366.459399998188019 ], [ 361817.250699996948242, 259372.013399999588728 ], [ 361807.528200000524521, 259377.422200001776218 ], [ 361822.70610000193119, 259394.222800001502037 ], [ 361832.929200001060963, 259424.703999999910593 ], [ 361845.832000002264977, 259424.598499998450279 ], [ 361851.492399998009205, 259422.745000001043081 ], [ 361857.183300003409386, 259417.303100001066923 ], [ 361863.745300002396107, 259404.269000001251698 ], [ 361868.602899998426437, 259401.986800000071526 ], [ 361866.295299999415874, 259379.269200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002035600", "MAP": "D9-7172-T003", "PARCEL_NAM": "C-5-C-A", "ACRE": ".007", "LONGITUDE": -64.9056888, "LATITUDE": 18.36380258, "OBJECTID_1": 5412, "PARCEL_NO_": "103002035600", "Tax_Legal_": "C-5-C-A ESTATE LOVENLUND GREAT NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 1400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.006946373200002, "SHAPE_Area": 41.093844617599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361445.020900003612041, 259381.155900001525879 ], [ 361444.971600003540516, 259381.190499998629093 ], [ 361445.342799998819828, 259390.935199998319149 ], [ 361447.570100001990795, 259390.935199998319149 ], [ 361452.590700000524521, 259386.48030000180006 ], [ 361448.640000000596046, 259383.772999998182058 ], [ 361445.020900003612041, 259381.155900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94503596, "LATITUDE": 18.36396295, "OBJECTID_1": 3780, "PARCEL_NO_": "102801020500", "Tax_Legal_": "ST PETER 25A LITTLE NORTHSIDE QTR", "Name": "RITA E GREAUX PAUL G BERRY FAMILY TRUST", "Address": "6534 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023410, "Country": "United States", "Land_Value": 51100, "Improved_V": 88000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.882940082, "SHAPE_Area": 781.08210145500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357310.443000003695488, 259373.546300001442432 ], [ 357303.324699997901917, 259357.233800001442432 ], [ 357270.231700003147125, 259360.973799999803305 ], [ 357272.523000001907349, 259375.980200000107288 ], [ 357274.902400001883507, 259380.643699999898672 ], [ 357278.915899999439716, 259382.787500001490116 ], [ 357286.971900001168251, 259383.697799999266863 ], [ 357294.2449000030756, 259381.857500001788139 ], [ 357310.443000003695488, 259373.546300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013700", "MAP": "D9-1571-T80", "PARCEL_NAM": "1-4-A1", "ACRE": null, "LONGITUDE": -64.9406139, "LATITUDE": 18.36371151, "OBJECTID_1": 4056, "PARCEL_NO_": "102802013700", "Tax_Legal_": "LERKENLUND 1-4-A-1 GT. NORTHSIDE", "Name": "WHITTER, DAVID & VICKI & DEWEESE, N", "Address": "7476 Estate Barrette", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 354500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.55790871299999, "SHAPE_Area": 2142.9119889 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357727.606899999082088, 259341.708000000566244 ], [ 357728.361000001430511, 259347.835900001227856 ], [ 357746.579000003635883, 259386.403999999165535 ], [ 357748.204199999570847, 259384.939599998295307 ], [ 357757.154500000178814, 259375.513700000941753 ], [ 357775.951499998569489, 259346.114399999380112 ], [ 357781.6891999989748, 259335.184500001370907 ], [ 357788.301500000059605, 259316.240200001746416 ], [ 357788.323100000619888, 259313.707299999892712 ], [ 357786.721199996769428, 259312.427600000053644 ], [ 357781.885200001299381, 259312.176899999380112 ], [ 357751.918499998748302, 259327.552600000053644 ], [ 357727.606899999082088, 259341.708000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95756891000001, "LATITUDE": 18.36387002, "OBJECTID_1": 3110, "PARCEL_NO_": "102702041400", "Tax_Legal_": "14-51 BONNE RESOLUTION NO.5 LITTLE NORTHSIDE QTR", "Name": "R MARTIN & K BRASSELL & NORMAN & ANITA COX", "Address": "PO Box 502277", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 42500, "Improved_V": 291800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.87564022699999, "SHAPE_Area": 1192.8975989800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355973.853900000452995, 259330.098600000143051 ], [ 355947.996100001037121, 259336.430799998342991 ], [ 355939.888099998235703, 259341.641800001263618 ], [ 355942.265600003302097, 259346.516399998217821 ], [ 355953.413800001144409, 259363.072900000959635 ], [ 355963.823899999260902, 259371.60190000012517 ], [ 355991.425499998033047, 259349.874099999666214 ], [ 355980.223499998450279, 259339.649900000542402 ], [ 355973.853900000452995, 259330.098600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701015600", "MAP": "D9-1859-T81", "PARCEL_NAM": "14A-1", "ACRE": null, "LONGITUDE": -64.96212473, "LATITUDE": 18.36387895, "OBJECTID_1": 2832, "PARCEL_NO_": "102701015600", "Tax_Legal_": "DOROTHEA 14A-1 LITTLE NORTHSIDE QTR", "Name": "POTTER, OSBERT E. & EVELYN R", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56100, "Improved_V": 253800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.78317134100001, "SHAPE_Area": 1209.15288364 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355510.762599997222424, 259357.761300001293421 ], [ 355509.187700003385544, 259353.315499998629093 ], [ 355504.39299999922514, 259348.21000000089407 ], [ 355497.964100003242493, 259345.624200001358986 ], [ 355493.932499997317791, 259345.5912000015378 ], [ 355491.563900001347065, 259339.661200001835823 ], [ 355494.008100003004074, 259336.725900001823902 ], [ 355494.900700002908707, 259326.600699998438358 ], [ 355493.314999997615814, 259323.421399999409914 ], [ 355458.544699996709824, 259334.746899999678135 ], [ 355476.010200001299381, 259366.976100001484156 ], [ 355510.762599997222424, 259357.761300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033800", "MAP": "A9-394-T91", "PARCEL_NAM": "30", "ACRE": ".945", "LONGITUDE": -64.96711968, "LATITUDE": 18.36365168, "OBJECTID_1": 474, "PARCEL_NO_": "101103033800", "Tax_Legal_": "NELTJEBERG 30 /EASTERN PT LT. NORTHSIDE", "Name": "ROSSI, RICK", "Address": "7779 St Peter Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102300, "Improved_V": 380000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.69550568300002, "SHAPE_Area": 5429.5125203699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354993.769599996507168, 259294.107700001448393 ], [ 354995.302699998021126, 259279.729800000786781 ], [ 354981.194399997591972, 259279.819400001317263 ], [ 354915.917900003492832, 259282.402499999850988 ], [ 354915.410199999809265, 259292.727000001817942 ], [ 354919.796700000762939, 259345.747400000691414 ], [ 354933.487800002098083, 259347.759300000965595 ], [ 354943.933899998664856, 259352.066599998623133 ], [ 354950.361000001430511, 259354.863400001078844 ], [ 354956.764799997210503, 259360.40430000051856 ], [ 354961.582900002598763, 259362.765700001269579 ], [ 354965.614399999380112, 259362.798700001090765 ], [ 354970.470299996435642, 259360.727600000798702 ], [ 354987.479099996387959, 259353.104400001466274 ], [ 354992.186099998652935, 259308.958999998867512 ], [ 354993.769599996507168, 259294.107700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702022900", "MAP": "D9-6041-T96", "PARCEL_NAM": "11-C-C", "ACRE": null, "LONGITUDE": -64.94992192, "LATITUDE": 18.36391892, "OBJECTID_1": 3030, "PARCEL_NO_": "102702022900", "Tax_Legal_": "11-C-C ESTATE HULL BAY 4A LITTLE NORTHSIDE QTR", "Name": "DEMARCO, MARGARITA & KEITH, A. W", "Address": "67 Milo White Rd", "City": "Jericho", "State": "Vermont", "Zip": 5465, "Country": "United States", "Land_Value": 84600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.06378957000001, "SHAPE_Area": 2215.6350082700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356742.680799998342991, 259393.8429000005126 ], [ 356776.193499997258186, 259381.491999998688698 ], [ 356774.339400000870228, 259386.379599999636412 ], [ 356778.110299997031689, 259386.336100000888109 ], [ 356782.243600003421307, 259376.822599999606609 ], [ 356789.647900000214577, 259359.573499999940395 ], [ 356828.5253000035882, 259339.415699999779463 ], [ 356777.727600000798702, 259338.999899998307228 ], [ 356763.818599998950958, 259340.050500001758337 ], [ 356748.827799998223782, 259353.173000000417233 ], [ 356743.860799998044968, 259379.191799998283386 ], [ 356741.976800002157688, 259389.060899998992682 ], [ 356740.97070000320673, 259394.379900000989437 ], [ 356742.680799998342991, 259393.8429000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031900", "MAP": "D9-9183-T017", "PARCEL_NAM": "REM 11", "ACRE": "2.02", "LONGITUDE": -64.96524503000001, "LATITUDE": 18.36330421, "OBJECTID_1": 456, "PARCEL_NO_": "101103031900", "Tax_Legal_": "REM. 11 EASTERN PART/NELTJEBERG 6 LITTLE NORTHSIDE", "Name": "MORALES, ALOHA", "Address": "715 Sable Xing", "City": "Suwanee", "State": "Georgia", "Zip": 30024, "Country": "United States", "Land_Value": 182100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 435.20886274700001, "SHAPE_Area": 6646.45175561 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355062.54389999806881, 259283.909200001507998 ], [ 355204.927500002086163, 259314.862199999392033 ], [ 355245.125399999320507, 259303.236000001430511 ], [ 355236.33330000191927, 259294.087000001221895 ], [ 355235.563000001013279, 259289.858800001442432 ], [ 355203.339199997484684, 259286.217599999159575 ], [ 355177.862700000405312, 259247.801199998706579 ], [ 355158.662299998104572, 259229.912200000137091 ], [ 355129.338299997150898, 259264.502599999308586 ], [ 355081.819799996912479, 259257.780900001525879 ], [ 355065.499399997293949, 259280.44539999961853 ], [ 355063.876000002026558, 259281.698699999600649 ], [ 355062.54389999806881, 259283.909200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91030818, "LATITUDE": 18.36372024, "OBJECTID_1": 5228, "PARCEL_NO_": "103001030900", "Tax_Legal_": "LOVENLUND C-6-C AKA 85 GT.NORTHSIDE", "Name": "ALLEN, MATTHEW P. & ELIZABETH A. W", "Address": "5368 Trowbridge Dr", "City": "Dunwoody", "State": "Georgia", "Zip": 30338, "Country": "United States", "Land_Value": 101100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.172194456, "SHAPE_Area": 1679.26795341 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360973.639300003647804, 259389.59569999948144 ], [ 360973.354400001466274, 259328.376200001686811 ], [ 360962.764499999582767, 259340.955099999904633 ], [ 360955.417700000107288, 259351.449700001627207 ], [ 360940.792599998414516, 259364.41780000180006 ], [ 360949.270099997520447, 259410.50560000166297 ], [ 360958.972800001502037, 259407.418600000441074 ], [ 360967.113200001418591, 259398.40819999948144 ], [ 360973.639300003647804, 259389.59569999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103032400", "MAP": "D9-5882-T95", "PARCEL_NAM": "16 REM", "ACRE": ".54", "LONGITUDE": -64.96664387, "LATITUDE": 18.36372207, "OBJECTID_1": 460, "PARCEL_NO_": "101103032400", "Tax_Legal_": "NELTJBERG REM OF 16 EASTERN PT LT. NORTHSIDE", "Name": "ROSSI, RICK", "Address": "7779 St Peter Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.20707073700001, "SHAPE_Area": 1564.00632718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354997.701300002634525, 259292.995700001716614 ], [ 354994.214900001883507, 259289.931800000369549 ], [ 354993.769599996507168, 259294.107700001448393 ], [ 354992.186099998652935, 259308.958999998867512 ], [ 354987.479099996387959, 259353.104400001466274 ], [ 354989.897299997508526, 259352.020599998533726 ], [ 355015.762299999594688, 259344.844000000506639 ], [ 355023.071199998259544, 259338.7820999994874 ], [ 355026.348600000143051, 259332.687300000339746 ], [ 355031.392700001597404, 259322.604400001466274 ], [ 354997.701300002634525, 259292.995700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95860819000001, "LATITUDE": 18.36385746, "OBJECTID_1": 2845, "PARCEL_NO_": "102701021000", "Tax_Legal_": "BONNE RESOLUTION 14-62&63 LT. NORTHISDE", "Name": "RUBY V ONEAL TRUST", "Address": "394-189 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53200, "Improved_V": 257000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.60370503600001, "SHAPE_Area": 1021.4980488800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355863.342299997806549, 259334.682500001043081 ], [ 355860.190800003707409, 259326.001899998635054 ], [ 355833.514200001955032, 259333.805100001394749 ], [ 355850.157200001180172, 259367.927400000393391 ], [ 355877.658100001513958, 259358.019999999552965 ], [ 355863.342299997806549, 259334.682500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030600", "MAP": "D9-8925-T014", "PARCEL_NAM": "C-5-B-7/ C-2-H", "ACRE": ".308", "LONGITUDE": -64.91091901, "LATITUDE": 18.36380462, "OBJECTID_1": 5225, "PARCEL_NO_": "103001030600", "Tax_Legal_": "LOVENLUND C-2-H & C-5-B-7 GREAT NORTHSIDE QTR", "Name": "MARIO AUSTIN VERWEIJ REVOCABLE TRUST", "Address": "3017 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107500, "Improved_V": 569200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.48126795900001, "SHAPE_Area": 1539.78131566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360891.623800002038479, 259362.115499999374151 ], [ 360882.779500000178814, 259359.087799999862909 ], [ 360866.376299999654293, 259391.462000001221895 ], [ 360880.852200001478195, 259396.013399999588728 ], [ 360908.994000002741814, 259405.531899999827147 ], [ 360917.244099996984005, 259383.645700000226498 ], [ 360922.983599998056889, 259372.504700001329184 ], [ 360891.623800002038479, 259362.115499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203013300", "MAP": "D9-9012-T015", "PARCEL_NAM": "1-3", "ACRE": "1.64", "LONGITUDE": -64.94256092000001, "LATITUDE": 18.36316139, "OBJECTID_1": 734, "PARCEL_NO_": "101203013300", "Tax_Legal_": "LERKENLUND 1-1,2,3&5 GREAT NORTHSIDE", "Name": "JULIE BEATRICE DEITRICH REVOC LIVING TRUST", "Address": "7477 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 552300, "Improved_V": 107800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 422.28473939100002, "SHAPE_Area": 6822.0912215199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357517.245600000023842, 259242.316799998283386 ], [ 357538.931199997663498, 259293.980700001120567 ], [ 357506.044100001454353, 259317.512800000607967 ], [ 357516.284699998795986, 259348.0 ], [ 357524.911399997770786, 259376.568199999630451 ], [ 357544.538000002503395, 259344.431499999016523 ], [ 357550.277500003576279, 259333.290500000119209 ], [ 357553.538699999451637, 259329.095300000160933 ], [ 357556.8125, 259323.422600001096725 ], [ 357560.086300000548363, 259317.749899998307228 ], [ 357566.642899997532368, 259305.348999999463558 ], [ 357577.193300001323223, 259297.413800001144409 ], [ 357574.819300003349781, 259292.11710000038147 ], [ 357604.301500000059605, 259238.951699998229742 ], [ 357596.387599997222424, 259221.366099998354912 ], [ 357558.42620000243187, 259228.654800001531839 ], [ 357526.897299997508526, 259238.107099998742342 ], [ 357517.245600000023842, 259242.316799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95126953, "LATITUDE": 18.36337424, "OBJECTID_1": 3014, "PARCEL_NO_": "102702021300", "Tax_Legal_": "11A ESTATE HULL BAY 4A LITTLE NORTHSIDE", "Name": "THE ADOLPHUS LAPLACE FAMILY TR", "Address": "329 Barnard Clle", "City": "San Juan", "State": "Puerto Rico", "Zip": 926, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 483.80174294300002, "SHAPE_Area": 14286.3995541 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356553.578199997544289, 259336.5320999994874 ], [ 356558.481499999761581, 259361.093100000172853 ], [ 356567.899400003254414, 259359.236299999058247 ], [ 356582.450800001621246, 259354.922400001436472 ], [ 356587.288599997758865, 259354.962000001221895 ], [ 356593.717600002884865, 259357.547800000756979 ], [ 356603.378899998962879, 259359.315600000321865 ], [ 356610.633900001645088, 259359.586100000888109 ], [ 356620.31870000064373, 259358.609900001436472 ], [ 356677.739500001072884, 259338.814800001680851 ], [ 356697.19709999859333, 259326.519600000232458 ], [ 356702.612199999392033, 259258.80290000140667 ], [ 356704.481899999082088, 259228.631799999624491 ], [ 356567.886100001633167, 259266.143899999558926 ], [ 356566.201499998569489, 259274.573899999260902 ], [ 356553.578199997544289, 259336.5320999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95835102, "LATITUDE": 18.36380483, "OBJECTID_1": 2851, "PARCEL_NO_": "102701021800", "Tax_Legal_": "BONNE RESOLUTION 14-41 No.3 LITTLE NORTHSIDE QTR.", "Name": "ARMSTRONG, JAMAL K", "Address": "PO Box 307615", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.951748388, "SHAPE_Area": 786.52953919799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355887.648599997162819, 259321.160399999469519 ], [ 355863.342299997806549, 259334.682500001043081 ], [ 355877.658100001513958, 259358.019999999552965 ], [ 355880.042900003492832, 259362.050299998372793 ], [ 355900.332000002264977, 259346.806499999016523 ], [ 355897.148100003600121, 259341.925299998372793 ], [ 355896.358000002801418, 259340.019000001251698 ], [ 355893.183100000023842, 259334.082400001585484 ], [ 355892.392899997532368, 259332.176100000739098 ], [ 355890.805500000715256, 259329.207699999213219 ], [ 355890.015399999916553, 259327.301399998366833 ], [ 355887.648599997162819, 259321.160399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96098694, "LATITUDE": 18.36377785, "OBJECTID_1": 2823, "PARCEL_NO_": "102701014600", "Tax_Legal_": "DOROTHEA 14B-8 LT.NORTHSIDE QTR.", "Name": "MATHURA, ANN MARIE AND RICHARD NEVILLE MATHURA", "Address": "1537 LAKE SHORE DR.", "City": "JASPER", "State": "Alabama", "Zip": 355040000, "Country": "United States", "Land_Value": 36700, "Improved_V": 207500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.25110950599998, "SHAPE_Area": 5282.82435111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355626.075900003314018, 259369.892099998891354 ], [ 355639.607600003480911, 259349.790300000458956 ], [ 355645.587600000202656, 259338.810899998992682 ], [ 355636.052100002765656, 259322.267599999904633 ], [ 355618.574000000953674, 259291.515900000929832 ], [ 355603.4662000015378, 259266.483300000429153 ], [ 355600.185199998319149, 259273.000300001353025 ], [ 355596.864699997007847, 259284.161100000143051 ], [ 355593.599899999797344, 259288.778400000184774 ], [ 355588.699100002646446, 259296.126600001007318 ], [ 355585.419900000095367, 259302.432500001043081 ], [ 355583.760499998927116, 259307.907400000840425 ], [ 355581.195900000631809, 259324.984999999403954 ], [ 355577.042099997401237, 259339.305399999022484 ], [ 355563.244800001382828, 259349.747099999338388 ], [ 355560.802500002086163, 259352.4712999984622 ], [ 355567.601899996399879, 259365.552700001746416 ], [ 355572.703000001609325, 259375.366799999028444 ], [ 355579.066399998962879, 259387.265599999576807 ], [ 355626.075900003314018, 259369.892099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94496504, "LATITUDE": 18.36384933, "OBJECTID_1": 3781, "PARCEL_NO_": "102801020600", "Tax_Legal_": "ST PETER REM 25 LITTLE NORTHSIDE QTR", "Name": "RITA E GREAUX PAUL G BERRY FAMILY TRUST", "Address": "6534 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023410, "Country": "United States", "Land_Value": 17400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.042190748, "SHAPE_Area": 489.25971466700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357317.732199996709824, 259369.80629999935627 ], [ 357313.8462999984622, 259352.675900001078844 ], [ 357300.975900001823902, 259348.98200000077486 ], [ 357269.493699997663498, 259352.946199998259544 ], [ 357270.231700003147125, 259360.973799999803305 ], [ 357303.324699997901917, 259357.233800001442432 ], [ 357310.443000003695488, 259373.546300001442432 ], [ 357317.732199996709824, 259369.80629999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801018900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9454261, "LATITUDE": 18.36373258, "OBJECTID_1": 3766, "PARCEL_NO_": "102801018900", "Tax_Legal_": "ST PETER 22-A LITTLE NORTHSIDE", "Name": "BERRY, CYRIL J. & VELMA M", "Address": "7812 St Peter Mtn", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43800, "Improved_V": 252800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.83102965800001, "SHAPE_Area": 1102.3323341 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357261.289300002157688, 259325.778099998831749 ], [ 357219.709100000560284, 259328.263000000268221 ], [ 357219.510600000619888, 259328.263000000268221 ], [ 357231.508199997246265, 259339.760200001299381 ], [ 357239.465199999511242, 259352.279800001531839 ], [ 357246.64469999819994, 259361.415600001811981 ], [ 357258.644100002944469, 259372.701799999922514 ], [ 357260.260300002992153, 259372.29280000180006 ], [ 357262.682800002396107, 259371.890500001609325 ], [ 357263.508900001645088, 259369.575199998915195 ], [ 357261.289300002157688, 259325.778099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801029800", "MAP": "D9-5251-T92", "PARCEL_NAM": "1-4-B1", "ACRE": null, "LONGITUDE": -64.94118361, "LATITUDE": 18.36343071, "OBJECTID_1": 3841, "PARCEL_NO_": "102801029800", "Tax_Legal_": "LERKENLUND 1-4-B1 GREAT NORTHSIDE", "Name": "LAPLACE, SHEILA M. Q", "Address": "7817 Northstar Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 144400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 330.77228860600002, "SHAPE_Area": 5122.0051245100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357747.114500001072884, 259273.921100001782179 ], [ 357695.150499999523163, 259270.725999999791384 ], [ 357660.01690000295639, 259324.689500000327826 ], [ 357655.904399998486042, 259334.155000001192093 ], [ 357651.001800000667572, 259341.714299999177456 ], [ 357649.342399999499321, 259347.189100001007318 ], [ 357647.715400002896786, 259348.864599999040365 ], [ 357644.416400000452995, 259357.492400001734495 ], [ 357642.789399996399879, 259359.16780000180006 ], [ 357638.682300001382828, 259368.000100001692772 ], [ 357637.854400001466274, 259370.526500001549721 ], [ 357638.63740000128746, 259373.277100000530481 ], [ 357641.058100000023842, 259373.085799999535084 ], [ 357651.604900002479553, 259365.572799999266863 ], [ 357664.570699997246265, 259358.079500000923872 ], [ 357688.05799999833107, 259346.028299998492002 ], [ 357713.118400000035763, 259338.634100001305342 ], [ 357730.133699998259544, 259329.063000001013279 ], [ 357747.114500001072884, 259273.921100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801028200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9447111, "LATITUDE": 18.36383418, "OBJECTID_1": 3828, "PARCEL_NO_": "102801028200", "Tax_Legal_": "ST PETER 25E LT. NORTHSIDE QTR", "Name": "CSANYI, VALENTINE", "Address": "7157 Open Hearth Dr", "City": "Kernersville", "State": "North Carolina", "Zip": 27284, "Country": "United States", "Land_Value": 21100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.075851792199998, "SHAPE_Area": 368.33001407 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357335.54839999973774, 259360.875100001692772 ], [ 357330.843599997460842, 259345.215599998831749 ], [ 357313.084899999201298, 259347.392299998551607 ], [ 357313.8462999984622, 259352.675900001078844 ], [ 357317.732199996709824, 259369.80629999935627 ], [ 357335.54839999973774, 259360.875100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042000", "MAP": "A9-157-T71", "PARCEL_NAM": "14-54", "ACRE": null, "LONGITUDE": -64.95800647, "LATITUDE": 18.36369829, "OBJECTID_1": 3113, "PARCEL_NO_": "102702042000", "Tax_Legal_": "BONNE RESOLUTION 14-54 LT. NORTHSIDE", "Name": "PETER, HILAIR & MONICA", "Address": "6056 MARIENDHAL 7-56", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34400, "Improved_V": 148400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.24475247199999, "SHAPE_Area": 1308.9781796499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355928.032499998807907, 259313.469300001859665 ], [ 355922.494400002062321, 259300.969500001519918 ], [ 355897.344099998474121, 259318.917700000107288 ], [ 355898.132399998605251, 259321.035100001841784 ], [ 355899.712700001895428, 259324.847699999809265 ], [ 355902.07769999653101, 259331.199799999594688 ], [ 355917.169299997389317, 259358.132199998944998 ], [ 355939.888099998235703, 259341.641800001263618 ], [ 355928.032499998807907, 259313.469300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032400", "MAP": "D9-1496-T79", "PARCEL_NAM": "D-12", "ACRE": null, "LONGITUDE": -64.90133137, "LATITUDE": 18.36369105, "OBJECTID_1": 5360, "PARCEL_NO_": "103002032400", "Tax_Legal_": "D-12 LOVENLUND NO.2 GREAT NORTHSIDE QTR.", "Name": "ROMANI FAMILY REV. TRST", "Address": "145 Cooper Rd", "City": "Chepachet", "State": "Rhode Island", "Zip": 2814, "Country": "United States", "Land_Value": 329800, "Improved_V": 429200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.13774697599999, "SHAPE_Area": 2334.4779113599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361935.571800000965595, 259397.257500000298023 ], [ 361925.443999998271465, 259355.589200001209974 ], [ 361922.279899999499321, 259348.386100001633167 ], [ 361876.219400003552437, 259359.830400001257658 ], [ 361893.598600000143051, 259402.191300000995398 ], [ 361909.712300002574921, 259403.800900001078844 ], [ 361920.176399998366833, 259405.997400000691414 ], [ 361929.859300002455711, 259405.232299998402596 ], [ 361932.29619999974966, 259403.14130000025034 ], [ 361932.321400001645088, 259400.186200000345707 ], [ 361935.571800000965595, 259397.257500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702023200", "MAP": "D9-7780-T006", "PARCEL_NAM": "5H-1A", "ACRE": ".477", "LONGITUDE": -64.95387764, "LATITUDE": 18.36372432, "OBJECTID_1": 3033, "PARCEL_NO_": "102702023200", "Tax_Legal_": "HULL 5H-1a No.4 LITTLE NORTHSIDE QTR.", "Name": "LACATENA, MICHAEL A. & ELISA BRYAN-LACATENA", "Address": "7636 Lower Hull 5H Rem", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.52636172000001, "SHAPE_Area": 1791.17810123 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356387.396899998188019, 259344.67119999974966 ], [ 356344.980599999427795, 259306.960400000214577 ], [ 356318.131300002336502, 259335.027199998497963 ], [ 356355.891400001943111, 259351.379399999976158 ], [ 356367.109600000083447, 259359.703899998217821 ], [ 356372.735799998044968, 259361.860800001770258 ], [ 356392.19879999756813, 259348.932300001382828 ], [ 356387.396899998188019, 259344.67119999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702046400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95682659000001, "LATITUDE": 18.36369995, "OBJECTID_1": 3155, "PARCEL_NO_": "102702046400", "Tax_Legal_": "14-1 BONNE RESOLUTION LT. NORTHSIDE", "Name": "WRENSFORD, GRANVILLE & LOUISE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60000, "Improved_V": 162400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.24914757499999, "SHAPE_Area": 2241.3761711500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356067.206299997866154, 259351.971999999135733 ], [ 356062.056599996984005, 259293.879099998623133 ], [ 356019.899999998509884, 259320.3429000005126 ], [ 356014.792400002479553, 259351.965199999511242 ], [ 356030.089000001549721, 259354.834600001573563 ], [ 356053.468400001525879, 259355.448100000619888 ], [ 356067.206299997866154, 259351.971999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701014000", "MAP": "D9-1859-T81", "PARCEL_NAM": "14A-2", "ACRE": null, "LONGITUDE": -64.96173002, "LATITUDE": 18.36369533, "OBJECTID_1": 2817, "PARCEL_NO_": "102701014000", "Tax_Legal_": "DOROTHEA 14A-2\nLT. NORTHSIDE", "Name": "Claire Anaclerio Trust & Anne Tagini Trust", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 251400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.19102434000001, "SHAPE_Area": 1620.12140845 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355537.780900001525879, 259309.853100001811981 ], [ 355534.605999998748302, 259303.916499998420477 ], [ 355495.852600000798702, 259309.509899999946356 ], [ 355517.281400002539158, 259349.793099999427795 ], [ 355526.975199997425079, 259347.761500000953674 ], [ 355538.286899998784065, 259345.109900001436472 ], [ 355554.447300001978874, 259341.2314000017941 ], [ 355540.158500000834465, 259314.727699998766184 ], [ 355537.780900001525879, 259309.853100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002037000", "MAP": "C9-236-T79", "PARCEL_NAM": "D-7", "ACRE": null, "LONGITUDE": -64.90252648000001, "LATITUDE": 18.3634752, "OBJECTID_1": 5512, "PARCEL_NO_": "103002037000", "Tax_Legal_": "D-7 ESTATE LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "CASSINELLI, TRICIA", "Address": "PO Box 6280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 247100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.61127556700001, "SHAPE_Area": 2972.07703446 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361814.89469999819994, 259364.605799999088049 ], [ 361810.080200001597404, 259361.822200000286102 ], [ 361801.590199999511242, 259317.212000001221895 ], [ 361783.817100003361702, 259321.077300000935793 ], [ 361769.262199997901917, 259325.813299998641014 ], [ 361750.645000003278255, 259334.104699999094009 ], [ 361772.667900003492832, 259399.301699999719858 ], [ 361795.433499999344349, 259377.32319999858737 ], [ 361803.550599999725819, 259371.05689999833703 ], [ 361814.89469999819994, 259364.605799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042400", "MAP": "A9-157-T71", "PARCEL_NAM": "14-2", "ACRE": null, "LONGITUDE": -64.95718451, "LATITUDE": 18.36370858, "OBJECTID_1": 3117, "PARCEL_NO_": "102702042400", "Tax_Legal_": "14-2 BONNE RESOLUTION NO.5 LITTLE NORTHSIDE QTR", "Name": "BLIJDEN, LUVIA C.", "Address": "PO BOX 1233", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 45900, "Improved_V": 213800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.180452234, "SHAPE_Area": 793.84804219800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356019.899999998509884, 259320.3429000005126 ], [ 356010.301600001752377, 259311.187300000339746 ], [ 355985.131499998271465, 259331.457400001585484 ], [ 355991.522600002586842, 259338.47580000013113 ], [ 355998.734499998390675, 259343.812199998646975 ], [ 356004.3462999984622, 259347.657800000160933 ], [ 356014.792400002479553, 259351.965199999511242 ], [ 356019.899999998509884, 259320.3429000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": null, "PARCEL_NAM": "11 REM", "ACRE": null, "LONGITUDE": -64.95982985000001, "LATITUDE": 18.36326431, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.74681761599999, "SHAPE_Area": 3128.1870527599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355760.411100000143051, 259321.024999998509884 ], [ 355751.773800000548363, 259274.029899999499321 ], [ 355746.404700003564358, 259241.6886 ], [ 355740.751500003039837, 259242.697799999266863 ], [ 355735.080399997532368, 259245.817800000309944 ], [ 355720.446299999952316, 259259.841299999505281 ], [ 355710.725599996745586, 259265.039099998772144 ], [ 355705.072400003671646, 259266.048300001770258 ], [ 355695.398400001227856, 259265.758000001311302 ], [ 355676.131499998271465, 259255.678899999707937 ], [ 355670.496299996972084, 259254.577300000935793 ], [ 355658.398000001907349, 259254.900499999523163 ], [ 355680.026399999856949, 259271.753899998962879 ], [ 355703.305100001394749, 259284.187899999320507 ], [ 355716.931500002741814, 259293.798599999397993 ], [ 355739.330200001597404, 259314.880199998617172 ], [ 355747.851999998092651, 259325.015399999916553 ], [ 355760.411100000143051, 259321.024999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95649173, "LATITUDE": 18.36359172, "OBJECTID_1": 2941, "PARCEL_NO_": "102702010100", "Tax_Legal_": "6I-5 HULL BAY 4A LITTLE NORTHSIDE QTR", "Name": "WHITE, JENEL & JOAN", "Address": "PO Box 11761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32100, "Improved_V": 133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.65648712000001, "SHAPE_Area": 1558.33518669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356105.333200000226498, 259325.263999998569489 ], [ 356076.620600000023842, 259288.087699998170137 ], [ 356062.056599996984005, 259293.879099998623133 ], [ 356067.206299997866154, 259351.971999999135733 ], [ 356072.872100003063679, 259349.485199999064207 ], [ 356105.333200000226498, 259325.263999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701014400", "MAP": "D9-2763-T84", "PARCEL_NAM": "14B-1", "ACRE": null, "LONGITUDE": -64.9613901, "LATITUDE": 18.36366184, "OBJECTID_1": 2821, "PARCEL_NO_": "102701014400", "Tax_Legal_": "14B-1 ESTATE DOROTHEA No.7 LITTLE NORTHSIDE QTR.", "Name": "BRYAN A LEZAMA AND LAURETTE R LEZAMA FAMILY REVOC", "Address": "7903 Estate Lilliendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28300, "Improved_V": 134700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.64690315599999, "SHAPE_Area": 939.63009792399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355540.158500000834465, 259314.727699998766184 ], [ 355554.447300001978874, 259341.2314000017941 ], [ 355557.623999997973442, 259346.956900000572205 ], [ 355571.428400002419949, 259335.670800000429153 ], [ 355575.564300000667572, 259323.461199998855591 ], [ 355578.155900001525879, 259303.217500001192093 ], [ 355576.545000001788139, 259302.993200000375509 ], [ 355540.158500000834465, 259314.727699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94444586, "LATITUDE": 18.36348684, "OBJECTID_1": 3778, "PARCEL_NO_": "102801020200", "Tax_Legal_": "ST PETER 5A LITTLE NORTHSIDE QTR", "Name": "FRANCIS J BRYAN & CLARA I BRYAN FAM REVOC LIV TR", "Address": "7636 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 162500, "Improved_V": 262700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.65436326, "SHAPE_Area": 3480.90798812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357346.640100002288818, 259289.405099999159575 ], [ 357340.981499999761581, 259291.047600001096725 ], [ 357315.922899998724461, 259298.230799999088049 ], [ 357321.42679999768734, 259314.741099998354912 ], [ 357324.562100000679493, 259325.321400001645088 ], [ 357330.843599997460842, 259345.215599998831749 ], [ 357335.54839999973774, 259360.875100001692772 ], [ 357351.743000000715256, 259352.986099999397993 ], [ 357363.904200002551079, 259345.275100000202656 ], [ 357376.085199996829033, 259335.242300000041723 ], [ 357385.044600002467632, 259324.760999999940395 ], [ 357386.693099997937679, 259320.552600000053644 ], [ 357374.932899996638298, 259281.192999999970198 ], [ 357346.640100002288818, 259289.405099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90963653, "LATITUDE": 18.36347426, "OBJECTID_1": 5248, "PARCEL_NO_": "103001033000", "Tax_Legal_": "LOVENLUND C-6-B (123) GT. NORTHSIDE", "Name": "GOLDBERG, DAVID S. & MARTIN", "Address": "9400 Wheatley Ctr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102100, "Improved_V": 517700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.66445617400001, "SHAPE_Area": 2422.2220088700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361058.861299999058247, 259324.643100000917912 ], [ 361004.872500002384186, 259320.190400000661612 ], [ 361012.482500001788139, 259373.448300000280142 ], [ 361021.21169999986887, 259389.984999999403954 ], [ 361047.312200002372265, 259355.1570999994874 ], [ 361064.32209999859333, 259346.219300001859665 ], [ 361058.861299999058247, 259324.643100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91007116, "LATITUDE": 18.36347425, "OBJECTID_1": 5231, "PARCEL_NO_": "103001031200", "Tax_Legal_": "LOVENLUND C-6-A GT. NORTHSIDE", "Name": "JOSEPH, KATHY D", "Address": "7280 Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.48896412400001, "SHAPE_Area": 1365.5762515 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360973.354400001466274, 259328.376200001686811 ], [ 360973.639300003647804, 259389.59569999948144 ], [ 360997.286700002849102, 259358.758400000631809 ], [ 360999.007200002670288, 259346.106899999082088 ], [ 360995.22919999808073, 259316.311799999326468 ], [ 360994.453400000929832, 259312.716899998486042 ], [ 360989.626299999654293, 259311.410799998790026 ], [ 360987.201999999582767, 259312.02419999986887 ], [ 360973.354400001466274, 259328.376200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90096609, "LATITUDE": 18.36361987, "OBJECTID_1": 5361, "PARCEL_NO_": "103002032500", "Tax_Legal_": "LOVENLUND ESTATE D-13 No.2 GREAT NORTHSIDE QTR", "Name": "COGAN, KEVIN & MICHELE", "Address": "1 Liberty Ln E", "City": "Hampton", "State": "New Hampshire", "Zip": 3842, "Country": "United States", "Land_Value": 329800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.62281413299999, "SHAPE_Area": 1879.7718687399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361973.500900000333786, 259393.768300000578165 ], [ 361956.922600001096725, 259352.047200001776218 ], [ 361948.992499999701977, 259336.361299999058247 ], [ 361936.834899999201298, 259343.650100000202656 ], [ 361922.279899999499321, 259348.386100001633167 ], [ 361925.443999998271465, 259355.589200001209974 ], [ 361935.571800000965595, 259397.257500000298023 ], [ 361941.22860000282526, 259395.826200000941753 ], [ 361963.794600002467632, 259397.277399998158216 ], [ 361968.639600001275539, 259396.472699999809265 ], [ 361973.500900000333786, 259393.768300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802015200", "MAP": "D9-6293-T97", "PARCEL_NAM": "2-K-4", "ACRE": ".5882", "LONGITUDE": -64.93935921000001, "LATITUDE": 18.36356046, "OBJECTID_1": 4070, "PARCEL_NO_": "102802015200", "Tax_Legal_": "LERKENLUND 2K-4 G. NORTHSIDE QTR", "Name": "BRYAN, DEAN L.", "Address": "PO Box 303351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 110000, "Improved_V": 379400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.21173296399999, "SHAPE_Area": 1979.1695681199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357896.14130000025034, 259294.039900001138449 ], [ 357892.966700002551079, 259295.377700001001358 ], [ 357890.405500002205372, 259293.902499999850988 ], [ 357887.301100000739098, 259294.305799998342991 ], [ 357862.386900000274181, 259328.034499999135733 ], [ 357888.698499999940395, 259363.080299999564886 ], [ 357917.193400003015995, 259345.983600001782179 ], [ 357894.282399997115135, 259301.104800000786781 ], [ 357896.14130000025034, 259294.039900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702023000", "MAP": "D9-7780-T006", "PARCEL_NAM": "5H-1C", "ACRE": ".500", "LONGITUDE": -64.95394881, "LATITUDE": 18.36327044, "OBJECTID_1": 3031, "PARCEL_NO_": "102702023000", "Tax_Legal_": "HULL 5H-1C No.4 LITTLE NORTHSIDE QTR.", "Name": "FRANCISI J BRYAN & CLARA I BRYAN REVOC FAMILY TRUS", "Address": "7636 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.89102445200001, "SHAPE_Area": 1747.84017707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356381.545199997723103, 259289.951499998569489 ], [ 356347.290899999439716, 259262.452199999243021 ], [ 356344.515900000929832, 259266.848900001496077 ], [ 356336.379100002348423, 259275.437100000679493 ], [ 356326.633199997246265, 259283.589999999850988 ], [ 356322.572899997234344, 259286.934300001710653 ], [ 356344.980599999427795, 259306.960400000214577 ], [ 356353.582800000905991, 259314.608399998396635 ], [ 356381.545199997723103, 259289.951499998569489 ] ] ], [ [ [ 356339.487400002777576, 259256.7331000007689 ], [ 356334.458499997854233, 259253.047499999403954 ], [ 356309.020300000905991, 259279.572900000959635 ], [ 356314.03490000218153, 259282.296700000762939 ], [ 356322.671800002455711, 259275.32490000128746 ], [ 356337.305900000035763, 259261.301399998366833 ], [ 356339.487400002777576, 259256.7331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9553336, "LATITUDE": 18.36346527, "OBJECTID_1": 2973, "PARCEL_NO_": "102702013300", "Tax_Legal_": "HULL 6EC LT NORTHSIDE", "Name": "FERGUSON, HOLLY & BEN, JR.", "Address": "PO Box 10394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.42321027700001, "SHAPE_Area": 1520.8524468600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356208.476400002837181, 259333.707600001245737 ], [ 356210.073899999260902, 259316.828600000590086 ], [ 356213.0371999964118, 259304.763599999248981 ], [ 356215.788900002837181, 259292.486900001764297 ], [ 356220.264700002968311, 259275.120000001043081 ], [ 356189.626599997282028, 259274.65819999948144 ], [ 356184.031000003218651, 259268.912900000810623 ], [ 356174.294100001454353, 259276.010400000959635 ], [ 356181.545500002801418, 259276.703000001609325 ], [ 356188.775399997830391, 259279.928599998354912 ], [ 356193.575499996542931, 259284.400800000876188 ], [ 356196.743199996650219, 259291.181699998676777 ], [ 356195.855899997055531, 259300.673700001090765 ], [ 356188.32940000295639, 259332.276099998503923 ], [ 356188.268299996852875, 259339.452799998223782 ], [ 356192.254900000989437, 259344.762800000607967 ], [ 356193.853100001811981, 259346.464600000530481 ], [ 356199.49549999833107, 259346.721900001168251 ], [ 356207.583800002932549, 259343.832800000905991 ], [ 356208.476400002837181, 259333.707600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90071025, "LATITUDE": 18.36349698, "OBJECTID_1": 5362, "PARCEL_NO_": "103002032600", "Tax_Legal_": "LOVENLUND ESTATE D-14 No.2 GREAT NORTHSIDE QTR", "Name": "COGAN, KEVIN & MICHELE", "Address": "1 Liberty Ln E", "City": "Hampton", "State": "New Hampshire", "Zip": 3842, "Country": "United States", "Land_Value": 290500, "Improved_V": 2219700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.51336865100001, "SHAPE_Area": 1842.6661856400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362001.039599999785423, 259379.428199999034405 ], [ 361970.116700001060963, 259317.746899999678135 ], [ 361953.047399997711182, 259333.650299999862909 ], [ 361948.992499999701977, 259336.361299999058247 ], [ 361956.922600001096725, 259352.047200001776218 ], [ 361973.500900000333786, 259393.768300000578165 ], [ 361977.557599999010563, 259390.846200000494719 ], [ 361983.214400000870228, 259389.414799999445677 ], [ 361987.287299998104572, 259384.592999998480082 ], [ 362001.039599999785423, 259379.428199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94495794, "LATITUDE": 18.36367878, "OBJECTID_1": 3782, "PARCEL_NO_": "102801020700", "Tax_Legal_": "ST PETER 25B LITTLE NORTHSIDE QTR", "Name": "CSANYI, VALENTINE", "Address": "7157 Open Hearth Dr", "City": "Kernersville", "State": "North Carolina", "Zip": 27284, "Country": "United States", "Land_Value": 44300, "Improved_V": 239700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.86299503199999, "SHAPE_Area": 1269.74919918 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357269.493699997663498, 259352.946199998259544 ], [ 357300.975900001823902, 259348.98200000077486 ], [ 357313.084899999201298, 259347.392299998551607 ], [ 357330.843599997460842, 259345.215599998831749 ], [ 357324.562100000679493, 259325.321400001645088 ], [ 357268.071699999272823, 259330.558600001037121 ], [ 357269.493699997663498, 259352.946199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95770853, "LATITUDE": 18.3636144, "OBJECTID_1": 3114, "PARCEL_NO_": "102702042100", "Tax_Legal_": "BONNE RESOLUTION 14-50 5 LITTLE NORTHSIDE Q", "Name": "RIX-SKI'S INC", "Address": "11 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39100, "Improved_V": 266300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.245732868, "SHAPE_Area": 1069.15793583 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355960.4037000015378, 259299.802099999040365 ], [ 355928.032499998807907, 259313.469300001859665 ], [ 355939.888099998235703, 259341.641800001263618 ], [ 355947.996100001037121, 259336.430799998342991 ], [ 355973.853900000452995, 259330.098600000143051 ], [ 355970.666400000452995, 259325.639499999582767 ], [ 355960.4037000015378, 259299.802099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-1995-T82", "PARCEL_NAM": "11-10", "ACRE": "6,488 sq ft", "LONGITUDE": -64.96070971, "LATITUDE": 18.36322028, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.00010516399999, "SHAPE_Area": 3495.0371238500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355643.988600000739098, 259242.539200000464916 ], [ 355626.521300002932549, 259210.521099999547005 ], [ 355618.251400001347065, 259234.729100000113249 ], [ 355618.235200002789497, 259236.628800000995398 ], [ 355604.303099997341633, 259262.901500001549721 ], [ 355603.4662000015378, 259266.483300000429153 ], [ 355618.574000000953674, 259291.515900000929832 ], [ 355636.052100002765656, 259322.267599999904633 ], [ 355645.587600000202656, 259338.810899998992682 ], [ 355650.524400003254414, 259327.241200000047684 ], [ 355653.848499998450279, 259315.65819999948144 ], [ 355655.549300000071526, 259305.328600000590086 ], [ 355656.535400003194809, 259284.227299999445677 ], [ 355653.452200002968311, 259267.525600001215935 ], [ 355643.988600000739098, 259242.539200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602025300", "MAP": "D9-5882-T95", "PARCEL_NAM": "16-C", "ACRE": ".54", "LONGITUDE": -64.96644639, "LATITUDE": 18.36342962, "OBJECTID_1": 2451, "PARCEL_NO_": "102602025300", "Tax_Legal_": "NELTJEBERG 16C", "Name": "ALLARD, EMILE M. & MARIE", "Address": "165 Wilbanks Dr", "City": "Fayetteville", "State": "Georgia", "Zip": 30215, "Country": "United States", "Land_Value": 50000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.85701055000001, "SHAPE_Area": 1584.1687391400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355057.465000003576279, 259277.002099998295307 ], [ 355062.273999996483326, 259270.328400000929832 ], [ 355034.086900003254414, 259276.225900001823902 ], [ 354994.799800001084805, 259284.445700000971556 ], [ 354994.214900001883507, 259289.931800000369549 ], [ 354997.701300002634525, 259292.995700001716614 ], [ 355031.392700001597404, 259322.604400001466274 ], [ 355046.857100002467632, 259291.691899999976158 ], [ 355057.465000003576279, 259277.002099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701014100", "MAP": "D9-1859-T81", "PARCEL_NAM": "14A-3", "ACRE": null, "LONGITUDE": -64.96226148, "LATITUDE": 18.36361361, "OBJECTID_1": 2818, "PARCEL_NO_": "102701014100", "Tax_Legal_": "DOROTHEA 14A-3 LT. NORTHSIDE", "Name": "DENNIS FAMILY TRUST", "Address": "PO Box 476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35900, "Improved_V": 206200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.50441593799999, "SHAPE_Area": 1013.24417808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355479.818099997937679, 259298.612900000065565 ], [ 355445.045999996364117, 259310.149599999189377 ], [ 355458.544699996709824, 259334.746899999678135 ], [ 355493.314999997615814, 259323.421399999409914 ], [ 355479.818099997937679, 259298.612900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801021300", "MAP": "D9-1556-T80", "PARCEL_NAM": "1-15-B", "ACRE": ".5", "LONGITUDE": -64.94194813, "LATITUDE": 18.36348366, "OBJECTID_1": 3787, "PARCEL_NO_": "102801021300", "Tax_Legal_": "LERKENLUND 1-15-B No.9 GT. NORTHSIDE", "Name": "ROSENBERG, FREDERICK", "Address": "PO Box 8579", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99700, "Improved_V": 338500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.847916183, "SHAPE_Area": 2253.7674294399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357642.9408999979496, 259336.441399998962879 ], [ 357628.640100002288818, 259288.008299998939037 ], [ 357582.778099998831749, 259304.425599999725819 ], [ 357611.409800000488758, 259351.100499998778105 ], [ 357629.179200001060963, 259347.657400000840425 ], [ 357638.106200002133846, 259340.975499998778105 ], [ 357642.9408999979496, 259336.441399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95847043000001, "LATITUDE": 18.36357374, "OBJECTID_1": 2850, "PARCEL_NO_": "102701021700", "Tax_Legal_": "14-40 BONNE RESOLUTION No.5 LITTLE NORTHSIDE QUARTER", "Name": "ROEBUCK, MARCIA Y.", "Address": "PO Box 7052", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.37376888, "SHAPE_Area": 719.46716188799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355870.924599997699261, 259296.53660000115633 ], [ 355853.885999999940395, 259308.851700000464916 ], [ 355860.190800003707409, 259326.001899998635054 ], [ 355863.342299997806549, 259334.682500001043081 ], [ 355887.648599997162819, 259321.160399999469519 ], [ 355882.103299997746944, 259309.504799999296665 ], [ 355870.924599997699261, 259296.53660000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701021200", "MAP": "A9-157-T71", "PARCEL_NAM": "14-61", "ACRE": ".24", "LONGITUDE": -64.95877156, "LATITUDE": 18.36355665, "OBJECTID_1": 2846, "PARCEL_NO_": "102701021200", "Tax_Legal_": "BONNE RESOLUTION 14-60 & 61 LT. NORTHSIDE", "Name": "SMITH, WINSTON & WENCLESAS", "Address": "PO Box 8664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56100, "Improved_V": 263700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.53426899, "SHAPE_Area": 1083.4551131600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355853.885999999940395, 259308.851700000464916 ], [ 355840.313500002026558, 259292.908599998801947 ], [ 355814.4324000030756, 259301.984900001436472 ], [ 355833.514200001955032, 259333.805100001394749 ], [ 355860.190800003707409, 259326.001899998635054 ], [ 355853.885999999940395, 259308.851700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702014100", "MAP": "D9-1574-T80", "PARCEL_NAM": "6EA-1", "ACRE": ".61", "LONGITUDE": -64.95475166, "LATITUDE": 18.36320538, "OBJECTID_1": 2978, "PARCEL_NO_": "102702014100", "Tax_Legal_": "HULL 6EA-1 LT. NORTHSIDE", "Name": "SARAH E HAYNES TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83800, "Improved_V": 204400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.42488568100001, "SHAPE_Area": 3555.0320342700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356229.026699997484684, 259272.751299999654293 ], [ 356241.099299997091293, 259293.745999999344349 ], [ 356249.354299999773502, 259308.562699999660254 ], [ 356258.808899998664856, 259318.756099998950958 ], [ 356284.5287000015378, 259303.932599999010563 ], [ 356287.963600002229214, 259301.529500000178814 ], [ 356309.020300000905991, 259279.572900000959635 ], [ 356303.731899999082088, 259276.190400000661612 ], [ 356280.773699998855591, 259261.506299998611212 ], [ 356278.53490000218153, 259260.074299998581409 ], [ 356243.639300003647804, 259232.177299998700619 ], [ 356233.253200002014637, 259257.973200000822544 ], [ 356230.817299999296665, 259266.663499999791384 ], [ 356229.026699997484684, 259272.751299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95020578, "LATITUDE": 18.36348796, "OBJECTID_1": 3039, "PARCEL_NO_": "102702026200", "Tax_Legal_": "HULL 11K LT NORTH SIDE", "Name": "FRIEDENBERG, CRAIG R. & HUDSON, KATHY A.", "Address": "6500 REDHOOK PLAZA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103100, "Improved_V": 248400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.033811141, "SHAPE_Area": 1754.24147462 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356764.552599996328354, 259276.408399999141693 ], [ 356765.427199997007847, 259268.394000001251698 ], [ 356745.062600001692772, 259292.503100000321865 ], [ 356729.587999999523163, 259310.530499998480082 ], [ 356701.117200002074242, 259339.639400001615286 ], [ 356717.273999996483326, 259336.183100000023842 ], [ 356748.752499997615814, 259332.640999998897314 ], [ 356761.667900003492832, 259331.05799999833107 ], [ 356764.552599996328354, 259276.408399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702022300", "MAP": "B9-408-T73", "PARCEL_NAM": "5H-1B", "ACRE": null, "LONGITUDE": -64.9542759, "LATITUDE": 18.36350402, "OBJECTID_1": 3024, "PARCEL_NO_": "102702022300", "Tax_Legal_": "HULL 5H-1B LT. NORTHSIDE QTR.", "Name": "SARAH E HAYNES TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.124582253, "SHAPE_Area": 1706.7605446 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356344.980599999427795, 259306.960400000214577 ], [ 356322.572899997234344, 259286.934300001710653 ], [ 356303.901799999177456, 259301.55799999833107 ], [ 356278.765900000929832, 259317.817600000649691 ], [ 356277.938000001013279, 259320.343899998813868 ], [ 356279.530799999833107, 259322.679000001400709 ], [ 356298.032899998128414, 259327.896699998527765 ], [ 356318.131300002336502, 259335.027199998497963 ], [ 356344.980599999427795, 259306.960400000214577 ] ] ], [ [ [ 356314.03490000218153, 259282.296700000762939 ], [ 356309.020300000905991, 259279.572900000959635 ], [ 356287.963600002229214, 259301.529500000178814 ], [ 356304.808799996972084, 259289.744199998676777 ], [ 356314.03490000218153, 259282.296700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001030800", "MAP": "D9-1492-T79", "PARCEL_NAM": "C-5-B-6/C-2-1", "ACRE": null, "LONGITUDE": -64.91076867, "LATITUDE": 18.36351913, "OBJECTID_1": 5227, "PARCEL_NO_": "103001030800", "Tax_Legal_": "LOVENLUND C-5-B-6&C-2-I GT. NORTHSIDE", "Name": "PERKINS, WILLIAM M. & DORON M.", "Address": "PO BOX 212434", "City": "Anchorage", "State": "Alaska", "Zip": 99521, "Country": "United States", "Land_Value": 176300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.43278551200001, "SHAPE_Area": 1498.33569046 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360902.402500003576279, 259327.3733000010252 ], [ 360899.189900003373623, 259325.869300000369549 ], [ 360882.779500000178814, 259359.087799999862909 ], [ 360891.623800002038479, 259362.115499999374151 ], [ 360922.983599998056889, 259372.504700001329184 ], [ 360925.449299998581409, 259367.036400001496077 ], [ 360943.33389999717474, 259350.084199998527765 ], [ 360902.402500003576279, 259327.3733000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95209796, "LATITUDE": 18.3634447, "OBJECTID_1": 3042, "PARCEL_NO_": "102702026500", "Tax_Legal_": "HULL 5BC LT. NORTHSIDE QTR", "Name": "FABRI, ALEXANDER & PAMELA", "Address": "5143 Palm Psge", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 113100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.58940941500001, "SHAPE_Area": 1948.2810765500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356533.101300001144409, 259279.158100001513958 ], [ 356523.892099998891354, 259318.979400001466274 ], [ 356522.225500002503395, 259325.298599999397993 ], [ 356520.524700000882149, 259335.628299999982119 ], [ 356553.578199997544289, 259336.5320999994874 ], [ 356566.201499998569489, 259274.573899999260902 ], [ 356533.101300001144409, 259279.158100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042300", "MAP": "A9-157-T71", "PARCEL_NAM": "14-3", "ACRE": null, "LONGITUDE": -64.9573243, "LATITUDE": 18.36352176, "OBJECTID_1": 3116, "PARCEL_NO_": "102702042300", "Tax_Legal_": "BONNE RESOLUTION 14 3 LITTLE NORTHSIDE QTR", "Name": "EDGECOMBE, DAVID & LENORE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37400, "Improved_V": 249300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.586954687, "SHAPE_Area": 824.82559868199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355985.131499998271465, 259331.457400001585484 ], [ 356010.301600001752377, 259311.187300000339746 ], [ 356006.392300002276897, 259296.800999999046326 ], [ 355987.841700002551079, 259297.282400000840425 ], [ 355978.137199997901917, 259300.58049999922514 ], [ 355973.274099998176098, 259303.495999999344349 ], [ 355973.238200001418591, 259307.717599999159575 ], [ 355979.559199996292591, 259322.968100000172853 ], [ 355985.131499998271465, 259331.457400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026600", "MAP": "D9-1559-T80", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95283468, "LATITUDE": 18.3635708, "OBJECTID_1": 3043, "PARCEL_NO_": "102702026600", "Tax_Legal_": "HULL 5BD LT NORTHSIDE", "Name": "ULMANN, JR. & L. S", "Address": "7 Hill St", "City": "Bedford Hills", "State": "New York", "Zip": 10507, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.08820387399999, "SHAPE_Area": 2353.1831981199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356414.274800002574921, 259326.197200000286102 ], [ 356416.526600003242493, 259332.877199999988079 ], [ 356520.524700000882149, 259335.628299999982119 ], [ 356522.225500002503395, 259325.298599999397993 ], [ 356498.0253000035882, 259326.36710000038147 ], [ 356471.728100001811981, 259289.632699999958277 ], [ 356440.908399999141693, 259310.489799998700619 ], [ 356423.077799998223782, 259321.109600000083447 ], [ 356414.274800002574921, 259326.197200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004011100", "MAP": "D9-7567-T005", "PARCEL_NAM": "17-1", "ACRE": ".755", "LONGITUDE": -64.96845329, "LATITUDE": 18.36319597, "OBJECTID_1": 347, "PARCEL_NO_": "101004011100", "Tax_Legal_": "NELTJEBERG ESTATE 17-1 (Consolidated) No.6 LITTLE NORTHSIDE QTR.", "Name": "SAPLIS, JEFFREY M. & ANNA", "Address": "PO Box 308593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75600, "Improved_V": 412200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 390.114386045, "SHAPE_Area": 4511.7248136500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354848.666599996387959, 259285.063700001686811 ], [ 354831.765600003302097, 259243.039599999785423 ], [ 354828.943400003015995, 259236.689599998295307 ], [ 354846.053099997341633, 259232.456199999898672 ], [ 354891.086999997496605, 259226.686799999326468 ], [ 354878.106899999082088, 259222.760800000280142 ], [ 354868.465300001204014, 259218.671100001782179 ], [ 354867.21339999884367, 259216.919900000095367 ], [ 354772.187700003385544, 259244.615800000727177 ], [ 354773.057899996638298, 259248.709899999201298 ], [ 354776.205799996852875, 259257.812699999660254 ], [ 354787.319799996912479, 259278.379700001329184 ], [ 354788.844300001859665, 259288.735800001770258 ], [ 354788.571000002324581, 259320.81980000063777 ], [ 354848.666599996387959, 259285.063700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90048527, "LATITUDE": 18.3632916, "OBJECTID_1": 5363, "PARCEL_NO_": "103002032700", "Tax_Legal_": "LOVENLUND D-15 36 GT. NORTHSIDE", "Name": "LOVENLUND ESTATES LLC", "Address": "Liberty Ln", "City": "Hampton", "State": "New Hampshire", "Zip": 3842, "Country": "United States", "Land_Value": 337200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.93452758199999, "SHAPE_Area": 2316.8632927399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362027.127499997615814, 259346.077799998223782 ], [ 361995.321000002324581, 259293.466299999505281 ], [ 361980.685000002384186, 259307.700899999588728 ], [ 361974.184199996292591, 259313.558299999684095 ], [ 361970.116700001060963, 259317.746899999678135 ], [ 362001.039599999785423, 259379.428199999034405 ], [ 362006.728699997067451, 259374.197399999946356 ], [ 362012.491599999368191, 259360.312399998307228 ], [ 362015.759999997913837, 259355.272900000214577 ], [ 362020.639200001955032, 259350.457699999213219 ], [ 362027.127499997615814, 259346.077799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802015100", "MAP": "D9-6293-T97", "PARCEL_NAM": "2-K-3", "ACRE": ".500", "LONGITUDE": -64.93913087, "LATITUDE": 18.36341404, "OBJECTID_1": 4069, "PARCEL_NO_": "102802015100", "Tax_Legal_": "LERKENLUND 2K-3 G. NORTHSIDE QTR", "Name": "LAPLACE, ROBERT & AIMEE & DARYL BRYAN", "Address": "7794 Est St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.49624322700001, "SHAPE_Area": 1279.55443494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357936.715199999511242, 259333.986900001764297 ], [ 357907.812200002372265, 259280.745099999010563 ], [ 357904.708999998867512, 259282.151399999856949 ], [ 357898.001299999654293, 259286.837799999862909 ], [ 357899.817100003361702, 259292.089800000190735 ], [ 357896.14130000025034, 259294.039900001138449 ], [ 357894.282399997115135, 259301.104800000786781 ], [ 357917.193400003015995, 259345.983600001782179 ], [ 357936.715199999511242, 259333.986900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94983965, "LATITUDE": 18.36339712, "OBJECTID_1": 3017, "PARCEL_NO_": "102702021600", "Tax_Legal_": "11DA-5 HULL LITTLE NORTHSIDE", "Name": "NICOLOSI, MARTINE GOURANTON", "Address": "PO Box 306246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86900, "Improved_V": 290500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.966401045, "SHAPE_Area": 2101.5476585299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356800.376299999654293, 259330.741500001400709 ], [ 356801.662699997425079, 259274.390099998563528 ], [ 356764.552599996328354, 259276.408399999141693 ], [ 356761.667900003492832, 259331.05799999833107 ], [ 356800.376299999654293, 259330.741500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95623761, "LATITUDE": 18.36341856, "OBJECTID_1": 2942, "PARCEL_NO_": "102702010200", "Tax_Legal_": "HULL BAY 6 I-4 LT NORTHSIDE", "Name": "WORNER TRUST", "Address": "7812 ESTATE PETER", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39300, "Improved_V": 146700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.25742082100001, "SHAPE_Area": 1295.61760491 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356129.678999997675419, 259307.098099999129772 ], [ 356119.414499998092651, 259281.471799999475479 ], [ 356076.620600000023842, 259288.087699998170137 ], [ 356105.333200000226498, 259325.263999998569489 ], [ 356129.678999997675419, 259307.098099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94945566, "LATITUDE": 18.36339061, "OBJECTID_1": 3770, "PARCEL_NO_": "102801019300", "Tax_Legal_": "HULL 11DA-4 LT. NORTHSIDE", "Name": "VINEYARD, ZACHARY M. & STEPHAINE D.", "Address": "PO Box 10211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71100, "Improved_V": 203800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.588340445, "SHAPE_Area": 2469.3705004200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356847.945200003683567, 259331.552999999374151 ], [ 356840.385499998927116, 259272.385000001639128 ], [ 356801.662699997425079, 259274.390099998563528 ], [ 356800.376299999654293, 259330.741500001400709 ], [ 356845.535199999809265, 259330.477899998426437 ], [ 356847.945200003683567, 259331.552999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94911388, "LATITUDE": 18.36336261, "OBJECTID_1": 3746, "PARCEL_NO_": "102801016900", "Tax_Legal_": "HULL 11DA-3 LT. NORTHSIDE", "Name": "MORRISON, JOSHUA P.", "Address": "8025 Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023500, "Country": "United States", "Land_Value": 100900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.967496504, "SHAPE_Area": 1736.69721903 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356876.85080000013113, 259326.752099998295307 ], [ 356871.041599996387959, 259270.736000001430511 ], [ 356840.385499998927116, 259272.385000001639128 ], [ 356847.945200003683567, 259331.552999999374151 ], [ 356876.85080000013113, 259326.752099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96261247, "LATITUDE": 18.36347434, "OBJECTID_1": 2833, "PARCEL_NO_": "102701015700", "Tax_Legal_": "DOROTHEA 20-I LITTLE NORTHSIDE QTR", "Name": "JACKSON, JULIAN A", "Address": "PO Box 10246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.162202270700007, "SHAPE_Area": 425.17756667499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355445.045999996364117, 259310.149599999189377 ], [ 355430.758900001645088, 259283.434900000691414 ], [ 355419.400399997830391, 259291.574599999934435 ], [ 355433.683899998664856, 259318.711399998515844 ], [ 355445.045999996364117, 259310.149599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702027200", "MAP": "D9-5421-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95337571, "LATITUDE": 18.36317449, "OBJECTID_1": 3048, "PARCEL_NO_": "102702027200", "Tax_Legal_": "HULL 5B-F LITTLE NORTHSIDE QTR", "Name": "NIELSEN, RICHARD S.", "Address": "PO BOX 41774", "City": "Miami Beach", "State": "Florida", "Zip": 33141, "Country": "United States", "Land_Value": 86900, "Improved_V": 206000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.986465538, "SHAPE_Area": 1921.54611574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356382.875900000333786, 259233.048099998384714 ], [ 356414.274800002574921, 259326.197200000286102 ], [ 356423.077799998223782, 259321.109600000083447 ], [ 356426.687899999320507, 259275.965199999511242 ], [ 356420.38120000064373, 259259.026000000536442 ], [ 356405.126000002026558, 259251.30180000141263 ], [ 356403.668099999427795, 259233.135800000280142 ], [ 356388.342699997127056, 259233.643699999898672 ], [ 356382.875900000333786, 259233.048099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95043357, "LATITUDE": 18.36320461, "OBJECTID_1": 3016, "PARCEL_NO_": "102702021500", "Tax_Legal_": "11, 11-D & 11-DE HULL BAY LITTLE NORTHSIDE QUARTER", "Name": "TYLER RICE and ELIZABETH NURSE", "Address": "PO Box 8876", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81200, "Improved_V": 341200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.93722264100001, "SHAPE_Area": 2058.3153746100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356746.007399998605251, 259276.256599999964237 ], [ 356747.810599997639656, 259253.895399998873472 ], [ 356702.612199999392033, 259258.80290000140667 ], [ 356697.19709999859333, 259326.519600000232458 ], [ 356730.536399997770786, 259293.861800000071526 ], [ 356746.007399998605251, 259276.256599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042500", "MAP": "D9-8632-T012", "PARCEL_NAM": "14-4-REM", "ACRE": ".301", "LONGITUDE": -64.95695039, "LATITUDE": 18.36341661, "OBJECTID_1": 3118, "PARCEL_NO_": "102702042500", "Tax_Legal_": "BONNE RESOLUTION 14-4 5 LITTLE NORTHSIDE", "Name": "ROMNEY(TRUSTEE), EILEEN", "Address": "PO Box 8105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52700, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.84018335600001, "SHAPE_Area": 1094.03371485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356042.231499999761581, 259284.917899999767542 ], [ 356024.602899998426437, 259281.607599999755621 ], [ 356022.595899999141693, 259287.856600001454353 ], [ 356019.332900002598763, 259292.262800000607967 ], [ 356012.03830000013113, 259296.636100001633167 ], [ 356006.392300002276897, 259296.800999999046326 ], [ 356010.301600001752377, 259311.187300000339746 ], [ 356019.899999998509884, 259320.3429000005126 ], [ 356062.056599996984005, 259293.879099998623133 ], [ 356042.231499999761581, 259284.917899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94498312, "LATITUDE": 18.3635333, "OBJECTID_1": 3783, "PARCEL_NO_": "102801020800", "Tax_Legal_": "ST PETER 25C LITTLE NORTHSIDE QTR", "Name": "CSANYI, VALENTINE & OTHERS", "Address": "7157 Open Hearth Dr", "City": "Kernersville", "State": "North Carolina", "Zip": 27284, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.05721928899999, "SHAPE_Area": 606.70357338199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357321.42679999768734, 259314.741099998354912 ], [ 357290.761699996888638, 259317.44539999961853 ], [ 357267.358900003135204, 259319.575899999588728 ], [ 357268.071699999272823, 259330.558600001037121 ], [ 357324.562100000679493, 259325.321400001645088 ], [ 357321.42679999768734, 259314.741099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95821067, "LATITUDE": 18.36332612, "OBJECTID_1": 2852, "PARCEL_NO_": "102701022000", "Tax_Legal_": "14-55&56-1 BONNE RESOLUTION No.5 LITTLE NORTHSIDE QTR", "Name": "MICHAEL W MARTIN AND MELANIE H MARTIN FAMILY TRUST", "Address": "PO BOX 8469", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56900, "Improved_V": 273400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.188118772, "SHAPE_Area": 1613.4793359 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355916.17339999973774, 259285.719000000506639 ], [ 355912.231799997389317, 259275.132100000977516 ], [ 355901.015299998223782, 259266.596500001847744 ], [ 355892.20160000026226, 259259.980500001460314 ], [ 355870.260399997234344, 259279.854800000786781 ], [ 355891.798799999058247, 259307.262099999934435 ], [ 355896.552199997007847, 259317.222500000149012 ], [ 355897.344099998474121, 259318.917700000107288 ], [ 355922.494400002062321, 259300.969500001519918 ], [ 355916.17339999973774, 259285.719000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702020700", "MAP": "D9-5421-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95322953, "LATITUDE": 18.36312849, "OBJECTID_1": 3010, "PARCEL_NO_": "102702020700", "Tax_Legal_": "5B REM. ESTATE HULL LITTLE NORTHSIDE QTR.", "Name": "BRYAN, LAWRENCE", "Address": "Estate Hull 5BB", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.913935702, "SHAPE_Area": 1183.1120762200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356440.908399999141693, 259310.489799998700619 ], [ 356424.637599997222424, 259232.674199998378754 ], [ 356403.668099999427795, 259233.135800000280142 ], [ 356405.126000002026558, 259251.30180000141263 ], [ 356420.38120000064373, 259259.026000000536442 ], [ 356426.687899999320507, 259275.965199999511242 ], [ 356423.077799998223782, 259321.109600000083447 ], [ 356440.908399999141693, 259310.489799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002034400", "MAP": null, "PARCEL_NAM": "D-4-A", "ACRE": null, "LONGITUDE": -64.90209346, "LATITUDE": 18.36332919, "OBJECTID_1": 5379, "PARCEL_NO_": "103002034400", "Tax_Legal_": "LOVENLUND D-4-A#42 GT.NORTHSIDE", "Name": "CARVAL ROCK LLC & OKEMO LLC", "Address": "29 Splitrock Rd", "City": "Norwalk", "State": "Connecticut", "Zip": 6854, "Country": "United States", "Land_Value": 170000, "Improved_V": 724900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.53692163400001, "SHAPE_Area": 2097.6346177 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361856.907499998807907, 259355.028299998492002 ], [ 361845.168799996376038, 259313.13569999858737 ], [ 361829.848899997770786, 259313.010299999266863 ], [ 361801.590199999511242, 259317.212000001221895 ], [ 361810.080200001597404, 259361.822200000286102 ], [ 361814.89469999819994, 259364.605799999088049 ], [ 361834.296499997377396, 259358.853999998420477 ], [ 361856.907499998807907, 259355.028299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95245042000001, "LATITUDE": 18.36336114, "OBJECTID_1": 3041, "PARCEL_NO_": "102702026400", "Tax_Legal_": "HULL 5BE LT. NORTHSIDE QTR", "Name": "JOHANSON, KRISTIAN S", "Address": "5B-E Estate Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 115800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.66812410599999, "SHAPE_Area": 1609.9898141799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356499.194899998605251, 259283.735800001770258 ], [ 356474.267499998211861, 259275.510200001299381 ], [ 356475.019900001585484, 259281.849199999123812 ], [ 356478.184000000357628, 259289.052200000733137 ], [ 356500.503600001335144, 259319.421300001442432 ], [ 356523.892099998891354, 259318.979400001466274 ], [ 356533.101300001144409, 259279.158100001513958 ], [ 356499.194899998605251, 259283.735800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802016000", "MAP": "D9-7086-T002", "PARCEL_NAM": "1-4-B2A", "ACRE": ".55", "LONGITUDE": -64.94053514, "LATITUDE": 18.36316489, "OBJECTID_1": 4078, "PARCEL_NO_": "102802016000", "Tax_Legal_": "1-4B2-A ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "QUERRARD, WARREN J", "Address": "PO Box 153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 91500, "Improved_V": 368300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.89098660100001, "SHAPE_Area": 2622.6673564399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357795.417300000786781, 259238.193799998611212 ], [ 357747.114500001072884, 259273.921100001782179 ], [ 357730.133699998259544, 259329.063000001013279 ], [ 357739.048100002110004, 259323.85869999974966 ], [ 357777.923699997365475, 259303.911899998784065 ], [ 357784.384999997913837, 259302.69819999858737 ], [ 357786.796800002455711, 259303.562300000339746 ], [ 357792.028399996459484, 259257.375599998980761 ], [ 357795.417300000786781, 259238.193799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701014300", "MAP": "D9-1859-T81", "PARCEL_NAM": "14A-5", "ACRE": null, "LONGITUDE": -64.96240536000001, "LATITUDE": 18.36339353, "OBJECTID_1": 2820, "PARCEL_NO_": "102701014300", "Tax_Legal_": "DOROTHEA 14A-5 LT. NORTHSIDE", "Name": "JACKSON, JULIAN A.", "Address": "PO Box 10246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37400, "Improved_V": 227200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.57649382, "SHAPE_Area": 983.627503832 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355461.479699999094009, 259274.187100000679493 ], [ 355430.758900001645088, 259283.434900000691414 ], [ 355445.045999996364117, 259310.149599999189377 ], [ 355479.818099997937679, 259298.612900000065565 ], [ 355475.057599999010563, 259289.497000001370907 ], [ 355470.230499997735023, 259288.190900001674891 ], [ 355464.62219999730587, 259283.923099998384714 ], [ 355461.479699999094009, 259274.187100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95782882, "LATITUDE": 18.36333336, "OBJECTID_1": 3122, "PARCEL_NO_": "102702042900", "Tax_Legal_": "BONNE RESOLUTION 14-49 LITTLE NORTHSIDE", "Name": "THE SALVATION ARMY", "Address": "P.O. BOX C-635", "City": "WEST NYACK", "State": "New York", "Zip": 10994, "Country": "United States", "Land_Value": 39100, "Improved_V": 228500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.66891621, "SHAPE_Area": 1277.40646032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355942.990299999713898, 259261.45160000026226 ], [ 355916.17339999973774, 259285.719000000506639 ], [ 355922.494400002062321, 259300.969500001519918 ], [ 355928.032499998807907, 259313.469300001859665 ], [ 355960.4037000015378, 259299.802099999040365 ], [ 355946.966099999845028, 259268.028099998831749 ], [ 355942.990299999713898, 259261.45160000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701014200", "MAP": "D9-1859-T81", "PARCEL_NAM": "14A-4", "ACRE": null, "LONGITUDE": -64.9618863, "LATITUDE": 18.36339849, "OBJECTID_1": 2819, "PARCEL_NO_": "102701014200", "Tax_Legal_": "DOROTHEA ESTATE 14A-4 LT. NORTHSIDE", "Name": "COLBOURNE, ELLERNEY", "Address": "#22B Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38800, "Improved_V": 167700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.37745101300001, "SHAPE_Area": 1105.5803844699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355495.852600000798702, 259309.509899999946356 ], [ 355534.605999998748302, 259303.916499998420477 ], [ 355518.731499999761581, 259274.233500000089407 ], [ 355507.41610000282526, 259277.307300001382828 ], [ 355483.948600001633167, 259287.03660000115633 ], [ 355495.852600000798702, 259309.509899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701014500", "MAP": "D9-2950-T85", "PARCEL_NAM": "14B-2", "ACRE": ".25", "LONGITUDE": -64.96152801, "LATITUDE": 18.36336991, "OBJECTID_1": 2822, "PARCEL_NO_": "102701014500", "Tax_Legal_": "DOROTHEA 14B-2 LT. NORTHSIDE", "Name": "FREDERICKS, JEFFREY J. & LORRAINE", "Address": "PO Box 8174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54800, "Improved_V": 293900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.15471982099999, "SHAPE_Area": 1205.4926687 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355518.731499999761581, 259274.233500000089407 ], [ 355534.605999998748302, 259303.916499998420477 ], [ 355537.780900001525879, 259309.853100001811981 ], [ 355583.069300003349781, 259294.391800001263618 ], [ 355552.5625, 259278.521200001239777 ], [ 355546.936200000345707, 259276.364199999719858 ], [ 355531.639700002968311, 259273.494800001382828 ], [ 355518.731499999761581, 259274.233500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802015300", "MAP": "D9-6293-T97", "PARCEL_NAM": "2-K-5", "ACRE": ".76", "LONGITUDE": -64.93961389, "LATITUDE": 18.36312434, "OBJECTID_1": 4071, "PARCEL_NO_": "102802015300", "Tax_Legal_": "LERKENLUND 2K-5 G. NORTHSIDE QTR", "Name": "BRYAN, RONNIE M", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 110900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.554646228, "SHAPE_Area": 3292.7024573799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357850.882100000977516, 259258.701699998229742 ], [ 357820.928000003099442, 259272.599800001829863 ], [ 357839.266400001943111, 259297.025600001215935 ], [ 357845.645000003278255, 259305.521600000560284 ], [ 357862.386900000274181, 259328.034499999135733 ], [ 357887.301100000739098, 259294.305799998342991 ], [ 357883.454499997198582, 259287.264499999582767 ], [ 357900.843699999153614, 259277.317999999970198 ], [ 357881.647799998521805, 259244.176899999380112 ], [ 357850.882100000977516, 259258.701699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801010600", "MAP": "F9-233-T57", "PARCEL_NAM": "21A", "ACRE": null, "LONGITUDE": -64.94692401, "LATITUDE": 18.3635883, "OBJECTID_1": 3688, "PARCEL_NO_": "102801010600", "Tax_Legal_": "ST. PETER 21A LITTLE NORTHSIDE QTR", "Name": "TODMAN, JULIE SMITH & BYRON A", "Address": "PO Box 11011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.21559829, "SHAPE_Area": 1116.4768174000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357143.61599999666214, 259331.135499998927116 ], [ 357129.273100003600121, 259319.448300000280142 ], [ 357043.537600003182888, 259322.541799999773502 ], [ 357042.55629999935627, 259334.313999999314547 ], [ 357143.61599999666214, 259331.135499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95863844, "LATITUDE": 18.36335138, "OBJECTID_1": 2849, "PARCEL_NO_": "102701021600", "Tax_Legal_": "BONNE RESOLUTION 14-39 LITTLE NORTHSIDE", "Name": "ICILMA HODGE FAMILY TRUST", "Address": "7595 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 207400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.846330154, "SHAPE_Area": 667.38265793000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355853.376299999654293, 259274.017099998891354 ], [ 355832.32769999653101, 259283.766199998557568 ], [ 355840.313500002026558, 259292.908599998801947 ], [ 355853.885999999940395, 259308.851700000464916 ], [ 355870.924599997699261, 259296.53660000115633 ], [ 355853.376299999654293, 259274.017099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91059921, "LATITUDE": 18.36329439, "OBJECTID_1": 5229, "PARCEL_NO_": "103001031000", "Tax_Legal_": "LOVENLUND C-2-J&C-5-B-5 81 GRT NNORTHSIDE QRT", "Name": "HODGE, RAPHAEL", "Address": "PO Box 8061", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.64265277300001, "SHAPE_Area": 1501.9076354900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360961.25789999961853, 259328.488299999386072 ], [ 360913.111199997365475, 259300.863200001418591 ], [ 360909.029200002551079, 259306.74040000140667 ], [ 360899.189900003373623, 259325.869300000369549 ], [ 360902.402500003576279, 259327.3733000010252 ], [ 360943.33389999717474, 259350.084199998527765 ], [ 360948.213100001215935, 259345.269000001251698 ], [ 360961.25789999961853, 259328.488299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801020900", "MAP": null, "PARCEL_NAM": "25D", "ACRE": null, "LONGITUDE": -64.94512677, "LATITUDE": 18.36339129, "OBJECTID_1": 3784, "PARCEL_NO_": "102801020900", "Tax_Legal_": "ST PETER 25D LITTLE NORTHSIDE QTR", "Name": "CSANYI, VALENTINE & WILLIAM", "Address": "7502 Barrett Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22600, "Improved_V": 21200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.154940153, "SHAPE_Area": 606.36205861300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357297.386699996888638, 259297.023600000888109 ], [ 357266.761200003325939, 259295.084199998527765 ], [ 357267.358900003135204, 259319.575899999588728 ], [ 357290.761699996888638, 259317.44539999961853 ], [ 357297.386699996888638, 259297.023600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94407785, "LATITUDE": 18.36324669, "OBJECTID_1": 3818, "PARCEL_NO_": "102801025100", "Tax_Legal_": "ST PETER 5C LITTLE NORTHSIDE QTR", "Name": "LEDEE, PHILIBERT & MARGOLAINE, CO-TRUSTEES", "Address": "7500 Barrett", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 74700, "Improved_V": 125700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.55627670699999, "SHAPE_Area": 865.67547444900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357405.662699997425079, 259270.889800000935793 ], [ 357387.877099998295307, 259276.232700001448393 ], [ 357374.932899996638298, 259281.192999999970198 ], [ 357386.693099997937679, 259320.552600000053644 ], [ 357389.126500003039837, 259318.883799999952316 ], [ 357396.500200003385544, 259305.223099999129772 ], [ 357398.127199999988079, 259303.547600001096725 ], [ 357404.705300003290176, 259288.613800000399351 ], [ 357406.391699999570847, 259279.972800001502037 ], [ 357405.662699997425079, 259270.889800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602024300", "MAP": "D9-5232-T92", "PARCEL_NAM": "16-A", "ACRE": ".55", "LONGITUDE": -64.96655506, "LATITUDE": 18.36309449, "OBJECTID_1": 2441, "PARCEL_NO_": "102602024300", "Tax_Legal_": "NELTJEBERG 16A LITTLE NORTH SIDE", "Name": "ROSSI, RICK & STEPHEN FLATLEY", "Address": "7779 St Peter's Mt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.69315847199999, "SHAPE_Area": 1836.99962357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355034.086900003254414, 259276.225900001823902 ], [ 355034.515299998223782, 259225.940799999982119 ], [ 355000.220600001513958, 259233.6064000017941 ], [ 354994.799800001084805, 259284.445700000971556 ], [ 355034.086900003254414, 259276.225900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002034100", "MAP": null, "PARCEL_NAM": "D-4-B", "ACRE": null, "LONGITUDE": -64.90168166, "LATITUDE": 18.36327682, "OBJECTID_1": 5376, "PARCEL_NO_": "103002034100", "Tax_Legal_": "LOVENLUND ESTATE D-4-B(40) GREAT NORTHSIDE QTR.", "Name": "BAILY, CYNTHIA", "Address": "400 5th Ave Apt1127", "City": "Pittsburgh", "State": "Pennsylvania", "Zip": 15219, "Country": "United States", "Land_Value": 189200, "Improved_V": 612700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.42370827400001, "SHAPE_Area": 1700.3417873599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361899.999200001358986, 259346.477800000458956 ], [ 361884.225500002503395, 259308.302999999374151 ], [ 361880.678900003433228, 259309.626600001007318 ], [ 361864.522100001573563, 259313.083000000566244 ], [ 361845.168799996376038, 259313.13569999858737 ], [ 361856.907499998807907, 259355.028299998492002 ], [ 361879.518399998545647, 259351.202500000596046 ], [ 361899.999200001358986, 259346.477800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95299551, "LATITUDE": 18.36307369, "OBJECTID_1": 3044, "PARCEL_NO_": "102702026700", "Tax_Legal_": "HULL 5B-B LT. NORTHSIDE", "Name": "BRYAN, LAWRENCE & MAUREEN", "Address": "7640 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86900, "Improved_V": 338000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.966944369, "SHAPE_Area": 2506.9833185799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356464.98200000077486, 259229.626899998635054 ], [ 356424.637599997222424, 259232.674199998378754 ], [ 356440.908399999141693, 259310.489799998700619 ], [ 356471.728100001811981, 259289.632699999958277 ], [ 356467.786399997770786, 259279.045699998736382 ], [ 356464.98200000077486, 259229.626899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801013600", "MAP": "F9-820-T61", "PARCEL_NAM": "25DA", "ACRE": ".083", "LONGITUDE": -64.94488326, "LATITUDE": 18.36339734, "OBJECTID_1": 3718, "PARCEL_NO_": "102801013600", "Tax_Legal_": "ST PETER 25DA LITTLE NORTHSIDE", "Name": "CSYANI, WILLIIAM & ROBERT,SHIRLEY EGLY", "Address": "25DA Est St. Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.232639273100006, "SHAPE_Area": 453.85723322799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357315.922899998724461, 259298.230799999088049 ], [ 357297.386699996888638, 259297.023600000888109 ], [ 357290.761699996888638, 259317.44539999961853 ], [ 357321.42679999768734, 259314.741099998354912 ], [ 357315.922899998724461, 259298.230799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102702012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95613123, "LATITUDE": 18.36283786, "OBJECTID_1": 2968, "PARCEL_NO_": "102702012800", "Tax_Legal_": "HULL 6I -ROAD LITTLE NORTHSIDE", "Name": "PFANNER, GUNTHER", "Address": "332 Parkside Rd", "City": "New London", "State": "New Hampshire", "Zip": 3257, "Country": "United States", "Land_Value": 5900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 618.173725805, "SHAPE_Area": 2023.3362577 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356075.773999996483326, 259198.154899999499321 ], [ 356072.539800003170967, 259199.183899998664856 ], [ 356062.747100003063679, 259212.824799999594688 ], [ 356062.680600002408028, 259220.634700000286102 ], [ 356066.615099996328354, 259232.065999999642372 ], [ 356070.580099999904633, 259239.908900000154972 ], [ 356077.784800000488758, 259246.089600000530481 ], [ 356085.806500002741814, 259251.010400000959635 ], [ 356111.51860000193119, 259261.775499999523163 ], [ 356119.414499998092651, 259281.471799999475479 ], [ 356129.678999997675419, 259307.098099999129772 ], [ 356136.982500001788139, 259301.66950000077486 ], [ 356123.559299997985363, 259268.206799998879433 ], [ 356123.580899998545647, 259265.673900000751019 ], [ 356141.43129999935627, 259252.732200000435114 ], [ 356151.994300000369549, 259243.319400001317263 ], [ 356158.475299999117851, 259239.783900000154972 ], [ 356163.336599998176098, 259237.079500000923872 ], [ 356167.407700002193451, 259232.468699999153614 ], [ 356169.04730000346899, 259229.315699998289347 ], [ 356170.740900002419949, 259219.830400001257658 ], [ 356168.401000000536442, 259210.52309999987483 ], [ 356163.631499998271465, 259202.462499998509884 ], [ 356159.625100001692772, 259199.474399998784065 ], [ 356155.604299999773502, 259198.175000000745058 ], [ 356141.094300001859665, 259197.63399999961257 ], [ 356106.467799998819828, 259192.073300000280142 ], [ 356099.214599996805191, 259191.591699998825788 ], [ 356091.94879999756813, 259192.587699998170137 ], [ 356075.773999996483326, 259198.154899999499321 ] ], [ [ 356081.062100000679493, 259239.994699999690056 ], [ 356075.452100001275539, 259235.938000001013279 ], [ 356072.282600000500679, 259229.368099998682737 ], [ 356068.335600003600121, 259219.41440000012517 ], [ 356068.375100001692772, 259214.770700000226498 ], [ 356076.528200000524521, 259204.282800000160933 ], [ 356093.511100001633167, 259198.511100001633167 ], [ 356099.968800000846386, 259197.7195999994874 ], [ 356107.218400001525879, 259198.6233000010252 ], [ 356131.382600001990795, 259201.776399999856949 ], [ 356141.040399998426437, 259203.966400001198053 ], [ 356153.941399998962879, 259204.072000000625849 ], [ 356157.962099999189377, 259205.371399998664856 ], [ 356162.751500003039837, 259211.110199999064207 ], [ 356163.521799996495247, 259215.338300000876188 ], [ 356163.415700003504753, 259227.791999999433756 ], [ 356159.337399996817112, 259233.247099999338388 ], [ 356152.861699998378754, 259236.149399999529123 ], [ 356148.005900003015995, 259238.220600001513958 ], [ 356137.439300000667572, 259248.055500000715256 ], [ 356125.265500001609325, 259257.243900001049042 ], [ 356121.223099999129772, 259258.477400001138449 ], [ 356117.195200003683567, 259258.022300001233816 ], [ 356113.188799999654293, 259255.034200001507998 ], [ 356089.078500002622604, 259245.548700001090765 ], [ 356081.062100000679493, 259239.994699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701021200", "MAP": "A9-157-T71", "PARCEL_NAM": "14-60", "ACRE": ".26", "LONGITUDE": -64.95901523000001, "LATITUDE": 18.36324807, "OBJECTID_1": 2846, "PARCEL_NO_": "102701021200", "Tax_Legal_": "BONNE RESOLUTION 14-60 & 61 LT. NORTHSIDE", "Name": "SMITH, WINSTON & WENCLESAS", "Address": "PO Box 8664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56100, "Improved_V": 263700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.82875059400001, "SHAPE_Area": 1137.58152382 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355807.526199996471405, 259260.765099998563528 ], [ 355784.207900002598763, 259252.974899999797344 ], [ 355790.582900002598763, 259261.89299999922514 ], [ 355796.896700002253056, 259277.987799998372793 ], [ 355814.4324000030756, 259301.984900001436472 ], [ 355840.313500002026558, 259292.908599998801947 ], [ 355832.32769999653101, 259283.766199998557568 ], [ 355814.763300001621246, 259263.14640000090003 ], [ 355807.526199996471405, 259260.765099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033700", "MAP": "A9-394-T91", "PARCEL_NAM": "29", "ACRE": ".813", "LONGITUDE": -64.96711676, "LATITUDE": 18.36311546, "OBJECTID_1": 473, "PARCEL_NO_": "101103033700", "Tax_Legal_": "NELTJEBERG 29/EASTERN PT LT. NORTHSIDE", "Name": "ROSSI, RICK", "Address": "7779 St Peter Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.35090543500002, "SHAPE_Area": 3747.4910486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354995.302699998021126, 259279.729800000786781 ], [ 355000.220600001513958, 259233.6064000017941 ], [ 354991.696199998259544, 259235.511700000613928 ], [ 354975.562799997627735, 259236.223999999463558 ], [ 354947.366999998688698, 259233.037999998778105 ], [ 354918.336199998855591, 259233.222500000149012 ], [ 354915.917900003492832, 259282.402499999850988 ], [ 354981.194399997591972, 259279.819400001317263 ], [ 354995.302699998021126, 259279.729800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95584091000001, "LATITUDE": 18.36314691, "OBJECTID_1": 2944, "PARCEL_NO_": "102702010400", "Tax_Legal_": "6I-12 HULL BAY LITTLE NORTHSIDE QUARTER", "Name": "WOODS, YVONNE I", "Address": "PO Box 9876", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44200, "Improved_V": 151100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.10402423299999, "SHAPE_Area": 1673.9053006900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356136.982500001788139, 259301.66950000077486 ], [ 356166.196800000965595, 259279.954900000244379 ], [ 356174.294100001454353, 259276.010400000959635 ], [ 356158.475299999117851, 259239.783900000154972 ], [ 356151.994300000369549, 259243.319400001317263 ], [ 356141.43129999935627, 259252.732200000435114 ], [ 356123.580899998545647, 259265.673900000751019 ], [ 356123.559299997985363, 259268.206799998879433 ], [ 356136.982500001788139, 259301.66950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90025165, "LATITUDE": 18.36307727, "OBJECTID_1": 5364, "PARCEL_NO_": "103002032800", "Tax_Legal_": "LOVENLUND D-16 /34 GT. NORTHSIDE", "Name": "LOVENLUND ESTATES LLC", "Address": "Liberty Ln", "City": "Hampton", "State": "New Hampshire", "Zip": 3842, "Country": "United States", "Land_Value": 333500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.06335918900001, "SHAPE_Area": 1846.406031 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362049.851700000464916, 259328.954199999570847 ], [ 362016.463100001215935, 259272.741099998354912 ], [ 362009.944300003349781, 259280.709300000220537 ], [ 361995.321000002324581, 259293.466299999505281 ], [ 362027.127499997615814, 259346.077799998223782 ], [ 362037.670699998736382, 259338.986999999731779 ], [ 362046.552699998021126, 259337.581999998539686 ], [ 362048.989600002765656, 259335.49100000038743 ], [ 362049.851700000464916, 259328.954199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002033900", "MAP": "D9-8862-T014", "PARCEL_NAM": "D-4-C", "ACRE": ".330", "LONGITUDE": -64.90124711, "LATITUDE": 18.36315497, "OBJECTID_1": 5374, "PARCEL_NO_": "103002033900", "Tax_Legal_": "D-4-C REM LOVENLUND (AKA LOT 37) NO.2 GREAT NORTHSIDE QTR", "Name": "MICHAEL K. & JENNIFER JOHNSON REV. FAM TRST", "Address": "PO Box 306988", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 160100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.490252462, "SHAPE_Area": 1652.20285332 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361944.203199997544289, 259330.622600000351667 ], [ 361926.788000002503395, 259292.483199998736382 ], [ 361891.195200003683567, 259305.701900001615286 ], [ 361907.796800002455711, 259344.679000001400709 ], [ 361936.906800001859665, 259335.206900000572205 ], [ 361944.203199997544289, 259330.622600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95747263, "LATITUDE": 18.36320343, "OBJECTID_1": 3121, "PARCEL_NO_": "102702042800", "Tax_Legal_": "BONNE RESOLUTION 14-23 No.5 LITTLE NORTHSIDE QTR.", "Name": "Mandy Walker, Jason, Alan & Patricia Frankle", "Address": "4331 De Carrillo Cmno", "City": "Tucson", "State": "Arizona", "Zip": 85750, "Country": "United States", "Land_Value": 32300, "Improved_V": 190600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.049139279, "SHAPE_Area": 973.41800980300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355978.520199999213219, 259255.620700001716614 ], [ 355955.065200001001358, 259263.872499998658895 ], [ 355966.917099997401237, 259292.467099998146296 ], [ 355971.745999999344349, 259293.562100000679493 ], [ 355984.686599999666214, 259289.024000000208616 ], [ 355999.205600000917912, 259288.509500000625849 ], [ 355980.923000000417233, 259257.540199998766184 ], [ 355978.520199999213219, 259255.620700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042600", "MAP": "D9-8632-T012", "PARCEL_NAM": "14-5-A", "ACRE": ".03", "LONGITUDE": -64.95672256, "LATITUDE": 18.36329059, "OBJECTID_1": 3119, "PARCEL_NO_": "102702042600", "Tax_Legal_": "BONNE RESOLUTION 14-5 LT NORTHSIDE", "Name": "ROMNEY(TRUSTEE), EILEEN", "Address": "PO Box 8105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44200, "Improved_V": 224300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.724955423799997, "SHAPE_Area": 146.97420523299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356060.264799997210503, 259278.24210000038147 ], [ 356042.231499999761581, 259284.917899999767542 ], [ 356062.056599996984005, 259293.879099998623133 ], [ 356060.264799997210503, 259278.24210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702010300", "MAP": "A9-92-T68", "PARCEL_NAM": "6I-6", "ACRE": null, "LONGITUDE": -64.95651137, "LATITUDE": 18.36301954, "OBJECTID_1": 2943, "PARCEL_NO_": "102702010300", "Tax_Legal_": "HULL BAY 6I-6B LITTLE NORTHSIDE", "Name": "RHYMER, GRACE", "Address": "PO Box 307395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.73382272800001, "SHAPE_Area": 2649.9603038599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356075.773999996483326, 259198.154899999499321 ], [ 356050.826899997889996, 259192.251200001686811 ], [ 356051.575599998235703, 259199.012299999594688 ], [ 356054.586900003254414, 259224.1570999994874 ], [ 356057.553199999034405, 259254.57880000025034 ], [ 356062.056599996984005, 259293.879099998623133 ], [ 356076.620600000023842, 259288.087699998170137 ], [ 356119.414499998092651, 259281.471799999475479 ], [ 356111.51860000193119, 259261.775499999523163 ], [ 356085.806500002741814, 259251.010400000959635 ], [ 356077.784800000488758, 259246.089600000530481 ], [ 356070.580099999904633, 259239.908900000154972 ], [ 356066.615099996328354, 259232.065999999642372 ], [ 356062.680600002408028, 259220.634700000286102 ], [ 356062.747100003063679, 259212.824799999594688 ], [ 356072.539800003170967, 259199.183899998664856 ], [ 356075.773999996483326, 259198.154899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94183224, "LATITUDE": 18.36300569, "OBJECTID_1": 3788, "PARCEL_NO_": "102801021400", "Tax_Legal_": "LERKENLUND 1-16 GR NORTHSIDE QTR", "Name": "JULIE BEATRICE DEITRICH REVOC LIVING TRUST", "Address": "7477 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 144000, "Improved_V": 16600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.88361548400002, "SHAPE_Area": 3715.7096861300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357697.689900003373623, 259256.603500001132488 ], [ 357604.301500000059605, 259238.951699998229742 ], [ 357574.819300003349781, 259292.11710000038147 ], [ 357577.193300001323223, 259297.413800001144409 ], [ 357593.386100001633167, 259289.73589999973774 ], [ 357609.544699996709824, 259286.068500000983477 ], [ 357624.10869999974966, 259280.276999998837709 ], [ 357624.861000001430511, 259286.61600000038743 ], [ 357611.10700000077486, 259291.991900000721216 ], [ 357594.948299996554852, 259295.659299999475479 ], [ 357581.187100000679493, 259301.87950000166893 ], [ 357582.778099998831749, 259304.425599999725819 ], [ 357691.162100002169609, 259265.627099998295307 ], [ 357697.689900003373623, 259256.603500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002038000", "MAP": "B9-496-T79", "PARCEL_NAM": "C-18", "ACRE": null, "LONGITUDE": -64.90306598, "LATITUDE": 18.36322333, "OBJECTID_1": 5569, "PARCEL_NO_": "103002038000", "Tax_Legal_": "C-18 REM LOVENLUND GREAT NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.68165578, "SHAPE_Area": 876.73966452900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361740.430900000035763, 259302.56810000166297 ], [ 361707.964400000870228, 259327.422499999403954 ], [ 361698.243699997663498, 259332.620299998670816 ], [ 361686.926600001752377, 259335.905200000852346 ], [ 361696.589699998497963, 259337.461899999529123 ], [ 361715.131300002336502, 259338.035900000482798 ], [ 361724.011600002646446, 259336.842000000178814 ], [ 361748.288999997079372, 259326.69709999859333 ], [ 361740.430900000035763, 259302.56810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702014300", "MAP": "D9-6640-T99", "PARCEL_NAM": "6E-E", "ACRE": ".55", "LONGITUDE": -64.95430482, "LATITUDE": 18.36297863, "OBJECTID_1": 2980, "PARCEL_NO_": "102702014300", "Tax_Legal_": "HULL 6EE LT. NORTHSIDE", "Name": "LORRAINE A BERRY", "Address": "7682 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38500, "Improved_V": 90900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.37120237600001, "SHAPE_Area": 1644.8736211299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356313.092600002884865, 259234.029399998486042 ], [ 356295.136200003325939, 259238.760099999606609 ], [ 356283.652400001883507, 259256.947200000286102 ], [ 356280.773699998855591, 259261.506299998611212 ], [ 356303.731899999082088, 259276.190400000661612 ], [ 356309.020300000905991, 259279.572900000959635 ], [ 356341.732100002467632, 259245.462999999523163 ], [ 356343.097499996423721, 259244.039200000464916 ], [ 356315.707999996840954, 259228.838300000876188 ], [ 356313.092600002884865, 259234.029399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701015100", "MAP": "A9-394-T91", "PARCEL_NAM": "16-B", "ACRE": ".54", "LONGITUDE": -64.96613037, "LATITUDE": 18.36296678, "OBJECTID_1": 2827, "PARCEL_NO_": "102701015100", "Tax_Legal_": "NELTJEBERG 16B LITTLE NORTH SIDE", "Name": "VANTERPOOL, LEON E. & CASSANDRA H", "Address": "40535 Tesoro Ln", "City": "Palmdale", "State": "California", "Zip": 93551, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.20964991100001, "SHAPE_Area": 2476.5246072800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355062.273999996483326, 259270.328400000929832 ], [ 355100.713899999856949, 259216.983399998396635 ], [ 355101.556100003421307, 259212.768399998545647 ], [ 355099.968699999153614, 259209.80009999871254 ], [ 355093.532600000500679, 259208.058600001037121 ], [ 355083.790299996733665, 259215.78940000012517 ], [ 355074.080399997532368, 259219.72069999948144 ], [ 355066.002899996936321, 259221.343299999833107 ], [ 355048.249600000679493, 259222.886799998581409 ], [ 355034.515299998223782, 259225.940799999982119 ], [ 355034.086900003254414, 259276.225900001823902 ], [ 355062.273999996483326, 259270.328400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96132092000001, "LATITUDE": 18.36303173, "OBJECTID_1": 2778, "PARCEL_NO_": "102701010400", "Tax_Legal_": "DOROTHEA 14B LITTLE NORTHSIDE", "Name": "NORTHSIDE DEV. INC.", "Address": "7917 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.40479184099999, "SHAPE_Area": 2690.6406919699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355599.495800003409386, 259259.273600000888109 ], [ 355576.456200003623962, 259218.766100000590086 ], [ 355538.431800000369549, 259233.442600000649691 ], [ 355544.574799999594688, 259269.589800000190735 ], [ 355555.832699999213219, 259273.270599998533726 ], [ 355582.325900003314018, 259286.997400000691414 ], [ 355587.984499998390675, 259285.355000000447035 ], [ 355590.423199996352196, 259283.05290000140667 ], [ 355599.495800003409386, 259259.273600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9572465, "LATITUDE": 18.36304845, "OBJECTID_1": 3120, "PARCEL_NO_": "102702042700", "Tax_Legal_": "BONNE RESOLUTION 14-22 LITTLE NORTHSIDE", "Name": "ROMNEY, LUDENCE, & ROMNEY, CARMAN", "Address": "PO Box 502012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37900, "Improved_V": 207300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.11481888200001, "SHAPE_Area": 1646.5013918300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356010.189400002360344, 259229.704300001263618 ], [ 355971.356899999082088, 259244.585200000554323 ], [ 355978.520199999213219, 259255.620700001716614 ], [ 355980.923000000417233, 259257.540199998766184 ], [ 355999.205600000917912, 259288.509500000625849 ], [ 356008.078599996864796, 259288.160000000149012 ], [ 356014.56870000064373, 259283.568999998271465 ], [ 356017.874899998307228, 259274.096900001168251 ], [ 356018.762100003659725, 259264.604899998754263 ], [ 356010.189400002360344, 259229.704300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701012900", "MAP": "D9-1859-T81", "PARCEL_NAM": "14-1", "ACRE": null, "LONGITUDE": -64.96253903, "LATITUDE": 18.3631527, "OBJECTID_1": 2800, "PARCEL_NO_": "102701012900", "Tax_Legal_": "14-1 DOROTHEA LITTLE NORTHSIDE", "Name": "BLYDEN-EDWARDS, FAITH", "Address": "PO Box 11673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 199500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.37505695599999, "SHAPE_Area": 991.28851382000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355452.026900000870228, 259247.934099998325109 ], [ 355416.462899997830391, 259257.775499999523163 ], [ 355430.758900001645088, 259283.434900000691414 ], [ 355461.479699999094009, 259274.187100000679493 ], [ 355457.572200000286102, 259259.589699998497963 ], [ 355452.026900000870228, 259247.934099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91042943, "LATITUDE": 18.36307575, "OBJECTID_1": 5230, "PARCEL_NO_": "103001031100", "Tax_Legal_": "LOVENLUND C-5-B-4 82 GT.NORTHSIDE", "Name": "HIDEO, SATO & PATRICIA BENJAMIN", "Address": "C-5-B-4 Lovenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.56254491000001, "SHAPE_Area": 1827.7739387700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360983.247800000011921, 259302.914799999445677 ], [ 360930.26129999756813, 259275.461199998855591 ], [ 360913.111199997365475, 259300.863200001418591 ], [ 360961.25789999961853, 259328.488299999386072 ], [ 360983.247800000011921, 259302.914799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801020100", "MAP": null, "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.94504034000001, "LATITUDE": 18.36311452, "OBJECTID_1": 3777, "PARCEL_NO_": "102801020100", "Tax_Legal_": "ST PETER 6J&24 LITTLE NORTHSIDE QTR", "Name": "JOEL MICHEL KLING REVOC FAMILY TRUST 2015", "Address": "7487 St Peter Mtn", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96000, "Improved_V": 203100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.557133505, "SHAPE_Area": 1761.1353831 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357301.009300000965595, 259250.401599999517202 ], [ 357280.048799999058247, 259249.807799998670816 ], [ 357273.504799999296665, 259260.731100000441074 ], [ 357269.390500001609325, 259270.407800000160933 ], [ 357266.883500002324581, 259280.730799999088049 ], [ 357266.761200003325939, 259295.084199998527765 ], [ 357297.386699996888638, 259297.023600000888109 ], [ 357315.922899998724461, 259298.230799999088049 ], [ 357301.009300000965595, 259250.401599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103002036900", "MAP": "C9-236-T79", "PARCEL_NAM": "D-6", "ACRE": ".15", "LONGITUDE": -64.90260097, "LATITUDE": 18.36318184, "OBJECTID_1": 5511, "PARCEL_NO_": "103002036900", "Tax_Legal_": "LOVENLUND D-6 GT. NORTHSIDE", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 4000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.861866797, "SHAPE_Area": 431.901889928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361800.846799999475479, 259309.817600000649691 ], [ 361783.077399998903275, 259313.260800000280142 ], [ 361764.489000000059605, 259318.174899999052286 ], [ 361762.050300002098083, 259320.47690000012517 ], [ 361748.288999997079372, 259326.69709999859333 ], [ 361750.645000003278255, 259334.104699999094009 ], [ 361769.262199997901917, 259325.813299998641014 ], [ 361783.817100003361702, 259321.077300000935793 ], [ 361801.590199999511242, 259317.212000001221895 ], [ 361800.846799999475479, 259309.817600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702043000", "MAP": "A9-157-T71", "PARCEL_NAM": "14-48", "ACRE": null, "LONGITUDE": -64.95798186, "LATITUDE": 18.3630963, "OBJECTID_1": 3123, "PARCEL_NO_": "102702043000", "Tax_Legal_": "BONNE RESOLUTION 14-48 LITTLE NORTHSIDE", "Name": "ISAAC, LAURA & BARBARA", "Address": "PO Box 573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30800, "Improved_V": 195600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.961386624, "SHAPE_Area": 870.44057806900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355922.186200000345707, 259242.493999999016523 ], [ 355901.015299998223782, 259266.596500001847744 ], [ 355912.231799997389317, 259275.132100000977516 ], [ 355916.17339999973774, 259285.719000000506639 ], [ 355942.990299999713898, 259261.45160000026226 ], [ 355936.606299996376038, 259253.588899999856949 ], [ 355922.186200000345707, 259242.493999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95884153, "LATITUDE": 18.3631119, "OBJECTID_1": 2848, "PARCEL_NO_": "102701021500", "Tax_Legal_": "BONNE RESOLUTION 14-38 LT NORTHSIDE", "Name": "SMITH, IVAN & SHERYL", "Address": "PO Box 1381", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.39164376700001, "SHAPE_Area": 875.97090407500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355828.650399997830391, 259242.150699999183416 ], [ 355807.526199996471405, 259260.765099998563528 ], [ 355814.763300001621246, 259263.14640000090003 ], [ 355832.32769999653101, 259283.766199998557568 ], [ 355853.376299999654293, 259274.017099998891354 ], [ 355828.650399997830391, 259242.150699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95953125, "LATITUDE": 18.36311081, "OBJECTID_1": 2880, "PARCEL_NO_": "102701025200", "Tax_Legal_": "BONNE RESOLUTION 14-87 LT. NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.425087128, "SHAPE_Area": 566.70452922100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355751.773800000548363, 259274.029899999499321 ], [ 355762.183899998664856, 259282.558800000697374 ], [ 355773.511799998581409, 259278.007500000298023 ], [ 355755.268799997866154, 259242.394499998539686 ], [ 355751.244400002062321, 259241.517099998891354 ], [ 355746.404700003564358, 259241.6886 ], [ 355751.773800000548363, 259274.029899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002038000", "MAP": "A9-302-T83", "PARCEL_NAM": "C-18-A", "ACRE": ".41", "LONGITUDE": -64.90329061, "LATITUDE": 18.36305777, "OBJECTID_1": 5569, "PARCEL_NO_": "103002038000", "Tax_Legal_": "C-18 REM LOVENLUND GREAT NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.524968578, "SHAPE_Area": 1956.9587961 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361738.064099997282028, 259296.427000001072884 ], [ 361729.417700000107288, 259270.180700000375509 ], [ 361685.571099996566772, 259305.707699999213219 ], [ 361651.529700003564358, 259326.116300001740456 ], [ 361668.422700002789497, 259330.898600000888109 ], [ 361672.45610000193119, 259330.720499999821186 ], [ 361682.941799998283386, 259330.384100001305342 ], [ 361697.489600002765656, 259326.492400001734495 ], [ 361707.213899999856949, 259320.872499998658895 ], [ 361712.091300003230572, 259316.268399998545647 ], [ 361738.064099997282028, 259296.427000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9096194, "LATITUDE": 18.36310421, "OBJECTID_1": 5247, "PARCEL_NO_": "103001032900", "Tax_Legal_": "LOVENLUND C-20 // 124 GT. NORTHSIDE QTR.", "Name": "GOLDBERG, DAVID", "Address": "9400 Wheatley Ctr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.51094149599999, "SHAPE_Area": 1961.81002337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361069.577100001275539, 259297.288600001484156 ], [ 361043.004799999296665, 259292.849300000816584 ], [ 361014.866599999368191, 259282.908599998801947 ], [ 361004.296400003135204, 259293.165699999779463 ], [ 361002.638800002634525, 259298.429499998688698 ], [ 361002.584899999201298, 259304.761900000274181 ], [ 361004.109399996697903, 259315.117899999022484 ], [ 361004.872500002384186, 259320.190400000661612 ], [ 361058.861299999058247, 259324.643100000917912 ], [ 361069.577100001275539, 259297.288600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002033700", "MAP": "D9-1496-T79", "PARCEL_NAM": "D-4-L", "ACRE": null, "LONGITUDE": -64.90090964, "LATITUDE": 18.36297708, "OBJECTID_1": 5372, "PARCEL_NO_": "103002033700", "Tax_Legal_": "D-4-L LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "MICHAEL K. & JENNIFER JOHNSON REV. FAM TRST", "Address": "PO Box 306988", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146400, "Improved_V": 666900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.96596513899999, "SHAPE_Area": 1618.5892271299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361981.592100001871586, 259295.887099999934435 ], [ 361965.656400002539158, 259273.380699999630451 ], [ 361926.788000002503395, 259292.483199998736382 ], [ 361944.203199997544289, 259330.622600000351667 ], [ 361955.581500001251698, 259320.161100000143051 ], [ 361963.696699999272823, 259314.105799999088049 ], [ 361971.025499999523163, 259305.721999999135733 ], [ 361981.592100001871586, 259295.887099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701022000", "MAP": null, "PARCEL_NAM": "56-1", "ACRE": null, "LONGITUDE": -64.95844583, "LATITUDE": 18.36309236, "OBJECTID_1": 2852, "PARCEL_NO_": "102701022000", "Tax_Legal_": "14-55&56-1 BONNE RESOLUTION No.5 LITTLE NORTHSIDE QTR", "Name": "MICHAEL W MARTIN AND MELANIE H MARTIN FAMILY TRUST", "Address": "PO BOX 8469", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56900, "Improved_V": 273400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.86547103300001, "SHAPE_Area": 621.68279612000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355892.20160000026226, 259259.980500001460314 ], [ 355877.779700003564358, 259249.096700001507998 ], [ 355876.188699997961521, 259246.550500001758337 ], [ 355854.303099997341633, 259259.881400000303984 ], [ 355870.260399997234344, 259279.854800000786781 ], [ 355892.20160000026226, 259259.980500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102801025300", "MAP": "G9-2249-T73", "PARCEL_NAM": "5B ROW", "ACRE": null, "LONGITUDE": -64.94467915, "LATITUDE": 18.36287876, "OBJECTID_1": 3820, "PARCEL_NO_": "102801025300", "Tax_Legal_": "5D ESTATE ST. PETER NO.2 LT NORTHSIDE QTR", "Name": "BERRY, LUCIA A. & SHARON M.", "Address": "7430 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 211700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.70584492699999, "SHAPE_Area": 528.57895525699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357346.640100002288818, 259289.405099999159575 ], [ 357327.853200003504753, 259222.967999998480082 ], [ 357294.717100001871586, 259231.773800000548363 ], [ 357296.28830000013113, 259236.641800001263618 ], [ 357323.773100003600121, 259228.634100001305342 ], [ 357340.981499999761581, 259291.047600001096725 ], [ 357346.640100002288818, 259289.405099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701025300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95940515, "LATITUDE": 18.36309615, "OBJECTID_1": 2881, "PARCEL_NO_": "102701025300", "Tax_Legal_": "BONNE RESOLUTION 14-87-1 LT. NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.496611938300006, "SHAPE_Area": 385.86008591199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355773.511799998581409, 259278.007500000298023 ], [ 355785.649700000882149, 259273.040600001811981 ], [ 355780.097199998795986, 259262.229400001466274 ], [ 355772.113200001418591, 259252.875900000333786 ], [ 355761.694099999964237, 259245.402399998158216 ], [ 355755.268799997866154, 259242.394499998539686 ], [ 355773.511799998581409, 259278.007500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95262927, "LATITUDE": 18.3629584, "OBJECTID_1": 3023, "PARCEL_NO_": "102702022200", "Tax_Legal_": "HULL 5BA LT. NORTHSIDE QTR.", "Name": "LAKE, ORNETTE L. & COLETTE", "Address": "PO Box 11253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66000, "Improved_V": 198200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.67766489600001, "SHAPE_Area": 1499.35603193 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356499.194899998605251, 259283.735800001770258 ], [ 356503.722699999809265, 259225.510999999940395 ], [ 356471.437899999320507, 259229.046500001102686 ], [ 356474.267499998211861, 259275.510200001299381 ], [ 356499.194899998605251, 259283.735800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95215396, "LATITUDE": 18.36287703, "OBJECTID_1": 3009, "PARCEL_NO_": "102702020600", "Tax_Legal_": "5A HULL No.4 LITTLE NORTHSIDE QTR.", "Name": "MALOY & JANIS ELLEN MALOY REVOCABLE FAMILY TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 249900, "Improved_V": 39600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.47071737200002, "SHAPE_Area": 4861.0372768099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356503.722699999809265, 259225.510999999940395 ], [ 356499.194899998605251, 259283.735800001770258 ], [ 356533.101300001144409, 259279.158100001513958 ], [ 356566.201499998569489, 259274.573899999260902 ], [ 356567.886100001633167, 259266.143899999558926 ], [ 356581.319300003349781, 259203.770199999213219 ], [ 356504.608199998736382, 259216.230099998414516 ], [ 356503.722699999809265, 259225.510999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002037100", "MAP": "D9-1949-T82", "PARCEL_NAM": "D-8-A", "ACRE": ".39", "LONGITUDE": -64.90281674000001, "LATITUDE": 18.36271144, "OBJECTID_1": 5513, "PARCEL_NO_": "103002037100", "Tax_Legal_": "D-8 REM LOVELLUND GREAT NORTHSIDE QTR", "Name": "GINN- LA FUND IV MAHOGANY, LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 8400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.87166743, "SHAPE_Area": 1222.4792287400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361763.272299997508526, 259242.265299998223782 ], [ 361729.417700000107288, 259270.180700000375509 ], [ 361738.064099997282028, 259296.427000001072884 ], [ 361777.871299996972084, 259263.098900001496077 ], [ 361773.079000003635883, 259256.394799999892712 ], [ 361764.317500002682209, 259243.657400000840425 ], [ 361763.272299997508526, 259242.265299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032900", "MAP": null, "PARCEL_NAM": "D-17", "ACRE": null, "LONGITUDE": -64.9000256, "LATITUDE": 18.36292226, "OBJECTID_1": 5365, "PARCEL_NO_": "103002032900", "Tax_Legal_": "LOVENLUND ESTATE D-17(AKA32) GT NORTHSIDE", "Name": "TARAPANI, ABE L. & WENDY S", "Address": "5184 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 177000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.20131795500001, "SHAPE_Area": 2184.7803795300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362079.757200002670288, 259320.755199998617172 ], [ 362037.605200000107288, 259252.015900000929832 ], [ 362016.463100001215935, 259272.741099998354912 ], [ 362049.851700000464916, 259328.954199999570847 ], [ 362051.482299998402596, 259326.856600001454353 ], [ 362054.714699998497963, 259326.038699999451637 ], [ 362060.349899999797344, 259327.1402000002563 ], [ 362070.839199997484684, 259326.381700001657009 ], [ 362078.91669999808073, 259324.759100001305342 ], [ 362079.757200002670288, 259320.755199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801025300", "MAP": "G9-2249-T73", "PARCEL_NAM": "5B", "ACRE": "1.00", "LONGITUDE": -64.94459466000001, "LATITUDE": 18.36293772, "OBJECTID_1": 3820, "PARCEL_NO_": "102801025300", "Tax_Legal_": "5D ESTATE ST. PETER NO.2 LT NORTHSIDE QTR", "Name": "BERRY, LUCIA A. & SHARON M.", "Address": "7430 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 211700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.20832888799998, "SHAPE_Area": 3846.3479829299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357360.100299999117851, 259223.865200001746416 ], [ 357357.758699998259544, 259214.769000001251698 ], [ 357339.976700000464916, 259219.689699999988079 ], [ 357327.853200003504753, 259222.967999998480082 ], [ 357346.640100002288818, 259289.405099999159575 ], [ 357374.932899996638298, 259281.192999999970198 ], [ 357366.354800000786781, 259246.925599999725819 ], [ 357360.100299999117851, 259223.865200001746416 ] ] ], [ [ [ 357340.981499999761581, 259291.047600001096725 ], [ 357323.773100003600121, 259228.634100001305342 ], [ 357296.28830000013113, 259236.641800001263618 ], [ 357301.009300000965595, 259250.401599999517202 ], [ 357315.922899998724461, 259298.230799999088049 ], [ 357340.981499999761581, 259291.047600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002038000", "MAP": "B9-496-T79", "PARCEL_NAM": "C-18", "ACRE": null, "LONGITUDE": -64.90350135, "LATITUDE": 18.36292317, "OBJECTID_1": 5569, "PARCEL_NO_": "103002038000", "Tax_Legal_": "C-18 REM LOVENLUND GREAT NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.24128556299999, "SHAPE_Area": 1578.9265883400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361637.842200003564358, 259323.682199999690056 ], [ 361652.407999999821186, 259317.679699998348951 ], [ 361669.414300002157688, 259309.164099998772144 ], [ 361683.19709999859333, 259300.410900000482798 ], [ 361727.050899997353554, 259264.039599999785423 ], [ 361722.338899999856949, 259249.224500000476837 ], [ 361708.514700002968311, 259262.832400001585484 ], [ 361697.15259999781847, 259271.394299998879433 ], [ 361671.186899997293949, 259290.39130000025034 ], [ 361643.632100000977516, 259306.631000000983477 ], [ 361627.412299998104572, 259317.475099999457598 ], [ 361628.180799998342991, 259321.91440000012517 ], [ 361637.842200003564358, 259323.682199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95558282, "LATITUDE": 18.36293602, "OBJECTID_1": 2945, "PARCEL_NO_": "102702010500", "Tax_Legal_": "HULL BAY 6I-11 LITTLE NORTHSIDE", "Name": "BUZZARD, CHARLES", "Address": "6-1-11 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 88900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.251305046, "SHAPE_Area": 979.290555692 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356189.961099997162819, 259235.39750000089407 ], [ 356170.740900002419949, 259219.830400001257658 ], [ 356169.04730000346899, 259229.315699998289347 ], [ 356167.407700002193451, 259232.468699999153614 ], [ 356163.336599998176098, 259237.079500000923872 ], [ 356158.475299999117851, 259239.783900000154972 ], [ 356174.294100001454353, 259276.010400000959635 ], [ 356184.031000003218651, 259268.912900000810623 ], [ 356189.961099997162819, 259235.39750000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95527084, "LATITUDE": 18.36294867, "OBJECTID_1": 2981, "PARCEL_NO_": "102702014400", "Tax_Legal_": "HULL 6EF LITTE NORTHSIDE QTR", "Name": "BERRY, RICHARD", "Address": "7353 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71200, "Improved_V": 108600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.94160828400001, "SHAPE_Area": 1999.07336379 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356234.392099998891354, 259231.840300001204014 ], [ 356214.913000002503395, 259217.652199998497963 ], [ 356189.961099997162819, 259235.39750000089407 ], [ 356184.031000003218651, 259268.912900000810623 ], [ 356189.626599997282028, 259274.65819999948144 ], [ 356220.264700002968311, 259275.120000001043081 ], [ 356226.887800000607967, 259254.909299999475479 ], [ 356234.392099998891354, 259231.840300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002033000", "MAP": null, "PARCEL_NAM": "D-18", "ACRE": null, "LONGITUDE": -64.89983857, "LATITUDE": 18.36275261, "OBJECTID_1": 5366, "PARCEL_NO_": "103002033000", "Tax_Legal_": "LOVENLUND D-18 Consolidated GT. NORTHSIDE", "Name": "TARAPANI, ABE L. & WENDY S", "Address": "5184 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 516400, "Improved_V": 1627000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.37860714199999, "SHAPE_Area": 2076.2770683600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362093.500500001013279, 259316.645799998193979 ], [ 362081.765399999916553, 259274.331000000238419 ], [ 362070.687399998307228, 259249.542399998754263 ], [ 362055.51129999756813, 259232.530699998140335 ], [ 362053.060000002384186, 259236.310400001704693 ], [ 362037.605200000107288, 259252.015900000929832 ], [ 362079.757200002670288, 259320.755199998617172 ], [ 362093.500500001013279, 259316.645799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96553156, "LATITUDE": 18.36294906, "OBJECTID_1": 2828, "PARCEL_NO_": "102701015200", "Tax_Legal_": "NELTJEBERG 23-1 LITTLE NORTH SIDE", "Name": "KRIGGER, ALARIC & FLORENCE K.", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.74574286699999, "SHAPE_Area": 2169.21032642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355147.573499999940395, 259206.390000000596046 ], [ 355123.188100002706051, 259229.199599999934435 ], [ 355102.21679999679327, 259229.872400000691414 ], [ 355081.819799996912479, 259257.780900001525879 ], [ 355129.338299997150898, 259264.502599999308586 ], [ 355158.662299998104572, 259229.912200000137091 ], [ 355152.368199996650219, 259211.49549999833107 ], [ 355147.573499999940395, 259206.390000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90232418, "LATITUDE": 18.36284998, "OBJECTID_1": 5380, "PARCEL_NO_": "103002034500", "Tax_Legal_": "LOVENLUND D-4-D AKA 22 GT. NORTHSIDE", "Name": "BRUSH, GEORGE T. & PATRICIA A.", "Address": "5 Namkee Rd", "City": "Blue Point", "State": "New York", "Zip": 11715, "Country": "United States", "Land_Value": 110400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.456572212, "SHAPE_Area": 2448.2630683799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361773.079000003635883, 259256.394799999892712 ], [ 361779.454000003635883, 259265.312899999320507 ], [ 361782.637900002300739, 259270.194099999964237 ], [ 361794.586900003254414, 259287.390399999916553 ], [ 361764.489000000059605, 259318.174899999052286 ], [ 361783.077399998903275, 259313.260800000280142 ], [ 361800.846799999475479, 259309.817600000649691 ], [ 361832.328900001943111, 259305.853399999439716 ], [ 361823.88570000231266, 259255.755100000649691 ], [ 361773.079000003635883, 259256.394799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801018500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94950454000001, "LATITUDE": 18.36300838, "OBJECTID_1": 3762, "PARCEL_NO_": "102801018500", "Tax_Legal_": "HULL 11DA-2 LT NORTHDSIDE", "Name": "BARKSDALE, W. L. & IMPSON, M. L", "Address": "PO Box 502242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 86900, "Improved_V": 277000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.86494706299999, "SHAPE_Area": 2698.38510133 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356834.157999999821186, 259246.158399999141693 ], [ 356809.959600001573563, 259247.015799999237061 ], [ 356767.181900002062321, 259251.73200000077486 ], [ 356765.427199997007847, 259268.394000001251698 ], [ 356764.552599996328354, 259276.408399999141693 ], [ 356801.662699997425079, 259274.390099998563528 ], [ 356840.385499998927116, 259272.385000001639128 ], [ 356871.041599996387959, 259270.736000001430511 ], [ 356867.229400001466274, 259244.951400000602007 ], [ 356834.157999999821186, 259246.158399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95818946, "LATITUDE": 18.36293315, "OBJECTID_1": 2854, "PARCEL_NO_": "102701022300", "Tax_Legal_": "BONNE RESOLUTION 14-47 No.5 LITTLE NORTHSIDE QTR.", "Name": "WILKINSON, AGNES, TOYA MALONE & DINA PERRY", "Address": "PO Box 306622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25800, "Improved_V": 180600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.71976551500001, "SHAPE_Area": 1017.7546526 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355904.614600002765656, 259222.718499999493361 ], [ 355876.188699997961521, 259246.550500001758337 ], [ 355877.779700003564358, 259249.096700001507998 ], [ 355892.20160000026226, 259259.980500001460314 ], [ 355901.015299998223782, 259266.596500001847744 ], [ 355922.186200000345707, 259242.493999999016523 ], [ 355904.614600002765656, 259222.718499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702014500", "MAP": "D9-6639-T99", "PARCEL_NAM": "6E-G", "ACRE": ".34", "LONGITUDE": -64.9546626, "LATITUDE": 18.36282545, "OBJECTID_1": 2982, "PARCEL_NO_": "102702014500", "Tax_Legal_": "HULL ESTATE 6E-G No.4 LITTLE NORTHSIDE QTR", "Name": "EDMUND BRYAN REVOCABLE TRUST", "Address": "7682 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.26281109300001, "SHAPE_Area": 1434.5623272299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356298.809000000357628, 259229.343499999493361 ], [ 356261.317400000989437, 259217.0439000017941 ], [ 356234.392099998891354, 259231.840300001204014 ], [ 356243.639300003647804, 259232.177299998700619 ], [ 356276.33389999717474, 259258.314699999988079 ], [ 356280.773699998855591, 259261.506299998611212 ], [ 356283.652400001883507, 259256.947200000286102 ], [ 356295.136200003325939, 259238.760099999606609 ], [ 356313.092600002884865, 259234.029399998486042 ], [ 356308.89580000191927, 259232.65260000154376 ], [ 356298.809000000357628, 259229.343499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94407696, "LATITUDE": 18.36298256, "OBJECTID_1": 3818, "PARCEL_NO_": "102801025100", "Tax_Legal_": "ST PETER 5C LITTLE NORTHSIDE QTR", "Name": "LEDEE, PHILIBERT & MARGOLAINE, CO-TRUSTEES", "Address": "7500 Barrett", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 74700, "Improved_V": 125700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.166157597199998, "SHAPE_Area": 506.89269981500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357392.950499996542931, 259248.620900001376867 ], [ 357390.265399999916553, 259241.776299998164177 ], [ 357386.11259999871254, 259248.184500001370907 ], [ 357383.969499997794628, 259251.835799999535084 ], [ 357382.143799997866154, 259256.122000001370907 ], [ 357381.032600000500679, 259260.011399999260902 ], [ 357380.79450000077486, 259263.345199998468161 ], [ 357381.588200002908707, 259267.075800001621246 ], [ 357382.223200000822544, 259270.330200001597404 ], [ 357383.413900002837181, 259273.584600001573563 ], [ 357384.5337999984622, 259277.513900000602007 ], [ 357387.877099998295307, 259276.232700001448393 ], [ 357405.662699997425079, 259270.889800000935793 ], [ 357404.107600003480911, 259264.122099999338388 ], [ 357394.548799999058247, 259250.322799999266863 ], [ 357392.950499996542931, 259248.620900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702043100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95766358, "LATITUDE": 18.36292406, "OBJECTID_1": 3124, "PARCEL_NO_": "102702043100", "Tax_Legal_": "14-24 BONNE RESOLUTION NO.5 LITTLE NORTHSIDE QTR", "Name": "ST. JOHN, MARY E.", "Address": "PO Box 305435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38900, "Improved_V": 103200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.61647924499999, "SHAPE_Area": 926.18255503099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355971.356899999082088, 259244.585200000554323 ], [ 355957.818599998950958, 259224.631599999964237 ], [ 355929.487999998033047, 259237.276500001549721 ], [ 355942.311700001358986, 259246.458399999886751 ], [ 355950.297499999403954, 259255.60080000013113 ], [ 355955.065200001001358, 259263.872499998658895 ], [ 355978.520199999213219, 259255.620700001716614 ], [ 355971.356899999082088, 259244.585200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701013100", "MAP": "D9-1859-T81", "PARCEL_NAM": "14-3", "ACRE": null, "LONGITUDE": -64.96266761, "LATITUDE": 18.3629249, "OBJECTID_1": 2809, "PARCEL_NO_": "102701013100", "Tax_Legal_": "DOROTHEA 14-3 LT. NORTHSIDE", "Name": "BY, OCTAVE & LOLA ODELCY", "Address": "PO Box 302998", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.82890101300001, "SHAPE_Area": 1038.6031630699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355436.920999996364117, 259222.690400000661612 ], [ 355402.168600000441074, 259231.905099999159575 ], [ 355416.462899997830391, 259257.775499999523163 ], [ 355452.026900000870228, 259247.934099998325109 ], [ 355436.920999996364117, 259222.690400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": null, "PARCEL_NAM": "11 REM", "ACRE": null, "LONGITUDE": -64.96164388, "LATITUDE": 18.36097008, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1592.3493246800001, "SHAPE_Area": 26836.145265200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355586.129399999976158, 259124.4864999987185 ], [ 355585.694300003349781, 259111.298200000077486 ], [ 355576.178900003433228, 259112.30970000103116 ], [ 355546.413199998438358, 259064.353900000452995 ], [ 355518.631899997591972, 259026.9814000017941 ], [ 355543.436700001358986, 259009.783500000834465 ], [ 355552.116999998688698, 259004.836599998176098 ], [ 355566.918099999427795, 258995.158500000834465 ], [ 355575.649400003254414, 258982.193900000303984 ], [ 355578.030599996447563, 258974.785500001162291 ], [ 355583.386100001633167, 258968.76069999858737 ], [ 355586.497299998998642, 258965.260499998927116 ], [ 355583.057700000703335, 258962.085499998182058 ], [ 355593.447999998927116, 258952.657600000500679 ], [ 355582.778800003230572, 258951.895500000566244 ], [ 355605.192900002002716, 258915.307799998670816 ], [ 355608.689800001680851, 258909.599700000137091 ], [ 355614.52589999884367, 258909.105099998414516 ], [ 355630.748999997973442, 258907.730200000107288 ], [ 355649.868500001728535, 258906.109900001436472 ], [ 355661.042400002479553, 258897.479699999094009 ], [ 355663.762599997222424, 258887.339499998837709 ], [ 355645.248800002038479, 258900.845499999821186 ], [ 355631.583499997854233, 258902.453200001269579 ], [ 355615.535800002515316, 258904.3412000015378 ], [ 355616.805500000715256, 258884.73930000141263 ], [ 355618.110399998724461, 258864.5945999994874 ], [ 355611.293499998748302, 258866.441399998962879 ], [ 355610.309000000357628, 258882.8277000002563 ], [ 355609.068800002336502, 258903.467300001531839 ], [ 355604.643799997866154, 258901.733500000089407 ], [ 355579.181000001728535, 258891.756799999624491 ], [ 355579.487400002777576, 258875.058299999684095 ], [ 355576.959299996495247, 258875.743200000375509 ], [ 355570.514200001955032, 258875.057199999690056 ], [ 355567.440800003707409, 258873.686000000685453 ], [ 355565.629199996590614, 258883.649399999529123 ], [ 355560.10639999806881, 258898.777100000530481 ], [ 355554.823700003325939, 258905.740600001066923 ], [ 355554.031999997794628, 258913.770500000566244 ], [ 355553.142899997532368, 258922.789299998432398 ], [ 355550.021300002932549, 258931.433699999004602 ], [ 355539.936099998652935, 258945.600900001823902 ], [ 355534.653399996459484, 258951.363899998366833 ], [ 355549.913699999451637, 258959.661400001496077 ], [ 355562.97860000282526, 258963.212999999523163 ], [ 355556.660599999129772, 258992.9989 ], [ 355519.618900001049042, 258985.82209999859333 ], [ 355516.179300002753735, 258961.480399999767542 ], [ 355522.672100000083447, 258942.514400001615286 ], [ 355526.233499996364117, 258932.111600000411272 ], [ 355536.81530000269413, 258920.048599999397993 ], [ 355545.018899999558926, 258901.949000000953674 ], [ 355548.827600002288818, 258893.424300000071526 ], [ 355560.089699998497963, 258868.216899998486042 ], [ 355557.726499997079372, 258861.653599999845028 ], [ 355558.234899997711182, 258852.383499998599291 ], [ 355543.057700000703335, 258856.995799999684095 ], [ 355525.534000001847744, 258855.723900001496077 ], [ 355526.00900000333786, 258875.245099999010563 ], [ 355528.650399997830391, 258895.175299998372793 ], [ 355516.644299998879433, 258898.296799998730421 ], [ 355509.440600000321865, 258899.73759999871254 ], [ 355495.753600001335144, 258903.819699998944998 ], [ 355429.184500001370907, 258927.275199998170137 ], [ 355430.55460000038147, 258928.796000000089407 ], [ 355507.358999997377396, 259094.710900001227856 ], [ 355576.456200003623962, 259218.766100000590086 ], [ 355599.495800003409386, 259259.273600000888109 ], [ 355613.435099996626377, 259232.156599998474121 ], [ 355613.453100003302097, 259230.045800000429153 ], [ 355622.552699998021126, 259203.100299999117851 ], [ 355590.038699999451637, 259138.872800000011921 ], [ 355586.129399999976158, 259124.4864999987185 ] ], [ [ 355603.811700001358986, 258915.128199998289347 ], [ 355603.829899996519089, 258915.0962999984622 ], [ 355603.827899999916553, 258915.128600001335144 ], [ 355603.811700001358986, 258915.128199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701021400", "MAP": "A9-157-T71", "PARCEL_NAM": "14-37", "ACRE": "0.25", "LONGITUDE": -64.9590717, "LATITUDE": 18.36293152, "OBJECTID_1": 2847, "PARCEL_NO_": "102701021400", "Tax_Legal_": "BONNE RESOLUTION 14-36&37 LT NORTHSIDE QTR", "Name": "JOHNSON, ELTON E.", "Address": "PO Box 7665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44700, "Improved_V": 221400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.110703961, "SHAPE_Area": 845.75964862000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355805.411200001835823, 259225.072999998927116 ], [ 355784.207900002598763, 259252.974899999797344 ], [ 355807.526199996471405, 259260.765099998563528 ], [ 355828.650399997830391, 259242.150699999183416 ], [ 355825.461099997162819, 259237.902699999511242 ], [ 355818.254600003361702, 259231.933100000023842 ], [ 355815.050999999046326, 259229.373799998313189 ], [ 355805.411200001835823, 259225.072999998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91025685, "LATITUDE": 18.3628465, "OBJECTID_1": 5232, "PARCEL_NO_": "103001031300", "Tax_Legal_": "LOVENLUND C-5-B-3 AKA 83A GT.NORTHSIDE", "Name": "STEVENS, DAVID O", "Address": "PO BOX 305440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.52078819799999, "SHAPE_Area": 1828.28203577 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361003.608800001442432, 259279.227899998426437 ], [ 360947.407799996435642, 259250.4814000017941 ], [ 360930.26129999756813, 259275.461199998855591 ], [ 360983.247800000011921, 259302.914799999445677 ], [ 360993.040399998426437, 259289.273899998515844 ], [ 360997.924999997019768, 259283.825500000268221 ], [ 361003.608800001442432, 259279.227899998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701022200", "MAP": null, "PARCEL_NAM": "REM 56", "ACRE": null, "LONGITUDE": -64.95857291, "LATITUDE": 18.3629428, "OBJECTID_1": 2853, "PARCEL_NO_": "102701022200", "Tax_Legal_": "BONNE RESOLUTION 14-56 & 14-57 LT NORTHSIDE QTR", "Name": "GAVEN ELLISTON and ROSEMARY JONES", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47600, "Improved_V": 233000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.246286095900004, "SHAPE_Area": 484.58173984299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355876.188699997961521, 259246.550500001758337 ], [ 355864.226999998092651, 259230.831700000911951 ], [ 355843.135200001299381, 259245.646699998527765 ], [ 355854.303099997341633, 259259.881400000303984 ], [ 355876.188699997961521, 259246.550500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2165-T82", "PARCEL_NAM": "11-14", "ACRE": "3.26", "LONGITUDE": -64.96015523, "LATITUDE": 18.36236061, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 497.19126568199999, "SHAPE_Area": 14360.513402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355622.147399999201298, 259156.02309999987483 ], [ 355611.499399997293949, 259161.247999999672174 ], [ 355655.25, 259245.797699999064207 ], [ 355674.596199996769428, 259246.589299999177456 ], [ 355681.034100003540516, 259248.119699999690056 ], [ 355689.066600002348423, 259251.774000000208616 ], [ 355697.08839999884367, 259256.69480000063777 ], [ 355705.954199999570847, 259257.189599998295307 ], [ 355713.237999998033047, 259254.082800000905991 ], [ 355726.252300001680851, 259240.890399999916553 ], [ 355731.122500002384186, 259237.13060000166297 ], [ 355745.68469999730587, 259231.550200000405312 ], [ 355742.641099996864796, 259210.204900000244379 ], [ 355751.736400000751019, 259089.111600000411272 ], [ 355622.147399999201298, 259156.02309999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702043300", "MAP": "F9-1528-T65", "PARCEL_NAM": "14-7", "ACRE": ".19", "LONGITUDE": -64.95687141000001, "LATITUDE": 18.36289304, "OBJECTID_1": 3126, "PARCEL_NO_": "102702043300", "Tax_Legal_": "BONNE RESOLUTION 14 7 LITTLE NORTHSIDE QTR", "Name": "STEVE AND MELISSA LOWE TRUST", "Address": "PO Box 6081", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32300, "Improved_V": 256200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.986810464, "SHAPE_Area": 1017.8396669799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356054.586900003254414, 259224.1570999994874 ], [ 356019.058799996972084, 259229.776900000870228 ], [ 356026.872000001370907, 259259.182900000363588 ], [ 356057.553199999034405, 259254.57880000025034 ], [ 356054.586900003254414, 259224.1570999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103032900", "MAP": "A9-394-T91", "PARCEL_NAM": "21", "ACRE": null, "LONGITUDE": -64.96840169, "LATITUDE": 18.36256902, "OBJECTID_1": 465, "PARCEL_NO_": "101103032900", "Tax_Legal_": "NELTJEBERG 21 REM. EASTERN PART No.6 LITTLE NORTHSIDE QUARTER", "Name": "JACOBS, CORDELL & ELAINE", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.20066006100001, "SHAPE_Area": 2341.72972269 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354864.516500003635883, 259208.92850000038743 ], [ 354866.985699996352196, 259203.038100000470877 ], [ 354860.747400000691414, 259178.078000001609325 ], [ 354779.239699997007847, 259185.643500000238419 ], [ 354777.512000001966953, 259199.139400001615286 ], [ 354773.32039999961853, 259218.5456000007689 ], [ 354830.051700003445148, 259199.841099999845028 ], [ 354837.195500001311302, 259204.339099999517202 ], [ 354843.01630000025034, 259210.689100001007318 ], [ 354852.276699997484684, 259212.011999998241663 ], [ 354864.516500003635883, 259208.92850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90191287, "LATITUDE": 18.36279315, "OBJECTID_1": 5377, "PARCEL_NO_": "103002034200", "Tax_Legal_": "LOVENLUND D-4-E GT. NORTHSIDE", "Name": "WHITE, AUDREY M. & COOPER, ANGELA F.", "Address": "PO Box 308516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 154600, "Improved_V": 1158500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.384586343, "SHAPE_Area": 2083.1703533899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361869.437299996614456, 259304.04619999974966 ], [ 361861.886699996888638, 259243.822700001299381 ], [ 361835.982199996709824, 259255.64299999922514 ], [ 361823.88570000231266, 259255.755100000649691 ], [ 361832.328900001943111, 259305.853399999439716 ], [ 361861.358000002801418, 259305.879900000989437 ], [ 361869.437299996614456, 259304.04619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802010700", "MAP": null, "PARCEL_NAM": "2B", "ACRE": null, "LONGITUDE": -64.94079306, "LATITUDE": 18.36165892, "OBJECTID_1": 4029, "PARCEL_NO_": "102802010700", "Tax_Legal_": "2B LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "AUDREY V BRYAN QUETEL REVOCABLE LIVING TRUST", "Address": "2B Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 247400, "Improved_V": 41600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 779.23267572999998, "SHAPE_Area": 16180.1650928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357732.277199998497963, 259077.457100000232458 ], [ 357713.101899996399879, 259056.613000001758337 ], [ 357712.759499996900558, 259002.147999998182058 ], [ 357728.288000002503395, 258977.78830000013113 ], [ 357705.788599997758865, 258968.527100000530481 ], [ 357684.621299996972084, 258992.207400001585484 ], [ 357681.367299996316433, 258995.558299999684095 ], [ 357676.482600003480911, 259001.006700001657009 ], [ 357672.41330000013113, 259005.406399998813868 ], [ 357668.340400002896786, 259010.228199999779463 ], [ 357665.901699997484684, 259012.530299998819828 ], [ 357665.079199999570847, 259014.42339999973774 ], [ 357649.61540000140667, 259031.184300001710653 ], [ 357639.833499997854233, 259043.558800000697374 ], [ 357745.189699999988079, 259170.866099998354912 ], [ 357795.417300000786781, 259238.193799998611212 ], [ 357820.928000003099442, 259272.599800001829863 ], [ 357850.882100000977516, 259258.701699998229742 ], [ 357780.218900002539158, 259129.145199999213219 ], [ 357732.277199998497963, 259077.457100000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95615989, "LATITUDE": 18.36286963, "OBJECTID_1": 2947, "PARCEL_NO_": "102702010700", "Tax_Legal_": "HULL BAY 6I-2 LITTLE NORTHSIDE", "Name": "COLBY ISLAND TIME LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44200, "Improved_V": 125000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.630491076, "SHAPE_Area": 1434.7619400200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356099.769199997186661, 259221.149399999529123 ], [ 356081.062100000679493, 259239.994699999690056 ], [ 356089.078500002622604, 259245.548700001090765 ], [ 356113.188799999654293, 259255.034200001507998 ], [ 356117.195200003683567, 259258.022300001233816 ], [ 356121.223099999129772, 259258.477400001138449 ], [ 356125.265500001609325, 259257.243900001049042 ], [ 356137.439300000667572, 259248.055500000715256 ], [ 356148.005900003015995, 259238.220600001513958 ], [ 356152.861699998378754, 259236.149399999529123 ], [ 356099.769199997186661, 259221.149399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014700", "MAP": "D9-5747-T94", "PARCEL_NAM": "1-4-B3 REM", "ACRE": ".543", "LONGITUDE": -64.94077782, "LATITUDE": 18.36288618, "OBJECTID_1": 4065, "PARCEL_NO_": "102802014700", "Tax_Legal_": "LERKENLUND 1-4-B3 & 1-4-B3-1 GREAT NORTHSIDE QTR", "Name": "JACKLYN ANN QUERRARD REVOCABLE FAMILY TRUST", "Address": "PO Box 11102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 158800, "Improved_V": 572400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.15622859699999, "SHAPE_Area": 2232.7719802500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357795.417300000786781, 259238.193799998611212 ], [ 357714.74210000038147, 259239.362700000405312 ], [ 357712.306000001728535, 259244.690799999982119 ], [ 357711.469099998474121, 259248.27250000089407 ], [ 357708.213299997150898, 259251.834499999880791 ], [ 357695.150499999523163, 259270.725999999791384 ], [ 357747.114500001072884, 259273.921100001782179 ], [ 357795.417300000786781, 259238.193799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94325112, "LATITUDE": 18.36290818, "OBJECTID_1": 3786, "PARCEL_NO_": "102801021100", "Tax_Legal_": "ST PETER 13-1&4 LITTLE NORTHSIDE", "Name": "QUERRARD JR, LAWRENCE", "Address": "7433 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 405100, "Improved_V": 13700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.419149475899999, "SHAPE_Area": 268.331657312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357486.4054000005126, 259258.462799999862909 ], [ 357477.728399999439716, 259235.804800000041723 ], [ 357473.605099998414516, 259246.536800000816584 ], [ 357473.48650000244379, 259260.467999998480082 ], [ 357475.039700001478195, 259267.446800000965595 ], [ 357479.062299996614456, 259268.535199999809265 ], [ 357483.108300000429153, 259266.879599999636412 ], [ 357486.4054000005126, 259258.462799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9015813, "LATITUDE": 18.36271392, "OBJECTID_1": 5375, "PARCEL_NO_": "103002034000", "Tax_Legal_": "LOVENLUND D-4-F 24 GT. NORTHSIDE", "Name": "POTTER, EVERARD E. & DAWN L. HENRY", "Address": "PO BOX 1165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 120000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.64692395099999, "SHAPE_Area": 2188.1870009600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361908.248199999332428, 259291.69819999858737 ], [ 361889.407399997115135, 259231.593400001525879 ], [ 361861.886699996888638, 259243.822700001299381 ], [ 361869.437299996614456, 259304.04619999974966 ], [ 361883.977899998426437, 259300.998799998313189 ], [ 361908.248199999332428, 259291.69819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90944466000001, "LATITUDE": 18.36286431, "OBJECTID_1": 5246, "PARCEL_NO_": "103001032800", "Tax_Legal_": "LOVENLUND C-21 // 125 GT. NORTHSIDE", "Name": "DAVID and ANDREA GOLDBERG", "Address": "9400 Wheatley Ctr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.72823485200001, "SHAPE_Area": 1530.6752016299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361086.671499997377396, 259278.430100001394749 ], [ 361043.299699999392033, 259258.232299998402596 ], [ 361014.866599999368191, 259282.908599998801947 ], [ 361043.004799999296665, 259292.849300000816584 ], [ 361069.577100001275539, 259297.288600001484156 ], [ 361086.671499997377396, 259278.430100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701021400", "MAP": "A9-157-T71", "PARCEL_NAM": "14-36", "ACRE": "0.25", "LONGITUDE": -64.95928382, "LATITUDE": 18.36285092, "OBJECTID_1": 2847, "PARCEL_NO_": "102701021400", "Tax_Legal_": "BONNE RESOLUTION 14-36&37 LT NORTHSIDE QTR", "Name": "JOHNSON, ELTON E.", "Address": "PO Box 7665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44700, "Improved_V": 221400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.575947055, "SHAPE_Area": 618.95998771100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355784.207900002598763, 259252.974899999797344 ], [ 355805.411200001835823, 259225.072999998927116 ], [ 355790.911899998784065, 259223.265599999576807 ], [ 355782.836199998855591, 259224.677099999040365 ], [ 355775.566799998283386, 259226.095300000160933 ], [ 355769.0912000015378, 259228.997600000351667 ], [ 355766.643399998545647, 259232.355099998414516 ], [ 355768.203900001943111, 259238.489599999040365 ], [ 355776.220299996435642, 259244.043600000441074 ], [ 355784.207900002598763, 259252.974899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701013200", "MAP": "D9-1859-T81", "PARCEL_NAM": "14-4", "ACRE": null, "LONGITUDE": -64.96232449, "LATITUDE": 18.36270292, "OBJECTID_1": 2810, "PARCEL_NO_": "102701013200", "Tax_Legal_": "DOROTHEA 14-4 LITTLE NORTHSIDE QTR", "Name": "BRYAN A LEZAMA AND LAURETTE R LEZAMA FAMILY REVOC", "Address": "7903 Estate Lilliendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27700, "Improved_V": 243000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.97667722700001, "SHAPE_Area": 1142.7732877799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355475.89190000295639, 259191.556400001049042 ], [ 355441.060400001704693, 259210.058600001037121 ], [ 355444.238899998366833, 259215.573100000619888 ], [ 355445.029100000858307, 259217.479400001466274 ], [ 355448.198600001633167, 259224.049199998378754 ], [ 355449.798600003123283, 259225.53999999910593 ], [ 355460.131399996578693, 259243.145300000905991 ], [ 355463.29730000346899, 259250.137299999594688 ], [ 355466.630500003695488, 259237.499000001698732 ], [ 355478.132799997925758, 259212.473000001162291 ], [ 355485.420199997723103, 259208.943999998271465 ], [ 355475.89190000295639, 259191.556400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031400", "MAP": "D9-9146-T016", "PARCEL_NAM": "7REM", "ACRE": "0.56", "LONGITUDE": -64.97089168, "LATITUDE": 18.36206872, "OBJECTID_1": 451, "PARCEL_NO_": "101103031400", "Tax_Legal_": "NELTJBERG/EASTERN PT. 7 LT. NORTHSIDE", "Name": "BNR PARTNERSHIP", "Address": "6539 Clucksberg", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 196700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.73836007, "SHAPE_Area": 3578.9004257000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354587.741099998354912, 259163.90989999845624 ], [ 354574.015399999916553, 259093.877500001341105 ], [ 354531.715599998831749, 259103.878499999642372 ], [ 354543.046300001442432, 259190.121800001710653 ], [ 354556.726300001144409, 259180.444899998605251 ], [ 354567.262299999594688, 259174.198300000280142 ], [ 354587.741099998354912, 259163.90989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95036428, "LATITUDE": 18.3628209, "OBJECTID_1": 3045, "PARCEL_NO_": "102702026900", "Tax_Legal_": "HULL 11L & 11D-D LT NORTHSIDE", "Name": "SCULLY, STEVE & PAMELA", "Address": "P.O. BOX 5049", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81200, "Improved_V": 324000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.55889001200001, "SHAPE_Area": 1534.58961404 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356747.810599997639656, 259253.895399998873472 ], [ 356750.553199999034405, 259215.921000000089407 ], [ 356704.481899999082088, 259228.631799999624491 ], [ 356702.612199999392033, 259258.80290000140667 ], [ 356747.810599997639656, 259253.895399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801019800", "MAP": "D9-4077-T87", "PARCEL_NAM": "5C-1-B", "ACRE": ".24", "LONGITUDE": -64.94391057, "LATITUDE": 18.36272536, "OBJECTID_1": 3775, "PARCEL_NO_": "102801019800", "Tax_Legal_": "ST PETER 5C-1-B LT. NORTHSIDE", "Name": "LEDEE, MARGOLAINE MARTHE", "Address": "7484 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 131000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.90425790800001, "SHAPE_Area": 1062.8590762199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357430.236900001764297, 259225.916900001466274 ], [ 357400.531000003218651, 259210.686099998652935 ], [ 357396.48870000243187, 259211.919599998742342 ], [ 357393.879100002348423, 259234.27419999986887 ], [ 357401.004699997603893, 259249.742300000041723 ], [ 357404.204700000584126, 259252.723799999803305 ], [ 357404.9949000030756, 259254.630100000649691 ], [ 357408.977899998426437, 259260.362199999392033 ], [ 357409.757200002670288, 259263.535000000149012 ], [ 357412.980700001120567, 259263.77250000089407 ], [ 357415.473300002515316, 259255.138099998235703 ], [ 357422.88120000064373, 259237.46680000051856 ], [ 357430.236900001764297, 259225.916900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95837024, "LATITUDE": 18.36273806, "OBJECTID_1": 2855, "PARCEL_NO_": "102701022400", "Tax_Legal_": "BONNE RESOLUTION 14-46 LITTLE NORTHSIDE", "Name": "TROMBEN, ANDREA E.", "Address": "PO Box 6035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32000, "Improved_V": 190600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.71418080399999, "SHAPE_Area": 1073.2424588599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355884.651000000536442, 259199.756999999284744 ], [ 355858.64580000191927, 259223.397799998521805 ], [ 355864.226999998092651, 259230.831700000911951 ], [ 355876.188699997961521, 259246.550500001758337 ], [ 355904.614600002765656, 259222.718499999493361 ], [ 355884.651000000536442, 259199.756999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95877086, "LATITUDE": 18.36269628, "OBJECTID_1": 2853, "PARCEL_NO_": "102701022200", "Tax_Legal_": "BONNE RESOLUTION 14-56 & 14-57 LT NORTHSIDE QTR", "Name": "GAVEN ELLISTON and ROSEMARY JONES", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47600, "Improved_V": 233000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.59088183399999, "SHAPE_Area": 1224.2986272099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355843.135200001299381, 259245.646699998527765 ], [ 355864.226999998092651, 259230.831700000911951 ], [ 355858.64580000191927, 259223.397799998521805 ], [ 355849.8716000020504, 259212.138000000268221 ], [ 355839.472300000488758, 259202.342599999159575 ], [ 355822.676399998366833, 259186.162000000476837 ], [ 355816.967500001192093, 259193.714600000530481 ], [ 355825.658900000154972, 259214.684000000357628 ], [ 355825.570799998939037, 259225.026900000870228 ], [ 355831.168200001120567, 259230.561099998652935 ], [ 355843.135200001299381, 259245.646699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002033500", "MAP": null, "PARCEL_NAM": "D-4-M", "ACRE": null, "LONGITUDE": -64.90047908, "LATITUDE": 18.3626684, "OBJECTID_1": 5370, "PARCEL_NO_": "103002033500", "Tax_Legal_": "D-4-M LOVENLUND (aka 33) NO.2 GREAT NORTHSIDE QTR.", "Name": "MICHAEL K. & JENNIFER JOHNSON REV. FAM TRST", "Address": "PO Box 306988", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 165000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.93830189400001, "SHAPE_Area": 1375.8703958900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361965.656400002539158, 259273.380699999630451 ], [ 361981.592100001871586, 259295.887099999934435 ], [ 361996.226199999451637, 259281.863600000739098 ], [ 362005.156700000166893, 259274.759500000625849 ], [ 362012.494499996304512, 259265.320300001651049 ], [ 362037.695100001990795, 259241.461899999529123 ], [ 362048.276100002229214, 259229.938400000333786 ], [ 362003.738300003111362, 259251.949799999594688 ], [ 361965.656400002539158, 259273.380699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203013300", "MAP": "A9-115-T69", "PARCEL_NAM": "1-2", "ACRE": "1.83", "LONGITUDE": -64.94268325, "LATITUDE": 18.36232533, "OBJECTID_1": 734, "PARCEL_NO_": "101203013300", "Tax_Legal_": "LERKENLUND 1-1,2,3&5 GREAT NORTHSIDE", "Name": "JULIE BEATRICE DEITRICH REVOC LIVING TRUST", "Address": "7477 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 552300, "Improved_V": 107800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.573322846, "SHAPE_Area": 8205.7832914299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357591.5929000005126, 259216.26069999858737 ], [ 357601.426899999380112, 259197.764899998903275 ], [ 357555.300899997353554, 259122.238099999725819 ], [ 357503.328299999237061, 259165.086899999529123 ], [ 357499.088100001215935, 259189.539000000804663 ], [ 357495.751400001347065, 259202.599500000476837 ], [ 357480.174300000071526, 259232.658399999141693 ], [ 357477.728399999439716, 259235.804800000041723 ], [ 357486.4054000005126, 259258.462799999862909 ], [ 357492.91889999806881, 259251.127900000661612 ], [ 357493.743199996650219, 259249.023699998855591 ], [ 357498.61879999935627, 259244.63060000166297 ], [ 357505.10530000180006, 259240.461800001561642 ], [ 357531.799900002777576, 259230.547800000756979 ], [ 357565.749499998986721, 259220.90430000051856 ], [ 357591.5929000005126, 259216.26069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801017400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94942242, "LATITUDE": 18.36265689, "OBJECTID_1": 3751, "PARCEL_NO_": "102801017400", "Tax_Legal_": "HULL 11DA-1-D LT.NORTHSIDE QTR.", "Name": "MARTIN, LUC A. & ROSSER, PAMEL", "Address": "7531 ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71200, "Improved_V": 185000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.23527254800001, "SHAPE_Area": 3302.1865698000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356767.181900002062321, 259251.73200000077486 ], [ 356809.959600001573563, 259247.015799999237061 ], [ 356809.451800003647804, 259211.970100000500679 ], [ 356814.305900000035763, 259210.109999999403954 ], [ 356819.950099997222424, 259210.156199999153614 ], [ 356834.157999999821186, 259246.158399999141693 ], [ 356867.229400001466274, 259244.951400000602007 ], [ 356858.051700003445148, 259186.403400000184774 ], [ 356805.515600003302097, 259200.75 ], [ 356767.181900002062321, 259251.73200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702043200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95742056, "LATITUDE": 18.3627305, "OBJECTID_1": 3125, "PARCEL_NO_": "102702043200", "Tax_Legal_": "BONNE RESOLUTION 14-21 LITTLE NORTHSIDE", "Name": "DORE, JOYCE", "Address": "6524 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.254121666, "SHAPE_Area": 1321.5734873900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355974.169600002467632, 259198.378800000995398 ], [ 355957.818599998950958, 259224.631599999964237 ], [ 355971.356899999082088, 259244.585200000554323 ], [ 356010.189400002360344, 259229.704300001263618 ], [ 356006.222499996423721, 259222.072500001639128 ], [ 356000.628700003027916, 259216.116099998354912 ], [ 355974.169600002467632, 259198.378800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011600", "MAP": "D9-2899-T84", "PARCEL_NAM": "7-2A", "ACRE": null, "LONGITUDE": -64.94676063, "LATITUDE": 18.36272963, "OBJECTID_1": 3698, "PARCEL_NO_": "102801011600", "Tax_Legal_": "ST PETER 7-2A LITTLE NORTHSIDE", "Name": "GEORGE & ANN BERRY REVOC LIV TR", "Address": "8291 Nw 68 Ter", "City": "TAMARAC", "State": "Florida", "Zip": 33321, "Country": "United States", "Land_Value": 65500, "Improved_V": 136000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.39592279199999, "SHAPE_Area": 1704.5704901 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357129.261699996888638, 259211.756299998611212 ], [ 357085.228699997067451, 259212.116300001740456 ], [ 357089.717699997127056, 259253.105200000107288 ], [ 357128.3074000030756, 259253.282699998468161 ], [ 357129.261699996888638, 259211.756299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802010800", "MAP": "G9-2797-T78", "PARCEL_NAM": "2H", "ACRE": null, "LONGITUDE": -64.9397982, "LATITUDE": 18.36233618, "OBJECTID_1": 4030, "PARCEL_NO_": "102802010800", "Tax_Legal_": "LERKENLUND REM 2H GREAT NORTHSIDE QTR", "Name": "QUETEL, STEVE JOSEPH, STANLEY ANATOLE, AND GERALDINE", "Address": "3Q-1 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 134000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.64932310799998, "SHAPE_Area": 6223.71483223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357857.461300000548363, 259148.986900001764297 ], [ 357805.081600002944469, 259144.9695999994874 ], [ 357780.218900002539158, 259129.145199999213219 ], [ 357850.882100000977516, 259258.701699998229742 ], [ 357881.647799998521805, 259244.176899999380112 ], [ 357893.791000001132488, 259238.576799999922514 ], [ 357857.461300000548363, 259148.986900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90126123, "LATITUDE": 18.36266446, "OBJECTID_1": 5373, "PARCEL_NO_": "103002033800", "Tax_Legal_": "D-4-G LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "MICHAEL K. & JENNIFER JOHNSON REV. FAM TRST", "Address": "PO Box 306988", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 165000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.30765197299999, "SHAPE_Area": 1585.2270731000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361930.387299999594688, 259248.605200000107288 ], [ 361923.900799997150898, 259252.774000000208616 ], [ 361889.407399997115135, 259231.593400001525879 ], [ 361908.248199999332428, 259291.69819999858737 ], [ 361927.664399996399879, 259284.257800001651049 ], [ 361946.295900002121925, 259274.277800001204014 ], [ 361930.387299999594688, 259248.605200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94146505000001, "LATITUDE": 18.36267493, "OBJECTID_1": 3789, "PARCEL_NO_": "102801021500", "Tax_Legal_": "LERKENLUND 1-17 GR NORTHSIDE", "Name": "AUBAIN, NANCY ANDREA", "Address": "7462 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 176000, "Improved_V": 565500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.84115501500003, "SHAPE_Area": 3610.6978469199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357596.387599997222424, 259221.366099998354912 ], [ 357604.301500000059605, 259238.951699998229742 ], [ 357697.689900003373623, 259256.603500001132488 ], [ 357704.205099999904633, 259249.057500001043081 ], [ 357705.038400001823902, 259245.897900000214577 ], [ 357707.482500001788139, 259242.962600000202656 ], [ 357716.54619999974966, 259220.238699998706579 ], [ 357718.17679999768734, 259218.141100000590086 ], [ 357718.192900002002716, 259216.241399999707937 ], [ 357725.633199997246265, 259194.770700000226498 ], [ 357719.987199999392033, 259194.935600001364946 ], [ 357702.952100001275539, 259206.828499998897314 ], [ 357692.419699996709824, 259212.652899999171495 ], [ 357681.901699997484684, 259216.788699999451637 ], [ 357673.014300003647804, 259218.826900001615286 ], [ 357663.324100002646446, 259220.436299998313189 ], [ 357624.626500003039837, 259219.486299999058247 ], [ 357596.387599997222424, 259221.366099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702013200", "MAP": "D9-3357-T86", "PARCEL_NAM": "6EB", "ACRE": null, "LONGITUDE": -64.95408407, "LATITUDE": 18.36273688, "OBJECTID_1": 2972, "PARCEL_NO_": "102702013200", "Tax_Legal_": "HULL 6EB LT. NORTHSIDE", "Name": "BERRY, LORRAINE & EDMUND BRYAN (TRUSTEE)", "Address": "7682 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52700, "Improved_V": 206000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.274501528, "SHAPE_Area": 681.75883831600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356325.756999999284744, 259208.892799999564886 ], [ 356315.707999996840954, 259228.838300000876188 ], [ 356343.097499996423721, 259244.039200000464916 ], [ 356352.64580000191927, 259225.073300000280142 ], [ 356325.756999999284744, 259208.892799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801018600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94949761, "LATITUDE": 18.36274002, "OBJECTID_1": 3763, "PARCEL_NO_": "102801018600", "Tax_Legal_": "HULL 11DA-1-C LT. NORTHSIDE", "Name": "OVERBEEK, CHANTAL (TRUSTEE)", "Address": "PO Box 308234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 188000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.80994646800001, "SHAPE_Area": 631.47094810399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356809.959600001573563, 259247.015799999237061 ], [ 356834.157999999821186, 259246.158399999141693 ], [ 356819.950099997222424, 259210.156199999153614 ], [ 356814.305900000035763, 259210.109999999403954 ], [ 356809.451800003647804, 259211.970100000500679 ], [ 356809.959600001573563, 259247.015799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95641991, "LATITUDE": 18.36265892, "OBJECTID_1": 2948, "PARCEL_NO_": "102702010800", "Tax_Legal_": "HULL BAY 6I-1 LITTLE NORTHSIDE", "Name": "MORINO, WILCIA & BY, FANEL", "Address": "PMB 200 TUTU PARK MALL", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45600, "Improved_V": 405100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.711650088, "SHAPE_Area": 1036.81870961 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356081.062100000679493, 259239.994699999690056 ], [ 356099.769199997186661, 259221.149399999529123 ], [ 356107.088899999856949, 259213.820999998599291 ], [ 356107.218400001525879, 259198.6233000010252 ], [ 356099.968800000846386, 259197.7195999994874 ], [ 356093.511100001633167, 259198.511100001633167 ], [ 356076.528200000524521, 259204.282800000160933 ], [ 356068.375100001692772, 259214.770700000226498 ], [ 356068.335600003600121, 259219.41440000012517 ], [ 356072.282600000500679, 259229.368099998682737 ], [ 356075.452100001275539, 259235.938000001013279 ], [ 356081.062100000679493, 259239.994699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011900", "MAP": "G9-2659-T77", "PARCEL_NAM": "6-B", "ACRE": null, "LONGITUDE": -64.9463527, "LATITUDE": 18.36264397, "OBJECTID_1": 3701, "PARCEL_NO_": "102801011900", "Tax_Legal_": "ST PETER 6BC LT. NORTHSIDE QTR.", "Name": "MONIQUE VERONICA BERRY REVOCABLE TRUST", "Address": "PO BOX 305515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 92600, "Improved_V": 134600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.69342507900001, "SHAPE_Area": 2582.53393852 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357148.580300003290176, 259253.375900000333786 ], [ 357148.616300001740456, 259249.15430000051856 ], [ 357153.454099997878075, 259249.193900000303984 ], [ 357174.420100003480911, 259249.154399998486042 ], [ 357175.670500002801418, 259197.024500001221895 ], [ 357154.722599998116493, 259194.953200001269579 ], [ 357149.888300001621246, 259194.491500001400709 ], [ 357129.688199996948242, 259193.196800000965595 ], [ 357129.261699996888638, 259211.756299998611212 ], [ 357128.3074000030756, 259253.282699998468161 ], [ 357148.580300003290176, 259253.375900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012100", "MAP": "D9-738-T66", "PARCEL_NAM": "6C", "ACRE": null, "LONGITUDE": -64.94598981, "LATITUDE": 18.36237539, "OBJECTID_1": 3703, "PARCEL_NO_": "102801012100", "Tax_Legal_": "6C ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "ELMIRA C SITOSKY LIV TR", "Address": "6405 Bristol Glen Dr", "City": "Memphis", "State": "Tennessee", "Zip": 38135, "Country": "United States", "Land_Value": 205900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.809974909, "SHAPE_Area": 3173.3487903300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357176.985699996352196, 259137.295800000429153 ], [ 357176.944399997591972, 259142.150600001215935 ], [ 357175.670500002801418, 259197.024500001221895 ], [ 357174.420100003480911, 259249.154399998486042 ], [ 357203.449100002646446, 259249.180900000035763 ], [ 357203.891500003635883, 259197.255499999970198 ], [ 357205.206699997186661, 259137.526799999177456 ], [ 357176.985699996352196, 259137.295800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801020100", "MAP": "F9-3168-T73", "PARCEL_NAM": "6J", "ACRE": "0.03", "LONGITUDE": -64.94504277, "LATITUDE": 18.36275102, "OBJECTID_1": 3777, "PARCEL_NO_": "102801020100", "Tax_Legal_": "ST PETER 6J&24 LITTLE NORTHSIDE QTR", "Name": "JOEL MICHEL KLING REVOC FAMILY TRUST 2015", "Address": "7487 St Peter Mtn", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96000, "Improved_V": 203100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.80291888799999, "SHAPE_Area": 405.17812905900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357289.198700003325939, 259216.952100001275539 ], [ 357285.2787000015378, 259203.83219999819994 ], [ 357285.048500001430511, 259230.850299999117851 ], [ 357284.211599998176098, 259234.432100001722574 ], [ 357283.362199999392033, 259239.491300001740456 ], [ 357280.048799999058247, 259249.807799998670816 ], [ 357301.009300000965595, 259250.401599999517202 ], [ 357296.28830000013113, 259236.641800001263618 ], [ 357294.717100001871586, 259231.773800000548363 ], [ 357289.198700003325939, 259216.952100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019000", "MAP": "D9-7220-T003", "PARCEL_NAM": "6D-1", "ACRE": null, "LONGITUDE": -64.94566872, "LATITUDE": 18.36264214, "OBJECTID_1": 3767, "PARCEL_NO_": "102801019000", "Tax_Legal_": "6D-1 REM.&6D-2 EST.ST.PETER No.2 LITTLE NORTHSIDE QTR.", "Name": "ASHLEY A POMERANZ 2018 TRUST", "Address": "Raphune Hill Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 280100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.68939443299999, "SHAPE_Area": 2072.6996511500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357243.766500003635883, 259249.299800001084805 ], [ 357243.40259999781847, 259197.367800001055002 ], [ 357203.891500003635883, 259197.255499999970198 ], [ 357203.449100002646446, 259249.180900000035763 ], [ 357243.766500003635883, 259249.299800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019100", "MAP": "D9-2087-T004", "PARCEL_NAM": "6E-1", "ACRE": null, "LONGITUDE": -64.94531841, "LATITUDE": 18.36261952, "OBJECTID_1": 3768, "PARCEL_NO_": "102801019100", "Tax_Legal_": "ST PETER 6E-1 LT. NORTHSIDE", "Name": "BERRY, JOSEPH N., JR. & ANITA M. (Co-Trustees)", "Address": "PO Box 305516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 370200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.59991361499999, "SHAPE_Area": 1840.28103831 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357277.321599997580051, 259191.312600001692772 ], [ 357243.40259999781847, 259197.367800001055002 ], [ 357243.766500003635883, 259249.299800001084805 ], [ 357271.98929999768734, 259249.319699998944998 ], [ 357273.628899998962879, 259246.166700001806021 ], [ 357276.126900002360344, 259236.899000000208616 ], [ 357278.669900000095367, 259222.354400001466274 ], [ 357277.321599997580051, 259191.312600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91006552, "LATITUDE": 18.36264639, "OBJECTID_1": 5233, "PARCEL_NO_": "103001031400", "Tax_Legal_": "LOVENLUND C-5-B-2 83B GT.NORTHSIDE", "Name": "WATERS, DARRIN L. & TAMMY JANE", "Address": "6501 Res Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.99350761299999, "SHAPE_Area": 1812.9631259600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361027.159100003540516, 259259.789000000804663 ], [ 360970.95269999653101, 259231.675700001418591 ], [ 360956.388800002634525, 259237.467099998146296 ], [ 360947.407799996435642, 259250.4814000017941 ], [ 361003.608800001442432, 259279.227899998426437 ], [ 361027.159100003540516, 259259.789000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702043400", "MAP": "A9-157-T71", "PARCEL_NAM": "14-17", "ACRE": null, "LONGITUDE": -64.95787955, "LATITUDE": 18.36270734, "OBJECTID_1": 3127, "PARCEL_NO_": "102702043400", "Tax_Legal_": "BONNE RESOLUTION 14-17 LT. NORTHSIDE QTR", "Name": "HOSIER, ANNA-LEE E. & TERRY C. (CO-TRUSTEES)", "Address": "PO Box 10707", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37300, "Improved_V": 227800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.87777540899999, "SHAPE_Area": 827.20908746700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355957.818599998950958, 259224.631599999964237 ], [ 355936.199199996888638, 259206.722800001502037 ], [ 355933.830600000917912, 259200.79280000180006 ], [ 355911.120800003409386, 259216.227899998426437 ], [ 355929.487999998033047, 259237.276500001549721 ], [ 355957.818599998950958, 259224.631599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033100", "MAP": "A9-394-T91", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96559599, "LATITUDE": 18.36250456, "OBJECTID_1": 467, "PARCEL_NO_": "101103033100", "Tax_Legal_": "NELTJEBERG 23/EASTERN PT LT. NORTHSIDE", "Name": "KRIGGER, ASHTON", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.47003550699998, "SHAPE_Area": 2554.3851702299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355133.655100002884865, 259136.404100000858307 ], [ 355072.545100003480911, 259210.631099998950958 ], [ 355079.828900001943111, 259207.524300001561642 ], [ 355089.571099996566772, 259199.793600000441074 ], [ 355096.836900003254414, 259198.797600001096725 ], [ 355104.072200000286102, 259201.389899998903275 ], [ 355108.866899996995926, 259206.495400000363588 ], [ 355110.443599998950958, 259210.730200000107288 ], [ 355108.74099999666214, 259221.270899999886751 ], [ 355102.21679999679327, 259229.872400000691414 ], [ 355123.188100002706051, 259229.199599999934435 ], [ 355147.573499999940395, 259206.390000000596046 ], [ 355135.592100001871586, 259192.993099998682737 ], [ 355128.454000003635883, 259179.002500001341105 ], [ 355136.032600000500679, 259141.2787000015378 ], [ 355133.655100002884865, 259136.404100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90922016, "LATITUDE": 18.36264378, "OBJECTID_1": 5245, "PARCEL_NO_": "103001032700", "Tax_Legal_": "LOVENLUND C-22 GT. NORTHSIDE QTR.", "Name": "MILES SAMUEL LLC", "Address": "PO Box 1623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.626248046, "SHAPE_Area": 1530.93005358 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361105.39469999819994, 259257.685100000351667 ], [ 361071.770599998533726, 259229.1233000010252 ], [ 361062.006700001657009, 259239.386999998241663 ], [ 361043.299699999392033, 259258.232299998402596 ], [ 361086.671499997377396, 259278.430100001394749 ], [ 361105.39469999819994, 259257.685100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701013300", "MAP": "D9-1859-T81", "PARCEL_NAM": "14-5", "ACRE": null, "LONGITUDE": -64.96282244, "LATITUDE": 18.36266345, "OBJECTID_1": 2811, "PARCEL_NO_": "102701013300", "Tax_Legal_": "DOROTHEA 14-5 LT. NORTHSIDE", "Name": "WILLIAMS, TROY CLAYTON & NADINE LOUISE QUESTEL", "Address": "PO BOX 306882", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 160800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.59545319099999, "SHAPE_Area": 1284.8093752499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355419.45719999819994, 259190.250100001692772 ], [ 355384.704899996519089, 259199.464899998158216 ], [ 355402.168600000441074, 259231.905099999159575 ], [ 355436.920999996364117, 259222.690400000661612 ], [ 355434.536200001835823, 259218.660100001841784 ], [ 355419.45719999819994, 259190.250100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002037700", "MAP": "D9-5910-T95", "PARCEL_NAM": "C-72-A", "ACRE": ".53", "LONGITUDE": -64.90593472, "LATITUDE": 18.36260041, "OBJECTID_1": 5555, "PARCEL_NO_": "103002037700", "Tax_Legal_": "LOVENLUND C-72-A GREAT NORTHSIDE", "Name": "MAHOGANY RUN CONDOMINIUM ASSOC", "Address": "310 M GOLF VILLAGE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 249600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.96753646100001, "SHAPE_Area": 3389.1694763800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361466.563400000333786, 259267.607200000435114 ], [ 361455.539300002157688, 259236.486200001090765 ], [ 361445.168799996376038, 259223.313499998301268 ], [ 361422.574000000953674, 259225.239500001072884 ], [ 361408.760600000619888, 259237.581000000238419 ], [ 361384.533500000834465, 259241.815600000321865 ], [ 361373.117499999701977, 259256.709899999201298 ], [ 361374.717500001192093, 259258.200599998235703 ], [ 361377.913999997079372, 259261.604299999773502 ], [ 361409.19650000333786, 259281.06980000063777 ], [ 361466.563400000333786, 259267.607200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801028600", "MAP": "D9-4077-T87", "PARCEL_NAM": "5C-1-A", "ACRE": ".29", "LONGITUDE": -64.94420345, "LATITUDE": 18.36278558, "OBJECTID_1": 3832, "PARCEL_NO_": "102801028600", "Tax_Legal_": "5C-1-A ESTATE ST.PETER LT. NORTHSIDE", "Name": "THIERRY LEDEE TRUST", "Address": "7484 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61100, "Improved_V": 255000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.70265498000001, "SHAPE_Area": 1281.47752773 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357393.879100002348423, 259234.27419999986887 ], [ 357396.48870000243187, 259211.919599998742342 ], [ 357360.100299999117851, 259223.865200001746416 ], [ 357366.354800000786781, 259246.925599999725819 ], [ 357374.932899996638298, 259281.192999999970198 ], [ 357384.5337999984622, 259277.513900000602007 ], [ 357383.413900002837181, 259273.584600001573563 ], [ 357382.223200000822544, 259270.330200001597404 ], [ 357381.588200002908707, 259267.075800001621246 ], [ 357380.79450000077486, 259263.345199998468161 ], [ 357381.032600000500679, 259260.011399999260902 ], [ 357382.143799997866154, 259256.122000001370907 ], [ 357383.969499997794628, 259251.835799999535084 ], [ 357386.11259999871254, 259248.184500001370907 ], [ 357390.265399999916553, 259241.776299998164177 ], [ 357389.793600000441074, 259240.573499999940395 ], [ 357393.879100002348423, 259234.27419999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95596945, "LATITUDE": 18.36266142, "OBJECTID_1": 2951, "PARCEL_NO_": "102702011100", "Tax_Legal_": "HULL BAY 6I-3 LITTLE NORTHSIDE", "Name": "ROGERS, DEAN & ROSALIND", "Address": "PO Box 305431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52700, "Improved_V": 180100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.25974326900001, "SHAPE_Area": 1590.67549536 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356099.769199997186661, 259221.149399999529123 ], [ 356152.861699998378754, 259236.149399999529123 ], [ 356159.337399996817112, 259233.247099999338388 ], [ 356163.415700003504753, 259227.791999999433756 ], [ 356163.521799996495247, 259215.338300000876188 ], [ 356162.751500003039837, 259211.110199999064207 ], [ 356157.962099999189377, 259205.371399998664856 ], [ 356153.941399998962879, 259204.072000000625849 ], [ 356141.040399998426437, 259203.966400001198053 ], [ 356131.382600001990795, 259201.776399999856949 ], [ 356107.218400001525879, 259198.6233000010252 ], [ 356107.088899999856949, 259213.820999998599291 ], [ 356099.769199997186661, 259221.149399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011300", "MAP": "A9-92-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95542737, "LATITUDE": 18.362505, "OBJECTID_1": 2953, "PARCEL_NO_": "102702011300", "Tax_Legal_": "HULL BAY 6I-10 LITTLE NORTHSIDE", "Name": "GOLUB, ROBERT S", "Address": "PO Box 303467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.306726634, "SHAPE_Area": 2309.22297312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356225.621200002729893, 259210.125399999320507 ], [ 356186.391800001263618, 259160.389800000935793 ], [ 356167.241599999368191, 259157.31810000166297 ], [ 356184.667499996721745, 259194.190999999642372 ], [ 356184.604599997401237, 259201.578699998557568 ], [ 356163.631499998271465, 259202.462499998509884 ], [ 356168.401000000536442, 259210.52309999987483 ], [ 356170.740900002419949, 259219.830400001257658 ], [ 356189.961099997162819, 259235.39750000089407 ], [ 356217.544699996709824, 259215.780499998480082 ], [ 356225.621200002729893, 259210.125399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95951409, "LATITUDE": 18.36205935, "OBJECTID_1": 2860, "PARCEL_NO_": "102701023000", "Tax_Legal_": "14-89 BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "TOVAR, I. FERNANDO", "Address": "PO Box 502247", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 87300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.721981578, "SHAPE_Area": 3896.72610059 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355781.42790000140667, 259106.030999999493361 ], [ 355784.015799999237061, 259086.209399998188019 ], [ 355748.619000002741814, 259076.420499999076128 ], [ 355751.736400000751019, 259089.111600000411272 ], [ 355742.641099996864796, 259210.204900000244379 ], [ 355745.68469999730587, 259231.550200000405312 ], [ 355759.456799998879433, 259224.0636 ], [ 355772.015399999916553, 259169.704199999570847 ], [ 355776.190800003707409, 259152.850900001823902 ], [ 355777.950900003314018, 259135.555700000375509 ], [ 355781.42790000140667, 259106.030999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702014600", "MAP": "D9-3776-T86", "PARCEL_NAM": "6E-H", "ACRE": ".31", "LONGITUDE": -64.95442279, "LATITUDE": 18.36262749, "OBJECTID_1": 2983, "PARCEL_NO_": "102702014600", "Tax_Legal_": "HULL 6EH LT. NORTHSIDE", "Name": "BERRY, BEVERLY", "Address": "6-E ESTATE HULL", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.01679699600001, "SHAPE_Area": 1327.9908105100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356321.127700001001358, 259206.107099998742342 ], [ 356300.181999996304512, 259193.502900000661612 ], [ 356289.147699996829033, 259201.750100001692772 ], [ 356267.77139999717474, 259213.49720000103116 ], [ 356261.317400000989437, 259217.0439000017941 ], [ 356298.809000000357628, 259229.343499999493361 ], [ 356308.89580000191927, 259232.65260000154376 ], [ 356313.092600002884865, 259234.029399998486042 ], [ 356315.707999996840954, 259228.838300000876188 ], [ 356325.756999999284744, 259208.892799999564886 ], [ 356321.127700001001358, 259206.107099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702043800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95692698000001, "LATITUDE": 18.36264678, "OBJECTID_1": 3131, "PARCEL_NO_": "102702043800", "Tax_Legal_": "BONNE RESOLUTION 14-8 LITTLE NORTHSIDE", "Name": "GOMEZ, SR., ALVIN A.", "Address": "PO Box 11801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34500, "Improved_V": 224600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.69716893899999, "SHAPE_Area": 988.90437591099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356051.575599998235703, 259199.012299999594688 ], [ 356017.667400002479553, 259203.800999999046326 ], [ 356009.532300002872944, 259212.178199999034405 ], [ 356015.914499998092651, 259220.252000000327826 ], [ 356019.078599996864796, 259227.454999998211861 ], [ 356019.058799996972084, 259229.776900000870228 ], [ 356054.586900003254414, 259224.1570999994874 ], [ 356051.575599998235703, 259199.012299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96584934000001, "LATITUDE": 18.36225472, "OBJECTID_1": 463, "PARCEL_NO_": "101103032700", "Tax_Legal_": "NELTJEBERG 19/EASTERN PT LT. NORTHSIDE", "Name": "SCOTLAND, SHAWN", "Address": "PO Box 305712", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.95480481700002, "SHAPE_Area": 3174.26042547 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355067.412799999117851, 259152.515999998897314 ], [ 355056.395400002598763, 259213.243099998682737 ], [ 355065.272100001573563, 259212.471400000154972 ], [ 355072.545100003480911, 259210.631099998950958 ], [ 355133.655100002884865, 259136.404100000858307 ], [ 355126.522299997508526, 259121.780299998819828 ], [ 355124.954700000584126, 259116.490100000053644 ], [ 355090.096199996769428, 259138.158599998801947 ], [ 355067.412799999117851, 259152.515999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701023200", "MAP": "A9-157-T71", "PARCEL_NAM": "14-59", "ACRE": "0.25", "LONGITUDE": -64.95927165000001, "LATITUDE": 18.36250395, "OBJECTID_1": 2862, "PARCEL_NO_": "102701023200", "Tax_Legal_": "BONNE RESOLUTION 14-35 & 14-59 LT. NORTHSIDE", "Name": "DORSEY, ROMETA", "Address": "PO BOX 306583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59300, "Improved_V": 42500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.41625519600001, "SHAPE_Area": 1826.4959369000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355759.456799998879433, 259224.0636 ], [ 355769.177500002086163, 259218.865800000727177 ], [ 355782.116200000047684, 259214.538800001144409 ], [ 355795.830700002610683, 259213.806600000709295 ], [ 355808.710199996829033, 259216.445199999958277 ], [ 355812.754299998283386, 259215.000599998980761 ], [ 355813.603799998760223, 259209.941300000995398 ], [ 355806.490800000727177, 259192.995600000023842 ], [ 355804.9375, 259186.016800001263618 ], [ 355804.219300001859665, 259175.667300000786781 ], [ 355772.015399999916553, 259169.704199999570847 ], [ 355759.456799998879433, 259224.0636 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90087318, "LATITUDE": 18.36253116, "OBJECTID_1": 5371, "PARCEL_NO_": "103002033600", "Tax_Legal_": "LOVENLUND D-4-N AKA 26 GT. NORTHSIDE", "Name": "HORACE & SONIA GRIFFITH LIV TR", "Address": "PO Box 305788", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 169800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.96323025300001, "SHAPE_Area": 1400.1253817300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361985.180500000715256, 259253.275600001215935 ], [ 361968.487099997699261, 259225.063499998301268 ], [ 361930.387299999594688, 259248.605200000107288 ], [ 361946.295900002121925, 259274.277800001204014 ], [ 361985.180500000715256, 259253.275600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702043700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95767526, "LATITUDE": 18.36254752, "OBJECTID_1": 3130, "PARCEL_NO_": "102702043700", "Tax_Legal_": "14-16 BONNE RESOUTION LITTLE NORTHSIDE", "Name": "RITZA PRINCE HODGE FAMILY TRUST", "Address": "PO Box 9910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37300, "Improved_V": 367300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.382735794, "SHAPE_Area": 888.99224074300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355963.034100003540516, 259180.344700001180172 ], [ 355933.830600000917912, 259200.79280000180006 ], [ 355936.199199996888638, 259206.722800001502037 ], [ 355957.818599998950958, 259224.631599999964237 ], [ 355974.169600002467632, 259198.378800000995398 ], [ 355969.35869999974966, 259195.173000000417233 ], [ 355964.574799999594688, 259188.800999999046326 ], [ 355963.034100003540516, 259180.344700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9548121, "LATITUDE": 18.36254245, "OBJECTID_1": 2946, "PARCEL_NO_": "102702010600", "Tax_Legal_": "6E HULL BAY LT. NORTHSIDE QTR", "Name": "EDMUND BRYAN REVOCABLE TRUST", "Address": "7682 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 155700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.74766141200001, "SHAPE_Area": 1922.35318284 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356298.932599999010563, 259192.7511 ], [ 356273.211300000548363, 259177.27309999987483 ], [ 356232.146499998867512, 259205.556400001049042 ], [ 356217.544699996709824, 259215.780499998480082 ], [ 356214.913000002503395, 259217.652199998497963 ], [ 356234.392099998891354, 259231.840300001204014 ], [ 356261.317400000989437, 259217.0439000017941 ], [ 356267.77139999717474, 259213.49720000103116 ], [ 356289.147699996829033, 259201.750100001692772 ], [ 356300.181999996304512, 259193.502900000661612 ], [ 356298.932599999010563, 259192.7511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95856692, "LATITUDE": 18.36250847, "OBJECTID_1": 2856, "PARCEL_NO_": "102701022500", "Tax_Legal_": "14-45 BONNE RESOLUTION LITTLE NORTHSIDE", "Name": "RICHARDS, WALTER & DENISE", "Address": "PO Box 503205", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28400, "Improved_V": 272900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.12421821500001, "SHAPE_Area": 1224.2175873399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355855.065600000321865, 259170.38399999961257 ], [ 355839.472300000488758, 259202.342599999159575 ], [ 355849.8716000020504, 259212.138000000268221 ], [ 355858.64580000191927, 259223.397799998521805 ], [ 355884.651000000536442, 259199.756999999284744 ], [ 355867.08110000193119, 259179.770399998873472 ], [ 355855.065600000321865, 259170.38399999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002038900", "MAP": "A9-677-T006", "PARCEL_NAM": "C-72 REM", "ACRE": "3-167", "LONGITUDE": -64.90508144, "LATITUDE": 18.3621622, "OBJECTID_1": 5578, "PARCEL_NO_": "103002038900", "Tax_Legal_": "LOVENLUND C-72 GT. NORTHSIDE QTR.", "Name": "NORTH DROP ASSOCIATES LLC", "Address": "290 N Federal Hwy", "City": "Hollywood", "State": "Florida", "Zip": 33020, "Country": "United States", "Land_Value": 530800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 653.21744863000004, "SHAPE_Area": 11158.1163134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361502.029600001871586, 259174.594099998474121 ], [ 361505.179300002753735, 259183.485800001770258 ], [ 361436.482699997723103, 259201.710900001227856 ], [ 361374.182700000703335, 259226.321100000292063 ], [ 361384.533500000834465, 259241.815600000321865 ], [ 361408.760600000619888, 259237.581000000238419 ], [ 361422.574000000953674, 259225.239500001072884 ], [ 361445.168799996376038, 259223.313499998301268 ], [ 361455.539300002157688, 259236.486200001090765 ], [ 361466.563400000333786, 259267.607200000435114 ], [ 361492.500200003385544, 259251.987399999052286 ], [ 361513.584899999201298, 259238.016699999570847 ], [ 361576.698399998247623, 259212.568799998611212 ], [ 361618.869400002062321, 259184.416299998760223 ], [ 361656.800300002098083, 259180.715999998152256 ], [ 361647.153300002217293, 259177.259500000625849 ], [ 361615.795199997723103, 259166.659299999475479 ], [ 361594.859899997711182, 259163.110399998724461 ], [ 361574.716399997472763, 259161.256799999624491 ], [ 361561.009099997580051, 259161.144600000232458 ], [ 361552.130699999630451, 259162.127399999648333 ], [ 361506.070200003683567, 259173.571699999272823 ], [ 361502.029600001871586, 259174.594099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95255048, "LATITUDE": 18.36205681, "OBJECTID_1": 3008, "PARCEL_NO_": "102702020500", "Tax_Legal_": "6C & 6D HULL No. 4 LITTLE NORTHSIDE QTR", "Name": "BRIN, M & J., & M & JOSEPH, J", "Address": "PO Box 9551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 368200, "Improved_V": 212600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 819.24415860700003, "SHAPE_Area": 23623.7653154 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356604.877899996936321, 259088.705899998545647 ], [ 356412.980899997055531, 259086.502000000327826 ], [ 356411.206500001251698, 259105.48589999973774 ], [ 356415.002499997615814, 259133.170299999415874 ], [ 356414.079300001263618, 259146.883799999952316 ], [ 356426.962300002574921, 259149.10020000115037 ], [ 356435.833499997854233, 259148.96169999986887 ], [ 356458.475000001490116, 259141.547600001096725 ], [ 356473.056999996304512, 259133.645399998873472 ], [ 356485.223600000143051, 259125.301300000399351 ], [ 356487.619099996984005, 259128.065099999308586 ], [ 356477.882200002670288, 259135.162599999457598 ], [ 356463.298500001430511, 259143.275800000876188 ], [ 356435.000200003385544, 259152.121300000697374 ], [ 356429.350699998438358, 259152.708299998193979 ], [ 356414.048699997365475, 259150.472100000828505 ], [ 356413.937200002372265, 259163.559000000357628 ], [ 356413.094899997115135, 259167.774000000208616 ], [ 356409.785199999809265, 259177.668299999088049 ], [ 356405.678099997341633, 259186.500599998980761 ], [ 356377.990099996328354, 259218.360199999064207 ], [ 356377.956000000238419, 259222.370700001716614 ], [ 356380.365900002419949, 259223.445900000631809 ], [ 356390.839000001549721, 259224.587099999189377 ], [ 356408.577899999916553, 259224.732299998402596 ], [ 356452.95380000025034, 259221.717999998480082 ], [ 356504.608199998736382, 259216.230099998414516 ], [ 356581.319300003349781, 259203.770199999213219 ], [ 356604.877899996936321, 259088.705899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90977207, "LATITUDE": 18.36245424, "OBJECTID_1": 5234, "PARCEL_NO_": "103001031500", "Tax_Legal_": "LOVENLUND C-5-B-1 83C GT. NORTHSIDE", "Name": "WATERS, DARRIN L. & TAMMY JANE", "Address": "6501 Res Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.68622201299999, "SHAPE_Area": 2124.7887005399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361054.794900000095367, 259234.050599999725819 ], [ 361046.771300002932549, 259229.340900000184774 ], [ 361022.783299997448921, 259205.502099998295307 ], [ 361013.024800002574921, 259215.132500000298023 ], [ 360970.95269999653101, 259231.675700001418591 ], [ 361027.159100003540516, 259259.789000000804663 ], [ 361039.341899998486042, 259249.545099999755621 ], [ 361054.794900000095367, 259234.050599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702043900", "MAP": "A9-157-T71", "PARCEL_NAM": "14-18", "ACRE": null, "LONGITUDE": -64.95803368, "LATITUDE": 18.36243034, "OBJECTID_1": 3132, "PARCEL_NO_": "102702043900", "Tax_Legal_": "BONNE RESOLUTION 14-18 LT. NORTHSIDE QTR", "Name": "HARRIGAN, PAUL O.", "Address": "PO Box 10979", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013979, "Country": "United States", "Land_Value": 23300, "Improved_V": 167000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.18015130699999, "SHAPE_Area": 1098.9441473300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355931.731799997389317, 259163.2010000012815 ], [ 355909.963100001215935, 259162.811700001358986 ], [ 355909.851700000464916, 259175.898600000888109 ], [ 355909.012999996542931, 259179.691399998962879 ], [ 355899.943899996578693, 259203.048599999397993 ], [ 355911.120800003409386, 259216.227899998426437 ], [ 355933.830600000917912, 259200.79280000180006 ], [ 355927.513199999928474, 259185.120200000703335 ], [ 355925.164399996399879, 259176.868299998342991 ], [ 355931.731799997389317, 259163.2010000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801028900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94483695, "LATITUDE": 18.36246134, "OBJECTID_1": 3835, "PARCEL_NO_": "102801028900", "Tax_Legal_": "ST PETER 5-F LITTLE NORTHSIDE QTR", "Name": "GREAUX, IREAN M", "Address": "PO Box 301793", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62300, "Improved_V": 292600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.022868004, "SHAPE_Area": 1601.56721335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357338.403599999845028, 259215.032800000160933 ], [ 357329.820100001990795, 259181.398699998855591 ], [ 357285.363200001418591, 259193.911499999463558 ], [ 357285.2787000015378, 259203.83219999819994 ], [ 357289.198700003325939, 259216.952100001275539 ], [ 357294.049199998378754, 259215.514199998229742 ], [ 357297.989100001752377, 259226.312199998646975 ], [ 357338.403599999845028, 259215.032800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90897523, "LATITUDE": 18.36239442, "OBJECTID_1": 5244, "PARCEL_NO_": "103001032600", "Tax_Legal_": "LOVENLUND C-50 //127 GT. NORTHSIDE", "Name": "MILES SAMUEL LLC", "Address": "PO Box 1623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.90739853100001, "SHAPE_Area": 1833.98475381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361132.258400000631809, 259227.929699998348951 ], [ 361097.842299997806549, 259197.672699999064207 ], [ 361085.630699999630451, 259211.293800000101328 ], [ 361071.770599998533726, 259229.1233000010252 ], [ 361105.39469999819994, 259257.685100000351667 ], [ 361132.258400000631809, 259227.929699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701013400", "MAP": "D9-1859-T81", "PARCEL_NAM": "14-6", "ACRE": null, "LONGITUDE": -64.96243687, "LATITUDE": 18.36245626, "OBJECTID_1": 2812, "PARCEL_NO_": "102701013400", "Tax_Legal_": "DOROTHEA 14-6 NORTHSIDE QRT.", "Name": "FELICIANO,JR., EFRAIN & TARAMATEE SOOKRAM", "Address": "PO Box 280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35900, "Improved_V": 256300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.44858454000001, "SHAPE_Area": 1113.8374615800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355461.592299997806549, 259166.319200001657009 ], [ 355427.55629999935627, 259186.094500001519918 ], [ 355431.533900000154972, 259192.459899999201298 ], [ 355433.916900001466274, 259196.701299998909235 ], [ 355438.664899997413158, 259207.294799998402596 ], [ 355441.060400001704693, 259210.058600001037121 ], [ 355475.89190000295639, 259191.556400001049042 ], [ 355461.592299997806549, 259166.319200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011400", "MAP": "F9-3432-T76", "PARCEL_NAM": "6F", "ACRE": ".50", "LONGITUDE": -64.95385926, "LATITUDE": 18.36246095, "OBJECTID_1": 2954, "PARCEL_NO_": "102702011400", "Tax_Legal_": "HULL BAY 6F LITTLE NORTHSIDE", "Name": "BRYAN, NANCY F.", "Address": "6F Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71200, "Improved_V": 94400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.19937315499999, "SHAPE_Area": 1858.3795732200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356392.148800000548363, 259187.810100000351667 ], [ 356348.463100001215935, 259169.866799999028444 ], [ 356345.900499999523163, 259174.112700000405312 ], [ 356327.872599996626377, 259203.982999999076128 ], [ 356354.664800003170967, 259221.063000001013279 ], [ 356359.147799998521805, 259223.920899998396635 ], [ 356366.70719999819994, 259217.63459999859333 ], [ 356385.439400002360344, 259195.834199998527765 ], [ 356392.148800000548363, 259187.810100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203013300", "MAP": "A9-115-T69", "PARCEL_NAM": "1-1", "ACRE": ".17", "LONGITUDE": -64.94325382, "LATITUDE": 18.36240006, "OBJECTID_1": 734, "PARCEL_NO_": "101203013300", "Tax_Legal_": "LERKENLUND 1-1,2,3&5 GREAT NORTHSIDE", "Name": "JULIE BEATRICE DEITRICH REVOC LIVING TRUST", "Address": "7477 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 552300, "Improved_V": 107800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.14189287799999, "SHAPE_Area": 697.16778160900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357464.359200000762939, 259196.009799998253584 ], [ 357474.589500002563, 259225.646600000560284 ], [ 357485.208200000226498, 259209.690400000661612 ], [ 357494.401299998164177, 259171.768800001591444 ], [ 357464.359200000762939, 259196.009799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801025300", "MAP": "G9-2250-T73", "PARCEL_NAM": "5D", "ACRE": "2.0", "LONGITUDE": -64.94393886, "LATITUDE": 18.36216691, "OBJECTID_1": 3820, "PARCEL_NO_": "102801025300", "Tax_Legal_": "5D ESTATE ST. PETER NO.2 LT NORTHSIDE QTR", "Name": "BERRY, LUCIA A. & SHARON M.", "Address": "7430 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 211700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 371.53672158199998, "SHAPE_Area": 8487.2210628899993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357402.873700000345707, 259125.001299999654293 ], [ 357359.214100003242493, 259138.576200000941753 ], [ 357358.915600001811981, 259173.615200001746416 ], [ 357357.758699998259544, 259214.769000001251698 ], [ 357360.100299999117851, 259223.865200001746416 ], [ 357396.48870000243187, 259211.919599998742342 ], [ 357400.531000003218651, 259210.686099998652935 ], [ 357430.236900001764297, 259225.916900001466274 ], [ 357436.779100000858307, 259215.204700000584126 ], [ 357459.571599997580051, 259190.059999998658895 ], [ 357464.44370000064373, 259186.089099999517202 ], [ 357436.8125, 259116.624299999326468 ], [ 357436.022399999201298, 259114.7179000005126 ], [ 357402.873700000345707, 259125.001299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002037200", "MAP": "F9-3999-T80", "PARCEL_NAM": "C-58", "ACRE": ".115", "LONGITUDE": -64.90643062, "LATITUDE": 18.36249083, "OBJECTID_1": 5514, "PARCEL_NO_": "103002037200", "Tax_Legal_": "LOVENLUND C-58 GT. NORTHSIDE QTR", "Name": "MAHOGANY RUN DEV. CORP.", "Address": "BOX 5080", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.544042639500006, "SHAPE_Area": 477.17680856300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361374.182700000703335, 259226.321100000292063 ], [ 361363.653899997472763, 259231.723400000482798 ], [ 361353.918799996376038, 259238.6097999997437 ], [ 361369.917400002479553, 259253.728399999439716 ], [ 361373.117499999701977, 259256.709899999201298 ], [ 361384.533500000834465, 259241.815600000321865 ], [ 361374.182700000703335, 259226.321100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103034100", "MAP": "A9-394-T91", "PARCEL_NAM": "33", "ACRE": null, "LONGITUDE": -64.96779163, "LATITUDE": 18.36242309, "OBJECTID_1": 477, "PARCEL_NO_": "101103034100", "Tax_Legal_": "NELTJEBERG 33/EASTERN PT LT. NORTHSIDE", "Name": "MOOLENAAR, V", "Address": "2386 Morris Ave", "City": "Bronx", "State": "New York", "Zip": 10468, "Country": "United States", "Land_Value": 54300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.44577307099999, "SHAPE_Area": 1854.5814413600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354871.452500000596046, 259151.989999998360872 ], [ 354856.049800001084805, 259161.574200000613928 ], [ 354860.747400000691414, 259178.078000001609325 ], [ 354866.985699996352196, 259203.038100000470877 ], [ 354871.047899998724461, 259199.482700001448393 ], [ 354877.518200002610683, 259197.213599998503923 ], [ 354895.246200002729893, 259198.625300001353025 ], [ 354905.744499996304512, 259196.8114 ], [ 354913.838200002908707, 259193.289000000804663 ], [ 354928.434500001370907, 259183.69819999858737 ], [ 354928.466899998486042, 259179.898800000548363 ], [ 354926.863300003111362, 259178.830200001597404 ], [ 354912.360399998724461, 259177.444899998605251 ], [ 354904.31530000269413, 259175.268100000917912 ], [ 354889.857400000095367, 259168.605900000780821 ], [ 354877.042700000107288, 259158.368500001728535 ], [ 354871.452500000596046, 259151.989999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95696764, "LATITUDE": 18.36242176, "OBJECTID_1": 3128, "PARCEL_NO_": "102702043500", "Tax_Legal_": "BONNE RESOULTION 14-9 LITTLE NORTHSIDE", "Name": "M Richards,B Turner,Bria,Brittany&Barbara Clay", "Address": "PO Box 9824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42500, "Improved_V": 244500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.487164775, "SHAPE_Area": 1181.5790056599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356050.826899997889996, 259192.251200001686811 ], [ 356048.603900000452995, 259169.223799999803305 ], [ 356017.096600003540516, 259176.143100000917912 ], [ 356003.925899997353554, 259207.699299998581409 ], [ 356009.532300002872944, 259212.178199999034405 ], [ 356017.667400002479553, 259203.800999999046326 ], [ 356051.575599998235703, 259199.012299999594688 ], [ 356050.826899997889996, 259192.251200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013400", "MAP": "B9-238-T69", "PARCEL_NAM": "2A", "ACRE": null, "LONGITUDE": -64.93714951, "LATITUDE": 18.36215281, "OBJECTID_1": 4053, "PARCEL_NO_": "102802013400", "Tax_Legal_": "LERKENLUND 2A GREAT NORTHSIDE QTR", "Name": "QUETEL, STANLEY A", "Address": "P O BOX 4583", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 215200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.93853298300002, "SHAPE_Area": 3856.9819174200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358166.711300000548363, 259195.425400000065565 ], [ 358117.300700001418591, 259126.837799999862909 ], [ 358083.165899999439716, 259158.22239999845624 ], [ 358120.614799998700619, 259211.0912000015378 ], [ 358132.561999998986721, 259228.498700000345707 ], [ 358146.425800003111362, 259210.247000001370907 ], [ 358157.796899996697903, 259200.629799999296665 ], [ 358166.711300000548363, 259195.425400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90240559, "LATITUDE": 18.36245655, "OBJECTID_1": 5381, "PARCEL_NO_": "103002034600", "Tax_Legal_": "LOVENLUND D-4-H(14) GT. NORTHSIDE", "Name": "BRIAN C CHEETHAM & ANGELA W.K. LUI TRUST", "Address": "9154 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022687, "Country": "United States", "Land_Value": 136600, "Improved_V": 475000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.15386681199999, "SHAPE_Area": 1980.19403491 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361760.330899998545647, 259238.347500000149012 ], [ 361764.317500002682209, 259243.657400000840425 ], [ 361773.079000003635883, 259256.394799999892712 ], [ 361823.88570000231266, 259255.755100000649691 ], [ 361835.982199996709824, 259255.64299999922514 ], [ 361815.309399999678135, 259221.276700001209974 ], [ 361781.404700003564358, 259225.643199998885393 ], [ 361754.755000002682209, 259230.280299998819828 ], [ 361760.330899998545647, 259238.347500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94450961, "LATITUDE": 18.36238447, "OBJECTID_1": 3785, "PARCEL_NO_": "102801021000", "Tax_Legal_": "ST PETER 5 LITTLE NORTHSIDE QTR", "Name": "GREAUX, IRENE & MARIO KANALENSTEIN", "Address": "PO Box 1793", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55600, "Improved_V": 190600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.36646302599999, "SHAPE_Area": 966.09555091699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357358.915600001811981, 259173.615200001746416 ], [ 357329.820100001990795, 259181.398699998855591 ], [ 357338.403599999845028, 259215.032800000160933 ], [ 357339.976700000464916, 259219.689699999988079 ], [ 357357.758699998259544, 259214.769000001251698 ], [ 357358.915600001811981, 259173.615200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90190113, "LATITUDE": 18.36237863, "OBJECTID_1": 5378, "PARCEL_NO_": "103002034300", "Tax_Legal_": "LOVENLUND D-4-I(AKA 13) No.2GREAT NORTHSIDE QTR.", "Name": "BRIAN C CHEETHAM & ANGELA W K LUI TRUST", "Address": "9154 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022687, "Country": "United States", "Land_Value": 119100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.65062581000001, "SHAPE_Area": 1624.2856739599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361889.407399997115135, 259231.593400001525879 ], [ 361862.129399999976158, 259215.327100001275539 ], [ 361815.309399999678135, 259221.276700001209974 ], [ 361835.982199996709824, 259255.64299999922514 ], [ 361861.886699996888638, 259243.822700001299381 ], [ 361889.407399997115135, 259231.593400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701013500", "MAP": "D9-1859-T81", "PARCEL_NAM": "14-7", "ACRE": null, "LONGITUDE": -64.96299589, "LATITUDE": 18.36236221, "OBJECTID_1": 2813, "PARCEL_NO_": "102701013500", "Tax_Legal_": "DOROTHEA 14-7 LT. NORTHSIDE QTR.", "Name": "WILLIAMS, IVY", "Address": "PO Box 301942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 227200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.62093561500001, "SHAPE_Area": 1412.0386753299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355397.162799999117851, 259156.925999999046326 ], [ 355364.842000000178814, 259164.68299999833107 ], [ 355384.704899996519089, 259199.464899998158216 ], [ 355419.45719999819994, 259190.250100001692772 ], [ 355405.996299996972084, 259161.220100000500679 ], [ 355400.359300002455711, 259160.329599998891354 ], [ 355397.162799999117851, 259156.925999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90052568, "LATITUDE": 18.36233717, "OBJECTID_1": 5369, "PARCEL_NO_": "103002033400", "Tax_Legal_": "LOVENLUND D-4-O /27 GT. NORTHSIDE", "Name": "HORACE & SONIA GRIFFITH LIV TR", "Address": "PO Box 305788", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 119200, "Improved_V": 877400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.01324901699999, "SHAPE_Area": 1388.2981603799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362021.628200002014637, 259234.36430000141263 ], [ 362002.535700000822544, 259203.810600001364946 ], [ 361972.540299996733665, 259222.563499998301268 ], [ 361968.487099997699261, 259225.063499998301268 ], [ 361985.180500000715256, 259253.275600001215935 ], [ 361998.952600002288818, 259245.788899999111891 ], [ 362021.628200002014637, 259234.36430000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702043600", "MAP": "A9-157-T71", "PARCEL_NAM": "14-6", "ACRE": null, "LONGITUDE": -64.95732649, "LATITUDE": 18.36232097, "OBJECTID_1": 3129, "PARCEL_NO_": "102702043600", "Tax_Legal_": "BONNE RESOULTION 14-6 LT NORTHSIDE", "Name": "HART, HERMAN B.", "Address": "PO BOX 302072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42200, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.98672299099999, "SHAPE_Area": 1276.04657114 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356014.747800000011921, 259167.891199998557568 ], [ 355984.217600002884865, 259154.764600001275539 ], [ 355974.421400003135204, 259168.8277000002563 ], [ 355972.798000000417233, 259170.081000000238419 ], [ 355971.14580000191927, 259174.711500000208616 ], [ 355972.688299998641014, 259182.956799998879433 ], [ 355974.266699999570847, 259186.980500001460314 ], [ 355976.665899999439716, 259189.322200000286102 ], [ 355999.116800002753735, 259204.282499998807907 ], [ 356014.747800000011921, 259167.891199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801072000", "MAP": "D9-4342-T88", "PARCEL_NAM": "7-15", "ACRE": ".704", "LONGITUDE": -64.94725881, "LATITUDE": 18.36231585, "OBJECTID_1": 4022, "PARCEL_NO_": "102801072000", "Tax_Legal_": "ST PETER 7-15 LT. NORTHSIDE", "Name": "WILLIAMS, THIERRY & CAROLE", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89200, "Improved_V": 331000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.73067087699999, "SHAPE_Area": 2471.7512828399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357077.163699999451637, 259212.261399999260902 ], [ 357077.697800002992153, 259149.570999998599291 ], [ 357072.86710000038147, 259148.687100000679493 ], [ 357064.778800003230572, 259151.576200000941753 ], [ 357043.668999999761581, 259168.502000000327826 ], [ 357037.189800001680851, 259171.826400000602007 ], [ 357030.723099999129772, 259173.67339999973774 ], [ 357028.777800001204014, 259212.709800001233816 ], [ 357046.518500000238419, 259212.643899999558926 ], [ 357077.163699999451637, 259212.261399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95882926, "LATITUDE": 18.36233773, "OBJECTID_1": 2859, "PARCEL_NO_": "102701022900", "Tax_Legal_": "BONNE RESOLUTION 14-58 LT NORTHSIDE QTR.", "Name": "GREEN, RAYMOND", "Address": "PO BOX 305481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45000, "Improved_V": 186200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.34386767500001, "SHAPE_Area": 1060.98825248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355816.967500001192093, 259193.714600000530481 ], [ 355822.676399998366833, 259186.162000000476837 ], [ 355839.472300000488758, 259202.342599999159575 ], [ 355855.065600000321865, 259170.38399999961257 ], [ 355844.632100000977516, 259164.59910000115633 ], [ 355834.178800001740456, 259161.135999999940395 ], [ 355827.726499997079372, 259161.294300001114607 ], [ 355821.252599999308586, 259163.985500000417233 ], [ 355814.739200003445148, 259171.320500001311302 ], [ 355813.083400003612041, 259176.373199999332428 ], [ 355815.362000003457069, 259192.857099998742342 ], [ 355816.967500001192093, 259193.714600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801071400", "MAP": "D9-8897-T014", "PARCEL_NAM": "7-16", "ACRE": ".558", "LONGITUDE": -64.94684265, "LATITUDE": 18.36221751, "OBJECTID_1": 4016, "PARCEL_NO_": "102801071400", "Tax_Legal_": "ST PETER 7-16 LT. NORTHSIDE", "Name": "CONNOR, JOSETTE R & ROBERT WILSON", "Address": "PO Box 6395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 86900, "Improved_V": 203700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.96158946600002, "SHAPE_Area": 2918.6381815499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357122.227200001478195, 259169.038400001823902 ], [ 357123.964000001549721, 259145.149900000542402 ], [ 357123.329000003635883, 259141.339899998158216 ], [ 357121.635600000619888, 259139.434900000691414 ], [ 357118.248999997973442, 259137.529899999499321 ], [ 357101.103900000452995, 259136.471599999815226 ], [ 357087.345600001513958, 259137.529899999499321 ], [ 357083.666599996387959, 259143.620099999010563 ], [ 357092.241999998688698, 259146.101399999111891 ], [ 357095.442100003361702, 259149.082899998873472 ], [ 357097.029500000178814, 259152.051199998706579 ], [ 357097.765699997544289, 259160.289900001138449 ], [ 357099.374700002372265, 259160.725299999117851 ], [ 357098.519900001585484, 259166.41780000180006 ], [ 357086.435999996960163, 259165.052299998700619 ], [ 357087.290799997746944, 259159.3597999997437 ], [ 357091.322400003671646, 259159.392799999564886 ], [ 357091.362000003457069, 259154.749099999666214 ], [ 357090.568199999630451, 259153.264899998903275 ], [ 357087.361000001430511, 259151.127700001001358 ], [ 357077.697800002992153, 259149.570999998599291 ], [ 357077.163699999451637, 259212.261399999260902 ], [ 357085.228699997067451, 259212.116300001740456 ], [ 357114.229500003159046, 259211.879200000315905 ], [ 357122.227200001478195, 259169.038400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802010200", "MAP": "A9-115-T69", "PARCEL_NAM": "1-4", "ACRE": "4.82", "LONGITUDE": -64.94168121, "LATITUDE": 18.36188758, "OBJECTID_1": 4024, "PARCEL_NO_": "102802010200", "Tax_Legal_": "LERKENLUND 1-4 GREAT NORTHSIDE", "Name": "QUERRARD, WILLIAM & JEANETTE", "Address": "PO Box 11034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 370300, "Improved_V": 151400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 556.47015186900001, "SHAPE_Area": 18281.203684399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357639.833499997854233, 259043.558800000697374 ], [ 357629.241800002753735, 259056.348799999803305 ], [ 357596.714199997484684, 259088.379900000989437 ], [ 357595.096100002527237, 259088.999899998307228 ], [ 357555.300899997353554, 259122.238099999725819 ], [ 357601.426899999380112, 259197.764899998903275 ], [ 357591.5929000005126, 259216.26069999858737 ], [ 357619.839000001549721, 259213.536499999463558 ], [ 357640.808499999344349, 259213.07490000128746 ], [ 357663.376299999654293, 259214.315000001341105 ], [ 357671.448399998247623, 259213.325599998235703 ], [ 357681.145700000226498, 259210.871899999678135 ], [ 357697.33669999986887, 259203.405000001192093 ], [ 357716.806900002062321, 259189.632199998944998 ], [ 357720.851000003516674, 259188.187699999660254 ], [ 357745.189699999988079, 259170.866099998354912 ], [ 357639.833499997854233, 259043.558800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702044000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95778738, "LATITUDE": 18.36232181, "OBJECTID_1": 3133, "PARCEL_NO_": "102702044000", "Tax_Legal_": "BONNE RESOLUTION 14-15 LT.NORTHSIDE", "Name": "RITZA PRINCE HODGE FAMILY TRUST", "Address": "PO Box 9910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.297491083, "SHAPE_Area": 1002.6907588 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355963.962700001895428, 259165.997900001704693 ], [ 355933.376800000667572, 259159.414799999445677 ], [ 355931.731799997389317, 259163.2010000012815 ], [ 355925.164399996399879, 259176.868299998342991 ], [ 355927.513199999928474, 259185.120200000703335 ], [ 355933.830600000917912, 259200.79280000180006 ], [ 355963.034100003540516, 259180.344700001180172 ], [ 355962.294299997389317, 259172.528200000524521 ], [ 355963.962700001895428, 259165.997900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95577565000001, "LATITUDE": 18.36230928, "OBJECTID_1": 2952, "PARCEL_NO_": "102702011200", "Tax_Legal_": "HULL BAY 6I-9 LITTLE NORTHSIDE", "Name": "ESTRILL, PEDRITO D. & EARTHA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 141400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.88801571600001, "SHAPE_Area": 1926.57503152 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356167.241599999368191, 259157.31810000166297 ], [ 356126.166400000452995, 259151.493400000035763 ], [ 356141.094300001859665, 259197.63399999961257 ], [ 356155.604299999773502, 259198.175000000745058 ], [ 356159.625100001692772, 259199.474399998784065 ], [ 356163.631499998271465, 259202.462499998509884 ], [ 356184.604599997401237, 259201.578699998557568 ], [ 356184.667499996721745, 259194.190999999642372 ], [ 356167.241599999368191, 259157.31810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702013100", "MAP": "F9-3432-T76", "PARCEL_NAM": "6F-1", "ACRE": ".50", "LONGITUDE": -64.9542826, "LATITUDE": 18.36230464, "OBJECTID_1": 2971, "PARCEL_NO_": "102702013100", "Tax_Legal_": "HULL BAY 6F-1 LITTLE NORTHSIDE", "Name": "SOPHIA E STARR REVOCABLE TRUST", "Address": "PO Box 306018", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67700, "Improved_V": 40400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.352764971, "SHAPE_Area": 2138.7916631500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356348.463100001215935, 259169.866799999028444 ], [ 356308.389399997889996, 259153.407000001519918 ], [ 356280.002999998629093, 259172.595300000160933 ], [ 356273.211300000548363, 259177.27309999987483 ], [ 356298.932599999010563, 259192.7511 ], [ 356321.127700001001358, 259206.107099998742342 ], [ 356325.756999999284744, 259208.892799999564886 ], [ 356327.872599996626377, 259203.982999999076128 ], [ 356345.900499999523163, 259174.112700000405312 ], [ 356348.463100001215935, 259169.866799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103001039800", "MAP": "A9-709-T007", "PARCEL_NAM": "C-5-A ROW", "ACRE": null, "LONGITUDE": -64.90859829, "LATITUDE": 18.36192697, "OBJECTID_1": 5273, "PARCEL_NO_": "103001039800", "Tax_Legal_": "LOVENLUND REM C-5A GT. NORTHSIDE", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 443.25157849300001, "SHAPE_Area": 1962.2367519500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361189.403399996459484, 259145.8597999997437 ], [ 361186.975400000810623, 259146.895399998873472 ], [ 361169.195200003683567, 259151.605000000447035 ], [ 361152.163699999451637, 259163.075800001621246 ], [ 361135.159199997782707, 259171.380300000309944 ], [ 361123.032200001180172, 259175.080800000578165 ], [ 361112.52139999717474, 259178.37220000103116 ], [ 361097.145700000226498, 259184.790300000458956 ], [ 361095.518700003623962, 259186.465700000524521 ], [ 361086.571900002658367, 259195.469500001519918 ], [ 361072.713500000536442, 259213.087900001555681 ], [ 361060.483999997377396, 259228.819899998605251 ], [ 361054.794900000095367, 259234.050599999725819 ], [ 361062.006700001657009, 259239.386999998241663 ], [ 361071.770599998533726, 259229.1233000010252 ], [ 361085.630699999630451, 259211.293800000101328 ], [ 361097.842299997806549, 259197.672699999064207 ], [ 361102.725100003182888, 259192.435300000011921 ], [ 361115.672899998724461, 259187.05290000140667 ], [ 361138.3108000010252, 259180.061000000685453 ], [ 361154.5, 259172.80519999936223 ], [ 361174.774700000882149, 259159.25 ], [ 361190.935099996626377, 259155.371500000357628 ], [ 361203.067500002682209, 259151.037900000810623 ], [ 361240.220799997448921, 259143.953699998557568 ], [ 361237.877400003373623, 259135.068599998950958 ], [ 361212.838600002229214, 259139.929900001734495 ], [ 361197.493500001728535, 259142.75959999859333 ], [ 361189.403399996459484, 259145.8597999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95658983, "LATITUDE": 18.36225718, "OBJECTID_1": 2949, "PARCEL_NO_": "102702010900", "Tax_Legal_": "6I-7B HULL 4B LITTLE NORTHSIDE QTR", "Name": "MCFARLANE, LEILA G.", "Address": "1902 9th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.28572421600001, "SHAPE_Area": 2101.1244449599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356106.467799998819828, 259192.073300000280142 ], [ 356086.482600003480911, 259171.64469999819994 ], [ 356083.482199996709824, 259145.233500000089407 ], [ 356050.430500000715256, 259144.118599999696016 ], [ 356045.587300002574921, 259144.712200000882149 ], [ 356048.603900000452995, 259169.223799999803305 ], [ 356050.826899997889996, 259192.251200001686811 ], [ 356075.773999996483326, 259198.154899999499321 ], [ 356091.94879999756813, 259192.587699998170137 ], [ 356099.214599996805191, 259191.591699998825788 ], [ 356106.467799998819828, 259192.073300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95619681, "LATITUDE": 18.36224721, "OBJECTID_1": 2950, "PARCEL_NO_": "102702011000", "Tax_Legal_": "HULL BAY 6I-8 LITTLE NORTHSIDE", "Name": "LIMA, MARINO & GENEVIEVE", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.86594570599999, "SHAPE_Area": 1918.32444444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356126.166400000452995, 259151.493400000035763 ], [ 356083.482199996709824, 259145.233500000089407 ], [ 356086.482600003480911, 259171.64469999819994 ], [ 356106.467799998819828, 259192.073300000280142 ], [ 356141.094300001859665, 259197.63399999961257 ], [ 356126.166400000452995, 259151.493400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95833432000001, "LATITUDE": 18.36216934, "OBJECTID_1": 2857, "PARCEL_NO_": "102701022600", "Tax_Legal_": "BONNE RESOLUTION 14-27 LITTLE NORTHSIDE", "Name": "CLENDINEN, CLETIS & DOLORES", "Address": "PO Box 305324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23700, "Improved_V": 221100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.00537644, "SHAPE_Area": 1561.14081257 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355884.461400002241135, 259127.350400000810623 ], [ 355859.964599996805191, 259163.246899999678135 ], [ 355868.785499997437, 259169.0185999982059 ], [ 355876.787500001490116, 259176.261300001293421 ], [ 355892.751900002360344, 259195.390399999916553 ], [ 355899.315600000321865, 259182.145199999213219 ], [ 355901.003799997270107, 259173.293099999427795 ], [ 355901.22860000282526, 259146.90819999948144 ], [ 355903.710400000214577, 259139.540300000458956 ], [ 355895.656300000846386, 259138.4189000017941 ], [ 355891.640900000929832, 259136.486200001090765 ], [ 355886.842600002884865, 259131.802799999713898 ], [ 355884.461400002241135, 259127.350400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033400", "MAP": "D9-9026-T015", "PARCEL_NAM": "26", "ACRE": ".503", "LONGITUDE": -64.96637969, "LATITUDE": 18.36218085, "OBJECTID_1": 470, "PARCEL_NO_": "101103033400", "Tax_Legal_": "NELTJEBERG 26/EASTERN PT LT. NORTHSIDE", "Name": "JACOBS, C., C., C., & C. (TRUSTEE)", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 100600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.54987434399999, "SHAPE_Area": 2196.6936668799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354997.438000001013279, 259147.098799999803305 ], [ 354997.508959964907262, 259147.565702293562936 ], [ 354997.65925703686662, 259148.013411862950306 ], [ 354997.884401345043443, 259148.428554138430627 ], [ 354998.177667082287371, 259148.798727443441749 ], [ 354998.530293428455479, 259149.112873473815853 ], [ 354998.931746265094262, 259149.361607645754702 ], [ 354999.370032864797395, 259149.537499444733839 ], [ 354999.83206015318865, 259149.635294399369741 ], [ 355000.30402584298281, 259149.652071050077211 ], [ 355000.771830753947143, 259149.587328222609358 ], [ 355001.221500001847744, 259149.442999999970198 ], [ 355004.396499998867512, 259152.088899999856949 ], [ 354995.951499998569489, 259161.053899999707937 ], [ 355018.648999996483326, 259183.380800001323223 ], [ 355084.697400003671646, 259141.575800001621246 ], [ 355068.126299999654293, 259132.765599999576807 ], [ 354997.438000001013279, 259147.098799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036800", "MAP": "C9-249-T80", "PARCEL_NAM": "C-3-A-4", "ACRE": null, "LONGITUDE": -64.90381231000001, "LATITUDE": 18.36244089, "OBJECTID_1": 5510, "PARCEL_NO_": "103002036800", "Tax_Legal_": "LOVENLUND C-47-A&C-3-A-4 VILLA#6", "Name": "MARTIN,PHILIP LLOYD and NATALIA GLOBUS", "Address": "7719 Ivymount Ter", "City": "Potomac", "State": "Maryland", "Zip": 208543216, "Country": "United States", "Land_Value": 130200, "Improved_V": 924000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.410465719100003, "SHAPE_Area": 89.0189012134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361665.202200002968311, 259235.668999999761581 ], [ 361631.326300002634525, 259236.658300001174212 ], [ 361632.105599999427795, 259239.8310999982059 ], [ 361665.184199996292591, 259237.779800001531839 ], [ 361665.202200002968311, 259235.668999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90947862, "LATITUDE": 18.3622285, "OBJECTID_1": 5235, "PARCEL_NO_": "103001031600", "Tax_Legal_": "LOVENLUND C-5-A-7 GT. NORTHSIDE", "Name": "WATERS, DARRIN L. & TAMMY JANE", "Address": "6501 Res Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.17826859199999, "SHAPE_Area": 1310.42604192 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361072.713500000536442, 259213.087900001555681 ], [ 361047.170500002801418, 259182.4814000017941 ], [ 361022.783299997448921, 259205.502099998295307 ], [ 361046.771300002932549, 259229.340900000184774 ], [ 361054.794900000095367, 259234.050599999725819 ], [ 361060.483999997377396, 259228.819899998605251 ], [ 361072.713500000536442, 259213.087900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036800", "MAP": "C9-249-T80", "PARCEL_NAM": "C-47-A", "ACRE": null, "LONGITUDE": -64.90386934, "LATITUDE": 18.36228069, "OBJECTID_1": 5510, "PARCEL_NO_": "103002036800", "Tax_Legal_": "LOVENLUND C-47-A&C-3-A-4 VILLA#6", "Name": "MARTIN,PHILIP LLOYD and NATALIA GLOBUS", "Address": "7719 Ivymount Ter", "City": "Potomac", "State": "Maryland", "Zip": 208543216, "Country": "United States", "Land_Value": 130200, "Improved_V": 924000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.727474796, "SHAPE_Area": 1178.6787777899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361660.268700003623962, 259235.813099998980761 ], [ 361654.413400001823902, 259196.573699999600649 ], [ 361628.372500002384186, 259204.75899999961257 ], [ 361620.032499998807907, 259237.199200000613928 ], [ 361631.326300002634525, 259236.658300001174212 ], [ 361660.268700003623962, 259235.813099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701013600", "MAP": "D9-1859-T81", "PARCEL_NAM": "14-8", "ACRE": null, "LONGITUDE": -64.96256662, "LATITUDE": 18.36223846, "OBJECTID_1": 2814, "PARCEL_NO_": "102701013600", "Tax_Legal_": "DOROTHEA 14-8 LT. NORTHSIDE", "Name": "MOOLENAAR, LYNETTE & YVONNE (TRUSTEE)", "Address": "7166 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.220232119, "SHAPE_Area": 1043.88241662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355448.883699998259544, 259143.628199998289347 ], [ 355415.682800002396107, 259160.032800000160933 ], [ 355418.836099997162819, 259168.502399999648333 ], [ 355425.194899998605251, 259179.320199999958277 ], [ 355425.97070000320673, 259182.915100000798702 ], [ 355427.55629999935627, 259186.094500001519918 ], [ 355461.592299997806549, 259166.319200001657009 ], [ 355448.883699998259544, 259143.628199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036700", "MAP": null, "PARCEL_NAM": "C-47-B", "ACRE": null, "LONGITUDE": -64.9036274, "LATITUDE": 18.36223233, "OBJECTID_1": 5509, "PARCEL_NO_": "103002036700", "Tax_Legal_": "MAHOGANY C-47-B VILLA#5", "Name": "NXP CORP", "Address": "354 Indusco Ct", "City": "Troy", "State": "Michigan", "Zip": 48083, "Country": "United States", "Land_Value": 87300, "Improved_V": 476500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.594387678, "SHAPE_Area": 801.68381573099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361678.169699996709824, 259227.964699998497963 ], [ 361674.438400000333786, 259192.681499999016523 ], [ 361663.132100000977516, 259194.69990000128746 ], [ 361655.862700000405312, 259196.118099998682737 ], [ 361654.413400001823902, 259196.573699999600649 ], [ 361660.268700003623962, 259235.813099998980761 ], [ 361665.202200002968311, 259235.668999999761581 ], [ 361670.041799999773502, 259235.497600000351667 ], [ 361678.108599998056889, 259235.141399998217821 ], [ 361678.169699996709824, 259227.964699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036600", "MAP": "C9-249-T80", "PARCEL_NAM": "C-47-C", "ACRE": null, "LONGITUDE": -64.90345963, "LATITUDE": 18.36222374, "OBJECTID_1": 5508, "PARCEL_NO_": "103002036600", "Tax_Legal_": "PATIO VILLA#4 MAHOGANY GT. NORTHSIDE", "Name": "WEISS, ANNIE M.", "Address": "PO Box 10489", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92200, "Improved_V": 579300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.923733403, "SHAPE_Area": 694.70214184099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361695.85639999806881, 259234.231199998408556 ], [ 361689.769199997186661, 259191.540500000119209 ], [ 361674.438400000333786, 259192.681499999016523 ], [ 361678.169699996709824, 259227.964699998497963 ], [ 361678.108599998056889, 259235.141399998217821 ], [ 361695.85639999806881, 259234.231199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036500", "MAP": null, "PARCEL_NAM": "D-47-D", "ACRE": null, "LONGITUDE": -64.90330016, "LATITUDE": 18.3622261, "OBJECTID_1": 5507, "PARCEL_NO_": "103002036500", "Tax_Legal_": "C-47-D & D-20-B ESTATE LOVENLUND \"a/k/a\" PATIO VILLA#3 MAHOGANY GT. NORTHSIDE", "Name": "CLAYTON, ALEXANDER AND ELENA LEONIDOVNA CLAYTON", "Address": "1111 Rusk St", "City": "Houston", "State": "Texas", "Zip": 77002, "Country": "United States", "Land_Value": 101900, "Improved_V": 413300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.48512639800001, "SHAPE_Area": 720.912174983 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361706.601000003516674, 259203.499499998986721 ], [ 361702.675599999725819, 259191.012800000607967 ], [ 361689.769199997186661, 259191.540500000119209 ], [ 361695.85639999806881, 259234.231199998408556 ], [ 361716.831299997866154, 259233.136300001293421 ], [ 361706.601000003516674, 259203.499499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019500", "MAP": "D9-2827-T84", "PARCEL_NAM": "6BB", "ACRE": null, "LONGITUDE": -64.946341, "LATITUDE": 18.36213207, "OBJECTID_1": 3772, "PARCEL_NO_": "102801019500", "Tax_Legal_": "6B REM. ST PETER NO. 2 LITTLE NORTHSIDE QTR", "Name": "BERRY, DANIEL G.", "Address": "8291 Nw 68 Ter", "City": "TAMARAC", "State": "Florida", "Zip": 33321, "Country": "United States", "Land_Value": 91500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.16248534499999, "SHAPE_Area": 2630.1232610699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357150.377400003373623, 259137.078000001609325 ], [ 357131.054499998688698, 259133.742400001734495 ], [ 357130.222999997437, 259169.922200001776218 ], [ 357129.688199996948242, 259193.196800000965595 ], [ 357149.888300001621246, 259194.491500001400709 ], [ 357154.722599998116493, 259194.953200001269579 ], [ 357175.670500002801418, 259197.024500001221895 ], [ 357176.944399997591972, 259142.150600001215935 ], [ 357155.208099998533726, 259137.961899999529123 ], [ 357150.377400003373623, 259137.078000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012200", "MAP": "G3-2031-T92", "PARCEL_NAM": "6D REM", "ACRE": null, "LONGITUDE": -64.94566889, "LATITUDE": 18.36212889, "OBJECTID_1": 3704, "PARCEL_NO_": "102801012200", "Tax_Legal_": "ST.PETER ESTATE 6D No.2 LITTLE NORTHSIDE QTR", "Name": "MITCHELL, PHAEDRA", "Address": "PO Box 1627", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 81200, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.883579564, "SHAPE_Area": 2198.2806264800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357203.997000001370907, 259192.463899999856949 ], [ 357243.40259999781847, 259197.367800001055002 ], [ 357242.869599997997284, 259165.277199998497963 ], [ 357242.934299997985363, 259157.678399998694658 ], [ 357243.101499997079372, 259138.048000000417233 ], [ 357205.206699997186661, 259137.526799999177456 ], [ 357203.997000001370907, 259192.463899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90867244, "LATITUDE": 18.36212595, "OBJECTID_1": 5243, "PARCEL_NO_": "103001032500", "Tax_Legal_": "LOVENLUND C-51 //128 GT. NORTHSIDE QTR.", "Name": "MILES SAMUEL LLC", "Address": "PO Box 1623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.46075795799999, "SHAPE_Area": 1882.32303219 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361166.447200000286102, 259190.212600000202656 ], [ 361154.5, 259172.80519999936223 ], [ 361138.3108000010252, 259180.061000000685453 ], [ 361115.672899998724461, 259187.05290000140667 ], [ 361102.725100003182888, 259192.435300000011921 ], [ 361097.842299997806549, 259197.672699999064207 ], [ 361132.258400000631809, 259227.929699998348951 ], [ 361166.447200000286102, 259190.212600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002033300", "MAP": "D9-1497-T79", "PARCEL_NAM": null, "ACRE": ".37", "LONGITUDE": -64.90022572, "LATITUDE": 18.36217104, "OBJECTID_1": 5368, "PARCEL_NO_": "103002033300", "Tax_Legal_": "LOVENLUND D-4-P 28 GT. NORTHSIDE", "Name": "STRAUB, PAULETTE and ERIKA A", "Address": "30 LAWRENCE ROAD", "City": "Boxford", "State": "Massachusetts", "Zip": 19212217, "Country": "United States", "Land_Value": 179500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.92739197500001, "SHAPE_Area": 1238.25940825 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362050.752599999308586, 259223.203699998557568 ], [ 362031.719400003552437, 259185.684300001710653 ], [ 362002.535700000822544, 259203.810600001364946 ], [ 362021.628200002014637, 259234.36430000141263 ], [ 362035.396700002253056, 259227.299899999052286 ], [ 362044.294900000095367, 259223.995200000703335 ], [ 362050.752599999308586, 259223.203699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036400", "MAP": "C9-249-T80", "PARCEL_NAM": "D-20-C", "ACRE": null, "LONGITUDE": -64.90311857, "LATITUDE": 18.36219775, "OBJECTID_1": 5506, "PARCEL_NO_": "103002036400", "Tax_Legal_": "PATIO VILLA#2 MAHOGANY GT. NORTHSIDE", "Name": "HOLODENSCHI, DELLIA", "Address": "6200 Magens Bay Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82500, "Improved_V": 487900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.41792657800001, "SHAPE_Area": 508.55567351799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361704.91160000115633, 259198.125700000673532 ], [ 361708.568899996578693, 259197.388199999928474 ], [ 361709.75959999859333, 259202.018399998545647 ], [ 361711.479400001466274, 259201.886100001633167 ], [ 361719.297399997711182, 259231.172499999403954 ], [ 361733.906599998474121, 259219.538800001144409 ], [ 361734.705099999904633, 259217.450599998235703 ], [ 361737.138400003314018, 259215.781700000166893 ], [ 361737.808499999344349, 259214.6064000017941 ], [ 361708.178599998354912, 259191.31700000166893 ], [ 361702.675599999725819, 259191.012800000607967 ], [ 361704.91160000115633, 259198.125700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801024200", "MAP": "D9-1982-T82", "PARCEL_NAM": "5E", "ACRE": ".50", "LONGITUDE": -64.94473287, "LATITUDE": 18.36212471, "OBJECTID_1": 3815, "PARCEL_NO_": "102801024200", "Tax_Legal_": "ST PETER 5E LT. NORTHSIDE", "Name": "CERGE, JOELLE", "Address": "BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.21631457000001, "SHAPE_Area": 2431.9191878500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357306.656400002539158, 259155.455699998885393 ], [ 357291.293300002813339, 259160.396200001239777 ], [ 357288.859999999403954, 259162.065000001341105 ], [ 357284.731299996376038, 259173.430300001055002 ], [ 357285.363200001418591, 259193.911499999463558 ], [ 357329.820100001990795, 259181.398699998855591 ], [ 357358.915600001811981, 259173.615200001746416 ], [ 357359.214100003242493, 259138.576200000941753 ], [ 357306.656400002539158, 259155.455699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91941242, "LATITUDE": 18.36097347, "OBJECTID_1": 4706, "PARCEL_NO_": "102902020300", "Tax_Legal_": "ESTATE HEERLEINS KOB REMAINDER No.11 GREAT NORTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY INC.", "Address": "3052 Estate Little Princess", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 1080500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 902.36995118499999, "SHAPE_Area": 44762.565565600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360042.809000000357628, 259138.586399998515844 ], [ 360063.895400002598763, 259124.404599998146296 ], [ 360115.751199997961521, 259095.27589999884367 ], [ 360166.07880000025034, 259056.213300000876188 ], [ 360051.765100002288818, 258939.176300000399351 ], [ 359939.29389999806881, 258984.485199999064207 ], [ 359892.362400002777576, 259003.521699998527765 ], [ 359853.526299998164177, 259018.824799999594688 ], [ 359892.663900002837181, 259146.219399999827147 ], [ 359933.679200001060963, 259130.807199999690056 ], [ 359960.722300000488758, 259214.119300000369549 ], [ 359979.398800000548363, 259198.862300001084805 ], [ 359985.903200000524521, 259192.582800000905991 ], [ 359987.521300002932549, 259191.962699998170137 ], [ 360023.319099999964237, 259154.681099999696016 ], [ 360042.809000000357628, 259138.586399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033300", "MAP": "D9-5297-T92", "PARCEL_NAM": "25 REM", "ACRE": ".53", "LONGITUDE": -64.96750978, "LATITUDE": 18.3621334, "OBJECTID_1": 469, "PARCEL_NO_": "101103033300", "Tax_Legal_": "NELTJEBERG REM. 25 LT. NORTHSIDE", "Name": "HYNDMAN, RAYMOND L. & ANGELA B. (TRUSTEES)", "Address": "355 Falcon Ridge Dr", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 57700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.139173981, "SHAPE_Area": 2279.92408243 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354958.48030000180006, 259159.035100001841784 ], [ 354912.829700000584126, 259122.353399999439716 ], [ 354882.922499999403954, 259130.763399999588728 ], [ 354878.748800002038479, 259147.405600000172853 ], [ 354880.347099997103214, 259149.107500001788139 ], [ 354883.561499997973442, 259150.400299999862909 ], [ 354886.786799997091293, 259150.426699999719858 ], [ 354889.214699998497963, 259149.391100000590086 ], [ 354894.011200003325939, 259154.285599999129772 ], [ 354892.382399998605251, 259156.172100000083447 ], [ 354892.358999997377396, 259158.91609999909997 ], [ 354897.166400000452995, 259162.543999999761581 ], [ 354907.608900003135204, 259167.273499999195337 ], [ 354916.462099999189377, 259169.245799999684095 ], [ 354950.339800000190735, 259168.045499999076128 ], [ 354958.48030000180006, 259159.035100001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90267791, "LATITUDE": 18.36211984, "OBJECTID_1": 5383, "PARCEL_NO_": "103002034800", "Tax_Legal_": "LOVENLUND D-4-J (aka lot 11) GT. NORTHSIDE", "Name": "KOMIVES, KURT PETER & JAN COURBIS (TRUSTEES)", "Address": "6679 Estate Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.41115422199999, "SHAPE_Area": 1445.4006308800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361787.104599997401237, 259219.146000001579523 ], [ 361784.204800002276897, 259180.914299998432398 ], [ 361755.985699996352196, 259180.472300000488758 ], [ 361751.768899999558926, 259202.180399999022484 ], [ 361745.997000001370907, 259217.120799999684095 ], [ 361743.55290000140667, 259220.056099999696016 ], [ 361743.522399999201298, 259223.644400000572205 ], [ 361745.930500000715256, 259224.930700000375509 ], [ 361787.104599997401237, 259219.146000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802016500", "MAP": "A9-774-T012", "PARCEL_NAM": "3-N", "ACRE": ".50", "LONGITUDE": -64.93597181, "LATITUDE": 18.36203077, "OBJECTID_1": 4083, "PARCEL_NO_": "102802016500", "Tax_Legal_": "3N LERKENLUND NO 9 GREAT NORTHSIDE QUARTER", "Name": "ZAZULAK, O. GREGORY & JANET L.", "Address": "392 Fisher Road Cir", "City": "Pittsford", "State": "New York", "Zip": 14534, "Country": "United States", "Land_Value": 123900, "Improved_V": 111300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.18147120200001, "SHAPE_Area": 1744.48908426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358207.533900000154972, 259151.530999999493361 ], [ 358220.892399996519089, 259177.292700000107288 ], [ 358236.226800002157688, 259175.729400001466274 ], [ 358253.161100000143051, 259175.656899999827147 ], [ 358291.032600000500679, 259178.922200001776218 ], [ 358275.143700003623962, 259150.927799999713898 ], [ 358230.789399996399879, 259151.409099999815226 ], [ 358207.533900000154972, 259151.530999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011700", "MAP": "D9-7323-T003", "PARCEL_NAM": "8BA", "ACRE": null, "LONGITUDE": -64.94895289, "LATITUDE": 18.361946, "OBJECTID_1": 3699, "PARCEL_NO_": "102801011700", "Tax_Legal_": "ST PETER 8BA REMAINDER No.2 LITTLE NORTHSIDE QTR.", "Name": "STEWART, TARA H.", "Address": "420 E 61st St", "City": "New York", "State": "New York", "Zip": 10065, "Country": "United States", "Land_Value": 147400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.19478432300002, "SHAPE_Area": 4234.1665389899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356876.551299996674061, 259097.262200001627207 ], [ 356845.151799999177456, 259091.516800001263618 ], [ 356858.067900002002716, 259184.503699999302626 ], [ 356913.743000000715256, 259180.31529999896884 ], [ 356913.20830000191927, 259148.4358000010252 ], [ 356905.200900003314018, 259141.826400000602007 ], [ 356898.019599996507168, 259132.901700001209974 ], [ 356894.841099999845028, 259127.387200001627207 ], [ 356890.843699999153614, 259123.343699999153614 ], [ 356882.094700001180172, 259109.128800000995398 ], [ 356876.551299996674061, 259097.262200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701023200", "MAP": "A9-157-T71", "PARCEL_NAM": "14-59", "ACRE": "0.25", "LONGITUDE": -64.95920009, "LATITUDE": 18.36214097, "OBJECTID_1": 2862, "PARCEL_NO_": "102701023200", "Tax_Legal_": "BONNE RESOLUTION 14-35 & 14-59 LT. NORTHSIDE", "Name": "DORSEY, ROMETA", "Address": "PO BOX 306583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59300, "Improved_V": 42500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.42855644100001, "SHAPE_Area": 1212.4704474099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355828.611900001764297, 259152.013399999588728 ], [ 355777.950900003314018, 259135.555700000375509 ], [ 355776.190800003707409, 259152.850900001823902 ], [ 355772.015399999916553, 259169.704199999570847 ], [ 355804.219300001859665, 259175.667300000786781 ], [ 355805.065200001001358, 259171.030200000852346 ], [ 355807.532700002193451, 259165.350900001823902 ], [ 355813.234399996697903, 259158.642599999904633 ], [ 355820.530799999833107, 259154.058200001716614 ], [ 355828.611900001764297, 259152.013399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702044400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95693532, "LATITUDE": 18.36208558, "OBJECTID_1": 3136, "PARCEL_NO_": "102702044400", "Tax_Legal_": "BONNE RESOLUTION 14-10 LT. NORTHSIDE", "Name": "HART, HERMAN B.", "Address": "PO BOX 302072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.58970948000001, "SHAPE_Area": 1155.7940362100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356032.047200001776218, 259124.969700001180172 ], [ 356014.747800000011921, 259167.891199998557568 ], [ 356017.096600003540516, 259176.143100000917912 ], [ 356048.603900000452995, 259169.223799999803305 ], [ 356045.587300002574921, 259144.712200000882149 ], [ 356042.579599998891354, 259119.145300000905991 ], [ 356032.047200001776218, 259124.969700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89996196, "LATITUDE": 18.36203198, "OBJECTID_1": 5367, "PARCEL_NO_": "103002033200", "Tax_Legal_": "LOVENLUND D-4-Q 29 GT. NORTHSIDE", "Name": "TARAPANI, ABE L.& WENDY S.", "Address": "5187 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.21363736199999, "SHAPE_Area": 1405.9970187700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362070.937399998307228, 259220.202500000596046 ], [ 362065.767899997532368, 259164.431499999016523 ], [ 362031.719400003552437, 259185.684300001710653 ], [ 362050.752599999308586, 259223.203699998557568 ], [ 362052.366999998688698, 259223.005800001323223 ], [ 362053.963500000536442, 259224.918699998408556 ], [ 362066.113899998366833, 259218.474199999123812 ], [ 362070.937399998307228, 259220.202500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801021900", "MAP": null, "PARCEL_NAM": "5C-1", "ACRE": null, "LONGITUDE": -64.94334188000001, "LATITUDE": 18.36159242, "OBJECTID_1": 3792, "PARCEL_NO_": "102801021900", "Tax_Legal_": "LERKENLUND 5C 9 GREAT NORTHSIDE", "Name": "QUERRARD JR, LAWRENCE", "Address": "7433 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 285900, "Improved_V": 189500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.09329061599999, "SHAPE_Area": 2532.94756211 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357502.427100002765656, 259105.718600001186132 ], [ 357491.268799997866154, 259066.196400001645088 ], [ 357436.8125, 259116.624299999326468 ], [ 357450.180799998342991, 259150.232400000095367 ], [ 357502.427100002765656, 259105.718600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90231374, "LATITUDE": 18.36207668, "OBJECTID_1": 5382, "PARCEL_NO_": "103002034700", "Tax_Legal_": "LOVENLUND D-4-K 12 GT. NORTHSIDE", "Name": "ONG FAMILY TRUST", "Address": "5801 S 1220 E", "City": "Salt Lake City", "State": "Utah", "Zip": 84121, "Country": "United States", "Land_Value": 127600, "Improved_V": 172400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.449497724, "SHAPE_Area": 1605.82523853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361784.3091000020504, 259168.671700000762939 ], [ 361784.204800002276897, 259180.914299998432398 ], [ 361787.104599997401237, 259219.146000001579523 ], [ 361828.2787000015378, 259213.361299999058247 ], [ 361831.514700002968311, 259212.121199999004602 ], [ 361833.976800002157688, 259207.075100000947714 ], [ 361846.084100000560284, 259205.69649999961257 ], [ 361784.3091000020504, 259168.671700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90926371, "LATITUDE": 18.36201273, "OBJECTID_1": 5238, "PARCEL_NO_": "103001031900", "Tax_Legal_": "C-5-A-4&C-2-N(134)LOVENLUND GREAT NORTHSIDE QTR.", "Name": "LEE, ANGELICA V", "Address": "PO BOX 308215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 116400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.271751438, "SHAPE_Area": 1289.3195298200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361095.518700003623962, 259186.465700000524521 ], [ 361072.367600001394749, 259159.045200001448393 ], [ 361047.170500002801418, 259182.4814000017941 ], [ 361072.713500000536442, 259213.087900001555681 ], [ 361086.571900002658367, 259195.469500001519918 ], [ 361095.518700003623962, 259186.465700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701013900", "MAP": "D9-1859-T81", "PARCEL_NAM": "14-9", "ACRE": null, "LONGITUDE": -64.96317849, "LATITUDE": 18.36202396, "OBJECTID_1": 2816, "PARCEL_NO_": "102701013900", "Tax_Legal_": "14-9 ESTATE DOROTHEA No.7 LITTLE NORTHSIDE QTR.", "Name": "HODGE, IRAD", "Address": "PO Box 8527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57500, "Improved_V": 230100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.24184198, "SHAPE_Area": 1749.22322379 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355401.304099999368191, 259144.083099998533726 ], [ 355386.210699997842312, 259117.361800000071526 ], [ 355342.597900003194809, 259125.448600001633167 ], [ 355364.842000000178814, 259164.68299999833107 ], [ 355397.162799999117851, 259156.925999999046326 ], [ 355395.613099999725819, 259149.524999998509884 ], [ 355397.25450000166893, 259146.160900000482798 ], [ 355401.304099999368191, 259144.083099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701044300", "MAP": "G9-2537-T76", "PARCEL_NAM": "14-11", "ACRE": null, "LONGITUDE": -64.95715662000001, "LATITUDE": 18.36205688, "OBJECTID_1": 2940, "PARCEL_NO_": "102701044300", "Tax_Legal_": "BONNE RESOLUTION 14-11 No.5 LITTLE NORTHSIDE QTR", "Name": "JONES, DERRICK D. & LEONTYNE", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.823606697, "SHAPE_Area": 811.54857317200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356032.047200001776218, 259124.969700001180172 ], [ 356000.44820000231266, 259142.653999999165535 ], [ 355993.932899996638298, 259150.200100000947714 ], [ 355989.906800001859665, 259149.533900000154972 ], [ 355986.66889999806881, 259150.984999999403954 ], [ 355984.217600002884865, 259154.764600001275539 ], [ 356014.747800000011921, 259167.891199998557568 ], [ 356032.047200001776218, 259124.969700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602024500", "MAP": "D9-5297-T92", "PARCEL_NAM": "25-1", "ACRE": ".50", "LONGITUDE": -64.96718544, "LATITUDE": 18.36193512, "OBJECTID_1": 2443, "PARCEL_NO_": "102602024500", "Tax_Legal_": "NELTJEBERG EATATE 25-1 LITTLE NORTHSIDE QTR.", "Name": "AUBAIN, SUZETTE", "Address": "PO Box 308124", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55400, "Improved_V": 283600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.72569648499999, "SHAPE_Area": 1960.6194461699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354979.078599996864796, 259107.485700000077486 ], [ 354950.085600003600121, 259103.237700000405312 ], [ 354937.119800001382828, 259110.730900000780821 ], [ 354912.829700000584126, 259122.353399999439716 ], [ 354958.48030000180006, 259159.035100001841784 ], [ 354965.020700000226498, 259148.533900000154972 ], [ 354966.654899999499321, 259146.014199998229742 ], [ 354970.790700003504753, 259133.80460000038147 ], [ 354975.793999999761581, 259114.424899999052286 ], [ 354979.078599996864796, 259107.485700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026300", "MAP": "D9-2055-T82", "PARCEL_NAM": "3I-2", "ACRE": ".50", "LONGITUDE": -64.9357598, "LATITUDE": 18.36181211, "OBJECTID_1": 4145, "PARCEL_NO_": "102802026300", "Tax_Legal_": "3i-2 & 1/8 INTEREST IN 3i-9 & 3i-10 ROW LERKENLUND NO. 9 NORTHSIDE QTR", "Name": "ZAZULAK, O. GREGORY & JANET L.", "Address": "392 Fisher Road Cir", "City": "Pittsford", "State": "New York", "Zip": 14534, "Country": "United States", "Land_Value": 161700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.826164433, "SHAPE_Area": 2222.7346960199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358298.774099998176098, 259129.822299998253584 ], [ 358294.278800003230572, 259128.841499999165535 ], [ 358289.357500001788139, 259126.301500000059605 ], [ 358283.325000002980232, 259122.491500001400709 ], [ 358273.799999997019768, 259116.935199998319149 ], [ 358269.354999996721745, 259112.649000000208616 ], [ 358263.798699997365475, 259107.886500000953674 ], [ 358261.841600000858307, 259106.278799999505281 ], [ 358230.789399996399879, 259151.409099999815226 ], [ 358275.143700003623962, 259150.927799999713898 ], [ 358291.032600000500679, 259178.922200001776218 ], [ 358296.312600001692772, 259180.440400000661612 ], [ 358298.774099998176098, 259129.822299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702044200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95764592, "LATITUDE": 18.36203462, "OBJECTID_1": 3135, "PARCEL_NO_": "102702044200", "Tax_Legal_": "BONNE RESOLUTION 14-14 LITTLE NORTHSIDE", "Name": "WALWYN, V. & D", "Address": "PO Box 303810", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42200, "Improved_V": 192200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.73325620599999, "SHAPE_Area": 1258.2586212799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355979.545199997723103, 259135.305799998342991 ], [ 355952.240199998021126, 259122.205600000917912 ], [ 355951.417700000107288, 259124.098700001835823 ], [ 355933.376800000667572, 259159.414799999445677 ], [ 355963.962700001895428, 259165.997900001704693 ], [ 355966.395999997854233, 259164.329100001603365 ], [ 355981.902999997138977, 259142.502300001680851 ], [ 355981.136200003325939, 259137.85190000012517 ], [ 355979.545199997723103, 259135.305799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701013800", "MAP": "D9-1859-T81", "PARCEL_NAM": "14-10", "ACRE": null, "LONGITUDE": -64.96275125, "LATITUDE": 18.36194713, "OBJECTID_1": 2815, "PARCEL_NO_": "102701013800", "Tax_Legal_": "DOROTHEA 14-10 LT. NORTHSIDE QTR", "Name": "AUBAIN, RAYMOND & MARIE", "Address": "PO Box 304865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 114300, "Improved_V": 130200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.24545066300001, "SHAPE_Area": 1759.8592197400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355429.825300000607967, 259109.063900001347065 ], [ 355386.210699997842312, 259117.361800000071526 ], [ 355401.304099999368191, 259144.083099998533726 ], [ 355404.543700002133846, 259142.420899998396635 ], [ 355409.374399997293949, 259143.304800000041723 ], [ 355413.377199999988079, 259146.71510000154376 ], [ 355414.169100001454353, 259148.410300001502037 ], [ 355414.098999999463558, 259156.642400000244379 ], [ 355415.682800002396107, 259160.032800000160933 ], [ 355448.883699998259544, 259143.628199998289347 ], [ 355429.825300000607967, 259109.063900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001039500", "MAP": "D9-1498-T79", "PARCEL_NAM": "C-2-K", "ACRE": ".06", "LONGITUDE": -64.90959915000001, "LATITUDE": 18.3620269, "OBJECTID_1": 5270, "PARCEL_NO_": "103001039500", "Tax_Legal_": "LOVENLUND C-2-K GT. NORTHSIDE", "Name": "MAHOGANY RUN DEV. CORP.", "Address": "BOX 5080", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.411389656500006, "SHAPE_Area": 230.63040827699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361022.783299997448921, 259205.502099998295307 ], [ 361047.170500002801418, 259182.4814000017941 ], [ 361038.391000002622604, 259171.854899998754263 ], [ 361022.783299997448921, 259205.502099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95860153, "LATITUDE": 18.36198189, "OBJECTID_1": 2858, "PARCEL_NO_": "102701022700", "Tax_Legal_": "BONNE RESOLUTION 14-28,14-29 LT. NORTHSIDE", "Name": "SUTTON, CLAYTON & LORNA", "Address": "PO Box 689196", "City": "DES MOINES", "State": "Iowa", "Zip": 58368, "Country": "United States", "Land_Value": 46600, "Improved_V": 202800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.81629604899999, "SHAPE_Area": 1172.3033325700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355859.964599996805191, 259163.246899999678135 ], [ 355884.461400002241135, 259127.350400000810623 ], [ 355840.157399997115135, 259121.921500001102686 ], [ 355837.645000003278255, 259132.87779999896884 ], [ 355839.943400003015995, 259147.039900001138449 ], [ 355845.526500001549721, 259154.262800000607967 ], [ 355859.964599996805191, 259163.246899999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702044100", "MAP": "A9-157-T71", "PARCEL_NAM": "14-19", "ACRE": null, "LONGITUDE": -64.95792839000001, "LATITUDE": 18.3619854, "OBJECTID_1": 3134, "PARCEL_NO_": "102702044100", "Tax_Legal_": "BONNE RESOLUTION 14-19 LT. NORTHSIDE", "Name": "FRETT, MILTON L & GAIL", "Address": "PO Box 305816", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30800, "Improved_V": 244200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.45390515400001, "SHAPE_Area": 1233.2373600799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355951.417700000107288, 259124.098700001835823 ], [ 355929.729999996721745, 259114.210900001227856 ], [ 355917.487899996340275, 259131.420400001108646 ], [ 355911.743000000715256, 259143.194600000977516 ], [ 355910.078199997544289, 259149.302700001746416 ], [ 355909.963100001215935, 259162.811700001358986 ], [ 355931.731799997389317, 259163.2010000012815 ], [ 355933.376800000667572, 259159.414799999445677 ], [ 355951.417700000107288, 259124.098700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801071100", "MAP": "D9-8897-T014", "PARCEL_NAM": "7-13", "ACRE": ".501", "LONGITUDE": -64.94671543, "LATITUDE": 18.3619306, "OBJECTID_1": 4013, "PARCEL_NO_": "102801071100", "Tax_Legal_": "ST PETER 7-13 LT. NORTHSIDE", "Name": "LUCKY 713 LLC", "Address": "PO Box 303208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88000, "Improved_V": 178500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 321.73841098000003, "SHAPE_Area": 2035.7924342199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357130.222999997437, 259169.922200001776218 ], [ 357131.534100003540516, 259112.872600000351667 ], [ 357094.2179000005126, 259103.476700000464916 ], [ 357098.954999998211861, 259115.33669999986887 ], [ 357092.483000002801418, 259117.816899999976158 ], [ 357091.700000002980232, 259115.066199999302626 ], [ 357083.604500003159046, 259118.799699999392033 ], [ 357075.527000002563, 259120.4222999997437 ], [ 357087.345600001513958, 259137.529899999499321 ], [ 357101.103900000452995, 259136.471599999815226 ], [ 357118.248999997973442, 259137.529899999499321 ], [ 357121.635600000619888, 259139.434900000691414 ], [ 357123.329000003635883, 259141.339899998158216 ], [ 357123.964000001549721, 259145.149900000542402 ], [ 357122.227200001478195, 259169.038400001823902 ], [ 357114.229500003159046, 259211.879200000315905 ], [ 357129.261699996888638, 259211.756299998611212 ], [ 357130.222999997437, 259169.922200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801071900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94735027, "LATITUDE": 18.36189179, "OBJECTID_1": 4021, "PARCEL_NO_": "102801071900", "Tax_Legal_": "ST PETER 7-12 LT. NORTHSIDE", "Name": "WILLIAMS, MICHAEL & CONSTANCE", "Address": "PO Box 303208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99700, "Improved_V": 449900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.29109626799999, "SHAPE_Area": 2154.2778098799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357068.077799998223782, 259142.948300000280142 ], [ 357080.980599999427795, 259142.8429000005126 ], [ 357083.666599996387959, 259143.620099999010563 ], [ 357087.345600001513958, 259137.529899999499321 ], [ 357075.527000002563, 259120.4222999997437 ], [ 357068.273800000548363, 259119.940699998289347 ], [ 357060.2179000005126, 259119.0304000005126 ], [ 357048.934900000691414, 259118.304800000041723 ], [ 357032.779899999499321, 259121.55009999871254 ], [ 357019.06360000371933, 259122.493299998342991 ], [ 357021.090499997138977, 259168.528299998492002 ], [ 357029.160800002515316, 259167.75 ], [ 357038.874300003051758, 259163.396499998867512 ], [ 357042.112199999392033, 259161.945300001651049 ], [ 357059.17059999704361, 259147.308400001376867 ], [ 357068.077799998223782, 259142.948300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012000", "MAP": null, "PARCEL_NAM": "4D", "ACRE": null, "LONGITUDE": -64.95605003, "LATITUDE": 18.36129736, "OBJECTID_1": 2960, "PARCEL_NO_": "102702012000", "Tax_Legal_": "HULL BAY 4D LITTLE NORTHSIDE", "Name": "DAVID, JOHNANNES", "Address": "44 Wayne St", "City": "Piscataway", "State": "New Jersey", "Zip": 8854, "Country": "United States", "Land_Value": 252200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 642.28302705700003, "SHAPE_Area": 24840.1621624 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356197.962999999523163, 259124.621599998325109 ], [ 356191.066200003027916, 259124.64130000025034 ], [ 356204.561200000345707, 258975.834699999541044 ], [ 356074.454800002276897, 258974.384899999946356 ], [ 356071.868699997663498, 258993.995400000363588 ], [ 356065.110699996352196, 259030.037099998444319 ], [ 356064.257600001990795, 259035.5185999982059 ], [ 356048.635600000619888, 259070.854400001466274 ], [ 356049.298000000417233, 259087.747299998998642 ], [ 356042.579599998891354, 259119.145300000905991 ], [ 356045.587300002574921, 259144.712200000882149 ], [ 356050.430500000715256, 259144.118599999696016 ], [ 356083.482199996709824, 259145.233500000089407 ], [ 356126.166400000452995, 259151.493400000035763 ], [ 356167.241599999368191, 259157.31810000166297 ], [ 356186.391800001263618, 259160.389800000935793 ], [ 356191.136699996888638, 259154.784200001507998 ], [ 356192.406700000166893, 259151.926699999719858 ], [ 356193.994300000369549, 259147.799199998378754 ], [ 356194.470499999821186, 259145.735399998724461 ], [ 356196.05799999833107, 259140.6554000005126 ], [ 356196.375500001013279, 259136.369100000709295 ], [ 356197.486800000071526, 259129.542899999767542 ], [ 356197.962999999523163, 259124.621599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020200", "MAP": "D9-7391-T004", "PARCEL_NAM": "4B-1", "ACRE": "3.024", "LONGITUDE": -64.935901, "LATITUDE": 18.35887842, "OBJECTID_1": 4087, "PARCEL_NO_": "102802020200", "Tax_Legal_": "4B REM, 4B-A,4B-B,4B-1&4B-2 LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BIMA CORPORATION", "Address": "18285 Blue Ridge Tpke", "City": "Gordonsville", "State": "Virginia", "Zip": 22942, "Country": "United States", "Land_Value": 487700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 675.35000378500001, "SHAPE_Area": 12950.4394159 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358269.840599998831749, 258800.249499998986721 ], [ 358309.083400003612041, 258799.746500000357628 ], [ 358323.166199997067451, 258834.743599999696016 ], [ 358338.604000002145767, 258855.94539999961853 ], [ 358347.55969999730587, 258868.244899999350309 ], [ 358349.357741688203532, 258861.744787909876322 ], [ 358350.830300003290176, 258855.16330000013113 ], [ 358355.933326568978373, 258835.748619292746298 ], [ 358360.56700000166893, 258816.216600000858307 ], [ 358362.441460712114349, 258812.320812040561577 ], [ 358364.538900002837181, 258808.540399998426437 ], [ 358361.196900002658367, 258799.105799999088049 ], [ 358343.873400002717972, 258750.201400000602007 ], [ 358147.417999997735023, 258809.810699999332428 ], [ 358176.54280000180006, 258854.126499999314547 ], [ 358201.618600003421307, 258892.281399998813868 ], [ 358207.125699996948242, 258900.660900000482798 ], [ 358228.082099996507168, 258871.869100000709295 ], [ 358253.913500003516674, 258821.817499998956919 ], [ 358269.840599998831749, 258800.249499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95911216, "LATITUDE": 18.36189844, "OBJECTID_1": 2863, "PARCEL_NO_": "102701023300", "Tax_Legal_": "BONNE RESOLUTION 14-34 LT. NORTHSIDE", "Name": "FLEMING, EDRIS", "Address": "PO BOX 4465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.704475874, "SHAPE_Area": 1410.4228664100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355829.644799999892712, 259125.424100000411272 ], [ 355781.42790000140667, 259106.030999999493361 ], [ 355777.950900003314018, 259135.555700000375509 ], [ 355828.611900001764297, 259152.013399999588728 ], [ 355827.940399996936321, 259136.175900001078844 ], [ 355829.644799999892712, 259125.424100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90820454, "LATITUDE": 18.36186848, "OBJECTID_1": 5242, "PARCEL_NO_": "103001032400", "Tax_Legal_": "LOVENLUND C-52 //129 GT. NORTHSIDE QTR.", "Name": "BLYDEN, BYRON M. & DESIREE A. L. CAINES", "Address": "PO BOX 10849", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.85570166299999, "SHAPE_Area": 1202.7679486500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361212.577799998223782, 259170.536299999803305 ], [ 361203.067500002682209, 259151.037900000810623 ], [ 361190.935099996626377, 259155.371500000357628 ], [ 361174.774700000882149, 259159.25 ], [ 361154.5, 259172.80519999936223 ], [ 361166.447200000286102, 259190.212600000202656 ], [ 361190.722900003194809, 259180.278799999505281 ], [ 361212.577799998223782, 259170.536299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033000", "MAP": "A9-394-T91", "PARCEL_NAM": "22", "ACRE": "1.2", "LONGITUDE": -64.96608755, "LATITUDE": 18.36170272, "OBJECTID_1": 466, "PARCEL_NO_": "101103033000", "Tax_Legal_": "NELTJEBERG 22/EASTERN PT LT. NORTHSIDE", "Name": "BRYAN, ASHLEY & ALBERTINA", "Address": "PO Box 11957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 114600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.39153809700002, "SHAPE_Area": 5073.9315329900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355119.452500000596046, 259099.768699999898672 ], [ 355043.991800002753735, 259060.098799999803305 ], [ 355039.096400000154972, 259066.813700001686811 ], [ 355027.712700001895428, 259077.908500000834465 ], [ 355006.61370000243187, 259093.567800000309944 ], [ 355001.475699998438358, 259097.329999998211861 ], [ 355084.697400003671646, 259141.575800001621246 ], [ 355090.096199996769428, 259138.158599998801947 ], [ 355124.954700000584126, 259116.490100000053644 ], [ 355119.452500000596046, 259099.768699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801021700", "MAP": "D9-5900-T95", "PARCEL_NAM": "6F-3", "ACRE": ".52", "LONGITUDE": -64.94430419, "LATITUDE": 18.36173136, "OBJECTID_1": 3790, "PARCEL_NO_": "102801021700", "Tax_Legal_": "6F-3 ESTATE ST.PETER LITTLE NORTHSIDE QTR", "Name": "BRYAN, EDWIN A", "Address": "6F-2 Estate St. Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 126900, "Improved_V": 333500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.63663312, "SHAPE_Area": 1626.3338374299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357402.873700000345707, 259125.001299999654293 ], [ 357390.298199996352196, 259086.690499998629093 ], [ 357382.182899996638298, 259092.745799999684095 ], [ 357386.959600001573563, 259099.962000001221895 ], [ 357306.656400002539158, 259155.455699998885393 ], [ 357359.214100003242493, 259138.576200000941753 ], [ 357402.873700000345707, 259125.001299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90901946, "LATITUDE": 18.36180042, "OBJECTID_1": 5237, "PARCEL_NO_": "103001031800", "Tax_Legal_": "LOVENLUND C-5-A-5&C-2-M 133 GRT NORTHSIDE QRT", "Name": "GRAHAM, MARK C and DEBRA", "Address": "PO Box 307123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 101100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.18262472800001, "SHAPE_Area": 1354.0847350500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361123.032200001180172, 259175.080800000578165 ], [ 361099.19709999859333, 259133.300200000405312 ], [ 361072.367600001394749, 259159.045200001448393 ], [ 361095.518700003623962, 259186.465700000524521 ], [ 361097.145700000226498, 259184.790300000458956 ], [ 361112.52139999717474, 259178.37220000103116 ], [ 361123.032200001180172, 259175.080800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96829668, "LATITUDE": 18.36184241, "OBJECTID_1": 2445, "PARCEL_NO_": "102602024700", "Tax_Legal_": "NELTJEBERG 12C LITTLE NORTHSIDE", "Name": "MC CLEVERTY, JOYCE M", "Address": "PO Box 306180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25300, "Improved_V": 68200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.07179042600001, "SHAPE_Area": 1210.22462578 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354850.650200001895428, 259132.821299999952316 ], [ 354849.336099997162819, 259097.769000001251698 ], [ 354849.207500003278255, 259094.338700000196695 ], [ 354827.745399996638298, 259101.475600000470877 ], [ 354826.439978018461261, 259101.683620501920814 ], [ 354825.11815542599652, 259101.670051998109557 ], [ 354823.817278733185958, 259101.435277850861894 ], [ 354822.574102652550209, 259100.985931322415126 ], [ 354821.42375163489487, 259100.334708160662558 ], [ 354820.398727470252197, 259099.500007895898307 ], [ 354819.527990988397505, 259098.505413984123152 ], [ 354818.836143805528991, 259097.379027484887047 ], [ 354818.342733234982006, 259096.152673099306412 ], [ 354818.061700001358986, 259094.861000001430511 ], [ 354816.492700003087521, 259090.910500001162291 ], [ 354814.904600001871586, 259091.541200000792742 ], [ 354815.370200000703335, 259109.312300000339746 ], [ 354815.978699997067451, 259132.537500001490116 ], [ 354836.933899998664856, 259133.764499999582767 ], [ 354850.650200001895428, 259132.821299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96862402, "LATITUDE": 18.36183827, "OBJECTID_1": 2444, "PARCEL_NO_": "102602024600", "Tax_Legal_": "NELTJEBERG 12D LTTLE NORTHSIDE", "Name": "GONZALES, PETER", "Address": "PO Box 12216", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.18149508600001, "SHAPE_Area": 1209.6831952099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354815.370200000703335, 259109.312300000339746 ], [ 354814.904600001871586, 259091.541200000792742 ], [ 354809.049199998378754, 259094.061799999326468 ], [ 354791.24379999935627, 259101.726500000804663 ], [ 354775.891500003635883, 259105.400600001215935 ], [ 354778.992700003087521, 259119.991399999707937 ], [ 354779.710900001227856, 259130.340900000184774 ], [ 354815.978699997067451, 259132.537500001490116 ], [ 354815.370200000703335, 259109.312300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702044500", "MAP": "G9-2537-T76", "PARCEL_NAM": "14-12", "ACRE": null, "LONGITUDE": -64.95717427, "LATITUDE": 18.36180598, "OBJECTID_1": 3137, "PARCEL_NO_": "102702044500", "Tax_Legal_": "BONNE RESOLUTION 14-12 No.5 LITTLE NORTHSIDE QTR", "Name": "JONES, DERRICK D. & LEONTYNE", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 37300, "Improved_V": 339600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.69972166599999, "SHAPE_Area": 1249.7465473300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356042.579599998891354, 259119.145300000905991 ], [ 355995.973499998450279, 259099.976500000804663 ], [ 355994.366300001740456, 259099.330099999904633 ], [ 355986.060400001704693, 259127.759700000286102 ], [ 356000.44820000231266, 259142.653999999165535 ], [ 356032.047200001776218, 259124.969700001180172 ], [ 356042.579599998891354, 259119.145300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96799274, "LATITUDE": 18.36179685, "OBJECTID_1": 2446, "PARCEL_NO_": "102602024800", "Tax_Legal_": "NELTJEBERG 12B LITTLE NORTHSIDE", "Name": "MCCLEVERTY, JOYCE", "Address": "PO Box 306180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.11683513599999, "SHAPE_Area": 1261.5932209600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354878.248199999332428, 259111.515599999576807 ], [ 354878.48200000077486, 259084.07880000025034 ], [ 354872.786840940418188, 259086.175672689889325 ], [ 354867.009700000286102, 259088.034800000488758 ], [ 354849.207500003278255, 259094.338700000196695 ], [ 354849.336099997162819, 259097.769000001251698 ], [ 354850.650200001895428, 259132.821299999952316 ], [ 354882.922499999403954, 259130.763399999588728 ], [ 354878.248199999332428, 259111.515599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011800", "MAP": "G9-1101-T68", "PARCEL_NAM": "6FA-2", "ACRE": ".33", "LONGITUDE": -64.95358482, "LATITUDE": 18.36168678, "OBJECTID_1": 2958, "PARCEL_NO_": "102702011800", "Tax_Legal_": "HULL BAY 6FA-2 LT.NORTHSIDE QTR.", "Name": "FINOCCHIO, GEORGE & LEONARD & KENNETH", "Address": "321 E Yale Ave", "City": "Fresno", "State": "California", "Zip": 93704, "Country": "United States", "Land_Value": 37100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.246186661, "SHAPE_Area": 1168.6247369800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356403.256599999964237, 259092.122000001370907 ], [ 356403.784500002861023, 259088.863000001758337 ], [ 356382.734899997711182, 259093.410599999129772 ], [ 356371.710299998521805, 259095.792300000786781 ], [ 356370.974399998784065, 259128.907900001853704 ], [ 356378.839400000870228, 259128.874699998646975 ], [ 356405.142099998891354, 259128.763700000941753 ], [ 356402.340599998831749, 259104.991200000047684 ], [ 356403.256599999964237, 259092.122000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96765488, "LATITUDE": 18.36173931, "OBJECTID_1": 2438, "PARCEL_NO_": "102602022800", "Tax_Legal_": "NELTJEBERG #44 E.PART LT.NORTHSIDE QTR.", "Name": "MOOLENAAR MARSH, JEWEL R.", "Address": "PO Box 261", "City": "Yonkers", "State": "New York", "Zip": 10705, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.896996495, "SHAPE_Area": 1935.26753955 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354915.531000003218651, 259089.233800001442432 ], [ 354891.194700002670288, 259077.746800001710653 ], [ 354889.023100003600121, 259079.46229999884963 ], [ 354883.797909262939356, 259081.874121212225873 ], [ 354878.48200000077486, 259084.07880000025034 ], [ 354878.248199999332428, 259111.515599999576807 ], [ 354882.922499999403954, 259130.763399999588728 ], [ 354912.829700000584126, 259122.353399999439716 ], [ 354937.119800001382828, 259110.730900000780821 ], [ 354915.531000003218651, 259089.233800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801028800", "MAP": "D9-5900-T95", "PARCEL_NAM": "6F-2", "ACRE": ".33", "LONGITUDE": -64.94458917, "LATITUDE": 18.36169361, "OBJECTID_1": 3834, "PARCEL_NO_": "102801028800", "Tax_Legal_": "ST PETER 6F-2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, EDWIN A", "Address": "6F-2 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 399500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.96581645699999, "SHAPE_Area": 1181.5811080599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357370.012699998915195, 259101.512099999934435 ], [ 357361.179200001060963, 259097.2179000005126 ], [ 357334.495399996638298, 259105.86540000140667 ], [ 357301.888599999248981, 259147.184000000357628 ], [ 357304.295000001788139, 259148.681400001049042 ], [ 357316.438199996948242, 259143.081199999898672 ], [ 357345.618299998342991, 259125.377099998295307 ], [ 357372.393899999558926, 259105.964499998837709 ], [ 357370.012699998915195, 259101.512099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702044600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95749732, "LATITUDE": 18.36172811, "OBJECTID_1": 3138, "PARCEL_NO_": "102702044600", "Tax_Legal_": "14-13 BONNE RESOLUTION LITTLE NORTHSIDE", "Name": "ALPHONSE A. JR & JULIETTE D. GOODING FAM REV TR", "Address": "PO Box 303261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43800, "Improved_V": 206200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.179904816, "SHAPE_Area": 1172.04924078 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355994.366300001740456, 259099.330099999904633 ], [ 355976.690399996936321, 259091.797100000083447 ], [ 355968.654200002551079, 259088.565000001341105 ], [ 355952.240199998021126, 259122.205600000917912 ], [ 355979.545199997723103, 259135.305799998342991 ], [ 355986.060400001704693, 259127.759700000286102 ], [ 355994.366300001740456, 259099.330099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011600", "MAP": "G9-1101-T68", "PARCEL_NAM": "6FA-3", "ACRE": ".34", "LONGITUDE": -64.95387934, "LATITUDE": 18.36183353, "OBJECTID_1": 2956, "PARCEL_NO_": "102702011600", "Tax_Legal_": "6FA-3 HULL NO. 4 LITTLE NORTHSIDE QTR", "Name": "PETERSEN, RAYMOND A", "Address": "PO Box 11544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.505003528, "SHAPE_Area": 1666.2551142299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356370.974399998784065, 259128.907900001853704 ], [ 356371.710299998521805, 259095.792300000786781 ], [ 356354.517300002276897, 259099.506700001657009 ], [ 356340.627099998295307, 259102.507500000298023 ], [ 356341.200800001621246, 259132.191899999976158 ], [ 356341.542499996721745, 259149.869199998676777 ], [ 356343.219499997794628, 259150.021699998527765 ], [ 356350.204599998891354, 259153.355399999767542 ], [ 356354.808300003409386, 259155.895399998873472 ], [ 356366.079599998891354, 259160.657900001853704 ], [ 356368.074799999594688, 259161.782499998807907 ], [ 356370.309799998998642, 259136.442499998956919 ], [ 356370.974399998784065, 259128.907900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801028700", "MAP": "D9-5231-T92", "PARCEL_NAM": "5LA", "ACRE": ".50", "LONGITUDE": -64.94276299000001, "LATITUDE": 18.36153669, "OBJECTID_1": 3833, "PARCEL_NO_": "102801028700", "Tax_Legal_": "LERKENLUND 5LA GREAT NORTHSIDE", "Name": "BAIG, SHAKIL & SEEMA", "Address": "PO Box 10447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99700, "Improved_V": 386900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.17698172600001, "SHAPE_Area": 2945.1964626700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357567.124600000679493, 259102.985599998384714 ], [ 357549.702299997210503, 259065.196899998933077 ], [ 357499.141599997878075, 259094.081599999219179 ], [ 357513.968599997460842, 259146.597699999809265 ], [ 357537.511699996888638, 259128.003100000321865 ], [ 357567.124600000679493, 259102.985599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94005126, "LATITUDE": 18.36167598, "OBJECTID_1": 4058, "PARCEL_NO_": "102802014000", "Tax_Legal_": "LERKENLUND 2C-2 GT. NORTHSIDE", "Name": "BRYAN, ALLAN", "Address": "PO Box 9500", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84600, "Improved_V": 279800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.362438707, "SHAPE_Area": 3065.5755175700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357831.397799998521805, 259084.812199998646975 ], [ 357830.014399997889996, 259081.285799998790026 ], [ 357826.870800003409386, 259083.495799999684095 ], [ 357821.260899998247623, 259087.439599998295307 ], [ 357817.078000001609325, 259090.380199998617172 ], [ 357779.275200001895428, 259116.956199999898672 ], [ 357773.003100000321865, 259121.365600001066923 ], [ 357780.218900002539158, 259129.145199999213219 ], [ 357805.081600002944469, 259144.9695999994874 ], [ 357857.461300000548363, 259148.986900001764297 ], [ 357836.133199997246265, 259096.883299998939037 ], [ 357833.762800000607967, 259091.16440000012517 ], [ 357831.397799998521805, 259084.812199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011100", "MAP": "D9-1041-T72", "PARCEL_NAM": "2D-2", "ACRE": null, "LONGITUDE": -64.93960733, "LATITUDE": 18.36152974, "OBJECTID_1": 4034, "PARCEL_NO_": "102802011100", "Tax_Legal_": "LEREKNLUND 2D-2 GR NORTHSIDE", "Name": "JUNE BRYAN QUERRARD REVOCABLE TRUST", "Address": "7812 St Peter3P1A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 146400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.23694516699999, "SHAPE_Area": 3596.7838529599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357849.445500001311302, 259067.601399999111891 ], [ 357830.014399997889996, 259081.285799998790026 ], [ 357831.397799998521805, 259084.812199998646975 ], [ 357833.762800000607967, 259091.16440000012517 ], [ 357836.133199997246265, 259096.883299998939037 ], [ 357857.461300000548363, 259148.986900001764297 ], [ 357901.954099997878075, 259132.252500001341105 ], [ 357876.664599999785423, 259071.883799999952316 ], [ 357873.845200002193451, 259063.666700001806021 ], [ 357869.024700000882149, 259064.708700001239777 ], [ 357864.579700000584126, 259065.661200001835823 ], [ 357860.134700000286102, 259066.29619999974966 ], [ 357855.795500002801418, 259066.931200001388788 ], [ 357851.138800002634525, 259067.460299998521805 ], [ 357849.445500001311302, 259067.601399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026800", "MAP": "D9-2055-T82", "PARCEL_NAM": "3I-3", "ACRE": ".50", "LONGITUDE": -64.93614562, "LATITUDE": 18.36162674, "OBJECTID_1": 4150, "PARCEL_NO_": "102802026800", "Tax_Legal_": "3i-3 & 1/8 INTEREST IN 3i-9 & 3i-10 LERKENLUND NO.9 NORTHSIDE QTR.", "Name": "JCD PROPERTIES LLC", "Address": "1000 Blackbeards Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 105300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.24223328599999, "SHAPE_Area": 2287.6700826199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358250.781199999153614, 259090.900199998170137 ], [ 358244.291000001132488, 259081.014400001615286 ], [ 358211.5996999964118, 259111.648600000888109 ], [ 358209.331799998879433, 259114.503199998289347 ], [ 358203.105499997735023, 259120.035599999129772 ], [ 358202.134999997913837, 259120.897999998182058 ], [ 358205.017099998891354, 259132.535599999129772 ], [ 358205.565999999642372, 259134.594000000506639 ], [ 358207.047700002789497, 259137.663199998438358 ], [ 358208.52929999679327, 259141.261500000953674 ], [ 358210.540200002491474, 259146.447399999946356 ], [ 358212.870600000023842, 259151.502999998629093 ], [ 358230.789399996399879, 259151.409099999815226 ], [ 358261.841600000858307, 259106.278799999505281 ], [ 358259.353699997067451, 259104.235199999064207 ], [ 358257.13120000064373, 259101.377700001001358 ], [ 358254.114900000393391, 259096.297699999064207 ], [ 358250.781199999153614, 259090.900199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9087521, "LATITUDE": 18.36167935, "OBJECTID_1": 5236, "PARCEL_NO_": "103001031700", "Tax_Legal_": "LOVENLUND C-5-A-6&C-2-L 132 LOVENLUND", "Name": "GRAHAM, MARK C and DEBRA", "Address": "PO Box 307123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.168845428, "SHAPE_Area": 1507.7797301099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361152.163699999451637, 259163.075800001621246 ], [ 361131.523299999535084, 259124.910000000149012 ], [ 361101.639399997889996, 259130.5760000012815 ], [ 361099.19709999859333, 259133.300200000405312 ], [ 361123.032200001180172, 259175.080800000578165 ], [ 361135.159199997782707, 259171.380300000309944 ], [ 361152.163699999451637, 259163.075800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036200", "MAP": "D9-1755-T81", "PARCEL_NAM": "C-59-B", "ACRE": ".21", "LONGITUDE": -64.90532936, "LATITUDE": 18.36175474, "OBJECTID_1": 5504, "PARCEL_NO_": "103002036200", "Tax_Legal_": "C-59-B&C-59-C LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 212200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.762122170799998, "SHAPE_Area": 485.17813491800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361491.869800001382828, 259143.832699999213219 ], [ 361475.237800002098083, 259150.448300000280142 ], [ 361484.262000001966953, 259177.826200000941753 ], [ 361499.659199997782707, 259168.875100001692772 ], [ 361491.869800001382828, 259143.832699999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012000", "MAP": "D9-5765-T94", "PARCEL_NAM": "6BA", "ACRE": null, "LONGITUDE": -64.94632868, "LATITUDE": 18.36159812, "OBJECTID_1": 3702, "PARCEL_NO_": "102801012000", "Tax_Legal_": "6BB ST PETER LITTLE NORTHSIDE QTR", "Name": "A & J BERRY TRUST", "Address": "PO Box 305516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.74909402399999, "SHAPE_Area": 2820.71092714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357178.421499997377396, 259080.017700001597404 ], [ 357132.443800002336502, 259073.285100001841784 ], [ 357132.387100003659725, 259075.751200001686811 ], [ 357132.308799996972084, 259079.160199999809265 ], [ 357131.534100003540516, 259112.872600000351667 ], [ 357131.054499998688698, 259133.742400001734495 ], [ 357150.377400003373623, 259137.078000001609325 ], [ 357155.208099998533726, 259137.961899999529123 ], [ 357176.944399997591972, 259142.150600001215935 ], [ 357176.985699996352196, 259137.295800000429153 ], [ 357178.16610000282526, 259093.397999998182058 ], [ 357178.218199998140335, 259087.276700001209974 ], [ 357178.421499997377396, 259080.017700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701010800", "MAP": "G9-823-T65", "PARCEL_NAM": null, "ACRE": "1.06", "LONGITUDE": -64.96350869, "LATITUDE": 18.36147359, "OBJECTID_1": 2782, "PARCEL_NO_": "102701010800", "Tax_Legal_": "DOROTHEA 13C LT NORTHSIDE", "Name": "BROWN, RUDOLFO A", "Address": "PO Box 521", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 99000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.21430756699999, "SHAPE_Area": 4129.4833888599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355386.210699997842312, 259117.361800000071526 ], [ 355330.550999999046326, 259025.080600000917912 ], [ 355295.676399998366833, 259048.648699998855591 ], [ 355342.597900003194809, 259125.448600001633167 ], [ 355386.210699997842312, 259117.361800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702045400", "MAP": "A9-157-T71", "PARCEL_NAM": "14-26", "ACRE": null, "LONGITUDE": -64.95819972, "LATITUDE": 18.36168654, "OBJECTID_1": 3145, "PARCEL_NO_": "102702045400", "Tax_Legal_": "BONNE RESOLUTION 14-26 LT NORTHSIDE", "Name": "LETTSOME, EDWIN & LOUISE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.80055148700001, "SHAPE_Area": 1040.9050366399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355921.701099999248981, 259110.134399998933077 ], [ 355882.495600000023842, 259074.138700000941753 ], [ 355887.115900002419949, 259099.718899998813868 ], [ 355889.398199997842312, 259115.780600000172853 ], [ 355894.144400000572205, 259126.585299998521805 ], [ 355898.957099996507168, 259129.579999998211861 ], [ 355905.403999999165535, 259130.054900001734495 ], [ 355909.44990000128746, 259128.399300001561642 ], [ 355911.093099996447563, 259124.824099998921156 ], [ 355921.701099999248981, 259110.134399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103002039600", "MAP": "D9-2086-T82", "PARCEL_NAM": "C-66", "ACRE": ".008", "LONGITUDE": -64.90477143, "LATITUDE": 18.36178413, "OBJECTID_1": 5585, "PARCEL_NO_": "103002039600", "Tax_Legal_": "LOVENLUND C-66 GT. NORTHSIDE QTR.", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 3600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.86041031900001, "SHAPE_Area": 286.79970480200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361594.886799998581409, 259159.944200001657009 ], [ 361563.453199997544289, 259158.209300000220537 ], [ 361555.386500000953674, 259158.565499998629093 ], [ 361544.07660000026226, 259161.006000000983477 ], [ 361509.336800001561642, 259168.743299998342991 ], [ 361505.285400003194809, 259171.0320999994874 ], [ 361502.029600001871586, 259174.594099998474121 ], [ 361506.070200003683567, 259173.571699999272823 ], [ 361552.130699999630451, 259162.127399999648333 ], [ 361561.009099997580051, 259161.144600000232458 ], [ 361574.716399997472763, 259161.256799999624491 ], [ 361594.859899997711182, 259163.110399998724461 ], [ 361594.886799998581409, 259159.944200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95437274, "LATITUDE": 18.36186634, "OBJECTID_1": 2955, "PARCEL_NO_": "102702011500", "Tax_Legal_": "HULL BAY 6FA LITTLE NORTHSIDE", "Name": "DELAGARDE, AIMERY & DENA ENJO", "Address": "PO Box 303852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 147700, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.21661788599999, "SHAPE_Area": 2921.5630957899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356341.542499996721745, 259149.869199998676777 ], [ 356341.200800001621246, 259132.191899999976158 ], [ 356340.627099998295307, 259102.507500000298023 ], [ 356329.150100000202656, 259104.986999999731779 ], [ 356283.365099996328354, 259114.878400001674891 ], [ 356245.76410000026226, 259144.845499999821186 ], [ 356248.921899996697903, 259146.05290000140667 ], [ 356252.255599997937679, 259146.21169999986887 ], [ 356262.73309999704361, 259146.846700001507998 ], [ 356277.973200000822544, 259147.322900000959635 ], [ 356287.974399998784065, 259147.799199998378754 ], [ 356298.293200001120567, 259148.116700001060963 ], [ 356306.389499999582767, 259148.116700001060963 ], [ 356315.279500000178814, 259148.116700001060963 ], [ 356327.027000002563, 259147.957899998873472 ], [ 356336.234499998390675, 259149.386700000613928 ], [ 356341.542499996721745, 259149.869199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801029500", "MAP": "D9-5721-T94", "PARCEL_NAM": "6H-1", "ACRE": null, "LONGITUDE": -64.9456543, "LATITUDE": 18.36167575, "OBJECTID_1": 3838, "PARCEL_NO_": "102801029500", "Tax_Legal_": "6H-1 ESTATE ST.PETER No.2 LITTLE NORTHSIDE QTR.", "Name": "BRYAN, EDWIN & BAYCHU, LORI BRYAN", "Address": "7434 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023436, "Country": "United States", "Land_Value": 100900, "Improved_V": 344200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.40484134299999, "SHAPE_Area": 1771.43023025 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357247.133100003004074, 259138.081000000238419 ], [ 357245.890900000929832, 259094.58559999987483 ], [ 357205.569899998605251, 259094.888900000602007 ], [ 357205.206699997186661, 259137.526799999177456 ], [ 357243.101499997079372, 259138.048000000417233 ], [ 357247.133100003004074, 259138.081000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801029600", "MAP": "D9-5721-T94", "PARCEL_NAM": "6H-2", "ACRE": null, "LONGITUDE": -64.945201, "LATITUDE": 18.36168504, "OBJECTID_1": 3839, "PARCEL_NO_": "102801029600", "Tax_Legal_": "6H-2 ESTATE ST.PETER No.2 LITTLE NORTHSIDE QTR.", "Name": "BRYAN, CINDY L", "Address": "7434 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 105400, "Improved_V": 316600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.669056899, "SHAPE_Area": 2288.0985669900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357322.377300001680851, 259108.510499998927116 ], [ 357302.975500002503395, 259114.262299999594688 ], [ 357290.070900000631809, 259114.578899998217821 ], [ 357282.050899997353554, 259109.447000000625849 ], [ 357279.6841000020504, 259103.305900000035763 ], [ 357280.618100002408028, 259088.325899999588728 ], [ 357262.837899997830391, 259093.035500001162291 ], [ 357245.890900000929832, 259094.58559999987483 ], [ 357247.133100003004074, 259138.081000000238419 ], [ 357297.930799998342991, 259138.496800001710653 ], [ 357322.377300001680851, 259108.510499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801033100", "MAP": "D9-5721-T94", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9459818, "LATITUDE": 18.36167343, "OBJECTID_1": 3869, "PARCEL_NO_": "102801033100", "Tax_Legal_": "6C-2 ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BERRY, JOSEPH N., JR. & ANITA M. (Co-Trustees)", "Address": "PO Box 305516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.21938587, "SHAPE_Area": 1204.0472324899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357205.569899998605251, 259094.888900000602007 ], [ 357178.16610000282526, 259093.397999998182058 ], [ 357176.985699996352196, 259137.295800000429153 ], [ 357205.206699997186661, 259137.526799999177456 ], [ 357205.569899998605251, 259094.888900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95907267, "LATITUDE": 18.36165214, "OBJECTID_1": 2864, "PARCEL_NO_": "102701023400", "Tax_Legal_": "BONNE RESOLUTION 14-33 LT. NORTHSIDE", "Name": "FLEMING, EDRIS", "Address": "PO BOX 4465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.30965197699999, "SHAPE_Area": 1405.99975812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355835.506599999964237, 259099.929699998348951 ], [ 355788.911300003528595, 259079.494500000029802 ], [ 355784.015799999237061, 259086.209399998188019 ], [ 355781.42790000140667, 259106.030999999493361 ], [ 355829.644799999892712, 259125.424100000411272 ], [ 355835.506599999964237, 259099.929699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702044700", "MAP": "A9-157-T71", "PARCEL_NAM": "14-20", "ACRE": ".30", "LONGITUDE": -64.95773155000001, "LATITUDE": 18.36164108, "OBJECTID_1": 3139, "PARCEL_NO_": "102702044700", "Tax_Legal_": "14-20 BONNE RESOLUTION LT.NORTHSIDE QTR.", "Name": "GOODING, NIELS A.", "Address": "PO Box 303261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.92018459000001, "SHAPE_Area": 864.22875179699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355968.654200002551079, 259088.565000001341105 ], [ 355949.367399998009205, 259080.807700000703335 ], [ 355947.736800000071526, 259082.905299998819828 ], [ 355932.994800001382828, 259109.593600001186132 ], [ 355929.729999996721745, 259114.210900001227856 ], [ 355951.417700000107288, 259124.098700001835823 ], [ 355952.240199998021126, 259122.205600000917912 ], [ 355968.654200002551079, 259088.565000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702015500", "MAP": "D9-6579-T99", "PARCEL_NAM": "4E-4-6", "ACRE": ".30", "LONGITUDE": -64.95487986000001, "LATITUDE": 18.36176416, "OBJECTID_1": 2991, "PARCEL_NO_": "102702015500", "Tax_Legal_": "4E-4-6 ESTATE HULL No.4 LITTLE NORTHSIDE QUARTER", "Name": "RAND, PETER F. & JODI A", "Address": "228 CREEKSTONE RIDGE", "City": "Woodstock", "State": "Georgia", "Zip": 30188, "Country": "United States", "Land_Value": 39300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.43883858800001, "SHAPE_Area": 2143.3508971800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356283.365099996328354, 259114.878400001674891 ], [ 356279.353399999439716, 259093.407200001180172 ], [ 356268.875900000333786, 259087.374699998646975 ], [ 356214.472999997437, 259124.939100001007318 ], [ 356214.223700001835823, 259136.633200000971556 ], [ 356218.918099999427795, 259137.63910000026226 ], [ 356227.490599997341633, 259140.020399998873472 ], [ 356236.380599997937679, 259142.084100000560284 ], [ 356243.524400003254414, 259143.989100001752377 ], [ 356245.76410000026226, 259144.845499999821186 ], [ 356283.365099996328354, 259114.878400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90845038, "LATITUDE": 18.3615477, "OBJECTID_1": 5239, "PARCEL_NO_": "103001032000", "Tax_Legal_": "C-2-0 & C-5-A-3 (AKA 135) LOVENLUND NO.2 GT NORTHSIDE QTR", "Name": "Kyle R Carty Revocable Trust & Richard Carty", "Address": "7025 Estate Havensight", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.58213512200001, "SHAPE_Area": 1613.56828784 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361189.403399996459484, 259145.8597999997437 ], [ 361169.427199997007847, 259124.375799998641014 ], [ 361159.130300000309944, 259102.548900000751019 ], [ 361136.370200000703335, 259123.894200000911951 ], [ 361131.523299999535084, 259124.910000000149012 ], [ 361152.163699999451637, 259163.075800001621246 ], [ 361169.195200003683567, 259151.605000000447035 ], [ 361186.975400000810623, 259146.895399998873472 ], [ 361189.403399996459484, 259145.8597999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102602022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96805135, "LATITUDE": 18.36148607, "OBJECTID_1": 2439, "PARCEL_NO_": "102602022900", "Tax_Legal_": "NELTJBERG/EASTERN PT 12 REM ROAD LT. NORTHSIDE", "Name": "MOOLENAAR, HALVOR", "Address": "PO Box 6641", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.49510123800002, "SHAPE_Area": 704.16977105900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354849.207500003278255, 259094.338700000196695 ], [ 354867.009700000286102, 259088.034800000488758 ], [ 354872.786840940418188, 259086.175672689889325 ], [ 354878.48200000077486, 259084.07880000025034 ], [ 354883.797909262939356, 259081.874121212225873 ], [ 354889.023100003600121, 259079.46229999884963 ], [ 354891.194700002670288, 259077.746800001710653 ], [ 354893.542358302685898, 259075.316812449425925 ], [ 354895.507700003683567, 259072.568399999290705 ], [ 354897.292386169894598, 259069.552351983031258 ], [ 354898.644295880571008, 259066.319088850810658 ], [ 354899.537618849950377, 259062.930339166836347 ], [ 354899.955300003290176, 259059.450800001621246 ], [ 354901.790265114570502, 259051.69035710170283 ], [ 354903.20377154549351, 259043.842199959239224 ], [ 354904.191699996590614, 259035.929200001060963 ], [ 354906.401900000870228, 259024.986600000411272 ], [ 354901.5675999969244, 259024.524900000542402 ], [ 354899.527408714347985, 259041.283694494370138 ], [ 354897.01349999755621, 259057.978000000119209 ], [ 354896.517990100430325, 259061.534168425190728 ], [ 354895.464016421232373, 259064.966515058215009 ], [ 354893.87833029392641, 259068.187922115903348 ], [ 354891.801178661757149, 259071.116625757887959 ], [ 354889.285282553581055, 259073.678291368094506 ], [ 354886.394498949928675, 259075.807900271727704 ], [ 354883.202200002968311, 259077.451400000602007 ], [ 354865.917032497527543, 259083.924886807304574 ], [ 354848.545999996364117, 259090.164299998432398 ], [ 354839.757600001990795, 259093.220600001513958 ], [ 354836.01994644763181, 259094.534502900904045 ], [ 354832.158350564190187, 259095.420207227725768 ], [ 354828.221699997782707, 259095.866500001400709 ], [ 354826.575240861624479, 259095.143336967244977 ], [ 354825.062344248523004, 259094.171258627291536 ], [ 354823.720342729415279, 259092.974252201413037 ], [ 354822.582351830147672, 259091.581855284515768 ], [ 354821.676452865533065, 259090.028426970471628 ], [ 354821.024999998509884, 259088.352299999445677 ], [ 354819.895900003612041, 259079.360800001770258 ], [ 354817.803700000047684, 259069.970199998468161 ], [ 354809.070500001311302, 259070.296500001102686 ], [ 354811.765007392794359, 259075.112756102520507 ], [ 354813.916296407871414, 259080.194945442868629 ], [ 354815.498528524884023, 259085.482027288759127 ], [ 354816.492700003087521, 259090.910500001162291 ], [ 354818.061700001358986, 259094.861000001430511 ], [ 354818.342733232071623, 259096.15267310096533 ], [ 354818.836143800755963, 259097.379027488437714 ], [ 354819.527990982634947, 259098.505413989478257 ], [ 354820.398727464373223, 259099.500007902708603 ], [ 354821.423751629656181, 259100.334708168404177 ], [ 354822.57410264830105, 259100.985931330360472 ], [ 354823.817278730333783, 259101.435277858166955 ], [ 354825.118155424424913, 259101.670052003872115 ], [ 354826.439978017937392, 259101.683620505209547 ], [ 354827.745399996638298, 259101.475600000470877 ], [ 354849.207500003278255, 259094.338700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103034400", "MAP": "A9-394-T91", "PARCEL_NAM": "41", "ACRE": ".637", "LONGITUDE": -64.96709117, "LATITUDE": 18.36143039, "OBJECTID_1": 480, "PARCEL_NO_": "101103034400", "Tax_Legal_": "NELTJEBERG 41/EASTERN PT LT. NORTHSIDE", "Name": "PARROT, A. & M. & KRIGGER, J & A", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.80097995099999, "SHAPE_Area": 3368.5743852099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354950.085600003600121, 259103.237700000405312 ], [ 354980.10249999910593, 259081.951799999922514 ], [ 354993.903300002217293, 259071.087900001555681 ], [ 355009.424699999392033, 259047.572399999946356 ], [ 355009.489399999380112, 259039.973600000143051 ], [ 355000.571400001645088, 259045.600099999457598 ], [ 354990.886699996888638, 259046.576299998909235 ], [ 354986.057800002396107, 259045.4814000017941 ], [ 354981.241499997675419, 259042.9087999984622 ], [ 354976.452200002968311, 259037.170099999755621 ], [ 354942.464800000190735, 259051.246300000697374 ], [ 354935.168399997055531, 259055.830600000917912 ], [ 354933.438900001347065, 259069.537500001490116 ], [ 354930.145300000905991, 259077.5320999994874 ], [ 354926.063400000333786, 259083.409400001168251 ], [ 354915.531000003218651, 259089.233800001442432 ], [ 354937.119800001382828, 259110.730900000780821 ], [ 354950.085600003600121, 259103.237700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702045600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95699508, "LATITUDE": 18.36155584, "OBJECTID_1": 3147, "PARCEL_NO_": "102702045600", "Tax_Legal_": "13-4 BONNE RESOLUTION LITTLE NORTHSIDE", "Name": "KLEMUK, ALEXANDER NICHOLAS & PHYLLIS HAZEL (TRUSTEES)", "Address": "PO Box 11687", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57800, "Improved_V": 197400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.80637794500001, "SHAPE_Area": 1596.63007397 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356048.635600000619888, 259070.854400001466274 ], [ 356037.35080000013113, 259070.339899998158216 ], [ 356037.295100003480911, 259076.883299998939037 ], [ 356027.622900001704693, 259076.381999999284744 ], [ 356015.548000000417233, 259073.961100000888109 ], [ 355995.973499998450279, 259099.976500000804663 ], [ 356042.579599998891354, 259119.145300000905991 ], [ 356049.298000000417233, 259087.747299998998642 ], [ 356048.635600000619888, 259070.854400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602030300", "MAP": "D9-1889-T81", "PARCEL_NAM": "1A-3", "ACRE": null, "LONGITUDE": -64.97101377, "LATITUDE": 18.36146527, "OBJECTID_1": 2465, "PARCEL_NO_": "102602030300", "Tax_Legal_": "DOROTHEA 1A-3 LT. NORTHSIDE", "Name": "WALTERS, THELMA V", "Address": "2516 Riverton Dr", "City": "Conyers", "State": "Georgia", "Zip": 30013, "Country": "United States", "Land_Value": 146000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 363.85952998499999, "SHAPE_Area": 5740.7524500500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354613.22860000282526, 259079.160199999809265 ], [ 354590.313000001013279, 259024.088300000876188 ], [ 354548.989699997007847, 259047.392599999904633 ], [ 354530.36540000140667, 259056.528299998492002 ], [ 354519.84740000218153, 259060.664099998772144 ], [ 354508.499600000679493, 259067.537300001829863 ], [ 354493.926700003445148, 259074.384100001305342 ], [ 354476.250699996948242, 259066.851100001484156 ], [ 354472.966099999845028, 259073.790300000458956 ], [ 354468.070699997246265, 259080.505300000309944 ], [ 354471.994400002062321, 259093.203000001609325 ], [ 354501.723700001835823, 259105.689699999988079 ], [ 354613.22860000282526, 259079.160199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011600", "MAP": "D9-9374-T019", "PARCEL_NAM": "REM 2D-3", "ACRE": "0.65", "LONGITUDE": -64.9392188, "LATITUDE": 18.36140479, "OBJECTID_1": 4036, "PARCEL_NO_": "102802011600", "Tax_Legal_": "2D-3A & 2D-3R (ROW)LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BRYAN, DENNY ANTHONY", "Address": "PO Box 306407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.137920888, "SHAPE_Area": 2875.3856636599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357900.284999996423721, 259044.212799999862909 ], [ 357896.86879999935627, 259051.083700001239777 ], [ 357894.752099998295307, 259055.846200000494719 ], [ 357888.93129999935627, 259060.079500000923872 ], [ 357881.258299998939037, 259063.254599999636412 ], [ 357873.845200002193451, 259063.666700001806021 ], [ 357876.664599999785423, 259071.883799999952316 ], [ 357901.954099997878075, 259132.252500001341105 ], [ 357905.9983000010252, 259130.807900000363588 ], [ 357940.788400001823902, 259117.160500001162291 ], [ 357929.694200001657009, 259094.271600000560284 ], [ 357924.141800001263618, 259083.460299998521805 ], [ 357921.758799999952316, 259079.219000000506639 ], [ 357919.125900000333786, 259074.927000001072884 ], [ 357900.284999996423721, 259044.212799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602024400", "MAP": "D9-5297-T92", "PARCEL_NAM": "25-2", "ACRE": ".50", "LONGITUDE": -64.96669763, "LATITUDE": 18.36142675, "OBJECTID_1": 2442, "PARCEL_NO_": "102602024400", "Tax_Legal_": "25-2 ESTATE NELTJEBERG No.6 LITTLE NORTHSIDE QTR.", "Name": "BLYDEN, KAREN L", "Address": "P O BOX 2801", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59300, "Improved_V": 124400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.385514194, "SHAPE_Area": 1987.0851389500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355009.489399999380112, 259039.973600000143051 ], [ 355009.424699999392033, 259047.572399999946356 ], [ 354993.903300002217293, 259071.087900001555681 ], [ 354980.10249999910593, 259081.951799999922514 ], [ 354950.085600003600121, 259103.237700000405312 ], [ 354979.078599996864796, 259107.485700000077486 ], [ 354984.791199997067451, 259099.510899998247623 ], [ 354988.856899999082088, 259095.533399999141693 ], [ 355024.563000001013279, 259069.016800001263618 ], [ 355032.699799999594688, 259060.428599998354912 ], [ 355036.799699999392033, 259052.440600000321865 ], [ 355037.672600001096725, 259044.637200001627207 ], [ 355035.295000001788139, 259039.762600000947714 ], [ 355029.68860000371933, 259035.2837999984622 ], [ 355022.440800003707409, 259034.168999999761581 ], [ 355015.975900001823902, 259035.804800000041723 ], [ 355009.489399999380112, 259039.973600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602024900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96867044, "LATITUDE": 18.36155842, "OBJECTID_1": 2447, "PARCEL_NO_": "102602024900", "Tax_Legal_": "NELTJEBERG 12E LITTLE NORTHSIDE", "Name": "PETERSEN, MARILYN M", "Address": "P.O.BOX 5113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.16160512900001, "SHAPE_Area": 1279.0109409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354809.070500001311302, 259070.296500001102686 ], [ 354804.53320000320673, 259056.239100001752377 ], [ 354770.428900003433228, 259084.035399999469519 ], [ 354772.398900002241135, 259091.740299999713898 ], [ 354775.891500003635883, 259105.400600001215935 ], [ 354791.24379999935627, 259101.726500000804663 ], [ 354809.049199998378754, 259094.061799999326468 ], [ 354814.904600001871586, 259091.541200000792742 ], [ 354816.492700003087521, 259090.910500001162291 ], [ 354815.498528524884023, 259085.482027288759127 ], [ 354813.916296407871414, 259080.194945442868629 ], [ 354811.765007392794359, 259075.112756102520507 ], [ 354809.070500001311302, 259070.296500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94404264000001, "LATITUDE": 18.36111837, "OBJECTID_1": 3791, "PARCEL_NO_": "102801021800", "Tax_Legal_": "4 ST PETER No.2 LITTLE NORTHSIDE QTR", "Name": "ELLEN E. BERRY GILLOTT REV. FAM. TRST", "Address": "7410 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 173900, "Improved_V": 209400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.36149540500003, "SHAPE_Area": 4304.54001298 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357362.818099997937679, 258999.495000001043081 ], [ 357390.298199996352196, 259086.690499998629093 ], [ 357402.873700000345707, 259125.001299999654293 ], [ 357436.022399999201298, 259114.7179000005126 ], [ 357425.76690000295639, 259088.036200001835823 ], [ 357422.604599997401237, 259080.622099999338388 ], [ 357382.349399998784065, 258978.545499999076128 ], [ 357370.222300000488758, 258982.245900001376867 ], [ 357366.950300000607967, 258987.707600001245737 ], [ 357362.818099997937679, 258999.495000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96828608, "LATITUDE": 18.36152576, "OBJECTID_1": 2448, "PARCEL_NO_": "102602025000", "Tax_Legal_": "NELTJEBERG 12F LITTLE NORTHSIDE", "Name": "CAROL LOTZ FELIX TRUST", "Address": "7964 Est. Dorothea #6", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023576, "Country": "United States", "Land_Value": 35000, "Improved_V": 350000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.85595915899999, "SHAPE_Area": 719.40631081699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354848.545999996364117, 259090.164299998432398 ], [ 354847.213799998164177, 259062.92119999974966 ], [ 354833.883799999952316, 259069.369300000369549 ], [ 354817.803700000047684, 259069.970199998468161 ], [ 354819.895900003612041, 259079.360800001770258 ], [ 354821.024999998509884, 259088.352299999445677 ], [ 354821.676452865358442, 259090.02842697055894 ], [ 354822.582351829914842, 259091.581855284690391 ], [ 354823.720342729182448, 259092.974252201616764 ], [ 354825.062344248348381, 259094.171258627495263 ], [ 354826.575240861566272, 259095.143336967361392 ], [ 354828.221699997782707, 259095.866500001400709 ], [ 354832.158350564190187, 259095.420207227725768 ], [ 354836.01994644763181, 259094.534502900904045 ], [ 354839.757600001990795, 259093.220600001513958 ], [ 354848.545999996364117, 259090.164299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020300", "MAP": "A9-820-T016", "PARCEL_NAM": "1 REM", "ACRE": "11.39", "LONGITUDE": -64.93341319, "LATITUDE": 18.36000328, "OBJECTID_1": 4088, "PARCEL_NO_": "102802020300", "Tax_Legal_": "1 REM MISGUNST No.6 GREAT NORTHSIDE QTR", "Name": "BIMA CORPORATION", "Address": "18235 Blue Ridge Tpke", "City": "Gordonsville", "State": "Virginia", "Zip": 22942, "Country": "United States", "Land_Value": 384200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 926.26920179900003, "SHAPE_Area": 47832.097566999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358662.967799998819828, 258966.228700000792742 ], [ 358597.424900002777576, 258803.572399999946356 ], [ 358444.611000001430511, 258851.717500001192093 ], [ 358395.29110000282526, 258867.145899999886751 ], [ 358386.396499998867512, 258870.028400000184774 ], [ 358395.840300001204014, 258897.336800001561642 ], [ 358398.181599996984005, 258904.107099998742342 ], [ 358398.244800001382828, 258904.071199998259544 ], [ 358478.535899996757507, 259128.949999999254942 ], [ 358494.764600001275539, 259117.050400000065565 ], [ 358503.715000003576279, 259107.624499998986721 ], [ 358513.593900002539158, 259083.851799998432398 ], [ 358534.79900000244379, 259055.738800000399351 ], [ 358546.22580000013113, 259039.578099999576807 ], [ 358550.318599998950958, 259032.434399999678135 ], [ 358559.222199998795986, 259028.496500000357628 ], [ 358580.290600001811981, 259016.425500001758337 ], [ 358605.437299996614456, 258998.899500001221895 ], [ 358624.128100000321865, 258981.953899998217821 ], [ 358643.562399998307228, 258972.40260000154376 ], [ 358660.523699998855591, 258969.164000000804663 ], [ 358662.967799998819828, 258966.228700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103034200", "MAP": "A9-394-T91", "PARCEL_NAM": "34", "ACRE": ".8", "LONGITUDE": -64.96599517, "LATITUDE": 18.36126219, "OBJECTID_1": 478, "PARCEL_NO_": "101103034200", "Tax_Legal_": "NELTJEBERG 34/EASTERN PT LT. NORTHSIDE", "Name": "BAPTISTE, ANGELA P. JEAN", "Address": "PO Box 302483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.24097629099998, "SHAPE_Area": 3126.02995151 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355043.991800002753735, 259060.098799999803305 ], [ 355119.452500000596046, 259099.768699999898672 ], [ 355115.518100000917912, 259088.337400000542402 ], [ 355113.135099999606609, 259084.096099998801947 ], [ 355110.73589999973774, 259081.754399999976158 ], [ 355105.23200000077486, 259065.244100000709295 ], [ 355098.975699998438358, 259042.394799999892712 ], [ 355074.138300001621246, 259023.615200001746416 ], [ 355060.560400001704693, 259008.305399999022484 ], [ 355045.870600000023842, 259028.872299998998642 ], [ 355040.197599999606609, 259032.203400000929832 ], [ 355044.985100001096725, 259038.153200000524521 ], [ 355046.560000002384186, 259042.598999999463558 ], [ 355045.651199996471405, 259054.6239 ], [ 355043.991800002753735, 259060.098799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94343063, "LATITUDE": 18.36130865, "OBJECTID_1": 3737, "PARCEL_NO_": "102801015800", "Tax_Legal_": "ST PETER 7-2B LITTLE NORTHSIDE", "Name": "BERRY, MICHAEL", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102300, "Improved_V": 224800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.88595607, "SHAPE_Area": 2027.2524961700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357492.283699996769428, 259041.7179000005126 ], [ 357455.794699996709824, 259065.483899999409914 ], [ 357425.76690000295639, 259088.036200001835823 ], [ 357436.022399999201298, 259114.7179000005126 ], [ 357436.8125, 259116.624299999326468 ], [ 357491.268799997866154, 259066.196400001645088 ], [ 357501.835400000214577, 259056.3614999987185 ], [ 357492.283699996769428, 259041.7179000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012500", "MAP": "D9-5721-T94", "PARCEL_NAM": "6 REM", "ACRE": ".561", "LONGITUDE": -64.94484762, "LATITUDE": 18.36143392, "OBJECTID_1": 3707, "PARCEL_NO_": "102801012500", "Tax_Legal_": "6G-4 ESTATE ST.PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "THELMA LOUISE GREAUX REVOC FAMILY TRUST", "Address": "7434 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023436, "Country": "United States", "Land_Value": 83700, "Improved_V": 99000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.424423813, "SHAPE_Area": 2004.6156336399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357280.618100002408028, 259088.325899999588728 ], [ 357279.6841000020504, 259103.305900000035763 ], [ 357282.050899997353554, 259109.447000000625849 ], [ 357290.070900000631809, 259114.578899998217821 ], [ 357302.975500002503395, 259114.262299999594688 ], [ 357322.377300001680851, 259108.510499998927116 ], [ 357328.079000003635883, 259101.802099999040365 ], [ 357334.626599997282028, 259090.456700000911951 ], [ 357340.421899996697903, 259072.772300001233816 ], [ 357342.970299996435642, 259057.594399999827147 ], [ 357338.132399998605251, 259057.554800000041723 ], [ 357314.618100002408028, 259072.772199999541044 ], [ 357290.326200000941753, 259084.605700001120567 ], [ 357280.618100002408028, 259088.325899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90818087, "LATITUDE": 18.36134731, "OBJECTID_1": 5240, "PARCEL_NO_": "103001032100", "Tax_Legal_": "LOVENLUND C-2-P&C-5-A-2 136 GRT NORTHSIDE QRT", "Name": "CASNER III, A. JAMES & ELIZABETH S.", "Address": "6679 Estate Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.8420691, "SHAPE_Area": 2099.9322411500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361212.838600002229214, 259139.929900001734495 ], [ 361190.837200000882149, 259072.19990000128746 ], [ 361159.130300000309944, 259102.548900000751019 ], [ 361169.427199997007847, 259124.375799998641014 ], [ 361189.403399996459484, 259145.8597999997437 ], [ 361197.493500001728535, 259142.75959999859333 ], [ 361212.838600002229214, 259139.929900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95895968000001, "LATITUDE": 18.36142265, "OBJECTID_1": 2865, "PARCEL_NO_": "102701023500", "Tax_Legal_": "BONNE RESOLUTION 14-32 LT. NORTHSIDE", "Name": "FLEMING, EDRIS", "Address": "PO BOX 4465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.530529925, "SHAPE_Area": 1283.19046845 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355839.039300002157688, 259063.861699998378754 ], [ 355827.020099997520447, 259054.897399999201298 ], [ 355792.179700002074242, 259074.454999998211861 ], [ 355788.911300003528595, 259079.494500000029802 ], [ 355835.506599999964237, 259099.929699998348951 ], [ 355841.375500001013279, 259073.591099999845028 ], [ 355834.955600000917912, 259069.94990000128746 ], [ 355839.039300002157688, 259063.861699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011700", "MAP": "D9-1041-T72", "PARCEL_NAM": "2D-4", "ACRE": null, "LONGITUDE": -64.93874939, "LATITUDE": 18.36142401, "OBJECTID_1": 4037, "PARCEL_NO_": "102802011700", "Tax_Legal_": "LERKENLUND 2D-4 GR NORTHSIDE", "Name": "BRYAN, DENNY ANTHONY", "Address": "23C-2 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.20625316499999, "SHAPE_Area": 1664.76542668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357923.593599997460842, 259075.75899999961257 ], [ 357919.125900000333786, 259074.927000001072884 ], [ 357921.758799999952316, 259079.219000000506639 ], [ 357924.141800001263618, 259083.460299998521805 ], [ 357929.694200001657009, 259094.271600000560284 ], [ 357940.788400001823902, 259117.160500001162291 ], [ 357964.250600002706051, 259108.064399998635054 ], [ 358007.130800001323223, 259091.316799998283386 ], [ 357966.568300001323223, 259083.762600000947714 ], [ 357923.593599997460842, 259075.75899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9679284, "LATITUDE": 18.36126485, "OBJECTID_1": 2450, "PARCEL_NO_": "102602025200", "Tax_Legal_": "NELTJEBERG 12A LITTLE NORTHSIDE QTR", "Name": "MOOLENAAR, O'NEAL & ALICIA, TR", "Address": "PO BOX 5087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45200, "Improved_V": 201600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.59002703300001, "SHAPE_Area": 2821.0957007799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354901.5675999969244, 259024.524900000542402 ], [ 354868.534000001847744, 259021.299199998378754 ], [ 354858.04110000282526, 259022.479899998754263 ], [ 354849.14469999819994, 259025.573499999940395 ], [ 354853.765000000596046, 259051.153599999845028 ], [ 354847.278599999845028, 259055.322399999946356 ], [ 354847.213799998164177, 259062.92119999974966 ], [ 354848.545999996364117, 259090.164299998432398 ], [ 354865.917032497527543, 259083.924886807304574 ], [ 354883.202200002968311, 259077.451400000602007 ], [ 354886.394498950219713, 259075.807900272076949 ], [ 354889.285282554163132, 259073.678291368647479 ], [ 354891.801178662513848, 259071.116625758470036 ], [ 354893.878330294741318, 259068.187922116398113 ], [ 354895.464016421989072, 259064.966515058564255 ], [ 354896.517990100837778, 259061.534168425365351 ], [ 354897.01349999755621, 259057.978000000119209 ], [ 354899.527408714347985, 259041.283694494370138 ], [ 354901.5675999969244, 259024.524900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702045700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95730405, "LATITUDE": 18.36135058, "OBJECTID_1": 3148, "PARCEL_NO_": "102702045700", "Tax_Legal_": "BONNE RESOLUTION 13-5 LT NORTHSIDE", "Name": "SMITH, ROSE MARIE A", "Address": "7363 Estate Tutu 148-283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.00973801399999, "SHAPE_Area": 1546.67399176 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356014.971900001168251, 259046.9364 ], [ 355992.432899996638298, 259042.318999998271465 ], [ 355978.549300000071526, 259062.892499998211861 ], [ 355976.690399996936321, 259091.797100000083447 ], [ 355994.366300001740456, 259099.330099999904633 ], [ 355995.973499998450279, 259099.976500000804663 ], [ 356015.548000000417233, 259073.961100000888109 ], [ 356012.335299998521805, 259072.45719999819994 ], [ 356009.938000001013279, 259069.904399998486042 ], [ 356009.984700001776218, 259064.416400000452995 ], [ 356014.971900001168251, 259046.9364 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94341906, "LATITUDE": 18.36488928, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.744690104900002, "SHAPE_Area": 114.294559574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357452.42849999666214, 259460.623500000685453 ], [ 357460.349500000476837, 259477.364700000733137 ], [ 357456.249700002372265, 259485.352699998766184 ], [ 357457.829899996519089, 259489.165300000458956 ], [ 357465.196400001645088, 259476.348900001496077 ], [ 357457.253799997270107, 259462.140599999576807 ], [ 357452.42849999666214, 259460.623500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96143074, "LATITUDE": 18.36462987, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.36392323300001, "SHAPE_Area": 833.16499457500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355596.627999998629093, 259406.593400001525879 ], [ 355587.803599998354912, 259401.24379999935627 ], [ 355548.861400000751019, 259429.000599998980761 ], [ 355533.447999998927116, 259439.851300001144409 ], [ 355520.451700001955032, 259450.932900000363588 ], [ 355520.34740000218153, 259463.175400000065565 ], [ 355535.782399997115135, 259449.791799999773502 ], [ 355564.989500001072884, 259428.921500001102686 ], [ 355596.627999998629093, 259406.593400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95818934, "LATITUDE": 18.36464107, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.274891131, "SHAPE_Area": 892.39742966200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355909.39639999717474, 259418.652499999850988 ], [ 355907.034999996423721, 259411.878199998289347 ], [ 355880.320600003004074, 259424.114000000059605 ], [ 355884.303599998354912, 259429.846200000494719 ], [ 355887.467699997127056, 259437.049199998378754 ], [ 355892.9391999989748, 259457.359000001102686 ], [ 355894.492499999701977, 259464.337799999862909 ], [ 355911.658900000154972, 259437.036100000143051 ], [ 355914.929099999368191, 259431.785599999129772 ], [ 355909.39639999717474, 259418.652499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94422785, "LATITUDE": 18.36452737, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.12890215100001, "SHAPE_Area": 606.61879890399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357399.339500002563, 259445.201299998909235 ], [ 357363.086000002920628, 259441.315999999642372 ], [ 357361.494999997317791, 259438.769900001585484 ], [ 357361.545299999415874, 259432.859700001776218 ], [ 357362.36599999666214, 259431.177600000053644 ], [ 357379.395700000226498, 259419.918000001460314 ], [ 357391.591099999845028, 259408.19649999961257 ], [ 357390.847699999809265, 259400.802200000733137 ], [ 357377.027099996805191, 259413.988000001758337 ], [ 357365.668600000441074, 259422.127599999308586 ], [ 357355.123599998652935, 259429.42960000038147 ], [ 357353.483999997377396, 259432.582600001245737 ], [ 357353.417499996721745, 259440.392499998211861 ], [ 357355.012100003659725, 259442.516499999910593 ], [ 357363.026699997484684, 259448.281599998474121 ], [ 357383.978200003504753, 259449.930700000375509 ], [ 357396.065700002014637, 259450.874099999666214 ], [ 357400.899999998509884, 259451.335799999535084 ], [ 357399.339500002563, 259445.201299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94355127, "LATITUDE": 18.36410996, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 499.56131373199997, "SHAPE_Area": 1499.69849226 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357452.484200000762939, 259454.079999998211861 ], [ 357409.011699996888638, 259445.7027000002563 ], [ 357437.430399999022484, 259422.714999999850988 ], [ 357440.69879999756813, 259417.675500001758337 ], [ 357445.581699997186661, 259412.438099998980761 ], [ 357455.392300002276897, 259396.6864 ], [ 357457.017499998211861, 259395.221999999135733 ], [ 357460.305699996650219, 259387.860700000077486 ], [ 357462.924199998378754, 259364.450699999928474 ], [ 357460.64190000295639, 259348.388900000602007 ], [ 357461.548900000751019, 259336.575100000947714 ], [ 357466.467699997127056, 259327.116200000047684 ], [ 357472.97580000013113, 259320.41440000012517 ], [ 357475.432499997317791, 259316.001600001007318 ], [ 357477.075699999928474, 259312.426399998366833 ], [ 357479.580899998545647, 259302.314399998635054 ], [ 357478.040200002491474, 259293.8581000007689 ], [ 357474.0878000035882, 259284.537599999457598 ], [ 357470.063400000333786, 259283.660300001502037 ], [ 357466.857900001108646, 259281.311999998986721 ], [ 357469.23369999974966, 259286.397700000554323 ], [ 357469.989699997007847, 259292.314500000327826 ], [ 357471.584299996495247, 259294.438499998301268 ], [ 357473.155599996447563, 259299.306499999016523 ], [ 357472.284500002861023, 259306.898800000548363 ], [ 357469.799099996685982, 259314.688900001347065 ], [ 357464.10809999704361, 259320.130800001323223 ], [ 357460.027999997138977, 259325.796900000423193 ], [ 357456.747000001370907, 259332.313900001347065 ], [ 357454.261600002646446, 259340.104100000113249 ], [ 357454.952799998223782, 259353.619699999690056 ], [ 357456.479099996387959, 259363.764699999243021 ], [ 357453.858800001442432, 259387.38569999858737 ], [ 357450.593999996781349, 259392.002999998629093 ], [ 357446.48870000243187, 259400.624299999326468 ], [ 357440.774300001561642, 259408.810199998319149 ], [ 357436.701399996876717, 259413.631999999284744 ], [ 357430.184399999678135, 259421.38910000026226 ], [ 357399.339500002563, 259445.201299998909235 ], [ 357400.899999998509884, 259451.335799999535084 ], [ 357428.282300002872944, 259455.359600000083447 ], [ 357452.42849999666214, 259460.623500000685453 ], [ 357452.484200000762939, 259454.079999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95766436, "LATITUDE": 18.36471615, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.1904914785, "SHAPE_Area": 80.508233545799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355968.059399999678135, 259442.352899998426437 ], [ 355937.441100001335144, 259439.569200001657009 ], [ 355950.298900000751019, 259444.740699999034405 ], [ 355964.004399999976158, 259445.063900001347065 ], [ 355968.059399999678135, 259442.352899998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96103393, "LATITUDE": 18.364363, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.7171572496, "SHAPE_Area": 109.357308331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355611.231600001454353, 259396.158300001174212 ], [ 355592.668399997055531, 259398.117300000041723 ], [ 355587.803599998354912, 259401.24379999935627 ], [ 355596.627999998629093, 259406.593400001525879 ], [ 355611.231600001454353, 259396.158300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-1571-T80", "PARCEL_NAM": "1-4-A-2", "ACRE": ".5", "LONGITUDE": -64.94096894, "LATITUDE": 18.36398549, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.53045436799999, "SHAPE_Area": 2139.1663020599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357746.579000003635883, 259386.403999999165535 ], [ 357728.361000001430511, 259347.835900001227856 ], [ 357727.606899999082088, 259341.708000000566244 ], [ 357713.035700000822544, 259348.343699999153614 ], [ 357691.209499999880791, 259354.708999998867512 ], [ 357691.969099998474121, 259360.203600000590086 ], [ 357706.27589999884367, 259384.596500001847744 ], [ 357713.198299996554852, 259423.916499998420477 ], [ 357719.765699997544289, 259410.249200001358986 ], [ 357723.840400002896786, 259405.216299999505281 ], [ 357728.721400000154972, 259400.190000001341105 ], [ 357746.579000003635883, 259386.403999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9529006, "LATITUDE": 18.36427524, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.75105447000001, "SHAPE_Area": 459.25921833000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356492.974200002849102, 259390.432399999350309 ], [ 356491.963899999856949, 259384.217700000852346 ], [ 356420.742299996316433, 259405.950100000947714 ], [ 356427.151500001549721, 259410.857700001448393 ], [ 356492.974200002849102, 259390.432399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96076074, "LATITUDE": 18.36410317, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.186820221, "SHAPE_Area": 668.51233674699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355651.152699999511242, 259348.144600000232458 ], [ 355645.587600000202656, 259338.810899998992682 ], [ 355639.607600003480911, 259349.790300000458956 ], [ 355626.075900003314018, 259369.892099998891354 ], [ 355625.152900002896786, 259371.152100000530481 ], [ 355608.89360000193119, 259386.639899998903275 ], [ 355592.668399997055531, 259398.117300000041723 ], [ 355611.231600001454353, 259396.158300001174212 ], [ 355622.59910000115633, 259386.963199999183416 ], [ 355633.991700001060963, 259374.813000001013279 ], [ 355639.700699999928474, 259367.260400000959635 ], [ 355641.550200000405312, 259364.173099998384714 ], [ 355651.152699999511242, 259348.144600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95844782, "LATITUDE": 18.36414199, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.535536638, "SHAPE_Area": 1024.6474392 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355880.042900003492832, 259362.050299998372793 ], [ 355877.658100001513958, 259358.019999999552965 ], [ 355850.157200001180172, 259367.927400000393391 ], [ 355866.011900000274181, 259399.932300001382828 ], [ 355893.536200001835823, 259387.280799999833107 ], [ 355880.042900003492832, 259362.050299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94971189, "LATITUDE": 18.36424648, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.30178487800001, "SHAPE_Area": 1180.8203721299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356821.585699997842312, 259396.776299998164177 ], [ 356830.168300002813339, 259385.73589999973774 ], [ 356778.110299997031689, 259386.336100000888109 ], [ 356774.339400000870228, 259386.379599999636412 ], [ 356770.793399997055531, 259395.727299999445677 ], [ 356765.647799998521805, 259411.109499998390675 ], [ 356767.236299999058247, 259411.044300001114607 ], [ 356804.543499998748302, 259409.5135000012815 ], [ 356814.273199997842312, 259403.260400000959635 ], [ 356821.585699997842312, 259396.776299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94044934, "LATITUDE": 18.36401321, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.67649525499999, "SHAPE_Area": 461.26431785400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357748.099899999797344, 259397.182199999690056 ], [ 357779.628799997270107, 259387.730000000447035 ], [ 357794.439099997282028, 259353.020700000226498 ], [ 357785.490500003099442, 259362.235599998384714 ], [ 357748.099899999797344, 259397.182199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95883146, "LATITUDE": 18.36404999, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.762252247800006, "SHAPE_Area": 284.34519484499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355834.920000001788139, 259358.092399999499321 ], [ 355833.809199996292591, 259355.855200000107288 ], [ 355819.991099998354912, 259363.90819999948144 ], [ 355821.144299998879433, 259366.001200001686811 ], [ 355829.895099997520447, 259380.004999998956919 ], [ 355842.054499998688698, 259372.505100000649691 ], [ 355834.920000001788139, 259358.092399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-302-T83", "PARCEL_NAM": "C-63", "ACRE": "1.16", "LONGITUDE": -64.90823387, "LATITUDE": 18.36387119, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.690873243, "SHAPE_Area": 1413.73560073 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361208.75450000166893, 259388.035999998450279 ], [ 361179.766400001943111, 259381.103999998420477 ], [ 361166.016800001263618, 259366.545099999755621 ], [ 361146.172100000083447, 259393.118700001388788 ], [ 361187.159199997782707, 259409.286200001835823 ], [ 361200.456600002944469, 259413.4222999997437 ], [ 361208.75450000166893, 259388.035999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-302-T83", "PARCEL_NAM": "C-63A", "ACRE": "0.66", "LONGITUDE": -64.90745317, "LATITUDE": 18.36396522, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.71783954300003, "SHAPE_Area": 3068.28700359 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361342.81530000269413, 259406.127199999988079 ], [ 361332.514499999582767, 259398.364599999040365 ], [ 361316.609200000762939, 259393.327799998223782 ], [ 361292.955399997532368, 259392.057799998670816 ], [ 361282.954099997878075, 259389.359000001102686 ], [ 361275.651600003242493, 259385.866500001400709 ], [ 361272.356200002133846, 259383.4864999987185 ], [ 361267.079099997878075, 259379.675299998372793 ], [ 361261.522799998521805, 259373.801500000059605 ], [ 361257.368900001049042, 259386.640999998897314 ], [ 361253.267800003290176, 259401.106600001454353 ], [ 361237.214299999177456, 259394.870400000363588 ], [ 361216.278999999165535, 259389.835299998521805 ], [ 361208.75450000166893, 259388.035999998450279 ], [ 361200.456600002944469, 259413.4222999997437 ], [ 361228.979599997401237, 259422.294100001454353 ], [ 361240.293099999427795, 259419.43129999935627 ], [ 361249.979699999094009, 259418.244100000709295 ], [ 361268.530199997127056, 259417.762600000947714 ], [ 361278.218599997460842, 259416.36430000141263 ], [ 361314.590800002217293, 259406.318399999290705 ], [ 361342.81530000269413, 259406.127199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94255451, "LATITUDE": 18.36365623, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.652988376, "SHAPE_Area": 619.80955150299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357581.187100000679493, 259301.87950000166893 ], [ 357577.193300001323223, 259297.413800001144409 ], [ 357566.642899997532368, 259305.348999999463558 ], [ 357560.086300000548363, 259317.749899998307228 ], [ 357556.8125, 259323.422600001096725 ], [ 357553.538699999451637, 259329.095300000160933 ], [ 357550.277500003576279, 259333.290500000119209 ], [ 357544.538000002503395, 259344.431499999016523 ], [ 357524.911399997770786, 259376.568199999630451 ], [ 357528.082699999213219, 259382.927000001072884 ], [ 357530.524999998509884, 259380.2027000002563 ], [ 357550.166000001132488, 259346.377399999648333 ], [ 357552.608300000429153, 259343.653200000524521 ], [ 357555.896499998867512, 259336.291799999773502 ], [ 357560.790100000798702, 259329.787999998778105 ], [ 357561.619800001382828, 259327.050599999725819 ], [ 357567.335900001227856, 259318.653599999845028 ], [ 357568.984499998390675, 259314.445199999958277 ], [ 357574.686200000345707, 259307.736900001764297 ], [ 357581.187100000679493, 259301.87950000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-302-T83", "PARCEL_NAM": "C-56", "ACRE": null, "LONGITUDE": -64.90698751, "LATITUDE": 18.36361672, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.13071650199998, "SHAPE_Area": 3437.9023223999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361330.469899997115135, 259340.798200000077486 ], [ 361286.770900003612041, 259315.002999998629093 ], [ 361288.226700000464916, 259343.002099998295307 ], [ 361286.394599996507168, 259353.157999999821186 ], [ 361284.128700003027916, 259365.718100000172853 ], [ 361278.357299998402596, 259387.160500001162291 ], [ 361282.954099997878075, 259389.359000001102686 ], [ 361292.955399997532368, 259392.057799998670816 ], [ 361316.609200000762939, 259393.327799998223782 ], [ 361332.514499999582767, 259398.364599999040365 ], [ 361342.81530000269413, 259406.127199999988079 ], [ 361357.330700002610683, 259406.03489999845624 ], [ 361335.765299998223782, 259381.793699998408556 ], [ 361335.018299996852875, 259374.82149999961257 ], [ 361332.759400002658367, 259356.015700001269579 ], [ 361331.976499997079372, 259353.265099998563528 ], [ 361331.234899997711182, 259345.659600000828505 ], [ 361330.469899997115135, 259340.798200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-1522-T79", "PARCEL_NAM": "C-55-B", "ACRE": "2.967", "LONGITUDE": -64.90669507, "LATITUDE": 18.36304431, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 653.48866840599999, "SHAPE_Area": 13631.06576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361380.058499999344349, 259388.489000000059605 ], [ 361438.219099998474121, 259376.510499998927116 ], [ 361367.223999999463558, 259380.573499999940395 ], [ 361364.237999998033047, 259352.473700001835823 ], [ 361363.496399998664856, 259344.868200000375509 ], [ 361381.256800003349781, 259342.480500001460314 ], [ 361396.596500001847744, 259340.284000001847744 ], [ 361397.451399996876717, 259334.591400001198053 ], [ 361399.116200000047684, 259328.483399998396635 ], [ 361409.19650000333786, 259281.06980000063777 ], [ 361377.913999997079372, 259261.604299999773502 ], [ 361374.717500001192093, 259258.200599998235703 ], [ 361373.117499999701977, 259256.709899999201298 ], [ 361369.917400002479553, 259253.728399999439716 ], [ 361353.918799996376038, 259238.6097999997437 ], [ 361349.924999997019768, 259234.144099999219179 ], [ 361334.59179999679327, 259219.17850000038743 ], [ 361314.953199997544289, 259230.928199999034405 ], [ 361303.750299997627735, 259237.630800001323223 ], [ 361278.350199997425079, 259260.649599999189377 ], [ 361266.28320000320673, 259302.909299999475479 ], [ 361330.469899997115135, 259340.798200000077486 ], [ 361331.234899997711182, 259345.659600000828505 ], [ 361331.976499997079372, 259353.265099998563528 ], [ 361332.759400002658367, 259356.015700001269579 ], [ 361335.988200001418591, 259355.619899999350309 ], [ 361337.465999998152256, 259371.464000001549721 ], [ 361335.018299996852875, 259374.82149999961257 ], [ 361335.765299998223782, 259381.793699998408556 ], [ 361357.330700002610683, 259406.03489999845624 ], [ 361380.058499999344349, 259388.489000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "F9-3698-T79", "PARCEL_NAM": "C3-B", "ACRE": "1.03", "LONGITUDE": -64.90522645, "LATITUDE": 18.36371725, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.93703116399999, "SHAPE_Area": 2577.1977096700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361539.040500000119209, 259373.535999998450279 ], [ 361515.903800003230572, 259344.42680000141263 ], [ 361506.16330000013113, 259351.94649999961257 ], [ 361488.325599998235703, 259363.410599999129772 ], [ 361448.640000000596046, 259383.772999998182058 ], [ 361482.310900002717972, 259406.846700001507998 ], [ 361513.096500001847744, 259390.000100001692772 ], [ 361539.040500000119209, 259373.535999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96229829000001, "LATITUDE": 18.36297864, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 755.56041833799998, "SHAPE_Area": 3429.5097109600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355516.099600002169609, 259204.551100000739098 ], [ 355514.566100001335144, 259195.250399999320507 ], [ 355485.420199997723103, 259208.943999998271465 ], [ 355478.132799997925758, 259212.473000001162291 ], [ 355466.630500003695488, 259237.499000001698732 ], [ 355463.29730000346899, 259250.137299999594688 ], [ 355460.131399996578693, 259243.145300000905991 ], [ 355449.798600003123283, 259225.53999999910593 ], [ 355448.198600001633167, 259224.049199998378754 ], [ 355445.029100000858307, 259217.479400001466274 ], [ 355444.238899998366833, 259215.573100000619888 ], [ 355441.060400001704693, 259210.058600001037121 ], [ 355438.664899997413158, 259207.294799998402596 ], [ 355433.916900001466274, 259196.701299998909235 ], [ 355431.533900000154972, 259192.459899999201298 ], [ 355427.55629999935627, 259186.094500001519918 ], [ 355425.97070000320673, 259182.915100000798702 ], [ 355425.194899998605251, 259179.320199999958277 ], [ 355418.836099997162819, 259168.502399999648333 ], [ 355415.682800002396107, 259160.032800000160933 ], [ 355414.098999999463558, 259156.642400000244379 ], [ 355414.169100001454353, 259148.410300001502037 ], [ 355413.377199999988079, 259146.71510000154376 ], [ 355409.374399997293949, 259143.304800000041723 ], [ 355404.543700002133846, 259142.420899998396635 ], [ 355401.304099999368191, 259144.083099998533726 ], [ 355397.25450000166893, 259146.160900000482798 ], [ 355395.613099999725819, 259149.524999998509884 ], [ 355397.162799999117851, 259156.925999999046326 ], [ 355400.359300002455711, 259160.329599998891354 ], [ 355405.996299996972084, 259161.220100000500679 ], [ 355419.45719999819994, 259190.250100001692772 ], [ 355434.536200001835823, 259218.660100001841784 ], [ 355436.920999996364117, 259222.690400000661612 ], [ 355452.026900000870228, 259247.934099998325109 ], [ 355457.572200000286102, 259259.589699998497963 ], [ 355461.479699999094009, 259274.187100000679493 ], [ 355464.62219999730587, 259283.923099998384714 ], [ 355470.230499997735023, 259288.190900001674891 ], [ 355475.057599999010563, 259289.497000001370907 ], [ 355479.818099997937679, 259298.612900000065565 ], [ 355493.314999997615814, 259323.421399999409914 ], [ 355494.900700002908707, 259326.600699998438358 ], [ 355494.008100003004074, 259336.725900001823902 ], [ 355491.563900001347065, 259339.661200001835823 ], [ 355493.932499997317791, 259345.5912000015378 ], [ 355497.964100003242493, 259345.624200001358986 ], [ 355504.39299999922514, 259348.21000000089407 ], [ 355509.187700003385544, 259353.315499998629093 ], [ 355510.762599997222424, 259357.761300001293421 ], [ 355520.459899999201298, 259355.307599999010563 ], [ 355517.281400002539158, 259349.793099999427795 ], [ 355495.852600000798702, 259309.509899999946356 ], [ 355483.948600001633167, 259287.03660000115633 ], [ 355507.41610000282526, 259277.307300001382828 ], [ 355518.731499999761581, 259274.233500000089407 ], [ 355515.553000003099442, 259268.719000000506639 ], [ 355479.958400003612041, 259282.148800000548363 ], [ 355471.922200001776218, 259278.916600000113249 ], [ 355468.819200001657009, 259264.536899998784065 ], [ 355475.4746999964118, 259240.526700001209974 ], [ 355484.525799997150898, 259219.280299998819828 ], [ 355488.573499999940395, 259217.413600001484156 ], [ 355516.099600002169609, 259204.551100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103002019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90117485, "LATITUDE": 18.36303711, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1238.1149760200001, "SHAPE_Area": 4661.2109677099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361946.295900002121925, 259274.277800001204014 ], [ 361927.664399996399879, 259284.257800001651049 ], [ 361908.248199999332428, 259291.69819999858737 ], [ 361883.977899998426437, 259300.998799998313189 ], [ 361869.437299996614456, 259304.04619999974966 ], [ 361861.358000002801418, 259305.879900000989437 ], [ 361832.328900001943111, 259305.853399999439716 ], [ 361800.846799999475479, 259309.817600000649691 ], [ 361801.590199999511242, 259317.212000001221895 ], [ 361829.848899997770786, 259313.010299999266863 ], [ 361845.168799996376038, 259313.13569999858737 ], [ 361864.522100001573563, 259313.083000000566244 ], [ 361880.678900003433228, 259309.626600001007318 ], [ 361891.195200003683567, 259305.701900001615286 ], [ 361926.788000002503395, 259292.483199998736382 ], [ 361965.656400002539158, 259273.380699999630451 ], [ 362003.738300003111362, 259251.949799999594688 ], [ 362048.276100002229214, 259229.938400000333786 ], [ 362037.695100001990795, 259241.461899999529123 ], [ 362012.494499996304512, 259265.320300001651049 ], [ 362005.156700000166893, 259274.759500000625849 ], [ 361996.226199999451637, 259281.863600000739098 ], [ 361981.592100001871586, 259295.887099999934435 ], [ 361971.025499999523163, 259305.721999999135733 ], [ 361963.696699999272823, 259314.105799999088049 ], [ 361955.581500001251698, 259320.161100000143051 ], [ 361944.203199997544289, 259330.622600000351667 ], [ 361936.906800001859665, 259335.206900000572205 ], [ 361907.796800002455711, 259344.679000001400709 ], [ 361879.518399998545647, 259351.202500000596046 ], [ 361856.907499998807907, 259355.028299998492002 ], [ 361834.296499997377396, 259358.853999998420477 ], [ 361814.89469999819994, 259364.605799999088049 ], [ 361803.550599999725819, 259371.05689999833703 ], [ 361795.433499999344349, 259377.32319999858737 ], [ 361772.667900003492832, 259399.301699999719858 ], [ 361775.82490000128746, 259407.34910000115633 ], [ 361781.521200001239777, 259401.274000000208616 ], [ 361800.221000000834465, 259383.272999998182058 ], [ 361807.528200000524521, 259377.422200001776218 ], [ 361817.250699996948242, 259372.013399999588728 ], [ 361835.038099996745586, 259366.459399998188019 ], [ 361844.722900003194809, 259365.483199998736382 ], [ 361876.219400003552437, 259359.830400001257658 ], [ 361922.279899999499321, 259348.386100001633167 ], [ 361936.834899999201298, 259343.650100000202656 ], [ 361948.992499999701977, 259336.361299999058247 ], [ 361953.047399997711182, 259333.650299999862909 ], [ 361970.116700001060963, 259317.746899999678135 ], [ 361974.184199996292591, 259313.558299999684095 ], [ 361980.685000002384186, 259307.700899999588728 ], [ 361995.321000002324581, 259293.466299999505281 ], [ 362009.944300003349781, 259280.709300000220537 ], [ 362016.463100001215935, 259272.741099998354912 ], [ 362037.605200000107288, 259252.015900000929832 ], [ 362053.060000002384186, 259236.310400001704693 ], [ 362055.51129999756813, 259232.530699998140335 ], [ 362055.558100000023842, 259227.042700000107288 ], [ 362053.963500000536442, 259224.918699998408556 ], [ 362052.366999998688698, 259223.005800001323223 ], [ 362050.752599999308586, 259223.203699998557568 ], [ 362044.294900000095367, 259223.995200000703335 ], [ 362035.396700002253056, 259227.299899999052286 ], [ 362021.628200002014637, 259234.36430000141263 ], [ 361998.952600002288818, 259245.788899999111891 ], [ 361985.180500000715256, 259253.275600001215935 ], [ 361946.295900002121925, 259274.277800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96132834, "LATITUDE": 18.36342993, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 439.17245212500001, "SHAPE_Area": 1304.4708311100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355544.574799999594688, 259269.589800000190735 ], [ 355530.885499998927116, 259267.366900000721216 ], [ 355515.553000003099442, 259268.719000000506639 ], [ 355518.731499999761581, 259274.233500000089407 ], [ 355531.639700002968311, 259273.494800001382828 ], [ 355546.936200000345707, 259276.364199999719858 ], [ 355552.5625, 259278.521200001239777 ], [ 355583.069300003349781, 259294.391800001263618 ], [ 355537.780900001525879, 259309.853100001811981 ], [ 355540.158500000834465, 259314.727699998766184 ], [ 355576.545000001788139, 259302.993200000375509 ], [ 355578.155900001525879, 259303.217500001192093 ], [ 355575.564300000667572, 259323.461199998855591 ], [ 355571.428400002419949, 259335.670800000429153 ], [ 355557.623999997973442, 259346.956900000572205 ], [ 355560.802500002086163, 259352.4712999984622 ], [ 355563.244800001382828, 259349.747099999338388 ], [ 355577.042099997401237, 259339.305399999022484 ], [ 355581.195900000631809, 259324.984999999403954 ], [ 355583.760499998927116, 259307.907400000840425 ], [ 355585.419900000095367, 259302.432599999010563 ], [ 355588.699100002646446, 259296.126600001007318 ], [ 355593.599899999797344, 259288.778400000184774 ], [ 355596.864699997007847, 259284.161100000143051 ], [ 355600.185199998319149, 259273.000300001353025 ], [ 355603.4662000015378, 259266.483300000429153 ], [ 355599.495800003409386, 259259.273600000888109 ], [ 355590.423199996352196, 259283.05290000140667 ], [ 355587.984499998390675, 259285.355000000447035 ], [ 355582.325900003314018, 259286.997400000691414 ], [ 355555.832699999213219, 259273.270599998533726 ], [ 355544.574799999594688, 259269.589800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-302-T83", "PARCEL_NAM": "C-64", "ACRE": ".50", "LONGITUDE": -64.90859051, "LATITUDE": 18.36365589, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.45348682100001, "SHAPE_Area": 1674.5435584899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361169.854900002479553, 259361.405600000172853 ], [ 361139.337999999523163, 259338.135600000619888 ], [ 361130.955799996852875, 259350.388999998569489 ], [ 361112.029600001871586, 259381.81529999896884 ], [ 361118.832999996840954, 259384.028999999165535 ], [ 361146.172100000083447, 259393.118700001388788 ], [ 361169.854900002479553, 259361.405600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94484838, "LATITUDE": 18.36377707, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.941083235000001, "SHAPE_Area": 32.594754998600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357300.975900001823902, 259348.98200000077486 ], [ 357313.8462999984622, 259352.675900001078844 ], [ 357313.084899999201298, 259347.392299998551607 ], [ 357300.975900001823902, 259348.98200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90537928000001, "LATITUDE": 18.36358763, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.323641401, "SHAPE_Area": 480.58003874899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361515.903800003230572, 259344.42680000141263 ], [ 361511.913599997758865, 259339.539000000804663 ], [ 361500.547899998724461, 259348.522999998182058 ], [ 361484.333599999547005, 259358.733899999409914 ], [ 361443.030000001192093, 259379.716299999505281 ], [ 361448.640000000596046, 259383.772999998182058 ], [ 361488.325599998235703, 259363.410599999129772 ], [ 361506.16330000013113, 259351.94649999961257 ], [ 361515.903800003230572, 259344.42680000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-302-T83", "PARCEL_NAM": "C-46", "ACRE": null, "LONGITUDE": -64.90552047, "LATITUDE": 18.36331924, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 498.16280180699999, "SHAPE_Area": 6574.0856180199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361565.522200003266335, 259293.959399998188019 ], [ 361564.751900002360344, 259289.731199998408556 ], [ 361560.101000003516674, 259267.739399999380112 ], [ 361539.856899999082088, 259277.706199999898672 ], [ 361535.017200000584126, 259277.877700001001358 ], [ 361531.802799999713898, 259276.584800001233816 ], [ 361526.954099997878075, 259277.811700001358986 ], [ 361484.759700000286102, 259308.708200000226498 ], [ 361467.708499997854233, 259322.500799998641014 ], [ 361459.575199998915195, 259330.666900001466274 ], [ 361446.613099999725819, 259337.738000001758337 ], [ 361438.526600003242493, 259340.41609999909997 ], [ 361364.237999998033047, 259352.473700001835823 ], [ 361367.223999999463558, 259380.573499999940395 ], [ 361438.219099998474121, 259376.510499998927116 ], [ 361492.576499998569489, 259337.69200000166893 ], [ 361504.734099999070168, 259330.403299998492002 ], [ 361565.522200003266335, 259293.959399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95070705000001, "LATITUDE": 18.36369712, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.113692066, "SHAPE_Area": 145.69674029399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356677.739500001072884, 259338.814800001680851 ], [ 356691.42339999973774, 259341.671000000089407 ], [ 356696.270300000905991, 259340.655200000852346 ], [ 356697.19709999859333, 259326.519600000232458 ], [ 356677.739500001072884, 259338.814800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90539407, "LATITUDE": 18.36350767, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.34750648900001, "SHAPE_Area": 836.14394210900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361511.913599997758865, 259339.539000000804663 ], [ 361504.734099999070168, 259330.403299998492002 ], [ 361492.576499998569489, 259337.69200000166893 ], [ 361438.219099998474121, 259376.510499998927116 ], [ 361443.030000001192093, 259379.716299999505281 ], [ 361484.333599999547005, 259358.733899999409914 ], [ 361500.547899998724461, 259348.522999998182058 ], [ 361511.913599997758865, 259339.539000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95041934, "LATITUDE": 18.36347069, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.97428698499999, "SHAPE_Area": 777.76200848500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356745.062600001692772, 259292.503100000321865 ], [ 356746.007399998605251, 259276.256599999964237 ], [ 356730.536399997770786, 259293.861800000071526 ], [ 356697.19709999859333, 259326.519600000232458 ], [ 356696.270300000905991, 259340.655200000852346 ], [ 356701.117200002074242, 259339.639400001615286 ], [ 356729.587999999523163, 259310.530499998480082 ], [ 356745.062600001692772, 259292.503100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "G9-3061-T80", "PARCEL_NAM": "C-55-A", "ACRE": ".024", "LONGITUDE": -64.90675493000001, "LATITUDE": 18.3636096, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.261820398600001, "SHAPE_Area": 52.678778357799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361332.759400002658367, 259356.015700001269579 ], [ 361335.018299996852875, 259374.82149999961257 ], [ 361337.465999998152256, 259371.464000001549721 ], [ 361335.988200001418591, 259355.619899999350309 ], [ 361332.759400002658367, 259356.015700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002035700", "MAP": "A9-302-T83", "PARCEL_NAM": "C3A-1", "ACRE": "2.77", "LONGITUDE": -64.90447845, "LATITUDE": 18.36324531, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.057418568, "SHAPE_Area": 4318.5847258499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361666.404799997806549, 259283.808200001716614 ], [ 361642.19030000269413, 259286.56529999896884 ], [ 361599.373000003397465, 259295.925200000405312 ], [ 361576.731499999761581, 259303.339299999177456 ], [ 361554.057599999010563, 259314.552700001746416 ], [ 361541.084700003266335, 259322.890299998223782 ], [ 361525.660499997437, 259335.007500000298023 ], [ 361515.903800003230572, 259344.42680000141263 ], [ 361539.040500000119209, 259373.535999998450279 ], [ 361544.717100001871586, 259369.782800000160933 ], [ 361581.225900001823902, 259343.694899998605251 ], [ 361620.193199999630451, 259312.9831000007689 ], [ 361637.2246999964118, 259301.512299999594688 ], [ 361666.404799997806549, 259283.808200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9526673, "LATITUDE": 18.36326373, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.095330004, "SHAPE_Area": 792.31777035200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356464.98200000077486, 259229.626899998635054 ], [ 356467.786399997770786, 259279.045699998736382 ], [ 356471.728100001811981, 259289.632699999958277 ], [ 356498.0253000035882, 259326.36710000038147 ], [ 356522.225500002503395, 259325.298599999397993 ], [ 356523.892099998891354, 259318.979400001466274 ], [ 356500.503600001335144, 259319.421300001442432 ], [ 356478.184000000357628, 259289.052200000733137 ], [ 356475.019900001585484, 259281.849199999123812 ], [ 356474.267499998211861, 259275.510200001299381 ], [ 356471.437899999320507, 259229.046500001102686 ], [ 356464.98200000077486, 259229.626899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9048377, "LATITUDE": 18.36268835, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 896.60583401899999, "SHAPE_Area": 3343.5446688799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361699.523999996483326, 259182.33219999819994 ], [ 361697.166199997067451, 259175.13569999858737 ], [ 361692.304999999701977, 259177.84010000154376 ], [ 361679.355400003492832, 259183.433699999004602 ], [ 361675.758500002324581, 259182.789200000464916 ], [ 361671.630999997258186, 259181.83669999986887 ], [ 361669.1858000010252, 259180.582400001585484 ], [ 361660.869599997997284, 259176.316300000995398 ], [ 361648.819799996912479, 259170.94029999896884 ], [ 361647.153300002217293, 259177.259500000625849 ], [ 361656.800300002098083, 259180.715999998152256 ], [ 361660.806599996984005, 259183.704100001603365 ], [ 361662.388700000941753, 259187.305599998682737 ], [ 361634.945299997925758, 259190.458500001579523 ], [ 361622.816500000655651, 259194.370000001043081 ], [ 361613.909299999475479, 259198.730000000447035 ], [ 361606.603900000452995, 259204.369800001382828 ], [ 361583.005000002682209, 259229.50789999961853 ], [ 361570.003300003707409, 259241.222699999809265 ], [ 361548.103399999439716, 259256.242199998348951 ], [ 361531.088200002908707, 259265.813200000673532 ], [ 361511.625200003385544, 259278.741700001060963 ], [ 361475.100199997425079, 259306.729299999773502 ], [ 361462.107500001788139, 259317.388799998909235 ], [ 361456.411100000143051, 259323.463899999856949 ], [ 361445.871500000357628, 259330.132599998265505 ], [ 361434.54900000244379, 259334.050700001418591 ], [ 361420.013800002634525, 259336.464899998158216 ], [ 361415.175899997353554, 259336.425299998372793 ], [ 361410.348800003528595, 259335.119199998676777 ], [ 361399.116200000047684, 259328.483399998396635 ], [ 361397.451399996876717, 259334.591400001198053 ], [ 361404.670500002801418, 259339.083500001579523 ], [ 361396.596500001847744, 259340.284000001847744 ], [ 361381.256800003349781, 259342.480500001460314 ], [ 361363.496399998664856, 259344.868200000375509 ], [ 361364.237999998033047, 259352.473700001835823 ], [ 361438.526600003242493, 259340.41609999909997 ], [ 361446.613099999725819, 259337.738000001758337 ], [ 361459.575199998915195, 259330.666900001466274 ], [ 361467.708499997854233, 259322.500799998641014 ], [ 361484.759700000286102, 259308.708200000226498 ], [ 361526.954099997878075, 259277.811700001358986 ], [ 361531.802799999713898, 259276.584800001233816 ], [ 361535.017200000584126, 259277.877700001001358 ], [ 361539.856899999082088, 259277.706199999898672 ], [ 361560.101000003516674, 259267.739399999380112 ], [ 361558.535199999809265, 259262.238200001418591 ], [ 361542.333400003612041, 259270.971500001847744 ], [ 361541.546800002455711, 259268.64299999922514 ], [ 361556.940499998629093, 259260.114199999719858 ], [ 361573.980999998748302, 259247.588100001215935 ], [ 361586.979099996387959, 259236.295400001108646 ], [ 361613.826499998569489, 259208.439699999988079 ], [ 361621.128300003707409, 259203.222100000828505 ], [ 361636.496799997985363, 259197.648400001227856 ], [ 361655.862700000405312, 259196.118099998682737 ], [ 361663.132100000977516, 259194.69990000128746 ], [ 361674.438400000333786, 259192.681499999016523 ], [ 361688.995200000703335, 259187.734400000423193 ], [ 361699.523999996483326, 259182.33219999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90436037000001, "LATITUDE": 18.36302539, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 363.40890614400001, "SHAPE_Area": 1035.7969755399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361676.132700003683567, 259277.766100000590086 ], [ 361660.8074000030756, 259278.274000000208616 ], [ 361639.819899998605251, 259280.846400000154972 ], [ 361601.043099999427795, 259289.183899998664856 ], [ 361576.7871999964118, 259296.795800000429153 ], [ 361543.581000000238419, 259313.833700001239777 ], [ 361529.789099998772144, 259323.642200000584126 ], [ 361511.913599997758865, 259339.539000000804663 ], [ 361515.903800003230572, 259344.42680000141263 ], [ 361525.660499997437, 259335.007500000298023 ], [ 361541.084700003266335, 259322.890299998223782 ], [ 361554.057599999010563, 259314.552700001746416 ], [ 361576.731499999761581, 259303.339299999177456 ], [ 361599.373000003397465, 259295.925200000405312 ], [ 361642.19030000269413, 259286.56529999896884 ], [ 361666.404799997806549, 259283.808200001716614 ], [ 361676.132700003683567, 259277.766100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9061483, "LATITUDE": 18.36336711, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.421806422100001, "SHAPE_Area": 22.467872483200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361396.596500001847744, 259340.284000001847744 ], [ 361404.670500002801418, 259339.083500001579523 ], [ 361397.451399996876717, 259334.591400001198053 ], [ 361396.596500001847744, 259340.284000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-302-T83", "PARCEL_NAM": "C3-A", "ACRE": "2.85", "LONGITUDE": -64.90400551, "LATITUDE": 18.36272841, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 552.33595410500004, "SHAPE_Area": 5560.1627622100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361678.108599998056889, 259235.141399998217821 ], [ 361671.602300003170967, 259241.631999999284744 ], [ 361661.084299996495247, 259245.767799999564886 ], [ 361611.048000000417233, 259250.635600000619888 ], [ 361590.046099998056889, 259254.896699998527765 ], [ 361560.101000003516674, 259267.739399999380112 ], [ 361564.751900002360344, 259289.731199998408556 ], [ 361582.51410000026226, 259287.132399998605251 ], [ 361582.481799997389317, 259290.931800000369549 ], [ 361565.522200003266335, 259293.959399998188019 ], [ 361504.734099999070168, 259330.403299998492002 ], [ 361511.913599997758865, 259339.539000000804663 ], [ 361529.789099998772144, 259323.642200000584126 ], [ 361543.581000000238419, 259313.833700001239777 ], [ 361576.7871999964118, 259296.795800000429153 ], [ 361601.043099999427795, 259289.183899998664856 ], [ 361639.819899998605251, 259280.846400000154972 ], [ 361660.8074000030756, 259278.274000000208616 ], [ 361676.132700003683567, 259277.766100000590086 ], [ 361701.292000003159046, 259258.762499999254942 ], [ 361719.178300000727177, 259241.599199999123812 ], [ 361716.831299997866154, 259233.136300001293421 ], [ 361695.85639999806881, 259234.231199998408556 ], [ 361678.108599998056889, 259235.141399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "F9-3671-T79", "PARCEL_NAM": "C-46", "ACRE": "4.855", "LONGITUDE": -64.9052605, "LATITUDE": 18.36274701, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 642.92614621999996, "SHAPE_Area": 8480.66414042 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361660.806599996984005, 259183.704100001603365 ], [ 361656.800300002098083, 259180.715999998152256 ], [ 361618.869400002062321, 259184.416299998760223 ], [ 361576.698399998247623, 259212.568799998611212 ], [ 361513.584899999201298, 259238.016699999570847 ], [ 361492.500200003385544, 259251.987399999052286 ], [ 361466.563400000333786, 259267.607200000435114 ], [ 361409.19650000333786, 259281.06980000063777 ], [ 361399.116200000047684, 259328.483399998396635 ], [ 361410.348800003528595, 259335.119199998676777 ], [ 361415.175899997353554, 259336.425299998372793 ], [ 361420.013800002634525, 259336.464899998158216 ], [ 361434.54900000244379, 259334.050700001418591 ], [ 361445.871500000357628, 259330.132599998265505 ], [ 361456.411100000143051, 259323.463899999856949 ], [ 361462.107500001788139, 259317.388799998909235 ], [ 361475.100199997425079, 259306.729299999773502 ], [ 361511.625200003385544, 259278.741700001060963 ], [ 361531.088200002908707, 259265.813200000673532 ], [ 361548.103399999439716, 259256.242199998348951 ], [ 361570.003300003707409, 259241.222699999809265 ], [ 361583.005000002682209, 259229.50789999961853 ], [ 361606.603900000452995, 259204.369800001382828 ], [ 361613.909299999475479, 259198.730000000447035 ], [ 361622.816500000655651, 259194.370000001043081 ], [ 361634.945299997925758, 259190.458500001579523 ], [ 361662.388700000941753, 259187.305599998682737 ], [ 361660.806599996984005, 259183.704100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9420842, "LATITUDE": 18.36322635, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.976884756, "SHAPE_Area": 291.82045612500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357577.193300001323223, 259297.413800001144409 ], [ 357581.187100000679493, 259301.87950000166893 ], [ 357594.948299996554852, 259295.659299999475479 ], [ 357611.10700000077486, 259291.991900000721216 ], [ 357624.861000001430511, 259286.61600000038743 ], [ 357624.10869999974966, 259280.276999998837709 ], [ 357609.544699996709824, 259286.068500000983477 ], [ 357593.386100001633167, 259289.73589999973774 ], [ 357577.193300001323223, 259297.413800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701013000", "MAP": "D9-1859-T81", "PARCEL_NAM": "14A-6", "ACRE": null, "LONGITUDE": -64.96205634, "LATITUDE": 18.36315003, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.161187893, "SHAPE_Area": 948.05493832000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355503.641699999570847, 259247.089999999850988 ], [ 355490.697599999606609, 259252.050299998372793 ], [ 355468.819200001657009, 259264.536899998784065 ], [ 355471.922200001776218, 259278.916600000113249 ], [ 355479.958400003612041, 259282.148800000548363 ], [ 355515.553000003099442, 259268.719000000506639 ], [ 355503.641699999570847, 259247.089999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95009082, "LATITUDE": 18.36311796, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.987868078899993, "SHAPE_Area": 308.92569977599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356765.427199997007847, 259268.394000001251698 ], [ 356767.181900002062321, 259251.73200000077486 ], [ 356746.007399998605251, 259276.256599999964237 ], [ 356745.062600001692772, 259292.503100000321865 ], [ 356765.427199997007847, 259268.394000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96172534, "LATITUDE": 18.36303683, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.98917930899999, "SHAPE_Area": 953.15950257500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355538.431800000369549, 259233.442600000649691 ], [ 355526.295800000429153, 259238.198399998247623 ], [ 355503.641699999570847, 259247.089999999850988 ], [ 355515.553000003099442, 259268.719000000506639 ], [ 355530.885499998927116, 259267.366900000721216 ], [ 355544.574799999594688, 259269.589800000190735 ], [ 355538.431800000369549, 259233.442600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94335027, "LATITUDE": 18.36307112, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.1025974322, "SHAPE_Area": 133.52867510499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357463.861100003123283, 259254.47859999909997 ], [ 357464.527099996805191, 259270.949400000274181 ], [ 357466.857900001108646, 259281.311999998986721 ], [ 357470.063400000333786, 259283.660300001502037 ], [ 357474.0878000035882, 259284.537599999457598 ], [ 357472.550700001418591, 259275.659099999815226 ], [ 357463.861100003123283, 259254.47859999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94351214, "LATITUDE": 18.36286228, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.298612077, "SHAPE_Area": 640.23472778799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357464.527099996805191, 259270.949400000274181 ], [ 357463.861100003123283, 259254.47859999909997 ], [ 357455.932800002396107, 259238.581700000911951 ], [ 357450.446900002658367, 259219.96059999987483 ], [ 357446.420699998736382, 259219.294399999082088 ], [ 357444.790100000798702, 259221.392000000923872 ], [ 357443.065999999642372, 259234.465599998831749 ], [ 357444.486199997365475, 259257.064300000667572 ], [ 357446.79900000244379, 259269.53770000115037 ], [ 357450.720899999141693, 259282.44649999961257 ], [ 357457.196599997580051, 259279.544199999421835 ], [ 357451.715999998152256, 259260.289900001138449 ], [ 357450.231100000441074, 259245.290100000798702 ], [ 357457.416000001132488, 259253.792599998414516 ], [ 357464.527099996805191, 259270.949400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95011249, "LATITUDE": 18.36301324, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.326373348900006, "SHAPE_Area": 214.63223540300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356767.181900002062321, 259251.73200000077486 ], [ 356747.810599997639656, 259253.895399998873472 ], [ 356746.007399998605251, 259276.256599999964237 ], [ 356767.181900002062321, 259251.73200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701013000", "MAP": "A9-373-T90", "PARCEL_NAM": "14-2", "ACRE": null, "LONGITUDE": -64.96211043, "LATITUDE": 18.36293327, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.80250336500001, "SHAPE_Area": 736.48719086899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355468.819200001657009, 259264.536899998784065 ], [ 355490.697599999606609, 259252.050299998372793 ], [ 355503.641699999570847, 259247.089999999850988 ], [ 355488.573499999940395, 259217.413600001484156 ], [ 355484.525799997150898, 259219.280299998819828 ], [ 355475.4746999964118, 259240.526700001209974 ], [ 355468.819200001657009, 259264.536899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002033100", "MAP": null, "PARCEL_NAM": "D-19", "ACRE": null, "LONGITUDE": -64.89967197, "LATITUDE": 18.36263549, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.30708130900001, "SHAPE_Area": 1974.63135564 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362055.51129999756813, 259232.530699998140335 ], [ 362070.687399998307228, 259249.542399998754263 ], [ 362081.765399999916553, 259274.331000000238419 ], [ 362093.500500001013279, 259316.645799998193979 ], [ 362101.594200000166893, 259313.123399998992682 ], [ 362110.471699997782707, 259305.935199998319149 ], [ 362094.794100001454353, 259259.449999999254942 ], [ 362089.281199999153614, 259243.995099999010563 ], [ 362086.210600003600121, 259225.815900001674891 ], [ 362070.937399998307228, 259220.202500000596046 ], [ 362066.113899998366833, 259218.474199999123812 ], [ 362053.963500000536442, 259224.918699998408556 ], [ 362055.558100000023842, 259227.042700000107288 ], [ 362055.51129999756813, 259232.530699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96189625, "LATITUDE": 18.36279286, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.16060858199999, "SHAPE_Area": 931.80005369499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355526.295800000429153, 259238.198399998247623 ], [ 355516.099600002169609, 259204.551100000739098 ], [ 355488.573499999940395, 259217.413600001484156 ], [ 355503.641699999570847, 259247.089999999850988 ], [ 355526.295800000429153, 259238.198399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9045053, "LATITUDE": 18.36292459, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.276362860600003, "SHAPE_Area": 70.721251214199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361564.751900002360344, 259289.731199998408556 ], [ 361565.522200003266335, 259293.959399998188019 ], [ 361582.481799997389317, 259290.931800000369549 ], [ 361582.51410000026226, 259287.132399998605251 ], [ 361564.751900002360344, 259289.731199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95006411, "LATITUDE": 18.36276364, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.915884195, "SHAPE_Area": 756.48849742000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356767.181900002062321, 259251.73200000077486 ], [ 356769.951499998569489, 259210.591400001198053 ], [ 356750.553199999034405, 259215.921000000089407 ], [ 356747.810599997639656, 259253.895399998873472 ], [ 356767.181900002062321, 259251.73200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94985801, "LATITUDE": 18.36265346, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.92024256799999, "SHAPE_Area": 717.93583561499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356769.951499998569489, 259210.591400001198053 ], [ 356767.181900002062321, 259251.73200000077486 ], [ 356805.515600003302097, 259200.75 ], [ 356769.951499998569489, 259210.591400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90473119000001, "LATITUDE": 18.36270037, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.1179465863, "SHAPE_Area": 45.4463006557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361558.535199999809265, 259262.238200001418591 ], [ 361556.940499998629093, 259260.114199999719858 ], [ 361541.546800002455711, 259268.64299999922514 ], [ 361542.333400003612041, 259270.971500001847744 ], [ 361558.535199999809265, 259262.238200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90410107, "LATITUDE": 18.36254404, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.85410888499999, "SHAPE_Area": 748.39786476899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361670.041799999773502, 259235.497600000351667 ], [ 361665.184199996292591, 259237.779800001531839 ], [ 361659.520199999213219, 259240.055500000715256 ], [ 361621.596600003540516, 259242.911499999463558 ], [ 361603.037000000476837, 259244.448399998247623 ], [ 361600.603699997067451, 259246.117199998348951 ], [ 361588.483800001442432, 259248.973299998790026 ], [ 361558.535199999809265, 259262.238200001418591 ], [ 361560.101000003516674, 259267.739399999380112 ], [ 361590.046099998056889, 259254.896699998527765 ], [ 361611.048000000417233, 259250.635600000619888 ], [ 361661.084299996495247, 259245.767799999564886 ], [ 361671.602300003170967, 259241.631999999284744 ], [ 361678.108599998056889, 259235.141399998217821 ], [ 361670.041799999773502, 259235.497600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94483121, "LATITUDE": 18.36263275, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.088670197, "SHAPE_Area": 276.07515135900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357339.976700000464916, 259219.689699999988079 ], [ 357338.403599999845028, 259215.032800000160933 ], [ 357297.989100001752377, 259226.312199998646975 ], [ 357294.049199998378754, 259215.514199998229742 ], [ 357289.198700003325939, 259216.952100001275539 ], [ 357294.717100001871586, 259231.773800000548363 ], [ 357327.853200003504753, 259222.967999998480082 ], [ 357339.976700000464916, 259219.689699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90444483, "LATITUDE": 18.36257176, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.531064735699999, "SHAPE_Area": 127.997341869 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361600.603699997067451, 259246.117199998348951 ], [ 361599.028800003230572, 259241.671300001442432 ], [ 361556.940499998629093, 259260.114199999719858 ], [ 361558.535199999809265, 259262.238200001418591 ], [ 361588.483800001442432, 259248.973299998790026 ], [ 361600.603699997067451, 259246.117199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90419117, "LATITUDE": 18.3623467, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.54131374, "SHAPE_Area": 1105.0663310499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361620.032499998807907, 259237.199200000613928 ], [ 361628.372500002384186, 259204.75899999961257 ], [ 361655.862700000405312, 259196.118099998682737 ], [ 361636.496799997985363, 259197.648400001227856 ], [ 361621.128300003707409, 259203.222100000828505 ], [ 361613.826499998569489, 259208.439699999988079 ], [ 361586.979099996387959, 259236.295400001108646 ], [ 361573.980999998748302, 259247.588100001215935 ], [ 361556.940499998629093, 259260.114199999719858 ], [ 361599.028800003230572, 259241.671300001442432 ], [ 361620.032499998807907, 259237.199200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9026556, "LATITUDE": 18.36196354, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 659.70968216699998, "SHAPE_Area": 2529.6093941200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361749.092100001871586, 259164.313099998980761 ], [ 361748.571999996900558, 259175.592500001192093 ], [ 361747.944099999964237, 259177.8733000010252 ], [ 361747.040700003504753, 259189.265000000596046 ], [ 361742.049999997019768, 259207.167100001126528 ], [ 361737.138400003314018, 259215.781700000166893 ], [ 361734.705099999904633, 259217.450599998235703 ], [ 361731.406099997460842, 259226.078400000929832 ], [ 361719.178300000727177, 259241.599199999123812 ], [ 361722.338899999856949, 259249.224500000476837 ], [ 361728.037000000476837, 259242.938299998641014 ], [ 361734.528899997472763, 259238.136300001293421 ], [ 361744.247800000011921, 259233.149599999189377 ], [ 361754.755000002682209, 259230.280299998819828 ], [ 361781.404700003564358, 259225.643199998885393 ], [ 361815.309399999678135, 259221.276700001209974 ], [ 361862.129399999976158, 259215.327100001275539 ], [ 361846.084100000560284, 259205.69649999961257 ], [ 361833.976800002157688, 259207.075100000947714 ], [ 361831.514700002968311, 259212.121199999004602 ], [ 361828.2787000015378, 259213.361299999058247 ], [ 361787.104599997401237, 259219.146000001579523 ], [ 361745.930500000715256, 259224.930700000375509 ], [ 361743.522399999201298, 259223.644400000572205 ], [ 361743.55290000140667, 259220.056099999696016 ], [ 361745.997000001370907, 259217.120799999684095 ], [ 361751.768899999558926, 259202.180399999022484 ], [ 361755.985699996352196, 259180.472300000488758 ], [ 361784.204800002276897, 259180.914299998432398 ], [ 361784.3091000020504, 259168.671700000762939 ], [ 361779.422700002789497, 259174.331300001591444 ], [ 361757.646899998188019, 259174.786299999803305 ], [ 361760.20610000193119, 259158.342000000178814 ], [ 361767.727200001478195, 259127.372800000011921 ], [ 361769.526799999177456, 259105.433800000697374 ], [ 361768.756499998271465, 259101.205600000917912 ], [ 361770.444600000977516, 259092.353500001132488 ], [ 361772.093199998140335, 259088.145100001245737 ], [ 361763.245399996638298, 259085.539599999785423 ], [ 361760.761699996888638, 259093.118599999696016 ], [ 361759.865500003099442, 259103.666000001132488 ], [ 361758.029899999499321, 259129.826499998569489 ], [ 361749.092100001871586, 259164.313099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90415506, "LATITUDE": 18.36247978, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.687381732, "SHAPE_Area": 99.061358180300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361621.596600003540516, 259242.911499999463558 ], [ 361620.032499998807907, 259237.199200000613928 ], [ 361599.028800003230572, 259241.671300001442432 ], [ 361600.603699997067451, 259246.117199998348951 ], [ 361603.037000000476837, 259244.448399998247623 ], [ 361621.596600003540516, 259242.911499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90391343, "LATITUDE": 18.36246234, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.773619759100001, "SHAPE_Area": 125.783833309 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361665.184199996292591, 259237.779800001531839 ], [ 361632.105599999427795, 259239.8310999982059 ], [ 361631.326300002634525, 259236.658300001174212 ], [ 361620.032499998807907, 259237.199200000613928 ], [ 361621.596600003540516, 259242.911499999463558 ], [ 361659.520199999213219, 259240.055500000715256 ], [ 361665.184199996292591, 259237.779800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "1011030328000", "MAP": "A9-394-T91", "PARCEL_NAM": "20", "ACRE": null, "LONGITUDE": -64.96837777, "LATITUDE": 18.36220461, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.02763885500002, "SHAPE_Area": 4310.5033283800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354779.239699997007847, 259185.643500000238419 ], [ 354860.747400000691414, 259178.078000001609325 ], [ 354856.049800001084805, 259161.574200000613928 ], [ 354871.452500000596046, 259151.989999998360872 ], [ 354878.748800002038479, 259147.405600000172853 ], [ 354882.922499999403954, 259130.763399999588728 ], [ 354850.650200001895428, 259132.821299999952316 ], [ 354836.933899998664856, 259133.764499999582767 ], [ 354815.978699997067451, 259132.537500001490116 ], [ 354779.710900001227856, 259130.340900000184774 ], [ 354782.722099997103214, 259155.485599998384714 ], [ 354779.239699997007847, 259185.643500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90590053, "LATITUDE": 18.36214316, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.12562666399998, "SHAPE_Area": 995.20725205500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361436.482699997723103, 259201.710900001227856 ], [ 361461.563000001013279, 259191.994699999690056 ], [ 361480.154899999499321, 259186.658500000834465 ], [ 361489.060300000011921, 259182.509500000625849 ], [ 361502.029600001871586, 259174.594099998474121 ], [ 361499.659199997782707, 259168.875100001692772 ], [ 361484.262000001966953, 259177.826200000941753 ], [ 361475.358400002121925, 259181.76410000026226 ], [ 361457.574500001966953, 259186.895799998193979 ], [ 361426.830399997532368, 259198.887600000947714 ], [ 361372.62219999730587, 259220.186599999666214 ], [ 361363.706000000238419, 259225.602099999785423 ], [ 361349.924999997019768, 259234.144099999219179 ], [ 361353.918799996376038, 259238.6097999997437 ], [ 361363.653899997472763, 259231.723400000482798 ], [ 361374.182700000703335, 259226.321100000292063 ], [ 361436.482699997723103, 259201.710900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90362783, "LATITUDE": 18.36242842, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 12.3205133469, "SHAPE_Area": 5.1061712403500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361670.041799999773502, 259235.497600000351667 ], [ 361665.202200002968311, 259235.668999999761581 ], [ 361665.184199996292591, 259237.779800001531839 ], [ 361670.041799999773502, 259235.497600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-1755-T81", "PARCEL_NAM": "C-59-A", "ACRE": "1.74", "LONGITUDE": -64.90606527, "LATITUDE": 18.36203451, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.31487590199998, "SHAPE_Area": 4443.0913139300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361475.237800002098083, 259150.448300000280142 ], [ 361382.969999998807907, 259181.942499998956919 ], [ 361330.731700003147125, 259215.410799998790026 ], [ 361349.924999997019768, 259234.144099999219179 ], [ 361363.706000000238419, 259225.602099999785423 ], [ 361372.62219999730587, 259220.186599999666214 ], [ 361426.830399997532368, 259198.887600000947714 ], [ 361457.574500001966953, 259186.895799998193979 ], [ 361475.358400002121925, 259181.76410000026226 ], [ 361484.262000001966953, 259177.826200000941753 ], [ 361475.237800002098083, 259150.448300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9472969, "LATITUDE": 18.3620802, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.35240150700002, "SHAPE_Area": 829.42110383700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357077.697800002992153, 259149.570999998599291 ], [ 357087.361000001430511, 259151.127700001001358 ], [ 357090.568199999630451, 259153.264899998903275 ], [ 357091.362000003457069, 259154.749099999666214 ], [ 357091.322400003671646, 259159.392799999564886 ], [ 357087.290799997746944, 259159.3597999997437 ], [ 357086.435999996960163, 259165.052299998700619 ], [ 357098.519900001585484, 259166.41780000180006 ], [ 357099.374700002372265, 259160.725299999117851 ], [ 357097.765699997544289, 259160.289900001138449 ], [ 357097.029500000178814, 259152.051199998706579 ], [ 357095.442100003361702, 259149.082899998873472 ], [ 357092.241999998688698, 259146.101399999111891 ], [ 357080.980599999427795, 259142.8429000005126 ], [ 357068.077799998223782, 259142.948300000280142 ], [ 357059.17059999704361, 259147.308400001376867 ], [ 357042.112199999392033, 259161.945300001651049 ], [ 357038.874300003051758, 259163.396499998867512 ], [ 357029.160800002515316, 259167.75 ], [ 357021.090499997138977, 259168.528299998492002 ], [ 356992.905500002205372, 259164.075699999928474 ], [ 356992.851599998772144, 259170.408100001513958 ], [ 357019.425700001418591, 259174.636399999260902 ], [ 357030.723099999129772, 259173.67339999973774 ], [ 357037.189800001680851, 259171.826400000602007 ], [ 357043.668999999761581, 259168.502000000327826 ], [ 357064.778800003230572, 259151.576200000941753 ], [ 357072.86710000038147, 259148.687100000679493 ], [ 357077.697800002992153, 259149.570999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002037300", "MAP": "D9-1755-T81", "PARCEL_NAM": "C-59-A", "ACRE": null, "LONGITUDE": -64.90537866, "LATITUDE": 18.3619968, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.76366826399999, "SHAPE_Area": 250.37497248400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361436.482699997723103, 259201.710900001227856 ], [ 361505.179300002753735, 259183.485800001770258 ], [ 361502.029600001871586, 259174.594099998474121 ], [ 361489.060300000011921, 259182.509500000625849 ], [ 361480.154899999499321, 259186.658500000834465 ], [ 361461.563000001013279, 259191.994699999690056 ], [ 361436.482699997723103, 259201.710900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94457066, "LATITUDE": 18.36177596, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.79765151500001, "SHAPE_Area": 515.47231418900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357306.656400002539158, 259155.455699998885393 ], [ 357386.959600001573563, 259099.962000001221895 ], [ 357382.182899996638298, 259092.745799999684095 ], [ 357370.012699998915195, 259101.512099999934435 ], [ 357372.393899999558926, 259105.964499998837709 ], [ 357345.618299998342991, 259125.377099998295307 ], [ 357316.438199996948242, 259143.081199999898672 ], [ 357304.295000001788139, 259148.681400001049042 ], [ 357301.888599999248981, 259147.184000000357628 ], [ 357291.293300002813339, 259160.396200001239777 ], [ 357306.656400002539158, 259155.455699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9529684, "LATITUDE": 18.36196795, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.884125681, "SHAPE_Area": 265.011242036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356414.079300001263618, 259146.883799999952316 ], [ 356414.048699997365475, 259150.472100000828505 ], [ 356429.350699998438358, 259152.708299998193979 ], [ 356435.000200003385544, 259152.121300000697374 ], [ 356463.298500001430511, 259143.275800000876188 ], [ 356477.882200002670288, 259135.162599999457598 ], [ 356487.619099996984005, 259128.065099999308586 ], [ 356485.223600000143051, 259125.301300000399351 ], [ 356473.056999996304512, 259133.645399998873472 ], [ 356458.475000001490116, 259141.547600001096725 ], [ 356435.833499997854233, 259148.96169999986887 ], [ 356426.962300002574921, 259149.10020000115037 ], [ 356414.079300001263618, 259146.883799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90338502, "LATITUDE": 18.36199642, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.733684693499995, "SHAPE_Area": 108.59352775799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361702.675599999725819, 259191.012800000607967 ], [ 361699.523999996483326, 259182.33219999819994 ], [ 361688.995200000703335, 259187.734400000423193 ], [ 361674.438400000333786, 259192.681499999016523 ], [ 361689.769199997186661, 259191.540500000119209 ], [ 361702.675599999725819, 259191.012800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90943036, "LATITUDE": 18.36179557, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.765190448, "SHAPE_Area": 715.55134423599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361072.367600001394749, 259159.045200001448393 ], [ 361054.002199999988079, 259137.785500001162291 ], [ 361038.391000002622604, 259171.854899998754263 ], [ 361047.170500002801418, 259182.4814000017941 ], [ 361072.367600001394749, 259159.045200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "D-21A", "ACRE": null, "LONGITUDE": -64.90306697, "LATITUDE": 18.36189414, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.03274650199999, "SHAPE_Area": 324.839190691 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361733.226099997758865, 259172.734999999403954 ], [ 361727.722800001502037, 259172.629200000315905 ], [ 361719.891099996864796, 259173.370000001043081 ], [ 361714.281900003552437, 259174.428300000727177 ], [ 361711.530199997127056, 259175.169199999421835 ], [ 361706.818599998950958, 259177.95890000090003 ], [ 361699.523999996483326, 259182.33219999819994 ], [ 361747.721400000154972, 259180.680599998682737 ], [ 361747.944099999964237, 259177.8733000010252 ], [ 361748.571999996900558, 259175.592500001192093 ], [ 361747.513599999248981, 259174.957499999552965 ], [ 361744.232799999415874, 259174.110800001770258 ], [ 361740.528599999845028, 259173.581700000911951 ], [ 361733.226099997758865, 259172.734999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90405646000001, "LATITUDE": 18.36179832, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.82077166000001, "SHAPE_Area": 342.37416488700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361648.819799996912479, 259170.94029999896884 ], [ 361618.262699998915195, 259160.979899998754263 ], [ 361594.912000000476837, 259156.989100001752377 ], [ 361594.886799998581409, 259159.944200001657009 ], [ 361594.859899997711182, 259163.110399998724461 ], [ 361615.795199997723103, 259166.659299999475479 ], [ 361647.153300002217293, 259177.259500000625849 ], [ 361648.819799996912479, 259170.94029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90500989, "LATITUDE": 18.36179518, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.541096557800003, "SHAPE_Area": 133.017725872 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361544.07660000026226, 259161.006000000983477 ], [ 361543.297200001776218, 259157.833299998193979 ], [ 361499.659199997782707, 259168.875100001692772 ], [ 361502.029600001871586, 259174.594099998474121 ], [ 361505.285400003194809, 259171.0320999994874 ], [ 361509.336800001561642, 259168.743299998342991 ], [ 361544.07660000026226, 259161.006000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701002270", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95856559000001, "LATITUDE": 18.36172627, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.876245608, "SHAPE_Area": 1050.43523095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355876.646499998867512, 259098.155499998480082 ], [ 355846.854299999773502, 259093.056499999016523 ], [ 355840.157399997115135, 259121.921500001102686 ], [ 355884.461400002241135, 259127.350400000810623 ], [ 355880.507200002670288, 259118.24100000038743 ], [ 355876.646499998867512, 259098.155499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-2086-T82", "PARCEL_NAM": "C-65", "ACRE": ".59", "LONGITUDE": -64.90406121, "LATITUDE": 18.3616494, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.51746123300001, "SHAPE_Area": 1499.7459216300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361596.562100000679493, 259131.602800000458956 ], [ 361589.736900001764297, 259131.475600000470877 ], [ 361594.912000000476837, 259156.989100001752377 ], [ 361618.262699998915195, 259160.979899998754263 ], [ 361648.819799996912479, 259170.94029999896884 ], [ 361651.419600002467632, 259143.330200001597404 ], [ 361596.562100000679493, 259131.602800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-1755-T81", "PARCEL_NAM": "C-60", "ACRE": ".51", "LONGITUDE": -64.90504206, "LATITUDE": 18.36166083, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.95050417900001, "SHAPE_Area": 1244.5781267899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361536.421099998056889, 259130.481800001114607 ], [ 361491.869800001382828, 259143.832699999213219 ], [ 361499.659199997782707, 259168.875100001692772 ], [ 361543.297200001776218, 259157.833299998193979 ], [ 361536.421099998056889, 259130.481800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9092093, "LATITUDE": 18.36158038, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.19566017699999, "SHAPE_Area": 900.56936887699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361099.19709999859333, 259133.300200000405312 ], [ 361090.462499998509884, 259117.396699998527765 ], [ 361054.002199999988079, 259137.785500001162291 ], [ 361072.367600001394749, 259159.045200001448393 ], [ 361099.19709999859333, 259133.300200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90455089, "LATITUDE": 18.36172371, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.271374783, "SHAPE_Area": 165.78141881299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361594.912000000476837, 259156.989100001752377 ], [ 361579.604599997401237, 259155.386199999600649 ], [ 361561.061300002038479, 259155.023299999535084 ], [ 361543.297200001776218, 259157.833299998193979 ], [ 361544.07660000026226, 259161.006000000983477 ], [ 361555.386500000953674, 259158.565499998629093 ], [ 361563.453199997544289, 259158.209300000220537 ], [ 361594.886799998581409, 259159.944200001657009 ], [ 361594.912000000476837, 259156.989100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94734454, "LATITUDE": 18.36168642, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.86251776, "SHAPE_Area": 713.25452538599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357061.078100003302097, 259112.704700000584126 ], [ 357048.988799996674061, 259111.97239999845624 ], [ 357026.374300003051758, 259116.220300000160933 ], [ 357007.832699999213219, 259115.64640000090003 ], [ 356990.932499997317791, 259111.708399999886751 ], [ 356991.68129999935627, 259118.469500001519918 ], [ 357007.780599996447563, 259121.767700001597404 ], [ 357019.06360000371933, 259122.493299998342991 ], [ 357032.779899999499321, 259121.55009999871254 ], [ 357048.934900000691414, 259118.304800000041723 ], [ 357060.2179000005126, 259119.0304000005126 ], [ 357068.273800000548363, 259119.940699998289347 ], [ 357075.527000002563, 259120.4222999997437 ], [ 357083.604500003159046, 259118.799699999392033 ], [ 357091.700000002980232, 259115.066199999302626 ], [ 357092.483000002801418, 259117.816899999976158 ], [ 357098.954999998211861, 259115.33669999986887 ], [ 357094.2179000005126, 259103.476700000464916 ], [ 357087.749399997293949, 259105.534699998795986 ], [ 357088.517899997532368, 259109.973900001496077 ], [ 357082.042300000786781, 259112.876299999654293 ], [ 357075.579199999570847, 259114.300999999046326 ], [ 357068.322400003671646, 259114.241599999368191 ], [ 357061.078100003302097, 259112.704700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-1814-T81", "PARCEL_NAM": "C-61", "ACRE": ".52", "LONGITUDE": -64.90459253, "LATITUDE": 18.36159674, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.48362065399999, "SHAPE_Area": 1309.2337598900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361594.912000000476837, 259156.989100001752377 ], [ 361589.736900001764297, 259131.475600000470877 ], [ 361536.421099998056889, 259130.481800001114607 ], [ 361543.297200001776218, 259157.833299998193979 ], [ 361561.061300002038479, 259155.023299999535084 ], [ 361579.604599997401237, 259155.386199999600649 ], [ 361594.912000000476837, 259156.989100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701023800", "MAP": "A9-157-T71", "PARCEL_NAM": "14-30", "ACRE": ".26", "LONGITUDE": -64.95856343, "LATITUDE": 18.36142396, "OBJECTID_1": 2867, "PARCEL_NO_": "102701023800", "Tax_Legal_": "BONNE RESOLUTION 14-30 LITTLE NORTHSIDE QTR.", "Name": "WALLACE, ANDREA T. & KARIM T. ANTHONY", "Address": "14-30 Estate Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.964832747, "SHAPE_Area": 909.07623408799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355846.854299999773502, 259093.056499999016523 ], [ 355876.646499998867512, 259098.155499998480082 ], [ 355869.734899997711182, 259057.568999998271465 ], [ 355865.733900003135204, 259053.947599999606609 ], [ 355858.477099999785423, 259053.888300001621246 ], [ 355855.232100002467632, 259056.183699999004602 ], [ 355853.592500001192093, 259059.33669999986887 ], [ 355846.854299999773502, 259093.056499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96751448000001, "LATITUDE": 18.36133544, "OBJECTID_1": 2437, "PARCEL_NO_": "102602022700", "Tax_Legal_": "NELTJEBERG E.PART #43 LT.NORTHSIDE QTR.", "Name": "MOOLENAAR, KEITH C., ELMA M. FRANCIS AND OTHERS", "Address": "PO Box 693", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 54000, "Improved_V": 133000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.790725544, "SHAPE_Area": 1672.05300631 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354935.168399997055531, 259055.830600000917912 ], [ 354936.959100000560284, 259034.947000000625849 ], [ 354905.367200002074242, 259051.787000000476837 ], [ 354921.711000002920628, 259026.378499999642372 ], [ 354906.401900000870228, 259024.986600000411272 ], [ 354904.191699996590614, 259035.929200001060963 ], [ 354903.20377154549351, 259043.842199959239224 ], [ 354901.790265114570502, 259051.69035710170283 ], [ 354899.955300003290176, 259059.450800001621246 ], [ 354899.537618850066792, 259062.930339166865451 ], [ 354898.644295880745631, 259066.319088850868866 ], [ 354897.292386170011014, 259069.552351983089466 ], [ 354895.507700003683567, 259072.568399999290705 ], [ 354893.542358302744105, 259075.316812449484132 ], [ 354891.194700002670288, 259077.746800001710653 ], [ 354915.531000003218651, 259089.233800001442432 ], [ 354926.063400000333786, 259083.409400001168251 ], [ 354930.145300000905991, 259077.5320999994874 ], [ 354933.438900001347065, 259069.537500001490116 ], [ 354935.168399997055531, 259055.830600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90792155, "LATITUDE": 18.36121389, "OBJECTID_1": 5241, "PARCEL_NO_": "103001032200", "Tax_Legal_": "LOVENLUND C-5-A-1 GT. NORTHSIDE", "Name": "ELLERMAN, HARRY", "Address": "2571 Sun Valley Rd", "City": "Lisle", "State": "Illinois", "Zip": 60532, "Country": "United States", "Land_Value": 67900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.019148927, "SHAPE_Area": 2174.2303296800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361190.837200000882149, 259072.19990000128746 ], [ 361212.838600002229214, 259139.929900001734495 ], [ 361237.877400003373623, 259135.068599998950958 ], [ 361214.414499998092651, 259049.594700001180172 ], [ 361190.837200000882149, 259072.19990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801029000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94434898, "LATITUDE": 18.3612018, "OBJECTID_1": 3836, "PARCEL_NO_": "102801029000", "Tax_Legal_": "ST PETER 6F-1 LITTLE NORTHSIDE", "Name": "LOUIS BERRY FAMILY TRUST 2008", "Address": "PO Box 10434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013434, "Country": "United States", "Land_Value": 130300, "Improved_V": 149300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.175127933, "SHAPE_Area": 2605.0246782499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357362.818099997937679, 258999.495000001043081 ], [ 357353.632200002670288, 259036.572299998253584 ], [ 357348.492200002074242, 259071.993900001049042 ], [ 357342.718500003218651, 259087.145399998873472 ], [ 357339.406999997794628, 259097.250799998641014 ], [ 357334.495399996638298, 259105.86540000140667 ], [ 357361.179200001060963, 259097.2179000005126 ], [ 357370.012699998915195, 259101.512099999934435 ], [ 357382.182899996638298, 259092.745799999684095 ], [ 357390.298199996352196, 259086.690499998629093 ], [ 357362.818099997937679, 258999.495000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702045800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95752987, "LATITUDE": 18.36130556, "OBJECTID_1": 3149, "PARCEL_NO_": "102702045800", "Tax_Legal_": "13-6 BONNE RESOLUTION LITTLE NORTHSIDE", "Name": "SMITH, CHARLES & LYDIA", "Address": "PO Box 304985", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37700, "Improved_V": 207100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.19550187199999, "SHAPE_Area": 977.245744629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355992.432899996638298, 259042.318999998271465 ], [ 355980.393899999558926, 259035.676600001752377 ], [ 355973.063400000333786, 259044.27140000090003 ], [ 355965.689699999988079, 259057.932100001722574 ], [ 355952.646600000560284, 259074.501800000667572 ], [ 355951.02139999717474, 259075.966099999845028 ], [ 355949.367399998009205, 259080.807700000703335 ], [ 355968.654200002551079, 259088.565000001341105 ], [ 355976.690399996936321, 259091.797100000083447 ], [ 355978.549300000071526, 259062.892499998211861 ], [ 355992.432899996638298, 259042.318999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602030400", "MAP": "D9-1889-T81", "PARCEL_NAM": "1A-4", "ACRE": null, "LONGITUDE": -64.97016485, "LATITUDE": 18.36122855, "OBJECTID_1": 2466, "PARCEL_NO_": "102602030400", "Tax_Legal_": "DOROTHEA 1A-4 LT. NORTHSIDE", "Name": "ARMSTRONG, DENISE A", "Address": "PO Box 130", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 107000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.62089545700002, "SHAPE_Area": 4343.0932682900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354666.803000003099442, 259037.591099999845028 ], [ 354640.455399997532368, 259006.7668999992311 ], [ 354636.400499999523163, 259009.477899998426437 ], [ 354625.887900002300739, 259012.980399999767542 ], [ 354608.933700002729893, 259015.374800000339746 ], [ 354590.313000001013279, 259024.088300000876188 ], [ 354613.22860000282526, 259079.160199999809265 ], [ 354626.964599996805191, 259075.895100001245737 ], [ 354659.215300001204014, 259076.370200000703335 ], [ 354689.959499999880791, 259064.378400001674891 ], [ 354666.803000003099442, 259037.591099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96831613000001, "LATITUDE": 18.36126352, "OBJECTID_1": 2449, "PARCEL_NO_": "102602025100", "Tax_Legal_": "NELTJEBERG 12G LITTLE NORTHSIDE", "Name": "MOOLENAAR, HUGO", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31400, "Improved_V": 112700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.303304621, "SHAPE_Area": 1337.4271622700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354847.213799998164177, 259062.92119999974966 ], [ 354847.278599999845028, 259055.322399999946356 ], [ 354853.765000000596046, 259051.153599999845028 ], [ 354849.14469999819994, 259025.573499999940395 ], [ 354841.866300001740456, 259028.046999998390675 ], [ 354832.953699998557568, 259033.040300000458956 ], [ 354804.53320000320673, 259056.239100001752377 ], [ 354809.070500001311302, 259070.296500001102686 ], [ 354833.883799999952316, 259069.369300000369549 ], [ 354847.213799998164177, 259062.92119999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022100", "MAP": "D9-8301-T009", "PARCEL_NAM": "5M", "ACRE": ".804", "LONGITUDE": -64.94241074, "LATITUDE": 18.36078383, "OBJECTID_1": 3794, "PARCEL_NO_": "102801022100", "Tax_Legal_": "5L REM & 5M REM LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BERRY, LOUIS & ANN MARIA", "Address": "7691 Lower Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.593798298, "SHAPE_Area": 3634.5632568299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357615.177400000393391, 259012.318199999630451 ], [ 357589.580700002610683, 258979.186099998652935 ], [ 357582.287900000810623, 258983.348299998790026 ], [ 357571.749799996614456, 258990.991599999368191 ], [ 357566.059199996292591, 258995.247800000011921 ], [ 357526.319700002670288, 259021.942499998956919 ], [ 357549.702299997210503, 259065.196899998933077 ], [ 357615.177400000393391, 259012.318199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602039600", "MAP": "A9-394-T91", "PARCEL_NAM": "39", "ACRE": ".31", "LONGITUDE": -64.96866056, "LATITUDE": 18.36116936, "OBJECTID_1": 2520, "PARCEL_NO_": "102602039600", "Tax_Legal_": "NELTJEBERG ESTATE 39 LT.NORTHSIDE QTR.", "Name": "STEFFERSON FAMILY TRUST", "Address": "PO Box 301704", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34300, "Improved_V": 261400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.608332289, "SHAPE_Area": 1609.7381749000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354757.023699998855591, 259048.462000001221895 ], [ 354766.476499997079372, 259074.714899998158216 ], [ 354827.372500002384186, 259025.6064000017941 ], [ 354837.906700000166893, 259019.570900000631809 ], [ 354845.998599998652935, 259016.25959999859333 ], [ 354854.889600001275539, 259013.799199998378754 ], [ 354861.347300000488758, 259013.007699999958277 ], [ 354855.719300001859665, 259011.061799999326468 ], [ 354832.316500000655651, 259013.192299999296665 ], [ 354825.043499998748302, 259015.032600000500679 ], [ 354812.89299999922514, 259021.477099999785423 ], [ 354787.79839999973774, 259032.881799999624491 ], [ 354778.06870000064373, 259039.135000001639128 ], [ 354757.023699998855591, 259048.462000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012000", "MAP": "D9-2828-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94631861000001, "LATITUDE": 18.36098277, "OBJECTID_1": 3702, "PARCEL_NO_": "102801012000", "Tax_Legal_": "6BB ST PETER LITTLE NORTHSIDE QTR", "Name": "A & J BERRY TRUST", "Address": "PO Box 305516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.32238638800001, "SHAPE_Area": 3471.7526793400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357132.443800002336502, 259073.285100001841784 ], [ 357178.421499997377396, 259080.017700001597404 ], [ 357180.535700000822544, 259004.546999998390675 ], [ 357157.174199998378754, 259001.822700001299381 ], [ 357152.34179999679327, 259001.149900000542402 ], [ 357134.157799996435642, 258998.698100000619888 ], [ 357133.87389999628067, 259011.054800000041723 ], [ 357132.771200001239777, 259059.039500001817942 ], [ 357132.443800002336502, 259073.285100001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97141005, "LATITUDE": 18.36113347, "OBJECTID_1": 2508, "PARCEL_NO_": "102602034700", "Tax_Legal_": "DOROTHEA 1A-5 LT. NORTHSIDE", "Name": "VANTERPOOL, HELEN & OTHERS", "Address": "BOX 4021", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.93799744, "SHAPE_Area": 2186.7391752799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354510.817199997603893, 258984.807599999010563 ], [ 354496.075199998915195, 259011.495799999684095 ], [ 354487.040299996733665, 259030.842500001192093 ], [ 354486.169200003147125, 259038.43470000103116 ], [ 354482.827100001275539, 259052.128400001674891 ], [ 354477.078599996864796, 259064.324799999594688 ], [ 354495.600400000810623, 259067.220600001513958 ], [ 354518.285099998116493, 259054.740699999034405 ], [ 354529.612999998033047, 259050.189300000667572 ], [ 354510.817199997603893, 258984.807599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012100", "MAP": "D9-5584-T93", "PARCEL_NAM": "4E3-5", "ACRE": ".8470", "LONGITUDE": -64.95481936, "LATITUDE": 18.36120089, "OBJECTID_1": 2961, "PARCEL_NO_": "102702012100", "Tax_Legal_": "4E3-2,4E3-3,4E3-4,4E3-5,4E3-6 & 4E-3 ESTATE ROW ESTATE HULL NO.4 LITTLE NORTHSIDE QUARTER", "Name": "DEWINDT, OLYMPIA & OTHERS", "Address": "PO Box 8484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 255800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.11647662799999, "SHAPE_Area": 3721.13575223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356304.475299999117851, 259065.309300001710653 ], [ 356303.485200002789497, 259060.405099999159575 ], [ 356295.586400002241135, 259021.277699999511242 ], [ 356290.966300003230572, 259021.542100001126528 ], [ 356278.864399999380112, 259022.287399999797344 ], [ 356269.167099997401237, 259024.741099998354912 ], [ 356265.119300000369549, 259026.607900001108646 ], [ 356260.25450000166893, 259029.734400000423193 ], [ 356250.492399998009205, 259039.787000000476837 ], [ 356236.695200003683567, 259050.228799998760223 ], [ 356214.82769999653101, 259061.448899999260902 ], [ 356211.003499999642372, 259062.056699998676777 ], [ 356204.970899999141693, 259062.532900001853704 ], [ 356199.414700001478195, 259062.374200001358986 ], [ 356196.819499999284744, 259061.200300000607967 ], [ 356194.730800002813339, 259084.232200000435114 ], [ 356212.172200001776218, 259081.760299999266863 ], [ 356291.864699997007847, 259070.465599998831749 ], [ 356305.136500000953674, 259068.584600001573563 ], [ 356304.475299999117851, 259065.309300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94597197, "LATITUDE": 18.36105008, "OBJECTID_1": 3703, "PARCEL_NO_": "102801012100", "Tax_Legal_": "6C ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "ELMIRA C SITOSKY LIV TR", "Address": "6405 Bristol Glen Dr", "City": "Memphis", "State": "Tennessee", "Zip": 38135, "Country": "United States", "Land_Value": 205900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.12144242599999, "SHAPE_Area": 2241.20674908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357207.92339999973774, 259007.937600001692772 ], [ 357180.535700000822544, 259004.546999998390675 ], [ 357178.218199998140335, 259087.276700001209974 ], [ 357198.366999998688698, 259088.497099999338388 ], [ 357199.988600000739098, 259087.454900000244379 ], [ 357200.004799999296665, 259085.55519999936223 ], [ 357205.638199999928474, 259086.867899999022484 ], [ 357206.678300000727177, 259059.434200000017881 ], [ 357207.92339999973774, 259007.937600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801029100", "MAP": "D9-5721-T94", "PARCEL_NAM": "6G-3", "ACRE": "0.51", "LONGITUDE": -64.94548658, "LATITUDE": 18.36127255, "OBJECTID_1": 3837, "PARCEL_NO_": "102801029100", "Tax_Legal_": "ST PETER 6G-3 LITTLE NORTHSIDE", "Name": "GREAUX, PAUL A. & ANGELES", "Address": "1601 N 71st Ave", "City": "Hollywood", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 66700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.69243493600001, "SHAPE_Area": 2343.66963377 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357290.381999999284744, 259078.062199998646975 ], [ 357266.431699998676777, 259049.790800001472235 ], [ 357251.061499997973442, 259055.575599998235703 ], [ 357206.678300000727177, 259059.434200000017881 ], [ 357205.638199999928474, 259086.867899999022484 ], [ 357206.430200003087521, 259088.563099998980761 ], [ 357249.170100003480911, 259088.279599998146296 ], [ 357272.589100003242493, 259084.249400001019239 ], [ 357290.381999999284744, 259078.062199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96954898, "LATITUDE": 18.36115155, "OBJECTID_1": 2495, "PARCEL_NO_": "102602033400", "Tax_Legal_": "DOROTHEA 1A-9-4 LT. NORTHSIDE", "Name": "BELMONTE, ALEJANDRO & ANA", "Address": "PO Box 303708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 87300, "Improved_V": 337700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.5384972, "SHAPE_Area": 1912.1097697800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354730.722900003194809, 259012.149700000882149 ], [ 354719.45610000193119, 259009.524399999529123 ], [ 354666.803000003099442, 259037.591099999845028 ], [ 354689.959499999880791, 259064.378400001674891 ], [ 354706.89750000089407, 259063.883699998259544 ], [ 354712.593800000846386, 259057.808600001037121 ], [ 354713.439699999988079, 259053.171500001102686 ], [ 354719.967500001192093, 259044.147900000214577 ], [ 354721.632299996912479, 259038.039799999445677 ], [ 354730.722900003194809, 259012.149700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702045900", "MAP": "D9-1093-T72", "PARCEL_NAM": "13-8", "ACRE": null, "LONGITUDE": -64.9575336, "LATITUDE": 18.36076391, "OBJECTID_1": 3150, "PARCEL_NO_": "102702045900", "Tax_Legal_": "BONNE RESOLUTION 13-8 LT. NORTHSIDE", "Name": "CHRISTOPHER, JUSTIN & S", "Address": "PO Box 1377", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.74487375400003, "SHAPE_Area": 3012.4996042399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355941.372599996626377, 259072.720800001174212 ], [ 355946.264499999582767, 259066.427999999374151 ], [ 355956.037299998104572, 259055.108899999409914 ], [ 355972.377499997615814, 259030.122499998658895 ], [ 355983.764799997210503, 259018.605599999427795 ], [ 355998.384499996900558, 259006.270700000226498 ], [ 356004.2787000015378, 258976.977000001817942 ], [ 355961.675399996340275, 258961.218400001525879 ], [ 355941.372599996626377, 259072.720800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702046100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95688479, "LATITUDE": 18.36112825, "OBJECTID_1": 3152, "PARCEL_NO_": "102702046100", "Tax_Legal_": "BONNE RESOLUTION 13-3 LITTLE", "Name": "KING, ROBERT L. & MYTSOOKO", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27900, "Improved_V": 376700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.296487547, "SHAPE_Area": 1719.94661503 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356065.110699996352196, 259030.037099998444319 ], [ 356031.344499997794628, 259018.150600001215935 ], [ 356024.76630000025034, 259033.084399998188019 ], [ 356015.601899996399879, 259067.628800000995398 ], [ 356027.678599998354912, 259069.838500000536442 ], [ 356037.35080000013113, 259070.339899998158216 ], [ 356048.635600000619888, 259070.854400001466274 ], [ 356064.257600001990795, 259035.5185999982059 ], [ 356065.110699996352196, 259030.037099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96903032, "LATITUDE": 18.36099046, "OBJECTID_1": 2498, "PARCEL_NO_": "102602033700", "Tax_Legal_": "DOROTHEA 1A-9-1 LT.NORTHSIDE QTR.", "Name": "YVONNE A PENN REVOCABLE TRUST", "Address": "PO Box 302601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.961595542, "SHAPE_Area": 2675.4868700699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354791.905500002205372, 259024.049499999731779 ], [ 354770.510899998247623, 258979.755899999290705 ], [ 354759.949699997901917, 258988.957499999552965 ], [ 354745.353399999439716, 258998.54839999973774 ], [ 354738.838200002908707, 259006.094399999827147 ], [ 354736.368900001049042, 259011.9847999997437 ], [ 354728.885499998927116, 259038.52140000090003 ], [ 354719.062299996614456, 259055.750599998980761 ], [ 354719.843400001525879, 259058.71229999884963 ], [ 354722.2533999979496, 259059.787500001490116 ], [ 354726.286700002849102, 259059.609499998390675 ], [ 354740.87049999833107, 259051.496199999004602 ], [ 354752.223600000143051, 259043.989700000733137 ], [ 354774.888400003314018, 259033.831599999219179 ], [ 354784.618100002408028, 259027.578499998897314 ], [ 354791.905500002205372, 259024.049499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801053600", "MAP": "D9-2840-T84", "PARCEL_NAM": "5-4", "ACRE": ".67", "LONGITUDE": -64.94342773, "LATITUDE": 18.36069399, "OBJECTID_1": 3948, "PARCEL_NO_": "102801053600", "Tax_Legal_": "5-4 ESTATE LERKENLUND 9 GREAT NORTHSIDE QTR", "Name": "BRYAN, VINCE & TEDDY", "Address": "PO Box 303351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91800, "Improved_V": 361200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.66879068100002, "SHAPE_Area": 3702.35241606 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357430.678599998354912, 258972.743200000375509 ], [ 357450.567199997603893, 259059.8581000007689 ], [ 357459.11879999935627, 259053.90089999884367 ], [ 357500.460199996829033, 259028.48589999973774 ], [ 357481.389200001955032, 258995.39919999986887 ], [ 357475.062700003385544, 258980.782000001519918 ], [ 357469.129600003361702, 258965.747800000011921 ], [ 357430.678599998354912, 258972.743200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012500", "MAP": "D9-5721-T94", "PARCEL_NAM": "6G-4", "ACRE": "0.52", "LONGITUDE": -64.94500963, "LATITUDE": 18.36107288, "OBJECTID_1": 3707, "PARCEL_NO_": "102801012500", "Tax_Legal_": "6G-4 ESTATE ST.PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "THELMA LOUISE GREAUX REVOC FAMILY TRUST", "Address": "7434 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023436, "Country": "United States", "Land_Value": 83700, "Improved_V": 99000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.90998366599999, "SHAPE_Area": 1989.7095972 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357330.087300002574921, 259055.377999998629093 ], [ 357304.352799996733665, 259032.868400000035763 ], [ 357301.356700003147125, 259020.312399998307228 ], [ 357292.431500002741814, 259026.783300001174212 ], [ 357281.913500003516674, 259030.919100001454353 ], [ 357270.600000001490116, 259033.781800001859665 ], [ 357265.762100003659725, 259033.742199998348951 ], [ 357266.431699998676777, 259049.790800001472235 ], [ 357290.381999999284744, 259078.062199998646975 ], [ 357313.863899998366833, 259066.644299998879433 ], [ 357330.087300002574921, 259055.377999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97114517, "LATITUDE": 18.36095122, "OBJECTID_1": 2507, "PARCEL_NO_": "102602034600", "Tax_Legal_": "DOROTHEA 1A-6 LT. NORTHSIDE", "Name": "HODGE, SR. & JR. CLEOPHUS", "Address": "BOX 4021", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.49788641800001, "SHAPE_Area": 1668.71023954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354557.158900000154972, 259035.004900000989437 ], [ 354531.019900001585484, 258979.695599999278784 ], [ 354510.817199997603893, 258984.807599999010563 ], [ 354529.612999998033047, 259050.189300000667572 ], [ 354557.158900000154972, 259035.004900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9674417, "LATITUDE": 18.36111356, "OBJECTID_1": 2426, "PARCEL_NO_": "102602021100", "Tax_Legal_": "NELTJEBERG 2 LITTLE NORTHSIDE", "Name": "MOOLENAAR, KEITH C.,GEORGE E. II,KARL C&KEN C&ELMA M. FRANCIS", "Address": "PO Box 303441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27300, "Improved_V": 66700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.835416809700007, "SHAPE_Area": 344.92552700099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354921.711000002920628, 259026.378499999642372 ], [ 354905.367200002074242, 259051.787000000476837 ], [ 354936.959100000560284, 259034.947000000625849 ], [ 354938.654399998486042, 259025.250599998980761 ], [ 354921.711000002920628, 259026.378499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026500", "MAP": "D9-2055-T82", "PARCEL_NAM": "3I-8", "ACRE": ".50", "LONGITUDE": -64.93586933, "LATITUDE": 18.36115499, "OBJECTID_1": 4147, "PARCEL_NO_": "102802026500", "Tax_Legal_": "3i-6 & 1/8 INTEREST IN 3i-9 & 3i-10 ROW LERKENLUND NO. 9 NORTHSIDE QTR", "Name": "MARIO A. VERWEIJ REV. TRST", "Address": "9053 Estate Thomas", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.13210658200001, "SHAPE_Area": 1337.3050998199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358256.281199999153614, 259032.123399998992682 ], [ 358254.800800003111362, 259028.654399998486042 ], [ 358252.923199996352196, 259031.588199999183416 ], [ 358251.018200002610683, 259033.969500001519918 ], [ 358247.525700002908707, 259042.859499998390675 ], [ 358246.57320000231266, 259048.415699999779463 ], [ 358245.303199999034405, 259054.130699999630451 ], [ 358244.668200001120567, 259059.210799999535084 ], [ 358244.191899999976158, 259062.54450000077486 ], [ 358244.350699998438358, 259064.925799999386072 ], [ 358245.779399998486042, 259067.624499998986721 ], [ 358247.591700002551079, 259072.175500001758337 ], [ 358250.78490000218153, 259077.760099999606609 ], [ 358256.331699997186661, 259087.445700000971556 ], [ 358259.251599997282028, 259095.751800000667572 ], [ 358262.98929999768734, 259099.488400001078844 ], [ 358270.628700003027916, 259093.195999998599291 ], [ 358278.953900001943111, 259086.338700000196695 ], [ 358281.896200001239777, 259083.915199998766184 ], [ 358272.12389999628067, 259064.156300000846386 ], [ 358269.059399999678135, 259057.96000000089407 ], [ 358256.281199999153614, 259032.123399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103039800", "MAP": "A9-394-T91", "PARCEL_NAM": "42", "ACRE": "0.14", "LONGITUDE": -64.96712948, "LATITUDE": 18.36109077, "OBJECTID_1": 491, "PARCEL_NO_": "101103039800", "Tax_Legal_": "NELTJEBERG 42 LT. NORTHSIDE", "Name": "MARSH, WARREN S., ALVA. A, JEWEL A AND OTHERS", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.99218885000001, "SHAPE_Area": 723.72317459299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354972.467399999499321, 259031.649000000208616 ], [ 354970.167099997401237, 259017.697999998927116 ], [ 354968.550899997353554, 259018.10700000077486 ], [ 354942.694899998605251, 259024.228199999779463 ], [ 354942.626599997282028, 259032.249200001358986 ], [ 354942.464800000190735, 259051.246300000697374 ], [ 354976.452200002968311, 259037.170099999755621 ], [ 354972.467399999499321, 259031.649000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702016500", "MAP": "D9-5584-T93", "PARCEL_NAM": "4E3-6", "ACRE": ".8512", "LONGITUDE": -64.95411774, "LATITUDE": 18.36108768, "OBJECTID_1": 3001, "PARCEL_NO_": "102702016500", "Tax_Legal_": "6I-7A & 6I-6 HULL 4B NORTHSIDE QTR", "Name": "SMITH, MARGARITA & URDLEY N.", "Address": "PO Box 9274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.30622181199999, "SHAPE_Area": 2815.2381610699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356371.215499997138977, 259045.245799999684095 ], [ 356327.865000002086163, 259015.567499998956919 ], [ 356324.059299997985363, 259017.802099999040365 ], [ 356313.555600002408028, 259020.249299999326468 ], [ 356295.586400002241135, 259021.277699999511242 ], [ 356303.485200002789497, 259060.405099999159575 ], [ 356304.475299999117851, 259065.309300001710653 ], [ 356305.136500000953674, 259068.584600001573563 ], [ 356318.143100000917912, 259066.741200000047684 ], [ 356346.690499998629093, 259062.695199999958277 ], [ 356371.809500001370907, 259059.135200001299381 ], [ 356379.392499998211861, 259058.060400001704693 ], [ 356388.125600002706051, 259056.822700001299381 ], [ 356378.756700001657009, 259050.408700000494719 ], [ 356377.015299998223782, 259049.216499999165535 ], [ 356371.215499997138977, 259045.245799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96422816, "LATITUDE": 18.36039936, "OBJECTID_1": 2795, "PARCEL_NO_": "102701012200", "Tax_Legal_": "DOROTHEA REMAINDER 13D LITTLE NORTHSIDE", "Name": "BROWN, OMAR", "Address": "PO Box 10902", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 147800, "Improved_V": 44600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 465.93018365, "SHAPE_Area": 7763.7594763899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355261.371100001037121, 258910.734900001436472 ], [ 355244.675899997353554, 258882.733899999409914 ], [ 355234.901199996471405, 258894.26410000026226 ], [ 355215.657600000500679, 258881.440999999642372 ], [ 355212.412600003182888, 258883.7364999987185 ], [ 355204.398000001907349, 258877.9712999984622 ], [ 355192.983800001442432, 258892.654500000178814 ], [ 355247.172799997031689, 258968.247299998998642 ], [ 355295.676399998366833, 259048.648699998855591 ], [ 355330.550999999046326, 259025.080600000917912 ], [ 355261.371100001037121, 258910.734900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012100", "MAP": "D9-5584-T93", "PARCEL_NAM": "4E3-4", "ACRE": ".6263", "LONGITUDE": -64.95510906, "LATITUDE": 18.360803, "OBJECTID_1": 2961, "PARCEL_NO_": "102702012100", "Tax_Legal_": "4E3-2,4E3-3,4E3-4,4E3-5,4E3-6 & 4E-3 ESTATE ROW ESTATE HULL NO.4 LITTLE NORTHSIDE QUARTER", "Name": "DEWINDT, OLYMPIA & OTHERS", "Address": "PO Box 8484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 255800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.142412221, "SHAPE_Area": 4014.6451142300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356259.505699999630451, 259022.973299998790026 ], [ 356258.090599998831749, 258974.573499999940395 ], [ 356226.045199997723103, 258975.203400000929832 ], [ 356217.168499998748302, 258975.975099999457598 ], [ 356204.561200000345707, 258975.834699999541044 ], [ 356197.53999999910593, 259053.25620000064373 ], [ 356201.002199999988079, 259055.071699999272823 ], [ 356203.383400000631809, 259056.182900000363588 ], [ 356207.034699998795986, 259056.500399999320507 ], [ 356211.479699999094009, 259055.547899998724461 ], [ 356215.693300001323223, 259054.489900000393391 ], [ 356227.028399996459484, 259049.094200000166893 ], [ 356237.569799996912479, 259042.214400000870228 ], [ 356259.505699999630451, 259022.973299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801017700", "MAP": "D9-5721-T94", "PARCEL_NAM": "6G-1", "ACRE": ".520", "LONGITUDE": -64.94561275, "LATITUDE": 18.3609501, "OBJECTID_1": 3754, "PARCEL_NO_": "102801017700", "Tax_Legal_": "ST PETER 6G-1 LT NORTHSIDE", "Name": "GREAUX, LAWRENCE & EVELYN", "Address": "6G-1 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 226300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.24528767300001, "SHAPE_Area": 2184.61084342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357246.550800003111362, 259017.119600001722574 ], [ 357242.560599997639656, 259012.231800001114607 ], [ 357207.92339999973774, 259007.937600001692772 ], [ 357206.678300000727177, 259059.434200000017881 ], [ 357251.061499997973442, 259055.575599998235703 ], [ 357266.431699998676777, 259049.790800001472235 ], [ 357265.762100003659725, 259033.742199998348951 ], [ 357248.026799999177456, 259033.174800001084805 ], [ 357243.208700001239777, 259030.813400000333786 ], [ 357240.845499999821186, 259024.250100001692772 ], [ 357243.305799998342991, 259019.415100000798702 ], [ 357246.550800003111362, 259017.119600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96974484, "LATITUDE": 18.36085321, "OBJECTID_1": 2496, "PARCEL_NO_": "102602033500", "Tax_Legal_": "DOROTHEA 1A9-5 LT. NORTHSIDE", "Name": "REGISTE, JOSEPH", "Address": "1A9-5 DOROTHEA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81100, "Improved_V": 398100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.4011965, "SHAPE_Area": 2802.9808895400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354719.45610000193119, 259009.524399999529123 ], [ 354699.616599999368191, 258971.998399998992682 ], [ 354688.277800001204014, 258977.816300000995398 ], [ 354673.726400002837181, 258982.130100000649691 ], [ 354664.821000002324581, 258986.279100000858307 ], [ 354652.640000000596046, 258996.311900001019239 ], [ 354647.753600001335144, 259001.971400000154972 ], [ 354640.455399997532368, 259006.7668999992311 ], [ 354666.803000003099442, 259037.591099999845028 ], [ 354719.45610000193119, 259009.524399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97086503, "LATITUDE": 18.36081849, "OBJECTID_1": 2505, "PARCEL_NO_": "102602034400", "Tax_Legal_": "DOROTHEA 1A-7A LT. NORTHSIDE", "Name": "WALTERS MILES, JASMINE, MACY , MILAN R & MOSIAH F MILES", "Address": "1192 Rolling Green Dr", "City": "Acworth", "State": "Georgia", "Zip": 30102, "Country": "United States", "Land_Value": 72700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.35744455099999, "SHAPE_Area": 2292.4370568300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354593.606600001454353, 259016.093699999153614 ], [ 354569.020900003612041, 258967.763199999928474 ], [ 354560.119099996984005, 258971.489999998360872 ], [ 354531.019900001585484, 258979.695599999278784 ], [ 354557.158900000154972, 259035.004900000989437 ], [ 354571.742700003087521, 259026.891600001603365 ], [ 354593.606600001454353, 259016.093699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702046000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95716534, "LATITUDE": 18.36091452, "OBJECTID_1": 3151, "PARCEL_NO_": "102702046000", "Tax_Legal_": "BONNE RESOLUTION 13-7 LT. NORTHSIDE", "Name": "JOHN M MELUCCI & JULIE K MELUCCI REVOC FAM TRUST", "Address": "7607 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47000, "Improved_V": 179100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.893741199, "SHAPE_Area": 1291.4462708000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355980.393899999558926, 259035.676600001752377 ], [ 355992.432899996638298, 259042.318999998271465 ], [ 356014.971900001168251, 259046.9364 ], [ 356020.795900002121925, 259025.874699998646975 ], [ 356036.394500002264977, 258993.282900001853704 ], [ 356038.050300002098083, 258988.230200000107288 ], [ 356037.267399996519089, 258985.479600001126528 ], [ 355989.3496999964118, 259025.617400001734495 ], [ 355980.393899999558926, 259035.676600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103034300", "MAP": "D9-5829-T94", "PARCEL_NAM": "40 REM", "ACRE": ".45", "LONGITUDE": -64.96661175, "LATITUDE": 18.36096467, "OBJECTID_1": 479, "PARCEL_NO_": "101103034300", "Tax_Legal_": "NELTJEBERG 40 /EASTERN PT LT. NORTHSIDE", "Name": "MOOLENAAR, ELLA MAE", "Address": "2386 Morris Ave", "City": "Bronx", "State": "New York", "Zip": 10468, "Country": "United States", "Land_Value": 49800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.592888243, "SHAPE_Area": 1343.1175589300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354996.611800000071526, 259037.124000001698732 ], [ 355014.456799998879433, 259024.815499998629093 ], [ 355020.09910000115633, 259025.072799999266863 ], [ 355025.745099999010563, 259024.907900001853704 ], [ 355032.18299999833107, 259026.438299998641014 ], [ 355036.999300003051758, 259029.010800000280142 ], [ 355040.197599999606609, 259032.203400000929832 ], [ 355045.870600000023842, 259028.872299998998642 ], [ 355060.560400001704693, 259008.305399999022484 ], [ 355032.174800001084805, 259020.068599998950958 ], [ 355022.023199997842312, 259016.402899999171495 ], [ 355021.599799998104572, 259003.279599998146296 ], [ 355020.26969999819994, 258998.50560000166297 ], [ 355000.078000001609325, 259008.865800000727177 ], [ 354979.864399999380112, 259015.244300000369549 ], [ 354979.783500000834465, 259024.742800001055002 ], [ 354980.570100001990795, 259027.071299999952316 ], [ 354983.746799997985363, 259032.796799998730421 ], [ 354987.749499998986721, 259036.207100000232458 ], [ 354996.611800000071526, 259037.124000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026700", "MAP": "D9-2055-T82", "PARCEL_NAM": "3I-7", "ACRE": ".60", "LONGITUDE": -64.93566409, "LATITUDE": 18.36094798, "OBJECTID_1": 4149, "PARCEL_NO_": "102802026700", "Tax_Legal_": "3i-7 & 1/8 INTEREST IN 3i-9 & 3i-10 ROW LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "MARIO A. VERWEIJ REV. TRST.", "Address": "9053 Estate Thomas", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.460807268, "SHAPE_Area": 2660.6773181600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358319.846100002527237, 259072.766699999570847 ], [ 358264.543300002813339, 258989.124499998986721 ], [ 358262.145099997520447, 259000.473000001162291 ], [ 358260.574500001966953, 259007.90989999845624 ], [ 358259.516199998557568, 259018.228700000792742 ], [ 358259.098700001835823, 259020.021800000220537 ], [ 358255.463200002908707, 259027.61939999833703 ], [ 358254.800800003111362, 259028.654399998486042 ], [ 358256.281199999153614, 259032.123399998992682 ], [ 358269.059399999678135, 259057.96000000089407 ], [ 358272.12389999628067, 259064.156300000846386 ], [ 358281.896200001239777, 259083.915199998766184 ], [ 358308.253899998962879, 259075.594300001859665 ], [ 358319.846100002527237, 259072.766699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801017800", "MAP": "D9-5721-T94", "PARCEL_NAM": "6G-2", "ACRE": "0.51", "LONGITUDE": -64.94468057, "LATITUDE": 18.36081824, "OBJECTID_1": 3755, "PARCEL_NO_": "102801017800", "Tax_Legal_": "ST PETER 6G-2 LITTLE NORTHSIDE QTR.", "Name": "BRYAN, EDWIN & MARY", "Address": "7434 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 236100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.12564018699999, "SHAPE_Area": 1945.3157401000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357301.356700003147125, 259020.312399998307228 ], [ 357304.352799996733665, 259032.868400000035763 ], [ 357330.087300002574921, 259055.377999998629093 ], [ 357335.765600003302097, 259051.413699999451637 ], [ 357339.838500000536442, 259046.591899998486042 ], [ 357344.755500003695488, 259037.344000000506639 ], [ 357347.296800002455711, 259023.010400000959635 ], [ 357355.636799998581409, 258990.570300001651049 ], [ 357352.415100000798702, 258990.121700000017881 ], [ 357323.280000001192093, 259002.548900000751019 ], [ 357316.79169999808073, 259006.928800001740456 ], [ 357309.470200002193451, 259014.468199998140335 ], [ 357301.356700003147125, 259020.312399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702016000", "MAP": "D9-5454-T93", "PARCEL_NAM": null, "ACRE": ".8281", "LONGITUDE": -64.95369311, "LATITUDE": 18.36086292, "OBJECTID_1": 2996, "PARCEL_NO_": "102702016000", "Tax_Legal_": "4E-3-1 HULL BAY LITTLE NORTHSIDE QTR", "Name": "DEWINDT, FRANKLIN & JANET", "Address": "PO Box 502582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 108900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.68048754700001, "SHAPE_Area": 3648.3875478599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356404.209299996495247, 259001.588199999183416 ], [ 356397.012599997222424, 258990.928899999707937 ], [ 356393.341899998486042, 258991.418299999088049 ], [ 356388.173699997365475, 258991.84010000154376 ], [ 356384.134400002658367, 258991.735800001770258 ], [ 356380.959399998188019, 258991.10080000013113 ], [ 356378.101899996399879, 258990.624600000679493 ], [ 356372.863099999725819, 258989.037099998444319 ], [ 356364.846000000834465, 258987.281500000506639 ], [ 356362.385600000619888, 258988.084600001573563 ], [ 356358.167099997401237, 258989.583700001239777 ], [ 356357.146899998188019, 258992.370799999684095 ], [ 356350.044699996709824, 258996.483300000429153 ], [ 356344.375299997627735, 258999.392200000584126 ], [ 356341.920400001108646, 259003.594000000506639 ], [ 356337.851099997758865, 259007.993599999696016 ], [ 356329.732199996709824, 259014.471099998801947 ], [ 356327.865000002086163, 259015.567499998956919 ], [ 356371.215499997138977, 259045.245799999684095 ], [ 356377.015299998223782, 259049.216499999165535 ], [ 356378.756700001657009, 259050.408700000494719 ], [ 356388.125600002706051, 259056.822700001299381 ], [ 356404.593400001525879, 259054.488800000399351 ], [ 356406.0962999984622, 259042.749299999326468 ], [ 356408.565600000321865, 259036.858899999409914 ], [ 356412.724899999797344, 259021.905299998819828 ], [ 356411.598200000822544, 259012.5320999994874 ], [ 356408.202600002288818, 259007.502700001001358 ], [ 356404.209299996495247, 259001.588199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011900", "MAP": "D9-1041-T72", "PARCEL_NAM": "2D-1", "ACRE": ".23", "LONGITUDE": -64.94004164, "LATITUDE": 18.36078286, "OBJECTID_1": 4039, "PARCEL_NO_": "102802011900", "Tax_Legal_": "LERKENLUND 2D-1 GR NORTHSIDE", "Name": "JUNE BRYAN QUERRARD REVOCABLE TRUST", "Address": "7552 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023532, "Country": "United States", "Land_Value": 37300, "Improved_V": 173400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.70942514, "SHAPE_Area": 605.32109591899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357838.082999996840954, 259027.221900001168251 ], [ 357835.135899998247623, 259019.933899998664856 ], [ 357832.91780000180006, 259014.448600001633167 ], [ 357831.611699998378754, 259011.218600001186132 ], [ 357827.372599996626377, 259011.50730000063777 ], [ 357818.80799999833107, 259012.090500000864267 ], [ 357802.172100000083447, 259013.223400000482798 ], [ 357810.068000003695488, 259032.919700000435114 ], [ 357811.8125, 259037.196600001305342 ], [ 357838.082999996840954, 259027.221900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701010200", "MAP": "D9-1613-T80", "PARCEL_NAM": "20A-1", "ACRE": "1.2", "LONGITUDE": -64.96485635000001, "LATITUDE": 18.36033612, "OBJECTID_1": 2776, "PARCEL_NO_": "102701010200", "Tax_Legal_": "DOROTHEA ESTATE 20A-1 LITTLE NORTHSIDE", "Name": "SWAN, MARION VIVIAN", "Address": "PO Box 304076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 136500, "Improved_V": 243700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.06912904299998, "SHAPE_Area": 4941.3789367500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355239.181400001049042, 258957.099500000476837 ], [ 355192.983800001442432, 258892.654500000178814 ], [ 355191.354900002479553, 258894.541000001132488 ], [ 355183.198299996554852, 258905.451099999248981 ], [ 355166.885099999606609, 258927.271299999207258 ], [ 355155.497800000011921, 258938.788199998438358 ], [ 355202.657999999821186, 259013.901299998164177 ], [ 355239.181400001049042, 258957.099500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96860525, "LATITUDE": 18.36073394, "OBJECTID_1": 2499, "PARCEL_NO_": "102602033800", "Tax_Legal_": "DOROTHEA 1-A-9-2 LT. NORTHSIDE", "Name": "PENN, C. M. , D. L. , D. M. & D. L. , JR", "Address": "PO Box 6534", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 48600, "Improved_V": 174600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.67845675800001, "SHAPE_Area": 2297.37500228 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354831.560500003397465, 259007.275499999523163 ], [ 354843.666000001132488, 259006.107999999076128 ], [ 354790.861100003123283, 258957.335400000214577 ], [ 354782.70269999653101, 258968.456599999219179 ], [ 354770.510899998247623, 258979.755899999290705 ], [ 354791.905500002205372, 259024.049499999731779 ], [ 354822.674900002777576, 259009.102600000798702 ], [ 354831.560500003397465, 259007.275499999523163 ] ] ], [ [ [ 354843.666000001132488, 259006.107999999076128 ], [ 354849.315499998629093, 259005.521000001579523 ], [ 354850.150600001215935, 259002.150299999862909 ], [ 354843.666000001132488, 259006.107999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701015900", "MAP": "A9-660A-T006", "PARCEL_NAM": "40A-1", "ACRE": ".032", "LONGITUDE": -64.96638961, "LATITUDE": 18.36069177, "OBJECTID_1": 2835, "PARCEL_NO_": "102701015900", "Tax_Legal_": "NELTJEBERG 40-A LITTLE NORTHSIDE", "Name": "SMITH, RAQUEMA LAYCOYA", "Address": "PO Box 306892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.172037959000001, "SHAPE_Area": 231.932131478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355025.69820000231266, 258993.444699998944998 ], [ 355035.4949000030756, 259000.245799999684095 ], [ 355045.607100002467632, 258992.183600001037121 ], [ 355044.579800002276897, 258991.0760000012815 ], [ 355035.026399999856949, 258976.643399998545647 ], [ 355030.9425999969244, 258982.731699999421835 ], [ 355029.277900002896786, 258988.839800000190735 ], [ 355025.69820000231266, 258993.444699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702046200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95675738, "LATITUDE": 18.36077671, "OBJECTID_1": 3153, "PARCEL_NO_": "102702046200", "Tax_Legal_": "BONNE RESOLUTION 13-2 LT. NORTHSIDE QTR.", "Name": "KING, ROBERT L. & MYTSOOKO", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.34189521600001, "SHAPE_Area": 1146.34717892 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356071.868699997663498, 258993.995400000363588 ], [ 356044.536799997091293, 258984.0614 ], [ 356042.843199998140335, 258993.546799998730421 ], [ 356031.344499997794628, 259018.150600001215935 ], [ 356065.110699996352196, 259030.037099998444319 ], [ 356071.868699997663498, 258993.995400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97049819, "LATITUDE": 18.36066839, "OBJECTID_1": 2504, "PARCEL_NO_": "102602034300", "Tax_Legal_": "DOROHTEA 1A-7 LT. NORTHSIDE", "Name": "BROWN, JEFFERY JR., JENELLE A.,JACQUELINE A., & JAMEEL A.", "Address": "7908 Clearview Cir", "City": "Riverdale", "State": "Georgia", "Zip": 30296, "Country": "United States", "Land_Value": 73500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.667899025, "SHAPE_Area": 2357.4562030400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354619.768200002610683, 258974.089099999517202 ], [ 354609.48759999871254, 258950.362500000745058 ], [ 354569.020900003612041, 258967.763199999928474 ], [ 354593.606600001454353, 259016.093699999153614 ], [ 354608.181400001049042, 259009.035799998790026 ], [ 354617.862499997019768, 259008.481800001114607 ], [ 354633.223800003528595, 259003.752399999648333 ], [ 354619.768200002610683, 258974.089099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602022300", "MAP": "F9-928-T62", "PARCEL_NAM": "1CA", "ACRE": null, "LONGITUDE": -64.96757353, "LATITUDE": 18.36069059, "OBJECTID_1": 2434, "PARCEL_NO_": "102602022300", "Tax_Legal_": "DOROTHEA 1CA LITTLE NORTHSIDE", "Name": "BRYAN, ASHLEY F. & ALBERTINA H.", "Address": "PO Box 11957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46100, "Improved_V": 71400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.63292067699999, "SHAPE_Area": 2275.2021278699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354914.169299997389317, 259016.755199998617172 ], [ 354915.155100002884865, 259000.801300000399351 ], [ 354938.060000002384186, 259000.37220000103116 ], [ 354938.391099996864796, 258961.498199999332428 ], [ 354893.176500000059605, 258968.305300001055002 ], [ 354878.281700000166893, 259012.935199998319149 ], [ 354914.169299997389317, 259016.755199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022700", "MAP": "G9-866-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94177761, "LATITUDE": 18.36048899, "OBJECTID_1": 3800, "PARCEL_NO_": "102801022700", "Tax_Legal_": "LERKENLUND 5P GR NORTHSIDE QTR", "Name": "QUERRARD, AGNES", "Address": "7472 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 161200, "Improved_V": 117900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.763266225, "SHAPE_Area": 4272.7168485900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357687.977799996733665, 258976.825100000947714 ], [ 357626.123700000345707, 258949.087699998170137 ], [ 357617.985100001096725, 258957.887099999934435 ], [ 357601.73650000244379, 258972.108399998396635 ], [ 357589.580700002610683, 258979.186099998652935 ], [ 357635.042400002479553, 259038.031100001186132 ], [ 357636.676600001752377, 259035.511399999260902 ], [ 357652.158399999141693, 259016.639699999243021 ], [ 357687.977799996733665, 258976.825100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96924621, "LATITUDE": 18.36058515, "OBJECTID_1": 2497, "PARCEL_NO_": "102602033600", "Tax_Legal_": "DOROTHEA 1A9-6 LT. NORTHSIDE", "Name": "BARBER, SCOTT & JUDITH", "Address": "PO Box 9487", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71900, "Improved_V": 291400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.919476113, "SHAPE_Area": 2526.3876609600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354769.769299998879433, 258972.150400001555681 ], [ 354745.844300001859665, 258940.923799999058247 ], [ 354737.721799999475479, 258947.823499999940395 ], [ 354721.516500003635883, 258956.978900000452995 ], [ 354699.616599999368191, 258971.998399998992682 ], [ 354719.45610000193119, 259009.524399999529123 ], [ 354730.722900003194809, 259012.149700000882149 ], [ 354730.746299996972084, 259009.405699998140335 ], [ 354732.39299999922514, 259005.408399999141693 ], [ 354737.295699998736382, 258997.84910000115633 ], [ 354742.988399997353554, 258992.196199998259544 ], [ 354752.710900001227856, 258986.787399999797344 ], [ 354762.451399996876717, 258979.267700001597404 ], [ 354769.769299998879433, 258972.150400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96780364, "LATITUDE": 18.36017595, "OBJECTID_1": 2422, "PARCEL_NO_": "102602020600", "Tax_Legal_": "DOROTHEA 1CD LITTLE NORTHSIDE", "Name": "MONTENEGRO, JOAN", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39100, "Improved_V": 245700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.28128238900001, "SHAPE_Area": 1578.24602112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354873.644500002264977, 258894.684900000691414 ], [ 354867.770099997520447, 258921.656800001859665 ], [ 354866.918799996376038, 258926.927099999040365 ], [ 354894.356799997389317, 258924.407499998807907 ], [ 354894.193199999630451, 258943.615699999034405 ], [ 354885.084600001573563, 258971.616599999368191 ], [ 354871.836599998176098, 259012.249200001358986 ], [ 354878.281700000166893, 259012.935199998319149 ], [ 354893.176500000059605, 258968.305300001055002 ], [ 354900.636500000953674, 258944.512800000607967 ], [ 354899.878700003027916, 258938.807100001722574 ], [ 354900.064000003039837, 258917.065900001674891 ], [ 354900.182599999010563, 258903.134700000286102 ], [ 354900.213200002908707, 258899.546399999409914 ], [ 354900.251000002026558, 258895.113699998706579 ], [ 354901.111199997365475, 258888.787999998778105 ], [ 354895.456299997866154, 258890.008200000971556 ], [ 354873.644500002264977, 258894.684900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702022400", "MAP": "F9-3559-T93", "PARCEL_NAM": "6B-1", "ACRE": null, "LONGITUDE": -64.95337667, "LATITUDE": 18.36076974, "OBJECTID_1": 3025, "PARCEL_NO_": "102702022400", "Tax_Legal_": "HULL 6B-1 LT NORTHSIDE", "Name": "DEWINDT, FRANKLIN & JANET", "Address": "PO Box 502582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 8700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.599196049, "SHAPE_Area": 511.01565096500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356418.642399996519089, 258989.867499999701977 ], [ 356418.004000000655651, 258985.060899998992682 ], [ 356412.391999997198582, 258987.132100000977516 ], [ 356408.740699999034405, 258988.243299998342991 ], [ 356403.819499999284744, 258989.672100000083447 ], [ 356400.485699996352196, 258990.465799998492002 ], [ 356397.012599997222424, 258990.928899999707937 ], [ 356404.209299996495247, 259001.588199999183416 ], [ 356408.202600002288818, 259007.502700001001358 ], [ 356411.598200000822544, 259012.5320999994874 ], [ 356412.724899999797344, 259021.905299998819828 ], [ 356408.565600000321865, 259036.858899999409914 ], [ 356406.0962999984622, 259042.749299999326468 ], [ 356404.593400001525879, 259054.488800000399351 ], [ 356409.464699998497963, 259053.79839999973774 ], [ 356414.321299999952316, 259023.818199999630451 ], [ 356417.67960000038147, 259008.224800001829863 ], [ 356418.556100003421307, 258999.999299999326468 ], [ 356418.642399996519089, 258989.867499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902011500", "MAP": "D9-2184-T82", "PARCEL_NAM": "6E-1", "ACRE": null, "LONGITUDE": -64.91695379, "LATITUDE": 18.36005748, "OBJECTID_1": 4699, "PARCEL_NO_": "102902011500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 6E-1 GT. NORTHSIDE", "Name": "CHARLES, WINSTON", "Address": "BOX 4970", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106600, "Improved_V": 48400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.70454031100002, "SHAPE_Area": 5394.6369919299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360291.350100003182888, 258998.105099998414516 ], [ 360289.834499999880791, 258913.840799998492002 ], [ 360235.817299999296665, 258914.571699999272823 ], [ 360229.573700003325939, 259018.653000000864267 ], [ 360266.502099998295307, 259005.317299999296665 ], [ 360291.350100003182888, 258998.105099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801018200", "MAP": "D9-1458-T79", "PARCEL_NAM": "1A-4", "ACRE": ".603", "LONGITUDE": -64.94512492, "LATITUDE": 18.36048668, "OBJECTID_1": 3759, "PARCEL_NO_": "102801018200", "Tax_Legal_": "ST PETER 1A-4 LITTLE NORTHSIDE QTR.", "Name": "BRYAN, EDWIN A. & MARY E", "Address": "7434 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 179700, "Improved_V": 191900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.87056985800001, "SHAPE_Area": 2691.6574981700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357293.9408999979496, 258944.258000001311302 ], [ 357282.594999998807907, 258950.920200001448393 ], [ 357269.675999999046326, 258952.925400000065565 ], [ 357247.916400000452995, 258951.480700001120567 ], [ 357259.92119999974966, 258962.133699998259544 ], [ 357263.906000003218651, 258967.654699999839067 ], [ 357267.075499996542931, 258974.224500000476837 ], [ 357269.422499999403954, 258982.6875 ], [ 357268.423799999058247, 259005.26630000025034 ], [ 357267.581500001251698, 259009.481300000101328 ], [ 357265.126599997282028, 259013.683100000023842 ], [ 357258.62219999730587, 259019.962699998170137 ], [ 357254.558200001716614, 259023.729100000113249 ], [ 357256.160099998116493, 259025.008799999952316 ], [ 357264.2195999994874, 259025.496899999678135 ], [ 357280.376400001347065, 259022.040500000119209 ], [ 357287.662000000476837, 259018.722699999809265 ], [ 357302.263700000941753, 259008.498599998652935 ], [ 357310.393399998545647, 259000.754700001329184 ], [ 357293.9408999979496, 258944.258000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602032500", "MAP": "D9-3131-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97001975000001, "LATITUDE": 18.36056186, "OBJECTID_1": 2487, "PARCEL_NO_": "102602032500", "Tax_Legal_": "DOROTHEA 1A-9-24 LT. NORTHSIDE", "Name": "CLARKE, RUDOLPH A and FERN P", "Address": "6014 NW 201st Ter", "City": "Hialeah", "State": "Florida", "Zip": 33015, "Country": "United States", "Land_Value": 68000, "Improved_V": 287800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.135668254, "SHAPE_Area": 1846.8364384399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354686.717399999499321, 258971.681800000369549 ], [ 354671.641999997198582, 258942.849700000137091 ], [ 354619.768200002610683, 258974.089099999517202 ], [ 354633.223800003528595, 259003.752399999648333 ], [ 354644.57150000333786, 258996.879099998623133 ], [ 354653.523699998855591, 258987.24210000038147 ], [ 354663.260600000619888, 258980.144600000232458 ], [ 354673.784000001847744, 258975.375599998980761 ], [ 354686.717399999499321, 258971.681800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96838265, "LATITUDE": 18.36048407, "OBJECTID_1": 2500, "PARCEL_NO_": "102602033900", "Tax_Legal_": "DOROTHEA 1A-9-3 LT. NORTHSIDE", "Name": "SCOTT, DARIL & LYDIA", "Address": "PO Box 307301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44700, "Improved_V": 169300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.241595424, "SHAPE_Area": 2636.2587434299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354857.69879999756813, 258968.014899998903275 ], [ 354800.029100000858307, 258922.368900001049042 ], [ 354796.647399999201298, 258940.706399999558926 ], [ 354790.861100003123283, 258957.335400000214577 ], [ 354843.666000001132488, 259006.107999999076128 ], [ 354850.150600001215935, 259002.150299999862909 ], [ 354857.69879999756813, 258968.014899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012100", "MAP": "D9-5454-T93", "PARCEL_NAM": "4E3-3", "ACRE": ".631", "LONGITUDE": -64.95453149, "LATITUDE": 18.36065235, "OBJECTID_1": 2961, "PARCEL_NO_": "102702012100", "Tax_Legal_": "4E3-2,4E3-3,4E3-4,4E3-5,4E3-6 & 4E-3 ESTATE ROW ESTATE HULL NO.4 LITTLE NORTHSIDE QUARTER", "Name": "DEWINDT, OLYMPIA & OTHERS", "Address": "PO Box 8484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 255800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.86856681099999, "SHAPE_Area": 2593.6514751200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356325.736599996685982, 259010.216499999165535 ], [ 356312.362000003457069, 258971.054699998348951 ], [ 356301.050200000405312, 258973.706399999558926 ], [ 356294.597900003194809, 258973.864599999040365 ], [ 356267.984200000762939, 258974.280099999159575 ], [ 356263.950900003314018, 258974.458200000226498 ], [ 356258.090599998831749, 258974.573499999940395 ], [ 356259.505699999630451, 259022.973299998790026 ], [ 356265.986800000071526, 259019.437800001353025 ], [ 356275.691299997270107, 259016.139699999243021 ], [ 356311.183399997651577, 259014.741399999707937 ], [ 356314.658600002527237, 259014.063499998301268 ], [ 356318.452799998223782, 259013.323300000280142 ], [ 356325.736599996685982, 259010.216499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012100", "MAP": "D9-5454-T93", "PARCEL_NAM": "4E3-2", "ACRE": ".629", "LONGITUDE": -64.95405748, "LATITUDE": 18.36051783, "OBJECTID_1": 2961, "PARCEL_NO_": "102702012100", "Tax_Legal_": "4E3-2,4E3-3,4E3-4,4E3-5,4E3-6 & 4E-3 ESTATE ROW ESTATE HULL NO.4 LITTLE NORTHSIDE QUARTER", "Name": "DEWINDT, OLYMPIA & OTHERS", "Address": "PO Box 8484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 255800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.87739682599999, "SHAPE_Area": 1454.5897456299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356360.037500001490116, 258983.916999999433756 ], [ 356364.290600001811981, 258983.480799999088049 ], [ 356369.846900001168251, 258984.750799998641014 ], [ 356377.308100000023842, 258986.338300000876188 ], [ 356381.753200002014637, 258986.814599998295307 ], [ 356384.547799997031689, 258987.144499998539686 ], [ 356388.420699998736382, 258986.814599998295307 ], [ 356389.849399998784065, 258986.655799999833107 ], [ 356393.341899998486042, 258985.862100001424551 ], [ 356381.636200003325939, 258983.373799998313189 ], [ 356358.166599996387959, 258978.385000001639128 ], [ 356355.782600000500679, 258971.336199998855591 ], [ 356350.536799997091293, 258955.825599998235703 ], [ 356347.965599998831749, 258956.569600000977516 ], [ 356331.752999998629093, 258966.569400001317263 ], [ 356319.633199997246265, 258969.425500001758337 ], [ 356312.362000003457069, 258971.054699998348951 ], [ 356325.736599996685982, 259010.216499999165535 ], [ 356334.668999999761581, 259002.901299998164177 ], [ 356335.495099999010563, 259000.586100000888109 ], [ 356339.568000003695488, 258995.764199998229742 ], [ 356346.864399999380112, 258991.179900001734495 ], [ 356349.511100001633167, 258990.411699999123812 ], [ 356354.448100000619888, 258986.497099999338388 ], [ 356358.099399998784065, 258984.115800000727177 ], [ 356360.037500001490116, 258983.916999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012600", "MAP": "C9-338-T94", "PARCEL_NAM": "2A", "ACRE": "2.55", "LONGITUDE": -64.94596803, "LATITUDE": 18.36035666, "OBJECTID_1": 3708, "PARCEL_NO_": "102801012600", "Tax_Legal_": "2A ST PETER No.2 LITTLE NORTHISDE QTR.", "Name": "GREAT HOUSE PIRATES LLC", "Address": "9718 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 361000, "Improved_V": 898300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.19589928200003, "SHAPE_Area": 8740.9405591899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357205.424599997699261, 258922.635299999266863 ], [ 357196.556999996304512, 258922.351599998772144 ], [ 357173.150499999523163, 258924.90430000051856 ], [ 357153.746899999678135, 258930.867199998348951 ], [ 357140.003600001335144, 258934.976599998772144 ], [ 357135.577600002288818, 258936.913899999111891 ], [ 357134.157799996435642, 258998.698100000619888 ], [ 357152.34179999679327, 259001.149900000542402 ], [ 357157.174199998378754, 259001.822700001299381 ], [ 357180.535700000822544, 259004.546999998390675 ], [ 357207.92339999973774, 259007.937600001692772 ], [ 357242.560599997639656, 259012.231800001114607 ], [ 357246.550800003111362, 259017.119600001722574 ], [ 357250.607600003480911, 259014.197500001639128 ], [ 357256.282300002872944, 259010.6554000005126 ], [ 357258.717500001192093, 259008.775499999523163 ], [ 357261.309000000357628, 258988.531700000166893 ], [ 357257.390799999237061, 258975.200699999928474 ], [ 357251.021200001239777, 258965.649399999529123 ], [ 357240.609200000762939, 258957.331500001251698 ], [ 357226.210699997842312, 258943.703699998557568 ], [ 357212.65259999781847, 258926.072000000625849 ], [ 357205.424599997699261, 258922.635299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014100", "MAP": "C9-324-T92", "PARCEL_NAM": "2C-3", "ACRE": ".62", "LONGITUDE": -64.94060743, "LATITUDE": 18.36110517, "OBJECTID_1": 4059, "PARCEL_NO_": "102802014100", "Tax_Legal_": "LERKENLUND REM 2C-3 GRT.NORTHSIDE QTR.", "Name": "BRYAN, MARIO & DENISE", "Address": "PO Box 12481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 86900, "Improved_V": 218900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.62336360400002, "SHAPE_Area": 2379.6914117900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357765.066200003027916, 259105.766100000590086 ], [ 357759.192400000989437, 259050.997299998998642 ], [ 357793.641199998557568, 259041.948499999940395 ], [ 357796.975000001490116, 259040.361000001430511 ], [ 357805.145499996840954, 259031.252999998629093 ], [ 357803.110699996352196, 259030.065999999642372 ], [ 357799.935699999332428, 259028.399099998176098 ], [ 357794.696900002658367, 259027.129099998623133 ], [ 357790.013800002634525, 259026.335400000214577 ], [ 357786.759400002658367, 259026.176600001752377 ], [ 357782.869999997317791, 259025.46229999884963 ], [ 357779.298199996352196, 259024.827300000935793 ], [ 357774.376900002360344, 259023.636599998921156 ], [ 357769.217500001192093, 259022.604800000786781 ], [ 357766.201300002634525, 259021.652300000190735 ], [ 357763.026199996471405, 259020.064800001680851 ], [ 357726.57150000333786, 259071.254900000989437 ], [ 357732.277199998497963, 259077.457100000232458 ], [ 357766.026399999856949, 259113.843699999153614 ], [ 357765.066200003027916, 259105.766100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012200", "MAP": "D9-4477-T88", "PARCEL_NAM": "4E-1B", "ACRE": ".39", "LONGITUDE": -64.95370819, "LATITUDE": 18.36039573, "OBJECTID_1": 2962, "PARCEL_NO_": "102702012200", "Tax_Legal_": "HULL BAY 4E-1 LITTLE NORTHSIDE", "Name": "MENA, GEORGE", "Address": "BOX 2444", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.756672468, "SHAPE_Area": 1236.91633615 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356404.613200001418591, 258983.16330000013113 ], [ 356380.260499998927116, 258947.223799999803305 ], [ 356350.536799997091293, 258955.825599998235703 ], [ 356355.782600000500679, 258971.336199998855591 ], [ 356358.166599996387959, 258978.385000001639128 ], [ 356381.636200003325939, 258983.373799998313189 ], [ 356393.341899998486042, 258985.862100001424551 ], [ 356396.993199996650219, 258985.385800000280142 ], [ 356401.279399998486042, 258984.274599999189377 ], [ 356404.613200001418591, 258983.16330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802012800", "MAP": "D9-1041-T72", "PARCEL_NAM": "2D", "ACRE": ".42", "LONGITUDE": -64.94008971, "LATITUDE": 18.36043224, "OBJECTID_1": 4047, "PARCEL_NO_": "102802012800", "Tax_Legal_": "LERKENLUND 2D GREAT NORTHSIDE QTR", "Name": "BRYAN, CLOTHILE", "Address": "7552 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64600, "Improved_V": 207100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.099864408, "SHAPE_Area": 2065.5700501400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357816.187399998307228, 258957.067800000309944 ], [ 357810.753100000321865, 258952.498700000345707 ], [ 357797.780100002884865, 258960.836199998855591 ], [ 357795.323399998247623, 258965.249099999666214 ], [ 357790.316500000655651, 258985.050900001078844 ], [ 357802.172100000083447, 259013.223400000482798 ], [ 357814.971199996769428, 259007.717799998819828 ], [ 357820.811599999666214, 259005.20549999922514 ], [ 357847.18299999833107, 258993.861600000411272 ], [ 357845.116999998688698, 258988.876899998635054 ], [ 357844.292900003492832, 258986.618500001728535 ], [ 357843.344700001180172, 258984.01969999819994 ], [ 357842.740500003099442, 258982.363800000399351 ], [ 357842.251000002026558, 258981.022100001573563 ], [ 357841.699299998581409, 258979.510000001639128 ], [ 357841.177199997007847, 258978.078899998217821 ], [ 357835.395700000226498, 258973.217999998480082 ], [ 357831.453199997544289, 258969.903200000524521 ], [ 357825.605599999427795, 258964.9864999987185 ], [ 357816.187399998307228, 258957.067800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97091726, "LATITUDE": 18.36043783, "OBJECTID_1": 2509, "PARCEL_NO_": "102602034800", "Tax_Legal_": "DOROTHEA 1A-8 LT. NORTHSIDE QTR", "Name": "CARTER, GRETHEL M", "Address": "PO Box 302193", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.22898366199999, "SHAPE_Area": 2247.8429333499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354588.593599997460842, 258941.95890000090003 ], [ 354532.133699998259544, 258943.607700001448393 ], [ 354510.817199997603893, 258984.807599999010563 ], [ 354531.019900001585484, 258979.695599999278784 ], [ 354560.119099996984005, 258971.489999998360872 ], [ 354569.020900003612041, 258967.763199999928474 ], [ 354609.48759999871254, 258950.362500000745058 ], [ 354606.316299997270107, 258944.003800000995398 ], [ 354601.552100002765656, 258935.309900000691414 ], [ 354588.593599997460842, 258941.95890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702045300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95669839, "LATITUDE": 18.36040486, "OBJECTID_1": 3144, "PARCEL_NO_": "102702045300", "Tax_Legal_": "BONNE RESOLUTION 13-1 LITTLE NORTHSIDE", "Name": "BERRY, ANNA & CHRISTINA", "Address": "7606 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28600, "Improved_V": 115400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.43507151099999, "SHAPE_Area": 1413.74074262 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356079.533699996769428, 258946.139899998903275 ], [ 356041.642399996519089, 258945.19649999961257 ], [ 356044.536799997091293, 258984.0614 ], [ 356071.868699997663498, 258993.995400000363588 ], [ 356074.454800002276897, 258974.384899999946356 ], [ 356079.533699996769428, 258946.139899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801018300", "MAP": "D9-1458-T79", "PARCEL_NAM": "1A-5", "ACRE": ".574", "LONGITUDE": -64.94475904, "LATITUDE": 18.36026578, "OBJECTID_1": 3760, "PARCEL_NO_": "102801018300", "Tax_Legal_": "ST PETER 1A-5 LT.NORTHSIDE", "Name": "RALPH, HILROY & DEBORAH", "Address": "910 Clauson Rd", "City": "Richmond", "State": "Virginia", "Zip": 23227, "Country": "United States", "Land_Value": 89200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.938153274, "SHAPE_Area": 2587.9199630399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357350.071699999272823, 258981.236600000411272 ], [ 357332.841700002551079, 258921.356100000441074 ], [ 357293.9408999979496, 258944.258000001311302 ], [ 357310.393399998545647, 259000.754700001329184 ], [ 357312.837499998509884, 258997.819400001317263 ], [ 357323.3699000030756, 258991.995000001043081 ], [ 357350.071699999272823, 258981.236600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602032600", "MAP": "D9-3131-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97014884, "LATITUDE": 18.36031051, "OBJECTID_1": 2488, "PARCEL_NO_": "102602032600", "Tax_Legal_": "DOROTHEA 1A9-25 LT. NORTHSIDE", "Name": "DAVIS, LARRY D", "Address": "137 N Larchmont Blvd", "City": "Los Angeles", "State": "California", "Zip": 90004, "Country": "United States", "Land_Value": 69600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.25306650900001, "SHAPE_Area": 1873.21430115 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354671.641999997198582, 258942.849700000137091 ], [ 354657.356700003147125, 258915.923900000751019 ], [ 354606.316299997270107, 258944.003800000995398 ], [ 354609.48759999871254, 258950.362500000745058 ], [ 354619.768200002610683, 258974.089099999517202 ], [ 354671.641999997198582, 258942.849700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96955524000001, "LATITUDE": 18.36031619, "OBJECTID_1": 2486, "PARCEL_NO_": "102602032400", "Tax_Legal_": "DOROTHEA 1A9-23 LT. NORTHSIDE", "Name": "EMANUEL, KISHMA", "Address": "PO BOX 302884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.50135711900001, "SHAPE_Area": 1550.07763039 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354732.111800000071526, 258943.766800001263618 ], [ 354717.788800001144409, 258921.273600000888109 ], [ 354671.641999997198582, 258942.849700000137091 ], [ 354686.717399999499321, 258971.681800000369549 ], [ 354694.814599998295307, 258967.737300001084805 ], [ 354720.765900000929832, 258950.428899999707937 ], [ 354732.111800000071526, 258943.766800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96884759, "LATITUDE": 18.36015918, "OBJECTID_1": 2470, "PARCEL_NO_": "102602030800", "Tax_Legal_": "DOROTHEA 1A9-7 LT. NORTHSIDE", "Name": "REGISTE, JOSEPH", "Address": "ESTATE MANDAHL #23-3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44700, "Improved_V": 256800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.78369143500001, "SHAPE_Area": 2367.6700141699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354745.844300001859665, 258940.923799999058247 ], [ 354769.769299998879433, 258972.150400001555681 ], [ 354780.339500002563, 258961.893300000578165 ], [ 354782.794399999082088, 258957.691599998623133 ], [ 354784.41780000180006, 258956.438299998641014 ], [ 354788.533900000154972, 258946.550599999725819 ], [ 354791.028399996459484, 258937.705099999904633 ], [ 354800.304200001060963, 258890.073800001293421 ], [ 354797.919399999082088, 258886.043499998748302 ], [ 354792.285999998450279, 258884.730900000780821 ], [ 354786.622100003063679, 258887.006599999964237 ], [ 354780.941899999976158, 258891.18189999833703 ], [ 354774.423100002110004, 258899.150100000202656 ], [ 354767.01519999653101, 258916.821400001645088 ], [ 354759.70269999653101, 258923.305399999022484 ], [ 354754.796400003135204, 258931.286800000816584 ], [ 354745.844300001859665, 258940.923799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96788559, "LATITUDE": 18.36031442, "OBJECTID_1": 2420, "PARCEL_NO_": "102602020400", "Tax_Legal_": "DOROTHEA 1CC LITTLE NORTHSIDE", "Name": "BRYAN, JOSEPH F. & NANCY M.", "Address": "PO Box 10156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37900, "Improved_V": 175600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.39714574600001, "SHAPE_Area": 1239.3674254699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354866.918799996376038, 258926.927099999040365 ], [ 354858.544600002467632, 258963.37779999896884 ], [ 354885.084600001573563, 258971.616599999368191 ], [ 354894.193199999630451, 258943.615699999034405 ], [ 354894.356799997389317, 258924.407499998807907 ], [ 354866.918799996376038, 258926.927099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96313089, "LATITUDE": 18.36008205, "OBJECTID_1": 2784, "PARCEL_NO_": "102701011000", "Tax_Legal_": "DOROTHEA 13E LITTLE NORTHSIDE", "Name": "BROWN, OMAR", "Address": "PO Box 10902", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.800054128, "SHAPE_Area": 5017.9616298399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355383.424500003457069, 258876.481300000101328 ], [ 355328.215899996459484, 258920.570199999958277 ], [ 355381.783900000154972, 258974.415199998766184 ], [ 355430.55460000038147, 258928.796000000089407 ], [ 355383.424500003457069, 258876.481300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602020500", "MAP": "F9-1759-T66", "PARCEL_NAM": "1CB", "ACRE": null, "LONGITUDE": -64.96749692, "LATITUDE": 18.36023791, "OBJECTID_1": 2421, "PARCEL_NO_": "102602020500", "Tax_Legal_": "DOROTHEA 1-CB LITTLE NORTHSIDE", "Name": "BRYAN, IVAN C. & LAURA C.,TRUSTEES", "Address": "12702 Cedar Grove Ct", "City": "Humble", "State": "Texas", "Zip": 77346, "Country": "United States", "Land_Value": 45700, "Improved_V": 218100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.753597214, "SHAPE_Area": 2104.7856768900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354938.862300001084805, 258906.195500001311302 ], [ 354900.064000003039837, 258917.065900001674891 ], [ 354899.878700003027916, 258938.807100001722574 ], [ 354900.636500000953674, 258944.512800000607967 ], [ 354893.176500000059605, 258968.305300001055002 ], [ 354938.391099996864796, 258961.498199999332428 ], [ 354938.862300001084805, 258906.195500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96828865000001, "LATITUDE": 18.36014715, "OBJECTID_1": 2471, "PARCEL_NO_": "102602030900", "Tax_Legal_": "DOROTHEA 1A-9-8 LT. NORTHSIDE", "Name": "GOMEZ, DEBORAH", "Address": "PO Box 951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.841428939, "SHAPE_Area": 2530.89157204 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354867.770099997520447, 258921.656800001859665 ], [ 354805.916000001132488, 258893.91950000077486 ], [ 354800.029100000858307, 258922.368900001049042 ], [ 354857.69879999756813, 258968.014899998903275 ], [ 354858.544600002467632, 258963.37779999896884 ], [ 354866.918799996376038, 258926.927099999040365 ], [ 354867.770099997520447, 258921.656800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94364899, "LATITUDE": 18.36019895, "OBJECTID_1": 3821, "PARCEL_NO_": "102801025800", "Tax_Legal_": "PAR 5-1 & 5-1A LERKENLUND 9 GREAT NORTHSIDE QTR", "Name": "BRYAN, TEDDY & ANGELA", "Address": "P.O. BOX 3351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 134400, "Improved_V": 448400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.055527181, "SHAPE_Area": 1521.6016395900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357469.129600003361702, 258965.747800000011921 ], [ 357467.958800002932549, 258962.780900001525879 ], [ 357457.696099996566772, 258936.943500000983477 ], [ 357420.573399998247623, 258940.439300000667572 ], [ 357413.269799999892712, 258945.868000000715256 ], [ 357410.744800001382828, 258958.30180000141263 ], [ 357417.49889999628067, 258965.49379999935627 ], [ 357430.678599998354912, 258972.743200000375509 ], [ 357469.129600003361702, 258965.747800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602041400", "MAP": null, "PARCEL_NAM": "21-18", "ACRE": null, "LONGITUDE": -64.96636519, "LATITUDE": 18.36030175, "OBJECTID_1": 2537, "PARCEL_NO_": "102602041400", "Tax_Legal_": "21-18A DOROTHEA NO.6 LITTLE NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.025646617700005, "SHAPE_Area": 452.23849059000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355031.583200000226498, 258959.651900000870228 ], [ 355036.034800000488758, 258956.655900001525879 ], [ 355040.052699998021126, 258954.982200000435114 ], [ 355045.019400000572205, 258953.884799998253584 ], [ 355051.615699999034405, 258953.166999999433756 ], [ 355052.438799999654293, 258938.132500000298023 ], [ 355038.017399996519089, 258937.649300001561642 ], [ 355027.483800001442432, 258939.383400000631809 ], [ 355023.152199998497963, 258940.670299999415874 ], [ 355023.233800001442432, 258941.083200000226498 ], [ 355028.753899998962879, 258955.693900000303984 ], [ 355031.583200000226498, 258959.651900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802012400", "MAP": "G9-2024-T72", "PARCEL_NAM": "REM 2E", "ACRE": "0.93", "LONGITUDE": -64.93974717, "LATITUDE": 18.35989029, "OBJECTID_1": 4043, "PARCEL_NO_": "102802012400", "Tax_Legal_": "LERKENLUND REM 2E GR NORTHSIDE", "Name": "BUYUKCAN, SHARON", "Address": "5437 Upper Mill Ter S", "City": "Frederick", "State": "Maryland", "Zip": 21703, "Country": "United States", "Land_Value": 136000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.02458041099999, "SHAPE_Area": 3468.80165459 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357826.660999998450279, 258883.601300001144409 ], [ 357821.8429000005126, 258881.239799998700619 ], [ 357821.826700001955032, 258883.139499999582767 ], [ 357821.744000002741814, 258892.849199999123812 ], [ 357822.152900002896786, 258939.504200000315905 ], [ 357837.438699997961521, 258943.640099998563528 ], [ 357851.984899997711182, 258966.918299999088049 ], [ 357896.045400001108646, 258928.907499998807907 ], [ 357894.827100001275539, 258927.644499998539686 ], [ 357875.641099996864796, 258908.066799998283386 ], [ 357846.734300002455711, 258893.686999998986721 ], [ 357826.660999998450279, 258883.601300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801018400", "MAP": "D9-1458-T79", "PARCEL_NAM": "1A-6", "ACRE": ".566", "LONGITUDE": -64.94443776, "LATITUDE": 18.36008984, "OBJECTID_1": 3761, "PARCEL_NO_": "102801018400", "Tax_Legal_": "ST PETER 1A-6 LT.NORTHSIDE", "Name": "COHEN, LINDA T., PHILIP N. & ZENO M.", "Address": "175 W 93rd St", "City": "New York", "State": "New York", "Zip": 10025, "Country": "United States", "Land_Value": 89200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.19179548599999, "SHAPE_Area": 2054.0636477100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357377.705700002610683, 258955.709399998188019 ], [ 357363.632700003683567, 258903.876299999654293 ], [ 357332.841700002551079, 258921.356100000441074 ], [ 357350.071699999272823, 258981.236600000411272 ], [ 357365.46000000089407, 258973.340999998152256 ], [ 357367.911300003528595, 258969.5614 ], [ 357377.705700002610683, 258955.709399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701041300", "MAP": null, "PARCEL_NAM": "21-29", "ACRE": null, "LONGITUDE": -64.9659422, "LATITUDE": 18.36021414, "OBJECTID_1": 2939, "PARCEL_NO_": "102701041300", "Tax_Legal_": "21-29 DOROTHEA \nNo.7 LITTLE NORTHSIDE QUARTER", "Name": "HUYGHUE, JR. (LIFE ESTATE), LEROY", "Address": "PO Box 9642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48600, "Improved_V": 198900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.07217760399999, "SHAPE_Area": 2338.8625146899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355051.615699999034405, 258953.166999999433756 ], [ 355054.753200002014637, 258952.825500000268221 ], [ 355066.389200001955032, 258952.350099999457598 ], [ 355066.218000002205372, 258957.891699999570847 ], [ 355095.67960000038147, 258956.030499998480082 ], [ 355110.214800000190735, 258953.616399999707937 ], [ 355122.347300000488758, 258949.282699998468161 ], [ 355116.917099997401237, 258924.118099998682737 ], [ 355110.457599997520447, 258925.120700001716614 ], [ 355095.947499997913837, 258924.579799998551607 ], [ 355081.460900001227856, 258921.294799998402596 ], [ 355061.380400002002716, 258912.053399998694658 ], [ 355054.170299999415874, 258906.506000000983477 ], [ 355051.615699999034405, 258953.166999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056000", "MAP": "D9-2316-T83", "PARCEL_NAM": "3N", "ACRE": ".18", "LONGITUDE": -64.94907574, "LATITUDE": 18.36003085, "OBJECTID_1": 3968, "PARCEL_NO_": "102801056000", "Tax_Legal_": "3N ESTATE ST.PETER LITTLE NORTHSIDE", "Name": "BRYAN, JAMES WILLIAM", "Address": "19012 E Progress Ln", "City": "CENTENNIAL", "State": "Colorado", "Zip": 80015, "Country": "United States", "Land_Value": 29200, "Improved_V": 117300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.697142431, "SHAPE_Area": 874.50479971200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356870.422899998724461, 258952.578200001269579 ], [ 356883.083999998867512, 258916.906899999827147 ], [ 356880.516599997878075, 258915.754200000315905 ], [ 356874.078699998557568, 258914.223900001496077 ], [ 356854.586800001561642, 258912.82660000026226 ], [ 356854.265000000596046, 258952.528400000184774 ], [ 356857.626999996602535, 258952.297200001776218 ], [ 356870.422899998724461, 258952.578200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9440981, "LATITUDE": 18.36023368, "OBJECTID_1": 3795, "PARCEL_NO_": "102801022200", "Tax_Legal_": "5 REM LERKENLUND NO 9 GREAT NORTHSIDE QTR", "Name": "ELLEN ELIZABETH BERRY GILLOTT REVOC FAMILY TRUST", "Address": "7410 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124600, "Improved_V": 48900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.185379132199998, "SHAPE_Area": 350.71075370599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357374.314999997615814, 258975.102200001478195 ], [ 357383.21509999781847, 258971.586500000208616 ], [ 357392.94650000333786, 258965.12220000103116 ], [ 357401.065399996936321, 258958.644799999892712 ], [ 357405.94820000231266, 258953.407400000840425 ], [ 357394.758799999952316, 258941.705699998885393 ], [ 357385.749099999666214, 258958.097300000488758 ], [ 357374.314999997615814, 258975.102200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801029900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94137483, "LATITUDE": 18.36004037, "OBJECTID_1": 3842, "PARCEL_NO_": "102801029900", "Tax_Legal_": "LERKENLUND 5P-1 GREAT NORTHSIDE", "Name": "QUERRARD, PATRICK P. & MARGARET", "Address": "PO Box 304761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 93900, "Improved_V": 193800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.76744547800001, "SHAPE_Area": 3668.9886873599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357626.123700000345707, 258949.087699998170137 ], [ 357687.977799996733665, 258976.825100000947714 ], [ 357697.745200000703335, 258966.139199998229742 ], [ 357701.830799996852875, 258959.839899998158216 ], [ 357703.511699996888638, 258951.832100000232458 ], [ 357703.630400002002716, 258937.90089999884367 ], [ 357705.288000002503395, 258932.637099999934435 ], [ 357710.995099999010563, 258925.295499999076128 ], [ 357717.474399998784065, 258921.971099998801947 ], [ 357728.7753000035882, 258920.585900001227856 ], [ 357736.051899999380112, 258918.323399998247623 ], [ 357743.3429000005126, 258914.372299998998642 ], [ 357747.4121999964118, 258909.972699999809265 ], [ 357739.334700003266335, 258911.595300000160933 ], [ 357724.826499998569489, 258910.843299999833107 ], [ 357680.475699998438358, 258910.902499999850988 ], [ 357673.20269999653101, 258912.742800001055002 ], [ 357667.533299997448921, 258915.651700001209974 ], [ 357650.482100002467632, 258929.444299999624491 ], [ 357635.07769999653101, 258939.239599999040365 ], [ 357626.123700000345707, 258949.087699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603030100", "MAP": "D9-1737-T81", "PARCEL_NAM": "1A-1", "ACRE": ".503", "LONGITUDE": -64.97082937, "LATITUDE": 18.36011243, "OBJECTID_1": 2610, "PARCEL_NO_": "102603030100", "Tax_Legal_": "DOROTHEA 1A-1 LT NORTHSIDE", "Name": "WADE, PHILLIP & PAULETTE I", "Address": "8018 Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023500, "Country": "United States", "Land_Value": 51300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.676490355, "SHAPE_Area": 2044.3337462300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354588.593599997460842, 258941.95890000090003 ], [ 354592.182099997997284, 258899.347300000488758 ], [ 354557.810999996960163, 258896.206599999219179 ], [ 354540.319099999964237, 258929.320300001651049 ], [ 354532.133699998259544, 258943.607700001448393 ], [ 354588.593599997460842, 258941.95890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602032300", "MAP": "D9-3131-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96924949, "LATITUDE": 18.3600209, "OBJECTID_1": 2485, "PARCEL_NO_": "102602032300", "Tax_Legal_": "DOROTHEA 1A9-22 LT. NORTHSIDE", "Name": "BELLOT, GERALD and VANIA", "Address": "PO BOX 306842", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.853014382, "SHAPE_Area": 1473.91045035 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354752.773100003600121, 258884.829700000584126 ], [ 354707.446999996900558, 258904.723700001835823 ], [ 354717.788800001144409, 258921.273600000888109 ], [ 354732.111800000071526, 258943.766800001263618 ], [ 354738.596500001847744, 258939.809099998325109 ], [ 354743.47749999910593, 258934.782800000160933 ], [ 354747.561200000345707, 258928.694499999284744 ], [ 354749.23139999806881, 258921.953200001269579 ], [ 354752.773100003600121, 258884.829700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602033000", "MAP": "D9-3131-T85", "PARCEL_NAM": "1A-9-29", "ACRE": ".54", "LONGITUDE": -64.96970097000001, "LATITUDE": 18.36001185, "OBJECTID_1": 2491, "PARCEL_NO_": "102602033000", "Tax_Legal_": "1A-9-29 DOROTHEA LITTLE NORTHSIDE QTR.", "Name": "FRANCIS, JASMINE Le ANDRA", "Address": "7011 Lindsley Ave", "City": "Dallas", "State": "Texas", "Zip": 75223, "Country": "United States", "Land_Value": 71100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.49702345, "SHAPE_Area": 2114.82821844 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354707.446999996900558, 258904.723700001835823 ], [ 354686.772399999201298, 258870.568399999290705 ], [ 354672.0033999979496, 258900.422800000756979 ], [ 354657.356700003147125, 258915.923900000751019 ], [ 354671.641999997198582, 258942.849700000137091 ], [ 354717.788800001144409, 258921.273600000888109 ], [ 354707.446999996900558, 258904.723700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9704327, "LATITUDE": 18.35995668, "OBJECTID_1": 2492, "PARCEL_NO_": "102602033100", "Tax_Legal_": "DOROTHEA 1A 9-30 LT. NORTHSIDE", "Name": "FERN P CLARKE REVOCABLE LIVING TRUST", "Address": "6014 NW 201st Ter", "City": "Hialeah", "State": "Florida", "Zip": 33015, "Country": "United States", "Land_Value": 70300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.299565591, "SHAPE_Area": 1936.27786442 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354593.107100002467632, 258885.422699999064207 ], [ 354592.182099997997284, 258899.347300000488758 ], [ 354588.593599997460842, 258941.95890000090003 ], [ 354601.552100002765656, 258935.309900000691414 ], [ 354625.032300002872944, 258924.103000000119209 ], [ 354628.730499997735023, 258868.615699999034405 ], [ 354593.107100002467632, 258885.422699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901010100", "MAP": "A9-579-T002", "PARCEL_NAM": "10", "ACRE": "14", "LONGITUDE": -64.93152261, "LATITUDE": 18.35854434, "OBJECTID_1": 4675, "PARCEL_NO_": "102901010100", "Tax_Legal_": "10 ZUFRIEDENHEIT NO.5 GRT NORTHSIDE QTR", "Name": "MISGUNST HOLDINGS LLC", "Address": "819 S Wabash Ave", "City": "Chicago", "State": "Illinois", "Zip": 60605, "Country": "United States", "Land_Value": 766000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1237.6123673300001, "SHAPE_Area": 78837.581864099993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358741.649099998176098, 258627.8564000017941 ], [ 358695.608300000429153, 258636.978799998760223 ], [ 358654.412699997425079, 258645.296399999409914 ], [ 358613.217000000178814, 258653.614100001752377 ], [ 358582.523199997842312, 258659.695700000971556 ], [ 358573.653800003230572, 258659.623100001364946 ], [ 358538.978699997067451, 258659.761500000953674 ], [ 358568.197300001978874, 258732.194600000977516 ], [ 358597.424900002777576, 258803.572399999946356 ], [ 358662.967799998819828, 258966.228700000792742 ], [ 358671.11540000140667, 258956.3739 ], [ 358675.992899999022484, 258951.769799999892712 ], [ 358679.232500001788139, 258950.107599999755621 ], [ 358686.4983000010252, 258949.111600000411272 ], [ 358690.522699996829033, 258949.988899998366833 ], [ 358695.337200000882149, 258952.77250000089407 ], [ 358701.712200000882149, 258961.690600000321865 ], [ 358712.899800002574921, 258973.603399999439716 ], [ 358717.726899996399879, 258974.909499999135733 ], [ 358722.564800001680851, 258974.949099998921156 ], [ 358727.413500003516674, 258973.722199998795986 ], [ 358733.088200002908707, 258970.180100001394749 ], [ 358738.240800000727177, 258933.280799999833107 ], [ 358756.001199997961521, 258930.893100000917912 ], [ 358771.321199998259544, 258931.018500000238419 ], [ 358784.209600001573563, 258932.601599998772144 ], [ 358802.715199999511242, 258937.397100001573563 ], [ 358813.962200000882149, 258942.344300001859665 ], [ 358824.419100001454353, 258945.385200001299381 ], [ 358838.079700000584126, 258950.985500000417233 ], [ 358856.536700002849102, 258961.480099998414516 ], [ 358836.962999999523163, 258608.793699998408556 ], [ 358815.961099997162819, 258613.054699998348951 ], [ 358741.649099998176098, 258627.8564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95069316, "LATITUDE": 18.36003171, "OBJECTID_1": 3069, "PARCEL_NO_": "102702032100", "Tax_Legal_": "ST PETER 3JA REMAINDER LITTLE NORTHSIDE QTR", "Name": "WILLIAMS-STOKES, ANGELA E", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92600, "Improved_V": 278900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.37481809, "SHAPE_Area": 1974.5229994599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356715.901199996471405, 258929.394600000232458 ], [ 356710.118600003421307, 258897.820700000971556 ], [ 356681.47070000320673, 258900.826200000941753 ], [ 356673.735600002110004, 258956.913800001144409 ], [ 356682.596100002527237, 258958.041799999773502 ], [ 356718.885499998927116, 258957.70549999922514 ], [ 356719.717000000178814, 258954.756999999284744 ], [ 356710.116800002753735, 258945.8125 ], [ 356708.588699996471405, 258935.878600001335144 ], [ 356706.999399997293949, 258933.121399998664856 ], [ 356698.1875, 258926.294300001114607 ], [ 356701.454099997878075, 258921.465900000184774 ], [ 356711.867899999022484, 258929.572700001299381 ], [ 356715.901199996471405, 258929.394600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020500", "MAP": "A3-43-T40", "PARCEL_NAM": "2", "ACRE": "8.45", "LONGITUDE": -64.92164162, "LATITUDE": 18.35876921, "OBJECTID_1": 4708, "PARCEL_NO_": "102902020500", "Tax_Legal_": "2 CANAAN&SHERPENJEWEL 7B GT.NORTHSIDE QTR", "Name": "THE NATURE CONSERVANCY", "Address": "3052 Estate Little Princess", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 369200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1071.98782147, "SHAPE_Area": 32476.838072400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359698.44650000333786, 258642.699099998921156 ], [ 359664.253700003027916, 258567.315999999642372 ], [ 359671.969999998807907, 258654.680100001394749 ], [ 359682.476899996399879, 258841.161699999123812 ], [ 359811.528999999165535, 258931.932700000703335 ], [ 359939.29389999806881, 258984.485199999064207 ], [ 359784.682899996638298, 258764.018500000238419 ], [ 359710.696000002324581, 258669.705099999904633 ], [ 359698.44650000333786, 258642.699099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95102846, "LATITUDE": 18.35979371, "OBJECTID_1": 3070, "PARCEL_NO_": "102702032200", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 8A LITTLE NORTHSIDE QTR", "Name": "THOMAS, TERENCE & MADELYN", "Address": "PO BOX 10867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75800, "Improved_V": 152200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 330.43951861599999, "SHAPE_Area": 4259.2642855200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356681.322599999606609, 258823.564800001680851 ], [ 356681.3800999969244, 258816.810300000011921 ], [ 356621.521300002932549, 258933.477299999445677 ], [ 356628.707999996840954, 258941.768699999898672 ], [ 356643.164099998772144, 258948.642000000923872 ], [ 356664.07599999755621, 258954.934900000691414 ], [ 356673.735600002110004, 258956.913800001144409 ], [ 356681.47070000320673, 258900.826200000941753 ], [ 356681.322599999606609, 258823.564800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702030900", "MAP": "D9-442-T64", "PARCEL_NAM": "3JA-1", "ACRE": null, "LONGITUDE": -64.95021952, "LATITUDE": 18.36012895, "OBJECTID_1": 3063, "PARCEL_NO_": "102702030900", "Tax_Legal_": "ST PETER 3JA 1 LITTLE NORTHSIDE QTR", "Name": "MC ALLISTER, LEAH", "Address": "PO Box 301918", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45200, "Improved_V": 280200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.90636266499999, "SHAPE_Area": 1310.9542621799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356765.66780000180006, 258956.1886 ], [ 356766.774599999189377, 258920.929800000041723 ], [ 356715.745999999344349, 258935.866799999028444 ], [ 356714.189699999988079, 258940.990699999034405 ], [ 356723.797100000083447, 258949.090900000184774 ], [ 356727.792700000107288, 258953.345499999821186 ], [ 356728.582800000905991, 258955.251800000667572 ], [ 356730.987400002777576, 258956.960200000554323 ], [ 356765.66780000180006, 258956.1886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702044900", "MAP": null, "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.95724311, "LATITUDE": 18.35993126, "OBJECTID_1": 3140, "PARCEL_NO_": "102702044900", "Tax_Legal_": "BONNE RESOLUTION 8B LITTLE NORTH SIDE QTR.", "Name": "PHILLIP, GRIFFITH", "Address": "PO Box 11636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 103900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 374.03758095199998, "SHAPE_Area": 6298.3568028399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356082.071299999952316, 258932.228500001132488 ], [ 355948.076999999582767, 258853.660500001162291 ], [ 355958.67849999666214, 258934.385000001639128 ], [ 355976.34009999781847, 258943.606600001454353 ], [ 356031.968400001525879, 258944.906300000846386 ], [ 356041.642399996519089, 258945.19649999961257 ], [ 356079.533699996769428, 258946.139899998903275 ], [ 356082.071299999952316, 258932.228500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103001011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91568184, "LATITUDE": 18.3599214, "OBJECTID_1": 5111, "PARCEL_NO_": "103001011600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 6D GREAT NORTHSIDE QTR", "Name": "EMELDA LEDEE REVOCABLE TRUST", "Address": "PO Box 12265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 159300, "Improved_V": 167400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.667659829, "SHAPE_Area": 3943.6151398900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360359.44030000269413, 258981.1689000017941 ], [ 360441.046800002455711, 258961.994100000709295 ], [ 360443.476599998772144, 258960.747400000691414 ], [ 360445.920699998736382, 258957.812100000679493 ], [ 360446.789899997413158, 258950.430900000035763 ], [ 360446.815099999308586, 258947.47580000013113 ], [ 360435.648999996483326, 258933.030099999159575 ], [ 360359.196800000965595, 258915.094700001180172 ], [ 360358.167499996721745, 258941.261799998581409 ], [ 360359.44030000269413, 258981.1689000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801016600", "MAP": "D9-1357-T77", "PARCEL_NAM": "8B-9", "ACRE": null, "LONGITUDE": -64.94420303, "LATITUDE": 18.35976504, "OBJECTID_1": 3743, "PARCEL_NO_": "102801016600", "Tax_Legal_": "LERKENLUND 8B-9 GT. NORTHSIDE", "Name": "VAN SLUYTMAN, BERNARD & GAIL", "Address": "PO Box 6878", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 88000, "Improved_V": 228700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.13238530199999, "SHAPE_Area": 2007.2534798900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357390.532300002872944, 258869.899300001561642 ], [ 357358.146700002253056, 258885.255199998617172 ], [ 357363.632700003683567, 258903.876299999654293 ], [ 357377.705700002610683, 258955.709399998188019 ], [ 357385.89469999819994, 258940.999899998307228 ], [ 357389.179300002753735, 258934.060699999332428 ], [ 357390.829700000584126, 258929.641199998557568 ], [ 357394.947599999606609, 258919.542399998754263 ], [ 357398.273500002920628, 258907.748399998992682 ], [ 357402.560400001704693, 258877.808200001716614 ], [ 357400.960400000214577, 258876.317400000989437 ], [ 357397.735100001096725, 258876.29109999909997 ], [ 357385.552400000393391, 258886.53489999845624 ], [ 357381.558600001037121, 258882.069299999624491 ], [ 357392.130500003695488, 258871.601100001484156 ], [ 357390.532300002872944, 258869.899300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801018100", "MAP": "D9-1458-T79", "PARCEL_NAM": "1A-3", "ACRE": ".52", "LONGITUDE": -64.94529552, "LATITUDE": 18.35996109, "OBJECTID_1": 3758, "PARCEL_NO_": "102801018100", "Tax_Legal_": "1A-3 ST PETER LITTLE NORTHSIDE", "Name": "STRIDIRON, IVER & ILVA", "Address": "PO Box 7896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 83500, "Improved_V": 358200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.394065281, "SHAPE_Area": 2405.454571 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357293.9408999979496, 258944.258000001311302 ], [ 357278.284000001847744, 258889.034499999135733 ], [ 357253.941799998283386, 258906.778200000524521 ], [ 357239.361599996685982, 258914.469300001859665 ], [ 357238.312600001692772, 258942.958399999886751 ], [ 357247.916400000452995, 258951.480700001120567 ], [ 357269.675999999046326, 258952.925400000065565 ], [ 357282.594999998807907, 258950.920200001448393 ], [ 357293.9408999979496, 258944.258000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94376242, "LATITUDE": 18.35989586, "OBJECTID_1": 3821, "PARCEL_NO_": "102801025800", "Tax_Legal_": "PAR 5-1 & 5-1A LERKENLUND 9 GREAT NORTHSIDE QTR", "Name": "BRYAN, TEDDY & ANGELA", "Address": "P.O. BOX 3351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 134400, "Improved_V": 448400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.18262609099997, "SHAPE_Area": 1631.5218268900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357457.696099996566772, 258936.943500000983477 ], [ 357439.517700001597404, 258893.731600001454353 ], [ 357432.23759999871254, 258896.416200000792742 ], [ 357420.913199998438358, 258900.545400001108646 ], [ 357408.757399998605251, 258907.623100001364946 ], [ 357398.847900003194809, 258934.984200000762939 ], [ 357394.758799999952316, 258941.705699998885393 ], [ 357405.94820000231266, 258953.407400000840425 ], [ 357406.86599999666214, 258940.327100001275539 ], [ 357409.387500002980232, 258928.315400000661612 ], [ 357413.48200000077486, 258920.960700001567602 ], [ 357418.361199997365475, 258916.145500000566244 ], [ 357422.356799997389317, 258920.399999998509884 ], [ 357416.653300002217293, 258927.319400001317263 ], [ 357414.1858000010252, 258932.998799998313189 ], [ 357414.977700002491474, 258934.693999998271465 ], [ 357417.396700002253056, 258934.713799998164177 ], [ 357431.186700001358986, 258925.116399999707937 ], [ 357434.366999998688698, 258930.419700000435114 ], [ 357420.573399998247623, 258940.439300000667572 ], [ 357457.696099996566772, 258936.943500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102802013500", "MAP": "D9-2055-T82", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93681144, "LATITUDE": 18.36010474, "OBJECTID_1": 4054, "PARCEL_NO_": "102802013500", "Tax_Legal_": "3 LERKENLUND ESTATE ROAD ROW NO 9 GREAT NORTHSIDE QTR", "Name": "RANCHES OF YELLOWSTONE CLUB LLC", "Address": "PO Box 7997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 284600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1306.23962555, "SHAPE_Area": 3176.3407509100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358226.05120000243187, 258937.572500001639128 ], [ 358220.437600001692772, 258930.472800001502037 ], [ 358216.12610000371933, 258924.352299999445677 ], [ 358207.759800001978874, 258928.498599998652935 ], [ 358201.626900002360344, 258932.441199999302626 ], [ 358182.087734177883249, 258943.970665381668368 ], [ 358162.890500001609325, 258956.060899998992682 ], [ 358152.702583233476616, 258962.582467077823821 ], [ 358142.15711671783356, 258968.508479329320835 ], [ 358131.28887574368855, 258973.819394821592141 ], [ 358120.133699998259544, 258978.497699998319149 ], [ 358119.774994589795824, 258978.73197108253953 ], [ 358119.381411950045731, 258978.90122006094316 ], [ 358118.964626014698297, 258979.00042689073598 ], [ 358118.53699894528836, 258979.026649028150132 ], [ 358118.111214459000621, 258978.979108706320403 ], [ 358117.699901620682795, 258978.859216004348127 ], [ 358117.315260255942121, 258978.670527023379691 ], [ 358116.968699096061755, 258978.418638410250423 ], [ 358116.670497386774514, 258978.111021356860874 ], [ 358116.429499998688698, 258977.756799999624491 ], [ 358115.927289913175628, 258976.882435128383804 ], [ 358115.579213389020879, 258975.936088663642295 ], [ 358115.395177505735774, 258974.944695859681815 ], [ 358115.380420358967967, 258973.936474096059101 ], [ 358115.53536197199719, 258972.940119744162075 ], [ 358115.855592340754811, 258971.983991400804371 ], [ 358116.331996952940244, 258971.095302735688165 ], [ 358116.951016208797228, 258970.299347926076734 ], [ 358117.695031358976848, 258969.618781724799192 ], [ 358118.542865975992754, 258969.072974652459379 ], [ 358119.470388685236685, 258968.677461666782619 ], [ 358120.451200000941753, 258968.443500000983477 ], [ 358127.861807971785311, 258961.662697471911088 ], [ 358134.860835013445467, 258954.457837035588454 ], [ 358141.424055998213589, 258946.853856253059348 ], [ 358147.528754216327798, 258938.877074126037769 ], [ 358153.153800003230572, 258930.555100001394749 ], [ 358158.634328905085567, 258920.255151842982741 ], [ 358163.681970790552441, 258909.736290663830005 ], [ 358168.288000002503395, 258899.016699999570847 ], [ 358171.280238666862715, 258890.843116111820564 ], [ 358174.033900000154972, 258882.586100000888109 ], [ 358176.606777018227149, 258874.041997846099548 ], [ 358178.924199998378754, 258865.42509999871254 ], [ 358178.835871223243885, 258864.145992898673285 ], [ 358178.540431575733237, 258862.89834216205054 ], [ 358178.045767826843075, 258861.715453865763266 ], [ 358177.365085041441489, 258860.628905251331162 ], [ 358176.516554068541154, 258859.667701769300038 ], [ 358175.522826469969004, 258858.857502777769696 ], [ 358174.410429836367257, 258858.219936565204989 ], [ 358173.209059631917626, 258857.772022982302587 ], [ 358171.950786473229527, 258857.525719096738612 ], [ 358170.669200003147125, 258857.48759999871254 ], [ 358166.665726756560616, 258858.40576825136668 ], [ 358162.817900002002716, 258859.842799998819828 ], [ 358157.1520992241567, 258868.024892404791899 ], [ 358151.296300001442432, 258876.07209999859333 ], [ 358147.9679000005126, 258880.665100000798702 ], [ 358144.646985703730024, 258883.506611312594032 ], [ 358140.975429730664473, 258885.87775766782579 ], [ 358137.019386384345125, 258887.735815617343178 ], [ 358132.850135877612047, 258889.047306567954365 ], [ 358128.54280000180006, 258889.788600001484156 ], [ 358123.354911548784003, 258890.087753670028178 ], [ 358118.163020057254471, 258889.868796463124454 ], [ 358113.018740298051853, 258889.133905126189347 ], [ 358107.973213713732548, 258887.890385522245197 ], [ 358103.07660000026226, 258886.150600001215935 ], [ 358090.427334879816044, 258880.965041376708541 ], [ 358078.089872202777769, 258875.075988733966369 ], [ 358066.103299997746944, 258868.502099998295307 ], [ 358062.245200000703335, 258870.078299999237061 ], [ 358058.909999996423721, 258871.440799999982119 ], [ 358058.4341000020504, 258871.635299999266863 ], [ 358058.193199999630451, 258871.353000000119209 ], [ 358042.839100003242493, 258875.238099999725819 ], [ 358109.082699999213219, 258894.445300001651049 ], [ 358114.004978113051038, 258895.223295671574306 ], [ 358118.981747085519601, 258895.479946577892406 ], [ 358123.957942913752049, 258895.21241308178287 ], [ 358128.878507936489768, 258894.423655229300493 ], [ 358133.689000003039837, 258893.122400000691414 ], [ 358136.331699997186661, 258892.211500000208616 ], [ 358140.840341163391713, 258890.141259398777038 ], [ 358145.05292542395182, 258887.520596284099156 ], [ 358148.90259999781847, 258884.391100000590086 ], [ 358154.172208506788593, 258879.274528024950996 ], [ 358159.117342656827532, 258873.843714931368595 ], [ 358163.719300001859665, 258868.119199998676777 ], [ 358164.756089059752412, 258866.251707898278255 ], [ 358166.045619797077961, 258864.548895878979238 ], [ 358167.562172620790079, 258863.044726397667546 ], [ 358169.275499999523163, 258861.769200000911951 ], [ 358169.660082059097476, 258861.592123114416609 ], [ 358170.06924990582047, 258861.483305572182871 ], [ 358170.490988688077778, 258861.445942705060588 ], [ 358170.912914419779554, 258861.481131640524836 ], [ 358171.32263762538787, 258861.587839086685563 ], [ 358171.708127145655453, 258861.762931673787534 ], [ 358172.058063421980478, 258862.001267963030841 ], [ 358172.362170885491651, 258862.295849420246668 ], [ 358172.611519689613488, 258862.638025921740336 ], [ 358172.798787927429657, 258863.017749757389538 ], [ 358172.918476633029059, 258863.423870672937483 ], [ 358172.967071253398899, 258863.844463287183316 ], [ 358172.943144850549288, 258864.267177270288812 ], [ 358172.84740000218153, 258864.67960000038147 ], [ 358171.243446324835531, 258873.693831333308481 ], [ 358168.878700003027916, 258882.539000000804663 ], [ 358165.897093168809079, 258892.002210636448581 ], [ 358162.397217289137188, 258901.286240132059902 ], [ 358158.389763323997613, 258910.362728856562171 ], [ 358153.886972716252785, 258919.203951147123007 ], [ 358148.90259999781847, 258927.782900001853704 ], [ 358144.597017776919529, 258934.241477937903255 ], [ 358140.108800001442432, 258940.574499998241663 ], [ 358135.464311107760295, 258946.747529269836377 ], [ 358130.646300002932549, 258952.786100000143051 ], [ 358124.420421894174069, 258958.75389305248973 ], [ 358117.795159712899476, 258964.274944869830506 ], [ 358110.802500002086163, 258969.322599999606609 ], [ 358109.965308787883259, 258970.194522606499959 ], [ 358109.273904661647975, 258971.186035841848934 ], [ 358108.74511246784823, 258972.273011912126094 ], [ 358108.391800001263618, 258973.429000001400709 ], [ 358108.229637268115766, 258974.523659197526285 ], [ 358108.225056697498076, 258975.630255115655018 ], [ 358108.378151707991492, 258976.726219269010471 ], [ 358108.6858000010252, 258977.789200000464916 ], [ 358109.145873441186268, 258978.940381404972868 ], [ 358109.783857788774185, 258980.003331153886393 ], [ 358110.583382109645754, 258980.950773530377774 ], [ 358111.523930289084092, 258981.758396783203352 ], [ 358112.581367483770009, 258982.405476975865895 ], [ 358113.728559431270696, 258982.875409771193517 ], [ 358114.936068726179656, 258983.156136505160248 ], [ 358116.172910195833538, 258983.24045361726894 ], [ 358117.407345992163755, 258983.126197496574605 ], [ 358118.607699997723103, 258982.816300000995398 ], [ 358130.35329151339829, 258978.517250135104405 ], [ 358141.891099996864796, 258973.688200000673532 ], [ 358160.234700001776218, 258963.638099998235703 ], [ 358191.76519999653101, 258943.657900001853704 ], [ 358199.821837403054815, 258938.56687747160322 ], [ 358208.037100002169609, 258933.736000001430511 ], [ 358208.430618993239477, 258933.226565901859431 ], [ 358208.901922573335469, 258932.788098989170976 ], [ 358209.438400970771909, 258932.432330486917635 ], [ 358210.025700655533001, 258932.168779014900792 ], [ 358210.648108369205147, 258932.004495917528402 ], [ 358211.288971534813754, 258931.943876604607794 ], [ 358211.931143797992263, 258931.988542951527052 ], [ 358212.557443779369351, 258932.137299905967666 ], [ 358213.151114763866644, 258932.38616746160551 ], [ 358213.696273028501309, 258932.728487143584061 ], [ 358214.178332812443841, 258933.155100156523986 ], [ 358214.584396560851019, 258933.654592429084005 ], [ 358214.903599999845028, 258934.213599998503923 ], [ 358221.782189278048463, 258944.273413280432578 ], [ 358228.228479856916238, 258954.615568350767717 ], [ 358234.230899997055531, 258965.221500001847744 ], [ 358235.775797417329159, 258968.932805249729427 ], [ 358236.832079282961786, 258972.811563208466396 ], [ 358237.382307961932383, 258976.793741391680669 ], [ 358237.417400002479553, 258980.8136 ], [ 358237.484111024998128, 258987.884907966159517 ], [ 358236.769666419480927, 258994.920347939507337 ], [ 358235.282802338595502, 259001.833891308691818 ], [ 358233.04169999808073, 259008.541000001132488 ], [ 358232.092126706964336, 259011.881472909357399 ], [ 358230.611604854930192, 259015.022890381078469 ], [ 358228.639604894269723, 259017.881502778880531 ], [ 358226.228699997067451, 259020.381099998950958 ], [ 358224.376599997282028, 259022.100900001823902 ], [ 358218.743495592498221, 259027.076403445360484 ], [ 358213.647718551917933, 259032.60094470277545 ], [ 358209.142507914104499, 259038.616805145022226 ], [ 358205.274932669708505, 259045.061132998322137 ], [ 358202.085400000214577, 259051.866599999368191 ], [ 358199.073803019127809, 259059.503024869569344 ], [ 358196.796323478745762, 259067.389582300907932 ], [ 358195.2732907992322, 259075.45587467297446 ], [ 358194.518299996852875, 259083.629900000989437 ], [ 358194.72005938179791, 259093.92251110507641 ], [ 358195.700401405512821, 259104.170314757880988 ], [ 358197.453699998557568, 259114.314500000327826 ], [ 358200.282446098979563, 259126.859855110378703 ], [ 358203.644559074135032, 259139.27291016059462 ], [ 358207.533900000154972, 259151.530999999493361 ], [ 358212.870600000023842, 259151.502999998629093 ], [ 358210.540200002491474, 259146.447399999946356 ], [ 358208.52929999679327, 259141.261500000953674 ], [ 358207.047700002789497, 259137.663199998438358 ], [ 358205.565999999642372, 259134.594000000506639 ], [ 358205.017099998891354, 259132.535599999129772 ], [ 358202.134999997913837, 259120.897999998182058 ], [ 358200.396644717082381, 259112.020023700111778 ], [ 358199.037059591559228, 259103.076206253521377 ], [ 358198.058700002729893, 259094.082699999213219 ], [ 358197.743261218012776, 259087.647722435445758 ], [ 358198.068137991649564, 259081.213214454648551 ], [ 358199.030121316958684, 259074.842733628611313 ], [ 358200.619709096150473, 259068.599205093778437 ], [ 358202.821199998259544, 259062.544300001114607 ], [ 358203.011799998581409, 259061.960299998521805 ], [ 358206.014822379918769, 259053.827644276345382 ], [ 358209.591010653879493, 259045.930232678394532 ], [ 358213.722099997103214, 259038.308400001376867 ], [ 358218.24828899273416, 259032.977299870544812 ], [ 358223.258680422906764, 259028.098468745622085 ], [ 358228.70830000191927, 259023.715700000524521 ], [ 358232.194433101336472, 259018.676897836383432 ], [ 358235.112771887623239, 259013.28932417431497 ], [ 358237.428800001740456, 259007.616700001060963 ], [ 358239.011127630190458, 259001.734897936199559 ], [ 358240.107361264701467, 258995.743435003649211 ], [ 358240.710163610172458, 258989.682413176749833 ], [ 358240.815499998629093, 258983.592399999499321 ], [ 358240.6452120715403, 258976.640525598311797 ], [ 358240.009258282138035, 258969.715706579358084 ], [ 358238.910499997437, 258962.84910000115633 ], [ 358238.760475497168954, 258962.406275148270652 ], [ 358238.686697301571257, 258961.944584798737196 ], [ 358238.691247593495063, 258961.477058868040331 ], [ 358238.773997953569051, 258961.016891964711249 ], [ 358238.93261298496509, 258960.577071009320207 ], [ 358239.162616223213263, 258960.170008715038421 ], [ 358239.457516471738927, 258959.807193273765733 ], [ 358239.808990998018999, 258959.498864134016912 ], [ 358240.207120418956038, 258959.253723021247424 ], [ 358240.640668648062274, 258959.078688355948543 ], [ 358241.09740000218153, 258958.978700000792742 ], [ 358226.05120000243187, 258937.572500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94037207, "LATITUDE": 18.35991576, "OBJECTID_1": 4040, "PARCEL_NO_": "102802012200", "Tax_Legal_": "LERKENLUND 2E-2 GR NORTHSIDE", "Name": "ROSE URISE BERRY REVOCABLE LIVING TRUST", "Address": "2E-3 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68500, "Improved_V": 222600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.17618943599999, "SHAPE_Area": 1418.25374016 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357822.152900002896786, 258939.504200000315905 ], [ 357784.342600002884865, 258929.062199998646975 ], [ 357783.753799997270107, 258903.515099998563528 ], [ 357770.13459999859333, 258893.059999998658895 ], [ 357756.260099999606609, 258912.578200001269579 ], [ 357753.825000002980232, 258914.458099998533726 ], [ 357766.598300002515316, 258929.550299998372793 ], [ 357776.212899997830391, 258936.806200001388788 ], [ 357784.23650000244379, 258941.515900000929832 ], [ 357801.133100003004074, 258945.875999998301268 ], [ 357808.348499998450279, 258950.790300000458956 ], [ 357810.753100000321865, 258952.498700000345707 ], [ 357837.438699997961521, 258943.640099998563528 ], [ 357822.152900002896786, 258939.504200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97006127, "LATITUDE": 18.35976418, "OBJECTID_1": 2490, "PARCEL_NO_": "102602032900", "Tax_Legal_": "DOROTHEA 1-A-9-28 LITTLE NORTHSIDE", "Name": "BERRY, CHRISTOPHER D. & ANGELA K.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68000, "Improved_V": 274100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.63658950799999, "SHAPE_Area": 2328.09352459 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354676.304700002074242, 258868.793999999761581 ], [ 354664.396999999880791, 258846.742800001055002 ], [ 354628.730499997735023, 258868.615699999034405 ], [ 354625.032300002872944, 258924.103000000119209 ], [ 354651.752099998295307, 258911.233899999409914 ], [ 354662.33839999884367, 258899.077199999243021 ], [ 354676.304700002074242, 258868.793999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801018000", "MAP": "D9-1458-T79", "PARCEL_NAM": "1A-2", "ACRE": ".586", "LONGITUDE": -64.94491757, "LATITUDE": 18.35974802, "OBJECTID_1": 3757, "PARCEL_NO_": "102801018000", "Tax_Legal_": "ST PETER 1A-2 LT NORTHSIDE", "Name": "TURAGA PROPERTIES LLC", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 91500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.33104247, "SHAPE_Area": 2632.85074717 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357332.841700002551079, 258921.356100000441074 ], [ 357316.421700000762939, 258861.060100000351667 ], [ 357278.284000001847744, 258889.034499999135733 ], [ 357293.9408999979496, 258944.258000001311302 ], [ 357332.841700002551079, 258921.356100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801058200", "MAP": "D9-6876-T001", "PARCEL_NAM": "2B", "ACRE": null, "LONGITUDE": -64.94560118, "LATITUDE": 18.35995909, "OBJECTID_1": 3990, "PARCEL_NO_": "102801058200", "Tax_Legal_": "2B ESTATE ST.PETER No.2 LITTLE NORTHSIDE QUARTER", "Name": "STRIDIRON, IVER A. & ILVA P.", "Address": "PO Box 7896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.159310014, "SHAPE_Area": 253.69469320499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357238.312600001692772, 258942.958399999886751 ], [ 357239.361599996685982, 258914.469300001859665 ], [ 357223.183200001716614, 258920.458599999547005 ], [ 357223.964400000870228, 258923.420299999415874 ], [ 357228.732100002467632, 258931.69200000166893 ], [ 357238.312600001692772, 258942.958399999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702045000", "MAP": "F9-2661-T70", "PARCEL_NAM": "8A", "ACRE": ".917", "LONGITUDE": -64.9571058, "LATITUDE": 18.35961827, "OBJECTID_1": 3141, "PARCEL_NO_": "102702045000", "Tax_Legal_": "BONNE 8A LITTLE NORTHSIDE", "Name": "NEUMANN, ALFRED & IRMELA CO-TRUST", "Address": "PO Box 303830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 381.81924067800003, "SHAPE_Area": 4272.8842474800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356089.570900000631809, 258903.792300000786781 ], [ 355944.306199997663498, 258823.021099999547005 ], [ 355948.076999999582767, 258853.660500001162291 ], [ 356082.071299999952316, 258932.228500001132488 ], [ 356089.570900000631809, 258903.792300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96822568, "LATITUDE": 18.35980193, "OBJECTID_1": 2472, "PARCEL_NO_": "102602031000", "Tax_Legal_": "DOROTHEA 1A-9-9 LT. NORTHSIDE", "Name": "ROBINSON, CARA & KELLY M.", "Address": "NISKY MAILBOXES", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85800, "Improved_V": 90900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.01563792900001, "SHAPE_Area": 2576.0071492900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354873.644500002264977, 258894.684900000691414 ], [ 354877.017200000584126, 258877.402800001204014 ], [ 354838.395099997520447, 258867.587499998509884 ], [ 354802.073299996554852, 258871.723200000822544 ], [ 354800.399499997496605, 258878.886700000613928 ], [ 354804.414899997413158, 258880.819400001317263 ], [ 354806.799599997699261, 258884.849700000137091 ], [ 354805.916000001132488, 258893.91950000077486 ], [ 354867.770099997520447, 258921.656800001859665 ], [ 354873.644500002264977, 258894.684900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702032300", "MAP": "D9-822-T50", "PARCEL_NAM": "8", "ACRE": "1.9", "LONGITUDE": -64.95124386000001, "LATITUDE": 18.35939907, "OBJECTID_1": 3071, "PARCEL_NO_": "102702032300", "Tax_Legal_": "8 LILLIENDAHL AND MARIENHOJ NO. 3 LITTLE NORTHSIDE QUARTER", "Name": "MICHELE SHULTERBRANT AGURKIS TRUST", "Address": "PO Box 305325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 117900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 321.567286432, "SHAPE_Area": 4487.5200646599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356681.3800999969244, 258816.810300000011921 ], [ 356627.427299998700619, 258808.135999999940395 ], [ 356621.583499997854233, 258831.519600000232458 ], [ 356617.393700003623962, 258850.061500001698732 ], [ 356619.8091000020504, 258850.503499999642372 ], [ 356617.323600001633167, 258858.293600000441074 ], [ 356604.057499997317791, 258901.037000000476837 ], [ 356615.205700002610683, 258917.593600001186132 ], [ 356616.780500002205372, 258922.03940000012517 ], [ 356616.76070000231266, 258924.361299999058247 ], [ 356619.930299997329712, 258930.931099999696016 ], [ 356621.521300002932549, 258933.477299999445677 ], [ 356681.3800999969244, 258816.810300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96360679, "LATITUDE": 18.35963647, "OBJECTID_1": 2785, "PARCEL_NO_": "102701011100", "Tax_Legal_": "DOROTHEA ESTATE 13F LITTLE NORTHSIDE", "Name": "MCCLEAN-JORDAN, MALAIKA; MALIK & MACHEO McCLEAN", "Address": "11 Claremont Ave", "City": "Montclair", "State": "New Jersey", "Zip": 7042, "Country": "United States", "Land_Value": 77400, "Improved_V": 90600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.13824279900001, "SHAPE_Area": 4798.1457556100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355309.502700001001358, 258845.478799998760223 ], [ 355275.443400003015995, 258867.998100001364946 ], [ 355293.034800000488758, 258885.451799999922514 ], [ 355328.215899996459484, 258920.570199999958277 ], [ 355383.424500003457069, 258876.481300000101328 ], [ 355351.47410000115633, 258840.756099998950958 ], [ 355309.502700001001358, 258845.478799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802012500", "MAP": "G9-2024-T72", "PARCEL_NAM": "2E-1", "ACRE": "0.45", "LONGITUDE": -64.9402321, "LATITUDE": 18.3596986, "OBJECTID_1": 4044, "PARCEL_NO_": "102802012500", "Tax_Legal_": "LERKENLUND 2E-1 GR NORTHSIDE", "Name": "JOEL BERRY BRYAN REVOCABLE TRUST", "Address": "PO Box 11503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59000, "Improved_V": 30100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.999933172, "SHAPE_Area": 2544.42857379 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357770.13459999859333, 258893.059999998658895 ], [ 357783.753799997270107, 258903.515099998563528 ], [ 357784.342600002884865, 258929.062199998646975 ], [ 357822.152900002896786, 258939.504200000315905 ], [ 357821.744000002741814, 258892.849199999123812 ], [ 357821.826700001955032, 258883.139499999582767 ], [ 357821.8429000005126, 258881.239799998700619 ], [ 357805.784999996423721, 258873.086800001561642 ], [ 357802.572300001978874, 258871.582899998873472 ], [ 357790.531599998474121, 258865.151500001549721 ], [ 357785.639799997210503, 258871.444299999624491 ], [ 357774.218299999833107, 258886.971799999475479 ], [ 357770.13459999859333, 258893.059999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96857641, "LATITUDE": 18.35957517, "OBJECTID_1": 2473, "PARCEL_NO_": "102602031100", "Tax_Legal_": "DOROTHEA 1A9-10 LT. NORTHSIDE", "Name": "JURKOWSKI, ED", "Address": "340 Bougher Hill Rd", "City": "Easton", "State": "Pennsylvania", "Zip": 18042, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.62605677099998, "SHAPE_Area": 3427.4697156000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354880.380900003015995, 258861.176100000739098 ], [ 354779.803999997675419, 258835.443900000303984 ], [ 354768.364600002765656, 258853.08219999819994 ], [ 354763.436800003051758, 258863.596500001847744 ], [ 354760.11259999871254, 258875.179400000721216 ], [ 354757.371799997985363, 258912.942800000309944 ], [ 354758.975500002503395, 258914.011300001293421 ], [ 354762.209700003266335, 258912.982299998402596 ], [ 354770.432899996638298, 258894.262299999594688 ], [ 354775.321099996566772, 258888.391699999570847 ], [ 354780.194899998605251, 258884.209699999541044 ], [ 354791.535400003194809, 258878.180799998342991 ], [ 354797.186800003051758, 258877.382699999958277 ], [ 354800.399499997496605, 258878.886700000613928 ], [ 354802.073299996554852, 258871.723200000822544 ], [ 354838.395099997520447, 258867.587499998509884 ], [ 354877.017200000584126, 258877.402800001204014 ], [ 354880.380900003015995, 258861.176100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96599659, "LATITUDE": 18.35980131, "OBJECTID_1": 2931, "PARCEL_NO_": "102701040400", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 19 LITTLE NORTHSIDE", "Name": "RICHARDSON, SEATON", "Address": "21 Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.3703331, "SHAPE_Area": 1951.0856726100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355112.95380000025034, 258916.064100001007318 ], [ 355094.800599999725819, 258869.897100001573563 ], [ 355072.95830000191927, 258878.162099998444319 ], [ 355064.891599997878075, 258878.518300000578165 ], [ 355052.021099999547005, 258874.824400000274181 ], [ 355031.956799998879433, 258863.683299999684095 ], [ 355030.338799998164177, 258864.303300000727177 ], [ 355030.322599999606609, 258866.203000001609325 ], [ 355053.468299999833107, 258894.256799999624491 ], [ 355066.28660000115633, 258904.072000000625849 ], [ 355075.922799997031689, 258908.794900000095367 ], [ 355083.150799997150898, 258912.231600001454353 ], [ 355094.419399999082088, 258914.645899999886751 ], [ 355112.95380000025034, 258916.064100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96559269, "LATITUDE": 18.35975306, "OBJECTID_1": 2932, "PARCEL_NO_": "102701040500", "Tax_Legal_": "DOROTHEA 21-20 NO 7 LT NORTHSIDE QTR", "Name": "BROOKS, DESIREY M", "Address": "PO Box 305904", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56900, "Improved_V": 151000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.41341645700001, "SHAPE_Area": 1935.4315033600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355148.532300002872944, 258904.534099999815226 ], [ 355120.773500002920628, 258850.055799998342991 ], [ 355110.203299999237061, 258860.312899999320507 ], [ 355094.800599999725819, 258869.897100001573563 ], [ 355112.95380000025034, 258916.064100001007318 ], [ 355122.640399999916553, 258914.876800000667572 ], [ 355134.763800002634525, 258911.598600000143051 ], [ 355148.532300002872944, 258904.534099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702031000", "MAP": "G9-1615-T70", "PARCEL_NAM": "3JA-2-2", "ACRE": ".17", "LONGITUDE": -64.95025757000001, "LATITUDE": 18.35983395, "OBJECTID_1": 3064, "PARCEL_NO_": "102702031000", "Tax_Legal_": "ST PETER 3JA-2-2 GR NORTHSIDE", "Name": "MC ALLISTER, LEAH", "Address": "PO Box 301918", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.29947436200001, "SHAPE_Area": 1463.95693164 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356713.014600001275539, 258897.487100001424551 ], [ 356721.682899996638298, 258928.487300001084805 ], [ 356731.242700003087521, 258926.986999999731779 ], [ 356766.808600001037121, 258916.934500001370907 ], [ 356767.830700002610683, 258891.611699998378754 ], [ 356717.790799997746944, 258896.901599999517202 ], [ 356713.014600001275539, 258897.487100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702016200", "MAP": "D9-8356-T009", "PARCEL_NAM": "9-3", "ACRE": ".32", "LONGITUDE": -64.95339076, "LATITUDE": 18.35875691, "OBJECTID_1": 2998, "PARCEL_NO_": "102702016200", "Tax_Legal_": "9-3 (SECTION 1) LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR.", "Name": "THIBOU Jr., MILFORD A", "Address": "PO Box 307174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037174, "Country": "United States", "Land_Value": 41900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.00389434600001, "SHAPE_Area": 1861.17286319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356431.062899999320507, 258762.410300001502037 ], [ 356429.679399996995926, 258758.846099998801947 ], [ 356423.81870000064373, 258760.873399998992682 ], [ 356393.110399998724461, 258768.6435999982059 ], [ 356393.030000001192093, 258768.664299998432398 ], [ 356392.859200000762939, 258768.973200000822544 ], [ 356385.933899998664856, 258809.067499998956919 ], [ 356429.495300002396107, 258808.75899999961257 ], [ 356431.719899997115135, 258779.936500001698732 ], [ 356432.60360000282526, 258770.866700001060963 ], [ 356431.062899999320507, 258762.410300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96425469, "LATITUDE": 18.35963803, "OBJECTID_1": 2831, "PARCEL_NO_": "102701015500", "Tax_Legal_": "DOROTHEA 13B-2 LITTLE NORTHSIDE QTR", "Name": "BROWN, OMAR", "Address": "PO Box 10902", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85800, "Improved_V": 276300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.72610453199999, "SHAPE_Area": 1828.7903782799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355233.678800001740456, 258848.446800000965595 ], [ 355254.459499999880791, 258870.148400001227856 ], [ 355244.675899997353554, 258882.733899999409914 ], [ 355261.371100001037121, 258910.734900001436472 ], [ 355293.034800000488758, 258885.451799999922514 ], [ 355275.443400003015995, 258867.998100001364946 ], [ 355259.473600000143051, 258849.502300001680851 ], [ 355247.497599996626377, 258835.472100000828505 ], [ 355233.678800001740456, 258848.446800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602032200", "MAP": "D9-3131-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96939823, "LATITUDE": 18.35966676, "OBJECTID_1": 2484, "PARCEL_NO_": "102602032200", "Tax_Legal_": "DOROTHEA 1A9-21 No.7A LITTLE NORTHSIDE QTR.", "Name": "NUNEZ, DR. MAXINE, LIFE INTEREST", "Address": "PO Box 1093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.92448176, "SHAPE_Area": 2445.4531405399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354753.680100001394749, 258873.015900000929832 ], [ 354708.002599999308586, 258839.500300001353025 ], [ 354703.090999998152256, 258848.114999998360872 ], [ 354699.0253000035882, 258852.092500001192093 ], [ 354686.772399999201298, 258870.568399999290705 ], [ 354707.446999996900558, 258904.723700001835823 ], [ 354752.773100003600121, 258884.829700000584126 ], [ 354754.459499999880791, 258876.1886 ], [ 354753.680100001394749, 258873.015900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602030200", "MAP": "D9-1737-T81", "PARCEL_NAM": "1A-2", "ACRE": ".501", "LONGITUDE": -64.97074823, "LATITUDE": 18.35967994, "OBJECTID_1": 2464, "PARCEL_NO_": "102602030200", "Tax_Legal_": "DOROTHEA 1A-2 LT.NORTHSIDE QTR.", "Name": "REY, FELIX S & ICILMA ANTHONY", "Address": "PO Box 307397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68000, "Improved_V": 37500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.92555892799999, "SHAPE_Area": 1777.9503034300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354593.107100002467632, 258885.422699999064207 ], [ 354595.840700000524521, 258848.503699999302626 ], [ 354559.536799997091293, 258850.528599999845028 ], [ 354560.237099997699261, 258862.988899998366833 ], [ 354556.889499999582767, 258877.315799999982119 ], [ 354551.115900002419949, 258892.467300001531839 ], [ 354557.810999996960163, 258896.206599999219179 ], [ 354592.182099997997284, 258899.347300000488758 ], [ 354593.107100002467632, 258885.422699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96532979, "LATITUDE": 18.35952846, "OBJECTID_1": 2933, "PARCEL_NO_": "102701040600", "Tax_Legal_": "DOROTHEA 21-21 L. NORTHSIDE QTR", "Name": "BRATHWAITE, OTTLEY & DENISE", "Address": "19642 NW 62nd Ct", "City": "Hialeah", "State": "Florida", "Zip": 33015, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.89586346199999, "SHAPE_Area": 2493.11129755 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355176.909699998795986, 258886.401200000196695 ], [ 355144.527000002563, 258806.765000000596046 ], [ 355141.97860000282526, 258821.942899998277426 ], [ 355140.333599999547005, 258825.729100000113249 ], [ 355125.65089999884367, 258845.451699998229742 ], [ 355120.773500002920628, 258850.055799998342991 ], [ 355148.532300002872944, 258904.534099999815226 ], [ 355153.393500000238419, 258901.829599998891354 ], [ 355166.387999996542931, 258890.959100000560284 ], [ 355176.909699998795986, 258886.401200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801017900", "MAP": "D9-1458-T79", "PARCEL_NAM": "1A-1", "ACRE": ".654", "LONGITUDE": -64.94460481, "LATITUDE": 18.35946467, "OBJECTID_1": 3756, "PARCEL_NO_": "102801017900", "Tax_Legal_": "1A-1 ST PETER NO.2 LITTLE NORTHSIDE QTR.", "Name": "THREE J DEVELOPMENT LLC", "Address": "16-19 Frenchman S Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.70894440699999, "SHAPE_Area": 2662.8910151 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357358.146700002253056, 258885.255199998617172 ], [ 357334.673000000417233, 258801.047800000756979 ], [ 357332.178599998354912, 258809.893300000578165 ], [ 357327.83049999922514, 258847.010200001299381 ], [ 357324.551299996674061, 258853.316199999302626 ], [ 357320.478399999439716, 258858.138000000268221 ], [ 357316.421700000762939, 258861.060100000351667 ], [ 357332.841700002551079, 258921.356100000441074 ], [ 357363.632700003683567, 258903.876299999654293 ], [ 357358.146700002253056, 258885.255199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801058300", "MAP": "D9-6876-T001", "PARCEL_NAM": "2C", "ACRE": "2.00", "LONGITUDE": -64.94603813000001, "LATITUDE": 18.35947528, "OBJECTID_1": 3991, "PARCEL_NO_": "102801058300", "Tax_Legal_": "2C ESTATE ST.PETER NO.2 LITTLE NORTHSIDE QUARTER", "Name": "GHP LLC", "Address": "7406 Estate St Peter Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 211700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 410.21264799699998, "SHAPE_Area": 9781.8654005900007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357241.055200003087521, 258904.984000001102686 ], [ 357241.269900001585484, 258809.839200001209974 ], [ 357163.557199999690056, 258836.775499999523163 ], [ 357129.069700002670288, 258848.729400001466274 ], [ 357131.015900000929832, 258931.129000000655651 ], [ 357144.925999999046326, 258925.095499999821186 ], [ 357167.562100000679493, 258918.314699999988079 ], [ 357180.475699998438358, 258916.942699998617172 ], [ 357203.883900001645088, 258914.179000001400709 ], [ 357218.411899998784065, 258912.609099999070168 ], [ 357232.153399996459484, 258908.710799999535084 ], [ 357241.055200003087521, 258904.984000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96778933, "LATITUDE": 18.35953985, "OBJECTID_1": 2428, "PARCEL_NO_": "102602021300", "Tax_Legal_": "DOROTHEA 1CE LT. NORTHSIDE QTR.", "Name": "GOLDEN, NAOMI", "Address": "1386 Wears Valley Rd", "City": "Pigeon Forge", "State": "Tennessee", "Zip": 37863, "Country": "United States", "Land_Value": 24300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.93525856799999, "SHAPE_Area": 1125.5806975800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354895.456299997866154, 258890.008200000971556 ], [ 354899.258699998259544, 258822.278299998492002 ], [ 354889.590199999511242, 258821.354800000786781 ], [ 354888.7550999969244, 258824.725499998778105 ], [ 354886.266000002622604, 258832.937800001353025 ], [ 354880.380900003015995, 258861.176100000739098 ], [ 354877.017200000584126, 258877.402800001204014 ], [ 354873.644500002264977, 258894.684900000691414 ], [ 354895.456299997866154, 258890.008200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96459489, "LATITUDE": 18.35964939, "OBJECTID_1": 2830, "PARCEL_NO_": "102701015400", "Tax_Legal_": "DOROTHEA 13BA LITTLE NORTHSIDE QTR", "Name": "BROWN, OMAR", "Address": "PO Box 10902", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81700, "Improved_V": 378100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.884799243, "SHAPE_Area": 747.29741301499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355204.398000001907349, 258877.9712999984622 ], [ 355212.412600003182888, 258883.7364999987185 ], [ 355215.657600000500679, 258881.440999999642372 ], [ 355234.901199996471405, 258894.26410000026226 ], [ 355244.675899997353554, 258882.733899999409914 ], [ 355226.364399999380112, 258855.1418999992311 ], [ 355204.398000001907349, 258877.9712999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94922708, "LATITUDE": 18.35938685, "OBJECTID_1": 3915, "PARCEL_NO_": "102801050100", "Tax_Legal_": "ST PETER 3L-3 LITTLE NORTHSIDE", "Name": "GOETZ, DON L. & SUSAN", "Address": "6096 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 190900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.30230452000001, "SHAPE_Area": 1585.22779661 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356843.514399997889996, 258905.107799999415874 ], [ 356854.782999999821186, 258907.522100001573563 ], [ 356861.697400003671646, 258853.116500001400709 ], [ 356865.17620000243187, 258823.380800001323223 ], [ 356836.919299997389317, 258827.371399998664856 ], [ 356839.152999997138977, 258849.13230000063777 ], [ 356839.754299998283386, 258873.201900001615286 ], [ 356842.957999996840954, 258875.761199999600649 ], [ 356845.332000002264977, 258881.05799999833107 ], [ 356841.144000001251698, 258899.388900000602007 ], [ 356841.113399997353554, 258902.977200001478195 ], [ 356843.514399997889996, 258905.107799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97037371, "LATITUDE": 18.35938061, "OBJECTID_1": 2494, "PARCEL_NO_": "102602033300", "Tax_Legal_": "DOROTHEA 1A9-32 LT. NORTHSIDE", "Name": "DURANT, OCINTO", "Address": "PO Box 10518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.834171758, "SHAPE_Area": 2162.4002459200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354612.459600001573563, 258790.80009999871254 ], [ 354609.632500000298023, 258838.695199999958277 ], [ 354595.840700000524521, 258848.503699999302626 ], [ 354593.107100002467632, 258885.422699999064207 ], [ 354628.730499997735023, 258868.615699999034405 ], [ 354633.355400003492832, 258798.99269999936223 ], [ 354617.26690000295639, 258794.427999999374151 ], [ 354612.459600001573563, 258790.80009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802027500", "MAP": "D9-6281-T97", "PARCEL_NAM": "4B-A", "ACRE": "0.58", "LONGITUDE": -64.93483604, "LATITUDE": 18.35943753, "OBJECTID_1": 4157, "PARCEL_NO_": "102802027500", "Tax_Legal_": "4B-A LERKENLUND #9 GT.NORTHSIDE QTR.", "Name": "WINDFALL TRUST", "Address": "7272 Estate Misgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 128100, "Improved_V": 378100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.48249714299999, "SHAPE_Area": 2651.46756112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358380.223600000143051, 258852.602099999785423 ], [ 358367.145999997854233, 258815.684099998325109 ], [ 358364.324000000953674, 258822.659200001507998 ], [ 358361.349776131566614, 258835.09850866268971 ], [ 358358.820699997246265, 258847.635899998247623 ], [ 358356.186946055735461, 258858.678577982296702 ], [ 358352.9825560823665, 258869.569366832613014 ], [ 358349.2162000015378, 258880.278799999505281 ], [ 358350.554499998688698, 258881.822799999266863 ], [ 358351.777297847613227, 258889.009530055162031 ], [ 358353.700123235059436, 258896.04139083341579 ], [ 358356.304378190427087, 258902.850368701125262 ], [ 358359.564873813302256, 258909.370605795644224 ], [ 358363.450073905929457, 258915.539037015667418 ], [ 358367.922399997711182, 258921.296000000089407 ], [ 358398.181599996984005, 258904.107099998742342 ], [ 358395.840300001204014, 258897.336800001561642 ], [ 358386.396499998867512, 258870.028400000184774 ], [ 358380.223600000143051, 258852.602099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602032000", "MAP": "D9-3131-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96911975, "LATITUDE": 18.35931288, "OBJECTID_1": 2482, "PARCEL_NO_": "102602032000", "Tax_Legal_": "DOROTHEA 1A-9-19 LITTLE NORTHSIDE QTR", "Name": "KRYGSVELD, TIMOTHY & JENKINS, H. B", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 558700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.52118540199999, "SHAPE_Area": 2657.0238739500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354708.002599999308586, 258839.500300001353025 ], [ 354753.680100001394749, 258873.015900000929832 ], [ 354759.459200002253056, 258857.231100000441074 ], [ 354762.740199998021126, 258850.714099999517202 ], [ 354765.184299997985363, 258847.778799999505281 ], [ 354791.371100001037121, 258802.819099999964237 ], [ 354789.771099999547005, 258801.328299999237061 ], [ 354787.350299999117851, 258801.519600000232458 ], [ 354771.956699997186661, 258810.048500001430511 ], [ 354744.500699996948242, 258814.678899999707937 ], [ 354714.586199998855591, 258823.933299999684095 ], [ 354715.372699998319149, 258826.261700000613928 ], [ 354715.331399999558926, 258831.116599999368191 ], [ 354711.269199997186661, 258834.671900000423193 ], [ 354708.002599999308586, 258839.500300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97008802000001, "LATITUDE": 18.3592666, "OBJECTID_1": 2493, "PARCEL_NO_": "102602033200", "Tax_Legal_": "DOROTHEA 1-A-9-31 LT. NORTHSIDE", "Name": "GUMBS, MARGARET B", "Address": "P. O. BOX 5453", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81100, "Improved_V": 406700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.70619797699999, "SHAPE_Area": 1883.5994192200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354664.396999999880791, 258846.742800001055002 ], [ 354659.195200003683567, 258794.771200001239777 ], [ 354653.560000002384186, 258793.669599998742342 ], [ 354643.848300002515316, 258797.811999998986721 ], [ 354633.355400003492832, 258798.99269999936223 ], [ 354628.730499997735023, 258868.615699999034405 ], [ 354664.396999999880791, 258846.742800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602039700", "MAP": "D9-3132-T85", "PARCEL_NAM": "1A-9-26", "ACRE": ".51", "LONGITUDE": -64.96978557, "LATITUDE": 18.35928139, "OBJECTID_1": 2521, "PARCEL_NO_": "102602039700", "Tax_Legal_": "1A-9-26 ESTATE DOROTHEA LITTLE NORTHSIDE", "Name": "PENN, BRENDALEY", "Address": "PO Box 7261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.486768705, "SHAPE_Area": 1672.7984223000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354664.396999999880791, 258846.742800001055002 ], [ 354676.304700002074242, 258868.793999999761581 ], [ 354705.704199999570847, 258825.338199999183416 ], [ 354697.6554000005126, 258823.583599999547005 ], [ 354693.64360000193119, 258821.228799998760223 ], [ 354689.642700001597404, 258817.607400000095367 ], [ 354688.053400002419949, 258814.85020000115037 ], [ 354679.248700000345707, 258807.178800001740456 ], [ 354659.195200003683567, 258794.771200001239777 ], [ 354664.396999999880791, 258846.742800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010300", "MAP": "A9-79-T68", "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.91447876, "LATITUDE": 18.35847425, "OBJECTID_1": 5096, "PARCEL_NO_": "103001010300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 7 GREAT NORTHSIDE QTR", "Name": "MAGENS POINT, INC.", "Address": "7 ST JOSEPH &ROSENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 419200, "Improved_V": 1910300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 930.24786108700005, "SHAPE_Area": 19140.999460300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360428.580300003290176, 258816.237500000745058 ], [ 360432.227700002491474, 258845.761799998581409 ], [ 360450.087200000882149, 258854.890000000596046 ], [ 360466.095100000500679, 258889.355099998414516 ], [ 360616.576999999582767, 258802.999600000679493 ], [ 360613.410999998450279, 258796.007599998265505 ], [ 360612.66950000077486, 258788.402100000530481 ], [ 360611.082000002264977, 258785.433800000697374 ], [ 360610.380000002682209, 258773.18470000103116 ], [ 360600.889499999582767, 258751.364399999380112 ], [ 360596.101899996399879, 258745.414599999785423 ], [ 360592.945000000298023, 258737.367199998348951 ], [ 360581.789700001478195, 258721.654899999499321 ], [ 360569.012800000607967, 258706.984900001436472 ], [ 360559.410800002515316, 258698.251499999314547 ], [ 360557.031400002539158, 258693.587999999523163 ], [ 360544.148400001227856, 258691.371599998325109 ], [ 360509.482299998402596, 258690.454599998891354 ], [ 360503.004900000989437, 258693.567999999970198 ], [ 360494.684600003063679, 258723.686200000345707 ], [ 360482.422700002789497, 258743.217599999159575 ], [ 360479.964199997484684, 258747.841499999165535 ], [ 360468.508599996566772, 258767.37950000166893 ], [ 360465.25450000166893, 258770.73030000180006 ], [ 360489.343199998140335, 258782.748700000345707 ], [ 360487.140100002288818, 258757.399500001221895 ], [ 360487.168799996376038, 258754.022199999541044 ], [ 360515.727799996733665, 258714.57039999961853 ], [ 360515.774599999189377, 258709.082299999892712 ], [ 360524.64580000191927, 258708.943799998611212 ], [ 360524.57209999859333, 258717.598099999129772 ], [ 360521.346799999475479, 258717.571699999272823 ], [ 360507.488499999046326, 258735.190099999308586 ], [ 360511.165799997746944, 258776.805599998682737 ], [ 360512.780199997127056, 258776.607700001448393 ], [ 360524.887500002980232, 258775.229200001806021 ], [ 360524.918099999427795, 258771.640799999237061 ], [ 360537.021799996495247, 258770.684399999678135 ], [ 360536.98759999871254, 258774.694899998605251 ], [ 360549.899400003254414, 258773.534000001847744 ], [ 360550.581600002944469, 258788.105099998414516 ], [ 360514.268799997866154, 258791.185400001704693 ], [ 360504.585799999535084, 258791.950500000268221 ], [ 360490.06139999628067, 258793.098200000822544 ], [ 360459.542000003159046, 258778.705099999904633 ], [ 360447.30349999666214, 258795.492400001734495 ], [ 360428.580300003290176, 258816.237500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96608831, "LATITUDE": 18.35940298, "OBJECTID_1": 2930, "PARCEL_NO_": "102701040300", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 23 LITTLE NORTHSIDE", "Name": "AUBAIN, JENNIFER", "Address": "PO Box 131163", "City": "Spring", "State": "Texas", "Zip": 77393, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.80679166100001, "SHAPE_Area": 2269.0337877799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355104.620300002396107, 258853.089999999850988 ], [ 355092.789899997413158, 258821.962499998509884 ], [ 355023.251000002026558, 258844.402499999850988 ], [ 355027.99719999730587, 258855.207100000232458 ], [ 355036.056699998676777, 258855.695300001651049 ], [ 355059.337300002574921, 258867.918099999427795 ], [ 355069.808600001037121, 258869.270399998873472 ], [ 355076.271600000560284, 258867.84569999948144 ], [ 355094.077100001275539, 258860.180900000035763 ], [ 355104.620300002396107, 258853.089999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701011200", "MAP": "G9-1742-T71", "PARCEL_NAM": "13H", "ACRE": null, "LONGITUDE": -64.9640405, "LATITUDE": 18.35938023, "OBJECTID_1": 2786, "PARCEL_NO_": "102701011200", "Tax_Legal_": "DOROTHEA 13H LITTLE NORTHSIDE", "Name": "MCCLEAN-JORDAN, MALAIKA; MALIK & MACHEO McCLEAN", "Address": "11 Claremont Ave", "City": "Montclair", "State": "New Jersey", "Zip": 7042, "Country": "United States", "Land_Value": 7800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.30672567100001, "SHAPE_Area": 1049.3267793800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355309.502700001001358, 258845.478799998760223 ], [ 355295.167099997401237, 258824.463199999183416 ], [ 355259.473600000143051, 258849.502300001680851 ], [ 355275.443400003015995, 258867.998100001364946 ], [ 355309.502700001001358, 258845.478799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030100", "MAP": "D9-6268-T97", "PARCEL_NAM": "2-1", "ACRE": ".501", "LONGITUDE": -64.96506334, "LATITUDE": 18.35922188, "OBJECTID_1": 2892, "PARCEL_NO_": "102701030100", "Tax_Legal_": "DOROTHEA ESTATE 2 No.7 LITTLE NORTHSIDE QTR.", "Name": "RYKE, ROBERT, STEVEN, RONALD & CHAR", "Address": "71 Ocean Pkwy", "City": "Brooklyn", "State": "New York", "Zip": 11218, "Country": "United States", "Land_Value": 40600, "Improved_V": 213200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.76974009100002, "SHAPE_Area": 3529.1469244800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355212.394599996507168, 258856.891100000590086 ], [ 355169.617200002074242, 258774.311500001698732 ], [ 355156.840999998152256, 258781.112300001084805 ], [ 355140.835900001227856, 258790.213100001215935 ], [ 355183.410099998116493, 258884.756400000303984 ], [ 355189.031300000846386, 258883.333999998867512 ], [ 355193.116800002753735, 258877.034600000828505 ], [ 355203.697800002992153, 258865.511100001633167 ], [ 355212.394599996507168, 258856.891100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96827957000001, "LATITUDE": 18.35927796, "OBJECTID_1": 2474, "PARCEL_NO_": "102602031200", "Tax_Legal_": "DOROTHEA 1A-9-11 LT. NORTHSIDE", "Name": "LEEPER, WILLIAM T", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78700, "Improved_V": 566300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.63175143400002, "SHAPE_Area": 3547.0337545500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354888.7550999969244, 258824.725499998778105 ], [ 354797.008100003004074, 258803.709600001573563 ], [ 354796.169399999082088, 258807.502399999648333 ], [ 354779.803999997675419, 258835.443900000303984 ], [ 354880.380900003015995, 258861.176100000739098 ], [ 354886.266000002622604, 258832.937800001353025 ], [ 354888.7550999969244, 258824.725499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93968711, "LATITUDE": 18.35914657, "OBJECTID_1": 4046, "PARCEL_NO_": "102802012700", "Tax_Legal_": "LERKENLUND 2FC GREAT NORTHSIDE QTR", "Name": "LEWIS, JANET E", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 219100, "Improved_V": 356400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.687621541, "SHAPE_Area": 5154.89644443 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357850.111699998378754, 258781.201799999922514 ], [ 357847.692699998617172, 258781.182000000029802 ], [ 357845.262999996542931, 258782.428599998354912 ], [ 357824.011200003325939, 258816.029699999839067 ], [ 357820.724799998104572, 258823.179900001734495 ], [ 357815.827600002288818, 258830.105999998748302 ], [ 357831.779399998486042, 258850.712600000202656 ], [ 357833.365099996328354, 258853.892000000923872 ], [ 357856.5, 258883.212200000882149 ], [ 357865.27589999884367, 258894.260899998247623 ], [ 357875.641099996864796, 258908.066799998283386 ], [ 357880.574299998581409, 258896.919300001114607 ], [ 357884.704700000584126, 258885.3429000005126 ], [ 357898.717699997127056, 258849.571699999272823 ], [ 357869.236599996685982, 258807.9560999982059 ], [ 357852.519799999892712, 258782.488000001758337 ], [ 357850.111699998378754, 258781.201799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802012600", "MAP": "F9-3013-T72", "PARCEL_NAM": "2FB", "ACRE": "0.44", "LONGITUDE": -64.93997746, "LATITUDE": 18.35939151, "OBJECTID_1": 4045, "PARCEL_NO_": "102802012600", "Tax_Legal_": "LERKENLUND 2FB GR NORTHSIDE", "Name": "LAPLACE, PIERRE & NOREEN (LIFE ESTATE)", "Address": "7794 Est St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71400, "Improved_V": 137400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.10144933700002, "SHAPE_Area": 1919.25765381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357856.5, 258883.212200000882149 ], [ 357833.365099996328354, 258853.892000000923872 ], [ 357829.326300002634525, 258854.703299999237061 ], [ 357825.276799999177456, 258856.781100001186132 ], [ 357817.143500000238419, 258864.947200000286102 ], [ 357805.784999996423721, 258873.086800001561642 ], [ 357821.8429000005126, 258881.239799998700619 ], [ 357826.660999998450279, 258883.601300001144409 ], [ 357846.734300002455711, 258893.686999998986721 ], [ 357875.641099996864796, 258908.066799998283386 ], [ 357865.27589999884367, 258894.260899998247623 ], [ 357856.5, 258883.212200000882149 ] ] ], [ [ [ 357831.779399998486042, 258850.712600000202656 ], [ 357815.827600002288818, 258830.105999998748302 ], [ 357806.837700001895428, 258844.175599999725819 ], [ 357790.531599998474121, 258865.151500001549721 ], [ 357802.572300001978874, 258871.582899998873472 ], [ 357813.117299996316433, 258864.280900001525879 ], [ 357822.870399996638298, 258855.283700000494719 ], [ 357831.779399998486042, 258850.712600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94728906, "LATITUDE": 18.35911221, "OBJECTID_1": 3972, "PARCEL_NO_": "102801056400", "Tax_Legal_": "ST PETER 3RD LT NORTHSIDE", "Name": "BRYAN, DENNY A", "Address": "PO Box 306407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 305500, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.79548493300001, "SHAPE_Area": 4166.5071384100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357094.370300002396107, 258801.614199999719858 ], [ 357026.667099997401237, 258797.8935999982059 ], [ 357025.808600001037121, 258804.008299998939037 ], [ 357023.654700003564358, 258867.529899999499321 ], [ 357063.914599999785423, 258874.403299998492002 ], [ 357063.970299996435642, 258867.8597999997437 ], [ 357064.11599999666214, 258850.76240000128746 ], [ 357095.682700000703335, 258836.877500001341105 ], [ 357094.370300002396107, 258801.614199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801055500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94954499000001, "LATITUDE": 18.35931848, "OBJECTID_1": 3963, "PARCEL_NO_": "102801055500", "Tax_Legal_": "ST PETER 3L-2 LITTLE NORTHSIDE QTR", "Name": "LINDA A. FINCH", "Address": "868 M FRANKLIN AVE", "City": "Palatine", "State": "Illinois", "Zip": 600672233, "Country": "United States", "Land_Value": 55200, "Improved_V": 241100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.560670211, "SHAPE_Area": 1322.42706542 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356832.074199996888638, 258828.176100000739098 ], [ 356821.577799998223782, 258829.778999999165535 ], [ 356807.044399999082088, 258831.98200000077486 ], [ 356803.732799999415874, 258842.087400000542402 ], [ 356794.613399997353554, 258871.354800000786781 ], [ 356830.89750000089407, 258871.651799999177456 ], [ 356832.515500001609325, 258871.031700000166893 ], [ 356833.534000001847744, 258846.131000000983477 ], [ 356832.074199996888638, 258828.176100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97066593, "LATITUDE": 18.35920166, "OBJECTID_1": 2501, "PARCEL_NO_": "102602034000", "Tax_Legal_": "1A-9-33 DOROTHEA NO.7A LITTLE NORTHSIDE QTR", "Name": "SPRATLEY, JR., EDISON BRUCE", "Address": "BOX 3672", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71900, "Improved_V": 163600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.17982104399999, "SHAPE_Area": 2768.9523683000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354556.015500001609325, 258804.524000000208616 ], [ 354558.257600001990795, 258836.776299998164177 ], [ 354559.536799997091293, 258850.528599999845028 ], [ 354595.840700000524521, 258848.503699999302626 ], [ 354609.632500000298023, 258838.695199999958277 ], [ 354612.459600001573563, 258790.80009999871254 ], [ 354609.255999997258186, 258788.240800000727177 ], [ 354556.015500001609325, 258804.524000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95007893, "LATITUDE": 18.35930467, "OBJECTID_1": 3060, "PARCEL_NO_": "102702030600", "Tax_Legal_": "ST PETER 3K-1&3L-1 GR NORTHSIDE", "Name": "WILLIS, LIMA & PAUL", "Address": "3K1 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50300, "Improved_V": 282300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.428988923899993, "SHAPE_Area": 507.04828965000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356771.26630000025034, 258866.941799998283386 ], [ 356772.302799999713898, 258839.930300001055002 ], [ 356755.370200000703335, 258839.791799999773502 ], [ 356747.289099998772144, 258841.836500000208616 ], [ 356743.237800002098083, 258844.125399999320507 ], [ 356744.006300002336502, 258848.564699999988079 ], [ 356756.020099997520447, 258858.162200000137091 ], [ 356765.649099998176098, 258863.729499999433756 ], [ 356771.26630000025034, 258866.941799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96569041, "LATITUDE": 18.35909456, "OBJECTID_1": 2934, "PARCEL_NO_": "102701040800", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 22 LITTLE NORTHSIDE", "Name": "THOMAS, YVONNE", "Address": "PO Box 306971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.24097375599999, "SHAPE_Area": 2099.1676974699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355083.315499998629093, 258798.242400001734495 ], [ 355092.789899997413158, 258821.962499998509884 ], [ 355104.620300002396107, 258853.089999999850988 ], [ 355117.627300001680851, 258840.741999998688698 ], [ 355130.670400001108646, 258824.1722999997437 ], [ 355133.146899998188019, 258817.437600001692772 ], [ 355134.059299997985363, 258804.990600001066923 ], [ 355125.348099999129772, 258786.342999998480082 ], [ 355122.142599999904633, 258783.994800001382828 ], [ 355115.695699997246265, 258783.519799999892712 ], [ 355089.7804000005126, 258796.606600001454353 ], [ 355083.315499998629093, 258798.242400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701012400", "MAP": "G9-1282-T69", "PARCEL_NAM": "13", "ACRE": ".26", "LONGITUDE": -64.96416876000001, "LATITUDE": 18.3592092, "OBJECTID_1": 2797, "PARCEL_NO_": "102701012400", "Tax_Legal_": "DOROTHEA 13 LITTLE NORTHSIDE", "Name": "AUBAIN, PIERRE", "Address": "BOX 3653", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26600, "Improved_V": 150500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.75301009200001, "SHAPE_Area": 965.07632853099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355295.167099997401237, 258824.463199999183416 ], [ 355280.826099999248981, 258804.080800000578165 ], [ 355247.497599996626377, 258835.472100000828505 ], [ 355259.473600000143051, 258849.502300001680851 ], [ 355295.167099997401237, 258824.463199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96621982000001, "LATITUDE": 18.35907299, "OBJECTID_1": 2935, "PARCEL_NO_": "102701040900", "Tax_Legal_": "DOROTHEA PARCEL NO. 21 LOT 24 LITTLE NORTHSIDE", "Name": "RICHARDSON, LEROY & FAYE", "Address": "7917 Estate Lilliendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68000, "Improved_V": 423000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.969689913, "SHAPE_Area": 2457.0292997000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355052.823100000619888, 258780.683200001716614 ], [ 355018.850100003182888, 258793.070799998939037 ], [ 355031.635999999940395, 258806.685400001704693 ], [ 355037.096799999475479, 258828.261599998921156 ], [ 355023.251000002026558, 258844.402499999850988 ], [ 355092.789899997413158, 258821.962499998509884 ], [ 355083.315499998629093, 258798.242400001734495 ], [ 355075.255999997258186, 258797.754299998283386 ], [ 355065.614399999380112, 258793.664599999785423 ], [ 355059.201700001955032, 258789.179099999368191 ], [ 355052.823100000619888, 258780.683200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96378306, "LATITUDE": 18.35913604, "OBJECTID_1": 2787, "PARCEL_NO_": "102701011400", "Tax_Legal_": "DOROTHEA 13A LITTLE NORTHSIDE", "Name": "BY, VILSON & KETTELIE ETIENNE", "Address": "7 Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.295966572, "SHAPE_Area": 1928.6208255700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355343.482900001108646, 258832.246899999678135 ], [ 355310.720799997448921, 258797.148299999535084 ], [ 355300.334100000560284, 258785.875399999320507 ], [ 355280.826099999248981, 258804.080800000578165 ], [ 355295.167099997401237, 258824.463199999183416 ], [ 355309.502700001001358, 258845.478799998760223 ], [ 355351.47410000115633, 258840.756099998950958 ], [ 355343.482900001108646, 258832.246899999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801058000", "MAP": "D9-6127-T96", "PARCEL_NAM": "3P-2-C", "ACRE": ".30", "LONGITUDE": -64.94835192, "LATITUDE": 18.35911511, "OBJECTID_1": 3988, "PARCEL_NO_": "102801058000", "Tax_Legal_": "ST.PETER 3P-2-C No.2 LITTLE NORTHSIDE QTR.", "Name": "BERRY, VELMA M. & CYRIL J", "Address": "7812 St Peter 3p-1", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.30847785099999, "SHAPE_Area": 1392.80732603 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356962.064999997615814, 258808.763999998569489 ], [ 356925.732299998402596, 258814.16609999909997 ], [ 356923.025700002908707, 258847.9189000017941 ], [ 356922.199600003659725, 258850.234200000762939 ], [ 356938.343800000846386, 258848.255399998277426 ], [ 356952.843099996447563, 258850.062800001353025 ], [ 356957.655799999833107, 258853.057500001043081 ], [ 356959.243199996650219, 258856.025800000876188 ], [ 356962.064999997615814, 258808.763999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96687753, "LATITUDE": 18.3590968, "OBJECTID_1": 2433, "PARCEL_NO_": "102602021800", "Tax_Legal_": "DOROTHEA 1CJ LT. NORTHSIDE", "Name": "GREAUX, ROBERT, L & G", "Address": "PO Box 306257", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60800, "Improved_V": 241800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.84572116000001, "SHAPE_Area": 2230.9060053500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355012.383400000631809, 258794.917700000107288 ], [ 354962.420800000429153, 258791.131299998611212 ], [ 354950.015000000596046, 258827.548900000751019 ], [ 355015.272399999201298, 258834.415800001472235 ], [ 355014.649499997496605, 258812.879200000315905 ], [ 355012.383400000631809, 258794.917700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96513894, "LATITUDE": 18.35807745, "OBJECTID_1": 2894, "PARCEL_NO_": "102701030300", "Tax_Legal_": "DOROTHEA 2B LITTLE NORTHSIDE", "Name": "BRYAN, J. F. , M. L. & J. J. , TRUSTEES", "Address": "PO Box 9527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 143300, "Improved_V": 246100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 653.33854177600006, "SHAPE_Area": 9173.2050735899993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355218.296999998390675, 258760.928199999034405 ], [ 355115.964000001549721, 258562.718100000172853 ], [ 355098.138800002634525, 258572.704700000584126 ], [ 355088.929200001060963, 258577.845600001513958 ], [ 355225.789200000464916, 258843.705600000917912 ], [ 355235.411899998784065, 258834.317699998617172 ], [ 355249.230700001120567, 258821.342999998480082 ], [ 355218.296999998390675, 258760.928199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801055600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94964362, "LATITUDE": 18.35891212, "OBJECTID_1": 3964, "PARCEL_NO_": "102801055600", "Tax_Legal_": "ST.PETER ESTATE 3L-5 No.2 LITTLE NORTHSIDE QTR.", "Name": "MCKAY, JONATHAN & CINDIE KENNEDY", "Address": "PO Box 305116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42200, "Improved_V": 168200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.894460014, "SHAPE_Area": 1714.6684098400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356828.400499999523163, 258786.138399999588728 ], [ 356791.353299997746944, 258780.769000001251698 ], [ 356787.6875, 258832.456900000572205 ], [ 356802.231700003147125, 258828.987300001084805 ], [ 356803.732799999415874, 258842.087400000542402 ], [ 356807.044399999082088, 258831.98200000077486 ], [ 356821.577799998223782, 258829.778999999165535 ], [ 356828.400499999523163, 258786.138399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001022000", "MAP": "A9-430-T93", "PARCEL_NAM": "A-1-B", "ACRE": null, "LONGITUDE": -64.90950491, "LATITUDE": 18.35910472, "OBJECTID_1": 5219, "PARCEL_NO_": "103001022000", "Tax_Legal_": "Consolidated A-1-A,A-1-B&A3B-1 LOVENLUND GREAT NORTHSIDE QTR", "Name": "ISLAND DINING PROPERTIES INC", "Address": "PO Box 12030", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 301400, "Improved_V": 162700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.936113646, "SHAPE_Area": 1452.24820329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361072.943000003695488, 258858.356699999421835 ], [ 361042.687700003385544, 258839.99269999936223 ], [ 361032.270999997854233, 258849.042700000107288 ], [ 361024.942199997603893, 258857.426500000059605 ], [ 361017.402900002896786, 258865.935300000011921 ], [ 361029.161399997770786, 258871.372299998998642 ], [ 361055.031400002539158, 258883.334300000220537 ], [ 361073.107299998402596, 258878.404500000178814 ], [ 361073.069499999284744, 258873.795299999415874 ], [ 361072.943000003695488, 258858.356699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602039900", "MAP": "D9-3096-T85", "PARCEL_NAM": "1A-9-11", "ACRE": ".75", "LONGITUDE": -64.96819272, "LATITUDE": 18.3590094, "OBJECTID_1": 2523, "PARCEL_NO_": "102602039900", "Tax_Legal_": "DOROTHEA 1A-9-11 & 1A-9-36(R.O.W LT. NORTHSIDE", "Name": "TRIPLE F DEV. INC.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.13043413599999, "SHAPE_Area": 2431.5822798200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354896.234899997711182, 258798.611099999397993 ], [ 354846.320799998939037, 258789.125599998980761 ], [ 354805.261799998581409, 258781.401200000196695 ], [ 354793.041299998760223, 258796.077799998223782 ], [ 354796.243100002408028, 258798.848200000822544 ], [ 354797.008100003004074, 258803.709600001573563 ], [ 354888.7550999969244, 258824.725499998778105 ], [ 354889.590199999511242, 258821.354800000786781 ], [ 354896.234899997711182, 258798.611099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021300", "MAP": "D9-4387-T88", "PARCEL_NAM": "2C REM", "ACRE": null, "LONGITUDE": -64.93371095000001, "LATITUDE": 18.35848237, "OBJECTID_1": 4097, "PARCEL_NO_": "102802021300", "Tax_Legal_": "2C-2,2C REM,2C-3 ROW ESTATE MISGUNST No.6 GREAT NORTHSIDE QTR.", "Name": "MISGUNST HOLDINGS LLC", "Address": "819 S Wabash Ave", "City": "Chicago", "State": "Illinois", "Zip": 60605, "Country": "United States", "Land_Value": 397100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 875.08292124599996, "SHAPE_Area": 14257.246242499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358568.197300001978874, 258732.194600000977516 ], [ 358498.419299997389317, 258782.708200000226498 ], [ 358423.70549999922514, 258750.010400000959635 ], [ 358481.0591000020504, 258643.455400001257658 ], [ 358482.781400002539158, 258630.592799998819828 ], [ 358487.817100003361702, 258607.413699999451637 ], [ 358489.552000001072884, 258593.073600001633167 ], [ 358487.181599996984005, 258587.354600001126528 ], [ 358470.744300000369549, 258623.73930000141263 ], [ 358469.07769999653101, 258630.058499999344349 ], [ 358467.44709999859333, 258632.156100001186132 ], [ 358461.675200000405312, 258647.096500001847744 ], [ 358460.0337999984622, 258650.460499998182058 ], [ 358458.406800001859665, 258652.135999999940395 ], [ 358455.109600000083447, 258660.552700001746416 ], [ 358453.480800002813339, 258662.4391999989748 ], [ 358447.726999998092651, 258675.268800001591444 ], [ 358446.101700000464916, 258676.733199998736382 ], [ 358445.272100001573563, 258679.470600001513958 ], [ 358443.646799996495247, 258680.934999998658895 ], [ 358442.817199997603893, 258683.672400001436472 ], [ 358441.191899999976158, 258685.136700000613928 ], [ 358437.093900002539158, 258692.913699999451637 ], [ 358433.845200002193451, 258695.631299998611212 ], [ 358431.38849999755621, 258700.044199999421835 ], [ 358424.878700003027916, 258706.956999998539686 ], [ 358418.332900002598763, 258718.091299999505281 ], [ 358411.72410000115633, 258736.613499999046326 ], [ 358408.277699999511242, 258762.549800001084805 ], [ 358444.611000001430511, 258851.717500001192093 ], [ 358597.424900002777576, 258803.572399999946356 ], [ 358568.197300001978874, 258732.194600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94999907, "LATITUDE": 18.35889033, "OBJECTID_1": 3059, "PARCEL_NO_": "102702030500", "Tax_Legal_": "ST PETER 3K LT. NORTHSIDE QTR", "Name": "JEFFREY PAUL BRYAN", "Address": "PO Box 303911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64300, "Improved_V": 409700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.034047378, "SHAPE_Area": 2114.39983545 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356783.648699998855591, 258833.268199998885393 ], [ 356789.128600001335144, 258757.9527000002563 ], [ 356775.333099998533726, 258768.183299999684095 ], [ 356762.30629999935627, 258782.853300001472235 ], [ 356760.659500002861023, 258786.850600000470877 ], [ 356757.383900001645088, 258792.734400000423193 ], [ 356755.758699998259544, 258794.198699999600649 ], [ 356754.102899998426437, 258799.251400001347065 ], [ 356752.47410000115633, 258801.137899998575449 ], [ 356749.182300001382828, 258808.921399999409914 ], [ 356742.539399996399879, 258831.454100001603365 ], [ 356742.516000002622604, 258834.198100000619888 ], [ 356744.920500002801418, 258835.906500000506639 ], [ 356756.232299998402596, 258833.254900000989437 ], [ 356783.648699998855591, 258833.268199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96962809, "LATITUDE": 18.35887445, "OBJECTID_1": 2483, "PARCEL_NO_": "102602032100", "Tax_Legal_": "DOROTHEA 1A-9-20 LITTLE NORTHSIDE QTR", "Name": "MARRERO, V. & MONSANTO, J", "Address": "PO Box 11004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.53026900399999, "SHAPE_Area": 2731.9140804600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354716.258199997246265, 258816.980900000780821 ], [ 354730.325099997222424, 258774.877300001680851 ], [ 354665.184600003063679, 258754.290300000458956 ], [ 354663.388599999248981, 258775.807100001722574 ], [ 354659.252700001001358, 258788.016699999570847 ], [ 354663.271700002253056, 258789.527199998497963 ], [ 354684.120700001716614, 258803.207899998873472 ], [ 354697.718400001525879, 258816.195900000631809 ], [ 354700.126500003039837, 258817.482099998742342 ], [ 354709.789700001478195, 258819.038899999111891 ], [ 354716.258199997246265, 258816.980900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030400", "MAP": "G9-1725-T71", "PARCEL_NAM": "2CA", "ACRE": null, "LONGITUDE": -64.96441784, "LATITUDE": 18.35880707, "OBJECTID_1": 2895, "PARCEL_NO_": "102701030400", "Tax_Legal_": "2CA ESTATE DOROTHEA No.7 LITTLE NORTHSIDE QTR.", "Name": "EGGER, DIANA E. & ARTHUR", "Address": "7945 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 117600, "Improved_V": 169400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.14937138799999, "SHAPE_Area": 1848.4542210300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355271.179200001060963, 258800.624400001019239 ], [ 355245.015000000596046, 258748.270100001245737 ], [ 355218.296999998390675, 258760.928199999034405 ], [ 355249.230700001120567, 258821.342999998480082 ], [ 355271.179200001060963, 258800.624400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96905653, "LATITUDE": 18.35892783, "OBJECTID_1": 2481, "PARCEL_NO_": "102602031900", "Tax_Legal_": "DOROTHEA 1A9-18 LT. NORTHSIDE", "Name": "CRUZ, ELECIA T", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.36862190599999, "SHAPE_Area": 2069.2978606699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354773.036300003528595, 258777.971099998801947 ], [ 354730.325099997222424, 258774.877300001680851 ], [ 354716.258199997246265, 258816.980900000780821 ], [ 354725.152800001204014, 258814.098400000482798 ], [ 354741.322200000286102, 258809.164500001817942 ], [ 354770.394400000572205, 258804.125100001692772 ], [ 354786.596199996769428, 258795.391699999570847 ], [ 354793.041299998760223, 258796.077799998223782 ], [ 354805.261799998581409, 258781.401200000196695 ], [ 354773.036300003528595, 258777.971099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001022000", "MAP": "A9-724-T008", "PARCEL_NAM": "A-3-B-1", "ACRE": null, "LONGITUDE": -64.91139215, "LATITUDE": 18.35895714, "OBJECTID_1": 5219, "PARCEL_NO_": "103001022000", "Tax_Legal_": "Consolidated A-1-A,A-1-B&A3B-1 LOVENLUND GREAT NORTHSIDE QTR", "Name": "ISLAND DINING PROPERTIES INC", "Address": "PO Box 12030", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 301400, "Improved_V": 162700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 358.78100834499998, "SHAPE_Area": 4010.0089015799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360863.613200001418591, 258863.916600000113249 ], [ 360912.861199997365475, 258856.931400001049042 ], [ 360900.276699997484684, 258819.675900001078844 ], [ 360899.964599996805191, 258819.675900001078844 ], [ 360898.07940000295639, 258816.829700000584126 ], [ 360830.980899997055531, 258833.339800000190735 ], [ 360831.1925999969244, 258835.244800001382828 ], [ 360831.576499998569489, 258838.323100000619888 ], [ 360821.097999997437, 258837.815200001001358 ], [ 360809.82940000295639, 258835.40089999884367 ], [ 360766.164499998092651, 258849.609000001102686 ], [ 360770.097099997103214, 258861.251299999654293 ], [ 360791.032499998807907, 258864.800200000405312 ], [ 360803.976599998772144, 258859.839899998158216 ], [ 360835.475000001490116, 258853.975999999791384 ], [ 360837.049800001084805, 258858.421799998730421 ], [ 360838.612099997699261, 258864.345199998468161 ], [ 360845.87610000371933, 258863.560300000011921 ], [ 360855.605800002813339, 258857.307100001722574 ], [ 360857.150100000202656, 258865.341299999505281 ], [ 360863.613200001418591, 258863.916600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94924827, "LATITUDE": 18.35881055, "OBJECTID_1": 3921, "PARCEL_NO_": "102801050700", "Tax_Legal_": "ST PETER 3L-4 LITTLE NORTHSIDE QTR", "Name": "GOETZ, DON L. & SUSAN", "Address": "6096 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.22920849, "SHAPE_Area": 2646.89449186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356865.17620000243187, 258823.380800001323223 ], [ 356876.914099998772144, 258770.703499998897314 ], [ 356856.824600003659725, 258762.517499998211861 ], [ 356830.945299997925758, 258771.382699999958277 ], [ 356828.400499999523163, 258786.138399999588728 ], [ 356821.577799998223782, 258829.778999999165535 ], [ 356832.074199996888638, 258828.176100000739098 ], [ 356836.919299997389317, 258827.371399998664856 ], [ 356865.17620000243187, 258823.380800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602034100", "MAP": "D9-5131-T91", "PARCEL_NAM": "1A-9-34", "ACRE": null, "LONGITUDE": -64.97071306, "LATITUDE": 18.35881938, "OBJECTID_1": 2502, "PARCEL_NO_": "102602034100", "Tax_Legal_": "DOROTHEA 1A9-34 EST. LT. NORTHSIDE", "Name": "BONELLI, SANDRA & LAURANCE (TRUSTEES)", "Address": "PO Box 6217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.672430273, "SHAPE_Area": 1641.5695508700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354590.217299997806549, 258751.354699999094009 ], [ 354578.101400002837181, 258760.311500001698732 ], [ 354566.988899998366833, 258768.645899999886751 ], [ 354563.417000003159046, 258771.55629999935627 ], [ 354560.109700001776218, 258775.392799999564886 ], [ 354558.257600001990795, 258778.435499999672174 ], [ 354556.273199997842312, 258782.933400001376867 ], [ 354554.818000003695488, 258787.299100000411272 ], [ 354556.015500001609325, 258804.524000000208616 ], [ 354609.255999997258186, 258788.240800000727177 ], [ 354604.446900002658367, 258784.823899999260902 ], [ 354600.426100000739098, 258783.524399999529123 ], [ 354597.191799998283386, 258784.553399998694658 ], [ 354591.576399996876717, 258781.129999998956919 ], [ 354597.249399997293949, 258777.798900000751019 ], [ 354605.305299997329712, 258778.709199998527765 ], [ 354596.666000001132488, 258751.618500001728535 ], [ 354595.089400000870228, 258747.383799999952316 ], [ 354590.217299997806549, 258751.354699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802025300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93917557, "LATITUDE": 18.35887322, "OBJECTID_1": 4135, "PARCEL_NO_": "102802025300", "Tax_Legal_": "LERKENLUND 3AD GR NORTHSIDE", "Name": "AIMEE C LAPLACE and DARYL A BRYAN", "Address": "17 ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.060801368, "SHAPE_Area": 958.77596828200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357938.57769999653101, 258808.734700001776218 ], [ 357929.054799996316433, 258790.713799998164177 ], [ 357886.907200001180172, 258816.122299998998642 ], [ 357898.058899998664856, 258832.256599999964237 ], [ 357938.57769999653101, 258808.734700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801058500", "MAP": "D9-8395-T010", "PARCEL_NAM": "3Q-1", "ACRE": ".13", "LONGITUDE": -64.9485779, "LATITUDE": 18.35875027, "OBJECTID_1": 3993, "PARCEL_NO_": "102801058500", "Tax_Legal_": "3Q-1 ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "QUETEL, STANLEY ANATOLE", "Address": "3Q-1 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.27173641799999, "SHAPE_Area": 511.58092502300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356921.592200003564358, 258732.227899998426437 ], [ 356919.487300001084805, 258775.878400001674891 ], [ 356911.104900002479553, 258790.234299998730421 ], [ 356915.816799998283386, 258815.675700001418591 ], [ 356925.732299998402596, 258814.16609999909997 ], [ 356921.592200003564358, 258732.227899998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802027200", "MAP": "D9-5110-T91", "PARCEL_NAM": "3B-1A", "ACRE": ".59", "LONGITUDE": -64.93896576, "LATITUDE": 18.35852352, "OBJECTID_1": 4154, "PARCEL_NO_": "102802027200", "Tax_Legal_": "3B-1A LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "BERRY, JOSEPH N., JR. & ANITA M. (Co-Trustees)", "Address": "PO Box 305516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.48893646400001, "SHAPE_Area": 2616.6893737300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357963.646799996495247, 258807.583000000566244 ], [ 357933.034000001847744, 258725.370799999684095 ], [ 357914.213200002908707, 258734.441399998962879 ], [ 357903.677199997007847, 258740.688000001013279 ], [ 357914.776699997484684, 258762.94370000064373 ], [ 357929.054799996316433, 258790.713799998164177 ], [ 357938.57769999653101, 258808.734700001776218 ], [ 357950.474600002169609, 258832.052299998700619 ], [ 357954.597800001502037, 258821.320300001651049 ], [ 357957.049099996685982, 258817.540699999779463 ], [ 357957.869800001382828, 258815.85869999974966 ], [ 357963.646799996495247, 258807.583000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602031400", "MAP": "D9-3133-T85", "PARCEL_NAM": "1A-9-13", "ACRE": null, "LONGITUDE": -64.96787013, "LATITUDE": 18.35872795, "OBJECTID_1": 2476, "PARCEL_NO_": "102602031400", "Tax_Legal_": "DOROTHEA 1A-9-13 LT. NORTHSIDE QTR.", "Name": "KENNETH P QUERRARD & LISA L QUERRARD FAMILY TRUST", "Address": "PO Box 305072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.79948151299999, "SHAPE_Area": 2238.0569717100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354910.375500001013279, 258747.853300001472235 ], [ 354870.889600001275539, 258744.785900000482798 ], [ 354846.320799998939037, 258789.125599998980761 ], [ 354896.234899997711182, 258798.611099999397993 ], [ 354900.404899999499321, 258782.390999998897314 ], [ 354910.375500001013279, 258747.853300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056200", "MAP": "D9-5401-T92", "PARCEL_NAM": "3QA", "ACRE": null, "LONGITUDE": -64.94827434, "LATITUDE": 18.35843954, "OBJECTID_1": 3970, "PARCEL_NO_": "102801056200", "Tax_Legal_": "ST PETER 3QA GT NORTHSIDE", "Name": "QUESTEL, STANLEY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 134000, "Improved_V": 51500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.96845050900001, "SHAPE_Area": 2159.06681063 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356923.781099997460842, 258775.54839999973774 ], [ 356982.938500002026558, 258772.209600001573563 ], [ 356985.23870000243187, 258738.870600000023842 ], [ 356964.256599999964237, 258740.809799998998642 ], [ 356948.942100003361702, 258740.051100000739098 ], [ 356939.280699998140335, 258738.283300001174212 ], [ 356921.592200003564358, 258732.227899998426437 ], [ 356923.781099997460842, 258775.54839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96493679, "LATITUDE": 18.3572347, "OBJECTID_1": 2896, "PARCEL_NO_": "102701030500", "Tax_Legal_": "2D ESTATE DOROTHEA No.7 LITTLE NORTHSIDE QTR.", "Name": "BRYAN, JOSEPH C & E T", "Address": "3C DOROTHEA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 381.92493817899998, "SHAPE_Area": 4998.27742502 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355236.880999997258186, 258661.866300001740456 ], [ 355232.122299998998642, 258652.539200000464916 ], [ 355228.1554000005126, 258644.907400000840425 ], [ 355187.731200002133846, 258562.672200001776218 ], [ 355171.876500003039837, 258530.667300000786781 ], [ 355160.532399997115135, 258537.118400000035763 ], [ 355143.515299998223782, 258546.900499999523163 ], [ 355217.729000002145767, 258694.136399999260902 ], [ 355223.403300002217293, 258685.267400000244379 ], [ 355227.424999997019768, 258677.647300001233816 ], [ 355232.928300000727177, 258670.662300001829863 ], [ 355235.468299999833107, 258667.699000000953674 ], [ 355236.880999997258186, 258661.866300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602032800", "MAP": "D9-7734-T006", "PARCEL_NAM": "1A-9-27", "ACRE": ".519", "LONGITUDE": -64.97024445, "LATITUDE": 18.35874446, "OBJECTID_1": 2489, "PARCEL_NO_": "102602032800", "Tax_Legal_": "DOROTHEA 1A9-27 LT. NORTHSIDE", "Name": "JACOBS, CAROL L. & TERRANCE F.", "Address": "PO BOX 10100", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68000, "Improved_V": 364100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.586003358, "SHAPE_Area": 1888.1117153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354605.305299997329712, 258778.709199998527765 ], [ 354620.537100002169609, 258789.177499998360872 ], [ 354626.157999999821186, 258791.967700000852346 ], [ 354636.629199996590614, 258793.320000000298023 ], [ 354644.708499997854233, 258791.486200001090765 ], [ 354651.189599998295307, 258787.950699999928474 ], [ 354656.079599998891354, 258781.868999999016523 ], [ 354658.637000001966953, 258765.63569999858737 ], [ 354658.681999996304512, 258760.358800001442432 ], [ 354658.710699997842312, 258756.981499999761581 ], [ 354596.666000001132488, 258751.618500001728535 ], [ 354605.305299997329712, 258778.709199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96691211, "LATITUDE": 18.35872467, "OBJECTID_1": 2432, "PARCEL_NO_": "102602021700", "Tax_Legal_": "DOROTHEA 1CK LITTLE NORTHSIDE QTR", "Name": "BUTLER, COLIN & ADRIANNE BAIRD", "Address": "PO Box 600209", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68600, "Improved_V": 20500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.895673026, "SHAPE_Area": 1661.99377615 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354962.420800000429153, 258791.131299998611212 ], [ 355012.383400000631809, 258794.917700000107288 ], [ 355005.261500000953674, 258779.027399998158216 ], [ 355000.482900001108646, 258772.022199999541044 ], [ 354998.879299998283386, 258770.953600000590086 ], [ 354998.0945999994874, 258768.414000000804663 ], [ 354990.92230000346899, 258758.433899998664856 ], [ 354975.729999996721745, 258743.321899998933077 ], [ 354965.352200001478195, 258730.993599999696016 ], [ 354964.0675999969244, 258787.13399999961257 ], [ 354962.420800000429153, 258791.131299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701012500", "MAP": null, "PARCEL_NAM": "12C", "ACRE": null, "LONGITUDE": -64.96373596, "LATITUDE": 18.35881718, "OBJECTID_1": 2798, "PARCEL_NO_": "102701012500", "Tax_Legal_": "DOROTHEA 12C\nLITTLE NORTHSIDE", "Name": "Julian,P &L Maratea & Agnes Broulette,Trustee", "Address": "7959 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26100, "Improved_V": 164200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.176914664899996, "SHAPE_Area": 494.621166066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355333.365900002419949, 258789.312100000679493 ], [ 355324.663699999451637, 258769.609200000762939 ], [ 355310.888099998235703, 258777.51799999922514 ], [ 355300.334100000560284, 258785.875399999320507 ], [ 355310.720799997448921, 258797.148299999535084 ], [ 355333.365900002419949, 258789.312100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96646016, "LATITUDE": 18.35869805, "OBJECTID_1": 2534, "PARCEL_NO_": "102602041100", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 25, LITTLE NORTHSIDE", "Name": "TODMAN, BRIDGET", "Address": "7702 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.86755975400001, "SHAPE_Area": 1461.9986531699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355049.899999998509884, 258745.195599999278784 ], [ 355043.460299998521805, 258743.876299999654293 ], [ 355032.920699998736382, 258750.545000001788139 ], [ 355021.589100003242493, 258755.518500000238419 ], [ 355007.847599998116493, 258759.416799999773502 ], [ 355000.614200003445148, 258756.613400001078844 ], [ 355018.850100003182888, 258793.070799998939037 ], [ 355052.823100000619888, 258780.683200001716614 ], [ 355051.232100002467632, 258778.136999998241663 ], [ 355050.485100001096725, 258771.164799999445677 ], [ 355046.640600003302097, 258749.179699998348951 ], [ 355049.899999998509884, 258745.195599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702012600", "MAP": "A9-42-T65", "PARCEL_NAM": "11", "ACRE": "9.03", "LONGITUDE": -64.9556229, "LATITUDE": 18.35800538, "OBJECTID_1": 2966, "PARCEL_NO_": "102702012600", "Tax_Legal_": "BONNE RESOLUTION 11 LITTLE NORTHSIDE", "Name": "BRIN, DARLAN", "Address": "7839 Est Lilliendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 319900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 637.35440895299996, "SHAPE_Area": 25426.391776299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356276.364200003445148, 258747.845300000160933 ], [ 356246.799599997699261, 258621.36939999833703 ], [ 356093.535499997437, 258627.714400000870228 ], [ 356086.137999996542931, 258627.573699999600649 ], [ 356108.233999997377396, 258795.442899998277426 ], [ 356117.067500002682209, 258799.737100001424551 ], [ 356276.364200003445148, 258747.845300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602031500", "MAP": "D9-3133-T85", "PARCEL_NAM": "1A-9-14", "ACRE": null, "LONGITUDE": -64.96827569, "LATITUDE": 18.35866863, "OBJECTID_1": 2477, "PARCEL_NO_": "102602031500", "Tax_Legal_": "DOROTHEA 1A-9-14 LT. NORTHSIDE QTR.", "Name": "KENNETH P QUERRARD & LISA L QUERRARD FAMILY TRUST", "Address": "PO Box 305072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.339163423, "SHAPE_Area": 1895.5168955199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354870.889600001275539, 258744.785900000482798 ], [ 354828.180200003087521, 258741.480999998748302 ], [ 354805.261799998581409, 258781.401200000196695 ], [ 354846.320799998939037, 258789.125599998980761 ], [ 354870.889600001275539, 258744.785900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056300", "MAP": null, "PARCEL_NAM": "3-QB", "ACRE": null, "LONGITUDE": -64.94776772, "LATITUDE": 18.3585936, "OBJECTID_1": 3971, "PARCEL_NO_": "102801056300", "Tax_Legal_": "ST PETER 3QB LT NORTHSIDE", "Name": "QUETEL, JOSHUA LAWRENCE and STANLEY ANATOLE", "Address": "3QB Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130400, "Improved_V": 16700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.78914594599999, "SHAPE_Area": 2882.0942107699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356994.100900001823902, 258739.787500001490116 ], [ 356985.23870000243187, 258738.870600000023842 ], [ 356980.638899996876717, 258805.538499999791384 ], [ 357001.610200002789497, 258804.865699999034405 ], [ 357025.808600001037121, 258804.008299998939037 ], [ 357026.667099997401237, 258797.8935999982059 ], [ 357032.34740000218153, 258747.558100000023842 ], [ 357028.714800000190735, 258746.825800001621246 ], [ 356994.100900001823902, 258739.787500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701041000", "MAP": "A9-441-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96586346, "LATITUDE": 18.35865123, "OBJECTID_1": 2936, "PARCEL_NO_": "102701041000", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 26 LITTLE NORTHSIDE", "Name": "DORAS, PHILOMENE", "Address": "PO Box 9785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55400, "Improved_V": 311100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.1569067, "SHAPE_Area": 2305.65068028 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355123.721799999475479, 258753.526200000196695 ], [ 355115.342299997806549, 258737.325899999588728 ], [ 355061.899400003254414, 258756.481699999421835 ], [ 355058.652500003576279, 258758.988299999386072 ], [ 355057.831799998879433, 258760.670299999415874 ], [ 355058.568000003695488, 258768.909000001847744 ], [ 355060.139300003647804, 258773.776999998837709 ], [ 355062.511500000953674, 258779.284800000488758 ], [ 355068.909800000488758, 258785.45890000090003 ], [ 355077.748700000345707, 258789.119800001382828 ], [ 355085.818999998271465, 258788.341499999165535 ], [ 355099.58389999717474, 258781.699200000613928 ], [ 355114.966700002551079, 258774.436799999326468 ], [ 355120.612700000405312, 258774.271899998188019 ], [ 355129.861100003123283, 258765.84180000051856 ], [ 355128.308300003409386, 258762.3935999982059 ], [ 355123.721799999475479, 258753.526200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021500", "MAP": "D9-2197-T82", "PARCEL_NAM": "1CG", "ACRE": null, "LONGITUDE": -64.96740482, "LATITUDE": 18.35868868, "OBJECTID_1": 2430, "PARCEL_NO_": "102602021500", "Tax_Legal_": "DOROTHEA 1CG LT. NORTHSIDE", "Name": "BRYAN, JAMES & CATHERINE", "Address": "355 Rose Ln", "City": "Mattituck", "State": "New York", "Zip": 11952, "Country": "United States", "Land_Value": 72700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.90668175100001, "SHAPE_Area": 1700.4555368199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354956.30120000243187, 258752.239999998360872 ], [ 354910.375500001013279, 258747.853300001472235 ], [ 354900.404899999499321, 258782.390999998897314 ], [ 354954.409800000488758, 258784.943999998271465 ], [ 354956.30120000243187, 258752.239999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056700", "MAP": "G9-2615-T77", "PARCEL_NAM": "3RE", "ACRE": "1.2", "LONGITUDE": -64.94724262, "LATITUDE": 18.35848628, "OBJECTID_1": 3975, "PARCEL_NO_": "102801056700", "Tax_Legal_": "ST PETER 3RE LT NORTHSIDE", "Name": "BRYAN, DENNY", "Address": "PO Box 306407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 166800, "Improved_V": 153400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.10287564700002, "SHAPE_Area": 4815.9468669199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357093.165899999439716, 258753.686099998652935 ], [ 357089.647600002586842, 258730.225000001490116 ], [ 357076.808600001037121, 258726.300900001078844 ], [ 357036.148699998855591, 258713.873700000345707 ], [ 357035.862199999392033, 258713.783700000494719 ], [ 357034.495399996638298, 258713.354100000113249 ], [ 357033.796800002455711, 258734.714600000530481 ], [ 357033.036700002849102, 258741.44990000128746 ], [ 357032.34740000218153, 258747.558100000023842 ], [ 357026.667099997401237, 258797.8935999982059 ], [ 357031.721500001847744, 258798.171399999409914 ], [ 357094.370300002396107, 258801.614199999719858 ], [ 357093.11370000243187, 258759.807300001382828 ], [ 357093.165899999439716, 258753.686099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020800", "MAP": "G9-1398-T69", "PARCEL_NAM": "4A-9", "ACRE": "1.25", "LONGITUDE": -64.93575065, "LATITUDE": 18.35829167, "OBJECTID_1": 4093, "PARCEL_NO_": "102802020800", "Tax_Legal_": "LERKENLUND 4A-9 GR NORTHSIDE QTR", "Name": "DIPNARINE, WANDA, CINDY & SHARMIN", "Address": "7551 NW 1st St", "City": "PEMBROKE PINES", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 172500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 481.41391781800002, "SHAPE_Area": 5560.4145281800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358327.343599997460842, 258702.781199999153614 ], [ 358281.301100000739098, 258712.114700000733137 ], [ 358278.09740000218153, 258709.555300001055002 ], [ 358272.250100001692772, 258733.361000001430511 ], [ 358270.5996999964118, 258737.780499998480082 ], [ 358266.526799999177456, 258742.602299999445677 ], [ 358241.390799999237061, 258758.861900001764297 ], [ 358228.455600000917912, 258762.766800001263618 ], [ 358220.387100003659725, 258763.333999998867512 ], [ 358214.730400003492832, 258764.765399999916553 ], [ 358207.42679999768734, 258770.193999998271465 ], [ 358202.542199999094009, 258775.642499998211861 ], [ 358200.924099996685982, 258776.262499999254942 ], [ 358183.050399996340275, 258791.948300000280142 ], [ 358170.09910000115633, 258797.752900000661612 ], [ 358161.190099999308586, 258802.324000000953674 ], [ 358158.753100000321865, 258804.41499999910593 ], [ 358147.417999997735023, 258809.810699999332428 ], [ 358343.873400002717972, 258750.201400000602007 ], [ 358327.343599997460842, 258702.781199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602031600", "MAP": "D9-3133-T85", "PARCEL_NAM": "1A-9-15", "ACRE": null, "LONGITUDE": -64.96867177, "LATITUDE": 18.35861482, "OBJECTID_1": 2478, "PARCEL_NO_": "102602031600", "Tax_Legal_": "DOROTHEA 1A9-15 LT. NORTHSIDE", "Name": "YEARWOOD, KELVIN", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.57391388, "SHAPE_Area": 1748.9654446899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354828.180200003087521, 258741.480999998748302 ], [ 354775.800499998033047, 258737.463700000196695 ], [ 354773.036300003528595, 258777.971099998801947 ], [ 354805.261799998581409, 258781.401200000196695 ], [ 354828.180200003087521, 258741.480999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95189416, "LATITUDE": 18.35865543, "OBJECTID_1": 3068, "PARCEL_NO_": "102702031900", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-2-1 LITTLE NORTHSIDE", "Name": "BOWERS, WARNER F", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44000, "Improved_V": 346800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.720565206, "SHAPE_Area": 1110.6017494600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356587.518100000917912, 258760.102299999445677 ], [ 356552.022299997508526, 258761.922699999064207 ], [ 356551.160300001502037, 258768.459499999880791 ], [ 356552.560699999332428, 258793.379999998956919 ], [ 356585.628499999642372, 258792.595199998468161 ], [ 356587.518100000917912, 258760.102299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96907813, "LATITUDE": 18.3586013, "OBJECTID_1": 2479, "PARCEL_NO_": "102602031700", "Tax_Legal_": "DOROTHEA 1A9-16 LT. NORTHSIDE", "Name": "YEARWOOD, KELVIN & ERICA", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.32563536000001, "SHAPE_Area": 1728.2021657400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354775.800499998033047, 258737.463700000196695 ], [ 354733.897399999201298, 258734.165500000119209 ], [ 354730.325099997222424, 258774.877300001680851 ], [ 354773.036300003528595, 258777.971099998801947 ], [ 354775.800499998033047, 258737.463700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701033500", "MAP": "D9-6268-T97", "PARCEL_NAM": "2-2", "ACRE": ".577", "LONGITUDE": -64.96540568, "LATITUDE": 18.35855472, "OBJECTID_1": 2923, "PARCEL_NO_": "102701033500", "Tax_Legal_": "DOROTHEA 2-2 LITTLE NORTHSIDE QTR.", "Name": "RYKE, RONALD J. (TRUSTEE)", "Address": "331 Beach 88 St", "City": "Far Rockaway", "State": "New York", "Zip": 11693, "Country": "United States", "Land_Value": 87300, "Improved_V": 281500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.55862610599999, "SHAPE_Area": 1989.1596429900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355169.617200002074242, 258774.311500001698732 ], [ 355140.367700003087521, 258717.846799999475479 ], [ 355126.666900001466274, 258726.192200001329184 ], [ 355113.505000002682209, 258733.478399999439716 ], [ 355115.342299997806549, 258737.325899999588728 ], [ 355123.721799999475479, 258753.526200000196695 ], [ 355128.308300003409386, 258762.3935999982059 ], [ 355140.835900001227856, 258790.213100001215935 ], [ 355156.840999998152256, 258781.112300001084805 ], [ 355169.617200002074242, 258774.311500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102704014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95123317, "LATITUDE": 18.35792178, "OBJECTID_1": 3467, "PARCEL_NO_": "102704014200", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 10-1REMAINDER No.3 GREAT NORTHSIDE QTR.", "Name": "INDUSTRIOUS, JUULIAN SR. & JULIAN JR. & FELICE & AYALA,KIMBERLY", "Address": "PO Box 304985", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 185300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 558.70551784899999, "SHAPE_Area": 1834.4116384700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356638.928900003433228, 258688.540100000798702 ], [ 356640.931800000369549, 258642.749200001358986 ], [ 356635.819799996912479, 258580.223700001835823 ], [ 356635.970899999141693, 258562.493099998682737 ], [ 356637.664399996399879, 258553.007699999958277 ], [ 356632.023800000548363, 258552.53940000012517 ], [ 356629.493400000035763, 258565.6064000017941 ], [ 356630.112700000405312, 258587.565200001001358 ], [ 356631.637199997901917, 258597.921300001442432 ], [ 356632.391400001943111, 258604.049199998378754 ], [ 356635.219200000166893, 258650.723999999463558 ], [ 356633.383599996566772, 258676.88459999859333 ], [ 356631.664899997413158, 258689.324999999254942 ], [ 356626.629299998283386, 258712.504099998623133 ], [ 356618.371899999678135, 258735.234600000083447 ], [ 356619.056000001728535, 258749.5945999994874 ], [ 356620.609200000762939, 258756.573399998247623 ], [ 356622.988600000739098, 258761.236900001764297 ], [ 356628.577100001275539, 258767.82660000026226 ], [ 356633.380800001323223, 258771.8766999989748 ], [ 356640.60700000077486, 258775.524399999529123 ], [ 356650.268399998545647, 258777.292199999094009 ], [ 356653.477399997413158, 258779.218299999833107 ], [ 356656.634400002658367, 258787.265700001269579 ], [ 356661.436300002038479, 258791.526900000870228 ], [ 356669.486800000071526, 258793.07039999961853 ], [ 356674.342699997127056, 258790.999299999326468 ], [ 356676.784999996423721, 258788.274999998509884 ], [ 356677.646999999880791, 258781.738200001418591 ], [ 356674.463200002908707, 258776.85700000077486 ], [ 356669.650499999523163, 258773.862300001084805 ], [ 356653.534999996423721, 258772.463799998164177 ], [ 356641.469099998474121, 258768.98759999871254 ], [ 356638.258199997246265, 258767.27250000089407 ], [ 356629.455300003290176, 258759.390000000596046 ], [ 356627.070500001311302, 258755.359700001776218 ], [ 356624.750500001013279, 258743.730599999427795 ], [ 356624.827799998223782, 258734.654199998825788 ], [ 356631.434799998998642, 258716.343100000172853 ], [ 356637.2820999994874, 258692.537399999797344 ], [ 356638.928900003433228, 258688.540100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96955497, "LATITUDE": 18.35854073, "OBJECTID_1": 2480, "PARCEL_NO_": "102602031800", "Tax_Legal_": "DOROTHEA 1A-9-17 LT.NORTHSIDE", "Name": "KNIGHT, WAYNE & NATALIE", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48600, "Improved_V": 315600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.465528839, "SHAPE_Area": 2132.5292387300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354733.897399999201298, 258734.165500000119209 ], [ 354675.070799998939037, 258729.673200000077486 ], [ 354669.320500001311302, 258742.080699998885393 ], [ 354665.244000002741814, 258747.324700001627207 ], [ 354665.184600003063679, 258754.290300000458956 ], [ 354730.325099997222424, 258774.877300001680851 ], [ 354733.897399999201298, 258734.165500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701034000", "MAP": "D9-7026-T002", "PARCEL_NAM": "2D-3", "ACRE": ".50", "LONGITUDE": -64.96414027, "LATITUDE": 18.3586484, "OBJECTID_1": 2928, "PARCEL_NO_": "102701034000", "Tax_Legal_": "2D-3 EST DOROTHEA #7 LT NORTHSIDE QTR", "Name": "SINCLAIR, LORRAINE T. & SCOTT", "Address": "PO Box 238", "City": "Fryeburg", "State": "Maine", "Zip": 4037, "Country": "United States", "Land_Value": 59300, "Improved_V": 240600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.216693784, "SHAPE_Area": 2075.3992907299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355246.13629999756813, 258735.26969999819994 ], [ 355240.886500000953674, 258740.079500000923872 ], [ 355245.015000000596046, 258748.270100001245737 ], [ 355271.179200001060963, 258800.624400001019239 ], [ 355294.751000002026558, 258778.652499999850988 ], [ 355310.978000000119209, 258766.964099999517202 ], [ 355305.298900000751019, 258751.640000000596046 ], [ 355296.460199996829033, 258755.113499999046326 ], [ 355268.202600002288818, 258746.699799999594688 ], [ 355246.13629999756813, 258735.26969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020700", "MAP": null, "PARCEL_NAM": "4A-8", "ACRE": "1.60", "LONGITUDE": -64.93672654, "LATITUDE": 18.35827709, "OBJECTID_1": 4092, "PARCEL_NO_": "102802020700", "Tax_Legal_": "LERKENLUND 4A-8 GR NORTHSIDE QTR", "Name": "BRYAN (TRUSTEE), EDMUND", "Address": "7682 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 519.35569024999995, "SHAPE_Area": 6714.2531576199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358254.4662000015378, 258738.492800001055002 ], [ 358261.796800002455711, 258729.897999998182058 ], [ 358264.323600001633167, 258717.252999998629093 ], [ 358235.296400003135204, 258717.015500001609325 ], [ 358215.12780000269413, 258718.116999998688698 ], [ 358205.430399999022484, 258720.570700000971556 ], [ 358192.473700001835823, 258727.008600000292063 ], [ 358177.882700003683567, 258735.9662000015378 ], [ 358173.849399998784065, 258736.144200000911951 ], [ 358162.600599996745586, 258731.408100001513958 ], [ 358157.764499999582767, 258731.157499998807907 ], [ 358147.232100002467632, 258736.981899999082088 ], [ 358138.299699999392033, 258744.296999998390675 ], [ 358115.618699997663498, 258756.354800000786781 ], [ 358142.6503000035882, 258801.539000000804663 ], [ 358178.307800002396107, 258780.721500001847744 ], [ 358192.108599998056889, 258769.857599999755621 ], [ 358209.174300000071526, 258754.376299999654293 ], [ 358212.412100002169609, 258752.925200000405312 ], [ 358219.670699998736382, 258752.773499999195337 ], [ 358231.781599998474121, 258750.972800001502037 ], [ 358254.4662000015378, 258738.492800001055002 ] ] ], [ [ [ 358097.447499997913837, 258712.298599999397993 ], [ 358085.399599999189377, 258706.711599998176098 ], [ 358110.845499999821186, 258748.716400001198053 ], [ 358116.51129999756813, 258746.229600001126528 ], [ 358136.784199997782707, 258732.885600000619888 ], [ 358140.85530000180006, 258728.27479999884963 ], [ 358140.912799999117851, 258721.520300000905991 ], [ 358137.70380000025034, 258719.594200000166893 ], [ 358131.265900000929832, 258718.063900001347065 ], [ 358108.710699997842312, 258715.346099998801947 ], [ 358097.447499997913837, 258712.298599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704011000", "MAP": "G9-2052-T72", "PARCEL_NAM": "10-37", "ACRE": null, "LONGITUDE": -64.95107614, "LATITUDE": 18.35831929, "OBJECTID_1": 3444, "PARCEL_NO_": "102704011000", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-37 LT. NORTHSIDE", "Name": "KAHN, MURRAY", "Address": "2291 NE 60th St", "City": "Seattle", "State": "Washington", "Zip": 98115, "Country": "United States", "Land_Value": 67600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.457856792, "SHAPE_Area": 3421.8748206599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356680.711499996483326, 258705.980700001120567 ], [ 356647.246100001037121, 258705.732299998402596 ], [ 356631.634300000965595, 258715.530900001525879 ], [ 356631.434799998998642, 258716.343100000172853 ], [ 356624.827799998223782, 258734.654199998825788 ], [ 356624.750500001013279, 258743.730599999427795 ], [ 356627.070500001311302, 258755.359700001776218 ], [ 356629.455300003290176, 258759.390000000596046 ], [ 356638.258199997246265, 258767.27250000089407 ], [ 356641.469099998474121, 258768.98759999871254 ], [ 356653.534999996423721, 258772.463799998164177 ], [ 356669.650499999523163, 258773.862300001084805 ], [ 356674.463200002908707, 258776.85700000077486 ], [ 356677.646999999880791, 258781.738200001418591 ], [ 356676.784999996423721, 258788.274999998509884 ], [ 356680.816500000655651, 258788.30799999833107 ], [ 356680.92620000243187, 258775.432199999690056 ], [ 356680.7804000005126, 258728.270500000566244 ], [ 356680.711499996483326, 258705.980700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801044100", "MAP": "F9-1218-T63", "PARCEL_NAM": "8-47", "ACRE": null, "LONGITUDE": -64.94472968, "LATITUDE": 18.35844108, "OBJECTID_1": 3909, "PARCEL_NO_": "102801044100", "Tax_Legal_": "LERKENLUND 8-47 LITTLE NORTHSIDE", "Name": "VANTERPOOL, KENDEL K. & SHENEL J", "Address": "PO Box 10391", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 358800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.955471749, "SHAPE_Area": 783.63413489300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357343.189300000667572, 258747.921900000423193 ], [ 357329.571900002658367, 258737.255800001323223 ], [ 357319.80799999833107, 258747.519499998539686 ], [ 357310.076499998569489, 258753.98369999974966 ], [ 357321.170699998736382, 258776.872600000351667 ], [ 357328.301600001752377, 258791.707499999552965 ], [ 357330.041900001466274, 258776.734099999070168 ], [ 357331.713899999856949, 258769.781700000166893 ], [ 357343.189300000667572, 258747.921900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801015900", "MAP": "D9-1357-T77", "PARCEL_NAM": "8B-6", "ACRE": null, "LONGITUDE": -64.9444276, "LATITUDE": 18.358638, "OBJECTID_1": 3738, "PARCEL_NO_": "102801015900", "Tax_Legal_": "LERKENLUND 8B-6&8B-7A GREAT NORTHSIDE QTR", "Name": "O'BAIDI, EMAD I", "Address": "PO Box 307886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42200, "Improved_V": 349800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.3987585052, "SHAPE_Area": 61.035270568999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357374.273999996483326, 258790.606100000441074 ], [ 357352.017899997532368, 258774.965599998831749 ], [ 357348.578100003302097, 258777.941300000995398 ], [ 357371.06139999628067, 258789.102200001478195 ], [ 357374.273999996483326, 258790.606100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94961879, "LATITUDE": 18.35857079, "OBJECTID_1": 3985, "PARCEL_NO_": "102801057700", "Tax_Legal_": "ST.PETER ESTATE 3L-6 No.2 LITTLE NORTHSIDE QTR.", "Name": "MCKAY, JONATHAN & CINDIE KENNEDY", "Address": "PO Box 305116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.552416748, "SHAPE_Area": 1024.81826254 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356830.945299997925758, 258771.382699999958277 ], [ 356808.562799997627735, 258748.401399999856949 ], [ 356793.178099997341633, 258755.874899998307228 ], [ 356791.353299997746944, 258780.769000001251698 ], [ 356828.400499999523163, 258786.138399999588728 ], [ 356830.945299997925758, 258771.382699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95356192, "LATITUDE": 18.35859463, "OBJECTID_1": 2979, "PARCEL_NO_": "102702014200", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 9A-1 No.3 LITTLE NORTH SIDE QTR.", "Name": "BRYAN, LAURENCE E. & JUDITH M.", "Address": "PO Box 10682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013682, "Country": "United States", "Land_Value": 39100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.27893819877999998, "SHAPE_Area": 0.00341962486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356393.084899999201298, 258768.565099999308586 ], [ 356393.030000001192093, 258768.664299998432398 ], [ 356393.110399998724461, 258768.6435999982059 ], [ 356393.084899999201298, 258768.565099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702020100", "MAP": "A9-42-T65", "PARCEL_NAM": "11A", "ACRE": "2.18", "LONGITUDE": -64.95283541000001, "LATITUDE": 18.35754707, "OBJECTID_1": 3005, "PARCEL_NO_": "102702020100", "Tax_Legal_": "LILLENDAHL & MARIENHOJ 11A LITTLE NORTHSIDE", "Name": "GORDON, ANGELA", "Address": "PO Box 9549", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 217600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.34034580299999, "SHAPE_Area": 6280.6854442499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356426.304300002753735, 258700.002399999648333 ], [ 356428.380699999630451, 258698.638099998235703 ], [ 356497.134800001978874, 258673.658500000834465 ], [ 356518.149300001561642, 258667.919900000095367 ], [ 356525.433100000023842, 258664.813099998980761 ], [ 356530.308700002729893, 258660.420099999755621 ], [ 356534.394199997186661, 258654.120700001716614 ], [ 356536.150700002908707, 258637.247600000351667 ], [ 356442.058499999344349, 258607.557700000703335 ], [ 356414.635600000619888, 258702.958599999547005 ], [ 356426.304300002753735, 258700.002399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96384792000001, "LATITUDE": 18.35816368, "OBJECTID_1": 2915, "PARCEL_NO_": "102701032500", "Tax_Legal_": "DOROTHEA 3K-1 LT. NORTHSIDE", "Name": "BRYAN, JEFFREY J", "Address": "PO Box 9527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.96301435499998, "SHAPE_Area": 2789.2764252100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355340.116700001060963, 258754.114700000733137 ], [ 355313.82490000128746, 258716.747099999338388 ], [ 355317.494300000369549, 258664.636999998241663 ], [ 355282.770700000226498, 258670.474500000476837 ], [ 355276.295000001788139, 258673.376800000667572 ], [ 355310.978000000119209, 258766.964099999517202 ], [ 355327.17620000243187, 258758.652899999171495 ], [ 355340.116700001060963, 258754.114700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802025000", "MAP": "F9-3815-T80", "PARCEL_NAM": "3FA", "ACRE": null, "LONGITUDE": -64.93848225000001, "LATITUDE": 18.35829178, "OBJECTID_1": 4131, "PARCEL_NO_": "102802025000", "Tax_Legal_": "3Fa REM. LERKENLUND No.9 GREAT NORTHSIDE QTR", "Name": "PATRICK D., JESSICA, & MICHAEL BERRY", "Address": "2401 E Crooked Lake Club Blvd", "City": "EUSTIS", "State": "Florida", "Zip": 32726, "Country": "United States", "Land_Value": 95200, "Improved_V": 392200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.139456661, "SHAPE_Area": 1505.7152800399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357962.685400001704693, 258723.861299999058247 ], [ 357984.406099997460842, 258781.482400000095367 ], [ 357992.90990000218153, 258772.871300000697374 ], [ 358005.076499998569489, 258764.527100000530481 ], [ 358008.326899997889996, 258761.598400000482798 ], [ 357998.946099996566772, 258726.902300000190735 ], [ 357962.685400001704693, 258723.861299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602034200", "MAP": "D9-3132-T85", "PARCEL_NAM": "1A-9-35", "ACRE": null, "LONGITUDE": -64.97022593, "LATITUDE": 18.35846397, "OBJECTID_1": 2503, "PARCEL_NO_": "102602034200", "Tax_Legal_": "DOROTHEA 1-A-9-35 LITTLE NORTHSIDE", "Name": "LLOYD, RICHARD & MAUDE", "Address": "PO Box 7728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.398888011, "SHAPE_Area": 1773.90025642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354668.625699996948242, 258728.987199999392033 ], [ 354608.20440000295639, 258722.370999999344349 ], [ 354605.70269999653101, 258732.0608000010252 ], [ 354600.778499998152256, 258742.153000000864267 ], [ 354595.089400000870228, 258747.383799999952316 ], [ 354596.666000001132488, 258751.618500001728535 ], [ 354658.710699997842312, 258756.981499999761581 ], [ 354659.625, 258744.323399998247623 ], [ 354661.26630000025034, 258740.959300000220537 ], [ 354664.513199999928474, 258738.452799998223782 ], [ 354668.625699996948242, 258728.987199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021000", "MAP": "A9-441-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96671096, "LATITUDE": 18.35817916, "OBJECTID_1": 2425, "PARCEL_NO_": "102602021000", "Tax_Legal_": "DOROTHEA 20 & 21 LITTLE NORTHSIDE", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 896500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.86638799899998, "SHAPE_Area": 5775.64697411 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354996.527999997138977, 258668.3429000005126 ], [ 354968.992899999022484, 258682.260800000280142 ], [ 354946.317199997603893, 258693.685300000011921 ], [ 354988.620200000703335, 258744.693999998271465 ], [ 354991.804099999368191, 258749.575199998915195 ], [ 354995.799699999392033, 258753.829799998551607 ], [ 355000.614200003445148, 258756.613400001078844 ], [ 355007.847599998116493, 258759.416799999773502 ], [ 355021.589100003242493, 258755.518500000238419 ], [ 355032.920699998736382, 258750.545000001788139 ], [ 355043.460299998521805, 258743.876299999654293 ], [ 355042.388899996876717, 258680.328400000929832 ], [ 355035.94200000166893, 258679.853399999439716 ], [ 355029.478900000452995, 258681.278200000524521 ], [ 355019.758199997246265, 258686.475900001823902 ], [ 355007.056800000369549, 258662.940600000321865 ], [ 354996.527999997138977, 258668.3429000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701033600", "MAP": "D9-6562-T99", "PARCEL_NAM": "2cb", "ACRE": "1.175", "LONGITUDE": -64.96515492, "LATITUDE": 18.35745168, "OBJECTID_1": 2924, "PARCEL_NO_": "102701033600", "Tax_Legal_": "DOROTHEA ESTATE 2Cb No.7 LITTLE NORTHSIDE QTR", "Name": "VINCENT R BAMBINI AND ELLEN SWANE REVOCABLE TRUST", "Address": "5601 Trompeter Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 431.96044196899999, "SHAPE_Area": 5399.6328937999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355217.729000002145767, 258694.136399999260902 ], [ 355143.515299998223782, 258546.900499999523163 ], [ 355115.964000001549721, 258562.718100000172853 ], [ 355204.163099996745586, 258733.552299998700619 ], [ 355204.088699996471405, 258726.912900000810623 ], [ 355203.929899998009205, 258723.420299999415874 ], [ 355203.929899998009205, 258720.721599999815226 ], [ 355203.929899998009205, 258719.29280000180006 ], [ 355204.723700001835823, 258716.594099998474121 ], [ 355205.993699997663498, 258713.895300000905991 ], [ 355208.2162000015378, 258710.561599999666214 ], [ 355210.59740000218153, 258706.116599999368191 ], [ 355213.61370000243187, 258701.03660000115633 ], [ 355217.729000002145767, 258694.136399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702013400", "MAP": "D9-1860-T81", "PARCEL_NAM": "9A", "ACRE": ".50", "LONGITUDE": -64.95347743000001, "LATITUDE": 18.3583121, "OBJECTID_1": 2974, "PARCEL_NO_": "102702013400", "Tax_Legal_": "LILLIANDAHL & MARIENHOJ 9A LT.NORTHSIDE QTR", "Name": "BRYAN, LAURENCE & JUDITH", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65500, "Improved_V": 391500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.49894006599999, "SHAPE_Area": 1930.26374558 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356421.082500003278255, 258703.433499999344349 ], [ 356426.304300002753735, 258700.002399999648333 ], [ 356414.635600000619888, 258702.958599999547005 ], [ 356404.931100003421307, 258706.256700001657009 ], [ 356377.394199997186661, 258720.385600000619888 ], [ 356393.110399998724461, 258768.6435999982059 ], [ 356423.81870000064373, 258760.873399998992682 ], [ 356429.679399996995926, 258758.846099998801947 ], [ 356427.117600001394749, 258752.245600000023842 ], [ 356421.538199998438358, 258744.600499998778105 ], [ 356416.738099999725819, 258740.128299999982119 ], [ 356412.79280000180006, 258729.963500000536442 ], [ 356412.069200001657009, 258720.247299998998642 ], [ 356412.920500002801418, 258714.97690000012517 ], [ 356414.567299999296665, 258710.979600001126528 ], [ 356421.082500003278255, 258703.433499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91357206000001, "LATITUDE": 18.35811979, "OBJECTID_1": 5096, "PARCEL_NO_": "103001010300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 7 GREAT NORTHSIDE QTR", "Name": "MAGENS POINT, INC.", "Address": "7 ST JOSEPH &ROSENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 419200, "Improved_V": 1910300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.60138193400002, "SHAPE_Area": 4053.9701138199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360557.031400002539158, 258693.587999999523163 ], [ 360559.410800002515316, 258698.251499999314547 ], [ 360569.012800000607967, 258706.984900001436472 ], [ 360581.789700001478195, 258721.654899999499321 ], [ 360592.945000000298023, 258737.367199998348951 ], [ 360596.101899996399879, 258745.414599999785423 ], [ 360600.889499999582767, 258751.364399999380112 ], [ 360610.380000002682209, 258773.18470000103116 ], [ 360611.082000002264977, 258785.433800000697374 ], [ 360612.66950000077486, 258788.402100000530481 ], [ 360613.410999998450279, 258796.007599998265505 ], [ 360616.576999999582767, 258802.999600000679493 ], [ 360633.672700002789497, 258792.548099998384714 ], [ 360663.576800003647804, 258775.942099999636412 ], [ 360647.765299998223782, 258738.871300000697374 ], [ 360642.173199996352196, 258732.70380000025034 ], [ 360601.209499999880791, 258713.792300000786781 ], [ 360570.697300001978874, 258698.554999999701977 ], [ 360557.031400002539158, 258693.587999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94936622, "LATITUDE": 18.35840342, "OBJECTID_1": 3922, "PARCEL_NO_": "102801050800", "Tax_Legal_": "ST PETER 3L-7 LITTLE NORTHSIDE", "Name": "SUJANANI, MOTI & LINDA", "Address": "PO BOX 307368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71400, "Improved_V": 157100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.743079642, "SHAPE_Area": 1204.89642697 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356856.824600003659725, 258762.517499998211861 ], [ 356852.269100002944469, 258729.338500000536442 ], [ 356837.715899996459484, 258733.863499999046326 ], [ 356808.562799997627735, 258748.401399999856949 ], [ 356830.945299997925758, 258771.382699999958277 ], [ 356856.824600003659725, 258762.517499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701041100", "MAP": "A9-441-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96595743, "LATITUDE": 18.3582886, "OBJECTID_1": 2937, "PARCEL_NO_": "102701041100", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 27 LITTLE NORTHSIDE", "Name": "JULIUS, SUSAN", "Address": "7820 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.89860745600001, "SHAPE_Area": 2350.3541056600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355115.342299997806549, 258737.325899999588728 ], [ 355091.076099999248981, 258686.50899999961257 ], [ 355061.49040000140667, 258709.826699998229742 ], [ 355057.973899997770786, 258743.995099999010563 ], [ 355059.584700003266335, 258744.219300001859665 ], [ 355061.974899999797344, 258747.616399999707937 ], [ 355062.737999998033047, 258752.688900001347065 ], [ 355061.899400003254414, 258756.481699999421835 ], [ 355115.342299997806549, 258737.325899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801043100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94438916, "LATITUDE": 18.35830534, "OBJECTID_1": 3899, "PARCEL_NO_": "102801043100", "Tax_Legal_": "LERKENLUND 8-27 GT NORTHSIDE", "Name": "SAVAGE, LUCILLE", "Address": "1027 Spruce Dr", "City": "Zebulon", "State": "North Carolina", "Zip": 27597, "Country": "United States", "Land_Value": 33700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.42939190600001, "SHAPE_Area": 828.82206821199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357385.219999998807907, 258736.233600001782179 ], [ 357367.617799997329712, 258720.046399999409914 ], [ 357362.738600000739098, 258724.861600000411272 ], [ 357338.93299999833107, 258774.273800000548363 ], [ 357341.348300002515316, 258774.715700000524521 ], [ 357385.219999998807907, 258736.233600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9490551, "LATITUDE": 18.358341, "OBJECTID_1": 3923, "PARCEL_NO_": "102801050900", "Tax_Legal_": "ST PETER 3L-8 LITTLE NORTHSIDE", "Name": "BESS, I, SIMONE, CRAIG, ARMANDO JR", "Address": "PO Box 2072", "City": "Mableton", "State": "Georgia", "Zip": 30126, "Country": "United States", "Land_Value": 48500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.51958621399999, "SHAPE_Area": 1162.6873532300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356888.603500001132488, 258723.725299999117851 ], [ 356861.163699999451637, 258726.456000000238419 ], [ 356852.269100002944469, 258729.338500000536442 ], [ 356856.824600003659725, 258762.517499998211861 ], [ 356876.914099998772144, 258770.703499998897314 ], [ 356888.603500001132488, 258723.725299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93364615, "LATITUDE": 18.35796389, "OBJECTID_1": 4095, "PARCEL_NO_": "102802021100", "Tax_Legal_": "MISGUNST 2 GREAT NORTHSIDE QTR", "Name": "REY, SHERWIN D. & JACQUELINE M.", "Address": "PO Box 9347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 378000, "Improved_V": 407000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 448.36211401700001, "SHAPE_Area": 12005.921444600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358487.495200000703335, 258645.196800000965595 ], [ 358485.796300001442432, 258655.315400000661612 ], [ 358479.351199999451637, 258654.629399999976158 ], [ 358481.0591000020504, 258643.455400001257658 ], [ 358423.70549999922514, 258750.010400000959635 ], [ 358498.419299997389317, 258782.708200000226498 ], [ 358568.197300001978874, 258732.194600000977516 ], [ 358538.978699997067451, 258659.761500000953674 ], [ 358487.495200000703335, 258645.196800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021600", "MAP": "D9-2197-T82", "PARCEL_NAM": "1CH", "ACRE": null, "LONGITUDE": -64.96735728, "LATITUDE": 18.35832765, "OBJECTID_1": 2431, "PARCEL_NO_": "102602021600", "Tax_Legal_": "DOROTHEA 1CH LT. NORTHSIDE", "Name": "BRYAN, JACQUES A & GALA M", "Address": "5E-2 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.80905509300001, "SHAPE_Area": 1874.1532234 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354957.371799997985363, 258721.217999998480082 ], [ 354927.005300000309944, 258688.883200000971556 ], [ 354914.529399998486042, 258733.532900001853704 ], [ 354912.031300000846386, 258742.800599999725819 ], [ 354910.375500001013279, 258747.853300001472235 ], [ 354956.30120000243187, 258752.239999998360872 ], [ 354957.371799997985363, 258721.217999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96355549, "LATITUDE": 18.35811242, "OBJECTID_1": 2916, "PARCEL_NO_": "102701032600", "Tax_Legal_": "DOROTHEA 3K-2 LT. NORTHSIDE", "Name": "BRYAN FAMILY TRUST", "Address": "7949 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71000, "Improved_V": 246100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.67292548899999, "SHAPE_Area": 3177.8544308800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355363.546499997377396, 258748.81810000166297 ], [ 355362.144299998879433, 258724.108600001782179 ], [ 355352.520700000226498, 258717.90819999948144 ], [ 355349.795299999415874, 258659.201900001615286 ], [ 355331.221400000154972, 258662.427299998700619 ], [ 355317.494300000369549, 258664.636999998241663 ], [ 355313.82490000128746, 258716.747099999338388 ], [ 355340.116700001060963, 258754.114700000733137 ], [ 355363.546499997377396, 258748.81810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91262848, "LATITUDE": 18.35825583, "OBJECTID_1": 5275, "PARCEL_NO_": "103001040100", "Tax_Legal_": "LOVENLUND B-18 GT. NORTHSIDE QTR.", "Name": "CHALON, STANLEY P", "Address": "PO Box 9974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.460934571, "SHAPE_Area": 2166.3135367099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360739.702899999916553, 258737.512800000607967 ], [ 360739.729900002479553, 258734.346700001507998 ], [ 360729.274800002574921, 258731.094700001180172 ], [ 360719.642200000584126, 258725.949599999934435 ], [ 360691.675499998033047, 258790.526399999856949 ], [ 360702.116200000047684, 258795.467000000178814 ], [ 360710.164899997413158, 258797.221700001507998 ], [ 360720.643399998545647, 258797.729600001126528 ], [ 360733.571400001645088, 258794.668999999761581 ], [ 360738.844400003552437, 258743.627500001341105 ], [ 360739.702899999916553, 258737.512800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95185693000001, "LATITUDE": 18.3583193, "OBJECTID_1": 3080, "PARCEL_NO_": "102702033800", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-3 LITTLE NORTHSIDE", "Name": "BENJAMIN, LAWRENCE & LINDA", "Address": "PO Box 8738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31000, "Improved_V": 163200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.56725711499999, "SHAPE_Area": 1429.31907389 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356552.022299997508526, 258761.922699999064207 ], [ 356587.518100000917912, 258760.102299999445677 ], [ 356591.174900002777576, 258709.469700001180172 ], [ 356580.662299998104572, 258712.972300000488758 ], [ 356571.746100001037121, 258718.387699998915195 ], [ 356566.060500003397465, 258723.196400001645088 ], [ 356561.174099996685982, 258728.855900000780821 ], [ 356557.083200000226498, 258735.788499999791384 ], [ 356552.932899996638298, 258749.686700001358986 ], [ 356552.022299997508526, 258761.922699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010300", "MAP": "D9-1422-T78", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91493205, "LATITUDE": 18.35840824, "OBJECTID_1": 5096, "PARCEL_NO_": "103001010300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 7 GREAT NORTHSIDE QTR", "Name": "MAGENS POINT, INC.", "Address": "7 ST JOSEPH &ROSENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 419200, "Improved_V": 1910300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.847548483300002, "SHAPE_Area": 283.14054025500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360465.25450000166893, 258770.73030000180006 ], [ 360459.542000003159046, 258778.705099999904633 ], [ 360490.06139999628067, 258793.098200000822544 ], [ 360489.343199998140335, 258782.748700000345707 ], [ 360465.25450000166893, 258770.73030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010300", "MAP": "D9-1422-T78", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91473356, "LATITUDE": 18.35834327, "OBJECTID_1": 5096, "PARCEL_NO_": "103001010300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 7 GREAT NORTHSIDE QTR", "Name": "MAGENS POINT, INC.", "Address": "7 ST JOSEPH &ROSENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 419200, "Improved_V": 1910300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.854024076, "SHAPE_Area": 583.98135395400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360489.343199998140335, 258782.748700000345707 ], [ 360490.06139999628067, 258793.098200000822544 ], [ 360504.585799999535084, 258791.950500000268221 ], [ 360503.880199998617172, 258780.123500000685453 ], [ 360507.915399998426437, 258779.734299998730421 ], [ 360507.211599998176098, 258767.696199998259544 ], [ 360503.176399998366833, 258768.085400000214577 ], [ 360502.472599998116493, 258756.0472999997437 ], [ 360487.140100002288818, 258757.399500001221895 ], [ 360489.343199998140335, 258782.748700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91232434, "LATITUDE": 18.35824229, "OBJECTID_1": 5276, "PARCEL_NO_": "103001040200", "Tax_Legal_": "LOVENLUND ESTATE B-17(151) No.2 GREAT NORTHSIDE QTR.", "Name": "LORETTA V LLOYD and COREEN A LLOYD-ADAMS", "Address": "PO Box 9320", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33300, "Improved_V": 368200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.70192806200001, "SHAPE_Area": 1650.48706161 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360765.409699998795986, 258753.036100000143051 ], [ 360760.205300003290176, 258734.385400000959635 ], [ 360754.227300003170967, 258736.365200001746416 ], [ 360744.555100001394749, 258735.863800000399351 ], [ 360739.729900002479553, 258734.346700001507998 ], [ 360739.702899999916553, 258737.512800000607967 ], [ 360738.844400003552437, 258743.627500001341105 ], [ 360733.571400001645088, 258794.668999999761581 ], [ 360748.921899996697903, 258791.2060999982059 ], [ 360762.672399997711182, 258786.252399999648333 ], [ 360773.368500001728535, 258781.557700000703335 ], [ 360765.409699998795986, 258753.036100000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010300", "MAP": "D9-1422-T78", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91466103, "LATITUDE": 18.3581417, "OBJECTID_1": 5096, "PARCEL_NO_": "103001010300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 7 GREAT NORTHSIDE QTR", "Name": "MAGENS POINT, INC.", "Address": "7 ST JOSEPH &ROSENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 419200, "Improved_V": 1910300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.803738307, "SHAPE_Area": 678.27746537799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360521.346799999475479, 258717.571699999272823 ], [ 360517.31530000269413, 258717.538699999451637 ], [ 360515.727799996733665, 258714.57039999961853 ], [ 360487.168799996376038, 258754.022199999541044 ], [ 360487.140100002288818, 258757.399500001221895 ], [ 360502.472599998116493, 258756.0472999997437 ], [ 360503.176399998366833, 258768.085400000214577 ], [ 360507.211599998176098, 258767.696199998259544 ], [ 360507.915399998426437, 258779.734299998730421 ], [ 360503.880199998617172, 258780.123500000685453 ], [ 360504.585799999535084, 258791.950500000268221 ], [ 360514.268799997866154, 258791.185400001704693 ], [ 360514.293999999761581, 258788.23030000180006 ], [ 360511.066899999976158, 258788.41499999910593 ], [ 360511.138800002634525, 258779.971799999475479 ], [ 360513.559600003063679, 258779.780499998480082 ], [ 360512.780199997127056, 258776.607700001448393 ], [ 360511.165799997746944, 258776.805599998682737 ], [ 360507.488499999046326, 258735.190099999308586 ], [ 360521.346799999475479, 258717.571699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001013700", "MAP": "D9-1422-T78", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91440905, "LATITUDE": 18.35840631, "OBJECTID_1": 5125, "PARCEL_NO_": "103001013700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 7A&7B GT. NORTHSIDE", "Name": "CAPP, LEONARD & BETTY", "Address": "6200 Magens Bay Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 37600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.246852387, "SHAPE_Area": 607.21682357500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360512.780199997127056, 258776.607700001448393 ], [ 360513.559600003063679, 258779.780499998480082 ], [ 360511.138800002634525, 258779.971799999475479 ], [ 360511.066899999976158, 258788.41499999910593 ], [ 360514.293999999761581, 258788.23030000180006 ], [ 360514.268799997866154, 258791.185400001704693 ], [ 360550.581600002944469, 258788.105099998414516 ], [ 360549.899400003254414, 258773.534000001847744 ], [ 360536.98759999871254, 258774.694899998605251 ], [ 360537.021799996495247, 258770.684399999678135 ], [ 360524.918099999427795, 258771.640799999237061 ], [ 360524.887500002980232, 258775.229200001806021 ], [ 360512.780199997127056, 258776.607700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701031600", "MAP": "D9-2758-T84", "PARCEL_NAM": "3K-3", "ACRE": null, "LONGITUDE": -64.96320971, "LATITUDE": 18.35804868, "OBJECTID_1": 2906, "PARCEL_NO_": "102701031600", "Tax_Legal_": "DOROTHEA 3K-3 LT NORTHSIDE", "Name": "GRIMES and BRUGOS REVOCABLE TRUST", "Address": "9053 Estate Thomas", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65500, "Improved_V": 321700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.67595016799999, "SHAPE_Area": 3568.5680756100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355363.546499997377396, 258748.81810000166297 ], [ 355397.440399996936321, 258745.717999998480082 ], [ 355391.223700001835823, 258718.224899999797344 ], [ 355398.498499996960163, 258716.173500001430511 ], [ 355393.116800002753735, 258685.309799998998642 ], [ 355386.941500000655651, 258652.962000001221895 ], [ 355349.795299999415874, 258659.201900001615286 ], [ 355352.520700000226498, 258717.90819999948144 ], [ 355362.144299998879433, 258724.108600001782179 ], [ 355363.546499997377396, 258748.81810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96617688000001, "LATITUDE": 18.35796791, "OBJECTID_1": 2938, "PARCEL_NO_": "102701041200", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 28, LITTLE NORTHSIDE", "Name": "LINDQUIST, MONA", "Address": "PO Box 10418", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46900, "Improved_V": 149100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.64582820199999, "SHAPE_Area": 2795.5931397 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355091.076099999248981, 258686.50899999961257 ], [ 355069.030599996447563, 258640.342599999159575 ], [ 355041.726400002837181, 258663.435400001704693 ], [ 355042.388899996876717, 258680.328400000929832 ], [ 355043.460299998521805, 258743.876299999654293 ], [ 355049.899999998509884, 258745.195599999278784 ], [ 355053.949500001966953, 258743.117800001055002 ], [ 355057.973899997770786, 258743.995099999010563 ], [ 355061.49040000140667, 258709.826699998229742 ], [ 355091.076099999248981, 258686.50899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801017500", "MAP": "D9-955-T71", "PARCEL_NAM": "8B-4", "ACRE": ".23", "LONGITUDE": -64.94381715, "LATITUDE": 18.35823999, "OBJECTID_1": 3752, "PARCEL_NO_": "102801017500", "Tax_Legal_": "LERKENLUND 8B-4 GT. NORTHSIDE", "Name": "PINNEY, MERLE", "Address": "PO Box 656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57100, "Improved_V": 533000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.66055897800001, "SHAPE_Area": 1208.0891854399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357420.772399999201298, 258760.05689999833703 ], [ 357449.665700003504753, 258743.727099999785423 ], [ 357422.509999997913837, 258713.107400000095367 ], [ 357411.128100000321865, 258723.991099998354912 ], [ 357398.131800003349781, 258735.072700001299381 ], [ 357418.104400001466274, 258756.978799998760223 ], [ 357420.772399999201298, 258760.05689999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701031800", "MAP": "G9-2855-T73", "PARCEL_NAM": "3D", "ACRE": ".04", "LONGITUDE": -64.96298482, "LATITUDE": 18.35832392, "OBJECTID_1": 2908, "PARCEL_NO_": "102701031800", "Tax_Legal_": "DOROTHEA 3D LITTLE NORTHSIDE", "Name": "BRYAN, CARL JOSEPH", "Address": "3D Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.744875410999995, "SHAPE_Area": 189.526569483 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355397.440399996936321, 258745.717999998480082 ], [ 355403.090000003576279, 258745.130899999290705 ], [ 355398.498499996960163, 258716.173500001430511 ], [ 355391.223700001835823, 258718.224899999797344 ], [ 355397.440399996936321, 258745.717999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030700", "MAP": "D9-5735-T94", "PARCEL_NAM": "3B-1", "ACRE": ".702", "LONGITUDE": -64.96277278, "LATITUDE": 18.35816035, "OBJECTID_1": 2898, "PARCEL_NO_": "102701030700", "Tax_Legal_": "DOROTHEA 3B LITTLE NORTHSIDE", "Name": "FAMIGLIETTI, BERYL", "Address": "815 Cabin Point Dr", "City": "Montross", "State": "Virginia", "Zip": 22520, "Country": "United States", "Land_Value": 151400, "Improved_V": 314000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.98759649100001, "SHAPE_Area": 2677.02089342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355445.862300001084805, 258741.048000000417233 ], [ 355437.512599997222424, 258679.973700001835823 ], [ 355393.116800002753735, 258685.309799998998642 ], [ 355398.498499996960163, 258716.173500001430511 ], [ 355403.090000003576279, 258745.130899999290705 ], [ 355442.631700001657009, 258741.654899999499321 ], [ 355445.862300001084805, 258741.048000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701026100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.959021, "LATITUDE": 18.35811572, "OBJECTID_1": 2887, "PARCEL_NO_": "102701026100", "Tax_Legal_": "BONNE RESOLUTION 10E-1&10E REM. No.5 LITTLE NORTHSIDE QTR", "Name": "TAYLOR, KATHLEEN A. & CARGILL JR., THOMAS", "Address": "3421 MISSISSIPPI STREET", "City": "SAN DEIGO", "State": "California", "Zip": 92104, "Country": "United States", "Land_Value": 102900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.38007181500001, "SHAPE_Area": 2218.3101391300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355845.987499997019768, 258721.52479999884963 ], [ 355828.628100000321865, 258676.842000000178814 ], [ 355791.368699997663498, 258696.379799999296665 ], [ 355801.408399999141693, 258748.390999998897314 ], [ 355827.37219999730587, 258729.605099998414516 ], [ 355835.473099999129772, 258725.238400001078844 ], [ 355845.987499997019768, 258721.52479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91203355, "LATITUDE": 18.35812522, "OBJECTID_1": 5277, "PARCEL_NO_": "103001040300", "Tax_Legal_": "LOVENLUND ESTATE B-16 No.2 GREAT NORTHSIDE QTR.", "Name": "LUIS ORLANDO AMARO MD REVOC FAM TR", "Address": "5C No Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42500, "Improved_V": 371300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.29502096300001, "SHAPE_Area": 1559.28400369 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360788.171499997377396, 258727.354899998754263 ], [ 360786.58049999922514, 258724.808699999004602 ], [ 360781.719200000166893, 258727.513099998235703 ], [ 360767.974200002849102, 258731.833599999547005 ], [ 360762.313799999654293, 258733.687100000679493 ], [ 360760.205300003290176, 258734.385400000959635 ], [ 360765.409699998795986, 258753.036100000143051 ], [ 360773.368500001728535, 258781.557700000703335 ], [ 360785.335400000214577, 258776.305300001055002 ], [ 360808.027300000190735, 258762.981100000441074 ], [ 360791.350000001490116, 258732.869300000369549 ], [ 360788.171499997377396, 258727.354899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701030800", "MAP": "G9-1322-T69", "PARCEL_NAM": "3C REM", "ACRE": "0.50", "LONGITUDE": -64.96233989, "LATITUDE": 18.35812668, "OBJECTID_1": 2899, "PARCEL_NO_": "102701030800", "Tax_Legal_": "3C ESTATE DOROTHEA No.2 LITTLE NORTHSIDE QTR.", "Name": "NEUBURGER, KLAUS & JACKIE H", "Address": "7945 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44700, "Improved_V": 435900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.70085124299999, "SHAPE_Area": 2625.1845544500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355486.117399998009205, 258678.824200000613928 ], [ 355438.384300000965595, 258686.349700000137091 ], [ 355445.862300001084805, 258741.048000000417233 ], [ 355462.820100001990795, 258738.231499999761581 ], [ 355477.367899999022484, 258734.339800000190735 ], [ 355493.892300002276897, 258728.674600001424551 ], [ 355486.117399998009205, 258678.824200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012700", "MAP": "A9-42-T65", "PARCEL_NAM": "11C", "ACRE": null, "LONGITUDE": -64.95407029, "LATITUDE": 18.35770029, "OBJECTID_1": 2967, "PARCEL_NO_": "102702012700", "Tax_Legal_": "LILLIANDAHL & MARIENHOJ 11C GR NORTHSIDE", "Name": "BRIN, DARLAN", "Address": "7839 Est Lilliendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 181300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 571.75892574900001, "SHAPE_Area": 19032.5868366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356379.931100003421307, 258611.90430000051856 ], [ 356246.799599997699261, 258621.36939999833703 ], [ 356276.364200003445148, 258747.845300000160933 ], [ 356291.729099996387959, 258742.69370000064373 ], [ 356328.887800000607967, 258734.976300001144409 ], [ 356349.058200001716614, 258733.663699999451637 ], [ 356377.394199997186661, 258720.385600000619888 ], [ 356404.931100003421307, 258706.256700001657009 ], [ 356414.635600000619888, 258702.958599999547005 ], [ 356442.058499999344349, 258607.557700000703335 ], [ 356379.931100003421307, 258611.90430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802025000", "MAP": "F9-3816-T80", "PARCEL_NAM": "3H-1", "ACRE": ".085", "LONGITUDE": -64.93823628, "LATITUDE": 18.35821253, "OBJECTID_1": 4131, "PARCEL_NO_": "102802025000", "Tax_Legal_": "3Fa REM. LERKENLUND No.9 GREAT NORTHSIDE QTR", "Name": "PATRICK D., JESSICA, & MICHAEL BERRY", "Address": "2401 E Crooked Lake Club Blvd", "City": "EUSTIS", "State": "Florida", "Zip": 32726, "Country": "United States", "Land_Value": 95200, "Improved_V": 392200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.150429901, "SHAPE_Area": 631.38454790100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357998.946099996566772, 258726.902300000190735 ], [ 358008.326899997889996, 258761.598400000482798 ], [ 358014.827799998223782, 258755.74100000038743 ], [ 358022.161899998784065, 258746.723999999463558 ], [ 358026.256399996578693, 258739.369199998676777 ], [ 358027.917599998414516, 258733.683299999684095 ], [ 358024.737300001084805, 258728.379900000989437 ], [ 358018.306599996984005, 258726.005300000309944 ], [ 358011.053400002419949, 258725.523699998855591 ], [ 357998.946099996566772, 258726.902300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052100", "MAP": "F9-1394-T64", "PARCEL_NAM": "3H-11", "ACRE": "0.24", "LONGITUDE": -64.94687352, "LATITUDE": 18.35799174, "OBJECTID_1": 3933, "PARCEL_NO_": "102801052100", "Tax_Legal_": "ST PETER 3H-11 LITTLE NORTHSIDE QTR", "Name": "PHILLIPS, LAWRENCE", "Address": "PO Box 11942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.378179585, "SHAPE_Area": 1095.2800846800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357109.015100002288818, 258684.663699999451637 ], [ 357108.644299998879433, 258682.10020000115037 ], [ 357099.410700000822544, 258683.231899999082088 ], [ 357091.732600003480911, 258683.312600001692772 ], [ 357088.12049999833107, 258683.350600000470877 ], [ 357088.206000000238419, 258685.973700001835823 ], [ 357088.325099997222424, 258689.629399999976158 ], [ 357089.647600002586842, 258730.225000001490116 ], [ 357104.731700003147125, 258731.018899999558926 ], [ 357113.77759999781847, 258731.495000001043081 ], [ 357113.618900001049042, 258719.906199999153614 ], [ 357113.152999997138977, 258716.339699998497963 ], [ 357109.510099999606609, 258688.453000001609325 ], [ 357109.015100002288818, 258684.663699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024700", "MAP": null, "PARCEL_NAM": "3A REM", "ACRE": null, "LONGITUDE": -64.93944417, "LATITUDE": 18.3581662, "OBJECTID_1": 4128, "PARCEL_NO_": "102802024700", "Tax_Legal_": "3A-REMAINDER LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BRYAN, VERONICA", "Address": "3A LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.24406975299999, "SHAPE_Area": 877.41883311399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357906.162600003182888, 258732.897900000214577 ], [ 357893.484600000083447, 258706.618500001728535 ], [ 357880.446900002658367, 258722.554900001734495 ], [ 357864.878899998962879, 258751.558400001376867 ], [ 357862.43469999730587, 258754.493700001388788 ], [ 357863.215899996459484, 258757.455400001257658 ], [ 357864.821299999952316, 258758.312899999320507 ], [ 357867.241999998688698, 258758.121700000017881 ], [ 357889.145499996840954, 258742.679999999701977 ], [ 357906.162600003182888, 258732.897900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602020200", "MAP": "D9-7530-T005", "PARCEL_NAM": "1A-16", "ACRE": ".617", "LONGITUDE": -64.96767463, "LATITUDE": 18.35812436, "OBJECTID_1": 2419, "PARCEL_NO_": "102602020200", "Tax_Legal_": "1A-16 ESTATE DOROTHEA No. 7A LITTLE NORTHSIDE QTR.", "Name": "MCGARRITY, MARY E. & PENNINGTON, ROBERT R.", "Address": "8520 San Diego Ave", "City": "Albuquerque", "State": "New Mexico", "Zip": 87122, "Country": "United States", "Land_Value": 55500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.01729116499999, "SHAPE_Area": 2267.6756553800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354907.89469999819994, 258660.44029999896884 ], [ 354895.618400000035763, 258681.660199999809265 ], [ 354868.5929000005126, 258730.41270000115037 ], [ 354914.529399998486042, 258733.532900001853704 ], [ 354927.005300000309944, 258688.883200000971556 ], [ 354922.212399996817112, 258683.566599998623133 ], [ 354907.89469999819994, 258660.44029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602034900", "MAP": "D9-4620-T88", "PARCEL_NAM": "1A-17", "ACRE": null, "LONGITUDE": -64.96806596, "LATITUDE": 18.35813472, "OBJECTID_1": 2510, "PARCEL_NO_": "102602034900", "Tax_Legal_": "1A-17 DOROTHEA NO.7 LITTLE NORTHSIDE QTR", "Name": "POTTER, MONIFA J.", "Address": "PO Box 11092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.859649058, "SHAPE_Area": 2090.4809971899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354895.618400000035763, 258681.660199999809265 ], [ 354852.883900001645088, 258681.310499999672174 ], [ 354825.075499996542931, 258727.312399998307228 ], [ 354868.5929000005126, 258730.41270000115037 ], [ 354895.618400000035763, 258681.660199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94476569, "LATITUDE": 18.35803886, "OBJECTID_1": 3870, "PARCEL_NO_": "102801040100", "Tax_Legal_": "8-54 ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "VANTERPOOL, JOE", "Address": "PO Box 10391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33000, "Improved_V": 225000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.50533614299999, "SHAPE_Area": 994.94795668200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357340.446000002324581, 258691.326400000602007 ], [ 357323.561899997293949, 258685.488699998706579 ], [ 357321.920500002801418, 258688.852699998766184 ], [ 357306.964599996805191, 258740.659400001168251 ], [ 357306.944799996912479, 258742.981199998408556 ], [ 357305.326800003647804, 258743.601300001144409 ], [ 357307.702600002288818, 258748.686900001019239 ], [ 357317.441200003027916, 258741.378400001674891 ], [ 357327.214100003242493, 258730.059300001710653 ], [ 357329.683399997651577, 258724.1689000017941 ], [ 357332.131099998950958, 258720.8114 ], [ 357340.446000002324581, 258691.326400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94458763, "LATITUDE": 18.35819461, "OBJECTID_1": 3874, "PARCEL_NO_": "102801040500", "Tax_Legal_": "8-46 ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "CHRISTENSEN, KAREN R. & LUNZ, P. A", "Address": "9200 Vitraco Park", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022608, "Country": "United States", "Land_Value": 14200, "Improved_V": 130800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.110413601499999, "SHAPE_Area": 406.795331847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357354.670100003480911, 258725.428899999707937 ], [ 357339.418499998748302, 258717.282499998807907 ], [ 357329.571900002658367, 258737.255800001323223 ], [ 357343.189300000667572, 258747.921900000423193 ], [ 357354.670100003480911, 258725.428899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602035000", "MAP": "D9-4620-T88", "PARCEL_NAM": "1A-18", "ACRE": null, "LONGITUDE": -64.96848768, "LATITUDE": 18.35811679, "OBJECTID_1": 2511, "PARCEL_NO_": "102602035000", "Tax_Legal_": "DOROTHEA 1A-18 LT. NORTHSIDE", "Name": "HODGE, JUDITH", "Address": "BOX 3793", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69600, "Improved_V": 232900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.65497924600001, "SHAPE_Area": 2130.9987260600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354852.883900001645088, 258681.310499999672174 ], [ 354802.892499998211861, 258680.901299998164177 ], [ 354781.55799999833107, 258724.212000001221895 ], [ 354825.075499996542931, 258727.312399998307228 ], [ 354852.883900001645088, 258681.310499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602036000", "MAP": "D9-8042-T007", "PARCEL_NAM": "1A-21", "ACRE": ".500", "LONGITUDE": -64.96962475, "LATITUDE": 18.35805672, "OBJECTID_1": 2519, "PARCEL_NO_": "102602036000", "Tax_Legal_": "DOROTHEA 1A-21 LITTLE NORTHSIDE QTR", "Name": "PHILLIP, ALTON & LYNTHIA", "Address": "PO Box 12232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59300, "Improved_V": 556400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.275362616, "SHAPE_Area": 1895.2706989000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354709.192299999296665, 258719.222100000828505 ], [ 354724.849399998784065, 258674.395700000226498 ], [ 354678.883699998259544, 258673.722600001841784 ], [ 354669.545299999415874, 258715.695799998939037 ], [ 354680.821000002324581, 258717.265799999237061 ], [ 354709.192299999296665, 258719.222100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801054200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94584056, "LATITUDE": 18.35808763, "OBJECTID_1": 3952, "PARCEL_NO_": "102801054200", "Tax_Legal_": "ST.PETER ESTATE 3I-9 No.2 LITTLE NORTHSIDE QTR.", "Name": "SPENCELEY, JONATHON", "Address": "P.O.BOX 5260", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 65200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.235233900400004, "SHAPE_Area": 556.11173005199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357215.046599999070168, 258732.402300000190735 ], [ 357220.859999999403954, 258719.900699999183416 ], [ 357224.994000002741814, 258707.902199998497963 ], [ 357199.20099999755621, 258706.63569999858737 ], [ 357198.195100001990795, 258730.058800000697374 ], [ 357197.662799999117851, 258733.103300001472235 ], [ 357215.046599999070168, 258732.402300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701033800", "MAP": "D9-6991-T001", "PARCEL_NAM": "2-3", "ACRE": ".501", "LONGITUDE": -64.96572632, "LATITUDE": 18.35795703, "OBJECTID_1": 2926, "PARCEL_NO_": "102701033800", "Tax_Legal_": "2-3 EST DOROTHEA #7 LT NORTHSIDE QTR", "Name": "RYKE, STEVEN & SUSAN L", "Address": "4660 Ashworth Dr", "City": "Cumming", "State": "Georgia", "Zip": 30040, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.01058419699999, "SHAPE_Area": 2561.1856925100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355100.74210000038147, 258641.351700000464916 ], [ 355076.225100003182888, 258655.4087999984622 ], [ 355091.076099999248981, 258686.50899999961257 ], [ 355113.505000002682209, 258733.478399999439716 ], [ 355126.666900001466274, 258726.192200001329184 ], [ 355140.367700003087521, 258717.846799999475479 ], [ 355100.74210000038147, 258641.351700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801054500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94555048, "LATITUDE": 18.35810616, "OBJECTID_1": 3955, "PARCEL_NO_": "102801054500", "Tax_Legal_": "ST PETER 3-I-6 LT. NORTHSIDE", "Name": "FLAXMAN, EUGENE R. & SANDRA L.", "Address": "2000 S Ocean Blvd", "City": "Palm Beach", "State": "Florida", "Zip": 33480, "Country": "United States", "Land_Value": 23500, "Improved_V": 171100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.487261102100007, "SHAPE_Area": 555.80824974500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357252.07940000295639, 258730.909099999815226 ], [ 357255.615900002419949, 258710.263799998909235 ], [ 357230.609399996697903, 258711.325699999928474 ], [ 357222.781999997794628, 258732.090399999171495 ], [ 357252.07940000295639, 258730.909099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014100", "MAP": "D9-955-T71", "PARCEL_NAM": "8B-3", "ACRE": ".24", "LONGITUDE": -64.94361913, "LATITUDE": 18.35808977, "OBJECTID_1": 3723, "PARCEL_NO_": "102801014100", "Tax_Legal_": "LERKENLUND 8B-3 GR NORTHSIDE QTR", "Name": "PINNEY, CALVIN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 150900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.32574886, "SHAPE_Area": 916.73630374799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357466.700800001621246, 258731.834199998527765 ], [ 357438.769299998879433, 258697.619600001722574 ], [ 357422.509999997913837, 258713.107400000095367 ], [ 357449.665700003504753, 258743.727099999785423 ], [ 357466.700800001621246, 258731.834199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801054800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94526365, "LATITUDE": 18.35808851, "OBJECTID_1": 3957, "PARCEL_NO_": "102801054800", "Tax_Legal_": "ST PETER 3I-5 LITTLE NORTHSIDE", "Name": "XAVIER, PHILLIP", "Address": "6197 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31900, "Improved_V": 318700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.320958743099993, "SHAPE_Area": 435.03082616699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357278.503799997270107, 258729.843600001186132 ], [ 357283.836900003254414, 258710.494800001382828 ], [ 357262.080799996852875, 258708.627999998629093 ], [ 357258.430900000035763, 258730.653000000864267 ], [ 357278.503799997270107, 258729.843600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052000", "MAP": "D9-4452-T88", "PARCEL_NAM": "3H-27", "ACRE": ".52", "LONGITUDE": -64.94722967, "LATITUDE": 18.35794561, "OBJECTID_1": 3932, "PARCEL_NO_": "102801052000", "Tax_Legal_": "ST PETER 3H-27 GT NORTHSIDE", "Name": "OLIVACCE, RONALD & EDITH", "Address": "PO Box 7040", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65500, "Improved_V": 147100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.42600911400001, "SHAPE_Area": 2164.0659032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357088.206000000238419, 258685.973700001835823 ], [ 357088.12049999833107, 258683.350600000470877 ], [ 357068.851300001144409, 258683.393699999898672 ], [ 357032.331299997866154, 258679.619199998676777 ], [ 357034.813299998641014, 258703.634100001305342 ], [ 357034.495399996638298, 258713.354100000113249 ], [ 357035.862199999392033, 258713.783700000494719 ], [ 357036.148699998855591, 258713.873700000345707 ], [ 357076.808600001037121, 258726.300900001078844 ], [ 357089.647600002586842, 258730.225000001490116 ], [ 357088.325099997222424, 258689.629399999976158 ], [ 357088.206000000238419, 258685.973700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801055100", "MAP": "F9-1229-T63", "PARCEL_NAM": "3I-1", "ACRE": ".071", "LONGITUDE": -64.94503687, "LATITUDE": 18.3580954, "OBJECTID_1": 3959, "PARCEL_NO_": "102801055100", "Tax_Legal_": "ST PETER 3I-1 & 8-58 LERKENLUND", "Name": "TODMAN, MITCHELL PHILMORE", "Address": "8102 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 142100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.190131789099993, "SHAPE_Area": 263.78695933400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357298.706900000572205, 258710.468400001525879 ], [ 357291.113399997353554, 258708.232299998402596 ], [ 357290.281999997794628, 258711.180799998342991 ], [ 357285.048000000417233, 258729.579700000584126 ], [ 357299.293200001120567, 258729.005300000309944 ], [ 357304.015399999916553, 258728.814899999648333 ], [ 357298.706900000572205, 258710.468400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051400", "MAP": "D9-2343-T83", "PARCEL_NAM": "3G-4", "ACRE": ".18", "LONGITUDE": -64.9485134, "LATITUDE": 18.3579452, "OBJECTID_1": 3928, "PARCEL_NO_": "102801051400", "Tax_Legal_": "ST PETER 3F-1-B,3F-2,3G-2-B,3G-4 LILLTE NORTHSIDE", "Name": "PERCELL, SANDRA", "Address": "BOX 4910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.355300019, "SHAPE_Area": 1038.46719388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356928.172100000083447, 258673.666900001466274 ], [ 356922.56700000166893, 258673.456500001251698 ], [ 356920.231499999761581, 258685.286299999803305 ], [ 356919.129299998283386, 258690.869199998676777 ], [ 356912.732699997723103, 258723.268899999558926 ], [ 356916.818999998271465, 258724.589499998837709 ], [ 356933.130000002682209, 258730.032800000160933 ], [ 356939.095200002193451, 258683.382500000298023 ], [ 356939.434500001370907, 258680.728799998760223 ], [ 356940.279399998486042, 258674.121199999004602 ], [ 356928.172100000083447, 258673.666900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801043200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94416978, "LATITUDE": 18.35808785, "OBJECTID_1": 3900, "PARCEL_NO_": "102801043200", "Tax_Legal_": "LERKENLUND 8-26 GR NORTHSIDE", "Name": "REHENIA F JOSHUA FAMILY TRUST", "Address": "PO Box 211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42800, "Improved_V": 263500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.729889148200002, "SHAPE_Area": 550.96225870399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357403.093800000846386, 258720.547899998724461 ], [ 357390.322200000286102, 258705.244600001722574 ], [ 357367.617799997329712, 258720.046399999409914 ], [ 357385.219999998807907, 258736.233600001782179 ], [ 357403.093800000846386, 258720.547899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91170255, "LATITUDE": 18.35786624, "OBJECTID_1": 5278, "PARCEL_NO_": "103001040400", "Tax_Legal_": "LOVENLUND ESTATE B-15 No.2 GREAT NORTHSIDE QTR", "Name": "LINDA CAROL PULLEY REVOCABLE TRUST", "Address": "PO Box 9040", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63500, "Improved_V": 333500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.88881703300001, "SHAPE_Area": 2101.64975628 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360844.820500001311302, 258694.63740000128746 ], [ 360831.573299996554852, 258692.590599998831749 ], [ 360820.650600001215935, 258701.022900000214577 ], [ 360808.482199996709824, 258709.578099999576807 ], [ 360800.384900003671646, 258713.522599998861551 ], [ 360789.015600003302097, 258722.928800001740456 ], [ 360786.58049999922514, 258724.808699999004602 ], [ 360788.171499997377396, 258727.354899998754263 ], [ 360791.350000001490116, 258732.869300000369549 ], [ 360808.027300000190735, 258762.981100000441074 ], [ 360815.330799996852875, 258757.552400000393391 ], [ 360820.195699997246265, 258754.425799999386072 ], [ 360823.464100003242493, 258749.386300001293421 ], [ 360825.105499997735023, 258746.022300001233816 ], [ 360830.090800002217293, 258728.753400001674891 ], [ 360835.015000000596046, 258718.661200001835823 ], [ 360848.043700002133846, 258703.780200000852346 ], [ 360852.913900002837181, 258700.020399998873472 ], [ 360858.556000001728535, 258696.759700000286102 ], [ 360844.820500001311302, 258694.63740000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95887447, "LATITUDE": 18.35755565, "OBJECTID_1": 2871, "PARCEL_NO_": "102701024200", "Tax_Legal_": "BONNE RESOLUTION 10A LITTLE NORTHSIDE", "Name": "BERRY, GEORGE JOSEPH", "Address": "PO Box 7821", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98200, "Improved_V": 205000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.576528731, "SHAPE_Area": 3853.47188362 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355819.779500000178814, 258579.666499998420477 ], [ 355818.199199996888638, 258575.853900000452995 ], [ 355794.717299997806549, 258587.271800000220537 ], [ 355796.288500003516674, 258592.139800000935793 ], [ 355797.865199998021126, 258596.374600000679493 ], [ 355808.127899996936321, 258622.212000001221895 ], [ 355828.628100000321865, 258676.842000000178814 ], [ 355845.987499997019768, 258721.52479999884963 ], [ 355853.274899996817112, 258717.995799999684095 ], [ 355858.942500002682209, 258715.298000000417233 ], [ 355870.222499996423721, 258710.026999998837709 ], [ 355867.105099998414516, 258700.894999999552965 ], [ 355865.554799996316433, 258696.353700000792742 ], [ 355832.4054000005126, 258612.067099999636412 ], [ 355819.779500000178814, 258579.666499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014200", "MAP": "D9-955-T71", "PARCEL_NAM": "8B-2", "ACRE": ".27", "LONGITUDE": -64.94343933, "LATITUDE": 18.35795989, "OBJECTID_1": 3724, "PARCEL_NO_": "102801014200", "Tax_Legal_": "LERKENLUND 8B-2 GR NORTHSIDE QTR", "Name": "TURNBULL, RUFUS & CHRISTINE", "Address": "PO Box 305852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35400, "Improved_V": 143300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.51208265400001, "SHAPE_Area": 1186.0911733299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357489.414200000464916, 258715.977000001817942 ], [ 357458.252099998295307, 258682.369199998676777 ], [ 357446.897200003266335, 258690.08669999986887 ], [ 357438.769299998879433, 258697.619600001722574 ], [ 357466.700800001621246, 258731.834199998527765 ], [ 357481.302500002086163, 258721.610199999064207 ], [ 357489.414200000464916, 258715.977000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801053900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94609845, "LATITUDE": 18.3579607, "OBJECTID_1": 3950, "PARCEL_NO_": "102801053900", "Tax_Legal_": "ST PETER 3I-13&3H-2 2 LITTLE NORTHSIDE Q", "Name": "SPENCELEY, JONATHAON", "Address": "P.O.BOX 5260", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.24728609, "SHAPE_Area": 782.86859207700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357192.939300000667572, 258684.419599998742342 ], [ 357171.944600000977516, 258687.836399998515844 ], [ 357170.870399996638298, 258719.280499998480082 ], [ 357191.766199998557568, 258727.473099999129772 ], [ 357192.939300000667572, 258684.419599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057000", "MAP": "D9-8618-T011", "PARCEL_NAM": "3E-1-A", "ACRE": ".290", "LONGITUDE": -64.9489268, "LATITUDE": 18.3572063, "OBJECTID_1": 3978, "PARCEL_NO_": "102801057000", "Tax_Legal_": "3E-1-A ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "LAPLACE, ROBERT & RICKY PIERRE", "Address": "7794 Est St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47100, "Improved_V": 474600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.575594013, "SHAPE_Area": 1317.9769976 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356863.567800000309944, 258630.155099999159575 ], [ 356863.809000000357628, 258630.313400000333786 ], [ 356871.222099997103214, 258636.216299999505281 ], [ 356899.295400001108646, 258640.235300000756979 ], [ 356903.281800001859665, 258609.854899998754263 ], [ 356887.277800001204014, 258595.369500000029802 ], [ 356885.710199996829033, 258590.0793999992311 ], [ 356861.272699996829033, 258619.010299999266863 ], [ 356866.085400000214577, 258622.004999998956919 ], [ 356864.443999998271465, 258625.368999999016523 ], [ 356865.230499997735023, 258627.697500001639128 ], [ 356863.567800000309944, 258630.155099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802022500", "MAP": "D9-6635-T99", "PARCEL_NAM": "3-B", "ACRE": ".338", "LONGITUDE": -64.93912496, "LATITUDE": 18.35791976, "OBJECTID_1": 4108, "PARCEL_NO_": "102802022500", "Tax_Legal_": "LERKENLUND 3B REM GREAT NORTHSIDE QTR", "Name": "GARCIA, ANNETTE M. B", "Address": "7366 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75800, "Improved_V": 303200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.646025654, "SHAPE_Area": 1519.6796950200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357943.60249999910593, 258716.981600001454353 ], [ 357931.899599999189377, 258675.612100001424551 ], [ 357899.981899999082088, 258701.183299999684095 ], [ 357895.115199998021126, 258704.520899999886751 ], [ 357893.484600000083447, 258706.618500001728535 ], [ 357906.162600003182888, 258732.897900000214577 ], [ 357923.987800002098083, 258722.911299999803305 ], [ 357932.889600001275539, 258719.184500001370907 ], [ 357943.60249999910593, 258716.981600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9444963, "LATITUDE": 18.35795582, "OBJECTID_1": 3875, "PARCEL_NO_": "102801040600", "Tax_Legal_": "8-45 ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "WILLIAM S SUMMER & CAROL H SUMMER REVOC", "Address": "PO Box 304251", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17100, "Improved_V": 119400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.359656151600007, "SHAPE_Area": 564.91707575199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357364.626299999654293, 258692.579799998551607 ], [ 357348.539700001478195, 258687.804099999368191 ], [ 357346.903599999845028, 258690.53489999845624 ], [ 357344.416400000452995, 258698.536100000143051 ], [ 357339.418499998748302, 258717.282499998807907 ], [ 357354.670100003480911, 258725.428899999707937 ], [ 357364.626299999654293, 258692.579799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701025500", "MAP": "F9-3562-T78", "PARCEL_NAM": "10CA", "ACRE": ".08", "LONGITUDE": -64.96022972, "LATITUDE": 18.35794992, "OBJECTID_1": 2883, "PARCEL_NO_": "102701025500", "Tax_Legal_": "DOROTHEA 10CA LT. NORTHSIDE", "Name": "CYRIL A LAPLACE TRUST", "Address": "10A Dorothea", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.680279090200003, "SHAPE_Area": 447.64512021899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355689.951300002634525, 258674.651500001549721 ], [ 355676.978399999439716, 258682.989000000059605 ], [ 355686.438299998641014, 258708.397700000554323 ], [ 355701.839199997484684, 258699.024500001221895 ], [ 355689.951300002634525, 258674.651500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801043300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94396865, "LATITUDE": 18.35793596, "OBJECTID_1": 3901, "PARCEL_NO_": "102801043300", "Tax_Legal_": "LERKENLUND ESTATE 8-25 No9 GREAT NORTHSIDE QTR.", "Name": "SHORPSHIRE, HENRY D. (TRUSTEE)", "Address": "8-25 ESTATE LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38100, "Improved_V": 223400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.434192724799999, "SHAPE_Area": 523.55782347599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357424.226899996399879, 258700.877999998629093 ], [ 357412.247299998998642, 258687.269999999552965 ], [ 357403.298799999058247, 258696.484900001436472 ], [ 357390.322200000286102, 258705.244600001722574 ], [ 357403.093800000846386, 258720.547899998724461 ], [ 357424.226899996399879, 258700.877999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052300", "MAP": null, "PARCEL_NAM": "3H-6", "ACRE": null, "LONGITUDE": -64.94668295, "LATITUDE": 18.35787334, "OBJECTID_1": 3935, "PARCEL_NO_": "102801052300", "Tax_Legal_": "ST PETER 3H-6 LT NORTHSIDE", "Name": "3H6 PETER LLC", "Address": "PO BOX 1799", "City": "Carbondale", "State": "Colorado", "Zip": 81623, "Country": "United States", "Land_Value": 21000, "Improved_V": 103300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.430550791100003, "SHAPE_Area": 583.67681111000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357130.036200001835823, 258685.171300001442432 ], [ 357129.899800002574921, 258679.180599998682737 ], [ 357124.716399997472763, 258679.950399998575449 ], [ 357112.326099999248981, 258681.648899998515844 ], [ 357108.644299998879433, 258682.10020000115037 ], [ 357109.015100002288818, 258684.663699999451637 ], [ 357109.510099999606609, 258688.453000001609325 ], [ 357112.321900002658367, 258709.977200001478195 ], [ 357132.251299999654293, 258707.888799998909235 ], [ 357130.036200001835823, 258685.171300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802022200", "MAP": "G9-1392-T69", "PARCEL_NAM": "4A-5", "ACRE": "0.78", "LONGITUDE": -64.93683873000001, "LATITUDE": 18.3578356, "OBJECTID_1": 4106, "PARCEL_NO_": "102802022200", "Tax_Legal_": "LERKENLUND 4A-5 GR NORTHSIDE QTR", "Name": "RICHARD BERRY AND LORRIANE BERRY FAMILY TRUST", "Address": "7353 LOWER LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023480, "Country": "United States", "Land_Value": 156800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.46381287700001, "SHAPE_Area": 3000.3311820600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358218.426700003445148, 258709.489100001752377 ], [ 358153.464299999177456, 258668.005300000309944 ], [ 358125.070699997246265, 258688.037900000810623 ], [ 358116.940999999642372, 258695.781800001859665 ], [ 358114.491499997675419, 258699.350299999117851 ], [ 358110.44200000166893, 258701.428100001066923 ], [ 358108.001500003039837, 258703.941300000995398 ], [ 358108.773599997162819, 258707.958399999886751 ], [ 358129.746699996292591, 258707.074599999934435 ], [ 358134.575599998235703, 258708.169599998742342 ], [ 358157.0625, 258718.908300001174212 ], [ 358169.117600001394749, 258723.651000000536442 ], [ 358174.751000002026558, 258724.963700000196695 ], [ 358182.022200003266335, 258723.334399998188019 ], [ 358199.048299998044968, 258712.496899999678135 ], [ 358206.323100000619888, 258710.445500001311302 ], [ 358218.426700003445148, 258709.489100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94644025, "LATITUDE": 18.35786602, "OBJECTID_1": 3936, "PARCEL_NO_": "102801052400", "Tax_Legal_": "ST PETER 3H-5 LT. NORTHSIDE", "Name": "LAKE, WELDON & MARDELIN", "Address": "PO Box 274", "City": "FT. MITCHELL", "State": "Alabama", "Zip": 36856, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.712455156, "SHAPE_Area": 713.95664152100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357155.667300000786781, 258705.434999998658895 ], [ 357159.736699998378754, 258701.035300001502037 ], [ 357161.379900000989437, 258697.460200000554323 ], [ 357163.0878000035882, 258686.286200001835823 ], [ 357161.516500003635883, 258681.418200001120567 ], [ 357159.104800000786781, 258680.554099999368191 ], [ 357153.45160000026226, 258681.563299998641014 ], [ 357140.532600000500679, 258683.568500000983477 ], [ 357130.036200001835823, 258685.171300001442432 ], [ 357132.251299999654293, 258707.888799998909235 ], [ 357155.667300000786781, 258705.434999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014400", "MAP": "D9-7405-T004", "PARCEL_NAM": "8B-1A", "ACRE": ".001", "LONGITUDE": -64.94312189, "LATITUDE": 18.35777793, "OBJECTID_1": 3726, "PARCEL_NO_": "102801014400", "Tax_Legal_": "LERKENLUND 8B-1&8-17-A No.9 GREAT NORTHSIDE QTR.", "Name": "DIPNARINE, TRUSTEES, SONNY RAM & RITA", "Address": "7746 Est Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 180300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.003351451899999, "SHAPE_Area": 17.168589404799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357494.657300002872944, 258682.977299999445677 ], [ 357495.244499996304512, 258688.525100000202656 ], [ 357501.593900002539158, 258690.037399999797344 ], [ 357494.657300002872944, 258682.977299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801055200", "MAP": "F9-1228-T63", "PARCEL_NAM": "8-57 REM", "ACRE": "0.142", "LONGITUDE": -64.94495207, "LATITUDE": 18.35788715, "OBJECTID_1": 3960, "PARCEL_NO_": "102801055200", "Tax_Legal_": "LERKENLUND REM. 8-57 & 8-56-1 GR NORTHSIDE", "Name": "LA MORE, GEORGE PHILLIP", "Address": "626 E Barcelona Rd", "City": "Santa Fe", "State": "New Mexico", "Zip": 87505, "Country": "United States", "Land_Value": 75000, "Improved_V": 390000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.7263928964, "SHAPE_Area": 448.84320913300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357293.101400002837181, 258698.284099999815226 ], [ 357298.706900000572205, 258710.468400001525879 ], [ 357308.809199996292591, 258713.443399999290705 ], [ 357315.462899997830391, 258689.644299998879433 ], [ 357296.167099997401237, 258682.942400000989437 ], [ 357293.101400002837181, 258698.284099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96742925, "LATITUDE": 18.3576079, "OBJECTID_1": 2531, "PARCEL_NO_": "102602040800", "Tax_Legal_": "DOROTHEA PARCEL 21 LOT 16 LITTLE NORTHSIDE QTR", "Name": "Dewitt, Sr. & Judy B Henley Revocable Living Trust", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81900, "Improved_V": 340400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.300005414, "SHAPE_Area": 3388.2339833299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354968.992899999022484, 258682.260800000280142 ], [ 354932.508500002324581, 258610.823600001633167 ], [ 354901.843400001525879, 258613.528000000864267 ], [ 354894.586599998176098, 258613.468600001186132 ], [ 354888.953199997544289, 258612.155900001525879 ], [ 354882.409199997782707, 258623.079199999570847 ], [ 354889.606700003147125, 258630.104200001806021 ], [ 354895.990699999034405, 258637.966899998486042 ], [ 354908.803599998354912, 258648.415399998426437 ], [ 354928.702399998903275, 258678.975699998438358 ], [ 354946.317199997603893, 258693.685300000011921 ], [ 354968.992899999022484, 258682.260800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024100", "MAP": "F9-1706-T66", "PARCEL_NAM": "10C", "ACRE": "2999 sq ft", "LONGITUDE": -64.96010336000001, "LATITUDE": 18.35787292, "OBJECTID_1": 2870, "PARCEL_NO_": "102701024100", "Tax_Legal_": "10C REM & 10D DOROTHEA NO.7 LITTLE NORTHSIDE QTR", "Name": "CYRIL LAPLACE TRUST", "Address": "PO Box 9492", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.478970580899997, "SHAPE_Area": 392.92350849899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355713.998599998652935, 258691.524700000882149 ], [ 355704.520700000226498, 258668.226799998432398 ], [ 355689.951300002634525, 258674.651500001549721 ], [ 355701.839199997484684, 258699.024500001221895 ], [ 355713.998599998652935, 258691.524700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801054700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94549498000001, "LATITUDE": 18.35786587, "OBJECTID_1": 3956, "PARCEL_NO_": "102801054700", "Tax_Legal_": "ST PETER 3I-7,3 3I-8 GR NORTHSIDE", "Name": "11-37 TRUST", "Address": "PO Box 7702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41900, "Improved_V": 233100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.588627023, "SHAPE_Area": 780.14496657400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357261.535199999809265, 258678.014899998903275 ], [ 357237.331500001251698, 258679.50560000166297 ], [ 357230.609399996697903, 258711.325699999928474 ], [ 357255.615900002419949, 258710.263799998909235 ], [ 357261.535199999809265, 258678.014899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94410372, "LATITUDE": 18.35774835, "OBJECTID_1": 3898, "PARCEL_NO_": "102801043000", "Tax_Legal_": "8-33 LERKENLUND LITTLE NORTHSIDE QUARTER", "Name": "HIRSHOL H PHEIR & CHARYSSE L LEVINE", "Address": "PO Box 1498", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40600, "Improved_V": 177700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.9112779, "SHAPE_Area": 1082.6049694200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357420.479500003159046, 258667.494600001722574 ], [ 357403.626000002026558, 258658.068500000983477 ], [ 357378.409199997782707, 258683.82660000026226 ], [ 357371.035499997437, 258697.487399999052286 ], [ 357367.693300001323223, 258711.181099999696016 ], [ 357370.110500000417233, 258711.412000000476837 ], [ 357379.026699997484684, 258705.996500000357628 ], [ 357399.310400001704693, 258691.385999999940395 ], [ 357404.999499998986721, 258686.155200000852346 ], [ 357410.68860000371933, 258680.924400001764297 ], [ 357420.479500003159046, 258667.494600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801054900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94521961, "LATITUDE": 18.35789929, "OBJECTID_1": 3958, "PARCEL_NO_": "102801054900", "Tax_Legal_": "LERKENLUND8-68, 3I-4 ST PETER LITTLE NORTHSIDE QTR", "Name": "PEG A LEE REVOCABLE FAMILY TRUST AGREEMENT 2016", "Address": "PO Box 900955", "City": "Palmdale", "State": "California", "Zip": 93590, "Country": "United States", "Land_Value": 31700, "Improved_V": 145000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.193285658099995, "SHAPE_Area": 488.92102222400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357286.329499997198582, 258701.860300000756979 ], [ 357288.064400002360344, 258687.520199999213219 ], [ 357279.997699998319149, 258687.876299999654293 ], [ 357265.476899996399879, 258688.60190000012517 ], [ 357262.080799996852875, 258708.627999998629093 ], [ 357283.836900003254414, 258710.494800001382828 ], [ 357286.329499997198582, 258701.860300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701026400", "MAP": "C9-166-T73", "PARCEL_NAM": "10E", "ACRE": "1.05", "LONGITUDE": -64.9591597, "LATITUDE": 18.35764557, "OBJECTID_1": 2890, "PARCEL_NO_": "102701026400", "Tax_Legal_": "10H-1(F/K/A/10B)BONNE RESOLUTION #5 LT NORTHSIDE QTR", "Name": "KAESTNER, JR, THOMAS PATERSON", "Address": "6505 ESTATE NAZARETH", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.889861147, "SHAPE_Area": 2170.4010398400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355808.127899996936321, 258622.212000001221895 ], [ 355787.10080000013113, 258629.428199999034405 ], [ 355783.01349999755621, 258635.938700001686811 ], [ 355780.57660000026226, 258638.029599998146296 ], [ 355791.368699997663498, 258696.379799999296665 ], [ 355828.628100000321865, 258676.842000000178814 ], [ 355808.127899996936321, 258622.212000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801054300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94580001, "LATITUDE": 18.35786122, "OBJECTID_1": 3953, "PARCEL_NO_": "102801054300", "Tax_Legal_": "ST PETER 3I 10 LITTLE NORTHSIDE QTR", "Name": "EDWARDS, S. & HEARTBURG, ANN", "Address": "7783 UPPER LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33000, "Improved_V": 256200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.681862876, "SHAPE_Area": 727.04138667500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357230.060300000011921, 258681.134799998253584 ], [ 357200.217699997127056, 258681.945999998599291 ], [ 357199.20099999755621, 258706.63569999858737 ], [ 357224.994000002741814, 258707.902199998497963 ], [ 357229.178400002419949, 258689.993500001728535 ], [ 357230.060300000011921, 258681.134799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701026300", "MAP": "D9-1634-T80", "PARCEL_NAM": "10G", "ACRE": null, "LONGITUDE": -64.95850308, "LATITUDE": 18.35761963, "OBJECTID_1": 2889, "PARCEL_NO_": "102701026300", "Tax_Legal_": "BONNE RESOLUTION 10G LT NORTHSIDE QTR", "Name": "BAKER, HELEN", "Address": "PO Box 5109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.85516164900002, "SHAPE_Area": 3554.29114493 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355878.338200002908707, 258615.609499998390675 ], [ 355832.4054000005126, 258612.067099999636412 ], [ 355865.554799996316433, 258696.353700000792742 ], [ 355867.105099998414516, 258700.894999999552965 ], [ 355870.222499996423721, 258710.026999998837709 ], [ 355872.70549999922514, 258708.866700001060963 ], [ 355923.151799999177456, 258655.872900001704693 ], [ 355888.485799998044968, 258654.955899998545647 ], [ 355884.454199999570847, 258654.922899998724461 ], [ 355876.392899997532368, 258654.645899999886751 ], [ 355878.338200002908707, 258615.609499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001013300", "MAP": null, "PARCEL_NAM": "8BA", "ACRE": null, "LONGITUDE": -64.91251611, "LATITUDE": 18.35771337, "OBJECTID_1": 5122, "PARCEL_NO_": "103001013300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 8BA GR NORTHSIDE", "Name": "WEBSTER, EDMOND & BERNICE", "Address": "PO Box 7986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010986, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.66121731699999, "SHAPE_Area": 2278.1411854500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360730.541400000452995, 258677.065099999308586 ], [ 360724.173600003123283, 258667.302700001746416 ], [ 360724.169100001454353, 258667.305799998342991 ], [ 360704.705200001597404, 258680.864399999380112 ], [ 360712.487899996340275, 258713.85869999974966 ], [ 360711.615000002086163, 258721.662000000476837 ], [ 360719.642200000584126, 258725.949599999934435 ], [ 360729.274800002574921, 258731.094700001180172 ], [ 360739.729900002479553, 258734.346700001507998 ], [ 360744.555100001394749, 258735.863800000399351 ], [ 360754.227300003170967, 258736.365200001746416 ], [ 360762.313799999654293, 258733.687100000679493 ], [ 360767.974200002849102, 258731.833599999547005 ], [ 360735.321699999272823, 258683.859200000762939 ], [ 360730.541400000452995, 258677.065099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802023200", "MAP": "G9-429-T56", "PARCEL_NAM": "3D", "ACRE": "1.12", "LONGITUDE": -64.93844039, "LATITUDE": 18.35760819, "OBJECTID_1": 4113, "PARCEL_NO_": "102802023200", "Tax_Legal_": "LERKENLUND 3D GREAT NORTHSIDE QTR", "Name": "WHARTON, JENIFER M", "Address": "3446 Galway Rd", "City": "Ballston Spa", "State": "New York", "Zip": 12020, "Country": "United States", "Land_Value": 170500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.29059715699998, "SHAPE_Area": 4491.8581438399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358039.571000002324581, 258690.926699999719858 ], [ 357999.825400002300739, 258623.68470000103116 ], [ 357950.320299997925758, 258660.854200001806021 ], [ 357968.433899998664856, 258711.664900001138449 ], [ 358010.444899998605251, 258702.298500001430511 ], [ 358029.058399997651577, 258694.429200001060963 ], [ 358039.571000002324581, 258690.926699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96642049, "LATITUDE": 18.35772365, "OBJECTID_1": 2535, "PARCEL_NO_": "102602041200", "Tax_Legal_": "DOROTHEA 21-30 LITTLE NORTHSIDE", "Name": "GUMBS, EDWARD A", "Address": "PO Box 10631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.573160086, "SHAPE_Area": 1215.5002735600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355069.030599996447563, 258640.342599999159575 ], [ 355065.848099999129772, 258633.677799999713898 ], [ 355041.069399997591972, 258645.909299999475479 ], [ 355007.056800000369549, 258662.940600000321865 ], [ 355019.758199997246265, 258686.475900001823902 ], [ 355029.478900000452995, 258681.278200000524521 ], [ 355035.94200000166893, 258679.853399999439716 ], [ 355042.388899996876717, 258680.328400000929832 ], [ 355041.726400002837181, 258663.435400001704693 ], [ 355069.030599996447563, 258640.342599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024100", "MAP": "F9-1706-T66", "PARCEL_NAM": "10D", "ACRE": "5,060 sq ft", "LONGITUDE": -64.95991589, "LATITUDE": 18.35778077, "OBJECTID_1": 2870, "PARCEL_NO_": "102701024100", "Tax_Legal_": "10C REM & 10D DOROTHEA NO.7 LITTLE NORTHSIDE QTR", "Name": "CYRIL LAPLACE TRUST", "Address": "PO Box 9492", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.707992535, "SHAPE_Area": 694.95675371699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355740.748999997973442, 258675.067200001329184 ], [ 355731.231499999761581, 258656.413100000470877 ], [ 355704.520700000226498, 258668.226799998432398 ], [ 355713.998599998652935, 258691.524700000882149 ], [ 355740.748999997973442, 258675.067200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001013100", "MAP": "D9-1200-T74", "PARCEL_NAM": "8BB", "ACRE": ".25", "LONGITUDE": -64.91219922000001, "LATITUDE": 18.35771488, "OBJECTID_1": 5120, "PARCEL_NO_": "103001013100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 8BB GR NORTHSIDE", "Name": "HULSWIT G. & CLAUDIA H ROGERS FAM. REV. TRST.", "Address": "PO Box 923", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 500700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.344296031, "SHAPE_Area": 1143.8346187 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360761.523000001907349, 258680.16440000012517 ], [ 360741.689099997282028, 258693.214400000870228 ], [ 360767.974200002849102, 258731.833599999547005 ], [ 360781.719200000166893, 258727.513099998235703 ], [ 360786.58049999922514, 258724.808699999004602 ], [ 360789.015600003302097, 258722.928800001740456 ], [ 360761.523000001907349, 258680.16440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802022100", "MAP": "G9-1392-T69", "PARCEL_NAM": "4A-6", "ACRE": "0.89", "LONGITUDE": -64.93637975, "LATITUDE": 18.35766527, "OBJECTID_1": 4105, "PARCEL_NO_": "102802022100", "Tax_Legal_": "LERKENLUND 4A-6 GR NORTHSIDE QTR", "Name": "BRYAN, RICHARD LOUIS", "Address": "13110 Hidden Valley Dr", "City": "Homer Glen", "State": "Illinois", "Zip": 60491, "Country": "United States", "Land_Value": 156800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.70977248899999, "SHAPE_Area": 3484.4828045 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358214.817699998617172, 258659.852600000798702 ], [ 358189.951499998569489, 258644.450300000607967 ], [ 358153.464299999177456, 258668.005300000309944 ], [ 358218.426700003445148, 258709.489100001752377 ], [ 358234.563799999654293, 258708.354600001126528 ], [ 358260.383699998259544, 258706.454999998211861 ], [ 358274.893799997866154, 258706.995999999344349 ], [ 358214.817699998617172, 258659.852600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96707851, "LATITUDE": 18.35755864, "OBJECTID_1": 2530, "PARCEL_NO_": "102602040700", "Tax_Legal_": "DOROTHEA PARCEL 21, LOT 15 LITTLE NORTHSIDE", "Name": "ESTRADA, URSULINE", "Address": "Po Box 6192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68000, "Improved_V": 377500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.15340325099999, "SHAPE_Area": 2281.6317982300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354996.527999997138977, 258668.3429000005126 ], [ 354965.594300001859665, 258607.927999999374151 ], [ 354932.508500002324581, 258610.823600001633167 ], [ 354968.992899999022484, 258682.260800000280142 ], [ 354996.527999997138977, 258668.3429000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030700", "MAP": "D9-5735-T94", "PARCEL_NAM": "38 REM", "ACRE": "1.29", "LONGITUDE": -64.96291321, "LATITUDE": 18.35735093, "OBJECTID_1": 2898, "PARCEL_NO_": "102701030700", "Tax_Legal_": "DOROTHEA 3B LITTLE NORTHSIDE", "Name": "FAMIGLIETTI, BERYL", "Address": "815 Cabin Point Dr", "City": "Montross", "State": "Virginia", "Zip": 22520, "Country": "United States", "Land_Value": 151400, "Improved_V": 314000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.87435611900003, "SHAPE_Area": 5616.3356792599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355384.635799996554852, 258639.644200000911951 ], [ 355386.941500000655651, 258652.962000001221895 ], [ 355393.116800002753735, 258685.309799998998642 ], [ 355437.512599997222424, 258679.973700001835823 ], [ 355432.192100003361702, 258641.933299999684095 ], [ 355421.586999997496605, 258561.630899999290705 ], [ 355372.333599999547005, 258569.249400001019239 ], [ 355384.635799996554852, 258639.644200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701033000", "MAP": "D9-7026-T002", "PARCEL_NAM": "3I-1", "ACRE": null, "LONGITUDE": -64.96431345000001, "LATITUDE": 18.35773287, "OBJECTID_1": 2920, "PARCEL_NO_": "102701033000", "Tax_Legal_": "3M-4 & 3I-1 ESTATE DOROTHEA No.7 LITTLE NORTHSIDE QTR.", "Name": "NEWBURGER, JACKIE & KLAUS", "Address": "7945 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.249292275, "SHAPE_Area": 904.39697227800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355265.265600003302097, 258642.88910000026226 ], [ 355252.308799996972084, 258649.326900001615286 ], [ 355236.880999997258186, 258661.866300001740456 ], [ 355252.019299998879433, 258683.310600001364946 ], [ 355276.295000001788139, 258673.376800000667572 ], [ 355265.265600003302097, 258642.88910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019600", "MAP": "D9-6551-T99", "PARCEL_NAM": "8H", "ACRE": ".16", "LONGITUDE": -64.91364811, "LATITUDE": 18.35766235, "OBJECTID_1": 5717, "PARCEL_NO_": "103003019600", "Tax_Legal_": "8H REM ST. JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "AMH TRUST", "Address": "8H Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16200, "Improved_V": 343800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.815392925, "SHAPE_Area": 1055.38139043 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360619.155199997127056, 258689.663400001823902 ], [ 360610.302000001072884, 258687.691100001335144 ], [ 360582.070200003683567, 258688.726599998772144 ], [ 360571.571999996900558, 258690.540600001811981 ], [ 360610.114900000393391, 258709.643300000578165 ], [ 360626.358400002121925, 258716.739999998360872 ], [ 360632.634900003671646, 258719.482200000435114 ], [ 360639.704199999570847, 258698.98200000077486 ], [ 360637.087700001895428, 258697.795400001108646 ], [ 360619.155199997127056, 258689.663400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801043400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94378584, "LATITUDE": 18.35776609, "OBJECTID_1": 3902, "PARCEL_NO_": "102801043400", "Tax_Legal_": "8-24 LERKENLUND LITTLE NORTHSIDE", "Name": "VOGEL, GAYLIN", "Address": "PO BOX 472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26100, "Improved_V": 133100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.859901293899995, "SHAPE_Area": 472.495756142 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357442.916000001132488, 258684.143500000238419 ], [ 357426.111100003123283, 258669.018300000578165 ], [ 357419.570699997246265, 258679.519499998539686 ], [ 357412.247299998998642, 258687.269999999552965 ], [ 357424.226899996399879, 258700.877999998629093 ], [ 357442.916000001132488, 258684.143500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014600", "MAP": null, "PARCEL_NAM": "8-17", "ACRE": null, "LONGITUDE": -64.9429426, "LATITUDE": 18.35771381, "OBJECTID_1": 3728, "PARCEL_NO_": "102801014600", "Tax_Legal_": "8-17,8B-1A&8B-1B LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BUMP, DEAN L. & MELISSA L", "Address": "PO Box 867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 275500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.77163602799999, "SHAPE_Area": 1096.68537709 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357542.119400002062321, 258681.789000000804663 ], [ 357527.475000001490116, 258663.016800001263618 ], [ 357520.49099999666214, 258664.935600001364946 ], [ 357490.400799997150898, 258671.836399998515844 ], [ 357493.935699999332428, 258676.160700000822544 ], [ 357494.657300002872944, 258682.977299999445677 ], [ 357501.593900002539158, 258690.037399999797344 ], [ 357512.12219999730587, 258700.752999998629093 ], [ 357540.497800000011921, 258682.831199999898672 ], [ 357542.119400002062321, 258681.789000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057100", "MAP": "G9-2955-T79", "PARCEL_NAM": "3E-2", "ACRE": ".72", "LONGITUDE": -64.949418, "LATITUDE": 18.35751079, "OBJECTID_1": 3979, "PARCEL_NO_": "102801057100", "Tax_Legal_": "ST PETER 3E-2 LT. NORTHSIDE", "Name": "AUBAIN, DAVID LOUIS, NOEL C. & SHAWN L.", "Address": "7788 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 106300, "Improved_V": 367000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.75880897100001, "SHAPE_Area": 2600.6857938600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356803.4358000010252, 258676.346099998801947 ], [ 356851.05969999730587, 258682.330200001597404 ], [ 356858.754799999296665, 258630.599800001829863 ], [ 356844.311300002038479, 258622.249000001698732 ], [ 356839.480599999427795, 258621.364999998360872 ], [ 356811.195000000298023, 258628.732900001108646 ], [ 356809.5608000010252, 258631.252700001001358 ], [ 356808.587200000882149, 258650.876400001347065 ], [ 356803.4358000010252, 258676.346099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001013000", "MAP": "A9-170-T72", "PARCEL_NAM": "8G", "ACRE": null, "LONGITUDE": -64.91339275, "LATITUDE": 18.35730579, "OBJECTID_1": 5119, "PARCEL_NO_": "103001013000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 8G GR NORTHSIDE", "Name": "VANTERPOOL, L-CHILDREN", "Address": "4201 S 31st St", "City": "Arlington", "State": "Virginia", "Zip": 22206, "Country": "United States", "Land_Value": 175200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 479.42736919399999, "SHAPE_Area": 9533.66236536 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360692.057800002396107, 258650.996700000017881 ], [ 360658.685400001704693, 258592.883900001645088 ], [ 360649.754799999296665, 258599.988000001758337 ], [ 360580.80290000140667, 258648.186299998313189 ], [ 360532.930100001394749, 258683.047100000083447 ], [ 360544.214900001883507, 258683.561700001358986 ], [ 360560.315999999642372, 258686.648800000548363 ], [ 360581.316100001335144, 258682.598799999803305 ], [ 360611.160400003194809, 258681.576499998569489 ], [ 360620.818199999630451, 258683.766399998217821 ], [ 360651.344800002872944, 258697.315200001001358 ], [ 360677.837999999523163, 258711.041999999433756 ], [ 360686.662500001490116, 258716.391600001603365 ], [ 360697.074400000274181, 258724.709399998188019 ], [ 360702.720399998128414, 258724.54450000077486 ], [ 360705.979800000786781, 258720.560400001704693 ], [ 360706.026600003242493, 258715.072399999946356 ], [ 360692.797600001096725, 258658.813200000673532 ], [ 360692.057800002396107, 258650.996700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024700", "MAP": "D9-9141-T016", "PARCEL_NAM": "10A-REM", "ACRE": "0.05", "LONGITUDE": -64.96030968, "LATITUDE": 18.35775889, "OBJECTID_1": 2876, "PARCEL_NO_": "102701024700", "Tax_Legal_": "DOROTHEA 10A LITTLE NORTHSIDE", "Name": "CYRIL A LAPLACE TRUST", "Address": "10A Dorothea", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5500, "Improved_V": 209900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.149375215099994, "SHAPE_Area": 237.35328214399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355674.171999998390675, 258675.643399998545647 ], [ 355676.381999999284744, 258674.633699998259544 ], [ 355679.023299999535084, 258681.674800001084805 ], [ 355689.951300002634525, 258674.651500001549721 ], [ 355684.434799998998642, 258659.618700001388788 ], [ 355670.668099999427795, 258666.472100000828505 ], [ 355674.171999998390675, 258675.643399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001013200", "MAP": "D9-1200-T74", "PARCEL_NAM": "8BC", "ACRE": ".25", "LONGITUDE": -64.91201755, "LATITUDE": 18.35760818, "OBJECTID_1": 5121, "PARCEL_NO_": "103001013200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 8BC GR NORTHSIDE", "Name": "LYNCH L ROGERS & GENEVIEVE E ROGERS FAMILY REV TRU", "Address": "PO Box 154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33500, "Improved_V": 489800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.15917657700001, "SHAPE_Area": 1116.5743488000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360779.180500000715256, 258668.546399999409914 ], [ 360761.523000001907349, 258680.16440000012517 ], [ 360789.015600003302097, 258722.928800001740456 ], [ 360800.384900003671646, 258713.522599998861551 ], [ 360808.482199996709824, 258709.578099999576807 ], [ 360779.180500000715256, 258668.546399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056100", "MAP": "D9-2342-T83", "PARCEL_NAM": "3F-1-A", "ACRE": ".50", "LONGITUDE": -64.94865578, "LATITUDE": 18.35744659, "OBJECTID_1": 3969, "PARCEL_NO_": "102801056100", "Tax_Legal_": "ST PETER 3F-1-A & 3G-2-A LT. NORTHSIDE", "Name": "LAPLACE, PIERRE & NOREEN (LIFE ESTATE)", "Address": "7794 Est St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168200, "Improved_V": 476900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.259766133, "SHAPE_Area": 1779.4488123399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356922.56700000166893, 258673.456500001251698 ], [ 356932.846500001847744, 258619.155699998140335 ], [ 356908.886399999260902, 258614.544799998402596 ], [ 356903.281800001859665, 258609.854899998754263 ], [ 356894.047799997031689, 258680.226700000464916 ], [ 356922.56700000166893, 258673.456500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9444062, "LATITUDE": 18.35770438, "OBJECTID_1": 3876, "PARCEL_NO_": "102801040700", "Tax_Legal_": "LERKENLUND 8-44 GR NORTHSIDE", "Name": "GEORGE, MYRNA P.V.", "Address": "PO Box 10264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31600, "Improved_V": 212000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.916758080999998, "SHAPE_Area": 490.45303830500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357377.701800003647804, 258672.210700001567602 ], [ 357356.818599998950958, 258662.540600001811981 ], [ 357348.561200000345707, 258685.271099999547005 ], [ 357348.539700001478195, 258687.804099999368191 ], [ 357364.626299999654293, 258692.579799998551607 ], [ 357368.737000003457069, 258683.325300000607967 ], [ 357377.701800003647804, 258672.210700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9446483, "LATITUDE": 18.35766483, "OBJECTID_1": 3873, "PARCEL_NO_": "102801040400", "Tax_Legal_": "LERKENLUND 8-53. GR NORTHSIDE", "Name": "BAILEY, MILDRED", "Address": "PO Box 9411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27800, "Improved_V": 247800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.154954467, "SHAPE_Area": 592.15391972899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357350.371699996292591, 258662.065600000321865 ], [ 357330.264200001955032, 258655.99040000140667 ], [ 357323.588899999856949, 258682.322500001639128 ], [ 357323.561899997293949, 258685.488699998706579 ], [ 357340.446000002324581, 258691.326400000602007 ], [ 357347.909599997103214, 258667.111699998378754 ], [ 357350.371699996292591, 258662.065600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9696961, "LATITUDE": 18.35747887, "OBJECTID_1": 2506, "PARCEL_NO_": "102602034500", "Tax_Legal_": "DOROTHEA 1A-14 LITTLE NORTHSIDE", "Name": "BAKER, HELEN", "Address": "PO Box 305109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 144600, "Improved_V": 458200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 451.41430903499997, "SHAPE_Area": 9178.8597975499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354692.383799999952316, 258590.493200000375509 ], [ 354668.89469999819994, 258602.755499999970198 ], [ 354621.207099996507168, 258615.875100001692772 ], [ 354608.69709999859333, 258664.535399999469519 ], [ 354603.859200000762939, 258664.495799999684095 ], [ 354603.828599996864796, 258668.084100000560284 ], [ 354754.675599999725819, 258661.508299998939037 ], [ 354756.656800001859665, 258618.250300001353025 ], [ 354754.275700002908707, 258613.797800000756979 ], [ 354734.409199997782707, 258579.438099998980761 ], [ 354701.273000001907349, 258588.243900001049042 ], [ 354699.500399999320507, 258607.016699999570847 ], [ 354690.638099998235703, 258606.099800001829863 ], [ 354692.383799999952316, 258590.493200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96394259, "LATITUDE": 18.35762447, "OBJECTID_1": 2920, "PARCEL_NO_": "102701033000", "Tax_Legal_": "3M-4 & 3I-1 ESTATE DOROTHEA No.7 LITTLE NORTHSIDE QTR.", "Name": "NEWBURGER, JACKIE & KLAUS", "Address": "7945 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.964509126, "SHAPE_Area": 1699.2639509799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355274.154799997806549, 258640.639800000935793 ], [ 355265.265600003302097, 258642.88910000026226 ], [ 355276.295000001788139, 258673.376800000667572 ], [ 355282.770700000226498, 258670.474500000476837 ], [ 355317.494300000369549, 258664.636999998241663 ], [ 355331.221400000154972, 258662.427299998700619 ], [ 355316.131599999964237, 258635.283900000154972 ], [ 355304.861199997365475, 258633.080699998885393 ], [ 355274.154799997806549, 258640.639800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801055300", "MAP": "D9-7067-T002", "PARCEL_NAM": "8 REM", "ACRE": ".22", "LONGITUDE": -64.94490958, "LATITUDE": 18.35764234, "OBJECTID_1": 3961, "PARCEL_NO_": "102801055300", "Tax_Legal_": "PAR 8-56 REM, 8-57-1 & 8-57-2 LERKENLUND 9 GREAT NORTHSIDE QTR D9-7067-T002 & D9-9227-T017", "Name": "CARTER, JAMES N. & KATHRYN L. GOTT", "Address": "PO Box 12465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018465, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.539939523, "SHAPE_Area": 698.36029261800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357322.976800002157688, 258659.519400000572205 ], [ 357298.036899998784065, 258652.77140000090003 ], [ 357296.167099997401237, 258682.942400000989437 ], [ 357315.462899997830391, 258689.644299998879433 ], [ 357322.976800002157688, 258659.519400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801054100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94609963000001, "LATITUDE": 18.35765913, "OBJECTID_1": 3951, "PARCEL_NO_": "102801054100", "Tax_Legal_": "31-14&3H-3 ST PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "REOVAN, LILLIAN A. & LESLIE A.", "Address": "1439 Metropolitan Ave", "City": "Bronx", "State": "New York", "Zip": 10462, "Country": "United States", "Land_Value": 29900, "Improved_V": 141600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.7103848382, "SHAPE_Area": 614.19309724499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357171.944600000977516, 258687.836399998515844 ], [ 357192.939300000667572, 258684.419599998742342 ], [ 357193.9003000035882, 258666.273400001227856 ], [ 357191.560500003397465, 258656.9662000015378 ], [ 357173.024300001561642, 258655.75899999961257 ], [ 357171.944600000977516, 258687.836399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94517611000001, "LATITUDE": 18.35763773, "OBJECTID_1": 3976, "PARCEL_NO_": "102801056800", "Tax_Legal_": "LERKENLUND 8-67&3I-3 ST.PETER LT. NORTHSIDE", "Name": "FRETT, JOAN V. & VANCE EMANUEL GUMBS", "Address": "7785 Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 146800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.48740515900001, "SHAPE_Area": 784.31473753600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357290.83219999819994, 258646.590700000524521 ], [ 357288.41330000013113, 258646.570900000631809 ], [ 357271.378200002014637, 258658.463799998164177 ], [ 357269.699000000953674, 258666.260499998927116 ], [ 357265.476899996399879, 258688.60190000012517 ], [ 357279.997699998319149, 258687.876299999654293 ], [ 357288.064400002360344, 258687.520199999213219 ], [ 357290.625399999320507, 258670.864799998700619 ], [ 357292.434000000357628, 258647.870400000363588 ], [ 357290.83219999819994, 258646.590700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701026500", "MAP": "D9-6912-T001", "PARCEL_NAM": "10 REM", "ACRE": "0.324", "LONGITUDE": -64.96008832, "LATITUDE": 18.35762631, "OBJECTID_1": 2891, "PARCEL_NO_": "102701026500", "Tax_Legal_": "10 REM DOROTHEA NO.7 LITTLE NORTHSIDE QTR", "Name": "SUSAN C SPANN TRUST", "Address": "PO Box 9492", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37900, "Improved_V": 118100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.23531785399999, "SHAPE_Area": 1000.49083736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355700.263800002634525, 258639.287999998778105 ], [ 355670.668099999427795, 258666.472100000828505 ], [ 355684.434799998998642, 258659.618700001388788 ], [ 355689.951300002634525, 258674.651500001549721 ], [ 355704.520700000226498, 258668.226799998432398 ], [ 355731.231499999761581, 258656.413100000470877 ], [ 355722.500500001013279, 258640.087400000542402 ], [ 355709.54559999704361, 258646.3141999989748 ], [ 355700.263800002634525, 258639.287999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96674215, "LATITUDE": 18.357508, "OBJECTID_1": 2528, "PARCEL_NO_": "102602040500", "Tax_Legal_": "21-14 DOROTHEA No.7 LITTLE NORTHSIDE QTR.", "Name": "PEREZ, JAIME & ANDREA TITLEY", "Address": "395 Snapdragon Loop", "City": "Bradenton", "State": "Florida", "Zip": 342123904, "Country": "United States", "Land_Value": 71900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.468394265, "SHAPE_Area": 2094.9126774000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354996.527999997138977, 258668.3429000005126 ], [ 355007.056800000369549, 258662.940600000321865 ], [ 355041.069399997591972, 258645.909299999475479 ], [ 354995.40089999884367, 258611.33839999884367 ], [ 354990.532399997115135, 258614.887099999934435 ], [ 354984.085500001907349, 258614.412200000137091 ], [ 354980.077299997210503, 258611.635099999606609 ], [ 354978.506099998950958, 258606.767099998891354 ], [ 354965.594300001859665, 258607.927999999374151 ], [ 354996.527999997138977, 258668.3429000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802023400", "MAP": "G9-1392-T69", "PARCEL_NAM": "4A-4", "ACRE": "1.01", "LONGITUDE": -64.93735754, "LATITUDE": 18.35751097, "OBJECTID_1": 4115, "PARCEL_NO_": "102802023400", "Tax_Legal_": "LERKENLUND 4A-4 GR NORTHSIDE QTR", "Name": "RICHARD BERRY AND LORRAINE BERRY FAMILY TRUST", "Address": "7353 LOWER LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023480, "Country": "United States", "Land_Value": 179600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.63071944299998, "SHAPE_Area": 3431.03983045 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358091.624600000679493, 258638.579300001263618 ], [ 358059.158100001513958, 258663.433699999004602 ], [ 358067.11150000244379, 258676.375500001013279 ], [ 358070.291799999773502, 258681.678899999707937 ], [ 358077.451499998569489, 258693.136599998921156 ], [ 358101.664300002157688, 258690.590500000864267 ], [ 358111.372400000691414, 258686.870299998670816 ], [ 358121.933600001037121, 258677.668600000441074 ], [ 358173.036899998784065, 258642.2010000012815 ], [ 358160.960199996829033, 258639.991200000047684 ], [ 358138.354699999094009, 258643.183699999004602 ], [ 358125.448299996554852, 258643.711300000548363 ], [ 358093.248000003397465, 258637.326099999248981 ], [ 358091.624600000679493, 258638.579300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056100", "MAP": "G9-3027-T80", "PARCEL_NAM": "3G-2", "ACRE": ".606", "LONGITUDE": -64.94822632, "LATITUDE": 18.35749577, "OBJECTID_1": 3969, "PARCEL_NO_": "102801056100", "Tax_Legal_": "ST PETER 3F-1-A & 3G-2-A LT. NORTHSIDE", "Name": "LAPLACE, PIERRE & NOREEN (LIFE ESTATE)", "Address": "7794 Est St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168200, "Improved_V": 476900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.60692663999998, "SHAPE_Area": 3017.59992453 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356922.56700000166893, 258673.456500001251698 ], [ 356940.770400002598763, 258670.281500000506639 ], [ 356940.279399998486042, 258674.121199999004602 ], [ 356998.921099998056889, 258676.321899998933077 ], [ 356996.726000003516674, 258656.317600000649691 ], [ 356995.929899998009205, 258649.981600001454353 ], [ 356995.352399997413158, 258643.84569999948144 ], [ 356966.593800000846386, 258648.903099998831749 ], [ 356966.475900001823902, 258614.512099999934435 ], [ 356962.094099998474121, 258616.035799998790026 ], [ 356945.919299997389317, 258621.602899998426437 ], [ 356938.673299998044968, 258620.276999998837709 ], [ 356932.846500001847744, 258619.155699998140335 ], [ 356922.56700000166893, 258673.456500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052700", "MAP": null, "PARCEL_NAM": "3H-18", "ACRE": null, "LONGITUDE": -64.94714181000001, "LATITUDE": 18.35766275, "OBJECTID_1": 3939, "PARCEL_NO_": "102801052700", "Tax_Legal_": "ST PETER 3H-18 LT. NORTHSIDE", "Name": "ABI BOUGAINVILLEA", "Address": "PO BOX 305169", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36500, "Improved_V": 300700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.680049904, "SHAPE_Area": 745.61355682400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357088.01969999819994, 258681.469000000506639 ], [ 357086.729099996387959, 258657.374699998646975 ], [ 357069.776699997484684, 258659.55799999833107 ], [ 357056.072999998927116, 258659.023699998855591 ], [ 357057.348099999129772, 258679.745299998670816 ], [ 357057.574199996888638, 258682.228199999779463 ], [ 357068.851300001144409, 258683.393699999898672 ], [ 357088.12049999833107, 258683.350600000470877 ], [ 357088.01969999819994, 258681.469000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052800", "MAP": null, "PARCEL_NAM": "3H-17", "ACRE": null, "LONGITUDE": -64.94688631, "LATITUDE": 18.35764069, "OBJECTID_1": 3940, "PARCEL_NO_": "102801052800", "Tax_Legal_": "3H-17 ESTATE ST.PETER No.2 LITTLE NORTHSIDE QTR.", "Name": "MARY ANN LAFLEUR REVOCABLE TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 110800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.802480915, "SHAPE_Area": 671.638587487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357112.326099999248981, 258681.648899998515844 ], [ 357109.356200002133846, 258651.649300001561642 ], [ 357086.729099996387959, 258657.374699998646975 ], [ 357088.01969999819994, 258681.469000000506639 ], [ 357088.12049999833107, 258683.350600000470877 ], [ 357091.732600003480911, 258683.312600001692772 ], [ 357099.410700000822544, 258683.231899999082088 ], [ 357112.326099999248981, 258681.648899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93805283, "LATITUDE": 18.35740092, "OBJECTID_1": 4114, "PARCEL_NO_": "102802023300", "Tax_Legal_": "LERKENLUND 3E GREAT NORTHSIDE QTR", "Name": "BRYAN, EDMUND (TRUSTEE)", "Address": "7682 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 177100, "Improved_V": 279400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.905832535, "SHAPE_Area": 2506.5585262499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358039.571000002324581, 258690.926699999719858 ], [ 358050.081799998879433, 258687.635200001299381 ], [ 358058.179099999368191, 258683.690699998289347 ], [ 358067.11150000244379, 258676.375500001013279 ], [ 358059.158100001513958, 258663.433699999004602 ], [ 358043.254799999296665, 258637.127999998629093 ], [ 358024.17119999974966, 258605.518899999558926 ], [ 357999.825400002300739, 258623.68470000103116 ], [ 358039.571000002324581, 258690.926699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94745771, "LATITUDE": 18.35764404, "OBJECTID_1": 3938, "PARCEL_NO_": "102801052600", "Tax_Legal_": "3H-19 ST.PETER GREAT NORTHSIDE QTR", "Name": "HARRIGAN, ARTHUR", "Address": "7801 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29200, "Improved_V": 194900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.379948384, "SHAPE_Area": 831.90637725099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357056.072999998927116, 258659.023699998855591 ], [ 357022.245600000023842, 258654.313799999654293 ], [ 357021.017399996519089, 258678.509300000965595 ], [ 357030.256599999964237, 258679.404800001531839 ], [ 357057.574199996888638, 258682.228199999779463 ], [ 357057.348099999129772, 258679.745299998670816 ], [ 357056.072999998927116, 258659.023699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052900", "MAP": "F9-2795-T71", "PARCEL_NAM": "3H-16", "ACRE": ".23", "LONGITUDE": -64.94667512, "LATITUDE": 18.35759946, "OBJECTID_1": 3941, "PARCEL_NO_": "102801052900", "Tax_Legal_": "ST PETER 3H-16 LITTLE NORTHSIDE", "Name": "BARON, KELSHA", "Address": "3H-16 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40000, "Improved_V": 208700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.608601444, "SHAPE_Area": 691.892260384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357134.123499996960163, 258678.660900000482798 ], [ 357130.381399996578693, 258644.644200000911951 ], [ 357121.477799996733665, 258648.582100000232458 ], [ 357109.356200002133846, 258651.649300001561642 ], [ 357112.326099999248981, 258681.648899998515844 ], [ 357134.123499996960163, 258678.660900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94363142, "LATITUDE": 18.35760648, "OBJECTID_1": 3903, "PARCEL_NO_": "102801043500", "Tax_Legal_": "LERKENLUND 8-23 GR NORTHSIDE", "Name": "BLITZ, NEIL L. & BIRKE, ROSLYN", "Address": "19 Clarkes Village Rd", "City": "Jamestown", "State": "Rhode Island", "Zip": 2835, "Country": "United States", "Land_Value": 22300, "Improved_V": 134200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.350820987999995, "SHAPE_Area": 640.489439533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357462.373599998652935, 258671.848200000822544 ], [ 357446.418099999427795, 258651.663800001144409 ], [ 357434.276699997484684, 258657.052799999713898 ], [ 357430.209200002253056, 258661.241399999707937 ], [ 357426.111100003123283, 258669.018300000578165 ], [ 357442.916000001132488, 258684.143500000238419 ], [ 357452.654700003564358, 258676.834899999201298 ], [ 357462.373599998652935, 258671.848200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801054400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94579544, "LATITUDE": 18.35764961, "OBJECTID_1": 3954, "PARCEL_NO_": "102801054400", "Tax_Legal_": "3I-11&EASEMENT OVER 3I-10 ST.PETER #2 LITTLE NORTHSIDE QTR", "Name": "HOLMES, ELSIE COOKE", "Address": "PO Box 1762", "City": "White Plains", "State": "New York", "Zip": 10602, "Country": "United States", "Land_Value": 40000, "Improved_V": 306900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.131042024, "SHAPE_Area": 664.06235384700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357200.217699997127056, 258681.945999998599291 ], [ 357230.060300000011921, 258681.134799998253584 ], [ 357231.816699996590614, 258664.261700000613928 ], [ 357230.216700002551079, 258662.771000001579523 ], [ 357209.284999996423721, 258658.800000000745058 ], [ 357203.646200001239777, 258658.12049999833107 ], [ 357199.607400000095367, 258658.93189999833703 ], [ 357200.217699997127056, 258681.945999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602035900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96875228, "LATITUDE": 18.35729815, "OBJECTID_1": 2518, "PARCEL_NO_": "102602035900", "Tax_Legal_": "DOROTHEA 1A-23 LITTLE NORTHSIDE", "Name": "EXIUS, ALEXIS and RENEE C.", "Address": "PO BOX 30549", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.19833681, "SHAPE_Area": 2992.2491248000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354814.31139999628067, 258571.015000000596046 ], [ 354754.275700002908707, 258613.797800000756979 ], [ 354756.656800001859665, 258618.250300001353025 ], [ 354754.675599999725819, 258661.508299998939037 ], [ 354833.44709999859333, 258596.502900000661612 ], [ 354817.484499998390675, 258577.16270000115037 ], [ 354814.31139999628067, 258571.015000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602035800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96850477, "LATITUDE": 18.35750877, "OBJECTID_1": 2517, "PARCEL_NO_": "102602035800", "Tax_Legal_": "1A-26 ESTATE DOROTHEA LITTLE NORTHSIDE", "Name": "RICHARDS, SR. , HENRY & CHERYL", "Address": "PO Box 10271", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99000, "Improved_V": 299100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.90771278599999, "SHAPE_Area": 3112.0712436200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354754.675599999725819, 258661.508299998939037 ], [ 354830.503100000321865, 258658.118099998682737 ], [ 354857.386600002646446, 258626.040800001472235 ], [ 354833.44709999859333, 258596.502900000661612 ], [ 354754.675599999725819, 258661.508299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001012600", "MAP": "A9-170-T72", "PARCEL_NAM": "8C", "ACRE": "2.0", "LONGITUDE": -64.91185149, "LATITUDE": 18.35711074, "OBJECTID_1": 5115, "PARCEL_NO_": "103001012600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 8C GR NORTHSIDE", "Name": "BOSCHULTE, OLYVE", "Address": "539 W 162nd St", "City": "New York", "State": "New York", "Zip": 10032, "Country": "United States", "Land_Value": 170800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.75463672199999, "SHAPE_Area": 8403.1392273300007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360804.104800000786781, 258574.111400000751019 ], [ 360802.828100003302097, 258572.166200000792742 ], [ 360800.491200000047684, 258575.214000001549721 ], [ 360798.332099996507168, 258575.872800000011921 ], [ 360764.297899998724461, 258595.437100000679493 ], [ 360744.028599999845028, 258608.359000001102686 ], [ 360738.69990000128746, 258611.860399998724461 ], [ 360772.97410000115633, 258659.855399999767542 ], [ 360808.482199996709824, 258709.578099999576807 ], [ 360820.650600001215935, 258701.022900000214577 ], [ 360835.26129999756813, 258689.743400000035763 ], [ 360861.988300003111362, 258676.030000001192093 ], [ 360865.069099999964237, 258675.150100000202656 ], [ 360804.104800000786781, 258574.111400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801053000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94644894, "LATITUDE": 18.35756185, "OBJECTID_1": 3942, "PARCEL_NO_": "102801053000", "Tax_Legal_": "ST PETER 3H-7 LITTLE NORTHSIDE QTR", "Name": "GREEN, NATHANIEL & MARNA L. (CO-TRUSTEES)", "Address": "PO Box 9279", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57800, "Improved_V": 349400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.751805928, "SHAPE_Area": 912.90694853100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357130.381399996578693, 258644.644200000911951 ], [ 357134.123499996960163, 258678.660900000482798 ], [ 357143.810000002384186, 258677.473600000143051 ], [ 357154.317199997603893, 258674.604299999773502 ], [ 357160.798299998044968, 258671.06870000064373 ], [ 357163.240599997341633, 258668.344500001519918 ], [ 357164.131499998271465, 258658.430399999022484 ], [ 357161.741300001740456, 258655.033300001174212 ], [ 357159.351099997758865, 258651.636300001293421 ], [ 357151.318599998950958, 258647.98200000077486 ], [ 357142.501299999654293, 258641.788100000470877 ], [ 357137.668799996376038, 258641.115200001746416 ], [ 357130.381399996578693, 258644.644200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801054700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94546361, "LATITUDE": 18.35766353, "OBJECTID_1": 3956, "PARCEL_NO_": "102801054700", "Tax_Legal_": "ST PETER 3I-7,3 3I-8 GR NORTHSIDE", "Name": "11-37 TRUST", "Address": "PO Box 7702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41900, "Improved_V": 233100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.258426457499993, "SHAPE_Area": 308.75566253199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357237.331500001251698, 258679.50560000166297 ], [ 357261.535199999809265, 258678.014899998903275 ], [ 357263.241400003433228, 258667.052000001072884 ], [ 357260.836800001561642, 258665.343600001186132 ], [ 357250.338600002229214, 258667.157499998807907 ], [ 357239.867299996316433, 258665.805300001055002 ], [ 357237.428599998354912, 258668.107299998402596 ], [ 357237.331500001251698, 258679.50560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9426416, "LATITUDE": 18.35758593, "OBJECTID_1": 3728, "PARCEL_NO_": "102801014600", "Tax_Legal_": "8-17,8B-1A&8B-1B LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BUMP, DEAN L. & MELISSA L", "Address": "PO Box 867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 275500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.641745574, "SHAPE_Area": 599.35220372699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357527.475000001490116, 258663.016800001263618 ], [ 357542.119400002062321, 258681.789000000804663 ], [ 357567.248099997639656, 258666.373799998313189 ], [ 357558.497400000691414, 258652.370000001043081 ], [ 357539.889300003647804, 258659.605999998748302 ], [ 357527.475000001490116, 258663.016800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96343866, "LATITUDE": 18.35752022, "OBJECTID_1": 2919, "PARCEL_NO_": "102701032900", "Tax_Legal_": "3M-3 DOROTHEA LITTLE NORTHSIDE QUARTER", "Name": "SINCLAIR, SCOTT & LORRAINE", "Address": "7945 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.30550982700001, "SHAPE_Area": 2075.169345 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355384.635799996554852, 258639.644200000911951 ], [ 355372.665200002491474, 258624.980799999088049 ], [ 355325.911700002849102, 258623.12049999833107 ], [ 355326.680200003087521, 258627.55970000103116 ], [ 355304.861199997365475, 258633.080699998885393 ], [ 355316.131599999964237, 258635.283900000154972 ], [ 355331.221400000154972, 258662.427299998700619 ], [ 355349.795299999415874, 258659.201900001615286 ], [ 355386.941500000655651, 258652.962000001221895 ], [ 355384.635799996554852, 258639.644200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704052900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.951991, "LATITUDE": 18.35656368, "OBJECTID_1": 3645, "PARCEL_NO_": "102704052900", "Tax_Legal_": "LILIENDAHL & MARIENHOJ 10-2-15 LT. NORTHSIDE", "Name": "JOHN-BAPTISTE, RUTH E. & SKENITH", "Address": "PO Box1642", "City": "St.Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42400, "Improved_V": 229900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 417.092010614, "SHAPE_Area": 2557.72008611 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356537.102200001478195, 258665.770500000566244 ], [ 356540.817500002682209, 258665.918200001120567 ], [ 356545.625100001692772, 258660.967599999159575 ], [ 356550.586999997496605, 258646.442800000309944 ], [ 356549.876000002026558, 258635.249000001698732 ], [ 356545.98650000244379, 258618.540699999779463 ], [ 356543.812100000679493, 258589.8141999989748 ], [ 356543.869699999690056, 258583.05970000103116 ], [ 356543.322300001978874, 258552.657800000160933 ], [ 356573.964000001549721, 258552.697399999946356 ], [ 356593.667900003492832, 258511.484400000423193 ], [ 356592.060699999332428, 258510.837900001555681 ], [ 356585.674900002777576, 258503.186299998313189 ], [ 356584.110799998044968, 258497.473999999463558 ], [ 356551.007100000977516, 258502.480399999767542 ], [ 356551.710900001227856, 258514.518500000238419 ], [ 356550.780500002205372, 258529.076299998909235 ], [ 356545.870700001716614, 258537.479899998754263 ], [ 356542.596900001168251, 258543.15260000154376 ], [ 356539.299699999392033, 258551.569400001317263 ], [ 356535.945000000298023, 258566.740600001066923 ], [ 356536.600299999117851, 258584.477899998426437 ], [ 356538.110399998724461, 258596.522599998861551 ], [ 356545.806699998676777, 258639.648600000888109 ], [ 356543.258299998939037, 258654.826499998569489 ], [ 356540.781800001859665, 258661.561200000345707 ], [ 356537.102200001478195, 258665.770500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93519423, "LATITUDE": 18.35708188, "OBJECTID_1": 4103, "PARCEL_NO_": "102802021900", "Tax_Legal_": "3B-4 MISGUNST NO.6 GREAT NORTHSIDE QTR", "Name": "ROM(TRUSTEES), DANIEL S. & JULIA B.", "Address": "286 High Rail Ter", "City": "Leesburg", "State": "Virginia", "Zip": 20175, "Country": "United States", "Land_Value": 224400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.33548306400002, "SHAPE_Area": 6156.7456235199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358293.846199996769428, 258587.504200000315905 ], [ 358319.453100003302097, 258682.45160000026226 ], [ 358327.561200000345707, 258677.240600001066923 ], [ 358366.481799997389317, 258652.0168999992311 ], [ 358369.646999999880791, 258564.438900001347065 ], [ 358348.643299996852875, 258568.911100000143051 ], [ 358335.760300002992153, 258566.694699998944998 ], [ 358316.324299998581409, 258576.456999998539686 ], [ 358293.846199996769428, 258587.504200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701025900", "MAP": "C9-166-T73", "PARCEL_NAM": "10C", "ACRE": "0.51", "LONGITUDE": -64.95942496000001, "LATITUDE": 18.35728605, "OBJECTID_1": 2885, "PARCEL_NO_": "102701025900", "Tax_Legal_": "10C BONNE RESOLUTION LT. NORTHSIDE", "Name": "KRAUSE, VALENCIA BERRY", "Address": "PO Box 10928", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56100, "Improved_V": 6000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.85031811200002, "SHAPE_Area": 1792.02884952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355778.495700001716614, 258598.326999999582767 ], [ 355770.436200000345707, 258597.838899999856949 ], [ 355760.737099997699261, 258600.503699999302626 ], [ 355753.476599998772144, 258600.866500001400709 ], [ 355753.783100001513958, 258659.552999999374151 ], [ 355764.383799999952316, 258645.707600001245737 ], [ 355779.815200001001358, 258632.746100001037121 ], [ 355783.110600002110004, 258624.540399998426437 ], [ 355785.67339999973774, 258607.673900000751019 ], [ 355784.886900000274181, 258605.345400001853704 ], [ 355784.928199999034405, 258600.490600001066923 ], [ 355778.495700001716614, 258598.326999999582767 ] ] ], [ [ [ 355808.127899996936321, 258622.212000001221895 ], [ 355797.865199998021126, 258596.374600000679493 ], [ 355788.977799996733665, 258598.412799999117851 ], [ 355789.757100000977516, 258601.58559999987483 ], [ 355789.60249999910593, 258619.738400001078844 ], [ 355787.10080000013113, 258629.428199999034405 ], [ 355808.127899996936321, 258622.212000001221895 ] ] ], [ [ [ 355796.288500003516674, 258592.139800000935793 ], [ 355794.717299997806549, 258587.271800000220537 ], [ 355781.762299999594688, 258593.498599998652935 ], [ 355781.740699999034405, 258596.031599998474121 ], [ 355784.955200001597404, 258597.324400000274181 ], [ 355787.401100002229214, 258594.177999999374151 ], [ 355796.288500003516674, 258592.139800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94428926000001, "LATITUDE": 18.35749753, "OBJECTID_1": 3877, "PARCEL_NO_": "102801040800", "Tax_Legal_": "8-43 ESTATE LERKENLUND GREAT NORTHSIDE QTR.", "Name": "ARTHUR, CLARENCE R. & MCDONALD, LORETTA W.", "Address": "PO Box 306077", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25300, "Improved_V": 312600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.960915855, "SHAPE_Area": 721.93343430699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357392.436599999666214, 258646.366799999028444 ], [ 357364.269599996507168, 258639.80350000038743 ], [ 357356.818599998950958, 258662.540600001811981 ], [ 357377.701800003647804, 258672.210700001567602 ], [ 357386.670100003480911, 258660.6739999987185 ], [ 357389.949299998581409, 258654.368000000715256 ], [ 357392.436599999666214, 258646.366799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801043600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94339445, "LATITUDE": 18.35750243, "OBJECTID_1": 3904, "PARCEL_NO_": "102801043600", "Tax_Legal_": "LERKENLUND 8-22 LITTLE NORTHSIDE", "Name": "CHARLES G RICKSECKER LERKENLUND REVOC TR", "Address": "PO BOX 304833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26000, "Improved_V": 132100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.37368777, "SHAPE_Area": 773.84873884599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357491.470899999141693, 258663.853700000792742 ], [ 357473.129000000655651, 258639.850000001490116 ], [ 357446.418099999427795, 258651.663800001144409 ], [ 357462.373599998652935, 258671.848200000822544 ], [ 357471.271799996495247, 258668.543600000441074 ], [ 357491.470899999141693, 258663.853700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96411331, "LATITUDE": 18.35730007, "OBJECTID_1": 2917, "PARCEL_NO_": "102701032700", "Tax_Legal_": "3M-1 REM, 3M-2-1 & 3M-2-2 DOROTHEA NO.7 LITTLE NORTHSIDE QTR", "Name": "BERRY, RICHARD & LYN", "Address": "PO Box 303125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60000, "Improved_V": 255200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.77425791899998, "SHAPE_Area": 2291.9287337199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355272.122500002384186, 258595.238099999725819 ], [ 355228.1554000005126, 258644.907400000840425 ], [ 355232.122299998998642, 258652.539200000464916 ], [ 355241.05460000038147, 258645.22410000115633 ], [ 355247.539300002157688, 258641.266399998217821 ], [ 355264.53660000115633, 258633.806099999696016 ], [ 355271.807800002396107, 258632.176899999380112 ], [ 355272.671700000762939, 258625.428899999707937 ], [ 355279.145499996840954, 258622.737700000405312 ], [ 355279.930299997329712, 258625.277300000190735 ], [ 355281.530299998819828, 258626.76799999922514 ], [ 355285.551100000739098, 258628.067499998956919 ], [ 355311.406999997794628, 258621.946299999952316 ], [ 355323.516099996864796, 258620.356600001454353 ], [ 355319.563699997961521, 258611.036200001835823 ], [ 355299.632399998605251, 258584.275299999862909 ], [ 355278.511799998581409, 258602.467500001192093 ], [ 355272.122500002384186, 258595.238099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103001010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91528746, "LATITUDE": 18.35752076, "OBJECTID_1": 5098, "PARCEL_NO_": "103001010500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 6AB ROSENDAHL GR NORTH", "Name": "LAKE, RONALD", "Address": "21071 Standford Sq", "City": "Sterling", "State": "Virginia", "Zip": 20166, "Country": "United States", "Land_Value": 36400, "Improved_V": 130500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.267054997, "SHAPE_Area": 1738.83547763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360492.70440000295639, 258672.163199998438358 ], [ 360402.35249999910593, 258676.701099999248981 ], [ 360384.604599997401237, 258677.611299999058247 ], [ 360385.27419999986887, 258693.65989999845624 ], [ 360438.517800003290176, 258690.929200001060963 ], [ 360494.182199999690056, 258688.00730000063777 ], [ 360492.70440000295639, 258672.163199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95821115, "LATITUDE": 18.35716222, "OBJECTID_1": 2877, "PARCEL_NO_": "102701024800", "Tax_Legal_": "BONNE RESOLUTION 10-1 LITTLE NORTHSIDE", "Name": "BAKER, HELEN B. TRUSTEE", "Address": "P.O. BOX 5109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99800, "Improved_V": 557300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.152162164, "SHAPE_Area": 4633.2343648300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355928.784500002861023, 258562.615699999034405 ], [ 355929.665799997746944, 258552.753699999302626 ], [ 355881.552199997007847, 258561.688200000673532 ], [ 355881.188699997961521, 258564.970400001853704 ], [ 355880.245700001716614, 258581.005800001323223 ], [ 355880.211599998176098, 258585.01630000025034 ], [ 355878.338200002908707, 258615.609499998390675 ], [ 355876.392899997532368, 258654.645899999886751 ], [ 355884.454199999570847, 258654.922899998724461 ], [ 355888.485799998044968, 258654.955899998545647 ], [ 355923.151799999177456, 258655.872900001704693 ], [ 355925.948399998247623, 258611.566199999302626 ], [ 355928.784500002861023, 258562.615699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9438534, "LATITUDE": 18.35746379, "OBJECTID_1": 3897, "PARCEL_NO_": "102801042900", "Tax_Legal_": "LERKENLUND 8-32 GR NORTHSIDE QTR", "Name": "STANTON, MICHAEL P. , TRUSTEE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19800, "Improved_V": 115000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.084081243100002, "SHAPE_Area": 479.21891757600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357436.762199997901917, 258649.262699998915195 ], [ 357423.978100001811981, 258635.436999998986721 ], [ 357411.777300000190735, 258647.791700001806021 ], [ 357410.139499999582767, 258650.733600001782179 ], [ 357403.626000002026558, 258658.068500000983477 ], [ 357420.479500003159046, 258667.494600001722574 ], [ 357425.4037000015378, 258657.402399998158216 ], [ 357431.906300000846386, 258651.33390000090003 ], [ 357436.762199997901917, 258649.262699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96101561, "LATITUDE": 18.35731286, "OBJECTID_1": 2901, "PARCEL_NO_": "102701031000", "Tax_Legal_": "DOROTHEA 4-1 LITTLE NORTHSIDE", "Name": "BRYAN, CARL & ELIZABETH", "Address": "#3C DOROTHEA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.52224752800001, "SHAPE_Area": 1943.3424051 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355568.757399998605251, 258608.009500000625849 ], [ 355578.285700000822544, 258625.397100001573563 ], [ 355592.576300002634525, 258651.689699999988079 ], [ 355604.762699998915195, 258641.023699998855591 ], [ 355648.584100000560284, 258608.451699998229742 ], [ 355659.145300000905991, 258599.25 ], [ 355642.182099997997284, 258602.699799999594688 ], [ 355622.004600003361702, 258604.856699999421835 ], [ 355592.953900001943111, 258607.363099999725819 ], [ 355568.757399998605251, 258608.009500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96646614, "LATITUDE": 18.35726819, "OBJECTID_1": 2527, "PARCEL_NO_": "102602040400", "Tax_Legal_": "21-13 DOROTHEA No.7 LITTLE NORTHSIDE QTR.", "Name": "PATRICK, VALECIA", "Address": "PO Box 305418", "City": "ST, THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.272003189, "SHAPE_Area": 2822.2754076900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355065.848099999129772, 258633.677799999713898 ], [ 355037.051299996674061, 258573.373199999332428 ], [ 354992.285300001502037, 258598.436200000345707 ], [ 354995.483599998056889, 258601.628699999302626 ], [ 354995.40089999884367, 258611.33839999884367 ], [ 355041.069399997591972, 258645.909299999475479 ], [ 355065.848099999129772, 258633.677799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801043700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94316074, "LATITUDE": 18.35742896, "OBJECTID_1": 3905, "PARCEL_NO_": "102801043700", "Tax_Legal_": "LERKENLUND 8-21 GR NORTHSIDE", "Name": "LOOS, THOMAS", "Address": "PO BOX 1562", "City": "Vancouver", "State": "Washington", "Zip": 98668, "Country": "United States", "Land_Value": 43900, "Improved_V": 72900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.214140349, "SHAPE_Area": 677.84965353600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357514.092600002884865, 258658.761599998921156 ], [ 357494.161399997770786, 258632.000599998980761 ], [ 357473.129000000655651, 258639.850000001490116 ], [ 357491.470899999141693, 258663.853700000792742 ], [ 357514.092600002884865, 258658.761599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701032000", "MAP": "D9-2757-T84", "PARCEL_NAM": "3-L", "ACRE": "1.03", "LONGITUDE": -64.96456852, "LATITUDE": 18.35697823, "OBJECTID_1": 2910, "PARCEL_NO_": "102701032000", "Tax_Legal_": "DOROTHEA 3L LT. NORTHSIDE", "Name": "FAMIGLIETTI, BERYL", "Address": "815 Cabin Point Dr", "City": "Montross", "State": "Virginia", "Zip": 22520, "Country": "United States", "Land_Value": 113200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.256052103, "SHAPE_Area": 5701.4387531700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355274.606200002133846, 258587.659000001847744 ], [ 355238.863300003111362, 258523.827300000935793 ], [ 355229.117499999701977, 258531.980200000107288 ], [ 355218.597599998116493, 258536.327100001275539 ], [ 355209.710199996829033, 258538.365299999713898 ], [ 355199.976899996399879, 258545.040600001811981 ], [ 355191.017599999904633, 258555.521999999880791 ], [ 355187.731200002133846, 258562.672200001776218 ], [ 355228.1554000005126, 258644.907400000840425 ], [ 355272.122500002384186, 258595.238099999725819 ], [ 355274.566600002348423, 258592.302799999713898 ], [ 355274.606200002133846, 258587.659000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9445782, "LATITUDE": 18.35742573, "OBJECTID_1": 3872, "PARCEL_NO_": "102801040300", "Tax_Legal_": "LERKENLUND 8-52 GR NORTHSIDE", "Name": "MCCLAMMY, NIGEL A & BIANCA M", "Address": "PO BOX 18893", "City": "Golden", "State": "Colorado", "Zip": 80402, "Country": "United States", "Land_Value": 42200, "Improved_V": 280300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.508276437000006, "SHAPE_Area": 544.15314568300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357357.833499997854233, 258638.061999998986721 ], [ 357335.30349999666214, 258632.389199998229742 ], [ 357330.264200001955032, 258655.99040000140667 ], [ 357350.371699996292591, 258662.065600000321865 ], [ 357357.833499997854233, 258638.061999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96004418, "LATITUDE": 18.35742231, "OBJECTID_1": 2875, "PARCEL_NO_": "102701024600", "Tax_Legal_": "DOROTHEA 10B LITTLE NORTHSIDE", "Name": "ANN GLORIA QUESTEL REV. TRUST", "Address": "PO BOX 306761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5900, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.275357605300002, "SHAPE_Area": 422.02903828199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355694.322700001299381, 258634.790600001811981 ], [ 355709.54559999704361, 258646.3141999989748 ], [ 355722.500500001013279, 258640.087400000542402 ], [ 355710.605400003492832, 258616.558699999004602 ], [ 355694.322700001299381, 258634.790600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801055400", "MAP": "F9-2990-T72", "PARCEL_NAM": "8-55", "ACRE": null, "LONGITUDE": -64.94484951, "LATITUDE": 18.35739731, "OBJECTID_1": 3962, "PARCEL_NO_": "102801055400", "Tax_Legal_": "LERKENLUND 8-55 GR NORTHSIDE", "Name": "GREEN, NATHANIEL L.& MARNA L. (CO-TRUSTEES)", "Address": "PO Box 9279", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61900, "Improved_V": 312900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.65339187, "SHAPE_Area": 652.91465011000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357298.036899998784065, 258652.77140000090003 ], [ 357322.976800002157688, 258659.519400000572205 ], [ 357329.702399998903275, 258627.277100000530481 ], [ 357328.100599996745586, 258625.997400000691414 ], [ 357325.683499999344349, 258625.766600001603365 ], [ 357299.757399998605251, 258640.119800001382828 ], [ 357298.036899998784065, 258652.77140000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96394758, "LATITUDE": 18.35741813, "OBJECTID_1": 2911, "PARCEL_NO_": "102701032100", "Tax_Legal_": "3-M-A ESTATE DOROTHEA(ROADWAY) LT NORTHSIDE QTR", "Name": "BRYAN, CARL J", "Address": "ESTATE DOROTHEA #3C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.468870985, "SHAPE_Area": 556.66315339100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355271.807800002396107, 258632.176899999380112 ], [ 355274.154799997806549, 258640.639800000935793 ], [ 355304.861199997365475, 258633.080699998885393 ], [ 355326.680200003087521, 258627.55970000103116 ], [ 355325.911700002849102, 258623.12049999833107 ], [ 355325.936800003051758, 258620.165399998426437 ], [ 355323.516099996864796, 258620.356600001454353 ], [ 355311.406999997794628, 258621.946299999952316 ], [ 355285.551100000739098, 258628.067499998956919 ], [ 355281.530299998819828, 258626.76799999922514 ], [ 355279.930299997329712, 258625.277300000190735 ], [ 355279.145499996840954, 258622.737700000405312 ], [ 355272.671700000762939, 258625.428899999707937 ], [ 355271.807800002396107, 258632.176899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93776016, "LATITUDE": 18.35730724, "OBJECTID_1": 4133, "PARCEL_NO_": "102802025100", "Tax_Legal_": "LERKENLUND 4AG 1 GREAT NORTHSIDE QTR", "Name": "RICHARD BERRY AND LORRAINE BERRY FAMILY TRUST", "Address": "7353 LOWER LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023480, "Country": "United States", "Land_Value": 31900, "Improved_V": 338600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.52922782499999, "SHAPE_Area": 1106.6040053300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358061.13570000231266, 258620.597899999469519 ], [ 358057.138300001621246, 258616.554400000721216 ], [ 358043.254799999296665, 258637.127999998629093 ], [ 358059.158100001513958, 258663.433699999004602 ], [ 358091.624600000679493, 258638.579300001263618 ], [ 358061.13570000231266, 258620.597899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94293956, "LATITUDE": 18.35736236, "OBJECTID_1": 3890, "PARCEL_NO_": "102801042200", "Tax_Legal_": "LERKENLUND 8-20 GR NORTHSIDE QTR", "Name": "WARNER, MERVIN E and RAYMOND", "Address": "8-20 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48500, "Improved_V": 136700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.738069264, "SHAPE_Area": 858.10306247899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357539.957599997520447, 258651.58500000089407 ], [ 357518.428099997341633, 258623.12220000103116 ], [ 357494.161399997770786, 258632.000599998980761 ], [ 357514.092600002884865, 258658.761599998921156 ], [ 357521.367399998009205, 258656.710200000554323 ], [ 357539.957599997520447, 258651.58500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701033200", "MAP": "D9-5734-T94", "PARCEL_NAM": "3A-2", "ACRE": null, "LONGITUDE": -64.96162336, "LATITUDE": 18.35734938, "OBJECTID_1": 2921, "PARCEL_NO_": "102701033200", "Tax_Legal_": "3A-2 DOROTHEA NO.7 LITTLE NORTHSIDE QTR", "Name": "BRYAN EATON FAMILY TRUST II", "Address": "79-25 Est Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57700, "Improved_V": 667100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.71335720600001, "SHAPE_Area": 1694.1873496000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355568.757399998605251, 258608.009500000625849 ], [ 355525.988600000739098, 258611.670200001448393 ], [ 355508.222800001502037, 258614.691199999302626 ], [ 355508.997500002384186, 258631.1554000005126 ], [ 355518.528599999845028, 258635.462699998170137 ], [ 355547.4983000010252, 258642.454799998551607 ], [ 355578.285700000822544, 258625.397100001573563 ], [ 355568.757399998605251, 258608.009500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91440981, "LATITUDE": 18.35737257, "OBJECTID_1": 5101, "PARCEL_NO_": "103001010800", "Tax_Legal_": "9K ST JOSPEH & ROSENDAHL GREAT NORTHSIDE QTR", "Name": "BRANFORD & OTHERS, LORRAINE INNIS", "Address": "6109 St Joseph and Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.12182437000001, "SHAPE_Area": 1347.70123732 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360580.80290000140667, 258648.186299998313189 ], [ 360499.230400003492832, 258663.350699998438358 ], [ 360500.713600002229214, 258678.561599999666214 ], [ 360502.306400001049042, 258680.896600000560284 ], [ 360505.522699996829033, 258681.978399999439716 ], [ 360532.930100001394749, 258683.047100000083447 ], [ 360580.80290000140667, 258648.186299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801053100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94774635, "LATITUDE": 18.35731388, "OBJECTID_1": 3943, "PARCEL_NO_": "102801053100", "Tax_Legal_": "ST PETER 3H-25 LITTLE NORTHSIDE", "Name": "SMITH, M.C.&BRUTUS,K.K.&EDMEADE,S.L.&RICHARDSON,R.S.", "Address": "52 Ormond St", "City": "Hempstead", "State": "New York", "Zip": 11550, "Country": "United States", "Land_Value": 23600, "Improved_V": 243700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.891776366, "SHAPE_Area": 993.65781241800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356992.603299997746944, 258614.640799999237061 ], [ 356995.929899998009205, 258649.981600001454353 ], [ 356998.902099996805191, 258649.478700000792742 ], [ 357005.361599996685982, 258648.476100001484156 ], [ 357023.102300003170967, 258648.410199999809265 ], [ 357025.077100001275539, 258648.706199999898672 ], [ 357022.574699997901917, 258615.6864 ], [ 356997.344899997115135, 258614.690900001674891 ], [ 356992.603299997746944, 258614.640799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701032200", "MAP": "D9-2757-T84", "PARCEL_NAM": "3N", "ACRE": null, "LONGITUDE": -64.96317585, "LATITUDE": 18.35684112, "OBJECTID_1": 2912, "PARCEL_NO_": "102701032200", "Tax_Legal_": "DOROTHEA 3N LT. NORTHSIDE", "Name": "GILHOOLEY, GWYNNETH E.", "Address": "5470 29th Pl SW", "City": "Naples", "State": "Florida", "Zip": 34116, "Country": "United States", "Land_Value": 87600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 362.61745825499997, "SHAPE_Area": 4160.7146234800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355432.288400001823902, 258535.96510000154376 ], [ 355422.688199996948242, 258527.020599998533726 ], [ 355417.871899999678135, 258524.448100000619888 ], [ 355414.6503000035882, 258523.999499998986721 ], [ 355406.567400000989437, 258526.255399998277426 ], [ 355375.00789999961853, 258539.296000000089407 ], [ 355326.391800001263618, 258566.76240000128746 ], [ 355372.665200002491474, 258624.980799999088049 ], [ 355384.635799996554852, 258639.644200000911951 ], [ 355372.333599999547005, 258569.249400001019239 ], [ 355421.586999997496605, 258561.630899999290705 ], [ 355432.288400001823902, 258535.96510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001040500", "MAP": "G9-3049-T80", "PARCEL_NAM": "B-14", "ACRE": ".65", "LONGITUDE": -64.91090417, "LATITUDE": 18.35738498, "OBJECTID_1": 5279, "PARCEL_NO_": "103001040500", "Tax_Legal_": "B-14 LOVENLUND (AKA 148) NO.2 GREAT NORTHSIDE QTR.", "Name": "ARABIA, ISHAN and NAWAL KARAAWI", "Address": "PO BOX 305166", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63700, "Improved_V": 276400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.73769507100002, "SHAPE_Area": 2510.8886988 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360957.372400000691414, 258648.735199999064207 ], [ 360951.839699998497963, 258635.602099999785423 ], [ 360932.367700003087521, 258649.585999999195337 ], [ 360892.728900000452995, 258664.460400000214577 ], [ 360874.921700000762939, 258672.336199998855591 ], [ 360861.988300003111362, 258676.030000001192093 ], [ 360835.26129999756813, 258689.743400000035763 ], [ 360831.573299996554852, 258692.590599998831749 ], [ 360844.820500001311302, 258694.63740000128746 ], [ 360858.556000001728535, 258696.759700000286102 ], [ 360862.638199999928474, 258694.400499999523163 ], [ 360871.531000003218651, 258691.728999998420477 ], [ 360876.381499998271465, 258690.29109999909997 ], [ 360897.363600000739098, 258688.35190000012517 ], [ 360907.0591000020504, 258686.109200000762939 ], [ 360926.482500001788139, 258677.824400000274181 ], [ 360939.45549999922514, 258669.486800000071526 ], [ 360952.464400000870228, 258656.927700001746416 ], [ 360957.372400000691414, 258648.735199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801053500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94677097, "LATITUDE": 18.35732557, "OBJECTID_1": 3947, "PARCEL_NO_": "102801053500", "Tax_Legal_": "ST PETER 3H-21 GREAT NORTHSIDE", "Name": "HART, HALVOR & HELEN", "Address": "PO Box 303989", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25600, "Improved_V": 306400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.63320169799999, "SHAPE_Area": 634.21927632799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357095.539399996399879, 258622.307000000029802 ], [ 357100.041900001466274, 258647.800400000065565 ], [ 357119.107400000095367, 258642.863200001418591 ], [ 357128.815499998629093, 258639.142900001257658 ], [ 357132.868699997663498, 258636.64299999922514 ], [ 357132.089299999177456, 258633.470199998468161 ], [ 357126.488300003111362, 258628.3581000007689 ], [ 357120.066600002348423, 258624.928100001066923 ], [ 357114.435000002384186, 258623.40430000051856 ], [ 357095.539399996399879, 258622.307000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802030900", "MAP": "D9-430-T64", "PARCEL_NAM": "6J", "ACRE": "1.97", "LONGITUDE": -64.93878565, "LATITUDE": 18.35679621, "OBJECTID_1": 4168, "PARCEL_NO_": "102802030900", "Tax_Legal_": "6J ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "QUERRARD, ISIDORE J. & CARMEN T", "Address": "7355 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 250000, "Improved_V": 270300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 757.92789579700002, "SHAPE_Area": 10476.480804299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358028.424300000071526, 258582.116599999368191 ], [ 358000.58330000191927, 258523.5929000005126 ], [ 357997.670000001788139, 258517.468899998813868 ], [ 357887.560400001704693, 258561.596500001847744 ], [ 357881.725599996745586, 258564.735399998724461 ], [ 357869.96679999679327, 258571.061200000345707 ], [ 357871.026500001549721, 258574.399700000882149 ], [ 357875.991400003433228, 258582.985599998384714 ], [ 357884.068899996578693, 258581.363000001758337 ], [ 357887.308499999344349, 258579.700800001621246 ], [ 357888.044100001454353, 258579.119300000369549 ], [ 357898.674199998378754, 258570.71680000051856 ], [ 357901.935400001704693, 258566.521600000560284 ], [ 357904.34179999679327, 258568.018899999558926 ], [ 357906.73369999974966, 258571.204900000244379 ], [ 357903.474299997091293, 258575.188999999314547 ], [ 357898.605899997055531, 258578.737700000405312 ], [ 357923.621299996972084, 258576.62049999833107 ], [ 357942.971000000834465, 258576.989900000393391 ], [ 357949.41610000282526, 258577.675999999046326 ], [ 357985.656999997794628, 258583.038800001144409 ], [ 357996.126500003039837, 258584.602200001478195 ], [ 358009.830200001597404, 258585.136500000953674 ], [ 358021.129399999976158, 258583.962400000542402 ], [ 358024.038199998438358, 258583.226399999111891 ], [ 358028.424300000071526, 258582.116599999368191 ] ] ], [ [ [ 357938.243600003421307, 258658.644400000572205 ], [ 358016.970200002193451, 258598.916000001132488 ], [ 358016.203400000929832, 258594.265700001269579 ], [ 358012.992499999701977, 258592.550700001418591 ], [ 357946.142300002276897, 258583.348700001835823 ], [ 357931.6233000010252, 258583.863099999725819 ], [ 357918.727700002491474, 258583.124299999326468 ], [ 357906.62219999730587, 258584.291799999773502 ], [ 357891.667099997401237, 258587.366900000721216 ], [ 357879.965400002896786, 258589.77309999987483 ], [ 357891.88740000128746, 258610.13569999858737 ], [ 357892.675800003111362, 258612.253100000321865 ], [ 357901.241400003433228, 258609.16270000115037 ], [ 357916.132600001990795, 258603.790199998766184 ], [ 357918.558700002729893, 258602.965700000524521 ], [ 357938.243600003421307, 258658.644400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001012500", "MAP": "D9-7574-T005", "PARCEL_NAM": "8B REM", "ACRE": "0.74", "LONGITUDE": -64.91251912, "LATITUDE": 18.35724189, "OBJECTID_1": 5114, "PARCEL_NO_": "103001012500", "Tax_Legal_": "8B REM ST JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR", "Name": "BAKER, TREVIS N. & NATASHA L.", "Address": "PO Box 301791", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 110000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.191890906, "SHAPE_Area": 2972.02008032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360758.257200002670288, 258675.084499999880791 ], [ 360770.245300002396107, 258666.899099998176098 ], [ 360767.951200000941753, 258663.057500001043081 ], [ 360762.986299999058247, 258654.743599999696016 ], [ 360750.136500000953674, 258638.428599998354912 ], [ 360739.487999998033047, 258622.804400000721216 ], [ 360732.545500002801418, 258616.094000000506639 ], [ 360715.638700000941753, 258627.969399999827147 ], [ 360708.757600001990795, 258636.027499999850988 ], [ 360699.348800003528595, 258647.0456000007689 ], [ 360698.526299998164177, 258648.938700001686811 ], [ 360698.468699999153614, 258655.693199999630451 ], [ 360704.705200001597404, 258680.864399999380112 ], [ 360724.169100001454353, 258667.305799998342991 ], [ 360724.173600003123283, 258667.302700001746416 ], [ 360730.541400000452995, 258677.065099999308586 ], [ 360735.321699999272823, 258683.859200000762939 ], [ 360738.521300002932549, 258688.560100000351667 ], [ 360741.689099997282028, 258693.214400000870228 ], [ 360748.300700001418591, 258688.864199999719858 ], [ 360745.040100000798702, 258684.109099999070168 ], [ 360758.257200002670288, 258675.084499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103001010600", "MAP": "G9-519-T59", "PARCEL_NAM": "6AA", "ACRE": ".25", "LONGITUDE": -64.91529866, "LATITUDE": 18.35727058, "OBJECTID_1": 5099, "PARCEL_NO_": "103001010600", "Tax_Legal_": "6AA ST.JOSEPH&ROSENDAHL GR NORHTSIDE", "Name": "CHARLES, HEATH F. & SYLVIA", "Address": "PO BOX 305173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 79900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.18204422299999, "SHAPE_Area": 1124.5790661000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360491.216300003230572, 258657.531500000506639 ], [ 360491.23200000077486, 258655.685899998992682 ], [ 360489.696699999272823, 258646.5962999984622 ], [ 360384.0050999969244, 258653.330600000917912 ], [ 360384.254100002348423, 258663.415699999779463 ], [ 360491.216300003230572, 258657.531500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94389531, "LATITUDE": 18.35723087, "OBJECTID_1": 3894, "PARCEL_NO_": "102801042600", "Tax_Legal_": "LERKENLUND 8-37 GT. NORTHSIDE", "Name": "MEYERS, TILFORD & DOW, VIDA", "Address": "3102 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.003802693, "SHAPE_Area": 573.51327682 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357432.95719999819994, 258622.633799999952316 ], [ 357426.643299996852875, 258606.539000000804663 ], [ 357415.30460000038147, 258612.356800001114607 ], [ 357410.420000001788139, 258617.805300001055002 ], [ 357406.312899999320507, 258626.637600000947714 ], [ 357399.677199997007847, 258648.325899999588728 ], [ 357399.637599997222424, 258652.9695999994874 ], [ 357402.072800002992153, 258651.089699998497963 ], [ 357407.785300001502037, 258643.114900000393391 ], [ 357418.360799998044968, 258632.224599998444319 ], [ 357425.666199997067451, 258626.584899999201298 ], [ 357432.95719999819994, 258622.633799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103001010700", "MAP": "G9-1215-T69", "PARCEL_NAM": "6AC", "ACRE": ".25", "LONGITUDE": -64.91518671, "LATITUDE": 18.35737724, "OBJECTID_1": 5100, "PARCEL_NO_": "103001010700", "Tax_Legal_": "6AC ST JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "HULSWIT G. & CLAUDIA H ROGERS FAM. REV. TRST.", "Address": "PO Box 923", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25200, "Improved_V": 141000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.00226009799999, "SHAPE_Area": 1221.0738452099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360407.486299999058247, 258662.137699998915195 ], [ 360407.698700003325939, 258676.432599999010563 ], [ 360492.70440000295639, 258672.163199998438358 ], [ 360491.185300000011921, 258661.173900000751019 ], [ 360491.216300003230572, 258657.531500000506639 ], [ 360407.486299999058247, 258662.137699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802027000", "MAP": "D9-4387-T88", "PARCEL_NAM": "2C-1", "ACRE": ".89", "LONGITUDE": -64.93356237, "LATITUDE": 18.35709713, "OBJECTID_1": 4152, "PARCEL_NO_": "102802027000", "Tax_Legal_": "MISGUNST 2C-1 GT. NORTHSIDE", "Name": "TUNICK, JAMES & REBECCA", "Address": "1336 Beltjen Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 169100, "Improved_V": 228100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.50790643600001, "SHAPE_Area": 2347.8359447900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358487.495200000703335, 258645.196800000965595 ], [ 358538.978699997067451, 258659.761500000953674 ], [ 358526.347499996423721, 258627.994100000709295 ], [ 358523.977099999785423, 258622.275100000202656 ], [ 358522.402199998497963, 258617.829300001263618 ], [ 358501.07769999653101, 258565.303599998354912 ], [ 358487.294900000095367, 258574.056699998676777 ], [ 358496.009700000286102, 258592.282000001519918 ], [ 358495.122500002384186, 258601.774000000208616 ], [ 358487.534800000488758, 258640.553100001066923 ], [ 358487.495200000703335, 258645.196800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801030300", "MAP": "F9-1255-T63", "PARCEL_NAM": "3I-21", "ACRE": ".11", "LONGITUDE": -64.94625843, "LATITUDE": 18.35735839, "OBJECTID_1": 3845, "PARCEL_NO_": "102801030300", "Tax_Legal_": "ST PETER 3I 21 LITTLE NORTHSIDE QTR", "Name": "ROSSI, RICK", "Address": "7779 St Peter Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20900, "Improved_V": 274800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.5317348512, "SHAPE_Area": 216.56513499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357156.749300003051758, 258631.015799999237061 ], [ 357161.200699999928474, 258643.592399999499321 ], [ 357173.897100001573563, 258647.955699998885393 ], [ 357177.558899998664856, 258647.985700000077486 ], [ 357165.022100001573563, 258626.647799998521805 ], [ 357163.589500002563, 258627.395199999213219 ], [ 357156.749300003051758, 258631.015799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94611954, "LATITUDE": 18.35729734, "OBJECTID_1": 3846, "PARCEL_NO_": "102801030400", "Tax_Legal_": "ST PETER 3I-19A&3I-20 LITTLE NORTHSIDE QTR", "Name": "JOSEPH D CRAWFORD TRUST", "Address": "PO Box 303821", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39000, "Improved_V": 412300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.823383869599994, "SHAPE_Area": 547.37182083899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357165.022100001573563, 258626.647799998521805 ], [ 357177.558899998664856, 258647.985700000077486 ], [ 357179.541299998760223, 258648.001899998635054 ], [ 357182.782700002193451, 258646.128499999642372 ], [ 357190.912399999797344, 258638.38459999859333 ], [ 357194.155599996447563, 258636.300200000405312 ], [ 357187.88849999755621, 258614.717399999499321 ], [ 357165.022100001573563, 258626.647799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94363646, "LATITUDE": 18.35731717, "OBJECTID_1": 3896, "PARCEL_NO_": "102801042800", "Tax_Legal_": "LERKENLUND 8-31 GR NORTHSIDE", "Name": "BAKER, PETER L", "Address": "PO Box 308653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21700, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.631183515299995, "SHAPE_Area": 558.790012123 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357461.041500002145767, 258638.906700000166893 ], [ 357452.314099997282028, 258622.158900000154972 ], [ 357437.759099997580051, 258626.894999999552965 ], [ 357423.978100001811981, 258635.436999998986721 ], [ 357436.762199997901917, 258649.262699998915195 ], [ 357461.041500002145767, 258638.906700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001012700", "MAP": "D9-5258-T92", "PARCEL_NAM": "8D REM", "ACRE": null, "LONGITUDE": -64.91121993, "LATITUDE": 18.35712904, "OBJECTID_1": 5116, "PARCEL_NO_": "103001012700", "Tax_Legal_": "8D REM. ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "HASTINGS, HEWLETTE M.", "Address": "PO Box 1032", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28800, "Improved_V": 100500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.32673379799999, "SHAPE_Area": 2268.2164876100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360864.924800001084805, 258605.134100001305342 ], [ 360851.000100001692772, 258615.822900000959635 ], [ 360852.111299999058247, 258619.156599998474121 ], [ 360850.523800000548363, 258620.214999999850988 ], [ 360849.200900003314018, 258620.744100000709295 ], [ 360848.936300002038479, 258622.331599999219179 ], [ 360850.259300000965595, 258625.241999998688698 ], [ 360839.068899996578693, 258632.058800000697374 ], [ 360865.069099999964237, 258675.150100000202656 ], [ 360874.921700000762939, 258672.336199998855591 ], [ 360892.728900000452995, 258664.460400000214577 ], [ 360903.540600001811981, 258660.403400000184774 ], [ 360864.924800001084805, 258605.134100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94423037, "LATITUDE": 18.35730815, "OBJECTID_1": 3878, "PARCEL_NO_": "102801040900", "Tax_Legal_": "8-42 ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "ARTHUR, CLARENCE R. & MCDONALD, LORETTA W.", "Address": "PO Box 306077", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37900, "Improved_V": 279400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.821118616899994, "SHAPE_Area": 535.81378063499994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357397.414700001478195, 258629.942200001329184 ], [ 357369.265699997544289, 258621.268100000917912 ], [ 357364.289399996399879, 258637.481600001454353 ], [ 357364.269599996507168, 258639.80350000038743 ], [ 357392.436599999666214, 258646.366799999028444 ], [ 357397.414700001478195, 258629.942200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801031600", "MAP": "F9-1237-T63", "PARCEL_NAM": "8-66", "ACRE": null, "LONGITUDE": -64.94515376, "LATITUDE": 18.35720041, "OBJECTID_1": 3856, "PARCEL_NO_": "102801031600", "Tax_Legal_": "LERKENLUND 8-66 LITTLE NORTHSIDE", "Name": "BUNCOME, TROY", "Address": "PO Box 10043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41700, "Improved_V": 50200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.68294471599999, "SHAPE_Area": 834.61256918100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357299.834700003266335, 258631.043400000780821 ], [ 357286.40429999679327, 258598.42509999871254 ], [ 357266.939499996602535, 258611.564699999988079 ], [ 357277.95099999755621, 258644.163199998438358 ], [ 357285.245600000023842, 258639.78999999910593 ], [ 357299.834700003266335, 258631.043400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704010600", "MAP": "A9-42-T65", "PARCEL_NAM": "11B", "ACRE": null, "LONGITUDE": -64.95261728, "LATITUDE": 18.35631413, "OBJECTID_1": 3442, "PARCEL_NO_": "102704010600", "Tax_Legal_": "LILLIANDAL & MARIENHOJ 11B 3 LITTLE NORTHSIDE", "Name": "BRIN, DARLIN", "Address": "7839 Est Lilliendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 147200, "Improved_V": 293600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 649.74392955799999, "SHAPE_Area": 17210.345584 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356540.517800003290176, 258503.238899998366833 ], [ 356532.974399998784065, 258442.171100001782179 ], [ 356532.360500000417233, 258419.579100001603365 ], [ 356533.200900003314018, 258415.575199998915195 ], [ 356534.91780000180006, 258403.345800001174212 ], [ 356535.982600003480911, 258393.826799999922514 ], [ 356528.094802095554769, 258396.961196388234384 ], [ 356520.382878297241405, 258400.506337835948216 ], [ 356512.868199996650219, 258404.452399998903275 ], [ 356507.545157438202295, 258407.105033540399745 ], [ 356502.030504279653542, 258409.332105008710641 ], [ 356496.358199998736382, 258411.119899999350309 ], [ 356480.951452698558569, 258414.364165242237505 ], [ 356465.401900000870228, 258416.834899999201298 ], [ 356459.460727417899761, 258417.826179996947758 ], [ 356453.475199997425079, 258418.499699998646975 ], [ 356446.812799997627735, 258455.678800001740456 ], [ 356445.296499997377396, 258464.140799999237061 ], [ 356468.576899997889996, 258462.237500000745058 ], [ 356464.0996999964118, 258481.293000001460314 ], [ 356460.70549999922514, 258501.107999999076128 ], [ 356442.058499999344349, 258607.557700000703335 ], [ 356536.150700002908707, 258637.247600000351667 ], [ 356527.685900002717972, 258589.682199999690056 ], [ 356527.10249999910593, 258563.501899998635054 ], [ 356529.620399996638298, 258551.912300001829863 ], [ 356537.886699996888638, 258528.126400001347065 ], [ 356539.585600003600121, 258518.007800001651049 ], [ 356540.517800003290176, 258503.238899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93465078, "LATITUDE": 18.35693395, "OBJECTID_1": 4102, "PARCEL_NO_": "102802021800", "Tax_Legal_": "3B-5 MISGUNST No.6 GREAT NORTHSIDE QTR", "Name": "ROM(TRUSTEES), DANIEL S. & JULIA B.", "Address": "286 High Rail Ter", "City": "Leesburg", "State": "Virginia", "Zip": 20175, "Country": "United States", "Land_Value": 165800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.28428167300001, "SHAPE_Area": 3825.0713365699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358438.64639999717474, 258605.322500001639128 ], [ 358391.491200000047684, 258555.962900001555681 ], [ 358369.646999999880791, 258564.438900001347065 ], [ 358366.481799997389317, 258652.0168999992311 ], [ 358438.64639999717474, 258605.322500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93627019, "LATITUDE": 18.35711646, "OBJECTID_1": 4138, "PARCEL_NO_": "102802025600", "Tax_Legal_": "LERKENLUND 4A-3A GT NORTHSIDE", "Name": "BRIN FAMILY TRUST", "Address": "4605 Tutu Park", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84600, "Improved_V": 463900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.46710267500001, "SHAPE_Area": 2666.8940875899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358253.984700001776218, 258605.710999999195337 ], [ 358242.075199998915195, 258583.870900001376867 ], [ 358193.442900002002716, 258613.237100001424551 ], [ 358182.797200001776218, 258632.359499998390675 ], [ 358187.622500002384186, 258633.876600001007318 ], [ 358215.704999998211861, 258650.360599998384714 ], [ 358237.532999999821186, 258643.784299999475479 ], [ 358253.984700001776218, 258605.710999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96360444, "LATITUDE": 18.35714652, "OBJECTID_1": 2918, "PARCEL_NO_": "102701032800", "Tax_Legal_": "3M-2 REM & 3M-1-1 DOROTHEA NO.7 LITTLE NORTHSIDE QTR", "Name": "EGGER, DIANA E. & ARTHUR", "Address": "7945 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 290100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.048498274, "SHAPE_Area": 2045.89413698 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355326.391800001263618, 258566.76240000128746 ], [ 355315.857600003480911, 258572.797899998724461 ], [ 355299.632399998605251, 258584.275299999862909 ], [ 355319.563699997961521, 258611.036200001835823 ], [ 355323.516099996864796, 258620.356600001454353 ], [ 355325.936800003051758, 258620.165399998426437 ], [ 355325.911700002849102, 258623.12049999833107 ], [ 355372.665200002491474, 258624.980799999088049 ], [ 355326.391800001263618, 258566.76240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97000448, "LATITUDE": 18.3571475, "OBJECTID_1": 2468, "PARCEL_NO_": "102602030600", "Tax_Legal_": "DOROTHEA 1A-11 LT. NORTHSIDE QTR.", "Name": "SBA TOWERS USVI INC", "Address": "8051 Congress Ave", "City": "Boca Raton", "State": "Florida", "Zip": 33487, "Country": "United States", "Land_Value": 168300, "Improved_V": 66400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.274867159, "SHAPE_Area": 1481.5993921899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354692.383799999952316, 258590.493200000375509 ], [ 354694.125900000333786, 258575.308699999004602 ], [ 354628.692699998617172, 258589.100600000470877 ], [ 354628.694099999964237, 258588.916400000452995 ], [ 354621.207099996507168, 258615.875100001692772 ], [ 354668.89469999819994, 258602.755499999970198 ], [ 354692.383799999952316, 258590.493200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94449663, "LATITUDE": 18.35719446, "OBJECTID_1": 3871, "PARCEL_NO_": "102801040200", "Tax_Legal_": "LERKENLUND 8-51 GR NORTHSIDE", "Name": "FALLS, CURTIS HAMILTON & PAMELA HUFFMAN", "Address": "430 Madison Forest Dr", "City": "Herndon", "State": "Virginia", "Zip": 20170, "Country": "United States", "Land_Value": 80900, "Improved_V": 296900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.216551619, "SHAPE_Area": 652.31942538600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357335.30349999666214, 258632.389199998229742 ], [ 357357.833499997854233, 258638.061999998986721 ], [ 357358.661399997770786, 258635.535700000822544 ], [ 357367.796899996697903, 258604.368599999696016 ], [ 357367.017599999904633, 258601.195799998939037 ], [ 357362.987800002098083, 258600.951799999922514 ], [ 357360.543700002133846, 258603.887099999934435 ], [ 357352.424800001084805, 258610.364500001072884 ], [ 357337.832099996507168, 258619.53319999948144 ], [ 357335.30349999666214, 258632.389199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94592249, "LATITUDE": 18.35718875, "OBJECTID_1": 3850, "PARCEL_NO_": "102801030900", "Tax_Legal_": "ST.PETER 3I-23 LITTLE NORTHSIDE QTR", "Name": "GOLUB, ROBERT S.", "Address": "PO Box 303467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.550196317499996, "SHAPE_Area": 520.75107779500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357216.026799999177456, 258624.657999999821186 ], [ 357208.949799999594688, 258603.490699999034405 ], [ 357187.88849999755621, 258614.717399999499321 ], [ 357194.155599996447563, 258636.300200000405312 ], [ 357202.267300002276897, 258630.667100001126528 ], [ 357216.026799999177456, 258624.657999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94341282000001, "LATITUDE": 18.35723264, "OBJECTID_1": 3895, "PARCEL_NO_": "102801042700", "Tax_Legal_": "LERKENLUND 8-30 GREAT NORTHSIDE QTR", "Name": "CHARLES G RICKSECKER LERKENLUND IRREVOCABLE TRUST", "Address": "PO BOX 304833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.367208915299997, "SHAPE_Area": 396.58345499400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357480.464900001883507, 258630.622000001370907 ], [ 357474.95380000025034, 258614.955899998545647 ], [ 357457.974399998784065, 258620.305399999022484 ], [ 357452.314099997282028, 258622.158900000154972 ], [ 357461.041500002145767, 258638.906700000166893 ], [ 357480.464900001883507, 258630.622000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91389036, "LATITUDE": 18.35685821, "OBJECTID_1": 5104, "PARCEL_NO_": "103001010900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9C GREAT NORTHSIDE QTR", "Name": "JOYCE L CHRISTIAN LIVING TRUST", "Address": "C2 Good Hope Townhouse", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 840, "Country": "United States", "Land_Value": 160400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 431.92963673700001, "SHAPE_Area": 6232.0541720299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360613.735100001096725, 258568.662500001490116 ], [ 360606.462099999189377, 258570.50279999896884 ], [ 360591.113399997353554, 258573.754700001329184 ], [ 360553.952899999916553, 258581.683200001716614 ], [ 360557.80460000038147, 258602.824099998921156 ], [ 360560.873400002717972, 258621.214299999177456 ], [ 360563.179099999368191, 258634.5320999994874 ], [ 360497.747299998998642, 258648.139800000935793 ], [ 360499.230400003492832, 258663.350699998438358 ], [ 360580.80290000140667, 258648.186299998313189 ], [ 360649.754799999296665, 258599.988000001758337 ], [ 360658.685400001704693, 258592.883900001645088 ], [ 360631.482900001108646, 258567.752300001680851 ], [ 360628.282899998128414, 258564.770799998193979 ], [ 360613.735100001096725, 258568.662500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9221566, "LATITUDE": 18.35510742, "OBJECTID_1": 5087, "PARCEL_NO_": "102904030100", "Tax_Legal_": "3 REM.&3H(F/K/A/ 3F)CANAAN&SHERP No.7B GREAT NORTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY INC.", "Address": "3052 Estate Little Princess", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 626000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1613.65001725, "SHAPE_Area": 35502.3797424 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359858.069700002670288, 258524.771099999547005 ], [ 359894.982500001788139, 258516.668299999088049 ], [ 359901.225699998438358, 258436.385899998247623 ], [ 359902.992899999022484, 258418.246300000697374 ], [ 359914.259700000286102, 258420.871599998325109 ], [ 359913.564900003373623, 258407.778200000524521 ], [ 359916.086300000548363, 258395.766499999910593 ], [ 359919.144100002944469, 258388.78999999910593 ], [ 359910.112999998033047, 258383.771099999547005 ], [ 359908.525499999523163, 258394.883699998259544 ], [ 359890.269199997186661, 258410.361800000071526 ], [ 359883.377099998295307, 258449.116500001400709 ], [ 359872.870999999344349, 258480.523600000888109 ], [ 359845.104599997401237, 258512.542300000786781 ], [ 359773.137800000607967, 258516.775600001215935 ], [ 359749.153399996459484, 258492.136500000953674 ], [ 359751.748599998652935, 258471.470600001513958 ], [ 359757.622900001704693, 258444.498700000345707 ], [ 359756.965899996459484, 258426.972500000149012 ], [ 359753.722800001502037, 258377.765099998563528 ], [ 359696.995899997651577, 258357.296599999070168 ], [ 359676.728900000452995, 258349.983800001442432 ], [ 359660.060099996626377, 258314.264899998903275 ], [ 359708.98759999871254, 258286.995099999010563 ], [ 359730.563100002706051, 258274.969900000840425 ], [ 359670.003200002014637, 258188.111400000751019 ], [ 359688.566899999976158, 258136.673900000751019 ], [ 359676.492499999701977, 258123.816799998283386 ], [ 359667.147100001573563, 258113.9695999994874 ], [ 359632.51969999819994, 258363.470300000160933 ], [ 359663.144799999892712, 258554.760600000619888 ], [ 359664.253700003027916, 258567.315999999642372 ], [ 359750.592299997806549, 258548.363699998706579 ], [ 359858.069700002670288, 258524.771099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001013400", "MAP": "G9-2453-T74", "PARCEL_NAM": "8-1", "ACRE": ".78", "LONGITUDE": -64.91116547, "LATITUDE": 18.35668456, "OBJECTID_1": 5123, "PARCEL_NO_": "103001013400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 8-1 GR NORTHSIDE", "Name": "JN BAPTISITE, WILLIAM", "Address": "2279 Birmingham Dr", "City": "Belleville", "State": "Illinois", "Zip": 62221, "Country": "United States", "Land_Value": 87200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 358.25118831899999, "SHAPE_Area": 4421.3738530500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360842.777300000190735, 258521.882500000298023 ], [ 360837.689300000667572, 258527.124800000339746 ], [ 360833.509400002658367, 258531.459499999880791 ], [ 360830.321400001645088, 258535.254700001329184 ], [ 360827.190999999642372, 258539.279599998146296 ], [ 360823.624300003051758, 258545.181600000709295 ], [ 360822.80120000243187, 258546.210499998182058 ], [ 360825.273699998855591, 258549.412300001829863 ], [ 360832.854299999773502, 258559.232799999415874 ], [ 360838.263199999928474, 258566.974300000816584 ], [ 360903.540600001811981, 258660.403400000184774 ], [ 360932.367700003087521, 258649.585999999195337 ], [ 360842.777300000190735, 258521.882500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602035400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96887992000001, "LATITUDE": 18.35699369, "OBJECTID_1": 2514, "PARCEL_NO_": "102602035400", "Tax_Legal_": "DOROTHEA 1A-22 LITTLE NORTHSIDE", "Name": "TAMIKA TURNBULL and CIMERON POWELL", "Address": "PO BOX 600155", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.07738239299999, "SHAPE_Area": 2441.1946702199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354800.846900001168251, 258542.407200001180172 ], [ 354757.039899997413158, 258573.290500000119209 ], [ 354734.409199997782707, 258579.438099998980761 ], [ 354754.275700002908707, 258613.797800000756979 ], [ 354814.31139999628067, 258571.015000000596046 ], [ 354800.846900001168251, 258542.407200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93759374, "LATITUDE": 18.35713601, "OBJECTID_1": 4134, "PARCEL_NO_": "102802025200", "Tax_Legal_": "LERKENLUND 4AG 2 GREAT NORTHSIDE QTR", "Name": "RICHARD BERRY AND LORRAINE BERRY FAMILY TRUST", "Address": "7353 LOWER LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023480, "Country": "United States", "Land_Value": 40400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.441531797, "SHAPE_Area": 787.80505021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358091.624600000679493, 258638.579300001263618 ], [ 358093.248000003397465, 258637.326099999248981 ], [ 358102.17849999666214, 258630.221999999135733 ], [ 358105.425399996340275, 258627.715399999171495 ], [ 358073.401199996471405, 258600.644400000572205 ], [ 358063.606799997389317, 258614.496500000357628 ], [ 358061.13570000231266, 258620.597899999469519 ], [ 358091.624600000679493, 258638.579300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801031700", "MAP": "D9-5299-T92", "PARCEL_NAM": "8-65", "ACRE": ".203", "LONGITUDE": -64.94494939, "LATITUDE": 18.35708595, "OBJECTID_1": 3857, "PARCEL_NO_": "102801031700", "Tax_Legal_": "8-65 LERKENLUND NO.9 GREAT NORTHSIDE QTR.", "Name": "KUNZ AND TRAVIS REVOCABLE TRUST", "Address": "7811 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023494, "Country": "United States", "Land_Value": 31300, "Improved_V": 183100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.887351251, "SHAPE_Area": 921.50320037200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357325.755400002002716, 258617.323399998247623 ], [ 357304.247500002384186, 258586.3277000002563 ], [ 357286.40429999679327, 258598.42509999871254 ], [ 357299.834700003266335, 258631.043400000780821 ], [ 357325.755400002002716, 258617.323399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93790388, "LATITUDE": 18.35701653, "OBJECTID_1": 4116, "PARCEL_NO_": "102802023500", "Tax_Legal_": "LERKENLUND 4AG GREAT NORTHSIDE", "Name": "BERRY, LT & QUERRARD, A. E", "Address": "BOX 4101", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85600, "Improved_V": 424200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.17256284800001, "SHAPE_Area": 1183.70627182 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358057.138300001621246, 258616.554400000721216 ], [ 358069.398500002920628, 258597.234200000762939 ], [ 358086.458700001239777, 258582.386199999600649 ], [ 358038.763999998569489, 258596.35020000115037 ], [ 358024.17119999974966, 258605.518899999558926 ], [ 358043.254799999296665, 258637.127999998629093 ], [ 358057.138300001621246, 258616.554400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94651352, "LATITUDE": 18.35711989, "OBJECTID_1": 3843, "PARCEL_NO_": "102801030100", "Tax_Legal_": "ST PETER 3H-9 LITTLE NORHTSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.96318007400001, "SHAPE_Area": 1271.8749547899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357166.891999997198582, 258618.345199998468161 ], [ 357159.021300002932549, 258595.693799998611212 ], [ 357129.13740000128746, 258601.3597999997437 ], [ 357108.995800003409386, 258599.295099999755621 ], [ 357108.859099999070168, 258615.337099999189377 ], [ 357116.918700002133846, 258615.825300000607967 ], [ 357125.762900002300739, 258618.853000000119209 ], [ 357138.586599998176098, 258628.035000000149012 ], [ 357142.607400000095367, 258629.334399998188019 ], [ 357147.452399998903275, 258628.529699999839067 ], [ 357166.891999997198582, 258618.345199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95436314, "LATITUDE": 18.35663718, "OBJECTID_1": 3463, "PARCEL_NO_": "102704013600", "Tax_Legal_": "LILLENDAL & MARHOJ 11E LITTLE NORTHSIDE", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 506.94058864499999, "SHAPE_Area": 15724.3957288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356356.741499997675419, 258494.346500001847744 ], [ 356351.466300003230572, 258473.199000000953674 ], [ 356260.158100001513958, 258481.875500001013279 ], [ 356257.502599999308586, 258509.604699999094009 ], [ 356246.799599997699261, 258621.36939999833703 ], [ 356379.931100003421307, 258611.90430000051856 ], [ 356360.593199998140335, 258515.487399999052286 ], [ 356356.741499997675419, 258494.346500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94416632, "LATITUDE": 18.35712635, "OBJECTID_1": 3879, "PARCEL_NO_": "102801041000", "Tax_Legal_": "LERKENLUND 8-41 GR NORTHSIDE QTR", "Name": "PERKINS, ALEXIUS G", "Address": "PO Box 298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42200, "Improved_V": 246000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.586111429, "SHAPE_Area": 730.18963599799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357408.090999998152256, 258607.231499999761581 ], [ 357375.096900001168251, 258599.362100001424551 ], [ 357369.265699997544289, 258621.268100000917912 ], [ 357397.414700001478195, 258629.942200001329184 ], [ 357399.07769999653101, 258624.045200001448393 ], [ 357400.70830000191927, 258621.947599999606609 ], [ 357400.724500000476837, 258620.047899998724461 ], [ 357405.646899998188019, 258610.166799999773502 ], [ 357408.090999998152256, 258607.231499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94318551000001, "LATITUDE": 18.35715801, "OBJECTID_1": 3891, "PARCEL_NO_": "102801042300", "Tax_Legal_": "8-29 ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "LANDON T BUNN and ELISE YOSHIOKA", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37400, "Improved_V": 253800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.342645996200005, "SHAPE_Area": 449.26202127699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357509.585600003600121, 258619.883400000631809 ], [ 357499.209700003266335, 258607.344000000506639 ], [ 357474.95380000025034, 258614.955899998545647 ], [ 357480.464900001883507, 258630.622000001370907 ], [ 357509.585600003600121, 258619.883400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95866733, "LATITUDE": 18.35703244, "OBJECTID_1": 2888, "PARCEL_NO_": "102701026200", "Tax_Legal_": "BONNE RESOLUTION 10F LT. NORTHSIDE", "Name": "BERRY, GEORGE", "Address": "PO Box 7821", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66300, "Improved_V": 123400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.867006903, "SHAPE_Area": 2206.98802372 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355843.178700000047684, 258577.958200000226498 ], [ 355830.286700002849102, 258576.797200001776218 ], [ 355819.779500000178814, 258579.666499998420477 ], [ 355832.4054000005126, 258612.067099999636412 ], [ 355878.338200002908707, 258615.609499998390675 ], [ 355880.211599998176098, 258585.01630000025034 ], [ 355868.923199996352196, 258584.923900000751019 ], [ 355860.872599996626377, 258583.380300000309944 ], [ 355843.178700000047684, 258577.958200000226498 ] ] ], [ [ [ 355881.188699997961521, 258564.970400001853704 ], [ 355881.552199997007847, 258561.688200000673532 ], [ 355856.986699998378754, 258566.249899998307228 ], [ 355848.059799998998642, 258572.93189999833703 ], [ 355849.64360000193119, 258576.322299998253584 ], [ 355862.510399997234344, 258580.438400000333786 ], [ 355870.566399998962879, 258581.348700001835823 ], [ 355880.245700001716614, 258581.005800001323223 ], [ 355881.188699997961521, 258564.970400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93700582, "LATITUDE": 18.35696164, "OBJECTID_1": 4117, "PARCEL_NO_": "102802023600", "Tax_Legal_": "LERKENLUND 4A-3 GR NORTHSIDE QTR", "Name": "SALEM, DOROTHY B. & HAKIM JAMIL", "Address": "PO Box 302194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 143100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.07786532300003, "SHAPE_Area": 4279.8670914000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358102.635300002992153, 258576.607900001108646 ], [ 358118.412699997425079, 258617.6891999989748 ], [ 358105.425399996340275, 258627.715399999171495 ], [ 358102.17849999666214, 258630.221999999135733 ], [ 358131.1824000030756, 258633.203600000590086 ], [ 358164.268200002610683, 258630.30799999833107 ], [ 358182.797200001776218, 258632.359499998390675 ], [ 358193.442900002002716, 258613.237100001424551 ], [ 358140.677599996328354, 258559.820700000971556 ], [ 358102.635300002992153, 258576.607900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901010400", "MAP": "F9-1017-T62", "PARCEL_NAM": "5F", "ACRE": null, "LONGITUDE": -64.93165429, "LATITUDE": 18.35682991, "OBJECTID_1": 4678, "PARCEL_NO_": "102901010400", "Tax_Legal_": "5F ESTATE MISGUNST GREAT NORTHSIDE QTR.", "Name": "VILLA PANORAMA DREAM DESTINATION LLC", "Address": "1342 N Independence Ct", "City": "Metamora", "State": "Illinois", "Zip": 61548, "Country": "United States", "Land_Value": 187400, "Improved_V": 561100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.47091619000003, "SHAPE_Area": 3089.9491549 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358714.017899997532368, 258558.391499999910593 ], [ 358712.473600000143051, 258550.357299998402596 ], [ 358713.427400000393391, 258533.055500000715256 ], [ 358689.952600002288818, 258543.629099998623133 ], [ 358695.608300000429153, 258636.978799998760223 ], [ 358741.649099998176098, 258627.8564000017941 ], [ 358714.017899997532368, 258558.391499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94571843, "LATITUDE": 18.35709117, "OBJECTID_1": 3849, "PARCEL_NO_": "102801030800", "Tax_Legal_": "ST PETER 3I-19&18A LITTLE NORTHSIDE QTR", "Name": "BRADSHAW , LACILLE & IVY", "Address": "PO Box 8747", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34800, "Improved_V": 211000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.020233256699996, "SHAPE_Area": 548.32234034099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357237.878100000321865, 258615.337600000202656 ], [ 357230.009199999272823, 258592.475099999457598 ], [ 357208.949799999594688, 258603.490699999034405 ], [ 357216.026799999177456, 258624.657999999821186 ], [ 357237.878100000321865, 258615.337600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801060200", "MAP": "G9-3029-T80", "PARCEL_NAM": "3A-5", "ACRE": "0.50", "LONGITUDE": -64.94840015, "LATITUDE": 18.35706466, "OBJECTID_1": 3996, "PARCEL_NO_": "102801060200", "Tax_Legal_": "ST PETER 3A-5 LT. NORTHSIDE", "Name": "WILLIAMS, MICHAEL and KAY", "Address": "101 Ryan Lake Trl", "City": "Alpharetta", "State": "Georgia", "Zip": 30004, "Country": "United States", "Land_Value": 93200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.92830233699999, "SHAPE_Area": 1690.32806254 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356970.990500003099442, 258612.942200001329184 ], [ 356960.763800002634525, 258582.883200000971556 ], [ 356951.052100002765656, 258587.025600001215935 ], [ 356945.397100001573563, 258588.245900001376867 ], [ 356939.752899996936321, 258588.199700001627207 ], [ 356930.111299999058247, 258584.109999999403954 ], [ 356903.281800001859665, 258609.854899998754263 ], [ 356908.886399999260902, 258614.544799998402596 ], [ 356938.673299998044968, 258620.276999998837709 ], [ 356945.919299997389317, 258621.602899998426437 ], [ 356962.094099998474121, 258616.035799998790026 ], [ 356970.990500003099442, 258612.942200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96749678, "LATITUDE": 18.35704692, "OBJECTID_1": 2525, "PARCEL_NO_": "102602040200", "Tax_Legal_": "21-11 DOROTHEA NO.7 LITTLE NORTHSIDE QTR", "Name": "ESANNASON, CLOTILDA,MILLIN, HENRY O.", "Address": "PO Box 10735", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73400, "Improved_V": 4200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.23058338499999, "SHAPE_Area": 2222.8222699600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354954.372400000691414, 258600.025699999183416 ], [ 354952.954000003635883, 258577.215999998152256 ], [ 354936.212099999189377, 258554.703099999576807 ], [ 354897.26630000025034, 258582.881900001317263 ], [ 354886.750100001692772, 258586.806600000709295 ], [ 354876.262599997222424, 258587.354100000113249 ], [ 354874.641000002622604, 258588.396299999207258 ], [ 354874.617600001394749, 258591.140299998223782 ], [ 354884.225000001490116, 258599.240499999374151 ], [ 354891.451300002634525, 258602.888199999928474 ], [ 354899.503600001335144, 258604.22069999948144 ], [ 354954.372400000691414, 258600.025699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001012900", "MAP": "A9-170-T72", "PARCEL_NAM": "8F", "ACRE": null, "LONGITUDE": -64.91284655, "LATITUDE": 18.35675679, "OBJECTID_1": 5118, "PARCEL_NO_": "103001012900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 8F GR NORTHSIDE", "Name": "BERKEL, AILEEN", "Address": "3859 Dogwood Trl", "City": "Allentown", "State": "Pennsylvania", "Zip": 18103, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.704282186, "SHAPE_Area": 3580.2184023200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360729.03320000320673, 258591.009199999272823 ], [ 360708.403200000524521, 258556.958299998193979 ], [ 360658.685400001704693, 258592.883900001645088 ], [ 360692.057800002396107, 258650.996700000017881 ], [ 360692.9037000015378, 258646.359600000083447 ], [ 360695.360399998724461, 258641.946699999272823 ], [ 360711.644900001585484, 258623.503800000995398 ], [ 360735.175399996340275, 258606.386700000613928 ], [ 360737.50959999859333, 258604.999899998307228 ], [ 360729.03320000320673, 258591.009199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91443607, "LATITUDE": 18.35707913, "OBJECTID_1": 5105, "PARCEL_NO_": "103001011000", "Tax_Legal_": "JOSEPH & ROSENDAHL 9B-1 GR NORTHSIDE QTR", "Name": "SMITH, GLORIA", "Address": "PO Box 62", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40200, "Improved_V": 199400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.37102565000001, "SHAPE_Area": 889.50544618200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360560.873400002717972, 258621.214299999177456 ], [ 360495.438000001013279, 258635.244199998676777 ], [ 360497.747299998998642, 258648.139800000935793 ], [ 360563.179099999368191, 258634.5320999994874 ], [ 360560.873400002717972, 258621.214299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93744262, "LATITUDE": 18.35697153, "OBJECTID_1": 4122, "PARCEL_NO_": "102802024100", "Tax_Legal_": "4AF LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "SALEM, HAKIM JAMIL & DOROTHY B.", "Address": "PO Box 302194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45500, "Improved_V": 188100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.58451994000001, "SHAPE_Area": 1167.02759244 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358073.401199996471405, 258600.644400000572205 ], [ 358105.425399996340275, 258627.715399999171495 ], [ 358118.412699997425079, 258617.6891999989748 ], [ 358102.635300002992153, 258576.607900001108646 ], [ 358096.159599997103214, 258579.510299999266863 ], [ 358083.967799998819828, 258590.809500001370907 ], [ 358080.724600002169609, 258592.893899999558926 ], [ 358073.401199996471405, 258600.644400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030900", "MAP": "D9-5865-T95", "PARCEL_NAM": "3A REM", "ACRE": "0.275", "LONGITUDE": -64.96171288, "LATITUDE": 18.35703934, "OBJECTID_1": 2900, "PARCEL_NO_": "102701030900", "Tax_Legal_": "3A REM DOROTHEA NO. 7 LITTLE NORTHSIDE QTR", "Name": "MARGARET BRYAN LIVING TRUST", "Address": "9641 Large Oak Court", "City": "Winnabow", "State": "North Carolina", "Zip": 284794602, "Country": "United States", "Land_Value": 75800, "Improved_V": 298800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.848651109, "SHAPE_Area": 1379.5326810199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355563.994999997317791, 258599.104600001126528 ], [ 355545.741099998354912, 258564.758000001311302 ], [ 355510.866499997675419, 258588.326099999248981 ], [ 355498.710699997842312, 258595.403799999505281 ], [ 355503.456799998879433, 258606.208500001579523 ], [ 355523.645199999213219, 258602.785100001841784 ], [ 355563.994999997317791, 258599.104600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001013500", "MAP": "G9-2453-T74", "PARCEL_NAM": "8-2", "ACRE": ".90", "LONGITUDE": -64.91096316, "LATITUDE": 18.35653139, "OBJECTID_1": 5124, "PARCEL_NO_": "103001013500", "Tax_Legal_": "PAR 8-2 REM ST JOSEPH & ROSENDAHL 4 GREATNORTHSIDE QTR", "Name": "ALISON FOY", "Address": "3008 Sunrise Court", "City": "Conyers", "State": "Georgia", "Zip": 300948027, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.86313432200001, "SHAPE_Area": 3956.15834739 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360876.298500001430511, 258524.114799998700619 ], [ 360863.737899996340275, 258506.855700001120567 ], [ 360858.847099997103214, 258510.06529999896884 ], [ 360854.692299999296665, 258512.2195999994874 ], [ 360851.079899996519089, 258514.96510000154376 ], [ 360846.721199996769428, 258518.545400001108646 ], [ 360842.777300000190735, 258521.882500000298023 ], [ 360932.367700003087521, 258649.585999999195337 ], [ 360951.839699998497963, 258635.602099999785423 ], [ 360934.320200003683567, 258609.705299999564886 ], [ 360880.968000002205372, 258530.530799999833107 ], [ 360876.298500001430511, 258524.114799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95341524, "LATITUDE": 18.35645126, "OBJECTID_1": 3462, "PARCEL_NO_": "102704013500", "Tax_Legal_": "LILLDHL & MARHJ 11EA LITTLE NORTHSIDE", "Name": "CARTY , MAXWELL & HOLLAR, BRENDA", "Address": "PO Box 8897", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 126000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 469.27435480499997, "SHAPE_Area": 12630.3362459 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356464.0996999964118, 258481.293000001460314 ], [ 356468.576899997889996, 258462.237500000745058 ], [ 356445.296499997377396, 258464.140799999237061 ], [ 356430.211400002241135, 258465.716299999505281 ], [ 356425.552299998700619, 258466.159000001847744 ], [ 356351.466300003230572, 258473.199000000953674 ], [ 356356.741499997675419, 258494.346500001847744 ], [ 356360.593199998140335, 258515.487399999052286 ], [ 356379.931100003421307, 258611.90430000051856 ], [ 356442.058499999344349, 258607.557700000703335 ], [ 356460.70549999922514, 258501.107999999076128 ], [ 356464.0996999964118, 258481.293000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94615134, "LATITUDE": 18.35702633, "OBJECTID_1": 3847, "PARCEL_NO_": "102801030500", "Tax_Legal_": "ST PETER 3I-24 LITTLE NORTHSIDE QTR", "Name": "BARTZ, JAN", "Address": "PO Box 1150", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 54800, "Improved_V": 364300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.567804456, "SHAPE_Area": 670.32968557000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357196.708200000226498, 258602.805900000035763 ], [ 357190.775399997830391, 258586.127399999648333 ], [ 357187.312399998307228, 258587.692699998617172 ], [ 357170.329499997198582, 258593.464299999177456 ], [ 357159.021300002932549, 258595.693799998611212 ], [ 357166.891999997198582, 258618.345199998468161 ], [ 357169.321800000965595, 258617.098600000143051 ], [ 357196.708200000226498, 258602.805900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96707359, "LATITUDE": 18.35688292, "OBJECTID_1": 2526, "PARCEL_NO_": "102602040300", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 10, LITTLE NORTHSIDE", "Name": "HUGGINS, ORVILLE V. & VIDA", "Address": "P.O. BOX 2398", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.65079803699999, "SHAPE_Area": 2286.5644476299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354984.626800000667572, 258550.877399999648333 ], [ 354969.477700002491474, 258530.699599999934435 ], [ 354936.212099999189377, 258554.703099999576807 ], [ 354952.954000003635883, 258577.215999998152256 ], [ 354954.372400000691414, 258600.025699999183416 ], [ 354989.068999998271465, 258597.354400001466274 ], [ 354984.626800000667572, 258550.877399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102701031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96354903, "LATITUDE": 18.35674876, "OBJECTID_1": 2901, "PARCEL_NO_": "102701031000", "Tax_Legal_": "DOROTHEA 4-1 LITTLE NORTHSIDE", "Name": "BRYAN, CARL & ELIZABETH", "Address": "#3C DOROTHEA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 349.97977235899998, "SHAPE_Area": 1600.63328815 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355417.871899999678135, 258524.448100000619888 ], [ 355405.059000000357628, 258513.999600000679493 ], [ 355404.234700001776218, 258516.103799998760223 ], [ 355379.953599996864796, 258526.670800000429153 ], [ 355338.641099996864796, 258548.708599999547005 ], [ 355315.95830000191927, 258560.97749999910593 ], [ 355299.74210000038147, 258571.399500001221895 ], [ 355285.120600000023842, 258583.94539999961853 ], [ 355281.893500000238419, 258584.130100000649691 ], [ 355279.492600001394749, 258581.999499998986721 ], [ 355274.606200002133846, 258587.659000001847744 ], [ 355274.566600002348423, 258592.302799999713898 ], [ 355272.122500002384186, 258595.238099999725819 ], [ 355278.511799998581409, 258602.467500001192093 ], [ 355299.632399998605251, 258584.275299999862909 ], [ 355315.857600003480911, 258572.797899998724461 ], [ 355326.391800001263618, 258566.76240000128746 ], [ 355375.00789999961853, 258539.296000000089407 ], [ 355406.567400000989437, 258526.255399998277426 ], [ 355414.6503000035882, 258523.999499998986721 ], [ 355417.871899999678135, 258524.448100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003060100", "MAP": "G9-3020-T80", "PARCEL_NAM": "B-13", "ACRE": ".12", "LONGITUDE": -64.91021479, "LATITUDE": 18.35691413, "OBJECTID_1": 5932, "PARCEL_NO_": "103003060100", "Tax_Legal_": "LOVELUND B-10,10-A,10-B&B-13 GT.NORTHSIDE QTR.", "Name": "FRANCIS, DELREASE", "Address": "PO Box 11613", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46800, "Improved_V": 178000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.89977120699999, "SHAPE_Area": 735.03880786800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361002.914300002157688, 258603.511799998581409 ], [ 360990.085199996829033, 258594.962999999523163 ], [ 360971.354800000786781, 258616.552400000393391 ], [ 360951.839699998497963, 258635.602099999785423 ], [ 360957.372400000691414, 258648.735199999064207 ], [ 360972.843299999833107, 258631.129999998956919 ], [ 360990.740500003099442, 258612.700199998915195 ], [ 361002.914300002157688, 258603.511799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102704014200", "MAP": null, "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.95174417, "LATITUDE": 18.35706648, "OBJECTID_1": 3467, "PARCEL_NO_": "102704014200", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 10-1REMAINDER No.3 GREAT NORTHSIDE QTR.", "Name": "INDUSTRIOUS, JUULIAN SR. & JULIAN JR. & FELICE & AYALA,KIMBERLY", "Address": "PO Box 304985", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 185300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.921320581, "SHAPE_Area": 587.30122393600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356601.695799998939037, 258610.341899998486042 ], [ 356632.391400001943111, 258604.049199998378754 ], [ 356631.637199997901917, 258597.921300001442432 ], [ 356626.790399998426437, 258598.937100000679493 ], [ 356594.476700000464916, 258605.849800001829863 ], [ 356588.843299999833107, 258604.537099998444319 ], [ 356586.435199998319149, 258603.250900000333786 ], [ 356543.869699999690056, 258583.05970000103116 ], [ 356543.812100000679493, 258589.8141999989748 ], [ 356587.174999997019768, 258611.067400000989437 ], [ 356593.618299998342991, 258611.964499998837709 ], [ 356601.695799998939037, 258610.341899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602040600", "MAP": "A9-398-T92", "PARCEL_NAM": "21-12", "ACRE": null, "LONGITUDE": -64.96668636, "LATITUDE": 18.3568649, "OBJECTID_1": 2529, "PARCEL_NO_": "102602040600", "Tax_Legal_": "DOROTHEA 21-12 LITTLE NORTHSIDE", "Name": "IRVIN D BROWN & DELAHN BROWN", "Address": "PO Box 95", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 73400, "Improved_V": 222200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.257752923, "SHAPE_Area": 2046.32319261 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355037.051299996674061, 258573.373199999332428 ], [ 355018.412000000476837, 258534.339699998497963 ], [ 354984.626800000667572, 258550.877399999648333 ], [ 354989.068999998271465, 258597.354400001466274 ], [ 354992.285300001502037, 258598.436200000345707 ], [ 355037.051299996674061, 258573.373199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801055700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94699491, "LATITUDE": 18.35708295, "OBJECTID_1": 3965, "PARCEL_NO_": "102801055700", "Tax_Legal_": "ST PETER 3H-26 LITTLE NORTHSIDE QTR", "Name": "BARRY A HUGHES LIVING REVOCABLE TRUST AGREEMENT", "Address": "9200 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.351059022, "SHAPE_Area": 665.93486025300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357108.859099999070168, 258615.337099999189377 ], [ 357108.995800003409386, 258599.295099999755621 ], [ 357097.730800002813339, 258596.458700001239777 ], [ 357090.468599997460842, 258597.032600000500679 ], [ 357060.541500002145767, 258607.764499999582767 ], [ 357058.918099999427795, 258609.017799999564886 ], [ 357059.697400003671646, 258612.190499998629093 ], [ 357069.362400002777576, 258613.536200001835823 ], [ 357108.859099999070168, 258615.337099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801031800", "MAP": "F9-1235-T63", "PARCEL_NAM": "8-64", "ACRE": null, "LONGITUDE": -64.9447502, "LATITUDE": 18.35693486, "OBJECTID_1": 3858, "PARCEL_NO_": "102801031800", "Tax_Legal_": "LERKENLUND 8-64 GT. NORTHSIDE", "Name": "LETTSOME, EBERT T", "Address": "PO Box 303430", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27500, "Improved_V": 253600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.436397304, "SHAPE_Area": 1188.6423029 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357349.264300003647804, 258602.73930000141263 ], [ 357323.771600000560284, 258566.222500000149012 ], [ 357307.559000000357628, 258576.222300000488758 ], [ 357310.735699996352196, 258581.947900000959635 ], [ 357304.247500002384186, 258586.3277000002563 ], [ 357325.755400002002716, 258617.323399998247623 ], [ 357339.525600001215935, 258610.047800000756979 ], [ 357349.264300003647804, 258602.73930000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901010500", "MAP": "D9-8122-T008", "PARCEL_NAM": "5FA-REM", "ACRE": ".649", "LONGITUDE": -64.931264, "LATITUDE": 18.3566058, "OBJECTID_1": 4679, "PARCEL_NO_": "102901010500", "Tax_Legal_": "5FA ESTATE MISGUNST No.6 GREAT NORTHSIDE QTR.", "Name": "COLEMAN, MARION T", "Address": "190 Lawrence St", "City": "New Haven", "State": "Connecticut", "Zip": 6511, "Country": "United States", "Land_Value": 167900, "Improved_V": 354900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.14672060199999, "SHAPE_Area": 2756.92187087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358732.090999998152256, 258603.827300000935793 ], [ 358791.319099999964237, 258566.825199998915195 ], [ 358782.626400001347065, 258550.509300000965595 ], [ 358775.481100000441074, 258537.363000001758337 ], [ 358719.680100001394749, 258556.326900001615286 ], [ 358714.017899997532368, 258558.391499999910593 ], [ 358732.090999998152256, 258603.827300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801060300", "MAP": "G9-3029-T80", "PARCEL_NAM": "3A-6", "ACRE": "0.50", "LONGITUDE": -64.94797471, "LATITUDE": 18.35694326, "OBJECTID_1": 3997, "PARCEL_NO_": "102801060300", "Tax_Legal_": "ST PETER 3A-6 LT NORTHSIDE", "Name": "SCHLESINGER, K & BARTSUH, R", "Address": "7848 Mountain Top", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93200, "Improved_V": 142900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.59884316099999, "SHAPE_Area": 1347.2766977799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357010.618500001728535, 258599.334300000220537 ], [ 356995.579099997878075, 258566.280699998140335 ], [ 356991.524099998176098, 258568.991700001060963 ], [ 356980.189000003039837, 258574.387299999594688 ], [ 356960.763800002634525, 258582.883200000971556 ], [ 356970.990500003099442, 258612.942200001329184 ], [ 356975.842699997127056, 258611.293099999427795 ], [ 356991.209399998188019, 258605.930500000715256 ], [ 356996.869800001382828, 258604.076999999582767 ], [ 357010.618500001728535, 258599.334300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96126245000001, "LATITUDE": 18.35690533, "OBJECTID_1": 2902, "PARCEL_NO_": "102701031100", "Tax_Legal_": "DOROTHEA 4-2 LITTLE NORTHSIDE", "Name": "LEWIS, MARGARET & WILLOUGBH", "Address": "4003 WEYMOUTH RHYMER HIGHWAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.67742740599999, "SHAPE_Area": 2434.2236311500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355597.39190000295639, 258559.692299999296665 ], [ 355586.279700003564358, 258538.914200000464916 ], [ 355578.146499998867512, 258547.080299999564886 ], [ 355566.793399997055531, 258554.58669999986887 ], [ 355545.741099998354912, 258564.758000001311302 ], [ 355563.994999997317791, 258599.104600001126528 ], [ 355594.645700000226498, 258598.088899999856949 ], [ 355617.242200002074242, 258595.951799999922514 ], [ 355597.39190000295639, 258559.692299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801060100", "MAP": "G9-3029-T80", "PARCEL_NAM": "3A-4", "ACRE": "0.52", "LONGITUDE": -64.94874079, "LATITUDE": 18.35682308, "OBJECTID_1": 3995, "PARCEL_NO_": "102801060100", "Tax_Legal_": "ST PETER 3A-4 LT. NORTHSIDE", "Name": "STEPHEN L & PATRICIA A SOLARI 2004 TRUST", "Address": "9230 N Alpine Rd", "City": "Stockton", "State": "California", "Zip": 95212, "Country": "United States", "Land_Value": 93200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.91953505399999, "SHAPE_Area": 1840.2300507499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356921.792900003492832, 258552.569899998605251 ], [ 356892.606799997389317, 258545.178899999707937 ], [ 356889.196199998259544, 258559.499299999326468 ], [ 356884.153300002217293, 258583.522700000554323 ], [ 356885.710199996829033, 258590.0793999992311 ], [ 356887.277800001204014, 258595.369500000029802 ], [ 356903.281800001859665, 258609.854899998754263 ], [ 356930.111299999058247, 258584.109999999403954 ], [ 356926.101300001144409, 258581.543999999761581 ], [ 356921.310199998319149, 258576.016399998217821 ], [ 356918.963200002908707, 258567.553399998694658 ], [ 356919.875600002706051, 258555.1064000017941 ], [ 356921.792900003492832, 258552.569899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96080948, "LATITUDE": 18.35689503, "OBJECTID_1": 2903, "PARCEL_NO_": "102701031200", "Tax_Legal_": "4-3 DOROTHEA NO.6 LITTLE NORTHSIDE QTR", "Name": "HENRY SMITH, MAVIS WILLIAMS, & GLADYS FAHIE", "Address": "7926 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36900, "Improved_V": 189400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.39710584599999, "SHAPE_Area": 1830.83695029 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355625.726099997758865, 258546.625300001353025 ], [ 355597.39190000295639, 258559.692299999296665 ], [ 355617.242200002074242, 258595.951799999922514 ], [ 355633.382799997925758, 258594.395100001245737 ], [ 355644.683799996972084, 258593.010000001639128 ], [ 355669.724399998784065, 258587.937600001692772 ], [ 355661.704499997198582, 258582.805700000375509 ], [ 355644.093299999833107, 258567.673900000751019 ], [ 355632.106499999761581, 258554.910199999809265 ], [ 355625.726099997758865, 258546.625300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602035100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96931593, "LATITUDE": 18.35684719, "OBJECTID_1": 2512, "PARCEL_NO_": "102602035100", "Tax_Legal_": "1A-19 ESTATE DOROTHEA LT. NORTHSIDE", "Name": "JOSEPH, KENNY & GEORGIANA", "Address": "PO Box 304015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48600, "Improved_V": 278600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.81782267400001, "SHAPE_Area": 1967.0052014800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354727.441899999976158, 258545.394999999552965 ], [ 354700.740000002086163, 258556.153299998492002 ], [ 354702.997100003063679, 258575.170200001448393 ], [ 354701.273000001907349, 258588.243900001049042 ], [ 354734.409199997782707, 258579.438099998980761 ], [ 354757.039899997413158, 258573.290500000119209 ], [ 354749.384900003671646, 258525.309599999338388 ], [ 354733.913900002837181, 258542.914799999445677 ], [ 354727.441899999976158, 258545.394999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91445634, "LATITUDE": 18.35693805, "OBJECTID_1": 5106, "PARCEL_NO_": "103001011100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9B-2 GR NORTHSIDE QTR", "Name": "MERSEREAU, ROBERT A#TA", "Address": "1605 Metropolitan Ave", "City": "Bronx", "State": "New York", "Zip": 10462, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.72828525, "SHAPE_Area": 1204.04390487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360557.80460000038147, 258602.824099998921156 ], [ 360496.404399998486042, 258616.464800000190735 ], [ 360497.957699999213219, 258623.443599998950958 ], [ 360493.1216000020504, 258623.192899998277426 ], [ 360495.438000001013279, 258635.244199998676777 ], [ 360560.873400002717972, 258621.214299999177456 ], [ 360557.80460000038147, 258602.824099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702035500", "MAP": "A9-468-T95", "PARCEL_NAM": "10-1-4", "ACRE": ".4936", "LONGITUDE": -64.95193189, "LATITUDE": 18.3568169, "OBJECTID_1": 3088, "PARCEL_NO_": "102702035500", "Tax_Legal_": "4 LILLIENDAHL & MARIENHOJ LITTLE NORTHSIDE QTR.", "Name": "BRIGGS, COURTNEY A. & MARIE T", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41100, "Improved_V": 230800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.72405851600001, "SHAPE_Area": 1742.5809209700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356586.866700001060963, 258552.592000000178814 ], [ 356573.964000001549721, 258552.697399999946356 ], [ 356543.322300001978874, 258552.657800000160933 ], [ 356543.869699999690056, 258583.05970000103116 ], [ 356586.435199998319149, 258603.250900000333786 ], [ 356586.866700001060963, 258552.592000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93337081, "LATITUDE": 18.35645491, "OBJECTID_1": 4101, "PARCEL_NO_": "102802021700", "Tax_Legal_": "MISGUNST 5B GR NORTHSIDE", "Name": "TUNICK, JAMES D. & REBECCA", "Address": "1336 Beltjen Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 156600, "Improved_V": 46200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.61946947600001, "SHAPE_Area": 4347.4390090699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358564.437600001692772, 258510.937800001353025 ], [ 358513.755000002682209, 258497.013000000268221 ], [ 358501.07769999653101, 258565.303599998354912 ], [ 358522.402199998497963, 258617.829300001263618 ], [ 358526.604599997401237, 258597.809799998998642 ], [ 358542.734399996697903, 258597.519600000232458 ], [ 358546.042400002479553, 258587.836399998515844 ], [ 358547.737800002098083, 258578.140000000596046 ], [ 358548.73650000244379, 258555.561099998652935 ], [ 358551.270499996840954, 258542.071899998933077 ], [ 358556.239600002765656, 258526.7027000002563 ], [ 358564.437600001692772, 258510.937800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94410957, "LATITUDE": 18.3569513, "OBJECTID_1": 3880, "PARCEL_NO_": "102801041100", "Tax_Legal_": "LERKENLUND 8-40 GR NORTHSIDE", "Name": "MARY S CUYLER LIVING TRUST OF JANUARY 2012", "Address": "PO Box 8341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18500, "Improved_V": 141300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.656322946299994, "SHAPE_Area": 510.62117203399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357375.096900001168251, 258599.362100001424551 ], [ 357408.090999998152256, 258607.231499999761581 ], [ 357403.468900002539158, 258581.862500000745058 ], [ 357385.686800003051758, 258586.78319999948144 ], [ 357377.580600000917912, 258591.783100001513958 ], [ 357375.096900001168251, 258599.362100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94390578, "LATITUDE": 18.35688032, "OBJECTID_1": 3881, "PARCEL_NO_": "102801041200", "Tax_Legal_": "LERKENLUND 8-39 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.967505744500002, "SHAPE_Area": 393.17812982599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357403.468900002539158, 258581.862500000745058 ], [ 357408.090999998152256, 258607.231499999761581 ], [ 357410.553099997341633, 258602.185400001704693 ], [ 357430.914099998772144, 258578.498500000685453 ], [ 357430.935599997639656, 258575.965599998831749 ], [ 357428.527500003576279, 258574.679299999028444 ], [ 357403.468900002539158, 258581.862500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93645414, "LATITUDE": 18.3567251, "OBJECTID_1": 4118, "PARCEL_NO_": "102802023700", "Tax_Legal_": "LERKENLUND 4A-2 & 3B GR NORTHSIDE QTR", "Name": "QUESTEL, PAUL R. & LINDA P", "Address": "PO Box 9843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 187400, "Improved_V": 279200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.08642849500001, "SHAPE_Area": 3095.05423165 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358242.075199998915195, 258583.870900001376867 ], [ 358215.884099997580051, 258534.682799998670816 ], [ 358208.517599999904633, 258547.499299999326468 ], [ 358204.442800000309944, 258552.532200001180172 ], [ 358201.196000002324581, 258555.038699999451637 ], [ 358193.098700001835823, 258558.983199998736382 ], [ 358182.596900001168251, 258561.219300001859665 ], [ 358174.5337999984622, 258561.153299998492002 ], [ 358161.657899998128414, 258558.092599999159575 ], [ 358155.2128000035882, 258557.406599998474121 ], [ 358193.442900002002716, 258613.237100001424551 ], [ 358242.075199998915195, 258583.870900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001011300", "MAP": "G9-3020-T80", "PARCEL_NAM": "8-4", "ACRE": ".50", "LONGITUDE": -64.91034732, "LATITUDE": 18.3567732, "OBJECTID_1": 5108, "PARCEL_NO_": "103001011300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL REM OF 8 GR NORTHSIDE QTR", "Name": "MILLIN, AGNES", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 176400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.970380557, "SHAPE_Area": 1597.6517540699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360990.085199996829033, 258594.962999999523163 ], [ 360974.921700000762939, 258576.473799999803305 ], [ 360959.529799997806549, 258584.791499998420477 ], [ 360934.320200003683567, 258609.705299999564886 ], [ 360951.839699998497963, 258635.602099999785423 ], [ 360971.354800000786781, 258616.552400000393391 ], [ 360990.085199996829033, 258594.962999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9699706, "LATITUDE": 18.35683747, "OBJECTID_1": 2467, "PARCEL_NO_": "102602030500", "Tax_Legal_": "DOROTHEA 1A-10 LT. NORTHSIDE", "Name": "SBA TOWERS USVI INC", "Address": "8051 Congress Ave", "City": "Boca Raton", "State": "Florida", "Zip": 33487, "Country": "United States", "Land_Value": 163400, "Improved_V": 97500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.998852293, "SHAPE_Area": 2778.9249783400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354624.347999997437, 258564.749699998646975 ], [ 354625.576800003647804, 258576.225299999117851 ], [ 354628.692699998617172, 258589.100600000470877 ], [ 354694.125900000333786, 258575.308699999004602 ], [ 354692.589100003242493, 258566.403200000524521 ], [ 354690.315499998629093, 258549.313000001013279 ], [ 354670.396899998188019, 258521.074499998241663 ], [ 354632.991800002753735, 258557.709800001233816 ], [ 354624.347999997437, 258564.749699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95928045, "LATITUDE": 18.35656132, "OBJECTID_1": 2884, "PARCEL_NO_": "102701025800", "Tax_Legal_": "BONNE RESOLUTION 10-2 LT. NORTHSIDE", "Name": "BAKER, HELEN BERRY-TRUSTEE", "Address": "PO Box 305109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.13897066499999, "SHAPE_Area": 6220.1760774599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355842.271799996495247, 258545.896000001579523 ], [ 355807.890699997544289, 258481.090199999511242 ], [ 355798.796599999070168, 258487.035799998790026 ], [ 355751.766199998557568, 258517.681600000709295 ], [ 355752.297399997711182, 258549.983300000429153 ], [ 355752.747699998319149, 258591.783500000834465 ], [ 355760.814400002360344, 258591.427299998700619 ], [ 355795.609899997711182, 258577.146600000560284 ], [ 355814.176600001752377, 258567.620200000703335 ], [ 355813.460299998521805, 258566.153900001198053 ], [ 355829.713100001215935, 258555.469200000166893 ], [ 355841.186899997293949, 258547.926300000399351 ], [ 355842.271799996495247, 258545.896000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96399469000001, "LATITUDE": 18.35662619, "OBJECTID_1": 2913, "PARCEL_NO_": "102701032300", "Tax_Legal_": "DOROTHEA 3 LT. NORTHSIDE", "Name": "BAMBINI, FLORENCE", "Address": "5601 Trompeter Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.05963493100001, "SHAPE_Area": 4457.0473985099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355252.737899996340275, 258504.309200000017881 ], [ 355251.123499996960163, 258504.507100000977516 ], [ 355249.50900000333786, 258504.704900000244379 ], [ 355244.572300001978874, 258516.274700000882149 ], [ 355238.863300003111362, 258523.827300000935793 ], [ 355274.606200002133846, 258587.659000001847744 ], [ 355279.492600001394749, 258581.999499998986721 ], [ 355281.893500000238419, 258584.130100000649691 ], [ 355285.120600000023842, 258583.94539999961853 ], [ 355299.74210000038147, 258571.399500001221895 ], [ 355315.95830000191927, 258560.97749999910593 ], [ 355338.641099996864796, 258548.708599999547005 ], [ 355326.124899998307228, 258503.432199999690056 ], [ 355310.794200003147125, 258504.573300000280142 ], [ 355298.65990000218153, 258509.118000000715256 ], [ 355288.912299998104572, 258517.48200000077486 ], [ 355283.183600001037121, 258527.356499999761581 ], [ 355274.229599997401237, 258537.204599998891354 ], [ 355271.790899999439716, 258539.506700001657009 ], [ 355266.945799998939037, 258540.3114 ], [ 355262.131300002336502, 258537.527800001204014 ], [ 355258.972599998116493, 258529.691399998962879 ], [ 355255.885799996554852, 258513.412000000476837 ], [ 355252.737899996340275, 258504.309200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024500", "MAP": "G9-1803-T71", "PARCEL_NAM": "7A", "ACRE": null, "LONGITUDE": -64.95988556, "LATITUDE": 18.35676108, "OBJECTID_1": 2874, "PARCEL_NO_": "102701024500", "Tax_Legal_": "DOROTHEA 7A LITTLE NORTHSIDE", "Name": "WHEATLEY, REBEKAH J. & NICHOLE(TRUSTEES)", "Address": "7A ESTATE DOROTHEA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47400, "Improved_V": 229600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.431000918, "SHAPE_Area": 2118.99767673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355752.297399997711182, 258549.983300000429153 ], [ 355705.689499996602535, 258531.025600001215935 ], [ 355694.111599996685982, 258564.916900001466274 ], [ 355752.747699998319149, 258591.783500000834465 ], [ 355752.297399997711182, 258549.983300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701033300", "MAP": "D9-5865-T95", "PARCEL_NAM": "3A-3", "ACRE": null, "LONGITUDE": -64.96195365, "LATITUDE": 18.35671407, "OBJECTID_1": 2922, "PARCEL_NO_": "102701033300", "Tax_Legal_": "DOROTHEA 3A-3 L. NORTHSIDE QTR", "Name": "VIOLA LIVING TRUST", "Address": "6385 Saxon Meadow Drive", "City": "Leland", "State": "North Carolina", "Zip": 284516081, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.85461093399999, "SHAPE_Area": 2324.0977792899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355540.161700002849102, 258557.113000001758337 ], [ 355521.929399996995926, 258520.233500000089407 ], [ 355515.45549999922514, 258522.924699999392033 ], [ 355503.292499996721745, 258530.846700001507998 ], [ 355496.791599996387959, 258536.704100001603365 ], [ 355491.928599998354912, 258539.619600001722574 ], [ 355487.880800001323223, 258541.486299999058247 ], [ 355474.14299999922514, 258544.962499998509884 ], [ 355494.751000002026558, 258586.927700001746416 ], [ 355505.281700000166893, 258581.314300000667572 ], [ 355540.161700002849102, 258557.113000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801060500", "MAP": "D9-1953-T82", "PARCEL_NAM": "3A-19", "ACRE": ".50", "LONGITUDE": -64.94767593, "LATITUDE": 18.35676976, "OBJECTID_1": 3999, "PARCEL_NO_": "102801060500", "Tax_Legal_": "ST PETER 3A-19 LT. NORTHSIDE", "Name": "WEBBE, IRA, SR. & EDELTA WEBBE (LIFE ESTATE)", "Address": "PO Box 303498", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71800, "Improved_V": 328000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.69113889600001, "SHAPE_Area": 1345.9132785199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357034.894199997186661, 258589.400499999523163 ], [ 357023.254399999976158, 258535.898600000888109 ], [ 357006.948399998247623, 258556.874499998986721 ], [ 356998.820500001311302, 258564.407299999147654 ], [ 356995.579099997878075, 258566.280699998140335 ], [ 357010.618500001728535, 258599.334300000220537 ], [ 357034.894199997186661, 258589.400499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94699865, "LATITUDE": 18.35689542, "OBJECTID_1": 3844, "PARCEL_NO_": "102801030200", "Tax_Legal_": "ST PETER 3H-10 LITTLE NORTHSIDE", "Name": "DANVERS, DAN", "Address": "P O BOX 1976", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.635967983, "SHAPE_Area": 630.19257809600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357112.267800003290176, 258593.833500001579523 ], [ 357105.169200003147125, 258575.199200000613928 ], [ 357092.266400001943111, 258575.30460000038147 ], [ 357085.801500000059605, 258576.940499998629093 ], [ 357077.706000000238419, 258580.673900000751019 ], [ 357072.027699999511242, 258584.638199999928474 ], [ 357066.324199996888638, 258591.557599999010563 ], [ 357064.699000000953674, 258593.021999999880791 ], [ 357063.073700003325939, 258594.486299999058247 ], [ 357063.045000001788139, 258597.863600000739098 ], [ 357066.257600001990795, 258599.367499999701977 ], [ 357088.906300000846386, 258591.109200000762939 ], [ 357095.365800000727177, 258590.106600001454353 ], [ 357099.395599998533726, 258590.350600000470877 ], [ 357112.267800003290176, 258593.833500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97046574, "LATITUDE": 18.35508668, "OBJECTID_1": 2651, "PARCEL_NO_": "102604010600", "Tax_Legal_": "LINDBERGH BAY 55A S S QTR", "Name": "MILLIN, OSCAR & FLORENCIA", "Address": "P.O. BOX 4361", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 208700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 874.95046150500002, "SHAPE_Area": 17898.391437099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354579.730800002813339, 258552.364199999719858 ], [ 354619.524800002574921, 258559.291299998760223 ], [ 354628.236699998378754, 258547.96059999987483 ], [ 354643.12049999833107, 258534.294199999421835 ], [ 354624.019799999892712, 258166.056499999016523 ], [ 354599.156199999153614, 258175.353500001132488 ], [ 354583.771499998867512, 258182.826999999582767 ], [ 354572.423799999058247, 258189.700199998915195 ], [ 354563.521999999880791, 258193.427000001072884 ], [ 354602.424199998378754, 258359.664900001138449 ], [ 354579.730800002813339, 258552.364199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801024000", "MAP": "F9-852-T61", "PARCEL_NAM": "11C-3", "ACRE": ".16", "LONGITUDE": -64.9413334, "LATITUDE": 18.35678445, "OBJECTID_1": 3813, "PARCEL_NO_": "102801024000", "Tax_Legal_": "11C-3 LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "ENGHAUSER, JOHN", "Address": "300 Mercer St", "City": "NEW YORK", "State": "New York", "Zip": 10003, "Country": "United States", "Land_Value": 24400, "Improved_V": 159000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.145232569, "SHAPE_Area": 1257.4914301 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357712.29730000346899, 258583.123500000685453 ], [ 357696.403099998831749, 258555.76240000128746 ], [ 357690.739100001752377, 258558.037999998778105 ], [ 357676.155299998819828, 258566.151299998164177 ], [ 357662.363499999046326, 258575.959800001233816 ], [ 357677.462300002574921, 258602.047899998724461 ], [ 357712.29730000346899, 258583.123500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9678283, "LATITUDE": 18.35678078, "OBJECTID_1": 2524, "PARCEL_NO_": "102602040100", "Tax_Legal_": "DOROTHEA 21-7 LITTLE NORTHSIDE QTR", "Name": "DECOURCEY, CAROL ANN and CONNIE", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59300, "Improved_V": 570700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.07573143799999, "SHAPE_Area": 2123.7634092500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354924.954300001263618, 258551.022300001233816 ], [ 354907.41499999910593, 258527.447399999946356 ], [ 354899.312299996614456, 258532.025100000202656 ], [ 354871.766400001943111, 258547.209499999880791 ], [ 354845.087999999523163, 258555.223799999803305 ], [ 354858.642399996519089, 258573.277699999511242 ], [ 354861.050599999725819, 258574.563999999314547 ], [ 354868.2804000005126, 258577.789500001817942 ], [ 354884.410300001502037, 258577.499400001019239 ], [ 354894.118400000035763, 258573.779100000858307 ], [ 354924.954300001263618, 258551.022300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91786315, "LATITUDE": 18.35675436, "OBJECTID_1": 4702, "PARCEL_NO_": "102902011800", "Tax_Legal_": "5D-2 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE", "Name": "RICHARD A VIALET, JR and EVETH WEBSTER VIALET", "Address": "PO Box 8685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73100, "Improved_V": 209600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.548099307, "SHAPE_Area": 962.65519334099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360162.030500002205372, 258618.133400000631809 ], [ 360184.011500000953674, 258612.97859999909997 ], [ 360175.020199999213219, 258574.570999998599291 ], [ 360163.713799998164177, 258576.589400000870228 ], [ 360149.939000003039837, 258578.877300001680851 ], [ 360162.030500002205372, 258618.133400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91451036, "LATITUDE": 18.35675955, "OBJECTID_1": 5107, "PARCEL_NO_": "103001011200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9B GREAT NORTHSIDE QTR", "Name": "CUMMINGS, HAROLD & LEONARD", "Address": "PO Box 62", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.15543816499999, "SHAPE_Area": 1565.4837131100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360553.952899999916553, 258581.683200001716614 ], [ 360532.956399999558926, 258585.311000000685453 ], [ 360488.539099998772144, 258593.180100001394749 ], [ 360493.1216000020504, 258623.192899998277426 ], [ 360497.957699999213219, 258623.443599998950958 ], [ 360496.404399998486042, 258616.464800000190735 ], [ 360557.80460000038147, 258602.824099998921156 ], [ 360553.952899999916553, 258581.683200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94659293, "LATITUDE": 18.35678194, "OBJECTID_1": 3848, "PARCEL_NO_": "102801030600", "Tax_Legal_": "ST PETER 3I-27 LITTLE NORTHSIDE", "Name": "OTTLEY, ATHNIEL", "Address": "BOX 3680", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.11408202699999, "SHAPE_Area": 1855.7690749000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357136.831200003623962, 258550.127099998295307 ], [ 357101.218599997460842, 258565.667599998414516 ], [ 357102.006899997591972, 258567.785000000149012 ], [ 357105.169200003147125, 258575.199200000613928 ], [ 357112.267800003290176, 258593.833500001579523 ], [ 357114.68129999935627, 258594.4864999987185 ], [ 357129.189599998295307, 258595.238499999046326 ], [ 357158.261799998581409, 258590.199099998921156 ], [ 357147.340199999511242, 258547.046700000762939 ], [ 357136.831200003623962, 258550.127099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93422181, "LATITUDE": 18.35667259, "OBJECTID_1": 4142, "PARCEL_NO_": "102802026000", "Tax_Legal_": "MISGUNST 3AC-1 GT. NORTHSIDE QTR.", "Name": "HEWITT, CHARLES & CAREY, KATHE, & ROWLES, WILLIAM", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 147500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.21008125200001, "SHAPE_Area": 2771.31337592 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358480.810199998319149, 258578.014400001615286 ], [ 358479.239000000059605, 258573.14640000090003 ], [ 358475.272100001573563, 258565.514499999582767 ], [ 358472.077399998903275, 258561.89979999884963 ], [ 358465.652099996805191, 258558.8918999992311 ], [ 358446.351000003516674, 258552.823300000280142 ], [ 358428.637299999594688, 258549.723000001162291 ], [ 358418.959700003266335, 258549.854899998754263 ], [ 358409.27139999717474, 258551.253299999982119 ], [ 358391.491200000047684, 258555.962900001555681 ], [ 358438.64639999717474, 258605.322500001639128 ], [ 358480.810199998319149, 258578.014400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901011000", "MAP": "D9-4007-T87", "PARCEL_NAM": "5D-3", "ACRE": null, "LONGITUDE": -64.93061005, "LATITUDE": 18.35654608, "OBJECTID_1": 4683, "PARCEL_NO_": "102901011000", "Tax_Legal_": "MISGUNST 5D-3 GT. NORTHSIDE", "Name": "JOLIAT, JAY", "Address": "5151 Vineyards Ct", "City": "Troy", "State": "Michigan", "Zip": 48098, "Country": "United States", "Land_Value": 100900, "Improved_V": 448200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.00943445499999, "SHAPE_Area": 2736.5070042100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358848.699100002646446, 258556.327399998903275 ], [ 358843.895400002598763, 258552.277300000190735 ], [ 358848.770999997854233, 258547.884300000965595 ], [ 358854.479900002479553, 258540.331599999219179 ], [ 358861.893200002610683, 258522.027199998497963 ], [ 358822.223899997770786, 258540.489799998700619 ], [ 358782.626400001347065, 258550.509300000965595 ], [ 358812.786200001835823, 258607.118099998682737 ], [ 358848.699100002646446, 258556.327399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602036000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96892468, "LATITUDE": 18.35661981, "OBJECTID_1": 2519, "PARCEL_NO_": "102602036000", "Tax_Legal_": "DOROTHEA 1A-21 LITTLE NORTHSIDE QTR", "Name": "PHILLIP, ALTON & LYNTHIA", "Address": "PO Box 12232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59300, "Improved_V": 556400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.81811979400001, "SHAPE_Area": 2012.5342164599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354769.754900000989437, 258500.567299999296665 ], [ 354749.384900003671646, 258525.309599999338388 ], [ 354757.039899997413158, 258573.290500000119209 ], [ 354800.846900001168251, 258542.407200001180172 ], [ 354794.504299998283386, 258529.689699999988079 ], [ 354782.506700001657009, 258518.192400000989437 ], [ 354769.754900000989437, 258500.567299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801031200", "MAP": "F9-1256-T63", "PARCEL_NAM": "3I-22", "ACRE": ".26", "LONGITUDE": -64.9456095, "LATITUDE": 18.35672646, "OBJECTID_1": 3853, "PARCEL_NO_": "102801031200", "Tax_Legal_": "ST PETER 3I-22 LITTLE NORTHSIDE", "Name": "GOLUB, ROBERT S.", "Address": "PO Box 303467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46900, "Improved_V": 292600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.04442937100001, "SHAPE_Area": 758.86649447699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357217.677199997007847, 258570.668800000101328 ], [ 357224.048699997365475, 258588.472600001841784 ], [ 357251.941500000655651, 258573.656199999153614 ], [ 357241.716499999165535, 258543.386100001633167 ], [ 357233.550899997353554, 258555.351599998772144 ], [ 357222.160099998116493, 258567.290699999779463 ], [ 357217.677199997007847, 258570.668800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801060700", "MAP": "D9-1953-T82", "PARCEL_NAM": "3A-21", "ACRE": ".501", "LONGITUDE": -64.94713552, "LATITUDE": 18.35656775, "OBJECTID_1": 4001, "PARCEL_NO_": "102801060700", "Tax_Legal_": "ST PETER 3A-21 LT. NORTHSIDE", "Name": "MARTIN, JAMES C. & GINGER B", "Address": "PO Box 306827", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57900, "Improved_V": 385000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.90000582, "SHAPE_Area": 1760.0659327200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357054.255900003015995, 258529.30970000103116 ], [ 357057.543200001120567, 258579.972699999809265 ], [ 357082.639200001955032, 258569.526299998164177 ], [ 357090.705899998545647, 258569.170200001448393 ], [ 357092.324000000953674, 258568.55009999871254 ], [ 357093.739100001752377, 258568.091499999165535 ], [ 357093.560300000011921, 258527.313299998641014 ], [ 357087.847499996423721, 258526.083700001239777 ], [ 357074.951899997889996, 258525.344900000840425 ], [ 357057.178900003433228, 258529.210200000554323 ], [ 357054.255900003015995, 258529.30970000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94618022, "LATITUDE": 18.35666081, "OBJECTID_1": 3851, "PARCEL_NO_": "102801031000", "Tax_Legal_": "ST PETER 3I-26 2 LITTLE NORTHSIDE", "Name": "OTTLEY, ATHNIEL", "Address": "BOX 3680", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.846229983, "SHAPE_Area": 2113.1217439900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357204.372599996626377, 258572.844700001180172 ], [ 357185.413099996745586, 258526.671100001782179 ], [ 357173.235699996352196, 258536.281800001859665 ], [ 357166.740299999713898, 258541.505899999290705 ], [ 357147.340199999511242, 258547.046700000762939 ], [ 357158.261799998581409, 258590.199099998921156 ], [ 357178.469899997115135, 258584.453899998217821 ], [ 357204.372599996626377, 258572.844700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801041300", "MAP": "D9-1314-T76", "PARCEL_NAM": "8-50", "ACRE": ".22", "LONGITUDE": -64.94406189, "LATITUDE": 18.3566676, "OBJECTID_1": 3882, "PARCEL_NO_": "102801041300", "Tax_Legal_": "LERKENLUND 8-50 GR NORHTSIDE QTR", "Name": "J.G. LEMEN FAMILY TRUST", "Address": "7338 Brakkeroe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41300, "Improved_V": 181800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.57209509699999, "SHAPE_Area": 1310.24705288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357418.883100003004074, 258547.993299998342991 ], [ 357414.157999999821186, 258536.736200001090765 ], [ 357407.851099997758865, 258540.735100001096725 ], [ 357396.318800002336502, 258550.108199998736382 ], [ 357392.423299998044968, 258553.274399999529123 ], [ 357380.244099996984005, 258563.096200000494719 ], [ 357372.908100001513958, 258572.324200000613928 ], [ 357368.01630000025034, 258578.616999998688698 ], [ 357365.556000001728535, 258583.451999999582767 ], [ 357365.512800000607967, 258588.517900001257658 ], [ 357377.661499999463558, 258582.284499999135733 ], [ 357393.022799998521805, 258577.555100001394749 ], [ 357402.851199999451637, 258574.580400001257658 ], [ 357426.977799996733665, 258567.278299998492002 ], [ 357418.883100003004074, 258547.993299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021600", "MAP": "F9-662-T61", "PARCEL_NAM": "5BB", "ACRE": null, "LONGITUDE": -64.93291136000001, "LATITUDE": 18.35667198, "OBJECTID_1": 4100, "PARCEL_NO_": "102802021600", "Tax_Legal_": "MISGUNST 5BB GREAT NORTHSIDE", "Name": "COHEN, P", "Address": "100 S Pointe Dr", "City": "Miami Beach", "State": "Florida", "Zip": 33139, "Country": "United States", "Land_Value": 129200, "Improved_V": 122800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.616851798, "SHAPE_Area": 2354.73510889 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358608.317299999296665, 258566.18129999935627 ], [ 358601.055100001394749, 258566.755100000649691 ], [ 358585.785499997437, 258560.719500001519918 ], [ 358572.981600001454353, 258549.215700000524521 ], [ 358565.863200001418591, 258532.903200000524521 ], [ 358564.261399999260902, 258531.623500000685453 ], [ 358561.840700000524521, 258531.814800001680851 ], [ 358560.213699996471405, 258533.490200001746416 ], [ 358556.052599996328354, 258548.654899999499321 ], [ 358554.339299999177456, 258560.462099999189377 ], [ 358552.469499997794628, 258590.633200000971556 ], [ 358553.239900000393391, 258594.861400000751019 ], [ 358554.834499999880791, 258596.985399998724461 ], [ 358561.286799997091293, 258596.827100001275539 ], [ 358609.679999999701977, 258595.534400001168251 ], [ 358608.317299999296665, 258566.18129999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801060400", "MAP": "C9-252-T80", "PARCEL_NAM": "3A-7", "ACRE": "0.54", "LONGITUDE": -64.94820996, "LATITUDE": 18.35663102, "OBJECTID_1": 3998, "PARCEL_NO_": "102801060400", "Tax_Legal_": "ST PETER 3A-7 LT. NORTHSIDE", "Name": "CLELAND, ALBERT E", "Address": "PO Box 9242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67000, "Improved_V": 450600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.30892771399999, "SHAPE_Area": 2282.6489003900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357006.805399999022484, 258544.771000001579523 ], [ 356949.48759999871254, 258532.782999999821186 ], [ 356945.029500000178814, 258536.736000001430511 ], [ 356927.108999997377396, 258557.909800000488758 ], [ 356926.286499999463558, 258559.80290000140667 ], [ 356927.004699997603893, 258570.152399998158216 ], [ 356927.798500001430511, 258571.636500000953674 ], [ 356931.790500000119209, 258576.313299998641014 ], [ 356939.819399997591972, 258580.389699999243021 ], [ 356947.886100001633167, 258580.033599998801947 ], [ 356984.308700002729893, 258564.077500000596046 ], [ 356994.034800000488758, 258558.246500000357628 ], [ 356998.9121999964118, 258553.642299998551607 ], [ 357001.350900001823902, 258551.340300001204014 ], [ 357006.805399999022484, 258544.771000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96552944, "LATITUDE": 18.35657802, "OBJECTID_1": 2788, "PARCEL_NO_": "102701011500", "Tax_Legal_": "DOROTHEA 12D LITTLE NORTHSIDE QTR", "Name": "Agnes L Broulette,Trustee, Julian, Patrick & Linda", "Address": "7959 Estate Dorothea 12D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 179900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.88024821299999, "SHAPE_Area": 1645.2229844599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355159.857299998402596, 258521.703000001609325 ], [ 355145.352700002491474, 258520.528900001198053 ], [ 355101.838799998164177, 258517.006299998611212 ], [ 355115.964000001549721, 258562.718100000172853 ], [ 355143.515299998223782, 258546.900499999523163 ], [ 355160.532399997115135, 258537.118400000035763 ], [ 355159.857299998402596, 258521.703000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96479573000001, "LATITUDE": 18.35650178, "OBJECTID_1": 2901, "PARCEL_NO_": "102701031000", "Tax_Legal_": "DOROTHEA 4-1 LITTLE NORTHSIDE", "Name": "BRYAN, CARL & ELIZABETH", "Address": "#3C DOROTHEA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.147191883, "SHAPE_Area": 1905.8968751899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355239.822499997913837, 258505.892200000584126 ], [ 355212.377300001680851, 258509.25620000064373 ], [ 355205.919600002467632, 258510.047699999064207 ], [ 355201.056599996984005, 258512.963199999183416 ], [ 355171.876500003039837, 258530.667300000786781 ], [ 355187.731200002133846, 258562.672200001776218 ], [ 355191.017599999904633, 258555.521999999880791 ], [ 355199.976899996399879, 258545.040600001811981 ], [ 355209.710199996829033, 258538.365299999713898 ], [ 355218.597599998116493, 258536.327100001275539 ], [ 355229.117499999701977, 258531.980200000107288 ], [ 355238.863300003111362, 258523.827300000935793 ], [ 355244.572300001978874, 258516.274700000882149 ], [ 355249.50900000333786, 258504.704900000244379 ], [ 355239.822499997913837, 258505.892200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001011300", "MAP": "A9-170-T72", "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.91074645, "LATITUDE": 18.35625554, "OBJECTID_1": 5108, "PARCEL_NO_": "103001011300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL REM OF 8 GR NORTHSIDE QTR", "Name": "MILLIN, AGNES", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 176400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.29001430199997, "SHAPE_Area": 5536.7331473699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360918.281300000846386, 258504.660599999129772 ], [ 360908.156499996781349, 258491.999400001019239 ], [ 360906.162699997425079, 258492.296799998730421 ], [ 360902.07039999961853, 258493.358300000429153 ], [ 360893.99379999935627, 258495.532800000160933 ], [ 360886.506800003349781, 258498.184399999678135 ], [ 360880.052100002765656, 258500.3885000012815 ], [ 360871.932599999010563, 258503.511399999260902 ], [ 360867.022799998521805, 258505.570300001651049 ], [ 360863.737899996340275, 258506.855700001120567 ], [ 360876.298500001430511, 258524.114799998700619 ], [ 360880.968000002205372, 258530.530799999833107 ], [ 360934.320200003683567, 258609.705299999564886 ], [ 360959.529799997806549, 258584.791499998420477 ], [ 360974.921700000762939, 258576.473799999803305 ], [ 360970.135999999940395, 258570.312899999320507 ], [ 360936.630500003695488, 258527.819899998605251 ], [ 360924.661700002849102, 258512.94539999961853 ], [ 360918.281300000846386, 258504.660599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801024100", "MAP": null, "PARCEL_NAM": "11C-4", "ACRE": null, "LONGITUDE": -64.94103214, "LATITUDE": 18.35663399, "OBJECTID_1": 3814, "PARCEL_NO_": "102801024100", "Tax_Legal_": "11C-4 LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "SIMMONDS, CLAUDE & LEONA", "Address": "PO Box 302957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60100, "Improved_V": 321400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.135642444, "SHAPE_Area": 986.008807219 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357739.839599996805191, 258568.361299999058247 ], [ 357729.575199998915195, 258542.734999999403954 ], [ 357696.403099998831749, 258555.76240000128746 ], [ 357712.29730000346899, 258583.123500000685453 ], [ 357739.839599996805191, 258568.361299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001012800", "MAP": "A9-170-T72", "PARCEL_NAM": "8E", "ACRE": null, "LONGITUDE": -64.9122123, "LATITUDE": 18.35631929, "OBJECTID_1": 5117, "PARCEL_NO_": "103001012800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 8E GR NORTHSIDE", "Name": "PAUL, LORNA & LAWRENCE", "Address": "920 Theiriot Ave", "City": "Bronx", "State": "New York", "Zip": 10473, "Country": "United States", "Land_Value": 106600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.48418616200001, "SHAPE_Area": 5984.2679841099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360820.11710000038147, 258542.734700001776218 ], [ 360789.537399999797344, 258498.7483000010252 ], [ 360786.877499997615814, 258500.629799999296665 ], [ 360777.954199999570847, 258506.889600001275539 ], [ 360713.85809999704361, 258553.016600001603365 ], [ 360708.403200000524521, 258556.958299998193979 ], [ 360729.03320000320673, 258591.009199999272823 ], [ 360737.50959999859333, 258604.999899998307228 ], [ 360800.012999996542931, 258567.864999998360872 ], [ 360818.5016999989748, 258544.754000000655651 ], [ 360820.11710000038147, 258542.734700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96959053, "LATITUDE": 18.3565489, "OBJECTID_1": 2469, "PARCEL_NO_": "102602030700", "Tax_Legal_": "1A-12 DOROTHEA LITTLE NORTHSIDE", "Name": "BEERS, LUISA & CHRISTINA BRUNT", "Address": "PO Box 1628", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53200, "Improved_V": 132200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.588033782, "SHAPE_Area": 1239.6219525399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354700.740000002086163, 258556.153299998492002 ], [ 354727.441899999976158, 258545.394999999552965 ], [ 354692.36150000244379, 258498.456199999898672 ], [ 354684.230099998414516, 258506.411200001835823 ], [ 354676.904899999499321, 258514.372800000011921 ], [ 354699.215499997138977, 258545.7972999997437 ], [ 354700.740000002086163, 258556.153299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802030700", "MAP": "D9-430-T64", "PARCEL_NAM": "6D", "ACRE": "1.93", "LONGITUDE": -64.93907484, "LATITUDE": 18.35615426, "OBJECTID_1": 4166, "PARCEL_NO_": "102802030700", "Tax_Legal_": "LERKENLUND 6D 9 GR NORTHSIDE QTR", "Name": "PARZIALE, ANNE J. & P. THOMPSON", "Address": "PO Box 8073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 219600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 377.25390983699998, "SHAPE_Area": 8119.5534516199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357986.506499998271465, 258494.002500001341105 ], [ 357969.415600001811981, 258458.076200000941753 ], [ 357963.320500001311302, 258459.999499998986721 ], [ 357959.359200000762939, 258461.651900000870228 ], [ 357926.095299996435642, 258475.526900000870228 ], [ 357893.736699998378754, 258487.716600000858307 ], [ 357892.118699997663498, 258488.336599998176098 ], [ 357856.447999998927116, 258507.191399998962879 ], [ 357881.725599996745586, 258564.735399998724461 ], [ 357887.560400001704693, 258561.596500001847744 ], [ 357997.670000001788139, 258517.468899998813868 ], [ 357987.492600001394749, 258496.075300000607967 ], [ 357986.506499998271465, 258494.002500001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93757427, "LATITUDE": 18.3566592, "OBJECTID_1": 4123, "PARCEL_NO_": "102802024200", "Tax_Legal_": "LERKENLUND 4AE GREAT NORTHSIDE", "Name": "FONDA, NORMA & BERRY, NORMIL J. & MARY", "Address": "2122 Phonecia Ct", "City": "Orlando", "State": "Florida", "Zip": 32837, "Country": "United States", "Land_Value": 40600, "Improved_V": 110000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.953010721, "SHAPE_Area": 517.93945432500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358103.515299998223782, 258567.960299998521805 ], [ 358096.398800000548363, 258551.436799999326468 ], [ 358058.261100001633167, 258579.411200001835823 ], [ 358058.2449000030756, 258581.310899998992682 ], [ 358059.852200001478195, 258581.957299999892712 ], [ 358071.171099998056889, 258578.461399998515844 ], [ 358084.903599999845028, 258575.618400000035763 ], [ 358092.990099996328354, 258572.940400000661612 ], [ 358103.515299998223782, 258567.960299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604013200", "MAP": "A9-398-T92", "PARCEL_NAM": "21-6", "ACRE": ".50", "LONGITUDE": -64.96804972, "LATITUDE": 18.35655781, "OBJECTID_1": 2677, "PARCEL_NO_": "102604013200", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 6. LITTLE NORTHSIDE", "Name": "HEDRINGTON, IVERINE", "Address": "PO Box 303661", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.175803465, "SHAPE_Area": 2025.6377709799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354845.087999999523163, 258555.223799999803305 ], [ 354871.766400001943111, 258547.209499999880791 ], [ 354899.312299996614456, 258532.025100000202656 ], [ 354886.646899998188019, 258504.268199998885393 ], [ 354875.30629999935627, 258510.297100000083447 ], [ 354868.022600002586842, 258513.403900001198053 ], [ 354841.340499997138977, 258521.840399999171495 ], [ 354827.595399998128414, 258526.160799998790026 ], [ 354825.972000002861023, 258527.414099998772144 ], [ 354825.954000003635883, 258529.524900000542402 ], [ 354845.087999999523163, 258555.223799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96104124, "LATITUDE": 18.35658749, "OBJECTID_1": 2904, "PARCEL_NO_": "102701031300", "Tax_Legal_": "DOROTHEA 4-4 LITTLE NORTHSIDE", "Name": "GWENDOLYN E BROWN REVOC LIV TRUST", "Address": "P.O. BOX 4380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37700, "Improved_V": 318100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.954322121, "SHAPE_Area": 868.14216968799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355586.279700003564358, 258538.914200000464916 ], [ 355597.39190000295639, 258559.692299999296665 ], [ 355625.726099997758865, 258546.625300001353025 ], [ 355614.561800003051758, 258531.968499999493361 ], [ 355605.019100002944469, 258516.269499998539686 ], [ 355586.279700003564358, 258538.914200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94581767, "LATITUDE": 18.35642273, "OBJECTID_1": 3852, "PARCEL_NO_": "102801031100", "Tax_Legal_": "ST PETER 3I-25 LITTLE NORTHSIDE", "Name": "GOLUB, ROBERT S.", "Address": "PO Box 303467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.41316204399999, "SHAPE_Area": 2227.4370602700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357239.364100001752377, 258535.556400001049042 ], [ 357226.590499997138977, 258498.728999998420477 ], [ 357205.696800000965595, 258512.060600001364946 ], [ 357185.413099996745586, 258526.671100001782179 ], [ 357204.372599996626377, 258572.844700001180172 ], [ 357214.919399999082088, 258565.331599999219179 ], [ 357226.301299996674061, 258554.447900000959635 ], [ 357233.635399997234344, 258545.430900000035763 ], [ 357239.364100001752377, 258535.556400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003052200", "MAP": "D9-9243-T018", "PARCEL_NAM": "10B-1", "ACRE": ".14", "LONGITUDE": -64.91008052, "LATITUDE": 18.35650171, "OBJECTID_1": 5929, "PARCEL_NO_": "103003052200", "Tax_Legal_": "10B REM. & 10B-1 & 1/8 Int ROW 10REM ST. JOSEPH & ROSENDAL N0. 4 GREAT NORTHSIDE QUARTER", "Name": "EDWIN VALDEZ PAREDES", "Address": "PO Box 305641", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.955120384, "SHAPE_Area": 820.59092346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361010.229299999773502, 258578.99549999833107 ], [ 361010.162100002169609, 258578.923900000751019 ], [ 360991.508900001645088, 258554.58219999819994 ], [ 360991.419799998402596, 258554.403900001198053 ], [ 360987.178199999034405, 258557.575699999928474 ], [ 360970.135999999940395, 258570.312899999320507 ], [ 360974.921700000762939, 258576.473799999803305 ], [ 360990.085199996829033, 258594.962999999523163 ], [ 361010.229299999773502, 258578.99549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011100", "MAP": "D9-8827-T013", "PARCEL_NAM": "4-5", "ACRE": ".57", "LONGITUDE": -64.9615, "LATITUDE": 18.35650218, "OBJECTID_1": 3187, "PARCEL_NO_": "102703011100", "Tax_Legal_": "DOROTHEA 4-5 LT.NORTHSIDE", "Name": "PETTY, NELSON M. JR. & LINDESAY, CORINNE M.", "Address": "PO Box 302069", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.633442645, "SHAPE_Area": 1779.5162749000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355521.929399996995926, 258520.233500000089407 ], [ 355540.161700002849102, 258557.113000001758337 ], [ 355557.166199997067451, 258548.808400001376867 ], [ 355564.453500002622604, 258545.279500000178814 ], [ 355574.190399996936321, 258538.182000000029802 ], [ 355597.805500000715256, 258511.144200000911951 ], [ 355592.98200000077486, 258509.416000001132488 ], [ 355589.756700001657009, 258509.389600001275539 ], [ 355576.816200003027916, 258513.927700001746416 ], [ 355563.89360000193119, 258516.355099998414516 ], [ 355534.049199998378754, 258517.377399999648333 ], [ 355521.929399996995926, 258520.233500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96728099000001, "LATITUDE": 18.35640201, "OBJECTID_1": 2678, "PARCEL_NO_": "102604013300", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 8. LITTLE NORTHSIDE", "Name": "THOMAS, DUANE L.", "Address": "PO Box 6162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 84200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.90459058299999, "SHAPE_Area": 2287.4181638800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354963.097300000488758, 258522.414700001478195 ], [ 354986.866999998688698, 258477.22410000115633 ], [ 354956.945299997925758, 258487.322799999266863 ], [ 354940.734499998390675, 258497.1114999987185 ], [ 354907.41499999910593, 258527.447399999946356 ], [ 354924.954300001263618, 258551.022300001233816 ], [ 354950.109999999403954, 258532.440900001674891 ], [ 354951.785499997437, 258525.066300000995398 ], [ 354957.462099999189377, 258521.313099998980761 ], [ 354959.062100000679493, 258522.803899999707937 ], [ 354963.097300000488758, 258522.414700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801053200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94690287, "LATITUDE": 18.35672447, "OBJECTID_1": 3944, "PARCEL_NO_": "102801053200", "Tax_Legal_": "3H-24 ESTATE ST.PETER No.2 LITTLE NORTHSIDE QTR.", "Name": "SEABROOK, JULIETTE T.", "Address": "220 Third Ave", "City": "Charleston", "State": "South Carolina", "Zip": 29403, "Country": "United States", "Land_Value": 38200, "Improved_V": 299500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 21.3224722603, "SHAPE_Area": 10.5528503993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357092.324000000953674, 258568.55009999871254 ], [ 357102.006899997591972, 258567.785000000149012 ], [ 357101.218599997460842, 258565.667599998414516 ], [ 357092.324000000953674, 258568.55009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604013400", "MAP": "D9-7544-T005", "PARCEL_NAM": "21-9", "ACRE": ".527", "LONGITUDE": -64.96685976000001, "LATITUDE": 18.35644052, "OBJECTID_1": 2679, "PARCEL_NO_": "102604013400", "Tax_Legal_": "DOROTHEA PLOT9 PARCEL21 & 22-B-1 LT. NORTHSIDE", "Name": "BOURNE, STACY A", "Address": "2369 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85800, "Improved_V": 267400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.69449587899999, "SHAPE_Area": 2101.3356462299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355018.412000000476837, 258534.339699998497963 ], [ 355006.663800001144409, 258509.737199999392033 ], [ 354986.866999998688698, 258477.22410000115633 ], [ 354963.097300000488758, 258522.414700001478195 ], [ 354969.477700002491474, 258530.699599999934435 ], [ 354984.626800000667572, 258550.877399999648333 ], [ 355018.412000000476837, 258534.339699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91467109, "LATITUDE": 18.3565437, "OBJECTID_1": 5110, "PARCEL_NO_": "103001011500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9AC GR NORTHSIDE QTR", "Name": "DE JONGH,JR.,ROBERT C. &, JEAN,ROLAND-JOINT TRUSTEES", "Address": "2200 Estate Staabi", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30800, "Improved_V": 232400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.56103354300001, "SHAPE_Area": 1240.47152669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360532.956399999558926, 258585.311000000685453 ], [ 360517.866599999368191, 258558.167500000447035 ], [ 360481.546599999070168, 258562.092099998146296 ], [ 360488.539099998772144, 258593.180100001394749 ], [ 360532.956399999558926, 258585.311000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96930439, "LATITUDE": 18.3563135, "OBJECTID_1": 2669, "PARCEL_NO_": "102604012400", "Tax_Legal_": "DOROTHEA 1A-15 LT. NORTHSIDE QTR.", "Name": "MASSEY, ROBERT L", "Address": "P.O. BOX 4643", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 100600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.03879713800001, "SHAPE_Area": 3403.7182956500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354738.623400002717972, 258463.371100001037121 ], [ 354717.558600001037121, 258475.019999999552965 ], [ 354707.001000002026558, 258483.799499999731779 ], [ 354692.36150000244379, 258498.456199999898672 ], [ 354727.441899999976158, 258545.394999999552965 ], [ 354733.913900002837181, 258542.914799999445677 ], [ 354749.384900003671646, 258525.309599999338388 ], [ 354769.754900000989437, 258500.567299999296665 ], [ 354738.623400002717972, 258463.371100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801041400", "MAP": "F9-1220-T63", "PARCEL_NAM": "8-49", "ACRE": ".16", "LONGITUDE": -64.9437776, "LATITUDE": 18.35654057, "OBJECTID_1": 3883, "PARCEL_NO_": "102801041400", "Tax_Legal_": "LERKENLUND 8-49 GR NORTHSIDE", "Name": "WOOLCOT, BARBARA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18600, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.977139644, "SHAPE_Area": 580.12044585700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357441.321599997580051, 258542.622900001704693 ], [ 357434.548770035966299, 258538.7214376500051 ], [ 357427.422220795822795, 258535.511308353830827 ], [ 357420.012299999594688, 258533.02419999986887 ], [ 357414.157999999821186, 258536.736200001090765 ], [ 357418.883100003004074, 258547.993299998342991 ], [ 357426.977799996733665, 258567.278299998492002 ], [ 357432.636399999260902, 258565.635899998247623 ], [ 357438.277000002563, 258566.104200001806021 ], [ 357440.685099996626377, 258567.390500001609325 ], [ 357439.615599997341633, 258555.991200000047684 ], [ 357438.569899998605251, 258544.845400001853704 ], [ 357441.321599997580051, 258542.622900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003010500", "MAP": null, "PARCEL_NAM": "9H", "ACRE": "4.00", "LONGITUDE": -64.91302495, "LATITUDE": 18.35599001, "OBJECTID_1": 5596, "PARCEL_NO_": "103003010500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9H&9J GR NORTHSIDE", "Name": "TODMAN, HENRITA", "Address": "PO Box 668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 250700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 469.010162718, "SHAPE_Area": 13328.0879138 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360777.954199999570847, 258506.889600001275539 ], [ 360655.946699999272823, 258441.085299998521805 ], [ 360624.101300001144409, 258487.687399998307228 ], [ 360608.6266999989748, 258505.714800000190735 ], [ 360631.482900001108646, 258567.752300001680851 ], [ 360658.685400001704693, 258592.883900001645088 ], [ 360713.85809999704361, 258553.016600001603365 ], [ 360777.954199999570847, 258506.889600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96336793, "LATITUDE": 18.35643622, "OBJECTID_1": 2914, "PARCEL_NO_": "102701032400", "Tax_Legal_": "DOROTHEA 3T LT. NORTHSIDE", "Name": "RYKE CLARK, CHARLENE", "Address": "123 Fourth Pl", "City": "Bogota", "State": "New Jersey", "Zip": 7603, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.10175544200001, "SHAPE_Area": 1816.5337154399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355338.641099996864796, 258548.708599999547005 ], [ 355379.953599996864796, 258526.670800000429153 ], [ 355404.234700001776218, 258516.103799998760223 ], [ 355405.059000000357628, 258513.999600000679493 ], [ 355400.246299996972084, 258511.004900000989437 ], [ 355393.011100001633167, 258508.412599999457598 ], [ 355356.732400000095367, 258507.482400000095367 ], [ 355339.810599997639656, 258506.077300000935793 ], [ 355326.124899998307228, 258503.432199999690056 ], [ 355338.641099996864796, 258548.708599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95980823, "LATITUDE": 18.35641212, "OBJECTID_1": 3201, "PARCEL_NO_": "102703012300", "Tax_Legal_": "7 DOROTHEA NO.6 LITTLE NORTHSIDE QTR", "Name": "LAPLACE, STEPHEN & ELIZABETH P.", "Address": "PO Box 10928", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013928, "Country": "United States", "Land_Value": 57100, "Improved_V": 213600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.75794054100001, "SHAPE_Area": 1625.39590426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355751.766199998557568, 258517.681600000709295 ], [ 355752.007100000977516, 258489.396999999880791 ], [ 355724.446900002658367, 258506.270100001245737 ], [ 355720.38289999961853, 258510.036499999463558 ], [ 355711.434399999678135, 258519.251400001347065 ], [ 355707.341700002551079, 258526.394999999552965 ], [ 355705.689499996602535, 258531.025600001215935 ], [ 355752.297399997711182, 258549.983300000429153 ], [ 355751.766199998557568, 258517.681600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93735152000001, "LATITUDE": 18.35653944, "OBJECTID_1": 4124, "PARCEL_NO_": "102802024300", "Tax_Legal_": "3AH LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BERRY, ANITA M & EVELYN T GREAUX", "Address": "PO Box 305516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35700, "Improved_V": 134900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.995999212200005, "SHAPE_Area": 357.4348335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358120.516199998557568, 258560.077899999916553 ], [ 358111.002300001680851, 258541.001600001007318 ], [ 358096.398800000548363, 258551.436799999326468 ], [ 358103.515299998223782, 258567.960299998521805 ], [ 358120.516199998557568, 258560.077899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91444363, "LATITUDE": 18.356346, "OBJECTID_1": 5592, "PARCEL_NO_": "103003010100", "Tax_Legal_": "9A ST JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR", "Name": "BRANFORD & OTHERS, LORRAINE INNIS", "Address": "6109 St Joseph and Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 243400, "Improved_V": 103700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.05983597699998, "SHAPE_Area": 3676.3903156800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360591.113399997353554, 258573.754700001329184 ], [ 360535.108499996364117, 258522.000599998980761 ], [ 360512.326700001955032, 258545.878800000995398 ], [ 360482.721500001847744, 258518.827599998563528 ], [ 360474.620600000023842, 258523.194200001657009 ], [ 360472.991800002753735, 258525.080800000578165 ], [ 360472.957699999213219, 258529.091299999505281 ], [ 360481.546599999070168, 258562.092099998146296 ], [ 360517.866599999368191, 258558.167500000447035 ], [ 360532.956399999558926, 258585.311000000685453 ], [ 360553.952899999916553, 258581.683200001716614 ], [ 360591.113399997353554, 258573.754700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704053000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95152353, "LATITUDE": 18.35644188, "OBJECTID_1": 3646, "PARCEL_NO_": "102704053000", "Tax_Legal_": "10-2-14 LILLIENDAHL&MARIENHOJ LITTLE NORTHSIDE QTR.", "Name": "MC LAUGHLIN, FRANK", "Address": "PO Box 1623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41000, "Improved_V": 234400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.969203706, "SHAPE_Area": 2246.4814027900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356640.437600001692772, 258511.445000000298023 ], [ 356609.023800000548363, 258507.388199999928474 ], [ 356608.203100003302097, 258509.070199999958277 ], [ 356603.340000003576279, 258511.985700000077486 ], [ 356596.882399998605251, 258512.777199998497963 ], [ 356593.667900003492832, 258511.484400000423193 ], [ 356573.964000001549721, 258552.697399999946356 ], [ 356586.866700001060963, 258552.592000000178814 ], [ 356590.898299999535084, 258552.625 ], [ 356627.992299996316433, 258552.506400000303984 ], [ 356632.023800000548363, 258552.53940000012517 ], [ 356637.851400002837181, 258531.055500000715256 ], [ 356640.437600001692772, 258511.445000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91804032, "LATITUDE": 18.3563214, "OBJECTID_1": 4694, "PARCEL_NO_": "102902010700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5A-2 &3 GREAT NORTHSIDE QTR", "Name": "BUDSAN, THYRA E. & OTHERS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48500, "Improved_V": 158100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.894015551, "SHAPE_Area": 1418.9231014100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360136.525799997150898, 258564.372400000691414 ], [ 360145.59570000320673, 258562.229600001126528 ], [ 360149.939000003039837, 258578.877300001680851 ], [ 360163.713799998164177, 258576.589400000870228 ], [ 360163.270700000226498, 258533.944899998605251 ], [ 360156.942500002682209, 258519.538699999451637 ], [ 360128.624499998986721, 258530.706000000238419 ], [ 360130.186800003051758, 258536.629399999976158 ], [ 360136.525799997150898, 258564.372400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102703011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96362485, "LATITUDE": 18.35636824, "OBJECTID_1": 3186, "PARCEL_NO_": "102703011000", "Tax_Legal_": "3-1,-2,-3,3-H-1,-2&3-4 DOROTHEA LITTLE NORTHSIDE QTR", "Name": "HEIRS OF JOHN JEROME BRYAN", "Address": "EST.DOROTHEA #3C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 460.18626138799999, "SHAPE_Area": 1634.50581167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355326.124899998307228, 258503.432199999690056 ], [ 355339.810599997639656, 258506.077300000935793 ], [ 355356.732400000095367, 258507.482400000095367 ], [ 355393.011100001633167, 258508.412599999457598 ], [ 355400.246299996972084, 258511.004900000989437 ], [ 355405.059000000357628, 258513.999600000679493 ], [ 355417.871899999678135, 258524.448100000619888 ], [ 355422.688199996948242, 258527.020599998533726 ], [ 355432.288400001823902, 258535.96510000154376 ], [ 355432.349600002169609, 258528.788400001823902 ], [ 355435.605400003492832, 258525.226500000804663 ], [ 355405.125600002706051, 258506.189699999988079 ], [ 355397.893899999558926, 258503.175200000405312 ], [ 355393.063199996948242, 258502.291299998760223 ], [ 355368.875699996948242, 258501.882199998944998 ], [ 355326.175300002098083, 258497.521999999880791 ], [ 355310.849899999797344, 258498.029800001531839 ], [ 355298.722900003194809, 258501.730200000107288 ], [ 355293.05349999666214, 258504.63910000026226 ], [ 355286.554499998688698, 258510.285500001162291 ], [ 355274.33389999717474, 258524.962000001221895 ], [ 355271.088899999856949, 258527.257500000298023 ], [ 355268.673500001430511, 258526.815499998629093 ], [ 355262.420800000429153, 258503.544100001454353 ], [ 355252.737899996340275, 258504.309200000017881 ], [ 355255.885799996554852, 258513.412000000476837 ], [ 355258.972599998116493, 258529.691399998962879 ], [ 355262.131300002336502, 258537.527800001204014 ], [ 355266.945799998939037, 258540.3114 ], [ 355271.790899999439716, 258539.506700001657009 ], [ 355274.229599997401237, 258537.204599998891354 ], [ 355283.183600001037121, 258527.356499999761581 ], [ 355288.912299998104572, 258517.48200000077486 ], [ 355298.65990000218153, 258509.118000000715256 ], [ 355310.794200003147125, 258504.573300000280142 ], [ 355326.124899998307228, 258503.432199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012500", "MAP": "G9-1703-T70", "PARCEL_NAM": "6g", "ACRE": ".47", "LONGITUDE": -64.93367405, "LATITUDE": 18.35569631, "OBJECTID_1": 4440, "PARCEL_NO_": "102804012500", "Tax_Legal_": "MISGUNST 6G GR NORTHSIDE QTR", "Name": "FISHER, TYLER & ANNALISA", "Address": "20721 Goshawk Ln", "City": "Huntington Beach", "State": "California", "Zip": 92646, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.39565245, "SHAPE_Area": 2185.8202995299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358517.372699998319149, 258475.4662000015378 ], [ 358518.851800002157688, 258466.657200001180172 ], [ 358524.776500001549721, 258433.775100000202656 ], [ 358526.462899997830391, 258425.134100001305342 ], [ 358526.763199999928474, 258423.423700001090765 ], [ 358521.581699997186661, 258422.651299998164177 ], [ 358519.904500000178814, 258424.233500000089407 ], [ 358484.523500002920628, 258457.6114999987185 ], [ 358479.504000000655651, 258462.346700001507998 ], [ 358463.66160000115633, 258477.292199999094009 ], [ 358465.522299997508526, 258481.424899999052286 ], [ 358474.1891999989748, 258500.674699999392033 ], [ 358517.372699998319149, 258475.4662000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96508279, "LATITUDE": 18.35633101, "OBJECTID_1": 3179, "PARCEL_NO_": "102703010200", "Tax_Legal_": "DOROTHEA 22H LT. NORTHSIDE", "Name": "SWAN, JEREMY", "Address": "PO Box 825", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.95062291100001, "SHAPE_Area": 1484.29235361 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355156.899999998509884, 258490.225900001823902 ], [ 355159.857299998402596, 258521.703000001609325 ], [ 355160.532399997115135, 258537.118400000035763 ], [ 355171.876500003039837, 258530.667300000786781 ], [ 355201.056599996984005, 258512.963199999183416 ], [ 355201.24719999730587, 258490.588899999856949 ], [ 355156.899999998509884, 258490.225900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96223495, "LATITUDE": 18.35632672, "OBJECTID_1": 3247, "PARCEL_NO_": "102703017000", "Tax_Legal_": "DOROTHEA 3-S LT. NORTHSIDE", "Name": "LEDEE,SYLVIAN R. &, OMAR H.,CO-TRUSTEES", "Address": "7946 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.856857112, "SHAPE_Area": 2975.3066800699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355515.512999996542931, 258516.170200001448393 ], [ 355488.512000001966953, 258467.397700000554323 ], [ 355479.597599998116493, 258472.602000001817942 ], [ 355472.274300001561642, 258480.352600000798702 ], [ 355461.6537000015378, 258496.519900001585484 ], [ 355453.4324000030756, 258515.028799999505281 ], [ 355438.79110000282526, 258529.896600000560284 ], [ 355437.952399998903275, 258533.689399998635054 ], [ 355439.546999998390675, 258535.813400000333786 ], [ 355445.970600001513958, 258539.032400000840425 ], [ 355455.640900000929832, 258539.744800001382828 ], [ 355470.161700002849102, 258539.019299998879433 ], [ 355487.938400000333786, 258534.731800001114607 ], [ 355492.799599997699261, 258532.027399998158216 ], [ 355504.982400000095367, 258521.783500000834465 ], [ 355515.512999996542931, 258516.170200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93720316, "LATITUDE": 18.35646048, "OBJECTID_1": 4125, "PARCEL_NO_": "102802024400", "Tax_Legal_": "3AJ LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BRYAN, RONNIE,LEON & LEAYLE", "Address": "P O BOX 2621", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.170044836000002, "SHAPE_Area": 404.413330546 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358137.511699996888638, 258552.828699998557568 ], [ 358125.595100000500679, 258531.832899998873472 ], [ 358111.002300001680851, 258541.001600001007318 ], [ 358120.516199998557568, 258560.077899999916553 ], [ 358137.511699996888638, 258552.828699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604013100", "MAP": "A9-398-T92", "PARCEL_NAM": "21-5", "ACRE": ".50", "LONGITUDE": -64.96753073, "LATITUDE": 18.35623742, "OBJECTID_1": 2676, "PARCEL_NO_": "102604013100", "Tax_Legal_": "DOROTHEA PARCEL 21, LOT 5 LITTLE NORTHSIDE", "Name": "NIELSEN, PETER C. & FEDORA CREQUE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57900, "Improved_V": 420700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.79270910400001, "SHAPE_Area": 2146.9955261599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354956.945299997925758, 258487.322799999266863 ], [ 354924.105899997055531, 258461.300599999725819 ], [ 354920.832099996507168, 258466.973400000482798 ], [ 354916.791500002145767, 258467.995700001716614 ], [ 354915.166299998760223, 258469.460099998861551 ], [ 354906.142200000584126, 258487.540300000458956 ], [ 354895.561200000345707, 258499.063799999654293 ], [ 354886.646899998188019, 258504.268199998885393 ], [ 354899.312299996614456, 258532.025100000202656 ], [ 354907.41499999910593, 258527.447399999946356 ], [ 354940.734499998390675, 258497.1114999987185 ], [ 354956.945299997925758, 258487.322799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93407666, "LATITUDE": 18.35624737, "OBJECTID_1": 4446, "PARCEL_NO_": "102804013100", "Tax_Legal_": "MISGUNST 3AC-3 GR NORTHSIDE QTR", "Name": "QUESTEL, ANNE", "Address": "56 William St", "City": "Bohemia", "State": "New York", "Zip": 11716, "Country": "United States", "Land_Value": 123700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 330.30227797200001, "SHAPE_Area": 4283.42564296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358501.07769999653101, 258565.303599998354912 ], [ 358476.585500001907349, 258505.996899999678135 ], [ 358465.522299997508526, 258481.424899999052286 ], [ 358461.164499998092651, 258471.745999999344349 ], [ 358448.54619999974966, 258484.447000000625849 ], [ 358391.546899996697903, 258549.41950000077486 ], [ 358407.710900001227856, 258545.11879999935627 ], [ 358419.013700000941753, 258543.52250000089407 ], [ 358428.691200003027916, 258543.390700001269579 ], [ 358439.164300002157688, 258544.531800001859665 ], [ 358448.82209999859333, 258546.721799999475479 ], [ 358468.121399998664856, 258553.001499999314547 ], [ 358475.347699999809265, 258556.64919999986887 ], [ 358480.144199997186661, 258561.543600000441074 ], [ 358487.294900000095367, 258574.056699998676777 ], [ 358501.07769999653101, 258565.303599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016700", "MAP": "D9-2112-T82", "PARCEL_NAM": "7E-6", "ACRE": ".46", "LONGITUDE": -64.93770885000001, "LATITUDE": 18.35624448, "OBJECTID_1": 4480, "PARCEL_NO_": "102804016700", "Tax_Legal_": "LERKENLUND 7E-6 GT. NORTHSIDE", "Name": "QUERRARD, WILLIAM & J. B", "Address": "#1 EST. LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.896169152, "SHAPE_Area": 1552.3740296000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358064.402400001883507, 258489.217399999499321 ], [ 358056.850000001490116, 258498.373599998652935 ], [ 358046.85980000346899, 258501.191700000315905 ], [ 358072.436300002038479, 258557.406399998813868 ], [ 358093.21169999986887, 258542.356800001114607 ], [ 358070.064099997282028, 258487.686500001698732 ], [ 358064.402400001883507, 258489.217399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803031300", "MAP": "C9-252-T80", "PARCEL_NAM": "3A-3", "ACRE": "0.53", "LONGITUDE": -64.94860535, "LATITUDE": 18.35638269, "OBJECTID_1": 4370, "PARCEL_NO_": "102803031300", "Tax_Legal_": "3A-3 ST PETER LITTLE NORTHSIDE QUARTER", "Name": "QUETEL (LIFE ESTATE), ELIZABETH A", "Address": "PO Box 304542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79800, "Improved_V": 430000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.120634817, "SHAPE_Area": 1702.72091273 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356953.26349999755621, 258516.749499998986721 ], [ 356904.177299998700619, 258504.73759999871254 ], [ 356894.213899999856949, 258538.431099999696016 ], [ 356892.606799997389317, 258545.178899999707937 ], [ 356921.792900003492832, 258552.569899998605251 ], [ 356925.584499999880791, 258547.553700000047684 ], [ 356927.216899998486042, 258545.245099999010563 ], [ 356941.057300001382828, 258529.737399999052286 ], [ 356952.424800001084805, 258520.542300000786781 ], [ 356953.26349999755621, 258516.749499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004054100", "MAP": null, "PARCEL_NAM": "B-1-3", "ACRE": null, "LONGITUDE": -64.90758469, "LATITUDE": 18.35623401, "OBJECTID_1": 6321, "PARCEL_NO_": "103004054100", "Tax_Legal_": "B1-3 LOVENLUND No.2 GREAT NORTHSIDE QUARTER", "Name": "THE MANDARIN GROUP LLC", "Address": "PO Box 9020020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8020802, "Country": "United States", "Land_Value": 68100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.24578782200001, "SHAPE_Area": 2437.45486544 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361292.023699998855591, 258553.104600001126528 ], [ 361283.98929999768734, 258549.661299999803305 ], [ 361275.972999997437, 258544.107299998402596 ], [ 361280.045900002121925, 258539.285500001162291 ], [ 361239.148699998855591, 258512.564100001007318 ], [ 361226.937100000679493, 258526.185199998319149 ], [ 361227.53490000218153, 258550.676899999380112 ], [ 361259.519400000572205, 258582.391699999570847 ], [ 361292.023699998855591, 258553.104600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012300", "MAP": "D9-3232-T85", "PARCEL_NAM": "5H-1", "ACRE": ".55", "LONGITUDE": -64.93249361, "LATITUDE": 18.3561782, "OBJECTID_1": 4438, "PARCEL_NO_": "102804012300", "Tax_Legal_": "MISGUNST ESTATE 5H-1&5J-B No.6 GREAT NORTHSIDE QTR.", "Name": "JUDITH L MARTINO LIVING TRUST", "Address": "PO Box 6515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 99400, "Improved_V": 324500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.51236694100001, "SHAPE_Area": 2378.9625371799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358632.25959999859333, 258500.727099999785423 ], [ 358640.671599999070168, 258459.843800000846386 ], [ 358634.165299996733665, 258466.334499999880791 ], [ 358617.054700002074242, 258487.092700000852346 ], [ 358603.295800000429153, 258509.903999999165535 ], [ 358599.298600003123283, 258516.531199999153614 ], [ 358598.504799999296665, 258519.864999998360872 ], [ 358598.028599999845028, 258522.88120000064373 ], [ 358598.504799999296665, 258527.484999999403954 ], [ 358599.987300001084805, 258530.951999999582767 ], [ 358602.156099997460842, 258535.105000000447035 ], [ 358617.657700002193451, 258558.750599998980761 ], [ 358641.460600003600121, 258556.531100001186132 ], [ 358632.25959999859333, 258500.727099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017100", "MAP": "D9-3232-T85", "PARCEL_NAM": "5H-2", "ACRE": ".50", "LONGITUDE": -64.93277732, "LATITUDE": 18.35626716, "OBJECTID_1": 4483, "PARCEL_NO_": "102804017100", "Tax_Legal_": "5H-2 MISGUNST GREAT NORTHSIDE", "Name": "GUMBS, DAVID & HAZRA", "Address": "PO BOX 304252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124600, "Improved_V": 132000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.759889069, "SHAPE_Area": 1668.9117581800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358603.295800000429153, 258509.903999999165535 ], [ 358617.054700002074242, 258487.092700000852346 ], [ 358605.70160000026226, 258494.59910000115633 ], [ 358600.025100000202656, 258498.352400001138449 ], [ 358588.688100002706051, 258503.959100000560284 ], [ 358577.362000003457069, 258508.299400001764297 ], [ 358570.05120000243187, 258514.572299998253584 ], [ 358569.203599996864796, 258519.420499999076128 ], [ 358574.682300001382828, 258538.885999999940395 ], [ 358577.855400003492832, 258545.033700000494719 ], [ 358583.465499997138977, 258549.090399999171495 ], [ 358589.863799996674061, 258555.264499999582767 ], [ 358600.309900000691414, 258559.571800000965595 ], [ 358601.917099997401237, 258560.218299999833107 ], [ 358617.657700002193451, 258558.750599998980761 ], [ 358602.156099997460842, 258535.105000000447035 ], [ 358599.987300001084805, 258530.951999999582767 ], [ 358598.504799999296665, 258527.484999999403954 ], [ 358598.028599999845028, 258522.88120000064373 ], [ 358598.504799999296665, 258519.864999998360872 ], [ 358599.298600003123283, 258516.531199999153614 ], [ 358603.295800000429153, 258509.903999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92100438, "LATITUDE": 18.35505568, "OBJECTID_1": 5088, "PARCEL_NO_": "102904030200", "Tax_Legal_": "CANAAN & SHERDEN JEWEL 3BCDE GT NORTHSIDE QTR", "Name": "THOMAS W KLOTZBACH and CLAIRE E STARKEY", "Address": "PO Box 8118", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011118, "Country": "United States", "Land_Value": 415000, "Improved_V": 180500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 682.06719349800005, "SHAPE_Area": 27226.819775700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359872.870999999344349, 258480.523600000888109 ], [ 359883.377099998295307, 258449.116500001400709 ], [ 359890.269199997186661, 258410.361800000071526 ], [ 359908.525499999523163, 258394.883699998259544 ], [ 359910.112999998033047, 258383.771099999547005 ], [ 359919.144100002944469, 258388.78999999910593 ], [ 359936.645099997520447, 258348.86089999973774 ], [ 359938.304499998688698, 258343.385999999940395 ], [ 359939.181000001728535, 258335.160500001162291 ], [ 359938.437600001692772, 258327.766199998557568 ], [ 359936.846500001847744, 258325.219999998807907 ], [ 359934.470799997448921, 258320.134300000965595 ], [ 359928.086800001561642, 258312.271600000560284 ], [ 359919.260499998927116, 258307.133099999278784 ], [ 359912.018100000917912, 258305.385099999606609 ], [ 359901.534199997782707, 258305.510400000959635 ], [ 359894.284599997103214, 258304.606699999421835 ], [ 359885.447499997913837, 258300.734700001776218 ], [ 359879.038400001823902, 258295.827100001275539 ], [ 359871.848099999129772, 258287.957800000905991 ], [ 359867.866899996995926, 258282.014600001275539 ], [ 359814.780100002884865, 258331.344900000840425 ], [ 359754.363499999046326, 258387.4864999987185 ], [ 359756.965899996459484, 258426.972500000149012 ], [ 359757.622900001704693, 258444.498700000345707 ], [ 359751.748599998652935, 258471.470600001513958 ], [ 359749.153399996459484, 258492.136500000953674 ], [ 359773.137800000607967, 258516.775600001215935 ], [ 359845.104599997401237, 258512.542300000786781 ], [ 359872.870999999344349, 258480.523600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91404231, "LATITUDE": 18.35622943, "OBJECTID_1": 5595, "PARCEL_NO_": "103003010400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9AE GR NORTHSIDE", "Name": "INNIS, LORRAINE", "Address": "65 Lenox Rd", "City": "Brooklyn", "State": "New York", "Zip": 11226, "Country": "United States", "Land_Value": 33300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.89214687899999, "SHAPE_Area": 1612.80007387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360606.462099999189377, 258570.50279999896884 ], [ 360566.642800003290176, 258511.915100000798702 ], [ 360535.108499996364117, 258522.000599998980761 ], [ 360591.113399997353554, 258573.754700001329184 ], [ 360606.462099999189377, 258570.50279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93660294, "LATITUDE": 18.35635407, "OBJECTID_1": 4127, "PARCEL_NO_": "102802024600", "Tax_Legal_": "4AC LERKENLUND NO.9 GREAT NORTHSIDE", "Name": "BRIN FAMILY TRUST", "Address": "Suite 133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61900, "Improved_V": 60800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.744322506, "SHAPE_Area": 1315.36315317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358215.160499997437, 258524.966600000858307 ], [ 358205.610600002110004, 258510.111900001764297 ], [ 358156.159400001168251, 258540.949000000953674 ], [ 358161.722699999809265, 258550.49379999935627 ], [ 358175.404799997806549, 258553.561099998652935 ], [ 358184.281400002539158, 258552.789299998432398 ], [ 358192.360699996352196, 258550.955600000917912 ], [ 358199.6570999994874, 258546.371300000697374 ], [ 358203.733599998056889, 258541.127300001680851 ], [ 358205.39299999922514, 258535.652399998158216 ], [ 358211.913599997758865, 258527.473200000822544 ], [ 358215.160499997437, 258524.966600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93702666, "LATITUDE": 18.35638631, "OBJECTID_1": 4126, "PARCEL_NO_": "102802024500", "Tax_Legal_": "LEREKNLUND 4AD-2&3 GR NORTHSIDE", "Name": "BRYAN, RICHARD LOUIS", "Address": "13110 Hidden Valley Dr", "City": "Homer Glen", "State": "Illinois", "Zip": 60491, "Country": "United States", "Land_Value": 87200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.85192306899999, "SHAPE_Area": 621.42577401300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358156.159400001168251, 258540.949000000953674 ], [ 358143.431000001728535, 258520.579900000244379 ], [ 358125.595100000500679, 258531.832899998873472 ], [ 358137.511699996888638, 258552.828699998557568 ], [ 358149.631599999964237, 258549.972600001841784 ], [ 358161.722699999809265, 258550.49379999935627 ], [ 358156.159400001168251, 258540.949000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040100", "MAP": "D9-5578-T93", "PARCEL_NAM": null, "ACRE": "1.71", "LONGITUDE": -64.9320392, "LATITUDE": 18.35590558, "OBJECTID_1": 4907, "PARCEL_NO_": "102903040100", "Tax_Legal_": "MISGUNST ESTATE 5J & 5H-3 NO.6 GREAT NORTHSIDE QTR", "Name": "DEBORAH B. & CONN J. DAVIS REVOC TR", "Address": "PO Box 7997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 192900, "Improved_V": 390500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 347.59994639799999, "SHAPE_Area": 6916.8021297100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358640.671599999070168, 258459.843800000846386 ], [ 358632.25959999859333, 258500.727099999785423 ], [ 358641.460600003600121, 258556.531100001186132 ], [ 358646.307499997317791, 258555.515299998223782 ], [ 358713.648599997162819, 258507.092799998819828 ], [ 358710.741599999368191, 258469.705400001257658 ], [ 358708.468299999833107, 258452.588199999183416 ], [ 358689.151000000536442, 258448.419399999082088 ], [ 358681.906800001859665, 258446.882399998605251 ], [ 358684.471400000154972, 258429.804800000041723 ], [ 358652.191899999976158, 258432.706999998539686 ], [ 358650.501900002360344, 258441.770199999213219 ], [ 358640.671599999070168, 258459.843800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004051500", "MAP": "D9-8584-T010", "PARCEL_NAM": "B-28 REM", "ACRE": ".06", "LONGITUDE": -64.90205698, "LATITUDE": 18.35638189, "OBJECTID_1": 6297, "PARCEL_NO_": "103004051500", "Tax_Legal_": "B-28 REM LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.12393593199999, "SHAPE_Area": 333.59080435099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361819.113399997353554, 258558.363099999725819 ], [ 361817.493299998342991, 258566.08049999922514 ], [ 361826.235100001096725, 258568.867400001734495 ], [ 361839.90820000320673, 258573.335400000214577 ], [ 361850.925200000405312, 258576.3429000005126 ], [ 361858.145400002598763, 258577.669700000435114 ], [ 361860.268200002610683, 258571.203400000929832 ], [ 361819.113399997353554, 258558.363099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010200", "MAP": "D9-6118-T96", "PARCEL_NAM": "7G", "ACRE": ".28", "LONGITUDE": -64.94033986, "LATITUDE": 18.35635013, "OBJECTID_1": 4417, "PARCEL_NO_": "102804010200", "Tax_Legal_": "LERKENLUND 7G GR NORTHSIDE", "Name": "HARLEY, ALTHEA", "Address": "7G LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69000, "Improved_V": 146200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.491303405, "SHAPE_Area": 702.53088796999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357816.36879999935627, 258528.271499998867512 ], [ 357813.296400003135204, 258517.096599999815226 ], [ 357795.064499996602535, 258522.372699998319149 ], [ 357770.005900003015995, 258529.555900000035763 ], [ 357777.908900000154972, 258548.407900001853704 ], [ 357798.158500000834465, 258537.807900000363588 ], [ 357816.36879999935627, 258528.271499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801041800", "MAP": "F9-3482-T77", "PARCEL_NAM": "8-59", "ACRE": ".19", "LONGITUDE": -64.94375613, "LATITUDE": 18.35627217, "OBJECTID_1": 3887, "PARCEL_NO_": "102801041800", "Tax_Legal_": "LERKENLUND 8-59 LITTLE NORTHSIDE QTR", "Name": "ROSS, TIMOTHIUS & SARAH", "Address": "PO Box 9094", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23500, "Improved_V": 209800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.16337175699999, "SHAPE_Area": 1127.5931572699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357425.009999997913837, 258498.617600001394749 ], [ 357424.481899999082088, 258498.14299999922514 ], [ 357402.77589999884367, 258513.065000001341105 ], [ 357406.45380000025034, 258515.85190000012517 ], [ 357418.064800001680851, 258524.766699999570847 ], [ 357432.639499999582767, 258535.956999998539686 ], [ 357441.321599997580051, 258542.622900001704693 ], [ 357458.7162000015378, 258525.491599999368191 ], [ 357451.571800000965595, 258519.983600001782179 ], [ 357430.744300000369549, 258503.769999999552965 ], [ 357425.009999997913837, 258498.617600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103003018000", "MAP": "D9-3029-T85", "PARCEL_NAM": "9E-6", "ACRE": "0.24", "LONGITUDE": -64.91402676, "LATITUDE": 18.35601346, "OBJECTID_1": 5703, "PARCEL_NO_": "103003018000", "Tax_Legal_": "ST JOSPEPH & ROSENDAHL 9E GT. NORTHSIDE", "Name": "MICHAEL, ELIZABETH", "Address": "240 Lombard St", "City": "San Francisco", "State": "California", "Zip": 94111, "Country": "United States", "Land_Value": 24200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.91847293299998, "SHAPE_Area": 739.20697207199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360550.712499998509884, 258488.775499999523163 ], [ 360566.642800003290176, 258511.915100000798702 ], [ 360606.462099999189377, 258570.50279999896884 ], [ 360613.735100001096725, 258568.662500001490116 ], [ 360612.138599999248981, 258566.749600000679493 ], [ 360607.351099997758865, 258560.799800001084805 ], [ 360605.785199999809265, 258555.298500001430511 ], [ 360602.560000002384186, 258555.272100001573563 ], [ 360596.18860000371933, 258545.93189999833703 ], [ 360581.856600001454353, 258524.494100000709295 ], [ 360565.929899998009205, 258500.932399999350309 ], [ 360539.656099997460842, 258461.453899998217821 ], [ 360535.586800001561642, 258465.85359999909997 ], [ 360550.712499998509884, 258488.775499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703017400", "MAP": "D9-9420-T020", "PARCEL_NAM": "9-4", "ACRE": "0.51", "LONGITUDE": -64.95871256, "LATITUDE": 18.35625619, "OBJECTID_1": 3251, "PARCEL_NO_": "102703017400", "Tax_Legal_": "BONNE RESOLUTION 9-4 LITTLE NORTHSIDE", "Name": "BERRY, ALFRED & KELLI R.", "Address": "PO BOX 7305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63100, "Improved_V": 526200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.87715851300001, "SHAPE_Area": 2828.8177514399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355885.364000000059605, 258515.146499998867512 ], [ 355882.206000000238419, 258504.696100000292063 ], [ 355877.49719999730587, 258505.785300001502037 ], [ 355873.696400001645088, 258494.383099999278784 ], [ 355864.725100003182888, 258464.692200001329184 ], [ 355835.313799999654293, 258484.67680000141263 ], [ 355816.698899999260902, 258497.69310000166297 ], [ 355842.271799996495247, 258545.896000001579523 ], [ 355842.789899997413158, 258546.872499998658895 ], [ 355853.178099997341633, 258540.043200001120567 ], [ 355858.093299999833107, 258531.006400000303984 ], [ 355860.91330000013113, 258526.151700001209974 ], [ 355885.364000000059605, 258515.146499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804038100", "MAP": "D9-3407-T86", "PARCEL_NAM": null, "ACRE": ".531", "LONGITUDE": -64.93459952000001, "LATITUDE": 18.3562044, "OBJECTID_1": 4664, "PARCEL_NO_": "102804038100", "Tax_Legal_": "3AC-4-1 & POR OF ROW 3AC-5 MISGUNST NO.6 GREAT NORTHSIDE QTR", "Name": "MOTTA II, ALBERT A.", "Address": "PO Box 306951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.763050808, "SHAPE_Area": 1451.77427676 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358426.142599999904633, 258509.984400000423193 ], [ 358407.201399996876717, 258489.953999999910593 ], [ 358402.48030000180006, 258496.524500001221895 ], [ 358402.356600001454353, 258496.654599998146296 ], [ 358383.766099996864796, 258516.214099999517202 ], [ 358374.803099997341633, 258527.117600001394749 ], [ 358386.69820000231266, 258550.646299999207258 ], [ 358391.546899996697903, 258549.41950000077486 ], [ 358421.165200002491474, 258515.658100001513958 ], [ 358426.142599999904633, 258509.984400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96372969, "LATITUDE": 18.35588164, "OBJECTID_1": 3244, "PARCEL_NO_": "102703016700", "Tax_Legal_": "DOROTHEA 3P LT. NORTHSIDE", "Name": "RYKE, CHARLENE MARIE", "Address": "123 4th Pl", "City": "Bogota", "State": "New Jersey", "Zip": 7603, "Country": "United States", "Land_Value": 160500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.17212446600001, "SHAPE_Area": 7754.7404437100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355359.156000003218651, 258412.2989999987185 ], [ 355279.277099996805191, 258417.978000000119209 ], [ 355275.334399998188019, 258502.172100000083447 ], [ 355274.33389999717474, 258524.962000001221895 ], [ 355286.554499998688698, 258510.285500001162291 ], [ 355293.05349999666214, 258504.63910000026226 ], [ 355298.722900003194809, 258501.730200000107288 ], [ 355310.849899999797344, 258498.029800001531839 ], [ 355326.175300002098083, 258497.521999999880791 ], [ 355368.875699996948242, 258501.882199998944998 ], [ 355363.189400002360344, 258412.120900001376867 ], [ 355359.156000003218651, 258412.2989999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003052100", "MAP": "D9-8143-T008", "PARCEL_NAM": "10C", "ACRE": ".53", "LONGITUDE": -64.91035208, "LATITUDE": 18.35620779, "OBJECTID_1": 5928, "PARCEL_NO_": "103003052100", "Tax_Legal_": "10C ST.JOSEPH & ROSENDAHL &1/8 INT ROW 10REM GREAT NORTHSIDE QUARTER", "Name": "HUSEIN, HUSEIN A, AMINA R, and ABED H", "Address": "PO Box 7956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.602475148, "SHAPE_Area": 1212.04404047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360947.999799996614456, 258518.413800001144409 ], [ 360936.630500003695488, 258527.819899998605251 ], [ 360970.135999999940395, 258570.312899999320507 ], [ 360987.178199999034405, 258557.575699999928474 ], [ 360954.495200000703335, 258513.189599998295307 ], [ 360952.871799997985363, 258514.442899998277426 ], [ 360947.999799996614456, 258518.413800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90889622, "LATITUDE": 18.36140432, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.535680963, "SHAPE_Area": 695.38301892200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361131.523299999535084, 259124.910000000149012 ], [ 361118.821900002658367, 259101.374600000679493 ], [ 361090.462499998509884, 259117.396699998527765 ], [ 361099.19709999859333, 259133.300200000405312 ], [ 361101.639399997889996, 259130.5760000012815 ], [ 361131.523299999535084, 259124.910000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94596907, "LATITUDE": 18.36144677, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.618415651899994, "SHAPE_Area": 184.07992106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357206.430200003087521, 259088.563099998980761 ], [ 357205.638199999928474, 259086.867899999022484 ], [ 357200.004799999296665, 259085.55519999936223 ], [ 357199.988600000739098, 259087.454900000244379 ], [ 357198.366999998688698, 259088.497099999338388 ], [ 357178.218199998140335, 259087.276700001209974 ], [ 357178.16610000282526, 259093.397999998182058 ], [ 357205.569899998605251, 259094.888900000602007 ], [ 357206.430200003087521, 259088.563099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9086295, "LATITUDE": 18.36128632, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.968276086, "SHAPE_Area": 797.59196932600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361159.130300000309944, 259102.548900000751019 ], [ 361151.997599996626377, 259087.92509999871254 ], [ 361118.821900002658367, 259101.374600000679493 ], [ 361131.523299999535084, 259124.910000000149012 ], [ 361136.370200000703335, 259123.894200000911951 ], [ 361159.130300000309944, 259102.548900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9672963, "LATITUDE": 18.36118804, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.851891704000003, "SHAPE_Area": 125.697776617 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354942.464800000190735, 259051.246300000697374 ], [ 354942.626599997282028, 259032.249200001358986 ], [ 354936.959100000560284, 259034.947000000625849 ], [ 354935.168399997055531, 259055.830600000917912 ], [ 354942.464800000190735, 259051.246300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90836553, "LATITUDE": 18.36112213, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.063430783, "SHAPE_Area": 340.07283834999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361151.997599996626377, 259087.92509999871254 ], [ 361159.130300000309944, 259102.548900000751019 ], [ 361190.837200000882149, 259072.19990000128746 ], [ 361151.997599996626377, 259087.92509999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95430304, "LATITUDE": 18.3608127, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 471.510278196, "SHAPE_Area": 1309.4903202099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356362.385600000619888, 258988.084600001573563 ], [ 356364.846000000834465, 258987.281500000506639 ], [ 356372.863099999725819, 258989.037099998444319 ], [ 356378.101899996399879, 258990.624600000679493 ], [ 356380.959399998188019, 258991.10080000013113 ], [ 356384.134400002658367, 258991.735800001770258 ], [ 356388.173699997365475, 258991.84010000154376 ], [ 356393.341899998486042, 258991.418299999088049 ], [ 356400.485699996352196, 258990.465799998492002 ], [ 356403.819499999284744, 258989.672100000083447 ], [ 356408.740699999034405, 258988.243299998342991 ], [ 356412.391999997198582, 258987.132100000977516 ], [ 356418.004000000655651, 258985.060899998992682 ], [ 356417.126800000667572, 258978.4560999982059 ], [ 356417.076899997889996, 258976.16609999909997 ], [ 356411.439499996602535, 258979.512099999934435 ], [ 356407.788199998438358, 258981.099599998444319 ], [ 356404.613200001418591, 258983.16330000013113 ], [ 356401.279399998486042, 258984.274599999189377 ], [ 356396.993199996650219, 258985.385800000280142 ], [ 356393.341899998486042, 258985.862100001424551 ], [ 356389.849399998784065, 258986.655799999833107 ], [ 356388.420699998736382, 258986.814599998295307 ], [ 356384.547799997031689, 258987.144499998539686 ], [ 356381.753200002014637, 258986.814599998295307 ], [ 356377.308100000023842, 258986.338300000876188 ], [ 356369.846900001168251, 258984.750799998641014 ], [ 356364.290600001811981, 258983.480799999088049 ], [ 356360.037500001490116, 258983.916999999433756 ], [ 356358.099399998784065, 258984.115800000727177 ], [ 356354.448100000619888, 258986.497099999338388 ], [ 356349.511100001633167, 258990.411699999123812 ], [ 356346.864399999380112, 258991.179900001734495 ], [ 356339.568000003695488, 258995.764199998229742 ], [ 356335.495099999010563, 259000.586100000888109 ], [ 356334.668999999761581, 259002.901299998164177 ], [ 356325.736599996685982, 259010.216499999165535 ], [ 356318.452799998223782, 259013.323300000280142 ], [ 356311.183399997651577, 259014.741399999707937 ], [ 356275.691299997270107, 259016.139699999243021 ], [ 356265.986800000071526, 259019.437800001353025 ], [ 356259.505699999630451, 259022.973299998790026 ], [ 356237.569799996912479, 259042.214400000870228 ], [ 356227.028399996459484, 259049.094200000166893 ], [ 356215.693300001323223, 259054.489900000393391 ], [ 356214.82769999653101, 259061.448899999260902 ], [ 356236.695200003683567, 259050.228799998760223 ], [ 356250.492399998009205, 259039.787000000476837 ], [ 356260.25450000166893, 259029.734400000423193 ], [ 356265.119300000369549, 259026.607900001108646 ], [ 356269.167099997401237, 259024.741099998354912 ], [ 356278.864399999380112, 259022.287399999797344 ], [ 356290.966300003230572, 259021.542100001126528 ], [ 356313.555600002408028, 259020.249299999326468 ], [ 356324.059299997985363, 259017.802099999040365 ], [ 356329.732199996709824, 259014.471099998801947 ], [ 356337.851099997758865, 259007.993599999696016 ], [ 356341.920400001108646, 259003.594000000506639 ], [ 356344.375299997627735, 258999.392200000584126 ], [ 356350.044699996709824, 258996.483300000429153 ], [ 356357.146899998188019, 258992.370799999684095 ], [ 356358.167099997401237, 258989.583700001239777 ], [ 356362.385600000619888, 258988.084600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96728886, "LATITUDE": 18.36105634, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.309459783499999, "SHAPE_Area": 41.359893615200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354942.626599997282028, 259032.249200001358986 ], [ 354942.694899998605251, 259024.228199999779463 ], [ 354938.654399998486042, 259025.250599998980761 ], [ 354936.959100000560284, 259034.947000000625849 ], [ 354942.626599997282028, 259032.249200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91835223, "LATITUDE": 18.36035302, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 347.22216577099999, "SHAPE_Area": 1771.1001982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360174.197700001299381, 259049.73589999973774 ], [ 360062.295800000429153, 258933.562899999320507 ], [ 360051.765100002288818, 258939.176300000399351 ], [ 360166.07880000025034, 259056.213300000876188 ], [ 360174.197700001299381, 259049.73589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96798767, "LATITUDE": 18.36067444, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.708688223, "SHAPE_Area": 1038.60543231 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354857.69879999756813, 258968.014899998903275 ], [ 354850.150600001215935, 259002.150299999862909 ], [ 354849.315499998629093, 259005.521000001579523 ], [ 354855.77139999717474, 259004.940499998629093 ], [ 354863.022900000214577, 259005.633200000971556 ], [ 354867.842799998819828, 259007.783500000834465 ], [ 354871.836599998176098, 259012.249200001358986 ], [ 354885.084600001573563, 258971.616599999368191 ], [ 354858.544600002467632, 258963.37779999896884 ], [ 354857.69879999756813, 258968.014899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94396073, "LATITUDE": 18.36015408, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.169644162, "SHAPE_Area": 703.21951333000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357405.94820000231266, 258953.407400000840425 ], [ 357401.065399996936321, 258958.644799999892712 ], [ 357392.94650000333786, 258965.12220000103116 ], [ 357383.21509999781847, 258971.586500000208616 ], [ 357374.314999997615814, 258975.102200001478195 ], [ 357370.222300000488758, 258982.245900001376867 ], [ 357382.349399998784065, 258978.545499999076128 ], [ 357400.167400002479553, 258969.403200000524521 ], [ 357403.470600001513958, 258966.648899998515844 ], [ 357406.657499998807907, 258964.812300000339746 ], [ 357410.744800001382828, 258958.30180000141263 ], [ 357413.269799999892712, 258945.868000000715256 ], [ 357420.573399998247623, 258940.439300000667572 ], [ 357434.366999998688698, 258930.419700000435114 ], [ 357431.186700001358986, 258925.116399999707937 ], [ 357417.396700002253056, 258934.713799998164177 ], [ 357414.977700002491474, 258934.693999998271465 ], [ 357414.1858000010252, 258932.998799998313189 ], [ 357416.653300002217293, 258927.319400001317263 ], [ 357422.356799997389317, 258920.399999998509884 ], [ 357418.361199997365475, 258916.145500000566244 ], [ 357413.48200000077486, 258920.960700001567602 ], [ 357409.387500002980232, 258928.315400000661612 ], [ 357406.86599999666214, 258940.327100001275539 ], [ 357405.94820000231266, 258953.407400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "21-A REM", "ACRE": null, "LONGITUDE": -64.96538421, "LATITUDE": 18.36010292, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.95323112599999, "SHAPE_Area": 966.095364195 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355116.917099997401237, 258924.118099998682737 ], [ 355122.347300000488758, 258949.282699998468161 ], [ 355138.547200001776218, 258940.760400000959635 ], [ 355151.538099996745586, 258930.312100000679493 ], [ 355161.305600002408028, 258919.626299999654293 ], [ 355180.061200000345707, 258895.081799998879433 ], [ 355170.349500000476837, 258899.224199999123812 ], [ 355158.976599998772144, 258909.052499998360872 ], [ 355145.199100002646446, 258917.172400001436472 ], [ 355133.873000003397465, 258921.512699998915195 ], [ 355116.917099997401237, 258924.118099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95048826, "LATITUDE": 18.3594226, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 319.867640564, "SHAPE_Area": 5174.9847956100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356736.920400001108646, 258828.452799998223782 ], [ 356721.760499998927116, 258809.541400000452995 ], [ 356690.920999996364117, 258832.720400001853704 ], [ 356681.322599999606609, 258823.564800001680851 ], [ 356681.47070000320673, 258900.826200000941753 ], [ 356711.333099998533726, 258897.693199999630451 ], [ 356717.790799997746944, 258896.901599999517202 ], [ 356767.830700002610683, 258891.611699998378754 ], [ 356768.795199997723103, 258873.043299999088049 ], [ 356751.146300002932549, 258862.344200000166893 ], [ 356738.336999997496605, 258851.473600000143051 ], [ 356735.972000002861023, 258845.121399998664856 ], [ 356735.232199996709824, 258837.304900001734495 ], [ 356736.920400001108646, 258828.452799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96445997, "LATITUDE": 18.35954986, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.018805134700003, "SHAPE_Area": 399.13576103899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355226.364399999380112, 258855.1418999992311 ], [ 355244.675899997353554, 258882.733899999409914 ], [ 355254.459499999880791, 258870.148400001227856 ], [ 355233.678800001740456, 258848.446800000965595 ], [ 355226.364399999380112, 258855.1418999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90065947, "LATITUDE": 18.3595145, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 13.9790045562, "SHAPE_Area": 7.4041127686400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361982.377499997615814, 258919.724800001829863 ], [ 361984.82880000025034, 258915.945199999958277 ], [ 361982.42960000038147, 258913.603500001132488 ], [ 361982.377499997615814, 258919.724800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94983918, "LATITUDE": 18.35934287, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.25599737899999, "SHAPE_Area": 821.33603446300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356772.302799999713898, 258839.930300001055002 ], [ 356771.26630000025034, 258866.941799998283386 ], [ 356784.937700003385544, 258871.275600001215935 ], [ 356794.613399997353554, 258871.354800000786781 ], [ 356803.732799999415874, 258842.087400000542402 ], [ 356790.039899997413158, 258840.28660000115633 ], [ 356772.302799999713898, 258839.930300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9400747, "LATITUDE": 18.35933381, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.379264120499997, "SHAPE_Area": 101.87063495 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357831.779399998486042, 258850.712600000202656 ], [ 357822.870399996638298, 258855.283700000494719 ], [ 357813.117299996316433, 258864.280900001525879 ], [ 357802.572300001978874, 258871.582899998873472 ], [ 357805.784999996423721, 258873.086800001561642 ], [ 357817.143500000238419, 258864.947200000286102 ], [ 357825.276799999177456, 258856.781100001186132 ], [ 357829.326300002634525, 258854.703299999237061 ], [ 357833.365099996328354, 258853.892000000923872 ], [ 357831.779399998486042, 258850.712600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96715056, "LATITUDE": 18.35878701, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.898572008, "SHAPE_Area": 934.77747298300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354962.420800000429153, 258791.131299998611212 ], [ 354964.0675999969244, 258787.13399999961257 ], [ 354965.352200001478195, 258730.993599999696016 ], [ 354957.371799997985363, 258721.217999998480082 ], [ 354956.30120000243187, 258752.239999998360872 ], [ 354954.409800000488758, 258784.943999998271465 ], [ 354946.955200001597404, 258808.103300001472235 ], [ 354945.303000003099442, 258812.733800001442432 ], [ 354940.348300002515316, 258826.414299998432398 ], [ 354950.015000000596046, 258827.548900000751019 ], [ 354962.420800000429153, 258791.131299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95055976, "LATITUDE": 18.35886837, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.69698193, "SHAPE_Area": 2573.3662244100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356751.771999999880791, 258788.888799998909235 ], [ 356680.92620000243187, 258775.432199999690056 ], [ 356680.816500000655651, 258788.30799999833107 ], [ 356681.3800999969244, 258816.810300000011921 ], [ 356681.322599999606609, 258823.564800001680851 ], [ 356690.920999996364117, 258832.720400001853704 ], [ 356721.760499998927116, 258809.541400000452995 ], [ 356736.920400001108646, 258828.452799998223782 ], [ 356743.557899996638298, 258806.553399998694658 ], [ 356751.771999999880791, 258788.888799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94981959, "LATITUDE": 18.35880441, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.964145118, "SHAPE_Area": 297.69277523599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356791.353299997746944, 258780.769000001251698 ], [ 356793.178099997341633, 258755.874899998307228 ], [ 356789.128600001335144, 258757.9527000002563 ], [ 356783.648699998855591, 258833.268199998885393 ], [ 356787.6875, 258832.456900000572205 ], [ 356791.353299997746944, 258780.769000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96782511000001, "LATITUDE": 18.35742677, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 878.54270878299997, "SHAPE_Area": 3314.02007267 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354946.317199997603893, 258693.685300000011921 ], [ 354928.702399998903275, 258678.975699998438358 ], [ 354908.803599998354912, 258648.415399998426437 ], [ 354895.990699999034405, 258637.966899998486042 ], [ 354889.606700003147125, 258630.104200001806021 ], [ 354882.409199997782707, 258623.079199999570847 ], [ 354864.853799998760223, 258601.403999999165535 ], [ 354853.667900003492832, 258589.280099999159575 ], [ 354847.292900003492832, 258580.361999999731779 ], [ 354838.50620000064373, 258570.579799998551607 ], [ 354837.716099999845028, 258568.673500001430511 ], [ 354836.110600002110004, 258567.815900001674891 ], [ 354835.324100002646446, 258565.487500000745058 ], [ 354833.72410000115633, 258563.996700000017881 ], [ 354829.785999998450279, 258552.98759999871254 ], [ 354828.189599998295307, 258551.074700001627207 ], [ 354829.015699997544289, 258548.759500000625849 ], [ 354805.103200003504753, 258516.055300001055002 ], [ 354762.890100002288818, 258454.49269999936223 ], [ 354750.757700003683567, 258458.826400000602007 ], [ 354781.09009999781847, 258495.171599999070168 ], [ 354793.048100002110004, 258511.312600001692772 ], [ 354805.045699998736382, 258522.809900000691414 ], [ 354816.969499997794628, 258542.961300000548363 ], [ 354827.251999996602535, 258566.47690000012517 ], [ 354856.004100002348423, 258599.009500000625849 ], [ 354859.988899998366833, 258604.530600000172853 ], [ 354863.134999997913837, 258613.844399999827147 ], [ 354868.737899996340275, 258618.745400000363588 ], [ 354875.912000000476837, 258628.514499999582767 ], [ 354905.508199997246265, 258656.620999999344349 ], [ 354907.89469999819994, 258660.44029999896884 ], [ 354922.212399996817112, 258683.566599998623133 ], [ 354927.005300000309944, 258688.883200000971556 ], [ 354957.371799997985363, 258721.217999998480082 ], [ 354965.352200001478195, 258730.993599999696016 ], [ 354975.729999996721745, 258743.321899998933077 ], [ 354990.92230000346899, 258758.433899998664856 ], [ 354998.0945999994874, 258768.414000000804663 ], [ 354998.879299998283386, 258770.953600000590086 ], [ 355000.482900001108646, 258772.022199999541044 ], [ 355005.261500000953674, 258779.027399998158216 ], [ 355012.383400000631809, 258794.917700000107288 ], [ 355018.850100003182888, 258793.070799998939037 ], [ 355000.614200003445148, 258756.613400001078844 ], [ 354995.799699999392033, 258753.829799998551607 ], [ 354991.804099999368191, 258749.575199998915195 ], [ 354988.620200000703335, 258744.693999998271465 ], [ 354946.317199997603893, 258693.685300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93666101, "LATITUDE": 18.35785891, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1417.8437650599999, "SHAPE_Area": 7336.6158414000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358093.248000003397465, 258637.326099999248981 ], [ 358125.448299996554852, 258643.711300000548363 ], [ 358138.354699999094009, 258643.183699999004602 ], [ 358160.960199996829033, 258639.991200000047684 ], [ 358173.036899998784065, 258642.2010000012815 ], [ 358121.933600001037121, 258677.668600000441074 ], [ 358111.372400000691414, 258686.870299998670816 ], [ 358101.664300002157688, 258690.590500000864267 ], [ 358077.451499998569489, 258693.136599998921156 ], [ 358085.399599999189377, 258706.711599998176098 ], [ 358097.447499997913837, 258712.298599999397993 ], [ 358108.710699997842312, 258715.346099998801947 ], [ 358131.265900000929832, 258718.063900001347065 ], [ 358137.70380000025034, 258719.594200000166893 ], [ 358140.912799999117851, 258721.520300000905991 ], [ 358140.85530000180006, 258728.27479999884963 ], [ 358136.784199997782707, 258732.885600000619888 ], [ 358116.51129999756813, 258746.229600001126528 ], [ 358110.845499999821186, 258748.716400001198053 ], [ 358115.618699997663498, 258756.354800000786781 ], [ 358138.299699999392033, 258744.296999998390675 ], [ 358147.232100002467632, 258736.981899999082088 ], [ 358157.764499999582767, 258731.157499998807907 ], [ 358162.600599996745586, 258731.408100001513958 ], [ 358173.849399998784065, 258736.144200000911951 ], [ 358177.882700003683567, 258735.9662000015378 ], [ 358192.473700001835823, 258727.008600000292063 ], [ 358205.430399999022484, 258720.570700000971556 ], [ 358215.12780000269413, 258718.116999998688698 ], [ 358235.296400003135204, 258717.015500001609325 ], [ 358264.323600001633167, 258717.252999998629093 ], [ 358261.796800002455711, 258729.897999998182058 ], [ 358254.4662000015378, 258738.492800001055002 ], [ 358231.781599998474121, 258750.972800001502037 ], [ 358219.670699998736382, 258752.773499999195337 ], [ 358212.412100002169609, 258752.925200000405312 ], [ 358209.174300000071526, 258754.376299999654293 ], [ 358192.108599998056889, 258769.857599999755621 ], [ 358178.307800002396107, 258780.721500001847744 ], [ 358142.6503000035882, 258801.539000000804663 ], [ 358147.417999997735023, 258809.810699999332428 ], [ 358158.753100000321865, 258804.41499999910593 ], [ 358161.190099999308586, 258802.324000000953674 ], [ 358170.09910000115633, 258797.752900000661612 ], [ 358183.050399996340275, 258791.948300000280142 ], [ 358200.924099996685982, 258776.262499999254942 ], [ 358202.542199999094009, 258775.642499998211861 ], [ 358207.42679999768734, 258770.193999998271465 ], [ 358214.730400003492832, 258764.765399999916553 ], [ 358220.387100003659725, 258763.333999998867512 ], [ 358228.455600000917912, 258762.766800001263618 ], [ 358241.390799999237061, 258758.861900001764297 ], [ 358266.526799999177456, 258742.602299999445677 ], [ 358270.5996999964118, 258737.780499998480082 ], [ 358272.250100001692772, 258733.361000001430511 ], [ 358278.09740000218153, 258709.555300001055002 ], [ 358274.893799997866154, 258706.995999999344349 ], [ 358260.383699998259544, 258706.454999998211861 ], [ 358234.563799999654293, 258708.354600001126528 ], [ 358218.426700003445148, 258709.489100001752377 ], [ 358206.323100000619888, 258710.445500001311302 ], [ 358199.048299998044968, 258712.496899999678135 ], [ 358182.022200003266335, 258723.334399998188019 ], [ 358174.751000002026558, 258724.963700000196695 ], [ 358169.117600001394749, 258723.651000000536442 ], [ 358157.0625, 258718.908300001174212 ], [ 358134.575599998235703, 258708.169599998742342 ], [ 358129.746699996292591, 258707.074599999934435 ], [ 358108.773599997162819, 258707.958399999886751 ], [ 358108.001500003039837, 258703.941300000995398 ], [ 358110.44200000166893, 258701.428100001066923 ], [ 358114.491499997675419, 258699.350299999117851 ], [ 358116.940999999642372, 258695.781800001859665 ], [ 358125.070699997246265, 258688.037900000810623 ], [ 358153.464299999177456, 258668.005300000309944 ], [ 358189.951499998569489, 258644.450300000607967 ], [ 358214.817699998617172, 258659.852600000798702 ], [ 358248.756599999964237, 258651.475499998778105 ], [ 358262.859499998390675, 258605.150400001555681 ], [ 358253.984700001776218, 258605.710999999195337 ], [ 358237.532999999821186, 258643.784299999475479 ], [ 358215.704999998211861, 258650.360599998384714 ], [ 358187.622500002384186, 258633.876600001007318 ], [ 358182.797200001776218, 258632.359499998390675 ], [ 358164.268200002610683, 258630.30799999833107 ], [ 358131.1824000030756, 258633.203600000590086 ], [ 358102.17849999666214, 258630.221999999135733 ], [ 358093.248000003397465, 258637.326099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "B-REM", "ACRE": null, "LONGITUDE": -64.91227116, "LATITUDE": 18.35842292, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.5804919, "SHAPE_Area": 319.90397745799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360691.675499998033047, 258790.526399999856949 ], [ 360690.501299999654293, 258792.211899999529123 ], [ 360699.686499997973442, 258796.713700000196695 ], [ 360710.145199999213219, 258799.543499998748302 ], [ 360721.433499999344349, 258799.635899998247623 ], [ 360740.014700002968311, 258795.566100001335144 ], [ 360751.324600003659725, 258793.125599998980761 ], [ 360769.929200001060963, 258786.311700001358986 ], [ 360785.310199998319149, 258779.260499998927116 ], [ 360809.623700000345707, 258764.894000001251698 ], [ 360812.87049999833107, 258762.38740000128746 ], [ 360815.330799996852875, 258757.552400000393391 ], [ 360808.027300000190735, 258762.981100000441074 ], [ 360785.335400000214577, 258776.305300001055002 ], [ 360762.672399997711182, 258786.252399999648333 ], [ 360748.921899996697903, 258791.2060999982059 ], [ 360733.571400001645088, 258794.668999999761581 ], [ 360720.643399998545647, 258797.729600001126528 ], [ 360710.164899997413158, 258797.221700001507998 ], [ 360702.116200000047684, 258795.467000000178814 ], [ 360691.675499998033047, 258790.526399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96865458000001, "LATITUDE": 18.35842342, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 482.15503774400003, "SHAPE_Area": 1085.41194208 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354775.800499998033047, 258737.463700000196695 ], [ 354828.180200003087521, 258741.480999998748302 ], [ 354870.889600001275539, 258744.785900000482798 ], [ 354910.375500001013279, 258747.853300001472235 ], [ 354912.031300000846386, 258742.800599999725819 ], [ 354675.911200001835823, 258725.669300001114607 ], [ 354675.070799998939037, 258729.673200000077486 ], [ 354733.897399999201298, 258734.165500000119209 ], [ 354775.800499998033047, 258737.463700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-4620-T88", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.96883174, "LATITUDE": 18.35835505, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 636.165191177, "SHAPE_Area": 2435.91877656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354668.625699996948242, 258728.987199999392033 ], [ 354675.070799998939037, 258729.673200000077486 ], [ 354675.911200001835823, 258725.669300001114607 ], [ 354912.031300000846386, 258742.800599999725819 ], [ 354914.529399998486042, 258733.532900001853704 ], [ 354868.5929000005126, 258730.41270000115037 ], [ 354825.075499996542931, 258727.312399998307228 ], [ 354781.55799999833107, 258724.212000001221895 ], [ 354680.821000002324581, 258717.265799999237061 ], [ 354669.545299999415874, 258715.695799998939037 ], [ 354668.663400001823902, 258724.554499998688698 ], [ 354642.060500003397465, 258723.703499998897314 ], [ 354608.231299996376038, 258719.204799998551607 ], [ 354608.20440000295639, 258722.370999999344349 ], [ 354668.625699996948242, 258728.987199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90192628, "LATITUDE": 18.35661981, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.67934870095, "SHAPE_Area": 0.01950441478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361851.837999999523163, 258594.923700001090765 ], [ 361852.097000002861023, 258594.992899999022484 ], [ 361852.094499997794628, 258594.851799998432398 ], [ 361852.080300003290176, 258594.845499999821186 ], [ 361851.837999999523163, 258594.923700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801053800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94624064, "LATITUDE": 18.35797014, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.815194332399997, "SHAPE_Area": 208.90461862500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357160.077200002968311, 258709.117300000041723 ], [ 357160.450199998915195, 258709.428700000047684 ], [ 357160.592600002884865, 258715.075399998575449 ], [ 357170.870399996638298, 258719.280499998480082 ], [ 357171.944600000977516, 258687.836399998515844 ], [ 357167.909500002861023, 258688.225499998778105 ], [ 357167.857299998402596, 258694.346799999475479 ], [ 357165.371899999678135, 258702.136900000274181 ], [ 357160.077200002968311, 258709.117300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93810859, "LATITUDE": 18.35786018, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.50448123899997, "SHAPE_Area": 1015.62618995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358077.451499998569489, 258693.136599998921156 ], [ 358060.509999997913837, 258694.053399998694658 ], [ 358058.904500000178814, 258693.195900000631809 ], [ 358058.931500002741814, 258690.029699999839067 ], [ 358064.602700002491474, 258686.909699998795986 ], [ 358070.291799999773502, 258681.678899999707937 ], [ 358067.11150000244379, 258676.375500001013279 ], [ 358058.179099999368191, 258683.690699998289347 ], [ 358050.081799998879433, 258687.635200001299381 ], [ 358039.571000002324581, 258690.926699999719858 ], [ 358029.058399997651577, 258694.429200001060963 ], [ 358010.444899998605251, 258702.298500001430511 ], [ 357968.433899998664856, 258711.664900001138449 ], [ 357955.507700003683567, 258714.514400001615286 ], [ 357965.149300001561642, 258718.604100000113249 ], [ 357995.839500002563, 258712.944699998944998 ], [ 358008.771099999547005, 258709.461899999529123 ], [ 358019.287299998104572, 258705.537200000137091 ], [ 358053.218999996781349, 258698.00450000166893 ], [ 358063.704599998891354, 258697.668099999427795 ], [ 358073.362400002777576, 258699.8581000007689 ], [ 358085.399599999189377, 258706.711599998176098 ], [ 358077.451499998569489, 258693.136599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701033100", "MAP": "D9-5734-T94", "PARCEL_NAM": "3A-1", "ACRE": "0.65", "LONGITUDE": -64.96156206000001, "LATITUDE": 18.357676, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.18509365, "SHAPE_Area": 3421.4435230300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355592.576300002634525, 258651.689699999988079 ], [ 355578.285700000822544, 258625.397100001573563 ], [ 355547.4983000010252, 258642.454799998551607 ], [ 355518.528599999845028, 258635.462699998170137 ], [ 355508.997500002384186, 258631.1554000005126 ], [ 355509.527199998497963, 258642.410100001841784 ], [ 355534.048900000751019, 258706.728300001472235 ], [ 355573.071999996900558, 258669.473000001162291 ], [ 355575.517899997532368, 258666.32660000026226 ], [ 355577.135899998247623, 258665.706599999219179 ], [ 355579.581799998879433, 258662.560199998319149 ], [ 355581.199799999594688, 258661.940200001001358 ], [ 355592.576300002634525, 258651.689699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91284349, "LATITUDE": 18.35727429, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 805.71829954199995, "SHAPE_Area": 2374.6961170300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360709.966399997472763, 258725.870400000363588 ], [ 360711.615000002086163, 258721.662000000476837 ], [ 360712.487899996340275, 258713.85869999974966 ], [ 360704.705200001597404, 258680.864399999380112 ], [ 360698.468699999153614, 258655.693199999630451 ], [ 360698.526299998164177, 258648.938700001686811 ], [ 360699.348800003528595, 258647.0456000007689 ], [ 360708.757600001990795, 258636.027499999850988 ], [ 360715.638700000941753, 258627.969399999827147 ], [ 360736.730499997735023, 258613.154399998486042 ], [ 360744.028599999845028, 258608.359000001102686 ], [ 360764.297899998724461, 258595.437100000679493 ], [ 360798.332099996507168, 258575.872800000011921 ], [ 360800.491200000047684, 258575.214000001549721 ], [ 360821.083999998867512, 258548.35700000077486 ], [ 360818.5016999989748, 258544.754000000655651 ], [ 360800.012999996542931, 258567.864999998360872 ], [ 360735.175399996340275, 258606.386700000613928 ], [ 360711.644900001585484, 258623.503800000995398 ], [ 360695.360399998724461, 258641.946699999272823 ], [ 360692.9037000015378, 258646.359600000083447 ], [ 360692.057800002396107, 258650.996700000017881 ], [ 360692.797600001096725, 258658.813200000673532 ], [ 360706.026600003242493, 258715.072399999946356 ], [ 360705.979800000786781, 258720.560400001704693 ], [ 360702.720399998128414, 258724.54450000077486 ], [ 360697.074400000274181, 258724.709399998188019 ], [ 360686.662500001490116, 258716.391600001603365 ], [ 360677.837999999523163, 258711.041999999433756 ], [ 360651.344800002872944, 258697.315200001001358 ], [ 360620.818199999630451, 258683.766399998217821 ], [ 360611.160400003194809, 258681.576499998569489 ], [ 360581.316100001335144, 258682.598799999803305 ], [ 360560.315999999642372, 258686.648800000548363 ], [ 360571.571999996900558, 258690.540600001811981 ], [ 360582.070200003683567, 258688.726599998772144 ], [ 360610.302000001072884, 258687.691100001335144 ], [ 360619.155199997127056, 258689.663400001823902 ], [ 360648.072800002992153, 258702.776799999177456 ], [ 360662.523500002920628, 258710.283399999141693 ], [ 360683.395900003612041, 258721.219999998807907 ], [ 360692.200599998235703, 258728.891399998217821 ], [ 360695.41499999910593, 258730.184300001710653 ], [ 360701.055600002408028, 258730.65260000154376 ], [ 360707.522299997508526, 258728.805700000375509 ], [ 360709.966399997472763, 258725.870400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91451657, "LATITUDE": 18.35778844, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.638386846000003, "SHAPE_Area": 73.444991584799993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360515.727799996733665, 258714.57039999961853 ], [ 360517.31530000269413, 258717.538699999451637 ], [ 360521.346799999475479, 258717.571699999272823 ], [ 360524.57209999859333, 258717.598099999129772 ], [ 360524.64580000191927, 258708.943799998611212 ], [ 360515.774599999189377, 258709.082299999892712 ], [ 360515.727799996733665, 258714.57039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801054000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94621482, "LATITUDE": 18.35767757, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.458927695400007, "SHAPE_Area": 121.187890482 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357167.909500002861023, 258688.225499998778105 ], [ 357171.944600000977516, 258687.836399998515844 ], [ 357173.024300001561642, 258655.75899999961257 ], [ 357170.598099999129772, 258656.583500001579523 ], [ 357170.572999998927116, 258659.538600001484156 ], [ 357169.714500002563, 258665.653299998492002 ], [ 357166.420900002121925, 258673.647900000214577 ], [ 357168.771499998867512, 258681.688700001686811 ], [ 357167.909500002861023, 258688.225499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93772075, "LATITUDE": 18.35775775, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.6646095738, "SHAPE_Area": 126.379189993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358077.451499998569489, 258693.136599998921156 ], [ 358070.291799999773502, 258681.678899999707937 ], [ 358064.602700002491474, 258686.909699998795986 ], [ 358058.931500002741814, 258690.029699999839067 ], [ 358058.904500000178814, 258693.195900000631809 ], [ 358060.509999997913837, 258694.053399998694658 ], [ 358077.451499998569489, 258693.136599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95935374, "LATITUDE": 18.35713837, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 350.84313153800002, "SHAPE_Area": 1082.9709290599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355818.199199996888638, 258575.853900000452995 ], [ 355814.176600001752377, 258567.620200000703335 ], [ 355795.609899997711182, 258577.146600000560284 ], [ 355760.814400002360344, 258591.427299998700619 ], [ 355752.747699998319149, 258591.783500000834465 ], [ 355753.476599998772144, 258600.866500001400709 ], [ 355760.737099997699261, 258600.503699999302626 ], [ 355770.436200000345707, 258597.838899999856949 ], [ 355778.495700001716614, 258598.326999999582767 ], [ 355784.928199999034405, 258600.490600001066923 ], [ 355784.886900000274181, 258605.345400001853704 ], [ 355785.67339999973774, 258607.673900000751019 ], [ 355783.110600002110004, 258624.540399998426437 ], [ 355779.815200001001358, 258632.746100001037121 ], [ 355764.383799999952316, 258645.707600001245737 ], [ 355753.783100001513958, 258659.552999999374151 ], [ 355753.718299999833107, 258667.151799999177456 ], [ 355765.955099999904633, 258650.575599998235703 ], [ 355780.57660000026226, 258638.029599998146296 ], [ 355783.01349999755621, 258635.938700001686811 ], [ 355787.10080000013113, 258629.428199999034405 ], [ 355789.60249999910593, 258619.738400001078844 ], [ 355789.757100000977516, 258601.58559999987483 ], [ 355788.977799996733665, 258598.412799999117851 ], [ 355797.865199998021126, 258596.374600000679493 ], [ 355796.288500003516674, 258592.139800000935793 ], [ 355787.401100002229214, 258594.177999999374151 ], [ 355784.955200001597404, 258597.324400000274181 ], [ 355781.740699999034405, 258596.031599998474121 ], [ 355781.762299999594688, 258593.498599998652935 ], [ 355794.717299997806549, 258587.271800000220537 ], [ 355818.199199996888638, 258575.853900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96436604, "LATITUDE": 18.35756473, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.927976864, "SHAPE_Area": 418.19750592999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355274.154799997806549, 258640.639800000935793 ], [ 355271.807800002396107, 258632.176899999380112 ], [ 355264.53660000115633, 258633.806099999696016 ], [ 355247.539300002157688, 258641.266399998217821 ], [ 355241.05460000038147, 258645.22410000115633 ], [ 355232.122299998998642, 258652.539200000464916 ], [ 355236.880999997258186, 258661.866300001740456 ], [ 355252.308799996972084, 258649.326900001615286 ], [ 355265.265600003302097, 258642.88910000026226 ], [ 355274.154799997806549, 258640.639800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-1731-T80", "PARCEL_NAM": "D-2-A", "ACRE": ".395", "LONGITUDE": -64.9028988, "LATITUDE": 18.35764345, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.32301351500001, "SHAPE_Area": 724.55314186600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361721.337600000202656, 258735.447799999266863 ], [ 361776.420999996364117, 258692.552999999374151 ], [ 361770.457500003278255, 258683.509199999272823 ], [ 361727.700000002980232, 258714.568399999290705 ], [ 361721.337600000202656, 258735.447799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-1200-T74", "PARCEL_NAM": "ROW 8B", "ACRE": null, "LONGITUDE": -64.91228001, "LATITUDE": 18.35722408, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.86626166, "SHAPE_Area": 597.18519813800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360772.97410000115633, 258659.855399999767542 ], [ 360738.69990000128746, 258611.860399998724461 ], [ 360736.730499997735023, 258613.154399998486042 ], [ 360732.545500002801418, 258616.094000000506639 ], [ 360739.487999998033047, 258622.804400000721216 ], [ 360750.136500000953674, 258638.428599998354912 ], [ 360762.986299999058247, 258654.743599999696016 ], [ 360767.951200000941753, 258663.057500001043081 ], [ 360770.245300002396107, 258666.899099998176098 ], [ 360758.257200002670288, 258675.084499999880791 ], [ 360745.040100000798702, 258684.109099999070168 ], [ 360748.300700001418591, 258688.864199999719858 ], [ 360761.523000001907349, 258680.16440000012517 ], [ 360779.180500000715256, 258668.546399999409914 ], [ 360775.461000002920628, 258663.337799999862909 ], [ 360772.97410000115633, 258659.855399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94755873, "LATITUDE": 18.35701809, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.10632802100002, "SHAPE_Area": 1331.1133276400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357073.714000001549721, 258575.99720000103116 ], [ 357090.705899998545647, 258569.170200001448393 ], [ 357082.639200001955032, 258569.526299998164177 ], [ 357034.894199997186661, 258589.400499999523163 ], [ 357010.618500001728535, 258599.334300000220537 ], [ 356996.869800001382828, 258604.076999999582767 ], [ 356991.209399998188019, 258605.930500000715256 ], [ 356975.842699997127056, 258611.293099999427795 ], [ 356975.917400002479553, 258614.464600000530481 ], [ 356997.344899997115135, 258614.690900001674891 ], [ 357022.574699997901917, 258615.6864 ], [ 357022.639399997889996, 258608.087600000202656 ], [ 357041.998099997639656, 258607.401599999517202 ], [ 357048.466600000858307, 258605.343600001186132 ], [ 357053.342299997806549, 258600.950599998235703 ], [ 357058.271799996495247, 258590.22520000115037 ], [ 357069.655500002205372, 258579.130399998277426 ], [ 357073.714000001549721, 258575.99720000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96807409, "LATITUDE": 18.35710686, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.614546988, "SHAPE_Area": 494.19576486400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354882.409199997782707, 258623.079199999570847 ], [ 354888.953199997544289, 258612.155900001525879 ], [ 354878.517899997532368, 258606.582100000232458 ], [ 354868.910499997437, 258598.481899999082088 ], [ 354845.752199999988079, 258571.905600000172853 ], [ 354829.015699997544289, 258548.759500000625849 ], [ 354828.189599998295307, 258551.074700001627207 ], [ 354829.785999998450279, 258552.98759999871254 ], [ 354833.72410000115633, 258563.996700000017881 ], [ 354835.324100002646446, 258565.487500000745058 ], [ 354836.110600002110004, 258567.815900001674891 ], [ 354837.716099999845028, 258568.673500001430511 ], [ 354838.50620000064373, 258570.579799998551607 ], [ 354847.292900003492832, 258580.361999999731779 ], [ 354853.667900003492832, 258589.280099999159575 ], [ 354864.853799998760223, 258601.403999999165535 ], [ 354882.409199997782707, 258623.079199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9621099, "LATITUDE": 18.35717412, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.280684601299996, "SHAPE_Area": 204.93111821299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355503.456799998879433, 258606.208500001579523 ], [ 355498.710699997842312, 258595.403799999505281 ], [ 355482.516099996864796, 258603.29280000180006 ], [ 355476.027800001204014, 258607.672699999064207 ], [ 355476.812600001692772, 258610.21229999884963 ], [ 355483.266699999570847, 258609.8429000005126 ], [ 355503.456799998879433, 258606.208500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94330463, "LATITUDE": 18.35709169, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.591019708499999, "SHAPE_Area": 201.584244447 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357459.387900002300739, 258613.550200000405312 ], [ 357462.525799997150898, 258618.871500000357628 ], [ 357474.95380000025034, 258614.955899998545647 ], [ 357499.209700003266335, 258607.344000000506639 ], [ 357496.016800001263618, 258603.518199998885393 ], [ 357459.387900002300739, 258613.550200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93775434, "LATITUDE": 18.35702542, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.374029042700002, "SHAPE_Area": 111.48537033700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358069.398500002920628, 258597.234200000762939 ], [ 358057.138300001621246, 258616.554400000721216 ], [ 358061.13570000231266, 258620.597899999469519 ], [ 358063.606799997389317, 258614.496500000357628 ], [ 358073.401199996471405, 258600.644400000572205 ], [ 358069.398500002920628, 258597.234200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93683144000001, "LATITUDE": 18.35672981, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.56213726199999, "SHAPE_Area": 457.51628448399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358140.677599996328354, 258559.820700000971556 ], [ 358193.442900002002716, 258613.237100001424551 ], [ 358155.2128000035882, 258557.406599998474121 ], [ 358147.144299998879433, 258557.973799999803305 ], [ 358140.677599996328354, 258559.820700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95864317, "LATITUDE": 18.35692823, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.179300168, "SHAPE_Area": 169.69778421199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355880.245700001716614, 258581.005800001323223 ], [ 355870.566399998962879, 258581.348700001835823 ], [ 355862.510399997234344, 258580.438400000333786 ], [ 355849.64360000193119, 258576.322299998253584 ], [ 355848.059799998998642, 258572.93189999833703 ], [ 355830.286700002849102, 258576.797200001776218 ], [ 355843.178700000047684, 258577.958200000226498 ], [ 355860.872599996626377, 258583.380300000309944 ], [ 355868.923199996352196, 258584.923900000751019 ], [ 355880.211599998176098, 258585.01630000025034 ], [ 355880.245700001716614, 258581.005800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94789469, "LATITUDE": 18.35639428, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 848.64438117999998, "SHAPE_Area": 3156.5769638699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357049.4070999994874, 258494.949400000274181 ], [ 357040.454899996519089, 258504.586399998515844 ], [ 357031.47580000013113, 258517.389699999243021 ], [ 357027.435199998319149, 258518.412099998444319 ], [ 357020.212600000202656, 258514.342199999839067 ], [ 357016.942400000989437, 258519.592700000852346 ], [ 357020.943400003015995, 258523.214099999517202 ], [ 357021.719099998474121, 258526.809000000357628 ], [ 357001.350900001823902, 258551.340300001204014 ], [ 356998.9121999964118, 258553.642299998551607 ], [ 356994.034800000488758, 258558.246500000357628 ], [ 356984.308700002729893, 258564.077500000596046 ], [ 356947.886100001633167, 258580.033599998801947 ], [ 356939.819399997591972, 258580.389699999243021 ], [ 356931.790500000119209, 258576.313299998641014 ], [ 356927.798500001430511, 258571.636500000953674 ], [ 356927.004699997603893, 258570.152399998158216 ], [ 356926.286499999463558, 258559.80290000140667 ], [ 356927.108999997377396, 258557.909800000488758 ], [ 356945.029500000178814, 258536.736000001430511 ], [ 356959.654600001871586, 258523.767900001257658 ], [ 356961.3716000020504, 258511.538499999791384 ], [ 356959.031700000166893, 258502.231300000101328 ], [ 356952.053599998354912, 258469.454700000584126 ], [ 356951.358800001442432, 258456.361200001090765 ], [ 356953.835299998521805, 258449.626499999314547 ], [ 356959.527999997138977, 258443.973499998450279 ], [ 356945.772200003266335, 258449.560499999672174 ], [ 356943.281300000846386, 258457.983800001442432 ], [ 356944.006700001657009, 258467.489000000059605 ], [ 356943.972499996423721, 258471.499499998986721 ], [ 356953.288699999451637, 258513.794399999082088 ], [ 356953.26349999755621, 258516.749499998986721 ], [ 356952.424800001084805, 258520.542300000786781 ], [ 356941.057300001382828, 258529.737399999052286 ], [ 356927.216899998486042, 258545.245099999010563 ], [ 356925.584499999880791, 258547.553700000047684 ], [ 356919.875600002706051, 258555.1064000017941 ], [ 356918.963200002908707, 258567.553399998694658 ], [ 356921.310199998319149, 258576.016399998217821 ], [ 356926.101300001144409, 258581.543999999761581 ], [ 356930.111299999058247, 258584.109999999403954 ], [ 356939.752899996936321, 258588.199700001627207 ], [ 356945.397100001573563, 258588.245900001376867 ], [ 356951.052100002765656, 258587.025600001215935 ], [ 356960.763800002634525, 258582.883200000971556 ], [ 356980.189000003039837, 258574.387299999594688 ], [ 356991.524099998176098, 258568.991700001060963 ], [ 356995.579099997878075, 258566.280699998140335 ], [ 356998.820500001311302, 258564.407299999147654 ], [ 357006.948399998247623, 258556.874499998986721 ], [ 357023.254399999976158, 258535.898600000888109 ], [ 357032.174199998378754, 258530.061000000685453 ], [ 357057.178900003433228, 258529.210200000554323 ], [ 357074.951899997889996, 258525.344900000840425 ], [ 357087.847499996423721, 258526.083700001239777 ], [ 357103.140500001609325, 258529.375199999660254 ], [ 357120.88120000064373, 258529.309399999678135 ], [ 357120.126999996602535, 258523.181499999016523 ], [ 357113.676500000059605, 258523.128699999302626 ], [ 357103.998999997973442, 258523.260600000619888 ], [ 357083.068999998271465, 258519.078499998897314 ], [ 357072.58330000191927, 258519.414799999445677 ], [ 357058.035499997437, 258523.306600000709295 ], [ 357052.385999999940395, 258523.8935999982059 ], [ 357049.158900000154972, 258524.078299999237061 ], [ 357044.344400003552437, 258521.294700000435114 ], [ 357043.609999999403954, 258512.844900000840425 ], [ 357051.757700003683567, 258502.990200001746416 ], [ 357063.146700002253056, 258491.262200001627207 ], [ 357066.390000000596046, 258489.177799999713898 ], [ 357060.796099998056889, 258483.221400000154972 ], [ 357049.4070999994874, 258494.949400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93930405, "LATITUDE": 18.35667522, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 14.4248400925, "SHAPE_Area": 7.4891620105000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357898.674199998378754, 258570.71680000051856 ], [ 357904.34179999679327, 258568.018899999558926 ], [ 357901.935400001704693, 258566.521600000560284 ], [ 357898.674199998378754, 258570.71680000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-5578-T93", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93185993, "LATITUDE": 18.35628192, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.26662515800001, "SHAPE_Area": 723.38035451799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358646.307499997317791, 258555.515299998223782 ], [ 358659.230099998414516, 258553.087999999523163 ], [ 358667.321900002658367, 258549.776700001209974 ], [ 358681.916500002145767, 258540.396899998188019 ], [ 358711.067800000309944, 258526.070099998265505 ], [ 358715.920100003480911, 258524.421000000089407 ], [ 358713.648599997162819, 258507.092799998819828 ], [ 358646.307499997317791, 258555.515299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96420735, "LATITUDE": 18.35636814, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.325247329000007, "SHAPE_Area": 221.61030959000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355275.334399998188019, 258502.172100000083447 ], [ 355262.420800000429153, 258503.544100001454353 ], [ 355268.673500001430511, 258526.815499998629093 ], [ 355271.088899999856949, 258527.257500000298023 ], [ 355274.33389999717474, 258524.962000001221895 ], [ 355275.334399998188019, 258502.172100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95210171, "LATITUDE": 18.35635177, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.855562673799994, "SHAPE_Area": 82.210258998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356545.870700001716614, 258537.479899998754263 ], [ 356550.780500002205372, 258529.076299998909235 ], [ 356551.710900001227856, 258514.518500000238419 ], [ 356551.007100000977516, 258502.480399999767542 ], [ 356549.331500001251698, 258509.854899998754263 ], [ 356548.426299996674061, 258521.457699999213219 ], [ 356545.901299998164177, 258533.891499999910593 ], [ 356545.870700001716614, 258537.479899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91357613, "LATITUDE": 18.35644584, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.546926290599998, "SHAPE_Area": 37.105734615700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360628.282899998128414, 258564.770799998193979 ], [ 360626.709799997508526, 258560.113800000399351 ], [ 360625.068400003015995, 258563.477899998426437 ], [ 360612.138599999248981, 258566.749600000679493 ], [ 360613.735100001096725, 258568.662500001490116 ], [ 360628.282899998128414, 258564.770799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91352098, "LATITUDE": 18.35575054, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.878829225, "SHAPE_Area": 605.51071451300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360655.946699999272823, 258441.085299998521805 ], [ 360651.949299998581409, 258437.041799999773502 ], [ 360625.818199999630451, 258475.458000000566244 ], [ 360619.286799997091293, 258484.903799999505281 ], [ 360604.62219999730587, 258502.515599999576807 ], [ 360606.202399998903275, 258506.328200001269579 ], [ 360607.770099997520447, 258511.618400000035763 ], [ 360608.560199998319149, 258513.524700000882149 ], [ 360609.343099996447563, 258516.275299999862909 ], [ 360610.917999997735023, 258520.721200000494719 ], [ 360619.602200001478195, 258542.53489999845624 ], [ 360621.970799997448921, 258548.464899998158216 ], [ 360626.709799997508526, 258560.113800000399351 ], [ 360628.282899998128414, 258564.770799998193979 ], [ 360631.482900001108646, 258567.752300001680851 ], [ 360608.6266999989748, 258505.714800000190735 ], [ 360624.101300001144409, 258487.687399998307228 ], [ 360655.946699999272823, 258441.085299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9629873, "LATITUDE": 18.35597687, "OBJECTID_1": 3245, "PARCEL_NO_": "102703016800", "Tax_Legal_": "DOROTHEA 3-Q LT. NORTHSIDE", "Name": "GILHOOLEY, GWYNNETH E.", "Address": "5470 29th Pl SW", "City": "Naples", "State": "Florida", "Zip": 34116, "Country": "United States", "Land_Value": 129500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.495480633, "SHAPE_Area": 5325.2756789799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355451.897100001573563, 258505.9391999989748 ], [ 355384.974200002849102, 258410.610500000417233 ], [ 355363.189400002360344, 258412.120900001376867 ], [ 355368.875699996948242, 258501.882199998944998 ], [ 355393.063199996948242, 258502.291299998760223 ], [ 355397.893899999558926, 258503.175200000405312 ], [ 355405.125600002706051, 258506.189699999988079 ], [ 355435.605400003492832, 258525.226500000804663 ], [ 355443.736800000071526, 258517.271499998867512 ], [ 355450.259300000965595, 258508.881099998950958 ], [ 355451.897100001573563, 258505.9391999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003050500", "MAP": "D9-3029-T85", "PARCEL_NAM": "9E-5", "ACRE": ".21", "LONGITUDE": -64.91369022000001, "LATITUDE": 18.35625297, "OBJECTID_1": 5907, "PARCEL_NO_": "103003050500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9E-5 GT.NORTHSIDE QTR.", "Name": "GRANUM, GUNEVERE", "Address": "PO Box 10152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21000, "Improved_V": 25100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.836149213, "SHAPE_Area": 906.67870717999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360610.917999997735023, 258520.721200000494719 ], [ 360609.868600003421307, 258517.758799999952316 ], [ 360589.5287000015378, 258535.969999998807907 ], [ 360596.18860000371933, 258545.93189999833703 ], [ 360602.560000002384186, 258555.272100001573563 ], [ 360605.785199999809265, 258555.298500001430511 ], [ 360607.351099997758865, 258560.799800001084805 ], [ 360612.138599999248981, 258566.749600000679493 ], [ 360625.068400003015995, 258563.477899998426437 ], [ 360626.709799997508526, 258560.113800000399351 ], [ 360621.970799997448921, 258548.464899998158216 ], [ 360619.602200001478195, 258542.53489999845624 ], [ 360610.917999997735023, 258520.721200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901010900", "MAP": "D9-4007-T87", "PARCEL_NAM": "5D-2", "ACRE": null, "LONGITUDE": -64.93063708, "LATITUDE": 18.35623982, "OBJECTID_1": 4682, "PARCEL_NO_": "102901010900", "Tax_Legal_": "5D-2 MISGUNST GREAT NORTHSIDE QTR", "Name": "VOLLMER, DENNIS D. & SUSAN", "Address": "PO Box 306417", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 138300, "Improved_V": 178300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.18595221300001, "SHAPE_Area": 1759.8579824399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358861.893200002610683, 258522.027199998497963 ], [ 358866.169299997389317, 258493.353399999439716 ], [ 358864.569300003349781, 258491.862700000405312 ], [ 358862.954899996519089, 258492.060600001364946 ], [ 358858.896300002932549, 258495.193799998611212 ], [ 358854.80179999768734, 258502.548500001430511 ], [ 358848.290200002491474, 258509.672400001436472 ], [ 358833.686700001358986, 258520.107599999755621 ], [ 358828.006499998271465, 258524.282900001853704 ], [ 358823.139899998903275, 258527.620600000023842 ], [ 358816.673199996352196, 258529.467500001192093 ], [ 358785.279100000858307, 258523.088899999856949 ], [ 358767.547399997711182, 258522.099399998784065 ], [ 358775.481100000441074, 258537.363000001758337 ], [ 358782.626400001347065, 258550.509300000965595 ], [ 358822.223899997770786, 258540.489799998700619 ], [ 358861.893200002610683, 258522.027199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96563582, "LATITUDE": 18.35618655, "OBJECTID_1": 3178, "PARCEL_NO_": "102703010100", "Tax_Legal_": "DOROTHEA 22F LT. NORTHSIDE", "Name": "SWAN, ALVIN", "Address": "7773 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.254411253, "SHAPE_Area": 2427.0738918699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355143.365299999713898, 258469.850099999457598 ], [ 355088.570200003683567, 258465.390900000929832 ], [ 355101.838799998164177, 258517.006299998611212 ], [ 355145.352700002491474, 258520.528900001198053 ], [ 355146.239900000393391, 258511.036899998784065 ], [ 355145.446199998259544, 258509.552799999713898 ], [ 355134.965899996459484, 258509.255899999290705 ], [ 355135.829800002276897, 258502.508000001311302 ], [ 355140.673000000417233, 258501.914299998432398 ], [ 355143.916299998760223, 258499.829900000244379 ], [ 355144.862899996340275, 258483.372400000691414 ], [ 355143.365299999713898, 258469.850099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604012700", "MAP": "A9-398-T92", "PARCEL_NAM": "21-1", "ACRE": ".50", "LONGITUDE": -64.96826423, "LATITUDE": 18.35622937, "OBJECTID_1": 2672, "PARCEL_NO_": "102604012700", "Tax_Legal_": "DOROTHEA PARCEL 21, LOT 1 LITTLE NORTHSIDE", "Name": "CLAXTON, CLAUDE & CLEONE", "Address": "P O BOX 3407", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69800, "Improved_V": 201000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.038307022, "SHAPE_Area": 2101.21261469 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354878.639499999582767, 258497.6587999984622 ], [ 354867.590300001204014, 258469.492899999022484 ], [ 354846.564999997615814, 258476.497999999672174 ], [ 354799.660400003194809, 258492.368299998342991 ], [ 354812.405000001192093, 258510.837799999862909 ], [ 354819.623999997973442, 258515.329799998551607 ], [ 354826.879000000655651, 258515.600299999117851 ], [ 354854.362000003457069, 258507.803700000047684 ], [ 354870.542199999094009, 258501.603300001472235 ], [ 354878.639499999582767, 258497.6587999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804011300", "MAP": "D9-6118-T96", "PARCEL_NAM": "7G-1", "ACRE": null, "LONGITUDE": -64.93989035, "LATITUDE": 18.35616852, "OBJECTID_1": 4428, "PARCEL_NO_": "102804011300", "Tax_Legal_": "LERKENLUND 7G-1 GT. NORTHSIDE QTR.", "Name": "STRYKER LIVING TRUST", "Address": "7705 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.17721925399999, "SHAPE_Area": 438.28526695 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357813.296400003135204, 258517.096599999815226 ], [ 357816.36879999935627, 258528.271499998867512 ], [ 357837.847599998116493, 258517.023299999535084 ], [ 357892.118699997663498, 258488.336599998176098 ], [ 357829.824000000953674, 258512.3136 ], [ 357813.296400003135204, 258517.096599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804025100", "MAP": "D9-2477-T83", "PARCEL_NAM": "4ACA", "ACRE": null, "LONGITUDE": -64.93672806, "LATITUDE": 18.35617672, "OBJECTID_1": 4555, "PARCEL_NO_": "102804025100", "Tax_Legal_": "LERKENLUND 4ACA GREAT NORTHSIDE QTR", "Name": "BRIN FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61900, "Improved_V": 644100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.78124869800001, "SHAPE_Area": 1391.10458629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358205.610600002110004, 258510.111900001764297 ], [ 358192.072300001978874, 258490.158300001174212 ], [ 358143.431000001728535, 258520.579900000244379 ], [ 358156.159400001168251, 258540.949000000953674 ], [ 358205.610600002110004, 258510.111900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001011300", "MAP": "A9-170-T72", "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.91146354, "LATITUDE": 18.35574357, "OBJECTID_1": 5108, "PARCEL_NO_": "103001011300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL REM OF 8 GR NORTHSIDE QTR", "Name": "MILLIN, AGNES", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 176400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.93501521799999, "SHAPE_Area": 4847.2298196000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360905.091300003230572, 258488.166299998760223 ], [ 360899.930299997329712, 258481.71229999884963 ], [ 360886.366899996995926, 258464.713799998164177 ], [ 360869.632100000977516, 258441.356499999761581 ], [ 360829.876400001347065, 258469.9510000012815 ], [ 360803.102700002491474, 258489.152399998158216 ], [ 360789.537399999797344, 258498.7483000010252 ], [ 360820.11710000038147, 258542.734700001776218 ], [ 360823.668600000441074, 258536.857799999415874 ], [ 360827.002300001680851, 258532.57149999961257 ], [ 360830.336099997162819, 258528.602800000458956 ], [ 360834.622400000691414, 258524.157800000160933 ], [ 360839.861100003123283, 258518.760299999266863 ], [ 360843.988600000739098, 258515.267799999564886 ], [ 360848.433600001037121, 258511.616500001400709 ], [ 360852.402400001883507, 258508.600299999117851 ], [ 360856.68860000371933, 258506.377700001001358 ], [ 360861.768700003623962, 258503.043999999761581 ], [ 360865.419900000095367, 258501.615200001746416 ], [ 360870.3412000015378, 258499.551500000059605 ], [ 360878.596199996769428, 258496.376499999314547 ], [ 360885.104999996721745, 258494.153999999165535 ], [ 360892.725000001490116, 258491.455200001597404 ], [ 360900.979999996721745, 258489.232700001448393 ], [ 360905.091300003230572, 258488.166299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004051300", "MAP": "A9-708-T007", "PARCEL_NAM": "B-25-D", "ACRE": ".02", "LONGITUDE": -64.90555445, "LATITUDE": 18.3563476, "OBJECTID_1": 6295, "PARCEL_NO_": "103004051300", "Tax_Legal_": "B-25 REM ESTATE LOVENLUND NO.2 GT NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 123300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.398392776600005, "SHAPE_Area": 144.675840986 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361459.630599997937679, 258566.930900000035763 ], [ 361487.093800000846386, 258561.4560999982059 ], [ 361459.720499999821186, 258556.377000000327826 ], [ 361459.630599997937679, 258566.930900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003012200", "MAP": "D9-1520-T79", "PARCEL_NAM": "11", "ACRE": "5.75", "LONGITUDE": -64.91066418, "LATITUDE": 18.35470906, "OBJECTID_1": 5618, "PARCEL_NO_": "103003012200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 11 GREAT NORTHSIDE QTR", "Name": "NILES, O", "Address": "15934 Riverside Dr W", "City": "New York", "State": "New York", "Zip": 10032, "Country": "United States", "Land_Value": 265000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1127.1493458100001, "SHAPE_Area": 22418.756805699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360836.106299996376038, 258199.186999998986721 ], [ 360796.994400002062321, 258224.534000001847744 ], [ 360736.096400000154972, 258143.623700000345707 ], [ 360730.234999999403954, 258145.106800001114607 ], [ 360771.692100003361702, 258200.752599999308586 ], [ 360801.986699998378754, 258241.530600000172853 ], [ 360814.74210000038147, 258258.733500000089407 ], [ 360855.396499998867512, 258313.950599998235703 ], [ 360907.181000001728535, 258387.83500000089407 ], [ 360951.004900000989437, 258449.621899999678135 ], [ 360981.279799997806549, 258492.721700001507998 ], [ 361013.14750000089407, 258538.156500000506639 ], [ 361030.677699998021126, 258562.786800000816584 ], [ 361068.053999997675419, 258529.528900001198053 ], [ 361072.116200000047684, 258525.973499998450279 ], [ 361013.171899996697903, 258440.631499998271465 ], [ 361005.976199999451637, 258433.395399998873472 ], [ 360988.442400000989437, 258409.187199998646975 ], [ 360975.690600000321865, 258391.562100000679493 ], [ 360970.111100003123283, 258383.917100001126528 ], [ 360836.106299996376038, 258199.186999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96179476, "LATITUDE": 18.35610846, "OBJECTID_1": 3188, "PARCEL_NO_": "102703011200", "Tax_Legal_": "DOROTHEA 4-6 LT. NORTHSIDE", "Name": "GORDON, MATTHEWC", "Address": "Po Box 15", "City": "Sandisfield", "State": "Massachusetts", "Zip": 1255, "Country": "United States", "Land_Value": 101400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.39050205699999, "SHAPE_Area": 2557.3660767299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355545.670299999415874, 258478.420200001448393 ], [ 355532.968900002539158, 258454.884799998253584 ], [ 355510.325599998235703, 258462.510000001639128 ], [ 355493.366099998354912, 258465.537599999457598 ], [ 355488.512000001966953, 258467.397700000554323 ], [ 355515.512999996542931, 258516.170200001448393 ], [ 355524.413000002503395, 258512.654399998486042 ], [ 355532.490599997341633, 258511.031800001859665 ], [ 355563.141199998557568, 258510.016100000590086 ], [ 355545.670299999415874, 258478.420200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95940519, "LATITUDE": 18.35607999, "OBJECTID_1": 3230, "PARCEL_NO_": "102703015200", "Tax_Legal_": "BONNE RESOLUTION 10-4 LT NORTHSIDE", "Name": "BERRY, MARIE C", "Address": "PO Box 304854", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76600, "Improved_V": 237300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.03999227700001, "SHAPE_Area": 1590.6239429100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355807.890699997544289, 258481.090199999511242 ], [ 355793.328599996864796, 258453.6418999992311 ], [ 355765.806199997663498, 258478.744199998676777 ], [ 355752.007100000977516, 258489.396999999880791 ], [ 355751.766199998557568, 258517.681600000709295 ], [ 355798.796599999070168, 258487.035799998790026 ], [ 355807.890699997544289, 258481.090199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016500", "MAP": "D9-4534-T88", "PARCEL_NAM": "7E-4", "ACRE": ".72", "LONGITUDE": -64.936948, "LATITUDE": 18.35591316, "OBJECTID_1": 4478, "PARCEL_NO_": "102804016500", "Tax_Legal_": "LERKENLUND 7E-4 GT. NORTHSIDE", "Name": "PETERSEN, DONALD & GERMAIN", "Address": "PO Box 305065", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 160000, "Improved_V": 246600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.91291576999998, "SHAPE_Area": 2926.4049225600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358105.635499998927116, 258480.381099998950958 ], [ 358121.602099999785423, 258523.602699998766184 ], [ 358192.97749999910593, 258478.555599998682737 ], [ 358205.980999998748302, 258466.629700001329184 ], [ 358210.887199997901917, 258458.648299999535084 ], [ 358209.285400003194809, 258457.368599999696016 ], [ 358194.760999999940395, 258458.51630000025034 ], [ 358122.027400001883507, 258477.341600000858307 ], [ 358105.635499998927116, 258480.381099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003018900", "MAP": "D9-8143-T008", "PARCEL_NAM": "10D", "ACRE": null, "LONGITUDE": -64.91014491, "LATITUDE": 18.35605585, "OBJECTID_1": 5711, "PARCEL_NO_": "103003018900", "Tax_Legal_": "10-D ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "John L Moorhead Amended and Restated Revoc Trust", "Address": "Po Box 182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.754184485, "SHAPE_Area": 1828.28575056 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360981.279799997806549, 258492.721700001507998 ], [ 360954.495200000703335, 258513.189599998295307 ], [ 360987.178199999034405, 258557.575699999928474 ], [ 361013.14750000089407, 258538.156500000506639 ], [ 360981.279799997806549, 258492.721700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96469082, "LATITUDE": 18.35593783, "OBJECTID_1": 3186, "PARCEL_NO_": "102703011000", "Tax_Legal_": "3-1,-2,-3,3-H-1,-2&3-4 DOROTHEA LITTLE NORTHSIDE QTR", "Name": "HEIRS OF JOHN JEROME BRYAN", "Address": "EST.DOROTHEA #3C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.05445573, "SHAPE_Area": 570.28080186600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355212.377300001680851, 258509.25620000064373 ], [ 355211.608800001442432, 258504.816899999976158 ], [ 355212.503200002014637, 258494.480700001120567 ], [ 355219.153300002217293, 258471.103700000792742 ], [ 355223.263999998569489, 258461.849199999123812 ], [ 355225.700900003314018, 258459.758299998939037 ], [ 355228.976499997079372, 258453.874400001019239 ], [ 355230.6503000035882, 258446.710999999195337 ], [ 355232.460699997842312, 258423.505499999970198 ], [ 355231.674099996685982, 258421.177000001072884 ], [ 355226.026399999856949, 258421.552999999374151 ], [ 355225.056400001049042, 258440.754599999636412 ], [ 355223.353900000452995, 258451.295299999415874 ], [ 355220.897200003266335, 258455.708200000226498 ], [ 355217.645000003278255, 258458.847899999469519 ], [ 355212.708200000226498, 258470.417700000107288 ], [ 355206.040100000798702, 258495.9054000005126 ], [ 355205.919600002467632, 258510.047699999064207 ], [ 355212.377300001680851, 258509.25620000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96440836, "LATITUDE": 18.35592722, "OBJECTID_1": 3225, "PARCEL_NO_": "102703014600", "Tax_Legal_": "3H ESTATE DOROTHEA No.7 LITTLE NORTHSIDE QTR.", "Name": "FAMIGLIETTE, ALLEN", "Address": "815 Cabin Point Dr", "City": "Montross", "State": "Virginia", "Zip": 22520, "Country": "United States", "Land_Value": 177200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.11087306600001, "SHAPE_Area": 4474.8319346099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355272.014899998903275, 258418.551899999380112 ], [ 355231.674099996685982, 258421.177000001072884 ], [ 355232.460699997842312, 258423.505499999970198 ], [ 355230.6503000035882, 258446.710999999195337 ], [ 355228.976499997079372, 258453.874400001019239 ], [ 355225.700900003314018, 258459.758299998939037 ], [ 355223.263999998569489, 258461.849199999123812 ], [ 355219.153300002217293, 258471.103700000792742 ], [ 355212.503200002014637, 258494.480700001120567 ], [ 355211.608800001442432, 258504.816899999976158 ], [ 355212.377300001680851, 258509.25620000064373 ], [ 355239.822499997913837, 258505.892200000584126 ], [ 355240.666599996387959, 258501.4662000015378 ], [ 355243.92960000038147, 258497.059900000691414 ], [ 355250.408900000154972, 258493.735399998724461 ], [ 355256.045900002121925, 258494.625999998301268 ], [ 355260.045100003480911, 258498.458399999886751 ], [ 355262.420800000429153, 258503.544100001454353 ], [ 355275.334399998188019, 258502.172100000083447 ], [ 355279.277099996805191, 258417.978000000119209 ], [ 355272.014899998903275, 258418.551899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803016700", "MAP": "C9-248-T80", "PARCEL_NAM": "11-D-8", "ACRE": ".50", "LONGITUDE": -64.94285076, "LATITUDE": 18.35613346, "OBJECTID_1": 4253, "PARCEL_NO_": "102803016700", "Tax_Legal_": "LERKENLUND 11D-8 GT NORTHSIDE", "Name": "NEELY, DAVID F & OLGA Z. ROSADO", "Address": "PO BOX 303423", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 462600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.82125359599999, "SHAPE_Area": 1768.28630097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357564.568800002336502, 258507.609499998390675 ], [ 357546.995399996638298, 258488.045099999755621 ], [ 357529.283500000834465, 258484.73369999974966 ], [ 357505.043700002133846, 258490.445900000631809 ], [ 357508.213200002908707, 258497.015799999237061 ], [ 357507.342200003564358, 258504.607999999076128 ], [ 357505.699000000953674, 258508.183100000023842 ], [ 357500.00450000166893, 258514.047200001776218 ], [ 357489.455899998545647, 258521.771299999207258 ], [ 357490.226199999451637, 258525.999499998986721 ], [ 357512.014600001275539, 258524.066899999976158 ], [ 357533.016500003635883, 258519.805799998342991 ], [ 357555.66160000115633, 258511.9695999994874 ], [ 357564.568800002336502, 258507.609499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96134014, "LATITUDE": 18.35605628, "OBJECTID_1": 3189, "PARCEL_NO_": "102703011300", "Tax_Legal_": "DOROTHEA 4-7 LITTLE NORTHSIDE", "Name": "ESANNASON, ANTHONY", "Address": "1109 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64900, "Improved_V": 147400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.938687673, "SHAPE_Area": 2021.7236122300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355581.469899997115135, 258440.927400000393391 ], [ 355545.670299999415874, 258478.420200001448393 ], [ 355563.141199998557568, 258510.016100000590086 ], [ 355591.42509999871254, 258502.859299998730421 ], [ 355597.062100000679493, 258503.749800000339746 ], [ 355601.07209999859333, 258506.315799999982119 ], [ 355590.829199999570847, 258478.156500000506639 ], [ 355581.469899997115135, 258440.927400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703016900", "MAP": "D9-2757-T84", "PARCEL_NAM": "3-R", "ACRE": null, "LONGITUDE": -64.96265402, "LATITUDE": 18.35575609, "OBJECTID_1": 3246, "PARCEL_NO_": "102703016900", "Tax_Legal_": "DOROTHEA 3-R LT. NORTHSIDE", "Name": "VIOLA LIVING TRUST", "Address": "6385 Saxon Meadow Drive", "City": "Leland", "State": "North Carolina", "Zip": 284516081, "Country": "United States", "Land_Value": 129500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.679893628, "SHAPE_Area": 3991.5372298100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355473.185099996626377, 258470.424699999392033 ], [ 355441.208599999547005, 258406.932700000703335 ], [ 355384.974200002849102, 258410.610500000417233 ], [ 355451.897100001573563, 258505.9391999989748 ], [ 355458.486000001430511, 258489.738899998366833 ], [ 355473.165100000798702, 258470.438499998301268 ], [ 355473.185099996626377, 258470.424699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91462911000001, "LATITUDE": 18.35604032, "OBJECTID_1": 5593, "PARCEL_NO_": "103003010200", "Tax_Legal_": "9AB ST JOSEPH & ROSENDAHL GR NORTHSIDE QTR", "Name": "BRANFORD & OTHERS, LORRAINE INNIS", "Address": "6109 St Joseph and Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19900, "Improved_V": 57200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.68639564899999, "SHAPE_Area": 1379.53140508 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360482.721500001847744, 258518.827599998563528 ], [ 360512.326700001955032, 258545.878800000995398 ], [ 360535.108499996364117, 258522.000599998980761 ], [ 360510.366300001740456, 258492.033900000154972 ], [ 360487.582800000905991, 258516.123199999332428 ], [ 360482.721500001847744, 258518.827599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904010600", "MAP": "D9-5712-T94", "PARCEL_NAM": "1-J-REM", "ACRE": ".30", "LONGITUDE": -64.91942229, "LATITUDE": 18.35608419, "OBJECTID_1": 4926, "PARCEL_NO_": "102904010600", "Tax_Legal_": "1-J REM ST. JOSEPH & ROSENDAHL NO. 4 GREAT NORTHSIDE QUARTER", "Name": "DANIEL, LENNART E.", "Address": "PO Box 503116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.906495, "SHAPE_Area": 942.26819271500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360023.175599999725819, 258508.944699998944998 ], [ 359992.591399997472763, 258502.150499999523163 ], [ 359985.001999996602535, 258541.140700001269579 ], [ 360001.17679999768734, 258535.573499999940395 ], [ 360022.230800002813339, 258525.191199999302626 ], [ 360023.175599999725819, 258508.944699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003050400", "MAP": "D9-3029-T85", "PARCEL_NAM": "9E-4", "ACRE": ".21", "LONGITUDE": -64.91384235, "LATITUDE": 18.35598198, "OBJECTID_1": 5906, "PARCEL_NO_": "103003050400", "Tax_Legal_": "ST JOSEPH & ROSEN9E-4&1/4INT.ROA 9E-3,5&6 ST.JOS&ROSN", "Name": "ERIE ABARELL MATTHIAS REVOC FAMILY TRUST", "Address": "PO Box 502425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21000, "Improved_V": 264200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.051810859, "SHAPE_Area": 840.885325792 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360604.62219999730587, 258502.515599999576807 ], [ 360601.165500000119209, 258490.467300001531839 ], [ 360573.982299998402596, 258512.844999998807907 ], [ 360581.856600001454353, 258524.494100000709295 ], [ 360589.5287000015378, 258535.969999998807907 ], [ 360609.868600003421307, 258517.758799999952316 ], [ 360609.343099996447563, 258516.275299999862909 ], [ 360608.560199998319149, 258513.524700000882149 ], [ 360607.770099997520447, 258511.618400000035763 ], [ 360606.202399998903275, 258506.328200001269579 ], [ 360604.62219999730587, 258502.515599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004051300", "MAP": "C9-282-T83", "PARCEL_NAM": "B-25-B", "ACRE": null, "LONGITUDE": -64.90629407, "LATITUDE": 18.3562688, "OBJECTID_1": 6295, "PARCEL_NO_": "103004051300", "Tax_Legal_": "B-25 REM ESTATE LOVENLUND NO.2 GT NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 123300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.910725012, "SHAPE_Area": 2781.2746115700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361365.556400001049042, 258535.130199998617172 ], [ 361345.441699996590614, 258529.899300001561642 ], [ 361342.124700002372265, 258540.637899998575449 ], [ 361339.637500002980232, 258548.63910000026226 ], [ 361335.5033999979496, 258560.637600000947714 ], [ 361348.38459999859333, 258563.065099999308586 ], [ 361459.630599997937679, 258566.930900000035763 ], [ 361459.720499999821186, 258556.377000000327826 ], [ 361442.021200001239777, 258551.587999999523163 ], [ 361426.737199999392033, 258547.241099998354912 ], [ 361399.390900000929832, 258538.995700001716614 ], [ 361365.556400001049042, 258535.130199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003060200", "MAP": "D9-1601-T80", "PARCEL_NAM": "B-11", "ACRE": ".34", "LONGITUDE": -64.90912314000001, "LATITUDE": 18.35599056, "OBJECTID_1": 5933, "PARCEL_NO_": "103003060200", "Tax_Legal_": "LOVENLUND B-11 GT NORTHSIDE QTR", "Name": "FLEMING, MAUREEN", "Address": "PO BOX 303410", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.04261848600001, "SHAPE_Area": 1212.6758762699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361120.721500001847744, 258499.773499999195337 ], [ 361105.514799997210503, 258486.35020000115037 ], [ 361088.362899996340275, 258511.963199999183416 ], [ 361072.116200000047684, 258525.973499998450279 ], [ 361068.053999997675419, 258529.528900001198053 ], [ 361063.877199999988079, 258533.24549999833107 ], [ 361073.153899997472763, 258543.561900001019239 ], [ 361073.576999999582767, 258554.148499999195337 ], [ 361079.180600002408028, 258548.618400000035763 ], [ 361110.957599997520447, 258510.037200000137091 ], [ 361120.721500001847744, 258499.773499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604012800", "MAP": "A9-398-T92", "PARCEL_NAM": "21-2", "ACRE": ".50", "LONGITUDE": -64.9677789, "LATITUDE": 18.35589303, "OBJECTID_1": 2673, "PARCEL_NO_": "102604012800", "Tax_Legal_": "DOROTHEA PARCEL 21, LOT 2 LITTLE NORTHSIDE", "Name": "MARTIN, TYRONE & MARIA A", "Address": "PO Box 421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 69800, "Improved_V": 412300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.04470271299999, "SHAPE_Area": 2134.0561258900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354917.76860000193119, 258447.94990000128746 ], [ 354902.76519999653101, 258410.674600001424551 ], [ 354867.590300001204014, 258469.492899999022484 ], [ 354878.639499999582767, 258497.6587999984622 ], [ 354888.356600001454353, 258492.883200000971556 ], [ 354894.850199997425079, 258487.870099999010563 ], [ 354907.950800001621246, 258464.545899998396635 ], [ 354911.228200003504753, 258458.4510000012815 ], [ 354913.68129999935627, 258454.460299998521805 ], [ 354917.76860000193119, 258447.94990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704052400", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-13", "ACRE": "0.52", "LONGITUDE": -64.95126836, "LATITUDE": 18.35588607, "OBJECTID_1": 3640, "PARCEL_NO_": "102704052400", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-13 LITTLE NORTHSIDE QTR", "Name": "RHYMER, GRACE A.", "Address": "PO Box 307395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 165000, "Improved_V": 253200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.05267851100001, "SHAPE_Area": 2116.3568940800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356609.023800000548363, 258507.388199999928474 ], [ 356640.437600001692772, 258511.445000000298023 ], [ 356648.102600000798702, 258463.589499998837709 ], [ 356653.870899997651577, 258449.071199998259544 ], [ 356666.098600000143051, 258433.550400000065565 ], [ 356680.723700001835823, 258420.582299999892712 ], [ 356680.743500001728535, 258418.260400000959635 ], [ 356672.666000001132488, 258419.883099999278784 ], [ 356658.093000002205372, 258426.729899998754263 ], [ 356644.297600001096725, 258436.960499998182058 ], [ 356636.974299997091293, 258444.711100000888109 ], [ 356628.796099998056889, 258458.154100000858307 ], [ 356627.170900002121925, 258459.618500001728535 ], [ 356625.511500000953674, 258465.093299999833107 ], [ 356623.056599996984005, 258469.295099999755621 ], [ 356618.153999999165535, 258476.854299999773502 ], [ 356614.849600002169609, 258486.11540000140667 ], [ 356612.322800002992153, 258498.760400000959635 ], [ 356609.023800000548363, 258507.388199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703017300", "MAP": "D9-5594-T93", "PARCEL_NAM": "9-3", "ACRE": "0.50", "LONGITUDE": -64.95818154, "LATITUDE": 18.35602096, "OBJECTID_1": 3250, "PARCEL_NO_": "102703017300", "Tax_Legal_": "9-3 BONNE RESOLUTION LITTLE NORTHSIDE QTR.", "Name": "ALAIN JEAN BERRY REVOCABLE TRUST & JUNNEL BERRY", "Address": "9-3 Estate Bonne Esperance", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48600, "Improved_V": 474000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.108278418, "SHAPE_Area": 2860.5871247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355941.004299998283386, 258453.369199998676777 ], [ 355905.555399999022484, 258449.70160000026226 ], [ 355903.829499997198582, 258462.986400000751019 ], [ 355880.330399997532368, 258465.791200000792742 ], [ 355870.711499996483326, 258466.9391999989748 ], [ 355878.574799999594688, 258493.177200000733137 ], [ 355882.206000000238419, 258504.696100000292063 ], [ 355885.364000000059605, 258515.146499998867512 ], [ 355935.023900002241135, 258492.794799998402596 ], [ 355941.004299998283386, 258453.369199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803018500", "MAP": "D9-2831-T84", "PARCEL_NAM": "9A-7", "ACRE": null, "LONGITUDE": -64.94566286, "LATITUDE": 18.35583577, "OBJECTID_1": 4268, "PARCEL_NO_": "102803018500", "Tax_Legal_": "3A-26 ST.PETER&9A-7 LERKENLUND LT.NORTHSIDE & GT. NORTHSIDE", "Name": "FERREYRA, CARLOS & MATTHEW KIEFFER", "Address": "8168 Crown Bay Marina 310480 No", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89100, "Improved_V": 397900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.35340676300001, "SHAPE_Area": 1425.23656093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357210.879199996590614, 258452.644600000232458 ], [ 357223.480999998748302, 258500.713100001215935 ], [ 357251.100299999117851, 258483.090199999511242 ], [ 357254.343500003218651, 258481.005800001323223 ], [ 357228.904700003564358, 258438.156700000166893 ], [ 357221.586800001561642, 258445.274000000208616 ], [ 357211.041799999773502, 258452.575899999588728 ], [ 357210.879199996590614, 258452.644600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604014100", "MAP": "D9-5463-T93", "PARCEL_NAM": "21-17", "ACRE": ".52", "LONGITUDE": -64.96855472, "LATITUDE": 18.35598803, "OBJECTID_1": 2686, "PARCEL_NO_": "102604014100", "Tax_Legal_": "DOROTHEA PARCEL 21,LOT#17 LT.NORTHSIDE QTR.", "Name": "EVANS, AVERY D", "Address": "PO Box 11882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 490600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.85156914000001, "SHAPE_Area": 2005.7231268 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354799.242499999701977, 258446.768699999898672 ], [ 354774.970399998128414, 258456.280299998819828 ], [ 354799.660400003194809, 258492.368299998342991 ], [ 354846.564999997615814, 258476.497999999672174 ], [ 354827.483199998736382, 258444.677799999713898 ], [ 354808.869699999690056, 258452.546999998390675 ], [ 354799.242499999701977, 258446.768699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93132968, "LATITUDE": 18.35585646, "OBJECTID_1": 4908, "PARCEL_NO_": "102903040200", "Tax_Legal_": "MISGUNST 5K GR NORTHSIDE QTR", "Name": "WILLIAMS, CORNEL & LENA S.", "Address": "PO Box 305814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 138400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.94956496100002, "SHAPE_Area": 4229.3993332 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358713.648599997162819, 258507.092799998819828 ], [ 358715.920100003480911, 258524.421000000089407 ], [ 358738.56700000166893, 258516.373700000345707 ], [ 358771.633000001311302, 258515.800000000745058 ], [ 358792.101899996399879, 258479.448300000280142 ], [ 358780.822499997913837, 258478.300599999725819 ], [ 358768.736800000071526, 258477.146200001239777 ], [ 358753.79450000077486, 258432.694200001657009 ], [ 358710.741599999368191, 258469.705400001257658 ], [ 358713.648599997162819, 258507.092799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704052500", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-30", "ACRE": "0.56", "LONGITUDE": -64.95156335, "LATITUDE": 18.35574526, "OBJECTID_1": 3641, "PARCEL_NO_": "102704052500", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-30 LT NORTHSIDE", "Name": "GREAUX, JOHN G & MARGARET D BRYAN", "Address": "PO Box 1257", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44500, "Improved_V": 270000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.900805582, "SHAPE_Area": 2364.8607441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356637.857900001108646, 258435.64130000025034 ], [ 356596.966099999845028, 258408.28660000115633 ], [ 356596.928400002419949, 258412.719300001859665 ], [ 356599.343699999153614, 258413.161200001835823 ], [ 356599.291599996387959, 258419.282499998807907 ], [ 356596.064499996602535, 258419.467199999839067 ], [ 356595.209700003266335, 258425.159699998795986 ], [ 356589.067400000989437, 258483.582400001585484 ], [ 356589.7837999984622, 258494.142900001257658 ], [ 356592.136200003325939, 258501.972600001841784 ], [ 356595.330899998545647, 258505.587400000542402 ], [ 356597.740800000727177, 258506.662599999457598 ], [ 356600.16160000115633, 258506.4712999984622 ], [ 356604.211099997162819, 258504.393500000238419 ], [ 356606.687600001692772, 258497.6587999984622 ], [ 356609.226999998092651, 258483.536299999803305 ], [ 356614.170999996364117, 258471.12220000103116 ], [ 356624.82209999859333, 258451.366599999368191 ], [ 356637.857900001108646, 258435.64130000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901010800", "MAP": "D9-3596-T86", "PARCEL_NAM": "5D-1", "ACRE": ".8", "LONGITUDE": -64.93068294, "LATITUDE": 18.35599107, "OBJECTID_1": 4681, "PARCEL_NO_": "102901010800", "Tax_Legal_": "5D-1 MISGUNST GREAT NORTHSIDE", "Name": "THOMAS, SHAWN E and LAUREN E", "Address": "PO BOX 10031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 143100, "Improved_V": 368000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.12944013800001, "SHAPE_Area": 2414.1359808000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358831.582400001585484, 258483.149000000208616 ], [ 358792.101899996399879, 258479.448300000280142 ], [ 358771.633000001311302, 258515.800000000745058 ], [ 358786.139399997889996, 258516.763099998235703 ], [ 358817.533399999141693, 258523.141800001263618 ], [ 358824.818999998271465, 258519.823899999260902 ], [ 358832.943300001323223, 258512.713199999183416 ], [ 358842.67119999974966, 258506.671100001782179 ], [ 358848.363899998366833, 258501.018199998885393 ], [ 358857.344800002872944, 258488.003899998962879 ], [ 358860.589900001883507, 258485.708399999886751 ], [ 358831.582400001585484, 258483.149000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91821788, "LATITUDE": 18.35600246, "OBJECTID_1": 4923, "PARCEL_NO_": "102904010100", "Tax_Legal_": "5A-1 ST.JOSEPH&ROSENDAHL GREAT NORTHSIDE QTR", "Name": "ESANNASON, ANTON E. & NOREEN D. -", "Address": "PO Box 305242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30700, "Improved_V": 243500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.60898316399999, "SHAPE_Area": 1406.84876293 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360141.111199997365475, 258484.789799999445677 ], [ 360121.631999999284744, 258499.618000000715256 ], [ 360119.164499998092651, 258505.297400001436472 ], [ 360102.194200001657009, 258509.591400001198053 ], [ 360106.983499996364117, 258515.330200001597404 ], [ 360107.770000003278255, 258517.658599998801947 ], [ 360107.7179000005126, 258523.779899999499321 ], [ 360110.901799999177456, 258528.661100000143051 ], [ 360114.909999996423721, 258531.438099998980761 ], [ 360118.126199997961521, 258532.519900001585484 ], [ 360128.624499998986721, 258530.706000000238419 ], [ 360156.942500002682209, 258519.538699999451637 ], [ 360141.111199997365475, 258484.789799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001040600", "MAP": "C9-282-T83", "PARCEL_NAM": "B-24A-1", "ACRE": null, "LONGITUDE": -64.90701636, "LATITUDE": 18.356155, "OBJECTID_1": 5280, "PARCEL_NO_": "103001040600", "Tax_Legal_": "B-24 REM LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "DUN RUN DEVELOPMENT LLC", "Address": "3100 Monticello Ave", "City": "Dallas", "State": "Texas", "Zip": 75205, "Country": "United States", "Land_Value": 267200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.860675953, "SHAPE_Area": 1773.4741812100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361314.061999998986721, 258521.831999998539686 ], [ 361301.209600001573563, 258516.027300000190735 ], [ 361284.9341000020504, 258533.414900001138449 ], [ 361280.045900002121925, 258539.285500001162291 ], [ 361295.274099998176098, 258550.175900001078844 ], [ 361304.105800002813339, 258554.681099999696016 ], [ 361335.5033999979496, 258560.637600000947714 ], [ 361339.637500002980232, 258548.63910000026226 ], [ 361342.124700002372265, 258540.637899998575449 ], [ 361345.441699996590614, 258529.899300001561642 ], [ 361314.061999998986721, 258521.831999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704052800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95195531, "LATITUDE": 18.35595916, "OBJECTID_1": 3644, "PARCEL_NO_": "102704052800", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-16 LITTLE NORTHSIDE", "Name": "MARTIN (LIFE ESTATE), DENISE", "Address": "PO Box 6492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43200, "Improved_V": 349700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.85802194300001, "SHAPE_Area": 1511.5294345899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356585.231799997389317, 258460.541799999773502 ], [ 356543.339500002563, 258455.977000001817942 ], [ 356548.767899997532368, 258481.352699998766184 ], [ 356551.026799999177456, 258500.158500000834465 ], [ 356551.007100000977516, 258502.480399999767542 ], [ 356584.110799998044968, 258497.473999999463558 ], [ 356583.450199998915195, 258480.370000001043081 ], [ 356585.231799997389317, 258460.541799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96507801, "LATITUDE": 18.35595455, "OBJECTID_1": 3181, "PARCEL_NO_": "102703010400", "Tax_Legal_": "DOROTHEA 22J LT. NORTHSIDE", "Name": "SWAN, JEREMY", "Address": "PO Box 825", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 58100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.24521663300001, "SHAPE_Area": 2185.4629647199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355202.445500001311302, 258444.580299999564886 ], [ 355153.273000001907349, 258442.700199998915195 ], [ 355156.899999998509884, 258490.225900001823902 ], [ 355201.24719999730587, 258490.588899999856949 ], [ 355202.445500001311302, 258444.580299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95992339, "LATITUDE": 18.35602782, "OBJECTID_1": 3202, "PARCEL_NO_": "102703012400", "Tax_Legal_": "DOROTHEA 5A &PORTION OF 4A BONNE RESOLUTION", "Name": "KALLOO, FLORENCE (TRUSTEE)", "Address": "7917 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 174800, "Improved_V": 150800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.45779739, "SHAPE_Area": 1562.55711084 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355696.211999997496605, 258474.2060999982059 ], [ 355707.738899998366833, 258510.344300001859665 ], [ 355712.366599999368191, 258504.482400000095367 ], [ 355718.863799996674061, 258499.047200001776218 ], [ 355726.160199999809265, 258494.462799999862909 ], [ 355748.857400000095367, 258480.505300000309944 ], [ 355745.864100001752377, 258453.249800000339746 ], [ 355710.260499998927116, 258467.734900001436472 ], [ 355696.211999997496605, 258474.2060999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004054000", "MAP": "C9-282-T83", "PARCEL_NAM": "B-24A-2", "ACRE": null, "LONGITUDE": -64.90742366000001, "LATITUDE": 18.35594863, "OBJECTID_1": 6320, "PARCEL_NO_": "103004054000", "Tax_Legal_": "B-24A-2 LOVENLUND No.2 GREAT NORTHSIDE QUARTER", "Name": "THE MANDARIN GROUP LLC", "Address": "PO Box 9020020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8020802, "Country": "United States", "Land_Value": 35100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.189484548, "SHAPE_Area": 1361.6593552500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361301.209600001573563, 258516.027300000190735 ], [ 361295.586999997496605, 258513.44819999858737 ], [ 361284.365099996328354, 258505.545899998396635 ], [ 361277.164099998772144, 258498.942999999970198 ], [ 361272.376599997282028, 258492.993200000375509 ], [ 361239.148699998855591, 258512.564100001007318 ], [ 361280.045900002121925, 258539.285500001162291 ], [ 361284.9341000020504, 258533.414900001138449 ], [ 361301.209600001573563, 258516.027300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96721773, "LATITUDE": 18.35591297, "OBJECTID_1": 2675, "PARCEL_NO_": "102604013000", "Tax_Legal_": "DOROTHEA PARCEL NO. 21, LOT 4. LITTLE NORTHSIDE", "Name": "DURANTE, LILYMAE", "Address": "PO Box 11207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.751858704, "SHAPE_Area": 2122.3158673299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354986.866999998688698, 258477.22410000115633 ], [ 354959.831799998879433, 258432.462099999189377 ], [ 354917.76860000193119, 258447.94990000128746 ], [ 354913.68129999935627, 258454.460299998521805 ], [ 354924.105899997055531, 258461.300599999725819 ], [ 354956.945299997925758, 258487.322799999266863 ], [ 354986.866999998688698, 258477.22410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803016500", "MAP": "C9-248-T80", "PARCEL_NAM": "11-D-5", "ACRE": ".50", "LONGITUDE": -64.94280945, "LATITUDE": 18.35590293, "OBJECTID_1": 4251, "PARCEL_NO_": "102803016500", "Tax_Legal_": "LERKENLUND 11D-5 GT NORTHSIDE", "Name": "UNGER, DAVID W. & SUSAN SHOWERS", "Address": "PO Box 692", "City": "Dania", "State": "Florida", "Zip": 33004, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.97615029299999, "SHAPE_Area": 2035.93707371 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357584.017399996519089, 258496.369600001722574 ], [ 357571.175700001418591, 258489.29839999973774 ], [ 357529.551399998366833, 258453.282900001853704 ], [ 357496.318199999630451, 258473.486999999731779 ], [ 357480.931699998676777, 258481.171599999070168 ], [ 357481.701999999582767, 258485.399700000882149 ], [ 357502.619400002062321, 258491.059399999678135 ], [ 357505.043700002133846, 258490.445900000631809 ], [ 357529.283500000834465, 258484.73369999974966 ], [ 357546.995399996638298, 258488.045099999755621 ], [ 357564.568800002336502, 258507.609499998390675 ], [ 357571.046300001442432, 258504.496100001037121 ], [ 357584.017399996519089, 258496.369600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803013500", "MAP": "F9-1752-T66", "PARCEL_NAM": "9-4", "ACRE": "0.31", "LONGITUDE": -64.94376082, "LATITUDE": 18.35586306, "OBJECTID_1": 4204, "PARCEL_NO_": "102803013500", "Tax_Legal_": "LERKENLUND 9-4 GR NORTHSIDE", "Name": "KRAGEL, MARK & ANTOINETTE C. B.", "Address": "PO Box 8649", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77300, "Improved_V": 274600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.10548075700001, "SHAPE_Area": 1254.8997277200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357455.107699997723103, 258481.371199999004602 ], [ 357439.572899997234344, 258449.90260000154376 ], [ 357406.139200001955032, 258471.174600001424551 ], [ 357424.6283999979496, 258498.062600001692772 ], [ 357454.961900003254414, 258481.421300001442432 ], [ 357455.107699997723103, 258481.371199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904019300", "MAP": "D9-5555-T93", "PARCEL_NAM": "1-I-1", "ACRE": "0.71", "LONGITUDE": -64.91897155, "LATITUDE": 18.35569787, "OBJECTID_1": 5003, "PARCEL_NO_": "102904019300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-I-1", "Name": "WOODS, JOHN & JANETTE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70600, "Improved_V": 341600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.924411378, "SHAPE_Area": 3204.15338638 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360078.218800000846386, 258484.275100000202656 ], [ 360079.467500001192093, 258432.356300000101328 ], [ 360062.491700001060963, 258437.283599998801947 ], [ 360059.264700002968311, 258437.468299999833107 ], [ 360021.812899999320507, 258479.591499999165535 ], [ 360023.175599999725819, 258508.944699998944998 ], [ 360022.230800002813339, 258525.191199999302626 ], [ 360053.019900001585484, 258507.922400001436472 ], [ 360063.577500000596046, 258499.142900001257658 ], [ 360067.645000003278255, 258494.954300001263618 ], [ 360069.282799996435642, 258492.01240000128746 ], [ 360078.218800000846386, 258484.275100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012200", "MAP": null, "PARCEL_NAM": "5 REM", "ACRE": null, "LONGITUDE": -64.93270203, "LATITUDE": 18.35519346, "OBJECTID_1": 4437, "PARCEL_NO_": "102804012200", "Tax_Legal_": "PAR 5 REM, 5L-1, EASEMENT \"A\" & 5M GREEN BELT MISGUNST 6 GREAT NORTHSIDE QTR", "Name": "CONN J & DEBORAH B. DAVIS REVOC TR", "Address": "PO Box 7997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 621.57606072399994, "SHAPE_Area": 17400.128781799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358576.532700002193451, 258321.685899998992682 ], [ 358596.804499998688698, 258403.122800000011921 ], [ 358524.776500001549721, 258433.775100000202656 ], [ 358518.851800002157688, 258466.657200001180172 ], [ 358513.755000002682209, 258497.013000000268221 ], [ 358564.437600001692772, 258510.937800001353025 ], [ 358573.379000000655651, 258502.567200001329184 ], [ 358586.319600000977516, 258498.029100000858307 ], [ 358595.228500001132488, 258493.458000000566244 ], [ 358612.258199997246265, 258482.198300000280142 ], [ 358615.510399997234344, 258479.058499999344349 ], [ 358619.595899999141693, 258472.759100001305342 ], [ 358630.169699996709824, 258462.079900000244379 ], [ 358635.875, 258454.949400000274181 ], [ 358644.875699996948242, 258439.613200001418591 ], [ 358647.476300001144409, 258418.314100001007318 ], [ 358649.963600002229214, 258410.312899999320507 ], [ 358656.507600001990795, 258399.389600001275539 ], [ 358658.976899996399879, 258393.499200001358986 ], [ 358666.329000003635883, 258382.371399998664856 ], [ 358672.149400003254414, 258361.731899999082088 ], [ 358675.42679999768734, 258355.636999998241663 ], [ 358676.294200003147125, 258348.466899998486042 ], [ 358649.311200000345707, 258297.583599999547005 ], [ 358633.122000001370907, 258304.839400000870228 ], [ 358576.532700002193451, 258321.685899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801016800", "MAP": "C9-248-T80", "PARCEL_NAM": "11-D-9", "ACRE": ".55", "LONGITUDE": -64.94164754000001, "LATITUDE": 18.35573685, "OBJECTID_1": 3745, "PARCEL_NO_": "102801016800", "Tax_Legal_": "LERKENLUND 11D-9 GT.NORTHSIDE QTR.", "Name": "ROBERTS, M. F. & DODSON, J. D", "Address": "PO Box 6516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.56156702599998, "SHAPE_Area": 1731.7371815199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357611.590400002896786, 258483.306099999696016 ], [ 357624.211099997162819, 258481.756400000303984 ], [ 357652.028399996459484, 258484.545200001448393 ], [ 357673.843599997460842, 258458.896899998188019 ], [ 357723.264200001955032, 258431.64809999987483 ], [ 357708.730800002813339, 258433.851199999451637 ], [ 357687.703699998557568, 258441.067400000989437 ], [ 357665.060400001704693, 258448.692499998956919 ], [ 357632.712600000202656, 258459.615699999034405 ], [ 357607.643200002610683, 258468.065400000661612 ], [ 357612.455899998545647, 258471.060100000351667 ], [ 357615.69200000166893, 258469.820000000298023 ], [ 357620.49210000038147, 258474.292199999094009 ], [ 357611.590400002896786, 258483.306099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003050300", "MAP": "D9-3029-T85", "PARCEL_NAM": "9E-3", "ACRE": ".22", "LONGITUDE": -64.91394113, "LATITUDE": 18.35578374, "OBJECTID_1": 5905, "PARCEL_NO_": "103003050300", "Tax_Legal_": "9E-3 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QUARTER", "Name": "THOMAS, REGINALD F.", "Address": "1222 Mingary Ave", "City": "Fayetteville", "State": "North Carolina", "Zip": 28306, "Country": "United States", "Land_Value": 22900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.830246501, "SHAPE_Area": 789.97560068500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360596.791000001132488, 258475.220400001853704 ], [ 360594.123999997973442, 258469.655999999493361 ], [ 360577.0929000005126, 258483.723600000143051 ], [ 360562.499399997293949, 258495.777800001204014 ], [ 360565.929899998009205, 258500.932399999350309 ], [ 360573.982299998402596, 258512.844999998807907 ], [ 360601.165500000119209, 258490.467300001531839 ], [ 360596.791000001132488, 258475.220400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021000", "MAP": "102602021000", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96810887, "LATITUDE": 18.35575771, "OBJECTID_1": 2425, "PARCEL_NO_": "102602021000", "Tax_Legal_": "DOROTHEA 20 & 21 LITTLE NORTHSIDE", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 896500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.83733083599998, "SHAPE_Area": 2736.2546035199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354902.76519999653101, 258410.674600001424551 ], [ 354901.184900000691414, 258406.861999999731779 ], [ 354799.242499999701977, 258446.768699999898672 ], [ 354808.869699999690056, 258452.546999998390675 ], [ 354827.483199998736382, 258444.677799999713898 ], [ 354846.564999997615814, 258476.497999999672174 ], [ 354867.590300001204014, 258469.492899999022484 ], [ 354902.76519999653101, 258410.674600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91433895, "LATITUDE": 18.3559135, "OBJECTID_1": 5594, "PARCEL_NO_": "103003010300", "Tax_Legal_": "ST JOSEPH&ROSENDAHL 9Ad No.4 GREAT NORTHSIDE QTR.", "Name": "Malcolm H Sprauve, Sr (Life Tenant), T Sprauve-Leon, M Sprauve, Jr & T", "Address": "PO Box 302692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032692, "Country": "United States", "Land_Value": 24200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.21590469399999, "SHAPE_Area": 858.61321026799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360550.712499998509884, 258488.775499999523163 ], [ 360533.636100001633167, 258505.523200001567602 ], [ 360514.435599997639656, 258487.634199999272823 ], [ 360510.366300001740456, 258492.033900000154972 ], [ 360535.108499996364117, 258522.000599998980761 ], [ 360566.642800003290176, 258511.915100000798702 ], [ 360550.712499998509884, 258488.775499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003060600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90932747, "LATITUDE": 18.35563868, "OBJECTID_1": 5935, "PARCEL_NO_": "103003060600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12E2 GREAT NORTHSIDE", "Name": "TODMAN, TERRANCE", "Address": "171 W 71st St", "City": "New York", "State": "New York", "Zip": 10023, "Country": "United States", "Land_Value": 87300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.12668419400001, "SHAPE_Area": 3752.3878263400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361071.109499998390675, 258454.826799999922514 ], [ 361046.920100003480911, 258454.628800000995398 ], [ 361038.065099999308586, 258452.867600001394749 ], [ 361021.186499997973442, 258446.396600000560284 ], [ 361013.171899996697903, 258440.631499998271465 ], [ 361072.116200000047684, 258525.973499998450279 ], [ 361088.362899996340275, 258511.963199999183416 ], [ 361105.514799997210503, 258486.35020000115037 ], [ 361116.122800000011921, 258471.660500001162291 ], [ 361080.832000002264977, 258449.417899999767542 ], [ 361071.109499998390675, 258454.826799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90502355, "LATITUDE": 18.35587746, "OBJECTID_1": 6261, "PARCEL_NO_": "103004050700", "Tax_Legal_": "LOVENLUND B-8 GT.NORTHSIDE QTR.", "Name": "GUMBS,SR., CARL & CALVIN", "Address": "PO Box 12013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.43547476200001, "SHAPE_Area": 1907.2419657600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361558.1841000020504, 258493.067400000989437 ], [ 361524.784699998795986, 258491.259399998933077 ], [ 361505.440399996936321, 258490.256700001657009 ], [ 361495.440999999642372, 258528.171700000762939 ], [ 361509.137500002980232, 258529.550299998372793 ], [ 361526.071900002658367, 258529.477800000458956 ], [ 361543.823299996554852, 258528.145500000566244 ], [ 361558.1841000020504, 258493.067400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004056200", "MAP": "A9-708-T007", "PARCEL_NAM": "B-1-5", "ACRE": ".02", "LONGITUDE": -64.90392171000001, "LATITUDE": 18.35599071, "OBJECTID_1": 6331, "PARCEL_NO_": "103004056200", "Tax_Legal_": "B-1-5 LOVENLUND (ROW) NO 2 GREAT NORTHSIDE QUARTER", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.535470871900003, "SHAPE_Area": 45.786009339400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361661.532399997115135, 258530.586500000208616 ], [ 361637.427500002086163, 258520.467799998819828 ], [ 361626.146300002932549, 258519.531100001186132 ], [ 361661.532399997115135, 258530.586500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803016400", "MAP": "C9-248-T80", "PARCEL_NAM": "11-D-4", "ACRE": ".51", "LONGITUDE": -64.94246375, "LATITUDE": 18.35577202, "OBJECTID_1": 4250, "PARCEL_NO_": "102803016400", "Tax_Legal_": "LERKENLUND 11D-4 GT. NORTHSIDE", "Name": "FLANCHRAYCH, AMIR & OSNAT", "Address": "3716 221st St", "City": "Bayside", "State": "New York", "Zip": 11361, "Country": "United States", "Land_Value": 88000, "Improved_V": 209000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.52838148500001, "SHAPE_Area": 2107.2505106100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357605.134400002658367, 258478.599500000476837 ], [ 357561.153999999165535, 258435.176500000059605 ], [ 357529.551399998366833, 258453.282900001853704 ], [ 357571.175700001418591, 258489.29839999973774 ], [ 357584.017399996519089, 258496.369600001722574 ], [ 357605.134400002658367, 258478.599500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004050600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90549008000001, "LATITUDE": 18.35583781, "OBJECTID_1": 6260, "PARCEL_NO_": "103004050600", "Tax_Legal_": "LOVENLUND B-7 ,INC EASEMENT B-7 GREAT NORTHSIDE QTR", "Name": "BARONVILLE, CALVIN & INGRID", "Address": "PO Box 7462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.36344531899999, "SHAPE_Area": 1817.81445508 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361505.440399996936321, 258490.256700001657009 ], [ 361474.010399997234344, 258488.099599998444319 ], [ 361450.657899998128414, 258484.319899998605251 ], [ 361449.572899997234344, 258517.030499998480082 ], [ 361477.727300003170967, 258525.071400001645088 ], [ 361495.440999999642372, 258528.171700000762939 ], [ 361505.440399996936321, 258490.256700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004050800", "MAP": "D9-3007-T85", "PARCEL_NAM": "B-9", "ACRE": null, "LONGITUDE": -64.90447944, "LATITUDE": 18.3558253, "OBJECTID_1": 6262, "PARCEL_NO_": "103004050800", "Tax_Legal_": "LOVENLUND B-9 GT.NORTHSIDE QTR.", "Name": "HODGE, ISHMAEL", "Address": "2A-1 EST. MANDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46300, "Improved_V": 328900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.281961107, "SHAPE_Area": 2020.01740767 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361585.382299996912479, 258484.808800000697374 ], [ 361581.105599999427795, 258483.300900001078844 ], [ 361569.555699996650219, 258488.222100000828505 ], [ 361558.1841000020504, 258493.067400000989437 ], [ 361543.823299996554852, 258528.145500000566244 ], [ 361545.385399997234344, 258527.824299998581409 ], [ 361547.82490000128746, 258527.322700001299381 ], [ 361551.052000001072884, 258526.659099999815226 ], [ 361555.309399999678135, 258525.783700000494719 ], [ 361562.868500001728535, 258524.229299999773502 ], [ 361569.768799997866154, 258522.810400001704693 ], [ 361570.480200000107288, 258522.664099998772144 ], [ 361572.692900002002716, 258521.94480000063777 ], [ 361576.849299997091293, 258520.593699999153614 ], [ 361581.128300003707409, 258519.2027000002563 ], [ 361584.411200001835823, 258518.135400000959635 ], [ 361590.957599997520447, 258516.007399998605251 ], [ 361601.818899996578693, 258512.476599998772144 ], [ 361605.559500001370907, 258511.260600000619888 ], [ 361608.48480000346899, 258510.309599999338388 ], [ 361609.878700003027916, 258510.093299999833107 ], [ 361611.737300001084805, 258509.804800000041723 ], [ 361614.944300003349781, 258509.307000000029802 ], [ 361617.560900002717972, 258509.290399998426437 ], [ 361620.672600001096725, 258509.270599998533726 ], [ 361629.459700003266335, 258509.214699998497963 ], [ 361629.477700002491474, 258507.103900000452995 ], [ 361630.810900002717972, 258500.825899999588728 ], [ 361585.382299996912479, 258484.808800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9614786, "LATITUDE": 18.35575778, "OBJECTID_1": 3190, "PARCEL_NO_": "102703011400", "Tax_Legal_": "DOROTHEA 4-8 LITTLE NORTHSIDE", "Name": "DECOSTA FAMILY TRUST", "Address": "3330 Timberview Rd", "City": "Dallas", "State": "Texas", "Zip": 75229, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.04539602899999, "SHAPE_Area": 1240.8974611799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355532.968900002539158, 258454.884799998253584 ], [ 355545.670299999415874, 258478.420200001448393 ], [ 355581.469899997115135, 258440.927400000393391 ], [ 355578.386699996888638, 258424.22580000013113 ], [ 355575.983999997377396, 258422.30629999935627 ], [ 355572.760499998927116, 258422.068799998611212 ], [ 355560.633400000631809, 258425.769200000911951 ], [ 355555.754199996590614, 258430.584499999880791 ], [ 355549.982400000095367, 258445.524900000542402 ], [ 355545.108499996364117, 258449.706799998879433 ], [ 355532.968900002539158, 258454.884799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019900", "MAP": "D9-5015-T90", "PARCEL_NAM": "9D-2", "ACRE": ".25", "LONGITUDE": -64.91490514, "LATITUDE": 18.35577814, "OBJECTID_1": 5720, "PARCEL_NO_": "103003019900", "Tax_Legal_": "ST JOSEPH&ROSENDAHL 9D-2 & 9D-3A GT. NORTHSIDE", "Name": "RICHARDSON, CLIFFORD L. & VERNICE W. & CHAD N. & TRICIA N.", "Address": "PO Box 6183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26300, "Improved_V": 405000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.24589509699999, "SHAPE_Area": 1135.7565166700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360476.536799997091293, 258461.492899999022484 ], [ 360469.148500002920628, 258469.014699999243021 ], [ 360469.391800001263618, 258474.388799998909235 ], [ 360468.3175999969244, 258505.833000000566244 ], [ 360469.052000001072884, 258514.282699998468161 ], [ 360470.644799999892712, 258516.617800001055002 ], [ 360473.060199998319149, 258517.059799998998642 ], [ 360480.343900002539158, 258513.953000001609325 ], [ 360483.590800002217293, 258511.446400001645088 ], [ 360484.411499999463558, 258509.764400001615286 ], [ 360503.120300002396107, 258490.708000000566244 ], [ 360476.536799997091293, 258461.492899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93726805, "LATITUDE": 18.35553378, "OBJECTID_1": 4488, "PARCEL_NO_": "102804017600", "Tax_Legal_": "REM 7E ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BRYAN, PAUL & ALBERTA", "Address": "PO Box 305894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 188500, "Improved_V": 69800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.66108373600002, "SHAPE_Area": 4970.1621349899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358049.343699999153614, 258474.259399998933077 ], [ 358060.533900000154972, 258484.476599998772144 ], [ 358074.420800000429153, 258480.962699998170137 ], [ 358123.695799998939037, 258470.8114 ], [ 358172.995899997651577, 258457.704900000244379 ], [ 358157.094499997794628, 258431.188000001013279 ], [ 358134.82880000025034, 258394.486600000411272 ], [ 358088.602899998426437, 258425.350099999457598 ], [ 358078.068599998950958, 258431.385600000619888 ], [ 358091.204000003635883, 258460.975000001490116 ], [ 358052.04559999704361, 258473.410399999469519 ], [ 358049.343699999153614, 258474.259399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803013600", "MAP": "F9-1752-T66", "PARCEL_NAM": "9-3", "ACRE": ".303", "LONGITUDE": -64.94346887, "LATITUDE": 18.35571662, "OBJECTID_1": 4205, "PARCEL_NO_": "102803013600", "Tax_Legal_": "LERKENLUND 9-3 GR NORTHSIDE QTR", "Name": "RITTER, RAPHAEL A. & JENNIFER PACQUETTE-RITTER", "Address": "8168 Crown Bay Marina Ste 505 PMB 426", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025866, "Country": "United States", "Land_Value": 39300, "Improved_V": 409900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.637297792, "SHAPE_Area": 1223.1025132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357485.049599997699261, 258471.072799999266863 ], [ 357468.433499999344349, 258433.784299999475479 ], [ 357439.572899997234344, 258449.90260000154376 ], [ 357455.107699997723103, 258481.371199999004602 ], [ 357485.049599997699261, 258471.072799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9657022, "LATITUDE": 18.35576112, "OBJECTID_1": 3180, "PARCEL_NO_": "102703010300", "Tax_Legal_": "22E DOROTHEA NO.7 LITTLE NORTHSIDE QTR", "Name": "SWAN, KAYDEN A. & KERRYN A.", "Address": "PO Box 8522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.40443078199999, "SHAPE_Area": 2600.4266659300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355139.72580000013113, 258423.802000001072884 ], [ 355077.654100000858307, 258421.605200000107288 ], [ 355088.570200003683567, 258465.390900000929832 ], [ 355143.365299999713898, 258469.850099999457598 ], [ 355139.72580000013113, 258423.802000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91843239000001, "LATITUDE": 18.35580583, "OBJECTID_1": 4925, "PARCEL_NO_": "102904010300", "Tax_Legal_": "5A ST.JOSEPH&ROSENDAHL GREAT NORTHSIDE QTR", "Name": "ESANNASON, ANTON E. & NOREEN D. -", "Address": "PO Box 305242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 143700, "Improved_V": 155900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.877966348, "SHAPE_Area": 1613.4783168199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360102.194200001657009, 258509.591400001198053 ], [ 360119.164499998092651, 258505.297400001436472 ], [ 360121.631999999284744, 258499.618000000715256 ], [ 360141.111199997365475, 258484.789799999445677 ], [ 360132.398199997842312, 258466.353399999439716 ], [ 360100.847699999809265, 258478.338599998503923 ], [ 360091.123400002717972, 258483.958500001579523 ], [ 360083.00450000166893, 258490.436000000685453 ], [ 360074.883900001645088, 258497.124499998986721 ], [ 360067.551500000059605, 258505.930399999022484 ], [ 360071.575900003314018, 258506.807700000703335 ], [ 360093.358900003135204, 258505.508299998939037 ], [ 360099.795000001788139, 258507.249800000339746 ], [ 360102.194200001657009, 258509.591400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003051800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91039805, "LATITUDE": 18.3556392, "OBJECTID_1": 5925, "PARCEL_NO_": "103003051800", "Tax_Legal_": "10E&10F ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "NICHOLAS, GRETA & RICHARDS, RU", "Address": "PO Box 12016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57400, "Improved_V": 251500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.44216343, "SHAPE_Area": 1195.91982865 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360934.758199997246265, 258463.632199998944998 ], [ 360961.671899996697903, 258507.705400001257658 ], [ 360981.279799997806549, 258492.721700001507998 ], [ 360951.004900000989437, 258449.621899999678135 ], [ 360934.758199997246265, 258463.632199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016400", "MAP": "D9-1941-T82", "PARCEL_NAM": "7E-3", "ACRE": ".58", "LONGITUDE": -64.93827759, "LATITUDE": 18.35574678, "OBJECTID_1": 4477, "PARCEL_NO_": "102804016400", "Tax_Legal_": "7E-3 LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "AUBAIN, JOSEPH & JUNE", "Address": "PO Box 8995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 128100, "Improved_V": 308700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.99501941599999, "SHAPE_Area": 2634.4203604099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357969.415600001811981, 258458.076200000941753 ], [ 357986.506499998271465, 258494.002500001341105 ], [ 358002.450900003314018, 258488.992800001055002 ], [ 358007.121399998664856, 258487.525400001555681 ], [ 358052.04559999704361, 258473.410399999469519 ], [ 358041.176899999380112, 258442.326799999922514 ], [ 358030.384700000286102, 258444.083099998533726 ], [ 358006.159400001168251, 258448.106699999421835 ], [ 357983.534100003540516, 258453.621100001037121 ], [ 357969.415600001811981, 258458.076200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004050500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90593663, "LATITUDE": 18.3557757, "OBJECTID_1": 6259, "PARCEL_NO_": "103004050500", "Tax_Legal_": "LOVENLUND B-6 GT. NORTHSIDE QTR.", "Name": "ROGERS, KEITH", "Address": "PO Box 11784", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38400, "Improved_V": 211000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.021455688, "SHAPE_Area": 1362.33793231 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361450.657899998128414, 258484.319899998605251 ], [ 361415.226899996399879, 258478.541499998420477 ], [ 361401.249899998307228, 258510.091099999845028 ], [ 361429.449199996888638, 258512.855000000447035 ], [ 361449.572899997234344, 258517.030499998480082 ], [ 361450.657899998128414, 258484.319899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803018400", "MAP": null, "PARCEL_NAM": "9A-6", "ACRE": null, "LONGITUDE": -64.94543523, "LATITUDE": 18.3556341, "OBJECTID_1": 4267, "PARCEL_NO_": "102803018400", "Tax_Legal_": "9A-6 LERKENLUND 9A-6 GREAT NORTHSIDE", "Name": "BERRY, C. & RAIA, L", "Address": "PO Box 10222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 89100, "Improved_V": 518000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.09783515399999, "SHAPE_Area": 1830.4130159599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357282.724500000476837, 258462.450699999928474 ], [ 357249.305299997329712, 258409.8260000012815 ], [ 357239.492899999022484, 258425.788800001144409 ], [ 357228.904700003564358, 258438.156700000166893 ], [ 357254.343500003218651, 258481.005800001323223 ], [ 357282.724500000476837, 258462.450699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014400", "MAP": "D9-9420-T020", "PARCEL_NAM": "9B REM", "ACRE": "0.60", "LONGITUDE": -64.95836775, "LATITUDE": 18.35554162, "OBJECTID_1": 3222, "PARCEL_NO_": "102703014400", "Tax_Legal_": "PAR 9 REM & EASEMENTS \"A',\"B\" &\"C\" BONNE RESOLUTION 5 LITTLE NORTHSIDE QTR", "Name": "ANNE URISE BERRY LIVING REVOCABLE TRUST", "Address": "PO Box 7325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 157500, "Improved_V": 215800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.15399714599999, "SHAPE_Area": 2976.3932107700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355912.494999997317791, 258392.340999998152256 ], [ 355897.990299999713898, 258391.166799999773502 ], [ 355872.161399997770786, 258394.121800001710653 ], [ 355864.445600003004074, 258394.975900001823902 ], [ 355869.226400002837181, 258454.681600000709295 ], [ 355869.94990000128746, 258464.397799998521805 ], [ 355870.711499996483326, 258466.9391999989748 ], [ 355880.330399997532368, 258465.791200000792742 ], [ 355903.829499997198582, 258462.986400000751019 ], [ 355905.555399999022484, 258449.70160000026226 ], [ 355911.579000003635883, 258405.210200000554323 ], [ 355912.494999997317791, 258392.340999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91441159, "LATITUDE": 18.3557396, "OBJECTID_1": 5611, "PARCEL_NO_": "103003011400", "Tax_Legal_": "ST JOSEPH & ROSENDHAL 9AA GR NORTHSIDE", "Name": "WARD, MICHELLE C. & TODMAN, LI", "Address": "PO Box 308202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8100, "Improved_V": 92600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.984344264, "SHAPE_Area": 720.65822313700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360514.435599997639656, 258487.634199999272823 ], [ 360533.636100001633167, 258505.523200001567602 ], [ 360550.712499998509884, 258488.775499999523163 ], [ 360535.586800001561642, 258465.85359999909997 ], [ 360514.435599997639656, 258487.634199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003010500", "MAP": "G9-444-T57", "PARCEL_NAM": "9J", "ACRE": "1.68", "LONGITUDE": -64.91269823, "LATITUDE": 18.35532832, "OBJECTID_1": 5596, "PARCEL_NO_": "103003010500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9H&9J GR NORTHSIDE", "Name": "TODMAN, HENRITA", "Address": "PO Box 668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 250700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 363.05560480399998, "SHAPE_Area": 5550.4622943499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360711.290200002491474, 258381.165500000119209 ], [ 360708.057800002396107, 258381.983399998396635 ], [ 360655.946699999272823, 258441.085299998521805 ], [ 360777.954199999570847, 258506.889600001275539 ], [ 360711.290200002491474, 258381.165500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003011500", "MAP": "C9-51-T63", "PARCEL_NAM": "9R", "ACRE": "1.22", "LONGITUDE": -64.91228589000001, "LATITUDE": 18.35532836, "OBJECTID_1": 5612, "PARCEL_NO_": "103003011500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9R GR NORTHSIDE", "Name": "ROBINSON, WILLIAM D.", "Address": "1107 West Ave", "City": "Richmond", "State": "Virginia", "Zip": 23220, "Country": "United States", "Land_Value": 111100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.09846341500003, "SHAPE_Area": 3468.6597225400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360803.102700002491474, 258489.152399998158216 ], [ 360731.48759999871254, 258376.686700001358986 ], [ 360711.290200002491474, 258381.165500000119209 ], [ 360777.954199999570847, 258506.889600001275539 ], [ 360786.877499997615814, 258500.629799999296665 ], [ 360803.102700002491474, 258489.152399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004051400", "MAP": "D9-8224-T008", "PARCEL_NAM": "B-27-1", "ACRE": ".004", "LONGITUDE": -64.90396169, "LATITUDE": 18.35584156, "OBJECTID_1": 6296, "PARCEL_NO_": "103004051400", "Tax_Legal_": "LOVENLUND B-27 GT. NORTHSIDE QTR.", "Name": "GALIBER, RUDOLPH B", "Address": "PO Box 10207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.984088325899997, "SHAPE_Area": 107.30093977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361647.516099996864796, 258507.907200001180172 ], [ 361639.788000002503395, 258504.631299998611212 ], [ 361630.810900002717972, 258500.825899999588728 ], [ 361630.203699998557568, 258503.684999998658895 ], [ 361629.477700002491474, 258507.103900000452995 ], [ 361629.459700003266335, 258509.214699998497963 ], [ 361647.184199996292591, 258511.048500001430511 ], [ 361649.050899997353554, 258511.186000000685453 ], [ 361647.516099996864796, 258507.907200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94221349, "LATITUDE": 18.35562664, "OBJECTID_1": 4249, "PARCEL_NO_": "102803016300", "Tax_Legal_": "LERKENLUND 11D-3 GT. NORTHSIDE", "Name": "MURPHREE, CLYDE E.& LYNDA SMITH-MURPHREE", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.99910977600001, "SHAPE_Area": 1454.5067630599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357632.712600000202656, 258459.615699999034405 ], [ 357580.586400002241135, 258425.836300000548363 ], [ 357561.153999999165535, 258435.176500000059605 ], [ 357605.134400002658367, 258478.599500000476837 ], [ 357605.962300002574921, 258476.07319999858737 ], [ 357603.579300001263618, 258471.831799998879433 ], [ 357607.643200002610683, 258468.065400000661612 ], [ 357632.712600000202656, 258459.615699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004050400", "MAP": null, "PARCEL_NAM": "B-5", "ACRE": null, "LONGITUDE": -64.90636801, "LATITUDE": 18.35569668, "OBJECTID_1": 6258, "PARCEL_NO_": "103004050400", "Tax_Legal_": "LOVENLUND B-5 GT. NORTHSIDE QTR.", "Name": "POTTER, CARL L JR & MAUREEN M", "Address": "6801 Balmoral Ct", "City": "New Market", "State": "Maryland", "Zip": 21774, "Country": "United States", "Land_Value": 47600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.771206036, "SHAPE_Area": 1848.75643801 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361415.226899996399879, 258478.541499998420477 ], [ 361363.013899996876717, 258464.344700001180172 ], [ 361356.938699997961521, 258505.506599999964237 ], [ 361401.249899998307228, 258510.091099999845028 ], [ 361415.226899996399879, 258478.541499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003050600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91378643, "LATITUDE": 18.35541774, "OBJECTID_1": 5908, "PARCEL_NO_": "103003050600", "Tax_Legal_": "9FA-1 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE", "Name": "SPRAUVE, JACQUELINE", "Address": "PO Box 8555", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47800, "Improved_V": 259000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.35881936800001, "SHAPE_Area": 2260.09521361 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360625.818199999630451, 258475.458000000566244 ], [ 360613.980700001120567, 258445.174800001084805 ], [ 360586.133799999952316, 258401.03940000012517 ], [ 360573.022399999201298, 258425.629999998956919 ], [ 360596.791000001132488, 258475.220400001853704 ], [ 360604.62219999730587, 258502.515599999576807 ], [ 360619.286799997091293, 258484.903799999505281 ], [ 360625.818199999630451, 258475.458000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96001426, "LATITUDE": 18.35559283, "OBJECTID_1": 3203, "PARCEL_NO_": "102703012500", "Tax_Legal_": "5B DOROTHEA LITTLE NORTHSIDE", "Name": "KALLOO, BEVERLY", "Address": "7917 Estate Dorethea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96700, "Improved_V": 284000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.69675734699999, "SHAPE_Area": 2640.1696189700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355738.234399996697903, 258402.313799999654293 ], [ 355680.07379999756813, 258414.292300000786781 ], [ 355694.184600003063679, 258461.692699998617172 ], [ 355745.11540000140667, 258446.488600000739098 ], [ 355738.234399996697903, 258402.313799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003050100", "MAP": "D9-3029-T85", "PARCEL_NAM": "9E-1", "ACRE": ".21", "LONGITUDE": -64.91417025, "LATITUDE": 18.35558907, "OBJECTID_1": 5903, "PARCEL_NO_": "103003050100", "Tax_Legal_": "9E-1 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QTR", "Name": "CALVIN HODGE (LIFE ESTATE)", "Address": "PO Box 7583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21000, "Improved_V": 208900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.86958895500001, "SHAPE_Area": 937.27078240499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360577.0929000005126, 258483.723600000143051 ], [ 360558.357699997723103, 258443.241900000721216 ], [ 360539.656099997460842, 258461.453899998217821 ], [ 360562.499399997293949, 258495.777800001204014 ], [ 360577.0929000005126, 258483.723600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004053200", "MAP": "D9-6623-T99", "PARCEL_NAM": "REM B-4", "ACRE": "0.27", "LONGITUDE": -64.90686448, "LATITUDE": 18.35559767, "OBJECTID_1": 6313, "PARCEL_NO_": "103004053200", "Tax_Legal_": "B-4 REM.ESTATE LOVENLUND #3 GT.NORTHSIDE QTR", "Name": "WILLIE, EDMOND", "Address": "PO Box 303564", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.778203754, "SHAPE_Area": 1147.0181012099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361342.903399996459484, 258457.238499999046326 ], [ 361332.773699998855591, 258450.625300001353025 ], [ 361308.540399998426437, 258487.587900001555681 ], [ 361310.3074000030756, 258489.292899999767542 ], [ 361315.917400002479553, 258493.349599998444319 ], [ 361331.170800000429153, 258501.28489999845624 ], [ 361336.765000000596046, 258502.471799999475479 ], [ 361339.727200001478195, 258479.870600000023842 ], [ 361350.442800000309944, 258479.341499999165535 ], [ 361350.839699998497963, 258465.318500000983477 ], [ 361350.045999996364117, 258464.78940000012517 ], [ 361341.1824000030756, 258460.820599999278784 ], [ 361342.903399996459484, 258457.238499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040300", "MAP": "B9-472-T76", "PARCEL_NAM": "5A-1", "ACRE": "1.19", "LONGITUDE": -64.93100814, "LATITUDE": 18.35532566, "OBJECTID_1": 4909, "PARCEL_NO_": "102903040300", "Tax_Legal_": "5A-1 & 5I MISGUNST NO. 6 GREAT NORTHSIDE QTR", "Name": "JOHNSON, MARLENE L.", "Address": "1617 Tuckerman St", "City": "Washington", "State": "District of Columbia", "Zip": 20011, "Country": "United States", "Land_Value": 209100, "Improved_V": 442400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 364.56347835899999, "SHAPE_Area": 6692.47701082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358715.523000001907349, 258381.718499999493361 ], [ 358753.79450000077486, 258432.694200001657009 ], [ 358780.822499997913837, 258478.300599999725819 ], [ 358792.101899996399879, 258479.448300000280142 ], [ 358831.582400001585484, 258483.149000000208616 ], [ 358833.279500000178814, 258473.241500001400709 ], [ 358830.485500000417233, 258470.766499999910593 ], [ 358826.199199996888638, 258470.290300000458956 ], [ 358825.246699996292591, 258465.686500001698732 ], [ 358828.421700000762939, 258463.464000001549721 ], [ 358831.466399997472763, 258460.562399998307228 ], [ 358828.610699996352196, 258453.360500000417233 ], [ 358823.817900002002716, 258445.842700000852346 ], [ 358822.389200001955032, 258443.461500000208616 ], [ 358816.719200000166893, 258429.409600000828505 ], [ 358812.0, 258415.438799999654293 ], [ 358808.819700002670288, 258410.135400000959635 ], [ 358807.250200003385544, 258405.05629999935627 ], [ 358794.444499999284744, 258393.7635000012815 ], [ 358775.195500001311302, 258381.573699999600649 ], [ 358730.137299999594688, 258370.0168999992311 ], [ 358715.523000001907349, 258381.718499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803013700", "MAP": null, "PARCEL_NAM": "9-2", "ACRE": null, "LONGITUDE": -64.94319496, "LATITUDE": 18.35560317, "OBJECTID_1": 4206, "PARCEL_NO_": "102803013700", "Tax_Legal_": "LERKENLUND 9-2 GR NORTHSIDE QTR", "Name": "CAMPBELL, JR. , FULLER R. & SILVIA", "Address": "PO Box 9394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61100, "Improved_V": 59700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.80871888499999, "SHAPE_Area": 1226.85462308 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357514.226099997758865, 258453.790800001472235 ], [ 357501.555200003087521, 258426.667100001126528 ], [ 357481.375799998641014, 258429.035100001841784 ], [ 357468.433499999344349, 258433.784299999475479 ], [ 357485.049599997699261, 258471.072799999266863 ], [ 357495.578400000929832, 258465.670499999076128 ], [ 357509.361199997365475, 258456.917399998754263 ], [ 357514.226099997758865, 258453.790800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004051700", "MAP": "D9-1601-T80", "PARCEL_NAM": "B-12", "ACRE": ".39", "LONGITUDE": -64.90860907, "LATITUDE": 18.35547167, "OBJECTID_1": 6299, "PARCEL_NO_": "103004051700", "Tax_Legal_": "LOVENLUND B-12(INCL.EASEMENTB-19 GT. NORTHSIDE QTR.", "Name": "WEATHERS, MARK JOSEPH", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69600, "Improved_V": 233300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.17443751299999, "SHAPE_Area": 2245.8942977500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361208.592799998819828, 258428.954500000923872 ], [ 361126.354999996721745, 258450.644900001585484 ], [ 361120.245999999344349, 258460.928399998694658 ], [ 361116.122800000011921, 258471.660500001162291 ], [ 361105.514799997210503, 258486.35020000115037 ], [ 361120.721500001847744, 258499.773499999195337 ], [ 361136.989799998700619, 258483.23030000180006 ], [ 361149.978900000452995, 258472.993000000715256 ], [ 361162.154500000178814, 258463.593499999493361 ], [ 361189.722000002861023, 258445.8761 ], [ 361203.530000001192093, 258434.167899999767542 ], [ 361208.592799998819828, 258428.954500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604012900", "MAP": "A9-398-T92", "PARCEL_NAM": "21-3", "ACRE": ".50", "LONGITUDE": -64.96743997, "LATITUDE": 18.3555577, "OBJECTID_1": 2674, "PARCEL_NO_": "102604012900", "Tax_Legal_": "DOROTHEA PARCEL 21, LOT 3, LITTLE NORTHSIDE", "Name": "MORON, LEE JACQUELINE", "Address": "3695 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69800, "Improved_V": 283600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.4332369, "SHAPE_Area": 1837.2214986900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354935.975000001490116, 258393.214499998837709 ], [ 354901.184900000691414, 258406.861999999731779 ], [ 354902.76519999653101, 258410.674600001424551 ], [ 354917.76860000193119, 258447.94990000128746 ], [ 354959.831799998879433, 258432.462099999189377 ], [ 354935.975000001490116, 258393.214499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704052700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95194309, "LATITUDE": 18.35557546, "OBJECTID_1": 3643, "PARCEL_NO_": "102704052700", "Tax_Legal_": "10-2-17L LILLIENDAHL & MARIENHOJ LITTLE NORTHSIDE QUARTER", "Name": "MARTINEZ, IRIS Y", "Address": "PO Box 9882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37600, "Improved_V": 230700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.489333934, "SHAPE_Area": 1886.6642992699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356589.653599999845028, 258414.770700000226498 ], [ 356549.364900000393391, 258411.274500001221895 ], [ 356545.068999998271465, 258442.270100001245737 ], [ 356545.018700003623962, 258448.180300001055002 ], [ 356542.594400003552437, 258448.793800000101328 ], [ 356543.339500002563, 258455.977000001817942 ], [ 356585.231799997389317, 258460.541799999773502 ], [ 356589.653599999845028, 258414.770700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703016400", "MAP": "C9-284-T84", "PARCEL_NAM": "4-1", "ACRE": "0.50", "LONGITUDE": -64.95954979, "LATITUDE": 18.35558781, "OBJECTID_1": 3242, "PARCEL_NO_": "102703016400", "Tax_Legal_": "BONNE RESOLUTION 4-1 LITTLE NORTHSIDE", "Name": "STEIN, AMBER", "Address": "9200 Vitraco Park", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82700, "Improved_V": 40000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.49053161800001, "SHAPE_Area": 3063.8159035200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355797.635399997234344, 258434.041799999773502 ], [ 355780.083499997854233, 258411.944400001317263 ], [ 355775.24379999935627, 258412.115899998694658 ], [ 355774.588600002229214, 258394.378699999302626 ], [ 355736.699100002646446, 258393.224199999123812 ], [ 355738.234399996697903, 258402.313799999654293 ], [ 355745.11540000140667, 258446.488600000739098 ], [ 355745.864100001752377, 258453.249800000339746 ], [ 355748.857400000095367, 258480.505300000309944 ], [ 355758.596100002527237, 258473.196800000965595 ], [ 355789.480499997735023, 258444.740800000727177 ], [ 355797.635399997234344, 258434.041799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803010800", "MAP": "F9-1753-T66", "PARCEL_NAM": "9-5", "ACRE": ".366", "LONGITUDE": -64.94394388000001, "LATITUDE": 18.35554677, "OBJECTID_1": 4181, "PARCEL_NO_": "102803010800", "Tax_Legal_": "LERKENLUND 9-5 GR NORTHSIDE QTR", "Name": "SCHMIDT, NICHOLAS & MARY VIRGINIA", "Address": "9715 Estate Thomas PMB 96", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022623, "Country": "United States", "Land_Value": 68500, "Improved_V": 385900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.780857919, "SHAPE_Area": 1411.0193582899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357436.879399999976158, 258446.191700000315905 ], [ 357417.822800002992153, 258411.416400000452995 ], [ 357413.7787000015378, 258412.86089999973774 ], [ 357406.476899996399879, 258418.078499998897314 ], [ 357402.375200003385544, 258426.27760000154376 ], [ 357396.686099998652935, 258431.508299998939037 ], [ 357391.822999998927116, 258434.423799999058247 ], [ 357386.974299997091293, 258435.650699999183416 ], [ 357394.924199998378754, 258449.014699999243021 ], [ 357404.454300001263618, 258466.191300000995398 ], [ 357436.879399999976158, 258446.191700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014100", "MAP": "F9-2124-T67", "PARCEL_NAM": "9-1", "ACRE": null, "LONGITUDE": -64.95800151, "LATITUDE": 18.35551951, "OBJECTID_1": 3219, "PARCEL_NO_": "102703014100", "Tax_Legal_": "BONNE RESOLUTION 9-1 LITTLE NORTHSIDE QTR", "Name": "LA PLACE, DENISE URANIE", "Address": "PO Box 8943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42300, "Improved_V": 134800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.27563109600001, "SHAPE_Area": 1948.1879287 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355947.88459999859333, 258402.974199999123812 ], [ 355912.494999997317791, 258392.340999998152256 ], [ 355911.579000003635883, 258405.210200000554323 ], [ 355905.555399999022484, 258449.70160000026226 ], [ 355941.004299998283386, 258453.369199998676777 ], [ 355947.861199997365475, 258405.718199998140335 ], [ 355947.88459999859333, 258402.974199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019000", "MAP": "D9-5015-T90", "PARCEL_NAM": "9D-3", "ACRE": ".24", "LONGITUDE": -64.91478052, "LATITUDE": 18.3555519, "OBJECTID_1": 5712, "PARCEL_NO_": "103003019000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9D-3&9D-2A GT. NORTHSIDE", "Name": "MYRNA Y LEACH TRUST", "Address": "PO Box 304825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.671938735, "SHAPE_Area": 907.80361325499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360495.606200002133846, 258482.450100000947714 ], [ 360507.696299999952316, 258486.065099999308586 ], [ 360516.948100000619888, 258476.67790000140667 ], [ 360488.213899999856949, 258442.034499999135733 ], [ 360471.963600002229214, 258456.466899998486042 ], [ 360495.606200002133846, 258482.450100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011600", "MAP": "G9-628-T62", "PARCEL_NAM": "4-10", "ACRE": null, "LONGITUDE": -64.96160338, "LATITUDE": 18.35545216, "OBJECTID_1": 3192, "PARCEL_NO_": "102703011600", "Tax_Legal_": "DOROTHEA 4-10 LITTLE NORTHSIDE", "Name": "TODMAN, FRANKLIN, L.I., D.L., N.S., N.M. & F.E.", "Address": "PO Box 308202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.660409335, "SHAPE_Area": 2046.2317777200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355570.685000002384186, 258381.732999999076128 ], [ 355513.170699998736382, 258412.504099998623133 ], [ 355532.216499999165535, 258448.545899998396635 ], [ 355539.498499996960163, 258445.650100000202656 ], [ 355545.178599998354912, 258441.474800001829863 ], [ 355550.129799999296665, 258428.216400001198053 ], [ 355554.206299997866154, 258422.97239999845624 ], [ 355559.881099998950958, 258419.430300001055002 ], [ 355570.388300001621246, 258416.561000000685453 ], [ 355575.249600000679493, 258413.856499999761581 ], [ 355576.14580000191927, 258403.309200000017881 ], [ 355570.685000002384186, 258381.732999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003050200", "MAP": "D9-3029-T85", "PARCEL_NAM": "9E-2", "ACRE": ".22", "LONGITUDE": -64.91401035, "LATITUDE": 18.35545922, "OBJECTID_1": 5904, "PARCEL_NO_": "103003050200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9E-2 GT. NORTHSIDE", "Name": "TONGE, LINK J. & RHONDA M.", "Address": "PO BOX 308604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23200, "Improved_V": 281100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.55322381600001, "SHAPE_Area": 971.86052761600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360594.123999997973442, 258469.655999999493361 ], [ 360573.022399999201298, 258425.629999998956919 ], [ 360566.489200003445148, 258435.286899998784065 ], [ 360558.357699997723103, 258443.241900000721216 ], [ 360577.0929000005126, 258483.723600000143051 ], [ 360594.123999997973442, 258469.655999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803018300", "MAP": null, "PARCEL_NAM": "9A-5", "ACRE": null, "LONGITUDE": -64.94516956, "LATITUDE": 18.35544405, "OBJECTID_1": 4266, "PARCEL_NO_": "102803018300", "Tax_Legal_": "LERKENLUND 9A-5 GT. NORTHSIDE", "Name": "ARCHER, TAMIKA M.", "Address": "PO BOX 307918", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 94200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.67322448, "SHAPE_Area": 2280.0968662499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357314.348700001835823, 258441.811299998313189 ], [ 357287.335100002586842, 258394.516399998217821 ], [ 357269.529600001871586, 258402.181099999696016 ], [ 357250.928700000047684, 258408.572700001299381 ], [ 357249.305299997329712, 258409.8260000012815 ], [ 357282.724500000476837, 258462.450699999928474 ], [ 357314.348700001835823, 258441.811299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017700", "MAP": "D9-5712-T94", "PARCEL_NAM": "1-3", "ACRE": ".303", "LONGITUDE": -64.92003074, "LATITUDE": 18.35545282, "OBJECTID_1": 4989, "PARCEL_NO_": "102904017700", "Tax_Legal_": "1REM & 1-4-1 CANAAN & SHERPENJEWEL NO. 7A & 7B GREAT NORTHSIDE QUARTER", "Name": "DAVIS, JOSEPH & ELIZABETH", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 102700, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.56109358200001, "SHAPE_Area": 1613.48066451 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359934.689800001680851, 258483.733600001782179 ], [ 359941.961000002920628, 258482.104400001466274 ], [ 359939.561800003051758, 258479.762699998915195 ], [ 359940.400499999523163, 258475.969900000840425 ], [ 359945.241999998688698, 258475.587400000542402 ], [ 359950.853799998760223, 258479.43299999833107 ], [ 359954.075400002300739, 258479.881499998271465 ], [ 359958.123199999332428, 258478.014800000935793 ], [ 359959.786200001835823, 258472.117800001055002 ], [ 359959.076999999582767, 258460.712900001555681 ], [ 359956.742499999701977, 258450.772399999201298 ], [ 359948.801700003445148, 258436.353100001811981 ], [ 359939.228399999439716, 258424.242400001734495 ], [ 359925.632600001990795, 258411.043299999088049 ], [ 359921.59570000320673, 258411.6435999982059 ], [ 359920.776799999177456, 258413.114500001072884 ], [ 359922.238300003111362, 258430.858300000429153 ], [ 359934.689800001680851, 258483.733600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96509181, "LATITUDE": 18.35558796, "OBJECTID_1": 3183, "PARCEL_NO_": "102703010600", "Tax_Legal_": "DOROTHEA 22K LT. NORTHSIDE", "Name": "ROBERTS, ROSE M", "Address": "2124 Deauville Rd", "City": "Richmond", "State": "Virginia", "Zip": 23235, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.44727727899999, "SHAPE_Area": 1766.9221412899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355202.742200002074242, 258409.752300001680851 ], [ 355150.344499997794628, 258407.845800001174212 ], [ 355153.273000001907349, 258442.700199998915195 ], [ 355202.445500001311302, 258444.580299999564886 ], [ 355202.627099998295307, 258423.261300001293421 ], [ 355202.742200002074242, 258409.752300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91841297000001, "LATITUDE": 18.3553689, "OBJECTID_1": 4928, "PARCEL_NO_": "102904010800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1 20 GREAT NORTHSIDE", "Name": "LEWIN, DANIEL J.. & ALDETH", "Address": "PO Box 11782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82900, "Improved_V": 229500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.27338599000001, "SHAPE_Area": 3134.5348445700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360079.467500001192093, 258432.356300000101328 ], [ 360078.218800000846386, 258484.275100000202656 ], [ 360096.871899999678135, 258471.762099999934435 ], [ 360127.610600002110004, 258460.403599999845028 ], [ 360148.837300002574921, 258429.757599998265505 ], [ 360149.719099998474121, 258420.898899998515844 ], [ 360148.128100000321865, 258418.352800000458956 ], [ 360140.927000001072884, 258411.749899998307228 ], [ 360134.496299996972084, 258409.375300001353025 ], [ 360128.045800000429153, 258409.322500001639128 ], [ 360124.005300000309944, 258410.344900000840425 ], [ 360079.467500001192093, 258432.356300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003011600", "MAP": "C9-51-T63", "PARCEL_NAM": "9S", "ACRE": "1.25", "LONGITUDE": -64.91206344, "LATITUDE": 18.35519222, "OBJECTID_1": 5613, "PARCEL_NO_": "103003011600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9S GR NORTHSIDE", "Name": "CHINNERY, LINDA M.", "Address": "PO Box 301981", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.79383120199998, "SHAPE_Area": 3875.8748810900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360817.1300999969244, 258451.692600000649691 ], [ 360760.574199996888638, 258369.958700001239777 ], [ 360731.48759999871254, 258376.686700001358986 ], [ 360803.102700002491474, 258489.152399998158216 ], [ 360829.876400001347065, 258469.9510000012815 ], [ 360817.1300999969244, 258451.692600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004050200", "MAP": null, "PARCEL_NAM": "B-3", "ACRE": null, "LONGITUDE": -64.90709208, "LATITUDE": 18.35541179, "OBJECTID_1": 6257, "PARCEL_NO_": "103004050200", "Tax_Legal_": "LOVENLUND ESTATE B-3 GT. NORTHSIDE QTR.", "Name": "JOSEPH, AVRILL S", "Address": "6551 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.03438959299999, "SHAPE_Area": 1444.1921587500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361332.773699998855591, 258450.625300001353025 ], [ 361316.564599998295307, 258440.043299999088049 ], [ 361310.247900001704693, 258435.121399998664856 ], [ 361286.569399997591972, 258436.114100001752377 ], [ 361288.047100000083447, 258451.958200000226498 ], [ 361292.757299996912479, 258466.984400000423193 ], [ 361297.525100000202656, 258475.256099998950958 ], [ 361303.909100003540516, 258483.11879999935627 ], [ 361308.540399998426437, 258487.587900001555681 ], [ 361332.773699998855591, 258450.625300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012200", "MAP": "D9-7531-T005", "PARCEL_NAM": "5L-REM", "ACRE": "1.017", "LONGITUDE": -64.93161305, "LATITUDE": 18.3552867, "OBJECTID_1": 4437, "PARCEL_NO_": "102804012200", "Tax_Legal_": "PAR 5 REM, 5L-1, EASEMENT \"A\" & 5M GREEN BELT MISGUNST 6 GREAT NORTHSIDE QTR", "Name": "CONN J & DEBORAH B. DAVIS REVOC TR", "Address": "PO Box 7997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.38156509800001, "SHAPE_Area": 3428.3200243599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358705.957000002264977, 258368.7635000012815 ], [ 358703.521799996495247, 258370.643500000238419 ], [ 358698.712700001895428, 258367.226599998772144 ], [ 358689.151000000536442, 258448.419399999082088 ], [ 358708.468299999833107, 258452.588199999183416 ], [ 358710.741599999368191, 258469.705400001257658 ], [ 358753.79450000077486, 258432.694200001657009 ], [ 358715.523000001907349, 258381.718499999493361 ], [ 358705.957000002264977, 258368.7635000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803016200", "MAP": "C9-248-T80", "PARCEL_NAM": "11-D-2", "ACRE": ".51", "LONGITUDE": -64.94196441, "LATITUDE": 18.35548681, "OBJECTID_1": 4248, "PARCEL_NO_": "102803016200", "Tax_Legal_": "LERKENLUND 11D-2 GT NORTHSIDE", "Name": "HOHNE, ROLAND & ANGELA", "Address": "PO Box 398", "City": "Covelo", "State": "California", "Zip": 95428, "Country": "United States", "Land_Value": 88000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.48292329, "SHAPE_Area": 1950.4053283799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357665.060400001704693, 258448.692499998956919 ], [ 357607.365599997341633, 258406.001600001007318 ], [ 357595.989100001752377, 258416.252099998295307 ], [ 357580.586400002241135, 258425.836300000548363 ], [ 357632.712600000202656, 258459.615699999034405 ], [ 357665.060400001704693, 258448.692499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012800", "MAP": "D9-8413-T010", "PARCEL_NAM": "11D-2", "ACRE": ".50", "LONGITUDE": -64.95440197000001, "LATITUDE": 18.35390847, "OBJECTID_1": 3458, "PARCEL_NO_": "102704012800", "Tax_Legal_": "11D-2 LILLIENDAHL & MARIENHOJ 3 LITTLE NORTHSIDE QTR", "Name": "ROMAN, ABDU H. & MUSTAFA, MONA", "Address": "394A-3 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.243025297, "SHAPE_Area": 2199.6029710399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356327.361299999058247, 258287.666400000452995 ], [ 356327.683300003409386, 258213.776399999856949 ], [ 356309.066200003027916, 258222.067800000309944 ], [ 356287.171700000762939, 258236.454100001603365 ], [ 356279.674099996685982, 258239.976599998772144 ], [ 356277.863899998366833, 258250.028299998492002 ], [ 356280.588600002229214, 258255.555500000715256 ], [ 356283.67059999704361, 258259.709399998188019 ], [ 356288.488799996674061, 258263.189100001007318 ], [ 356295.3783999979496, 258267.373700000345707 ], [ 356302.963100001215935, 258271.219799999147654 ], [ 356312.951300002634525, 258277.493900001049042 ], [ 356327.361299999058247, 258287.666400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003052000", "MAP": "F9-3016-T72", "PARCEL_NAM": "10H", "ACRE": ".24", "LONGITUDE": -64.91099395000001, "LATITUDE": 18.35534939, "OBJECTID_1": 5927, "PARCEL_NO_": "103003052000", "Tax_Legal_": "10H&1/8 INT in ROW 10 REM ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "MAYNARD, MILTON & CATHERINE", "Address": "26222 St Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39400, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.90830153100001, "SHAPE_Area": 2255.0773218 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360868.240699999034405, 258415.38060000166297 ], [ 360856.882200002670288, 258423.520300000905991 ], [ 360869.632100000977516, 258441.356499999761581 ], [ 360886.366899996995926, 258464.713799998164177 ], [ 360899.930299997329712, 258481.71229999884963 ], [ 360925.912100002169609, 258460.815600000321865 ], [ 360918.005500003695488, 258442.38569999858737 ], [ 360911.711400002241135, 258423.969099998474121 ], [ 360906.886100001633167, 258422.451900001615286 ], [ 360893.135600000619888, 258427.405600000172853 ], [ 360882.659000001847744, 258426.686599999666214 ], [ 360875.436300002038479, 258422.616700001060963 ], [ 360868.240699999034405, 258415.38060000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016200", "MAP": "D9-1782-T81", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93655877, "LATITUDE": 18.35544899, "OBJECTID_1": 4475, "PARCEL_NO_": "102804016200", "Tax_Legal_": "LERKENLUND 7E-2 GT. NORTHSIDE", "Name": "BRYAN, EDWARD", "Address": "7E-2 LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120100, "Improved_V": 216500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.75464396800001, "SHAPE_Area": 2032.02092266 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358208.865699999034405, 258411.980000000447035 ], [ 358206.489900000393391, 258406.894400000572205 ], [ 358157.094499997794628, 258431.188000001013279 ], [ 358172.995899997651577, 258457.704900000244379 ], [ 358206.940200001001358, 258448.694600000977516 ], [ 358210.165399998426437, 258448.721000000834465 ], [ 358214.184399999678135, 258450.231499999761581 ], [ 358218.176399998366833, 258454.90819999948144 ], [ 358227.895300000905991, 258449.921500001102686 ], [ 358226.304300002753735, 258447.375399999320507 ], [ 358222.340999998152256, 258439.321400001645088 ], [ 358221.550899997353554, 258437.415100000798702 ], [ 358208.865699999034405, 258411.980000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012600", "MAP": "G9-1703-T70", "PARCEL_NAM": "6F", "ACRE": ".46", "LONGITUDE": -64.93387474, "LATITUDE": 18.35548234, "OBJECTID_1": 4441, "PARCEL_NO_": "102804012600", "Tax_Legal_": "MISGUNST 6F GR NORTHSIDE", "Name": "MORGAN, JENNIFER L", "Address": "649 Richmond Ave", "City": "FORT ERIE", "State": "Ontario", "Zip": 0, "Country": "Canada", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.4950687, "SHAPE_Area": 2180.71177979 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358519.904500000178814, 258424.233500000089407 ], [ 358475.831900000572205, 258419.245299998670816 ], [ 358458.007600001990795, 258422.239900000393391 ], [ 358448.155299998819828, 258435.681200001388788 ], [ 358446.111000001430511, 258438.311000000685453 ], [ 358452.437799997627735, 258452.363299999386072 ], [ 358455.132299996912479, 258458.348099999129772 ], [ 358463.66160000115633, 258477.292199999094009 ], [ 358479.504000000655651, 258462.346700001507998 ], [ 358484.523500002920628, 258457.6114999987185 ], [ 358519.904500000178814, 258424.233500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019100", "MAP": "D9-1902-T81", "PARCEL_NAM": "9D-4", "ACRE": null, "LONGITUDE": -64.91464525000001, "LATITUDE": 18.35544095, "OBJECTID_1": 5713, "PARCEL_NO_": "103003019100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9D-4 GT. NORTHSIDE", "Name": "HENRY, JAMES (Life Estate)", "Address": "PO Box 301821", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 133700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.855283169, "SHAPE_Area": 778.61404870800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360529.15429999679327, 258463.690000001341105 ], [ 360501.215599998831749, 258430.319699998944998 ], [ 360488.213899999856949, 258442.034499999135733 ], [ 360516.948100000619888, 258476.67790000140667 ], [ 360529.15429999679327, 258463.690000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9136076, "LATITUDE": 18.35516609, "OBJECTID_1": 5909, "PARCEL_NO_": "103003050700", "Tax_Legal_": "ST JOSE/RO9FA-2&9G-G UND.1/6 INT ST JOS & ROSENDAHL", "Name": "KRIGGER (LIFE ESTATE), ROLAND A and AVIS V", "Address": "P O BOX 3891", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.54185466800001, "SHAPE_Area": 2702.9788540499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360639.175999999046326, 258421.949599999934435 ], [ 360604.887599997222424, 258376.706000000238419 ], [ 360594.306599996984005, 258388.229600001126528 ], [ 360586.133799999952316, 258401.03940000012517 ], [ 360613.980700001120567, 258445.174800001084805 ], [ 360625.818199999630451, 258475.458000000566244 ], [ 360651.949299998581409, 258437.041799999773502 ], [ 360639.175999999046326, 258421.949599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703016500", "MAP": "C9-284-T84", "PARCEL_NAM": "4-2", "ACRE": "0.50", "LONGITUDE": -64.95920803, "LATITUDE": 18.35533724, "OBJECTID_1": 3243, "PARCEL_NO_": "102703016500", "Tax_Legal_": "BONNE RESOLUTION 4-2 LT. NORTHSIDE", "Name": "PFEIFER, THEODORE", "Address": "4-2 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81900, "Improved_V": 41300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.13237433, "SHAPE_Area": 1516.0387222100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355781.05349999666214, 258392.742800001055002 ], [ 355780.995899997651577, 258399.497400000691414 ], [ 355780.083499997854233, 258411.944400001317263 ], [ 355797.635399997234344, 258434.041799999773502 ], [ 355800.88400000333786, 258431.324200000613928 ], [ 355817.199100002646446, 258409.292899999767542 ], [ 355824.52419999986887, 258401.331300001591444 ], [ 355823.7449000030756, 258398.158500000834465 ], [ 355814.936599999666214, 258390.909200001507998 ], [ 355805.350699998438358, 258380.276099998503923 ], [ 355800.525399997830391, 258378.758900001645088 ], [ 355795.682199999690056, 258379.352600000798702 ], [ 355784.363200001418591, 258382.848499998450279 ], [ 355781.05349999666214, 258392.742800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803016100", "MAP": "C9-248-T80", "PARCEL_NAM": "11-D-1", "ACRE": ".51", "LONGITUDE": -64.94172613000001, "LATITUDE": 18.35531939, "OBJECTID_1": 4247, "PARCEL_NO_": "102803016100", "Tax_Legal_": "LERKENLUND 11D-1 GT NORTHSIDE", "Name": "PATRICIA A JAMES TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93700, "Improved_V": 268100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.547580286, "SHAPE_Area": 2259.3328740100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357687.703699998557568, 258441.067400000989437 ], [ 357638.215800002217293, 258381.556099999696016 ], [ 357626.864500001072884, 258388.851500000804663 ], [ 357616.308700002729893, 258397.419900000095367 ], [ 357607.365599997341633, 258406.001600001007318 ], [ 357665.060400001704693, 258448.692499998956919 ], [ 357687.703699998557568, 258441.067400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803018200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94486243, "LATITUDE": 18.35519243, "OBJECTID_1": 4265, "PARCEL_NO_": "102803018200", "Tax_Legal_": "LEKENLUND 9A-4 GT. NORTHSIDE", "Name": "BELL, HABIBAH", "Address": "7930 Estate Emmaus", "City": "St. John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 94200, "Improved_V": 107200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.48773510699999, "SHAPE_Area": 2586.8955869800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357287.335100002586842, 258394.516399998217821 ], [ 357314.348700001835823, 258441.811299998313189 ], [ 357325.721600003540516, 258431.982999999076128 ], [ 357338.726899996399879, 258419.846000000834465 ], [ 357337.457699999213219, 258379.516800001263618 ], [ 357301.328299999237061, 258361.06700000166893 ], [ 357291.506899997591972, 258378.085200000554323 ], [ 357293.889799997210503, 258382.32660000026226 ], [ 357296.310599997639656, 258382.135299999266863 ], [ 357300.29900000244379, 258387.234200000762939 ], [ 357287.335100002586842, 258394.516399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96576815, "LATITUDE": 18.35540365, "OBJECTID_1": 3182, "PARCEL_NO_": "102703010500", "Tax_Legal_": "DOROTHEA 22D LT. NORTHSIDE", "Name": "SWAN, IVE", "Address": "PO Box 8522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.567590798, "SHAPE_Area": 2245.63407792 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355136.79900000244379, 258388.7364999987185 ], [ 355069.07769999653101, 258387.1266999989748 ], [ 355077.654100000858307, 258421.605200000107288 ], [ 355139.72580000013113, 258423.802000001072884 ], [ 355136.79900000244379, 258388.7364999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704052300", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-29", "ACRE": "0.59", "LONGITUDE": -64.95134369, "LATITUDE": 18.35530624, "OBJECTID_1": 3639, "PARCEL_NO_": "102704052300", "Tax_Legal_": "LILLIENDAHL 10-2-29 LT.NORTHSIDE QTR.", "Name": "BLOICE, SYLVANIUS D", "Address": "2907 South Hls", "City": "Riverdale", "State": "Georgia", "Zip": 30296, "Country": "United States", "Land_Value": 48600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.067755605, "SHAPE_Area": 2029.28872918 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356664.204199999570847, 258417.203699998557568 ], [ 356627.709399998188019, 258372.810699999332428 ], [ 356596.966099999845028, 258408.28660000115633 ], [ 356637.857900001108646, 258435.64130000025034 ], [ 356648.424500003457069, 258425.806400001049042 ], [ 356658.962300002574921, 258419.348700001835823 ], [ 356664.204199999570847, 258417.203699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003018400", "MAP": null, "PARCEL_NAM": "9TA", "ACRE": null, "LONGITUDE": -64.91148136, "LATITUDE": 18.35535647, "OBJECTID_1": 5706, "PARCEL_NO_": "103003018400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9TA GR NORTHSIDE", "Name": "GOSNELL, DOROTHY", "Address": "740 E 149th St", "City": "Bronx", "State": "New York", "Zip": 10455, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.88583777599999, "SHAPE_Area": 1079.2849811000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360856.882200002670288, 258423.520300000905991 ], [ 360817.1300999969244, 258451.692600000649691 ], [ 360829.876400001347065, 258469.9510000012815 ], [ 360869.632100000977516, 258441.356499999761581 ], [ 360856.882200002670288, 258423.520300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96058607000001, "LATITUDE": 18.35532201, "OBJECTID_1": 3216, "PARCEL_NO_": "102703013800", "Tax_Legal_": "DOROTHEA 5C LITTLE NORTHSIDE", "Name": "LA PLACE, LOUIS A & SALLY", "Address": "51 Eastern Ave", "City": "New London", "State": "Connecticut", "Zip": 6320, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.394371694, "SHAPE_Area": 1565.39874175 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355669.879399999976158, 258380.433899998664856 ], [ 355667.525200001895428, 258372.815200001001358 ], [ 355629.454099997878075, 258392.979699999094009 ], [ 355638.032300002872944, 258427.247099999338388 ], [ 355678.509700000286102, 258408.579999998211861 ], [ 355669.879399999976158, 258380.433899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96451579, "LATITUDE": 18.35515446, "OBJECTID_1": 3228, "PARCEL_NO_": "102703015000", "Tax_Legal_": "DOROTHEA 3G LT. NORTHSIDE", "Name": "BAMBINI, KARL & MARIE", "Address": "5601 Trompeter Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 177200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.33770259800002, "SHAPE_Area": 5744.3230983399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355204.901500001549721, 258345.597500000149012 ], [ 355203.800300002098083, 258380.207800000905991 ], [ 355202.742200002074242, 258409.752300001680851 ], [ 355202.627099998295307, 258423.261300001293421 ], [ 355226.026399999856949, 258421.552999999374151 ], [ 355231.674099996685982, 258421.177000001072884 ], [ 355272.014899998903275, 258418.551899999380112 ], [ 355270.385399997234344, 258325.868500001728535 ], [ 355204.901500001549721, 258345.597500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003060700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90905539000001, "LATITUDE": 18.35518172, "OBJECTID_1": 5936, "PARCEL_NO_": "103003060700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12-E3 GREAT NORTHSIDE QUARTER", "Name": "RHYMER, ELIHU & PATRICIA RHYMER TODMAN", "Address": "12E-3 St Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103000, "Improved_V": 261800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.00509395300003, "SHAPE_Area": 3769.2435931099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361127.608900003135204, 258448.534200001507998 ], [ 361144.7753000035882, 258421.232500001788139 ], [ 361074.094899997115135, 258388.356699999421835 ], [ 361064.003799997270107, 258437.036699999123812 ], [ 361063.179499998688698, 258439.140900000929832 ], [ 361063.962399996817112, 258441.891600001603365 ], [ 361067.167900003492832, 258444.239799998700619 ], [ 361070.387699998915195, 258444.899500001221895 ], [ 361071.109499998390675, 258454.826799999922514 ], [ 361080.832000002264977, 258449.417899999767542 ], [ 361116.122800000011921, 258471.660500001162291 ], [ 361120.245999999344349, 258460.928399998694658 ], [ 361127.608900003135204, 258448.534200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803016000", "MAP": "C9-248-T80", "PARCEL_NAM": "11BA-2", "ACRE": ".51", "LONGITUDE": -64.94148074, "LATITUDE": 18.35521783, "OBJECTID_1": 4246, "PARCEL_NO_": "102803016000", "Tax_Legal_": "LERKENLUND 11BA-2 GT. NORTHSIDE", "Name": "FERGUS, JOSEPH", "Address": "PO Box 8526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.742155295, "SHAPE_Area": 1825.6477515399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357708.730800002813339, 258433.851199999451637 ], [ 357659.295100003480911, 258368.218699999153614 ], [ 357638.215800002217293, 258381.556099999696016 ], [ 357687.703699998557568, 258441.067400000989437 ], [ 357708.730800002813339, 258433.851199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9144954, "LATITUDE": 18.35529508, "OBJECTID_1": 5714, "PARCEL_NO_": "103003019200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9D-5 GT. NORTHSIDE", "Name": "THOMAS, HENRY T", "Address": "PO Box 305306", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 488800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.67534056400001, "SHAPE_Area": 1165.41061775 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360547.864900000393391, 258444.422499999403954 ], [ 360522.343400001525879, 258411.283100001513958 ], [ 360513.403800003230572, 258419.442499998956919 ], [ 360501.215599998831749, 258430.319699998944998 ], [ 360529.15429999679327, 258463.690000001341105 ], [ 360541.364000000059605, 258450.279899999499321 ], [ 360547.864900000393391, 258444.422499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904011000", "MAP": "D9-8594-T011", "PARCEL_NAM": "REM 1D", "ACRE": "3.01", "LONGITUDE": -64.91726458, "LATITUDE": 18.35463257, "OBJECTID_1": 4930, "PARCEL_NO_": "102904011000", "Tax_Legal_": "1D REM & 1-18-A-1 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QTR", "Name": "FAULKNER, WILLIAM E & CHRISTIAN A", "Address": "3928 Carmona Ave", "City": "Los Angeles", "State": "California", "Zip": 90008, "Country": "United States", "Land_Value": 176400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 508.83873507499999, "SHAPE_Area": 8890.5838904100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360231.849500000476837, 258457.570500001311302 ], [ 360278.761399999260902, 258267.611299999058247 ], [ 360249.472099997103214, 258259.384399998933077 ], [ 360239.013400003314018, 258256.55460000038147 ], [ 360218.224399998784065, 258330.478300001472235 ], [ 360203.262999996542931, 258382.918099999427795 ], [ 360193.272600002586842, 258419.777699999511242 ], [ 360200.513199999928474, 258421.736800000071526 ], [ 360193.857699997723103, 258445.747000001370907 ], [ 360186.615299999713898, 258443.999000001698732 ], [ 360183.2804000005126, 258456.848400000482798 ], [ 360192.126400001347065, 258459.66499999910593 ], [ 360205.824799999594688, 258460.832600001245737 ], [ 360231.849500000476837, 258457.570500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804013300", "MAP": "G9-811-T65", "PARCEL_NAM": "8D", "ACRE": ".31", "LONGITUDE": -64.93431175000001, "LATITUDE": 18.35519093, "OBJECTID_1": 4448, "PARCEL_NO_": "102804013300", "Tax_Legal_": "MISGUNST 8D GREAT NORTHSIDE QTR", "Name": "QUESTEL, ANDRE & JUANITA L", "Address": "8D MISGUNST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.105785129, "SHAPE_Area": 1188.6663723900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358450.416400000452995, 258422.344399999827147 ], [ 358433.868400000035763, 258382.406399998813868 ], [ 358431.666900001466274, 258383.406100001186132 ], [ 358422.854099996387959, 258386.655900001525879 ], [ 358409.826300002634525, 258391.46000000089407 ], [ 358426.418999999761581, 258431.492499999701977 ], [ 358427.5912000015378, 258435.348400000482798 ], [ 358447.252199999988079, 258426.575199998915195 ], [ 358448.243400000035763, 258425.338300000876188 ], [ 358450.416400000452995, 258422.344399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014900", "MAP": null, "PARCEL_NAM": "3F", "ACRE": null, "LONGITUDE": -64.96384927, "LATITUDE": 18.355094, "OBJECTID_1": 3227, "PARCEL_NO_": "102703014900", "Tax_Legal_": "DOROTHEA 3F LT. NORTHSIDE", "Name": "BRYAN, JOHN F. MARIE L. & JEFFREY", "Address": "PO Box 9527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 140700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.95993279100003, "SHAPE_Area": 6885.68024719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355333.355999998748302, 258323.089899998158216 ], [ 355270.385399997234344, 258325.868500001728535 ], [ 355272.014899998903275, 258418.551899999380112 ], [ 355279.277099996805191, 258417.978000000119209 ], [ 355359.156000003218651, 258412.2989999987185 ], [ 355333.355999998748302, 258323.089899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804013400", "MAP": null, "PARCEL_NAM": "8C", "ACRE": "0.30", "LONGITUDE": -64.93454901, "LATITUDE": 18.35528692, "OBJECTID_1": 4449, "PARCEL_NO_": "102804013400", "Tax_Legal_": "MISGUNST 8C GR NORTHSIDE QTR", "Name": "AYALA, MARILYN", "Address": "7282 Estate Misgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71400, "Improved_V": 337000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.903620467, "SHAPE_Area": 1410.14868381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358426.418999999761581, 258431.492499999701977 ], [ 358409.826300002634525, 258391.46000000089407 ], [ 358383.957800000905991, 258399.058699999004602 ], [ 358398.896499998867512, 258443.932799998670816 ], [ 358399.856600001454353, 258447.724300000816584 ], [ 358427.5912000015378, 258435.348400000482798 ], [ 358426.418999999761581, 258431.492499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003051800", "MAP": null, "PARCEL_NAM": "10F", "ACRE": null, "LONGITUDE": -64.91080268, "LATITUDE": 18.35512923, "OBJECTID_1": 5925, "PARCEL_NO_": "103003051800", "Tax_Legal_": "10E&10F ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "NICHOLAS, GRETA & RICHARDS, RU", "Address": "PO Box 12016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57400, "Improved_V": 251500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.28865632399999, "SHAPE_Area": 1687.0086851399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360907.181000001728535, 258387.83500000089407 ], [ 360873.911799997091293, 258412.260600000619888 ], [ 360881.112899996340275, 258418.863499999046326 ], [ 360885.128300003707409, 258420.79619999974966 ], [ 360894.803999997675419, 258420.875399999320507 ], [ 360905.320200003683567, 258416.950699999928474 ], [ 360910.163500003516674, 258416.35700000077486 ], [ 360914.981600001454353, 258418.718499999493361 ], [ 360917.377199999988079, 258421.482299998402596 ], [ 360927.607500001788139, 258451.119100000709295 ], [ 360929.191299997270107, 258454.50959999859333 ], [ 360934.758199997246265, 258463.632199998944998 ], [ 360951.004900000989437, 258449.621899999678135 ], [ 360907.181000001728535, 258387.83500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003011200", "MAP": "G9-671-T63", "PARCEL_NAM": "9M", "ACRE": ".26", "LONGITUDE": -64.91485488, "LATITUDE": 18.35521697, "OBJECTID_1": 5609, "PARCEL_NO_": "103003011200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9M GR NORTHSIDE QTR", "Name": "ROBINSON, WILLIAM D.", "Address": "1107 West Ave", "City": "Richmond", "State": "Virginia", "Zip": 23220, "Country": "United States", "Land_Value": 27300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.524650576, "SHAPE_Area": 1214.3434652399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360494.988099999725819, 258404.093100000172853 ], [ 360465.725299999117851, 258431.506799999624491 ], [ 360468.713200002908707, 258459.395599998533726 ], [ 360471.963600002229214, 258456.466899998486042 ], [ 360488.213899999856949, 258442.034499999135733 ], [ 360501.215599998831749, 258430.319699998944998 ], [ 360513.403800003230572, 258419.442499998956919 ], [ 360498.240299999713898, 258400.953299999237061 ], [ 360494.988099999725819, 258404.093100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91783312, "LATITUDE": 18.35520686, "OBJECTID_1": 4929, "PARCEL_NO_": "102904010900", "Tax_Legal_": "1D-1 & 1-18-A REM ST JOSEPH & ROSENDAHL GR NORTHSIDE QTR", "Name": "NICHOLLS, ROBERT W. & MYRTHLYN I", "Address": "1902 Sugar Estate 9th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83900, "Improved_V": 273600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.72952682600001, "SHAPE_Area": 2142.9971001399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360193.272600002586842, 258419.777699999511242 ], [ 360187.63740000128746, 258418.676100000739098 ], [ 360196.787399999797344, 258385.82039999961853 ], [ 360148.218000002205372, 258407.798799999058247 ], [ 360154.614600002765656, 258414.184000000357628 ], [ 360156.189400002360344, 258418.629799999296665 ], [ 360157.7787000015378, 258421.387099999934435 ], [ 360156.893200002610683, 258430.667899999767542 ], [ 360139.746699996292591, 258455.647700000554323 ], [ 360149.447599999606609, 258452.771800000220537 ], [ 360163.162100002169609, 258452.039700001478195 ], [ 360173.631599999964237, 258453.603000000119209 ], [ 360183.2804000005126, 258456.848400000482798 ], [ 360186.615299999713898, 258443.999000001698732 ], [ 360193.272600002586842, 258419.777699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102902011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9169351, "LATITUDE": 18.35526094, "OBJECTID_1": 4695, "PARCEL_NO_": "102902011100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-35 GR NORTHSIDE", "Name": "JEARLD, AMBROSE & ANNA", "Address": "135 Tanglewood Dr", "City": "East Falmouth", "State": "Massachusetts", "Zip": 2536, "Country": "United States", "Land_Value": 72200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.415184138, "SHAPE_Area": 2569.1256325700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360296.244999997317791, 258448.273800000548363 ], [ 360299.021799996495247, 258406.288899999111891 ], [ 360293.370399996638298, 258407.087000001221895 ], [ 360254.635099999606609, 258410.569600000977516 ], [ 360243.468500003218651, 258410.521899998188019 ], [ 360231.849500000476837, 258457.570500001311302 ], [ 360243.764600001275539, 258456.076900001615286 ], [ 360266.380900003015995, 258451.617899999022484 ], [ 360296.244999997317791, 258448.273800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803014600", "MAP": "C9-248-T80", "PARCEL_NAM": "11BA-1", "ACRE": ".51", "LONGITUDE": -64.9413019, "LATITUDE": 18.35503843, "OBJECTID_1": 4213, "PARCEL_NO_": "102803014600", "Tax_Legal_": "LERKENLUND 11BA-1 GR NORTHSIDE QTR", "Name": "STRATFORD TRUST", "Address": "PO Box 8803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88000, "Improved_V": 229200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.44717951199999, "SHAPE_Area": 2301.79898426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357659.295100003480911, 258368.218699999153614 ], [ 357708.730800002813339, 258433.851199999451637 ], [ 357723.264200001955032, 258431.64809999987483 ], [ 357701.124399997293949, 258380.17119999974966 ], [ 357694.794399999082088, 258365.976100001484156 ], [ 357700.719099998474121, 258333.094000000506639 ], [ 357695.0658999979496, 258334.103199999779463 ], [ 357686.093999996781349, 258346.062100000679493 ], [ 357679.585900001227856, 258352.763799998909235 ], [ 357667.403099998831749, 258363.007699999958277 ], [ 357659.295100003480911, 258368.218699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010500", "MAP": "D9-2004-T72", "PARCEL_NAM": "7", "ACRE": ".47", "LONGITUDE": -64.93567845, "LATITUDE": 18.35534834, "OBJECTID_1": 4420, "PARCEL_NO_": "102804010500", "Tax_Legal_": "MISGUNST 7 GR NORTHSIDE", "Name": "IDNANI, SUNIL & KANCHAN", "Address": "PO BOX 6275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 111800, "Improved_V": 208900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.32258042300001, "SHAPE_Area": 2364.3739451199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358311.866899996995926, 258437.098799999803305 ], [ 358317.511799998581409, 258400.415899999439716 ], [ 358295.939400002360344, 258397.01969999819994 ], [ 358295.38400000333786, 258399.685899998992682 ], [ 358292.470899999141693, 258402.598999999463558 ], [ 358290.306900002062321, 258404.474500000476837 ], [ 358286.682499997317791, 258406.135600000619888 ], [ 358283.127099998295307, 258406.704500000923872 ], [ 358280.213600002229214, 258406.704500000923872 ], [ 358277.264700002968311, 258407.097699999809265 ], [ 358274.321199998259544, 258407.413100000470877 ], [ 358271.790100000798702, 258407.774599999189377 ], [ 358269.45830000191927, 258408.52419999986887 ], [ 358266.545900002121925, 258409.938799999654293 ], [ 358261.684000000357628, 258414.217300001531839 ], [ 358259.435199998319149, 258416.184900000691414 ], [ 358256.707500003278255, 258419.640000000596046 ], [ 358255.663400001823902, 258421.487300001084805 ], [ 358255.23650000244379, 258422.646000001579523 ], [ 358254.971799999475479, 258425.557100001722574 ], [ 358254.683600001037121, 258429.111900001764297 ], [ 358254.987499997019768, 258432.960799999535084 ], [ 358254.987499997019768, 258435.505199998617172 ], [ 358255.185099996626377, 258438.074799999594688 ], [ 358255.49889999628067, 258441.7347999997437 ], [ 358256.177100002765656, 258448.66440000012517 ], [ 358273.064999997615814, 258448.391399998217821 ], [ 358288.404700003564358, 258446.194899998605251 ], [ 358300.530000001192093, 258442.705600000917912 ], [ 358311.866899996995926, 258437.098799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014800", "MAP": "D9-7096-T002", "PARCEL_NAM": "3E-1", "ACRE": ".540", "LONGITUDE": -64.96342065, "LATITUDE": 18.35483759, "OBJECTID_1": 3226, "PARCEL_NO_": "102703014800", "Tax_Legal_": "DOROTHEA 3E LT. NORTHSIDE", "Name": "BRYAN EATON FAMILY TRUST IV", "Address": "79-25 Est Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 177200, "Improved_V": 572500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.32412106800001, "SHAPE_Area": 1283.1364797000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355360.382200002670288, 258321.897399999201298 ], [ 355333.355999998748302, 258323.089899998158216 ], [ 355345.928099997341633, 258366.560499999672174 ], [ 355377.748000003397465, 258363.465199999511242 ], [ 355360.382200002670288, 258321.897399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96010103, "LATITUDE": 18.35523702, "OBJECTID_1": 3203, "PARCEL_NO_": "102703012500", "Tax_Legal_": "5B DOROTHEA LITTLE NORTHSIDE", "Name": "KALLOO, BEVERLY", "Address": "7917 Estate Dorethea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96700, "Improved_V": 284000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.11239020599999, "SHAPE_Area": 2110.4028987299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355678.509700000286102, 258408.579999998211861 ], [ 355680.07379999756813, 258414.292300000786781 ], [ 355738.234399996697903, 258402.313799999654293 ], [ 355736.699100002646446, 258393.224199999123812 ], [ 355732.870700001716614, 258369.339299999177456 ], [ 355669.879399999976158, 258380.433899998664856 ], [ 355678.509700000286102, 258408.579999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011800", "MAP": "G9-628-T62", "PARCEL_NAM": "4-12", "ACRE": null, "LONGITUDE": -64.96178566, "LATITUDE": 18.35509102, "OBJECTID_1": 3196, "PARCEL_NO_": "102703011800", "Tax_Legal_": "DOROTHEA 4-12 LT NORTHSIDE", "Name": "SMITH, RUTH ANN & ROXANN", "Address": "PO Box 306892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82700, "Improved_V": 245000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.134094401, "SHAPE_Area": 3624.8232466700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355479.848600000143051, 258348.481100000441074 ], [ 355513.170699998736382, 258412.504099998623133 ], [ 355570.685000002384186, 258381.732999999076128 ], [ 355567.671999998390675, 258356.799300000071526 ], [ 355565.288999997079372, 258352.557900000363588 ], [ 355562.078100003302097, 258350.842799998819828 ], [ 355537.861800000071526, 258353.811099998652935 ], [ 355496.797399997711182, 258346.719999998807907 ], [ 355479.848600000143051, 258348.481100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96510435, "LATITUDE": 18.35529811, "OBJECTID_1": 3185, "PARCEL_NO_": "102703010800", "Tax_Legal_": "DOROTHEA 22L LT. NORTHSIDE", "Name": "ROBERTS, ROSE MARIE SWAN", "Address": "2124 Deauville Rd", "City": "Richmond", "State": "Virginia", "Zip": 23235, "Country": "United States", "Land_Value": 56900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.756012255, "SHAPE_Area": 1595.44104563 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355203.800300002098083, 258380.207800000905991 ], [ 355147.367399998009205, 258378.690499998629093 ], [ 355150.344499997794628, 258407.845800001174212 ], [ 355202.742200002074242, 258409.752300001680851 ], [ 355203.800300002098083, 258380.207800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803015300", "MAP": "F9-1754-T66", "PARCEL_NAM": "9-10", "ACRE": null, "LONGITUDE": -64.94412819, "LATITUDE": 18.35515469, "OBJECTID_1": 4241, "PARCEL_NO_": "102803015300", "Tax_Legal_": "LERKENLUND 9-10\nGR NORTHSIDE QTR", "Name": "TERRY LEE STREETER REVOCABLE TRUST", "Address": "PO Box 8168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.62997102700001, "SHAPE_Area": 1390.1697354600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357390.273299999535084, 258427.022900000214577 ], [ 357395.148999996483326, 258422.629799999296665 ], [ 357398.428199999034405, 258416.323899999260902 ], [ 357401.689400002360344, 258412.128699999302626 ], [ 357406.56139999628067, 258408.157800000160933 ], [ 357413.035300001502037, 258405.466499999165535 ], [ 357416.273100003600121, 258404.015399999916553 ], [ 357398.051600001752377, 258365.86939999833703 ], [ 357370.423000000417233, 258390.763399999588728 ], [ 357390.273299999535084, 258427.022900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016100", "MAP": "D9-1782-T81", "PARCEL_NAM": "7E-1", "ACRE": ".54", "LONGITUDE": -64.93676846, "LATITUDE": 18.35511904, "OBJECTID_1": 4474, "PARCEL_NO_": "102804016100", "Tax_Legal_": "LERKENLUND 7E-1 GT. NORTHSIDE", "Name": "BRYAN, EDMUND T", "Address": "PO Box 7734", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010734, "Country": "United States", "Land_Value": 123500, "Improved_V": 199100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.93206588699999, "SHAPE_Area": 2619.2368908899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358196.974200002849102, 258388.029100000858307 ], [ 358185.084499999880791, 258363.867199998348951 ], [ 358159.158399999141693, 258378.220400001853704 ], [ 358134.82880000025034, 258394.486600000411272 ], [ 358157.094499997794628, 258431.188000001013279 ], [ 358206.489900000393391, 258406.894400000572205 ], [ 358196.974200002849102, 258388.029100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103003012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90986727000001, "LATITUDE": 18.3550433, "OBJECTID_1": 5619, "PARCEL_NO_": "103003012300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12E-A&12EZ GR NORTHSIDE", "Name": "TODMAN, PATRICIA R. & OTHERS", "Address": "PO Box 6334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 356.56605613099998, "SHAPE_Area": 1647.52454085 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360993.670400001108646, 258363.422699999064207 ], [ 360992.837099999189377, 258366.582299999892712 ], [ 360970.111100003123283, 258383.917100001126528 ], [ 360975.690600000321865, 258391.562100000679493 ], [ 360985.436499997973442, 258383.409200001507998 ], [ 360989.471600003540516, 258383.020100001245737 ], [ 360991.874399997293949, 258384.939599998295307 ], [ 360991.852799996733665, 258387.472500000149012 ], [ 360988.442400000989437, 258409.187199998646975 ], [ 361005.976199999451637, 258433.395399998873472 ], [ 361013.171899996697903, 258440.631499998271465 ], [ 361021.186499997973442, 258446.396600000560284 ], [ 361038.065099999308586, 258452.867600001394749 ], [ 361046.920100003480911, 258454.628800000995398 ], [ 361071.109499998390675, 258454.826799999922514 ], [ 361070.387699998915195, 258444.899500001221895 ], [ 361067.167900003492832, 258444.239799998700619 ], [ 361063.962399996817112, 258441.891600001603365 ], [ 361063.179499998688698, 258439.140900000929832 ], [ 361064.003799997270107, 258437.036699999123812 ], [ 361055.942400000989437, 258436.759700000286102 ], [ 361055.098399996757507, 258441.185699999332428 ], [ 361051.8496999964118, 258443.903400000184774 ], [ 361049.425399996340275, 258444.516800001263618 ], [ 361036.527999997138977, 258443.989000000059605 ], [ 361022.064699999988079, 258437.960099998861551 ], [ 361014.86370000243187, 258431.357200000435114 ], [ 361002.916400000452995, 258413.949799999594688 ], [ 361000.515500001609325, 258411.819200001657009 ], [ 360998.141500003635883, 258406.522399999201298 ], [ 360997.426899999380112, 258395.750799998641014 ], [ 360999.079099997878075, 258391.120200000703335 ], [ 361008.886100001633167, 258375.790699999779463 ], [ 361000.149700000882149, 258360.098299998790026 ], [ 360995.281300000846386, 258363.646999999880791 ], [ 360993.670400001108646, 258363.422699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93308898, "LATITUDE": 18.3549089, "OBJECTID_1": 4436, "PARCEL_NO_": "102804012100", "Tax_Legal_": "5G ESTATE MISGUNST No.6 GREAT NORTHSIDE QTR.", "Name": "CENAC, HARVEY", "Address": "PO Box 303413", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 194800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.132528643, "SHAPE_Area": 4854.7409491999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358576.532700002193451, 258321.685899998992682 ], [ 358550.662299998104572, 258329.495700001716614 ], [ 358542.564999997615814, 258333.440200001001358 ], [ 358526.462899997830391, 258425.134100001305342 ], [ 358524.776500001549721, 258433.775100000202656 ], [ 358596.804499998688698, 258403.122800000011921 ], [ 358576.532700002193451, 258321.685899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91637641, "LATITUDE": 18.35517804, "OBJECTID_1": 4931, "PARCEL_NO_": "102904011200", "Tax_Legal_": "ST. JOSEPH & ROSENDAHL 2-42 GT. NORTHSIDE", "Name": "CLOVIS E EMANUEL FAMILY TRUST", "Address": "PO Box 1484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 101300, "Improved_V": 372900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.11786541699999, "SHAPE_Area": 2368.0950208 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360352.766000002622604, 258439.44819999858737 ], [ 360355.5608000010252, 258395.352600000798702 ], [ 360319.203000001609325, 258403.709800001233816 ], [ 360299.021799996495247, 258406.288899999111891 ], [ 360296.244999997317791, 258448.273800000548363 ], [ 360352.766000002622604, 258439.44819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96110052, "LATITUDE": 18.35512477, "OBJECTID_1": 3204, "PARCEL_NO_": "102703012600", "Tax_Legal_": "DOROTHEA 6AA LITTLE NORTHSIDE", "Name": "HAJIMIHALIS (TRUSTEE), GEORGE J.", "Address": "PO Box 9953", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99800, "Improved_V": 223500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.33897260200001, "SHAPE_Area": 2112.9549092100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355628.705399997532368, 258386.218600001186132 ], [ 355626.531000003218651, 258357.49210000038147 ], [ 355616.835400000214577, 258359.7347999997437 ], [ 355604.737199999392033, 258360.057900000363588 ], [ 355591.863099999725819, 258356.786200001835823 ], [ 355578.197200000286102, 258351.819200001657009 ], [ 355574.152999997138977, 258353.263700000941753 ], [ 355575.5912000015378, 258373.751600001007318 ], [ 355577.902300000190735, 258386.436099998652935 ], [ 355581.81700000166893, 258400.1891999989748 ], [ 355581.766599997878075, 258406.099399998784065 ], [ 355583.352300003170967, 258409.278799999505281 ], [ 355585.771200001239777, 258409.298599999397993 ], [ 355628.705399997532368, 258386.218600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003011900", "MAP": null, "PARCEL_NAM": "9T", "ACRE": null, "LONGITUDE": -64.91188609, "LATITUDE": 18.35481366, "OBJECTID_1": 5616, "PARCEL_NO_": "103003011900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9T GREAT NORTHSIDE", "Name": "CHRISTIAN FELLOWSHIP MINISTRIES CENTER, INC", "Address": "PO Box 308802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 159900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.89924524100002, "SHAPE_Area": 6004.7518759499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360813.846600003540516, 258363.85080000013113 ], [ 360791.532399997115135, 258332.848499998450279 ], [ 360780.376999996602535, 258317.136300001293421 ], [ 360747.827799998223782, 258351.700300000607967 ], [ 360756.589400000870228, 258364.437600001692772 ], [ 360760.574199996888638, 258369.958700001239777 ], [ 360817.1300999969244, 258451.692600000649691 ], [ 360856.882200002670288, 258423.520300000905991 ], [ 360813.846600003540516, 258363.85080000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904010900", "MAP": "D9-6021-T95", "PARCEL_NAM": "1D-1", "ACRE": ".042", "LONGITUDE": -64.9176301, "LATITUDE": 18.35527981, "OBJECTID_1": 4929, "PARCEL_NO_": "102904010900", "Tax_Legal_": "1D-1 & 1-18-A REM ST JOSEPH & ROSENDAHL GR NORTHSIDE QTR", "Name": "NICHOLLS, ROBERT W. & MYRTHLYN I", "Address": "1902 Sugar Estate 9th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83900, "Improved_V": 273600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.986416861600006, "SHAPE_Area": 186.97217380699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360186.615299999713898, 258443.999000001698732 ], [ 360193.857699997723103, 258445.747000001370907 ], [ 360200.513199999928474, 258421.736800000071526 ], [ 360193.272600002586842, 258419.777699999511242 ], [ 360186.615299999713898, 258443.999000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95175591, "LATITUDE": 18.35510418, "OBJECTID_1": 3619, "PARCEL_NO_": "102704050300", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 10-2-18 No3 LITTLE NORTHSIDE QTR", "Name": "THOMPSON, JAMES C", "Address": "PO Box 303682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.91597069599999, "SHAPE_Area": 3357.2536955700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356645.828599996864796, 258351.902399998158216 ], [ 356590.090599998831749, 258363.478500001132488 ], [ 356549.739000000059605, 258367.370099999010563 ], [ 356550.469800002872944, 258376.241999998688698 ], [ 356549.364900000393391, 258411.274500001221895 ], [ 356589.653599999845028, 258414.770700000226498 ], [ 356590.510300002992153, 258408.86710000038147 ], [ 356596.966099999845028, 258408.28660000115633 ], [ 356645.828599996864796, 258351.902399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94453012, "LATITUDE": 18.3550238, "OBJECTID_1": 4263, "PARCEL_NO_": "102803017800", "Tax_Legal_": "LERKENLUND 9AA-2 GT. NORTHSIDE", "Name": "BENEDEK BROADCASTING INC", "Address": "4370 Peachtree Rd NE", "City": "Atlanta", "State": "Georgia", "Zip": 30319, "Country": "United States", "Land_Value": 63100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.02485780399999, "SHAPE_Area": 1575.43740998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357370.423000000417233, 258390.763399999588728 ], [ 357361.882600001990795, 258352.063400000333786 ], [ 357335.23480000346899, 258356.489399999380112 ], [ 357333.595200002193451, 258359.642299998551607 ], [ 357333.550200000405312, 258364.919300001114607 ], [ 357335.933200001716614, 258369.160700000822544 ], [ 357337.538599997758865, 258370.018199998885393 ], [ 357337.457699999213219, 258379.516800001263618 ], [ 357338.726899996399879, 258419.846000000834465 ], [ 357370.423000000417233, 258390.763399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91429646, "LATITUDE": 18.35512357, "OBJECTID_1": 5597, "PARCEL_NO_": "103003010600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL REM 9D GR NORTHSIDE QTR", "Name": "HENRY, MIRIAM G", "Address": "6036 Estate Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31300, "Improved_V": 458900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.18157533600001, "SHAPE_Area": 1186.5145624899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360569.037600003182888, 258420.109000001102686 ], [ 360542.650499999523163, 258393.92850000038743 ], [ 360522.343400001525879, 258411.283100001513958 ], [ 360547.864900000393391, 258444.422499999403954 ], [ 360561.683700002729893, 258431.447799999266863 ], [ 360569.037600003182888, 258420.109000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004056000", "MAP": "A9-708-T07", "PARCEL_NAM": "B-19-1", "ACRE": null, "LONGITUDE": -64.9072902, "LATITUDE": 18.35514479, "OBJECTID_1": 6329, "PARCEL_NO_": "103004056000", "Tax_Legal_": "B-19-1 R.O.W. LOVENLUND NO.2 GT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.551736793700002, "SHAPE_Area": 50.1597664373 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361289.347900003194809, 258435.997600000351667 ], [ 361287.768700003623962, 258424.100600000470877 ], [ 361285.338100001215935, 258418.024099998176098 ], [ 361281.308899998664856, 258414.972899999469519 ], [ 361284.290700003504753, 258419.630199998617172 ], [ 361286.569399997591972, 258436.114100001752377 ], [ 361289.347900003194809, 258435.997600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704015500", "MAP": "G9-1854-T71", "PARCEL_NAM": "11D-1", "ACRE": null, "LONGITUDE": -64.95391389, "LATITUDE": 18.35439467, "OBJECTID_1": 3479, "PARCEL_NO_": "102704015500", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 11D-1 LITTLE NORTHSIDE QUARTER", "Name": "BRIN, NICOLE", "Address": "11920 Robyn Ln", "City": "Princess Anne", "State": "Maryland", "Zip": 21853, "Country": "United States", "Land_Value": 155300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 548.53207997300001, "SHAPE_Area": 13038.515869700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356392.715899996459484, 258247.028200000524521 ], [ 356397.206000000238419, 258193.236099999397993 ], [ 356386.688000001013279, 258197.371899999678135 ], [ 356327.683300003409386, 258213.776399999856949 ], [ 356326.838899999856949, 258407.553399998694658 ], [ 356326.688100002706051, 258420.968499999493361 ], [ 356345.776900000870228, 258411.424100000411272 ], [ 356353.14299999922514, 258406.820300001651049 ], [ 356366.943599998950958, 258398.194899998605251 ], [ 356392.158399999141693, 258388.511199999600649 ], [ 356391.852799996733665, 258380.258000001311302 ], [ 356391.523400001227856, 258371.366099998354912 ], [ 356392.715899996459484, 258247.028200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012700", "MAP": "F9-2521-T69", "PARCEL_NAM": "6E", "ACRE": ".24", "LONGITUDE": -64.93358299, "LATITUDE": 18.35516446, "OBJECTID_1": 4442, "PARCEL_NO_": "102804012700", "Tax_Legal_": "MISGUNST 6E GR NORTHSIDE", "Name": "FRANCIS, JOSEPH N. & JENNIFER G.", "Address": "6E Estate Misunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40600, "Improved_V": 210200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.54894387799999, "SHAPE_Area": 1310.5388964700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358482.80179999768734, 258393.993099998682737 ], [ 358485.35700000077486, 258410.831500001251698 ], [ 358474.244400002062321, 258415.594099998474121 ], [ 358526.763199999928474, 258423.423700001090765 ], [ 358532.549800001084805, 258390.471999999135733 ], [ 358482.80179999768734, 258393.993099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91587192, "LATITUDE": 18.35506917, "OBJECTID_1": 5721, "PARCEL_NO_": "103003020100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-43 GT. NORTHSIDE", "Name": "ONEAL, KENNETH & MAGDALIN", "Address": "PO Box 303782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56600, "Improved_V": 272400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.22657946199999, "SHAPE_Area": 2272.1820618299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360413.412100002169609, 258419.67960000038147 ], [ 360393.588699996471405, 258380.254000000655651 ], [ 360374.971600003540516, 258388.545299999415874 ], [ 360355.5608000010252, 258395.352600000798702 ], [ 360352.766000002622604, 258439.44819999858737 ], [ 360363.266099996864796, 258437.423200000077486 ], [ 360386.708499997854233, 258430.649000000208616 ], [ 360413.412100002169609, 258419.67960000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003060500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90967665, "LATITUDE": 18.35495258, "OBJECTID_1": 5934, "PARCEL_NO_": "103003060500", "Tax_Legal_": "ST JOSPEH & ROSENDAHL 12E1 GREAT NORTHSIDE", "Name": "TODMAN, MICHAEL & LYNN", "Address": "200 Lake St", "City": "Saint Joseph", "State": "Michigan", "Zip": 49085, "Country": "United States", "Land_Value": 97900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.44151538900002, "SHAPE_Area": 4434.9229638799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361064.003799997270107, 258437.036699999123812 ], [ 361074.094899997115135, 258388.356699999421835 ], [ 361055.619800001382828, 258379.972899999469519 ], [ 361049.99719999730587, 258377.393699999898672 ], [ 361005.018100000917912, 258356.549499999731779 ], [ 361000.149700000882149, 258360.098299998790026 ], [ 361008.886100001633167, 258375.790699999779463 ], [ 360999.079099997878075, 258391.120200000703335 ], [ 360997.426899999380112, 258395.750799998641014 ], [ 360998.141500003635883, 258406.522399999201298 ], [ 361000.515500001609325, 258411.819200001657009 ], [ 361002.916400000452995, 258413.949799999594688 ], [ 361014.86370000243187, 258431.357200000435114 ], [ 361022.064699999988079, 258437.960099998861551 ], [ 361036.527999997138977, 258443.989000000059605 ], [ 361049.425399996340275, 258444.516800001263618 ], [ 361051.8496999964118, 258443.903400000184774 ], [ 361055.098399996757507, 258441.185699999332428 ], [ 361055.942400000989437, 258436.759700000286102 ], [ 361064.003799997270107, 258437.036699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91314453, "LATITUDE": 18.3548024, "OBJECTID_1": 5911, "PARCEL_NO_": "103003050900", "Tax_Legal_": "ST JOSEPH &ROSENDAHL 9G-F GT. NORTHSIDE QTR.", "Name": "BRIDGEWATER HODGE, GERALDINE A", "Address": "PO Box 9610", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.71754274099999, "SHAPE_Area": 3323.81035187 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360706.491899996995926, 258376.482099998742342 ], [ 360664.921499997377396, 258334.134300000965595 ], [ 360649.445100001990795, 258352.372800000011921 ], [ 360651.687899999320507, 258373.078299999237061 ], [ 360650.768299996852875, 258386.369600001722574 ], [ 360639.175999999046326, 258421.949599999934435 ], [ 360651.949299998581409, 258437.041799999773502 ], [ 360695.104699999094009, 258387.999099999666214 ], [ 360703.259499996900558, 258377.30009999871254 ], [ 360706.491899996995926, 258376.482099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95691843, "LATITUDE": 18.35507686, "OBJECTID_1": 3498, "PARCEL_NO_": "102704020600", "Tax_Legal_": "BONNE RESOLUTION 5E LITTLE NORTHSIDE", "Name": "PHILLIP, FRANK & PRISCILLA", "Address": "12 Rock Hollow Dr", "City": "Elkton", "State": "Maryland", "Zip": 21921, "Country": "United States", "Land_Value": 23300, "Improved_V": 302500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.80194594299999, "SHAPE_Area": 1234.0029160500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356014.236000001430511, 258376.075100000947714 ], [ 356022.117499999701977, 258397.46000000089407 ], [ 356031.803999997675419, 258396.272799998521805 ], [ 356050.397799998521805, 258390.725400000810623 ], [ 356054.456299997866154, 258387.592199999839067 ], [ 356059.348099999129772, 258381.299499999731779 ], [ 356061.120800003409386, 258362.526599999517202 ], [ 356057.98369999974966, 258352.157400000840425 ], [ 356051.624899998307228, 258341.339600000530481 ], [ 356050.762800000607967, 258347.876400001347065 ], [ 356048.273699998855591, 258356.088700000196695 ], [ 356041.753100000321865, 258364.26799999922514 ], [ 356031.200900003314018, 258372.414299998432398 ], [ 356024.727099999785423, 258375.105500001460314 ], [ 356014.236000001430511, 258376.075100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91867197000001, "LATITUDE": 18.35500401, "OBJECTID_1": 4936, "PARCEL_NO_": "102904011700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-19 GREAT NORTHSIDE QTR", "Name": "RICHARDSON, CINDY", "Address": "PO Box 306227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67000, "Improved_V": 130400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.19146022000001, "SHAPE_Area": 1677.47870139 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360107.882600001990795, 258409.790699999779463 ], [ 360094.545699998736382, 258366.196299999952316 ], [ 360085.616899996995926, 258373.089299999177456 ], [ 360075.034199997782707, 258384.823899999260902 ], [ 360068.495600000023842, 258395.114000000059605 ], [ 360062.736299999058247, 258408.576900001615286 ], [ 360059.327600002288818, 258430.08049999922514 ], [ 360074.679899998009205, 258426.406500000506639 ], [ 360107.882600001990795, 258409.790699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703016300", "MAP": "C9-284-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95970484, "LATITUDE": 18.35498405, "OBJECTID_1": 3241, "PARCEL_NO_": "102703016300", "Tax_Legal_": "BONNE RESOLUTION 4-4 LT. NORTHSIDE", "Name": "WILSON, III. W. & BERTRAND, K", "Address": "PO Box 1116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39100, "Improved_V": 89400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.63093859099999, "SHAPE_Area": 1844.28180572 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355754.189099997282028, 258327.928300000727177 ], [ 355727.552000001072884, 258331.087799999862909 ], [ 355732.870700001716614, 258369.339299999177456 ], [ 355736.699100002646446, 258393.224199999123812 ], [ 355774.588600002229214, 258394.378699999302626 ], [ 355776.267700001597404, 258386.581999998539686 ], [ 355768.224399998784065, 258384.194099999964237 ], [ 355765.017099998891354, 258382.05689999833703 ], [ 355761.829599998891354, 258377.597899999469519 ], [ 355754.862300001084805, 258343.554800000041723 ], [ 355754.189099997282028, 258327.928300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96580045, "LATITUDE": 18.35513472, "OBJECTID_1": 3184, "PARCEL_NO_": "102703010700", "Tax_Legal_": "DOROTHEA 22C LT. NORTHSIDE", "Name": "HENRY, MARIA A.", "Address": "PO Box 9888", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.03010633700001, "SHAPE_Area": 1731.2643008499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355133.821900002658367, 258359.581199999898672 ], [ 355063.60980000346899, 258366.394799999892712 ], [ 355069.07769999653101, 258387.1266999989748 ], [ 355136.79900000244379, 258388.7364999987185 ], [ 355133.821900002658367, 258359.581199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703016200", "MAP": "C9-284-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95933046, "LATITUDE": 18.35491664, "OBJECTID_1": 3240, "PARCEL_NO_": "102703016200", "Tax_Legal_": "BONNE RESOLUTION 4-3 LT. NORTHSIDE", "Name": "WILLIAMS, RAMESH & TITRE, BERNA", "Address": "PO Box 11736", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81900, "Improved_V": 147100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.03715496199999, "SHAPE_Area": 2014.3183663499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355834.264700002968311, 258393.811599999666214 ], [ 355808.676700003445148, 258368.482099998742342 ], [ 355820.072899997234344, 258355.909699998795986 ], [ 355760.680900000035763, 258323.126299999654293 ], [ 355759.820699997246265, 258329.452100001275539 ], [ 355760.538900002837181, 258339.801500000059605 ], [ 355767.493600003421307, 258375.322200000286102 ], [ 355769.894500002264977, 258377.452799998223782 ], [ 355775.522600002586842, 258379.398699998855591 ], [ 355796.544200003147125, 258372.815699998289347 ], [ 355806.211000002920628, 258373.950300000607967 ], [ 355810.222800001502037, 258376.30519999936223 ], [ 355817.423799999058247, 258382.907999999821186 ], [ 355822.213200002908707, 258388.646699998527765 ], [ 355831.843900002539158, 258394.002900000661612 ], [ 355834.264700002968311, 258393.811599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95887202, "LATITUDE": 18.35502057, "OBJECTID_1": 3209, "PARCEL_NO_": "102703013100", "Tax_Legal_": "BONNE RESOLUTION 4B LITTLE NORTHSIDE QTR", "Name": "WILLIAMS, RAMESH", "Address": "PO Box 11736", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.675133821, "SHAPE_Area": 1502.25076784 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355860.129600003361702, 258386.635000001639128 ], [ 355841.123400002717972, 258345.949499998241663 ], [ 355842.86370000243187, 258330.976100001484156 ], [ 355838.792499996721745, 258335.586899999529123 ], [ 355820.072899997234344, 258355.909699998795986 ], [ 355808.676700003445148, 258368.482099998742342 ], [ 355834.264700002968311, 258393.811599999666214 ], [ 355841.548500001430511, 258390.704799998551607 ], [ 355860.129600003361702, 258386.635000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003010900", "MAP": "G9-671-T63", "PARCEL_NAM": "9L", "ACRE": ".26", "LONGITUDE": -64.91498874, "LATITUDE": 18.35502816, "OBJECTID_1": 5606, "PARCEL_NO_": "103003010900", "Tax_Legal_": "ST jOSEPH & ROSENDAHL 9L GR NORTHSIDE", "Name": "RICHARDSON, BRANDON", "Address": "PO BOX 304418", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36200, "Improved_V": 345400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.59808946199999, "SHAPE_Area": 963.37371853699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360465.725299999117851, 258431.506799999624491 ], [ 360494.988099999725819, 258404.093100000172853 ], [ 360479.023699998855591, 258384.964000001549721 ], [ 360469.272399999201298, 258393.750100001692772 ], [ 360453.040100000798702, 258406.071800000965595 ], [ 360452.215800002217293, 258408.175999999046326 ], [ 360452.986100003123283, 258412.404199998825788 ], [ 360457.791599996387959, 258416.243200000375509 ], [ 360462.57379999756813, 258422.826200000941753 ], [ 360465.725299999117851, 258431.506799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804015500", "MAP": "G9-811-T65", "PARCEL_NAM": "6C", "ACRE": ".35", "LONGITUDE": -64.93407306, "LATITUDE": 18.35503109, "OBJECTID_1": 4469, "PARCEL_NO_": "102804015500", "Tax_Legal_": "MISGUNST 6 C GR NORTHSIDE QTR", "Name": "QUESTEL, ANDRE & JUANITA", "Address": "6C MISGUNST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83300, "Improved_V": 144500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.384236641, "SHAPE_Area": 1257.7391836199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358433.868400000035763, 258382.406399998813868 ], [ 358450.416400000452995, 258422.344399999827147 ], [ 358459.666599996387959, 258409.599800001829863 ], [ 358462.935000002384186, 258404.560300000011921 ], [ 358478.754399999976158, 258389.347699999809265 ], [ 358465.681699998676777, 258366.103500001132488 ], [ 358449.475900001823902, 258375.319200001657009 ], [ 358433.868400000035763, 258382.406399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9525386, "LATITUDE": 18.35470116, "OBJECTID_1": 3460, "PARCEL_NO_": "102704013300", "Tax_Legal_": "LILLDHL & MARIJ 11-2 LITTLE NORTHSIDE", "Name": "BRIN, SUSANNE", "Address": "PO Box 10991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 76700, "Improved_V": 5800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.041098006, "SHAPE_Area": 2399.3519188400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356533.953199997544289, 258358.658500000834465 ], [ 356532.9628000035882, 258348.86769999936223 ], [ 356532.368699997663498, 258323.95380000025034 ], [ 356533.20380000025034, 258320.583099998533726 ], [ 356482.467299997806549, 258312.990699999034405 ], [ 356471.680799998342991, 258352.686999998986721 ], [ 356477.169200003147125, 258352.858500000089407 ], [ 356506.60419999808073, 258363.111099999397993 ], [ 356533.953199997544289, 258358.658500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704051700", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-26", "ACRE": "0.56", "LONGITUDE": -64.95037975, "LATITUDE": 18.35480357, "OBJECTID_1": 3633, "PARCEL_NO_": "102704051700", "Tax_Legal_": "LILLENDAHL & MARIENHOJ 10-2-26 LITTLE NORTHSIDE QTR", "Name": "DONOVAN, WHUEPHURN M.", "Address": "PO Box 306095", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44500, "Improved_V": 223000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.91023168699999, "SHAPE_Area": 2345.9610352300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356753.014200001955032, 258359.112399999052286 ], [ 356758.795100003480911, 258343.116599999368191 ], [ 356762.988499999046326, 258324.152499999850988 ], [ 356763.638099998235703, 258317.911699999123812 ], [ 356735.960100002586842, 258326.792100001126528 ], [ 356734.371799997985363, 258327.301699999719858 ], [ 356728.384700000286102, 258336.880899999290705 ], [ 356726.850699998438358, 258339.335400000214577 ], [ 356716.777199998497963, 258341.889299999922514 ], [ 356711.593599997460842, 258343.203400000929832 ], [ 356691.037900000810623, 258336.703099999576807 ], [ 356725.347900003194809, 258388.439100001007318 ], [ 356740.773900002241135, 258376.110800001770258 ], [ 356748.912500001490116, 258367.311500001698732 ], [ 356753.014200001955032, 258359.112399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96058619, "LATITUDE": 18.35495179, "OBJECTID_1": 3224, "PARCEL_NO_": "102703014500", "Tax_Legal_": "DOROTHEA 6AA-1 LITTLE NORTHSIDE QTR", "Name": "MILLER, DANIELA", "Address": "4 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36500, "Improved_V": 240700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.111599692, "SHAPE_Area": 1466.33514797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355626.531000003218651, 258357.49210000038147 ], [ 355628.705399997532368, 258386.218600001186132 ], [ 355670.012500002980232, 258364.813999999314547 ], [ 355677.314300000667572, 258359.596500001847744 ], [ 355684.653800003230572, 258349.946199998259544 ], [ 355684.759900003671646, 258337.492600001394749 ], [ 355681.541799999773502, 258336.621899999678135 ], [ 355655.66610000282526, 258345.064899999648333 ], [ 355626.531000003218651, 258357.49210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95860865, "LATITUDE": 18.35492136, "OBJECTID_1": 3210, "PARCEL_NO_": "102703013200", "Tax_Legal_": "BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130700, "Improved_V": 168900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.23738143400001, "SHAPE_Area": 1666.5828519500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355863.845799997448921, 258329.036899998784065 ], [ 355842.86370000243187, 258330.976100001484156 ], [ 355841.123400002717972, 258345.949499998241663 ], [ 355860.129600003361702, 258386.635000001639128 ], [ 355888.38289999961853, 258383.066599998623133 ], [ 355877.328299999237061, 258355.534000001847744 ], [ 355874.16780000180006, 258347.908700000494719 ], [ 355867.074600003659725, 258328.641199998557568 ], [ 355863.845799997448921, 258329.036899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96508944, "LATITUDE": 18.35504178, "OBJECTID_1": 3220, "PARCEL_NO_": "102703014200", "Tax_Legal_": "DOROTHEA 22 LITTLE NORTHSIDE", "Name": "RICHARDSON, PATRICIA S", "Address": "PO Box 1414", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.31925754, "SHAPE_Area": 1561.3132502000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355204.901500001549721, 258345.597500000149012 ], [ 355170.154500000178814, 258354.179000001400709 ], [ 355145.932800002396107, 258357.780499998480082 ], [ 355147.367399998009205, 258378.690499998629093 ], [ 355203.800300002098083, 258380.207800000905991 ], [ 355204.901500001549721, 258345.597500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904011000", "MAP": "D9-6021-T95", "PARCEL_NAM": "1-18-A-1", "ACRE": ".042", "LONGITUDE": -64.91761644, "LATITUDE": 18.3550007, "OBJECTID_1": 4930, "PARCEL_NO_": "102904011000", "Tax_Legal_": "1D REM & 1-18-A-1 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QTR", "Name": "FAULKNER, WILLIAM E & CHRISTIAN A", "Address": "3928 Carmona Ave", "City": "Los Angeles", "State": "California", "Zip": 90008, "Country": "United States", "Land_Value": 176400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.133620346100003, "SHAPE_Area": 202.46048420599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360203.262999996542931, 258382.918099999427795 ], [ 360196.787399999797344, 258385.82039999961853 ], [ 360187.63740000128746, 258418.676100000739098 ], [ 360193.272600002586842, 258419.777699999511242 ], [ 360203.262999996542931, 258382.918099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91347604000001, "LATITUDE": 18.35479289, "OBJECTID_1": 5910, "PARCEL_NO_": "103003050800", "Tax_Legal_": "ST JOSEPH & ROSENDHAL 9G-E GT.NORTHSIDE QTR.", "Name": "DOVER, ERICA", "Address": "ST. JOSEPH & ROSENDAHL 9G-E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30300, "Improved_V": 76500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.960715314, "SHAPE_Area": 1786.5828933099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360604.887599997222424, 258376.706000000238419 ], [ 360639.175999999046326, 258421.949599999934435 ], [ 360650.768299996852875, 258386.369600001722574 ], [ 360651.687899999320507, 258373.078299999237061 ], [ 360649.445100001990795, 258352.372800000011921 ], [ 360644.580300003290176, 258355.499299999326468 ], [ 360639.763999998569489, 258352.92680000141263 ], [ 360631.652300000190735, 258358.559900000691414 ], [ 360617.07039999961853, 258366.462099999189377 ], [ 360604.887599997222424, 258376.706000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003052400", "MAP": "F9-3016-T72", "PARCEL_NAM": "10J", "ACRE": ".29", "LONGITUDE": -64.91151307, "LATITUDE": 18.35473388, "OBJECTID_1": 5931, "PARCEL_NO_": "103003052400", "Tax_Legal_": "10J ST. JOSEPH & ROSENDAHL &1/8 INT ROW 10REM GREAT NORTHSIDE QUARTER", "Name": "CARBON, KERT & JOSHUANETTE RHASBA", "Address": "PO Box 9741", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.46663972299999, "SHAPE_Area": 1546.84431513 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360851.163500003516674, 258337.558400001376867 ], [ 360813.846600003540516, 258363.85080000013113 ], [ 360856.882200002670288, 258423.520300000905991 ], [ 360868.240699999034405, 258415.38060000166297 ], [ 360855.451099999248981, 258402.188099998980761 ], [ 360849.090599998831749, 258391.581399999558926 ], [ 360845.9695999994874, 258379.312399998307228 ], [ 360845.226199999451637, 258371.918099999427795 ], [ 360851.016099996864796, 258354.866900000721216 ], [ 360851.942900002002716, 258340.731199998408556 ], [ 360851.163500003516674, 258337.558400001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91540073, "LATITUDE": 18.35485291, "OBJECTID_1": 5722, "PARCEL_NO_": "103003020200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-35 GR NORTHSIDE", "Name": "ESANNASON, ANTON E. & NOREEN D. -", "Address": "PO Box 305242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 263000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.57898388800001, "SHAPE_Area": 2483.4116656000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360393.588699996471405, 258380.254000000655651 ], [ 360413.412100002169609, 258419.67960000038147 ], [ 360427.98870000243187, 258412.410700000822544 ], [ 360446.632700003683567, 258400.953099999576807 ], [ 360469.35869999974966, 258383.618299998342991 ], [ 360470.222599998116493, 258376.870400000363588 ], [ 360468.629699997603893, 258374.535300001502037 ], [ 360447.712399996817112, 258368.875700000673532 ], [ 360434.049999997019768, 258363.486600000411272 ], [ 360426.795000001788139, 258363.216099999845028 ], [ 360421.136399999260902, 258364.858500000089407 ], [ 360393.588699996471405, 258380.254000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96046713, "LATITUDE": 18.35460809, "OBJECTID_1": 3205, "PARCEL_NO_": "102703012700", "Tax_Legal_": "DOROTHEA 6AB LITTLE NORTHSIDE", "Name": "BRYAN, CARL J & ELIZABETH", "Address": "3C DORETHEA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 151400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 552.22276368099995, "SHAPE_Area": 9887.6902426100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355563.648199997842312, 258331.289900001138449 ], [ 355564.596400000154972, 258344.570500001311302 ], [ 355569.390699997544289, 258344.358800001442432 ], [ 355584.685400001704693, 258347.439300000667572 ], [ 355599.154100000858307, 258352.83500000089407 ], [ 355612.044299997389317, 258354.207100000232458 ], [ 355628.204700000584126, 258350.328600000590086 ], [ 355655.723700001835823, 258338.310400001704693 ], [ 355681.590400002896786, 258330.922699999064207 ], [ 355687.225599996745586, 258332.024300001561642 ], [ 355689.628300003707409, 258333.943799998611212 ], [ 355691.212200000882149, 258337.334300000220537 ], [ 355691.136699996888638, 258346.199599999934435 ], [ 355688.640399999916553, 258355.25620000064373 ], [ 355685.377400003373623, 258359.662500001490116 ], [ 355679.686499997973442, 258365.104299999773502 ], [ 355667.525200001895428, 258372.815200001001358 ], [ 355669.879399999976158, 258380.433899998664856 ], [ 355732.870700001716614, 258369.339299999177456 ], [ 355727.552000001072884, 258331.087799999862909 ], [ 355719.922200001776218, 258280.151799999177456 ], [ 355716.104699999094009, 258255.000399999320507 ], [ 355619.736299999058247, 258303.185400001704693 ], [ 355563.648199997842312, 258331.289900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003051400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91416363, "LATITUDE": 18.35491825, "OBJECTID_1": 5921, "PARCEL_NO_": "103003051400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9F-3 GT. NORTHSIDE", "Name": "PHILLIP, OVELEY G", "Address": "PO Box 502355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31300, "Improved_V": 372600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.598646593, "SHAPE_Area": 895.88648148899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360579.695900000631809, 258399.50899999961257 ], [ 360554.923199996352196, 258373.130699999630451 ], [ 360538.651299998164177, 258390.096099998801947 ], [ 360542.650499999523163, 258393.92850000038743 ], [ 360569.037600003182888, 258420.109000001102686 ], [ 360579.695900000631809, 258399.50899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003018500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91454482, "LATITUDE": 18.3549387, "OBJECTID_1": 5707, "PARCEL_NO_": "103003018500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9D-1-A GT. NORTHSIDE", "Name": "MARTIN, JAMES & DOTTILY", "Address": "PO Box 6483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26300, "Improved_V": 358500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.52933236699999, "SHAPE_Area": 902.44187024799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360538.651299998164177, 258390.096099998801947 ], [ 360525.057199999690056, 258376.685899998992682 ], [ 360498.240299999713898, 258400.953299999237061 ], [ 360513.403800003230572, 258419.442499998956919 ], [ 360522.343400001525879, 258411.283100001513958 ], [ 360542.650499999523163, 258393.92850000038743 ], [ 360538.651299998164177, 258390.096099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9527717, "LATITUDE": 18.35433231, "OBJECTID_1": 3465, "PARCEL_NO_": "102704014000", "Tax_Legal_": "LILLIENDAL & MARHOJ 11G LT. NORTHSIDE", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 122000, "Improved_V": 5400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 483.25921674799997, "SHAPE_Area": 10026.9747066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356455.658600002527237, 258354.856100000441074 ], [ 356466.585900001227856, 258352.527800001204014 ], [ 356471.680799998342991, 258352.686999998986721 ], [ 356482.467299997806549, 258312.990699999034405 ], [ 356533.20380000025034, 258320.583099998533726 ], [ 356534.064099997282028, 258314.257399998605251 ], [ 356539.05120000243187, 258296.777399998158216 ], [ 356546.455399997532368, 258279.528299998492002 ], [ 356547.371500000357628, 258266.659099999815226 ], [ 356545.056800000369549, 258254.396800000220537 ], [ 356541.908900000154972, 258245.293999999761581 ], [ 356535.537500001490116, 258235.953699998557568 ], [ 356529.230899997055531, 258219.014600001275539 ], [ 356525.226300001144409, 258215.815400000661612 ], [ 356517.951499998569489, 258217.866799999028444 ], [ 356517.125399999320507, 258220.182100001722574 ], [ 356496.769799999892712, 258243.235800001770258 ], [ 356474.005999997258186, 258265.003199998289347 ], [ 356458.561999998986721, 258279.442200001329184 ], [ 356443.947700001299381, 258291.143899999558926 ], [ 356423.663999997079372, 258305.754399999976158 ], [ 356408.26129999756813, 258315.338700000196695 ], [ 356403.927400000393391, 258368.173099998384714 ], [ 356455.658600002527237, 258354.856100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017700", "MAP": "D9-1713-T81", "PARCEL_NAM": "9Aa-3", "ACRE": null, "LONGITUDE": -64.94422417, "LATITUDE": 18.3548558, "OBJECTID_1": 4262, "PARCEL_NO_": "102803017700", "Tax_Legal_": "SOLBERG 1D-16&LERKENLUND 9Aa-3 No.1LT.&No.8GT.NORTHSIDE QTR.", "Name": "THE HEBREW CONGREGATION ST. T, I", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 76800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.400248003, "SHAPE_Area": 1160.38815245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357411.866800002753735, 258353.316899999976158 ], [ 357403.872000001370907, 258345.229899998754263 ], [ 357361.882600001990795, 258352.063400000333786 ], [ 357370.423000000417233, 258390.763399999588728 ], [ 357398.051600001752377, 258365.86939999833703 ], [ 357411.866800002753735, 258353.316899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90862136, "LATITUDE": 18.35457878, "OBJECTID_1": 5621, "PARCEL_NO_": "103003012500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12B GREAT NORTHSIDE QTR", "Name": "SIMMONDS, SULEMA A.,LEONARD,DEVERA A. & DEVERON A.A.", "Address": "PO Box 8543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 160400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 499.31951057399999, "SHAPE_Area": 8230.8032227299991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361152.839500002563, 258326.517499998211861 ], [ 361149.506300002336502, 258339.155799999833107 ], [ 361147.897299997508526, 258338.720499999821186 ], [ 361158.735399998724461, 258297.012699998915195 ], [ 361155.519100002944469, 258295.930900000035763 ], [ 361152.259700000286102, 258299.91499999910593 ], [ 361147.39130000025034, 258303.463700000196695 ], [ 361135.266000002622604, 258306.953099999576807 ], [ 361129.596699997782707, 258309.861999999731779 ], [ 361103.589699998497963, 258333.713799998164177 ], [ 361125.97580000013113, 258356.272900000214577 ], [ 361102.448899999260902, 258372.9679000005126 ], [ 361094.466700002551079, 258363.403299998492002 ], [ 361074.094899997115135, 258388.356699999421835 ], [ 361144.7753000035882, 258421.232500001788139 ], [ 361225.317699998617172, 258337.665399998426437 ], [ 361196.326399996876717, 258333.206199999898672 ], [ 361152.839500002563, 258326.517499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95345967, "LATITUDE": 18.35430659, "OBJECTID_1": 3464, "PARCEL_NO_": "102704013900", "Tax_Legal_": "LIL & MAR 11EB, 11H & 11J GT. NORTHSIDE", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 117800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.27202584999998, "SHAPE_Area": 3140.3010517600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356392.715899996459484, 258247.028200000524521 ], [ 356391.523400001227856, 258371.366099998354912 ], [ 356403.927400000393391, 258368.173099998384714 ], [ 356408.26129999756813, 258315.338700000196695 ], [ 356409.130599997937679, 258307.957499999552965 ], [ 356428.593599997460842, 258295.028999999165535 ], [ 356444.016000002622604, 258283.122900001704693 ], [ 356405.686999998986721, 258238.901700001209974 ], [ 356392.715899996459484, 258247.028200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9182947, "LATITUDE": 18.35478374, "OBJECTID_1": 4990, "PARCEL_NO_": "102904017800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-19A GREAT NORTHSIDE QTR", "Name": "LIONEL O PRATT TRUST", "Address": "PO Box 8913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71400, "Improved_V": 264500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.57043250699999, "SHAPE_Area": 2334.1402494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360145.813500002026558, 258406.090399999171495 ], [ 360143.95380000025034, 258340.42509999871254 ], [ 360127.748400002717972, 258349.580600000917912 ], [ 360094.545699998736382, 258366.196299999952316 ], [ 360107.882600001990795, 258409.790699999779463 ], [ 360120.839299999177456, 258403.352899998426437 ], [ 360124.879900000989437, 258402.33049999922514 ], [ 360135.367399998009205, 258401.782999999821186 ], [ 360142.606200002133846, 258403.953200001269579 ], [ 360145.813500002026558, 258406.090399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94049513, "LATITUDE": 18.35470729, "OBJECTID_1": 4459, "PARCEL_NO_": "102804014400", "Tax_Legal_": "LERKENLUND 7A GREAT NORTHSIDE QTR", "Name": "SHAPIRO, LAURA", "Address": "PO Box 305617", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 142900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.88610488399999, "SHAPE_Area": 2337.0556995299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357786.510799996554852, 258390.580299999564886 ], [ 357807.457599997520447, 258327.98369999974966 ], [ 357789.467399999499321, 258327.487500000745058 ], [ 357766.114900000393391, 258323.707800000905991 ], [ 357748.370600000023842, 258324.195900000631809 ], [ 357759.290399998426437, 258367.559399999678135 ], [ 357761.714699998497963, 258366.945999998599291 ], [ 357786.510799996554852, 258390.580299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91688366, "LATITUDE": 18.35489251, "OBJECTID_1": 4933, "PARCEL_NO_": "102904011400", "Tax_Legal_": "JOSEPH & ROSENDAHL 1-34 GR NORTHSIDE QTR", "Name": "FLEMING, EDRIS", "Address": "PO Box 941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67000, "Improved_V": 279300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.431180278, "SHAPE_Area": 1886.27936221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360265.458800002932549, 258370.550500001758337 ], [ 360253.869599997997284, 258368.404800001531839 ], [ 360243.468500003218651, 258410.521899998188019 ], [ 360254.635099999606609, 258410.569600000977516 ], [ 360293.370399996638298, 258407.087000001221895 ], [ 360293.417199999094009, 258401.598900001496077 ], [ 360296.653200000524521, 258400.358899999409914 ], [ 360299.097300000488758, 258397.423599999397993 ], [ 360299.138700000941753, 258392.568799998611212 ], [ 360300.901199996471405, 258392.352800000458956 ], [ 360304.670999996364117, 258376.689599998295307 ], [ 360265.458800002932549, 258370.550500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91779245, "LATITUDE": 18.35462913, "OBJECTID_1": 4935, "PARCEL_NO_": "102904011600", "Tax_Legal_": "ST. JOSEPH/ROSENDAHL 1-18\nGREAT NORTHSIDE", "Name": "Sandra Steele-Brookes, Roger Steele, & Desiree Tucker-Cave", "Address": "PO Box 304", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040304, "Country": "United States", "Land_Value": 67900, "Improved_V": 171000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.76315710099999, "SHAPE_Area": 4365.6440834300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360218.224399998784065, 258330.478300001472235 ], [ 360177.204999998211861, 258318.110199999064207 ], [ 360177.159999996423721, 258323.387200001627207 ], [ 360173.879000000655651, 258329.904199998825788 ], [ 360154.475400000810623, 258335.86710000038147 ], [ 360143.95380000025034, 258340.42509999871254 ], [ 360145.813500002026558, 258406.090399999171495 ], [ 360148.218000002205372, 258407.798799999058247 ], [ 360196.787399999797344, 258385.82039999961853 ], [ 360203.262999996542931, 258382.918099999427795 ], [ 360218.224399998784065, 258330.478300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003018600", "MAP": "F9-3036-T72", "PARCEL_NAM": "10K", "ACRE": ".44", "LONGITUDE": -64.91121218000001, "LATITUDE": 18.35465392, "OBJECTID_1": 5708, "PARCEL_NO_": "103003018600", "Tax_Legal_": "10K ST JOSEPH & ROSEDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "ANDERSON, LYNNE G", "Address": "153 N 51st St", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19139, "Country": "United States", "Land_Value": 42000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.63210070899999, "SHAPE_Area": 2767.01504798 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360844.245200000703335, 258298.804800000041723 ], [ 360841.230099998414516, 258294.709600001573563 ], [ 360837.801500000059605, 258296.919100001454353 ], [ 360841.768500000238419, 258300.841299999505281 ], [ 360843.398900002241135, 258302.453299999237061 ], [ 360849.718099996447563, 258317.914900001138449 ], [ 360855.259800001978874, 258329.992600001394749 ], [ 360858.379000000655651, 258342.472600001841784 ], [ 360856.636900000274181, 258357.6570999994874 ], [ 360851.685699999332428, 258370.915500000119209 ], [ 360853.174300000071526, 258385.493099998682737 ], [ 360857.92400000244379, 258395.875599998980761 ], [ 360864.311599999666214, 258403.316100001335144 ], [ 360873.911799997091293, 258412.260600000619888 ], [ 360907.181000001728535, 258387.83500000089407 ], [ 360855.396499998867512, 258313.950599998235703 ], [ 360844.245200000703335, 258298.804800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95722564, "LATITUDE": 18.35482524, "OBJECTID_1": 3500, "PARCEL_NO_": "102704020800", "Tax_Legal_": "5F BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "BREWER, JR., RICKIE STEPHEN", "Address": "3300 Veterans Dr", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 247000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.225911282, "SHAPE_Area": 977.84022249899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356019.126000002026558, 258369.993400000035763 ], [ 356021.173799999058247, 258318.925500001758337 ], [ 356006.57209999859333, 258329.149599999189377 ], [ 356000.877499997615814, 258335.013599999248981 ], [ 355996.782999999821186, 258342.368400000035763 ], [ 355994.293999999761581, 258350.580600000917912 ], [ 355995.021200001239777, 258359.874699998646975 ], [ 355997.402300000190735, 258364.327199999243021 ], [ 355999.799699999392033, 258366.879900000989437 ], [ 356004.614200003445148, 258369.663499999791384 ], [ 356008.636799998581409, 258370.751899998635054 ], [ 356019.126000002026558, 258369.993400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95700357, "LATITUDE": 18.35468363, "OBJECTID_1": 3501, "PARCEL_NO_": "102704020900", "Tax_Legal_": "BONNE RESOLUTION 5G LITTLE NORTHSIDE", "Name": "NELSON MCDONALD PETTY JR", "Address": "PO Box 302069", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032069, "Country": "United States", "Land_Value": 22100, "Improved_V": 333300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.21836243000001, "SHAPE_Area": 1479.4427854800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356021.173799999058247, 258318.925500001758337 ], [ 356019.126000002026558, 258369.993400000035763 ], [ 356026.400799997150898, 258367.94200000166893 ], [ 356031.265699997544289, 258364.815400000661612 ], [ 356035.320600003004074, 258362.104400001466274 ], [ 356041.833999998867512, 258354.769400000572205 ], [ 356044.306900002062321, 258348.456900000572205 ], [ 356045.204899996519089, 258337.698399998247623 ], [ 356046.853500001132488, 258333.490100000053644 ], [ 356046.887699998915195, 258329.479600001126528 ], [ 356043.752400003373623, 258318.89919999986887 ], [ 356043.028800003230572, 258309.18299999833107 ], [ 356047.150200001895428, 258298.662000000476837 ], [ 356045.568199999630451, 258295.060499999672174 ], [ 356037.494300000369549, 258296.260999999940395 ], [ 356031.819499999284744, 258299.803100001066923 ], [ 356029.377199999988079, 258302.527399998158216 ], [ 356024.436800003051758, 258314.519299998879433 ], [ 356021.173799999058247, 258318.925500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9147028, "LATITUDE": 18.35477084, "OBJECTID_1": 5719, "PARCEL_NO_": "103003019800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL REM 9D-1 S GT. NORTHSIDE QTR", "Name": "PHILLIPS, LASCELLE P. & ETHLYN", "Address": "P.O. BOX 3922", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27500, "Improved_V": 330800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.317879156, "SHAPE_Area": 897.67257843799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360525.057199999690056, 258376.685899998992682 ], [ 360505.869400002062321, 258357.319400001317263 ], [ 360483.085799999535084, 258381.408700000494719 ], [ 360498.240299999713898, 258400.953299999237061 ], [ 360525.057199999690056, 258376.685899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704052600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95192501, "LATITUDE": 18.35468858, "OBJECTID_1": 3642, "PARCEL_NO_": "102704052600", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-19 LT NORTHSIDE QTR", "Name": "XAVIER, PHILLIP", "Address": "6197 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41100, "Improved_V": 8800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.198953225, "SHAPE_Area": 2364.09529458 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356588.868100002408028, 258317.661200001835823 ], [ 356555.130699999630451, 258302.397399999201298 ], [ 356548.471600003540516, 258326.829799998551607 ], [ 356547.600500002503395, 258334.421999998390675 ], [ 356549.739000000059605, 258367.370099999010563 ], [ 356590.090599998831749, 258363.478500001132488 ], [ 356594.490699999034405, 258320.240299999713898 ], [ 356588.868100002408028, 258317.661200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91635782, "LATITUDE": 18.35467289, "OBJECTID_1": 4932, "PARCEL_NO_": "102904011300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-41 GREAT NORTHSIDE", "Name": "SHAKER SALEM, TALAL", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67800, "Improved_V": 222300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.13364167, "SHAPE_Area": 2061.8780566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360328.94709999859333, 258395.76799999922514 ], [ 360357.560000002384186, 258349.983800001442432 ], [ 360364.098600000143051, 258339.69370000064373 ], [ 360363.218099996447563, 258337.208200000226498 ], [ 360313.444600000977516, 258347.369199998676777 ], [ 360304.670999996364117, 258376.689599998295307 ], [ 360300.901199996471405, 258392.352800000458956 ], [ 360303.98200000077486, 258391.975099999457598 ], [ 360306.402699999511242, 258391.7837999984622 ], [ 360307.988399997353554, 258394.963199999183416 ], [ 360310.39469999819994, 258396.46059999987483 ], [ 360315.223600000143051, 258397.555500000715256 ], [ 360320.867799997329712, 258397.601700000464916 ], [ 360328.94709999859333, 258395.76799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003051300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91402271, "LATITUDE": 18.35474185, "OBJECTID_1": 5920, "PARCEL_NO_": "103003051300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9F-4 GT. NORTHSIDE QTR", "Name": "GRANEAU, ROSE", "Address": "PO Box 8966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21200, "Improved_V": 342700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.285988519, "SHAPE_Area": 872.821686043 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360594.389300003647804, 258378.519900001585484 ], [ 360573.630199998617172, 258354.285399999469519 ], [ 360554.923199996352196, 258373.130699999630451 ], [ 360579.695900000631809, 258399.50899999961257 ], [ 360592.760499998927116, 258380.406500000506639 ], [ 360594.389300003647804, 258378.519900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93693533, "LATITUDE": 18.35461517, "OBJECTID_1": 4463, "PARCEL_NO_": "102804014800", "Tax_Legal_": "LERKENLUND 7H GR NORTHSIDE", "Name": "QUERRARD, WILLIAM & JEANETE", "Address": "#1 EST. LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 142800, "Improved_V": 210100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.99539742, "SHAPE_Area": 3191.4699419399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358141.4087999984622, 258379.341699998825788 ], [ 358164.923100002110004, 258364.124299999326468 ], [ 358192.468999996781349, 258348.940000001341105 ], [ 358173.500500001013279, 258303.821800000965595 ], [ 358110.282700002193451, 258341.512299999594688 ], [ 358141.4087999984622, 258379.341699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91593435, "LATITUDE": 18.35465442, "OBJECTID_1": 5723, "PARCEL_NO_": "103003020300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-40 GR NORTHSIDE", "Name": "DENZIL, IVY & ISSAC, BROWEN", "Address": "PO Box 9160", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52100, "Improved_V": 208900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.65127205799999, "SHAPE_Area": 2376.3525250900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360364.098600000143051, 258339.69370000064373 ], [ 360357.560000002384186, 258349.983800001442432 ], [ 360328.94709999859333, 258395.76799999922514 ], [ 360344.297600001096725, 258392.305100001394749 ], [ 360362.894900001585484, 258386.33559999987483 ], [ 360388.784999996423721, 258376.203899998217821 ], [ 360415.520999997854233, 258361.435100000351667 ], [ 360415.571400001645088, 258355.524900000542402 ], [ 360399.543999999761581, 258343.783500000834465 ], [ 360391.493500001728535, 258342.239999998360872 ], [ 360379.391599997878075, 258342.985300000756979 ], [ 360368.920299999415874, 258341.633099999278784 ], [ 360364.098600000143051, 258339.69370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704050400", "MAP": "a9-338-t86", "PARCEL_NAM": "10-2-22", "ACRE": "0.64", "LONGITUDE": -64.95146805, "LATITUDE": 18.3545731, "OBJECTID_1": 3620, "PARCEL_NO_": "102704050400", "Tax_Legal_": "10-2-22 LILLENDAHL & MARIENHOJ LITTLE NORTHSIDE", "Name": "FRANCIS, PETER C.,JR. & JASMINE G. WADE FRANCIS(TRUSTEES)", "Address": "PO Box 432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58000, "Improved_V": 352600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.38264786799999, "SHAPE_Area": 3177.4170349000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356645.828599996864796, 258351.902399998158216 ], [ 356636.314900003373623, 258290.214200001209974 ], [ 356632.648199997842312, 258289.944099999964237 ], [ 356625.416500002145767, 258286.92960000038147 ], [ 356622.229000002145767, 258282.470499999821186 ], [ 356621.460500001907349, 258278.031300000846386 ], [ 356616.635200001299381, 258276.51410000026226 ], [ 356612.556900002062321, 258281.969200000166893 ], [ 356599.43469999730587, 258307.826299998909235 ], [ 356598.590599998831749, 258312.252300001680851 ], [ 356601.805100001394749, 258313.545200001448393 ], [ 356599.337600000202656, 258319.224500000476837 ], [ 356596.121299996972084, 258318.142799999564886 ], [ 356594.490699999034405, 258320.240299999713898 ], [ 356590.090599998831749, 258363.478500001132488 ], [ 356645.828599996864796, 258351.902399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703016100", "MAP": "C9-284-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95922667000001, "LATITUDE": 18.35464408, "OBJECTID_1": 3239, "PARCEL_NO_": "102703016100", "Tax_Legal_": "BONNE RESOLUTION 4-5 LT. NORTHSIDE", "Name": "WILKINSON, NOVELLA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81100, "Improved_V": 335700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.65258003700001, "SHAPE_Area": 2128.6949535700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355838.792499996721745, 258335.586899999529123 ], [ 355777.04450000077486, 258295.395899999886751 ], [ 355763.988899998366833, 258313.44310000166297 ], [ 355760.680900000035763, 258323.126299999654293 ], [ 355820.072899997234344, 258355.909699998795986 ], [ 355838.792499996721745, 258335.586899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91444806, "LATITUDE": 18.35464123, "OBJECTID_1": 5922, "PARCEL_NO_": "103003051500", "Tax_Legal_": "9F-2 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE", "Name": "ALLEN, INGRID", "Address": "PO Box 6853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23400, "Improved_V": 273700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.928862119, "SHAPE_Area": 1119.4536122899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360554.923199996352196, 258373.130699999630451 ], [ 360522.954800002276897, 258339.51630000025034 ], [ 360505.869400002062321, 258357.319400001317263 ], [ 360525.057199999690056, 258376.685899998992682 ], [ 360538.651299998164177, 258390.096099998801947 ], [ 360554.923199996352196, 258373.130699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012900", "MAP": "D9-7481-T004", "PARCEL_NAM": "6BA-1", "ACRE": ".505", "LONGITUDE": -64.96123938, "LATITUDE": 18.35407417, "OBJECTID_1": 3207, "PARCEL_NO_": "102703012900", "Tax_Legal_": "6BA REM DOROTHEA No.7A LITTLE NORTHSIDE QTR", "Name": "VIKTOR W. BRANDTNERIS & SARAH HEIDMANN", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85000, "Improved_V": 565000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.76630280800001, "SHAPE_Area": 1861.1752154799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355558.295000001788139, 258256.315000001341105 ], [ 355560.732100002467632, 258290.44819999858737 ], [ 355614.207000002264977, 258266.894799999892712 ], [ 355609.044900000095367, 258233.014899998903275 ], [ 355558.295000001788139, 258256.315000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903049900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93182308, "LATITUDE": 18.3547322, "OBJECTID_1": 4922, "PARCEL_NO_": "102903049900", "Tax_Legal_": "MISGUNST 5N & 5O GREAT NORTHSIDE", "Name": "ESTATE MISGUNST HOMEOWNER ASSO", "Address": "24519 Peach Tree Rd", "City": "Clarksburg", "State": "Maryland", "Zip": 20871, "Country": "United States", "Land_Value": 7200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.943129997400007, "SHAPE_Area": 186.46225428100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358693.102700002491474, 258363.169900000095367 ], [ 358698.712700001895428, 258367.226599998772144 ], [ 358703.521799996495247, 258370.643500000238419 ], [ 358705.957000002264977, 258368.7635000012815 ], [ 358708.401100002229214, 258365.828200001269579 ], [ 358693.964800000190735, 258356.633099999278784 ], [ 358683.560000002384186, 258347.470899999141693 ], [ 358681.081799998879433, 258354.416700001806021 ], [ 358693.102700002491474, 258363.169900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904012700", "MAP": "D9-4968-T90", "PARCEL_NAM": "1-22", "ACRE": ".56", "LONGITUDE": -64.91877684000001, "LATITUDE": 18.35450611, "OBJECTID_1": 4944, "PARCEL_NO_": "102904012700", "Tax_Legal_": "1-22 ST.JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "GUMBS, RENEE A. & DULCIE", "Address": "PO Box 305115", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 130500, "Improved_V": 486300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.807349475, "SHAPE_Area": 2694.5086697000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360016.3783999979496, 258360.279199998825788 ], [ 360077.207999996840954, 258370.84180000051856 ], [ 360078.390699997544289, 258369.441599998623133 ], [ 360093.813100002706051, 258357.535500001162291 ], [ 360110.288999997079372, 258349.639699999243021 ], [ 360108.606899999082088, 258330.564699999988079 ], [ 360104.320600003004074, 258318.658399999141693 ], [ 360085.570799998939037, 258318.312399998307228 ], [ 360016.3783999979496, 258360.279199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003040100", "MAP": "D9-3006-T85", "PARCEL_NAM": "12B-7", "ACRE": "0.25", "LONGITUDE": -64.90929626, "LATITUDE": 18.35466107, "OBJECTID_1": 5896, "PARCEL_NO_": "103003040100", "Tax_Legal_": "ST JOSEPH & ROSEDAHL 12B-7 GT. NORTHSIDE", "Name": "LETTSOME, BERNICE & FREDERICK", "Address": "332 Maudehelen St", "City": "Apopka", "State": "Florida", "Zip": 32703, "Country": "United States", "Land_Value": 26100, "Improved_V": 175300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.243816071, "SHAPE_Area": 638.61788620100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361094.466700002551079, 258363.403299998492002 ], [ 361075.185300000011921, 258355.012899998575449 ], [ 361055.619800001382828, 258379.972899999469519 ], [ 361074.094899997115135, 258388.356699999421835 ], [ 361094.466700002551079, 258363.403299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704050500", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-23", "ACRE": "0.50", "LONGITUDE": -64.95108564, "LATITUDE": 18.3545023, "OBJECTID_1": 3621, "PARCEL_NO_": "102704050500", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 10-2-23 LITTLE NORTHSIDE QTR.", "Name": "MC LAUGHLIN, FRANK", "Address": "PO Box 1623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.84625253799999, "SHAPE_Area": 2088.4941030199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356673.002499997615814, 258344.265399999916553 ], [ 356680.198600001633167, 258289.328899998217821 ], [ 356651.988899998366833, 258291.368900001049042 ], [ 356636.314900003373623, 258290.214200001209974 ], [ 356645.828599996864796, 258351.902399998158216 ], [ 356650.671899996697903, 258351.308699999004602 ], [ 356665.19990000128746, 258349.738899998366833 ], [ 356673.002499997615814, 258344.265399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803016900", "MAP": "D9-1713-T81", "PARCEL_NAM": "11D-17", "ACRE": ".069", "LONGITUDE": -64.94455291, "LATITUDE": 18.35467494, "OBJECTID_1": 4254, "PARCEL_NO_": "102803016900", "Tax_Legal_": "SOLBERG 11D-17 LT. NORTHSIDE", "Name": "BENEDEK BROADCASTING INC", "Address": "4370 Peachtree Rd NE", "City": "Atlanta", "State": "Georgia", "Zip": 30319, "Country": "United States", "Land_Value": 102900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.565660885, "SHAPE_Area": 503.38805237899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357361.882600001990795, 258352.063400000333786 ], [ 357355.646099999547005, 258326.892200000584126 ], [ 357334.601099997758865, 258336.219200000166893 ], [ 357340.133799999952316, 258349.352299999445677 ], [ 357341.719400003552437, 258352.531700000166893 ], [ 357337.675300002098083, 258353.976199999451637 ], [ 357335.23480000346899, 258356.489399999380112 ], [ 357361.882600001990795, 258352.063400000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012200", "MAP": "D9-771-T68", "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.93191351, "LATITUDE": 18.35439048, "OBJECTID_1": 4437, "PARCEL_NO_": "102804012200", "Tax_Legal_": "PAR 5 REM, 5L-1, EASEMENT \"A\" & 5M GREEN BELT MISGUNST 6 GREAT NORTHSIDE QTR", "Name": "CONN J & DEBORAH B. DAVIS REVOC TR", "Address": "PO Box 7997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.41070717400001, "SHAPE_Area": 2056.4480307099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358714.930699996650219, 258356.593600001186132 ], [ 358676.09570000320673, 258277.115600001066923 ], [ 358663.905699998140335, 258288.20380000025034 ], [ 358654.984099999070168, 258294.252500001341105 ], [ 358683.560000002384186, 258347.470899999141693 ], [ 358693.964800000190735, 258356.633099999278784 ], [ 358708.401100002229214, 258365.828200001269579 ], [ 358714.930699996650219, 258356.593600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91102913, "LATITUDE": 18.35353107, "OBJECTID_1": 5620, "PARCEL_NO_": "103003012400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12F GREAT NORTHSIDE QTR", "Name": "SAMAD, AYMAN A. & MOMAR", "Address": "PO Box 304157", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 176200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 680.24794213899997, "SHAPE_Area": 11478.1991526 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360786.799099996685982, 258131.215399999171495 ], [ 360970.111100003123283, 258383.917100001126528 ], [ 360992.837099999189377, 258366.582299999892712 ], [ 360993.670400001108646, 258363.422699999064207 ], [ 360989.640699997544289, 258363.178700000047684 ], [ 360983.240500003099442, 258357.215599998831749 ], [ 360980.072800002992153, 258350.43470000103116 ], [ 360977.803099997341633, 258332.895399998873472 ], [ 360838.417499996721745, 258129.949099998921156 ], [ 360823.113799996674061, 258127.9239999987185 ], [ 360806.985699996352196, 258128.003100000321865 ], [ 360796.494699999690056, 258128.972699999809265 ], [ 360786.799099996685982, 258131.215399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904012000", "MAP": "A9-25-T64", "PARCEL_NAM": "1-33", "ACRE": ".51", "LONGITUDE": -64.91675416, "LATITUDE": 18.35453317, "OBJECTID_1": 4937, "PARCEL_NO_": "102904012000", "Tax_Legal_": "1-33 ST.JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QUARTER", "Name": "BROWNE, DEDRICK SHIRWIN & LORRAINE MADURO", "Address": "PO Box 11913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.74558101599999, "SHAPE_Area": 2271.1485045499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360307.122000001370907, 258322.312699999660254 ], [ 360302.427500002086163, 258318.898600000888109 ], [ 360274.319600000977516, 258334.601700000464916 ], [ 360260.280699998140335, 258342.44480000063777 ], [ 360253.869599997997284, 258368.404800001531839 ], [ 360265.458800002932549, 258370.550500001758337 ], [ 360304.670999996364117, 258376.689599998295307 ], [ 360313.444600000977516, 258347.369199998676777 ], [ 360307.122000001370907, 258322.312699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703017100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96255407, "LATITUDE": 18.35461364, "OBJECTID_1": 3248, "PARCEL_NO_": "102703017100", "Tax_Legal_": "4-15-2 DOROTHEA LITTLE NORTHSIDE QUARTER", "Name": "GEORGE J CASAZZA AND BARBARA C YOUNG REV FAM TRUST", "Address": "PO BOX 302863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86600, "Improved_V": 213800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.04054033700001, "SHAPE_Area": 1547.7791012800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355459.218299999833107, 258296.631700001657009 ], [ 355404.819799996912479, 258317.473999999463558 ], [ 355450.914899997413158, 258337.267400000244379 ], [ 355462.966399997472763, 258342.432300001382828 ], [ 355471.018799997866154, 258343.764800000935793 ], [ 355474.320799998939037, 258343.252300001680851 ], [ 355459.218299999833107, 258296.631700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017700", "MAP": "D9-1713-T81", "PARCEL_NAM": "11D-16", "ACRE": null, "LONGITUDE": -64.94429822, "LATITUDE": 18.3546029, "OBJECTID_1": 4262, "PARCEL_NO_": "102803017700", "Tax_Legal_": "SOLBERG 1D-16&LERKENLUND 9Aa-3 No.1LT.&No.8GT.NORTHSIDE QTR.", "Name": "THE HEBREW CONGREGATION ST. T, I", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 76800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.84482084699999, "SHAPE_Area": 1076.3907108799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357366.200099997222424, 258318.53489999845624 ], [ 357363.773999996483326, 258319.359400000423193 ], [ 357362.946099996566772, 258321.88569999858737 ], [ 357358.077600002288818, 258325.434500001370907 ], [ 357355.646099999547005, 258326.892200000584126 ], [ 357361.882600001990795, 258352.063400000333786 ], [ 357403.872000001370907, 258345.229899998754263 ], [ 357371.914399996399879, 258310.348999999463558 ], [ 357366.200099997222424, 258318.53489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003011700", "MAP": null, "PARCEL_NAM": "9P REM", "ACRE": null, "LONGITUDE": -64.91275565, "LATITUDE": 18.35445741, "OBJECTID_1": 5614, "PARCEL_NO_": "103003011700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9P Remainder & 9P-1 Remainder No.4 GREAT NORTHSIDE QTR.", "Name": "SINGH, INDER J. & KAUER, GURJEET & CHANDIRAMANI, RAJU S.", "Address": "PO Box 9859", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 157400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.08480869900001, "SHAPE_Area": 3186.9432594099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360725.519799999892712, 258319.500199999660254 ], [ 360707.807899996638298, 258325.575100000947714 ], [ 360682.780900001525879, 258320.137200001627207 ], [ 360657.727600000798702, 258326.687100000679493 ], [ 360663.323299996554852, 258332.432500001043081 ], [ 360664.921499997377396, 258334.134300000965595 ], [ 360706.491899996995926, 258376.482099998742342 ], [ 360756.589400000870228, 258364.437600001692772 ], [ 360747.827799998223782, 258351.700300000607967 ], [ 360725.519799999892712, 258319.500199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703016000", "MAP": "C9-284-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95905477, "LATITUDE": 18.35445597, "OBJECTID_1": 3238, "PARCEL_NO_": "102703016000", "Tax_Legal_": "BONNE RESOLUTION 4-7 LITTLE NORTHSIDE QTR", "Name": "PEETS, STAFFORD", "Address": "Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56100, "Improved_V": 276400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.17947185899999, "SHAPE_Area": 1941.89967348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355863.845799997448921, 258329.036899998784065 ], [ 355794.173100002110004, 258272.526900000870228 ], [ 355777.04450000077486, 258295.395899999886751 ], [ 355838.792499996721745, 258335.586899999529123 ], [ 355842.86370000243187, 258330.976100001484156 ], [ 355863.845799997448921, 258329.036899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704050900", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-25", "ACRE": "0.54", "LONGITUDE": -64.95037378000001, "LATITUDE": 18.35443852, "OBJECTID_1": 3625, "PARCEL_NO_": "102704050900", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-25 LT. NORTHSIDE", "Name": "RYAN, VERONICA M. & RICHARD", "Address": "2600 Nye Norsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43100, "Improved_V": 173400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.22089497499999, "SHAPE_Area": 1959.7083546199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356743.174099996685982, 258283.671500001102686 ], [ 356735.928099997341633, 258282.345600001513958 ], [ 356724.165399998426437, 258284.299300000071526 ], [ 356708.042700000107288, 258334.49549999833107 ], [ 356705.83110000193119, 258341.381099998950958 ], [ 356711.593599997460842, 258343.203400000929832 ], [ 356716.777199998497963, 258341.889299999922514 ], [ 356726.850699998438358, 258339.335400000214577 ], [ 356728.384700000286102, 258336.880899999290705 ], [ 356734.371799997985363, 258327.301699999719858 ], [ 356735.960100002586842, 258326.792100001126528 ], [ 356763.638099998235703, 258317.911699999123812 ], [ 356763.866700001060963, 258315.715999998152256 ], [ 356760.717000000178814, 258306.824299998581409 ], [ 356750.387800000607967, 258288.796799998730421 ], [ 356743.174099996685982, 258283.671500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003011000", "MAP": "G9-1349-T69", "PARCEL_NAM": "12B-4", "ACRE": ".25", "LONGITUDE": -64.90965469, "LATITUDE": 18.35451676, "OBJECTID_1": 5607, "PARCEL_NO_": "103003011000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12B-4 GREAT NORTHSIDE QUARTER", "Name": "KRIGGER, ASHLEY", "Address": "PO Box 843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.265756082, "SHAPE_Area": 1342.6793054100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361063.857400000095367, 258359.5641999989748 ], [ 361037.490000002086163, 258331.061900001019239 ], [ 361028.559500001370907, 258338.166000001132488 ], [ 361005.018100000917912, 258356.549499999731779 ], [ 361049.99719999730587, 258377.393699999898672 ], [ 361063.857400000095367, 258359.5641999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003051600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9142837, "LATITUDE": 18.35448676, "OBJECTID_1": 5923, "PARCEL_NO_": "103003051600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9F-1 GT. NORTHSIDE", "Name": "RICHARDSON, CLAUDE & SHARON", "Address": "Estate Thomas 14 Ps", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33800, "Improved_V": 229700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.423539119, "SHAPE_Area": 1143.7935673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360538.41499999910593, 258323.177499998360872 ], [ 360522.954800002276897, 258339.51630000025034 ], [ 360554.923199996352196, 258373.130699999630451 ], [ 360573.630199998617172, 258354.285399999469519 ], [ 360538.41499999910593, 258323.177499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022200", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96432695, "LATITUDE": 18.35452185, "OBJECTID_1": 3274, "PARCEL_NO_": "102703022200", "Tax_Legal_": "LINDBERG BAY 46-12 S S QTR", "Name": "LIMA, AGUSTIN J.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39100, "Improved_V": 1120800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.84944034399999, "SHAPE_Area": 1088.8022998599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355277.503200002014637, 258318.496199999004602 ], [ 355278.46339999884367, 258291.390799999237061 ], [ 355241.609899997711182, 258296.079900000244379 ], [ 355240.528499998152256, 258328.368299998342991 ], [ 355277.503200002014637, 258318.496199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040400", "MAP": "D9-8614-T011", "PARCEL_NAM": "5C-A", "ACRE": ".377", "LONGITUDE": -64.93181934, "LATITUDE": 18.35405974, "OBJECTID_1": 4910, "PARCEL_NO_": "102903040400", "Tax_Legal_": "5C MISGUNST No.6 GREAT NORTHSIDE QTR", "Name": "MATTHEW L", "Address": "PO Box 8300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011300, "Country": "United States", "Land_Value": 228800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.05030773300001, "SHAPE_Area": 1280.28710664 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358694.343199998140335, 258314.460200000554323 ], [ 358699.818899996578693, 258317.046399999409914 ], [ 358704.47410000115633, 258321.302299998700619 ], [ 358709.176600001752377, 258319.787000000476837 ], [ 358708.978799998760223, 258316.677499998360872 ], [ 358710.346000000834465, 258313.358899999409914 ], [ 358711.037799999117851, 258310.700699999928474 ], [ 358710.629399999976158, 258306.035500001162291 ], [ 358705.397100001573563, 258290.453299999237061 ], [ 358700.812899999320507, 258277.540300000458956 ], [ 358698.410899996757507, 258270.86089999973774 ], [ 358697.332500003278255, 258266.19029999896884 ], [ 358698.068000003695488, 258258.204700000584126 ], [ 358699.923799999058247, 258249.784200001507998 ], [ 358704.697300001978874, 258239.611800000071526 ], [ 358700.77759999781847, 258236.259899999946356 ], [ 358696.539399996399879, 258243.719099998474121 ], [ 358689.144199997186661, 258259.912799999117851 ], [ 358683.431599996984005, 258267.887600000947714 ], [ 358676.09570000320673, 258277.115600001066923 ], [ 358694.343199998140335, 258314.460200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703015900", "MAP": "C9-284-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95973748, "LATITUDE": 18.35442382, "OBJECTID_1": 3237, "PARCEL_NO_": "102703015900", "Tax_Legal_": "4-6 BONNE RESOLUTION LITTLE NORTHSIDE", "Name": "FERLAND, DENISE & ANDRE, NICOLE", "Address": "4-6 ESTATE BONNE RESOLUTION", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 140700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.45527445900001, "SHAPE_Area": 1948.27883041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355733.627700001001358, 258280.475099999457598 ], [ 355719.922200001776218, 258280.151799999177456 ], [ 355727.552000001072884, 258331.087799999862909 ], [ 355754.189099997282028, 258327.928300000727177 ], [ 355755.058300003409386, 258320.547200001776218 ], [ 355759.185199998319149, 258309.39299999922514 ], [ 355778.774099998176098, 258281.688999999314547 ], [ 355733.627700001001358, 258280.475099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803015100", "MAP": "G9-1153-T68", "PARCEL_NAM": "11D-3", "ACRE": ".07", "LONGITUDE": -64.94565677, "LATITUDE": 18.35453986, "OBJECTID_1": 4237, "PARCEL_NO_": "102803015100", "Tax_Legal_": "UNIT B, EAGLE NEST CONDO 11D-3 SOLBERG NO.1 LITTLE NORTHSIDE QTR.", "Name": "JOHNSTON, JOEL P. & PATTI SPOTTS", "Address": "259 Waties Dr", "City": "Murrells Inlet", "State": "South Carolina", "Zip": 29576, "Country": "United States", "Land_Value": 0, "Improved_V": 227300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.890386777499998, "SHAPE_Area": 343.74749644000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357248.061899997293949, 258342.652699999511242 ], [ 357232.428099997341633, 258312.778799999505281 ], [ 357216.985500000417233, 258322.802000001072884 ], [ 357214.82940000295639, 258323.730099998414516 ], [ 357216.969400003552437, 258324.701799999922514 ], [ 357229.810999996960163, 258331.772900000214577 ], [ 357245.849200002849102, 258342.247800000011921 ], [ 357248.061899997293949, 258342.652699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803015800", "MAP": "A9-209-T73", "PARCEL_NAM": "11D", "ACRE": null, "LONGITUDE": -64.94486883, "LATITUDE": 18.35446356, "OBJECTID_1": 4245, "PARCEL_NO_": "102803015800", "Tax_Legal_": "SOLBERG 11D-8 LT NORTHSIDE", "Name": "DHARMA FOUNDATION III INC.", "Address": "255 NE 6th Ave", "City": "Boynton Beach", "State": "Florida", "Zip": 33435, "Country": "United States", "Land_Value": 105100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.16071834, "SHAPE_Area": 2677.6191262000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357271.672700002789497, 258339.925999999046326 ], [ 357274.880000002682209, 258342.063200000673532 ], [ 357289.386399999260902, 258343.026299998164177 ], [ 357316.041500002145767, 258337.756000000983477 ], [ 357323.325300000607967, 258334.649300001561642 ], [ 357351.655900001525879, 258322.004399999976158 ], [ 357355.703699998557568, 258320.137699998915195 ], [ 357358.142399996519089, 258317.83559999987483 ], [ 357359.796400003135204, 258312.993999999016523 ], [ 357359.848499998450279, 258306.872699998319149 ], [ 357358.259300000965595, 258304.115499999374151 ], [ 357354.252899996936321, 258301.127399999648333 ], [ 357347.82039999961853, 258298.963799998164177 ], [ 357326.075099997222424, 258295.83049999922514 ], [ 357315.58219999819994, 258297.011199999600649 ], [ 357309.117399998009205, 258298.647100001573563 ], [ 357296.160599999129772, 258305.084899999201298 ], [ 357288.853399999439716, 258310.935699999332428 ], [ 357274.996899999678135, 258328.343100000172853 ], [ 357271.715899996459484, 258334.860100001096725 ], [ 357271.672700002789497, 258339.925999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90904257, "LATITUDE": 18.35449633, "OBJECTID_1": 5897, "PARCEL_NO_": "103003040200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12B-8 GT. NORTHSIDE QTR.", "Name": "KRIGGER, PAUL", "Address": "PO Box 11082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.16555552400001, "SHAPE_Area": 939.12021517799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361075.185300000011921, 258355.012899998575449 ], [ 361094.466700002551079, 258363.403299998492002 ], [ 361102.448899999260902, 258372.9679000005126 ], [ 361125.97580000013113, 258356.272900000214577 ], [ 361103.589699998497963, 258333.713799998164177 ], [ 361094.646499998867512, 258342.295400001108646 ], [ 361084.934799998998642, 258346.437800001353025 ], [ 361078.444700002670288, 258351.028799999505281 ], [ 361075.185300000011921, 258355.012899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93648325, "LATITUDE": 18.35437287, "OBJECTID_1": 4464, "PARCEL_NO_": "102804014900", "Tax_Legal_": "No.4A,REM.4B,REM.4C,4C-1&4C ESTATE MISGUNST GT.NORTHSIDE QTR", "Name": "SEACLUSION, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 337500, "Improved_V": 1977800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.433797645, "SHAPE_Area": 2181.0391661799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358229.721199996769428, 258330.246399998664856 ], [ 358216.386100001633167, 258286.440900001674891 ], [ 358171.925599999725819, 258299.375900000333786 ], [ 358173.500500001013279, 258303.821800000965595 ], [ 358192.468999996781349, 258348.940000001341105 ], [ 358196.518500000238419, 258346.862199999392033 ], [ 358229.721199996769428, 258330.246399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91502719, "LATITUDE": 18.35449035, "OBJECTID_1": 5724, "PARCEL_NO_": "103003020400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-34 GR NORTHSIDE QTR", "Name": "BONELLI, LAVERNE", "Address": "1601 Ladue Ct", "City": "Woodbridge", "State": "Virginia", "Zip": 22191, "Country": "United States", "Land_Value": 52100, "Improved_V": 238500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.56457698400001, "SHAPE_Area": 1938.32469808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360505.968299999833107, 258345.71000000089407 ], [ 360467.475699998438358, 258320.697000000625849 ], [ 360462.582000002264977, 258327.200899999588728 ], [ 360454.452399998903275, 258334.94480000063777 ], [ 360436.611000001430511, 258346.8310999982059 ], [ 360433.355200000107288, 258350.393100000917912 ], [ 360433.311999998986721, 258355.458999998867512 ], [ 360434.912100002169609, 258356.949700001627207 ], [ 360449.378899998962879, 258362.556499999016523 ], [ 360461.450300000607967, 258365.399599999189377 ], [ 360470.301700003445148, 258367.582899998873472 ], [ 360477.562100000679493, 258367.220199998468161 ], [ 360483.218900002539158, 258365.788800001144409 ], [ 360489.69820000231266, 258362.464400000870228 ], [ 360505.968299999833107, 258345.71000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703015800", "MAP": "C9-284-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95893247, "LATITUDE": 18.35418808, "OBJECTID_1": 3236, "PARCEL_NO_": "102703015800", "Tax_Legal_": "BONNE RESOLUTION 4-9 LITTLE NORTHSIDE QTR", "Name": "MATTHEW, NIRON", "Address": "PO Box 306984", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97500, "Improved_V": 114700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.00463407299998, "SHAPE_Area": 2766.0874382299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355834.686499997973442, 258249.638199999928474 ], [ 355823.437100000679493, 258223.110399998724461 ], [ 355809.726800002157688, 258245.212000001221895 ], [ 355804.773900002241135, 258258.681499999016523 ], [ 355794.173100002110004, 258272.526900000870228 ], [ 355863.845799997448921, 258329.036899998784065 ], [ 355867.074600003659725, 258328.641199998557568 ], [ 355847.351999998092651, 258277.395100001245737 ], [ 355844.178900003433228, 258271.247400000691414 ], [ 355834.686499997973442, 258249.638199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904012800", "MAP": "F9-1964-T67", "PARCEL_NAM": "1-23A", "ACRE": null, "LONGITUDE": -64.91895857, "LATITUDE": 18.35425654, "OBJECTID_1": 4945, "PARCEL_NO_": "102904012800", "Tax_Legal_": "ST JOSEPH&ROSENDAHL 1-23A No.4 GREAT NORTHSIDE QTR", "Name": "ROMNEY, DERRICK & CLAIRE", "Address": "PO Box 304224", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72200, "Improved_V": 477000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.94988734399999, "SHAPE_Area": 2822.7201607400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360086.325400002300739, 258289.924300000071526 ], [ 360054.778499998152256, 258301.487300001084805 ], [ 360029.843999996781349, 258294.105999998748302 ], [ 360016.3783999979496, 258360.279199998825788 ], [ 360106.350199997425079, 258305.709100000560284 ], [ 360095.925700001418591, 258298.86879999935627 ], [ 360086.325400002300739, 258289.924300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9167333, "LATITUDE": 18.35408192, "OBJECTID_1": 4950, "PARCEL_NO_": "102904013300", "Tax_Legal_": "ST JOSEPH&ROSENDAL 1-32 GR NORTHSIDE", "Name": "LYDELL FAMILY REVOCABLE LIVING TRUST", "Address": "5050 Sunrise Blvd", "City": "Fair Oaks", "State": "California", "Zip": 95628, "Country": "United States", "Land_Value": 54900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.12603194499999, "SHAPE_Area": 2367.40692924 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360290.498700000345707, 258270.908100001513958 ], [ 360278.761399999260902, 258267.611299999058247 ], [ 360260.280699998140335, 258342.44480000063777 ], [ 360274.319600000977516, 258334.601700000464916 ], [ 360302.427500002086163, 258318.898600000888109 ], [ 360318.337200000882149, 258293.223000001162291 ], [ 360319.459399998188019, 258278.955600000917912 ], [ 360290.498700000345707, 258270.908100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019400", "MAP": "F9-3036-T72", "PARCEL_NAM": "10L", "ACRE": ".337", "LONGITUDE": -64.91168175, "LATITUDE": 18.35432977, "OBJECTID_1": 5715, "PARCEL_NO_": "103003019400", "Tax_Legal_": "10L ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "TRUST AGREEMENT OF LEONARD L GUMBS SR & H BROOKS", "Address": "PO Box 6756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 111100, "Improved_V": 272200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.73936777899999, "SHAPE_Area": 1979.08426583 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360832.922200001776218, 258301.734299998730421 ], [ 360791.532399997115135, 258332.848499998450279 ], [ 360813.846600003540516, 258363.85080000013113 ], [ 360851.163500003516674, 258337.558400001376867 ], [ 360847.237999998033047, 258325.071800000965595 ], [ 360842.49549999833107, 258313.844999998807907 ], [ 360838.5304000005126, 258306.002099998295307 ], [ 360832.922200001776218, 258301.734299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013400", "MAP": "D9-6674-T99", "PARCEL_NAM": "3C", "ACRE": null, "LONGITUDE": -64.95823462, "LATITUDE": 18.35431657, "OBJECTID_1": 3212, "PARCEL_NO_": "102703013400", "Tax_Legal_": "BONNE RESOLUTION 3C LITTLE NORTHSIDE QTR", "Name": "JOHN F BERTORELLI TRUST", "Address": "9718 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66500, "Improved_V": 251200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.252629138, "SHAPE_Area": 1472.1264366800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355927.953100003302097, 258299.191799998283386 ], [ 355928.85249999910593, 258270.673900000751019 ], [ 355919.941699996590614, 258275.4560999982059 ], [ 355911.063199996948242, 258276.438900001347065 ], [ 355880.428800001740456, 258275.554900001734495 ], [ 355881.389200001955032, 258313.776099998503923 ], [ 355927.953100003302097, 258299.191799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91366479, "LATITUDE": 18.35434892, "OBJECTID_1": 5913, "PARCEL_NO_": "103003051100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9G-C GT.NORTHSIDE QTR.", "Name": "CHARLES, MAGALITE & LISSONE", "Address": "6205 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28600, "Improved_V": 158600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.554773617, "SHAPE_Area": 1448.2962264299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360642.260300002992153, 258343.870200000703335 ], [ 360605.504299998283386, 258304.306000001728535 ], [ 360591.685500003397465, 258317.280699998140335 ], [ 360585.994599997997284, 258322.722500000149012 ], [ 360607.567199997603893, 258346.11939999833703 ], [ 360613.078400000929832, 258361.785399999469519 ], [ 360631.713500000536442, 258351.383299998939037 ], [ 360642.260300002992153, 258343.870200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703023400", "MAP": "A9-845-T019", "PARCEL_NAM": "109-REM", "ACRE": "27.90", "LONGITUDE": -64.96211628, "LATITUDE": 18.35300201, "OBJECTID_1": 3285, "PARCEL_NO_": "102703023400", "Tax_Legal_": "109 REM CONTANT NO.7B SOUTHSIDE QTR", "Name": "SHARP, ANDERSON, UPSON & LLEWELLYN, TRUSTEES", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 511500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1661.95871732, "SHAPE_Area": 106882.44299 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355279.8783999979496, 258251.446199998259544 ], [ 355318.321000002324581, 258242.1266999989748 ], [ 355359.97919999808073, 258232.027800001204014 ], [ 355338.42509999871254, 258292.886500000953674 ], [ 355342.447499997913837, 258291.205600000917912 ], [ 355350.517800003290176, 258290.427299998700619 ], [ 355360.153999999165535, 258295.150199998170137 ], [ 355366.564999997615814, 258299.846799999475479 ], [ 355393.394799999892712, 258312.322399999946356 ], [ 355400.298799999058247, 258315.532699998468161 ], [ 355404.819799996912479, 258317.473999999463558 ], [ 355459.218299999833107, 258296.631700001657009 ], [ 355504.876199997961521, 258279.138199999928474 ], [ 355527.281900003552437, 258270.553599998354912 ], [ 355609.044900000095367, 258233.014899998903275 ], [ 355701.331399999558926, 258190.707100000232458 ], [ 355751.603299997746944, 258158.187899999320507 ], [ 355757.277999997138977, 258154.645799998193979 ], [ 355766.197800002992153, 258148.808200001716614 ], [ 355781.586099997162819, 258140.912599999457598 ], [ 355785.644599996507168, 258137.779399998486042 ], [ 355837.494999997317791, 258109.283900000154972 ], [ 355800.649099998176098, 258080.273699998855591 ], [ 355787.031700000166893, 258069.607500001788139 ], [ 355749.383199997246265, 258040.168499998748302 ], [ 355724.254399999976158, 258055.583700001239777 ], [ 355722.553700000047684, 258065.913400001823902 ], [ 355718.480800002813339, 258070.735199999064207 ], [ 355708.75110000371933, 258076.988400001078844 ], [ 355688.55009999871254, 258081.889299999922514 ], [ 355651.431000001728535, 258084.962999999523163 ], [ 355634.460699997842312, 258089.257100000977516 ], [ 355615.048000000417233, 258096.275400001555681 ], [ 355581.720600001513958, 258032.885600000619888 ], [ 355511.458099998533726, 258045.609499998390675 ], [ 355461.341899998486042, 257965.19480000063777 ], [ 355431.152300000190735, 258006.744300000369549 ], [ 355423.044200003147125, 258011.955200001597404 ], [ 355414.959499999880791, 258014.422200001776218 ], [ 355406.894599996507168, 258014.567299999296665 ], [ 355399.650399997830391, 258013.030299998819828 ], [ 355370.725599996745586, 258000.761300001293421 ], [ 355360.26690000295639, 257997.931400001049042 ], [ 355301.44030000269413, 257993.4391999989748 ], [ 355292.166000001132488, 257992.770799998193979 ], [ 355289.976700000464916, 258023.587900001555681 ], [ 355290.688500002026558, 258025.0152000002563 ], [ 355289.225400000810623, 258032.687300000339746 ], [ 355289.202299997210503, 258033.88120000064373 ], [ 355288.08389999717474, 258091.593299999833107 ], [ 355289.297799997031689, 258093.609299998730421 ], [ 355288.460900001227856, 258097.190999999642372 ], [ 355287.634800001978874, 258099.506299998611212 ], [ 355285.201499998569489, 258101.17509999871254 ], [ 355283.65820000320673, 258144.740899998694658 ], [ 355282.083099998533726, 258189.206199999898672 ], [ 355280.261900000274181, 258240.619899999350309 ], [ 355279.8783999979496, 258251.446199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003013000", "MAP": "G9-1349-T69", "PARCEL_NAM": "12B-3", "ACRE": ".25", "LONGITUDE": -64.909418, "LATITUDE": 18.35433013, "OBJECTID_1": 5628, "PARCEL_NO_": "103003013000", "Tax_Legal_": "ST JOSEPH & ROSENDAL 12B-3 GR NORTHSIDE", "Name": "LIONEL O PRATT TRUST", "Address": "PO Box 8913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81700, "Improved_V": 260200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.18338847300001, "SHAPE_Area": 1142.34717028 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361089.031099997460842, 258338.872000001370907 ], [ 361061.8412000015378, 258312.262699998915195 ], [ 361059.406099997460842, 258314.142700001597404 ], [ 361037.490000002086163, 258331.061900001019239 ], [ 361063.857400000095367, 258359.5641999989748 ], [ 361072.015799999237061, 258348.442999999970198 ], [ 361075.260799996554852, 258346.147599998861551 ], [ 361084.1824000030756, 258340.098900001496077 ], [ 361089.031099997460842, 258338.872000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90994142, "LATITUDE": 18.35432843, "OBJECTID_1": 5624, "PARCEL_NO_": "103003012800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-18 GR NORTHSIDE QTR", "Name": "EDWARDS, DARYL F. & OTHERS", "Address": "PO Box 12102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25000, "Improved_V": 305200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.403865326, "SHAPE_Area": 961.84312651799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361005.018100000917912, 258356.549499999731779 ], [ 361028.559500001370907, 258338.166000001132488 ], [ 361011.822899997234344, 258315.019799999892712 ], [ 361006.952600002288818, 258318.779599998146296 ], [ 361005.354400001466274, 258317.077799998223782 ], [ 361002.939099997282028, 258316.635800000280142 ], [ 360998.898500002920628, 258317.65819999948144 ], [ 360985.903999999165535, 258328.5287000015378 ], [ 361005.018100000917912, 258356.549499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9162434, "LATITUDE": 18.35426794, "OBJECTID_1": 4951, "PARCEL_NO_": "102904013400", "Tax_Legal_": "2-39 ST.JOSEPH & ROSENDAHL NO 4 GREAT NORTHSIDE QTR", "Name": "BAXLEY HULL, XAVERIE & DANIEL L.", "Address": "6600 Estate Smith Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 8020000, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.063068891, "SHAPE_Area": 2335.1878401099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360389.35869999974966, 258308.869699999690056 ], [ 360322.23309999704361, 258299.631400000303984 ], [ 360318.415100000798702, 258306.882199998944998 ], [ 360309.412600003182888, 258323.97859999909997 ], [ 360307.122000001370907, 258322.312699999660254 ], [ 360313.444600000977516, 258347.369199998676777 ], [ 360363.218099996447563, 258337.208200000226498 ], [ 360362.523800000548363, 258335.247900001704693 ], [ 360366.620099999010563, 258327.682100001722574 ], [ 360377.19200000166893, 258317.213899999856949 ], [ 360389.35869999974966, 258308.869699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91549368, "LATITUDE": 18.35428402, "OBJECTID_1": 5725, "PARCEL_NO_": "103003020500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-31 GR NORTHSIDE", "Name": "ESTRIDGE, DENNIS & RACHAEL", "Address": "PO Box 1671", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62800, "Improved_V": 282400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.309757609, "SHAPE_Area": 2472.6031284300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360464.29900000244379, 258314.971500001847744 ], [ 360436.225500002503395, 258297.432100001722574 ], [ 360431.339100003242493, 258303.091600000858307 ], [ 360424.042700000107288, 258307.675999999046326 ], [ 360419.190399996936321, 258309.324999999254942 ], [ 360415.146300002932549, 258310.769499998539686 ], [ 360399.007399998605251, 258312.115100000053644 ], [ 360386.871399998664856, 258316.870900001376867 ], [ 360373.8733000010252, 258328.163600001484156 ], [ 360370.608499996364117, 258332.780900001525879 ], [ 360369.778800003230572, 258335.518399998545647 ], [ 360378.633799999952316, 258337.279599998146296 ], [ 360391.549199998378754, 258335.69649999961257 ], [ 360399.601599998772144, 258337.028999999165535 ], [ 360419.649700000882149, 258350.06980000063777 ], [ 360425.299300000071526, 258349.482799999415874 ], [ 360426.913699999451637, 258349.28489999845624 ], [ 360432.619000002741814, 258342.154399998486042 ], [ 360450.460400000214577, 258330.268100000917912 ], [ 360461.030599996447563, 258320.010999999940395 ], [ 360464.29900000244379, 258314.971500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704050200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95183027, "LATITUDE": 18.35426573, "OBJECTID_1": 3618, "PARCEL_NO_": "102704050200", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-20 LT. NORTHSIDE", "Name": "BROWN, CLAUDETTE J", "Address": "394-134 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.47512839800001, "SHAPE_Area": 1545.14218704 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356606.095600001513958, 258283.182900000363588 ], [ 356572.401299998164177, 258262.853199999779463 ], [ 356560.079999998211861, 258289.350099999457598 ], [ 356555.130699999630451, 258302.397399999201298 ], [ 356588.868100002408028, 258317.661200001835823 ], [ 356592.163500003516674, 258309.45549999922514 ], [ 356593.794100001454353, 258307.357900001108646 ], [ 356593.810300000011921, 258305.458200000226498 ], [ 356596.279600001871586, 258299.567800000309944 ], [ 356599.544399999082088, 258294.950500000268221 ], [ 356601.1858000010252, 258291.586399998515844 ], [ 356606.095600001513958, 258283.182900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003012000", "MAP": "C9-51-T63", "PARCEL_NAM": "9Q", "ACRE": "1.98", "LONGITUDE": -64.91271336, "LATITUDE": 18.35372073, "OBJECTID_1": 5617, "PARCEL_NO_": "103003012000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9Q GREAT NORTHSIDE", "Name": "CHRISTIAN FELLOWSHIP MINISTRIE", "Address": "PO Box 308802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 170000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 438.10596751700001, "SHAPE_Area": 7774.2995442000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360747.827799998223782, 258351.700300000607967 ], [ 360780.376999996602535, 258317.136300001293421 ], [ 360747.701200000941753, 258271.905900001525879 ], [ 360702.273699998855591, 258209.050400000065565 ], [ 360679.963100001215935, 258177.625999998301268 ], [ 360648.25620000064373, 258207.975000001490116 ], [ 360747.827799998223782, 258351.700300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93606779, "LATITUDE": 18.35422786, "OBJECTID_1": 4487, "PARCEL_NO_": "102804017500", "Tax_Legal_": "4B-1 ESTATE MISGUNST No.6 GREAT NORTHSIDE QUARTER", "Name": "WINGATE ESTATES II, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 108100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.94397715700001, "SHAPE_Area": 2106.4860626 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358277.471699997782707, 258309.739000000059605 ], [ 358258.465400002896786, 258269.05350000038743 ], [ 358251.154700003564358, 258275.326400000602007 ], [ 358238.203299999237061, 258281.131099998950958 ], [ 358216.386100001633167, 258286.440900001674891 ], [ 358229.721199996769428, 258330.246399998664856 ], [ 358277.471699997782707, 258309.739000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804025300", "MAP": "D9-9004-T015", "PARCEL_NAM": "10-J-1", "ACRE": "1.00", "LONGITUDE": -64.9409602, "LATITUDE": 18.35415838, "OBJECTID_1": 4557, "PARCEL_NO_": "102804025300", "Tax_Legal_": "LERKENLUND 10-J-1 GREAT NORTHSIDE QTR", "Name": "PIERCE, WILLIAM A. ROSWITHA M.", "Address": "10504 Angel Dreams Ave", "City": "Las Vegas", "State": "Nevada", "Zip": 89144, "Country": "United States", "Land_Value": 70400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.83132985700001, "SHAPE_Area": 3912.5741201800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357744.402000002563, 258316.775100000202656 ], [ 357754.894900001585484, 258315.594399999827147 ], [ 357757.056599996984005, 258315.64979999884963 ], [ 357761.103699997067451, 258249.361900001764297 ], [ 357747.365800000727177, 258252.837999999523163 ], [ 357742.989200003445148, 258252.916799999773502 ], [ 357741.031099997460842, 258252.951999999582767 ], [ 357738.992200002074242, 258252.988699998706579 ], [ 357731.236000001430511, 258253.128199998289347 ], [ 357715.944799996912479, 258249.625599998980761 ], [ 357706.058700002729893, 258274.242600001394749 ], [ 357696.145499996840954, 258302.025800000876188 ], [ 357688.714299999177456, 258322.441100001335144 ], [ 357695.143200002610683, 258325.026799999177456 ], [ 357699.981100000441074, 258325.066399998962879 ], [ 357723.977600000798702, 258320.587400000542402 ], [ 357734.223200000822544, 258318.675000000745058 ], [ 357742.395099997520447, 258317.149700000882149 ], [ 357744.402000002563, 258316.775100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91473025000001, "LATITUDE": 18.35418863, "OBJECTID_1": 5726, "PARCEL_NO_": "103003020600", "Tax_Legal_": "3-33 ST.JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QUARTER", "Name": "BELGRAVE, WAINWRIGHT", "Address": "PO Box 307432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77700, "Improved_V": 670000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.396451369, "SHAPE_Area": 2344.9453428400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360538.508500002324581, 258312.201400000602007 ], [ 360491.992299996316433, 258282.478700000792742 ], [ 360472.406999997794628, 258309.760499998927116 ], [ 360467.475699998438358, 258320.697000000625849 ], [ 360505.968299999833107, 258345.71000000089407 ], [ 360538.508500002324581, 258312.201400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021100", "MAP": "D9-8571-T010", "PARCEL_NAM": "10G-2", "ACRE": ".05", "LONGITUDE": -64.94133963, "LATITUDE": 18.35432768, "OBJECTID_1": 4282, "PARCEL_NO_": "102803021100", "Tax_Legal_": "10H-REM, 10G-1 & 10G-2 LERKENLUND GR NORTHSIDE QTR", "Name": "KENNETH SCOTT CHISUM TRUST", "Address": "8101 Coounty Rd", "City": "Mansfield", "State": "Texas", "Zip": 76063, "Country": "United States", "Land_Value": 141800, "Improved_V": 1008200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.544874383000007, "SHAPE_Area": 177.04177835799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357681.076800003647804, 258295.96510000154376 ], [ 357688.651199996471405, 258322.407400000840425 ], [ 357688.714299999177456, 258322.441100001335144 ], [ 357696.145499996840954, 258302.025800000876188 ], [ 357681.076800003647804, 258295.96510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012800", "MAP": "D9-3863-T87", "PARCEL_NAM": "6BB", "ACRE": null, "LONGITUDE": -64.96052705, "LATITUDE": 18.35392623, "OBJECTID_1": 3206, "PARCEL_NO_": "102703012800", "Tax_Legal_": "DOROTHEA 6BB 6 LITTLE NORTHSIDE", "Name": "R. VERNON & LISA R. HENRIQUES", "Address": "PO Box 303399", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 174900, "Improved_V": 274700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.21762982199999, "SHAPE_Area": 6908.2041027200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355710.651100002229214, 258232.579900000244379 ], [ 355701.331399999558926, 258190.707100000232458 ], [ 355609.044900000095367, 258233.014899998903275 ], [ 355619.736299999058247, 258303.185400001704693 ], [ 355716.104699999094009, 258255.000399999320507 ], [ 355710.651100002229214, 258232.579900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804020300", "MAP": "D9-3909-T87", "PARCEL_NAM": "10-M-1", "ACRE": ".50", "LONGITUDE": -64.94040278, "LATITUDE": 18.35413714, "OBJECTID_1": 4500, "PARCEL_NO_": "102804020300", "Tax_Legal_": "1O-M-1 LERKENLUND NO 9 GREAT NORTHSIDE QTR", "Name": "GLEN R GORDON REVOC TRUST", "Address": "10450 NW 2nd St", "City": "Portland", "State": "Oregon", "Zip": 97231, "Country": "United States", "Land_Value": 66700, "Improved_V": 306500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.959906295, "SHAPE_Area": 2241.3753178500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357774.863099999725819, 258243.352800000458956 ], [ 357769.225199997425079, 258316.286899998784065 ], [ 357790.33839999884367, 258319.895300000905991 ], [ 357804.844899997115135, 258320.858399998396635 ], [ 357807.571800000965595, 258320.756700001657009 ], [ 357800.972999997437, 258254.471700001507998 ], [ 357782.87950000166893, 258248.906800001859665 ], [ 357779.67400000244379, 258246.558600001037121 ], [ 357778.88570000231266, 258244.441199999302626 ], [ 357777.2820999994874, 258243.372600000351667 ], [ 357774.863099999725819, 258243.352800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804011700", "MAP": "D9-5275-T92", "PARCEL_NAM": "12-B", "ACRE": null, "LONGITUDE": -64.93336678, "LATITUDE": 18.3542595, "OBJECTID_1": 4432, "PARCEL_NO_": "102804011700", "Tax_Legal_": "12 REM & 12B MISGUNST NO.6 GREAT NORTHSIDE QTR", "Name": "ELLEN G MACLEAN REVOCABLE TRUST", "Address": "7731 Estate Misgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 158000, "Improved_V": 225400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.10349183400001, "SHAPE_Area": 1973.7571888699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358497.791900001466274, 258298.891499999910593 ], [ 358515.238200001418591, 258333.080800000578165 ], [ 358525.670199997723103, 258328.868999999016523 ], [ 358530.526100002229214, 258326.797800000756979 ], [ 358555.316699996590614, 258319.089800000190735 ], [ 358558.277000002563, 258287.550400000065565 ], [ 358556.204800002276897, 258279.741099998354912 ], [ 358519.304200001060963, 258291.838899999856949 ], [ 358510.169100001454353, 258294.833700001239777 ], [ 358497.791900001466274, 258298.891499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91348968, "LATITUDE": 18.35419775, "OBJECTID_1": 5912, "PARCEL_NO_": "103003051000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9G-B GT.NORTHSIDE QTR.", "Name": "HERNANDEZ, FRANCISCA & EUSEBIO, JUAN", "Address": "PO Box 302474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.27762621799999, "SHAPE_Area": 1203.7919920100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360657.727600000798702, 258326.687100000679493 ], [ 360620.951999999582767, 258289.44480000063777 ], [ 360605.504299998283386, 258304.306000001728535 ], [ 360642.260300002992153, 258343.870200000703335 ], [ 360655.262000001966953, 258332.1554000005126 ], [ 360657.727600000798702, 258326.687100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804011600", "MAP": "D9-3405-T86", "PARCEL_NAM": "10B", "ACRE": ".89", "LONGITUDE": -64.93391872, "LATITUDE": 18.35398636, "OBJECTID_1": 4431, "PARCEL_NO_": "102804011600", "Tax_Legal_": "MISGUNST 7AB, 7BB & 10B GREAT NORTHSIDE QTR", "Name": "SHAW, DANNY", "Address": "22935 Colridge Dr", "City": "Land O Lakes", "State": "Florida", "Zip": 34639, "Country": "United States", "Land_Value": 136000, "Improved_V": 546600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.45401490899999, "SHAPE_Area": 2314.6654302100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358450.130699999630451, 258250.649599999189377 ], [ 358458.645700000226498, 258310.147300001233816 ], [ 358479.829899996519089, 258303.797800000756979 ], [ 358497.791900001466274, 258298.891499999910593 ], [ 358486.321699999272823, 258240.885400000959635 ], [ 358484.484600000083447, 258241.35020000115037 ], [ 358469.128700003027916, 258245.446400001645088 ], [ 358450.130699999630451, 258250.649599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022300", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96428389, "LATITUDE": 18.35420678, "OBJECTID_1": 3275, "PARCEL_NO_": "102703022300", "Tax_Legal_": "LINDBERG BAY 46-11 S S QTR", "Name": "KASIEAM M WEBSTER and MONESHA S BROOKS", "Address": "PO BOX 10147", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20600, "Improved_V": 208600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.109441653, "SHAPE_Area": 1318.07862037 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355278.46339999884367, 258291.390799999237061 ], [ 355280.261900000274181, 258240.619899999350309 ], [ 355272.720899999141693, 258241.028000000864267 ], [ 355271.045299999415874, 258248.402499999850988 ], [ 355269.416500002145767, 258250.289000000804663 ], [ 355245.832099996507168, 258273.738499999046326 ], [ 355244.196099996566772, 258276.469300001859665 ], [ 355241.726800002157688, 258282.359700001776218 ], [ 355241.609899997711182, 258296.079900000244379 ], [ 355278.46339999884367, 258291.390799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93967539, "LATITUDE": 18.35417908, "OBJECTID_1": 4501, "PARCEL_NO_": "102804020400", "Tax_Legal_": "LERKENLUND 1OD GREAT NORTHSIDE QTR", "Name": "SMITH FAMILY ST THOMAS TRUST", "Address": "7875 Harrisburg Ln", "City": "Fort Wayne", "State": "Indiana", "Zip": 46835, "Country": "United States", "Land_Value": 92600, "Improved_V": 336900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.40725208800001, "SHAPE_Area": 2191.8474637300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357841.161300003528595, 258317.355999998748302 ], [ 357906.634499996900558, 258298.893399998545647 ], [ 357909.075000002980232, 258296.380300000309944 ], [ 357909.101899996399879, 258293.214099999517202 ], [ 357908.308200001716614, 258291.729899998754263 ], [ 357902.6891999989748, 258288.72859999909997 ], [ 357888.236699998378754, 258281.433200001716614 ], [ 357834.352200001478195, 258264.737900000065565 ], [ 357841.161300003528595, 258317.355999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90969824, "LATITUDE": 18.35414536, "OBJECTID_1": 5629, "PARCEL_NO_": "103003013100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-17 GR NORTHSIDE", "Name": "RICHARDS, SYLVESTER & JUDITH", "Address": "PO Box 307876", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 566500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.27584703700001, "SHAPE_Area": 1171.45263241 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361059.406099997460842, 258314.142700001597404 ], [ 361032.180299997329712, 258291.754999998956919 ], [ 361011.06870000064373, 258308.8918999992311 ], [ 361011.822899997234344, 258315.019799999892712 ], [ 361028.559500001370907, 258338.166000001132488 ], [ 361037.490000002086163, 258331.061900001019239 ], [ 361059.406099997460842, 258314.142700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91760932, "LATITUDE": 18.3540157, "OBJECTID_1": 4949, "PARCEL_NO_": "102904013200", "Tax_Legal_": "JOSEPH AND ROSENDAHL 1-24 GREAT NORTHSIDE QTR", "Name": "THOMAS, ARNOLD L. & PATRICIA A", "Address": "9 Marie Way", "City": "Randolph", "State": "Massachusetts", "Zip": 2368, "Country": "United States", "Land_Value": 96000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.90288329800001, "SHAPE_Area": 3939.8726389399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360177.204999998211861, 258318.110199999064207 ], [ 360218.224399998784065, 258330.478300001472235 ], [ 360239.013400003314018, 258256.55460000038147 ], [ 360217.293300002813339, 258250.4662000015378 ], [ 360206.778899997472763, 258254.179800000041723 ], [ 360200.231299996376038, 258265.525299999862909 ], [ 360188.025100000202656, 258278.513199999928474 ], [ 360175.851300001144409, 258287.701699998229742 ], [ 360161.276500001549721, 258294.75959999859333 ], [ 360140.270999997854233, 258299.442800000309944 ], [ 360124.141199998557568, 258299.732999999076128 ], [ 360110.450099997222424, 258297.721099998801947 ], [ 360110.433899998664856, 258299.620799999684095 ], [ 360123.289899997413158, 258305.003299999982119 ], [ 360136.968500003218651, 258308.492800001055002 ], [ 360170.811999998986721, 258311.30290000140667 ], [ 360174.825599998235703, 258313.446699999272823 ], [ 360177.204999998211861, 258318.110199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804015600", "MAP": "G9-2243-T73", "PARCEL_NAM": "13BC", "ACRE": ".75", "LONGITUDE": -64.93271988, "LATITUDE": 18.35396462, "OBJECTID_1": 4470, "PARCEL_NO_": "102804015600", "Tax_Legal_": "13BC MISGUNST GREAT NORTHSIDE", "Name": "MCCARTNEY, KEVIN M. & JENNIFER PAYNE", "Address": "9154 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 129400, "Improved_V": 462200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.67912787699998, "SHAPE_Area": 2856.93607462 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358598.346500001847744, 258277.309000000357628 ], [ 358605.025700002908707, 258303.825800001621246 ], [ 358622.693899996578693, 258298.42119999974966 ], [ 358630.791199997067451, 258294.476700000464916 ], [ 358640.531599998474121, 258286.956999998539686 ], [ 358647.856799997389317, 258278.995400000363588 ], [ 358653.599899999797344, 258267.432300001382828 ], [ 358622.688299998641014, 258260.7989999987185 ], [ 358596.375100001692772, 258264.219700001180172 ], [ 358574.639799997210503, 258248.522300001233816 ], [ 358549.641099996864796, 258255.004900000989437 ], [ 358558.277000002563, 258287.550400000065565 ], [ 358598.346500001847744, 258277.309000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019500", "MAP": "F9-3036-T72", "PARCEL_NAM": "10M", "ACRE": ".33", "LONGITUDE": -64.91200569, "LATITUDE": 18.35404175, "OBJECTID_1": 5716, "PARCEL_NO_": "103003019500", "Tax_Legal_": "10M ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "STEPHEN, FRANCES", "Address": "BOX 2581", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.75709564100001, "SHAPE_Area": 2038.49232611 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360754.999399997293949, 258267.110500000417233 ], [ 360747.701200000941753, 258271.905900001525879 ], [ 360780.376999996602535, 258317.136300001293421 ], [ 360791.532399997115135, 258332.848499998450279 ], [ 360832.922200001776218, 258301.734299998730421 ], [ 360830.521300002932549, 258299.603700000792742 ], [ 360807.989500001072884, 258294.142000000923872 ], [ 360788.699100002646446, 258286.80689999833703 ], [ 360771.834899999201298, 258278.647300001233816 ], [ 360754.999399997293949, 258267.110500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014900", "MAP": "D9-5447-T93", "PARCEL_NAM": "4C-2", "ACRE": "0.60", "LONGITUDE": -64.93565043, "LATITUDE": 18.354021, "OBJECTID_1": 4464, "PARCEL_NO_": "102804014900", "Tax_Legal_": "No.4A,REM.4B,REM.4C,4C-1&4C ESTATE MISGUNST GT.NORTHSIDE QTR", "Name": "SEACLUSION, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 337500, "Improved_V": 1977800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.612814582, "SHAPE_Area": 2479.2408142700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358308.593400001525879, 258253.4206000007689 ], [ 358269.085900001227856, 258252.886199999600649 ], [ 358263.339199997484684, 258264.871500000357628 ], [ 358258.465400002896786, 258269.05350000038743 ], [ 358277.471699997782707, 258309.739000000059605 ], [ 358324.413999997079372, 258289.436000000685453 ], [ 358308.593400001525879, 258253.4206000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90832904, "LATITUDE": 18.35414758, "OBJECTID_1": 5622, "PARCEL_NO_": "103003012600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12B-5 GR NORTHSIDE", "Name": "KRIGGER, KEITH R", "Address": "PO Box 502951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.39427881500001, "SHAPE_Area": 1254.85197432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361201.406999997794628, 258304.750199999660254 ], [ 361160.342600002884865, 258297.659099999815226 ], [ 361152.839500002563, 258326.517499998211861 ], [ 361196.326399996876717, 258333.206199999898672 ], [ 361201.406999997794628, 258304.750199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704028700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95666061, "LATITUDE": 18.35398564, "OBJECTID_1": 3527, "PARCEL_NO_": "102704028700", "Tax_Legal_": "BONNE RESOLUTION 2AAA-1 LITTLE NORTHSIDE", "Name": "QUETEL, MARK S. & LeCHELLE M. DURANTE-", "Address": "PO BOX 9367", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.95863447799999, "SHAPE_Area": 1863.1105099900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356091.122699998319149, 258248.359499998390675 ], [ 356091.262699998915195, 258231.912900000810623 ], [ 356049.488600000739098, 258233.018800001591444 ], [ 356050.787299998104572, 258250.351399999111891 ], [ 356052.211099997162819, 258272.527899999171495 ], [ 356052.868100002408028, 258290.054000001400709 ], [ 356056.100599996745586, 258289.236099999397993 ], [ 356075.570799998939037, 258275.463300000876188 ], [ 356083.664499998092651, 258271.940900001674891 ], [ 356090.933899998664856, 258270.522799998521805 ], [ 356091.122699998319149, 258248.359499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003011800", "MAP": "C9-51-T63", "PARCEL_NAM": "9N", "ACRE": ".50", "LONGITUDE": -64.91344781, "LATITUDE": 18.35393657, "OBJECTID_1": 5615, "PARCEL_NO_": "103003011800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9N GR NORTHSIDE", "Name": "RICHARDSON, JUDITH & LESLIE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 301600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.31165617400001, "SHAPE_Area": 2328.0092006999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360613.270000003278255, 258244.630100000649691 ], [ 360595.369300000369549, 258263.48200000077486 ], [ 360620.951999999582767, 258289.44480000063777 ], [ 360657.727600000798702, 258326.687100000679493 ], [ 360682.780900001525879, 258320.137200001627207 ], [ 360613.270000003278255, 258244.630100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021000", "MAP": "D9-8571-T010", "PARCEL_NAM": "10H-1", "ACRE": ".02", "LONGITUDE": -64.94168321, "LATITUDE": 18.35363077, "OBJECTID_1": 4281, "PARCEL_NO_": "102803021000", "Tax_Legal_": "10G-REM & 10H-1 LERKENLUND GR NORTHSIDE QTR", "Name": "HURLEY DOWLING LIVING REVOCABLE TRUST", "Address": "3192 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111100, "Improved_V": 268400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.440468049499998, "SHAPE_Area": 180.59004801699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357661.927199997007847, 258248.550200000405312 ], [ 357650.951800003647804, 258211.730099998414516 ], [ 357645.975400000810623, 258227.943500000983477 ], [ 357661.927199997007847, 258248.550200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703015700", "MAP": "C9-284-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9595102, "LATITUDE": 18.35404146, "OBJECTID_1": 3235, "PARCEL_NO_": "102703015700", "Tax_Legal_": "BONNE RESOLUTION 4-8 LITTLE NORTHSIDE", "Name": "WILLIAMS, AULD", "Address": "PO Box 217", "City": "Cedar Knolls", "State": "New Jersey", "Zip": 7927, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.43351691199999, "SHAPE_Area": 2156.1885103599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355760.620899997651577, 258235.521999999880791 ], [ 355754.166799999773502, 258235.891399998217821 ], [ 355733.627700001001358, 258280.475099999457598 ], [ 355778.774099998176098, 258281.688999999314547 ], [ 355799.149400003254414, 258256.313400000333786 ], [ 355802.441200003027916, 258248.529899999499321 ], [ 355802.479000002145767, 258244.097199998795986 ], [ 355800.886100001633167, 258241.762200001627207 ], [ 355798.479800000786781, 258240.264800000935793 ], [ 355775.096699997782707, 258240.073399998247623 ], [ 355767.048000000417233, 258238.318799998611212 ], [ 355760.620899997651577, 258235.521999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703015600", "MAP": "C9-284-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95984023, "LATITUDE": 18.35389926, "OBJECTID_1": 3234, "PARCEL_NO_": "102703015600", "Tax_Legal_": "4-10 BONNE RESOLUTION NO.5 LT NORTHSIDE QTR", "Name": "WILLIAMS, FLOYD", "Address": "1220 Colgate Ave", "City": "Bronx", "State": "New York", "Zip": 10472, "Country": "United States", "Land_Value": 81900, "Improved_V": 268800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.14085707199999, "SHAPE_Area": 1987.9349605899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355716.104699999094009, 258255.000399999320507 ], [ 355719.922200001776218, 258280.151799999177456 ], [ 355733.627700001001358, 258280.475099999457598 ], [ 355754.166799999773502, 258235.891399998217821 ], [ 355760.620899997651577, 258235.521999999880791 ], [ 355757.42620000243187, 258231.907299999147654 ], [ 355753.518700003623962, 258217.309799998998642 ], [ 355751.995999999344349, 258206.74269999936223 ], [ 355710.651100002229214, 258232.579900000244379 ], [ 355716.104699999094009, 258255.000399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014900", "MAP": "D9-7175-T003", "PARCEL_NAM": "4A REM", "ACRE": ".836", "LONGITUDE": -64.93661679, "LATITUDE": 18.35382541, "OBJECTID_1": 4464, "PARCEL_NO_": "102804014900", "Tax_Legal_": "No.4A,REM.4B,REM.4C,4C-1&4C ESTATE MISGUNST GT.NORTHSIDE QTR", "Name": "SEACLUSION, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 337500, "Improved_V": 1977800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.404623208, "SHAPE_Area": 3785.2957415699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358216.386100001633167, 258286.440900001674891 ], [ 358209.869199998676777, 258266.659600000828505 ], [ 358214.351999998092651, 258208.679499998688698 ], [ 358197.680200003087521, 258210.505199998617172 ], [ 358192.021600000560284, 258212.147700000554323 ], [ 358185.540500000119209, 258215.683200001716614 ], [ 358181.478399999439716, 258219.238600000739098 ], [ 358157.827399998903275, 258250.497900001704693 ], [ 358152.966099999845028, 258253.202399998903275 ], [ 358171.925599999725819, 258299.375900000333786 ], [ 358216.386100001633167, 258286.440900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91020356, "LATITUDE": 18.35401531, "OBJECTID_1": 5626, "PARCEL_NO_": "103003012900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-19 GR NORTHSIDE", "Name": "IBLE, F G & C D APT. #3E", "Address": "1501 Jersey St", "City": "Tallahassee", "State": "Florida", "Zip": 32304, "Country": "United States", "Land_Value": 27100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.442615049, "SHAPE_Area": 906.95097714600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360979.071599997580051, 258278.654699999839067 ], [ 360958.024700000882149, 258288.192800000309944 ], [ 360981.120099999010563, 258322.156800001859665 ], [ 361000.602799996733665, 258306.906399998813868 ], [ 360979.071599997580051, 258278.654699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003018800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91384924, "LATITUDE": 18.35396385, "OBJECTID_1": 5710, "PARCEL_NO_": "103003018800", "Tax_Legal_": "ST JOSPEH & ROSENDAHL 9GA GR NORTHSIDE", "Name": "RICHARDSON, L. O. & J. M", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34300, "Improved_V": 284600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.30296216100001, "SHAPE_Area": 1408.63578828 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360595.369300000369549, 258263.48200000077486 ], [ 360568.518299996852875, 258291.759799998253584 ], [ 360591.685500003397465, 258317.280699998140335 ], [ 360605.504299998283386, 258304.306000001728535 ], [ 360620.951999999582767, 258289.44480000063777 ], [ 360595.369300000369549, 258263.48200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022400", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96447106, "LATITUDE": 18.35389408, "OBJECTID_1": 3276, "PARCEL_NO_": "102703022400", "Tax_Legal_": "LINDBERG ESTATE 46-10 SOUTHSIDE QTR.", "Name": "GRAHAM, YI-LENG UNIASHA", "Address": "PO BOX 304262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.12396936799999, "SHAPE_Area": 1130.1754720900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355234.54730000346899, 258273.223999999463558 ], [ 355236.172499999403954, 258271.75959999859333 ], [ 355240.250799998641014, 258266.304499998688698 ], [ 355263.020000003278255, 258243.903900001198053 ], [ 355263.891000002622604, 258236.311700001358986 ], [ 355258.300800003111362, 258229.933100000023842 ], [ 355245.487899996340275, 258219.484600000083447 ], [ 355234.3074000030756, 258206.72749999910593 ], [ 355231.899300001561642, 258205.441199999302626 ], [ 355234.54730000346899, 258273.223999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95310403000001, "LATITUDE": 18.35386534, "OBJECTID_1": 3473, "PARCEL_NO_": "102704014900", "Tax_Legal_": "LILLIENDAHL & MARHJ.11HC LT. NORTHSIDE", "Name": "HUNTE, DELANO & OSAZE, CHINWE", "Address": "PO Box 7275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69100, "Improved_V": 116400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.418497366, "SHAPE_Area": 2899.8230576699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356483.827399998903275, 258247.984999999403954 ], [ 356451.088699996471405, 258210.142400000244379 ], [ 356449.467100001871586, 258211.184599999338388 ], [ 356405.686999998986721, 258238.901700001209974 ], [ 356444.016000002622604, 258283.122900001704693 ], [ 356461.070799998939037, 258268.908100001513958 ], [ 356483.827399998903275, 258247.984999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704050600", "MAP": "A9-485-T95", "PARCEL_NAM": "10-2-1", "ACRE": ".679", "LONGITUDE": -64.95127752, "LATITUDE": 18.35387367, "OBJECTID_1": 3622, "PARCEL_NO_": "102704050600", "Tax_Legal_": "LILL & MARIE 10-2-1 & 10-2-1-C LT. NORTHSIDE", "Name": "DAWSON, ANNE C", "Address": "PO Box 7352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53400, "Improved_V": 444300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.31146194600001, "SHAPE_Area": 2526.32827559 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356658.579499997198582, 258284.728500001132488 ], [ 356667.23369999974966, 258270.888399999588728 ], [ 356655.453299999237061, 258263.321800000965595 ], [ 356652.309000000357628, 258253.796900000423193 ], [ 356651.581799998879433, 258244.50279999896884 ], [ 356654.878899998962879, 258236.086100000888109 ], [ 356653.298699997365475, 258232.273499999195337 ], [ 356648.478799998760223, 258230.123100001364946 ], [ 356650.140000000596046, 258224.437100000679493 ], [ 356655.766199998557568, 258226.594099998474121 ], [ 356659.000399999320507, 258225.565099999308586 ], [ 356661.473300002515316, 258219.252599999308586 ], [ 356622.863799996674061, 258207.959699999541044 ], [ 356616.238899998366833, 258228.381599999964237 ], [ 356623.184600003063679, 258264.957600001245737 ], [ 356627.891199998557568, 258280.405900001525879 ], [ 356631.894000001251698, 258283.816199999302626 ], [ 356640.75620000064373, 258284.7331000007689 ], [ 356658.579499997198582, 258284.728500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91505059000001, "LATITUDE": 18.35382023, "OBJECTID_1": 5729, "PARCEL_NO_": "103003020900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-30 GR NORTHSIDE", "Name": "ROSS, JAMES L", "Address": "5 Company St", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 56600, "Improved_V": 270600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.22294281699999, "SHAPE_Area": 2568.4285068499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360495.553800001740456, 258243.033300001174212 ], [ 360472.230099998414516, 258235.876299999654293 ], [ 360468.985100001096725, 258238.171799998730421 ], [ 360465.714900001883507, 258243.422400001436472 ], [ 360460.835600003600121, 258248.23759999871254 ], [ 360460.009499996900558, 258250.55290000140667 ], [ 360453.483499996364117, 258259.36540000140667 ], [ 360446.10980000346899, 258273.026099998503923 ], [ 360439.506499998271465, 258290.91499999910593 ], [ 360439.490299999713898, 258292.814699999988079 ], [ 360437.868699997663498, 258293.856899999082088 ], [ 360436.225500002503395, 258297.432100001722574 ], [ 360464.29900000244379, 258314.971500001847744 ], [ 360466.786200001835823, 258306.970300000160933 ], [ 360484.744499996304512, 258281.363899998366833 ], [ 360483.151600003242493, 258279.028799999505281 ], [ 360485.590400002896786, 258276.726799998432398 ], [ 360491.230899997055531, 258277.195099998265505 ], [ 360495.553800001740456, 258243.033300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704050100", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-21", "ACRE": ".533", "LONGITUDE": -64.95166399, "LATITUDE": 18.35385758, "OBJECTID_1": 3617, "PARCEL_NO_": "102704050100", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-21 LT.NORTHSIDE QTR.", "Name": "JONES, MARY J. & VINCENT L. TREASURE", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41100, "Improved_V": 617900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.064023499, "SHAPE_Area": 1990.7468773799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356572.401299998164177, 258262.853199999779463 ], [ 356606.095600001513958, 258283.182900000363588 ], [ 356614.279200002551079, 258269.106600001454353 ], [ 356615.965599998831749, 258260.465500000864267 ], [ 356613.670699998736382, 258245.881299998611212 ], [ 356605.146499998867512, 258205.281599998474121 ], [ 356603.726300001144409, 258182.682900000363588 ], [ 356595.406000003218651, 258212.801199998706579 ], [ 356586.331600002944469, 258236.791600000113249 ], [ 356578.993900001049042, 258246.230799999088049 ], [ 356572.401299998164177, 258262.853199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003013500", "MAP": "G9-1348-T69", "PARCEL_NAM": "12B-1", "ACRE": ".27", "LONGITUDE": -64.90893408, "LATITUDE": 18.35398594, "OBJECTID_1": 5635, "PARCEL_NO_": "103003013500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12B-1 GT. NORTHSIDE", "Name": "SMITH, SHIRLEY KRIGGER", "Address": "PO Box 7732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.39109079900001, "SHAPE_Area": 1073.1565746900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361149.07940000295639, 258294.611600000411272 ], [ 361091.955300003290176, 258279.578600000590086 ], [ 361093.505000002682209, 258286.979600001126528 ], [ 361088.629399999976158, 258291.372600000351667 ], [ 361110.968800000846386, 258319.419799998402596 ], [ 361124.791199997067451, 258306.022999998182058 ], [ 361131.273999996483326, 258302.276299998164177 ], [ 361143.401100002229214, 258298.575899999588728 ], [ 361149.07940000295639, 258294.611600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704051000", "MAP": null, "PARCEL_NAM": "10-2-3", "ACRE": null, "LONGITUDE": -64.9505646, "LATITUDE": 18.35395212, "OBJECTID_1": 3626, "PARCEL_NO_": "102704051000", "Tax_Legal_": "10-2-3 LILLIEINDAHL & MARIENHOJ LITTLE NORTHSIDE QTR.", "Name": "SMALL, JR., KENNETH NATHANIEL& BERTIL KETRA JOSEPH", "Address": "PO Box 9763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.699046436, "SHAPE_Area": 2245.5454069299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356733.109200000762939, 258234.61540000140667 ], [ 356720.323299996554852, 258221.000799998641014 ], [ 356687.770499996840954, 258255.986999999731779 ], [ 356683.580700002610683, 258274.528900001198053 ], [ 356692.394400000572205, 258281.144999999552965 ], [ 356699.644000001251698, 258282.048700001090765 ], [ 356720.631499998271465, 258279.476199999451637 ], [ 356741.635200001299381, 258275.004099998623133 ], [ 356733.109200000762939, 258234.61540000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91456071, "LATITUDE": 18.35379811, "OBJECTID_1": 5730, "PARCEL_NO_": "103003021000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-32 GREAT NORTHSIDE QTR.", "Name": "WILLIAMS, ALVIN & JENNIFER", "Address": "PO Box 10441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66300, "Improved_V": 433300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.64598885500001, "SHAPE_Area": 2581.3035198799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360546.231499999761581, 258247.874000001698732 ], [ 360495.553800001740456, 258243.033300001174212 ], [ 360491.230899997055531, 258277.195099998265505 ], [ 360491.992299996316433, 258282.478700000792742 ], [ 360536.713799998164177, 258311.054699998348951 ], [ 360546.231499999761581, 258247.874000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804020900", "MAP": "G9-377-T56", "PARCEL_NAM": "10C", "ACRE": ".405", "LONGITUDE": -64.93908833, "LATITUDE": 18.35395623, "OBJECTID_1": 4514, "PARCEL_NO_": "102804020900", "Tax_Legal_": "LERKENLUND 1OC GREAT NORTHSIDE QTR", "Name": "BREUNLIN, JR. , J. H. & KINDER, S. K", "Address": "PO Box 7363", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 82200, "Improved_V": 48400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.19982999800001, "SHAPE_Area": 2095.4225328100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357956.301399998366833, 258242.726799998432398 ], [ 357914.290500000119209, 258252.093299999833107 ], [ 357881.075199998915195, 258270.186599999666214 ], [ 357901.173699997365475, 258277.317200001329184 ], [ 357922.040700003504753, 258288.886999998241663 ], [ 357933.318300001323223, 258290.245900001376867 ], [ 357950.281400002539158, 258286.796100001782179 ], [ 357956.301399998366833, 258242.726799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91612258000001, "LATITUDE": 18.35389446, "OBJECTID_1": 5727, "PARCEL_NO_": "103003020700", "Tax_Legal_": "2-38 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QTR.", "Name": "EDWARD THOMAS FLOTTMAN & MELISSA LYNNE FLOTTMAN", "Address": "PO Box 33", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 50500, "Improved_V": 238400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.89968923000001, "SHAPE_Area": 2838.9152865000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360385.528499998152256, 258285.195900000631809 ], [ 360348.795999996364117, 258242.887699998915195 ], [ 360342.33110000193119, 258244.523499999195337 ], [ 360335.835600003600121, 258249.747699998319149 ], [ 360330.130300000309944, 258256.878199998289347 ], [ 360327.662799999117851, 258262.557500001043081 ], [ 360325.992600001394749, 258269.298799999058247 ], [ 360325.060500003397465, 258284.067699998617172 ], [ 360324.972099997103214, 258294.429900001734495 ], [ 360322.23309999704361, 258299.631400000303984 ], [ 360389.35869999974966, 258308.869699999690056 ], [ 360394.210900001227856, 258307.22069999948144 ], [ 360385.528499998152256, 258285.195900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90946392, "LATITUDE": 18.3539727, "OBJECTID_1": 5633, "PARCEL_NO_": "103003013300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-16\nGR NORTHSIDE QTR", "Name": "Granville R Cespedes&Leurys A delos Rios Reyes", "Address": "Po Box 305826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 186100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.51313433499999, "SHAPE_Area": 945.50190009100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361087.005999997258186, 258292.625900000333786 ], [ 361044.38289999961853, 258279.189300000667572 ], [ 361037.865800000727177, 258286.946400001645088 ], [ 361032.180299997329712, 258291.754999998956919 ], [ 361059.406099997460842, 258314.142700001597404 ], [ 361061.8412000015378, 258312.262699998915195 ], [ 361087.005999997258186, 258292.625900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95864434000001, "LATITUDE": 18.35403049, "OBJECTID_1": 3213, "PARCEL_NO_": "102703013500", "Tax_Legal_": "BONNE RESOLUTION 3E LITTLE NORTHSIDE QTR", "Name": "RADLOFF, ROBERT B. & MARGARET M. SHEAHAN", "Address": "PO BOX 306117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37900, "Improved_V": 260700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.61517037, "SHAPE_Area": 919.62888186800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355881.283600002527237, 258269.862300001084805 ], [ 355879.863399997353554, 258247.263700000941753 ], [ 355834.686499997973442, 258249.638199999928474 ], [ 355844.178900003433228, 258271.247400000691414 ], [ 355881.283600002527237, 258269.862300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003030100", "MAP": "B9-311-T71", "PARCEL_NAM": "4H-1", "ACRE": "0.614", "LONGITUDE": -64.91417902000001, "LATITUDE": 18.35349733, "OBJECTID_1": 5797, "PARCEL_NO_": "103003030100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4H-1 GREAT NORTHSIDE", "Name": "SILLE, ANN MARIE", "Address": "PO Box 304595", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64600, "Improved_V": 283400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.05682165799999, "SHAPE_Area": 2718.2585215099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360592.608000002801418, 258206.679699998348951 ], [ 360557.335400000214577, 258174.162999998778105 ], [ 360551.743500001728535, 258211.283399999141693 ], [ 360546.231499999761581, 258247.874000001698732 ], [ 360536.713799998164177, 258311.054699998348951 ], [ 360538.508500002324581, 258312.201400000602007 ], [ 360540.193300001323223, 258310.466400001198053 ], [ 360541.762500002980232, 258308.850499998778105 ], [ 360573.517200000584126, 258275.458700001239777 ], [ 360551.994300000369549, 258251.805500000715256 ], [ 360568.081000000238419, 258231.69709999859333 ], [ 360592.608000002801418, 258206.679699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91552844, "LATITUDE": 18.35387468, "OBJECTID_1": 5728, "PARCEL_NO_": "103003020800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-37 GR NORTHSIDE QTR", "Name": "MANNING, RYAN D. & CARRI ANNE", "Address": "PO BOX 818", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53000, "Improved_V": 285000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.61096496499999, "SHAPE_Area": 2060.01903227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360446.223099999129772, 258259.728199999779463 ], [ 360433.457000002264977, 258243.791700001806021 ], [ 360385.528499998152256, 258285.195900000631809 ], [ 360394.210900001227856, 258307.22069999948144 ], [ 360413.585799999535084, 258304.635099999606609 ], [ 360422.482199996709824, 258301.541499998420477 ], [ 360428.160599999129772, 258297.577199999243021 ], [ 360433.048799999058247, 258291.706599999219179 ], [ 360438.836800001561642, 258274.866399999707937 ], [ 360446.223099999129772, 258259.728199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703015500", "MAP": "C9-284-T84", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95927544, "LATITUDE": 18.35366036, "OBJECTID_1": 3232, "PARCEL_NO_": "102703015500", "Tax_Legal_": "4-11 BONNE RESOLUTION NO.5 LITTLE NORTHSIDE QTR", "Name": "MONSANTO, EDWIN A.", "Address": "PO Box 7513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81100, "Improved_V": 50700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.09638508099999, "SHAPE_Area": 1955.6802348799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355814.107199996709824, 258204.295699998736382 ], [ 355806.889799997210503, 258189.498399998992682 ], [ 355769.716899998486042, 258208.998700000345707 ], [ 355759.186300002038479, 258214.611999999731779 ], [ 355763.090199999511242, 258229.631599999964237 ], [ 355767.906499996781349, 258232.204100001603365 ], [ 355775.955200001597404, 258233.958799999207258 ], [ 355798.531900003552437, 258234.143500000238419 ], [ 355801.751800000667572, 258234.803199999034405 ], [ 355807.359999999403954, 258239.070900000631809 ], [ 355809.726800002157688, 258245.212000001221895 ], [ 355823.437100000679493, 258223.110399998724461 ], [ 355822.829199999570847, 258221.67680000141263 ], [ 355814.107199996709824, 258204.295699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95816248, "LATITUDE": 18.35397664, "OBJECTID_1": 3495, "PARCEL_NO_": "102704020300", "Tax_Legal_": "BONNE RESOLUTION 3D&3G LITTLE NORTHSIDE QTR", "Name": "ROBERT ORLANDO LAPLACE FAMILY TRUST", "Address": "PO Box 4085", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45700, "Improved_V": 290800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.51410531100001, "SHAPE_Area": 1699.0097175799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355929.982500001788139, 258232.686299998313189 ], [ 355879.863399997353554, 258247.263700000941753 ], [ 355881.283600002527237, 258269.862300001084805 ], [ 355911.11540000140667, 258270.317600000649691 ], [ 355918.379399999976158, 258269.532699998468161 ], [ 355922.427100002765656, 258267.666000001132488 ], [ 355935.4037000015378, 258258.906199999153614 ], [ 355948.340599998831749, 258254.790300000458956 ], [ 355945.936099998652935, 258253.081799998879433 ], [ 355929.982500001788139, 258232.686299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014900", "MAP": "D9-5447-T93", "PARCEL_NAM": "4C", "ACRE": null, "LONGITUDE": -64.93517619000001, "LATITUDE": 18.35387328, "OBJECTID_1": 4464, "PARCEL_NO_": "102804014900", "Tax_Legal_": "No.4A,REM.4B,REM.4C,4C-1&4C ESTATE MISGUNST GT.NORTHSIDE QTR", "Name": "SEACLUSION, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 337500, "Improved_V": 1977800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.813928995, "SHAPE_Area": 2100.7026820800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358332.129399999976158, 258235.670299999415874 ], [ 358308.593400001525879, 258253.4206000007689 ], [ 358324.413999997079372, 258289.436000000685453 ], [ 358330.079800002276897, 258286.949299998581409 ], [ 358381.068099997937679, 258264.990699999034405 ], [ 358381.913900002837181, 258260.353500001132488 ], [ 358355.40990000218153, 258247.893199998885393 ], [ 358332.129399999976158, 258235.670299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021500", "MAP": null, "PARCEL_NAM": "1A", "ACRE": null, "LONGITUDE": -64.95629872000001, "LATITUDE": 18.35387181, "OBJECTID_1": 3507, "PARCEL_NO_": "102704021500", "Tax_Legal_": "BONNE RESOLUTION 1A", "Name": "DENISE D PAKER and DEONTE R PARKER-RIVERA", "Address": "PO BOX 10430", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 87600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.408712184, "SHAPE_Area": 1828.8770082000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356091.590199999511242, 258193.478999998420477 ], [ 356091.478699997067451, 258206.565900001674891 ], [ 356091.442699998617172, 258210.787500001490116 ], [ 356091.122699998319149, 258248.359499998390675 ], [ 356090.933899998664856, 258270.522799998521805 ], [ 356113.514200001955032, 258270.285399999469519 ], [ 356119.980899997055531, 258268.438499998301268 ], [ 356133.779899999499321, 258257.785599999129772 ], [ 356133.153399996459484, 258236.67119999974966 ], [ 356107.403599999845028, 258230.338700000196695 ], [ 356097.803300000727177, 258221.394200000911951 ], [ 356096.228500001132488, 258216.948300000280142 ], [ 356096.25900000333786, 258213.359999999403954 ], [ 356099.568800002336502, 258203.465700000524521 ], [ 356103.665100000798702, 258195.89979999884963 ], [ 356103.693899996578693, 258192.522599998861551 ], [ 356091.590199999511242, 258193.478999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704051100", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-4", "ACRE": ".5315", "LONGITUDE": -64.95009801, "LATITUDE": 18.35381794, "OBJECTID_1": 3627, "PARCEL_NO_": "102704051100", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-4", "Name": "RAMSEY, ALPHONSO D", "Address": "PO Box 2550", "City": "Richmond Hill", "State": "Georgia", "Zip": 31324, "Country": "United States", "Land_Value": 44500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.501884762, "SHAPE_Area": 2557.9842073899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356795.223099999129772, 258250.210799999535084 ], [ 356780.529799997806549, 258207.683600001037121 ], [ 356746.083999998867512, 258226.066799998283386 ], [ 356733.109200000762939, 258234.61540000140667 ], [ 356741.635200001299381, 258275.004099998623133 ], [ 356761.033500000834465, 258269.674400001764297 ], [ 356780.464100003242493, 258260.545299999415874 ], [ 356791.003700003027916, 258253.876600001007318 ], [ 356795.223099999129772, 258250.210799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704050800", "MAP": "A9-485-T95", "PARCEL_NAM": "10-2-2", "ACRE": ".506", "LONGITUDE": -64.95084028, "LATITUDE": 18.35373612, "OBJECTID_1": 3624, "PARCEL_NO_": "102704050800", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-2 L", "Name": "PHILLIPS, NEVIN & LOURDES", "Address": "7899 Mountain Top", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.493180846, "SHAPE_Area": 2482.217499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356720.323299996554852, 258221.000799998641014 ], [ 356693.110100001096725, 258197.135600000619888 ], [ 356674.453400000929832, 258210.070700000971556 ], [ 356672.829999998211861, 258211.324000000953674 ], [ 356669.543600000441074, 258218.474199999123812 ], [ 356667.097699999809265, 258221.620600000023842 ], [ 356658.041299998760223, 258243.500199999660254 ], [ 356658.750500001013279, 258254.905099999159575 ], [ 356660.319899998605251, 258259.984200000762939 ], [ 356673.962499998509884, 258267.695199999958277 ], [ 356683.580700002610683, 258274.528900001198053 ], [ 356687.770499996840954, 258255.986999999731779 ], [ 356720.323299996554852, 258221.000799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9189769, "LATITUDE": 18.35384087, "OBJECTID_1": 4947, "PARCEL_NO_": "102904013000", "Tax_Legal_": "ST JOSEPH AND ROSENDAHL 1-23 GREAT NORTHSIDE QTR", "Name": "ROESNER, MICHAEL J.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64300, "Improved_V": 299700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.27884241800001, "SHAPE_Area": 2050.8276073500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360060.946000002324581, 258240.109499998390675 ], [ 360044.139300003647804, 258225.19539999961853 ], [ 360040.786399997770786, 258240.155600000172853 ], [ 360029.843999996781349, 258294.105999998748302 ], [ 360054.778499998152256, 258301.487300001084805 ], [ 360086.325400002300739, 258289.924300000071526 ], [ 360058.358000002801418, 258259.931200001388788 ], [ 360056.781400002539158, 258255.696400001645088 ], [ 360056.048799999058247, 258247.035599999129772 ], [ 360057.69200000166893, 258243.460400000214577 ], [ 360060.946000002324581, 258240.109499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90994795, "LATITUDE": 18.35386879, "OBJECTID_1": 5631, "PARCEL_NO_": "103003013200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-20 GREAT NORTHSIDE QTR", "Name": "FARRELL, JAMES J", "Address": "12A-20 Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26100, "Improved_V": 116700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.35742126700001, "SHAPE_Area": 1226.51307043 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361037.968299999833107, 258274.914900001138449 ], [ 360999.344499997794628, 258265.310699999332428 ], [ 360997.688699997961521, 258270.363400001078844 ], [ 360979.071599997580051, 258278.654699999839067 ], [ 361000.602799996733665, 258306.906399998813868 ], [ 361030.639600001275539, 258283.298700001090765 ], [ 361037.968299999833107, 258274.914900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904014400", "MAP": "G9-749-T64", "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.92004711, "LATITUDE": 18.35228974, "OBJECTID_1": 4959, "PARCEL_NO_": "102904014400", "Tax_Legal_": "LOUISENHOJ 12 GR NORTHSIDE QTR", "Name": "GJESSING, HELEN W", "Address": "100 Wake Robin Dr", "City": "Shelburne", "State": "Vermont", "Zip": 54827530, "Country": "United States", "Land_Value": 710600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1135.6501031800001, "SHAPE_Area": 61390.863927899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359962.649300001561642, 258246.494600001722574 ], [ 359964.323499999940395, 258224.605399999767542 ], [ 359969.205099999904633, 258225.424100000411272 ], [ 360031.38459999859333, 258235.851500000804663 ], [ 360041.375500001013279, 258237.526999998837709 ], [ 360044.139300003647804, 258225.19539999961853 ], [ 360045.813100002706051, 258218.032000001519918 ], [ 360055.074500001966953, 258172.089400000870228 ], [ 360066.880800001323223, 258111.391100000590086 ], [ 360069.389600001275539, 258100.856899999082088 ], [ 360005.784400001168251, 258089.359499998390675 ], [ 360022.493299998342991, 258021.10190000012517 ], [ 359980.841300003230572, 257893.682700000703335 ], [ 359928.217000000178814, 257918.372099999338388 ], [ 359913.663800001144409, 257922.897100001573563 ], [ 359902.362800002098083, 257924.282200001180172 ], [ 359883.8175999969244, 257924.130399998277426 ], [ 359857.247100003063679, 257919.480000000447035 ], [ 359845.431500002741814, 258170.584600001573563 ], [ 359852.609200000762939, 258179.931499999016523 ], [ 359855.764300003647804, 258188.190000001341105 ], [ 359864.139200001955032, 258246.309200000017881 ], [ 359872.76410000026226, 258275.088599998503923 ], [ 359881.527500003576279, 258287.614799998700619 ], [ 359885.524899996817112, 258291.658300001174212 ], [ 359891.13849999755621, 258295.29280000180006 ], [ 359950.074799999594688, 258286.909299999475479 ], [ 359959.663000002503395, 258285.539299998432398 ], [ 359962.649300001561642, 258246.494600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017400", "MAP": "D9-1713-T81", "PARCEL_NAM": "11D-13", "ACRE": null, "LONGITUDE": -64.94405141, "LATITUDE": 18.35385948, "OBJECTID_1": 4259, "PARCEL_NO_": "102803017400", "Tax_Legal_": "SOLBERG 11D-13 LT. NORTHSIDE", "Name": "VINCENT LAURO and ASHLEY MEEDER", "Address": "444 NW 1st Ave", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33301, "Country": "United States", "Land_Value": 93200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.44554730799999, "SHAPE_Area": 1394.93393859 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357405.665500000119209, 258229.354200001806021 ], [ 357399.310300000011921, 258218.114199999719858 ], [ 357377.957800000905991, 258263.535700000822544 ], [ 357385.17509999871254, 258268.238800000399351 ], [ 357431.097099997103214, 258273.047600001096725 ], [ 357405.665500000119209, 258229.354200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904012900", "MAP": "D9-1489-T79", "PARCEL_NAM": "11", "ACRE": ".55", "LONGITUDE": -64.91964715, "LATITUDE": 18.35369043, "OBJECTID_1": 4946, "PARCEL_NO_": "102904012900", "Tax_Legal_": "11 ESTATE LOUISENHOJ NO.5A GREAT NORTHSIDE QTR", "Name": "RIDENOUR, LIONEL and KAREN", "Address": "1752 Ellen St NW", "City": "Atlanta", "State": "Georgia", "Zip": 30318, "Country": "United States", "Land_Value": 86900, "Improved_V": 329800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.03155576699999, "SHAPE_Area": 2259.3716923400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359997.228900000452995, 258284.804800000041723 ], [ 360007.42849999666214, 258231.834100000560284 ], [ 359969.205099999904633, 258225.424100000411272 ], [ 359964.323499999940395, 258224.605399999767542 ], [ 359962.649300001561642, 258246.494600001722574 ], [ 359959.663000002503395, 258285.539299998432398 ], [ 359986.405599996447563, 258281.718199998140335 ], [ 359997.228900000452995, 258284.804800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803028500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.941157, "LATITUDE": 18.35355018, "OBJECTID_1": 4345, "PARCEL_NO_": "102803028500", "Tax_Legal_": "10-O ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "DUCLOUX, PIERRE F. & LESLEY M", "Address": "2700 Emerson Ave S", "City": "Minneapolis", "State": "Minnesota", "Zip": 55408, "Country": "United States", "Land_Value": 116600, "Improved_V": 423600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.210458491, "SHAPE_Area": 3326.4495771900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357718.415899999439716, 258243.524099998176098 ], [ 357729.963200002908707, 258213.221099998801947 ], [ 357753.497299998998642, 258195.68189999833703 ], [ 357719.75450000166893, 258181.051300000399351 ], [ 357712.544399999082088, 258175.503899998962879 ], [ 357672.513599999248981, 258236.393399998545647 ], [ 357706.058700002729893, 258274.242600001394749 ], [ 357715.944799996912479, 258249.625599998980761 ], [ 357718.415899999439716, 258243.524099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95205717, "LATITUDE": 18.35357525, "OBJECTID_1": 3459, "PARCEL_NO_": "102704013000", "Tax_Legal_": "LILLENDHL & MARIENHOJ 11-3 GR NORTHSIDE", "Name": "BAILEY, MARCUS, GRACE and PETER", "Address": "PO Box 11671", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.74330566, "SHAPE_Area": 2520.43002157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356564.281700000166893, 258174.76069999858737 ], [ 356560.176399998366833, 258183.381999999284744 ], [ 356531.035899996757507, 258196.442400000989437 ], [ 356527.706299997866154, 258208.658500000834465 ], [ 356528.4983000010252, 258210.353799998760223 ], [ 356533.305600002408028, 258213.981699999421835 ], [ 356534.898400001227856, 258216.316799998283386 ], [ 356541.201499998569489, 258233.677999999374151 ], [ 356546.777300000190735, 258241.745200000703335 ], [ 356551.501900002360344, 258255.082800000905991 ], [ 356552.247100003063679, 258262.266100000590086 ], [ 356554.655199997127056, 258263.552299998700619 ], [ 356556.275100000202656, 258262.721200000494719 ], [ 356558.740699999034405, 258257.252999998629093 ], [ 356561.186700001358986, 258254.106600001454353 ], [ 356564.465800002217293, 258247.800599999725819 ], [ 356576.826700001955032, 258216.65989999845624 ], [ 356583.444399997591972, 258197.082400001585484 ], [ 356564.281700000166893, 258174.76069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903010100", "MAP": "D9-34-T52", "PARCEL_NAM": "11", "ACRE": "2.82", "LONGITUDE": -64.93141358, "LATITUDE": 18.35292318, "OBJECTID_1": 4714, "PARCEL_NO_": "102903010100", "Tax_Legal_": "11 ESTATE MISGUNST GREAT NORTHSIDE QTR", "Name": "CREQUE, MARGARET L. & SCOBIE, JULIETTE E.", "Address": "12 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 254900, "Improved_V": 496500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 559.03094438899996, "SHAPE_Area": 10556.0063897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358760.967500001192093, 258063.972500000149012 ], [ 358719.511100001633167, 258102.896600000560284 ], [ 358729.078900001943111, 258115.640500001609325 ], [ 358728.198899999260902, 258124.288100000470877 ], [ 358724.878300003707409, 258135.448899999260902 ], [ 358719.144199997186661, 258145.956700000911951 ], [ 358684.861900001764297, 258194.64979999884963 ], [ 358678.290899999439716, 258208.73930000141263 ], [ 358671.682199999690056, 258227.261399999260902 ], [ 358661.623400002717972, 258272.142000000923872 ], [ 358658.351400002837181, 258277.603700000792742 ], [ 358658.333499997854233, 258279.714499998837709 ], [ 358659.937100000679493, 258280.783100001513958 ], [ 358662.361400000751019, 258280.169599998742342 ], [ 358671.30460000038147, 258271.587999999523163 ], [ 358681.908900000154972, 258257.32039999961853 ], [ 358687.646600000560284, 258246.390500001609325 ], [ 358690.124899998307228, 258239.444699998944998 ], [ 358691.753700003027916, 258237.558200001716614 ], [ 358697.464400000870228, 258229.79450000077486 ], [ 358705.628200002014637, 258218.040100000798702 ], [ 358713.74889999628067, 258211.351500000804663 ], [ 358728.332699999213219, 258203.238200001418591 ], [ 358748.542599998414516, 258197.281899999827147 ], [ 358756.634499996900558, 258193.97069999948144 ], [ 358769.602099999785423, 258186.26630000025034 ], [ 358797.189300000667572, 258166.227099999785423 ], [ 358802.880199998617172, 258160.785300001502037 ], [ 358807.775700002908707, 258154.07039999961853 ], [ 358762.558499999344349, 258066.5185999982059 ], [ 358760.967500001192093, 258063.972500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904018200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91846311, "LATITUDE": 18.35377909, "OBJECTID_1": 4994, "PARCEL_NO_": "102904018200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1 16 GREAT NORTHSIDE", "Name": "AUBAIN, LOUIS R", "Address": "BOX 2541", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 113700, "Improved_V": 487000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.36760216900001, "SHAPE_Area": 2755.5727987 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360142.758299998939037, 258291.441599998623133 ], [ 360135.880900003015995, 258246.8445999994874 ], [ 360117.32490000128746, 258247.959300000220537 ], [ 360073.024499997496605, 258242.108199998736382 ], [ 360066.548799999058247, 258245.010600000619888 ], [ 360063.287600003182888, 258249.205699998885393 ], [ 360064.844499997794628, 258255.76240000128746 ], [ 360086.41889999806881, 258278.94819999858737 ], [ 360093.632600001990795, 258284.073399998247623 ], [ 360107.300300002098083, 258288.8293999992311 ], [ 360120.984300002455711, 258291.685600001364946 ], [ 360137.913199998438358, 258292.246300000697374 ], [ 360142.758299998939037, 258291.441599998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904019400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91799758000001, "LATITUDE": 18.35377608, "OBJECTID_1": 5004, "PARCEL_NO_": "102904019400", "Tax_Legal_": "1-13 ST JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "DRACHENKO, ANDREY & IRINA", "Address": "7978 Foxmoor Dr", "City": "Dunn Loring", "State": "Virginia", "Zip": 22027, "Country": "United States", "Land_Value": 56900, "Improved_V": 266600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.20601975899999, "SHAPE_Area": 1506.5907024000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360184.051100000739098, 258271.725699998438358 ], [ 360155.300700001418591, 258238.98200000077486 ], [ 360150.435900002717972, 258242.108500000089407 ], [ 360135.880900003015995, 258246.8445999994874 ], [ 360142.758299998939037, 258291.441599998623133 ], [ 360148.411499999463558, 258290.432399999350309 ], [ 360163.776399999856949, 258285.280799999833107 ], [ 360171.065600000321865, 258281.540800001472235 ], [ 360184.051100000739098, 258271.725699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94192205, "LATITUDE": 18.35350633, "OBJECTID_1": 4278, "PARCEL_NO_": "102803020700", "Tax_Legal_": "SOLBERG 19M LITTLE NORTHSIDE QTR", "Name": "RITA RAMSAY REVOC TR", "Address": "PO Box 304798", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 126300, "Improved_V": 465800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.32712083799998, "SHAPE_Area": 3762.4340293099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357650.951800003647804, 258211.730099998414516 ], [ 357667.511399999260902, 258160.991999998688698 ], [ 357589.702600002288818, 258207.6402000002563 ], [ 357599.148199997842312, 258234.737500000745058 ], [ 357600.748199999332428, 258236.228199999779463 ], [ 357603.923100002110004, 258242.164799999445677 ], [ 357610.307099997997284, 258250.027499999850988 ], [ 357631.904899999499321, 258270.469300001859665 ], [ 357645.975400000810623, 258227.943500000983477 ], [ 357650.951800003647804, 258211.730099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704030100", "MAP": null, "PARCEL_NAM": "1BA", "ACRE": null, "LONGITUDE": -64.95598296, "LATITUDE": 18.3538789, "OBJECTID_1": 3528, "PARCEL_NO_": "102704030100", "Tax_Legal_": "BONNE RESOLUTION 1BA LITTLE NORTHSIDE QTR", "Name": "GORDON, ABASI ELROY", "Address": "PO Box 12154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.314106718900007, "SHAPE_Area": 254.28884374200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356133.779899999499321, 258257.785599999129772 ], [ 356157.321199998259544, 258239.402100000530481 ], [ 356133.153399996459484, 258236.67119999974966 ], [ 356133.779899999499321, 258257.785599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804020800", "MAP": "G9-476-T58", "PARCEL_NAM": "10E", "ACRE": null, "LONGITUDE": -64.93941514, "LATITUDE": 18.35365889, "OBJECTID_1": 4513, "PARCEL_NO_": "102804020800", "Tax_Legal_": "LERKENLUND 1OE GREAT NORTHSIDE QTR", "Name": "CARMEN V RUAN LIVING TRUST", "Address": "PO Box 10298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 161300, "Improved_V": 242500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 402.71418393499999, "SHAPE_Area": 5992.23511934 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357881.075199998915195, 258270.186599999666214 ], [ 357914.290500000119209, 258252.093299999833107 ], [ 357956.301399998366833, 258242.726799998432398 ], [ 357954.333800002932549, 258189.726199999451637 ], [ 357926.023000001907349, 258200.049199998378754 ], [ 357868.571599997580051, 258223.432599999010563 ], [ 357837.856200002133846, 258232.047100000083447 ], [ 357812.014700002968311, 258236.479699999094009 ], [ 357792.652400001883507, 258237.587799999862909 ], [ 357791.028999999165535, 258238.840999998152256 ], [ 357791.009199999272823, 258241.162900000810623 ], [ 357792.611000001430511, 258242.442600000649691 ], [ 357881.075199998915195, 258270.186599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95874482000001, "LATITUDE": 18.35376485, "OBJECTID_1": 3214, "PARCEL_NO_": "102703013600", "Tax_Legal_": "BONNE RESOLUTION 3F LITTLE NORTHSIDE", "Name": "CLEMENTS, TODD & CATHY", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 58400, "Improved_V": 335800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.98949312900001, "SHAPE_Area": 1856.03009363 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355879.289099998772144, 258220.027899999171495 ], [ 355851.100500002503395, 258215.997499998658895 ], [ 355838.235500000417233, 258211.670400001108646 ], [ 355827.80009999871254, 258206.096500001847744 ], [ 355814.107199996709824, 258204.295699998736382 ], [ 355822.829199999570847, 258221.67680000141263 ], [ 355834.686499997973442, 258249.638199999928474 ], [ 355879.863399997353554, 258247.263700000941753 ], [ 355879.289099998772144, 258220.027899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9093425, "LATITUDE": 18.35376491, "OBJECTID_1": 5639, "PARCEL_NO_": "103003013800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-15 GR NORTHSIDE QTR", "Name": "JOSEPH, SELVIN N", "Address": "PO Box 7981", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 381400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.98380562200001, "SHAPE_Area": 1296.21431811 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361091.955300003290176, 258279.578600000590086 ], [ 361088.906300000846386, 258258.866500001400709 ], [ 361053.471699997782707, 258253.510200001299381 ], [ 361048.484600000083447, 258270.990200001746416 ], [ 361044.38289999961853, 258279.189300000667572 ], [ 361087.005999997258186, 258292.625900000333786 ], [ 361088.629399999976158, 258291.372600000351667 ], [ 361093.505000002682209, 258286.979600001126528 ], [ 361091.955300003290176, 258279.578600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021400", "MAP": "D9-4003-T87", "PARCEL_NAM": "2AAA", "ACRE": ".54", "LONGITUDE": -64.95663137, "LATITUDE": 18.35355861, "OBJECTID_1": 3506, "PARCEL_NO_": "102704021400", "Tax_Legal_": "2AAA BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "CARCELLI, SHAWN", "Address": "PO Box 9318", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62400, "Improved_V": 295700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.11023997300001, "SHAPE_Area": 1905.6071304699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356091.590199999511242, 258193.478999998420477 ], [ 356091.003300003707409, 258167.720800001174212 ], [ 356050.351400002837181, 258206.86259999871254 ], [ 356047.878499999642372, 258208.2027000002563 ], [ 356047.891099996864796, 258211.697599999606609 ], [ 356049.488600000739098, 258233.018800001591444 ], [ 356091.262699998915195, 258231.912900000810623 ], [ 356091.442699998617172, 258210.787500001490116 ], [ 356091.478699997067451, 258206.565900001674891 ], [ 356091.590199999511242, 258193.478999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91575072000001, "LATITUDE": 18.35360678, "OBJECTID_1": 5733, "PARCEL_NO_": "103003021300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-36 GR NORTHSIDE", "Name": "LINDGREEN, CHARLES P", "Address": "82 Brook St", "City": "Franklin", "State": "Massachusetts", "Zip": 2038, "Country": "United States", "Land_Value": 54900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.47601906099999, "SHAPE_Area": 2735.48774568 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360433.457000002264977, 258243.791700001806021 ], [ 360408.725599996745586, 258212.558499999344349 ], [ 360395.684399999678135, 258228.916999999433756 ], [ 360389.196099996566772, 258233.296900000423193 ], [ 360348.795999996364117, 258242.887699998915195 ], [ 360385.528499998152256, 258285.195900000631809 ], [ 360433.457000002264977, 258243.791700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022500", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96422419, "LATITUDE": 18.35366657, "OBJECTID_1": 3277, "PARCEL_NO_": "102703022500", "Tax_Legal_": "LINDBERG BAY 46-9 SOUTHSIDE QTR.", "Name": "ASFOUR, DANEAL", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.918912812, "SHAPE_Area": 865.11110576800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355280.261900000274181, 258240.619899999350309 ], [ 355282.083099998533726, 258189.206199999898672 ], [ 355248.795900002121925, 258209.801399998366833 ], [ 355269.592799998819828, 258229.603300001472235 ], [ 355271.973899997770786, 258234.055799998342991 ], [ 355272.720899999141693, 258241.028000000864267 ], [ 355280.261900000274181, 258240.619899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93255262, "LATITUDE": 18.35362482, "OBJECTID_1": 4435, "PARCEL_NO_": "102804012000", "Tax_Legal_": "MISGUNST 13B GREAT NORTHSIDE QTR", "Name": "MICHAEL LEE FESHBACH & JULIE ALISA NOVICK", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040266, "Country": "United States", "Land_Value": 105500, "Improved_V": 673800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.56870635600001, "SHAPE_Area": 3872.7442987099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358579.967200003564358, 258219.110800001770258 ], [ 358574.639799997210503, 258248.522300001233816 ], [ 358596.375100001692772, 258264.219700001180172 ], [ 358622.688299998641014, 258260.7989999987185 ], [ 358653.599899999797344, 258267.432300001382828 ], [ 358657.813100002706051, 258246.146299999207258 ], [ 358634.86879999935627, 258194.451699998229742 ], [ 358622.6824000030756, 258205.117800001055002 ], [ 358608.104000002145767, 258212.597800001502037 ], [ 358579.967200003564358, 258219.110800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95275908000001, "LATITUDE": 18.35360111, "OBJECTID_1": 3468, "PARCEL_NO_": "102704014300", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 11HB LT.NORTHSIDE", "Name": "JOHN M. AND ANNA J. GREAUX REVOCABLE TRUST", "Address": "PO Box 303123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40300, "Improved_V": 203700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.750498072, "SHAPE_Area": 1817.6437925299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356511.511799998581409, 258216.547499999403954 ], [ 356484.334499999880791, 258188.460799999535084 ], [ 356451.088699996471405, 258210.142400000244379 ], [ 356483.827399998903275, 258247.984999999403954 ], [ 356505.800999999046326, 258224.311299998313189 ], [ 356511.511799998581409, 258216.547499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95336604000001, "LATITUDE": 18.3535342, "OBJECTID_1": 3456, "PARCEL_NO_": "102704012600", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 11-1A NO.3 LITTLE NORTHSIDE QTR", "Name": "CALLWOOD, ANGEL & FLORINE W.", "Address": "PO Box 11905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42500, "Improved_V": 303900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.57533680500001, "SHAPE_Area": 2245.8864070999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356449.467100001871586, 258211.184599999338388 ], [ 356435.262699998915195, 258174.760200001299381 ], [ 356415.817699998617172, 258185.578000001609325 ], [ 356397.206000000238419, 258193.236099999397993 ], [ 356392.715899996459484, 258247.028200000524521 ], [ 356405.686999998986721, 258238.901700001209974 ], [ 356449.467100001871586, 258211.184599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904011500", "MAP": "A9-25-T64", "PARCEL_NAM": "REM 1-31", "ACRE": "0.53", "LONGITUDE": -64.91674249, "LATITUDE": 18.35363802, "OBJECTID_1": 4934, "PARCEL_NO_": "102904011500", "Tax_Legal_": "1-31 REM. 2-35-B & 2-35-C ST. JOSEPH/ROSENDAHL", "Name": "WAX, RICHARD & CAROL H", "Address": "PO Box 11081", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.935062523, "SHAPE_Area": 2526.3145718699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360329.871299996972084, 258248.229499999433756 ], [ 360310.906499996781349, 258241.733199998736382 ], [ 360307.742399998009205, 258234.530099999159575 ], [ 360305.326999999582767, 258234.088100001215935 ], [ 360259.417499996721745, 258227.80180000141263 ], [ 360249.472099997103214, 258259.384399998933077 ], [ 360290.498700000345707, 258270.908100001513958 ], [ 360319.459399998188019, 258278.955600000917912 ], [ 360320.375399999320507, 258266.086399998515844 ], [ 360323.668999999761581, 258258.09180000051856 ], [ 360324.504100002348423, 258254.721200000494719 ], [ 360329.871299996972084, 258248.229499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803012200", "MAP": "C9-33-T59", "PARCEL_NAM": "19F", "ACRE": null, "LONGITUDE": -64.94288759, "LATITUDE": 18.35336909, "OBJECTID_1": 4193, "PARCEL_NO_": "102803012200", "Tax_Legal_": "SOLBERG 19F LITTLE NORTHSIDE QTR", "Name": "NORKAITIS, GARY & PAULA", "Address": "PO Box 308336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118400, "Improved_V": 499200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.808851979, "SHAPE_Area": 2743.9137756599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357532.874099999666214, 258252.560199998319149 ], [ 357546.181500002741814, 258204.961899999529123 ], [ 357554.487400002777576, 258176.532299999147654 ], [ 357537.579999998211861, 258173.4386 ], [ 357520.701399996876717, 258166.967700000852346 ], [ 357507.049800001084805, 258160.311999998986721 ], [ 357503.009199999272823, 258161.334399998188019 ], [ 357504.219099998474121, 258208.629299998283386 ], [ 357509.7787000015378, 258218.596200000494719 ], [ 357516.178900003433228, 258224.559200000017881 ], [ 357524.110799998044968, 258240.033900000154972 ], [ 357532.874099999666214, 258252.560199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003018700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91200091, "LATITUDE": 18.3536831, "OBJECTID_1": 5709, "PARCEL_NO_": "103003018700", "Tax_Legal_": "10-O ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "ANDERSON, LYNNE G", "Address": "153 N 51st St", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19139, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.50431177499999, "SHAPE_Area": 965.075269263 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360801.986699998378754, 258241.530600000172853 ], [ 360776.058799996972084, 258256.094900000840425 ], [ 360761.473300002515316, 258264.419300001114607 ], [ 360775.906000003218651, 258274.03660000115633 ], [ 360786.348499998450279, 258278.766100000590086 ], [ 360814.74210000038147, 258258.733500000089407 ], [ 360801.986699998378754, 258241.530600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021800", "MAP": "A3-45-T40", "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.937262, "LATITUDE": 18.3534669, "OBJECTID_1": 4522, "PARCEL_NO_": "102804021800", "Tax_Legal_": "ELIZABETH ESTATE 9 No.8 GREAT NORTHSIDE QTR", "Name": "BUCHAR FAMILY TRUST", "Address": "1866 Pampus Cir", "City": "Bolingbrook", "State": "Illinois", "Zip": 60490, "Country": "United States", "Land_Value": 142500, "Improved_V": 411000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.63376145399999, "SHAPE_Area": 3379.3849526200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358156.320900000631809, 258238.031100001186132 ], [ 358122.214100003242493, 258171.468600001186132 ], [ 358089.074299998581409, 258180.69649999961257 ], [ 358096.077600002288818, 258210.51799999922514 ], [ 358108.599200002849102, 258255.161299999803305 ], [ 358146.565999999642372, 258247.239399999380112 ], [ 358153.054300002753735, 258242.859499998390675 ], [ 358156.320900000631809, 258238.031100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91775073, "LATITUDE": 18.35356416, "OBJECTID_1": 4948, "PARCEL_NO_": "102904013100", "Tax_Legal_": "ST. JOSEPH & ROSENDAHL 1-13A GREAT NORTHSIDE QTR", "Name": "FAHIE, KYLE L &KALINA FAHIE THOMAS", "Address": "PO BOX 5503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71100, "Improved_V": 497600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.154213312, "SHAPE_Area": 1468.4654941 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360206.16499999910593, 258231.587799999862909 ], [ 360175.636600002646446, 258218.250100001692772 ], [ 360169.924099996685982, 258226.224899999797344 ], [ 360161.7871999964118, 258234.813200000673532 ], [ 360155.300700001418591, 258238.98200000077486 ], [ 360184.051100000739098, 258271.725699998438358 ], [ 360190.555500000715256, 258265.446100000292063 ], [ 360196.266199998557568, 258257.682399999350309 ], [ 360197.092299997806549, 258255.36710000038147 ], [ 360198.715700000524521, 258254.113800000399351 ], [ 360206.16499999910593, 258231.587799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93457678, "LATITUDE": 18.35359963, "OBJECTID_1": 4634, "PARCEL_NO_": "102804030800", "Tax_Legal_": "ELIZABETH 4 GREAT NORTHSIDE QTR", "Name": "HYMES, JAMES III & EULA", "Address": "421 Transit Ln", "City": "Hollidaysburg", "State": "Pennsylvania", "Zip": 16648, "Country": "United States", "Land_Value": 86700, "Improved_V": 488000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.70511274399999, "SHAPE_Area": 2350.73360938 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358432.351300001144409, 258208.415100000798702 ], [ 358370.987000003457069, 258217.834300000220537 ], [ 358373.186599999666214, 258243.605700001120567 ], [ 358376.377599999308586, 258247.642599999904633 ], [ 358389.228299997746944, 258253.658399999141693 ], [ 358403.729299999773502, 258255.254700001329184 ], [ 358435.265399999916553, 258244.958200000226498 ], [ 358432.351300001144409, 258208.415100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703017900", "MAP": "C9-284-T84", "PARCEL_NAM": "4-12", "ACRE": ".56", "LONGITUDE": -64.95988648, "LATITUDE": 18.35346787, "OBJECTID_1": 3255, "PARCEL_NO_": "102703017900", "Tax_Legal_": "4-12 BONNE RESOLUTION NO.5 LT NORTHSIDE QTR", "Name": "LEDEE, GERIANNE L.", "Address": "7489 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.82572234, "SHAPE_Area": 2244.0146389900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355751.603299997746944, 258158.187899999320507 ], [ 355701.331399999558926, 258190.707100000232458 ], [ 355710.651100002229214, 258232.579900000244379 ], [ 355751.995999999344349, 258206.74269999936223 ], [ 355750.480499997735023, 258195.331199999898672 ], [ 355752.992899999022484, 258184.374899998307228 ], [ 355753.953900001943111, 258166.228700000792742 ], [ 355751.603299997746944, 258158.187899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014900", "MAP": "D9-5447-93", "PARCEL_NAM": "4C-1", "ACRE": null, "LONGITUDE": -64.93570182000001, "LATITUDE": 18.35358603, "OBJECTID_1": 4464, "PARCEL_NO_": "102804014900", "Tax_Legal_": "No.4A,REM.4B,REM.4C,4C-1&4C ESTATE MISGUNST GT.NORTHSIDE QTR", "Name": "SEACLUSION, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 337500, "Improved_V": 1977800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.87722452899999, "SHAPE_Area": 2436.34812121 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358269.085900001227856, 258252.886199999600649 ], [ 358308.593400001525879, 258253.4206000007689 ], [ 358332.129399999976158, 258235.670299999415874 ], [ 358277.539300002157688, 258207.14809999987483 ], [ 358271.103100001811981, 258205.406599998474121 ], [ 358259.017499998211861, 258204.252300001680851 ], [ 358229.965000003576279, 258206.969799999147654 ], [ 358250.839199997484684, 258217.695300001651049 ], [ 358258.056500002741814, 258222.398400001227856 ], [ 358262.856600001454353, 258226.870700001716614 ], [ 358266.839599996805191, 258232.602800000458956 ], [ 358269.20099999755621, 258239.377099998295307 ], [ 358269.085900001227856, 258252.886199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90979246000001, "LATITUDE": 18.35364262, "OBJECTID_1": 5637, "PARCEL_NO_": "103003013700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-21 GT NORTHSIDE", "Name": "COLBOURNE, SANDRA", "Address": "6501 Estate Nazareth Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.753519896, "SHAPE_Area": 1013.41419619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361044.640000000596046, 258249.004999998956919 ], [ 361006.790100000798702, 258243.206799998879433 ], [ 360999.344499997794628, 258265.310699999332428 ], [ 361037.968299999833107, 258274.914900001138449 ], [ 361041.236800000071526, 258269.875399999320507 ], [ 361043.72580000013113, 258261.663100000470877 ], [ 361044.564499996602535, 258257.870299998670816 ], [ 361044.640000000596046, 258249.004999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003051700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91259852, "LATITUDE": 18.35334662, "OBJECTID_1": 5924, "PARCEL_NO_": "103003051700", "Tax_Legal_": "10 QST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "WHITE, WILLIAM A. & WILLIAM F", "Address": "PO Box 302581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33500, "Improved_V": 103400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.30793514199999, "SHAPE_Area": 1362.0018078000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360744.905799999833107, 258221.431699998676777 ], [ 360724.200599998235703, 258190.864700000733137 ], [ 360702.273699998855591, 258209.050400000065565 ], [ 360747.701200000941753, 258271.905900001525879 ], [ 360754.999399997293949, 258267.110500000417233 ], [ 360745.379399999976158, 258260.487900000065565 ], [ 360740.586499996483326, 258255.171300001442432 ], [ 360737.443999998271465, 258245.435300000011921 ], [ 360736.723999999463558, 258235.296900000423193 ], [ 360738.385099999606609, 258229.611000001430511 ], [ 360744.905799999833107, 258221.431699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94080135, "LATITUDE": 18.35359653, "OBJECTID_1": 4499, "PARCEL_NO_": "102804020200", "Tax_Legal_": "LERKENLUND 10N GR NORTHSIDE", "Name": "HORACE TURNBULL TRUST", "Address": "10 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103300, "Improved_V": 178700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.52647535899999, "SHAPE_Area": 1691.0935127800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357718.415899999439716, 258243.524099998176098 ], [ 357733.708800002932549, 258246.815600000321865 ], [ 357749.845899999141693, 258245.681099999696016 ], [ 357760.347699999809265, 258243.445099998265505 ], [ 357772.494599997997284, 258237.422800000756979 ], [ 357774.114399999380112, 258236.591699998825788 ], [ 357753.497299998998642, 258195.68189999833703 ], [ 357729.963200002908707, 258213.221099998801947 ], [ 357718.415899999439716, 258243.524099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704030100", "MAP": null, "PARCEL_NAM": "1BA", "ACRE": null, "LONGITUDE": -64.95582763, "LATITUDE": 18.35354678, "OBJECTID_1": 3528, "PARCEL_NO_": "102704030100", "Tax_Legal_": "BONNE RESOLUTION 1BA LITTLE NORTHSIDE QTR", "Name": "GORDON, ABASI ELROY", "Address": "PO Box 12154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.77390844300001, "SHAPE_Area": 2055.2536629900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356181.166400000452995, 258185.346200000494719 ], [ 356133.561599999666214, 258188.756299998611212 ], [ 356133.232500001788139, 258227.383699998259544 ], [ 356142.087600000202656, 258229.144900001585484 ], [ 356150.960600003600121, 258228.795299999415874 ], [ 356165.440099999308586, 258232.924600001424551 ], [ 356178.431000001728535, 258222.476300001144409 ], [ 356184.903099998831749, 258219.996100001037121 ], [ 356181.166400000452995, 258185.346200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703017200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95837149, "LATITUDE": 18.3531984, "OBJECTID_1": 3249, "PARCEL_NO_": "102703017200", "Tax_Legal_": "BONNE RESOLUTION 3H LT. NORTHSIDE", "Name": "CURRENCE, BANKS & MAYNARD", "Address": "PO Box 6143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 182700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.129766915, "SHAPE_Area": 3471.80824545 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355934.852700002491474, 258228.926399998366833 ], [ 355865.852600000798702, 258093.473000001162291 ], [ 355850.45889999717474, 258102.001800000667572 ], [ 355895.40990000218153, 258220.793200001120567 ], [ 355931.64360000193119, 258227.000300001353025 ], [ 355934.852700002491474, 258228.926399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021500", "MAP": null, "PARCEL_NAM": "1A", "ACRE": null, "LONGITUDE": -64.95617373, "LATITUDE": 18.35354806, "OBJECTID_1": 3507, "PARCEL_NO_": "102704021500", "Tax_Legal_": "BONNE RESOLUTION 1A", "Name": "DENISE D PAKER and DEONTE R PARKER-RIVERA", "Address": "PO BOX 10430", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 87600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.835649956, "SHAPE_Area": 854.95046258299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356133.561599999666214, 258188.756299998611212 ], [ 356112.583099998533726, 258190.273299999535084 ], [ 356111.704899996519089, 258198.709899999201298 ], [ 356107.601400002837181, 258207.120000001043081 ], [ 356105.119499996304512, 258214.488000001758337 ], [ 356105.906000003218651, 258216.816399998962879 ], [ 356110.70610000193119, 258221.288699999451637 ], [ 356114.7179000005126, 258223.6435999982059 ], [ 356133.232500001788139, 258227.383699998259544 ], [ 356133.561599999666214, 258188.756299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93415359, "LATITUDE": 18.35353017, "OBJECTID_1": 4635, "PARCEL_NO_": "102804030900", "Tax_Legal_": "ELIZABETH 33-1 GREAT NORTHSIDE QTR.", "Name": "HYMES, JAMES L. & EULA C", "Address": "PO Box 990", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56200, "Improved_V": 308900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.01089188399999, "SHAPE_Area": 1062.8615262000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358462.15429999679327, 258212.247600000351667 ], [ 358431.580899998545647, 258204.186999998986721 ], [ 358432.351300001144409, 258208.415100000798702 ], [ 358435.265399999916553, 258244.958200000226498 ], [ 358469.211499996483326, 258235.736800000071526 ], [ 358466.148100003600121, 258216.713300000876188 ], [ 358462.15429999679327, 258212.247600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.932052, "LATITUDE": 18.35311824, "OBJECTID_1": 4782, "PARCEL_NO_": "102903020100", "Tax_Legal_": "13 ESTATE MISGUNST No.6 GREAT NORTHSIDE QTR.", "Name": "MOOREHEAD, VALERIE", "Address": "Po Box 182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 156800, "Improved_V": 187800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.13968169499998, "SHAPE_Area": 2860.0778398100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358634.86879999935627, 258194.451699998229742 ], [ 358657.813100002706051, 258246.146299999207258 ], [ 358661.997500002384186, 258228.23759999871254 ], [ 358664.490099996328354, 258219.603199999779463 ], [ 358671.086300000548363, 258202.558600001037121 ], [ 358672.71509999781847, 258200.672100000083447 ], [ 358677.648299999535084, 258189.524500001221895 ], [ 358712.751299999654293, 258139.149399999529123 ], [ 358716.869099996984005, 258129.050599999725819 ], [ 358717.711400002241135, 258124.83559999987483 ], [ 358716.107799999415874, 258123.767000000923872 ], [ 358713.688900001347065, 258123.74720000103116 ], [ 358703.15820000320673, 258129.360500000417233 ], [ 358693.410599999129772, 258137.724500000476837 ], [ 358634.86879999935627, 258194.451699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91717956, "LATITUDE": 18.35328469, "OBJECTID_1": 4954, "PARCEL_NO_": "102904013900", "Tax_Legal_": "ST JOSEPH & ROSENHL 1-29 4 GR NORTHSIDE QTR", "Name": "WILLIAMS FAMILY REVOCABLE TRUST", "Address": "PO Box 304563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118100, "Improved_V": 274400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.41602466099999, "SHAPE_Area": 3682.9444825700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360275.228399999439716, 258170.302600000053644 ], [ 360235.728100001811981, 258168.923900000751019 ], [ 360206.778899997472763, 258254.179800000041723 ], [ 360217.293300002813339, 258250.4662000015378 ], [ 360239.013400003314018, 258256.55460000038147 ], [ 360249.472099997103214, 258259.384399998933077 ], [ 360259.417499996721745, 258227.80180000141263 ], [ 360275.971799999475479, 258177.697000000625849 ], [ 360275.228399999439716, 258170.302600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91525429, "LATITUDE": 18.35336847, "OBJECTID_1": 5732, "PARCEL_NO_": "103003021200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-29 GR NORTHSIDE", "Name": "LENNY KURT MICHAEL & LASCELLE F PHILLIP", "Address": "PO BOX 303922", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.60427297000001, "SHAPE_Area": 2250.2263470500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360408.725599996745586, 258212.558499999344349 ], [ 360433.457000002264977, 258243.791700001806021 ], [ 360446.223099999129772, 258259.728199999779463 ], [ 360450.297799997031689, 258254.695300001651049 ], [ 360458.476000003516674, 258241.252199999988079 ], [ 360465.799400001764297, 258233.5016999989748 ], [ 360473.140699997544289, 258223.640399999916553 ], [ 360480.50900000333786, 258210.612900000065565 ], [ 360482.134199999272823, 258209.148499999195337 ], [ 360484.616099998354912, 258201.780600000172853 ], [ 360483.014300003647804, 258200.500900000333786 ], [ 360464.42230000346899, 258205.837200000882149 ], [ 360458.778099998831749, 258205.791000001132488 ], [ 360451.539300002157688, 258203.620799999684095 ], [ 360446.703199997544289, 258203.370099999010563 ], [ 360423.300399996340275, 258205.500599998980761 ], [ 360416.831900000572205, 258207.558600001037121 ], [ 360408.725599996745586, 258212.558499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022500", "MAP": null, "PARCEL_NAM": "5-1", "ACRE": null, "LONGITUDE": -64.93516463, "LATITUDE": 18.35338218, "OBJECTID_1": 4529, "PARCEL_NO_": "102804022500", "Tax_Legal_": "ELIZABETH ESTATE 5-1 No.8 GREAT NORTHSIDE QTR", "Name": "MARECIC, VLADIMIR and MONIKA", "Address": "PO Box 1508", "City": "Mc Afee", "State": "New Jersey", "Zip": 7428, "Country": "United States", "Land_Value": 113700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.996372202, "SHAPE_Area": 2007.33141492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358355.143100000917912, 258184.562899999320507 ], [ 358351.714100003242493, 258172.1587999984622 ], [ 358323.251500003039837, 258192.368299998342991 ], [ 358316.613099999725819, 258192.461399998515844 ], [ 358315.357500001788139, 258215.937699999660254 ], [ 358322.588500000536442, 258219.760200001299381 ], [ 358365.134199999272823, 258242.273200001567602 ], [ 358362.171499997377396, 258211.429299999028444 ], [ 358355.143100000917912, 258184.562899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95884689, "LATITUDE": 18.35319399, "OBJECTID_1": 3215, "PARCEL_NO_": "102703013700", "Tax_Legal_": "3 REM ESTATE BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "LAPLACE, AGNES GERTRUDE & GENE ANTHONY", "Address": "4 Abc-3 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.80893187100003, "SHAPE_Area": 7404.5969576300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355895.40990000218153, 258220.793200001120567 ], [ 355850.45889999717474, 258102.001800000667572 ], [ 355837.494999997317791, 258109.283900000154972 ], [ 355785.644599996507168, 258137.779399998486042 ], [ 355782.999700002372265, 258139.821299999952316 ], [ 355785.576300002634525, 258145.800400000065565 ], [ 355814.107199996709824, 258204.295699998736382 ], [ 355827.80009999871254, 258206.096500001847744 ], [ 355838.235500000417233, 258211.670400001108646 ], [ 355851.100500002503395, 258215.997499998658895 ], [ 355879.289099998772144, 258220.027899999171495 ], [ 355895.40990000218153, 258220.793200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021900", "MAP": "D9-6629-T99", "PARCEL_NAM": "8-1", "ACRE": ".2128", "LONGITUDE": -64.93685069, "LATITUDE": 18.35343273, "OBJECTID_1": 4523, "PARCEL_NO_": "102804021900", "Tax_Legal_": "8 ESTATE ELIZABETH No.8i GREAT NORTHSIDE QTR.", "Name": "SILVANO, RICHARD & SUSAN", "Address": "4801 Woodway Dr", "City": "Houston", "State": "Texas", "Zip": 77056, "Country": "United States", "Land_Value": 159400, "Improved_V": 874400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.95443797600001, "SHAPE_Area": 963.01659672699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358198.722300000488758, 258195.5929000005126 ], [ 358183.762800000607967, 258199.145399998873472 ], [ 358170.340499997138977, 258196.045800000429153 ], [ 358140.552100002765656, 258207.256999999284744 ], [ 358156.320900000631809, 258238.031100001186132 ], [ 358173.456600002944469, 258214.317800000309944 ], [ 358177.52419999986887, 258210.129200000315905 ], [ 358188.065600000321865, 258203.249400001019239 ], [ 358196.956600002944469, 258200.789000000804663 ], [ 358198.722300000488758, 258195.5929000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91053161000001, "LATITUDE": 18.35340939, "OBJECTID_1": 5656, "PARCEL_NO_": "103003015100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-24 GT. NORTHSIDE", "Name": "HENRY, SLYVESTER & C", "Address": "PO Box 412", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 456200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.798168742, "SHAPE_Area": 1397.3999982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360938.906999997794628, 258260.594099998474121 ], [ 360970.648100003600121, 258226.234600000083447 ], [ 360965.178300000727177, 258205.713700000196695 ], [ 360957.880199998617172, 258210.509199999272823 ], [ 360944.111699998378754, 258217.573699999600649 ], [ 360916.600000001490116, 258228.747499998658895 ], [ 360938.906999997794628, 258260.594099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803012400", "MAP": "C9-33-T59", "PARCEL_NAM": "19H", "ACRE": null, "LONGITUDE": -64.94391572000001, "LATITUDE": 18.3533077, "OBJECTID_1": 4195, "PARCEL_NO_": "102803012400", "Tax_Legal_": "SOLBERG 19H LITTLE NORTHSIDE QTR", "Name": "GALIBER, RUDOLPH B. & MARTHA E.", "Address": "PO Box 10207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 124300, "Improved_V": 231200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.05675243299999, "SHAPE_Area": 4181.5718423799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357370.702100001275539, 258168.695300001651049 ], [ 357390.566799998283386, 258203.266100000590086 ], [ 357399.310300000011921, 258218.114199999719858 ], [ 357405.665500000119209, 258229.354200001806021 ], [ 357456.522600002586842, 258222.804400000721216 ], [ 357440.943000003695488, 258158.504399999976158 ], [ 357419.982400000095367, 258157.910700000822544 ], [ 357399.803000003099442, 258160.278599999845028 ], [ 357382.832699999213219, 258164.572700001299381 ], [ 357370.702100001275539, 258168.695300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90935198, "LATITUDE": 18.35348018, "OBJECTID_1": 5643, "PARCEL_NO_": "103003014000", "Tax_Legal_": "12A-14 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QUARTER", "Name": "JOHN BAPTISTE, HENDRIX, ANNETTE, ALVIN S. & ALAN T.", "Address": "PO Box 305343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27100, "Improved_V": 244700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.67763938100001, "SHAPE_Area": 1029.75549778 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361083.54619999974966, 258225.469799999147654 ], [ 361052.915299996733665, 258224.163699999451637 ], [ 361053.471699997782707, 258253.510200001299381 ], [ 361088.906300000846386, 258258.866500001400709 ], [ 361084.321999996900558, 258229.064800001680851 ], [ 361083.54619999974966, 258225.469799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95943193, "LATITUDE": 18.35329985, "OBJECTID_1": 3231, "PARCEL_NO_": "102703015300", "Tax_Legal_": "BONNE RESOLUTION 4-13 LT. NORTHSIDE", "Name": "JACOBS, NORA WILLIAMS", "Address": "PO Box 302490", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.50652016199999, "SHAPE_Area": 2242.7014882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355769.716899998486042, 258208.998700000345707 ], [ 355806.889799997210503, 258189.498399998992682 ], [ 355785.576300002634525, 258145.800400000065565 ], [ 355782.999700002372265, 258139.821299999952316 ], [ 355781.586099997162819, 258140.912599999457598 ], [ 355766.197800002992153, 258148.808200001716614 ], [ 355757.277999997138977, 258154.645799998193979 ], [ 355758.816899999976158, 258163.313200000673532 ], [ 355759.599799998104572, 258166.063900001347065 ], [ 355760.38459999859333, 258168.603399999439716 ], [ 355759.463200002908707, 258182.105900000780821 ], [ 355756.921999998390675, 258196.439399998635054 ], [ 355759.186300002038479, 258214.611999999731779 ], [ 355769.716899998486042, 258208.998700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022600", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9642787, "LATITUDE": 18.35335092, "OBJECTID_1": 3278, "PARCEL_NO_": "102703022600", "Tax_Legal_": "LINDBERG BAY 46-8 S S QTR", "Name": "REY, ELVIS", "Address": "106 Merlin Ct", "City": "Lake Frederick", "State": "Virginia", "Zip": 22630, "Country": "United States", "Land_Value": 34800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.75141447300001, "SHAPE_Area": 1534.5959115799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355282.083099998533726, 258189.206199999898672 ], [ 355283.65820000320673, 258144.740899998694658 ], [ 355271.926500000059605, 258144.973900001496077 ], [ 355269.44820000231266, 258151.919700000435114 ], [ 355262.896999999880791, 258163.687300000339746 ], [ 355261.275399997830391, 258164.729499999433756 ], [ 355249.045800000429153, 258180.461500000208616 ], [ 355244.171999998390675, 258184.643399998545647 ], [ 355241.71169999986887, 258189.478399999439716 ], [ 355240.853200003504753, 258195.593100000172853 ], [ 355242.411899998784065, 258201.938700001686811 ], [ 355248.795900002121925, 258209.801399998366833 ], [ 355282.083099998533726, 258189.206199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93377384, "LATITUDE": 18.35345783, "OBJECTID_1": 4636, "PARCEL_NO_": "102804031000", "Tax_Legal_": "33-2 ELIZABETH GREAT NORTHSIDE", "Name": "SIBILLY, JAMES M. & LINDA V.", "Address": "PO Box 306116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47200, "Improved_V": 245800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.797256026, "SHAPE_Area": 869.84483573600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358502.588600002229214, 258198.64640000090003 ], [ 358471.860600002110004, 258208.738499999046326 ], [ 358474.076300002634525, 258232.610199999064207 ], [ 358474.868199996650219, 258234.305399999022484 ], [ 358506.382799997925758, 258226.541799999773502 ], [ 358502.588600002229214, 258198.64640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704039900", "MAP": null, "PARCEL_NAM": "5-8", "ACRE": null, "LONGITUDE": -64.95420378, "LATITUDE": 18.35310556, "OBJECTID_1": 3544, "PARCEL_NO_": "102704039900", "Tax_Legal_": "LILLIENDAHL 5-3,5,7,8,9&25,47 MARIENHOJ", "Name": "VIETTE, ANDRE", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.64955729899998, "SHAPE_Area": 5267.4100058900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356301.863300003111362, 258215.675999999046326 ], [ 356314.821900002658367, 258209.027100000530481 ], [ 356327.769599996507168, 258203.64469999819994 ], [ 356368.182300001382828, 258192.576400000602007 ], [ 356352.732199996709824, 258113.078699998557568 ], [ 356345.45380000025034, 258115.552299998700619 ], [ 356332.547399997711182, 258116.079900000244379 ], [ 356316.455300003290176, 258111.937399998307228 ], [ 356301.938100002706051, 258112.240800000727177 ], [ 356301.863300003111362, 258215.675999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95252381, "LATITUDE": 18.35339346, "OBJECTID_1": 3477, "PARCEL_NO_": "102704015300", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 11HA LITTLE N.SIDE QTR", "Name": "MAGRAS URENA, DIANE J., LIA ORTIZ, ANTONIO URENA AND ALANA URENA", "Address": "PO Box 302053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24200, "Improved_V": 226600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.146548213, "SHAPE_Area": 944.73381932500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356524.637500002980232, 258190.268300000578165 ], [ 356507.848800003528595, 258173.243400000035763 ], [ 356484.334499999880791, 258188.460799999535084 ], [ 356511.511799998581409, 258216.547499999403954 ], [ 356513.145999997854233, 258214.027800001204014 ], [ 356518.824299998581409, 258210.063499998301268 ], [ 356522.083700001239777, 258206.0793999992311 ], [ 356523.750299997627735, 258199.760200001299381 ], [ 356524.637500002980232, 258190.268300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91460187, "LATITUDE": 18.35339532, "OBJECTID_1": 5731, "PARCEL_NO_": "103003021100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-28 GR NORTHSIDE", "Name": "BERRY, LAURA L.", "Address": "PO Box 72", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.81321364, "SHAPE_Area": 2458.8780457500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360551.743500001728535, 258211.283399999141693 ], [ 360490.222499996423721, 258206.259399998933077 ], [ 360484.483000002801418, 258217.400400001555681 ], [ 360482.857799999415874, 258218.864799998700619 ], [ 360472.230099998414516, 258235.876299999654293 ], [ 360495.553800001740456, 258243.033300001174212 ], [ 360546.231499999761581, 258247.874000001698732 ], [ 360551.743500001728535, 258211.283399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803012300", "MAP": "D9-7116-T002", "PARCEL_NAM": "19G", "ACRE": ".622", "LONGITUDE": -64.94340805, "LATITUDE": 18.35314898, "OBJECTID_1": 4194, "PARCEL_NO_": "102803012300", "Tax_Legal_": "19G ESTATE SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "DIANA LAPLACE LIVING TRUST", "Address": "6612 E Prescott Ct", "City": "ORANGE", "State": "California", "Zip": 92867, "Country": "United States", "Land_Value": 105300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.22278133399999, "SHAPE_Area": 2190.3684356600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357450.9358000010252, 258199.746500000357628 ], [ 357496.753700003027916, 258193.355500001460314 ], [ 357496.569499999284744, 258160.0152000002563 ], [ 357494.98929999768734, 258156.202500000596046 ], [ 357488.581900000572205, 258151.083799999207258 ], [ 357482.946699999272823, 258149.982299998402596 ], [ 357477.300800003111362, 258150.147100001573563 ], [ 357456.279100000858307, 258156.730099998414516 ], [ 357440.943000003695488, 258158.504399999976158 ], [ 357450.9358000010252, 258199.746500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91641044000001, "LATITUDE": 18.35318628, "OBJECTID_1": 4952, "PARCEL_NO_": "102904013700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-31-1&2-34 GR NORTHSIDE QTR", "Name": "PHILLIPS, TESROY E. SR.", "Address": "6544 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56600, "Improved_V": 40400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.420610592, "SHAPE_Area": 2432.01177392 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360339.45830000191927, 258203.125599998980761 ], [ 360346.302599996328354, 258156.952199999243021 ], [ 360332.532300002872944, 258164.227699998766184 ], [ 360317.170999996364117, 258168.95719999819994 ], [ 360312.318800002336502, 258170.606199998408556 ], [ 360309.892599999904633, 258171.430700000375509 ], [ 360305.326999999582767, 258234.088100001215935 ], [ 360307.742399998009205, 258234.530099999159575 ], [ 360310.906499996781349, 258241.733199998736382 ], [ 360332.651699997484684, 258244.866500001400709 ], [ 360339.45830000191927, 258203.125599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91602094, "LATITUDE": 18.35328489, "OBJECTID_1": 5734, "PARCEL_NO_": "103003021400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-35-A No.4 GREAT NORTHSIDE QTR.", "Name": "VARGAS, CELSO E. & JULIA E.", "Address": "PO Box 600101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67000, "Improved_V": 390000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.26529578500001, "SHAPE_Area": 2216.1002102299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360399.035499997437, 258214.167899999767542 ], [ 360384.773599997162819, 258184.498100001364946 ], [ 360339.45830000191927, 258203.125599998980761 ], [ 360332.651699997484684, 258244.866500001400709 ], [ 360335.903899997472763, 258241.726700000464916 ], [ 360347.244499996304512, 258235.697799999266863 ], [ 360387.63740000128746, 258226.951299998909235 ], [ 360390.878799997270107, 258225.078000001609325 ], [ 360399.035499997437, 258214.167899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9097587, "LATITUDE": 18.35340517, "OBJECTID_1": 5641, "PARCEL_NO_": "103003013900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-22 GREAT NORTHSIDE QTR", "Name": "EDWARDS, HENLEY & LORNA", "Address": "5010 Ridgehaven Dr", "City": "Houston", "State": "Texas", "Zip": 77053, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.220069258, "SHAPE_Area": 1070.2649430900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361044.121399998664856, 258215.22580000013113 ], [ 361006.167199999094009, 258221.670099999755621 ], [ 361006.790100000798702, 258243.206799998879433 ], [ 361044.640000000596046, 258249.004999998956919 ], [ 361045.619000002741814, 258228.747999999672174 ], [ 361044.121399998664856, 258215.22580000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704017600", "MAP": "D9-2013-T82", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95286159, "LATITUDE": 18.3532143, "OBJECTID_1": 3492, "PARCEL_NO_": "102704017600", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 11-1B NO.3 LITTLE NORTHSIDE QTR", "Name": "CALLWOOD, ANGEL & FLORINE (LIFE INTEREST)", "Address": "PO Box 11905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.69419542599999, "SHAPE_Area": 2703.40641327 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356507.848800003528595, 258173.243400000035763 ], [ 356496.860799998044968, 258137.900800000876188 ], [ 356478.241800002753735, 258146.403299998492002 ], [ 356435.262699998915195, 258174.760200001299381 ], [ 356449.467100001871586, 258211.184599999338388 ], [ 356451.088699996471405, 258210.142400000244379 ], [ 356484.334499999880791, 258188.460799999535084 ], [ 356507.848800003528595, 258173.243400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91896201, "LATITUDE": 18.35345666, "OBJECTID_1": 4958, "PARCEL_NO_": "102904014300", "Tax_Legal_": "ST JOSEPH & ROSEND 1 15A AHL GR NORTHSIDE QTR", "Name": "GJESSING, HELEN W", "Address": "100 Wake Robin Dr", "City": "Shelburne", "State": "Vermont", "Zip": 54827530, "Country": "United States", "Land_Value": 5400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.358917308599999, "SHAPE_Area": 163.73913595600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360066.622599996626377, 258236.356300000101328 ], [ 360045.813100002706051, 258218.032000001519918 ], [ 360044.139300003647804, 258225.19539999961853 ], [ 360060.946000002324581, 258240.109499998390675 ], [ 360066.622599996626377, 258236.356300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91870155, "LATITUDE": 18.35331564, "OBJECTID_1": 4957, "PARCEL_NO_": "102904014200", "Tax_Legal_": "1-15 ST JOSEPH AND ROSENDAHL GREAT NORTHSIDE QUARTER", "Name": "SHORTT, ELIZABETH HOTCHKISS (TRUSTEE)", "Address": "7408 Masoville Dr", "City": "Annandale", "State": "Virginia", "Zip": 22003, "Country": "United States", "Land_Value": 93400, "Improved_V": 410300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.70895712399999, "SHAPE_Area": 2948.1585729399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360139.188900001347065, 258237.161299999803305 ], [ 360055.074500001966953, 258172.089400000870228 ], [ 360045.813100002706051, 258218.032000001519918 ], [ 360066.622599996626377, 258236.356300000101328 ], [ 360069.046899996697903, 258235.742899999022484 ], [ 360077.124399997293949, 258234.120200000703335 ], [ 360118.197800002992153, 258240.155900001525879 ], [ 360130.292499996721745, 258240.254900000989437 ], [ 360139.188900001347065, 258237.161299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9336124, "LATITUDE": 18.35318548, "OBJECTID_1": 4637, "PARCEL_NO_": "102804031100", "Tax_Legal_": "25 ESTATE ELIZABETH No.8I GREAT NORTHSIDE QTR.", "Name": "MOOREHEAD, VALERIE", "Address": "Po Box 182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.861637505, "SHAPE_Area": 830.86319952099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358517.694499999284744, 258223.8902000002563 ], [ 358504.657899998128414, 258145.0456000007689 ], [ 358495.781300000846386, 258145.817299999296665 ], [ 358502.588600002229214, 258198.64640000090003 ], [ 358506.382799997925758, 258226.541799999773502 ], [ 358517.694499999284744, 258223.8902000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93327718, "LATITUDE": 18.3531388, "OBJECTID_1": 4638, "PARCEL_NO_": "102804031200", "Tax_Legal_": "19 ESTATE ELIZABETH No.8I GREAT NORTHSIDE QTR.", "Name": "MOORHEAD FAMILY LLC", "Address": "7A Crystal Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172800, "Improved_V": 342600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.11007784399999, "SHAPE_Area": 4496.1998175299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358504.657899998128414, 258145.0456000007689 ], [ 358517.694499999284744, 258223.8902000002563 ], [ 358556.472999997437, 258215.341600000858307 ], [ 358576.670400001108646, 258210.862900000065565 ], [ 358576.344200000166893, 258154.498199999332428 ], [ 358523.199500001966953, 258145.619500000029802 ], [ 358504.657899998128414, 258145.0456000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91827731, "LATITUDE": 18.35320088, "OBJECTID_1": 4956, "PARCEL_NO_": "102904014100", "Tax_Legal_": "ST. JOSEPH & ROSENDAHL 1-14 GREAT NORTHSIDE QTR", "Name": "FIGUEROA, IVAN E. & CHANTAL", "Address": "PO Box 396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 111000, "Improved_V": 317600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.371357698, "SHAPE_Area": 3468.7387465699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360139.188900001347065, 258237.161299999803305 ], [ 360145.650200001895428, 258235.947700001299381 ], [ 360152.133000001311302, 258232.2010000012815 ], [ 360159.436599999666214, 258226.772399999201298 ], [ 360165.955399997532368, 258218.804200001060963 ], [ 360172.530000001192093, 258204.292500000447035 ], [ 360175.058600001037121, 258191.436500001698732 ], [ 360055.074500001966953, 258172.089400000870228 ], [ 360139.188900001347065, 258237.161299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9356883, "LATITUDE": 18.35306755, "OBJECTID_1": 4528, "PARCEL_NO_": "102804022400", "Tax_Legal_": "ELIZABETH 6 GR NORTHSIDE", "Name": "LEDEE, JOSEPH & LUZ R(Life Estate)", "Address": "PO Box 1642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041642, "Country": "United States", "Land_Value": 115900, "Improved_V": 347900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.688105302, "SHAPE_Area": 2407.34500604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358316.613099999725819, 258192.461399998515844 ], [ 358283.564699999988079, 258162.445599999278784 ], [ 358314.353799998760223, 258145.17680000141263 ], [ 358266.869499996304512, 258134.444600000977516 ], [ 358264.394799999892712, 258140.968199998140335 ], [ 358260.5320999994874, 258156.960200000554323 ], [ 358265.85639999806881, 258158.712000001221895 ], [ 358259.23139999806881, 258179.133900001645088 ], [ 358282.535400003194809, 258188.612700000405312 ], [ 358279.276000000536442, 258192.596799999475479 ], [ 358279.230999998748302, 258197.873799998313189 ], [ 358284.05629999935627, 258199.390999998897314 ], [ 358315.357500001788139, 258215.937699999660254 ], [ 358316.613099999725819, 258192.461399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91675441, "LATITUDE": 18.35321308, "OBJECTID_1": 4953, "PARCEL_NO_": "102904013800", "Tax_Legal_": "JOSEPH & ROSENDAHL 1-30 GREAT NORTHSIDE QTR", "Name": "SUZANNE DARROW MAGRAS REVOCABLE FAMILY TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69600, "Improved_V": 229400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.58383877399999, "SHAPE_Area": 2222.0554093699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360309.892599999904633, 258171.430700000375509 ], [ 360294.533100001513958, 258175.949099998921156 ], [ 360275.971799999475479, 258177.697000000625849 ], [ 360259.417499996721745, 258227.80180000141263 ], [ 360305.326999999582767, 258234.088100001215935 ], [ 360309.892599999904633, 258171.430700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803042400", "MAP": "D9-114-T56", "PARCEL_NAM": "20-REM", "ACRE": null, "LONGITUDE": -64.9454989, "LATITUDE": 18.35324785, "OBJECTID_1": 4410, "PARCEL_NO_": "102803042400", "Tax_Legal_": "20 REMAINDER ESTATE SOLBERG #1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, CHRISTIAN G. & ERMIN S. (TRUSTEES)", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 100000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.09632087699998, "SHAPE_Area": 3543.4230726000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357300.164899997413158, 258190.076499998569489 ], [ 357275.63120000064373, 258151.278900001198053 ], [ 357273.34910000115633, 258147.268800001591444 ], [ 357261.968599997460842, 258153.873199999332428 ], [ 357257.794900000095367, 258156.735599998384714 ], [ 357252.235299997031689, 258160.548500001430511 ], [ 357244.924500003457069, 258166.82149999961257 ], [ 357228.731700003147125, 258174.499400001019239 ], [ 357218.222699999809265, 258177.579799998551607 ], [ 357192.41889999806881, 258177.579700000584126 ], [ 357192.37389999628067, 258182.856699999421835 ], [ 357192.312799997627735, 258190.033399999141693 ], [ 357193.902099996805191, 258192.790600001811981 ], [ 357197.908399999141693, 258195.7787000015378 ], [ 357241.348600000143051, 258207.95549999922514 ], [ 357251.823499999940395, 258208.885600000619888 ], [ 357259.094700001180172, 258207.256299998611212 ], [ 357264.751500003039837, 258205.824999999254942 ], [ 357282.558700002729893, 258197.949200000613928 ], [ 357300.164899997413158, 258190.076499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93460445, "LATITUDE": 18.35332349, "OBJECTID_1": 4633, "PARCEL_NO_": "102804030700", "Tax_Legal_": "ELIZABETH 26 GR N SIDE QTR", "Name": "HYMES, JAMES III & EULA", "Address": "421 Transit Ln", "City": "Hollidaysburg", "State": "Pennsylvania", "Zip": 16648, "Country": "United States", "Land_Value": 69800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.02470612100001, "SHAPE_Area": 1431.69936054 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358431.580899998545647, 258204.186999998986721 ], [ 358429.347199998795986, 258182.425999999046326 ], [ 358367.117299996316433, 258198.804200001060963 ], [ 358370.987000003457069, 258217.834300000220537 ], [ 358432.351300001144409, 258208.415100000798702 ], [ 358431.580899998545647, 258204.186999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904018100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91760036, "LATITUDE": 18.35318008, "OBJECTID_1": 4993, "PARCEL_NO_": "102904018100", "Tax_Legal_": "ST JOSEPH & ROSEDNAHL 1-12A GREAT NORTHSIDE QTR", "Name": "HALBERT, SAMUEL & SEDONIE (CO-TRUSTEES)", "Address": "PO Box 7516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81200, "Improved_V": 322800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.281881384, "SHAPE_Area": 1752.7945449199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360223.530900001525879, 258180.8564000017941 ], [ 360184.084499999880791, 258173.145300000905991 ], [ 360182.29389999806881, 258194.028900001198053 ], [ 360180.598499998450279, 258203.725299999117851 ], [ 360175.636600002646446, 258218.250100001692772 ], [ 360206.16499999910593, 258231.587799999862909 ], [ 360223.530900001525879, 258180.8564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94206065, "LATITUDE": 18.35310652, "OBJECTID_1": 4279, "PARCEL_NO_": "102803020800", "Tax_Legal_": "SOLBERG 19N LITTLE NORTHSIDE QTR", "Name": "MOORHEAD, JUSTIN & MARGRETTA", "Address": "281 Locust St", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19106, "Country": "United States", "Land_Value": 124300, "Improved_V": 134700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.93238393199999, "SHAPE_Area": 2843.4007453700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357667.511399999260902, 258160.991999998688698 ], [ 357599.133100003004074, 258141.856199998408556 ], [ 357577.857799999415874, 258178.201200000941753 ], [ 357583.428300000727177, 258186.901599999517202 ], [ 357583.412100002169609, 258188.801399998366833 ], [ 357589.702600002288818, 258207.6402000002563 ], [ 357667.511399999260902, 258160.991999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9307953, "LATITUDE": 18.35317904, "OBJECTID_1": 4912, "PARCEL_NO_": "102903040600", "Tax_Legal_": "1 ESTATE ZUFRIEDENHEIT No.5 GREAT NORTHSIDE QTR.", "Name": "BRYAN, PAUL & CARMEN", "Address": "1 ZUFRIEDENHEIT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89200, "Improved_V": 325600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.155669743, "SHAPE_Area": 2449.5398062600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358751.708499997854233, 258204.273899998515844 ], [ 358799.986599996685982, 258216.490299999713898 ], [ 358842.202500000596046, 258183.060899998992682 ], [ 358838.2212999984622, 258177.117600001394749 ], [ 358819.105400003492832, 258149.307900000363588 ], [ 358808.481299996376038, 258165.897399999201298 ], [ 358800.355200000107288, 258173.219099998474121 ], [ 358766.277900002896786, 258197.849300000816584 ], [ 358751.708499997854233, 258204.273899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022800", "MAP": "D9-366-T63", "PARCEL_NAM": "1B", "ACRE": null, "LONGITUDE": -64.95642247000001, "LATITUDE": 18.35334494, "OBJECTID_1": 3520, "PARCEL_NO_": "102704022800", "Tax_Legal_": "BONNE RESOLUTION 1B LITTLE NORTHSIDE QTR", "Name": "COLLEGE OF THE VIRGIN ISLANDS", "Address": "COLLEGE OF THE V I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 246100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.227411734499995, "SHAPE_Area": 145.35628610399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356091.590199999511242, 258193.478999998420477 ], [ 356103.693899996578693, 258192.522599998861551 ], [ 356102.113600000739098, 258188.71000000089407 ], [ 356100.511799998581409, 258187.430300001055002 ], [ 356099.730599999427795, 258184.468600001186132 ], [ 356095.74040000140667, 258179.580800000578165 ], [ 356091.003300003707409, 258167.720800001174212 ], [ 356091.590199999511242, 258193.478999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95180858000001, "LATITUDE": 18.35309851, "OBJECTID_1": 3469, "PARCEL_NO_": "102704014500", "Tax_Legal_": "LILLIENDAHL & MARIENHJ 2A GT. NORTHSIDE QTR.", "Name": "ERROL RAMPERSAD", "Address": "14428 Verano Dr", "City": "Orlando", "State": "Florida", "Zip": 32837, "Country": "United States", "Land_Value": 41600, "Improved_V": 294400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.27329495699999, "SHAPE_Area": 1231.45169248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356584.817100003361702, 258130.599199999123812 ], [ 356564.281700000166893, 258174.76069999858737 ], [ 356583.444399997591972, 258197.082400001585484 ], [ 356595.864600002765656, 258158.976100001484156 ], [ 356598.378799997270107, 258147.808699999004602 ], [ 356599.2533999979496, 258139.794300001114607 ], [ 356596.076700001955032, 258134.068799998611212 ], [ 356592.869499996304512, 258131.931600000709295 ], [ 356584.817100003361702, 258130.599199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95232211, "LATITUDE": 18.3531207, "OBJECTID_1": 3461, "PARCEL_NO_": "102704013400", "Tax_Legal_": "LILLDHL & MARHJ 11-4 LITTLE NORTHSIDE", "Name": "CORNELIUS, KORDA", "Address": "PO Box 502068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.883784967, "SHAPE_Area": 2474.9008404299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356507.848800003528595, 258173.243400000035763 ], [ 356524.637500002980232, 258190.268300000578165 ], [ 356531.035899996757507, 258196.442400000989437 ], [ 356560.176399998366833, 258183.381999999284744 ], [ 356564.281700000166893, 258174.76069999858737 ], [ 356528.346500001847744, 258133.514499999582767 ], [ 356511.403099998831749, 258134.642400000244379 ], [ 356496.860799998044968, 258137.900800000876188 ], [ 356507.848800003528595, 258173.243400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93412549, "LATITUDE": 18.35315122, "OBJECTID_1": 4641, "PARCEL_NO_": "102804031500", "Tax_Legal_": "33-3 & 33-4-1 ELIZABETH GREAT NORTHSIDE QTR", "Name": "CLARENCE B. JR AND BARBARA A. SUBER, TRUSTEES", "Address": "4361 Rota Cir", "City": "Fort Worth", "State": "Texas", "Zip": 76133, "Country": "United States", "Land_Value": 89200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.37442458699999, "SHAPE_Area": 1856.5359477300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358440.001900002360344, 258162.2483000010252 ], [ 358429.347199998795986, 258182.425999999046326 ], [ 358431.580899998545647, 258204.186999998986721 ], [ 358462.15429999679327, 258212.247600000351667 ], [ 358461.407300002872944, 258205.275400001555681 ], [ 358467.056900002062321, 258204.688400000333786 ], [ 358473.955099999904633, 258152.182599999010563 ], [ 358440.001900002360344, 258162.2483000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93269181, "LATITUDE": 18.35309149, "OBJECTID_1": 4809, "PARCEL_NO_": "102903022900", "Tax_Legal_": "41 ELIZABETH GREAT NORTHSIDE", "Name": "MOOREHEAD, CECILE O.", "Address": "PO Box 956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 84900, "Improved_V": 140500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.40474935200001, "SHAPE_Area": 2833.1867683300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358640.667599998414516, 258176.345100000500679 ], [ 358620.790299996733665, 258143.251899998635054 ], [ 358616.726400002837181, 258147.018300000578165 ], [ 358598.920999996364117, 258154.68299999833107 ], [ 358587.618199996650219, 258156.27930000051856 ], [ 358576.344200000166893, 258154.498199999332428 ], [ 358576.670400001108646, 258210.862900000065565 ], [ 358600.906499996781349, 258205.572799999266863 ], [ 358614.669600002467632, 258199.141600001603365 ], [ 358625.216399997472763, 258191.628499999642372 ], [ 358640.667599998414516, 258176.345100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704039900", "MAP": null, "PARCEL_NAM": "5-7", "ACRE": null, "LONGITUDE": -64.95370041, "LATITUDE": 18.35295825, "OBJECTID_1": 3544, "PARCEL_NO_": "102704039900", "Tax_Legal_": "LILLIENDAHL 5-3,5,7,8,9&25,47 MARIENHOJ", "Name": "VIETTE, ANDRE", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.581464762, "SHAPE_Area": 4060.8086017800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356416.712099999189377, 258175.241700001060963 ], [ 356394.822300001978874, 258094.424800001084805 ], [ 356372.175399996340275, 258102.472100000828505 ], [ 356352.732199996709824, 258113.078699998557568 ], [ 356368.182300001382828, 258192.576400000602007 ], [ 356392.429300002753735, 258186.019799999892712 ], [ 356416.712099999189377, 258175.241700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022800", "MAP": "D9-366-T63", "PARCEL_NAM": "1B", "ACRE": null, "LONGITUDE": -64.95595322, "LATITUDE": 18.35307651, "OBJECTID_1": 3520, "PARCEL_NO_": "102704022800", "Tax_Legal_": "BONNE RESOLUTION 1B LITTLE NORTHSIDE QTR", "Name": "COLLEGE OF THE VIRGIN ISLANDS", "Address": "COLLEGE OF THE V I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 246100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.97769189600001, "SHAPE_Area": 4506.2407357399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356181.166400000452995, 258185.346200000494719 ], [ 356173.743400000035763, 258110.136100001633167 ], [ 356168.081299997866154, 258112.200699999928474 ], [ 356159.159699998795986, 258118.249400001019239 ], [ 356152.694799996912479, 258119.885299999266863 ], [ 356145.459600001573563, 258117.292899999767542 ], [ 356142.264899998903275, 258113.678199999034405 ], [ 356139.885499998927116, 258109.014699999243021 ], [ 356130.847000002861023, 258128.783500000834465 ], [ 356121.885899998247623, 258139.475900001823902 ], [ 356117.829199999570847, 258142.397999998182058 ], [ 356108.040100000798702, 258155.616799999028444 ], [ 356101.499700002372265, 258166.117899999022484 ], [ 356101.481700003147125, 258168.228700000792742 ], [ 356103.839500002563, 258175.425200000405312 ], [ 356112.583099998533726, 258190.273299999535084 ], [ 356133.561599999666214, 258188.756299998611212 ], [ 356181.166400000452995, 258185.346200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9338165, "LATITUDE": 18.35311107, "OBJECTID_1": 4640, "PARCEL_NO_": "102804031400", "Tax_Legal_": "33-4 & 33-3-1 ELIZABETH GREAT NORTHSIDE QUARTER", "Name": "Gabriel, Keli C. & Derek A.", "Address": "PO Box 781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 54300, "Improved_V": 182700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.09553987499999, "SHAPE_Area": 1587.01414142 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358495.781300000846386, 258145.817299999296665 ], [ 358473.955099999904633, 258152.182599999010563 ], [ 358467.056900002062321, 258204.688400000333786 ], [ 358471.093800000846386, 258204.088199999183416 ], [ 358471.860600002110004, 258208.738499999046326 ], [ 358502.588600002229214, 258198.64640000090003 ], [ 358495.781300000846386, 258145.817299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803026100", "MAP": "D9-6210-T97", "PARCEL_NAM": "20-4", "ACRE": ".67", "LONGITUDE": -64.94493475, "LATITUDE": 18.35301891, "OBJECTID_1": 4330, "PARCEL_NO_": "102803026100", "Tax_Legal_": "20-3,20-4,20A&R.O.W. SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "WATSON, JUDITH A. & MICHAEL A", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 178000, "Improved_V": 607400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.990864405, "SHAPE_Area": 2343.95400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357337.350199997425079, 258173.438299998641014 ], [ 357339.623499996960163, 258164.114999998360872 ], [ 357321.458099998533726, 258125.860599998384714 ], [ 357308.10639999806881, 258133.35249999910593 ], [ 357275.63120000064373, 258151.278900001198053 ], [ 357300.164899997413158, 258190.076499998569489 ], [ 357333.554200001060963, 258175.146200001239777 ], [ 357337.350199997425079, 258173.438299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012000", "MAP": "D9-6145-T96", "PARCEL_NAM": "1-A", "ACRE": ".921", "LONGITUDE": -64.95081912000001, "LATITUDE": 18.35295197, "OBJECTID_1": 3450, "PARCEL_NO_": "102704012000", "Tax_Legal_": "LILLIENDAL & MARIENHOJ 1A 3 LITTLE NORTHSIDE", "Name": "ST ANDREWS EPISCOPAL CHURCH", "Address": "PO Box 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 173200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.41251977799999, "SHAPE_Area": 4277.49161542 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356680.529700003564358, 258185.988899998366833 ], [ 356762.866999998688698, 258120.857799999415874 ], [ 356696.957500003278255, 258124.128699999302626 ], [ 356686.462899997830391, 258125.520500000566244 ], [ 356644.459100000560284, 258134.042599998414516 ], [ 356616.204000003635883, 258137.82209999859333 ], [ 356650.679399996995926, 258161.113499999046326 ], [ 356663.497699998319149, 258170.928700000047684 ], [ 356680.529700003564358, 258185.988899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90939688, "LATITUDE": 18.35316363, "OBJECTID_1": 5653, "PARCEL_NO_": "103003014900", "Tax_Legal_": "ST JOSEPH & ROSENDHAL 12A-13 GR NORTHSIDE", "Name": "TODMAN, JUSTIN A. (LIFE INTEREST)", "Address": "PO Box 7951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 57000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.77828420899999, "SHAPE_Area": 1165.8251968300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361078.978100001811981, 258193.768399998545647 ], [ 361077.471400000154972, 258184.318199999630451 ], [ 361045.952600002288818, 258190.548599999397993 ], [ 361047.497699998319149, 258197.521600000560284 ], [ 361051.405199997127056, 258212.118999999016523 ], [ 361052.915299996733665, 258224.163699999451637 ], [ 361083.54619999974966, 258225.469799999147654 ], [ 361078.978100001811981, 258193.768399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022200", "MAP": "D9-6629-T99", "PARCEL_NAM": "7A", "ACRE": ".2754", "LONGITUDE": -64.93631297, "LATITUDE": 18.35317007, "OBJECTID_1": 4526, "PARCEL_NO_": "102804022200", "Tax_Legal_": "7A ESTATE ELIZABETH No.8i GREAT NORTHSIDE QTR.", "Name": "SILVANO, RICHARD & SUSAN", "Address": "4801 Woodway Dr", "City": "Houston", "State": "Texas", "Zip": 77056, "Country": "United States", "Land_Value": 75900, "Improved_V": 189700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.89876261200001, "SHAPE_Area": 1251.78802397 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358196.956600002944469, 258200.789000000804663 ], [ 358242.955899998545647, 258196.52140000090003 ], [ 358238.358999997377396, 258168.197299998253584 ], [ 358210.190200001001358, 258161.844999998807907 ], [ 358196.956600002944469, 258200.789000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003060800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9125923, "LATITUDE": 18.35295601, "OBJECTID_1": 5937, "PARCEL_NO_": "103003060800", "Tax_Legal_": "10S & 1/8 INT ROW 10 REM ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "WILLIE, ELIAS & CHERYL", "Address": "PO BOX 303133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41700, "Improved_V": 256900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.96448683899999, "SHAPE_Area": 1272.29919419 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360702.701700001955032, 258158.813700001686811 ], [ 360724.200599998235703, 258190.864700000733137 ], [ 360744.905799999833107, 258221.431699998676777 ], [ 360747.353500001132488, 258218.074200000613928 ], [ 360748.258699998259544, 258206.471500001847744 ], [ 360735.681400001049042, 258168.371700000017881 ], [ 360725.316200003027916, 258154.565799999982119 ], [ 360722.954800002276897, 258147.791499998420477 ], [ 360711.619699999690056, 258153.187100000679493 ], [ 360702.701700001955032, 258158.813700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91082553, "LATITUDE": 18.3531133, "OBJECTID_1": 5658, "PARCEL_NO_": "103003015200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-25 GREAT NORTHSIDE QTR", "Name": "HUNTE, ALLAN", "Address": "PO Box 10661", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 161100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.17241596299999, "SHAPE_Area": 1290.5121241899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360936.971799999475479, 258203.794100001454353 ], [ 360922.663099996745586, 258179.612399999052286 ], [ 360896.832400001585484, 258182.778400000184774 ], [ 360886.337700001895428, 258184.170200001448393 ], [ 360912.624200001358986, 258222.171100001782179 ], [ 360935.278200000524521, 258213.279500000178814 ], [ 360936.901600003242493, 258212.026200000196695 ], [ 360938.5574000030756, 258206.973499998450279 ], [ 360936.971799999475479, 258203.794100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90978918, "LATITUDE": 18.35312578, "OBJECTID_1": 5654, "PARCEL_NO_": "103003015000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-23 GR NORTHSIDE", "Name": "JOHN BAPTISTE, HENDRICKS &PHILBERT JOHN", "Address": "P.O.BOX 5343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.22283405100001, "SHAPE_Area": 1234.68235207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361006.167199999094009, 258221.670099999755621 ], [ 361044.121399998664856, 258215.22580000013113 ], [ 361041.029200002551079, 258199.579500000923872 ], [ 361034.008000001311302, 258171.86879999935627 ], [ 361003.938900001347065, 258199.276000000536442 ], [ 361006.167199999094009, 258221.670099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93536675, "LATITUDE": 18.35300345, "OBJECTID_1": 4530, "PARCEL_NO_": "102804022600", "Tax_Legal_": "ELIZABETH 5 REMAINDER& 5-1-A GR NORTHSIDE", "Name": "KLETZKY, GLENN", "Address": "13852 E Grand Ave", "City": "AURORA", "State": "Colorado", "Zip": 80015, "Country": "United States", "Land_Value": 89000, "Improved_V": 468000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.09893767899999, "SHAPE_Area": 2125.6255582499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358351.714100003242493, 258172.1587999984622 ], [ 358348.884999997913837, 258161.924699999392033 ], [ 358344.923500001430511, 258153.659600000828505 ], [ 358340.139600001275539, 258147.28770000115037 ], [ 358328.9375, 258137.063499998301268 ], [ 358314.353799998760223, 258145.17680000141263 ], [ 358283.564699999988079, 258162.445599999278784 ], [ 358316.613099999725819, 258192.461399998515844 ], [ 358323.251500003039837, 258192.368299998342991 ], [ 358351.714100003242493, 258172.1587999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93467449000001, "LATITUDE": 18.35303476, "OBJECTID_1": 4632, "PARCEL_NO_": "102804030600", "Tax_Legal_": "ELIZABETH 40 GR NORTHSIDE", "Name": "SUBER, CLARENCE B. JR. & BARBARA A. (TRUSTEES)", "Address": "4361 Rota Cir", "City": "Fort Worth", "State": "Texas", "Zip": 76133, "Country": "United States", "Land_Value": 129300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.38759923800001, "SHAPE_Area": 2863.90871182 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358400.753300003707409, 258131.318500000983477 ], [ 358357.711199998855591, 258167.063200000673532 ], [ 358367.117299996316433, 258198.804200001060963 ], [ 358429.347199998795986, 258182.425999999046326 ], [ 358440.001900002360344, 258162.2483000010252 ], [ 358431.935199998319149, 258162.604400001466274 ], [ 358414.225000001490116, 258159.081999998539686 ], [ 358411.032200001180172, 258155.25620000064373 ], [ 358400.753300003707409, 258131.318500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804028400", "MAP": "D9-4360-T88", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93590933, "LATITUDE": 18.35316392, "OBJECTID_1": 4603, "PARCEL_NO_": "102804028400", "Tax_Legal_": "ELIZABETH 7B & 6-2-A GT. NORTHSIDE QTR", "Name": "LAZARUS, RICHARD", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.40859387500001, "SHAPE_Area": 536.35100153400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358261.934799998998642, 258151.152800001204014 ], [ 358259.474200002849102, 258150.638199999928474 ], [ 358258.619300000369549, 258156.330800000578165 ], [ 358251.026299998164177, 258195.743099998682737 ], [ 358267.152500003576279, 258195.875100001692772 ], [ 358279.230999998748302, 258197.873799998313189 ], [ 358279.276000000536442, 258192.596799999475479 ], [ 358282.535400003194809, 258188.612700000405312 ], [ 358259.23139999806881, 258179.133900001645088 ], [ 358265.85639999806881, 258158.712000001221895 ], [ 358260.5320999994874, 258156.960200000554323 ], [ 358261.934799998998642, 258151.152800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804028400", "MAP": "D9-4314-T88", "PARCEL_NAM": "7B", "ACRE": null, "LONGITUDE": -64.93615159, "LATITUDE": 18.35297796, "OBJECTID_1": 4603, "PARCEL_NO_": "102804028400", "Tax_Legal_": "ELIZABETH 7B & 6-2-A GT. NORTHSIDE QTR", "Name": "LAZARUS, RICHARD", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.39711223899999, "SHAPE_Area": 1371.8729845099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358259.474200002849102, 258150.638199999928474 ], [ 358218.454800002276897, 258138.270199999213219 ], [ 358210.190200001001358, 258161.844999998807907 ], [ 358238.358999997377396, 258168.197299998253584 ], [ 358242.955899998545647, 258196.52140000090003 ], [ 358251.026299998164177, 258195.743099998682737 ], [ 358258.619300000369549, 258156.330800000578165 ], [ 358259.474200002849102, 258150.638199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9154986, "LATITUDE": 18.35303574, "OBJECTID_1": 5735, "PARCEL_NO_": "103003021500", "Tax_Legal_": "2-32 ST JOSEPH & ROSENDAHL No.4 NORTHSIDE QTR", "Name": "TURNER, JR., JOHN", "Address": "7410 Estate Bovoni Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 277900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.6713216, "SHAPE_Area": 1857.8984084399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360447.872800000011921, 258160.738800000399351 ], [ 360401.761900000274181, 258178.093199998140335 ], [ 360384.773599997162819, 258184.498100001364946 ], [ 360399.035499997437, 258214.167899999767542 ], [ 360407.165100000798702, 258206.4239999987185 ], [ 360415.269599996507168, 258201.635200001299381 ], [ 360424.162399999797344, 258198.963799998164177 ], [ 360445.144500002264977, 258197.024500001221895 ], [ 360448.378799997270107, 258195.99549999833107 ], [ 360450.025600001215935, 258191.998199999332428 ], [ 360450.973899997770786, 258175.329599998891354 ], [ 360447.872800000011921, 258160.738800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804020700", "MAP": "G9-479-T58", "PARCEL_NAM": "10B", "ACRE": null, "LONGITUDE": -64.93970673, "LATITUDE": 18.3530602, "OBJECTID_1": 4512, "PARCEL_NO_": "102804020700", "Tax_Legal_": "LERKENLUND 1OB GREAT NORTHSIDE QTR", "Name": "KYLE R. WALDNER and DAVID CATTIE", "Address": "PO Box 534", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 64200, "Improved_V": 282900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.1050592, "SHAPE_Area": 1806.2913683300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357882.767300002276897, 258191.180100001394749 ], [ 357885.97070000320673, 258148.481600001454353 ], [ 357838.570100001990795, 258148.248799998313189 ], [ 357839.06530000269413, 258184.771999999880791 ], [ 357851.154600001871586, 258185.504299998283386 ], [ 357874.492700003087521, 258190.972600001841784 ], [ 357882.767300002276897, 258191.180100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91450387, "LATITUDE": 18.35306228, "OBJECTID_1": 5737, "PARCEL_NO_": "103003021700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-27 No.4 GREAT NORTHSIDE QTR.", "Name": "EDWARDS, ALCEDE S. & PAULA N", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55800, "Improved_V": 563600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.094147026, "SHAPE_Area": 2296.0728005199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360557.928800001740456, 258170.223999999463558 ], [ 360509.892300002276897, 258169.056800000369549 ], [ 360488.687200002372265, 258197.169799998402596 ], [ 360490.280100002884865, 258199.504900000989437 ], [ 360490.222499996423721, 258206.259399998933077 ], [ 360551.743500001728535, 258211.283399999141693 ], [ 360557.928800001740456, 258170.223999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803042300", "MAP": "D9-6210-T97", "PARCEL_NAM": "20-A", "ACRE": null, "LONGITUDE": -64.94459817000001, "LATITUDE": 18.35256707, "OBJECTID_1": 4409, "PARCEL_NO_": "102803042300", "Tax_Legal_": "20-A ESTATE SOLBERG #1 LITTLE NORTHSIDE QTR", "Name": "WATSON, MICHAEL & JUDITH", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.53706342300001, "SHAPE_Area": 849.44566621000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357273.34910000115633, 258147.268800001591444 ], [ 357275.63120000064373, 258151.278900001198053 ], [ 357308.10639999806881, 258133.35249999910593 ], [ 357329.982900001108646, 258121.077100001275539 ], [ 357381.835100002586842, 258092.37049999833107 ], [ 357419.119699999690056, 258069.877599999308586 ], [ 357419.164599999785423, 258064.600600000470877 ], [ 357362.436800003051758, 258097.700199998915195 ], [ 357327.608900003135204, 258115.780299998819828 ], [ 357273.34910000115633, 258147.268800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "103003030400", "MAP": null, "PARCEL_NAM": "REM 4H", "ACRE": null, "LONGITUDE": -64.91368335, "LATITUDE": 18.35238349, "OBJECTID_1": 5800, "PARCEL_NO_": "103003030400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4H GR NORTHSIDE", "Name": "RAIMER, ALFRED", "Address": "PO Box 11908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 370400, "Improved_V": 76100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 692.46855347400003, "SHAPE_Area": 17497.314202099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360697.65259999781847, 258131.450899999588728 ], [ 360649.69990000128746, 258107.241700001060963 ], [ 360643.616626296949107, 258105.241965389053803 ], [ 360637.818228737742174, 258102.524660984694492 ], [ 360632.388994224311318, 258099.129286177951144 ], [ 360627.40784341446124, 258095.105196953081759 ], [ 360622.947183513606433, 258090.510888438264374 ], [ 360619.071855746209621, 258085.413144606369315 ], [ 360615.838192808150779, 258079.886067487008404 ], [ 360613.293200001120567, 258074.010000001639128 ], [ 360619.219899997115135, 257985.956500001251698 ], [ 360635.523199997842312, 257965.521600000560284 ], [ 360592.260600000619888, 257965.814599998295307 ], [ 360585.611299999058247, 257965.745200000703335 ], [ 360581.973600000143051, 257993.355900000780821 ], [ 360574.88849999755621, 258047.131000000983477 ], [ 360569.539499998092651, 258087.729699999094009 ], [ 360563.845799997448921, 258130.945199999958277 ], [ 360561.741599999368191, 258144.913699999451637 ], [ 360557.928800001740456, 258170.223999999463558 ], [ 360557.335400000214577, 258174.162999998778105 ], [ 360592.608000002801418, 258206.679699998348951 ], [ 360592.733000002801418, 258206.795000001788139 ], [ 360599.685699999332428, 258213.2043999992311 ], [ 360617.446699999272823, 258229.5777000002563 ], [ 360634.516500003635883, 258211.662300001829863 ], [ 360651.601899996399879, 258193.859099999070168 ], [ 360675.170199997723103, 258172.309399999678135 ], [ 360687.370899997651577, 258159.954700000584126 ], [ 360693.857400000095367, 258155.785999998450279 ], [ 360694.726700000464916, 258148.404800001531839 ], [ 360695.588699996471405, 258141.868000000715256 ], [ 360696.418399997055531, 258139.130499999970198 ], [ 360697.267899997532368, 258134.071199998259544 ], [ 360697.65259999781847, 258131.450899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95326008000001, "LATITUDE": 18.35276402, "OBJECTID_1": 3530, "PARCEL_NO_": "102704030600", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-6 LT.NORTHSIDE QTR", "Name": "VIETTE, CLAIRE", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75800, "Improved_V": 73300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.47690623699998, "SHAPE_Area": 4229.9965999899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356455.965400002896786, 258110.968299999833107 ], [ 356444.158399999141693, 258077.096700001507998 ], [ 356394.822300001978874, 258094.424800001084805 ], [ 356416.712099999189377, 258175.241700001060963 ], [ 356432.921099998056889, 258165.664099998772144 ], [ 356466.982199996709824, 258142.933600001037121 ], [ 356455.965400002896786, 258110.968299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91283888, "LATITUDE": 18.35299145, "OBJECTID_1": 5718, "PARCEL_NO_": "103003019700", "Tax_Legal_": "10R ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "PERCIVAL, VANDEL D.M.", "Address": "PO BOX 303479", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.24495839599999, "SHAPE_Area": 1133.06940975 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360702.701700001955032, 258158.813700001686811 ], [ 360691.346799999475479, 258166.531199999153614 ], [ 360679.963100001215935, 258177.625999998301268 ], [ 360702.273699998855591, 258209.050400000065565 ], [ 360724.200599998235703, 258190.864700000733137 ], [ 360702.701700001955032, 258158.813700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95203825, "LATITUDE": 18.35296008, "OBJECTID_1": 3451, "PARCEL_NO_": "102704012100", "Tax_Legal_": "LILLIENDAHL 2B LITTLE NORTHSIDE QTR", "Name": "HILLS, DOROTHY", "Address": "627 E 57th St", "City": "Brooklyn", "State": "New York", "Zip": 11234, "Country": "United States", "Land_Value": 41600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.95292384300001, "SHAPE_Area": 1216.97977515 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356528.346500001847744, 258133.514499999582767 ], [ 356564.281700000166893, 258174.76069999858737 ], [ 356584.817100003361702, 258130.599199999123812 ], [ 356528.346500001847744, 258133.514499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9160012, "LATITUDE": 18.352879, "OBJECTID_1": 5741, "PARCEL_NO_": "103003022100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-33 GR NORTHSIDE QTR", "Name": "HODGE, DARREN E. & VERNESTER", "Address": "PO Box 9934", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67000, "Improved_V": 652100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.06310984500001, "SHAPE_Area": 2390.7312501500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360401.761900000274181, 258178.093199998140335 ], [ 360388.265000000596046, 258153.284800000488758 ], [ 360373.977899998426437, 258126.570099998265505 ], [ 360369.881599999964237, 258134.135999999940395 ], [ 360363.357400000095367, 258142.737399999052286 ], [ 360354.412399999797344, 258151.530099999159575 ], [ 360346.302599996328354, 258156.952199999243021 ], [ 360339.45830000191927, 258203.125599998980761 ], [ 360384.773599997162819, 258184.498100001364946 ], [ 360401.761900000274181, 258178.093199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91050262, "LATITUDE": 18.35301291, "OBJECTID_1": 5662, "PARCEL_NO_": "103003015400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-26 GR NORTHSIDE QTR", "Name": "TURNBULL, THOMAS & BERNICE", "Address": "12A-26 EST.ROSENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27100, "Improved_V": 435200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.73436536400001, "SHAPE_Area": 983.62815055900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360977.542700000107288, 258174.15089999884367 ], [ 360937.997500002384186, 258178.049100000411272 ], [ 360922.663099996745586, 258179.612399999052286 ], [ 360936.971799999475479, 258203.794100001454353 ], [ 360942.639300003647804, 258201.0962999984622 ], [ 360943.425899997353554, 258203.424800001084805 ], [ 360945.02589999884367, 258204.915500000119209 ], [ 360949.856600001454353, 258205.799400001764297 ], [ 360957.961099997162819, 258201.010600000619888 ], [ 360977.542700000107288, 258174.15089999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803026100", "MAP": "D9-6210-T97", "PARCEL_NAM": "20-3", "ACRE": ".62", "LONGITUDE": -64.94457104, "LATITUDE": 18.35285667, "OBJECTID_1": 4330, "PARCEL_NO_": "102803026100", "Tax_Legal_": "20-3,20-4,20A&R.O.W. SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "WATSON, JUDITH A. & MICHAEL A", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 178000, "Improved_V": 607400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.45075358400001, "SHAPE_Area": 1673.27213072 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357360.619699999690056, 258162.968400001525879 ], [ 357361.962499998509884, 258151.613800000399351 ], [ 357365.209899999201298, 258143.848299998790026 ], [ 357382.741099998354912, 258133.422600001096725 ], [ 357372.835900001227856, 258127.916499998420477 ], [ 357334.543999999761581, 258118.552000001072884 ], [ 357329.982900001108646, 258121.077100001275539 ], [ 357321.458099998533726, 258125.860599998384714 ], [ 357339.623499996960163, 258164.114999998360872 ], [ 357337.350199997425079, 258173.438299998641014 ], [ 357342.871100001037121, 258170.954199999570847 ], [ 357360.619699999690056, 258162.968400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9384444, "LATITUDE": 18.35265079, "OBJECTID_1": 4534, "PARCEL_NO_": "102804023000", "Tax_Legal_": "21 ESTATE ELIZABETH No.8i GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. B. TRUST", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 168300, "Improved_V": 1035100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.75475320341999996, "SHAPE_Area": 0.02230724981 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357995.973499998450279, 258123.754299998283386 ], [ 357996.297899998724461, 258123.805399999022484 ], [ 357996.148900002241135, 258123.644400000572205 ], [ 357995.973499998450279, 258123.754299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91495623, "LATITUDE": 18.35287325, "OBJECTID_1": 5736, "PARCEL_NO_": "103003021600", "Tax_Legal_": "ST JOSEPH 7 ROSENDAHL 3-26 GR NORTHSIDE QTR", "Name": "ORAM, CHRISTINE & ERIC", "Address": "PO Box 9013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55800, "Improved_V": 321500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.40314365099999, "SHAPE_Area": 2509.45024999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360512.440700002014637, 258153.879000000655651 ], [ 360447.255300000309944, 258138.568900000303984 ], [ 360450.4121999964118, 258146.616300001740456 ], [ 360456.648699998855591, 258171.787500001490116 ], [ 360457.392099998891354, 258179.181800000369549 ], [ 360456.429300002753735, 258197.539099998772144 ], [ 360458.832099996507168, 258199.458599999547005 ], [ 360463.669900000095367, 258199.498199999332428 ], [ 360480.64750000089407, 258194.3597999997437 ], [ 360484.677199997007847, 258194.603900000452995 ], [ 360488.687200002372265, 258197.169799998402596 ], [ 360509.892300002276897, 258169.056800000369549 ], [ 360512.440700002014637, 258153.879000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022800", "MAP": "D9-366-T63", "PARCEL_NAM": "1B", "ACRE": null, "LONGITUDE": -64.95616198, "LATITUDE": 18.35245755, "OBJECTID_1": 3520, "PARCEL_NO_": "102704022800", "Tax_Legal_": "BONNE RESOLUTION 1B LITTLE NORTHSIDE QTR", "Name": "COLLEGE OF THE VIRGIN ISLANDS", "Address": "COLLEGE OF THE V I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 246100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 487.74691950499999, "SHAPE_Area": 5327.9205723799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356156.508100003004074, 258050.888900000602007 ], [ 356089.663199998438358, 258041.053700000047684 ], [ 356091.964199997484684, 258149.574599999934435 ], [ 356091.845499999821186, 258163.505800001323223 ], [ 356100.020199999213219, 258150.484900001436472 ], [ 356111.434399999678135, 258135.80180000141263 ], [ 356119.562299996614456, 258128.268899999558926 ], [ 356125.271200001239777, 258120.716299999505281 ], [ 356126.939599998295307, 258114.186000000685453 ], [ 356131.851199999451637, 258105.571400001645088 ], [ 356133.548299998044968, 258095.663899999111891 ], [ 356132.797700002789497, 258089.113800000399351 ], [ 356125.656000003218651, 258075.545400001108646 ], [ 356124.056000001728535, 258074.054699998348951 ], [ 356121.647799998521805, 258072.768399998545647 ], [ 356114.403599999845028, 258071.2314000017941 ], [ 356109.551299996674061, 258072.880499999970198 ], [ 356106.30629999935627, 258075.175900001078844 ], [ 356101.534999996423721, 258067.326400000602007 ], [ 356109.637599997222424, 258062.748700000345707 ], [ 356114.482699997723103, 258061.943999998271465 ], [ 356124.946800000965595, 258064.140599999576807 ], [ 356129.759499996900558, 258067.135299999266863 ], [ 356134.550599999725819, 258072.662900000810623 ], [ 356141.688699997961521, 258086.653499998152256 ], [ 356142.401500001549721, 258097.636199999600649 ], [ 356147.163900002837181, 258106.54109999909997 ], [ 356151.967600002884865, 258110.5912000015378 ], [ 356154.384700000286102, 258110.82209999859333 ], [ 356165.743199996650219, 258102.682399999350309 ], [ 356173.019799999892712, 258100.419900000095367 ], [ 356166.97749999910593, 258052.452199999243021 ], [ 356156.508100003004074, 258050.888900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803041000", "MAP": "D9-6151-T96", "PARCEL_NAM": "97-11", "ACRE": null, "LONGITUDE": -64.94558262, "LATITUDE": 18.35283033, "OBJECTID_1": 4400, "PARCEL_NO_": "102803041000", "Tax_Legal_": "SOLBERG 97-11 LT. NORTHSIDE QTR.", "Name": "BOSCHULTE, EVELYN", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 127500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.71811977099998, "SHAPE_Area": 3553.16534327 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357292.014300003647804, 258129.210099998861551 ], [ 357260.868400000035763, 258093.702500000596046 ], [ 357193.406800001859665, 258156.267299998551607 ], [ 357192.471100002527237, 258171.458399999886751 ], [ 357211.012599997222424, 258172.032400000840425 ], [ 357223.931599996984005, 258170.027199998497963 ], [ 357230.407300002872944, 258167.124899998307228 ], [ 357239.310900002717972, 258163.186900001019239 ], [ 357256.354900002479553, 258150.238600000739098 ], [ 357292.014300003647804, 258129.210099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94114639, "LATITUDE": 18.35303641, "OBJECTID_1": 4327, "PARCEL_NO_": "102803025800", "Tax_Legal_": "SOLBERG 55A-6 LT.NORTHSIDE QTR.", "Name": "LAPLACE, EDWARD", "Address": "55A-7 Solberg Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.804546545899996, "SHAPE_Area": 275.73565887000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357724.800899997353554, 258156.605799999088049 ], [ 357693.322400003671646, 258160.147799998521805 ], [ 357712.544399999082088, 258175.503899998962879 ], [ 357724.800899997353554, 258156.605799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904014600", "MAP": null, "PARCEL_NAM": "1-P", "ACRE": null, "LONGITUDE": -64.91840568000001, "LATITUDE": 18.35278072, "OBJECTID_1": 4961, "PARCEL_NO_": "102904014600", "Tax_Legal_": "REM 1-P ST. JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QUARTER.", "Name": "FIGUEROA, IVAN E. & CHANTAL R.", "Address": "PO Box 396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 146500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.250678913, "SHAPE_Area": 5989.7480550299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360178.036100000143051, 258142.525299999862909 ], [ 360144.737499997019768, 258147.927499998360872 ], [ 360096.660400003194809, 258117.967599999159575 ], [ 360066.880800001323223, 258111.391100000590086 ], [ 360055.074500001966953, 258172.089400000870228 ], [ 360175.058600001037121, 258191.436500001698732 ], [ 360178.036100000143051, 258142.525299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90946184000001, "LATITUDE": 18.35285248, "OBJECTID_1": 5690, "PARCEL_NO_": "103003016800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-12 GREAT NORTHSIDE QTR", "Name": "ROGERS (LIFE ESTATE), INGRID", "Address": "PO Box 307625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 144600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.99809515499999, "SHAPE_Area": 1070.1962103200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361073.619800001382828, 258160.160700000822544 ], [ 361071.292599998414516, 258149.375900000333786 ], [ 361038.274400003254414, 258163.023899998515844 ], [ 361042.062100000679493, 258172.990200001746416 ], [ 361045.952600002288818, 258190.548599999397993 ], [ 361077.471400000154972, 258184.318199999630451 ], [ 361073.619800001382828, 258160.160700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022000", "MAP": "D9-8389-T009", "PARCEL_NAM": "17", "ACRE": ".885", "LONGITUDE": -64.93672708, "LATITUDE": 18.35265767, "OBJECTID_1": 4524, "PARCEL_NO_": "102804022000", "Tax_Legal_": "ELIZABETH 17 GREAT NORTHSIDE QTR", "Name": "MAGARINE, RICHARD M. & LILLIAN", "Address": "6 Cliff Ct", "City": "Rocky Point", "State": "New York", "Zip": 11778, "Country": "United States", "Land_Value": 147100, "Improved_V": 300100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.42969183100001, "SHAPE_Area": 4225.9923050400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358168.902099996805191, 258086.357799999415874 ], [ 358133.678700000047684, 258150.875199999660254 ], [ 358122.214100003242493, 258171.468600001186132 ], [ 358139.188000001013279, 258166.752300001680851 ], [ 358220.931199997663498, 258131.535500001162291 ], [ 358229.204700000584126, 258106.905200000852346 ], [ 358183.383400000631809, 258090.276000000536442 ], [ 358168.902099996805191, 258086.357799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93044427, "LATITUDE": 18.35286437, "OBJECTID_1": 4913, "PARCEL_NO_": "102903040700", "Tax_Legal_": "2 ESTATE ZUFRIEDENHEIT No.5 GREAT NORTHSIDE QTR.", "Name": "GREAUX, LOUIS A", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.77084110800001, "SHAPE_Area": 1133.8339115199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358864.964500002563, 258161.50450000166893 ], [ 358848.256700001657009, 258134.981100000441074 ], [ 358832.925999999046326, 258136.12220000103116 ], [ 358822.373800002038479, 258144.268399998545647 ], [ 358819.105400003492832, 258149.307900000363588 ], [ 358838.2212999984622, 258177.117600001394749 ], [ 358864.964500002563, 258161.50450000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022800", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96451796, "LATITUDE": 18.35279701, "OBJECTID_1": 3279, "PARCEL_NO_": "102703022800", "Tax_Legal_": "46-6 ESTATE LINDBERG BAY SOUTHSIDE QTR", "Name": "BUDSAN, JASON & ALEXI", "Address": "PO Box 518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.375116623, "SHAPE_Area": 1339.36313468 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355244.173100002110004, 258089.862399999052286 ], [ 355227.348399996757507, 258077.059099998325109 ], [ 355229.978399999439716, 258146.952599998563528 ], [ 355261.501900002360344, 258138.133600000292063 ], [ 355261.519900001585484, 258136.022799998521805 ], [ 355257.571099996566772, 258126.280200000852346 ], [ 355256.784500002861023, 258123.951699998229742 ], [ 355255.198899999260902, 258120.772300001233816 ], [ 355252.821299999952316, 258115.897700000554323 ], [ 355251.2212999984622, 258114.407000001519918 ], [ 355249.633799999952316, 258111.438700001686811 ], [ 355248.850900001823902, 258108.688000001013279 ], [ 355244.068800002336502, 258102.105000000447035 ], [ 355242.524499997496605, 258094.070799998939037 ], [ 355242.542400002479553, 258091.96000000089407 ], [ 355244.173100002110004, 258089.862399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97014279, "LATITUDE": 18.35290509, "OBJECTID_1": 2696, "PARCEL_NO_": "102604020500", "Tax_Legal_": "LINDBERG BAY 44C S S QTR", "Name": "JACOBS, COURTNEY", "Address": "P.O. BOX 3949", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 94700, "Improved_V": 181600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.571090803, "SHAPE_Area": 2157.9749846099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354683.64919999986887, 258101.317899998277426 ], [ 354658.592399999499321, 258108.28999999910593 ], [ 354618.192299999296665, 258117.880800001323223 ], [ 354587.444499999284744, 258130.294700000435114 ], [ 354587.424699999392033, 258132.616599999368191 ], [ 354589.030100002884865, 258133.47410000115633 ], [ 354663.146200001239777, 258141.680100001394749 ], [ 354679.321000002324581, 258136.112900000065565 ], [ 354683.64919999986887, 258101.317899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022900", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96420533, "LATITUDE": 18.35279915, "OBJECTID_1": 3280, "PARCEL_NO_": "102703022900", "Tax_Legal_": "LINDBERG BAY 46-5 SOUTHSIDE QTR", "Name": "REY, ELVIS", "Address": "106 Merlin Ct", "City": "Lake Frederick", "State": "Virginia", "Zip": 22630, "Country": "United States", "Land_Value": 26700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.77234128200001, "SHAPE_Area": 881.56573809300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355283.65820000320673, 258144.740899998694658 ], [ 355285.201499998569489, 258101.17509999871254 ], [ 355280.359999999403954, 258101.557700000703335 ], [ 355267.473399996757507, 258099.763399999588728 ], [ 355251.37950000166893, 258095.831999998539686 ], [ 355259.336499996483326, 258108.351700000464916 ], [ 355268.836099997162819, 258129.116599999368191 ], [ 355271.976800002157688, 258139.063700001686811 ], [ 355271.926500000059605, 258144.973900001496077 ], [ 355283.65820000320673, 258144.740899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96905021000001, "LATITUDE": 18.3527512, "OBJECTID_1": 2698, "PARCEL_NO_": "102604020700", "Tax_Legal_": "LINDBERG BAY 43A-1 S S QTR", "Name": "PAUL, DOLENA", "Address": "PO BOX 306991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 269900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.72580880800001, "SHAPE_Area": 2189.9745875 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354778.295299999415874, 258065.995600000023842 ], [ 354745.002700001001358, 258093.165199998766184 ], [ 354735.757399998605251, 258137.208099998533726 ], [ 354746.225100003182888, 258138.982500001788139 ], [ 354757.52250000089407, 258138.019499998539686 ], [ 354767.225199997425079, 258134.932500001043081 ], [ 354781.809000000357628, 258126.819299999624491 ], [ 354778.295299999415874, 258065.995600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93491051, "LATITUDE": 18.35269965, "OBJECTID_1": 4631, "PARCEL_NO_": "102804030500", "Tax_Legal_": "20 ELIZABETH GREAT NORTHSIDE QUARTER", "Name": "BERRY, CLELY&PAUL(LIFE ESTATE)&CLARENCE,JR&BARBARA SUBER", "Address": "4361 Rota Cir", "City": "Fort Worth", "State": "Texas", "Zip": 76133, "Country": "United States", "Land_Value": 81100, "Improved_V": 242500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.46372620700001, "SHAPE_Area": 2061.0414989699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358380.060699999332428, 258099.274000000208616 ], [ 358368.695000000298023, 258108.258000001311302 ], [ 358337.034800000488758, 258133.118999999016523 ], [ 358342.628700003027916, 258139.075399998575449 ], [ 358353.787600003182888, 258154.365499999374151 ], [ 358357.732799999415874, 258164.530200000852346 ], [ 358357.711199998855591, 258167.063200000673532 ], [ 358400.753300003707409, 258131.318500000983477 ], [ 358395.989200003445148, 258122.624600000679493 ], [ 358384.82660000026226, 258107.756700001657009 ], [ 358380.060699999332428, 258099.274000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96930171, "LATITUDE": 18.3520794, "OBJECTID_1": 2697, "PARCEL_NO_": "102604020600", "Tax_Legal_": "LINDBERG BAY 43A S S QTR", "Name": "DIXON, MICHAEL", "Address": "P.O. BOX 3676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 144000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 485.022745676, "SHAPE_Area": 11675.971907700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354696.095600001513958, 257965.475499998778105 ], [ 354700.284400001168251, 258041.714600000530481 ], [ 354700.934199996292591, 258060.085099998861551 ], [ 354702.23759999871254, 258096.403799999505281 ], [ 354703.546300001442432, 258132.089299999177456 ], [ 354735.757399998605251, 258137.208099998533726 ], [ 354745.002700001001358, 258093.165199998766184 ], [ 354778.295299999415874, 258065.995600000023842 ], [ 354773.656300000846386, 257947.956300001591444 ], [ 354696.095600001513958, 257965.475499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022600", "MAP": "G9-441-T56", "PARCEL_NAM": "2AB", "ACRE": ".96", "LONGITUDE": -64.95679454, "LATITUDE": 18.3525208, "OBJECTID_1": 3518, "PARCEL_NO_": "102704022600", "Tax_Legal_": "BONNE RESOLUTION 2AB LITTLE NORTHSIDE QTR", "Name": "COLLEGE OF THE VIRGIN ISLANDS", "Address": "COLLEGE OF THE V I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 159000, "Improved_V": 387600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.32561486499998, "SHAPE_Area": 3960.93130733 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356056.66889999806881, 258030.698899999260902 ], [ 356033.912000000476837, 258078.815499998629093 ], [ 356034.568599998950958, 258132.708399999886751 ], [ 356036.465300001204014, 258133.077199999243021 ], [ 356049.346500001847744, 258135.504700001329184 ], [ 356050.050399996340275, 258147.54280000180006 ], [ 356056.499099999666214, 258147.806699998676777 ], [ 356072.175399996340275, 258148.588199999183416 ], [ 356075.033699996769428, 258148.730700001120567 ], [ 356075.352899998426437, 258038.6114999987185 ], [ 356063.897200003266335, 258036.620900001376867 ], [ 356056.66889999806881, 258030.698899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704023100", "MAP": "G9-441-T56", "PARCEL_NAM": "2CA", "ACRE": null, "LONGITUDE": -64.95693157, "LATITUDE": 18.35294643, "OBJECTID_1": 3523, "PARCEL_NO_": "102704023100", "Tax_Legal_": "BONNE RESOLUTION 2CA LITTLE NORTHSIDE QTR", "Name": "COLLEGE OF THE VIRGIN ISLANDS", "Address": "COLLEGE OF THE V I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.308026620900002, "SHAPE_Area": 193.96333701099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356036.465300001204014, 258133.077199999243021 ], [ 356034.568599998950958, 258132.708399999886751 ], [ 356034.73759999871254, 258146.573100000619888 ], [ 356050.050399996340275, 258147.54280000180006 ], [ 356049.346500001847744, 258135.504700001329184 ], [ 356036.465300001204014, 258133.077199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803020300", "MAP": "G9-2758-T78", "PARCEL_NAM": "REM 19-P", "ACRE": "0.79", "LONGITUDE": -64.94345263, "LATITUDE": 18.35278195, "OBJECTID_1": 4274, "PARCEL_NO_": "102803020300", "Tax_Legal_": "19P SOLBERG LITTLE NORTHSIDE QTR", "Name": "RICHARD L OBYMACHOW REVOCABLE LIVING TRUST", "Address": "2315 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 119500, "Improved_V": 591400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 419.630681955, "SHAPE_Area": 4793.0345040700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357472.534800000488758, 258141.66440000012517 ], [ 357484.636699996888638, 258140.919100001454353 ], [ 357493.488099999725819, 258143.102400001138449 ], [ 357517.575000002980232, 258155.331900000572205 ], [ 357528.021099999547005, 258159.639299999922514 ], [ 357547.857799999415874, 258122.156399998813868 ], [ 357513.847199998795986, 258119.635299999266863 ], [ 357513.86710000038147, 258117.304699998348951 ], [ 357514.035999998450279, 258114.497400000691414 ], [ 357514.214199997484684, 258111.535199999809265 ], [ 357475.480700001120567, 258110.103399999439716 ], [ 357456.128799997270107, 258114.995200000703335 ], [ 357415.380500003695488, 258125.718600001186132 ], [ 357406.579099997878075, 258128.034800000488758 ], [ 357389.997400000691414, 258137.456199999898672 ], [ 357369.304499998688698, 258149.213599998503923 ], [ 357365.149499997496605, 258161.070500001311302 ], [ 357372.450000002980232, 258158.408599998801947 ], [ 357374.828900001943111, 258157.54109999909997 ], [ 357386.952399998903275, 258154.262800000607967 ], [ 357398.267700001597404, 258151.188999999314547 ], [ 357415.218299999833107, 258149.21680000051856 ], [ 357447.478000000119209, 258148.636500000953674 ], [ 357452.334799997508526, 258147.80350000038743 ], [ 357453.920400001108646, 258147.531500000506639 ], [ 357460.398800000548363, 258146.420200001448393 ], [ 357472.534800000488758, 258141.66440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96970298, "LATITUDE": 18.35282911, "OBJECTID_1": 2751, "PARCEL_NO_": "102604026800", "Tax_Legal_": "LINDBERG BAY 44D S S QTR.", "Name": "JACOBS, CORDELL & ELAINE", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29300, "Improved_V": 163600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.788146365, "SHAPE_Area": 727.21189281199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354702.23759999871254, 258096.403799999505281 ], [ 354683.64919999986887, 258101.317899998277426 ], [ 354679.321000002324581, 258136.112900000065565 ], [ 354689.025499999523163, 258132.814899999648333 ], [ 354703.546300001442432, 258132.089299999177456 ], [ 354702.23759999871254, 258096.403799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021300", "MAP": "D9-2652-T84", "PARCEL_NAM": "81", "ACRE": null, "LONGITUDE": -64.94590925, "LATITUDE": 18.352221, "OBJECTID_1": 4284, "PARCEL_NO_": "102803021300", "Tax_Legal_": "SOLBERG 81 LITTLE NORTHSIDE", "Name": "BOSCHULTE, LIONEL T", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 216700, "Improved_V": 86800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 462.82949635300002, "SHAPE_Area": 9756.7652509399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357267.28660000115633, 258025.8445999994874 ], [ 357259.020400002598763, 258016.657900001853704 ], [ 357219.531800001859665, 258023.91440000012517 ], [ 357175.112700000405312, 258031.994600001722574 ], [ 357126.654799997806549, 258040.886100001633167 ], [ 357158.488300003111362, 258090.331500001251698 ], [ 357164.137900002300739, 258089.74439999833703 ], [ 357177.837999999523163, 258090.700899999588728 ], [ 357181.860600002110004, 258091.789299998432398 ], [ 357190.685099996626377, 258097.138900000602007 ], [ 357195.474399998784065, 258102.877599999308586 ], [ 357197.833999998867512, 258109.863000001758337 ], [ 357193.406800001859665, 258156.267299998551607 ], [ 357260.868400000035763, 258093.702500000596046 ], [ 357257.164099998772144, 258055.253199998289347 ], [ 357267.28660000115633, 258025.8445999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022300", "MAP": "F9-81-T57", "PARCEL_NAM": "2C", "ACRE": null, "LONGITUDE": -64.95716657, "LATITUDE": 18.35291278, "OBJECTID_1": 3515, "PARCEL_NO_": "102704022300", "Tax_Legal_": "BONNE RESOLUTION 2C LITTLE NORTHSIDE QTR", "Name": "COLLEGE OF THE VIRGIN ISLANDS", "Address": "COLLEGE OF THE V I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.46504096699999, "SHAPE_Area": 510.062692191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355996.019799999892712, 258126.153599999845028 ], [ 355993.340000003576279, 258125.697900000959635 ], [ 355996.17849999666214, 258129.370000001043081 ], [ 356003.35980000346899, 258138.294700000435114 ], [ 356004.967000000178814, 258138.941199999302626 ], [ 356007.360799998044968, 258141.91609999909997 ], [ 356016.199600003659725, 258145.576999999582767 ], [ 356034.73759999871254, 258146.573100000619888 ], [ 356034.568599998950958, 258132.708399999886751 ], [ 356005.820799998939037, 258127.820099998265505 ], [ 355996.019799999892712, 258126.153599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91750486, "LATITUDE": 18.35279317, "OBJECTID_1": 4955, "PARCEL_NO_": "102904014000", "Tax_Legal_": "ST JOSEPH&ROSENDAHL 1-12 GREAT NORTHSIDE QTR", "Name": "HALBERT, SAMUEL & SEDONIE (CO-TRUSTEES)", "Address": "PO Box 7516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.05588309199999, "SHAPE_Area": 1771.6034526799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360244.79169999808073, 258146.199999999254942 ], [ 360186.821699999272823, 258135.804099999368191 ], [ 360184.084499999880791, 258173.145300000905991 ], [ 360223.530900001525879, 258180.8564000017941 ], [ 360230.956699997186661, 258161.074400000274181 ], [ 360235.036799997091293, 258155.40819999948144 ], [ 360244.79169999808073, 258146.199999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91114854, "LATITUDE": 18.35275191, "OBJECTID_1": 5660, "PARCEL_NO_": "103003015300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-29 GR NORTHSIDE QTR", "Name": "FRANCIS, ADELLE B.", "Address": "PO Box 305525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.382555457, "SHAPE_Area": 1060.3922086699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360886.337700001895428, 258184.170200001448393 ], [ 360896.832400001585484, 258182.778400000184774 ], [ 360899.528200000524521, 258150.292100001126528 ], [ 360891.475900001823902, 258148.959600001573563 ], [ 360866.544900000095367, 258141.156199999153614 ], [ 360860.93129999935627, 258137.521699998527765 ], [ 360856.143799997866154, 258131.571899998933077 ], [ 360852.126599997282028, 258129.850299999117851 ], [ 360848.901399999856949, 258129.823899999260902 ], [ 360886.337700001895428, 258184.170200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604026500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97043065, "LATITUDE": 18.35274119, "OBJECTID_1": 2748, "PARCEL_NO_": "102604026500", "Tax_Legal_": "LINDBERG 44L S.S.QTR", "Name": "JACOBS, CLEVE ANDRE", "Address": "29648 Tomas Clle", "City": "Menifee", "State": "California", "Zip": 92586, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.43968777200001, "SHAPE_Area": 1358.84970866 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354660.262599997222424, 258101.548700001090765 ], [ 354661.914800003170967, 258096.918200001120567 ], [ 354624.097199998795986, 258087.320500001311302 ], [ 354564.07940000295639, 258127.992600001394749 ], [ 354564.849799998104572, 258132.22069999948144 ], [ 354568.883100003004074, 258132.042599998414516 ], [ 354570.508299998939037, 258130.578299999237061 ], [ 354606.110200002789497, 258116.304200001060963 ], [ 354660.262599997222424, 258101.548700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91080966, "LATITUDE": 18.35282012, "OBJECTID_1": 5664, "PARCEL_NO_": "103003015500", "Tax_Legal_": "12A-28 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QUARTER", "Name": "POWELL, THEODORE & SHIRLEY", "Address": "PO Box 307276", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28200, "Improved_V": 294600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.878043214, "SHAPE_Area": 1085.9232486000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360899.528200000524521, 258150.292100001126528 ], [ 360896.832400001585484, 258182.778400000184774 ], [ 360922.663099996745586, 258179.612399999052286 ], [ 360937.997500002384186, 258178.049100000411272 ], [ 360934.993400000035763, 258152.059999998658895 ], [ 360914.022100001573563, 258152.732799999415874 ], [ 360899.528200000524521, 258150.292100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803026000", "MAP": "D9-6210-T97", "PARCEL_NAM": "20-2", "ACRE": null, "LONGITUDE": -64.94420521000001, "LATITUDE": 18.35254152, "OBJECTID_1": 4329, "PARCEL_NO_": "102803026000", "Tax_Legal_": "SOLBERG 20-2 LT. NORTHSIDE QTR", "Name": "BOSCHULTE, LAWRENCE T", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 125300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.00475835, "SHAPE_Area": 2424.9208949700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357415.944399997591972, 258117.297899998724461 ], [ 357419.119699999690056, 258069.877599999308586 ], [ 357381.835100002586842, 258092.37049999833107 ], [ 357334.543999999761581, 258118.552000001072884 ], [ 357372.835900001227856, 258127.916499998420477 ], [ 357382.741099998354912, 258133.422600001096725 ], [ 357402.484600000083447, 258121.681200001388788 ], [ 357415.944399997591972, 258117.297899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91551937, "LATITUDE": 18.35269109, "OBJECTID_1": 5740, "PARCEL_NO_": "103003022000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-31 GT. NORTHSIDE QTR.", "Name": "AARON, CECIL M", "Address": "2039 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 226500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.628257765, "SHAPE_Area": 2206.3126433799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360427.343800000846386, 258109.486099999397993 ], [ 360388.265000000596046, 258153.284800000488758 ], [ 360401.761900000274181, 258178.093199998140335 ], [ 360447.872800000011921, 258160.738800000399351 ], [ 360440.030799999833107, 258134.710099998861551 ], [ 360427.343800000846386, 258109.486099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92962308, "LATITUDE": 18.35271721, "OBJECTID_1": 4918, "PARCEL_NO_": "102903041200", "Tax_Legal_": "ZUFRIENDENHEIT PCL B GT. NORTHSIDE QTR", "Name": "QUESTEL, JACQUES R", "Address": "PO Box 1526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.21935845900001, "SHAPE_Area": 1161.66561888 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358914.550599999725819, 258114.836500000208616 ], [ 358918.18469999730587, 258161.517900001257658 ], [ 358940.725500002503395, 258165.924300000071526 ], [ 358939.540899999439716, 258115.674300000071526 ], [ 358932.296599999070168, 258114.13740000128746 ], [ 358914.550599999725819, 258114.836500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95268432, "LATITUDE": 18.35268778, "OBJECTID_1": 3533, "PARCEL_NO_": "102704031200", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-4 & 53 LITTLE NORTHSIDE", "Name": "VIETTE, C. & A", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.69326458500001, "SHAPE_Area": 1996.19279768 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356524.471400000154972, 258115.117600001394749 ], [ 356511.778999999165535, 258090.526900000870228 ], [ 356455.965400002896786, 258110.968299999833107 ], [ 356466.982199996709824, 258142.933600001037121 ], [ 356475.092100001871586, 258137.511599998921156 ], [ 356484.810999996960163, 258132.524900000542402 ], [ 356495.327200002968311, 258128.60020000115037 ], [ 356508.251599997282028, 258125.96169999986887 ], [ 356529.228299997746944, 258124.655799999833107 ], [ 356524.471400000154972, 258115.117600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904014500", "MAP": "D9-6682-T99", "PARCEL_NAM": "17", "ACRE": "14.4", "LONGITUDE": -64.92209696, "LATITUDE": 18.35151688, "OBJECTID_1": 4960, "PARCEL_NO_": "102904014500", "Tax_Legal_": "17 ESTATE LOUISENHOJ No.5 GREAT NORTHSIDE QTR.", "Name": "LOUISENHOJ HOLDINGS LLC", "Address": "819 S Wabash Ave", "City": "Chicago", "State": "Illinois", "Zip": 60605, "Country": "United States", "Land_Value": 698000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1002.43627242, "SHAPE_Area": 61288.699304100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359556.546499997377396, 257910.686099998652935 ], [ 359589.134900003671646, 258060.829300001263618 ], [ 359606.821599997580051, 258067.09569999948144 ], [ 359632.587600000202656, 258071.528499998152256 ], [ 359643.820299997925758, 258078.164299998432398 ], [ 359694.963899999856949, 258132.622800000011921 ], [ 359706.189400002360344, 258140.103000000119209 ], [ 359713.426399998366833, 258142.484299998730421 ], [ 359824.573399998247623, 258157.959399998188019 ], [ 359833.417700000107288, 258160.987100001424551 ], [ 359841.428700000047684, 258167.174400001764297 ], [ 359845.431500002741814, 258170.584600001573563 ], [ 359857.247100003063679, 257919.480000000447035 ], [ 359848.39019999653101, 257917.929900001734495 ], [ 359828.288199998438358, 257911.221400000154972 ], [ 359798.576899997889996, 257896.6239 ], [ 359784.900100000202656, 257892.92339999973774 ], [ 359694.528399996459484, 257899.783100001513958 ], [ 359604.183600001037121, 257903.476599998772144 ], [ 359581.579899996519089, 257906.458000000566244 ], [ 359556.546499997377396, 257910.686099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022500", "MAP": null, "PARCEL_NAM": "2A", "ACRE": null, "LONGITUDE": -64.95719299, "LATITUDE": 18.35212056, "OBJECTID_1": 3517, "PARCEL_NO_": "102704022500", "Tax_Legal_": "BONNE RESOLUTION 2A & 2AB-1 LITTLE NORTHSIDE QTR", "Name": "RUSSELL CROWTHER REVOCABLE TRUST", "Address": "7910 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107000, "Improved_V": 259800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.95343469100001, "SHAPE_Area": 2152.7244240700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356033.912000000476837, 258078.815499998629093 ], [ 356033.795999996364117, 258069.296500001102686 ], [ 356035.872299998998642, 258013.382399998605251 ], [ 355990.520999997854233, 258036.231499999761581 ], [ 355992.625200003385544, 258073.190099999308586 ], [ 356000.690099999308586, 258073.045000001788139 ], [ 356009.548799999058247, 258074.38399999961257 ], [ 356023.25789999961853, 258074.285100001841784 ], [ 356026.476000003516674, 258075.155900001525879 ], [ 356029.683200001716614, 258077.293000001460314 ], [ 356032.073399998247623, 258080.690099999308586 ], [ 356032.856299996376038, 258083.440699998289347 ], [ 356033.912000000476837, 258078.815499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9302595, "LATITUDE": 18.35276311, "OBJECTID_1": 4914, "PARCEL_NO_": "102903040800", "Tax_Legal_": "3 ESTATE ZUFRIEDENHEIT No.5 GREAT NORTHSIDE QTR.", "Name": "GREAUX, LOUIS A", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.899608941799997, "SHAPE_Area": 303.30942748799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358870.043300002813339, 258133.259500000625849 ], [ 358848.256700001657009, 258134.981100000441074 ], [ 358864.964500002563, 258161.50450000166893 ], [ 358870.043300002813339, 258133.259500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92986888, "LATITUDE": 18.35271063, "OBJECTID_1": 4917, "PARCEL_NO_": "102903041100", "Tax_Legal_": "ZUFRIEDENHEIT PCL A ST. NORTHSIDE", "Name": "ALBERY, BRIAN E.", "Address": "5012 Foxborough Ct", "City": "Bettendorf", "State": "Iowa", "Zip": 52722, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.53456462899999, "SHAPE_Area": 1204.5585385300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358884.671999998390675, 258119.869300000369549 ], [ 358890.006899997591972, 258156.221000000834465 ], [ 358918.18469999730587, 258161.517900001257658 ], [ 358914.550599999725819, 258114.836500000208616 ], [ 358884.671999998390675, 258119.869300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015600", "MAP": "B9-334-T71", "PARCEL_NAM": "12A-27", "ACRE": ".283", "LONGITUDE": -64.91038844000001, "LATITUDE": 18.35277518, "OBJECTID_1": 5666, "PARCEL_NO_": "103003015600", "Tax_Legal_": "12A-27 ESTATE JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "TURNBULL, BERNICE A. & THOMAS E", "Address": "PO Box 9818", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.30254857599999, "SHAPE_Area": 1298.34096899 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360934.993400000035763, 258152.059999998658895 ], [ 360937.997500002384186, 258178.049100000411272 ], [ 360977.542700000107288, 258174.15089999884367 ], [ 360987.329999998211861, 258161.143199998885393 ], [ 360989.838799998164177, 258150.609099999070168 ], [ 360986.638700000941753, 258147.627599999308586 ], [ 360981.804499998688698, 258147.165800001472235 ], [ 360934.993400000035763, 258152.059999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96867925, "LATITUDE": 18.35201683, "OBJECTID_1": 2699, "PARCEL_NO_": "102604020800", "Tax_Legal_": "LINDBERG BAY 42A S S QTR", "Name": "JOSEPH, NATALIE & OTHERS", "Address": "PO Box 75", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 159600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 447.15646791500001, "SHAPE_Area": 8438.0188995400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354828.805200003087521, 258100.183899998664856 ], [ 354822.940200001001358, 257936.749499998986721 ], [ 354773.656300000846386, 257947.956300001591444 ], [ 354778.295299999415874, 258065.995600000023842 ], [ 354781.809000000357628, 258126.819299999624491 ], [ 354828.805200003087521, 258100.183899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031800", "MAP": "D9-3143-T85", "PARCEL_NAM": "39A", "ACRE": null, "LONGITUDE": -64.93438839, "LATITUDE": 18.35254998, "OBJECTID_1": 4644, "PARCEL_NO_": "102804031800", "Tax_Legal_": "39 ESTATE ELIZABETH GREAT NORTHSIDE", "Name": "KEYA GARNER & CURTIS GARNER REVOCABLE TRUST", "Address": "PO Box 306393", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 150700, "Improved_V": 241000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.28645409800001, "SHAPE_Area": 3791.4579179000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358462.104999996721745, 258123.376899998635054 ], [ 358416.607299998402596, 258068.753400001674891 ], [ 358384.128200002014637, 258095.085400000214577 ], [ 358389.693300001323223, 258104.419100001454353 ], [ 358401.662100002169609, 258119.293600000441074 ], [ 358413.526600003242493, 258146.410700000822544 ], [ 358417.497100003063679, 258153.620299998670816 ], [ 358432.793600000441074, 258156.489700000733137 ], [ 358440.053999997675419, 258156.127000000327826 ], [ 358452.989200003445148, 258152.222100000828505 ], [ 358462.104999996721745, 258123.376899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903016700", "MAP": "D9-7048-T002", "PARCEL_NAM": "7", "ACRE": "7.7", "LONGITUDE": -64.9270204, "LATITUDE": 18.35198365, "OBJECTID_1": 4781, "PARCEL_NO_": "102903016700", "Tax_Legal_": "7 ESTATE ZUFRIEDENHEIT No.5 GREAT NORTHSIDE QTR.", "Name": "WHITE BREEZE HOLDINGS LLC", "Address": "20 N Martingale Rd", "City": "Schaumburg", "State": "Illinois", "Zip": 60173, "Country": "United States", "Land_Value": 432700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 768.34543346600003, "SHAPE_Area": 30685.231716800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359213.980099998414516, 258137.523299999535084 ], [ 359215.965800002217293, 258134.401999998837709 ], [ 359227.370999999344349, 258120.774300001561642 ], [ 359233.868299998342991, 258115.339000001549721 ], [ 359297.865500003099442, 258080.821299999952316 ], [ 359314.900499999523163, 258068.928399998694658 ], [ 359323.04280000180006, 258059.706900000572205 ], [ 359336.949699997901917, 258036.389299999922514 ], [ 359340.275600001215935, 258024.595300000160933 ], [ 359342.028499998152256, 258008.144400000572205 ], [ 359339.706699997186661, 257996.726300001144409 ], [ 359332.579300001263618, 257981.469200000166893 ], [ 359188.181100003421307, 257988.309000000357628 ], [ 359172.844999998807907, 257990.083299998193979 ], [ 359123.60419999808073, 257996.224199999123812 ], [ 359125.103500001132488, 258009.535300001502037 ], [ 359129.529600001871586, 258057.912000000476837 ], [ 359073.0337999984622, 258063.782400000840425 ], [ 359074.452200002968311, 258086.592099998146296 ], [ 359079.648599997162819, 258139.196899998933077 ], [ 359104.656900003552437, 258137.9239999987185 ], [ 359118.355200000107288, 258139.091499999165535 ], [ 359128.014799997210503, 258141.07039999961853 ], [ 359166.908600002527237, 258156.247900001704693 ], [ 359170.639499999582767, 258151.737700000405312 ], [ 359174.131999999284744, 258148.245200000703335 ], [ 359178.894500002264977, 258144.435199998319149 ], [ 359183.021999999880791, 258141.895199999213219 ], [ 359187.943300001323223, 258139.513900000602007 ], [ 359193.658299997448921, 258138.085200000554323 ], [ 359199.055799998342991, 258136.815200001001358 ], [ 359205.723300002515316, 258136.338899999856949 ], [ 359213.980099998414516, 258137.523299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604026400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9708803, "LATITUDE": 18.35261187, "OBJECTID_1": 2747, "PARCEL_NO_": "102604026400", "Tax_Legal_": "LINDBERG BAY 44A&44H S S QTR", "Name": "ROWE, TERRY M.", "Address": "PO Box 303949", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.068739862, "SHAPE_Area": 2727.1491599000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354608.750299997627735, 258090.361299999058247 ], [ 354589.603799998760223, 258066.140000000596046 ], [ 354541.197999998927116, 258068.910199999809265 ], [ 354541.534999996423721, 258124.008400000631809 ], [ 354555.254900000989437, 258122.64299999922514 ], [ 354564.147699996829033, 258119.971599999815226 ], [ 354608.750299997627735, 258090.361299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91681525, "LATITUDE": 18.35267651, "OBJECTID_1": 4962, "PARCEL_NO_": "102904014700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-36 GR NORTHSIDE QTR", "Name": "ARNON L and DOREEN E LONDON (LIFE ESTATE)", "Address": "56 Larkin Ln", "City": "Garnerville", "State": "New York", "Zip": 109231529, "Country": "United States", "Land_Value": 62600, "Improved_V": 337000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.50263406800002, "SHAPE_Area": 1862.4950515200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360235.728100001811981, 258168.923900000751019 ], [ 360275.228399999439716, 258170.302600000053644 ], [ 360283.300499998033047, 258169.313200000673532 ], [ 360293.006800003349781, 258165.804099999368191 ], [ 360290.616700001060963, 258162.407000001519918 ], [ 360290.692199997603893, 258153.541700001806021 ], [ 360292.328199997544289, 258150.810899998992682 ], [ 360306.150600001215935, 258137.414000000804663 ], [ 360311.042400002479553, 258131.121300000697374 ], [ 360316.823299996554852, 258115.125500001013279 ], [ 360320.235500000417233, 258093.199700001627207 ], [ 360318.628300003707409, 258092.553199999034405 ], [ 360317.008500002324581, 258093.384300000965595 ], [ 360307.991599999368191, 258110.620200000703335 ], [ 360300.653800003230572, 258120.059399999678135 ], [ 360290.891800001263618, 258130.111999999731779 ], [ 360283.582800000905991, 258136.173900000751019 ], [ 360269.803599998354912, 258144.504799999296665 ], [ 360246.326999999582767, 258155.289500001817942 ], [ 360239.824400000274181, 258161.357999999076128 ], [ 360235.728100001811981, 258168.923900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022800", "MAP": "D9-8458-T010", "PARCEL_NAM": "1A-1", "ACRE": ".472", "LONGITUDE": -64.93916617, "LATITUDE": 18.35272009, "OBJECTID_1": 4532, "PARCEL_NO_": "102804022800", "Tax_Legal_": "1A ESTATE STABI&10Aa-1 LERKENLUN No.9A&9G GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. , TRUSTE", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 123300, "Improved_V": 72800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.286097052, "SHAPE_Area": 1157.86967759 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357926.368000000715256, 258104.268399998545647 ], [ 357907.829300001263618, 258106.230700001120567 ], [ 357903.076899997889996, 258148.565699998289347 ], [ 357931.294200003147125, 258149.218800000846386 ], [ 357950.2195999994874, 258149.544599998742342 ], [ 357927.648599997162819, 258130.766100000590086 ], [ 357926.368000000715256, 258104.268399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022100", "MAP": "G3-63-T51", "PARCEL_NAM": "23 A", "ACRE": null, "LONGITUDE": -64.93714807000001, "LATITUDE": 18.35260171, "OBJECTID_1": 4525, "PARCEL_NO_": "102804022100", "Tax_Legal_": "ELIZABETH 23A GREAT NORTHSIDE QTR", "Name": "MICHELE SHULTERBRANDT AGURKIS TRUST", "Address": "P.O. BOX 5325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.307920728, "SHAPE_Area": 1944.36075471 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358092.72580000013113, 258130.697200000286102 ], [ 358133.678700000047684, 258150.875199999660254 ], [ 358168.902099996805191, 258086.357799999415874 ], [ 358160.034500002861023, 258086.074099998921156 ], [ 358149.521899998188019, 258089.576699998229742 ], [ 358117.049999997019768, 258115.064300000667572 ], [ 358092.72580000013113, 258130.697200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803028900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94742391, "LATITUDE": 18.35260807, "OBJECTID_1": 4349, "PARCEL_NO_": "102803028900", "Tax_Legal_": "96A SOLBERG LITTLE NORTHSIDE QUARTER", "Name": "BOSCHULTE, CHRISTIAN G. & ERMIN S. (TRUSTEES)", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75800, "Improved_V": 317300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.682451001, "SHAPE_Area": 2807.6568702499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357061.883699998259544, 258071.597800001502037 ], [ 356998.606499999761581, 258116.254000000655651 ], [ 357063.716399997472763, 258140.429299999028444 ], [ 357070.960600003600121, 258141.966299999505281 ], [ 357080.638199999928474, 258141.834399998188019 ], [ 357061.883699998259544, 258071.597800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803033100", "MAP": "D9-2652-T84", "PARCEL_NAM": "105", "ACRE": "1.90", "LONGITUDE": -64.94690084, "LATITUDE": 18.3523619, "OBJECTID_1": 4385, "PARCEL_NO_": "102803033100", "Tax_Legal_": "105 SOLBERG NO.1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, LIONEL THEODORE", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 182600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.96480920300002, "SHAPE_Area": 5863.0499623599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357126.654799997806549, 258040.886100001633167 ], [ 357057.198600001633167, 258053.616500001400709 ], [ 357061.883699998259544, 258071.597800001502037 ], [ 357080.638199999928474, 258141.834399998188019 ], [ 357089.531000003218651, 258139.162999998778105 ], [ 357097.637299999594688, 258134.163100000470877 ], [ 357128.518100000917912, 258106.129299998283386 ], [ 357132.589199997484684, 258101.518500000238419 ], [ 357138.269400000572205, 258097.343199998140335 ], [ 357148.794600002467632, 258092.363099999725819 ], [ 357158.488300003111362, 258090.331500001251698 ], [ 357126.654799997806549, 258040.886100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91440662, "LATITUDE": 18.35266797, "OBJECTID_1": 5738, "PARCEL_NO_": "103003021800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-24 No.4 GREAT NORTHSIDE QTR.", "Name": "DUSSAULT, DENNIS A", "Address": "PO Box 307026", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 179300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.89515583900001, "SHAPE_Area": 2190.4407752500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360563.845799997448921, 258130.945199999958277 ], [ 360520.019400000572205, 258116.155200000852346 ], [ 360512.440700002014637, 258153.879000000655651 ], [ 360509.892300002276897, 258169.056800000369549 ], [ 360557.928800001740456, 258170.223999999463558 ], [ 360563.845799997448921, 258130.945199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022300", "MAP": "D9-4314-T88", "PARCEL_NAM": "7 REM", "ACRE": null, "LONGITUDE": -64.93611172, "LATITUDE": 18.35268045, "OBJECTID_1": 4527, "PARCEL_NO_": "102804022300", "Tax_Legal_": "7 REM & 6-2 REM ELIZABETH NO.8i GREAT NORTHSIDE QTR", "Name": "CONSTANTINOU, ANNA M", "Address": "PO Box 6424", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49000, "Improved_V": 295100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.066470786, "SHAPE_Area": 1287.53251146 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358260.347000002861023, 258142.834899999201298 ], [ 358264.589000001549721, 258118.171700000762939 ], [ 358253.322200000286102, 258115.546399999409914 ], [ 358229.204700000584126, 258106.905200000852346 ], [ 358220.931199997663498, 258131.535500001162291 ], [ 358218.454800002276897, 258138.270199999213219 ], [ 358259.474200002849102, 258150.638199999928474 ], [ 358260.347000002861023, 258142.834899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031900", "MAP": "D9-7626-T005", "PARCEL_NAM": "33-5 REM", "ACRE": ".56", "LONGITUDE": -64.93360902000001, "LATITUDE": 18.35239201, "OBJECTID_1": 4645, "PARCEL_NO_": "102804031900", "Tax_Legal_": "ELIZABETH 33-5 GT. NORTHSIDE", "Name": "VINCENT RICHARDS FAMILY TRUST", "Address": "PO Box 502936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 163900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.22245095599999, "SHAPE_Area": 2733.31845604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358465.596500001847744, 258112.722300000488758 ], [ 358534.504600003361702, 258120.5489999987185 ], [ 358560.692699998617172, 258098.641399998217821 ], [ 358489.92960000038147, 258075.475299999117851 ], [ 358491.603299997746944, 258068.311799999326468 ], [ 358482.696199998259544, 258072.671799998730421 ], [ 358478.662799999117851, 258072.849899999797344 ], [ 358465.596500001847744, 258112.722300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90954886, "LATITUDE": 18.35260103, "OBJECTID_1": 5686, "PARCEL_NO_": "103003016600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-11 GT. NORTHSIDE", "Name": "HODGE, JR., GEORGE H. & TROTMAN, NATALIE A.", "Address": "PO Box 10076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 173800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.39321567899999, "SHAPE_Area": 1030.7696124199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361071.292599998414516, 258149.375900000333786 ], [ 361069.001299999654293, 258134.369500000029802 ], [ 361047.336999997496605, 258121.737700000405312 ], [ 361027.73369999974966, 258151.130300000309944 ], [ 361030.940999999642372, 258153.267499998211861 ], [ 361038.118699997663498, 258162.614399999380112 ], [ 361038.274400003254414, 258163.023899998515844 ], [ 361071.292599998414516, 258149.375900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93087157, "LATITUDE": 18.35235423, "OBJECTID_1": 4716, "PARCEL_NO_": "102903010300", "Tax_Legal_": "27 ESTATE MAFOLIE GR NORTHSIDE QTR", "Name": "NEWLAND, APRIL M. & BYRON E", "Address": "PO Box 812", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 80100, "Improved_V": 583400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.543956038, "SHAPE_Area": 2397.4583873500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358807.775700002908707, 258154.07039999961853 ], [ 358819.747400000691414, 258073.952799998223782 ], [ 358807.683200001716614, 258070.265500001609325 ], [ 358798.020099997520447, 258068.708700001239777 ], [ 358769.804499998688698, 258067.844500001519918 ], [ 358762.558499999344349, 258066.5185999982059 ], [ 358807.775700002908707, 258154.07039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93050017, "LATITUDE": 18.35241743, "OBJECTID_1": 4725, "PARCEL_NO_": "102903011200", "Tax_Legal_": "MAFOLIE 28 GR NORTHSIDE", "Name": "Merle R, Hannah D, Faith A, & Carla M Lake", "Address": "PO Box 8686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 83400, "Improved_V": 337000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.08676087200001, "SHAPE_Area": 2366.6443322599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358819.747400000691414, 258073.952799998223782 ], [ 358807.775700002908707, 258154.07039999961853 ], [ 358814.328699998557568, 258142.091699998825788 ], [ 358819.213299997150898, 258136.643199998885393 ], [ 358824.896999999880791, 258132.045699998736382 ], [ 358834.615900002419949, 258127.059000000357628 ], [ 358858.875399999320507, 258119.024900000542402 ], [ 358867.262199997901917, 258081.096700001507998 ], [ 358854.355800002813339, 258081.624299999326468 ], [ 358843.886399999260902, 258080.061000000685453 ], [ 358835.83219999819994, 258078.939599998295307 ], [ 358819.747400000691414, 258073.952799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95742303, "LATITUDE": 18.35274411, "OBJECTID_1": 3514, "PARCEL_NO_": "102704022200", "Tax_Legal_": "BONNE RESOLUTION 2-AC LITTLE NORTHSIDE QTR", "Name": "YEE, DARLENE E. & KENSOON", "Address": "9663 Santa Monica Blvd", "City": "Beverly Hills", "State": "California", "Zip": 90210, "Country": "United States", "Land_Value": 98200, "Improved_V": 64900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.212746705599997, "SHAPE_Area": 54.438300595800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355993.417999997735023, 258114.821800000965595 ], [ 355986.64299999922514, 258112.826699998229742 ], [ 355985.01240000128746, 258114.924300000071526 ], [ 355993.340000003576279, 258125.697900000959635 ], [ 355993.417999997735023, 258114.821800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031300", "MAP": "D9-954-T71", "PARCEL_NAM": "43", "ACRE": null, "LONGITUDE": -64.93302162000001, "LATITUDE": 18.3526555, "OBJECTID_1": 4639, "PARCEL_NO_": "102804031300", "Tax_Legal_": "ELIZABETH 43 GR NORTHSIDE QTR", "Name": "VARLACK, LEON & MARY", "Address": "4865 W McEachern W D Dr", "City": "Powder Springs", "State": "Georgia", "Zip": 30127, "Country": "United States", "Land_Value": 109000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.68694894399999, "SHAPE_Area": 2988.4171636900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358511.963299997150898, 258139.405799999833107 ], [ 358524.05799999833107, 258139.504799999296665 ], [ 358566.727799996733665, 258147.453400000929832 ], [ 358587.670299999415874, 258150.157999999821186 ], [ 358597.35869999974966, 258148.75959999859333 ], [ 358607.874899998307228, 258144.834899999201298 ], [ 358612.737999998033047, 258141.919399999082088 ], [ 358622.487400002777576, 258133.344300001859665 ], [ 358560.692699998617172, 258098.641399998217821 ], [ 358511.963299997150898, 258139.405799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91626227, "LATITUDE": 18.35243316, "OBJECTID_1": 5742, "PARCEL_NO_": "103003022200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2 2 GR NORTHSIDE", "Name": "FARRELLY, RICHARD P. & DEBRA K", "Address": "PO Box 1197", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 115400, "Improved_V": 226900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.11379701200002, "SHAPE_Area": 3421.2794699199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360350.942199997603893, 258082.47749999910593 ], [ 360326.850500002503395, 258073.9386 ], [ 360326.777699999511242, 258082.487399999052286 ], [ 360326.581699997186661, 258105.495000001043081 ], [ 360324.058499999344349, 258117.717799998819828 ], [ 360318.290200002491474, 258132.236000001430511 ], [ 360313.378600001335144, 258140.850699998438358 ], [ 360297.927400000393391, 258156.134100001305342 ], [ 360297.895099997520447, 258159.933499999344349 ], [ 360300.295999996364117, 258162.064100001007318 ], [ 360314.012299999594688, 258161.120900001376867 ], [ 360330.986199997365475, 258156.404599998146296 ], [ 360341.513199999928474, 258151.21339999884367 ], [ 360353.690700002014637, 258141.602800000458956 ], [ 360363.465300001204014, 258130.072700001299381 ], [ 360369.215599998831749, 258117.665199998766184 ], [ 360375.826099999248981, 258098.932000000029802 ], [ 360378.053000003099442, 258092.086300000548363 ], [ 360350.942199997603893, 258082.47749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022200", "MAP": "F9-328-T58", "PARCEL_NAM": "2AC", "ACRE": "1.0", "LONGITUDE": -64.95766171, "LATITUDE": 18.3523996, "OBJECTID_1": 3514, "PARCEL_NO_": "102704022200", "Tax_Legal_": "BONNE RESOLUTION 2-AC LITTLE NORTHSIDE QTR", "Name": "YEE, DARLENE E. & KENSOON", "Address": "9663 Santa Monica Blvd", "City": "Beverly Hills", "State": "California", "Zip": 90210, "Country": "United States", "Land_Value": 98200, "Improved_V": 64900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.70193750499999, "SHAPE_Area": 2987.8175267500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355990.520999997854233, 258036.231499999761581 ], [ 355943.630800001323223, 258050.413100000470877 ], [ 355947.02759999781847, 258124.956999998539686 ], [ 355984.108999997377396, 258126.315900001674891 ], [ 355980.91610000282526, 258122.490100000053644 ], [ 355972.197700001299381, 258104.686900001019239 ], [ 355970.630000002682209, 258099.396699998527765 ], [ 355969.883000001311302, 258092.424499999731779 ], [ 355972.361299999058247, 258085.478700000792742 ], [ 355977.247699998319149, 258079.819200001657009 ], [ 355988.582900002598763, 258074.423500001430511 ], [ 355992.625200003385544, 258073.190099999308586 ], [ 355990.520999997854233, 258036.231499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604026600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96997376, "LATITUDE": 18.35253871, "OBJECTID_1": 2749, "PARCEL_NO_": "102604026600", "Tax_Legal_": "LINDBERG 44K SOUTHSIDE QTR.", "Name": "CAROL A JACOBS TRUST", "Address": "PO Box 303949", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.67782317300001, "SHAPE_Area": 1529.1425312199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354683.64919999986887, 258101.317899998277426 ], [ 354688.814400002360344, 258062.941199999302626 ], [ 354648.414200000464916, 258072.531899999827147 ], [ 354640.31870000064373, 258076.265299998223782 ], [ 354624.097199998795986, 258087.320500001311302 ], [ 354661.914800003170967, 258096.918200001120567 ], [ 354660.262599997222424, 258101.548700001090765 ], [ 354658.592399999499321, 258108.28999999910593 ], [ 354683.64919999986887, 258101.317899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803040100", "MAP": "D9-8075-T008", "PARCEL_NAM": "97-1 RECONF", "ACRE": ".575", "LONGITUDE": -64.94498626, "LATITUDE": 18.35252014, "OBJECTID_1": 4392, "PARCEL_NO_": "102803040100", "Tax_Legal_": "SOLBERG 97-1 LT. NORTHSIDE", "Name": "BOSCHULTE, EVELYN", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 100100, "Improved_V": 183800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.36650211099999, "SHAPE_Area": 1725.0759099300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357341.001900002360344, 258101.733300000429153 ], [ 357316.453599996864796, 258079.0636 ], [ 357270.211099997162819, 258104.353500001132488 ], [ 357292.014300003647804, 258129.210099998861551 ], [ 357316.327799998223782, 258114.843600001186132 ], [ 357341.001900002360344, 258101.733300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91571712, "LATITUDE": 18.35236421, "OBJECTID_1": 5743, "PARCEL_NO_": "103003022300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-30 GREAT NORTHSIDE QUARTER", "Name": "DECASTRO, SHANNIE M. & MCCLEAN, J", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58300, "Improved_V": 282400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.90248392000001, "SHAPE_Area": 2260.60703956 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360373.977899998426437, 258126.570099998265505 ], [ 360388.265000000596046, 258153.284800000488758 ], [ 360427.343800000846386, 258109.486099999397993 ], [ 360423.366200000047684, 258103.120799999684095 ], [ 360422.58500000089407, 258100.159099999815226 ], [ 360413.02080000191927, 258086.993000000715256 ], [ 360397.812299996614456, 258073.780699998140335 ], [ 360393.780799999833107, 258073.747699998319149 ], [ 360391.343900002539158, 258075.838700000196695 ], [ 360375.615699999034405, 258123.628199998289347 ], [ 360373.977899998426437, 258126.570099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91483691000001, "LATITUDE": 18.35249304, "OBJECTID_1": 5739, "PARCEL_NO_": "103003021900", "Tax_Legal_": "STJOSEPH&ROSENDAHL3-25 & 3-24-A GR NORTHSIDE", "Name": "VANBEVERHOUDT, ARNOLD & HELENA P.", "Address": "PO Box 56", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60200, "Improved_V": 501700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.942344926, "SHAPE_Area": 2346.47974226 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360447.255300000309944, 258138.568900000303984 ], [ 360512.440700002014637, 258153.879000000655651 ], [ 360520.019400000572205, 258116.155200000852346 ], [ 360517.616599999368191, 258114.235700000077486 ], [ 360514.378799997270107, 258115.686900001019239 ], [ 360508.824500001966953, 258105.086800001561642 ], [ 360510.446099996566772, 258104.044599998742342 ], [ 360510.473099999129772, 258100.878400001674891 ], [ 360504.917000003159046, 258090.48930000141263 ], [ 360502.505300000309944, 258089.625199999660254 ], [ 360500.88910000026226, 258090.034200001507998 ], [ 360491.940499998629093, 258099.249000001698732 ], [ 360484.592000000178814, 258109.954700000584126 ], [ 360479.709200002253056, 258115.19200000166893 ], [ 360469.970499999821186, 258122.500599998980761 ], [ 360445.680399999022484, 258134.122999999672174 ], [ 360447.255300000309944, 258138.568900000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704032800", "MAP": "G9-3065-T80", "PARCEL_NAM": "5-1", "ACRE": "0.75", "LONGITUDE": -64.95207415, "LATITUDE": 18.35252275, "OBJECTID_1": 3543, "PARCEL_NO_": "102704032800", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-1 GT. NORTHSIDE", "Name": "LAWRENCE AND LINDA BENJAMIN REVOCABLE TRUST", "Address": "PO Box 8738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65500, "Improved_V": 370000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.05657783699999, "SHAPE_Area": 2871.3125523499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356553.840300001204014, 258075.250199999660254 ], [ 356511.778999999165535, 258090.526900000870228 ], [ 356524.471400000154972, 258115.117600001394749 ], [ 356534.924699999392033, 258118.580699998885393 ], [ 356549.422100000083447, 258120.599199999123812 ], [ 356557.490599997341633, 258120.031899999827147 ], [ 356566.365500003099442, 258119.4712999984622 ], [ 356576.059199996292591, 258117.439699999988079 ], [ 356587.385300002992153, 258113.099399998784065 ], [ 356600.354699999094009, 258105.184000000357628 ], [ 356591.553599998354912, 258097.090399999171495 ], [ 356585.16780000180006, 258089.438799999654293 ], [ 356574.062799997627735, 258067.816399998962879 ], [ 356553.840300001204014, 258075.250199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903010800", "MAP": "D9-1767-T81", "PARCEL_NAM": "8C", "ACRE": ".09", "LONGITUDE": -64.92858101, "LATITUDE": 18.35252532, "OBJECTID_1": 4721, "PARCEL_NO_": "102903010800", "Tax_Legal_": "8A LOUISENHOJ GREAT NORTHSIDE QUARTER", "Name": "ASFOUR, IBRAHIM & ABLA (CO-TRUSTEES)", "Address": "5521 Curacao Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 115700, "Improved_V": 805600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.98809742399999, "SHAPE_Area": 559.89794203099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359041.494099996984005, 258074.5011 ], [ 359028.843699999153614, 258139.625500001013279 ], [ 359045.765500001609325, 258141.030499998480082 ], [ 359041.494099996984005, 258074.5011 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903010900", "MAP": "D9-1767-T81", "PARCEL_NAM": "9A", "ACRE": ".417", "LONGITUDE": -64.92838296, "LATITUDE": 18.35245282, "OBJECTID_1": 4722, "PARCEL_NO_": "102903010900", "Tax_Legal_": "LOUISENHOJ 9A & 8C GREAT NORTHSIDE", "Name": "FRANCIS EL HAJ LIV TR", "Address": "PO Box 12237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 116800, "Improved_V": 596800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.56584948899999, "SHAPE_Area": 1966.4894693700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359074.452200002968311, 258086.592099998146296 ], [ 359041.494099996984005, 258074.5011 ], [ 359045.765500001609325, 258141.030499998480082 ], [ 359079.648599997162819, 258139.196899998933077 ], [ 359074.452200002968311, 258086.592099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903010800", "MAP": "D9-1767-T81", "PARCEL_NAM": "8A", "ACRE": ".500", "LONGITUDE": -64.92877837, "LATITUDE": 18.35238838, "OBJECTID_1": 4721, "PARCEL_NO_": "102903010800", "Tax_Legal_": "8A LOUISENHOJ GREAT NORTHSIDE QUARTER", "Name": "ASFOUR, IBRAHIM & ABLA (CO-TRUSTEES)", "Address": "5521 Curacao Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 115700, "Improved_V": 805600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.377903347, "SHAPE_Area": 2289.6283200500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359041.494099996984005, 258074.5011 ], [ 359002.826999999582767, 258069.962799999862909 ], [ 359001.950599998235703, 258078.188299998641014 ], [ 358997.465899996459484, 258131.347100000828505 ], [ 359014.35530000180006, 258136.551600001752377 ], [ 359028.843699999153614, 258139.625500001013279 ], [ 359041.494099996984005, 258074.5011 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804037800", "MAP": "F9-3461-T76", "PARCEL_NAM": "18C", "ACRE": ".50", "LONGITUDE": -64.93529286, "LATITUDE": 18.35251146, "OBJECTID_1": 4661, "PARCEL_NO_": "102804037800", "Tax_Legal_": "18C ELIZABETH GREAT NORTHSIDE QUARTER", "Name": "CHONGASING, ELTON & BEVERLY (TRUSTEES)", "Address": "PO BOX 301763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.43615254599999, "SHAPE_Area": 1610.500028 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358368.695000000298023, 258108.258000001311302 ], [ 358305.957299999892712, 258089.590500000864267 ], [ 358299.258599996566772, 258118.666499998420477 ], [ 358312.940800003707409, 258121.733800001442432 ], [ 358321.790399998426437, 258124.128299999982119 ], [ 358337.034800000488758, 258133.118999999016523 ], [ 358368.695000000298023, 258108.258000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803024900", "MAP": "G9-2758-T78", "PARCEL_NAM": "19-Pa", "ACRE": "0.51", "LONGITUDE": -64.94326999, "LATITUDE": 18.35238406, "OBJECTID_1": 4318, "PARCEL_NO_": "102803024900", "Tax_Legal_": "SOLBERG 19PA LT NORTHSIDE", "Name": "STEWART , BENJAMIN P & ALLEE-JO T", "Address": "9160 Estate Thomas PMB 238", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023641, "Country": "United States", "Land_Value": 106100, "Improved_V": 320700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.04345911499999, "SHAPE_Area": 2424.61997763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357456.128799997270107, 258114.995200000703335 ], [ 357475.480700001120567, 258110.103399999439716 ], [ 357514.214199997484684, 258111.535199999809265 ], [ 357515.745899997651577, 258086.078299999237061 ], [ 357516.568099997937679, 258075.83049999922514 ], [ 357516.909699998795986, 258071.710200000554323 ], [ 357461.872599996626377, 258065.327399998903275 ], [ 357460.914499998092651, 258073.612100001424551 ], [ 357459.724799998104572, 258083.900199998170137 ], [ 357456.128799997270107, 258114.995200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93029203, "LATITUDE": 18.35265027, "OBJECTID_1": 4915, "PARCEL_NO_": "102903040900", "Tax_Legal_": "4 ESTATE ZUFRIEDENHEIT No.5 GREAT NORTHSIDE QTR.", "Name": "GREAUX, LOUIS A", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.713361266000007, "SHAPE_Area": 202.29111998900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358871.744099996984005, 258122.929900001734495 ], [ 358847.488200001418591, 258130.541799999773502 ], [ 358832.925999999046326, 258136.12220000103116 ], [ 358848.256700001657009, 258134.981100000441074 ], [ 358870.043300002813339, 258133.259500000625849 ], [ 358871.744099996984005, 258122.929900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604027300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96969126, "LATITUDE": 18.35251021, "OBJECTID_1": 2756, "PARCEL_NO_": "102604027300", "Tax_Legal_": "LINDBERG BAY 44E S. S. QTR", "Name": "JACOBS (TRUSTEE), CAROL A.", "Address": "PO Box 303949", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 417000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.74358544499999, "SHAPE_Area": 565.93858084299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354700.934199996292591, 258060.085099998861551 ], [ 354688.814400002360344, 258062.941199999302626 ], [ 354683.64919999986887, 258101.317899998277426 ], [ 354702.23759999871254, 258096.403799999505281 ], [ 354700.934199996292591, 258060.085099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904019800", "MAP": "D9-1499-T79", "PARCEL_NAM": "1-11A", "ACRE": "0.51", "LONGITUDE": -64.91756558, "LATITUDE": 18.3523369, "OBJECTID_1": 5008, "PARCEL_NO_": "102904019800", "Tax_Legal_": "1-11A ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR.", "Name": "BAIRD, GORDON & GERMAINE", "Address": "PO Box 10185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.66037414199999, "SHAPE_Area": 1916.4910973399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360230.342500001192093, 258098.233300000429153 ], [ 360201.052299998700619, 258074.492300000041723 ], [ 360194.547899998724461, 258080.771899998188019 ], [ 360188.059600003063679, 258085.151799999177456 ], [ 360183.97410000115633, 258091.451099999248981 ], [ 360186.821699999272823, 258135.804099999368191 ], [ 360205.939900003373623, 258139.232599999755621 ], [ 360230.342500001192093, 258098.233300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703034900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95755248, "LATITUDE": 18.35158746, "OBJECTID_1": 3336, "PARCEL_NO_": "102703034900", "Tax_Legal_": "CONTANT REM 108 7B SOUTHSIDE QTR", "Name": "HODGE, RHYS S", "Address": "PO Box 6520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 251100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1033.75197271, "SHAPE_Area": 27902.172787799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356106.246200002729893, 257987.571600001305342 ], [ 356061.137000001966953, 257887.355200000107288 ], [ 356046.885899998247623, 257856.4189000017941 ], [ 356004.698700003325939, 257886.471099998801947 ], [ 356007.880800001323223, 257891.563400000333786 ], [ 355892.805399999022484, 257958.593600001186132 ], [ 355892.781999997794628, 257961.337699998170137 ], [ 355894.392800003290176, 257961.561999998986721 ], [ 355953.375900000333786, 257947.69029999896884 ], [ 355962.238200001418591, 257948.607200000435114 ], [ 355967.054499998688698, 257951.179800000041723 ], [ 355971.057300001382828, 257954.589999999850988 ], [ 355973.447400003671646, 257957.987100001424551 ], [ 355975.022299997508526, 257962.43299999833107 ], [ 355974.142300002276897, 257971.080600000917912 ], [ 355970.850500002503395, 257978.864100001752377 ], [ 355965.980200000107288, 257982.6239 ], [ 355910.071299999952316, 258014.252599999308586 ], [ 355842.998199999332428, 258031.224399998784065 ], [ 355803.177799999713898, 258067.417599998414516 ], [ 355803.145400002598763, 258071.217099998146296 ], [ 355806.34009999781847, 258074.831799998879433 ], [ 355800.649099998176098, 258080.273699998855591 ], [ 355837.494999997317791, 258109.283900000154972 ], [ 355850.45889999717474, 258102.001800000667572 ], [ 355865.852600000798702, 258093.472899999469519 ], [ 355943.630800001323223, 258050.413100000470877 ], [ 355990.520999997854233, 258036.231499999761581 ], [ 356035.872299998998642, 258013.38230000063777 ], [ 356047.081500001251698, 258022.762200001627207 ], [ 356053.487099997699261, 258028.092000000178814 ], [ 356063.897200003266335, 258036.620900001376867 ], [ 356079.195600003004074, 258039.279199998825788 ], [ 356106.246200002729893, 257987.571600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022500", "MAP": null, "PARCEL_NAM": "2A", "ACRE": null, "LONGITUDE": -64.95725041, "LATITUDE": 18.35253786, "OBJECTID_1": 3517, "PARCEL_NO_": "102704022500", "Tax_Legal_": "BONNE RESOLUTION 2A & 2AB-1 LITTLE NORTHSIDE QTR", "Name": "RUSSELL CROWTHER REVOCABLE TRUST", "Address": "7910 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107000, "Improved_V": 259800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.128506192, "SHAPE_Area": 810.95177633599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355993.366800002753735, 258080.795499999076128 ], [ 355994.749300003051758, 258107.826799999922514 ], [ 356002.79619999974966, 258109.792500000447035 ], [ 356012.464800000190735, 258110.715999998152256 ], [ 356015.697200000286102, 258109.89809999987483 ], [ 356018.940399996936321, 258107.813700001686811 ], [ 356022.199799999594688, 258103.829599998891354 ], [ 356023.861000001430511, 258098.143699999898672 ], [ 356024.795000001788139, 258083.163699999451637 ], [ 356022.386900000274181, 258081.877399999648333 ], [ 356008.677799999713898, 258081.976300001144409 ], [ 355993.366800002753735, 258080.795499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96832058, "LATITUDE": 18.35187587, "OBJECTID_1": 2699, "PARCEL_NO_": "102604020800", "Tax_Legal_": "LINDBERG BAY 42A S S QTR", "Name": "JOSEPH, NATALIE & OTHERS", "Address": "PO Box 75", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 159600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.863550831, "SHAPE_Area": 4316.8076689500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354856.410499997437, 258078.033900000154972 ], [ 354849.60249999910593, 257930.634899999946356 ], [ 354822.940200001001358, 257936.749499998986721 ], [ 354828.805200003087521, 258100.183899998664856 ], [ 354839.353799998760223, 258092.459800001233816 ], [ 354856.410499997437, 258078.033900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90981215, "LATITUDE": 18.35246971, "OBJECTID_1": 5682, "PARCEL_NO_": "103003016400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-10 GR NORTHSIDE", "Name": "ZEPHIR TAYLOR LIVING REVOCABLE TRUST", "Address": "PO BOX 10615", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26100, "Improved_V": 197400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.14784747600001, "SHAPE_Area": 1172.30249265 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361047.336999997496605, 258121.737700000405312 ], [ 361032.092500001192093, 258112.747000001370907 ], [ 361002.253600001335144, 258113.135999999940395 ], [ 361005.236100003123283, 258141.658100001513958 ], [ 361018.909199997782707, 258145.780699998140335 ], [ 361027.73369999974966, 258151.130300000309944 ], [ 361047.336999997496605, 258121.737700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704049900", "MAP": "G9-215-T52", "PARCEL_NAM": "5-43", "ACRE": ".30", "LONGITUDE": -64.95149864, "LATITUDE": 18.3524888, "OBJECTID_1": 3616, "PARCEL_NO_": "102704049900", "Tax_Legal_": "LILLIENHOJ&MARIENHOJ 5-41&5-43 No.3 LITTLE NORTHSIDE QTR", "Name": "LEE, NOELLE LUCETTE", "Address": "12 Kern Blvd", "City": "Cumberland", "State": "Rhode Island", "Zip": 2864, "Country": "United States", "Land_Value": 43900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.10876190900001, "SHAPE_Area": 1034.5207463500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356615.143399998545647, 258073.007699999958277 ], [ 356590.833599999547005, 258086.951999999582767 ], [ 356602.827500000596046, 258098.871399998664856 ], [ 356615.597300000488758, 258114.385800000280142 ], [ 356618.01799999922514, 258114.194499999284744 ], [ 356625.303599998354912, 258110.876600001007318 ], [ 356645.567500002682209, 258098.587999999523163 ], [ 356629.505999997258186, 258090.857099998742342 ], [ 356621.505800001323223, 258083.403400000184774 ], [ 356615.143399998545647, 258073.007699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95745244, "LATITUDE": 18.35253004, "OBJECTID_1": 3514, "PARCEL_NO_": "102704022200", "Tax_Legal_": "BONNE RESOLUTION 2-AC LITTLE NORTHSIDE QTR", "Name": "YEE, DARLENE E. & KENSOON", "Address": "9663 Santa Monica Blvd", "City": "Beverly Hills", "State": "California", "Zip": 90210, "Country": "United States", "Land_Value": 98200, "Improved_V": 64900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.198853512699998, "SHAPE_Area": 315.13908719099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355994.749300003051758, 258107.826799999922514 ], [ 355993.366800002753735, 258080.795499999076128 ], [ 355986.901900000870228, 258082.43129999935627 ], [ 355981.225400000810623, 258086.184599999338388 ], [ 355977.953400000929832, 258091.646200001239777 ], [ 355979.485100001096725, 258101.157999999821186 ], [ 355994.749300003051758, 258107.826799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704031300", "MAP": "G9-224-T52", "PARCEL_NAM": "5-52", "ACRE": "0.60", "LONGITUDE": -64.95428251, "LATITUDE": 18.35245801, "OBJECTID_1": 3534, "PARCEL_NO_": "102704031300", "Tax_Legal_": "5-49,5-50,5-51&5-52 LILLIENDAHL No.3 LT.NORTHSIDE QTR.", "Name": "5-49 L & M, LLC", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 154300, "Improved_V": 509600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.81785514200001, "SHAPE_Area": 2031.5933370600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356339.481600001454353, 258059.35249999910593 ], [ 356293.334799997508526, 258080.928599998354912 ], [ 356291.617899999022484, 258093.157900001853704 ], [ 356289.990900002419949, 258094.833399999886751 ], [ 356289.947700001299381, 258099.899300001561642 ], [ 356297.166799999773502, 258104.39130000025034 ], [ 356300.377700001001358, 258106.106300000101328 ], [ 356316.509300000965595, 258105.605099998414516 ], [ 356328.573399998247623, 258109.292399998754263 ], [ 356333.405900001525879, 258109.965199999511242 ], [ 356343.085199996829033, 258109.622299998998642 ], [ 356351.169900000095367, 258107.155299998819828 ], [ 356339.481600001454353, 258059.35249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704039900", "MAP": "G9-177-T52", "PARCEL_NAM": "5-5", "ACRE": ".49", "LONGITUDE": -64.95281331, "LATITUDE": 18.35237548, "OBJECTID_1": 3544, "PARCEL_NO_": "102704039900", "Tax_Legal_": "LILLIENDAHL 5-3,5,7,8,9&25,47 MARIENHOJ", "Name": "VIETTE, ANDRE", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.14392637399999, "SHAPE_Area": 2317.71329367 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356511.778999999165535, 258090.526900000870228 ], [ 356484.810300000011921, 258037.954999998211861 ], [ 356482.380599997937679, 258039.20160000026226 ], [ 356482.342799998819828, 258043.634300000965595 ], [ 356479.833999998867512, 258054.168400000780821 ], [ 356476.565600000321865, 258059.207899998873472 ], [ 356470.869199998676777, 258065.282999999821186 ], [ 356463.569300003349781, 258070.289500001817942 ], [ 356444.158399999141693, 258077.096700001507998 ], [ 356455.965400002896786, 258110.968299999833107 ], [ 356511.778999999165535, 258090.526900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92918132, "LATITUDE": 18.35234352, "OBJECTID_1": 4720, "PARCEL_NO_": "102903010700", "Tax_Legal_": "22 ESTATE MAFOLIE No.8F GREAT NORTHSIDE QTR.", "Name": "JOSEPH R SMOLARZ & KELLI H SMOLARZ LIV REVOC TRUST", "Address": "PO Box 10553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98100, "Improved_V": 199800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.721269702, "SHAPE_Area": 2369.1171911299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358990.67119999974966, 258077.040500000119209 ], [ 358943.134700000286102, 258072.429499998688698 ], [ 358950.915500000119209, 258105.634899999946356 ], [ 358954.099399998784065, 258110.516100000590086 ], [ 358962.112199999392033, 258116.492300000041723 ], [ 358997.465899996459484, 258131.347100000828505 ], [ 359001.950599998235703, 258078.188299998641014 ], [ 358990.67119999974966, 258077.040500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91098641000001, "LATITUDE": 18.35250668, "OBJECTID_1": 5668, "PARCEL_NO_": "103003015700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-1 GR NORTHSIDE QTR", "Name": "ROMULO SANTOS MORAES and DAISE DE MORAES COLON", "Address": "PO Box 6220", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28300, "Improved_V": 217100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.2747296, "SHAPE_Area": 1032.4781562400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360927.806699998676777, 258143.768500000238419 ], [ 360908.694399997591972, 258115.536699999123812 ], [ 360899.79619999974966, 258118.841400001198053 ], [ 360865.050999999046326, 258127.211800001561642 ], [ 360865.01860000193119, 258131.011199999600649 ], [ 360870.63400000333786, 258134.43470000103116 ], [ 360896.371299996972084, 258142.244699999690056 ], [ 360909.254299998283386, 258144.461100000888109 ], [ 360918.122000001370907, 258144.744800001382828 ], [ 360927.806699998676777, 258143.768500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704031300", "MAP": "G9-222-T52", "PARCEL_NAM": "5-50", "ACRE": "0.43", "LONGITUDE": -64.95392041, "LATITUDE": 18.35233523, "OBJECTID_1": 3534, "PARCEL_NO_": "102704031300", "Tax_Legal_": "5-49,5-50,5-51&5-52 LILLIENDAHL No.3 LT.NORTHSIDE QTR.", "Name": "5-49 L & M, LLC", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 154300, "Improved_V": 509600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.27266464900001, "SHAPE_Area": 1636.29047715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356381.9375, 258092.41950000077486 ], [ 356371.055500000715256, 258044.6233000010252 ], [ 356339.481600001454353, 258059.35249999910593 ], [ 356351.169900000095367, 258107.155299998819828 ], [ 356370.613099999725819, 258096.548700001090765 ], [ 356381.9375, 258092.41950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703023100", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96416303, "LATITUDE": 18.35224103, "OBJECTID_1": 3282, "PARCEL_NO_": "102703023100", "Tax_Legal_": "LINDBERG BAY 46-3. 4A SOUTHSIDE QTR", "Name": "HEYLIGER, SIMONE O", "Address": "P.O. BOX 3761, V.D.S", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.278314666, "SHAPE_Area": 864.57289544499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355289.202299997210503, 258033.88120000064373 ], [ 355289.000399999320507, 258033.867300000041723 ], [ 355286.559799998998642, 258036.380499999970198 ], [ 355281.705799996852875, 258038.240600001066923 ], [ 355257.493000000715256, 258040.786699999123812 ], [ 355288.08389999717474, 258091.593299999833107 ], [ 355289.202299997210503, 258033.88120000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91066288, "LATITUDE": 18.3524139, "OBJECTID_1": 5670, "PARCEL_NO_": "103003015800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-2 LREAT NORTHSIDE QTR", "Name": "HODGE-AHIMBISIBWE, JESTINA", "Address": "13218 Trimfield Ln", "City": "Germantown", "State": "Maryland", "Zip": 20874, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.45163330599999, "SHAPE_Area": 1141.3252255 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360955.384999997913837, 258124.784800000488758 ], [ 360933.04559999704361, 258096.73759999871254 ], [ 360923.278099998831749, 258107.42339999973774 ], [ 360915.166400000452995, 258113.056499999016523 ], [ 360908.694399997591972, 258115.536699999123812 ], [ 360927.806699998676777, 258143.768500000238419 ], [ 360934.275200001895428, 258141.71059999987483 ], [ 360943.184199996292591, 258137.139400001615286 ], [ 360952.123800002038479, 258128.979899998754263 ], [ 360955.384999997913837, 258124.784800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031800", "MAP": "D9-954-T71", "PARCEL_NAM": "39", "ACRE": null, "LONGITUDE": -64.93415816, "LATITUDE": 18.35223769, "OBJECTID_1": 4644, "PARCEL_NO_": "102804031800", "Tax_Legal_": "39 ESTATE ELIZABETH GREAT NORTHSIDE", "Name": "KEYA GARNER & CURTIS GARNER REVOCABLE TRUST", "Address": "PO Box 306393", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 150700, "Improved_V": 241000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.12771935000001, "SHAPE_Area": 2156.1032704 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358442.5962999984622, 258047.01240000128746 ], [ 358422.29280000180006, 258063.94480000063777 ], [ 358416.607299998402596, 258068.753400001674891 ], [ 358462.104999996721745, 258123.376899998635054 ], [ 358478.662799999117851, 258072.849899999797344 ], [ 358473.015000000596046, 258073.225900001823902 ], [ 358462.561700001358986, 258069.762800000607967 ], [ 358457.761600002646446, 258065.290600001811981 ], [ 358442.5962999984622, 258047.01240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604026900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97032456, "LATITUDE": 18.35233899, "OBJECTID_1": 2752, "PARCEL_NO_": "102604026900", "Tax_Legal_": "LINDBERG BAY 44J S. S. QTR", "Name": "ISAAC, CARL A. & JOYCELYN P", "Address": "PO Box 10917", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55600, "Improved_V": 319200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.491005578, "SHAPE_Area": 2043.93329692 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354615.605400003492832, 258042.921399999409914 ], [ 354589.603799998760223, 258066.140000000596046 ], [ 354608.750299997627735, 258090.361299999058247 ], [ 354639.566399998962879, 258069.926399998366833 ], [ 354651.706000000238419, 258064.748399998992682 ], [ 354669.482600003480911, 258060.460900001227856 ], [ 354671.92679999768734, 258057.525600001215935 ], [ 354671.168999999761581, 258051.819899998605251 ], [ 354669.581600002944469, 258048.851599998772144 ], [ 354665.559000000357628, 258047.763199999928474 ], [ 354615.605400003492832, 258042.921399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91014082, "LATITUDE": 18.35239724, "OBJECTID_1": 5680, "PARCEL_NO_": "103003016300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-9 NO.4 GREAT NORTHSIDE QTR", "Name": "RICHARDSON, DORIS & GENELLE", "Address": "PO Box 9266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25000, "Improved_V": 337600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.5312611, "SHAPE_Area": 1366.5948702799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361005.236100003123283, 258141.658100001513958 ], [ 361002.253600001335144, 258113.135999999940395 ], [ 361000.052199997007847, 258087.575699999928474 ], [ 360993.580200001597404, 258090.055799998342991 ], [ 360989.521600000560284, 258093.188999999314547 ], [ 360969.925599999725819, 258121.737399999052286 ], [ 360964.189699999988079, 258132.456199999898672 ], [ 360964.150100000202656, 258137.099899999797344 ], [ 360968.151100002229214, 258140.7212999984622 ], [ 360987.516999997198582, 258139.190999999642372 ], [ 361005.236100003123283, 258141.658100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703025800", "MAP": "A9-833-T017", "PARCEL_NAM": "109-1", "ACRE": "5.30", "LONGITUDE": -64.96111181000001, "LATITUDE": 18.35177002, "OBJECTID_1": 3291, "PARCEL_NO_": "102703025800", "Tax_Legal_": "109-1 CONTANT NO.7B SOUTHSIDE QTR", "Name": "MEADE, JR, PHILLIP R", "Address": "3220 North St NW", "City": "Washington", "State": "District of Columbia", "Zip": 20007, "Country": "United States", "Land_Value": 207300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 727.62881811099999, "SHAPE_Area": 26375.764995500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355669.25, 257981.039700001478195 ], [ 355642.00450000166893, 257960.973900001496077 ], [ 355589.921400003135204, 257922.128600001335144 ], [ 355575.387999996542931, 257924.331700000911951 ], [ 355563.2753000035882, 257926.343499999493361 ], [ 355482.433700002729893, 257950.379799999296665 ], [ 355471.908500000834465, 257955.359900001436472 ], [ 355465.413000002503395, 257960.584100000560284 ], [ 355461.341899998486042, 257965.19480000063777 ], [ 355511.458099998533726, 258045.609499998390675 ], [ 355581.720600001513958, 258032.885600000619888 ], [ 355615.048000000417233, 258096.275400001555681 ], [ 355634.460699997842312, 258089.257100000977516 ], [ 355651.431000001728535, 258084.962999999523163 ], [ 355688.55009999871254, 258081.889299999922514 ], [ 355708.75110000371933, 258076.988400001078844 ], [ 355718.480800002813339, 258070.735199999064207 ], [ 355722.553700000047684, 258065.913400001823902 ], [ 355724.254399999976158, 258055.583700001239777 ], [ 355749.383199997246265, 258040.168499998748302 ], [ 355740.569499999284744, 258033.552400000393391 ], [ 355737.364000000059605, 258031.204199999570847 ], [ 355706.913000002503395, 258008.790100000798702 ], [ 355669.25, 257981.039700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804028700", "MAP": "F9-3461-T76", "PARCEL_NAM": "18B", "ACRE": ".50", "LONGITUDE": -64.93568047, "LATITUDE": 18.35228584, "OBJECTID_1": 4607, "PARCEL_NO_": "102804028700", "Tax_Legal_": "18B & 18A-1 ELIZABETH GREAT NORTHSIDE QUARTER", "Name": "CHONGASING, ELTON & BEVERLY (TRUSTEES)", "Address": "PO BOX 301763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86700, "Improved_V": 225300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.705908639, "SHAPE_Area": 2078.06101369 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358305.957299999892712, 258089.590500000864267 ], [ 358312.646899998188019, 258061.56980000063777 ], [ 358274.008699998259544, 258053.654199998825788 ], [ 358272.120899997651577, 258085.936000000685453 ], [ 358264.6537000015378, 258110.572900000959635 ], [ 358299.258599996566772, 258118.666499998420477 ], [ 358305.957299999892712, 258089.590500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704032300", "MAP": "D9-366-T63", "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.95551745, "LATITUDE": 18.35233803, "OBJECTID_1": 3539, "PARCEL_NO_": "102704032300", "Tax_Legal_": "BONNE RESOLUTION 1 LITTLE NORTHSIDE QTR", "Name": "COLLEGE OF THE VIRGIN ISLANDS", "Address": "COLLEGE OF THE V I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 228700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.34568750400001, "SHAPE_Area": 1856.02625584 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356192.750799998641014, 258056.040699999779463 ], [ 356166.97749999910593, 258052.452199999243021 ], [ 356173.019799999892712, 258100.419900000095367 ], [ 356194.018100000917912, 258096.581000000238419 ], [ 356202.117200002074242, 258092.425400000065565 ], [ 356211.053199999034405, 258084.688099998980761 ], [ 356220.016099996864796, 258073.784600000828505 ], [ 356222.472800001502037, 258069.371700000017881 ], [ 356224.965499997138977, 258060.737300001084805 ], [ 356192.750799998641014, 258056.040699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91704034, "LATITUDE": 18.35216075, "OBJECTID_1": 4964, "PARCEL_NO_": "102904014900", "Tax_Legal_": "1-10&1-28 ST JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "LOVELAND FAMILY TRUST", "Address": "PO Box 8985", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120600, "Improved_V": 597800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.18389991700002, "SHAPE_Area": 4482.1519945199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360302.397699996829033, 258104.663800001144409 ], [ 360274.653300002217293, 258048.496899999678135 ], [ 360231.798299998044968, 258062.289500001817942 ], [ 360212.409000001847744, 258066.563700001686811 ], [ 360206.741499997675419, 258069.261599998921156 ], [ 360201.052299998700619, 258074.492300000041723 ], [ 360273.928700000047684, 258133.561700001358986 ], [ 360288.544799998402596, 258121.649000000208616 ], [ 360295.866300001740456, 258114.109600000083447 ], [ 360302.397699996829033, 258104.663800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703023000", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96447465, "LATITUDE": 18.35230975, "OBJECTID_1": 3281, "PARCEL_NO_": "102703023000", "Tax_Legal_": "LINDBERG BAY 46-4 SOUTHSIDE QTR", "Name": "Miguel A & Roseanne R Farrington Revoc Fami Trust", "Address": "Po Box 307725", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49800, "Improved_V": 728100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.55487425800001, "SHAPE_Area": 1768.3680172300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355251.107299998402596, 258033.135000001639128 ], [ 355226.124200001358986, 258031.452899999916553 ], [ 355227.348399996757507, 258077.059099998325109 ], [ 355244.173100002110004, 258089.862399999052286 ], [ 355245.801899999380112, 258087.975900001823902 ], [ 355250.657700002193451, 258085.904699999839067 ], [ 355263.528099998831749, 258089.598700001835823 ], [ 355278.021999999880791, 258092.039299998432398 ], [ 355249.393899999558926, 258044.942200001329184 ], [ 355248.607400000095367, 258042.613800000399351 ], [ 355248.661399997770786, 258036.281399998813868 ], [ 355251.107299998402596, 258033.135000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92996935, "LATITUDE": 18.35229509, "OBJECTID_1": 4717, "PARCEL_NO_": "102903010400", "Tax_Legal_": "29 MAFOLIE No.8F GREAT NORTHSIDE QTR.", "Name": "MARTIN, MICHAEL E", "Address": "PO Box 1484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 80100, "Improved_V": 247100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.03261009, "SHAPE_Area": 2212.8668540499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358921.074799999594688, 258106.234999999403954 ], [ 358915.010899998247623, 258060.800299998372793 ], [ 358902.891000002622604, 258063.656399998813868 ], [ 358897.223499998450279, 258066.354200001806021 ], [ 358889.912699997425079, 258072.627199999988079 ], [ 358881.000100001692772, 258077.62049999833107 ], [ 358867.262199997901917, 258081.096700001507998 ], [ 358858.875399999320507, 258119.024900000542402 ], [ 358892.817900002002716, 258110.225600000470877 ], [ 358921.074799999594688, 258106.234999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91436958, "LATITUDE": 18.35225073, "OBJECTID_1": 5745, "PARCEL_NO_": "103003022500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-23 GT. NORTHSIDE", "Name": "HODGE, JOSEPH & SYLVIA", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021736, "Country": "United States", "Land_Value": 54900, "Improved_V": 203800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.670142462, "SHAPE_Area": 2223.0759129799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360569.539499998092651, 258087.729699999094009 ], [ 360513.127599999308586, 258073.246800001710653 ], [ 360508.2195999994874, 258081.439300000667572 ], [ 360508.988200001418591, 258085.878600001335144 ], [ 360524.068899996578693, 258114.077500000596046 ], [ 360520.019400000572205, 258116.155200000852346 ], [ 360563.845799997448921, 258130.945199999958277 ], [ 360569.539499998092651, 258087.729699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90953065, "LATITUDE": 18.35228748, "OBJECTID_1": 5688, "PARCEL_NO_": "103003016700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-7 GREAT NORTHSIDE QTR.", "Name": "JOSEPH, ALEXIA & FELICITA", "Address": "6117 St Joseph & Rosdendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.14145075299999, "SHAPE_Area": 991.63045608499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361069.001299999654293, 258134.369500000029802 ], [ 361064.431400001049042, 258102.879099998623133 ], [ 361062.120300002396107, 258090.194600000977516 ], [ 361042.779600001871586, 258088.769799999892712 ], [ 361041.140000000596046, 258091.922699999064207 ], [ 361032.092500001192093, 258112.747000001370907 ], [ 361047.336999997496605, 258121.737700000405312 ], [ 361069.001299999654293, 258134.369500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91512378, "LATITUDE": 18.35222209, "OBJECTID_1": 5744, "PARCEL_NO_": "103003022400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-9 4GR NORTHSIDE", "Name": "SMALLS, TAMARAH & DARRYL A", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.20844533, "SHAPE_Area": 2299.1628241899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360502.613200001418591, 258076.960499998182058 ], [ 360467.959700003266335, 258074.565900001674891 ], [ 360464.736299999058247, 258074.328400000929832 ], [ 360458.27139999717474, 258075.964299999177456 ], [ 360457.490299999713898, 258073.002599999308586 ], [ 360452.634400002658367, 258075.073800001293421 ], [ 360440.464199997484684, 258083.84010000154376 ], [ 360433.957900002598763, 258090.330699998885393 ], [ 360428.250799998641014, 258097.6722999997437 ], [ 360444.114500001072884, 258128.621800001710653 ], [ 360467.600100003182888, 258116.781700000166893 ], [ 360476.527099996805191, 258110.099800001829863 ], [ 360486.317900002002716, 258096.669900000095367 ], [ 360500.145700000226498, 258082.639800000935793 ], [ 360502.613200001418591, 258076.960499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804028700", "MAP": "G9-2992-T80", "PARCEL_NAM": "18A-1", "ACRE": null, "LONGITUDE": -64.93589732, "LATITUDE": 18.3524345, "OBJECTID_1": 4607, "PARCEL_NO_": "102804028700", "Tax_Legal_": "18B & 18A-1 ELIZABETH GREAT NORTHSIDE QUARTER", "Name": "CHONGASING, ELTON & BEVERLY (TRUSTEES)", "Address": "PO BOX 301763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86700, "Improved_V": 225300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.254804863799997, "SHAPE_Area": 63.572855236899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358272.120899997651577, 258085.936000000685453 ], [ 358259.824799999594688, 258109.477899998426437 ], [ 358264.6537000015378, 258110.572900000959635 ], [ 358272.120899997651577, 258085.936000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804030200", "MAP": "F9-621-T60", "PARCEL_NAM": "11A", "ACRE": "1.00", "LONGITUDE": -64.93599659, "LATITUDE": 18.3520312, "OBJECTID_1": 4628, "PARCEL_NO_": "102804030200", "Tax_Legal_": "18A REM & 11A ELIZABETH NO. 8I GREAT NORTHSIDE QUARTER", "Name": "ADRIEN ELLIOTT AUSTIN", "Address": "PO Box 303887", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033887, "Country": "United States", "Land_Value": 153100, "Improved_V": 457300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.83567958999998, "SHAPE_Area": 3413.0866557899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358274.008699998259544, 258053.654199998825788 ], [ 358286.513300001621246, 258005.627199999988079 ], [ 358246.097000002861023, 258017.117600001394749 ], [ 358226.060400001704693, 258097.380300000309944 ], [ 358259.824799999594688, 258109.477899998426437 ], [ 358274.008699998259544, 258053.654199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804030200", "MAP": "G9-2992-T80", "PARCEL_NAM": "18A", "ACRE": ".028", "LONGITUDE": -64.93586928000001, "LATITUDE": 18.35226286, "OBJECTID_1": 4628, "PARCEL_NO_": "102804030200", "Tax_Legal_": "18A REM & 11A ELIZABETH NO. 8I GREAT NORTHSIDE QUARTER", "Name": "ADRIEN ELLIOTT AUSTIN", "Address": "PO Box 303887", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033887, "Country": "United States", "Land_Value": 153100, "Improved_V": 457300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.49407288, "SHAPE_Area": 176.24892105500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358259.824799999594688, 258109.477899998426437 ], [ 358272.120899997651577, 258085.936000000685453 ], [ 358274.008699998259544, 258053.654199998825788 ], [ 358259.824799999594688, 258109.477899998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95356282, "LATITUDE": 18.35219042, "OBJECTID_1": 3537, "PARCEL_NO_": "102704031600", "Tax_Legal_": "5-48 LILLIENDAL & MARIENHOJ NO 3 LITTLE NORTHSIDE", "Name": "GRUPO EDIFICA CORPORATION", "Address": "4600 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.41943792399999, "SHAPE_Area": 2382.2216323500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356427.229400001466274, 258076.535999998450279 ], [ 356413.151000000536442, 258025.336100000888109 ], [ 356371.055500000715256, 258044.6233000010252 ], [ 356381.9375, 258092.41950000077486 ], [ 356427.229400001466274, 258076.535999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804030300", "MAP": "F9-3461-T76", "PARCEL_NAM": "18", "ACRE": ".51", "LONGITUDE": -64.93517196000001, "LATITUDE": 18.35227254, "OBJECTID_1": 4629, "PARCEL_NO_": "102804030300", "Tax_Legal_": "18 ELIZABETH GREAT NORTHSIDE QUARTER", "Name": "CHONGASING, ELTON & BEVERLY (TRUSTEES)", "Address": "PO BOX 301763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.15478811099999, "SHAPE_Area": 2082.4899708100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358365.771899998188019, 258072.770300000905991 ], [ 358312.646899998188019, 258061.56980000063777 ], [ 358305.957299999892712, 258089.590500000864267 ], [ 358368.695000000298023, 258108.258000001311302 ], [ 358380.060699999332428, 258099.274000000208616 ], [ 358365.771899998188019, 258072.770300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96805953, "LATITUDE": 18.35081021, "OBJECTID_1": 2700, "PARCEL_NO_": "102604021000", "Tax_Legal_": "LINDBERG BAY 41 S S QTR", "Name": "DAVID, LEONA C", "Address": "464 Sheffield Ave", "City": "Brooklyn", "State": "New York", "Zip": 11207, "Country": "United States", "Land_Value": 147000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 762.20945282499997, "SHAPE_Area": 13288.825628000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354881.036399997770786, 257743.018899999558926 ], [ 354880.143899999558926, 257721.419399999082088 ], [ 354840.140500001609325, 257732.496899999678135 ], [ 354842.236299999058247, 257754.100400000810623 ], [ 354849.60249999910593, 257930.634899999946356 ], [ 354856.410499997437, 258078.033900000154972 ], [ 354894.582299999892712, 258046.0489999987185 ], [ 354881.036399997770786, 257743.018899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95244478, "LATITUDE": 18.35215792, "OBJECTID_1": 3532, "PARCEL_NO_": "102704031100", "Tax_Legal_": "LILLIENDAHL 5-2 LITTLE NORTHSIDE QTR", "Name": "RODRIQUEZ, ENRIQUE E. & SANCHEZ, M", "Address": "PO Box 8058", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65500, "Improved_V": 193400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.210535478, "SHAPE_Area": 2429.8816903400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356553.840300001204014, 258075.250199999660254 ], [ 356512.376000002026558, 258020.448699999600649 ], [ 356484.810300000011921, 258037.954999998211861 ], [ 356511.778999999165535, 258090.526900000870228 ], [ 356553.840300001204014, 258075.250199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91856263, "LATITUDE": 18.35170403, "OBJECTID_1": 4966, "PARCEL_NO_": "102904015300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1A GT. NORTHSIDE QTR", "Name": "BILLIE M HODGES GREGORY H HODGES REVOC TRUST", "Address": "PO Box 756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 152400, "Improved_V": 190500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 379.80148833800001, "SHAPE_Area": 4963.9264952800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360130.241700001060963, 257962.244300000369549 ], [ 360098.030599996447563, 257957.125500001013279 ], [ 360069.389600001275539, 258100.856899999082088 ], [ 360066.880800001323223, 258111.391100000590086 ], [ 360096.660400003194809, 258117.967599999159575 ], [ 360107.019599996507168, 258069.929800000041723 ], [ 360130.241700001060963, 257962.244300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96537935000001, "LATITUDE": 18.35575103, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 369.333344506, "SHAPE_Area": 2051.9329377399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355150.344499997794628, 258407.845800001174212 ], [ 355147.367399998009205, 258378.690499998629093 ], [ 355145.932800002396107, 258357.780499998480082 ], [ 355133.821900002658367, 258359.581199999898672 ], [ 355136.79900000244379, 258388.7364999987185 ], [ 355139.72580000013113, 258423.802000001072884 ], [ 355143.365299999713898, 258469.850099999457598 ], [ 355144.862899996340275, 258483.372400000691414 ], [ 355143.916299998760223, 258499.829900000244379 ], [ 355140.673000000417233, 258501.914299998432398 ], [ 355135.829800002276897, 258502.508000001311302 ], [ 355134.965899996459484, 258509.255899999290705 ], [ 355145.446199998259544, 258509.552799999713898 ], [ 355146.239900000393391, 258511.036899998784065 ], [ 355145.352700002491474, 258520.528900001198053 ], [ 355159.857299998402596, 258521.703000001609325 ], [ 355156.899999998509884, 258490.225900001823902 ], [ 355153.273000001907349, 258442.700199998915195 ], [ 355150.344499997794628, 258407.845800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94247336, "LATITUDE": 18.35564815, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 991.67446720600003, "SHAPE_Area": 3887.55784911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357561.153999999165535, 258435.176500000059605 ], [ 357580.586400002241135, 258425.836300000548363 ], [ 357595.989100001752377, 258416.252099998295307 ], [ 357607.365599997341633, 258406.001600001007318 ], [ 357616.308700002729893, 258397.419900000095367 ], [ 357626.864500001072884, 258388.851500000804663 ], [ 357638.215800002217293, 258381.556099999696016 ], [ 357659.295100003480911, 258368.218699999153614 ], [ 357667.403099998831749, 258363.007699999958277 ], [ 357679.585900001227856, 258352.763799998909235 ], [ 357686.093999996781349, 258346.062100000679493 ], [ 357695.0658999979496, 258334.103199999779463 ], [ 357688.604599997401237, 258335.316899999976158 ], [ 357683.154200002551079, 258336.490299999713898 ], [ 357631.435199998319149, 258375.365800000727177 ], [ 357602.32490000128746, 258400.777300000190735 ], [ 357586.33669999986887, 258413.428800001740456 ], [ 357549.883599996566772, 258432.973299998790026 ], [ 357514.226099997758865, 258453.790800001472235 ], [ 357509.361199997365475, 258456.917399998754263 ], [ 357495.578400000929832, 258465.670499999076128 ], [ 357485.049599997699261, 258471.072799999266863 ], [ 357476.142399996519089, 258475.432799998670816 ], [ 357473.698299996554852, 258478.368099998682737 ], [ 357472.855999998748302, 258482.583099998533726 ], [ 357473.620899997651577, 258487.444499999284744 ], [ 357477.614699997007847, 258491.910199999809265 ], [ 357488.872500002384186, 258495.590900000184774 ], [ 357498.535700000822544, 258497.147700000554323 ], [ 357500.938500002026558, 258499.067200001329184 ], [ 357500.097999997437, 258503.071100000292063 ], [ 357483.039499998092651, 258517.708000000566244 ], [ 357481.398100003600121, 258521.07209999859333 ], [ 357482.145099997520447, 258528.044300001114607 ], [ 357484.537100002169609, 258531.230200000107288 ], [ 357489.355200000107288, 258533.591699998825788 ], [ 357494.196599997580051, 258533.209100000560284 ], [ 357512.754399999976158, 258531.883400000631809 ], [ 357526.485100001096725, 258529.251499999314547 ], [ 357544.267099998891354, 258524.330800000578165 ], [ 357563.686999998986721, 258516.468199998140335 ], [ 357576.640100002288818, 258510.452500000596046 ], [ 357584.746399998664856, 258505.452599998563528 ], [ 357608.291299998760223, 258486.646899998188019 ], [ 357620.49210000038147, 258474.292199999094009 ], [ 357615.69200000166893, 258469.820000000298023 ], [ 357612.455899998545647, 258471.060100000351667 ], [ 357607.643200002610683, 258468.065400000661612 ], [ 357603.579300001263618, 258471.831799998879433 ], [ 357605.962300002574921, 258476.07319999858737 ], [ 357605.134400002658367, 258478.599500000476837 ], [ 357584.017399996519089, 258496.369600001722574 ], [ 357571.046300001442432, 258504.496100001037121 ], [ 357564.568800002336502, 258507.609499998390675 ], [ 357555.66160000115633, 258511.9695999994874 ], [ 357533.016500003635883, 258519.805799998342991 ], [ 357512.014600001275539, 258524.066899999976158 ], [ 357490.226199999451637, 258525.999499998986721 ], [ 357489.455899998545647, 258521.771299999207258 ], [ 357500.00450000166893, 258514.047200001776218 ], [ 357505.699000000953674, 258508.183100000023842 ], [ 357507.342200003564358, 258504.607999999076128 ], [ 357508.213200002908707, 258497.015799999237061 ], [ 357505.043700002133846, 258490.445900000631809 ], [ 357502.619400002062321, 258491.059399999678135 ], [ 357481.701999999582767, 258485.399700000882149 ], [ 357480.931699998676777, 258481.171599999070168 ], [ 357496.318199999630451, 258473.486999999731779 ], [ 357529.551399998366833, 258453.282900001853704 ], [ 357561.153999999165535, 258435.176500000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96477025, "LATITUDE": 18.35583596, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.39253412900001, "SHAPE_Area": 1223.7057196200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355202.627099998295307, 258423.261300001293421 ], [ 355202.445500001311302, 258444.580299999564886 ], [ 355201.24719999730587, 258490.588899999856949 ], [ 355201.056599996984005, 258512.963199999183416 ], [ 355205.919600002467632, 258510.047699999064207 ], [ 355206.040100000798702, 258495.9054000005126 ], [ 355212.708200000226498, 258470.417700000107288 ], [ 355217.645000003278255, 258458.847899999469519 ], [ 355220.897200003266335, 258455.708200000226498 ], [ 355223.353900000452995, 258451.295299999415874 ], [ 355225.056400001049042, 258440.754599999636412 ], [ 355226.026399999856949, 258421.552999999374151 ], [ 355202.627099998295307, 258423.261300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96439004, "LATITUDE": 18.35625274, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.8554416148, "SHAPE_Area": 177.270888 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355262.420800000429153, 258503.544100001454353 ], [ 355260.045100003480911, 258498.458399999886751 ], [ 355256.045900002121925, 258494.625999998301268 ], [ 355250.408900000154972, 258493.735399998724461 ], [ 355243.92960000038147, 258497.059900000691414 ], [ 355240.666599996387959, 258501.4662000015378 ], [ 355239.822499997913837, 258505.892200000584126 ], [ 355249.50900000333786, 258504.704900000244379 ], [ 355251.123499996960163, 258504.507100000977516 ], [ 355252.737899996340275, 258504.309200000017881 ], [ 355262.420800000429153, 258503.544100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704013200", "MAP": "D9-9013-T015", "PARCEL_NAM": "11F-1", "ACRE": ".605", "LONGITUDE": -64.95449918, "LATITUDE": 18.3558057, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.07068298900001, "SHAPE_Area": 2616.2967558700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356345.174599997699261, 258451.990100000053644 ], [ 356297.7128000035882, 258433.908300001174212 ], [ 356263.306100003421307, 258449.002700001001358 ], [ 356260.158100001513958, 258481.875500001013279 ], [ 356319.800499998033047, 258476.208000000566244 ], [ 356327.712099999189377, 258470.378699999302626 ], [ 356326.918300002813339, 258462.573499999940395 ], [ 356345.174599997699261, 258451.990100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92995297, "LATITUDE": 18.35604293, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.811529675, "SHAPE_Area": 1364.7228385200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358911.337200000882149, 258492.034400001168251 ], [ 358869.453900001943111, 258486.414200000464916 ], [ 358871.039599999785423, 258489.593600001186132 ], [ 358870.904700003564358, 258505.424499999731779 ], [ 358869.178800001740456, 258518.709300000220537 ], [ 358907.799099996685982, 258528.735700000077486 ], [ 358911.337200000882149, 258492.034400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.952121, "LATITUDE": 18.35600807, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.784635957399999, "SHAPE_Area": 75.741328797500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356551.026799999177456, 258500.158500000834465 ], [ 356548.767899997532368, 258481.352699998766184 ], [ 356543.339500002563, 258455.977000001817942 ], [ 356548.607900001108646, 258500.138700000941753 ], [ 356551.026799999177456, 258500.158500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003012100", "MAP": "D9-8143-T008", "PARCEL_NAM": "10G", "ACRE": ".29", "LONGITUDE": -64.9106651, "LATITUDE": 18.35578154, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.88944860699999, "SHAPE_Area": 1755.14787525 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360944.016199998557568, 258490.075399998575449 ], [ 360925.912100002169609, 258460.815600000321865 ], [ 360899.930299997329712, 258481.71229999884963 ], [ 360918.281300000846386, 258504.660599999129772 ], [ 360924.661700002849102, 258512.94539999961853 ], [ 360936.630500003695488, 258527.819899998605251 ], [ 360952.871799997985363, 258514.442899998277426 ], [ 360954.495200000703335, 258513.189599998295307 ], [ 360957.090499997138977, 258511.206300001591444 ], [ 360944.016199998557568, 258490.075399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9681608, "LATITUDE": 18.35556466, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 356.29580597, "SHAPE_Area": 1440.7215996499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354934.385799996554852, 258390.457299999892712 ], [ 354874.585600003600121, 258405.588799998164177 ], [ 354849.514399997889996, 258414.249499998986721 ], [ 354839.800899997353554, 258418.603000000119209 ], [ 354821.180200003087521, 258427.316500000655651 ], [ 354794.436999998986721, 258442.929699998348951 ], [ 354771.782899998128414, 258451.821299999952316 ], [ 354774.970399998128414, 258456.280299998819828 ], [ 354799.242499999701977, 258446.768699999898672 ], [ 354901.184900000691414, 258406.861999999731779 ], [ 354935.975000001490116, 258393.214499998837709 ], [ 354934.385799996554852, 258390.457299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94612399, "LATITUDE": 18.35573976, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.593606636700002, "SHAPE_Area": 175.39914443399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357193.29389999806881, 258453.486200001090765 ], [ 357179.556000001728535, 258456.96229999884963 ], [ 357177.945200003683567, 258456.738000001758337 ], [ 357177.165899999439716, 258453.565200001001358 ], [ 357171.512699998915195, 258454.574400000274181 ], [ 357171.464100003242493, 258460.273600000888109 ], [ 357173.836300000548363, 258465.781399998813868 ], [ 357194.856200002133846, 258459.409600000828505 ], [ 357193.29389999806881, 258453.486200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93111746, "LATITUDE": 18.35565622, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.050636508, "SHAPE_Area": 259.99207260100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358780.822499997913837, 258478.300599999725819 ], [ 358753.79450000077486, 258432.694200001657009 ], [ 358768.736800000071526, 258477.146200001239777 ], [ 358780.822499997913837, 258478.300599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604015600", "MAP": "D9-8568-T011", "PARCEL_NAM": "53-B-2-B", "ACRE": "0.56", "LONGITUDE": -64.96895288, "LATITUDE": 18.35384601, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.77999064799999, "SHAPE_Area": 1564.8249470600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354756.336999997496605, 258210.115600001066923 ], [ 354756.826200000941753, 258258.66440000012517 ], [ 354776.649899996817112, 258259.132699999958277 ], [ 354780.663500003516674, 258261.276500001549721 ], [ 354783.861800000071526, 258264.469099998474121 ], [ 354782.218299999833107, 258189.997499998658895 ], [ 354771.512800000607967, 258199.562300000339746 ], [ 354756.336999997496605, 258210.115600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95198959, "LATITUDE": 18.35436644, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 594.097140276, "SHAPE_Area": 1759.6854372800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356555.130699999630451, 258302.397399999201298 ], [ 356560.079999998211861, 258289.350099999457598 ], [ 356572.401299998164177, 258262.853199999779463 ], [ 356578.993900001049042, 258246.230799999088049 ], [ 356586.331600002944469, 258236.791600000113249 ], [ 356595.406000003218651, 258212.801199998706579 ], [ 356603.726300001144409, 258182.682900000363588 ], [ 356603.82880000025034, 258170.651399999856949 ], [ 356604.674699999392033, 258166.014299999922514 ], [ 356603.065600000321865, 258165.578999999910593 ], [ 356579.064000003039837, 258237.998700000345707 ], [ 356576.616300001740456, 258241.356199998408556 ], [ 356562.660800002515316, 258270.372800000011921 ], [ 356559.395999997854233, 258274.990200001746416 ], [ 356557.747400000691414, 258279.198600001633167 ], [ 356556.109600000083447, 258282.140500001609325 ], [ 356551.196199998259544, 258290.9662000015378 ], [ 356545.415399998426437, 258306.962000001221895 ], [ 356541.225599996745586, 258325.503899998962879 ], [ 356541.859300002455711, 258345.774099998176098 ], [ 356545.567100003361702, 258383.801300000399351 ], [ 356544.604400001466274, 258402.158500000834465 ], [ 356541.206500001251698, 258422.395700000226498 ], [ 356541.867200002074242, 258439.499699998646975 ], [ 356542.594400003552437, 258448.793800000101328 ], [ 356545.018700003623962, 258448.180300001055002 ], [ 356545.068999998271465, 258442.270100001245737 ], [ 356549.364900000393391, 258411.274500001221895 ], [ 356550.469800002872944, 258376.241999998688698 ], [ 356549.739000000059605, 258367.370099999010563 ], [ 356547.600500002503395, 258334.421999998390675 ], [ 356548.471600003540516, 258326.829799998551607 ], [ 356555.130699999630451, 258302.397399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103003011100", "MAP": "G9-847-T65", "PARCEL_NAM": "6CA", "ACRE": "0.77 (d.)", "LONGITUDE": -64.91569309, "LATITUDE": 18.35542777, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.52782181499998, "SHAPE_Area": 3080.6851611100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360442.971400000154972, 258458.720600001513958 ], [ 360435.547899998724461, 258416.800000000745058 ], [ 360431.964500002563, 258418.987100001424551 ], [ 360406.864500001072884, 258431.025100000202656 ], [ 360386.64190000295639, 258438.45890000090003 ], [ 360383.405900001525879, 258439.699000000953674 ], [ 360364.007700003683567, 258445.0287000015378 ], [ 360349.211800001561642, 258447.598099999129772 ], [ 360352.519400000572205, 258477.743700001388788 ], [ 360385.453299999237061, 258470.788600001484156 ], [ 360438.491700001060963, 258460.046799998730421 ], [ 360442.971400000154972, 258458.720600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103003011100", "MAP": "G9-847-T65", "PARCEL_NAM": "REM 6C", "ACRE": "0.26", "LONGITUDE": -64.9152222, "LATITUDE": 18.35530164, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.01225827499999, "SHAPE_Area": 729.88855818699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360460.385200001299381, 258455.367800001055002 ], [ 360457.665799997746944, 258431.018699999898672 ], [ 360454.496299996972084, 258424.448800001293421 ], [ 360444.091499999165535, 258415.286699999123812 ], [ 360438.449100002646446, 258415.029399998486042 ], [ 360435.547899998724461, 258416.800000000745058 ], [ 360442.971400000154972, 258458.720600001513958 ], [ 360460.385200001299381, 258455.367800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91282146, "LATITUDE": 18.35489243, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.80483763699999, "SHAPE_Area": 782.52931015399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360760.574199996888638, 258369.958700001239777 ], [ 360756.589400000870228, 258364.437600001692772 ], [ 360706.491899996995926, 258376.482099998742342 ], [ 360703.259499996900558, 258377.30009999871254 ], [ 360695.104699999094009, 258387.999099999666214 ], [ 360651.949299998581409, 258437.041799999773502 ], [ 360655.946699999272823, 258441.085299998521805 ], [ 360708.057800002396107, 258381.983399998396635 ], [ 360711.290200002491474, 258381.165500000119209 ], [ 360731.48759999871254, 258376.686700001358986 ], [ 360760.574199996888638, 258369.958700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91014185, "LATITUDE": 18.35486731, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.103820521000003, "SHAPE_Area": 226.971018802 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360975.690600000321865, 258391.562100000679493 ], [ 360988.442400000989437, 258409.187199998646975 ], [ 360991.852799996733665, 258387.472500000149012 ], [ 360991.874399997293949, 258384.939599998295307 ], [ 360989.471600003540516, 258383.020100001245737 ], [ 360985.436499997973442, 258383.409200001507998 ], [ 360975.690600000321865, 258391.562100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91484186, "LATITUDE": 18.35489425, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.5658606326, "SHAPE_Area": 122.803797844 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360498.240299999713898, 258400.953299999237061 ], [ 360483.085799999535084, 258381.408700000494719 ], [ 360479.023699998855591, 258384.964000001549721 ], [ 360494.988099999725819, 258404.093100000172853 ], [ 360498.240299999713898, 258400.953299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "B3-19-T27", "PARCEL_NAM": "14", "ACRE": ".65", "LONGITUDE": -64.94098521, "LATITUDE": 18.35473731, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.66412290100001, "SHAPE_Area": 2599.5753361299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357748.370600000023842, 258324.195900000631809 ], [ 357700.719099998474121, 258333.094000000506639 ], [ 357694.794399999082088, 258365.976100001484156 ], [ 357701.124399997293949, 258380.17119999974966 ], [ 357759.290399998426437, 258367.559399999678135 ], [ 357748.370600000023842, 258324.195900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9140052, "LATITUDE": 18.35436389, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.32207044800001, "SHAPE_Area": 2787.65579183 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360613.078400000929832, 258361.785399999469519 ], [ 360607.567199997603893, 258346.11939999833703 ], [ 360585.994599997997284, 258322.722500000149012 ], [ 360591.685500003397465, 258317.280699998140335 ], [ 360568.518299996852875, 258291.759799998253584 ], [ 360538.41499999910593, 258323.177499998360872 ], [ 360573.630199998617172, 258354.285399999469519 ], [ 360594.389300003647804, 258378.519900001585484 ], [ 360602.524400003254414, 258370.142799999564886 ], [ 360613.078400000929832, 258361.785399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94490223, "LATITUDE": 18.35464594, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.86328275700001, "SHAPE_Area": 566.02562638699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357358.077600002288818, 258325.434500001370907 ], [ 357351.655900001525879, 258322.004399999976158 ], [ 357323.325300000607967, 258334.649300001561642 ], [ 357316.041500002145767, 258337.756000000983477 ], [ 357289.386399999260902, 258343.026299998164177 ], [ 357274.880000002682209, 258342.063200000673532 ], [ 357271.672700002789497, 258339.925999999046326 ], [ 357265.981799997389317, 258345.367899999022484 ], [ 357270.801700003445148, 258347.518300000578165 ], [ 357272.408900000154972, 258348.164700001478195 ], [ 357289.334299996495247, 258349.147599998861551 ], [ 357301.443400003015995, 258347.55799999833107 ], [ 357316.795699998736382, 258343.883900001645088 ], [ 357334.601099997758865, 258336.219200000166893 ], [ 357355.646099999547005, 258326.892200000584126 ], [ 357358.077600002288818, 258325.434500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90906758, "LATITUDE": 18.35431882, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.88579951499997, "SHAPE_Area": 769.50825046199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361155.519100002944469, 258295.930900000035763 ], [ 361149.07940000295639, 258294.611600000411272 ], [ 361143.401100002229214, 258298.575899999588728 ], [ 361131.273999996483326, 258302.276299998164177 ], [ 361124.791199997067451, 258306.022999998182058 ], [ 361110.968800000846386, 258319.419799998402596 ], [ 361093.894100002944469, 258335.956500001251698 ], [ 361089.031099997460842, 258338.872000001370907 ], [ 361084.1824000030756, 258340.098900001496077 ], [ 361075.260799996554852, 258346.147599998861551 ], [ 361072.015799999237061, 258348.442999999970198 ], [ 361063.857400000095367, 258359.5641999989748 ], [ 361049.99719999730587, 258377.393699999898672 ], [ 361055.619800001382828, 258379.972899999469519 ], [ 361075.185300000011921, 258355.012899998575449 ], [ 361078.444700002670288, 258351.028799999505281 ], [ 361084.934799998998642, 258346.437800001353025 ], [ 361094.646499998867512, 258342.295400001108646 ], [ 361103.589699998497963, 258333.713799998164177 ], [ 361129.596699997782707, 258309.861999999731779 ], [ 361135.266000002622604, 258306.953099999576807 ], [ 361147.39130000025034, 258303.463700000196695 ], [ 361152.259700000286102, 258299.91499999910593 ], [ 361155.519100002944469, 258295.930900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94492751, "LATITUDE": 18.35439898, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 313.622939643, "SHAPE_Area": 751.59606084699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357364.707999996840954, 258304.379399999976158 ], [ 357363.04389999806881, 258304.863800000399351 ], [ 357346.216300003230572, 258295.021299999207258 ], [ 357318.417700000107288, 258290.962900001555681 ], [ 357307.551500000059605, 258293.145799998193979 ], [ 357294.596500001847744, 258299.372600000351667 ], [ 357283.230800002813339, 258308.356600001454353 ], [ 357279.975000001490116, 258311.918499998748302 ], [ 357270.180600002408028, 258325.770500000566244 ], [ 357267.734700001776218, 258328.916900001466274 ], [ 357264.441100001335144, 258336.911499999463558 ], [ 357261.185300000011921, 258340.473499998450279 ], [ 357257.949199996888638, 258341.713599998503923 ], [ 357265.981799997389317, 258345.367899999022484 ], [ 357271.672700002789497, 258339.925999999046326 ], [ 357271.715899996459484, 258334.860100001096725 ], [ 357274.996899999678135, 258328.343100000172853 ], [ 357288.853399999439716, 258310.935699999332428 ], [ 357296.160599999129772, 258305.084899999201298 ], [ 357309.117399998009205, 258298.647100001573563 ], [ 357315.58219999819994, 258297.011199999600649 ], [ 357326.075099997222424, 258295.83049999922514 ], [ 357347.82039999961853, 258298.963799998164177 ], [ 357354.252899996936321, 258301.127399999648333 ], [ 357358.259300000965595, 258304.115499999374151 ], [ 357359.848499998450279, 258306.872699998319149 ], [ 357359.796400003135204, 258312.993999999016523 ], [ 357358.142399996519089, 258317.83559999987483 ], [ 357355.703699998557568, 258320.137699998915195 ], [ 357351.655900001525879, 258322.004399999976158 ], [ 357358.077600002288818, 258325.434500001370907 ], [ 357362.946099996566772, 258321.88569999858737 ], [ 357363.773999996483326, 258319.359400000423193 ], [ 357366.200099997222424, 258318.53489999845624 ], [ 357365.417199999094009, 258315.784200001507998 ], [ 357366.29900000244379, 258306.925500001758337 ], [ 357364.707999996840954, 258304.379399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "A9-209-T73", "PARCEL_NAM": "11D-1", "ACRE": null, "LONGITUDE": -64.94545988, "LATITUDE": 18.35448457, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.839969588, "SHAPE_Area": 1063.1196213400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357267.281499996781349, 258317.882399998605251 ], [ 357260.606200002133846, 258294.839999999850988 ], [ 357253.700599998235703, 258300.475699998438358 ], [ 357237.984300002455711, 258309.365699999034405 ], [ 357232.428099997341633, 258312.778799999505281 ], [ 357248.061899997293949, 258342.652699999511242 ], [ 357253.095200002193451, 258343.573699999600649 ], [ 357257.949199996888638, 258341.713599998503923 ], [ 357261.185300000011921, 258340.473499998450279 ], [ 357264.441100001335144, 258336.911499999463558 ], [ 357267.734700001776218, 258328.916900001466274 ], [ 357270.180600002408028, 258325.770500000566244 ], [ 357267.281499996781349, 258317.882399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "B9-394-T73", "PARCEL_NAM": "11D-6", "ACRE": null, "LONGITUDE": -64.94527608, "LATITUDE": 18.35446385, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.393621253799999, "SHAPE_Area": 58.708769967599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357267.281499996781349, 258317.882399998605251 ], [ 357270.180600002408028, 258325.770500000566244 ], [ 357279.975000001490116, 258311.918499998748302 ], [ 357267.281499996781349, 258317.882399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9132728, "LATITUDE": 18.35443453, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.981738248, "SHAPE_Area": 87.1465897936 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360649.445100001990795, 258352.372800000011921 ], [ 360664.921499997377396, 258334.134300000965595 ], [ 360663.323299996554852, 258332.432500001043081 ], [ 360656.008900001645088, 258339.127599999308586 ], [ 360654.374700002372265, 258341.647300001233816 ], [ 360645.444099999964237, 258348.751400001347065 ], [ 360649.445100001990795, 258352.372800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "B9-394-T73", "PARCEL_NAM": "11D-4", "ACRE": ".088", "LONGITUDE": -64.9455628, "LATITUDE": 18.35433227, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.897108366, "SHAPE_Area": 310.48838925799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357216.985500000417233, 258322.802000001072884 ], [ 357232.428099997341633, 258312.778799999505281 ], [ 357237.984300002455711, 258309.365699999034405 ], [ 357245.524999998509884, 258305.1587999984622 ], [ 357253.700599998235703, 258300.475699998438358 ], [ 357260.606200002133846, 258294.839999999850988 ], [ 357270.528099998831749, 258284.997499998658895 ], [ 357283.113499999046326, 258273.594000000506639 ], [ 357260.007799997925758, 258289.379200000315905 ], [ 357250.270900003612041, 258296.476700000464916 ], [ 357242.958400003612041, 258302.960700001567602 ], [ 357221.976999998092651, 258314.445700000971556 ], [ 357207.901100002229214, 258320.583999998867512 ], [ 357214.82940000295639, 258323.730099998414516 ], [ 357216.985500000417233, 258322.802000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "B9-394-T73", "PARCEL_NAM": "11BA&11BB", "ACRE": null, "LONGITUDE": -64.94523513, "LATITUDE": 18.35426686, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.50730806, "SHAPE_Area": 824.33993078100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357260.606200002133846, 258294.839999999850988 ], [ 357267.281499996781349, 258317.882399998605251 ], [ 357279.975000001490116, 258311.918499998748302 ], [ 357283.230800002813339, 258308.356600001454353 ], [ 357294.596500001847744, 258299.372600000351667 ], [ 357283.113499999046326, 258273.594000000506639 ], [ 357278.065700002014637, 258278.16780000180006 ], [ 357270.528099998831749, 258284.997499998658895 ], [ 357260.606200002133846, 258294.839999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003013400", "MAP": "G9-1348-T69", "PARCEL_NAM": "12B-2", "ACRE": ".25", "LONGITUDE": -64.909183, "LATITUDE": 18.35415261, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.31112631, "SHAPE_Area": 1180.8162690500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361110.968800000846386, 258319.419799998402596 ], [ 361088.629399999976158, 258291.372600000351667 ], [ 361087.005999997258186, 258292.625900000333786 ], [ 361061.8412000015378, 258312.262699998915195 ], [ 361089.031099997460842, 258338.872000001370907 ], [ 361093.894100002944469, 258335.956500001251698 ], [ 361110.968800000846386, 258319.419799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "B9-394-T73", "PARCEL_NAM": "11CA,11CB&11CC", "ACRE": null, "LONGITUDE": -64.94453087, "LATITUDE": 18.35409742, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.948852714, "SHAPE_Area": 1858.27587836 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357384.527900002896786, 258276.824599999934435 ], [ 357357.973099999129772, 258259.6239 ], [ 357323.146200001239777, 258259.937600001692772 ], [ 357323.706500001251698, 258289.900499999523163 ], [ 357336.596699997782707, 258291.272599998861551 ], [ 357343.837300002574921, 258293.231699999421835 ], [ 357348.664399996399879, 258294.537799999117851 ], [ 357363.116899996995926, 258301.833200000226498 ], [ 357364.707999996840954, 258304.379399999976158 ], [ 357367.943999998271465, 258303.139299999922514 ], [ 357368.777300000190735, 258299.979699999094009 ], [ 357372.051100000739098, 258294.307000000029802 ], [ 357384.078699998557568, 258282.589800000190735 ], [ 357384.527900002896786, 258276.824599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "B9-394-T73", "PARCEL_NAM": "11BC&11BD", "ACRE": null, "LONGITUDE": -64.94496246, "LATITUDE": 18.35410722, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.36618719500001, "SHAPE_Area": 1019.32421547 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357323.146200001239777, 258259.937600001692772 ], [ 357309.395499996840954, 258263.857299998402596 ], [ 357283.113499999046326, 258273.594000000506639 ], [ 357294.596500001847744, 258299.372600000351667 ], [ 357307.551500000059605, 258293.145799998193979 ], [ 357323.706500001251698, 258289.900499999523163 ], [ 357323.146200001239777, 258259.937600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015230", "MAP": "D9-8143-T008", "PARCEL_NAM": "10N", "ACRE": "0.24", "LONGITUDE": -64.91176711, "LATITUDE": 18.35384266, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.21139146, "SHAPE_Area": 889.21055535999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360841.230099998414516, 258294.709600001573563 ], [ 360814.74210000038147, 258258.733500000089407 ], [ 360786.348499998450279, 258278.766100000590086 ], [ 360804.827200002968311, 258286.727800000458956 ], [ 360834.590599998831749, 258295.204100001603365 ], [ 360837.801500000059605, 258296.919100001454353 ], [ 360841.230099998414516, 258294.709600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95826759000001, "LATITUDE": 18.35377947, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.233797885, "SHAPE_Area": 888.22763980800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355895.40990000218153, 258220.793200001120567 ], [ 355879.289099998772144, 258220.027899999171495 ], [ 355879.863399997353554, 258247.263700000941753 ], [ 355929.982500001788139, 258232.686299998313189 ], [ 355934.852700002491474, 258228.926399998366833 ], [ 355931.64360000193119, 258227.000300001353025 ], [ 355895.40990000218153, 258220.793200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "B9-334-T71", "PARCEL_NAM": "12A-32", "ACRE": "1.37", "LONGITUDE": -64.91014381, "LATITUDE": 18.35331498, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 368.92555092200001, "SHAPE_Area": 5516.6795500199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360965.178300000727177, 258205.713700000196695 ], [ 360970.648100003600121, 258226.234600000083447 ], [ 360938.906999997794628, 258260.594099998474121 ], [ 360958.024700000882149, 258288.192800000309944 ], [ 360979.071599997580051, 258278.654699999839067 ], [ 360997.688699997961521, 258270.363400001078844 ], [ 360999.344499997794628, 258265.310699999332428 ], [ 361006.790100000798702, 258243.206799998879433 ], [ 361006.167199999094009, 258221.670099999755621 ], [ 361003.938900001347065, 258199.276000000536442 ], [ 361034.008000001311302, 258171.86879999935627 ], [ 361033.216099999845028, 258170.173599999397993 ], [ 361031.63400000333786, 258166.57209999859333 ], [ 361024.45269999653101, 258157.647399999201298 ], [ 361017.23369999974966, 258153.155299998819828 ], [ 361003.564099997282028, 258148.610500000417233 ], [ 361001.143399998545647, 258148.801699999719858 ], [ 360998.706500001251698, 258150.892700001597404 ], [ 360996.221000000834465, 258158.682900000363588 ], [ 360991.295000001788139, 258168.986099999397993 ], [ 360966.808899998664856, 258203.616099998354912 ], [ 360965.178300000727177, 258205.713700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94040427, "LATITUDE": 18.35312826, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.55446920200001, "SHAPE_Area": 4353.4811615400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357740.943300001323223, 258154.838100001215935 ], [ 357753.497299998998642, 258195.68189999833703 ], [ 357774.114399999380112, 258236.591699998825788 ], [ 357779.26690000295639, 258199.692499998956919 ], [ 357780.125399999320507, 258193.577799998223782 ], [ 357800.304799996316433, 258191.209800001233816 ], [ 357809.203000001609325, 258187.905099999159575 ], [ 357821.321099996566772, 258185.260099999606609 ], [ 357839.06530000269413, 258184.771999999880791 ], [ 357838.570100001990795, 258148.248799998313189 ], [ 357790.189499996602535, 258148.063900001347065 ], [ 357740.943300001323223, 258154.838100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94006283, "LATITUDE": 18.35343936, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.973210032, "SHAPE_Area": 2945.1845696700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357779.26690000295639, 258199.692499998956919 ], [ 357774.114399999380112, 258236.591699998825788 ], [ 357777.354000002145767, 258234.929400000721216 ], [ 357781.423299998044968, 258230.529800001531839 ], [ 357784.663000002503395, 258228.867499999701977 ], [ 357817.743400000035763, 258226.605200000107288 ], [ 357845.204700000584126, 258221.341499999165535 ], [ 357868.650700002908707, 258214.145100001245737 ], [ 357891.311999998986721, 258204.409200001507998 ], [ 357896.977799996733665, 258201.922400001436472 ], [ 357871.199100002646446, 258198.967199999839067 ], [ 357851.894400000572205, 258193.320799998939037 ], [ 357836.597800001502037, 258190.451400000602007 ], [ 357820.460799999535084, 258191.585900001227856 ], [ 357798.636399999260902, 258197.739999998360872 ], [ 357779.26690000295639, 258199.692499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022700", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96448707, "LATITUDE": 18.35315484, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.88578194300001, "SHAPE_Area": 784.06095761999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355261.501900002360344, 258138.133600000292063 ], [ 355229.978399999439716, 258146.952599998563528 ], [ 355232.064699999988079, 258186.021999999880791 ], [ 355235.33669999986887, 258180.560300000011921 ], [ 355240.217699997127056, 258175.534000001847744 ], [ 355241.835799999535084, 258174.914000000804663 ], [ 355249.177100002765656, 258165.052700001746416 ], [ 355255.688699997961521, 258157.928800001740456 ], [ 355261.447999998927116, 258144.465999998152256 ], [ 355261.501900002360344, 258138.133600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9409224, "LATITUDE": 18.35312128, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.3684939, "SHAPE_Area": 892.224519558 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357740.943300001323223, 258154.838100001215935 ], [ 357724.800899997353554, 258156.605799999088049 ], [ 357712.544399999082088, 258175.503899998962879 ], [ 357719.75450000166893, 258181.051300000399351 ], [ 357753.497299998998642, 258195.68189999833703 ], [ 357740.943300001323223, 258154.838100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021300", "MAP": "D9-4360-T88", "PARCEL_NAM": "6-2", "ACRE": ".199", "LONGITUDE": -64.93565883, "LATITUDE": 18.35271305, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.58958314200001, "SHAPE_Area": 960.96492250200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358264.394799999892712, 258140.968199998140335 ], [ 358266.869499996304512, 258134.444600000977516 ], [ 358314.353799998760223, 258145.17680000141263 ], [ 358328.9375, 258137.063499998301268 ], [ 358316.895000003278255, 258130.843199998140335 ], [ 358264.589000001549721, 258118.171700000762939 ], [ 358260.347000002861023, 258142.834899999201298 ], [ 358259.474200002849102, 258150.638199999928474 ], [ 358261.934799998998642, 258151.152800001204014 ], [ 358264.394799999892712, 258140.968199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95190622, "LATITUDE": 18.35270189, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.81418248, "SHAPE_Area": 483.90167168099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356600.354699999094009, 258105.184000000357628 ], [ 356587.385300002992153, 258113.099399998784065 ], [ 356576.059199996292591, 258117.439699999988079 ], [ 356566.365500003099442, 258119.4712999984622 ], [ 356557.490599997341633, 258120.031899999827147 ], [ 356549.422100000083447, 258120.599199999123812 ], [ 356534.924699999392033, 258118.580699998885393 ], [ 356524.471400000154972, 258115.117600001394749 ], [ 356529.228299997746944, 258124.655799999833107 ], [ 356585.700800001621246, 258121.529399998486042 ], [ 356605.88740000128746, 258118.317099999636412 ], [ 356606.73139999806881, 258113.890999998897314 ], [ 356600.354699999094009, 258105.184000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91828119, "LATITUDE": 18.35217813, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.68311280527999996, "SHAPE_Area": 0.01640236019 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360127.499200001358986, 258089.067200001329184 ], [ 360127.72860000282526, 258088.861200001090765 ], [ 360127.550200000405312, 258088.878400001674891 ], [ 360127.499200001358986, 258089.067200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92962185, "LATITUDE": 18.35223706, "OBJECTID_1": 4718, "PARCEL_NO_": "102903010500", "Tax_Legal_": "30 ESTATE MAFOLIE No.8F GREAT NORTHSIDE QTR.", "Name": "BOYNES, JAMES U. & JOANNA", "Address": "PO Box 1206", "City": "ST. JOHN", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 116800, "Improved_V": 413400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.414166744, "SHAPE_Area": 940.13906682899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358915.010899998247623, 258060.800299998372793 ], [ 358921.074799999594688, 258106.234999999403954 ], [ 358930.752300001680851, 258106.103199999779463 ], [ 358940.411899998784065, 258108.082100000232458 ], [ 358943.647900000214577, 258106.842000000178814 ], [ 358943.66950000077486, 258104.309000000357628 ], [ 358939.061800003051758, 258077.251400001347065 ], [ 358935.895900003612041, 258070.259399998933077 ], [ 358927.892099998891354, 258063.227800000458956 ], [ 358920.655100002884865, 258060.846500001847744 ], [ 358915.010899998247623, 258060.800299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003015900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91046311, "LATITUDE": 18.35222254, "OBJECTID_1": 5672, "PARCEL_NO_": "103003015900", "Tax_Legal_": "12A-3 ST.JOSEPH&ROSENDAHL GT. NORTHSIDE", "Name": "THOMAS, VERDELL (LIFE ESTATE)", "Address": "8303Scotfree", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23200, "Improved_V": 200100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.01836293300001, "SHAPE_Area": 999.796254374 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360975.771099999547005, 258098.142700001597404 ], [ 360946.099399998784065, 258078.901500001549721 ], [ 360933.04559999704361, 258096.73759999871254 ], [ 360955.384999997913837, 258124.784800000488758 ], [ 360968.409999996423721, 258110.325899999588728 ], [ 360975.771099999547005, 258098.142700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003035700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91122501, "LATITUDE": 18.35218599, "OBJECTID_1": 5853, "PARCEL_NO_": "103003035700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12C-1 GT. NORTHSIDE QTR.", "Name": "RICHARDS, RIISE E. S. & JOHN C", "Address": "PO Box 7293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.86128015899999, "SHAPE_Area": 2934.54667221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360919.307700000703335, 258100.213700000196695 ], [ 360872.899400003254414, 258057.826299998909235 ], [ 360858.22749999910593, 258076.282400000840425 ], [ 360837.00450000166893, 258106.50620000064373 ], [ 360835.355899997055531, 258110.714600000530481 ], [ 360833.730700001120567, 258112.178899999707937 ], [ 360829.623599998652935, 258121.011199999600649 ], [ 360840.899400003254414, 258122.581199999898672 ], [ 360850.582299999892712, 258121.816100001335144 ], [ 360902.287000000476837, 258110.418000001460314 ], [ 360915.24379999935627, 258103.980099998414516 ], [ 360919.307700000703335, 258100.213700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704049900", "MAP": "G9-213-T52", "PARCEL_NAM": "5-41", "ACRE": ".27", "LONGITUDE": -64.95172815, "LATITUDE": 18.35221057, "OBJECTID_1": 3616, "PARCEL_NO_": "102704049900", "Tax_Legal_": "LILLIENHOJ&MARIENHOJ 5-41&5-43 No.3 LITTLE NORTHSIDE QTR", "Name": "LEE, NOELLE LUCETTE", "Address": "12 Kern Blvd", "City": "Cumberland", "State": "Rhode Island", "Zip": 2864, "Country": "United States", "Land_Value": 43900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.067319854, "SHAPE_Area": 1015.62647941 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356592.831000000238419, 258041.794399999082088 ], [ 356570.994000002741814, 258049.426100000739098 ], [ 356590.833599999547005, 258086.951999999582767 ], [ 356615.143399998545647, 258073.007699999958277 ], [ 356613.557800002396107, 258069.828299999237061 ], [ 356603.181800000369549, 258057.288899999111891 ], [ 356592.831000000238419, 258041.794399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97087992, "LATITUDE": 18.35222921, "OBJECTID_1": 2753, "PARCEL_NO_": "102604027000", "Tax_Legal_": "LINDBERG BAY 44I S.S. QTR", "Name": "KRIGGER, ALARICK R. & FLORENCE K.", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47200, "Improved_V": 352100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.502770873, "SHAPE_Area": 2013.8966715700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354585.863499999046326, 258031.912200000137091 ], [ 354541.545100003480911, 258028.171999998390675 ], [ 354541.197999998927116, 258068.910199999809265 ], [ 354589.603799998760223, 258066.140000000596046 ], [ 354615.605400003492832, 258042.921399999409914 ], [ 354606.743100002408028, 258042.00450000166893 ], [ 354603.487300001084805, 258045.566399998962879 ], [ 354601.831500001251698, 258050.619100000709295 ], [ 354595.382799997925758, 258050.355200000107288 ], [ 354594.630500003695488, 258044.01630000025034 ], [ 354592.218699999153614, 258043.152199998497963 ], [ 354585.807800002396107, 258038.455600000917912 ], [ 354585.863499999046326, 258031.912200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9316148, "LATITUDE": 18.35206396, "OBJECTID_1": 4715, "PARCEL_NO_": "102903010200", "Tax_Legal_": "MAFOLIE 26 GR NORTHSIDE", "Name": "CREQUE, MARGARET L. & SCOBIE, JULIETTE E.", "Address": "12 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.66059307500001, "SHAPE_Area": 3056.1612147000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358719.511100001633167, 258102.896600000560284 ], [ 358760.967500001192093, 258063.972500000149012 ], [ 358758.557499997317791, 258062.897300001233816 ], [ 358753.757399998605251, 258058.42509999871254 ], [ 358742.594899997115135, 258043.557100001722574 ], [ 358738.58669999986887, 258040.780099999159575 ], [ 358732.960500001907349, 258038.623100001364946 ], [ 358725.70549999922514, 258038.352699998766184 ], [ 358669.961999997496605, 258050.561999998986721 ], [ 358669.945900000631809, 258052.461800001561642 ], [ 358682.756899997591972, 258063.121300000697374 ], [ 358701.943000003695488, 258082.698899999260902 ], [ 358713.130699999630451, 258094.611699998378754 ], [ 358719.511100001633167, 258102.896600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804030101", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93643679, "LATITUDE": 18.35204434, "OBJECTID_1": 4620, "PARCEL_NO_": "102804030101", "Tax_Legal_": "ELIZABETH 11 ARAWAK VILLAGE B#2 UNIT#1", "Name": "FORTUNA RANCH LLC", "Address": "3206 Estate Bethesda", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 91200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.40900561399999, "SHAPE_Area": 3626.60810666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358226.060400001704693, 258097.380300000309944 ], [ 358246.097000002861023, 258017.117600001394749 ], [ 358209.7212999984622, 258027.585700001567602 ], [ 358198.382500000298023, 258033.403499998152256 ], [ 358193.512299999594688, 258037.16330000013113 ], [ 358181.30969999730587, 258049.729100000113249 ], [ 358172.359399996697903, 258059.155000001192093 ], [ 358164.20269999653101, 258070.065099999308586 ], [ 358164.960500001907349, 258075.770899999886751 ], [ 358168.968699999153614, 258078.547899998724461 ], [ 358184.25620000064373, 258082.472699999809265 ], [ 358226.060400001704693, 258097.380300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704031300", "MAP": "G9-223-T52", "PARCEL_NAM": "5-51", "ACRE": "0.40", "LONGITUDE": -64.95432442000001, "LATITUDE": 18.35214777, "OBJECTID_1": 3534, "PARCEL_NO_": "102704031300", "Tax_Legal_": "5-49,5-50,5-51&5-52 LILLIENDAHL No.3 LT.NORTHSIDE QTR.", "Name": "5-49 L & M, LLC", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 154300, "Improved_V": 509600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.71217033600001, "SHAPE_Area": 1184.38445897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356293.334799997508526, 258080.928599998354912 ], [ 356339.481600001454353, 258059.35249999910593 ], [ 356331.693599998950958, 258026.991500001400709 ], [ 356320.354900002479553, 258032.809300001710653 ], [ 356316.296400003135204, 258035.942499998956919 ], [ 356310.5929000005126, 258042.861900001764297 ], [ 356297.483300000429153, 258067.241399999707937 ], [ 356295.859899997711182, 258068.494699999690056 ], [ 356293.388800002634525, 258074.596200000494719 ], [ 356293.334799997508526, 258080.928599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804032000", "MAP": "C9-77-T67", "PARCEL_NAM": "33", "ACRE": null, "LONGITUDE": -64.93333937, "LATITUDE": 18.35204515, "OBJECTID_1": 4646, "PARCEL_NO_": "102804032000", "Tax_Legal_": "ELIZABETH REM. 33 GR NORTHSIDE QTR", "Name": "LRS VI ESTATE LLC", "Address": "PO Box 1101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 263000, "Improved_V": 88700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.079271288, "SHAPE_Area": 3474.3597712300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358560.692699998617172, 258098.641399998217821 ], [ 358566.095200002193451, 258032.402300000190735 ], [ 358554.851800002157688, 258027.032900001853704 ], [ 358548.413900002837181, 258025.502599999308586 ], [ 358538.738099999725819, 258025.42339999973774 ], [ 358531.463299997150898, 258027.474800001829863 ], [ 358524.156099997460842, 258033.325599998235703 ], [ 358517.648100003600121, 258040.027300000190735 ], [ 358509.448299996554852, 258056.003299999982119 ], [ 358500.512299999594688, 258063.740600001066923 ], [ 358491.603299997746944, 258068.311799999326468 ], [ 358489.92960000038147, 258075.475299999117851 ], [ 358560.692699998617172, 258098.641399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91121805, "LATITUDE": 18.35143472, "OBJECTID_1": 5809, "PARCEL_NO_": "103003031300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4E GR NORTHSIDE", "Name": "SMITH, C WARREN & MARJORIE", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 154400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 440.92811120499999, "SHAPE_Area": 6792.5483798200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360941.436999998986721, 257963.606199998408556 ], [ 360900.4121999964118, 257951.871399998664856 ], [ 360881.107500001788139, 257946.225000001490116 ], [ 360849.946099996566772, 258007.186999998986721 ], [ 360832.720499999821186, 258041.454300001263618 ], [ 360823.20549999922514, 258117.159000001847744 ], [ 360825.638800002634525, 258115.490200001746416 ], [ 360827.276600003242493, 258112.548300001770258 ], [ 360830.563000001013279, 258105.397999998182058 ], [ 360833.005300000309944, 258102.673799999058247 ], [ 360842.819499999284744, 258086.499899998307228 ], [ 360850.974299997091293, 258075.800900001078844 ], [ 360866.45610000193119, 258056.929200001060963 ], [ 360877.035300001502037, 258045.616700001060963 ], [ 360894.120700001716614, 258027.8136 ], [ 360899.833200000226498, 258019.838799998164177 ], [ 360909.65820000320673, 258002.398400001227856 ], [ 360919.459799997508526, 257987.702100001275539 ], [ 360929.229099996387959, 257976.80519999936223 ], [ 360930.051600001752377, 257974.912099998444319 ], [ 360941.436999998986721, 257963.606199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93468904, "LATITUDE": 18.35209762, "OBJECTID_1": 4643, "PARCEL_NO_": "102804031700", "Tax_Legal_": "38 ELIZABETH NO. 8i GREAT NORTHSIDE QTR", "Name": "NATALIA SIBILLY, TRUSTEE", "Address": "PO Box 10557", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57500, "Improved_V": 365700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.33996711500001, "SHAPE_Area": 1551.3529256700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358422.29280000180006, 258063.94480000063777 ], [ 358399.924699999392033, 258039.274900000542402 ], [ 358367.479800000786781, 258061.596400000154972 ], [ 358384.128200002014637, 258095.085400000214577 ], [ 358416.607299998402596, 258068.753400001674891 ], [ 358422.29280000180006, 258063.94480000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95309356, "LATITUDE": 18.35198222, "OBJECTID_1": 3535, "PARCEL_NO_": "102704031400", "Tax_Legal_": "5-46 LILLIENDAHL & MARIENHOJ NO 3 LITTLE NORTHSIDE", "Name": "GRUPO EDIFICA CORPORATION", "Address": "4600 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61000, "Improved_V": 428200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.47200246099999, "SHAPE_Area": 3347.2985227700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356478.722999997437, 257995.264199998229742 ], [ 356413.151000000536442, 258025.336100000888109 ], [ 356427.229400001466274, 258076.535999998450279 ], [ 356460.388999998569489, 258064.986099999397993 ], [ 356467.687100000679493, 258060.190699998289347 ], [ 356473.392499998211861, 258053.060199998319149 ], [ 356475.879699997603893, 258045.059000000357628 ], [ 356478.722999997437, 257995.264199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90984908, "LATITUDE": 18.35221154, "OBJECTID_1": 5684, "PARCEL_NO_": "103003016500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-8 GR NORTHSIDE QTR", "Name": "JOSEPH, FELICITA E.", "Address": "6117 St Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24800, "Improved_V": 303400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.847391114, "SHAPE_Area": 878.78106937699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361000.052199997007847, 258087.575699999928474 ], [ 361002.253600001335144, 258113.135999999940395 ], [ 361032.092500001192093, 258112.747000001370907 ], [ 361041.140000000596046, 258091.922699999064207 ], [ 361029.075900003314018, 258088.235399998724461 ], [ 361000.052199997007847, 258087.575699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703035400", "MAP": "C9-185-T74", "PARCEL_NAM": "108-C", "ACRE": "1.3", "LONGITUDE": -64.95904889000001, "LATITUDE": 18.35186171, "OBJECTID_1": 3337, "PARCEL_NO_": "102703035400", "Tax_Legal_": "CONTANT 108-C 7B S S QTR", "Name": "SCH OF PERF ARTS INC", "Address": "BOX 2662", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 203600, "Improved_V": 6100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 377.12850725499999, "SHAPE_Area": 5653.9509788599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355889.949500001966953, 258009.86600000038743 ], [ 355886.234399996697903, 257972.683100000023842 ], [ 355850.682899996638298, 257981.046999998390675 ], [ 355806.146899998188019, 258002.847300000488758 ], [ 355740.569499999284744, 258033.552400000393391 ], [ 355749.383199997246265, 258040.168499998748302 ], [ 355787.031700000166893, 258069.607500001788139 ], [ 355839.036700002849102, 258022.959300000220537 ], [ 355889.949500001966953, 258009.86600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023300", "MAP": "D9-80-T55", "PARCEL_NAM": "27", "ACRE": null, "LONGITUDE": -64.93710997, "LATITUDE": 18.3519242, "OBJECTID_1": 4537, "PARCEL_NO_": "102804023300", "Tax_Legal_": "ELIZABETH 27 GREAT NORTHSIDE QTR", "Name": "STANFORD, DONALD L. & JANE", "Address": "PO Box 11837", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 106800, "Improved_V": 744600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.59416256099999, "SHAPE_Area": 3624.0528782800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358170.85639999806881, 258046.265999998897314 ], [ 358159.200499996542931, 257994.663800001144409 ], [ 358093.409100003540516, 258050.487300001084805 ], [ 358135.821800000965595, 258088.620200000703335 ], [ 358147.203599996864796, 258077.7364999987185 ], [ 358155.360299997031689, 258066.826299998909235 ], [ 358158.619699999690056, 258062.842199999839067 ], [ 358160.268299996852875, 258058.633900001645088 ], [ 358166.792499996721745, 258050.032400000840425 ], [ 358170.85639999806881, 258046.265999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95219072, "LATITUDE": 18.35200454, "OBJECTID_1": 3531, "PARCEL_NO_": "102704031000", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-2A LITTLE NORTHSIDE", "Name": "KING, JENNIFER", "Address": "PO Box 307227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26900, "Improved_V": 221100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.39822198900001, "SHAPE_Area": 1827.4298987499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356532.645300000905991, 258007.526799999177456 ], [ 356512.376000002026558, 258020.448699999600649 ], [ 356553.840300001204014, 258075.250199999660254 ], [ 356574.062799997627735, 258067.816399998962879 ], [ 356564.538099996745586, 258050.006499998271465 ], [ 356562.142599999904633, 258047.24269999936223 ], [ 356549.475299999117851, 258019.696899998933077 ], [ 356546.280699998140335, 258016.082100000232458 ], [ 356532.645300000905991, 258007.526799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91662935, "LATITUDE": 18.35190746, "OBJECTID_1": 4965, "PARCEL_NO_": "102904015000", "Tax_Legal_": "ST JOSE & ROSE 1-27 GR NORTHSIDE QTR", "Name": "KAHUGU, FLORENCE", "Address": "PO BOX 304342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 80200, "Improved_V": 524500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.84326508300001, "SHAPE_Area": 2045.21106452 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360274.653300002217293, 258048.496899999678135 ], [ 360302.397699996829033, 258104.663800001144409 ], [ 360304.845399998128414, 258101.30629999935627 ], [ 360310.593900002539158, 258089.109999999403954 ], [ 360317.935300000011921, 258079.248700000345707 ], [ 360318.77929999679327, 258074.822599999606609 ], [ 360318.880000002682209, 258063.002199999988079 ], [ 360320.837899997830391, 258022.488200001418591 ], [ 360316.003600001335144, 258022.026500001549721 ], [ 360308.683899998664856, 258029.354899998754263 ], [ 360298.138899996876717, 258036.656800001859665 ], [ 360284.365000002086163, 258044.354600001126528 ], [ 360274.653300002217293, 258048.496899999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91918179, "LATITUDE": 18.35201813, "OBJECTID_1": 4967, "PARCEL_NO_": "102904015400", "Tax_Legal_": "2 ESTATE LOUISENHOJ No.5 GREAT NORTHSIDE QTR.", "Name": "BILLIE M HODGES GREGORY H HODGES REVOC TRUST", "Address": "PO Box 756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 74700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.42987483300001, "SHAPE_Area": 2266.8236031299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360069.389600001275539, 258100.856899999082088 ], [ 360022.493299998342991, 258021.10190000012517 ], [ 360005.784400001168251, 258089.359499998390675 ], [ 360069.389600001275539, 258100.856899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91906124, "LATITUDE": 18.35114465, "OBJECTID_1": 4968, "PARCEL_NO_": "102904015500", "Tax_Legal_": "LOUISENHOJ 1A GREAT NORTHSIDE QTR", "Name": "BILLIE M HODGES GREGORY H HODGES REVOC TRUST", "Address": "PO Box 756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 250000, "Improved_V": 542000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 576.04483999399997, "SHAPE_Area": 13032.9422789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360103.939099997282028, 257926.143100000917912 ], [ 360070.892899997532368, 257924.394999999552965 ], [ 360080.487700000405312, 257933.972699999809265 ], [ 360076.418399997055531, 257938.372400000691414 ], [ 360047.633900001645088, 257909.639199998229742 ], [ 360038.028300002217293, 257901.327899999916553 ], [ 360018.786499999463558, 257888.293699998408556 ], [ 360005.939400002360344, 257881.855799999088049 ], [ 359980.841300003230572, 257893.682700000703335 ], [ 360022.493299998342991, 258021.10190000012517 ], [ 360069.389600001275539, 258100.856899999082088 ], [ 360098.030599996447563, 257957.125500001013279 ], [ 360103.939099997282028, 257926.143100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003023000", "MAP": "F9-1365-T64", "PARCEL_NAM": "2-29", "ACRE": "0.52", "LONGITUDE": -64.91593298, "LATITUDE": 18.35182713, "OBJECTID_1": 5748, "PARCEL_NO_": "103003023000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-29 GR NORTHSIDE QTR", "Name": "TSIONIS, AUTHUR L", "Address": "4 Robert Rd", "City": "Peabody", "State": "Massachusetts", "Zip": 1960, "Country": "United States", "Land_Value": 62600, "Improved_V": 290200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.612966312, "SHAPE_Area": 2400.2586244200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360407.480999998748302, 258025.066199999302626 ], [ 360364.773100003600121, 258018.786800000816584 ], [ 360363.558100000023842, 258024.526599999517202 ], [ 360350.942199997603893, 258082.47749999910593 ], [ 360378.053000003099442, 258092.086300000548363 ], [ 360384.93469999730587, 258070.931099999696016 ], [ 360387.384199999272823, 258067.362500000745058 ], [ 360393.139899998903275, 258054.321899998933077 ], [ 360399.682099997997284, 258043.609600000083447 ], [ 360404.613499999046326, 258032.673099998384714 ], [ 360407.480999998748302, 258025.066199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704032200", "MAP": "D9-7662-T005", "PARCEL_NAM": "5-11", "ACRE": ".822", "LONGITUDE": -64.95473755, "LATITUDE": 18.3520011, "OBJECTID_1": 3538, "PARCEL_NO_": "102704032200", "Tax_Legal_": "LILLIENDAHL/MARIENDAHL 5-10 & 11 LITTLE NORTHSIDE", "Name": "5-10/11 L & M, LLC", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.28848122599999, "SHAPE_Area": 3757.5837736600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356234.981100000441074, 258020.922600001096725 ], [ 356228.991700001060963, 258061.403499998152256 ], [ 356233.824100002646446, 258062.076400000602007 ], [ 356255.571199998259544, 258064.998599998652935 ], [ 356291.85530000180006, 258065.295499999076128 ], [ 356303.339599996805191, 258042.380300000309944 ], [ 356311.490900002419949, 258032.103500001132488 ], [ 356317.174599997699261, 258027.505899999290705 ], [ 356323.657499998807907, 258023.759300000965595 ], [ 356341.448499999940395, 258017.78319999948144 ], [ 356341.468299999833107, 258015.461300000548363 ], [ 356336.648400001227856, 258013.310899998992682 ], [ 356330.208700001239777, 258011.991700001060963 ], [ 356303.589599996805191, 258013.040399998426437 ], [ 356282.605700001120567, 258015.190600000321865 ], [ 356247.07940000295639, 258020.599399998784065 ], [ 356234.981100000441074, 258020.922600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904018600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91770733, "LATITUDE": 18.3518628, "OBJECTID_1": 4996, "PARCEL_NO_": "102904018600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-9 GR NORTHSIDE", "Name": "BRADY, ALBERT F. & LOUISE", "Address": "PO Box 8525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64300, "Improved_V": 312000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.912953458, "SHAPE_Area": 1552.6306545699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360187.018799997866154, 258018.015500001609325 ], [ 360185.294699996709824, 258031.089200001209974 ], [ 360179.594800002872944, 258037.586399998515844 ], [ 360177.939000003039837, 258042.63910000026226 ], [ 360172.041299998760223, 258072.355099998414516 ], [ 360167.001999996602535, 258095.956300001591444 ], [ 360175.864200003445148, 258096.873199999332428 ], [ 360176.737099997699261, 258089.069899998605251 ], [ 360180.01630000025034, 258082.763900000602007 ], [ 360192.197300001978874, 258072.731100000441074 ], [ 360199.531400002539158, 258063.714099999517202 ], [ 360204.469999998807907, 258051.933299999684095 ], [ 360206.098800003528595, 258050.046799998730421 ], [ 360212.712899997830391, 258030.891399998217821 ], [ 360188.59009999781847, 258022.883499998599291 ], [ 360187.018799997866154, 258018.015500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91087801, "LATITUDE": 18.35189838, "OBJECTID_1": 5808, "PARCEL_NO_": "103003031200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12C&12D GR NORTHSIDE", "Name": "RICHARDS, RIISE ELLEN & JOHN", "Address": "PO Box 7293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 156300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.709626155, "SHAPE_Area": 2489.9653312800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360945.415399998426437, 258064.541499998420477 ], [ 360899.743299998342991, 258030.392700001597404 ], [ 360887.528099998831749, 258044.436000000685453 ], [ 360872.899400003254414, 258057.826299998909235 ], [ 360919.307700000703335, 258100.213700000196695 ], [ 360924.186899997293949, 258095.398499999195337 ], [ 360939.683100000023842, 258074.838199999183416 ], [ 360945.415399998426437, 258064.541499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704032600", "MAP": "F9-2140-T67", "PARCEL_NAM": "5-12B", "ACRE": ".26", "LONGITUDE": -64.95531174, "LATITUDE": 18.35202487, "OBJECTID_1": 3542, "PARCEL_NO_": "102704032600", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-12B LITTLE NORTHSIDE QTR", "Name": "NELTHROPP, PHILIP L.", "Address": "PO Box 8147", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28000, "Improved_V": 299400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.83291860400001, "SHAPE_Area": 1427.02457826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356210.804300002753735, 258019.247000001370907 ], [ 356204.423299998044968, 258017.582699999213219 ], [ 356191.975100003182888, 258047.067499998956919 ], [ 356188.440099999308586, 258055.440600000321865 ], [ 356192.750799998641014, 258056.040699999779463 ], [ 356224.965499997138977, 258060.737300001084805 ], [ 356228.991700001060963, 258061.403499998152256 ], [ 356234.981100000441074, 258020.922600001096725 ], [ 356212.296899996697903, 258019.350499998778105 ], [ 356210.804300002753735, 258019.247000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91032384, "LATITUDE": 18.35198303, "OBJECTID_1": 5674, "PARCEL_NO_": "103003016000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-4 GR NORTHSIDE", "Name": "SHADEED, NIDA B", "Address": "PO Box 9176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26100, "Improved_V": 176800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.13764433399999, "SHAPE_Area": 1146.8589044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360991.231299996376038, 258081.804000001400709 ], [ 360968.143200002610683, 258046.995600000023842 ], [ 360958.377499997615814, 258057.470400001853704 ], [ 360954.270400002598763, 258066.302700001746416 ], [ 360946.099399998784065, 258078.901500001549721 ], [ 360975.771099999547005, 258098.142700001597404 ], [ 360981.492700003087521, 258089.112500000745058 ], [ 360983.933200001716614, 258086.599399998784065 ], [ 360991.231299996376038, 258081.804000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704031300", "MAP": "G9-224-T52", "PARCEL_NAM": "5-49", "ACRE": "0.45", "LONGITUDE": -64.95400949, "LATITUDE": 18.35198117, "OBJECTID_1": 3534, "PARCEL_NO_": "102704031300", "Tax_Legal_": "5-49,5-50,5-51&5-52 LILLIENDAHL No.3 LT.NORTHSIDE QTR.", "Name": "5-49 L & M, LLC", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 154300, "Improved_V": 509600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.26647017799999, "SHAPE_Area": 1112.98521577 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356371.055500000715256, 258044.6233000010252 ], [ 356364.872900001704693, 258013.119800001382828 ], [ 356349.48650000244379, 258020.804299999028444 ], [ 356331.693599998950958, 258026.991500001400709 ], [ 356339.481600001454353, 258059.35249999910593 ], [ 356371.055500000715256, 258044.6233000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003028200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91548782, "LATITUDE": 18.35189164, "OBJECTID_1": 5790, "PARCEL_NO_": "103003028200", "Tax_Legal_": "2-27 ST.JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "BOSTON, ALGERNON C and CLEONE A", "Address": "PO Box 302254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67000, "Improved_V": 364100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.72514838000001, "SHAPE_Area": 1797.81712354 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360447.015399999916553, 258072.072500001639128 ], [ 360436.036300003528595, 258035.674499999731779 ], [ 360413.497299998998642, 258031.057100001722574 ], [ 360411.843299999833107, 258035.898699998855591 ], [ 360408.573100000619888, 258041.149300001561642 ], [ 360407.737999998033047, 258044.519900001585484 ], [ 360406.111000001430511, 258046.19539999961853 ], [ 360402.819200001657009, 258053.978900000452995 ], [ 360401.193999998271465, 258055.443199999630451 ], [ 360400.362499997019768, 258058.391699999570847 ], [ 360397.916599996387959, 258061.538100000470877 ], [ 360398.678000003099442, 258066.821699999272823 ], [ 360413.898999996483326, 258078.556400001049042 ], [ 360425.06870000064373, 258092.579999998211861 ], [ 360427.523599997162819, 258088.378199998289347 ], [ 360436.472199998795986, 258079.163400001823902 ], [ 360447.015399999916553, 258072.072500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704032500", "MAP": null, "PARCEL_NAM": "2-12A", "ACRE": null, "LONGITUDE": -64.95561784, "LATITUDE": 18.35197642, "OBJECTID_1": 3541, "PARCEL_NO_": "102704032500", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-12A LITTLE NORTHSIDE", "Name": "KIWERSKI, ANDRZEJ & MARGRET", "Address": "P.O.BOX 4981", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 182200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.00206869499999, "SHAPE_Area": 1212.5511976299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356189.080600000917912, 258013.580800000578165 ], [ 356179.424699999392033, 258011.179800000041723 ], [ 356156.508100003004074, 258050.888900000602007 ], [ 356166.97749999910593, 258052.452199999243021 ], [ 356188.440099999308586, 258055.440600000321865 ], [ 356191.975100003182888, 258047.067499998956919 ], [ 356204.423299998044968, 258017.582699999213219 ], [ 356189.080600000917912, 258013.580800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003023100", "MAP": "F9-1365-T64", "PARCEL_NAM": "2-28", "ACRE": "0.53", "LONGITUDE": -64.91623532, "LATITUDE": 18.35179968, "OBJECTID_1": 5749, "PARCEL_NO_": "103003023100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-28 GT. NORTHSIDE", "Name": "FENTON, EDWARD, ANN E., YVONNE P. & JACKSON, BRANDON J.", "Address": "PO Box 11565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65200, "Improved_V": 263800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.960460829, "SHAPE_Area": 1680.9767620600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360364.773100003600121, 258018.786800000816584 ], [ 360341.758500002324581, 258020.2060999982059 ], [ 360332.860699996352196, 258031.0304000005126 ], [ 360327.938299998641014, 258040.911499999463558 ], [ 360327.097800001502037, 258044.915399998426437 ], [ 360326.850500002503395, 258073.9386 ], [ 360350.942199997603893, 258082.47749999910593 ], [ 360363.558100000023842, 258024.526599999517202 ], [ 360364.773100003600121, 258018.786800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804037500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9352371, "LATITUDE": 18.35187581, "OBJECTID_1": 4659, "PARCEL_NO_": "102804037500", "Tax_Legal_": "ELIZABETH 36A GREAT NORTHSIDE QTR.", "Name": "HYMES, CAROL A", "Address": "PO Box 956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68000, "Improved_V": 341300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.142797148, "SHAPE_Area": 2056.44783525 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358327.748599998652935, 257992.665800001472235 ], [ 358312.646899998188019, 258061.56980000063777 ], [ 358365.771899998188019, 258072.770300000905991 ], [ 358354.692100003361702, 258048.192800000309944 ], [ 358342.071599997580051, 258015.158900000154972 ], [ 358332.550499998033047, 257996.926899999380112 ], [ 358327.748599998652935, 257992.665800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604026700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96981208, "LATITUDE": 18.3518193, "OBJECTID_1": 2750, "PARCEL_NO_": "102604026700", "Tax_Legal_": "LINDBERG BAY 44F S S QTR", "Name": "ROWE, TERRY M.", "Address": "PO Box 303949", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.02758857000001, "SHAPE_Area": 2416.1796041399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354696.095600001513958, 257965.475499998778105 ], [ 354662.970299996435642, 257973.014899998903275 ], [ 354665.634499996900558, 258038.897900000214577 ], [ 354700.284400001168251, 258041.714600000530481 ], [ 354696.095600001513958, 257965.475499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93038247, "LATITUDE": 18.35197002, "OBJECTID_1": 4724, "PARCEL_NO_": "102903011100", "Tax_Legal_": "20A ESTATE MAFOLIE No.8F GREAT NORTHSIDE QTR.", "Name": "WHITE, JONNA & GONZALES, EDISON J", "Address": "PO Box 305728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91200, "Improved_V": 185700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.747616295, "SHAPE_Area": 2128.35840237 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358870.543200001120567, 258074.579599998891354 ], [ 358891.904799997806549, 258028.102800000458956 ], [ 358884.613799996674061, 258032.053899999707937 ], [ 358875.699400000274181, 258037.258299998939037 ], [ 358865.960699997842312, 258044.566799998283386 ], [ 358861.916599996387959, 258046.011399999260902 ], [ 358856.27419999986887, 258045.754099998623133 ], [ 358835.376599997282028, 258037.772599998861551 ], [ 358821.70160000026226, 258033.861000001430511 ], [ 358811.75620000064373, 258065.443599998950958 ], [ 358838.299699999392033, 258073.260299999266863 ], [ 358848.767399996519089, 258075.034699998795986 ], [ 358860.856700003147125, 258075.7668999992311 ], [ 358870.543200001120567, 258074.579599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91433049, "LATITUDE": 18.35189503, "OBJECTID_1": 5746, "PARCEL_NO_": "103003022600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-22 GREAT NORTHSIDE", "Name": "SUBRATEE, NAZIR & CURLISS", "Address": "PO Box 304398", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.01630594900001, "SHAPE_Area": 2234.7701744699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360574.88849999755621, 258047.131000000983477 ], [ 360523.940499998629093, 258034.494100000709295 ], [ 360520.594800002872944, 258048.609999999403954 ], [ 360513.143799997866154, 258071.347100000828505 ], [ 360513.127599999308586, 258073.246800001710653 ], [ 360569.539499998092651, 258087.729699999094009 ], [ 360574.88849999755621, 258047.131000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92980156, "LATITUDE": 18.35181798, "OBJECTID_1": 4719, "PARCEL_NO_": "102903010600", "Tax_Legal_": "MAFOLIE 21 GR NORTHSIDE", "Name": "GREY, NORMAN W", "Address": "PO Box 8769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 122400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.20337705099999, "SHAPE_Area": 2086.4017432700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358923.122599996626377, 258055.167199999094009 ], [ 358951.713899999856949, 258011.915899999439716 ], [ 358943.648999996483326, 258012.061000000685453 ], [ 358926.691299997270107, 258014.877500001341105 ], [ 358904.051600001752377, 258022.08049999922514 ], [ 358891.904799997806549, 258028.102800000458956 ], [ 358870.543200001120567, 258074.579599998891354 ], [ 358881.869400002062321, 258070.239399999380112 ], [ 358887.540500000119209, 258067.11939999833703 ], [ 358894.039599999785423, 258061.473000001162291 ], [ 358902.948600001633167, 258056.901900000870228 ], [ 358911.836000002920628, 258054.863699998706579 ], [ 358923.122599996626377, 258055.167199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604027200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97017605000001, "LATITUDE": 18.35184738, "OBJECTID_1": 2755, "PARCEL_NO_": "102604027200", "Tax_Legal_": "44G ESTATE LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "ONIYIDE, CECILIE M", "Address": "313 E Hyde Park Blvd", "City": "Inglewood", "State": "California", "Zip": 90302, "Country": "United States", "Land_Value": 60500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.48345525299999, "SHAPE_Area": 2601.1951406799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354662.970299996435642, 257973.014899998903275 ], [ 354620.957500003278255, 257982.592399999499321 ], [ 354619.705300003290176, 258034.933400001376867 ], [ 354665.634499996900558, 258038.897900000214577 ], [ 354662.970299996435642, 257973.014899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704032400", "MAP": "G9-185-T52", "PARCEL_NAM": "5-13", "ACRE": "1.08", "LONGITUDE": -64.95610123, "LATITUDE": 18.35182739, "OBJECTID_1": 3540, "PARCEL_NO_": "102704032400", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-13 LITTLE NORTHSIDE", "Name": "GREGORY, GRACE L.", "Address": "PO Box 10938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.97212085699999, "SHAPE_Area": 4568.88146426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356107.882200002670288, 257984.840799998492002 ], [ 356106.246200002729893, 257987.571600001305342 ], [ 356079.195600003004074, 258039.279199998825788 ], [ 356089.663199998438358, 258041.053700000047684 ], [ 356156.508100003004074, 258050.888900000602007 ], [ 356179.424699999392033, 258011.179800000041723 ], [ 356172.201999999582767, 258007.109900001436472 ], [ 356164.192800000309944, 258000.711500000208616 ], [ 356159.408900000154972, 257994.339499998837709 ], [ 356155.467299997806549, 257983.752599999308586 ], [ 356107.882200002670288, 257984.840799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90969268000001, "LATITUDE": 18.35190367, "OBJECTID_1": 5678, "PARCEL_NO_": "103003016200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 12A-6 GR NORTHSIDE QTR", "Name": "DANET, SHANNON M. & JENSEN, DIOR M.", "Address": "PO Box 9676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40600, "Improved_V": 390200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.67693431399999, "SHAPE_Area": 1687.8609018699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361014.146200001239777, 258042.305900000035763 ], [ 361008.187299996614456, 258079.198499999940395 ], [ 361022.695500001311302, 258079.950500000268221 ], [ 361025.125200003385544, 258078.703899998217821 ], [ 361026.755800001323223, 258076.606300000101328 ], [ 361026.781000003218651, 258073.651200000196695 ], [ 361034.833400003612041, 258074.983600001782179 ], [ 361034.793799996376038, 258079.627399999648333 ], [ 361040.389399997889996, 258085.372699998319149 ], [ 361043.605700001120567, 258086.454500000923872 ], [ 361042.779600001871586, 258088.769799999892712 ], [ 361062.120300002396107, 258090.194600000977516 ], [ 361055.991700001060963, 258052.35869999974966 ], [ 361014.146200001239777, 258042.305900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604027100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97072723, "LATITUDE": 18.35188316, "OBJECTID_1": 2754, "PARCEL_NO_": "102604027100", "Tax_Legal_": "15-6-3 ESTATE CROWN & HAWK 3 SOUTHSIDE QTR", "Name": "FAHIE, HERMAN", "Address": "3012 Calhoun Ct", "City": "Virginia Beach", "State": "Virginia", "Zip": 23456, "Country": "United States", "Land_Value": 47200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.27568662100001, "SHAPE_Area": 3148.9242632199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354620.957500003278255, 257982.592399999499321 ], [ 354540.972599998116493, 258000.725099999457598 ], [ 354541.545100003480911, 258028.171999998390675 ], [ 354585.863499999046326, 258031.912200000137091 ], [ 354619.705300003290176, 258034.933400001376867 ], [ 354620.957500003278255, 257982.592399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803029500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94729689, "LATITUDE": 18.35146541, "OBJECTID_1": 4355, "PARCEL_NO_": "102803029500", "Tax_Legal_": "SOLBERG 13A LT. NORTHSIDE QTR.", "Name": "ST TH. ST J. METHODIST", "Address": "PO Box 1045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 163400, "Improved_V": 853100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.16901463800002, "SHAPE_Area": 3934.9439799500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357030.656099997460842, 257951.018899999558926 ], [ 357040.794699996709824, 257991.420800000429153 ], [ 357057.198600001633167, 258053.616500001400709 ], [ 357094.921999998390675, 257979.620400000363588 ], [ 357091.716499999165535, 257977.272100001573563 ], [ 357091.763300001621246, 257971.784000001847744 ], [ 357093.392099998891354, 257969.89750000089407 ], [ 357057.401100002229214, 257935.194699998944998 ], [ 357041.17960000038147, 257946.249899998307228 ], [ 357030.656099997460842, 257951.018899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803026900", "MAP": "D9-6427-T98", "PARCEL_NAM": "13E", "ACRE": null, "LONGITUDE": -64.94683672, "LATITUDE": 18.35179075, "OBJECTID_1": 4335, "PARCEL_NO_": "102803026900", "Tax_Legal_": "13-E SOLBERG No.1 LITTLE NORTHSIDE QUARTER", "Name": "WRENSFORD, GLENDA", "Address": "PO BOX 502955", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 103400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.57170596700001, "SHAPE_Area": 4068.0235120799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357111.085400000214577, 257986.028299998492002 ], [ 357092.118199996650219, 257985.120099999010563 ], [ 357057.198600001633167, 258053.616500001400709 ], [ 357126.654799997806549, 258040.886100001633167 ], [ 357175.112700000405312, 258031.994600001722574 ], [ 357111.085400000214577, 257986.028299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95192165, "LATITUDE": 18.3518992, "OBJECTID_1": 3553, "PARCEL_NO_": "102704041100", "Tax_Legal_": "LILLIENDHAL & MARIENHOJ 5-39 LITTLE NORTHSIDE", "Name": "KING, JENNIFER", "Address": "PO Box 307227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.743879225, "SHAPE_Area": 852.73881204600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356572.962700001895428, 258007.645700000226498 ], [ 356553.54110000282526, 258015.719399999827147 ], [ 356563.837899997830391, 258037.546300001442432 ], [ 356570.994000002741814, 258049.426100000739098 ], [ 356592.831000000238419, 258041.794399999082088 ], [ 356582.485600002110004, 258025.666600000113249 ], [ 356579.32150000333786, 258018.463500000536442 ], [ 356572.962700001895428, 258007.645700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804037700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93446811, "LATITUDE": 18.35182882, "OBJECTID_1": 4660, "PARCEL_NO_": "102804037700", "Tax_Legal_": "ELIZABETH 38B GR NORTHSIDE", "Name": "SHULTERBRANDT-PLASKET, CHERYL", "Address": "PO Box 551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 84100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.73213372399999, "SHAPE_Area": 1297.6593647100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358400.235799998044968, 258002.758299998939037 ], [ 358399.924699999392033, 258039.274900000542402 ], [ 358422.29280000180006, 258063.94480000063777 ], [ 358442.5962999984622, 258047.01240000128746 ], [ 358419.44879999756813, 258019.169700000435114 ], [ 358400.235799998044968, 258002.758299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804035000", "MAP": "D9-954-T71", "PARCEL_NAM": "45", "ACRE": "1.28", "LONGITUDE": -64.9342828, "LATITUDE": 18.35138392, "OBJECTID_1": 4652, "PARCEL_NO_": "102804035000", "Tax_Legal_": "45 ELIZABETH GREAT NORTHSIDE", "Name": "COLON, ELAINE S", "Address": "PO Box 563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 97100, "Improved_V": 196800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.29917069300001, "SHAPE_Area": 5253.1132314400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358461.830200001597404, 257966.320999998599291 ], [ 358449.193499997258186, 257935.186799999326468 ], [ 358408.010499998927116, 257942.026900000870228 ], [ 358393.932700000703335, 257985.396999999880791 ], [ 358423.555900000035763, 258010.337400000542402 ], [ 358431.548900000751019, 258018.635499998927116 ], [ 358432.339000001549721, 258020.541799999773502 ], [ 358465.068800002336502, 258059.439800001680851 ], [ 358470.685999996960163, 258062.652100000530481 ], [ 358461.830200001597404, 257966.320999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93556406, "LATITUDE": 18.3517687, "OBJECTID_1": 4630, "PARCEL_NO_": "102804030400", "Tax_Legal_": "ELIZABETH 36 GR NORTHSIDE", "Name": "MOOREHEAD, ROBERT", "Address": "PO Box 8393", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 107000, "Improved_V": 336500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.832775123, "SHAPE_Area": 2300.0980898799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358327.748599998652935, 257992.665800001472235 ], [ 358286.513300001621246, 258005.627199999988079 ], [ 358274.008699998259544, 258053.654199998825788 ], [ 358312.646899998188019, 258061.56980000063777 ], [ 358327.748599998652935, 257992.665800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93098245, "LATITUDE": 18.3518802, "OBJECTID_1": 4723, "PARCEL_NO_": "102903011000", "Tax_Legal_": "MAFOLIE 20 GR NORTHSIDE", "Name": "DEMETREE, WILLIAM J", "Address": "PO Box 10934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 124600, "Improved_V": 221900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.25445519900001, "SHAPE_Area": 2105.1222973399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358811.75620000064373, 258065.443599998950958 ], [ 358821.70160000026226, 258033.861000001430511 ], [ 358791.115699999034405, 258027.277899999171495 ], [ 358778.212899997830391, 258027.383400000631809 ], [ 358741.052400000393391, 258035.311900001019239 ], [ 358747.46509999781847, 258039.7972999997437 ], [ 358749.052599996328354, 258042.765599999576807 ], [ 358760.225900001823902, 258056.36710000038147 ], [ 358768.251199997961521, 258060.865699999034405 ], [ 358773.078299999237061, 258062.171799998730421 ], [ 358797.265900000929832, 258062.580800000578165 ], [ 358811.75620000064373, 258065.443599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9348109, "LATITUDE": 18.35180652, "OBJECTID_1": 4647, "PARCEL_NO_": "102804032100", "Tax_Legal_": "ELIZABETH 38A GR NORTHSIDE", "Name": "SIBILLY, JEFFREY", "Address": "PO Box 12477", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018477, "Country": "United States", "Land_Value": 65900, "Improved_V": 298900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.63125186, "SHAPE_Area": 1375.2746857300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358400.235799998044968, 258002.758299998939037 ], [ 358356.430600002408028, 258033.430500000715256 ], [ 358367.479800000786781, 258061.596400000154972 ], [ 358399.924699999392033, 258039.274900000542402 ], [ 358400.235799998044968, 258002.758299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704039900", "MAP": null, "PARCEL_NAM": "5-47", "ACRE": null, "LONGITUDE": -64.9536601, "LATITUDE": 18.35180813, "OBJECTID_1": 3544, "PARCEL_NO_": "102704039900", "Tax_Legal_": "LILLIENDAHL 5-3,5,7,8,9&25,47 MARIENHOJ", "Name": "VIETTE, ANDRE", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.183990322, "SHAPE_Area": 1580.03635439 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356413.151000000536442, 258025.336100000888109 ], [ 356403.786300003528595, 257988.740299999713898 ], [ 356385.964699998497963, 257998.304699998348951 ], [ 356364.872900001704693, 258013.119800001382828 ], [ 356371.055500000715256, 258044.6233000010252 ], [ 356413.151000000536442, 258025.336100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003016100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91009093, "LATITUDE": 18.3518214, "OBJECTID_1": 5676, "PARCEL_NO_": "103003016100", "Tax_Legal_": "12A-5 ST JOSEPH & ROSENDAHL NO.4 GRT NORTHSIDE QTR", "Name": "AMBROSE, AMBER C.", "Address": "6241 St. Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30200, "Improved_V": 226500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.609505993, "SHAPE_Area": 1391.9581426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361014.146200001239777, 258042.305900000035763 ], [ 360990.003499999642372, 258036.619899999350309 ], [ 360981.128700003027916, 258037.180500000715256 ], [ 360975.462899997830391, 258039.667300000786781 ], [ 360968.143200002610683, 258046.995600000023842 ], [ 360991.231299996376038, 258081.804000001400709 ], [ 360999.312399998307228, 258079.759199999272823 ], [ 361008.187299996614456, 258079.198499999940395 ], [ 361014.146200001239777, 258042.305900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703023300", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96420211, "LATITUDE": 18.35174159, "OBJECTID_1": 3284, "PARCEL_NO_": "102703023300", "Tax_Legal_": "LINDBERG BAY 46-1 SOUTHSIDE QTR", "Name": "FRANCIS, SIMONE R. D. & STEPHANIE M. D.", "Address": "PO Box 334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.67184591200001, "SHAPE_Area": 710.447872674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355292.166000001132488, 257992.770799998193979 ], [ 355268.399499997496605, 257991.057799998670816 ], [ 355239.37219999730587, 257990.820300001651049 ], [ 355263.462700001895428, 258002.627599999308586 ], [ 355283.505400002002716, 258016.301600001752377 ], [ 355289.102899998426437, 258021.835799999535084 ], [ 355289.976700000464916, 258023.587900001555681 ], [ 355292.166000001132488, 257992.770799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91484448, "LATITUDE": 18.35174858, "OBJECTID_1": 5747, "PARCEL_NO_": "103003022800", "Tax_Legal_": "3-17&18 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QUARTER", "Name": "SMALLS, TAMARAH P. & DARRYL", "Address": "PO Box 306421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 96100, "Improved_V": 275600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.63986737, "SHAPE_Area": 2650.0453307299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360519.194399997591972, 258023.689500000327826 ], [ 360472.559500001370907, 258007.897999998182058 ], [ 360467.959700003266335, 258074.565900001674891 ], [ 360502.613200001418591, 258076.960499998182058 ], [ 360505.042900003492832, 258075.713799998164177 ], [ 360514.122699998319149, 258051.090199999511242 ], [ 360519.194399997591972, 258023.689500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703023200", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96446814, "LATITUDE": 18.35190061, "OBJECTID_1": 3283, "PARCEL_NO_": "102703023200", "Tax_Legal_": "46-2 LINDBERG BAY NO. 4A SOUTHSIDE QTR", "Name": "FARRINGTON, RAPHAEL ANSON", "Address": "PO Box 502817", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26400, "Improved_V": 287000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.03558234299999, "SHAPE_Area": 1231.1092477899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355226.124200001358986, 258031.452899999916553 ], [ 355251.107299998402596, 258033.135000001639128 ], [ 355255.156800001859665, 258031.057199999690056 ], [ 355281.783100001513958, 258029.164200000464916 ], [ 355281.80290000140667, 258026.842300001531839 ], [ 355264.974600002169609, 258014.461199998855591 ], [ 355240.088600002229214, 258001.380800001323223 ], [ 355224.811800003051758, 257996.189500000327826 ], [ 355226.124200001358986, 258031.452899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92801613, "LATITUDE": 18.35178681, "OBJECTID_1": 4775, "PARCEL_NO_": "102903016000", "Tax_Legal_": "LOUISENHOJ 14 GT. NORTHSIDE QTR", "Name": "DST HOLDINGS LLC", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026733, "Country": "United States", "Land_Value": 121200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.642024531, "SHAPE_Area": 2721.1916218699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359125.103500001132488, 258009.535300001502037 ], [ 359067.781599998474121, 258017.721000000834465 ], [ 359073.0337999984622, 258063.782400000840425 ], [ 359129.529600001871586, 258057.912000000476837 ], [ 359125.103500001132488, 258009.535300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91516958, "LATITUDE": 18.35171704, "OBJECTID_1": 5747, "PARCEL_NO_": "103003022800", "Tax_Legal_": "3-17&18 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QUARTER", "Name": "SMALLS, TAMARAH P. & DARRYL", "Address": "PO Box 306421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 96100, "Improved_V": 275600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.15196857699999, "SHAPE_Area": 1581.73547248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360472.559500001370907, 258007.897999998182058 ], [ 360465.322499997913837, 258005.516699999570847 ], [ 360459.627899996936321, 258011.380800001323223 ], [ 360436.036300003528595, 258035.674499999731779 ], [ 360447.015399999916553, 258072.072500001639128 ], [ 360454.31360000371933, 258067.276999998837709 ], [ 360461.584700003266335, 258065.647799998521805 ], [ 360464.736299999058247, 258074.328400000929832 ], [ 360467.959700003266335, 258074.565900001674891 ], [ 360472.559500001370907, 258007.897999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604021200", "MAP": "A3-12-T33", "PARCEL_NAM": "40", "ACRE": null, "LONGITUDE": -64.96723442, "LATITUDE": 18.35058393, "OBJECTID_1": 2702, "PARCEL_NO_": "102604021200", "Tax_Legal_": "40 LINDBERG BAY SOUTHSIDE QUARTER", "Name": "BATTISTE, L & B/BLYDEN, E/CALLW", "Address": "PO Box 418", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 220800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 760.43205527600003, "SHAPE_Area": 18982.176368799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354975.989399999380112, 257760.025699999183416 ], [ 354972.39190000295639, 257719.059099998325109 ], [ 354963.485299997031689, 257719.629099998623133 ], [ 354962.858800001442432, 257698.514600001275539 ], [ 354918.846199996769428, 257710.702199999243021 ], [ 354919.026600003242493, 257732.353000000119209 ], [ 354931.838100001215935, 258026.933400001376867 ], [ 354936.68860000371933, 258025.495400000363588 ], [ 354946.387699998915195, 258022.830600000917912 ], [ 354955.267899997532368, 258021.636700000613928 ], [ 354977.857199996709824, 258020.343899998813868 ], [ 354998.025799997150898, 258019.242400001734495 ], [ 354997.372400000691414, 258001.294100001454353 ], [ 354996.619999997317791, 257994.955200001597404 ], [ 354994.836400002241135, 257974.644900001585484 ], [ 354993.633100003004074, 257960.942400000989437 ], [ 354989.98309999704361, 257919.377500001341105 ], [ 354989.540200002491474, 257914.333999998867512 ], [ 354988.731499999761581, 257905.124800000339746 ], [ 354985.961999997496605, 257873.588199999183416 ], [ 354982.181000001728535, 257830.531399998813868 ], [ 354981.513400003314018, 257822.929000001400709 ], [ 354978.598700001835823, 257789.738800000399351 ], [ 354975.989399999380112, 257760.025699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704039900", "MAP": "G9-175-T52", "PARCEL_NAM": "5-3", "ACRE": ".52", "LONGITUDE": -64.95261571, "LATITUDE": 18.35164991, "OBJECTID_1": 3544, "PARCEL_NO_": "102704039900", "Tax_Legal_": "LILLIENDAHL 5-3,5,7,8,9&25,47 MARIENHOJ", "Name": "VIETTE, ANDRE", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.99967724000001, "SHAPE_Area": 2011.00358312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356532.645300000905991, 258007.526799999177456 ], [ 356523.835199996829033, 258000.488600000739098 ], [ 356511.843000002205372, 257988.3581000007689 ], [ 356499.888599999248981, 257971.795000001788139 ], [ 356493.491999998688698, 257965.409800000488758 ], [ 356483.864799998700619, 257959.631499998271465 ], [ 356479.827799998223782, 257960.231699999421835 ], [ 356483.715499997138977, 257977.151000000536442 ], [ 356484.379799999296665, 257993.832899998873472 ], [ 356482.380599997937679, 258039.20160000026226 ], [ 356484.810300000011921, 258037.954999998211861 ], [ 356512.376000002026558, 258020.448699999600649 ], [ 356532.645300000905991, 258007.526799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703030400", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-43", "ACRE": "0.37", "LONGITUDE": -64.9598986, "LATITUDE": 18.35180481, "OBJECTID_1": 3295, "PARCEL_NO_": "102703030400", "Tax_Legal_": "CONTANT 108A-43 7B SOUTHSIDE QTR.", "Name": "SELINA PROPERTIES LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34900, "Improved_V": 393200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.457320559, "SHAPE_Area": 826.01635593799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355752.035899996757507, 258012.747999999672174 ], [ 355719.94879999756813, 257993.064800001680851 ], [ 355706.913000002503395, 258008.790100000798702 ], [ 355737.364000000059605, 258031.204199999570847 ], [ 355752.035899996757507, 258012.747999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904018700", "MAP": "D9-1370-T77", "PARCEL_NAM": "16", "ACRE": "7.65", "LONGITUDE": -64.92450629, "LATITUDE": 18.35122176, "OBJECTID_1": 4997, "PARCEL_NO_": "102904018700", "Tax_Legal_": "LOUISENHOJ 16 GT. NORTHSIDE", "Name": "LOUISENHOJ CASTLE, LTD.", "Address": "1783 Forest Dr. #303", "City": "Annapolis", "State": "Maryland", "Zip": 21401, "Country": "United States", "Land_Value": 538100, "Improved_V": 1041300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 723.03504022300001, "SHAPE_Area": 24112.435460299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359556.546499997377396, 257910.686099998652935 ], [ 359553.315800003707409, 257911.292899999767542 ], [ 359531.534599997103214, 257912.38120000064373 ], [ 359510.601000003516674, 257908.621300000697374 ], [ 359490.452200002968311, 257907.40089999884367 ], [ 359437.188799999654293, 257912.453400000929832 ], [ 359427.487899996340275, 257915.3293999992311 ], [ 359419.388800002634525, 257919.484900001436472 ], [ 359392.609700001776218, 257939.319600000977516 ], [ 359348.827899999916553, 257967.247900001704693 ], [ 359347.20269999653101, 257968.712200000882149 ], [ 359345.528899997472763, 257975.875700000673532 ], [ 359346.26690000295639, 257983.903299998492002 ], [ 359347.834499999880791, 257989.193500000983477 ], [ 359372.880599997937679, 257983.487799998372793 ], [ 359373.652699999511242, 257987.504900000989437 ], [ 359374.435699999332428, 257990.255499999970198 ], [ 359373.478299997746944, 258007.979600001126528 ], [ 359369.259700000286102, 258029.898800000548363 ], [ 359374.9003000035882, 258030.36710000038147 ], [ 359382.137299999594688, 258032.748399998992682 ], [ 359393.380800001323223, 258038.11769999936223 ], [ 359394.975400000810623, 258040.241700001060963 ], [ 359411.009999997913837, 258051.138700000941753 ], [ 359413.416299998760223, 258052.636100001633167 ], [ 359422.280299998819828, 258053.341899998486042 ], [ 359431.166000001132488, 258051.514800000935793 ], [ 359493.494800001382828, 258023.527300000190735 ], [ 359512.083099998533726, 258018.613200001418591 ], [ 359527.412100002169609, 258017.683200001716614 ], [ 359541.094200000166893, 258020.750500001013279 ], [ 359553.937600001692772, 258027.610599998384714 ], [ 359562.737000003457069, 258035.915300000458956 ], [ 359569.905699998140335, 258046.317499998956919 ], [ 359577.903999999165535, 258053.982299998402596 ], [ 359589.134900003671646, 258060.829300001263618 ], [ 359556.546499997377396, 257910.686099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904016000", "MAP": "G9-619-T62", "PARCEL_NAM": "1-F-G", "ACRE": ".32", "LONGITUDE": -64.91822374, "LATITUDE": 18.35170044, "OBJECTID_1": 4973, "PARCEL_NO_": "102904016000", "Tax_Legal_": "ST JOSEPH & ROSEND 1FG GREAT NORTHSIDE", "Name": "MATOS, YOLANDA DIDIE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35100, "Improved_V": 250300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.06194640199999, "SHAPE_Area": 1176.1307449599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360146.710400000214577, 258016.8412000015378 ], [ 360125.782200001180172, 258012.448100000619888 ], [ 360114.87219999730587, 258062.598999999463558 ], [ 360125.397399999201298, 258057.618900001049042 ], [ 360140.753300003707409, 258053.522700000554323 ], [ 360154.631399996578693, 258033.582400001585484 ], [ 360150.673600003123283, 258024.895199999213219 ], [ 360146.710400000214577, 258016.8412000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604022400", "MAP": "D9-2136-T82", "PARCEL_NAM": "39-E", "ACRE": ".12", "LONGITUDE": -64.96672573, "LATITUDE": 18.35180908, "OBJECTID_1": 2712, "PARCEL_NO_": "102604022400", "Tax_Legal_": "LINDBERG BAY 39E S S QTR", "Name": "CHRISTIAN, DAPHNE & RODWELL", "Address": "PO Box 305107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12300, "Improved_V": 114900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.407681214299998, "SHAPE_Area": 502.87089417499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355018.231499999761581, 257999.739799998700619 ], [ 355018.19200000166893, 257993.883099999278784 ], [ 354996.619999997317791, 257994.955200001597404 ], [ 354997.372400000691414, 258001.294100001454353 ], [ 354998.025799997150898, 258019.242400001734495 ], [ 355015.775499999523163, 258018.121100001037121 ], [ 355018.354299999773502, 258017.98030000180006 ], [ 355018.231499999761581, 257999.739799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604022500", "MAP": "G9-1391-T69", "PARCEL_NAM": "39-F", "ACRE": ".05", "LONGITUDE": -64.96654851, "LATITUDE": 18.35182701, "OBJECTID_1": 2713, "PARCEL_NO_": "102604022500", "Tax_Legal_": "39F ESTATE LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "CHRISTIAN, DAPHNE GORDON", "Address": "PO Box 305107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5700, "Improved_V": 14400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.868709757700003, "SHAPE_Area": 303.74526336600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355018.231499999761581, 257999.739799998700619 ], [ 355018.354299999773502, 258017.98030000180006 ], [ 355035.944099999964237, 258017.019600000232458 ], [ 355033.681599996984005, 257998.635999999940395 ], [ 355018.231499999761581, 257999.739799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045900", "MAP": "D9-4323-T88", "PARCEL_NAM": "39 REM", "ACRE": ".215", "LONGITUDE": -64.96626927, "LATITUDE": 18.35170807, "OBJECTID_1": 3423, "PARCEL_NO_": "102703045900", "Tax_Legal_": "LINDBERG BAY REM 38&39 S S QTR", "Name": "ADLIE SALEM", "Address": "PO Box 8658", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011658, "Country": "United States", "Land_Value": 73800, "Improved_V": 117000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.599617432, "SHAPE_Area": 537.75381297800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355041.874200001358986, 257983.504299998283386 ], [ 355050.563900001347065, 257997.234499998390675 ], [ 355051.818400003015995, 258015.488699998706579 ], [ 355064.190200001001358, 258014.295499999076128 ], [ 355063.698600001633167, 257977.350099999457598 ], [ 355041.874200001358986, 257983.504299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91021185, "LATITUDE": 18.3513421, "OBJECTID_1": 5810, "PARCEL_NO_": "103003031400", "Tax_Legal_": "4G-5 REM ST JOSEPH & ROSENDAHL NO. 4 GREAT NORTHSIDE QTR", "Name": "GIRAUD, VICTOR J.", "Address": "PO Box 304221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37500, "Improved_V": 388600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 447.02852179000001, "SHAPE_Area": 10712.682065000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361053.641099996864796, 258044.317899998277426 ], [ 361055.602600000798702, 258003.381799999624491 ], [ 361056.513199999928474, 257991.145799998193979 ], [ 360987.5658999979496, 257944.140999998897314 ], [ 360977.877599999308586, 257945.539299998432398 ], [ 360967.355899997055531, 257950.097300000488758 ], [ 360959.249600000679493, 257955.097199998795986 ], [ 360955.176700003445148, 257959.918999999761581 ], [ 360938.111100003123283, 257975.400199998170137 ], [ 360923.450000002980232, 257992.589899998158216 ], [ 360912.833099998533726, 258008.33500000089407 ], [ 360912.001599997282028, 258011.283500000834465 ], [ 360908.74040000140667, 258015.478700000792742 ], [ 360907.09179999679327, 258019.687100000679493 ], [ 360899.743299998342991, 258030.392700001597404 ], [ 360945.415399998426437, 258064.541499998420477 ], [ 360951.961199998855591, 258053.4070999994874 ], [ 360961.732199996709824, 258042.299100000411272 ], [ 360970.675399996340275, 258033.717500001192093 ], [ 360981.193400003015995, 258029.581700000911951 ], [ 360990.874600000679493, 258029.02760000154376 ], [ 361053.641099996864796, 258044.317899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91721401, "LATITUDE": 18.35157803, "OBJECTID_1": 4991, "PARCEL_NO_": "102904017900", "Tax_Legal_": "ST JOSE & ROSEN 1-8 & 1-8-A GREAT NORTHSIDE QTR", "Name": "EVELYN, LENNOX AND MAUREEN S. EVELYN", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58400, "Improved_V": 245500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.00476005300001, "SHAPE_Area": 2211.6762702000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360248.043200001120567, 258048.490200001746416 ], [ 360248.908900000154972, 258041.531199999153614 ], [ 360267.624899998307228, 258021.630499999970198 ], [ 360259.00900000333786, 257991.795800000429153 ], [ 360240.510600000619888, 257986.155999999493361 ], [ 360233.952200002968311, 257998.767900001257658 ], [ 360229.013599999248981, 258010.548799999058247 ], [ 360227.348800003528595, 258016.656800001859665 ], [ 360224.895700000226498, 258020.64750000089407 ], [ 360224.877700001001358, 258022.758299998939037 ], [ 360223.247100003063679, 258024.855900000780821 ], [ 360222.406599998474121, 258028.8597999997437 ], [ 360220.77419999986887, 258031.168499998748302 ], [ 360210.879100002348423, 258056.840900000184774 ], [ 360212.480899997055531, 258058.120600000023842 ], [ 360221.359399996697903, 258057.137800000607967 ], [ 360232.672899998724461, 258054.275100000202656 ], [ 360248.043200001120567, 258048.490200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020900", "MAP": "F9-2247-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93244364, "LATITUDE": 18.35163114, "OBJECTID_1": 4790, "PARCEL_NO_": "102903020900", "Tax_Legal_": "MAFOLIE 23-11812 & 32 GR NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 218500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.473363667, "SHAPE_Area": 1995.68236121 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358621.38120000064373, 257979.236999999731779 ], [ 358609.959700003266335, 257994.764400001615286 ], [ 358606.392800003290176, 258034.842999998480082 ], [ 358623.336199998855591, 258033.71510000154376 ], [ 358637.840800002217293, 258034.889299999922514 ], [ 358645.882399998605251, 258037.488299999386072 ], [ 358651.512199997901917, 258039.223099999129772 ], [ 358661.139399997889996, 258045.001400001347065 ], [ 358663.664399996399879, 258032.567499998956919 ], [ 358662.105700001120567, 258026.221999999135733 ], [ 358658.128100000321865, 258019.856600001454353 ], [ 358646.913400001823902, 258011.109999999403954 ], [ 358641.319600000977516, 258005.153599999845028 ], [ 358629.366999998688698, 257988.379399999976158 ], [ 358621.38120000064373, 257979.236999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803040900", "MAP": "D9-5349-T92", "PARCEL_NAM": "97-2E", "ACRE": "1.2", "LONGITUDE": -64.9460459, "LATITUDE": 18.35137718, "OBJECTID_1": 4399, "PARCEL_NO_": "102803040900", "Tax_Legal_": "SOLBERG 97-2E LITTLE NORTHSIDE QTR", "Name": "PERCELL, KARL R. & CAROLYN P. (CO-TRUSTEES)", "Address": "PO Box 304910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 181900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.55972813400001, "SHAPE_Area": 4677.1186906900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357208.066600002348423, 257923.078400000929832 ], [ 357200.181699998676777, 257918.776000000536442 ], [ 357169.602600000798702, 257921.547600001096725 ], [ 357171.330799996852875, 257956.188099998980761 ], [ 357175.112700000405312, 258031.994600001722574 ], [ 357219.531800001859665, 258023.91440000012517 ], [ 357223.313900001347065, 258023.219399999827147 ], [ 357217.743600003421307, 257986.635099999606609 ], [ 357212.765000000596046, 257953.936299998313189 ], [ 357211.749899998307228, 257947.26969999819994 ], [ 357208.066600002348423, 257923.078400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93190229, "LATITUDE": 18.35156718, "OBJECTID_1": 4728, "PARCEL_NO_": "102903011500", "Tax_Legal_": "MAFOLIE ESTATE 24D No.8F GREAT NORTHSIDE QTR.", "Name": "24C & 24D ESTATE MAFOLIE LLC", "Address": "5143 Palm Psge", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93700, "Improved_V": 319800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.102024357, "SHAPE_Area": 3067.4783755799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358720.102700002491474, 258033.451699998229742 ], [ 358708.515100002288818, 257973.828400000929832 ], [ 358703.662799999117851, 257975.47749999910593 ], [ 358651.096100002527237, 257993.412399999797344 ], [ 358651.828599996864796, 258002.07319999858737 ], [ 358653.408900000154972, 258005.885800000280142 ], [ 358663.815399996936321, 258014.836899999529123 ], [ 358669.380500003695488, 258024.1706000007689 ], [ 358670.946400001645088, 258029.671799998730421 ], [ 358670.017800003290176, 258044.0185999982059 ], [ 358720.102700002491474, 258033.451699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045900", "MAP": "D9-4323-T88", "PARCEL_NAM": "38 REM", "ACRE": ".685", "LONGITUDE": -64.96590332, "LATITUDE": 18.35164462, "OBJECTID_1": 3423, "PARCEL_NO_": "102703045900", "Tax_Legal_": "LINDBERG BAY REM 38&39 S S QTR", "Name": "ADLIE SALEM", "Address": "PO Box 8658", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011658, "Country": "United States", "Land_Value": 73800, "Improved_V": 117000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.081009212, "SHAPE_Area": 2438.0521907900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355128.004000000655651, 258001.307799998670816 ], [ 355121.877199999988079, 257963.260800000280142 ], [ 355116.241999998688698, 257962.159200001507998 ], [ 355063.698600001633167, 257977.350099999457598 ], [ 355064.190200001001358, 258014.295499999076128 ], [ 355089.221900001168251, 258010.278499998152256 ], [ 355128.004000000655651, 258001.307799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95316202, "LATITUDE": 18.35157295, "OBJECTID_1": 3536, "PARCEL_NO_": "102704031500", "Tax_Legal_": "5-45 LILLIENDAL & MARIENHOJ NO 3 LITTLE NORTHSIDE QTR", "Name": "GRUPO EDIFICA CORPORATION", "Address": "4600 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.49867777399999, "SHAPE_Area": 2755.6553624899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356403.786300003528595, 257988.740299999713898 ], [ 356413.151000000536442, 258025.336100000888109 ], [ 356478.722999997437, 257995.264199998229742 ], [ 356478.048000000417233, 257979.848900001496077 ], [ 356476.505500003695488, 257971.60359999909997 ], [ 356473.323399998247623, 257966.511300001293421 ], [ 356466.095399998128414, 257963.074700001627207 ], [ 356459.637699998915195, 257963.866200000047684 ], [ 356427.277300000190735, 257976.2668999992311 ], [ 356403.786300003528595, 257988.740299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703030900", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-44", "ACRE": "0.36", "LONGITUDE": -64.95927683, "LATITUDE": 18.35156852, "OBJECTID_1": 3300, "PARCEL_NO_": "102703030900", "Tax_Legal_": "CONTANT 108A-44 7B SOUTHSIDE", "Name": "BLYDEN, DAVID A", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34000, "Improved_V": 399700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.728301337, "SHAPE_Area": 1534.42193385 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355817.265299998223782, 257972.798200000077486 ], [ 355803.353299997746944, 257952.162000000476837 ], [ 355794.365099996328354, 257966.020599998533726 ], [ 355781.298699997365475, 257985.334300000220537 ], [ 355764.989000000059605, 258006.732299998402596 ], [ 355759.292700000107288, 258012.807399999350309 ], [ 355759.267499998211861, 258015.762499999254942 ], [ 355762.483800001442432, 258016.844300001859665 ], [ 355813.497299998998642, 257991.930599998682737 ], [ 355826.039200000464916, 257985.813000001013279 ], [ 355817.265299998223782, 257972.798200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703030800", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-42", "ACRE": "0.38", "LONGITUDE": -64.95973671, "LATITUDE": 18.35159976, "OBJECTID_1": 3299, "PARCEL_NO_": "102703030800", "Tax_Legal_": "CONTANT 108A-42 S S QTR", "Name": "LEDEE, ADELBERT", "Address": "PO Box 302125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 476400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.08182088000001, "SHAPE_Area": 1304.7252440899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355773.23200000077486, 257985.690400000661612 ], [ 355741.958400003612041, 257965.16950000077486 ], [ 355734.620700001716614, 257974.60869999974966 ], [ 355719.94879999756813, 257993.064800001680851 ], [ 355752.035899996757507, 258012.747999999672174 ], [ 355767.521300002932549, 257993.454199999570847 ], [ 355770.795100003480911, 257987.781399998813868 ], [ 355773.23200000077486, 257985.690400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020900", "MAP": "F9-2247-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93287708, "LATITUDE": 18.35159796, "OBJECTID_1": 4790, "PARCEL_NO_": "102903020900", "Tax_Legal_": "MAFOLIE 23-11812 & 32 GR NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 218500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.09114893200001, "SHAPE_Area": 1758.49650118 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358609.959700003266335, 257994.764400001615286 ], [ 358555.135899998247623, 257993.682500001043081 ], [ 358562.97240000218153, 258020.344399999827147 ], [ 358566.989600002765656, 258022.065999999642372 ], [ 358576.605999998748302, 258029.110800001770258 ], [ 358584.636799998581409, 258032.976199999451637 ], [ 358595.9054000005126, 258035.390500001609325 ], [ 358606.392800003290176, 258034.842999998480082 ], [ 358609.959700003266335, 257994.764400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93495437, "LATITUDE": 18.3515373, "OBJECTID_1": 4642, "PARCEL_NO_": "102804031600", "Tax_Legal_": "ELIZABETH 37\nGR NORTHSIDE", "Name": "MOOREHEAD, JR, ROY LESLIE", "Address": "Po Box 7785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.28949145499999, "SHAPE_Area": 1773.2212235300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358356.430600002408028, 258033.430500000715256 ], [ 358400.235799998044968, 258002.758299998939037 ], [ 358383.425499998033047, 257988.26630000025034 ], [ 358377.001999996602535, 257985.0472999997437 ], [ 358370.565800003707409, 257983.305900000035763 ], [ 358357.661300003528595, 257983.622499998658895 ], [ 358335.835100002586842, 257989.987700000405312 ], [ 358347.737400002777576, 258012.672200001776218 ], [ 358356.430600002408028, 258033.430500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91684487000001, "LATITUDE": 18.35153663, "OBJECTID_1": 4991, "PARCEL_NO_": "102904017900", "Tax_Legal_": "ST JOSE & ROSEN 1-8 & 1-8-A GREAT NORTHSIDE QTR", "Name": "EVELYN, LENNOX AND MAUREEN S. EVELYN", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58400, "Improved_V": 245500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.69101201800001, "SHAPE_Area": 1739.9437342900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360287.157999999821186, 258000.469999998807907 ], [ 360259.00900000333786, 257991.795800000429153 ], [ 360267.624899998307228, 258021.630499999970198 ], [ 360248.908900000154972, 258041.531199999153614 ], [ 360248.043200001120567, 258048.490200001746416 ], [ 360268.249600000679493, 258042.9560999982059 ], [ 360286.870300002396107, 258034.242600001394749 ], [ 360297.408100001513958, 258027.78489999845624 ], [ 360312.022399999201298, 258016.083299998193979 ], [ 360316.916000001132488, 258009.5793999992311 ], [ 360287.157999999821186, 258000.469999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95521528, "LATITUDE": 18.35159137, "OBJECTID_1": 3546, "PARCEL_NO_": "102704040200", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-33A LITTLE NORTHSIDE QTR", "Name": "VANTERPOOL, JOEY & CHERYL", "Address": "PO Box 10391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.76822302, "SHAPE_Area": 1501.99536962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356240.245099999010563, 257970.936500001698732 ], [ 356205.584499999880791, 257969.386199999600649 ], [ 356209.249200001358986, 258012.479299999773502 ], [ 356224.55120000243187, 258014.715500000864267 ], [ 356243.098200000822544, 258014.656199999153614 ], [ 356240.245099999010563, 257970.936500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96964032, "LATITUDE": 18.34758617, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3022.4462587200001, "SHAPE_Area": 305017.98745900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354842.236299999058247, 257754.100400000810623 ], [ 354840.140500001609325, 257732.496899999678135 ], [ 354962.858800001442432, 257698.514600001275539 ], [ 354968.016000002622604, 257566.412200000137091 ], [ 354964.462099999189377, 257415.662300001829863 ], [ 354848.866300001740456, 257449.124499998986721 ], [ 354845.520900003612041, 257273.889499999582767 ], [ 354849.67620000243187, 257272.595800001174212 ], [ 354843.980200000107288, 257133.479400001466274 ], [ 354802.362300001084805, 257134.003400001674891 ], [ 354726.55460000038147, 257135.071699999272823 ], [ 354699.836599998176098, 257147.729699999094009 ], [ 354674.758199997246265, 257157.2347999997437 ], [ 354639.998599998652935, 257167.2939000017941 ], [ 354618.158100001513958, 257175.347800001502037 ], [ 354597.104000002145767, 257185.730099998414516 ], [ 354571.15820000320673, 257202.405200000852346 ], [ 354566.386799998581409, 257194.555700000375509 ], [ 354595.572300001978874, 257176.218400001525879 ], [ 354613.384900003671646, 257167.709300000220537 ], [ 354631.994800001382828, 257160.262299999594688 ], [ 354666.752599999308586, 257150.414200000464916 ], [ 354683.737300001084805, 257144.431499999016523 ], [ 354705.586800001561642, 257135.322299998253584 ], [ 354463.648199997842312, 257138.61939999833703 ], [ 354459.062399998307228, 257392.949599999934435 ], [ 354542.285199999809265, 257373.365800000727177 ], [ 354541.491099998354912, 257561.232599999755621 ], [ 354541.439000003039837, 257782.856499999761581 ], [ 354541.603799998760223, 257831.970400001853704 ], [ 354541.29730000346899, 257867.94990000128746 ], [ 354541.377099998295307, 257953.232400000095367 ], [ 354540.972599998116493, 258000.725099999457598 ], [ 354620.957500003278255, 257982.592399999499321 ], [ 354662.970299996435642, 257973.014899998903275 ], [ 354696.095600001513958, 257965.475499998778105 ], [ 354773.656300000846386, 257947.956300001591444 ], [ 354822.940200001001358, 257936.749499998986721 ], [ 354849.60249999910593, 257930.634899999946356 ], [ 354842.236299999058247, 257754.100400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95484877, "LATITUDE": 18.35157231, "OBJECTID_1": 3547, "PARCEL_NO_": "102704040300", "Tax_Legal_": "5-31A LILLIENDAHL&MARIENHOJ No.3 LITTLE NORTHSIDE QTR.", "Name": "SCOBIE, JAMES D", "Address": "PO BOX 600199", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.677907737, "SHAPE_Area": 1895.6829953 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356287.499300003051758, 258008.686799999326468 ], [ 356283.764399997889996, 257973.825800001621246 ], [ 356282.216600000858307, 257966.213799998164177 ], [ 356240.245099999010563, 257970.936500001698732 ], [ 356243.098200000822544, 258014.656199999153614 ], [ 356287.499300003051758, 258008.686799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9521509, "LATITUDE": 18.35159879, "OBJECTID_1": 3552, "PARCEL_NO_": "102704040900", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-37 GT. NORTHSIDE", "Name": "MC COLLUM, OFFA & NANCY", "Address": "PO Box 217", "City": "Highland", "State": "Maryland", "Zip": 20777, "Country": "United States", "Land_Value": 16100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.25249556899999, "SHAPE_Area": 1057.1572459 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356546.642099998891354, 257973.655299998819828 ], [ 356522.307099997997284, 257990.554699998348951 ], [ 356535.911899998784065, 258002.698399998247623 ], [ 356543.928199999034405, 258008.252399999648333 ], [ 356548.748099997639656, 258010.402800001204014 ], [ 356553.54110000282526, 258015.719399999827147 ], [ 356572.962700001895428, 258007.645700000226498 ], [ 356568.194899998605251, 257999.374000001698732 ], [ 356566.600299999117851, 257997.25 ], [ 356552.241300001740456, 257978.978500001132488 ], [ 356546.642099998891354, 257973.655299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93145048, "LATITUDE": 18.35148424, "OBJECTID_1": 4729, "PARCEL_NO_": "102903011600", "Tax_Legal_": "MAFOLIE 24E GR NORTHSIDE", "Name": "TAMMIE J MOST REVOCABLE TRUST", "Address": "188 E Cydnee St", "City": "Fayetteville", "State": "Arkansas", "Zip": 72703, "Country": "United States", "Land_Value": 88100, "Improved_V": 355500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.42342389500001, "SHAPE_Area": 2612.6822918500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358765.340700000524521, 258023.900499999523163 ], [ 358752.894599996507168, 257970.392000000923872 ], [ 358708.515100002288818, 257973.828400000929832 ], [ 358720.102700002491474, 258033.451699998229742 ], [ 358765.340700000524521, 258023.900499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96017286, "LATITUDE": 18.35150481, "OBJECTID_1": 3294, "PARCEL_NO_": "102703030300", "Tax_Legal_": "CONTANT 108A-20 7B SOUTHSIDE QTR", "Name": "BLAKE, ELRIDGE W", "Address": "Po Box 303915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29300, "Improved_V": 262800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.62873629200001, "SHAPE_Area": 2031.5942123699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355734.620700001716614, 257974.60869999974966 ], [ 355695.300200000405312, 257952.122000001370907 ], [ 355691.293799996376038, 257949.133900001645088 ], [ 355688.059600003063679, 257950.162900000810623 ], [ 355669.25, 257981.039700001478195 ], [ 355706.913000002503395, 258008.790100000798702 ], [ 355719.94879999756813, 257993.064800001680851 ], [ 355734.620700001716614, 257974.60869999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003023400", "MAP": "A9-25-T64", "PARCEL_NAM": "3-22", "ACRE": null, "LONGITUDE": -64.91426059, "LATITUDE": 18.35147003, "OBJECTID_1": 5752, "PARCEL_NO_": "103003023400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-21 GT. NORTHSIDE", "Name": "WEAVER, MERCIA F", "Address": "PO Box 11817", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52100, "Improved_V": 181500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.83753238099999, "SHAPE_Area": 2811.8659548400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360581.973600000143051, 257993.355900000780821 ], [ 360534.072999998927116, 257980.959300000220537 ], [ 360528.254399999976158, 258001.387699998915195 ], [ 360523.940499998629093, 258034.494100000709295 ], [ 360574.88849999755621, 258047.131000000983477 ], [ 360581.973600000143051, 257993.355900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703034900", "MAP": "C9-185-T74", "PARCEL_NAM": "108-D", "ACRE": ".36", "LONGITUDE": -64.95808427, "LATITUDE": 18.35150697, "OBJECTID_1": 3336, "PARCEL_NO_": "102703034900", "Tax_Legal_": "CONTANT REM 108 7B SOUTHSIDE QTR", "Name": "HODGE, RHYS S", "Address": "PO Box 6520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 251100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.28077716799999, "SHAPE_Area": 2314.05484338 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355886.234399996697903, 257972.683100000023842 ], [ 355889.949500001966953, 258009.86600000038743 ], [ 355906.111699998378754, 258005.776399999856949 ], [ 355962.016999997198582, 257974.569899998605251 ], [ 355964.457500003278255, 257972.056800000369549 ], [ 355965.328599996864796, 257964.464600000530481 ], [ 355964.552799999713898, 257960.869600001722574 ], [ 355959.74549999833107, 257957.241700001060963 ], [ 355954.104900002479553, 257956.773299999535084 ], [ 355886.234399996697903, 257972.683100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9555834, "LATITUDE": 18.35149638, "OBJECTID_1": 3545, "PARCEL_NO_": "102704040100", "Tax_Legal_": "LILLIENDAHL 5-35 LITTLE NORTHSIDE QTR", "Name": "AYALA, FELIPE, JR.", "Address": "PO BOX 302681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71600, "Improved_V": 295300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.23485595700001, "SHAPE_Area": 2160.6118202900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356204.078000001609325, 257956.919399999082088 ], [ 356162.961400002241135, 257955.949599999934435 ], [ 356160.452600002288818, 257966.48369999974966 ], [ 356161.138400003314018, 257980.632599998265505 ], [ 356162.689900003373623, 257987.822500001639128 ], [ 356166.663900002837181, 257994.609999999403954 ], [ 356177.074100002646446, 258003.138999998569489 ], [ 356185.106600001454353, 258006.793299999088049 ], [ 356209.249200001358986, 258012.479299999773502 ], [ 356205.584499999880791, 257969.386199999600649 ], [ 356204.078000001609325, 257956.919399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604021700", "MAP": "G9-1579-T70", "PARCEL_NAM": "39U", "ACRE": ".25", "LONGITUDE": -64.96660396, "LATITUDE": 18.351631, "OBJECTID_1": 2706, "PARCEL_NO_": "102604021700", "Tax_Legal_": "39U LINDBERG BAY NO 4A SOUTHSIDE QTR", "Name": "COMISSIONG, CHERISA J.", "Address": "PO Box 185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.06288901100001, "SHAPE_Area": 1018.52711557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354996.619999997317791, 257994.955200001597404 ], [ 355018.19200000166893, 257993.883099999278784 ], [ 355018.231499999761581, 257999.739799998700619 ], [ 355033.681599996984005, 257998.635999999940395 ], [ 355050.563900001347065, 257997.234499998390675 ], [ 355041.874200001358986, 257983.504299998283386 ], [ 355041.119999997317791, 257977.376400001347065 ], [ 355016.136900000274181, 257975.694299999624491 ], [ 354994.836400002241135, 257974.644900001585484 ], [ 354996.619999997317791, 257994.955200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704040500", "MAP": null, "PARCEL_NAM": "5-27", "ACRE": null, "LONGITUDE": -64.954036, "LATITUDE": 18.35153473, "OBJECTID_1": 3549, "PARCEL_NO_": "102704040500", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 5-27&5-28 No.3 LITTLE NORTHSIDE QTR", "Name": "NOELLE LEE", "Address": "12 KERN BLVD", "City": "Cumberland", "State": "Rhode Island", "Zip": 28641607, "Country": "United States", "Land_Value": 63600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.24365222599999, "SHAPE_Area": 1473.1456899100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356364.471199996769428, 257965.620400000363588 ], [ 356330.62049999833107, 257963.654599998146296 ], [ 356335.089699998497963, 258006.965399999171495 ], [ 356350.368299998342991, 258011.945599999278784 ], [ 356356.017899997532368, 258011.358500000089407 ], [ 356367.369199998676777, 258004.063200000673532 ], [ 356364.471199996769428, 257965.620400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703040200", "MAP": null, "PARCEL_NAM": "38E", "ACRE": null, "LONGITUDE": -64.96546962, "LATITUDE": 18.35157961, "OBJECTID_1": 3340, "PARCEL_NO_": "102703040200", "Tax_Legal_": "LINDBERG 38E S S QTR", "Name": "BLANCHARD, MICHAEL ANTHONY & ROBERT CHARLES", "Address": "PO BOX 305571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.56702218199999, "SHAPE_Area": 1059.54065919 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355121.877199999988079, 257963.260800000280142 ], [ 355128.004000000655651, 258001.307799998670816 ], [ 355147.395099997520447, 257996.822500001639128 ], [ 355160.322999998927116, 257993.761900000274181 ], [ 355158.906400002539158, 257970.741099998354912 ], [ 355121.877199999988079, 257963.260800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95442311, "LATITUDE": 18.35151952, "OBJECTID_1": 3548, "PARCEL_NO_": "102704040400", "Tax_Legal_": "LILLIENDAHL 29 OF 5 LITTLE NORTHSIDE QTR", "Name": "ETIENNE SR & MONA MASSAC LIVING REV TRUST", "Address": "PO Box 598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57100, "Improved_V": 376700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.555583093, "SHAPE_Area": 2155.3353173300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356330.62049999833107, 257963.654599998146296 ], [ 356282.259700000286102, 257961.147900000214577 ], [ 356282.216600000858307, 257966.213799998164177 ], [ 356283.764399997889996, 257973.825800001621246 ], [ 356287.499300003051758, 258008.686799999326468 ], [ 356327.031999997794628, 258006.266100000590086 ], [ 356335.089699998497963, 258006.965399999171495 ], [ 356330.62049999833107, 257963.654599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903014900", "MAP": "D9-1370-T77", "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.92552792, "LATITUDE": 18.35150948, "OBJECTID_1": 4765, "PARCEL_NO_": "102903014900", "Tax_Legal_": "10 LOUISENHOJ NO.5A GREAT NORTHSIDE QTR", "Name": "FUERTES, DAVID", "Address": "PO Box 6306", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046306, "Country": "United States", "Land_Value": 55600, "Improved_V": 333000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.983025938, "SHAPE_Area": 840.14426668500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359373.652699999511242, 257987.504900000989437 ], [ 359349.420199997723103, 257992.372800000011921 ], [ 359352.535800002515316, 258005.274999998509884 ], [ 359350.723499998450279, 258028.691599998623133 ], [ 359369.259700000286102, 258029.898800000548363 ], [ 359373.478299997746944, 258007.979600001126528 ], [ 359374.435699999332428, 257990.255499999970198 ], [ 359373.652699999511242, 257987.504900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704039900", "MAP": null, "PARCEL_NAM": "5-25", "ACRE": null, "LONGITUDE": -64.95358537, "LATITUDE": 18.35135982, "OBJECTID_1": 3544, "PARCEL_NO_": "102704039900", "Tax_Legal_": "LILLIENDAHL 5-3,5,7,8,9&25,47 MARIENHOJ", "Name": "VIETTE, ANDRE", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.54524896000001, "SHAPE_Area": 2287.8436892300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356431.377199999988079, 257968.278900001198053 ], [ 356428.435999996960163, 257934.902100000530481 ], [ 356364.471199996769428, 257965.620400000363588 ], [ 356367.369199998676777, 258004.063200000673532 ], [ 356376.290799997746944, 257998.014499999582767 ], [ 356394.130400002002716, 257986.339200001209974 ], [ 356418.429399996995926, 257973.661400001496077 ], [ 356431.377199999988079, 257968.278900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93105625, "LATITUDE": 18.35143273, "OBJECTID_1": 4730, "PARCEL_NO_": "102903011700", "Tax_Legal_": "MAFOLIE 24F GR NORTHSIDE", "Name": "PATRICK GALLA and SALLY B HILLERICH GALLA", "Address": "2918 Cliffwynde Ter", "City": "Louisville", "State": "Kentucky", "Zip": 40241, "Country": "United States", "Land_Value": 80400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.340369778, "SHAPE_Area": 1992.10796549 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358792.4003000035882, 257971.137499999254942 ], [ 358756.1199000030756, 257970.418400000780821 ], [ 358752.894599996507168, 257970.392000000923872 ], [ 358765.340700000524521, 258023.900499999523163 ], [ 358783.104699999094009, 258021.090599998831749 ], [ 358791.169600002467632, 258020.945500001311302 ], [ 358798.415700003504753, 258022.27140000090003 ], [ 358797.997800000011921, 257976.671700000762939 ], [ 358792.4003000035882, 257971.137499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96512453, "LATITUDE": 18.35157782, "OBJECTID_1": 3341, "PARCEL_NO_": "102703040300", "Tax_Legal_": "LINDBERG 37A SOUTHSIDE QTR", "Name": "BLANCHARD, MICHAEL ANTHONY & ROBERT CHARLES", "Address": "PO BOX 305571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 272500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.60958799, "SHAPE_Area": 607.12892354099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355160.322999998927116, 257993.761900000274181 ], [ 355187.795199997723103, 257987.231699999421835 ], [ 355213.631399996578693, 257983.432399999350309 ], [ 355179.836400002241135, 257974.923200000077486 ], [ 355158.906400002539158, 257970.741099998354912 ], [ 355160.322999998927116, 257993.761900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020900", "MAP": "F9-2247-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93336421, "LATITUDE": 18.35132717, "OBJECTID_1": 4790, "PARCEL_NO_": "102903020900", "Tax_Legal_": "MAFOLIE 23-11812 & 32 GR NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 218500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.12552503800001, "SHAPE_Area": 2632.7687370600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358539.471799999475479, 257939.303199999034405 ], [ 358520.955300003290176, 257935.77419999986887 ], [ 358514.145199999213219, 257977.937100000679493 ], [ 358515.515100002288818, 258006.445999998599291 ], [ 358519.5016999989748, 258011.755899999290705 ], [ 358523.511699996888638, 258014.321899998933077 ], [ 358546.883900001645088, 258015.779699999839067 ], [ 358555.740800000727177, 258017.329900000244379 ], [ 358562.97240000218153, 258020.344399999827147 ], [ 358555.135899998247623, 257993.682500001043081 ], [ 358539.471799999475479, 257939.303199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91538248000001, "LATITUDE": 18.3514951, "OBJECTID_1": 5751, "PARCEL_NO_": "103003023300", "Tax_Legal_": "2-25 REM &2-25-1 ST JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "BOSTON (LIFE ESTATE), ALGERNON C & CLEONE A", "Address": "PO Box 302254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52100, "Improved_V": 127000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.43498321499999, "SHAPE_Area": 1084.0497334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360459.627899996936321, 258011.380800001323223 ], [ 360429.146300002932549, 257992.554999999701977 ], [ 360425.881499998271465, 257997.172400001436472 ], [ 360416.792700000107288, 258022.851399999111891 ], [ 360413.497299998998642, 258031.057100001722574 ], [ 360436.036300003528595, 258035.674499999731779 ], [ 360459.627899996936321, 258011.380800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003023200", "MAP": "F9-1365-T64", "PARCEL_NAM": "2-26", "ACRE": "0.55", "LONGITUDE": -64.91585518, "LATITUDE": 18.35138203, "OBJECTID_1": 5750, "PARCEL_NO_": "103003023200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-26 GREAT NORTHSIDE QTR", "Name": "FLAHARTY, LEONARD G. & ANITA", "Address": "PO Box 306047", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.63539404400001, "SHAPE_Area": 2234.8997496799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360420.199400000274181, 257992.292300000786781 ], [ 360369.142099998891354, 257975.474700000137091 ], [ 360367.144799999892712, 257982.126200001686811 ], [ 360364.64130000025034, 257992.027100000530481 ], [ 360358.111699998378754, 258001.261799998581409 ], [ 360348.814999997615814, 258012.02930000051856 ], [ 360341.823600001633167, 258020.126899998635054 ], [ 360341.758500002324581, 258020.2060999982059 ], [ 360364.773100003600121, 258018.786800000816584 ], [ 360407.480999998748302, 258025.066199999302626 ], [ 360416.98870000243187, 257999.843800000846386 ], [ 360420.199400000274181, 257992.292300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703031600", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-56", "ACRE": "0.35", "LONGITUDE": -64.95878057, "LATITUDE": 18.35134511, "OBJECTID_1": 3307, "PARCEL_NO_": "102703031600", "Tax_Legal_": "CONTANT 108A-56 7B S S QTR", "Name": "JACOBS, AKIL CHIOKE", "Address": "PO Box 8956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.55578445, "SHAPE_Area": 1320.97380623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355877.465700000524521, 257960.790100000798702 ], [ 355859.953400000929832, 257934.0489999987185 ], [ 355850.189499996602535, 257944.312699999660254 ], [ 355836.377899996936321, 257956.44310000166297 ], [ 355817.265299998223782, 257972.798200000077486 ], [ 355826.039200000464916, 257985.813000001013279 ], [ 355846.696299999952316, 257975.736999999731779 ], [ 355877.465700000524521, 257960.790100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96411205, "LATITUDE": 18.35143937, "OBJECTID_1": 3349, "PARCEL_NO_": "102703041200", "Tax_Legal_": "LINDBERG BAY 36B SOUTHSIDE QTR", "Name": "JENNINGS, HELENA & CHILDREN", "Address": "36 B LINBERG BAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19900, "Improved_V": 167400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.101240602, "SHAPE_Area": 965.58403956799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355300.158500000834465, 257954.587499998509884 ], [ 355264.702399998903275, 257951.764199998229742 ], [ 355271.701999999582767, 257982.007800001651049 ], [ 355301.519400000572205, 257984.151700001209974 ], [ 355300.158500000834465, 257954.587499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9642847, "LATITUDE": 18.35061805, "OBJECTID_1": 3348, "PARCEL_NO_": "102703041100", "Tax_Legal_": "36C ESTATE LINDBERG BAY SOUTHSIDE QTR", "Name": "LAMOTHE, DANIEL, MARGUERITE& MICHAEL", "Address": "PO Box 1671", "City": "Linden", "State": "New Jersey", "Zip": 7036, "Country": "United States", "Land_Value": 120000, "Improved_V": 90800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 533.65775163800004, "SHAPE_Area": 9097.8059328500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355215.846699997782707, 257829.593499999493361 ], [ 355245.694399997591972, 257829.86089999973774 ], [ 355245.620700001716614, 257832.660300001502037 ], [ 355247.335699997842312, 257907.925700001418591 ], [ 355248.540200002491474, 257955.853799998760223 ], [ 355249.931599996984005, 257981.829700000584126 ], [ 355271.701999999582767, 257982.007800001651049 ], [ 355264.702399998903275, 257951.764199998229742 ], [ 355300.158500000834465, 257954.587499998509884 ], [ 355292.625200003385544, 257797.683299999684095 ], [ 355253.096100002527237, 257799.681800000369549 ], [ 355214.3733000010252, 257801.686900001019239 ], [ 355215.761100001633167, 257828.08500000089407 ], [ 355215.846699997782707, 257829.593499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803029700", "MAP": "D9-3931-T87", "PARCEL_NAM": "96B", "ACRE": null, "LONGITUDE": -64.94782674, "LATITUDE": 18.35134784, "OBJECTID_1": 4356, "PARCEL_NO_": "102803029700", "Tax_Legal_": "SOLBERG 96B LT.NORTHSIDE QTR.", "Name": "BOSCHULTE, CHRISTIAN G. & ERMIN S. (TRUSTEES)", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040440, "Country": "United States", "Land_Value": 88100, "Improved_V": 192700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.41737560199999, "SHAPE_Area": 2062.7765390300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356984.14299999922514, 257992.754900000989437 ], [ 357039.700800001621246, 257987.061500001698732 ], [ 357030.656099997460842, 257951.018899999558926 ], [ 357016.920100003480911, 257954.284000001847744 ], [ 356958.017899997532368, 257958.6570999994874 ], [ 356957.999899998307228, 257960.767900001257658 ], [ 356977.270499996840954, 257970.424800001084805 ], [ 356983.67059999704361, 257976.387800000607967 ], [ 356986.852700002491474, 257981.480099998414516 ], [ 356986.81139999628067, 257986.334899999201298 ], [ 356984.14299999922514, 257992.754900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703031000", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-41", "ACRE": "0.37", "LONGITUDE": -64.95954281, "LATITUDE": 18.35134801, "OBJECTID_1": 3301, "PARCEL_NO_": "102703031000", "Tax_Legal_": "CONTANT 108A-41 7B S S QTR", "Name": "ZEPHIR, MARIO", "Address": "PO Box 306824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34900, "Improved_V": 365300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.065618253, "SHAPE_Area": 1290.2586817199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355793.636200003325939, 257956.937600001692772 ], [ 355759.931100003421307, 257937.874400001019239 ], [ 355741.958400003612041, 257965.16950000077486 ], [ 355773.23200000077486, 257985.690400000661612 ], [ 355793.636200003325939, 257956.937600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95195085, "LATITUDE": 18.35106276, "OBJECTID_1": 3557, "PARCEL_NO_": "102704041700", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-18 LITTLE NORTHSIDE", "Name": "CHI, PETER & OTHERS", "Address": "PO Box 6397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 71100, "Improved_V": 567000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.85728863100002, "SHAPE_Area": 4087.87238613 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356585.313799999654293, 257882.990499999374151 ], [ 356572.297700002789497, 257896.393899999558926 ], [ 356529.234099999070168, 257934.671599999070168 ], [ 356533.206299997866154, 257941.670200001448393 ], [ 356546.753600001335144, 257960.568399999290705 ], [ 356552.316799998283386, 257970.113200001418591 ], [ 356563.491899996995926, 257983.503499999642372 ], [ 356569.065999999642372, 257991.781800001859665 ], [ 356605.072400003671646, 257930.015000000596046 ], [ 356599.530699998140335, 257917.937300000339746 ], [ 356591.64919999986887, 257896.552299998700619 ], [ 356590.05460000038147, 257894.428300000727177 ], [ 356590.070699997246265, 257892.528599999845028 ], [ 356585.313799999654293, 257882.990499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91477483, "LATITUDE": 18.35126657, "OBJECTID_1": 5753, "PARCEL_NO_": "103003023500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-16 GREAT NORTHSIDE", "Name": "WATSON, MICHEAL & JUDITH", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 54900, "Improved_V": 303700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.621555046, "SHAPE_Area": 2715.4884445500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360531.756599999964237, 257968.907999999821186 ], [ 360500.4003000035882, 257958.096700001507998 ], [ 360497.95440000295639, 257961.243099998682737 ], [ 360494.664399996399879, 257968.815499998629093 ], [ 360489.777999997138977, 257974.475099999457598 ], [ 360481.664499998092651, 257980.319299999624491 ], [ 360471.1537000015378, 257983.610700000077486 ], [ 360463.898699998855591, 257983.340300001204014 ], [ 360457.471500001847744, 257980.543400000780821 ], [ 360465.322499997913837, 258005.516699999570847 ], [ 360472.559500001370907, 258007.897999998182058 ], [ 360519.194399997591972, 258023.689500000327826 ], [ 360520.941899999976158, 258007.871800001710653 ], [ 360523.47410000115633, 257994.593600001186132 ], [ 360531.756599999964237, 257968.907999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95649567, "LATITUDE": 18.35096559, "OBJECTID_1": 3647, "PARCEL_NO_": "102704060100", "Tax_Legal_": "107-17 EST CONTANT 7B SOUTHSIDE QTR", "Name": "LAKE, TISHA F", "Address": "PO Box 304580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.04448025600001, "SHAPE_Area": 1959.4262831399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356076.437100000679493, 257889.802400000393391 ], [ 356061.137000001966953, 257887.355200000107288 ], [ 356106.246200002729893, 257987.571600001305342 ], [ 356101.449000000953674, 257888.107299998402596 ], [ 356076.437100000679493, 257889.802400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704060200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95617797, "LATITUDE": 18.3509421, "OBJECTID_1": 3648, "PARCEL_NO_": "102704060200", "Tax_Legal_": "CONTANT 107-18 7B SOUTHSIDE QTR.", "Name": "JACOBS, IRIS & CHARLES", "Address": "PO Box 10708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74600, "Improved_V": 484100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.66490121700002, "SHAPE_Area": 3101.34735942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356106.246200002729893, 257987.571600001305342 ], [ 356107.882200002670288, 257984.840799998492002 ], [ 356143.107500001788139, 257920.112300001084805 ], [ 356155.398199997842312, 257897.203699998557568 ], [ 356150.740099996328354, 257876.056200001388788 ], [ 356134.543799996376038, 257884.156300000846386 ], [ 356127.269000001251698, 257886.207699999213219 ], [ 356101.449000000953674, 257888.107299998402596 ], [ 356106.246200002729893, 257987.571600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95240482, "LATITUDE": 18.35131802, "OBJECTID_1": 3551, "PARCEL_NO_": "102704040800", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-23 GT. NORTHSIDE", "Name": "MC COLLUM, OFFA & NANCY", "Address": "PO Box 17", "City": "Highland", "State": "Maryland", "Zip": 20777, "Country": "United States", "Land_Value": 28000, "Improved_V": 250800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.05707484600001, "SHAPE_Area": 1370.1694774800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356522.772799998521805, 257935.885299999266863 ], [ 356495.959499999880791, 257959.730500001460314 ], [ 356503.961499996483326, 257966.973200000822544 ], [ 356510.338200002908707, 257975.68019999936223 ], [ 356511.922100000083447, 257979.070700000971556 ], [ 356522.307099997997284, 257990.554699998348951 ], [ 356546.642099998891354, 257973.655299998819828 ], [ 356541.858199998736382, 257967.283300001174212 ], [ 356537.89130000025034, 257959.651500001549721 ], [ 356522.772799998521805, 257935.885299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91620671, "LATITUDE": 18.35093246, "OBJECTID_1": 5754, "PARCEL_NO_": "103003023800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1 25 J T GREAT NORTHSIDE QTR", "Name": "HILDA LEWIS JOYCE LIVING TRUST", "Address": "PO Box 303924", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98800, "Improved_V": 266600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.69280442399997, "SHAPE_Area": 3630.95179409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360382.170900002121925, 257922.087499998509884 ], [ 360330.725100003182888, 257903.090199999511242 ], [ 360329.904399998486042, 257904.772199999541044 ], [ 360328.120999999344349, 257924.811500001698732 ], [ 360330.736599996685982, 257996.393699999898672 ], [ 360329.718099996447563, 258021.294399999082088 ], [ 360331.329000003635883, 258021.5185999982059 ], [ 360332.952399998903275, 258020.265399999916553 ], [ 360341.118000000715256, 258008.299899999052286 ], [ 360354.139499999582767, 257994.263199999928474 ], [ 360359.04389999806881, 257986.492899999022484 ], [ 360369.009099997580051, 257952.58839999884367 ], [ 360369.027099996805191, 257950.477600000798702 ], [ 360374.782799996435642, 257937.436900001019239 ], [ 360379.6925999969244, 257929.033300001174212 ], [ 360382.170900002121925, 257922.087499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91752081, "LATITUDE": 18.35127842, "OBJECTID_1": 4978, "PARCEL_NO_": "102904016500", "Tax_Legal_": "1-9A&1-FH-b ST JOSEPH & ROSENDAHL no.4 GREAT NORTHSIDE QTR", "Name": "WADHWANI, MURLI R & VINOD M.", "Address": "PO Box 1140", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67800, "Improved_V": 374200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.474923574, "SHAPE_Area": 2044.1916305899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360236.615699999034405, 257970.081000000238419 ], [ 360195.569200001657009, 257960.879099998623133 ], [ 360188.008500002324581, 257996.49210000038147 ], [ 360183.79900000244379, 258017.355900000780821 ], [ 360187.018799997866154, 258018.015500001609325 ], [ 360187.861100003123283, 258013.800500001758337 ], [ 360205.551399998366833, 258019.644799999892712 ], [ 360219.314499996602535, 258013.213599998503923 ], [ 360220.934299997985363, 258012.382500000298023 ], [ 360220.950499996542931, 258010.482799999415874 ], [ 360227.532200001180172, 257995.126800000667572 ], [ 360231.619499996304512, 257988.616300001740456 ], [ 360236.615699999034405, 257970.081000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703047300", "MAP": "G9-1579-T70", "PARCEL_NAM": "39W", "ACRE": ".16", "LONGITUDE": -64.96625703, "LATITUDE": 18.35136514, "OBJECTID_1": 3435, "PARCEL_NO_": "102703047300", "Tax_Legal_": "LINDBERG 38J & 39W S. S. QTR", "Name": "RICHARDSON, RANDY R. & PAUL, DOLENA M.", "Address": "PO BOX 306991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.182825872, "SHAPE_Area": 832.52711516600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355063.181800000369549, 257943.3597999997437 ], [ 355047.098700001835823, 257938.162000000476837 ], [ 355043.544399999082088, 257976.763000000268221 ], [ 355062.944399997591972, 257971.222199998795986 ], [ 355072.53320000320673, 257968.518300000578165 ], [ 355073.145599998533726, 257946.638300001621246 ], [ 355063.181800000369549, 257943.3597999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9647662, "LATITUDE": 18.3512645, "OBJECTID_1": 3347, "PARCEL_NO_": "102703040900", "Tax_Legal_": "37D LINDBERGH BAY NO.4A SOUTHSIDE QTR", "Name": "LaVERNE TAVAREZ & ULRIC FRANCIS", "Address": "PO Box 518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.83642197500001, "SHAPE_Area": 776.74262998200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355220.6266999989748, 257919.528299998492002 ], [ 355207.74549999833107, 257917.100900001823902 ], [ 355209.671700000762939, 257974.956300001591444 ], [ 355223.352099999785423, 257978.234600000083447 ], [ 355222.720200002193451, 257957.753400001674891 ], [ 355220.6266999989748, 257919.528299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704042700", "MAP": "G9-186-T52", "PARCEL_NAM": "5-14", "ACRE": null, "LONGITUDE": -64.9559949, "LATITUDE": 18.35125622, "OBJECTID_1": 3566, "PARCEL_NO_": "102704042700", "Tax_Legal_": "LILLIENDAHL 5 14 LITTLE NORTHSIDE QTR", "Name": "CREQUE, WILLIAM & MARCELLA", "Address": "PO Box 307788", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 347300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.602386677, "SHAPE_Area": 2269.3776635499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356177.768200002610683, 257921.662500001490116 ], [ 356143.107500001788139, 257920.112300001084805 ], [ 356107.882200002670288, 257984.840799998492002 ], [ 356155.467299997806549, 257983.752599999308586 ], [ 356154.839000001549721, 257962.849199999123812 ], [ 356158.164899997413158, 257951.05519999936223 ], [ 356165.538599997758865, 257937.394499998539686 ], [ 356177.768200002610683, 257921.662500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703031500", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-45", "ACRE": "0.38", "LONGITUDE": -64.95893911, "LATITUDE": 18.35113134, "OBJECTID_1": 3306, "PARCEL_NO_": "102703031500", "Tax_Legal_": "CONTANT 108A-45 7B SOUTHSIDE QTR", "Name": "ERA FREDERICKS TRUST", "Address": "PO Box 9482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 259300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.06822463200001, "SHAPE_Area": 1901.73141781 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355859.953400000929832, 257934.0489999987185 ], [ 355837.66610000282526, 257899.880499999970198 ], [ 355828.688799999654293, 257912.472699999809265 ], [ 355820.501599997282028, 257926.971099998801947 ], [ 355815.602600000798702, 257934.108199998736382 ], [ 355805.792000003159046, 257949.859900001436472 ], [ 355803.353299997746944, 257952.162000000476837 ], [ 355817.265299998223782, 257972.798200000077486 ], [ 355836.377899996936321, 257956.44310000166297 ], [ 355850.189499996602535, 257944.312699999660254 ], [ 355859.953400000929832, 257934.0489999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96051051000001, "LATITUDE": 18.35130619, "OBJECTID_1": 3293, "PARCEL_NO_": "102703030200", "Tax_Legal_": "CONTANT 108A-19 7B S S QTR", "Name": "MARIO AUSTIN VERWEIJ REVOCABLE TRUST", "Address": "3017 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34900, "Improved_V": 466800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.94537796899999, "SHAPE_Area": 1185.0676681499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355678.441399998962879, 257943.329199999570847 ], [ 355661.609499998390675, 257931.370200000703335 ], [ 355642.00450000166893, 257960.973900001496077 ], [ 355669.25, 257981.039700001478195 ], [ 355688.059600003063679, 257950.162900000810623 ], [ 355678.441399998962879, 257943.329199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904016100", "MAP": null, "PARCEL_NAM": "1-F-F", "ACRE": null, "LONGITUDE": -64.91809838, "LATITUDE": 18.35136415, "OBJECTID_1": 4974, "PARCEL_NO_": "102904016100", "Tax_Legal_": "ST J & RSNDAHL 1FF 1FEA 1FHA GREAT NORTHSIDE", "Name": "FENTON, BENSON B.", "Address": "PO Box 11565", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37400, "Improved_V": 467400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.43552234399999, "SHAPE_Area": 1136.9856540400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360180.76969999819994, 257994.321899998933077 ], [ 360132.507799997925758, 257980.205800000578165 ], [ 360125.782200001180172, 258012.448100000619888 ], [ 360146.710400000214577, 258016.8412000015378 ], [ 360155.630199998617172, 258011.003600001335144 ], [ 360180.76969999819994, 257994.321899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9650067, "LATITUDE": 18.35122064, "OBJECTID_1": 3346, "PARCEL_NO_": "102703040800", "Tax_Legal_": "LINDBERGH BAY 37B SOUTHSIDE QTR", "Name": "DOUGLAS, JR & SR , HUGO", "Address": "PO Box 11300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44000, "Improved_V": 36700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.718532342, "SHAPE_Area": 2080.6125197299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355207.74549999833107, 257917.100900001823902 ], [ 355169.88120000064373, 257912.991300001740456 ], [ 355171.850599996745586, 257965.780799999833107 ], [ 355209.671700000762939, 257974.956300001591444 ], [ 355207.74549999833107, 257917.100900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703047300", "MAP": "G9-1579-T70", "PARCEL_NAM": "38J", "ACRE": ".07", "LONGITUDE": -64.96600635, "LATITUDE": 18.35136497, "OBJECTID_1": 3435, "PARCEL_NO_": "102703047300", "Tax_Legal_": "LINDBERG 38J & 39W S. S. QTR", "Name": "RICHARDSON, RANDY R. & PAUL, DOLENA M.", "Address": "PO BOX 306991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.931987657099995, "SHAPE_Area": 381.73048014900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355073.145599998533726, 257946.638300001621246 ], [ 355072.53320000320673, 257968.518300000578165 ], [ 355106.593199998140335, 257958.913899999111891 ], [ 355092.129900000989437, 257952.884899999946356 ], [ 355073.145599998533726, 257946.638300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804024000", "MAP": "D9-954-T71", "PARCEL_NAM": "35", "ACRE": null, "LONGITUDE": -64.93544162000001, "LATITUDE": 18.3511299, "OBJECTID_1": 4544, "PARCEL_NO_": "102804024000", "Tax_Legal_": "ELIZABETH 35B GREAT NORTHSIDE QTR", "Name": "SIBILLY, JOSEPH A", "Address": "PO Box 1101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 74800, "Improved_V": 352300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.92160060099999, "SHAPE_Area": 2603.6580877400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358280.9375, 257997.559999998658895 ], [ 358293.872699998319149, 257993.655099999159575 ], [ 358324.595200002193451, 257984.196199998259544 ], [ 358345.166599996387959, 257935.813099998980761 ], [ 358350.864799998700619, 257929.526900000870228 ], [ 358308.990500003099442, 257922.851399999111891 ], [ 358280.9375, 257997.559999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95993503, "LATITUDE": 18.35118882, "OBJECTID_1": 3298, "PARCEL_NO_": "102703030700", "Tax_Legal_": "CONTANT A108A-21 7B S S QTR", "Name": "HENRY, HILDRED H. & STEVEN RAFFA", "Address": "108-A-21 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36800, "Improved_V": 243700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.10521787299999, "SHAPE_Area": 2254.8250993400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355759.931100003421307, 257937.874400001019239 ], [ 355718.220399998128414, 257911.990699999034405 ], [ 355711.683600001037121, 257922.069699998944998 ], [ 355705.994400002062321, 257927.300500001758337 ], [ 355695.390100002288818, 257941.56810000166297 ], [ 355696.169399999082088, 257944.740899998694658 ], [ 355698.56139999628067, 257947.92680000141263 ], [ 355695.300200000405312, 257952.122000001370907 ], [ 355734.620700001716614, 257974.60869999974966 ], [ 355741.958400003612041, 257965.16950000077486 ], [ 355759.931100003421307, 257937.874400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91524423, "LATITUDE": 18.35129419, "OBJECTID_1": 5751, "PARCEL_NO_": "103003023300", "Tax_Legal_": "2-25 REM &2-25-1 ST JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "BOSTON (LIFE ESTATE), ALGERNON C & CLEONE A", "Address": "PO Box 302254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52100, "Improved_V": 127000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.552969969, "SHAPE_Area": 652.57591362300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360457.471500001847744, 257980.543400000780821 ], [ 360445.380500003695488, 257980.022300001233816 ], [ 360437.288599997758865, 257983.333599999547005 ], [ 360435.670500002801418, 257983.953600000590086 ], [ 360429.146300002932549, 257992.554999999701977 ], [ 360459.627899996936321, 258011.380800001323223 ], [ 360465.322499997913837, 258005.516699999570847 ], [ 360457.471500001847744, 257980.543400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904018500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91665019, "LATITUDE": 18.35100893, "OBJECTID_1": 4995, "PARCEL_NO_": "102904018500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-7A GR NORTHSIDE", "Name": "MARK, BARBARA, ERRIS & M. MAJORIE GEORGE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 86500, "Improved_V": 568400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.456887489, "SHAPE_Area": 3113.4371876300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360320.038099996745586, 257927.067400000989437 ], [ 360258.8158999979496, 257919.811299998313189 ], [ 360289.1554000005126, 257955.312300000339746 ], [ 360287.157999999821186, 258000.469999998807907 ], [ 360316.916000001132488, 258009.5793999992311 ], [ 360320.184399999678135, 258004.539900001138449 ], [ 360322.711300000548363, 257991.894999999552965 ], [ 360320.038099996745586, 257927.067400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903014800", "MAP": "F9-2247-T68", "PARCEL_NAM": "23-13", "ACRE": ".80", "LONGITUDE": -64.93294347, "LATITUDE": 18.3512186, "OBJECTID_1": 4764, "PARCEL_NO_": "102903014800", "Tax_Legal_": "MAFOLIE 23-13 GREAT NORTHSIDE QTR", "Name": "SWEENEY, DAVID P.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102700, "Improved_V": 382100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.93109683599999, "SHAPE_Area": 3069.3501102099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358603.068000003695488, 257951.855999998748302 ], [ 358539.471799999475479, 257939.303199999034405 ], [ 358555.135899998247623, 257993.682500001043081 ], [ 358609.959700003266335, 257994.764400001615286 ], [ 358621.38120000064373, 257979.236999999731779 ], [ 358612.599799998104572, 257968.82149999961257 ], [ 358605.441899999976158, 257957.152800001204014 ], [ 358603.049999997019768, 257953.96680000051856 ], [ 358603.068000003695488, 257951.855999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96532116, "LATITUDE": 18.35117044, "OBJECTID_1": 3345, "PARCEL_NO_": "102703040700", "Tax_Legal_": "LINDBERG BAY 37C SOUTHSIDE QTR", "Name": "DOUGLAS, JR & SR , HUGO", "Address": "PO Box 11300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.36003362700001, "SHAPE_Area": 1439.9561545900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355169.88120000064373, 257912.991300001740456 ], [ 355140.879100002348423, 257909.798599999397993 ], [ 355144.482699997723103, 257960.068399999290705 ], [ 355171.850599996745586, 257965.780799999833107 ], [ 355169.88120000064373, 257912.991300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93199191, "LATITUDE": 18.35108823, "OBJECTID_1": 4761, "PARCEL_NO_": "102903014500", "Tax_Legal_": "MAFOLIE ESTATE 24C No.8F GREAT NORTHSIDE QTR.", "Name": "24C & 24D ESTATE MAFOLIE LLC", "Address": "5143 Palm Psge", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 149100, "Improved_V": 493400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.392992943, "SHAPE_Area": 2681.3634760300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358651.096100002527237, 257993.412399999797344 ], [ 358703.662799999117851, 257975.47749999910593 ], [ 358699.376999996602535, 257910.636700000613928 ], [ 358688.03830000013113, 257916.454500000923872 ], [ 358674.214100003242493, 257930.062399998307228 ], [ 358666.055600002408028, 257941.183600001037121 ], [ 358656.241400003433228, 257957.357500001788139 ], [ 358652.118100002408028, 257968.089499998837709 ], [ 358650.440800003707409, 257975.675200000405312 ], [ 358651.096100002527237, 257993.412399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803025100", "MAP": "D9-6427-T98", "PARCEL_NAM": "13", "ACRE": null, "LONGITUDE": -64.94671763, "LATITUDE": 18.35102642, "OBJECTID_1": 4320, "PARCEL_NO_": "102803025100", "Tax_Legal_": "13 SOLBERG (ROW) No.1 LITTLE NORTHSIDE QUARTER", "Name": "BOSCHULTE, LOUIS J", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 77800, "Improved_V": 731100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.736268911, "SHAPE_Area": 734.44312682099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357136.377999998629093, 257892.448100000619888 ], [ 357135.103100001811981, 257890.339299999177456 ], [ 357134.398199997842312, 257889.173200000077486 ], [ 357134.006300002336502, 257886.683200001716614 ], [ 357133.633199997246265, 257884.311799999326468 ], [ 357121.470200002193451, 257892.233800001442432 ], [ 357126.31530000269413, 257891.429099999368191 ], [ 357128.725199997425079, 257892.504299998283386 ], [ 357133.498400002717972, 257900.142700001597404 ], [ 357134.021300002932549, 257908.55180000141263 ], [ 357134.207599997520447, 257911.547600001096725 ], [ 357134.004000000655651, 257912.582499999552965 ], [ 357133.604599997401237, 257914.613200001418591 ], [ 357133.379100002348423, 257915.759500000625849 ], [ 357132.817299999296665, 257918.615800000727177 ], [ 357130.819499999284744, 257928.773200001567602 ], [ 357130.395900003612041, 257930.926600001752377 ], [ 357129.590700000524521, 257935.020700000226498 ], [ 357129.1503000035882, 257937.25959999859333 ], [ 357127.970600001513958, 257940.467799998819828 ], [ 357127.088500000536442, 257942.866700001060963 ], [ 357126.673900000751019, 257943.994300000369549 ], [ 357124.373999997973442, 257946.598999999463558 ], [ 357122.056800000369549, 257949.223400000482798 ], [ 357119.906199999153614, 257951.659000001847744 ], [ 357118.531599998474121, 257953.215799998492002 ], [ 357116.263199999928474, 257955.059599999338388 ], [ 357113.905799999833107, 257956.975600000470877 ], [ 357112.020400002598763, 257958.508000001311302 ], [ 357109.827399998903275, 257960.290399998426437 ], [ 357107.478900000452995, 257962.199200000613928 ], [ 357104.807899996638298, 257964.370200000703335 ], [ 357103.103799998760223, 257965.755199998617172 ], [ 357098.460799999535084, 257967.735599998384714 ], [ 357095.92059999704361, 257968.819099999964237 ], [ 357093.392099998891354, 257969.89750000089407 ], [ 357091.763300001621246, 257971.784000001847744 ], [ 357091.716499999165535, 257977.272100001573563 ], [ 357094.921999998390675, 257979.620400000363588 ], [ 357096.583099998533726, 257979.779100000858307 ], [ 357097.339100003242493, 257979.851199999451637 ], [ 357099.292599998414516, 257978.975699998438358 ], [ 357100.576999999582767, 257978.400100000202656 ], [ 357101.988399997353554, 257975.507399998605251 ], [ 357103.038999997079372, 257973.353999998420477 ], [ 357105.133699998259544, 257971.872299998998642 ], [ 357106.812399998307228, 257970.684799998998642 ], [ 357107.454199999570847, 257970.230799999088049 ], [ 357109.749300003051758, 257968.607299998402596 ], [ 357111.505500003695488, 257967.364999998360872 ], [ 357112.774099998176098, 257966.467599999159575 ], [ 357114.649300001561642, 257964.706999998539686 ], [ 357116.324799999594688, 257963.133799999952316 ], [ 357118.617600001394749, 257960.980999998748302 ], [ 357120.216499999165535, 257959.479800000786781 ], [ 357121.812799997627735, 257957.981100000441074 ], [ 357123.41160000115633, 257956.479899998754263 ], [ 357124.802100002765656, 257955.174300000071526 ], [ 357126.5929000005126, 257953.492899999022484 ], [ 357127.747800000011921, 257952.049600001424551 ], [ 357128.862999998033047, 257950.655699998140335 ], [ 357130.419699996709824, 257948.710200000554323 ], [ 357131.201899997889996, 257947.732599999755621 ], [ 357132.298299998044968, 257946.362399999052286 ], [ 357133.283100001513958, 257943.357200000435114 ], [ 357134.385899998247623, 257939.991999998688698 ], [ 357135.182099997997284, 257937.562199998646975 ], [ 357135.846699997782707, 257935.534099999815226 ], [ 357136.437700003385544, 257933.730700001120567 ], [ 357136.715599998831749, 257932.207100000232458 ], [ 357137.276199996471405, 257929.133799999952316 ], [ 357137.728500001132488, 257926.65430000051856 ], [ 357138.136200003325939, 257924.419300001114607 ], [ 357138.741300001740456, 257921.102099999785423 ], [ 357139.212700001895428, 257918.517799999564886 ], [ 357139.821199998259544, 257915.182100001722574 ], [ 357139.962999999523163, 257913.394099999219179 ], [ 357140.10360000282526, 257911.621199999004602 ], [ 357140.323499999940395, 257908.847899999469519 ], [ 357140.473600000143051, 257906.954799998551607 ], [ 357140.584700003266335, 257905.553800001740456 ], [ 357140.724600002169609, 257903.790500000119209 ], [ 357139.881399996578693, 257900.906199999153614 ], [ 357139.220299996435642, 257898.644900001585484 ], [ 357138.791799999773502, 257897.179000001400709 ], [ 357138.373999997973442, 257895.749699998646975 ], [ 357137.877599999308586, 257894.928700000047684 ], [ 357137.145300000905991, 257893.717399999499321 ], [ 357136.377999998629093, 257892.448100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604022100", "MAP": "F9-78-T56", "PARCEL_NAM": "39A", "ACRE": null, "LONGITUDE": -64.96677401, "LATITUDE": 18.35122381, "OBJECTID_1": 2709, "PARCEL_NO_": "102604022100", "Tax_Legal_": "LINDBERG BAY 39A S S QTR", "Name": "HODGE, ELISA G & STEPHANIE", "Address": "4333 Sheldon Ave", "City": "Baltimore", "State": "Maryland", "Zip": 21206, "Country": "United States", "Land_Value": 27400, "Improved_V": 293500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.98124975, "SHAPE_Area": 884.42126087500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355017.829000003635883, 257928.883299998939037 ], [ 354989.98309999704361, 257919.377500001341105 ], [ 354991.361400000751019, 257935.073100000619888 ], [ 354991.749600000679493, 257939.493299998342991 ], [ 354993.633100003004074, 257960.942400000989437 ], [ 355013.028599999845028, 257961.947799999266863 ], [ 355016.537799999117851, 257937.776599999517202 ], [ 355017.121799997985363, 257933.75450000166893 ], [ 355017.829000003635883, 257928.883299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96557081, "LATITUDE": 18.35111583, "OBJECTID_1": 3344, "PARCEL_NO_": "102703040600", "Tax_Legal_": "LINDBERG BAY 38A SOUTHSIDE QTR", "Name": "RICHARDSON, GLADYS &", "Address": "THERIEL--BOX 6093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49200, "Improved_V": 366000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.05964233, "SHAPE_Area": 1243.02523228 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355140.879100002348423, 257909.798599999397993 ], [ 355118.394100002944469, 257898.848799999803305 ], [ 355116.777800001204014, 257899.257699999958277 ], [ 355121.139200001955032, 257955.233199998736382 ], [ 355144.482699997723103, 257960.068399999290705 ], [ 355140.879100002348423, 257909.798599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003039200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91138099, "LATITUDE": 18.35035944, "OBJECTID_1": 5888, "PARCEL_NO_": "103003039200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4G-5 GT. NORTHSIDE", "Name": "PACQUETTE, J. & ANTHONY, M. G", "Address": "PO Box 10237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62900, "Improved_V": 363200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 602.43846757699998, "SHAPE_Area": 4804.5216936899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360870.138400003314018, 257813.990600001066923 ], [ 360860.593999996781349, 257798.502700001001358 ], [ 360835.988499999046326, 257752.493999999016523 ], [ 360844.342600002884865, 257907.716099999845028 ], [ 360849.946099996566772, 258007.186999998986721 ], [ 360881.107500001788139, 257946.225000001490116 ], [ 360900.4121999964118, 257951.871399998664856 ], [ 360902.247800000011921, 257925.710799999535084 ], [ 360852.35530000180006, 257913.692299999296665 ], [ 360854.606299996376038, 257838.77250000089407 ], [ 360861.279799997806549, 257812.651500001549721 ], [ 360870.138400003314018, 257813.990600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93063923, "LATITUDE": 18.35092905, "OBJECTID_1": 4755, "PARCEL_NO_": "102903013900", "Tax_Legal_": "25 ESTATE MAFOLIE (COMBINED) NO.8F GREAT NORTHSIDE QTR.", "Name": "KNOERZER, ELIZABETH G. & MICHAEL A.", "Address": "72 Lakeview Dr N", "City": "Cooperstown", "State": "New York", "Zip": 13326, "Country": "United States", "Land_Value": 148000, "Improved_V": 832200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.35129266799999, "SHAPE_Area": 3985.8784348999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358805.983900003135204, 257985.77479999884963 ], [ 358852.111199997365475, 257971.416799999773502 ], [ 358853.465400002896786, 257902.1875 ], [ 358826.014799997210503, 257906.18470000103116 ], [ 358791.282200001180172, 257913.077599998563528 ], [ 358792.4003000035882, 257971.137499999254942 ], [ 358797.997800000011921, 257976.671700000762939 ], [ 358842.456399999558926, 257963.947799999266863 ], [ 358844.812399998307228, 257971.355399999767542 ], [ 358806.012299999594688, 257982.436900001019239 ], [ 358805.983900003135204, 257985.77479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91698538, "LATITUDE": 18.35103263, "OBJECTID_1": 4986, "PARCEL_NO_": "102904017400", "Tax_Legal_": "1-7 ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "BENWARE, ANTHONY R. & LESLIE C.", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62600, "Improved_V": 479300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.40637488, "SHAPE_Area": 2632.5116194500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360258.8158999979496, 257919.811299998313189 ], [ 360249.951800003647804, 257919.105500001460314 ], [ 360247.255999997258186, 257951.591899998486042 ], [ 360241.345600001513958, 257982.785300001502037 ], [ 360240.510600000619888, 257986.155999999493361 ], [ 360259.00900000333786, 257991.795800000429153 ], [ 360287.157999999821186, 258000.469999998807907 ], [ 360289.1554000005126, 257955.312300000339746 ], [ 360258.8158999979496, 257919.811299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93247411, "LATITUDE": 18.35098614, "OBJECTID_1": 4763, "PARCEL_NO_": "102903014700", "Tax_Legal_": "MAFOLIE 23-10 GR NORTHSIDE", "Name": "KREKE(TRUSTEE), MARILYN E.", "Address": "PO Box 2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 92300, "Improved_V": 350200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.9177564, "SHAPE_Area": 2177.8036499099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358647.3378000035882, 257961.295400001108646 ], [ 358646.756300002336502, 257934.903900001198053 ], [ 358626.088899999856949, 257899.904399998486042 ], [ 358622.822200000286102, 257904.732799999415874 ], [ 358620.354800000786781, 257910.412099998444319 ], [ 358617.095299996435642, 257914.396200001239777 ], [ 358608.071299999952316, 257932.476399999111891 ], [ 358607.237999998033047, 257935.635999999940395 ], [ 358607.950800001621246, 257946.618700001388788 ], [ 358609.507700003683567, 257953.175299998372793 ], [ 358623.051299996674061, 257972.495700001716614 ], [ 358635.030900001525879, 257986.103700000792742 ], [ 358637.442699998617172, 257986.967799998819828 ], [ 358640.67509999871254, 257986.149900000542402 ], [ 358644.047799997031689, 257968.867800001055002 ], [ 358647.3378000035882, 257961.295400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95289227000001, "LATITUDE": 18.3510689, "OBJECTID_1": 3550, "PARCEL_NO_": "102704040700", "Tax_Legal_": "LILLIENDAHL 24 OF 5 No.3 LITTLE NORTHSIDE QTR.", "Name": "VAN HEURCK, NICOLAS & MARIA RODRIGUEZ", "Address": "PO Box 7702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.72559176499999, "SHAPE_Area": 3589.7608199699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356446.376299999654293, 257911.406399998813868 ], [ 356428.435999996960163, 257934.902100000530481 ], [ 356431.377199999988079, 257968.278900001198053 ], [ 356433.805100001394749, 257967.243299998342991 ], [ 356450.796999998390675, 257960.416299998760223 ], [ 356476.665500000119209, 257952.817600000649691 ], [ 356484.723300002515316, 257953.516800001263618 ], [ 356495.959499999880791, 257959.730500001460314 ], [ 356522.772799998521805, 257935.885299999266863 ], [ 356513.993299998342991, 257925.258699998259544 ], [ 356500.359700001776218, 257916.492300000041723 ], [ 356489.11089999973774, 257911.75620000064373 ], [ 356446.376299999654293, 257911.406399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96458809000001, "LATITUDE": 18.35111597, "OBJECTID_1": 3354, "PARCEL_NO_": "102703041700", "Tax_Legal_": "LINDBERG BAY 36A & 36AB SOUTHSIDE QTR", "Name": "TROPICAL ESTATE HOLDINGS USVI LLC", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38100, "Improved_V": 294900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.79379476599999, "SHAPE_Area": 1335.44794118 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355247.335699997842312, 257907.925700001418591 ], [ 355219.9408999979496, 257905.379399999976158 ], [ 355220.6266999989748, 257919.528299998492002 ], [ 355222.720200002193451, 257957.753400001674891 ], [ 355248.540200002491474, 257955.853799998760223 ], [ 355247.335699997842312, 257907.925700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703030100", "MAP": "D9-5761-T94", "PARCEL_NAM": "108A-18", "ACRE": "0.34", "LONGITUDE": -64.96083197, "LATITUDE": 18.35107806, "OBJECTID_1": 3292, "PARCEL_NO_": "102703030100", "Tax_Legal_": "CONTANT 108A-18 7B SOUTHSIDE", "Name": "FREDERICK, JOSEPH & FLORA", "Address": "BOX 5330", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32100, "Improved_V": 223400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.53989136199999, "SHAPE_Area": 1979.59545138 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355664.059000000357628, 257927.801699999719858 ], [ 355628.784500002861023, 257903.659400001168251 ], [ 355615.795299999415874, 257913.896600000560284 ], [ 355609.317900002002716, 257917.010000001639128 ], [ 355602.840400002896786, 257920.123399998992682 ], [ 355589.921400003135204, 257922.128600001335144 ], [ 355642.00450000166893, 257960.973900001496077 ], [ 355661.609499998390675, 257931.370200000703335 ], [ 355664.059000000357628, 257927.801699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003024100", "MAP": "F9-1365-T64", "PARCEL_NAM": "2-24", "ACRE": "0.50", "LONGITUDE": -64.91571856, "LATITUDE": 18.35107981, "OBJECTID_1": 5757, "PARCEL_NO_": "103003024100", "Tax_Legal_": "2-24 ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR.", "Name": "BURGOS, MELVIN", "Address": "3094 Contant 26-Bc", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.351319985, "SHAPE_Area": 1687.6700304599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360405.262599997222424, 257956.473700001835823 ], [ 360380.383799999952316, 257942.5489999987185 ], [ 360373.784100003540516, 257960.015700001269579 ], [ 360370.940399996936321, 257969.486000001430511 ], [ 360369.142099998891354, 257975.474700000137091 ], [ 360420.199400000274181, 257992.292300000786781 ], [ 360421.103000000119209, 257990.167199999094009 ], [ 360425.186700001358986, 257984.078899998217821 ], [ 360434.129799999296665, 257975.497299998998642 ], [ 360437.362300001084805, 257974.679299999028444 ], [ 360405.262599997222424, 257956.473700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96584706, "LATITUDE": 18.35108528, "OBJECTID_1": 3343, "PARCEL_NO_": "102703040500", "Tax_Legal_": "LINDBERG BAY 38B SOUTHSIDE QTR", "Name": "PHILLIPS, EUREKA L. & OTHERS", "Address": "PO Box 301862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43500, "Improved_V": 380400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.059788529, "SHAPE_Area": 1695.6066741 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355116.777800001204014, 257899.257699999958277 ], [ 355080.396700002253056, 257910.359000001102686 ], [ 355079.329599998891354, 257940.95890000090003 ], [ 355101.843400001525879, 257948.531399998813868 ], [ 355115.504000000655651, 257954.131599999964237 ], [ 355121.139200001955032, 257955.233199998736382 ], [ 355116.777800001204014, 257899.257699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704040500", "MAP": null, "PARCEL_NAM": "5-28", "ACRE": null, "LONGITUDE": -64.95407321, "LATITUDE": 18.35110951, "OBJECTID_1": 3549, "PARCEL_NO_": "102704040500", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 5-27&5-28 No.3 LITTLE NORTHSIDE QTR", "Name": "NOELLE LEE", "Address": "12 KERN BLVD", "City": "Cumberland", "State": "Rhode Island", "Zip": 28641607, "Country": "United States", "Land_Value": 63600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.43253018199999, "SHAPE_Area": 1687.2653512500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356364.471199996769428, 257965.620400000363588 ], [ 356360.073899999260902, 257913.866500001400709 ], [ 356343.954800002276897, 257912.8902000002563 ], [ 356333.431400001049042, 257917.659200001507998 ], [ 356326.158399999141693, 257919.499499998986721 ], [ 356330.62049999833107, 257963.654599998146296 ], [ 356364.471199996769428, 257965.620400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704042000", "MAP": "G9-198-T52", "PARCEL_NAM": "5-26", "ACRE": ".50", "LONGITUDE": -64.95362162000001, "LATITUDE": 18.35104352, "OBJECTID_1": 3560, "PARCEL_NO_": "102704042000", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-26 LITTLE NORTHSIDE QTR", "Name": "HAMMOND, ERIC N. & SAGE", "Address": "PO Box 502278", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 48400, "Improved_V": 394900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.23249979400001, "SHAPE_Area": 2528.6855818700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356446.376299999654293, 257911.406399998813868 ], [ 356408.431100003421307, 257916.795400001108646 ], [ 356360.073899999260902, 257913.866500001400709 ], [ 356364.471199996769428, 257965.620400000363588 ], [ 356428.435999996960163, 257934.902100000530481 ], [ 356446.376299999654293, 257911.406399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9179261, "LATITUDE": 18.35114053, "OBJECTID_1": 4975, "PARCEL_NO_": "102904016200", "Tax_Legal_": "ST JOSE & ROSE 1FE&1FFA GT NORTHSIDE QTR", "Name": "BUCKLEY, LORRAINE M.", "Address": "PO BOX 308023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40200, "Improved_V": 200300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.38188511499999, "SHAPE_Area": 1683.77636605 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360132.507799997925758, 257980.205800000578165 ], [ 360180.76969999819994, 257994.321899998933077 ], [ 360188.008500002324581, 257996.49210000038147 ], [ 360195.569200001657009, 257960.879099998623133 ], [ 360168.995099999010563, 257956.65089999884367 ], [ 360168.134800001978874, 257962.976599998772144 ], [ 360136.724600002169609, 257958.497699998319149 ], [ 360132.507799997925758, 257980.205800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703032400", "MAP": "A9-83-T68", "PARCEL_NAM": "108-A-55", "ACRE": ".35", "LONGITUDE": -64.95843102000001, "LATITUDE": 18.35109654, "OBJECTID_1": 3315, "PARCEL_NO_": "102703032400", "Tax_Legal_": "CONTANT 108A-55 7B S S QTR", "Name": "MILLS, ANDRENE", "Address": "PO Box 306045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33000, "Improved_V": 267300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.621045498, "SHAPE_Area": 1485.05695747 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355911.501599997282028, 257941.014800000935793 ], [ 355890.027900002896786, 257906.008600000292063 ], [ 355877.852300003170967, 257915.40819999948144 ], [ 355859.953400000929832, 257934.0489999987185 ], [ 355877.465700000524521, 257960.790100000798702 ], [ 355911.501599997282028, 257941.014800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704042400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95446434, "LATITUDE": 18.35113353, "OBJECTID_1": 3563, "PARCEL_NO_": "102704042400", "Tax_Legal_": "LILLIENDAHL&MARIENDAHL 5-30 No.3 LITTLE NORTHSIDE QTR.", "Name": "STEVENS, P. M. & HODGE, J. T", "Address": "PO Box 301921", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33600, "Improved_V": 653400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.44150837199999, "SHAPE_Area": 1971.8524392899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356326.158399999141693, 257919.499499998986721 ], [ 356316.461099997162819, 257921.953299999237061 ], [ 356303.547499999403954, 257923.325300000607967 ], [ 356276.960799999535084, 257920.574499998241663 ], [ 356282.259700000286102, 257961.147900000214577 ], [ 356330.62049999833107, 257963.654599998146296 ], [ 356326.158399999141693, 257919.499499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94691716, "LATITUDE": 18.35097972, "OBJECTID_1": 4316, "PARCEL_NO_": "102803024700", "Tax_Legal_": "SOLBERG ESTATE 13B LITTLE NORTHSIDE", "Name": "SIMEON, DENNIS & SPRAUVE, PATRICK", "Address": "PO Box 424", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 108300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.24134363900001, "SHAPE_Area": 3281.0885750299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357057.401100002229214, 257935.194699998944998 ], [ 357093.392099998891354, 257969.89750000089407 ], [ 357103.103799998760223, 257965.755199998617172 ], [ 357118.531599998474121, 257953.215799998492002 ], [ 357126.673900000751019, 257943.994300000369549 ], [ 357129.1503000035882, 257937.25959999859333 ], [ 357134.207599997520447, 257911.547600001096725 ], [ 357133.498400002717972, 257900.142700001597404 ], [ 357128.725199997425079, 257892.504299998283386 ], [ 357126.31530000269413, 257891.429099999368191 ], [ 357121.470200002193451, 257892.233800001442432 ], [ 357057.401100002229214, 257935.194699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95489668, "LATITUDE": 18.35111061, "OBJECTID_1": 3564, "PARCEL_NO_": "102704042500", "Tax_Legal_": "LILLIENDAHL& MARIEN 32&31B OF 5 LITTLE NORTHSIDE", "Name": "KEMENY, JOHN", "Address": "36 Robinson Rd", "City": "Westford", "State": "Massachusetts", "Zip": 1886, "Country": "United States", "Land_Value": 36700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.320685932, "SHAPE_Area": 1721.22580096 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356237.50900000333786, 257913.496599998325109 ], [ 356239.541299998760223, 257958.898400001227856 ], [ 356282.259700000286102, 257961.147900000214577 ], [ 356276.960799999535084, 257920.574499998241663 ], [ 356257.625500001013279, 257918.516399998217821 ], [ 356237.50900000333786, 257913.496599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703031400", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-40", "ACRE": "0.39", "LONGITUDE": -64.95938298, "LATITUDE": 18.35109789, "OBJECTID_1": 3305, "PARCEL_NO_": "102703031400", "Tax_Legal_": "CONTANT 108A-40 7B S.S. QTR.", "Name": "PERNELL AND ERNESTINE SLAVEN REVOCABLE TRUST", "Address": "108A-40 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36800, "Improved_V": 476100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.79267532599999, "SHAPE_Area": 1231.19284945 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355809.974600002169609, 257932.162300001829863 ], [ 355775.491999998688698, 257909.715300001204014 ], [ 355759.931100003421307, 257937.874400001019239 ], [ 355793.636200003325939, 257956.937600001692772 ], [ 355798.531599998474121, 257950.222699999809265 ], [ 355805.899899996817112, 257937.195199999958277 ], [ 355809.974600002169609, 257932.162300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003026900", "MAP": "D9-9065-T016", "PARCEL_NAM": "3-20", "ACRE": ".51", "LONGITUDE": -64.91414368, "LATITUDE": 18.35096146, "OBJECTID_1": 5785, "PARCEL_NO_": "103003026900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-20 GR NORTHSIDE QTR", "Name": "BEDMINSTER, DORIS", "Address": "9034 First Ave", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52300, "Improved_V": 806800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.589333391, "SHAPE_Area": 2697.6256839900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360585.611299999058247, 257965.745200000703335 ], [ 360591.542700000107288, 257922.954900000244379 ], [ 360555.506499998271465, 257926.039299998432398 ], [ 360553.872299998998642, 257928.559000000357628 ], [ 360555.459700003266335, 257931.527399998158216 ], [ 360557.875100001692772, 257931.969300001859665 ], [ 360557.045400001108646, 257934.706700000911951 ], [ 360553.020999997854233, 257933.8293999992311 ], [ 360551.397600002586842, 257935.082699999213219 ], [ 360534.072999998927116, 257980.959300000220537 ], [ 360581.973600000143051, 257993.355900000780821 ], [ 360585.611299999058247, 257965.745200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95526099, "LATITUDE": 18.35107089, "OBJECTID_1": 3603, "PARCEL_NO_": "102704046800", "Tax_Legal_": "LILLIENDAHL 5-33B & 5-34 LITTLE NORTHSIDE QTR", "Name": "SCOBIE, A. MARVEL-REVOCABLE TRUT", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62900, "Improved_V": 319400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.81283640300001, "SHAPE_Area": 1700.28556484 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356237.50900000333786, 257913.496599998325109 ], [ 356228.657600000500679, 257911.313299998641014 ], [ 356219.795299999415874, 257910.39640000090003 ], [ 356210.11599999666214, 257910.73930000141263 ], [ 356199.605099998414516, 257914.030799999833107 ], [ 356204.078000001609325, 257956.919399999082088 ], [ 356239.541299998760223, 257958.898400001227856 ], [ 356237.50900000333786, 257913.496599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95557219, "LATITUDE": 18.35112823, "OBJECTID_1": 3604, "PARCEL_NO_": "102704046900", "Tax_Legal_": "LILLIENDAHL 5 36 LITTLE NORTHSIDE QTR", "Name": "SCOBIE, JAMES D", "Address": "PO BOX 600199", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.42030705799999, "SHAPE_Area": 1081.2427730700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356162.961400002241135, 257955.949599999934435 ], [ 356204.078000001609325, 257956.919399999082088 ], [ 356199.605099998414516, 257914.030799999833107 ], [ 356189.886200003325939, 257919.017499998211861 ], [ 356182.575499996542931, 257925.290500000119209 ], [ 356172.795400001108646, 257937.45380000025034 ], [ 356167.892800003290176, 257945.013099998235703 ], [ 356162.961400002241135, 257955.949599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93155778000001, "LATITUDE": 18.35094707, "OBJECTID_1": 4759, "PARCEL_NO_": "102903014300", "Tax_Legal_": "MAFOLIE 24B GR NORTHSIDE QTR", "Name": "WALL STREET LIMITED PARTNERSHI", "Address": "7154 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154600, "Improved_V": 623500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.31857139799999, "SHAPE_Area": 3115.9002639400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358703.662799999117851, 257975.47749999910593 ], [ 358708.515100002288818, 257973.828400000929832 ], [ 358752.894599996507168, 257970.392000000923872 ], [ 358756.1199000030756, 257970.418400000780821 ], [ 358742.950199998915195, 257907.193599998950958 ], [ 358713.917599998414516, 257907.589299999177456 ], [ 358699.376999996602535, 257910.636700000613928 ], [ 358703.662799999117851, 257975.47749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93012121, "LATITUDE": 18.35084865, "OBJECTID_1": 4754, "PARCEL_NO_": "102903013800", "Tax_Legal_": "MAFOLIE 14 REM No.8F GREAT NORTHSIDE QTR.", "Name": "PATRICK GALLA and SALLY B HILLERICH GALLA", "Address": "2918 Cliffwynde Ter", "City": "Louisville", "State": "Kentucky", "Zip": 40241, "Country": "United States", "Land_Value": 146900, "Improved_V": 1028100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.18161797100001, "SHAPE_Area": 3264.68026968 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358904.389600001275539, 257955.144000001251698 ], [ 358901.908900000154972, 257894.984600000083447 ], [ 358853.465400002896786, 257902.1875 ], [ 358852.111199997365475, 257971.416799999773502 ], [ 358904.389600001275539, 257955.144000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96620041, "LATITUDE": 18.35107388, "OBJECTID_1": 3342, "PARCEL_NO_": "102703040400", "Tax_Legal_": "LINDBERG BAY 39C SOUTHSIDE QTR", "Name": "GASKIN, MARJORIE", "Address": "4507 Carpenter Ave", "City": "Bronx", "State": "New York", "Zip": 10470, "Country": "United States", "Land_Value": 23200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.623929741, "SHAPE_Area": 732.83046778000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355079.329599998891354, 257940.95890000090003 ], [ 355080.396700002253056, 257910.359000001102686 ], [ 355036.740699999034405, 257923.511700000613928 ], [ 355035.920000001788139, 257925.193799998611212 ], [ 355037.516500003635883, 257927.106699999421835 ], [ 355079.329599998891354, 257940.95890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93113566, "LATITUDE": 18.35092923, "OBJECTID_1": 4757, "PARCEL_NO_": "102903014100", "Tax_Legal_": "24A ESTATE MAFOLIE No.8f GREAT NORTHSIDE QTR.", "Name": "FOSTER, JOHN F. TRUSTEE", "Address": "6900 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 106800, "Improved_V": 547500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.070623896, "SHAPE_Area": 2499.40914952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358742.950199998915195, 257907.193599998950958 ], [ 358756.1199000030756, 257970.418400000780821 ], [ 358792.4003000035882, 257971.137499999254942 ], [ 358791.282200001180172, 257913.077599998563528 ], [ 358785.629000000655651, 257914.086800001561642 ], [ 358777.567699998617172, 257913.80970000103116 ], [ 358757.451300002634525, 257908.78999999910593 ], [ 358742.950199998915195, 257907.193599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96031141, "LATITUDE": 18.35096926, "OBJECTID_1": 3297, "PARCEL_NO_": "102703030600", "Tax_Legal_": "CONTANT 108A-17 7B SOUTHSIDE QTR", "Name": "CONROY BLAIZE REVOCABLE TRUST", "Address": "PO BOX 306482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.69572260199999, "SHAPE_Area": 1290.59597996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355712.586999997496605, 257910.678100001066923 ], [ 355686.129699997603893, 257892.729699999094009 ], [ 355664.059000000357628, 257927.801699999719858 ], [ 355661.609499998390675, 257931.370200000703335 ], [ 355678.441399998962879, 257943.329199999570847 ], [ 355684.148500002920628, 257935.98759999871254 ], [ 355687.355800002813339, 257938.124800000339746 ], [ 355691.394500002264977, 257937.313499998301268 ], [ 355712.586999997496605, 257910.678100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92850701, "LATITUDE": 18.350966, "OBJECTID_1": 4739, "PARCEL_NO_": "102903012300", "Tax_Legal_": "HOSPITAL GROUND 4OOBb No.9 NEW QTR.", "Name": "MITCHELL, GIAVONNE", "Address": "7143 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023677, "Country": "United States", "Land_Value": 80000, "Improved_V": 237200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.726950286, "SHAPE_Area": 1493.66684235 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359065.060199998319149, 257968.520700000226498 ], [ 359062.214800000190735, 257920.724399998784065 ], [ 359030.681500002741814, 257923.902899999171495 ], [ 359033.511100001633167, 257970.366700001060963 ], [ 359065.060199998319149, 257968.520700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703035600", "MAP": "A9-83-T68", "PARCEL_NAM": "108-A-54", "ACRE": ".403", "LONGITUDE": -64.95814405, "LATITUDE": 18.35090736, "OBJECTID_1": 3339, "PARCEL_NO_": "102703035600", "Tax_Legal_": "CONTANT 108A-54 7B SOUTHSIDE QTR.", "Name": "NILES, FELICIA & SANDRA", "Address": "#13 ALTONA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.91104910799999, "SHAPE_Area": 1493.9437433799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355941.411799997091293, 257923.430799998342991 ], [ 355920.473800003528595, 257886.913499999791384 ], [ 355904.634999997913837, 257895.151299998164177 ], [ 355890.027900002896786, 257906.008600000292063 ], [ 355911.501599997282028, 257941.014800000935793 ], [ 355941.411799997091293, 257923.430799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95974092, "LATITUDE": 18.35089412, "OBJECTID_1": 3304, "PARCEL_NO_": "102703031300", "Tax_Legal_": "CONTANT 108A-22 7B S S QTR", "Name": "HUGHES, JULIET", "Address": "PO Box 10796", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34900, "Improved_V": 182700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.64191936500001, "SHAPE_Area": 1559.18339474 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355775.491999998688698, 257909.715300001204014 ], [ 355733.77589999884367, 257884.464800000190735 ], [ 355718.220399998128414, 257911.990699999034405 ], [ 355759.931100003421307, 257937.874400001019239 ], [ 355775.491999998688698, 257909.715300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90965026000001, "LATITUDE": 18.35080271, "OBJECTID_1": 5820, "PARCEL_NO_": "103003032400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4G-13 GT. NORTHSIDE", "Name": "HENDRICKS, EVERILDA", "Address": "PO Box 8299", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.83437328299999, "SHAPE_Area": 1852.5390634800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361056.359600000083447, 257914.517599999904633 ], [ 361037.830600000917912, 257912.466099999845028 ], [ 361013.312100000679493, 257950.895599998533726 ], [ 361056.597699999809265, 257981.225099999457598 ], [ 361057.510099999606609, 257968.778099998831749 ], [ 361056.352399997413158, 257915.361900001764297 ], [ 361056.359600000083447, 257914.517599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003028100", "MAP": "D9-9244-T018", "PARCEL_NAM": "2-23 REM", "ACRE": "0.26", "LONGITUDE": -64.91505125, "LATITUDE": 18.35096539, "OBJECTID_1": 5789, "PARCEL_NO_": "103003028100", "Tax_Legal_": "ST JOSE & ROSENDAHL 2-23 & 3-11-A GREAT NORTHSIDE QTR", "Name": "AUBAIN FAMILY REVOCABLE TRUST", "Address": "PO Box 304865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37500, "Improved_V": 301300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.30289341, "SHAPE_Area": 1158.26092027 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360473.966399997472763, 257937.40430000051856 ], [ 360457.81139999628067, 257940.649500001221895 ], [ 360452.023400001227856, 257957.489700000733137 ], [ 360449.48030000180006, 257972.034299999475479 ], [ 360458.342600002884865, 257972.951200000941753 ], [ 360468.797700002789497, 257976.203200001269579 ], [ 360480.928300000727177, 257972.080600000917912 ], [ 360489.061599999666214, 257963.914500001817942 ], [ 360493.175899997353554, 257954.237900000065565 ], [ 360473.966399997472763, 257937.40430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003028000", "MAP": "D9-4181-T87", "PARCEL_NAM": "2-23A", "ACRE": null, "LONGITUDE": -64.9153572, "LATITUDE": 18.35088512, "OBJECTID_1": 5788, "PARCEL_NO_": "103003028000", "Tax_Legal_": "2-23A ST JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "BURGOS, MELVIN", "Address": "3094 Contant26-Bc", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42800, "Improved_V": 303500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.37162784, "SHAPE_Area": 1575.7720974599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360459.558899998664856, 257924.831799998879433 ], [ 360454.941799998283386, 257921.000799998641014 ], [ 360402.133000001311302, 257954.722100000828505 ], [ 360405.262599997222424, 257956.473700001835823 ], [ 360437.362300001084805, 257974.679299999028444 ], [ 360445.445200003683567, 257972.423500001430511 ], [ 360448.807099997997284, 257956.407900001853704 ], [ 360453.772600002586842, 257941.460900001227856 ], [ 360457.81139999628067, 257940.649500001221895 ], [ 360473.966399997472763, 257937.40430000051856 ], [ 360459.558899998664856, 257924.831799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92613129, "LATITUDE": 18.35094794, "OBJECTID_1": 4748, "PARCEL_NO_": "102903013200", "Tax_Legal_": "HOSPITAL GROUND 4O2A GREAT NORTHSIDE QTR", "Name": "FELLNER, THEODORE", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.511071458, "SHAPE_Area": 590.87393753799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359295.175399996340275, 257923.323499999940395 ], [ 359281.259499996900558, 257947.696400001645088 ], [ 359299.736299999058247, 257955.869199998676777 ], [ 359316.593299999833107, 257964.873100001364946 ], [ 359319.015900000929832, 257964.47069999948144 ], [ 359319.840199999511242, 257962.366500001400709 ], [ 359315.04730000346899, 257957.050000000745058 ], [ 359311.075000002980232, 257950.051399998366833 ], [ 359307.082999996840954, 257945.374600000679493 ], [ 359295.175399996340275, 257923.323499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9174011, "LATITUDE": 18.35081497, "OBJECTID_1": 4979, "PARCEL_NO_": "102904016600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-6 GREAT NORTHSIDE QTR", "Name": "HOWARD H BOWRING TRUST", "Address": "PO Box 302928", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69600, "Improved_V": 226600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.93041239300001, "SHAPE_Area": 2166.6572562800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360240.52419999986887, 257889.897399999201298 ], [ 360228.982299998402596, 257919.567200001329184 ], [ 360205.655000001192093, 257912.832299999892712 ], [ 360195.569200001657009, 257960.879099998623133 ], [ 360236.615699999034405, 257970.081000000238419 ], [ 360240.895400002598763, 257940.985100001096725 ], [ 360242.720200002193451, 257916.090999998152256 ], [ 360240.52419999986887, 257889.897399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703032300", "MAP": "A9-83-T68", "PARCEL_NAM": "108-A-46", "ACRE": ".37", "LONGITUDE": -64.95864283, "LATITUDE": 18.35078855, "OBJECTID_1": 3314, "PARCEL_NO_": "102703032300", "Tax_Legal_": "CONTANT 108A-46 7B SOUTHSIDE QTR.", "Name": "INDUSTRIOUS, JUDITH E. & CALVIN", "Address": "PO Box 305662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34900, "Improved_V": 258300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.08499836300001, "SHAPE_Area": 1811.68965602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355890.027900002896786, 257906.008600000292063 ], [ 355865.372100003063679, 257865.910100001841784 ], [ 355851.544299997389317, 257879.940200001001358 ], [ 355837.66610000282526, 257899.880499999970198 ], [ 355859.953400000929832, 257934.0489999987185 ], [ 355877.852300003170967, 257915.40819999948144 ], [ 355890.027900002896786, 257906.008600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703031900", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-39", "ACRE": "0.36", "LONGITUDE": -64.9592301, "LATITUDE": 18.35084895, "OBJECTID_1": 3310, "PARCEL_NO_": "102703031900", "Tax_Legal_": "CONTANT 108A-39 7B S S QTR", "Name": "Ophelia Shillingford", "Address": "P. O. BOX 2402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41700, "Improved_V": 593200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.07648707499999, "SHAPE_Area": 1370.849465 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355827.13910000026226, 257905.071699999272823 ], [ 355791.869999997317791, 257880.29619999974966 ], [ 355775.491999998688698, 257909.715300001204014 ], [ 355809.974600002169609, 257932.162300001829863 ], [ 355810.802500002086163, 257929.635999999940395 ], [ 355816.520400002598763, 257921.027899999171495 ], [ 355827.13910000026226, 257905.071699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003024600", "MAP": "A9-25-T64", "PARCEL_NAM": "3-15", "ACRE": null, "LONGITUDE": -64.91448733, "LATITUDE": 18.35068172, "OBJECTID_1": 5762, "PARCEL_NO_": "103003024600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-15 GT. NORTHSIDE", "Name": "BOWER FAMILY TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 346500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.23047359200001, "SHAPE_Area": 2261.0349637600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360539.808200001716614, 257875.6706000007689 ], [ 360528.530599996447563, 257874.311700001358986 ], [ 360523.383500002324581, 257910.5777000002563 ], [ 360520.876400001347065, 257920.900699999183416 ], [ 360515.10809999704361, 257935.418999999761581 ], [ 360511.017200000584126, 257942.351599998772144 ], [ 360500.4003000035882, 257958.096700001507998 ], [ 360531.756599999964237, 257968.907999999821186 ], [ 360549.880300000309944, 257923.88230000063777 ], [ 360539.808200001716614, 257875.6706000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703030500", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-16", "ACRE": "0.32", "LONGITUDE": -64.96057459, "LATITUDE": 18.35078788, "OBJECTID_1": 3296, "PARCEL_NO_": "102703030500", "Tax_Legal_": "CONTANT 108A-16 7B SOUTHSIDE", "Name": "HUMPHREY, ROBERT & DENISE", "Address": "108A-16 ESTATE CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30200, "Improved_V": 201800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.58690839299999, "SHAPE_Area": 1704.54071608 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355686.129699997603893, 257892.729699999094009 ], [ 355658.110200002789497, 257868.857900001108646 ], [ 355632.846600003540516, 257900.103999998420477 ], [ 355630.411499999463558, 257901.983899999409914 ], [ 355628.784500002861023, 257903.659400001168251 ], [ 355664.059000000357628, 257927.801699999719858 ], [ 355686.129699997603893, 257892.729699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9330606, "LATITUDE": 18.35076764, "OBJECTID_1": 4792, "PARCEL_NO_": "102903021100", "Tax_Legal_": "MAFOLIE ESTATE 23-14 No.8 GREAT NORTHSIDE QTR.", "Name": "HARRIGAN, PAUL O. & MONIQUE E", "Address": "1938 Felsway Ct", "City": "Wesley Chapel", "State": "Florida", "Zip": 33543, "Country": "United States", "Land_Value": 104900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.89513247600001, "SHAPE_Area": 3827.369482 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358613.922200001776218, 257908.248500000685453 ], [ 358543.956500001251698, 257886.144299998879433 ], [ 358536.615099996328354, 257896.00560000166297 ], [ 358533.326999999582767, 257903.366999998688698 ], [ 358532.50450000166893, 257905.260099999606609 ], [ 358526.766800001263618, 257916.190000001341105 ], [ 358520.955300003290176, 257935.77419999986887 ], [ 358539.471799999475479, 257939.303199999034405 ], [ 358603.068000003695488, 257951.855999998748302 ], [ 358601.520099997520447, 257944.243999999016523 ], [ 358602.446900002658367, 257930.108300000429153 ], [ 358611.453000001609325, 257914.138900000602007 ], [ 358613.922200001776218, 257908.248500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903035900", "MAP": null, "PARCEL_NAM": "REM 403", "ACRE": null, "LONGITUDE": -64.92548741, "LATITUDE": 18.35035783, "OBJECTID_1": 4871, "PARCEL_NO_": "102903035900", "Tax_Legal_": "HOSPITAL GROUND 4O3 GREAT NORTHSIDE QTR", "Name": "PICKERING, WALDEMAR & HUGO", "Address": "403-7046 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 225600, "Improved_V": 180600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 543.53363579300003, "SHAPE_Area": 12248.9771141 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359378.25900000333786, 257825.422800000756979 ], [ 359353.110399998724461, 257843.15989999845624 ], [ 359327.963699996471405, 257860.685899998992682 ], [ 359310.118699997663498, 257872.99439999833703 ], [ 359292.271999999880791, 257885.513900000602007 ], [ 359297.75789999961853, 257904.135099999606609 ], [ 359306.454700000584126, 257924.471200000494719 ], [ 359315.973999999463558, 257942.914299998432398 ], [ 359323.959799997508526, 257952.056699998676777 ], [ 359329.575300000607967, 257955.480099998414516 ], [ 359336.814099997282028, 257957.650299999862909 ], [ 359346.491599999368191, 257957.518399998545647 ], [ 359355.391699999570847, 257954.002700001001358 ], [ 359372.412299998104572, 257943.79839999973774 ], [ 359395.120300002396107, 257928.574400000274181 ], [ 359413.791400000452995, 257913.950699999928474 ], [ 359394.244999997317791, 257842.018899999558926 ], [ 359412.021600000560284, 257837.7314000017941 ], [ 359433.838799998164177, 257832.421599999070168 ], [ 359452.423500001430511, 257827.92960000038147 ], [ 359441.534400001168251, 257780.977699998766184 ], [ 359414.764200001955032, 257799.756999999284744 ], [ 359378.25900000333786, 257825.422800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95235819, "LATITUDE": 18.35074457, "OBJECTID_1": 3558, "PARCEL_NO_": "102704041800", "Tax_Legal_": "LILLIENDAHL 5-19 LITTLE NORTHSIDE QTR", "Name": "WEEKS, BURTHAM", "Address": "7841-5-19 LILLENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65600, "Improved_V": 299200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.86386508499999, "SHAPE_Area": 2553.70643913 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356572.297700002789497, 257896.393899999558926 ], [ 356500.748099997639656, 257870.899300001561642 ], [ 356493.183799996972084, 257906.934399999678135 ], [ 356502.026199996471405, 257910.173200000077486 ], [ 356516.458999998867512, 257919.790500000119209 ], [ 356526.052000001072884, 257929.579300001263618 ], [ 356529.234099999070168, 257934.671599999070168 ], [ 356572.297700002789497, 257896.393899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903016600", "MAP": "D9-5013-T90", "PARCEL_NAM": "12 REM", "ACRE": null, "LONGITUDE": -64.92941696, "LATITUDE": 18.35072005, "OBJECTID_1": 4780, "PARCEL_NO_": "102903016600", "Tax_Legal_": "MAFOLIE 12 REMAINDER GREAT NORTHSIDE", "Name": "GOBIND & KUSUM FAMILY TRUST", "Address": "5332 Raadets Gade-Number19", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 104700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.02228571099999, "SHAPE_Area": 1672.7724103 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358936.457000002264977, 257943.418099999427795 ], [ 358969.635499998927116, 257942.384899999946356 ], [ 358968.665600001811981, 257915.16270000115037 ], [ 358968.048100002110004, 257892.992800001055002 ], [ 358934.181100003421307, 257892.926699999719858 ], [ 358936.457000002264977, 257943.418099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9180067, "LATITUDE": 18.35081048, "OBJECTID_1": 4976, "PARCEL_NO_": "102904016300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1F D GREAT NORTHSIDE", "Name": "VAN BEVERHOUDT, STEVEN G & MYRNA V", "Address": "PO Box 56", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29600, "Improved_V": 358200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.41933466200001, "SHAPE_Area": 1400.6389674500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360136.724600002169609, 257958.497699998319149 ], [ 360168.134800001978874, 257962.976599998772144 ], [ 360168.995099999010563, 257956.65089999884367 ], [ 360176.696099996566772, 257904.573800001293421 ], [ 360144.267300002276897, 257924.99549999833107 ], [ 360136.724600002169609, 257958.497699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91833725, "LATITUDE": 18.35066238, "OBJECTID_1": 4970, "PARCEL_NO_": "102904015700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1B GREAT NORTHSIDE QTR", "Name": "KRIGGER, PAUL & WISTARIA", "Address": "PO Box 11082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 78500, "Improved_V": 182400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.90691624900001, "SHAPE_Area": 2601.28096792 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360110.691699996590614, 257890.734700001776218 ], [ 360103.939099997282028, 257926.143100000917912 ], [ 360098.030599996447563, 257957.125500001013279 ], [ 360130.241700001060963, 257962.244300000369549 ], [ 360150.382700003683567, 257869.739100001752377 ], [ 360141.443099997937679, 257877.898600000888109 ], [ 360130.899899996817112, 257884.989399999380112 ], [ 360118.762000001966953, 257889.956300001591444 ], [ 360110.691699996590614, 257890.734700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9177346, "LATITUDE": 18.3507672, "OBJECTID_1": 4977, "PARCEL_NO_": "102904016400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1 FC GREAT NORTHSIDE", "Name": "BARTON, FREDERICK", "Address": "PO Box 11457", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014457, "Country": "United States", "Land_Value": 38800, "Improved_V": 448700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.75923105499999, "SHAPE_Area": 1445.5697436800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360205.655000001192093, 257912.832299999892712 ], [ 360176.696099996566772, 257904.573800001293421 ], [ 360168.995099999010563, 257956.65089999884367 ], [ 360195.569200001657009, 257960.879099998623133 ], [ 360205.655000001192093, 257912.832299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96492536, "LATITUDE": 18.35078086, "OBJECTID_1": 3353, "PARCEL_NO_": "102703041600", "Tax_Legal_": "LINDBERG BAY 37EA SOUTHSIDE QTR", "Name": "BROWNE, CAROLINE, COALESCE A., CALEB A.", "Address": "PO Box 307135", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44000, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.80932707900001, "SHAPE_Area": 1388.99824481 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355218.758500002324581, 257881.413100000470877 ], [ 355188.180799998342991, 257876.613499999046326 ], [ 355168.089199997484684, 257878.629599999636412 ], [ 355166.895099997520447, 257884.891399998217821 ], [ 355207.74549999833107, 257917.100900001823902 ], [ 355220.6266999989748, 257919.528299998492002 ], [ 355219.9408999979496, 257905.379399999976158 ], [ 355218.758500002324581, 257881.413100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93219803, "LATITUDE": 18.35053203, "OBJECTID_1": 4762, "PARCEL_NO_": "102903014600", "Tax_Legal_": "23-9&23-10A ESTATE MAFOLIE GREAT NORTHSIDE", "Name": "MOHANANI, SUNIL R. & RONITA S.", "Address": "2329 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 143500, "Improved_V": 449700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.46790804400001, "SHAPE_Area": 3322.0177467399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358683.245300002396107, 257911.137899998575449 ], [ 358676.569300003349781, 257842.900100000202656 ], [ 358663.60360000282526, 257850.393300000578165 ], [ 358654.663999997079372, 257858.552799999713898 ], [ 358644.891199998557568, 257869.871899999678135 ], [ 358644.063299998641014, 257872.398200001567602 ], [ 358642.441699996590614, 257873.440400000661612 ], [ 358626.088899999856949, 257899.904399998486042 ], [ 358646.756300002336502, 257934.903900001198053 ], [ 358653.906999997794628, 257947.416999999433756 ], [ 358656.376299999654293, 257941.526599999517202 ], [ 358664.532899998128414, 257930.616500001400709 ], [ 358676.749899998307228, 257916.362100001424551 ], [ 358683.245300002396107, 257911.137899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703041500", "MAP": "F9-108-T57", "PARCEL_NAM": "37E", "ACRE": null, "LONGITUDE": -64.96526581000001, "LATITUDE": 18.35085855, "OBJECTID_1": 3352, "PARCEL_NO_": "102703041500", "Tax_Legal_": "37E REM LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "ESTRILL, GILMORE A", "Address": "PO Box 7562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.0586874, "SHAPE_Area": 1304.7261027899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355166.895099997520447, 257884.891399998217821 ], [ 355161.220299996435642, 257888.433499999344349 ], [ 355118.394100002944469, 257898.848799999803305 ], [ 355140.879100002348423, 257909.798599999397993 ], [ 355169.88120000064373, 257912.991300001740456 ], [ 355207.74549999833107, 257917.100900001823902 ], [ 355166.895099997520447, 257884.891399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91072447000001, "LATITUDE": 18.35082018, "OBJECTID_1": 5811, "PARCEL_NO_": "103003031500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4G-4 GR NORTHSIDE", "Name": "RHYMER, RIEL", "Address": "PO Box 8582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40000, "Improved_V": 423000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.20296436699999, "SHAPE_Area": 1377.65875658 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360900.4121999964118, 257951.871399998664856 ], [ 360941.436999998986721, 257963.606199998408556 ], [ 360954.444099999964237, 257951.258099999278784 ], [ 360964.994499996304512, 257943.322900000959635 ], [ 360902.247800000011921, 257925.710799999535084 ], [ 360900.4121999964118, 257951.871399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92633284, "LATITUDE": 18.35072617, "OBJECTID_1": 4747, "PARCEL_NO_": "102903013100", "Tax_Legal_": "402B HOSPITAL GROUND GREAT NORTHSIDE", "Name": "FELLNER, THEODORE", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23300, "Improved_V": 162600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.70677275899999, "SHAPE_Area": 1213.83585247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359280.987199999392033, 257884.999400001019239 ], [ 359257.15820000320673, 257937.155600000172853 ], [ 359281.259499996900558, 257947.696400001645088 ], [ 359295.175399996340275, 257923.323499999940395 ], [ 359283.375600002706051, 257888.607500001788139 ], [ 359280.987199999392033, 257884.999400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704042800", "MAP": "D9-8865-T014", "PARCEL_NAM": "5-15 REM", "ACRE": ".50", "LONGITUDE": -64.95569562, "LATITUDE": 18.35079075, "OBJECTID_1": 3567, "PARCEL_NO_": "102704042800", "Tax_Legal_": "LILLIANDAHL 5-15 LITTLE NORTHSIDE QTR", "Name": "BARKER, ADELINE", "Address": "PO Box 9289", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.403684201, "SHAPE_Area": 1583.8009529000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356209.997400000691414, 257904.746800001710653 ], [ 356208.519500002264977, 257900.862399999052286 ], [ 356206.614500001072884, 257897.846099998801947 ], [ 356203.598300002515316, 257894.829799998551607 ], [ 356164.68299999833107, 257879.662500001490116 ], [ 356155.398199997842312, 257897.203699998557568 ], [ 356143.107500001788139, 257920.112300001084805 ], [ 356177.768200002610683, 257921.662500001490116 ], [ 356187.517599999904633, 257913.087499998509884 ], [ 356195.616700001060963, 257908.93189999833703 ], [ 356208.553700000047684, 257904.815900001674891 ], [ 356209.997400000691414, 257904.746800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003024000", "MAP": "F9-1365-T64", "PARCEL_NAM": "2-22", "ACRE": "0.50", "LONGITUDE": -64.91557257, "LATITUDE": 18.35068268, "OBJECTID_1": 5756, "PARCEL_NO_": "103003024000", "Tax_Legal_": "2-22 ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR.", "Name": "ST JOE'S INVESTMENT GROUP LLC", "Address": "PO Box 1623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 54000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.70870531200001, "SHAPE_Area": 2208.9624740899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360454.941799998283386, 257921.000799998641014 ], [ 360425.1283999979496, 257896.2635000012815 ], [ 360398.376199997961521, 257912.932000000029802 ], [ 360391.045699998736382, 257921.526900000870228 ], [ 360380.383799999952316, 257942.5489999987185 ], [ 360402.133000001311302, 257954.722100000828505 ], [ 360454.941799998283386, 257921.000799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003028100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91497265, "LATITUDE": 18.3507972, "OBJECTID_1": 5789, "PARCEL_NO_": "103003028100", "Tax_Legal_": "ST JOSE & ROSENDAHL 2-23 & 3-11-A GREAT NORTHSIDE QTR", "Name": "AUBAIN FAMILY REVOCABLE TRUST", "Address": "PO Box 304865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37500, "Improved_V": 301300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.692102853899996, "SHAPE_Area": 122.040606091 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360473.966399997472763, 257937.40430000051856 ], [ 360493.175899997353554, 257954.237900000065565 ], [ 360482.832299999892712, 257937.899000000208616 ], [ 360459.558899998664856, 257924.831799998879433 ], [ 360473.966399997472763, 257937.40430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91485145, "LATITUDE": 18.35063224, "OBJECTID_1": 5761, "PARCEL_NO_": "103003024500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-11 REM. GR NORTHSIDE QTR", "Name": "MIRCHANDANI, ANIL C. & SUNAINA A. & CHAINANI, HARISH & MEENA", "Address": "5137 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71400, "Improved_V": 531400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.96657374599999, "SHAPE_Area": 1740.88103179 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360516.166199997067451, 257905.874499998986721 ], [ 360492.082900002598763, 257893.222899999469519 ], [ 360459.558899998664856, 257924.831799998879433 ], [ 360482.832299999892712, 257937.899000000208616 ], [ 360493.175899997353554, 257954.237900000065565 ], [ 360494.797499999403954, 257953.195700000971556 ], [ 360508.702600002288818, 257930.089200001209974 ], [ 360512.80969999730587, 257921.256900001317263 ], [ 360516.166199997067451, 257905.874499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021800", "MAP": "F9-2872-T71", "PARCEL_NAM": null, "ACRE": ".25", "LONGITUDE": -64.94726446, "LATITUDE": 18.35069874, "OBJECTID_1": 4291, "PARCEL_NO_": "102803021800", "Tax_Legal_": "SOLBERG 55D LITTLE NORTHSIDE", "Name": "AUBAIN, EDMOND R. & EILEEN V. (CO-TRUSTEES)", "Address": "BOX 4523", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 161200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.979332672, "SHAPE_Area": 1017.24429195 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357086.692699998617172, 257904.4037000015378 ], [ 357071.602899998426437, 257877.260200001299381 ], [ 357047.285899996757507, 257892.048799999058247 ], [ 357056.688299998641014, 257924.212000001221895 ], [ 357086.692699998617172, 257904.4037000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96604113, "LATITUDE": 18.35065054, "OBJECTID_1": 3350, "PARCEL_NO_": "102703041300", "Tax_Legal_": "LINDBERG BAY 38C SOUTHSIDE QTR", "Name": "DAVID, EUSTON", "Address": "PO BOX 4601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30600, "Improved_V": 690700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.22017430599999, "SHAPE_Area": 1738.3293641 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355099.865000002086163, 257896.7972999997437 ], [ 355100.246299996972084, 257852.048599999397993 ], [ 355095.404799997806549, 257852.431099999696016 ], [ 355068.742499999701977, 257858.545699998736382 ], [ 355061.4712999984622, 257860.175000000745058 ], [ 355064.292000003159046, 257907.694099999964237 ], [ 355099.865000002086163, 257896.7972999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95430886, "LATITUDE": 18.35055136, "OBJECTID_1": 3562, "PARCEL_NO_": "102704042300", "Tax_Legal_": "5-21 ESTATE LILLIENDAHL7MARIENHJ NO.3 LITTLE NORTHSIDE QTR..", "Name": "GREGORY, DALE & JOYCELYN", "Address": "PO Box 10938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94300, "Improved_V": 434400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.07230680800001, "SHAPE_Area": 4121.657729 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356342.405199997127056, 257905.489199999719858 ], [ 356359.95269999653101, 257833.438900001347065 ], [ 356348.653499998152256, 257834.612900000065565 ], [ 356328.421999998390675, 257843.102200001478195 ], [ 356300.924699999392033, 257852.587400000542402 ], [ 356294.470600001513958, 257852.956799998879433 ], [ 356285.873400002717972, 257915.581199999898672 ], [ 356295.536499999463558, 257917.138000000268221 ], [ 356314.896999999880791, 257916.24100000038743 ], [ 356333.492600001394749, 257910.482500001788139 ], [ 356342.405199997127056, 257905.489199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96461333000001, "LATITUDE": 18.3505392, "OBJECTID_1": 3355, "PARCEL_NO_": "102703041800", "Tax_Legal_": "LINDBERG BAY 36AA SOUTHSIDE QTR", "Name": "TODMAN, LINDA B. BERYL G", "Address": "PO Box 308202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.34397938399999, "SHAPE_Area": 2187.5417584500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355245.694399997591972, 257829.86089999973774 ], [ 355215.846699997782707, 257829.593499999493361 ], [ 355215.942299999296665, 257831.278499998152256 ], [ 355218.565600000321865, 257877.503800000995398 ], [ 355219.9408999979496, 257905.379399999976158 ], [ 355247.335699997842312, 257907.925700001418591 ], [ 355245.620700001716614, 257832.660300001502037 ], [ 355245.694399997591972, 257829.86089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95489054, "LATITUDE": 18.35051217, "OBJECTID_1": 3565, "PARCEL_NO_": "102704042600", "Tax_Legal_": "5-22 LILLIENDAHL&MARIENHOJ No.2 LITTLE NORTHSIDE QTR.", "Name": "NORTON, RONALD & JUEL SMITH", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 77400, "Improved_V": 618700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.73059259299998, "SHAPE_Area": 4597.55849029 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356285.873400002717972, 257915.581199999898672 ], [ 356294.470600001513958, 257852.956799998879433 ], [ 356285.620899997651577, 257850.562399998307228 ], [ 356276.8108000010252, 257843.52419999986887 ], [ 356268.868199996650219, 257829.315900001674891 ], [ 356266.472599998116493, 257826.552099999040365 ], [ 356262.516599997878075, 257817.653799999505281 ], [ 356260.120999999344349, 257814.889899998903275 ], [ 356259.343500003218651, 257811.506099998950958 ], [ 356254.593699999153614, 257801.123599998652935 ], [ 356251.368400000035763, 257801.097199998795986 ], [ 356252.919900000095367, 257808.287099998444319 ], [ 356251.962600000202656, 257826.011100001633167 ], [ 356249.448299996554852, 257837.17850000038743 ], [ 356245.316100001335144, 257848.965900000184774 ], [ 356237.969300001859665, 257859.460499998182058 ], [ 356233.086499996483326, 257864.697799999266863 ], [ 356225.779399998486042, 257870.548700001090765 ], [ 356221.695600003004074, 257876.636900000274181 ], [ 356220.034500002861023, 257882.322900000959635 ], [ 356220.788599997758865, 257888.450800001621246 ], [ 356223.135600000619888, 257896.913699999451637 ], [ 356226.330300003290176, 257900.528400000184774 ], [ 356235.149400003254414, 257906.511199999600649 ], [ 356256.880300000309944, 257911.333200000226498 ], [ 356285.873400002717972, 257915.581199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96008921000001, "LATITUDE": 18.35066247, "OBJECTID_1": 3303, "PARCEL_NO_": "102703031200", "Tax_Legal_": "CONTANT 108A-15 SOUTHSIDE 7B", "Name": "CALLWOOD, KIRK & TRACY E.", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28300, "Improved_V": 354500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.50956197, "SHAPE_Area": 1193.0703812899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355733.059500001370907, 257873.904199998825788 ], [ 355710.594200000166893, 257860.632599998265505 ], [ 355686.129699997603893, 257892.729699999094009 ], [ 355712.586999997496605, 257910.678100001066923 ], [ 355733.059500001370907, 257873.904199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95957329, "LATITUDE": 18.35060265, "OBJECTID_1": 3309, "PARCEL_NO_": "102703031800", "Tax_Legal_": "CONTANT 108A-23 7B S.S. QTR.", "Name": "PAQUIN (LIFE ESTATE), LAURENCE", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37700, "Improved_V": 233400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.169815054, "SHAPE_Area": 2032.53490769 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355795.968099996447563, 257872.519299998879433 ], [ 355754.23759999871254, 257848.957400001585484 ], [ 355750.974600002169609, 257853.363699998706579 ], [ 355733.77589999884367, 257884.464800000190735 ], [ 355775.491999998688698, 257909.715300001204014 ], [ 355791.869999997317791, 257880.29619999974966 ], [ 355795.968099996447563, 257872.519299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92652592, "LATITUDE": 18.3507023, "OBJECTID_1": 4766, "PARCEL_NO_": "102903015100", "Tax_Legal_": "HOSPITAL GROUND 402-C 9 NEW QTR", "Name": "FELLNER, THEODORE", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.081760573, "SHAPE_Area": 565.00483058199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359280.198899999260902, 257882.881999999284744 ], [ 359257.325400002300739, 257917.525199998170137 ], [ 359242.847800001502037, 257913.184900000691414 ], [ 359241.870600000023842, 257933.230799999088049 ], [ 359257.15820000320673, 257937.155600000172853 ], [ 359280.987199999392033, 257884.999400001019239 ], [ 359280.198899999260902, 257882.881999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804026800", "MAP": "D9-5353-T92", "PARCEL_NAM": "35A", "ACRE": ".50", "LONGITUDE": -64.93536767000001, "LATITUDE": 18.35062506, "OBJECTID_1": 4572, "PARCEL_NO_": "102804026800", "Tax_Legal_": "35A ESTATE ELIZABETH GREAT NORTHSIDE QTR", "Name": "Leo R Sibilly, II & Jennifer M Sibilly Revoc Trust", "Address": "PO BOX 326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 69300, "Improved_V": 447400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.907882191, "SHAPE_Area": 2036.3600807600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358354.923299998044968, 257926.393699999898672 ], [ 358322.384199999272823, 257865.121399998664856 ], [ 358309.368100002408028, 257878.52479999884963 ], [ 358294.753799997270107, 257890.226399999111891 ], [ 358308.990500003099442, 257922.851399999111891 ], [ 358350.864799998700619, 257929.526900000870228 ], [ 358354.923299998044968, 257926.393699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90988942, "LATITUDE": 18.35066187, "OBJECTID_1": 5814, "PARCEL_NO_": "103003031800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4G-12 GT. NORTHSIDE", "Name": "JOHN, CHRISTIANNE J", "Address": "PO Box 7353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33300, "Improved_V": 440300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.993002383, "SHAPE_Area": 826.10162498700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361013.312100000679493, 257950.895599998533726 ], [ 361037.830600000917912, 257912.466099999845028 ], [ 361014.467299997806549, 257909.952899999916553 ], [ 361012.811499997973442, 257915.00560000166297 ], [ 361006.274700000882149, 257925.084600001573563 ], [ 360996.516199998557568, 257934.714999999850988 ], [ 360996.48030000180006, 257938.936599999666214 ], [ 361013.312100000679493, 257950.895599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704047700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95171068000001, "LATITUDE": 18.35030451, "OBJECTID_1": 3608, "PARCEL_NO_": "102704047700", "Tax_Legal_": "6A-2-1 REM LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "METTS, GLENN A.", "Address": "PO Box 307626", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 412300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.46715033800001, "SHAPE_Area": 1221.1164153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356602.022699996829033, 257814.732900001108646 ], [ 356602.210199996829033, 257792.715799998492002 ], [ 356596.899300001561642, 257807.602400001138449 ], [ 356584.219200000166893, 257840.979499999433756 ], [ 356586.368600003421307, 257851.83390000090003 ], [ 356587.394199997186661, 257857.013300001621246 ], [ 356586.600500002503395, 257864.474500000476837 ], [ 356585.906300000846386, 257868.714299999177456 ], [ 356594.168799996376038, 257884.7516999989748 ], [ 356598.137500002980232, 257892.172499999403954 ], [ 356606.02080000191927, 257913.3462999984622 ], [ 356601.772699996829033, 257844.072900000959635 ], [ 356602.022699996829033, 257814.732900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804024600", "MAP": "D9-954-T71", "PARCEL_NAM": "32", "ACRE": null, "LONGITUDE": -64.93490196, "LATITUDE": 18.35033985, "OBJECTID_1": 4550, "PARCEL_NO_": "102804024600", "Tax_Legal_": "ELIZABETH 32 GREAT NORTHSIDE QTR", "Name": "CARMEN R SIBILLY REVOCABLE TRUST", "Address": "PO Box 1101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 165900, "Improved_V": 461200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.87648651900003, "SHAPE_Area": 6141.6388397600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358385.73870000243187, 257811.388799998909235 ], [ 358375.915500000119209, 257819.720100000500679 ], [ 358322.384199999272823, 257865.121399998664856 ], [ 358354.923299998044968, 257926.393699999898672 ], [ 358423.146999999880791, 257885.065400000661612 ], [ 358394.924599997699261, 257827.329300001263618 ], [ 358385.73870000243187, 257811.388799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703033100", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-47", "ACRE": "0.39", "LONGITUDE": -64.95836356, "LATITUDE": 18.35056324, "OBJECTID_1": 3322, "PARCEL_NO_": "102703033100", "Tax_Legal_": "CONTANT 108A-47 7B S S QTR", "Name": "SPELLEN, SANDRA M. & JOSEPH C.", "Address": "6807 Ironbridge Ln", "City": "Laurel", "State": "Maryland", "Zip": 20707, "Country": "United States", "Land_Value": 53900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.604873484, "SHAPE_Area": 1717.9252180399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355920.473800003528595, 257886.913499999791384 ], [ 355897.635899998247623, 257847.082800000905991 ], [ 355885.648599997162819, 257852.143899999558926 ], [ 355875.112499997019768, 257858.390500001609325 ], [ 355865.372100003063679, 257865.910100001841784 ], [ 355890.027900002896786, 257906.008600000292063 ], [ 355904.634999997913837, 257895.151299998164177 ], [ 355920.473800003528595, 257886.913499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704042100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95377215000001, "LATITUDE": 18.350549, "OBJECTID_1": 3561, "PARCEL_NO_": "102704042100", "Tax_Legal_": "6A-5 LILLIENDAHL&MARIENHOJ No.3 LITTLE NORTHSIDE QTR.", "Name": "6A-5 LILLIENDAL AND MARIENHOJ LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93700, "Improved_V": 678500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.27221752099999, "SHAPE_Area": 3780.81371786 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356359.95269999653101, 257833.438900001347065 ], [ 356342.405199997127056, 257905.489199999719858 ], [ 356411.713899999856949, 257910.067299999296665 ], [ 356418.983300000429153, 257908.649099998176098 ], [ 356407.959200002253056, 257877.528099998831749 ], [ 356381.705099999904633, 257835.727800000458956 ], [ 356359.95269999653101, 257833.438900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703032200", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-38", "ACRE": "0.37", "LONGITUDE": -64.95907117, "LATITUDE": 18.35058941, "OBJECTID_1": 3313, "PARCEL_NO_": "102703032200", "Tax_Legal_": "CONTANT 108A-38 7B S S QTR.", "Name": "JOSEPH & THE ESTATE OF MELVIN", "Address": "PO Box 307154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.39419936, "SHAPE_Area": 1503.2705133500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355845.104599997401237, 257878.620999999344349 ], [ 355808.262299999594688, 257849.188499998301268 ], [ 355795.968099996447563, 257872.519299998879433 ], [ 355791.869999997317791, 257880.29619999974966 ], [ 355827.13910000026226, 257905.071699999272823 ], [ 355845.104599997401237, 257878.620999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704041900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9530484, "LATITUDE": 18.35064364, "OBJECTID_1": 3559, "PARCEL_NO_": "102704041900", "Tax_Legal_": "LILLIENDAHL 5-20 & 5-19A LITTLE NORTHSIDE", "Name": "CHAN, BENNETT", "Address": "PO Box 8889", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105300, "Improved_V": 175600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.36591459300001, "SHAPE_Area": 2692.76514352 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356493.183799996972084, 257906.934399999678135 ], [ 356493.512900002300739, 257868.307000000029802 ], [ 356407.959200002253056, 257877.528099998831749 ], [ 356418.983300000429153, 257908.649099998176098 ], [ 356425.446299999952316, 257907.224399998784065 ], [ 356457.715000003576279, 257905.588599998503923 ], [ 356489.164800003170967, 257905.423799999058247 ], [ 356493.183799996972084, 257906.934399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703041400", "MAP": "F9-107-T57", "PARCEL_NAM": "38D", "ACRE": null, "LONGITUDE": -64.96563878000001, "LATITUDE": 18.35056966, "OBJECTID_1": 3351, "PARCEL_NO_": "102703041400", "Tax_Legal_": "LINDBERG BAY 38D S S QTR", "Name": "DAVID, EUSTON & VALERIE", "Address": "PO Box 6404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.63646097200001, "SHAPE_Area": 1798.7541087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355168.052000001072884, 257843.73759999871254 ], [ 355128.483400002121925, 257850.379799999296665 ], [ 355108.314800001680851, 257851.481300000101328 ], [ 355100.246299996972084, 257852.048599999397993 ], [ 355099.865000002086163, 257896.7972999997437 ], [ 355116.034500002861023, 257891.863400001078844 ], [ 355160.478699997067451, 257880.828099999576807 ], [ 355161.321000002324581, 257876.613099999725819 ], [ 355158.912900000810623, 257875.326799999922514 ], [ 355151.645300000905991, 257876.533900000154972 ], [ 355144.390299998223782, 257876.2635000012815 ], [ 355135.538800001144409, 257874.080099999904633 ], [ 355131.550399996340275, 257868.981199998408556 ], [ 355131.615099996328354, 257861.38230000063777 ], [ 355136.498000003397465, 257856.144999999552965 ], [ 355144.584499999880791, 257853.466899998486042 ], [ 355155.077299997210503, 257852.286299999803305 ], [ 355161.543999999761581, 257850.439300000667572 ], [ 355169.639499999582767, 257846.705899998545647 ], [ 355169.659299999475479, 257844.38399999961257 ], [ 355168.052000001072884, 257843.73759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9284582, "LATITUDE": 18.35058647, "OBJECTID_1": 4767, "PARCEL_NO_": "102903015200", "Tax_Legal_": "HOSPITAL GROUND 400D-1 No.9 NEW QTR.", "Name": "MITCHELL, GIAVONNE", "Address": "7143 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023677, "Country": "United States", "Land_Value": 75600, "Improved_V": 379000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.10742097100001, "SHAPE_Area": 1720.11661499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359079.911499999463558, 257919.028499998152256 ], [ 359076.165899999439716, 257885.434000000357628 ], [ 359028.579000003635883, 257886.733199998736382 ], [ 359030.681500002741814, 257923.902899999171495 ], [ 359069.420500002801418, 257919.998100001364946 ], [ 359079.911499999463558, 257919.028499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91037058000001, "LATITUDE": 18.35056581, "OBJECTID_1": 5813, "PARCEL_NO_": "103003031700", "Tax_Legal_": "ST JOSEPH & ROSE4G-7, 4G-A, 4G-B GR NORTHSIDE", "Name": "FATER, RICHARD", "Address": "PO Box 77405", "City": "Ewing", "State": "New Jersey", "Zip": 8628, "Country": "United States", "Land_Value": 41300, "Improved_V": 308800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.20063489099999, "SHAPE_Area": 1000.7340577 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360953.318800002336502, 257894.042599998414516 ], [ 360948.976199999451637, 257930.526200000196695 ], [ 360977.143200002610683, 257937.089600000530481 ], [ 360979.578299999237061, 257935.209699999541044 ], [ 360981.332999996840954, 257918.547600001096725 ], [ 360978.197599999606609, 257907.967300001531839 ], [ 360983.035499997437, 257908.006900001317263 ], [ 360953.318800002336502, 257894.042599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703031100", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-14", "ACRE": "0.29", "LONGITUDE": -64.96033437, "LATITUDE": 18.3505052, "OBJECTID_1": 3302, "PARCEL_NO_": "102703031100", "Tax_Legal_": "CONTANT 108A-14 SOUTHSIDE QTR", "Name": "CHINNERY, DONALD D", "Address": "PO Box 306738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 490600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.98041860199999, "SHAPE_Area": 1266.5998042000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355710.594200000166893, 257860.632599998265505 ], [ 355684.11540000140667, 257845.217099998146296 ], [ 355665.431699998676777, 257861.318399999290705 ], [ 355658.110200002789497, 257868.857900001108646 ], [ 355686.129699997603893, 257892.729699999094009 ], [ 355710.594200000166893, 257860.632599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92809288, "LATITUDE": 18.35059072, "OBJECTID_1": 4772, "PARCEL_NO_": "102903015700", "Tax_Legal_": "HOSPITAL GROUND 400E GR NORTHSIDE", "Name": "PICKERING, ULRIC S. & RUTH", "Address": "PO Box 9100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.501766336, "SHAPE_Area": 772.91122133 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359076.183799996972084, 257883.32319999858737 ], [ 359076.165899999439716, 257885.434000000357628 ], [ 359079.911499999463558, 257919.028499998152256 ], [ 359108.159400001168251, 257916.093299999833107 ], [ 359113.094400003552437, 257904.734600000083447 ], [ 359113.110600002110004, 257902.834899999201298 ], [ 359099.450000002980232, 257897.234700001776218 ], [ 359087.409299999475479, 257890.803300000727177 ], [ 359076.183799996972084, 257883.32319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904015600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91883122, "LATITUDE": 18.35047539, "OBJECTID_1": 4969, "PARCEL_NO_": "102904015600", "Tax_Legal_": "LOISENHOJ 1 GREAT NORTHSIDE", "Name": "ISLES, GLADYS", "Address": "PO Box 180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96000, "Improved_V": 203000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.18888551800001, "SHAPE_Area": 2499.4944407500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360070.892899997532368, 257924.394999999552965 ], [ 360103.939099997282028, 257926.143100000917912 ], [ 360110.691699996590614, 257890.734700001776218 ], [ 360098.584499999880791, 257892.113200001418591 ], [ 360089.723999999463558, 257890.985199999064207 ], [ 360076.054499998688698, 257886.440400000661612 ], [ 360061.598399996757507, 257879.567099999636412 ], [ 360045.500900000333786, 257876.057799998670816 ], [ 360029.374600000679493, 257875.925900001078844 ], [ 360015.642200000584126, 257878.768800001591444 ], [ 360038.892200000584126, 257894.579999998211861 ], [ 360054.903300002217293, 257908.221000000834465 ], [ 360070.892899997532368, 257924.394999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043200", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-51", "ACRE": "0.32", "LONGITUDE": -64.95712601, "LATITUDE": 18.35037788, "OBJECTID_1": 3570, "PARCEL_NO_": "102704043200", "Tax_Legal_": "CONTANT 108A-51 7B S S QTR", "Name": "CASTOR, MARISAL", "Address": "PO Box 307565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37100, "Improved_V": 241900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.521177182, "SHAPE_Area": 1081.2035648000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355999.711999997496605, 257851.637499999254942 ], [ 356014.887999996542931, 257879.212699998170137 ], [ 356046.885899998247623, 257856.4189000017941 ], [ 356037.38629999756813, 257835.653999999165535 ], [ 355999.711999997496605, 257851.637499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95230759, "LATITUDE": 18.35031321, "OBJECTID_1": 3598, "PARCEL_NO_": "102704046300", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A 3 LITTLE NORTHSIDE", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.45106368400002, "SHAPE_Area": 4864.0138585000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356494.037900000810623, 257806.671900000423193 ], [ 356493.512900002300739, 257868.307000000029802 ], [ 356500.748099997639656, 257870.899300001561642 ], [ 356572.297700002789497, 257896.393899999558926 ], [ 356585.313799999654293, 257882.990499999374151 ], [ 356581.357799999415874, 257874.092199999839067 ], [ 356577.372900001704693, 257868.571100000292063 ], [ 356556.67679999768734, 257836.948800001293421 ], [ 356555.080300003290176, 257835.035900000482798 ], [ 356550.287399999797344, 257829.719300001859665 ], [ 356543.880000002682209, 257824.600600000470877 ], [ 356534.25280000269413, 257818.822299998253584 ], [ 356510.133599996566772, 257810.392299998551607 ], [ 356494.037900000810623, 257806.671900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904019000", "MAP": "D9-2010-T82", "PARCEL_NAM": "1-5A", "ACRE": ".53", "LONGITUDE": -64.91665643, "LATITUDE": 18.35044077, "OBJECTID_1": 5000, "PARCEL_NO_": "102904019000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-5A GT. NORTHSIDE", "Name": "CHUGANI FAMILY TRUST", "Address": "5332 Raadets Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65200, "Improved_V": 408100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.087227122, "SHAPE_Area": 2253.15673625 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360292.410300001502037, 257855.755699999630451 ], [ 360274.4070999994874, 257921.659200001507998 ], [ 360320.038099996745586, 257927.067400000989437 ], [ 360321.819700002670288, 257907.239199999719858 ], [ 360323.493500001728535, 257900.075699999928474 ], [ 360327.593400001525879, 257892.087699998170137 ], [ 360292.410300001502037, 257855.755699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92652562000001, "LATITUDE": 18.35045071, "OBJECTID_1": 4746, "PARCEL_NO_": "102903013000", "Tax_Legal_": "402 HOSPITAL GROUND GREAT NORTHSIDE QTR", "Name": "WRIGHT, KEISHA", "Address": "PO Box 304378", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.983749166, "SHAPE_Area": 1229.83166609 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359242.847800001502037, 257913.184900000691414 ], [ 359257.325400002300739, 257917.525199998170137 ], [ 359280.198899999260902, 257882.881999999284744 ], [ 359273.807700000703335, 257875.863600000739098 ], [ 359268.190499998629093, 257872.651200000196695 ], [ 359245.673100002110004, 257865.500900000333786 ], [ 359242.847800001502037, 257913.184900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91070385, "LATITUDE": 18.35049236, "OBJECTID_1": 5812, "PARCEL_NO_": "103003031600", "Tax_Legal_": "4G-6 & 4G-15A ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "JOYCE, ELWIN R.", "Address": "7488 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64300, "Improved_V": 84600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.420442307, "SHAPE_Area": 1512.97070037 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360953.318800002336502, 257894.042599998414516 ], [ 360915.468900002539158, 257888.24439999833703 ], [ 360913.773500002920628, 257897.940799999982119 ], [ 360903.185400001704693, 257910.308699999004602 ], [ 360902.299999997019768, 257919.589499998837709 ], [ 360948.976199999451637, 257930.526200000196695 ], [ 360953.318800002336502, 257894.042599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95646276, "LATITUDE": 18.35041155, "OBJECTID_1": 3650, "PARCEL_NO_": "102704060400", "Tax_Legal_": "CONTANT 107-20 7B SOUTHSIDE QUARTER", "Name": "PETERSEN, SR. , MILTON A", "Address": "2036 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.845351021, "SHAPE_Area": 2303.83748603 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356123.311099998652935, 257877.520500000566244 ], [ 356117.974399998784065, 257841.379799999296665 ], [ 356118.057199999690056, 257831.670200001448393 ], [ 356085.738099999725819, 257839.216099999845028 ], [ 356075.25789999961853, 257838.919199999421835 ], [ 356061.137000001966953, 257887.355200000107288 ], [ 356076.437100000679493, 257889.802400000393391 ], [ 356076.514399997889996, 257880.725999999791384 ], [ 356123.311099998652935, 257877.520500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93179908, "LATITUDE": 18.35030386, "OBJECTID_1": 4760, "PARCEL_NO_": "102903014400", "Tax_Legal_": "MAFOLIE 23-8 GR NORTHSIDE QTR", "Name": "DEJONGH, JR. , JOHN P. & CECILE R", "Address": "PO Box 8361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 114800, "Improved_V": 711800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.84967805799999, "SHAPE_Area": 2800.50965778 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358719.624700002372265, 257900.247699998319149 ], [ 358725.779600001871586, 257840.347500000149012 ], [ 358704.030699998140335, 257837.636399999260902 ], [ 358694.356799997389317, 257837.346099998801947 ], [ 358685.472900003194809, 257838.962200000882149 ], [ 358676.569300003349781, 257842.900100000202656 ], [ 358683.245300002396107, 257911.137899998575449 ], [ 358692.971400000154972, 257905.30689999833703 ], [ 358708.332699999213219, 257900.577500000596046 ], [ 358719.624700002372265, 257900.247699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003024800", "MAP": "D9-9065-T016", "PARCEL_NAM": "3-14", "ACRE": ".55", "LONGITUDE": -64.91412139000001, "LATITUDE": 18.35044353, "OBJECTID_1": 5764, "PARCEL_NO_": "103003024800", "Tax_Legal_": "ST. JOSEPH & ROSENDAHL 3-14 GREAT NORTHSIDE QTR.", "Name": "DORIS GARVEY BEDMINISTER REVOCABLE LIVING TRUST", "Address": "9034 First Avenue Sugar Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67900, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.00851886500001, "SHAPE_Area": 2234.8000106700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360591.542700000107288, 257922.954900000244379 ], [ 360597.146700002253056, 257882.525800000876188 ], [ 360539.808200001716614, 257875.6706000007689 ], [ 360549.880300000309944, 257923.88230000063777 ], [ 360555.506499998271465, 257926.039299998432398 ], [ 360591.542700000107288, 257922.954900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91516297, "LATITUDE": 18.35042871, "OBJECTID_1": 5760, "PARCEL_NO_": "103003024400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-21 GR NORTHSIDE", "Name": "LEERDAM, ALVIN & EDITH", "Address": "1217 W KNOXVILLE ST.", "City": "BROKEN ARROW", "State": "Oklahoma", "Zip": 74012, "Country": "United States", "Land_Value": 67000, "Improved_V": 490000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.52862780800001, "SHAPE_Area": 1680.96544131 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360492.082900002598763, 257893.222899999469519 ], [ 360455.962499998509884, 257873.717799998819828 ], [ 360451.079700000584126, 257878.955099999904633 ], [ 360443.774300001561642, 257884.594900000840425 ], [ 360425.1283999979496, 257896.2635000012815 ], [ 360459.558899998664856, 257924.831799998879433 ], [ 360492.082900002598763, 257893.222899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704060500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95682907, "LATITUDE": 18.35022051, "OBJECTID_1": 3651, "PARCEL_NO_": "102704060500", "Tax_Legal_": "107-21 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "DE LUGO, ALVARO and AYANA N MILLIGAN", "Address": "PO Box 483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 71800, "Improved_V": 347700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.26222827800001, "SHAPE_Area": 1818.5843413600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356030.269799999892712, 257819.130399998277426 ], [ 356037.38629999756813, 257835.653999999165535 ], [ 356046.885899998247623, 257856.4189000017941 ], [ 356061.137000001966953, 257887.355200000107288 ], [ 356075.25789999961853, 257838.919199999421835 ], [ 356072.046999998390675, 257837.204199999570847 ], [ 356064.063000001013279, 257827.850699998438358 ], [ 356062.527699999511242, 257818.761199999600649 ], [ 356074.782399997115135, 257800.074099998921156 ], [ 356030.269799999892712, 257819.130399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93285026, "LATITUDE": 18.35038787, "OBJECTID_1": 4793, "PARCEL_NO_": "102903021200", "Tax_Legal_": "MAFOLIE 23-15 GR NORTHSIDE", "Name": "MOOLENAAR, LORRAINE C", "Address": "PO Box 303600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 137100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.208951332, "SHAPE_Area": 3040.2434101099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358632.729999996721745, 257877.582800000905991 ], [ 358574.160499997437, 257842.906300000846386 ], [ 358563.530900001525879, 257860.128899998962879 ], [ 358543.956500001251698, 257886.144299998879433 ], [ 358613.922200001776218, 257908.248500000685453 ], [ 358632.729999996721745, 257877.582800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91593004000001, "LATITUDE": 18.35036814, "OBJECTID_1": 5755, "PARCEL_NO_": "103003023900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-26 4 GR NORTHSIDE QTR", "Name": "TODMAN, RAYMOND & HELENA", "Address": "PO Box 307035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72700, "Improved_V": 310200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.74320904499999, "SHAPE_Area": 3049.0917883500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360422.772399999201298, 257888.855900000780821 ], [ 360388.383299998939037, 257855.432799998670816 ], [ 360339.69709999859333, 257891.131299998611212 ], [ 360332.377300001680851, 257898.459699999541044 ], [ 360330.725100003182888, 257903.090199999511242 ], [ 360382.170900002121925, 257922.087499998509884 ], [ 360387.071699999272823, 257914.73930000141263 ], [ 360396.023800000548363, 257905.102299999445677 ], [ 360415.47240000218153, 257893.862399999052286 ], [ 360422.772399999201298, 257888.855900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903035600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92506459000001, "LATITUDE": 18.3502975, "OBJECTID_1": 4868, "PARCEL_NO_": "102903035600", "Tax_Legal_": "HOSPITAL GROUND 4O3A GREAT NORTHSIDE QTR", "Name": "BECKLES, CASSANDRA & EDWARD", "Address": "3 Eden Ct", "City": "North Brunswick", "State": "New Jersey", "Zip": 8902, "Country": "United States", "Land_Value": 41300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.83091522500001, "SHAPE_Area": 1304.63941619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359413.791400000452995, 257913.950699999928474 ], [ 359429.980599999427795, 257906.694899998605251 ], [ 359412.021600000560284, 257837.7314000017941 ], [ 359394.244999997317791, 257842.018899999558926 ], [ 359413.791400000452995, 257913.950699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92060001, "LATITUDE": 18.35042554, "OBJECTID_1": 5010, "PARCEL_NO_": "102904020200", "Tax_Legal_": "LOISENHOJ 5A GR NORTHSIDE", "Name": "SMITH, C WARREN", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 78500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.86014735099999, "SHAPE_Area": 1509.73803245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359899.421700000762939, 257890.9054000005126 ], [ 359891.568899996578693, 257866.143199998885393 ], [ 359860.045400001108646, 257874.962200000882149 ], [ 359875.029100000858307, 257914.559300001710653 ], [ 359895.167099997401237, 257917.046100001782179 ], [ 359907.27080000191927, 257916.089699998497963 ], [ 359899.421700000762939, 257890.9054000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904018900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9173711, "LATITUDE": 18.35035233, "OBJECTID_1": 4999, "PARCEL_NO_": "102904018900", "Tax_Legal_": "1-6A ST JOSEPH & ROSENDAHL GREAT NORTHSIDE", "Name": "THE LAING TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 316600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.83722256, "SHAPE_Area": 1602.0735573100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360247.994999997317791, 257864.838500000536442 ], [ 360218.228000000119209, 257856.784400001168251 ], [ 360214.04900000244379, 257874.059799998998642 ], [ 360205.655000001192093, 257912.832299999892712 ], [ 360228.982299998402596, 257919.567200001329184 ], [ 360240.52419999986887, 257889.897399999201298 ], [ 360242.237499997019768, 257878.090199999511242 ], [ 360244.719400003552437, 257870.722300000488758 ], [ 360247.994999997317791, 257864.838500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92024488, "LATITUDE": 18.35046112, "OBJECTID_1": 5011, "PARCEL_NO_": "102904020300", "Tax_Legal_": "LOISENHOJ 5 GR NORTHSIDE", "Name": "RICHARDS, ENRIQUE & KATHLEEN", "Address": "PO Box 396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 54700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.38925609, "SHAPE_Area": 1053.0718631300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359943.673600003123283, 257902.45549999922514 ], [ 359935.822599999606609, 257877.482200000435114 ], [ 359899.421700000762939, 257890.9054000005126 ], [ 359907.27080000191927, 257916.089699998497963 ], [ 359922.624899998307228, 257912.204599998891354 ], [ 359943.673600003123283, 257902.45549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91787571, "LATITUDE": 18.35037865, "OBJECTID_1": 4981, "PARCEL_NO_": "102904016800", "Tax_Legal_": "ST JOSPEH & ROSENDAHL 1 FAB GREAT NORTHSIDE", "Name": "BRYAN, STACEY A", "Address": "PO Box 628", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40700, "Improved_V": 237100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.014017338, "SHAPE_Area": 1127.0290306300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360176.755400002002716, 257897.608199998736382 ], [ 360214.04900000244379, 257874.059799998998642 ], [ 360177.750500001013279, 257875.451499998569489 ], [ 360152.681100003421307, 257883.901200000196695 ], [ 360145.942900002002716, 257917.620999999344349 ], [ 360176.755400002002716, 257897.608199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93103587, "LATITUDE": 18.35035023, "OBJECTID_1": 4756, "PARCEL_NO_": "102903014000", "Tax_Legal_": "MAFOLIE 23-6 & 23-7A GR NORTHSIDE", "Name": "SHOMO, HAROLD R. & LENYSE N", "Address": "23-6 ESTATE MAFOLIE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 127900, "Improved_V": 718200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.45814819399999, "SHAPE_Area": 2549.7913861400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358757.999700002372265, 257844.410900000482798 ], [ 358760.735799998044968, 257901.850699998438358 ], [ 358779.246899999678135, 257906.013000000268221 ], [ 358784.889300003647804, 257906.270300000905991 ], [ 358805.887500002980232, 257902.431400001049042 ], [ 358799.918999999761581, 257845.809500001370907 ], [ 358774.91610000282526, 257846.449200000613928 ], [ 358757.999700002372265, 257844.410900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92096836, "LATITUDE": 18.35044811, "OBJECTID_1": 5009, "PARCEL_NO_": "102904020100", "Tax_Legal_": "LOISENHOJ 6 GR NORTHSIDE", "Name": "SMITH, C WARREN", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 73700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.22601367, "SHAPE_Area": 1461.0564034500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359860.045400001108646, 257874.962200000882149 ], [ 359816.398500002920628, 257887.059500001370907 ], [ 359803.46509999781847, 257890.753299999982119 ], [ 359825.14019999653101, 257902.118599999696016 ], [ 359841.216099999845028, 257908.160799998790026 ], [ 359858.917199999094009, 257912.738699998706579 ], [ 359875.029100000858307, 257914.559300001710653 ], [ 359860.045400001108646, 257874.962200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95803993, "LATITUDE": 18.35042006, "OBJECTID_1": 3323, "PARCEL_NO_": "102703033200", "Tax_Legal_": "108A-36 & 108A-48 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "KATZEW, AMY", "Address": "660 Union St", "City": "Braintree", "State": "Massachusetts", "Zip": 2184, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.28782792300001, "SHAPE_Area": 1660.23656071 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355955.036899998784065, 257870.744899999350309 ], [ 355939.101400002837181, 257836.880899999290705 ], [ 355912.3378000035882, 257842.863099999725819 ], [ 355901.834100000560284, 257845.310300000011921 ], [ 355897.635899998247623, 257847.082800000905991 ], [ 355920.473800003528595, 257886.913499999791384 ], [ 355934.603399999439716, 257879.564599998295307 ], [ 355955.036899998784065, 257870.744899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703032700", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-37", "ACRE": "0.42", "LONGITUDE": -64.95888339, "LATITUDE": 18.35033701, "OBJECTID_1": 3318, "PARCEL_NO_": "102703032700", "Tax_Legal_": "CONTANT 108A-37 S S QTR", "Name": "RICHARDSON, BERNADETTE & ATCHLEY", "Address": "PO Box 8464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.77565288, "SHAPE_Area": 1697.6478161800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355867.054799996316433, 257857.691300000995398 ], [ 355835.12780000269413, 257819.221999999135733 ], [ 355815.591099999845028, 257840.804800000041723 ], [ 355809.89469999819994, 257846.879900000989437 ], [ 355808.262299999594688, 257849.188499998301268 ], [ 355845.104599997401237, 257878.620999999344349 ], [ 355854.868400000035763, 257868.357299998402596 ], [ 355867.054799996316433, 257857.691300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93064297, "LATITUDE": 18.35030403, "OBJECTID_1": 4753, "PARCEL_NO_": "102903013700", "Tax_Legal_": "MAFOLIE ESTATE 23-5 8F GR NORTHSIDE", "Name": "THOMAS, CECIL V. & DIANE M", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 124600, "Improved_V": 579800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.68136476199999, "SHAPE_Area": 2232.95181895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358843.040899999439716, 257895.347199998795986 ], [ 358843.494000002741814, 257842.155299998819828 ], [ 358840.26690000295639, 257842.339999999850988 ], [ 358799.918999999761581, 257845.809500001370907 ], [ 358805.887500002980232, 257902.431400001049042 ], [ 358843.040899999439716, 257895.347199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9111719, "LATITUDE": 18.3503996, "OBJECTID_1": 5810, "PARCEL_NO_": "103003031400", "Tax_Legal_": "4G-5 REM ST JOSEPH & ROSENDAHL NO. 4 GREAT NORTHSIDE QTR", "Name": "GIRAUD, VICTOR J.", "Address": "PO Box 304221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37500, "Improved_V": 388600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.75543224899999, "SHAPE_Area": 1480.1232516499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360904.194899998605251, 257886.463300000876188 ], [ 360857.493500001728535, 257878.481699999421835 ], [ 360856.431900002062321, 257908.448300000280142 ], [ 360902.299999997019768, 257919.589499998837709 ], [ 360903.185400001704693, 257910.308699999004602 ], [ 360904.194899998605251, 257886.463300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93141835, "LATITUDE": 18.35032545, "OBJECTID_1": 4758, "PARCEL_NO_": "102903014200", "Tax_Legal_": "23-7 & 23-6A ESTATE MAFOLIE No.8F GREAT NORTHSIDE QTR.", "Name": "HENDERSON, ERIKA & MARI C. O. (TRUSTEE)", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 102500, "Improved_V": 415500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.47048453299999, "SHAPE_Area": 2122.8246142399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358725.779600001871586, 257840.347500000149012 ], [ 358719.624700002372265, 257900.247699998319149 ], [ 358744.627599999308586, 257899.607999999076128 ], [ 358760.735799998044968, 257901.850699998438358 ], [ 358757.999700002372265, 257844.410900000482798 ], [ 358725.779600001871586, 257840.347500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903035700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9248829, "LATITUDE": 18.35024814, "OBJECTID_1": 4869, "PARCEL_NO_": "102903035700", "Tax_Legal_": "HOSPITAL GROUND 403 AA NEW QTR", "Name": "SCOTTS, ROBERT & BECKLES, E", "Address": "3 Eden Ct", "City": "North Brunswick", "State": "New Jersey", "Zip": 8902, "Country": "United States", "Land_Value": 41300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.10140866899999, "SHAPE_Area": 1566.2477537 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359450.973499998450279, 257903.489199999719858 ], [ 359433.838799998164177, 257832.421599999070168 ], [ 359412.021600000560284, 257837.7314000017941 ], [ 359429.980599999427795, 257906.694899998605251 ], [ 359438.868000000715256, 257904.656700000166893 ], [ 359450.973499998450279, 257903.489199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91763881, "LATITUDE": 18.35043215, "OBJECTID_1": 4980, "PARCEL_NO_": "102904016700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1FB GREAT NORTHSIDE", "Name": "CARGILL, THOMAS, JR. & KATHLEEN A.", "Address": "3421 MISSISSIPPI STREET", "City": "SAN DEIGO", "State": "California", "Zip": 92104, "Country": "United States", "Land_Value": 36200, "Improved_V": 301300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.856041715, "SHAPE_Area": 725.25333973199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360214.04900000244379, 257874.059799998998642 ], [ 360176.755400002002716, 257897.608199998736382 ], [ 360176.696099996566772, 257904.573800001293421 ], [ 360205.655000001192093, 257912.832299999892712 ], [ 360214.04900000244379, 257874.059799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604021400", "MAP": "F9-3456-T76", "PARCEL_NAM": "39-2", "ACRE": null, "LONGITUDE": -64.96660447, "LATITUDE": 18.35038421, "OBJECTID_1": 2704, "PARCEL_NO_": "102604021400", "Tax_Legal_": "LINDBERG BAY 39-2 S S QTR", "Name": "NICOLE L SCATLIFFE", "Address": "PO Box 307912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037912, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.442368307, "SHAPE_Area": 989.41549876500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355036.436099998652935, 257864.614100001752377 ], [ 355035.112999998033047, 257830.617199998348951 ], [ 355007.696599997580051, 257830.603900000452995 ], [ 355009.784599997103214, 257869.462200000882149 ], [ 355021.090999998152256, 257867.443799998611212 ], [ 355036.436099998652935, 257864.614100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9560191, "LATITUDE": 18.35028573, "OBJECTID_1": 3649, "PARCEL_NO_": "102704060300", "Tax_Legal_": "CONTANT 107-19 S/S QTR", "Name": "PETERSEN, SR. , MILTON A", "Address": "2036 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 74400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.509146878, "SHAPE_Area": 1891.1757915600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356118.057199999690056, 257831.670200001448393 ], [ 356117.974399998784065, 257841.379799999296665 ], [ 356123.311099998652935, 257877.520500000566244 ], [ 356135.432800002396107, 257874.453299999237061 ], [ 356144.336400002241135, 257870.515399999916553 ], [ 356147.581399999558926, 257868.219900000840425 ], [ 356157.363300003111362, 257855.845400001853704 ], [ 356167.19370000064373, 257837.771800000220537 ], [ 356167.23139999806881, 257833.339200001209974 ], [ 356166.470100000500679, 257828.055599998682737 ], [ 356164.887999996542931, 257824.454100001603365 ], [ 356160.877999998629093, 257821.888099998235703 ], [ 356158.459100000560284, 257821.868299998342991 ], [ 356152.006800003349781, 257822.026599999517202 ], [ 356140.680699996650219, 257826.366900000721216 ], [ 356118.057199999690056, 257831.670200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703031700", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-13", "ACRE": "0.38", "LONGITUDE": -64.96000898, "LATITUDE": 18.35031169, "OBJECTID_1": 3308, "PARCEL_NO_": "102703031700", "Tax_Legal_": "CONTANT 108A-13 7B SOUTHSIDE QTR", "Name": "VELAZQUEZ, PEDRO & ESTHER", "Address": "PO Box 6815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35900, "Improved_V": 230700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.713128673, "SHAPE_Area": 1756.28307208 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355749.433899998664856, 257844.907400000840425 ], [ 355712.553900003433228, 257819.907600000500679 ], [ 355705.232400000095367, 257827.447000000625849 ], [ 355693.054999999701977, 257837.057599999010563 ], [ 355684.11540000140667, 257845.217099998146296 ], [ 355710.594200000166893, 257860.632599998265505 ], [ 355733.059500001370907, 257873.904199998825788 ], [ 355749.433899998664856, 257844.907400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903035800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92469073, "LATITUDE": 18.35021826, "OBJECTID_1": 4870, "PARCEL_NO_": "102903035800", "Tax_Legal_": "HOSPITAL GROUND 403AB NEW QTR", "Name": "ALEXANDRIA ASHLEY & EDUARDO J CORNEIRO, JR.", "Address": "PO Box 7853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50700, "Improved_V": 117600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.631466273, "SHAPE_Area": 1429.3149392400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359470.3412000015378, 257901.747900001704693 ], [ 359452.423500001430511, 257827.92960000038147 ], [ 359433.838799998164177, 257832.421599999070168 ], [ 359450.973499998450279, 257903.489199999719858 ], [ 359470.3412000015378, 257901.747900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95937939, "LATITUDE": 18.35028395, "OBJECTID_1": 3312, "PARCEL_NO_": "102703032100", "Tax_Legal_": "CONTANT 108-24 7B SOUTHSIDE QTR", "Name": "COMISSIONG, CLARICE E", "Address": "PO Box 9835", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38700, "Improved_V": 332900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.21949172199999, "SHAPE_Area": 1823.00563541 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355815.591099999845028, 257840.804800000041723 ], [ 355782.7533999979496, 257814.57149999961257 ], [ 355764.845499999821186, 257834.267700001597404 ], [ 355754.23759999871254, 257848.957400001585484 ], [ 355795.968099996447563, 257872.519299998879433 ], [ 355808.262299999594688, 257849.188499998301268 ], [ 355809.89469999819994, 257846.879900000989437 ], [ 355815.591099999845028, 257840.804800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95311351, "LATITUDE": 18.35024237, "OBJECTID_1": 3597, "PARCEL_NO_": "102704046200", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-4 LITTLE NORTHSIDE", "Name": "MULLER, EUGENE & FLORENCE", "Address": "205 NW 6th St", "City": "Boca Raton", "State": "Florida", "Zip": 33432, "Country": "United States", "Land_Value": 105100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.23147903699999, "SHAPE_Area": 5395.5730666899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356494.037900000810623, 257806.671900000423193 ], [ 356469.026100002229214, 257808.36710000038147 ], [ 356456.906199999153614, 257811.223200000822544 ], [ 356448.816100001335144, 257814.323399998247623 ], [ 356408.32599999755621, 257834.468100000172853 ], [ 356397.021499998867512, 257836.275400001555681 ], [ 356381.705099999904633, 257835.727800000458956 ], [ 356407.959200002253056, 257877.528099998831749 ], [ 356493.512900002300739, 257868.307000000029802 ], [ 356494.037900000810623, 257806.671900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90965128000001, "LATITUDE": 18.35035869, "OBJECTID_1": 5821, "PARCEL_NO_": "103003032500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4G-11 GR NORTHSIDE", "Name": "BENJAMIN, ETHELBERTH C", "Address": "PO Box 10371", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45100, "Improved_V": 332200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.91190500799999, "SHAPE_Area": 1426.25156367 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361056.359600000083447, 257914.517599999904633 ], [ 361065.558100000023842, 257875.962799999862909 ], [ 361028.447899997234344, 257877.981100000441074 ], [ 361018.603200003504753, 257897.743299998342991 ], [ 361014.467299997806549, 257909.952899999916553 ], [ 361037.830600000917912, 257912.466099999845028 ], [ 361056.359600000083447, 257914.517599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91018287, "LATITUDE": 18.35023087, "OBJECTID_1": 5822, "PARCEL_NO_": "103003032600", "Tax_Legal_": "ST JOSPEH & ROSENDAHL 4G-14 GT. NORTHSIDE", "Name": "HYMAN, WILLIAM A", "Address": "PO Box 12121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.62021178200001, "SHAPE_Area": 2626.0431715599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361014.621899999678135, 257891.80009999871254 ], [ 361008.498700000345707, 257853.331000000238419 ], [ 360946.308399997651577, 257865.065400000661612 ], [ 360951.767300002276897, 257886.852699998766184 ], [ 361006.368199996650219, 257914.108500000089407 ], [ 361008.828500002622604, 257909.273499999195337 ], [ 361012.158100001513958, 257897.057300001382828 ], [ 361014.621899999678135, 257891.80009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96632942, "LATITUDE": 18.35036033, "OBJECTID_1": 3357, "PARCEL_NO_": "102703042000", "Tax_Legal_": "LINDBERG BAY 39-3 S. S. QTR", "Name": "BLAISE D GOMEZ DASKALIS", "Address": "390 ANGOLA ROAD", "City": "Cornwall", "State": "New York", "Zip": 125181002, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.589881908, "SHAPE_Area": 984.64882619599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355068.742499999701977, 257858.545699998736382 ], [ 355065.754600003361702, 257830.656899999827147 ], [ 355035.112999998033047, 257830.617199998348951 ], [ 355036.436099998652935, 257864.614100001752377 ], [ 355061.4712999984622, 257860.175000000745058 ], [ 355068.742499999701977, 257858.545699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9302431, "LATITUDE": 18.35025873, "OBJECTID_1": 4752, "PARCEL_NO_": "102903013600", "Tax_Legal_": "MAFOLIE 23-4 8F GR NORTHSIDE", "Name": "CLARK, JAMES EDWARD", "Address": "9400 Wheatley Ctr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 127900, "Improved_V": 274500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.513923551, "SHAPE_Area": 2264.60765911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358885.023000001907349, 257889.357999999076128 ], [ 358889.493400000035763, 257837.887699998915195 ], [ 358870.923000000417233, 257840.691100001335144 ], [ 358843.494000002741814, 257842.155299998819828 ], [ 358843.040899999439716, 257895.347199998795986 ], [ 358885.023000001907349, 257889.357999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022400", "MAP": "D9-8288-T009", "PARCEL_NAM": "6D", "ACRE": ".152", "LONGITUDE": -64.93560782, "LATITUDE": 18.35032243, "OBJECTID_1": 4528, "PARCEL_NO_": "102804022400", "Tax_Legal_": "ELIZABETH 6 GR NORTHSIDE", "Name": "LEDEE, JOSEPH & LUZ R(Life Estate)", "Address": "PO Box 1642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041642, "Country": "United States", "Land_Value": 115900, "Improved_V": 347900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.61154133799999, "SHAPE_Area": 821.93012396799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358322.384199999272823, 257865.121399998664856 ], [ 358278.162900000810623, 257849.982900001108646 ], [ 358276.546599999070168, 257850.391800001263618 ], [ 358294.753799997270107, 257890.226399999111891 ], [ 358309.368100002408028, 257878.52479999884963 ], [ 358322.384199999272823, 257865.121399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904012500", "MAP": "C3-61-T47", "PARCEL_NAM": "4", "ACRE": null, "LONGITUDE": -64.91970877, "LATITUDE": 18.35014733, "OBJECTID_1": 4942, "PARCEL_NO_": "102904012500", "Tax_Legal_": "LOUISENHOJ 7 GREAT NORTHSIDE QTR", "Name": "ELIZABETH DAVIS", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 173600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.98400317699998, "SHAPE_Area": 4085.57326061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360031.04839999973774, 257868.76240000128746 ], [ 360018.487300001084805, 257828.762899998575449 ], [ 360002.33219999819994, 257832.008200000971556 ], [ 359928.749200001358986, 257855.892799999564886 ], [ 359935.822599999606609, 257877.482200000435114 ], [ 359943.673600003123283, 257902.45549999922514 ], [ 360004.393299996852875, 257874.032699998468161 ], [ 360018.942900002002716, 257869.929900001734495 ], [ 360031.04839999973774, 257868.76240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92320192, "LATITUDE": 18.35025274, "OBJECTID_1": 5044, "PARCEL_NO_": "102904022700", "Tax_Legal_": "HOSPITAL GROUND REM 406 GT. NORTHSIDE", "Name": "HILL, FLORENCE & OTHERS", "Address": "4709 Iris Pl", "City": "Rockville", "State": "Maryland", "Zip": 20853, "Country": "United States", "Land_Value": 93100, "Improved_V": 248300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.103938586, "SHAPE_Area": 2324.1065487300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359621.998000003397465, 257894.756499998271465 ], [ 359632.579000003635883, 257883.232999999076128 ], [ 359635.872599996626377, 257875.238400001078844 ], [ 359637.582299999892712, 257863.853300001472235 ], [ 359636.007399998605251, 257859.407400000840425 ], [ 359625.62610000371933, 257847.501200001686811 ], [ 359612.019500002264977, 257835.568599998950958 ], [ 359590.05120000243187, 257858.609099999070168 ], [ 359588.758799999952316, 257859.940000001341105 ], [ 359596.192199997603893, 257879.691199999302626 ], [ 359588.148699998855591, 257889.433299999684095 ], [ 359578.132600001990795, 257870.882500000298023 ], [ 359573.781099997460842, 257875.363400001078844 ], [ 359579.258100003004074, 257895.03999999910593 ], [ 359580.028399996459484, 257899.268199998885393 ], [ 359621.998000003397465, 257894.756499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91484529, "LATITUDE": 18.35022331, "OBJECTID_1": 5767, "PARCEL_NO_": "103003025100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-10 GR NORTHSIDE", "Name": "FLAHARTY, JR. LEONARD & A", "Address": "P.O. BOX 2384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67000, "Improved_V": 377400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.33797292599999, "SHAPE_Area": 1939.93996509 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360522.103500001132488, 257871.514899998903275 ], [ 360477.147799998521805, 257847.926600001752377 ], [ 360469.804700002074242, 257857.999000001698732 ], [ 360455.962499998509884, 257873.717799998819828 ], [ 360492.082900002598763, 257893.222899999469519 ], [ 360516.166199997067451, 257905.874499998986721 ], [ 360518.752400003373623, 257886.263999998569489 ], [ 360522.103500001132488, 257871.514899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96599246, "LATITUDE": 18.35032221, "OBJECTID_1": 3358, "PARCEL_NO_": "102703042100", "Tax_Legal_": "LINDBERG BAY 38HB SOUTHSIDE QTR", "Name": "FLEMING, TULIP", "Address": "PO Box 6036", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31800, "Improved_V": 312800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.983685627, "SHAPE_Area": 981.92757981700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355108.314800001680851, 257851.481300000101328 ], [ 355108.492799997329712, 257830.584499999880791 ], [ 355065.754600003361702, 257830.656899999827147 ], [ 355068.742499999701977, 257858.545699998736382 ], [ 355095.404799997806549, 257852.431099999696016 ], [ 355100.246299996972084, 257852.048599999397993 ], [ 355108.314800001680851, 257851.481300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92980593, "LATITUDE": 18.35021349, "OBJECTID_1": 4751, "PARCEL_NO_": "102903013500", "Tax_Legal_": "MAFOLIE 23-3 GR NORTHSIDE", "Name": "LEE, DONALD & MARIE", "Address": "16740 SW 78th Pl", "City": "PALMETTO BAY", "State": "Florida", "Zip": 33157, "Country": "United States", "Land_Value": 125700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.57915590499999, "SHAPE_Area": 2468.4324376899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358885.023000001907349, 257889.357999999076128 ], [ 358930.20889999717474, 257885.928100001066923 ], [ 358941.095600001513958, 257838.521200001239777 ], [ 358929.823399998247623, 257836.529100000858307 ], [ 358916.92960000038147, 257835.579199999570847 ], [ 358899.183499999344349, 257836.278299998492002 ], [ 358889.493400000035763, 257837.887699998915195 ], [ 358885.023000001907349, 257889.357999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904022800", "MAP": "F9-1828-T66", "PARCEL_NAM": "406-2", "ACRE": ".12", "LONGITUDE": -64.92340681, "LATITUDE": 18.35028276, "OBJECTID_1": 5045, "PARCEL_NO_": "102904022800", "Tax_Legal_": "406-2 HOSPITAL GROUND 9 NEW QTR", "Name": "ZHUDI, NEZAR", "Address": "PO Box 9019", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15000, "Improved_V": 1300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.072325499000002, "SHAPE_Area": 269.0056942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359578.132600001990795, 257870.882500000298023 ], [ 359588.148699998855591, 257889.433299999684095 ], [ 359596.192199997603893, 257879.691199999302626 ], [ 359588.758799999952316, 257859.940000001341105 ], [ 359578.132600001990795, 257870.882500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92280626, "LATITUDE": 18.35027273, "OBJECTID_1": 5041, "PARCEL_NO_": "102904022400", "Tax_Legal_": "HOSPITAL GROUND 406-3 GT.NORTHSIDE", "Name": "JAMIL, FAIKA, ZUHDI, RUSHDI & NEZAR", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46300, "Improved_V": 607200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.32388512200001, "SHAPE_Area": 1014.77637233 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359657.835400000214577, 257852.8310999982059 ], [ 359656.292900003492832, 257844.585799999535084 ], [ 359638.487499997019768, 257852.250599998980761 ], [ 359642.463299997150898, 257858.826999999582767 ], [ 359644.020199999213219, 257865.383600000292063 ], [ 359642.364399999380112, 257870.436299998313189 ], [ 359639.018700003623962, 257884.552200000733137 ], [ 359630.867499999701977, 257894.829100001603365 ], [ 359667.164099998772144, 257893.648499999195337 ], [ 359657.835400000214577, 257852.8310999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904025100", "MAP": "D9-2874-T84", "PARCEL_NAM": "407-1-A", "ACRE": ".22", "LONGITUDE": -64.9225745, "LATITUDE": 18.35018225, "OBJECTID_1": 5068, "PARCEL_NO_": "102904025100", "Tax_Legal_": "HOSPITAL GROUND 407-1-A KINGS QTR.", "Name": "LARSON, JON", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.532369437, "SHAPE_Area": 1012.56468616 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359699.850000001490116, 257843.042500000447035 ], [ 359657.835400000214577, 257852.8310999982059 ], [ 359667.164099998772144, 257893.648499999195337 ], [ 359669.583099998533726, 257893.668299999088049 ], [ 359681.832400001585484, 257875.614500001072884 ], [ 359690.006999999284744, 257862.593600001186132 ], [ 359692.472699999809265, 257857.125399999320507 ], [ 359693.296999998390675, 257855.021200001239777 ], [ 359699.850000001490116, 257843.042500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904025000", "MAP": "D9-2874-T84", "PARCEL_NAM": "407-1", "ACRE": ".51", "LONGITUDE": -64.9221449, "LATITUDE": 18.35019243, "OBJECTID_1": 5067, "PARCEL_NO_": "102904025000", "Tax_Legal_": "407-1 HOSPITAL GROUND KINGS QTR", "Name": "KOOPMANS, KYLE D. & TINA M.", "Address": "7026 Skyline Dr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98100, "Improved_V": 399400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.57683816599999, "SHAPE_Area": 2916.3351902499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359744.171999998390675, 257846.360500000417233 ], [ 359738.727399997413158, 257822.88459999859333 ], [ 359719.24099999666214, 257838.557100001722574 ], [ 359707.121200002729893, 257841.413199998438358 ], [ 359702.184399999678135, 257852.982999999076128 ], [ 359694.825099997222424, 257864.955099999904633 ], [ 359692.355800002813339, 257870.845499999821186 ], [ 359677.651600003242493, 257893.101100001484156 ], [ 359753.497100003063679, 257887.600099999457598 ], [ 359744.171999998390675, 257846.360500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043400", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-50", "ACRE": "0.38", "LONGITUDE": -64.95724563, "LATITUDE": 18.35012041, "OBJECTID_1": 3572, "PARCEL_NO_": "102704043400", "Tax_Legal_": "CONTANT 108A-50 7B S S QTR", "Name": "MANNING, HUGH", "Address": "PO Box 304351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55000, "Improved_V": 214700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.087380763, "SHAPE_Area": 1475.9445916300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355984.140000000596046, 257823.342799998819828 ], [ 355999.711999997496605, 257851.637499999254942 ], [ 356037.38629999756813, 257835.653999999165535 ], [ 356030.269799999892712, 257819.130399998277426 ], [ 356023.145999997854233, 257803.451200000941753 ], [ 355998.89190000295639, 257810.852099999785423 ], [ 355999.665899999439716, 257814.658100001513958 ], [ 355998.843400001525879, 257816.551199998706579 ], [ 355996.406499996781349, 257818.642200000584126 ], [ 355984.140000000596046, 257823.342799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9285287, "LATITUDE": 18.35032399, "OBJECTID_1": 4742, "PARCEL_NO_": "102903012600", "Tax_Legal_": "HOSPITAL GROUND 400D-2 GREAT NORTHSIDE", "Name": "GUMBS, SHIRMAN", "Address": "201 Rivers Ridge Cir", "City": "Newport News", "State": "Virginia", "Zip": 23608, "Country": "United States", "Land_Value": 56200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.464471589, "SHAPE_Area": 912.90547718899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359027.225299999117851, 257856.324700001627207 ], [ 359028.643799997866154, 257879.134399998933077 ], [ 359028.579000003635883, 257886.733199998736382 ], [ 359076.165899999439716, 257885.434000000357628 ], [ 359076.183799996972084, 257883.32319999858737 ], [ 359070.571999996900558, 257879.477600000798702 ], [ 359052.960799999535084, 257864.345800001174212 ], [ 359046.535499997437, 257861.337900001555681 ], [ 359031.237099997699261, 257858.67960000038147 ], [ 359027.225299999117851, 257856.324700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92937644, "LATITUDE": 18.3502511, "OBJECTID_1": 4750, "PARCEL_NO_": "102903013400", "Tax_Legal_": "MAFOLIE 23-2 GR NORTHSIDE QTR", "Name": "SAWYER, JOHN A. & HALDEMAN, NANCY", "Address": "PO Box 8905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 122300, "Improved_V": 418300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.09602180499999, "SHAPE_Area": 1836.10885373 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358941.095600001513958, 257838.521200001239777 ], [ 358930.20889999717474, 257885.928100001066923 ], [ 358942.312600001692772, 257884.971700001507998 ], [ 358982.622800000011921, 257885.934900000691414 ], [ 358978.092399999499321, 257849.800799999386072 ], [ 358970.050899997353554, 257847.201900001615286 ], [ 358966.813100002706051, 257848.653099998831749 ], [ 358966.796899996697903, 257850.552799999713898 ], [ 358960.36259999871254, 257848.600299999117851 ], [ 358961.199400000274181, 257845.018500000238419 ], [ 358959.597599998116493, 257843.738899998366833 ], [ 358941.095600001513958, 257838.521200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92893029, "LATITUDE": 18.35022453, "OBJECTID_1": 4749, "PARCEL_NO_": "102903013300", "Tax_Legal_": "MAFOLIE 23-1 GR NORTHSIDE QTR", "Name": "WATSON, MICHAEL A. & JUDITH A.", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 85600, "Improved_V": 508200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.00855922700001, "SHAPE_Area": 1869.2168120399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358978.092399999499321, 257849.800799999386072 ], [ 358982.622800000011921, 257885.934900000691414 ], [ 358997.145400002598763, 257884.9983000010252 ], [ 359028.643799997866154, 257879.134399998933077 ], [ 359027.225299999117851, 257856.324700001627207 ], [ 359027.28830000013113, 257848.936900001019239 ], [ 359026.546700000762939, 257841.331500001251698 ], [ 358983.774400003254414, 257845.41440000012517 ], [ 358982.113200001418591, 257851.100299999117851 ], [ 358978.092399999499321, 257849.800799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904020400", "MAP": "G9-1553-T70", "PARCEL_NAM": "407A-1", "ACRE": ".33", "LONGITUDE": -64.92164006, "LATITUDE": 18.35019704, "OBJECTID_1": 5012, "PARCEL_NO_": "102904020400", "Tax_Legal_": "HOSPITAL GORUND 407A-1 GR NORTHSIDE", "Name": "BRYAN, CLIFF C", "Address": "407A-1 HOSPITAL GROUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.071945572, "SHAPE_Area": 2027.17006625 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359753.497100003063679, 257887.600099999457598 ], [ 359778.510799996554852, 257885.693900000303984 ], [ 359790.600100003182888, 257886.426100000739098 ], [ 359798.648800000548363, 257888.180700000375509 ], [ 359803.46509999781847, 257890.753299999982119 ], [ 359801.936999998986721, 257880.819400001317263 ], [ 359795.788599997758865, 257845.305300001055002 ], [ 359765.929799996316433, 257848.01630000025034 ], [ 359744.171999998390675, 257846.360500000417233 ], [ 359753.497100003063679, 257887.600099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92032379, "LATITUDE": 18.35024101, "OBJECTID_1": 5060, "PARCEL_NO_": "102904024300", "Tax_Legal_": "LOUISENHOJ 5B GR NORTHSIDE", "Name": "RICHARDS, ENRIQUE & KATHLEEN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47900, "Improved_V": 367300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.06057867200001, "SHAPE_Area": 940.99080965999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359928.749200001358986, 257855.892799999564886 ], [ 359891.568899996578693, 257866.143199998885393 ], [ 359899.421700000762939, 257890.9054000005126 ], [ 359935.822599999606609, 257877.482200000435114 ], [ 359928.749200001358986, 257855.892799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9656973, "LATITUDE": 18.35030175, "OBJECTID_1": 3359, "PARCEL_NO_": "102703042200", "Tax_Legal_": "LINDBERG BAY 38HC SOUTHSIDE QTR", "Name": "FLEMING, TULIP", "Address": "PO Box 6036", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.004273585600004, "SHAPE_Area": 403.13531692800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355128.483400002121925, 257850.379799999296665 ], [ 355125.455899998545647, 257827.134799998253584 ], [ 355118.983900003135204, 257829.614900000393391 ], [ 355108.492799997329712, 257830.584499999880791 ], [ 355108.314800001680851, 257851.481300000101328 ], [ 355128.483400002121925, 257850.379799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703033000", "MAP": "A9-83-T68", "PARCEL_NAM": "108-A-36", "ACRE": ".40", "LONGITUDE": -64.95863337, "LATITUDE": 18.35010443, "OBJECTID_1": 3321, "PARCEL_NO_": "102703033000", "Tax_Legal_": "108-A-36 ESTATE CONTANT No,7B SOUTHSIDE QTR.", "Name": "ZEPHIR, MARIO ANTHONY", "Address": "PO Box 306824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.03458076000001, "SHAPE_Area": 2037.63904116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355892.181800000369549, 257842.487100001424551 ], [ 355873.220499999821186, 257796.524599999189377 ], [ 355857.115800000727177, 257793.859700001776218 ], [ 355842.45830000191927, 257810.627199999988079 ], [ 355835.12780000269413, 257819.221999999135733 ], [ 355867.054799996316433, 257857.691300000995398 ], [ 355880.033100001513958, 257848.720499999821186 ], [ 355892.181800000369549, 257842.487100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033600", "MAP": "G3-40-T49", "PARCEL_NAM": "273", "ACRE": null, "LONGITUDE": -64.92643647, "LATITUDE": 18.34958215, "OBJECTID_1": 4848, "PARCEL_NO_": "102903033600", "Tax_Legal_": "HOSPITAL GROUND 273 GREAT NORTHSIDE QTR", "Name": "CENTRAL ENTERPRISE LLC, IRIS & JAMES GOSS", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 164000, "Improved_V": 199700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 438.877932311, "SHAPE_Area": 7401.1226374300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359234.955799996852875, 257703.715500000864267 ], [ 359251.383799999952316, 257857.737100001424551 ], [ 359269.880400002002716, 257863.587999999523163 ], [ 359277.909400001168251, 257867.664500001817942 ], [ 359285.907799996435642, 257875.3293999992311 ], [ 359292.271999999880791, 257885.513900000602007 ], [ 359310.118699997663498, 257872.99439999833703 ], [ 359264.033399999141693, 257698.04280000180006 ], [ 359252.737800002098083, 257698.794799998402596 ], [ 359234.955799996852875, 257703.715500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9654862, "LATITUDE": 18.35027853, "OBJECTID_1": 3360, "PARCEL_NO_": "102703042300", "Tax_Legal_": "LINBERG BAY 38F SOUTHSIDE QTR", "Name": "SMALLS, DORIS", "Address": "7492 Estate Bovoni Number 5", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.164689385, "SHAPE_Area": 597.42766406400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355125.455899998545647, 257827.134799998253584 ], [ 355128.483400002121925, 257850.379799999296665 ], [ 355168.052000001072884, 257843.73759999871254 ], [ 355157.605899997055531, 257839.43019999936223 ], [ 355148.779700003564358, 257834.291799999773502 ], [ 355140.774099998176098, 257827.471200000494719 ], [ 355136.780299998819828, 257823.00560000166297 ], [ 355135.991899996995926, 257820.888199999928474 ], [ 355129.501900002360344, 257825.479100000113249 ], [ 355125.455899998545647, 257827.134799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904019500", "MAP": "D9-6470-T98", "PARCEL_NAM": "1-3 REM", "ACRE": "0.55", "LONGITUDE": -64.91628627, "LATITUDE": 18.35007843, "OBJECTID_1": 5005, "PARCEL_NO_": "102904019500", "Tax_Legal_": "1-3 REM. ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QTR", "Name": "TODMAN, RAYMOND & HELENA S", "Address": "PO Box 307035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.13850299500001, "SHAPE_Area": 2547.79888734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360354.534100003540516, 257821.810100000351667 ], [ 360344.66889999806881, 257842.329799998551607 ], [ 360294.17620000243187, 257857.579199999570847 ], [ 360327.593400001525879, 257892.087699998170137 ], [ 360337.346400000154972, 257883.090500000864267 ], [ 360383.593999996781349, 257849.694099999964237 ], [ 360354.534100003540516, 257821.810100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003024300", "MAP": "B9-68-T61", "PARCEL_NAM": "2-11", "ACRE": null, "LONGITUDE": -64.91545496000001, "LATITUDE": 18.35003121, "OBJECTID_1": 5759, "PARCEL_NO_": "103003024300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-11 GR NORTHSIDE QTR", "Name": "LEE, DENISE", "Address": "PO Box 12133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98800, "Improved_V": 190100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.61902012300001, "SHAPE_Area": 2888.3329455100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360448.237400002777576, 257833.968899998813868 ], [ 360423.376599997282028, 257817.933400001376867 ], [ 360412.763300001621246, 257833.256400000303984 ], [ 360407.880400002002716, 257838.49379999935627 ], [ 360398.120200000703335, 257848.335299998521805 ], [ 360388.383299998939037, 257855.432799998670816 ], [ 360422.772399999201298, 257888.855900000780821 ], [ 360442.233599998056889, 257876.1385000012815 ], [ 360454.425399996340275, 257864.839200001209974 ], [ 360468.285499997437, 257847.009700000286102 ], [ 360448.237400002777576, 257833.968899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704046400", "MAP": "G9-3040-T80", "PARCEL_NAM": "6A-2-3", "ACRE": ".625", "LONGITUDE": -64.95196195, "LATITUDE": 18.34990928, "OBJECTID_1": 3599, "PARCEL_NO_": "102704046400", "Tax_Legal_": "LILLIENDAHL 6A 2-3 LITTLE NORTHSIDE QTR", "Name": "Suzanne C McGarity & Barnes Bareuther Fam Trust", "Address": "PO BOX 8867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79100, "Improved_V": 474000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.989333332, "SHAPE_Area": 2960.93304958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356574.933499999344349, 257776.303300000727177 ], [ 356549.995399996638298, 257769.344200000166893 ], [ 356539.940200001001358, 257813.802600000053644 ], [ 356547.967399999499321, 257818.090199999511242 ], [ 356559.968500003218651, 257829.165300000458956 ], [ 356579.097099997103214, 257855.497400000691414 ], [ 356585.906300000846386, 257868.714299999177456 ], [ 356586.600500002503395, 257864.474500000476837 ], [ 356587.394199997186661, 257857.013300001621246 ], [ 356586.368600003421307, 257851.83390000090003 ], [ 356584.219200000166893, 257840.979499999433756 ], [ 356596.899300001561642, 257807.602400001138449 ], [ 356594.951099999248981, 257792.932399999350309 ], [ 356574.933499999344349, 257776.303300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90985398, "LATITUDE": 18.349915, "OBJECTID_1": 5819, "PARCEL_NO_": "103003032300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4G-8 GR NORTHSIDE", "Name": "KNIGHT PROPERTIES LLC", "Address": "PO Box 502773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31300, "Improved_V": 102200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.442783338, "SHAPE_Area": 1410.67980304 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361036.224399998784065, 257817.038699999451637 ], [ 361003.9054000005126, 257824.584600001573563 ], [ 361008.498700000345707, 257853.331000000238419 ], [ 361014.621899999678135, 257891.80009999871254 ], [ 361026.934199996292591, 257866.358600001782179 ], [ 361035.231100000441074, 257838.984299998730421 ], [ 361037.756099998950958, 257826.550400000065565 ], [ 361036.224399998784065, 257817.038699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91792288000001, "LATITUDE": 18.35016779, "OBJECTID_1": 4982, "PARCEL_NO_": "102904016900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1F-HA GR NORTHSIDE", "Name": "CONCEPCION, PRISCILLA", "Address": "PO Box 556", "City": "Fajardo", "State": "Puerto Rico", "Zip": 738, "Country": "United States", "Land_Value": 13600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.687328367299997, "SHAPE_Area": 576.23605289199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360179.564499996602535, 257851.823899999260902 ], [ 360168.287000000476837, 257850.464999999850988 ], [ 360157.707800000905991, 257861.777499999850988 ], [ 360152.681100003421307, 257883.901200000196695 ], [ 360177.750500001013279, 257875.451499998569489 ], [ 360179.564499996602535, 257851.823899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91100393000001, "LATITUDE": 18.34989494, "OBJECTID_1": 5817, "PARCEL_NO_": "103003032100", "Tax_Legal_": "4G REM ST JOSEPH & ROSENDAHL NO 4 GREAT NORTHSIDE QTR", "Name": "BETTY A SMITH, KARIM J. & SHEANELLE F GIRAUD", "Address": "PO Box 302734", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 169100, "Improved_V": 532400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 367.46470725699999, "SHAPE_Area": 5138.9849372199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360924.251299999654293, 257803.878800000995398 ], [ 360870.138400003314018, 257813.990600001066923 ], [ 360882.218699999153614, 257815.778200000524521 ], [ 360882.191799998283386, 257818.944400001317263 ], [ 360864.478100001811981, 257815.844099998474121 ], [ 360858.643299996852875, 257838.1722999997437 ], [ 360857.493500001728535, 257878.481699999421835 ], [ 360904.194899998605251, 257886.463300000876188 ], [ 360909.831900000572205, 257887.353900000452995 ], [ 360908.248000003397465, 257883.96339999884367 ], [ 360896.405100002884865, 257854.313400000333786 ], [ 360946.308399997651577, 257865.065400000661612 ], [ 360935.559399999678135, 257801.649300001561642 ], [ 360924.251299999654293, 257803.878800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703032000", "MAP": "A9-83-T68", "PARCEL_NAM": "108-A-12", "ACRE": "0.38", "LONGITUDE": -64.95979112000001, "LATITUDE": 18.35004145, "OBJECTID_1": 3311, "PARCEL_NO_": "102703032000", "Tax_Legal_": "CONTANT 108-A-12 7B S S QTR.", "Name": "DORSETT, SR., THEODORE A.", "Address": "PO Box 305528", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.56502058000001, "SHAPE_Area": 1725.2240849899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355772.255199998617172, 257816.385400000959635 ], [ 355737.021999999880791, 257787.388300001621246 ], [ 355729.691500000655651, 257795.983199998736382 ], [ 355716.623199999332428, 257815.50789999961853 ], [ 355712.553900003433228, 257819.907600000500679 ], [ 355749.433899998664856, 257844.907400000840425 ], [ 355766.5625, 257822.03830000013113 ], [ 355772.255199998617172, 257816.385400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003039500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91075844, "LATITUDE": 18.3501604, "OBJECTID_1": 5891, "PARCEL_NO_": "103003039500", "Tax_Legal_": "4G-15 CONS. ST JOSEPH & ROSENDAHL NO.4 GT. NORTHSIDE QTR", "Name": "THOMPSON, JOHN DEREK & DEBRA", "Address": "PO Box 10879", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61500, "Improved_V": 611900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.052009524, "SHAPE_Area": 1142.3468144799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360908.248000003397465, 257883.96339999884367 ], [ 360951.767300002276897, 257886.852699998766184 ], [ 360946.308399997651577, 257865.065400000661612 ], [ 360896.405100002884865, 257854.313400000333786 ], [ 360908.248000003397465, 257883.96339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033700", "MAP": "A3-77-T49", "PARCEL_NAM": "274", "ACRE": "0.88", "LONGITUDE": -64.92611222, "LATITUDE": 18.34951514, "OBJECTID_1": 4849, "PARCEL_NO_": "102903033700", "Tax_Legal_": "HOSPITAL GROUND 274 GREAT NORTHSIDE QTR", "Name": "HAMLIN, BRUCE B and EDELL H", "Address": "PO Box 2449", "City": "Umatilla", "State": "Florida", "Zip": 32784, "Country": "United States", "Land_Value": 96000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.68596708400003, "SHAPE_Area": 4807.3641780999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359272.881300002336502, 257700.648400001227856 ], [ 359264.033399999141693, 257698.04280000180006 ], [ 359310.118699997663498, 257872.99439999833703 ], [ 359327.963699996471405, 257860.685899998992682 ], [ 359336.525700002908707, 257854.718600001186132 ], [ 359307.227200001478195, 257739.13740000128746 ], [ 359301.629799999296665, 257733.603199999779463 ], [ 359288.878100000321865, 257715.978000000119209 ], [ 359283.300399996340275, 257708.121899999678135 ], [ 359278.500299997627735, 257703.649700000882149 ], [ 359272.881300002336502, 257700.648400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92346428, "LATITUDE": 18.34997416, "OBJECTID_1": 5058, "PARCEL_NO_": "102904024100", "Tax_Legal_": "406-1A HOSPITAL GROUND NEW QTR", "Name": "LAIBEN, VINCENT", "Address": "PO Box 306385", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 265800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.686953249, "SHAPE_Area": 1509.4815518400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359574.306199997663498, 257813.728399999439716 ], [ 359559.79619999974966, 257813.1875 ], [ 359568.363499999046326, 257848.7212999984622 ], [ 359573.781099997460842, 257875.363400001078844 ], [ 359590.05120000243187, 257858.609099999070168 ], [ 359612.019500002264977, 257835.568599998950958 ], [ 359603.994099996984005, 257831.070000000298023 ], [ 359583.891999997198582, 257824.361600000411272 ], [ 359576.678400002419949, 257819.236299999058247 ], [ 359574.306199997663498, 257813.728399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003024900", "MAP": "A9-25-T64", "PARCEL_NAM": "3-13", "ACRE": null, "LONGITUDE": -64.91415976, "LATITUDE": 18.35002862, "OBJECTID_1": 5765, "PARCEL_NO_": "103003024900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-13 GR NORTHSIDE QTR", "Name": "KENWORTH, JOSEPH", "Address": "PO Box 9554", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61900, "Improved_V": 381700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.97484743300001, "SHAPE_Area": 3158.9001125599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360602.088200002908707, 257846.876400001347065 ], [ 360547.554099999368191, 257818.316500000655651 ], [ 360542.683899998664856, 257822.076299998909235 ], [ 360541.038900002837181, 257825.862500000745058 ], [ 360528.530599996447563, 257874.311700001358986 ], [ 360539.808200001716614, 257875.6706000007689 ], [ 360597.146700002253056, 257882.525800000876188 ], [ 360602.088200002908707, 257846.876400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703033400", "MAP": "A9-83-T68", "PARCEL_NAM": "108-A-35", "ACRE": ".34", "LONGITUDE": -64.95827701, "LATITUDE": 18.35005179, "OBJECTID_1": 3325, "PARCEL_NO_": "102703033400", "Tax_Legal_": "108-A-35 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "INDUSTRIOUS, CARMEN", "Address": "PO Box 301883", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47000, "Improved_V": 482900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.102829138, "SHAPE_Area": 1572.46070981 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355882.077299997210503, 257798.074700001627207 ], [ 355873.220499999821186, 257796.524599999189377 ], [ 355892.181800000369549, 257842.487100001424551 ], [ 355906.736800000071526, 257837.7511 ], [ 355933.395400002598763, 257832.058600001037121 ], [ 355917.502899996936321, 257804.486400000751019 ], [ 355882.077299997210503, 257798.074700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95912809, "LATITUDE": 18.35000187, "OBJECTID_1": 3317, "PARCEL_NO_": "102703032600", "Tax_Legal_": "CONTANT 108A-IK 7B S S QTR", "Name": "SMITH, SHERIDAN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.02111886599999, "SHAPE_Area": 1678.58680626 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355842.45830000191927, 257810.627199999988079 ], [ 355807.200000002980232, 257784.585200000554323 ], [ 355795.776699997484684, 257800.323699999600649 ], [ 355782.7533999979496, 257814.57149999961257 ], [ 355815.591099999845028, 257840.804800000041723 ], [ 355835.12780000269413, 257819.221999999135733 ], [ 355842.45830000191927, 257810.627199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91907688000001, "LATITUDE": 18.34998424, "OBJECTID_1": 5014, "PARCEL_NO_": "102904020600", "Tax_Legal_": "LOUISENHOJ 3-1 GREAT NORTHSIDE", "Name": "HUGHES, RICHARD G. & LAVERNE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88000, "Improved_V": 475700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.30674773699999, "SHAPE_Area": 1969.5556867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360058.131399996578693, 257813.255300000309944 ], [ 360039.508900001645088, 257822.179900001734495 ], [ 360018.487300001084805, 257828.762899998575449 ], [ 360031.04839999973774, 257868.76240000128746 ], [ 360054.420699998736382, 257870.220199998468161 ], [ 360069.704700000584126, 257874.567200001329184 ], [ 360058.131399996578693, 257813.255300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91764709, "LATITUDE": 18.35014386, "OBJECTID_1": 4983, "PARCEL_NO_": "102904017000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1 FA 4 GREAT NORTHSIDE", "Name": "LEWIS, WILLOUGHBY & MARGARET", "Address": "4003 WEYMOUTH RHYMER HIGHWAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90000, "Improved_V": 264200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.77639112200001, "SHAPE_Area": 771.88962609400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360218.228000000119209, 257856.784400001168251 ], [ 360179.564499996602535, 257851.823899999260902 ], [ 360177.750500001013279, 257875.451499998569489 ], [ 360214.04900000244379, 257874.059799998998642 ], [ 360218.228000000119209, 257856.784400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027500", "MAP": "D9-1155-T73", "PARCEL_NAM": "5B", "ACRE": ".29", "LONGITUDE": -64.93553732, "LATITUDE": 18.35005423, "OBJECTID_1": 4595, "PARCEL_NO_": "102804027500", "Tax_Legal_": "AGNES FANCY 5B 8H GR NORTHSIDE", "Name": "LAPLACE, FLORIE QUERRARD", "Address": "PO Box 10156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38200, "Improved_V": 147500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.21132053900001, "SHAPE_Area": 1052.4763805099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358297.785899996757507, 257818.268399998545647 ], [ 358280.630400002002716, 257844.30350000038743 ], [ 358317.614600002765656, 257857.0608000010252 ], [ 358326.546999998390675, 257849.745600000023842 ], [ 358322.679099999368191, 257830.504399999976158 ], [ 358297.785899996757507, 257818.268399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90957413, "LATITUDE": 18.35002117, "OBJECTID_1": 5816, "PARCEL_NO_": "103003032000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4G-10 GR NORTHSIDE", "Name": "RABSATT, ALBERT F. (TRUSTEE)", "Address": "P.O. BOX 1923", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34300, "Improved_V": 293000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.873608453, "SHAPE_Area": 1193.40763829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361065.558100000023842, 257875.962799999862909 ], [ 361066.421899996697903, 257869.214899998158216 ], [ 361060.286100000143051, 257832.223299998790026 ], [ 361042.523900002241135, 257834.82209999859333 ], [ 361034.212600000202656, 257863.885000001639128 ], [ 361028.447899997234344, 257877.981100000441074 ], [ 361065.558100000023842, 257875.962799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042400", "MAP": "G9-1558-T70", "PARCEL_NAM": "37G", "ACRE": ".32", "LONGITUDE": -64.96507711, "LATITUDE": 18.34995206, "OBJECTID_1": 3361, "PARCEL_NO_": "102703042400", "Tax_Legal_": "LINDBERG BAY 37G SOUTHSIDE QTR", "Name": "SPRAUVE, ALBERTHA JENNINGS-TRUS", "Address": "P.O. BOX 2764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42100, "Improved_V": 231200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.310019431, "SHAPE_Area": 1601.58033426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355215.216700002551079, 257817.73030000180006 ], [ 355214.3733000010252, 257801.686900001019239 ], [ 355212.834399998188019, 257793.019499998539686 ], [ 355212.225500002503395, 257789.362100001424551 ], [ 355145.354000002145767, 257790.850999999791384 ], [ 355141.851899996399879, 257795.604899998754263 ], [ 355139.386200003325939, 257801.07319999858737 ], [ 355139.783699996769428, 257807.736000001430511 ], [ 355141.269050986564253, 257805.907099936885061 ], [ 355143.027479288168252, 257804.338956793828402 ], [ 355145.013824649562594, 257803.071843888756121 ], [ 355147.177073414437473, 257802.138303428830113 ], [ 355149.461668663367163, 257801.562310757493833 ], [ 355151.808937036199495, 257801.35865861561615 ], [ 355154.158595590968616, 257801.532577231817413 ], [ 355156.450300000607967, 257802.079599998891354 ], [ 355177.828699998557568, 257816.790500000119209 ], [ 355187.141999997198582, 257817.848799999803305 ], [ 355215.216700002551079, 257817.73030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91468073, "LATITUDE": 18.34979227, "OBJECTID_1": 5766, "PARCEL_NO_": "103003025000", "Tax_Legal_": "2-9 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QUARTER", "Name": "WILLIAMS, PEDRO K. & NEOMIE M. TOUSSAINT (TRUSTEES)", "Address": "PO Box 8805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 89000, "Improved_V": 678500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.754077532, "SHAPE_Area": 3086.1130737799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360544.39360000193119, 257810.691300000995398 ], [ 360502.695500001311302, 257783.329999998211861 ], [ 360496.946999996900558, 257795.526399999856949 ], [ 360490.282600000500679, 257820.592000000178814 ], [ 360484.525100000202656, 257833.843699999153614 ], [ 360477.147799998521805, 257847.926600001752377 ], [ 360522.103500001132488, 257871.514899998903275 ], [ 360534.629699997603893, 257820.954900000244379 ], [ 360538.708099998533726, 257815.499899998307228 ], [ 360544.39360000193119, 257810.691300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033800", "MAP": "A3-77-T49", "PARCEL_NAM": "275", "ACRE": "0.76", "LONGITUDE": -64.92580111, "LATITUDE": 18.34958272, "OBJECTID_1": 4850, "PARCEL_NO_": "102903033800", "Tax_Legal_": "HOSPITAL GROUND 275 GREAT NORTHSIDE QTR", "Name": "SALEM, TAHIEH M", "Address": "1401 4th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.70171987800001, "SHAPE_Area": 2941.5174835600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359361.566699996590614, 257837.195700000971556 ], [ 359335.104900002479553, 257741.933299999684095 ], [ 359334.620300002396107, 257741.89469999819994 ], [ 359328.162600003182888, 257742.686299998313189 ], [ 359320.088699996471405, 257743.886700000613928 ], [ 359311.237199999392033, 257741.703400000929832 ], [ 359307.227200001478195, 257739.13740000128746 ], [ 359336.525700002908707, 257854.718600001186132 ], [ 359353.110399998724461, 257843.15989999845624 ], [ 359361.566699996590614, 257837.195700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703033600", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-34", "ACRE": "0.36", "LONGITUDE": -64.95787211, "LATITUDE": 18.34997911, "OBJECTID_1": 3327, "PARCEL_NO_": "102703033600", "Tax_Legal_": "CONTANT 108A-34 7B S S QTR.", "Name": "GUMBS, DORETH B.", "Address": "PO Box 305992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.062560803, "SHAPE_Area": 1568.9757802399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355928.150399997830391, 257785.152899999171495 ], [ 355917.502899996936321, 257804.486400000751019 ], [ 355933.395400002598763, 257832.058600001037121 ], [ 355953.590999998152256, 257827.791000001132488 ], [ 355984.326200000941753, 257816.854600001126528 ], [ 355985.148699998855591, 257814.961399998515844 ], [ 355985.164800003170967, 257813.061700001358986 ], [ 355965.861900001764297, 257807.204199999570847 ], [ 355948.196800000965595, 257798.404800001531839 ], [ 355928.150399997830391, 257785.152899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9668625, "LATITUDE": 18.3499974, "OBJECTID_1": 2714, "PARCEL_NO_": "102604022600", "Tax_Legal_": "LINDBERG BAY 39H S S QTR", "Name": "BROWN (LIFE ESTATE), DORIS V.", "Address": "PO Box 305156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.578819325, "SHAPE_Area": 1007.15983156 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354978.598700001835823, 257789.738800000399351 ], [ 354981.513400003314018, 257822.929000001400709 ], [ 355006.954999998211861, 257822.998500000685453 ], [ 355009.390100002288818, 257821.118599999696016 ], [ 355010.2162000015378, 257818.803300000727177 ], [ 355009.667000003159046, 257788.612399999052286 ], [ 354978.598700001835823, 257789.738800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033500", "MAP": "D9-7335-T003", "PARCEL_NAM": "272 REM", "ACRE": ".55", "LONGITUDE": -64.92685584, "LATITUDE": 18.34913106, "OBJECTID_1": 4847, "PARCEL_NO_": "102903033500", "Tax_Legal_": "272 REM HOSPITAL GROUND GREAT NORTHSIDE QTR", "Name": "RICHARDSON, BRANDON & MORGAN, LORRAINE", "Address": "PO BOX 304418", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.914833053, "SHAPE_Area": 2236.3556347899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359210.028499998152256, 257774.386900000274181 ], [ 359210.717799998819828, 257774.833999998867512 ], [ 359243.490800000727177, 257783.735300000756979 ], [ 359234.955799996852875, 257703.715500000864267 ], [ 359212.3125, 257711.340599998831749 ], [ 359205.048500001430511, 257712.125500001013279 ], [ 359210.028499998152256, 257774.386900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604027800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96649745000001, "LATITUDE": 18.34997486, "OBJECTID_1": 2760, "PARCEL_NO_": "102604027800", "Tax_Legal_": "LINDBERG BAY 39J S S QTR", "Name": "STUART, EGBERT & LINDA", "Address": "PO Box 304111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21700, "Improved_V": 285800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.21457453400001, "SHAPE_Area": 1055.7961837400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355047.603299997746944, 257784.278900001198053 ], [ 355019.3733000010252, 257785.103300001472235 ], [ 355019.879399999976158, 257820.360100001096725 ], [ 355023.082999996840954, 257822.919399999082088 ], [ 355047.276000000536442, 257822.695199999958277 ], [ 355047.603299997746944, 257784.278900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96623621000001, "LATITUDE": 18.34998806, "OBJECTID_1": 3362, "PARCEL_NO_": "102703042500", "Tax_Legal_": "LINDBERG ABY 39K 4A S S QTR", "Name": "CRANSTON, JOSEPH", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.555503741, "SHAPE_Area": 992.64686855800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355075.764899998903275, 257791.475499998778105 ], [ 355047.603299997746944, 257784.278900001198053 ], [ 355047.276000000536442, 257822.695199999958277 ], [ 355076.306800000369549, 257822.510600000619888 ], [ 355075.764899998903275, 257791.475499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96592462, "LATITUDE": 18.35001531, "OBJECTID_1": 3363, "PARCEL_NO_": "102703042600", "Tax_Legal_": "LINDBERG BAY 38 HD S S QTR", "Name": "CARDIN, SHIRLEY & KELVIN", "Address": "964 Whetstone Pl", "City": "Rockledge", "State": "Florida", "Zip": 32955, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.400014575, "SHAPE_Area": 1034.60379754 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355083.811800003051758, 257793.441199999302626 ], [ 355075.764899998903275, 257791.475499998778105 ], [ 355076.306800000369549, 257822.510600000619888 ], [ 355113.400799997150898, 257822.392099998891354 ], [ 355113.612999998033047, 257797.4847999997437 ], [ 355083.811800003051758, 257793.441199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91713617000001, "LATITUDE": 18.34981319, "OBJECTID_1": 4984, "PARCEL_NO_": "102904017100", "Tax_Legal_": "ST JOSEPH&ROSENDAHL 1-4 GREAT NORTHSIDE QTR", "Name": "VIVOT, JEAN P.", "Address": "9010 Estate Cottage", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 57400, "Improved_V": 1600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.66798290400001, "SHAPE_Area": 3200.0669951300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360289.449600003659725, 257826.125399999320507 ], [ 360265.553300000727177, 257791.521600000560284 ], [ 360249.373099997639656, 257797.721999999135733 ], [ 360229.16499999910593, 257803.467199999839067 ], [ 360218.228000000119209, 257856.784400001168251 ], [ 360247.994999997317791, 257864.838500000536442 ], [ 360250.446299999952316, 257861.058800000697374 ], [ 360256.146200001239777, 257854.561599999666214 ], [ 360274.001999996602535, 257840.986600000411272 ], [ 360289.449600003659725, 257826.125399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96566145, "LATITUDE": 18.34999959, "OBJECTID_1": 3364, "PARCEL_NO_": "102703042700", "Tax_Legal_": "LINDBERG BAY 38G & 38HA S S QTR", "Name": "POTTER, ALFRED", "Address": "BOX 2071-J GEORGE", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.403767184200007, "SHAPE_Area": 446.87924154900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355132.186999998986721, 257794.259300000965595 ], [ 355113.640000000596046, 257794.318599998950958 ], [ 355113.612999998033047, 257797.4847999997437 ], [ 355113.400799997150898, 257822.392099998891354 ], [ 355123.0962999984622, 257820.149399999529123 ], [ 355132.01969999819994, 257813.889600001275539 ], [ 355130.520400002598763, 257800.578400000929832 ], [ 355132.186999998986721, 257794.259300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704060600", "MAP": "A9-407-T92", "PARCEL_NAM": "107-22", "ACRE": null, "LONGITUDE": -64.95636542, "LATITUDE": 18.34991465, "OBJECTID_1": 3652, "PARCEL_NO_": "102704060600", "Tax_Legal_": "107-22 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "SUNSET VIEW ESTATE, LP", "Address": "8000 Nisky Center--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.64258187199999, "SHAPE_Area": 2074.3169171200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356133.488600000739098, 257818.708700001239777 ], [ 356121.753499999642372, 257776.393899999558926 ], [ 356108.042599998414516, 257776.703899998217821 ], [ 356104.835400000214577, 257774.566700000315905 ], [ 356083.617700003087521, 257804.157200001180172 ], [ 356073.843000002205372, 257815.687399998307228 ], [ 356071.364799998700619, 257822.633200000971556 ], [ 356078.564000003039837, 257829.44709999859333 ], [ 356084.20099999755621, 257830.337600000202656 ], [ 356133.488600000739098, 257818.708700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704044300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95380165, "LATITUDE": 18.34990691, "OBJECTID_1": 3579, "PARCEL_NO_": "102704044300", "Tax_Legal_": "LILLIENDAL & MARIENHOJ 6A-8 3 GREAT NORTHSIDE", "Name": "CAPDEVILLE, ANDREW", "Address": "PO Box 6576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29700, "Improved_V": 225400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.66968878899999, "SHAPE_Area": 2220.186216 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356402.062600001692772, 257812.463100001215935 ], [ 356392.660099998116493, 257780.299899999052286 ], [ 356381.346600003540516, 257783.162599999457598 ], [ 356348.242799997329712, 257788.168999999761581 ], [ 356348.718299999833107, 257827.01410000026226 ], [ 356351.94709999859333, 257826.618299998342991 ], [ 356361.633599996566772, 257825.431099999696016 ], [ 356389.824000000953674, 257829.250399999320507 ], [ 356402.732199996709824, 257828.511700000613928 ], [ 356406.774599999189377, 257827.278200000524521 ], [ 356402.062600001692772, 257812.463100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032200", "MAP": "D9-9323-T019", "PARCEL_NAM": "4G-1B-1", "ACRE": "0.23", "LONGITUDE": -64.91047433, "LATITUDE": 18.34962594, "OBJECTID_1": 5818, "PARCEL_NO_": "103003032200", "Tax_Legal_": "4G-1B ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "GIRAUD, VICTOR", "Address": "PO Box 304221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.57736875399999, "SHAPE_Area": 1104.7580715399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360971.221400000154972, 257817.037999998778105 ], [ 360973.526299998164177, 257793.727400001138449 ], [ 360967.101700000464916, 257795.065900001674891 ], [ 360945.253200002014637, 257799.61769999936223 ], [ 360940.406300000846386, 257800.633499998599291 ], [ 360935.559399999678135, 257801.649300001561642 ], [ 360940.934500001370907, 257833.360800001770258 ], [ 360970.206799998879433, 257827.299400001764297 ], [ 360971.221400000154972, 257817.037999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92856501, "LATITUDE": 18.34981229, "OBJECTID_1": 4771, "PARCEL_NO_": "102903015600", "Tax_Legal_": "HOSPITAL GROUND 400D-4 GR NORTHSIDE", "Name": "POLE, HENVILLE", "Address": "PO Box 8776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 83400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.067139572, "SHAPE_Area": 1676.62730124 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359023.722499996423721, 257794.234499998390675 ], [ 359026.546700000762939, 257841.331500001251698 ], [ 359027.28830000013113, 257848.936900001019239 ], [ 359029.732400000095367, 257846.001600001007318 ], [ 359034.60080000013113, 257842.452899999916553 ], [ 359041.078299999237061, 257839.339499998837709 ], [ 359046.733300000429153, 257838.119199998676777 ], [ 359058.0253000035882, 257837.78940000012517 ], [ 359065.267700001597404, 257839.537500001490116 ], [ 359059.967000000178814, 257799.175200000405312 ], [ 359051.120899997651577, 257796.358600001782179 ], [ 359035.824299998581409, 257793.489199999719858 ], [ 359023.722499996423721, 257794.234499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704044400", "MAP": "B9-145-T66", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95326815, "LATITUDE": 18.34988594, "OBJECTID_1": 3580, "PARCEL_NO_": "102704044400", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-9 LITTLE NORTHSIDE QTR", "Name": "MCDOWELL, AVA", "Address": "707 Driver Ln", "City": "Kissimmee", "State": "Florida", "Zip": 34759, "Country": "United States", "Land_Value": 41500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.93683588600001, "SHAPE_Area": 1062.5187784899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356461.013300001621246, 257802.390900000929832 ], [ 356453.124600000679493, 257781.85020000115037 ], [ 356402.062600001692772, 257812.463100001215935 ], [ 356406.774599999189377, 257827.278200000524521 ], [ 356410.81870000064373, 257825.833599999547005 ], [ 356444.0304000005126, 257808.162500001490116 ], [ 356461.013300001621246, 257802.390900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93191032, "LATITUDE": 18.34980305, "OBJECTID_1": 4796, "PARCEL_NO_": "102903021600", "Tax_Legal_": "MAFOLIE 23-19 8F GR NORTHSIDE", "Name": "SCHENCK, SCOTT T. & CAROL B", "Address": "PO Box 9137", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 171500, "Improved_V": 345800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.00547305699999, "SHAPE_Area": 2713.36209775 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358723.412799999117851, 257834.206399999558926 ], [ 358715.806400001049042, 257780.526399999856949 ], [ 358649.42620000243187, 257810.802799999713898 ], [ 358661.229599997401237, 257845.096500001847744 ], [ 358667.721500001847744, 257840.29450000077486 ], [ 358675.008900001645088, 257836.765599999576807 ], [ 358681.484499998390675, 257833.863299999386072 ], [ 358689.561999998986721, 257832.240600001066923 ], [ 358704.082900002598763, 257831.515099998563528 ], [ 358723.412799999117851, 257834.206399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033400", "MAP": "G9-38-T48", "PARCEL_NAM": "271", "ACRE": null, "LONGITUDE": -64.92710063, "LATITUDE": 18.34940722, "OBJECTID_1": 4846, "PARCEL_NO_": "102903033400", "Tax_Legal_": "HOSPITAL GROUND 271 GREAT NORTHSIDE QTR", "Name": "VANTERPOOL, ERNESTO T., CHARLENE L. & ERNESTO C. (TRUSTEES)", "Address": "PO Box 9305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 133200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.78654732400003, "SHAPE_Area": 3333.0008408799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359178.549900002777576, 257699.032000001519918 ], [ 359193.440800003707409, 257844.17509999871254 ], [ 359215.979800000786781, 257848.792500000447035 ], [ 359205.048500001430511, 257712.125500001013279 ], [ 359200.2195999994874, 257711.030499998480082 ], [ 359191.398800000548363, 257705.258799999952316 ], [ 359178.549900002777576, 257699.032000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904022500", "MAP": "F9-1970-T67", "PARCEL_NAM": "406-1C", "ACRE": ".37", "LONGITUDE": -64.92296184, "LATITUDE": 18.34984522, "OBJECTID_1": 5042, "PARCEL_NO_": "102904022500", "Tax_Legal_": "HOSPITAL GROUND REM 406-1C NEW QTR", "Name": "RIVERS, VERNA & CLIVE", "Address": "PO Box 308473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46300, "Improved_V": 304800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.22436165, "SHAPE_Area": 1431.6138651700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359646.195699997246265, 257799.329199999570847 ], [ 359602.444399997591972, 257823.668999999761581 ], [ 359616.090599998831749, 257830.957899998873472 ], [ 359630.496299996972084, 257843.741399999707937 ], [ 359638.487499997019768, 257852.250599998980761 ], [ 359656.292900003492832, 257844.585799999535084 ], [ 359646.195699997246265, 257799.329199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904018000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91758104, "LATITUDE": 18.34987616, "OBJECTID_1": 4992, "PARCEL_NO_": "102904018000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1F GREAT NORTHSIDE QTR", "Name": "CONCEPCION, PRISCILLA", "Address": "PO Box 556", "City": "Fajardo", "State": "Puerto Rico", "Zip": 738, "Country": "United States", "Land_Value": 16100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.99107945, "SHAPE_Area": 1670.3308841200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360229.16499999910593, 257803.467199999839067 ], [ 360204.8766999989748, 257814.878600001335144 ], [ 360191.083099998533726, 257824.898200001567602 ], [ 360180.514700002968311, 257834.944200001657009 ], [ 360168.287000000476837, 257850.464999999850988 ], [ 360179.564499996602535, 257851.823899999260902 ], [ 360218.228000000119209, 257856.784400001168251 ], [ 360229.16499999910593, 257803.467199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92900394, "LATITUDE": 18.34983877, "OBJECTID_1": 4806, "PARCEL_NO_": "102903022600", "Tax_Legal_": "MAFOLIE 23-30 GR NORTHSIDE", "Name": "ROBERT M FASSOLA ST THOMAS REVOCABLE TRUST", "Address": "6309 SURREY RIDGE ROAD", "City": "Lisle", "State": "Illinois", "Zip": 605323247, "Country": "United States", "Land_Value": 97000, "Improved_V": 337000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.53700406300001, "SHAPE_Area": 2547.6648741399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359023.722499996423721, 257794.234499998390675 ], [ 359009.162100002169609, 257799.603799998760223 ], [ 358994.630500003695488, 257801.595800001174212 ], [ 358980.127599999308586, 257800.210499998182058 ], [ 358962.435500003397465, 257794.577300000935793 ], [ 358972.516599997878075, 257841.73369999974966 ], [ 358983.774400003254414, 257845.41440000012517 ], [ 359026.546700000762939, 257841.331500001251698 ], [ 359023.722499996423721, 257794.234499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704060900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9567979, "LATITUDE": 18.34973402, "OBJECTID_1": 3654, "PARCEL_NO_": "102704060900", "Tax_Legal_": "107-25 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "FARRINGTON, THELMA & WILLIAMS, CLEGHORN", "Address": "PO Box 307125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.473893812, "SHAPE_Area": 2748.8486754099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356099.252300001680851, 257767.343800000846386 ], [ 356103.319799996912479, 257763.155200000852346 ], [ 356111.476499997079372, 257752.245099999010563 ], [ 356108.265600003302097, 257750.530099999159575 ], [ 356092.91330000013113, 257754.204100001603365 ], [ 356015.22860000282526, 257786.287799999117851 ], [ 356023.145999997854233, 257803.451200000941753 ], [ 356030.269799999892712, 257819.130399998277426 ], [ 356074.782399997115135, 257800.074099998921156 ], [ 356088.671300001442432, 257778.867400001734495 ], [ 356099.252300001680851, 257767.343800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703032500", "MAP": "A9-83-T68", "PARCEL_NAM": "108-A-11", "ACRE": "0.35", "LONGITUDE": -64.95956138, "LATITUDE": 18.34978739, "OBJECTID_1": 3316, "PARCEL_NO_": "102703032500", "Tax_Legal_": "108-A-11 CONTANT 7B SOUTHSIDE QTR.", "Name": "KANUSING, KISHORE & RITA", "Address": "108-A-11 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36700, "Improved_V": 645300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.084651622, "SHAPE_Area": 1651.4365738700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355796.683700002729893, 257788.509899999946356 ], [ 355759.821699999272823, 257761.399300001561642 ], [ 355737.021999999880791, 257787.388300001621246 ], [ 355772.255199998617172, 257816.385400000959635 ], [ 355789.342399999499321, 257798.371199999004602 ], [ 355796.683700002729893, 257788.509899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704060700", "MAP": "A9-407-T92", "PARCEL_NAM": "107-23", "ACRE": null, "LONGITUDE": -64.95592075, "LATITUDE": 18.34981203, "OBJECTID_1": 3653, "PARCEL_NO_": "102704060700", "Tax_Legal_": "107-23 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "BRUNT FAMILY LIMITED PARTNERSHIP", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.47888242600001, "SHAPE_Area": 1972.1083517100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356178.215199999511242, 257774.534000001847744 ], [ 356121.753499999642372, 257776.393899999558926 ], [ 356133.488600000739098, 257818.708700001239777 ], [ 356156.920199997723103, 257813.200899999588728 ], [ 356168.197800002992153, 257814.559799998998642 ], [ 356173.795199997723103, 257820.094000000506639 ], [ 356178.215199999511242, 257774.534000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93102062, "LATITUDE": 18.34977771, "OBJECTID_1": 4800, "PARCEL_NO_": "102903022000", "Tax_Legal_": "23-21 REM.& 23-20A MAFOLIE NO 8F GREAT NORTHSIDE QTR", "Name": "SAMMY, KRISTOPHER & GARFALANE", "Address": "PO Box 865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 100300, "Improved_V": 446800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.292808869, "SHAPE_Area": 2574.64583498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358803.647699996829033, 257786.733800001442432 ], [ 358756.917499996721745, 257782.129399999976158 ], [ 358763.685199998319149, 257839.602299999445677 ], [ 358791.0962999984622, 257840.248799998313189 ], [ 358810.460400000214577, 257838.929699998348951 ], [ 358803.647699996829033, 257786.733800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92953109, "LATITUDE": 18.34973615, "OBJECTID_1": 4805, "PARCEL_NO_": "102903022500", "Tax_Legal_": "MAFOLIE 23-29 GR NORTHSIDE", "Name": "MATTHEWS, LEROY", "Address": "4773 Don Miguel Dr", "City": "Los Angeles", "State": "California", "Zip": 90008, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.861172799, "SHAPE_Area": 2468.6865457099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358913.432099997997284, 257772.855799999088049 ], [ 358919.398900002241135, 257829.688799999654293 ], [ 358929.875500001013279, 257830.407800000160933 ], [ 358944.369400002062321, 257832.848499998450279 ], [ 358972.516599997878075, 257841.73369999974966 ], [ 358962.435500003397465, 257794.577300000935793 ], [ 358956.002999998629093, 257792.413699999451637 ], [ 358927.906099997460842, 257777.618299998342991 ], [ 358913.432099997997284, 257772.855799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93142886, "LATITUDE": 18.34974686, "OBJECTID_1": 4798, "PARCEL_NO_": "102903021800", "Tax_Legal_": "MAFOLIE 23-20 REM.& 23-21A No.8f GREAT NORTHSIDE QTR.", "Name": "IAN THOMAS", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 102500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.177565198, "SHAPE_Area": 2284.0940327100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358756.917499996721745, 257782.129399999976158 ], [ 358756.937299996614456, 257779.807599999010563 ], [ 358715.806400001049042, 257780.526399999856949 ], [ 358723.412799999117851, 257834.206399999558926 ], [ 358763.685199998319149, 257839.602299999445677 ], [ 358756.917499996721745, 257782.129399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704047600", "MAP": "F9-3502-T77", "PARCEL_NAM": "6A-2-2", "ACRE": null, "LONGITUDE": -64.95187698, "LATITUDE": 18.34954348, "OBJECTID_1": 3607, "PARCEL_NO_": "102704047600", "Tax_Legal_": "6A-2-2 LILLIENDAHL & MARIENHOJ GREAT NORTHSIDE", "Name": "BROWNE, SYDNEE H", "Address": "48 Market Sq", "City": "Newnan", "State": "Georgia", "Zip": 30265, "Country": "United States", "Land_Value": 42600, "Improved_V": 168800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.27027370799999, "SHAPE_Area": 1441.601148 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356602.210199996829033, 257792.715799998492002 ], [ 356602.261799998581409, 257786.659400001168251 ], [ 356601.525600001215935, 257778.420800000429153 ], [ 356599.997500002384186, 257768.486900001764297 ], [ 356598.424500003457069, 257763.829900000244379 ], [ 356595.242399998009205, 257758.73759999871254 ], [ 356588.838600002229214, 257753.196800000965595 ], [ 356582.409699998795986, 257750.611099999397993 ], [ 356555.020199999213219, 257747.431600000709295 ], [ 356549.995399996638298, 257769.344200000166893 ], [ 356574.933499999344349, 257776.303300000727177 ], [ 356594.951099999248981, 257792.932399999350309 ], [ 356596.899300001561642, 257807.602400001138449 ], [ 356602.210199996829033, 257792.715799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033900", "MAP": "A3-77-T49", "PARCEL_NAM": "276", "ACRE": "0.54", "LONGITUDE": -64.92552166, "LATITUDE": 18.34951434, "OBJECTID_1": 4851, "PARCEL_NO_": "102903033900", "Tax_Legal_": "HOSPITAL GROUND 276 GREAT NORTHSIDE QTR", "Name": "FERDINAND, STANLEY", "Address": "18 Nymph Rd", "City": "West Orange", "State": "New Jersey", "Zip": 7052, "Country": "United States", "Land_Value": 66100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.249845021, "SHAPE_Area": 2880.13611042 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359343.484300002455711, 257742.600600000470877 ], [ 359335.104900002479553, 257741.933299999684095 ], [ 359361.566699996590614, 257837.195700000971556 ], [ 359378.25900000333786, 257825.422800000756979 ], [ 359393.818300001323223, 257814.483500000089407 ], [ 359375.485299997031689, 257758.8412000015378 ], [ 359357.143100000917912, 257748.411899998784065 ], [ 359343.484300002455711, 257742.600600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93046155, "LATITUDE": 18.34981178, "OBJECTID_1": 4802, "PARCEL_NO_": "102903022200", "Tax_Legal_": "23-22 ESTATE MAFOLIE No.8 GREAT NORTHSIDE QTR.", "Name": "JOWERS, JOHN & DOLORES V. G. , CO-TR", "Address": "PO Box 103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 115900, "Improved_V": 384600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.180812554, "SHAPE_Area": 3097.6886722999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358810.460400000214577, 257838.929699998348951 ], [ 358836.280299998819828, 257837.030000001192093 ], [ 358870.975199997425079, 257834.56980000063777 ], [ 358894.392399996519089, 257830.750700000673532 ], [ 358909.723099999129772, 257829.609600000083447 ], [ 358842.278800003230572, 257795.493700001388788 ], [ 358830.234399996697903, 257789.484499998390675 ], [ 358803.647699996829033, 257786.733800001442432 ], [ 358810.460400000214577, 257838.929699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904021900", "MAP": "G9-1553-T70", "PARCEL_NAM": "407A-3", "ACRE": ".32", "LONGITUDE": -64.92186864, "LATITUDE": 18.34953242, "OBJECTID_1": 5026, "PARCEL_NO_": "102904021900", "Tax_Legal_": "407-2&407A-3 HOSPITAL GROUND NEW QTR", "Name": "OTTLEY, MELVIN L.", "Address": "1320 Calvin Dr", "City": "Washington", "State": "Illinois", "Zip": 61571, "Country": "United States", "Land_Value": 67900, "Improved_V": 490600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.427459228, "SHAPE_Area": 2176.69676132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359777.136600002646446, 257763.037300001829863 ], [ 359727.089500002563, 257769.171599999070168 ], [ 359738.727399997413158, 257822.88459999859333 ], [ 359744.171999998390675, 257846.360500000417233 ], [ 359778.688100002706051, 257770.227200001478195 ], [ 359777.136600002646446, 257763.037300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033100", "MAP": "G9-732-T64", "PARCEL_NAM": "269A", "ACRE": "0.26", "LONGITUDE": -64.92751086, "LATITUDE": 18.34979184, "OBJECTID_1": 4843, "PARCEL_NO_": "102903033100", "Tax_Legal_": "HOSPITAL GROUND 269A GR NORTHSIDE QTR", "Name": "DESMOND MAYNARD & JAMES SMITHEEN", "Address": "PO Box 307434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037434, "Country": "United States", "Land_Value": 40000, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.17057615, "SHAPE_Area": 1296.5924900299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359162.187600001692772, 257795.701499998569489 ], [ 359137.510799996554852, 257792.693300001323223 ], [ 359141.379399999976158, 257835.611099999397993 ], [ 359157.993600003421307, 257840.296399999409914 ], [ 359165.252999998629093, 257841.087400000542402 ], [ 359168.466700002551079, 257841.437600001692772 ], [ 359170.333599999547005, 257841.642200000584126 ], [ 359167.292000003159046, 257796.345100000500679 ], [ 359162.187600001692772, 257795.701499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003024200", "MAP": "G9-2165-T72", "PARCEL_NAM": "1-2B", "ACRE": "0.67", "LONGITUDE": -64.91582598, "LATITUDE": 18.34968364, "OBJECTID_1": 5758, "PARCEL_NO_": "103003024200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1 2B GREAT NORTHSIDE QTR", "Name": "TODMAN, RAYMOND R", "Address": "PO Box 307035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.150123799, "SHAPE_Area": 2413.4547177200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360395.445200003683567, 257783.718800000846386 ], [ 360388.233300000429153, 257778.382399998605251 ], [ 360368.572499997913837, 257814.529599998146296 ], [ 360349.201300002634525, 257816.69310000166297 ], [ 360383.593999996781349, 257849.694099999964237 ], [ 360390.085799999535084, 257844.892000000923872 ], [ 360405.531599998474121, 257830.241900000721216 ], [ 360417.771999999880791, 257813.243500001728535 ], [ 360422.6925999969244, 257803.573499999940395 ], [ 360395.445200003683567, 257783.718800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043500", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-33", "ACRE": "0.46", "LONGITUDE": -64.95758365, "LATITUDE": 18.34959062, "OBJECTID_1": 3573, "PARCEL_NO_": "102704043500", "Tax_Legal_": "CONTANT 108A-33 7B SOUTHSIDE QTR", "Name": "THOMPSON, JOHN D. & DEBRA A.", "Address": "PO Box 10879", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53300, "Improved_V": 213600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.54012903900002, "SHAPE_Area": 4847.6793159299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356000.1891999989748, 257753.234099999070168 ], [ 355989.903099998831749, 257730.140700001269579 ], [ 355943.993600003421307, 257723.854400001466274 ], [ 355938.641500003635883, 257784.183299999684095 ], [ 355961.902300000190735, 257798.728100001811981 ], [ 355972.346600003540516, 257803.246500000357628 ], [ 355996.49099999666214, 257808.721500001847744 ], [ 355998.89190000295639, 257810.852099999785423 ], [ 356023.145999997854233, 257803.451200000941753 ], [ 356015.22860000282526, 257786.287799999117851 ], [ 356012.064499996602535, 257779.084699999541044 ], [ 356000.1891999989748, 257753.234099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804024100", "MAP": "D9-315-T64", "PARCEL_NAM": "118", "ACRE": null, "LONGITUDE": -64.93711706000001, "LATITUDE": 18.34920525, "OBJECTID_1": 4545, "PARCEL_NO_": "102804024100", "Tax_Legal_": "118 AGNES FANCY NO.8h GREAT NORTHSIDE QTR", "Name": "COMISSIONG, TRUSTEE, TINA", "Address": "PO Box 306813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 495500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 924.80383479600005, "SHAPE_Area": 19753.493081000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358190.959200002253056, 257674.272599998861551 ], [ 358182.851099997758865, 257679.483600001782179 ], [ 358166.967600002884865, 257650.855900000780821 ], [ 358163.728000000119209, 257652.518199998885393 ], [ 358179.609700001776218, 257681.356899999082088 ], [ 358162.579999998211861, 257692.616599999368191 ], [ 358136.628799997270107, 257709.924899999052286 ], [ 358109.867600001394749, 257727.648899998515844 ], [ 358089.216399997472763, 257690.749600000679493 ], [ 358080.300200000405312, 257696.16499999910593 ], [ 358075.435300000011921, 257699.291600000113249 ], [ 358073.799300000071526, 257702.022399999201298 ], [ 358059.154399998486042, 257717.312399998307228 ], [ 358055.068899996578693, 257723.611800000071526 ], [ 358053.445500001311302, 257724.864999998360872 ], [ 358044.421400003135204, 257742.945199999958277 ], [ 358041.156599998474121, 257747.562600001692772 ], [ 358029.625500001013279, 257775.965799998492002 ], [ 358095.291799999773502, 257829.487700000405312 ], [ 358165.707099996507168, 257798.822200000286102 ], [ 358171.399800002574921, 257793.169300001114607 ], [ 358190.91499999910593, 257774.119500000029802 ], [ 358208.005800001323223, 257755.683100000023842 ], [ 358221.048799999058247, 257739.113499999046326 ], [ 358233.298100002110004, 257721.05970000103116 ], [ 358256.979699999094009, 257686.212000001221895 ], [ 358240.785099998116493, 257694.100999999791384 ], [ 358222.49889999628067, 257663.553899999707937 ], [ 358239.514200001955032, 257653.982799999415874 ], [ 358272.027400001883507, 257623.640399999916553 ], [ 358267.216499999165535, 257620.434599999338388 ], [ 358237.94650000333786, 257648.692699998617172 ], [ 358215.583700001239777, 257623.389499999582767 ], [ 358209.09009999781847, 257628.40260000154376 ], [ 358226.586199998855591, 257657.043400000780821 ], [ 358207.969099998474121, 257665.334800001233816 ], [ 358201.299199998378754, 257691.033599998801947 ], [ 358190.959200002253056, 257674.272599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703032900", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-26", "ACRE": "0.42", "LONGITUDE": -64.95893067, "LATITUDE": 18.34972175, "OBJECTID_1": 3320, "PARCEL_NO_": "102703032900", "Tax_Legal_": "CONTANT 108A-26 7B S S QTR", "Name": "SMITH, SHERIDAN", "Address": "P.O. BOX 5462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39600, "Improved_V": 336400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.336848965, "SHAPE_Area": 1538.41815434 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355857.115800000727177, 257793.859700001776218 ], [ 355835.708599999547005, 257751.043600000441074 ], [ 355833.284299999475479, 257751.657000001519918 ], [ 355828.428400002419949, 257753.728199999779463 ], [ 355825.989699997007847, 257756.030299998819828 ], [ 355817.806100003421307, 257770.106499999761581 ], [ 355807.200000002980232, 257784.585200000554323 ], [ 355842.45830000191927, 257810.627199999988079 ], [ 355857.115800000727177, 257793.859700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025200", "MAP": "D9-5455-T93", "PARCEL_NAM": "2-12A", "ACRE": ".413", "LONGITUDE": -64.91508912, "LATITUDE": 18.34974492, "OBJECTID_1": 5768, "PARCEL_NO_": "103003025200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-12 GREAT NORTHSIDE QTR", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89000, "Improved_V": 499500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.340317107, "SHAPE_Area": 1047.53764841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360476.744300000369549, 257800.638399999588728 ], [ 360471.446099996566772, 257797.107900001108646 ], [ 360444.4966000020504, 257831.556000001728535 ], [ 360448.237400002777576, 257833.968899998813868 ], [ 360468.285499997437, 257847.009700000286102 ], [ 360479.741200000047684, 257827.471799999475479 ], [ 360485.561599999666214, 257806.832299999892712 ], [ 360476.744300000369549, 257800.638399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704041300", "MAP": "D9-7141-T002", "PARCEL_NAM": "6A-10B", "ACRE": ".25", "LONGITUDE": -64.95291305000001, "LATITUDE": 18.34945694, "OBJECTID_1": 3554, "PARCEL_NO_": "102704041300", "Tax_Legal_": "6A-10B EST.LILLIENDAHL&MARIENHOJ 3 LITTLE NORTHSIDE QTR", "Name": "RUBAINE, SELMA", "Address": "PO Box 10493", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 404700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.52227646099999, "SHAPE_Area": 1315.0006007500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356485.393399998545647, 257774.176399998366833 ], [ 356487.700000002980232, 257734.638900000602007 ], [ 356479.324000000953674, 257735.412999998778105 ], [ 356465.582500003278255, 257739.311299998313189 ], [ 356451.842699997127056, 257746.445999998599291 ], [ 356453.124600000679493, 257781.85020000115037 ], [ 356455.556100003421307, 257780.392499998211861 ], [ 356485.393399998545647, 257774.176399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704047800", "MAP": "D9-3947-T87", "PARCEL_NAM": "6A-12A-A", "ACRE": ".005", "LONGITUDE": -64.95222023, "LATITUDE": 18.34974801, "OBJECTID_1": 3609, "PARCEL_NO_": "102704047800", "Tax_Legal_": "6A-12-1&6A-12-A-A LILLIENDAHL LILLIENDAHL&MARIHOJ", "Name": "MORNING GLORY TRUST", "Address": "PO Box 304753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22300, "Improved_V": 164300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.85533025000001, "SHAPE_Area": 237.44002886000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356555.020199999213219, 257747.431600000709295 ], [ 356533.518500000238419, 257810.372600000351667 ], [ 356539.940200001001358, 257813.802600000053644 ], [ 356549.995399996638298, 257769.344200000166893 ], [ 356555.020199999213219, 257747.431600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96462464, "LATITUDE": 18.34978613, "OBJECTID_1": 3366, "PARCEL_NO_": "102703042900", "Tax_Legal_": "LINDBERG BAY 36D SOUTHSIDE QTR", "Name": "REY (LIFE ESTATE), PHYLLIS", "Address": "PO BOX 3030798", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19000, "Improved_V": 260700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.676495926, "SHAPE_Area": 1324.0417989699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355208.998800002038479, 257769.978900000452995 ], [ 355212.834399998188019, 257793.019499998539686 ], [ 355214.3733000010252, 257801.686900001019239 ], [ 355253.096100002527237, 257799.681800000369549 ], [ 355251.749600000679493, 257768.429000001400709 ], [ 355210.625799998641014, 257768.30350000038743 ], [ 355208.998800002038479, 257769.978900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704046100", "MAP": "D9-3947-T87", "PARCEL_NAM": "6A-12-2", "ACRE": ".32", "LONGITUDE": -64.95238857, "LATITUDE": 18.3497047, "OBJECTID_1": 3596, "PARCEL_NO_": "102704046100", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-12&12 LITTLE NORTHSIDE QTR", "Name": "MOOLENAAR, GWEN MARIE", "Address": "2557 Winding Branch Trl", "City": "Apex", "State": "North Carolina", "Zip": 27523, "Country": "United States", "Land_Value": 49700, "Improved_V": 311500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.71236179, "SHAPE_Area": 1258.2873288599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356546.052100002765656, 257773.683499999344349 ], [ 356513.446299999952316, 257760.290600001811981 ], [ 356512.102300003170967, 257768.611900001764297 ], [ 356506.983900003135204, 257801.500599998980761 ], [ 356533.518500000238419, 257810.372600000351667 ], [ 356546.052100002765656, 257773.683499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96424631, "LATITUDE": 18.3496534, "OBJECTID_1": 3367, "PARCEL_NO_": "102703043000", "Tax_Legal_": "36E ESTATE LINDBERG BAY 4A SOUTHSIDE QTR.", "Name": "BARBER, LINDQUIST, PETERSEN, PENA", "Address": "PO Box 307488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037488, "Country": "United States", "Land_Value": 38100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.31742183399999, "SHAPE_Area": 2287.0750125499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355290.69709999859333, 257740.039000000804663 ], [ 355251.166199997067451, 257742.248599998652935 ], [ 355251.749600000679493, 257768.429000001400709 ], [ 355253.096100002527237, 257799.681800000369549 ], [ 355292.625200003385544, 257797.683299999684095 ], [ 355290.69709999859333, 257740.039000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92992132000001, "LATITUDE": 18.34962665, "OBJECTID_1": 4804, "PARCEL_NO_": "102903022400", "Tax_Legal_": "23-28 ESTATE MAFOLIE GREAT NORTHSIDE QTR.", "Name": "EDWARDS, PHILBERT & MEDORA", "Address": "1408 4th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 99200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.994073203, "SHAPE_Area": 1689.99179559 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358881.210100002586842, 257769.003499999642372 ], [ 358880.861299999058247, 257809.952799998223782 ], [ 358919.398900002241135, 257829.688799999654293 ], [ 358913.432099997997284, 257772.855799999088049 ], [ 358908.603200003504753, 257771.760800000280142 ], [ 358887.646300002932549, 257770.744899999350309 ], [ 358881.210100002586842, 257769.003499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703033500", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-28", "ACRE": "0.28", "LONGITUDE": -64.95830226, "LATITUDE": 18.34972387, "OBJECTID_1": 3326, "PARCEL_NO_": "102703033500", "Tax_Legal_": "CONTANT 108A-28 7B S S QTR", "Name": "GUMBS, DORETH & DELVA", "Address": "PO Box 305992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26400, "Improved_V": 321600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.17881910700001, "SHAPE_Area": 1449.9135685799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355880.856700003147125, 257752.046399999409914 ], [ 355882.077299997210503, 257798.074700001627207 ], [ 355917.502899996936321, 257804.486400000751019 ], [ 355928.150399997830391, 257785.152899999171495 ], [ 355905.699600003659725, 257770.192600000649691 ], [ 355884.879299998283386, 257753.134700000286102 ], [ 355880.856700003147125, 257752.046399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9657603, "LATITUDE": 18.34978613, "OBJECTID_1": 3369, "PARCEL_NO_": "102703043200", "Tax_Legal_": "LINDBERG BAY 38HE SOUTHSIDE QTR", "Name": "BROOKS, MARIO M", "Address": "PO BOX 9253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19900, "Improved_V": 341400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.21372581, "SHAPE_Area": 1215.3686730100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355085.625799998641014, 257769.813499998301268 ], [ 355083.811800003051758, 257793.441199999302626 ], [ 355113.612999998033047, 257797.4847999997437 ], [ 355113.640000000596046, 257794.318599998950958 ], [ 355132.186999998986721, 257794.259300000965595 ], [ 355135.464400000870228, 257788.16440000012517 ], [ 355148.518200002610683, 257770.328299999237061 ], [ 355116.222499996423721, 257775.130199998617172 ], [ 355085.625799998641014, 257769.813499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96510747000001, "LATITUDE": 18.34976469, "OBJECTID_1": 3365, "PARCEL_NO_": "102703042800", "Tax_Legal_": "LINDBERG BAY 37H S S QTR", "Name": "FREDERICKS, G.,G. GARNER,G. VARLACK & G. SPRAUVE", "Address": "3201 Southgreen Rd", "City": "Windsor Mill", "State": "Maryland", "Zip": 21244, "Country": "United States", "Land_Value": 54500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.53153946200001, "SHAPE_Area": 1047.9994286799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355212.225500002503395, 257789.362100001424551 ], [ 355208.998800002038479, 257769.978900000452995 ], [ 355207.371799997985363, 257771.65430000051856 ], [ 355200.901500001549721, 257773.92339999973774 ], [ 355196.868199996650219, 257774.101500000804663 ], [ 355173.519299998879433, 257769.899599999189377 ], [ 355161.401199996471405, 257772.544599998742342 ], [ 355156.536399997770786, 257775.67119999974966 ], [ 355145.354000002145767, 257790.850999999791384 ], [ 355212.225500002503395, 257789.362100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032600", "MAP": "F9-825-T61", "PARCEL_NAM": "REM 267", "ACRE": "0.63", "LONGITUDE": -64.92810423, "LATITUDE": 18.34932617, "OBJECTID_1": 4838, "PARCEL_NO_": "102903032600", "Tax_Legal_": "HOSPITAL GROUND 267 GREAT NORTHSIDE QTR", "Name": "SALEM, ZUHDI", "Address": "PO Box 9951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.67072783399999, "SHAPE_Area": 2512.0838220700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359103.581799998879433, 257729.880300000309944 ], [ 359078.92059999704361, 257717.500599998980761 ], [ 359071.890500001609325, 257713.971599999815226 ], [ 359081.002099998295307, 257798.412200000137091 ], [ 359088.967200003564358, 257802.578999999910593 ], [ 359105.78830000013113, 257815.804400000721216 ], [ 359110.978500001132488, 257819.874200001358986 ], [ 359103.581799998879433, 257729.880300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96620051, "LATITUDE": 18.34972013, "OBJECTID_1": 3368, "PARCEL_NO_": "102703043100", "Tax_Legal_": "LINDBERG BAY 38 HF S S QTR", "Name": "DOOBAY, PATRANI", "Address": "PO Box 6005", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.32269097, "SHAPE_Area": 955.45820630599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355047.885600000619888, 257751.139499999582767 ], [ 355047.603299997746944, 257784.278900001198053 ], [ 355075.764899998903275, 257791.475499998778105 ], [ 355083.811800003051758, 257793.441199999302626 ], [ 355085.625799998641014, 257769.813499998301268 ], [ 355075.964500002563, 257768.045699998736382 ], [ 355065.511200003325939, 257764.582699999213219 ], [ 355054.2820999994874, 257757.524700000882149 ], [ 355047.885600000619888, 257751.139499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703033700", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-27", "ACRE": "0.40", "LONGITUDE": -64.95864916, "LATITUDE": 18.34962066, "OBJECTID_1": 3328, "PARCEL_NO_": "102703033700", "Tax_Legal_": "CONTANT 108A-27 7B S S QTR", "Name": "GUMBS, DORETH B.", "Address": "PO Box 305992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.630418029, "SHAPE_Area": 1562.1626130300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355857.115800000727177, 257793.859700001776218 ], [ 355873.220499999821186, 257796.524599999189377 ], [ 355882.077299997210503, 257798.074700001627207 ], [ 355880.856700003147125, 257752.046399999409914 ], [ 355841.36540000140667, 257749.612199999392033 ], [ 355835.708599999547005, 257751.043600000441074 ], [ 355857.115800000727177, 257793.859700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96688469, "LATITUDE": 18.34971314, "OBJECTID_1": 2715, "PARCEL_NO_": "102604022700", "Tax_Legal_": "LINDBERG BAY 39L S S QTR", "Name": "JOSEPH, ZURAH & TIFFANY L KUNTZ", "Address": "PO Box 9004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 186500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.33474885300001, "SHAPE_Area": 925.60836511900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354975.989399999380112, 257760.025699999183416 ], [ 354978.598700001835823, 257789.738800000399351 ], [ 355009.667000003159046, 257788.612399999052286 ], [ 355009.798299998044968, 257773.203699998557568 ], [ 355003.351400002837181, 257772.728700000792742 ], [ 355003.401699997484684, 257766.818500000983477 ], [ 355009.859399996697903, 257766.026999998837709 ], [ 355009.92059999704361, 257758.850299999117851 ], [ 354975.989399999380112, 257760.025699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704045100", "MAP": "B9-145-T66", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95276908, "LATITUDE": 18.3497172, "OBJECTID_1": 3586, "PARCEL_NO_": "102704045100", "Tax_Legal_": "LILLIENDAHL 6A 11 LITTLE NORTHSIDE QTR", "Name": "PENN, JULIAN & ESTELLA", "Address": "PO Box 7206", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41500, "Improved_V": 461700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.373008247, "SHAPE_Area": 1352.89265869 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356512.102300003170967, 257768.611900001764297 ], [ 356455.556100003421307, 257780.392499998211861 ], [ 356453.124600000679493, 257781.85020000115037 ], [ 356461.013300001621246, 257802.390900000929832 ], [ 356475.552100002765656, 257799.55460000038147 ], [ 356491.685500003397465, 257798.842199999839067 ], [ 356506.983900003135204, 257801.500599998980761 ], [ 356512.102300003170967, 257768.611900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903034000", "MAP": "A3-77-T49", "PARCEL_NAM": "277", "ACRE": "0.46", "LONGITUDE": -64.92518052, "LATITUDE": 18.34942633, "OBJECTID_1": 4852, "PARCEL_NO_": "102903034000", "Tax_Legal_": "HOSPITAL GROUND 277 GREAT NORTHSIDE QTR", "Name": "FERDINAND, STANLEY", "Address": "18 Nymph Rd", "City": "West Orange", "State": "New Jersey", "Zip": 7052, "Country": "United States", "Land_Value": 57600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.845241566, "SHAPE_Area": 1923.6062017700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359425.050899997353554, 257792.540800001472235 ], [ 359405.839299999177456, 257737.704799998551607 ], [ 359398.245200000703335, 257751.070300001651049 ], [ 359393.367799997329712, 257755.674499999731779 ], [ 359388.502999998629093, 257758.800999999046326 ], [ 359382.851599998772144, 257759.599199999123812 ], [ 359375.600199997425079, 257758.906500000506639 ], [ 359375.485299997031689, 257758.8412000015378 ], [ 359393.818300001323223, 257814.483500000089407 ], [ 359414.764200001955032, 257799.756999999284744 ], [ 359425.050899997353554, 257792.540800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025200", "MAP": "D9-5455-T93", "PARCEL_NAM": "2-12", "ACRE": ".366", "LONGITUDE": -64.91528633, "LATITUDE": 18.34959257, "OBJECTID_1": 5768, "PARCEL_NO_": "103003025200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-12 GREAT NORTHSIDE QTR", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89000, "Improved_V": 499500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.397471553, "SHAPE_Area": 1266.4314795299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360471.446099996566772, 257797.107900001108646 ], [ 360443.068000003695488, 257778.197900000959635 ], [ 360434.8412000015378, 257797.34010000154376 ], [ 360433.197999998927116, 257800.915300000458956 ], [ 360425.827899999916553, 257814.153799999505281 ], [ 360423.376599997282028, 257817.933400001376867 ], [ 360444.4966000020504, 257831.556000001728535 ], [ 360471.446099996566772, 257797.107900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803022200", "MAP": "D9-9427-T020", "PARCEL_NAM": "RECONFIG 55A REM", "ACRE": "0.57", "LONGITUDE": -64.94613568, "LATITUDE": 18.34946682, "OBJECTID_1": 4295, "PARCEL_NO_": "102803022200", "Tax_Legal_": "SOLBERG 55A LITTLE NORTHSIDE", "Name": "LAPLACE, EDWARD", "Address": "55A-7 Solberg Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83900, "Improved_V": 58200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.97362666699999, "SHAPE_Area": 2578.6750059800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357180.134199999272823, 257739.094999998807907 ], [ 357171.702600002288818, 257735.211599998176098 ], [ 357148.784500002861023, 257743.677600000053644 ], [ 357158.878200002014637, 257760.606499999761581 ], [ 357185.121399998664856, 257803.673300001770258 ], [ 357227.340000003576279, 257760.837099999189377 ], [ 357180.134199999272823, 257739.094999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92316021000001, "LATITUDE": 18.3494833, "OBJECTID_1": 5043, "PARCEL_NO_": "102904022600", "Tax_Legal_": "HOSPITAL GROUND 406-1B 9 NEW QTR", "Name": "MOOLENAAR, LUCIEN", "Address": "PO BOX 302275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124800, "Improved_V": 513800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.08980259000001, "SHAPE_Area": 3141.09199326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359602.254900000989437, 257751.26240000128746 ], [ 359590.578100003302097, 257796.763000000268221 ], [ 359579.1925999969244, 257808.068900000303984 ], [ 359579.955799996852875, 257813.141399998217821 ], [ 359585.554999999701977, 257818.464600000530481 ], [ 359602.444399997591972, 257823.668999999761581 ], [ 359646.195699997246265, 257799.329199999570847 ], [ 359640.716899998486042, 257779.863699998706579 ], [ 359632.135200001299381, 257746.018500000238419 ], [ 359602.254900000989437, 257751.26240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804024200", "MAP": "G9-1211-T69", "PARCEL_NAM": "97A", "ACRE": ".07", "LONGITUDE": -64.93830848, "LATITUDE": 18.34960381, "OBJECTID_1": 4546, "PARCEL_NO_": "102804024200", "Tax_Legal_": "AGNES FANCY 97A GREAT NORTHSIDE QTR", "Name": "HODGE, ARTHUR & DELMA", "Address": "PO Box 302021", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13300, "Improved_V": 101500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.975298706, "SHAPE_Area": 829.16628700199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358024.820000000298023, 257772.126800000667572 ], [ 358007.99889999628067, 257758.901299998164177 ], [ 358001.13120000064373, 257807.818799998611212 ], [ 358017.23589999973774, 257810.483800001442432 ], [ 358027.222699999809265, 257774.046300001442432 ], [ 358024.820000000298023, 257772.126800000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90955723, "LATITUDE": 18.34971614, "OBJECTID_1": 5823, "PARCEL_NO_": "103003032700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4G-9 GT. NORTHSIDE", "Name": "PICKERING, ULRIC S. & RUTH", "Address": "PO Box 9100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.800664010800006, "SHAPE_Area": 292.24549317999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361060.286100000143051, 257832.223299998790026 ], [ 361059.528399996459484, 257826.517499998211861 ], [ 361058.039800003170967, 257811.939899999648333 ], [ 361046.729900002479553, 257814.380499999970198 ], [ 361042.523900002241135, 257834.82209999859333 ], [ 361060.286100000143051, 257832.223299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.966503, "LATITUDE": 18.34965044, "OBJECTID_1": 2716, "PARCEL_NO_": "102604022900", "Tax_Legal_": "LINDBERG BAY 39M S S QTR", "Name": "La Board, Yvonne", "Address": "976 Tionton Ave", "City": "Bronx", "State": "New York", "Zip": 10456, "Country": "United States", "Land_Value": 21700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.04111025900001, "SHAPE_Area": 969.92862008300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355047.885600000619888, 257751.139499999582767 ], [ 355018.861900001764297, 257750.479800000786781 ], [ 355019.3733000010252, 257785.103300001472235 ], [ 355047.603299997746944, 257784.278900001198053 ], [ 355047.885600000619888, 257751.139499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804025600", "MAP": "G9-1954-T72", "PARCEL_NAM": "3T", "ACRE": ".232", "LONGITUDE": -64.93473817, "LATITUDE": 18.34951382, "OBJECTID_1": 4560, "PARCEL_NO_": "102804025600", "Tax_Legal_": "AGNES FANCY 3T GR NORTHSIDE", "Name": "CONSOLVO, CHARLES W. & LINDA B", "Address": "PO Box 370", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.427400068, "SHAPE_Area": 973.98356819699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358401.123800002038479, 257800.436299998313189 ], [ 358407.746699996292591, 257796.083599999547005 ], [ 358411.097599998116493, 257768.95549999922514 ], [ 358386.940600000321865, 257764.958099998533726 ], [ 358372.385600000619888, 257769.694099999964237 ], [ 358365.782300002872944, 257787.583000000566244 ], [ 358368.962600000202656, 257792.886399999260902 ], [ 358372.204000003635883, 257791.013099998235703 ], [ 358389.629299998283386, 257783.55290000140667 ], [ 358401.123800002038479, 257800.436299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904021000", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-13", "ACRE": ".50", "LONGITUDE": -64.91758326, "LATITUDE": 18.3495149, "OBJECTID_1": 5018, "PARCEL_NO_": "102904021000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1G-13 GREAT NORTHSIDE", "Name": "SPRINGETTE, WALTER & VADIS", "Address": "P.O. BOX 3338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96100, "Improved_V": 361700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.67554012299999, "SHAPE_Area": 1890.4061381700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360243.784699998795986, 257791.13230000063777 ], [ 360235.923000000417233, 257767.425500001758337 ], [ 360174.422100000083447, 257792.886700000613928 ], [ 360169.539200000464916, 257798.124099999666214 ], [ 360169.470899999141693, 257806.144999999552965 ], [ 360174.958599999547005, 257824.555100001394749 ], [ 360176.562299996614456, 257825.623700000345707 ], [ 360178.981200002133846, 257825.643500000238419 ], [ 360194.416199997067451, 257812.259799998253584 ], [ 360205.762100003659725, 257805.597699999809265 ], [ 360221.956699997186661, 257797.708700001239777 ], [ 360243.784699998795986, 257791.13230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91662272000001, "LATITUDE": 18.3494375, "OBJECTID_1": 4985, "PARCEL_NO_": "102904017200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-4A GR NORTHSIDE QTR", "Name": "PETTY, SALLY F", "Address": "PO Box 1294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 86500, "Improved_V": 299200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.26732797700001, "SHAPE_Area": 2174.0583174600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360265.553300000727177, 257791.521600000560284 ], [ 360289.449600003659725, 257826.125399999320507 ], [ 360327.741899996995926, 257779.9983000010252 ], [ 360356.997500002384186, 257753.428800001740456 ], [ 360360.265900000929832, 257748.389299999922514 ], [ 360358.658699996769428, 257747.742899999022484 ], [ 360348.133500002324581, 257752.723000001162291 ], [ 360317.387500002980232, 257764.925900001078844 ], [ 360280.934399999678135, 257784.470300000160933 ], [ 360265.553300000727177, 257791.521600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703032800", "MAP": "A9-83-T68", "PARCEL_NAM": "108-A-10", "ACRE": "0.37", "LONGITUDE": -64.95934785, "LATITUDE": 18.34952122, "OBJECTID_1": 3319, "PARCEL_NO_": "102703032800", "Tax_Legal_": "CONTANT 108-A-10 7B SOUTHSIDE QTR", "Name": "TURNBULL, CARMINA", "Address": "3190 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34900, "Improved_V": 243600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.468423788, "SHAPE_Area": 1752.2012600200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355818.734700001776218, 257755.759799998253584 ], [ 355781.052000001072884, 257730.331199999898672 ], [ 355772.866599999368191, 257744.618599999696016 ], [ 355759.821699999272823, 257761.399300001561642 ], [ 355796.683700002729893, 257788.509899999946356 ], [ 355810.55290000140667, 257769.625 ], [ 355818.734700001776218, 257755.759799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93027183, "LATITUDE": 18.34948606, "OBJECTID_1": 4803, "PARCEL_NO_": "102903022300", "Tax_Legal_": "MAFOLIE 23-27 GR NORTHSIDE", "Name": "EDWARDS, PHILBERT & MEDORA", "Address": "1408 4th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 100300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.433702514, "SHAPE_Area": 1497.8278715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358845.057300001382828, 257753.297699999064207 ], [ 358843.126400001347065, 257790.645500000566244 ], [ 358880.861299999058247, 257809.952799998223782 ], [ 358881.210100002586842, 257769.003499999642372 ], [ 358873.177599996328354, 257765.34910000115633 ], [ 358865.963899999856949, 257760.223799999803305 ], [ 358845.057300001382828, 257753.297699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043300", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-32", "ACRE": "0.37", "LONGITUDE": -64.95808754, "LATITUDE": 18.34939599, "OBJECTID_1": 3571, "PARCEL_NO_": "102704043300", "Tax_Legal_": "CONTANT 108A-32 7B S S QTR", "Name": "FRANCIS, PHILIP", "Address": "PO Box 302634", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.54693411900001, "SHAPE_Area": 2053.2114722699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355943.993600003421307, 257723.854400001466274 ], [ 355906.138300001621246, 257718.689399998635054 ], [ 355902.104900002479553, 257718.867499999701977 ], [ 355901.765100002288818, 257758.761399999260902 ], [ 355912.977899998426437, 257767.719099998474121 ], [ 355938.641500003635883, 257784.183299999684095 ], [ 355943.993600003421307, 257723.854400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92354313, "LATITUDE": 18.34942799, "OBJECTID_1": 5059, "PARCEL_NO_": "102904024200", "Tax_Legal_": "HOSPITAL GROUND 406 1 NEW QTR", "Name": "MOSKOFF, MARK & ZELLA", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91100, "Improved_V": 414400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.577396142, "SHAPE_Area": 2221.80024374 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359595.795400001108646, 257752.265000000596046 ], [ 359571.568300001323223, 257756.499699998646975 ], [ 359547.3429000005126, 257760.523299999535084 ], [ 359559.79619999974966, 257813.1875 ], [ 359574.306199997663498, 257813.728399999439716 ], [ 359573.523299999535084, 257810.977800000458956 ], [ 359579.1925999969244, 257808.068900000303984 ], [ 359590.578100003302097, 257796.763000000268221 ], [ 359602.254900000989437, 257751.26240000128746 ], [ 359595.795400001108646, 257752.265000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90989641, "LATITUDE": 18.34953316, "OBJECTID_1": 5824, "PARCEL_NO_": "103003032800", "Tax_Legal_": "ST JOSEPH&ROSENDAL 4G-2 GREAT NORTHSIDE", "Name": "HENDERSON, CROMWELL A", "Address": "P.O. BOX 3503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 257900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.09759563700001, "SHAPE_Area": 1133.9197040900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361036.224399998784065, 257817.038699999451637 ], [ 361026.84179999679327, 257782.553700000047684 ], [ 360997.760600000619888, 257788.648400001227856 ], [ 361003.9054000005126, 257824.584600001573563 ], [ 361036.224399998784065, 257817.038699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003028500", "MAP": "G9-2165-T72", "PARCEL_NAM": "1-2A", "ACRE": "0.50", "LONGITUDE": -64.91612352, "LATITUDE": 18.34945915, "OBJECTID_1": 5793, "PARCEL_NO_": "103003028500", "Tax_Legal_": "1-2A ST.JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "SURESH H. VASANDMALANI LIVING TRUST", "Address": "PO Box 1630", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041630, "Country": "United States", "Land_Value": 76800, "Improved_V": 448000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.035959346, "SHAPE_Area": 2037.8924948399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360388.233300000429153, 257778.382399998605251 ], [ 360361.781400002539158, 257759.800799999386072 ], [ 360334.156400002539158, 257784.272599998861551 ], [ 360326.006999999284744, 257794.33839999884367 ], [ 360349.201300002634525, 257816.69310000166297 ], [ 360368.572499997913837, 257814.529599998146296 ], [ 360388.233300000429153, 257778.382399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704061000", "MAP": "A9-412-T93", "PARCEL_NAM": "107-26", "ACRE": "0.26", "LONGITUDE": -64.95716818, "LATITUDE": 18.34951369, "OBJECTID_1": 3655, "PARCEL_NO_": "102704061000", "Tax_Legal_": "CONTANT 107-26 7B SOUTHSIDE QUARTER", "Name": "PENN, ANNA MAURICIA", "Address": "PO Box 302601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.97026492400001, "SHAPE_Area": 853.84366105699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356039.576200000941753, 257767.910900000482798 ], [ 356028.50900000333786, 257741.855799999088049 ], [ 356000.1891999989748, 257753.234099999070168 ], [ 356012.064499996602535, 257779.084699999541044 ], [ 356039.576200000941753, 257767.910900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704044800", "MAP": "A9-701-T007", "PARCEL_NAM": "6A-19", "ACRE": ".716", "LONGITUDE": -64.95403537, "LATITUDE": 18.34915271, "OBJECTID_1": 3583, "PARCEL_NO_": "102704044800", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-19 3 LITTLE NORTHSIDE", "Name": "CALLWOOD, ALBERT & MARIA", "Address": "PO Box 308280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 89400, "Improved_V": 541900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.56353242099999, "SHAPE_Area": 4784.01912765 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356383.131099998950958, 257668.342300001531839 ], [ 356382.218699999153614, 257680.78940000012517 ], [ 356339.458999998867512, 257683.39469999819994 ], [ 356321.473700001835823, 257712.167300000786781 ], [ 356319.848499998450279, 257713.631700001657009 ], [ 356317.37389999628067, 257720.155299998819828 ], [ 356317.307300001382828, 257727.965199999511242 ], [ 356321.160899996757507, 257748.894999999552965 ], [ 356327.456699997186661, 257767.100600000470877 ], [ 356334.632600001990795, 257776.658599998801947 ], [ 356341.860699996352196, 257780.095199998468161 ], [ 356349.115699999034405, 257780.365699999034405 ], [ 356369.62049999833107, 257739.792500000447035 ], [ 356395.859499998390675, 257688.711500000208616 ], [ 356389.455700002610683, 257683.1706000007689 ], [ 356385.483499996364117, 257676.171999998390675 ], [ 356383.131099998950958, 257668.342300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704044900", "MAP": "A9-688-T005", "PARCEL_NAM": "6A-20", "ACRE": ".570", "LONGITUDE": -64.95365678, "LATITUDE": 18.34940336, "OBJECTID_1": 3584, "PARCEL_NO_": "102704044900", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-20 LITTLE NORTHSIDE", "Name": "JIMINIAN, RAMIREZ MARTIN REMY", "Address": "18445 Merseyside Loop", "City": "Land O Lakes", "State": "Florida", "Zip": 34638, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.26572276799999, "SHAPE_Area": 2441.1974281900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356423.535599999129772, 257752.899300001561642 ], [ 356426.242200002074242, 257719.146499998867512 ], [ 356369.62049999833107, 257739.792500000447035 ], [ 356349.115699999034405, 257780.365699999034405 ], [ 356364.462600000202656, 257777.32490000128746 ], [ 356380.604999996721745, 257775.557199999690056 ], [ 356387.877999998629093, 257773.71680000051856 ], [ 356423.535599999129772, 257752.899300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032500", "MAP": "D9-33-T52", "PARCEL_NAM": "REM 266", "ACRE": "0.58", "LONGITUDE": -64.92839243, "LATITUDE": 18.34922821, "OBJECTID_1": 4837, "PARCEL_NO_": "102903032500", "Tax_Legal_": "HOSPITAL GROUND 266 GREAT NORTHSIDE QTR", "Name": "ISLAND VIEW DEVELOPMENT LLC", "Address": "PO Box 9951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 83900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.98957421599999, "SHAPE_Area": 2292.0260305400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359071.890500001609325, 257713.971599999815226 ], [ 359042.305200003087521, 257716.503400001674891 ], [ 359044.381999999284744, 257735.508499998599291 ], [ 359049.589199997484684, 257786.846900001168251 ], [ 359069.700199998915195, 257792.499899998307228 ], [ 359081.002099998295307, 257798.412200000137091 ], [ 359071.890500001609325, 257713.971599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90963605, "LATITUDE": 18.34946449, "OBJECTID_1": 5825, "PARCEL_NO_": "103003032900", "Tax_Legal_": "ST JOSEPH&ROSENDAL 4G-3 GR NORTHSIDE", "Name": "HENDERSON, CROMWELL A", "Address": "BOX 3503", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31700, "Improved_V": 451700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.470731606, "SHAPE_Area": 899.120167896 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361058.039800003170967, 257811.939899999648333 ], [ 361056.515299998223782, 257801.583799999207258 ], [ 361055.816899999976158, 257788.912500001490116 ], [ 361055.923000000417233, 257776.45890000090003 ], [ 361026.84179999679327, 257782.553700000047684 ], [ 361036.224399998784065, 257817.038699999451637 ], [ 361046.729900002479553, 257814.380499999970198 ], [ 361058.039800003170967, 257811.939899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96462687, "LATITUDE": 18.34952956, "OBJECTID_1": 3376, "PARCEL_NO_": "102703043900", "Tax_Legal_": "LINDBERG BAY 36DA SOUTHSIDE QUARTER", "Name": "REY, VICTOR & VIONIE", "Address": "P.O. BOX 3798", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.52501406600001, "SHAPE_Area": 1001.58698663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355251.166199997067451, 257742.248599998652935 ], [ 355210.020900003612041, 257744.655999999493361 ], [ 355212.340999998152256, 257756.285199999809265 ], [ 355210.625799998641014, 257768.30350000038743 ], [ 355251.749600000679493, 257768.429000001400709 ], [ 355251.166199997067451, 257742.248599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033300", "MAP": "D9-6054-T96", "PARCEL_NAM": "4D-6-1", "ACRE": ".204", "LONGITUDE": -64.91122199, "LATITUDE": 18.3492576, "OBJECTID_1": 5829, "PARCEL_NO_": "103003033300", "Tax_Legal_": "ST JOSEPH & ROS4D-5 &4D-6-1 ROSENDAHL GR NORTH", "Name": "BRANDON LUTZY and GABRIELLE GOULET", "Address": "PO Box 303475", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107400, "Improved_V": 559600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.67208068900001, "SHAPE_Area": 774.611256561 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360891.922499999403954, 257717.910199999809265 ], [ 360860.593999996781349, 257798.502700001001358 ], [ 360870.138400003314018, 257813.990600001066923 ], [ 360894.316299997270107, 257720.885099999606609 ], [ 360891.922499999403954, 257717.910199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033300", "MAP": "D9-6054-T96", "PARCEL_NAM": "4D-5", "ACRE": ".59", "LONGITUDE": -64.91100164, "LATITUDE": 18.3492767, "OBJECTID_1": 5829, "PARCEL_NO_": "103003033300", "Tax_Legal_": "ST JOSEPH & ROS4D-5 &4D-6-1 ROSENDAHL GR NORTH", "Name": "BRANDON LUTZY and GABRIELLE GOULET", "Address": "PO Box 303475", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107400, "Improved_V": 559600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.83167042900001, "SHAPE_Area": 3060.3314627 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360894.316299997270107, 257720.885099999606609 ], [ 360870.138400003314018, 257813.990600001066923 ], [ 360924.251299999654293, 257803.878800000995398 ], [ 360916.749200001358986, 257737.956199999898672 ], [ 360905.523800000548363, 257730.476100001484156 ], [ 360894.316299997270107, 257720.885099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91428148, "LATITUDE": 18.34932759, "OBJECTID_1": 5773, "PARCEL_NO_": "103003025700", "Tax_Legal_": "2-10 ST JOSEPH & ROSENDAHL NO 4 GREAT NORTHSIDE QTR", "Name": "MITHAVAM TRUST", "Address": "6519 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.46972190599999, "SHAPE_Area": 3032.67247486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360502.695500001311302, 257783.329999998211861 ], [ 360544.39360000193119, 257810.691300000995398 ], [ 360569.522399999201298, 257795.276000000536442 ], [ 360577.657399997115135, 257786.898800000548363 ], [ 360580.943800002336502, 257779.748599998652935 ], [ 360594.161300003528595, 257742.704300001263618 ], [ 360594.181100003421307, 257740.382399998605251 ], [ 360591.767499998211861, 257739.729400001466274 ], [ 360554.553099997341633, 257753.990200001746416 ], [ 360542.375699996948242, 257763.600900001823902 ], [ 360504.335100002586842, 257780.177000001072884 ], [ 360502.695500001311302, 257783.329999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804028600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93546789, "LATITUDE": 18.34934644, "OBJECTID_1": 4605, "PARCEL_NO_": "102804028600", "Tax_Legal_": "AGNES FANCY 5D LITTLE NORTHSIDE", "Name": "LAPLACE, ANDY JOHN & DANNY JOHN", "Address": "PO Box 10156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80100, "Improved_V": 289200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.66686729400001, "SHAPE_Area": 2117.1278037900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358341.733199998736382, 257770.920899998396635 ], [ 358324.318000003695488, 257732.781500000506639 ], [ 358274.9746999964118, 257750.953899998217821 ], [ 358283.693000003695488, 257768.757100000977516 ], [ 358306.226599998772144, 257774.007800001651049 ], [ 358352.033600002527237, 257792.325699999928474 ], [ 358344.881099998950958, 257780.023699998855591 ], [ 358341.733199998736382, 257770.920899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903034100", "MAP": "A3-77-T49", "PARCEL_NAM": "278", "ACRE": "0.46", "LONGITUDE": -64.92490826, "LATITUDE": 18.34917308, "OBJECTID_1": 4853, "PARCEL_NO_": "102903034100", "Tax_Legal_": "HOSPITAL GROUND 278 GREAT NORTHSIDE QTR", "Name": "VICTOR, FRANKLYN O", "Address": "38 KRONPRINDSEN GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84300, "Improved_V": 204600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.39115367900001, "SHAPE_Area": 2371.7217743299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359457.14019999653101, 257774.682000000029802 ], [ 359431.215499997138977, 257704.521499998867512 ], [ 359430.895099997520447, 257704.685899998992682 ], [ 359427.646499998867512, 257707.403499998152256 ], [ 359422.769100002944469, 257712.007599998265505 ], [ 359409.706200003623962, 257730.899099998176098 ], [ 359405.839299999177456, 257737.704799998551607 ], [ 359425.050899997353554, 257792.540800001472235 ], [ 359441.534400001168251, 257780.977699998766184 ], [ 359448.834299996495247, 257775.971200000494719 ], [ 359457.14019999653101, 257774.682000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804025700", "MAP": "G9-1954-T72", "PARCEL_NAM": "3R", "ACRE": ".243", "LONGITUDE": -64.93502198, "LATITUDE": 18.3494144, "OBJECTID_1": 4561, "PARCEL_NO_": "102804025700", "Tax_Legal_": "AGNES FANCY 3R GR NORTHSIDE", "Name": "COOK, NANCY L", "Address": "PO Box 6683", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49200, "Improved_V": 197000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.943738274, "SHAPE_Area": 622.53201220899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358372.385600000619888, 257769.694099999964237 ], [ 358365.301399998366833, 257749.371199999004602 ], [ 358353.181599996984005, 257752.227299999445677 ], [ 358349.889799997210503, 257760.010800000280142 ], [ 358350.595399998128414, 257771.837799999862909 ], [ 358360.111100003123283, 257790.703000001609325 ], [ 358365.782300002872944, 257787.583000000566244 ], [ 358372.385600000619888, 257769.694099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025900", "MAP": "D9-413-T64", "PARCEL_NAM": "2-20", "ACRE": ".50", "LONGITUDE": -64.91502816000001, "LATITUDE": 18.34928204, "OBJECTID_1": 5775, "PARCEL_NO_": "103003025900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-20 4 GR NORTHSIDE", "Name": "MAHBUBANI, KISHIN & VARSHA", "Address": "PO Box 6587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 76800, "Improved_V": 412200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.64101172, "SHAPE_Area": 2313.7109290200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360511.690800003707409, 257768.627099998295307 ], [ 360493.244499996304512, 257756.86600000038743 ], [ 360462.766500003635883, 257737.618099998682737 ], [ 360455.4054000005126, 257749.801300000399351 ], [ 360454.566699996590614, 257753.594099998474121 ], [ 360452.939699999988079, 257755.269499998539686 ], [ 360443.068000003695488, 257778.197900000959635 ], [ 360476.744300000369549, 257800.638399999588728 ], [ 360485.561599999666214, 257806.832299999892712 ], [ 360491.358599998056889, 257788.936700001358986 ], [ 360497.918799996376038, 257776.113699998706579 ], [ 360501.169200003147125, 257773.184999998658895 ], [ 360511.690800003707409, 257768.627099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96689426, "LATITUDE": 18.34938762, "OBJECTID_1": 2717, "PARCEL_NO_": "102604023000", "Tax_Legal_": "LINDBERG BAY 39N SOUTHSIDE QTR.", "Name": "PAYNE, JACQUELINE", "Address": "PO Box 11045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 156900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.25883193600001, "SHAPE_Area": 1496.4414510700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354972.39190000295639, 257719.059099998325109 ], [ 354975.989399999380112, 257760.025699999183416 ], [ 355009.92059999704361, 257758.850299999117851 ], [ 355009.994300000369549, 257750.196100000292063 ], [ 355010.280199997127056, 257716.63459999859333 ], [ 354972.39190000295639, 257719.059099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105401131100", "MAP": "G9-164-T45", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.92931413, "LATITUDE": 18.34907423, "OBJECTID_1": 11667, "PARCEL_NO_": "105401131100", "Tax_Legal_": "LYTTONS FANCY SEC 2OF 8G KINGS QTR", "Name": "PETERSEN, MAUD", "Address": "P.O. BOX 2276", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.77696813199998, "SHAPE_Area": 8909.0717454999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358945.578400000929832, 257674.781500000506639 ], [ 358922.795500002801418, 257659.474899999797344 ], [ 358922.587700001895428, 257661.572200000286102 ], [ 358922.430299997329712, 257663.160799998790026 ], [ 358921.445900000631809, 257684.050999999046326 ], [ 358921.406400002539158, 257688.694699998944998 ], [ 358920.137100003659725, 257709.151099998503923 ], [ 358916.732799999415874, 257764.0168999992311 ], [ 358932.007799997925758, 257769.419199999421835 ], [ 358944.043200001120567, 257776.483800001442432 ], [ 358961.711900003254414, 257784.861099999397993 ], [ 358982.622100003063679, 257791.364999998360872 ], [ 358989.8699000030756, 257792.479800000786781 ], [ 358999.547499999403954, 257792.347899999469519 ], [ 359007.626800000667572, 257790.514199998229742 ], [ 359017.338500000536442, 257786.371800001710653 ], [ 359013.722300000488758, 257737.579599998891354 ], [ 359011.719099998474121, 257719.084899999201298 ], [ 358982.377099998295307, 257699.504700001329184 ], [ 358945.578400000929832, 257674.781500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704061100", "MAP": "A9-412-T93", "PARCEL_NAM": "107-27", "ACRE": "0.25", "LONGITUDE": -64.95688567000001, "LATITUDE": 18.34940259, "OBJECTID_1": 3656, "PARCEL_NO_": "102704061100", "Tax_Legal_": "CONTANT 107-27 7B SOUTHSIDE QUARTER", "Name": "FARRINGTON, THELMA", "Address": "PO Box 302175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36200, "Improved_V": 442000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.573612994, "SHAPE_Area": 976.13969339599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356071.132100000977516, 257755.292399998754263 ], [ 356060.874799996614456, 257728.821800000965595 ], [ 356028.50900000333786, 257741.855799999088049 ], [ 356039.576200000941753, 257767.910900000482798 ], [ 356071.132100000977516, 257755.292399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93068976000001, "LATITUDE": 18.34935858, "OBJECTID_1": 4807, "PARCEL_NO_": "102903022700", "Tax_Legal_": "MAFOLIE 23-26 GT. NORTHSIDE", "Name": "JOSEPH, LAVERNE & KIMBERLY M.", "Address": "P O BOX 4308", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 434800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.938740978, "SHAPE_Area": 1823.5147031199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358791.917999997735023, 257743.785799998790026 ], [ 358794.82320000231266, 257781.384199999272823 ], [ 358831.884800001978874, 257785.065000001341105 ], [ 358843.126400001347065, 257790.645500000566244 ], [ 358845.057300001382828, 257753.297699999064207 ], [ 358831.376999996602535, 257750.019400000572205 ], [ 358804.797499999403954, 257746.424300000071526 ], [ 358791.917999997735023, 257743.785799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91551397000001, "LATITUDE": 18.34927402, "OBJECTID_1": 5769, "PARCEL_NO_": "103003025300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-1A GREAT NORTHSIDE QTR", "Name": "TODMAN, JANEL D", "Address": "PO Box 307035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77700, "Improved_V": 236300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.97642760100001, "SHAPE_Area": 1699.4345150700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360447.340499997138977, 257749.946400001645088 ], [ 360428.109499998390675, 257735.645700000226498 ], [ 360395.445200003683567, 257783.718800000846386 ], [ 360422.6925999969244, 257803.573499999940395 ], [ 360426.781700000166893, 257796.852000001817942 ], [ 360439.930799998342991, 257767.828699998557568 ], [ 360441.59740000218153, 257761.509500000625849 ], [ 360447.340499997138977, 257749.946400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034800", "MAP": "D9-1603-T80", "PARCEL_NAM": "4D-5B", "ACRE": null, "LONGITUDE": -64.91074202, "LATITUDE": 18.34929051, "OBJECTID_1": 5844, "PARCEL_NO_": "103003034800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4D-5A&5B ROSENDAHL GR NORTHSI", "Name": "SALEM, MOHAMMED S. & ZAINA Z", "Address": "NORRE GADE #12", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33500, "Improved_V": 531000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.02833895200001, "SHAPE_Area": 710.78451871799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360916.749200001358986, 257737.956199999898672 ], [ 360924.251299999654293, 257803.878800000995398 ], [ 360935.559399999678135, 257801.649300001561642 ], [ 360940.406300000846386, 257800.633499998599291 ], [ 360923.174500003457069, 257740.964099999517202 ], [ 360916.749200001358986, 257737.956199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032400", "MAP": "F9-2631-T70", "PARCEL_NAM": "265-1", "ACRE": "0.48", "LONGITUDE": -64.92868182, "LATITUDE": 18.34924246, "OBJECTID_1": 4836, "PARCEL_NO_": "102903032400", "Tax_Legal_": "HOSPITAL GROUND 265-1 GREAT NORTHSIDE QTR", "Name": "PETERSEN, ALVIN L. & GLORIA", "Address": "7067 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73800, "Improved_V": 165800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.12209265000001, "SHAPE_Area": 1919.42134457 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359049.589199997484684, 257786.846900001168251 ], [ 359044.381999999284744, 257735.508499998599291 ], [ 359042.685500003397465, 257719.98369999974966 ], [ 359012.724500000476837, 257728.367300000041723 ], [ 359013.722300000488758, 257737.579599998891354 ], [ 359017.338500000536442, 257786.371800001710653 ], [ 359023.801600001752377, 257784.947000000625849 ], [ 359036.706200003623962, 257784.630499999970198 ], [ 359049.589199997484684, 257786.846900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804029900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93418677, "LATITUDE": 18.34927054, "OBJECTID_1": 4619, "PARCEL_NO_": "102804029900", "Tax_Legal_": "3D-2 AGNES FANCY No.8h GREAT NORTHSIDE QTR.", "Name": "SALEM, NAEL N", "Address": "PO Box 305198", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56200, "Improved_V": 750500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.46375233399999, "SHAPE_Area": 1132.74042027 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358437.105400003492832, 257776.788600001484156 ], [ 358483.127300001680851, 257746.542100001126528 ], [ 358483.055399999022484, 257746.535199999809265 ], [ 358468.577799998223782, 257742.194899998605251 ], [ 358437.961300000548363, 257739.200100000947714 ], [ 358429.912500001490116, 257737.44539999961853 ], [ 358427.410899996757507, 257747.135299999266863 ], [ 358437.105400003492832, 257776.788600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903038000", "MAP": "G9-799-T64", "PARCEL_NAM": "269B", "ACRE": "0.39", "LONGITUDE": -64.92755496, "LATITUDE": 18.34931133, "OBJECTID_1": 4892, "PARCEL_NO_": "102903038000", "Tax_Legal_": "HOSPITAL GROUND 269B 9 NEW QTR", "Name": "BERETTA, GEORGE & ELIZABET", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.456944029, "SHAPE_Area": 1294.1266890500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359139.850299999117851, 257741.710499998182058 ], [ 359132.875900000333786, 257741.272900000214577 ], [ 359136.663900002837181, 257783.297699999064207 ], [ 359136.689000003039837, 257783.575800001621246 ], [ 359142.911700002849102, 257783.914000000804663 ], [ 359142.996299996972084, 257784.041000001132488 ], [ 359161.547100000083447, 257786.218299999833107 ], [ 359166.659000001847744, 257786.918099999427795 ], [ 359165.49040000140667, 257769.514299999922514 ], [ 359163.720799997448921, 257743.159000001847744 ], [ 359158.620700001716614, 257742.888399999588728 ], [ 359139.850299999117851, 257741.710499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003034800", "MAP": "G9-720-T63", "PARCEL_NAM": "4D-5A", "ACRE": null, "LONGITUDE": -64.91066039, "LATITUDE": 18.34921345, "OBJECTID_1": 5844, "PARCEL_NO_": "103003034800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4D-5A&5B ROSENDAHL GR NORTHSI", "Name": "SALEM, MOHAMMED S. & ZAINA Z", "Address": "NORRE GADE #12", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33500, "Improved_V": 531000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.462286011, "SHAPE_Area": 530.19763983300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360923.174500003457069, 257740.964099999517202 ], [ 360940.406300000846386, 257800.633499998599291 ], [ 360945.253200002014637, 257799.61769999936223 ], [ 360937.663000002503395, 257744.037999998778105 ], [ 360931.207099996507168, 257744.618500001728535 ], [ 360923.174500003457069, 257740.964099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703034700", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-30", "ACRE": "0.42", "LONGITUDE": -64.95837235, "LATITUDE": 18.34929983, "OBJECTID_1": 3334, "PARCEL_NO_": "102703034700", "Tax_Legal_": "108A-30 CONTANT NO.7B SOUTHSIDE QTR.", "Name": "VASA HOLDINGS INC", "Address": "PO Box 1511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39600, "Improved_V": 515300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.802329769, "SHAPE_Area": 621.85093862500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355902.104900002479553, 257718.867499999701977 ], [ 355883.550800003111362, 257719.771099999547005 ], [ 355881.715199999511242, 257745.931699998676777 ], [ 355890.555799998342991, 257749.381499998271465 ], [ 355901.765100002288818, 257758.761399999260902 ], [ 355902.104900002479553, 257718.867499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96622057, "LATITUDE": 18.34926167, "OBJECTID_1": 3372, "PARCEL_NO_": "102703043500", "Tax_Legal_": "LINDBERG BAY 38HG S S QTR", "Name": "BROOKS, DERON & DORIS", "Address": "PO Box 305651", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.989011667, "SHAPE_Area": 934.77798284000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355071.737999998033047, 257696.23930000141263 ], [ 355044.01410000026226, 257732.320500001311302 ], [ 355060.779399998486042, 257752.089400000870228 ], [ 355066.509900003671646, 257742.003800000995398 ], [ 355081.257299996912479, 257714.682399999350309 ], [ 355077.268899999558926, 257709.583500001579523 ], [ 355071.737999998033047, 257696.23930000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91047974, "LATITUDE": 18.34926982, "OBJECTID_1": 5828, "PARCEL_NO_": "103003033200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4D 4A GR NORTHSIDE", "Name": "SALEM, MOHAMMED S. & ZAINA Z", "Address": "NORRE GADE #12", "City": "St.Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22200, "Improved_V": 297800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.83640108700001, "SHAPE_Area": 1287.5311067499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360945.253200002014637, 257799.61769999936223 ], [ 360973.526299998164177, 257793.727400001138449 ], [ 360966.578699998557568, 257757.362500000745058 ], [ 360937.663000002503395, 257744.037999998778105 ], [ 360945.253200002014637, 257799.61769999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96660384, "LATITUDE": 18.34936457, "OBJECTID_1": 2718, "PARCEL_NO_": "102604023100", "Tax_Legal_": "39T LINDBERG BAY SOUTHSIDE QTR", "Name": "CONNOR, EDITH", "Address": "20141 NW 14th Ave", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 17900, "Improved_V": 126300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.18340962900001, "SHAPE_Area": 841.41989834599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355010.362899996340275, 257706.924899999052286 ], [ 355010.280199997127056, 257716.63459999859333 ], [ 355009.994300000369549, 257750.196100000292063 ], [ 355018.861900001764297, 257750.479800000786781 ], [ 355047.885600000619888, 257751.139499999582767 ], [ 355031.129199996590614, 257730.315200001001358 ], [ 355010.362899996340275, 257706.924899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033400", "MAP": "D9-6054-T96", "PARCEL_NAM": "4D-6", "ACRE": ".57", "LONGITUDE": -64.91134426000001, "LATITUDE": 18.34907368, "OBJECTID_1": 5830, "PARCEL_NO_": "103003033400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4D-6 GREAT NORTHSIDE", "Name": "GIRAUD, VICTOR J. & KARIM J. & BETTY A. SMITH-GIRAUD", "Address": "P.O. BOX 3508", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.25469873700001, "SHAPE_Area": 2094.5720938600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360886.337700001895428, 257710.898400001227856 ], [ 360836.019100002944469, 257748.905600000172853 ], [ 360835.988499999046326, 257752.493999999016523 ], [ 360860.593999996781349, 257798.502700001001358 ], [ 360891.922499999403954, 257717.910199999809265 ], [ 360886.337700001895428, 257710.898400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704044500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95461952, "LATITUDE": 18.34901198, "OBJECTID_1": 3581, "PARCEL_NO_": "102704044500", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-16 LITTLE NORTHSIDE", "Name": "LYDIA MARIE MAGRAS and TIMOTHY CHRISTOPHER GREAUX", "Address": "PO BOX 303404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60700, "Improved_V": 293400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.906651724, "SHAPE_Area": 2679.4904333899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356315.876299999654293, 257706.633099999278784 ], [ 356283.211300000548363, 257660.136199999600649 ], [ 356257.827200002968311, 257705.524700000882149 ], [ 356309.026600003242493, 257753.439800001680851 ], [ 356317.024999998509884, 257761.104600001126528 ], [ 356314.654600001871586, 257755.38569999858737 ], [ 356310.039700001478195, 257729.1722999997437 ], [ 356310.138599999248981, 257717.563000001013279 ], [ 356312.613300003111362, 257711.039299998432398 ], [ 356315.876299999654293, 257706.633099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93111324, "LATITUDE": 18.34931449, "OBJECTID_1": 4801, "PARCEL_NO_": "102903022100", "Tax_Legal_": "23-25 ESTATE MAFOLIE No.8f GREAT NORTHSIDE QTR.", "Name": "VANTERPOOL, NIEL & SHIVONNE", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.97082723899999, "SHAPE_Area": 1413.31634932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358786.286399997770786, 257742.261999998241663 ], [ 358785.453199997544289, 257745.421599999070168 ], [ 358752.444700002670288, 257739.240800000727177 ], [ 358756.957099996507168, 257777.485700000077486 ], [ 358794.82320000231266, 257781.384199999272823 ], [ 358791.917999997735023, 257743.785799998790026 ], [ 358786.286399997770786, 257742.261999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93197798, "LATITUDE": 18.34916299, "OBJECTID_1": 4797, "PARCEL_NO_": "102903021700", "Tax_Legal_": "MAFOLIE 23-23 GR NORTHSIDE QTR", "Name": "FUCHS, MOLLY M", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 126000, "Improved_V": 460200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.920957453, "SHAPE_Area": 3009.6904238100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358716.995700001716614, 257735.57319999858737 ], [ 358695.297200001776218, 257726.951900001615286 ], [ 358694.564599998295307, 257718.29109999909997 ], [ 358657.484999999403954, 257716.721000000834465 ], [ 358652.638199999928474, 257717.736800000071526 ], [ 358647.76969999819994, 257721.285599999129772 ], [ 358645.316600002348423, 257725.276299998164177 ], [ 358640.320500001311302, 257743.811599999666214 ], [ 358715.806400001049042, 257780.526399999856949 ], [ 358716.995700001716614, 257735.57319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93148155, "LATITUDE": 18.34929701, "OBJECTID_1": 4799, "PARCEL_NO_": "102903021900", "Tax_Legal_": "23-24&23-23A ESTATE MAFOLIE No.8f GREAT NORTHSIDE QTR.", "Name": "23-23A ESTATE MAFOLIE, LLC", "Address": "U S Attorney's", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107000, "Improved_V": 318700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.17977568699999, "SHAPE_Area": 1696.6291888799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358715.806400001049042, 257780.526399999856949 ], [ 358756.937299996614456, 257779.807599999010563 ], [ 358756.957099996507168, 257777.485700000077486 ], [ 358752.444700002670288, 257739.240800000727177 ], [ 358717.022699996829033, 257732.407000001519918 ], [ 358716.995700001716614, 257735.57319999858737 ], [ 358715.806400001049042, 257780.526399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704046000", "MAP": "A9-689-T006", "PARCEL_NAM": "6A-24", "ACRE": ".384", "LONGITUDE": -64.95181495, "LATITUDE": 18.34918818, "OBJECTID_1": 3595, "PARCEL_NO_": "102704046000", "Tax_Legal_": "LILLIENDAL & MARIENHOJ 6A-24 No.3 LITTLE NORTHSIDE", "Name": "RUAN, IRAD & R. ANDINA", "Address": "PO Box 3598", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 124100, "Improved_V": 344800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.80452914200001, "SHAPE_Area": 1644.6284013300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356563.430399999022484, 257706.759300000965595 ], [ 356561.528300002217293, 257740.729800000786781 ], [ 356585.694300003349781, 257743.671799998730421 ], [ 356596.932300001382828, 257749.674400001764297 ], [ 356601.726999998092651, 257754.779899999499321 ], [ 356606.500200003385544, 257762.418400000780821 ], [ 356610.077899999916553, 257721.073300000280142 ], [ 356600.411100000143051, 257719.938700001686811 ], [ 356601.287500001490116, 257711.713300000876188 ], [ 356563.430399999022484, 257706.759300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703033800", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-9", "ACRE": "0.39", "LONGITUDE": -64.95916495, "LATITUDE": 18.34923415, "OBJECTID_1": 3329, "PARCEL_NO_": "102703033800", "Tax_Legal_": "CONTANT 108A-9 7B SOUTHSIDE QTR.", "Name": "LIONEL O PRATT TRUST", "Address": "PO Box 8913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36800, "Improved_V": 423700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.163108472, "SHAPE_Area": 1639.26773166 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355837.479500003159046, 257732.481800001114607 ], [ 355803.110100001096725, 257696.736800000071526 ], [ 355781.052000001072884, 257730.331199999898672 ], [ 355818.734700001776218, 257755.759799998253584 ], [ 355822.003100000321865, 257750.720300000160933 ], [ 355837.479500003159046, 257732.481800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904021100", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-12", "ACRE": ".50", "LONGITUDE": -64.91677127, "LATITUDE": 18.34916439, "OBJECTID_1": 5019, "PARCEL_NO_": "102904021100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1G-12 GREAT NOTHSIDE QTR.", "Name": "BIRR TRUST", "Address": "PO Box 302682", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 96100, "Improved_V": 404300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.57070988599997, "SHAPE_Area": 2808.5892169 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360346.585600003600121, 257745.111000001430511 ], [ 360330.658900000154972, 257721.549199998378754 ], [ 360264.246399998664856, 257755.625 ], [ 360235.923000000417233, 257767.425500001758337 ], [ 360243.784699998795986, 257791.13230000063777 ], [ 360262.389200001955032, 257784.318500000983477 ], [ 360281.00450000166893, 257776.238200001418591 ], [ 360304.500900000333786, 257763.131599999964237 ], [ 360320.695500001311302, 257755.242600001394749 ], [ 360346.585600003600121, 257745.111000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93824379, "LATITUDE": 18.34925228, "OBJECTID_1": 4547, "PARCEL_NO_": "102804024300", "Tax_Legal_": "AGNES FANCY 122 GREAT NORTHSIDE QTR", "Name": "HODGE, ARTHUR S & DELMA", "Address": "BOX 2021", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.796289599, "SHAPE_Area": 761.99732351499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358036.349299997091293, 257743.934599999338388 ], [ 358013.147900000214577, 257722.424300000071526 ], [ 358007.99889999628067, 257758.901299998164177 ], [ 358023.215300001204014, 257770.865200001746416 ], [ 358036.349299997091293, 257743.934599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704061200", "MAP": "A9-412-T93", "PARCEL_NAM": "107-28", "ACRE": "0.45", "LONGITUDE": -64.95658221, "LATITUDE": 18.34928397, "OBJECTID_1": 3657, "PARCEL_NO_": "102704061200", "Tax_Legal_": "CONTANT 107-28 #7B SOUTHSIDE QTR.", "Name": "HUGHES, CLIFFTON & JONICE", "Address": "PO Box 308786", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62200, "Improved_V": 364400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.560311134, "SHAPE_Area": 990.43579374499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356103.497900001704693, 257742.258400000631809 ], [ 356093.240599997341633, 257715.787799999117851 ], [ 356060.874799996614456, 257728.821800000965595 ], [ 356071.132100000977516, 257755.292399998754263 ], [ 356103.497900001704693, 257742.258400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704061400", "MAP": "A9-412-T93", "PARCEL_NAM": "107-30", "ACRE": "027", "LONGITUDE": -64.95729008000001, "LATITUDE": 18.34927431, "OBJECTID_1": 3659, "PARCEL_NO_": "102704061400", "Tax_Legal_": "107-30 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "GABRIEL, CEGUY", "Address": "3 Domini Tver Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.399777086, "SHAPE_Area": 923.20324775699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355984.357799999415874, 257718.485199999064207 ], [ 355989.903099998831749, 257730.140700001269579 ], [ 356000.1891999989748, 257753.234099999070168 ], [ 356028.50900000333786, 257741.855799999088049 ], [ 356017.439999997615814, 257716.011799998581409 ], [ 355998.817500002682209, 257724.9364 ], [ 355997.244400002062321, 257720.279399998486042 ], [ 355984.357799999415874, 257718.485199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91029838, "LATITUDE": 18.34908378, "OBJECTID_1": 5827, "PARCEL_NO_": "103003033100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4D 4 ROSENDAHL GR NORTH", "Name": "PARR, JOHN W", "Address": "8168 CROWN BAY MARINA, SUITE 310 PMB 31", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66200, "Improved_V": 365200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.04520125900001, "SHAPE_Area": 1960.2783851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360984.625100001692772, 257721.413199998438358 ], [ 360983.870899997651577, 257715.285300001502037 ], [ 360969.290799997746944, 257722.976399999111891 ], [ 360952.239500001072884, 257736.769000001251698 ], [ 360937.663000002503395, 257744.037999998778105 ], [ 360966.578699998557568, 257757.362500000745058 ], [ 360973.526299998164177, 257793.727400001138449 ], [ 360993.721799999475479, 257789.459800001233816 ], [ 360986.167599998414516, 257729.658500000834465 ], [ 360984.625100001692772, 257721.413199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804027800", "MAP": null, "PARCEL_NAM": "3N", "ACRE": null, "LONGITUDE": -64.93518296000001, "LATITUDE": 18.34908566, "OBJECTID_1": 4598, "PARCEL_NO_": "102804027800", "Tax_Legal_": "AGNES FANCY 3N GR NORTHSIDE", "Name": "QUETEL, STEVEN J. & DEBRA L. PONCE", "Address": "PO Box 9145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62700, "Improved_V": 46500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.21626505099999, "SHAPE_Area": 1238.97765639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358360.735100001096725, 257710.142299998551607 ], [ 358357.465700000524521, 257708.111900001764297 ], [ 358348.681800000369549, 257712.504900000989437 ], [ 358321.148400001227856, 257726.21169999986887 ], [ 358324.318000003695488, 257732.781500000506639 ], [ 358341.733199998736382, 257770.920899998396635 ], [ 358341.8158999979496, 257761.211300000548363 ], [ 358345.123800002038479, 257751.528000000864267 ], [ 358363.906400002539158, 257723.817400000989437 ], [ 358367.112300001084805, 257719.395100001245737 ], [ 358369.508599996566772, 257716.089600000530481 ], [ 358367.283600002527237, 257714.6402000002563 ], [ 358365.497599996626377, 257713.515700001269579 ], [ 358363.116400003433228, 257711.729800000786781 ], [ 358360.735100001096725, 257710.142299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804028000", "MAP": "G9-1954-T72", "PARCEL_NAM": "3S", "ACRE": ".243", "LONGITUDE": -64.93472026000001, "LATITUDE": 18.34928617, "OBJECTID_1": 4600, "PARCEL_NO_": "102804028000", "Tax_Legal_": "AGNES FANCY 3S GR NORTHSIDE", "Name": "CONSOLVO, CHARLES & LINDA", "Address": "PO Box 370", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33200, "Improved_V": 296900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.65371228399999, "SHAPE_Area": 1083.7940761499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358416.205200001597404, 257737.333299998193979 ], [ 358365.301399998366833, 257749.371199999004602 ], [ 358372.385600000619888, 257769.694099999964237 ], [ 358386.940600000321865, 257764.958099998533726 ], [ 358411.097599998116493, 257768.95549999922514 ], [ 358416.205200001597404, 257737.333299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804044500", "MAP": "D9-1158-T73", "PARCEL_NAM": "5-H", "ACRE": ".604", "LONGITUDE": -64.93606025, "LATITUDE": 18.34917867, "OBJECTID_1": 4672, "PARCEL_NO_": "102804044500", "Tax_Legal_": "AGNES FANCY 5H LITTLE NORTHSIDE", "Name": "JOSEPH R. & KELLI H. SMOLARZ LIVING REVOC TRUST", "Address": "PO Box 10553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 95600, "Improved_V": 374300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.569459091, "SHAPE_Area": 1851.51730318 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358274.9746999964118, 257750.953899998217821 ], [ 358255.954000003635883, 257711.956999998539686 ], [ 358233.298100002110004, 257721.05970000103116 ], [ 358221.048799999058247, 257739.113499999046326 ], [ 358240.23309999704361, 257758.902199998497963 ], [ 358283.693000003695488, 257768.757100000977516 ], [ 358274.9746999964118, 257750.953899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704045200", "MAP": "B9-145-T66", "PARCEL_NAM": "6A-21", "ACRE": null, "LONGITUDE": -64.95297472, "LATITUDE": 18.3491219, "OBJECTID_1": 3587, "PARCEL_NO_": "102704045200", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 6A-21 No.3 LITTLE NORTHSIDE QTR.", "Name": "R. JAMILA HARRIS & LENNOX O.M. GREENAWAY LIV TR", "Address": "PO Box 305075", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 5500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.978863171, "SHAPE_Area": 2359.5843151499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356474.800800003111362, 257698.434599999338388 ], [ 356426.242200002074242, 257719.146499998867512 ], [ 356423.535599999129772, 257752.899300001561642 ], [ 356461.603100001811981, 257733.157000001519918 ], [ 356483.427500002086163, 257727.00279999896884 ], [ 356503.587099999189377, 257726.956700000911951 ], [ 356506.227200001478195, 257701.013799998909235 ], [ 356474.800800003111362, 257698.434599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9098851, "LATITUDE": 18.34907745, "OBJECTID_1": 5826, "PARCEL_NO_": "103003033000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4D 3 ROSENDAHL GR NORTHSI", "Name": "JOHN PARR REVOCABLE TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.412569752, "SHAPE_Area": 3682.0065749400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361041.099899999797344, 257724.512899998575449 ], [ 360994.336999997496605, 257717.252399999648333 ], [ 360994.318800002336502, 257719.381599999964237 ], [ 360986.167599998414516, 257729.658500000834465 ], [ 360993.721799999475479, 257789.459800001233816 ], [ 360997.760600000619888, 257788.648400001227856 ], [ 361026.84179999679327, 257782.553700000047684 ], [ 361055.923000000417233, 257776.45890000090003 ], [ 361043.390600003302097, 257733.082100000232458 ], [ 361041.099899999797344, 257724.512899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903036000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92463072, "LATITUDE": 18.34903663, "OBJECTID_1": 4872, "PARCEL_NO_": "102903036000", "Tax_Legal_": "HOSPITAL GROUND 279 GREAT NORTHSIDE QTR", "Name": "POTTS, J & L. //R. R. #1", "Address": "798 Province Line Rd", "City": "Allentown", "State": "New Jersey", "Zip": 8501, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.49147509599999, "SHAPE_Area": 2398.8540586399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359431.215499997138977, 257704.521499998867512 ], [ 359457.14019999653101, 257774.682000000029802 ], [ 359487.591300003230572, 257769.955600000917912 ], [ 359462.411499999463558, 257696.711199998855591 ], [ 359438.184299997985363, 257700.945799998939037 ], [ 359431.215499997138977, 257704.521499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003028600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91577831, "LATITUDE": 18.34908712, "OBJECTID_1": 5794, "PARCEL_NO_": "103003028600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-1-B GREAT NORTHSIDE", "Name": "SABNANI, NEIL", "Address": "PO Box 1581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 91500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.901410072, "SHAPE_Area": 2300.44051296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360428.109499998390675, 257735.645700000226498 ], [ 360402.465700000524521, 257716.859600000083447 ], [ 360374.06139999628067, 257738.158599998801947 ], [ 360371.61540000140667, 257741.304999999701977 ], [ 360364.218400001525879, 257757.709800001233816 ], [ 360361.781400002539158, 257759.800799999386072 ], [ 360388.233300000429153, 257778.382399998605251 ], [ 360395.445200003683567, 257783.718800000846386 ], [ 360428.109499998390675, 257735.645700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703044000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96467027, "LATITUDE": 18.34926414, "OBJECTID_1": 3377, "PARCEL_NO_": "102703044000", "Tax_Legal_": "LINDBERG BAY 36F SOUTHSIDE QTR", "Name": "MAGRAS, ANN & ANTOINE", "Address": "7006 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.00147341, "SHAPE_Area": 1130.5138911900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355250.395900003612041, 257738.020399998873472 ], [ 355248.203500002622604, 257711.404699999839067 ], [ 355239.323299996554852, 257712.598600000143051 ], [ 355198.962700001895428, 257717.5456000007689 ], [ 355202.150200001895428, 257722.004599999636412 ], [ 355204.526000000536442, 257727.090300001204014 ], [ 355209.248800002038479, 257740.638900000602007 ], [ 355250.395900003612041, 257738.020399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703034800", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-29", "ACRE": "0.39", "LONGITUDE": -64.95863566, "LATITUDE": 18.34929133, "OBJECTID_1": 3335, "PARCEL_NO_": "102703034800", "Tax_Legal_": "108A-29 CONTANT NO.7B SOUTHSIDE QTR.", "Name": "VASA HOLDINGS INC", "Address": "PO Box 1511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 45200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.624658829, "SHAPE_Area": 781.93338322600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355881.715199999511242, 257745.931699998676777 ], [ 355883.550800003111362, 257719.771099999547005 ], [ 355872.249799996614456, 257721.156300000846386 ], [ 355856.881300002336502, 257726.730000000447035 ], [ 355842.286799997091293, 257736.1097999997437 ], [ 355837.411100000143051, 257740.50279999896884 ], [ 355837.391400001943111, 257742.824700001627207 ], [ 355881.715199999511242, 257745.931699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703044100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96426775, "LATITUDE": 18.34922833, "OBJECTID_1": 3378, "PARCEL_NO_": "102703044100", "Tax_Legal_": "LINDBERG BAY 36H S S QTR", "Name": "PHILLIPS, MARIA & DORIS", "Address": "PO Box 7911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.516146714, "SHAPE_Area": 1138.1763411699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355289.368600003421307, 257706.675299998372793 ], [ 355248.203500002622604, 257711.404699999839067 ], [ 355250.395900003612041, 257738.020399998873472 ], [ 355290.734899997711182, 257735.606300000101328 ], [ 355289.368600003421307, 257706.675299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703044600", "MAP": "B9-273-T70", "PARCEL_NAM": "37L", "ACRE": null, "LONGITUDE": -64.96531541, "LATITUDE": 18.3491768, "OBJECTID_1": 3382, "PARCEL_NO_": "102703044600", "Tax_Legal_": "LINDBERG BAY 37L S S QTR", "Name": "DAVENPORT, WANDA", "Address": "11325 Cambray Creek Loop", "City": "RIVER VIEW", "State": "Florida", "Zip": 33565, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.3337382, "SHAPE_Area": 828.03366605300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355126.174099996685982, 257720.226100001484156 ], [ 355168.450800001621246, 257728.061299998313189 ], [ 355185.987499997019768, 257714.922699999064207 ], [ 355182.109300002455711, 257708.119500000029802 ], [ 355178.090300001204014, 257706.609000001102686 ], [ 355169.226300001144409, 257705.903099998831749 ], [ 355155.509999997913837, 257706.8462999984622 ], [ 355140.960400000214577, 257710.949099998921156 ], [ 355132.051399998366833, 257715.520300000905991 ], [ 355126.174099996685982, 257720.226100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903030100", "MAP": "D9-8106-T008", "PARCEL_NAM": "30C", "ACRE": "1.251", "LONGITUDE": -64.93276822, "LATITUDE": 18.34898701, "OBJECTID_1": 4810, "PARCEL_NO_": "102903030100", "Tax_Legal_": "30C ESTATE ELIZABETH No.8I NORTHSIDE QTR.", "Name": "WARRELL, LIONEL", "Address": "8476 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 185100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.84061142199999, "SHAPE_Area": 4760.2742357699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358614.368199996650219, 257679.109499998390675 ], [ 358604.64750000089407, 257684.307300001382828 ], [ 358586.829499997198582, 257693.449599999934435 ], [ 358542.214400000870228, 257724.537300001829863 ], [ 358571.896899998188019, 257742.512099999934435 ], [ 358580.707000002264977, 257749.550299998372793 ], [ 358588.682099997997284, 257759.959199998527765 ], [ 358591.889300003647804, 257762.096400000154972 ], [ 358601.556100003421307, 257763.230999998748302 ], [ 358616.874200001358986, 257763.567400000989437 ], [ 358620.918399997055531, 257762.122900001704693 ], [ 358623.357100002467632, 257759.820799998939037 ], [ 358632.445900000631809, 257734.141800001263618 ], [ 358634.965499997138977, 257722.3412000015378 ], [ 358636.817299999296665, 257694.280900001525879 ], [ 358631.210900001227856, 257689.802000001072884 ], [ 358618.336900003254414, 257686.530299998819828 ], [ 358615.136799998581409, 257683.548799999058247 ], [ 358614.368199996650219, 257679.109499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704061500", "MAP": "A9-412-T93", "PARCEL_NAM": "107-31", "ACRE": "0.25", "LONGITUDE": -64.9569813, "LATITUDE": 18.34915551, "OBJECTID_1": 3660, "PARCEL_NO_": "102704061500", "Tax_Legal_": "107-31 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "WESTON, DAVID F and ALMA V", "Address": "3802 Gasvaerks Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.61803120499999, "SHAPE_Area": 1092.73190365 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356060.874799996614456, 257728.821800000965595 ], [ 356053.06700000166893, 257698.782600000500679 ], [ 356017.439999997615814, 257716.011799998581409 ], [ 356028.50900000333786, 257741.855799999088049 ], [ 356060.874799996614456, 257728.821800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92433911000001, "LATITUDE": 18.34895448, "OBJECTID_1": 5049, "PARCEL_NO_": "102904023200", "Tax_Legal_": "HOSPITAL GROUND 280 GR NORTHSIDE", "Name": "GOMEZ, EZRA", "Address": "PO Box 503123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 76600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.673254087, "SHAPE_Area": 2579.2350806 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359515.045500002801418, 257765.536299999803305 ], [ 359494.05179999768734, 257674.171999998390675 ], [ 359490.760099999606609, 257681.95549999922514 ], [ 359481.80969999730587, 257691.381499998271465 ], [ 359472.101599998772144, 257695.101700000464916 ], [ 359462.411499999463558, 257696.711199998855591 ], [ 359487.591300003230572, 257769.955600000917912 ], [ 359515.045500002801418, 257765.536299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704061300", "MAP": "A9-412-T93", "PARCEL_NAM": "107-29", "ACRE": "0.27", "LONGITUDE": -64.95627186, "LATITUDE": 18.34916862, "OBJECTID_1": 3658, "PARCEL_NO_": "102704061300", "Tax_Legal_": "107-29 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "FRANCIS, ADONIS & COLON EMILY", "Address": "PO Box 11178", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 610700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.163370689, "SHAPE_Area": 1000.13755239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356135.890600003302097, 257726.058200001716614 ], [ 356128.012699998915195, 257704.2511 ], [ 356093.240599997341633, 257715.787799999117851 ], [ 356103.497900001704693, 257742.258400000631809 ], [ 356125.332999996840954, 257734.837799999862909 ], [ 356130.194300003349781, 257732.133299998939037 ], [ 356135.890600003302097, 257726.058200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9663599, "LATITUDE": 18.34910779, "OBJECTID_1": 3370, "PARCEL_NO_": "102703043300", "Tax_Legal_": "LINDBERG BAY 39Q 4A S S QTR", "Name": "BELLE, KIBWE K.", "Address": "PO Box 9722", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.89015996800001, "SHAPE_Area": 955.12039218699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355055.694399997591972, 257686.397700000554323 ], [ 355026.453199997544289, 257711.278499998152256 ], [ 355044.01410000026226, 257732.320500001311302 ], [ 355071.737999998033047, 257696.23930000141263 ], [ 355067.749600000679493, 257691.140399999916553 ], [ 355060.49099999666214, 257691.292100001126528 ], [ 355055.694399997591972, 257686.397700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032200", "MAP": "G9-510-T59", "PARCEL_NAM": "5", "ACRE": "0.40", "LONGITUDE": -64.92981117, "LATITUDE": 18.34883966, "OBJECTID_1": 4833, "PARCEL_NO_": "102903032200", "Tax_Legal_": "LYTTONS FANCY 5 QUEENS QTR", "Name": "RAIMER, CARMEN QUESTEL", "Address": "PO Box 126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.42973699000001, "SHAPE_Area": 1708.8475626500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358922.795500002801418, 257659.474899999797344 ], [ 358908.042700000107288, 257649.563200000673532 ], [ 358908.005300000309944, 257653.193900000303984 ], [ 358907.977799996733665, 257655.865299999713898 ], [ 358906.183499999344349, 257677.171100001782179 ], [ 358906.136799998581409, 257682.659099999815226 ], [ 358904.16950000077486, 257710.961899999529123 ], [ 358900.622800000011921, 257761.985199999064207 ], [ 358903.039899997413158, 257762.215999998152256 ], [ 358916.732799999415874, 257764.0168999992311 ], [ 358920.137100003659725, 257709.151099998503923 ], [ 358921.406400002539158, 257688.694699998944998 ], [ 358921.445900000631809, 257684.050999999046326 ], [ 358922.430299997329712, 257663.160799998790026 ], [ 358922.587700001895428, 257661.572200000286102 ], [ 358922.795500002801418, 257659.474899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803028700", "MAP": "D9-9427-T020", "PARCEL_NAM": "RECONFIG. 55A-7", "ACRE": "0.30", "LONGITUDE": -64.94591297, "LATITUDE": 18.34924404, "OBJECTID_1": 4347, "PARCEL_NO_": "102803028700", "Tax_Legal_": "SOLBERG 55A-7 LITTLE NORTHSIDE", "Name": "LAPLACE, EDWARD R", "Address": "2H ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52600, "Improved_V": 88000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.13947621, "SHAPE_Area": 1261.79405103 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357212.418499998748302, 257723.047899998724461 ], [ 357210.108000002801418, 257721.024500001221895 ], [ 357171.702600002288818, 257735.211599998176098 ], [ 357180.134199999272823, 257739.094999998807907 ], [ 357227.340000003576279, 257760.837099999189377 ], [ 357240.432599999010563, 257747.55290000140667 ], [ 357212.418499998748302, 257723.047899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92409789, "LATITUDE": 18.34879193, "OBJECTID_1": 5050, "PARCEL_NO_": "102904023300", "Tax_Legal_": "281 HOSPITAL GROUND GREAT NORTHSIDE QTR", "Name": "SIMMONDS, DENICE E. & RUFUS V. & ESTATE OF EUNICE SIMMONDS", "Address": "PO Box 8965", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81000, "Improved_V": 93200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.23987695199997, "SHAPE_Area": 2825.6958571300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359539.269000001251698, 257761.723700001835823 ], [ 359516.057800002396107, 257646.698899999260902 ], [ 359507.147100001573563, 257651.481100000441074 ], [ 359501.450699999928474, 257657.556200001388788 ], [ 359494.05179999768734, 257674.171999998390675 ], [ 359515.045500002801418, 257765.536299999803305 ], [ 359539.269000001251698, 257761.723700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704047500", "MAP": "B9-145-T66", "PARCEL_NAM": "6A-22", "ACRE": null, "LONGITUDE": -64.95345181, "LATITUDE": 18.34903061, "OBJECTID_1": 3606, "PARCEL_NO_": "102704047500", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-22 LITTLE NORTHSIDE", "Name": "HUGGINS, ALBERT & LAUREM", "Address": "235 Fort Washigton Ave", "City": "New York", "State": "New York", "Zip": 10032, "Country": "United States", "Land_Value": 67700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.47842212, "SHAPE_Area": 2123.6763535499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356395.859499998390675, 257688.711500000208616 ], [ 356369.62049999833107, 257739.792500000447035 ], [ 356426.242200002074242, 257719.146499998867512 ], [ 356474.800800003111362, 257698.434599999338388 ], [ 356403.891999997198582, 257692.365800000727177 ], [ 356395.859499998390675, 257688.711500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704045500", "MAP": "B9-145-T66", "PARCEL_NAM": "6A-23", "ACRE": null, "LONGITUDE": -64.95229862, "LATITUDE": 18.34910056, "OBJECTID_1": 3590, "PARCEL_NO_": "102704045500", "Tax_Legal_": "6A-23 LILLIENDAHL & MARIENHOJ No.3 LITTLE NORTHSIDE", "Name": "JEFFERY L. & LILLY B. CHANDLER REV. TRST", "Address": "PO Box 7931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38700, "Improved_V": 418600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.20466704200001, "SHAPE_Area": 1715.4337245900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356506.227200001478195, 257701.013799998909235 ], [ 356503.587099999189377, 257726.956700000911951 ], [ 356515.667400002479553, 257728.744300000369549 ], [ 356561.528300002217293, 257740.729800000786781 ], [ 356563.430399999022484, 257706.759300000965595 ], [ 356506.227200001478195, 257701.013799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803029400", "MAP": "F9-3853-T80", "PARCEL_NAM": "55B-1", "ACRE": null, "LONGITUDE": -64.94732182, "LATITUDE": 18.34887267, "OBJECTID_1": 4354, "PARCEL_NO_": "102803029400", "Tax_Legal_": "SOLBERG 55B-1 LT. NORTHSIDE", "Name": "QUETEL, JERRY A", "Address": "PO Box 308515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79800, "Improved_V": 215400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.70672023200001, "SHAPE_Area": 2358.1845826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357062.260899998247623, 257743.350400000810623 ], [ 357079.320600003004074, 257735.021099999547005 ], [ 357089.626800000667572, 257730.316700000315905 ], [ 357056.332099996507168, 257649.988200001418591 ], [ 357048.019299998879433, 257654.980700001120567 ], [ 357038.177400000393391, 257661.68129999935627 ], [ 357034.370300002396107, 257663.445599999278784 ], [ 357040.230800002813339, 257678.997699998319149 ], [ 357062.260899998247623, 257743.350400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703033900", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-8", "ACRE": "0.43", "LONGITUDE": -64.95893581, "LATITUDE": 18.34899872, "OBJECTID_1": 3330, "PARCEL_NO_": "102703033900", "Tax_Legal_": "CONTANT 108A-8 7B S S QTR", "Name": "MORRIS, RUTH E", "Address": "PO BOX 564", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40600, "Improved_V": 317600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.536869473, "SHAPE_Area": 1972.6212205700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355844.305799998342991, 257688.419100001454353 ], [ 355825.93860000371933, 257667.37049999833107 ], [ 355803.110100001096725, 257696.736800000071526 ], [ 355837.479500003159046, 257732.481800001114607 ], [ 355850.461400002241135, 257723.088899999856949 ], [ 355868.25959999859333, 257716.268399998545647 ], [ 355844.305799998342991, 257688.419100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904021400", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-4", "ACRE": ".50", "LONGITUDE": -64.91743903, "LATITUDE": 18.34895234, "OBJECTID_1": 5022, "PARCEL_NO_": "102904021400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1G-4 POR 47 EST THOMAS", "Name": "REEVE, JOHN & JUDITH NANCY (TRUSTEES)", "Address": "PO Box 8803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96100, "Improved_V": 738600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.83794558899999, "SHAPE_Area": 1961.46919381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360246.498499996960163, 257756.535199999809265 ], [ 360219.60360000282526, 257695.309099998325109 ], [ 360192.849600002169609, 257712.188700001686811 ], [ 360218.984999999403954, 257767.920200001448393 ], [ 360246.498499996960163, 257756.535199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804035800", "MAP": "G9-1954-T72", "PARCEL_NAM": "3Q", "ACRE": ".27", "LONGITUDE": -64.9347947, "LATITUDE": 18.34910165, "OBJECTID_1": 4653, "PARCEL_NO_": "102804035800", "Tax_Legal_": "AGNES FANCY 3Q GR NORTHSIDE", "Name": "BRYAN, DENIS JOSEPH & CLEMENTINE QUETEL", "Address": "PO Box 8203", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32500, "Improved_V": 258200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.568407106, "SHAPE_Area": 1117.66781371 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358423.479999996721745, 257735.281899999827147 ], [ 358416.244800001382828, 257732.689500000327826 ], [ 358384.935199998319149, 257716.3902000002563 ], [ 358380.905500002205372, 257716.146099999547005 ], [ 358377.67119999974966, 257717.17509999871254 ], [ 358375.232500001788139, 257719.477200001478195 ], [ 358353.181599996984005, 257752.227299999445677 ], [ 358365.301399998366833, 257749.371199999004602 ], [ 358416.205200001597404, 257737.333299998193979 ], [ 358423.479999996721745, 257735.281899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92383445, "LATITUDE": 18.34871957, "OBJECTID_1": 5051, "PARCEL_NO_": "102904023400", "Tax_Legal_": "HOSPITAL GROUND 282 GR NORTHSIDE", "Name": "PLASKETT, RAYMOND", "Address": "PO Box 6733", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 93400, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.35259234400002, "SHAPE_Area": 3867.9685881800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359571.568300001323223, 257756.499699998646975 ], [ 359548.366099998354912, 257640.419399999082088 ], [ 359516.057800002396107, 257646.698899999260902 ], [ 359539.269000001251698, 257761.723700001835823 ], [ 359547.3429000005126, 257760.523299999535084 ], [ 359571.568300001323223, 257756.499699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.935694, "LATITUDE": 18.34899944, "OBJECTID_1": 4612, "PARCEL_NO_": "102804029200", "Tax_Legal_": "AGNES FANCY 5I GT. NORTHSIDE", "Name": "ANDY J LAPLACE FAM TR", "Address": "6301 Cowpet Bay E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.33812124599999, "SHAPE_Area": 2310.00174341 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358321.148400001227856, 257726.21169999986887 ], [ 358304.724600002169609, 257692.449599999934435 ], [ 358255.954000003635883, 257711.956999998539686 ], [ 358274.9746999964118, 257750.953899998217821 ], [ 358324.318000003695488, 257732.781500000506639 ], [ 358321.148400001227856, 257726.21169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003026000", "MAP": "D9-413-T64", "PARCEL_NAM": "3-19", "ACRE": ".51", "LONGITUDE": -64.91448686, "LATITUDE": 18.3489558, "OBJECTID_1": 5776, "PARCEL_NO_": "103003026000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-19 GR NORTHSIDE", "Name": "PETERSEN, ROBERT", "Address": "PO Box 12095", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67800, "Improved_V": 6300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.49031112899999, "SHAPE_Area": 2342.13828973 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360542.927699998021126, 257698.799699999392033 ], [ 360540.52139999717474, 257697.302299998700619 ], [ 360534.780100002884865, 257708.654399998486042 ], [ 360493.244499996304512, 257756.86600000038743 ], [ 360511.690800003707409, 257768.627099998295307 ], [ 360535.971900001168251, 257758.059999998658895 ], [ 360541.648500002920628, 257754.306800000369549 ], [ 360547.346600003540516, 257748.020599998533726 ], [ 360554.749099999666214, 257730.982700001448393 ], [ 360558.836400002241135, 257724.472199998795986 ], [ 360561.305699996650219, 257718.581799998879433 ], [ 360566.201099999248981, 257711.866900000721216 ], [ 360542.927699998021126, 257698.799699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043600", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-31", "ACRE": "0.43", "LONGITUDE": -64.95771196, "LATITUDE": 18.34909152, "OBJECTID_1": 3574, "PARCEL_NO_": "102704043600", "Tax_Legal_": "CONTANT 108A-31 7B SOUTHSIDE QTR", "Name": "GEIGER, TRACY & ANGELA", "Address": "4028 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 291600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.769305089, "SHAPE_Area": 1056.9022502800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355984.357799999415874, 257718.485199999064207 ], [ 355973.276199996471405, 257694.11879999935627 ], [ 355945.894000001251698, 257690.094999998807907 ], [ 355961.082599997520447, 257705.629099998623133 ], [ 355961.032300002872944, 257711.539299998432398 ], [ 355958.571999996900558, 257716.374299999326468 ], [ 355954.526000000536442, 257718.030000001192093 ], [ 355934.373599998652935, 257717.231699999421835 ], [ 355906.138300001621246, 257718.689399998635054 ], [ 355943.993600003421307, 257723.854400001466274 ], [ 355989.903099998831749, 257730.140700001269579 ], [ 355984.357799999415874, 257718.485199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704061600", "MAP": "A9-412-T93", "PARCEL_NAM": "107-32", "ACRE": "0.25", "LONGITUDE": -64.95667361, "LATITUDE": 18.34902793, "OBJECTID_1": 3661, "PARCEL_NO_": "102704061600", "Tax_Legal_": "CONTANT 107-32 7B SOUTHSIDE QUARTER", "Name": "LETTSOME, JUSTIN A. & JUDITH P", "Address": "P.O. BOX 5820", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.4307125, "SHAPE_Area": 1076.82008066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356093.240599997341633, 257715.787799999117851 ], [ 356083.816600002348423, 257686.157499998807907 ], [ 356074.929099999368191, 257688.195700000971556 ], [ 356053.06700000166893, 257698.782600000500679 ], [ 356060.874799996614456, 257728.821800000965595 ], [ 356093.240599997341633, 257715.787799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703044400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96566053, "LATITUDE": 18.34903911, "OBJECTID_1": 3380, "PARCEL_NO_": "102703044400", "Tax_Legal_": "LINDBERG BAY 38 HL S S QTR", "Name": "TURNBULL, MITCHELL & STEPHANIE", "Address": "PO Box 961", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.25923344399999, "SHAPE_Area": 1357.6602561300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355125.922700002789497, 257677.684399999678135 ], [ 355117.033500000834465, 257679.933600001037121 ], [ 355091.741099998354912, 257714.557100001722574 ], [ 355095.75110000371933, 257717.122999999672174 ], [ 355103.792700000107288, 257719.721900001168251 ], [ 355111.854000002145767, 257719.999000001698732 ], [ 355117.516199998557568, 257717.934399999678135 ], [ 355128.061200000345707, 257710.632500000298023 ], [ 355141.829599998891354, 257703.567999999970198 ], [ 355153.951300002634525, 257700.500799998641014 ], [ 355165.244999997317791, 257699.959899999201298 ], [ 355171.699100002646446, 257699.590599998831749 ], [ 355167.685599997639656, 257697.446800000965595 ], [ 355129.869800001382828, 257687.638099998235703 ], [ 355128.264399997889996, 257686.780499998480082 ], [ 355127.483199998736382, 257683.818799998611212 ], [ 355125.883199997246265, 257682.328099999576807 ], [ 355125.922700002789497, 257677.684399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93814447, "LATITUDE": 18.34901048, "OBJECTID_1": 4548, "PARCEL_NO_": "102804024400", "Tax_Legal_": "AGNES FANCY 124 QUEENS QTR", "Name": "HODGE, ARTHUR S & DELMA", "Address": "BOX 2021", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.369028773, "SHAPE_Area": 855.88754411699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358049.451700001955032, 257720.399399999529123 ], [ 358027.065600000321865, 257697.840199999511242 ], [ 358025.422399997711182, 257701.415399998426437 ], [ 358019.697300001978874, 257710.86769999936223 ], [ 358014.002700001001358, 257716.731800001114607 ], [ 358013.147900000214577, 257722.424300000071526 ], [ 358036.349299997091293, 257743.934599999338388 ], [ 358040.434799998998642, 257737.635299999266863 ], [ 358044.549099996685982, 257727.958599999547005 ], [ 358049.451700001955032, 257720.399399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92357506, "LATITUDE": 18.3486913, "OBJECTID_1": 5052, "PARCEL_NO_": "102904023500", "Tax_Legal_": "HOSPITAL GROUND 283 GR NORTHSIDE QTR", "Name": "ROGERS, SHARLINE", "Address": "2103 Bonne Esperance", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.78969365199998, "SHAPE_Area": 2622.4673031299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359571.568300001323223, 257756.499699998646975 ], [ 359595.795400001108646, 257752.265000000596046 ], [ 359590.334600001573563, 257730.688700001686811 ], [ 359584.877400003373623, 257708.690400000661612 ], [ 359577.884999997913837, 257677.602400001138449 ], [ 359572.427799999713898, 257655.603999998420477 ], [ 359567.751800000667572, 257636.567299999296665 ], [ 359548.366099998354912, 257640.419399999082088 ], [ 359571.568300001323223, 257756.499699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96696076000001, "LATITUDE": 18.34910205, "OBJECTID_1": 2719, "PARCEL_NO_": "102604023200", "Tax_Legal_": "LINDBERG 39P S S QTR", "Name": "GUMBS, GILBERTH & THELMA & SEAN A", "Address": "16315 130th Ave", "City": "Jamaica", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 21700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.328780948, "SHAPE_Area": 1054.6921780499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354993.572400003671646, 257690.111099999397993 ], [ 354962.858800001442432, 257698.514600001275539 ], [ 354963.485299997031689, 257719.629099998623133 ], [ 355010.280199997127056, 257716.63459999859333 ], [ 355010.362899996340275, 257706.924899999052286 ], [ 354993.572400003671646, 257690.111099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94704041, "LATITUDE": 18.3487531, "OBJECTID_1": 4328, "PARCEL_NO_": "102803025900", "Tax_Legal_": "SOLBERG 55B-2 LT.NORTHSIDE QTR.", "Name": "GREAUX, GERMAIN RICHARD AND IRENE ANN QUETEL", "Address": "PO Box 306423", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 102300, "Improved_V": 348200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.912277864, "SHAPE_Area": 3215.8110277400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357089.626800000667572, 257730.316700000315905 ], [ 357091.512000001966953, 257729.456199999898672 ], [ 357097.816899999976158, 257728.613099999725819 ], [ 357104.293499998748302, 257725.088500000536442 ], [ 357115.610699996352196, 257716.386500000953674 ], [ 357124.659400001168251, 257710.050799999386072 ], [ 357127.872500002384186, 257708.634799998253584 ], [ 357088.183700002729893, 257641.330200001597404 ], [ 357080.149899996817112, 257642.859600000083447 ], [ 357059.643200002610683, 257647.999699998646975 ], [ 357056.332099996507168, 257649.988200001418591 ], [ 357089.626800000667572, 257730.316700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704061800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95606013, "LATITUDE": 18.34892243, "OBJECTID_1": 3663, "PARCEL_NO_": "102704061800", "Tax_Legal_": "CONTANT 107-34 7B SOUTHSIDE QUARTER", "Name": "SASSO, JAMES & RISA", "Address": "PO Box 306851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20700, "Improved_V": 387000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.17217986, "SHAPE_Area": 1090.6884953000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356154.599399998784065, 257707.001899998635054 ], [ 356145.211400002241135, 257673.149999998509884 ], [ 356118.561700001358986, 257677.787099998444319 ], [ 356128.012699998915195, 257704.2511 ], [ 356135.890600003302097, 257726.058200001716614 ], [ 356154.599399998784065, 257707.001899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703044900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96475426000001, "LATITUDE": 18.34902849, "OBJECTID_1": 3385, "PARCEL_NO_": "102703044900", "Tax_Legal_": "LINDBERG BAY 36G SOUTHSIDE QTR", "Name": "PETERSEN, SR. EMMET & ELVIS", "Address": "7271 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.762762767, "SHAPE_Area": 1219.45041756 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355233.918300002813339, 257684.478900000452995 ], [ 355200.037000000476837, 257686.101399999111891 ], [ 355197.371699996292591, 257714.999400001019239 ], [ 355198.962700001895428, 257717.5456000007689 ], [ 355239.323299996554852, 257712.598600000143051 ], [ 355239.565999999642372, 257684.102899998426437 ], [ 355233.918300002813339, 257684.478900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904025300", "MAP": "G9-1021-T68", "PARCEL_NAM": "284-E", "ACRE": ".22", "LONGITUDE": -64.92318867, "LATITUDE": 18.34905109, "OBJECTID_1": 5069, "PARCEL_NO_": "102904025300", "Tax_Legal_": "HOSPITAL GROUND 284E KINGS QTR", "Name": "LABORDE, ALPHONSE", "Address": "PO Box 392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.63918867300001, "SHAPE_Area": 822.18738888300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359629.890699997544289, 257725.524099998176098 ], [ 359590.334600001573563, 257730.688700001686811 ], [ 359595.795400001108646, 257752.265000000596046 ], [ 359602.254900000989437, 257751.26240000128746 ], [ 359632.135200001299381, 257746.018500000238419 ], [ 359629.890699997544289, 257725.524099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93138655, "LATITUDE": 18.34907183, "OBJECTID_1": 4808, "PARCEL_NO_": "102903022800", "Tax_Legal_": "MAFOLIE 23-31 GR NORTHSIDE", "Name": "FSA ST THOMAS LLC", "Address": "7091 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.92412304199999, "SHAPE_Area": 516.15107538899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358717.114399999380112, 257721.642000000923872 ], [ 358717.022699996829033, 257732.407000001519918 ], [ 358752.444700002670288, 257739.240800000727177 ], [ 358785.453199997544289, 257745.421599999070168 ], [ 358786.286399997770786, 257742.261999998241663 ], [ 358775.023199997842312, 257739.214499998837709 ], [ 358749.296800002455711, 257730.138099998235703 ], [ 358717.114399999380112, 257721.642000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904021500", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-5", "ACRE": ".50", "LONGITUDE": -64.91715795, "LATITUDE": 18.34881348, "OBJECTID_1": 5023, "PARCEL_NO_": "102904021500", "Tax_Legal_": "CONSOLIDATED 1G-5 ST JOSEPH & ROSENDAHL NO.4 GRT NORTHSIDE QTR", "Name": "CURRERI, LISA A. (TRUSTEE)", "Address": "PO Box 6047", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 140000, "Improved_V": 581000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.39221227600001, "SHAPE_Area": 2512.93994011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360280.498499996960163, 257740.981499999761581 ], [ 360249.60080000013113, 257676.345100000500679 ], [ 360219.60360000282526, 257695.309099998325109 ], [ 360246.498499996960163, 257756.535199999809265 ], [ 360261.069700002670288, 257749.899500001221895 ], [ 360280.498499996960163, 257740.981499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703044700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96512746000001, "LATITUDE": 18.34882448, "OBJECTID_1": 3383, "PARCEL_NO_": "102703044700", "Tax_Legal_": "LINDBERG BAY 37I 4A SOUTHSIDE QTR", "Name": "FAHIE, ALFRED & LESMORA", "Address": "7473 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.51516428900001, "SHAPE_Area": 1750.92624828 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355197.371699996292591, 257714.999400001019239 ], [ 355200.037000000476837, 257686.101399999111891 ], [ 355197.954300001263618, 257646.609900001436472 ], [ 355179.310199998319149, 257658.067400000989437 ], [ 355159.066100001335144, 257668.034200001507998 ], [ 355146.928199999034405, 257673.0011 ], [ 355136.381399996578693, 257680.514199998229742 ], [ 355165.356499999761581, 257686.872999999672174 ], [ 355179.009900003671646, 257693.317600000649691 ], [ 355185.417199999094009, 257698.436299998313189 ], [ 355189.410999998450279, 257702.901900000870228 ], [ 355197.371699996292591, 257714.999400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704062700", "MAP": "A9-412-T93", "PARCEL_NAM": "107-43", "ACRE": "0.39", "LONGITUDE": -64.95738041, "LATITUDE": 18.34891591, "OBJECTID_1": 3672, "PARCEL_NO_": "102704062700", "Tax_Legal_": "107-43 ESTATE CONTANT 7B SOUTHSIDE QTR", "Name": "STOUT, DANNY & FLOYD & PATRIA", "Address": "9852 Royal Commerce Pl", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20774, "Country": "United States", "Land_Value": 53900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.53001521499999, "SHAPE_Area": 1547.9513115899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356002.533600002527237, 257667.338199999183416 ], [ 355973.276199996471405, 257694.11879999935627 ], [ 355984.357799999415874, 257718.485199999064207 ], [ 355997.244400002062321, 257720.279399998486042 ], [ 355995.662399999797344, 257716.67790000140667 ], [ 356011.046999998390675, 257709.2043999992311 ], [ 356011.07039999961853, 257706.460400000214577 ], [ 356015.101999998092651, 257706.493400000035763 ], [ 356019.149700000882149, 257704.6266999989748 ], [ 356013.829199999570847, 257666.586300000548363 ], [ 356008.982299998402596, 257667.602099999785423 ], [ 356002.533600002527237, 257667.338199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92206129, "LATITUDE": 18.34894797, "OBJECTID_1": 5062, "PARCEL_NO_": "102904024500", "Tax_Legal_": "HOSPITAL GROUND 288A GR NORTHSIDE", "Name": "DE LUGO, YANTHA", "Address": "BOX 5264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.495918256, "SHAPE_Area": 871.12182445099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359738.111000001430511, 257705.933699999004602 ], [ 359718.748700000345707, 257707.041799999773502 ], [ 359723.214299999177456, 257750.774700000882149 ], [ 359744.208999998867512, 257747.357999999076128 ], [ 359738.111000001430511, 257705.933699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003028300", "MAP": "D9-413-T64", "PARCEL_NAM": "2-19", "ACRE": ".50", "LONGITUDE": -64.91480583000001, "LATITUDE": 18.34882983, "OBJECTID_1": 5791, "PARCEL_NO_": "103003028300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-19 GT. NORTHSIDE", "Name": "CHANDRU B & MONICA C WADHWANI TRUST", "Address": "PO Box 1041", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67000, "Improved_V": 392000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.06839022, "SHAPE_Area": 2497.7946724799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360534.780100002884865, 257708.654399998486042 ], [ 360498.697400003671646, 257684.716600000858307 ], [ 360486.428300000727177, 257705.092300001531839 ], [ 360466.861000001430511, 257730.263300001621246 ], [ 360462.766500003635883, 257737.618099998682737 ], [ 360493.244499996304512, 257756.86600000038743 ], [ 360534.780100002884865, 257708.654399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9454479, "LATITUDE": 18.34885615, "OBJECTID_1": 4296, "PARCEL_NO_": "102803022300", "Tax_Legal_": "SOLBERG 17 LITTLE NORTHSIDE QTR", "Name": "FLEMING, ALAN H. & PHILPOTT, A", "Address": "PO Box 305167", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61000, "Improved_V": 533600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.93677464699999, "SHAPE_Area": 949.78794068399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357237.717100001871586, 257702.590300001204014 ], [ 357259.829199999570847, 257722.217500001192093 ], [ 357264.090800002217293, 257715.449200000613928 ], [ 357264.92230000346899, 257712.500700000673532 ], [ 357266.549300000071526, 257710.825300000607967 ], [ 357268.190700002014637, 257707.461199998855591 ], [ 357269.83389999717474, 257703.886100001633167 ], [ 357270.670800000429153, 257700.304299999028444 ], [ 357280.497500002384186, 257682.652899999171495 ], [ 357257.152199998497963, 257678.028900001198053 ], [ 357250.620800003409386, 257687.474599998444319 ], [ 357241.643500000238419, 257700.066799998283386 ], [ 357237.717100001871586, 257702.590300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96652268, "LATITUDE": 18.34895814, "OBJECTID_1": 2720, "PARCEL_NO_": "102604023300", "Tax_Legal_": "LINDBERG 39R S S QTR", "Name": "REOVAN, JENNIFER", "Address": "PO Box 9618", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012618, "Country": "United States", "Land_Value": 21700, "Improved_V": 300000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.44256107300001, "SHAPE_Area": 932.30869668399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355054.988799996674061, 257674.570700000971556 ], [ 355004.077899999916553, 257687.452899999916553 ], [ 355026.453199997544289, 257711.278499998152256 ], [ 355055.694399997591972, 257686.397700000554323 ], [ 355054.988799996674061, 257674.570700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201013300", "MAP": "D9-7494-T004", "PARCEL_NAM": "32J", "ACRE": ".018", "LONGITUDE": -64.96426325, "LATITUDE": 18.34714989, "OBJECTID_1": 7465, "PARCEL_NO_": "105201013300", "Tax_Legal_": "32J LINDBERG BAY & 414 CONTANT 7A SOUTHSIDE QTR", "Name": "FRETT, SYLVANIE & SHANIQUE", "Address": "PO Box 10306", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.055476323199997, "SHAPE_Area": 56.566137183400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355268.292700000107288, 257499.039099998772144 ], [ 355274.958400003612041, 257498.078000001609325 ], [ 355273.54839999973774, 257481.309000000357628 ], [ 355268.292700000107288, 257499.039099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93062806, "LATITUDE": 18.34903311, "OBJECTID_1": 4823, "PARCEL_NO_": "102903031400", "Tax_Legal_": "1 ESTATE MAFOLIE No.8F GREAT NORTHSIDE QTR.", "Name": "PARCEL 1 & 2B ESTATE MAFOLIE LLC", "Address": "PO Box 12139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34900, "Improved_V": 329000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.779418307, "SHAPE_Area": 674.5316504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358811.517700001597404, 257714.81529999896884 ], [ 358806.530599996447563, 257732.295200001448393 ], [ 358814.546899996697903, 257737.849300000816584 ], [ 358822.593900002539158, 257739.815000001341105 ], [ 358845.964400000870228, 257741.483899999409914 ], [ 358847.5878000035882, 257740.230599999427795 ], [ 358847.611100003123283, 257737.486600000411272 ], [ 358839.632500000298023, 257727.499899998307228 ], [ 358833.230599999427795, 257721.747999999672174 ], [ 358826.799900002777576, 257719.3733000010252 ], [ 358817.13849999755621, 257717.605500001460314 ], [ 358811.517700001597404, 257714.81529999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033200", "MAP": "G9-799-T64", "PARCEL_NAM": "269", "ACRE": "0.43", "LONGITUDE": -64.92759934, "LATITUDE": 18.34887103, "OBJECTID_1": 4844, "PARCEL_NO_": "102903033200", "Tax_Legal_": "HOSPITAL GROUND 269 GREAT NORTHSIDE QTR", "Name": "BERETTA, GEORGE & E", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41100, "Improved_V": 183000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.37330848, "SHAPE_Area": 1704.45393298 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359130.300599999725819, 257683.438299998641014 ], [ 359127.563500002026558, 257682.337400000542402 ], [ 359132.875900000333786, 257741.272900000214577 ], [ 359139.850299999117851, 257741.710499998182058 ], [ 359158.620700001716614, 257742.888399999588728 ], [ 359163.720799997448921, 257743.159000001847744 ], [ 359162.720200002193451, 257728.256900001317263 ], [ 359160.954999998211861, 257701.968800000846386 ], [ 359160.306999996304512, 257692.317699998617172 ], [ 359156.846000000834465, 257691.0439000017941 ], [ 359155.093000002205372, 257690.657299999147654 ], [ 359139.943999998271465, 257687.316899999976158 ], [ 359135.783299997448921, 257685.643500000238419 ], [ 359130.300599999725819, 257683.438299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704061700", "MAP": "A9-412-T93", "PARCEL_NAM": "107-33", "ACRE": "0.26", "LONGITUDE": -64.95636338, "LATITUDE": 18.34892638, "OBJECTID_1": 3662, "PARCEL_NO_": "102704061700", "Tax_Legal_": "CONTANT 107-33 7B SOUTHSIDE QTR.", "Name": "RICHARDS, JEFFERSON M. & CARYL", "Address": "P.O. BOX 3428", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 183500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.56894484899999, "SHAPE_Area": 1068.8162961200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356118.561700001358986, 257677.787099998444319 ], [ 356083.816600002348423, 257686.157499998807907 ], [ 356093.240599997341633, 257715.787799999117851 ], [ 356128.012699998915195, 257704.2511 ], [ 356118.561700001358986, 257677.787099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703034200", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-5", "ACRE": "0.43", "LONGITUDE": -64.95813999000001, "LATITUDE": 18.34890627, "OBJECTID_1": 3332, "PARCEL_NO_": "102703034200", "Tax_Legal_": "CONTANT 108A-5 7B S S QTR", "Name": "MAGRAS, EDWARD F. & JALMA", "Address": "PO Box 306627", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40600, "Improved_V": 236900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.128438209, "SHAPE_Area": 1769.8162387499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355902.649800002574921, 257654.910599999129772 ], [ 355899.280699998140335, 257671.770500000566244 ], [ 355896.509300000965595, 257713.12220000103116 ], [ 355936.038400001823902, 257711.123700000345707 ], [ 355948.12950000166893, 257711.644799999892712 ], [ 355951.36370000243187, 257710.615800000727177 ], [ 355953.006899997591972, 257707.040699999779463 ], [ 355902.649800002574921, 257654.910599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92182705, "LATITUDE": 18.34878089, "OBJECTID_1": 5064, "PARCEL_NO_": "102904024700", "Tax_Legal_": "HOSPITAL GROUND 288C GR NORTHSIDE", "Name": "ERBA, R. , TIESSONNIERE, F. , NE", "Address": "403 South Walnut Street", "City": "Milford", "State": "Delaware", "Zip": 19963, "Country": "United States", "Land_Value": 50700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.53485333699999, "SHAPE_Area": 1237.1511949600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359767.026699997484684, 257719.258200000971556 ], [ 359756.933100000023842, 257673.5793999992311 ], [ 359740.788900002837181, 257675.558200001716614 ], [ 359753.10360000282526, 257744.475499998778105 ], [ 359772.482100002467632, 257741.467700000852346 ], [ 359767.026699997484684, 257719.258200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91526627, "LATITUDE": 18.34870254, "OBJECTID_1": 5771, "PARCEL_NO_": "103003025500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-1 GREAT NORTHSIDE QTR", "Name": "RESHMA R SHAHANI REVOCABLE TRUST", "Address": "PO Box 928", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 94400, "Improved_V": 562200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.988502098, "SHAPE_Area": 3315.6423093399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360491.464000001549721, 257681.913199998438358 ], [ 360467.405900001525879, 257666.306400001049042 ], [ 360454.409599997103214, 257677.388000000268221 ], [ 360402.465700000524521, 257716.859600000083447 ], [ 360428.109499998390675, 257735.645700000226498 ], [ 360447.340499997138977, 257749.946400001645088 ], [ 360455.536700002849102, 257734.392499998211861 ], [ 360477.5625, 257704.597500000149012 ], [ 360491.464000001549721, 257681.913199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803029200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94582805, "LATITUDE": 18.34879488, "OBJECTID_1": 4352, "PARCEL_NO_": "102803029200", "Tax_Legal_": "SOLBERG 55A-5 LT. NORTHSIDE", "Name": "KLEINMAN, MATTHEW & MALCOLM", "Address": "PO Box 13549", "City": "Austin", "State": "Texas", "Zip": 78711, "Country": "United States", "Land_Value": 95200, "Improved_V": 246300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.65058474200001, "SHAPE_Area": 2286.5652904600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357250.620800003409386, 257687.474599998444319 ], [ 357233.142700001597404, 257656.723000001162291 ], [ 357225.860699996352196, 257659.618700001388788 ], [ 357217.745399996638298, 257665.6739999987185 ], [ 357203.923000000417233, 257679.070900000631809 ], [ 357199.848300002515316, 257684.103799998760223 ], [ 357182.0033999979496, 257696.412200000137091 ], [ 357212.418499998748302, 257723.047899998724461 ], [ 357218.084200002253056, 257720.561099998652935 ], [ 357223.803900003433228, 257711.741999998688698 ], [ 357233.535400003194809, 257705.277800001204014 ], [ 357241.643500000238419, 257700.066799998283386 ], [ 357250.620800003409386, 257687.474599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93100523, "LATITUDE": 18.34901351, "OBJECTID_1": 4817, "PARCEL_NO_": "102903030800", "Tax_Legal_": "MAFOLIE 2A GR NORTHSIDE", "Name": "BRYAN, GERALD,ELMO,HOWARD&EST LOUIS BRYAN&DELMA CHRISTIAN", "Address": "4804 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022229, "Country": "United States", "Land_Value": 5100, "Improved_V": 101900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.068520399899995, "SHAPE_Area": 226.462127235 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358776.822899997234344, 257717.275499999523163 ], [ 358773.496899999678135, 257729.069600000977516 ], [ 358799.243199996650219, 257735.824200000613928 ], [ 358800.870200000703335, 257734.148800000548363 ], [ 358800.081900000572205, 257732.031399998813868 ], [ 358794.475400000810623, 257727.552499998360872 ], [ 358776.822899997234344, 257717.275499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032700", "MAP": "F9-2631-T70", "PARCEL_NAM": "265-2", "ACRE": "0.48", "LONGITUDE": -64.92875355, "LATITUDE": 18.34862177, "OBJECTID_1": 4839, "PARCEL_NO_": "102903032700", "Tax_Legal_": "HOSPITAL GROUND 265-2 NO. 9 NEW QUARTER", "Name": "METHUSELAH FOUNDATION", "Address": "9112 Autumn Oak Ct", "City": "Fairfax Station", "State": "Virginia", "Zip": 22039, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.75733848100001, "SHAPE_Area": 2337.5958267000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359042.685500003397465, 257719.98369999974966 ], [ 359040.641699999570847, 257701.280699998140335 ], [ 359035.46679999679327, 257646.14299999922514 ], [ 359035.01129999756813, 257642.403400000184774 ], [ 359005.377899996936321, 257653.833500001579523 ], [ 359006.328100003302097, 257658.992300000041723 ], [ 359009.236900001764297, 257696.168499998748302 ], [ 359012.724500000476837, 257728.367300000041723 ], [ 359042.685500003397465, 257719.98369999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96177009, "LATITUDE": 18.34877739, "OBJECTID_1": 3427, "PARCEL_NO_": "102703046400", "Tax_Legal_": "CONTANT 299 7A S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.49042938299999, "SHAPE_Area": 1835.7717706200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355522.086499996483326, 257649.896000001579523 ], [ 355515.967600002884865, 257705.574599999934435 ], [ 355518.381099998950958, 257706.227699998766184 ], [ 355550.662399999797344, 257703.114399999380112 ], [ 355545.644000001251698, 257629.612799998372793 ], [ 355543.178300000727177, 257635.081000000238419 ], [ 355539.929700002074242, 257637.798599999397993 ], [ 355528.565800003707409, 257646.571600001305342 ], [ 355522.086499996483326, 257649.896000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96204043, "LATITUDE": 18.34879242, "OBJECTID_1": 3428, "PARCEL_NO_": "102703046500", "Tax_Legal_": "CONTANT 298 7A S S QTR", "Name": "BENJAMIN, ELLEN", "Address": "PO Box 973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.38895100900001, "SHAPE_Area": 1411.6893164400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355522.086499996483326, 257649.896000001579523 ], [ 355508.844800002872944, 257651.520500000566244 ], [ 355496.5608000010252, 257651.520500000566244 ], [ 355493.313299998641014, 257651.520500000566244 ], [ 355493.012500002980232, 257655.146499998867512 ], [ 355490.215899996459484, 257699.453299999237061 ], [ 355515.967600002884865, 257705.574599999934435 ], [ 355522.086499996483326, 257649.896000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93080755, "LATITUDE": 18.34896257, "OBJECTID_1": 4822, "PARCEL_NO_": "102903031300", "Tax_Legal_": "2B ESTATE MAFOLIE No.8f GREAT NORTHSIDE QTR.", "Name": "PARCEL 1 & 2B ESTATE MAFOLIE LLC", "Address": "PO Box 12139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.901972020800002, "SHAPE_Area": 97.017671696199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358806.701399996876717, 257712.242800001055002 ], [ 358801.721500001847744, 257728.878400001674891 ], [ 358806.530599996447563, 257732.295200001448393 ], [ 358811.517700001597404, 257714.81529999896884 ], [ 358806.701399996876717, 257712.242800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9258634, "LATITUDE": 18.34889652, "OBJECTID_1": 4857, "PARCEL_NO_": "102903034500", "Tax_Legal_": "293C ESTATE HOSPITAL GROUND GREAT NORTHSIDE QTR", "Name": "TURNBULL, ALVIN HODGE", "Address": "P.O. BOX 5296", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 94700, "Improved_V": 778200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.78450237300001, "SHAPE_Area": 1083.7943361800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359342.222300000488758, 257701.427000001072884 ], [ 359313.187899999320507, 257702.033700000494719 ], [ 359312.914599999785423, 257734.11769999936223 ], [ 359318.542599998414516, 257736.0636 ], [ 359341.131899997591972, 257734.770899999886751 ], [ 359348.374300003051758, 257736.518899999558926 ], [ 359342.222300000488758, 257701.427000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804028800", "MAP": "F9-2922-T72", "PARCEL_NAM": "3P", "ACRE": ".26", "LONGITUDE": -64.93534077, "LATITUDE": 18.34884518, "OBJECTID_1": 4608, "PARCEL_NO_": "102804028800", "Tax_Legal_": "AGNES FANCY 3P LITTLE NORTHSIDE", "Name": "QUETEL, VERA", "Address": "212 63rd St", "City": "West New York", "State": "New Jersey", "Zip": 7093, "Country": "United States", "Land_Value": 41100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.42619781000001, "SHAPE_Area": 977.76987877900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358348.681800000369549, 257712.504900000989437 ], [ 358335.839400000870228, 257686.079900000244379 ], [ 358331.262199997901917, 257687.528799999505281 ], [ 358307.4375, 257695.070799998939037 ], [ 358306.191600002348423, 257695.465199999511242 ], [ 358321.148400001227856, 257726.21169999986887 ], [ 358343.23929999768734, 257715.214299999177456 ], [ 358348.681800000369549, 257712.504900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105102020100", "MAP": null, "PARCEL_NAM": "35", "ACRE": null, "LONGITUDE": -64.96672311, "LATITUDE": 18.34796007, "OBJECTID_1": 7386, "PARCEL_NO_": "105102020100", "Tax_Legal_": "LINBERG BAY 35 SOUTHSIDE QTR", "Name": "U. V. I. , GOTTLIEB, KAIJA & KAJ.", "Address": "2 Brewers Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 232500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 678.15519931200004, "SHAPE_Area": 17691.402195 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355045.555600002408028, 257443.987399999052286 ], [ 355025.086599998176098, 257426.333299998193979 ], [ 355024.239900000393391, 257428.449999999254942 ], [ 355023.393200002610683, 257429.508299998939037 ], [ 355022.546599999070168, 257431.20160000026226 ], [ 355021.276600003242493, 257433.318300001323223 ], [ 355020.218199998140335, 257434.376600001007318 ], [ 355019.15990000218153, 257435.434999998658895 ], [ 355017.889899998903275, 257436.493299998342991 ], [ 355015.773199997842312, 257436.916700001806021 ], [ 355013.444899998605251, 257437.763300001621246 ], [ 355010.904899999499321, 257438.398299999535084 ], [ 355007.094899997115135, 257439.668299999088049 ], [ 355003.07320000231266, 257440.515000000596046 ], [ 355009.317400000989437, 257518.323800001293421 ], [ 354966.97070000320673, 257522.072000000625849 ], [ 354968.016000002622604, 257566.412200000137091 ], [ 354962.858800001442432, 257698.514600001275539 ], [ 354993.572400003671646, 257690.111099999397993 ], [ 355004.077899999916553, 257687.452899999916553 ], [ 355054.988799996674061, 257674.570700000971556 ], [ 355047.628100000321865, 257497.402899999171495 ], [ 355046.920699998736382, 257485.787000000476837 ], [ 355045.555600002408028, 257443.987399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903030700", "MAP": "D9-9306-T018", "PARCEL_NAM": "3", "ACRE": "0.04", "LONGITUDE": -64.9311701, "LATITUDE": 18.34894684, "OBJECTID_1": 4816, "PARCEL_NO_": "102903030700", "Tax_Legal_": "MAFOLIE 3 GR NORTHSIDE QTR", "Name": "SUNIL MOHANANI and RONITA MOHANANI", "Address": "2329 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130400, "Improved_V": 253100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.397430631600002, "SHAPE_Area": 195.56834944100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358776.822899997234344, 257717.275499999523163 ], [ 358763.983000002801418, 257709.993299998342991 ], [ 358759.829199999570847, 257724.3136 ], [ 358773.496899999678135, 257729.069600000977516 ], [ 358776.822899997234344, 257717.275499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93094223, "LATITUDE": 18.34885634, "OBJECTID_1": 4821, "PARCEL_NO_": "102903031200", "Tax_Legal_": "MAFOLIE 2 GR NORTHSIDE QTR", "Name": "TYLER, JAMES L. & LORETTA A.", "Address": "26 Long Leaf Ln", "City": "Palmyra", "State": "Virginia", "Zip": 22963, "Country": "United States", "Land_Value": 54300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.161549341, "SHAPE_Area": 563.89677377700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358785.929700002074242, 257689.485700000077486 ], [ 358778.471500001847744, 257713.067200001329184 ], [ 358801.721500001847744, 257728.878400001674891 ], [ 358806.701399996876717, 257712.242800001055002 ], [ 358801.100400000810623, 257707.130699999630451 ], [ 358795.524499997496605, 257699.063499998301268 ], [ 358785.929700002074242, 257689.485700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704061900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95576816000001, "LATITUDE": 18.34876913, "OBJECTID_1": 3664, "PARCEL_NO_": "102704061900", "Tax_Legal_": "CONTANT 107-35 7B SOUTHSIDE QTR", "Name": "GUMBS, HOWARD E. & ANITA E", "Address": "P.O.BOX 1971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37900, "Improved_V": 301000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.63239082600001, "SHAPE_Area": 1085.3269706000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356145.211400002241135, 257673.149999998509884 ], [ 356154.599399998784065, 257707.001899998635054 ], [ 356177.37219999730587, 257684.179000001400709 ], [ 356202.547700002789497, 257663.275699999183416 ], [ 356203.375600002706051, 257660.749400001019239 ], [ 356200.963799998164177, 257659.885299999266863 ], [ 356195.310699999332428, 257660.894499998539686 ], [ 356145.211400002241135, 257673.149999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025600", "MAP": "D9-413-T64", "PARCEL_NAM": "3-8", "ACRE": ".51", "LONGITUDE": -64.91387201000001, "LATITUDE": 18.34872795, "OBJECTID_1": 5772, "PARCEL_NO_": "103003025600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-8 GT NORTHSIDE", "Name": "LEWIS, NOEL M & ANNA", "Address": "PO Box 8531", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51400, "Improved_V": 367800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.325025939, "SHAPE_Area": 2438.8740754099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360613.618400000035763, 257742.259500000625849 ], [ 360621.075400002300739, 257670.844799999147654 ], [ 360610.877300001680851, 257673.602400001138449 ], [ 360604.451999999582767, 257670.594500001519918 ], [ 360579.960500001907349, 257705.857799999415874 ], [ 360570.180500000715256, 257718.021200001239777 ], [ 360559.522200003266335, 257738.621100001037121 ], [ 360561.104299999773502, 257742.222600001841784 ], [ 360563.52139999717474, 257742.453499998897314 ], [ 360588.601599998772144, 257732.737399999052286 ], [ 360593.444899998605251, 257732.143699999898672 ], [ 360598.266599997878075, 257734.083000000566244 ], [ 360600.665700003504753, 257736.424699999392033 ], [ 360602.247800000011921, 257740.026200000196695 ], [ 360601.414499998092651, 257743.1858000010252 ], [ 360613.618400000035763, 257742.259500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704062600", "MAP": "A9-412-T93", "PARCEL_NAM": "107-42", "ACRE": "0.25", "LONGITUDE": -64.95707771, "LATITUDE": 18.34878993, "OBJECTID_1": 3671, "PARCEL_NO_": "102704062600", "Tax_Legal_": "CONTANT 107-42 7B SOUTHSIDE QUARTER", "Name": "Joel H Henry, Mary W Buchanan Henry & Kahlia Henry", "Address": "P.O. BOX 2175", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.818635906, "SHAPE_Area": 1069.24450798 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356049.919100001454353, 257689.679800000041723 ], [ 356038.097699999809265, 257657.496800001710653 ], [ 356013.829199999570847, 257666.586300000548363 ], [ 356019.149700000882149, 257704.6266999989748 ], [ 356049.919100001454353, 257689.679800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96229556, "LATITUDE": 18.34876821, "OBJECTID_1": 3430, "PARCEL_NO_": "102703046700", "Tax_Legal_": "CONTANT 297 7A SOUTHSIDE QTR.", "Name": "GEORGE, ELSTON & DENISE C", "Address": "282 E 51st. Apt. 2F", "City": "Brooklyn", "State": "New York", "Zip": 11203, "Country": "United States", "Land_Value": 35700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.71958069900001, "SHAPE_Area": 1211.8535455199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355467.237499997019768, 257651.769099999219179 ], [ 355463.659800000488758, 257693.114199999719858 ], [ 355490.215899996459484, 257699.453299999237061 ], [ 355493.012500002980232, 257655.146499998867512 ], [ 355493.313299998641014, 257651.520500000566244 ], [ 355486.112400002777576, 257651.238099999725819 ], [ 355475.240299999713898, 257650.249699998646975 ], [ 355467.691799998283386, 257648.739999998360872 ], [ 355467.237499997019768, 257651.769099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93585579000001, "LATITUDE": 18.34870172, "OBJECTID_1": 4613, "PARCEL_NO_": "102804029300", "Tax_Legal_": "AGNES FANCY 5J GT. NORTHSIDE", "Name": "LAPLACE,TRUSTEE, RICKY", "Address": "PO Box 11028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.09294945100001, "SHAPE_Area": 1793.8722936700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358304.724600002169609, 257692.449599999934435 ], [ 358287.823499999940395, 257657.706000000238419 ], [ 358281.386699996888638, 257660.86939999833703 ], [ 358275.717299997806549, 257663.778299998492002 ], [ 358270.859600000083447, 257666.060600001364946 ], [ 358256.979699999094009, 257686.212000001221895 ], [ 358233.298100002110004, 257721.05970000103116 ], [ 358255.954000003635883, 257711.956999998539686 ], [ 358304.724600002169609, 257692.449599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92614785000001, "LATITUDE": 18.34873038, "OBJECTID_1": 4858, "PARCEL_NO_": "102903034600", "Tax_Legal_": "HOSPITAL GROUND 292A & 293E NEW QTR", "Name": "BROWN, VERONICA", "Address": "5058 Estate Tipperary", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 8204589, "Country": "United States", "Land_Value": 41500, "Improved_V": 103000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.000983577, "SHAPE_Area": 776.24245676700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359286.270599998533726, 257697.949400000274181 ], [ 359287.69820000231266, 257699.636500000953674 ], [ 359289.777900002896786, 257705.008499998599291 ], [ 359309.712700001895428, 257731.347300000488758 ], [ 359310.804899998009205, 257697.792399998754263 ], [ 359298.0675999969244, 257678.47859999909997 ], [ 359287.367299996316433, 257678.390999998897314 ], [ 359286.270599998533726, 257697.949400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703044200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96599148, "LATITUDE": 18.3488331, "OBJECTID_1": 3379, "PARCEL_NO_": "102703044200", "Tax_Legal_": "LINDBERG BAY 38 HM S S QTR", "Name": "BROWN, MILLICENT", "Address": "PO Box 8204", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.22450283200001, "SHAPE_Area": 1021.07388179 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355117.033500000834465, 257679.933600001037121 ], [ 355102.670900002121925, 257662.084199998527765 ], [ 355061.451899997889996, 257673.145899999886751 ], [ 355062.967399999499321, 257684.557399999350309 ], [ 355071.818899996578693, 257686.740800000727177 ], [ 355075.819899998605251, 257690.362100001424551 ], [ 355078.208200000226498, 257693.970199998468161 ], [ 355117.033500000834465, 257679.933600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903030600", "MAP": "F9-1949-T67", "PARCEL_NAM": "3B", "ACRE": null, "LONGITUDE": -64.93128593, "LATITUDE": 18.34889978, "OBJECTID_1": 4815, "PARCEL_NO_": "102903030600", "Tax_Legal_": "MAFOLIE 3B GR NORTHSIDE QTR", "Name": "FSA ST THOMAS LLC", "Address": "7091 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.724893366700002, "SHAPE_Area": 195.48215557200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358763.983000002801418, 257709.993299998342991 ], [ 358753.549500003457069, 257704.208399999886751 ], [ 358747.76690000295639, 257720.415199998766184 ], [ 358752.592200003564358, 257721.932399999350309 ], [ 358759.829199999570847, 257724.3136 ], [ 358763.983000002801418, 257709.993299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904023600", "MAP": "G9-1021-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92323028, "LATITUDE": 18.34886491, "OBJECTID_1": 5053, "PARCEL_NO_": "102904023600", "Tax_Legal_": "HOSPITAL GROUND 284 B&D No.9 NEW QTR.", "Name": "ROGERS, SHARLINE L.", "Address": "394-34 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.077496372, "SHAPE_Area": 848.65428745400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359627.630000002682209, 257706.929299999028444 ], [ 359584.877400003373623, 257708.690400000661612 ], [ 359590.334600001573563, 257730.688700001686811 ], [ 359629.890699997544289, 257725.524099998176098 ], [ 359627.630000002682209, 257706.929299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033600", "MAP": "D9-637-T67", "PARCEL_NAM": "4D-1 REM", "ACRE": "0.33", "LONGITUDE": -64.91082707, "LATITUDE": 18.34873121, "OBJECTID_1": 5832, "PARCEL_NO_": "103003033600", "Tax_Legal_": "4D-1 REM ST JOSEPH&ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "PAIEWONSKY, LOURDES & CONDE, EDGAR", "Address": "143 Stanwood Ln", "City": "Manlius", "State": "New York", "Zip": 13104, "Country": "United States", "Land_Value": 44200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.24518390200001, "SHAPE_Area": 1289.0545382299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360933.826300002634525, 257692.439899999648333 ], [ 360888.660300001502037, 257704.227800000458956 ], [ 360895.192699998617172, 257712.659699998795986 ], [ 360904.789399996399879, 257722.026299998164177 ], [ 360914.402199998497963, 257729.493299998342991 ], [ 360924.031199999153614, 257735.060499999672174 ], [ 360932.065499998629093, 257738.503800000995398 ], [ 360936.9087999984622, 257737.910100001841784 ], [ 360933.826300002634525, 257692.439899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93143676, "LATITUDE": 18.34883317, "OBJECTID_1": 4814, "PARCEL_NO_": "102903030500", "Tax_Legal_": "MAFOLIE 4D GR NORTHSIDE", "Name": "FSA ST THOMAS LLC", "Address": "7091 Est Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65300, "Improved_V": 815000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.0757761558, "SHAPE_Area": 486.26862396899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358738.3158999979496, 257693.951200000941753 ], [ 358735.889899998903275, 257692.746199999004602 ], [ 358735.816899999976158, 257692.880300000309944 ], [ 358724.302500002086163, 257714.022399999201298 ], [ 358730.071099996566772, 257715.204199999570847 ], [ 358747.76690000295639, 257720.415199998766184 ], [ 358753.549500003457069, 257704.208399999886751 ], [ 358754.379199996590614, 257701.470899999141693 ], [ 358745.54389999806881, 257697.387800000607967 ], [ 358738.3158999979496, 257693.951200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704045900", "MAP": "B9-145-T66", "PARCEL_NAM": "6A-25", "ACRE": null, "LONGITUDE": -64.95178962, "LATITUDE": 18.34880743, "OBJECTID_1": 3594, "PARCEL_NO_": "102704045900", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-25 LITTLE NORTHSIDE", "Name": "TRUST AGREEMENT OF DESIREE LACHARITE", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24600, "Improved_V": 432900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.69180033399999, "SHAPE_Area": 1164.89973779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356612.071699999272823, 257676.337799999862909 ], [ 356569.378499999642372, 257671.133200000971556 ], [ 356565.924900002777576, 257697.913800001144409 ], [ 356602.97749999910593, 257702.650100000202656 ], [ 356603.834200002253056, 257696.746500000357628 ], [ 356612.703599996864796, 257696.818999998271465 ], [ 356612.071699999272823, 257676.337799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046800", "MAP": "B3-195-73", "PARCEL_NAM": "296", "ACRE": "0.24", "LONGITUDE": -64.96255138, "LATITUDE": 18.34871932, "OBJECTID_1": 3431, "PARCEL_NO_": "102703046800", "Tax_Legal_": "CONTANT 296 7A SOUTHSIDE", "Name": "MAGRAS, CHARLES W", "Address": "8 Sudbury Dr", "City": "Nashua", "State": "New Hampshire", "Zip": 3062, "Country": "United States", "Land_Value": 44600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.86060293099999, "SHAPE_Area": 1244.1527759400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355440.674099996685982, 257646.274399999529123 ], [ 355436.385399997234344, 257676.425700001418591 ], [ 355435.492799997329712, 257686.550900001078844 ], [ 355463.659800000488758, 257693.114199999719858 ], [ 355467.237499997019768, 257651.769099999219179 ], [ 355467.691799998283386, 257648.739999998360872 ], [ 355458.296899996697903, 257646.861000001430511 ], [ 355445.165799997746944, 257643.190000001341105 ], [ 355441.394599996507168, 257641.807199999690056 ], [ 355440.674099996685982, 257646.274399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903031900", "MAP": "F9-2696-T70", "PARCEL_NAM": "3", "ACRE": "0.27", "LONGITUDE": -64.93053665, "LATITUDE": 18.34869711, "OBJECTID_1": 4829, "PARCEL_NO_": "102903031900", "Tax_Legal_": "LYTTONS FANCY 3 OF 8GC KINGS QTR", "Name": "RABSATT, LOUIS", "Address": "PO Box 7012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84900, "Improved_V": 77600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.88521870400001, "SHAPE_Area": 1344.4984360799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358843.19709999859333, 257717.876600001007318 ], [ 358859.368900001049042, 257682.487399999052286 ], [ 358857.636100001633167, 257681.690499998629093 ], [ 358833.665799997746944, 257670.666900001466274 ], [ 358828.045000001788139, 257668.263099998235703 ], [ 358827.66160000115633, 257668.09910000115633 ], [ 358811.969899997115135, 257704.763300001621246 ], [ 358813.207599997520447, 257705.752099998295307 ], [ 358813.670500002801418, 257704.958200000226498 ], [ 358813.334600001573563, 257705.815699998289347 ], [ 358819.63120000064373, 257708.971099998801947 ], [ 358829.294299997389317, 257710.527800001204014 ], [ 358834.117799997329712, 257712.256000000983477 ], [ 358840.713600002229214, 257716.889400001615286 ], [ 358842.268799997866154, 257717.981899999082088 ], [ 358843.19709999859333, 257717.876600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93115468000001, "LATITUDE": 18.34873498, "OBJECTID_1": 4820, "PARCEL_NO_": "102903031100", "Tax_Legal_": "MAFOLIE 3A GR NORTHSIDE QTR", "Name": "MEEHAN, MADELEINE I. E", "Address": "BOX 5066", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40700, "Improved_V": 152700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.48433180799999, "SHAPE_Area": 774.61471621700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358785.929700002074242, 257689.485700000077486 ], [ 358765.086000002920628, 257675.171900000423193 ], [ 358758.497100003063679, 257691.372099999338388 ], [ 358754.379199996590614, 257701.470899999141693 ], [ 358753.549500003457069, 257704.208399999886751 ], [ 358763.983000002801418, 257709.993299998342991 ], [ 358776.822899997234344, 257717.275499999523163 ], [ 358778.471500001847744, 257713.067200001329184 ], [ 358785.929700002074242, 257689.485700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703034600", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-4", "ACRE": "0.38", "LONGITUDE": -64.95792305000001, "LATITUDE": 18.34861927, "OBJECTID_1": 3333, "PARCEL_NO_": "102703034600", "Tax_Legal_": "CONTANT 108A-4 7B SOUTHSIDE", "Name": "ENID CLARITA DANET FAMILY REVOCABLE TRUST", "Address": "BOX 2008", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 271200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.85153712, "SHAPE_Area": 2116.95419326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355956.658299997448921, 257657.041400000452995 ], [ 355941.629699997603893, 257622.721200000494719 ], [ 355907.520000003278255, 257651.150800000876188 ], [ 355945.894000001251698, 257690.094999998807907 ], [ 355973.276199996471405, 257694.11879999935627 ], [ 355956.658299997448921, 257657.041400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704062800", "MAP": "A9-401-T92", "PARCEL_NAM": "107-44", "ACRE": "0.23", "LONGITUDE": -64.9575754, "LATITUDE": 18.34869691, "OBJECTID_1": 3673, "PARCEL_NO_": "102704062800", "Tax_Legal_": "107-44 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "SUNSET VIEW ESTATE, LP", "Address": "8000 Nisky Center--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 277300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.21724284800001, "SHAPE_Area": 975.97020544099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355984.117899999022484, 257651.988800000399351 ], [ 355956.658299997448921, 257657.041400000452995 ], [ 355973.276199996471405, 257694.11879999935627 ], [ 356002.533600002527237, 257667.338199999183416 ], [ 355992.890299998223782, 257663.459600001573563 ], [ 355988.090199999511242, 257658.987399999052286 ], [ 355984.117899999022484, 257651.988800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804027700", "MAP": "F9-2922-T72", "PARCEL_NAM": "3L", "ACRE": null, "LONGITUDE": -64.93511693000001, "LATITUDE": 18.34873402, "OBJECTID_1": 4597, "PARCEL_NO_": "102804027700", "Tax_Legal_": "AGNES FANCY 3L GR NORTHSIDE", "Name": "GLEN J SMITH FAMILY TRUST", "Address": "PO Box 303573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14000, "Improved_V": 164800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.626916936100002, "SHAPE_Area": 565.99402102399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358335.839400000870228, 257686.079900000244379 ], [ 358348.681800000369549, 257712.504900000989437 ], [ 358357.465700000524521, 257708.111900001764297 ], [ 358357.202899999916553, 257706.482599999755621 ], [ 358358.790399998426437, 257699.603399999439716 ], [ 358359.531300000846386, 257697.275100000202656 ], [ 358360.166299998760223, 257695.475900001823902 ], [ 358360.69539999961853, 257693.46510000154376 ], [ 358361.012900002300739, 257691.877599999308586 ], [ 358361.542099997401237, 257690.290100000798702 ], [ 358362.600400000810623, 257687.855900000780821 ], [ 358363.822999998927116, 257686.538699999451637 ], [ 358364.434900000691414, 257684.024700000882149 ], [ 358364.487800002098083, 257681.643500000238419 ], [ 358364.487800002098083, 257679.897199999541044 ], [ 358364.011600002646446, 257678.944699998944998 ], [ 358363.112000003457069, 257678.30970000103116 ], [ 358361.630300000309944, 257677.886399999260902 ], [ 358360.148599997162819, 257678.098099999129772 ], [ 358359.143200002610683, 257678.36259999871254 ], [ 358357.185300000011921, 257678.7331000007689 ], [ 358355.544900000095367, 257679.209300000220537 ], [ 358353.692800000309944, 257679.791400000452995 ], [ 358352.15820000320673, 257680.373500000685453 ], [ 358350.094400003552437, 257681.167199999094009 ], [ 358347.924900002777576, 257682.066799998283386 ], [ 358345.173199996352196, 257683.125199999660254 ], [ 358335.839400000870228, 257686.079900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704045600", "MAP": "B9-145-T66", "PARCEL_NAM": "6A-26", "ACRE": null, "LONGITUDE": -64.95222339, "LATITUDE": 18.34876137, "OBJECTID_1": 3591, "PARCEL_NO_": "102704045600", "Tax_Legal_": "LILLIENDAHL 6A-26 LITTLE NORTHSIDE QTR", "Name": "HAZELL, ORAL & EVERINE", "Address": "PO Box 304283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37700, "Improved_V": 357400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.196029665, "SHAPE_Area": 1331.2750090899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356562.933399997651577, 257670.447200000286102 ], [ 356517.018500000238419, 257664.794100001454353 ], [ 356521.61370000243187, 257693.329300001263618 ], [ 356565.924900002777576, 257697.913800001144409 ], [ 356569.378499999642372, 257671.133200000971556 ], [ 356562.933399997651577, 257670.447200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96477497, "LATITUDE": 18.34871542, "OBJECTID_1": 3391, "PARCEL_NO_": "102703045100", "Tax_Legal_": "LINDBERG BAY 36I S S QTR", "Name": "PETERSEN, ELBERT A. & STACY I.", "Address": "4002 Donoe Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.39757339900001, "SHAPE_Area": 1451.7826785 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355197.954300001263618, 257646.609900001436472 ], [ 355200.037000000476837, 257686.101399999111891 ], [ 355233.918300002813339, 257684.478900000452995 ], [ 355241.387299999594688, 257659.631000000983477 ], [ 355235.761100001633167, 257657.473999999463558 ], [ 355211.704700000584126, 257641.656199999153614 ], [ 355206.060599997639656, 257641.609999999403954 ], [ 355197.954300001263618, 257646.609900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604021600", "MAP": "A9-822-T016", "PARCEL_NAM": "41A-2 REM", "ACRE": ".74", "LONGITUDE": -64.96783763000001, "LATITUDE": 18.34968716, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.76153070800001, "SHAPE_Area": 2059.0317150699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354905.132600001990795, 257815.099199999123812 ], [ 354899.170000001788139, 257716.150800000876188 ], [ 354880.143899999558926, 257721.419399999082088 ], [ 354881.036399997770786, 257743.018899999558926 ], [ 354884.668799996376038, 257824.278200000524521 ], [ 354898.229900002479553, 257823.204999998211861 ], [ 354898.494499996304512, 257815.5320999994874 ], [ 354905.132600001990795, 257815.099199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92931903, "LATITUDE": 18.35210737, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.305797774, "SHAPE_Area": 226.29121073499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358989.89190000295639, 258073.86769999936223 ], [ 358956.867200002074242, 258069.586599998176098 ], [ 358937.575099997222424, 258062.462600000202656 ], [ 358943.134700000286102, 258072.429499998688698 ], [ 358990.67119999974966, 258077.040500000119209 ], [ 358989.89190000295639, 258073.86769999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91775513, "LATITUDE": 18.35161012, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.7793501875, "SHAPE_Area": 65.6141070738 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360179.594800002872944, 258037.586399998515844 ], [ 360185.294699996709824, 258031.089200001209974 ], [ 360187.018799997866154, 258018.015500001609325 ], [ 360183.79900000244379, 258017.355900000780821 ], [ 360179.594800002872944, 258037.586399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92564496, "LATITUDE": 18.35152056, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.233957911900006, "SHAPE_Area": 106.720851377 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359349.420199997723103, 257992.372800000011921 ], [ 359346.187700003385544, 257993.190799999982119 ], [ 359349.3158999979496, 258004.61540000140667 ], [ 359348.306400001049042, 258028.460700001567602 ], [ 359350.723499998450279, 258028.691599998623133 ], [ 359352.535800002515316, 258005.274999998509884 ], [ 359349.420199997723103, 257992.372800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91755295, "LATITUDE": 18.35154337, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.129494801299998, "SHAPE_Area": 156.166796492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360219.314499996602535, 258013.213599998503923 ], [ 360205.551399998366833, 258019.644799999892712 ], [ 360187.861100003123283, 258013.800500001758337 ], [ 360187.018799997866154, 258018.015500001609325 ], [ 360215.178599998354912, 258025.423200000077486 ], [ 360219.314499996602535, 258013.213599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96196206, "LATITUDE": 18.35040584, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 918.04213429399999, "SHAPE_Area": 14082.189153699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355435.36370000243187, 257985.669399999082088 ], [ 355452.504799999296665, 257961.322799999266863 ], [ 355456.579599998891354, 257956.289900001138449 ], [ 355458.199400000274181, 257955.458799999207258 ], [ 355451.858599998056889, 257942.530200000852346 ], [ 355449.50620000064373, 257934.700500000268221 ], [ 355448.757399998605251, 257927.939399998635054 ], [ 355449.684199996292591, 257913.803700000047684 ], [ 355451.338200002908707, 257908.962099999189377 ], [ 355455.430900000035763, 257901.818399999290705 ], [ 355448.161499999463558, 257903.2364999987185 ], [ 355440.917199999094009, 257901.699599999934435 ], [ 355436.109899997711182, 257898.071600001305342 ], [ 355430.537699997425079, 257889.582299999892712 ], [ 355429.169600002467632, 257860.862399999052286 ], [ 355430.866700001060963, 257850.954900000244379 ], [ 355437.441299997270107, 257836.443199999630451 ], [ 355443.958400003612041, 257828.686099998652935 ], [ 355453.696999996900558, 257821.377500001341105 ], [ 355461.790700003504753, 257817.855200000107288 ], [ 355473.906999997794628, 257815.42119999974966 ], [ 355486.804399996995926, 257815.949000000953674 ], [ 355501.276699997484684, 257820.922600001096725 ], [ 355515.689599998295307, 257832.861800000071526 ], [ 355522.86370000243187, 257842.630800001323223 ], [ 355526.016999997198582, 257851.100299999117851 ], [ 355527.555900000035763, 257859.767799999564886 ], [ 355525.799400001764297, 257876.640900000929832 ], [ 355519.977200001478195, 257897.491500001400709 ], [ 355537.759300000965595, 257892.570799998939037 ], [ 355545.026900000870228, 257891.363699998706579 ], [ 355559.542300000786781, 257891.27140000090003 ], [ 355623.199600003659725, 257896.647599998861551 ], [ 355562.183499999344349, 257770.547499999403954 ], [ 355396.335600003600121, 257834.206999998539686 ], [ 355435.36370000243187, 257985.669399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96456394000001, "LATITUDE": 18.35145339, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.389715718700003, "SHAPE_Area": 628.14971928800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355249.931599996984005, 257981.829700000584126 ], [ 355248.540200002491474, 257955.853799998760223 ], [ 355222.720200002193451, 257957.753400001674891 ], [ 355223.352099999785423, 257978.234600000083447 ], [ 355237.836900003254414, 257981.730700001120567 ], [ 355249.931599996984005, 257981.829700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95523946, "LATITUDE": 18.35133784, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.829878524400002, "SHAPE_Area": 427.64458632399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356239.541299998760223, 257958.898400001227856 ], [ 356204.078000001609325, 257956.919399999082088 ], [ 356205.584499999880791, 257969.386199999600649 ], [ 356240.245099999010563, 257970.936500001698732 ], [ 356239.541299998760223, 257958.898400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95489963, "LATITUDE": 18.35133854, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.138693518, "SHAPE_Area": 362.54252319199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356282.259700000286102, 257961.147900000214577 ], [ 356239.541299998760223, 257958.898400001227856 ], [ 356240.245099999010563, 257970.936500001698732 ], [ 356282.216600000858307, 257966.213799998164177 ], [ 356282.259700000286102, 257961.147900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92559797, "LATITUDE": 18.35130527, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.970610475, "SHAPE_Area": 155.56944851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359347.20269999653101, 257968.712200000882149 ], [ 359343.118900001049042, 257974.800500001758337 ], [ 359343.046999998390675, 257983.243599999696016 ], [ 359346.187700003385544, 257993.190799999982119 ], [ 359349.420199997723103, 257992.372800000011921 ], [ 359373.652699999511242, 257987.504900000989437 ], [ 359372.880599997937679, 257983.487799998372793 ], [ 359347.834499999880791, 257989.193500000983477 ], [ 359346.26690000295639, 257983.903299998492002 ], [ 359345.528899997472763, 257975.875700000673532 ], [ 359347.20269999653101, 257968.712200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96192541000001, "LATITUDE": 18.35096642, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 370.08688005800002, "SHAPE_Area": 3787.9666435200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355459.104599997401237, 257943.856100000441074 ], [ 355463.078599996864796, 257950.6435999982059 ], [ 355469.56870000064373, 257946.052600000053644 ], [ 355480.090300001204014, 257941.494699999690056 ], [ 355561.738200001418591, 257917.464999999850988 ], [ 355578.699600003659725, 257914.226300001144409 ], [ 355591.609600000083447, 257913.276500001549721 ], [ 355601.305100001394749, 257911.0337999984622 ], [ 355615.885200001299381, 257903.342700000852346 ], [ 355557.072999998927116, 257897.161800000816584 ], [ 355548.203599996864796, 257897.089200001209974 ], [ 355537.710699997842312, 257898.269900001585484 ], [ 355530.437700003385544, 257900.110199999064207 ], [ 355507.780000001192093, 257909.4239999987185 ], [ 355500.52139999717474, 257909.575699999928474 ], [ 355467.523800000548363, 257902.128400001674891 ], [ 355462.687700003385544, 257901.87779999896884 ], [ 355457.783299997448921, 257909.64809999987483 ], [ 355454.466300003230572, 257920.386700000613928 ], [ 355455.949500001966953, 257935.597600001841784 ], [ 355459.104599997401237, 257943.856100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93227935, "LATITUDE": 18.35100866, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.325544056699997, "SHAPE_Area": 82.550660558100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358647.3378000035882, 257961.295400001108646 ], [ 358650.644000001251698, 257951.82319999858737 ], [ 358653.906999997794628, 257947.416999999433756 ], [ 358646.756300002336502, 257934.903900001198053 ], [ 358647.3378000035882, 257961.295400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96228257, "LATITUDE": 18.35048126, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.94269476800002, "SHAPE_Area": 5684.9266295799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355473.048500001430511, 257821.535900000482798 ], [ 355463.354800000786781, 257823.567499998956919 ], [ 355452.01070000231266, 257830.0185999982059 ], [ 355444.692699998617172, 257837.135899998247623 ], [ 355440.608999997377396, 257843.22410000115633 ], [ 355437.320799998939037, 257850.585499998182058 ], [ 355435.648900002241135, 257857.537900000810623 ], [ 355436.988200001418591, 257889.635099999606609 ], [ 355439.376500003039837, 257893.243200000375509 ], [ 355445.796499997377396, 257896.884399998933077 ], [ 355449.826200000941753, 257897.128400001674891 ], [ 355458.710100002586842, 257895.51240000128746 ], [ 355466.77139999717474, 257895.789500001817942 ], [ 355500.573600001633167, 257903.4543999992311 ], [ 355506.217799998819828, 257903.500599998980761 ], [ 355512.688000001013279, 257901.231499999761581 ], [ 355520.198399998247623, 257871.528799999505281 ], [ 355521.125200003385544, 257857.393100000917912 ], [ 355517.199699997901917, 257844.906500000506639 ], [ 355514.021200001239777, 257839.392000000923872 ], [ 355507.631899997591972, 257832.162500001490116 ], [ 355502.826399996876717, 257828.323499999940395 ], [ 355495.601899996399879, 257824.464699998497963 ], [ 355487.556800000369549, 257822.287900000810623 ], [ 355473.048500001430511, 257821.535900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95265768, "LATITUDE": 18.3505774, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.134852560300004, "SHAPE_Area": 140.16504512099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356493.183799996972084, 257906.934399999678135 ], [ 356500.748099997639656, 257870.899300001561642 ], [ 356493.512900002300739, 257868.307000000029802 ], [ 356493.183799996972084, 257906.934399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704060800", "MAP": "A9-407-T92", "PARCEL_NAM": "107-24", "ACRE": null, "LONGITUDE": -64.95559509, "LATITUDE": 18.34999923, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.92336835600003, "SHAPE_Area": 2375.9244350700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356178.215199999511242, 257774.534000001847744 ], [ 356173.795199997723103, 257820.094000000506639 ], [ 356173.778999999165535, 257821.993700001388788 ], [ 356176.147600002586842, 257827.923700001090765 ], [ 356176.894599996507168, 257834.895899999886751 ], [ 356176.041500002145767, 257840.377399999648333 ], [ 356171.936200000345707, 257848.998599998652935 ], [ 356161.312100000679493, 257865.588100001215935 ], [ 356156.422100000083447, 257871.669700000435114 ], [ 356150.740099996328354, 257876.056200001388788 ], [ 356155.398199997842312, 257897.203699998557568 ], [ 356179.984999999403954, 257850.753199998289347 ], [ 356221.772200003266335, 257772.990600001066923 ], [ 356178.215199999511242, 257774.534000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91011781, "LATITUDE": 18.35059428, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.663213113099999, "SHAPE_Area": 262.88437846400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361003.918700002133846, 257917.677000001072884 ], [ 360983.035499997437, 257908.006900001317263 ], [ 360984.614000000059605, 257912.030600000172853 ], [ 360986.152900002896786, 257920.697999998927116 ], [ 360985.236900001764297, 257933.567200001329184 ], [ 360987.652199998497963, 257934.009199999272823 ], [ 360992.526000000536442, 257929.827199999243021 ], [ 360998.211599998176098, 257925.0185999982059 ], [ 361003.918700002133846, 257917.677000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95624079, "LATITUDE": 18.35019894, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 632.71398770500002, "SHAPE_Area": 2780.4210055899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356074.782399997115135, 257800.074099998921156 ], [ 356062.527699999511242, 257818.761199999600649 ], [ 356064.063000001013279, 257827.850699998438358 ], [ 356072.046999998390675, 257837.204199999570847 ], [ 356075.25789999961853, 257838.919199999421835 ], [ 356085.738099999725819, 257839.216099999845028 ], [ 356118.057199999690056, 257831.670200001448393 ], [ 356140.680699996650219, 257826.366900000721216 ], [ 356152.006800003349781, 257822.026599999517202 ], [ 356158.459100000560284, 257821.868299998342991 ], [ 356160.877999998629093, 257821.888099998235703 ], [ 356164.887999996542931, 257824.454100001603365 ], [ 356166.470100000500679, 257828.055599998682737 ], [ 356167.23139999806881, 257833.339200001209974 ], [ 356167.19370000064373, 257837.771800000220537 ], [ 356157.363300003111362, 257855.845400001853704 ], [ 356147.581399999558926, 257868.219900000840425 ], [ 356144.336400002241135, 257870.515399999916553 ], [ 356135.432800002396107, 257874.453299999237061 ], [ 356123.311099998652935, 257877.520500000566244 ], [ 356076.514399997889996, 257880.725999999791384 ], [ 356076.437100000679493, 257889.802400000393391 ], [ 356101.449000000953674, 257888.107299998402596 ], [ 356127.269000001251698, 257886.207699999213219 ], [ 356134.543799996376038, 257884.156300000846386 ], [ 356150.740099996328354, 257876.056200001388788 ], [ 356156.422100000083447, 257871.669700000435114 ], [ 356161.312100000679493, 257865.588100001215935 ], [ 356171.936200000345707, 257848.998599998652935 ], [ 356176.041500002145767, 257840.377399999648333 ], [ 356176.894599996507168, 257834.895899999886751 ], [ 356176.147600002586842, 257827.923700001090765 ], [ 356173.778999999165535, 257821.993700001388788 ], [ 356173.795199997723103, 257820.094000000506639 ], [ 356168.197800002992153, 257814.559799998998642 ], [ 356156.920199997723103, 257813.200899999588728 ], [ 356133.488600000739098, 257818.708700001239777 ], [ 356084.20099999755621, 257830.337600000202656 ], [ 356078.564000003039837, 257829.44709999859333 ], [ 356071.364799998700619, 257822.633200000971556 ], [ 356073.843000002205372, 257815.687399998307228 ], [ 356083.617700003087521, 257804.157200001180172 ], [ 356104.835400000214577, 257774.566700000315905 ], [ 356099.252300001680851, 257767.343800000846386 ], [ 356088.671300001442432, 257778.867400001734495 ], [ 356074.782399997115135, 257800.074099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91130696, "LATITUDE": 18.35024236, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.26612027900001, "SHAPE_Area": 740.23739810500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360857.493500001728535, 257878.481699999421835 ], [ 360858.643299996852875, 257838.1722999997437 ], [ 360864.478100001811981, 257815.844099998474121 ], [ 360882.191799998283386, 257818.944400001317263 ], [ 360882.218699999153614, 257815.778200000524521 ], [ 360870.138400003314018, 257813.990600001066923 ], [ 360861.279799997806549, 257812.651500001549721 ], [ 360854.606299996376038, 257838.77250000089407 ], [ 360852.35530000180006, 257913.692299999296665 ], [ 360902.247800000011921, 257925.710799999535084 ], [ 360902.299999997019768, 257919.589499998837709 ], [ 360856.431900002062321, 257908.448300000280142 ], [ 360857.493500001728535, 257878.481699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91043394, "LATITUDE": 18.35037672, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.55732195100001, "SHAPE_Area": 519.64365173299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361006.368199996650219, 257914.108500000089407 ], [ 360951.767300002276897, 257886.852699998766184 ], [ 360908.248000003397465, 257883.96339999884367 ], [ 360909.831900000572205, 257887.353900000452995 ], [ 360915.468900002539158, 257888.24439999833703 ], [ 360953.318800002336502, 257894.042599998414516 ], [ 360983.035499997437, 257908.006900001317263 ], [ 361003.918700002133846, 257917.677000001072884 ], [ 361006.368199996650219, 257914.108500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704042900", "MAP": "D9-164-T58", "PARCEL_NAM": "6A-1", "ACRE": "1.01", "LONGITUDE": -64.95527549000001, "LATITUDE": 18.35003485, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.682782578, "SHAPE_Area": 4150.8484100100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356244.363399997353554, 257771.486800000071526 ], [ 356235.704300001263618, 257746.717999998480082 ], [ 356221.772200003266335, 257772.990600001066923 ], [ 356179.984999999403954, 257850.753199998289347 ], [ 356215.275700002908707, 257872.995799999684095 ], [ 356217.726999998092651, 257869.2162000015378 ], [ 356219.362999998033047, 257866.485399998724461 ], [ 356228.29900000244379, 257858.747999999672174 ], [ 356233.99889999628067, 257852.250799998641014 ], [ 356239.736599996685982, 257841.320900000631809 ], [ 356243.04280000180006, 257831.848700001835823 ], [ 356245.630699999630451, 257812.027100000530481 ], [ 356241.111199997365475, 257774.626600001007318 ], [ 356244.363399997353554, 257771.486800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93376182, "LATITUDE": 18.3499934, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4.20523353915, "SHAPE_Area": 0.08825860348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358492.805399999022484, 257833.468699999153614 ], [ 358494.727099999785423, 257834.140000000596046 ], [ 358492.79839999973774, 257833.374400001019239 ], [ 358492.805399999022484, 257833.468699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91090949, "LATITUDE": 18.3503756, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.405143776000003, "SHAPE_Area": 176.16420581 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360909.831900000572205, 257887.353900000452995 ], [ 360904.194899998605251, 257886.463300000876188 ], [ 360903.185400001704693, 257910.308699999004602 ], [ 360913.773500002920628, 257897.940799999982119 ], [ 360915.468900002539158, 257888.24439999833703 ], [ 360909.831900000572205, 257887.353900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92132786000001, "LATITUDE": 18.35037079, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.252844572500003, "SHAPE_Area": 66.295629316399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359809.166799999773502, 257884.045000001788139 ], [ 359801.936999998986721, 257880.819400001317263 ], [ 359803.46509999781847, 257890.753299999982119 ], [ 359816.398500002920628, 257887.059500001370907 ], [ 359809.166799999773502, 257884.045000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9356725, "LATITUDE": 18.34975685, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 717.56717241299998, "SHAPE_Area": 3003.3911104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358282.809399999678135, 257777.826900001615286 ], [ 358303.733999997377396, 257782.642200000584126 ], [ 358345.520199999213219, 257799.660599999129772 ], [ 358359.027900002896786, 257823.202599998563528 ], [ 358326.546999998390675, 257849.745600000023842 ], [ 358317.614600002765656, 257857.0608000010252 ], [ 358280.630400002002716, 257844.30350000038743 ], [ 358279.023100003600121, 257843.6570999994874 ], [ 358258.024800002574921, 257847.495999999344349 ], [ 358211.989500001072884, 257855.985199999064207 ], [ 358215.97070000320673, 257861.928399998694658 ], [ 358276.546599999070168, 257850.391800001263618 ], [ 358278.162900000810623, 257849.982900001108646 ], [ 358322.384199999272823, 257865.121399998664856 ], [ 358345.936300002038479, 257845.4712999984622 ], [ 358370.301899999380112, 257824.983600001782179 ], [ 358356.002199999988079, 257799.746399998664856 ], [ 358352.033600002527237, 257792.325699999928474 ], [ 358306.226599998772144, 257774.007800001651049 ], [ 358283.693000003695488, 257768.757100000977516 ], [ 358240.23309999704361, 257758.902199998497963 ], [ 358221.048799999058247, 257739.113499999046326 ], [ 358208.005800001323223, 257755.683100000023842 ], [ 358226.471799999475479, 257765.122400000691414 ], [ 358246.591899998486042, 257769.719999998807907 ], [ 358282.809399999678135, 257777.826900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92244175, "LATITUDE": 18.3496766, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.02085387199998, "SHAPE_Area": 5888.57984425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359695.607299998402596, 257773.135800000280142 ], [ 359666.547700002789497, 257776.697599999606609 ], [ 359640.716899998486042, 257779.863699998706579 ], [ 359646.195699997246265, 257799.329199999570847 ], [ 359656.292900003492832, 257844.585799999535084 ], [ 359657.835400000214577, 257852.8310999982059 ], [ 359699.850000001490116, 257843.042500000447035 ], [ 359707.121200002729893, 257841.413199998438358 ], [ 359719.24099999666214, 257838.557100001722574 ], [ 359738.727399997413158, 257822.88459999859333 ], [ 359727.089500002563, 257769.171599999070168 ], [ 359725.475000001490116, 257769.369500000029802 ], [ 359695.607299998402596, 257773.135800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95610943, "LATITUDE": 18.34864302, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2022.5906785, "SHAPE_Area": 8947.9693008100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356069.64639999717474, 257645.722699999809265 ], [ 356088.250900000333786, 257638.908900000154972 ], [ 356105.199699997901917, 257637.147799998521805 ], [ 356140.709799997508526, 257633.638700000941753 ], [ 356175.449500001966953, 257625.901500001549721 ], [ 356210.995600000023842, 257618.170899998396635 ], [ 356228.768700003623962, 257614.305500000715256 ], [ 356258.607600003480911, 257613.916499998420477 ], [ 356261.825699999928474, 257614.787200000137091 ], [ 356263.414899997413158, 257617.544399999082088 ], [ 356261.771700002253056, 257621.119600001722574 ], [ 356260.146499998867512, 257622.58390000090003 ], [ 356248.793399997055531, 257630.090399999171495 ], [ 356228.520499996840954, 257643.434399999678135 ], [ 356218.810599997639656, 257647.365699999034405 ], [ 356184.060000002384186, 257656.36939999833703 ], [ 356146.904899999499321, 257663.664700001478195 ], [ 356110.557899996638298, 257670.755499999970198 ], [ 356080.672200001776218, 257676.632599998265505 ], [ 356068.543399997055531, 257680.544100001454353 ], [ 356049.919100001454353, 257689.679800000041723 ], [ 356019.149700000882149, 257704.6266999989748 ], [ 356015.101999998092651, 257706.493400000035763 ], [ 356011.07039999961853, 257706.460400000214577 ], [ 356011.046999998390675, 257709.2043999992311 ], [ 355995.662399999797344, 257716.67790000140667 ], [ 355997.244400002062321, 257720.279399998486042 ], [ 355998.817500002682209, 257724.9364 ], [ 356017.439999997615814, 257716.011799998581409 ], [ 356053.06700000166893, 257698.782600000500679 ], [ 356074.929099999368191, 257688.195700000971556 ], [ 356083.816600002348423, 257686.157499998807907 ], [ 356118.561700001358986, 257677.787099998444319 ], [ 356145.211400002241135, 257673.149999998509884 ], [ 356195.310699999332428, 257660.894499998539686 ], [ 356200.963799998164177, 257659.885299999266863 ], [ 356203.375600002706051, 257660.749400001019239 ], [ 356202.547700002789497, 257663.275699999183416 ], [ 356177.37219999730587, 257684.179000001400709 ], [ 356154.599399998784065, 257707.001899998635054 ], [ 356135.890600003302097, 257726.058200001716614 ], [ 356130.194300003349781, 257732.133299998939037 ], [ 356125.332999996840954, 257734.837799999862909 ], [ 356103.497900001704693, 257742.258400000631809 ], [ 356071.132100000977516, 257755.292399998754263 ], [ 356039.576200000941753, 257767.910900000482798 ], [ 356012.064499996602535, 257779.084699999541044 ], [ 356015.22860000282526, 257786.287799999117851 ], [ 356092.91330000013113, 257754.204100001603365 ], [ 356108.265600003302097, 257750.530099999159575 ], [ 356111.476499997079372, 257752.245099999010563 ], [ 356103.319799996912479, 257763.155200000852346 ], [ 356099.252300001680851, 257767.343800000846386 ], [ 356104.835400000214577, 257774.566700000315905 ], [ 356166.703100003302097, 257706.045400001108646 ], [ 356217.881999999284744, 257661.712499998509884 ], [ 356247.094499997794628, 257640.20890000090003 ], [ 356264.113300003111362, 257630.215700000524521 ], [ 356277.901600003242493, 257620.8293999992311 ], [ 356277.950099997222424, 257615.130300000309944 ], [ 356275.565399996936321, 257611.100000001490116 ], [ 356269.964299999177456, 257605.987900000065565 ], [ 356263.531800001859665, 257603.824299998581409 ], [ 356226.425300002098083, 257605.420400001108646 ], [ 356140.787100002169609, 257624.562300000339746 ], [ 356119.795999996364117, 257627.55689999833703 ], [ 356112.541000001132488, 257627.286400001496077 ], [ 356111.752700001001358, 257625.169100001454353 ], [ 356124.709399998188019, 257618.731199998408556 ], [ 356138.497599996626377, 257609.344799999147654 ], [ 356143.36429999768734, 257606.007199998944998 ], [ 356187.160499997437, 257576.390299998223782 ], [ 356195.272200003266335, 257570.757199998944998 ], [ 356205.800999999046326, 257565.354899998754263 ], [ 356222.789300002157688, 257558.950100000947714 ], [ 356230.89019999653101, 257554.583399999886751 ], [ 356223.676500000059605, 257549.458099998533726 ], [ 356204.245899997651577, 257558.587200000882149 ], [ 356186.431500002741814, 257567.307399999350309 ], [ 356143.430799998342991, 257598.197299998253584 ], [ 356141.802000001072884, 257600.083799999207258 ], [ 356128.022799998521805, 257608.414700001478195 ], [ 356094.008400000631809, 257625.6570999994874 ], [ 356080.250699996948242, 257631.455099999904633 ], [ 356078.632700003683567, 257632.075199998915195 ], [ 356009.869599997997284, 257658.110199999064207 ], [ 356005.028099998831749, 257658.49269999936223 ], [ 355999.398299999535084, 257656.75789999961853 ], [ 355995.399099998176098, 257652.925500001758337 ], [ 355980.941200003027916, 257646.263300001621246 ], [ 355984.117899999022484, 257651.988800000399351 ], [ 355988.090199999511242, 257658.987399999052286 ], [ 355992.890299998223782, 257663.459600001573563 ], [ 356002.533600002527237, 257667.338199999183416 ], [ 356008.982299998402596, 257667.602099999785423 ], [ 356013.829199999570847, 257666.586300000548363 ], [ 356038.097699999809265, 257657.496800001710653 ], [ 356069.64639999717474, 257645.722699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93450576, "LATITUDE": 18.34937452, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.03996490599999, "SHAPE_Area": 389.10298982099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358407.746699996292591, 257796.083599999547005 ], [ 358414.396600000560284, 257791.713199999183416 ], [ 358423.479999996721745, 257735.281899999827147 ], [ 358416.205200001597404, 257737.333299998193979 ], [ 358411.097599998116493, 257768.95549999922514 ], [ 358407.746699996292591, 257796.083599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93064263, "LATITUDE": 18.34956064, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.797379945700001, "SHAPE_Area": 86.295858793799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358842.298600003123283, 257793.171799998730421 ], [ 358831.058700002729893, 257787.380300000309944 ], [ 358803.665700003504753, 257784.622999999672174 ], [ 358803.647699996829033, 257786.733800001442432 ], [ 358830.234399996697903, 257789.484499998390675 ], [ 358842.278800003230572, 257795.493700001388788 ], [ 358842.298600003123283, 257793.171799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93085572, "LATITUDE": 18.34951748, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.992681081, "SHAPE_Area": 206.88900016599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358756.937299996614456, 257779.807599999010563 ], [ 358803.665700003504753, 257784.622999999672174 ], [ 358831.058700002729893, 257787.380300000309944 ], [ 358842.298600003123283, 257793.171799998730421 ], [ 358843.126400001347065, 257790.645500000566244 ], [ 358831.884800001978874, 257785.065000001341105 ], [ 358794.82320000231266, 257781.384199999272823 ], [ 358756.957099996507168, 257777.485700000077486 ], [ 358756.937299996614456, 257779.807599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93105537, "LATITUDE": 18.34951708, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.365112876799998, "SHAPE_Area": 103.655164787 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358756.937299996614456, 257779.807599999010563 ], [ 358756.917499996721745, 257782.129399999976158 ], [ 358803.647699996829033, 257786.733800001442432 ], [ 358803.665700003504753, 257784.622999999672174 ], [ 358756.937299996614456, 257779.807599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.964448, "LATITUDE": 18.34938617, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.97326651200001, "SHAPE_Area": 345.35238771000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355250.395900003612041, 257738.020399998873472 ], [ 355209.248800002038479, 257740.638900000602007 ], [ 355210.020900003612041, 257744.655999999493361 ], [ 355251.166199997067451, 257742.248599998652935 ], [ 355290.69709999859333, 257740.039000000804663 ], [ 355290.734899997711182, 257735.606300000101328 ], [ 355250.395900003612041, 257738.020399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94462405, "LATITUDE": 18.34897283, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.24051313199999, "SHAPE_Area": 1107.8753334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357373.302599996328354, 257674.124400001019239 ], [ 357359.521600000560284, 257682.666400000452995 ], [ 357349.023299999535084, 257684.48030000180006 ], [ 357324.585600003600121, 257739.029899999499321 ], [ 357336.385600000619888, 257748.127199999988079 ], [ 357373.302599996328354, 257674.124400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93439832, "LATITUDE": 18.34915173, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.2823912944, "SHAPE_Area": 33.871246701799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358427.410899996757507, 257747.135299999266863 ], [ 358429.912500001490116, 257737.44539999961853 ], [ 358423.479999996721745, 257735.281899999827147 ], [ 358427.410899996757507, 257747.135299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703044300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96592892, "LATITUDE": 18.34900739, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.946702425, "SHAPE_Area": 545.68538519699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355117.033500000834465, 257679.933600001037121 ], [ 355078.208200000226498, 257693.970199998468161 ], [ 355078.19030000269413, 257696.081000000238419 ], [ 355082.13910000026226, 257705.823600001633167 ], [ 355086.127499997615814, 257710.922499999403954 ], [ 355091.741099998354912, 257714.557100001722574 ], [ 355117.033500000834465, 257679.933600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703034100", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-6 & 108A-7", "ACRE": "0.87", "LONGITUDE": -64.95853364, "LATITUDE": 18.34891264, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.34679346600001, "SHAPE_Area": 1765.3065683699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355896.509300000965595, 257713.12220000103116 ], [ 355899.280699998140335, 257671.770500000566244 ], [ 355868.631800003349781, 257672.575100000947714 ], [ 355844.305799998342991, 257688.419100001454353 ], [ 355868.25959999859333, 257716.268399998545647 ], [ 355880.374099999666214, 257714.0456000007689 ], [ 355896.509300000965595, 257713.12220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93175072, "LATITUDE": 18.34900329, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.769331651399995, "SHAPE_Area": 248.07712219499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358694.564599998295307, 257718.29109999909997 ], [ 358695.297200001776218, 257726.951900001615286 ], [ 358716.995700001716614, 257735.57319999858737 ], [ 358717.022699996829033, 257732.407000001519918 ], [ 358717.114399999380112, 257721.642000000923872 ], [ 358694.564599998295307, 257718.29109999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10303039400", "MAP": "D9-2594-T84", "PARCEL_NAM": "4D-7A", "ACRE": ".34", "LONGITUDE": -64.91141895, "LATITUDE": 18.34877308, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.036467227, "SHAPE_Area": 1504.1212471199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360872.819200001657009, 257688.622999999672174 ], [ 360828.988799996674061, 257722.250300001353025 ], [ 360836.019100002944469, 257748.905600000172853 ], [ 360886.337700001895428, 257710.898400001227856 ], [ 360878.366300001740456, 257700.067400000989437 ], [ 360872.819200001657009, 257688.622999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9260292, "LATITUDE": 18.34878947, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.37254062700001, "SHAPE_Area": 146.12371524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359310.970399998128414, 257678.373100001364946 ], [ 359310.804899998009205, 257697.792399998754263 ], [ 359309.712700001895428, 257731.347300000488758 ], [ 359312.914599999785423, 257734.11769999936223 ], [ 359313.187899999320507, 257702.033700000494719 ], [ 359313.389300003647804, 257678.392900001257658 ], [ 359310.970399998128414, 257678.373100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904021600", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-6", "ACRE": ".50", "LONGITUDE": -64.91685914, "LATITUDE": 18.34865161, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.15629228099999, "SHAPE_Area": 2658.2990844599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360313.706600002944469, 257723.732500001788139 ], [ 360279.597999997437, 257657.381099998950958 ], [ 360249.60080000013113, 257676.345100000500679 ], [ 360280.498499996960163, 257740.981499999761581 ], [ 360313.706600002944469, 257723.732500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93804697, "LATITUDE": 18.34853309, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.31729704399999, "SHAPE_Area": 647.46925864800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358072.807099997997284, 257629.186999998986721 ], [ 358074.435900002717972, 257627.300500001758337 ], [ 358070.442100003361702, 257622.834899999201298 ], [ 358059.029600001871586, 257637.30689999833703 ], [ 358041.899300001561642, 257660.386999998241663 ], [ 358030.454499997198582, 257678.658500000834465 ], [ 358028.829199999570847, 257680.122800000011921 ], [ 358015.719700001180172, 257704.502399999648333 ], [ 358014.002700001001358, 257716.731800001114607 ], [ 358019.697300001978874, 257710.86769999936223 ], [ 358025.422399997711182, 257701.415399998426437 ], [ 358027.065600000321865, 257697.840199999511242 ], [ 358033.627599999308586, 257684.806200001388788 ], [ 358046.711999997496605, 257663.381700001657009 ], [ 358055.67849999666214, 257652.056000001728535 ], [ 358063.831500001251698, 257641.56810000166297 ], [ 358069.540500000119209, 257634.015399999916553 ], [ 358072.807099997997284, 257629.186999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903039200", "MAP": "D9-45-T54", "PARCEL_NAM": "4C", "ACRE": ".17", "LONGITUDE": -64.93169435, "LATITUDE": 18.3487323, "OBJECTID_1": 4904, "PARCEL_NO_": "102903039200", "Tax_Legal_": "MAFOLIE 4C GR NORTHSIDE", "Name": "FSA ST THOMAS LLC", "Address": "7091 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.71125556199999, "SHAPE_Area": 993.79921191100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358735.889899998903275, 257692.746199999004602 ], [ 358696.536499999463558, 257673.197999998927116 ], [ 358696.542300000786781, 257675.455200001597404 ], [ 358698.669900000095367, 257709.669799998402596 ], [ 358717.191699996590614, 257712.565600000321865 ], [ 358724.302500002086163, 257714.022399999201298 ], [ 358735.816899999976158, 257692.880300000309944 ], [ 358735.889899998903275, 257692.746199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703034000", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-6 & 108A-7", "ACRE": "0.87", "LONGITUDE": -64.95866298, "LATITUDE": 18.34861737, "OBJECTID_1": 3331, "PARCEL_NO_": "102703034000", "Tax_Legal_": "CONTANT 108A-6&108A-7 7B S S QTR", "Name": "MOORE, M. & RHYMER, F.&V.&M.& JARVIS,D.", "Address": "BOX 4548", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71800, "Improved_V": 273300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.254896874, "SHAPE_Area": 2375.32759205 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355902.649800002574921, 257654.910599999129772 ], [ 355893.837899997830391, 257648.083500001579523 ], [ 355880.992600001394749, 257641.434399999678135 ], [ 355864.893399998545647, 257638.136300001293421 ], [ 355847.149099998176098, 257638.624299999326468 ], [ 355841.477899998426437, 257641.744300000369549 ], [ 355834.10249999910593, 257655.616099998354912 ], [ 355829.208800002932549, 257662.120000001043081 ], [ 355828.380900003015995, 257664.646299999207258 ], [ 355825.93860000371933, 257667.37049999833107 ], [ 355844.305799998342991, 257688.419100001454353 ], [ 355868.631800003349781, 257672.575100000947714 ], [ 355899.280699998140335, 257671.770500000566244 ], [ 355902.649800002574921, 257654.910599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704062500", "MAP": "A9-412-T93", "PARCEL_NAM": "107-41", "ACRE": "0.26", "LONGITUDE": -64.95680355, "LATITUDE": 18.34866776, "OBJECTID_1": 3670, "PARCEL_NO_": "102704062500", "Tax_Legal_": "CONTANT 107-41 7B SOUTHSIDE QUARTER", "Name": "CHESTERFIELD, ALVA", "Address": "2010 Haabets Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026471, "Country": "United States", "Land_Value": 34600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.2653501, "SHAPE_Area": 1105.49654627 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356080.672200001776218, 257676.632599998265505 ], [ 356069.64639999717474, 257645.722699999809265 ], [ 356038.097699999809265, 257657.496800001710653 ], [ 356049.919100001454353, 257689.679800000041723 ], [ 356068.543399997055531, 257680.544100001454353 ], [ 356080.672200001776218, 257676.632599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704045400", "MAP": "B9-145-T66", "PARCEL_NAM": "6A-27", "ACRE": null, "LONGITUDE": -64.95277458, "LATITUDE": 18.34869178, "OBJECTID_1": 3589, "PARCEL_NO_": "102704045400", "Tax_Legal_": "LILLENDAHL & MARIENHOJ 6A-27 LITTLE NORTHSIDE", "Name": "WEBSTER, CORBIN", "Address": "PO Box 2772", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 82000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.849746818, "SHAPE_Area": 2382.0490753300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356521.61370000243187, 257693.329300001263618 ], [ 356517.018500000238419, 257664.794100001454353 ], [ 356497.827100001275539, 257645.849700000137091 ], [ 356437.902800001204014, 257675.5456000007689 ], [ 356436.275799997150898, 257677.221000000834465 ], [ 356437.836300000548363, 257683.355500001460314 ], [ 356445.883199997246265, 257685.321199998259544 ], [ 356521.61370000243187, 257693.329300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904021700", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-7", "ACRE": ".50", "LONGITUDE": -64.91658234000001, "LATITUDE": 18.34850222, "OBJECTID_1": 5024, "PARCEL_NO_": "102904021700", "Tax_Legal_": "1G-7-REM & 1G-8-A ST.JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "LISA SMITH CURRERI, TRUSTEE", "Address": "PO Box 6047", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046047, "Country": "United States", "Land_Value": 88000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.34467904, "SHAPE_Area": 2337.456467 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360342.866899996995926, 257708.35020000115037 ], [ 360303.920400001108646, 257641.959199998527765 ], [ 360279.597999997437, 257657.381099998950958 ], [ 360313.706600002944469, 257723.732500001788139 ], [ 360342.866899996995926, 257708.35020000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903035500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93234966, "LATITUDE": 18.34864511, "OBJECTID_1": 4867, "PARCEL_NO_": "102903035500", "Tax_Legal_": "7 ESTATE MAFOLIE GREAT NORTHSIDE QTR.", "Name": "11-37 TRUST", "Address": "PO Box 7702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 291500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.63501293799999, "SHAPE_Area": 792.99732822700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358657.558799996972084, 257708.066799998283386 ], [ 358653.870700001716614, 257667.717700000852346 ], [ 358628.833599999547005, 257672.368000000715256 ], [ 358622.363300003111362, 257674.636999998241663 ], [ 358620.730899997055531, 257676.945700000971556 ], [ 358620.709399998188019, 257679.47859999909997 ], [ 358623.104900002479553, 257682.242499999701977 ], [ 358634.375299997627735, 257684.445599999278784 ], [ 358642.375500001013279, 257691.899399999529123 ], [ 358643.950400002300739, 257696.345300000160933 ], [ 358643.037900000810623, 257708.792300000786781 ], [ 358645.446099996566772, 257710.078600000590086 ], [ 358651.914599999785423, 257708.020599998533726 ], [ 358657.558799996972084, 257708.066799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032800", "MAP": "D9-33-T52", "PARCEL_NAM": "266A", "ACRE": "0.50", "LONGITUDE": -64.92847744, "LATITUDE": 18.34854149, "OBJECTID_1": 4840, "PARCEL_NO_": "102903032800", "Tax_Legal_": "HOSPITAL GROUND 266A GREAT NORTHSIDE QTR", "Name": "GEORGE, AUDRA & ALMEADE", "Address": "526 Dominish Estates Dr", "City": "Apopka", "State": "Florida", "Zip": 32712, "Country": "United States", "Land_Value": 62600, "Improved_V": 81800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.710020345, "SHAPE_Area": 2237.1503971299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359063.713600002229214, 257638.192699998617172 ], [ 359062.150700002908707, 257637.495400000363588 ], [ 359052.465899996459484, 257638.471599999815226 ], [ 359035.01129999756813, 257642.403400000184774 ], [ 359035.46679999679327, 257646.14299999922514 ], [ 359040.641699999570847, 257701.280699998140335 ], [ 359042.305200003087521, 257716.503400001674891 ], [ 359071.890500001609325, 257713.971599999815226 ], [ 359071.593000002205372, 257711.214499998837709 ], [ 359063.713600002229214, 257638.192699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903030400", "MAP": "D3-137-T46", "PARCEL_NAM": "4A", "ACRE": ".13", "LONGITUDE": -64.93192828, "LATITUDE": 18.3486659, "OBJECTID_1": 4813, "PARCEL_NO_": "102903030400", "Tax_Legal_": "MAFOLIE 4A GR NORTHSIDE", "Name": "FSA ST THOMAS LLC", "Address": "7091 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42500, "Improved_V": 330500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.168288554, "SHAPE_Area": 696.35303704 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358680.143299996852875, 257665.054999999701977 ], [ 358677.527400001883507, 257663.75560000166297 ], [ 358682.380699999630451, 257708.572500001639128 ], [ 358684.969800002872944, 257708.713300000876188 ], [ 358698.669900000095367, 257709.669799998402596 ], [ 358696.542300000786781, 257675.455200001597404 ], [ 358696.536499999463558, 257673.197999998927116 ], [ 358680.143299996852875, 257665.054999999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703044800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96550534000001, "LATITUDE": 18.34866556, "OBJECTID_1": 3384, "PARCEL_NO_": "102703044800", "Tax_Legal_": "LINDBERG BAY 37-M SOUTHSIDE QUARTER", "Name": "DOOBAY, RABINDRANAUTH", "Address": "PO Box 483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040483, "Country": "United States", "Land_Value": 17400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.28137406299999, "SHAPE_Area": 1060.2193942900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355196.424400001764297, 257636.886999998241663 ], [ 355130.1503000035882, 257654.709800001233816 ], [ 355102.670900002121925, 257662.084199998527765 ], [ 355117.033500000834465, 257679.933600001037121 ], [ 355125.922700002789497, 257677.684399999678135 ], [ 355127.560500003397465, 257674.742499999701977 ], [ 355135.67400000244379, 257668.898200001567602 ], [ 355169.677599996328354, 257652.9222999997437 ], [ 355196.424400001764297, 257636.886999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046600", "MAP": "G3-150-T75", "PARCEL_NAM": "293", "ACRE": ".175", "LONGITUDE": -64.96338348, "LATITUDE": 18.34877641, "OBJECTID_1": 3429, "PARCEL_NO_": "102703046600", "Tax_Legal_": "CONTANT 293 & 314 7A S S QTR", "Name": "DENNIS, DAVID ANTHONY", "Address": "PO BOX 8791", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.952348079, "SHAPE_Area": 641.67433801799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355375.970299996435642, 257646.844000000506639 ], [ 355349.330700002610683, 257677.838199999183416 ], [ 355348.23759999871254, 257693.140999998897314 ], [ 355374.516199998557568, 257682.019000001251698 ], [ 355374.714400000870228, 257677.355399999767542 ], [ 355375.968199998140335, 257647.85080000013113 ], [ 355375.970299996435642, 257646.844000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903030300", "MAP": null, "PARCEL_NAM": "4B", "ACRE": null, "LONGITUDE": -64.93206013, "LATITUDE": 18.34864644, "OBJECTID_1": 4812, "PARCEL_NO_": "102903030300", "Tax_Legal_": "MAFOLIE 4B GR NORTHSIDE", "Name": "HAMILTON, CHARLES A. & DAISY M", "Address": "P.O. BOX 2463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.59183001, "SHAPE_Area": 488.53095765900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358677.527400001883507, 257663.75560000166297 ], [ 358675.054999999701977, 257662.527399998158216 ], [ 358666.793200001120567, 257665.290399998426437 ], [ 358671.267899997532368, 257707.9679000005126 ], [ 358682.380699999630451, 257708.572500001639128 ], [ 358677.527400001883507, 257663.75560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903030200", "MAP": null, "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.93217419, "LATITUDE": 18.34865949, "OBJECTID_1": 4811, "PARCEL_NO_": "102903030200", "Tax_Legal_": "MAFOLIE 6 GR NORTHSIDE", "Name": "11-37 TRUST", "Address": "PO Box 7702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.28669425, "SHAPE_Area": 557.93801647099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358666.793200001120567, 257665.290399998426437 ], [ 358653.870700001716614, 257667.717700000852346 ], [ 358657.558799996972084, 257708.066799998283386 ], [ 358671.267899997532368, 257707.9679000005126 ], [ 358666.793200001120567, 257665.290399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045000", "MAP": "D9-5941-T95", "PARCEL_NAM": "36J", "ACRE": "0.07", "LONGITUDE": -64.96442324, "LATITUDE": 18.34874417, "OBJECTID_1": 3386, "PARCEL_NO_": "102703045000", "Tax_Legal_": "LINDBERG BAY 36 SOUTHSIDE QTR", "Name": "PENN, CLAUDE & JOHN", "Address": "P.O. BOX 4024", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 86000, "Improved_V": 21400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.6578948529, "SHAPE_Area": 292.33074337599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355242.88120000064373, 257673.575399998575449 ], [ 355259.770599998533726, 257678.779800001531839 ], [ 355264.612099997699261, 257678.397300001233816 ], [ 355259.136900000274181, 257658.509700000286102 ], [ 355253.476599998772144, 257660.363200001418591 ], [ 355246.216099999845028, 257660.725999999791384 ], [ 355242.88120000064373, 257673.575399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032000", "MAP": "F9-3377-T75", "PARCEL_NAM": "3A", "ACRE": "0.17", "LONGITUDE": -64.93039965, "LATITUDE": 18.34839828, "OBJECTID_1": 4831, "PARCEL_NO_": "102903032000", "Tax_Legal_": "LYTTONS FANCY 3A GR NORTHSIDE QTR", "Name": "RABSATT, HELEN", "Address": "BOX 3734", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28700, "Improved_V": 39900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.672532741, "SHAPE_Area": 1163.87727533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358854.899099998176098, 257644.013300001621246 ], [ 358840.708499997854233, 257637.614500001072884 ], [ 358832.945900000631809, 257655.752199999988079 ], [ 358827.66160000115633, 257668.09910000115633 ], [ 358828.045000001788139, 257668.263099998235703 ], [ 358833.665799997746944, 257670.666900001466274 ], [ 358857.636100001633167, 257681.690499998629093 ], [ 358859.368900001049042, 257682.487399999052286 ], [ 358873.030699998140335, 257652.189100001007318 ], [ 358871.752599999308586, 257651.612799998372793 ], [ 358870.922600001096725, 257651.238600000739098 ], [ 358854.899099998176098, 257644.013300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033500", "MAP": "D9-2594-T84", "PARCEL_NAM": "4D-7", "ACRE": ".76", "LONGITUDE": -64.9115238, "LATITUDE": 18.34837177, "OBJECTID_1": 5831, "PARCEL_NO_": "103003033500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4D-7 4 GR NORTHSIDE QTR", "Name": "FOY, JULIEN", "Address": "PO Box 7031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 78600, "Improved_V": 294600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.69853272200001, "SHAPE_Area": 2843.22770657 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360830.607900001108646, 257626.849300000816584 ], [ 360828.738099999725819, 257657.020399998873472 ], [ 360825.849899999797344, 257712.092099998146296 ], [ 360828.988799996674061, 257722.250300001353025 ], [ 360872.819200001657009, 257688.622999999672174 ], [ 360871.238899998366833, 257684.810400001704693 ], [ 360871.256899997591972, 257682.699599999934435 ], [ 360868.872100003063679, 257678.669300001114607 ], [ 360865.810500003397465, 257659.43470000103116 ], [ 360861.87610000371933, 257648.003499999642372 ], [ 360850.697400003671646, 257635.035300001502037 ], [ 360838.654799997806549, 257628.815000001341105 ], [ 360830.607900001108646, 257626.849300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010400", "MAP": null, "PARCEL_NAM": "34", "ACRE": null, "LONGITUDE": -64.96600656, "LATITUDE": 18.34765655, "OBJECTID_1": 7437, "PARCEL_NO_": "105201010400", "Tax_Legal_": "LINDBERG BAY 34 SOUTHSIDE QTR", "Name": "THOMAS, RUTH & GOTTLIEB, KAIJA", "Address": "PO Box 342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040342, "Country": "United States", "Land_Value": 222200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 974.516265288, "SHAPE_Area": 17147.1077405 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355051.481100000441074, 257403.129200000315905 ], [ 355076.786200001835823, 257421.618400000035763 ], [ 355052.444499999284744, 257449.928899999707937 ], [ 355045.555600002408028, 257443.987399999052286 ], [ 355046.920699998736382, 257485.787000000476837 ], [ 355047.628100000321865, 257497.402899999171495 ], [ 355054.988799996674061, 257674.570700000971556 ], [ 355061.451899997889996, 257673.145899999886751 ], [ 355102.670900002121925, 257662.084199998527765 ], [ 355130.1503000035882, 257654.709800001233816 ], [ 355125.252400003373623, 257567.065799999982119 ], [ 355123.859200000762939, 257536.521000001579523 ], [ 355122.699600003659725, 257488.096000000834465 ], [ 355120.660099998116493, 257443.538499999791384 ], [ 355119.408900000154972, 257401.098499998450279 ], [ 355118.062399998307228, 257369.845600001513958 ], [ 355116.784299999475479, 257330.571800000965595 ], [ 355110.330200001597404, 257330.941100001335144 ], [ 355111.649700000882149, 257365.360199999064207 ], [ 355112.202500000596046, 257395.128899998962879 ], [ 355111.975900001823902, 257405.081900000572205 ], [ 355112.901900000870228, 257460.512200001627207 ], [ 355082.474799998104572, 257469.772700000554323 ], [ 355079.167499996721745, 257465.142499998211861 ], [ 355077.447700001299381, 257461.041400000452995 ], [ 355076.257100000977516, 257456.808100000023842 ], [ 355075.727899998426437, 257453.633099999278784 ], [ 355075.727899998426437, 257449.664299998432398 ], [ 355076.653999999165535, 257443.578899998217821 ], [ 355077.579999998211861, 257438.154899999499321 ], [ 355078.241499997675419, 257433.921599999070168 ], [ 355078.902900002896786, 257429.423599999397993 ], [ 355079.564400002360344, 257423.867400001734495 ], [ 355079.696699999272823, 257405.478799998760223 ], [ 355056.54559999704361, 257400.054800000041723 ], [ 355051.481100000441074, 257403.129200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046900", "MAP": "B3-195-T73", "PARCEL_NAM": "295", "ACRE": "0.23", "LONGITUDE": -64.96282526, "LATITUDE": 18.3486331, "OBJECTID_1": 3432, "PARCEL_NO_": "102703046900", "Tax_Legal_": "CONTANT 295 7A SOUTHSIDE QTR.", "Name": "HEWITT, CHARLES,NATHANIEL,ELIZABETH &C.M. DAYTON", "Address": "52 Carlyle Raod", "City": "Portland", "State": "Maine", "Zip": 4103, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.80625984, "SHAPE_Area": 1390.8384293300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355406.49889999628067, 257669.790399998426437 ], [ 355405.615599997341633, 257678.476300001144409 ], [ 355405.556699998676777, 257678.500399999320507 ], [ 355435.298500001430511, 257682.781500000506639 ], [ 355435.833999998867512, 257682.681099999696016 ], [ 355436.385399997234344, 257676.425700001418591 ], [ 355440.674099996685982, 257646.274399999529123 ], [ 355441.394599996507168, 257641.807199999690056 ], [ 355432.458200000226498, 257638.530499998480082 ], [ 355424.410099998116493, 257635.141800001263618 ], [ 355420.032999999821186, 257633.871100001037121 ], [ 355413.396899998188019, 257632.741500001400709 ], [ 355410.149400003254414, 257632.600299999117851 ], [ 355409.372800000011921, 257640.511999998241663 ], [ 355406.49889999628067, 257669.790399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704044700", "MAP": "A9-691-T006", "PARCEL_NAM": "6A-18", "ACRE": ".465", "LONGITUDE": -64.95388751, "LATITUDE": 18.34862626, "OBJECTID_1": 3582, "PARCEL_NO_": "102704044700", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-18 3 LITTLE NORTHSIDE", "Name": "CALLWOOD, ALBERT & MARIA", "Address": "PO Box 308280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.13150778299999, "SHAPE_Area": 1136.9852388700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356339.458999998867512, 257683.39469999819994 ], [ 356382.218699999153614, 257680.78940000012517 ], [ 356383.131099998950958, 257668.342300001531839 ], [ 356383.229999996721745, 257656.732999999076128 ], [ 356381.779200002551079, 257637.722699999809265 ], [ 356380.987300001084805, 257636.027499999850988 ], [ 356377.762000001966953, 257636.0011 ], [ 356353.337099999189377, 257663.4543999992311 ], [ 356339.458999998867512, 257683.39469999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804026400", "MAP": "D9-4654-T89", "PARCEL_NAM": "3C", "ACRE": ".25", "LONGITUDE": -64.93552742, "LATITUDE": 18.34854226, "OBJECTID_1": 4568, "PARCEL_NO_": "102804026400", "Tax_Legal_": "AGNES FANCY 3C GR NORTHSIDE 8H", "Name": "AMBROSE, GAIL K. & FARRELL, TREVOR", "Address": "PO Box 7892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39500, "Improved_V": 416200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.423951397, "SHAPE_Area": 1031.7501572599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358329.111800000071526, 257684.796000000089407 ], [ 358308.910599999129772, 257647.265299998223782 ], [ 358291.103799998760223, 257656.093800000846386 ], [ 358287.823499999940395, 257657.706000000238419 ], [ 358304.724600002169609, 257692.449599999934435 ], [ 358306.191600002348423, 257695.465199999511242 ], [ 358307.373000003397465, 257694.915300000458956 ], [ 358329.111800000071526, 257684.796000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904023700", "MAP": "G9-1021-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92327007, "LATITUDE": 18.34863092, "OBJECTID_1": 5054, "PARCEL_NO_": "102904023700", "Tax_Legal_": "284C HOSPITAL GROUND GREAT NORTHSIDE", "Name": "DENCH, GLADIS R.", "Address": "PO Box 307518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.39334049300001, "SHAPE_Area": 1398.5945401199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359623.866400003433228, 257675.445599999278784 ], [ 359577.884999997913837, 257677.602400001138449 ], [ 359584.877400003373623, 257708.690400000661612 ], [ 359627.630000002682209, 257706.929299999028444 ], [ 359623.866400003433228, 257675.445599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93132633, "LATITUDE": 18.34871534, "OBJECTID_1": 4819, "PARCEL_NO_": "102903031000", "Tax_Legal_": "MAFOLIE 4 8F GREAT NORTHSIDE QTR.", "Name": "FSA ST THOMAS LLC", "Address": "7091 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32700, "Improved_V": 207400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.5635870411, "SHAPE_Area": 107.400873619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358758.497100003063679, 257691.372099999338388 ], [ 358749.663599997758865, 257687.078000001609325 ], [ 358745.54389999806881, 257697.387800000607967 ], [ 358754.379199996590614, 257701.470899999141693 ], [ 358758.497100003063679, 257691.372099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903034700", "MAP": "G9-1517-T70", "PARCEL_NAM": "292", "ACRE": "0.80", "LONGITUDE": -64.92659117, "LATITUDE": 18.34843426, "OBJECTID_1": 4859, "PARCEL_NO_": "102903034700", "Tax_Legal_": "292 HOSPITAL GROUND KINGS QTR", "Name": "Janet P Bass,Carol L Dokes,&Hendricks Living Trust", "Address": "3003 Desert Palm Ct", "City": "Dumfries", "State": "Virginia", "Zip": 22026, "Country": "United States", "Land_Value": 212400, "Improved_V": 137400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.30640935700001, "SHAPE_Area": 3060.5778973199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359277.149999998509884, 257692.049300000071526 ], [ 359284.360299997031689, 257678.366399999707937 ], [ 359287.69820000231266, 257672.490200001746416 ], [ 359287.976599998772144, 257656.629099998623133 ], [ 359287.9341000020504, 257650.863200001418591 ], [ 359287.883599996566772, 257644.012200001627207 ], [ 359284.652800001204014, 257644.024099998176098 ], [ 359271.108800001442432, 257644.073899999260902 ], [ 359247.890900000929832, 257644.182900000363588 ], [ 359221.557300001382828, 257644.306499999016523 ], [ 359221.420000001788139, 257650.820799998939037 ], [ 359221.25110000371933, 257653.859999999403954 ], [ 359219.878600001335144, 257697.440999999642372 ], [ 359231.183100000023842, 257694.080200001597404 ], [ 359247.375600002706051, 257689.635200001299381 ], [ 359265.790700003504753, 257688.047699999064207 ], [ 359277.149999998509884, 257692.049300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803025300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94539063000001, "LATITUDE": 18.34844422, "OBJECTID_1": 4322, "PARCEL_NO_": "102803025300", "Tax_Legal_": "SOLBERG 55A-2 LITTLE NORTHSIDE", "Name": "KLEINMAN, MATTHEW & MALCOLM", "Address": "PO Box 13549", "City": "Austin", "State": "Texas", "Zip": 78711, "Country": "United States", "Land_Value": 93200, "Improved_V": 447500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.579269676, "SHAPE_Area": 1485.82581179 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357307.528399996459484, 257633.267200000584126 ], [ 357312.432800002396107, 257625.496800001710653 ], [ 357285.007399998605251, 257626.538899999111891 ], [ 357279.348899997770786, 257628.181400001049042 ], [ 357275.295699998736382, 257630.68129999935627 ], [ 357274.475000001490116, 257632.363400001078844 ], [ 357265.542599998414516, 257639.67850000038743 ], [ 357254.999399997293949, 257646.769400000572205 ], [ 357242.040899999439716, 257653.418400000780821 ], [ 357233.142700001597404, 257656.723000001162291 ], [ 357250.620800003409386, 257687.474599998444319 ], [ 357257.152199998497963, 257678.028900001198053 ], [ 357289.766199998557568, 257635.86600000038743 ], [ 357307.528399996459484, 257633.267200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704062400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95650133, "LATITUDE": 18.34856883, "OBJECTID_1": 3669, "PARCEL_NO_": "102704062400", "Tax_Legal_": "CONTANT 107-40 7B SOUTHSIDE QUARTER", "Name": "EDWARDS, VICTORIA L.", "Address": "8500 Mjk Ter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.16083687099999, "SHAPE_Area": 1156.0478727499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356110.557899996638298, 257670.755499999970198 ], [ 356105.199699997901917, 257637.147799998521805 ], [ 356088.250900000333786, 257638.908900000154972 ], [ 356069.64639999717474, 257645.722699999809265 ], [ 356080.672200001776218, 257676.632599998265505 ], [ 356110.557899996638298, 257670.755499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903031700", "MAP": "D9-7885-T006", "PARCEL_NAM": "1 of 8GC", "ACRE": "0.895", "LONGITUDE": -64.93076539, "LATITUDE": 18.34828063, "OBJECTID_1": 4826, "PARCEL_NO_": "102903031700", "Tax_Legal_": "LYTTONS FANCY 1 FO 8GC KINGS QTR", "Name": "HYMAN, RUKIYA & RABSATT, JOHN", "Address": "PO BOX 303734", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 112000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.20951323899999, "SHAPE_Area": 4201.1154975199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358805.3783999979496, 257597.804699998348951 ], [ 358805.326399996876717, 257597.497900001704693 ], [ 358803.597699999809265, 257603.293099999427795 ], [ 358773.998599998652935, 257670.178599998354912 ], [ 358793.234999999403954, 257683.846000000834465 ], [ 358803.619999997317791, 257695.329999998211861 ], [ 358806.013800002634525, 257698.304900001734495 ], [ 358809.203100003302097, 257702.55290000140667 ], [ 358811.969899997115135, 257704.763300001621246 ], [ 358832.945900000631809, 257655.752199999988079 ], [ 358840.708499997854233, 257637.614500001072884 ], [ 358846.263899996876717, 257624.634100001305342 ], [ 358847.481499999761581, 257621.789099998772144 ], [ 358850.8125, 257614.006000000983477 ], [ 358811.629299998283386, 257600.033700000494719 ], [ 358805.3783999979496, 257597.804699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93132996, "LATITUDE": 18.3485956, "OBJECTID_1": 4819, "PARCEL_NO_": "102903031000", "Tax_Legal_": "MAFOLIE 4 8F GREAT NORTHSIDE QTR.", "Name": "FSA ST THOMAS LLC", "Address": "7091 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32700, "Improved_V": 207400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.340107782299995, "SHAPE_Area": 427.73022432699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358749.85419999808073, 257664.703600000590086 ], [ 358738.3158999979496, 257693.951200000941753 ], [ 358745.54389999806881, 257697.387800000607967 ], [ 358749.663599997758865, 257687.078000001609325 ], [ 358758.497100003063679, 257691.372099999338388 ], [ 358765.086000002920628, 257675.171900000423193 ], [ 358749.85419999808073, 257664.703600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903036300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92590245, "LATITUDE": 18.34853348, "OBJECTID_1": 4875, "PARCEL_NO_": "102903036300", "Tax_Legal_": "HOSPITAL GROUND 293B 294A-1 GREAT NORTHSIDE QTR", "Name": "RICHARDSON, URIEL,GEORGE,RANDY R.,DAREN LESLE,WENDY AND OTHERS", "Address": "PO Box 304324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71900, "Improved_V": 484800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.94599677, "SHAPE_Area": 1156.81411779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359314.416799999773502, 257652.436799999326468 ], [ 359314.380800001323223, 257656.658399999141693 ], [ 359313.389300003647804, 257678.392900001257658 ], [ 359313.187899999320507, 257702.033700000494719 ], [ 359342.222300000488758, 257701.427000001072884 ], [ 359340.667300000786781, 257694.659299999475479 ], [ 359339.104999996721745, 257688.73589999973774 ], [ 359332.924199998378754, 257657.021299999207258 ], [ 359331.360100001096725, 257651.308899998664856 ], [ 359314.416799999773502, 257652.436799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003028400", "MAP": "D9-413-T64", "PARCEL_NAM": "3-7", "ACRE": ".51", "LONGITUDE": -64.91414315, "LATITUDE": 18.34847038, "OBJECTID_1": 5792, "PARCEL_NO_": "103003028400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-7 GT. NORTHSIDE", "Name": "BRIDGES, FITROY C", "Address": "PO Box 513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040513, "Country": "United States", "Land_Value": 67800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.097598404, "SHAPE_Area": 1640.8832787 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360598.028499998152256, 257667.375500001013279 ], [ 360568.31360000371933, 257653.200199998915195 ], [ 360560.140799999237061, 257666.010000001639128 ], [ 360540.52139999717474, 257697.302299998700619 ], [ 360542.927699998021126, 257698.799699999392033 ], [ 360566.201099999248981, 257711.866900000721216 ], [ 360581.709799997508526, 257689.828999999910593 ], [ 360589.040399998426437, 257681.234099999070168 ], [ 360589.884400002658367, 257676.808100000023842 ], [ 360588.277199998497963, 257676.16160000115633 ], [ 360591.540200002491474, 257671.755399998277426 ], [ 360596.388899996876717, 257670.528499998152256 ], [ 360598.028499998152256, 257667.375500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9460517, "LATITUDE": 18.3484497, "OBJECTID_1": 4324, "PARCEL_NO_": "102803025500", "Tax_Legal_": "SOLBERG 55A-3 LT NORTHSIDE", "Name": "RICHARDSON, GERALD & C. M", "Address": "PO Box 302524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 93200, "Improved_V": 248900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.42843521899999, "SHAPE_Area": 1780.5238073200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357208.986400000751019, 257627.120799999684095 ], [ 357198.605200000107288, 257628.786400001496077 ], [ 357181.946699999272823, 257634.842000000178814 ], [ 357168.347300000488758, 257641.239999998360872 ], [ 357188.55460000038147, 257684.644600000232458 ], [ 357195.854500003159046, 257679.638099998235703 ], [ 357213.751599997282028, 257661.208399999886751 ], [ 357224.294799998402596, 257654.117499999701977 ], [ 357208.986400000751019, 257627.120799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903038100", "MAP": "D9-2818-T84", "PARCEL_NAM": "4A", "ACRE": "0.19", "LONGITUDE": -64.93013916, "LATITUDE": 18.34850314, "OBJECTID_1": 4893, "PARCEL_NO_": "102903038100", "Tax_Legal_": "LYTTONS FANCY 4A GR NORTHSIDE", "Name": "WEBSTER, KENROY,MICKEY & PATRICIA", "Address": "PO Box 10651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.831834695, "SHAPE_Area": 677.19957787299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358877.350500002503395, 257654.136999998241663 ], [ 358874.163000002503395, 257649.67790000140667 ], [ 358862.103699997067451, 257676.422200001776218 ], [ 358875.369000002741814, 257686.157200001180172 ], [ 358884.558200001716614, 257692.90089999884367 ], [ 358891.559799998998642, 257666.462600000202656 ], [ 358885.356100000441074, 257660.957499999552965 ], [ 358877.350500002503395, 257654.136999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103003026400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91632297, "LATITUDE": 18.3483415, "OBJECTID_1": 5780, "PARCEL_NO_": "103003026400", "Tax_Legal_": "1G-8-REM & 1G-7-A ST. JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "CURRERI, CHRISTOPHER PETER", "Address": "PO Box 6047", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 94300, "Improved_V": 520500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.66778441, "SHAPE_Area": 2658.8108985 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360372.074000000953674, 257687.479899998754263 ], [ 360332.297799997031689, 257623.826299998909235 ], [ 360303.920400001108646, 257641.959199998527765 ], [ 360342.866899996995926, 257708.35020000115037 ], [ 360356.647900000214577, 257699.808200001716614 ], [ 360372.074000000953674, 257687.479899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903034600", "MAP": null, "PARCEL_NAM": "292A", "ACRE": null, "LONGITUDE": -64.92629618, "LATITUDE": 18.34861045, "OBJECTID_1": 4858, "PARCEL_NO_": "102903034600", "Tax_Legal_": "HOSPITAL GROUND 292A & 293E NEW QTR", "Name": "BROWN, VERONICA", "Address": "5058 Estate Tipperary", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 8204589, "Country": "United States", "Land_Value": 41500, "Improved_V": 103000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.778715140300001, "SHAPE_Area": 116.926943161 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359277.149999998509884, 257692.049300000071526 ], [ 359284.205700002610683, 257695.50899999961257 ], [ 359286.270599998533726, 257697.949400000274181 ], [ 359287.367299996316433, 257678.390999998897314 ], [ 359287.69820000231266, 257672.490200001746416 ], [ 359284.360299997031689, 257678.366399999707937 ], [ 359277.149999998509884, 257692.049300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94521337, "LATITUDE": 18.34849815, "OBJECTID_1": 4299, "PARCEL_NO_": "102803022600", "Tax_Legal_": "SOLBERG 85 LT. NORTHSIDE", "Name": "BOSCHULTE, LOUIS J", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.749606605, "SHAPE_Area": 1063.1148863000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357304.947700001299381, 257652.244500000029802 ], [ 357307.528399996459484, 257633.267200000584126 ], [ 357289.766199998557568, 257635.86600000038743 ], [ 357257.152199998497963, 257678.028900001198053 ], [ 357280.497500002384186, 257682.652899999171495 ], [ 357293.603500001132488, 257658.695500001311302 ], [ 357297.665700003504753, 257655.1402000002563 ], [ 357304.947700001299381, 257652.244500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93163786, "LATITUDE": 18.34848919, "OBJECTID_1": 4818, "PARCEL_NO_": "102903030900", "Tax_Legal_": "MAFOLIE 5 GR NORTHSIDE QTR", "Name": "MOOREHEAD, J SHELLEY", "Address": "Po Box 182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.957522539, "SHAPE_Area": 1644.27158586 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358736.226000003516674, 257655.304000001400709 ], [ 358734.629600003361702, 257653.391100000590086 ], [ 358711.244699999690056, 257653.410799998790026 ], [ 358703.172600001096725, 257654.400199998170137 ], [ 358691.054499998688698, 257657.045200001448393 ], [ 358679.73200000077486, 257660.963300000876188 ], [ 358675.054999999701977, 257662.527399998158216 ], [ 358680.143299996852875, 257665.054999999701977 ], [ 358738.3158999979496, 257693.951200000941753 ], [ 358749.85419999808073, 257664.703600000590086 ], [ 358736.226000003516674, 257655.304000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903034800", "MAP": "D9-454-T64", "PARCEL_NAM": "REM 291", "ACRE": "0.60", "LONGITUDE": -64.92715793000001, "LATITUDE": 18.3484895, "OBJECTID_1": 4860, "PARCEL_NO_": "102903034800", "Tax_Legal_": "HOSPITAL GROUND 291 GREAT NORTHSIDE QTR", "Name": "QUESTEL, VANBORNE", "Address": "PO Box 304175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.60256626899999, "SHAPE_Area": 2459.66392537 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359177.32379999756813, 257649.251899998635054 ], [ 359162.736800000071526, 257647.055700000375509 ], [ 359162.810300000011921, 257653.51799999922514 ], [ 359162.555799998342991, 257683.380699999630451 ], [ 359168.635499998927116, 257684.714000001549721 ], [ 359178.001800000667572, 257688.682700000703335 ], [ 359188.002999998629093, 257693.762699998915195 ], [ 359199.115599997341633, 257699.953999999910593 ], [ 359206.735600002110004, 257700.747800000011921 ], [ 359213.561800003051758, 257699.318999998271465 ], [ 359219.878600001335144, 257697.440999999642372 ], [ 359221.188199996948242, 257655.856100000441074 ], [ 359201.76519999653101, 257652.931800000369549 ], [ 359192.662600003182888, 257651.561299998313189 ], [ 359177.32379999756813, 257649.251899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003026100", "MAP": "D9-413-T64", "PARCEL_NAM": "3-6", "ACRE": ".50", "LONGITUDE": -64.91451693, "LATITUDE": 18.34841238, "OBJECTID_1": 5777, "PARCEL_NO_": "103003026100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-6 GR NORTHSIDE", "Name": "GRAHAM, IRVING", "Address": "PO Box 10691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62600, "Improved_V": 284100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.644217072, "SHAPE_Area": 2106.0601805800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360540.52139999717474, 257697.302299998700619 ], [ 360560.140799999237061, 257666.010000001639128 ], [ 360520.823899999260902, 257643.101199999451637 ], [ 360501.962200000882149, 257680.099300000816584 ], [ 360498.697400003671646, 257684.716600000858307 ], [ 360534.780100002884865, 257708.654399998486042 ], [ 360540.52139999717474, 257697.302299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704045800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95180466, "LATITUDE": 18.34849286, "OBJECTID_1": 3593, "PARCEL_NO_": "102704045800", "Tax_Legal_": "LILLIENDAL&MARIENHOJ 6A-29 No.3 LITTLE NORTHSIDE QTR.", "Name": "GEORGES, KESHANA & COLVIN GEORGES JR", "Address": "PO BOX 10637", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40400, "Improved_V": 338700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.562557338, "SHAPE_Area": 1960.36131058 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356568.949799999594688, 257626.80009999871254 ], [ 356562.933399997651577, 257670.447200000286102 ], [ 356569.378499999642372, 257671.133200000971556 ], [ 356612.071699999272823, 257676.337799999862909 ], [ 356609.180900000035763, 257637.050700001418591 ], [ 356601.925899997353554, 257636.780299998819828 ], [ 356601.187899999320507, 257628.752700001001358 ], [ 356568.949799999594688, 257626.80009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704062300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9561784, "LATITUDE": 18.34852116, "OBJECTID_1": 3668, "PARCEL_NO_": "102704062300", "Tax_Legal_": "CONTANT 107-39 7B SOUTHSIDE QUARTER", "Name": "HENDRICKSON, GRETHEL", "Address": "PO Box 305702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 192100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.40586159200001, "SHAPE_Area": 1173.7492423000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356146.904899999499321, 257663.664700001478195 ], [ 356140.709799997508526, 257633.638700000941753 ], [ 356105.199699997901917, 257637.147799998521805 ], [ 356110.557899996638298, 257670.755499999970198 ], [ 356146.904899999499321, 257663.664700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704045700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95226631, "LATITUDE": 18.34845534, "OBJECTID_1": 3592, "PARCEL_NO_": "102704045700", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-28 3 LITTLE NORTHSIDE", "Name": "THOMAS, WINFORD C", "Address": "2903 Liefe Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35300, "Improved_V": 186000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.40968999, "SHAPE_Area": 2220.35479928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356568.949799999594688, 257626.80009999871254 ], [ 356539.936899997293949, 257624.8739 ], [ 356497.827100001275539, 257645.849700000137091 ], [ 356517.018500000238419, 257664.794100001454353 ], [ 356562.933399997651577, 257670.447200000286102 ], [ 356568.949799999594688, 257626.80009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903036200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92566022, "LATITUDE": 18.34848917, "OBJECTID_1": 4874, "PARCEL_NO_": "102903036200", "Tax_Legal_": "HOSPITAL GROUND 294 B GREAT NORTHSIDE QTR", "Name": "PLUNKETT, ADRIAN L. (life estate) & APRIL A. PLUNKETT", "Address": "PO Box 6391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11000, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.510256438799999, "SHAPE_Area": 497.56186038099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359347.400100000202656, 257661.572700001299381 ], [ 359339.104999996721745, 257688.73589999973774 ], [ 359351.971799999475479, 257692.852000001817942 ], [ 359363.513300001621246, 257662.13289999961853 ], [ 359349.656700000166893, 257654.822700001299381 ], [ 359347.400100000202656, 257661.572700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803022700", "MAP": "F9-2930-T72", "PARCEL_NAM": "84", "ACRE": ".25", "LONGITUDE": -64.94477885000001, "LATITUDE": 18.34844269, "OBJECTID_1": 4300, "PARCEL_NO_": "102803022700", "Tax_Legal_": "SOLBERG 84 LITTLE NORTHSIDE", "Name": "CHARLENE ONEAL HENDERSON REVOCABLE TRUST", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 276100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.862007398, "SHAPE_Area": 1217.23998319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357307.528399996459484, 257633.267200000584126 ], [ 357304.947700001299381, 257652.244500000029802 ], [ 357311.398199997842312, 257652.2972999997437 ], [ 357318.627999998629093, 257655.522799998521805 ], [ 357337.840999998152256, 257671.934300001710653 ], [ 357345.877199999988079, 257675.166499998420477 ], [ 357353.135799996554852, 257675.014800000935793 ], [ 357357.178199999034405, 257673.781300000846386 ], [ 357362.847499996423721, 257670.872400000691414 ], [ 357366.096100002527237, 257668.154800001531839 ], [ 357361.269100002944469, 257666.848700001835823 ], [ 357352.444600000977516, 257661.499099999666214 ], [ 357334.057599999010563, 257642.772399999201298 ], [ 357329.252099998295307, 257638.933400001376867 ], [ 357324.477200001478195, 257631.506000000983477 ], [ 357319.668099999427795, 257628.089200001209974 ], [ 357312.432800002396107, 257625.496800001710653 ], [ 357307.528399996459484, 257633.267200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704062200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95583487, "LATITUDE": 18.34846045, "OBJECTID_1": 3667, "PARCEL_NO_": "102704062200", "Tax_Legal_": "CONTANT 107-38 7B SOUTHSIDE QUARTER", "Name": "PHIPPS, DELBERT I. SR. & DENISE", "Address": "PO Box 307622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34600, "Improved_V": 599200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.77508933799999, "SHAPE_Area": 1142.94050601 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356184.060000002384186, 257656.36939999833703 ], [ 356175.449500001966953, 257625.901500001549721 ], [ 356140.709799997508526, 257633.638700000941753 ], [ 356146.904899999499321, 257663.664700001478195 ], [ 356184.060000002384186, 257656.36939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903036600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92575943, "LATITUDE": 18.34840352, "OBJECTID_1": 4878, "PARCEL_NO_": "102903036600", "Tax_Legal_": "HOSPITAL GROUND 294A GREAT NORTHSIDE QTR", "Name": "FAMILY INVESTORS LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10100, "Improved_V": 1600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.426799434399996, "SHAPE_Area": 323.871062456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359341.146300002932549, 257649.912900000810623 ], [ 359332.924199998378754, 257657.021299999207258 ], [ 359339.104999996721745, 257688.73589999973774 ], [ 359347.400100000202656, 257661.572700001299381 ], [ 359349.656700000166893, 257654.822700001299381 ], [ 359345.074199996888638, 257651.876800000667572 ], [ 359342.346500001847744, 257649.149099998176098 ], [ 359341.146300002932549, 257649.912900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102904024000", "MAP": null, "PARCEL_NAM": "296 REM", "ACRE": null, "LONGITUDE": -64.92427745000001, "LATITUDE": 18.34809221, "OBJECTID_1": 5056, "PARCEL_NO_": "102904024000", "Tax_Legal_": "HOSPITAL GROUND 296 GR NORTHSIDE", "Name": "GEORGE, FLOYD & ELAINE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79300, "Improved_V": 72200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.25185015900001, "SHAPE_Area": 2746.3642958700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359457.786700002849102, 257654.733399998396635 ], [ 359490.804399996995926, 257651.172899998724461 ], [ 359491.843199998140335, 257659.628899998962879 ], [ 359493.400200001895428, 257656.012600000947714 ], [ 359498.29559999704361, 257649.297699999064207 ], [ 359505.604599997401237, 257643.235800001770258 ], [ 359512.89190000295639, 257639.706900000572205 ], [ 359519.356799997389317, 257638.070999998599291 ], [ 359579.124600000679493, 257626.739000000059605 ], [ 359579.146200001239777, 257624.206000000238419 ], [ 359575.926399998366833, 257623.546399999409914 ], [ 359545.277500003576279, 257624.350999999791384 ], [ 359534.806199997663498, 257622.998700000345707 ], [ 359526.761100001633167, 257620.822000000625849 ], [ 359503.451800003647804, 257611.976399999111891 ], [ 359482.003499999642372, 257610.088799998164177 ], [ 359472.620300002396107, 257616.416999999433756 ], [ 359455.490500003099442, 257624.927400000393391 ], [ 359455.708499997854233, 257631.639499999582767 ], [ 359457.786700002849102, 257654.733399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804026500", "MAP": "D9-6213-T97", "PARCEL_NAM": "3K-REM", "ACRE": ".23", "LONGITUDE": -64.93500125, "LATITUDE": 18.34828493, "OBJECTID_1": 4569, "PARCEL_NO_": "102804026500", "Tax_Legal_": "AGNES FANCY 3K GREAT NORTHSIDE", "Name": "HAZELL, MICHA & DELORES", "Address": "PO Box 12394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27700, "Improved_V": 189100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.263811412, "SHAPE_Area": 876.27387777000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358340.944899998605251, 257631.569200001657009 ], [ 358367.389300003647804, 257665.105200000107288 ], [ 358384.269500002264977, 257652.210299998521805 ], [ 358387.506899997591972, 257649.737199999392033 ], [ 358357.280299998819828, 257623.504900000989437 ], [ 358349.406400002539158, 257627.440099999308586 ], [ 358340.944899998605251, 257631.569200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903034900", "MAP": "D9-1484-T79", "PARCEL_NAM": "290C", "ACRE": ".18", "LONGITUDE": -64.92753897, "LATITUDE": 18.3483877, "OBJECTID_1": 4861, "PARCEL_NO_": "102903034900", "Tax_Legal_": "HOSPITAL GROUND 290C NO. 9 NEW QUARTER", "Name": "MARTINEZ, JULIO and ALBA ALCANTARA MARTINEZ", "Address": "PO BOX 1268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23800, "Improved_V": 129600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.962392278, "SHAPE_Area": 802.23759171899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359142.416299998760223, 257678.530200000852346 ], [ 359150.538000002503395, 257680.745200000703335 ], [ 359162.555799998342991, 257683.380699999630451 ], [ 359162.810300000011921, 257653.51799999922514 ], [ 359162.693499997258186, 257643.249600000679493 ], [ 359142.290500000119209, 257640.071600001305342 ], [ 359142.416299998760223, 257678.530200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704063000", "MAP": "D9-6527-T99", "PARCEL_NAM": "107-3-A", "ACRE": ".24", "LONGITUDE": -64.95734154, "LATITUDE": 18.34840433, "OBJECTID_1": 3675, "PARCEL_NO_": "102704063000", "Tax_Legal_": "CONTANT ESTATE 107-3-A No.7B SOUTHSIDE QTR.", "Name": "BROOKS, FRANKLIN A. & UNIA I", "Address": "2804 Berger Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026666, "Country": "United States", "Land_Value": 24200, "Improved_V": 157000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.36185933100001, "SHAPE_Area": 1063.40551312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356021.680900000035763, 257653.638199999928474 ], [ 356011.402800001204014, 257617.47520000115037 ], [ 356008.594999998807907, 257618.414099998772144 ], [ 355980.341700002551079, 257621.982599999755621 ], [ 355995.399099998176098, 257652.925500001758337 ], [ 355999.398299999535084, 257656.75789999961853 ], [ 356005.028099998831749, 257658.49269999936223 ], [ 356009.869599997997284, 257658.110199999064207 ], [ 356021.680900000035763, 257653.638199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704062900", "MAP": "D9-5481-T93", "PARCEL_NAM": "107-14-1", "ACRE": "0.25", "LONGITUDE": -64.95772078, "LATITUDE": 18.34841099, "OBJECTID_1": 3674, "PARCEL_NO_": "102704062900", "Tax_Legal_": "CONTANT 107-14-1 & 107-3-2 7B SOUTHSIDE", "Name": "PARATORE, CHRISTINE LAIBEN", "Address": "8252 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34600, "Improved_V": 340200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.557582873, "SHAPE_Area": 967.20455331100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355980.941200003027916, 257646.263300001621246 ], [ 355969.071299999952316, 257619.779399998486042 ], [ 355951.316299997270107, 257621.533900000154972 ], [ 355941.629699997603893, 257622.721200000494719 ], [ 355956.658299997448921, 257657.041400000452995 ], [ 355984.117899999022484, 257651.988800000399351 ], [ 355980.941200003027916, 257646.263300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704062100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95550173, "LATITUDE": 18.34838493, "OBJECTID_1": 3666, "PARCEL_NO_": "102704062100", "Tax_Legal_": "CONTANT 107-37 7B SOUTHSIDE QUARTER", "Name": "CILLS, JACQUELINE L", "Address": "PO Box 10572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.15899443500001, "SHAPE_Area": 1117.2400417900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356218.810599997639656, 257647.365699999034405 ], [ 356210.995600000023842, 257618.170899998396635 ], [ 356175.449500001966953, 257625.901500001549721 ], [ 356184.060000002384186, 257656.36939999833703 ], [ 356218.810599997639656, 257647.365699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903038200", "MAP": "D9-2818-T84", "PARCEL_NAM": "4B", "ACRE": "0.09", "LONGITUDE": -64.929983, "LATITUDE": 18.3483209, "OBJECTID_1": 4894, "PARCEL_NO_": "102903038200", "Tax_Legal_": "LYTTONS FANCY 4B GR NORTHSIDE", "Name": "SANTIAGO, MATILDA", "Address": "PO Box 10651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11300, "Improved_V": 40700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.35421048400001, "SHAPE_Area": 629.63003151199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358908.042700000107288, 257649.563200000673532 ], [ 358882.108199998736382, 257632.13910000026226 ], [ 358879.974500000476837, 257637.088799998164177 ], [ 358878.246200002729893, 257640.832800000905991 ], [ 358878.270099997520447, 257640.845600001513958 ], [ 358877.425999999046326, 257645.271699998527765 ], [ 358880.60809999704361, 257650.363899998366833 ], [ 358895.019199997186661, 257662.514199998229742 ], [ 358899.812100000679493, 257667.830800000578165 ], [ 358903.786200001835823, 257674.618299998342991 ], [ 358906.183499999344349, 257677.171100001782179 ], [ 358907.977799996733665, 257655.865299999713898 ], [ 358908.005300000309944, 257653.193900000303984 ], [ 358908.042700000107288, 257649.563200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105202017500", "MAP": "F9-1643-T65", "PARCEL_NAM": "107-3-1", "ACRE": null, "LONGITUDE": -64.95754341, "LATITUDE": 18.34838041, "OBJECTID_1": 8081, "PARCEL_NO_": "105202017500", "Tax_Legal_": "CONTANT 107-3-1 7B SOUTHSIDE QTR.", "Name": "GOLDEN ROC HOTEL, INC.", "Address": "107-3-1 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.8546081577, "SHAPE_Area": 327.05459477800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355980.341700002551079, 257621.982599999755621 ], [ 355978.75789999961853, 257618.592099998146296 ], [ 355969.071299999952316, 257619.779399998486042 ], [ 355980.941200003027916, 257646.263300001621246 ], [ 355995.399099998176098, 257652.925500001758337 ], [ 355980.341700002551079, 257621.982599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": null, "PARCEL_NAM": "GREENBELT - REM Of CONTANT 7A", "ACRE": null, "LONGITUDE": -64.96220533, "LATITUDE": 18.34845337, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.321868464, "SHAPE_Area": 727.47483989700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355460.994499996304512, 257642.248700000345707 ], [ 355467.050999999046326, 257643.613600000739098 ], [ 355476.93469999730587, 257645.307900000363588 ], [ 355487.241899996995926, 257646.296300001442432 ], [ 355497.407999999821186, 257646.296300001442432 ], [ 355509.127199999988079, 257645.307900000363588 ], [ 355522.144000001251698, 257643.141499999910593 ], [ 355523.811499997973442, 257638.954100001603365 ], [ 355524.940999999642372, 257634.153499998152256 ], [ 355518.163699999451637, 257635.424199998378754 ], [ 355509.127199999988079, 257636.27140000090003 ], [ 355495.995999999344349, 257635.706599999219179 ], [ 355485.406400002539158, 257633.729899998754263 ], [ 355472.134099997580051, 257629.776399999856949 ], [ 355462.109200000762939, 257625.681800000369549 ], [ 355461.778499998152256, 257629.981800001114607 ], [ 355460.994499996304512, 257642.248700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201081300", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-3", "ACRE": "0.39", "LONGITUDE": -64.95815645, "LATITUDE": 18.34831722, "OBJECTID_1": 7896, "PARCEL_NO_": "105201081300", "Tax_Legal_": "CONTANT 108A-3 7BA SOUTHSIDE QTR", "Name": "HASTINGS, MARY B", "Address": "PO Box 9436", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.59959024599999, "SHAPE_Area": 1215.1087257900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355941.629699997603893, 257622.721200000494719 ], [ 355931.34009999781847, 257600.050000000745058 ], [ 355911.848300002515316, 257616.355799999088049 ], [ 355886.672799997031689, 257637.259100001305342 ], [ 355900.315399996936321, 257644.970100000500679 ], [ 355907.520000003278255, 257651.150800000876188 ], [ 355941.629699997603893, 257622.721200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103003026500", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-9", "ACRE": ".50", "LONGITUDE": -64.91605113, "LATITUDE": 18.34814588, "OBJECTID_1": 5781, "PARCEL_NO_": "103003026500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1G-9 POR 47 EST THOMAS", "Name": "BERTRAND, ETIENNE R. & BERYL M", "Address": "1G9 EST. ST JOSEPH & ROSENDAHL", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91700, "Improved_V": 496200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.53509495500001, "SHAPE_Area": 2694.2114846600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360400.507100000977516, 257662.803599998354912 ], [ 360363.916599996387959, 257603.820099998265505 ], [ 360332.297799997031689, 257623.826299998909235 ], [ 360372.074000000953674, 257687.479899998754263 ], [ 360400.507100000977516, 257662.803599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903037200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92613625, "LATITUDE": 18.34843237, "OBJECTID_1": 4884, "PARCEL_NO_": "102903037200", "Tax_Legal_": "HOSPITAL GROUND 293EA & 293F KINGS QTR", "Name": "RICHARDSON, URIEL,GEORGE,RANDY R.,DAREN LESLE,WENDY AND OTHERS", "Address": "PO Box 304324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.957804687899994, "SHAPE_Area": 569.17166371899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359287.69820000231266, 257672.490200001746416 ], [ 359287.367299996316433, 257678.390999998897314 ], [ 359298.0675999969244, 257678.47859999909997 ], [ 359310.970399998128414, 257678.373100001364946 ], [ 359313.389300003647804, 257678.392900001257658 ], [ 359314.380800001323223, 257656.658399999141693 ], [ 359287.976599998772144, 257656.629099998623133 ], [ 359287.69820000231266, 257672.490200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703047100", "MAP": "B3-195-T73", "PARCEL_NAM": "290", "ACRE": "0.30", "LONGITUDE": -64.9627397, "LATITUDE": 18.34827541, "OBJECTID_1": 3433, "PARCEL_NO_": "102703047100", "Tax_Legal_": "290 CONTANT NO 7A SOUTHSIDE QTR", "Name": "WYATT, ARTHUR & TRAVIS", "Address": "PO BOX 304047", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.211046189, "SHAPE_Area": 1289.60172966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355413.538099996745586, 257587.700300000607967 ], [ 355408.454999998211861, 257584.170400001108646 ], [ 355407.379799999296665, 257584.509899999946356 ], [ 355414.28999999910593, 257627.698800001293421 ], [ 355420.351899996399879, 257629.003199998289347 ], [ 355425.257299996912479, 257630.058800000697374 ], [ 355437.117700003087521, 257634.577100001275539 ], [ 355446.436499997973442, 257638.248100001364946 ], [ 355457.026199996471405, 257641.354400001466274 ], [ 355460.994499996304512, 257642.248700000345707 ], [ 355462.109200000762939, 257625.681800000369549 ], [ 355449.54280000180006, 257619.892799999564886 ], [ 355438.388400003314018, 257612.691799998283386 ], [ 355429.634300000965595, 257605.490899998694658 ], [ 355422.715700000524521, 257598.995900001376867 ], [ 355416.503200002014637, 257592.077300000935793 ], [ 355413.538099996745586, 257587.700300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904023600", "MAP": "G9-1021-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92331182, "LATITUDE": 18.34838106, "OBJECTID_1": 5053, "PARCEL_NO_": "102904023600", "Tax_Legal_": "HOSPITAL GROUND 284 B&D No.9 NEW QTR.", "Name": "ROGERS, SHARLINE L.", "Address": "394-34 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.92068583599999, "SHAPE_Area": 1155.7092455100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359620.864100001752377, 257649.245400000363588 ], [ 359572.427799999713898, 257655.603999998420477 ], [ 359577.884999997913837, 257677.602400001138449 ], [ 359623.866400003433228, 257675.445599999278784 ], [ 359620.864100001752377, 257649.245400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102802020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93724289, "LATITUDE": 18.34835715, "OBJECTID_1": 4087, "PARCEL_NO_": "102802020200", "Tax_Legal_": "4B REM, 4B-A,4B-B,4B-1&4B-2 LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BIMA CORPORATION", "Address": "18285 Blue Ridge Tpke", "City": "Gordonsville", "State": "Virginia", "Zip": 22942, "Country": "United States", "Land_Value": 487700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.937056952099994, "SHAPE_Area": 589.937531605 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358130.048100002110004, 257630.499899998307228 ], [ 358110.515000000596046, 257651.660500001162291 ], [ 358116.864799998700619, 257663.533700000494719 ], [ 358121.718800000846386, 257661.673599999397993 ], [ 358134.641400001943111, 257659.246199999004602 ], [ 358144.347699999809265, 257655.737100001424551 ], [ 358130.048100002110004, 257630.499899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704062000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95515637, "LATITUDE": 18.34828708, "OBJECTID_1": 3665, "PARCEL_NO_": "102704062000", "Tax_Legal_": "107-36 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "PHIPPS, JR., DELBERTH & DENISE", "Address": "PO Box 307622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.24748998699999, "SHAPE_Area": 1026.9465249100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356210.995600000023842, 257618.170899998396635 ], [ 356218.810599997639656, 257647.365699999034405 ], [ 356228.520499996840954, 257643.434399999678135 ], [ 356248.793399997055531, 257630.090399999171495 ], [ 356260.146499998867512, 257622.58390000090003 ], [ 356261.771700002253056, 257621.119600001722574 ], [ 356263.414899997413158, 257617.544399999082088 ], [ 356261.825699999928474, 257614.787200000137091 ], [ 356258.607600003480911, 257613.916499998420477 ], [ 356228.768700003623962, 257614.305500000715256 ], [ 356210.995600000023842, 257618.170899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91479303, "LATITUDE": 18.34813363, "OBJECTID_1": 5778, "PARCEL_NO_": "103003026200", "Tax_Legal_": "2 1A ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR.", "Name": "HAMILTON, CLEO C.", "Address": "PO BOX 9069", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81200, "Improved_V": 236600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.16409566, "SHAPE_Area": 1631.60564924 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360467.405900001525879, 257666.306400001049042 ], [ 360491.464000001549721, 257681.913199998438358 ], [ 360498.00620000064373, 257671.2010000012815 ], [ 360502.914200000464916, 257663.008499998599291 ], [ 360503.736699998378754, 257661.11540000140667 ], [ 360523.449600003659725, 257618.846900001168251 ], [ 360523.465800002217293, 257616.947200000286102 ], [ 360525.917099997401237, 257613.167599998414516 ], [ 360526.762999996542931, 257608.5304000005126 ], [ 360532.543799996376038, 257592.534600000828505 ], [ 360530.1266999989748, 257592.303800001740456 ], [ 360491.020900003612041, 257639.268699999898672 ], [ 360483.674199998378754, 257649.763199999928474 ], [ 360467.405900001525879, 257666.306400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201081400", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-2", "ACRE": "0.38", "LONGITUDE": -64.95853233, "LATITUDE": 18.34820737, "OBJECTID_1": 7897, "PARCEL_NO_": "105201081400", "Tax_Legal_": "CONTANT 108A-2 7B SOUTHSIDE QTR", "Name": "KRIGGER, MARILYN F.", "Address": "PO Box 304099", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44000, "Improved_V": 330400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.81461887, "SHAPE_Area": 1842.58220263 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355886.672799997031689, 257637.259100001305342 ], [ 355911.848300002515316, 257616.355799999088049 ], [ 355869.372699998319149, 257585.610599998384714 ], [ 355865.306999996304512, 257589.588100001215935 ], [ 355860.400700002908707, 257597.569499999284744 ], [ 355848.891199998557568, 257623.439899999648333 ], [ 355848.853399999439716, 257627.872499998658895 ], [ 355852.051700003445148, 257631.065099999308586 ], [ 355876.219499997794628, 257633.796000000089407 ], [ 355886.672799997031689, 257637.259100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96212165, "LATITUDE": 18.34822465, "OBJECTID_1": 3425, "PARCEL_NO_": "102703046100", "Tax_Legal_": "CONTANT 212 7A S S QTR", "Name": "DANIEL, CHRISTOPHER & T", "Address": "PO Box 742", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31600, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.19784339900001, "SHAPE_Area": 931.37594735799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355493.541199997067451, 257593.089299999177456 ], [ 355477.125399999320507, 257626.940999999642372 ], [ 355487.578699998557568, 257630.404100000858307 ], [ 355500.465300001204014, 257632.198300000280142 ], [ 355519.244300000369549, 257604.909800000488758 ], [ 355511.224299997091293, 257599.777899999171495 ], [ 355493.541199997067451, 257593.089299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9618954, "LATITUDE": 18.34828756, "OBJECTID_1": 3426, "PARCEL_NO_": "102703046200", "Tax_Legal_": "CONTANT 213 7A S S QTR", "Name": "CHARLES, KELVIN, KEITH, KENNETH", "Address": "Palm Strade 16B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25400, "Improved_V": 139500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.58175545100001, "SHAPE_Area": 569.173595277 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355500.465300001204014, 257632.198300000280142 ], [ 355505.304999999701977, 257632.026799999177456 ], [ 355531.141099996864796, 257628.22749999910593 ], [ 355536.002400003373623, 257625.52309999987483 ], [ 355540.066299997270107, 257621.756599999964237 ], [ 355540.100500002503395, 257617.746100001037121 ], [ 355538.507700003683567, 257615.411100000143051 ], [ 355536.101300001144409, 257613.913699999451637 ], [ 355527.248000003397465, 257611.941399998962879 ], [ 355519.244300000369549, 257604.909800000488758 ], [ 355500.465300001204014, 257632.198300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003024700", "MAP": "D9-413-T64", "PARCEL_NAM": "3-5", "ACRE": ".50", "LONGITUDE": -64.91384504, "LATITUDE": 18.34814636, "OBJECTID_1": 5763, "PARCEL_NO_": "103003024700", "Tax_Legal_": "3-5 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE QUARTER", "Name": "TRUST AGREEMENT OF CAROLYN SAVAGE DAVIS", "Address": "PO Box 10155", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013155, "Country": "United States", "Land_Value": 68700, "Improved_V": 226000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.803672124, "SHAPE_Area": 1950.02415776 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360621.075400002300739, 257670.844799999147654 ], [ 360624.694200001657009, 257636.188499998301268 ], [ 360601.640299998223782, 257622.019999999552965 ], [ 360592.013099998235703, 257616.241700001060963 ], [ 360568.31360000371933, 257653.200199998915195 ], [ 360598.028499998152256, 257667.375500001013279 ], [ 360604.451999999582767, 257670.594500001519918 ], [ 360610.877300001680851, 257673.602400001138449 ], [ 360621.075400002300739, 257670.844799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903035300", "MAP": "F9-2696-T70", "PARCEL_NAM": "3AA", "ACRE": "0.08", "LONGITUDE": -64.93029616, "LATITUDE": 18.34815603, "OBJECTID_1": 4865, "PARCEL_NO_": "102903035300", "Tax_Legal_": "LYTTONS FANCY 3AA GR NORTHSIDE QTR", "Name": "RABSATT, HELEN", "Address": "BOX 3734", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2000, "Improved_V": 39500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.5366759, "SHAPE_Area": 884.11147384399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358859.988499999046326, 257617.278099998831749 ], [ 358850.8125, 257614.006000000983477 ], [ 358847.481499999761581, 257621.789099998772144 ], [ 358846.263899996876717, 257624.634100001305342 ], [ 358840.708499997854233, 257637.614500001072884 ], [ 358854.899099998176098, 257644.013300001621246 ], [ 358870.922600001096725, 257651.238600000739098 ], [ 358871.752599999308586, 257651.612799998372793 ], [ 358873.030699998140335, 257652.189100001007318 ], [ 358874.163000002503395, 257649.67790000140667 ], [ 358878.246200002729893, 257640.832800000905991 ], [ 358879.974500000476837, 257637.088799998164177 ], [ 358882.108199998736382, 257632.13910000026226 ], [ 358865.351700000464916, 257620.881299998611212 ], [ 358859.988499999046326, 257617.278099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96233657000001, "LATITUDE": 18.34818013, "OBJECTID_1": 3424, "PARCEL_NO_": "102703046000", "Tax_Legal_": "CONTANT 211 7A S S QTR", "Name": "Peters, Marion,Elesta Morton & Amos Peters, Jr", "Address": "211 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22000, "Improved_V": 175800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.422785461, "SHAPE_Area": 727.63734382799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355480.674300000071526, 257588.973200000822544 ], [ 355453.825099997222424, 257617.03999999910593 ], [ 355462.651299998164177, 257622.17850000038743 ], [ 355477.125399999320507, 257626.940999999642372 ], [ 355493.541199997067451, 257593.089299999177456 ], [ 355480.674300000071526, 257588.973200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202018600", "MAP": "D9-6527-T99", "PARCEL_NAM": "107-3-G", "ACRE": null, "LONGITUDE": -64.95640573, "LATITUDE": 18.34770495, "OBJECTID_1": 8091, "PARCEL_NO_": "105202018600", "Tax_Legal_": "CONTANT ESTATE 107-3G 7B SOUTHSIDE QTR.", "Name": "TODMAN, RUBY & ROBLES, ROCHELLE", "Address": "PO Box 303464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.59800190199999, "SHAPE_Area": 1117.2281426300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356083.440499998629093, 257559.050999999046326 ], [ 356093.37950000166893, 257587.957800000905991 ], [ 356119.569300003349781, 257568.442299999296665 ], [ 356111.744699999690056, 257531.443500000983477 ], [ 356097.927699998021126, 257544.207100000232458 ], [ 356083.440499998629093, 257559.050999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803023100", "MAP": "G9-719-T63", "PARCEL_NAM": "68", "ACRE": ".45", "LONGITUDE": -64.94370392, "LATITUDE": 18.3479853, "OBJECTID_1": 4304, "PARCEL_NO_": "102803023100", "Tax_Legal_": "SOLBERG 68 LITTLE NORTHSIDE QTR", "Name": "HODGE, DUSHIKKA", "Address": "1407 Beaumont Dr", "City": "Montgomery", "State": "Alabama", "Zip": 36111, "Country": "United States", "Land_Value": 85700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.641014028, "SHAPE_Area": 1924.4044578200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357412.411499999463558, 257600.184900000691414 ], [ 357465.063500002026558, 257636.910500001162291 ], [ 357471.856200002133846, 257600.82209999859333 ], [ 357461.062299996614456, 257595.260400000959635 ], [ 357432.248999997973442, 257569.904399998486042 ], [ 357412.411499999463558, 257600.184900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903037300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92613752, "LATITUDE": 18.3482309, "OBJECTID_1": 4885, "PARCEL_NO_": "102903037300", "Tax_Legal_": "HOSPITAL GROUND 293G GREAT NORTHSIDE QTR", "Name": "RICHARDSON, URIEL,GEORGE,RANDY R.,DAREN LESLE,WENDY AND OTHERS", "Address": "PO Box 304324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.646406373299996, "SHAPE_Area": 605.18825415100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359291.178999997675419, 257632.400699999183416 ], [ 359288.139700002968311, 257631.97749999910593 ], [ 359287.883599996566772, 257644.012200001627207 ], [ 359287.9341000020504, 257650.863200001418591 ], [ 359287.976599998772144, 257656.629099998623133 ], [ 359314.380800001323223, 257656.658399999141693 ], [ 359314.416799999773502, 257652.436799999326468 ], [ 359314.558899998664856, 257635.761599998921156 ], [ 359310.532700002193451, 257635.095400001853704 ], [ 359291.178999997675419, 257632.400699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903038400", "MAP": "F9-2747-T71", "PARCEL_NAM": "292B-1", "ACRE": "0.08", "LONGITUDE": -64.92676189, "LATITUDE": 18.34815668, "OBJECTID_1": 4897, "PARCEL_NO_": "102903038400", "Tax_Legal_": "HOSPITAL GROUND 292B-1 GT. NORTHSIDE", "Name": "FELICIEN, SANDRA & PHIPPS, CLA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10000, "Improved_V": 107100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.101405590799999, "SHAPE_Area": 412.16715410099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359247.890900000929832, 257644.182900000363588 ], [ 359248.497000001370907, 257628.677000001072884 ], [ 359221.886900000274181, 257628.670299999415874 ], [ 359221.557300001382828, 257644.306499999016523 ], [ 359247.890900000929832, 257644.182900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003026800", "MAP": "D9-413-T64", "PARCEL_NAM": "3-4", "ACRE": ".50", "LONGITUDE": -64.91427683000001, "LATITUDE": 18.34797474, "OBJECTID_1": 5784, "PARCEL_NO_": "103003026800", "Tax_Legal_": "3-4 ESTATE ST.JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "HENLE, JOAN & BARBARA & RALPH STUART ROBINSON", "Address": "PO Box 502972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 163400, "Improved_V": 123100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.55336688899999, "SHAPE_Area": 3014.2026020899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360592.013099998235703, 257616.241700001060963 ], [ 360542.271700002253056, 257586.492499999701977 ], [ 360542.230400003492832, 257591.34739999845624 ], [ 360533.175700001418591, 257613.015900000929832 ], [ 360531.509099997580051, 257619.33500000089407 ], [ 360529.8766999989748, 257621.643699999898672 ], [ 360520.823899999260902, 257643.101199999451637 ], [ 360560.140799999237061, 257666.010000001639128 ], [ 360568.31360000371933, 257653.200199998915195 ], [ 360592.013099998235703, 257616.241700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903038600", "MAP": "D9-2686-T84", "PARCEL_NAM": "291A-1", "ACRE": "0.27", "LONGITUDE": -64.92730319, "LATITUDE": 18.34809347, "OBJECTID_1": 4899, "PARCEL_NO_": "102903038600", "Tax_Legal_": "HOSPITAL GROUND 291A-1 KINGS QTR.", "Name": "QUESTEL, SHERIDON", "Address": "P.O. BOX 4175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88200, "Improved_V": 270100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.55635232899999, "SHAPE_Area": 1228.2812932300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359177.366800002753735, 257608.355099998414516 ], [ 359161.809199996292591, 257608.037599999457598 ], [ 359162.349200002849102, 257612.984299998730421 ], [ 359162.736800000071526, 257647.055700000375509 ], [ 359177.32379999756813, 257649.251899998635054 ], [ 359192.662600003182888, 257651.561299998313189 ], [ 359192.837999999523163, 257630.965700000524521 ], [ 359192.954899996519089, 257617.24549999833107 ], [ 359192.765500001609325, 257610.418800000101328 ], [ 359177.366800002753735, 257608.355099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903036700", "MAP": "D9-454-T64", "PARCEL_NAM": "REM 291A", "ACRE": "0.58", "LONGITUDE": -64.92702181, "LATITUDE": 18.34811973, "OBJECTID_1": 4879, "PARCEL_NO_": "102903036700", "Tax_Legal_": "HOSPITAL GROUND 291A GREAT NORTHSIDE QTR", "Name": "QUESTEL, VANBORNE", "Address": "PO Box 304175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61900, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.34012009400001, "SHAPE_Area": 1247.40944958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359222.054999999701977, 257610.815699998289347 ], [ 359192.765500001609325, 257610.418800000101328 ], [ 359192.976499997079372, 257614.712600000202656 ], [ 359192.837999999523163, 257630.965700000524521 ], [ 359192.662600003182888, 257651.561299998313189 ], [ 359201.76519999653101, 257652.931800000369549 ], [ 359221.188199996948242, 257655.856100000441074 ], [ 359221.25110000371933, 257653.859999999403954 ], [ 359221.420000001788139, 257650.820799998939037 ], [ 359221.886900000274181, 257628.670299999415874 ], [ 359222.000100001692772, 257615.372299998998642 ], [ 359222.054999999701977, 257610.815699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401080500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92870071, "LATITUDE": 18.34802712, "OBJECTID_1": 11501, "PARCEL_NO_": "105401080500", "Tax_Legal_": "HOSPITAL GROUND-PCL OF KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.332743537, "SHAPE_Area": 2112.7034928399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359040.509700000286102, 257604.023299999535084 ], [ 358999.799999997019768, 257603.717799998819828 ], [ 359000.300200000405312, 257609.335999999195337 ], [ 359003.720200002193451, 257648.25450000166893 ], [ 359018.712999999523163, 257643.250100001692772 ], [ 359034.587999999523163, 257635.84180000051856 ], [ 359046.864699997007847, 257629.491799999028444 ], [ 359059.564699999988079, 257627.79839999973774 ], [ 359065.713899999856949, 257617.501600001007318 ], [ 359073.909199997782707, 257604.273800000548363 ], [ 359065.587300002574921, 257604.211399998515844 ], [ 359040.509700000286102, 257604.023299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103003026600", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-10", "ACRE": ".50", "LONGITUDE": -64.91577937, "LATITUDE": 18.3479488, "OBJECTID_1": 5782, "PARCEL_NO_": "103003026600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1G-10 THOMAS GREAT NORSD", "Name": "GREENE, GLENN J. & JOAN N", "Address": "72 Jacobs Creek Rd", "City": "West Trenton", "State": "New Jersey", "Zip": 8628, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.58594301299999, "SHAPE_Area": 2305.0332823799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360426.512299999594688, 257639.162900000810623 ], [ 360393.103900000452995, 257585.271699998527765 ], [ 360363.916599996387959, 257603.820099998265505 ], [ 360400.507100000977516, 257662.803599998354912 ], [ 360424.068199999630451, 257642.098200000822544 ], [ 360426.512299999594688, 257639.162900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903036400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92593543, "LATITUDE": 18.3482186, "OBJECTID_1": 4876, "PARCEL_NO_": "102903036400", "Tax_Legal_": "HOSPITAL GROUND 293A GREAT NORTHSIDE QTR", "Name": "CHAPMAN, LILLIAN R", "Address": "PO Box 502943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 3100, "Improved_V": 79400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.985300624399997, "SHAPE_Area": 252.92675843500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359314.416799999773502, 257652.436799999326468 ], [ 359331.360100001096725, 257651.308899998664856 ], [ 359329.822999998927116, 257642.430399999022484 ], [ 359329.074299998581409, 257635.669300001114607 ], [ 359314.558899998664856, 257635.761599998921156 ], [ 359314.416799999773502, 257652.436799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201081000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95892539, "LATITUDE": 18.34803953, "OBJECTID_1": 7893, "PARCEL_NO_": "105201081000", "Tax_Legal_": "CONTANT 97 7A SOUTH SIDE QTR", "Name": "MCCRAY, NONA", "Address": "PO Box 306084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 290000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.549555975, "SHAPE_Area": 1334.0010808699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355833.580300003290176, 257622.259100001305342 ], [ 355840.057700000703335, 257619.145700000226498 ], [ 355844.1199000030756, 257615.590300001204014 ], [ 355853.165500000119209, 257594.977200001478195 ], [ 355854.002400003373623, 257591.395500000566244 ], [ 355842.168399997055531, 257560.690000001341105 ], [ 355811.935699999332428, 257607.305399999022484 ], [ 355833.580300003290176, 257622.259100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201081200", "MAP": "D9-4167-T87", "PARCEL_NAM": "107-2", "ACRE": "0.55", "LONGITUDE": -64.95792211, "LATITUDE": 18.34799488, "OBJECTID_1": 7895, "PARCEL_NO_": "105201081200", "Tax_Legal_": "CONTANT 107 2 7A SOUTHSIDE QTR", "Name": "RICHARDS, ARTHUR & LAUREL", "Address": "PO Box 307521", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64600, "Improved_V": 137500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.06370409199999, "SHAPE_Area": 1663.0092452399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355915.515900000929832, 257564.456799998879433 ], [ 355931.34009999781847, 257600.050000000745058 ], [ 355941.629699997603893, 257622.721200000494719 ], [ 355951.316299997270107, 257621.533900000154972 ], [ 355969.071299999952316, 257619.779399998486042 ], [ 355939.755599997937679, 257558.744500000029802 ], [ 355915.515900000929832, 257564.456799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96250597, "LATITUDE": 18.34808236, "OBJECTID_1": 7492, "PARCEL_NO_": "105201021600", "Tax_Legal_": "CONTANT 210 7A SOUTHSIDE QTR", "Name": "CAROL MARTIN JOYNER (LIFE ESTATE) and ADDISON A MARTIN", "Address": "PO Box 12293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8015293, "Country": "United States", "Land_Value": 22000, "Improved_V": 161100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.728770446, "SHAPE_Area": 806.95115650299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355459.80009999871254, 257578.247699998319149 ], [ 355435.395000003278255, 257603.379200000315905 ], [ 355453.825099997222424, 257617.03999999910593 ], [ 355480.674300000071526, 257588.973200000822544 ], [ 355470.219200000166893, 257585.7212999984622 ], [ 355463.797499999403954, 257582.291200000792742 ], [ 355459.80009999871254, 257578.247699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003031100", "MAP": "G9-1563-T70", "PARCEL_NAM": "4J-3", "ACRE": null, "LONGITUDE": -64.91183462, "LATITUDE": 18.3480617, "OBJECTID_1": 5807, "PARCEL_NO_": "103003031100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4J-3 GR NORTHSIDE QTR", "Name": "RIVERA, VINCENT, ROMEO & PAUL A", "Address": "PO Box 713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36900, "Improved_V": 261200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.64763648600001, "SHAPE_Area": 1034.0101095299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360786.179799996316433, 257635.984900001436472 ], [ 360816.634499996900558, 257657.976799998432398 ], [ 360828.738099999725819, 257657.020399998873472 ], [ 360830.607900001108646, 257626.849300000816584 ], [ 360819.3429000005126, 257624.012899998575449 ], [ 360803.213100001215935, 257624.302999999374151 ], [ 360794.309500001370907, 257628.240899998694658 ], [ 360786.179799996316433, 257635.984900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201081100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95828135, "LATITUDE": 18.34797261, "OBJECTID_1": 7894, "PARCEL_NO_": "105201081100", "Tax_Legal_": "CONTANT 108A-1 7B SOUTHSIDE QTR", "Name": "BERRY, STEVEN P. & SUYAPA", "Address": "PO Box 307107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45200, "Improved_V": 232900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.568009292, "SHAPE_Area": 1773.6475102899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355915.515900000929832, 257564.456799998879433 ], [ 355894.506800003349781, 257569.562100000679493 ], [ 355887.222999997437, 257572.6689000017941 ], [ 355879.123999997973442, 257576.824499998241663 ], [ 355869.372699998319149, 257585.610599998384714 ], [ 355911.848300002515316, 257616.355799999088049 ], [ 355931.34009999781847, 257600.050000000745058 ], [ 355915.515900000929832, 257564.456799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903037600", "MAP": "G9-2152-T72", "PARCEL_NAM": "297A", "ACRE": "0.18", "LONGITUDE": -64.92558698000001, "LATITUDE": 18.34808019, "OBJECTID_1": 4888, "PARCEL_NO_": "102903037600", "Tax_Legal_": "HOSPITAL GROUND 297A GREAT NORTHSIDE QTR", "Name": "SMITH, JR, JAIME & OTHERS", "Address": "200 HOSPITAL GROUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22900, "Improved_V": 382200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.45693950099999, "SHAPE_Area": 613.50005596999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359378.376199997961521, 257622.351700000464916 ], [ 359375.991400003433228, 257618.321400001645088 ], [ 359373.769299998879433, 257615.435100000351667 ], [ 359367.441100001335144, 257618.926500000059605 ], [ 359346.165299996733665, 257623.290800001472235 ], [ 359341.341300003230572, 257626.61939999833703 ], [ 359340.402199998497963, 257631.117899999022484 ], [ 359341.40259999781847, 257640.760999999940395 ], [ 359363.429999999701977, 257638.353100001811981 ], [ 359364.186999998986721, 257634.317499998956919 ], [ 359377.481799997389317, 257632.688000001013279 ], [ 359378.376199997961521, 257622.351700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037900", "MAP": "G9-2093-T72", "PARCEL_NAM": "4J-2", "ACRE": ".30", "LONGITUDE": -64.91235571, "LATITUDE": 18.34804889, "OBJECTID_1": 5875, "PARCEL_NO_": "103003037900", "Tax_Legal_": "4J-2 ST.JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "THOMAS, RACHEL RAIMER", "Address": "564 E 93rd St", "City": "Brooklyn", "State": "New York", "Zip": 11236, "Country": "United States", "Land_Value": 38800, "Improved_V": 50800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.26193190800001, "SHAPE_Area": 1334.2154803400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360764.538800001144409, 257620.609000001102686 ], [ 360751.127199999988079, 257618.278599999845028 ], [ 360737.837600000202656, 257633.719500001519918 ], [ 360730.418999999761581, 257642.339099999517202 ], [ 360754.23480000346899, 257662.785100001841784 ], [ 360761.830399997532368, 257654.572900000959635 ], [ 360776.500500001013279, 257636.327799998223782 ], [ 360791.13459999859333, 257622.304299999028444 ], [ 360764.538800001144409, 257620.609000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903036500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92586503, "LATITUDE": 18.34799827, "OBJECTID_1": 4877, "PARCEL_NO_": "102903036500", "Tax_Legal_": "HOSPITAL GROUND 293D GREAT NORTHSIDE QTR", "Name": "BASTIAN, GLADYS", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12100, "Improved_V": 185000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.06080465100001, "SHAPE_Area": 851.23863872899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359314.558899998664856, 257635.761599998921156 ], [ 359329.074299998581409, 257635.669300001114607 ], [ 359329.822999998927116, 257642.430399999022484 ], [ 359333.057300001382828, 257641.401399999856949 ], [ 359336.672899998724461, 257640.202399998903275 ], [ 359334.927199997007847, 257635.183400001376867 ], [ 359333.258799999952316, 257628.408300001174212 ], [ 359334.927199997007847, 257623.399900000542402 ], [ 359339.073299996554852, 257619.14469999819994 ], [ 359344.746899999678135, 257616.526099998503923 ], [ 359350.529500000178814, 257615.21680000051856 ], [ 359358.712700001895428, 257615.118700001388788 ], [ 359364.71339999884367, 257613.79839999973774 ], [ 359369.841499999165535, 257612.489199999719858 ], [ 359370.932599999010563, 257610.852600000798702 ], [ 359363.404200002551079, 257611.39809999987483 ], [ 359359.694499999284744, 257611.39809999987483 ], [ 359353.584499999880791, 257610.743500001728535 ], [ 359348.7837999984622, 257609.979699999094009 ], [ 359338.636900000274181, 257608.452199999243021 ], [ 359328.399700000882149, 257606.588899999856949 ], [ 359319.76129999756813, 257606.270100001245737 ], [ 359311.905599996447563, 257606.924699999392033 ], [ 359311.032799996435642, 257609.870600000023842 ], [ 359312.316100001335144, 257615.056099999696016 ], [ 359314.70269999653101, 257618.875300001353025 ], [ 359314.558899998664856, 257635.761599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301070300", "MAP": "G9-1978-T72", "PARCEL_NAM": null, "ACRE": ".25", "LONGITUDE": -64.94944054, "LATITUDE": 18.34798258, "OBJECTID_1": 9222, "PARCEL_NO_": "105301070300", "Tax_Legal_": "2-6 UPPER JOHN DUNKO SOUTHSIDE QUARTER", "Name": "MAYNARD, RONALD & DAWN A MARSHAM", "Address": "3126 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 180200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.28350182299999, "SHAPE_Area": 820.57043697400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356820.065399996936321, 257587.480999998748302 ], [ 356835.122800000011921, 257618.423900000751019 ], [ 356855.361599996685982, 257609.090300001204014 ], [ 356853.79389999806881, 257603.800200000405312 ], [ 356848.248599998652935, 257592.144600000232458 ], [ 356844.317699998617172, 257580.291200000792742 ], [ 356841.920400001108646, 257577.738499999046326 ], [ 356839.501400001347065, 257577.718699999153614 ], [ 356820.065399996936321, 257587.480999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201022600", "MAP": "D9-851-T64", "PARCEL_NAM": "215", "ACRE": null, "LONGITUDE": -64.96333174, "LATITUDE": 18.34800329, "OBJECTID_1": 7501, "PARCEL_NO_": "105201022600", "Tax_Legal_": "CONTANT 215 7A S S QTR", "Name": "FRANCIS (LIFE ESTATE), EUNICE", "Address": "PO Box 8615", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.412152406, "SHAPE_Area": 700.66044388199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355388.707999996840954, 257593.708999998867512 ], [ 355371.177699998021126, 257569.078600000590086 ], [ 355367.108300000429153, 257573.478300001472235 ], [ 355362.243500001728535, 257576.604899998754263 ], [ 355358.190399996936321, 257579.104800000786781 ], [ 355350.910199999809265, 257581.789500001817942 ], [ 355363.634900003671646, 257602.580800000578165 ], [ 355376.546700000762939, 257601.419900000095367 ], [ 355383.022399999201298, 257598.517599999904633 ], [ 355388.707999996840954, 257593.708999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96268749, "LATITUDE": 18.3479459, "OBJECTID_1": 7493, "PARCEL_NO_": "105201021700", "Tax_Legal_": "CONTANT 209 7A SOUTHSIDECQTR", "Name": "TURNBULL, MILTON", "Address": "PO Box 304803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18100, "Improved_V": 100300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.60445496, "SHAPE_Area": 910.26995397099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355448.641199998557568, 257562.957600001245737 ], [ 355416.250299997627735, 257578.946699999272823 ], [ 355421.804499998688698, 257589.546900000423193 ], [ 355430.587700001895428, 257599.751299999654293 ], [ 355435.395000003278255, 257603.379200000315905 ], [ 355459.80009999871254, 257578.247699998319149 ], [ 355452.615199998021126, 257569.745200000703335 ], [ 355448.641199998557568, 257562.957600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903038300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92615241, "LATITUDE": 18.34807304, "OBJECTID_1": 4896, "PARCEL_NO_": "102903038300", "Tax_Legal_": "HOSPITAL GROUND 293-1 GR NORTHSIDE", "Name": "SULLIVAN, RANDOLPH", "Address": "PO Box 1253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2600, "Improved_V": 21400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.6290305606, "SHAPE_Area": 261.407639582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359310.633699998259544, 257623.234000001102686 ], [ 359288.058499999344349, 257620.554499998688698 ], [ 359288.097800001502037, 257623.257699999958277 ], [ 359288.190700002014637, 257629.651900000870228 ], [ 359288.139700002968311, 257631.97749999910593 ], [ 359291.178999997675419, 257632.400699999183416 ], [ 359310.532700002193451, 257635.095400001853704 ], [ 359310.611800000071526, 257625.807900000363588 ], [ 359310.633699998259544, 257623.234000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003027100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91369725, "LATITUDE": 18.34776488, "OBJECTID_1": 5787, "PARCEL_NO_": "103003027100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-18A GR NORTHSIDE QTR", "Name": "BRYAN, BERTRAN & SHEILA BRYAN BUTLER", "Address": "8202 Nina Ct", "City": "BALTIMORE", "State": "Maryland", "Zip": 21208, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.15115950699999, "SHAPE_Area": 1217.8711028800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360630.398900002241135, 257581.55519999936223 ], [ 360606.049500003457069, 257577.726399999111891 ], [ 360601.640299998223782, 257622.019999999552965 ], [ 360624.694200001657009, 257636.188499998301268 ], [ 360630.398900002241135, 257581.55519999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903037100", "MAP": "F9-2748-T71", "PARCEL_NAM": "292B-4", "ACRE": "0.08", "LONGITUDE": -64.92638585, "LATITUDE": 18.34797971, "OBJECTID_1": 4883, "PARCEL_NO_": "102903037100", "Tax_Legal_": "HOSPITAL GROUND 292 B-4 GT. NORTHSIDE", "Name": "EDWARDS, JOHN & CHRISTALINE", "Address": "PO Box 1156", "City": "Bronx", "State": "New York", "Zip": 10472, "Country": "United States", "Land_Value": 8800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.523986466300002, "SHAPE_Area": 473.95224467899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359287.874799996614456, 257607.915899999439716 ], [ 359284.920100003480911, 257608.355099998414516 ], [ 359270.394400000572205, 257608.275699999183416 ], [ 359261.107600003480911, 257609.545699998736382 ], [ 359260.345399998128414, 257615.19819999858737 ], [ 359259.311599999666214, 257624.44539999961853 ], [ 359262.456900000572205, 257624.309500001370907 ], [ 359272.378799997270107, 257624.706399999558926 ], [ 359279.363799996674061, 257625.658900000154972 ], [ 359284.792199999094009, 257627.670800000429153 ], [ 359287.301399998366833, 257628.83390000090003 ], [ 359288.190700002014637, 257629.651900000870228 ], [ 359287.874799996614456, 257607.915899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102802020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93645104, "LATITUDE": 18.34793259, "OBJECTID_1": 4087, "PARCEL_NO_": "102802020200", "Tax_Legal_": "4B REM, 4B-A,4B-B,4B-1&4B-2 LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BIMA CORPORATION", "Address": "18285 Blue Ridge Tpke", "City": "Gordonsville", "State": "Virginia", "Zip": 22942, "Country": "United States", "Land_Value": 487700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.792066328499999, "SHAPE_Area": 536.91821330699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358211.888400003314018, 257583.884799998253584 ], [ 358197.234499998390675, 257600.230099998414516 ], [ 358209.151199996471405, 257621.225900001823902 ], [ 358225.387100003659725, 257608.482099998742342 ], [ 358211.888400003314018, 257583.884799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103003026700", "MAP": "A9-97-T68", "PARCEL_NAM": "2A-2", "ACRE": ".50", "LONGITUDE": -64.91554204000001, "LATITUDE": 18.34776802, "OBJECTID_1": 5783, "PARCEL_NO_": "103003026700", "Tax_Legal_": "STJOSEPH&ROSEND2A-2 ST J&R POR47 GREAT NORTHSIDE", "Name": "GREENE, GLENN J. & JOAN N", "Address": "72 Jacobs Creek Rd", "City": "West Trenton", "State": "New Jersey", "Zip": 8628, "Country": "United States", "Land_Value": 96100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.02740986800001, "SHAPE_Area": 1709.3093628500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360434.935099996626377, 257597.013099998235703 ], [ 360415.804700002074242, 257570.892000000923872 ], [ 360393.103900000452995, 257585.271699998527765 ], [ 360426.512299999594688, 257639.162900000810623 ], [ 360432.219400003552437, 257631.821299999952316 ], [ 360434.690499998629093, 257625.719799999147654 ], [ 360441.193199999630451, 257619.651299998164177 ], [ 360443.597699999809265, 257621.3597999997437 ], [ 360446.819399997591972, 257621.808299999684095 ], [ 360449.243699997663498, 257621.194899998605251 ], [ 360450.874300003051758, 257619.097300000488758 ], [ 360434.935099996626377, 257597.013099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301079800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94866516, "LATITUDE": 18.34773752, "OBJECTID_1": 9251, "PARCEL_NO_": "105301079800", "Tax_Legal_": "SOLBERG 1B No.1 LT. NORTHSIDE", "Name": "Aubain, Dean & Saitah N.", "Address": "PO Box 307153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.100174826, "SHAPE_Area": 927.96901481999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356929.277300000190735, 257546.156100001186132 ], [ 356919.788500003516674, 257524.124699998646975 ], [ 356913.357799999415874, 257521.750100001692772 ], [ 356919.454099997878075, 257563.385400000959635 ], [ 356908.594400003552437, 257607.626200001686811 ], [ 356916.637699998915195, 257610.013999998569489 ], [ 356923.090000003576279, 257609.855700001120567 ], [ 356930.362999998033047, 257608.015399999916553 ], [ 356923.203299999237061, 257596.557799998670816 ], [ 356929.277300000190735, 257546.156100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903031600", "MAP": "D9-8403-T010", "PARCEL_NAM": "REM 6", "ACRE": "0.24", "LONGITUDE": -64.93187726, "LATITUDE": 18.34788066, "OBJECTID_1": 4825, "PARCEL_NO_": "102903031600", "Tax_Legal_": "6 LYTTONS FANCY 8G GREAT NORTHSIDE QUARTER", "Name": "CHARLES E MORTON REVOCABLE LIVING TRUST", "Address": "6030 Lyttons Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42900, "Improved_V": 91700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.08621383799999, "SHAPE_Area": 1053.6315164099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358712.291799999773502, 257611.2195999994874 ], [ 358729.038000002503395, 257587.721599999815226 ], [ 358719.042900003492832, 257587.840999998152256 ], [ 358709.383199997246265, 257587.956500001251698 ], [ 358702.110200002789497, 257589.796799998730421 ], [ 358677.028200000524521, 257599.723999999463558 ], [ 358667.334499999880791, 257601.75560000166297 ], [ 358656.848800003528595, 257602.092000000178814 ], [ 358650.378600001335144, 257604.361099999397993 ], [ 358649.557899996638298, 257606.043099999427795 ], [ 358650.342600002884865, 257608.582699999213219 ], [ 358651.946199998259544, 257609.651200000196695 ], [ 358689.03660000115633, 257609.954799998551607 ], [ 358697.085299998521805, 257611.709399998188019 ], [ 358697.863499999046326, 257612.0793999992311 ], [ 358701.792599998414516, 257613.947599999606609 ], [ 358712.291799999773502, 257611.2195999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201022700", "MAP": null, "PARCEL_NAM": "214", "ACRE": null, "LONGITUDE": -64.96314717, "LATITUDE": 18.34785702, "OBJECTID_1": 7502, "PARCEL_NO_": "105201022700", "Tax_Legal_": "CONTANT 214 7A S S QTR", "Name": "TURNBULL, BERNICE A.", "Address": "PO Box 301932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15600, "Improved_V": 76700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.09520805299999, "SHAPE_Area": 813.08123330199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355371.177699998021126, 257569.078600000590086 ], [ 355388.707999996840954, 257593.708999998867512 ], [ 355404.956500001251698, 257579.48759999871254 ], [ 355405.786200001835823, 257576.750199999660254 ], [ 355395.51630000025034, 257551.757100000977516 ], [ 355388.236100003123283, 257554.441700000315905 ], [ 355380.939699999988079, 257559.026000000536442 ], [ 355371.177699998021126, 257569.078600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903037400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92615572, "LATITUDE": 18.34795732, "OBJECTID_1": 4886, "PARCEL_NO_": "102903037400", "Tax_Legal_": "HOSPITAL GROUND 293 GREAT NORTHSIDE QTR", "Name": "SULLIVAN, RUEBEN", "Address": "PO Box 7162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64600, "Improved_V": 29400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.418204464799999, "SHAPE_Area": 313.23253728200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359288.058499999344349, 257620.554499998688698 ], [ 359310.633699998259544, 257623.234000001102686 ], [ 359310.649599999189377, 257621.375199999660254 ], [ 359310.558300003409386, 257614.943199999630451 ], [ 359309.526399999856949, 257611.133200000971556 ], [ 359306.589500002563, 257608.672600001096725 ], [ 359302.065099999308586, 257607.32319999858737 ], [ 359295.79450000077486, 257607.005699999630451 ], [ 359290.79389999806881, 257607.481899999082088 ], [ 359287.874799996614456, 257607.915899999439716 ], [ 359288.058499999344349, 257620.554499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202016800", "MAP": "A9-680-T006", "PARCEL_NAM": "19", "ACRE": ".313", "LONGITUDE": -64.95268299, "LATITUDE": 18.34783388, "OBJECTID_1": 8074, "PARCEL_NO_": "105202016800", "Tax_Legal_": "UPPER JOHN DUNKO 19&20A SOUTHSIDE QTR", "Name": "WIKANDER, PAUL & MARGARET & ANNETTE & HANSSEN, CHERI", "Address": "PO Box 302788", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 425000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.865567559, "SHAPE_Area": 1290.50983223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356498.634499996900558, 257551.075300000607967 ], [ 356493.737300001084805, 257558.001299999654293 ], [ 356464.344999998807907, 257600.612700000405312 ], [ 356467.570200003683567, 257600.63910000026226 ], [ 356493.435199998319149, 257593.462499998509884 ], [ 356520.900100000202656, 257587.776700001209974 ], [ 356515.362000003457069, 257575.276799999177456 ], [ 356504.284100003540516, 257550.488200001418591 ], [ 356498.634499996900558, 257551.075300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201080900", "MAP": null, "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.95871066, "LATITUDE": 18.34738344, "OBJECTID_1": 7892, "PARCEL_NO_": "105201080900", "Tax_Legal_": "CONTANT 1 7A SOUTHSIDE QTR", "Name": "HEMARAJANI, MANISHA & EKTA R.", "Address": "PO Box 302454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 133700, "Improved_V": 341200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.89482108599998, "SHAPE_Area": 6165.9069907599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355908.332000002264977, 257558.669900000095367 ], [ 355876.489200003445148, 257489.252199999988079 ], [ 355860.456799998879433, 257468.531800001859665 ], [ 355820.363099999725819, 257469.952399998903275 ], [ 355820.084399998188019, 257502.669700000435114 ], [ 355824.844999998807907, 257511.785599999129772 ], [ 355842.168399997055531, 257560.690000001341105 ], [ 355854.002400003373623, 257591.395500000566244 ], [ 355864.590599998831749, 257579.02760000154376 ], [ 355871.904899999499321, 257572.332499999552965 ], [ 355878.391400001943111, 257568.163699999451637 ], [ 355886.483300000429153, 257564.852400001138449 ], [ 355891.339100003242493, 257562.781199999153614 ], [ 355908.332000002264977, 257558.669900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003030900", "MAP": null, "PARCEL_NAM": "4J-1", "ACRE": null, "LONGITUDE": -64.91267424, "LATITUDE": 18.34792566, "OBJECTID_1": 5805, "PARCEL_NO_": "103003030900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4J-1 GR NORTHSIDE", "Name": "HODGE, HUGO & BERNICE", "Address": "PO Box 7543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36200, "Improved_V": 408600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.16748528400001, "SHAPE_Area": 1150.5585793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360712.299400001764297, 257600.127599999308586 ], [ 360710.608000002801418, 257599.496899999678135 ], [ 360709.207500003278255, 257610.922200001776218 ], [ 360707.282399997115135, 257626.628499999642372 ], [ 360705.771099999547005, 257638.958299998193979 ], [ 360730.418999999761581, 257642.339099999517202 ], [ 360737.837600000202656, 257633.719500001519918 ], [ 360751.127199999988079, 257618.278599999845028 ], [ 360749.240500003099442, 257617.950699999928474 ], [ 360739.595299996435642, 257614.283100001513958 ], [ 360712.299400001764297, 257600.127599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202012600", "MAP": "G9-1978-T72", "PARCEL_NAM": "2-4", "ACRE": ".23", "LONGITUDE": -64.94997361, "LATITUDE": 18.34783064, "OBJECTID_1": 8035, "PARCEL_NO_": "105202012600", "Tax_Legal_": "UPPER JOHN DUNKO 2-4 LITTLE NORTHSIDE", "Name": "HODGE, LISTON O", "Address": "PO Box 1024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041024, "Country": "United States", "Land_Value": 18600, "Improved_V": 230500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.024020484, "SHAPE_Area": 797.93719340500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356787.994599997997284, 257565.89809999987483 ], [ 356751.424500003457069, 257573.848400000482798 ], [ 356792.566299997270107, 257597.177299998700619 ], [ 356804.72749999910593, 257589.466400001198053 ], [ 356787.994599997997284, 257565.89809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91404908, "LATITUDE": 18.34764522, "OBJECTID_1": 5786, "PARCEL_NO_": "103003027000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2-18 GR NORTHSIDE QTR", "Name": "BRYAN, MARIO E. & SHEILA BUTLER", "Address": "8 Crystal Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67000, "Improved_V": 285500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.10821234700001, "SHAPE_Area": 1883.68394526 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360606.049500003457069, 257577.726399999111891 ], [ 360564.979699999094009, 257571.2685999982059 ], [ 360550.448100000619888, 257573.260600000619888 ], [ 360544.760799996554852, 257578.280299998819828 ], [ 360542.271700002253056, 257586.492499999701977 ], [ 360592.013099998235703, 257616.241700001060963 ], [ 360601.640299998223782, 257622.019999999552965 ], [ 360606.049500003457069, 257577.726399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96283064000001, "LATITUDE": 18.34765548, "OBJECTID_1": 7494, "PARCEL_NO_": "105201021800", "Tax_Legal_": "CONTANT 208 7A SOUTHSIDE QTR", "Name": "MELCHIOR, ITHIEL & EARLA", "Address": "PO Box 124", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17200, "Improved_V": 89900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.90344470599999, "SHAPE_Area": 1677.306236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355433.666500002145767, 257522.305100001394749 ], [ 355398.883599996566772, 257535.108199998736382 ], [ 355398.005400002002716, 257543.544799998402596 ], [ 355402.009999997913837, 257546.743999999016523 ], [ 355416.250299997627735, 257578.946699999272823 ], [ 355448.641199998557568, 257562.957600001245737 ], [ 355447.073499999940395, 257557.667500000447035 ], [ 355443.895000003278255, 257552.153000000864267 ], [ 355442.313000001013279, 257548.551500000059605 ], [ 355442.329199999570847, 257546.651799999177456 ], [ 355440.732699997723103, 257544.738899998366833 ], [ 355439.166900001466274, 257539.23759999871254 ], [ 355437.572200000286102, 257537.113600000739098 ], [ 355433.666500002145767, 257522.305100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202013500", "MAP": "A9-680-T006", "PARCEL_NAM": "20", "ACRE": ".38", "LONGITUDE": -64.95228, "LATITUDE": 18.34770063, "OBJECTID_1": 8044, "PARCEL_NO_": "105202013500", "Tax_Legal_": "UPPER JOHN DUNKOE #20 3 LITTLE NORTHSIDE", "Name": "WEBBE, DAVID & MARGARET", "Address": "PO Box 306027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50800, "Improved_V": 296400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.93371679500001, "SHAPE_Area": 1873.3019797300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356571.008400000631809, 257574.465700000524521 ], [ 356559.170800000429153, 257544.182399999350309 ], [ 356504.284100003540516, 257550.488200001418591 ], [ 356515.362000003457069, 257575.276799999177456 ], [ 356518.5962999984622, 257574.247800000011921 ], [ 356524.130800001323223, 257587.169799998402596 ], [ 356571.008400000631809, 257574.465700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202012700", "MAP": "A9-679-T006", "PARCEL_NAM": "32", "ACRE": ".658", "LONGITUDE": -64.95050256, "LATITUDE": 18.34766417, "OBJECTID_1": 8036, "PARCEL_NO_": "105202012700", "Tax_Legal_": "UPPER JOHNN DUNKO 32 LITTLE NORTHSIDE", "Name": "RICHARDSON, MARIE E.", "Address": "PO Box 301964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58700, "Improved_V": 179800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.42929539400001, "SHAPE_Area": 2530.30608205 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356751.424500003457069, 257573.848400000482798 ], [ 356751.112800002098083, 257541.109299998730421 ], [ 356736.622500002384186, 257538.246500000357628 ], [ 356712.515900000929832, 257528.338899999856949 ], [ 356692.768799997866154, 257574.617899999022484 ], [ 356710.444700002670288, 257582.150800000876188 ], [ 356752.374099999666214, 257591.243599999696016 ], [ 356751.424500003457069, 257573.848400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96355139000001, "LATITUDE": 18.34773119, "OBJECTID_1": 7500, "PARCEL_NO_": "105201022500", "Tax_Legal_": "CONTANT 201 7A S S QTR", "Name": "FERDINAND, FRANKLIN D. & STANLEY J. & ELIZABETH C. & ETHEL R.", "Address": "272 Harry South Truman Dr", "City": "LARGO", "State": "Maryland", "Zip": 20774, "Country": "United States", "Land_Value": 16000, "Improved_V": 76200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.11105084899999, "SHAPE_Area": 1002.18252799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355372.086499996483326, 257557.053700000047684 ], [ 355336.79389999806881, 257535.022199999541044 ], [ 355329.312399998307228, 257561.347699999809265 ], [ 355330.068300001323223, 257567.264499999582767 ], [ 355335.6621999964118, 257573.220899999141693 ], [ 355339.679300002753735, 257574.942499998956919 ], [ 355345.325300000607967, 257574.777699999511242 ], [ 355354.212700001895428, 257572.739500001072884 ], [ 355359.077600002288818, 257569.612900000065565 ], [ 355372.086499996483326, 257557.053700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301070400", "MAP": "G9-1978-T72", "PARCEL_NAM": "2-3", "ACRE": ".23", "LONGITUDE": -64.94963232000001, "LATITUDE": 18.34770946, "OBJECTID_1": 9223, "PARCEL_NO_": "105301070400", "Tax_Legal_": "UPPER JOHN DUNKO 2-3 LITTLE NORTHSIDE", "Name": "WOODLEY, HIRAM", "Address": "18 Stonecrest Rd", "City": "Mattapan", "State": "Massachusetts", "Zip": 2126, "Country": "United States", "Land_Value": 20100, "Improved_V": 189300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.188020249, "SHAPE_Area": 1045.4134719000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356831.691899999976158, 257547.890599999576807 ], [ 356792.042300000786781, 257564.031300000846386 ], [ 356807.990500003099442, 257585.060100000351667 ], [ 356810.402300000190735, 257585.924199998378754 ], [ 356813.63289999961853, 257585.317400000989437 ], [ 356837.931999996304512, 257572.639600001275539 ], [ 356839.589599996805191, 257567.375799998641014 ], [ 356838.826399996876717, 257562.303300000727177 ], [ 356831.691899999976158, 257547.890599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9547992, "LATITUDE": 18.34768489, "OBJECTID_1": 8016, "PARCEL_NO_": "105202010600", "Tax_Legal_": "CONTANT REMAINDER 107-9 7B S/S QTR.", "Name": "THOMAS B BRUNT, IV and PIA BRUNT", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.66146154299997, "SHAPE_Area": 3478.6997058299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356187.160499997437, 257576.390299998223782 ], [ 356212.966099999845028, 257576.179400000721216 ], [ 356246.030299998819828, 257575.816700000315905 ], [ 356279.094499997794628, 257575.453999999910593 ], [ 356319.417300000786781, 257574.939699999988079 ], [ 356328.606799997389317, 257537.440200001001358 ], [ 356263.254199996590614, 257541.760499998927116 ], [ 356235.704700000584126, 257557.366999998688698 ], [ 356230.89019999653101, 257554.583399999886751 ], [ 356222.789300002157688, 257558.950100000947714 ], [ 356205.800999999046326, 257565.354899998754263 ], [ 356195.272200003266335, 257570.757199998944998 ], [ 356187.160499997437, 257576.390299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202012400", "MAP": "G9-1978-T72", "PARCEL_NAM": "2-1", "ACRE": ".22", "LONGITUDE": -64.95008524000001, "LATITUDE": 18.34759854, "OBJECTID_1": 8033, "PARCEL_NO_": "105202012400", "Tax_Legal_": "UPPER JOHN DUNKO 2-1 LITTLE NORTHSIDE QTR", "Name": "BROWNE, IDONNA M. & SPENCER G.", "Address": "PO Box 12173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 131800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.69779077800001, "SHAPE_Area": 1188.5376841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356792.042300000786781, 257564.031300000846386 ], [ 356787.449000000953674, 257535.285000000149012 ], [ 356766.439900003373623, 257540.390399999916553 ], [ 356751.112800002098083, 257541.109299998730421 ], [ 356751.424500003457069, 257573.848400000482798 ], [ 356787.994599997997284, 257565.89809999987483 ], [ 356792.042300000786781, 257564.031300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105102010100", "MAP": "A9-171-T72", "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.97192601, "LATITUDE": 18.34696655, "OBJECTID_1": 7383, "PARCEL_NO_": "105102010100", "Tax_Legal_": "CROWN & HAWK 10 S S QTR", "Name": "MILLIN, CHRISTINE L. & ADRIAN", "Address": "1823 Grendon Ct", "City": "Lithonia", "State": "Georgia", "Zip": 30058, "Country": "United States", "Land_Value": 263100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 649.45018965300005, "SHAPE_Area": 25391.9642938 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354459.062399998307228, 257392.949599999934435 ], [ 354431.590199999511242, 257399.479800000786781 ], [ 354392.793700002133846, 257410.13910000026226 ], [ 354354.758599996566772, 257426.081999998539686 ], [ 354374.139600001275539, 257517.433100000023842 ], [ 354541.491099998354912, 257561.232599999755621 ], [ 354542.285199999809265, 257373.365800000727177 ], [ 354459.062399998307228, 257392.949599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301077000", "MAP": "D9-4727-T89", "PARCEL_NAM": "1B-1", "ACRE": null, "LONGITUDE": -64.94668615000001, "LATITUDE": 18.34756733, "OBJECTID_1": 9250, "PARCEL_NO_": "105301077000", "Tax_Legal_": "SOLBERG 1B1 LT. NORTHSIDE QTR", "Name": "THOMAS, YVONNE", "Address": "PO Box 306971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.37965998000001, "SHAPE_Area": 1404.3796397599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357150.082800000905991, 257562.528799999505281 ], [ 357141.526199996471405, 257525.728500001132488 ], [ 357127.770400002598763, 257531.315400000661612 ], [ 357116.458599999547005, 257533.967000000178814 ], [ 357112.823399998247623, 257582.066599998623133 ], [ 357120.890100002288818, 257581.710400000214577 ], [ 357128.170299999415874, 257579.025800000876188 ], [ 357135.498999997973442, 257570.642099998891354 ], [ 357145.234099999070168, 257563.75560000166297 ], [ 357150.082800000905991, 257562.528799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96096969, "LATITUDE": 18.3450357, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2489.8360639900002, "SHAPE_Area": 77004.885731899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355759.932499997317791, 257180.470800001174212 ], [ 355738.264499999582767, 257168.261100001633167 ], [ 355769.964299999177456, 257138.756299998611212 ], [ 355769.249700002372265, 257127.984700001776218 ], [ 355774.181000001728535, 257117.048200000077486 ], [ 355780.726800002157688, 257105.913800001144409 ], [ 355794.581600002944469, 257088.717599999159575 ], [ 355802.713100001215935, 257080.762600000947714 ], [ 355810.828299999237061, 257074.707299999892712 ], [ 355818.113899998366833, 257071.389400001615286 ], [ 355825.385099999606609, 257069.760200001299381 ], [ 355848.791599996387959, 257067.207499999552965 ], [ 355869.762900002300739, 257066.534800000488758 ], [ 355864.327299997210503, 257042.003400001674891 ], [ 355875.730700001120567, 257028.586800001561642 ], [ 355845.002700001001358, 257038.678899999707937 ], [ 355825.595499999821186, 257045.063900001347065 ], [ 355797.313400000333786, 257052.00959999859333 ], [ 355774.688100002706051, 257057.524000000208616 ], [ 355754.528499998152256, 257057.570099998265505 ], [ 355707.758799999952316, 257057.609499998390675 ], [ 355682.757700003683567, 257058.038100000470877 ], [ 355660.981899999082088, 257058.493200000375509 ], [ 355640.01240000128746, 257058.954900000244379 ], [ 355613.398699998855591, 257059.370299998670816 ], [ 355604.9121999964118, 257014.337900001555681 ], [ 355597.472000002861023, 257035.808600001037121 ], [ 355580.10249999910593, 257086.962099999189377 ], [ 355577.629600003361702, 257093.274700000882149 ], [ 355574.314400002360344, 257103.802299998700619 ], [ 355567.705700002610683, 257122.324400000274181 ], [ 355552.807300001382828, 257167.376499999314547 ], [ 355551.146099999547005, 257173.062399998307228 ], [ 355539.575400002300739, 257206.109400000423193 ], [ 355531.3091000020504, 257229.895300000905991 ], [ 355528.837999999523163, 257235.996800001710653 ], [ 355511.493600003421307, 257284.195300001651049 ], [ 355470.330399997532368, 257288.713500000536442 ], [ 355474.943499997258186, 257315.138000000268221 ], [ 355495.106700003147125, 257314.669700000435114 ], [ 355498.310300000011921, 257317.229100000113249 ], [ 355499.091499999165535, 257320.190799999982119 ], [ 355499.035700000822544, 257326.734200000762939 ], [ 355497.392499998211861, 257330.309399999678135 ], [ 355494.957400001585484, 257332.189300000667572 ], [ 355491.723200000822544, 257333.218299999833107 ], [ 355484.491499997675419, 257330.20380000025034 ], [ 355469.011600002646446, 257348.864399999380112 ], [ 355465.739600002765656, 257354.326099999248981 ], [ 355466.472099997103214, 257362.986900001764297 ], [ 355469.596699997782707, 257374.833700001239777 ], [ 355475.870999999344349, 257395.572200000286102 ], [ 355477.460199996829033, 257398.3293999992311 ], [ 355483.74889999628067, 257417.379299998283386 ], [ 355457.043499998748302, 257428.559799998998642 ], [ 355449.759700000286102, 257431.666600000113249 ], [ 355416.580399997532368, 257445.53830000013113 ], [ 355421.322999998927116, 257456.765099998563528 ], [ 355426.891599997878075, 257465.676600001752377 ], [ 355430.057499997317791, 257472.668600000441074 ], [ 355451.204000003635883, 257546.091099999845028 ], [ 355452.789700001478195, 257549.270500000566244 ], [ 355458.385300002992153, 257555.015799999237061 ], [ 355473.647699996829033, 257561.895700000226498 ], [ 355485.720799997448921, 257564.527699999511242 ], [ 355515.532799996435642, 257567.304800000041723 ], [ 355523.604900002479553, 257566.315400000661612 ], [ 355530.084200002253056, 257562.990899998694658 ], [ 355536.588600002229214, 257556.711399998515844 ], [ 355546.447800002992153, 257535.260499998927116 ], [ 355521.669699996709824, 257509.515399999916553 ], [ 355544.474799998104572, 257482.893199998885393 ], [ 355571.248499996960163, 257463.691700000315905 ], [ 355591.222900003194809, 257485.386700000613928 ], [ 355598.546300001442432, 257477.636199999600649 ], [ 355600.1841000020504, 257474.694299999624491 ], [ 355601.863200001418591, 257466.897599998861551 ], [ 355601.278099998831749, 257440.928300000727177 ], [ 355602.17790000140667, 257429.958799999207258 ], [ 355604.719099998474121, 257415.625199999660254 ], [ 355608.871200002729893, 257401.515900000929832 ], [ 355568.739000000059605, 257379.655900001525879 ], [ 355567.912900000810623, 257381.971200000494719 ], [ 355568.693999998271465, 257384.932900000363588 ], [ 355571.096799999475479, 257386.852400001138449 ], [ 355569.446400001645088, 257391.271800000220537 ], [ 355566.228299997746944, 257390.401099998503923 ], [ 355563.795000001788139, 257392.070000000298023 ], [ 355554.954300001263618, 257388.620099999010563 ], [ 355560.704599998891354, 257376.212699998170137 ], [ 355523.700499996542931, 257365.777300000190735 ], [ 355523.124399997293949, 257338.752599999308586 ], [ 355523.973899997770786, 257333.693300001323223 ], [ 355536.243000000715256, 257313.317699998617172 ], [ 355547.659000001847744, 257298.423500001430511 ], [ 355554.978799998760223, 257291.095100000500679 ], [ 355581.819099999964237, 257264.083700001239777 ], [ 355614.193800002336502, 257249.994300000369549 ], [ 355630.357799999415874, 257245.693599998950958 ], [ 355666.685099996626377, 257240.924699999392033 ], [ 355699.812200002372265, 257233.174300000071526 ], [ 355733.747500002384186, 257225.219399999827147 ], [ 355762.833999998867512, 257218.491399999707937 ], [ 355766.055699996650219, 257218.939899999648333 ], [ 355801.484899997711182, 257224.929400000721216 ], [ 355805.496699996292591, 257227.284299999475479 ], [ 355842.407200001180172, 257248.695700000971556 ], [ 355829.351599998772144, 257266.742899999022484 ], [ 355828.498499996960163, 257272.224399998784065 ], [ 355853.242499999701977, 257301.980000000447035 ], [ 355859.666000001132488, 257305.199000000953674 ], [ 355863.697599999606609, 257305.231899999082088 ], [ 355868.549800001084805, 257303.582899998873472 ], [ 355914.763199999928474, 257274.197000000625849 ], [ 355919.637000001966953, 257270.015000000596046 ], [ 355874.92230000346899, 257218.142200000584126 ], [ 355857.752300001680851, 257245.86600000038743 ], [ 355852.844300001859665, 257254.058499999344349 ], [ 355845.778099998831749, 257231.624699998646975 ], [ 355808.788500003516674, 257219.500700000673532 ], [ 355805.602799996733665, 257214.830600000917912 ], [ 355795.244800001382828, 257200.180399999022484 ], [ 355777.588600002229214, 257190.325599998235703 ], [ 355759.932499997317791, 257180.470800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202013000", "MAP": "A9-685-T006", "PARCEL_NAM": "31", "ACRE": ".476", "LONGITUDE": -64.95092961, "LATITUDE": 18.3475002, "OBJECTID_1": 8039, "PARCEL_NO_": "105202013000", "Tax_Legal_": "UPPER JOHN DUNKO 31 LITTLE NORTHSIDE QTR", "Name": "KEAN, CHOLA", "Address": "PO Box 523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49700, "Improved_V": 278500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.340086222, "SHAPE_Area": 2269.2914769099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356712.515900000929832, 257528.338899999856949 ], [ 356694.838100001215935, 257521.017099998891354 ], [ 356686.792999997735023, 257518.840300001204014 ], [ 356670.679300002753735, 257517.230700001120567 ], [ 356665.020700000226498, 257518.873199999332428 ], [ 356660.956799998879433, 257522.639600001275539 ], [ 356659.308200001716614, 257526.848000001162291 ], [ 356658.435400001704693, 257534.651299998164177 ], [ 356656.781400002539158, 257539.492899999022484 ], [ 356651.067100003361702, 257547.678800001740456 ], [ 356647.820299997925758, 257550.185300000011921 ], [ 356663.858400002121925, 257560.660199999809265 ], [ 356671.8783999979496, 257565.792100001126528 ], [ 356683.929899998009205, 257570.956999998539686 ], [ 356692.768799997866154, 257574.617899999022484 ], [ 356712.515900000929832, 257528.338899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201022400", "MAP": "D9-851-T69", "PARCEL_NAM": "202", "ACRE": null, "LONGITUDE": -64.96346854, "LATITUDE": 18.34750348, "OBJECTID_1": 7499, "PARCEL_NO_": "105201022400", "Tax_Legal_": "CONTANT 202 7A S S QTR", "Name": "BASTIAN, ELEANOR", "Address": "PO Box 303762", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21500, "Improved_V": 153900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.15673927500001, "SHAPE_Area": 1014.26531195 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355366.722800001502037, 257524.079199999570847 ], [ 355344.29169999808073, 257506.797100000083447 ], [ 355340.168399997055531, 257517.529100000858307 ], [ 355336.79389999806881, 257535.022199999541044 ], [ 355372.086499996483326, 257557.053700000047684 ], [ 355376.962099999189377, 257552.660700000822544 ], [ 355366.722800001502037, 257524.079199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202012500", "MAP": "G9-1978-T72", "PARCEL_NAM": "2-2", "ACRE": ".23", "LONGITUDE": -64.94973593, "LATITUDE": 18.3475045, "OBJECTID_1": 8034, "PARCEL_NO_": "105202012500", "Tax_Legal_": "2-2 UPPER JOHN DUNKO 2 LITTLE NORTHSIDE", "Name": "ISAAC, FERNANDO & LEIDA", "Address": "PO Box 303633", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19500, "Improved_V": 297700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.704736305, "SHAPE_Area": 987.03227840600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356787.449000000953674, 257535.285000000149012 ], [ 356792.042300000786781, 257564.031300000846386 ], [ 356831.691899999976158, 257547.890599999576807 ], [ 356822.968099996447563, 257530.720600001513958 ], [ 356814.114799998700619, 257528.7483000010252 ], [ 356787.449000000953674, 257535.285000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95459894, "LATITUDE": 18.34739562, "OBJECTID_1": 8017, "PARCEL_NO_": "105202010700", "Tax_Legal_": "CONTANT 107-9A 7B SOUTHSIDE QTR", "Name": "THOMAS B BRUNT, IV and PIA BRUNT", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71100, "Improved_V": 476600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.84560544499999, "SHAPE_Area": 2021.03824753 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356330.313000001013279, 257526.477299999445677 ], [ 356333.692900002002716, 257508.350999999791384 ], [ 356287.70610000193119, 257511.140999998897314 ], [ 356230.89019999653101, 257554.583399999886751 ], [ 356235.704700000584126, 257557.366999998688698 ], [ 356263.254199996590614, 257541.760499998927116 ], [ 356328.606799997389317, 257537.440200001001358 ], [ 356330.313000001013279, 257526.477299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202014300", "MAP": "A9-681-T006", "PARCEL_NAM": "5", "ACRE": ".396", "LONGITUDE": -64.95368985, "LATITUDE": 18.34728226, "OBJECTID_1": 8052, "PARCEL_NO_": "105202014300", "Tax_Legal_": "UPPER JOHN DUNKO 5 SOUTHSIDE QTR", "Name": "CLARK, NANCY O", "Address": "PO Box 6832", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.81124445, "SHAPE_Area": 1977.8085192799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356393.59910000115633, 257480.765799999237061 ], [ 356366.098200000822544, 257490.673200000077486 ], [ 356369.842100001871586, 257524.478799998760223 ], [ 356388.261399999260902, 257539.406100001186132 ], [ 356403.507600001990795, 257548.1858000010252 ], [ 356416.329499997198582, 257557.57880000025034 ], [ 356418.750200003385544, 257557.387499999254942 ], [ 356408.512699998915195, 257528.594999998807907 ], [ 356408.534299999475479, 257526.062100000679493 ], [ 356406.180100001394749, 257518.443399999290705 ], [ 356395.132600001990795, 257490.066500000655651 ], [ 356393.59910000115633, 257480.765799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95266709000001, "LATITUDE": 18.34729215, "OBJECTID_1": 8046, "PARCEL_NO_": "105202013700", "Tax_Legal_": "36 UPPER JOHN DUNKO LITTLE NORTHSIDE QTR.", "Name": "HART FAMILY TRUST", "Address": "8306 Scott Free", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59300, "Improved_V": 311800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.86364770899999, "SHAPE_Area": 2074.06392667 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356498.634499996900558, 257551.075300000607967 ], [ 356528.023199997842312, 257508.885999999940395 ], [ 356524.812299996614456, 257507.171000000089407 ], [ 356517.607600003480911, 257500.990299999713898 ], [ 356515.219300001859665, 257497.382100000977516 ], [ 356512.812899999320507, 257495.884799998253584 ], [ 356508.050599999725819, 257486.979899998754263 ], [ 356468.350599996745586, 257509.030900001525879 ], [ 356482.630500003695488, 257536.589899998158216 ], [ 356493.737300001084805, 257558.001299999654293 ], [ 356498.634499996900558, 257551.075300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301071500", "MAP": "F9-4000-T72", "PARCEL_NAM": "87", "ACRE": ".505", "LONGITUDE": -64.94511059, "LATITUDE": 18.34745844, "OBJECTID_1": 9233, "PARCEL_NO_": "105301071500", "Tax_Legal_": "SOLBERG 87 LITTLE NORTHSIDE", "Name": "GRIFFIN, NORRIS A. & EDELTA I", "Address": "PO Box 10558", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.83569248200001, "SHAPE_Area": 1490.2291654600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357317.947899997234344, 257557.82149999961257 ], [ 357318.422600001096725, 257525.443900000303984 ], [ 357298.766199998557568, 257525.959899999201298 ], [ 357280.226400002837181, 257525.174899999052286 ], [ 357277.004699997603893, 257524.726399999111891 ], [ 357274.254900000989437, 257563.545099999755621 ], [ 357317.947899997234344, 257557.82149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202013600", "MAP": "A9-684-T006", "PARCEL_NAM": "35", "ACRE": ".515", "LONGITUDE": -64.95230899000001, "LATITUDE": 18.34741136, "OBJECTID_1": 8045, "PARCEL_NO_": "105202013600", "Tax_Legal_": "UPPER JOHN DUNKO 35 LT. NORTHSIDE QTR", "Name": "PAUL HEINZE& MARGARET CECILIA WIKANDER FAM TRUST", "Address": "PO Box 302788", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.37775065400001, "SHAPE_Area": 1659.34542498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356528.023199997842312, 257508.885999999940395 ], [ 356498.634499996900558, 257551.075300000607967 ], [ 356504.284100003540516, 257550.488200001418591 ], [ 356559.170800000429153, 257544.182399999350309 ], [ 356567.462300002574921, 257517.441399998962879 ], [ 356550.531599998474121, 257517.09180000051856 ], [ 356536.050300002098083, 257513.173599999397993 ], [ 356528.023199997842312, 257508.885999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201021900", "MAP": "D9-851-T69", "PARCEL_NAM": "207", "ACRE": null, "LONGITUDE": -64.96291157, "LATITUDE": 18.34736326, "OBJECTID_1": 7495, "PARCEL_NO_": "105201021900", "Tax_Legal_": "207 & 412A ESTATE CONTANT 7A SOUTHSIDE QTR", "Name": "Olwin J.Lewis, Jr, Cereese N. Lewis-Smith & Coreen A.B. Smith", "Address": "PO Box 304867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034867, "Country": "United States", "Land_Value": 22700, "Improved_V": 38800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.547501008, "SHAPE_Area": 752.99601214899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355427.399400003254414, 257500.722300000488758 ], [ 355399.902099996805191, 257510.207499999552965 ], [ 355398.883599996566772, 257535.108199998736382 ], [ 355433.666500002145767, 257522.305100001394749 ], [ 355427.399400003254414, 257500.722300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96168777, "LATITUDE": 18.34727573, "OBJECTID_1": 7483, "PARCEL_NO_": "105201020600", "Tax_Legal_": "CONTANT 251 7A S S QTR", "Name": "DRAKE, CARL & LAURINE", "Address": "PO Box 307796", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.54965111600001, "SHAPE_Area": 1153.49387093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355566.825000002980232, 257509.673900000751019 ], [ 355544.474799998104572, 257482.893199998885393 ], [ 355521.669699996709824, 257509.515399999916553 ], [ 355546.447800002992153, 257535.260499998927116 ], [ 355548.085600003600121, 257532.318599998950958 ], [ 355556.251199997961521, 257520.353100001811981 ], [ 355566.825000002980232, 257509.673900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201017400", "MAP": "D9-851-T69", "PARCEL_NAM": "203", "ACRE": null, "LONGITUDE": -64.963388, "LATITUDE": 18.34725682, "OBJECTID_1": 7471, "PARCEL_NO_": "105201017400", "Tax_Legal_": "CONTANT 203 7A SOUTH S QTR", "Name": "VICTORIA, LORNE A.,SR.,MARVIN E.,SR.&LINDA VICTORIA-HERBERT", "Address": "PO Box 304448", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19400, "Improved_V": 101300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.657497433, "SHAPE_Area": 850.61172082799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355386.191200003027916, 257510.517499998211861 ], [ 355363.031099997460842, 257484.152300000190735 ], [ 355353.27080000191927, 257493.993900001049042 ], [ 355345.929499998688698, 257503.855200000107288 ], [ 355344.29169999808073, 257506.797100000083447 ], [ 355366.722800001502037, 257524.079199999570847 ], [ 355386.191200003027916, 257510.517499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201092300", "MAP": "B9-404-T73", "PARCEL_NAM": "310", "ACRE": ".311", "LONGITUDE": -64.96124715000001, "LATITUDE": 18.34778721, "OBJECTID_1": 7923, "PARCEL_NO_": "105201092300", "Tax_Legal_": "CONTANT 310 7A S S QTR", "Name": "WESSELHOFT, AGNES", "Address": "PO Box 305243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29300, "Improved_V": 217400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.307608534, "SHAPE_Area": 1443.71440031 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355585.068300001323223, 257541.370700001716614 ], [ 355563.299199998378754, 257576.814500000327826 ], [ 355590.456299997866154, 257589.42850000038743 ], [ 355596.828299999237061, 257584.646600000560284 ], [ 355603.336300000548363, 257577.94480000063777 ], [ 355609.867700003087521, 257568.499099999666214 ], [ 355620.439699999988079, 257558.030900001525879 ], [ 355585.068300001323223, 257541.370700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202037600", "MAP": "F9-2711-T70", "PARCEL_NAM": "58A", "ACRE": null, "LONGITUDE": -64.95012282, "LATITUDE": 18.34726732, "OBJECTID_1": 8234, "PARCEL_NO_": "105202037600", "Tax_Legal_": "UPPER JOHN DUNKO 58A LT NORTHSIDE QTR", "Name": "CARTY, MARMION", "Address": "BOX 2572", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16600, "Improved_V": 266200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.740816292299996, "SHAPE_Area": 546.83819785000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356753.810400001704693, 257508.411899998784065 ], [ 356761.199199996888638, 257532.883400000631809 ], [ 356765.700099997222424, 257532.573899999260902 ], [ 356780.244300000369549, 257529.104299999773502 ], [ 356773.201499998569489, 257503.926600001752377 ], [ 356752.224799998104572, 257505.232500001788139 ], [ 356753.810400001704693, 257508.411899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202014200", "MAP": "A9-681-T006", "PARCEL_NAM": "4", "ACRE": ".294", "LONGITUDE": -64.95407286, "LATITUDE": 18.34717537, "OBJECTID_1": 8051, "PARCEL_NO_": "105202014200", "Tax_Legal_": "UPPER JOHN DUNKO 4 SOUTHSIDE QTR", "Name": "ASHBY, YVONNE", "Address": "BOX 2356", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.80503842300001, "SHAPE_Area": 1396.5505533099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356366.098200000822544, 257490.673200000077486 ], [ 356339.633699998259544, 257473.569099999964237 ], [ 356333.692900002002716, 257508.350999999791384 ], [ 356330.313000001013279, 257526.477299999445677 ], [ 356352.060000002384186, 257529.399500001221895 ], [ 356351.314800001680851, 257522.216299999505281 ], [ 356352.947300001978874, 257519.907600000500679 ], [ 356356.188699997961521, 257518.034299999475479 ], [ 356362.635600000619888, 257518.509199999272823 ], [ 356369.842100001871586, 257524.478799998760223 ], [ 356366.098200000822544, 257490.673200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202037500", "MAP": "F9-2711-T70", "PARCEL_NAM": "58", "ACRE": null, "LONGITUDE": -64.94990841000001, "LATITUDE": 18.34724437, "OBJECTID_1": 8233, "PARCEL_NO_": "105202037500", "Tax_Legal_": "58 UPPER JOHN DUNKO SOUTHSIDE QTR", "Name": "CARTY, MARMION", "Address": "BOX 2572", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13500, "Improved_V": 291000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.376345728800004, "SHAPE_Area": 598.10693290500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356790.949299998581409, 257503.016399998217821 ], [ 356773.201499998569489, 257503.926600001752377 ], [ 356780.244300000369549, 257529.104299999773502 ], [ 356806.102099999785423, 257522.772100001573563 ], [ 356808.542599998414516, 257520.258900001645088 ], [ 356807.766800001263618, 257516.664000000804663 ], [ 356790.949299998581409, 257503.016399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201022200", "MAP": "D9-851-T69", "PARCEL_NAM": "204", "ACRE": null, "LONGITUDE": -64.96323281, "LATITUDE": 18.34709942, "OBJECTID_1": 7498, "PARCEL_NO_": "105201022200", "Tax_Legal_": "204 & REM 412 ESTATE CONTANT NO 7A SOUTHSIDE QTR", "Name": "MAUREEN A. DAVID HENDRICKS & KALIA RICHARDSON", "Address": "PO Box 304091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27700, "Improved_V": 169200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.51241809699999, "SHAPE_Area": 673.42542615599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355395.260200001299381, 257487.160300001502037 ], [ 355384.931000001728535, 257469.132800001651049 ], [ 355371.959899999201298, 257477.259300000965595 ], [ 355363.031099997460842, 257484.152300000190735 ], [ 355386.191200003027916, 257510.517499998211861 ], [ 355395.260200001299381, 257487.160300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201022000", "MAP": null, "PARCEL_NAM": "206", "ACRE": null, "LONGITUDE": -64.96294908, "LATITUDE": 18.34714861, "OBJECTID_1": 7496, "PARCEL_NO_": "105201022000", "Tax_Legal_": "206 CONTANT 7A SOUTHSIDE QUARTER", "Name": "TURNBULL, ELODIA E. CALLWOOD FRANCIS (LIFE ESTATE)", "Address": "PO BOX 303993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13400, "Improved_V": 76200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.84116627900001, "SHAPE_Area": 680.91506711900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355421.148500002920628, 257477.239700000733137 ], [ 355395.260200001299381, 257487.160300001502037 ], [ 355399.902099996805191, 257510.207499999552965 ], [ 355427.399400003254414, 257500.722300000488758 ], [ 355425.043399997055531, 257493.314699999988079 ], [ 355425.077600002288818, 257489.304200001060963 ], [ 355423.520700000226498, 257482.747600000351667 ], [ 355421.148500002920628, 257477.239700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201018600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96146433, "LATITUDE": 18.34706519, "OBJECTID_1": 7472, "PARCEL_NO_": "105201018600", "Tax_Legal_": "CONTANT 250 7A S S QTR", "Name": "TATEM, GERTRUDE", "Address": "10867 CORY LAKE DR", "City": "TAMPA", "State": "Florida", "Zip": 33647, "Country": "United States", "Land_Value": 26400, "Improved_V": 253600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.74460012399999, "SHAPE_Area": 1080.30524066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355544.474799998104572, 257482.893199998885393 ], [ 355566.825000002980232, 257509.673900000751019 ], [ 355591.222900003194809, 257485.386700000613928 ], [ 355571.248499996960163, 257463.691700000315905 ], [ 355544.474799998104572, 257482.893199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301072800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94847818, "LATITUDE": 18.34701259, "OBJECTID_1": 9246, "PARCEL_NO_": "105301072800", "Tax_Legal_": "SOLBERG 89-3 LT NORTHSIDE", "Name": "ROMNEY, CALVERT & CLARA", "Address": "BOX 4776", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.48897535, "SHAPE_Area": 1114.77212749 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356961.142399996519089, 257497.232099998742342 ], [ 356952.542700000107288, 257465.497699998319149 ], [ 356946.887699998915195, 257466.717999998480082 ], [ 356938.000299997627735, 257468.75620000064373 ], [ 356917.434299997985363, 257516.506099998950958 ], [ 356919.840700000524521, 257518.003400001674891 ], [ 356923.067699998617172, 257517.818799998611212 ], [ 356944.965800002217293, 257503.010299999266863 ], [ 356951.441500000655651, 257500.107999999076128 ], [ 356961.142399996519089, 257497.232099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301072700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94869553, "LATITUDE": 18.34695287, "OBJECTID_1": 9245, "PARCEL_NO_": "105301072700", "Tax_Legal_": "SOLBERG 89-2 LT NORTHSIDE", "Name": "GEORGES, DIANE", "Address": "260 NORTH EAST, 175TH TERRACE", "City": "North Miami Beach", "State": "Florida", "Zip": 33160, "Country": "United States", "Land_Value": 21000, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.02469765699999, "SHAPE_Area": 1000.39282022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356917.434299997985363, 257516.506099998950958 ], [ 356938.000299997627735, 257468.75620000064373 ], [ 356899.318899996578693, 257465.906500000506639 ], [ 356902.44879999756813, 257477.120000001043081 ], [ 356915.828900001943111, 257515.648600000888109 ], [ 356917.434299997985363, 257516.506099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9543455, "LATITUDE": 18.34702225, "OBJECTID_1": 8018, "PARCEL_NO_": "105202010800", "Tax_Legal_": "CONTANT 107-9B 7B S.S. QTR.", "Name": "BRUNT, THOMAS B. ,III & KRISTINE A. (TRUSTEES)", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68100, "Improved_V": 421500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.258505582, "SHAPE_Area": 1635.61084132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356330.89019999653101, 257458.721000000834465 ], [ 356317.130699999630451, 257464.730099998414516 ], [ 356299.120300002396107, 257496.457800000905991 ], [ 356287.70610000193119, 257511.140999998897314 ], [ 356333.692900002002716, 257508.350999999791384 ], [ 356339.633699998259544, 257473.569099999964237 ], [ 356340.49040000140667, 257467.665500000119209 ], [ 356343.031599998474121, 257453.331999998539686 ], [ 356330.89019999653101, 257458.721000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202031300", "MAP": "A9-19-T63", "PARCEL_NAM": "43", "ACRE": null, "LONGITUDE": -64.95191657, "LATITUDE": 18.34705825, "OBJECTID_1": 8199, "PARCEL_NO_": "105202031300", "Tax_Legal_": "43 REM UPPER JOHN DUNKO SOUTHSIDE QTR", "Name": "MCDERMOTT, JEFFREY K. & SUSAN H.", "Address": "364 Spring St Ext", "City": "Glastonbury", "State": "Connecticut", "Zip": 6033, "Country": "United States", "Land_Value": 45600, "Improved_V": 227400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.761793982, "SHAPE_Area": 1698.16013137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356608.117799997329712, 257477.877500001341105 ], [ 356564.600299999117851, 257474.777100000530481 ], [ 356541.751999996602535, 257506.465199999511242 ], [ 356551.400799997150898, 257509.71059999987483 ], [ 356562.681999996304512, 257510.647300001233816 ], [ 356582.873999997973442, 257506.80180000141263 ], [ 356601.413800001144409, 257507.586800001561642 ], [ 356608.117799997329712, 257477.877500001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202031500", "MAP": "A9-685-T006", "PARCEL_NAM": "44", "ACRE": ".321", "LONGITUDE": -64.95145665, "LATITUDE": 18.34706746, "OBJECTID_1": 8201, "PARCEL_NO_": "105202031500", "Tax_Legal_": "UPPER JOHN DUNKO 44 SOUTHSIDE QTR", "Name": "HYPOLITE, JOHN & ASTRID", "Address": "PO Box 301826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 246200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.57332080699999, "SHAPE_Area": 1298.9371499399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356612.147600002586842, 257478.121599998325109 ], [ 356608.117799997329712, 257477.877500001341105 ], [ 356601.413800001144409, 257507.586800001561642 ], [ 356630.417599998414516, 257510.568399999290705 ], [ 356644.93129999935627, 257510.687199998646975 ], [ 356649.218199998140335, 257480.747000001370907 ], [ 356612.147600002586842, 257478.121599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202031600", "MAP": "A9-19-T63", "PARCEL_NAM": "45", "ACRE": null, "LONGITUDE": -64.95104386, "LATITUDE": 18.34707519, "OBJECTID_1": 8202, "PARCEL_NO_": "105202031600", "Tax_Legal_": "UPPER JOHN DUNKO 45 SOUTHSIDE QTR", "Name": "BERNARD, VEREL & LORETTA", "Address": "P.O. BOX 5237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.17582753400001, "SHAPE_Area": 1248.89610425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356657.27589999884367, 257481.446199998259544 ], [ 356649.218199998140335, 257480.747000001370907 ], [ 356644.93129999935627, 257510.687199998646975 ], [ 356667.522399999201298, 257509.183299999684095 ], [ 356680.417999997735023, 257509.922200001776218 ], [ 356687.694600000977516, 257507.659699998795986 ], [ 356690.138700000941753, 257504.724399998784065 ], [ 356698.372699998319149, 257484.737900000065565 ], [ 356657.27589999884367, 257481.446199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202016200", "MAP": "A9-684-T006", "PARCEL_NAM": "37", "ACRE": ".549", "LONGITUDE": -64.9528366, "LATITUDE": 18.34690571, "OBJECTID_1": 8068, "PARCEL_NO_": "105202016200", "Tax_Legal_": "UPPER JOHN DUNKO 37 3A LITTLE NORTHSIDE", "Name": "HUGH, JANET REVOCABLE TRUST", "Address": "PO Box 600168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.613152528, "SHAPE_Area": 2198.9951666500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356501.156999997794628, 257444.282600000500679 ], [ 356456.698299996554852, 257457.006499998271465 ], [ 356458.04839999973774, 257487.837200000882149 ], [ 356458.032200001180172, 257489.736900001764297 ], [ 356468.350599996745586, 257509.030900001525879 ], [ 356508.050599999725819, 257486.979899998754263 ], [ 356503.277400001883507, 257479.341499999165535 ], [ 356500.977200001478195, 257465.390500001609325 ], [ 356500.25900000333786, 257455.041000001132488 ], [ 356501.156999997794628, 257444.282600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202031200", "MAP": "A9-19-T63", "PARCEL_NAM": "42", "ACRE": null, "LONGITUDE": -64.95232129, "LATITUDE": 18.34687563, "OBJECTID_1": 8198, "PARCEL_NO_": "105202031200", "Tax_Legal_": "UPPER JOHN DUNKO 42 SOUTHSIDE QTR", "Name": "SALEM, SUAD & NAEL", "Address": "PO Box 305198", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 137200, "Improved_V": 246900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.72865308499999, "SHAPE_Area": 2360.1783898899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356555.923299998044968, 257452.119100000709295 ], [ 356508.406599998474121, 257445.186299998313189 ], [ 356508.260899998247623, 257462.283700000494719 ], [ 356509.002499997615814, 257469.88910000026226 ], [ 356511.344099998474121, 257478.985300000756979 ], [ 356516.907399997115135, 257488.530000001192093 ], [ 356524.895000003278255, 257497.461300000548363 ], [ 356536.123999997973442, 257504.519299998879433 ], [ 356541.751999996602535, 257506.465199999511242 ], [ 356564.600299999117851, 257474.777100000530481 ], [ 356555.923299998044968, 257452.119100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95014897, "LATITUDE": 18.34702141, "OBJECTID_1": 8204, "PARCEL_NO_": "105202031800", "Tax_Legal_": "UPPER JOHN DUNKO 59 3A LITTLE NORTHSIDE", "Name": "DEON M MCCURDY and JESSICA B TAYLOR", "Address": "PO Box 302934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24900, "Improved_V": 114900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.20524585199999, "SHAPE_Area": 986.52177333700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356779.873199999332428, 257478.016699999570847 ], [ 356740.374600000679493, 257476.42680000141263 ], [ 356743.531599998474121, 257484.474199999123812 ], [ 356748.279500000178814, 257495.067800000309944 ], [ 356752.224799998104572, 257505.232500001788139 ], [ 356773.201499998569489, 257503.926600001752377 ], [ 356790.949299998581409, 257503.016399998217821 ], [ 356786.944799996912479, 257499.817200001329184 ], [ 356782.160800002515316, 257493.445199999958277 ], [ 356780.605700001120567, 257486.677499998360872 ], [ 356779.873199999332428, 257478.016699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202015900", "MAP": "A9-12-T63", "PARCEL_NAM": "13", "ACRE": null, "LONGITUDE": -64.95328744, "LATITUDE": 18.34694128, "OBJECTID_1": 8065, "PARCEL_NO_": "105202015900", "Tax_Legal_": "UPPER JOHN DUNKO 13 LITTLE NORTHSIDE", "Name": "TURNBULL, CHARLES W", "Address": "PO Box 302265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032265, "Country": "United States", "Land_Value": 41600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.522921852, "SHAPE_Area": 1520.12265288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356456.698299996554852, 257457.006499998271465 ], [ 356404.961199998855591, 257472.203999999910593 ], [ 356405.69200000166893, 257481.075899999588728 ], [ 356410.368100002408028, 257500.11259999871254 ], [ 356458.04839999973774, 257487.837200000882149 ], [ 356456.698299996554852, 257457.006499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301093900", "MAP": "D9-2273-T83", "PARCEL_NAM": "94-6", "ACRE": "0.53", "LONGITUDE": -64.9436399, "LATITUDE": 18.34685501, "OBJECTID_1": 9323, "PARCEL_NO_": "105301093900", "Tax_Legal_": "SOLBERG 94-6 LT. NORTHSIDE", "Name": "TUITT, CATHERINE & SAMUEL", "Address": "PO Box 811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60900, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.43314882199999, "SHAPE_Area": 2509.1950646099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357475.997699998319149, 257451.205699998885393 ], [ 357426.794699996709824, 257452.913899999111891 ], [ 357427.208999998867512, 257498.935699999332428 ], [ 357436.870399996638298, 257500.703499998897314 ], [ 357475.512199997901917, 257508.197000000625849 ], [ 357475.997699998319149, 257451.205699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201019100", "MAP": "D9-4421-T88", "PARCEL_NAM": "33D", "ACRE": null, "LONGITUDE": -64.96538675, "LATITUDE": 18.34686734, "OBJECTID_1": 7477, "PARCEL_NO_": "105201019100", "Tax_Legal_": "LLINDBERG BAY 33D SOUTHSIDE QTR.", "Name": "PETERSEN, SIGURD O", "Address": "9455 Lake Lotta Circle", "City": "Gotha", "State": "Florida", "Zip": 347340000, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.82967464399999, "SHAPE_Area": 2776.59434371 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355189.745899997651577, 257474.290300000458956 ], [ 355184.434299997985363, 257435.194600000977516 ], [ 355120.660099998116493, 257443.538499999791384 ], [ 355122.699600003659725, 257488.096000000834465 ], [ 355189.745899997651577, 257474.290300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95665436, "LATITUDE": 18.34644719, "OBJECTID_1": 8056, "PARCEL_NO_": "105202014900", "Tax_Legal_": "CONTANT 101 7A S S QTR", "Name": "YEE, DARLENE E. & KENSOON", "Address": "9663 Santa Monica Blvd", "City": "Beverly Hills", "State": "California", "Zip": 90210, "Country": "United States", "Land_Value": 85800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 349.449030537, "SHAPE_Area": 4369.3098306900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356037.514700002968311, 257441.965500000864267 ], [ 356052.37610000371933, 257495.916000001132488 ], [ 356072.805500000715256, 257464.208099998533726 ], [ 356081.786399997770786, 257451.193799998611212 ], [ 356085.893500000238419, 257442.3614999987185 ], [ 356087.51690000295639, 257441.108199998736382 ], [ 356126.976899996399879, 257352.5608000010252 ], [ 356095.399499997496605, 257367.712200000882149 ], [ 356081.598600000143051, 257378.576099999248981 ], [ 356070.196999996900558, 257391.781700000166893 ], [ 356060.3108000010252, 257416.398699998855591 ], [ 356058.685599997639656, 257417.863000001758337 ], [ 356057.038800001144409, 257421.860300000756979 ], [ 356049.701099999248981, 257431.299499999731779 ], [ 356037.514700002968311, 257441.965500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201022100", "MAP": "D9-851-T69", "PARCEL_NAM": "205", "ACRE": null, "LONGITUDE": -64.96302472000001, "LATITUDE": 18.34694919, "OBJECTID_1": 7497, "PARCEL_NO_": "105201022100", "Tax_Legal_": "CONTANT 205 7A S S QTR", "Name": "WILLIAMS, LUTHER & ERNA", "Address": "PO Box 773", "City": "CHRISTIANSTED", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 14800, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.80341878500001, "SHAPE_Area": 666.36043674899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355384.931000001728535, 257469.132800001651049 ], [ 355395.260200001299381, 257487.160300001502037 ], [ 355421.148500002920628, 257477.239700000733137 ], [ 355418.790700003504753, 257470.043299999088049 ], [ 355412.435500003397465, 257458.803300000727177 ], [ 355410.835500001907349, 257457.3125 ], [ 355405.198499999940395, 257456.421999998390675 ], [ 355384.931000001728535, 257469.132800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201021300", "MAP": "D9-851-T69", "PARCEL_NAM": "199", "ACRE": null, "LONGITUDE": -64.96355983, "LATITUDE": 18.34691101, "OBJECTID_1": 7490, "PARCEL_NO_": "105201021300", "Tax_Legal_": "CONTANT 199 7A S S QTR", "Name": "DORSETT, FRANKLIN & DORICE", "Address": "PO BOX 4302, VDS", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13900, "Improved_V": 66000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.922497812, "SHAPE_Area": 621.57050603300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355350.768500000238419, 257445.934200000017881 ], [ 355349.047600001096725, 257450.704300001263618 ], [ 355328.333400003612041, 257463.925599999725819 ], [ 355349.309399999678135, 257485.728799998760223 ], [ 355353.385899998247623, 257480.4847999997437 ], [ 355361.506599999964237, 257473.796300001442432 ], [ 355350.768500000238419, 257445.934200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301072900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94816901, "LATITUDE": 18.34688347, "OBJECTID_1": 9247, "PARCEL_NO_": "105301072900", "Tax_Legal_": "SOLBERG 89-4 LT NORTHSIDE", "Name": "ROMNEY, CALVERT & CLARA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39900, "Improved_V": 272900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.262311565, "SHAPE_Area": 1148.6450657 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356993.741999998688698, 257456.75789999961853 ], [ 356952.542700000107288, 257465.497699998319149 ], [ 356961.142399996519089, 257497.232099998742342 ], [ 356971.629900000989437, 257496.68470000103116 ], [ 356978.899300001561642, 257495.266499999910593 ], [ 356988.629000000655651, 257489.013300001621246 ], [ 356992.095200002193451, 257460.755199998617172 ], [ 356993.741999998688698, 257456.75789999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96339196, "LATITUDE": 18.3467389, "OBJECTID_1": 7489, "PARCEL_NO_": "105201021200", "Tax_Legal_": "CONTANT 198 7A S S QTR", "Name": "CARTY, ANN", "Address": "PO Box 4782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 79600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.08205724800001, "SHAPE_Area": 895.98298874399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355361.444700002670288, 257416.340500000864267 ], [ 355350.768500000238419, 257445.934200000017881 ], [ 355361.506599999964237, 257473.796300001442432 ], [ 355368.813799999654293, 257467.945500001311302 ], [ 355381.783100001513958, 257460.030099999159575 ], [ 355370.708700001239777, 257434.819299999624491 ], [ 355361.444700002670288, 257416.340500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202037100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.950969, "LATITUDE": 18.34683269, "OBJECTID_1": 8229, "PARCEL_NO_": "105202037100", "Tax_Legal_": "UPPER JOHN DUNKO 46 SOUTHSIDE QTR", "Name": "VALLEY VIEW PROPERTIES INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 207100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.37586017500001, "SHAPE_Area": 1106.4332570900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356662.392499998211861, 257448.7685999982059 ], [ 356657.27589999884367, 257481.446199998259544 ], [ 356698.372699998319149, 257484.737900000065565 ], [ 356700.080600000917912, 257473.563900001347065 ], [ 356698.509300000965595, 257468.695900000631809 ], [ 356694.526299998164177, 257462.963799998164177 ], [ 356687.314499996602535, 257457.627399999648333 ], [ 356675.271899998188019, 257451.4070999994874 ], [ 356662.392499998211861, 257448.7685999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202037000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95133125, "LATITUDE": 18.34680258, "OBJECTID_1": 8228, "PARCEL_NO_": "105202037000", "Tax_Legal_": "UPPER JOHN DUNKO 47 SOUTHSIDE QTR", "Name": "BLAKE, THOMAS G. & LAURENCE A", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 220200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.70319231900001, "SHAPE_Area": 1258.5123002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356662.392499998211861, 257448.7685999982059 ], [ 356649.495099999010563, 257448.240899998694658 ], [ 356630.102200001478195, 257452.937300000339746 ], [ 356621.230999998748302, 257453.075800001621246 ], [ 356612.147600002586842, 257478.121599998325109 ], [ 356649.218199998140335, 257480.747000001370907 ], [ 356657.27589999884367, 257481.446199998259544 ], [ 356662.392499998211861, 257448.7685999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202037800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95175214, "LATITUDE": 18.34677371, "OBJECTID_1": 8236, "PARCEL_NO_": "105202037800", "Tax_Legal_": "UPPER JOHN DUNKO 48 LITTLE NORTHSIDE", "Name": "BARRY, CHARLES", "Address": "PO Box 943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25000, "Improved_V": 289700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.11326957200001, "SHAPE_Area": 1322.51192958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356589.905299998819828, 257438.676100000739098 ], [ 356564.600299999117851, 257474.777100000530481 ], [ 356608.117799997329712, 257477.877500001341105 ], [ 356612.147600002586842, 257478.121599998325109 ], [ 356621.230999998748302, 257453.075800001621246 ], [ 356613.988600000739098, 257451.327799998223782 ], [ 356605.952399998903275, 257448.095600001513958 ], [ 356589.905299998819828, 257438.676100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95021393, "LATITUDE": 18.34676828, "OBJECTID_1": 8205, "PARCEL_NO_": "105202031900", "Tax_Legal_": "UPPER JOHN DUNKO 60 SOUTHSIDE QTR", "Name": "PURCELL, ALFRED TENNYSON", "Address": "PO Box 303468", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27200, "Improved_V": 148800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.490193742, "SHAPE_Area": 1271.27809015 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356780.916799999773502, 257450.160900000482798 ], [ 356729.327200002968311, 257448.049899999052286 ], [ 356740.374600000679493, 257476.42680000141263 ], [ 356779.873199999332428, 257478.016699999570847 ], [ 356780.916799999773502, 257450.160900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95201848000001, "LATITUDE": 18.34652474, "OBJECTID_1": 8197, "PARCEL_NO_": "105202031100", "Tax_Legal_": "UPPER JOHN DUNKO 49 3A LITTLE NORTHSIDE", "Name": "Charlene Bastien Chinnery, S A&R A Chinnery, Jr.", "Address": "PO Box 507", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41500, "Improved_V": 224600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.51809691400001, "SHAPE_Area": 1777.9860770299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356574.113499999046326, 257399.283500000834465 ], [ 356544.101899996399879, 257419.936099998652935 ], [ 356555.923299998044968, 257452.119100000709295 ], [ 356564.600299999117851, 257474.777100000530481 ], [ 356589.905299998819828, 257438.676100000739098 ], [ 356583.501500003039837, 257433.135299999266863 ], [ 356581.910499997437, 257430.589099999517202 ], [ 356579.680399999022484, 257408.406100001186132 ], [ 356574.113499999046326, 257399.283500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202015800", "MAP": "A9-12-T63", "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.95330761, "LATITUDE": 18.34661508, "OBJECTID_1": 8064, "PARCEL_NO_": "105202015800", "Tax_Legal_": "UPPER JOHN DUNKO 12 S S QTR", "Name": "TURNBULL, CHARLES", "Address": "BOX 2265", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40700, "Improved_V": 385600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.17368676199999, "SHAPE_Area": 2231.9285797399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356454.610200002789497, 257418.148200001567602 ], [ 356453.056900002062321, 257411.169399999082088 ], [ 356406.931699998676777, 257430.212499998509884 ], [ 356403.476300001144409, 257457.204199999570847 ], [ 356404.961199998855591, 257472.203999999910593 ], [ 356456.698299996554852, 257457.006499998271465 ], [ 356454.610200002789497, 257418.148200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96419355, "LATITUDE": 18.34667479, "OBJECTID_1": 7448, "PARCEL_NO_": "105201011500", "Tax_Legal_": "CONTANT 180 7A SOUTHSIDE QTR", "Name": "GUMBS, EDWITA CALLWOOD", "Address": "P.O.BOX 2072", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14500, "Improved_V": 101500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.44831250199999, "SHAPE_Area": 693.42527355000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355288.53320000320673, 257426.125199999660254 ], [ 355266.777099996805191, 257424.258400000631809 ], [ 355272.097599998116493, 257462.298700001090765 ], [ 355275.358800001442432, 257458.10359999909997 ], [ 355281.845299996435642, 257453.934799998998642 ], [ 355296.407499998807907, 257448.354400001466274 ], [ 355288.53320000320673, 257426.125199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96316687, "LATITUDE": 18.34665967, "OBJECTID_1": 7488, "PARCEL_NO_": "105201021100", "Tax_Legal_": "CONTANT 197 7A S S QTR", "Name": "TURNBULL, WINSTON & IDALIA", "Address": "PO Box 302264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10100, "Improved_V": 62100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.308087775, "SHAPE_Area": 764.912441715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355399.867200002074242, 257419.64809999987483 ], [ 355370.708700001239777, 257434.819299999624491 ], [ 355381.783100001513958, 257460.030099999159575 ], [ 355397.185699999332428, 257450.445799998939037 ], [ 355402.082999996840954, 257443.519799999892712 ], [ 355402.982799999415874, 257432.550299998372793 ], [ 355399.867200002074242, 257419.64809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202014500", "MAP": "A9-19-T63", "PARCEL_NAM": "66", "ACRE": ".21", "LONGITUDE": -64.95385196, "LATITUDE": 18.34650511, "OBJECTID_1": 8054, "PARCEL_NO_": "105202014500", "Tax_Legal_": "UPPER JOHN DUNKO 66 SOUTHSIDE QTR", "Name": "KING, LILLIA", "Address": "BOX 5079", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.98429233100001, "SHAPE_Area": 801.75823849400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356343.895099997520447, 257449.011100001633167 ], [ 356396.01410000026226, 257429.902399998158216 ], [ 356397.385399997234344, 257414.935600001364946 ], [ 356396.62049999833107, 257410.074200000613928 ], [ 356346.400700002908707, 257436.472100000828505 ], [ 356343.895099997520447, 257449.011100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043700", "MAP": "A9-465-T95", "PARCEL_NAM": "107-8-4", "ACRE": ".27", "LONGITUDE": -64.95426013, "LATITUDE": 18.34646735, "OBJECTID_1": 3575, "PARCEL_NO_": "102704043700", "Tax_Legal_": "PAR 107-8-4 CONTANT 7B SOUTHSIDE QTR", "Name": "JUSTGREG INC", "Address": "8000 NISKY SHOPPING CENTER, STE. 78, PMB 70", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.05614293900001, "SHAPE_Area": 917.334742764 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356326.658299997448921, 257387.547899998724461 ], [ 356327.961599998176098, 257423.866599999368191 ], [ 356317.351899996399879, 257438.767400000244379 ], [ 356319.718699999153614, 257444.908500000834465 ], [ 356319.632399998605251, 257455.040300000458956 ], [ 356317.130699999630451, 257464.730099998414516 ], [ 356330.89019999653101, 257458.721000000834465 ], [ 356332.720399998128414, 257433.19370000064373 ], [ 356344.9391999989748, 257418.728199999779463 ], [ 356333.112400002777576, 257387.17850000038743 ], [ 356326.658299997448921, 257387.547899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301072600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9486678, "LATITUDE": 18.34668094, "OBJECTID_1": 9244, "PARCEL_NO_": "105301072600", "Tax_Legal_": "SOLBERG 89-1 LT. NORTHSIDE", "Name": "PRINCE, FRANK R", "Address": "7267 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21000, "Improved_V": 152300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.68445184300001, "SHAPE_Area": 1239.7920303200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356947.085500001907349, 257443.499299999326468 ], [ 356932.539499998092651, 257447.179900001734495 ], [ 356897.176899999380112, 257433.380499999970198 ], [ 356899.318899996578693, 257465.906500000506639 ], [ 356938.000299997627735, 257468.75620000064373 ], [ 356946.887699998915195, 257466.717999998480082 ], [ 356947.085500001907349, 257443.499299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301073000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94815737, "LATITUDE": 18.34662037, "OBJECTID_1": 9248, "PARCEL_NO_": "105301073000", "Tax_Legal_": "SOLBERG 89-5 LT. NORTHSIDE", "Name": "GUMBS, CONSTANCE E", "Address": "PO Box 306653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46100, "Improved_V": 242300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.67069519699999, "SHAPE_Area": 1316.98044899 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356971.327100001275539, 257437.5760000012815 ], [ 356947.085500001907349, 257443.499299999326468 ], [ 356946.887699998915195, 257466.717999998480082 ], [ 356952.542700000107288, 257465.497699998319149 ], [ 356993.741999998688698, 257456.75789999961853 ], [ 356998.676899999380112, 257445.39919999986887 ], [ 357012.538900002837181, 257427.358600001782179 ], [ 356971.327100001275539, 257437.5760000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105102010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96774648, "LATITUDE": 18.3458322, "OBJECTID_1": 7385, "PARCEL_NO_": "105102010400", "Tax_Legal_": "LINBERG BAY 68A S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 289700, "Improved_V": 875200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 594.53043069700004, "SHAPE_Area": 20574.150555100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354961.138300001621246, 257237.894400000572205 ], [ 354845.520900003612041, 257273.889499999582767 ], [ 354848.866300001740456, 257449.124499998986721 ], [ 354964.462099999189377, 257415.662300001829863 ], [ 354963.504000000655651, 257338.816399998962879 ], [ 354963.554300002753735, 257332.906199999153614 ], [ 354962.223999999463558, 257299.753699999302626 ], [ 354962.48480000346899, 257269.147199999541044 ], [ 354961.138300001621246, 257237.894400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95417182, "LATITUDE": 18.34659131, "OBJECTID_1": 8019, "PARCEL_NO_": "105202010900", "Tax_Legal_": "CONTANT 107 1 SOUTHSIDE QTR", "Name": "KING, LILLIA", "Address": "BOX 5079", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.603351571000005, "SHAPE_Area": 413.17791789099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356346.400700002908707, 257436.472100000828505 ], [ 356348.10869999974966, 257425.298099998384714 ], [ 356344.9391999989748, 257418.728199999779463 ], [ 356332.720399998128414, 257433.19370000064373 ], [ 356330.89019999653101, 257458.721000000834465 ], [ 356343.031599998474121, 257453.331999998539686 ], [ 356346.400700002908707, 257436.472100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96400503, "LATITUDE": 18.34659622, "OBJECTID_1": 7449, "PARCEL_NO_": "105201011600", "Tax_Legal_": "CONTANT 179 7A SOUTHSIDE QTR", "Name": "CORREA, AURIO & JOYCE", "Address": "Po Box 844", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11700, "Improved_V": 174400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.964775966999994, "SHAPE_Area": 513.51517144699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355316.631800003349781, 257440.709499999880791 ], [ 355303.061200000345707, 257424.555300001055002 ], [ 355300.753700003027916, 257411.448600001633167 ], [ 355291.839299999177456, 257416.653000000864267 ], [ 355288.53320000320673, 257426.125199999660254 ], [ 355296.407499998807907, 257448.354400001466274 ], [ 355316.631800003349781, 257440.709499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201080300", "MAP": "F9-444-T59", "PARCEL_NAM": "127", "ACRE": ".58", "LONGITUDE": -64.95910415, "LATITUDE": 18.34649892, "OBJECTID_1": 7886, "PARCEL_NO_": "105201080300", "Tax_Legal_": "CONTANT 127 7A SOUTHSIDE QUARTER", "Name": "MOONSAMMY DUNCAN TRUST", "Address": "PO Box 10588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43400, "Improved_V": 181500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.368883267, "SHAPE_Area": 2253.9358617600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355843.139499999582767, 257446.707499999552965 ], [ 355838.71339999884367, 257398.330800000578165 ], [ 355832.253899998962879, 257399.333399999886751 ], [ 355822.583499997854233, 257398.620999999344349 ], [ 355812.124799996614456, 257395.791200000792742 ], [ 355806.720100000500679, 257393.210200000554323 ], [ 355796.997100003063679, 257422.7179000005126 ], [ 355788.633500002324581, 257448.100099999457598 ], [ 355797.145499996840954, 257450.34180000051856 ], [ 355843.139499999582767, 257446.707499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201019000", "MAP": "D9-3997-T87", "PARCEL_NAM": "33C", "ACRE": null, "LONGITUDE": -64.96546442, "LATITUDE": 18.3465384, "OBJECTID_1": 7476, "PARCEL_NO_": "105201019000", "Tax_Legal_": "LINDBERG BAY 33C S.S. QTR.", "Name": "PETERSEN, YVONNE", "Address": "TOWERS CONDOS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.50365340900001, "SHAPE_Area": 1832.2822124100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355149.991300001740456, 257408.103799998760223 ], [ 355119.408900000154972, 257401.098499998450279 ], [ 355120.660099998116493, 257443.538499999791384 ], [ 355184.434299997985363, 257435.194600000977516 ], [ 355183.644199997186661, 257433.28830000013113 ], [ 355183.660400003194809, 257431.3885000012815 ], [ 355179.681000001728535, 257425.234299998730421 ], [ 355174.081699997186661, 257419.911100000143051 ], [ 355170.903200000524521, 257414.396699998527765 ], [ 355166.873499996960163, 257414.15260000154376 ], [ 355149.991300001740456, 257408.103799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9627774, "LATITUDE": 18.34654787, "OBJECTID_1": 7486, "PARCEL_NO_": "105201020900", "Tax_Legal_": "CONTANT 188 7A SOUTHSIDE QTR", "Name": "BOYNES (TRUSTEE), ILVA N.", "Address": "PO Box 1074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15700, "Improved_V": 110900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.824159628, "SHAPE_Area": 826.18700096600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355442.691699996590614, 257409.443900000303984 ], [ 355410.322300001978874, 257422.900100000202656 ], [ 355416.580399997532368, 257445.53830000013113 ], [ 355449.759700000286102, 257431.666600000113249 ], [ 355442.691699996590614, 257409.443900000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201080400", "MAP": "D9-205-T59", "PARCEL_NAM": "103", "ACRE": ".53", "LONGITUDE": -64.95864853, "LATITUDE": 18.3464331, "OBJECTID_1": 7887, "PARCEL_NO_": "105201080400", "Tax_Legal_": "103 ESTATE CONTANT 7A SOUTHSIDE QUARTER", "Name": "RHYMER, GREGORY L. & RENEE T. J", "Address": "PO Box 307183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52500, "Improved_V": 280900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.30995396200001, "SHAPE_Area": 2509.6236773099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355894.840599998831749, 257435.731600001454353 ], [ 355889.586599998176098, 257389.881299998611212 ], [ 355838.71339999884367, 257398.330800000578165 ], [ 355843.139499999582767, 257446.707499999552965 ], [ 355856.049500003457069, 257445.757699999958277 ], [ 355894.840599998831749, 257435.731600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202037300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95096666000001, "LATITUDE": 18.34636741, "OBJECTID_1": 8231, "PARCEL_NO_": "105202037300", "Tax_Legal_": "UPPER JOHN DUNKO 55 SOUTHSIDE QTR", "Name": "BENJAMIN, ANNA", "Address": "8058 Athena St", "City": "Springfield", "State": "Virginia", "Zip": 22153, "Country": "United States", "Land_Value": 60700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.56271273499999, "SHAPE_Area": 2720.4248096800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356711.955200001597404, 257404.8445999994874 ], [ 356650.869599997997284, 257381.546500001102686 ], [ 356656.802299998700619, 257442.390000000596046 ], [ 356668.887999996542931, 257443.544399999082088 ], [ 356680.147600002586842, 257447.01410000026226 ], [ 356692.99099999666214, 257453.874200001358986 ], [ 356711.955200001597404, 257404.8445999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202017900", "MAP": "A9-465-T95", "PARCEL_NAM": "107-7-4", "ACRE": "0.23", "LONGITUDE": -64.95506102, "LATITUDE": 18.34647187, "OBJECTID_1": 8085, "PARCEL_NO_": "105202017900", "Tax_Legal_": "107-7-4 ESTATE CONTANT 7B SOUTHSIDE QTR", "Name": "CLAXTON, SONIA M. & RUPERT E", "Address": "PO BOX 2964", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 208200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.59688739000001, "SHAPE_Area": 1059.78994152 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356241.703500002622604, 257400.961300000548363 ], [ 356233.069499999284744, 257399.957400001585484 ], [ 356235.822599999606609, 257448.865899998694658 ], [ 356251.941699996590614, 257449.842199999839067 ], [ 356258.399400003254414, 257449.050700001418591 ], [ 356255.010899998247623, 257403.450500000268221 ], [ 356241.703500002622604, 257400.961300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202031000", "MAP": "D9-3651-T86", "PARCEL_NAM": "41", "ACRE": null, "LONGITUDE": -64.95239159, "LATITUDE": 18.34644766, "OBJECTID_1": 8196, "PARCEL_NO_": "105202031000", "Tax_Legal_": "UPPER JOHN DUNKO 41 LITTLE NORTHSIDE QTR", "Name": "NICHOLSON, MARY F", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46600, "Improved_V": 337400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.992519015, "SHAPE_Area": 1918.1510944900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356512.009499996900558, 257400.886100001633167 ], [ 356503.825900003314018, 257414.962400000542402 ], [ 356509.288400001823902, 257436.327599998563528 ], [ 356508.406599998474121, 257445.186299998313189 ], [ 356555.923299998044968, 257452.119100000709295 ], [ 356544.101899996399879, 257419.936099998652935 ], [ 356533.8445999994874, 257393.465500000864267 ], [ 356512.009499996900558, 257400.886100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202017800", "MAP": "A9-465-T95", "PARCEL_NAM": "107-7-3", "ACRE": "0.23", "LONGITUDE": -64.95526993, "LATITUDE": 18.3464492, "OBJECTID_1": 8084, "PARCEL_NO_": "105202017800", "Tax_Legal_": "CONTANT 107-7-3 7B SOUTHSIDE QUARTER", "Name": "CONDAISY, RICHARDS", "Address": "PO Box 305347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26700, "Improved_V": 260000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.20942897399999, "SHAPE_Area": 1067.63545458 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356233.069499999284744, 257399.957400001585484 ], [ 356216.69539999961853, 257397.66499999910593 ], [ 356211.104099996387959, 257397.113400001078844 ], [ 356211.964100003242493, 257409.8293999992311 ], [ 356213.274700000882149, 257445.303899999707937 ], [ 356235.822599999606609, 257448.865899998694658 ], [ 356233.069499999284744, 257399.957400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202018000", "MAP": "A9-465-T95", "PARCEL_NAM": "107-8-1", "ACRE": "0.23", "LONGITUDE": -64.95484989000001, "LATITUDE": 18.34647489, "OBJECTID_1": 8086, "PARCEL_NO_": "105202018000", "Tax_Legal_": "107-8-1 CONTANT 7B SOUTHSIDE QTR.", "Name": "ALMESTICA, KEITH & PHYLLIS", "Address": "PO Box 11017", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 270600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.795311121, "SHAPE_Area": 899.206398734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356281.062399998307228, 257439.103700000792742 ], [ 356280.488099999725819, 257411.867899999022484 ], [ 356264.254399999976158, 257406.50450000166893 ], [ 356255.010899998247623, 257403.450500000268221 ], [ 356255.845399998128414, 257414.680799998342991 ], [ 356258.399400003254414, 257449.050700001418591 ], [ 356272.952600002288818, 257444.525800000876188 ], [ 356281.062399998307228, 257439.103700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96384654000001, "LATITUDE": 18.34652445, "OBJECTID_1": 7451, "PARCEL_NO_": "105201011800", "Tax_Legal_": "178 CONTANT 7A SOUTHSIDE QUARTER", "Name": "BERRY, GLADYS F. & CHILDREN", "Address": "BOX 3632", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 114900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.93765415, "SHAPE_Area": 598.704683284 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355333.787399999797344, 257414.674300000071526 ], [ 355316.836800001561642, 257416.646499998867512 ], [ 355305.615000002086163, 257408.744199998676777 ], [ 355300.753700003027916, 257411.448600001633167 ], [ 355303.061200000345707, 257424.555300001055002 ], [ 355316.631800003349781, 257440.709499999880791 ], [ 355320.677799999713898, 257439.053899999707937 ], [ 355329.628100000321865, 257429.627900000661612 ], [ 355332.07940000295639, 257425.848299998790026 ], [ 355333.787399999797344, 257414.674300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201080600", "MAP": "D9-205-T59", "PARCEL_NAM": "105", "ACRE": ".54", "LONGITUDE": -64.95777273, "LATITUDE": 18.34637741, "OBJECTID_1": 7889, "PARCEL_NO_": "105201080600", "Tax_Legal_": "CONTANT 105 7A SOUTHSIDE QTR", "Name": "YEE, DARLENE E. & KENSOON", "Address": "9663 Santa Monica Blvd", "City": "Beverly Hills", "State": "California", "Zip": 90210, "Country": "United States", "Land_Value": 49800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.91624923199998, "SHAPE_Area": 1937.89516678 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355931.57599999755621, 257383.047699999064207 ], [ 355934.427199997007847, 257426.978500001132488 ], [ 355941.693000003695488, 257425.982500001788139 ], [ 355951.35980000346899, 257427.11710000038147 ], [ 355962.619400002062321, 257430.586800001561642 ], [ 355989.130599997937679, 257442.202799998223782 ], [ 356000.39919999986887, 257444.61710000038147 ], [ 356006.041599996387959, 257444.874299999326468 ], [ 356014.923600003123283, 257443.469399999827147 ], [ 356024.633500002324581, 257439.538100000470877 ], [ 356024.655100002884865, 257437.005100000649691 ], [ 356020.618100002408028, 257437.605399999767542 ], [ 356011.734300002455711, 257439.221400000154972 ], [ 355999.641400001943111, 257438.911299999803305 ], [ 355994.00620000064373, 257437.80970000103116 ], [ 355984.369999997317791, 257433.086800001561642 ], [ 355978.769000001251698, 257427.974700000137091 ], [ 355974.001199997961521, 257419.703099999576807 ], [ 355965.365599997341633, 257392.190200001001358 ], [ 355963.765500001609325, 257390.699499998241663 ], [ 355958.159100003540516, 257386.220600001513958 ], [ 355947.698600001633167, 257383.60190000012517 ], [ 355931.57599999755621, 257383.047699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95027099000001, "LATITUDE": 18.34652035, "OBJECTID_1": 8207, "PARCEL_NO_": "105202032100", "Tax_Legal_": "UPPER JOHN DUNKO 61 LITTLE NORTHSIDE QTR", "Name": "MADURO, JR., GLEN N.", "Address": "PO Box 11512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36300, "Improved_V": 263000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.34606785400001, "SHAPE_Area": 1494.508253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356770.695500001311302, 257419.468600001186132 ], [ 356719.057300001382828, 257423.056800000369549 ], [ 356729.327200002968311, 257448.049899999052286 ], [ 356780.916799999773502, 257450.160900000482798 ], [ 356780.187799997627735, 257441.077899999916553 ], [ 356777.034500002861023, 257432.608300000429153 ], [ 356775.472199998795986, 257426.684900000691414 ], [ 356770.695500001311302, 257419.468600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043700", "MAP": "A9-465-T95", "PARCEL_NAM": "107-7-2", "ACRE": ".23", "LONGITUDE": -64.95546626, "LATITUDE": 18.34641694, "OBJECTID_1": 3575, "PARCEL_NO_": "102704043700", "Tax_Legal_": "PAR 107-8-4 CONTANT 7B SOUTHSIDE QTR", "Name": "JUSTGREG INC", "Address": "8000 NISKY SHOPPING CENTER, STE. 78, PMB 70", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.32943394899999, "SHAPE_Area": 1007.07911773 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356211.964100003242493, 257409.8293999992311 ], [ 356210.379100002348423, 257386.393699999898672 ], [ 356204.564400002360344, 257390.195599999278784 ], [ 356200.140900000929832, 257394.840300001204014 ], [ 356197.265600003302097, 257398.379099998623133 ], [ 356191.957299999892712, 257404.350900001823902 ], [ 356191.532999999821186, 257441.748399998992682 ], [ 356213.274700000882149, 257445.303899999707937 ], [ 356211.964100003242493, 257409.8293999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043700", "MAP": "A9-465-T95", "PARCEL_NAM": "107-7-1", "ACRE": ".23", "LONGITUDE": -64.95568257, "LATITUDE": 18.34651474, "OBJECTID_1": 3575, "PARCEL_NO_": "102704043700", "Tax_Legal_": "PAR 107-8-4 CONTANT 7B SOUTHSIDE QTR", "Name": "JUSTGREG INC", "Address": "8000 NISKY SHOPPING CENTER, STE. 78, PMB 70", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.60786491100001, "SHAPE_Area": 659.74650968699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356191.532999999821186, 257441.748399998992682 ], [ 356191.957299999892712, 257404.350900001823902 ], [ 356181.340899996459484, 257415.409699998795986 ], [ 356162.098499998450279, 257437.969700001180172 ], [ 356156.347900003194809, 257446.595600001513958 ], [ 356177.829300001263618, 257441.214099999517202 ], [ 356191.532999999821186, 257441.748399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95141179, "LATITUDE": 18.3463345, "OBJECTID_1": 8211, "PARCEL_NO_": "105202032500", "Tax_Legal_": "54 ESTATE UPPER JOHN DUNKO No.3A LITTLE NORTHSIDE QTR.", "Name": "GREGOIRE, STEPHEN & ZISKA", "Address": "PO Box 502486", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 65500, "Improved_V": 194600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.18343715500001, "SHAPE_Area": 3085.4338783399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356650.869599997997284, 257381.546500001102686 ], [ 356644.624099999666214, 257357.430799998342991 ], [ 356593.175499998033047, 257433.425500001758337 ], [ 356611.634400002658367, 257443.709100000560284 ], [ 356620.47860000282526, 257446.736800000071526 ], [ 356628.53999999910593, 257447.013900000602007 ], [ 356646.318400003015995, 257442.515299998223782 ], [ 356656.802299998700619, 257442.390000000596046 ], [ 356650.869599997997284, 257381.546500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96325198, "LATITUDE": 18.34643251, "OBJECTID_1": 7487, "PARCEL_NO_": "105201021000", "Tax_Legal_": "CONTANT 196 7A SOUTHSIDE QTR", "Name": "LEWIS, EMILE & DELPHINE", "Address": "PO BOX 3524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16000, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.653611204, "SHAPE_Area": 953.31575506599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355366.138800002634525, 257403.328899998217821 ], [ 355361.444700002670288, 257416.340500000864267 ], [ 355370.708700001239777, 257434.819299999624491 ], [ 355399.867200002074242, 257419.64809999987483 ], [ 355396.744499996304512, 257407.590199999511242 ], [ 355393.571400001645088, 257401.442499998956919 ], [ 355387.145999997854233, 257398.434599999338388 ], [ 355378.287399999797344, 257397.095600001513958 ], [ 355373.438699997961521, 257398.322399999946356 ], [ 355366.138800002634525, 257403.328899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010400", "MAP": "A3-112-T71", "PARCEL_NAM": "66", "ACRE": null, "LONGITUDE": -64.97149081000001, "LATITUDE": 18.34251182, "OBJECTID_1": 7430, "PARCEL_NO_": "105104010400", "Tax_Legal_": "LINDBERG BAY 66 4A SOUTHSIDE QTR", "Name": "UNIVERSITY OF THE VI", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4941000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4330.59025587, "SHAPE_Area": 286846.42653400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354743.65259999781847, 257115.791000001132488 ], [ 354759.0641999989748, 257105.151399999856949 ], [ 354774.513599999248981, 257090.079100001603365 ], [ 354781.846000000834465, 257081.273200001567602 ], [ 354786.750399999320507, 257073.502900000661612 ], [ 354792.479099996387959, 257063.628299999982119 ], [ 354794.12049999833107, 257060.264299999922514 ], [ 354800.752599999308586, 257038.998100001364946 ], [ 354816.055600002408028, 256946.453299999237061 ], [ 354819.412100002169609, 256931.070900000631809 ], [ 354828.52250000089407, 256902.859000001102686 ], [ 354838.383500002324581, 256881.197000000625849 ], [ 354869.426100000739098, 256834.16609999909997 ], [ 354871.049599997699261, 256832.912900000810623 ], [ 354871.875699996948242, 256830.597600001841784 ], [ 354873.497299998998642, 256829.555399999022484 ], [ 354875.138700000941753, 256826.191300000995398 ], [ 354882.469200000166893, 256817.596500001847744 ], [ 354884.924099996685982, 256813.39469999819994 ], [ 354920.739900000393391, 256774.002300001680851 ], [ 354934.578500002622604, 256758.705699998885393 ], [ 354940.298199996352196, 256749.886599998921156 ], [ 354944.374700002372265, 256744.642599999904633 ], [ 354955.844700001180172, 256723.416000001132488 ], [ 354960.790500000119209, 256710.790899999439716 ], [ 354961.668700002133846, 256702.354299999773502 ], [ 354960.875, 256700.870200000703335 ], [ 354955.26860000193119, 256696.39130000025034 ], [ 354949.629799999296665, 256695.711899999529123 ], [ 354943.164200000464916, 256697.347899999469519 ], [ 354937.720399998128414, 256734.211599998176098 ], [ 354934.545299999415874, 256745.218299999833107 ], [ 354924.597000002861023, 256759.399999998509884 ], [ 354911.99549999833107, 256775.302499998360872 ], [ 354892.481200002133846, 256778.203899998217821 ], [ 354883.318099997937679, 256754.328499998897314 ], [ 354876.394299998879433, 256707.281300000846386 ], [ 354808.377599999308586, 256711.865499999374151 ], [ 354567.26860000193119, 256712.425299998372793 ], [ 354558.37219999730587, 256715.518899999558926 ], [ 354553.498400002717972, 256719.700800001621246 ], [ 354549.407499998807907, 256726.633400000631809 ], [ 354547.584499999880791, 256751.316500000655651 ], [ 354545.0253000035882, 256767.760800000280142 ], [ 354541.69030000269413, 256780.610199999064207 ], [ 354534.242899999022484, 256802.925200000405312 ], [ 354534.223099999129772, 256805.247099999338388 ], [ 354531.753799997270107, 256811.137499999254942 ], [ 354527.547899998724461, 256831.579100001603365 ], [ 354526.67679999768734, 256839.171399999409914 ], [ 354527.543200001120567, 256926.782299999147654 ], [ 354526.314300000667572, 256976.379200000315905 ], [ 354522.74379999935627, 257016.879900000989437 ], [ 354518.575599998235703, 257032.888900000602007 ], [ 354514.454099997878075, 257043.40989999845624 ], [ 354509.576700001955032, 257048.013999998569489 ], [ 354502.301899999380112, 257050.065400000661612 ], [ 354493.430600002408028, 257050.203899998217821 ], [ 354487.012500002980232, 257046.351700000464916 ], [ 354483.015100002288818, 257042.308200001716614 ], [ 354481.43129999935627, 257038.917700000107288 ], [ 354477.624499998986721, 257012.499899998307228 ], [ 354472.212200000882149, 256985.224500000476837 ], [ 354468.30120000243187, 256971.049199998378754 ], [ 354464.330700002610683, 256963.839600000530481 ], [ 354463.549599997699261, 256960.877900000661612 ], [ 354456.379100002348423, 256950.686700001358986 ], [ 354444.379699997603893, 256939.400499999523163 ], [ 354430.735299997031689, 256931.900600001215935 ], [ 354424.30460000038147, 256929.52589999884367 ], [ 354412.217100001871586, 256928.582600001245737 ], [ 354398.49719999730587, 256929.947999998927116 ], [ 354370.18639999628067, 256940.270899999886751 ], [ 354353.988200001418591, 256948.582100000232458 ], [ 354341.8108000010252, 256958.192699998617172 ], [ 354329.604599997401237, 256971.180599998682737 ], [ 354320.616499997675419, 256985.039200000464916 ], [ 354315.679700002074242, 256996.609000001102686 ], [ 354312.359200000762939, 257007.769799999892712 ], [ 354310.663800001144409, 257017.4662000015378 ], [ 354310.613499999046326, 257023.376400001347065 ], [ 354311.142899997532368, 257055.88910000026226 ], [ 354320.433799996972084, 257101.139199998229742 ], [ 354320.403300002217293, 257104.727600000798702 ], [ 354311.517599999904633, 257106.554699998348951 ], [ 354310.77250000089407, 257099.371399998664856 ], [ 354302.2483000010252, 257058.771699998527765 ], [ 354300.939499996602535, 257023.086100000888109 ], [ 354305.174300000071526, 256999.267200000584126 ], [ 354308.478699997067451, 256990.00620000064373 ], [ 354319.131599999964237, 256970.039500001817942 ], [ 354333.792599998414516, 256952.849800001829863 ], [ 354346.781700000166893, 256942.612500000745058 ], [ 354363.796999998390675, 256933.041499998420477 ], [ 354388.875399999320507, 256923.536400001496077 ], [ 354406.646700002253056, 256919.882199998944998 ], [ 354426.79730000346899, 256920.891499999910593 ], [ 354442.864200003445148, 256927.989100001752377 ], [ 354454.890600003302097, 256936.109000001102686 ], [ 354463.675499998033047, 256946.102299999445677 ], [ 354473.237899996340275, 256959.479499999433756 ], [ 354479.546400003135204, 256976.207499999552965 ], [ 354485.743299998342991, 257006.022399999201298 ], [ 354490.320500001311302, 257036.668499998748302 ], [ 354492.714199997484684, 257039.643399998545647 ], [ 354497.534100003540516, 257041.793699998408556 ], [ 354502.375600002706051, 257041.411200001835823 ], [ 354505.616999998688698, 257039.537900000810623 ], [ 354508.062899999320507, 257036.391499999910593 ], [ 354512.215000003576279, 257022.282200001180172 ], [ 354514.761600002646446, 257007.315400000661612 ], [ 354516.552199997007847, 256986.431800000369549 ], [ 354518.625200003385544, 256932.4087999984622 ], [ 354516.875200003385544, 256853.86769999936223 ], [ 354517.836099997162819, 256835.721500001847744 ], [ 354522.070900000631809, 256811.90260000154376 ], [ 354532.822700001299381, 256780.32660000026226 ], [ 354536.173799999058247, 256765.577399998903275 ], [ 354538.749200001358986, 256747.233399998396635 ], [ 354539.699400000274181, 256730.353700000792742 ], [ 354538.925399996340275, 256726.547600001096725 ], [ 354537.336199998855591, 256723.790399998426437 ], [ 354532.537900000810623, 256719.107099998742342 ], [ 354525.28999999910593, 256717.992300000041723 ], [ 354393.618400000035763, 256745.412300001829863 ], [ 354374.223700001835823, 256750.31980000063777 ], [ 354354.006499998271465, 256757.120400000363588 ], [ 354331.348899997770786, 256766.434200000017881 ], [ 354304.623700000345707, 256779.936500001698732 ], [ 354248.702200002968311, 256813.042700000107288 ], [ 354221.116800002753735, 256832.870799999684095 ], [ 354209.738499999046326, 256843.332400001585484 ], [ 354208.12049999833107, 256843.952399998903275 ], [ 354201.612400002777576, 256850.654100000858307 ], [ 354167.418200001120567, 256889.004399999976158 ], [ 354354.758599996566772, 257426.081999998539686 ], [ 354392.793700002133846, 257410.13910000026226 ], [ 354431.590199999511242, 257399.479800000786781 ], [ 354459.062399998307228, 257392.949599999934435 ], [ 354463.648199997842312, 257138.61939999833703 ], [ 354705.586800001561642, 257135.322299998253584 ], [ 354743.65259999781847, 257115.791000001132488 ] ] ], [ [ [ 354250.411899998784065, 256801.657600000500679 ], [ 354232.67849999666214, 256800.879200000315905 ], [ 354202.787399999797344, 256807.389600001275539 ], [ 354196.309900000691414, 256810.502999998629093 ], [ 354191.437799997627735, 256814.473900001496077 ], [ 354186.544200003147125, 256820.977699998766184 ], [ 354179.127400003373623, 256839.704300001263618 ], [ 354181.479800000786781, 256847.534000001847744 ], [ 354188.722199998795986, 256849.2820999994874 ], [ 354191.1537000015378, 256847.824299998581409 ], [ 354215.535499997437, 256825.436900001019239 ], [ 354234.201200000941753, 256811.446400001645088 ], [ 354250.411899998784065, 256801.657600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301071300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94855471, "LATITUDE": 18.34645178, "OBJECTID_1": 9231, "PARCEL_NO_": "105301071300", "Tax_Legal_": "SOLBERG 79-10 LITTLE NORTHSIDE", "Name": "SCOTLAND, JOSEPHINE", "Address": "PO Box 305712", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36500, "Improved_V": 240600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.93578571500001, "SHAPE_Area": 1856.5361261600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356969.867299996316433, 257419.621100001037121 ], [ 356898.161200001835823, 257412.490299999713898 ], [ 356897.293799996376038, 257419.660399999469519 ], [ 356897.176899999380112, 257433.380499999970198 ], [ 356932.539499998092651, 257447.179900001734495 ], [ 356947.085500001907349, 257443.499299999326468 ], [ 356971.327100001275539, 257437.5760000012815 ], [ 356969.867299996316433, 257419.621100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201080500", "MAP": "D9-205-T59", "PARCEL_NAM": "104", "ACRE": ".54", "LONGITUDE": -64.95821376000001, "LATITUDE": 18.34634176, "OBJECTID_1": 7888, "PARCEL_NO_": "105201080500", "Tax_Legal_": "CONTANT 104 7A SOUTHSIDE QTR", "Name": "YEE, DARLENE E. & KENSOON", "Address": "9663 Santa Monica Blvd", "City": "Beverly Hills", "State": "California", "Zip": 90210, "Country": "United States", "Land_Value": 49800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.310120434, "SHAPE_Area": 1842.57955111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355931.57599999755621, 257383.047699999064207 ], [ 355889.586599998176098, 257389.881299998611212 ], [ 355894.840599998831749, 257435.731600001454353 ], [ 355919.893799997866154, 257429.181600000709295 ], [ 355934.427199997007847, 257426.978500001132488 ], [ 355931.57599999755621, 257383.047699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202018100", "MAP": "A9-465-T95", "PARCEL_NAM": "107-8-2", "ACRE": "0.23", "LONGITUDE": -64.95463257, "LATITUDE": 18.34638036, "OBJECTID_1": 8087, "PARCEL_NO_": "105202018100", "Tax_Legal_": "107-8-2 CONTANT 7B SOUTHSIDE QTR.", "Name": "ALMESTICA, KAREN", "Address": "4510 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.772998907, "SHAPE_Area": 721.93638119000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356302.958800002932549, 257424.506400000303984 ], [ 356302.369999997317791, 257398.959199998527765 ], [ 356279.784299999475479, 257399.829799998551607 ], [ 356280.488099999725819, 257411.867899999022484 ], [ 356281.062399998307228, 257439.103700000792742 ], [ 356302.958800002932549, 257424.506400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201019000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96507615, "LATITUDE": 18.34650505, "OBJECTID_1": 7476, "PARCEL_NO_": "105201019000", "Tax_Legal_": "LINDBERG BAY 33C S.S. QTR.", "Name": "PETERSEN, YVONNE", "Address": "TOWERS CONDOS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.477890470299997, "SHAPE_Area": 126.37911933399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355187.70269999653101, 257430.155099999159575 ], [ 355195.875600002706051, 257417.345300000160933 ], [ 355176.542000003159046, 257415.076099999248981 ], [ 355183.726899996399879, 257423.578600000590086 ], [ 355187.70269999653101, 257430.155099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202018200", "MAP": "A9-465-T95", "PARCEL_NAM": "107-8-3", "ACRE": "0.23", "LONGITUDE": -64.95440017, "LATITUDE": 18.34631854, "OBJECTID_1": 8088, "PARCEL_NO_": "105202018200", "Tax_Legal_": "CONTANT 107-8-3 7B SOUTHSIDE", "Name": "WALWYN, ORAL O. & MARJORIE M", "Address": "4337 MONTREAUX AUF", "City": "Melbourne", "State": "Florida", "Zip": 32934, "Country": "United States", "Land_Value": 26700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.902061847, "SHAPE_Area": 1012.47675005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356326.658299997448921, 257387.547899998724461 ], [ 356302.45269999653101, 257389.249600000679493 ], [ 356302.369999997317791, 257398.959199998527765 ], [ 356302.958800002932549, 257424.506400000303984 ], [ 356306.99210000038147, 257424.328299999237061 ], [ 356311.009300000965595, 257426.049899999052286 ], [ 356313.403099998831749, 257429.02479999884963 ], [ 356317.351899996399879, 257438.767400000244379 ], [ 356327.961599998176098, 257423.866599999368191 ], [ 356326.658299997448921, 257387.547899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9539479, "LATITUDE": 18.34624465, "OBJECTID_1": 8058, "PARCEL_NO_": "105202015200", "Tax_Legal_": "CONTANT 11 1 A SOUTHSIDE QTR", "Name": "KING, LILLIA", "Address": "BOX 5079", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63600, "Improved_V": 274400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.15098730899999, "SHAPE_Area": 2372.5177313200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356332.329499997198582, 257384.42790000140667 ], [ 356333.112400002777576, 257387.17850000038743 ], [ 356344.9391999989748, 257418.728199999779463 ], [ 356348.10869999974966, 257425.298099998384714 ], [ 356346.400700002908707, 257436.472100000828505 ], [ 356396.62049999833107, 257410.074200000613928 ], [ 356396.645599998533726, 257407.119100000709295 ], [ 356390.311999998986721, 257393.346200000494719 ], [ 356385.533500000834465, 257386.340999998152256 ], [ 356371.102600000798702, 257376.512600000947714 ], [ 356363.064599998295307, 257373.491500001400709 ], [ 356332.329499997198582, 257384.42790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96242902, "LATITUDE": 18.3464052, "OBJECTID_1": 7482, "PARCEL_NO_": "105201020400", "Tax_Legal_": "CONTANT 187 7A SOUTHSIDE QTR", "Name": "HANBY, R. & JOSEPH, A", "Address": "PO Box 592", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 14300, "Improved_V": 77400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.558367649, "SHAPE_Area": 667.46766374000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355475.870999999344349, 257395.572200000286102 ], [ 355449.975500002503395, 257406.337099999189377 ], [ 355457.043499998748302, 257428.559799998998642 ], [ 355483.74889999628067, 257417.379299998283386 ], [ 355477.460199996829033, 257398.3293999992311 ], [ 355475.870999999344349, 257395.572200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96418175, "LATITUDE": 18.34642489, "OBJECTID_1": 7447, "PARCEL_NO_": "105201011400", "Tax_Legal_": "181 CONTANT No. 7A SOUTHSIDE QTR", "Name": "Estate of Andromena Abramsen", "Address": "PO Box 23", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13900, "Improved_V": 100500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.493070304499994, "SHAPE_Area": 576.83300681200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355291.839299999177456, 257416.653000000864267 ], [ 355296.799500003457069, 257402.339299999177456 ], [ 355291.169699996709824, 257400.604400001466274 ], [ 355272.635300002992153, 257399.186200000345707 ], [ 355271.73369999974966, 257410.366700001060963 ], [ 355269.255400002002716, 257417.312600001692772 ], [ 355266.003200002014637, 257420.452300000935793 ], [ 355266.777099996805191, 257424.258400000631809 ], [ 355288.53320000320673, 257426.125199999660254 ], [ 355291.839299999177456, 257416.653000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301071700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94799905000001, "LATITUDE": 18.34633571, "OBJECTID_1": 9235, "PARCEL_NO_": "105301071700", "Tax_Legal_": "SOLBERG 79-11 S S QTR", "Name": "AL & ROLAND JAMES FAMILY TRUST", "Address": "PO Box 307817", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41700, "Improved_V": 328600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.66894377099999, "SHAPE_Area": 1483.7811405 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357027.214400000870228, 257408.48030000180006 ], [ 356968.445299997925758, 257397.233600001782179 ], [ 356969.867299996316433, 257419.621100001037121 ], [ 356971.327100001275539, 257437.5760000012815 ], [ 357012.538900002837181, 257427.358600001782179 ], [ 357025.587399996817112, 257410.155799999833107 ], [ 357027.214400000870228, 257408.48030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202020400", "MAP": "D9-4465-T88", "PARCEL_NAM": "125-B", "ACRE": ".60", "LONGITUDE": -64.95710676, "LATITUDE": 18.34618268, "OBJECTID_1": 8095, "PARCEL_NO_": "105202020400", "Tax_Legal_": "CONTANT 125-B 7A SOUTHSIDE", "Name": "HODGE, URIEL CLEOPHAS", "Address": "PO Box 306962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53800, "Improved_V": 239600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.57982507200001, "SHAPE_Area": 2943.2313422900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356030.424099996685982, 257359.223299998790026 ], [ 356015.600400000810623, 257358.326799999922514 ], [ 356012.049099996685982, 257374.271499998867512 ], [ 355999.720499999821186, 257429.6239 ], [ 356008.586400002241135, 257430.118599999696016 ], [ 356015.047700002789497, 257428.904899999499321 ], [ 356025.545900002121925, 257427.090999998152256 ], [ 356033.610799998044968, 257426.945900000631809 ], [ 356035.029100000858307, 257426.525499999523163 ], [ 356066.183799996972084, 257361.385800000280142 ], [ 356031.535300001502037, 257359.290500000119209 ], [ 356030.424099996685982, 257359.223299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96283835, "LATITUDE": 18.34635142, "OBJECTID_1": 7485, "PARCEL_NO_": "105201020800", "Tax_Legal_": "189 CONTANT 7A SOUTHSIDE QUARTER", "Name": "CARBON, MONICA WILLIAMS", "Address": "PO BOX 304502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15700, "Improved_V": 88800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.123477702, "SHAPE_Area": 754.020303786 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355436.419200003147125, 257388.494300000369549 ], [ 355404.859700001776218, 257401.53489999845624 ], [ 355410.322300001978874, 257422.900100000202656 ], [ 355442.691699996590614, 257409.443900000303984 ], [ 355436.419200003147125, 257388.494300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202015700", "MAP": "A9-19-T63", "PARCEL_NAM": "11", "ACRE": null, "LONGITUDE": -64.95332803, "LATITUDE": 18.34630331, "OBJECTID_1": 8063, "PARCEL_NO_": "105202015700", "Tax_Legal_": "UPPER JOHN DUNKO 11 LITTLE NORTHSIDE", "Name": "TURNBULL, CHARLES WESLEY", "Address": "PO Box 302265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.18036436599999, "SHAPE_Area": 1124.0493844600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356453.056900002062321, 257411.169399999082088 ], [ 356446.015900000929832, 257385.780499998480082 ], [ 356434.675399996340275, 257391.809399999678135 ], [ 356405.515100002288818, 257407.191700000315905 ], [ 356407.028800003230572, 257418.8141999989748 ], [ 356406.931699998676777, 257430.212499998509884 ], [ 356453.056900002062321, 257411.169399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201019200", "MAP": "A9-661-T006", "PARCEL_NAM": "33B-1", "ACRE": null, "LONGITUDE": -64.96508541, "LATITUDE": 18.34629292, "OBJECTID_1": 7478, "PARCEL_NO_": "105201019200", "Tax_Legal_": "LINDBERG BAY 33B SOUTHSIDE QTR", "Name": "CARTY, RUDOLPH & MICHELLE", "Address": "PO Box 605", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59100, "Improved_V": 111700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.672753712, "SHAPE_Area": 768.82816016699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355195.317400000989437, 257388.209800001233816 ], [ 355194.660300001502037, 257370.683600001037121 ], [ 355185.781900003552437, 257371.666400000452995 ], [ 355184.057800002396107, 257384.740100000053644 ], [ 355179.98309999704361, 257389.772999998182058 ], [ 355174.308300003409386, 257393.315200001001358 ], [ 355171.858800001442432, 257396.883699998259544 ], [ 355172.604000002145767, 257404.06700000166893 ], [ 355176.542000003159046, 257415.076099999248981 ], [ 355195.875600002706051, 257417.345300000160933 ], [ 355195.317400000989437, 257388.209800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96381593, "LATITUDE": 18.34634623, "OBJECTID_1": 7452, "PARCEL_NO_": "105201011900", "Tax_Legal_": "CONTANT 177 7A SOUTHSIDE QTR", "Name": "ROLLINS, MELSON & M", "Address": "BOX 4108", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10200, "Improved_V": 85800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.468877403700006, "SHAPE_Area": 555.98162595099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355329.145499996840954, 257391.627099998295307 ], [ 355308.971500001847744, 257393.361900001764297 ], [ 355305.615000002086163, 257408.744199998676777 ], [ 355316.836800001561642, 257416.646499998867512 ], [ 355333.787399999797344, 257414.674300000071526 ], [ 355333.839500002563, 257408.552999999374151 ], [ 355329.145499996840954, 257391.627099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201019200", "MAP": "A9-661-T006", "PARCEL_NAM": "33B", "ACRE": ".418", "LONGITUDE": -64.96530662000001, "LATITUDE": 18.34616562, "OBJECTID_1": 7478, "PARCEL_NO_": "105201019200", "Tax_Legal_": "LINDBERG BAY 33B SOUTHSIDE QTR", "Name": "CARTY, RUDOLPH & MICHELLE", "Address": "PO Box 605", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59100, "Improved_V": 111700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.11348095899999, "SHAPE_Area": 1308.1273604600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355179.442900002002716, 257358.526799999177456 ], [ 355147.138199999928474, 257364.384100001305342 ], [ 355149.991300001740456, 257408.103799998760223 ], [ 355166.873499996960163, 257414.15260000154376 ], [ 355170.903200000524521, 257414.396699998527765 ], [ 355167.73369999974966, 257407.826799999922514 ], [ 355167.026299998164177, 257396.210900001227856 ], [ 355170.298299998044968, 257390.749200001358986 ], [ 355176.784800000488758, 257386.580400001257658 ], [ 355179.227099999785423, 257383.856199998408556 ], [ 355181.721600003540516, 257375.01069999858737 ], [ 355179.442900002002716, 257358.526799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032200", "MAP": "G9-1084-T68", "PARCEL_NAM": "62", "ACRE": ".162", "LONGITUDE": -64.95031314000001, "LATITUDE": 18.34630904, "OBJECTID_1": 8208, "PARCEL_NO_": "105202032200", "Tax_Legal_": "62 UPPER JOHN DUNKO NO. 3A LITTLE NORTHSIDE QUARTER", "Name": "HODGE, LAWRENCE & MARIA TANKERSON", "Address": "1340 Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12900, "Improved_V": 90600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.12178154399999, "SHAPE_Area": 868.14144844199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356762.858999997377396, 257392.806699998676777 ], [ 356716.688799999654293, 257417.126800000667572 ], [ 356719.057300001382828, 257423.056800000369549 ], [ 356770.695500001311302, 257419.468600001186132 ], [ 356762.858999997377396, 257392.806699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202036900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95218011, "LATITUDE": 18.34617595, "OBJECTID_1": 8227, "PARCEL_NO_": "105202036900", "Tax_Legal_": "UPPER JOHN DUNKO 50 LITTLE NORTHSIDE 3A", "Name": "RODNEY, RUSPHILLE", "Address": "PO Box 307894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.91667662500001, "SHAPE_Area": 1102.3473182099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356552.546300001442432, 257375.253400001674891 ], [ 356529.118299998342991, 257380.339000001549721 ], [ 356533.8445999994874, 257393.465500000864267 ], [ 356544.101899996399879, 257419.936099998652935 ], [ 356574.113499999046326, 257399.283500000834465 ], [ 356568.544799998402596, 257390.372000001370907 ], [ 356559.743699997663498, 257382.278400000184774 ], [ 356554.110299997031689, 257380.965700000524521 ], [ 356552.546300001442432, 257375.253400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201013100", "MAP": "D9-5563-T93", "PARCEL_NAM": "33E", "ACRE": null, "LONGITUDE": -64.96557495, "LATITUDE": 18.34619453, "OBJECTID_1": 7464, "PARCEL_NO_": "105201013100", "Tax_Legal_": "LINDBERG BAY ESTATE 33E 4A SOUTHSIDE QTR", "Name": "PETERSEN, CARL O", "Address": "1513 Sagebrush Ranch Way", "City": "North Las Vegas", "State": "Nevada", "Zip": 89086, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.054831323, "SHAPE_Area": 1116.98750227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355143.099500000476837, 257365.19539999961853 ], [ 355138.254399999976158, 257366.000100001692772 ], [ 355118.062399998307228, 257369.845600001513958 ], [ 355119.408900000154972, 257401.098499998450279 ], [ 355149.991300001740456, 257408.103799998760223 ], [ 355147.138199999928474, 257364.384100001305342 ], [ 355143.099500000476837, 257365.19539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202016400", "MAP": "A9-683-T006", "PARCEL_NAM": "39 REM", "ACRE": ".355", "LONGITUDE": -64.95294809000001, "LATITUDE": 18.34611824, "OBJECTID_1": 8070, "PARCEL_NO_": "105202016400", "Tax_Legal_": "UPPER JOHN DUNKO 39 3A LITTLE NORTHSIDE", "Name": "LAWRENCE, ROSY & JOSEPH C.", "Address": "9053 1st Ave", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.85239339099999, "SHAPE_Area": 975.79931703499994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356453.056900002062321, 257411.169399999082088 ], [ 356455.007100000977516, 257400.695099998265505 ], [ 356463.295900002121925, 257397.790500000119209 ], [ 356470.997800000011921, 257402.222699999809265 ], [ 356491.121799997985363, 257396.489199999719858 ], [ 356487.175599999725819, 257381.684399999678135 ], [ 356485.57379999756813, 257380.404800001531839 ], [ 356479.223999999463558, 257368.531599998474121 ], [ 356446.015900000929832, 257385.780499998480082 ], [ 356453.056900002062321, 257411.169399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202082200", "MAP": "A9-608-T003", "PARCEL_NAM": "107-8-8", "ACRE": "0.27", "LONGITUDE": -64.95518727, "LATITUDE": 18.34614186, "OBJECTID_1": 8464, "PARCEL_NO_": "105202082200", "Tax_Legal_": "107-8-8 CONTANT No.7B SOUTHSIDE QUARTER", "Name": "RICHARDSON-ROGERS, SHERIE-ANN V.", "Address": "PO BOX 6754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1200, "Improved_V": 172600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.99391505, "SHAPE_Area": 845.40493768 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356216.69539999961853, 257397.66499999910593 ], [ 356233.069499999284744, 257399.957400001585484 ], [ 356242.457400001585484, 257401.0489999987185 ], [ 356255.010899998247623, 257403.450500000268221 ], [ 356254.574299998581409, 257400.28489999845624 ], [ 356243.65820000320673, 257379.871700000017881 ], [ 356238.399499997496605, 257368.815499998629093 ], [ 356232.432599999010563, 257374.270899999886751 ], [ 356216.065600000321865, 257382.675599999725819 ], [ 356210.379100002348423, 257386.393699999898672 ], [ 356210.645099997520447, 257390.325699999928474 ], [ 356211.104099996387959, 257397.113400001078844 ], [ 356216.69539999961853, 257397.66499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301071400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94854848, "LATITUDE": 18.34622635, "OBJECTID_1": 9232, "PARCEL_NO_": "105301071400", "Tax_Legal_": "79-9 SOLBERG LITTLE NORTHSIDE QTR", "Name": "CAINES, THOMAS & GEORGETTA CAINES HAMILTON", "Address": "PO Box 305472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 483100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.59840850200001, "SHAPE_Area": 1671.0105284199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356968.445299997925758, 257397.233600001782179 ], [ 356904.028399996459484, 257386.362700000405312 ], [ 356898.161200001835823, 257412.490299999713898 ], [ 356969.867299996316433, 257419.621100001037121 ], [ 356968.445299997925758, 257397.233600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202037400", "MAP": "G9-1084-T68", "PARCEL_NAM": "62A", "ACRE": ".162", "LONGITUDE": -64.95040749, "LATITUDE": 18.34619185, "OBJECTID_1": 8232, "PARCEL_NO_": "105202037400", "Tax_Legal_": "UPPER JOHN DUNKO 62A 3 LITTLE NORTHSIDE", "Name": "HODGE, LAWRENCE & MARIA", "Address": "BOX 4511", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.58702339199999, "SHAPE_Area": 698.27689645500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356758.130800001323223, 257379.89130000025034 ], [ 356711.955200001597404, 257404.8445999994874 ], [ 356716.688799999654293, 257417.126800000667572 ], [ 356762.858999997377396, 257392.806699998676777 ], [ 356758.130800001323223, 257379.89130000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96249692000001, "LATITUDE": 18.34621276, "OBJECTID_1": 7481, "PARCEL_NO_": "105201020300", "Tax_Legal_": "CONTANT 186 7A SOUTHSIDE QTR", "Name": "WARNER, VINCENT A. & DORIS E. (CO-TRUSTEES)", "Address": "PO BOX 304226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14300, "Improved_V": 118700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.421480378699997, "SHAPE_Area": 604.57603873999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355469.596699997782707, 257374.833700001239777 ], [ 355443.701200000941753, 257385.598600000143051 ], [ 355449.975500002503395, 257406.337099999189377 ], [ 355475.870999999344349, 257395.572200000286102 ], [ 355469.596699997782707, 257374.833700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96290457000001, "LATITUDE": 18.34614657, "OBJECTID_1": 7484, "PARCEL_NO_": "105201020700", "Tax_Legal_": "CONTANT 190 7A SOUTHSIDE QTR", "Name": "BENJAMIN (LIFE ESTATE), JUANITO & PHYLLIS", "Address": "PO Box 385", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15700, "Improved_V": 180400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.398170146, "SHAPE_Area": 841.84395490700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355404.859700001776218, 257401.53489999845624 ], [ 355436.419200003147125, 257388.494300000369549 ], [ 355432.491899996995926, 257376.218800000846386 ], [ 355427.706200003623962, 257370.057900000363588 ], [ 355422.089000001549721, 257366.845499999821186 ], [ 355414.033100001513958, 257365.935199998319149 ], [ 355408.352899998426437, 257370.110599998384714 ], [ 355404.281800001859665, 257374.7212999984622 ], [ 355400.181900002062321, 257382.709300000220537 ], [ 355400.131499998271465, 257388.619500000029802 ], [ 355401.726199999451637, 257390.743500001728535 ], [ 355404.859700001776218, 257401.53489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301080200", "MAP": "A9-141-T70", "PARCEL_NAM": "79-20 & 82", "ACRE": "0.30", "LONGITUDE": -64.94681064, "LATITUDE": 18.34612486, "OBJECTID_1": 9252, "PARCEL_NO_": "105301080200", "Tax_Legal_": "SOLBERG 79-20&82 LITTLE NORTHSIDE", "Name": "WHITE, NATALIE E", "Address": "PO Box 8859", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46100, "Improved_V": 150600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.944123901, "SHAPE_Area": 677.08376786700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357129.027300000190735, 257383.771299999207258 ], [ 357100.050399996340275, 257377.623500000685453 ], [ 357101.605499997735023, 257384.391199998557568 ], [ 357104.764200001955032, 257392.22749999910593 ], [ 357113.523999996483326, 257405.175900001078844 ], [ 357122.319700002670288, 257413.902800001204014 ], [ 357125.541299998760223, 257414.351300001144409 ], [ 357128.782799996435642, 257412.478000000119209 ], [ 357130.557199999690056, 257393.494100000709295 ], [ 357129.027300000190735, 257383.771299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201074700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96120735, "LATITUDE": 18.34603071, "OBJECTID_1": 7867, "PARCEL_NO_": "105201074700", "Tax_Legal_": "CONTANT 249 S S QTR", "Name": "CASTRO, PEDRO S.", "Address": "PO Box 306026", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.630039235, "SHAPE_Area": 1808.0250579399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355622.824799999594688, 257372.710299998521805 ], [ 355590.071699999272823, 257336.55629999935627 ], [ 355568.739000000059605, 257379.655900001525879 ], [ 355608.871200002729893, 257401.515900000929832 ], [ 355613.813299998641014, 257389.312899999320507 ], [ 355622.824799999594688, 257372.710299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202015600", "MAP": "G9-716-T63", "PARCEL_NAM": "11-1-A-1", "ACRE": null, "LONGITUDE": -64.95352186, "LATITUDE": 18.34598769, "OBJECTID_1": 8062, "PARCEL_NO_": "105202015600", "Tax_Legal_": "CONTANT 11 1 A 1 7BA SOUTHSIDE QTR", "Name": "TURNBULL, CHARLES", "Address": "BOX 2265", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.136600203, "SHAPE_Area": 1698.5006168699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356431.496899999678135, 257386.295000001788139 ], [ 356404.499499998986721, 257337.100299999117851 ], [ 356400.528999999165535, 257329.890599999576807 ], [ 356387.270199999213219, 257371.789700001478195 ], [ 356391.271200001239777, 257375.411100000143051 ], [ 356398.430900000035763, 257386.868700001388788 ], [ 356403.177100002765656, 257397.673300001770258 ], [ 356405.515100002288818, 257407.191700000315905 ], [ 356434.675399996340275, 257391.809399999678135 ], [ 356431.496899999678135, 257386.295000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96594072000001, "LATITUDE": 18.34619193, "OBJECTID_1": 7435, "PARCEL_NO_": "105201010200", "Tax_Legal_": "LINDBREG BAY 34C SOUTHSIDE QTR", "Name": "TURPIN, ELAINE", "Address": "55 Wilson Ave", "City": "Middle Island", "State": "New York", "Zip": 11953, "Country": "United States", "Land_Value": 24000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.23608061100001, "SHAPE_Area": 1285.32253956 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355112.202500000596046, 257395.128899998962879 ], [ 355111.649700000882149, 257365.360199999064207 ], [ 355079.39360000193119, 257365.518399998545647 ], [ 355079.944600000977516, 257395.498199999332428 ], [ 355079.696699999272823, 257405.478799998760223 ], [ 355111.975900001823902, 257405.081900000572205 ], [ 355112.202500000596046, 257395.128899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96411277, "LATITUDE": 18.34616739, "OBJECTID_1": 7446, "PARCEL_NO_": "105201011300", "Tax_Legal_": "CONTANT 175 7A SOUTHSIDE QTR", "Name": "CLARKE BREWLEY, NINA A.", "Address": "PO Box 5112", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16200, "Improved_V": 96800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.37850995, "SHAPE_Area": 670.10611001200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355304.938100002706051, 257393.539900001138449 ], [ 355303.503499999642372, 257372.629900000989437 ], [ 355272.847499996423721, 257374.278900001198053 ], [ 355272.685599997639656, 257393.276000000536442 ], [ 355287.188500002026558, 257394.661200001835823 ], [ 355290.417300000786781, 257394.265500001609325 ], [ 355298.457099996507168, 257397.075500000268221 ], [ 355304.938100002706051, 257393.539900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301071800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94791682, "LATITUDE": 18.34610685, "OBJECTID_1": 9236, "PARCEL_NO_": "105301071800", "Tax_Legal_": "SOLBERG 79-12 LITTLE NORTHSIDE QTR", "Name": "HOLDER, BRENDA&DWIGHT SMITH,ANITA RICHARDS&JAMAAL BENJAMIN", "Address": "PO Box 1414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39400, "Improved_V": 452600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.44176309900001, "SHAPE_Area": 1523.10018999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357036.285199999809265, 257384.912099998444319 ], [ 356967.02139999717474, 257375.057100001722574 ], [ 356968.445299997925758, 257397.233600001782179 ], [ 357027.214400000870228, 257408.48030000180006 ], [ 357028.035099998116493, 257406.798300001770258 ], [ 357031.314300000667572, 257400.492300000041723 ], [ 357033.776399999856949, 257395.446199998259544 ], [ 357036.285199999809265, 257384.912099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96386432, "LATITUDE": 18.34615191, "OBJECTID_1": 7453, "PARCEL_NO_": "105201012000", "Tax_Legal_": "CONTANT 176 7A SOUTHSIDE QTR", "Name": "PICKERING, LORETTA", "Address": "BOX 3504", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 97900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.274236194400004, "SHAPE_Area": 461.85929900399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355323.672100000083447, 257371.528400000184774 ], [ 355303.503499999642372, 257372.629900000989437 ], [ 355304.938100002706051, 257393.539900001138449 ], [ 355308.971500001847744, 257393.361900001764297 ], [ 355329.145499996840954, 257391.627099998295307 ], [ 355323.672100000083447, 257371.528400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95063325, "LATITUDE": 18.34602271, "OBJECTID_1": 8209, "PARCEL_NO_": "105202032300", "Tax_Legal_": "UPPER JOHN DUNKO 63 3 A LITTLE NORTHSIDE", "Name": "LAWRENCE E HODGE, SR. and MARIA TANKENSON HODGE", "Address": "63 Estate Scott Free", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56800, "Improved_V": 392300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.846693523, "SHAPE_Area": 2746.7234628699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356751.102300003170967, 257353.024900000542402 ], [ 356650.869599997997284, 257381.546500001102686 ], [ 356711.955200001597404, 257404.8445999994874 ], [ 356758.130800001323223, 257379.89130000025034 ], [ 356751.102300003170967, 257353.024900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96485365, "LATITUDE": 18.34611236, "OBJECTID_1": 7440, "PARCEL_NO_": "105201010700", "Tax_Legal_": "LINDBERG BAY 32D 4A SOUTHSIDE QTR", "Name": "JOSEPH JR. , COURTNEY & OTHERS", "Address": "PO Box 26902", "City": "Macon", "State": "Georgia", "Zip": 31221, "Country": "United States", "Land_Value": 11100, "Improved_V": 82000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.057804303, "SHAPE_Area": 555.55836900099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355229.365900002419949, 257366.956900000572205 ], [ 355194.660300001502037, 257370.683600001037121 ], [ 355195.317400000989437, 257388.209800001233816 ], [ 355223.56530000269413, 257385.274599999189377 ], [ 355229.365900002419949, 257366.956900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301070500", "MAP": "A9-141-T70", "PARCEL_NAM": "79-2", "ACRE": null, "LONGITUDE": -64.94975291, "LATITUDE": 18.34606113, "OBJECTID_1": 9224, "PARCEL_NO_": "105301070500", "Tax_Legal_": "SOLBERG 79-2 LT NORTHSIDE", "Name": "GEORGE, RHUDEL A & LUCIA A", "Address": "PO Box 904", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23800, "Improved_V": 216700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.55869364199999, "SHAPE_Area": 946.86268490099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356822.506300002336502, 257395.616900000721216 ], [ 356821.168799996376038, 257363.308699999004602 ], [ 356813.093099996447563, 257364.720199998468161 ], [ 356804.992200002074242, 257369.086899999529123 ], [ 356785.468099996447563, 257389.192099999636412 ], [ 356785.426700003445148, 257394.046900000423193 ], [ 356786.220399998128414, 257395.530999999493361 ], [ 356791.031300000846386, 257398.736800000071526 ], [ 356795.053900003433228, 257399.825199998915195 ], [ 356814.407200001180172, 257399.77250000089407 ], [ 356817.645000003278255, 257398.321400001645088 ], [ 356819.281099997460842, 257395.590500000864267 ], [ 356822.506300002336502, 257395.616900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301080500", "MAP": "A9-141-T70", "PARCEL_NAM": "79-44", "ACRE": "0.24", "LONGITUDE": -64.94645046, "LATITUDE": 18.3460605, "OBJECTID_1": 9255, "PARCEL_NO_": "105301080500", "Tax_Legal_": "SOLBERG 79-44 LITTLE NORTHSIDE", "Name": "CHRISTIAN, ORNETTE R. TRUSTEE", "Address": "PO Box 10915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36900, "Improved_V": 203700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.00544982700001, "SHAPE_Area": 1000.42475014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357136.168999999761581, 257397.339699998497963 ], [ 357180.485699996352196, 257401.291000001132488 ], [ 357175.831200003623962, 257379.721400000154972 ], [ 357174.64639999717474, 257376.976599998772144 ], [ 357172.620800003409386, 257377.713199999183416 ], [ 357163.137599997222424, 257379.094200000166893 ], [ 357145.27589999884367, 257372.833399999886751 ], [ 357139.7516999989748, 257370.255499999970198 ], [ 357136.068899996578693, 257372.925500001758337 ], [ 357133.758299998939037, 257377.9543999992311 ], [ 357136.221199996769428, 257391.218400001525879 ], [ 357136.168999999761581, 257397.339699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9626063, "LATITUDE": 18.34598033, "OBJECTID_1": 7480, "PARCEL_NO_": "105201020200", "Tax_Legal_": "CONTANT 185 7A SOUTHSIDE QTR", "Name": "MARTIN, KIMA-I", "Address": "PO Box 302301", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 67900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.31800483800001, "SHAPE_Area": 1010.34889127 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355465.739600002765656, 257354.326099999248981 ], [ 355431.924800001084805, 257348.138700000941753 ], [ 355424.601400002837181, 257355.889199998229742 ], [ 355424.570900000631809, 257359.47749999910593 ], [ 355431.789899997413158, 257363.9695999994874 ], [ 355438.18469999730587, 257370.565799999982119 ], [ 355443.701200000941753, 257385.598600000143051 ], [ 355469.596699997782707, 257374.833700001239777 ], [ 355466.472099997103214, 257362.986900001764297 ], [ 355465.739600002765656, 257354.326099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301073200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94851686, "LATITUDE": 18.34602603, "OBJECTID_1": 9249, "PARCEL_NO_": "105301073200", "Tax_Legal_": "SOLBERG 79-8 LT NORTHSIDE", "Name": "COLLINS, FRED", "Address": "127 Carroll Rd", "City": "Saltillo", "State": "Mississippi", "Zip": 38866, "Country": "United States", "Land_Value": 46800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.638454591, "SHAPE_Area": 1270.5974592499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356967.02139999717474, 257375.057100001722574 ], [ 356906.607400000095367, 257367.596500001847744 ], [ 356907.37950000166893, 257371.613600000739098 ], [ 356904.028399996459484, 257386.362700000405312 ], [ 356968.445299997925758, 257397.233600001782179 ], [ 356967.02139999717474, 257375.057100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201090200", "MAP": "D9-8459-T010", "PARCEL_NAM": "135", "ACRE": ".735", "LONGITUDE": -64.95827917, "LATITUDE": 18.34580795, "OBJECTID_1": 7900, "PARCEL_NO_": "105201090200", "Tax_Legal_": "CONTANT 135 7A SOUTHSIDE QTR", "Name": "JOSEPH, CLEMENT & FLORENCE", "Address": "PO Box 6473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 64500, "Improved_V": 316100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.81389416, "SHAPE_Area": 3076.3149525399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355914.140699997544289, 257322.388000000268221 ], [ 355910.72919999808073, 257323.682799998670816 ], [ 355904.855499997735023, 257325.587900001555681 ], [ 355901.839199997484684, 257325.746599998325109 ], [ 355899.299199998378754, 257324.794100001454353 ], [ 355897.71169999986887, 257323.047800000756979 ], [ 355894.466700002551079, 257315.338899999856949 ], [ 355879.095399998128414, 257309.831500001251698 ], [ 355882.005800001323223, 257382.006599999964237 ], [ 355929.232600003480911, 257374.162599999457598 ], [ 355937.394900001585484, 257374.229400001466274 ], [ 355933.968000002205372, 257329.485199999064207 ], [ 355932.038099996745586, 257328.800500001758337 ], [ 355914.140699997544289, 257322.388000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202020100", "MAP": "G9-1280-T69", "PARCEL_NAM": "129", "ACRE": ".338", "LONGITUDE": -64.9578193, "LATITUDE": 18.3458582, "OBJECTID_1": 8094, "PARCEL_NO_": "105202020100", "Tax_Legal_": "129 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "NATIONAL SPIRITUAL ASSEMBLY OF", "Address": "PO Box 302488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 139400, "Improved_V": 446700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.36875627200001, "SHAPE_Area": 1523.9591203099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355980.883400000631809, 257345.165899999439716 ], [ 355978.673000000417233, 257344.592000000178814 ], [ 355972.235100001096725, 257343.061599999666214 ], [ 355955.867399998009205, 257337.254700001329184 ], [ 355939.168399997055531, 257331.330200001597404 ], [ 355933.968000002205372, 257329.485199999064207 ], [ 355937.394900001585484, 257374.229400001466274 ], [ 355942.939900003373623, 257374.27479999884963 ], [ 355954.215700000524521, 257375.844799999147654 ], [ 355962.257200002670288, 257378.44370000064373 ], [ 355965.877300001680851, 257381.215599998831749 ], [ 355980.883400000631809, 257345.165899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202015300", "MAP": "G9-716-T63", "PARCEL_NAM": "11-1-A-3", "ACRE": null, "LONGITUDE": -64.95417998000001, "LATITUDE": 18.34580101, "OBJECTID_1": 8059, "PARCEL_NO_": "105202015300", "Tax_Legal_": "CONTANT 11 1A 3 7BA SOUTHSIDE QTR", "Name": "TURNBULL, CHARLES", "Address": "BOX 2265", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.66205488099999, "SHAPE_Area": 1878.49321136 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356322.295100003480911, 257331.783500000834465 ], [ 356314.197899997234344, 257335.728000000119209 ], [ 356332.329499997198582, 257384.42790000140667 ], [ 356363.064599998295307, 257373.491500001400709 ], [ 356359.848399996757507, 257372.409699998795986 ], [ 356355.976899996399879, 257353.590700000524521 ], [ 356359.220100000500679, 257351.506299998611212 ], [ 356347.400499999523163, 257319.112199999392033 ], [ 356322.295100003480911, 257331.783500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96411992, "LATITUDE": 18.34595732, "OBJECTID_1": 7445, "PARCEL_NO_": "105201011200", "Tax_Legal_": "CONTANT 174 7A SOUTHSIDE QTR", "Name": "MULLIN, ORAL D. & FARRELL, KATHL", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 115000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.68280637700001, "SHAPE_Area": 734.1049908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355303.503499999642372, 257372.629900000989437 ], [ 355301.313000001013279, 257345.803100001066923 ], [ 355277.904700003564358, 257348.566799998283386 ], [ 355273.77250000089407, 257360.354299999773502 ], [ 355272.928400002419949, 257364.780299998819828 ], [ 355272.847499996423721, 257374.278900001198053 ], [ 355303.503499999642372, 257372.629900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201013600", "MAP": "A9-661-T006", "PARCEL_NAM": "33H", "ACRE": null, "LONGITUDE": -64.96505881, "LATITUDE": 18.3458835, "OBJECTID_1": 7468, "PARCEL_NO_": "105201013600", "Tax_Legal_": "33 REM LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "HERMAN, LUVA A.", "Address": "4048 Walden Rd", "City": "Valdosta", "State": "Georgia", "Zip": 31605, "Country": "United States", "Land_Value": 107800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.738941241899994, "SHAPE_Area": 371.90326814600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355193.996100001037121, 257354.001800000667572 ], [ 355193.401900000870228, 257329.087900001555681 ], [ 355190.983000002801418, 257329.06810000166297 ], [ 355184.433600001037121, 257340.624600000679493 ], [ 355182.779600001871586, 257345.466299999505281 ], [ 355185.781900003552437, 257371.666400000452995 ], [ 355194.660300001502037, 257370.683600001037121 ], [ 355193.996100001037121, 257354.001800000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96390338, "LATITUDE": 18.34588442, "OBJECTID_1": 7454, "PARCEL_NO_": "105201012100", "Tax_Legal_": "CONTANT 173 7A S S QTR", "Name": "SCHNEIDER, EILEEN", "Address": "PO Box 301751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13900, "Improved_V": 74000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.58930184, "SHAPE_Area": 637.93635626299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355312.800899997353554, 257322.465799998492002 ], [ 355307.927100002765656, 257326.647700000554323 ], [ 355307.768799997866154, 257345.222699999809265 ], [ 355301.313000001013279, 257345.803100001066923 ], [ 355303.503499999642372, 257372.629900000989437 ], [ 355323.672100000083447, 257371.528400000184774 ], [ 355316.62389999628067, 257346.983899999409914 ], [ 355315.19650000333786, 257325.229600001126528 ], [ 355312.800899997353554, 257322.465799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96483291, "LATITUDE": 18.34595534, "OBJECTID_1": 7441, "PARCEL_NO_": "105201010800", "Tax_Legal_": "32C LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "HARLEY, VIOLA", "Address": "BOX 4323", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15300, "Improved_V": 98100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.159394991, "SHAPE_Area": 628.91657121000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355234.351300001144409, 257349.688000001013279 ], [ 355215.788099996745586, 257351.646999999880791 ], [ 355193.996100001037121, 257354.001800000667572 ], [ 355194.660300001502037, 257370.683600001037121 ], [ 355229.365900002419949, 257366.956900000572205 ], [ 355234.351300001144409, 257349.688000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301071900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94790592, "LATITUDE": 18.34589223, "OBJECTID_1": 9237, "PARCEL_NO_": "105301071900", "Tax_Legal_": "SOLBERG 79-13 LITTLE NORTHSIDE QTR", "Name": "DONOVAN, ROY & DOREEN", "Address": "2437 Anderson Mill Road", "City": "Austell", "State": "Georgia", "Zip": 301061856, "Country": "United States", "Land_Value": 63000, "Improved_V": 295000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.53112945199999, "SHAPE_Area": 1739.35297487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357040.505599997937679, 257362.781800001859665 ], [ 356969.667000003159046, 257348.480900000780821 ], [ 356967.02139999717474, 257375.057100001722574 ], [ 357036.285199999809265, 257384.912099998444319 ], [ 357038.851599998772144, 257367.623399998992682 ], [ 357040.505599997937679, 257362.781800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201074600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96101736, "LATITUDE": 18.34574718, "OBJECTID_1": 7866, "PARCEL_NO_": "105201074600", "Tax_Legal_": "248 ESTATE CONTANT 7A SOUTHSIDE QTR", "Name": "BEDMINSTER, TASHAIA", "Address": "7427 Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.45708746099999, "SHAPE_Area": 1675.43578413 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355642.37950000166893, 257349.016800001263618 ], [ 355618.515600003302097, 257310.613499999046326 ], [ 355605.557099997997284, 257317.262499999254942 ], [ 355600.685000002384186, 257321.233399998396635 ], [ 355594.169799998402596, 257328.779399998486042 ], [ 355590.071699999272823, 257336.55629999935627 ], [ 355622.824799999594688, 257372.710299998521805 ], [ 355632.621100001037121, 257358.647199999541044 ], [ 355642.37950000166893, 257349.016800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96295161, "LATITUDE": 18.34580113, "OBJECTID_1": 7456, "PARCEL_NO_": "105201012300", "Tax_Legal_": "CONTANT 191 7A S S QTR", "Name": "RAPHAEL VICTOR, RAMONA MERCEDES VICTOR & RAPHY VICTOR PEREZ", "Address": "PO Box 502304", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052304, "Country": "United States", "Land_Value": 24600, "Improved_V": 152700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.54805449099999, "SHAPE_Area": 727.55179782499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355439.339800000190735, 257329.623100001364946 ], [ 355396.553099997341633, 257335.39469999819994 ], [ 355400.304200001060963, 257368.355999998748302 ], [ 355402.750100001692772, 257365.209600001573563 ], [ 355407.622100003063679, 257361.238699998706579 ], [ 355417.368000000715256, 257353.085799999535084 ], [ 355435.281300000846386, 257332.756299998611212 ], [ 355439.339800000190735, 257329.623100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96594106000001, "LATITUDE": 18.34587561, "OBJECTID_1": 7436, "PARCEL_NO_": "105201010300", "Tax_Legal_": "LINDBERG BAY 34B SOUTHSIDE QTR", "Name": "JAMES, DOLORES & JENNIFER", "Address": "1410 Metropolitan Ave", "City": "Bronx", "State": "New York", "Zip": 10462, "Country": "United States", "Land_Value": 25400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.481949595, "SHAPE_Area": 957.16264377100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355110.330200001597404, 257330.941100001335144 ], [ 355103.87610000371933, 257331.310499999672174 ], [ 355092.541000001132488, 257336.7060999982059 ], [ 355078.794100001454353, 257341.237700000405312 ], [ 355079.39360000193119, 257365.518399998545647 ], [ 355111.649700000882149, 257365.360199999064207 ], [ 355110.330200001597404, 257330.941100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202024500", "MAP": "D9-3044-T85", "PARCEL_NAM": "125-A", "ACRE": ".58", "LONGITUDE": -64.95693895, "LATITUDE": 18.34568846, "OBJECTID_1": 8133, "PARCEL_NO_": "105202024500", "Tax_Legal_": "CONTANT 125-A 7A SOUTHSIDE QTR.", "Name": "WALTERS, BROWN & WALTERS", "Address": "7908 Clearview Cir", "City": "Riverdale", "State": "Georgia", "Zip": 30296, "Country": "United States", "Land_Value": 174500, "Improved_V": 56100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.977990783, "SHAPE_Area": 2410.9324373499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356066.183799996972084, 257361.385800000280142 ], [ 356083.097000002861023, 257313.604600001126528 ], [ 356066.00110000371933, 257316.386900000274181 ], [ 356057.936099998652935, 257316.532000001519918 ], [ 356054.710900001227856, 257316.50560000166297 ], [ 356041.0, 257316.815600000321865 ], [ 356025.917900003492832, 257312.003899998962879 ], [ 356016.504299998283386, 257354.2685999982059 ], [ 356015.600400000810623, 257358.326799999922514 ], [ 356030.424099996685982, 257359.223299998790026 ], [ 356031.535300001502037, 257359.290500000119209 ], [ 356066.183799996972084, 257361.385800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202015500", "MAP": "G9-716-T63", "PARCEL_NAM": "11-1-A-2", "ACRE": null, "LONGITUDE": -64.95384348, "LATITUDE": 18.34566566, "OBJECTID_1": 8061, "PARCEL_NO_": "105202015500", "Tax_Legal_": "CONTANT 11-1-A-2 7BA SOUTHSODE QTR.", "Name": "TURNBULL, CHARLES W", "Address": "PO Box 302265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032265, "Country": "United States", "Land_Value": 38000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.52744196899999, "SHAPE_Area": 1745.4752072900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356349.830200001597404, 257317.865499999374151 ], [ 356347.400499999523163, 257319.112199999392033 ], [ 356359.220100000500679, 257351.506299998611212 ], [ 356363.276799999177456, 257348.584199998527765 ], [ 356373.706699997186661, 257354.791200000792742 ], [ 356374.460900001227856, 257360.919100001454353 ], [ 356376.852899998426437, 257364.105099998414516 ], [ 356380.852099999785423, 257367.9375 ], [ 356387.270199999213219, 257371.789700001478195 ], [ 356400.528999999165535, 257329.890599999576807 ], [ 356363.598700001835823, 257310.801100000739098 ], [ 356349.830200001597404, 257317.865499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301071600", "MAP": "A9-141-T70", "PARCEL_NAM": "79-7", "ACRE": ".40", "LONGITUDE": -64.94857147, "LATITUDE": 18.34580265, "OBJECTID_1": 9234, "PARCEL_NO_": "105301071600", "Tax_Legal_": "79-7 SOLBERG LITTLE NORTHSIDE QUARTER", "Name": "HENDRICKS, A. & A", "Address": "PO Box 307318", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41500, "Improved_V": 245000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.04662334700001, "SHAPE_Area": 1860.7936481199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356969.667000003159046, 257348.480900000780821 ], [ 356884.255400002002716, 257341.026900000870228 ], [ 356884.176299996674061, 257350.314399998635054 ], [ 356893.844800002872944, 257351.237900000065565 ], [ 356898.659299999475479, 257354.021499998867512 ], [ 356905.840599998831749, 257362.946199998259544 ], [ 356906.607400000095367, 257367.596500001847744 ], [ 356967.02139999717474, 257375.057100001722574 ], [ 356969.667000003159046, 257348.480900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96491026, "LATITUDE": 18.3457783, "OBJECTID_1": 7442, "PARCEL_NO_": "105201010900", "Tax_Legal_": "LINDBERG 32A 4A SOUTHSIDE QTR", "Name": "THOMAS, ERMA", "Address": "BOX 4521", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13100, "Improved_V": 87900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.984142856000005, "SHAPE_Area": 558.36489163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355215.788099996745586, 257351.646999999880791 ], [ 355217.603900000452995, 257327.808299999684095 ], [ 355208.729099996387959, 257328.368999999016523 ], [ 355193.401900000870228, 257329.087900001555681 ], [ 355193.996100001037121, 257354.001800000667572 ], [ 355215.788099996745586, 257351.646999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96250561, "LATITUDE": 18.34575555, "OBJECTID_1": 7479, "PARCEL_NO_": "105201020100", "Tax_Legal_": "CONTANT 184 7A SOUTHSIDE QTR", "Name": "KITNURSE, MERVIN", "Address": "PO Box 10456", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 108600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.523138989, "SHAPE_Area": 834.95319074899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355431.924800001084805, 257348.138700000941753 ], [ 355465.739600002765656, 257354.326099999248981 ], [ 355469.011600002646446, 257348.864399999380112 ], [ 355484.491499997675419, 257330.20380000025034 ], [ 355476.453599996864796, 257327.182700000703335 ], [ 355468.395900003612041, 257326.483399998396635 ], [ 355461.1300999969244, 257327.479400001466274 ], [ 355447.374200001358986, 257333.066399998962879 ], [ 355444.130999997258186, 257335.150800000876188 ], [ 355431.924800001084805, 257348.138700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201073800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96156451, "LATITUDE": 18.34559894, "OBJECTID_1": 7860, "PARCEL_NO_": "105201073800", "Tax_Legal_": "CONTANT 260 7A SOUTHSIDE QTR.", "Name": "DONOVAN, MARIA", "Address": "911 S Rio Grande Ave", "City": "Orlando", "State": "Florida", "Zip": 32805, "Country": "United States", "Land_Value": 23000, "Improved_V": 88400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.46874371499999, "SHAPE_Area": 2367.2425500899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355593.471400000154972, 257316.1081000007689 ], [ 355554.978799998760223, 257291.095100000500679 ], [ 355547.659000001847744, 257298.423500001430511 ], [ 355536.243000000715256, 257313.317699998617172 ], [ 355523.973899997770786, 257333.693300001323223 ], [ 355570.561999998986721, 257354.972899999469519 ], [ 355583.691299997270107, 257328.271499998867512 ], [ 355587.776900000870228, 257321.972100000828505 ], [ 355593.471400000154972, 257316.1081000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96469924, "LATITUDE": 18.34575756, "OBJECTID_1": 7443, "PARCEL_NO_": "105201011000", "Tax_Legal_": "LINDBERG 32B 4A SOUTHSIDE QTR", "Name": "MELVIN FORBES, SR. & OTHERS", "Address": "32B Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 109000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.354669686299999, "SHAPE_Area": 496.75048055000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355241.807700000703335, 257326.317699998617172 ], [ 355217.603900000452995, 257327.808299999684095 ], [ 355215.788099996745586, 257351.646999999880791 ], [ 355234.351300001144409, 257349.688000001013279 ], [ 355241.807700000703335, 257326.317699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301070600", "MAP": "A9-141-T70", "PARCEL_NAM": "79-46", "ACRE": ".27", "LONGITUDE": -64.94956178, "LATITUDE": 18.34570466, "OBJECTID_1": 9225, "PARCEL_NO_": "105301070600", "Tax_Legal_": "SOLBERG 79-46 LITTLE NORTHSIDE", "Name": "THOMAS, MYLETA & REGINALD", "Address": "PO Box 306383", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28000, "Improved_V": 511800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.79522758799999, "SHAPE_Area": 1223.4527685600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356868.139899998903275, 257339.628400001674891 ], [ 356795.622100003063679, 257333.124299999326468 ], [ 356803.429899998009205, 257363.163499999791384 ], [ 356809.104699999094009, 257359.621300000697374 ], [ 356819.619099996984005, 257355.907699998468161 ], [ 356860.800399996340275, 257349.2787000015378 ], [ 356868.86710000038147, 257348.922499999403954 ], [ 356868.139899998903275, 257339.628400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96634885, "LATITUDE": 18.34576396, "OBJECTID_1": 7437, "PARCEL_NO_": "105201010400", "Tax_Legal_": "LINDBERG BAY 34 SOUTHSIDE QTR", "Name": "THOMAS, RUTH & GOTTLIEB, KAIJA", "Address": "PO Box 342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040342, "Country": "United States", "Land_Value": 222200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.147304207800005, "SHAPE_Area": 185.01394126100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355041.757700003683567, 257334.601799998432398 ], [ 355041.649800002574921, 257347.266499999910593 ], [ 355046.518200002610683, 257343.717700000852346 ], [ 355058.659699998795986, 257338.328699998557568 ], [ 355078.867799997329712, 257332.583500001579523 ], [ 355041.757700003683567, 257334.601799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96404273, "LATITUDE": 18.34571997, "OBJECTID_1": 7444, "PARCEL_NO_": "105201011100", "Tax_Legal_": "CONTANT 182 7A SOUTHSIDE QTR", "Name": "NILES, LARAINE", "Address": "PO Box 303523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 42900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.305594941, "SHAPE_Area": 575.13092698399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355277.904700003564358, 257348.566799998283386 ], [ 355301.313000001013279, 257345.803100001066923 ], [ 355307.768799997866154, 257345.222699999809265 ], [ 355307.927100002765656, 257326.647700000554323 ], [ 355312.800899997353554, 257322.465799998492002 ], [ 355306.373800002038479, 257319.6689000017941 ], [ 355295.074600003659725, 257320.842999998480082 ], [ 355290.193599998950958, 257325.869300000369549 ], [ 355285.263999998569489, 257336.594700001180172 ], [ 355283.624399997293949, 257339.747699998319149 ], [ 355280.352399997413158, 257345.209399998188019 ], [ 355277.904700003564358, 257348.566799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301072000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94785451, "LATITUDE": 18.34566528, "OBJECTID_1": 9238, "PARCEL_NO_": "105301072000", "Tax_Legal_": "SOLBERG ESTATE 79-14 LITTLE NORTHSIDE QTR.", "Name": "CLARKE, GEORGE M. & MURIELLA F. (CO-TRUSTEES)", "Address": "PO Box 304584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.950636519, "SHAPE_Area": 1987.1672371100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357051.970200002193451, 257342.188499998301268 ], [ 356976.367399998009205, 257319.193799998611212 ], [ 356969.667000003159046, 257348.480900000780821 ], [ 357040.505599997937679, 257362.781800001859665 ], [ 357043.793799996376038, 257355.420400001108646 ], [ 357051.970200002193451, 257342.188499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201074500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96071949, "LATITUDE": 18.34557307, "OBJECTID_1": 7865, "PARCEL_NO_": "105201074500", "Tax_Legal_": "247 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "BENJAMIN, WYSTAN D. & SANDRA O HODGE BENJAMIN", "Address": "PO BOX 306751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41700, "Improved_V": 295600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.061480063, "SHAPE_Area": 1649.82177735 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355673.143500000238419, 257334.703099999576807 ], [ 355662.98870000243187, 257296.2010000012815 ], [ 355618.515600003302097, 257310.613499999046326 ], [ 355642.37950000166893, 257349.016800001263618 ], [ 355658.593900002539158, 257338.805900000035763 ], [ 355673.143500000238419, 257334.703099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95601086000001, "LATITUDE": 18.34541983, "OBJECTID_1": 8101, "PARCEL_NO_": "105202021000", "Tax_Legal_": "CONTANT 19 7A SOUTHSIDE QTR", "Name": "HODGE, DOUGLAS S", "Address": "PO Box 303693", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34900, "Improved_V": 88200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.32387436100001, "SHAPE_Area": 1555.63377203 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356160.187799997627735, 257334.214899998158216 ], [ 356158.275100000202656, 257278.983500000089407 ], [ 356154.230800002813339, 257277.001299999654293 ], [ 356135.7162000015378, 257273.261100001633167 ], [ 356135.442800000309944, 257305.345100000500679 ], [ 356129.464199997484684, 257344.559599999338388 ], [ 356147.2804000005126, 257335.628400001674891 ], [ 356160.187799997627735, 257334.214899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96701094, "LATITUDE": 18.34556882, "OBJECTID_1": 7391, "PARCEL_NO_": "105102020500", "Tax_Legal_": "LINDBERG BAY 61AC 4A SOUTHSIDE QTR", "Name": "TURNBULL, MARGARET PICKERING & WINSTON (LIFE ESTATE)", "Address": "PO Box 302264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38800, "Improved_V": 184700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.469403739, "SHAPE_Area": 1333.8304192099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354962.223999999463558, 257299.753699999302626 ], [ 354963.554300002753735, 257332.906199999153614 ], [ 355004.699699997901917, 257330.498799998313189 ], [ 355003.308200001716614, 257304.522900000214577 ], [ 355003.358599998056889, 257298.612700000405312 ], [ 354970.288999997079372, 257299.608600001782179 ], [ 354962.223999999463558, 257299.753699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9629791, "LATITUDE": 18.34557075, "OBJECTID_1": 7458, "PARCEL_NO_": "105201012500", "Tax_Legal_": "CONTANT 192 7A S S QTR", "Name": "FAULKNER, JAMES E & HELEN", "Address": "PO Box 306281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22200, "Improved_V": 145100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.52357186399999, "SHAPE_Area": 949.58897427199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355439.339800000190735, 257329.623100001364946 ], [ 355398.4966000020504, 257296.569299999624491 ], [ 355392.038900002837181, 257297.36089999973774 ], [ 355396.553099997341633, 257335.39469999819994 ], [ 355439.339800000190735, 257329.623100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96666285000001, "LATITUDE": 18.34557797, "OBJECTID_1": 7392, "PARCEL_NO_": "105102020600", "Tax_Legal_": "LINDBERG BAY 61B 7A SOUTHSIDE QTR", "Name": "DANET, RALPH", "Address": "PO Box 303492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.749357094, "SHAPE_Area": 826.69556603700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355035.57150000333786, 257303.520399998873472 ], [ 355003.308200001716614, 257304.522900000214577 ], [ 355004.699699997901917, 257330.498799998313189 ], [ 355034.549400001764297, 257328.843199998140335 ], [ 355036.984499998390675, 257326.963300000876188 ], [ 355035.57150000333786, 257303.520399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201074400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96039778, "LATITUDE": 18.34547107, "OBJECTID_1": 7864, "PARCEL_NO_": "105201074400", "Tax_Legal_": "CONTANT 266 7A S S QTR", "Name": "PHILLIPS, WESTON & OTHERS", "Address": "PO Box 7911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.023322046, "SHAPE_Area": 1229.15000173 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355700.633599996566772, 257326.062199998646975 ], [ 355692.114799998700619, 257284.829199999570847 ], [ 355662.98870000243187, 257296.2010000012815 ], [ 355673.143500000238419, 257334.703099999576807 ], [ 355688.501199997961521, 257330.395799998193979 ], [ 355700.633599996566772, 257326.062199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96630472, "LATITUDE": 18.34562444, "OBJECTID_1": 7505, "PARCEL_NO_": "105201030100", "Tax_Legal_": "LINDBERG BAY 60-1,2,3,4 SOUTHSIDE QTR.", "Name": "DUNN, MABEL A", "Address": "PO Box 16384", "City": "Rumford", "State": "Rhode Island", "Zip": 2916, "Country": "United States", "Land_Value": 76000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.548058850499999, "SHAPE_Area": 309.52213522900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355073.356700003147125, 257316.917399998754263 ], [ 355041.901500001549721, 257317.715500000864267 ], [ 355042.639499999582767, 257325.743000000715256 ], [ 355045.038699999451637, 257328.084699999541044 ], [ 355072.469499997794628, 257326.409400001168251 ], [ 355074.096500001847744, 257324.733899999409914 ], [ 355073.356700003147125, 257316.917399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96280284, "LATITUDE": 18.34545968, "OBJECTID_1": 7459, "PARCEL_NO_": "105201012600", "Tax_Legal_": "CONTANT 195 7A S S QTR", "Name": "CLENDINEN, DENNIS & ELSIE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 113500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.52557794399999, "SHAPE_Area": 900.99231197200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355444.211900003254414, 257325.652199998497963 ], [ 355442.080600000917912, 257291.8597999997437 ], [ 355413.830899998545647, 257295.006099998950958 ], [ 355398.4966000020504, 257296.569299999624491 ], [ 355439.339800000190735, 257329.623100001364946 ], [ 355444.211900003254414, 257325.652199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301072100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94777098, "LATITUDE": 18.34543208, "OBJECTID_1": 9239, "PARCEL_NO_": "105301072100", "Tax_Legal_": "79-15 SOLBERG LITTLE NORTHSIDE", "Name": "CLARKE, GEORGE M. & MURIELLA F. (CO-TRUSTEES)", "Address": "PO Box 304584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82900, "Improved_V": 410100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.09623543800001, "SHAPE_Area": 2301.54835998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357064.237499997019768, 257322.023899998515844 ], [ 356983.087600000202656, 257287.584699999541044 ], [ 356976.367399998009205, 257319.193799998611212 ], [ 357051.970200002193451, 257342.188499998301268 ], [ 357064.237499997019768, 257322.023899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96570193, "LATITUDE": 18.34559311, "OBJECTID_1": 7506, "PARCEL_NO_": "105201030300", "Tax_Legal_": "LINDBERG BAY 31-M SOUTHSIDE QTR", "Name": "HILL, JOHN & SANDRA H", "Address": "PO Box 306237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.699098600900001, "SHAPE_Area": 214.12217637500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355132.973499998450279, 257323.315999999642372 ], [ 355133.054399996995926, 257313.817400000989437 ], [ 355109.655100002884865, 257315.525800000876188 ], [ 355110.384099997580051, 257324.608800001442432 ], [ 355132.973499998450279, 257323.315999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96548008000001, "LATITUDE": 18.34557979, "OBJECTID_1": 7507, "PARCEL_NO_": "105201030400", "Tax_Legal_": "LINDBERG BAY 31 SOUTHSIDE QUARTER", "Name": "CALMA IONE GUMBS REVOCABLE TRUST", "Address": "P.O. BOX 4109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9800, "Improved_V": 117200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.321617553199999, "SHAPE_Area": 234.035396472 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355156.451800003647804, 257312.320199999958277 ], [ 355133.054399996995926, 257313.817400000989437 ], [ 355132.973499998450279, 257323.315999999642372 ], [ 355157.171800002455711, 257322.458599999547005 ], [ 355156.451800003647804, 257312.320199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96252601, "LATITUDE": 18.34544459, "OBJECTID_1": 7460, "PARCEL_NO_": "105201012700", "Tax_Legal_": "CONTANT 194 7A S S QTR", "Name": "ELMIRA AGATHA FARRELL FAMILY TRUST", "Address": "PO Box 304006", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16200, "Improved_V": 85200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.639619856, "SHAPE_Area": 899.29299431100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355470.330399997532368, 257288.713500000536442 ], [ 355442.080600000917912, 257291.8597999997437 ], [ 355444.211900003254414, 257325.652199998497963 ], [ 355449.879399999976158, 257322.9543999992311 ], [ 355474.943499997258186, 257315.138000000268221 ], [ 355470.330399997532368, 257288.713500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96523886, "LATITUDE": 18.34551243, "OBJECTID_1": 7508, "PARCEL_NO_": "105201030500", "Tax_Legal_": "LINDBERG BAY 31G SOUTHSIDE QTR", "Name": "ROGERS, BERNADETTE", "Address": "PO Box 302542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29400, "Improved_V": 230500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.204606629099999, "SHAPE_Area": 476.05479966199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355180.657399997115135, 257310.618500001728535 ], [ 355179.277800001204014, 257298.160700000822544 ], [ 355160.019400000572205, 257299.36710000038147 ], [ 355160.487000003457069, 257311.931000001728535 ], [ 355161.203400000929832, 257322.491599999368191 ], [ 355181.361199997365475, 257322.656500000506639 ], [ 355180.657399997115135, 257310.618500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96504865, "LATITUDE": 18.34550527, "OBJECTID_1": 7509, "PARCEL_NO_": "105201030600", "Tax_Legal_": "LINDBERG 31E SOUTHSIDE QTR", "Name": "SAMUEL, EUGENIE", "Address": "P.O. BOX 4571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 183200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.219484490200003, "SHAPE_Area": 511.228650641 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355200.827799998223782, 257309.305900000035763 ], [ 355199.939800001680851, 257297.092500001192093 ], [ 355179.277800001204014, 257298.160700000822544 ], [ 355180.657399997115135, 257310.618500001728535 ], [ 355181.361199997365475, 257322.656500000506639 ], [ 355201.519000001251698, 257322.82149999961257 ], [ 355200.827799998223782, 257309.305900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96483227, "LATITUDE": 18.34544213, "OBJECTID_1": 7510, "PARCEL_NO_": "105201030700", "Tax_Legal_": "LINDBERG 31DA S S QTR", "Name": "GUMBS, LISTON", "Address": "PO Box 12194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18200, "Improved_V": 213800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.316913613, "SHAPE_Area": 539.13004949200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355226.81139999628067, 257288.198100000619888 ], [ 355204.223899997770786, 257289.279800001531839 ], [ 355206.35869999974966, 257322.649999998509884 ], [ 355216.039800003170967, 257322.096000000834465 ], [ 355226.81139999628067, 257288.198100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201074300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96012656000001, "LATITUDE": 18.34537854, "OBJECTID_1": 7863, "PARCEL_NO_": "105201074300", "Tax_Legal_": "CONTANT 265 S S QTR. 7A", "Name": "ADAMS, PHILLIP", "Address": "37-18 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.69981285899999, "SHAPE_Area": 1304.0457451699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355731.372400000691414, 257314.703600000590086 ], [ 355719.623000003397465, 257274.077500000596046 ], [ 355692.114799998700619, 257284.829199999570847 ], [ 355700.633599996566772, 257326.062199998646975 ], [ 355731.372400000691414, 257314.703600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201030800", "MAP": "F9-2812-T71", "PARCEL_NAM": "31C", "ACRE": null, "LONGITUDE": -64.96459449, "LATITUDE": 18.345237, "OBJECTID_1": 7511, "PARCEL_NO_": "105201030800", "Tax_Legal_": "LINDBERG 31C SOUTHSIDE QTR", "Name": "GUMBS, RUBY", "Address": "BOX 4109", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50500, "Improved_V": 174900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.21556185200001, "SHAPE_Area": 2037.8080283199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355243.340400002896786, 257241.04839999973774 ], [ 355221.555600002408028, 257242.558899998664856 ], [ 355226.81139999628067, 257288.198100000619888 ], [ 355230.562399998307228, 257321.159400001168251 ], [ 355256.387800000607967, 257318.626499999314547 ], [ 355247.373800002038479, 257240.870299998670816 ], [ 355243.340400002896786, 257241.04839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201030900", "MAP": "D9-177-T58", "PARCEL_NAM": "31B", "ACRE": null, "LONGITUDE": -64.96417698, "LATITUDE": 18.34523352, "OBJECTID_1": 7512, "PARCEL_NO_": "105201030900", "Tax_Legal_": "LINDBERG 31B SOUTHSIDE QUARTER", "Name": "HICKS, MICHELE & LAVERNE HERMAN", "Address": "2433 Dove Creek Dr", "City": "Little Elm", "State": "Texas", "Zip": 75068, "Country": "United States", "Land_Value": 92400, "Improved_V": 94800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.73345123000001, "SHAPE_Area": 4574.4961383199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355322.161300003528595, 257264.913800001144409 ], [ 355287.522200003266335, 257260.830600000917912 ], [ 355288.531700000166893, 257236.985300000756979 ], [ 355247.373800002038479, 257240.870299998670816 ], [ 355256.387800000607967, 257318.626499999314547 ], [ 355311.267399996519089, 257313.165100000798702 ], [ 355318.554799996316433, 257309.636100001633167 ], [ 355322.634900003671646, 257303.969999998807907 ], [ 355323.497000001370907, 257297.433200001716614 ], [ 355322.161300003528595, 257264.913800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96571477000001, "LATITUDE": 18.34539502, "OBJECTID_1": 7514, "PARCEL_NO_": "105201031300", "Tax_Legal_": "LINDBERG BAY 31-LA SOUTHSIDE QTR", "Name": "HILL, JOHN & SANDRA H", "Address": "PO Box 306237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24200, "Improved_V": 162700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.63649895499999, "SHAPE_Area": 843.123082297 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355133.054399996995926, 257313.817400000989437 ], [ 355132.535800002515316, 257280.038199998438358 ], [ 355106.722999997437, 257281.093499999493361 ], [ 355108.181000001728535, 257299.259500000625849 ], [ 355109.655100002884865, 257315.525800000876188 ], [ 355133.054399996995926, 257313.817400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96548919, "LATITUDE": 18.34538506, "OBJECTID_1": 7515, "PARCEL_NO_": "105201031400", "Tax_Legal_": "LINDBERG BAY 31-LA-1 SOUTHSIDE QTR", "Name": "CALMA IONE GUMBS REVOCABLE TRUST", "Address": "P.O. BOX 4109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19600, "Improved_V": 182500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.010187223, "SHAPE_Area": 770.52736962100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355155.121500000357628, 257279.167599998414516 ], [ 355132.535800002515316, 257280.038199998438358 ], [ 355133.054399996995926, 257313.817400000989437 ], [ 355156.451800003647804, 257312.320199999958277 ], [ 355155.121500000357628, 257279.167599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201073700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96133663000001, "LATITUDE": 18.34531195, "OBJECTID_1": 7859, "PARCEL_NO_": "105201073700", "Tax_Legal_": "CONTANT 259 7ASOUTHSIDE QTR.", "Name": "RAIMER, CARMEN", "Address": "PO Box 126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.19161816900001, "SHAPE_Area": 1332.4680512299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355609.698299996554852, 257304.419599998742342 ], [ 355581.819099999964237, 257264.083700001239777 ], [ 355554.978799998760223, 257291.095100000500679 ], [ 355593.471400000154972, 257316.1081000007689 ], [ 355600.787500001490116, 257309.201900001615286 ], [ 355609.698299996554852, 257304.419599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96525749, "LATITUDE": 18.34530432, "OBJECTID_1": 7516, "PARCEL_NO_": "105201031500", "Tax_Legal_": "LINDBERG BAY 31H 4A SOUTHSIDE QTR", "Name": "GUMBS, SAMUEL & L", "Address": "PO Box 8141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10100, "Improved_V": 74600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.088178100299999, "SHAPE_Area": 416.427889306 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355179.277800001204014, 257298.160700000822544 ], [ 355178.411100000143051, 257290.335099998861551 ], [ 355176.920699998736382, 257275.968499999493361 ], [ 355159.174699999392033, 257276.667700000107288 ], [ 355160.019400000572205, 257299.36710000038147 ], [ 355179.277800001204014, 257298.160700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96507105000001, "LATITUDE": 18.34528766, "OBJECTID_1": 7517, "PARCEL_NO_": "105201031600", "Tax_Legal_": "LINDBERG BAY 31F SOUTHSIDE QTR", "Name": "LINDBERG REALTY CORPORATION", "Address": "BOX 3592", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 120900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.6098341637, "SHAPE_Area": 489.26146512299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355199.939800001680851, 257297.092500001192093 ], [ 355199.384199999272823, 257289.451299998909235 ], [ 355198.447599999606609, 257274.309799998998642 ], [ 355176.841099999845028, 257274.812300000339746 ], [ 355176.920699998736382, 257275.968499999493361 ], [ 355178.411100000143051, 257290.335099998861551 ], [ 355179.277800001204014, 257298.160700000822544 ], [ 355199.939800001680851, 257297.092500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201074200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95984202, "LATITUDE": 18.34526504, "OBJECTID_1": 7862, "PARCEL_NO_": "105201074200", "Tax_Legal_": "264 CONTANT 7A SOUTHSIDE QTR.", "Name": "CASTILLO, WACLIN", "Address": "PO Box 430", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.61030070699999, "SHAPE_Area": 1446.25247554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355759.672499999403954, 257305.647100001573563 ], [ 355754.411300003528595, 257260.641100000590086 ], [ 355719.623000003397465, 257274.077500000596046 ], [ 355731.372400000691414, 257314.703600000590086 ], [ 355759.672499999403954, 257305.647100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301072200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94747892, "LATITUDE": 18.34525794, "OBJECTID_1": 9240, "PARCEL_NO_": "105301072200", "Tax_Legal_": "SOLBERG 79-16 LITTLE NORTHSIDE", "Name": "EDNA B MARTIN POLE & HENVILLE ALDEN POLE SR \nFAMILY REVOCABLE TRUST", "Address": "79-16 Estate Solberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.773201873, "SHAPE_Area": 2081.0412304900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357098.383100003004074, 257289.372800000011921 ], [ 357084.699199996888638, 257286.516499999910593 ], [ 357072.613499999046326, 257285.362199999392033 ], [ 357066.168399997055531, 257284.676100000739098 ], [ 357022.611299999058247, 257286.219500001519918 ], [ 357014.544600002467632, 257286.575599998235703 ], [ 356983.087600000202656, 257287.584699999541044 ], [ 357064.237499997019768, 257322.023899998515844 ], [ 357074.051700003445148, 257305.850000001490116 ], [ 357081.364200003445148, 257299.36600000038743 ], [ 357082.987700000405312, 257298.112700000405312 ], [ 357090.244499996304512, 257298.172100000083447 ], [ 357092.64360000193119, 257300.513700000941753 ], [ 357098.383100003004074, 257289.372800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9663223, "LATITUDE": 18.34540773, "OBJECTID_1": 7518, "PARCEL_NO_": "105201031700", "Tax_Legal_": "LINDBERG BAY 60-5 4A & B SOUTHSIDE QTR", "Name": "FREEMAN, ALLEN", "Address": "4100 Spruce Ave", "City": "West Palm Bch", "State": "Florida", "Zip": 33407, "Country": "United States", "Land_Value": 1200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.409515552000002, "SHAPE_Area": 403.95029109900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355072.660099998116493, 257304.035000000149012 ], [ 355071.959799997508526, 257291.574799999594688 ], [ 355055.826399996876717, 257292.287099998444319 ], [ 355046.121699996292591, 257292.107099998742342 ], [ 355040.130900003015995, 257290.039599999785423 ], [ 355040.490299999713898, 257294.0614 ], [ 355041.201300002634525, 257305.255199998617172 ], [ 355072.660099998116493, 257304.035000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96667746, "LATITUDE": 18.34530867, "OBJECTID_1": 7394, "PARCEL_NO_": "105102020800", "Tax_Legal_": "61 BA LINDBERG BAY 4A SOUTHSIDE", "Name": "ALICIA VANTE TRUST", "Address": "PO Box 135", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26600, "Improved_V": 198100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.69772147, "SHAPE_Area": 1093.66605282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355033.831799998879433, 257269.089899998158216 ], [ 355001.656300000846386, 257270.854699999094009 ], [ 355003.358599998056889, 257298.612700000405312 ], [ 355003.308200001716614, 257304.522900000214577 ], [ 355035.57150000333786, 257303.520399998873472 ], [ 355033.831799998879433, 257269.089899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96698785, "LATITUDE": 18.34526486, "OBJECTID_1": 7393, "PARCEL_NO_": "105102020700", "Tax_Legal_": "LINDBERG BAY 61AB SOUTHSIDE QTR", "Name": "QUETEL, JULIAN", "Address": "PO Box 303975", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32300, "Improved_V": 207000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.72059723300001, "SHAPE_Area": 1133.07306937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355001.234499998390675, 257263.975900001823902 ], [ 354968.971199996769428, 257264.978399999439716 ], [ 354970.288999997079372, 257299.608600001782179 ], [ 355003.358599998056889, 257298.612700000405312 ], [ 355001.234499998390675, 257263.975900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95545286, "LATITUDE": 18.34527692, "OBJECTID_1": 8147, "PARCEL_NO_": "105202025900", "Tax_Legal_": "19-2 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "HERMAN, JOAN, JANE & JOHN B", "Address": "PO Box 302792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20600, "Improved_V": 18500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.794064934, "SHAPE_Area": 936.22476346899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356186.454499997198582, 257280.642499998211861 ], [ 356189.449600003659725, 257307.686999998986721 ], [ 356207.175899997353554, 257309.30970000103116 ], [ 356224.227099999785423, 257295.517099998891354 ], [ 356225.870300002396107, 257291.94200000166893 ], [ 356226.728799998760223, 257285.827300000935793 ], [ 356224.336800001561642, 257282.64130000025034 ], [ 356220.328599996864796, 257279.86430000141263 ], [ 356186.454499997198582, 257280.642499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96597574, "LATITUDE": 18.34533498, "OBJECTID_1": 7519, "PARCEL_NO_": "105201031800", "Tax_Legal_": "LINDBERG BAY 60-6 4A SOUTHSIDE QTR", "Name": "FREEMAN, ALLEN R", "Address": "PO Box 301973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10800, "Improved_V": 133900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.952538169099995, "SHAPE_Area": 534.45200759399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355106.722999997437, 257281.093499999493361 ], [ 355077.69030000269413, 257281.489199999719858 ], [ 355079.14469999819994, 257300.077300000935793 ], [ 355108.181000001728535, 257299.259500000625849 ], [ 355106.722999997437, 257281.093499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201073600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96103261, "LATITUDE": 18.3451566, "OBJECTID_1": 7858, "PARCEL_NO_": "105201073600", "Tax_Legal_": "CONTANT 258 7A S S QTR", "Name": "BONNER, WINSTON", "Address": "11-2 Sorgenfri", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 88600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.25198839699999, "SHAPE_Area": 2138.1446091500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355642.854299999773502, 257293.291999999433756 ], [ 355630.357799999415874, 257245.693599998950958 ], [ 355614.193800002336502, 257249.994300000369549 ], [ 355581.819099999964237, 257264.083700001239777 ], [ 355609.698299996554852, 257304.419599998742342 ], [ 355642.854299999773502, 257293.291999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95755369, "LATITUDE": 18.34508508, "OBJECTID_1": 8098, "PARCEL_NO_": "105202020700", "Tax_Legal_": "CONTANT 93B-1 7A S S QTR", "Name": "GARBUTT, YVETTE", "Address": "PO Box 8206", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47200, "Improved_V": 240800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.93944412500002, "SHAPE_Area": 2996.7051709399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355968.030900001525879, 257286.84010000154376 ], [ 356010.487199999392033, 257305.296100001782179 ], [ 356011.637500002980232, 257261.268699999898672 ], [ 356011.714900001883507, 257252.192400000989437 ], [ 356017.45440000295639, 257241.051399998366833 ], [ 356002.967699997127056, 257237.766399998217821 ], [ 355972.223499998450279, 257249.758200000971556 ], [ 355949.502899996936321, 257266.459699999541044 ], [ 355933.369499996304512, 257267.172100000083447 ], [ 355926.031800001859665, 257276.611200001090765 ], [ 355936.540799997746944, 257273.530799999833107 ], [ 355937.321900002658367, 257276.492499999701977 ], [ 355921.159699998795986, 257280.582100000232458 ], [ 355948.579700000584126, 257280.173300001770258 ], [ 355958.23929999768734, 257282.152199998497963 ], [ 355965.469099998474121, 257285.377700001001358 ], [ 355968.030900001525879, 257286.84010000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201074000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95924922, "LATITUDE": 18.34521052, "OBJECTID_1": 7861, "PARCEL_NO_": "105201074000", "Tax_Legal_": "CONTANT 262 SOUTHSIDE QTR", "Name": "TRUST AGREEMENT OF ANTHON WINSTON ADAMS", "Address": "PO Box 304417", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88200, "Improved_V": 272800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.596517584, "SHAPE_Area": 1093.0722847300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355788.280000001192093, 257260.496100001037121 ], [ 355787.1554000005126, 257297.850499998778105 ], [ 355791.194200001657009, 257297.039200000464916 ], [ 355804.897900000214577, 257297.573499999940395 ], [ 355814.555699996650219, 257299.7635000012815 ], [ 355820.178300000727177, 257302.342599999159575 ], [ 355824.395000003278255, 257280.634500000625849 ], [ 355817.197599999606609, 257273.609499998390675 ], [ 355810.78660000115633, 257268.912999998778105 ], [ 355800.349500000476837, 257263.550200000405312 ], [ 355788.280000001192093, 257260.496100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040200", "MAP": "G9-2390-T76", "PARCEL_NAM": "30-1", "ACRE": null, "LONGITUDE": -64.96244453, "LATITUDE": 18.34506491, "OBJECTID_1": 7581, "PARCEL_NO_": "105201040200", "Tax_Legal_": "30 LINDBERG BAY NO 4A SOUTHSIDE QTR", "Name": "JACKSON, JEROME", "Address": "BOX 16702 SUNNY ISLES", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 191500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.854287183, "SHAPE_Area": 5340.27781848 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355528.837999999523163, 257235.996800001710653 ], [ 355423.171499997377396, 257239.776000000536442 ], [ 355424.456299997866154, 257253.082899998873472 ], [ 355411.418099999427795, 257251.897599998861551 ], [ 355413.830899998545647, 257295.006099998950958 ], [ 355442.080600000917912, 257291.8597999997437 ], [ 355470.330399997532368, 257288.713500000536442 ], [ 355511.493600003421307, 257284.195300001651049 ], [ 355528.837999999523163, 257235.996800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95261381, "LATITUDE": 18.34508764, "OBJECTID_1": 8191, "PARCEL_NO_": "105202030500", "Tax_Legal_": "CONTANT 11-9 SOUTHSIDE QTR", "Name": "ASFOUR, IBRAHIM & ABLA (CO-TRUSTEES)", "Address": "5521 Curacao Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 166600, "Improved_V": 660700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.58937121100001, "SHAPE_Area": 2056.9551497399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356494.784199997782707, 257245.802499998360872 ], [ 356468.814900003373623, 257265.221599999815226 ], [ 356509.615000002086163, 257303.341299999505281 ], [ 356546.098600000143051, 257280.208500001579523 ], [ 356525.226199999451637, 257269.271899998188019 ], [ 356501.205899998545647, 257249.232500001788139 ], [ 356494.784199997782707, 257245.802499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201073500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96067058, "LATITUDE": 18.34506596, "OBJECTID_1": 7857, "PARCEL_NO_": "105201073500", "Tax_Legal_": "CONTANT 257 7A S S QTR", "Name": "RIVERA, JUAN & CARDINA V", "Address": "PO Box 8992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22100, "Improved_V": 133500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.712501543, "SHAPE_Area": 1647.61075865 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355677.640799999237061, 257280.066700000315905 ], [ 355666.685099996626377, 257240.924699999392033 ], [ 355630.357799999415874, 257245.693599998950958 ], [ 355642.854299999773502, 257293.291999999433756 ], [ 355677.640799999237061, 257280.066700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201035300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96483616, "LATITUDE": 18.34510762, "OBJECTID_1": 7556, "PARCEL_NO_": "105201035300", "Tax_Legal_": "31D ESTATE LINDBERG BAY No.4 SOUTHSIDE QTR.", "Name": "SCHULTERBRANDT, ARIEL", "Address": "BOX 4109", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29600, "Improved_V": 212300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.65958093500001, "SHAPE_Area": 982.52120728399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355221.555600002408028, 257242.558899998664856 ], [ 355207.8429000005126, 257243.079900000244379 ], [ 355201.388800002634525, 257243.449299998581409 ], [ 355204.223899997770786, 257289.279800001531839 ], [ 355226.81139999628067, 257288.198100000619888 ], [ 355221.555600002408028, 257242.558899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96632566, "LATITUDE": 18.3452379, "OBJECTID_1": 7522, "PARCEL_NO_": "105201032100", "Tax_Legal_": "LINDBERG BAY 60-9 SOUTHSIDE QTR", "Name": "HODGE, EDGAR & ZULAU", "Address": "8609 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 248200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.587265163, "SHAPE_Area": 731.98997109499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355072.022799998521805, 257284.186999998986721 ], [ 355071.358499996364117, 257267.505199998617172 ], [ 355039.093400001525879, 257268.718800000846386 ], [ 355039.754100002348423, 257285.822700001299381 ], [ 355040.130900003015995, 257290.039599999785423 ], [ 355071.959799997508526, 257291.574799999594688 ], [ 355072.022799998521805, 257284.186999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202050100", "MAP": "D9-379-T63", "PARCEL_NAM": "22-1A", "ACRE": "0.50", "LONGITUDE": -64.9516053, "LATITUDE": 18.34495588, "OBJECTID_1": 8300, "PARCEL_NO_": "105202050100", "Tax_Legal_": "CONTANT 22 1 A 7BA SOUTHSIDE QTR", "Name": "COMISSIONG, RICHARD", "Address": "PO Box 335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.51389626, "SHAPE_Area": 1232.9415617899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356616.420100003480911, 257296.455899998545647 ], [ 356623.416199997067451, 257293.484900001436472 ], [ 356625.471500001847744, 257239.272700000554323 ], [ 356602.093800000846386, 257238.448100000619888 ], [ 356589.194600000977516, 257238.131400000303984 ], [ 356614.534500002861023, 257292.589899998158216 ], [ 356616.420100003480911, 257296.455899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9659859, "LATITUDE": 18.34518811, "OBJECTID_1": 7521, "PARCEL_NO_": "105201032000", "Tax_Legal_": "60-8 LINDBERG BAY SOUTHSIDE QUARTER", "Name": "TOMAR, DENNIS (LIFE ESTATE)", "Address": "1609 Rosedowne Way", "City": "Apopka", "State": "Florida", "Zip": 32703, "Country": "United States", "Land_Value": 11700, "Improved_V": 106700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.414164192300007, "SHAPE_Area": 410.96616560400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355106.722999997437, 257281.093499999493361 ], [ 355106.038999997079372, 257266.733600001782179 ], [ 355089.101000003516674, 257267.228199999779463 ], [ 355077.002700001001358, 257267.551399998366833 ], [ 355077.69030000269413, 257281.489199999719858 ], [ 355106.722999997437, 257281.093499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201035000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96562263, "LATITUDE": 18.34509118, "OBJECTID_1": 7554, "PARCEL_NO_": "105201035000", "Tax_Legal_": "LINDBERG BAY 31L 4 SOUTHSIDE QTR", "Name": "HUYGHUE, KENNETH", "Address": "PO Box 8121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31900, "Improved_V": 201800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.27215558099999, "SHAPE_Area": 1583.3510965200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355105.381899997591972, 257249.207400001585484 ], [ 355106.038999997079372, 257266.733600001782179 ], [ 355106.722999997437, 257281.093499999493361 ], [ 355132.535800002515316, 257280.038199998438358 ], [ 355155.121500000357628, 257279.167599998414516 ], [ 355153.792999997735023, 257245.804000001400709 ], [ 355105.381899997591972, 257249.207400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201073400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96034192, "LATITUDE": 18.34497678, "OBJECTID_1": 7856, "PARCEL_NO_": "105201073400", "Tax_Legal_": "CONTANT 256 S S QTR", "Name": "LANS, AVERY A.", "Address": "8243 B Bournefield", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 146800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.926265336, "SHAPE_Area": 1343.1056823399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355711.619199998676777, 257267.045899998396635 ], [ 355699.812200002372265, 257233.174300000071526 ], [ 355666.685099996626377, 257240.924699999392033 ], [ 355677.640799999237061, 257280.066700000315905 ], [ 355711.619199998676777, 257267.045899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202038300", "MAP": "A9-678-T006", "PARCEL_NAM": "11-5-A REM", "ACRE": ".229", "LONGITUDE": -64.95347722, "LATITUDE": 18.34500958, "OBJECTID_1": 8240, "PARCEL_NO_": "105202038300", "Tax_Legal_": "11-5A CONTANT NO.7BA SOUTHSIDE QTR", "Name": "CREQUE, RAPHAEL & MONIQUE C.", "Address": "PO Box 10106", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17500, "Improved_V": 85300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.68797981900001, "SHAPE_Area": 781.11242015000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356394.280100002884865, 257268.243700001388788 ], [ 356399.769100002944469, 257270.381799999624491 ], [ 356398.326700001955032, 257273.355700001120567 ], [ 356406.472000002861023, 257277.236299999058247 ], [ 356405.888099998235703, 257278.280200000852346 ], [ 356413.836400002241135, 257282.292399998754263 ], [ 356439.839800000190735, 257258.862799998372793 ], [ 356402.815999999642372, 257250.749299999326468 ], [ 356394.280100002884865, 257268.243700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96633676, "LATITUDE": 18.34506499, "OBJECTID_1": 7524, "PARCEL_NO_": "105201032300", "Tax_Legal_": "LINDBERG 60 11 4A SOUTHSIDE", "Name": "CALLWOOD, WARREN M", "Address": "521 Seminary Row", "City": "New York", "State": "New York", "Zip": 10027, "Country": "United States", "Land_Value": 10800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.879942075499997, "SHAPE_Area": 505.17617388399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355070.687100000679493, 257251.667700000107288 ], [ 355038.418399997055531, 257253.303399998694658 ], [ 355039.093400001525879, 257268.718800000846386 ], [ 355071.358499996364117, 257267.505199998617172 ], [ 355070.687100000679493, 257251.667700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202123300", "MAP": "D9-8294-T009", "PARCEL_NAM": "107", "ACRE": ".03", "LONGITUDE": -64.94029846, "LATITUDE": 18.34508905, "OBJECTID_1": 8465, "PARCEL_NO_": "105202123300", "Tax_Legal_": "107 ESTATE SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "JACOBS, CORDELL & ELAINE", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.062774312499997, "SHAPE_Area": 143.31414233699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357799.998999997973442, 257280.549699999392033 ], [ 357794.363799996674061, 257279.448100000619888 ], [ 357803.940700002014637, 257291.136599998921156 ], [ 357811.213699996471405, 257289.296300001442432 ], [ 357821.738899998366833, 257284.316199999302626 ], [ 357811.271200001239777, 257282.541799999773502 ], [ 357799.998999997973442, 257280.549699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96607201, "LATITUDE": 18.34505233, "OBJECTID_1": 7551, "PARCEL_NO_": "105201034700", "Tax_Legal_": "LINDBERG BAY 60-10A S S QTR", "Name": "GUMBS, WILLIAM (LIFE ESTATE)", "Address": "8610 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.785876283599997, "SHAPE_Area": 204.75952881200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355089.101000003516674, 257267.228199999779463 ], [ 355089.243100002408028, 257250.552999999374151 ], [ 355076.333099998533726, 257251.50279999896884 ], [ 355077.002700001001358, 257267.551399998366833 ], [ 355089.101000003516674, 257267.228199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96593432, "LATITUDE": 18.34504565, "OBJECTID_1": 7523, "PARCEL_NO_": "105201032200", "Tax_Legal_": "LINDBERG 60-10 SOUTHSIDE QTR", "Name": "GUMBS, WILLIAM (LIFE ESTATE)", "Address": "8610 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6400, "Improved_V": 145400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.354337724700002, "SHAPE_Area": 283.05514253799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355105.381899997591972, 257249.207400001585484 ], [ 355089.243100002408028, 257250.552999999374151 ], [ 355089.101000003516674, 257267.228199999779463 ], [ 355106.038999997079372, 257266.733600001782179 ], [ 355105.381899997591972, 257249.207400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202033100", "MAP": "D9-6142-T96", "PARCEL_NAM": "11-17-B", "ACRE": ".46", "LONGITUDE": -64.95217844, "LATITUDE": 18.34475882, "OBJECTID_1": 8217, "PARCEL_NO_": "105202033100", "Tax_Legal_": "11-17B ESTATE CONTANT NO.7BA SOUTHSIDE QTR", "Name": "MARTIN, YVONNE (LIFE ESTATE)", "Address": "PO Box 12226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.812172909, "SHAPE_Area": 1330.1404006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356547.505500003695488, 257209.714800000190735 ], [ 356532.209700003266335, 257265.407000001519918 ], [ 356535.719099998474121, 257268.0912000015378 ], [ 356545.360699996352196, 257272.180900000035763 ], [ 356576.234999999403954, 257218.15989999845624 ], [ 356547.505500003695488, 257209.714800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201073000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95910155, "LATITUDE": 18.34491068, "OBJECTID_1": 7853, "PARCEL_NO_": "105201073000", "Tax_Legal_": "CONTANT 252 No.7A SOUTHSIDE QTR.", "Name": "RORY EDDY ANDREWS and WENDY BOUGOUNEAU-ANDREWS", "Address": "PO Box 11036", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.01602840699999, "SHAPE_Area": 913.92711443899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355805.496699996292591, 257227.284299999475479 ], [ 355802.039499998092651, 257254.486999999731779 ], [ 355816.491899996995926, 257261.782499998807907 ], [ 355828.498499996960163, 257272.224399998784065 ], [ 355829.351599998772144, 257266.742899999022484 ], [ 355842.407200001180172, 257248.695700000971556 ], [ 355805.496699996292591, 257227.284299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102020900", "MAP": null, "PARCEL_NAM": "61AA", "ACRE": null, "LONGITUDE": -64.96700895, "LATITUDE": 18.34494231, "OBJECTID_1": 7395, "PARCEL_NO_": "105102020900", "Tax_Legal_": "LINDBERG BAY 61AA SOUTHSIDE", "Name": "GOTTLIEB, VERNETTE, ROY JR. , K", "Address": "311 37th St", "City": "Union City", "State": "New Jersey", "Zip": 7087, "Country": "United States", "Land_Value": 36400, "Improved_V": 144200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.73307796700001, "SHAPE_Area": 1159.65707944 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354997.846199996769428, 257226.704500000923872 ], [ 354967.816100001335144, 257228.027399998158216 ], [ 354968.971199996769428, 257264.978399999439716 ], [ 355001.234499998390675, 257263.975900001823902 ], [ 355000.505500003695488, 257254.89299999922514 ], [ 354999.022399999201298, 257239.682100001722574 ], [ 354997.846199996769428, 257226.704500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202033800", "MAP": "A9-794-T014", "PARCEL_NAM": "107-6", "ACRE": "2.55", "LONGITUDE": -64.95536869, "LATITUDE": 18.34461693, "OBJECTID_1": 8224, "PARCEL_NO_": "105202033800", "Tax_Legal_": "CONTANT 107-6&6-1 7B S S QTR", "Name": "CLEAR VIEW VILLAS LIMITED PARTNERSHIP", "Address": "PO Box 24096", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 365300, "Improved_V": 2220400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 484.09487725100001, "SHAPE_Area": 12481.8010037 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356242.207400001585484, 257270.938400000333786 ], [ 356261.377400003373623, 257261.986900001764297 ], [ 356262.101000003516674, 257253.7972999997437 ], [ 356272.784999996423721, 257249.838899999856949 ], [ 356287.468699999153614, 257244.398499999195337 ], [ 356258.386200003325939, 257172.01969999819994 ], [ 356262.383799999952316, 257170.65089999884367 ], [ 356265.6199000030756, 257169.410799998790026 ], [ 356261.674599997699261, 257159.246100001037121 ], [ 356256.147299997508526, 257145.479699999094009 ], [ 356246.6621999964118, 257123.026200000196695 ], [ 356237.609300002455711, 257144.483600001782179 ], [ 356233.534599997103214, 257149.516499999910593 ], [ 356232.715700000524521, 257150.987500000745058 ], [ 356231.086900003254414, 257152.874000001698732 ], [ 356227.005000002682209, 257158.751200001686811 ], [ 356226.184299997985363, 257160.433200001716614 ], [ 356218.866300001740456, 257167.550500001758337 ], [ 356203.449299998581409, 257178.823399998247623 ], [ 356162.161899998784065, 257197.906100001186132 ], [ 356156.489000000059605, 257201.237199999392033 ], [ 356150.785400003194809, 257208.156599998474121 ], [ 356139.27589999884367, 257234.026900000870228 ], [ 356137.612899996340275, 257239.923900000751019 ], [ 356138.33110000193119, 257250.273299999535084 ], [ 356142.296099998056889, 257258.116300001740456 ], [ 356151.892800003290176, 257267.482900001108646 ], [ 356159.921700000762939, 257271.559399999678135 ], [ 356172.804700002074242, 257273.775800000876188 ], [ 356242.207400001585484, 257270.938400000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102021200", "MAP": "G9-1137-T68", "PARCEL_NAM": "61Bba", "ACRE": "0.13", "LONGITUDE": -64.96670658, "LATITUDE": 18.344949, "OBJECTID_1": 7398, "PARCEL_NO_": "105102021200", "Tax_Legal_": "LINDBERG BAY 61 BBA 6A SOUTHSIDE QTR", "Name": "FRANCIS, CARL R.", "Address": "PO Box 12484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13800, "Improved_V": 121400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.078584756300003, "SHAPE_Area": 501.53689734900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355032.76519999653101, 257254.312600001692772 ], [ 355032.086599998176098, 257239.319400001317263 ], [ 354999.022399999201298, 257239.682100001722574 ], [ 355000.505500003695488, 257254.89299999922514 ], [ 355000.544100001454353, 257255.373700000345707 ], [ 355032.76519999653101, 257254.312600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201070100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95825502, "LATITUDE": 18.34464775, "OBJECTID_1": 7824, "PARCEL_NO_": "105201070100", "Tax_Legal_": "CONTANT 159 SOUTHSIDE QTR", "Name": "PAUL, CURT & DARLENE", "Address": "PO Box 304324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53300, "Improved_V": 149600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.82493334500001, "SHAPE_Area": 3240.4905004900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355888.001299999654293, 257197.350999999791384 ], [ 355877.377199999988079, 257213.940400000661612 ], [ 355874.92230000346899, 257218.142200000584126 ], [ 355919.637000001966953, 257270.015000000596046 ], [ 355922.095499999821186, 257265.390999998897314 ], [ 355926.181000001728535, 257259.091699998825788 ], [ 355936.08330000191927, 257232.57490000128746 ], [ 355937.744499996304512, 257226.888999998569489 ], [ 355941.824600003659725, 257221.222899999469519 ], [ 355903.531599998474121, 257172.780099999159575 ], [ 355888.001299999654293, 257197.350999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201031000", "MAP": "G9-19-T50", "PARCEL_NAM": "31A", "ACRE": null, "LONGITUDE": -64.96396764000001, "LATITUDE": 18.34494818, "OBJECTID_1": 7513, "PARCEL_NO_": "105201031000", "Tax_Legal_": "LINDBERG 31A SOUTHSIDE QUARTER", "Name": "HUYGHUES, WILTON & OTHERS", "Address": "PO Box 8121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19400, "Improved_V": 149200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.015539774, "SHAPE_Area": 914.609781301 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355320.811200000345707, 257234.083099998533726 ], [ 355288.531700000166893, 257236.985300000756979 ], [ 355287.522200003266335, 257260.830600000917912 ], [ 355322.161300003528595, 257264.913800001144409 ], [ 355320.811200000345707, 257234.083099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201073300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96008342, "LATITUDE": 18.34489635, "OBJECTID_1": 7855, "PARCEL_NO_": "105201073300", "Tax_Legal_": "255 CONTANT 7A SOUTSIDE QTR", "Name": "JOHNSON, ELTON ELLSWORTH", "Address": "PO Box 7665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.727381575, "SHAPE_Area": 753.55107356999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355732.090599998831749, 257259.2010000012815 ], [ 355721.277199998497963, 257228.142599999904633 ], [ 355699.812200002372265, 257233.174300000071526 ], [ 355711.619199998676777, 257267.045899998396635 ], [ 355732.090599998831749, 257259.2010000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202030100", "MAP": "A9-678-T006", "PARCEL_NAM": "11-4", "ACRE": ".560", "LONGITUDE": -64.95398674, "LATITUDE": 18.34489139, "OBJECTID_1": 8187, "PARCEL_NO_": "105202030100", "Tax_Legal_": "CONTANT 11 4 SOUTHSIDE QTR. 7BA", "Name": "SEVEN STARS REALTY LLC", "Address": "PO Box 928", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 174800, "Improved_V": 257800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.44798048199999, "SHAPE_Area": 3008.7984923700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356290.583999998867512, 257267.970899999141693 ], [ 356366.755400002002716, 257267.589999999850988 ], [ 356367.99889999628067, 257267.562899999320507 ], [ 356383.300800003111362, 257269.799100000411272 ], [ 356385.159400001168251, 257270.390900000929832 ], [ 356387.376400001347065, 257265.55460000038147 ], [ 356394.280100002884865, 257268.243700001388788 ], [ 356402.815999999642372, 257250.749299999326468 ], [ 356414.295000001788139, 257228.467300001531839 ], [ 356398.9695999994874, 257228.97520000115037 ], [ 356389.274099998176098, 257231.217799998819828 ], [ 356360.214500002563, 257234.779699999839067 ], [ 356334.360299997031689, 257240.689800001680851 ], [ 356320.597300000488758, 257247.120999999344349 ], [ 356311.677500002086163, 257252.958700001239777 ], [ 356304.368500001728535, 257259.020599998533726 ], [ 356290.5929000005126, 257266.929400000721216 ], [ 356290.583999998867512, 257267.970899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9576888, "LATITUDE": 18.34474142, "OBJECTID_1": 8102, "PARCEL_NO_": "105202021100", "Tax_Legal_": "CONTANT 93B-1-A 7A S S QTR", "Name": "MORON, RICHARD & COREEN", "Address": "PO Box 1064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36000, "Improved_V": 162400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.930358856, "SHAPE_Area": 2599.5743951300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355984.742600001394749, 257200.042599998414516 ], [ 355979.967699997127056, 257192.615200001746416 ], [ 355976.778399996459484, 257188.367300000041723 ], [ 355966.141699999570847, 257206.434200000017881 ], [ 355952.297700002789497, 257222.364000000059605 ], [ 355945.768100000917912, 257231.598700001835823 ], [ 355941.653800003230572, 257241.275400001555681 ], [ 355933.369499996304512, 257267.172100000083447 ], [ 355949.502899996936321, 257266.459699999541044 ], [ 355972.223499998450279, 257249.758200000971556 ], [ 356002.967699997127056, 257237.766399998217821 ], [ 356005.436999998986721, 257231.875999998301268 ], [ 355992.701399996876717, 257212.351199999451637 ], [ 355984.742600001394749, 257200.042599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95639923, "LATITUDE": 18.34491388, "OBJECTID_1": 8105, "PARCEL_NO_": "105202021400", "Tax_Legal_": "CONTANT 12 7A SOUTHSIDE QTR", "Name": "ESPRIT, CORNEL D and JOSSELYN J", "Address": "PO Box 8093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24500, "Improved_V": 204500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.178765406, "SHAPE_Area": 1116.8467547800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356133.423100002110004, 257258.465799998492002 ], [ 356131.077899999916553, 257249.791799999773502 ], [ 356081.22860000282526, 257232.707400001585484 ], [ 356081.628600001335144, 257235.790699999779463 ], [ 356080.5033999979496, 257260.037399999797344 ], [ 356085.012000001966953, 257261.869300000369549 ], [ 356089.029200002551079, 257263.590900000184774 ], [ 356089.860600002110004, 257260.642400000244379 ], [ 356091.484099999070168, 257259.38910000026226 ], [ 356094.714699998497963, 257258.782299999147654 ], [ 356134.146700002253056, 257268.182000000029802 ], [ 356137.380900003015995, 257267.153000000864267 ], [ 356133.423100002110004, 257258.465799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95249124, "LATITUDE": 18.34465712, "OBJECTID_1": 8218, "PARCEL_NO_": "105202033200", "Tax_Legal_": "11-16 CONTANT 7BA SOUTHSIDE QUARTER", "Name": "SIMRA Y SYDNEY LIV TR", "Address": "PO Box 301753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.47810412800001, "SHAPE_Area": 2340.81767657 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356529.428400002419949, 257205.609400000423193 ], [ 356492.778800003230572, 257197.234499998390675 ], [ 356494.843500003218651, 257238.836899999529123 ], [ 356504.474299997091293, 257244.192999999970198 ], [ 356524.08839999884367, 257259.195300001651049 ], [ 356532.209700003266335, 257265.407000001519918 ], [ 356547.505500003695488, 257209.714800000190735 ], [ 356533.018899999558926, 257206.429800000041723 ], [ 356530.671499997377396, 257205.893399998545647 ], [ 356529.428400002419949, 257205.609400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202030300", "MAP": "G9-716-T63", "PARCEL_NAM": "11-10", "ACRE": null, "LONGITUDE": -64.95316693, "LATITUDE": 18.34483169, "OBJECTID_1": 8189, "PARCEL_NO_": "105202030300", "Tax_Legal_": "CONTANT 11-10 7BA SOUTHSIDE QTR.", "Name": "ASFOUR, IBRAHIM & ABLA (CO-TRUSTEES)", "Address": "5521 Curacao Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163400, "Improved_V": 583100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.39635316299999, "SHAPE_Area": 2105.2125248500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356414.295000001788139, 257228.467300001531839 ], [ 356402.815999999642372, 257250.749299999326468 ], [ 356439.839800000190735, 257258.862799998372793 ], [ 356468.814900003373623, 257265.221599999815226 ], [ 356494.784199997782707, 257245.802499998360872 ], [ 356485.148000001907349, 257241.079500000923872 ], [ 356461.836800001561642, 257232.445000000298023 ], [ 356456.20160000026226, 257231.343400001525879 ], [ 356414.295000001788139, 257228.467300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96634633, "LATITUDE": 18.34492207, "OBJECTID_1": 7526, "PARCEL_NO_": "105201032500", "Tax_Legal_": "LINDBERG 60-13 SOUTHSIDE QTR", "Name": "HUGHES, HERBERT", "Address": "PO Box 303592", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 231500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.706500114700006, "SHAPE_Area": 518.62243179200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355070.013800002634525, 257236.041200000792742 ], [ 355037.752300001680851, 257236.832699999213219 ], [ 355038.418399997055531, 257253.303399998694658 ], [ 355070.687100000679493, 257251.667700000107288 ], [ 355070.013800002634525, 257236.041200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96600359, "LATITUDE": 18.34490424, "OBJECTID_1": 7525, "PARCEL_NO_": "105201032400", "Tax_Legal_": "60-12 LINDBERG BAY 4A&4B SOUTHSIDE QTR.", "Name": "SAUNDERS, DEAN & FRANCIS, LESMORE", "Address": "8612 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10200, "Improved_V": 128100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.634703438399995, "SHAPE_Area": 443.73043274100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355105.381899997591972, 257249.207400001585484 ], [ 355104.699699997901917, 257234.636399999260902 ], [ 355075.66160000115633, 257235.665300000458956 ], [ 355076.333099998533726, 257251.50279999896884 ], [ 355089.243100002408028, 257250.552999999374151 ], [ 355105.381899997591972, 257249.207400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201073200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95979412, "LATITUDE": 18.34481157, "OBJECTID_1": 7854, "PARCEL_NO_": "105201073200", "Tax_Legal_": "CONTANT 254 7A S S QTR", "Name": "GEORGE, SR., GARY A. & WORRELL, KATHLYN P.", "Address": "PO Box 11275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20600, "Improved_V": 249600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.73975456100001, "SHAPE_Area": 1312.7627324699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355766.055699996650219, 257218.939899999648333 ], [ 355762.833999998867512, 257218.491399999707937 ], [ 355733.747500002384186, 257225.219399999827147 ], [ 355721.277199998497963, 257228.142599999904633 ], [ 355732.090599998831749, 257259.2010000012815 ], [ 355739.125500001013279, 257256.505199998617172 ], [ 355754.488600000739098, 257251.564699999988079 ], [ 355769.021999999880791, 257249.361699998378754 ], [ 355766.055699996650219, 257218.939899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202033800", "MAP": "A9-794-T014", "PARCEL_NAM": "107-6-1", "ACRE": ".13", "LONGITUDE": -64.95475318, "LATITUDE": 18.34479183, "OBJECTID_1": 8224, "PARCEL_NO_": "105202033800", "Tax_Legal_": "CONTANT 107-6&6-1 7B S S QTR", "Name": "CLEAR VIEW VILLAS LIMITED PARTNERSHIP", "Address": "PO Box 24096", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 365300, "Improved_V": 2220400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.95232654300003, "SHAPE_Area": 913.17415076700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356274.313100002706051, 257190.169199999421835 ], [ 356265.6199000030756, 257169.410799998790026 ], [ 356262.383799999952316, 257170.65089999884367 ], [ 356287.658900000154972, 257232.708200000226498 ], [ 356290.658399999141693, 257240.617400001734495 ], [ 356291.522699996829033, 257242.896499998867512 ], [ 356272.784999996423721, 257249.838899999856949 ], [ 356262.101000003516674, 257253.7972999997437 ], [ 356260.653200000524521, 257270.184300001710653 ], [ 356263.149499997496605, 257270.08219999819994 ], [ 356272.044100001454353, 257267.199700001627207 ], [ 356281.748599998652935, 257263.901700001209974 ], [ 356300.378300003707409, 257254.132699999958277 ], [ 356298.814300000667572, 257248.420400001108646 ], [ 356294.859999999403954, 257239.311000000685453 ], [ 356276.683499999344349, 257195.888099998235703 ], [ 356274.313100002706051, 257190.169199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201035400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96564569, "LATITUDE": 18.34471833, "OBJECTID_1": 7557, "PARCEL_NO_": "105201035400", "Tax_Legal_": "LINDBERG BAY 29C SOUTHSIDE QUARTER", "Name": "FRANCOIS, ESTHER MAUDE REESE & FRANK FRANCOIS", "Address": "PO Box 8875", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64100, "Improved_V": 135600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.64058365599999, "SHAPE_Area": 2437.36984063 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355134.052400000393391, 257196.668699998408556 ], [ 355102.593599997460842, 257197.888900000602007 ], [ 355103.299199998378754, 257209.715900000184774 ], [ 355104.013800002634525, 257220.487500000745058 ], [ 355104.699699997901917, 257234.636399999260902 ], [ 355105.381899997591972, 257249.207400001585484 ], [ 355153.792999997735023, 257245.804000001400709 ], [ 355152.610200002789497, 257195.3429000005126 ], [ 355139.70380000025034, 257195.870600000023842 ], [ 355143.650799997150898, 257205.824299998581409 ], [ 355137.994000002741814, 257207.25560000166297 ], [ 355134.052400000393391, 257196.668699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301010600", "MAP": "D9-6565-T99", "PARCEL_NAM": "41", "ACRE": ".12", "LONGITUDE": -64.94221754, "LATITUDE": 18.34479381, "OBJECTID_1": 8944, "PARCEL_NO_": "105301010600", "Tax_Legal_": "41 SOLBERG LITTLE NORTH SIDE", "Name": "XAVIER, JONATHAN & DONA", "Address": "PO Box 502632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 55100, "Improved_V": 58200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.389133961100001, "SHAPE_Area": 481.70844586700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357612.980599999427795, 257266.714299999177456 ], [ 357611.206500001251698, 257235.256999999284744 ], [ 357603.638199999928474, 257234.401799999177456 ], [ 357597.182300001382828, 257234.982299998402596 ], [ 357596.122500002384186, 257264.737799998372793 ], [ 357606.275600001215935, 257266.468600001186132 ], [ 357612.980599999427795, 257266.714299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201035500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96515503000001, "LATITUDE": 18.34468554, "OBJECTID_1": 7558, "PARCEL_NO_": "105201035500", "Tax_Legal_": "LINDBERG BAY 29B SOUTHSIDE QUARTER", "Name": "FRANCOIS, ELMO", "Address": "PO Box 304844", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59900, "Improved_V": 115400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.74470361799999, "SHAPE_Area": 2716.5968080500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355153.792999997735023, 257245.804000001400709 ], [ 355158.634499996900558, 257245.421399999409914 ], [ 355174.767899997532368, 257244.709100000560284 ], [ 355196.549099996685982, 257243.620799999684095 ], [ 355201.388800002634525, 257243.449299998581409 ], [ 355207.8429000005126, 257243.079900000244379 ], [ 355206.656499996781349, 257193.041000001132488 ], [ 355152.610200002789497, 257195.3429000005126 ], [ 355153.792999997735023, 257245.804000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95452527, "LATITUDE": 18.3445842, "OBJECTID_1": 8223, "PARCEL_NO_": "105202033700", "Tax_Legal_": "CONTANT 11 11 7BA SOUTHSIDE QTR", "Name": "BANFIELD, CLIVE E. C. , TRUSTEE", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.03398386800001, "SHAPE_Area": 2010.48675205 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356276.683499999344349, 257195.888099998235703 ], [ 356294.859999999403954, 257239.311000000685453 ], [ 356298.814300000667572, 257248.420400001108646 ], [ 356300.378300003707409, 257254.132699999958277 ], [ 356305.246799997985363, 257250.583999998867512 ], [ 356313.363799996674061, 257244.317600000649691 ], [ 356330.366499997675419, 257236.22410000115633 ], [ 356309.040299996733665, 257183.909499999135733 ], [ 356276.683499999344349, 257195.888099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201035600", "MAP": "D9-970-T71", "PARCEL_NAM": "29A", "ACRE": null, "LONGITUDE": -64.96473916, "LATITUDE": 18.34463924, "OBJECTID_1": 7559, "PARCEL_NO_": "105201035600", "Tax_Legal_": "LINDBERG BAY 29A SOUTHSIDE QUARTER", "Name": "FRANCOIS, DONALD C. & FAYE M. (TRUSTEES)", "Address": "PO Box 303826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67600, "Improved_V": 115000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.20253693500001, "SHAPE_Area": 1914.7461881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355226.070900000631809, 257185.811700001358986 ], [ 355222.843900002539158, 257185.996300000697374 ], [ 355206.708599999547005, 257186.919799998402596 ], [ 355206.656499996781349, 257193.041000001132488 ], [ 355207.8429000005126, 257243.079900000244379 ], [ 355221.555600002408028, 257242.558899998664856 ], [ 355243.340400002896786, 257241.04839999973774 ], [ 355238.979099996387959, 257185.072900000959635 ], [ 355226.070900000631809, 257185.811700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95639383, "LATITUDE": 18.34471007, "OBJECTID_1": 8109, "PARCEL_NO_": "105202021800", "Tax_Legal_": "CONTANT ESTATE 12-2 No.7A SOUTHSIDE QTR.", "Name": "YANNI, ADAM & LISA", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 222700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.337298406, "SHAPE_Area": 1185.0679468200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356134.491899996995926, 257227.654899999499321 ], [ 356083.843500003218651, 257209.7195999994874 ], [ 356079.709499999880791, 257221.718100000172853 ], [ 356081.22860000282526, 257232.707400001585484 ], [ 356131.077899999916553, 257249.791799999773502 ], [ 356130.381300002336502, 257236.909400001168251 ], [ 356132.040600001811981, 257231.434500001370907 ], [ 356134.491899996995926, 257227.654899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102021400", "MAP": "D9-8894-T014", "PARCEL_NAM": "61BC & 61BCA", "ACRE": null, "LONGITUDE": -64.96672299, "LATITUDE": 18.34472336, "OBJECTID_1": 7400, "PARCEL_NO_": "105102021400", "Tax_Legal_": "61BCA LINDBERG BAY \nSOUTHSIDE QUARTER", "Name": "JOHN-BAPTISTE, RAQUEL L", "Address": "PO Box 302492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.039399342, "SHAPE_Area": 1168.9190649499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355031.420500002801418, 257222.848700001835823 ], [ 355030.768899999558926, 257204.689300000667572 ], [ 354995.674099996685982, 257205.636900000274181 ], [ 354997.548199996352196, 257223.415800001472235 ], [ 354999.022399999201298, 257239.682100001722574 ], [ 355032.086599998176098, 257239.319400001317263 ], [ 355031.420500002801418, 257222.848700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201035700", "MAP": "D9-8233-T009", "PARCEL_NAM": "29", "ACRE": "1.127", "LONGITUDE": -64.96420963, "LATITUDE": 18.34458987, "OBJECTID_1": 7560, "PARCEL_NO_": "105201035700", "Tax_Legal_": "LINDBERG BAY 29 SOUTHSIDE QUARTER", "Name": "ELMO FRANCOIS FAMILY TRUST", "Address": "PO Box 304844", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 112800, "Improved_V": 113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.543941362, "SHAPE_Area": 4397.3921507699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355263.184600003063679, 257183.371199999004602 ], [ 355238.979099996387959, 257185.072900000959635 ], [ 355243.340400002896786, 257241.04839999973774 ], [ 355247.373800002038479, 257240.870299998670816 ], [ 355288.531700000166893, 257236.985300000756979 ], [ 355320.811200000345707, 257234.083099998533726 ], [ 355317.263300001621246, 257177.269900001585484 ], [ 355263.184600003063679, 257183.371199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201072900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95873099000001, "LATITUDE": 18.34460569, "OBJECTID_1": 7852, "PARCEL_NO_": "105201072900", "Tax_Legal_": "CONTANT 241 7A S S QTR", "Name": "ROGERS, MARVA E, CM, DM", "Address": "PO Box 303981", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49000, "Improved_V": 46200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.61538759499999, "SHAPE_Area": 859.037126081 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355877.377199999988079, 257213.940400000661612 ], [ 355854.163099996745586, 257193.907600000500679 ], [ 355850.119000002741814, 257195.352200001478195 ], [ 355842.864000000059605, 257195.081700000911951 ], [ 355857.752300001680851, 257245.86600000038743 ], [ 355874.92230000346899, 257218.142200000584126 ], [ 355877.377199999988079, 257213.940400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96635193, "LATITUDE": 18.34477035, "OBJECTID_1": 7528, "PARCEL_NO_": "105201032700", "Tax_Legal_": "LINDBERG BAY 60 15 SOUTHSIDE QTR", "Name": "STEPHENS, MOSES", "Address": "BOX 3592", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.636049140899999, "SHAPE_Area": 566.110110588 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355069.358599998056889, 257218.304000001400709 ], [ 355037.093500003218651, 257219.517599999904633 ], [ 355037.752300001680851, 257236.832699999213219 ], [ 355070.013800002634525, 257236.041200000792742 ], [ 355069.358599998056889, 257218.304000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96600925, "LATITUDE": 18.34477139, "OBJECTID_1": 7527, "PARCEL_NO_": "105201032600", "Tax_Legal_": "LINDBERG BAY 60-14 SOUTHSIDE QTR.", "Name": "JONES, CYNTHIA, RUSSEL, PHYLLI", "Address": "PO Box 8364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11700, "Improved_V": 120700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.443571596200002, "SHAPE_Area": 411.56213671299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355104.013800002634525, 257220.487500000745058 ], [ 355074.97580000013113, 257221.516399998217821 ], [ 355075.66160000115633, 257235.665300000458956 ], [ 355104.699699997901917, 257234.636399999260902 ], [ 355104.013800002634525, 257220.487500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95292923, "LATITUDE": 18.34451352, "OBJECTID_1": 8219, "PARCEL_NO_": "105202033300", "Tax_Legal_": "11-15 ESTATE CONTANT 7BA SOUTHSIDE QTR", "Name": "ROLLINS, CINDY", "Address": "PO Box 303484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.42228888899999, "SHAPE_Area": 1668.0338320599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356447.74040000140667, 257183.355900000780821 ], [ 356454.635799996554852, 257225.842199999839067 ], [ 356463.499799996614456, 257226.548000000417233 ], [ 356494.843500003218651, 257238.836899999529123 ], [ 356492.778800003230572, 257197.234499998390675 ], [ 356479.902999997138977, 257194.173799999058247 ], [ 356447.74040000140667, 257183.355900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95158855, "LATITUDE": 18.3446333, "OBJECTID_1": 8301, "PARCEL_NO_": "105202050300", "Tax_Legal_": "CONTANT 22 2 SOUTHSIDE QTR", "Name": "SMALL, GODFREY & THELMA", "Address": "BOX 4703", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.477813379, "SHAPE_Area": 652.91628160699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356626.513400003314018, 257211.627999998629093 ], [ 356602.325800001621246, 257211.218899998813868 ], [ 356602.093800000846386, 257238.448100000619888 ], [ 356625.471500001847744, 257239.272700000554323 ], [ 356626.513400003314018, 257211.627999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95426257, "LATITUDE": 18.34448546, "OBJECTID_1": 8222, "PARCEL_NO_": "105202033600", "Tax_Legal_": "CONTANT ESTATE 11-12 7BA SOUTHSIDE QTR", "Name": "BANFIELD, CLIVE E. C. , TRUSTEE", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.52743092200001, "SHAPE_Area": 1413.31607897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356330.366499997675419, 257236.22410000115633 ], [ 356355.417999997735023, 257229.885299999266863 ], [ 356354.631399996578693, 257227.556800000369549 ], [ 356348.200699999928474, 257225.182100001722574 ], [ 356349.107699997723103, 257213.368299998342991 ], [ 356338.816299997270107, 257190.90819999948144 ], [ 356332.487999998033047, 257176.502000000327826 ], [ 356309.040299996733665, 257183.909499999135733 ], [ 356330.366499997675419, 257236.22410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102021100", "MAP": "D9-6857-T000", "PARCEL_NAM": "61A-4", "ACRE": null, "LONGITUDE": -64.96697687, "LATITUDE": 18.34410802, "OBJECTID_1": 7397, "PARCEL_NO_": "105102021100", "Tax_Legal_": "61A ESTATE LINDBERG BAY No.4 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.26836072499999, "SHAPE_Area": 900.079390913 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354969.524899996817112, 257170.097100000828505 ], [ 354999.062600001692772, 257170.198800001293421 ], [ 355003.942199997603893, 257135.442099999636412 ], [ 354996.681800000369549, 257135.804900001734495 ], [ 354989.421400003135204, 257136.167700000107288 ], [ 354983.773599997162819, 257136.543600000441074 ], [ 354980.532200001180172, 257138.416900001466274 ], [ 354978.901600003242493, 257140.514499999582767 ], [ 354969.524899996817112, 257170.097100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201072400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95903049, "LATITUDE": 18.34458819, "OBJECTID_1": 7847, "PARCEL_NO_": "105201072400", "Tax_Legal_": "CONTANT 240 7A S S QTR", "Name": "THOMAS, FELISE", "Address": "PO Box 10983", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34200, "Improved_V": 26100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.109215109, "SHAPE_Area": 754.95354312200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355833.207999996840954, 257192.680599998682737 ], [ 355805.602799996733665, 257214.830600000917912 ], [ 355808.788500003516674, 257219.500700000673532 ], [ 355845.778099998831749, 257231.624699998646975 ], [ 355835.57660000026226, 257198.610599998384714 ], [ 355835.592799998819828, 257196.710900001227856 ], [ 355833.207999996840954, 257192.680599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94281082000001, "LATITUDE": 18.3445837, "OBJECTID_1": 8948, "PARCEL_NO_": "105301011000", "Tax_Legal_": "39 ESTATE SOLBERG LITTLE NORTHSIDE QTR", "Name": "WHEATLEY, MELVINA LIFE", "Address": "28 Hidden Dr", "City": "Blackwood", "State": "New Jersey", "Zip": 8012, "Country": "United States", "Land_Value": 33900, "Improved_V": 71200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.383943984, "SHAPE_Area": 667.12730019399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357540.13910000026226, 257210.450699999928474 ], [ 357535.288699999451637, 257211.888700000941753 ], [ 357527.789099998772144, 257240.32490000128746 ], [ 357543.07490000128746, 257244.460799999535084 ], [ 357545.506399996578693, 257243.003100000321865 ], [ 357548.751400001347065, 257240.707600001245737 ], [ 357551.992899999022484, 257238.834300000220537 ], [ 357553.050899997353554, 257209.289900001138449 ], [ 357540.13910000026226, 257210.450699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96601682, "LATITUDE": 18.34465887, "OBJECTID_1": 7530, "PARCEL_NO_": "105201032900", "Tax_Legal_": "LINDBERG BAY 60-16 SOUTHSIDE QTR", "Name": "CHINNERY, OSWALD", "Address": "PO Box 302991", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 22200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.703000767299997, "SHAPE_Area": 313.52097268900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355103.299199998378754, 257209.715900000184774 ], [ 355074.261200003325939, 257210.744800001382828 ], [ 355074.97580000013113, 257221.516399998217821 ], [ 355104.013800002634525, 257220.487500000745058 ], [ 355103.299199998378754, 257209.715900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9663601, "LATITUDE": 18.34463021, "OBJECTID_1": 7529, "PARCEL_NO_": "105201032800", "Tax_Legal_": "LINDBERG BAY 60 17 SOUTHSIDE QTR", "Name": "MALONE, CLEARENCIA", "Address": "101-125 WEST 147th STREET", "City": "NEW YORK", "State": "New York", "Zip": 10039, "Country": "United States", "Land_Value": 10200, "Improved_V": 122500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.642262167499993, "SHAPE_Area": 436.92041073500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355068.667300000786781, 257204.788400001823902 ], [ 355036.402300000190735, 257206.002000000327826 ], [ 355037.093500003218651, 257219.517599999904633 ], [ 355069.358599998056889, 257218.304000001400709 ], [ 355068.667300000786781, 257204.788400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95388386, "LATITUDE": 18.34441618, "OBJECTID_1": 8221, "PARCEL_NO_": "105202033500", "Tax_Legal_": "11-12A & 11-13 CONTANT 7BA SOUTHSIDE QTR", "Name": "BAZAR, NASER M. & ZUDHIEH", "Address": "PO Box 10701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 181300, "Improved_V": 122700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.94294552700001, "SHAPE_Area": 3007.90722246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356342.183600001037121, 257174.259300000965595 ], [ 356338.816299997270107, 257190.90819999948144 ], [ 356349.107699997723103, 257213.368299998342991 ], [ 356354.631399996578693, 257227.556800000369549 ], [ 356355.417999997735023, 257229.885299999266863 ], [ 356408.706500001251698, 257221.877700001001358 ], [ 356386.591899998486042, 257167.445599999278784 ], [ 356342.183600001037121, 257174.259300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95628837, "LATITUDE": 18.34449409, "OBJECTID_1": 8110, "PARCEL_NO_": "105202021900", "Tax_Legal_": "CONTANT 12-3 7A SOUTHSIDE QTR", "Name": "RABSATT, PENN & FRANCIS", "Address": "12-3 Contant-St Rte", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24500, "Improved_V": 158300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.56000308399999, "SHAPE_Area": 1430.1663317099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356118.770300000905991, 257180.030200000852346 ], [ 356114.708200000226498, 257183.585499998182058 ], [ 356083.843500003218651, 257209.7195999994874 ], [ 356134.491899996995926, 257227.654899999499321 ], [ 356141.905199997127056, 257209.350400000810623 ], [ 356142.747500002384186, 257205.135499998927116 ], [ 356141.156400002539158, 257202.589299999177456 ], [ 356128.345299996435642, 257191.929800000041723 ], [ 356118.770300000905991, 257180.030200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94260002, "LATITUDE": 18.3445347, "OBJECTID_1": 8949, "PARCEL_NO_": "105301011100", "Tax_Legal_": "ESTATE SOLBERG 38 LITTLE NORTHSIDE QTR", "Name": "GOMEZ, REUBINA M.B. & RUTH M.", "Address": "PO BOX 985", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41000, "Improved_V": 200500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.295976873, "SHAPE_Area": 662.10682380799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357573.806500002741814, 257233.946600001305342 ], [ 357578.874499998986721, 257206.968100000172853 ], [ 357553.050899997353554, 257209.289900001138449 ], [ 357551.992899999022484, 257238.834300000220537 ], [ 357573.806500002741814, 257233.946600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95340232, "LATITUDE": 18.34439655, "OBJECTID_1": 8220, "PARCEL_NO_": "105202033400", "Tax_Legal_": "CONTANT 11-14 7BA SOUTHSIDE QTR", "Name": "EDMESTON, HULL", "Address": "PO Box 8721", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58500, "Improved_V": 128000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.97702811, "SHAPE_Area": 2570.1341293700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356408.706500001251698, 257221.877700001001358 ], [ 356454.635799996554852, 257225.842199999839067 ], [ 356447.74040000140667, 257183.355900000780821 ], [ 356396.280199997127056, 257166.0472999997437 ], [ 356386.591899998486042, 257167.445599999278784 ], [ 356408.706500001251698, 257221.877700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201070200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95799036, "LATITUDE": 18.34423329, "OBJECTID_1": 7825, "PARCEL_NO_": "105201070200", "Tax_Legal_": "CONTANT 161 SOUTHSIDE", "Name": "RICHARDSON, BERNADINE P. & AUS", "Address": "8240 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51400, "Improved_V": 291400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.03058824, "SHAPE_Area": 3242.96280217 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355945.691799998283386, 257145.894099999219179 ], [ 355928.917499996721745, 257127.180599998682737 ], [ 355928.076999999582767, 257131.184500001370907 ], [ 355922.337499998509884, 257142.325500000268221 ], [ 355903.531599998474121, 257172.780099999159575 ], [ 355941.824600003659725, 257221.222899999469519 ], [ 355961.38289999961853, 257197.107200000435114 ], [ 355969.562899999320507, 257183.453000001609325 ], [ 355972.041199997067451, 257176.507199998944998 ], [ 355945.691799998283386, 257145.894099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94240719, "LATITUDE": 18.34451462, "OBJECTID_1": 8950, "PARCEL_NO_": "105301011200", "Tax_Legal_": "37 SOLBERG ST THOMAS VI", "Name": "HODGE, ELLMAN", "Address": "PO Box 1144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.832682199199994, "SHAPE_Area": 425.772739941 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357594.003799997270107, 257229.467799998819828 ], [ 357592.594400003552437, 257205.602699998766184 ], [ 357578.874499998986721, 257206.968100000172853 ], [ 357573.806500002741814, 257233.946600001305342 ], [ 357594.003799997270107, 257229.467799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96602438, "LATITUDE": 18.34455668, "OBJECTID_1": 7532, "PARCEL_NO_": "105201033000", "Tax_Legal_": "LINDBERG BAY 60-18 SOUTHSIDE QTR", "Name": "ABRAMSON, IRENE", "Address": "3144 Estate Mahogany", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10200, "Improved_V": 9300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.808862749, "SHAPE_Area": 345.18067286799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355102.593599997460842, 257197.888900000602007 ], [ 355091.301600001752377, 257198.218600001186132 ], [ 355073.555600002408028, 257198.91780000180006 ], [ 355074.261200003325939, 257210.744800001382828 ], [ 355103.299199998378754, 257209.715900000184774 ], [ 355102.593599997460842, 257197.888900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94207098, "LATITUDE": 18.34448158, "OBJECTID_1": 8952, "PARCEL_NO_": "105301011400", "Tax_Legal_": "35 ESTATE SOLBERG LITTLE NORTHSIDE QTR", "Name": "JOSEPH, S, GEORGES, J, SPRAUVE, L", "Address": "PO Box 10582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35300, "Improved_V": 80600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.81341966700001, "SHAPE_Area": 625.42666162900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357632.696000002324581, 257231.051100000739098 ], [ 357630.523500002920628, 257202.113499999046326 ], [ 357610.347699999809265, 257204.059300001710653 ], [ 357606.3125, 257204.448399998247623 ], [ 357610.135499998927116, 257228.966600000858307 ], [ 357632.696000002324581, 257231.051100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94192877, "LATITUDE": 18.34448002, "OBJECTID_1": 8953, "PARCEL_NO_": "105301011500", "Tax_Legal_": "ESTATE SOLBERG 34 LITTLE NORTHSIDE QTR", "Name": "BOODOO, MARILYN", "Address": "P.O. BOX 4211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.003864849500005, "SHAPE_Area": 212.41875136499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357639.954599998891354, 257230.899399999529123 ], [ 357637.785700000822544, 257201.539599999785423 ], [ 357630.523500002920628, 257202.113499999046326 ], [ 357632.696000002324581, 257231.051100000739098 ], [ 357639.954599998891354, 257230.899399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94180288, "LATITUDE": 18.34447152, "OBJECTID_1": 8954, "PARCEL_NO_": "105301011600", "Tax_Legal_": "ESTATE SOLBERG 33 LITTLE NORTHSIDE QTR", "Name": "LUTHER BENJAMIN", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 39100, "Improved_V": 345900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.529433325100001, "SHAPE_Area": 569.853583286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357660.130400002002716, 257228.953600000590086 ], [ 357656.345200002193451, 257200.00279999896884 ], [ 357637.785700000822544, 257201.539599999785423 ], [ 357639.954599998891354, 257230.899399999529123 ], [ 357660.130400002002716, 257228.953600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201072300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95916275, "LATITUDE": 18.3444271, "OBJECTID_1": 7846, "PARCEL_NO_": "105201072300", "Tax_Legal_": "CONTANT 239 7A S S QTR", "Name": "CREQUE, IDALIA", "Address": "PO Box 3974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 40900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.622771562, "SHAPE_Area": 680.82852714800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355818.019299998879433, 257177.146499998867512 ], [ 355795.244800001382828, 257200.180399999022484 ], [ 355805.602799996733665, 257214.830600000917912 ], [ 355833.207999996840954, 257192.680599998682737 ], [ 355830.82320000231266, 257188.650299999862909 ], [ 355818.019299998879433, 257177.146499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94225427000001, "LATITUDE": 18.34449178, "OBJECTID_1": 8951, "PARCEL_NO_": "105301011300", "Tax_Legal_": "36 ESTATE SOLBERG LITTLE NORTHSIDE QTR", "Name": "HODGE, ELLMAN", "Address": "PO Box 1144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.628670960799994, "SHAPE_Area": 363.904141584 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357606.3125, 257204.448399998247623 ], [ 357600.664700001478195, 257204.824400000274181 ], [ 357592.594400003552437, 257205.602699998766184 ], [ 357594.003799997270107, 257229.467799998819828 ], [ 357610.135499998927116, 257228.966600000858307 ], [ 357606.3125, 257204.448399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9416225, "LATITUDE": 18.34444788, "OBJECTID_1": 8955, "PARCEL_NO_": "105301011700", "Tax_Legal_": "32 ESTATE SOLBERG LITTLE NORTHSIDE QTR", "Name": "LEDEE, ADELBERT", "Address": "PO Box 302125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43200, "Improved_V": 600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.352719918700004, "SHAPE_Area": 527.64352597699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357678.717000000178814, 257224.250500001013279 ], [ 357676.508400000631809, 257199.534499999135733 ], [ 357656.345200002193451, 257200.00279999896884 ], [ 357660.130400002002716, 257228.953600000590086 ], [ 357678.717000000178814, 257224.250500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201072800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95860952, "LATITUDE": 18.34443764, "OBJECTID_1": 7851, "PARCEL_NO_": "105201072800", "Tax_Legal_": "CONTANT 242 7A S S QTR", "Name": "GUMBS, CHERYL & IRAN", "Address": "PO BOX 11476", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39800, "Improved_V": 67100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.519908129800001, "SHAPE_Area": 506.79211901100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355888.001299999654293, 257197.350999999791384 ], [ 355867.171999998390675, 257181.348499998450279 ], [ 355866.342299997806549, 257184.085900001227856 ], [ 355862.267599999904633, 257189.11879999935627 ], [ 355858.207299999892712, 257192.463100001215935 ], [ 355854.163099996745586, 257193.907600000500679 ], [ 355877.377199999988079, 257213.940400000661612 ], [ 355888.001299999654293, 257197.350999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96636984, "LATITUDE": 18.3445032, "OBJECTID_1": 7536, "PARCEL_NO_": "105201033200", "Tax_Legal_": "LINDBERG BAY 60-19 SOUTHSIDE QTR", "Name": "TODMAN, ZERA E., CAROL-ANN,DEBBIE & ALTON T.", "Address": "PO Box 305793", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 166400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.212348956900001, "SHAPE_Area": 468.923146067 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355067.178800001740456, 257190.210700001567602 ], [ 355035.721799999475479, 257191.219799999147654 ], [ 355036.402300000190735, 257206.002000000327826 ], [ 355068.667300000786781, 257204.788400001823902 ], [ 355067.178800001740456, 257190.210700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94126064, "LATITUDE": 18.34443731, "OBJECTID_1": 8958, "PARCEL_NO_": "105301011900", "Tax_Legal_": "3O ESTATE SOLBERG KRONPRINDSENS QTR", "Name": "ROBLES, PETER & OTHERS", "Address": "PO Box 502071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28900, "Improved_V": 111700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.861325288100005, "SHAPE_Area": 462.28333352099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357713.611400000751019, 257198.360500000417233 ], [ 357710.384400002658367, 257198.545200001448393 ], [ 357696.671599999070168, 257199.066300000995398 ], [ 357697.271200001239777, 257223.346900001168251 ], [ 357714.97410000115633, 257227.713700000196695 ], [ 357713.611400000751019, 257198.360500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102021500", "MAP": "D9-6756-T000", "PARCEL_NAM": "61BD-B", "ACRE": ".121", "LONGITUDE": -64.96672626, "LATITUDE": 18.34435269, "OBJECTID_1": 7401, "PARCEL_NO_": "105102021500", "Tax_Legal_": "LINDBERG BAY 61Bd-B No.4 SOUTHSIDE QTR.", "Name": "PAUL, CURT & DARLENE", "Address": "P O BOX 4324", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.450083255699994, "SHAPE_Area": 435.794970681 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354996.679499998688698, 257183.607400000095367 ], [ 355030.142399996519089, 257191.652100000530481 ], [ 355029.398999996483326, 257176.180399999022484 ], [ 354998.791500002145767, 257172.130199998617172 ], [ 354996.679499998688698, 257183.607400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94143724, "LATITUDE": 18.34443041, "OBJECTID_1": 8956, "PARCEL_NO_": "105301011800", "Tax_Legal_": "31 SOLBERG LITTLE NORTHSIDE QTR", "Name": "DAVID, DEBRA A & LOIS CURTIS", "Address": "PO Box 306623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036623, "Country": "United States", "Land_Value": 24900, "Improved_V": 28200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.8651565455, "SHAPE_Area": 470.792948669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357696.671599999070168, 257199.066300000995398 ], [ 357679.73369999974966, 257199.560899998992682 ], [ 357676.508400000631809, 257199.534499999135733 ], [ 357678.717000000178814, 257224.250500001013279 ], [ 357690.820699997246265, 257223.294100001454353 ], [ 357697.271200001239777, 257223.346900001168251 ], [ 357696.671599999070168, 257199.066300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201049400", "MAP": "D9-178-T58", "PARCEL_NAM": "28B", "ACRE": null, "LONGITUDE": -64.96209335, "LATITUDE": 18.34434503, "OBJECTID_1": 7669, "PARCEL_NO_": "105201049400", "Tax_Legal_": "LINDBERG BAY 28B SOUTHSIDE QUARTER", "Name": "RAMONA RYMER IRREVOC FAMILY TRUST,RUDEL&ROY RYMER", "Address": "PO Box 10196", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 176400, "Improved_V": 36900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.26652250399999, "SHAPE_Area": 2464.85629075 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355547.116300001740456, 257172.818300001323223 ], [ 355508.424099996685982, 257171.235100001096725 ], [ 355439.905500002205372, 257168.563400000333786 ], [ 355475.171099998056889, 257193.760999999940395 ], [ 355507.3733000010252, 257199.935199998319149 ], [ 355539.575400002300739, 257206.109400000423193 ], [ 355551.146099999547005, 257173.062399998307228 ], [ 355547.116300001740456, 257172.818300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95248202000001, "LATITUDE": 18.34411112, "OBJECTID_1": 8252, "PARCEL_NO_": "105202040100", "Tax_Legal_": "CONTANT 11 2 7BA SOUTHSIDE QTR", "Name": "COMISSIONG, RICHARD", "Address": "PO Box 335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 299900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.80080122800001, "SHAPE_Area": 4619.4303542500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356495.8091000020504, 257125.487500000745058 ], [ 356489.151799999177456, 257149.708799999207258 ], [ 356487.488899998366833, 257155.605799999088049 ], [ 356479.156000003218651, 257187.20160000026226 ], [ 356578.935599997639656, 257211.871899999678135 ], [ 356502.473600000143051, 257100.421900000423193 ], [ 356495.8091000020504, 257125.487500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95227356, "LATITUDE": 18.34385908, "OBJECTID_1": 8295, "PARCEL_NO_": "105202043500", "Tax_Legal_": "CONTANT 22 1 7BA SOUTHSIDE QTR", "Name": "COMISSIONG, RICHARD", "Address": "PO Box 335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 148600, "Improved_V": 60800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.58103577200001, "SHAPE_Area": 2586.3000288600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356520.306000001728535, 257089.590999998152256 ], [ 356502.473600000143051, 257100.421900000423193 ], [ 356578.935599997639656, 257211.871899999678135 ], [ 356580.562600001692772, 257210.196400001645088 ], [ 356567.218500003218651, 257167.446299999952316 ], [ 356564.108300000429153, 257153.910900000482798 ], [ 356560.996399998664856, 257140.586500000208616 ], [ 356553.861800000071526, 257126.173799999058247 ], [ 356538.70549999922514, 257106.840199999511242 ], [ 356520.306000001728535, 257089.590999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96608557, "LATITUDE": 18.34439846, "OBJECTID_1": 7535, "PARCEL_NO_": "105201033100", "Tax_Legal_": "LINDBERG BAY 60 20 4A & B SOUTHSIDE QTR", "Name": "SASSO, SR. , RICHARD A", "Address": "8620 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6100, "Improved_V": 68700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.827484697700001, "SHAPE_Area": 433.17686020600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355091.301600001752377, 257198.218600001186132 ], [ 355091.499399997293949, 257175.0 ], [ 355072.142499998211861, 257175.474800001829863 ], [ 355073.555600002408028, 257198.91780000180006 ], [ 355091.301600001752377, 257198.218600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95158426, "LATITUDE": 18.34442902, "OBJECTID_1": 8303, "PARCEL_NO_": "105202050400", "Tax_Legal_": "CONTANT 22 3 7BA SOUTHSIDE QTR", "Name": "O'NEAL, DOROTHY", "Address": "PO Box 10358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.882966156500004, "SHAPE_Area": 438.62356392700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356627.474299997091293, 257193.481800001114607 ], [ 356602.475100003182888, 257193.699400000274181 ], [ 356602.325800001621246, 257211.218899998813868 ], [ 356626.513400003314018, 257211.627999998629093 ], [ 356627.474299997091293, 257193.481800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96594616, "LATITUDE": 18.34439652, "OBJECTID_1": 7552, "PARCEL_NO_": "105201034800", "Tax_Legal_": "60-20A LINDBERG BAY NO. 4A SOUTHSIDE QTR", "Name": "DUNLOP-HARLEY, DERESE A.", "Address": "PO Box 7143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6100, "Improved_V": 44600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.023194143599994, "SHAPE_Area": 251.737129259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355102.593599997460842, 257197.888900000602007 ], [ 355101.983300000429153, 257174.874699998646975 ], [ 355091.499399997293949, 257175.0 ], [ 355091.301600001752377, 257198.218600001186132 ], [ 355102.593599997460842, 257197.888900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96575608000001, "LATITUDE": 18.34439044, "OBJECTID_1": 7546, "PARCEL_NO_": "105201034200", "Tax_Legal_": "LINDBERG 27G SOUTHSIDE QUARTER", "Name": "BENJAMIN, THELMA,BRIAN,ANN-MARIE & CASSANDRA", "Address": "PO Box 302092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10100, "Improved_V": 183200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.56054792400001, "SHAPE_Area": 668.91603942500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355130.211400002241135, 257174.261300001293421 ], [ 355101.983300000429153, 257174.874699998646975 ], [ 355102.593599997460842, 257197.888900000602007 ], [ 355134.052400000393391, 257196.668699998408556 ], [ 355131.701800003647804, 257188.627900000661612 ], [ 355130.211400002241135, 257174.261300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201071800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95931655, "LATITUDE": 18.34430376, "OBJECTID_1": 7841, "PARCEL_NO_": "105201071800", "Tax_Legal_": "CONTANT 238 7A S S QTR", "Name": "JACKSON, JR , ANTHON & LORNA", "Address": "PO Box 6032", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34200, "Improved_V": 26200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.873206099, "SHAPE_Area": 739.89111243599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355798.791900001466274, 257162.423700001090765 ], [ 355777.588600002229214, 257190.325599998235703 ], [ 355795.244800001382828, 257200.180399999022484 ], [ 355818.019299998879433, 257177.146499998867512 ], [ 355798.791900001466274, 257162.423700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96637904000001, "LATITUDE": 18.34437465, "OBJECTID_1": 7537, "PARCEL_NO_": "105201033300", "Tax_Legal_": "LINDBERG BAY 60 21 SOUTHSIDE QTR", "Name": "TRUST AGREEMENT OF MARIA MAGDALENA VICTORINE", "Address": "8621 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 271700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.434364437200003, "SHAPE_Area": 432.49647548600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355066.489399999380112, 257176.484000001102686 ], [ 355035.032399997115135, 257177.493099998682737 ], [ 355035.721799999475479, 257191.219799999147654 ], [ 355067.178800001740456, 257190.210700001567602 ], [ 355066.489399999380112, 257176.484000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201072700", "MAP": "D9-853-T69", "PARCEL_NAM": "243", "ACRE": null, "LONGITUDE": -64.95848874000001, "LATITUDE": 18.34425963, "OBJECTID_1": 7850, "PARCEL_NO_": "105201072700", "Tax_Legal_": "CONTANT 243 7A SOUTHSIDE", "Name": "BATTISTE, LEAYLE & DORIS", "Address": "PO Box 308083", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55200, "Improved_V": 17000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.485068118, "SHAPE_Area": 747.97728712200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355898.747699998319149, 257166.40819999948144 ], [ 355894.705300003290176, 257167.641600001603365 ], [ 355888.317800000309944, 257160.201099999248981 ], [ 355868.044900000095367, 257173.545099999755621 ], [ 355867.199000000953674, 257178.182300001382828 ], [ 355867.171999998390675, 257181.348499998450279 ], [ 355888.001299999654293, 257197.350999999791384 ], [ 355903.531599998474121, 257172.780099999159575 ], [ 355898.747699998319149, 257166.40819999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94255641, "LATITUDE": 18.34424722, "OBJECTID_1": 8975, "PARCEL_NO_": "105301014000", "Tax_Legal_": "130-B EST.ANNAS FANCY SOUTHSIDE QTR.", "Name": "MALONE, DENISE G", "Address": "PO Box 301872", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 189800, "Improved_V": 138400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.28183806000001, "SHAPE_Area": 1799.51700893 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357551.828500002622604, 257163.472500000149012 ], [ 357543.486699998378754, 257196.123799998313189 ], [ 357540.13910000026226, 257210.450699999928474 ], [ 357553.050899997353554, 257209.289900001138449 ], [ 357578.874499998986721, 257206.968100000172853 ], [ 357592.594400003552437, 257205.602699998766184 ], [ 357600.664700001478195, 257204.824400000274181 ], [ 357600.684500001370907, 257202.502500001341105 ], [ 357598.288900002837181, 257199.738699998706579 ], [ 357595.076300002634525, 257198.2347999997437 ], [ 357591.851000003516674, 257198.208399999886751 ], [ 357590.286899998784065, 257192.495999999344349 ], [ 357594.332900002598763, 257190.840399999171495 ], [ 357593.002599999308586, 257157.687800001353025 ], [ 357577.472300000488758, 257182.258699998259544 ], [ 357551.828500002622604, 257163.472500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96539163, "LATITUDE": 18.34435911, "OBJECTID_1": 7547, "PARCEL_NO_": "105201034300", "Tax_Legal_": "27H ESTATE LINDBERG BAY SOUTHSIDE QUARTER", "Name": "SANCHEZ, PHILLIPE A. & FRANCISCO", "Address": "PO Box 6644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9100, "Improved_V": 82700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.737462129299999, "SHAPE_Area": 435.81433857799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355173.736100003123283, 257176.517400000244379 ], [ 355136.633199997246265, 257177.691399998962879 ], [ 355137.338799998164177, 257189.518399998545647 ], [ 355174.443499997258186, 257188.133299998939037 ], [ 355173.736100003123283, 257176.517400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105201035800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96513417, "LATITUDE": 18.34426476, "OBJECTID_1": 7561, "PARCEL_NO_": "105201035800", "Tax_Legal_": "LINDBERG BAY 27K SOUTHSIDE QTR", "Name": "REED, ROY A", "Address": "21260 Oakfort Ave", "City": "Carson", "State": "California", "Zip": 90745, "Country": "United States", "Land_Value": 20200, "Improved_V": 19600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.109954989399995, "SHAPE_Area": 545.515011888 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355192.189599998295307, 257187.434200000017881 ], [ 355191.636799998581409, 257157.665500000119209 ], [ 355173.086199998855591, 257158.146899998188019 ], [ 355173.736100003123283, 257176.517400000244379 ], [ 355174.443499997258186, 257188.133299998939037 ], [ 355192.189599998295307, 257187.434200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105201035900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96490349, "LATITUDE": 18.34425707, "OBJECTID_1": 7562, "PARCEL_NO_": "105201035900", "Tax_Legal_": "LINDBERG BAY 27L 4A SOUTHSIDE QTR", "Name": "STOUT, MARY ELLEN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19400, "Improved_V": 123300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.046317069, "SHAPE_Area": 902.61161255699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355222.843900002539158, 257185.996300000697374 ], [ 355222.283900000154972, 257157.071899998933077 ], [ 355191.636799998581409, 257157.665500000119209 ], [ 355192.189599998295307, 257187.434200000017881 ], [ 355206.708599999547005, 257186.919799998402596 ], [ 355222.843900002539158, 257185.996300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022000", "MAP": "D9-115-T56", "PARCEL_NAM": "193", "ACRE": null, "LONGITUDE": -64.95616867, "LATITUDE": 18.34387086, "OBJECTID_1": 8111, "PARCEL_NO_": "105202022000", "Tax_Legal_": "193 ESTATE CONTANT SOUTHSIDE QTR", "Name": "THE TARTAN GROUP, LTD.", "Address": "1003 Est Ross-Number8", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 149200, "Improved_V": 1537400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.856298611, "SHAPE_Area": 3934.9906771599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356102.726000003516674, 257097.909600000828505 ], [ 356102.501800000667572, 257149.565400000661612 ], [ 356102.901199996471405, 257149.713899999856949 ], [ 356112.517599999904633, 257156.758699998259544 ], [ 356121.295299999415874, 257167.5962999984622 ], [ 356123.663900002837181, 257173.526299998164177 ], [ 356130.836199998855591, 257183.506400000303984 ], [ 356142.837399996817112, 257194.581500001251698 ], [ 356146.062600001692772, 257194.607900001108646 ], [ 356148.499600000679493, 257192.5168999992311 ], [ 356147.730999998748302, 257188.0777000002563 ], [ 356147.806500002741814, 257179.212400000542402 ], [ 356154.463799998164177, 257154.991099998354912 ], [ 356155.455300003290176, 257133.256599999964237 ], [ 356154.110699996352196, 257101.792599998414516 ], [ 356153.761200003325939, 257097.122900001704693 ], [ 356102.726000003516674, 257097.909600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105201036200", "MAP": "G9-2143-T72", "PARCEL_NAM": "27N", "ACRE": null, "LONGITUDE": -64.96455182, "LATITUDE": 18.34425523, "OBJECTID_1": 7566, "PARCEL_NO_": "105201036200", "Tax_Legal_": "27N LINDBERG BAY SOUTHSIDE QUARTER", "Name": "PETERSEN, LOUISE OLDINA", "Address": "PO BOX 306133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.731883908, "SHAPE_Area": 932.820212191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355263.184600003063679, 257183.371199999004602 ], [ 355263.389600001275539, 257159.308200001716614 ], [ 355225.482199996709824, 257160.264499999582767 ], [ 355226.070900000631809, 257185.811700001358986 ], [ 355238.979099996387959, 257185.072900000959635 ], [ 355263.184600003063679, 257183.371199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201071700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95949127, "LATITUDE": 18.34420529, "OBJECTID_1": 7840, "PARCEL_NO_": "105201071700", "Tax_Legal_": "237 CONTANT NO 7A SOUTHSIDE QTR", "Name": "SHELFORD, AARON E. & KHISHA D.", "Address": "PO BOX 301803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36800, "Improved_V": 41400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.416017557, "SHAPE_Area": 733.50810494300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355780.340199999511242, 257151.295800000429153 ], [ 355759.932499997317791, 257180.470800001174212 ], [ 355777.588600002229214, 257190.325599998235703 ], [ 355798.791900001466274, 257162.423700001090765 ], [ 355780.340199999511242, 257151.295800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94197326, "LATITUDE": 18.34426783, "OBJECTID_1": 8976, "PARCEL_NO_": "105301014100", "Tax_Legal_": "130C&130D-2ANNAS FANCY SOUTHSIDE QTR.", "Name": "BERNADETTE HODGE", "Address": "623 McKewin Ave", "City": "Baltimore", "State": "Maryland", "Zip": 212182543, "Country": "United States", "Land_Value": 105700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.36944112099999, "SHAPE_Area": 872.90916117799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357610.347699999809265, 257204.059300001710653 ], [ 357630.523500002920628, 257202.113499999046326 ], [ 357637.785700000822544, 257201.539599999785423 ], [ 357656.345200002193451, 257200.00279999896884 ], [ 357656.366800002753735, 257197.469799999147654 ], [ 357651.660199999809265, 257182.021499998867512 ], [ 357605.667999997735023, 257185.444699998944998 ], [ 357605.628499999642372, 257190.088500000536442 ], [ 357610.347699999809265, 257204.059300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105201036400", "MAP": "F9-2274-T68", "PARCEL_NAM": "27", "ACRE": null, "LONGITUDE": -64.96412762, "LATITUDE": 18.34417177, "OBJECTID_1": 7568, "PARCEL_NO_": "105201036400", "Tax_Legal_": "LINDBERG BAY 27 S S QTR", "Name": "PETERSON, LOUISE & OTHERS", "Address": "27 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39400, "Improved_V": 96400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.48480899200001, "SHAPE_Area": 1828.4524388899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355315.918600000441074, 257145.806000001728535 ], [ 355263.50110000371933, 257146.2212999984622 ], [ 355263.389600001275539, 257159.308200001716614 ], [ 355263.184600003063679, 257183.371199999004602 ], [ 355317.263300001621246, 257177.269900001585484 ], [ 355315.918600000441074, 257145.806000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201072500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95885101, "LATITUDE": 18.34424262, "OBJECTID_1": 7848, "PARCEL_NO_": "105201072500", "Tax_Legal_": "CONTANT 235 7A S S QTR", "Name": "NILES, DELORES LINDA", "Address": "1970 Eastland Ct", "City": "Snellville", "State": "Georgia", "Zip": 30078, "Country": "United States", "Land_Value": 34200, "Improved_V": 29600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.027565924800001, "SHAPE_Area": 505.7706632 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355850.419299997389317, 257160.102000001817942 ], [ 355829.313100002706051, 257176.605599999427795 ], [ 355841.323299996554852, 257186.625300001353025 ], [ 355845.345799997448921, 257187.713700000196695 ], [ 355851.801700003445148, 257187.133299998939037 ], [ 355856.666599996387959, 257184.006700001657009 ], [ 355859.927799999713898, 257179.811500001698732 ], [ 355859.196999996900558, 257170.939599998295307 ], [ 355850.419299997389317, 257160.102000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202055000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95158298, "LATITUDE": 18.34427546, "OBJECTID_1": 8349, "PARCEL_NO_": "105202055000", "Tax_Legal_": "CONTANT 22-3A 7BA S S QTR", "Name": "ONEAL, EMANUEL R", "Address": "ANNAS RETREAT #394-189", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.5077733567, "SHAPE_Area": 406.28518343799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356627.612800002098083, 257177.228700000792742 ], [ 356602.613499999046326, 257177.446299999952316 ], [ 356602.475100003182888, 257193.699400000274181 ], [ 356627.474299997091293, 257193.481800001114607 ], [ 356627.612800002098083, 257177.228700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105202022300", "MAP": "B9-240-T69", "PARCEL_NAM": "11", "ACRE": "1.00", "LONGITUDE": -64.9557929, "LATITUDE": 18.34383825, "OBJECTID_1": 8114, "PARCEL_NO_": "105202022300", "Tax_Legal_": "11 CONTANT 7A SOUTHSIDE QTR", "Name": "COLON, KENNETH & AMY", "Address": "PO Box 302609", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 291600, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.64905977699999, "SHAPE_Area": 2083.5822847600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356180.115800000727177, 257078.151900000870228 ], [ 356159.701499998569489, 257079.372900001704693 ], [ 356162.107199996709824, 257109.668499998748302 ], [ 356163.392599999904633, 257148.098099999129772 ], [ 356160.860399998724461, 257161.376200001686811 ], [ 356155.889399997889996, 257176.956500001251698 ], [ 356155.795900002121925, 257187.932599999010563 ], [ 356158.198700003325939, 257189.852099999785423 ], [ 356161.425700001418591, 257189.667399998754263 ], [ 356182.470799997448921, 257180.340399999171495 ], [ 356181.779500000178814, 257166.824799999594688 ], [ 356170.440800003707409, 257172.642599999904633 ], [ 356170.510999999940395, 257164.410500001162291 ], [ 356181.85869999974966, 257157.537300001829863 ], [ 356180.115800000727177, 257078.151900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202038400", "MAP": "D9-1531-T79", "PARCEL_NAM": "11J", "ACRE": "0.385", "LONGITUDE": -64.95473908, "LATITUDE": 18.3441487, "OBJECTID_1": 8241, "PARCEL_NO_": "105202038400", "Tax_Legal_": "11J-1 & 11J REM CONTANT No. 7Ba SOUTHSIDE QTR", "Name": "11 J CONTANT, LLC", "Address": "25040 106th Ave", "City": "Kent", "State": "Washington", "Zip": 98030, "Country": "United States", "Land_Value": 124100, "Improved_V": 272800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.449477066, "SHAPE_Area": 1050.4342905000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356301.007700003683567, 257180.255100000649691 ], [ 356293.982900001108646, 257152.966600000858307 ], [ 356284.3125, 257152.254200000315905 ], [ 356276.278099998831749, 257148.810899998992682 ], [ 356261.674599997699261, 257159.246100001037121 ], [ 356265.6199000030756, 257169.410799998790026 ], [ 356274.313100002706051, 257190.169199999421835 ], [ 356301.007700003683567, 257180.255100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94161664000001, "LATITUDE": 18.34383306, "OBJECTID_1": 8959, "PARCEL_NO_": "105301012000", "Tax_Legal_": "130A THROUGH 130K ANNAS FANCY KRONPRINDSENS QTR..", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.120304191, "SHAPE_Area": 3083.05297595 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357697.239900000393391, 257132.36540000140667 ], [ 357670.85809999704361, 257105.551600001752377 ], [ 357683.094899997115135, 257088.975400000810623 ], [ 357662.958599999547005, 257086.277499999850988 ], [ 357653.720600001513958, 257129.475999999791384 ], [ 357650.29389999806881, 257153.090500000864267 ], [ 357650.936599999666214, 257172.305300001055002 ], [ 357651.660199999809265, 257182.021499998867512 ], [ 357656.366800002753735, 257197.469799999147654 ], [ 357656.345200002193451, 257200.00279999896884 ], [ 357676.508400000631809, 257199.534499999135733 ], [ 357679.73369999974966, 257199.560899998992682 ], [ 357679.758900001645088, 257196.605799999088049 ], [ 357674.127300001680851, 257195.082100000232458 ], [ 357671.733499996364117, 257192.107200000435114 ], [ 357670.988300003111362, 257184.923900000751019 ], [ 357679.135999999940395, 257175.069200001657009 ], [ 357684.947400003671646, 257155.484999999403954 ], [ 357686.578000001609325, 257153.38740000128746 ], [ 357693.167000003159046, 257137.187199998646975 ], [ 357697.239900000393391, 257132.36540000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96639126, "LATITUDE": 18.34421573, "OBJECTID_1": 7539, "PARCEL_NO_": "105201033500", "Tax_Legal_": "LINDBERG BAY 60-23 S S QTR", "Name": "TRUST AGREEMENT OF MARIA MAGDALENA VICTORINE", "Address": "8621 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11100, "Improved_V": 51000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.442071664, "SHAPE_Area": 671.80849137600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355064.257399998605251, 257154.511999998241663 ], [ 355033.599600002169609, 257156.372000001370907 ], [ 355035.032399997115135, 257177.493099998682737 ], [ 355066.489399999380112, 257176.484000001102686 ], [ 355064.257399998605251, 257154.511999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96540129, "LATITUDE": 18.34422204, "OBJECTID_1": 7548, "PARCEL_NO_": "105201034400", "Tax_Legal_": "LINDBERG 27F SOUTHSIDE QUARTER", "Name": "ROSARIO, RAYMONDE & MARIE", "Address": "PO Box 6644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10100, "Improved_V": 40400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.271663958, "SHAPE_Area": 697.50902525200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355173.086199998855591, 257158.146899998188019 ], [ 355151.310400001704693, 257158.602000001817942 ], [ 355135.180600002408028, 257158.892200000584126 ], [ 355136.633199997246265, 257177.691399998962879 ], [ 355173.736100003123283, 257176.517400000244379 ], [ 355173.086199998855591, 257158.146899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96364089, "LATITUDE": 18.34404372, "OBJECTID_1": 7587, "PARCEL_NO_": "105201040900", "Tax_Legal_": "LINDBERG BAY 26 SOUTHSIDE QTR", "Name": "KUVACH, ANGELICA", "Address": "PO Box 304452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63300, "Improved_V": 394400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.48518092899999, "SHAPE_Area": 1691.011055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355356.228900000452995, 257146.769200000911951 ], [ 355352.418499998748302, 257120.773499999195337 ], [ 355324.183200001716614, 257122.231100000441074 ], [ 355326.926500000059605, 257178.826699998229742 ], [ 355360.035700000822544, 257173.186999998986721 ], [ 355356.228900000452995, 257146.769200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96672244, "LATITUDE": 18.34412139, "OBJECTID_1": 7404, "PARCEL_NO_": "105102021600", "Tax_Legal_": "LINDBERG BAY 61 BE 4A SOUTHSIDE QTR", "Name": "POTTER, A. & J", "Address": "P.O. BOX 4713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25200, "Improved_V": 157800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.670349184, "SHAPE_Area": 1055.54068037 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355003.942199997603893, 257135.442099999636412 ], [ 354998.791500002145767, 257172.130199998617172 ], [ 355029.398999996483326, 257176.180399999022484 ], [ 355027.316299997270107, 257136.688900001347065 ], [ 355024.915399998426437, 257134.558299999684095 ], [ 355003.942199997603893, 257135.442099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95296932, "LATITUDE": 18.34412409, "OBJECTID_1": 8253, "PARCEL_NO_": "105202040200", "Tax_Legal_": "CONTANT 11 3 H 7BA SOUTHSIDE QTR", "Name": "1864 INVESTMENTS LLC", "Address": "PO BOX 503268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 79900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.994206659, "SHAPE_Area": 967.37343625999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356459.312899999320507, 257150.097899999469519 ], [ 356447.796099998056889, 257176.8125 ], [ 356479.156000003218651, 257187.20160000026226 ], [ 356487.488899998366833, 257155.605799999088049 ], [ 356472.199500001966953, 257151.892099998891354 ], [ 356464.16330000013113, 257148.65989999845624 ], [ 356460.918300002813339, 257150.955400001257658 ], [ 356459.312899999320507, 257150.097899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96604267, "LATITUDE": 18.34422385, "OBJECTID_1": 7538, "PARCEL_NO_": "105201033400", "Tax_Legal_": "LINDBERG BAY 60 22 SOUTHSIDE QTR", "Name": "GREAUX, VALENTINE &JOSEPH I. & AUGUSTINE, CAROL", "Address": "P O BOX 2455", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 146200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.600109088500005, "SHAPE_Area": 457.43286212300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355072.142499998211861, 257175.474800001829863 ], [ 355091.499399997293949, 257175.0 ], [ 355101.983300000429153, 257174.874699998646975 ], [ 355101.268700003623962, 257164.103000000119209 ], [ 355101.311800003051758, 257159.037200000137091 ], [ 355071.463899999856949, 257160.481600001454353 ], [ 355072.142499998211861, 257175.474800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201071600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95966809, "LATITUDE": 18.34411585, "OBJECTID_1": 7839, "PARCEL_NO_": "105201071600", "Tax_Legal_": "CONTANT 236 7A S S QTR", "Name": "MORON, ELLA F", "Address": "P.O. BOX 4644, V.D.S", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44700, "Improved_V": 25400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.706673538, "SHAPE_Area": 772.06175012599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355759.932499997317791, 257180.470800001174212 ], [ 355780.340199999511242, 257151.295800000429153 ], [ 355776.328400000929832, 257148.940900001674891 ], [ 355771.535499997437, 257143.624400001019239 ], [ 355769.964299999177456, 257138.756299998611212 ], [ 355738.264499999582767, 257168.261100001633167 ], [ 355759.932499997317791, 257180.470800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96576739, "LATITUDE": 18.34423595, "OBJECTID_1": 7545, "PARCEL_NO_": "105201034100", "Tax_Legal_": "LINDBERG 27E SOUTHSIDE QUARTER", "Name": "HODGE, CALVIN E. & LEONILLE B", "Address": "PO Box 1144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041144, "Country": "United States", "Land_Value": 9200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.717973463500002, "SHAPE_Area": 313.69219949400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355129.502199999988079, 257162.856499999761581 ], [ 355101.268700003623962, 257164.103000000119209 ], [ 355101.983300000429153, 257174.874699998646975 ], [ 355130.211400002241135, 257174.261300001293421 ], [ 355129.502199999988079, 257162.856499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301122400", "MAP": "D9-6288-T97", "PARCEL_NAM": "200-5C-4B", "ACRE": "0.21", "LONGITUDE": -64.9460123, "LATITUDE": 18.34413253, "OBJECTID_1": 9446, "PARCEL_NO_": "105301122400", "Tax_Legal_": "ALTONA & WELGUNST 200-5C-4 ALTONA & WELGUNST", "Name": "HAMILTON, DAISY C. & CHARLES A", "Address": "PO Box 302463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 115300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.105442204, "SHAPE_Area": 706.78617207100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357222.781099997460842, 257169.223200000822544 ], [ 357200.308600001037121, 257156.795800000429153 ], [ 357188.077299997210503, 257172.738800000399351 ], [ 357192.011699996888638, 257184.170099999755621 ], [ 357194.405500002205372, 257187.144999999552965 ], [ 357199.219999998807907, 257189.928599998354912 ], [ 357208.083999998867512, 257190.634399998933077 ], [ 357222.781099997460842, 257169.223200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301121500", "MAP": "D9-3268-T85", "PARCEL_NAM": "200-5C-4A", "ACRE": "0.05", "LONGITUDE": -64.94579067, "LATITUDE": 18.34405487, "OBJECTID_1": 9439, "PARCEL_NO_": "105301121500", "Tax_Legal_": "200-5C-5&200-5C-4A ALTONA & WELGUNST CROWN & PRINCE QUARTER", "Name": "LAWRENCE, PAULINE", "Address": "PO Box 8916", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96100, "Improved_V": 97800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.870974279, "SHAPE_Area": 257.43754462300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357243.197800002992153, 257138.992800001055002 ], [ 357222.781099997460842, 257169.223200000822544 ], [ 357208.083999998867512, 257190.634399998933077 ], [ 357214.543499998748302, 257189.631799999624491 ], [ 357246.405100002884865, 257141.129999998956919 ], [ 357243.197800002992153, 257138.992800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022300", "MAP": null, "PARCEL_NAM": "11", "ACRE": null, "LONGITUDE": -64.95547251000001, "LATITUDE": 18.34359789, "OBJECTID_1": 8114, "PARCEL_NO_": "105202022300", "Tax_Legal_": "11 CONTANT 7A SOUTHSIDE QTR", "Name": "COLON, KENNETH & AMY", "Address": "PO Box 302609", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 291600, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 375.54913661000001, "SHAPE_Area": 3295.0441260100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356264.056900002062321, 257068.917500000447035 ], [ 356180.115800000727177, 257078.151900000870228 ], [ 356181.85869999974966, 257157.537300001829863 ], [ 356170.510999999940395, 257164.410500001162291 ], [ 356170.440800003707409, 257172.642599999904633 ], [ 356181.779500000178814, 257166.824799999594688 ], [ 356182.470799997448921, 257180.340399999171495 ], [ 356187.32660000026226, 257178.269299998879433 ], [ 356186.703699998557568, 257156.732599999755621 ], [ 356194.921499997377396, 257138.645799998193979 ], [ 356218.4358000010252, 257123.42850000038743 ], [ 356226.570900000631809, 257115.051300000399351 ], [ 356230.917099997401237, 257078.145500000566244 ], [ 356257.503899998962879, 257080.896200001239777 ], [ 356264.056900002062321, 257068.917500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96333332, "LATITUDE": 18.34413537, "OBJECTID_1": 7588, "PARCEL_NO_": "105201041000", "Tax_Legal_": "26A ESTATE LINDBERG BAY No.4 SOUTHSIDE QTR.", "Name": "THELMA BLAIZE and ADELLE MARIA BLAIZE", "Address": "PO Box 307402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 114000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.021481083, "SHAPE_Area": 744.826082337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355382.829999998211861, 257147.831300001591444 ], [ 355356.228900000452995, 257146.769200000911951 ], [ 355360.035700000822544, 257173.186999998986721 ], [ 355371.340199999511242, 257171.379700001329184 ], [ 355381.824100002646446, 257171.254399999976158 ], [ 355393.922399997711182, 257170.931200001388788 ], [ 355386.012100003659725, 257152.923500001430511 ], [ 355382.829999998211861, 257147.831300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201072200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95897291, "LATITUDE": 18.34411658, "OBJECTID_1": 7845, "PARCEL_NO_": "105201072200", "Tax_Legal_": "CONTANT 234 S S QTR. 7A", "Name": "ROGERS, COLLIN E. & JOYCELYN T.", "Address": "PO Box 305107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 47300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.880609158, "SHAPE_Area": 494.367217299 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355838.452299997210503, 257145.016399998217821 ], [ 355817.304700002074242, 257166.374899998307228 ], [ 355829.313100002706051, 257176.605599999427795 ], [ 355850.419299997389317, 257160.102000001817942 ], [ 355838.452299997210503, 257145.016399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202038900", "MAP": "D9-1531-T79", "PARCEL_NAM": "11D", "ACRE": "6,396 sq ft", "LONGITUDE": -64.95449261, "LATITUDE": 18.3441002, "OBJECTID_1": 8246, "PARCEL_NO_": "105202038900", "Tax_Legal_": "CONTANT 11D 7BA SOUTH SIDE QUARTER", "Name": "NORFORD, JOSEPH & LUCY", "Address": "PO Box 11035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45900, "Improved_V": 108500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.963037064600002, "SHAPE_Area": 588.48911368200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356320.411300003528595, 257174.292199999094009 ], [ 356315.799999997019768, 257147.656700000166893 ], [ 356293.982900001108646, 257152.966600000858307 ], [ 356301.007700003683567, 257180.255100000649691 ], [ 356320.411300003528595, 257174.292199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202050500", "MAP": "F9-49-T56", "PARCEL_NAM": "22-11", "ACRE": "0.22", "LONGITUDE": -64.95187272, "LATITUDE": 18.34397218, "OBJECTID_1": 8304, "PARCEL_NO_": "105202050500", "Tax_Legal_": "CONTANT 22 11 7BA SOUTHSIDE QTR", "Name": "TOMEAU, EMMELINE O.", "Address": "3160 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63700, "Improved_V": 120000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.561723679, "SHAPE_Area": 841.81476234299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356596.484899997711182, 257139.610399998724461 ], [ 356596.38400000333786, 257134.399399999529123 ], [ 356568.255900003015995, 257134.83219999819994 ], [ 356570.670299999415874, 257140.876800000667572 ], [ 356576.105899997055531, 257165.408100001513958 ], [ 356578.12950000166893, 257171.399000000208616 ], [ 356596.219499997794628, 257170.767900001257658 ], [ 356596.484899997711182, 257139.610399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201043100", "MAP": null, "PARCEL_NAM": "26G", "ACRE": null, "LONGITUDE": -64.96186031000001, "LATITUDE": 18.34401031, "OBJECTID_1": 7609, "PARCEL_NO_": "105201043100", "Tax_Legal_": "LINDBERG BAY 26G SOUTHSIDE QUARTER", "Name": "SOLDIEW, OLIVE E. -LIFE ESTATE", "Address": "BOX 3275", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18200, "Improved_V": 191100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.25420400100001, "SHAPE_Area": 1746.0725255 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355508.539200000464916, 257157.726100001484156 ], [ 355508.424099996685982, 257171.235100001096725 ], [ 355547.116300001740456, 257172.818300001323223 ], [ 355547.16669999808073, 257166.908100001513958 ], [ 355547.540700003504753, 257123.003699999302626 ], [ 355503.983599998056889, 257124.547100000083447 ], [ 355505.513599999248981, 257134.269900001585484 ], [ 355507.109999999403954, 257136.182799998670816 ], [ 355510.310099996626377, 257139.164299998432398 ], [ 355516.740800000727177, 257141.539000000804663 ], [ 355519.143500000238419, 257143.458500001579523 ], [ 355520.730999998748302, 257146.42680000141263 ], [ 355520.709399998188019, 257148.959699999541044 ], [ 355519.0608000010252, 257153.168099999427795 ], [ 355514.197800002992153, 257156.083599999547005 ], [ 355508.539200000464916, 257157.726100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96297534, "LATITUDE": 18.34410563, "OBJECTID_1": 7590, "PARCEL_NO_": "105201041200", "Tax_Legal_": "26AA ESTATE LINDBERG No.4 SOUTHSIDE QTR.", "Name": "BLAIZE, THELMA M. & ADELLE-MARIA", "Address": "PO Box 307402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18600, "Improved_V": 7700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.60922528499999, "SHAPE_Area": 872.396917766 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355426.190999999642372, 257169.295499999076128 ], [ 355433.451399996876717, 257168.932700000703335 ], [ 355427.916900001466274, 257156.01069999858737 ], [ 355424.731299996376038, 257151.340599998831749 ], [ 355423.957299999892712, 257147.534600000828505 ], [ 355421.561800003051758, 257144.770799998193979 ], [ 355420.775200001895428, 257142.442299999296665 ], [ 355388.49040000140667, 257145.977699998766184 ], [ 355400.376500003039837, 257170.561900001019239 ], [ 355426.190999999642372, 257169.295499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96242923, "LATITUDE": 18.34411886, "OBJECTID_1": 7592, "PARCEL_NO_": "105201041400", "Tax_Legal_": "LINDBERG BAY 26D SOUTHSIDE QUARTER", "Name": "RHYMER, SYBIL", "Address": "P.O. BOX 3601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23500, "Improved_V": 269600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.01226465299999, "SHAPE_Area": 1482.84714328 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355472.370200000703335, 257143.920000001788139 ], [ 355430.398800000548363, 257148.642799999564886 ], [ 355439.126199997961521, 257165.390599999576807 ], [ 355439.905500002205372, 257168.563400000333786 ], [ 355508.424099996685982, 257171.235100001096725 ], [ 355508.539200000464916, 257157.726100001484156 ], [ 355501.282399997115135, 257157.666700001806021 ], [ 355495.647200003266335, 257156.565099999308586 ], [ 355482.796499997377396, 257150.549300000071526 ], [ 355472.370200000703335, 257143.920000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201072600", "MAP": "D9-853-T69", "PARCEL_NAM": "244", "ACRE": null, "LONGITUDE": -64.95861064, "LATITUDE": 18.34408646, "OBJECTID_1": 7849, "PARCEL_NO_": "105201072600", "Tax_Legal_": "EST CONTANT 244 7A SOUTHSIDE", "Name": "BARRY, ESSETTA(LIFE ESTATE)", "Address": "PO Box 302462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37900, "Improved_V": 41000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.278422775400003, "SHAPE_Area": 453.60154354700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355888.317800000309944, 257160.201099999248981 ], [ 355874.743500001728535, 257144.469099998474121 ], [ 355856.902199998497963, 257156.355399999767542 ], [ 355866.477200001478195, 257168.254999998956919 ], [ 355868.044900000095367, 257173.545099999755621 ], [ 355888.317800000309944, 257160.201099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9413216, "LATITUDE": 18.34410607, "OBJECTID_1": 8960, "PARCEL_NO_": "105301012200", "Tax_Legal_": "ANNAS FANCY 127 KRONP. QTR", "Name": "TESTAMARK, CHRISTALIA JOSEPH", "Address": "PO Box 11392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.030212926199994, "SHAPE_Area": 483.38890138599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357710.650499999523163, 257167.305599998682737 ], [ 357691.351099997758865, 257161.02589999884367 ], [ 357689.684600003063679, 257167.344999998807907 ], [ 357688.770400002598763, 257180.003199998289347 ], [ 357690.366800002753735, 257181.91609999909997 ], [ 357689.524499997496605, 257186.131099998950958 ], [ 357710.474299997091293, 257187.991300001740456 ], [ 357710.650499999523163, 257167.305599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95329374000001, "LATITUDE": 18.34399845, "OBJECTID_1": 8256, "PARCEL_NO_": "105202040500", "Tax_Legal_": "CONTANT 11 3G 7BA SOUTHSIDE QTR", "Name": "1864 INVESTMENTS LLC", "Address": "PO BOX 503268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 91500, "Improved_V": 153100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.673623913, "SHAPE_Area": 1516.2053580700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356459.312899999320507, 257150.097899999469519 ], [ 356456.906499996781349, 257148.600499998778105 ], [ 356457.737999998033047, 257145.651999998837709 ], [ 356440.097999997437, 257133.89750000089407 ], [ 356426.44650000333786, 257127.241900000721216 ], [ 356406.785700000822544, 257163.388999998569489 ], [ 356447.796099998056889, 257176.8125 ], [ 356459.312899999320507, 257150.097899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202059300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95158304, "LATITUDE": 18.34406666, "OBJECTID_1": 8390, "PARCEL_NO_": "105202059300", "Tax_Legal_": "22-4 CONTANT NO.7BA SOUTHSIDE QTR", "Name": "EMANUEL, KILO M.", "Address": "8243 B Bournefield", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.94762138199999, "SHAPE_Area": 765.25321674400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356628.670900002121925, 257147.684300001710653 ], [ 356602.060699999332428, 257147.677600000053644 ], [ 356602.613499999046326, 257177.446299999952316 ], [ 356627.612800002098083, 257177.228700000792742 ], [ 356628.670900002121925, 257147.684300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96577751, "LATITUDE": 18.34410521, "OBJECTID_1": 7549, "PARCEL_NO_": "105201034500", "Tax_Legal_": "LINDBERG BAY 27C SOUTHSIDE QUARTER", "Name": "HODGE, CALVIN E. & LEONILLE B", "Address": "PO Box 1144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041144, "Country": "United States", "Land_Value": 10100, "Improved_V": 72800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.698263105799995, "SHAPE_Area": 498.87787622299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355128.042400002479553, 257144.901599999517202 ], [ 355100.615199998021126, 257146.154699999839067 ], [ 355101.311800003051758, 257159.037200000137091 ], [ 355101.268700003623962, 257164.103000000119209 ], [ 355129.502199999988079, 257162.856499999761581 ], [ 355128.042400002479553, 257144.901599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202038800", "MAP": "D9-1531-T79", "PARCEL_NAM": "11E", "ACRE": "6,395 sq ft", "LONGITUDE": -64.95430754, "LATITUDE": 18.3440481, "OBJECTID_1": 8245, "PARCEL_NO_": "105202038800", "Tax_Legal_": "CONTANT 11E 7BA S S QTR", "Name": "ILLIDGE, J. & PEREZ, K", "Address": "PO Box 8483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45900, "Improved_V": 109200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.103996160999998, "SHAPE_Area": 505.516950673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356336.580799996852875, 257169.358300000429153 ], [ 356336.807300001382828, 257142.76240000128746 ], [ 356315.799999997019768, 257147.656700000166893 ], [ 356320.411300003528595, 257174.292199999094009 ], [ 356336.580799996852875, 257169.358300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201043200", "MAP": null, "PARCEL_NAM": "26I", "ACRE": null, "LONGITUDE": -64.96161949, "LATITUDE": 18.34394904, "OBJECTID_1": 7610, "PARCEL_NO_": "105201043200", "Tax_Legal_": "LINDBERG BAY 26I SOUTHSIDE QUARTER", "Name": "SOLDIEW, TERIQUE B", "Address": "PO BOX 303275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.19404303500001, "SHAPE_Area": 573.08872686699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355567.705700002610683, 257122.324400000274181 ], [ 355547.540700003504753, 257123.003699999302626 ], [ 355547.16669999808073, 257166.908100001513958 ], [ 355552.807300001382828, 257167.376499999314547 ], [ 355567.705700002610683, 257122.324400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94252832, "LATITUDE": 18.34386315, "OBJECTID_1": 8974, "PARCEL_NO_": "105301013900", "Tax_Legal_": "130A ESTATE ANNA'S FANCY KRONPRINDSENS QTR.", "Name": "WILLIAMS, JUDITH O", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 151800, "Improved_V": 33400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.16888505899999, "SHAPE_Area": 1811.5166608899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357566.037500001490116, 257104.69370000064373 ], [ 357562.707999996840954, 257116.90989999845624 ], [ 357558.512800000607967, 257136.085099998861551 ], [ 357551.828500002622604, 257163.472500000149012 ], [ 357577.472300000488758, 257182.258699998259544 ], [ 357593.002599999308586, 257157.687800001353025 ], [ 357593.079899996519089, 257148.611400000751019 ], [ 357577.205399997532368, 257118.928399998694658 ], [ 357566.037500001490116, 257104.69370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96605123000001, "LATITUDE": 18.34409583, "OBJECTID_1": 7540, "PARCEL_NO_": "105201033600", "Tax_Legal_": "LINDBERG BAY 60 24 SOUTHSIDE", "Name": "JACKSON, JR. FRANCIS & TONI", "Address": "PO Box 6591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11100, "Improved_V": 162700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.767646648600007, "SHAPE_Area": 388.49833305200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355100.615199998021126, 257146.154699999839067 ], [ 355083.675499998033047, 257146.860500000417233 ], [ 355070.769100002944469, 257147.388099998235703 ], [ 355071.463899999856949, 257160.481600001454353 ], [ 355101.311800003051758, 257159.037200000137091 ], [ 355100.615199998021126, 257146.154699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201071900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9591021, "LATITUDE": 18.34398992, "OBJECTID_1": 7842, "PARCEL_NO_": "105201071900", "Tax_Legal_": "CONTANT 233 7A S S QTR", "Name": "BENJAMIN, JAMES A. & ALVA", "Address": "12915 Steam Mill Farm Drive", "City": "Brandywine", "State": "Maryland", "Zip": 206130000, "Country": "United States", "Land_Value": 39400, "Improved_V": 35300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.467279064, "SHAPE_Area": 695.12812990800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355818.432899996638298, 257128.598400000482798 ], [ 355803.674699999392033, 257157.186299998313189 ], [ 355817.304700002074242, 257166.374899998307228 ], [ 355838.452299997210503, 257145.016399998217821 ], [ 355828.877199999988079, 257133.116799999028444 ], [ 355826.474500000476837, 257131.197299998253584 ], [ 355818.432899996638298, 257128.598400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105201036300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96455315, "LATITUDE": 18.34397814, "OBJECTID_1": 7567, "PARCEL_NO_": "105201036300", "Tax_Legal_": "LINDBERG 27-O SOUTHSIDE QTR", "Name": "FLEMING, ROBERT M", "Address": "27-1 LINDBERG BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.50458263900001, "SHAPE_Area": 1395.2740282300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355263.50110000371933, 257146.2212999984622 ], [ 355263.702500000596046, 257122.58049999922514 ], [ 355224.983300000429153, 257124.163400001823902 ], [ 355225.482199996709824, 257160.264499999582767 ], [ 355263.389600001275539, 257159.308200001716614 ], [ 355263.50110000371933, 257146.2212999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202038700", "MAP": "D9-1531-T79", "PARCEL_NAM": "11F", "ACRE": "6,590 sq ft", "LONGITUDE": -64.95410762, "LATITUDE": 18.34401902, "OBJECTID_1": 8244, "PARCEL_NO_": "105202038700", "Tax_Legal_": "CONTANT 11F S S QTR", "Name": "HENRY, M & THOMAS, E", "Address": "6G St. Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.774176217600001, "SHAPE_Area": 606.107217569 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356361.612400002777576, 257165.341299999505281 ], [ 356359.398500002920628, 257141.258600000292063 ], [ 356336.807300001382828, 257142.76240000128746 ], [ 356336.580799996852875, 257169.358300000429153 ], [ 356361.612400002777576, 257165.341299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96551056, "LATITUDE": 18.34410077, "OBJECTID_1": 7544, "PARCEL_NO_": "105201034000", "Tax_Legal_": "LINDBERG BAY 27D SOUTHSIDE QUARTER", "Name": "ANTHONY, ALPHINA", "Address": "8455 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5000, "Improved_V": 53200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.8553617285, "SHAPE_Area": 146.804063912 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355151.310400001704693, 257158.602000001817942 ], [ 355151.387699998915195, 257149.525600001215935 ], [ 355134.447999998927116, 257150.231300000101328 ], [ 355135.180600002408028, 257158.892200000584126 ], [ 355151.310400001704693, 257158.602000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201036600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96532954, "LATITUDE": 18.34409491, "OBJECTID_1": 7578, "PARCEL_NO_": "105201036600", "Tax_Legal_": "LINDBERG BAY 27DA S S QTR", "Name": "ANTHONY, RUTH A. (TRUSTEE)", "Address": "8455 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5000, "Improved_V": 109500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.932928952899999, "SHAPE_Area": 200.07882062799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355173.086199998855591, 257158.146899998188019 ], [ 355173.165399998426437, 257148.859499998390675 ], [ 355161.873400002717972, 257149.1891999989748 ], [ 355151.387699998915195, 257149.525600001215935 ], [ 355151.310400001704693, 257158.602000001817942 ], [ 355173.086199998855591, 257158.146899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201036000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96514417, "LATITUDE": 18.34398814, "OBJECTID_1": 7563, "PARCEL_NO_": "105201036000", "Tax_Legal_": "LINDBERG 27I SOUTHSIDE QUARTER", "Name": "CHRISTIAN, DOROTHY M", "Address": "PO Box 2", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 20200, "Improved_V": 83000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.908105655599996, "SHAPE_Area": 573.51177916799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355191.636799998581409, 257157.665500000119209 ], [ 355190.295699998736382, 257125.779399998486042 ], [ 355172.549699999392033, 257126.478500001132488 ], [ 355173.165399998426437, 257148.859499998390675 ], [ 355173.086199998855591, 257158.146899998188019 ], [ 355191.636799998581409, 257157.665500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96640763000001, "LATITUDE": 18.34402019, "OBJECTID_1": 7542, "PARCEL_NO_": "105201033700", "Tax_Legal_": "LINDBERG 60-25 S S QTR", "Name": "TRUST AGREEMENT OF MARIA MAGDALENA VICTORINE", "Address": "8621 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8300, "Improved_V": 23200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.919464816, "SHAPE_Area": 661.59381343500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355033.599600002169609, 257156.372000001370907 ], [ 355064.257399998605251, 257154.511999998241663 ], [ 355062.828199997544289, 257132.968800000846386 ], [ 355035.402800001204014, 257134.010899998247623 ], [ 355032.955099999904633, 257137.368299998342991 ], [ 355033.599600002169609, 257156.372000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105201036100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96491161, "LATITUDE": 18.34397753, "OBJECTID_1": 7565, "PARCEL_NO_": "105201036100", "Tax_Legal_": "LINDBERG 27M 4A SOUTHSIDE QTR", "Name": "FLEMING, ROSE MARIE", "Address": "27 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52300, "Improved_V": 85400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.78833299599999, "SHAPE_Area": 1004.13905432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355221.756300002336502, 257124.348099999129772 ], [ 355190.295699998736382, 257125.779399998486042 ], [ 355191.636799998581409, 257157.665500000119209 ], [ 355222.283900000154972, 257157.071899998933077 ], [ 355221.756300002336502, 257124.348099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94201663, "LATITUDE": 18.34400056, "OBJECTID_1": 8973, "PARCEL_NO_": "105301013800", "Tax_Legal_": "130-E&130D-1ANNAS FANCY KRONPRINDSENS QTR.", "Name": "MURRAY, GEORGE A. & ELLENOR", "Address": "399 Grand Ave", "City": "Brooklyn", "State": "New York", "Zip": 11238, "Country": "United States", "Land_Value": 89800, "Improved_V": 186000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.635055655, "SHAPE_Area": 994.77904619399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357605.747100003063679, 257176.157299999147654 ], [ 357650.936599999666214, 257172.305300001055002 ], [ 357650.29389999806881, 257153.090500000864267 ], [ 357643.834399998188019, 257154.093100000172853 ], [ 357631.721799999475479, 257156.104899998754263 ], [ 357629.358599998056889, 257149.541600000113249 ], [ 357604.339500002563, 257152.0810999982059 ], [ 357605.747100003063679, 257176.157299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202038600", "MAP": "D9-1531-T79", "PARCEL_NAM": "11G", "ACRE": "6,321 sq ft", "LONGITUDE": -64.95386183, "LATITUDE": 18.3439945, "OBJECTID_1": 8243, "PARCEL_NO_": "105202038600", "Tax_Legal_": "CONTANT 11G 7BA S S QTR", "Name": "SMITH, MYRNA V", "Address": "PO Box 10561", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42900, "Improved_V": 121600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.840579413, "SHAPE_Area": 624.31860098599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356387.56360000371933, 257148.032999999821186 ], [ 356382.810300000011921, 257138.072700001299381 ], [ 356377.148100003600121, 257140.137299999594688 ], [ 356377.126500003039837, 257142.670200001448393 ], [ 356372.283299997448921, 257143.263900000602007 ], [ 356371.491300001740456, 257141.568599998950958 ], [ 356359.398500002920628, 257141.258600000292063 ], [ 356361.612400002777576, 257165.341299999505281 ], [ 356393.10530000180006, 257160.110700000077486 ], [ 356387.56360000371933, 257148.032999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95355923, "LATITUDE": 18.34389465, "OBJECTID_1": 8258, "PARCEL_NO_": "105202040700", "Tax_Legal_": "CONTANT 11 3F SOUTHSIDE QTR", "Name": "1864 INVESTMENTS LLC", "Address": "PO BOX 503268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 85700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.497424491, "SHAPE_Area": 891.12235840100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356426.44650000333786, 257127.241900000721216 ], [ 356410.38849999755621, 257119.088899999856949 ], [ 356387.56360000371933, 257148.032999999821186 ], [ 356393.10530000180006, 257160.110700000077486 ], [ 356397.941399998962879, 257160.361299999058247 ], [ 356406.785700000822544, 257163.388999998569489 ], [ 356426.44650000333786, 257127.241900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301122400", "MAP": "D9-6288-T97", "PARCEL_NAM": "REM 200-5C-4", "ACRE": "0.19", "LONGITUDE": -64.94584626, "LATITUDE": 18.34390349, "OBJECTID_1": 9446, "PARCEL_NO_": "105301122400", "Tax_Legal_": "ALTONA & WELGUNST 200-5C-4 ALTONA & WELGUNST", "Name": "HAMILTON, DAISY C. & CHARLES A", "Address": "PO Box 302463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 115300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.943422845, "SHAPE_Area": 848.90995805099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357220.694799996912479, 257130.153799999505281 ], [ 357200.308600001037121, 257156.795800000429153 ], [ 357222.781099997460842, 257169.223200000822544 ], [ 357243.197800002992153, 257138.992800001055002 ], [ 357223.903899997472763, 257132.079900000244379 ], [ 357220.694799996912479, 257130.153799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201071500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9593161, "LATITUDE": 18.34390827, "OBJECTID_1": 7838, "PARCEL_NO_": "105201071500", "Tax_Legal_": "CONTANT 232 7A S S QTR", "Name": "SUTTON, ULRIC S", "Address": "PO Box 306044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52600, "Improved_V": 18100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.157733275, "SHAPE_Area": 776.57165806099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355816.046300001442432, 257124.779100000858307 ], [ 355776.484899997711182, 257130.577100001275539 ], [ 355778.021999999880791, 257139.455600000917912 ], [ 355779.618400000035763, 257141.368500001728535 ], [ 355803.674699999392033, 257157.186299998313189 ], [ 355818.432899996638298, 257128.598400000482798 ], [ 355816.83110000193119, 257127.31870000064373 ], [ 355816.046300001442432, 257124.779100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95759441, "LATITUDE": 18.34389017, "OBJECTID_1": 8129, "PARCEL_NO_": "105202023900", "Tax_Legal_": "224 ESTATE CONTANT 7A SOUTHSIDE QTR", "Name": "SCHNEIDER, LEONILE-LIFE INTERET", "Address": "PO Box 12074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 57500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.147964277599996, "SHAPE_Area": 526.87747528399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355986.23759999871254, 257119.206000000238419 ], [ 355965.109899997711182, 257138.242600001394749 ], [ 355978.648100003600121, 257158.196199998259544 ], [ 355981.095899999141693, 257154.838700000196695 ], [ 355983.574100002646446, 257147.892900001257658 ], [ 355992.558700002729893, 257134.456500001251698 ], [ 355991.01799999922514, 257126.000100001692772 ], [ 355986.23759999871254, 257119.206000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201072100", "MAP": "D9-853-T69", "PARCEL_NAM": "245", "ACRE": null, "LONGITUDE": -64.9587286, "LATITUDE": 18.34395088, "OBJECTID_1": 7844, "PARCEL_NO_": "105201072100", "Tax_Legal_": "CONTANT ESTATE 245 7A SOUTHSIDE", "Name": "DESBONNE, A. & B. LAMBERT & I. BAPTISTE & C. & M. KING", "Address": "PO Box 6443", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44600, "Improved_V": 49000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.352683404800004, "SHAPE_Area": 379.73291696899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355862.765699997544289, 257130.649900000542402 ], [ 355845.734300002455711, 257142.120700001716614 ], [ 355856.902199998497963, 257156.355399999767542 ], [ 355874.743500001728535, 257144.469099998474121 ], [ 355862.765699997544289, 257130.649900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96547034, "LATITUDE": 18.34396179, "OBJECTID_1": 7550, "PARCEL_NO_": "105201034600", "Tax_Legal_": "LINDBERG BAY 27B SOUTHSIDE QTR", "Name": "ANTHONY, EDGAR R", "Address": "8455 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.400877217100003, "SHAPE_Area": 598.396338259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355161.873400002717972, 257149.1891999989748 ], [ 355160.803300000727177, 257127.395700000226498 ], [ 355151.916299998760223, 257127.724899999797344 ], [ 355132.496699996292591, 257129.589999999850988 ], [ 355132.964800000190735, 257135.020500000566244 ], [ 355134.447999998927116, 257150.231300000101328 ], [ 355151.387699998915195, 257149.525600001215935 ], [ 355161.873400002717972, 257149.1891999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202033000", "MAP": "D9-1531-T79", "PARCEL_NAM": "REM 11 CONSV", "ACRE": "0.19", "LONGITUDE": -64.95489304, "LATITUDE": 18.34397022, "OBJECTID_1": 8216, "PARCEL_NO_": "105202033000", "Tax_Legal_": "CONTANT 11REM.(CONSERVATION E) 7BA SOUTHSIDE QTR", "Name": "MANASSAH REALTY INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.469571506699999, "SHAPE_Area": 202.376497793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356269.096900001168251, 257139.886199999600649 ], [ 356256.147299997508526, 257145.479699999094009 ], [ 356261.674599997699261, 257159.246100001037121 ], [ 356276.278099998831749, 257148.810899998992682 ], [ 356272.277099996805191, 257145.189599998295307 ], [ 356269.096900001168251, 257139.886199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96223055, "LATITUDE": 18.3439309, "OBJECTID_1": 7608, "PARCEL_NO_": "105201043000", "Tax_Legal_": "LINDBERG BAY 26E SOUTHSIDE QUARTER", "Name": "O'NEAL, HARRIET", "Address": "PO BOX 153", "City": "TORTOLA", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 19600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.088445057, "SHAPE_Area": 620.91629633699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355498.319700002670288, 257126.822799999266863 ], [ 355463.6266999989748, 257129.071899998933077 ], [ 355468.423199996352196, 257133.966299999505281 ], [ 355477.236900001764297, 257140.582400001585484 ], [ 355497.310199998319149, 257150.668099999427795 ], [ 355505.362499997019768, 257152.000500001013279 ], [ 355511.017499998211861, 257150.780299998819828 ], [ 355515.068800002336502, 257148.491399999707937 ], [ 355509.449799999594688, 257145.490100000053644 ], [ 355502.236199997365475, 257140.364799998700619 ], [ 355499.865800000727177, 257134.645899999886751 ], [ 355498.319700002670288, 257126.822799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201034900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96614051, "LATITUDE": 18.34397353, "OBJECTID_1": 7553, "PARCEL_NO_": "105201034900", "Tax_Legal_": "LINDBERG 60-26A S S QTR", "Name": "PHIPPS, LUBINA & BROWN, JANET", "Address": "PO Box 12142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 38200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.300779190100002, "SHAPE_Area": 197.35517817799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355070.769100002944469, 257147.388099998235703 ], [ 355083.675499998033047, 257146.860500000417233 ], [ 355082.994999997317791, 257132.078400000929832 ], [ 355069.282300002872944, 257132.599399998784065 ], [ 355070.769100002944469, 257147.388099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96599738, "LATITUDE": 18.34396755, "OBJECTID_1": 7543, "PARCEL_NO_": "105201033800", "Tax_Legal_": "LINDBERG 60 26 SOUTHSIDE QTR", "Name": "CLARKE, JUNIOR", "Address": "60-26 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47500, "Improved_V": 119500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.504400544100001, "SHAPE_Area": 250.88534008900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355100.615199998021126, 257146.154699999839067 ], [ 355099.934799998998642, 257131.372600000351667 ], [ 355082.994999997317791, 257132.078400000929832 ], [ 355083.675499998033047, 257146.860500000417233 ], [ 355100.615199998021126, 257146.154699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201041500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96266848, "LATITUDE": 18.34392129, "OBJECTID_1": 7593, "PARCEL_NO_": "105201041500", "Tax_Legal_": "LINBERG BAY 26C SOUTHSIDE QUARTER", "Name": "CAREY, HENRY & URSULA", "Address": "8490 Linbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 160800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.044282522, "SHAPE_Area": 767.55109965899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355453.177000001072884, 257125.186700001358986 ], [ 355420.904700003564358, 257127.244600001722574 ], [ 355430.398800000548363, 257148.642799999564886 ], [ 355472.370200000703335, 257143.920000001788139 ], [ 355465.154799997806549, 257139.005800001323223 ], [ 355457.161799997091293, 257130.707800000905991 ], [ 355453.177000001072884, 257125.186700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105201036500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96412539000001, "LATITUDE": 18.34390538, "OBJECTID_1": 7577, "PARCEL_NO_": "105201036500", "Tax_Legal_": "LINDBERG 27P 4A SOUTHSIDE QTR", "Name": "FLEMING, NAVEL E", "Address": "27P Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 73700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.30535074700001, "SHAPE_Area": 1264.9817857400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355263.702500000596046, 257122.58049999922514 ], [ 355263.50110000371933, 257146.2212999984622 ], [ 355315.918600000441074, 257145.806000001728535 ], [ 355314.521799996495247, 257120.463300000876188 ], [ 355263.702500000596046, 257122.58049999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173100", "MAP": null, "PARCEL_NAM": "9Z", "ACRE": "0.07", "LONGITUDE": -64.9383827, "LATITUDE": 18.34392946, "OBJECTID_1": 10077, "PARCEL_NO_": "105302173100", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9Z CROWN PRINCE QTR", "Name": "MOOLENAAR, LUCIEN, RUTH, GWEN", "Address": "PO BOX 302275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12800, "Improved_V": 69200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.861422196000007, "SHAPE_Area": 323.79691789899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358019.589800000190735, 257165.587900001555681 ], [ 358020.448899999260902, 257149.364999998360872 ], [ 358009.167700000107288, 257148.428300000727177 ], [ 358001.948299996554852, 257154.431800000369549 ], [ 358000.445600003004074, 257161.636199999600649 ], [ 357999.051399998366833, 257168.319899998605251 ], [ 358019.589800000190735, 257165.587900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9634021, "LATITUDE": 18.34390444, "OBJECTID_1": 7589, "PARCEL_NO_": "105201041100", "Tax_Legal_": "26AB ESTATE LINDBERG BAY No.4 SOUTHSIDE QTR.", "Name": "BLAIZE, THELMA", "Address": "PO Box 307402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.653138091, "SHAPE_Area": 625.17213901900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355352.418499998748302, 257120.773499999195337 ], [ 355356.228900000452995, 257146.769200000911951 ], [ 355382.829999998211861, 257147.831300001591444 ], [ 355376.510799996554852, 257132.369699999690056 ], [ 355375.734999999403954, 257128.77479999884963 ], [ 355374.950300000607967, 257126.235199999064207 ], [ 355373.371799997985363, 257122.211500000208616 ], [ 355371.780799999833107, 257119.665399998426437 ], [ 355352.418499998748302, 257120.773499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96309041000001, "LATITUDE": 18.34387569, "OBJECTID_1": 7591, "PARCEL_NO_": "105201041300", "Tax_Legal_": "26AC LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "BLAIZE, THELMA M. & ADELLE MARIA", "Address": "PO Box 307402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 297800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.123651357, "SHAPE_Area": 842.95180180700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355388.49040000140667, 257145.977699998766184 ], [ 355420.775200001895428, 257142.442299999296665 ], [ 355410.480200000107288, 257120.40430000051856 ], [ 355408.084600001573563, 257117.640500001609325 ], [ 355382.275399997830391, 257118.273600000888109 ], [ 355379.847499996423721, 257119.309200000017881 ], [ 355380.610600002110004, 257124.381700001657009 ], [ 355384.559500001370907, 257134.124299999326468 ], [ 355385.328000001609325, 257138.5636 ], [ 355388.49040000140667, 257145.977699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95291657, "LATITUDE": 18.34379135, "OBJECTID_1": 8254, "PARCEL_NO_": "105202040300", "Tax_Legal_": "CONTANT 11 3J SOUTHSIDE QTR", "Name": "PEETS, LILLITH CONNOR", "Address": "PO Box 8853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57900, "Improved_V": 213200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.41704204600001, "SHAPE_Area": 1041.07307915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356495.8091000020504, 257125.487500000745058 ], [ 356462.879799999296665, 257110.019299998879433 ], [ 356452.1908999979496, 257134.207600001245737 ], [ 356466.630800001323223, 257142.980599999427795 ], [ 356477.883199997246265, 257147.29450000077486 ], [ 356489.151799999177456, 257149.708799999207258 ], [ 356495.8091000020504, 257125.487500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9378401, "LATITUDE": 18.34878587, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.941800752600003, "SHAPE_Area": 261.69426212100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358077.170199997723103, 257684.951400000602007 ], [ 358074.765699997544289, 257683.243000000715256 ], [ 358049.624300003051758, 257700.135800000280142 ], [ 358059.222800001502037, 257709.291400000452995 ], [ 358074.70269999653101, 257690.630800001323223 ], [ 358077.170199997723103, 257684.951400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91019005, "LATITUDE": 18.34875105, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 19.552698035399999, "SHAPE_Area": 18.382408412099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360983.870899997651577, 257715.285300001502037 ], [ 360984.625100001692772, 257721.413199998438358 ], [ 360988.712399996817112, 257714.902699999511242 ], [ 360987.110600002110004, 257713.623100001364946 ], [ 360983.870899997651577, 257715.285300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9376354, "LATITUDE": 18.34873215, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.141267514799999, "SHAPE_Area": 33.190616878500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358080.300200000405312, 257696.16499999910593 ], [ 358089.216399997472763, 257690.749600000679493 ], [ 358086.037900000810623, 257685.235100001096725 ], [ 358080.300200000405312, 257696.16499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92608001000001, "LATITUDE": 18.34858895, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.458959587700001, "SHAPE_Area": 125.27294189 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359310.970399998128414, 257678.373100001364946 ], [ 359298.0675999969244, 257678.47859999909997 ], [ 359310.804899998009205, 257697.792399998754263 ], [ 359310.970399998128414, 257678.373100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93753092, "LATITUDE": 18.34846398, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.98189177, "SHAPE_Area": 181.86779116400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358107.34009999781847, 257645.723900001496077 ], [ 358104.157999999821186, 257640.631599999964237 ], [ 358086.92509999871254, 257675.743200000375509 ], [ 358085.251299999654293, 257682.906599998474121 ], [ 358084.430600002408028, 257684.588700000196695 ], [ 358086.037900000810623, 257685.235100001096725 ], [ 358087.682899996638298, 257681.448899999260902 ], [ 358107.34009999781847, 257645.723900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93001509, "LATITUDE": 18.34842492, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.535707121, "SHAPE_Area": 222.20595871800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358906.183499999344349, 257677.171100001782179 ], [ 358903.786200001835823, 257674.618299998342991 ], [ 358899.812100000679493, 257667.830800000578165 ], [ 358895.019199997186661, 257662.514199998229742 ], [ 358880.60809999704361, 257650.363899998366833 ], [ 358877.425999999046326, 257645.271699998527765 ], [ 358874.163000002503395, 257649.67790000140667 ], [ 358877.350500002503395, 257654.136999998241663 ], [ 358885.356100000441074, 257660.957499999552965 ], [ 358892.558899998664856, 257667.349199999123812 ], [ 358900.533900000154972, 257677.758099999278784 ], [ 358906.136799998581409, 257682.659099999815226 ], [ 358906.183499999344349, 257677.171100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "UNSURVEYED PORTION OF 8 LYTTON'S FANCY", "ACRE": null, "LONGITUDE": -64.93117711, "LATITUDE": 18.34803393, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.25564352499998, "SHAPE_Area": 4317.8691433100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358803.597699999809265, 257603.293099999427795 ], [ 358805.326399996876717, 257597.497900001704693 ], [ 358801.496699996292591, 257574.884199999272823 ], [ 358795.766500003635883, 257575.997900001704693 ], [ 358773.126900002360344, 257583.200899999588728 ], [ 358761.795299999415874, 257588.174400001764297 ], [ 358750.489000000059605, 257590.192800000309944 ], [ 358743.230400003492832, 257590.344500001519918 ], [ 358741.124399997293949, 257589.912999998778105 ], [ 358740.207999996840954, 257616.451999999582767 ], [ 358725.388199999928474, 257634.561000000685453 ], [ 358729.730099998414516, 257638.144900001585484 ], [ 358740.329499997198582, 257646.893800001591444 ], [ 358773.998599998652935, 257670.178599998354912 ], [ 358803.597699999809265, 257603.293099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9456782, "LATITUDE": 18.34830994, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.07155021099999, "SHAPE_Area": 918.71169019000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357269.73929999768734, 257627.824799999594688 ], [ 357253.478699997067451, 257628.347699999809265 ], [ 357240.427000001072884, 257628.536499999463558 ], [ 357226.205799996852875, 257626.652100000530481 ], [ 357214.345200002193451, 257626.260999999940395 ], [ 357208.986400000751019, 257627.120799999684095 ], [ 357224.294799998402596, 257654.117499999701977 ], [ 357240.473200000822544, 257648.128199998289347 ], [ 357251.813799999654293, 257642.099300000816584 ], [ 357265.607400000095367, 257632.079700000584126 ], [ 357269.73929999768734, 257627.824799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "G9-1416-T69", "PARCEL_NAM": "297C", "ACRE": "840 sq ft", "LONGITUDE": -64.92547692, "LATITUDE": 18.34829719, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.914334501399999, "SHAPE_Area": 75.925602653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359372.592600002884865, 257649.263300001621246 ], [ 359364.757399998605251, 257647.584300000220537 ], [ 359365.938199996948242, 257650.600000001490116 ], [ 359369.041199997067451, 257658.524500001221895 ], [ 359370.605200000107288, 257658.859700001776218 ], [ 359373.428700000047684, 257659.259199999272823 ], [ 359373.639600001275539, 257658.361299999058247 ], [ 359375.624200001358986, 257649.912900000810623 ], [ 359372.592600002884865, 257649.263300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "G9-1416-T69", "PARCEL_NAM": "297ba & bb", "ACRE": "711 sq ft", "LONGITUDE": -64.925534, "LATITUDE": 18.34830287, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.1270964741, "SHAPE_Area": 48.257070613800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359364.757399998605251, 257647.584300000220537 ], [ 359363.404200002551079, 257647.294300001114607 ], [ 359362.254900000989437, 257651.106699999421835 ], [ 359362.089199997484684, 257651.656399998813868 ], [ 359360.709299996495247, 257656.233500000089407 ], [ 359362.973700001835823, 257657.021099999547005 ], [ 359364.495200000703335, 257657.550400000065565 ], [ 359366.224899999797344, 257657.921000000089407 ], [ 359369.041199997067451, 257658.524500001221895 ], [ 359365.938199996948242, 257650.600000001490116 ], [ 359364.757399998605251, 257647.584300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903017500", "MAP": "F9-2624-T70", "PARCEL_NAM": "297-B", "ACRE": "0.09", "LONGITUDE": -64.92562187, "LATITUDE": 18.34823092, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.439386205199995, "SHAPE_Area": 235.56692957000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359362.254900000989437, 257651.106699999421835 ], [ 359363.404200002551079, 257647.294300001114607 ], [ 359364.757399998605251, 257647.584300000220537 ], [ 359363.70610000193119, 257640.596799999475479 ], [ 359363.429999999701977, 257638.353100001811981 ], [ 359341.40259999781847, 257640.760999999940395 ], [ 359345.144100002944469, 257644.756000000983477 ], [ 359346.601700000464916, 257646.312300000339746 ], [ 359351.184199996292591, 257650.894799999892712 ], [ 359359.476300001144409, 257655.804699998348951 ], [ 359360.709299996495247, 257656.233500000089407 ], [ 359362.089199997484684, 257651.656399998813868 ], [ 359362.003600001335144, 257651.137499999254942 ], [ 359362.254900000989437, 257651.106699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9258119, "LATITUDE": 18.34825201, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.033731424700001, "SHAPE_Area": 117.984220186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359333.057300001382828, 257641.401399999856949 ], [ 359329.822999998927116, 257642.430399999022484 ], [ 359331.360100001096725, 257651.308899998664856 ], [ 359332.924199998378754, 257657.021299999207258 ], [ 359341.146300002932549, 257649.912900000810623 ], [ 359342.346500001847744, 257649.149099998176098 ], [ 359340.055299997329712, 257645.984999999403954 ], [ 359336.672899998724461, 257640.202399998903275 ], [ 359333.057300001382828, 257641.401399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95473761, "LATITUDE": 18.34823073, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.7091886728900001, "SHAPE_Area": 0.13406903958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356278.445799998939037, 257620.456199999898672 ], [ 356277.905799999833107, 257620.333799999207258 ], [ 356277.901600003242493, 257620.8293999992311 ], [ 356278.445799998939037, 257620.456199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95775615, "LATITUDE": 18.34796685, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.41945993600001, "SHAPE_Area": 627.21739118300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355977.177599996328354, 257614.779500000178814 ], [ 355948.643100000917912, 257556.706300001591444 ], [ 355939.755599997937679, 257558.744500000029802 ], [ 355969.071299999952316, 257619.779399998486042 ], [ 355978.75789999961853, 257618.592099998146296 ], [ 355977.177599996328354, 257614.779500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94936573, "LATITUDE": 18.34813948, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.494366583400002, "SHAPE_Area": 64.5089549968 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356836.713899999856949, 257620.969999998807907 ], [ 356841.57150000333786, 257618.687800001353025 ], [ 356856.95440000295639, 257611.425400000065565 ], [ 356855.361599996685982, 257609.090300001204014 ], [ 356835.122800000011921, 257618.423900000751019 ], [ 356836.713899999856949, 257620.969999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93772209, "LATITUDE": 18.34810939, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.375874033599999, "SHAPE_Area": 50.5513344847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358085.020400002598763, 257615.354800000786781 ], [ 358072.065499998629093, 257621.581599999219179 ], [ 358070.442100003361702, 257622.834899999201298 ], [ 358074.435900002717972, 257627.300500001758337 ], [ 358085.020400002598763, 257615.354800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95245443, "LATITUDE": 18.34785641, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.410390967399998, "SHAPE_Area": 45.616562441399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356524.130800001323223, 257587.169799998402596 ], [ 356518.5962999984622, 257574.247800000011921 ], [ 356515.362000003457069, 257575.276799999177456 ], [ 356520.900100000202656, 257587.776700001209974 ], [ 356524.130800001323223, 257587.169799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92126704, "LATITUDE": 18.34768955, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.604944118099993, "SHAPE_Area": 199.14235904099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359826.163699999451637, 257592.663899999111891 ], [ 359821.44820000231266, 257578.270899999886751 ], [ 359803.568999998271465, 257594.589899998158216 ], [ 359803.550999999046326, 257596.700699999928474 ], [ 359805.160099998116493, 257597.135999999940395 ], [ 359826.163699999451637, 257592.663899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93606595, "LATITUDE": 18.34753895, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.968046920399999, "SHAPE_Area": 258.03438025999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358253.899400003254414, 257574.518300000578165 ], [ 358263.718999996781349, 257557.711199998855591 ], [ 358238.806000001728535, 257547.796999998390675 ], [ 358253.899400003254414, 257574.518300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94956499, "LATITUDE": 18.3471712, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.743430362600002, "SHAPE_Area": 89.444360417699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356835.310900002717972, 257501.690699998289347 ], [ 356814.280299998819828, 257509.328999999910593 ], [ 356820.709200002253056, 257511.914799999445677 ], [ 356827.975000001490116, 257510.918800000101328 ], [ 356833.662299998104572, 257505.899099998176098 ], [ 356835.310900002717972, 257501.690699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9217732, "LATITUDE": 18.34710246, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.588226341, "SHAPE_Area": 387.56076121500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359752.590800002217293, 257520.712099999189377 ], [ 359739.689800001680851, 257520.606499999761581 ], [ 359726.803199999034405, 257518.812300000339746 ], [ 359721.166199997067451, 257517.921799998730421 ], [ 359721.929300002753735, 257522.994300000369549 ], [ 359741.264700002968311, 257525.052400000393391 ], [ 359752.55120000243187, 257525.355799999088049 ], [ 359775.928900003433228, 257526.180399999022484 ], [ 359788.007399998605251, 257528.179099999368191 ], [ 359798.442699998617172, 257533.752999998629093 ], [ 359801.732699997723103, 257526.180500000715256 ], [ 359797.724500000476837, 257523.403499998152256 ], [ 359796.09570000320673, 257525.28999999910593 ], [ 359792.868699997663498, 257525.474700000137091 ], [ 359784.02080000191927, 257522.869199998676777 ], [ 359771.134199999272823, 257521.074999999254942 ], [ 359752.590800002217293, 257520.712099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93004209, "LATITUDE": 18.34702571, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.598785034299993, "SHAPE_Area": 371.73293438600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358872.122699998319149, 257510.550599999725819 ], [ 358905.127599999308586, 257517.153499998152256 ], [ 358906.036399997770786, 257505.128600001335144 ], [ 358871.401000000536442, 257500.6233000010252 ], [ 358872.122699998319149, 257510.550599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92386197, "LATITUDE": 18.34654615, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.390951534700001, "SHAPE_Area": 40.254227501800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359551.494599997997284, 257462.493099998682737 ], [ 359534.610600002110004, 257456.6554000005126 ], [ 359533.788099996745586, 257458.548500001430511 ], [ 359536.199799999594688, 257459.412599999457598 ], [ 359550.668499998748302, 257464.808400001376867 ], [ 359551.494599997997284, 257462.493099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96435173, "LATITUDE": 18.34648495, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.556773179699999, "SHAPE_Area": 28.5951272834 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355266.003200002014637, 257420.452300000935793 ], [ 355265.25620000064373, 257413.480099998414516 ], [ 355263.618400000035763, 257416.421999998390675 ], [ 355259.558100000023842, 257419.76630000025034 ], [ 355263.5608000010252, 257423.176600001752377 ], [ 355266.003200002014637, 257420.452300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96425227, "LATITUDE": 18.3460232, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.67076750300001, "SHAPE_Area": 500.15700631599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355287.810599997639656, 257321.627900000661612 ], [ 355285.364699997007847, 257324.774300001561642 ], [ 355283.710699997842312, 257329.615899998694658 ], [ 355282.071099996566772, 257332.768899999558926 ], [ 355280.445900000631809, 257334.233300000429153 ], [ 355274.717200003564358, 257344.107799999415874 ], [ 355269.773299999535084, 257356.521800000220537 ], [ 355267.237400002777576, 257370.222199998795986 ], [ 355268.693599998950958, 257388.599199999123812 ], [ 355266.937100000679493, 257405.472300000488758 ], [ 355266.894000001251698, 257410.538199998438358 ], [ 355265.27419999986887, 257411.369300000369549 ], [ 355265.25620000064373, 257413.480099998414516 ], [ 355266.003200002014637, 257420.452300000935793 ], [ 355269.255400002002716, 257417.312600001692772 ], [ 355271.73369999974966, 257410.366700001060963 ], [ 355272.635300002992153, 257399.186200000345707 ], [ 355272.685599997639656, 257393.276000000536442 ], [ 355272.847499996423721, 257374.278900001198053 ], [ 355272.928400002419949, 257364.780299998819828 ], [ 355273.77250000089407, 257360.354299999773502 ], [ 355277.904700003564358, 257348.566799998283386 ], [ 355280.352399997413158, 257345.209399998188019 ], [ 355283.624399997293949, 257339.747699998319149 ], [ 355285.263999998569489, 257336.594700001180172 ], [ 355290.193599998950958, 257325.869300000369549 ], [ 355295.074600003659725, 257320.842999998480082 ], [ 355287.810599997639656, 257321.627900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.96406312000001, "LATITUDE": 18.34631963, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.926979452, "SHAPE_Area": 334.28686198399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355304.938100002706051, 257393.539900001138449 ], [ 355298.457099996507168, 257397.075500000268221 ], [ 355290.417300000786781, 257394.265500001609325 ], [ 355287.188500002026558, 257394.661200001835823 ], [ 355272.685599997639656, 257393.276000000536442 ], [ 355272.635300002992153, 257399.186200000345707 ], [ 355291.169699996709824, 257400.604400001466274 ], [ 355296.799500003457069, 257402.339299999177456 ], [ 355291.839299999177456, 257416.653000000864267 ], [ 355300.753700003027916, 257411.448600001633167 ], [ 355305.615000002086163, 257408.744199998676777 ], [ 355308.971500001847744, 257393.361900001764297 ], [ 355304.938100002706051, 257393.539900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "G9-1968-T72", "PARCEL_NAM": "41A", "ACRE": null, "LONGITUDE": -64.95259978, "LATITUDE": 18.3462826, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.190330215700001, "SHAPE_Area": 59.6580208257 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356512.009499996900558, 257400.886100001633167 ], [ 356501.496799997985363, 257404.388700000941753 ], [ 356503.825900003314018, 257414.962400000542402 ], [ 356512.009499996900558, 257400.886100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9346567, "LATITUDE": 18.34627581, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.786073741199999, "SHAPE_Area": 28.594944654500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358395.469099998474121, 257426.433800000697374 ], [ 358405.994300000369549, 257421.453699998557568 ], [ 358405.231100000441074, 257416.38120000064373 ], [ 358395.469099998474121, 257426.433800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94942432000001, "LATITUDE": 18.3462287, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.086944065600001, "SHAPE_Area": 47.487924539300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356847.433700002729893, 257403.842500001192093 ], [ 356846.659699998795986, 257400.036499999463558 ], [ 356835.346199996769428, 257402.89919999986887 ], [ 356836.922799997031689, 257407.13399999961257 ], [ 356847.433700002729893, 257403.842500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94926346, "LATITUDE": 18.3461844, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.5746724766, "SHAPE_Area": 85.614694563599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356870.877899996936321, 257396.857200000435114 ], [ 356870.904799997806549, 257393.690999999642372 ], [ 356846.659699998795986, 257400.036499999463558 ], [ 356847.433700002729893, 257403.842500001192093 ], [ 356870.877899996936321, 257396.857200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "F9-607-T60", "PARCEL_NAM": "138", "ACRE": ".84", "LONGITUDE": -64.95875529, "LATITUDE": 18.34585554, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.53582821000001, "SHAPE_Area": 3447.56320065 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355882.005800001323223, 257382.006599999964237 ], [ 355879.095399998128414, 257309.831500001251698 ], [ 355876.568000003695488, 257308.925900001078844 ], [ 355860.355400003492832, 257318.925700001418591 ], [ 355850.65990000218153, 257321.168400000780821 ], [ 355846.631899997591972, 257320.713199999183416 ], [ 355839.629799999296665, 257319.738299999386072 ], [ 355834.008000001311302, 257341.684999998658895 ], [ 355821.85809999704361, 257389.115800000727177 ], [ 355826.688799999654293, 257389.999800000339746 ], [ 355834.753700003027916, 257389.854699999094009 ], [ 355871.09179999679327, 257383.819299999624491 ], [ 355882.005800001323223, 257382.006599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93361402, "LATITUDE": 18.34607365, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.179366537299998, "SHAPE_Area": 262.71565820900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358505.302000001072884, 257406.856699999421835 ], [ 358531.109399996697903, 257406.434599999338388 ], [ 358501.443099997937679, 257386.560100000351667 ], [ 358505.302000001072884, 257406.856699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201073900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96170515, "LATITUDE": 18.34589998, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.24198648699999, "SHAPE_Area": 1207.6240917800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355560.704599998891354, 257376.212699998170137 ], [ 355570.561999998986721, 257354.972899999469519 ], [ 355523.973899997770786, 257333.693300001323223 ], [ 355523.124399997293949, 257338.752599999308586 ], [ 355523.700499996542931, 257365.777300000190735 ], [ 355560.704599998891354, 257376.212699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96628795, "LATITUDE": 18.34581989, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.133199558, "SHAPE_Area": 368.15721685900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355078.794100001454353, 257341.237700000405312 ], [ 355078.867799997329712, 257332.583500001579523 ], [ 355058.659699998795986, 257338.328699998557568 ], [ 355046.518200002610683, 257343.717700000852346 ], [ 355041.649800002574921, 257347.266499999910593 ], [ 355042.364399999380112, 257358.038100000470877 ], [ 355056.957099996507168, 257348.86939999833703 ], [ 355078.794100001454353, 257341.237700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202034100", "MAP": "A9-682-T006", "PARCEL_NAM": "11-7-A", "ACRE": ".0009", "LONGITUDE": -64.95294983, "LATITUDE": 18.34562109, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 21.441778782, "SHAPE_Area": 4.4645680323799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356472.739399999380112, 257339.726100001484156 ], [ 356468.566399998962879, 257330.540199998766184 ], [ 356467.445799998939037, 257331.282699998468161 ], [ 356469.839500002563, 257334.257599998265505 ], [ 356472.739399999380112, 257339.726100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96602217, "LATITUDE": 18.34573913, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.7235088029, "SHAPE_Area": 119.569822106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355078.867799997329712, 257332.583500001579523 ], [ 355078.794100001454353, 257341.237700000405312 ], [ 355092.541000001132488, 257336.7060999982059 ], [ 355103.87610000371933, 257331.310499999672174 ], [ 355078.867799997329712, 257332.583500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92427714, "LATITUDE": 18.3457359, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.6743803038, "SHAPE_Area": 124.57817165900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359507.979999996721745, 257364.400699999183416 ], [ 359492.815499998629093, 257368.270500000566244 ], [ 359491.794399999082088, 257371.234299998730421 ], [ 359490.149400003254414, 257375.020500000566244 ], [ 359506.281000003218651, 257374.519299998879433 ], [ 359507.935000002384186, 257369.677600000053644 ], [ 359505.525100000202656, 257368.60249999910593 ], [ 359507.979999996721745, 257364.400699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93182104, "LATITUDE": 18.34570247, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.103746086400001, "SHAPE_Area": 24.509852468999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358705.645099997520447, 257364.166799999773502 ], [ 358701.685500003397465, 257355.690600000321865 ], [ 358699.259300000965595, 257356.515099998563528 ], [ 358703.217200003564358, 257365.202300000935793 ], [ 358705.645099997520447, 257364.166799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-141-T70", "PARCEL_NAM": "79-49", "ACRE": ".007", "LONGITUDE": -64.94909845, "LATITUDE": 18.34569706, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.158754591600001, "SHAPE_Area": 145.528186785 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356884.255400002002716, 257341.026900000870228 ], [ 356868.139899998903275, 257339.628400001674891 ], [ 356868.86710000038147, 257348.922499999403954 ], [ 356884.176299996674061, 257350.314399998635054 ], [ 356884.255400002002716, 257341.026900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93190514, "LATITUDE": 18.34562002, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.834625814600003, "SHAPE_Area": 193.35468469 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358688.087899997830391, 257342.702599998563528 ], [ 358687.126900002360344, 257360.848799999803305 ], [ 358699.259300000965595, 257356.515099998563528 ], [ 358701.685500003397465, 257355.690600000321865 ], [ 358699.36540000140667, 257344.061500001698732 ], [ 358688.087899997830391, 257342.702599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96595245, "LATITUDE": 18.3456082, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.368346322299999, "SHAPE_Area": 275.0551466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355109.655100002884865, 257315.525800000876188 ], [ 355079.809000000357628, 257316.759100001305342 ], [ 355080.546999998390675, 257324.786699999123812 ], [ 355082.148800000548363, 257326.066399998962879 ], [ 355110.384099997580051, 257324.608800001442432 ], [ 355109.655100002884865, 257315.525800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92356413, "LATITUDE": 18.34557685, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.912530212699998, "SHAPE_Area": 43.488317948300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359577.475699998438358, 257347.026500001549721 ], [ 359570.141500003635883, 257356.043499998748302 ], [ 359578.188500002026558, 257358.009199999272823 ], [ 359577.475699998438358, 257347.026500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96472927000001, "LATITUDE": 18.34550654, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.297822005699999, "SHAPE_Area": 242.034941532 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355216.039800003170967, 257322.096000000834465 ], [ 355226.527300000190735, 257321.548599999397993 ], [ 355230.562399998307228, 257321.159400001168251 ], [ 355226.81139999628067, 257288.198100000619888 ], [ 355216.039800003170967, 257322.096000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202039600", "MAP": "A9-682-T006", "PARCEL_NAM": "11-6-B", "ACRE": ".0006", "LONGITUDE": -64.95298668, "LATITUDE": 18.34556506, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.348706269499999, "SHAPE_Area": 17.6283391461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356468.566399998962879, 257330.540199998766184 ], [ 356465.906400002539158, 257324.684999998658895 ], [ 356461.524999998509884, 257323.264400001615286 ], [ 356467.445799998939037, 257331.282699998468161 ], [ 356468.566399998962879, 257330.540199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96631016000001, "LATITUDE": 18.34552271, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.328956830199999, "SHAPE_Area": 399.30744730700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355072.660099998116493, 257304.035000000149012 ], [ 355041.201300002634525, 257305.255199998617172 ], [ 355041.901500001549721, 257317.715500000864267 ], [ 355073.356700003147125, 257316.917399998754263 ], [ 355072.660099998116493, 257304.035000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96596247, "LATITUDE": 18.34549266, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.947363270899999, "SHAPE_Area": 486.11231898099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355109.655100002884865, 257315.525800000876188 ], [ 355108.181000001728535, 257299.259500000625849 ], [ 355079.14469999819994, 257300.077300000935793 ], [ 355079.809000000357628, 257316.759100001305342 ], [ 355109.655100002884865, 257315.525800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92351832, "LATITUDE": 18.34544399, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.9039580524, "SHAPE_Area": 62.806136362300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359575.954800002276897, 257336.2483000010252 ], [ 359577.475699998438358, 257347.026500001549721 ], [ 359587.264700002968311, 257333.807700000703335 ], [ 359575.954800002276897, 257336.2483000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93173725, "LATITUDE": 18.34543359, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.835999311999998, "SHAPE_Area": 104.16745378 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358719.66889999806881, 257327.129099998623133 ], [ 358708.403899997472763, 257324.292599998414516 ], [ 358705.8699000030756, 257337.781899999827147 ], [ 358711.521300002932549, 257336.983800001442432 ], [ 358719.66889999806881, 257327.129099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95899781, "LATITUDE": 18.34534862, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.149039695, "SHAPE_Area": 334.201179825 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355824.395000003278255, 257280.634500000625849 ], [ 355820.178300000727177, 257302.342599999159575 ], [ 355837.047899998724461, 257309.868999999016523 ], [ 355841.09740000218153, 257307.791200000792742 ], [ 355842.751400001347065, 257302.949599999934435 ], [ 355824.395000003278255, 257280.634500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201074100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95955334, "LATITUDE": 18.34518784, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.56779715299999, "SHAPE_Area": 1304.6391325899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355787.1554000005126, 257297.850499998778105 ], [ 355788.280000001192093, 257260.496100001037121 ], [ 355781.843900002539158, 257258.754700001329184 ], [ 355767.330300003290176, 257258.635899998247623 ], [ 355754.411300003528595, 257260.641100000590086 ], [ 355759.672499999403954, 257305.647100001573563 ], [ 355779.079700000584126, 257299.262099999934435 ], [ 355787.1554000005126, 257297.850499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202039700", "MAP": "A9-682-T006", "PARCEL_NAM": null, "ACRE": ".02", "LONGITUDE": -64.95327624, "LATITUDE": 18.34524308, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.44171587176, "SHAPE_Area": 0.0093334805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356435.162399999797344, 257291.050299998372793 ], [ 356435.172799997031689, 257291.193300001323223 ], [ 356435.296400003135204, 257291.097899999469519 ], [ 356435.162399999797344, 257291.050299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201035100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96527307, "LATITUDE": 18.34506267, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.493297681000001, "SHAPE_Area": 530.36419551699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355174.767899997532368, 257244.709100000560284 ], [ 355158.634499996900558, 257245.421399999409914 ], [ 355159.174699999392033, 257276.667700000107288 ], [ 355176.920699998736382, 257275.968499999493361 ], [ 355174.767899997532368, 257244.709100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9469035, "LATITUDE": 18.34462968, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 651.56140405999997, "SHAPE_Area": 1463.0217306300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357142.555200003087521, 257215.640399999916553 ], [ 357152.73870000243187, 257250.765299998223782 ], [ 357154.315399996936321, 257255.000100001692772 ], [ 357158.325400002300739, 257257.565999999642372 ], [ 357130.875900000333786, 257166.782200001180172 ], [ 357130.024599999189377, 257172.052600000053644 ], [ 357125.966099999845028, 257175.1858000010252 ], [ 357112.233599998056889, 257178.0287000015378 ], [ 357107.37049999833107, 257180.944200001657009 ], [ 357100.871500000357628, 257186.590599998831749 ], [ 357096.780599996447563, 257193.523200001567602 ], [ 357095.117600001394749, 257199.420200001448393 ], [ 357092.536799997091293, 257218.39750000089407 ], [ 357091.638800002634525, 257229.155900001525879 ], [ 357085.060599997639656, 257244.089699998497963 ], [ 357075.203299999237061, 257265.329500000923872 ], [ 357066.168399997055531, 257284.676100000739098 ], [ 357072.613499999046326, 257285.362199999392033 ], [ 357075.898100003600121, 257278.423000000417233 ], [ 357079.927799999713898, 257278.666999999433756 ], [ 357082.391699999570847, 257273.40989999845624 ], [ 357080.789899997413158, 257272.130199998617172 ], [ 357080.010600000619888, 257268.957400001585484 ], [ 357081.653800003230572, 257265.38230000063777 ], [ 357097.266800001263618, 257231.101799998432398 ], [ 357101.528499998152256, 257204.116700001060963 ], [ 357108.673900000751019, 257217.263000000268221 ], [ 357113.407399997115135, 257229.545200001448393 ], [ 357115.696900002658367, 257244.762600000947714 ], [ 357120.360299997031689, 257265.276900000870228 ], [ 357123.431000001728535, 257283.456000000238419 ], [ 357120.999399997293949, 257284.913800001144409 ], [ 357120.94370000064373, 257291.45719999819994 ], [ 357125.772600002586842, 257292.552200000733137 ], [ 357126.68860000371933, 257279.68299999833107 ], [ 357125.970399998128414, 257269.333599999547005 ], [ 357123.628799997270107, 257260.237399999052286 ], [ 357119.699699997901917, 257248.172899998724461 ], [ 357114.256899997591972, 257224.48589999973774 ], [ 357112.692800000309944, 257218.773499999195337 ], [ 357111.098200000822544, 257216.649500001221895 ], [ 357109.512500002980232, 257213.470199998468161 ], [ 357101.569899998605251, 257199.261900000274181 ], [ 357104.046400003135204, 257192.527199998497963 ], [ 357108.115699999034405, 257188.127500001341105 ], [ 357112.982299998402596, 257184.789799999445677 ], [ 357125.913900002837181, 257181.307100001722574 ], [ 357130.746399998664856, 257181.979899998754263 ], [ 357133.140100002288818, 257184.954799998551607 ], [ 357142.555200003087521, 257215.640399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93454961, "LATITUDE": 18.34501689, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.079139428600001, "SHAPE_Area": 234.97106427200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358418.35980000346899, 257295.109900001436472 ], [ 358424.950499996542931, 257278.698499999940395 ], [ 358402.43129999935627, 257271.759199999272823 ], [ 358405.608000002801418, 257277.4847999997437 ], [ 358406.385600000619888, 257280.868599999696016 ], [ 358413.56870000064373, 257289.58219999819994 ], [ 358415.953400000929832, 257293.612500000745058 ], [ 358418.35980000346899, 257295.109900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93622526, "LATITUDE": 18.34503682, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.276558549299999, "SHAPE_Area": 63.147048892900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358230.5320999994874, 257288.506400000303984 ], [ 358246.717699997127056, 257281.672800000756979 ], [ 358241.890600003302097, 257280.366700001060963 ], [ 358235.454499997198582, 257278.625300001353025 ], [ 358230.5320999994874, 257288.506400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93444726, "LATITUDE": 18.34469406, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.59427011299999, "SHAPE_Area": 221.439667356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358406.034199997782707, 257227.459100000560284 ], [ 358428.571400001645088, 257232.287599999457598 ], [ 358427.362300001084805, 257279.562699999660254 ], [ 358430.578599996864796, 257280.644400000572205 ], [ 358430.878799997270107, 257245.394299998879433 ], [ 358431.721100002527237, 257241.179299999028444 ], [ 358431.793099999427795, 257232.736099999397993 ], [ 358431.816399998962879, 257229.99210000038147 ], [ 358407.671999998390675, 257224.517200000584126 ], [ 358406.034199997782707, 257227.459100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94393125000001, "LATITUDE": 18.34463934, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.03172295799999, "SHAPE_Area": 744.400425724 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357426.303400002419949, 257226.617600001394749 ], [ 357428.034699998795986, 257212.699599999934435 ], [ 357424.786100000143051, 257215.417199999094009 ], [ 357422.36540000140667, 257215.608500000089407 ], [ 357420.759900003671646, 257214.750999998301268 ], [ 357420.961300000548363, 257191.110199999064207 ], [ 357405.449000000953674, 257213.570199999958277 ], [ 357410.288699999451637, 257213.398800000548363 ], [ 357413.454599998891354, 257220.390799999237061 ], [ 357415.851899996399879, 257222.943500000983477 ], [ 357419.064599998295307, 257224.447399999946356 ], [ 357415.72070000320673, 257238.352200001478195 ], [ 357430.02929999679327, 257262.534000001847744 ], [ 357434.813199996948242, 257268.905999999493361 ], [ 357442.113200001418591, 257263.899500001221895 ], [ 357439.780599996447563, 257253.747900001704693 ], [ 357436.548100002110004, 257254.565799999982119 ], [ 357434.140000000596046, 257253.279599998146296 ], [ 357428.591099999845028, 257242.04619999974966 ], [ 357424.609899997711182, 257236.103000000119209 ], [ 357426.303400002419949, 257226.617600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201073100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95942625000001, "LATITUDE": 18.34479479, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.18502629100001, "SHAPE_Area": 1044.56401482 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355766.055699996650219, 257218.939899999648333 ], [ 355769.021999999880791, 257249.361699998378754 ], [ 355785.949199996888638, 257250.133499998599291 ], [ 355802.039499998092651, 257254.486999999731779 ], [ 355805.496699996292591, 257227.284299999475479 ], [ 355801.484899997711182, 257224.929400000721216 ], [ 355766.055699996650219, 257218.939899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93535921, "LATITUDE": 18.34484884, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.316866469600001, "SHAPE_Area": 138.634103821 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358328.403399996459484, 257253.210400000214577 ], [ 358322.620800003409386, 257269.417300000786781 ], [ 358330.660499997437, 257272.227299999445677 ], [ 358335.635099999606609, 257256.224899999797344 ], [ 358328.403399996459484, 257253.210400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93171912, "LATITUDE": 18.34486834, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.839604688400001, "SHAPE_Area": 22.4673459429 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358717.800200000405312, 257262.519099999219179 ], [ 358709.667000003159046, 257270.685199998319149 ], [ 358714.499399997293949, 257271.3581000007689 ], [ 358717.800200000405312, 257262.519099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93737076, "LATITUDE": 18.34479873, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.034001966200002, "SHAPE_Area": 41.359783767000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358117.847999997437, 257264.152699999511242 ], [ 358117.993600003421307, 257247.055300001055002 ], [ 358115.574699997901917, 257247.035500001162291 ], [ 358115.429099999368191, 257264.13289999961853 ], [ 358117.847999997437, 257264.152699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94320015, "LATITUDE": 18.34473744, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.27820226700001, "SHAPE_Area": 502.62242658500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357541.415500000119209, 257249.935699999332428 ], [ 357543.07490000128746, 257244.460799999535084 ], [ 357527.789099998772144, 257240.32490000128746 ], [ 357510.089800000190735, 257235.535999998450279 ], [ 357480.200499996542931, 257241.835299998521805 ], [ 357464.031099997460842, 257246.769200000911951 ], [ 357466.401500001549721, 257252.488099999725819 ], [ 357469.624899998307228, 257252.725600000470877 ], [ 357470.418600000441074, 257254.209800001233816 ], [ 357474.457400001585484, 257253.398400001227856 ], [ 357477.711400002241135, 257250.047600001096725 ], [ 357481.757399998605251, 257248.3918999992311 ], [ 357514.071000002324581, 257241.479200001806021 ], [ 357541.415500000119209, 257249.935699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94727268, "LATITUDE": 18.34409119, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 471.80036774400003, "SHAPE_Area": 1363.7869475299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357109.5962999984622, 257108.979499999433756 ], [ 357122.211400002241135, 257142.646699998527765 ], [ 357130.875900000333786, 257166.782200001180172 ], [ 357123.82940000295639, 257142.026599999517202 ], [ 357112.067400000989437, 257102.878100000321865 ], [ 357108.86370000243187, 257100.31870000064373 ], [ 357104.839400000870228, 257099.441399998962879 ], [ 357099.994300000369549, 257100.246100001037121 ], [ 357095.9358000010252, 257103.379299998283386 ], [ 357085.338600002229214, 257116.802600000053644 ], [ 357080.414399996399879, 257126.89469999819994 ], [ 357073.037100002169609, 257140.977600000798702 ], [ 357066.487700000405312, 257152.534200001507998 ], [ 357057.492399998009205, 257167.237100001424551 ], [ 357051.715199999511242, 257182.810699999332428 ], [ 357049.231499999761581, 257190.389800000935793 ], [ 357045.821000002324581, 257212.104499999433756 ], [ 357039.935900002717972, 257240.3429000005126 ], [ 357051.217100001871586, 257241.279599998146296 ], [ 357052.847699999809265, 257239.182000000029802 ], [ 357056.080099999904633, 257238.364100001752377 ], [ 357056.925999999046326, 257233.72690000012517 ], [ 357052.896200001239777, 257233.482900001108646 ], [ 357051.301600001752377, 257231.358899999409914 ], [ 357054.717399999499321, 257209.010899998247623 ], [ 357059.763899996876717, 257184.565400000661612 ], [ 357062.247599996626377, 257176.986299999058247 ], [ 357063.9087999984622, 257171.300400000065565 ], [ 357068.84009999781847, 257160.363899998366833 ], [ 357072.922100000083447, 257154.486699998378754 ], [ 357074.561700001358986, 257151.333700001239777 ], [ 357078.661499999463558, 257143.34569999948144 ], [ 357086.042400002479553, 257128.840599998831749 ], [ 357087.669399999082088, 257127.165199998766184 ], [ 357090.131499998271465, 257122.119100000709295 ], [ 357090.962999999523163, 257119.1706000007689 ], [ 357100.746699996292591, 257106.585099998861551 ], [ 357104.7871999964118, 257105.562699999660254 ], [ 357109.5962999984622, 257108.979499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94411585, "LATITUDE": 18.34471175, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.476405463299997, "SHAPE_Area": 35.913400277100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357391.480899997055531, 257244.064500000327826 ], [ 357415.72070000320673, 257238.352200001478195 ], [ 357404.4341000020504, 257238.048799999058247 ], [ 357391.480899997055531, 257244.064500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95408156000001, "LATITUDE": 18.34462517, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.929511376100002, "SHAPE_Area": 39.062428267800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356354.631399996578693, 257227.556800000369549 ], [ 356349.107699997723103, 257213.368299998342991 ], [ 356348.200699999928474, 257225.182100001722574 ], [ 356354.631399996578693, 257227.556800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "G9-421-T56", "PARCEL_NAM": "22-12", "ACRE": "0.22", "LONGITUDE": -64.95181927, "LATITUDE": 18.34431126, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.86459637, "SHAPE_Area": 494.41276217199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356596.125299997627735, 257181.826200000941753 ], [ 356596.219499997794628, 257170.767900001257658 ], [ 356578.12950000166893, 257171.399000000208616 ], [ 356581.611599996685982, 257181.707400001585484 ], [ 356594.174599997699261, 257221.495799999684095 ], [ 356595.788999997079372, 257221.297899998724461 ], [ 356596.125299997627735, 257181.826200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97026, "LATITUDE": 18.34422978, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.37958904499999, "SHAPE_Area": 1447.61779426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354705.586800001561642, 257135.322299998253584 ], [ 354683.737300001084805, 257144.431499999016523 ], [ 354666.752599999308586, 257150.414200000464916 ], [ 354631.994800001382828, 257160.262299999594688 ], [ 354613.384900003671646, 257167.709300000220537 ], [ 354595.572300001978874, 257176.218400001525879 ], [ 354566.386799998581409, 257194.555700000375509 ], [ 354571.15820000320673, 257202.405200000852346 ], [ 354597.104000002145767, 257185.730099998414516 ], [ 354618.158100001513958, 257175.347800001502037 ], [ 354639.998599998652935, 257167.2939000017941 ], [ 354674.758199997246265, 257157.2347999997437 ], [ 354699.836599998176098, 257147.729699999094009 ], [ 354726.55460000038147, 257135.071699999272823 ], [ 354705.586800001561642, 257135.322299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96474678, "LATITUDE": 18.34410193, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.780959647, "SHAPE_Area": 196.41852546000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355221.756300002336502, 257124.348099999129772 ], [ 355222.283900000154972, 257157.071899998933077 ], [ 355222.843900002539158, 257185.996300000697374 ], [ 355226.070900000631809, 257185.811700001358986 ], [ 355225.482199996709824, 257160.264499999582767 ], [ 355224.983300000429153, 257124.163400001823902 ], [ 355221.756300002336502, 257124.348099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94225685000001, "LATITUDE": 18.34380571, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 424.254866913, "SHAPE_Area": 2085.2941507099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357616.736299999058247, 257116.718800000846386 ], [ 357604.713500000536442, 257108.176699999719858 ], [ 357587.831299997866154, 257102.127900000661612 ], [ 357572.540200002491474, 257098.625199999660254 ], [ 357570.139200001955032, 257096.494699999690056 ], [ 357567.752599999308586, 257092.675400000065565 ], [ 357566.037500001490116, 257104.69370000064373 ], [ 357577.205399997532368, 257118.928399998694658 ], [ 357593.079899996519089, 257148.611400000751019 ], [ 357593.002599999308586, 257157.687800001353025 ], [ 357594.332900002598763, 257190.840399999171495 ], [ 357590.286899998784065, 257192.495999999344349 ], [ 357591.851000003516674, 257198.208399999886751 ], [ 357595.076300002634525, 257198.2347999997437 ], [ 357598.288900002837181, 257199.738699998706579 ], [ 357600.684500001370907, 257202.502500001341105 ], [ 357600.664700001478195, 257204.824400000274181 ], [ 357606.3125, 257204.448399998247623 ], [ 357610.347699999809265, 257204.059300001710653 ], [ 357605.628499999642372, 257190.088500000536442 ], [ 357605.667999997735023, 257185.444699998944998 ], [ 357605.747100003063679, 257176.157299999147654 ], [ 357604.339500002563, 257152.0810999982059 ], [ 357604.382700003683567, 257147.0152000002563 ], [ 357602.814999997615814, 257141.725000001490116 ], [ 357589.29110000282526, 257120.082800000905991 ], [ 357587.6875, 257119.014199998229742 ], [ 357586.935099996626377, 257112.675200000405312 ], [ 357594.199100002646446, 257111.890299998223782 ], [ 357609.427299998700619, 257122.780699998140335 ], [ 357627.846699997782707, 257137.708000000566244 ], [ 357632.634199999272823, 257143.657800000160933 ], [ 357630.974799998104572, 257149.132699999958277 ], [ 357629.358599998056889, 257149.541600000113249 ], [ 357631.721799999475479, 257156.104899998754263 ], [ 357643.834399998188019, 257154.093100000172853 ], [ 357640.727899998426437, 257140.135499998927116 ], [ 357635.943899996578693, 257133.7635000012815 ], [ 357625.55179999768734, 257123.123799998313189 ], [ 357616.736299999058247, 257116.718800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95420599000001, "LATITUDE": 18.34425137, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.672477416299998, "SHAPE_Area": 76.934615579699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356332.487999998033047, 257176.502000000327826 ], [ 356338.816299997270107, 257190.90819999948144 ], [ 356342.183600001037121, 257174.259300000965595 ], [ 356332.487999998033047, 257176.502000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94134096000001, "LATITUDE": 18.34426897, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.322297445499999, "SHAPE_Area": 290.11848045300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357710.384400002658367, 257198.545200001448393 ], [ 357710.474299997091293, 257187.991300001740456 ], [ 357689.524499997496605, 257186.131099998950958 ], [ 357688.6570999994874, 257193.301100000739098 ], [ 357686.218400001525879, 257195.603199999779463 ], [ 357679.758900001645088, 257196.605799999088049 ], [ 357679.73369999974966, 257199.560899998992682 ], [ 357696.671599999070168, 257199.066300000995398 ], [ 357710.384400002658367, 257198.545200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94435796, "LATITUDE": 18.34349618, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 339.60940946800002, "SHAPE_Area": 986.49475371699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357352.124799996614456, 257182.408900000154972 ], [ 357358.599500000476837, 257183.244300000369549 ], [ 357359.764300003647804, 257180.899000000208616 ], [ 357364.68129999935627, 257171.651099998503923 ], [ 357366.317299999296665, 257168.920299999415874 ], [ 357377.884400002658367, 257136.295499999076128 ], [ 357379.594099998474121, 257124.910399999469519 ], [ 357383.870200000703335, 257096.236699998378754 ], [ 357387.233900003135204, 257080.010000001639128 ], [ 357391.376999996602535, 257066.9560999982059 ], [ 357396.355099998414516, 257050.531599998474121 ], [ 357399.697300001978874, 257036.837900001555681 ], [ 357399.772799998521805, 257027.972500000149012 ], [ 357399.788099996745586, 257026.180599998682737 ], [ 357394.152900002896786, 257025.079799998551607 ], [ 357394.144799999892712, 257026.026599999517202 ], [ 357390.728900000452995, 257048.374600000679493 ], [ 357385.750799998641014, 257064.799100000411272 ], [ 357380.763700000941753, 257082.279100000858307 ], [ 357378.200900003314018, 257099.145599998533726 ], [ 357375.661499999463558, 257113.268100000917912 ], [ 357372.285199999809265, 257130.972300000488758 ], [ 357368.136699996888638, 257144.659400001168251 ], [ 357360.694700002670288, 257166.3412000015378 ], [ 357353.319200001657009, 257180.212999999523163 ], [ 357352.124799996614456, 257182.408900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96166422, "LATITUDE": 18.34421227, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 21.5312165074, "SHAPE_Area": 28.339610107799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355552.807300001382828, 257167.376499999314547 ], [ 355547.16669999808073, 257166.908100001513958 ], [ 355547.116300001740456, 257172.818300001323223 ], [ 355551.146099999547005, 257173.062399998307228 ], [ 355552.807300001382828, 257167.376499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202075500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95775436, "LATITUDE": 18.34401774, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.770300314, "SHAPE_Area": 718.35984461500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355965.109899997711182, 257138.242600001394749 ], [ 355957.943000003695488, 257127.629200000315905 ], [ 355945.691799998283386, 257145.894099999219179 ], [ 355972.041199997067451, 257176.507199998944998 ], [ 355978.648100003600121, 257158.196199998259544 ], [ 355965.109899997711182, 257138.242600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95541279, "LATITUDE": 18.34394606, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.958118568, "SHAPE_Area": 1572.4617041700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356187.32660000026226, 257178.269299998879433 ], [ 356202.713100001215935, 257170.584699999541044 ], [ 356211.640100002288818, 257163.902800001204014 ], [ 356218.956200003623962, 257156.996599998325109 ], [ 356229.556999996304512, 257143.151200000196695 ], [ 356232.830799996852875, 257137.478399999439716 ], [ 356239.414300002157688, 257121.911400001496077 ], [ 356226.570900000631809, 257115.051300000399351 ], [ 356218.4358000010252, 257123.42850000038743 ], [ 356194.921499997377396, 257138.645799998193979 ], [ 356186.703699998557568, 257156.732599999755621 ], [ 356187.32660000026226, 257178.269299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9419936, "LATITUDE": 18.34414253, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.50363966899999, "SHAPE_Area": 434.36735506000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357650.936599999666214, 257172.305300001055002 ], [ 357605.747100003063679, 257176.157299999147654 ], [ 357605.667999997735023, 257185.444699998944998 ], [ 357651.660199999809265, 257182.021499998867512 ], [ 357650.936599999666214, 257172.305300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93821147, "LATITUDE": 18.34414574, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.555990141400002, "SHAPE_Area": 99.741010341500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358043.565800003707409, 257180.796100001782179 ], [ 358032.277400001883507, 257180.703699998557568 ], [ 358016.957500003278255, 257180.578299999237061 ], [ 358015.305299997329712, 257185.208799999207258 ], [ 358041.928000003099442, 257183.738000001758337 ], [ 358043.565800003707409, 257180.796100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95860989000001, "LATITUDE": 18.34390041, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.27561612100001, "SHAPE_Area": 365.51865632900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355849.195100001990795, 257114.495799999684095 ], [ 355862.765699997544289, 257130.649900000542402 ], [ 355874.743500001728535, 257144.469099998474121 ], [ 355888.317800000309944, 257160.201099999248981 ], [ 355894.705300003290176, 257167.641600001603365 ], [ 355898.747699998319149, 257166.40819999948144 ], [ 355855.665299996733665, 257112.226700000464916 ], [ 355849.195100001990795, 257114.495799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93572465, "LATITUDE": 18.34409432, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.473042648000003, "SHAPE_Area": 54.976983946799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358296.004600003361702, 257175.473900001496077 ], [ 358291.188299998641014, 257172.901399999856949 ], [ 358288.726199999451637, 257177.947399999946356 ], [ 358287.864100001752377, 257184.484299998730421 ], [ 358290.270499996840954, 257185.981600001454353 ], [ 358296.004600003361702, 257175.473900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93958582, "LATITUDE": 18.3437783, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.78599134699999, "SHAPE_Area": 286.54260757700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357873.838500000536442, 257131.910900000482798 ], [ 357882.679200001060963, 257135.360700000077486 ], [ 357891.51799999922514, 257139.021699998527765 ], [ 357899.554200001060963, 257142.253899998962879 ], [ 357898.668700002133846, 257151.534699998795986 ], [ 357897.797700002789497, 257159.127000000327826 ], [ 357896.100599996745586, 257169.034499999135733 ], [ 357894.412399999797344, 257177.886599998921156 ], [ 357897.641199998557568, 257177.490800000727177 ], [ 357900.22919999808073, 257157.669199999421835 ], [ 357902.736299999058247, 257147.346099998801947 ], [ 357902.797399997711182, 257140.16950000077486 ], [ 357892.351300001144409, 257135.862100001424551 ], [ 357874.671800002455711, 257128.751299999654293 ], [ 357848.151600003242493, 257118.190699998289347 ], [ 357848.122800000011921, 257121.567899998277426 ], [ 357869.016800001263618, 257129.971599999815226 ], [ 357873.838500000536442, 257131.910900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96528495, "LATITUDE": 18.34395113, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.288190308899999, "SHAPE_Area": 254.95295612000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355172.549699999392033, 257126.478500001132488 ], [ 355160.803300000727177, 257127.395700000226498 ], [ 355161.873400002717972, 257149.1891999989748 ], [ 355173.165399998426437, 257148.859499998390675 ], [ 355172.549699999392033, 257126.478500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94749718, "LATITUDE": 18.34319633, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 661.502298763, "SHAPE_Area": 2685.8695909899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357079.281900003552437, 257070.523499999195337 ], [ 357079.299900002777576, 257068.41270000115037 ], [ 357099.659100003540516, 257044.936900001019239 ], [ 357097.276100002229214, 257040.695500001311302 ], [ 357075.307899996638298, 257063.736000001430511 ], [ 357072.073700003325939, 257064.765000000596046 ], [ 357069.667300000786781, 257063.267599999904633 ], [ 357069.139700002968311, 257030.543800000101328 ], [ 357073.255800001323223, 257020.656100001186132 ], [ 357077.33049999922514, 257015.623199999332428 ], [ 357086.262900002300739, 257008.30799999833107 ], [ 357093.552100002765656, 257004.567999999970198 ], [ 357101.631399996578693, 257002.734299998730421 ], [ 357087.142899997532368, 256999.660399999469519 ], [ 357075.796999998390675, 257006.322500001639128 ], [ 357071.722300000488758, 257011.355399999767542 ], [ 357068.462899997830391, 257015.339499998837709 ], [ 357069.346500001847744, 257006.26969999819994 ], [ 357073.44820000231266, 256998.070700000971556 ], [ 357065.394100002944469, 256996.949299998581409 ], [ 357062.109499998390675, 257003.8885000012815 ], [ 357058.785300001502037, 257015.471400000154972 ], [ 357057.932300001382828, 257020.952899999916553 ], [ 357057.81360000371933, 257034.884100001305342 ], [ 357033.48929999768734, 257050.517000000923872 ], [ 357030.203000001609325, 257057.667300000786781 ], [ 357030.051899999380112, 257075.397900000214577 ], [ 357025.082800000905991, 257090.767099998891354 ], [ 357022.600900001823902, 257098.135000001639128 ], [ 356999.709499999880791, 257134.888999998569489 ], [ 356985.786399997770786, 257160.106300000101328 ], [ 356990.593699999153614, 257163.734299998730421 ], [ 356993.83330000191927, 257162.072000000625849 ], [ 356998.663999997079372, 257162.955899998545647 ], [ 357001.939599998295307, 257157.07209999859333 ], [ 357000.341300003230572, 257155.370299998670816 ], [ 357000.391699999570847, 257149.460099998861551 ], [ 357004.475400000810623, 257143.371800001710653 ], [ 357020.000299997627735, 257119.434200000017881 ], [ 357028.176700003445148, 257106.202199999243021 ], [ 357035.59179999679327, 257087.686700001358986 ], [ 357037.260200001299381, 257081.156399998813868 ], [ 357036.543799996376038, 257070.595899999141693 ], [ 357038.249899998307228, 257059.633000001311302 ], [ 357044.772299997508526, 257051.242600001394749 ], [ 357052.873199999332428, 257046.875999998301268 ], [ 357056.904799997806549, 257046.909000001847744 ], [ 357059.323700003325939, 257046.928800001740456 ], [ 357060.916599996387959, 257049.263799998909235 ], [ 357061.647299997508526, 257058.13569999858737 ], [ 357058.89750000089407, 257096.9543999992311 ], [ 357061.307499997317791, 257098.029599998146296 ], [ 357066.298199996352196, 257080.127500001341105 ], [ 357068.717100001871586, 257080.147300001233816 ], [ 357073.538800001144409, 257082.086599998176098 ], [ 357079.190200001001358, 257081.288499999791384 ], [ 357078.430699996650219, 257075.7939000017941 ], [ 357079.281900003552437, 257070.523499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9657894, "LATITUDE": 18.34395742, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.767490222000006, "SHAPE_Area": 400.922761095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355099.934799998998642, 257131.372600000351667 ], [ 355100.615199998021126, 257146.154699999839067 ], [ 355128.042400002479553, 257144.901599999517202 ], [ 355126.555699996650219, 257130.112900000065565 ], [ 355099.934799998998642, 257131.372600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9412561, "LATITUDE": 18.34391894, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.35695781699999, "SHAPE_Area": 550.96162038900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357725.174900002777576, 257166.157900001853704 ], [ 357704.473300002515316, 257135.168800000101328 ], [ 357699.58330000191927, 257141.250500001013279 ], [ 357691.351099997758865, 257161.02589999884367 ], [ 357710.650499999523163, 257167.305599998682737 ], [ 357725.174900002777576, 257166.157900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95320674, "LATITUDE": 18.34358917, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 414.75010890800002, "SHAPE_Area": 1223.3680639900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356487.347900003194809, 257077.5 ], [ 356479.28830000013113, 257077.011900000274181 ], [ 356469.657499998807907, 257071.655699998140335 ], [ 356463.223200000822544, 257069.703200001269579 ], [ 356447.910499997437, 257068.733500000089407 ], [ 356442.2483000010252, 257070.798099998384714 ], [ 356437.396099999547005, 257072.44709999859333 ], [ 356413.858400002121925, 257090.408500000834465 ], [ 356403.306199997663498, 257098.554800000041723 ], [ 356401.666599996387959, 257101.707800000905991 ], [ 356402.411700002849102, 257108.891100000590086 ], [ 356402.384800001978874, 257112.057300001382828 ], [ 356403.17849999666214, 257113.541400000452995 ], [ 356410.38849999755621, 257119.088899999856949 ], [ 356426.44650000333786, 257127.241900000721216 ], [ 356440.097999997437, 257133.89750000089407 ], [ 356457.737999998033047, 257145.651999998837709 ], [ 356456.906499996781349, 257148.600499998778105 ], [ 356459.312899999320507, 257150.097899999469519 ], [ 356460.918300002813339, 257150.955400001257658 ], [ 356464.16330000013113, 257148.65989999845624 ], [ 356472.199500001966953, 257151.892099998891354 ], [ 356487.488899998366833, 257155.605799999088049 ], [ 356489.151799999177456, 257149.708799999207258 ], [ 356477.883199997246265, 257147.29450000077486 ], [ 356466.630800001323223, 257142.980599999427795 ], [ 356452.1908999979496, 257134.207600001245737 ], [ 356444.169200003147125, 257129.286699999123812 ], [ 356412.850599996745586, 257114.04280000180006 ], [ 356408.846100002527237, 257110.843600001186132 ], [ 356407.256800003349781, 257108.086399998515844 ], [ 356407.291000001132488, 257104.075899999588728 ], [ 356408.111699998378754, 257102.393800001591444 ], [ 356425.153899997472763, 257089.656599998474121 ], [ 356440.572800002992153, 257078.172699999064207 ], [ 356445.428599998354912, 257076.101500000804663 ], [ 356455.12049999833107, 257074.280999999493361 ], [ 356462.366599999368191, 257075.606800001114607 ], [ 356470.40089999884367, 257079.05009999871254 ], [ 356480.845200002193451, 257083.568500000983477 ], [ 356486.48759999871254, 257083.825800001621246 ], [ 356490.526399999856949, 257083.014499999582767 ], [ 356487.347900003194809, 257077.5 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95795124, "LATITUDE": 18.343778, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.174655203, "SHAPE_Area": 655.63982361299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355952.363499999046326, 257119.984200000762939 ], [ 355943.594800002872944, 257108.0912000015378 ], [ 355931.501900002360344, 257107.781100001186132 ], [ 355931.451499998569489, 257113.691300000995398 ], [ 355929.738200001418591, 257125.498599998652935 ], [ 355928.917499996721745, 257127.180599998682737 ], [ 355945.691799998283386, 257145.894099999219179 ], [ 355957.943000003695488, 257127.629200000315905 ], [ 355952.363499999046326, 257119.984200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95371926, "LATITUDE": 18.34372677, "OBJECTID_1": 8259, "PARCEL_NO_": "105202040800", "Tax_Legal_": "CONTANT 11 3E 9BA SOUTHSIDE QTR", "Name": "JOSHUA, JOYCELYN I. GLADSTONE", "Address": "P.O. BOX 5331", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 89300, "Improved_V": 86500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.47763093, "SHAPE_Area": 868.39788563000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356402.411700002849102, 257108.891100000590086 ], [ 356369.354699999094009, 257108.409400001168251 ], [ 356379.646200001239777, 257130.869600001722574 ], [ 356382.810300000011921, 257138.072700001299381 ], [ 356387.56360000371933, 257148.032999999821186 ], [ 356410.38849999755621, 257119.088899999856949 ], [ 356403.17849999666214, 257113.541400000452995 ], [ 356402.384800001978874, 257112.057300001382828 ], [ 356402.411700002849102, 257108.891100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202038100", "MAP": null, "PARCEL_NAM": "11B", "ACRE": null, "LONGITUDE": -64.95496588, "LATITUDE": 18.34374437, "OBJECTID_1": 8238, "PARCEL_NO_": "105202038100", "Tax_Legal_": "CONTANT 11B 7BA S S QTR", "Name": "O'GARRO (LIFE ESTATE), OPHELIA", "Address": "8330 Upper Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73200, "Improved_V": 86100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.024969402, "SHAPE_Area": 606.61808668900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356246.6621999964118, 257123.026200000196695 ], [ 356256.147299997508526, 257145.479699999094009 ], [ 356269.096900001168251, 257139.886199999600649 ], [ 356259.786100000143051, 257096.958000000566244 ], [ 356257.367200002074242, 257096.938200000673532 ], [ 356246.6621999964118, 257123.026200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201072000", "MAP": "D9-853-T69", "PARCEL_NAM": "246", "ACRE": null, "LONGITUDE": -64.95885852000001, "LATITUDE": 18.34380783, "OBJECTID_1": 7843, "PARCEL_NO_": "105201072000", "Tax_Legal_": "CONTANT 246 7A SOUTHSIDE", "Name": "OSWALD CHINNERY", "Address": "PO Box 302991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032991, "Country": "United States", "Land_Value": 34200, "Improved_V": 26000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.926650483299994, "SHAPE_Area": 477.68565846199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355849.195100001990795, 257114.495799999684095 ], [ 355831.400499999523163, 257120.894000001251698 ], [ 355831.368100002408028, 257124.693399999290705 ], [ 355845.734300002455711, 257142.120700001716614 ], [ 355862.765699997544289, 257130.649900000542402 ], [ 355849.195100001990795, 257114.495799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202039300", "MAP": "D9-1531-T79", "PARCEL_NAM": "11I", "ACRE": ".20", "LONGITUDE": -64.95433382, "LATITUDE": 18.3437765, "OBJECTID_1": 8249, "PARCEL_NO_": "105202039300", "Tax_Legal_": "11I ESTATE CONTANT No.7Ba SOUTHSIDE QUARTER", "Name": "ROSA V SMITH & RAFAEL DE SALA SIERRA", "Address": "28A SMITH BAY ApT. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.388491665, "SHAPE_Area": 1271.35961045 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356345.172499999403954, 257107.367199998348951 ], [ 356324.15089999884367, 257113.950100000947714 ], [ 356281.970899999141693, 257143.157999999821186 ], [ 356287.595299996435642, 257145.526000000536442 ], [ 356292.433200001716614, 257145.565600000321865 ], [ 356327.183700002729893, 257136.561900001019239 ], [ 356340.910800002515316, 257134.352200001478195 ], [ 356357.848800003528595, 257133.857599999755621 ], [ 356345.172499999403954, 257107.367199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95158277, "LATITUDE": 18.34379254, "OBJECTID_1": 8308, "PARCEL_NO_": "105202050900", "Tax_Legal_": "CONTANT 22 5 7BA SOUTHSIDE QTR", "Name": "CALLWOOD, ROSEMARIE FRETT", "Address": "22-5 CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60500, "Improved_V": 44800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.91330674699999, "SHAPE_Area": 850.69757636099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356629.741499997675419, 257116.662300001829863 ], [ 356601.518799997866154, 257116.642400000244379 ], [ 356602.060699999332428, 257147.677600000053644 ], [ 356628.670900002121925, 257147.684300001710653 ], [ 356629.741499997675419, 257116.662300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202033000", "MAP": "D9-1531-T79", "PARCEL_NAM": "REM 11 CONSV", "ACRE": "0.19", "LONGITUDE": -64.95434141, "LATITUDE": 18.34362962, "OBJECTID_1": 8216, "PARCEL_NO_": "105202033000", "Tax_Legal_": "CONTANT 11REM.(CONSERVATION E) 7BA SOUTHSIDE QTR", "Name": "MANASSAH REALTY INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.83340005700001, "SHAPE_Area": 1057.8406490499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356366.194200001657009, 257100.784200001507998 ], [ 356360.647100001573563, 257089.339800000190735 ], [ 356351.811899997293949, 257085.256700001657009 ], [ 356346.893100000917912, 257094.715599998831749 ], [ 356320.2128000035882, 257102.940999999642372 ], [ 356316.150700002908707, 257106.496300000697374 ], [ 356302.339100003242493, 257118.6266999989748 ], [ 356276.385999999940395, 257136.146200001239777 ], [ 356277.167199999094009, 257139.107900001108646 ], [ 356281.970899999141693, 257143.157999999821186 ], [ 356324.15089999884367, 257113.950100000947714 ], [ 356345.172499999403954, 257107.367199998348951 ], [ 356366.194200001657009, 257100.784200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94217967, "LATITUDE": 18.3437402, "OBJECTID_1": 8977, "PARCEL_NO_": "105301014200", "Tax_Legal_": "130F EST.ANNAS FANCY SOUTHSIDE QTR.", "Name": "BRENDA HODGE LOCKHART REVOCABLE TRUST", "Address": "2034 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.32332492500001, "SHAPE_Area": 851.54801099400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357604.339500002563, 257152.0810999982059 ], [ 357629.358599998056889, 257149.541600000113249 ], [ 357630.974799998104572, 257149.132699999958277 ], [ 357632.634199999272823, 257143.657800000160933 ], [ 357627.846699997782707, 257137.708000000566244 ], [ 357609.427299998700619, 257122.780699998140335 ], [ 357594.199100002646446, 257111.890299998223782 ], [ 357586.935099996626377, 257112.675200000405312 ], [ 357587.6875, 257119.014199998229742 ], [ 357589.29110000282526, 257120.082800000905991 ], [ 357602.814999997615814, 257141.725000001490116 ], [ 357604.382700003683567, 257147.0152000002563 ], [ 357604.339500002563, 257152.0810999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95769703000001, "LATITUDE": 18.3437291, "OBJECTID_1": 8128, "PARCEL_NO_": "105202023800", "Tax_Legal_": "CONTANT 223 7A SOUTHSIDE QTR", "Name": "MATTHIAS, INA & HENRIQUE", "Address": "BOX 3929", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37700, "Improved_V": 29800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.479264118, "SHAPE_Area": 615.468686972 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355973.48589999973774, 257101.580899998545647 ], [ 355952.363499999046326, 257119.984200000762939 ], [ 355957.943000003695488, 257127.629200000315905 ], [ 355965.109899997711182, 257138.242600001394749 ], [ 355986.23759999871254, 257119.206000000238419 ], [ 355973.48589999973774, 257101.580899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202050600", "MAP": "G9-423-T56", "PARCEL_NAM": "22-10", "ACRE": "0.22", "LONGITUDE": -64.95191854, "LATITUDE": 18.34368095, "OBJECTID_1": 8305, "PARCEL_NO_": "105202050600", "Tax_Legal_": "CONTANT 22 1O 7BA SOUTHSIDE QTR", "Name": "KAREN M LENHARDT TRUST", "Address": "PO Box 8044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63700, "Improved_V": 84200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.76686893199999, "SHAPE_Area": 951.86595346199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356563.070500001311302, 257104.656199999153614 ], [ 356563.806999996304512, 257125.82209999859333 ], [ 356565.933100000023842, 257129.016800001263618 ], [ 356568.255900003015995, 257134.83219999819994 ], [ 356596.38400000333786, 257134.399399999529123 ], [ 356595.924900002777576, 257110.686000000685453 ], [ 356595.783600002527237, 257104.761700000613928 ], [ 356563.070500001311302, 257104.656199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202039100", "MAP": "D9-1531-T79", "PARCEL_NAM": "11B", "ACRE": "0.2087", "LONGITUDE": -64.95468836000001, "LATITUDE": 18.34365637, "OBJECTID_1": 8247, "PARCEL_NO_": "105202039100", "Tax_Legal_": "CONTANT 11A 7BA S S QTR", "Name": "BLYDEN, RUTH", "Address": "864 Saint Marks Ave", "City": "Brooklyn", "State": "New York", "Zip": 11213, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.773240827, "SHAPE_Area": 887.62015182200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356316.150700002908707, 257106.496300000697374 ], [ 356268.196699999272823, 257099.440799999982119 ], [ 356276.385999999940395, 257136.146200001239777 ], [ 356302.339100003242493, 257118.6266999989748 ], [ 356316.150700002908707, 257106.496300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201042900", "MAP": "F9-4069-T81", "PARCEL_NAM": "26F", "ACRE": ".10", "LONGITUDE": -64.96246621, "LATITUDE": 18.34372557, "OBJECTID_1": 7607, "PARCEL_NO_": "105201042900", "Tax_Legal_": "LINDBERG BAY REM 26F SOUTHSIDE QTR", "Name": "FORBES, RAWLEIGH & JOYCE", "Address": "PO Box 8476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29400, "Improved_V": 168300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.516903752, "SHAPE_Area": 559.40027756799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355479.586400002241135, 257128.037300001829863 ], [ 355475.02139999717474, 257104.227000001817942 ], [ 355473.514600001275539, 257104.24379999935627 ], [ 355445.28830000013113, 257104.646099999547005 ], [ 355463.6266999989748, 257129.071899998933077 ], [ 355479.586400002241135, 257128.037300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201071400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95931011, "LATITUDE": 18.34369578, "OBJECTID_1": 7837, "PARCEL_NO_": "105201071400", "Tax_Legal_": "CONTANT 231 7A S S QTR", "Name": "BONELLI, DALTON & EDITHA", "Address": "PO Box 4224", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44700, "Improved_V": 25400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.77971676200001, "SHAPE_Area": 853.92821503300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355818.526399999856949, 257117.622299998998642 ], [ 355802.619599997997284, 257091.738699998706579 ], [ 355798.555600002408028, 257095.505100000649691 ], [ 355788.775600001215935, 257107.668499998748302 ], [ 355783.055900000035763, 257116.48759999871254 ], [ 355776.484899997711182, 257130.577100001275539 ], [ 355816.046300001442432, 257124.779100000858307 ], [ 355816.087700001895428, 257119.924300000071526 ], [ 355818.526399999856949, 257117.622299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96277744, "LATITUDE": 18.3437642, "OBJECTID_1": 7594, "PARCEL_NO_": "105201041600", "Tax_Legal_": "LINDBERG BAY 26B SOUTSIDE QTR", "Name": "GREAUX, ILVIE I. & OTHERS", "Address": "26B Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17500, "Improved_V": 80100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.471312922300001, "SHAPE_Area": 447.30564821299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355442.005500003695488, 257111.374200001358986 ], [ 355412.961999997496605, 257113.036299999803305 ], [ 355420.904700003564358, 257127.244600001722574 ], [ 355453.177000001072884, 257125.186700001358986 ], [ 355442.005500003695488, 257111.374200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96582217, "LATITUDE": 18.34376973, "OBJECTID_1": 7723, "PARCEL_NO_": "105201060100", "Tax_Legal_": "LINDBERG BAY 25G SOUTHSIDE QTR", "Name": "SMITH, MARITA L. & RICHARDSON, L", "Address": "PO Box 305254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7700, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.533656443200002, "SHAPE_Area": 293.777551351 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355122.685999996960163, 257111.082800000905991 ], [ 355097.68129999935627, 257111.933600001037121 ], [ 355098.386900000274181, 257123.760600000619888 ], [ 355123.393399998545647, 257122.698699999600649 ], [ 355122.685999996960163, 257111.082800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202038500", "MAP": "D9-1531-T79", "PARCEL_NAM": "11H", "ACRE": "7,092 sq ft", "LONGITUDE": -64.95397732000001, "LATITUDE": 18.34368847, "OBJECTID_1": 8242, "PARCEL_NO_": "105202038500", "Tax_Legal_": "CONTANT 11H 7BA SOUTHSIDE QTR", "Name": "GUMBS, AMOS & MARILYN E", "Address": "PO Box 8358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46300, "Improved_V": 25200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.549376024, "SHAPE_Area": 680.23400135199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356369.354699999094009, 257108.409400001168251 ], [ 356366.194200001657009, 257100.784200001507998 ], [ 356345.172499999403954, 257107.367199998348951 ], [ 356357.848800003528595, 257133.857599999755621 ], [ 356370.7533999979496, 257133.541000001132488 ], [ 356379.646200001239777, 257130.869600001722574 ], [ 356369.354699999094009, 257108.409400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95311622, "LATITUDE": 18.34369595, "OBJECTID_1": 8257, "PARCEL_NO_": "105202040600", "Tax_Legal_": "11-3-K ESTATE CONTANT 7BA SOUTHSIDE QTR", "Name": "MORRIS, WYCKIFFE & ALICE B", "Address": "PO BOX 10825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.247646950499998, "SHAPE_Area": 237.01386680600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356458.061700001358986, 257107.657800000160933 ], [ 356454.848999999463558, 257106.153900001198053 ], [ 356444.169200003147125, 257129.286699999123812 ], [ 356452.1908999979496, 257134.207600001245737 ], [ 356462.879799999296665, 257110.019299998879433 ], [ 356458.061700001358986, 257107.657800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201061400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9655373, "LATITUDE": 18.34373088, "OBJECTID_1": 7742, "PARCEL_NO_": "105201061400", "Tax_Legal_": "LINDBERG BAY 25H SOUTHSIDE QTR", "Name": "LEONARD, HAROLD & AUDREY", "Address": "8454 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7700, "Improved_V": 106500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.224105764000001, "SHAPE_Area": 401.74356182999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355152.560900002717972, 257106.472100000828505 ], [ 355152.424099996685982, 257104.132500000298023 ], [ 355128.375900000333786, 257105.754999998956919 ], [ 355128.362499997019768, 257107.329500000923872 ], [ 355129.041199997067451, 257122.322700001299381 ], [ 355152.435000002384186, 257121.247600000351667 ], [ 355152.560900002717972, 257106.472100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201043300", "MAP": null, "PARCEL_NAM": "26H", "ACRE": null, "LONGITUDE": -64.96190307000001, "LATITUDE": 18.34370496, "OBJECTID_1": 7611, "PARCEL_NO_": "105201043300", "Tax_Legal_": "LINDBERG BAY 26H SOUTHSIDE QUARTER", "Name": "CONFORD GEORGE CHRISTIAN REVOCABLE TRUST", "Address": "26H Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 30800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.131547493, "SHAPE_Area": 917.07682815600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355547.540700003504753, 257123.003699999302626 ], [ 355547.707900002598763, 257103.373399998992682 ], [ 355500.93639999628067, 257103.6239 ], [ 355503.983599998056889, 257124.547100000083447 ], [ 355547.540700003504753, 257123.003699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201062000", "MAP": "F9-1119-T63", "PARCEL_NAM": "25J", "ACRE": null, "LONGITUDE": -64.96531731, "LATITUDE": 18.34373591, "OBJECTID_1": 7748, "PARCEL_NO_": "105201062000", "Tax_Legal_": "LINDBERG BAY 25J & 25N S S QTR", "Name": "MAGRAS, RICHARD & ELLEN M", "Address": "PO Box 10618", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9900, "Improved_V": 85300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.334293726499993, "SHAPE_Area": 305.546316606 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355175.079899996519089, 257106.5614 ], [ 355152.547600001096725, 257108.037300001829863 ], [ 355152.435000002384186, 257121.247600000351667 ], [ 355175.16950000077486, 257120.35190000012517 ], [ 355175.079899996519089, 257106.5614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201062700", "MAP": "D9-9393-T019", "PARCEL_NAM": "25K", "ACRE": "0.08", "LONGITUDE": -64.96511492, "LATITUDE": 18.34371595, "OBJECTID_1": 7755, "PARCEL_NO_": "105201062700", "Tax_Legal_": "LINDBERG 25K SOUTHSIDE QTR", "Name": "EL HAJ, ELIAS", "Address": "6060 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7700, "Improved_V": 78600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.811588869700003, "SHAPE_Area": 326.57333729099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355195.315200001001358, 257104.5 ], [ 355195.32379999756813, 257103.987900000065565 ], [ 355179.191799998283386, 257104.042300000786781 ], [ 355175.175499998033047, 257104.055799998342991 ], [ 355175.072400003671646, 257105.406800001859665 ], [ 355175.16950000077486, 257120.35190000012517 ], [ 355179.054099999368191, 257120.198899999260902 ], [ 355195.993900001049042, 257119.493200000375509 ], [ 355195.315200001001358, 257104.5 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201043400", "MAP": null, "PARCEL_NAM": "26J", "ACRE": null, "LONGITUDE": -64.96157676, "LATITUDE": 18.34369477, "OBJECTID_1": 7612, "PARCEL_NO_": "105201043400", "Tax_Legal_": "LINDBERG BAY 26J\nSOUTHSIDE QUARTER", "Name": "SOLDIEW, TERIQUE B", "Address": "PO BOX 303275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.083192467100005, "SHAPE_Area": 445.687072822 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355574.314400002360344, 257103.802299998700619 ], [ 355547.707900002598763, 257103.373399998992682 ], [ 355547.540700003504753, 257123.003699999302626 ], [ 355567.705700002610683, 257122.324400000274181 ], [ 355574.314400002360344, 257103.802299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201063300", "MAP": "D9-9393-T019", "PARCEL_NAM": "25L", "ACRE": "0.08", "LONGITUDE": -64.96490907, "LATITUDE": 18.34370884, "OBJECTID_1": 7761, "PARCEL_NO_": "105201063300", "Tax_Legal_": "LINDBERG BAY 25L SOUTHSIDE QTR", "Name": "FERNANDEZ, FRANKIE", "Address": "PO Box 155", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7100, "Improved_V": 60200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.448894748900003, "SHAPE_Area": 348.41164140500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355218.874499998986721, 257118.482999999076128 ], [ 355218.332400001585484, 257103.484900001436472 ], [ 355205.802699998021126, 257103.952599998563528 ], [ 355195.32379999756813, 257103.987900000065565 ], [ 355195.315200001001358, 257104.5 ], [ 355195.993900001049042, 257119.493200000375509 ], [ 355218.874499998986721, 257118.482999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202043700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95332871, "LATITUDE": 18.3435967, "OBJECTID_1": 8297, "PARCEL_NO_": "105202043700", "Tax_Legal_": "11-3-L CONTANT NO. 7BA SOUTHSIDE QTR", "Name": "INNISS, HYACINTH ADORA & HOMER ALEXIS INNISS", "Address": "PO Box 304266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78400, "Improved_V": 270300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.76785204399999, "SHAPE_Area": 1051.1160816900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356444.169200003147125, 257129.286699999123812 ], [ 356454.848999999463558, 257106.153900001198053 ], [ 356447.620999999344349, 257102.717199999839067 ], [ 356425.153899997472763, 257089.656599998474121 ], [ 356408.111699998378754, 257102.393800001591444 ], [ 356407.291000001132488, 257104.075899999588728 ], [ 356407.256800003349781, 257108.086399998515844 ], [ 356408.846100002527237, 257110.843600001186132 ], [ 356412.850599996745586, 257114.04280000180006 ], [ 356444.169200003147125, 257129.286699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201063400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96461064, "LATITUDE": 18.34369537, "OBJECTID_1": 7762, "PARCEL_NO_": "105201063400", "Tax_Legal_": "LINDBERG BAY 25M SOUTHSIDE QTR", "Name": "FREEMAN, SONIA E. JOSHUA", "Address": "PO Box 11", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8100, "Improved_V": 61800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.322953675299999, "SHAPE_Area": 429.60295928300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355253.267200000584126, 257117.006700001657009 ], [ 355252.588600002229214, 257102.0135000012815 ], [ 355224.355099998414516, 257103.260000001639128 ], [ 355224.227399997413158, 257118.246599998325109 ], [ 355253.267200000584126, 257117.006700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201071100", "MAP": "D9-853-T69", "PARCEL_NAM": "229", "ACRE": null, "LONGITUDE": -64.95878995, "LATITUDE": 18.34349775, "OBJECTID_1": 7834, "PARCEL_NO_": "105201071100", "Tax_Legal_": "229 CONTANT 7A SOUTHSIDE QTR.", "Name": "LORNA J and JAMIE PEREZ (LIFE ESTATE)", "Address": "PO Box 445", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040445, "Country": "United States", "Land_Value": 122500, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.44204256500001, "SHAPE_Area": 1612.4588266200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355855.665299996733665, 257112.226700000464916 ], [ 355891.46679999679327, 257074.522900000214577 ], [ 355865.670199997723103, 257073.67850000038743 ], [ 355841.466399997472763, 257075.169100001454353 ], [ 355826.634499996900558, 257112.411299999803305 ], [ 355829.843599997460842, 257114.337400000542402 ], [ 355830.635499998927116, 257116.032600000500679 ], [ 355831.400499999523163, 257120.894000001251698 ], [ 355849.195100001990795, 257114.495799999684095 ], [ 355855.665299996733665, 257112.226700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95284991, "LATITUDE": 18.34352789, "OBJECTID_1": 8255, "PARCEL_NO_": "105202040400", "Tax_Legal_": "CONTANT 11 3N 7B SOUTHSIDE QTR", "Name": "GUMBS, ROY", "Address": "PO Box 308471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72700, "Improved_V": 129200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.09927689200001, "SHAPE_Area": 1248.6410886900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356502.473600000143051, 257100.421900000423193 ], [ 356490.526399999856949, 257083.014499999582767 ], [ 356486.48759999871254, 257083.825800001621246 ], [ 356480.845200002193451, 257083.568500000983477 ], [ 356470.40089999884367, 257079.05009999871254 ], [ 356458.061700001358986, 257107.657800000160933 ], [ 356462.879799999296665, 257110.019299998879433 ], [ 356495.8091000020504, 257125.487500000745058 ], [ 356502.473600000143051, 257100.421900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201041700", "MAP": null, "PARCEL_NAM": "24B", "ACRE": "0.11", "LONGITUDE": -64.96369515000001, "LATITUDE": 18.34365369, "OBJECTID_1": 7595, "PARCEL_NO_": "105201041700", "Tax_Legal_": "24B LINDBERG NO.4A SOUTHSIDE QUARTER", "Name": "POLE FAMILY TRUST", "Address": "PO Box 474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12000, "Improved_V": 152000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.189458476300004, "SHAPE_Area": 404.41295403399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355346.17119999974966, 257096.86879999935627 ], [ 355323.581799998879433, 257098.161499999463558 ], [ 355324.238899998366833, 257115.687699999660254 ], [ 355347.634499996900558, 257114.401500001549721 ], [ 355346.17119999974966, 257096.86879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201063800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96399227000001, "LATITUDE": 18.34363097, "OBJECTID_1": 7766, "PARCEL_NO_": "105201063800", "Tax_Legal_": "LINDBERG 25A SOUTHSIDE QTR", "Name": "RIVERS, CLIVE & VERNA", "Address": "PO Box 308473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 385400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.196127105399995, "SHAPE_Area": 429.63198613499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355300.263800002634525, 257092.4695999994874 ], [ 355293.151500001549721, 257092.256000000983477 ], [ 355293.744699999690056, 257098.339499998837709 ], [ 355296.019799999892712, 257115.245600000023842 ], [ 355314.573899999260902, 257114.342000000178814 ], [ 355313.859300002455711, 257103.57039999961853 ], [ 355313.121399998664856, 257095.54280000180006 ], [ 355313.044600002467632, 257092.853500001132488 ], [ 355300.263800002634525, 257092.4695999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95781252, "LATITUDE": 18.34355478, "OBJECTID_1": 8122, "PARCEL_NO_": "105202023100", "Tax_Legal_": "CONTANT 222 7A SOUTHSIDE QTR", "Name": "ISSAC, STEPHEN", "Address": "PO Box 573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58300, "Improved_V": 39000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.78032191200001, "SHAPE_Area": 626.61858539499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355955.133100003004074, 257078.843600001186132 ], [ 355943.594800002872944, 257108.0912000015378 ], [ 355952.363499999046326, 257119.984200000762939 ], [ 355973.48589999973774, 257101.580899998545647 ], [ 355958.343999996781349, 257080.558699999004602 ], [ 355955.133100003004074, 257078.843600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201048600", "MAP": null, "PARCEL_NAM": "24D-A", "ACRE": "0.11", "LONGITUDE": -64.96321443, "LATITUDE": 18.34362476, "OBJECTID_1": 7665, "PARCEL_NO_": "105201048600", "Tax_Legal_": "LINDBERG BAY 24DA SOUTHSIDE QUARTER", "Name": "POLE FAMILY TRUST", "Address": "PO Box 474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.989161167500001, "SHAPE_Area": 512.13423788199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355370.906700000166893, 257095.743500001728535 ], [ 355371.445200003683567, 257112.956900000572205 ], [ 355378.292400002479553, 257112.541499998420477 ], [ 355397.656499996781349, 257111.222300000488758 ], [ 355400.082599997520447, 257110.397799998521805 ], [ 355402.526699997484684, 257107.462499998509884 ], [ 355401.023800000548363, 257094.573499999940395 ], [ 355388.117399998009205, 257095.101100001484156 ], [ 355377.631700001657009, 257095.4375 ], [ 355370.956699997186661, 257095.741200000047684 ], [ 355370.906700000166893, 257095.743500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95514657, "LATITUDE": 18.34350326, "OBJECTID_1": 8131, "PARCEL_NO_": "105202024100", "Tax_Legal_": "11A REM.&11A-1 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "WISE, TOMMY R.", "Address": "8064 Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 174100, "Improved_V": 38600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.38087159200001, "SHAPE_Area": 787.72083526200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356226.570900000631809, 257115.051300000399351 ], [ 356239.414300002157688, 257121.911400001496077 ], [ 356241.066500000655651, 257117.280900001525879 ], [ 356246.84740000218153, 257101.285100001841784 ], [ 356257.503899998962879, 257080.896200001239777 ], [ 356230.917099997401237, 257078.145500000566244 ], [ 356226.570900000631809, 257115.051300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201060200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96582939, "LATITUDE": 18.34365958, "OBJECTID_1": 7724, "PARCEL_NO_": "105201060200", "Tax_Legal_": "LINDBERG BAY 25F SOUTHSIDE QTR", "Name": "IBLE, LUIS & LILLIAN", "Address": "1118 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7100, "Improved_V": 61700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.419510159799998, "SHAPE_Area": 317.438163213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355121.987499997019768, 257098.411400001496077 ], [ 355096.982900001108646, 257099.262200001627207 ], [ 355097.68129999935627, 257111.933600001037121 ], [ 355122.685999996960163, 257111.082800000905991 ], [ 355121.987499997019768, 257098.411400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201071300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95909447, "LATITUDE": 18.34350451, "OBJECTID_1": 7836, "PARCEL_NO_": "105201071300", "Tax_Legal_": "CONTANT 230 7A S S QTR", "Name": "FREEMAN, ANTONIO & SANDRA P", "Address": "PO Box 304167", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 36000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.198664165, "SHAPE_Area": 866.695591605 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355841.466399997472763, 257075.169100001454353 ], [ 355826.1266999989748, 257077.365600001066923 ], [ 355818.043799996376038, 257079.621500000357628 ], [ 355809.125799998641014, 257085.247999999672174 ], [ 355802.619599997997284, 257091.738699998706579 ], [ 355818.526399999856949, 257117.622299998998642 ], [ 355823.405699998140335, 257112.807000000029802 ], [ 355826.634499996900558, 257112.411299999803305 ], [ 355841.466399997472763, 257075.169100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201042200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96290291, "LATITUDE": 18.34357084, "OBJECTID_1": 7600, "PARCEL_NO_": "105201042200", "Tax_Legal_": "LINDBERG BAY 24J SOUTHSIDE QTR", "Name": "POLE FAMILY TRUST", "Address": "PO Box 474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58800, "Improved_V": 191000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.85819917000001, "SHAPE_Area": 737.76179566600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355412.961999997496605, 257113.036299999803305 ], [ 355442.005500003695488, 257111.374200001358986 ], [ 355432.4358000010252, 257098.841400001198053 ], [ 355414.858800001442432, 257079.699099998921156 ], [ 355408.438900001347065, 257076.05799999833107 ], [ 355404.400100000202656, 257076.869300000369549 ], [ 355405.883299998939037, 257092.080099999904633 ], [ 355409.790700003504753, 257106.677600000053644 ], [ 355411.372800000011921, 257110.279100000858307 ], [ 355412.961999997496605, 257113.036299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95793914, "LATITUDE": 18.342452, "OBJECTID_1": 8112, "PARCEL_NO_": "105202022100", "Tax_Legal_": "CONTANT 171 7A SOUTHSIDE QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 276200, "Improved_V": 5192600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 684.71863290399995, "SHAPE_Area": 17329.336111299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355996.232699997723103, 256987.143199998885393 ], [ 355992.871899999678135, 256908.37779999896884 ], [ 355925.276500001549721, 256891.992600001394749 ], [ 355927.347199998795986, 256910.438499998301268 ], [ 355870.570200003683567, 256907.706900000572205 ], [ 355868.982100002467632, 256874.222199998795986 ], [ 355860.071299999952316, 256879.004399999976158 ], [ 355861.563400000333786, 256893.15989999845624 ], [ 355860.329199999570847, 256943.390000000596046 ], [ 355881.916199997067451, 256965.098200000822544 ], [ 355889.099299997091293, 256973.811900001019239 ], [ 355897.8716000020504, 256985.282699998468161 ], [ 355899.450099997222424, 256989.306400001049042 ], [ 355901.037500001490116, 256992.274700000882149 ], [ 355902.637500002980232, 256993.765500001609325 ], [ 355908.994499996304512, 257004.794399999082088 ], [ 355910.598200000822544, 257005.863000001758337 ], [ 355911.388300001621246, 257007.769299998879433 ], [ 355936.123199999332428, 257038.580299999564886 ], [ 355992.725900001823902, 257114.826099999248981 ], [ 355995.94030000269413, 257116.118999999016523 ], [ 355999.984499998390675, 257114.674400001764297 ], [ 355999.109099999070168, 257028.118900001049042 ], [ 355996.232699997723103, 256987.143199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201061500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96554361, "LATITUDE": 18.34360133, "OBJECTID_1": 7743, "PARCEL_NO_": "105201061500", "Tax_Legal_": "LINDBERG BAY 25P SOUTHSIDE QTR", "Name": "PATRICK, VALECIA, PATRECIA S and ALICIA ELIZABETH FRANCIS", "Address": "BOX 5418", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7100, "Improved_V": 95500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.516257042099994, "SHAPE_Area": 285.059528833 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355128.55799999833107, 257093.161400001496077 ], [ 355128.463200002908707, 257095.509100001305342 ], [ 355128.375900000333786, 257105.754999998956919 ], [ 355152.424099996685982, 257104.132500000298023 ], [ 355151.857100002467632, 257094.434000000357628 ], [ 355151.872299998998642, 257092.651500001549721 ], [ 355128.55799999833107, 257093.161400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201062100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96529963, "LATITUDE": 18.34359129, "OBJECTID_1": 7749, "PARCEL_NO_": "105201062100", "Tax_Legal_": "LINDBERG BAY 25T SOUTHSIDE QTR", "Name": "SHELTON, ELAINE & OTHERS", "Address": "PO Box 9878", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7100, "Improved_V": 139400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.357131960100006, "SHAPE_Area": 325.40996795400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355179.284299999475479, 257093.180900000035763 ], [ 355179.299400001764297, 257091.407999999821186 ], [ 355165.630800001323223, 257092.177099999040365 ], [ 355163.853799998760223, 257092.238299999386072 ], [ 355151.872299998998642, 257092.651500001549721 ], [ 355151.857100002467632, 257094.434000000357628 ], [ 355152.424099996685982, 257104.132500000298023 ], [ 355179.191799998283386, 257104.042300000786781 ], [ 355179.284299999475479, 257093.180900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201062800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96504518, "LATITUDE": 18.34358264, "OBJECTID_1": 7756, "PARCEL_NO_": "105201062800", "Tax_Legal_": "LINDBERG BAY 25V SOUTHSIDE QTR", "Name": "WEBSTER, DUDLEY", "Address": "BOX 4043", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 131100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.953929604099997, "SHAPE_Area": 354.93825860200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355205.910599999129772, 257091.287799999117851 ], [ 355205.92230000346899, 257089.910000000149012 ], [ 355179.299400001764297, 257091.407999999821186 ], [ 355179.284299999475479, 257093.180900000035763 ], [ 355179.191799998283386, 257104.042300000786781 ], [ 355205.802699998021126, 257103.952599998563528 ], [ 355205.910599999129772, 257091.287799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95158094, "LATITUDE": 18.34350812, "OBJECTID_1": 8306, "PARCEL_NO_": "105202050700", "Tax_Legal_": "22-6 CONTANT NO 7BA SOUTHSIDE QTR", "Name": "INNISS, HYACINTH ADORA & HOMER ALEXIS INNISS", "Address": "PO Box 304266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.43242838499999, "SHAPE_Area": 917.95294074399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356630.819300003349781, 257084.796000000089407 ], [ 356601.79389999806881, 257084.347300000488758 ], [ 356601.722099997103214, 257096.302999999374151 ], [ 356601.518799997866154, 257116.642400000244379 ], [ 356629.741499997675419, 257116.662300001829863 ], [ 356630.819300003349781, 257084.796000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201063500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96461042, "LATITUDE": 18.34356367, "OBJECTID_1": 7763, "PARCEL_NO_": "105201063500", "Tax_Legal_": "25-3 LINDBERG BAY 4A SOUTHSIDE QTR", "Name": "GEORGE, ALBION L., ADRIAN, & ALINA", "Address": "PO BOX 303729", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9100, "Improved_V": 294000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.950666148099998, "SHAPE_Area": 396.92990565100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355252.671300001442432, 257092.303800001740456 ], [ 355252.714400000870228, 257087.247099999338388 ], [ 355224.235500000417233, 257089.950199998915195 ], [ 355224.437799997627735, 257093.550400000065565 ], [ 355224.355099998414516, 257103.260000001639128 ], [ 355252.588600002229214, 257102.0135000012815 ], [ 355252.671300001442432, 257092.303800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9625885, "LATITUDE": 18.3435225, "OBJECTID_1": 7606, "PARCEL_NO_": "105201042800", "Tax_Legal_": "LINDBERG BAY 24L SOUTHSIDE QTR", "Name": "VENTURA, IGNACIO A. & IGNACIO A.,JR.", "Address": "PO BOX 301882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45700, "Improved_V": 189800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.976411826, "SHAPE_Area": 751.97605330399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355473.514600001275539, 257104.24379999935627 ], [ 355466.443000003695488, 257082.443300001323223 ], [ 355426.125600002706051, 257082.324400000274181 ], [ 355434.109600000083447, 257091.67790000140667 ], [ 355437.313299998641014, 257094.237199999392033 ], [ 355445.28830000013113, 257104.646099999547005 ], [ 355473.514600001275539, 257104.24379999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96230711, "LATITUDE": 18.34352013, "OBJECTID_1": 7613, "PARCEL_NO_": "105201043500", "Tax_Legal_": "LINDBERG BAY 24M SOUTHSIDE QTR", "Name": "TRACY BERTRAND & PRISCILLA LOPEZ RODRIGUEZ", "Address": "24M Estate Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15600, "Improved_V": 86400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.831750600399999, "SHAPE_Area": 538.450797846 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355496.280199997127056, 257082.265299998223782 ], [ 355466.443000003695488, 257082.443300001323223 ], [ 355473.514600001275539, 257104.24379999935627 ], [ 355495.288599997758865, 257103.999800000339746 ], [ 355493.810900002717972, 257088.155699998140335 ], [ 355496.280199997127056, 257082.265299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201070300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95796029, "LATITUDE": 18.34348518, "OBJECTID_1": 7826, "PARCEL_NO_": "105201070300", "Tax_Legal_": "EST CONTANT 221 7A SOUTHSIDE", "Name": "LARMONY, JEAN", "Address": "17023 W Shiloh Ave", "City": "Goodyear", "State": "Arizona", "Zip": 85338, "Country": "United States", "Land_Value": 37600, "Improved_V": 45000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.014098686799997, "SHAPE_Area": 463.04917388799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355931.501900002360344, 257107.781100001186132 ], [ 355943.594800002872944, 257108.0912000015378 ], [ 355955.133100003004074, 257078.843600001186132 ], [ 355942.233900003135204, 257078.526999998837709 ], [ 355937.376199997961521, 257080.809200000017881 ], [ 355934.933899998664856, 257083.533500000834465 ], [ 355932.414300002157688, 257095.334100000560284 ], [ 355931.501900002360344, 257107.781100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94128418, "LATITUDE": 18.34344942, "OBJECTID_1": 8961, "PARCEL_NO_": "105301012500", "Tax_Legal_": "114 ANNAS FANCY KROMP QTR", "Name": "RHYMER, ROY O. & ALINA A", "Address": "PO Box 886", "City": "Walkertown", "State": "North Carolina", "Zip": 27051, "Country": "United States", "Land_Value": 55200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.38657548400001, "SHAPE_Area": 545.08917213500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357705.649999998509884, 257091.69310000166297 ], [ 357690.344499997794628, 257089.879099998623133 ], [ 357683.094899997115135, 257088.975400000810623 ], [ 357711.031700000166893, 257122.556800000369549 ], [ 357715.875, 257121.963199999183416 ], [ 357714.510499998927116, 257092.821100000292063 ], [ 357705.649999998509884, 257091.69310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201043700", "MAP": null, "PARCEL_NAM": "24S", "ACRE": null, "LONGITUDE": -64.96157304, "LATITUDE": 18.34351014, "OBJECTID_1": 7615, "PARCEL_NO_": "105201043700", "Tax_Legal_": "LINDBERG BAY 24S SOUTHSIDE QUARTER", "Name": "CREQUE, ROAN N.", "Address": "PO Box 304116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52300, "Improved_V": 284500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.314873586, "SHAPE_Area": 597.34382411700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355547.968699999153614, 257072.767000000923872 ], [ 355547.909299999475479, 257079.732599999755621 ], [ 355547.707900002598763, 257103.373399998992682 ], [ 355574.314400002360344, 257103.802299998700619 ], [ 355577.629600003361702, 257093.274700000882149 ], [ 355547.968699999153614, 257072.767000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051000", "MAP": "F9-53-T56", "PARCEL_NAM": "22-13", "ACRE": "0.27", "LONGITUDE": -64.95216371, "LATITUDE": 18.34331775, "OBJECTID_1": 8309, "PARCEL_NO_": "105202051000", "Tax_Legal_": "CONTANT 22 13 7BA SOUTHSIDE QTR", "Name": "JOSEPH, VIOLA", "Address": "PO Box 304012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.35227322, "SHAPE_Area": 1124.5570499299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356553.700000002980232, 257043.565400000661612 ], [ 356545.538000002503395, 257043.239399999380112 ], [ 356545.632700003683567, 257058.11540000140667 ], [ 356545.906800001859665, 257101.146499998867512 ], [ 356555.596699997782707, 257111.833599999547005 ], [ 356557.193199999630451, 257113.746500000357628 ], [ 356557.175200000405312, 257115.857299998402596 ], [ 356563.806999996304512, 257125.82209999859333 ], [ 356563.070500001311302, 257104.656199999153614 ], [ 356562.579099997878075, 257090.534000001847744 ], [ 356562.031599998474121, 257074.799800001084805 ], [ 356561.045000001788139, 257046.445300001651049 ], [ 356560.965800002217293, 257044.168499998748302 ], [ 356560.954899996519089, 257043.855200000107288 ], [ 356553.700000002980232, 257043.565400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202050800", "MAP": "F9-35-T56", "PARCEL_NAM": "REM 22-9", "ACRE": "0.11", "LONGITUDE": -64.95192802, "LATITUDE": 18.34347919, "OBJECTID_1": 8307, "PARCEL_NO_": "105202050800", "Tax_Legal_": "CONTANT 22 9 7BA SOUTHSIDE QTR", "Name": "ESANNASON, FRED F. & BEULAH", "Address": "PO Box 11517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.250216610600006, "SHAPE_Area": 502.63874297299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356595.446999996900558, 257090.646600000560284 ], [ 356595.412399999797344, 257089.196400001645088 ], [ 356562.545500002801418, 257089.567099999636412 ], [ 356562.579099997878075, 257090.534000001847744 ], [ 356563.070500001311302, 257104.656199999153614 ], [ 356595.783600002527237, 257104.761700000613928 ], [ 356595.446999996900558, 257090.646600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201043600", "MAP": null, "PARCEL_NAM": "24R", "ACRE": null, "LONGITUDE": -64.96190945, "LATITUDE": 18.3435074, "OBJECTID_1": 7614, "PARCEL_NO_": "105201043600", "Tax_Legal_": "LINDBERG BAY 24R SOUTHSIDE QUARTER", "Name": "CREQUE MOOLENAAR, LORRAINE G.", "Address": "PO Box 303600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.30200983700001, "SHAPE_Area": 1121.3250089400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355547.909299999475479, 257079.732599999755621 ], [ 355504.368500001728535, 257079.376200001686811 ], [ 355499.431699998676777, 257090.945999998599291 ], [ 355500.93639999628067, 257103.6239 ], [ 355547.707900002598763, 257103.373399998992682 ], [ 355547.909299999475479, 257079.732599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96583512, "LATITUDE": 18.34355156, "OBJECTID_1": 7725, "PARCEL_NO_": "105201060300", "Tax_Legal_": "25E LINDBERG BAY No.4A SOUTHSIDE QTR", "Name": "MARK STEVEN QUETEL & LECHELLE M DURANTE QUETEL", "Address": "PO BOX 9367", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6500, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.247536128799993, "SHAPE_Area": 284.58378848400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355122.082800000905991, 257087.224300000816584 ], [ 355096.271899998188019, 257088.068500000983477 ], [ 355096.982900001108646, 257099.262200001627207 ], [ 355121.987499997019768, 257098.411400001496077 ], [ 355122.082800000905991, 257087.224300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95376567, "LATITUDE": 18.34346815, "OBJECTID_1": 8260, "PARCEL_NO_": "105202040900", "Tax_Legal_": "CONTANT 11-3D SOUTHSIDE QTR", "Name": "BENNETT, CONNOR, & ACOSTA", "Address": "PO Box 304656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75900, "Improved_V": 82600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.040667445, "SHAPE_Area": 1104.3046894500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356366.194200001657009, 257100.784200001507998 ], [ 356369.354699999094009, 257108.409400001168251 ], [ 356402.411700002849102, 257108.891100000590086 ], [ 356401.666599996387959, 257101.707800000905991 ], [ 356403.306199997663498, 257098.554800000041723 ], [ 356413.858400002121925, 257090.408500000834465 ], [ 356380.110100001096725, 257076.411299999803305 ], [ 356360.647100001573563, 257089.339800000190735 ], [ 356366.194200001657009, 257100.784200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202038200", "MAP": "D9-1531-T79", "PARCEL_NAM": "11C", "ACRE": "0.49", "LONGITUDE": -64.95454246, "LATITUDE": 18.34337869, "OBJECTID_1": 8239, "PARCEL_NO_": "105202038200", "Tax_Legal_": "CONTANT 11C 7BA S S QTR", "Name": "O'GARRO, REGINALD & INEZ", "Address": "PO Box 821", "City": "BOWIE", "State": "Maryland", "Zip": 20720, "Country": "United States", "Land_Value": 156800, "Improved_V": 309900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.97977186099999, "SHAPE_Area": 2752.6914761100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356351.811899997293949, 257085.256700001657009 ], [ 356283.548600003123283, 257052.611699998378754 ], [ 356265.53999999910593, 257084.128400001674891 ], [ 356266.288800001144409, 257090.889499999582767 ], [ 356268.196699999272823, 257099.440799999982119 ], [ 356316.150700002908707, 257106.496300000697374 ], [ 356320.2128000035882, 257102.940999999642372 ], [ 356346.893100000917912, 257094.715599998831749 ], [ 356351.811899997293949, 257085.256700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202043800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95314938, "LATITUDE": 18.34341428, "OBJECTID_1": 8298, "PARCEL_NO_": "105202043800", "Tax_Legal_": "CONTANT 11 3M 7BA SOUTHSIDE QTR", "Name": "WINSTON CLARKE REVOC FAM TR", "Address": "KIRWAN TERRACE BLDG. 21", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79900, "Improved_V": 58600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.16705878099999, "SHAPE_Area": 849.759377976 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356470.40089999884367, 257079.05009999871254 ], [ 356462.366599999368191, 257075.606800001114607 ], [ 356455.12049999833107, 257074.280999999493361 ], [ 356445.428599998354912, 257076.101500000804663 ], [ 356440.572800002992153, 257078.172699999064207 ], [ 356425.153899997472763, 257089.656599998474121 ], [ 356447.620999999344349, 257102.717199999839067 ], [ 356454.848999999463558, 257106.153900001198053 ], [ 356458.061700001358986, 257107.657800000160933 ], [ 356470.40089999884367, 257079.05009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201041900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96370669, "LATITUDE": 18.34349353, "OBJECTID_1": 7597, "PARCEL_NO_": "105201041900", "Tax_Legal_": "LINDBERG BAY 24A SOUTHSIDE QTR", "Name": "GRAHAM, IRVING & SHIRLEY", "Address": "PO Box 10691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 139000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.6105748656, "SHAPE_Area": 409.26434975299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355323.581799998879433, 257098.161499999463558 ], [ 355346.17119999974966, 257096.86879999935627 ], [ 355345.515900000929832, 257079.131499998271465 ], [ 355322.120300002396107, 257080.417700000107288 ], [ 355323.581799998879433, 257098.161499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94200379, "LATITUDE": 18.34342398, "OBJECTID_1": 8979, "PARCEL_NO_": "105301014400", "Tax_Legal_": "130H ESTATE ANNAS FANCY CROWN PRINCE QUARTER", "Name": "TURNBULL, CADWELL & SHARON", "Address": "PO Box 308114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58500, "Improved_V": 63000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.34805452800001, "SHAPE_Area": 803.20668450599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357646.832400001585484, 257086.145500000566244 ], [ 357621.059199996292591, 257082.557100001722574 ], [ 357613.581200003623962, 257108.460400000214577 ], [ 357604.713500000536442, 257108.176699999719858 ], [ 357616.736299999058247, 257116.718800000846386 ], [ 357638.557099997997284, 257110.986800000071526 ], [ 357646.832400001585484, 257086.145500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201061600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96554115000001, "LATITUDE": 18.34349533, "OBJECTID_1": 7744, "PARCEL_NO_": "105201061600", "Tax_Legal_": "25Q LINDBERG BAY SOUTHSIDE QTR", "Name": "PATRICK, HELEN", "Address": "BOX 5418", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7700, "Improved_V": 144200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.038516588099995, "SHAPE_Area": 262.651717899 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355129.005599997937679, 257082.071699999272823 ], [ 355128.55799999833107, 257093.161400001496077 ], [ 355151.872299998998642, 257092.651500001549721 ], [ 355151.954199999570847, 257083.035799998790026 ], [ 355151.9712999984622, 257081.021699998527765 ], [ 355129.005599997937679, 257082.071699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201042000", "MAP": null, "PARCEL_NAM": "24C", "ACRE": "0.11", "LONGITUDE": -64.96348946000001, "LATITUDE": 18.34348093, "OBJECTID_1": 7598, "PARCEL_NO_": "105201042000", "Tax_Legal_": "LINDBERG BAY 24C SOUTHSIDE QTR", "Name": "SMITH, WELLINGTON & RITA", "Address": "PO Box 631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10200, "Improved_V": 2600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.563433584699993, "SHAPE_Area": 409.12577686999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355368.736400000751019, 257095.842199999839067 ], [ 355368.728399999439716, 257077.863800000399351 ], [ 355366.971000000834465, 257077.959800001233816 ], [ 355345.515900000929832, 257079.131499998271465 ], [ 355346.17119999974966, 257096.86879999935627 ], [ 355367.377899996936321, 257095.903999999165535 ], [ 355368.736400000751019, 257095.842199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201066500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9653779, "LATITUDE": 18.34348924, "OBJECTID_1": 7792, "PARCEL_NO_": "105201066500", "Tax_Legal_": "LINDBERG BAY 25 UA 4A SOUTHSIDE", "Name": "CHESTERFIELD, ALMA", "Address": "73 Leighton Rd", "City": "Hyde Park", "State": "Massachusetts", "Zip": 2136, "Country": "United States", "Land_Value": 4000, "Improved_V": 32100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.279886201099998, "SHAPE_Area": 134.60814686099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355163.247900001704693, 257082.494899999350309 ], [ 355162.940499998629093, 257080.598200000822544 ], [ 355151.9712999984622, 257081.021699998527765 ], [ 355151.954199999570847, 257083.035799998790026 ], [ 355151.872299998998642, 257092.651500001549721 ], [ 355163.853799998760223, 257092.238299999386072 ], [ 355163.247900001704693, 257082.494899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201062200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96524853, "LATITUDE": 18.34348193, "OBJECTID_1": 7750, "PARCEL_NO_": "105201062200", "Tax_Legal_": "LINDBERG 25U 4A SOUTHSIDE", "Name": "LEONARD, RUTH & LILYMAE DURANTE", "Address": "PO Box 12131", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40400, "Improved_V": 91500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.180057440100001, "SHAPE_Area": 183.854184836 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355179.381399996578693, 257081.782600000500679 ], [ 355179.502599999308586, 257079.958700001239777 ], [ 355162.940499998629093, 257080.598200000822544 ], [ 355163.247900001704693, 257082.494899999350309 ], [ 355163.853799998760223, 257092.238299999386072 ], [ 355165.630800001323223, 257092.177099999040365 ], [ 355179.299400001764297, 257091.407999999821186 ], [ 355179.381399996578693, 257081.782600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201042100", "MAP": null, "PARCEL_NAM": "24E", "ACRE": "0.11", "LONGITUDE": -64.96323505, "LATITUDE": 18.3434689, "OBJECTID_1": 7599, "PARCEL_NO_": "105201042100", "Tax_Legal_": "LINDBERG BAY 24E SOUTHSIDE QTR", "Name": "SMITH, WELLINGTON & RITA", "Address": "PO Box 631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15200, "Improved_V": 205100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.210816800200007, "SHAPE_Area": 560.54577661500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355368.728399999439716, 257077.863800000399351 ], [ 355368.736400000751019, 257095.842199999839067 ], [ 355377.631700001657009, 257095.4375 ], [ 355388.117399998009205, 257095.101100001484156 ], [ 355401.023800000548363, 257094.573499999940395 ], [ 355397.954999998211861, 257076.183200001716614 ], [ 355385.853100001811981, 257076.928599998354912 ], [ 355368.728399999439716, 257077.863800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201062900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96504817, "LATITUDE": 18.34347187, "OBJECTID_1": 7757, "PARCEL_NO_": "105201062900", "Tax_Legal_": "LINDBERG BAY 25-1 4A SOUTHSIDE QTR", "Name": "WEBSTER, DUDLEY", "Address": "BOX 4043", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7100, "Improved_V": 122300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.689631323100002, "SHAPE_Area": 298.23371307899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355206.007700003683567, 257079.889600001275539 ], [ 355206.073899999260902, 257078.932799998670816 ], [ 355179.502599999308586, 257079.958700001239777 ], [ 355179.381399996578693, 257081.782600000500679 ], [ 355179.299400001764297, 257091.407999999821186 ], [ 355205.92230000346899, 257089.910000000149012 ], [ 355205.991499997675419, 257081.789299998432398 ], [ 355206.007700003683567, 257079.889600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201063600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9646183, "LATITUDE": 18.34344834, "OBJECTID_1": 7764, "PARCEL_NO_": "105201063600", "Tax_Legal_": "LINDBERG BAY 25-4 4A SOUTHSIDE QTR", "Name": "GOMEZ, VERNE, VERNA, KENNETH, KURTNEY, DERRICK & DERICKA", "Address": "B12 A78 Kirwan Ter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.293973669099998, "SHAPE_Area": 333.91965155999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355252.714400000870228, 257087.247099999338388 ], [ 355252.777400001883507, 257079.85020000115037 ], [ 355252.633299998939037, 257076.612700000405312 ], [ 355241.432899996638298, 257076.705299999564886 ], [ 355223.765500001609325, 257077.818300001323223 ], [ 355223.73759999871254, 257081.090199999511242 ], [ 355224.235500000417233, 257089.950199998915195 ], [ 355252.714400000870228, 257087.247099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95263226, "LATITUDE": 18.34340593, "OBJECTID_1": 8255, "PARCEL_NO_": "105202040400", "Tax_Legal_": "CONTANT 11 3N 7B SOUTHSIDE QTR", "Name": "GUMBS, ROY", "Address": "PO Box 308471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72700, "Improved_V": 129200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.929745169100002, "SHAPE_Area": 347.478018808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356490.526399999856949, 257083.014499999582767 ], [ 356502.473600000143051, 257100.421900000423193 ], [ 356520.306000001728535, 257089.590999998152256 ], [ 356511.504900000989437, 257081.497400000691414 ], [ 356508.292199999094009, 257079.993500001728535 ], [ 356499.426399998366833, 257079.498700000345707 ], [ 356490.526399999856949, 257083.014499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96584072, "LATITUDE": 18.34344693, "OBJECTID_1": 7726, "PARCEL_NO_": "105201060400", "Tax_Legal_": "LINDBERG 25D 4A SOUTHSIDE QTR", "Name": "FLAX, OTTLEY B", "Address": "PO Box 302361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7100, "Improved_V": 133600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.766821873799998, "SHAPE_Area": 311.30898737299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355121.379000000655651, 257075.186200000345707 ], [ 355095.568000003695488, 257076.0304000005126 ], [ 355096.271899998188019, 257088.068500000983477 ], [ 355122.082800000905991, 257087.224300000816584 ], [ 355121.379000000655651, 257075.186200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9422218, "LATITUDE": 18.34337242, "OBJECTID_1": 8978, "PARCEL_NO_": "105301014300", "Tax_Legal_": "130G EST.ANNAS FANCY SOUTHSIDE QTR.", "Name": "TRUST AGREEMENT OF RUTH L K THOMAS", "Address": "PO Box 303891", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69100, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.978123517, "SHAPE_Area": 661.34138176800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357621.059199996292591, 257082.557100001722574 ], [ 357621.078900001943111, 257080.235199999064207 ], [ 357600.140000000596046, 257077.108500000089407 ], [ 357596.720499999821186, 257099.878600001335144 ], [ 357593.49889999628067, 257099.430100001394749 ], [ 357570.139200001955032, 257096.494699999690056 ], [ 357572.540200002491474, 257098.625199999660254 ], [ 357587.831299997866154, 257102.127900000661612 ], [ 357604.713500000536442, 257108.176699999719858 ], [ 357613.581200003623962, 257108.460400000214577 ], [ 357621.059199996292591, 257082.557100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201061700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96554017, "LATITUDE": 18.34339029, "OBJECTID_1": 7745, "PARCEL_NO_": "105201061700", "Tax_Legal_": "LINDBERG BAY 25R SOUTHSIDE QTR", "Name": "LAWRENCE, NESTRA", "Address": "PO Box 302789", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7100, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.415685518199993, "SHAPE_Area": 270.76027475799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355129.485299997031689, 257070.186299998313189 ], [ 355129.005599997937679, 257082.071699999272823 ], [ 355151.9712999984622, 257081.021699998527765 ], [ 355152.072800002992153, 257069.104600001126528 ], [ 355129.485299997031689, 257070.186299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201044300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96138863, "LATITUDE": 18.3432071, "OBJECTID_1": 7621, "PARCEL_NO_": "105201044300", "Tax_Legal_": "LINDBERG BAY 24U SOUTHSIDE QUARTER", "Name": "CREQUE, ROAN N", "Address": "PO Box 304116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.66234903700001, "SHAPE_Area": 942.99541792000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355597.472000002861023, 257035.808600001037121 ], [ 355575.450300000607967, 257037.24379999935627 ], [ 355563.26519999653101, 257075.636399999260902 ], [ 355580.10249999910593, 257086.962099999189377 ], [ 355597.472000002861023, 257035.808600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201062300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96530041, "LATITUDE": 18.34337803, "OBJECTID_1": 7751, "PARCEL_NO_": "105201062300", "Tax_Legal_": "LINDBERG BAY 25 S SOUTHSIDE ATR", "Name": "QUETEL, BERNADETTE & LAWRENCE, NISHEL D.", "Address": "PO Box 304884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7100, "Improved_V": 54400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.857820523300006, "SHAPE_Area": 334.31483356899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355179.502599999308586, 257079.958700001239777 ], [ 355180.306400001049042, 257067.857999999076128 ], [ 355152.072800002992153, 257069.104600001126528 ], [ 355151.9712999984622, 257081.021699998527765 ], [ 355179.502599999308586, 257079.958700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201063000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96504268, "LATITUDE": 18.34336589, "OBJECTID_1": 7758, "PARCEL_NO_": "105201063000", "Tax_Legal_": "LINDBERG BAY 25-2 4A SOUTHSIDE", "Name": "WILLIAMS, DALE O. & JERMAINE A.C.", "Address": "PO Box 8662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 145900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.733244060900006, "SHAPE_Area": 323.99487563999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355206.073899999260902, 257078.932799998670816 ], [ 355206.927299998700619, 257066.598200000822544 ], [ 355180.306400001049042, 257067.857999999076128 ], [ 355179.502599999308586, 257079.958700001239777 ], [ 355206.073899999260902, 257078.932799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201067300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96483587, "LATITUDE": 18.34335547, "OBJECTID_1": 7800, "PARCEL_NO_": "105201067300", "Tax_Legal_": "LINDBERG BAY 25-9 SOUTHSIDE QTR.", "Name": "GOMEZ, MINA WILLIAM", "Address": "25A Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6100, "Improved_V": 83500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.971381937099999, "SHAPE_Area": 209.60777040900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355223.765500001609325, 257077.818300001323223 ], [ 355223.866999998688698, 257065.892499998211861 ], [ 355206.927299998700619, 257066.598200000822544 ], [ 355206.073899999260902, 257078.932799998670816 ], [ 355223.765500001609325, 257077.818300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051100", "MAP": "F9-1080-T63", "PARCEL_NAM": "22-14", "ACRE": "0.20", "LONGITUDE": -64.95236022, "LATITUDE": 18.34321146, "OBJECTID_1": 8310, "PARCEL_NO_": "105202051100", "Tax_Legal_": "CONTANT 22 14 7BA SOUTHSIDE QTR", "Name": "MODESTE, THOMAS & MARIE", "Address": "8473 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65300, "Improved_V": 95100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.76085002100001, "SHAPE_Area": 1184.48089486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356545.538000002503395, 257043.239399999380112 ], [ 356522.32150000333786, 257042.312199998646975 ], [ 356522.18469999730587, 257058.364599999040365 ], [ 356520.541500002145767, 257061.939699999988079 ], [ 356516.468599997460842, 257066.761500000953674 ], [ 356516.407499998807907, 257073.938200000673532 ], [ 356536.412500001490116, 257092.044900000095367 ], [ 356544.412600003182888, 257099.498599998652935 ], [ 356545.906800001859665, 257101.146499998867512 ], [ 356545.632700003683567, 257058.11540000140667 ], [ 356545.538000002503395, 257043.239399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201063900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96461862, "LATITUDE": 18.3433431, "OBJECTID_1": 7767, "PARCEL_NO_": "105201063900", "Tax_Legal_": "LINDBERG BAY 25-5 S S QTR", "Name": "CUPID, SAMUEL", "Address": "32 B Interfaith Ter", "City": "Framingham", "State": "Massachusetts", "Zip": 1702, "Country": "United States", "Land_Value": 71800, "Improved_V": 131700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.0691004464, "SHAPE_Area": 335.92401661899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355252.633299998939037, 257076.612700000405312 ], [ 355252.100500002503395, 257064.645899999886751 ], [ 355223.866999998688698, 257065.892499998211861 ], [ 355223.765500001609325, 257077.818300001323223 ], [ 355241.432899996638298, 257076.705299999564886 ], [ 355252.633299998939037, 257076.612700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96268059000001, "LATITUDE": 18.34336105, "OBJECTID_1": 7605, "PARCEL_NO_": "105201042700", "Tax_Legal_": "LINDBERG 24K SOUTHSIDE QTR", "Name": "BROWN, MAVIS & HODGE, SHELLY", "Address": "BOX 5005", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 106200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.988797705, "SHAPE_Area": 662.10548816400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355466.443000003695488, 257082.443300001323223 ], [ 355461.748999997973442, 257065.517400000244379 ], [ 355415.747800000011921, 257069.996100001037121 ], [ 355415.724399998784065, 257072.740100000053644 ], [ 355426.125600002706051, 257082.324400000274181 ], [ 355466.443000003695488, 257082.443300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95350284, "LATITUDE": 18.34325738, "OBJECTID_1": 8261, "PARCEL_NO_": "105202041000", "Tax_Legal_": "CONTANT 11 3 C 7BA SOUTHSIDE QTR", "Name": "PEARLIE WHITE TRUST", "Address": "PO Box 7313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71900, "Improved_V": 332800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.51231101100001, "SHAPE_Area": 1233.9157421299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356442.2483000010252, 257070.798099998384714 ], [ 356420.659500002861023, 257049.300999999046326 ], [ 356380.110100001096725, 257076.411299999803305 ], [ 356413.858400002121925, 257090.408500000834465 ], [ 356437.396099999547005, 257072.44709999859333 ], [ 356442.2483000010252, 257070.798099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201043800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96229944, "LATITUDE": 18.34333992, "OBJECTID_1": 7616, "PARCEL_NO_": "105201043800", "Tax_Legal_": "LINDBERG BAY 24N SOUTHSIDE QTR", "Name": "CREQUE MOOLENAAR, LORRAINE", "Address": "PO Box 303600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.330251416, "SHAPE_Area": 668.57492536699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355506.924099996685982, 257063.353999998420477 ], [ 355461.748999997973442, 257065.517400000244379 ], [ 355466.443000003695488, 257082.443300001323223 ], [ 355496.280199997127056, 257082.265299998223782 ], [ 355506.924099996685982, 257063.353999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202041300", "MAP": null, "PARCEL_NAM": "20", "ACRE": null, "LONGITUDE": -64.95384314, "LATITUDE": 18.34298824, "OBJECTID_1": 8264, "PARCEL_NO_": "105202041300", "Tax_Legal_": "CONTANT 20 7BA SOUTHSIDE QTR", "Name": "MILLIN, FRANKLIN & RAPHAEL", "Address": "PO Box 307971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 521300, "Improved_V": 1000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 420.25058799300001, "SHAPE_Area": 7875.2262208399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356454.72240000218153, 257026.359499998390675 ], [ 356460.575900003314018, 257022.865499999374151 ], [ 356457.247500002384186, 257013.925599999725819 ], [ 356452.601999998092651, 256991.300599999725819 ], [ 356289.270099997520447, 257043.581500001251698 ], [ 356283.548600003123283, 257052.611699998378754 ], [ 356351.811899997293949, 257085.256700001657009 ], [ 356360.647100001573563, 257089.339800000190735 ], [ 356380.110100001096725, 257076.411299999803305 ], [ 356420.659500002861023, 257049.300999999046326 ], [ 356432.824299998581409, 257041.167899999767542 ], [ 356454.72240000218153, 257026.359499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94242803, "LATITUDE": 18.34330781, "OBJECTID_1": 8962, "PARCEL_NO_": "105301012700", "Tax_Legal_": "112&113 ANNAS FANCY KRONP QTR", "Name": "SHIRLEY PATRICIA ANSAH & ROSALIA HENLEY", "Address": "3237 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026442, "Country": "United States", "Land_Value": 16200, "Improved_V": 59100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.110693655700004, "SHAPE_Area": 629.17457365500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357600.140000000596046, 257077.108500000089407 ], [ 357580.009199999272823, 257073.777300000190735 ], [ 357573.5675999969244, 257072.669100001454353 ], [ 357567.752599999308586, 257092.675400000065565 ], [ 357570.139200001955032, 257096.494699999690056 ], [ 357593.49889999628067, 257099.430100001394749 ], [ 357600.140000000596046, 257077.108500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051300", "MAP": "F9-489-T59", "PARCEL_NAM": "22-9A", "ACRE": "0.11", "LONGITUDE": -64.95193339, "LATITUDE": 18.34334303, "OBJECTID_1": 8312, "PARCEL_NO_": "105202051300", "Tax_Legal_": "CONTANT 22 9A 7BA SOUTHSIDE QTR", "Name": "BEULAH ESANNASON & FRED F ESANNASON (LIFE ESTATE)", "Address": "1780 Carolina Wren Dr", "City": "Ocoee", "State": "Florida", "Zip": 34761, "Country": "United States", "Land_Value": 34800, "Improved_V": 313300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.868232175900005, "SHAPE_Area": 489.648333842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356595.412399999797344, 257089.196400001645088 ], [ 356595.330799996852875, 257085.772100001573563 ], [ 356595.42790000140667, 257074.373799998313189 ], [ 356562.031599998474121, 257074.799800001084805 ], [ 356562.545500002801418, 257089.567099999636412 ], [ 356595.412399999797344, 257089.196400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201067700", "MAP": "d9-2062-T82", "PARCEL_NAM": "25-10", "ACRE": null, "LONGITUDE": -64.9641549, "LATITUDE": 18.34330406, "OBJECTID_1": 7804, "PARCEL_NO_": "105201067700", "Tax_Legal_": "LINDBERG BAY 25-10 S S QTR.", "Name": "PARSONS, M. & S. & TAYLOR, D", "Address": "400 Indus Ln", "City": "Lawrenceville", "State": "Georgia", "Zip": 30044, "Country": "United States", "Land_Value": 7100, "Improved_V": 148100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.766177303899994, "SHAPE_Area": 281.658592666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355278.775399997830391, 257057.053800001740456 ], [ 355282.720899999141693, 257078.772700000554323 ], [ 355293.913699999451637, 257078.498100001364946 ], [ 355293.294399999082088, 257056.539299998432398 ], [ 355278.775399997830391, 257057.053800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201065700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96400703, "LATITUDE": 18.34327981, "OBJECTID_1": 7785, "PARCEL_NO_": "105201065700", "Tax_Legal_": "LINDBERG BAY 25-6 S S QTR", "Name": "PARSONS, M & S. , & TAYLOR, D & G", "Address": "8607 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 141600, "Improved_V": 108400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.210839298899998, "SHAPE_Area": 316.09883792900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355312.451999999582767, 257072.470300000160933 ], [ 355311.846799999475479, 257055.846799999475479 ], [ 355293.294399999082088, 257056.539299998432398 ], [ 355293.781900003552437, 257073.824299998581409 ], [ 355312.451999999582767, 257072.470300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201044000", "MAP": null, "PARCEL_NAM": "24Q", "ACRE": null, "LONGITUDE": -64.9618904, "LATITUDE": 18.34332471, "OBJECTID_1": 7618, "PARCEL_NO_": "105201044000", "Tax_Legal_": "LINDBERG BAY 24Q SOUTHSIDE QUARTER", "Name": "CREQUE MOOLENAAR, LORRAINE G.", "Address": "PO Box 303600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49000, "Improved_V": 207900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.28132294700001, "SHAPE_Area": 623.80951450400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355504.368500001728535, 257079.376200001686811 ], [ 355547.909299999475479, 257079.732599999755621 ], [ 355547.968699999153614, 257072.767000000923872 ], [ 355530.332299999892712, 257060.590300001204014 ], [ 355522.280000001192093, 257059.257800001651049 ], [ 355517.429499998688698, 257060.695799998939037 ], [ 355512.557499997317791, 257064.666700001806021 ], [ 355504.368500001728535, 257079.376200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9637146, "LATITUDE": 18.34326631, "OBJECTID_1": 7601, "PARCEL_NO_": "105201042300", "Tax_Legal_": "LINDBERG 24F SOUTHSIDE QTR", "Name": "SMITH, WELLINGTON & RITA", "Address": "PO Box 631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35900, "Improved_V": 278900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.659010919500005, "SHAPE_Area": 530.76028766399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355345.703000001609325, 257052.216499999165535 ], [ 355320.475000001490116, 257053.860599998384714 ], [ 355321.36429999768734, 257074.500900000333786 ], [ 355347.180699996650219, 257073.023499999195337 ], [ 355345.703000001609325, 257052.216499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051400", "MAP": "G9-427-T56", "PARCEL_NAM": "22-7", "ACRE": "0.22", "LONGITUDE": -64.95158306, "LATITUDE": 18.34313241, "OBJECTID_1": 8313, "PARCEL_NO_": "105202051400", "Tax_Legal_": "22-7 ESTATE CONTANT 7BA SOUTHSIDE QTR", "Name": "PARRIS, ICILMA & OTHERS", "Address": "12724 Hollandale Dr", "City": "Houston", "State": "Texas", "Zip": 77082, "Country": "United States", "Land_Value": 66600, "Improved_V": 19700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.226809996, "SHAPE_Area": 928.73760402300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356600.308100000023842, 257043.468299999833107 ], [ 356600.27419999986887, 257043.452100001275539 ], [ 356600.501299999654293, 257046.762099999934435 ], [ 356601.215899996459484, 257057.533700000494719 ], [ 356601.582800000905991, 257074.553100001066923 ], [ 356630.905799999833107, 257074.644999999552965 ], [ 356631.054899998009205, 257057.14469999819994 ], [ 356631.14299999922514, 257046.80180000141263 ], [ 356631.045999996364117, 257043.656300000846386 ], [ 356600.308100000023842, 257043.468299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201044200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96156421000001, "LATITUDE": 18.34316548, "OBJECTID_1": 7620, "PARCEL_NO_": "105201044200", "Tax_Legal_": "LINBERG BAY 24T SOUTHSIDE QUARTER", "Name": "CREQUE, ROAN", "Address": "PO Box 304116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.76221781700001, "SHAPE_Area": 622.99366365200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355575.450300000607967, 257037.24379999935627 ], [ 355555.102099999785423, 257038.569899998605251 ], [ 355548.031599998474121, 257065.379200000315905 ], [ 355563.26519999653101, 257075.636399999260902 ], [ 355575.450300000607967, 257037.24379999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201042400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96344533, "LATITUDE": 18.34324806, "OBJECTID_1": 7602, "PARCEL_NO_": "105201042400", "Tax_Legal_": "LINDBERG 24G SOUTHSIDE QTR", "Name": "EDWARDS, VICTOR A. & AUGUSTINE", "Address": "24G Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 150300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.891669471, "SHAPE_Area": 659.88231100899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355377.093500003218651, 257050.170699998736382 ], [ 355345.703000001609325, 257052.216499999165535 ], [ 355347.180699996650219, 257073.023499999195337 ], [ 355378.644799999892712, 257071.170000001788139 ], [ 355377.093500003218651, 257050.170699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94132054000001, "LATITUDE": 18.34320633, "OBJECTID_1": 8966, "PARCEL_NO_": "105301013100", "Tax_Legal_": "1O4 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "MELCHOIR E & I", "Address": "PO Box 10841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.329673166800006, "SHAPE_Area": 477.09128385000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357711.5675999969244, 257059.655299998819828 ], [ 357700.259400002658367, 257061.884799998253584 ], [ 357693.789099998772144, 257064.153900001198053 ], [ 357690.344499997794628, 257089.879099998623133 ], [ 357705.649999998509884, 257091.69310000166297 ], [ 357711.5675999969244, 257059.655299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96304725, "LATITUDE": 18.34322789, "OBJECTID_1": 7603, "PARCEL_NO_": "105201042500", "Tax_Legal_": "LINDBERG BAY 24W SOUTHSIDE QTR", "Name": "MILLIN, FRANKLIN G.", "Address": "PO Box 304361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7700, "Improved_V": 152000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.659529894800002, "SHAPE_Area": 484.68134320399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355414.09179999679327, 257047.759500000625849 ], [ 355393.723899997770786, 257049.086899999529123 ], [ 355392.359399996697903, 257070.437899999320507 ], [ 355402.846799999475479, 257069.890500001609325 ], [ 355410.098200000822544, 257070.583099998533726 ], [ 355415.724399998784065, 257072.740100000053644 ], [ 355415.747800000011921, 257069.996100001037121 ], [ 355414.09179999679327, 257047.759500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201044400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96322518, "LATITUDE": 18.34323038, "OBJECTID_1": 7622, "PARCEL_NO_": "105201044400", "Tax_Legal_": "LINDBERG BAY 24H SOUTHSIDE QTR", "Name": "MILLIN, FRANKLIN G.", "Address": "PO Box 304361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40400, "Improved_V": 200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.850883468700005, "SHAPE_Area": 321.36476583299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355393.723899997770786, 257049.086899999529123 ], [ 355377.093500003218651, 257050.170699998736382 ], [ 355378.644799999892712, 257071.170000001788139 ], [ 355392.359399996697903, 257070.437899999320507 ], [ 355393.723899997770786, 257049.086899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94154025, "LATITUDE": 18.34324079, "OBJECTID_1": 8967, "PARCEL_NO_": "105301013200", "Tax_Legal_": "105 EST ANNAS FANCY KRONPRINSENS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.299965822, "SHAPE_Area": 527.38810515900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357659.853900000452995, 257072.108800001442432 ], [ 357657.319799996912479, 257085.598000001162291 ], [ 357662.958599999547005, 257086.277499999850988 ], [ 357683.094899997115135, 257088.975400000810623 ], [ 357690.344499997794628, 257089.879099998623133 ], [ 357693.789099998772144, 257064.153900001198053 ], [ 357681.629699997603893, 257071.6537000015378 ], [ 357673.537799999117851, 257074.964999999850988 ], [ 357667.085500001907349, 257075.1233000010252 ], [ 357659.853900000452995, 257072.108800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201060600", "MAP": null, "PARCEL_NAM": "23A", "ACRE": null, "LONGITUDE": -64.96582754000001, "LATITUDE": 18.34322055, "OBJECTID_1": 7728, "PARCEL_NO_": "105201060600", "Tax_Legal_": "LINDBERG 23A SOUTHSIDE QTR", "Name": "MAGRAS, CLEMENT A", "Address": "BOX 3588", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 104400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.852833765100002, "SHAPE_Area": 491.21233865900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355095.538099996745586, 257065.177000001072884 ], [ 355126.314000003039837, 257063.827500000596046 ], [ 355126.438100002706051, 257049.263099998235703 ], [ 355094.999099999666214, 257048.161400001496077 ], [ 355095.538099996745586, 257065.177000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96272741, "LATITUDE": 18.34319996, "OBJECTID_1": 7604, "PARCEL_NO_": "105201042600", "Tax_Legal_": "LINDBERG 24I SOUTHSIDE QTR", "Name": "MILLIN, FRANKLIN G.", "Address": "PO Box 304361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71900, "Improved_V": 113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.329517853, "SHAPE_Area": 1014.1722444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355461.926899999380112, 257044.642099998891354 ], [ 355414.09179999679327, 257047.759500000625849 ], [ 355415.747800000011921, 257069.996100001037121 ], [ 355461.748999997973442, 257065.517400000244379 ], [ 355461.926899999380112, 257044.642099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95308428, "LATITUDE": 18.34309223, "OBJECTID_1": 8263, "PARCEL_NO_": "105202041200", "Tax_Legal_": "CONTANT 11 3A SOUTHSIDE QTR", "Name": "FORBES, CARR & RIVERS, CLIVE", "Address": "PO Box 308473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 166600, "Improved_V": 85000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.68186505700001, "SHAPE_Area": 1248.6409418200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356432.824299998581409, 257041.167899999767542 ], [ 356447.910499997437, 257068.733500000089407 ], [ 356463.223200000822544, 257069.703200001269579 ], [ 356469.657499998807907, 257071.655699998140335 ], [ 356479.28830000013113, 257077.011900000274181 ], [ 356487.347900003194809, 257077.5 ], [ 356454.72240000218153, 257026.359499998390675 ], [ 356432.824299998581409, 257041.167899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201061800", "MAP": "F9-2913-T72", "PARCEL_NAM": "23G", "ACRE": null, "LONGITUDE": -64.96551132, "LATITUDE": 18.34315443, "OBJECTID_1": 7746, "PARCEL_NO_": "105201061800", "Tax_Legal_": "23G LINDBERG BAY SOUTHSIDE QTR", "Name": "SALEM, SHARIEF", "Address": "8433 Linbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.975275599, "SHAPE_Area": 682.27646973599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355132.751900002360344, 257065.357799999415874 ], [ 355155.339500002563, 257064.276200000196695 ], [ 355154.788500003516674, 257034.296399999409914 ], [ 355135.440600000321865, 257033.715799998492002 ], [ 355133.009099997580051, 257035.173599999397993 ], [ 355132.751900002360344, 257065.357799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94187246, "LATITUDE": 18.34317947, "OBJECTID_1": 8965, "PARCEL_NO_": "105301013000", "Tax_Legal_": "1O6&132 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "VANTERPOOL, JAMES A", "Address": "PO Box 304003", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 117100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.22996299499999, "SHAPE_Area": 690.19106692399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357639.85249999910593, 257053.579999998211861 ], [ 357621.078900001943111, 257080.235199999064207 ], [ 357654.904500000178814, 257085.156100001186132 ], [ 357657.319799996912479, 257085.598000001162291 ], [ 357659.853900000452995, 257072.108800001442432 ], [ 357639.85249999910593, 257053.579999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201069100", "MAP": "F9-2913-T72", "PARCEL_NAM": "23GA", "ACRE": null, "LONGITUDE": -64.96529299, "LATITUDE": 18.34314249, "OBJECTID_1": 7816, "PARCEL_NO_": "105201069100", "Tax_Legal_": "23GA LINDBERG BAY SOUTHSIDE QUARTER", "Name": "LAWANCE, AUGUSTINE GINETTE & MARVA GUMBS-PICOU (TRUSTEES)", "Address": "P.O. BOX 3235", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18200, "Improved_V": 164500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.09219490300001, "SHAPE_Area": 717.08409331899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355177.927000001072884, 257063.194499999284744 ], [ 355179.798600003123283, 257032.812300000339746 ], [ 355167.696699999272823, 257033.557599999010563 ], [ 355154.788500003516674, 257034.296399999409914 ], [ 355155.339500002563, 257064.276200000196695 ], [ 355166.633199997246265, 257063.735300000756979 ], [ 355177.927000001072884, 257063.194499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201070700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95808391, "LATITUDE": 18.343203, "OBJECTID_1": 7830, "PARCEL_NO_": "105201070700", "Tax_Legal_": "CONTANT 220 7A SOUTHSIDE", "Name": "ROGERS, RENEE T. (LIFE ESTATE)", "Address": "PO BOX 303743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 61800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.398688054, "SHAPE_Area": 611.46906985800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355930.4341000020504, 257043.811099998652935 ], [ 355905.228000000119209, 257068.302700001746416 ], [ 355932.624700002372265, 257070.637899998575449 ], [ 355948.750900000333786, 257070.769799999892712 ], [ 355949.575199998915195, 257068.665699999779463 ], [ 355930.4341000020504, 257043.811099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051500", "MAP": "G9-424-T56", "PARCEL_NAM": "22-8", "ACRE": "0.22", "LONGITUDE": -64.95194055, "LATITUDE": 18.34314002, "OBJECTID_1": 8314, "PARCEL_NO_": "105202051500", "Tax_Legal_": "CONTANT 22-8 7BA SOUTHSIDE QTR", "Name": "BLYDEN, IDA L., DALTON A. & PEARL A.", "Address": "PO Box 8346", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 281600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.10283792499999, "SHAPE_Area": 1015.93825106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356594.877400003373623, 257044.339899998158216 ], [ 356582.433200001716614, 257044.579300001263618 ], [ 356560.965800002217293, 257044.168499998748302 ], [ 356561.045000001788139, 257046.445300001651049 ], [ 356562.031599998474121, 257074.799800001084805 ], [ 356595.42790000140667, 257074.373799998313189 ], [ 356595.544799998402596, 257060.6537000015378 ], [ 356594.763700000941753, 257057.69200000166893 ], [ 356594.869999997317791, 257045.209699999541044 ], [ 356594.877400003373623, 257044.339899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201063100", "MAP": "F9-2907-T71", "PARCEL_NAM": "23G1-A", "ACRE": null, "LONGITUDE": -64.96510432, "LATITUDE": 18.34313611, "OBJECTID_1": 7759, "PARCEL_NO_": "105201063100", "Tax_Legal_": "LINDBERG BAY 23G-1A S S QTR", "Name": "FRANCIS, FRANKLIN G.", "Address": "P.O. BOX 4044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12100, "Improved_V": 108300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.358786417399998, "SHAPE_Area": 491.13213940200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355194.866700001060963, 257062.488699998706579 ], [ 355195.127499997615814, 257031.88230000063777 ], [ 355179.798600003123283, 257032.812300000339746 ], [ 355177.927000001072884, 257063.194499999284744 ], [ 355194.866700001060963, 257062.488699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201043900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96225599, "LATITUDE": 18.34316433, "OBJECTID_1": 7617, "PARCEL_NO_": "105201043900", "Tax_Legal_": "LINDBERG BAY 24V SOUTHSIDE QTR", "Name": "SANDIFORD, PENELOPE", "Address": "BOX 3841", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23400, "Improved_V": 86300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.52569672300001, "SHAPE_Area": 1101.874722 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355513.05969999730587, 257041.309799998998642 ], [ 355461.926899999380112, 257044.642099998891354 ], [ 355461.748999997973442, 257065.517400000244379 ], [ 355506.924099996685982, 257063.353999998420477 ], [ 355510.192500002682209, 257058.314500000327826 ], [ 355517.481600001454353, 257054.574499998241663 ], [ 355513.05969999730587, 257041.309799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201063200", "MAP": "F9-2907-T71", "PARCEL_NAM": "23G-1", "ACRE": null, "LONGITUDE": -64.96490266000001, "LATITUDE": 18.34311633, "OBJECTID_1": 7760, "PARCEL_NO_": "105201063200", "Tax_Legal_": "LINDBERG BAY 23G-1 SOUTHSIDE QTR", "Name": "VIRGINIA NAZARIO TRUST", "Address": "PO BOX 7972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 178400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.30617947, "SHAPE_Area": 829.59062215999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355219.873199999332428, 257061.42680000141263 ], [ 355222.572700001299381, 257028.518300000578165 ], [ 355195.127499997615814, 257031.88230000063777 ], [ 355194.866700001060963, 257062.488699998706579 ], [ 355219.873199999332428, 257061.42680000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201070800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95827181, "LATITUDE": 18.34310401, "OBJECTID_1": 7831, "PARCEL_NO_": "105201070800", "Tax_Legal_": "CONTANT 219 7A SOUTHSIDE QTR", "Name": "ARCHER, REGINALD & EMMANUELINE", "Address": "Apt 7F", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43400, "Improved_V": 88800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.701962597, "SHAPE_Area": 804.91001978400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355920.061700001358986, 257030.849500000476837 ], [ 355890.883400000631809, 257048.342500001192093 ], [ 355894.753200002014637, 257067.372600000351667 ], [ 355905.228000000119209, 257068.302700001746416 ], [ 355930.4341000020504, 257043.811099998652935 ], [ 355920.061700001358986, 257030.849500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201044100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96180034, "LATITUDE": 18.34311814, "OBJECTID_1": 7619, "PARCEL_NO_": "105201044100", "Tax_Legal_": "24P LINDBERG BAY SOUTHSIDE QUARTER", "Name": "PENCHOEN CREQUE, ORNETTE", "Address": "PO Box 10915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16900, "Improved_V": 175700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.81343638600001, "SHAPE_Area": 648.35423644699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355555.102099999785423, 257038.569899998605251 ], [ 355513.05969999730587, 257041.309799998998642 ], [ 355517.481600001454353, 257054.574499998241663 ], [ 355527.972699999809265, 257053.604899998754263 ], [ 355531.995300002396107, 257054.693300001323223 ], [ 355548.031599998474121, 257065.379200000315905 ], [ 355555.102099999785423, 257038.569899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201071000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95855726000001, "LATITUDE": 18.34310551, "OBJECTID_1": 7833, "PARCEL_NO_": "105201071000", "Tax_Legal_": "CONTANT 218 7A CONTANT", "Name": "WALLACE, E & MARTIN, I", "Address": "PO Box 11184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57800, "Improved_V": 30600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.85821004500001, "SHAPE_Area": 821.33437701399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355890.883400000631809, 257048.342500001192093 ], [ 355878.990099996328354, 257024.602699998766184 ], [ 355875.730700001120567, 257028.586800001561642 ], [ 355864.327299997210503, 257042.003400001674891 ], [ 355869.762900002300739, 257066.534800000488758 ], [ 355894.753200002014637, 257067.372600000351667 ], [ 355890.883400000631809, 257048.342500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201064000", "MAP": "B9-44-T59", "PARCEL_NAM": "23C", "ACRE": null, "LONGITUDE": -64.96458732000001, "LATITUDE": 18.34306367, "OBJECTID_1": 7768, "PARCEL_NO_": "105201064000", "Tax_Legal_": "LINDBERG BAY 23C SOUTHSIDE QTR", "Name": "FUERTES, MIGUEL", "Address": "PO Box 833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 114300, "Improved_V": 105200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.75473522799999, "SHAPE_Area": 1568.8876791600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355263.441100001335144, 257058.616999998688698 ], [ 355253.379799999296665, 257009.138799998909235 ], [ 355250.960799999535084, 257009.118999999016523 ], [ 355241.223999999463558, 257016.216499999165535 ], [ 355236.332099996507168, 257022.509199999272823 ], [ 355232.277199998497963, 257025.220300000160933 ], [ 355222.572700001299381, 257028.518300000578165 ], [ 355219.873199999332428, 257061.42680000141263 ], [ 355248.913099996745586, 257060.186900001019239 ], [ 355263.441100001335144, 257058.616999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95329969, "LATITUDE": 18.34311627, "OBJECTID_1": 8262, "PARCEL_NO_": "105202041100", "Tax_Legal_": "CONTANT 11 3B 7BA SOUTHSIDE QTR", "Name": "PEARLIE WHITE TRUST", "Address": "PO Box 7313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.550243164799994, "SHAPE_Area": 312.16034997200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356432.824299998581409, 257041.167899999767542 ], [ 356420.659500002861023, 257049.300999999046326 ], [ 356442.2483000010252, 257070.798099998384714 ], [ 356447.910499997437, 257068.733500000089407 ], [ 356432.824299998581409, 257041.167899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9420667, "LATITUDE": 18.34308454, "OBJECTID_1": 8964, "PARCEL_NO_": "105301012900", "Tax_Legal_": "ANNAS FANCY 107 CROWN PRINCE QUARTER", "Name": "BOUGH, RAQUEL C, TRUSTEE", "Address": "PO Box 302997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 74100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.153406555, "SHAPE_Area": 755.80510552600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357639.85249999910593, 257053.579999998211861 ], [ 357631.884700000286102, 257042.326799999922514 ], [ 357629.516099996864796, 257036.396800000220537 ], [ 357616.456900000572205, 257054.866099998354912 ], [ 357605.035400003194809, 257070.3935999982059 ], [ 357600.140000000596046, 257077.108500000089407 ], [ 357621.078900001943111, 257080.235199999064207 ], [ 357639.85249999910593, 257053.579999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201067000", "MAP": "D9-571-T66", "PARCEL_NAM": "63AB", "ACRE": ".13", "LONGITUDE": -64.96614638, "LATITUDE": 18.34313988, "OBJECTID_1": 7797, "PARCEL_NO_": "105201067000", "Tax_Legal_": "LINDBERG BAY 63AB 4A SOUTHSIDE QTR", "Name": "FRETT, ESMIE", "Address": "PO Box 241", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14200, "Improved_V": 4000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.509779690399995, "SHAPE_Area": 551.47245865399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355065.271600000560284, 257035.463500000536442 ], [ 355062.669299997389317, 257056.973799999803305 ], [ 355090.071299999952316, 257058.675700001418591 ], [ 355089.444799996912479, 257037.561200000345707 ], [ 355065.271600000560284, 257035.463500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96638076000001, "LATITUDE": 18.34312312, "OBJECTID_1": 7407, "PARCEL_NO_": "105102021900", "Tax_Legal_": "63AA LINDBERG BAY 4A SOUTHSIDE", "Name": "VIGILANTE, DEAN A. & FRANCIS, JAHTARA I.", "Address": "63AB Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 119000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.551922317800006, "SHAPE_Area": 521.94163043200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355041.904700003564358, 257033.372499998658895 ], [ 355038.492499999701977, 257055.298300001770258 ], [ 355062.669299997389317, 257056.973799999803305 ], [ 355065.271600000560284, 257035.463500000536442 ], [ 355041.904700003564358, 257033.372499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201069000", "MAP": "D9-3273-T85", "PARCEL_NAM": "23H-A", "ACRE": null, "LONGITUDE": -64.9642865, "LATITUDE": 18.34309263, "OBJECTID_1": 7815, "PARCEL_NO_": "105201069000", "Tax_Legal_": "LINDBERG BAY 23H-A S.S. QTR.", "Name": "WILLIAMS BROWN, BARBARA", "Address": "Po Box 303354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16200, "Improved_V": 104500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.35600013200001, "SHAPE_Area": 701.52824137300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355286.845799997448921, 257030.830899998545647 ], [ 355280.155699998140335, 257031.226599998772144 ], [ 355257.698499999940395, 257030.376899998635054 ], [ 355263.441100001335144, 257058.616999998688698 ], [ 355278.775399997830391, 257057.053800001740456 ], [ 355286.780100002884865, 257056.770199999213219 ], [ 355286.845799997448921, 257030.830899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94233654, "LATITUDE": 18.34311155, "OBJECTID_1": 8963, "PARCEL_NO_": "105301012800", "Tax_Legal_": "11O ANNAS FANCY CROWN PRINCE QUARTER", "Name": "NILES, L", "Address": "26 Louis Ave", "City": "Elmont", "State": "New York", "Zip": 11003, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.899173748199999, "SHAPE_Area": 497.43133570600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357604.369400002062321, 257053.922800000756979 ], [ 357585.032200001180172, 257052.075800001621246 ], [ 357580.009199999272823, 257073.777300000190735 ], [ 357600.140000000596046, 257077.108500000089407 ], [ 357605.035400003194809, 257070.3935999982059 ], [ 357604.369400002062321, 257053.922800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96661088, "LATITUDE": 18.34311098, "OBJECTID_1": 7406, "PARCEL_NO_": "105102021800", "Tax_Legal_": "63A ESTATRE LINDBERG BAY No.4 SOUTHSIDE QTR.", "Name": "BRIN, RUTH SOLANGE", "Address": "P O BOX 4373", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14100, "Improved_V": 109000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.569635235500002, "SHAPE_Area": 555.30107630999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355038.492499999701977, 257055.298300001770258 ], [ 355041.904700003564358, 257033.372499998658895 ], [ 355020.150499999523163, 257031.294599998742342 ], [ 355011.090400002896786, 257053.5962999984622 ], [ 355038.492499999701977, 257055.298300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201075500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96097945, "LATITUDE": 18.34299932, "OBJECTID_1": 7874, "PARCEL_NO_": "105201075500", "Tax_Legal_": "322 CONTANT 7A SOUTHSIDE QTR", "Name": "EDWARD, MICHAEL & MELISSA MATHURIN", "Address": "6050 Estate Lovenlund Apt 1732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8024801, "Country": "United States", "Land_Value": 52000, "Improved_V": 64200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.32750289800001, "SHAPE_Area": 1263.1108084 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355604.9121999964118, 257014.337900001555681 ], [ 355613.398699998855591, 257059.370299998670816 ], [ 355640.01240000128746, 257058.954900000244379 ], [ 355633.948499999940395, 257013.520100001245737 ], [ 355604.9121999964118, 257014.337900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201075400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96074299, "LATITUDE": 18.34299147, "OBJECTID_1": 7873, "PARCEL_NO_": "105201075400", "Tax_Legal_": "CONTANT 321 S S QTR", "Name": "GUMBS, VANCITO & CLARICE", "Address": "PO Box 536", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49200, "Improved_V": 70400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.98278430600001, "SHAPE_Area": 1012.56232575 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355660.981899999082088, 257058.493200000375509 ], [ 355657.338699996471405, 257012.867199998348951 ], [ 355633.948499999940395, 257013.520100001245737 ], [ 355640.01240000128746, 257058.954900000244379 ], [ 355660.981899999082088, 257058.493200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201075300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96052729, "LATITUDE": 18.34298383, "OBJECTID_1": 7872, "PARCEL_NO_": "105201075300", "Tax_Legal_": "CONTANT 320 7A S S QTR", "Name": "CHARLES, LAUREL W", "Address": "PO Box 308725", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56900, "Improved_V": 107400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.375451621, "SHAPE_Area": 1070.43362168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355682.757700003683567, 257058.038100000470877 ], [ 355682.341600000858307, 257012.227400001138449 ], [ 355657.338699996471405, 257012.867199998348951 ], [ 355660.981899999082088, 257058.493200000375509 ], [ 355682.757700003683567, 257058.038100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201075200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96030007, "LATITUDE": 18.34298355, "OBJECTID_1": 7871, "PARCEL_NO_": "105201075200", "Tax_Legal_": "CONTANT 319 7A S S QTR", "Name": "TESTAMARK, GLANDFIELD O", "Address": "PO Box 6191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52100, "Improved_V": 81100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.84968077400001, "SHAPE_Area": 1127.2843152 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355707.758799999952316, 257057.609499998390675 ], [ 355706.536399997770786, 257011.792199999094009 ], [ 355682.341600000858307, 257012.227400001138449 ], [ 355682.757700003683567, 257058.038100000470877 ], [ 355707.758799999952316, 257057.609499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201075100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95996729, "LATITUDE": 18.3429771, "OBJECTID_1": 7870, "PARCEL_NO_": "105201075100", "Tax_Legal_": "CONTANT 318 7A S S QTR", "Name": "SMITH-DAWKINS, LAURA L", "Address": "PO Box 10638", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56900, "Improved_V": 67400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.01009, "SHAPE_Area": 2113.5500107100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355754.528499998152256, 257057.570099998265505 ], [ 355750.896200001239777, 257010.677600000053644 ], [ 355706.536399997770786, 257011.792199999094009 ], [ 355707.758799999952316, 257057.609499998390675 ], [ 355754.528499998152256, 257057.570099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201044000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95955343, "LATITUDE": 18.34295932, "OBJECTID_1": 7618, "PARCEL_NO_": "105201044000", "Tax_Legal_": "LINDBERG BAY 24Q SOUTHSIDE QUARTER", "Name": "CREQUE MOOLENAAR, LORRAINE G.", "Address": "PO Box 303600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49000, "Improved_V": 207900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.18910602299999, "SHAPE_Area": 1983.68126846 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355797.313400000333786, 257052.00959999859333 ], [ 355792.853200003504753, 257007.643500000238419 ], [ 355771.865699999034405, 257010.215900000184774 ], [ 355750.896200001239777, 257010.677600000053644 ], [ 355754.528499998152256, 257057.570099998265505 ], [ 355774.688100002706051, 257057.524000000208616 ], [ 355797.313400000333786, 257052.00959999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051200", "MAP": "G9-413-T56", "PARCEL_NAM": "22-24", "ACRE": "0.34", "LONGITUDE": -64.95265309, "LATITUDE": 18.34292378, "OBJECTID_1": 8311, "PARCEL_NO_": "105202051200", "Tax_Legal_": "CONTANT 22 24 7BA SOUTHSIDE QTR", "Name": "TATEM, SYDNEY", "Address": "3070 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98400, "Improved_V": 93800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.185362231, "SHAPE_Area": 1294.22396933 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356516.869599997997284, 257019.690900001674891 ], [ 356515.451899997889996, 257011.637800000607967 ], [ 356505.987999998033047, 257011.90260000154376 ], [ 356487.242600001394749, 257012.426899999380112 ], [ 356487.367299996316433, 257014.182399999350309 ], [ 356488.551600001752377, 257030.858199998736382 ], [ 356488.405900001525879, 257047.955600000917912 ], [ 356505.219800002872944, 257062.025400001555681 ], [ 356509.242399998009205, 257063.113800000399351 ], [ 356513.286499999463558, 257061.669199999421835 ], [ 356515.736000001430511, 257058.100699998438358 ], [ 356516.576499998569489, 257054.096799999475479 ], [ 356516.808499999344349, 257026.867600001394749 ], [ 356516.869599997997284, 257019.690900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301035100", "MAP": "D9-6730-T000", "PARCEL_NAM": "178-45", "ACRE": "0.11", "LONGITUDE": -64.94274726, "LATITUDE": 18.34303819, "OBJECTID_1": 9087, "PARCEL_NO_": "105301035100", "Tax_Legal_": "178-45 ALTONA&WELGUNST KRONPRINDSENS QTR.", "Name": "MAXIMAY, YVETTE", "Address": "3566 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25700, "Improved_V": 44000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.914839205000007, "SHAPE_Area": 524.23933262100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357541.58669999986887, 257040.532299999147654 ], [ 357534.1554000005126, 257060.947500001639128 ], [ 357560.693599998950958, 257069.397399999201298 ], [ 357566.461900003254414, 257054.879099998623133 ], [ 357541.58669999986887, 257040.532299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94145446, "LATITUDE": 18.34293754, "OBJECTID_1": 9008, "PARCEL_NO_": "105301022400", "Tax_Legal_": "90 ANNAS FANCY CROWN PRINCE QTR", "Name": "MAGRAS, JEAN & LYNETTE", "Address": "6810 Adrian", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.362068775, "SHAPE_Area": 809.59270032799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357697.885399997234344, 257056.588100001215935 ], [ 357700.554300002753735, 257027.267900001257658 ], [ 357683.645099997520447, 257024.385299999266863 ], [ 357674.518500000238419, 257054.497000001370907 ], [ 357672.067199997603893, 257058.276599999517202 ], [ 357670.361100003123283, 257069.239500001072884 ], [ 357676.012500002980232, 257068.441399998962879 ], [ 357686.555699996650219, 257061.350499998778105 ], [ 357697.885399997234344, 257056.588100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051600", "MAP": "F9-36-T56", "PARCEL_NAM": "22-15", "ACRE": "0.23", "LONGITUDE": -64.95232549000001, "LATITUDE": 18.34285416, "OBJECTID_1": 8315, "PARCEL_NO_": "105202051600", "Tax_Legal_": "22-15 CONTANT 7BA SOUTHSIDE QTR", "Name": "BURGESS, RUTHMARIE", "Address": "P.O. BOX 3571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72700, "Improved_V": 54500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.849706419, "SHAPE_Area": 953.02994705200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356553.180699996650219, 257016.821699999272823 ], [ 356552.980400003492832, 257012.096700001507998 ], [ 356521.236599996685982, 257012.190600000321865 ], [ 356522.501199997961521, 257021.214699998497963 ], [ 356522.32150000333786, 257042.312199998646975 ], [ 356545.538000002503395, 257043.239399999380112 ], [ 356553.700000002980232, 257043.565400000661612 ], [ 356553.601700000464916, 257041.815699998289347 ], [ 356553.05120000243187, 257032.019400000572205 ], [ 356553.150100000202656, 257020.410100001841784 ], [ 356553.180699996650219, 257016.821699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94521862000001, "LATITUDE": 18.34303046, "OBJECTID_1": 9139, "PARCEL_NO_": "105301050100", "Tax_Legal_": "141 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "DEJONGH, CECILE", "Address": "PO Box 57", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16400, "Improved_V": 37400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.795029478399996, "SHAPE_Area": 321.26643397499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357282.724399998784065, 257042.635499998927116 ], [ 357280.127499997615814, 257063.512499999254942 ], [ 357294.633900001645088, 257064.475600000470877 ], [ 357297.203900001943111, 257046.764800000935793 ], [ 357297.234399996697903, 257043.176399998366833 ], [ 357289.183899998664856, 257041.63289999961853 ], [ 357282.724399998784065, 257042.635499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201074900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95922227, "LATITUDE": 18.34290709, "OBJECTID_1": 7869, "PARCEL_NO_": "105201074900", "Tax_Legal_": "CONTANT 267 7A S S QTR", "Name": "CARTY, DALTON", "Address": "BOX 4685", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40500, "Improved_V": 50300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.25400819199999, "SHAPE_Area": 1207.96094535 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355825.595499999821186, 257045.063900001347065 ], [ 355820.296599999070168, 257004.490600001066923 ], [ 355792.853200003504753, 257007.643500000238419 ], [ 355797.313400000333786, 257052.00959999859333 ], [ 355825.595499999821186, 257045.063900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301050200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9453576, "LATITUDE": 18.34302573, "OBJECTID_1": 9140, "PARCEL_NO_": "105301050200", "Tax_Legal_": "140 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "REY, CAMPBELL & AMELIA", "Address": "3140 Estate Mahogany", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025737, "Country": "United States", "Land_Value": 17900, "Improved_V": 50900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.602518871100003, "SHAPE_Area": 308.92696186299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357268.221600003540516, 257041.250199999660254 ], [ 357265.620999999344349, 257062.549400001764297 ], [ 357280.127499997615814, 257063.512499999254942 ], [ 357282.724399998784065, 257042.635499998927116 ], [ 357268.221600003540516, 257041.250199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105202079900", "MAP": "D9-1990-T82", "PARCEL_NAM": "23-4", "ACRE": ".7", "LONGITUDE": -64.95163993, "LATITUDE": 18.34165693, "OBJECTID_1": 8442, "PARCEL_NO_": "105202079900", "Tax_Legal_": "CONTANT 23-4 7BA SOUTH SIDE QTR.", "Name": "SUNSET REALTY INC", "Address": "BOX 2463", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 227800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 671.76610305400004, "SHAPE_Area": 1951.42666005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356615.733499996364117, 256867.879399999976158 ], [ 356620.798000000417233, 256841.323100000619888 ], [ 356621.647399999201298, 256836.263799998909235 ], [ 356624.953599996864796, 256826.791700001806021 ], [ 356632.368699997663498, 256808.276099998503923 ], [ 356638.221400000154972, 256783.837200000882149 ], [ 356643.991499997675419, 256769.107799999415874 ], [ 356651.402999997138977, 256751.014499999582767 ], [ 356654.707299999892712, 256741.753400001674891 ], [ 356656.341499999165535, 256739.233600001782179 ], [ 356650.713500000536442, 256737.28770000115037 ], [ 356649.082900002598763, 256739.385299999266863 ], [ 356639.187799997627735, 256765.057700000703335 ], [ 356631.774499997496605, 256783.362199999392033 ], [ 356629.240500003099442, 256796.851500000804663 ], [ 356625.088500000536442, 256810.960700001567602 ], [ 356616.024800002574921, 256833.68470000103116 ], [ 356613.451200000941753, 256851.817699998617172 ], [ 356609.266800001263618, 256869.726399999111891 ], [ 356607.582299999892712, 256878.156300000846386 ], [ 356605.076999999582767, 256888.268300000578165 ], [ 356600.095299996435642, 256905.114999998360872 ], [ 356597.615199998021126, 256912.271899998188019 ], [ 356593.499200001358986, 256922.159600000828505 ], [ 356592.667700000107288, 256925.1081000007689 ], [ 356590.839299999177456, 256950.424400001764297 ], [ 356588.306999996304512, 256963.702500000596046 ], [ 356587.439599998295307, 256970.872600000351667 ], [ 356588.157799996435642, 256981.222100000828505 ], [ 356589.637299999594688, 256996.855099998414516 ], [ 356591.098899997770786, 257014.598900001496077 ], [ 356593.373999997973442, 257031.504999998956919 ], [ 356594.89130000025034, 257042.705400001257658 ], [ 356594.763700000941753, 257057.69200000166893 ], [ 356601.215899996459484, 257057.533700000494719 ], [ 356600.501299999654293, 257046.762099999934435 ], [ 356599.066699996590614, 257025.852099999785423 ], [ 356596.026699997484684, 257004.084600001573563 ], [ 356593.742600001394749, 256988.233899999409914 ], [ 356593.893700003623962, 256970.503299999982119 ], [ 356597.304099999368191, 256948.788499999791384 ], [ 356598.1824000030756, 256940.352000001817942 ], [ 356598.268700003623962, 256930.220199998468161 ], [ 356599.951399996876717, 256922.001299999654293 ], [ 356603.239600002765656, 256914.640000000596046 ], [ 356605.737700000405312, 256905.372299998998642 ], [ 356609.900499999523163, 256889.996500000357628 ], [ 356611.536499999463558, 256887.265700001269579 ], [ 356615.733499996364117, 256867.879399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94549309, "LATITUDE": 18.34301515, "OBJECTID_1": 9141, "PARCEL_NO_": "105301050300", "Tax_Legal_": "139 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "HOWELL, DENNIS", "Address": "P O BOX 98 KINGSHILL", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 16400, "Improved_V": 30400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.991573242499996, "SHAPE_Area": 308.75674514899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357253.720499999821186, 257039.653900001198053 ], [ 357251.919100001454353, 257061.804000001400709 ], [ 357261.591300003230572, 257062.305300001055002 ], [ 357265.620999999344349, 257062.549400001764297 ], [ 357268.221600003540516, 257041.250199999660254 ], [ 357253.720499999821186, 257039.653900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94566304, "LATITUDE": 18.34300592, "OBJECTID_1": 9142, "PARCEL_NO_": "105301050400", "Tax_Legal_": "138 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "MAGRAS, HENRY L. & ANGELINA M", "Address": "PO Box 302053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38600, "Improved_V": 177800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.030395824699994, "SHAPE_Area": 490.026174191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357253.720499999821186, 257039.653900001198053 ], [ 357248.88629999756813, 257039.192099999636412 ], [ 357244.077200002968311, 257035.775299999862909 ], [ 357225.411499999463558, 257049.765799999237061 ], [ 357227.009700000286102, 257051.467599999159575 ], [ 357234.1891999989748, 257060.603399999439716 ], [ 357242.248700000345707, 257061.091499999165535 ], [ 357251.919100001454353, 257061.804000001400709 ], [ 357253.720499999821186, 257039.653900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94170831, "LATITUDE": 18.34288482, "OBJECTID_1": 9005, "PARCEL_NO_": "105301022100", "Tax_Legal_": "89 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "WILSON, ERICA & ELDRA", "Address": "PO Box 307221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36100, "Improved_V": 108000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.38218821300001, "SHAPE_Area": 958.43733195300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357678.044100001454353, 257019.273200001567602 ], [ 357648.151199996471405, 257025.994600001722574 ], [ 357643.153300002217293, 257044.74100000038743 ], [ 357643.126299999654293, 257047.907200001180172 ], [ 357661.525799997150898, 257065.156399998813868 ], [ 357663.951999999582767, 257064.331900000572205 ], [ 357666.442800000309944, 257055.908500000834465 ], [ 357670.540899999439716, 257048.131599999964237 ], [ 357678.044100001454353, 257019.273200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201070900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95837078, "LATITUDE": 18.34293277, "OBJECTID_1": 7832, "PARCEL_NO_": "105201070900", "Tax_Legal_": "CONTANT 217 7A SOUTHSIDE QTR", "Name": "PHILLIPS, CARMEN & RANDOLPH", "Address": "8326 Upper Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55000, "Improved_V": 41700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.81031746799999, "SHAPE_Area": 688.48896467600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355909.691200003027916, 257017.67680000141263 ], [ 355878.990099996328354, 257024.602699998766184 ], [ 355890.883400000631809, 257048.342500001192093 ], [ 355920.061700001358986, 257030.849500000476837 ], [ 355909.691200003027916, 257017.67680000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201044600", "MAP": "A3-12-T33", "PARCEL_NAM": "REM 22", "ACRE": "4.26 (d.)", "LONGITUDE": -64.96247735, "LATITUDE": 18.3428325, "OBJECTID_1": 7624, "PARCEL_NO_": "105201044600", "Tax_Legal_": "20 & 22 LINDBERG BAY SOUTHSIDE QUARTER", "Name": "ABRAHAM, GLADYS A. & OTHERS", "Address": "11371 SW 223 St", "City": "MIAMI", "State": "Florida", "Zip": 33170, "Country": "United States", "Land_Value": 340300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 686.84434504299998, "SHAPE_Area": 14630.1235278 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355319.083099998533726, 257020.372000001370907 ], [ 355343.962200000882149, 257018.276700001209974 ], [ 355345.703000001609325, 257052.216499999165535 ], [ 355377.093500003218651, 257050.170699998736382 ], [ 355393.723899997770786, 257049.086899999529123 ], [ 355414.09179999679327, 257047.759500000625849 ], [ 355461.926899999380112, 257044.642099998891354 ], [ 355513.05969999730587, 257041.309799998998642 ], [ 355555.102099999785423, 257038.569899998605251 ], [ 355575.450300000607967, 257037.24379999935627 ], [ 355575.694399997591972, 257036.474700000137091 ], [ 355597.472000002861023, 257035.808600001037121 ], [ 355604.9121999964118, 257014.337900001555681 ], [ 355608.211199998855591, 257005.710099998861551 ], [ 355614.823600001633167, 256986.765799999237061 ], [ 355350.277500003576279, 256993.466499999165535 ], [ 355318.016000002622604, 256994.258000001311302 ], [ 355319.083099998533726, 257020.372000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301035000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94294249, "LATITUDE": 18.34296096, "OBJECTID_1": 9086, "PARCEL_NO_": "105301035000", "Tax_Legal_": "ALTONA & WELGUNST 178-44 KRONPRINDSENS QTR", "Name": "FURET, ALBERTO M.,SR. & VIVIAN H. (Trustees)", "Address": "PO Box 25124", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 8241124, "Country": "United States", "Land_Value": 26400, "Improved_V": 40000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.0389572423, "SHAPE_Area": 410.36943838799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357541.58669999986887, 257040.532299999147654 ], [ 357525.527000002563, 257032.590399999171495 ], [ 357517.264200001955032, 257055.954100001603365 ], [ 357521.286799997091293, 257057.042500000447035 ], [ 357528.525600001215935, 257059.212699998170137 ], [ 357534.1554000005126, 257060.947500001639128 ], [ 357541.58669999986887, 257040.532299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201075600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95899031, "LATITUDE": 18.34285552, "OBJECTID_1": 7875, "PARCEL_NO_": "105201075600", "Tax_Legal_": "CONTANT 315 7A S S QTR", "Name": "PETERSEN, VERNA", "Address": "PO Box 23", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34700, "Improved_V": 91300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.89398416100001, "SHAPE_Area": 844.907218532 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355845.002700001001358, 257038.678899999707937 ], [ 355843.704800002276897, 257001.72690000012517 ], [ 355820.296599999070168, 257004.490600001066923 ], [ 355825.595499999821186, 257045.063900001347065 ], [ 355845.002700001001358, 257038.678899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94494341, "LATITUDE": 18.3429196, "OBJECTID_1": 9093, "PARCEL_NO_": "105301040200", "Tax_Legal_": "ALTONA & WELGUNST 198 KRONPRINDSENS QUARTER", "Name": "SCHULTERBRANDT, FRANKLIN", "Address": "PO Box 302501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.912198256, "SHAPE_Area": 345.09565891699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357328.027199998497963, 257025.485500000417233 ], [ 357317.557700000703335, 257023.922200001776218 ], [ 357319.890299998223782, 257034.073699999600649 ], [ 357318.164399996399879, 257047.358500000089407 ], [ 357297.234399996697903, 257043.176399998366833 ], [ 357297.203900001943111, 257046.764800000935793 ], [ 357320.505999997258186, 257056.454700000584126 ], [ 357322.204899996519089, 257046.336100000888109 ], [ 357329.521099999547005, 257039.429900001734495 ], [ 357328.027199998497963, 257025.485500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301034900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94309605, "LATITUDE": 18.34290262, "OBJECTID_1": 9085, "PARCEL_NO_": "105301034900", "Tax_Legal_": "ALTONA & WELGUNST 178-43 KRONPRINDSENS QTR", "Name": "CHRISTIAN, ELVIRA", "Address": "5311 Whippoorwill St", "City": "Durham", "State": "North Carolina", "Zip": 27704, "Country": "United States", "Land_Value": 30200, "Improved_V": 29900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.486988307600001, "SHAPE_Area": 431.98633376399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357505.423100002110004, 257026.092999998480082 ], [ 357504.393799997866154, 257052.260200001299381 ], [ 357517.264200001955032, 257055.954100001603365 ], [ 357525.527000002563, 257032.590399999171495 ], [ 357505.423100002110004, 257026.092999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301025400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94125493, "LATITUDE": 18.3428928, "OBJECTID_1": 9035, "PARCEL_NO_": "105301025400", "Tax_Legal_": "91 ESTATE ANNA'S FANCY CROWN PRINCE QUARTER", "Name": "MAGRAS, LAKISHA & LEWIS", "Address": "811 Walnut Creek Circle", "City": "Pendergrass", "State": "Georgia", "Zip": 305670000, "Country": "United States", "Land_Value": 27400, "Improved_V": 87800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.7959078369, "SHAPE_Area": 454.45450123000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357719.072499997913837, 257030.585900001227856 ], [ 357700.554300002753735, 257027.267900001257658 ], [ 357697.885399997234344, 257056.588100001215935 ], [ 357706.781800001859665, 257053.494500000029802 ], [ 357715.660300001502037, 257052.511700000613928 ], [ 357719.072499997913837, 257030.585900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202070200", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3A", "ACRE": "0.14", "LONGITUDE": -64.95159214, "LATITUDE": 18.34290768, "OBJECTID_1": 8409, "PARCEL_NO_": "105202070200", "Tax_Legal_": "CONTANT 23-3A 7BA S S QTR.", "Name": "THOMAS, WENWORTH I. & JEPHINE", "Address": "PO Box 908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 45700, "Improved_V": 163800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.152873976, "SHAPE_Area": 588.40655053700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356630.511100001633167, 257026.320599999278784 ], [ 356630.455600000917912, 257024.351199999451637 ], [ 356598.94200000166893, 257024.95890000090003 ], [ 356599.066699996590614, 257025.852099999785423 ], [ 356600.27419999986887, 257043.452100001275539 ], [ 356600.308100000023842, 257043.468299999833107 ], [ 356631.045999996364117, 257043.656300000846386 ], [ 356630.511100001633167, 257026.320599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94208057, "LATITUDE": 18.34292755, "OBJECTID_1": 8970, "PARCEL_NO_": "105301013500", "Tax_Legal_": "ANNAS FANCY 109A CROWN PRINCE QTR", "Name": "BOUGH, RAQUEL C", "Address": "PO Box 302997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.884713711800003, "SHAPE_Area": 131.23135590499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357627.136699996888638, 257031.733199998736382 ], [ 357610.009900003671646, 257054.391199998557568 ], [ 357616.456900000572205, 257054.866099998354912 ], [ 357629.516099996864796, 257036.396800000220537 ], [ 357628.734999999403954, 257033.435100000351667 ], [ 357627.136699996888638, 257031.733199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202041400", "MAP": null, "PARCEL_NAM": "19", "ACRE": null, "LONGITUDE": -64.95386113000001, "LATITUDE": 18.34259212, "OBJECTID_1": 8265, "PARCEL_NO_": "105202041400", "Tax_Legal_": "CONTANT 19 7BA SOUTHSIDE QTR", "Name": "AKIAS PROPERTY LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 245000, "Improved_V": 153600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.570235782, "SHAPE_Area": 5653.7762112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356444.04900000244379, 256954.078099999576807 ], [ 356312.231700003147125, 256998.595499999821186 ], [ 356303.171599999070168, 257020.897199999541044 ], [ 356289.270099997520447, 257043.581500001251698 ], [ 356452.601999998092651, 256991.300599999725819 ], [ 356444.027500003576279, 256956.611099999397993 ], [ 356444.04900000244379, 256954.078099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94223948, "LATITUDE": 18.3429133, "OBJECTID_1": 8968, "PARCEL_NO_": "105301013300", "Tax_Legal_": "ANNAS FANCY 109 CROWN PRINCE QUARTER", "Name": "MURRAY, GEORGE & MARIETTE", "Address": "399 Grand Ave", "City": "Brooklyn", "State": "New York", "Zip": 11238, "Country": "United States", "Land_Value": 34800, "Improved_V": 112800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.31081714699999, "SHAPE_Area": 624.66155425900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357627.136699996888638, 257031.733199998736382 ], [ 357589.211300000548363, 257034.800299998372793 ], [ 357585.032200001180172, 257052.075800001621246 ], [ 357604.369400002062321, 257053.922800000756979 ], [ 357610.009900003671646, 257054.391199998557568 ], [ 357627.136699996888638, 257031.733199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201075700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95875838000001, "LATITUDE": 18.34282318, "OBJECTID_1": 7876, "PARCEL_NO_": "105201075700", "Tax_Legal_": "316 CONTANT 7A SOUTHSIDE QTR", "Name": "ST THOMAS ASSEMBLY OF GOD INC", "Address": "PO Box 10770", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.271219974, "SHAPE_Area": 931.2900582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355845.002700001001358, 257038.678899999707937 ], [ 355875.730700001120567, 257028.586800001561642 ], [ 355878.990099996328354, 257024.602699998766184 ], [ 355867.842000000178814, 257008.046100001782179 ], [ 355862.269799999892712, 256999.556800000369549 ], [ 355843.704800002276897, 257001.72690000012517 ], [ 355845.002700001001358, 257038.678899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202070100", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5A", "ACRE": "0.14", "LONGITUDE": -64.95197954, "LATITUDE": 18.34293768, "OBJECTID_1": 8408, "PARCEL_NO_": "105202070100", "Tax_Legal_": "CONTANT 23-5A 7BA S S QTR.", "Name": "BERGIN, JACQUELYN", "Address": "PO Box 305784", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72200, "Improved_V": 12600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.973225203, "SHAPE_Area": 591.15070107999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356593.373999997973442, 257031.504999998956919 ], [ 356593.020499996840954, 257028.878299999982119 ], [ 356553.0625, 257030.689100001007318 ], [ 356553.05120000243187, 257032.019400000572205 ], [ 356553.601700000464916, 257041.815699998289347 ], [ 356553.700000002980232, 257043.565400000661612 ], [ 356560.954899996519089, 257043.855200000107288 ], [ 356560.965800002217293, 257044.168499998748302 ], [ 356582.433200001716614, 257044.579300001263618 ], [ 356594.877400003373623, 257044.339899998158216 ], [ 356594.89130000025034, 257042.705400001257658 ], [ 356593.373999997973442, 257031.504999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94330084000001, "LATITUDE": 18.34290792, "OBJECTID_1": 9084, "PARCEL_NO_": "105301034800", "Tax_Legal_": "ALTONA & WELGUNST 178-42 KRONPRINDSENS QTR", "Name": "BROWN, BERYL & ALLAN", "Address": "PO Box 393", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29900, "Improved_V": 59500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.90716981, "SHAPE_Area": 565.01476699499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357466.486100003123283, 257046.776299998164177 ], [ 357489.891000002622604, 257050.874899998307228 ], [ 357504.393799997866154, 257052.260200001299381 ], [ 357505.423100002110004, 257026.092999998480082 ], [ 357499.768100000917912, 257027.313299998641014 ], [ 357487.621299996972084, 257033.33559999987483 ], [ 357466.486100003123283, 257046.776299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301050500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94579472, "LATITUDE": 18.34287315, "OBJECTID_1": 9143, "PARCEL_NO_": "105301050500", "Tax_Legal_": "137 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "La Motta, Mark, David & Lucy Krigger", "Address": "PO Box 600175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 38500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.879396720399996, "SHAPE_Area": 463.81584694100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357240.122900001704693, 257026.665899999439716 ], [ 357216.754199996590614, 257024.785900000482798 ], [ 357215.037299998104572, 257037.0152000002563 ], [ 357225.411499999463558, 257049.765799999237061 ], [ 357244.077200002968311, 257035.775299999862909 ], [ 357240.884300000965595, 257031.949499998241663 ], [ 357240.122900001704693, 257026.665899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201066000", "MAP": "D9-571-T66", "PARCEL_NAM": "63AE", "ACRE": ".14", "LONGITUDE": -64.96612967, "LATITUDE": 18.34286822, "OBJECTID_1": 7787, "PARCEL_NO_": "105201066000", "Tax_Legal_": "LINDBERG BAY 63AE 4A SOUTHSIDE QUARTER", "Name": "MARK ANDREW WALTERS TRUST", "Address": "63AE Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15300, "Improved_V": 217600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.144821534900004, "SHAPE_Area": 525.68462442700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355070.38459999859333, 257003.208099998533726 ], [ 355067.740900002419949, 257029.573100000619888 ], [ 355088.690600000321865, 257031.433299999684095 ], [ 355088.121699996292591, 257003.564300000667572 ], [ 355070.38459999859333, 257003.208099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94255924, "LATITUDE": 18.34286095, "OBJECTID_1": 9064, "PARCEL_NO_": "105301032800", "Tax_Legal_": "ALTONA & WELGUNST 178-30 KRONPRINDSENS QTR", "Name": "SIMEON, GASTOR & OTHERS", "Address": "7544 Patrice Ct", "City": "Jacksonville", "State": "Florida", "Zip": 32210, "Country": "United States", "Land_Value": 18300, "Improved_V": 32200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.312861286599997, "SHAPE_Area": 514.70686211199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357562.7162000015378, 257021.284600000828505 ], [ 357555.30120000243187, 257039.80009999871254 ], [ 357575.361900001764297, 257051.363400001078844 ], [ 357577.780799999833107, 257051.383200000971556 ], [ 357579.406000003218651, 257049.918800000101328 ], [ 357583.585100002586842, 257032.643399998545647 ], [ 357577.17230000346899, 257028.157900001853704 ], [ 357562.7162000015378, 257021.284600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96631875, "LATITUDE": 18.34285812, "OBJECTID_1": 7415, "PARCEL_NO_": "105102022200", "Tax_Legal_": "63AD LINDBERG BAY 4A SOUTHSIDE QTR", "Name": "JOSE ANTONIO ROSARIO FAMILY TRUST", "Address": "63AD Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14100, "Improved_V": 148000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.272319147900006, "SHAPE_Area": 533.34369440299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355070.38459999859333, 257003.208099998533726 ], [ 355051.036700002849102, 257002.627500001341105 ], [ 355045.984899997711182, 257027.706300001591444 ], [ 355067.740900002419949, 257029.573100000619888 ], [ 355070.38459999859333, 257003.208099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94348705, "LATITUDE": 18.34286169, "OBJECTID_1": 9083, "PARCEL_NO_": "105301034700", "Tax_Legal_": "ALTONA & WELGUNST 178-41 KRONPRINDSENS QTR", "Name": "CLINE, INEZ", "Address": "PO Box 9349", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 49200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.170032693, "SHAPE_Area": 414.35597296499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357487.621299996972084, 257033.33559999987483 ], [ 357499.768100000917912, 257027.313299998641014 ], [ 357496.566200003027916, 257024.542899999767542 ], [ 357485.232900001108646, 257029.72749999910593 ], [ 357480.413000002503395, 257027.577100001275539 ], [ 357446.856100000441074, 257038.535000000149012 ], [ 357452.481600001454353, 257040.896800000220537 ], [ 357466.486100003123283, 257046.776299998164177 ], [ 357487.621299996972084, 257033.33559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94504936, "LATITUDE": 18.34285812, "OBJECTID_1": 9092, "PARCEL_NO_": "105301040100", "Tax_Legal_": "ALTONA & WELGUNST 189 KRONPRINDSENS QUARTER", "Name": "SCHULTERBRANDT, FRANKLIN", "Address": "PO Box 302501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 165400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.737000460600001, "SHAPE_Area": 548.15342688099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357317.557700000703335, 257023.922200001776218 ], [ 357296.616899996995926, 257021.006499998271465 ], [ 357294.883799999952316, 257035.135600000619888 ], [ 357293.238799996674061, 257038.921799998730421 ], [ 357289.183899998664856, 257041.63289999961853 ], [ 357297.234399996697903, 257043.176399998366833 ], [ 357318.164399996399879, 257047.358500000089407 ], [ 357319.890299998223782, 257034.073699999600649 ], [ 357317.557700000703335, 257023.922200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96651755000001, "LATITUDE": 18.34284993, "OBJECTID_1": 7411, "PARCEL_NO_": "105102022000", "Tax_Legal_": "LINDBERG BAY 63AC 4A SOUTHSIDE", "Name": "LA PLACE, JOSEPH A", "Address": "PO Box 1201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 172400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.452010813900003, "SHAPE_Area": 525.940298633 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355051.036700002849102, 257002.627500001341105 ], [ 355031.686999998986721, 257002.258099999278784 ], [ 355022.618000000715256, 257025.615200001746416 ], [ 355045.984899997711182, 257027.706300001591444 ], [ 355051.036700002849102, 257002.627500001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201069200", "MAP": "D9-5125-T91", "PARCEL_NAM": "23JA", "ACRE": null, "LONGITUDE": -64.96546054, "LATITUDE": 18.34283866, "OBJECTID_1": 7817, "PARCEL_NO_": "105201069200", "Tax_Legal_": "LINDBERG BAY 23JA SOUTHSIDE QUARTER", "Name": "CAROLINE, SHEILA", "Address": "PO Box 306791", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9100, "Improved_V": 67000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.4613222957, "SHAPE_Area": 333.81583378599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355142.752700001001358, 257001.489900000393391 ], [ 355143.797100000083447, 257027.873599998652935 ], [ 355156.455099999904633, 257027.977200001478195 ], [ 355155.072599999606609, 257000.945900000631809 ], [ 355142.752700001001358, 257001.489900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201062500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96532932, "LATITUDE": 18.34283554, "OBJECTID_1": 7753, "PARCEL_NO_": "105201062500", "Tax_Legal_": "LINDBERG BAY 23 SOUTHSIDE QUARTER", "Name": "OLIVE, LEOPOLD J. (LIFE INTEREST)", "Address": "PO Box 594", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10900, "Improved_V": 106200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.329870227200004, "SHAPE_Area": 411.05047669300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355172.590300001204014, 257027.053800001740456 ], [ 355169.589800000190735, 257000.642499998211861 ], [ 355161.524899996817112, 257000.787599999457598 ], [ 355155.072599999606609, 257000.945900000631809 ], [ 355156.455099999904633, 257027.977200001478195 ], [ 355172.590300001204014, 257027.053800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201062600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96516686, "LATITUDE": 18.3428279, "OBJECTID_1": 7754, "PARCEL_NO_": "105201062600", "Tax_Legal_": "23L LINDBERG BAY SOUTHSIDE QTR", "Name": "ALLEN, ENID & JAMES", "Address": "15 Adanac Rd", "City": "Milton", "State": "Massachusetts", "Zip": 2186, "Country": "United States", "Land_Value": 12000, "Improved_V": 127000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.107961751900007, "SHAPE_Area": 500.66587782800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355192.758900001645088, 257025.952300000935793 ], [ 355187.335900001227856, 256999.943399999290705 ], [ 355169.589800000190735, 257000.642499998211861 ], [ 355172.590300001204014, 257027.053800001740456 ], [ 355192.758900001645088, 257025.952300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201066600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96492632, "LATITUDE": 18.34280408, "OBJECTID_1": 7793, "PARCEL_NO_": "105201066600", "Tax_Legal_": "LINDBERG BAY 23K SOUTHSIDE QTR", "Name": "BISPHAM, CECELIA", "Address": "PO Box 306281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 14200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.695338846, "SHAPE_Area": 837.84602691800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355224.239200003445148, 257022.199200000613928 ], [ 355220.419900000095367, 256997.258900001645088 ], [ 355203.4746999964118, 256998.597800001502037 ], [ 355187.335900001227856, 256999.943399999290705 ], [ 355192.758900001645088, 257025.952300000935793 ], [ 355224.239200003445148, 257022.199200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94360498, "LATITUDE": 18.34278527, "OBJECTID_1": 9082, "PARCEL_NO_": "105301034600", "Tax_Legal_": "178-40 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "THOMAS, RUDOLPH & JANELLE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20700, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.093174723199994, "SHAPE_Area": 487.10447904799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357453.288000002503395, 257018.535900000482798 ], [ 357450.432300001382828, 257021.31870000064373 ], [ 357441.161300003528595, 257028.950599998235703 ], [ 357441.703900001943111, 257030.578600000590086 ], [ 357443.949299998581409, 257037.314699999988079 ], [ 357446.856100000441074, 257038.535000000149012 ], [ 357480.413000002503395, 257027.577100001275539 ], [ 357480.44539999961853, 257023.777699999511242 ], [ 357480.323600001633167, 257020.889899998903275 ], [ 357453.288000002503395, 257018.535900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202058600", "MAP": "F9-54-T56", "PARCEL_NAM": "22-25", "ACRE": "0.14", "LONGITUDE": -64.95287006, "LATITUDE": 18.34285512, "OBJECTID_1": 8384, "PARCEL_NO_": "105202058600", "Tax_Legal_": "CONTANT 22 25 7BA SOUTHSIDE QTR", "Name": "RICHARDSON, SONIA S", "Address": "25BA Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36800, "Improved_V": 19800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.104229461200006, "SHAPE_Area": 455.60850102000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356488.551600001752377, 257030.858199998736382 ], [ 356487.242600001394749, 257012.42680000141263 ], [ 356466.685000002384186, 257017.072200000286102 ], [ 356470.836099997162819, 257027.969000000506639 ], [ 356476.413699999451637, 257035.825100000947714 ], [ 356480.4003000035882, 257041.135099999606609 ], [ 356488.405900001525879, 257047.955600000917912 ], [ 356488.551600001752377, 257030.858199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301034500", "MAP": "M.B.", "PARCEL_NAM": "178-39", "ACRE": "0.07", "LONGITUDE": -64.94391041, "LATITUDE": 18.34276611, "OBJECTID_1": 9081, "PARCEL_NO_": "105301034500", "Tax_Legal_": "ALTONA 178-39 & 200-7A KRONPRINDSENS QTR", "Name": "KUUMBA L. OLA-NIYI & OTHERS", "Address": "178-39 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22700, "Improved_V": 45700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.118952534, "SHAPE_Area": 567.46108851500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357441.703900001943111, 257030.578600000590086 ], [ 357441.161300003528595, 257028.950599998235703 ], [ 357450.432300001382828, 257021.31870000064373 ], [ 357453.288000002503395, 257018.535900000482798 ], [ 357442.017300002276897, 257018.179200001060963 ], [ 357429.319799996912479, 257017.751200001686811 ], [ 357408.418999999761581, 257019.534600000828505 ], [ 357402.238499999046326, 257022.504299998283386 ], [ 357399.803400002419949, 257024.384199999272823 ], [ 357399.788099996745586, 257026.180599998682737 ], [ 357438.53320000320673, 257035.040899999439716 ], [ 357443.949299998581409, 257037.314699999988079 ], [ 357441.703900001943111, 257030.578600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201060900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9658339, "LATITUDE": 18.34282832, "OBJECTID_1": 7730, "PARCEL_NO_": "105201060900", "Tax_Legal_": "LINDBERG 23F SOUTHSIDE QTR", "Name": "NEWTON, GEORGE & ROSANNA", "Address": "PO Box 10854", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11100, "Improved_V": 151100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.694322059800001, "SHAPE_Area": 492.58184919199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355125.204899996519089, 257004.712200000882149 ], [ 355093.744300000369549, 257006.143500000238419 ], [ 355094.421099998056889, 257021.347800001502037 ], [ 355126.684399999678135, 257020.345300000160933 ], [ 355125.204899996519089, 257004.712200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201069300", "MAP": "B9-401-T73", "PARCEL_NAM": "21L", "ACRE": null, "LONGITUDE": -64.96470971, "LATITUDE": 18.34276739, "OBJECTID_1": 7818, "PARCEL_NO_": "105201069300", "Tax_Legal_": "LINDBERG BAY 21L 1/2 UNDIVIDED INTEREST SOUTHSIDE QUARTER", "Name": "NOEL, IVOR W.", "Address": "PO Box 34231", "City": "N. Chesterfield", "State": "Virginia", "Zip": 23234, "Country": "United States", "Land_Value": 4000, "Improved_V": 58700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.840450628200003, "SHAPE_Area": 318.20234052500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355235.748800002038479, 256996.328899998217821 ], [ 355220.419900000095367, 256997.258900001645088 ], [ 355224.239200003445148, 257022.199200000613928 ], [ 355230.716700002551079, 257019.085799999535084 ], [ 355234.780599996447563, 257015.319400001317263 ], [ 355236.432800002396107, 257010.688799999654293 ], [ 355237.311099998652935, 257002.252300001680851 ], [ 355235.748800002038479, 256996.328899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202070300", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5B", "ACRE": "0.14", "LONGITUDE": -64.95199673, "LATITUDE": 18.34279999, "OBJECTID_1": 8410, "PARCEL_NO_": "105202070300", "Tax_Legal_": "23-5B ESTATE CONTANT 7B SOUTHSIDE QUARTER", "Name": "JAMES, GERALDINE V. , TRUSTEES", "Address": "PO Box 302482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44300, "Improved_V": 37800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.238302765, "SHAPE_Area": 626.83477528200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356591.098899997770786, 257014.598900001496077 ], [ 356590.9324000030756, 257012.578200001269579 ], [ 356553.0945999994874, 257014.790199998766184 ], [ 356553.180699996650219, 257016.821699999272823 ], [ 356553.150100000202656, 257020.410100001841784 ], [ 356553.0625, 257030.689100001007318 ], [ 356593.020499996840954, 257028.878299999982119 ], [ 356591.098899997770786, 257014.598900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94275624, "LATITUDE": 18.34277341, "OBJECTID_1": 9066, "PARCEL_NO_": "105301033000", "Tax_Legal_": "ALTONA & WELGUNST 178-29 KRONPRINDSENS QTR", "Name": "BIANCA LOUISE CILLS REVOCABLE TRUST", "Address": "3580 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25500, "Improved_V": 22300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.129885071800004, "SHAPE_Area": 367.13649123099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357540.178999997675419, 257016.4560999982059 ], [ 357536.043200001120567, 257028.665699999779463 ], [ 357555.30120000243187, 257039.80009999871254 ], [ 357562.7162000015378, 257021.284600000828505 ], [ 357540.178999997675419, 257016.4560999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201074800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95847806, "LATITUDE": 18.34275095, "OBJECTID_1": 7868, "PARCEL_NO_": "105201074800", "Tax_Legal_": "CONTANT ESTATE 183 7A SOUTHSIDE QTR.", "Name": "ERA FREDERICKS TRUST", "Address": "PO Box 9482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.90003460699999, "SHAPE_Area": 706.44749762200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355882.449199996888638, 256997.188799999654293 ], [ 355867.842000000178814, 257008.046100001782179 ], [ 355878.990099996328354, 257024.602699998766184 ], [ 355909.691200003027916, 257017.67680000141263 ], [ 355903.307199999690056, 257009.814100001007318 ], [ 355902.518899999558926, 257007.696699999272823 ], [ 355897.731299996376038, 257001.746899999678135 ], [ 355896.944799996912479, 256999.418400000780821 ], [ 355888.899700000882149, 256997.241599999368191 ], [ 355882.449199996888638, 256997.188799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020300", "MAP": null, "PARCEL_NAM": "88A", "ACRE": null, "LONGITUDE": -64.94191237, "LATITUDE": 18.34255847, "OBJECTID_1": 8982, "PARCEL_NO_": "105301020300", "Tax_Legal_": "88 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "SMITH, JULIET VANTERPOOL", "Address": "101 Carpenter St", "City": "Pawtucket", "State": "Rhode Island", "Zip": 2860, "Country": "United States", "Land_Value": 27200, "Improved_V": 500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 14.7820875108, "SHAPE_Area": 9.8188188509599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357636.767399996519089, 257005.000500001013279 ], [ 357640.679499998688698, 257005.801199998706579 ], [ 357638.693000003695488, 257000.374899998307228 ], [ 357636.767399996519089, 257005.000500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94532354, "LATITUDE": 18.34278209, "OBJECTID_1": 9145, "PARCEL_NO_": "105301050800", "Tax_Legal_": "143 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "Calvin & R Bastian,D Nibbs,C Knitnurse,E Callwood & R Wheatley", "Address": "PO Box 12536", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018536, "Country": "United States", "Land_Value": 14400, "Improved_V": 37600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.756482817800006, "SHAPE_Area": 272.67267367199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357269.231100000441074, 257017.404899999499321 ], [ 357268.298900000751019, 257032.173799999058247 ], [ 357285.22070000320673, 257033.578899998217821 ], [ 357286.844099998474121, 257032.325599998235703 ], [ 357287.763700000941753, 257019.034200001507998 ], [ 357269.231100000441074, 257017.404899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94550397, "LATITUDE": 18.34276676, "OBJECTID_1": 9144, "PARCEL_NO_": "105301050700", "Tax_Legal_": "142 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "MARTIN,TRUSTEE, AGNES MAUDE", "Address": "PO Box 303457", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15800, "Improved_V": 69700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.695922014999994, "SHAPE_Area": 291.65060378800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357268.298900000751019, 257032.173799999058247 ], [ 357269.231100000441074, 257017.404899999499321 ], [ 357249.087700001895428, 257015.551300000399351 ], [ 357248.205799996852875, 257024.410000000149012 ], [ 357250.579800002276897, 257029.706799998879433 ], [ 357253.796099998056889, 257030.788600001484156 ], [ 357268.298900000751019, 257032.173799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94221902, "LATITUDE": 18.34273502, "OBJECTID_1": 8969, "PARCEL_NO_": "105301013400", "Tax_Legal_": "1O8 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "RAWLINS, EILEEN & OTHERS", "Address": "3246 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50500, "Improved_V": 43100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.47852523100001, "SHAPE_Area": 619.21088661700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357589.211300000548363, 257034.800299998372793 ], [ 357627.136699996888638, 257031.733199998736382 ], [ 357623.159100003540516, 257025.367899999022484 ], [ 357603.972999997437, 257005.790300000458956 ], [ 357600.753200002014637, 257005.13060000166297 ], [ 357599.131599999964237, 257006.172800000756979 ], [ 357589.211300000548363, 257034.800299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202070400", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3B", "ACRE": "0.14", "LONGITUDE": -64.95160599, "LATITUDE": 18.34273337, "OBJECTID_1": 8411, "PARCEL_NO_": "105202070400", "Tax_Legal_": "CONTANT 23-3B 7BA S S QTR.", "Name": "WEEKES, GLENIS C. & LILITHE HARRIGAN WEEKES", "Address": "PO BOX 308451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44300, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.47413112300001, "SHAPE_Area": 638.50873236899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356629.891800001263618, 257004.361800000071526 ], [ 356596.271799996495247, 257005.839600000530481 ], [ 356598.94200000166893, 257024.95890000090003 ], [ 356630.455600000917912, 257024.351199999451637 ], [ 356629.891800001263618, 257004.361800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051900", "MAP": "G9-419-T56", "PARCEL_NAM": "22-16", "ACRE": "0.23", "LONGITUDE": -64.95233848, "LATITUDE": 18.34257586, "OBJECTID_1": 8318, "PARCEL_NO_": "105202051900", "Tax_Legal_": "CONTANT 22 16 7BA SOUTHSIDE QTR", "Name": "DANIEL, EMILE & BERYL", "Address": "PO Box 8044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60500, "Improved_V": 59300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.597075331, "SHAPE_Area": 1019.94741068 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356552.913099996745586, 256981.803800001740456 ], [ 356520.356100000441074, 256981.30290000140667 ], [ 356519.53490000218153, 256990.792899999767542 ], [ 356520.22070000320673, 257004.941799998283386 ], [ 356521.236599996685982, 257012.190600000321865 ], [ 356552.980400003492832, 257012.096700001507998 ], [ 356553.397299997508526, 256998.414000000804663 ], [ 356553.902900002896786, 256981.818999998271465 ], [ 356552.913099996745586, 256981.803800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94578746000001, "LATITUDE": 18.34272308, "OBJECTID_1": 9146, "PARCEL_NO_": "105301050900", "Tax_Legal_": "136 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "HERNAIZ, LEOVGILDA", "Address": "PO BOX 306815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 89900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.394414918099997, "SHAPE_Area": 334.28827010200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357241.053300000727177, 257012.107999999076128 ], [ 357217.679200001060963, 257010.861299999058247 ], [ 357216.754199996590614, 257024.785900000482798 ], [ 357240.122900001704693, 257026.665899999439716 ], [ 357241.053300000727177, 257012.107999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94122672, "LATITUDE": 18.34269325, "OBJECTID_1": 9010, "PARCEL_NO_": "105301022600", "Tax_Legal_": "78 ANNAS FANCY CROWN PRINCE QTR.", "Name": "PHILLIPS, ISIAH", "Address": "PO Box 565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.959829636600006, "SHAPE_Area": 378.62601576200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357702.334200002253056, 257007.650800000876188 ], [ 357700.554300002753735, 257027.267900001257658 ], [ 357719.072499997913837, 257030.585900001227856 ], [ 357722.456000000238419, 257012.037300001829863 ], [ 357702.334200002253056, 257007.650800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94300907, "LATITUDE": 18.34264952, "OBJECTID_1": 9068, "PARCEL_NO_": "105301033200", "Tax_Legal_": "178-28 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "HERBERT FAMILY TRUST", "Address": "20417 NW 33rd Ave", "City": "Opa Locka", "State": "Florida", "Zip": 33056, "Country": "United States", "Land_Value": 37900, "Improved_V": 40600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.294740807, "SHAPE_Area": 695.72230015900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357542.648299999535084, 257010.565699998289347 ], [ 357509.702799998223782, 256996.997099999338388 ], [ 357507.287500001490116, 256996.55519999936223 ], [ 357506.288699999451637, 257019.13399999961257 ], [ 357525.598899997770786, 257024.147199999541044 ], [ 357536.043200001120567, 257028.665699999779463 ], [ 357540.178999997675419, 257016.4560999982059 ], [ 357542.648299999535084, 257010.565699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94504584000001, "LATITUDE": 18.34258461, "OBJECTID_1": 9094, "PARCEL_NO_": "105301040300", "Tax_Legal_": "ALTONA & WELGUNST 196 KRONPRINDSENS QUARTER", "Name": "SCHULTERBRANDT, FRANKLIN", "Address": "PO Box 302501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.14950628899999, "SHAPE_Area": 712.16487294700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357313.067400000989437, 256973.290199998766184 ], [ 357301.299400001764297, 256971.925900001078844 ], [ 357296.616899996995926, 257021.006499998271465 ], [ 357317.557700000703335, 257023.922200001776218 ], [ 357328.027199998497963, 257025.485500000417233 ], [ 357304.913800001144409, 256993.63230000063777 ], [ 357313.067400000989437, 256973.290199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94435854, "LATITUDE": 18.3426756, "OBJECTID_1": 9048, "PARCEL_NO_": "105301031200", "Tax_Legal_": "ALTONA & WELGUNST 178-12 KRONPRINDSENS QTR.", "Name": "SWAN TROTMAN, GLORIA A. & SWAN, NOEL & ROBERTO", "Address": "PO Box 303724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12600, "Improved_V": 25900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.165491254700001, "SHAPE_Area": 412.19558618999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357391.860699996352196, 257010.175900001078844 ], [ 357370.961300000548363, 257002.405499998480082 ], [ 357365.997599996626377, 257017.141399998217821 ], [ 357365.1537000015378, 257019.41499999910593 ], [ 357371.115900002419949, 257020.579700000584126 ], [ 357386.38400000333786, 257023.562199998646975 ], [ 357394.152900002896786, 257025.079799998551607 ], [ 357394.175300002098083, 257022.444899998605251 ], [ 357394.200499996542931, 257019.483199998736382 ], [ 357392.613099999725819, 257016.514899998903275 ], [ 357391.860699996352196, 257010.175900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201061000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96585564, "LATITUDE": 18.3426089, "OBJECTID_1": 7731, "PARCEL_NO_": "105201061000", "Tax_Legal_": "LINDBERG 21E SOUTHSIDE QTR", "Name": "GORDON, VICTORIA(LIFE ESTATE)", "Address": "8409 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24200, "Improved_V": 17500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.47967755800001, "SHAPE_Area": 994.52296734799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355119.848399996757507, 256970.893399998545647 ], [ 355092.423000000417233, 256971.935499999672174 ], [ 355093.200499996542931, 256975.319400001317263 ], [ 355093.744300000369549, 257006.143500000238419 ], [ 355125.204899996519089, 257004.712200000882149 ], [ 355119.848399996757507, 256970.893399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94139692, "LATITUDE": 18.34266561, "OBJECTID_1": 9009, "PARCEL_NO_": "105301022500", "Tax_Legal_": "79 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "GEORGE, ALBERT & BEATRICE", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040035, "Country": "United States", "Land_Value": 20500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.168017137999996, "SHAPE_Area": 335.22417012400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357683.645099997520447, 257024.385299999266863 ], [ 357700.554300002753735, 257027.267900001257658 ], [ 357702.334200002253056, 257007.650800000876188 ], [ 357689.454700000584126, 257005.012200001627207 ], [ 357686.222300000488758, 257005.830099999904633 ], [ 357685.401600003242493, 257007.512200001627207 ], [ 357683.645099997520447, 257024.385299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94167095, "LATITUDE": 18.34266494, "OBJECTID_1": 9004, "PARCEL_NO_": "105301022000", "Tax_Legal_": "80 & 81 ANNAS FANCY KRONDPRINDSEN'S QTR", "Name": "JULIEN FAMILY TRUST", "Address": "1744 Lafayette St S", "City": "Tacoma", "State": "Washington", "Zip": 98444, "Country": "United States", "Land_Value": 24100, "Improved_V": 115800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.760743452400007, "SHAPE_Area": 395.39210310800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357679.775399997830391, 257005.355200000107288 ], [ 357665.231200002133846, 257008.824700001627207 ], [ 357649.070799998939037, 257012.703299999237061 ], [ 357649.828500002622604, 257018.409000001847744 ], [ 357648.151199996471405, 257025.994600001722574 ], [ 357678.044100001454353, 257019.273200001567602 ], [ 357679.775399997830391, 257005.355200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202070500", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5C", "ACRE": "0.14", "LONGITUDE": -64.95200759, "LATITUDE": 18.34265483, "OBJECTID_1": 8412, "PARCEL_NO_": "105202070500", "Tax_Legal_": "CONTANT 23-5C 7BA S S QTR.", "Name": "BELLOT, DOROTHY I. & JOHN", "Address": "PO Box 305836", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45700, "Improved_V": 299700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.33723273299999, "SHAPE_Area": 596.73968394999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356553.397299997508526, 256998.414000000804663 ], [ 356552.980400003492832, 257012.096700001507998 ], [ 356553.0945999994874, 257014.790199998766184 ], [ 356590.9324000030756, 257012.578200001269579 ], [ 356589.637299999594688, 256996.855099998414516 ], [ 356553.397299997508526, 256998.414000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94244739, "LATITUDE": 18.3426108, "OBJECTID_1": 9063, "PARCEL_NO_": "105301032700", "Tax_Legal_": "ALTONA & WELGUNST 178-31 KRONPRINDSENS QTR", "Name": "VANTERPOOL, DENISE", "Address": "PO Box 3513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35400, "Improved_V": 42700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.948492059000003, "SHAPE_Area": 506.79276442100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357577.470799997448921, 256993.11879999935627 ], [ 357569.200900003314018, 257017.326900001615286 ], [ 357582.847099997103214, 257024.615800000727177 ], [ 357585.264200001955032, 257024.846599999815226 ], [ 357586.88400000333786, 257024.015500001609325 ], [ 357594.322499997913837, 257002.756000000983477 ], [ 357593.550300002098083, 256998.738899998366833 ], [ 357577.470799997448921, 256993.11879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020200", "MAP": "D3-260-T64", "PARCEL_NAM": "86A", "ACRE": ".03", "LONGITUDE": -64.94202026000001, "LATITUDE": 18.34263745, "OBJECTID_1": 8981, "PARCEL_NO_": "105301020200", "Tax_Legal_": "86A ANNAS FANCY CROWN PRINCE QTR", "Name": "SMITH, JULIET VANTERPOOL", "Address": "101 Carpenter St", "City": "Pawtucket", "State": "Rhode Island", "Zip": 2860, "Country": "United States", "Land_Value": 16900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.528118593499997, "SHAPE_Area": 181.440377654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357634.576899997889996, 257010.262600000947714 ], [ 357628.1858000010252, 257003.244199998676777 ], [ 357616.845299996435642, 257009.27309999987483 ], [ 357624.04450000077486, 257016.087000001221895 ], [ 357630.41950000077486, 257025.005100000649691 ], [ 357634.576899997889996, 257010.262600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201065400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96612342, "LATITUDE": 18.34264321, "OBJECTID_1": 7782, "PARCEL_NO_": "105201065400", "Tax_Legal_": "LINDBERG BAY 63B-2 4A SOUTHSIDE", "Name": "ROGERS, CHARLES & EILEEN", "Address": "BOX 4201", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.208708284400004, "SHAPE_Area": 354.71257781200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355073.811300002038479, 256979.593600001186132 ], [ 355070.38459999859333, 257003.208099998533726 ], [ 355088.121699996292591, 257003.564300000667572 ], [ 355086.701499998569489, 256980.965700000524521 ], [ 355073.811300002038479, 256979.593600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96628196, "LATITUDE": 18.34263232, "OBJECTID_1": 7417, "PARCEL_NO_": "105102022400", "Tax_Legal_": "LINDBERG BAY 63 B-1 4A SOUTHSIDE QTR", "Name": "ROGERS, CHARLES & E", "Address": "P.O. BOX 4201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10100, "Improved_V": 129800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.551166117299999, "SHAPE_Area": 442.71007278000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355056.89130000025034, 256977.97749999910593 ], [ 355051.036700002849102, 257002.627500001341105 ], [ 355070.38459999859333, 257003.208099998533726 ], [ 355073.811300002038479, 256979.593600001186132 ], [ 355056.89130000025034, 256977.97749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9664507, "LATITUDE": 18.34262593, "OBJECTID_1": 7412, "PARCEL_NO_": "105102022100", "Tax_Legal_": "LINDBERG BAY 63B 4A SOUTHSIDE QTR.", "Name": "RIEARA, MARIA", "Address": "BOX 6384-EMANP. GARDEN STATION", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25200, "Improved_V": 96900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.791127113000002, "SHAPE_Area": 445.60281167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355041.58389999717474, 256976.374600000679493 ], [ 355031.686999998986721, 257002.258099999278784 ], [ 355051.036700002849102, 257002.627500001341105 ], [ 355056.89130000025034, 256977.97749999910593 ], [ 355041.58389999717474, 256976.374600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201064200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96423582, "LATITUDE": 18.34269598, "OBJECTID_1": 7770, "PARCEL_NO_": "105201064200", "Tax_Legal_": "LINDBERG BAY 23B&21D SOUTHSIDE QTR", "Name": "FARRELL, KATHLEEN & PHILLIP & MULLIN, ORAL", "Address": "P.O. BOX 5362", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.11650366200001, "SHAPE_Area": 368.158657312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355308.324100002646446, 256996.078499998897314 ], [ 355247.026399999856949, 256997.687699999660254 ], [ 355248.592299997806549, 257003.188999999314547 ], [ 355309.074699997901917, 257002.628499999642372 ], [ 355308.324100002646446, 256996.078499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201066400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96550683, "LATITUDE": 18.34257202, "OBJECTID_1": 7790, "PARCEL_NO_": "105201066400", "Tax_Legal_": "21-I LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "DELAGARDE, LYDIA", "Address": "15828 SEURAT DRIVE", "City": "North Potomac", "State": "Maryland", "Zip": 208783440, "Country": "United States", "Land_Value": 29300, "Improved_V": 39000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.300185094, "SHAPE_Area": 1043.62712248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355156.958499997854233, 256968.875100001692772 ], [ 355125.496200002729893, 256970.517499998211861 ], [ 355128.602700002491474, 256984.475099999457598 ], [ 355130.872400000691414, 257002.014400001615286 ], [ 355155.072599999606609, 257000.945900000631809 ], [ 355161.524899996817112, 257000.787599999457598 ], [ 355160.991899996995926, 256968.697000000625849 ], [ 355156.958499997854233, 256968.875100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94531166, "LATITUDE": 18.34264959, "OBJECTID_1": 9149, "PARCEL_NO_": "105301051200", "Tax_Legal_": "145 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "PLASKETT, SEVERINA", "Address": "P O BOX 687 KINGSHILL", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 15800, "Improved_V": 38900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.744836200999998, "SHAPE_Area": 274.62896935499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357289.500399999320507, 257004.482999999076128 ], [ 357270.9695999994874, 257002.642599999904633 ], [ 357269.231100000441074, 257017.404899999499321 ], [ 357287.763700000941753, 257019.034200001507998 ], [ 357289.500399999320507, 257004.482999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201050100", "MAP": "D9-9063-T016", "PARCEL_NAM": "3 REM", "ACRE": ".90", "LONGITUDE": -64.96069471, "LATITUDE": 18.34219229, "OBJECTID_1": 7675, "PARCEL_NO_": "105201050100", "Tax_Legal_": "CONTANT 3 SOUTHSIDE QTR", "Name": "ST JOHN, ALBAN & ANITA", "Address": "PO Box 307695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 403300, "Improved_V": 14900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.657971121, "SHAPE_Area": 4247.1864653599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355676.968999996781349, 256980.308299999684095 ], [ 355676.333499997854233, 256960.249200001358986 ], [ 355676.445000000298023, 256947.162399999797344 ], [ 355676.518700003623962, 256938.508099999278784 ], [ 355676.057599999010563, 256897.974399998784065 ], [ 355638.956500001251698, 256898.937300000339746 ], [ 355634.791799999773502, 256914.524099998176098 ], [ 355621.4341000020504, 256968.032600000500679 ], [ 355614.823600001633167, 256986.765799999237061 ], [ 355630.943099997937679, 256978.538499999791384 ], [ 355642.302799999713898, 256972.740600001066923 ], [ 355656.718599997460842, 256965.382800001651049 ], [ 355655.939400002360344, 257005.077199999243021 ], [ 355676.760399997234344, 257004.793499998748302 ], [ 355676.968999996781349, 256980.308299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201068100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96524151, "LATITUDE": 18.34257587, "OBJECTID_1": 7808, "PARCEL_NO_": "105201068100", "Tax_Legal_": "LINDBERG BAY 21 P SOUTHSIDE QTR.", "Name": "AZILLE, CHARLES", "Address": "PO Box 9825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29400, "Improved_V": 105900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.620692152, "SHAPE_Area": 716.48736399400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355187.335900001227856, 256999.943399999290705 ], [ 355183.507500000298023, 256976.058499999344349 ], [ 355181.086800001561642, 256976.249800000339746 ], [ 355181.151500001549721, 256968.65089999884367 ], [ 355173.074000000953674, 256970.273600000888109 ], [ 355168.236100003123283, 256970.234000001102686 ], [ 355160.991899996995926, 256968.697000000625849 ], [ 355161.524899996817112, 257000.787599999457598 ], [ 355169.589800000190735, 257000.642499998211861 ], [ 355187.335900001227856, 256999.943399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201054200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96033254, "LATITUDE": 18.34259761, "OBJECTID_1": 7718, "PARCEL_NO_": "105201054200", "Tax_Legal_": "CONTANT 4-1 7A S S QTR", "Name": "RAWLINS, HELEN W", "Address": "PO Box 9821", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64700, "Improved_V": 43500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.494289955, "SHAPE_Area": 726.955546239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355707.612400002777576, 256980.136900000274181 ], [ 355676.968999996781349, 256980.308299999684095 ], [ 355676.760399997234344, 257004.793499998748302 ], [ 355705.792999997735023, 257004.397799998521805 ], [ 355707.612400002777576, 256980.136900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301151300", "MAP": null, "PARCEL_NAM": "220-34A", "ACRE": null, "LONGITUDE": -64.94724205, "LATITUDE": 18.34260229, "OBJECTID_1": 9511, "PARCEL_NO_": "105301151300", "Tax_Legal_": "ALTONA & WELGUNST 212A-7&220-34A SOUTHSIDE QTR.", "Name": "RAMSAY, XAVIA & LOUVINA", "Address": "PO BOX 4127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.847473305299999, "SHAPE_Area": 110.548939136 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357087.142899997532368, 256999.660399999469519 ], [ 357073.44820000231266, 256998.070700000971556 ], [ 357069.346500001847744, 257006.26969999819994 ], [ 357068.462899997830391, 257015.339499998837709 ], [ 357071.722300000488758, 257011.355399999767542 ], [ 357075.796999998390675, 257006.322500001639128 ], [ 357087.142899997532368, 256999.660399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94549454, "LATITUDE": 18.34263483, "OBJECTID_1": 9148, "PARCEL_NO_": "105301051100", "Tax_Legal_": "144 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "ABRAMSON, IRENE", "Address": "3144 Estate Mahogany", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15800, "Improved_V": 36600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.185640660800004, "SHAPE_Area": 300.585397387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357270.9695999994874, 257002.642599999904633 ], [ 357250.826200000941753, 257000.789000000804663 ], [ 357249.087700001895428, 257015.551300000399351 ], [ 357269.231100000441074, 257017.404899999499321 ], [ 357270.9695999994874, 257002.642599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94326775, "LATITUDE": 18.3425943, "OBJECTID_1": 9071, "PARCEL_NO_": "105301033500", "Tax_Legal_": "178-27B ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "GLANVILLE CHRISTOPHER", "Address": "PO Box 305229", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24700, "Improved_V": 55100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.682286675399993, "SHAPE_Area": 523.81204975900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357499.233300000429153, 256995.433800000697374 ], [ 357484.73589999973774, 256993.415300000458956 ], [ 357483.728200003504753, 257017.049499999731779 ], [ 357506.288699999451637, 257019.13399999961257 ], [ 357507.287500001490116, 256996.55519999936223 ], [ 357499.233300000429153, 256995.433800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201069500", "MAP": "B9-401-T73", "PARCEL_NAM": "21N", "ACRE": null, "LONGITUDE": -64.96506725, "LATITUDE": 18.34256188, "OBJECTID_1": 7820, "PARCEL_NO_": "105201069500", "Tax_Legal_": "LINDBERG BAY 21N SOUTH SIDE QTR", "Name": "DELAGARDE, RICHARD", "Address": "P.O. BO 5103", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4600, "Improved_V": 9400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.661056515, "SHAPE_Area": 419.05034843800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355194.75450000166893, 256981.005699999630451 ], [ 355194.07769999653101, 256965.801399998366833 ], [ 355181.151500001549721, 256968.65089999884367 ], [ 355181.086800001561642, 256976.249800000339746 ], [ 355183.507500000298023, 256976.058499999344349 ], [ 355187.335900001227856, 256999.943399999290705 ], [ 355203.4746999964118, 256998.597800001502037 ], [ 355203.555600002408028, 256989.099300000816584 ], [ 355193.091600000858307, 256986.902699999511242 ], [ 355192.337399996817112, 256980.77479999884963 ], [ 355194.75450000166893, 256981.005699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201053300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95990411, "LATITUDE": 18.34261896, "OBJECTID_1": 7709, "PARCEL_NO_": "105201053300", "Tax_Legal_": "CONTANT 5-1 7A SOUTHSIDE QTR.", "Name": "BRADY, ROBERT", "Address": "PO Box 6212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 63200, "Improved_V": 38900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.74198934, "SHAPE_Area": 768.0612243 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355757.587600000202656, 256982.445799998939037 ], [ 355713.976599998772144, 256990.32149999961257 ], [ 355713.051600001752377, 257004.246100001037121 ], [ 355757.407799996435642, 257003.553700000047684 ], [ 355757.587600000202656, 256982.445799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201069400", "MAP": "B9-401-T73", "PARCEL_NAM": "21M", "ACRE": null, "LONGITUDE": -64.96484481, "LATITUDE": 18.34260926, "OBJECTID_1": 7819, "PARCEL_NO_": "105201069400", "Tax_Legal_": "LINDBERG TRAILER B 21M SOUTHSIDE QTR", "Name": "THOMAS, WINFORD & ALPHONSINE", "Address": "PO Box 8904", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5000, "Improved_V": 79900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.8852684, "SHAPE_Area": 487.98512289299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355231.027800001204014, 256982.569099999964237 ], [ 355227.782799996435642, 256984.864599999040365 ], [ 355213.270900003612041, 256984.534699998795986 ], [ 355213.288900002837181, 256982.4239999987185 ], [ 355194.75450000166893, 256981.005699999630451 ], [ 355192.337399996817112, 256980.77479999884963 ], [ 355193.091600000858307, 256986.902699999511242 ], [ 355203.555600002408028, 256989.099300000816584 ], [ 355203.4746999964118, 256998.597800001502037 ], [ 355220.419900000095367, 256997.258900001645088 ], [ 355235.748800002038479, 256996.328899998217821 ], [ 355231.027800001204014, 256982.569099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94343881, "LATITUDE": 18.34257985, "OBJECTID_1": 9073, "PARCEL_NO_": "105301033700", "Tax_Legal_": "178-27A ALTONA & WELGUNST KRONPRINDSENS QUARTER", "Name": "LAPLACE (LIFE ESTATE) & OTHERS, MARY", "Address": "3583 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14200, "Improved_V": 45200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.9537721895, "SHAPE_Area": 325.94815176999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357482.318800002336502, 256993.184399999678135 ], [ 357471.84570000320673, 256992.043200001120567 ], [ 357469.225299999117851, 257015.664299998432398 ], [ 357483.728200003504753, 257017.049499999731779 ], [ 357484.73589999973774, 256993.415300000458956 ], [ 357482.318800002336502, 256993.184399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94260118, "LATITUDE": 18.34255965, "OBJECTID_1": 9065, "PARCEL_NO_": "105301032900", "Tax_Legal_": "ALTONA & WELGUNST 178-32 KRONPRINDSENS QTR", "Name": "RHYMER, HURBERT", "Address": "BOX 4535", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20600, "Improved_V": 49500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.141335100600003, "SHAPE_Area": 377.094414804 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357558.932800002396107, 256992.122699998319149 ], [ 357556.332299999892712, 257013.421900000423193 ], [ 357569.200900003314018, 257017.326900001615286 ], [ 357577.470799997448921, 256993.11879999935627 ], [ 357574.25280000269413, 256992.248100001364946 ], [ 357558.932800002396107, 256992.122699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201064300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96425502, "LATITUDE": 18.34263275, "OBJECTID_1": 7771, "PARCEL_NO_": "105201064300", "Tax_Legal_": "LINDBERG BAY 21DA SOUTHSIDE QTR", "Name": "FARRELL, KATHLEEN & PHILLIP & MULLIN, ORAL", "Address": "P.O. BOX 5362", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.71220465100001, "SHAPE_Area": 499.72776026399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355307.587899997830391, 256987.839800000190735 ], [ 355267.25789999961853, 256989.198499999940395 ], [ 355244.67400000244379, 256989.857999999076128 ], [ 355247.026399999856949, 256997.687699999660254 ], [ 355308.324100002646446, 256996.078499998897314 ], [ 355307.587899997830391, 256987.839800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94358897, "LATITUDE": 18.34256278, "OBJECTID_1": 9075, "PARCEL_NO_": "105301033900", "Tax_Legal_": "178-26 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "VALDEMAR & LESLIE THOMAS & LYDIA THOMAS-LEWIS", "Address": "178-26 Altona & Welgunst", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 39800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.813227328599993, "SHAPE_Area": 431.47491728900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357464.594300001859665, 256991.350600000470877 ], [ 357452.506800003349781, 256990.407299999147654 ], [ 357452.305399999022484, 257014.048099998384714 ], [ 357469.225299999117851, 257015.664299998432398 ], [ 357471.84570000320673, 256992.043200001120567 ], [ 357464.594300001859665, 256991.350600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201050500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95899369, "LATITUDE": 18.34242691, "OBJECTID_1": 7681, "PARCEL_NO_": "105201050500", "Tax_Legal_": "CONTANT 133 SOUTHSIDE QUARTER", "Name": "ST THOMAS ASSEMBLY OF GOD, INC", "Address": "PO Box 10770", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 147000, "Improved_V": 969500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.61566629599997, "SHAPE_Area": 3523.28911745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355796.134199999272823, 257001.126400001347065 ], [ 355882.513899996876717, 256989.589999999850988 ], [ 355885.017300002276897, 256979.689100001007318 ], [ 355875.440499998629093, 256968.000599998980761 ], [ 355860.239200003445148, 256953.943999998271465 ], [ 355856.218500003218651, 256952.644499998539686 ], [ 355838.461599998176098, 256954.610100001096725 ], [ 355822.337200000882149, 256954.267000000923872 ], [ 355817.510099999606609, 256952.960999999195337 ], [ 355810.281999997794628, 256949.524300001561642 ], [ 355795.858300000429153, 256938.851599998772144 ], [ 355796.134199999272823, 257001.126400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94397829, "LATITUDE": 18.34256966, "OBJECTID_1": 9079, "PARCEL_NO_": "105301034300", "Tax_Legal_": "178-24 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "PETERSEN, ELEANOR", "Address": "4234 Gunther Ave", "City": "Bronx", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 30000, "Improved_V": 3100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.8568525405, "SHAPE_Area": 493.77199057000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357430.750699996948242, 256988.540500000119209 ], [ 357413.767800003290176, 256994.312100000679493 ], [ 357408.883199997246265, 256999.760600000619888 ], [ 357405.55179999768734, 257012.187800001353025 ], [ 357407.151900000870228, 257013.678599998354912 ], [ 357432.154799997806549, 257013.038800001144409 ], [ 357430.750699996948242, 256988.540500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94377478, "LATITUDE": 18.3425514, "OBJECTID_1": 9077, "PARCEL_NO_": "105301034100", "Tax_Legal_": "ALTONA & WELGUNST 178-25 KRONPRINDSENS QTR", "Name": "LARSEN, GEORGE & JOYCE", "Address": "3585 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 38300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.1923577835, "SHAPE_Area": 503.98408207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357447.672499999403954, 256989.945500001311302 ], [ 357430.750699996948242, 256988.540500000119209 ], [ 357432.154799997806549, 257013.038800001144409 ], [ 357452.305399999022484, 257014.048099998384714 ], [ 357452.506800003349781, 256990.407299999147654 ], [ 357447.672499999403954, 256989.945500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301051000", "MAP": null, "PARCEL_NAM": "135", "ACRE": null, "LONGITUDE": -64.94577907, "LATITUDE": 18.34259938, "OBJECTID_1": 9147, "PARCEL_NO_": "105301051000", "Tax_Legal_": "135 & 182A ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "JACKSON, JULIAN A.", "Address": "PO Box 10246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18900, "Improved_V": 40000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.528746415000001, "SHAPE_Area": 304.58585975599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357241.971100002527237, 256999.027800001204014 ], [ 357219.405100002884865, 256997.576499998569489 ], [ 357217.679200001060963, 257010.861299999058247 ], [ 357241.053300000727177, 257012.107999999076128 ], [ 357241.971100002527237, 256999.027800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301055700", "MAP": "F9-2815-T71", "PARCEL_NAM": "182", "ACRE": null, "LONGITUDE": -64.94596345, "LATITUDE": 18.34259424, "OBJECTID_1": 9193, "PARCEL_NO_": "105301055700", "Tax_Legal_": "ALTONA&WELGUNST 182 REMAINDER KRONPRINDSENS QUARTER", "Name": "GUMBS, WILBERT & ANN", "Address": "200-3M Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.744230363600003, "SHAPE_Area": 212.503618144 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357217.679200001060963, 257010.861299999058247 ], [ 357219.405100002884865, 256997.576499998569489 ], [ 357202.468999996781349, 256997.860100001096725 ], [ 357202.357500001788139, 257010.947000000625849 ], [ 357217.679200001060963, 257010.861299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302273300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93649647, "LATITUDE": 18.34260938, "OBJECTID_1": 10443, "PARCEL_NO_": "105302273300", "Tax_Legal_": "GAMLE GADE 14B CROWN PRINCE QUARTER", "Name": "GUMBS, MARGARET B", "Address": "PO Box 305453", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.342708829100001, "SHAPE_Area": 23.658430003199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358211.946999996900558, 257009.077500000596046 ], [ 358209.526299998164177, 257009.268800001591444 ], [ 358210.249899998307228, 257018.984999999403954 ], [ 358212.67059999704361, 257018.793699998408556 ], [ 358211.946999996900558, 257009.077500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301033100", "MAP": null, "PARCEL_NAM": "178-33", "ACRE": ".08", "LONGITUDE": -64.94275529, "LATITUDE": 18.34253148, "OBJECTID_1": 9067, "PARCEL_NO_": "105301033100", "Tax_Legal_": "178-33 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "MARTE RHYMER, FABIOLA", "Address": "PO Box 308016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19300, "Improved_V": 37700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.673115860899998, "SHAPE_Area": 363.73449185200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357541.244300000369549, 256986.067299999296665 ], [ 357541.926500000059605, 257000.638399999588728 ], [ 357542.648299999535084, 257010.565699998289347 ], [ 357556.332299999892712, 257013.421900000423193 ], [ 357558.932800002396107, 256992.122699998319149 ], [ 357541.244300000369549, 256986.067299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201044500", "MAP": "G9-293-T54", "PARCEL_NAM": "20B", "ACRE": "0.20", "LONGITUDE": -64.96371636000001, "LATITUDE": 18.34252375, "OBJECTID_1": 7623, "PARCEL_NO_": "105201044500", "Tax_Legal_": "LINDBERG BAY 20B SOUTHSIDE QTR", "Name": "LANS, BRENDA", "Address": "PO Box 7915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 157200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.904597276, "SHAPE_Area": 834.18612036399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355350.277500003576279, 256993.466499999165535 ], [ 355351.301399998366833, 256967.932599999010563 ], [ 355316.610200002789497, 256969.97069999948144 ], [ 355318.016000002622604, 256994.258000001311302 ], [ 355350.277500003576279, 256993.466499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94176543, "LATITUDE": 18.34254778, "OBJECTID_1": 9006, "PARCEL_NO_": "105301022200", "Tax_Legal_": "81 A ANNAS FANCY CROWN PRINCE QUARTER", "Name": "JULIEN, ILVA", "Address": "PO Box 6734", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11800, "Improved_V": 77300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.234613620600001, "SHAPE_Area": 232.24870658099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357664.451899997889996, 257005.651999998837709 ], [ 357659.718299999833107, 256993.369800001382828 ], [ 357644.353399999439716, 256998.52140000090003 ], [ 357649.070799998939037, 257012.703299999237061 ], [ 357664.451899997889996, 257005.651999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201044600", "MAP": "A3-12-T33", "PARCEL_NAM": "REM 20", "ACRE": null, "LONGITUDE": -64.96220127, "LATITUDE": 18.34231438, "OBJECTID_1": 7624, "PARCEL_NO_": "105201044600", "Tax_Legal_": "20 & 22 LINDBERG BAY SOUTHSIDE QUARTER", "Name": "ABRAHAM, GLADYS A. & OTHERS", "Address": "11371 SW 223 St", "City": "MIAMI", "State": "Florida", "Zip": 33170, "Country": "United States", "Land_Value": 340300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 856.66035758800001, "SHAPE_Area": 13780.330312399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355506.514399997889996, 256922.129099998623133 ], [ 355507.708400003612041, 256975.341600000858307 ], [ 355463.823299996554852, 256976.768699999898672 ], [ 355425.646799996495247, 256978.909499999135733 ], [ 355428.809000000357628, 256926.699999999254942 ], [ 355374.203699998557568, 256929.912099998444319 ], [ 355373.212099999189377, 256951.646600000560284 ], [ 355315.931599996984005, 256954.97749999910593 ], [ 355316.610200002789497, 256969.97069999948144 ], [ 355351.301399998366833, 256967.932599999010563 ], [ 355350.277500003576279, 256993.466499999165535 ], [ 355614.823600001633167, 256986.765799999237061 ], [ 355621.4341000020504, 256968.032600000500679 ], [ 355633.213600002229214, 256920.846200000494719 ], [ 355506.514399997889996, 256922.129099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94430944, "LATITUDE": 18.34247955, "OBJECTID_1": 9047, "PARCEL_NO_": "105301031100", "Tax_Legal_": "ALTONA & WELGUNST 178-11 KRONPRINDSENS QTR.", "Name": "KING, JANET", "Address": "58 GOLDEN ROCK", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 13300, "Improved_V": 17900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.66319010399999, "SHAPE_Area": 565.93963348800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357400.98369999974966, 256980.486400000751019 ], [ 357379.22580000013113, 256978.830699998885393 ], [ 357370.961300000548363, 257002.405499998480082 ], [ 357391.860699996352196, 257010.175900001078844 ], [ 357391.876900002360344, 257008.276200000196695 ], [ 357392.771300002932549, 256997.940000001341105 ], [ 357400.98369999974966, 256980.486400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020500", "MAP": "D3-260-T64", "PARCEL_NAM": "87", "ACRE": ".08", "LONGITUDE": -64.94200839, "LATITUDE": 18.34244394, "OBJECTID_1": 8984, "PARCEL_NO_": "105301020500", "Tax_Legal_": "ANNAS FANCY 87 CROWN PRINCE QUARTER", "Name": "CREQUE, CARMEN", "Address": "3410 De Reimer Ave", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.462934837399999, "SHAPE_Area": 357.528204641 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357628.1858000010252, 257003.244199998676777 ], [ 357636.767399996519089, 257005.000500001013279 ], [ 357638.693000003695488, 257000.374899998307228 ], [ 357633.189099997282028, 256983.864500001072884 ], [ 357631.596199996769428, 256981.529500000178814 ], [ 357626.042000003159046, 256970.929299999028444 ], [ 357619.413400001823902, 256991.773400001227856 ], [ 357618.590999998152256, 256993.666499998420477 ], [ 357622.59009999781847, 256997.4989 ], [ 357628.1858000010252, 257003.244199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201064400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96447859, "LATITUDE": 18.34247293, "OBJECTID_1": 7772, "PARCEL_NO_": "105201064400", "Tax_Legal_": "LINDBERG BAY 21A SOUTHSIDE QTR", "Name": "ANGOL, JOSEPH P", "Address": "PO Box 306031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 116800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.24303484399999, "SHAPE_Area": 719.97629492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355244.67400000244379, 256989.857999999076128 ], [ 355267.25789999961853, 256989.198499999940395 ], [ 355266.670999996364117, 256963.44029999896884 ], [ 355244.925700001418591, 256960.307000000029802 ], [ 355237.661700002849102, 256961.091899998486042 ], [ 355244.67400000244379, 256989.857999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202041500", "MAP": null, "PARCEL_NAM": "18", "ACRE": null, "LONGITUDE": -64.95393114, "LATITUDE": 18.34217535, "OBJECTID_1": 8275, "PARCEL_NO_": "105202041500", "Tax_Legal_": "CONTANT 18 7BA SOUTHSIDE QTR", "Name": "MILLIN, FRANKLIN G.", "Address": "PO Box 304361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 488500, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 380.876405245, "SHAPE_Area": 6959.7767523599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356395.144500002264977, 256920.747299998998642 ], [ 356374.160599999129772, 256922.89750000089407 ], [ 356364.47580000013113, 256923.873700000345707 ], [ 356345.912699997425079, 256925.832800000905991 ], [ 356327.349500000476837, 256927.791799999773502 ], [ 356302.330399997532368, 256930.331199999898672 ], [ 356314.907799996435642, 256968.431000001728535 ], [ 356314.000799998641014, 256980.244800001382828 ], [ 356313.905500002205372, 256991.432000000029802 ], [ 356312.231700003147125, 256998.595499999821186 ], [ 356444.04900000244379, 256954.078099999576807 ], [ 356438.534299999475479, 256938.834199998527765 ], [ 356434.626800000667572, 256924.236800000071526 ], [ 356433.885200001299381, 256916.631400000303984 ], [ 356395.144500002264977, 256920.747299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301025300", "MAP": null, "PARCEL_NAM": "86B", "ACRE": ".015", "LONGITUDE": -64.94210546, "LATITUDE": 18.3425383, "OBJECTID_1": 9034, "PARCEL_NO_": "105301025300", "Tax_Legal_": "ANNAS FANCY 86 B CROWN PRINCE QTR", "Name": "ROLLINS, OSCAR JR. & PHILLIS ANN", "Address": "PO Box 6811", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.889867292300003, "SHAPE_Area": 55.316917581699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357618.590999998152256, 256993.666499998420477 ], [ 357614.446099996566772, 257006.931400001049042 ], [ 357616.845299996435642, 257009.27309999987483 ], [ 357622.59009999781847, 256997.4989 ], [ 357618.590999998152256, 256993.666499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301025500", "MAP": null, "PARCEL_NAM": "86A", "ACRE": ".01", "LONGITUDE": -64.9420654, "LATITUDE": 18.34255616, "OBJECTID_1": 9036, "PARCEL_NO_": "105301025500", "Tax_Legal_": "ANNAS FANCY 86 KRONP QTR", "Name": "SMITH, JULIET VANTERPOOL", "Address": "101 Carpenter St", "City": "Pawtucket", "State": "Rhode Island", "Zip": 2860, "Country": "United States", "Land_Value": 3200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.964395552699997, "SHAPE_Area": 49.445245208700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357616.845299996435642, 257009.27309999987483 ], [ 357628.1858000010252, 257003.244199998676777 ], [ 357622.59009999781847, 256997.4989 ], [ 357616.845299996435642, 257009.27309999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201064500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9641722, "LATITUDE": 18.34249233, "OBJECTID_1": 7773, "PARCEL_NO_": "105201064500", "Tax_Legal_": "LINDBERG BAY 21AA SOUTHSIDE QTR", "Name": "FARRELL, KATHLEEN & PHILLIP & MULLIN, ORAL", "Address": "P.O. BOX 5362", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15300, "Improved_V": 94400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.39757942, "SHAPE_Area": 892.05606429500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355267.25789999961853, 256989.198499999940395 ], [ 355307.587899997830391, 256987.839800000190735 ], [ 355306.939900003373623, 256969.258299998939037 ], [ 355266.670999996364117, 256963.44029999896884 ], [ 355267.25789999961853, 256989.198499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94159977, "LATITUDE": 18.34249673, "OBJECTID_1": 9003, "PARCEL_NO_": "105301021900", "Tax_Legal_": "REM 81&81C ANNAS FANCY CROWN PRINCE QUARTER", "Name": "THOMASIK, DENNIS", "Address": "PO BOX 0611", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28600, "Improved_V": 58300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.350271753599998, "SHAPE_Area": 299.30934754200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357663.760600000619888, 256992.136300001293421 ], [ 357659.718299999833107, 256993.369800001382828 ], [ 357664.451899997889996, 257005.651999998837709 ], [ 357665.231200002133846, 257008.824700001627207 ], [ 357670.911399997770786, 257004.649399999529123 ], [ 357675.754600003361702, 257004.055700000375509 ], [ 357679.775399997830391, 257005.355200000107288 ], [ 357681.481499999761581, 256994.392299998551607 ], [ 357681.548100002110004, 256986.582400001585484 ], [ 357663.760600000619888, 256992.136300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202070700", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5D", "ACRE": "0.14", "LONGITUDE": -64.95201687, "LATITUDE": 18.34251394, "OBJECTID_1": 8414, "PARCEL_NO_": "105202070700", "Tax_Legal_": "CONTANT 23-5D 7BA SOUTHSIDE", "Name": "LEVIN, ISTIN & NORMAN", "Address": "PO Box 305385", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.107876925, "SHAPE_Area": 535.47236130700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356588.340000003576279, 256983.147399999201298 ], [ 356553.902900002896786, 256981.818999998271465 ], [ 356553.397299997508526, 256998.414000000804663 ], [ 356589.637299999594688, 256996.855099998414516 ], [ 356588.340000003576279, 256983.147399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94529775, "LATITUDE": 18.34250896, "OBJECTID_1": 9152, "PARCEL_NO_": "105301051500", "Tax_Legal_": "147 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "FRANCIS, MAXINE", "Address": "6471 NW 21st Ct", "City": "SUNRISE", "State": "Florida", "Zip": 33313, "Country": "United States", "Land_Value": 15800, "Improved_V": 44400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.847916497100002, "SHAPE_Area": 311.90475332300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357291.253300003707409, 256988.0320999994874 ], [ 357271.914399996399879, 256986.396099999547005 ], [ 357270.9695999994874, 257002.642599999904633 ], [ 357289.500399999320507, 257004.482999999076128 ], [ 357291.253300003707409, 256988.0320999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020100", "MAP": "D9-8570-T011", "PARCEL_NAM": "85 REM", "ACRE": ".07", "LONGITUDE": -64.94220485, "LATITUDE": 18.34247042, "OBJECTID_1": 8980, "PARCEL_NO_": "105301020100", "Tax_Legal_": "85 REM & 85A ANNA'S FANCY KRONPRINDSENS QTR", "Name": "ROLLINS, OSCAR & PHILLIS A.", "Address": "PO Box 6811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.354903157300001, "SHAPE_Area": 283.86961368599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357614.91499999910593, 256990.590399999171495 ], [ 357601.274099998176098, 256980.956199999898672 ], [ 357597.650200001895428, 256990.750900000333786 ], [ 357597.621399998664856, 256994.128100000321865 ], [ 357612.043399997055531, 257005.011900000274181 ], [ 357614.446099996566772, 257006.931400001049042 ], [ 357618.590999998152256, 256993.666499998420477 ], [ 357614.91499999910593, 256990.590399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201053400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95997755, "LATITUDE": 18.34247708, "OBJECTID_1": 7710, "PARCEL_NO_": "105201053400", "Tax_Legal_": "CONTANT 5-2 7A S S QTR", "Name": "JARVIS, GLENFIELD A", "Address": "PO Box 9143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44300, "Improved_V": 60200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.29366117799999, "SHAPE_Area": 541.51342940699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355713.976599998772144, 256990.32149999961257 ], [ 355757.587600000202656, 256982.445799998939037 ], [ 355716.611299999058247, 256965.011900000274181 ], [ 355713.976599998772144, 256990.32149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301051400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94548123, "LATITUDE": 18.34249515, "OBJECTID_1": 9151, "PARCEL_NO_": "105301051400", "Tax_Legal_": "146 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "EFRAIN FELICIANO", "Address": "116 Van Buren St.", "City": "Evans City", "State": "Pennsylvania", "Zip": 160331151, "Country": "United States", "Land_Value": 15800, "Improved_V": 78600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.261685916900007, "SHAPE_Area": 323.13966026999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357271.914399996399879, 256986.396099999547005 ], [ 357252.577200002968311, 256984.549100000411272 ], [ 357250.826200000941753, 257000.789000000804663 ], [ 357270.9695999994874, 257002.642599999904633 ], [ 357271.914399996399879, 256986.396099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201069600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96478646, "LATITUDE": 18.34246792, "OBJECTID_1": 7822, "PARCEL_NO_": "105201069600", "Tax_Legal_": "LINDBERG BAY 21R SOUTHSIDE QTR", "Name": "DELAGARDE, RICHARD", "Address": "PO Box 8604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13100, "Improved_V": 63100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.535482938499996, "SHAPE_Area": 360.49963622799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355211.839900001883507, 256963.202599998563528 ], [ 355213.288900002837181, 256982.4239999987185 ], [ 355213.270900003612041, 256984.534699998795986 ], [ 355227.782799996435642, 256984.864599999040365 ], [ 355231.027800001204014, 256982.569099999964237 ], [ 355228.749099999666214, 256966.085200000554323 ], [ 355226.351800002157688, 256963.532400000840425 ], [ 355211.839900001883507, 256963.202599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301085000", "MAP": "D9-2858-T84", "PARCEL_NAM": "ROW 212A-15", "ACRE": "0.72", "LONGITUDE": -64.94705632, "LATITUDE": 18.34170398, "OBJECTID_1": 9287, "PARCEL_NO_": "105301085000", "Tax_Legal_": "ALTONA & WELGUNST 212 CROWN PRINCE QUARTER", "Name": "FISHMAN, ELLIOT J", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 164100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 610.18816454399996, "SHAPE_Area": 2300.0583740400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357142.568400003015995, 256835.461100000888109 ], [ 357152.362899996340275, 256821.609000001102686 ], [ 357139.454700000584126, 256822.347800001502037 ], [ 357115.105899997055531, 256812.700500000268221 ], [ 357106.365299999713898, 256825.665500000119209 ], [ 357102.274400003254414, 256832.598099999129772 ], [ 357100.303900003433228, 256874.589600000530481 ], [ 357096.870099999010563, 256899.04839999973774 ], [ 357091.796700000762939, 256926.660100001841784 ], [ 357089.32379999756813, 256932.972699999809265 ], [ 357083.616700001060963, 256940.3141999989748 ], [ 357064.094300001859665, 256960.208399999886751 ], [ 357056.756599999964237, 256969.64750000089407 ], [ 357035.511200003325939, 256992.334600001573563 ], [ 357045.255999997258186, 256994.462400000542402 ], [ 357049.320000000298023, 256990.695999998599291 ], [ 357048.540600001811981, 256987.523200001567602 ], [ 357057.489200003445148, 256978.308299999684095 ], [ 357066.464699998497963, 256965.927299998700619 ], [ 357082.749200001358986, 256947.484299998730421 ], [ 357087.603299997746944, 256945.624200001358986 ], [ 357081.824199996888638, 256961.408900000154972 ], [ 357065.394100002944469, 256996.949299998581409 ], [ 357073.44820000231266, 256998.070700000971556 ], [ 357086.582999996840954, 256970.736000001430511 ], [ 357087.421599999070168, 256966.943199999630451 ], [ 357090.693599998950958, 256961.481499999761581 ], [ 357094.833099998533726, 256948.849800001829863 ], [ 357101.528200000524521, 256920.195900000631809 ], [ 357101.594200000166893, 256919.650699999183416 ], [ 357100.016000002622604, 256919.41499999910593 ], [ 357104.227300003170967, 256891.304999999701977 ], [ 357104.998000003397465, 256891.515500001609325 ], [ 357108.419200003147125, 256868.534299999475479 ], [ 357109.511399999260902, 256834.979400001466274 ], [ 357110.337499998509884, 256832.664099998772144 ], [ 357112.772600002586842, 256830.784200001507998 ], [ 357116.814999997615814, 256829.550799999386072 ], [ 357139.357600003480911, 256833.745999999344349 ], [ 357142.568400003015995, 256835.461100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201068200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96494998, "LATITUDE": 18.34245991, "OBJECTID_1": 7809, "PARCEL_NO_": "105201068200", "Tax_Legal_": "LINDBERG BAY 21-Q S S QTR.", "Name": "WILLIAMS, BISSOONDIAL & H", "Address": "21Q Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7700, "Improved_V": 132500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.035191062699994, "SHAPE_Area": 313.01134245100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355211.839900001883507, 256963.202599998563528 ], [ 355194.07769999653101, 256965.801399998366833 ], [ 355194.75450000166893, 256981.005699999630451 ], [ 355213.288900002837181, 256982.4239999987185 ], [ 355211.839900001883507, 256963.202599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301051300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94576529, "LATITUDE": 18.34246699, "OBJECTID_1": 9150, "PARCEL_NO_": "105301051300", "Tax_Legal_": "134 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "JOSE CUEVAS and ALTAGRACIA PEGUERO", "Address": "PO BOX 306894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 49200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.473186388599999, "SHAPE_Area": 364.24465987100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357243.720399998128414, 256982.999000001698732 ], [ 357221.154399998486042, 256981.547699999064207 ], [ 357219.405100002884865, 256997.576499998569489 ], [ 357241.971100002527237, 256999.027800001204014 ], [ 357243.720399998128414, 256982.999000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301085000", "MAP": "D9-2858-T84", "PARCEL_NAM": "GREENBELT 212A-5", "ACRE": "0.16", "LONGITUDE": -64.94732276000001, "LATITUDE": 18.34235196, "OBJECTID_1": 9287, "PARCEL_NO_": "105301085000", "Tax_Legal_": "ALTONA & WELGUNST 212 CROWN PRINCE QUARTER", "Name": "FISHMAN, ELLIOT J", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 164100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.00167074500001, "SHAPE_Area": 692.064376896 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357045.255999997258186, 256994.462400000542402 ], [ 357065.394100002944469, 256996.949299998581409 ], [ 357081.824199996888638, 256961.408900000154972 ], [ 357087.603299997746944, 256945.624200001358986 ], [ 357082.749200001358986, 256947.484299998730421 ], [ 357066.464699998497963, 256965.927299998700619 ], [ 357057.489200003445148, 256978.308299999684095 ], [ 357048.540600001811981, 256987.523200001567602 ], [ 357049.320000000298023, 256990.695999998599291 ], [ 357045.255999997258186, 256994.462400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94400954, "LATITUDE": 18.34239796, "OBJECTID_1": 9080, "PARCEL_NO_": "105301034400", "Tax_Legal_": "178-46 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "MARSHAM, KEITH", "Address": "178-230 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30600, "Improved_V": 111100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.404454730699996, "SHAPE_Area": 505.68574563599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357408.883199997246265, 256999.760600000619888 ], [ 357413.767800003290176, 256994.312100000679493 ], [ 357430.750699996948242, 256988.540500000119209 ], [ 357428.491800002753735, 256969.734700001776218 ], [ 357415.572800002992153, 256971.739900000393391 ], [ 357413.947599999606609, 256973.204199999570847 ], [ 357407.414399996399879, 256982.861099999397993 ], [ 357404.959499999880791, 256987.062800001353025 ], [ 357402.50280000269413, 256991.475699998438358 ], [ 357402.457900002598763, 256996.752700001001358 ], [ 357408.883199997246265, 256999.760600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94132116, "LATITUDE": 18.34240467, "OBJECTID_1": 9011, "PARCEL_NO_": "105301022700", "Tax_Legal_": "ANNAS FANCY 59 CROWN PRINCE QTR", "Name": "BARRY, FRANCESCA", "Address": "PO Box 307638", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22800, "Improved_V": 57500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.649244790400004, "SHAPE_Area": 592.49259859699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357707.220600001513958, 257001.991200000047684 ], [ 357717.950800001621246, 256972.948100000619888 ], [ 357699.378600001335144, 256975.962499998509884 ], [ 357688.860600002110004, 256980.098299998790026 ], [ 357687.233599998056889, 256981.773800000548363 ], [ 357688.009300000965595, 256985.368700001388788 ], [ 357687.899700000882149, 256998.244500000029802 ], [ 357707.220600001513958, 257001.991200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94294086, "LATITUDE": 18.3424546, "OBJECTID_1": 9069, "PARCEL_NO_": "105301033300", "Tax_Legal_": "ALTONA & WELGUNST 178-34 KRONPRINDSENS QTR.", "Name": "CARTIER, GEORGE & ELAINE", "Address": "PO Box 8388", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.701542664399994, "SHAPE_Area": 371.22232297699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357522.753100000321865, 256979.583200000226498 ], [ 357516.950599998235703, 256998.111900001764297 ], [ 357541.926500000059605, 257000.638399999588728 ], [ 357541.244300000369549, 256986.067299999296665 ], [ 357522.753100000321865, 256979.583200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94313171, "LATITUDE": 18.34241361, "OBJECTID_1": 9070, "PARCEL_NO_": "105301033400", "Tax_Legal_": "ALTONA & WELGUNST 178-35B KRONPRINDSENS QTR", "Name": "MELCHOIR, REUBEN", "Address": "3596 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22000, "Improved_V": 39100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.092179570699997, "SHAPE_Area": 397.775222853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357522.753100000321865, 256979.583200000226498 ], [ 357501.020400002598763, 256974.972300000488758 ], [ 357499.233300000429153, 256995.433800000697374 ], [ 357507.287500001490116, 256996.55519999936223 ], [ 357509.702799998223782, 256996.997099999338388 ], [ 357516.950599998235703, 256998.111900001764297 ], [ 357522.753100000321865, 256979.583200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94178756, "LATITUDE": 18.34241633, "OBJECTID_1": 9001, "PARCEL_NO_": "105301021700", "Tax_Legal_": "82 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "ROSE, WENDELL", "Address": "P.O. BOX 30716", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15000, "Improved_V": 900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.503625917299999, "SHAPE_Area": 298.28851172100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357663.760600000619888, 256992.136300001293421 ], [ 357657.448600001633167, 256975.83049999922514 ], [ 357640.420699998736382, 256986.879000000655651 ], [ 357644.353399999439716, 256998.52140000090003 ], [ 357659.718299999833107, 256993.369800001382828 ], [ 357663.760600000619888, 256992.136300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202070800", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3D", "ACRE": ".14", "LONGITUDE": -64.95163286, "LATITUDE": 18.34241187, "OBJECTID_1": 8415, "PARCEL_NO_": "105202070800", "Tax_Legal_": "23-3D CONTANT 7BA SOUTHSIDE QTR.", "Name": "BARTON, N. & L. & GREGORY, G", "Address": "PO Box 52", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42900, "Improved_V": 110700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.86407874699999, "SHAPE_Area": 609.22207088499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356593.748099997639656, 256987.589000001549721 ], [ 356629.144599996507168, 256988.058400001376867 ], [ 356628.56870000064373, 256970.364900000393391 ], [ 356593.893700003623962, 256970.503299999982119 ], [ 356593.748099997639656, 256987.589000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201053500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95984995000001, "LATITUDE": 18.34235312, "OBJECTID_1": 7711, "PARCEL_NO_": "105201053500", "Tax_Legal_": "CONTANT 5-3 7A S S QTR", "Name": "ERNEST, TIMOTHY", "Address": "333 Marcus Garvey Blvd", "City": "Brooklyn", "State": "New York", "Zip": 11221, "Country": "United States", "Land_Value": 50600, "Improved_V": 113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.64196977899999, "SHAPE_Area": 686.78650248099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355757.052799999713898, 256950.566300000995398 ], [ 355716.627499997615814, 256963.112199999392033 ], [ 355716.611299999058247, 256965.011900000274181 ], [ 355757.587600000202656, 256982.445799998939037 ], [ 355757.052799999713898, 256950.566300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9433083, "LATITUDE": 18.34239122, "OBJECTID_1": 9072, "PARCEL_NO_": "105301033600", "Tax_Legal_": "ALTONA & WELGUNST 178-35A KRONPRINDSENS QTR", "Name": "ADELL CHAPMAN & NIOYONU OLUTOSIN", "Address": "49 Crittenden St NE", "City": "Washington", "State": "District of Columbia", "Zip": 20011, "Country": "United States", "Land_Value": 22000, "Improved_V": 39000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.279936434099994, "SHAPE_Area": 360.24384253699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357482.489600002765656, 256973.131900001317263 ], [ 357482.318800002336502, 256993.184399999678135 ], [ 357484.73589999973774, 256993.415300000458956 ], [ 357499.233300000429153, 256995.433800000697374 ], [ 357501.020400002598763, 256974.972300000488758 ], [ 357482.489600002765656, 256973.131900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201054100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96032722, "LATITUDE": 18.34239467, "OBJECTID_1": 7717, "PARCEL_NO_": "105201054100", "Tax_Legal_": "CONTANT 4-2 7A S S QTR", "Name": "RAMIREZ, NANCY", "Address": "6-37 CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61700, "Improved_V": 27100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.125188857, "SHAPE_Area": 647.21176208099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355708.598600000143051, 256959.035700000822544 ], [ 355676.333499997854233, 256960.249200001358986 ], [ 355676.968999996781349, 256980.308299999684095 ], [ 355707.612400002777576, 256980.136900000274181 ], [ 355708.598600000143051, 256959.035700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201065800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96612302, "LATITUDE": 18.34237535, "OBJECTID_1": 7786, "PARCEL_NO_": "105201065800", "Tax_Legal_": "LINDBERG BAY 63B-4 4A SOUTHSIDE", "Name": "HODGE, MILDRED E", "Address": "PO Box 9257", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.0157142411, "SHAPE_Area": 574.62087132399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355092.586599998176098, 256952.727299999445677 ], [ 355069.228699997067451, 256949.580899998545647 ], [ 355065.807499997317791, 256972.562100000679493 ], [ 355093.200499996542931, 256975.319400001317263 ], [ 355092.423000000417233, 256971.935499999672174 ], [ 355092.586599998176098, 256952.727299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94347649, "LATITUDE": 18.34237688, "OBJECTID_1": 9074, "PARCEL_NO_": "105301033800", "Tax_Legal_": "ALTONA & WELGUNST 178-36 KRONPRINDSENS QTR", "Name": "SIMEON, LOUIS", "Address": "PO Box 307106", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22400, "Improved_V": 40400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.515257524199995, "SHAPE_Area": 353.35048291499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357464.763300001621246, 256971.509199999272823 ], [ 357464.594300001859665, 256991.350600000470877 ], [ 357471.84570000320673, 256992.043200001120567 ], [ 357482.318800002336502, 256993.184399999678135 ], [ 357482.489600002765656, 256973.131900001317263 ], [ 357464.763300001621246, 256971.509199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201065500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9663305, "LATITUDE": 18.34235799, "OBJECTID_1": 7783, "PARCEL_NO_": "105201065500", "Tax_Legal_": "LINDBERG BAY 63B-3 4A SOUTHSIDE", "Name": "HUNTT, JR. ROMEO & IDONA", "Address": "5709 Duval Dr", "City": "Las Vegas", "State": "Nevada", "Zip": 89156, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.488131425600002, "SHAPE_Area": 438.96478397099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355069.228699997067451, 256949.580899998545647 ], [ 355053.924999997019768, 256947.555799998342991 ], [ 355044.053199999034405, 256970.484200000762939 ], [ 355065.807499997317791, 256972.562100000679493 ], [ 355069.228699997067451, 256949.580899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201061300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96570127, "LATITUDE": 18.34231222, "OBJECTID_1": 7739, "PARCEL_NO_": "105201061300", "Tax_Legal_": "LINDBERG BAY 21F SOUTHSIDE QTR", "Name": "LYDIA DELAGARDE", "Address": "15828 Seurat Dr", "City": "North Potomac", "State": "Maryland", "Zip": 208783440, "Country": "United States", "Land_Value": 52200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.48098817, "SHAPE_Area": 1847.3443573300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355091.859399996697903, 256943.433299999684095 ], [ 355092.586599998176098, 256952.727299999445677 ], [ 355092.423000000417233, 256971.935499999672174 ], [ 355119.848399996757507, 256970.893399998545647 ], [ 355125.496200002729893, 256970.517499998211861 ], [ 355156.958499997854233, 256968.875100001692772 ], [ 355156.396799996495247, 256940.161800000816584 ], [ 355091.859399996697903, 256943.433299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94364081000001, "LATITUDE": 18.34236376, "OBJECTID_1": 9076, "PARCEL_NO_": "105301034000", "Tax_Legal_": "ALTONA & WELGUNST 178-37 KRONPRINDSENS QTR", "Name": "THOMAS, ARTURO & OLYMPIA", "Address": "ALTONA 178-37", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22700, "Improved_V": 41500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.872810292699995, "SHAPE_Area": 338.28727515399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357464.763300001621246, 256971.509199999272823 ], [ 357447.843299999833107, 256969.893100000917912 ], [ 357447.825300000607967, 256972.003800000995398 ], [ 357447.672499999403954, 256989.945500001311302 ], [ 357452.506800003349781, 256990.407299999147654 ], [ 357464.594300001859665, 256991.350600000470877 ], [ 357464.763300001621246, 256971.509199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94161716000001, "LATITUDE": 18.34233318, "OBJECTID_1": 9002, "PARCEL_NO_": "105301021800", "Tax_Legal_": "58 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "FUELLEN, JOHN & KATHLEEN", "Address": "P O BOX 2001", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.001824631100007, "SHAPE_Area": 422.540539438 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357672.867399998009205, 256964.346500001847744 ], [ 357657.448600001633167, 256975.83049999922514 ], [ 357663.760600000619888, 256992.136300001293421 ], [ 357681.548100002110004, 256986.582400001585484 ], [ 357680.80290000140667, 256979.399099998176098 ], [ 357677.6621999964118, 256969.451999999582767 ], [ 357672.867399998009205, 256964.346500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94380787, "LATITUDE": 18.34235412, "OBJECTID_1": 9078, "PARCEL_NO_": "105301034200", "Tax_Legal_": "ALTONA & WELGUNST 178-38 KRONPRINDSENS QTR", "Name": "GRANT, KARIM & NICAISE V. THOMAS GRANT", "Address": "178-38 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22400, "Improved_V": 16600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.974544529900001, "SHAPE_Area": 343.98882693299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357430.750699996948242, 256988.540500000119209 ], [ 357447.672499999403954, 256989.945500001311302 ], [ 357447.825300000607967, 256972.003800000995398 ], [ 357442.181100003421307, 256971.957699999213219 ], [ 357442.204499997198582, 256969.213599998503923 ], [ 357428.491800002753735, 256969.734700001776218 ], [ 357430.750699996948242, 256988.540500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301051800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94528444, "LATITUDE": 18.34236358, "OBJECTID_1": 9155, "PARCEL_NO_": "105301051800", "Tax_Legal_": "149 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "WILLIAMS, CALMA", "Address": "3149 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15800, "Improved_V": 49400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.839092122400004, "SHAPE_Area": 310.62902882399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357293.002599999308586, 256972.003299999982119 ], [ 357273.661799997091293, 256970.578400000929832 ], [ 357271.914399996399879, 256986.396099999547005 ], [ 357291.253300003707409, 256988.0320999994874 ], [ 357293.002599999308586, 256972.003299999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202071000", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5E", "ACRE": "0.14", "LONGITUDE": -64.95201665, "LATITUDE": 18.34235727, "OBJECTID_1": 8417, "PARCEL_NO_": "105202071000", "Tax_Legal_": "CONTANT 23E-5E S S QTR. 7BA", "Name": "ABRAHAM, LENO & GERTRUDE", "Address": "3139 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026108, "Country": "United States", "Land_Value": 45700, "Improved_V": 266100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.682379172, "SHAPE_Area": 658.19062240799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356558.895199999213219, 256962.629700001329184 ], [ 356554.008699998259544, 256962.451400000602007 ], [ 356553.995800003409386, 256964.817499998956919 ], [ 356553.920900002121925, 256978.531500000506639 ], [ 356553.913400001823902, 256979.899099998176098 ], [ 356553.902900002896786, 256981.818999998271465 ], [ 356588.340000003576279, 256983.147399999201298 ], [ 356588.157799996435642, 256981.222100000828505 ], [ 356587.439599998295307, 256970.872600000351667 ], [ 356588.306999996304512, 256963.702500000596046 ], [ 356558.895199999213219, 256962.629700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301051700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94546911, "LATITUDE": 18.34235025, "OBJECTID_1": 9154, "PARCEL_NO_": "105301051700", "Tax_Legal_": "148 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "Cousar, Bernice c.&Kenyetta N.", "Address": "4161 Taulding Ave.", "City": "Bronx", "State": "Nevada", "Zip": 10466, "Country": "United States", "Land_Value": 15800, "Improved_V": 42300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.967637681100001, "SHAPE_Area": 310.37388697300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357273.661799997091293, 256970.578400000929832 ], [ 357253.514799997210503, 256969.146899998188019 ], [ 357252.577200002968311, 256984.549100000411272 ], [ 357271.914399996399879, 256986.396099999547005 ], [ 357273.661799997091293, 256970.578400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201066200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96528667, "LATITUDE": 18.34226978, "OBJECTID_1": 7788, "PARCEL_NO_": "105201066200", "Tax_Legal_": "21j LINDBERG BAY 4A SOUTHSIDE QTR", "Name": "KHAN, LEEANN Z.", "Address": "8446 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9900, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.836129332, "SHAPE_Area": 597.00281359600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355180.40089999884367, 256962.100900001823902 ], [ 355181.405100002884865, 256938.888799998909235 ], [ 355156.396799996495247, 256940.161800000816584 ], [ 355156.958499997854233, 256968.875100001692772 ], [ 355160.991899996995926, 256968.697000000625849 ], [ 355161.044100001454353, 256962.575699999928474 ], [ 355168.28830000013113, 256964.112700000405312 ], [ 355173.133299998939037, 256963.30799999833107 ], [ 355180.40089999884367, 256962.100900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301036100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9424592, "LATITUDE": 18.34222354, "OBJECTID_1": 9091, "PARCEL_NO_": "105301036100", "Tax_Legal_": "ALTONA & WELGUNST 178-223 KRONPRINDSENS QTR", "Name": "AL-ADIL, ALEX", "Address": "PO Box 302021", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.999929329, "SHAPE_Area": 975.28809523100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357565.789700001478195, 256944.471700001507998 ], [ 357559.202500000596046, 256960.460900001227856 ], [ 357576.093800000846386, 256965.454300001263618 ], [ 357570.287699997425079, 256984.405200000852346 ], [ 357579.958099998533726, 256985.117600001394749 ], [ 357588.802299998700619, 256988.145300000905991 ], [ 357592.029399998486042, 256987.96059999987483 ], [ 357596.177799999713898, 256974.273499999195337 ], [ 357599.538000002503395, 256958.469000000506639 ], [ 357565.789700001478195, 256944.471700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202027500", "MAP": "D9-8228-T009", "PARCEL_NAM": "41-2", "ACRE": ".27", "LONGITUDE": -64.95581839, "LATITUDE": 18.34203561, "OBJECTID_1": 8174, "PARCEL_NO_": "105202027500", "Tax_Legal_": "41-2 CONTANT 7A SOUTHSIDE QTR", "Name": "GONZALEZ, FELICIA", "Address": "PO BOX 308267", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 89900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.593677034, "SHAPE_Area": 1365.8438455400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356180.966099999845028, 256952.649099998176098 ], [ 356180.730400003492832, 256903.61939999833703 ], [ 356162.394100002944469, 256896.125399999320507 ], [ 356156.795000001788139, 256976.00279999896884 ], [ 356173.85700000077486, 256960.94370000064373 ], [ 356180.966099999845028, 256952.649099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94178158, "LATITUDE": 18.34225494, "OBJECTID_1": 9000, "PARCEL_NO_": "105301021600", "Tax_Legal_": "57 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "HARRIGAN, JAMES", "Address": "3228 Anns Fancy57", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38400, "Improved_V": 103400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.452425495900002, "SHAPE_Area": 508.15474822300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357652.741999998688698, 256960.382100000977516 ], [ 357635.688900001347065, 256974.385800000280142 ], [ 357640.420699998736382, 256986.879000000655651 ], [ 357657.448600001633167, 256975.83049999922514 ], [ 357672.867399998009205, 256964.346500001847744 ], [ 357660.042000003159046, 256955.375599998980761 ], [ 357652.741999998688698, 256960.382100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301051600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9457517, "LATITUDE": 18.3423334, "OBJECTID_1": 9153, "PARCEL_NO_": "105301051600", "Tax_Legal_": "133 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "OGANDO, EDWARD RAFAEL", "Address": "133 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14800, "Improved_V": 57400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.759630378699995, "SHAPE_Area": 303.310453736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357244.64360000193119, 256969.285399999469519 ], [ 357222.882100000977516, 256968.051899999380112 ], [ 357221.154399998486042, 256981.547699999064207 ], [ 357243.720399998128414, 256982.999000001698732 ], [ 357244.64360000193119, 256969.285399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94261234, "LATITUDE": 18.3422875, "OBJECTID_1": 9055, "PARCEL_NO_": "105301031900", "Tax_Legal_": "ALTONA & WELGUNST 178-23 KRONPRINDSENS QTR", "Name": "PADILLA, HETHELINDA HAYNES", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20500, "Improved_V": 42200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.137976624800004, "SHAPE_Area": 352.50004049099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357559.202500000596046, 256960.460900001227856 ], [ 357554.975000001490116, 256983.435499999672174 ], [ 357570.287699997425079, 256984.405200000852346 ], [ 357576.093800000846386, 256965.454300001263618 ], [ 357559.202500000596046, 256960.460900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9427887, "LATITUDE": 18.34224938, "OBJECTID_1": 9057, "PARCEL_NO_": "105301032100", "Tax_Legal_": "ALTONA & WELGUNST 178-22 KRONPRINDSENS QTR.", "Name": "HARLEY, HUGO", "Address": "3598 Altona&Welgunst178-22", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18200, "Improved_V": 40200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.36493136, "SHAPE_Area": 493.08928070100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357546.323100000619888, 256957.822399999946356 ], [ 357535.857299998402596, 256955.836899999529123 ], [ 357534.075599998235703, 256975.665100000798702 ], [ 357554.975000001490116, 256983.435499999672174 ], [ 357559.202500000596046, 256960.460900001227856 ], [ 357546.323100000619888, 256957.822399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201068600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96505656, "LATITUDE": 18.34224549, "OBJECTID_1": 7811, "PARCEL_NO_": "105201068600", "Tax_Legal_": "LINDBERG BAY 21S S S QTR.", "Name": "DIAZ, ANACLATUS & ELAINE", "Address": "P.O. BOX 3420", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13100, "Improved_V": 144500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.5077539296, "SHAPE_Area": 528.49475212899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355205.432599999010563, 256958.08390000090003 ], [ 355204.800700001418591, 256937.602600000798702 ], [ 355181.405100002884865, 256938.888799998909235 ], [ 355180.40089999884367, 256962.100900001823902 ], [ 355205.432599999010563, 256958.08390000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94422484, "LATITUDE": 18.34223376, "OBJECTID_1": 9046, "PARCEL_NO_": "105301031000", "Tax_Legal_": "ALTONA & WELGUNST 178-10 KRONPRINDSENS GADE", "Name": "BONELLI, ANITA & JOYCELYN", "Address": "3544 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17100, "Improved_V": 71300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.896746024, "SHAPE_Area": 648.49179625299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357410.83389999717474, 256960.090900000184774 ], [ 357389.986599996685982, 256946.199200000613928 ], [ 357383.36710000038147, 256965.987900000065565 ], [ 357382.544600002467632, 256967.881000000983477 ], [ 357380.888800002634525, 256972.933699999004602 ], [ 357379.22580000013113, 256978.830699998885393 ], [ 357400.98369999974966, 256980.486400000751019 ], [ 357410.83389999717474, 256960.090900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201064700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96411388, "LATITUDE": 18.34223129, "OBJECTID_1": 7775, "PARCEL_NO_": "105201064700", "Tax_Legal_": "LINDBERG BAY 21B SOUTHSIDE QTR", "Name": "JEAN M WEBSTER TRUST", "Address": "PO Box 10027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.64639762199999, "SHAPE_Area": 730.53014490700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355278.194899998605251, 256935.881299998611212 ], [ 355277.190800003707409, 256959.093400001525879 ], [ 355306.991999998688698, 256963.136999998241663 ], [ 355305.616700001060963, 256935.261399999260902 ], [ 355278.194899998605251, 256935.881299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201053600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9599759, "LATITUDE": 18.34220588, "OBJECTID_1": 7712, "PARCEL_NO_": "105201053600", "Tax_Legal_": "CONTANT 5-4 7A S S QTR", "Name": "CUEVAS, LEONCIO & FANNY ANGELA", "Address": "3005 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57500, "Improved_V": 126100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.385530914, "SHAPE_Area": 584.15146721300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355716.627499997615814, 256963.112199999392033 ], [ 355757.052799999713898, 256950.566300000995398 ], [ 355714.456699997186661, 256933.963500000536442 ], [ 355716.758799999952316, 256947.703400000929832 ], [ 355716.627499997615814, 256963.112199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201064600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96442243, "LATITUDE": 18.34221375, "OBJECTID_1": 7774, "PARCEL_NO_": "105201064600", "Tax_Legal_": "LINDBERG BAY ESTATE 21C SOUTHSIDE QTR", "Name": "WEBSTER, JEAN M", "Address": "PO Box 10027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19700, "Improved_V": 72800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.98372328000001, "SHAPE_Area": 758.95495591600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355278.194899998605251, 256935.881299998611212 ], [ 355238.674800001084805, 256936.824400000274181 ], [ 355241.745399996638298, 256955.003600001335144 ], [ 355245.780599996447563, 256954.614399999380112 ], [ 355277.190800003707409, 256959.093400001525879 ], [ 355278.194899998605251, 256935.881299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201068500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96477506, "LATITUDE": 18.3422244, "OBJECTID_1": 7810, "PARCEL_NO_": "105201068500", "Tax_Legal_": "LINDBERG BAY 21T S S QTR.", "Name": "ALCANTARA, PEDRO L. & ELSA", "Address": "1011 Amber Dr", "City": "Columbus", "State": "Georgia", "Zip": 31907, "Country": "United States", "Land_Value": 17500, "Improved_V": 104600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.11900542, "SHAPE_Area": 696.48922517000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355238.674800001084805, 256936.824400000274181 ], [ 355204.800700001418591, 256937.602600000798702 ], [ 355205.432599999010563, 256958.08390000090003 ], [ 355218.346199996769428, 256956.711899999529123 ], [ 355226.405699998140335, 256957.200100000947714 ], [ 355229.620200000703335, 256958.493000000715256 ], [ 355235.287699997425079, 256955.795099999755621 ], [ 355241.745399996638298, 256955.003600001335144 ], [ 355238.674800001084805, 256936.824400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94298568000001, "LATITUDE": 18.34220699, "OBJECTID_1": 9058, "PARCEL_NO_": "105301032200", "Tax_Legal_": "ALTONA & WELGUNST 178-21 KRONPRINDSENS QTR", "Name": "SMITH, ANNE E. & JAMES, WINIFRED", "Address": "2719 Young Ave", "City": "Bronx", "State": "New York", "Zip": 10469, "Country": "United States", "Land_Value": 18600, "Improved_V": 33800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.827487407899994, "SHAPE_Area": 365.691099313 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357535.857299998402596, 256955.836899999529123 ], [ 357518.94990000128746, 256952.743200000375509 ], [ 357513.159999996423721, 256969.794399999082088 ], [ 357534.075599998235703, 256975.665100000798702 ], [ 357535.857299998402596, 256955.836899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201054000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96032317, "LATITUDE": 18.34221846, "OBJECTID_1": 7716, "PARCEL_NO_": "105201054000", "Tax_Legal_": "CONTANT ESTATE 4-3 7A SOUTHSIDE QTR", "Name": "GLASFORD, ARABELLA & JOSEPH", "Address": "PO Box 303613", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53700, "Improved_V": 31600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.398653214399999, "SHAPE_Area": 580.74594831599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355676.445000000298023, 256947.162399999797344 ], [ 355676.333499997854233, 256960.249200001358986 ], [ 355708.598600000143051, 256959.035700000822544 ], [ 355708.665100000798702, 256951.225699998438358 ], [ 355707.108199998736382, 256944.669100001454353 ], [ 355702.327899999916553, 256937.875 ], [ 355697.495399996638298, 256937.202199999243021 ], [ 355676.445000000298023, 256947.162399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94127621, "LATITUDE": 18.34215099, "OBJECTID_1": 9014, "PARCEL_NO_": "105301022900", "Tax_Legal_": "49 ANNAS FANCY CROWN PRINCE QTR", "Name": "STOLLIARD, ALBERTO", "Address": "PO Box 1604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46100, "Improved_V": 9000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.090936528, "SHAPE_Area": 656.65918391900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357722.212499998509884, 256945.962999999523163 ], [ 357708.542999997735023, 256941.418200001120567 ], [ 357684.891999997198582, 256972.677600000053644 ], [ 357685.682099997997284, 256974.58390000090003 ], [ 357688.900200001895428, 256975.454599998891354 ], [ 357696.993900001049042, 256971.932199999690056 ], [ 357705.075000002980232, 256969.88740000128746 ], [ 357717.182300001382828, 256968.508900001645088 ], [ 357718.803900003433228, 256967.466699998825788 ], [ 357719.694700002670288, 256957.552600000053644 ], [ 357722.212499998509884, 256945.962999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301052100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94527314, "LATITUDE": 18.34223053, "OBJECTID_1": 9158, "PARCEL_NO_": "105301052100", "Tax_Legal_": "151 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "MILLS, MELVIN", "Address": "PO Box 367", "City": "Tarpon Springs", "State": "Florida", "Zip": 34688, "Country": "United States", "Land_Value": 15800, "Improved_V": 48600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.854023919100001, "SHAPE_Area": 262.46029541500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357293.923900000751019, 256958.500799998641014 ], [ 357274.583200000226498, 256957.0760000012815 ], [ 357273.661799997091293, 256970.578400000929832 ], [ 357293.002599999308586, 256972.003299999982119 ], [ 357293.923900000751019, 256958.500799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94189938, "LATITUDE": 18.34217344, "OBJECTID_1": 8999, "PARCEL_NO_": "105301021500", "Tax_Legal_": "56 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "LIBURD, WENDALL & TESSA", "Address": "PO Box 345", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 19300, "Improved_V": 60600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.701093867300003, "SHAPE_Area": 305.52169426799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357652.741999998688698, 256960.382100000977516 ], [ 357642.367799997329712, 256947.631599999964237 ], [ 357639.925499998033047, 256950.355799999088049 ], [ 357629.335600003600121, 256962.93470000103116 ], [ 357635.688900001347065, 256974.385800000280142 ], [ 357652.741999998688698, 256960.382100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201044700", "MAP": "G9-263-T53", "PARCEL_NAM": "20A", "ACRE": "0.25", "LONGITUDE": -64.96362191, "LATITUDE": 18.34217217, "OBJECTID_1": 7625, "PARCEL_NO_": "105201044700", "Tax_Legal_": "LINDBERG BAY 20A SOUTHSIDE QTR", "Name": "LANS, BRENDA F", "Address": "PO Box 306527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 163400, "Improved_V": 117700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.530038346, "SHAPE_Area": 1266.4255405500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355374.203699998557568, 256929.912099998444319 ], [ 355314.502400003373623, 256933.434300001710653 ], [ 355315.931599996984005, 256954.97749999910593 ], [ 355373.212099999189377, 256951.646600000560284 ], [ 355374.203699998557568, 256929.912099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201061100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96617455000001, "LATITUDE": 18.34218699, "OBJECTID_1": 7737, "PARCEL_NO_": "105201061100", "Tax_Legal_": "LINDBERG BAY 63B-5 4A SOUTHSIDE QTR", "Name": "LLOYD, HERMAN A & MAUDE", "Address": "PO Box 7728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14200, "Improved_V": 104100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.10743403, "SHAPE_Area": 607.81154859900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355091.931400001049042, 256934.990100000053644 ], [ 355060.515699997544289, 256931.144400000572205 ], [ 355053.924999997019768, 256947.555799998342991 ], [ 355069.228699997067451, 256949.580899998545647 ], [ 355092.586599998176098, 256952.727299999445677 ], [ 355091.859399996697903, 256943.433299999684095 ], [ 355091.931400001049042, 256934.990100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301052000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94546004, "LATITUDE": 18.34221908, "OBJECTID_1": 9157, "PARCEL_NO_": "105301052000", "Tax_Legal_": "150 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "RUAN, IRAD & R. ANDINA RUAN", "Address": "PO Box 303598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15800, "Improved_V": 138600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.463187028999997, "SHAPE_Area": 273.35183689799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357274.583200000226498, 256957.0760000012815 ], [ 357254.436200000345707, 256955.644499998539686 ], [ 357253.514799997210503, 256969.146899998188019 ], [ 357273.661799997091293, 256970.578400000929832 ], [ 357274.583200000226498, 256957.0760000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301051900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94573824, "LATITUDE": 18.34220144, "OBJECTID_1": 9156, "PARCEL_NO_": "105301051900", "Tax_Legal_": "132 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "BERNE, ISABELLE-LIFE ESTATE", "Address": "PO Box 302874", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 62200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.781721430399998, "SHAPE_Area": 339.30927302200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357246.389300003647804, 256953.678800001740456 ], [ 357224.626000002026558, 256952.656300000846386 ], [ 357222.882100000977516, 256968.051899999380112 ], [ 357244.64360000193119, 256969.285399999469519 ], [ 357246.389300003647804, 256953.678800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202071100", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5F", "ACRE": "0.14", "LONGITUDE": -64.95200444, "LATITUDE": 18.34219412, "OBJECTID_1": 8418, "PARCEL_NO_": "105202071100", "Tax_Legal_": "CONTANT 23-5F 7BA S S QTR", "Name": "DANIEL, LILLIAN", "Address": "8421 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46600, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.580163298, "SHAPE_Area": 561.81284186899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356590.906499996781349, 256949.49439999833703 ], [ 356559.512100003659725, 256943.401399999856949 ], [ 356558.714299999177456, 256946.162900000810623 ], [ 356556.667300000786781, 256953.248799998313189 ], [ 356554.008699998259544, 256962.451400000602007 ], [ 356558.895199999213219, 256962.629700001329184 ], [ 356588.306999996304512, 256963.702500000596046 ], [ 356590.839299999177456, 256950.424400001764297 ], [ 356590.906499996781349, 256949.49439999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94141861, "LATITUDE": 18.34206804, "OBJECTID_1": 9013, "PARCEL_NO_": "105301022800", "Tax_Legal_": "50 ANNAS FANCY CROWN PRINCE QTR", "Name": "VIGILANT, L & PERDEREAUX, S", "Address": "7 Glenbrook Ave", "City": "Yonkers", "State": "New York", "Zip": 10705, "Country": "United States", "Land_Value": 35400, "Improved_V": 49800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.582802284, "SHAPE_Area": 539.81322713700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357684.891999997198582, 256972.677600000053644 ], [ 357708.542999997735023, 256941.418200001120567 ], [ 357683.610200002789497, 256933.825899999588728 ], [ 357681.884300000965595, 256947.110599998384714 ], [ 357682.539599999785423, 256964.847800001502037 ], [ 357684.891999997198582, 256972.677600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94318114, "LATITUDE": 18.34214827, "OBJECTID_1": 9059, "PARCEL_NO_": "105301032300", "Tax_Legal_": "ALTONA & WELGUNST 178-20 KRONPRINDSENS QTR", "Name": "ROJAS, HAROLD", "Address": "PO Box 5404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24100, "Improved_V": 24200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.061564292900002, "SHAPE_Area": 515.47403972300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357518.94990000128746, 256952.743200000375509 ], [ 357512.558700002729893, 256945.724800001829863 ], [ 357502.07660000026226, 256945.638999998569489 ], [ 357493.999099999666214, 256947.261599998921156 ], [ 357492.219300001859665, 256966.878800000995398 ], [ 357513.159999996423721, 256969.794399999082088 ], [ 357518.94990000128746, 256952.743200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301040400", "MAP": "G9-1117-T68", "PARCEL_NAM": "190", "ACRE": null, "LONGITUDE": -64.94502318000001, "LATITUDE": 18.34221792, "OBJECTID_1": 9095, "PARCEL_NO_": "105301040400", "Tax_Legal_": "ALTONA & WELGUNST 190 & 191 KRONPRINDSENS QTR", "Name": "EDRIS GEORGE FAM SPENDTHRIFT TR", "Address": "8370 NW 144th St", "City": "MIAMI LAKES", "State": "Florida", "Zip": 33016, "Country": "United States", "Land_Value": 10500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.674608739099995, "SHAPE_Area": 266.02113032300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357324.354000002145767, 256956.490899998694658 ], [ 357303.009300000965595, 256955.187199998646975 ], [ 357301.929499998688698, 256965.321299999952316 ], [ 357301.299400001764297, 256971.925900001078844 ], [ 357313.067400000989437, 256973.290199998766184 ], [ 357315.624300003051758, 256966.911100000143051 ], [ 357317.265699997544289, 256963.546999998390675 ], [ 357324.354000002145767, 256956.490899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9433689, "LATITUDE": 18.34214708, "OBJECTID_1": 9061, "PARCEL_NO_": "105301032500", "Tax_Legal_": "ALTONA & WELGUNST 178-19 KRONPRINDSENS QTR", "Name": "CARTIER, ADOSIA", "Address": "178-19 ALTONA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 37000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.295049827900002, "SHAPE_Area": 299.56582533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357493.999099999666214, 256947.261599998921156 ], [ 357485.928800001740456, 256948.039900001138449 ], [ 357477.871100001037121, 256947.340700000524521 ], [ 357476.103799998760223, 256965.48030000180006 ], [ 357492.219300001859665, 256966.878800000995398 ], [ 357493.999099999666214, 256947.261599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94207858, "LATITUDE": 18.34210199, "OBJECTID_1": 8985, "PARCEL_NO_": "105301020600", "Tax_Legal_": "83 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "Venzen, M.,K.,J & L. Alcala & N. Deutschmann", "Address": "PO Box 1252", "City": "Leesburg", "State": "Virginia", "Zip": 20177, "Country": "United States", "Land_Value": 27900, "Improved_V": 46300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.734899241899996, "SHAPE_Area": 516.15188395899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357639.925499998033047, 256950.355799999088049 ], [ 357611.799900002777576, 256938.937699999660254 ], [ 357606.796599999070168, 256958.317299999296665 ], [ 357627.688799999654293, 256966.932000000029802 ], [ 357629.335600003600121, 256962.93470000103116 ], [ 357639.925499998033047, 256950.355799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94358225000001, "LATITUDE": 18.34210188, "OBJECTID_1": 9062, "PARCEL_NO_": "105301032600", "Tax_Legal_": "ALTONA & WELGUNST 178-18 KRONPRINDSENS QTR", "Name": "LARSEN, PEARLA (LIFE ESTATE)", "Address": "PO BOX 2250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42900, "Improved_V": 124600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.713928255, "SHAPE_Area": 699.04075637400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357477.871100001037121, 256947.340700000524521 ], [ 357465.875299997627735, 256935.632399998605251 ], [ 357444.826700001955032, 256945.381499998271465 ], [ 357450.326999999582767, 256962.313999999314547 ], [ 357456.775700002908707, 256962.577899999916553 ], [ 357457.569399997591972, 256964.061999998986721 ], [ 357476.103799998760223, 256965.48030000180006 ], [ 357477.871100001037121, 256947.340700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201053700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95986321, "LATITUDE": 18.34208908, "OBJECTID_1": 7713, "PARCEL_NO_": "105201053700", "Tax_Legal_": "CONTANT 5-5 7A S S QTR", "Name": "JEFFERS, EMERSON & MILLICENT", "Address": "PO Box 304686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53300, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.21657449, "SHAPE_Area": 564.83416078200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355714.456699997186661, 256933.963500000536442 ], [ 355757.052799999713898, 256950.566300000995398 ], [ 355757.250600002706051, 256927.347600001841784 ], [ 355744.349600002169609, 256927.241999998688698 ], [ 355721.73870000243187, 256931.067800000309944 ], [ 355715.277400001883507, 256932.281399998813868 ], [ 355714.456699997186661, 256933.963500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202052500", "MAP": "G9-426-T56", "PARCEL_NAM": "22-18", "ACRE": "0.25", "LONGITUDE": -64.95230842, "LATITUDE": 18.34206129, "OBJECTID_1": 8324, "PARCEL_NO_": "105202052500", "Tax_Legal_": "CONTANT 22 18 7BA SOUTHSIDE QTR", "Name": "HARRIGAN, CECIL C", "Address": "PO Box 502326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 65700, "Improved_V": 133500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.29623983899999, "SHAPE_Area": 905.71612159200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356559.558499999344349, 256930.747699998319149 ], [ 356521.61540000140667, 256924.923599999397993 ], [ 356522.41780000180006, 256936.354400001466274 ], [ 356522.291900001466274, 256951.129900000989437 ], [ 356556.667300000786781, 256953.248799998313189 ], [ 356558.714299999177456, 256946.162900000810623 ], [ 356559.512100003659725, 256943.401399999856949 ], [ 356561.072200000286102, 256931.062699999660254 ], [ 356559.558499999344349, 256930.747699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9590787, "LATITUDE": 18.34195605, "OBJECTID_1": 7683, "PARCEL_NO_": "105201050700", "Tax_Legal_": "108 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "FUERTES, GLORIA B", "Address": "2602 E 26th St", "City": "Brooklyn", "State": "New York", "Zip": 11235, "Country": "United States", "Land_Value": 182400, "Improved_V": 700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.72767767, "SHAPE_Area": 2331.1596716200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355795.9391999989748, 256929.353000000119209 ], [ 355814.367499999701977, 256943.224899999797344 ], [ 355820.794699996709824, 256946.021800000220537 ], [ 355826.429899998009205, 256947.123399998992682 ], [ 355834.493000000715256, 256947.189300000667572 ], [ 355848.214699998497963, 256945.612900000065565 ], [ 355851.466899998486042, 256942.473099999129772 ], [ 355853.352899998426437, 256910.402300000190735 ], [ 355853.379799999296665, 256907.236099999397993 ], [ 355850.172600001096725, 256905.098999999463558 ], [ 355823.589400000870228, 256901.926100000739098 ], [ 355796.218000002205372, 256896.635800000280142 ], [ 355795.9391999989748, 256929.353000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94413281, "LATITUDE": 18.34206344, "OBJECTID_1": 9045, "PARCEL_NO_": "105301030900", "Tax_Legal_": "ALTONA & WELGUNST 178-9 KRONPRINDSENS QTR.", "Name": "LANCLOS, IRENE E", "Address": "14508 Whistle Stop Ct", "City": "Brandywine", "State": "Maryland", "Zip": 20613, "Country": "United States", "Land_Value": 14500, "Improved_V": 37200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.787341569500001, "SHAPE_Area": 350.79654180799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357417.359899997711182, 256951.278400000184774 ], [ 357403.000900000333786, 256933.006900001317263 ], [ 357389.986599996685982, 256946.199200000613928 ], [ 357410.83389999717474, 256960.090900000184774 ], [ 357417.359899997711182, 256951.278400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301052400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94526346000001, "LATITUDE": 18.34209751, "OBJECTID_1": 9161, "PARCEL_NO_": "105301052400", "Tax_Legal_": "153 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "POTTER, LUNA", "Address": "PO Box 5143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15800, "Improved_V": 61100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.357204889100004, "SHAPE_Area": 314.28837148899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357295.671400003135204, 256942.683100000023842 ], [ 357275.524400003254414, 256941.251600001007318 ], [ 357274.583200000226498, 256957.0760000012815 ], [ 357293.923900000751019, 256958.500799998641014 ], [ 357295.671400003135204, 256942.683100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94271256, "LATITUDE": 18.34207249, "OBJECTID_1": 9054, "PARCEL_NO_": "105301031800", "Tax_Legal_": "ALTONA & WELGUNST 178-49 KRONPRINDSENS QTR.", "Name": "HODGE, DELMA G.", "Address": "PO Box 302021", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34600, "Improved_V": 34500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.314062027600002, "SHAPE_Area": 308.41518399799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357547.307499997317791, 256936.932199999690056 ], [ 357546.323100000619888, 256957.822399999946356 ], [ 357559.202500000596046, 256960.460900001227856 ], [ 357565.789700001478195, 256944.471700001507998 ], [ 357547.307499997317791, 256936.932199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94180074000001, "LATITUDE": 18.34208722, "OBJECTID_1": 9007, "PARCEL_NO_": "105301022300", "Tax_Legal_": "56A ANNAS FANCY CROWN PRINCE QTR", "Name": "FELIX, LELIA EDLAM", "Address": "P.O. BOX 2001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8300, "Improved_V": 77400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.514875607500002, "SHAPE_Area": 135.99601737899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357648.86150000244379, 256942.618500001728535 ], [ 357642.367799997329712, 256947.631599999964237 ], [ 357652.741999998688698, 256960.382100000977516 ], [ 357660.042000003159046, 256955.375599998980761 ], [ 357654.442699998617172, 256950.052400000393391 ], [ 357648.86150000244379, 256942.618500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301052300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94545054, "LATITUDE": 18.34208702, "OBJECTID_1": 9160, "PARCEL_NO_": "105301052300", "Tax_Legal_": "152 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "LESLIE, WARREN & SEGRID & MCG", "Address": "PO Box 12", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15800, "Improved_V": 46900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.357204889599998, "SHAPE_Area": 314.28837149399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357275.524400003254414, 256941.251600001007318 ], [ 357256.183700002729893, 256939.826799999922514 ], [ 357254.436200000345707, 256955.644499998539686 ], [ 357274.583200000226498, 256957.0760000012815 ], [ 357275.524400003254414, 256941.251600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202071300", "MAP": "D9-2286-T83", "PARCEL_NAM": "23-5G", "ACRE": "0.14", "LONGITUDE": -64.95197012, "LATITUDE": 18.34203564, "OBJECTID_1": 8420, "PARCEL_NO_": "105202071300", "Tax_Legal_": "23-5G ESTATE CONTANT 7BA SOUTHSIDE QTR.", "Name": "CHARLES, CYNTHIA HILARINE", "Address": "PO Box 6142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46600, "Improved_V": 57300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.22058252, "SHAPE_Area": 583.84589151800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356571.439800001680851, 256926.832400001585484 ], [ 356561.840400002896786, 256924.986400000751019 ], [ 356561.566500000655651, 256927.153099998831749 ], [ 356559.512100003659725, 256943.401399999856949 ], [ 356590.906499996781349, 256949.49439999833703 ], [ 356592.254100002348423, 256930.835200000554323 ], [ 356571.439800001680851, 256926.832400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94293441000001, "LATITUDE": 18.34203403, "OBJECTID_1": 9056, "PARCEL_NO_": "105301032000", "Tax_Legal_": "ALTONA & WELGUNST 178-48 KRONPRINDSENS QTR", "Name": "HODGE, DELMA G", "Address": "P.O. BOX 2021", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43800, "Improved_V": 40500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.30247519, "SHAPE_Area": 642.78807832099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357547.307499997317791, 256936.932199999690056 ], [ 357517.508100003004074, 256932.677499998360872 ], [ 357512.558700002729893, 256945.724800001829863 ], [ 357518.94990000128746, 256952.743200000375509 ], [ 357535.857299998402596, 256955.836899999529123 ], [ 357546.323100000619888, 256957.822399999946356 ], [ 357547.307499997317791, 256936.932199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202058800", "MAP": "G9-416-T56", "PARCEL_NAM": "22-20", "ACRE": "0.27", "LONGITUDE": -64.95268341000001, "LATITUDE": 18.34178281, "OBJECTID_1": 8386, "PARCEL_NO_": "105202058800", "Tax_Legal_": "CONTANT 22 2O 7BA SOUTHSIDE QTR", "Name": "FREDERICK, HARLEY", "Address": "PO Box 10423", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71000, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.78806295499999, "SHAPE_Area": 1044.6983080499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356485.411899998784065, 256926.130100000649691 ], [ 356515.508699998259544, 256927.101399999111891 ], [ 356515.315600000321865, 256918.142200000584126 ], [ 356514.548900000751019, 256913.491900000721216 ], [ 356516.325099997222424, 256894.296900000423193 ], [ 356497.8429000005126, 256886.757399998605251 ], [ 356493.712300002574921, 256885.170699998736382 ], [ 356485.946000002324581, 256908.127199999988079 ], [ 356485.559399999678135, 256908.821600001305342 ], [ 356485.411899998784065, 256926.130100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301052200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94572502, "LATITUDE": 18.34207105, "OBJECTID_1": 9159, "PARCEL_NO_": "105301052200", "Tax_Legal_": "131 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "FRANCIS, MAXINE", "Address": "6471 NW 21st Ct", "City": "SUNRISE", "State": "Florida", "Zip": 33313, "Country": "United States", "Land_Value": 14800, "Improved_V": 37700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.758810424800004, "SHAPE_Area": 285.18289682800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357247.307099997997284, 256940.598499998450279 ], [ 357226.355499997735023, 256938.949400000274181 ], [ 357225.462899997830391, 256949.074599999934435 ], [ 357224.626000002026558, 256952.656300000846386 ], [ 357246.389300003647804, 256953.678800001740456 ], [ 357247.307099997997284, 256940.598499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94164358, "LATITUDE": 18.34200222, "OBJECTID_1": 8998, "PARCEL_NO_": "105301021400", "Tax_Legal_": "ANNAS FANCY 55 CROWN PRINCE QUARTER", "Name": "FELIX, LELIA E & DAHLIA E. ISAACS", "Address": "P O BOX 2001", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21500, "Improved_V": 58900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.966654481500001, "SHAPE_Area": 396.66847804000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357677.989399999380112, 256931.035599999129772 ], [ 357652.954199999570847, 256935.474800001829863 ], [ 357653.731700003147125, 256938.85869999974966 ], [ 357659.314800001680851, 256946.081500001251698 ], [ 357663.308600001037121, 256950.547200001776218 ], [ 357671.321299999952316, 256956.523400001227856 ], [ 357673.740299999713898, 256956.543200001120567 ], [ 357675.361900001764297, 256955.500999998301268 ], [ 357677.989399999380112, 256931.035599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201061200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96613643000001, "LATITUDE": 18.34199245, "OBJECTID_1": 7738, "PARCEL_NO_": "105201061200", "Tax_Legal_": "LINDBERG BAY 63B-6 SOUTHSIDE QTR", "Name": "CHARLEYS TRUCKING SERV.", "Address": "PO Box 12029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8015029, "Country": "United States", "Land_Value": 49000, "Improved_V": 115800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.017433622, "SHAPE_Area": 717.42538638799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355060.515699997544289, 256931.144400000572205 ], [ 355091.931400001049042, 256934.990100000053644 ], [ 355091.378600001335144, 256905.221400000154972 ], [ 355071.213600002229214, 256905.900699999183416 ], [ 355060.515699997544289, 256931.144400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201053200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96036265, "LATITUDE": 18.34190995, "OBJECTID_1": 7708, "PARCEL_NO_": "105201053200", "Tax_Legal_": "CONTANT 4-4 7A S S QTR", "Name": "BELINDA FLORCITA GENIVA MOITT REVOC FAM TRUST", "Address": "BOX 3203", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86300, "Improved_V": 97100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.63785419000001, "SHAPE_Area": 961.67154553900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355705.64299999922514, 256927.34739999845624 ], [ 355704.183300003409386, 256909.392499998211861 ], [ 355699.356200002133846, 256908.086500000208616 ], [ 355701.060500003397465, 256897.334600001573563 ], [ 355676.057599999010563, 256897.974399998784065 ], [ 355676.518700003623962, 256938.508099999278784 ], [ 355705.64299999922514, 256927.34739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94498249, "LATITUDE": 18.34207101, "OBJECTID_1": 9096, "PARCEL_NO_": "105301040500", "Tax_Legal_": "164 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "EDRIS GEORGE FAM SPENDTHRIFT TR", "Address": "8370 NW 144th St", "City": "MIAMI LAKES", "State": "Florida", "Zip": 33016, "Country": "United States", "Land_Value": 15800, "Improved_V": 77500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.8551982667, "SHAPE_Area": 382.96716369500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357326.34009999781847, 256939.556600000709295 ], [ 357304.587600000202656, 256937.267599999904633 ], [ 357303.6824000030756, 256948.870400000363588 ], [ 357303.009300000965595, 256955.187199998646975 ], [ 357324.354000002145767, 256956.490899998694658 ], [ 357324.932300001382828, 256956.526200000196695 ], [ 357324.993100002408028, 256955.854699999094009 ], [ 357325.436700001358986, 256950.948300000280142 ], [ 357326.34009999781847, 256939.556600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94399565000001, "LATITUDE": 18.34196908, "OBJECTID_1": 9044, "PARCEL_NO_": "105301030800", "Tax_Legal_": "ALTONA & WELGUNST 178-8 KRONPRINDSENS QTR.", "Name": "PETERSEN EVANS & E", "Address": "3342 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 40300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.573973815900004, "SHAPE_Area": 451.04924335499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357433.577799998223782, 256940.645399998873472 ], [ 357424.852300003170967, 256923.686500001698732 ], [ 357416.765799999237061, 256926.364500001072884 ], [ 357403.000900000333786, 256933.006900001317263 ], [ 357417.359899997711182, 256951.278400000184774 ], [ 357423.85530000180006, 256946.054299999028444 ], [ 357433.577799998223782, 256940.645399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201048700", "MAP": "D9-6704-T000", "PARCEL_NAM": "18B REM", "ACRE": "1.106", "LONGITUDE": -64.96300791, "LATITUDE": 18.3417657, "OBJECTID_1": 7666, "PARCEL_NO_": "105201048700", "Tax_Legal_": "18B REM LINDBERG BAY No.4A SOUTHSIDE QTR", "Name": "ISLAND STORAGE SYSTEMS, INC", "Address": "PO Box 307666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 526000, "Improved_V": 1208300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.38725061100001, "SHAPE_Area": 3996.9568437399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355444.243699997663498, 256925.792100001126528 ], [ 355442.609899997711182, 256866.949000000953674 ], [ 355434.408399999141693, 256867.287900000810623 ], [ 355374.716099999845028, 256869.754599999636412 ], [ 355377.814000003039837, 256929.699799999594688 ], [ 355444.243699997663498, 256925.792100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94200876, "LATITUDE": 18.34193462, "OBJECTID_1": 8987, "PARCEL_NO_": "105301020700", "Tax_Legal_": "ANNAS FANCY 54 CROWN PRINCE QTR", "Name": "LANCLOS, ETHEL F. & TERECIA THOMAS", "Address": "16806 Amy Ridge Rd", "City": "Houston", "State": "Texas", "Zip": 77053, "Country": "United States", "Land_Value": 37500, "Improved_V": 173100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.11538852, "SHAPE_Area": 682.70110272099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357636.116899996995926, 256924.149000000208616 ], [ 357617.627499997615814, 256917.45380000025034 ], [ 357611.799900002777576, 256938.937699999660254 ], [ 357639.925499998033047, 256950.355799999088049 ], [ 357642.367799997329712, 256947.631599999964237 ], [ 357648.073100000619888, 256940.5011 ], [ 357644.898199997842312, 256934.564500000327826 ], [ 357635.283600002527237, 256927.308600001037121 ], [ 357636.116899996995926, 256924.149000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202024600", "MAP": "D9-2167-T82", "PARCEL_NAM": "84-1", "ACRE": null, "LONGITUDE": -64.95722372, "LATITUDE": 18.34187156, "OBJECTID_1": 8134, "PARCEL_NO_": "105202024600", "Tax_Legal_": "CONTANT 84-1 7A SOUTHSIDE QTR.", "Name": "CHATERAM, WALTER & VERONICA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49900, "Improved_V": 123800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.872164639, "SHAPE_Area": 777.25210197000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356030.849500000476837, 256899.189399998635054 ], [ 356002.511699996888638, 256912.678599998354912 ], [ 356003.116599999368191, 256936.3260000012815 ], [ 356033.120999999344349, 256916.517700001597404 ], [ 356049.360500000417233, 256903.351700000464916 ], [ 356030.849500000476837, 256899.189399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94331901, "LATITUDE": 18.34197475, "OBJECTID_1": 9060, "PARCEL_NO_": "105301032400", "Tax_Legal_": "ALTONA & WELGUNST 178-47 KRONPRINDSENS QTR", "Name": "KING, AUSTIN O", "Address": "178-47 ALTONA&WELG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 35500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.33989598399999, "SHAPE_Area": 708.65745561000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357477.871100001037121, 256947.340700000524521 ], [ 357485.928800001740456, 256948.039900001138449 ], [ 357493.999099999666214, 256947.261599998921156 ], [ 357502.07660000026226, 256945.638999998569489 ], [ 357512.558700002729893, 256945.724800001829863 ], [ 357511.867499999701977, 256932.209100000560284 ], [ 357498.980899997055531, 256930.414900001138449 ], [ 357483.696900002658367, 256926.067999999970198 ], [ 357465.875299997627735, 256935.632399998605251 ], [ 357477.871100001037121, 256947.340700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202071400", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3G", "ACRE": "0.14", "LONGITUDE": -64.9515523, "LATITUDE": 18.341897, "OBJECTID_1": 8422, "PARCEL_NO_": "105202071400", "Tax_Legal_": "23-3G ESTATE CONTANT 7BA SOUTHSIDE QTR.", "Name": "CHARLES, VERMALIE", "Address": "PO Box 307712", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 58100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.30042523500001, "SHAPE_Area": 807.39424819199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356640.784400001168251, 256916.341299999505281 ], [ 356605.272799998521805, 256907.096999999135733 ], [ 356603.239600002765656, 256914.640000000596046 ], [ 356599.951399996876717, 256922.001299999654293 ], [ 356598.981600001454353, 256926.738200001418591 ], [ 356635.865500003099442, 256938.094999998807907 ], [ 356640.726499997079372, 256916.597199998795986 ], [ 356640.784400001168251, 256916.341299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201050600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95837618, "LATITUDE": 18.34162833, "OBJECTID_1": 7682, "PARCEL_NO_": "105201050600", "Tax_Legal_": "CONTANT ESTATE 81 7A SOUTHSIDE QTR", "Name": "MINOGUE, SEAMUS & EILIS & LIAM", "Address": "PO Box 821", "City": "Manchester", "State": "Maryland", "Zip": 21102, "Country": "United States", "Land_Value": 253200, "Improved_V": 52500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.780306078, "SHAPE_Area": 2457.86184009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355870.570200003683567, 256907.706900000572205 ], [ 355927.347199998795986, 256910.438499998301268 ], [ 355925.276500001549721, 256891.992600001394749 ], [ 355924.55290000140667, 256882.276299998164177 ], [ 355921.557800002396107, 256855.231899999082088 ], [ 355911.043399997055531, 256858.945500001311302 ], [ 355868.982100002467632, 256874.222199998795986 ], [ 355870.570200003683567, 256907.706900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301052700", "MAP": null, "PARCEL_NAM": "155", "ACRE": null, "LONGITUDE": -64.94525319, "LATITUDE": 18.34195577, "OBJECTID_1": 9164, "PARCEL_NO_": "105301052700", "Tax_Legal_": "155 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "JEFFERS, LOOVINA & MARCIA", "Address": "Mahogany Estate--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15800, "Improved_V": 46600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.241775693500003, "SHAPE_Area": 312.840354644 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357296.607199996709824, 256927.491999998688698 ], [ 357277.275499999523163, 256925.011799998581409 ], [ 357275.524400003254414, 256941.251600001007318 ], [ 357295.671400003135204, 256942.683100000023842 ], [ 357296.607199996709824, 256927.491999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9411414, "LATITUDE": 18.34184398, "OBJECTID_1": 9017, "PARCEL_NO_": "105301023200", "Tax_Legal_": "37 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "VERONICA GERALD (LIFE ESTATE)", "Address": "3219 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33400, "Improved_V": 40100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.245655261, "SHAPE_Area": 620.57568007600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357716.918999999761581, 256904.756499998271465 ], [ 357711.899499997496605, 256926.035799998790026 ], [ 357708.542999997735023, 256941.418200001120567 ], [ 357722.212499998509884, 256945.962999999523163 ], [ 357725.522299997508526, 256936.06870000064373 ], [ 357734.559000000357628, 256916.510999999940395 ], [ 357732.982299998402596, 256912.276200000196695 ], [ 357716.918999999761581, 256904.756499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301052600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9454378, "LATITUDE": 18.34193957, "OBJECTID_1": 9163, "PARCEL_NO_": "105301052600", "Tax_Legal_": "154 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "RUAN, IRAD and ROSE ANDINA", "Address": "PO Box 303598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16600, "Improved_V": 46500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.367703664399997, "SHAPE_Area": 325.43569108999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357277.275499999523163, 256925.011799998581409 ], [ 357257.94200000166893, 256922.742600001394749 ], [ 357256.183700002729893, 256939.826799999922514 ], [ 357275.524400003254414, 256941.251600001007318 ], [ 357277.275499999523163, 256925.011799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301052500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94571279, "LATITUDE": 18.34194346, "OBJECTID_1": 9162, "PARCEL_NO_": "105301052500", "Tax_Legal_": "130 ALTONA & WELGUNST KRONPRINDSENS QTR.", "Name": "EBBESEN,VICTOR L. &, THELMA L.,CO-TRUSTEES", "Address": "PO Box 123", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 14800, "Improved_V": 44100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.099164992400006, "SHAPE_Area": 305.60792228499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357248.241099998354912, 256925.618500001728535 ], [ 357228.093999996781349, 256924.187100000679493 ], [ 357227.203199997544289, 256934.101199999451637 ], [ 357226.355499997735023, 256938.949400000274181 ], [ 357247.307099997997284, 256940.598499998450279 ], [ 357248.241099998354912, 256925.618500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201053900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9601071, "LATITUDE": 18.34184931, "OBJECTID_1": 7715, "PARCEL_NO_": "105201053900", "Tax_Legal_": "CONTANT 4-5 S S QTR. 7A", "Name": "BABOOLAL, VICTOR", "Address": "PO Box 11148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56600, "Improved_V": 136200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.713879244, "SHAPE_Area": 745.84838006899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355733.92509999871254, 256920.401700001209974 ], [ 355725.944700002670288, 256910.6261 ], [ 355735.742700003087521, 256896.35190000012517 ], [ 355701.060500003397465, 256897.334600001573563 ], [ 355699.356200002133846, 256908.086500000208616 ], [ 355704.183300003409386, 256909.392499998211861 ], [ 355705.64299999922514, 256927.34739999845624 ], [ 355721.812399998307228, 256922.413499999791384 ], [ 355733.92509999871254, 256920.401700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94382971, "LATITUDE": 18.34189886, "OBJECTID_1": 9042, "PARCEL_NO_": "105301030600", "Tax_Legal_": "ALTONA & WELGUNST 178-6 KRONPRINDSENS QTR", "Name": "MALONE, ELMA & LEORY", "Address": "178-6 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12600, "Improved_V": 32000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.871393398799995, "SHAPE_Area": 294.288694475 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357447.340899996459484, 256934.214099999517202 ], [ 357441.831600002944469, 256918.337000001221895 ], [ 357424.852300003170967, 256923.686500001698732 ], [ 357433.577799998223782, 256940.645399998873472 ], [ 357447.340899996459484, 256934.214099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94497168, "LATITUDE": 18.34192541, "OBJECTID_1": 9097, "PARCEL_NO_": "105301040600", "Tax_Legal_": "165 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "CAROLINE E PARSONS REVOC LIVING TRUST & J PARSONS", "Address": "165 MAHOGANY EST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14800, "Improved_V": 144900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.341787849200003, "SHAPE_Area": 323.39430300499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357327.272299997508526, 256924.78770000115037 ], [ 357305.519799999892712, 256922.498700000345707 ], [ 357304.587600000202656, 256937.267599999904633 ], [ 357326.34009999781847, 256939.556600000709295 ], [ 357327.272299997508526, 256924.78770000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202041700", "MAP": "D9-735-T63", "PARCEL_NAM": "17E", "ACRE": "0.22", "LONGITUDE": -64.95452907000001, "LATITUDE": 18.34174019, "OBJECTID_1": 8277, "PARCEL_NO_": "105202041700", "Tax_Legal_": "CONTANT 17E SOUTHSIDE QTR. 7BA", "Name": "AGEMA INCORPORATED INC", "Address": "9 Contant Gilmore Plaza", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.760041707, "SHAPE_Area": 1048.9833223099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356322.221699997782707, 256928.312199998646975 ], [ 356309.122900001704693, 256875.075599998235703 ], [ 356306.831299997866154, 256875.272599998861551 ], [ 356287.456500001251698, 256877.858300000429153 ], [ 356289.04389999806881, 256880.82660000026226 ], [ 356289.8125, 256885.265799999237061 ], [ 356292.189999997615814, 256890.140399999916553 ], [ 356295.368500001728535, 256895.654899999499321 ], [ 356297.726300001144409, 256902.851399999111891 ], [ 356302.330399997532368, 256930.331199999898672 ], [ 356322.221699997782707, 256928.312199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201049500", "MAP": "D9-6869-T000", "PARCEL_NAM": "18A-4", "ACRE": null, "LONGITUDE": -64.96157183, "LATITUDE": 18.3418111, "OBJECTID_1": 7670, "PARCEL_NO_": "105201049500", "Tax_Legal_": "LINDBERG BAY #18A No.4A SOUTHSIDE QTR.", "Name": "CREQUE, CLEONE H. & TANYA C. CREQUE HODGE", "Address": "PO Box 306072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 145100, "Improved_V": 212900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.75396322500001, "SHAPE_Area": 1615.5286435 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355529.191899999976158, 256888.453200001269579 ], [ 355538.723700001835823, 256921.802999999374151 ], [ 355576.7753000035882, 256921.417700000107288 ], [ 355595.145499996840954, 256885.98200000077486 ], [ 355590.310699999332428, 256884.749099999666214 ], [ 355589.252400003373623, 256884.749099999666214 ], [ 355586.871200002729893, 256885.013599999248981 ], [ 355582.770099997520447, 256885.67509999871254 ], [ 355579.4628000035882, 256886.601100001484156 ], [ 355576.81700000166893, 256887.262600000947714 ], [ 355573.377400003373623, 256888.1886 ], [ 355569.276299998164177, 256889.379299998283386 ], [ 355565.83669999986887, 256890.569899998605251 ], [ 355562.397200003266335, 256891.363600000739098 ], [ 355559.089900001883507, 256892.289700001478195 ], [ 355555.6503000035882, 256892.951200000941753 ], [ 355552.872100003063679, 256893.083399999886751 ], [ 355549.564800001680851, 256893.215700000524521 ], [ 355546.786700002849102, 256893.348000001162291 ], [ 355543.611699998378754, 256893.215700000524521 ], [ 355541.494999997317791, 256892.554299999028444 ], [ 355537.394000001251698, 256892.025100000202656 ], [ 355535.145000003278255, 256891.2314000017941 ], [ 355531.969999998807907, 256890.173000000417233 ], [ 355529.191899999976158, 256888.453200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202052700", "MAP": "F9-37-56", "PARCEL_NAM": "22-19", "ACRE": "0.26", "LONGITUDE": -64.9522985, "LATITUDE": 18.34181723, "OBJECTID_1": 8326, "PARCEL_NO_": "105202052700", "Tax_Legal_": "CONTANT 22 19 7BA SOUTHSIDE QTR", "Name": "HARRIGAN, LILLIAN & OTHERS", "Address": "PO Box 1204", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 82200, "Improved_V": 121100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.668982489, "SHAPE_Area": 1254.97647259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356566.17960000038147, 256906.042199999094009 ], [ 356522.79900000244379, 256891.605700001120567 ], [ 356522.281099997460842, 256893.947700001299381 ], [ 356521.960299998521805, 256895.398499999195337 ], [ 356520.979599997401237, 256915.866500001400709 ], [ 356521.61540000140667, 256924.923599999397993 ], [ 356559.558499999344349, 256930.747699998319149 ], [ 356561.072200000286102, 256931.062699999660254 ], [ 356561.566500000655651, 256927.153099998831749 ], [ 356561.840400002896786, 256924.986400000751019 ], [ 356565.253600001335144, 256909.746300000697374 ], [ 356565.807599999010563, 256907.530299998819828 ], [ 356566.17960000038147, 256906.042199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94136274, "LATITUDE": 18.34188317, "OBJECTID_1": 9015, "PARCEL_NO_": "105301023000", "Tax_Legal_": "36 ANNAS FANCY CROWN PRINCE", "Name": "HODGE, CAROL", "Address": "PO Box 12012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 43900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.148230016900001, "SHAPE_Area": 433.09343389499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357711.899499997496605, 256926.035799998790026 ], [ 357686.173000000417233, 256916.959399998188019 ], [ 357683.610200002789497, 256933.825899999588728 ], [ 357708.542999997735023, 256941.418200001120567 ], [ 357711.899499997496605, 256926.035799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201053800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95984879, "LATITUDE": 18.34183592, "OBJECTID_1": 7714, "PARCEL_NO_": "105201053800", "Tax_Legal_": "CONTANT 5-6 7A S S QTR", "Name": "ESTRADA, ASHLEY & MARCIA", "Address": "PO Box 305214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 73100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.970557370999998, "SHAPE_Area": 633.42674846099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355756.712200000882149, 256895.890299998223782 ], [ 355735.742700003087521, 256896.35190000012517 ], [ 355725.944700002670288, 256910.6261 ], [ 355733.92509999871254, 256920.401700001209974 ], [ 355757.317199997603893, 256919.53770000115037 ], [ 355756.712200000882149, 256895.890299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94365176, "LATITUDE": 18.34183677, "OBJECTID_1": 9041, "PARCEL_NO_": "105301030500", "Tax_Legal_": "ALTONA & WELGUNST 178-5 KRONPRINDSENS QTR.", "Name": "HODGE, MARGARITA", "Address": "178-5 ALTONA&WLGNST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12400, "Improved_V": 50500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.439078386700004, "SHAPE_Area": 384.83812213099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357470.813900001347065, 256923.851599998772144 ], [ 357462.052299998700619, 256911.11430000141263 ], [ 357458.008199997246265, 256912.558800000697374 ], [ 357441.831600002944469, 256918.337000001221895 ], [ 357447.340899996459484, 256934.214099999517202 ], [ 357459.475100003182888, 256929.669399999082088 ], [ 357470.813900001347065, 256923.851599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94166043, "LATITUDE": 18.3418318, "OBJECTID_1": 8997, "PARCEL_NO_": "105301021300", "Tax_Legal_": "ANNAS FANCY 51 CROWN PRINCE QUARTER", "Name": "ANDERSON, LEONARD", "Address": "51 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26600, "Improved_V": 45800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.499476608699993, "SHAPE_Area": 520.06702295299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357681.351300001144409, 256915.019999999552965 ], [ 357660.421400003135204, 256910.837999999523163 ], [ 357649.76129999756813, 256931.649000000208616 ], [ 357652.954199999570847, 256935.474800001829863 ], [ 357677.989399999380112, 256931.035599999129772 ], [ 357681.351300001144409, 256915.019999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202041900", "MAP": "D9-735-T68", "PARCEL_NAM": "17A", "ACRE": "0.24", "LONGITUDE": -64.95414206, "LATITUDE": 18.34169825, "OBJECTID_1": 8279, "PARCEL_NO_": "105202041900", "Tax_Legal_": "CONTANT 17A SOUTHSIDE QTR. 7BA", "Name": "AGEMA INCORPORATED INC", "Address": "9 CONTANT GILMORE PLAZA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78400, "Improved_V": 704600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.94443871799999, "SHAPE_Area": 1358.7192122700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356366.461499996483326, 256923.673599999397993 ], [ 356355.702200002968311, 256887.598499998450279 ], [ 356356.864100001752377, 256870.826999999582767 ], [ 356347.987400002777576, 256871.598700001835823 ], [ 356327.005300000309944, 256873.537900000810623 ], [ 356341.868100002408028, 256926.25959999859333 ], [ 356345.912699997425079, 256925.832800000905991 ], [ 356364.47580000013113, 256923.873700000345707 ], [ 356366.461499996483326, 256923.673599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202042000", "MAP": "D9-735-T68", "PARCEL_NAM": "17B", "ACRE": "0.266", "LONGITUDE": -64.95389503, "LATITUDE": 18.34169155, "OBJECTID_1": 8280, "PARCEL_NO_": "105202042000", "Tax_Legal_": "CONTANT 17B SOUTHSIDE QTR. 7BA", "Name": "AGEMA INCORPORATED INC", "Address": "9 Contant Gilmore Plaza", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65300, "Improved_V": 222600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.74986464099999, "SHAPE_Area": 1399.4976394600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356395.144500002264977, 256920.747299998998642 ], [ 356376.231700003147125, 256869.08559999987483 ], [ 356361.70549999922514, 256870.444400001317263 ], [ 356356.864100001752377, 256870.826999999582767 ], [ 356355.702200002968311, 256887.598499998450279 ], [ 356366.461499996483326, 256923.673599999397993 ], [ 356374.160599999129772, 256922.89750000089407 ], [ 356395.144500002264977, 256920.747299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9418295, "LATITUDE": 18.34177031, "OBJECTID_1": 8996, "PARCEL_NO_": "105301021200", "Tax_Legal_": "52 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "LANCLOS, ETHEL F. & TERECIA THOMAS", "Address": "16806 Amy Ridge Rd", "City": "Houston", "State": "Texas", "Zip": 77053, "Country": "United States", "Land_Value": 21300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.137573153299996, "SHAPE_Area": 350.03161961299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357660.421400003135204, 256910.837999999523163 ], [ 357643.548199996352196, 256903.733800001442432 ], [ 357636.946599997580051, 256921.41160000115633 ], [ 357643.366499997675419, 256925.052700001746416 ], [ 357647.365699999034405, 256928.885200001299381 ], [ 357649.76129999756813, 256931.649000000208616 ], [ 357660.421400003135204, 256910.837999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202042100", "MAP": "D9-735-T68", "PARCEL_NAM": "17C", "ACRE": "0.349", "LONGITUDE": -64.95364826, "LATITUDE": 18.3416856, "OBJECTID_1": 8281, "PARCEL_NO_": "105202042100", "Tax_Legal_": "CONTANT 17C SOUTHSIDE QTR. 7BA", "Name": "AGEMA INCORPORATED INC", "Address": "9 Contant Gilmore Plaza", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 104200, "Improved_V": 20600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.426406267, "SHAPE_Area": 1202.51705014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356396.405699998140335, 256867.350900001823902 ], [ 356376.231700003147125, 256869.08559999987483 ], [ 356395.144500002264977, 256920.747299998998642 ], [ 356433.885200001299381, 256916.631400000303984 ], [ 356429.088699996471405, 256911.736999999731779 ], [ 356417.834499999880791, 256907.634100001305342 ], [ 356413.824500001966953, 256905.06810000166297 ], [ 356407.424400001764297, 256899.105099998414516 ], [ 356399.506899997591972, 256881.941700000315905 ], [ 356397.158100001513958, 256873.689899999648333 ], [ 356396.405699998140335, 256867.350900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301053000", "MAP": "D9-804-T69", "PARCEL_NAM": "157", "ACRE": null, "LONGITUDE": -64.94524223000001, "LATITUDE": 18.34182006, "OBJECTID_1": 9167, "PARCEL_NO_": "105301053000", "Tax_Legal_": "157 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "POLLACK, NEVILLE & OTHERS", "Address": "PO Box 7453", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15800, "Improved_V": 64200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.499136610899996, "SHAPE_Area": 277.52243229700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357297.535800002515316, 256913.145300000905991 ], [ 357278.202299997210503, 256910.8761 ], [ 357277.275499999523163, 256925.011799998581409 ], [ 357296.607199996709824, 256927.491999998688698 ], [ 357297.535800002515316, 256913.145300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301031400", "MAP": null, "PARCEL_NAM": "178-14", "ACRE": null, "LONGITUDE": -64.94296323, "LATITUDE": 18.34177347, "OBJECTID_1": 9050, "PARCEL_NO_": "105301031400", "Tax_Legal_": "ALTONA & WELGUNST 178-14 KRONPRINDSENS QTR.", "Name": "CALLWOOD, MARIETTE", "Address": "105 N Ridge View Way", "City": "Franklinton", "State": "North Carolina", "Zip": 27525, "Country": "United States", "Land_Value": 19200, "Improved_V": 41600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.187946644799993, "SHAPE_Area": 464.06971929100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357539.54280000180006, 256901.827100001275539 ], [ 357520.159000001847744, 256905.468100000172853 ], [ 357516.752099998295307, 256926.76069999858737 ], [ 357535.273900002241135, 256929.656500000506639 ], [ 357539.54280000180006, 256901.827100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301052800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94569748000001, "LATITUDE": 18.3418086, "OBJECTID_1": 9165, "PARCEL_NO_": "105301052800", "Tax_Legal_": "129 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "THOMAS, IRENE J", "Address": "PO Box 9802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14800, "Improved_V": 30300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.866337638100006, "SHAPE_Area": 295.73618350300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357249.98139999806881, 256910.645100001245737 ], [ 357230.640600003302097, 256909.220300000160933 ], [ 357229.77139999717474, 256916.601399999111891 ], [ 357228.093999996781349, 256924.187100000679493 ], [ 357248.241099998354912, 256925.618500001728535 ], [ 357249.98139999806881, 256910.645100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94392486, "LATITUDE": 18.34177606, "OBJECTID_1": 9043, "PARCEL_NO_": "105301030700", "Tax_Legal_": "ALTONA & WELGUNST 178-7 KRONPRINDSENS QTR", "Name": "DASANT, HENRY", "Address": "PO Box 374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13700, "Improved_V": 38000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.2218938619, "SHAPE_Area": 381.60377768400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357441.831600002944469, 256918.337000001221895 ], [ 357435.501599997282028, 256904.142000000923872 ], [ 357412.042999997735023, 256912.815900001674891 ], [ 357416.765799999237061, 256926.364500001072884 ], [ 357424.852300003170967, 256923.686500001698732 ], [ 357441.831600002944469, 256918.337000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301052900", "MAP": null, "PARCEL_NAM": "156", "ACRE": null, "LONGITUDE": -64.94542576000001, "LATITUDE": 18.34179996, "OBJECTID_1": 9166, "PARCEL_NO_": "105301052900", "Tax_Legal_": "156 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "BAPTIST, GERTRUDE", "Address": "156 Mahogany Estate", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14400, "Improved_V": 37600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.499249125099993, "SHAPE_Area": 277.52344530200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357278.202299997210503, 256910.8761 ], [ 357258.870600000023842, 256908.395799998193979 ], [ 357257.94200000166893, 256922.742600001394749 ], [ 357277.275499999523163, 256925.011799998581409 ], [ 357278.202299997210503, 256910.8761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301031300", "MAP": null, "PARCEL_NAM": "178-13", "ACRE": null, "LONGITUDE": -64.94314957, "LATITUDE": 18.34178162, "OBJECTID_1": 9049, "PARCEL_NO_": "105301031300", "Tax_Legal_": "178-13 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "WILKINSON, SR.,, ORVILLE LEROY", "Address": "3533 Altona 178-13", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14500, "Improved_V": 24400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.901671359199995, "SHAPE_Area": 354.88202594900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357516.752099998295307, 256926.76069999858737 ], [ 357520.159000001847744, 256905.468100000172853 ], [ 357509.658900000154972, 256907.493099998682737 ], [ 357503.989600002765656, 256910.401999998837709 ], [ 357493.444600000977516, 256917.703999999910593 ], [ 357493.415799997746944, 256921.081199999898672 ], [ 357507.088899999856949, 256925.203899998217821 ], [ 357516.752099998295307, 256926.76069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94496197, "LATITUDE": 18.34179188, "OBJECTID_1": 9098, "PARCEL_NO_": "105301040700", "Tax_Legal_": "166 ALTONA & WLEGUNST KRONPRINDSENS QTR", "Name": "BROWN, D & R", "Address": "2234 Rockwood Dr", "City": "Apopka", "State": "Florida", "Zip": 32703, "Country": "United States", "Land_Value": 14500, "Improved_V": 61800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.796162337300004, "SHAPE_Area": 320.4159957 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357328.206299997866154, 256909.807700000703335 ], [ 357307.258299998939037, 256907.736400000751019 ], [ 357305.519799999892712, 256922.498700000345707 ], [ 357327.272299997508526, 256924.78770000115037 ], [ 357328.206299997866154, 256909.807700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202024700", "MAP": "D9-2167-T82", "PARCEL_NAM": "84-2", "ACRE": null, "LONGITUDE": -64.95728473, "LATITUDE": 18.34169776, "OBJECTID_1": 8135, "PARCEL_NO_": "105202024700", "Tax_Legal_": "CONTANT 84-2 7A SOUTHSIDE QTR.", "Name": "WALTERS, MARTHA", "Address": "PO Box 304734", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40500, "Improved_V": 30800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.517176656, "SHAPE_Area": 648.83019825300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356038.205200001597404, 256887.639499999582767 ], [ 356027.707000002264977, 256889.453400000929832 ], [ 356001.183200001716614, 256879.314899999648333 ], [ 356002.511699996888638, 256912.678599998354912 ], [ 356030.849500000476837, 256899.189399998635054 ], [ 356038.205200001597404, 256887.639499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94132956, "LATITUDE": 18.34170581, "OBJECTID_1": 9016, "PARCEL_NO_": "105301023100", "Tax_Legal_": "35 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "LANCLOS, RANDOLPH", "Address": "3202 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35300, "Improved_V": 64500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.450120742, "SHAPE_Area": 650.02128462899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357686.173000000417233, 256916.959399998188019 ], [ 357711.899499997496605, 256926.035799998790026 ], [ 357716.918999999761581, 256904.756499998271465 ], [ 357693.627599999308586, 256893.80009999871254 ], [ 357689.587099999189377, 256894.822500001639128 ], [ 357686.173000000417233, 256916.959399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94345874, "LATITUDE": 18.34173226, "OBJECTID_1": 9039, "PARCEL_NO_": "105301030300", "Tax_Legal_": "ALTONA & WELGUNST 178-3 KRONPRINDSENS QTR.", "Name": "GARCIA, EVELYN", "Address": "3538 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15500, "Improved_V": 41400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.854620196499994, "SHAPE_Area": 355.39355652299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357487.841700002551079, 256912.802999999374151 ], [ 357483.943199999630451, 256897.150100000202656 ], [ 357462.052299998700619, 256911.11430000141263 ], [ 357470.813900001347065, 256923.851599998772144 ], [ 357487.841700002551079, 256912.802999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94199893, "LATITUDE": 18.34171347, "OBJECTID_1": 8988, "PARCEL_NO_": "105301020800", "Tax_Legal_": "53 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "MOSES Q & I", "Address": "76 Homer Ave", "City": "Buffalo", "State": "New York", "Zip": 14216, "Country": "United States", "Land_Value": 27600, "Improved_V": 51000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.941961465000006, "SHAPE_Area": 447.47450158200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357643.548199996352196, 256903.733800001442432 ], [ 357624.263199999928474, 256895.765500001609325 ], [ 357617.627499997615814, 256917.45380000025034 ], [ 357636.116899996995926, 256924.149000000208616 ], [ 357636.946599997580051, 256921.41160000115633 ], [ 357643.548199996352196, 256903.733800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202071800", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3H", "ACRE": "0.14", "LONGITUDE": -64.95150978, "LATITUDE": 18.34172491, "OBJECTID_1": 8426, "PARCEL_NO_": "105202071800", "Tax_Legal_": "CONTANT 23-3J 7BA S.S. QTR.", "Name": "ROBERTS, IVAN LEROY and KALYSHA ASHER ROBERTS", "Address": "PO Box 305818", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.69679030899999, "SHAPE_Area": 636.19260616600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356644.603900000452995, 256899.449499998241663 ], [ 356609.900499999523163, 256889.996500000357628 ], [ 356605.737700000405312, 256905.372299998998642 ], [ 356605.390900000929832, 256906.659000001847744 ], [ 356605.272799998521805, 256907.096999999135733 ], [ 356640.784400001168251, 256916.341299999505281 ], [ 356641.057099997997284, 256915.135099999606609 ], [ 356644.603900000452995, 256899.449499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105104010100", "MAP": "A9-821-T016", "PARCEL_NAM": "69", "ACRE": "9.145", "LONGITUDE": -64.96537582000001, "LATITUDE": 18.34087208, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1972.8782893699999, "SHAPE_Area": 31613.732050099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355142.217399999499321, 256775.520100001245737 ], [ 355141.071800000965595, 256751.31870000064373 ], [ 355140.342799998819828, 256742.235700000077486 ], [ 355137.615699999034405, 256683.740499999374151 ], [ 355006.369400002062321, 256691.350299999117851 ], [ 355003.413599997758865, 256724.22749999910593 ], [ 355007.297499999403954, 256756.950899999588728 ], [ 355040.907499998807907, 256756.052000001072884 ], [ 355040.565600000321865, 256782.037599999457598 ], [ 355142.217399999499321, 256775.520100001245737 ] ] ], [ [ [ 355207.550499998033047, 256898.783900000154972 ], [ 355198.121500000357628, 256680.436000000685453 ], [ 355174.72580000013113, 256681.722199998795986 ], [ 355178.138800002634525, 256754.366300001740456 ], [ 355149.910700000822544, 256754.979699999094009 ], [ 355156.73480000346899, 256900.478999998420477 ], [ 355207.550499998033047, 256898.783900000154972 ] ] ], [ [ [ 355303.539499998092651, 256895.136599998921156 ], [ 355302.112000003457069, 256873.38230000063777 ], [ 355265.003700003027916, 256875.189500000327826 ], [ 355239.995399996638298, 256876.462499998509884 ], [ 355234.95719999819994, 256805.282699998468161 ], [ 355230.388400003314018, 256679.011399999260902 ], [ 355207.800800003111362, 256680.093100000172853 ], [ 355217.229900002479553, 256898.440999999642372 ], [ 355303.539499998092651, 256895.136599998921156 ] ] ], [ [ [ 355305.616700001060963, 256935.261399999260902 ], [ 355304.268500000238419, 256904.2195999994874 ], [ 355148.589000001549721, 256910.122600000351667 ], [ 355149.592799998819828, 256940.506700001657009 ], [ 355156.396799996495247, 256940.161800000816584 ], [ 355181.405100002884865, 256938.888799998909235 ], [ 355204.800700001418591, 256937.602600000798702 ], [ 355238.674800001084805, 256936.824400000274181 ], [ 355278.194899998605251, 256935.881299998611212 ], [ 355305.616700001060963, 256935.261399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053100", "MAP": "G9-414-T56", "PARCEL_NAM": "25", "ACRE": "0.35", "LONGITUDE": -64.95221949, "LATITUDE": 18.34157182, "OBJECTID_1": 8330, "PARCEL_NO_": "105202053100", "Tax_Legal_": "CONTANT 25 7BA SOUTHSIDE QTR", "Name": "CLAUBERT CHARLES and MICHAMA CLAISEMOND", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021736, "Country": "United States", "Land_Value": 110700, "Improved_V": 59600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.90849096400001, "SHAPE_Area": 1220.57020362 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356541.019299998879433, 256865.008200000971556 ], [ 356530.158299997448921, 256879.633600000292063 ], [ 356522.79900000244379, 256891.605700001120567 ], [ 356566.17960000038147, 256906.042199999094009 ], [ 356573.718199998140335, 256878.516600001603365 ], [ 356541.019299998879433, 256865.008200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94373735000001, "LATITUDE": 18.34169917, "OBJECTID_1": 9040, "PARCEL_NO_": "105301030400", "Tax_Legal_": "ALTONA & WELGUNST 178-4 KRONPRINDSENS QTR.", "Name": "ENGLAND, EUGENIE A. & BECHETT, LOUISE", "Address": "PO Box 7321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13000, "Improved_V": 40800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.123514981200003, "SHAPE_Area": 301.86274354699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357458.008199997246265, 256912.558800000697374 ], [ 357449.291599996387959, 256894.54450000077486 ], [ 357442.01860000193119, 256896.384799998253584 ], [ 357442.781700000166893, 256901.457299999892712 ], [ 357435.501599997282028, 256904.142000000923872 ], [ 357441.831600002944469, 256918.337000001221895 ], [ 357458.008199997246265, 256912.558800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202052800", "MAP": "G9-420-T56", "PARCEL_NAM": "22-30", "ACRE": "0.26", "LONGITUDE": -64.95299924, "LATITUDE": 18.34163837, "OBJECTID_1": 8327, "PARCEL_NO_": "105202052800", "Tax_Legal_": "CONTANT 22 3O 7BA SOUTHSIDE QTR", "Name": "GEORGE, PEDRITO & ESMIE", "Address": "PO Box 301872", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84900, "Improved_V": 195000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.636174807, "SHAPE_Area": 1312.99669425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356493.712300002574921, 256885.170699998736382 ], [ 356456.852200001478195, 256871.011999998241663 ], [ 356450.31360000371933, 256881.302099999040365 ], [ 356447.016400001943111, 256889.718899998813868 ], [ 356446.165100000798702, 256894.989199999719858 ], [ 356442.740000002086163, 256906.120600000023842 ], [ 356485.559399999678135, 256908.821600001305342 ], [ 356485.946000002324581, 256908.127199999988079 ], [ 356493.712300002574921, 256885.170699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95688921, "LATITUDE": 18.34156731, "OBJECTID_1": 8136, "PARCEL_NO_": "105202024800", "Tax_Legal_": "CONTANT 84-3 7A S.S. QTR.", "Name": "TRANQUILLE, WILNER", "Address": "PO Box 711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40500, "Improved_V": 52400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.195193990500002, "SHAPE_Area": 418.00281107000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356041.108800001442432, 256883.028000000864267 ], [ 356061.485200002789497, 256893.279899999499321 ], [ 356067.227099999785423, 256888.510299999266863 ], [ 356072.138700000941753, 256879.895700000226498 ], [ 356050.465300001204014, 256868.319200001657009 ], [ 356047.196900002658367, 256873.35869999974966 ], [ 356041.108800001442432, 256883.028000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301053400", "MAP": null, "PARCEL_NAM": "159", "ACRE": null, "LONGITUDE": -64.945233, "LATITUDE": 18.34169032, "OBJECTID_1": 9171, "PARCEL_NO_": "105301053400", "Tax_Legal_": "159 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "NILES, ALLEN & GLADS", "Address": "PO Box 492", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15800, "Improved_V": 40200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.373232726400005, "SHAPE_Area": 278.54536309700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357298.4662000015378, 256898.587400000542402 ], [ 357279.939000003039837, 256896.324799999594688 ], [ 357278.202299997210503, 256910.8761 ], [ 357297.535800002515316, 256913.145300000905991 ], [ 357298.4662000015378, 256898.587400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96068296, "LATITUDE": 18.34162486, "OBJECTID_1": 7688, "PARCEL_NO_": "105201051200", "Tax_Legal_": "CONTANT 115B 7A S S QTR", "Name": "SPENCELEY (LIFE ESTATE), CELSA A.", "Address": "PO Box 307107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 117700, "Improved_V": 400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.05270463400001, "SHAPE_Area": 974.86234160699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355638.956500001251698, 256898.937300000339746 ], [ 355676.057599999010563, 256897.974399998784065 ], [ 355676.917900003492832, 256891.648600000888109 ], [ 355677.776299998164177, 256885.533900000154972 ], [ 355641.713500000536442, 256859.274300001561642 ], [ 355641.668499998748302, 256864.551199998706579 ], [ 355638.956500001251698, 256898.937300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94160491, "LATITUDE": 18.34161014, "OBJECTID_1": 8995, "PARCEL_NO_": "105301021100", "Tax_Legal_": "ANNAS FANCY 34 CROWN PRINCE QUARTER", "Name": "WINSTON MA WILLIAMS SR & ARACELIS A DELON WILLIAMS", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32500, "Improved_V": 111200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.850261877099996, "SHAPE_Area": 573.59826381200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357664.713699996471405, 256880.264499999582767 ], [ 357660.421400003135204, 256910.837999999523163 ], [ 357681.351300001144409, 256915.019999999552965 ], [ 357683.159999996423721, 256892.025600001215935 ], [ 357681.576099999248981, 256888.635200001299381 ], [ 357664.713699996471405, 256880.264499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94354962, "LATITUDE": 18.34162091, "OBJECTID_1": 9038, "PARCEL_NO_": "105301030200", "Tax_Legal_": "ALTONA & WELGUNST 178-2 KRONPRINDSENS QTR", "Name": "LAFANG, VIOLA", "Address": "426 Kendrick Estates Dr", "City": "Jonesboro", "State": "Georgia", "Zip": 30238, "Country": "United States", "Land_Value": 20500, "Improved_V": 44300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.921463493399997, "SHAPE_Area": 486.281593466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357483.943199999630451, 256897.150100000202656 ], [ 357481.603399999439716, 256887.8429000005126 ], [ 357469.494400002062321, 256889.432500001043081 ], [ 357449.291599996387959, 256894.54450000077486 ], [ 357458.008199997246265, 256912.558800000697374 ], [ 357462.052299998700619, 256911.11430000141263 ], [ 357483.943199999630451, 256897.150100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94326499, "LATITUDE": 18.34160441, "OBJECTID_1": 9037, "PARCEL_NO_": "105301030100", "Tax_Legal_": "ALTONA & WELGUNST 178-1 KRONPRINDSENS QTR.", "Name": "ROBLES, DONALD & LUCIDA", "Address": "P O BOX 2452", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20000, "Improved_V": 52500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.502948508900005, "SHAPE_Area": 522.79187385800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357481.603399999439716, 256887.8429000005126 ], [ 357483.943199999630451, 256897.150100000202656 ], [ 357487.841700002551079, 256912.802999999374151 ], [ 357497.57320000231266, 256906.338700000196695 ], [ 357514.572300001978874, 256898.667399998754263 ], [ 357514.608300000429153, 256894.445799998939037 ], [ 357509.808200001716614, 256889.973600000143051 ], [ 357501.764799997210503, 256887.585700001567602 ], [ 357494.51519999653101, 256886.682000000029802 ], [ 357481.603399999439716, 256887.8429000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301053100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94568382, "LATITUDE": 18.341674, "OBJECTID_1": 9168, "PARCEL_NO_": "105301053100", "Tax_Legal_": "128 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "ROGERS FAMILY TRUST", "Address": "3128 Estate Mahogany", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17500, "Improved_V": 69900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.679818898500002, "SHAPE_Area": 282.88442335899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357250.911700002849102, 256896.08729999884963 ], [ 357232.380900003015995, 256894.246899999678135 ], [ 357231.52250000089407, 256900.3614999987185 ], [ 357230.640600003302097, 256909.220300000160933 ], [ 357249.98139999806881, 256910.645100001245737 ], [ 357250.911700002849102, 256896.08729999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301053300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94541581, "LATITUDE": 18.3416694, "OBJECTID_1": 9170, "PARCEL_NO_": "105301053300", "Tax_Legal_": "158 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "EWART R HARLEY, JR., AND LYDIA B HARLEY", "Address": "PO Box 7685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17100, "Improved_V": 59700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.023200712999994, "SHAPE_Area": 290.54379917699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357279.939000003039837, 256896.324799999594688 ], [ 357259.800999999046326, 256893.837999999523163 ], [ 357258.870600000023842, 256908.395799998193979 ], [ 357278.202299997210503, 256910.8761 ], [ 357279.939000003039837, 256896.324799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95901978000001, "LATITUDE": 18.34155934, "OBJECTID_1": 7684, "PARCEL_NO_": "105201050800", "Tax_Legal_": "CONTANT 109 SOUTHSIDE QUARTER", "Name": "LANGFORD, FLORENCE T", "Address": "PO Box 773", "City": "CHRISTIANSTED", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 205700, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.84754210200001, "SHAPE_Area": 1468.0400396299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355821.589500002563, 256852.724899999797344 ], [ 355805.132299996912479, 256891.431400001049042 ], [ 355848.612099997699261, 256898.964499998837709 ], [ 355851.858900003135204, 256896.457899998873472 ], [ 355853.538099996745586, 256888.661200001835823 ], [ 355850.476499997079372, 256869.426600001752377 ], [ 355848.888999998569489, 256866.458299998193979 ], [ 355844.886200003325939, 256863.048099998384714 ], [ 355821.589500002563, 256852.724899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95778025, "LATITUDE": 18.34143349, "OBJECTID_1": 8117, "PARCEL_NO_": "105202022600", "Tax_Legal_": "CONTANT 99 7A SOUTHSIDE QTR", "Name": "FIRST WESLEYAN HOLINESS", "Address": "PO Box 302145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 337300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.20198109, "SHAPE_Area": 3330.1056929199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355995.97410000115633, 256828.187699999660254 ], [ 355955.530799999833107, 256842.844300001859665 ], [ 355921.557800002396107, 256855.231899999082088 ], [ 355924.55290000140667, 256882.276299998164177 ], [ 355992.146499998867512, 256898.872699998319149 ], [ 355990.88629999756813, 256857.488000001758337 ], [ 355992.635600000619888, 256841.459199998527765 ], [ 355995.97410000115633, 256828.187699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9449525, "LATITUDE": 18.34165937, "OBJECTID_1": 9099, "PARCEL_NO_": "105301040800", "Tax_Legal_": "167 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GEORGE, EDRIS (LIFE ESTATE)", "Address": "PO Box 303665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033665, "Country": "United States", "Land_Value": 14600, "Improved_V": 51400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.853843267499997, "SHAPE_Area": 302.45935469199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357329.134800001978874, 256895.460900001227856 ], [ 357308.186899997293949, 256893.389600001275539 ], [ 357307.258299998939037, 256907.736400000751019 ], [ 357328.206299997866154, 256909.807700000703335 ], [ 357329.134800001978874, 256895.460900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95338832, "LATITUDE": 18.34153123, "OBJECTID_1": 8331, "PARCEL_NO_": "105202053200", "Tax_Legal_": "CONTANT 32 SOUTHSIDE QTR. 7BA", "Name": "AMARO, LUCIA", "Address": "3093 Contant 7B-32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55000, "Improved_V": 62300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.65786637100001, "SHAPE_Area": 1161.0760751400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356427.939800001680851, 256865.117300000041723 ], [ 356407.356700003147125, 256862.459699999541044 ], [ 356406.095899999141693, 256865.741500001400709 ], [ 356407.30290000140667, 256872.366500001400709 ], [ 356407.636600002646446, 256874.197799999266863 ], [ 356407.593400001525879, 256879.263700000941753 ], [ 356415.5253000035882, 256894.738499999046326 ], [ 356420.330799996852875, 256898.577500000596046 ], [ 356426.761500000953674, 256900.952100001275539 ], [ 356432.402099996805191, 256901.420499999076128 ], [ 356438.069700002670288, 256898.722699999809265 ], [ 356442.214500002563, 256885.457699999213219 ], [ 356443.287900000810623, 256882.583299998193979 ], [ 356443.864900000393391, 256881.038199998438358 ], [ 356447.147699996829033, 256874.310100000351667 ], [ 356452.162299998104572, 256868.244800001382828 ], [ 356442.97749999910593, 256867.058899998664856 ], [ 356427.939800001680851, 256865.117300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94176803000001, "LATITUDE": 18.34156632, "OBJECTID_1": 8991, "PARCEL_NO_": "105301021000", "Tax_Legal_": "33 ANNAS FANCY KROMP QTR", "Name": "WARNER, EMELDA", "Address": "33 ANNAS FANCY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24100, "Improved_V": 33300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.261051931400004, "SHAPE_Area": 455.81691187899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357650.208999998867512, 256879.090300001204014 ], [ 357643.548199996352196, 256903.733800001442432 ], [ 357660.421400003135204, 256910.837999999523163 ], [ 357664.713699996471405, 256880.264499999582767 ], [ 357650.208999998867512, 256879.090300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9594259, "LATITUDE": 18.34144623, "OBJECTID_1": 7685, "PARCEL_NO_": "105201050900", "Tax_Legal_": "110 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "EVANS, WILLIAM C. & PATRICIA", "Address": "PO Box 308323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 219000, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.77935613099999, "SHAPE_Area": 2172.6946994499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355763.650100000202656, 256838.740699999034405 ], [ 355764.0608000010252, 256885.18470000103116 ], [ 355782.587999999523163, 256887.447200000286102 ], [ 355805.132299996912479, 256891.431400001049042 ], [ 355821.589500002563, 256852.724899999797344 ], [ 355811.940700002014637, 256849.479499999433756 ], [ 355786.174699999392033, 256845.046799998730421 ], [ 355763.650100000202656, 256838.740699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94193496, "LATITUDE": 18.34151626, "OBJECTID_1": 8989, "PARCEL_NO_": "105301020900", "Tax_Legal_": "32 ANNAS FANCY CROWN PRINCE", "Name": "VANTERPOOL, MARIE C.", "Address": "PO Box 304186", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.088878793299997, "SHAPE_Area": 491.55929208100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357624.263199999928474, 256895.765500001609325 ], [ 357643.548199996352196, 256903.733800001442432 ], [ 357650.208999998867512, 256879.090300001204014 ], [ 357630.089000001549721, 256874.49269999936223 ], [ 357624.263199999928474, 256895.765500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053000", "MAP": "D9-9249-T018", "PARCEL_NAM": "24", "ACRE": "0.20", "LONGITUDE": -64.95257845, "LATITUDE": 18.34149865, "OBJECTID_1": 8329, "PARCEL_NO_": "105202053000", "Tax_Legal_": "CONTANT 24 7BA SOUTHSIDE QTR", "Name": "PIERROT, SENATUS", "Address": "5-49 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65300, "Improved_V": 136500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.338662102, "SHAPE_Area": 621.81425707599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356513.375, 256861.975400000810623 ], [ 356510.961499996483326, 256861.322399999946356 ], [ 356493.712300002574921, 256885.170699998736382 ], [ 356497.8429000005126, 256886.757399998605251 ], [ 356516.325099997222424, 256894.296900000423193 ], [ 356517.170999996364117, 256889.659800000488758 ], [ 356519.634900003671646, 256884.40260000154376 ], [ 356522.908699996769428, 256878.729899998754263 ], [ 356531.059900000691414, 256868.453000001609325 ], [ 356513.375, 256861.975400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042000", "MAP": "G9-1285-T69", "PARCEL_NAM": "178-87", "ACRE": ".12", "LONGITUDE": -64.94421832, "LATITUDE": 18.34146233, "OBJECTID_1": 9111, "PARCEL_NO_": "105301042000", "Tax_Legal_": "ALTONA & WELGUNST 178 87 KRONPRINDSENS QTR", "Name": "MAGRAS, EDWIN L. & OTHERS", "Address": "5305 Cochran Dr", "City": "Nashville", "State": "Tennessee", "Zip": 37220, "Country": "United States", "Land_Value": 22900, "Improved_V": 50200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.008024463, "SHAPE_Area": 638.19346139499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357408.142700001597404, 256897.374099999666214 ], [ 357399.604099996387959, 256858.462999999523163 ], [ 357389.080700002610683, 256863.232099998742342 ], [ 357383.396899998188019, 256867.829599998891354 ], [ 357392.790399998426437, 256901.048200000077486 ], [ 357408.142700001597404, 256897.374099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202024900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95724177, "LATITUDE": 18.34156517, "OBJECTID_1": 8137, "PARCEL_NO_": "105202024900", "Tax_Legal_": "CONTANT 84-4 7A S.S. QTR.", "Name": "A Todman,M Watts,D Hanley,V&I Beazer,C Todman,S. A", "Address": "PO Box 12414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43400, "Improved_V": 56000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.652439693399998, "SHAPE_Area": 365.70642173800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356041.108800001442432, 256883.028000000864267 ], [ 356000.717299997806549, 256869.704599998891354 ], [ 356001.183200001716614, 256879.314899999648333 ], [ 356027.707000002264977, 256889.453400000929832 ], [ 356038.205200001597404, 256887.639499999582767 ], [ 356041.108800001442432, 256883.028000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97435496, "LATITUDE": 18.34002786, "OBJECTID_1": 7430, "PARCEL_NO_": "105104010400", "Tax_Legal_": "LINDBERG BAY 66 4A SOUTHSIDE QTR", "Name": "UNIVERSITY OF THE VI", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4941000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2443.75865626, "SHAPE_Area": 117017.74259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353945.405699998140335, 256730.344799999147654 ], [ 353948.645400002598763, 256728.682599999010563 ], [ 353951.039099998772144, 256731.657499998807907 ], [ 353955.855400003492832, 256734.230000000447035 ], [ 353960.714900001883507, 256731.736699998378754 ], [ 353966.366200000047684, 256730.938499998301268 ], [ 353968.799599997699261, 256729.26969999819994 ], [ 353968.772600002586842, 256732.435899998992682 ], [ 353973.495399996638298, 256745.984499998390675 ], [ 353973.470200002193451, 256748.939599998295307 ], [ 353976.603799998760223, 256759.731100000441074 ], [ 353981.19709999859333, 256788.477400001138449 ], [ 353978.61089999973774, 256808.087900001555681 ], [ 353980.160599999129772, 256815.488899998366833 ], [ 353979.293099999427795, 256822.659000001847744 ], [ 353977.635600000619888, 256827.922699999064207 ], [ 353976.789700001478195, 256832.559900000691414 ], [ 354078.941399998962879, 256862.737900000065565 ], [ 354075.753899998962879, 256858.278900001198053 ], [ 354071.812299996614456, 256847.691899999976158 ], [ 354070.217600002884865, 256845.567899998277426 ], [ 354067.940800003707409, 256828.872900001704693 ], [ 354067.283699996769428, 256811.346799999475479 ], [ 354069.826700001955032, 256796.802099999040365 ], [ 354073.968000002205372, 256783.959300000220537 ], [ 354078.890399999916553, 256774.078200001269579 ], [ 354085.427199997007847, 256763.999200001358986 ], [ 354091.818300001323223, 256771.017599999904633 ], [ 354087.723800003528595, 256778.372400000691414 ], [ 354082.8175999969244, 256786.353799998760223 ], [ 354078.676399998366833, 256799.196600001305342 ], [ 354076.993600003421307, 256807.415500000119209 ], [ 354076.844400003552437, 256824.934999998658895 ], [ 354079.1283999979496, 256840.785700000822544 ], [ 354083.853000000119209, 256854.1233000010252 ], [ 354087.832400001585484, 256860.27760000154376 ], [ 354095.028099998831749, 256867.513599999248981 ], [ 354113.526600003242493, 256873.153499998152256 ], [ 354115.949100002646446, 256872.7511 ], [ 354127.255400002002716, 256870.732700001448393 ], [ 354138.579800002276897, 256866.603500001132488 ], [ 354145.0591000020504, 256863.279100000858307 ], [ 354154.792300000786781, 256856.603700000792742 ], [ 354165.371500000357628, 256845.291299998760223 ], [ 354169.455200001597404, 256839.203000001609325 ], [ 354177.696400001645088, 256818.37220000103116 ], [ 354183.4070999994874, 256810.608399998396635 ], [ 354192.348399996757507, 256802.237900000065565 ], [ 354197.207900002598763, 256799.744500000029802 ], [ 354207.720499999821186, 256796.241999998688698 ], [ 354213.41330000013113, 256790.589000001549721 ], [ 354226.392700001597404, 256686.837200000882149 ], [ 354239.284699998795986, 256687.998199999332428 ], [ 354230.421400003135204, 256781.862300001084805 ], [ 354231.202500000596046, 256784.824000000953674 ], [ 354233.601700000464916, 256787.165699999779463 ], [ 354240.037799999117851, 256788.9070999994874 ], [ 354270.735200002789497, 256782.403400000184774 ], [ 354280.437899999320507, 256779.316399998962879 ], [ 354299.045999996364117, 256772.080400001257658 ], [ 354317.673900000751019, 256762.522599998861551 ], [ 354340.338799998164177, 256752.364500001072884 ], [ 354374.30460000038147, 256740.821199998259544 ], [ 354390.46679999679327, 256736.731600001454353 ], [ 354520.522299997508526, 256709.720600001513958 ], [ 354543.133199997246265, 256705.894900001585484 ], [ 354568.154100000858307, 256703.144400000572205 ], [ 354618.178400002419949, 256703.326699998229742 ], [ 354616.116700001060963, 256623.51969999819994 ], [ 354233.675700001418591, 256589.160500001162291 ], [ 354105.572700001299381, 256576.290800001472235 ], [ 354103.956500001251698, 256576.699799999594688 ], [ 354100.677299998700619, 256583.005800001323223 ], [ 354077.87219999730587, 256609.627999998629093 ], [ 354073.831699997186661, 256610.650400001555681 ], [ 354060.021799996495247, 256622.569699998944998 ], [ 354049.47860000282526, 256629.660599999129772 ], [ 354038.16330000013113, 256632.734400000423193 ], [ 354026.056000001728535, 256634.112900000065565 ], [ 354020.381300002336502, 256637.655099999159575 ], [ 354013.110100001096725, 256639.284299999475479 ], [ 354007.478500001132488, 256637.760600000619888 ], [ 354001.013599999248981, 256639.39640000090003 ], [ 353992.093800000846386, 256645.234000001102686 ], [ 353989.633500002324581, 256650.069099999964237 ], [ 353983.16499999910593, 256652.127000000327826 ], [ 353976.709100000560284, 256652.707499999552965 ], [ 353971.093699999153614, 256649.284000001847744 ], [ 353963.79730000346899, 256653.868400000035763 ], [ 353959.717200003564358, 256659.534499999135733 ], [ 353912.223899997770786, 256649.857700001448393 ], [ 353904.994099996984005, 256646.632100000977516 ], [ 353897.792999997735023, 256640.02930000051856 ], [ 353891.380300000309944, 256635.543800000101328 ], [ 353887.395499996840954, 256630.022799998521805 ], [ 353881.864600002765656, 256616.678599998354912 ], [ 353872.309299997985363, 256602.457100000232458 ], [ 353863.473999999463558, 256598.374000001698732 ], [ 353848.256599999964237, 256586.217199999839067 ], [ 353839.415899999439716, 256582.767299998551607 ], [ 353828.136500000953674, 256581.619500000029802 ], [ 353820.872500002384186, 256582.404399998486042 ], [ 353819.895400002598763, 256602.450300000607967 ], [ 353820.609999999403954, 256613.221999999135733 ], [ 353822.931800000369549, 256624.640000000596046 ], [ 353834.040399998426437, 256645.840300001204014 ], [ 353838.039599999785423, 256649.672699999064207 ], [ 353866.971500001847744, 256661.097500000149012 ], [ 353885.441200003027916, 256670.114500001072884 ], [ 353897.499899998307228, 256674.435100000351667 ], [ 353905.496500000357628, 256682.311000000685453 ], [ 353911.119099996984005, 256684.8902000002563 ], [ 353923.935599997639656, 256694.916499998420477 ], [ 353929.532999999821186, 256700.450699999928474 ], [ 353939.89639999717474, 256714.467700000852346 ], [ 353944.736100003123283, 256714.29619999974966 ], [ 353945.529799997806549, 256715.7804000005126 ], [ 353943.89919999986887, 256717.877999998629093 ], [ 353943.852399997413158, 256723.36600000038743 ], [ 353944.646200001239777, 256724.85020000115037 ], [ 353947.867799997329712, 256725.298700001090765 ], [ 353947.047100000083447, 256726.980700001120567 ], [ 353945.405699998140335, 256730.344799999147654 ] ] ], [ [ [ 353924.351700000464916, 256740.727200001478195 ], [ 353945.405699998140335, 256730.344799999147654 ], [ 353923.56700000166893, 256738.187600001692772 ], [ 353924.351700000464916, 256740.727200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051300", "MAP": "D9-220-T59", "PARCEL_NAM": "115", "ACRE": null, "LONGITUDE": -64.96059877, "LATITUDE": 18.34134468, "OBJECTID_1": 7689, "PARCEL_NO_": "105201051300", "Tax_Legal_": "CONTANT 115A 7A S S QTR", "Name": "SMITH, DAVID & LOUISE", "Address": "PO Box 958", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96500, "Improved_V": 26200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.64984989800001, "SHAPE_Area": 1578.5852675399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355677.776299998164177, 256885.533900000154972 ], [ 355685.497100003063679, 256831.135000001639128 ], [ 355643.52929999679327, 256835.435600001364946 ], [ 355641.713500000536442, 256859.274300001561642 ], [ 355677.776299998164177, 256885.533900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051100", "MAP": "D9-8476-T010", "PARCEL_NAM": "114-1", "ACRE": ".290", "LONGITUDE": -64.96021071, "LATITUDE": 18.34124716, "OBJECTID_1": 7687, "PARCEL_NO_": "105201051100", "Tax_Legal_": "CONTANT 114 SOUTHSIDE QUARTER", "Name": "RICHARDSON, HENRY & IRENE", "Address": "PO Box 6132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 190400, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.48936801900001, "SHAPE_Area": 1194.8679728499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355681.86150000244379, 256856.750799998641014 ], [ 355725.929399996995926, 256856.622699998319149 ], [ 355728.260399997234344, 256828.107500001788139 ], [ 355713.746799997985363, 256827.988699998706579 ], [ 355685.497100003063679, 256831.135000001639128 ], [ 355681.86150000244379, 256856.750799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301053700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94522124, "LATITUDE": 18.34155014, "OBJECTID_1": 9174, "PARCEL_NO_": "105301053700", "Tax_Legal_": "161 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "LAWRENCE AND LINDA BENJAMIN REVOCABLE TRUST", "Address": "PO Box 8738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15800, "Improved_V": 54500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.738933103500003, "SHAPE_Area": 310.54276706399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357300.217299997806549, 256882.347500000149012 ], [ 357280.883799999952316, 256880.078400000929832 ], [ 357279.939000003039837, 256896.324799999594688 ], [ 357298.4662000015378, 256898.587400000542402 ], [ 357300.217299997806549, 256882.347500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051000", "MAP": "D9-220-T59", "PARCEL_NAM": "113", "ACRE": null, "LONGITUDE": -64.95984522000001, "LATITUDE": 18.34138549, "OBJECTID_1": 7686, "PARCEL_NO_": "105201051000", "Tax_Legal_": "CONTANT 113 SOUTHSIDE QTR", "Name": "CHURCH OF GOD PROF INC", "Address": "PO Box 7434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 111100, "Improved_V": 153700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.16509986599999, "SHAPE_Area": 1924.02743928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355728.260399997234344, 256828.107500001788139 ], [ 355723.759499996900558, 256883.16609999909997 ], [ 355743.922700002789497, 256882.697799999266863 ], [ 355764.0608000010252, 256885.18470000103116 ], [ 355763.650100000202656, 256838.740699999034405 ], [ 355745.160599999129772, 256832.045499999076128 ], [ 355728.260399997234344, 256828.107500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94115217, "LATITUDE": 18.34144686, "OBJECTID_1": 9027, "PARCEL_NO_": "105301024000", "Tax_Legal_": "22 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "GEORGE, AMANDA", "Address": "3218 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28000, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.069555331000004, "SHAPE_Area": 528.23889050599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357731.743699997663498, 256868.358600001782179 ], [ 357716.466899998486042, 256863.167300000786781 ], [ 357708.1503000035882, 256892.863499999046326 ], [ 357723.407300002872944, 256900.376600001007318 ], [ 357727.566500000655651, 256885.423000000417233 ], [ 357731.743699997663498, 256868.358600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301053200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9456717, "LATITUDE": 18.34153914, "OBJECTID_1": 9169, "PARCEL_NO_": "105301053200", "Tax_Legal_": "127 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "ESTRELLA, JULIANA", "Address": "PO BOX 302631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17500, "Improved_V": 75800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.703965221900006, "SHAPE_Area": 277.86422819299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357251.849299997091293, 256880.685100000351667 ], [ 357234.119400002062321, 256879.484499998390675 ], [ 357233.275399997830391, 256883.910599999129772 ], [ 357232.380900003015995, 256894.246899999678135 ], [ 357250.911700002849102, 256896.08729999884963 ], [ 357251.849299997091293, 256880.685100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301053600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94540457, "LATITUDE": 18.3415311, "OBJECTID_1": 9173, "PARCEL_NO_": "105301053600", "Tax_Legal_": "160 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "HAYNES, AUBREY", "Address": "BOX 1832", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17100, "Improved_V": 122300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.3891010217, "SHAPE_Area": 323.904517994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357280.883799999952316, 256880.078400000929832 ], [ 357261.552000001072884, 256877.598099999129772 ], [ 357259.800999999046326, 256893.837999999523163 ], [ 357279.939000003039837, 256896.324799999594688 ], [ 357280.883799999952316, 256880.078400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042100", "MAP": "G9-1285-T69", "PARCEL_NAM": "178-88", "ACRE": ".12", "LONGITUDE": -64.94408016, "LATITUDE": 18.34141424, "OBJECTID_1": 9112, "PARCEL_NO_": "105301042100", "Tax_Legal_": "ALTONA & WELGUNST 178-88 KRONPRINDSENS QTR", "Name": "CHRISTOPHER, MARGARET", "Address": "3522 Altona&Welgunst178-88", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20600, "Improved_V": 30900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.05963519300001, "SHAPE_Area": 570.87387386700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357420.264300003647804, 256894.30689999833703 ], [ 357414.963600002229214, 256853.944699998944998 ], [ 357399.604099996387959, 256858.462999999523163 ], [ 357408.142700001597404, 256897.374099999666214 ], [ 357420.264300003647804, 256894.30689999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94494416000001, "LATITUDE": 18.34152599, "OBJECTID_1": 9100, "PARCEL_NO_": "105301040900", "Tax_Legal_": "168 ALTONA & WELGUNST\nKRONPRINDSENS QTR", "Name": "FRANCIS, MANEFA O'CONNOR", "Address": "168 Estate Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14700, "Improved_V": 42800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.923246591400002, "SHAPE_Area": 314.54270012500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357330.06700000166893, 256880.69200000166893 ], [ 357309.932599999010563, 256877.782999999821186 ], [ 357308.186899997293949, 256893.389600001275539 ], [ 357329.134800001978874, 256895.460900001227856 ], [ 357329.178000003099442, 256890.394999999552965 ], [ 357330.040100000798702, 256883.858199998736382 ], [ 357330.06700000166893, 256880.69200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202052900", "MAP": "G9-417-T56", "PARCEL_NAM": "26", "ACRE": "0.22", "LONGITUDE": -64.95283395, "LATITUDE": 18.34140025, "OBJECTID_1": 8328, "PARCEL_NO_": "105202052900", "Tax_Legal_": "CONTANT 26 7BA SOUTHSIDE QTR", "Name": "BURGOS, WILFRIDO & WILFREDO", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69600, "Improved_V": 126100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.32114451199999, "SHAPE_Area": 1106.3800448300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356510.961499996483326, 256861.322399999946356 ], [ 356483.989500001072884, 256846.48200000077486 ], [ 356462.548500001430511, 256864.936900001019239 ], [ 356456.852200001478195, 256871.011999998241663 ], [ 356493.712300002574921, 256885.170699998736382 ], [ 356510.961499996483326, 256861.322399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042200", "MAP": "G9-1285-T69", "PARCEL_NAM": "178-89", "ACRE": ".18", "LONGITUDE": -64.94391222, "LATITUDE": 18.34138189, "OBJECTID_1": 9113, "PARCEL_NO_": "105301042200", "Tax_Legal_": "ALTONA & WELGUNST 178-89 KRONPRINDSENS QTR", "Name": "DANET, MUGUELINA & OTHERS", "Address": "PO Box 1980", "City": "Loiza", "State": "Puerto Rico", "Zip": 772, "Country": "United States", "Land_Value": 41900, "Improved_V": 73700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.79676068099999, "SHAPE_Area": 897.58865223500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357442.889600001275539, 256888.792599998414516 ], [ 357435.168200001120567, 256848.621599998325109 ], [ 357414.963600002229214, 256853.944699998944998 ], [ 357420.264300003647804, 256894.30689999833703 ], [ 357442.889600001275539, 256888.792599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105201065100", "MAP": "G9-614-T62", "PARCEL_NAM": "15A", "ACRE": null, "LONGITUDE": -64.96433032, "LATITUDE": 18.34139894, "OBJECTID_1": 7777, "PARCEL_NO_": "105201065100", "Tax_Legal_": "LINDBERG BAY 15A SOUTHSIDE QTR", "Name": "MARK A GOTTLIEB SR", "Address": "P O BOX 2852", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56500, "Improved_V": 86300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.14412963199999, "SHAPE_Area": 2339.6741917499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355300.801500000059605, 256837.907800000160933 ], [ 355300.661700002849102, 256835.323399998247623 ], [ 355237.42230000346899, 256840.109400000423193 ], [ 355239.995399996638298, 256876.462499998509884 ], [ 355265.003700003027916, 256875.189500000327826 ], [ 355302.112000003457069, 256873.38230000063777 ], [ 355300.801500000059605, 256837.907800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201054400", "MAP": "D9-6317-T97", "PARCEL_NAM": "124-1", "ACRE": ".37", "LONGITUDE": -64.95846461, "LATITUDE": 18.34119838, "OBJECTID_1": 7720, "PARCEL_NO_": "105201054400", "Tax_Legal_": "CONTANT 124-1 7A SOUTHDISE QRT", "Name": "SEAMUS, EILIS & MINOQUE LIAM", "Address": "PO Box 821", "City": "Manchester", "State": "Maryland", "Zip": 21102, "Country": "United States", "Land_Value": 144200, "Improved_V": 1000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.953546899, "SHAPE_Area": 2105.8080583300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355870.308100000023842, 256813.227000001817942 ], [ 355878.749499998986721, 256863.536299999803305 ], [ 355858.532399997115135, 256870.336899999529123 ], [ 355860.071299999952316, 256879.004399999976158 ], [ 355868.982100002467632, 256874.222199998795986 ], [ 355911.043399997055531, 256858.945500001311302 ], [ 355908.294699996709824, 256802.983199998736382 ], [ 355901.000100001692772, 256807.356499999761581 ], [ 355888.871200002729893, 256811.26799999922514 ], [ 355870.308100000023842, 256813.227000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94129504, "LATITUDE": 18.3413858, "OBJECTID_1": 9026, "PARCEL_NO_": "105301023900", "Tax_Legal_": "ANNAS FANCY 23 CROWN PRINCE QUARTER", "Name": "DONADELLE DECOSTA, DENISE", "Address": "PO Box 11466", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 77800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.333677689699996, "SHAPE_Area": 478.027214448 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357714.857900001108646, 256862.73200000077486 ], [ 357706.818099997937679, 256859.921999998390675 ], [ 357699.58110000193119, 256857.540699999779463 ], [ 357697.885799996554852, 256867.237100001424551 ], [ 357695.301399998366833, 256886.636599998921156 ], [ 357708.1503000035882, 256892.863499999046326 ], [ 357716.466899998486042, 256863.167300000786781 ], [ 357714.857900001108646, 256862.73200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042300", "MAP": "G9-1285-T69", "PARCEL_NAM": "178-90", "ACRE": ".19", "LONGITUDE": -64.94370775, "LATITUDE": 18.34133082, "OBJECTID_1": 9114, "PARCEL_NO_": "105301042300", "Tax_Legal_": "ALTONA & WELGUNST 178 90 KRONPRINDSENS QTR", "Name": "GRIFFIN, NORRIS & EDELTA", "Address": "PO Box 10558", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34300, "Improved_V": 62300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.840293155, "SHAPE_Area": 912.48180969099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357464.706799998879433, 256883.482700001448393 ], [ 357457.780900001525879, 256844.584800001233816 ], [ 357435.168200001120567, 256848.621599998325109 ], [ 357442.889600001275539, 256888.792599998414516 ], [ 357464.706799998879433, 256883.482700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202042200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95445457, "LATITUDE": 18.34110642, "OBJECTID_1": 8282, "PARCEL_NO_": "105202042200", "Tax_Legal_": "CONTANT 15D 7BA SOUTHSIDE QTR", "Name": "HAMLIN, BRUCE B and EDELL H", "Address": "PO Box 2449", "City": "Umatilla", "State": "Florida", "Zip": 32784, "Country": "United States", "Land_Value": 317800, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.92521317000001, "SHAPE_Area": 4035.5282711599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356347.702600002288818, 256810.379200000315905 ], [ 356349.340400002896786, 256807.437300000339746 ], [ 356312.471199996769428, 256781.171100001782179 ], [ 356296.964199997484684, 256802.997900001704693 ], [ 356292.855400003492832, 256812.041299998760223 ], [ 356289.488099999725819, 256828.690099999308586 ], [ 356286.89469999819994, 256849.144900001585484 ], [ 356287.456500001251698, 256877.858300000429153 ], [ 356306.831299997866154, 256875.272599998861551 ], [ 356327.005300000309944, 256873.537900000810623 ], [ 356347.702600002288818, 256810.379200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95718313, "LATITUDE": 18.34137002, "OBJECTID_1": 8139, "PARCEL_NO_": "105202025100", "Tax_Legal_": "CONTANT ESTATE 84-6 7A SOUTHSIDE QTR.", "Name": "ORTIZ, YAHAIRA", "Address": "84-6 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83200, "Improved_V": 181600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.38418823500001, "SHAPE_Area": 1716.0986792000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356050.627199999988079, 256849.32209999859333 ], [ 356027.337600000202656, 256838.154699999839067 ], [ 356002.311300002038479, 256841.538400001823902 ], [ 356000.626800000667572, 256849.968400001525879 ], [ 356000.497299998998642, 256865.16609999909997 ], [ 356000.717299997806549, 256869.704599998891354 ], [ 356041.108800001442432, 256883.028000000864267 ], [ 356047.196900002658367, 256873.35869999974966 ], [ 356050.465300001204014, 256868.319200001657009 ], [ 356050.556999996304512, 256857.554200001060963 ], [ 356050.627199999988079, 256849.32209999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94144474, "LATITUDE": 18.3413847, "OBJECTID_1": 9031, "PARCEL_NO_": "105301024400", "Tax_Legal_": "ANNAS FANCY 26A CROWN PRINCE QTR", "Name": "GUTLIFFE, JOAN M. & DOWARD, KITURAH V.& HUNT,LISA M.", "Address": "3232 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11700, "Improved_V": 95000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.376869506199995, "SHAPE_Area": 283.56610601800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357697.885799996554852, 256867.237100001424551 ], [ 357682.598200000822544, 256863.312300000339746 ], [ 357680.044399999082088, 256879.123399998992682 ], [ 357695.301399998366833, 256886.636599998921156 ], [ 357697.885799996554852, 256867.237100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202072200", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3L", "ACRE": "0.14", "LONGITUDE": -64.95140523000001, "LATITUDE": 18.34128416, "OBJECTID_1": 8430, "PARCEL_NO_": "105202072200", "Tax_Legal_": "23-3L CONTANT 7BA S S QTR", "Name": "GRAY, JR., HOWARD & ERENE", "Address": "3058-11 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46600, "Improved_V": 110400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.40799237100001, "SHAPE_Area": 640.84387778099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356655.739399999380112, 256850.203000001609325 ], [ 356620.798000000417233, 256841.323100000619888 ], [ 356617.673000000417233, 256857.709300000220537 ], [ 356617.472599998116493, 256858.760200001299381 ], [ 356651.738300003111362, 256867.897700000554323 ], [ 356652.010899998247623, 256866.692200001329184 ], [ 356655.739399999380112, 256850.203000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105201045500", "MAP": null, "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.96251929, "LATITUDE": 18.34058534, "OBJECTID_1": 7636, "PARCEL_NO_": "105201045500", "Tax_Legal_": "12 LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "CREQUE, MARGARET LOUISE & WILLIAM CARTER", "Address": "12 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 751400, "Improved_V": 537900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 515.31061133599997, "SHAPE_Area": 11776.568127099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355491.275799997150898, 256723.154199998825788 ], [ 355490.674400001764297, 256699.084600001573563 ], [ 355490.152199998497963, 256665.727600000798702 ], [ 355466.738600000739098, 256669.124499998986721 ], [ 355431.250100001692772, 256670.100600000470877 ], [ 355432.642200000584126, 256790.646499998867512 ], [ 355434.408399999141693, 256867.287900000810623 ], [ 355494.100699998438358, 256864.821100000292063 ], [ 355494.271600000560284, 256844.7685999982059 ], [ 355493.504799999296665, 256840.118299998342991 ], [ 355493.022200003266335, 256802.117499999701977 ], [ 355492.447800002992153, 256774.881700001657009 ], [ 355491.864500001072884, 256748.701400000602007 ], [ 355491.275799997150898, 256723.154199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301054000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94520831, "LATITUDE": 18.34140342, "OBJECTID_1": 9176, "PARCEL_NO_": "105301054000", "Tax_Legal_": "163 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "JACKSON, J & CHARLES, C", "Address": "163 MAHOGANY EST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15800, "Improved_V": 23000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.859916845800001, "SHAPE_Area": 321.77726320099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357282.638400003314018, 256863.416299998760223 ], [ 357280.883799999952316, 256880.078400000929832 ], [ 357300.217299997806549, 256882.347500000149012 ], [ 357301.935999996960163, 256869.9070999994874 ], [ 357301.154899999499321, 256866.94539999961853 ], [ 357299.55120000243187, 256865.876800000667572 ], [ 357282.638400003314018, 256863.416299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051700", "MAP": "D9-6317-T97", "PARCEL_NAM": "124 REM", "ACRE": null, "LONGITUDE": -64.95902834, "LATITUDE": 18.34115975, "OBJECTID_1": 7693, "PARCEL_NO_": "105201051700", "Tax_Legal_": "CONTANT ESTATE 124 7A SOUTHSIDE QTR.", "Name": "THOMAS, CYRIL H. & GERMENE M", "Address": "PO BOX 502565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 227000, "Improved_V": 66200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.65231386699998, "SHAPE_Area": 3574.6937611799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355858.532399997115135, 256870.336899999529123 ], [ 355878.749499998986721, 256863.536299999803305 ], [ 355870.308100000023842, 256813.227000001817942 ], [ 355770.27139999717474, 256818.74100000038743 ], [ 355757.355999998748302, 256820.324099998921156 ], [ 355754.919100001454353, 256822.415100000798702 ], [ 355754.87950000166893, 256827.058800000697374 ], [ 355757.282300002872944, 256828.978300001472235 ], [ 355779.801500000059605, 256835.917599998414516 ], [ 355807.176500000059605, 256840.785700000822544 ], [ 355823.265000000596046, 256845.350400000810623 ], [ 355848.165399998426437, 256856.74210000038147 ], [ 355854.574600003659725, 256861.649700000882149 ], [ 355856.169200003147125, 256863.773699998855591 ], [ 355858.532399997115135, 256870.336899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202054400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95319244, "LATITUDE": 18.34073804, "OBJECTID_1": 8343, "PARCEL_NO_": "105202054400", "Tax_Legal_": "CONTANT 3 7BA SOUTHSIDE QTR", "Name": "PASCAL, GERALDINE DENNIS & JOSEPH DENNIS, JR.", "Address": "PO BOX 8791", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 163400, "Improved_V": 192100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 403.58596462700001, "SHAPE_Area": 2700.1297749800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356469.63740000128746, 256790.056800000369549 ], [ 356471.929099999368191, 256785.749600000679493 ], [ 356489.896999999880791, 256792.16950000077486 ], [ 356496.397399999201298, 256758.549699999392033 ], [ 356493.30460000038147, 256756.897700000554323 ], [ 356489.962399996817112, 256770.591400001198053 ], [ 356481.843599997460842, 256777.068900000303984 ], [ 356465.780299998819828, 256769.549100000411272 ], [ 356437.672600001096725, 256756.020199999213219 ], [ 356431.130400002002716, 256766.732400000095367 ], [ 356428.673699997365475, 256771.145300000905991 ], [ 356427.849399998784065, 256773.249400001019239 ], [ 356417.1587999984622, 256797.648800000548363 ], [ 356450.923199996352196, 256809.746399998664856 ], [ 356437.097199998795986, 256823.565400000661612 ], [ 356415.949600003659725, 256844.923900000751019 ], [ 356405.492799997329712, 256841.883000001311302 ], [ 356403.792000003159046, 256852.212600000202656 ], [ 356406.095899999141693, 256865.741500001400709 ], [ 356410.219099998474121, 256855.009399998933077 ], [ 356415.924500003457069, 256847.879000000655651 ], [ 356421.593800000846386, 256844.970100000500679 ], [ 356432.952299997210503, 256836.830400001257658 ], [ 356441.065800003707409, 256830.986200001090765 ], [ 356448.381999999284744, 256824.079900000244379 ], [ 356454.121500000357628, 256812.938999999314547 ], [ 356457.406000003218651, 256805.999800000339746 ], [ 356467.180699996650219, 256794.4695999994874 ], [ 356469.63740000128746, 256790.056800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95406139000001, "LATITUDE": 18.34117211, "OBJECTID_1": 8283, "PARCEL_NO_": "105202042300", "Tax_Legal_": "CONTANT 15E 7BA S S QTR", "Name": "CARTY, THEODORE", "Address": "PO Box 11314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 193100, "Improved_V": 9000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.002200577, "SHAPE_Area": 2024.96079525 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356400.049999997019768, 256818.195900000631809 ], [ 356347.702600002288818, 256810.379200000315905 ], [ 356327.005300000309944, 256873.537900000810623 ], [ 356347.987400002777576, 256871.598700001835823 ], [ 356356.864100001752377, 256870.826999999582767 ], [ 356361.70549999922514, 256870.444400001317263 ], [ 356359.515000000596046, 256843.617600001394749 ], [ 356371.606100000441074, 256844.138700000941753 ], [ 356379.057099997997284, 256821.401599999517202 ], [ 356398.370800003409386, 256825.99269999936223 ], [ 356400.049999997019768, 256818.195900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301043200", "MAP": "F9-2719-T70", "PARCEL_NAM": "197", "ACRE": null, "LONGITUDE": -64.94477449, "LATITUDE": 18.34140998, "OBJECTID_1": 9124, "PARCEL_NO_": "105301043200", "Tax_Legal_": "ALTONA & WELGUNST 197 KRONPRINDSENS QTR", "Name": "WILLIAMS, MILBURN & MARTHA", "Address": "PO Box 10291", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.851026730500003, "SHAPE_Area": 161.270842625 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357334.215499997138977, 256867.004900000989437 ], [ 357330.952500000596046, 256871.411100000143051 ], [ 357330.06700000166893, 256880.69200000166893 ], [ 357337.314800001680851, 256881.806800000369549 ], [ 357347.89580000191927, 256870.283300001174212 ], [ 357334.215499997138977, 256867.004900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301053500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94565567, "LATITUDE": 18.34139781, "OBJECTID_1": 9172, "PARCEL_NO_": "105301053500", "Tax_Legal_": "126 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "BARBARA MERCEDES CALLWOOD REVOCABLE TRUST", "Address": "PO Box 305545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17500, "Improved_V": 73200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.0939283405, "SHAPE_Area": 284.91840692099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357254.294699996709824, 256864.937600001692772 ], [ 357236.678599998354912, 256863.040199998766184 ], [ 357235.820200003683567, 256869.154899999499321 ], [ 357234.119400002062321, 256879.484499998390675 ], [ 357251.849299997091293, 256880.685100000351667 ], [ 357253.575199998915195, 256867.400299999862909 ], [ 357254.294699996709824, 256864.937600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94492878, "LATITUDE": 18.34138744, "OBJECTID_1": 9101, "PARCEL_NO_": "105301041000", "Tax_Legal_": "169 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "DOYLING, SARAH R. & MILBURN, MILDENE B. & MARLENE WILLIAMS", "Address": "PO Box 10291", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 64600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.428784767500005, "SHAPE_Area": 318.968355551 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357334.215499997138977, 256867.004900000989437 ], [ 357315.711599998176098, 256861.9983000010252 ], [ 357312.468400001525879, 256864.082699999213219 ], [ 357310.836000002920628, 256866.39130000025034 ], [ 357309.932599999010563, 256877.782999999821186 ], [ 357330.06700000166893, 256880.69200000166893 ], [ 357330.952500000596046, 256871.411100000143051 ], [ 357334.215499997138977, 256867.004900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301053900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94538802, "LATITUDE": 18.34138473, "OBJECTID_1": 9175, "PARCEL_NO_": "105301053900", "Tax_Legal_": "162 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "NOVITA C SCATLIFFE GEORGE REVOCABLE LIVING TRUST", "Address": "BOX 5344", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15800, "Improved_V": 50200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.0426333212, "SHAPE_Area": 313.69251250299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357261.552000001072884, 256877.598099999129772 ], [ 357280.883799999952316, 256880.078400000929832 ], [ 357282.638400003314018, 256863.416299998760223 ], [ 357269.751800000667572, 256861.622099999338388 ], [ 357266.515799999237061, 256862.862199999392033 ], [ 357264.078900001943111, 256864.953200001269579 ], [ 357262.441100001335144, 256867.895100001245737 ], [ 357261.552000001072884, 256877.598099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201048200", "MAP": "D9-7251-T003", "PARCEL_NAM": "11-N", "ACRE": ".15", "LONGITUDE": -64.96166547, "LATITUDE": 18.34103933, "OBJECTID_1": 7663, "PARCEL_NO_": "105201048200", "Tax_Legal_": "LINDBER BAY 11 SOUTHSIDE QTR", "Name": "HARLEY, RAMONA, GWENDOLYN & JUNE", "Address": "BOX 4071", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47100, "Improved_V": 88600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.46069448900001, "SHAPE_Area": 578.82755804400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355532.385799996554852, 256819.53830000013113 ], [ 355534.07769999653101, 256821.946899998933077 ], [ 355536.946699999272823, 256823.497499998658895 ], [ 355557.763300001621246, 256833.7939000017941 ], [ 355563.729500003159046, 256831.827100001275539 ], [ 355562.388400003314018, 256799.940999999642372 ], [ 355532.385799996554852, 256819.53830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91261448, "LATITUDE": 18.34115909, "OBJECTID_1": 19717, "PARCEL_NO_": "105501020800", "Tax_Legal_": "52E-1&52EA ESTATE THOMAS No.6A NEW QTR.", "Name": "VANTERPOOL, JOE H", "Address": "PO Box 10391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 808600, "Improved_V": 1985100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.209040708, "SHAPE_Area": 797.84501121100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360746.434500001370907, 256906.120200000703335 ], [ 360738.925300002098083, 256841.041999999433756 ], [ 360726.816200003027916, 256842.631599999964237 ], [ 360734.327299997210503, 256907.498799998313189 ], [ 360746.434500001370907, 256906.120200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201047700", "MAP": "F9-926-T62", "PARCEL_NAM": "11-M", "ACRE": null, "LONGITUDE": -64.96167253, "LATITUDE": 18.34132765, "OBJECTID_1": 7658, "PARCEL_NO_": "105201047700", "Tax_Legal_": "11M LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "HOMER, PHYLLIS & OTHERS", "Address": "PO Box 7944", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14700, "Improved_V": 102800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.654482171, "SHAPE_Area": 818.44051400599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355536.032600000500679, 256864.74210000038147 ], [ 355565.867899999022484, 256864.775199998170137 ], [ 355563.729500003159046, 256831.827100001275539 ], [ 355536.235799998044968, 256840.8902000002563 ], [ 355536.032600000500679, 256864.74210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201045900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96138225, "LATITUDE": 18.34130245, "OBJECTID_1": 7640, "PARCEL_NO_": "105201045900", "Tax_Legal_": "1OG LINDBERG BAY SOUTHSIDE QUARTER", "Name": "KUVACH, ANTON", "Address": "PO Box 304452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.95970322599999, "SHAPE_Area": 1136.98514813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355598.408100001513958, 256831.266600001603365 ], [ 355563.729500003159046, 256831.827100001275539 ], [ 355565.867899999022484, 256864.775199998170137 ], [ 355599.736699998378754, 256864.630199998617172 ], [ 355598.408100001513958, 256831.266600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053700", "MAP": "F9-2091-T67", "PARCEL_NAM": "30", "ACRE": "0.20", "LONGITUDE": -64.95201277, "LATITUDE": 18.34108954, "OBJECTID_1": 8336, "PARCEL_NO_": "105202053700", "Tax_Legal_": "CONTANT 3O 7BA SOUTHSIDE QTR", "Name": "HENDRICKS, DELVIN, SR. , DENISE FELTON & ILEAN NORMIL SMITH", "Address": "P. O. BOX 2382", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.754225125, "SHAPE_Area": 803.82460593400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356588.104400001466274, 256819.376400001347065 ], [ 356566.198899999260902, 256813.856300000101328 ], [ 356561.253100000321865, 256826.4814000017941 ], [ 356554.499099999666214, 256842.18129999935627 ], [ 356580.855099998414516, 256851.976399999111891 ], [ 356588.104400001466274, 256819.376400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201046000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96098346, "LATITUDE": 18.34129344, "OBJECTID_1": 7641, "PARCEL_NO_": "105201046000", "Tax_Legal_": "LINDBERG BAY 10 H SOUTHSIDE QTR", "Name": "HASSAN, ABDAHLLAH", "Address": "10H Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.05242624600001, "SHAPE_Area": 1256.46978672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355606.187200002372265, 256864.68299999833107 ], [ 355641.668499998748302, 256864.551199998706579 ], [ 355641.713500000536442, 256859.274300001561642 ], [ 355643.52929999679327, 256835.435600001364946 ], [ 355643.572400003671646, 256830.369699999690056 ], [ 355604.860399998724461, 256831.108300000429153 ], [ 355606.187200002372265, 256864.68299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202042400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95385605, "LATITUDE": 18.34132203, "OBJECTID_1": 8284, "PARCEL_NO_": "105202042400", "Tax_Legal_": "CONTANT 15C 7BA SOUTHSIDE QTR", "Name": "LLOYD, JANET and ALLYSON", "Address": "15 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85700, "Improved_V": 109200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.323322219, "SHAPE_Area": 851.46195757600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356394.980099998414516, 256845.385499998927116 ], [ 356371.606100000441074, 256844.138700000941753 ], [ 356359.515000000596046, 256843.617600001394749 ], [ 356361.70549999922514, 256870.444400001317263 ], [ 356376.231700003147125, 256869.08559999987483 ], [ 356396.405699998140335, 256867.350900001823902 ], [ 356395.630000002682209, 256863.756000000983477 ], [ 356394.980099998414516, 256845.385499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94158698, "LATITUDE": 18.34127919, "OBJECTID_1": 9024, "PARCEL_NO_": "105301023700", "Tax_Legal_": "27 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "LAPLANTE, SERGIO", "Address": "PO Box 308117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24300, "Improved_V": 41800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.834838268, "SHAPE_Area": 450.87772546299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357685.108800001442432, 256852.567099999636412 ], [ 357668.222999997437, 256846.940499998629093 ], [ 357664.018899999558926, 256867.171000000089407 ], [ 357665.588299997150898, 256872.250100001692772 ], [ 357680.044399999082088, 256879.123399998992682 ], [ 357682.598200000822544, 256863.312300000339746 ], [ 357685.108800001442432, 256852.567099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053600", "MAP": "D9-873-T69", "PARCEL_NAM": "27", "ACRE": "0.09", "LONGITUDE": -64.9524466, "LATITUDE": 18.34131203, "OBJECTID_1": 8335, "PARCEL_NO_": "105202053600", "Tax_Legal_": "CONTANT 27 7BA SOUTHSIDE QTR", "Name": "GEORGE, RALPH & OLIVE (LIFE ESTATE)", "Address": "PO Box 10707", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26100, "Improved_V": 56400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.406675557699998, "SHAPE_Area": 400.53699787099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356523.515299998223782, 256845.489100001752377 ], [ 356521.961599998176098, 256844.8935999982059 ], [ 356521.574500001966953, 256845.471799999475479 ], [ 356518.881700001657009, 256849.493599999696016 ], [ 356510.961499996483326, 256861.322399999946356 ], [ 356513.375, 256861.975400000810623 ], [ 356531.059900000691414, 256868.453000001609325 ], [ 356540.86150000244379, 256853.756700001657009 ], [ 356541.662799999117851, 256852.444600000977516 ], [ 356526.85249999910593, 256846.768199998885393 ], [ 356523.515299998223782, 256845.489100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202025200", "MAP": "D9-2167-T82", "PARCEL_NAM": "84-7", "ACRE": null, "LONGITUDE": -64.95682368, "LATITUDE": 18.34140369, "OBJECTID_1": 8140, "PARCEL_NO_": "105202025200", "Tax_Legal_": "CONTANT 84-7 7A SOUTHSIDE QTR.", "Name": "HODGE, VERNON & ERNESTINE", "Address": "PO Box 10598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.165441284300002, "SHAPE_Area": 576.49243697600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356076.389600001275539, 256854.177099999040365 ], [ 356050.627199999988079, 256849.32209999859333 ], [ 356050.556999996304512, 256857.554200001060963 ], [ 356050.465300001204014, 256868.319200001657009 ], [ 356072.138700000941753, 256879.895700000226498 ], [ 356075.437600001692772, 256871.267799999564886 ], [ 356076.305100001394749, 256864.097800001502037 ], [ 356076.389600001275539, 256854.177099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95795341, "LATITUDE": 18.34086907, "OBJECTID_1": 8130, "PARCEL_NO_": "105202024000", "Tax_Legal_": "CONTANT 98B 7A SOUTHSIDE QTR", "Name": "WILLIAMS, JR., WINSTON M A", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 357900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.36804445199999, "SHAPE_Area": 4474.8358692100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355955.530799999833107, 256842.844300001859665 ], [ 355986.26349999755621, 256737.5489999987185 ], [ 355966.965899996459484, 256731.058299999684095 ], [ 355952.051299996674061, 256778.010099999606609 ], [ 355922.091899998486042, 256792.541400000452995 ], [ 355918.854099996387959, 256793.992600001394749 ], [ 355908.294699996709824, 256802.983199998736382 ], [ 355911.043399997055531, 256858.945500001311302 ], [ 355921.557800002396107, 256855.231899999082088 ], [ 355955.530799999833107, 256842.844300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94178403, "LATITUDE": 18.34123829, "OBJECTID_1": 9019, "PARCEL_NO_": "105301023300", "Tax_Legal_": "ANNAS FANCY 31 CROWN PRINCE QTR", "Name": "BROWN, VIOLET D. (LIFE ESTATE)", "Address": "P.O. BOX 5156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11500, "Improved_V": 65600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.649724719399998, "SHAPE_Area": 297.35347281899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357652.143500000238419, 256841.32039999961853 ], [ 357645.437700003385544, 256871.240800000727177 ], [ 357654.291000001132488, 256873.213100001215935 ], [ 357655.914399996399879, 256871.959899999201298 ], [ 357660.993199996650219, 256843.714899998158216 ], [ 357652.143500000238419, 256841.32039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94189266, "LATITUDE": 18.34121224, "OBJECTID_1": 9023, "PARCEL_NO_": "105301023600", "Tax_Legal_": "31A ANNAS FANCY KRONPRINDSENS GADE", "Name": "BROWN (LIFE ESTATE), ALVIN W.", "Address": "821 NW 196 Ter", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 10000, "Improved_V": 58800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.128032040500003, "SHAPE_Area": 428.07092291399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357631.757399998605251, 256867.962499998509884 ], [ 357645.437700003385544, 256871.240800000727177 ], [ 357652.143500000238419, 256841.32039999961853 ], [ 357639.271300002932549, 256837.837600000202656 ], [ 357632.604999996721745, 256863.11430000141263 ], [ 357631.757399998605251, 256867.962499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94483243000001, "LATITUDE": 18.341268, "OBJECTID_1": 9102, "PARCEL_NO_": "105301041100", "Tax_Legal_": "ALTONA & WELGUNST 170&185 KRONPRINDSENS QTR", "Name": "LATALLADI, SONIA M., BONIFACIO, JESUS M. & CARMEN GEORGE", "Address": "170 ALTONA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23700, "Improved_V": 368800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.587021828000005, "SHAPE_Area": 263.90693328399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357344.807199999690056, 256854.214899998158216 ], [ 357330.33500000089407, 256849.241300001740456 ], [ 357324.636799998581409, 256855.527399998158216 ], [ 357315.711599998176098, 256861.9983000010252 ], [ 357334.215499997138977, 256867.004900000989437 ], [ 357344.807199999690056, 256854.214899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94142746, "LATITUDE": 18.34125751, "OBJECTID_1": 9025, "PARCEL_NO_": "105301023800", "Tax_Legal_": "26 ANNAS FANCY CROWN PRINCE", "Name": "SMITH, JOHANNA", "Address": "3232 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.964534613799998, "SHAPE_Area": 161.441438113 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357699.58110000193119, 256857.540699999779463 ], [ 357685.108800001442432, 256852.567099999636412 ], [ 357682.598200000822544, 256863.312300000339746 ], [ 357697.885799996554852, 256867.237100001424551 ], [ 357699.58110000193119, 256857.540699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301043100", "MAP": null, "PARCEL_NAM": "187", "ACRE": null, "LONGITUDE": -64.94578183, "LATITUDE": 18.3410155, "OBJECTID_1": 9123, "PARCEL_NO_": "105301043100", "Tax_Legal_": "187 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "QOED, NIDAL M", "Address": "PO BOX 11015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44600, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.94653017499999, "SHAPE_Area": 1496.9384279799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357214.508299998939037, 256815.151599999517202 ], [ 357217.839500002563, 256856.338899999856949 ], [ 357236.678599998354912, 256863.040199998766184 ], [ 357237.568800002336502, 256839.723200000822544 ], [ 357261.409199997782707, 256815.031399998813868 ], [ 357212.99099999666214, 256803.951200000941753 ], [ 357214.508299998939037, 256815.151599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053500", "MAP": "G9-1039-T68", "PARCEL_NAM": "28", "ACRE": "0.12", "LONGITUDE": -64.95266731, "LATITUDE": 18.34122392, "OBJECTID_1": 8334, "PARCEL_NO_": "105202053500", "Tax_Legal_": "CONTANT 28 7BA SOUTHSIDE QTR", "Name": "KING, AVON D. & OTHERS", "Address": "PO Box 1322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37900, "Improved_V": 71600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.951742323900007, "SHAPE_Area": 518.82341811200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356519.898500002920628, 256847.975099999457598 ], [ 356500.757799997925758, 256831.987799998372793 ], [ 356499.915799997746944, 256832.734400000423193 ], [ 356488.542900003492832, 256842.562699999660254 ], [ 356483.989500001072884, 256846.48200000077486 ], [ 356510.961499996483326, 256861.322399999946356 ], [ 356518.881700001657009, 256849.493599999696016 ], [ 356519.898500002920628, 256847.975099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202054200", "MAP": "D9-873-T69", "PARCEL_NAM": "27A", "ACRE": "0.07", "LONGITUDE": -64.95235447, "LATITUDE": 18.34117997, "OBJECTID_1": 8341, "PARCEL_NO_": "105202054200", "Tax_Legal_": "CONTANT 27A 7BA S S QTR", "Name": "HARRIGAN, C. F. & E. F. & A. K. & OTHERS", "Address": "3180 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 184800, "Improved_V": 700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.439097274999995, "SHAPE_Area": 318.67260685999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356550.401000000536442, 256838.225299999117851 ], [ 356530.060900002717972, 256832.797400001436472 ], [ 356525.660999998450279, 256839.368599999696016 ], [ 356521.961599998176098, 256844.8935999982059 ], [ 356523.515299998223782, 256845.489100001752377 ], [ 356526.85249999910593, 256846.768199998885393 ], [ 356541.662799999117851, 256852.444600000977516 ], [ 356547.403800003230572, 256843.044399999082088 ], [ 356549.851499997079372, 256839.686999998986721 ], [ 356550.401000000536442, 256838.225299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201045700", "MAP": "D9-5-T48", "PARCEL_NAM": "11-K", "ACRE": null, "LONGITUDE": -64.96208498, "LATITUDE": 18.34104288, "OBJECTID_1": 7638, "PARCEL_NO_": "105201045700", "Tax_Legal_": "LINDBERG BAY 11K SOUTHSIDE QTR", "Name": "WILLIAMS, IVAN & JOAN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22200, "Improved_V": 154600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.68630231399999, "SHAPE_Area": 1069.9236827699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355525.281900003552437, 256801.537200000137091 ], [ 355493.022200003266335, 256802.117499999701977 ], [ 355493.504799999296665, 256840.118299998342991 ], [ 355494.271600000560284, 256844.7685999982059 ], [ 355526.709299996495247, 256823.291499998420477 ], [ 355525.281900003552437, 256801.537200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202025300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95714062, "LATITUDE": 18.34113009, "OBJECTID_1": 8141, "PARCEL_NO_": "105202025300", "Tax_Legal_": "CONTANT 84-8 & 84-10A 7A SOUTHSIDE QUARTER", "Name": "ESANNASON, BERNARD & LYNCH, MA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49200, "Improved_V": 93800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.33795801799999, "SHAPE_Area": 852.82424268399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356034.747299998998642, 256820.272399999201298 ], [ 356030.692299999296665, 256822.983399998396635 ], [ 356004.847199998795986, 256827.838100001215935 ], [ 356003.167999997735023, 256835.634799998253584 ], [ 356002.311300002038479, 256841.538400001823902 ], [ 356027.337600000202656, 256838.154699999839067 ], [ 356050.627199999988079, 256849.32209999859333 ], [ 356049.9054000005126, 256839.394799999892712 ], [ 356050.074400000274181, 256819.553399998694658 ], [ 356034.747299998998642, 256820.272399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105301024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94120558, "LATITUDE": 18.34114197, "OBJECTID_1": 9030, "PARCEL_NO_": "105301024300", "Tax_Legal_": "ANNAS FANCY 24 CROWN PRINCE", "Name": "PHILLIPS, SYLVIA", "Address": "24 ANNAS FANCY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12600, "Improved_V": 47600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.272182166199997, "SHAPE_Area": 259.22680673100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357713.498800002038479, 256832.956700000911951 ], [ 357706.818099997937679, 256859.921999998390675 ], [ 357714.857900001108646, 256862.73200000077486 ], [ 357723.147600002586842, 256836.201999999582767 ], [ 357713.498800002038479, 256832.956700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053400", "MAP": null, "PARCEL_NAM": "34", "ACRE": null, "LONGITUDE": -64.95306549, "LATITUDE": 18.34111353, "OBJECTID_1": 8333, "PARCEL_NO_": "105202053400", "Tax_Legal_": "CONTANT 34 7BA SOUTHSIDE QTR", "Name": "ROSALIA ULRICA POTTER REVOCABLE FAMILY TRUST", "Address": "3095 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 147700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.37523735400001, "SHAPE_Area": 1027.54145662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356487.795999996364117, 256835.590500000864267 ], [ 356454.121500000357628, 256812.938999999314547 ], [ 356448.381999999284744, 256824.079900000244379 ], [ 356441.065800003707409, 256830.986200001090765 ], [ 356432.952299997210503, 256836.830400001257658 ], [ 356469.10869999974966, 256852.113899998366833 ], [ 356487.795999996364117, 256835.590500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94462034, "LATITUDE": 18.3412115, "OBJECTID_1": 9104, "PARCEL_NO_": "105301041300", "Tax_Legal_": "16 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "ALLEN, MARY", "Address": "3647 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7800, "Improved_V": 16400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.360306418900002, "SHAPE_Area": 133.78318257800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357349.726000003516674, 256844.755899999290705 ], [ 357344.807199999690056, 256854.214899998158216 ], [ 357358.47860000282526, 256858.548599999397993 ], [ 357363.365000002086163, 256852.88910000026226 ], [ 357349.726000003516674, 256844.755899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202072500", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5N", "ACRE": "0.14", "LONGITUDE": -64.95174216, "LATITUDE": 18.34107974, "OBJECTID_1": 8433, "PARCEL_NO_": "105202072500", "Tax_Legal_": "CONTANT 23-5N 7BA SOUTHSIDE QTR.", "Name": "WALL, HELENA", "Address": "BOX 3266", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.626441736299995, "SHAPE_Area": 509.864852783 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356589.799099996685982, 256819.803399998694658 ], [ 356588.104400001466274, 256819.376400001347065 ], [ 356584.481100000441074, 256835.670200001448393 ], [ 356585.31139999628067, 256835.946400001645088 ], [ 356597.833200000226498, 256839.315699998289347 ], [ 356614.4054000005126, 256843.774700000882149 ], [ 356614.596900001168251, 256843.745299998670816 ], [ 356616.024800002574921, 256833.68470000103116 ], [ 356618.312100000679493, 256827.949999999254942 ], [ 356602.84009999781847, 256823.529399998486042 ], [ 356589.799099996685982, 256819.803399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105301024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94128743, "LATITUDE": 18.34111448, "OBJECTID_1": 9032, "PARCEL_NO_": "105301024500", "Tax_Legal_": "ANNAS FANCY 24A KRONPRINDSENS QTR", "Name": "DESSUIT, CYRIL", "Address": "3649 ALTONA&WELGUNST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18000, "Improved_V": 173000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.461635344399994, "SHAPE_Area": 245.268727203 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357703.848200000822544, 256829.922400001436472 ], [ 357699.58110000193119, 256857.540699999779463 ], [ 357706.818099997937679, 256859.921999998390675 ], [ 357713.498800002038479, 256832.956700000911951 ], [ 357703.848200000822544, 256829.922400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202072400", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3M", "ACRE": "0.14", "LONGITUDE": -64.95136704, "LATITUDE": 18.34111931, "OBJECTID_1": 8432, "PARCEL_NO_": "105202072400", "Tax_Legal_": "CONTANT 23-3M 7BA SOUTHSIDE QTR.", "Name": "HODGE, SAMUEL R. & JANICE C", "Address": "PO Box 303583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 84200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.9727055, "SHAPE_Area": 700.84425249100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356660.149400003254414, 256830.699999999254942 ], [ 356626.530000001192093, 256822.855500001460314 ], [ 356624.953599996864796, 256826.791700001806021 ], [ 356621.647399999201298, 256836.263799998909235 ], [ 356620.798000000417233, 256841.323100000619888 ], [ 356655.739399999380112, 256850.203000001609325 ], [ 356658.913400001823902, 256836.166200000792742 ], [ 356660.149400003254414, 256830.699999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301054400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94518313, "LATITUDE": 18.34109239, "OBJECTID_1": 9180, "PARCEL_NO_": "105301054400", "Tax_Legal_": "121 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "FRANCIS, BERNICE", "Address": "PO Box 305525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15800, "Improved_V": 50100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.299287932499993, "SHAPE_Area": 497.344387466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357303.944200001657009, 256823.482900001108646 ], [ 357288.642300002276897, 256821.246800001710653 ], [ 357285.13289999961853, 256854.570799998939037 ], [ 357299.63570000231266, 256855.9560999982059 ], [ 357303.944200001657009, 256823.482900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301054500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94500346, "LATITUDE": 18.34109156, "OBJECTID_1": 9181, "PARCEL_NO_": "105301054500", "Tax_Legal_": "120 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "KEAN, JR , HENRY & BERYL", "Address": "PO Box 301976", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15800, "Improved_V": 35400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.171200352, "SHAPE_Area": 662.02286192400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357313.609200000762939, 256824.828600000590086 ], [ 357303.944200001657009, 256823.482900001108646 ], [ 357299.63570000231266, 256855.9560999982059 ], [ 357308.506999999284744, 256855.817600000649691 ], [ 357311.748400002717972, 256853.944299999624491 ], [ 357328.8175999969244, 256838.040899999439716 ], [ 357331.261699996888638, 256835.105599999427795 ], [ 357332.912100002169609, 256830.686099998652935 ], [ 357313.609200000762939, 256824.828600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301054300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9453221, "LATITUDE": 18.34108164, "OBJECTID_1": 9179, "PARCEL_NO_": "105301054300", "Tax_Legal_": "122 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "KENNETH, VELISA B, & VELISA VANETA HANSEN", "Address": "3122 Mahogany Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17100, "Improved_V": 80500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.365037938399993, "SHAPE_Area": 492.58068274599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357288.642300002276897, 256821.246800001710653 ], [ 357283.811599999666214, 256820.362900000065565 ], [ 357275.764600001275539, 256818.397199999541044 ], [ 357270.684000000357628, 256846.853199999779463 ], [ 357269.82379999756813, 256853.179000001400709 ], [ 357285.13289999961853, 256854.570799998939037 ], [ 357288.642300002276897, 256821.246800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105301024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94139739000001, "LATITUDE": 18.34108696, "OBJECTID_1": 9029, "PARCEL_NO_": "105301024200", "Tax_Legal_": "ANNAS FANCY 25 CROWN PRINCE QUARTER", "Name": "CANTON, JR., ALVIN O. & OTHERS", "Address": "PO Box 303805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033805, "Country": "United States", "Land_Value": 21600, "Improved_V": 132700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.223869813199997, "SHAPE_Area": 419.81506349599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357689.374200001358986, 256825.15989999845624 ], [ 357686.818599998950958, 256841.182000000029802 ], [ 357685.108800001442432, 256852.567099999636412 ], [ 357699.58110000193119, 256857.540699999779463 ], [ 357703.848200000822544, 256829.922400001436472 ], [ 357689.374200001358986, 256825.15989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95683336, "LATITUDE": 18.34116758, "OBJECTID_1": 8143, "PARCEL_NO_": "105202025500", "Tax_Legal_": "84-9 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "HODGE, VERNON ADOLTON & ERNEST", "Address": "PO Box 10598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53300, "Improved_V": 54300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.28520924199999, "SHAPE_Area": 767.71926157099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356076.607199996709824, 256828.636500000953674 ], [ 356057.334799997508526, 256819.190699998289347 ], [ 356050.074400000274181, 256819.553399998694658 ], [ 356049.9054000005126, 256839.394799999892712 ], [ 356050.627199999988079, 256849.32209999859333 ], [ 356076.389600001275539, 256854.177099999040365 ], [ 356076.475900001823902, 256844.045299999415874 ], [ 356076.607199996709824, 256828.636500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202059400", "MAP": "D9-708-T68", "PARCEL_NAM": "31C", "ACRE": "0.09", "LONGITUDE": -64.95228108000001, "LATITUDE": 18.34096987, "OBJECTID_1": 8391, "PARCEL_NO_": "105202059400", "Tax_Legal_": "CONTANT 31C 7B SOUTHSIDE QTR", "Name": "LEWIS, WILMOTH & BERNADETTE", "Address": "PO Box 302382", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 171500, "Improved_V": 700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.341908205, "SHAPE_Area": 429.01657835100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356538.077799998223782, 256806.511199999600649 ], [ 356530.060900002717972, 256832.797400001436472 ], [ 356537.674199998378754, 256834.828999999910593 ], [ 356541.146099999547005, 256822.305500000715256 ], [ 356554.736900001764297, 256826.691899999976158 ], [ 356555.626900002360344, 256824.324400000274181 ], [ 356558.933100000023842, 256814.852299999445677 ], [ 356560.529200002551079, 256812.39130000025034 ], [ 356540.266500003635883, 256807.084399998188019 ], [ 356538.077799998223782, 256806.511199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95756351, "LATITUDE": 18.34076247, "OBJECTID_1": 8126, "PARCEL_NO_": "105202023600", "Tax_Legal_": "CONTANT 98 7A SOUTHSIDE QTR", "Name": "ANDRE, NOEL E.", "Address": "PO Box 10513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 155800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.74508658299999, "SHAPE_Area": 3026.2071823599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356007.182700000703335, 256742.997600000351667 ], [ 355986.26349999755621, 256737.5489999987185 ], [ 355955.530799999833107, 256842.844300001859665 ], [ 355995.97410000115633, 256828.187699999660254 ], [ 356000.961300000548363, 256810.707699999213219 ], [ 356003.502499997615814, 256796.374200001358986 ], [ 356007.884700000286102, 256755.246800001710653 ], [ 356007.956600002944469, 256746.803599998354912 ], [ 356007.182700000703335, 256742.997600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94474383, "LATITUDE": 18.34116277, "OBJECTID_1": 9103, "PARCEL_NO_": "105301041200", "Tax_Legal_": "ALTONA 15 KRONPRINDSENS QTR", "Name": "THOMAS, SYRIA", "Address": "PO Box 7751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8400, "Improved_V": 32800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.785327563499997, "SHAPE_Area": 162.20773334500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357339.294299997389317, 256838.759899999946356 ], [ 357330.33500000089407, 256849.241300001740456 ], [ 357344.807199999690056, 256854.214899998158216 ], [ 357349.726000003516674, 256844.755899999290705 ], [ 357339.294299997389317, 256838.759899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95378032000001, "LATITUDE": 18.34112091, "OBJECTID_1": 8285, "PARCEL_NO_": "105202042500", "Tax_Legal_": "CONTANT 16 SOUTHSIDE QTR. 7BA", "Name": "SANTANA, WILFREDO", "Address": "PO Box 308503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 80200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.872928524000002, "SHAPE_Area": 465.43032320899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356371.606100000441074, 256844.138700000941753 ], [ 356394.980099998414516, 256845.385499998927116 ], [ 356398.370800003409386, 256825.99269999936223 ], [ 356379.057099997997284, 256821.401599999517202 ], [ 356371.606100000441074, 256844.138700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95347271, "LATITUDE": 18.34107667, "OBJECTID_1": 8337, "PARCEL_NO_": "105202053800", "Tax_Legal_": "CONTANT 21 7BA SOUTHSIDE QTR", "Name": "ENRIQUE, MODESTE & CARMEN", "Address": "PO Box 306406", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31600, "Improved_V": 37000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.239580313999994, "SHAPE_Area": 512.835019031 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356405.492799997329712, 256841.883000001311302 ], [ 356415.949600003659725, 256844.923900000751019 ], [ 356437.097199998795986, 256823.565400000661612 ], [ 356410.553599998354912, 256815.748799998313189 ], [ 356407.188100002706051, 256832.186500001698732 ], [ 356405.492799997329712, 256841.883000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105301024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94155374, "LATITUDE": 18.34112088, "OBJECTID_1": 9033, "PARCEL_NO_": "105301024600", "Tax_Legal_": "ANNAS FANCY 28A CROWN PRINCE QTR", "Name": "BOYNES, VIOLA", "Address": "28A ANNAS FANCY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9100, "Improved_V": 43900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.028721659299997, "SHAPE_Area": 174.46351058900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357686.818599998950958, 256841.182000000029802 ], [ 357669.907600000500679, 256838.510499998927116 ], [ 357668.222999997437, 256846.940499998629093 ], [ 357685.108800001442432, 256852.567099999636412 ], [ 357686.818599998950958, 256841.182000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051400", "MAP": "D9-220-T59", "PARCEL_NAM": "116", "ACRE": null, "LONGITUDE": -64.96056881, "LATITUDE": 18.34084134, "OBJECTID_1": 7690, "PARCEL_NO_": "105201051400", "Tax_Legal_": "CONTANT 116 SOUTHSIDE QTR", "Name": "MARIA, CARLA M.", "Address": "454 Olmstead", "City": "Bronx", "State": "New York", "Zip": 10473, "Country": "United States", "Land_Value": 190400, "Improved_V": 50700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.165400737, "SHAPE_Area": 3042.7124054400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355649.782999999821186, 256763.925999999046326 ], [ 355647.090800002217293, 256795.990200001746416 ], [ 355643.572400003671646, 256830.369699999690056 ], [ 355643.52929999679327, 256835.435600001364946 ], [ 355685.497100003063679, 256831.135000001639128 ], [ 355686.355499997735023, 256825.020300000905991 ], [ 355694.965300001204014, 256760.918299999088049 ], [ 355673.979599997401237, 256763.279699999839067 ], [ 355649.782999999821186, 256763.925999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301054200", "MAP": null, "PARCEL_NAM": "123", "ACRE": null, "LONGITUDE": -64.94548882, "LATITUDE": 18.34104964, "OBJECTID_1": 9178, "PARCEL_NO_": "105301054200", "Tax_Legal_": "123 ALTONA & WELGUNST KRONPRINDSEN QUARTER", "Name": "WILLIAMS, RUPERT & DORADEAN", "Address": "PO Box 8915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23500, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.42892967500001, "SHAPE_Area": 754.31253699599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357263.693300001323223, 256815.554099999368191 ], [ 357261.409199997782707, 256815.031399998813868 ], [ 357244.259099997580051, 256832.793999999761581 ], [ 357245.85700000077486, 256834.951200000941753 ], [ 357247.051299996674061, 256836.379099998623133 ], [ 357261.7533999979496, 256853.957299999892712 ], [ 357263.362499997019768, 256854.392700001597404 ], [ 357269.82379999756813, 256853.179000001400709 ], [ 357270.684000000357628, 256846.853199999779463 ], [ 357275.764600001275539, 256818.397199999541044 ], [ 357271.101400002837181, 256817.298900000751019 ], [ 357269.482699997723103, 256816.917700000107288 ], [ 357263.693300001323223, 256815.554099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9446192, "LATITUDE": 18.34105721, "OBJECTID_1": 9105, "PARCEL_NO_": "105301041400", "Tax_Legal_": "14 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "MAYNARD, JENNIFER, JAMAAL DAVID & JAMAALA PETERSEN", "Address": "PO Box 8272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15600, "Improved_V": 93000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.577685948500005, "SHAPE_Area": 303.73408876100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357341.73480000346899, 256836.246800001710653 ], [ 357359.385600000619888, 256846.7347999997437 ], [ 357366.6908999979496, 256841.095100000500679 ], [ 357351.538199998438358, 256821.339400000870228 ], [ 357349.097699999809265, 256823.85249999910593 ], [ 357341.73480000346899, 256836.246800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201046100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96139956, "LATITUDE": 18.34100936, "OBJECTID_1": 7642, "PARCEL_NO_": "105201046100", "Tax_Legal_": "LINDBERG BAY 10E SOUTHSIDE QTR", "Name": "HODGE, GERARD", "Address": "PO Box 9934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 101300, "Improved_V": 58900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.194839113, "SHAPE_Area": 1106.51699401 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355597.06700000166893, 256799.380499999970198 ], [ 355562.388400003314018, 256799.940999999642372 ], [ 355563.729500003159046, 256831.827100001275539 ], [ 355598.408100001513958, 256831.266600001603365 ], [ 355597.06700000166893, 256799.380499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201046200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96098002, "LATITUDE": 18.34098444, "OBJECTID_1": 7643, "PARCEL_NO_": "105201046200", "Tax_Legal_": "LINDBERG BAY 1OF SOUTHSIDE QTR", "Name": "POWELL, VIUSA ROSETTA", "Address": "PO Box 773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33200, "Improved_V": 72400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.27800542700001, "SHAPE_Area": 1414.0856038 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355647.090800002217293, 256795.990200001746416 ], [ 355603.540899999439716, 256796.6891999989748 ], [ 355604.860399998724461, 256831.108300000429153 ], [ 355643.572400003671646, 256830.369699999690056 ], [ 355647.090800002217293, 256795.990200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202072600", "MAP": "D9-2268-T88", "PARCEL_NAM": "23-3N", "ACRE": "0.14", "LONGITUDE": -64.95131769, "LATITUDE": 18.34095349, "OBJECTID_1": 8434, "PARCEL_NO_": "105202072600", "Tax_Legal_": "23-3N CONTANT 7BA SOUTHSIDE QUARTER", "Name": "PARKER, MERRYLL", "Address": "PO BOX 3186", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 5100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.83169063699999, "SHAPE_Area": 613.96935534500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356664.248000003397465, 256812.574000000953674 ], [ 356633.071199998259544, 256805.3429000005126 ], [ 356632.368699997663498, 256808.276099998503923 ], [ 356626.530000001192093, 256822.855500001460314 ], [ 356660.149400003254414, 256830.699999999254942 ], [ 356663.364399999380112, 256816.481499999761581 ], [ 356664.248000003397465, 256812.574000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95285259000001, "LATITUDE": 18.34089029, "OBJECTID_1": 8338, "PARCEL_NO_": "105202053900", "Tax_Legal_": "CONTANT 35,36A & 36B 7BA SOUTHSIDE QTR", "Name": "CARABALLO, EUGENIO & ILIA", "Address": "3098 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.14398806099999, "SHAPE_Area": 1680.38345852 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356489.896999999880791, 256792.16950000077486 ], [ 356471.929099999368191, 256785.749600000679493 ], [ 356469.63740000128746, 256790.056800000369549 ], [ 356467.180699996650219, 256794.4695999994874 ], [ 356457.406000003218651, 256805.999800000339746 ], [ 356454.121500000357628, 256812.938999999314547 ], [ 356487.795999996364117, 256835.590500000864267 ], [ 356504.85980000346899, 256820.320300001651049 ], [ 356511.427199997007847, 256806.653000000864267 ], [ 356511.48480000346899, 256799.882699999958277 ], [ 356489.896999999880791, 256792.16950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202054600", "MAP": "F9-1006-T62", "PARCEL_NAM": "31A", "ACRE": "0.06", "LONGITUDE": -64.95250289000001, "LATITUDE": 18.34102973, "OBJECTID_1": 8345, "PARCEL_NO_": "105202054600", "Tax_Legal_": "CONTANT 31A 7BA SOUTHSIDE", "Name": "CHINNERY, MARILYN", "Address": "31A CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 171500, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.5061799514, "SHAPE_Area": 189.04889086200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356530.638999998569489, 256824.311099998652935 ], [ 356513.355899997055531, 256818.007199998944998 ], [ 356512.935500003397465, 256818.9087999984622 ], [ 356507.692299999296665, 256825.653599999845028 ], [ 356527.95549999922514, 256832.235500000417233 ], [ 356528.008299998939037, 256832.249600000679493 ], [ 356530.060900002717972, 256832.797400001436472 ], [ 356532.441399998962879, 256824.992199998348951 ], [ 356531.167999997735023, 256824.502300001680851 ], [ 356530.638999998569489, 256824.311099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105301023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94179981000001, "LATITUDE": 18.34101109, "OBJECTID_1": 9020, "PARCEL_NO_": "105301023400", "Tax_Legal_": "3O ANNAS FANCY CROWN PRINCE QUARTER", "Name": "LANCLOS, L. E. J. & EELIZEE, J", "Address": "3304 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025711, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.110971061300006, "SHAPE_Area": 374.37128625600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357664.360500000417233, 256827.066100001335144 ], [ 357643.443099997937679, 256821.406399998813868 ], [ 357639.271300002932549, 256837.837600000202656 ], [ 357652.143500000238419, 256841.32039999961853 ], [ 357660.993199996650219, 256843.714899998158216 ], [ 357664.360500000417233, 256827.066100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301041500", "MAP": null, "PARCEL_NAM": "13", "ACRE": "3,850 sq ft", "LONGITUDE": -64.94452489, "LATITUDE": 18.34096082, "OBJECTID_1": 9106, "PARCEL_NO_": "105301041500", "Tax_Legal_": "13 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "NILES, DOUGLAL D. & FELICIA D", "Address": "13 ALTONA & WELGUNST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.863928167400005, "SHAPE_Area": 424.83794435200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357378.071000002324581, 256830.422400001436472 ], [ 357358.922700002789497, 256806.412200000137091 ], [ 357351.538199998438358, 256821.339400000870228 ], [ 357366.6908999979496, 256841.095100000500679 ], [ 357378.071000002324581, 256830.422400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202072700", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5P", "ACRE": "0.14", "LONGITUDE": -64.95169677, "LATITUDE": 18.34093036, "OBJECTID_1": 8435, "PARCEL_NO_": "105202072700", "Tax_Legal_": "CONTANT 23-5P 7BA S S QTR.", "Name": "LAWS, HENRY & JANE ADELPHIA", "Address": "PO Box 305276", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 134600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.29053775, "SHAPE_Area": 578.92128590699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356594.332000002264977, 256803.138300001621246 ], [ 356591.860799998044968, 256802.484099999070168 ], [ 356588.842299997806549, 256816.058299999684095 ], [ 356588.104400001466274, 256819.376400001347065 ], [ 356589.799099996685982, 256819.803399998694658 ], [ 356602.84009999781847, 256823.529399998486042 ], [ 356618.312100000679493, 256827.949999999254942 ], [ 356625.088500000536442, 256810.960700001567602 ], [ 356607.385600000619888, 256806.594000000506639 ], [ 356594.332000002264977, 256803.138300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95681808000001, "LATITUDE": 18.34096521, "OBJECTID_1": 8150, "PARCEL_NO_": "105202026200", "Tax_Legal_": "CONTANT 84-11 7A SOUTHSIDE QTR.", "Name": "TRAVIESO, ELADIO", "Address": "#14 EST. THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 191100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.258011834100003, "SHAPE_Area": 465.17724906699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356077.614900000393391, 256805.002300001680851 ], [ 356046.947999998927116, 256807.917700000107288 ], [ 356048.501299999654293, 256814.896499998867512 ], [ 356050.074400000274181, 256819.553399998694658 ], [ 356057.334799997508526, 256819.190699998289347 ], [ 356076.607199996709824, 256828.636500000953674 ], [ 356077.614900000393391, 256805.002300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051500", "MAP": "D9-220-T59", "PARCEL_NAM": "117", "ACRE": null, "LONGITUDE": -64.96022789, "LATITUDE": 18.34079239, "OBJECTID_1": 7691, "PARCEL_NO_": "105201051500", "Tax_Legal_": "CONTANT 117 SOUTHSIDE QTR", "Name": "MCCLEVERTY, JR. J & DANIEL, J", "Address": "PO Box 726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 190400, "Improved_V": 96900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.80504907, "SHAPE_Area": 1741.48077476 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355717.031400002539158, 256821.049499999731779 ], [ 355719.979000002145767, 256759.012099999934435 ], [ 355697.386100001633167, 256760.727000001817942 ], [ 355694.965300001204014, 256760.918299999088049 ], [ 355686.355499997735023, 256825.020300000905991 ], [ 355702.499799996614456, 256823.041499998420477 ], [ 355714.608800001442432, 256821.451900001615286 ], [ 355717.031400002539158, 256821.049499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105301024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94153669000001, "LATITUDE": 18.34099777, "OBJECTID_1": 9028, "PARCEL_NO_": "105301024100", "Tax_Legal_": "ANNAS FANCY 28 CROWN PRINCE QTR", "Name": "COVENANT CHRISTIAN CENTER", "Address": "30 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 88500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.218260835899997, "SHAPE_Area": 289.35152850100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357669.907600000500679, 256838.510499998927116 ], [ 357686.818599998950958, 256841.182000000029802 ], [ 357689.374200001358986, 256825.15989999845624 ], [ 357674.095600001513958, 256820.179699998348951 ], [ 357669.907600000500679, 256838.510499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201045800", "MAP": "D9-5-T48", "PARCEL_NAM": "11-L", "ACRE": null, "LONGITUDE": -64.96176188, "LATITUDE": 18.34093144, "OBJECTID_1": 7639, "PARCEL_NO_": "105201045800", "Tax_Legal_": "11L LINDBERG BAY SOUTHSIDE QUARTER", "Name": "BEVERLY ANNE MAGRAS REVOCABLE LIVING TRUST", "Address": "PO Box 304650", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.503352248499993, "SHAPE_Area": 291.39543473800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355562.388400003314018, 256799.940999999642372 ], [ 355531.741300001740456, 256800.534600000828505 ], [ 355532.385799996554852, 256819.53830000013113 ], [ 355562.388400003314018, 256799.940999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051600", "MAP": "D9-220-T59", "PARCEL_NAM": "118", "ACRE": null, "LONGITUDE": -64.9599378, "LATITUDE": 18.34075517, "OBJECTID_1": 7692, "PARCEL_NO_": "105201051600", "Tax_Legal_": "CONTANT 118 SOUTHSIDE QUARTER", "Name": "PAUL, ALKIN A. & RAQUEL C.", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 166600, "Improved_V": 118000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.70672387600001, "SHAPE_Area": 2036.0216977600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355751.749600000679493, 256815.845199998468161 ], [ 355752.253100000321865, 256756.743099998682737 ], [ 355724.820500001311302, 256758.629599999636412 ], [ 355719.979000002145767, 256759.012099999934435 ], [ 355717.031400002539158, 256821.049499999731779 ], [ 355740.439599998295307, 256818.285799998790026 ], [ 355751.749600000679493, 256815.845199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202026100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95717403, "LATITUDE": 18.34088595, "OBJECTID_1": 8149, "PARCEL_NO_": "105202026100", "Tax_Legal_": "CONTANT 84-10 7A S.S. QTR.", "Name": "BROOKS, JOSEPH N", "Address": "PO Box 11994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56600, "Improved_V": 59900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.351211439, "SHAPE_Area": 1055.2008609 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356044.631599999964237, 256795.866399999707937 ], [ 356043.841499999165535, 256793.960099998861551 ], [ 356014.076200000941753, 256785.694899998605251 ], [ 356011.49549999833107, 256804.672200001776218 ], [ 356006.513700000941753, 256821.518899999558926 ], [ 356034.747299998998642, 256820.272399999201298 ], [ 356037.994099996984005, 256817.765799999237061 ], [ 356048.501299999654293, 256814.896499998867512 ], [ 356046.947999998927116, 256807.917700000107288 ], [ 356044.631599999964237, 256795.866399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202058900", "MAP": "F9-1006-T62", "PARCEL_NAM": "31Aa", "ACRE": "0.05", "LONGITUDE": -64.95246689, "LATITUDE": 18.34095646, "OBJECTID_1": 8387, "PARCEL_NO_": "105202058900", "Tax_Legal_": "CONTANT 31AA 7BA SOUTHSIDE QTR", "Name": "CHINNERY JOSEPH & M.", "Address": "3102 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11600, "Improved_V": 8200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.511881301499997, "SHAPE_Area": 177.40521412300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356534.732900001108646, 256815.920800000429153 ], [ 356517.042599998414516, 256810.076400000602007 ], [ 356513.355899997055531, 256818.007199998944998 ], [ 356530.638999998569489, 256824.311099998652935 ], [ 356531.167999997735023, 256824.502300001680851 ], [ 356532.441399998962879, 256824.992199998348951 ], [ 356535.170999996364117, 256816.042199999094009 ], [ 356534.732900001108646, 256815.920800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202054300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95337246, "LATITUDE": 18.34090809, "OBJECTID_1": 8342, "PARCEL_NO_": "105202054300", "Tax_Legal_": "3G CONTANT 7BA SOUTHSIDE QTR", "Name": "MOLINA, IGNACIO & GERTURDIS", "Address": "P.O. BOX 2965", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72700, "Improved_V": 96900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.35235182300001, "SHAPE_Area": 582.96051373399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356410.553599998354912, 256815.748799998313189 ], [ 356437.097199998795986, 256823.565400000661612 ], [ 356450.923199996352196, 256809.746399998664856 ], [ 356417.1587999984622, 256797.648800000548363 ], [ 356410.553599998354912, 256815.748799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301054600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94487923, "LATITUDE": 18.3409359, "OBJECTID_1": 9182, "PARCEL_NO_": "105301054600", "Tax_Legal_": "119 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "KRIGGER, RONALD & ANGELA", "Address": "PO BOX 303851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17100, "Improved_V": 27400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.3636214032, "SHAPE_Area": 314.28703589700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357341.878700003027916, 256819.360500000417233 ], [ 357316.135999999940395, 256812.183699999004602 ], [ 357313.609200000762939, 256824.828600000590086 ], [ 357332.912100002169609, 256830.686099998652935 ], [ 357338.604900002479553, 256825.03319999948144 ], [ 357341.878700003027916, 256819.360500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94443564, "LATITUDE": 18.34086422, "OBJECTID_1": 9107, "PARCEL_NO_": "105301041600", "Tax_Legal_": "ALTONA & WELGUNST 12 KRONPRINDSENS QTR", "Name": "JOHNSON, SR. , AUBREY & OTHERS", "Address": "6868 W Livingston St", "City": "Orlando", "State": "Florida", "Zip": 328351228, "Country": "United States", "Land_Value": 21000, "Improved_V": 51200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.047005815099993, "SHAPE_Area": 420.92372261600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357375.04900000244379, 256806.544100001454353 ], [ 357364.647799998521805, 256796.959800001233816 ], [ 357358.922700002789497, 256806.412200000137091 ], [ 357378.071000002324581, 256830.422400001436472 ], [ 357389.451099999248981, 256819.749800000339746 ], [ 357375.04900000244379, 256806.544100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95959913, "LATITUDE": 18.34071977, "OBJECTID_1": 7694, "PARCEL_NO_": "105201051800", "Tax_Legal_": "CONTANT 119 7A SOUTHSIDE QUARTER", "Name": "OSORIO, URSULA", "Address": "30326 Colthurst St", "City": "Wesley Chapel", "State": "Florida", "Zip": 33545, "Country": "United States", "Land_Value": 169100, "Improved_V": 20600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.94530639499999, "SHAPE_Area": 2187.2497869600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355792.911100000143051, 256811.537999998778105 ], [ 355786.947899997234344, 256754.282900001853704 ], [ 355776.458599999547005, 256755.041400000452995 ], [ 355752.253100000321865, 256756.743099998682737 ], [ 355751.749600000679493, 256815.845199998468161 ], [ 355763.867600001394749, 256813.200199998915195 ], [ 355792.911100000143051, 256811.537999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95384029, "LATITUDE": 18.3407665, "OBJECTID_1": 8287, "PARCEL_NO_": "105202042700", "Tax_Legal_": "CONTANT 15 7BA SOUTHSIDE QTR", "Name": "SAM E EL-HAJ and RANA R SHEHADEH", "Address": "7602 Estate Brookman", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 173200, "Improved_V": 32200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.58105227600001, "SHAPE_Area": 2064.0174604200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356412.42339999973774, 256785.5777000002563 ], [ 356362.57769999653101, 256768.071199998259544 ], [ 356360.927299998700619, 256772.490600001066923 ], [ 356353.963500000536442, 256793.493700001388788 ], [ 356349.340400002896786, 256807.437300000339746 ], [ 356347.702600002288818, 256810.379200000315905 ], [ 356400.049999997019768, 256818.195900000631809 ], [ 356404.193000003695488, 256805.142000000923872 ], [ 356412.42339999973774, 256785.5777000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301055500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9451245, "LATITUDE": 18.34089718, "OBJECTID_1": 9191, "PARCEL_NO_": "105301055500", "Tax_Legal_": "ALTONA & WELGUNST 5B KRONPRINDSENS QTR.", "Name": "HANSEN, KENNETH & VELISA", "Address": "122 MAHOGANY ESTATE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.772819095800003, "SHAPE_Area": 346.11553374 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357316.135999999940395, 256812.183699999004602 ], [ 357289.542099997401237, 256810.277300000190735 ], [ 357284.659299999475479, 256815.514600001275539 ], [ 357283.811599999666214, 256820.362900000065565 ], [ 357288.642300002276897, 256821.246800001710653 ], [ 357303.944200001657009, 256823.482900001108646 ], [ 357313.609200000762939, 256824.828600000590086 ], [ 357316.135999999940395, 256812.183699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95921497, "LATITUDE": 18.34068459, "OBJECTID_1": 7695, "PARCEL_NO_": "105201051900", "Tax_Legal_": "CONTANT 12O SOUTHSIDE QUARTER", "Name": "HUGHES, DIDIER & BETTY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 179800, "Improved_V": 6700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.807966615, "SHAPE_Area": 2513.4495864300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355836.475299999117851, 256809.150400001555681 ], [ 355829.714800000190735, 256750.833200000226498 ], [ 355815.190399996936321, 256751.980900000780821 ], [ 355786.947899997234344, 256754.282900001853704 ], [ 355792.911100000143051, 256811.537999998778105 ], [ 355836.475299999117851, 256809.150400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105301023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94177362000001, "LATITUDE": 18.34088234, "OBJECTID_1": 9021, "PARCEL_NO_": "105301023500", "Tax_Legal_": "29ANNAS FANCY CROWN PRINCE QUARTER", "Name": "LANCLOS, HAROLD", "Address": "ANNAS FANCY 30", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.297244206800002, "SHAPE_Area": 256.503386498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357643.443099997937679, 256821.406399998813868 ], [ 357664.360500000417233, 256827.066100001335144 ], [ 357666.864000000059605, 256817.165199998766184 ], [ 357646.779899999499321, 256808.345899999141693 ], [ 357643.443099997937679, 256821.406399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303091000", "MAP": "D9-5603-T93", "PARCEL_NAM": "212-C-2", "ACRE": "1.85", "LONGITUDE": -64.94667551000001, "LATITUDE": 18.3403599, "OBJECTID_1": 10962, "PARCEL_NO_": "105303091000", "Tax_Legal_": "ALTONA & WELGUNST 212B & 212C-2 CROWN PRINCE QTR.", "Name": "HERITAGE HILLS, INC.", "Address": "25A Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 332800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 370.80318536200002, "SHAPE_Area": 7064.4088822599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357184.87389999628067, 256697.271600000560284 ], [ 357144.648999996483326, 256696.914099998772144 ], [ 357140.368199996650219, 256715.119699999690056 ], [ 357110.588600002229214, 256708.543200001120567 ], [ 357106.465300001204014, 256719.275199998170137 ], [ 357101.357699997723103, 256750.897399999201298 ], [ 357101.221000000834465, 256766.939399998635054 ], [ 357104.093800000846386, 256808.33729999884963 ], [ 357139.454700000584126, 256822.347800001502037 ], [ 357152.362899996340275, 256821.609000001102686 ], [ 357154.815999999642372, 256817.618299998342991 ], [ 357154.927500002086163, 256804.531500000506639 ], [ 357156.656999997794628, 256790.824499998241663 ], [ 357164.163699999451637, 256761.543999999761581 ], [ 357174.094800002872944, 256731.649999998509884 ], [ 357184.87389999628067, 256697.271600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202072800", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3P", "ACRE": "0.14", "LONGITUDE": -64.95127456, "LATITUDE": 18.34077603, "OBJECTID_1": 8436, "PARCEL_NO_": "105202072800", "Tax_Legal_": "CONTANT 23-3P 7BA S S QTR.", "Name": "SONNY, GEORGE & BERNADETTE", "Address": "PO Box 6411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 50300, "Improved_V": 74700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.181883842, "SHAPE_Area": 679.93910331899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356668.077299997210503, 256791.744699999690056 ], [ 356638.221400000154972, 256783.837200000882149 ], [ 356633.071199998259544, 256805.3429000005126 ], [ 356664.248000003397465, 256812.574000000953674 ], [ 356668.077299997210503, 256791.744699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202059000", "MAP": "F9-761-T61", "PARCEL_NAM": "31B", "ACRE": "0.03", "LONGITUDE": -64.95244384, "LATITUDE": 18.34087518, "OBJECTID_1": 8388, "PARCEL_NO_": "105202059000", "Tax_Legal_": "CONTANT 31 B 7B A SOUTHSIDE QTR", "Name": "WILLIAMS, DEAN", "Address": "3103 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98000, "Improved_V": 1000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.484953944399997, "SHAPE_Area": 190.186778895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356538.077799998223782, 256806.511199999600649 ], [ 356517.356100000441074, 256801.084100000560284 ], [ 356517.107299998402596, 256802.477600000798702 ], [ 356517.042599998414516, 256810.076400000602007 ], [ 356534.732900001108646, 256815.920800000429153 ], [ 356535.170999996364117, 256816.042199999094009 ], [ 356538.077799998223782, 256806.511199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201052000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95883003, "LATITUDE": 18.34060703, "OBJECTID_1": 7696, "PARCEL_NO_": "105201052000", "Tax_Legal_": "CONTANT 121 SOUTHSIDE QUARTER", "Name": "GARRIN, JOYCE", "Address": "PO BOX 305059", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 203800, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.53671494400001, "SHAPE_Area": 2679.7449473400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355872.185000002384186, 256782.211599998176098 ], [ 355862.186700001358986, 256725.345600001513958 ], [ 355829.714800000190735, 256750.833200000226498 ], [ 355836.475299999117851, 256809.150400001555681 ], [ 355876.004399999976158, 256807.151900000870228 ], [ 355872.185000002384186, 256782.211599998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202056600", "MAP": "D9-605-T66", "PARCEL_NAM": "6-23", "ACRE": ".06", "LONGITUDE": -64.95221649, "LATITUDE": 18.34082956, "OBJECTID_1": 8365, "PARCEL_NO_": "105202056600", "Tax_Legal_": "6-23 CONTANT 7BA SOUTHSIDE QTR", "Name": "ELVIN, VIOLA", "Address": "6-23 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22900, "Improved_V": 185200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.456008431800001, "SHAPE_Area": 291.97777749699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356564.253700003027916, 256800.983800001442432 ], [ 356541.906499996781349, 256794.250999998301268 ], [ 356541.35419999808073, 256795.921100001782179 ], [ 356538.077799998223782, 256806.511199999600649 ], [ 356540.266500003635883, 256807.084399998188019 ], [ 356560.529200002551079, 256812.39130000025034 ], [ 356561.384400002658367, 256811.072599999606609 ], [ 356563.875299997627735, 256802.649300001561642 ], [ 356564.145499996840954, 256801.46000000089407 ], [ 356564.253700003027916, 256800.983800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301055600", "MAP": "S9-9381-T019", "PARCEL_NAM": "5C", "ACRE": "0.25", "LONGITUDE": -64.94560811, "LATITUDE": 18.34081616, "OBJECTID_1": 9192, "PARCEL_NO_": "105301055600", "Tax_Legal_": "5C ALTONA & WELGUNST KRONPRINDSENS QTR.", "Name": "QOED, NIDAL M", "Address": "PO BOX 11015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.522776953, "SHAPE_Area": 665.42417252500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357282.292499996721745, 256809.373599998652935 ], [ 357211.731600001454353, 256795.637800000607967 ], [ 357212.209799997508526, 256800.989500001072884 ], [ 357212.99099999666214, 256803.951200000941753 ], [ 357263.693300001323223, 256815.554099999368191 ], [ 357275.764600001275539, 256818.397199999541044 ], [ 357283.811599999666214, 256820.362900000065565 ], [ 357284.659299999475479, 256815.514600001275539 ], [ 357282.292499996721745, 256809.373599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301054700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94480708, "LATITUDE": 18.34077118, "OBJECTID_1": 9183, "PARCEL_NO_": "105301054700", "Tax_Legal_": "118 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "ROSE H. KITNURSE (LIFE ESTATE)", "Address": "30788 Water Lily Dr", "City": "Brooksville", "State": "Florida", "Zip": 346027735, "Country": "United States", "Land_Value": 16500, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.60232999500001, "SHAPE_Area": 763.29768468099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357354.981100000441074, 256795.825199998915195 ], [ 357323.601400002837181, 256787.75789999961853 ], [ 357316.135999999940395, 256812.183699999004602 ], [ 357341.878700003027916, 256819.360500000417233 ], [ 357354.981100000441074, 256795.825199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201052100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95853894, "LATITUDE": 18.34078503, "OBJECTID_1": 7697, "PARCEL_NO_": "105201052100", "Tax_Legal_": "CONTANT 122A 7A SOUTHSIDE", "Name": "POWELL, ALICIA CALISTRO", "Address": "PO Box 7552", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.644057918900003, "SHAPE_Area": 452.58087538199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355893.777400001883507, 256803.28660000115633 ], [ 355889.949100002646446, 256779.401700001209974 ], [ 355872.185000002384186, 256782.211599998176098 ], [ 355876.004399999976158, 256807.151900000870228 ], [ 355886.500900000333786, 256805.5489999987185 ], [ 355893.777400001883507, 256803.28660000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202026500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95684939, "LATITUDE": 18.34084196, "OBJECTID_1": 8153, "PARCEL_NO_": "105202026500", "Tax_Legal_": "CONTANT 84-13 7A SOUTHSIDE QTR.", "Name": "FERGUSON, BEN & HOLLY", "Address": "PO Box 10394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.603682654699995, "SHAPE_Area": 355.81830299299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356079.310199998319149, 256795.305900000035763 ], [ 356044.631599999964237, 256795.866399999707937 ], [ 356046.947999998927116, 256807.917700000107288 ], [ 356077.614900000393391, 256805.002300001680851 ], [ 356079.310199998319149, 256795.305900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201046300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96208025, "LATITUDE": 18.34076758, "OBJECTID_1": 7644, "PARCEL_NO_": "105201046300", "Tax_Legal_": "LINDBERG BAY 11I SOUTHSIDE QTR", "Name": "MERCER, AILEEN & OTHERS", "Address": "PO Box 905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15700, "Improved_V": 148500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.243016252, "SHAPE_Area": 868.3142492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355523.901199996471405, 256774.294799998402596 ], [ 355492.447800002992153, 256774.881700001657009 ], [ 355493.022200003266335, 256802.117499999701977 ], [ 355525.281900003552437, 256801.537200000137091 ], [ 355523.901199996471405, 256774.294799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202072900", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5Q", "ACRE": "0.17", "LONGITUDE": -64.95163198, "LATITUDE": 18.34070071, "OBJECTID_1": 8437, "PARCEL_NO_": "105202072900", "Tax_Legal_": "23-5Q CONTANT 7BA SOUTHSIDE QTR.", "Name": "HOLDER, VERNA & BRENDA DENISE", "Address": "7299 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021921, "Country": "United States", "Land_Value": 75300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.406827182, "SHAPE_Area": 1203.7404886500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356605.56360000371933, 256768.390599999576807 ], [ 356602.937399998307228, 256767.450199998915195 ], [ 356600.585500001907349, 256773.594799999147654 ], [ 356600.301399998366833, 256774.337099999189377 ], [ 356595.205600000917912, 256790.426199998706579 ], [ 356591.860799998044968, 256802.484099999070168 ], [ 356594.332000002264977, 256803.138300001621246 ], [ 356607.385600000619888, 256806.594000000506639 ], [ 356625.088500000536442, 256810.960700001567602 ], [ 356629.240500003099442, 256796.851500000804663 ], [ 356631.774499997496605, 256783.362199999392033 ], [ 356633.415600001811981, 256779.309999998658895 ], [ 356634.079099997878075, 256777.671599999070168 ], [ 356605.56360000371933, 256768.390599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202042900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95423322000001, "LATITUDE": 18.34064358, "OBJECTID_1": 8289, "PARCEL_NO_": "105202042900", "Tax_Legal_": "CONTANT 15DA 7BA SOUTHSIDE QTR", "Name": "WILLIAMS, MELBOURNE", "Address": "PO Box 8023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94800, "Improved_V": 111700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.79189015700001, "SHAPE_Area": 1254.0040370900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356360.927299998700619, 256772.490600001066923 ], [ 356326.36370000243187, 256759.542100001126528 ], [ 356319.814300000667572, 256771.098700001835823 ], [ 356316.558499999344349, 256774.660599999129772 ], [ 356312.471199996769428, 256781.171100001782179 ], [ 356349.340400002896786, 256807.437300000339746 ], [ 356353.963500000536442, 256793.493700001388788 ], [ 356360.927299998700619, 256772.490600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202055700", "MAP": "G9-988-T67", "PARCEL_NAM": "6-25", "ACRE": "0.07", "LONGITUDE": -64.95242384, "LATITUDE": 18.34077528, "OBJECTID_1": 8356, "PARCEL_NO_": "105202055700", "Tax_Legal_": "CONTANT 6-25 7BA SOUTHSIDE QTR", "Name": "RYAN, WILLIAM & JOYCE", "Address": "3201-3 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20300, "Improved_V": 93800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.979939437499993, "SHAPE_Area": 290.92385409399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356541.906499996781349, 256794.250999998301268 ], [ 356520.857400000095367, 256787.909299999475479 ], [ 356520.442299999296665, 256789.628199998289347 ], [ 356518.800899997353554, 256792.992300000041723 ], [ 356517.356100000441074, 256801.084100000560284 ], [ 356538.077799998223782, 256806.511199999600649 ], [ 356541.35419999808073, 256795.921100001782179 ], [ 356541.906499996781349, 256794.250999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201046400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9617233, "LATITUDE": 18.34074038, "OBJECTID_1": 7645, "PARCEL_NO_": "105201046400", "Tax_Legal_": "LINDBERG BAY 11J SOUTHSIDE QTR", "Name": "BEVERLY ANNE MAGRAS REVOCABLE LIVING TRUST", "Address": "PO Box 304650", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18200, "Improved_V": 85100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.08980093300001, "SHAPE_Area": 900.73674776400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355562.388400003314018, 256799.940999999642372 ], [ 355561.027500003576279, 256770.376800000667572 ], [ 355530.376900002360344, 256771.392499998211861 ], [ 355531.741300001740456, 256800.534600000828505 ], [ 355562.388400003314018, 256799.940999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201052200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95844242, "LATITUDE": 18.34047539, "OBJECTID_1": 7698, "PARCEL_NO_": "105201052200", "Tax_Legal_": "122 CONTANT NO.7A SOUTHSIDE QTR", "Name": "TRUST AGREEMENT OF SONIA E HODGE", "Address": "10700 City Center Blvd", "City": "PEMBROKE PINES", "State": "Florida", "Zip": 33025, "Country": "United States", "Land_Value": 289200, "Improved_V": 6700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.933467968, "SHAPE_Area": 3201.7717334700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355930.424699999392033, 256760.945599999278784 ], [ 355875.172200001776218, 256715.530499998480082 ], [ 355862.186700001358986, 256725.345600001513958 ], [ 355872.185000002384186, 256782.211599998176098 ], [ 355889.949100002646446, 256779.401700001209974 ], [ 355893.777400001883507, 256803.28660000115633 ], [ 355905.92790000140667, 256796.842099998146296 ], [ 355915.677400000393391, 256788.267099998891354 ], [ 355919.750299997627735, 256783.445300001651049 ], [ 355929.573499999940395, 256766.215999998152256 ], [ 355930.424699999392033, 256760.945599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.946573, "LATITUDE": 18.34377003, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.448463664, "SHAPE_Area": 824.48347513500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357156.292300000786781, 257117.594399999827147 ], [ 357123.120200000703335, 257130.621800001710653 ], [ 357130.21339999884367, 257149.889299999922514 ], [ 357167.411700002849102, 257137.528200000524521 ], [ 357164.263700000941753, 257128.425400000065565 ], [ 357156.292300000786781, 257117.594399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94184174, "LATITUDE": 18.34358349, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.73260334299999, "SHAPE_Area": 1286.2565924099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357662.958599999547005, 257086.277499999850988 ], [ 357657.319799996912479, 257085.598000001162291 ], [ 357654.904500000178814, 257085.156100001186132 ], [ 357654.886500000953674, 257087.2668999992311 ], [ 357646.832400001585484, 257086.145500000566244 ], [ 357638.557099997997284, 257110.986800000071526 ], [ 357616.736299999058247, 257116.718800000846386 ], [ 357625.55179999768734, 257123.123799998313189 ], [ 357635.943899996578693, 257133.7635000012815 ], [ 357640.727899998426437, 257140.135499998927116 ], [ 357643.834399998188019, 257154.093100000172853 ], [ 357650.29389999806881, 257153.090500000864267 ], [ 357653.720600001513958, 257129.475999999791384 ], [ 357662.958599999547005, 257086.277499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93671053, "LATITUDE": 18.34385091, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.153711360499997, "SHAPE_Area": 71.316671563400007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358191.345799997448921, 257155.618900001049042 ], [ 358190.62219999730587, 257145.902699999511242 ], [ 358183.35639999806881, 257146.898699998855591 ], [ 358184.079999998211861, 257156.614900000393391 ], [ 358191.345799997448921, 257155.618900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93155717, "LATITUDE": 18.34386232, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.958070779600007, "SHAPE_Area": 92.132170908099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358707.414499998092651, 257156.465199999511242 ], [ 358755.552199997007847, 257159.380800001323223 ], [ 358755.636600002646446, 257157.473700001835823 ], [ 358713.879399999976158, 257154.829300001263618 ], [ 358709.847900003194809, 257154.796300001442432 ], [ 358707.414499998092651, 257156.465199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96614146, "LATITUDE": 18.3429881, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 533.79886444600004, "SHAPE_Area": 1520.8870920100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355094.421099998056889, 257021.347800001502037 ], [ 355093.744300000369549, 257006.143500000238419 ], [ 355093.200499996542931, 256975.319400001317263 ], [ 355065.807499997317791, 256972.562100000679493 ], [ 355044.053199999034405, 256970.484200000762939 ], [ 355041.58389999717474, 256976.374600000679493 ], [ 355056.89130000025034, 256977.97749999910593 ], [ 355073.811300002038479, 256979.593600001186132 ], [ 355086.701499998569489, 256980.965700000524521 ], [ 355088.121699996292591, 257003.564300000667572 ], [ 355088.690600000321865, 257031.433299999684095 ], [ 355067.740900002419949, 257029.573100000619888 ], [ 355045.984899997711182, 257027.706300001591444 ], [ 355022.618000000715256, 257025.615200001746416 ], [ 355020.150499999523163, 257031.294599998742342 ], [ 355041.904700003564358, 257033.372499998658895 ], [ 355065.271600000560284, 257035.463500000536442 ], [ 355089.444799996912479, 257037.561200000345707 ], [ 355090.071299999952316, 257058.675700001418591 ], [ 355091.947200000286102, 257122.441300000995398 ], [ 355098.386900000274181, 257123.760600000619888 ], [ 355097.68129999935627, 257111.933600001037121 ], [ 355096.982900001108646, 257099.262200001627207 ], [ 355096.271899998188019, 257088.068500000983477 ], [ 355095.568000003695488, 257076.0304000005126 ], [ 355095.63459999859333, 257068.220499999821186 ], [ 355094.999099999666214, 257048.161400001496077 ], [ 355094.327600002288818, 257032.323899999260902 ], [ 355094.421099998056889, 257021.347800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "178", "ACRE": null, "LONGITUDE": -64.94449933, "LATITUDE": 18.34161954, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 828.21439082699999, "SHAPE_Area": 5819.1183314899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357340.603500001132488, 256967.8564000017941 ], [ 357363.886900000274181, 256923.618000000715256 ], [ 357367.696900002658367, 256924.041400000452995 ], [ 357372.988600000739098, 256925.3114 ], [ 357381.455300003290176, 256925.522999998182058 ], [ 357388.22860000282526, 256924.888000000268221 ], [ 357404.738600000739098, 256923.829700000584126 ], [ 357410.140600003302097, 256929.561599999666214 ], [ 357416.765799999237061, 256926.364500001072884 ], [ 357412.042999997735023, 256912.815900001674891 ], [ 357435.501599997282028, 256904.142000000923872 ], [ 357442.781700000166893, 256901.457299999892712 ], [ 357442.01860000193119, 256896.384799998253584 ], [ 357397.570699997246265, 256907.842300001531839 ], [ 357389.494999997317791, 256909.253800000995398 ], [ 357377.394900001585484, 256909.788100000470877 ], [ 357367.749700002372265, 256906.120600000023842 ], [ 357366.684299997985363, 256905.021699998527765 ], [ 357349.967299997806549, 256941.844000000506639 ], [ 357333.351400002837181, 256935.705600000917912 ], [ 357360.945900000631809, 256886.11430000141263 ], [ 357361.480800002813339, 256884.748799998313189 ], [ 357363.123999997973442, 256881.173700001090765 ], [ 357367.222099997103214, 256873.396699998527765 ], [ 357372.106799997389317, 256867.948300000280142 ], [ 357379.426500000059605, 256860.619899999350309 ], [ 357385.097699999809265, 256857.499899998307228 ], [ 357392.388700000941753, 256853.548799999058247 ], [ 357397.248099997639656, 256851.055500000715256 ], [ 357421.518299996852875, 256844.302299998700619 ], [ 357422.774300001561642, 256840.191300000995398 ], [ 357422.215300001204014, 256836.4364 ], [ 357419.552199997007847, 256830.437800001353025 ], [ 357414.088600002229214, 256817.844500001519918 ], [ 357410.361299999058247, 256812.383400000631809 ], [ 357401.571000002324581, 256816.893699999898672 ], [ 357392.652999997138977, 256822.520199999213219 ], [ 357389.451099999248981, 256819.749800000339746 ], [ 357378.071000002324581, 256830.422400001436472 ], [ 357366.6908999979496, 256841.095100000500679 ], [ 357359.385600000619888, 256846.7347999997437 ], [ 357341.73480000346899, 256836.246800001710653 ], [ 357339.294299997389317, 256838.759899999946356 ], [ 357349.726000003516674, 256844.755899999290705 ], [ 357363.365000002086163, 256852.88910000026226 ], [ 357358.47860000282526, 256858.548599999397993 ], [ 357347.89580000191927, 256870.283300001174212 ], [ 357337.314800001680851, 256881.806800000369549 ], [ 357330.06700000166893, 256880.69200000166893 ], [ 357330.040100000798702, 256883.858199998736382 ], [ 357329.178000003099442, 256890.394999999552965 ], [ 357329.134800001978874, 256895.460900001227856 ], [ 357328.206299997866154, 256909.807700000703335 ], [ 357327.272299997508526, 256924.78770000115037 ], [ 357326.34009999781847, 256939.556600000709295 ], [ 357332.464800000190735, 256939.935400001704693 ], [ 357329.464599996805191, 256951.403400000184774 ], [ 357328.313400000333786, 256956.732700001448393 ], [ 357322.909800000488758, 256963.593199998140335 ], [ 357311.3733000010252, 256992.629700001329184 ], [ 357318.0, 257001.8766999989748 ], [ 357327.771899998188019, 257015.512299999594688 ], [ 357328.308799996972084, 257005.155200000852346 ], [ 357329.107799999415874, 256989.741099998354912 ], [ 357340.603500001132488, 256967.8564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94141807, "LATITUDE": 18.34352826, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.076259721, "SHAPE_Area": 739.12710441499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357697.239900000393391, 257132.36540000140667 ], [ 357702.122699998319149, 257127.127999998629093 ], [ 357711.031700000166893, 257122.556800000369549 ], [ 357683.094899997115135, 257088.975400000810623 ], [ 357670.85809999704361, 257105.551600001752377 ], [ 357697.239900000393391, 257132.36540000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94008979, "LATITUDE": 18.34353629, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.660221779799997, "SHAPE_Area": 269.53678319599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357843.373000003397465, 257111.185499999672174 ], [ 357823.245800003409386, 257107.432100001722574 ], [ 357806.33839999884367, 257104.338500000536442 ], [ 357810.785099998116493, 257106.676300000399351 ], [ 357814.362000003457069, 257109.048200000077486 ], [ 357836.019100002944469, 257122.524300001561642 ], [ 357840.050700001418591, 257122.557300001382828 ], [ 357843.29389999806881, 257120.472899999469519 ], [ 357843.373000003397465, 257111.185499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93694304, "LATITUDE": 18.34340846, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 19.375850999499999, "SHAPE_Area": 13.106081505800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358164.351899996399879, 257106.002099998295307 ], [ 358163.614000000059605, 257097.974500000476837 ], [ 358161.999499998986721, 257098.172400001436472 ], [ 358162.737499997019768, 257106.19990000128746 ], [ 358164.351899996399879, 257106.002099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94638931, "LATITUDE": 18.34331235, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.922450137, "SHAPE_Area": 617.25575391799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357185.726000003516674, 257070.128100000321865 ], [ 357137.212300002574921, 257085.563099998980761 ], [ 357145.993699997663498, 257095.978500001132488 ], [ 357190.463100001215935, 257081.988099999725819 ], [ 357185.726000003516674, 257070.128100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94230221, "LATITUDE": 18.34336032, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.566681322400001, "SHAPE_Area": 37.4448999974 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357600.140000000596046, 257077.108500000089407 ], [ 357593.49889999628067, 257099.430100001394749 ], [ 357596.720499999821186, 257099.878600001335144 ], [ 357600.140000000596046, 257077.108500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94257254, "LATITUDE": 18.34325504, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.079788879900001, "SHAPE_Area": 104.846316817 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357567.752599999308586, 257092.675400000065565 ], [ 357573.5675999969244, 257072.669100001454353 ], [ 357567.930699996650219, 257071.778599999845028 ], [ 357563.832599997520447, 257079.555599998682737 ], [ 357566.168799996376038, 257089.285000000149012 ], [ 357567.752599999308586, 257092.675400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94191566000001, "LATITUDE": 18.34328166, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.7681296855, "SHAPE_Area": 75.061654820300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357654.904500000178814, 257085.156100001186132 ], [ 357621.078900001943111, 257080.235199999064207 ], [ 357621.059199996292591, 257082.557100001722574 ], [ 357646.832400001585484, 257086.145500000566244 ], [ 357654.886500000953674, 257087.2668999992311 ], [ 357654.904500000178814, 257085.156100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93867485, "LATITUDE": 18.34307994, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 14.6349940813, "SHAPE_Area": 13.191307198200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357982.483199998736382, 257062.505899999290705 ], [ 357978.449799999594688, 257062.684000000357628 ], [ 357978.420999996364117, 257066.061299998313189 ], [ 357982.456200003623962, 257065.672100000083447 ], [ 357982.483199998736382, 257062.505899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93866878, "LATITUDE": 18.3429477, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.424566395900001, "SHAPE_Area": 96.082041256799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357983.52139999717474, 257035.283399999141693 ], [ 357980.290799997746944, 257035.8902000002563 ], [ 357979.354999996721745, 257051.081300001591444 ], [ 357978.449799999594688, 257062.684000000357628 ], [ 357982.483199998736382, 257062.505899999290705 ], [ 357983.52139999717474, 257035.283399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202060300", "MAP": "F9-753-T61", "PARCEL_NAM": "13", "ACRE": ".588", "LONGITUDE": -64.95025407, "LATITUDE": 18.34276941, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.530247051, "SHAPE_Area": 2209.0089006600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356723.575099997222424, 256987.396699998527765 ], [ 356729.138400003314018, 256996.941399998962879 ], [ 356752.904899999499321, 257055.951999999582767 ], [ 356794.170999996364117, 257030.193199999630451 ], [ 356773.356100000441074, 257012.502000000327826 ], [ 356754.967399999499321, 256993.986400000751019 ], [ 356750.154700003564358, 256990.991700001060963 ], [ 356739.701399996876717, 256987.528599999845028 ], [ 356723.575099997222424, 256987.396699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9350725, "LATITUDE": 18.3429949, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.642456154599998, "SHAPE_Area": 38.807282748600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358354.216600000858307, 257062.804200001060963 ], [ 358359.875200003385544, 257061.161699999123812 ], [ 358367.178700000047684, 257055.7331000007689 ], [ 358363.166900001466274, 257053.378199998289347 ], [ 358354.216600000858307, 257062.804200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94496925, "LATITUDE": 18.34243663, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.28239174800001, "SHAPE_Area": 367.16218302700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357320.218099996447563, 257014.723700001835823 ], [ 357327.771899998188019, 257015.512299999594688 ], [ 357311.3733000010252, 256992.629700001329184 ], [ 357322.909800000488758, 256963.593199998140335 ], [ 357328.313400000333786, 256956.732700001448393 ], [ 357324.354000002145767, 256956.490899998694658 ], [ 357317.265699997544289, 256963.546999998390675 ], [ 357315.624300003051758, 256966.911100000143051 ], [ 357304.913800001144409, 256993.63230000063777 ], [ 357320.218099996447563, 257014.723700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93866128000001, "LATITUDE": 18.34277335, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.936162435699998, "SHAPE_Area": 31.062471326499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357983.614900000393391, 257024.307300001382828 ], [ 357981.192400000989437, 257024.709600001573563 ], [ 357980.290799997746944, 257035.8902000002563 ], [ 357983.52139999717474, 257035.283399999141693 ], [ 357983.614900000393391, 257024.307300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9646002, "LATITUDE": 18.34256151, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.110050785400006, "SHAPE_Area": 235.82191945599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355244.67400000244379, 256989.857999999076128 ], [ 355237.661700002849102, 256961.091899998486042 ], [ 355234.413099996745586, 256963.809500001370907 ], [ 355235.88910000026226, 256979.864700000733137 ], [ 355243.72919999808073, 257006.104499999433756 ], [ 355245.343599997460842, 257005.906599998474121 ], [ 355248.592299997806549, 257003.188999999314547 ], [ 355247.026399999856949, 256997.687699999660254 ], [ 355244.67400000244379, 256989.857999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95863754, "LATITUDE": 18.3426686, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.672858462100002, "SHAPE_Area": 92.251975013800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355862.269799999892712, 256999.556800000369549 ], [ 355867.842000000178814, 257008.046100001782179 ], [ 355882.449199996888638, 256997.188799999654293 ], [ 355862.269799999892712, 256999.556800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9386576, "LATITUDE": 18.34269369, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17.006517260199999, "SHAPE_Area": 12.9355696346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357981.192400000989437, 257024.709600001573563 ], [ 357983.614900000393391, 257024.307300001382828 ], [ 357983.667099997401237, 257018.186000000685453 ], [ 357982.05629999935627, 257017.96169999986887 ], [ 357981.192400000989437, 257024.709600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9417145, "LATITUDE": 18.34260513, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.806709319900001, "SHAPE_Area": 27.1473470649 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357649.070799998939037, 257012.703299999237061 ], [ 357665.231200002133846, 257008.824700001627207 ], [ 357664.451899997889996, 257005.651999998837709 ], [ 357649.070799998939037, 257012.703299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94292493, "LATITUDE": 18.34255854, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.020125868899996, "SHAPE_Area": 153.86723997499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357516.950599998235703, 256998.111900001764297 ], [ 357509.702799998223782, 256996.997099999338388 ], [ 357542.648299999535084, 257010.565699998289347 ], [ 357541.926500000059605, 257000.638399999588728 ], [ 357516.950599998235703, 256998.111900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94159174000001, "LATITUDE": 18.34257651, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.106997968799998, "SHAPE_Area": 24.8499158692 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357665.231200002133846, 257008.824700001627207 ], [ 357679.775399997830391, 257005.355200000107288 ], [ 357675.754600003361702, 257004.055700000375509 ], [ 357670.911399997770786, 257004.649399999529123 ], [ 357665.231200002133846, 257008.824700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91268915000001, "LATITUDE": 18.34215747, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 362.47362258099997, "SHAPE_Area": 1538.8439560500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360753.177100002765656, 256966.548200000077486 ], [ 360681.346900001168251, 256973.981800001114607 ], [ 360687.299300000071526, 257032.503499999642372 ], [ 360693.740800000727177, 257033.611699998378754 ], [ 360687.734499998390675, 256981.422400001436472 ], [ 360722.422100000083447, 256979.806400001049042 ], [ 360753.053000003099442, 256981.11259999871254 ], [ 360757.066600002348423, 256983.256400000303984 ], [ 360760.252300001680851, 256987.926500000059605 ], [ 360764.069799996912479, 257013.077899999916553 ], [ 360770.523900002241135, 257012.708500001579523 ], [ 360767.500100001692772, 256989.041299998760223 ], [ 360769.920800000429153, 256988.850000001490116 ], [ 360767.705099999904633, 256964.978300001472235 ], [ 360753.177100002765656, 256966.548200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91320647000001, "LATITUDE": 18.3420988, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.81169638599999, "SHAPE_Area": 1857.47267083 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360675.401699997484684, 256914.615899998694658 ], [ 360673.160800002515316, 256893.699299998581409 ], [ 360669.148999996483326, 256891.344399999827147 ], [ 360672.10809999704361, 256922.610500000417233 ], [ 360670.400200001895428, 256933.784499999135733 ], [ 360667.067100003361702, 256946.422800000756979 ], [ 360660.537399999797344, 256955.657499998807907 ], [ 360662.695600003004074, 256986.283700000494719 ], [ 360661.828199997544289, 256993.45380000025034 ], [ 360662.569799996912479, 257001.059200000017881 ], [ 360664.871799997985363, 257014.799100000411272 ], [ 360672.054899998009205, 257023.512800000607967 ], [ 360676.862199999392033, 257027.140700001269579 ], [ 360687.299300000071526, 257032.503499999642372 ], [ 360681.346900001168251, 256973.981800001114607 ], [ 360675.401699997484684, 256914.615899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91227866, "LATITUDE": 18.3423642, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.879766882300004, "SHAPE_Area": 89.018123837399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360774.433200001716614, 257027.094900000840425 ], [ 360769.920800000429153, 256988.850000001490116 ], [ 360767.500100001692772, 256989.041299998760223 ], [ 360770.523900002241135, 257012.708500001579523 ], [ 360772.012500002980232, 257027.286200001835823 ], [ 360774.433200001716614, 257027.094900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "BLK TOP ROAD", "ACRE": null, "LONGITUDE": -64.91379649, "LATITUDE": 18.34127137, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1657.5578977299999, "SHAPE_Area": 7726.6528361000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360653.612199999392033, 257011.329500000923872 ], [ 360659.299599997699261, 257006.309799998998642 ], [ 360660.944600000977516, 257002.523600000888109 ], [ 360662.569799996912479, 257001.059200000017881 ], [ 360661.828199997544289, 256993.45380000025034 ], [ 360662.695600003004074, 256986.283700000494719 ], [ 360660.537399999797344, 256955.657499998807907 ], [ 360667.067100003361702, 256946.422800000756979 ], [ 360670.400200001895428, 256933.784499999135733 ], [ 360672.10809999704361, 256922.610500000417233 ], [ 360669.148999996483326, 256891.344399999827147 ], [ 360648.950199998915195, 256706.683299999684095 ], [ 360646.574400000274181, 256701.597600001841784 ], [ 360641.77250000089407, 256697.336500000208616 ], [ 360620.862300001084805, 256690.832499999552965 ], [ 360649.35700000077486, 256942.900400001555681 ], [ 360653.077399998903275, 256979.449999999254942 ], [ 360652.910199999809265, 256999.080299999564886 ], [ 360650.466099999845028, 257002.015599999576807 ], [ 360648.023800000548363, 257004.739900000393391 ], [ 360641.555299997329712, 257006.797800000756979 ], [ 360632.687700003385544, 257006.514199998229742 ], [ 360605.280199997127056, 257005.445500001311302 ], [ 360582.723300002515316, 257002.938799999654293 ], [ 360480.558300003409386, 256994.565600000321865 ], [ 360423.40820000320673, 256988.215599998831749 ], [ 360418.637845476216171, 256987.024548742861953 ], [ 360413.995813540066592, 256985.403923890553415 ], [ 360409.520700000226498, 256983.367199998348951 ], [ 360390.811999998986721, 256985.293800000101328 ], [ 360396.68946105876239, 256989.054735138226533 ], [ 360402.857291407010052, 256992.317716967489105 ], [ 360409.273399635276292, 256995.060477770952275 ], [ 360415.894000001251698, 256997.264299999922514 ], [ 360569.755699999630451, 257010.643199998885393 ], [ 360606.813699997961521, 257014.746199999004602 ], [ 360640.671700000762939, 257015.867600001394749 ], [ 360645.51129999756813, 257015.696199998259544 ], [ 360651.175300002098083, 257013.420499999076128 ], [ 360653.612199999392033, 257011.329500000923872 ] ], [ [ 360633.601499997079372, 256709.935199998319149 ], [ 360636.029399998486042, 256708.899599999189377 ], [ 360640.046599999070168, 256710.621199999004602 ], [ 360662.448600001633167, 256920.631599999964237 ], [ 360660.702899999916553, 256936.238200001418591 ], [ 360659.07769999653101, 256937.702599998563528 ], [ 360657.46679999679327, 256937.478300001472235 ], [ 360632.771799996495247, 256712.672600001096725 ], [ 360633.601499997079372, 256709.935199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93427637000001, "LATITUDE": 18.34217425, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 16.189147628699999, "SHAPE_Area": 11.2336602097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358449.384099997580051, 256966.269000001251698 ], [ 358444.54619999974966, 256966.229400001466274 ], [ 358444.506700001657009, 256970.873100001364946 ], [ 358449.384099997580051, 256966.269000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94381548, "LATITUDE": 18.34214064, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.268070048599995, "SHAPE_Area": 280.41650545300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357450.326999999582767, 256962.313999999314547 ], [ 357444.826700001955032, 256945.381499998271465 ], [ 357432.683399997651577, 256950.981699999421835 ], [ 357425.385200001299381, 256955.777100000530481 ], [ 357423.763599999248981, 256956.819299999624491 ], [ 357423.734899997711182, 256960.19649999961257 ], [ 357425.33669999986887, 256961.476199999451637 ], [ 357450.326999999582767, 256962.313999999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94184396, "LATITUDE": 18.34201455, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 19.595088741000001, "SHAPE_Area": 8.8510442249200008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357642.367799997329712, 256947.631599999964237 ], [ 357648.86150000244379, 256942.618500001728535 ], [ 357648.073100000619888, 256940.5011 ], [ 357642.367799997329712, 256947.631599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95236631, "LATITUDE": 18.34142998, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.60972621499999, "SHAPE_Area": 609.59823049299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356547.403800003230572, 256843.044399999082088 ], [ 356540.86150000244379, 256853.756700001657009 ], [ 356531.059900000691414, 256868.453000001609325 ], [ 356522.908699996769428, 256878.729899998754263 ], [ 356519.634900003671646, 256884.40260000154376 ], [ 356517.170999996364117, 256889.659800000488758 ], [ 356516.325099997222424, 256894.296900000423193 ], [ 356514.548900000751019, 256913.491900000721216 ], [ 356520.979599997401237, 256915.866500001400709 ], [ 356521.960299998521805, 256895.398499999195337 ], [ 356522.79900000244379, 256891.605700001120567 ], [ 356530.158299997448921, 256879.633600000292063 ], [ 356544.025700002908707, 256860.959699999541044 ], [ 356548.120200000703335, 256853.605000000447035 ], [ 356550.58049999922514, 256848.769999999552965 ], [ 356552.203900001943111, 256847.516699999570847 ], [ 356561.253100000321865, 256826.4814000017941 ], [ 356555.626900002360344, 256824.324400000274181 ], [ 356549.851499997079372, 256839.686999998986721 ], [ 356547.403800003230572, 256843.044399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96002795, "LATITUDE": 18.3417039, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.89829937799999, "SHAPE_Area": 614.27554162900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355788.973700001835823, 256895.098900001496077 ], [ 355760.788800001144409, 256890.646299999207258 ], [ 355730.161499999463558, 256888.918000001460314 ], [ 355704.337899997830391, 256891.239799998700619 ], [ 355676.917900003492832, 256891.648600000888109 ], [ 355676.057599999010563, 256897.974399998784065 ], [ 355701.060500003397465, 256897.334600001573563 ], [ 355735.742700003087521, 256896.35190000012517 ], [ 355756.712200000882149, 256895.890299998223782 ], [ 355788.973700001835823, 256895.098900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91345676, "LATITUDE": 18.34067119, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 466.74833449499999, "SHAPE_Area": 1593.66035059 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360636.029399998486042, 256708.899599999189377 ], [ 360633.601499997079372, 256709.935199998319149 ], [ 360632.771799996495247, 256712.672600001096725 ], [ 360657.46679999679327, 256937.478300001472235 ], [ 360659.07769999653101, 256937.702599998563528 ], [ 360660.702899999916553, 256936.238200001418591 ], [ 360662.448600001633167, 256920.631599999964237 ], [ 360640.046599999070168, 256710.621199999004602 ], [ 360636.029399998486042, 256708.899599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97494564, "LATITUDE": 18.34165903, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.133269976999998, "SHAPE_Area": 164.93153149599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354132.831299997866154, 256878.799899999052286 ], [ 354148.113499999046326, 256883.357999999076128 ], [ 354158.697999998927116, 256871.412300001829863 ], [ 354158.726800002157688, 256868.035000000149012 ], [ 354155.506899997591972, 256867.375399999320507 ], [ 354151.448399998247623, 256870.508499998599291 ], [ 354142.537600003182888, 256875.290800001472235 ], [ 354132.831299997866154, 256878.799899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105201048300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96307409000001, "LATITUDE": 18.34115282, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.28805004100002, "SHAPE_Area": 4639.6814323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355434.408399999141693, 256867.287900000810623 ], [ 355432.642200000584126, 256790.646499998867512 ], [ 355418.929499998688698, 256791.167500000447035 ], [ 355371.335500001907349, 256793.311099998652935 ], [ 355374.716099999845028, 256869.754599999636412 ], [ 355434.408399999141693, 256867.287900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93960848, "LATITUDE": 18.3413565, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.536794423899998, "SHAPE_Area": 145.61336134000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357888.911700002849102, 256877.03319999948144 ], [ 357887.401600003242493, 256864.988499999046326 ], [ 357878.526699997484684, 256865.549199998378754 ], [ 357877.60530000180006, 256879.051600001752377 ], [ 357889.694600000977516, 256879.783900000154972 ], [ 357888.911700002849102, 256877.03319999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94468948, "LATITUDE": 18.3413035, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.817604387700001, "SHAPE_Area": 207.993662204 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357358.47860000282526, 256858.548599999397993 ], [ 357344.807199999690056, 256854.214899998158216 ], [ 357334.215499997138977, 256867.004900000989437 ], [ 357347.89580000191927, 256870.283300001174212 ], [ 357358.47860000282526, 256858.548599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91306773, "LATITUDE": 18.34097317, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.022368632, "SHAPE_Area": 342.202730078 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360667.92119999974966, 256846.160300001502037 ], [ 360673.160800002515316, 256893.699299998581409 ], [ 360675.570699997246265, 256894.774500001221895 ], [ 360671.115900002419949, 256849.775100000202656 ], [ 360726.816200003027916, 256842.631599999964237 ], [ 360726.848499998450279, 256838.83219999819994 ], [ 360667.92119999974966, 256846.160300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9133708, "LATITUDE": 18.34031053, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 457.45694823899998, "SHAPE_Area": 868.40196654199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360669.148999996483326, 256891.344399999827147 ], [ 360673.160800002515316, 256893.699299998581409 ], [ 360667.92119999974966, 256846.160300001502037 ], [ 360666.411100000143051, 256834.115699999034405 ], [ 360652.263599999248981, 256696.366900000721216 ], [ 360620.882100000977516, 256688.51069999858737 ], [ 360620.862300001084805, 256690.832499999552965 ], [ 360641.77250000089407, 256697.336500000208616 ], [ 360646.574400000274181, 256701.597600001841784 ], [ 360648.950199998915195, 256706.683299999684095 ], [ 360669.148999996483326, 256891.344399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93685203, "LATITUDE": 18.34128519, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.139975040700001, "SHAPE_Area": 39.743501059899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358179.26690000295639, 256869.699400000274181 ], [ 358180.107400000095367, 256865.695500001311302 ], [ 358169.632500000298023, 256864.765399999916553 ], [ 358169.600100003182888, 256868.564800001680851 ], [ 358179.26690000295639, 256869.699400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "G9-1039-T68", "PARCEL_NAM": "28A", "ACRE": "0.05", "LONGITUDE": -64.95250946, "LATITUDE": 18.34114169, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.1955117726, "SHAPE_Area": 187.26328592199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356519.131800003349781, 256829.36939999833703 ], [ 356510.163699999451637, 256839.844099998474121 ], [ 356519.898500002920628, 256847.975099999457598 ], [ 356525.660999998450279, 256839.368599999696016 ], [ 356530.060900002717972, 256832.797400001436472 ], [ 356528.008299998939037, 256832.249600000679493 ], [ 356527.95549999922514, 256832.235500000417233 ], [ 356519.131800003349781, 256829.36939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95726698, "LATITUDE": 18.34104729, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.971211458699997, "SHAPE_Area": 113.358365236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356034.747299998998642, 256820.272399999201298 ], [ 356006.513700000941753, 256821.518899999558926 ], [ 356004.847199998795986, 256827.838100001215935 ], [ 356030.692299999296665, 256822.983399998396635 ], [ 356034.747299998998642, 256820.272399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95208429, "LATITUDE": 18.34010147, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 773.24564400300005, "SHAPE_Area": 2557.1501190899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356558.51630000025034, 256674.471599999815226 ], [ 356558.836000002920628, 256672.637899998575449 ], [ 356559.053400002419949, 256671.905499998480082 ], [ 356561.159000001847744, 256670.360599998384714 ], [ 356563.539200000464916, 256669.616799999028444 ], [ 356566.148299999535084, 256669.296399999409914 ], [ 356569.349200002849102, 256670.0456000007689 ], [ 356600.552400000393391, 256662.150100000202656 ], [ 356603.75789999961853, 256664.4983000010252 ], [ 356602.816699996590614, 256680.322599999606609 ], [ 356602.784299999475479, 256684.122099999338388 ], [ 356599.435000002384186, 256698.660100001841784 ], [ 356599.417000003159046, 256700.770899999886751 ], [ 356597.78999999910593, 256702.446299999952316 ], [ 356593.677500002086163, 256711.911899998784065 ], [ 356589.56139999628067, 256721.799600001424551 ], [ 356585.420199997723103, 256734.642400000244379 ], [ 356580.472599998116493, 256747.47859999909997 ], [ 356574.702600002288818, 256762.207899998873472 ], [ 356568.901900000870228, 256780.525600001215935 ], [ 356563.875299997627735, 256802.649300001561642 ], [ 356561.384400002658367, 256811.072599999606609 ], [ 356558.933100000023842, 256814.852299999445677 ], [ 356555.626900002360344, 256824.324400000274181 ], [ 356561.253100000321865, 256826.4814000017941 ], [ 356566.198899999260902, 256813.856300000101328 ], [ 356567.822300001978874, 256812.603000000119209 ], [ 356570.253799997270107, 256811.145199999213219 ], [ 356568.680799998342991, 256806.488299999386072 ], [ 356571.180600002408028, 256797.009500000625849 ], [ 356572.863399997353554, 256788.790699999779463 ], [ 356573.700300000607967, 256785.20890000090003 ], [ 356576.189300000667572, 256776.996700000017881 ], [ 356579.488300003111362, 256768.36879999935627 ], [ 356586.912299998104572, 256748.797899998724461 ], [ 356591.041000001132488, 256737.432599999010563 ], [ 356595.167900003492832, 256726.278400000184774 ], [ 356595.185900002717972, 256724.167599998414516 ], [ 356600.950499996542931, 256710.071600001305342 ], [ 356608.347599998116493, 256693.666799999773502 ], [ 356608.392499998211861, 256688.389800000935793 ], [ 356610.048299998044968, 256683.337099999189377 ], [ 356610.201200000941753, 256665.395399998873472 ], [ 356610.247900001704693, 256659.907400000840425 ], [ 356608.665899999439716, 256656.305900000035763 ], [ 356606.266699999570847, 256653.964200001209974 ], [ 356599.82880000025034, 256652.433800000697374 ], [ 356567.500799998641014, 256661.035199999809265 ], [ 356560.265500001609325, 256658.442800000309944 ], [ 356557.882600001990795, 256654.201499998569489 ], [ 356551.376299999654293, 256660.692099999636412 ], [ 356553.757500000298023, 256665.144600000232458 ], [ 356552.909800000488758, 256669.992800001055002 ], [ 356527.30460000038147, 256741.343899998813868 ], [ 356527.28660000115633, 256743.454700000584126 ], [ 356525.656000003218651, 256745.552299998700619 ], [ 356513.176500000059605, 256790.624200001358986 ], [ 356511.511699996888638, 256796.732299998402596 ], [ 356511.427199997007847, 256806.653000000864267 ], [ 356517.042599998414516, 256810.076400000602007 ], [ 356517.107299998402596, 256802.477600000798702 ], [ 356518.800899997353554, 256792.992300000041723 ], [ 356520.442299999296665, 256789.628199998289347 ], [ 356526.293300002813339, 256765.400299999862909 ], [ 356528.805699996650219, 256754.443999998271465 ], [ 356532.104699999094009, 256745.816199999302626 ], [ 356533.751500003039837, 256741.818900000303984 ], [ 356537.876500003039837, 256730.875799998641014 ], [ 356542.005199998617172, 256719.510499998927116 ], [ 356546.132100000977516, 256708.356300000101328 ], [ 356549.44539999961853, 256698.039900001138449 ], [ 356553.584899999201298, 256685.408100001513958 ], [ 356558.51630000025034, 256674.471599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95701653, "LATITUDE": 18.34099847, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.253104400700003, "SHAPE_Area": 44.764567592699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356034.747299998998642, 256820.272399999201298 ], [ 356050.074400000274181, 256819.553399998694658 ], [ 356048.501299999654293, 256814.896499998867512 ], [ 356037.994099996984005, 256817.765799999237061 ], [ 356034.747299998998642, 256820.272399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94640168, "LATITUDE": 18.34056109, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.500469641, "SHAPE_Area": 804.73879245800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357178.932700000703335, 256731.689599998295307 ], [ 357174.094800002872944, 256731.649999998509884 ], [ 357164.163699999451637, 256761.543999999761581 ], [ 357156.656999997794628, 256790.824499998241663 ], [ 357154.927500002086163, 256804.531500000506639 ], [ 357154.815999999642372, 256817.618299998342991 ], [ 357162.963600002229214, 256807.763599999248981 ], [ 357169.462700001895428, 256802.117300000041723 ], [ 357171.937399998307228, 256795.593699999153614 ], [ 357172.072200000286102, 256779.762699998915195 ], [ 357173.065499998629093, 256757.817099999636412 ], [ 357175.621100001037121, 256741.794900000095367 ], [ 357178.932700000703335, 256731.689599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201046500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96141262, "LATITUDE": 18.34073087, "OBJECTID_1": 7646, "PARCEL_NO_": "105201046500", "Tax_Legal_": "1OC LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "LaVERNE TAVAREZ & ULRIC FRANCIS", "Address": "PO Box 518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.547510335, "SHAPE_Area": 1041.4132845700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355596.514300003647804, 256769.611800000071526 ], [ 355561.027500003576279, 256770.376800000667572 ], [ 355562.388400003314018, 256799.940999999642372 ], [ 355597.06700000166893, 256799.380499999970198 ], [ 355596.514300003647804, 256769.611800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202055500", "MAP": "G9-988-T67", "PARCEL_NAM": "6-36", "ACRE": "0.07", "LONGITUDE": -64.95267996, "LATITUDE": 18.34069478, "OBJECTID_1": 8354, "PARCEL_NO_": "105202055500", "Tax_Legal_": "CONTANT ESTATE 6-36 SOUTHSIDE QTR.7Ba", "Name": "THE FAITH GARDENS, INC.", "Address": "PO Box 10227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.9284279954, "SHAPE_Area": 357.75471738099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356515.061999998986721, 256783.814500000327826 ], [ 356492.787600003182888, 256777.219799999147654 ], [ 356491.606499999761581, 256783.328299999237061 ], [ 356489.896999999880791, 256792.16950000077486 ], [ 356511.48480000346899, 256799.882699999958277 ], [ 356511.511699996888638, 256796.732299998402596 ], [ 356513.176500000059605, 256790.624200001358986 ], [ 356515.061999998986721, 256783.814500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201046600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96097155, "LATITUDE": 18.34068683, "OBJECTID_1": 7647, "PARCEL_NO_": "105201046600", "Tax_Legal_": "LINDBERG BAY 1OD SOUTHSIDE QTR", "Name": "MAHONEY, SR. , D. L. , C. S. & W. A", "Address": "Est Nadir Homes 7190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26400, "Improved_V": 68200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.993164097, "SHAPE_Area": 1433.40108764 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355649.782999999821186, 256763.925999999046326 ], [ 355603.002499997615814, 256765.231899999082088 ], [ 355603.540899999439716, 256796.6891999989748 ], [ 355647.090800002217293, 256795.990200001746416 ], [ 355649.782999999821186, 256763.925999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301055800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94555002, "LATITUDE": 18.34063382, "OBJECTID_1": 9194, "PARCEL_NO_": "105301055800", "Tax_Legal_": "ALTONA & WELGUNST 5D KRONPRINDSENS QTR", "Name": "PatricK Simeon Sprauve & Micheal A Smith (ITF) Rachel P S Sprauve", "Address": "PO Box 424", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040424, "Country": "United States", "Land_Value": 124800, "Improved_V": 124300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.57330905399999, "SHAPE_Area": 2157.0391695500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357211.731600001454353, 256795.637800000607967 ], [ 357282.292499996721745, 256809.373599998652935 ], [ 357289.88910000026226, 256769.539099998772144 ], [ 357250.383400000631809, 256768.793499998748302 ], [ 357210.705099999904633, 256788.311599999666214 ], [ 357211.473600000143051, 256792.750799998641014 ], [ 357211.731600001454353, 256795.637800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105201045000", "MAP": "D9-8113-T008", "PARCEL_NAM": "13H", "ACRE": ".12", "LONGITUDE": -64.96298886, "LATITUDE": 18.34020917, "OBJECTID_1": 7628, "PARCEL_NO_": "105201045000", "Tax_Legal_": "LINDBERG BAY 13 SOUTHSIDE QTR", "Name": "HENDERSON, , I & JACKSON, J. & BERG. E, & OTHERS", "Address": "P O BOX 4547", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 724600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.592738908100003, "SHAPE_Area": 484.69665970900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355405.082999996840954, 256712.738499999046326 ], [ 355404.607900001108646, 256721.11089999973774 ], [ 355404.309799998998642, 256724.104800000786781 ], [ 355402.204300001263618, 256730.352800000458956 ], [ 355400.047399997711182, 256735.917599998414516 ], [ 355418.565600000321865, 256739.235500000417233 ], [ 355420.181800000369549, 256738.82660000026226 ], [ 355421.810599997639656, 256736.940000001341105 ], [ 355423.628200002014637, 256712.890299998223782 ], [ 355405.082999996840954, 256712.738499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202056800", "MAP": "D9-605-T66", "PARCEL_NAM": "6-22", "ACRE": ".06", "LONGITUDE": -64.95218105, "LATITUDE": 18.34071026, "OBJECTID_1": 8366, "PARCEL_NO_": "105202056800", "Tax_Legal_": "CONTANT 6-21 & 22 SOUTHSIDE 7BA", "Name": "RIVERS, CLIVE", "Address": "Office Of Clive Rivers Nisky Center", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 337000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.6594313043, "SHAPE_Area": 343.39945751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356541.906499996781349, 256794.250999998301268 ], [ 356564.253700003027916, 256800.983800001442432 ], [ 356567.556000001728535, 256786.449499998241663 ], [ 356546.776900000870228, 256779.523200001567602 ], [ 356541.906499996781349, 256794.250999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202026700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95683838, "LATITUDE": 18.34066235, "OBJECTID_1": 8155, "PARCEL_NO_": "105202026700", "Tax_Legal_": "CONTANT 84-15 7A SOUTHSIDE QTR.", "Name": "FERGUSON, BEN & HOLLY", "Address": "PO Box 10394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63200, "Improved_V": 70900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.08813773099999, "SHAPE_Area": 1062.6060235 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356047.313100002706051, 256765.06870000064373 ], [ 356044.804200001060963, 256775.602800000458956 ], [ 356041.481899999082088, 256786.974700000137091 ], [ 356043.841499999165535, 256793.960099998861551 ], [ 356044.631599999964237, 256795.866399999707937 ], [ 356079.310199998319149, 256795.305900000035763 ], [ 356081.102700002491474, 256774.211199998855591 ], [ 356085.249300003051758, 256760.735100001096725 ], [ 356062.586300000548363, 256770.682100001722574 ], [ 356047.313100002706051, 256765.06870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95565048, "LATITUDE": 18.34064108, "OBJECTID_1": 8123, "PARCEL_NO_": "105202023300", "Tax_Legal_": "CONTANT 79 REMAINDER 7A SOUTHSIDE QTR", "Name": "ST HILAIRE, GIFFORD G. & SERAPHINE", "Address": "13155 Ingram Gap Ln", "City": "Houston", "State": "Texas", "Zip": 77048, "Country": "United States", "Land_Value": 245700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.728636913, "SHAPE_Area": 1978.1102433000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356136.64299999922514, 256764.953099999576807 ], [ 356128.677000001072884, 256777.1064000017941 ], [ 356169.645999997854233, 256792.667700000107288 ], [ 356180.900200001895428, 256796.770599998533726 ], [ 356227.732900001108646, 256789.343400001525879 ], [ 356235.144299998879433, 256771.250100001692772 ], [ 356203.788000002503395, 256760.438700001686811 ], [ 356199.767300002276897, 256759.139299999922514 ], [ 356186.657700002193451, 256783.518800001591444 ], [ 356136.64299999922514, 256764.953099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202026300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95714689, "LATITUDE": 18.3406798, "OBJECTID_1": 8151, "PARCEL_NO_": "105202026300", "Tax_Legal_": "84-12 CONTANT No.7A SOUTHSIDE QTR", "Name": "ADAMS, CHARLENE & NICHOLAS JEROME MAYNARD, JR.", "Address": "PO Box 306344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 40200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.608817675099999, "SHAPE_Area": 402.28501253500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356044.804200001060963, 256775.602800000458956 ], [ 356015.777000002563, 256775.365299999713898 ], [ 356014.076200000941753, 256785.694899998605251 ], [ 356043.841499999165535, 256793.960099998861551 ], [ 356041.481899999082088, 256786.974700000137091 ], [ 356044.804200001060963, 256775.602800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105201045041", "MAP": "D9-1719-T81", "PARCEL_NAM": "13G", "ACRE": ".37", "LONGITUDE": -64.96308629000001, "LATITUDE": 18.3405827, "OBJECTID_1": 7631, "PARCEL_NO_": "105201045041", "Tax_Legal_": "LINDBERG BAY 13G KRUM BAY", "Name": "EELJ-Vista", "Address": "P O BOX 4547", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 49400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.78202636200001, "SHAPE_Area": 1631.17901895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355420.134999997913837, 256744.314599998295307 ], [ 355415.300800003111362, 256743.852899998426437 ], [ 355396.773599997162819, 256741.590300001204014 ], [ 355373.007500000298023, 256786.35869999974966 ], [ 355416.544799998402596, 256787.137200001627207 ], [ 355424.762500002980232, 256769.050400000065565 ], [ 355420.134999997913837, 256744.314599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202055800", "MAP": "G9-988-T67", "PARCEL_NAM": "6-26", "ACRE": "0.07", "LONGITUDE": -64.95239134000001, "LATITUDE": 18.34066578, "OBJECTID_1": 8357, "PARCEL_NO_": "105202055800", "Tax_Legal_": "CONTANT 6-26 7BA SOUTHSIDE QTR", "Name": "ROBERTS, CHARLESWORTH & E", "Address": "PO Box 9585", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20300, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.825148271299994, "SHAPE_Area": 267.45306649899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356520.857400000095367, 256787.909299999475479 ], [ 356541.906499996781349, 256794.250999998301268 ], [ 356545.451099999248981, 256783.532299999147654 ], [ 356523.800200000405312, 256775.723700001835823 ], [ 356520.857400000095367, 256787.909299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202057700", "MAP": "D9-605-T66", "PARCEL_NAM": "6-3", "ACRE": "0.07", "LONGITUDE": -64.95188289, "LATITUDE": 18.34061801, "OBJECTID_1": 8375, "PARCEL_NO_": "105202057700", "Tax_Legal_": "CONTANT 6-3 7BA S S QTR", "Name": "SIR FREDERICK & ANA LARSEN", "Address": "PO Box 302250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22100, "Improved_V": 86800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.883994631999997, "SHAPE_Area": 341.84118477700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356599.647900000214577, 256776.400499999523163 ], [ 356578.949799999594688, 256769.777100000530481 ], [ 356576.189300000667572, 256776.996700000017881 ], [ 356573.700300000607967, 256785.20890000090003 ], [ 356595.205600000917912, 256790.426199998706579 ], [ 356599.647900000214577, 256776.400499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105104010100", "MAP": "D9-8923-T014", "PARCEL_NAM": "72", "ACRE": ".822", "LONGITUDE": -64.96776066, "LATITUDE": 18.34032398, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.767103367, "SHAPE_Area": 3700.2695870100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354937.720399998128414, 256734.211599998176098 ], [ 354943.164200000464916, 256697.347899999469519 ], [ 354932.659500002861023, 256700.006000000983477 ], [ 354880.992499999701977, 256706.971400000154972 ], [ 354876.394299998879433, 256707.281300000846386 ], [ 354883.318099997937679, 256754.328499998897314 ], [ 354892.481200002133846, 256778.203899998217821 ], [ 354911.99549999833107, 256775.302499998360872 ], [ 354924.597000002861023, 256759.399999998509884 ], [ 354934.545299999415874, 256745.218299999833107 ], [ 354937.720399998128414, 256734.211599998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301054800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94473788000001, "LATITUDE": 18.34061583, "OBJECTID_1": 9184, "PARCEL_NO_": "105301054800", "Tax_Legal_": "117 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "MORON, COREEN FRANCIS", "Address": "PO Box 1064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18900, "Improved_V": 64100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.528145735699994, "SHAPE_Area": 391.73274915500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357360.717000000178814, 256785.1064000017941 ], [ 357327.728299997746944, 256776.603700000792742 ], [ 357324.422100000083447, 256786.075899999588728 ], [ 357323.601400002837181, 256787.75789999961853 ], [ 357354.981100000441074, 256795.825199998915195 ], [ 357360.717000000178814, 256785.1064000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95374158, "LATITUDE": 18.34051824, "OBJECTID_1": 8288, "PARCEL_NO_": "105202042800", "Tax_Legal_": "CONTANT 15B SOUTHSIDE QTR. 7BA", "Name": "ARMSTRONG, ZEATHEA (LIFE ESTATE)", "Address": "PO Box 302145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79000, "Improved_V": 57000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.95837957099999, "SHAPE_Area": 1003.79588103 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356419.006899997591972, 256770.01069999858737 ], [ 356371.608900003135204, 256749.146699998527765 ], [ 356368.693199999630451, 256754.054900001734495 ], [ 356364.245999999344349, 256761.540899999439716 ], [ 356362.57769999653101, 256768.071199998259544 ], [ 356412.42339999973774, 256785.5777000002563 ], [ 356414.899899996817112, 256778.842999998480082 ], [ 356418.987199999392033, 256772.332499999552965 ], [ 356419.006899997591972, 256770.01069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202027300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95583756000001, "LATITUDE": 18.34048794, "OBJECTID_1": 8172, "PARCEL_NO_": "105202027300", "Tax_Legal_": "CONTANT 79-1 7A SOUTHSIDE QUARTER", "Name": "GUANNEL, GREGORY and MICHELE", "Address": "PO BOX 30384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 102400, "Improved_V": 126700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.24013022, "SHAPE_Area": 1403.0398260300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356151.488200001418591, 256742.304699998348951 ], [ 356136.64299999922514, 256764.953099999576807 ], [ 356186.657700002193451, 256783.518800001591444 ], [ 356199.767300002276897, 256759.139299999922514 ], [ 356151.488200001418591, 256742.304699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201046700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96208971, "LATITUDE": 18.34052581, "OBJECTID_1": 7648, "PARCEL_NO_": "105201046700", "Tax_Legal_": "LINDBERG BAY 11G SOUTHSIDE QTR", "Name": "ROYSTER, ABIGAIL & KELVIN & AVLYNE", "Address": "P O BOX 5019", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15700, "Improved_V": 144200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.291446431, "SHAPE_Area": 823.80338855299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355523.317900002002716, 256748.114399999380112 ], [ 355491.864500001072884, 256748.701400000602007 ], [ 355492.447800002992153, 256774.881700001657009 ], [ 355523.901199996471405, 256774.294799998402596 ], [ 355523.317900002002716, 256748.114399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202025400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95795314, "LATITUDE": 18.3401267, "OBJECTID_1": 8142, "PARCEL_NO_": "105202025400", "Tax_Legal_": "CONTANT ESTATE 123 7A SOUTHSIDE QTR", "Name": "JOSEPH, JAMES", "Address": "PO Box 8936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.152798021, "SHAPE_Area": 3000.2426885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355936.034800000488758, 256765.002300001680851 ], [ 355952.051299996674061, 256778.010099999606609 ], [ 355966.965899996459484, 256731.058299999684095 ], [ 355974.43129999935627, 256706.632500000298023 ], [ 355931.134999997913837, 256677.569499999284744 ], [ 355911.693599998950958, 256687.964999999850988 ], [ 355912.465800002217293, 256691.982099998742342 ], [ 355925.217500001192093, 256709.607299998402596 ], [ 355929.184299997985363, 256717.239100001752377 ], [ 355933.124200001358986, 256728.037099998444319 ], [ 355937.787600003182888, 256748.551300000399351 ], [ 355936.034800000488758, 256765.002300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301055300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94562286, "LATITUDE": 18.34027721, "OBJECTID_1": 9189, "PARCEL_NO_": "105301055300", "Tax_Legal_": "ALTONA & WELGUNST 5 & 5E KRONPRINDSENS QTR.", "Name": "BOSCHULTE, JAMES", "Address": "PO Box 303190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 290100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.73030476299999, "SHAPE_Area": 4575.5125392299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357276.59179999679327, 256721.300900001078844 ], [ 357256.419600002467632, 256722.824499998241663 ], [ 357247.544799998402596, 256723.385200001299381 ], [ 357230.601400002837181, 256724.513099998235703 ], [ 357201.554399996995926, 256726.59739999845624 ], [ 357207.641699999570847, 256769.288100000470877 ], [ 357210.705099999904633, 256788.311599999666214 ], [ 357250.383400000631809, 256768.793499998748302 ], [ 357289.88910000026226, 256769.539099998772144 ], [ 357300.797399997711182, 256719.599199999123812 ], [ 357276.59179999679327, 256721.300900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202073100", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5R", "ACRE": "0.14", "LONGITUDE": -64.951551, "LATITUDE": 18.3404685, "OBJECTID_1": 8439, "PARCEL_NO_": "105202073100", "Tax_Legal_": "CONTANT 23-5R&23-5S 7BA S S QTR", "Name": "DIPNARINE, TRUSTEES, SONNY RAM & RITA", "Address": "7746 Est Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.259940168, "SHAPE_Area": 597.28130818299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356612.310599997639656, 256751.603900000452995 ], [ 356609.285800002515316, 256750.530999999493361 ], [ 356607.935999996960163, 256754.234999999403954 ], [ 356606.754399999976158, 256757.477699998766184 ], [ 356602.937399998307228, 256767.450199998915195 ], [ 356605.56360000371933, 256768.390599999576807 ], [ 356634.079099997878075, 256777.671599999070168 ], [ 356638.465899996459484, 256766.840199999511242 ], [ 356639.187799997627735, 256765.057700000703335 ], [ 356640.851000003516674, 256760.742499999701977 ], [ 356612.310599997639656, 256751.603900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202057100", "MAP": "D9-605-T66", "PARCEL_NAM": "6-20", "ACRE": "0.07", "LONGITUDE": -64.95210577, "LATITUDE": 18.34047363, "OBJECTID_1": 8369, "PARCEL_NO_": "105202057100", "Tax_Legal_": "6-20 ESTATE CONTANT NO. 7BA SOUTHSIDE QUARTER", "Name": "OLGA GORDON REVOC LIV TR", "Address": "6-20 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22100, "Improved_V": 176600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.564645274200004, "SHAPE_Area": 297.24714488199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356575.346400000154972, 256760.564399998635054 ], [ 356555.129100002348423, 256754.356600001454353 ], [ 356554.598700001835823, 256755.71059999987483 ], [ 356552.933899998664856, 256761.81870000064373 ], [ 356550.971199996769428, 256767.319600000977516 ], [ 356570.800499998033047, 256774.530200000852346 ], [ 356574.702600002288818, 256762.207899998873472 ], [ 356575.346400000154972, 256760.564399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201046800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96173921, "LATITUDE": 18.34048073, "OBJECTID_1": 7649, "PARCEL_NO_": "105201046800", "Tax_Legal_": "LINDBERG BAY 11H S S QTR", "Name": "MAGRAS, CLEMENT A J", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 15100, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.781600465, "SHAPE_Area": 863.29138259499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355548.362099997699261, 256742.619899999350309 ], [ 355529.005199998617172, 256743.094700001180172 ], [ 355530.376900002360344, 256771.392499998211861 ], [ 355561.027500003576279, 256770.376800000667572 ], [ 355559.637900002300739, 256744.189800001680851 ], [ 355559.654100000858307, 256742.290100000798702 ], [ 355548.362099997699261, 256742.619899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202026600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95712715000001, "LATITUDE": 18.3405223, "OBJECTID_1": 8154, "PARCEL_NO_": "105202026600", "Tax_Legal_": "CONTANT 84-14 7A S.S.QTR.", "Name": "THOMPSON, JOHN & KATHLEEN", "Address": "PO Box 8846", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45900, "Improved_V": 10000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.541935369, "SHAPE_Area": 614.36317503800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356047.313100002706051, 256765.06870000064373 ], [ 356050.633599996566772, 256753.907900001853704 ], [ 356016.736100003123283, 256757.43019999936223 ], [ 356015.777000002563, 256775.365299999713898 ], [ 356044.804200001060963, 256775.602800000458956 ], [ 356047.313100002706051, 256765.06870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301055400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9449536, "LATITUDE": 18.34026819, "OBJECTID_1": 9190, "PARCEL_NO_": "105301055400", "Tax_Legal_": "5A ALTONA & WELGUNST KRONPRINDSENS QUARTER", "Name": "SIBILLY, MICHELLE YVONNE", "Address": "PO Box 303689", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 126100, "Improved_V": 35500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.64414323, "SHAPE_Area": 2433.6081375899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357346.620200000703335, 256720.009300000965595 ], [ 357310.233400002121925, 256709.279599998146296 ], [ 357306.396600000560284, 256724.9222999997437 ], [ 357295.432599999010563, 256781.405699998140335 ], [ 357324.422100000083447, 256786.075899999588728 ], [ 357327.728299997746944, 256776.603700000792742 ], [ 357331.85869999974966, 256765.027399998158216 ], [ 357336.0, 256752.184599999338388 ], [ 357340.137699998915195, 256739.763900000602007 ], [ 357344.278899997472763, 256726.921100001782179 ], [ 357346.620200000703335, 256720.009300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201046900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96142725, "LATITUDE": 18.34047919, "OBJECTID_1": 7650, "PARCEL_NO_": "105201046900", "Tax_Legal_": "10A LINDBERG BAY SOUTHSIDE QUARTER", "Name": "BARZEY, ZULEMA L.", "Address": "PO Box 7576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21500, "Improved_V": 105100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.91769133299999, "SHAPE_Area": 932.822463793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355559.637900002300739, 256744.189800001680851 ], [ 355561.027500003576279, 256770.376800000667572 ], [ 355596.514300003647804, 256769.611800000071526 ], [ 355595.882399998605251, 256749.130499999970198 ], [ 355588.679499998688698, 256742.738800000399351 ], [ 355559.637900002300739, 256744.189800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301054900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94470308, "LATITUDE": 18.34051723, "OBJECTID_1": 9185, "PARCEL_NO_": "105301054900", "Tax_Legal_": "116 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GONZALO, CALO", "Address": "PO Box 302668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 57200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.394957786099994, "SHAPE_Area": 381.43332734199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357364.024899996817112, 256775.423200000077486 ], [ 357331.85869999974966, 256765.027399998158216 ], [ 357327.728299997746944, 256776.603700000792742 ], [ 357360.717000000178814, 256785.1064000017941 ], [ 357364.024899996817112, 256775.423200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202054900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95289418, "LATITUDE": 18.34046772, "OBJECTID_1": 8348, "PARCEL_NO_": "105202054900", "Tax_Legal_": "CONTANT 3F 7BA S S QTR", "Name": "CHARLES, SYLVESTER & OTHERS", "Address": "254 15th St", "City": "Washington", "State": "District of Columbia", "Zip": 20003, "Country": "United States", "Land_Value": 34800, "Improved_V": 38100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.124139994000004, "SHAPE_Area": 499.47376278500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356474.840300001204014, 256747.247299998998642 ], [ 356465.780299998819828, 256769.549100000411272 ], [ 356481.843599997460842, 256777.068900000303984 ], [ 356489.962399996817112, 256770.591400001198053 ], [ 356493.30460000038147, 256756.897700000554323 ], [ 356474.840300001204014, 256747.247299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202057900", "MAP": "D9-605-T66", "PARCEL_NAM": "6-5", "ACRE": "0.07", "LONGITUDE": -64.95179296000001, "LATITUDE": 18.34038051, "OBJECTID_1": 8377, "PARCEL_NO_": "105202057900", "Tax_Legal_": "CONTANT 6-5 7BA SOUTHSIDE", "Name": "DIPNARINE, RITA & SONNY RAM, TRUSTEES", "Address": "7551 NW 1st St", "City": "PEMBROKE PINES", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 22900, "Improved_V": 79100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.3664070743, "SHAPE_Area": 336.29438295199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356609.285800002515316, 256750.530999999493361 ], [ 356588.908399999141693, 256743.303100001066923 ], [ 356586.912299998104572, 256748.797899998724461 ], [ 356583.364500001072884, 256758.150600001215935 ], [ 356603.941399998962879, 256764.827199999243021 ], [ 356606.754399999976158, 256757.477699998766184 ], [ 356607.935999996960163, 256754.234999999403954 ], [ 356609.285800002515316, 256750.530999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202026400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95680593, "LATITUDE": 18.34046988, "OBJECTID_1": 8152, "PARCEL_NO_": "105202026400", "Tax_Legal_": "CONTANT 84-16 7A SOUTHSIDE QTR.", "Name": "FERGUSON, JR , BEN & HOLLY", "Address": "PO Box 10394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.937595488499994, "SHAPE_Area": 519.98368515000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356084.527500003576279, 256750.807799998670816 ], [ 356053.862499997019768, 256753.512099999934435 ], [ 356050.633599996566772, 256753.907900001853704 ], [ 356047.313100002706051, 256765.06870000064373 ], [ 356062.586300000548363, 256770.682100001722574 ], [ 356085.249300003051758, 256760.735100001096725 ], [ 356086.073600001633167, 256758.630899999290705 ], [ 356084.527500003576279, 256750.807799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95410177, "LATITUDE": 18.34033804, "OBJECTID_1": 8286, "PARCEL_NO_": "105202042600", "Tax_Legal_": "CONTANT 13 & 15DAA 7BA S S QTR", "Name": "MILLIN, HORACIO A", "Address": "PO BOX 1885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.16814197400001, "SHAPE_Area": 1457.14455761 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356373.351000003516674, 256733.962200000882149 ], [ 356343.609200000762939, 256722.953000001609325 ], [ 356336.212099999189377, 256739.357700001448393 ], [ 356335.500200003385544, 256742.40430000051856 ], [ 356335.375200003385544, 256742.939500000327826 ], [ 356326.36370000243187, 256759.542100001126528 ], [ 356360.927299998700619, 256772.490600001066923 ], [ 356362.57769999653101, 256768.071199998259544 ], [ 356364.245999999344349, 256761.540899999439716 ], [ 356368.693199999630451, 256754.054900001734495 ], [ 356371.608900003135204, 256749.146699998527765 ], [ 356378.979000002145767, 256735.908100001513958 ], [ 356373.351000003516674, 256733.962200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202056000", "MAP": "G9-988-T67", "PARCEL_NAM": "6-28", "ACRE": "0.07", "LONGITUDE": -64.95232719000001, "LATITUDE": 18.34045336, "OBJECTID_1": 8359, "PARCEL_NO_": "105202056000", "Tax_Legal_": "CONTANT 6-28 7BA SOUTHSIDE QTR", "Name": "GRANT, BERNADINE A", "Address": "248A Bournefield", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20300, "Improved_V": 94800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.807508725800005, "SHAPE_Area": 279.65543988799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356553.414099998772144, 256760.056699998676777 ], [ 356529.434000000357628, 256752.800700001418591 ], [ 356528.805699996650219, 256754.443999998271465 ], [ 356526.667499996721745, 256763.768500000238419 ], [ 356549.744999997317791, 256770.75620000064373 ], [ 356552.933899998664856, 256761.81870000064373 ], [ 356553.414099998772144, 256760.056699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201047000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96096782, "LATITUDE": 18.34046924, "OBJECTID_1": 7651, "PARCEL_NO_": "105201047000", "Tax_Legal_": "10B LINDBERG BAY 10B SOUTHSIDE QUARTER", "Name": "DAWSON, STEDMUND & ARMEIN GAUNTLETT", "Address": "955 Cauldwell Ave. #14b", "City": "Bronx", "State": "New York", "Zip": 104566842, "Country": "United States", "Land_Value": 28400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.608151749, "SHAPE_Area": 795.37781832799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355650.688299998641014, 256752.323300000280142 ], [ 355650.73139999806881, 256747.257399998605251 ], [ 355602.338299997150898, 256748.55009999871254 ], [ 355603.002499997615814, 256765.231899999082088 ], [ 355649.782999999821186, 256763.925999999046326 ], [ 355650.688299998641014, 256752.323300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201054600", "MAP": "D9-6229-T97", "PARCEL_NAM": "411-C", "ACRE": ".29", "LONGITUDE": -64.96047266, "LATITUDE": 18.34041098, "OBJECTID_1": 7721, "PARCEL_NO_": "105201054600", "Tax_Legal_": "CONTANT 411-C 7A SOUTHSIDE QTR", "Name": "CREQUE, MICHAEL", "Address": "PO Box 637", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96500, "Improved_V": 43200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.28120894099999, "SHAPE_Area": 1001.75629309 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355712.975699998438358, 256729.190600000321865 ], [ 355708.967500001192093, 256726.413600001484156 ], [ 355682.285499997437, 256734.850000001490116 ], [ 355673.349500000476837, 256742.587400000542402 ], [ 355661.996399998664856, 256750.093800000846386 ], [ 355657.138800002634525, 256752.3761 ], [ 355650.688299998641014, 256752.323300000280142 ], [ 355649.782999999821186, 256763.925999999046326 ], [ 355673.979599997401237, 256763.279699999839067 ], [ 355694.965300001204014, 256760.918299999088049 ], [ 355697.386100001633167, 256760.727000001817942 ], [ 355695.200900003314018, 256733.267000000923872 ], [ 355712.975699998438358, 256729.190600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95364871, "LATITUDE": 18.34038031, "OBJECTID_1": 8290, "PARCEL_NO_": "105202043000", "Tax_Legal_": "CONTANT 15A 7BA SOUTHSIDE QTR", "Name": "FIRST WESLEYA HOLINESS PROPERT", "Address": "PO Box 302145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54500, "Improved_V": 83000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.73875268399999, "SHAPE_Area": 867.88867118600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356395.056699998676777, 256741.739199999719858 ], [ 356378.979000002145767, 256735.908100001513958 ], [ 356371.608900003135204, 256749.146699998527765 ], [ 356419.006899997591972, 256770.01069999858737 ], [ 356420.632200002670288, 256768.546300001442432 ], [ 356422.284299999475479, 256763.915800001472235 ], [ 356428.012999996542931, 256754.041299998760223 ], [ 356395.056699998676777, 256741.739199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202054800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95311103, "LATITUDE": 18.3403708, "OBJECTID_1": 8347, "PARCEL_NO_": "105202054800", "Tax_Legal_": "CONTANT 3E 7BA S S QTR", "Name": "BERNIER, JOHN A.,ELLEN BENJAMIN & EVELYN PIPER", "Address": "PO Box 973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62100, "Improved_V": 309900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.852732406, "SHAPE_Area": 719.38285203199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356474.840300001204014, 256747.247299998998642 ], [ 356450.758799999952316, 256734.38459999859333 ], [ 356437.672600001096725, 256756.020199999213219 ], [ 356465.780299998819828, 256769.549100000411272 ], [ 356474.840300001204014, 256747.247299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301055000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94466299, "LATITUDE": 18.34040841, "OBJECTID_1": 9186, "PARCEL_NO_": "105301055000", "Tax_Legal_": "115 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "CALO, GONZALO", "Address": "PO Box 302668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.3067997988, "SHAPE_Area": 470.36828888600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357366.573299996554852, 256760.245299998670816 ], [ 357336.0, 256752.184599999338388 ], [ 357331.85869999974966, 256765.027399998158216 ], [ 357364.024899996817112, 256775.423200000077486 ], [ 357366.573299996554852, 256760.245299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201066300", "MAP": "A9-821-T016", "PARCEL_NAM": "69-1", "ACRE": ".45", "LONGITUDE": -64.96536194, "LATITUDE": 18.34016286, "OBJECTID_1": 7789, "PARCEL_NO_": "105201066300", "Tax_Legal_": "PCL OF LINDBERG BAY S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.11311329700001, "SHAPE_Area": 2042.4864859100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355149.910700000822544, 256754.979699999094009 ], [ 355178.138800002634525, 256754.366300001740456 ], [ 355174.72580000013113, 256681.722199998795986 ], [ 355146.490500003099442, 256683.179900001734495 ], [ 355149.910700000822544, 256754.979699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201052300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95831324, "LATITUDE": 18.34015582, "OBJECTID_1": 7699, "PARCEL_NO_": "105201052300", "Tax_Legal_": "CONTANT 123 7A SOUTHSIDE QTR", "Name": "SMITH, PERCY & KIDZIAH", "Address": "PO Box 7984", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.46170803199999, "SHAPE_Area": 1714.32984818 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355906.011699996888638, 256692.351500000804663 ], [ 355892.228799998760223, 256701.104600001126528 ], [ 355875.172200001776218, 256715.530499998480082 ], [ 355930.424699999392033, 256760.945599999278784 ], [ 355931.258000001311302, 256757.785999998450279 ], [ 355931.346100002527237, 256747.443199999630451 ], [ 355925.888999998569489, 256725.44480000063777 ], [ 355920.347300000488758, 256713.36710000038147 ], [ 355918.745399996638298, 256712.087400000542402 ], [ 355915.572300001978874, 256705.939699999988079 ], [ 355909.98030000180006, 256699.772199999541044 ], [ 355906.011699996888638, 256692.351500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201052700", "MAP": "C9-22-T57", "PARCEL_NAM": "42", "ACRE": null, "LONGITUDE": -64.95982107, "LATITUDE": 18.34027949, "OBJECTID_1": 7703, "PARCEL_NO_": "105201052700", "Tax_Legal_": "CONTANT 42 7A SOUTHSIDE QTR", "Name": "SPRINGETTE, NORA & WILLIAM", "Address": "4430 NW 174th Dr", "City": "Opa Locka", "State": "Florida", "Zip": 33055, "Country": "United States", "Land_Value": 163100, "Improved_V": 700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.95389242, "SHAPE_Area": 1808.37479719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355769.956500001251698, 256755.498500000685453 ], [ 355766.725400000810623, 256708.96059999987483 ], [ 355728.3783999979496, 256719.6064000017941 ], [ 355725.833599999547005, 256734.362100001424551 ], [ 355724.820500001311302, 256758.629599999636412 ], [ 355752.253100000321865, 256756.743099998682737 ], [ 355769.956500001251698, 256755.498500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202073100", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5S", "ACRE": "0.15", "LONGITUDE": -64.95147964, "LATITUDE": 18.34028426, "OBJECTID_1": 8439, "PARCEL_NO_": "105202073100", "Tax_Legal_": "CONTANT 23-5R&23-5S 7BA S S QTR", "Name": "DIPNARINE, TRUSTEES, SONNY RAM & RITA", "Address": "7746 Est Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.272443571, "SHAPE_Area": 844.88596229300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356621.200599998235703, 256727.791400000452995 ], [ 356618.056500002741814, 256726.842700000852346 ], [ 356616.225299999117851, 256731.71229999884963 ], [ 356613.580600000917912, 256738.745200000703335 ], [ 356612.121399998664856, 256742.749600000679493 ], [ 356609.285800002515316, 256750.530999999493361 ], [ 356612.310599997639656, 256751.603900000452995 ], [ 356640.851000003516674, 256760.742499999701977 ], [ 356645.523999996483326, 256748.618599999696016 ], [ 356649.082900002598763, 256739.385299999266863 ], [ 356650.713500000536442, 256737.28770000115037 ], [ 356630.607900001108646, 256731.001499999314547 ], [ 356621.200599998235703, 256727.791400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95571781, "LATITUDE": 18.34028486, "OBJECTID_1": 8124, "PARCEL_NO_": "105202023400", "Tax_Legal_": "CONTANT 17 7A SOUTHSIDE QTR", "Name": "HARRIGAN, NORWELL & BEATRIC", "Address": "BOX 5456", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 185900, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.52304083600001, "SHAPE_Area": 1274.9807784100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356159.841399997472763, 256720.618400000035763 ], [ 356153.6891999989748, 256738.946800000965595 ], [ 356151.488200001418591, 256742.304699998348951 ], [ 356199.767300002276897, 256759.139299999922514 ], [ 356203.788000002503395, 256760.438700001686811 ], [ 356209.635399997234344, 256736.633000001311302 ], [ 356159.841399997472763, 256720.618400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202055100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9529377, "LATITUDE": 18.34026101, "OBJECTID_1": 8350, "PARCEL_NO_": "105202055100", "Tax_Legal_": "CONTANT 12 A 7 B A SOUTHSIDE QTR", "Name": "PHILLIPS, BYRON A", "Address": "8517 Engleside St", "City": "Alexandria", "State": "Virginia", "Zip": 22309, "Country": "United States", "Land_Value": 46300, "Improved_V": 58000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.277868008, "SHAPE_Area": 664.59994893500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356498.875600002706051, 256745.732900001108646 ], [ 356458.121699996292591, 256721.99040000140667 ], [ 356450.758799999952316, 256734.38459999859333 ], [ 356474.840300001204014, 256747.247299998998642 ], [ 356493.30460000038147, 256756.897700000554323 ], [ 356496.397399999201298, 256758.549699999392033 ], [ 356498.875600002706051, 256745.732900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202056100", "MAP": "105202056000", "PARCEL_NAM": "6-29", "ACRE": "0.07", "LONGITUDE": -64.95229183, "LATITUDE": 18.34034787, "OBJECTID_1": 8360, "PARCEL_NO_": "105202056100", "Tax_Legal_": "CONTANT 6-29 7BA SOUTHSIDE QTR", "Name": "FRANCIS, HUBERT & BERENICE", "Address": "PO Box 7742", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010742, "Country": "United States", "Land_Value": 20300, "Improved_V": 107700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.380752847599993, "SHAPE_Area": 329.03848054299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356557.826700001955032, 256747.517700001597404 ], [ 356534.326399996876717, 256740.293800000101328 ], [ 356533.751500003039837, 256741.818900000303984 ], [ 356532.104699999094009, 256745.816199999302626 ], [ 356529.434000000357628, 256752.800700001418591 ], [ 356553.414099998772144, 256760.056699998676777 ], [ 356554.598700001835823, 256755.71059999987483 ], [ 356557.071599997580051, 256749.397999998182058 ], [ 356557.826700001955032, 256747.517700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202056900", "MAP": "D9-605-T66", "PARCEL_NAM": "6-19", "ACRE": "0.07", "LONGITUDE": -64.95206312000001, "LATITUDE": 18.34035283, "OBJECTID_1": 8367, "PARCEL_NO_": "105202056900", "Tax_Legal_": "CONTANT 6-19 7BA S S QTR", "Name": "THOMAS, IRENE", "Address": "4637 N 40th St", "City": "Milwaukee", "State": "Wisconsin", "Zip": 53209, "Country": "United States", "Land_Value": 21400, "Improved_V": 138200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.436578326299994, "SHAPE_Area": 297.19306387199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356555.129100002348423, 256754.356600001454353 ], [ 356575.346400000154972, 256760.564399998635054 ], [ 356580.472599998116493, 256747.47859999909997 ], [ 356560.366999998688698, 256741.192299999296665 ], [ 356557.071599997580051, 256749.397999998182058 ], [ 356555.129100002348423, 256754.356600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95707666, "LATITUDE": 18.34023201, "OBJECTID_1": 8119, "PARCEL_NO_": "105202022800", "Tax_Legal_": "94 CONTANT 7A SOUTHSIDE QTR", "Name": "EL-HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 194900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.562939521, "SHAPE_Area": 1748.2679247000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356062.310400001704693, 256708.407299999147654 ], [ 356023.870300002396107, 256714.052200000733137 ], [ 356017.808600001037121, 256726.19709999859333 ], [ 356015.317699998617172, 256734.620400000363588 ], [ 356016.039499998092651, 256744.547699999064207 ], [ 356017.610799998044968, 256749.415800001472235 ], [ 356016.736100003123283, 256757.43019999936223 ], [ 356050.633599996566772, 256753.907900001853704 ], [ 356053.862499997019768, 256753.512099999934435 ], [ 356062.310400001704693, 256708.407299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201052600", "MAP": "D9-8606-T011", "PARCEL_NAM": "43 REM", "ACRE": "0.35", "LONGITUDE": -64.95938738, "LATITUDE": 18.34026266, "OBJECTID_1": 7702, "PARCEL_NO_": "105201052600", "Tax_Legal_": "REM 43 CONTANT 7A SOUTHSIDE QUARTER", "Name": "DESOUZA, DESMOND & CYNTHIA", "Address": "PO Box 303246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28000, "Improved_V": 159000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.908777681, "SHAPE_Area": 1400.00490838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355792.018500000238419, 256701.819899998605251 ], [ 355796.931400001049042, 256704.231800001114607 ], [ 355802.442299999296665, 256708.129700001329184 ], [ 355807.012199997901917, 256713.237399999052286 ], [ 355808.894000001251698, 256721.167599998414516 ], [ 355808.490800000727177, 256728.425799999386072 ], [ 355808.490800000727177, 256730.845199998468161 ], [ 355806.474600002169609, 256736.087200000882149 ], [ 355803.383100003004074, 256742.001299999654293 ], [ 355793.167900003492832, 256719.957899998873472 ], [ 355768.412299998104572, 256733.256900001317263 ], [ 355769.956500001251698, 256755.498500000685453 ], [ 355776.458599999547005, 256755.041400000452995 ], [ 355786.947899997234344, 256754.282900001853704 ], [ 355815.190399996936321, 256751.980900000780821 ], [ 355811.647900000214577, 256694.534499999135733 ], [ 355805.975000001490116, 256697.865499999374151 ], [ 355792.018500000238419, 256701.819899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201052500", "MAP": "C9-22-T57", "PARCEL_NAM": "44", "ACRE": null, "LONGITUDE": -64.95902634, "LATITUDE": 18.34010236, "OBJECTID_1": 7701, "PARCEL_NO_": "105201052500", "Tax_Legal_": "CONTANT 44 7A SOUTHSIDE QUARTER", "Name": "HARRIGAN, HENRY & CARMEN", "Address": "BOX 3342", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 119800, "Improved_V": 167200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.769515571, "SHAPE_Area": 2315.6713057299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355815.190399996936321, 256751.980900000780821 ], [ 355829.714800000190735, 256750.833200000226498 ], [ 355862.186700001358986, 256725.345600001513958 ], [ 355847.078900001943111, 256700.312899999320507 ], [ 355828.753100000321865, 256674.409499999135733 ], [ 355827.093699999153614, 256679.884300000965595 ], [ 355823.009999997913837, 256685.972600001841784 ], [ 355818.942500002682209, 256690.161200001835823 ], [ 355811.647900000214577, 256694.534499999135733 ], [ 355815.190399996936321, 256751.980900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105201045100", "MAP": "D9-188-T58", "PARCEL_NAM": "13B", "ACRE": null, "LONGITUDE": -64.96332116000001, "LATITUDE": 18.3402752, "OBJECTID_1": 7632, "PARCEL_NO_": "105201045100", "Tax_Legal_": "LINDBERG BAY 13B SOUTHSIDE QTR", "Name": "ORTIZ, PEDRO & HECTOR, JR", "Address": "PO Box 1147", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58800, "Improved_V": 13300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.736543476600005, "SHAPE_Area": 562.02591217600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355387.302799999713898, 256717.448100000619888 ], [ 355367.944099999964237, 256718.13399999961257 ], [ 355369.303199999034405, 256747.909400001168251 ], [ 355387.040299996733665, 256748.265599999576807 ], [ 355387.302799999713898, 256717.448100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95676126, "LATITUDE": 18.34019922, "OBJECTID_1": 8120, "PARCEL_NO_": "105202022900", "Tax_Legal_": "CONTANT 94A\n7A S S QTR", "Name": "GRAHAM, DUANE ANDRE & AVRIL JASMINE", "Address": "PO Box 502463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 113700, "Improved_V": 77800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.999541687, "SHAPE_Area": 1220.72508315 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356084.141999997198582, 256701.4087999984622 ], [ 356062.310400001704693, 256708.407299999147654 ], [ 356053.862499997019768, 256753.512099999934435 ], [ 356084.527500003576279, 256750.807799998670816 ], [ 356084.141999997198582, 256701.4087999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201047100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96209702, "LATITUDE": 18.3402917, "OBJECTID_1": 7652, "PARCEL_NO_": "105201047100", "Tax_Legal_": "LINDBERG BAY 11E SOUTHSIDE QTR", "Name": "ALVIDO CAMERON & EDITH E CAMERON TRUST", "Address": "PO Box 304487", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15700, "Improved_V": 6300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.242967431, "SHAPE_Area": 807.29352515699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355522.730899997055531, 256722.356199998408556 ], [ 355491.275799997150898, 256723.154199998825788 ], [ 355491.864500001072884, 256748.701400000602007 ], [ 355523.317900002002716, 256748.114399999380112 ], [ 355522.730899997055531, 256722.356199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202058000", "MAP": "D9-605-T66", "PARCEL_NAM": "6-6", "ACRE": "0.07", "LONGITUDE": -64.95174502, "LATITUDE": 18.34025633, "OBJECTID_1": 8378, "PARCEL_NO_": "105202058000", "Tax_Legal_": "CONTANT 6-6 7BA SOUTHSIDE QTR", "Name": "SCATLIFFE, CHRISTENETTA & RONROY STEPHENS", "Address": "3531 UKRAINE DR", "City": "COLUMBUS", "State": "Georgia", "Zip": 31906, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.715832968599997, "SHAPE_Area": 296.96036016 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356614.093099996447563, 256737.382399998605251 ], [ 356593.55009999871254, 256730.65089999884367 ], [ 356591.041000001132488, 256737.432599999010563 ], [ 356588.908399999141693, 256743.303100001066923 ], [ 356609.285800002515316, 256750.530999999493361 ], [ 356612.121399998664856, 256742.749600000679493 ], [ 356613.580600000917912, 256738.745200000703335 ], [ 356614.093099996447563, 256737.382399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201047900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96086896, "LATITUDE": 18.34022389, "OBJECTID_1": 7660, "PARCEL_NO_": "105201047900", "Tax_Legal_": "10J LINDBERG BAY SOUTHSIDE QUARTER", "Name": "WILLIAMS, EVELYN", "Address": "PO Box 10141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.729128637, "SHAPE_Area": 1100.30591944 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355632.524300001561642, 256707.422800000756979 ], [ 355633.05009999871254, 256740.357700001448393 ], [ 355600.790399998426437, 256740.938000001013279 ], [ 355598.353500001132488, 256743.028999999165535 ], [ 355602.35809999704361, 256746.228199999779463 ], [ 355602.338299997150898, 256748.55009999871254 ], [ 355650.73139999806881, 256747.257399998605251 ], [ 355651.634800001978874, 256735.865699999034405 ], [ 355654.359499998390675, 256700.002099998295307 ], [ 355632.524300001561642, 256707.422800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060200", "MAP": "F9-3614-T78", "PARCEL_NAM": "118", "ACRE": null, "LONGITUDE": -64.95030438000001, "LATITUDE": 18.34019805, "OBJECTID_1": 9196, "PARCEL_NO_": "105301060200", "Tax_Legal_": "CONTANT 118 SOUTHSIDE QTR", "Name": "RIVERA, ROMEO", "Address": "BOX 3584", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.931739541, "SHAPE_Area": 768.56899430600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356744.456200003623962, 256713.35700000077486 ], [ 356744.949600003659725, 256750.091299999505281 ], [ 356744.902800001204014, 256755.5793999992311 ], [ 356763.435400001704693, 256757.208700001239777 ], [ 356762.198600001633167, 256713.080099999904633 ], [ 356755.735500000417233, 256714.504799999296665 ], [ 356744.456200003623962, 256713.35700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202043300", "MAP": "G9-1486-T70", "PARCEL_NAM": "9-1", "ACRE": ".48", "LONGITUDE": -64.95343373, "LATITUDE": 18.34013105, "OBJECTID_1": 8293, "PARCEL_NO_": "105202043300", "Tax_Legal_": "CONTANT 9-1 7BA SOUTHSIDE", "Name": "WESLEYN HH. CHURCH OF THE VI", "Address": "BOX 2145", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106700, "Improved_V": 373900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.30269818900001, "SHAPE_Area": 1712.63745885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356396.501599997282028, 256738.154199998825788 ], [ 356428.993699997663498, 256752.427400000393391 ], [ 356450.0945999994874, 256717.702799998223782 ], [ 356453.354000002145767, 256713.718699999153614 ], [ 356412.356100000441074, 256698.817699998617172 ], [ 356396.501599997282028, 256738.154199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202061500", "MAP": "F9-3614-T78", "PARCEL_NAM": "117A", "ACRE": null, "LONGITUDE": -64.95049185000001, "LATITUDE": 18.34031996, "OBJECTID_1": 8405, "PARCEL_NO_": "105202061500", "Tax_Legal_": "CONTANT 114,115,116&117A 24 L.J.DNK.&23-1 CON", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 272400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.912119118, "SHAPE_Area": 207.143860606 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356744.949600003659725, 256750.091299999505281 ], [ 356725.706000000238419, 256737.268199998885393 ], [ 356726.370200000703335, 256753.950100000947714 ], [ 356744.902800001204014, 256755.5793999992311 ], [ 356744.949600003659725, 256750.091299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301055100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94463277, "LATITUDE": 18.34028626, "OBJECTID_1": 9187, "PARCEL_NO_": "105301055100", "Tax_Legal_": "114 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "CALO, GONZALEZ", "Address": "PO Box 302668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27200, "Improved_V": 34600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.873153030799998, "SHAPE_Area": 413.34951745699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357369.910099998116493, 256747.184799998998642 ], [ 357340.137699998915195, 256739.763900000602007 ], [ 357336.0, 256752.184599999338388 ], [ 357366.573299996554852, 256760.245299998670816 ], [ 357369.910099998116493, 256747.184799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202061500", "MAP": "F9-3614-T78", "PARCEL_NAM": "116 REM", "ACRE": null, "LONGITUDE": -64.95064636, "LATITUDE": 18.34026583, "OBJECTID_1": 8405, "PARCEL_NO_": "105202061500", "Tax_Legal_": "CONTANT 114,115,116&117A 24 L.J.DNK.&23-1 CON", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 272400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.912516064900004, "SHAPE_Area": 329.52101787499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356725.706000000238419, 256737.268199998885393 ], [ 356710.474200002849102, 256726.800000000745058 ], [ 356710.256599999964237, 256752.340500000864267 ], [ 356726.370200000703335, 256753.950100000947714 ], [ 356725.706000000238419, 256737.268199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201047200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9618032, "LATITUDE": 18.34025788, "OBJECTID_1": 7653, "PARCEL_NO_": "105201047200", "Tax_Legal_": "LINDBERG BAY REM 11F SOUTHSIDE QTR", "Name": "LEWIS, ROBERT", "Address": "PO Box 305957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.835310517799996, "SHAPE_Area": 417.34882452699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355548.362099997699261, 256742.619899999350309 ], [ 355547.74099999666214, 256720.872099999338388 ], [ 355528.380500003695488, 256721.769200000911951 ], [ 355529.005199998617172, 256743.094700001180172 ], [ 355548.362099997699261, 256742.619899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202061500", "MAP": "D3-142-T46", "PARCEL_NAM": "115", "ACRE": null, "LONGITUDE": -64.95080494, "LATITUDE": 18.34017789, "OBJECTID_1": 8405, "PARCEL_NO_": "105202061500", "Tax_Legal_": "CONTANT 114,115,116&117A 24 L.J.DNK.&23-1 CON", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 272400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.52420424, "SHAPE_Area": 714.78597758700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356690.40089999884367, 256716.714299999177456 ], [ 356691.729400001466274, 256750.077899999916553 ], [ 356694.949199996888638, 256750.73759999871254 ], [ 356710.256599999964237, 256752.340500000864267 ], [ 356710.474200002849102, 256726.800000000745058 ], [ 356710.587399996817112, 256713.502000000327826 ], [ 356697.679200001060963, 256714.240699999034405 ], [ 356690.40089999884367, 256716.714299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201047800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96166038, "LATITUDE": 18.34025341, "OBJECTID_1": 7659, "PARCEL_NO_": "105201047800", "Tax_Legal_": "LINDBERG BAY 11F SOUTHSIDE QTR", "Name": "FRANCOIS, ELMA", "Address": "5095 Oakbrooke Dr", "City": "West Bloomfield", "State": "Michigan", "Zip": 48323, "Country": "United States", "Land_Value": 57400, "Improved_V": 84000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.345652810299995, "SHAPE_Area": 237.185047341 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355558.226700000464916, 256720.535799998790026 ], [ 355547.74099999666214, 256720.872099999338388 ], [ 355548.362099997699261, 256742.619899999350309 ], [ 355559.654100000858307, 256742.290100000798702 ], [ 355558.226700000464916, 256720.535799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201047300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96116058, "LATITUDE": 18.3402157, "OBJECTID_1": 7654, "PARCEL_NO_": "105201047300", "Tax_Legal_": "LINDBERG BAY 1OK SOUTHSIDE QTR", "Name": "ZION ASSEMBLY CHURCH", "Address": "PO Box 10141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67500, "Improved_V": 572600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.71280459299999, "SHAPE_Area": 1406.5935120700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355632.524300001561642, 256707.422800000756979 ], [ 355604.22240000218153, 256716.690400000661612 ], [ 355565.407899998128414, 256729.460499998182058 ], [ 355565.3378000035882, 256737.692600000649691 ], [ 355590.346100002527237, 256736.419599998742342 ], [ 355598.353500001132488, 256743.028999999165535 ], [ 355600.790399998426437, 256740.938000001013279 ], [ 355633.05009999871254, 256740.357700001448393 ], [ 355632.524300001561642, 256707.422800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202055200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95287385, "LATITUDE": 18.34009983, "OBJECTID_1": 8351, "PARCEL_NO_": "105202055200", "Tax_Legal_": "CONTANT 12 7BA SOUTHSIDE QTR", "Name": "WEBSTER, PRISCILLA P.", "Address": "PO Box 9562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81700, "Improved_V": 341500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.50228483800001, "SHAPE_Area": 1093.74613621 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356504.146099999547005, 256718.473999999463558 ], [ 356466.427000001072884, 256700.683100000023842 ], [ 356458.121699996292591, 256721.99040000140667 ], [ 356498.875600002706051, 256745.732900001108646 ], [ 356504.146099999547005, 256718.473999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202056200", "MAP": "105202056000", "PARCEL_NAM": "6-30", "ACRE": "0.07", "LONGITUDE": -64.95225098, "LATITUDE": 18.34024424, "OBJECTID_1": 8361, "PARCEL_NO_": "105202056200", "Tax_Legal_": "CONTANT 6-30 7BA S S QTR", "Name": "GLASFORD, LYNETTE & ALVAREZ, E", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22100, "Improved_V": 38000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.325942746199999, "SHAPE_Area": 273.03435707199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356561.662500001490116, 256737.105799999088049 ], [ 356538.236000001430511, 256729.886199999600649 ], [ 356537.876500003039837, 256730.875799998641014 ], [ 356534.326399996876717, 256740.293800000101328 ], [ 356557.826700001955032, 256747.517700001597404 ], [ 356560.366999998688698, 256741.192299999296665 ], [ 356561.198499999940395, 256738.24379999935627 ], [ 356561.662500001490116, 256737.105799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060100", "MAP": "F9-3614-T78", "PARCEL_NAM": "117", "ACRE": null, "LONGITUDE": -64.95047444, "LATITUDE": 18.34014128, "OBJECTID_1": 9195, "PARCEL_NO_": "105301060100", "Tax_Legal_": "CONTANT 117 SOUTHSIDE QTR", "Name": "HARRIGAN, PEOLA", "Address": "PO BOX 600139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20700, "Improved_V": 42800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.262093433, "SHAPE_Area": 571.47119886099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356744.456200003623962, 256713.35700000077486 ], [ 356725.909199997782707, 256713.416299998760223 ], [ 356725.706000000238419, 256737.268199998885393 ], [ 356744.949600003659725, 256750.091299999505281 ], [ 356744.456200003623962, 256713.35700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95751506000001, "LATITUDE": 18.34013093, "OBJECTID_1": 8127, "PARCEL_NO_": "105202023700", "Tax_Legal_": "CONTANT 98A 7A SOUTHSIDE QTR", "Name": "BROWNE, MARTIN & HELEN", "Address": "1662 Calvin Cir", "City": "Kissimmee", "State": "Florida", "Zip": 34746, "Country": "United States", "Land_Value": 169100, "Improved_V": 33800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.13129149400001, "SHAPE_Area": 1269.7477698499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356017.98480000346899, 256705.511399999260902 ], [ 355974.43129999935627, 256706.632500000298023 ], [ 355966.965899996459484, 256731.058299999684095 ], [ 355986.26349999755621, 256737.5489999987185 ], [ 356007.182700000703335, 256742.997600000351667 ], [ 356006.473499998450279, 256731.592700000852346 ], [ 356007.308499999344349, 256728.222100000828505 ], [ 356008.964299999177456, 256723.169399999082088 ], [ 356017.98480000346899, 256705.511399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202057000", "MAP": "D9-605-T66", "PARCEL_NAM": "6-18", "ACRE": "0.07", "LONGITUDE": -64.95201686, "LATITUDE": 18.34023451, "OBJECTID_1": 8368, "PARCEL_NO_": "105202057000", "Tax_Legal_": "CONTANT 6-18 7BA SOUTHSIDE QTR", "Name": "JAMES, B & JACOBS, C", "Address": "PO Box 8382", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 145000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.919350026800004, "SHAPE_Area": 293.69127786000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356585.420199997723103, 256734.642400000244379 ], [ 356565.316299997270107, 256728.145100001245737 ], [ 356561.198499999940395, 256738.24379999935627 ], [ 356560.366999998688698, 256741.192299999296665 ], [ 356580.472599998116493, 256747.47859999909997 ], [ 356585.420199997723103, 256734.642400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501021500", "MAP": "A9-371-T90", "PARCEL_NAM": "52D", "ACRE": null, "LONGITUDE": -64.91258604, "LATITUDE": 18.34006394, "OBJECTID_1": 19747, "PARCEL_NO_": "105501021500", "Tax_Legal_": "52B-3,C,D,F,G&RD\"E\" THOMAS 6A NEW QTR.", "Name": "SUGAR ESTATE PARK INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1635800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.958556856, "SHAPE_Area": 2146.9968659599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360762.865800000727177, 256775.798900000751019 ], [ 360761.675700001418591, 256726.182199999690056 ], [ 360715.663699999451637, 256731.927299998700619 ], [ 360722.505199998617172, 256780.745900001376867 ], [ 360762.865800000727177, 256775.798900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95465547000001, "LATITUDE": 18.34017007, "OBJECTID_1": 7685, "PARCEL_NO_": "105201050900", "Tax_Legal_": "110 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "EVANS, WILLIAM C. & PATRICIA", "Address": "PO Box 308323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 219000, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.58646987, "SHAPE_Area": 1388.6377509900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356333.107299998402596, 256725.189100001007318 ], [ 356263.055200003087521, 256713.216699998825788 ], [ 356255.634800001978874, 256732.365499999374151 ], [ 356324.889600001275539, 256743.27589999884367 ], [ 356327.349899999797344, 256738.440799999982119 ], [ 356328.172399997711182, 256736.547699999064207 ], [ 356333.107299998402596, 256725.189100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202026800", "MAP": "C9-316-T89", "PARCEL_NAM": "REM 41-B", "ACRE": "0.88", "LONGITUDE": -64.95628818, "LATITUDE": 18.34023077, "OBJECTID_1": 8156, "PARCEL_NO_": "105202026800", "Tax_Legal_": "CONTANT PARCEL 41B S S QTR. 7A", "Name": "TAYLOR, BRUCE", "Address": "314-168 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 304500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.87770227599998, "SHAPE_Area": 3941.1712991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356160.923299998044968, 256717.395199999213219 ], [ 356161.895499996840954, 256714.498700000345707 ], [ 356168.844400003552437, 256697.458000000566244 ], [ 356164.022699996829033, 256695.518699999898672 ], [ 356161.589299999177456, 256694.53999999910593 ], [ 356155.227899998426437, 256715.695500001311302 ], [ 356150.968800000846386, 256713.354800000786781 ], [ 356142.938100002706051, 256709.489399999380112 ], [ 356136.4966000020504, 256708.38120000064373 ], [ 356131.640699997544289, 256710.452399998903275 ], [ 356127.842299997806549, 256714.526500001549721 ], [ 356091.766199998557568, 256689.456799998879433 ], [ 356090.649999998509884, 256694.706999998539686 ], [ 356089.7466000020504, 256706.098700001835823 ], [ 356091.161399997770786, 256729.330600000917912 ], [ 356091.114699997007847, 256734.818599998950958 ], [ 356091.762800000607967, 256753.400199998170137 ], [ 356091.225900001823902, 256760.169700000435114 ], [ 356119.360100001096725, 256773.269000001251698 ], [ 356123.027300000190735, 256774.976500000804663 ], [ 356127.046300001442432, 256776.486999999731779 ], [ 356128.677000001072884, 256777.1064000017941 ], [ 356136.64299999922514, 256764.953099999576807 ], [ 356151.488200001418591, 256742.304699998348951 ], [ 356153.6891999989748, 256738.946800000965595 ], [ 356159.841399997472763, 256720.618400000035763 ], [ 356160.923299998044968, 256717.395199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201052900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96052275, "LATITUDE": 18.34008162, "OBJECTID_1": 7705, "PARCEL_NO_": "105201052900", "Tax_Legal_": "CONTANT 23 7A SOUTHSIDE QUARTER", "Name": "SOPRAMCO II, L.C", "Address": "1387 Fairport Rd", "City": "Fairport", "State": "New York", "Zip": 14450, "Country": "United States", "Land_Value": 127400, "Improved_V": 165700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.64501122499999, "SHAPE_Area": 1337.65977965 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355693.881399996578693, 256698.847899999469519 ], [ 355654.380999997258186, 256697.469200000166893 ], [ 355654.359499998390675, 256700.002099998295307 ], [ 355651.634800001978874, 256735.865699999034405 ], [ 355706.633100003004074, 256716.473099999129772 ], [ 355701.026699997484684, 256711.994199998676777 ], [ 355694.658900000154972, 256702.231800001114607 ], [ 355693.881399996578693, 256698.847899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202043200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95371474, "LATITUDE": 18.34006154, "OBJECTID_1": 8292, "PARCEL_NO_": "105202043200", "Tax_Legal_": "CONTANT 9-2 7BA SOUTHSIDE QTR", "Name": "WESLEYAN HOLINESS CHURCH", "Address": "PO Box 812", "City": "FREDERICKSTED", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 52300, "Improved_V": 589100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.60206138699999, "SHAPE_Area": 979.03190207099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356412.356100000441074, 256698.817699998617172 ], [ 356393.866700001060963, 256692.122499998658895 ], [ 356389.75959999859333, 256700.954799998551607 ], [ 356385.65429999679327, 256709.5760000012815 ], [ 356379.911200001835823, 256721.139199998229742 ], [ 356373.351000003516674, 256733.962200000882149 ], [ 356378.979000002145767, 256735.908100001513958 ], [ 356395.056699998676777, 256741.739199999719858 ], [ 356412.356100000441074, 256698.817699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302471300", "MAP": null, "PARCEL_NAM": "22-W", "ACRE": ".02", "LONGITUDE": -64.9334926, "LATITUDE": 18.34021183, "OBJECTID_1": 10826, "PARCEL_NO_": "105302471300", "Tax_Legal_": "DRONNINGENS GADE 22 QUEENS QUARTER", "Name": "SBP INTERNATIONAL PLAZA LLC", "Address": "5600 Royal Dane Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026410, "Country": "United States", "Land_Value": 2320000, "Improved_V": 290000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.867001828600003, "SHAPE_Area": 107.278226089 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358522.659599997103214, 256744.878499999642372 ], [ 358522.573899999260902, 256744.8429000005126 ], [ 358522.237099997699261, 256746.061099998652935 ], [ 358521.782899998128414, 256747.704199999570847 ], [ 358521.120300002396107, 256750.100900001823902 ], [ 358538.251500003039837, 256757.380399998277426 ], [ 358539.510999999940395, 256757.915600001811981 ], [ 358540.598300002515316, 256753.980099998414516 ], [ 358538.269815141742583, 256752.024017300194828 ], [ 358535.677100002765656, 256750.43470000103116 ], [ 358529.26918283617124, 256747.420360943855485 ], [ 358522.659599997103214, 256744.878499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301055200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94459904, "LATITUDE": 18.34016161, "OBJECTID_1": 9188, "PARCEL_NO_": "105301055200", "Tax_Legal_": "113 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "ROJAS, EDA, LIFE ESTATE", "Address": "PO Box 7541", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 45100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.8658327407, "SHAPE_Area": 463.29396287100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357374.408100001513958, 256734.11089999973774 ], [ 357345.237800002098083, 256724.090199999511242 ], [ 357344.278899997472763, 256726.921100001782179 ], [ 357340.137699998915195, 256739.763900000602007 ], [ 357369.910099998116493, 256747.184799998998642 ], [ 357373.226999998092651, 256736.446199998259544 ], [ 357374.408100001513958, 256734.11089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202056300", "MAP": "G9-988-T67", "PARCEL_NAM": "6-31", "ACRE": "0.07", "LONGITUDE": -64.95221175, "LATITUDE": 18.34014386, "OBJECTID_1": 8362, "PARCEL_NO_": "105202056300", "Tax_Legal_": "CONTANT 6-31 7BA SOUTHSIDE QTR", "Name": "SPRAUVE, CALVIN", "Address": "308 Craig St", "City": "Greensboro", "State": "North Carolina", "Zip": 27406, "Country": "United States", "Land_Value": 18400, "Improved_V": 80500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.436263441899996, "SHAPE_Area": 310.03622124200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356566.285700000822544, 256725.138799998909235 ], [ 356542.439000003039837, 256718.337999999523163 ], [ 356542.005199998617172, 256719.510499998927116 ], [ 356538.594899997115135, 256728.898200001567602 ], [ 356538.236000001430511, 256729.886199999600649 ], [ 356561.662500001490116, 256737.105799999088049 ], [ 356565.316299997270107, 256728.145100001245737 ], [ 356566.285700000822544, 256725.138799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201047400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96139018, "LATITUDE": 18.34006814, "OBJECTID_1": 7655, "PARCEL_NO_": "105201047400", "Tax_Legal_": "LINDBERG 1OL SOUTHSIDE QTR", "Name": "ZION ASSEMBLY, INC.", "Address": "10L LINDBERG BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.370513405, "SHAPE_Area": 899.97220635400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355604.22240000218153, 256716.690400000661612 ], [ 355593.939999997615814, 256693.174800001084805 ], [ 355564.005699999630451, 256704.7511 ], [ 355565.407899998128414, 256729.460499998182058 ], [ 355604.22240000218153, 256716.690400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95565884, "LATITUDE": 18.34006663, "OBJECTID_1": 8132, "PARCEL_NO_": "105202024200", "Tax_Legal_": "OCNTANT 17A 7A SOUTHSIDE QTR", "Name": "VARLACK, PEARL I", "Address": "P.O. BOX 5397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 176100, "Improved_V": 71700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.62120720600001, "SHAPE_Area": 1009.62756356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356168.844400003552437, 256697.458000000566244 ], [ 356161.895499996840954, 256714.498700000345707 ], [ 356160.923299998044968, 256717.395199999213219 ], [ 356210.463299997150898, 256734.106699999421835 ], [ 356214.647699996829033, 256716.197999998927116 ], [ 356174.468800000846386, 256699.8260000012815 ], [ 356168.844400003552437, 256697.458000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202058500", "MAP": "D9-5879-T95", "PARCEL_NAM": "REM 8", "ACRE": "0.59", "LONGITUDE": -64.95126541, "LATITUDE": 18.33991861, "OBJECTID_1": 8383, "PARCEL_NO_": "105202058500", "Tax_Legal_": "CONTANT 8 7BA SOUTHSIDE QTR", "Name": "HAMILTON, CHARLES A. & DD. CAT", "Address": "PO Box 302463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 304500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.720217916, "SHAPE_Area": 2669.9826168499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356689.661799997091293, 256673.607799999415874 ], [ 356689.595200002193451, 256669.631000000983477 ], [ 356670.264700002968311, 256674.558400001376867 ], [ 356670.067299999296665, 256674.60869999974966 ], [ 356646.406000003218651, 256680.640099998563528 ], [ 356632.929700002074242, 256684.075199998915195 ], [ 356631.705600000917912, 256688.225000001490116 ], [ 356628.529799997806549, 256698.991500001400709 ], [ 356622.292199999094009, 256715.57880000025034 ], [ 356618.056500002741814, 256726.842700000852346 ], [ 356621.200599998235703, 256727.791400000452995 ], [ 356630.607900001108646, 256731.001499999314547 ], [ 356650.713500000536442, 256737.28770000115037 ], [ 356653.980099998414516, 256732.459300000220537 ], [ 356673.444899998605251, 256719.319699998944998 ], [ 356670.431900002062321, 256694.385999999940395 ], [ 356689.860699996352196, 256685.467999998480082 ], [ 356689.661799997091293, 256673.607799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301062700", "MAP": "F9-3614-T78", "PARCEL_NAM": "116A", "ACRE": null, "LONGITUDE": -64.95063592, "LATITUDE": 18.34008969, "OBJECTID_1": 9218, "PARCEL_NO_": "105301062700", "Tax_Legal_": "CONTANT 116A 7BB S S QTR", "Name": "HARRIGAN, PEOLA", "Address": "PO BOX 600139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.955466063000003, "SHAPE_Area": 284.58705187700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356725.909199997782707, 256713.416299998760223 ], [ 356710.587399996817112, 256713.502000000327826 ], [ 356710.474200002849102, 256726.800000000745058 ], [ 356725.706000000238419, 256737.268199998885393 ], [ 356725.909199997782707, 256713.416299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202043100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95401584, "LATITUDE": 18.34010476, "OBJECTID_1": 8291, "PARCEL_NO_": "105202043100", "Tax_Legal_": "CONTANT 9-14 7BA S S QTR", "Name": "S&N MANAGEMENT LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24500, "Improved_V": 187900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.291144172599999, "SHAPE_Area": 468.92001491500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356379.911200001835823, 256721.139199998229742 ], [ 356350.176600001752377, 256709.285700000822544 ], [ 356343.609200000762939, 256722.953000001609325 ], [ 356373.351000003516674, 256733.962200000882149 ], [ 356379.911200001835823, 256721.139199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202057200", "MAP": "D9-605-T66", "PARCEL_NAM": "6-17", "ACRE": "0.07", "LONGITUDE": -64.95197399, "LATITUDE": 18.34011792, "OBJECTID_1": 8370, "PARCEL_NO_": "105202057200", "Tax_Legal_": "CONTANT 6-17 7BA S S QTR.", "Name": "Willock Venetta, Cory Dwain, & Pamelyn V Benjamin", "Address": "PO Box 8842", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 351100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.243482773500006, "SHAPE_Area": 285.09788064399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356589.56139999628067, 256721.799600001424551 ], [ 356569.457599997520447, 256715.302200000733137 ], [ 356565.316299997270107, 256728.145100001245737 ], [ 356585.420199997723103, 256734.642400000244379 ], [ 356589.56139999628067, 256721.799600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202058200", "MAP": "D9-605-T66", "PARCEL_NAM": "6-8", "ACRE": "0.07", "LONGITUDE": -64.95166547, "LATITUDE": 18.34003249, "OBJECTID_1": 8380, "PARCEL_NO_": "105202058200", "Tax_Legal_": "6-8 CONTANT 7Ba SOUTHSIDE QTR.", "Name": "THOMAS, COLEEN J. & CANDACE J.", "Address": "PO BOX 302574", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.535734122700006, "SHAPE_Area": 281.88477472199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356622.611900001764297, 256714.728700000792742 ], [ 356603.159999996423721, 256705.171399999409914 ], [ 356600.950499996542931, 256710.071600001305342 ], [ 356597.653300002217293, 256718.134199999272823 ], [ 356618.524999998509884, 256725.596700001507998 ], [ 356622.292199999094009, 256715.57880000025034 ], [ 356622.611900001764297, 256714.728700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204068000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95539129, "LATITUDE": 18.33989628, "OBJECTID_1": 8919, "PARCEL_NO_": "105204068000", "Tax_Legal_": "CONTANT ESTATE 13-3 7A S/S QTR.", "Name": "CECIL FORBES SR LYNNETTE PENN FORBES JOINT LIV TRU", "Address": "PO Box 303682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 174100, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.19376097599999, "SHAPE_Area": 3056.0721406399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356177.947599999606609, 256670.090300001204014 ], [ 356176.277400001883507, 256676.831599999219179 ], [ 356174.468800000846386, 256699.8260000012815 ], [ 356214.647699996829033, 256716.197999998927116 ], [ 356250.809500001370907, 256730.848299998790026 ], [ 356263.186499997973442, 256697.807900000363588 ], [ 356233.414099998772144, 256690.387099999934435 ], [ 356230.25, 256683.184000000357628 ], [ 356205.371200002729893, 256669.259300000965595 ], [ 356177.947599999606609, 256670.090300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201047500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96210471000001, "LATITUDE": 18.34006317, "OBJECTID_1": 7656, "PARCEL_NO_": "105201047500", "Tax_Legal_": "LINDBERG BAY 11C SOUTHSIDE QTR", "Name": "FRANCIS & INAM DAVID EL HAJ LIV TR", "Address": "PO Box 12237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 111100, "Improved_V": 320500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.339584108, "SHAPE_Area": 778.95396306400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355521.339500002563, 256696.380300000309944 ], [ 355490.674400001764297, 256699.084600001573563 ], [ 355491.275799997150898, 256723.154199998825788 ], [ 355522.730899997055531, 256722.356199998408556 ], [ 355521.339500002563, 256696.380300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302472300", "MAP": null, "PARCEL_NAM": "21-W", "ACRE": ".05", "LONGITUDE": -64.93370878, "LATITUDE": 18.34014368, "OBJECTID_1": 10836, "PARCEL_NO_": "105302472300", "Tax_Legal_": "21 DRONNINGENS GADE QUEENS QTR", "Name": "21 QUEENS QTR. INC.", "Address": "9800 Buccaneer Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022626, "Country": "United States", "Land_Value": 2200000, "Improved_V": 81900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.914570282400007, "SHAPE_Area": 206.88943134600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358501.281199999153614, 256735.829700000584126 ], [ 358496.218599997460842, 256748.643699999898672 ], [ 358514.815700002014637, 256747.960200000554323 ], [ 358515.981799997389317, 256747.917399998754263 ], [ 358521.782899998128414, 256747.704199999570847 ], [ 358522.237099997699261, 256746.061099998652935 ], [ 358522.573899999260902, 256744.8429000005126 ], [ 358519.278506430680864, 256743.334778939315584 ], [ 358516.097900003194809, 256741.597600001841784 ], [ 358509.861751434975304, 256738.924282120919088 ], [ 358503.969800002872944, 256735.559599999338388 ], [ 358503.427602132316679, 256735.459032836399274 ], [ 358502.876634402084164, 256735.436079724924639 ], [ 358502.327950602164492, 256735.491201161668869 ], [ 358501.792558701243252, 256735.623291272844654 ], [ 358501.281199999153614, 256735.829700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201052400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95867281, "LATITUDE": 18.33998795, "OBJECTID_1": 7700, "PARCEL_NO_": "105201052400", "Tax_Legal_": "45A CONTANT NO.7A SOUTHSIDE QTR", "Name": "COAKLEY, JAMES A. & BERENICE C. WEBSTER", "Address": "5210 Lavender Ln", "City": "Baytown", "State": "Texas", "Zip": 77521, "Country": "United States", "Land_Value": 53200, "Improved_V": 147200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.046780807, "SHAPE_Area": 836.14511829900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355892.228799998760223, 256701.104600001126528 ], [ 355875.422100000083447, 256686.190499998629093 ], [ 355859.188000001013279, 256698.723200000822544 ], [ 355847.078900001943111, 256700.312899999320507 ], [ 355862.186700001358986, 256725.345600001513958 ], [ 355875.172200001776218, 256715.530499998480082 ], [ 355892.228799998760223, 256701.104600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201047600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96176416, "LATITUDE": 18.3400392, "OBJECTID_1": 7657, "PARCEL_NO_": "105201047600", "Tax_Legal_": "LINDBERG BAY 11D SOUTHSIDE QTR", "Name": "L Ammons,M Lewis,M Lewis,R Lewis,W Lewis, B Blake", "Address": "PO Box 305957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 117600, "Improved_V": 263700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.702901759, "SHAPE_Area": 789.16687014299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355556.844200000166893, 256693.50450000166893 ], [ 355526.987300001084805, 256696.004299998283386 ], [ 355528.380500003695488, 256721.769200000911951 ], [ 355547.74099999666214, 256720.872099999338388 ], [ 355558.226700000464916, 256720.535799998790026 ], [ 355556.844200000166893, 256693.50450000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105201045200", "MAP": "D9-188-T58", "PARCEL_NAM": "13A", "ACRE": null, "LONGITUDE": -64.96332906000001, "LATITUDE": 18.33992815, "OBJECTID_1": 7633, "PARCEL_NO_": "105201045200", "Tax_Legal_": "LINDBERG BAY 13A SOUTHSIDE QTR", "Name": "ORTIZ, PEDRO & HECTOR, JR", "Address": "PO Box 1147", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16100, "Improved_V": 98000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.66640820200001, "SHAPE_Area": 961.16014146600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355388.50110000371933, 256671.439500000327826 ], [ 355365.913599997758865, 256672.521200001239777 ], [ 355367.944099999964237, 256718.13399999961257 ], [ 355387.302799999713898, 256717.448100000619888 ], [ 355388.50110000371933, 256671.439500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204061900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9544371, "LATITUDE": 18.33967376, "OBJECTID_1": 8756, "PARCEL_NO_": "105204061900", "Tax_Legal_": "CONTANT 92 7A SOUTHSIDE QTR", "Name": "KHALIL, FARIS M. & AMAL A. (TRUSTEES)", "Address": "PO Box 301800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 389900, "Improved_V": 29800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.103025301, "SHAPE_Area": 6967.6950880599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356375.871699996292591, 256627.38060000166297 ], [ 356293.591899998486042, 256630.929000001400709 ], [ 356263.055200003087521, 256713.216699998825788 ], [ 356333.107299998402596, 256725.189100001007318 ], [ 356369.313299998641014, 256639.992499999701977 ], [ 356370.940399996936321, 256638.317099999636412 ], [ 356373.402400001883507, 256633.271000001579523 ], [ 356375.871699996292591, 256627.38060000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202056400", "MAP": "G9-988-T67", "PARCEL_NAM": "6-32", "ACRE": "0.07", "LONGITUDE": -64.95217441, "LATITUDE": 18.34003727, "OBJECTID_1": 8363, "PARCEL_NO_": "105202056400", "Tax_Legal_": "CONTANT 6-32 7BA SOUTHSIDE QTR", "Name": "KIRNON (LIFE ESTATE), ELEANOR", "Address": "PO BOX 4645", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20300, "Improved_V": 88500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.964300738899993, "SHAPE_Area": 304.177554058 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356570.035199999809265, 256713.503800000995398 ], [ 356546.732500001788139, 256706.486999999731779 ], [ 356546.132100000977516, 256708.356300000101328 ], [ 356542.439000003039837, 256718.337999999523163 ], [ 356566.285700000822544, 256725.138799998909235 ], [ 356569.457599997520447, 256715.302200000733137 ], [ 356570.035199999809265, 256713.503800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201048000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96106792, "LATITUDE": 18.33993229, "OBJECTID_1": 7661, "PARCEL_NO_": "105201048000", "Tax_Legal_": "LINDBERG BAY 10M SOUTHSIDE QTR", "Name": "ZION ASSEMBLY, INC.", "Address": "PO Box 10141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45700, "Improved_V": 403800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.046736689, "SHAPE_Area": 1018.69126907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355621.478699997067451, 256678.834800001233816 ], [ 355606.074199996888638, 256688.630100000649691 ], [ 355593.939999997615814, 256693.174800001084805 ], [ 355604.22240000218153, 256716.690400000661612 ], [ 355632.524300001561642, 256707.422800000756979 ], [ 355632.021899998188019, 256671.743900001049042 ], [ 355621.478699997067451, 256678.834800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202055300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95285219, "LATITUDE": 18.33992384, "OBJECTID_1": 8352, "PARCEL_NO_": "105202055300", "Tax_Legal_": "CONTANT 39 7BA SOUTHSIDE QTR", "Name": "DENNIS F LAPLACE & JANICE V LAPLACE", "Address": "3583 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34800, "Improved_V": 37800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.853026867, "SHAPE_Area": 473.58278616000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356505.998000003397465, 256711.149000000208616 ], [ 356484.153899997472763, 256695.183499999344349 ], [ 356471.421899996697903, 256685.794599998742342 ], [ 356466.427000001072884, 256700.683100000023842 ], [ 356504.146099999547005, 256718.473999999463558 ], [ 356504.893399998545647, 256714.609099999070168 ], [ 356505.998000003397465, 256711.149000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202043400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95395968, "LATITUDE": 18.3399909, "OBJECTID_1": 8294, "PARCEL_NO_": "105202043400", "Tax_Legal_": "9-13 EST CONTANT 7A SOUTHSIDE QTR", "Name": "DANIEL, ELVIRA", "Address": "PO Box 302461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21400, "Improved_V": 50000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.079340858600006, "SHAPE_Area": 423.13601356700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356385.65429999679327, 256709.5760000012815 ], [ 356355.118699997663498, 256697.082699999213219 ], [ 356350.176600001752377, 256709.285700000822544 ], [ 356379.911200001835823, 256721.139199998229742 ], [ 356385.65429999679327, 256709.5760000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105201045400", "MAP": "D9-188-T58", "PARCEL_NAM": "13C", "ACRE": null, "LONGITUDE": -64.96297199, "LATITUDE": 18.3398982, "OBJECTID_1": 7635, "PARCEL_NO_": "105201045400", "Tax_Legal_": "LINDBERG BAY 13C SOUTHSIDE QTR", "Name": "JADE MANAGEMENT SERVICES", "Address": "PO Box 8717", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 91500, "Improved_V": 324900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.031945093, "SHAPE_Area": 833.506163206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355426.410400003194809, 256670.272100001573563 ], [ 355405.439099997282028, 256670.944899998605251 ], [ 355405.1908999979496, 256700.073699999600649 ], [ 355405.082999996840954, 256712.738499999046326 ], [ 355423.628200002014637, 256712.890299998223782 ], [ 355426.410400003194809, 256670.272100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202057300", "MAP": "D9-605-T66", "PARCEL_NAM": "6-16", "ACRE": "0.07", "LONGITUDE": -64.95193036000001, "LATITUDE": 18.33999647, "OBJECTID_1": 8371, "PARCEL_NO_": "105202057300", "Tax_Legal_": "CONTANT 6-16 7BA S S QTR", "Name": "Willock Venetta, Cory Dwain, & Pamelyn V Benjamin", "Address": "PO Box 8842", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.305877471100004, "SHAPE_Area": 321.40821999399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356595.434799998998642, 256707.867300000041723 ], [ 356573.7550999969244, 256701.495799999684095 ], [ 356572.770900003612041, 256704.985800001770258 ], [ 356569.457599997520447, 256715.302200000733137 ], [ 356589.56139999628067, 256721.799600001424551 ], [ 356593.677500002086163, 256711.911899998784065 ], [ 356595.434799998998642, 256707.867300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201053000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.960114, "LATITUDE": 18.3399259, "OBJECTID_1": 7706, "PARCEL_NO_": "105201053000", "Tax_Legal_": "24 ESTATE CONTANT 7A SOUTHSIDE QUARTER", "Name": "CREQUE, MICHAEL & SOL", "Address": "PO Box 637", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.563178365, "SHAPE_Area": 843.43882621199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355727.895700000226498, 256681.605599999427795 ], [ 355727.403300002217293, 256679.539700001478195 ], [ 355698.664399996399879, 256686.017400000244379 ], [ 355698.53830000013113, 256686.025299999862909 ], [ 355698.814499996602535, 256687.700399998575449 ], [ 355698.782200001180172, 256691.499800000339746 ], [ 355701.147200003266335, 256697.85190000012517 ], [ 355709.113200001418591, 256709.316199999302626 ], [ 355714.732199996709824, 256712.317499998956919 ], [ 355718.756599999964237, 256713.19480000063777 ], [ 355724.40259999781847, 256713.029899999499321 ], [ 355734.101700000464916, 256710.365100000053644 ], [ 355727.895700000226498, 256681.605599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95271431, "LATITUDE": 18.3398433, "OBJECTID_1": 8578, "PARCEL_NO_": "105204021700", "Tax_Legal_": "CONTANT 38 7BA SOUTHSIDE QTR", "Name": "NANCY P. TURNBULL TRUST", "Address": "P O BOX 4283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29400, "Improved_V": 277700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.084468477399994, "SHAPE_Area": 497.13322456200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356512.269500002264977, 256691.504399999976158 ], [ 356499.610500000417233, 256679.2668999992311 ], [ 356497.211300000548363, 256676.925200000405312 ], [ 356484.153899997472763, 256695.183499999344349 ], [ 356505.998000003397465, 256711.149000000208616 ], [ 356512.269500002264977, 256691.504399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202058300", "MAP": "D9-605-T66", "PARCEL_NAM": "6-9", "ACRE": "0.07", "LONGITUDE": -64.95161042, "LATITUDE": 18.33991485, "OBJECTID_1": 8381, "PARCEL_NO_": "105202058300", "Tax_Legal_": "CONTANT 6-9 7BA SOUTHSIDE QTR", "Name": "HODGE, JOSEPH & YVONNE", "Address": "PO Box 304596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034596, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.735493833099994, "SHAPE_Area": 332.795232188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356628.529700003564358, 256698.991500001400709 ], [ 356608.365699999034405, 256691.535799998790026 ], [ 356608.347599998116493, 256693.666799999773502 ], [ 356603.159999996423721, 256705.171399999409914 ], [ 356622.611900001764297, 256714.728700000792742 ], [ 356628.529700003564358, 256698.991500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202055600", "MAP": "D9-5879-T95", "PARCEL_NAM": "8-4", "ACRE": "0.13", "LONGITUDE": -64.95099652, "LATITUDE": 18.33990385, "OBJECTID_1": 8355, "PARCEL_NO_": "105202055600", "Tax_Legal_": "CONTANT 8-4 7BA SOUTHSIDE", "Name": "EVANS, JR., LINDSAY Y", "Address": "PO Box 303396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.518646022599995, "SHAPE_Area": 468.495128421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356673.444899998605251, 256719.319699998944998 ], [ 356690.456600002944469, 256710.170800000429153 ], [ 356689.860699996352196, 256685.467999998480082 ], [ 356670.431900002062321, 256694.385999999940395 ], [ 356673.444899998605251, 256719.319699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": null, "PARCEL_NAM": "70", "ACRE": null, "LONGITUDE": -64.97331773000001, "LATITUDE": 18.3368314, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17744.864829300001, "SHAPE_Area": 605878.79200200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354080.862199999392033, 256539.617199998348951 ], [ 354080.873400002717972, 256539.5793999992311 ], [ 354080.888199999928474, 256539.569699998944998 ], [ 354082.885600000619888, 256532.815200001001358 ], [ 354083.365299999713898, 256531.192400000989437 ], [ 354094.075300000607967, 256529.877300001680851 ], [ 354104.870300002396107, 256529.453899998217821 ], [ 354113.125299997627735, 256532.417300000786781 ], [ 354119.263599999248981, 256533.052299998700619 ], [ 354125.825300000607967, 256534.533900000154972 ], [ 354130.69370000064373, 256537.285599999129772 ], [ 354134.715300001204014, 256545.328999999910593 ], [ 354138.5253000035882, 256554.00730000063777 ], [ 354141.48870000243187, 256560.992300000041723 ], [ 354137.890299998223782, 256565.437300000339746 ], [ 354124.766999997198582, 256564.802299998700619 ], [ 354117.570299997925758, 256567.977299999445677 ], [ 354109.950300000607967, 256571.152399998158216 ], [ 354105.589900001883507, 256576.287599999457598 ], [ 354105.546800002455711, 256576.33839999884367 ], [ 354233.649800002574921, 256589.208099998533726 ], [ 354792.035999998450279, 256639.374499998986721 ], [ 354777.785599999129772, 256703.008099999278784 ], [ 354810.849799998104572, 256702.645399998873472 ], [ 354875.398000001907349, 256698.107500001788139 ], [ 354924.638800002634525, 256691.966600000858307 ], [ 354964.219999998807907, 256683.846799999475479 ], [ 354995.677000001072884, 256682.837699998170137 ], [ 355071.51349999755621, 256678.392099998891354 ], [ 355070.825900003314018, 256664.454300001263618 ], [ 355069.430799998342991, 256638.900600001215935 ], [ 355150.103399999439716, 256634.705699998885393 ], [ 355151.493100002408028, 256660.892700001597404 ], [ 355304.760799996554852, 256654.125599998980761 ], [ 355310.394199997186661, 256655.438200000673532 ], [ 355379.773000001907349, 256651.784200001507998 ], [ 355379.720899999141693, 256657.905499998480082 ], [ 355397.468699999153614, 256656.995299998670816 ], [ 355398.440499998629093, 256637.582600001245737 ], [ 355447.609399996697903, 256639.884899999946356 ], [ 355449.572599999606609, 256598.737700000405312 ], [ 355389.927100002765656, 256595.716400001198053 ], [ 355389.005699999630451, 256609.218899998813868 ], [ 355385.77139999717474, 256610.247900001704693 ], [ 355380.931800000369549, 256610.419300001114607 ], [ 355376.914599999785423, 256608.697700001299381 ], [ 355372.928000003099442, 256603.387699998915195 ], [ 355378.528300002217293, 256513.929900001734495 ], [ 355383.364399999380112, 256514.180599998682737 ], [ 355384.443999998271465, 256482.103199999779463 ], [ 355445.698600001633167, 256485.559900000691414 ], [ 355449.443499997258186, 256424.584499999880791 ], [ 355397.871899999678135, 256420.362700000405312 ], [ 355398.143399998545647, 256388.489799998700619 ], [ 355396.613499999046326, 256378.767000000923872 ], [ 355391.888899996876717, 256365.429400000721216 ], [ 355386.316600002348423, 256356.940000001341105 ], [ 355375.109200000762939, 256347.34910000115633 ], [ 355364.672100000083447, 256341.986299999058247 ], [ 355352.597199998795986, 256339.565499998629093 ], [ 354914.93129999935627, 256316.984999999403954 ], [ 354671.522100001573563, 256303.593699999153614 ], [ 354588.513300001621246, 256298.059200000017881 ], [ 354590.303900003433228, 256277.175599999725819 ], [ 354590.415399998426437, 256264.088700000196695 ], [ 354573.491800002753735, 256262.89469999819994 ], [ 354552.716499999165535, 256240.559900000691414 ], [ 354289.957500003278255, 256226.799199998378754 ], [ 354294.796499997377396, 256132.057799998670816 ], [ 354513.38120000064373, 255935.840999998152256 ], [ 354520.221199996769428, 255795.519799999892712 ], [ 354453.290100000798702, 255795.816399998962879 ], [ 354414.113499999046326, 255756.443399999290705 ], [ 354413.866400003433228, 255690.791299998760223 ], [ 354520.301399998366833, 255691.451299998909235 ], [ 354535.448700003325939, 255711.840300001204014 ], [ 354539.412000000476837, 255719.894299998879433 ], [ 354541.74099999666214, 255730.467999998480082 ], [ 354541.543200001120567, 255753.686700001358986 ], [ 354557.311599999666214, 255795.823399998247623 ], [ 354560.491899996995926, 255801.1266999989748 ], [ 354566.883100003004074, 255808.145100001245737 ], [ 354593.333099998533726, 255826.937800001353025 ], [ 354599.729699999094009, 255833.322999998927116 ], [ 354605.27139999717474, 255845.400699999183416 ], [ 354606.043499998748302, 255849.41780000180006 ], [ 354605.825900003314018, 255874.958299998193979 ], [ 354609.859300002455711, 255874.780200000852346 ], [ 354610.742200002074242, 255771.140500001609325 ], [ 354605.942100003361702, 255766.668299999088049 ], [ 354603.557300001382828, 255762.638000000268221 ], [ 354600.416599996387959, 255752.690900001674891 ], [ 354599.691200003027916, 255743.185699999332428 ], [ 354598.098300002515316, 255740.850699998438358 ], [ 354598.996399998664856, 255730.092199999839067 ], [ 354597.497000001370907, 255716.781100001186132 ], [ 354595.112300001084805, 255712.750799998641014 ], [ 354587.925599999725819, 255704.459300000220537 ], [ 354571.12610000371933, 255688.700899999588728 ], [ 354562.306999996304512, 255682.718100000172853 ], [ 354547.035599999129772, 255676.8935999982059 ], [ 354544.724600002169609, 255664.208999998867512 ], [ 354537.564900003373623, 255652.751400001347065 ], [ 354535.201700001955032, 255646.188200000673532 ], [ 354535.233999997377396, 255642.388700000941753 ], [ 354536.859200000762939, 255640.924400001764297 ], [ 354540.091700002551079, 255640.106499999761581 ], [ 354541.718699999153614, 255638.431000001728535 ], [ 354540.939400002360344, 255635.258299998939037 ], [ 354535.352700002491474, 255628.457499999552965 ], [ 354535.368900001049042, 255626.557799998670816 ], [ 354538.608499996364117, 255624.895599998533726 ], [ 354540.258900001645088, 255620.476100001484156 ], [ 354538.660700000822544, 255618.774300001561642 ], [ 354530.608300000429153, 255617.441799998283386 ], [ 354528.201999999582767, 255615.944499999284744 ], [ 354526.6199000030756, 255612.3429000005126 ], [ 354526.637900002300739, 255610.232200000435114 ], [ 354527.456799998879433, 255608.761199999600649 ], [ 354531.506399996578693, 255606.683400001376867 ], [ 354532.336000002920628, 255603.945999998599291 ], [ 354530.748599998652935, 255600.977699998766184 ], [ 354525.953900001943111, 255595.87220000103116 ], [ 354521.146600000560284, 255592.244300000369549 ], [ 354517.962700001895428, 255587.363099999725819 ], [ 354518.803199999034405, 255583.359200000762939 ], [ 354522.901299998164177, 255575.58219999819994 ], [ 354522.937200002372265, 255571.360700000077486 ], [ 354522.147100001573563, 255569.454300001263618 ], [ 354517.314599998295307, 255568.781500000506639 ], [ 354511.71000000089407, 255564.091600000858307 ], [ 354511.760300002992153, 255558.181400001049042 ], [ 354510.966600000858307, 255556.697200000286102 ], [ 354507.750299997627735, 255555.61540000140667 ], [ 354498.173500001430511, 255543.926899999380112 ], [ 354498.213100001215935, 255539.28319999948144 ], [ 354485.347999997437, 255534.956000000238419 ], [ 354479.737999998033047, 255530.899300001561642 ], [ 354470.879399999976158, 255529.560300000011921 ], [ 354466.063100002706051, 255526.987700000405312 ], [ 354452.44030000269413, 255516.954799998551607 ], [ 354451.646499998867512, 255515.47069999948144 ], [ 354452.465400002896786, 255513.999699998646975 ], [ 354454.079899996519089, 255513.80180000141263 ], [ 354454.112199999392033, 255510.002399999648333 ], [ 354447.623999997973442, 255514.38230000063777 ], [ 354449.997900001704693, 255519.679000001400709 ], [ 354449.144900001585484, 255525.160500001162291 ], [ 354442.654799997806549, 255529.751400001347065 ], [ 354433.760200001299381, 255532.633900001645088 ], [ 354432.131399996578693, 255534.520500000566244 ], [ 354432.912500001490116, 255537.482200000435114 ], [ 354436.11259999871254, 255540.463700000196695 ], [ 354432.012699998915195, 255548.451699998229742 ], [ 354426.372100003063679, 255547.983300000429153 ], [ 354428.771300002932549, 255550.324999999254942 ], [ 354428.746100001037121, 255553.280099999159575 ], [ 354427.101099997758865, 255557.066300000995398 ], [ 354423.856100000441074, 255559.361800000071526 ], [ 354416.584899999201298, 255560.99100000038743 ], [ 354410.955099999904633, 255559.25620000064373 ], [ 354409.338899999856949, 255559.665100000798702 ], [ 354406.066899999976158, 255565.126800000667572 ], [ 354405.237199999392033, 255567.864199999719858 ], [ 354405.143700003623962, 255578.840300001204014 ], [ 354406.74549999833107, 255580.120000001043081 ], [ 354408.325800001621246, 255583.932599999010563 ], [ 354412.244000002741814, 255597.263599999248981 ], [ 354412.20269999653101, 255602.118400000035763 ], [ 354410.534299999475479, 255608.648600000888109 ], [ 354403.137199997901917, 255625.053399998694658 ], [ 354389.944899998605251, 255659.142599999904633 ], [ 354380.796800002455711, 255691.787200000137091 ], [ 354377.530199997127056, 255696.615600001066923 ], [ 354374.285099998116493, 255698.911100000143051 ], [ 354369.436499997973442, 255700.138000000268221 ], [ 354363.747299998998642, 255705.368700001388788 ], [ 354348.92620000243187, 255741.344399999827147 ], [ 354328.277500003576279, 255798.804000001400709 ], [ 354326.601899996399879, 255806.17850000038743 ], [ 354322.491300001740456, 255815.43299999833107 ], [ 354323.175300002098083, 255829.793000001460314 ], [ 354322.288099996745586, 255839.28489999845624 ], [ 354319.777400001883507, 255850.030099999159575 ], [ 354317.293700002133846, 255857.609200000762939 ], [ 354301.655500002205372, 255894.844700001180172 ], [ 354293.376599997282028, 255920.108199998736382 ], [ 354275.297899998724461, 255959.856899999082088 ], [ 354267.058499999344349, 255980.476700000464916 ], [ 354253.115699999034405, 256008.015799999237061 ], [ 354248.207699999213219, 256016.208299998193979 ], [ 354230.308700002729893, 256034.84910000115633 ], [ 354228.669200003147125, 256038.002099998295307 ], [ 354228.575599998235703, 256048.978199999779463 ], [ 354225.213699996471405, 256064.99379999935627 ], [ 354200.481299996376038, 256128.541600000113249 ], [ 354192.25450000166893, 256147.683800000697374 ], [ 354179.145000003278255, 256172.063400000333786 ], [ 354169.386500000953674, 256181.693799998611212 ], [ 354161.278399996459484, 256186.904800001531839 ], [ 354149.943300001323223, 256192.300400000065565 ], [ 354135.402699999511242, 256195.347800001502037 ], [ 354038.648800000548363, 256194.133799999952316 ], [ 353319.644599996507168, 256161.651299998164177 ], [ 353309.979699999094009, 256160.305599998682737 ], [ 353298.693099997937679, 256160.002099998295307 ], [ 353281.746200002729893, 256161.552200000733137 ], [ 353272.052400000393391, 256163.583799999207258 ], [ 353252.641599997878075, 256170.390999998897314 ], [ 353240.492899999022484, 256176.624400001019239 ], [ 353229.949699997901917, 256183.715300001204014 ], [ 353219.390399999916553, 256192.705899998545647 ], [ 353205.548199996352196, 256208.424600001424551 ], [ 353203.905000001192093, 256211.999699998646975 ], [ 353201.464500002563, 256214.512899998575449 ], [ 353194.069200001657009, 256230.706500001251698 ], [ 353186.619999997317791, 256253.232599999755621 ], [ 353182.415799997746944, 256273.463199999183416 ], [ 353177.989399999380112, 256414.437399998307228 ], [ 353180.366899996995926, 256419.311999998986721 ], [ 353185.962600000202656, 256425.057399999350309 ], [ 353190.778899997472763, 256427.629900000989437 ], [ 353195.605999998748302, 256428.936000000685453 ], [ 353767.144799999892712, 256449.656899999827147 ], [ 353779.873199999332428, 256470.026000000536442 ], [ 353786.204999998211861, 256484.010000001639128 ], [ 353787.725900001823902, 256494.788199998438358 ], [ 353787.598300002515316, 256509.77479999884963 ], [ 353789.135399997234344, 256518.653299998492002 ], [ 353792.308499999344349, 256524.800999999046326 ], [ 353798.703199997544289, 256531.397300001233816 ], [ 353804.316799998283386, 256535.031800001859665 ], [ 353814.773699998855591, 256538.072700001299381 ], [ 353838.165799997746944, 256537.208700001239777 ], [ 353870.411100000143051, 256538.31700000166893 ], [ 353893.795999996364117, 256538.2972999997437 ], [ 353896.220299996435642, 256537.683800000697374 ], [ 353907.488899998366833, 256540.098099999129772 ], [ 353934.878300003707409, 256543.27760000154376 ], [ 353958.254199996590614, 256544.313299998641014 ], [ 353975.204700000584126, 256542.341099999845028 ], [ 353988.944399997591972, 256538.653799999505281 ], [ 353997.014700002968311, 256537.875500001013279 ], [ 354011.526600003242493, 256538.205400001257658 ], [ 354042.139499999582767, 256541.622299998998642 ], [ 354064.723399996757507, 256540.962799999862909 ], [ 354069.532499998807907, 256544.379599999636412 ], [ 354073.564099997282028, 256544.412599999457598 ], [ 354080.862199999392033, 256539.617199998348951 ] ], [ [ 354218.277400001883507, 256311.28319999948144 ], [ 354171.03830000013113, 256366.414200000464916 ], [ 353986.461099997162819, 256356.881900001317263 ], [ 353369.874799996614456, 256323.337900001555681 ], [ 353313.463500000536442, 256319.287599999457598 ], [ 353303.829099997878075, 256314.35359999909997 ], [ 353298.226300001144409, 256309.452500000596046 ], [ 353293.436999998986721, 256303.713799998164177 ], [ 353288.674599997699261, 256294.808899998664856 ], [ 353287.286799997091293, 256268.410900000482798 ], [ 353289.818999998271465, 256255.132699999958277 ], [ 353296.350400000810623, 256245.686900001019239 ], [ 353306.890000000596046, 256239.018199998885393 ], [ 353328.681999996304512, 256236.663400001823902 ], [ 353374.65259999781847, 256235.77309999987483 ], [ 354005.763300001621246, 256268.16950000077486 ], [ 354217.566399998962879, 256300.089400000870228 ], [ 354219.168200001120567, 256301.369100000709295 ], [ 354218.277400001883507, 256311.28319999948144 ] ], [ [ 354990.677599996328354, 256512.444299999624491 ], [ 354980.98030000180006, 256514.897999998182058 ], [ 354756.915299996733665, 256502.509500000625849 ], [ 354758.767099998891354, 256474.449200000613928 ], [ 354334.03999999910593, 256447.541600000113249 ], [ 354229.278800003230572, 256439.718100000172853 ], [ 354211.69990000128746, 256420.786899998784065 ], [ 354988.688400000333786, 256461.976599998772144 ], [ 354994.305699996650219, 256465.188999999314547 ], [ 354998.286899998784065, 256471.132199998944998 ], [ 354997.192800000309944, 256504.898200001567602 ], [ 354990.677599996328354, 256512.444299999624491 ] ], [ [ 354344.160999998450279, 255827.431600000709295 ], [ 354372.300300002098083, 255742.5912000015378 ], [ 354392.391599997878075, 255750.566100001335144 ], [ 354389.078199997544289, 255760.882599998265505 ], [ 354395.503499999642372, 255763.890500001609325 ], [ 354396.259499996900558, 255769.807300001382828 ], [ 354397.037000000476837, 255773.191100001335144 ], [ 354399.71339999884367, 255775.814399998635054 ], [ 354402.888400003314018, 255778.566100001335144 ], [ 354409.238499999046326, 255781.9527000002563 ], [ 354416.223499998450279, 255783.116900000721216 ], [ 354426.703400000929832, 255793.065600000321865 ], [ 354451.490500003099442, 255817.755399998277426 ], [ 354450.270599998533726, 255866.296900000423193 ], [ 354437.844999998807907, 255905.036400001496077 ], [ 354434.598200000822544, 255907.543000001460314 ], [ 354431.369300000369549, 255907.938700001686811 ], [ 354422.809600003063679, 255904.27760000154376 ], [ 354402.63400000333786, 255929.391199998557568 ], [ 354393.902699999511242, 255938.519400000572205 ], [ 354385.171499997377396, 255945.663100000470877 ], [ 354324.165799997746944, 256003.538699999451637 ], [ 354326.816200003027916, 256005.450599998235703 ], [ 354305.001199997961521, 256023.813299998641014 ], [ 354294.840300001204014, 256017.744600001722574 ], [ 354280.88120000064373, 256037.084100000560284 ], [ 354261.091600000858307, 256025.65989999845624 ], [ 354331.742600001394749, 255865.326799999922514 ], [ 354344.160999998450279, 255827.431600000709295 ] ], [ [ 355259.087999999523163, 256525.406899999827147 ], [ 355138.178800001740456, 256519.984299998730421 ], [ 355084.953199997544289, 256520.604200001806021 ], [ 355029.339299999177456, 256517.615899998694658 ], [ 355022.899499997496605, 256516.296599999070168 ], [ 355018.088600002229214, 256513.090799998492002 ], [ 355014.101999998092651, 256507.780900001525879 ], [ 355013.3496999964118, 256501.441899999976158 ], [ 355015.264399997889996, 256465.99379999935627 ], [ 355017.701300002634525, 256463.902899999171495 ], [ 355020.931900002062321, 256463.296000000089407 ], [ 355355.425800003111362, 256480.810199998319149 ], [ 355356.898100003600121, 256497.287599999457598 ], [ 355351.975699998438358, 256507.168699998408556 ], [ 355350.9662000015378, 256531.013999998569489 ], [ 355294.542300000786781, 256528.441300000995398 ], [ 355259.087999999523163, 256525.406899999827147 ] ], [ [ 354965.853799998760223, 256397.406199999153614 ], [ 354958.595200002193451, 256397.557900000363588 ], [ 354939.243699997663498, 256397.399500001221895 ], [ 354607.163500003516674, 256380.53830000013113 ], [ 354575.738899998366833, 256377.747999999672174 ], [ 354572.533399999141693, 256375.39979999884963 ], [ 354570.141400001943111, 256372.213799998164177 ], [ 354571.192299999296665, 256343.513599999248981 ], [ 354572.830099999904633, 256340.571699999272823 ], [ 354577.693099997937679, 256337.656199999153614 ], [ 354643.791000001132488, 256340.519200000911951 ], [ 354898.48139999806881, 256354.847199998795986 ], [ 354965.351400002837181, 256361.727299999445677 ], [ 354975.810099996626377, 256364.557100001722574 ], [ 354979.015600003302097, 256366.9054000005126 ], [ 354984.616599999368191, 256372.017499998211861 ], [ 354986.175300002098083, 256378.363000001758337 ], [ 354979.624099999666214, 256390.13060000166297 ], [ 354965.853799998760223, 256397.406199999153614 ] ], [ [ 355339.953699998557568, 256593.19649999961257 ], [ 355024.003300003707409, 256576.045099999755621 ], [ 355023.907999999821186, 256587.232299998402596 ], [ 355020.650399997830391, 256591.005300000309944 ], [ 355014.196299999952316, 256591.374699998646975 ], [ 355009.383599996566772, 256588.379999998956919 ], [ 355007.803300000727177, 256584.567400000989437 ], [ 355008.996200002729893, 256539.19200000166893 ], [ 355010.639399997889996, 256535.616900000721216 ], [ 355013.078100003302097, 256533.314800001680851 ], [ 355019.544799998402596, 256531.4679000005126 ], [ 355320.983400002121925, 256548.28940000012517 ], [ 355353.234099999070168, 256548.764400001615286 ], [ 355359.666599996387959, 256550.927999999374151 ], [ 355363.653200000524521, 256556.238000001758337 ], [ 355360.028800003230572, 256603.071100000292063 ], [ 355356.773000001907349, 256606.633000001311302 ], [ 355352.725199997425079, 256608.499699998646975 ], [ 355339.01969999819994, 256608.176500000059605 ], [ 355339.953699998557568, 256593.19649999961257 ] ], [ [ 354800.619499996304512, 256673.008600000292063 ], [ 354802.440700002014637, 256648.536699999123812 ], [ 354816.952500000596046, 256648.866500001400709 ], [ 354820.079999998211861, 256565.7212999984622 ], [ 354965.965000003576279, 256573.670299999415874 ], [ 354964.854800000786781, 256609.335999999195337 ], [ 354946.316799998283386, 256608.339899998158216 ], [ 354946.298799999058247, 256610.450699999928474 ], [ 354932.596900001168251, 256609.705200001597404 ], [ 354931.709600001573563, 256619.197200000286102 ], [ 354949.435900002717972, 256620.819899998605251 ], [ 354947.442100003361702, 256665.555399999022484 ], [ 354899.079499997198582, 256663.259799998253584 ], [ 354898.15089999884367, 256677.606499999761581 ], [ 354800.619499996304512, 256673.008600000292063 ] ], [ [ 355039.186899997293949, 256402.861600000411272 ], [ 355034.35980000346899, 256401.555500000715256 ], [ 355030.364200003445148, 256397.300900001078844 ], [ 355029.685599997639656, 256382.307700000703335 ], [ 355031.442100003361702, 256365.434599999338388 ], [ 355033.886200003325939, 256362.499299999326468 ], [ 355036.312299996614456, 256361.674800001084805 ], [ 355091.929899998009205, 256364.240899998694658 ], [ 355124.162600003182888, 256366.826799999922514 ], [ 355257.956500001251698, 256374.254599999636412 ], [ 355331.282399997115135, 256380.554299999028444 ], [ 355337.720299996435642, 256382.084600001573563 ], [ 355347.347499996423721, 256387.863000001758337 ], [ 355351.334100000560284, 256393.172899998724461 ], [ 355351.267599999904633, 256400.982799999415874 ], [ 355349.608199998736382, 256406.457699999213219 ], [ 355340.672200001776218, 256414.195000000298023 ], [ 355335.004699997603893, 256416.892799999564886 ], [ 355326.925399996340275, 256418.726599998772144 ], [ 355319.668600000441074, 256418.667199999094009 ], [ 355299.532300002872944, 256415.969200000166893 ], [ 355233.432700000703335, 256413.317299999296665 ], [ 355039.186899997293949, 256402.861600000411272 ] ], [ [ 354509.662600003182888, 256372.352099999785423 ], [ 354502.391400001943111, 256373.981300000101328 ], [ 354434.679099999368191, 256371.316199999302626 ], [ 354375.847099997103214, 256367.45719999819994 ], [ 354212.221400000154972, 256359.574099998921156 ], [ 354249.689400002360344, 256315.551100000739098 ], [ 354253.740699999034405, 256313.262200001627207 ], [ 354256.967799998819828, 256313.077500000596046 ], [ 354331.868500001728535, 256323.822999998927116 ], [ 354447.124499998986721, 256330.254799999296665 ], [ 354513.179099999368191, 256338.183699999004602 ], [ 354519.602700002491474, 256341.402699999511242 ], [ 354524.395599998533726, 256346.719200000166893 ], [ 354526.766000002622604, 256352.438200000673532 ], [ 354525.912900000810623, 256357.919599998742342 ], [ 354521.022900000214577, 256364.001299999654293 ], [ 354509.662600003182888, 256372.352099999785423 ] ], [ [ 354178.72919999808073, 256410.173500001430511 ], [ 354204.292099997401237, 256438.458200000226498 ], [ 354010.86879999935627, 256426.109299998730421 ], [ 354007.66330000013113, 256423.760999999940395 ], [ 354005.273100003600121, 256420.364000000059605 ], [ 354003.757600001990795, 256408.952500000596046 ], [ 354006.225100003182888, 256403.273200001567602 ], [ 354008.656599998474121, 256401.815400000661612 ], [ 354178.72919999808073, 256410.173500001430511 ] ], [ [ 354219.64469999819994, 256245.433200001716614 ], [ 354117.36710000038147, 256230.030699998140335 ], [ 354118.265100002288818, 256219.272199999541044 ], [ 354133.58330000191927, 256219.60869999974966 ], [ 354149.732900001108646, 256216.996700000017881 ], [ 354163.481600001454353, 256212.254000000655651 ], [ 354178.876999996602535, 256203.51410000026226 ], [ 354190.242700003087521, 256194.530099999159575 ], [ 354200.006599999964237, 256184.266399998217821 ], [ 354208.166799999773502, 256172.934200000017881 ], [ 354211.454999998211861, 256165.572799999266863 ], [ 354213.902699999511242, 256162.215300001204014 ], [ 354214.737800002098083, 256158.844700001180172 ], [ 354224.406300000846386, 256159.768199998885393 ], [ 354219.64469999819994, 256245.433200001716614 ] ], [ [ 354814.117499999701977, 256603.035999998450279 ], [ 354813.014499999582767, 256637.857400000095367 ], [ 354807.37389999628067, 256637.38910000026226 ], [ 354804.22240000218153, 256628.708399999886751 ], [ 354800.2195999994874, 256625.298200000077486 ], [ 354794.593400001525879, 256623.141199998557568 ], [ 354786.537399999797344, 256622.230900000780821 ], [ 354786.445699997246265, 256632.995900001376867 ], [ 354693.752199999988079, 256628.437600001692772 ], [ 354695.625500001013279, 256597.844300001859665 ], [ 354814.117499999701977, 256603.035999998450279 ] ], [ [ 353975.542099997401237, 256408.088300000876188 ], [ 353973.794600002467632, 256423.905999999493361 ], [ 353937.526699997484684, 256421.709399998188019 ], [ 353937.659800000488758, 256406.089499998837709 ], [ 353975.542099997401237, 256408.088300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201053100", "MAP": null, "PARCEL_NAM": "26", "ACRE": null, "LONGITUDE": -64.95981459, "LATITUDE": 18.33986633, "OBJECTID_1": 7707, "PARCEL_NO_": "105201053100", "Tax_Legal_": "CONTANT SECT-B 26 SOUTHSIDE QUARTER", "Name": "THE FAMILY RESOURCE CENTER INC", "Address": "2317 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89900, "Improved_V": 125200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.91362090199999, "SHAPE_Area": 1155.5951032299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355764.249899998307228, 256673.670499999076128 ], [ 355763.698899999260902, 256671.358600001782179 ], [ 355745.716099999845028, 256675.412000000476837 ], [ 355727.403300002217293, 256679.539700001478195 ], [ 355727.895700000226498, 256681.605599999427795 ], [ 355734.101700000464916, 256710.365100000053644 ], [ 355771.2837999984622, 256699.903599999845028 ], [ 355764.249899998307228, 256673.670499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202056500", "MAP": "G9-988-T67", "PARCEL_NAM": "6-33", "ACRE": "0.07", "LONGITUDE": -64.95214012, "LATITUDE": 18.33993618, "OBJECTID_1": 8364, "PARCEL_NO_": "105202056500", "Tax_Legal_": "CONTANT 6-33 7BA S S QTR", "Name": "PERCIVAL, MICHAEL V.", "Address": "PO BOX 303479", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.7292596769, "SHAPE_Area": 269.33255702600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356573.323499999940395, 256703.026399999856949 ], [ 356550.159100003540516, 256695.862199999392033 ], [ 356549.44539999961853, 256698.039900001138449 ], [ 356546.732500001788139, 256706.486999999731779 ], [ 356570.035199999809265, 256713.503800000995398 ], [ 356572.770900003612041, 256704.985800001770258 ], [ 356573.323499999940395, 256703.026399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201048100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96081063, "LATITUDE": 18.33975481, "OBJECTID_1": 7662, "PARCEL_NO_": "105201048100", "Tax_Legal_": "10N LINDBERG BAY SOUTHSIDE QUARTER", "Name": "JOSEPH, MYRTLE", "Address": "8757 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28400, "Improved_V": 90100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.38589667299999, "SHAPE_Area": 1306.85226098 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355657.843699999153614, 256669.633200000971556 ], [ 355658.705700002610683, 256663.0962999984622 ], [ 355659.623499996960163, 256650.015999998897314 ], [ 355658.838799998164177, 256647.476500000804663 ], [ 355640.218099996447563, 256656.190000001341105 ], [ 355623.163199998438358, 256670.404800001531839 ], [ 355619.916400000452995, 256672.911400001496077 ], [ 355621.478699997067451, 256678.834800001233816 ], [ 355632.021899998188019, 256671.743900001049042 ], [ 355632.524300001561642, 256707.422800000756979 ], [ 355654.359499998390675, 256700.002099998295307 ], [ 355654.380999997258186, 256697.469200000166893 ], [ 355657.843699999153614, 256669.633200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202057400", "MAP": "D9-605-T66", "PARCEL_NAM": "6-15", "ACRE": "0.07", "LONGITUDE": -64.95188703, "LATITUDE": 18.33987772, "OBJECTID_1": 8372, "PARCEL_NO_": "105202057400", "Tax_Legal_": "CONTANT 6-15 7BA S S QTR", "Name": "PERCIVAL, ANTHONIA & VONETA", "Address": "BOX 3479", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22100, "Improved_V": 77400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.841200268899996, "SHAPE_Area": 307.35325808800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356600.124499998986721, 256695.667500000447035 ], [ 356577.386900000274181, 256688.912799999117851 ], [ 356576.926600001752377, 256690.454300001263618 ], [ 356576.096900001168251, 256693.191799998283386 ], [ 356573.7550999969244, 256701.495799999684095 ], [ 356595.434799998998642, 256707.867300000041723 ], [ 356597.78999999910593, 256702.446299999952316 ], [ 356599.417000003159046, 256700.770899999886751 ], [ 356599.435000002384186, 256698.660100001841784 ], [ 356600.124499998986721, 256695.667500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95762647, "LATITUDE": 18.33982698, "OBJECTID_1": 8738, "PARCEL_NO_": "105204060100", "Tax_Legal_": "CONTANT 106A 7A SOUTHSIDE QTR", "Name": "BROWNE, MARTIN L", "Address": "1662 Calvin Cir", "City": "Kissimmee", "State": "Florida", "Zip": 34746, "Country": "United States", "Land_Value": 33600, "Improved_V": 32100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.94353048100001, "SHAPE_Area": 2195.76139139 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355934.376500003039837, 256675.696199998259544 ], [ 355931.134999997913837, 256677.569499999284744 ], [ 355974.43129999935627, 256706.632500000298023 ], [ 356017.98480000346899, 256705.511399999260902 ], [ 356019.644199997186661, 256700.036499999463558 ], [ 356021.407899998128414, 256682.319099999964237 ], [ 356023.065399996936321, 256677.055300001055002 ], [ 355985.931900002062321, 256681.817600000649691 ], [ 355956.252999998629093, 256663.420699998736382 ], [ 355934.376500003039837, 256675.696199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95391723, "LATITUDE": 18.33989569, "OBJECTID_1": 8628, "PARCEL_NO_": "105204033100", "Tax_Legal_": "CONTANT 9-12 7BA S S QTR", "Name": "DANIEL, PAUL & MARIA J", "Address": "PO Box 308338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27600, "Improved_V": 174600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.176455891800003, "SHAPE_Area": 329.18158679499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356389.75959999859333, 256700.954799998551607 ], [ 356359.231200002133846, 256687.61710000038147 ], [ 356355.118699997663498, 256697.082699999213219 ], [ 356385.65429999679327, 256709.5760000012815 ], [ 356389.75959999859333, 256700.954799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105201045000", "MAP": "F9-765-T61", "PARCEL_NAM": "13E", "ACRE": ".07", "LONGITUDE": -64.96312862000001, "LATITUDE": 18.33984901, "OBJECTID_1": 7628, "PARCEL_NO_": "105201045000", "Tax_Legal_": "LINDBERG BAY 13 SOUTHSIDE QTR", "Name": "HENDERSON, , I & JACKSON, J. & BERG. E, & OTHERS", "Address": "P O BOX 4547", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 724600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.465530136799998, "SHAPE_Area": 384.66850718199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355392.534500002861023, 256671.261399999260902 ], [ 355391.483599998056889, 256699.961599998176098 ], [ 355405.1908999979496, 256700.073699999600649 ], [ 355405.439099997282028, 256670.944899998605251 ], [ 355392.534500002861023, 256671.261399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96211422, "LATITUDE": 18.33978669, "OBJECTID_1": 8466, "PARCEL_NO_": "105203010100", "Tax_Legal_": "LINDBERG BAY 11A S S QTR", "Name": "RIX-SKI S INC.", "Address": "P.O. BOX 3623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 130700, "Improved_V": 27100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.027110631, "SHAPE_Area": 1098.3484594399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355490.152199998497963, 256665.727600000798702 ], [ 355490.674400001764297, 256699.084600001573563 ], [ 355521.339500002563, 256696.380300000309944 ], [ 355520.057700000703335, 256657.528599999845028 ], [ 355490.152199998497963, 256665.727600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204032900", "MAP": "D9-5723-T94", "PARCEL_NAM": "3D-A", "ACRE": null, "LONGITUDE": -64.95313458, "LATITUDE": 18.33984256, "OBJECTID_1": 8626, "PARCEL_NO_": "105204032900", "Tax_Legal_": "CONTANT 3D 7BA SOUTHSIDE QTR", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78400, "Improved_V": 226300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.309988822799994, "SHAPE_Area": 314.45868104900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356466.48870000243187, 256686.38399999961257 ], [ 356454.426399998366833, 256682.485599998384714 ], [ 356452.007500000298023, 256682.465799998492002 ], [ 356450.384099997580051, 256683.719099998474121 ], [ 356447.913000002503395, 256689.820599999278784 ], [ 356444.601400002837181, 256699.925999999046326 ], [ 356455.03490000218153, 256705.710900001227856 ], [ 356456.642200000584126, 256706.357299998402596 ], [ 356459.097099997103214, 256702.155600000172853 ], [ 356466.48870000243187, 256686.38399999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95032742, "LATITUDE": 18.33975986, "OBJECTID_1": 9198, "PARCEL_NO_": "105301060400", "Tax_Legal_": "CONTANT 111 SOUTHSIDE QTR", "Name": "WENNER, WINSTON,MURIENE ALLEN & PAULINE CORBITT", "Address": "PO Box 302093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56400, "Improved_V": 110300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.110603805, "SHAPE_Area": 769.67729350800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356740.008500002324581, 256667.513300001621246 ], [ 356739.835900001227856, 256687.776900000870228 ], [ 356745.478299997746944, 256688.034200001507998 ], [ 356744.510099999606609, 256707.024700000882149 ], [ 356750.143500000238419, 256708.33729999884963 ], [ 356755.787699997425079, 256708.383499998599291 ], [ 356762.252599999308586, 256706.747699998319149 ], [ 356760.963600002229214, 256668.740299999713898 ], [ 356752.104999996721745, 256667.401200000196695 ], [ 356740.008500002324581, 256667.513300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96149603000001, "LATITUDE": 18.33981531, "OBJECTID_1": 8468, "PARCEL_NO_": "105203010300", "Tax_Legal_": "LINDBERG BAY 10PB No.4A SOUTHSIDE QTR.", "Name": "ABBEY, GAVELYN & SAUNDERS, ROLAND", "Address": "PO Box 11722", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13100, "Improved_V": 79700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.266838677699994, "SHAPE_Area": 429.60415518999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355582.669600002467632, 256690.971599999815226 ], [ 355576.420500002801418, 256667.278000000864267 ], [ 355561.840300001204014, 256674.969200000166893 ], [ 355563.253300003707409, 256698.412099998444319 ], [ 355582.669600002467632, 256690.971599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95848466, "LATITUDE": 18.33965926, "OBJECTID_1": 8494, "PARCEL_NO_": "105203012900", "Tax_Legal_": "CONTANT 51 7A S S QTR", "Name": "BEVERHOUDT, CLEONE & C & C. SMITH", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 216400, "Improved_V": 34300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.25954877199999, "SHAPE_Area": 1762.0739653600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355911.237999998033047, 256646.798099998384714 ], [ 355903.306100003421307, 256631.323300000280142 ], [ 355881.354000002145767, 256652.464099999517202 ], [ 355860.217299997806549, 256672.556099999696016 ], [ 355875.422100000083447, 256686.190499998629093 ], [ 355892.228799998760223, 256701.104600001126528 ], [ 355906.011699996888638, 256692.351500000804663 ], [ 355904.440399996936321, 256687.483500000089407 ], [ 355903.866099998354912, 256660.247699998319149 ], [ 355906.351499997079372, 256652.457600001245737 ], [ 355911.237999998033047, 256646.798099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95942803, "LATITUDE": 18.33976571, "OBJECTID_1": 8486, "PARCEL_NO_": "105203012100", "Tax_Legal_": "CONTANT 28 7A S S QTR", "Name": "GREER, JOSEPH & KEITHROY ROBER", "Address": "PO Box 1618", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041618, "Country": "United States", "Land_Value": 120000, "Improved_V": 9800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.23372648, "SHAPE_Area": 1324.7544845299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355811.102399997413158, 256663.921399999409914 ], [ 355810.060599997639656, 256660.813299998641014 ], [ 355797.094700001180172, 256663.831199999898672 ], [ 355793.583700001239777, 256664.622600000351667 ], [ 355773.906800001859665, 256669.057799998670816 ], [ 355763.698899999260902, 256671.358600001782179 ], [ 355764.249899998307228, 256673.670499999076128 ], [ 355771.2837999984622, 256699.903599999845028 ], [ 355802.8091000020504, 256690.873500000685453 ], [ 355812.531599998474121, 256685.464699998497963 ], [ 355816.602700002491474, 256680.853900000452995 ], [ 355811.102399997413158, 256663.921399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204032900", "MAP": "D9-5723-T94", "PARCEL_NAM": "3D-B", "ACRE": null, "LONGITUDE": -64.95330246, "LATITUDE": 18.33984006, "OBJECTID_1": 8626, "PARCEL_NO_": "105204032900", "Tax_Legal_": "CONTANT 3D 7BA SOUTHSIDE QTR", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78400, "Improved_V": 226300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.269871765399998, "SHAPE_Area": 264.16080482299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356447.913000002503395, 256689.820599999278784 ], [ 356430.229900002479553, 256683.131999999284744 ], [ 356425.285899996757507, 256695.546000000089407 ], [ 356455.03490000218153, 256705.710900001227856 ], [ 356444.601400002837181, 256699.925999999046326 ], [ 356447.913000002503395, 256689.820599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95886903, "LATITUDE": 18.33975443, "OBJECTID_1": 8493, "PARCEL_NO_": "105203012800", "Tax_Legal_": "CONTANT 45 7A S S QTR", "Name": "GEORGE, ELMO", "Address": "PO Box 782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60800, "Improved_V": 33500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.71028506499999, "SHAPE_Area": 1156.30281648 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355860.217299997806549, 256672.556099999696016 ], [ 355835.406800001859665, 256650.610399998724461 ], [ 355828.753100000321865, 256674.409499999135733 ], [ 355847.078900001943111, 256700.312899999320507 ], [ 355859.188000001013279, 256698.723200000822544 ], [ 355875.422100000083447, 256686.190499998629093 ], [ 355860.217299997806549, 256672.556099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060300", "MAP": "F9-2347-T69", "PARCEL_NAM": "112A", "ACRE": ".079", "LONGITUDE": -64.95047977, "LATITUDE": 18.33985603, "OBJECTID_1": 9197, "PARCEL_NO_": "105301060300", "Tax_Legal_": "CONTANT 112A 7BB SOUTHSIDE QTR", "Name": "WENNER, WINSTON P. & FRANCIS", "Address": "PO BOX 304282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24500, "Improved_V": 49300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.627643537899999, "SHAPE_Area": 365.69162311999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356739.835900001227856, 256687.776900000870228 ], [ 356726.133900001645088, 256687.031500000506639 ], [ 356726.765799999237061, 256707.512699998915195 ], [ 356744.510099999606609, 256707.024700000882149 ], [ 356745.478299997746944, 256688.034200001507998 ], [ 356739.835900001227856, 256687.776900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203011300", "MAP": "D9-7670-T005", "PARCEL_NAM": "22", "ACRE": ".32", "LONGITUDE": -64.96052545000001, "LATITUDE": 18.33980108, "OBJECTID_1": 8478, "PARCEL_NO_": "105203011300", "Tax_Legal_": "22 REM. CONTANT NO. 7A SOUTHSIDE QUARTER", "Name": "VANBEVERHOUDT, IVAN", "Address": "PO Box 305045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91500, "Improved_V": 219200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.14095842099999, "SHAPE_Area": 1121.7774544199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355693.737999998033047, 256668.509100001305342 ], [ 355658.481299996376038, 256664.797899998724461 ], [ 355657.843699999153614, 256669.633200000971556 ], [ 355654.380999997258186, 256697.469200000166893 ], [ 355693.881399996578693, 256698.847899999469519 ], [ 355691.512800000607967, 256692.917899999767542 ], [ 355690.825099997222424, 256678.980099998414516 ], [ 355692.500699996948242, 256671.605599999427795 ], [ 355693.737999998033047, 256668.509100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202059500", "MAP": "G9-988-T67", "PARCEL_NAM": "6-34", "ACRE": "0.07", "LONGITUDE": -64.95210657, "LATITUDE": 18.33983319, "OBJECTID_1": 8392, "PARCEL_NO_": "105202059500", "Tax_Legal_": "CONTANT 6-34 7BA S S QTR", "Name": "PERCIVAL, MICHAEL V.", "Address": "PO BOX 303479", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.557009810300002, "SHAPE_Area": 308.00703218899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356576.926600001752377, 256690.454300001263618 ], [ 356554.258000001311302, 256683.915399998426437 ], [ 356553.584899999201298, 256685.408100001513958 ], [ 356550.761799998581409, 256694.022900000214577 ], [ 356550.492799997329712, 256694.843899998813868 ], [ 356550.159100003540516, 256695.862199999392033 ], [ 356573.323499999940395, 256703.026399999856949 ], [ 356573.478399999439716, 256702.477099999785423 ], [ 356573.916000001132488, 256700.925500001758337 ], [ 356576.096900001168251, 256693.191799998283386 ], [ 356576.926600001752377, 256690.454300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96177814000001, "LATITUDE": 18.33970911, "OBJECTID_1": 8467, "PARCEL_NO_": "105203010200", "Tax_Legal_": "LINDBERG BAY 11B S S QTR", "Name": "KHALIL, FARIS M. & AMAL A. (TRUSTEES)", "Address": "PO Box 301800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 215600, "Improved_V": 404600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.153672038, "SHAPE_Area": 1375.1035324699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355526.987300001084805, 256696.004299998283386 ], [ 355556.844200000166893, 256693.50450000166893 ], [ 355554.066699996590614, 256640.91950000077486 ], [ 355525.721699997782707, 256655.252900000661612 ], [ 355526.987300001084805, 256696.004299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204033000", "MAP": "D9-802-T69", "PARCEL_NAM": "9-11", "ACRE": null, "LONGITUDE": -64.95386873, "LATITUDE": 18.33979435, "OBJECTID_1": 8627, "PARCEL_NO_": "105204033000", "Tax_Legal_": "CONTANT 9-11 7BA S S QTR", "Name": "CRABB, ST CLAIR", "Address": "26A NORRE GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 246500, "Improved_V": 9800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.065996634300006, "SHAPE_Area": 493.856745907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356396.321599997580051, 256687.920699998736382 ], [ 356389.894500002264977, 256685.1239 ], [ 356364.992299996316433, 256673.943199999630451 ], [ 356359.231200002133846, 256687.61710000038147 ], [ 356389.75959999859333, 256700.954799998551607 ], [ 356393.866700001060963, 256692.122499998658895 ], [ 356396.321599997580051, 256687.920699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202059600", "MAP": "D9-605-T66", "PARCEL_NAM": "6-10", "ACRE": "0.07", "LONGITUDE": -64.95157105, "LATITUDE": 18.33978237, "OBJECTID_1": 8393, "PARCEL_NO_": "105202059600", "Tax_Legal_": "CONTANT 6-10 7BA S S QTR", "Name": "CARACCIOLO, SHANDA FAULKNER", "Address": "PO Box 303572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.391080727900004, "SHAPE_Area": 324.00070113300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356632.929700002074242, 256684.075199998915195 ], [ 356610.093199998140335, 256678.071800000965595 ], [ 356610.048299998044968, 256683.337099999189377 ], [ 356608.392499998211861, 256688.389800000935793 ], [ 356608.365699999034405, 256691.535799998790026 ], [ 356628.529700003564358, 256698.991500001400709 ], [ 356631.705600000917912, 256688.225000001490116 ], [ 356632.929700002074242, 256684.075199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204068500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95596703, "LATITUDE": 18.33973157, "OBJECTID_1": 8924, "PARCEL_NO_": "105204068500", "Tax_Legal_": "13-2-1 CONTANT ESTATE 7A SOUTHSIDE QUARTER", "Name": "CECIL FORBES SR LYNNETTE PENN FORBES JOINT LIV TRU", "Address": "PO Box 303682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105600, "Improved_V": 57900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.655274077, "SHAPE_Area": 781.76282340600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356151.967500001192093, 256690.77589999884367 ], [ 356155.98650000244379, 256692.286499999463558 ], [ 356164.022699996829033, 256695.518699999898672 ], [ 356168.844400003552437, 256697.458000000566244 ], [ 356168.946900002658367, 256685.426500000059605 ], [ 356170.654799997806549, 256674.252500001341105 ], [ 356172.303400002419949, 256670.044100001454353 ], [ 356162.654600001871586, 256666.798700001090765 ], [ 356153.821099996566772, 256662.504599999636412 ], [ 356145.748999997973442, 256663.493999999016523 ], [ 356136.697999998927116, 256684.740299999713898 ], [ 356151.967500001192093, 256690.77589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204061400", "MAP": "D9-3654-T86", "PARCEL_NAM": "13-1-4", "ACRE": null, "LONGITUDE": -64.95525992, "LATITUDE": 18.33954411, "OBJECTID_1": 8752, "PARCEL_NO_": "105204061400", "Tax_Legal_": "CONTANT 13-1-4 7A SOUTHSIDE QTR", "Name": "CECIL FORBES SR LYNNETTE PENN FORBES JOINT LIV TRU", "Address": "PO Box 303682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 368600, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.79986344000002, "SHAPE_Area": 4474.4947940499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356263.186499997973442, 256697.807900000363588 ], [ 356282.186599999666214, 256644.556800000369549 ], [ 356234.698700003325939, 256634.246700000017881 ], [ 356187.965000003576279, 256630.064500000327826 ], [ 356160.550300002098083, 256629.84010000154376 ], [ 356180.650600001215935, 256636.75959999859333 ], [ 356186.2804000005126, 256638.494500000029802 ], [ 356183.791299998760223, 256646.706700000911951 ], [ 356177.947599999606609, 256670.090300001204014 ], [ 356205.371200002729893, 256669.259300000965595 ], [ 356230.25, 256683.184000000357628 ], [ 356233.414099998772144, 256690.387099999934435 ], [ 356263.186499997973442, 256697.807900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96135802000001, "LATITUDE": 18.33974982, "OBJECTID_1": 8470, "PARCEL_NO_": "105203010500", "Tax_Legal_": "LINDBERG BAY 10PA 4A SOUTHSIDE QTR.", "Name": "GOTTLIEB, MARK A", "Address": "2-3 ESTATE CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9900, "Improved_V": 81300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.568237749000005, "SHAPE_Area": 346.54044467099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355595.61370000243187, 256686.011300001293421 ], [ 355588.572700001299381, 256660.622499998658895 ], [ 355576.420500002801418, 256667.278000000864267 ], [ 355582.669600002467632, 256690.971599999815226 ], [ 355595.61370000243187, 256686.011300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204021100", "MAP": "D9-605-T66", "PARCEL_NAM": "6-14", "ACRE": "0.07", "LONGITUDE": -64.95185186, "LATITUDE": 18.3397629, "OBJECTID_1": 8573, "PARCEL_NO_": "105204021100", "Tax_Legal_": "CONTANT 6-14 7A S S QTR", "Name": "PERCIVAL, VONETO", "Address": "BOX 3114", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 210100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.412649278800004, "SHAPE_Area": 317.43913311 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356602.807099997997284, 256681.446800000965595 ], [ 356581.076800003647804, 256676.556099999696016 ], [ 356577.386900000274181, 256688.912799999117851 ], [ 356600.124499998986721, 256695.667500000447035 ], [ 356602.784299999475479, 256684.122099999338388 ], [ 356602.807099997997284, 256681.446800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204032800", "MAP": "D9-802-T69", "PARCEL_NAM": "9-3", "ACRE": null, "LONGITUDE": -64.95345716, "LATITUDE": 18.33976928, "OBJECTID_1": 8625, "PARCEL_NO_": "105204032800", "Tax_Legal_": "CONTANT 9-3 7BA S S QTR", "Name": "MILLS, GEORGE & ADINA", "Address": "PO Box 305796", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22100, "Improved_V": 126300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.599732246599999, "SHAPE_Area": 266.20497032399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356431.869499996304512, 256679.978999998420477 ], [ 356415.788199998438358, 256674.570000000298023 ], [ 356415.768399998545647, 256676.8918999992311 ], [ 356410.826200000941753, 256689.094900000840425 ], [ 356412.420900002121925, 256691.218899998813868 ], [ 356425.285899996757507, 256695.546000000089407 ], [ 356430.229900002479553, 256683.131999999284744 ], [ 356431.869499996304512, 256679.978999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204023100", "MAP": "D9-1954-T82", "PARCEL_NAM": "10-3-A", "ACRE": "0.15", "LONGITUDE": -64.95256984, "LATITUDE": 18.33958988, "OBJECTID_1": 8587, "PARCEL_NO_": "105204023100", "Tax_Legal_": "CONTANT 10-3-A 7BA S S QTR", "Name": "TURNBULL, WILFRED & NANCY P. -CO-TRUSTEES", "Address": "P O BOX 4283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.463535888, "SHAPE_Area": 697.38171234699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356544.108199998736382, 256651.224800001829863 ], [ 356539.428599998354912, 256645.45160000026226 ], [ 356525.116400003433228, 256653.23200000077486 ], [ 356512.821400001645088, 256657.458500001579523 ], [ 356495.819799996912479, 256661.108500000089407 ], [ 356498.84910000115633, 256673.983300000429153 ], [ 356512.434399999678135, 256690.987900000065565 ], [ 356519.286799997091293, 256669.524000000208616 ], [ 356519.921800002455711, 256666.984000001102686 ], [ 356522.038400001823902, 256664.443999998271465 ], [ 356523.520099997520447, 256662.750599998980761 ], [ 356526.483400002121925, 256660.4222999997437 ], [ 356529.870099999010563, 256658.517299998551607 ], [ 356534.738499999046326, 256656.188999999314547 ], [ 356544.108199998736382, 256651.224800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95286329, "LATITUDE": 18.3397129, "OBJECTID_1": 8579, "PARCEL_NO_": "105204021800", "Tax_Legal_": "CONTANT 37 7BA SOUTHSIDE QTR", "Name": "NESBITT, D L. S & SHACKELTON, JOY", "Address": "PO Box 302934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24000, "Improved_V": 32600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.974700372200004, "SHAPE_Area": 444.19367572900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356497.211300000548363, 256676.925200000405312 ], [ 356485.061599999666214, 256664.182300001382828 ], [ 356481.891800001263618, 256664.662599999457598 ], [ 356478.914099998772144, 256667.448100000619888 ], [ 356471.421899996697903, 256685.794599998742342 ], [ 356475.33839999884367, 256688.778499998152256 ], [ 356484.153899997472763, 256695.183499999344349 ], [ 356497.211300000548363, 256676.925200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203011400", "MAP": null, "PARCEL_NAM": "25", "ACRE": null, "LONGITUDE": -64.96015655, "LATITUDE": 18.33969206, "OBJECTID_1": 8479, "PARCEL_NO_": "105203011400", "Tax_Legal_": "CONTANT 25 7A S S QTR", "Name": "CALLWOOD, AGNES, GAIL,CLIFFORD,EDGAR,LORING,LEON,EDNA JOSEPH", "Address": "25 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53700, "Improved_V": 98600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.90813269500001, "SHAPE_Area": 616.85394897100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355727.403300002217293, 256679.539700001478195 ], [ 355720.888899996876717, 256652.206199999898672 ], [ 355711.990699999034405, 256655.510899998247623 ], [ 355703.03490000218153, 256665.570099998265505 ], [ 355698.90259999781847, 256677.357500001788139 ], [ 355698.047799997031689, 256683.050000000745058 ], [ 355698.53830000013113, 256686.025299999862909 ], [ 355698.664399996399879, 256686.017400000244379 ], [ 355727.403300002217293, 256679.539700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95267014, "LATITUDE": 18.33973643, "OBJECTID_1": 8580, "PARCEL_NO_": "105204022000", "Tax_Legal_": "CONTANT ESTATE 7Ba SECTION 10-2 7BA S S QTR", "Name": "NANCY P & WILFRED TURNBULL TRUST", "Address": "P O BOX 4283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.252406956999998, "SHAPE_Area": 33.694162923500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356512.434399999678135, 256690.987900000065565 ], [ 356498.84910000115633, 256673.983300000429153 ], [ 356499.610500000417233, 256679.2668999992311 ], [ 356512.269500002264977, 256691.504399999976158 ], [ 356512.434399999678135, 256690.987900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96124397, "LATITUDE": 18.33969512, "OBJECTID_1": 8472, "PARCEL_NO_": "105203010700", "Tax_Legal_": "10P LINDBERG BAY SOUTHSIDE QUARTER", "Name": "PETERSEN, HUGO & OTHERS", "Address": "2306 Hills St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87300, "Improved_V": 133700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.425480887000006, "SHAPE_Area": 344.24483145099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355607.764200001955032, 256679.566899999976158 ], [ 355599.91499999910593, 256654.382500000298023 ], [ 355588.572700001299381, 256660.622499998658895 ], [ 355595.61370000243187, 256686.011300001293421 ], [ 355607.764200001955032, 256679.566899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204021300", "MAP": "G9-988-T67", "PARCEL_NAM": "6-35", "ACRE": "0.07", "LONGITUDE": -64.95205466, "LATITUDE": 18.33970411, "OBJECTID_1": 8575, "PARCEL_NO_": "105204021300", "Tax_Legal_": "CONTANT 6-35&6-39 7AA S S QTR", "Name": "GEORGE, RUPERT & ELINORA", "Address": "BOX 2441", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29400, "Improved_V": 417200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.561539462200003, "SHAPE_Area": 390.80139553399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356554.258000001311302, 256683.915399998426437 ], [ 356576.926600001752377, 256690.454300001263618 ], [ 356581.076800003647804, 256676.556099999696016 ], [ 356578.028399996459484, 256667.849399998784065 ], [ 356564.99549999833107, 256671.147199999541044 ], [ 356561.763099998235703, 256671.96510000154376 ], [ 356558.51630000025034, 256674.471599999815226 ], [ 356554.258000001311302, 256683.915399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96802458000001, "LATITUDE": 18.3392972, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 570.98848075399997, "SHAPE_Area": 14142.776936 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354820.105899997055531, 256565.673700001090765 ], [ 354816.978399999439716, 256648.818900000303984 ], [ 354802.466600000858307, 256648.489100001752377 ], [ 354800.645400002598763, 256672.960999999195337 ], [ 354898.17679999768734, 256677.558899998664856 ], [ 354899.105400003492832, 256663.212200000882149 ], [ 354947.468000002205372, 256665.507800001651049 ], [ 354949.461800001561642, 256620.772300001233816 ], [ 354931.735500000417233, 256619.149599999189377 ], [ 354932.622800000011921, 256609.657600000500679 ], [ 354946.324699997901917, 256610.403099998831749 ], [ 354946.342699997127056, 256608.292300000786781 ], [ 354964.880699999630451, 256609.288400001823902 ], [ 354965.990900002419949, 256573.622699998319149 ], [ 354820.105899997055531, 256565.673700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204032900", "MAP": "D9-5723-T94", "PARCEL_NAM": "3D-C", "ACRE": null, "LONGITUDE": -64.95324958, "LATITUDE": 18.33971205, "OBJECTID_1": 8626, "PARCEL_NO_": "105204032900", "Tax_Legal_": "CONTANT 3D 7BA SOUTHSIDE QTR", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78400, "Improved_V": 226300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.364618882499997, "SHAPE_Area": 326.03209662799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356456.094800002872944, 256675.955400001257658 ], [ 356444.043300002813339, 256670.790500000119209 ], [ 356436.811599999666214, 256667.776000000536442 ], [ 356431.869499996304512, 256679.978999998420477 ], [ 356430.229900002479553, 256683.131999999284744 ], [ 356447.913000002503395, 256689.820599999278784 ], [ 356450.384099997580051, 256683.719099998474121 ], [ 356452.007500000298023, 256682.465799998492002 ], [ 356454.426399998366833, 256682.485599998384714 ], [ 356456.094800002872944, 256675.955400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204032600", "MAP": "D9-802-T69", "PARCEL_NAM": "9-7", "ACRE": null, "LONGITUDE": -64.95363845, "LATITUDE": 18.3397074, "OBJECTID_1": 8624, "PARCEL_NO_": "105204032600", "Tax_Legal_": "CONTANT 9-7 7BA S S QTR", "Name": "EDDY, NAOMI", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 264700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.981463172600002, "SHAPE_Area": 356.838842527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356398.93469999730587, 256665.144000001251698 ], [ 356395.660899996757507, 256670.816700000315905 ], [ 356389.894500002264977, 256685.1239 ], [ 356396.321599997580051, 256687.920699998736382 ], [ 356404.377499997615814, 256688.831000000238419 ], [ 356407.611699998378754, 256687.802000001072884 ], [ 356413.369199998676777, 256674.550200000405312 ], [ 356412.586300000548363, 256671.799600001424551 ], [ 356398.93469999730587, 256665.144000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204020900", "MAP": "D9-605-T66", "PARCEL_NAM": "6-11", "ACRE": "0.08", "LONGITUDE": -64.95155197, "LATITUDE": 18.33964463, "OBJECTID_1": 8572, "PARCEL_NO_": "105204020900", "Tax_Legal_": "CONTANT 6-11 7BA SOUTHSIDE QTR", "Name": "GEORGE, RUPERT & E", "Address": "P O BOX 2441", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 285700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.978208818400006, "SHAPE_Area": 396.46364736599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356630.068099997937679, 256666.390500001609325 ], [ 356610.225500002503395, 256662.537599999457598 ], [ 356610.201200000941753, 256665.395399998873472 ], [ 356610.093199998140335, 256678.071800000965595 ], [ 356632.929700002074242, 256684.075199998915195 ], [ 356635.760300002992153, 256667.495799999684095 ], [ 356630.068099997937679, 256666.390500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203011600", "MAP": "F9-3205-T74", "PARCEL_NAM": "27A", "ACRE": "6,326 sq ft", "LONGITUDE": -64.9597921, "LATITUDE": 18.33958795, "OBJECTID_1": 8481, "PARCEL_NO_": "105203011600", "Tax_Legal_": "27 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "DENYS, JOSEPH A.", "Address": "9016 Westmore Rd", "City": "San Diego", "State": "California", "Zip": 92126, "Country": "United States", "Land_Value": 96000, "Improved_V": 99900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.912474445399994, "SHAPE_Area": 512.56874742599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355763.698899999260902, 256671.358600001782179 ], [ 355757.243100002408028, 256644.271099999547005 ], [ 355739.748199999332428, 256647.129299998283386 ], [ 355745.716099999845028, 256675.412000000476837 ], [ 355763.698899999260902, 256671.358600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204067900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95614641, "LATITUDE": 18.3395045, "OBJECTID_1": 8918, "PARCEL_NO_": "105204067900", "Tax_Legal_": "CONTANT 13-2 7A S S QTR", "Name": "CECIL FORBES SR LYNNETTE PENN FORBES JOINT LIV TRU", "Address": "PO Box 303682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 240900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.12796642500001, "SHAPE_Area": 2767.2326248700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356179.78320000320673, 256643.929699998348951 ], [ 356158.077500000596046, 256636.152699999511242 ], [ 356122.707599997520447, 256623.197599999606609 ], [ 356109.61599999666214, 256645.466400001198053 ], [ 356098.122599996626377, 256669.436999998986721 ], [ 356136.697999998927116, 256684.740299999713898 ], [ 356145.748999997973442, 256663.493999999016523 ], [ 356153.821099996566772, 256662.504599999636412 ], [ 356162.654600001871586, 256666.798700001090765 ], [ 356172.303400002419949, 256670.044100001454353 ], [ 356174.000500001013279, 256660.136599998921156 ], [ 356179.78320000320673, 256643.929699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96111651, "LATITUDE": 18.33963788, "OBJECTID_1": 8473, "PARCEL_NO_": "105203010800", "Tax_Legal_": "4DA LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "SCOTLAND, CLETUS", "Address": "4DB Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.081030685000002, "SHAPE_Area": 408.83813932700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355623.163199998438358, 256670.404800001531839 ], [ 355616.075400002300739, 256650.504000000655651 ], [ 355599.91499999910593, 256654.382500000298023 ], [ 355607.764200001955032, 256679.566899999976158 ], [ 355619.916400000452995, 256672.911400001496077 ], [ 355623.163199998438358, 256670.404800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95916425, "LATITUDE": 18.33948328, "OBJECTID_1": 8491, "PARCEL_NO_": "105203012600", "Tax_Legal_": "CONTANT 30 7A S S QTR", "Name": "ONEAL, L C & R", "Address": "1665 SW Hordon Rd", "City": "Port Saint Lucie", "State": "Florida", "Zip": 34953, "Country": "United States", "Land_Value": 89100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.35410442, "SHAPE_Area": 855.88534114499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355801.665799997746944, 256635.768800001591444 ], [ 355811.102399997413158, 256663.921399999409914 ], [ 355816.602700002491474, 256680.853900000452995 ], [ 355819.045000001788139, 256678.129700001329184 ], [ 355833.131700001657009, 256633.704300001263618 ], [ 355832.361400000751019, 256629.476100001484156 ], [ 355829.954999998211861, 256627.978700000792742 ], [ 355826.728000000119209, 256628.163400001823902 ], [ 355812.169399999082088, 256633.321600001305342 ], [ 355801.665799997746944, 256635.768800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9575248, "LATITUDE": 18.33965049, "OBJECTID_1": 8740, "PARCEL_NO_": "105204060300", "Tax_Legal_": "CONTANT 106B 7A SOUTHSIDE QTR", "Name": "RACHID, ALI & ABEER", "Address": "PO BOX 304042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 219000, "Improved_V": 41600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.41841837000001, "SHAPE_Area": 1117.6637002800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356026.364399999380112, 256668.427499998360872 ], [ 355974.078199997544289, 256653.434099998325109 ], [ 355956.252999998629093, 256663.420699998736382 ], [ 355985.931900002062321, 256681.817600000649691 ], [ 356023.065399996936321, 256677.055300001055002 ], [ 356026.364399999380112, 256668.427499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95384231, "LATITUDE": 18.33965839, "OBJECTID_1": 8630, "PARCEL_NO_": "105204033300", "Tax_Legal_": "9-10 CONTANT 7BA SOUTHSIDE QTR", "Name": "SMITH, VIVIAN A. & MERVIN & KATHRYN E. MEYERS", "Address": "PO Box 11714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26600, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.886101201499997, "SHAPE_Area": 414.28463054100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356395.660899996757507, 256670.816700000315905 ], [ 356370.7550999969244, 256660.058200001716614 ], [ 356364.992299996316433, 256673.943199999630451 ], [ 356389.894500002264977, 256685.1239 ], [ 356395.660899996757507, 256670.816700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95050447, "LATITUDE": 18.33967893, "OBJECTID_1": 8585, "PARCEL_NO_": "105204022700", "Tax_Legal_": "CONTANT 112 SOUTHSIDE QTR", "Name": "WENNER, WINSTON,MURIENE ALLEN & PAULINE CORBITT", "Address": "PO Box 302093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.507403851099994, "SHAPE_Area": 267.652631257 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356740.008500002324581, 256667.513300001621246 ], [ 356726.293999999761581, 256668.245400000363588 ], [ 356726.133900001645088, 256687.031500000506639 ], [ 356739.835900001227856, 256687.776900000870228 ], [ 356740.008500002324581, 256667.513300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204020800", "MAP": "G9-299-T54", "PARCEL_NAM": "8B", "ACRE": "0.17", "LONGITUDE": -64.95126926, "LATITUDE": 18.33958635, "OBJECTID_1": 8571, "PARCEL_NO_": "105204020800", "Tax_Legal_": "CONTANT 8A 7BA SOUTHSIDE QTR", "Name": "RIVERA, VICTOR", "Address": "PO Box 713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49300, "Improved_V": 40900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.160861177, "SHAPE_Area": 845.91642931299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356665.998599998652935, 256646.853700000792742 ], [ 356665.880699999630451, 256645.938799999654293 ], [ 356658.663199998438358, 256649.82490000128746 ], [ 356653.218299999833107, 256652.756599999964237 ], [ 356648.742600001394749, 256655.166400000452995 ], [ 356637.218500003218651, 256661.371300000697374 ], [ 356635.953299999237061, 256666.685300000011921 ], [ 356635.760300002992153, 256667.495799999684095 ], [ 356632.929700002074242, 256684.075199998915195 ], [ 356646.406000003218651, 256680.640099998563528 ], [ 356670.067299999296665, 256674.60869999974966 ], [ 356670.264700002968311, 256674.558400001376867 ], [ 356669.6875, 256671.156300000846386 ], [ 356666.68639999628067, 256653.468299999833107 ], [ 356666.271999999880791, 256649.483300000429153 ], [ 356665.998599998652935, 256646.853700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96695757000001, "LATITUDE": 18.33637573, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 5059.8656817399997, "SHAPE_Area": 152151.56916899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354414.139399997889996, 255756.395799998193979 ], [ 354453.315999999642372, 255795.768800001591444 ], [ 354520.247100003063679, 255795.472199998795986 ], [ 354513.4070999994874, 255935.793400000780821 ], [ 354294.822400003671646, 256132.010200001299381 ], [ 354289.983400002121925, 256226.751600001007318 ], [ 354552.742399998009205, 256240.512299999594688 ], [ 354573.517700001597404, 256262.847100000828505 ], [ 354590.441299997270107, 256264.04109999909997 ], [ 354590.329800002276897, 256277.127999998629093 ], [ 354588.539200000464916, 256298.011599998921156 ], [ 354671.548000000417233, 256303.546100001782179 ], [ 354914.95719999819994, 256316.937399998307228 ], [ 355352.623099997639656, 256339.517900001257658 ], [ 355364.697999998927116, 256341.938700001686811 ], [ 355375.135099999606609, 256347.301500000059605 ], [ 355386.342500001192093, 256356.892400000244379 ], [ 355391.914800003170967, 256365.381799999624491 ], [ 355396.639399997889996, 256378.719399999827147 ], [ 355398.169299997389317, 256388.442200001329184 ], [ 355397.897799998521805, 256420.315099999308586 ], [ 355449.469400003552437, 256424.536899998784065 ], [ 355445.724500000476837, 256485.512299999594688 ], [ 355384.469899997115135, 256482.055599998682737 ], [ 355383.390299998223782, 256514.133000001311302 ], [ 355378.554200001060963, 256513.88230000063777 ], [ 355372.953900001943111, 256603.34010000154376 ], [ 355376.940499998629093, 256608.650100000202656 ], [ 355380.957699999213219, 256610.371700000017881 ], [ 355385.79730000346899, 256610.200300000607967 ], [ 355389.031599998474121, 256609.171300001442432 ], [ 355389.953000001609325, 256595.668800000101328 ], [ 355449.598499998450279, 256598.690099999308586 ], [ 355447.635300002992153, 256639.83729999884963 ], [ 355398.466399997472763, 256637.535000000149012 ], [ 355397.494599997997284, 256656.947700001299381 ], [ 355379.746799997985363, 256657.857900001108646 ], [ 355379.798900000751019, 256651.736600000411272 ], [ 355310.420100003480911, 256655.390599999576807 ], [ 355304.786700002849102, 256654.078000001609325 ], [ 355151.519000001251698, 256660.845100000500679 ], [ 355153.023699998855591, 256673.522999998182058 ], [ 355386.159500002861023, 256662.343299999833107 ], [ 355466.841099999845028, 256657.092999998480082 ], [ 355485.407899998128414, 256654.711899999529123 ], [ 355502.378200002014637, 256650.41780000180006 ], [ 355521.788999997079372, 256643.610599998384714 ], [ 355593.870899997651577, 256606.625900000333786 ], [ 355602.805100001394749, 256599.099700000137091 ], [ 355615.04900000244379, 256581.679099999368191 ], [ 355629.697499997913837, 256565.967000000178814 ], [ 355646.747000001370907, 256552.385400000959635 ], [ 355636.624499998986721, 256510.08390000090003 ], [ 355608.516199998557568, 256401.984999999403954 ], [ 355579.187899999320507, 256342.427700001746416 ], [ 355516.365599997341633, 256333.680900000035763 ], [ 355439.056800000369549, 256321.649099998176098 ], [ 355384.274300001561642, 256315.71229999884963 ], [ 354820.883000001311302, 256285.136700000613928 ], [ 354798.295500002801418, 256286.218400001525879 ], [ 354766.847499996423721, 256286.172100000083447 ], [ 354725.739900000393391, 256284.146899998188019 ], [ 354651.571800000965595, 256282.062199998646975 ], [ 354631.433799996972084, 256279.575300000607967 ], [ 354618.583099998533726, 256273.559599999338388 ], [ 354608.169399999082088, 256265.452799998223782 ], [ 354601.785400003194809, 256257.59010000154376 ], [ 354597.04280000180006, 256246.363299999386072 ], [ 354594.724600002169609, 256234.52309999987483 ], [ 354528.417400002479553, 256161.575300000607967 ], [ 354541.957099996507168, 255897.396999999880791 ], [ 354542.027300000190735, 255889.164900001138449 ], [ 354585.907999999821186, 255849.627399999648333 ], [ 354586.0050999969244, 255838.229100000113249 ], [ 354549.128700003027916, 255812.807100001722574 ], [ 354551.583599999547005, 255808.605399999767542 ], [ 354535.811599999666214, 255766.890900000929832 ], [ 354534.24040000140667, 255762.022799998521805 ], [ 354528.630300000309944, 255757.966099999845028 ], [ 354522.194200001657009, 255756.224700000137091 ], [ 354414.139399997889996, 255756.395799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204022200", "MAP": "D9-605-T66", "PARCEL_NAM": "6-13", "ACRE": "0.07", "LONGITUDE": -64.95183247, "LATITUDE": 18.33963476, "OBJECTID_1": 8582, "PARCEL_NO_": "105204022200", "Tax_Legal_": "CONTANT 6-13 7BA S S QTR", "Name": "RUPERT GEORGE CONST INC", "Address": "BOX 2441", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 268500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.6827388759, "SHAPE_Area": 338.71718858100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356581.076800003647804, 256676.556099999696016 ], [ 356602.807099997997284, 256681.446800000965595 ], [ 356602.816699996590614, 256680.322599999606609 ], [ 356603.75789999961853, 256664.4983000010252 ], [ 356600.552400000393391, 256662.150100000202656 ], [ 356578.028399996459484, 256667.849399998784065 ], [ 356581.076800003647804, 256676.556099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96153035, "LATITUDE": 18.33954107, "OBJECTID_1": 8469, "PARCEL_NO_": "105203010400", "Tax_Legal_": "LINDBERG 10Q S S QTR", "Name": "NEWTON, VALERIA", "Address": "4215 Annas Retreat N0.242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10900, "Improved_V": 106800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.426635983, "SHAPE_Area": 537.93990836 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355561.840300001204014, 256674.969200000166893 ], [ 355576.420500002801418, 256667.278000000864267 ], [ 355573.50450000166893, 256630.946100000292063 ], [ 355559.736100003123283, 256638.010600000619888 ], [ 355561.840300001204014, 256674.969200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204033900", "MAP": "D9-4610-T88", "PARCEL_NAM": "3CG", "ACRE": null, "LONGITUDE": -64.95309945, "LATITUDE": 18.33960227, "OBJECTID_1": 8636, "PARCEL_NO_": "105204033900", "Tax_Legal_": "CONTANT 3CG SOUTHSIDE QTR. 7BA", "Name": "AUBAIN, MAY C", "Address": "PO Box 306104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036104, "Country": "United States", "Land_Value": 44600, "Improved_V": 124400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.108678514900006, "SHAPE_Area": 525.73038628699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356452.251999996602535, 256653.759100001305342 ], [ 356449.875500001013279, 256652.779199998825788 ], [ 356442.506499998271465, 256670.149999998509884 ], [ 356444.043300002813339, 256670.790500000119209 ], [ 356456.094800002872944, 256675.955400001257658 ], [ 356468.144500002264977, 256681.331399999558926 ], [ 356473.439000003039837, 256667.928399998694658 ], [ 356474.749700002372265, 256663.2314000017941 ], [ 356452.251999996602535, 256653.759100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204033200", "MAP": "D9-802-T69", "PARCEL_NAM": "9-4", "ACRE": null, "LONGITUDE": -64.95342491, "LATITUDE": 18.33961201, "OBJECTID_1": 8629, "PARCEL_NO_": "105204033200", "Tax_Legal_": "CONTANT 9-4 7BA S S QTR", "Name": "JOSEPH, V & W", "Address": "72 Brook Rd --", "City": "England", "State": null, "Zip": 0, "Country": "United States", "Land_Value": 25300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.844572123399999, "SHAPE_Area": 351.22202220200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356432.794399999082088, 256666.054400000721216 ], [ 356431.197999998927116, 256664.141499999910593 ], [ 356424.808600001037121, 256656.912000000476837 ], [ 356420.820200003683567, 256651.813099998980761 ], [ 356413.430399999022484, 256667.373599998652935 ], [ 356416.625, 256670.988299999386072 ], [ 356415.788199998438358, 256674.570000000298023 ], [ 356431.869499996304512, 256679.978999998420477 ], [ 356436.811599999666214, 256667.776000000536442 ], [ 356432.794399999082088, 256666.054400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204060200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95796393000001, "LATITUDE": 18.339508, "OBJECTID_1": 8739, "PARCEL_NO_": "105204060200", "Tax_Legal_": "52 CONTANT NO.7A SOUTHSIDE QTR", "Name": "CHINNERY, WALTER E", "Address": "P.O. BOX 1981, V.D.S", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104200, "Improved_V": 57300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.84597352, "SHAPE_Area": 1284.47023532 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355974.078199997544289, 256653.434099998325109 ], [ 355950.082999996840954, 256630.439599998295307 ], [ 355919.29389999806881, 256647.708399999886751 ], [ 355934.376500003039837, 256675.696199998259544 ], [ 355956.252999998629093, 256663.420699998736382 ], [ 355974.078199997544289, 256653.434099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95965498, "LATITUDE": 18.33955619, "OBJECTID_1": 8516, "PARCEL_NO_": "105203015400", "Tax_Legal_": "CONTANT 29 7A S S QTR", "Name": "FAIRLEY, JUANITA", "Address": "PO Box 7962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25300, "Improved_V": 138200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.380470148100002, "SHAPE_Area": 320.78077781500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355773.906800001859665, 256669.057799998670816 ], [ 355771.097199998795986, 256649.946199998259544 ], [ 355769.952600002288818, 256642.160199999809265 ], [ 355757.243100002408028, 256644.271099999547005 ], [ 355763.698899999260902, 256671.358600001782179 ], [ 355773.906800001859665, 256669.057799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95880195, "LATITUDE": 18.33947348, "OBJECTID_1": 8495, "PARCEL_NO_": "105203013000", "Tax_Legal_": "46 ESTATE CONTANT(SECTION B) 7A SOUTHSIDE QTR.", "Name": "TURNBULL, LOUISA A. -LIFE ESTATE", "Address": "8240 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.45660008499999, "SHAPE_Area": 1220.89906995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355881.354000002145767, 256652.464099999517202 ], [ 355849.367700003087521, 256620.960400000214577 ], [ 355846.115500003099442, 256624.10020000115037 ], [ 355842.028099998831749, 256630.610700000077486 ], [ 355835.406800001859665, 256650.610399998724461 ], [ 355860.217299997806549, 256672.556099999696016 ], [ 355881.354000002145767, 256652.464099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203011000", "MAP": "B3-171-T56", "PARCEL_NAM": "4D", "ACRE": null, "LONGITUDE": -64.96091099, "LATITUDE": 18.33930928, "OBJECTID_1": 8474, "PARCEL_NO_": "105203011000", "Tax_Legal_": "4D&4DB LINDBERG BAY SOUTHSIDE QTR", "Name": "PRINCE, FRANK & ELLEN & OTHER", "Address": "4215 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 329000, "Improved_V": 179900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.42752426600001, "SHAPE_Area": 2384.77652971 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355658.838799998164177, 256647.476500000804663 ], [ 355648.671400003135204, 256610.451900001615286 ], [ 355642.434900000691414, 256585.280699998140335 ], [ 355624.586300000548363, 256598.011399999260902 ], [ 355609.156700000166893, 256610.761799998581409 ], [ 355620.924099996685982, 256649.277100000530481 ], [ 355616.075400002300739, 256650.504000000655651 ], [ 355623.163199998438358, 256670.404800001531839 ], [ 355640.218099996447563, 256656.190000001341105 ], [ 355658.838799998164177, 256647.476500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96585617, "LATITUDE": 18.33954441, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.34298190300001, "SHAPE_Area": 2092.3586227400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355070.851800002157688, 256664.406700000166893 ], [ 355151.519000001251698, 256660.845100000500679 ], [ 355150.129299998283386, 256634.658100001513958 ], [ 355069.456699997186661, 256638.853000000119209 ], [ 355070.851800002157688, 256664.406700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204020700", "MAP": "G9-282-T53", "PARCEL_NAM": "8A", "ACRE": ".13", "LONGITUDE": -64.95101965000001, "LATITUDE": 18.33948068, "OBJECTID_1": 8570, "PARCEL_NO_": "105204020700", "Tax_Legal_": "CONTANT 8B 7BA SOUTHSIDE QTR", "Name": "EDDIE FREEMAN REVOCBLE TRUST", "Address": "PO BOX 3479", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69000, "Improved_V": 74600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.297869257, "SHAPE_Area": 713.59484176199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356689.10080000013113, 256640.142299998551607 ], [ 356688.989399999380112, 256633.496500000357628 ], [ 356667.222800001502037, 256645.2162000015378 ], [ 356665.880699999630451, 256645.938799999654293 ], [ 356665.998599998652935, 256646.853700000792742 ], [ 356666.271999999880791, 256649.483300000429153 ], [ 356666.68639999628067, 256653.468299999833107 ], [ 356669.6875, 256671.156300000846386 ], [ 356670.264700002968311, 256674.558400001376867 ], [ 356689.595200002193451, 256669.631000000983477 ], [ 356689.202799998223782, 256646.227299999445677 ], [ 356689.10080000013113, 256640.142299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96137129, "LATITUDE": 18.33947049, "OBJECTID_1": 8471, "PARCEL_NO_": "105203010600", "Tax_Legal_": "LINDBERG 10 S S QTR", "Name": "PRINCE, ELLEN", "Address": "4215 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65300, "Improved_V": 35800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.033934272, "SHAPE_Area": 718.18999481799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355599.91499999910593, 256654.382500000298023 ], [ 355588.084700003266335, 256623.254900000989437 ], [ 355573.50450000166893, 256630.946100000292063 ], [ 355576.420500002801418, 256667.278000000864267 ], [ 355588.572700001299381, 256660.622499998658895 ], [ 355599.91499999910593, 256654.382500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203015200", "MAP": "G9-1061-T68", "PARCEL_NAM": "29Ba", "ACRE": "0.07", "LONGITUDE": -64.95932444, "LATITUDE": 18.33950338, "OBJECTID_1": 8514, "PARCEL_NO_": "105203015200", "Tax_Legal_": "CONTANT 29B,C & D 7A S S QTR", "Name": "RAMOS, CARLTON & JOSE", "Address": "PO Box 304871", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 175500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.647924495599995, "SHAPE_Area": 272.79074497400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355810.060599997639656, 256660.813299998641014 ], [ 355801.665799997746944, 256635.768800001591444 ], [ 355794.41669999808073, 256637.498100001364946 ], [ 355797.094700001180172, 256663.831199999898672 ], [ 355810.060599997639656, 256660.813299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204060500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95730024, "LATITUDE": 18.33946305, "OBJECTID_1": 8742, "PARCEL_NO_": "105204060500", "Tax_Legal_": "107A CONTANT 7A SOUTHSIDE QTR.", "Name": "CLARK, LILLIAN", "Address": "8500 Michael J Kirwan Ter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.78334733299999, "SHAPE_Area": 1537.8225246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356046.003600001335144, 256634.813200000673532 ], [ 356019.451099999248981, 256628.052000001072884 ], [ 356011.348399996757507, 256632.629799999296665 ], [ 355974.078199997544289, 256653.434099998325109 ], [ 356026.364399999380112, 256668.427499998360872 ], [ 356036.164200000464916, 256653.942200001329184 ], [ 356046.003600001335144, 256634.813200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95378596, "LATITUDE": 18.3395307, "OBJECTID_1": 8631, "PARCEL_NO_": "105204033400", "Tax_Legal_": "CONTANT 9-9 7BA SOUTHSIDE QTR", "Name": "BRIDGEMAN, THE ESTATE OF JUDY & OSCAR,MYRTLE AND OTHERS", "Address": "PO Box 130", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040130, "Country": "United States", "Land_Value": 24500, "Improved_V": 49400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.8363966366, "SHAPE_Area": 426.45541726499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356399.764399997889996, 256662.406599998474121 ], [ 356402.231899999082088, 256656.727200001478195 ], [ 356376.519799999892712, 256645.962099999189377 ], [ 356370.7550999969244, 256660.058200001716614 ], [ 356395.660899996757507, 256670.816700000315905 ], [ 356398.93469999730587, 256665.144000001251698 ], [ 356399.764399997889996, 256662.406599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204033800", "MAP": "F9-2822-T71", "PARCEL_NAM": "3CD", "ACRE": null, "LONGITUDE": -64.95330661, "LATITUDE": 18.33951472, "OBJECTID_1": 8635, "PARCEL_NO_": "105204033800", "Tax_Legal_": "CONTANT 3CD & 3CF SOUTHSIDE QTR. 7BA", "Name": "GEORGE, JR. , ELTON A", "Address": "PO Box 502482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37900, "Improved_V": 46700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.966640688400005, "SHAPE_Area": 370.91385871799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356441.805900000035763, 256649.451799999922514 ], [ 356430.557099997997284, 256644.715599998831749 ], [ 356424.808600001037121, 256656.912000000476837 ], [ 356431.197999998927116, 256664.141499999910593 ], [ 356432.794399999082088, 256666.054400000721216 ], [ 356436.811599999666214, 256667.776000000536442 ], [ 356442.506499998271465, 256670.149999998509884 ], [ 356449.875500001013279, 256652.779199998825788 ], [ 356441.805900000035763, 256649.451799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204060600", "MAP": "D9-1501-T79", "PARCEL_NAM": "111 Aa", "ACRE": "0.21", "LONGITUDE": -64.95689711, "LATITUDE": 18.33952553, "OBJECTID_1": 8743, "PARCEL_NO_": "105204060600", "Tax_Legal_": "CONTANT 111A & 111Aa 7A SOUTHSIDE QTR", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 134000, "Improved_V": 529900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.613172021, "SHAPE_Area": 865.19069431299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356074.92339999973774, 256645.99549999833107 ], [ 356065.672600001096725, 256631.904899999499321 ], [ 356057.273999996483326, 256637.016399998217821 ], [ 356054.021799996495247, 256640.156199999153614 ], [ 356045.829199999570847, 256655.287900000810623 ], [ 356036.263099998235703, 256670.799300000071526 ], [ 356059.093099996447563, 256674.495600000023842 ], [ 356065.360500000417233, 256664.389499999582767 ], [ 356074.040399998426437, 256650.393100000917912 ], [ 356074.92339999973774, 256645.99549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204032500", "MAP": "D9-802-T69", "PARCEL_NAM": "9-5", "ACRE": null, "LONGITUDE": -64.9535581, "LATITUDE": 18.33950451, "OBJECTID_1": 8623, "PARCEL_NO_": "105204032500", "Tax_Legal_": "CONTANT 9-5 7BA S S QTR", "Name": "EDDY, VERNON & NAOMI", "Address": "3079 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026101, "Country": "United States", "Land_Value": 34800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.310887481799995, "SHAPE_Area": 290.03386722699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356420.820200003683567, 256651.813099998980761 ], [ 356409.614600002765656, 256642.011100001633167 ], [ 356402.231899999082088, 256656.727200001478195 ], [ 356399.764399997889996, 256662.406599998474121 ], [ 356413.430399999022484, 256667.373599998652935 ], [ 356420.820200003683567, 256651.813099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204021600", "MAP": "D9-605-T66", "PARCEL_NAM": "6-12", "ACRE": "0.08", "LONGITUDE": -64.95152857, "LATITUDE": 18.33952497, "OBJECTID_1": 8577, "PARCEL_NO_": "105204021600", "Tax_Legal_": "CONTANT 6-12 7BA S S QTR", "Name": "FREEMAN, EDDIE & DOROTHY", "Address": "PO Box 3114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 73900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.743114715600001, "SHAPE_Area": 274.472066187 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356632.081299997866154, 256652.697799999266863 ], [ 356631.153499998152256, 256650.862500000745058 ], [ 356609.520700000226498, 256658.251899998635054 ], [ 356610.247900001704693, 256659.907400000840425 ], [ 356610.225500002503395, 256662.537599999457598 ], [ 356630.068099997937679, 256666.390500001609325 ], [ 356635.760300002992153, 256667.495799999684095 ], [ 356635.953299999237061, 256666.685300000011921 ], [ 356637.218500003218651, 256661.371300000697374 ], [ 356632.081299997866154, 256652.697799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95182181, "LATITUDE": 18.33935471, "OBJECTID_1": 8576, "PARCEL_NO_": "105204021400", "Tax_Legal_": "CONTANT 6-24&10-1 7BA S S QTR", "Name": "THE FAITH GARDENS, INC.", "Address": "PO Box 10227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 182100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.697219093, "SHAPE_Area": 2051.2796950900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356609.520700000226498, 256658.251899998635054 ], [ 356631.153499998152256, 256650.862500000745058 ], [ 356620.186200000345707, 256629.169100001454353 ], [ 356612.252599999308586, 256613.9054000005126 ], [ 356555.587700001895428, 256639.617199998348951 ], [ 356561.951899997889996, 256649.80180000141263 ], [ 356557.882600001990795, 256654.201499998569489 ], [ 356560.265500001609325, 256658.442800000309944 ], [ 356567.500799998641014, 256661.035199999809265 ], [ 356599.82880000025034, 256652.433800000697374 ], [ 356606.266699999570847, 256653.964200001209974 ], [ 356608.665899999439716, 256656.305900000035763 ], [ 356609.520700000226498, 256658.251899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204031800", "MAP": null, "PARCEL_NAM": "14", "ACRE": null, "LONGITUDE": -64.95277472, "LATITUDE": 18.3394104, "OBJECTID_1": 8618, "PARCEL_NO_": "105204031800", "Tax_Legal_": "CONTANT 14 7BA SOUTHSIDE QTR", "Name": "PEMBERTON, PRISCILLA", "Address": "BOX 7384-L.TODMAN", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51400, "Improved_V": 10400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.238756734199995, "SHAPE_Area": 465.433451768 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356505.481299996376038, 256652.717099998146296 ], [ 356508.006300002336502, 256640.283300001174212 ], [ 356489.532999999821186, 256631.688299998641014 ], [ 356483.779100000858307, 256644.517900001257658 ], [ 356477.215400002896786, 256657.763099998235703 ], [ 356479.625299997627735, 256658.838300000876188 ], [ 356486.099200002849102, 256656.147100001573563 ], [ 356505.481299996376038, 256652.717099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204034000", "MAP": "D9-4610-T88", "PARCEL_NAM": "3CH", "ACRE": null, "LONGITUDE": -64.95295056, "LATITUDE": 18.33943368, "OBJECTID_1": 8637, "PARCEL_NO_": "105204034000", "Tax_Legal_": "3CH CONTANT 7BA SOUTHSIDE QTR", "Name": "FARIDA AUBAIN TRUST", "Address": "PO Box 780", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21600, "Improved_V": 217800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.280514597100002, "SHAPE_Area": 188.87755527300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356474.945699997246265, 256640.223799999803305 ], [ 356471.84910000115633, 256638.718499999493361 ], [ 356466.417700000107288, 256653.280699998140335 ], [ 356468.376500003039837, 256654.102200001478195 ], [ 356477.215400002896786, 256657.763099998235703 ], [ 356483.779100000858307, 256644.517900001257658 ], [ 356474.945699997246265, 256640.223799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95762261, "LATITUDE": 18.33930362, "OBJECTID_1": 8741, "PARCEL_NO_": "105204060400", "Tax_Legal_": "CONTANT 53 7A SOUTHSIDE QTR", "Name": "RICHARDSON, STEPHENS", "Address": "P.O. BOX 5302", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 96500, "Improved_V": 44200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.00541947299999, "SHAPE_Area": 1449.2314261199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356011.348399996757507, 256632.629799999296665 ], [ 355979.374600000679493, 256599.648600000888109 ], [ 355977.659500002861023, 256611.666900001466274 ], [ 355973.57940000295639, 256617.333000000566244 ], [ 355968.707299999892712, 256621.303899999707937 ], [ 355950.082999996840954, 256630.439599998295307 ], [ 355974.078199997544289, 256653.434099998325109 ], [ 356011.348399996757507, 256632.629799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95859033000001, "LATITUDE": 18.33926323, "OBJECTID_1": 8496, "PARCEL_NO_": "105203013100", "Tax_Legal_": "47 ESTATE CONTANT (SECTION B) 7A SOUTHSIDE QTR.", "Name": "TURNBULL, LOUISA-LIFE ESTATE", "Address": "8240 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.346858395, "SHAPE_Area": 1529.8230615800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355898.550899997353554, 256621.574099998921156 ], [ 355887.465800002217293, 256597.629799999296665 ], [ 355856.673000000417233, 256615.320700000971556 ], [ 355849.367700003087521, 256620.960400000214577 ], [ 355881.354000002145767, 256652.464099999517202 ], [ 355903.306100003421307, 256631.323300000280142 ], [ 355898.550899997353554, 256621.574099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95372304, "LATITUDE": 18.33938006, "OBJECTID_1": 8622, "PARCEL_NO_": "105204032400", "Tax_Legal_": "CONTANT 9-8 7BA S S QTR", "Name": "GARDNER, TYRONE", "Address": "PO Box 304997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 246500, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.208432478800006, "SHAPE_Area": 566.53593245299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356387.995200000703335, 256624.102299999445677 ], [ 356386.344800002872944, 256628.521800000220537 ], [ 356381.445799998939037, 256635.6587999984622 ], [ 356376.519799999892712, 256645.962099999189377 ], [ 356402.231899999082088, 256656.727200001478195 ], [ 356409.614600002765656, 256642.011100001633167 ], [ 356404.008199997246265, 256637.532200001180172 ], [ 356387.995200000703335, 256624.102299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95042916, "LATITUDE": 18.33935424, "OBJECTID_1": 8566, "PARCEL_NO_": "105204020300", "Tax_Legal_": "CONTANT 83 7B SOUTHSIDE QTR", "Name": "DALEY, VIVIAN H.", "Address": "PO Box 8081", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47400, "Improved_V": 261900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.696242566, "SHAPE_Area": 659.38406171400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356751.4712999984622, 256647.131099998950958 ], [ 356749.250200003385544, 256623.892599999904633 ], [ 356729.882500000298023, 256625.633900001645088 ], [ 356733.628100000321865, 256659.228500001132488 ], [ 356750.567900002002716, 256658.522700000554323 ], [ 356752.984999999403954, 256658.753600001335144 ], [ 356751.4712999984622, 256647.131099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204033700", "MAP": "D9-3083-T85", "PARCEL_NAM": "3CE", "ACRE": ".09", "LONGITUDE": -64.95349279, "LATITUDE": 18.33938613, "OBJECTID_1": 8634, "PARCEL_NO_": "105204033700", "Tax_Legal_": "CONTANT 3CE 7BA SOUTHSIDE QTR.", "Name": "EDDY, VERNON & NAOMI", "Address": "3079 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026101, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.091920709700005, "SHAPE_Area": 271.05411897099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356421.748800002038479, 256637.466400001198053 ], [ 356407.290899999439716, 256630.804099999368191 ], [ 356404.008199997246265, 256637.532200001180172 ], [ 356409.614600002765656, 256642.011100001633167 ], [ 356420.820200003683567, 256651.813099998980761 ], [ 356424.808600001037121, 256656.912000000476837 ], [ 356430.557099997997284, 256644.715599998831749 ], [ 356420.111000001430511, 256640.408300001174212 ], [ 356421.748800002038479, 256637.466400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204022800", "MAP": "F9-2860-T71", "PARCEL_NAM": "7F", "ACRE": "0.09", "LONGITUDE": -64.95146807, "LATITUDE": 18.33932837, "OBJECTID_1": 8586, "PARCEL_NO_": "105204022800", "Tax_Legal_": "CONTANT 7F 7BA SOUTHSIDE QTR", "Name": "BARBER, CYNTHIA", "Address": "2694 Griffin Ct", "City": "Decatur", "State": "Georgia", "Zip": 30035, "Country": "United States", "Land_Value": 27600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.414930368599997, "SHAPE_Area": 389.81175656900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356631.512299999594688, 256624.82880000025034 ], [ 356629.92849999666214, 256621.438299998641014 ], [ 356618.653499998152256, 256626.220400001853704 ], [ 356620.186200000345707, 256629.169100001454353 ], [ 356631.153499998152256, 256650.862500000745058 ], [ 356632.081299997866154, 256652.697799999266863 ], [ 356633.124200001358986, 256654.458500001579523 ], [ 356635.745399996638298, 256653.147900000214577 ], [ 356641.001199997961521, 256650.519999999552965 ], [ 356646.383000001311302, 256647.829100001603365 ], [ 356641.827200002968311, 256644.544900000095367 ], [ 356631.512299999594688, 256624.82880000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204032000", "MAP": "F9-1104-T63", "PARCEL_NAM": "3CB", "ACRE": ".116", "LONGITUDE": -64.95310101, "LATITUDE": 18.33936895, "OBJECTID_1": 8619, "PARCEL_NO_": "105204032000", "Tax_Legal_": "CONTANT 3CB 7BA SOUTHSIDE QTR", "Name": "AUBAIN, FARIDA", "Address": "PO Box 780", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41100, "Improved_V": 30400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.508027424700003, "SHAPE_Area": 356.94708428299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356471.84910000115633, 256638.718499999493361 ], [ 356457.2787000015378, 256631.635400000959635 ], [ 356450.201200000941753, 256627.993599999696016 ], [ 356447.844800002872944, 256645.50730000063777 ], [ 356449.895999997854233, 256646.351599998772144 ], [ 356466.417700000107288, 256653.280699998140335 ], [ 356471.84910000115633, 256638.718499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95253856, "LATITUDE": 18.33917744, "OBJECTID_1": 8613, "PARCEL_NO_": "105204031700", "Tax_Legal_": "3B CONTANT 7BA SOUTHSIDE QTR.", "Name": "AUBAIN FAMILY TRUST", "Address": "308 N Kaywood Dr", "City": "Salisbury", "State": "Maryland", "Zip": 21804, "Country": "United States", "Land_Value": 67000, "Improved_V": 86800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.95342032600001, "SHAPE_Area": 2235.07930773 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356551.626299999654293, 256631.352200001478195 ], [ 356523.730800002813339, 256592.915899999439716 ], [ 356513.367399998009205, 256578.898899998515844 ], [ 356497.75620000064373, 256612.968299999833107 ], [ 356489.532999999821186, 256631.688299998641014 ], [ 356508.006300002336502, 256640.283300001174212 ], [ 356505.481299996376038, 256652.717099998146296 ], [ 356519.228100001811981, 256648.185600001364946 ], [ 356531.367799997329712, 256643.007599998265505 ], [ 356551.626299999654293, 256631.352200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96924435, "LATITUDE": 18.33926055, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 321.95240714200003, "SHAPE_Area": 3539.0400731999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354695.651399999856949, 256597.796700000762939 ], [ 354693.778099998831749, 256628.390000000596046 ], [ 354786.471600003540516, 256632.948300000280142 ], [ 354786.563299998641014, 256622.183299999684095 ], [ 354794.619300000369549, 256623.093600001186132 ], [ 354800.24549999833107, 256625.250599998980761 ], [ 354804.2483000010252, 256628.660799998790026 ], [ 354807.399800002574921, 256637.341499999165535 ], [ 354813.040399998426437, 256637.809799998998642 ], [ 354814.143399998545647, 256602.988400001078844 ], [ 354695.651399999856949, 256597.796700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95820194, "LATITUDE": 18.33926451, "OBJECTID_1": 8497, "PARCEL_NO_": "105203013200", "Tax_Legal_": "48 ESTATE CONTANT (SECTION B) 7A SOUTHSIDQ QTR.", "Name": "TURNBULL, LOUISA-LIFE ESTATE", "Address": "8240 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84100, "Improved_V": 35300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.660056803, "SHAPE_Area": 945.33381720900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355942.037900000810623, 256628.262800000607967 ], [ 355928.528399996459484, 256604.93189999833703 ], [ 355898.550899997353554, 256621.574099998921156 ], [ 355903.306100003421307, 256631.323300000280142 ], [ 355911.237999998033047, 256646.798099998384714 ], [ 355914.49379999935627, 256643.236099999397993 ], [ 355942.037900000810623, 256628.262800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204032100", "MAP": null, "PARCEL_NAM": "3CA", "ACRE": null, "LONGITUDE": -64.9532813, "LATITUDE": 18.33929834, "OBJECTID_1": 8620, "PARCEL_NO_": "105204032100", "Tax_Legal_": "CONTANT 3CA SOUTHSIDE QTR. 7BA", "Name": "AUBAIN, JOSEPH & ELVINI", "Address": "PO Box 6744", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 52200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.728507512600004, "SHAPE_Area": 341.04116126000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356450.201200000941753, 256627.993599999696016 ], [ 356435.601800002157688, 256620.481199998408556 ], [ 356427.396600000560284, 256637.090399999171495 ], [ 356447.844800002872944, 256645.50730000063777 ], [ 356450.201200000941753, 256627.993599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204068400", "MAP": "13-1-3", "PARCEL_NAM": ".34", "ACRE": null, "LONGITUDE": -64.95498464000001, "LATITUDE": 18.33923971, "OBJECTID_1": 8923, "PARCEL_NO_": "105204068400", "Tax_Legal_": "13-1-3 EST.CONTANT 7A SOUTHSIDE QTR.", "Name": "KHALIL, FARIS M. & AMAL A. (TRUSTEES)", "Address": "PO Box 301800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 122000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.62113342000001, "SHAPE_Area": 1454.9363771000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356235.762199997901917, 256604.068999998271465 ], [ 356234.698700003325939, 256634.246700000017881 ], [ 356282.186599999666214, 256644.556800000369549 ], [ 356287.137800000607967, 256631.29839999973774 ], [ 356288.007100000977516, 256623.917199999094009 ], [ 356285.622299998998642, 256619.886900000274181 ], [ 356280.81139999628067, 256616.681099999696016 ], [ 356235.762199997901917, 256604.068999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204031600", "MAP": null, "PARCEL_NAM": "3AB", "ACRE": null, "LONGITUDE": -64.95295021, "LATITUDE": 18.33919179, "OBJECTID_1": 8611, "PARCEL_NO_": "105204031600", "Tax_Legal_": "3AB CONTANT 7BA SOUTHSIDE QTR.", "Name": "AUBAIN FAMILY TRUST", "Address": "308 N Kaywood Dr", "City": "Salisbury", "State": "Maryland", "Zip": 21804, "Country": "United States", "Land_Value": 79500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.920429353, "SHAPE_Area": 1174.3232153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356473.654899999499321, 256602.427499998360872 ], [ 356466.644100002944469, 256599.394499998539686 ], [ 356451.901199996471405, 256628.868400000035763 ], [ 356457.2787000015378, 256631.635400000959635 ], [ 356474.945699997246265, 256640.223799999803305 ], [ 356483.779100000858307, 256644.517900001257658 ], [ 356489.532999999821186, 256631.688299998641014 ], [ 356497.75620000064373, 256612.968299999833107 ], [ 356473.654899999499321, 256602.427499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204021200", "MAP": "G9-1731-T71", "PARCEL_NAM": "7D", "ACRE": "0.12", "LONGITUDE": -64.95133003, "LATITUDE": 18.33924332, "OBJECTID_1": 8574, "PARCEL_NO_": "105204021200", "Tax_Legal_": "PAR 7D & 7E 7BA SOUTHSIDE QTR", "Name": "PENN, JOHN", "Address": "PO Box 307488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76500, "Improved_V": 55100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.769943313, "SHAPE_Area": 560.57804499500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356652.568199999630451, 256614.235399998724461 ], [ 356629.92849999666214, 256621.438299998641014 ], [ 356631.512299999594688, 256624.82880000025034 ], [ 356641.827200002968311, 256644.544900000095367 ], [ 356662.071299999952316, 256634.578099999576807 ], [ 356654.945799998939037, 256619.109999999403954 ], [ 356652.568199999630451, 256614.235399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105503010300", "MAP": "D9-5332-T92", "PARCEL_NAM": "1A-1 of 10th Street", "ACRE": "0.60", "LONGITUDE": -64.91509212, "LATITUDE": 18.33904722, "OBJECTID_1": 19954, "PARCEL_NO_": "105503010300", "Tax_Legal_": "1A-10TH ST. EST. THOMAS(GRAND UN NEW QTR", "Name": "LOCKHART GARDENS, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 812500, "Improved_V": 786600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.36962167, "SHAPE_Area": 3698.2664854700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360513.564499996602535, 256602.139400001615286 ], [ 360431.063500002026558, 256631.650600001215935 ], [ 360446.021999999880791, 256674.202799998223782 ], [ 360500.201399996876717, 256656.281100001186132 ], [ 360505.059000000357628, 256653.998799998313189 ], [ 360509.94370000064373, 256648.550400000065565 ], [ 360514.900200001895428, 256634.6587999984622 ], [ 360514.934399999678135, 256630.648299999535084 ], [ 360517.565499998629093, 256605.760800000280142 ], [ 360516.798699997365475, 256601.110399998724461 ], [ 360513.564499996602535, 256602.139400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95954532, "LATITUDE": 18.33924756, "OBJECTID_1": 8487, "PARCEL_NO_": "105203012200", "Tax_Legal_": "CONTANT 31 7A S S QTR", "Name": "TAPIA, HELEN", "Address": "PO Box 1525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 140500, "Improved_V": 110400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.583052240599997, "SHAPE_Area": 476.66481470299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355792.887999996542931, 256624.931200001388788 ], [ 355786.565200001001358, 256609.891800001263618 ], [ 355763.941699996590614, 256615.195000000298023 ], [ 355769.416900001466274, 256635.082600001245737 ], [ 355787.999799996614456, 256630.80180000141263 ], [ 355786.424999997019768, 256626.355900000780821 ], [ 355792.887999996542931, 256624.931200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204020500", "MAP": "F9-2062-T67", "PARCEL_NAM": "7B", "ACRE": "0.09", "LONGITUDE": -64.9510582, "LATITUDE": 18.33886913, "OBJECTID_1": 8568, "PARCEL_NO_": "105204020500", "Tax_Legal_": "7 ESTATE CONTANT 7BA SOUTHSIDE QTR.", "Name": "BARBAR, LINDQUIST, PETERSEN, PENN", "Address": "PO BOX 304024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 134000, "Improved_V": 138100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.123695583, "SHAPE_Area": 1112.5691707399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356688.507399998605251, 256604.741799999028444 ], [ 356687.792599998414516, 256562.104699999094009 ], [ 356686.881099998950958, 256561.953899998217821 ], [ 356680.427000001072884, 256562.323300000280142 ], [ 356675.563900001347065, 256565.238800000399351 ], [ 356673.114399999380112, 256568.807300001382828 ], [ 356667.427100002765656, 256573.826999999582767 ], [ 356655.271200001239777, 256580.904699999839067 ], [ 356670.578699998557568, 256613.853100001811981 ], [ 356688.507399998605251, 256604.741799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204032200", "MAP": null, "PARCEL_NAM": "3CC", "ACRE": ".10", "LONGITUDE": -64.9534578, "LATITUDE": 18.33922687, "OBJECTID_1": 8621, "PARCEL_NO_": "105204032200", "Tax_Legal_": "3CC ONTANT 7BA SOUTHSIDE QTR", "Name": "AMARO, MAY C.", "Address": "PO Box 306104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31600, "Improved_V": 72800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.917223671200006, "SHAPE_Area": 436.83824693899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356435.601800002157688, 256620.481199998408556 ], [ 356417.13570000231266, 256611.041900001466274 ], [ 356407.290899999439716, 256630.804099999368191 ], [ 356421.748800002038479, 256637.466400001198053 ], [ 356422.57490000128746, 256635.151099998503923 ], [ 356427.396600000560284, 256637.090399999171495 ], [ 356435.601800002157688, 256620.481199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204034100", "MAP": "D9-4720-T84", "PARCEL_NAM": "3CI", "ACRE": ".14", "LONGITUDE": -64.95363701, "LATITUDE": 18.33917408, "OBJECTID_1": 8638, "PARCEL_NO_": "105204034100", "Tax_Legal_": "3CI ESTATE CONTANT NO. 7BA SOUTHSIDE QUARTER", "Name": "AUBAIN, PAUL L., JR.", "Address": "PO Box 8431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.267255030499996, "SHAPE_Area": 533.76772281900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356417.13570000231266, 256611.041900001466274 ], [ 356400.275100000202656, 256602.460200000554323 ], [ 356389.63120000064373, 256621.371500000357628 ], [ 356387.995200000703335, 256624.102299999445677 ], [ 356404.008199997246265, 256637.532200001180172 ], [ 356407.290899999439716, 256630.804099999368191 ], [ 356417.13570000231266, 256611.041900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204060900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95742331, "LATITUDE": 18.33903023, "OBJECTID_1": 8745, "PARCEL_NO_": "105204060900", "Tax_Legal_": "CONTANT 54 7A SOUTHSIDE QTR", "Name": "FRETT, PENN, & STOUT, INC.", "Address": "PO BOX 2601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 91900, "Improved_V": 93500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.62829239499999, "SHAPE_Area": 1720.1178617099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356024.6216000020504, 256589.041999999433756 ], [ 355982.043499998748302, 256570.328400000929832 ], [ 355981.217399999499321, 256572.643699999898672 ], [ 355979.374600000679493, 256599.648600000888109 ], [ 356011.348399996757507, 256632.629799999296665 ], [ 356019.451099999248981, 256628.052000001072884 ], [ 356024.6216000020504, 256589.041999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204068700", "MAP": "D9-3654-T86", "PARCEL_NAM": "13-1-2", "ACRE": ".334", "LONGITUDE": -64.95545122, "LATITUDE": 18.3391563, "OBJECTID_1": 8926, "PARCEL_NO_": "105204068700", "Tax_Legal_": "13-1-1,13-1-2 EST.CONTANT 7A SOUTHSIDE QTR.", "Name": "TAYLOR, BRUCE", "Address": "394-168 Annas Retreat", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 235100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.632331757, "SHAPE_Area": 1580.12132939 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356185.833700001239777, 256596.272100001573563 ], [ 356187.965000003576279, 256630.064500000327826 ], [ 356234.698700003325939, 256634.246700000017881 ], [ 356235.762199997901917, 256604.068999998271465 ], [ 356224.500799998641014, 256600.810400001704693 ], [ 356185.833700001239777, 256596.272100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95936316, "LATITUDE": 18.33921325, "OBJECTID_1": 8492, "PARCEL_NO_": "105203012700", "Tax_Legal_": "CONTANT ESTATE 31C&31D 7A S S QTR", "Name": "TAPIA, HELEN", "Address": "PO Box 1525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32700, "Improved_V": 114800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.467752473800005, "SHAPE_Area": 274.37582692000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355797.876999996602535, 256607.240100000053644 ], [ 355786.565200001001358, 256609.891800001263618 ], [ 355792.887999996542931, 256624.931200001388788 ], [ 355794.462899997830391, 256629.377000000327826 ], [ 355806.581000000238419, 256626.73200000077486 ], [ 355809.005300000309944, 256626.118500001728535 ], [ 355797.876999996602535, 256607.240100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204068700", "MAP": "D9-3654-T86", "PARCEL_NAM": "13-1-1", "ACRE": ".339", "LONGITUDE": -64.95592513, "LATITUDE": 18.33912459, "OBJECTID_1": 8926, "PARCEL_NO_": "105204068700", "Tax_Legal_": "13-1-1,13-1-2 EST.CONTANT 7A SOUTHSIDE QTR.", "Name": "TAYLOR, BRUCE", "Address": "394-168 Annas Retreat", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 235100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.12542523799999, "SHAPE_Area": 1790.2413912100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356185.833700001239777, 256596.272100001573563 ], [ 356156.027199998497963, 256592.861699998378754 ], [ 356140.676600001752377, 256596.324700001627207 ], [ 356132.550599999725819, 256603.646499998867512 ], [ 356125.979599997401237, 256617.736000001430511 ], [ 356160.550300002098083, 256629.84010000154376 ], [ 356187.965000003576279, 256630.064500000327826 ], [ 356185.833700001239777, 256596.272100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204062000", "MAP": "B9-46-T50", "PARCEL_NAM": "REM 91", "ACRE": "0.99", "LONGITUDE": -64.95435273, "LATITUDE": 18.33900159, "OBJECTID_1": 8757, "PARCEL_NO_": "105204062000", "Tax_Legal_": "CONTANT 91 7A SOUTHSIDE QTR", "Name": "MINOGUE, SEAMOS, EILIS & LIAM", "Address": "PO Box 821", "City": "Manchester", "State": "Maryland", "Zip": 21102, "Country": "United States", "Land_Value": 376600, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.95074902900001, "SHAPE_Area": 4442.9457277800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356382.413900002837181, 256616.668299999088049 ], [ 356359.395999997854233, 256597.632100000977516 ], [ 356353.957999996840954, 256601.329999998211861 ], [ 356345.039499998092651, 256593.0641999989748 ], [ 356341.559199996292591, 256582.840599998831749 ], [ 356348.905799999833107, 256573.765399999916553 ], [ 356315.210500001907349, 256545.968199998140335 ], [ 356284.081600002944469, 256611.430599998682737 ], [ 356288.093400001525879, 256613.785399999469519 ], [ 356292.879100002348423, 256619.946299999952316 ], [ 356294.448600001633167, 256625.025400001555681 ], [ 356293.591899998486042, 256630.929000001400709 ], [ 356375.871699996292591, 256627.38060000166297 ], [ 356379.152699999511242, 256620.863499999046326 ], [ 356382.413900002837181, 256616.668299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204060800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95794706, "LATITUDE": 18.33912869, "OBJECTID_1": 8744, "PARCEL_NO_": "105204060800", "Tax_Legal_": "CONTANT 49A 7A SOUTHSIDE QTR", "Name": "MENA, DANTE A", "Address": "B6 4 Clle", "City": "Fajardo", "State": "Puerto Rico", "Zip": 738, "Country": "United States", "Land_Value": 43300, "Improved_V": 17700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.578297847, "SHAPE_Area": 720.82682443299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355966.338699996471405, 256615.3739 ], [ 355950.406700000166893, 256592.44539999961853 ], [ 355928.528399996459484, 256604.93189999833703 ], [ 355942.037900000810623, 256628.262800000607967 ], [ 355966.338699996471405, 256615.3739 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96013078, "LATITUDE": 18.33905002, "OBJECTID_1": 8484, "PARCEL_NO_": "105203011900", "Tax_Legal_": "CONTANT 9CA 7A S S QTR", "Name": "HASSAN, L. & MUHSEN, D. & ABDALLAH, W", "Address": "2101 Strand Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84900, "Improved_V": 424600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.84405466699999, "SHAPE_Area": 1053.6685417000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355733.319799996912479, 256612.833500001579523 ], [ 355723.9712999984622, 256574.337900001555681 ], [ 355699.666900001466274, 256587.649000000208616 ], [ 355699.643500000238419, 256590.39299999922514 ], [ 355708.223399996757507, 256624.449299998581409 ], [ 355733.319799996912479, 256612.833500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204010400", "MAP": null, "PARCEL_NAM": "94", "ACRE": null, "LONGITUDE": -64.95225631, "LATITUDE": 18.33903375, "OBJECTID_1": 8561, "PARCEL_NO_": "105204010400", "Tax_Legal_": "CONTANT 85,86,87,94,95&96 7B SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 428000, "Improved_V": 601500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.54688968, "SHAPE_Area": 1269.7474789600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356573.508199997246265, 256618.443399999290705 ], [ 356545.636100001633167, 256577.263199999928474 ], [ 356523.730800002813339, 256592.915899999439716 ], [ 356551.626299999654293, 256631.352200001478195 ], [ 356573.508199997246265, 256618.443399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95919724, "LATITUDE": 18.33901203, "OBJECTID_1": 8499, "PARCEL_NO_": "105203013400", "Tax_Legal_": "CONTANT 32 7A S S QTR", "Name": "TUGLIFE MARINE LLC", "Address": "PO Box 1255", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 130700, "Improved_V": 443600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.488963982, "SHAPE_Area": 1376.55090402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355823.075800001621246, 256583.592799998819828 ], [ 355815.152999997138977, 256567.062699999660254 ], [ 355791.663800001144409, 256579.32490000128746 ], [ 355805.126599997282028, 256608.143800001591444 ], [ 355806.726599998772144, 256609.63459999859333 ], [ 355815.472000002861023, 256624.271600000560284 ], [ 355838.9324000030756, 256615.386599998921156 ], [ 355823.075800001621246, 256583.592799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204022100", "MAP": "F9-2605-T70", "PARCEL_NAM": "7C", "ACRE": null, "LONGITUDE": -64.95158535, "LATITUDE": 18.33911585, "OBJECTID_1": 8581, "PARCEL_NO_": "105204022100", "Tax_Legal_": "CONTANT 7C 7B SOUTHSIDE QTR", "Name": "LINDQUIST, LUCIA PENN", "Address": "BOX 4024", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22100, "Improved_V": 53200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.987945195999998, "SHAPE_Area": 258.34166221499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356629.92849999666214, 256621.438299998641014 ], [ 356619.611900001764297, 256601.933299999684095 ], [ 356609.075900003314018, 256608.179900001734495 ], [ 356612.252599999308586, 256613.9054000005126 ], [ 356618.653499998152256, 256626.220400001853704 ], [ 356629.92849999666214, 256621.438299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95832121, "LATITUDE": 18.33905229, "OBJECTID_1": 8498, "PARCEL_NO_": "105203013300", "Tax_Legal_": "CONTANT ESTATE 48A 7A SOUTHSIDE QTR", "Name": "FRETT, M. R. & E. I. & CARTY, E. F", "Address": "PO Box 307682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56900, "Improved_V": 117900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.220243224, "SHAPE_Area": 876.48205175800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355928.528399996459484, 256604.93189999833703 ], [ 355915.016999997198582, 256581.812199998646975 ], [ 355887.465800002217293, 256597.629799999296665 ], [ 355898.550899997353554, 256621.574099998921156 ], [ 355928.528399996459484, 256604.93189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95046178, "LATITUDE": 18.33907348, "OBJECTID_1": 8567, "PARCEL_NO_": "105204020400", "Tax_Legal_": "CONTANT 83A 7B SOUTHSIDE QUARTER", "Name": "LETT, MARIA", "Address": "BOX 3297", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 1300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.791825070399995, "SHAPE_Area": 550.02554854899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356726.916199997067451, 256595.212200000882149 ], [ 356729.164300002157688, 256615.284499999135733 ], [ 356729.882500000298023, 256625.633900001645088 ], [ 356749.250200003385544, 256623.892599999904633 ], [ 356747.063199996948242, 256596.6435999982059 ], [ 356735.767599999904633, 256597.395500000566244 ], [ 356726.916199997067451, 256595.212200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95952881, "LATITUDE": 18.33909204, "OBJECTID_1": 8517, "PARCEL_NO_": "105203015500", "Tax_Legal_": "31A ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "DANIEL, MICHAEL D", "Address": "PO Box 306972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.1922582861, "SHAPE_Area": 421.00885696 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355771.315399996936321, 256601.534299999475479 ], [ 355761.601899996399879, 256605.887800000607967 ], [ 355763.941699996590614, 256615.195000000298023 ], [ 355786.565200001001358, 256609.891800001263618 ], [ 355797.876999996602535, 256607.240100000053644 ], [ 355790.740599997341633, 256593.038400001823902 ], [ 355771.315399996936321, 256601.534299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95891199, "LATITUDE": 18.33897091, "OBJECTID_1": 8501, "PARCEL_NO_": "105203013600", "Tax_Legal_": "CONTANT 33 7A S S QTR", "Name": "KING, AVON CURTIS D", "Address": "PO Box 1322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.55308085499999, "SHAPE_Area": 1143.19830886 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355868.090899996459484, 256600.215399999171495 ], [ 355849.81360000371933, 256568.612900000065565 ], [ 355823.075800001621246, 256583.592799998819828 ], [ 355838.9324000030756, 256615.386599998921156 ], [ 355868.090899996459484, 256600.215399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204021200", "MAP": "G9-1731-T71", "PARCEL_NAM": "7E", "ACRE": "0.11", "LONGITUDE": -64.95142845, "LATITUDE": 18.33904335, "OBJECTID_1": 8574, "PARCEL_NO_": "105204021200", "Tax_Legal_": "PAR 7D & 7E 7BA SOUTHSIDE QTR", "Name": "PENN, JOHN", "Address": "PO Box 307488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76500, "Improved_V": 55100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.8164255895, "SHAPE_Area": 593.42649461899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356652.568199999630451, 256614.235399998724461 ], [ 356640.683899998664856, 256589.440200001001358 ], [ 356619.611900001764297, 256601.933299999684095 ], [ 356629.92849999666214, 256621.438299998641014 ], [ 356652.568199999630451, 256614.235399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204061000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95802095000001, "LATITUDE": 18.33893116, "OBJECTID_1": 8746, "PARCEL_NO_": "105204061000", "Tax_Legal_": "CONTANT 49 7A SOUTHSIDE QTR", "Name": "MENA, GEORGE", "Address": "PO Box 302444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78200, "Improved_V": 116200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.92835992100001, "SHAPE_Area": 987.88358269800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355970.406300000846386, 256611.185300000011921 ], [ 355940.948499999940395, 256566.825699999928474 ], [ 355915.016999997198582, 256581.812199998646975 ], [ 355928.528399996459484, 256604.93189999833703 ], [ 355950.406700000166893, 256592.44539999961853 ], [ 355966.338699996471405, 256615.3739 ], [ 355970.406300000846386, 256611.185300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95985254, "LATITUDE": 18.33894301, "OBJECTID_1": 8519, "PARCEL_NO_": "105203015700", "Tax_Legal_": "CONTANT 9DB&9DD 7A SOUTHSIDE QTR.", "Name": "SERRANT, ALLISON", "Address": "PO Box 11573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 101200, "Improved_V": 222400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.762175555, "SHAPE_Area": 1384.2111506900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355751.450699999928474, 256566.963500000536442 ], [ 355723.179399996995926, 256572.642700001597404 ], [ 355723.9712999984622, 256574.337900001555681 ], [ 355733.319799996912479, 256612.833500001579523 ], [ 355760.035999998450279, 256600.386500000953674 ], [ 355761.601899996399879, 256605.887800000607967 ], [ 355771.315399996936321, 256601.534299999475479 ], [ 355761.025700002908707, 256578.863099999725819 ], [ 355756.297600001096725, 256565.947700001299381 ], [ 355751.450699999928474, 256566.963500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204010400", "MAP": null, "PARCEL_NAM": "95", "ACRE": null, "LONGITUDE": -64.95203619, "LATITUDE": 18.3388971, "OBJECTID_1": 8561, "PARCEL_NO_": "105204010400", "Tax_Legal_": "CONTANT 85,86,87,94,95&96 7B SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 428000, "Improved_V": 601500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.79243565900001, "SHAPE_Area": 1494.2510372300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356578.727300003170967, 256573.734299998730421 ], [ 356569.972900003194809, 256560.152699999511242 ], [ 356545.636100001633167, 256577.263199999928474 ], [ 356573.508199997246265, 256618.443399999290705 ], [ 356598.629799999296665, 256603.872499998658895 ], [ 356578.727300003170967, 256573.734299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203011100", "MAP": "F9-380-T59", "PARCEL_NAM": "9BA", "ACRE": null, "LONGITUDE": -64.96069953, "LATITUDE": 18.33898097, "OBJECTID_1": 8475, "PARCEL_NO_": "105203011100", "Tax_Legal_": "CONTANT 9BA 7A S S QTR", "Name": "COBB REALTY INC", "Address": "PO Box 10150", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 111100, "Improved_V": 100400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.31674297399999, "SHAPE_Area": 655.38242571199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355642.434900000691414, 256585.280699998140335 ], [ 355648.671400003135204, 256610.451900001615286 ], [ 355669.714599996805191, 256601.335999999195337 ], [ 355662.718599997460842, 256570.670200001448393 ], [ 355642.434900000691414, 256585.280699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204061100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95778311, "LATITUDE": 18.33879271, "OBJECTID_1": 8749, "PARCEL_NO_": "105204061100", "Tax_Legal_": "CONTANT 50 7A SOUTHSIDE QTR", "Name": "MENA, GEORGE A", "Address": "BOX 2444", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.214633341, "SHAPE_Area": 1260.7235041500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355940.948499999940395, 256566.825699999928474 ], [ 355970.406300000846386, 256611.185300000011921 ], [ 355972.035099998116493, 256609.298799999058247 ], [ 355972.916900001466274, 256600.440099999308586 ], [ 355972.990599997341633, 256591.785900000482798 ], [ 355975.585799999535084, 256571.119899999350309 ], [ 355978.913500003516674, 256559.114799998700619 ], [ 355985.486299999058247, 256544.814300000667572 ], [ 355985.502499997615814, 256542.914599999785423 ], [ 355983.085400000214577, 256542.683699999004602 ], [ 355940.948499999940395, 256566.825699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204062100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95464007, "LATITUDE": 18.33844669, "OBJECTID_1": 8758, "PARCEL_NO_": "105204062100", "Tax_Legal_": "90 ESTATE CONTANT", "Name": "AMERICAN MOTOR INNS INC", "Address": "PO Box 7100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 384600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.26670900599999, "SHAPE_Area": 3083.6847941400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356315.210500001907349, 256545.968199998140335 ], [ 356319.043300002813339, 256486.247999999672174 ], [ 356280.193199999630451, 256499.941300000995398 ], [ 356281.910800002515316, 256582.281899999827147 ], [ 356282.472599998116493, 256610.995200000703335 ], [ 356284.081600002944469, 256611.430599998682737 ], [ 356315.210500001907349, 256545.968199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95292115, "LATITUDE": 18.33877682, "OBJECTID_1": 8599, "PARCEL_NO_": "105204031300", "Tax_Legal_": "CONTANT 3A OF 3 7BA SOUTHSIDE QTR", "Name": "OLIVE, LIONEL", "Address": "PO Box 308360", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8038360, "Country": "United States", "Land_Value": 174100, "Improved_V": 79600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.87547209100001, "SHAPE_Area": 3135.5995255799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356481.491300001740456, 256534.850400000810623 ], [ 356471.756300002336502, 256563.561200000345707 ], [ 356459.151399999856949, 256506.472300000488758 ], [ 356457.038199998438358, 256508.725999999791384 ], [ 356460.008699998259544, 256529.588599998503923 ], [ 356463.81870000064373, 256544.352400001138449 ], [ 356463.81870000064373, 256553.083700001239777 ], [ 356459.373700000345707, 256563.084899999201298 ], [ 356453.976199999451637, 256560.386199999600649 ], [ 356452.686800003051758, 256562.6886 ], [ 356438.871100001037121, 256587.357799999415874 ], [ 356442.321999996900558, 256588.872099999338388 ], [ 356473.654899999499321, 256602.427499998360872 ], [ 356497.75620000064373, 256612.968299999833107 ], [ 356513.367399998009205, 256578.898899998515844 ], [ 356487.863899998366833, 256543.648699998855591 ], [ 356481.491300001740456, 256534.850400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204020500", "MAP": "G9-22-T51", "PARCEL_NAM": "REM 7", "ACRE": null, "LONGITUDE": -64.95123907, "LATITUDE": 18.33915975, "OBJECTID_1": 8568, "PARCEL_NO_": "105204020500", "Tax_Legal_": "7 ESTATE CONTANT 7BA SOUTHSIDE QTR.", "Name": "BARBAR, LINDQUIST, PETERSEN, PENN", "Address": "PO BOX 304024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 134000, "Improved_V": 138100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.84743553300001, "SHAPE_Area": 1164.4877112199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356673.483800001442432, 256620.106100000441074 ], [ 356655.271200001239777, 256580.904699999839067 ], [ 356651.218099996447563, 256583.404699999839067 ], [ 356640.683899998664856, 256589.440200001001358 ], [ 356652.568199999630451, 256614.235399998724461 ], [ 356654.945799998939037, 256619.109999999403954 ], [ 356662.071299999952316, 256634.578099999576807 ], [ 356641.827200002968311, 256644.544900000095367 ], [ 356646.383000001311302, 256647.829100001603365 ], [ 356641.001199997961521, 256650.519999999552965 ], [ 356635.745399996638298, 256653.147900000214577 ], [ 356633.124200001358986, 256654.458500001579523 ], [ 356637.218500003218651, 256661.371300000697374 ], [ 356648.742600001394749, 256655.166400000452995 ], [ 356653.218299999833107, 256652.756599999964237 ], [ 356658.663199998438358, 256649.82490000128746 ], [ 356663.613799996674061, 256642.823399998247623 ], [ 356666.902000002563, 256635.462000001221895 ], [ 356669.270599998533726, 256631.100699998438358 ], [ 356673.483800001442432, 256620.106100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95956563, "LATITUDE": 18.33891569, "OBJECTID_1": 8489, "PARCEL_NO_": "105203012400", "Tax_Legal_": "9EA ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "DANIEL, MICHAEL D", "Address": "PO Box 306972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 235100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.596830540699997, "SHAPE_Area": 555.47146498200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355781.269900001585484, 256568.896299999207258 ], [ 355761.025700002908707, 256578.863099999725819 ], [ 355771.315399996936321, 256601.534299999475479 ], [ 355790.740599997341633, 256593.038400001823902 ], [ 355781.269900001585484, 256568.896299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95871796, "LATITUDE": 18.33877864, "OBJECTID_1": 8503, "PARCEL_NO_": "105203013800", "Tax_Legal_": "CONTANT 34 7A S S QTR", "Name": "SOUFFRONT, LOUIS, ROY & IVERY, C. S", "Address": "4 Comstock Queen Ct", "City": "Mountain View", "State": "California", "Zip": 94043, "Country": "United States", "Land_Value": 94800, "Improved_V": 44000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.701885793, "SHAPE_Area": 1357.91440711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355854.032200001180172, 256546.69370000064373 ], [ 355841.071900002658367, 256553.553700000047684 ], [ 355849.81360000371933, 256568.612900000065565 ], [ 355868.090899996459484, 256600.215399999171495 ], [ 355890.780900001525879, 256587.102200001478195 ], [ 355862.941200003027916, 256542.122499998658895 ], [ 355854.032200001180172, 256546.69370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204061800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95502864, "LATITUDE": 18.33852649, "OBJECTID_1": 8755, "PARCEL_NO_": "105204061800", "Tax_Legal_": "CONTANT 89 7A SOUTHSIDE QTR", "Name": "CARABALLO, CRISTOBAL & MILAGROS", "Address": "3220 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 411900, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.45632138399998, "SHAPE_Area": 4698.2188962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356280.193199999630451, 256499.941300000995398 ], [ 356239.087399996817112, 256497.705099999904633 ], [ 356235.050399996340275, 256498.305300001055002 ], [ 356228.675700001418591, 256499.317899998277426 ], [ 356236.509999997913837, 256598.076999999582767 ], [ 356241.445900000631809, 256599.471500001847744 ], [ 356252.709100000560284, 256602.519000001251698 ], [ 356281.910800002515316, 256582.281899999827147 ], [ 356280.193199999630451, 256499.941300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204010400", "MAP": null, "PARCEL_NAM": "96", "ACRE": null, "LONGITUDE": -64.95178238, "LATITUDE": 18.3388292, "OBJECTID_1": 8561, "PARCEL_NO_": "105204010400", "Tax_Legal_": "CONTANT 85,86,87,94,95&96 7B SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 428000, "Improved_V": 601500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.632741842, "SHAPE_Area": 870.86594216499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356610.139300003647804, 256578.002199999988079 ], [ 356598.9966000020504, 256560.812399998307228 ], [ 356578.727300003170967, 256573.734299998730421 ], [ 356598.629799999296665, 256603.872499998658895 ], [ 356618.890100002288818, 256592.006000000983477 ], [ 356610.139300003647804, 256578.002199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204061700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9554732, "LATITUDE": 18.3385466, "OBJECTID_1": 8754, "PARCEL_NO_": "105204061700", "Tax_Legal_": "CONTANT88 7A SOUTHSIDE QTR", "Name": "THOMAS, SIMON and NELINE E", "Address": "PO Box 7866", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 405900, "Improved_V": 700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.17150958500002, "SHAPE_Area": 4372.1354227299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356228.675700001418591, 256499.317899998277426 ], [ 356205.981799997389317, 256502.922600001096725 ], [ 356180.143899999558926, 256506.93299999833107 ], [ 356188.30120000243187, 256590.592799998819828 ], [ 356223.748400002717972, 256594.471500001847744 ], [ 356236.509999997913837, 256598.076999999582767 ], [ 356228.675700001418591, 256499.317899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96022514000001, "LATITUDE": 18.33871166, "OBJECTID_1": 8485, "PARCEL_NO_": "105203012000", "Tax_Legal_": "CONTANT 9C 7A S S QTR", "Name": "COMMERCIAL DEVELOPMENT GROUP LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78400, "Improved_V": 498300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.366359058, "SHAPE_Area": 1037.7528663799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355723.179399996995926, 256572.642700001597404 ], [ 355713.008400000631809, 256536.040300000458956 ], [ 355689.494099996984005, 256551.257599998265505 ], [ 355699.666900001466274, 256587.649000000208616 ], [ 355723.9712999984622, 256574.337900001555681 ], [ 355723.179399996995926, 256572.642700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204061600", "MAP": "B9-46-T59", "PARCEL_NAM": "87", "ACRE": null, "LONGITUDE": -64.95599031, "LATITUDE": 18.33853775, "OBJECTID_1": 8753, "PARCEL_NO_": "105204061600", "Tax_Legal_": "CONTANT 87 7A S S QTR", "Name": "WITHNEY, OTTLEY & OTHERS", "Address": "PO Box 8925", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 182900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.335096265, "SHAPE_Area": 4767.2514656699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356177.723099999129772, 256507.124200001358986 ], [ 356143.84179999679327, 256508.746800001710653 ], [ 356112.381300002336502, 256510.177999999374151 ], [ 356138.299099996685982, 256591.450100000947714 ], [ 356141.542300000786781, 256589.365699999034405 ], [ 356152.854000002145767, 256586.714099999517202 ], [ 356188.30120000243187, 256590.592799998819828 ], [ 356180.143899999558926, 256506.93299999833107 ], [ 356177.723099999129772, 256507.124200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204061200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95739509000001, "LATITUDE": 18.33876069, "OBJECTID_1": 8750, "PARCEL_NO_": "105204061200", "Tax_Legal_": "CONTANT 55 7A SOUTHSIDE QTR", "Name": "GREENE, WOODROW C. & JULEEN D", "Address": "PO Box 11793", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55100, "Improved_V": 24600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.483547566, "SHAPE_Area": 876.90880145699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356027.220399998128414, 256567.953899998217821 ], [ 355988.646799996495247, 256552.439500000327826 ], [ 355986.190099999308586, 256556.852400001138449 ], [ 355982.043499998748302, 256570.328400000929832 ], [ 356024.6216000020504, 256589.041999999433756 ], [ 356027.220399998128414, 256567.953899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95226932, "LATITUDE": 18.33844817, "OBJECTID_1": 8562, "PARCEL_NO_": "105204010700", "Tax_Legal_": "CONTANT 120 7B S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 318400, "Improved_V": 1107400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.240743571, "SHAPE_Area": 6118.1850065099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356535.720499999821186, 256510.687600001692772 ], [ 356517.063799999654293, 256523.622699998319149 ], [ 356487.863899998366833, 256543.648699998855591 ], [ 356513.367399998009205, 256578.898899998515844 ], [ 356523.730800002813339, 256592.915899999439716 ], [ 356545.636100001633167, 256577.263199999928474 ], [ 356569.972900003194809, 256560.152699999511242 ], [ 356613.779899999499321, 256529.269400000572205 ], [ 356561.696900002658367, 256490.424100000411272 ], [ 356535.720499999821186, 256510.687600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95851737, "LATITUDE": 18.33866728, "OBJECTID_1": 8504, "PARCEL_NO_": "105203013900", "Tax_Legal_": "CONTANT 35 7A S S QTR", "Name": "DE CAPO, ANESTA R. F. -LIFE INT.", "Address": "PO Box 7523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84000, "Improved_V": 66400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.25001249600001, "SHAPE_Area": 1238.76654543 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355911.039399996399879, 256575.446800000965595 ], [ 355884.002400003373623, 256530.895899999886751 ], [ 355862.941200003027916, 256542.122499998658895 ], [ 355890.780900001525879, 256587.102200001478195 ], [ 355911.039399996399879, 256575.446800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204010400", "MAP": "A3-39-T39", "PARCEL_NAM": "85", "ACRE": null, "LONGITUDE": -64.95140314, "LATITUDE": 18.33871608, "OBJECTID_1": 8561, "PARCEL_NO_": "105204010400", "Tax_Legal_": "CONTANT 85,86,87,94,95&96 7B SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 428000, "Improved_V": 601500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.79958431099999, "SHAPE_Area": 968.73329450799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356654.725699998438358, 256550.291700001806021 ], [ 356610.139300003647804, 256578.002199999988079 ], [ 356618.890100002288818, 256592.006000000983477 ], [ 356663.463799998164177, 256565.772999998182058 ], [ 356665.900700002908707, 256563.682000000029802 ], [ 356667.554700002074242, 256558.840399999171495 ], [ 356665.963699996471405, 256556.294300001114607 ], [ 356654.725699998438358, 256550.291700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204031400", "MAP": null, "PARCEL_NAM": "3AC", "ACRE": null, "LONGITUDE": -64.95334996, "LATITUDE": 18.33873839, "OBJECTID_1": 8602, "PARCEL_NO_": "105204031400", "Tax_Legal_": "CONTANT 3AC 7BA SOUTHSIDE QTR", "Name": "CORUJO, MANUEL", "Address": "PO Box 711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46600, "Improved_V": 92300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.119497604, "SHAPE_Area": 695.35369541700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356453.976199999451637, 256560.386199999600649 ], [ 356422.473600000143051, 256559.676199998706579 ], [ 356420.772799998521805, 256562.731199998408556 ], [ 356418.325099997222424, 256566.088700000196695 ], [ 356413.40089999884367, 256576.180900000035763 ], [ 356438.871100001037121, 256587.357799999415874 ], [ 356452.686800003051758, 256562.6886 ], [ 356453.976199999451637, 256560.386199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203015600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95903626, "LATITUDE": 18.33875693, "OBJECTID_1": 8518, "PARCEL_NO_": "105203015600", "Tax_Legal_": "CONTANT 33A 7A S S QTR", "Name": "PRINCE, W & L & BEDFORD, B", "Address": "3245 Contant 33", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34800, "Improved_V": 83900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.619761712799999, "SHAPE_Area": 535.38647244499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355841.071900002658367, 256553.553700000047684 ], [ 355832.972800001502037, 256557.709300000220537 ], [ 355815.152999997138977, 256567.062699999660254 ], [ 355823.075800001621246, 256583.592799998819828 ], [ 355849.81360000371933, 256568.612900000065565 ], [ 355841.071900002658367, 256553.553700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95936897, "LATITUDE": 18.33846465, "OBJECTID_1": 8500, "PARCEL_NO_": "105203013500", "Tax_Legal_": "CONTANT 9 7A S S QTR", "Name": "TUGLIFE MARINE LLC", "Address": "PO Box 1255", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 431200, "Improved_V": 919000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.760364877, "SHAPE_Area": 2935.7367371700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355832.972800001502037, 256557.709300000220537 ], [ 355790.818999998271465, 256489.181099999696016 ], [ 355768.127199999988079, 256502.505300000309944 ], [ 355783.793099999427795, 256556.673500001430511 ], [ 355791.663800001144409, 256579.32490000128746 ], [ 355815.152999997138977, 256567.062699999660254 ], [ 355832.972800001502037, 256557.709300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95969724, "LATITUDE": 18.33853711, "OBJECTID_1": 8490, "PARCEL_NO_": "105203012500", "Tax_Legal_": "CONTANT 9E & 9DA 7A S S QTR", "Name": "LINEN HOUSE INC", "Address": "PO Box 6397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 313600, "Improved_V": 83800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.74852802300001, "SHAPE_Area": 1400.7217049599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355745.437200002372265, 256515.618500001728535 ], [ 355756.297600001096725, 256565.947700001299381 ], [ 355761.025700002908707, 256578.863099999725819 ], [ 355781.269900001585484, 256568.896299999207258 ], [ 355763.244400002062321, 256507.74269999936223 ], [ 355760.024499997496605, 256507.083099998533726 ], [ 355745.437200002372265, 256515.618500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95831893, "LATITUDE": 18.33856119, "OBJECTID_1": 8511, "PARCEL_NO_": "105203014700", "Tax_Legal_": "CONTANT 36 7A S S QTR", "Name": "MITCHELL, E & M", "Address": "BOX 2724", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 95500, "Improved_V": 41300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.223195156, "SHAPE_Area": 1262.59909103 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355932.107799999415874, 256563.375799998641014 ], [ 355905.871799997985363, 256519.464699998497963 ], [ 355884.002400003373623, 256530.895899999886751 ], [ 355911.039399996399879, 256575.446800000965595 ], [ 355932.107799999415874, 256563.375799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95997819, "LATITUDE": 18.33857863, "OBJECTID_1": 8488, "PARCEL_NO_": "105203012300", "Tax_Legal_": "9D REM CONTANT 7A SOUTHSIDE QTR", "Name": "LOBBAN HARVEY, GINGER A. (TRUSTEE) & IGNACIO A. VENTURA CRUEL", "Address": "PO Box 306558", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 408400, "Improved_V": 184800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.57941607199999, "SHAPE_Area": 1333.57548582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355751.450699999928474, 256566.963500000536442 ], [ 355741.385799996554852, 256517.907400000840425 ], [ 355713.008400000631809, 256536.040300000458956 ], [ 355723.179399996995926, 256572.642700001597404 ], [ 355751.450699999928474, 256566.963500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204010400", "MAP": null, "PARCEL_NAM": "86", "ACRE": null, "LONGITUDE": -64.95154269, "LATITUDE": 18.33860123, "OBJECTID_1": 8561, "PARCEL_NO_": "105204010400", "Tax_Legal_": "CONTANT 85,86,87,94,95&96 7B SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 428000, "Improved_V": 601500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.21628962099999, "SHAPE_Area": 953.67392589400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356631.430699996650219, 256539.757399998605251 ], [ 356598.9966000020504, 256560.812399998307228 ], [ 356610.139300003647804, 256578.002199999988079 ], [ 356654.725699998438358, 256550.291700001806021 ], [ 356631.430699996650219, 256539.757399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204010400", "MAP": null, "PARCEL_NAM": "87", "ACRE": null, "LONGITUDE": -64.951784, "LATITUDE": 18.338542, "OBJECTID_1": 8561, "PARCEL_NO_": "105204010400", "Tax_Legal_": "CONTANT 85,86,87,94,95&96 7B SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 428000, "Improved_V": 601500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.126022202, "SHAPE_Area": 1000.98902449 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356613.779899999499321, 256529.269400000572205 ], [ 356569.972900003194809, 256560.152699999511242 ], [ 356578.727300003170967, 256573.734299998730421 ], [ 356598.9966000020504, 256560.812399998307228 ], [ 356631.430699996650219, 256539.757399998605251 ], [ 356623.39639999717474, 256536.3141999989748 ], [ 356613.779899999499321, 256529.269400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204065300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95733969, "LATITUDE": 18.33857826, "OBJECTID_1": 8909, "PARCEL_NO_": "105204065300", "Tax_Legal_": "CONTANT ESTATE 55A 7A SOUTHSIDE QTR", "Name": "PAUL, ALKIN & RAQUEL", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59900, "Improved_V": 34200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.19406596100001, "SHAPE_Area": 869.33405183800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356034.649800002574921, 256547.749800000339746 ], [ 355998.495200000703335, 256532.255100000649691 ], [ 355988.646799996495247, 256552.439500000327826 ], [ 356027.220399998128414, 256567.953899998217821 ], [ 356029.741800002753735, 256555.942299999296665 ], [ 356034.649800002574921, 256547.749800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95811962000001, "LATITUDE": 18.33844384, "OBJECTID_1": 8512, "PARCEL_NO_": "105203014800", "Tax_Legal_": "CONTANT 37 7A S S QTR", "Name": "37 CONTANT GROUP", "Address": "PO Box 303708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111100, "Improved_V": 20900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.25584082099999, "SHAPE_Area": 1260.1278779899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355934.14299999922514, 256513.785500001162291 ], [ 355930.980700001120567, 256506.371300000697374 ], [ 355905.871799997985363, 256519.464699998497963 ], [ 355932.107799999415874, 256563.375799998641014 ], [ 355950.746500000357628, 256552.551500000059605 ], [ 355934.14299999922514, 256513.785500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203013700", "MAP": "F9-8-T52", "PARCEL_NAM": "9A", "ACRE": ".43", "LONGITUDE": -64.95913358, "LATITUDE": 18.33830182, "OBJECTID_1": 8502, "PARCEL_NO_": "105203013700", "Tax_Legal_": "CONTANT 9A 7A S S QTR", "Name": "TUGLIFE MARINE LLC", "Address": "PO Box 1255", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 281000, "Improved_V": 100400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.016189704, "SHAPE_Area": 1907.3453423599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355832.972800001502037, 256557.709300000220537 ], [ 355841.071900002658367, 256553.553700000047684 ], [ 355854.032200001180172, 256546.69370000064373 ], [ 355846.872500002384186, 256535.236000001430511 ], [ 355844.487700000405312, 256531.205699998885393 ], [ 355811.077500000596046, 256477.525600001215935 ], [ 355790.818999998271465, 256489.181099999696016 ], [ 355832.972800001502037, 256557.709300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204065100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95777502, "LATITUDE": 18.33832339, "OBJECTID_1": 8907, "PARCEL_NO_": "105204065100", "Tax_Legal_": "EST CONTANT 39 7A SOUTHSIDE QTR", "Name": "CIFRE, V & R. CONDADO LAG", "Address": "OONA TERRACE APT 7B", "City": "Condado", "State": "Puerto Rico", "Zip": 907, "Country": "United States", "Land_Value": 209100, "Improved_V": 664400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.7203335, "SHAPE_Area": 2077.04167358 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355998.628300003707409, 256516.635299999266863 ], [ 355981.888099998235703, 256493.911299999803305 ], [ 355934.14299999922514, 256513.785500001162291 ], [ 355950.746500000357628, 256552.551500000059605 ], [ 355982.351000003516674, 256534.233899999409914 ], [ 355988.848200000822544, 256528.798700001090765 ], [ 355998.628300003707409, 256516.635299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105204051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95044777, "LATITUDE": 18.33801097, "OBJECTID_1": 8733, "PARCEL_NO_": "105204051500", "Tax_Legal_": "CONTANT 110 7B S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 230600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.627020528, "SHAPE_Area": 1522.8289284299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356764.300700001418591, 256466.328899998217821 ], [ 356775.052500002086163, 256434.752900000661612 ], [ 356775.169900000095367, 256434.80629999935627 ], [ 356776.38120000064373, 256431.657000001519918 ], [ 356773.637299999594688, 256429.953899998217821 ], [ 356775.260399997234344, 256427.471599999815226 ], [ 356771.686999998986721, 256426.152100000530481 ], [ 356770.750699996948242, 256425.80629999935627 ], [ 356767.822700001299381, 256431.527300000190735 ], [ 356731.746100001037121, 256501.526200000196695 ], [ 356721.939099997282028, 256516.855700001120567 ], [ 356697.42960000038147, 256554.229800000786781 ], [ 356710.325300000607967, 256554.968600001186132 ], [ 356731.587899997830391, 256520.101100001484156 ], [ 356753.667599998414516, 256483.973700001835823 ], [ 356764.300700001418591, 256466.328899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204050200", "MAP": null, "PARCEL_NAM": "REM 15", "ACRE": null, "LONGITUDE": -64.95088576000001, "LATITUDE": 18.33833165, "OBJECTID_1": 8720, "PARCEL_NO_": "105204050200", "Tax_Legal_": "CONTANT REM 15 7B SOUTHSIDE QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.96950232099999, "SHAPE_Area": 1598.9272028600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356721.939099997282028, 256516.855700001120567 ], [ 356690.634999997913837, 256499.923099998384714 ], [ 356666.885099999606609, 256542.791799999773502 ], [ 356685.36370000243187, 256550.753499999642372 ], [ 356697.42960000038147, 256554.229800000786781 ], [ 356721.939099997282028, 256516.855700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203014000", "MAP": "D9-222-T59", "PARCEL_NAM": "38A", "ACRE": ".07", "LONGITUDE": -64.95871729, "LATITUDE": 18.33845145, "OBJECTID_1": 8505, "PARCEL_NO_": "105203014000", "Tax_Legal_": "CONTANT 38A 7A S S QTR", "Name": "TUGLIFE MARINE LLC", "Address": "PO Box 1255", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 22900, "Improved_V": 66200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.624121666600004, "SHAPE_Area": 342.26627375800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355882.458099998533726, 256522.861699998378754 ], [ 355848.036899998784065, 256537.099399998784065 ], [ 355854.032200001180172, 256546.69370000064373 ], [ 355862.941200003027916, 256542.122499998658895 ], [ 355884.002400003373623, 256530.895899999886751 ], [ 355882.458099998533726, 256522.861699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204065400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95728064, "LATITUDE": 18.33843992, "OBJECTID_1": 8910, "PARCEL_NO_": "105204065400", "Tax_Legal_": "56-1 CONTANT 7A SOUTHSIDE QTR", "Name": "MILLS, BRIDGET A", "Address": "PO Box 303941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50300, "Improved_V": 46900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.722987665000005, "SHAPE_Area": 419.81656399000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356038.742499999701977, 256540.606100000441074 ], [ 356006.651799999177456, 256521.344999998807907 ], [ 356003.395999997854233, 256524.907000001519918 ], [ 355999.319499999284744, 256530.15089999884367 ], [ 355998.495200000703335, 256532.255100000649691 ], [ 356034.649800002574921, 256547.749800000339746 ], [ 356038.742499999701977, 256540.606100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204065500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95723713, "LATITUDE": 18.33834946, "OBJECTID_1": 8911, "PARCEL_NO_": "105204065500", "Tax_Legal_": "56-2 & 56-2A-A EST. CONTANT 7A SOUTHSIDE QTR", "Name": "PAULA, ELADIO TIRADO", "Address": "PO Box 306466", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8400, "Improved_V": 184200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.965641776200002, "SHAPE_Area": 347.22337291700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356040.380300000309944, 256537.664200000464916 ], [ 356017.234600000083447, 256509.610399998724461 ], [ 356006.651799999177456, 256521.344999998807907 ], [ 356038.742499999701977, 256540.606100000441074 ], [ 356040.380300000309944, 256537.664200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9527386, "LATITUDE": 18.33833267, "OBJECTID_1": 8598, "PARCEL_NO_": "105204031200", "Tax_Legal_": "CONTANT 97A&98A 7B S S QTR", "Name": "FLOYD, THYPHINA", "Address": "PO Box 2751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31900, "Improved_V": 109700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.813844274, "SHAPE_Area": 576.06765900300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356517.063799999654293, 256523.622699998319149 ], [ 356507.510300002992153, 256509.190099999308586 ], [ 356494.521200001239777, 256519.427400000393391 ], [ 356479.097000002861023, 256531.544599998742342 ], [ 356487.863899998366833, 256543.648699998855591 ], [ 356517.063799999654293, 256523.622699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204051300", "MAP": "B9-265-T69", "PARCEL_NAM": "44 (fka 16 & 17)", "ACRE": "0.62", "LONGITUDE": -64.95120415, "LATITUDE": 18.33812415, "OBJECTID_1": 8732, "PARCEL_NO_": "105204051300", "Tax_Legal_": "NISKY 42&44 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 690000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.23205849499999, "SHAPE_Area": 2632.5146418200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356693.923199996352196, 256492.561799999326468 ], [ 356650.580099999904633, 256468.986699998378754 ], [ 356629.252700001001358, 256511.453099999576807 ], [ 356637.236699998378754, 256520.806499999016523 ], [ 356650.845100000500679, 256532.528099998831749 ], [ 356666.885099999606609, 256542.791799999773502 ], [ 356690.634999997913837, 256499.923099998384714 ], [ 356693.923199996352196, 256492.561799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204065600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95715271, "LATITUDE": 18.3382741, "OBJECTID_1": 8912, "PARCEL_NO_": "105204065600", "Tax_Legal_": "56-2A, 56-2-1 & 56-2-2 CONTANT 7A SOUTHSIDE QTR", "Name": "RAMOS, JUAN", "Address": "10 Blding Paul M Pearson Gdns", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26600, "Improved_V": 82800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.729745983800001, "SHAPE_Area": 454.02861211800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356044.474799998104572, 256530.309399999678135 ], [ 356030.247100003063679, 256496.629099998623133 ], [ 356017.234600000083447, 256509.610399998724461 ], [ 356040.380300000309944, 256537.664200000464916 ], [ 356044.474799998104572, 256530.309399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203014100", "MAP": "D9-222-T59", "PARCEL_NAM": "16A", "ACRE": ".101", "LONGITUDE": -64.95872167, "LATITUDE": 18.33835031, "OBJECTID_1": 8506, "PARCEL_NO_": "105203014100", "Tax_Legal_": "CONTANT 16A 7A S S QTR", "Name": "TUGLIFE MARINE LLC", "Address": "PO Box 1255", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 65300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.951086098, "SHAPE_Area": 421.28324971199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355882.458099998533726, 256522.861699998378754 ], [ 355880.166900001466274, 256507.85530000180006 ], [ 355844.487700000405312, 256531.205699998885393 ], [ 355846.872500002384186, 256535.236000001430511 ], [ 355848.036899998784065, 256537.099399998784065 ], [ 355882.458099998533726, 256522.861699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203014200", "MAP": "D9-222-T59", "PARCEL_NAM": "8", "ACRE": ".76", "LONGITUDE": -64.95888004, "LATITUDE": 18.33804617, "OBJECTID_1": 8507, "PARCEL_NO_": "105203014200", "Tax_Legal_": "CONTANT 8 7A S S QTR", "Name": "TUGLIFE MARINE LLC", "Address": "PO Box 1255", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 414900, "Improved_V": 575100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.393758402, "SHAPE_Area": 3181.8583426700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355880.166900001466274, 256507.85530000180006 ], [ 355866.950499996542931, 256450.118599999696016 ], [ 355828.0945999994874, 256467.743500001728535 ], [ 355811.077500000596046, 256477.525600001215935 ], [ 355844.487700000405312, 256531.205699998885393 ], [ 355880.166900001466274, 256507.85530000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204065700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9570264, "LATITUDE": 18.33818492, "OBJECTID_1": 8913, "PARCEL_NO_": "105204065700", "Tax_Legal_": "57 EST CONTANT 7A SOUTHSIDE QTR", "Name": "JOSEPH RIEARA REVOCABLE LIVING TRUST", "Address": "PO Box 302932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 202600, "Improved_V": 43700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.376409505, "SHAPE_Area": 645.76480187899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356059.098099999129772, 256517.552400000393391 ], [ 356051.272299997508526, 256489.624000001698732 ], [ 356044.818199999630451, 256489.993400000035763 ], [ 356038.351599998772144, 256491.840300001204014 ], [ 356030.247100003063679, 256496.629099998623133 ], [ 356044.474799998104572, 256530.309399999678135 ], [ 356051.832299999892712, 256518.54839999973774 ], [ 356053.446699999272823, 256518.350499998778105 ], [ 356059.098099999129772, 256517.552400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95292548, "LATITUDE": 18.33821748, "OBJECTID_1": 8588, "PARCEL_NO_": "105204030100", "Tax_Legal_": "CONTANT 97 & 98 7B S S QTR", "Name": "DENNERY, ROSEMARIE", "Address": "PO Box 518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 82300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.096441443900005, "SHAPE_Area": 570.19476262700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356494.521200001239777, 256519.427400000393391 ], [ 356480.194600000977516, 256497.3564000017941 ], [ 356461.566699996590614, 256506.914200000464916 ], [ 356479.097000002861023, 256531.544599998742342 ], [ 356494.521200001239777, 256519.427400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95835702, "LATITUDE": 18.33819408, "OBJECTID_1": 8513, "PARCEL_NO_": "105203014900", "Tax_Legal_": "CONTANT ESTATE 14B 7A SOUTHSIDE QTR", "Name": "KING, HUBERT", "Address": "PO Box 9533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 150300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.82761867799999, "SHAPE_Area": 831.37659075800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355930.980700001120567, 256506.371300000697374 ], [ 355925.462399996817112, 256491.549600001424551 ], [ 355906.0641999989748, 256496.879299998283386 ], [ 355889.898400001227856, 256501.390999998897314 ], [ 355880.166900001466274, 256507.85530000180006 ], [ 355882.458099998533726, 256522.861699998378754 ], [ 355930.980700001120567, 256506.371300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95257719, "LATITUDE": 18.33809841, "OBJECTID_1": 8589, "PARCEL_NO_": "105204030300", "Tax_Legal_": "CONTANT 99 7B SOUTHSIDE QTR", "Name": "VIPWATS CORPORATION", "Address": "3218 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75100, "Improved_V": 91500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.62064098499999, "SHAPE_Area": 885.42057784099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356509.353100001811981, 256482.185199998319149 ], [ 356494.773000001907349, 256489.876299999654293 ], [ 356507.510300002992153, 256509.190099999308586 ], [ 356517.063799999654293, 256523.622699998319149 ], [ 356535.720499999821186, 256510.687600001692772 ], [ 356525.369699999690056, 256495.192999999970198 ], [ 356515.02250000089407, 256479.276299998164177 ], [ 356509.353100001811981, 256482.185199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204065800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95686774000001, "LATITUDE": 18.33814728, "OBJECTID_1": 8914, "PARCEL_NO_": "105204065800", "Tax_Legal_": "58A CONTANT 7A SOUTHSIDE QTR", "Name": "HEDRINGTON, LAVERNE & OTHERS", "Address": "PO Box 1264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31600, "Improved_V": 156500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.374535797700005, "SHAPE_Area": 386.88274439200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356072.015299998223782, 256515.758299998939037 ], [ 356065.795000001788139, 256488.687399998307228 ], [ 356051.272299997508526, 256489.624000001698732 ], [ 356059.098099999129772, 256517.552400000393391 ], [ 356072.015299998223782, 256515.758299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204065200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95738835, "LATITUDE": 18.33807006, "OBJECTID_1": 8908, "PARCEL_NO_": "105204065200", "Tax_Legal_": "EST CONTANT 67 7A SOUTHSIDE QTR", "Name": "CIFRE, V & R. CONDADO LAG", "Address": "OONA TERRACE APT 7B", "City": "Condado", "State": "Puerto Rico", "Zip": 907, "Country": "United States", "Land_Value": 140500, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.92819487200001, "SHAPE_Area": 863.97244886199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356024.761100001633167, 256478.008000001311302 ], [ 356010.213299997150898, 256481.899700000882149 ], [ 355984.315999999642372, 256492.875700000673532 ], [ 355981.888099998235703, 256493.911299999803305 ], [ 355998.628300003707409, 256516.635299999266863 ], [ 356008.406499996781349, 256504.68299999833107 ], [ 356018.168600000441074, 256494.630399998277426 ], [ 356036.839599996805191, 256480.006700001657009 ], [ 356033.652099996805191, 256475.547600001096725 ], [ 356024.761100001633167, 256478.008000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204065900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9567365, "LATITUDE": 18.3381304, "OBJECTID_1": 8915, "PARCEL_NO_": "105204065900", "Tax_Legal_": "58 CONTANT 7A SOUTHSIDE QTR", "Name": "BURELL, MARILYN", "Address": "4510 Coddington Loop", "City": "Wilmington", "State": "North Carolina", "Zip": 28405, "Country": "United States", "Land_Value": 29000, "Improved_V": 55000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.872030724699997, "SHAPE_Area": 384.8387373 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356084.124399997293949, 256514.168600000441074 ], [ 356081.931999996304512, 256487.55290000140667 ], [ 356065.795000001788139, 256488.687399998307228 ], [ 356072.015299998223782, 256515.758299998939037 ], [ 356084.124399997293949, 256514.168600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204065000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95796263, "LATITUDE": 18.33791665, "OBJECTID_1": 8906, "PARCEL_NO_": "105204065000", "Tax_Legal_": "EST CONTANT 40 7A SOUTHSIDE QTR", "Name": "CIFRE, V & R. CONDADO LAGO", "Address": "ONA TERRACE APT 7B", "City": "Condado", "State": "Puerto Rico", "Zip": 907, "Country": "United States", "Land_Value": 382200, "Improved_V": 164200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.92262368299998, "SHAPE_Area": 3072.07441354 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355926.781199999153614, 256431.398699998855591 ], [ 355943.733599998056889, 256429.215500000864267 ], [ 355943.708400003612041, 256432.1706000007689 ], [ 355948.465300001204014, 256441.708700001239777 ], [ 355910.376199997961521, 256463.984000001102686 ], [ 355925.462399996817112, 256491.549600001424551 ], [ 355930.980700001120567, 256506.371300000697374 ], [ 355934.14299999922514, 256513.785500001162291 ], [ 355981.888099998235703, 256493.911299999803305 ], [ 355984.315999999642372, 256492.875700000673532 ], [ 355945.371399998664856, 256426.273600000888109 ], [ 355926.781199999153614, 256431.398699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204066000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95653499, "LATITUDE": 18.33811476, "OBJECTID_1": 8916, "PARCEL_NO_": "105204066000", "Tax_Legal_": "59 EST CONTANT 7A SOUTHSIDE QTR", "Name": "SCHNEIDER, WINIFRED E", "Address": "1909 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66400, "Improved_V": 85800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.887185929, "SHAPE_Area": 737.50717416299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356112.381300002336502, 256510.177999999374151 ], [ 356110.977200001478195, 256485.679699998348951 ], [ 356081.931999996304512, 256487.55290000140667 ], [ 356084.124399997293949, 256514.168600000441074 ], [ 356112.381300002336502, 256510.177999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050300", "MAP": "B9-171-T67", "PARCEL_NAM": "15-A", "ACRE": "0.73", "LONGITUDE": -64.95054995, "LATITUDE": 18.33775863, "OBJECTID_1": 8721, "PARCEL_NO_": "105204050300", "Tax_Legal_": "CONTANT 15A 7B SOUTHSIDE QTR", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 400700, "Improved_V": 1102200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.66880195300001, "SHAPE_Area": 3640.2529242000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356767.822700001299381, 256431.527300000190735 ], [ 356770.750699996948242, 256425.80629999935627 ], [ 356763.861199997365475, 256423.262200001627207 ], [ 356750.184500001370907, 256419.561700001358986 ], [ 356737.297899998724461, 256417.767499998211861 ], [ 356734.882500000298023, 256417.325500000268221 ], [ 356729.969099998474121, 256426.151200000196695 ], [ 356693.923199996352196, 256492.561799999326468 ], [ 356690.634999997913837, 256499.923099998384714 ], [ 356721.939099997282028, 256516.855700001120567 ], [ 356731.746100001037121, 256501.526200000196695 ], [ 356767.822700001299381, 256431.527300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204064300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95624234, "LATITUDE": 18.33808512, "OBJECTID_1": 8899, "PARCEL_NO_": "105204064300", "Tax_Legal_": "60 EST CONTANT 7A SOUTHSIDE QTR", "Name": "RHYMER, ADA", "Address": "BOX 4927", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72700, "Improved_V": 72200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.858897036, "SHAPE_Area": 839.97294315900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356143.84179999679327, 256508.746800001710653 ], [ 356144.075599998235703, 256481.306499999016523 ], [ 356110.977200001478195, 256485.679699998348951 ], [ 356112.381300002336502, 256510.177999999374151 ], [ 356143.84179999679327, 256508.746800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95855583, "LATITUDE": 18.3379614, "OBJECTID_1": 8508, "PARCEL_NO_": "105203014300", "Tax_Legal_": "CONTANT ESTATE 14C 7A SOUTHSIDE QTR.", "Name": "PERKINS, ALEXIUS", "Address": "PO Box 305230", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78400, "Improved_V": 135200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.41615017300001, "SHAPE_Area": 970.94646110899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355906.0641999989748, 256496.879299998283386 ], [ 355872.616200000047684, 256447.631799999624491 ], [ 355866.950499996542931, 256450.118599999696016 ], [ 355880.166900001466274, 256507.85530000180006 ], [ 355889.898400001227856, 256501.390999998897314 ], [ 355906.0641999989748, 256496.879299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204064200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95593139, "LATITUDE": 18.33805711, "OBJECTID_1": 8898, "PARCEL_NO_": "105204064200", "Tax_Legal_": "61 EST CONTANT 7A SOUTHSIDE QTR", "Name": "HODGE, LAWRENCE & MARIA", "Address": "BOX 4511", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71900, "Improved_V": 20500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.18438917100001, "SHAPE_Area": 969.07578793000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356177.723099999129772, 256507.124200001358986 ], [ 356177.175800003111362, 256476.722300000488758 ], [ 356144.075599998235703, 256481.306499999016523 ], [ 356143.84179999679327, 256508.746800001710653 ], [ 356177.723099999129772, 256507.124200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95231315, "LATITUDE": 18.33803962, "OBJECTID_1": 8591, "PARCEL_NO_": "105204030500", "Tax_Legal_": "CONTANT 1O1 7B SOUTHSIDE QUARTER", "Name": "VIPWATS CORPORATION", "Address": "3218 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.081434738499993, "SHAPE_Area": 512.15530468999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356554.528200000524521, 256480.021800000220537 ], [ 356525.369699999690056, 256495.192999999970198 ], [ 356535.720499999821186, 256510.687600001692772 ], [ 356561.696900002658367, 256490.424100000411272 ], [ 356554.528200000524521, 256480.021800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204051600", "MAP": "D9-774-T68", "PARCEL_NAM": "43", "ACRE": "1.50", "LONGITUDE": -64.95160105, "LATITUDE": 18.33755367, "OBJECTID_1": 8734, "PARCEL_NO_": "105204051600", "Tax_Legal_": "SUBMARINE BASE 43(FKA #SB43) 6B SOUTHSIDE QUARTER", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 659300, "Improved_V": 1958000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.09530506200002, "SHAPE_Area": 6695.9826830399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356595.96339999884367, 256400.075599998235703 ], [ 356573.731499999761581, 256395.961899999529123 ], [ 356571.75450000166893, 256398.817600000649691 ], [ 356561.535099998116493, 256413.218800000846386 ], [ 356563.922700002789497, 256418.459399998188019 ], [ 356567.092200003564358, 256425.029199998825788 ], [ 356629.252700001001358, 256511.453099999576807 ], [ 356650.580099999904633, 256468.986699998378754 ], [ 356678.36429999768734, 256418.126600001007318 ], [ 356654.737400002777576, 256413.638999998569489 ], [ 356640.132399998605251, 256410.146499998867512 ], [ 356595.96339999884367, 256400.075599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204067800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95564378, "LATITUDE": 18.33802116, "OBJECTID_1": 8917, "PARCEL_NO_": "105204067800", "Tax_Legal_": "62 EST CONTANT 7A SOUTHSIDE QTR", "Name": "HODGE, LAWRENCE & MARIA", "Address": "BOX 4511", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75100, "Improved_V": 88800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.934788779, "SHAPE_Area": 862.525051588 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356205.981799997389317, 256502.922600001096725 ], [ 356204.633500002324581, 256471.880800001323223 ], [ 356177.175800003111362, 256476.722300000488758 ], [ 356177.723099999129772, 256507.124200001358986 ], [ 356180.143899999558926, 256506.93299999833107 ], [ 356205.981799997389317, 256502.922600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204050168", "MAP": "D9-1280-T76", "PARCEL_NAM": "13", "ACRE": null, "LONGITUDE": -64.94825143, "LATITUDE": 18.33797841, "OBJECTID_1": 8691, "PARCEL_NO_": "105204050168", "Tax_Legal_": "CROWN BAY 13 S S QTR", "Name": "V. I. IND. GASES INC.", "Address": "13 CROWN BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 269000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.00827186699999, "SHAPE_Area": 780.14668303200006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356965.880599997937679, 256467.767599999904633 ], [ 356963.175800003111362, 256501.309399999678135 ], [ 356962.347900003194809, 256503.835700001567602 ], [ 356959.914599999785423, 256505.50450000166893 ], [ 356955.076700001955032, 256505.464999999850988 ], [ 356967.925499998033047, 256511.691799998283386 ], [ 356983.25450000166893, 256510.761799998581409 ], [ 356981.182599999010563, 256470.003800000995398 ], [ 356965.880599997937679, 256467.767599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95281735, "LATITUDE": 18.33791952, "OBJECTID_1": 8593, "PARCEL_NO_": "105204030700", "Tax_Legal_": "CONTANT 1O3A 7B SOUTHSIDE QUARTER", "Name": "DENNERY, RUTH", "Address": "PO Box 518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040518, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.136559807, "SHAPE_Area": 999.62531818399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356459.151399999856949, 256506.472300000488758 ], [ 356461.566699996590614, 256506.914200000464916 ], [ 356480.194600000977516, 256497.3564000017941 ], [ 356494.773000001907349, 256489.876299999654293 ], [ 356509.353100001811981, 256482.185199998319149 ], [ 356514.390600003302097, 256458.795099999755621 ], [ 356482.044600002467632, 256469.507199998944998 ], [ 356479.575300000607967, 256475.397599998861551 ], [ 356475.487999998033047, 256481.907999999821186 ], [ 356474.649300001561642, 256485.700899999588728 ], [ 356459.151399999856949, 256506.472300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204063800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95537129, "LATITUDE": 18.33797409, "OBJECTID_1": 8894, "PARCEL_NO_": "105204063800", "Tax_Legal_": "63 EST CONTANT 7A SOUTHSIDE QTR", "Name": "TURNBULL, W, F & M", "Address": "PO Box 11094", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75900, "Improved_V": 71400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.297459567, "SHAPE_Area": 939.37515377900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356235.050399996340275, 256498.305300001055002 ], [ 356235.320200003683567, 256466.643500000238419 ], [ 356204.633500002324581, 256471.880800001323223 ], [ 356205.981799997389317, 256502.922600001096725 ], [ 356235.050399996340275, 256498.305300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95840587000001, "LATITUDE": 18.33784364, "OBJECTID_1": 8509, "PARCEL_NO_": "105203014400", "Tax_Legal_": "CONTANT ESTATE 14A 7A SOUTHSIDE QTR", "Name": "GEJAN, INC", "Address": "PO Box 302305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 176400, "Improved_V": 325600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.75509258100001, "SHAPE_Area": 1317.91476902 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355910.376199997961521, 256463.984000001102686 ], [ 355896.877499997615814, 256439.386599998921156 ], [ 355872.616200000047684, 256447.631799999624491 ], [ 355906.0641999989748, 256496.879299998283386 ], [ 355925.462399996817112, 256491.549600001424551 ], [ 355910.376199997961521, 256463.984000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204063300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95479657, "LATITUDE": 18.33805335, "OBJECTID_1": 8890, "PARCEL_NO_": "105204063300", "Tax_Legal_": "CONTANT 168 7A SOUTHSIDE QTR", "Name": "LUTHER BENJAMIN", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 50300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.47435195400001, "SHAPE_Area": 368.26070867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356319.043300002813339, 256486.247999999672174 ], [ 356319.11429999768734, 256485.142200000584126 ], [ 356298.030900001525879, 256488.477200001478195 ], [ 356263.310900002717972, 256493.892599999904633 ], [ 356239.087399996817112, 256497.705099999904633 ], [ 356280.193199999630451, 256499.941300000995398 ], [ 356319.043300002813339, 256486.247999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071800", "MAP": "A9-504-T98", "PARCEL_NAM": "47", "ACRE": "0.34", "LONGITUDE": -64.94670611, "LATITUDE": 18.33799095, "OBJECTID_1": 10940, "PARCEL_NO_": "105303071800", "Tax_Legal_": "ALTONA 193, 194, 201 & 203 KRONP. QTR.", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "66 Boetzberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 570000, "Improved_V": 8285800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.265785376, "SHAPE_Area": 1106.56751403 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357095.331000000238419, 256490.012800000607967 ], [ 357104.20269999653101, 256493.684999998658895 ], [ 357146.181699998676777, 256505.973600000143051 ], [ 357152.626800000667572, 256506.659600000828505 ], [ 357168.763899996876717, 256505.525100000202656 ], [ 357170.505999997258186, 256490.340700000524521 ], [ 357096.39360000193119, 256481.712499998509884 ], [ 357095.331000000238419, 256490.012800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204063200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9550966, "LATITUDE": 18.33793017, "OBJECTID_1": 8889, "PARCEL_NO_": "105204063200", "Tax_Legal_": "64 CONTANT NO 7A SOUTHSIDE QTR", "Name": "PEREZ, DANIEL J.", "Address": "PO Box 10154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69500, "Improved_V": 117800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.025825219, "SHAPE_Area": 899.97169645500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356263.310900002717972, 256493.892599999904633 ], [ 356263.584299996495247, 256461.808600001037121 ], [ 356235.320200003683567, 256466.643500000238419 ], [ 356235.050399996340275, 256498.305300001055002 ], [ 356239.087399996817112, 256497.705099999904633 ], [ 356263.310900002717972, 256493.892599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071800", "MAP": "A9-504-T98", "PARCEL_NAM": "48", "ACRE": "4980 sq ft", "LONGITUDE": -64.94616842000001, "LATITUDE": 18.33802689, "OBJECTID_1": 10940, "PARCEL_NO_": "105303071800", "Tax_Legal_": "ALTONA 193, 194, 201 & 203 KRONP. QTR.", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "66 Boetzberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 570000, "Improved_V": 8285800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.471586086, "SHAPE_Area": 568.06554663700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357168.763899996876717, 256505.525100000202656 ], [ 357180.873000003397465, 256503.935499999672174 ], [ 357201.027199998497963, 256504.522599998861551 ], [ 357213.940800003707409, 256503.150699999183416 ], [ 357222.835400000214577, 256500.268199998885393 ], [ 357227.701999999582767, 256496.930500000715256 ], [ 357170.505999997258186, 256490.340700000524521 ], [ 357168.763899996876717, 256505.525100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204064900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95753241, "LATITUDE": 18.337695, "OBJECTID_1": 8905, "PARCEL_NO_": "105204064900", "Tax_Legal_": "83 ESTATE CONTANT 7A SOUTHSIDE QTR", "Name": "DAAS ENTERPRISES INC", "Address": "PO Box 502967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 343000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.10161287800003, "SHAPE_Area": 3741.0743817299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356024.761100001633167, 256478.008000001311302 ], [ 356021.229500003159046, 256419.295099999755621 ], [ 356009.935699999332428, 256419.835900001227856 ], [ 356002.6537000015378, 256422.731600001454353 ], [ 355987.310400001704693, 256425.35020000115037 ], [ 355966.331900000572205, 256426.867300000041723 ], [ 355958.283100001513958, 256425.112700000405312 ], [ 355945.371399998664856, 256426.273600000888109 ], [ 355984.315999999642372, 256492.875700000673532 ], [ 356010.213299997150898, 256481.899700000882149 ], [ 356024.761100001633167, 256478.008000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.94852865, "LATITUDE": 18.33787103, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.288268867, "SHAPE_Area": 1057.6689566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356929.657700002193451, 256460.293999999761581 ], [ 356926.155500002205372, 256492.773699998855591 ], [ 356928.570900000631809, 256493.215700000524521 ], [ 356945.478299997746944, 256496.309399999678135 ], [ 356957.544200003147125, 256499.785599999129772 ], [ 356960.26519999653101, 256464.344200000166893 ], [ 356929.657700002193451, 256460.293999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204063100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95479463, "LATITUDE": 18.33787327, "OBJECTID_1": 8888, "PARCEL_NO_": "105204063100", "Tax_Legal_": "EST CONTANT 65 7A SOUTHSIDE QTR", "Name": "LUTHER BENJAMIN", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 72700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.58536093699999, "SHAPE_Area": 1185.32274549 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356298.030900001525879, 256488.477200001478195 ], [ 356299.141099996864796, 256452.811500001698732 ], [ 356263.584299996495247, 256461.808600001037121 ], [ 356263.310900002717972, 256493.892599999904633 ], [ 356298.030900001525879, 256488.477200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95239755, "LATITUDE": 18.33790478, "OBJECTID_1": 8592, "PARCEL_NO_": "105204030600", "Tax_Legal_": "CONTANT 1O2 7B SOUTHSIDE QUARTER", "Name": "VIPWATS CORPORATION", "Address": "3218 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68600, "Improved_V": 256700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.03001703, "SHAPE_Area": 618.87385652600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356544.182800002396107, 256463.894000001251698 ], [ 356515.02250000089407, 256479.276299998164177 ], [ 356525.369699999690056, 256495.192999999970198 ], [ 356554.528200000524521, 256480.021800000220537 ], [ 356548.151399999856949, 256471.314800001680851 ], [ 356544.182800002396107, 256463.894000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204051800", "MAP": "C9-289-T85", "PARCEL_NAM": "144-1 (fka 16 & 17)", "ACRE": "0.76", "LONGITUDE": -64.95094388, "LATITUDE": 18.33764972, "OBJECTID_1": 8735, "PARCEL_NO_": "105204051800", "Tax_Legal_": "SUBBASE 144-A (FKA 44,44A&SB\"D\") 6B SOUTHSIDE", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 411600, "Improved_V": 1877400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.79946978000001, "SHAPE_Area": 3188.0622177499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356728.032300002872944, 256429.719500001519918 ], [ 356678.36429999768734, 256418.126600001007318 ], [ 356650.580099999904633, 256468.986699998378754 ], [ 356693.923199996352196, 256492.561799999326468 ], [ 356728.032300002872944, 256429.719500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204062800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95452563000001, "LATITUDE": 18.33781198, "OBJECTID_1": 8886, "PARCEL_NO_": "105204062800", "Tax_Legal_": "66 EST CONTANT 7A SOUTHSIDE QTR", "Name": "PRINCE (life estate), MIRIAM A.", "Address": "PO Box 303978", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88200, "Improved_V": 130900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.738643807, "SHAPE_Area": 817.16352374099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356319.11429999768734, 256485.142200000584126 ], [ 356321.800599999725819, 256443.28660000115633 ], [ 356308.838500000536442, 256450.357700001448393 ], [ 356299.141099996864796, 256452.811500001698732 ], [ 356298.030900001525879, 256488.477200001478195 ], [ 356319.11429999768734, 256485.142200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204050100", "MAP": "G9-2408-T74", "PARCEL_NAM": "11", "ACRE": ".277", "LONGITUDE": -64.94886884, "LATITUDE": 18.33781327, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.566190476, "SHAPE_Area": 1262.5588891100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356884.60530000180006, 256482.492199998348951 ], [ 356899.905900001525879, 256485.22749999910593 ], [ 356922.706399999558926, 256492.154199998825788 ], [ 356926.155500002205372, 256492.773699998855591 ], [ 356929.657700002193451, 256460.293999999761581 ], [ 356887.772600002586842, 256454.884899999946356 ], [ 356884.60530000180006, 256482.492199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204068300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95706374, "LATITUDE": 18.33789973, "OBJECTID_1": 8922, "PARCEL_NO_": "105204068300", "Tax_Legal_": "CONTANT ESTATE 67-1 7A SOUTHSIDE QTR.", "Name": "TRUST AGREEMENT OF FITZHERBERT HARRY", "Address": "PO Box 305463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8700, "Improved_V": 17300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.3354301456, "SHAPE_Area": 54.2116048173 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356053.860299997031689, 256469.802400000393391 ], [ 356033.652099996805191, 256475.547600001096725 ], [ 356036.839599996805191, 256480.006700001657009 ], [ 356053.860299997031689, 256469.802400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204064400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95660944, "LATITUDE": 18.3378722, "OBJECTID_1": 8900, "PARCEL_NO_": "105204064400", "Tax_Legal_": "73 EST CONTANT 7A SOUTHSIDE QTR", "Name": "TILLMAN, CHRISTIAN L.", "Address": "PO BOX 610", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 130700, "Improved_V": 177900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.971920854, "SHAPE_Area": 448.66713153799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356108.635600000619888, 256476.583500001579523 ], [ 356107.156000003218651, 256460.950500000268221 ], [ 356068.337999999523163, 256474.142700001597404 ], [ 356059.441600002348423, 256477.236299999058247 ], [ 356059.420000001788139, 256479.769299998879433 ], [ 356108.635600000619888, 256476.583500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404132300", "MAP": "M.B.", "PARCEL_NAM": "23 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.9168016, "LATITUDE": 18.3378278, "OBJECTID_1": 19518, "PARCEL_NO_": "105404132300", "Tax_Legal_": "23 NINTH STREET KINGS QUARTER", "Name": "STOLLIARD, ALBERTO J", "Address": "PO Box 1604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12500, "Improved_V": 67800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.048398849400002, "SHAPE_Area": 418.79620416400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360311.179399996995926, 256505.913100000470877 ], [ 360305.675399996340275, 256489.402699999511242 ], [ 360283.023100003600121, 256498.083299998193979 ], [ 360288.528899997472763, 256514.382500000298023 ], [ 360311.179399996995926, 256505.913100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95247869000001, "LATITUDE": 18.33776017, "OBJECTID_1": 8594, "PARCEL_NO_": "105204030800", "Tax_Legal_": "CONTANT 1O3 7B SOUTHSIDE QUARTER", "Name": "VIPWATS CORPORATION", "Address": "3218 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49000, "Improved_V": 186200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.445125426, "SHAPE_Area": 601.08624888300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356536.267099998891354, 256446.519600000232458 ], [ 356514.390600003302097, 256458.795099999755621 ], [ 356509.353100001811981, 256482.185199998319149 ], [ 356515.02250000089407, 256479.276299998164177 ], [ 356544.182800002396107, 256463.894000001251698 ], [ 356536.267099998891354, 256446.519600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204064800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95709304, "LATITUDE": 18.33763724, "OBJECTID_1": 8904, "PARCEL_NO_": "105204064800", "Tax_Legal_": "82 ESTATE CONTANT 7A SOUTHSIDE QTR", "Name": "DAAS ENTERPRISES INC", "Address": "PO Box 502967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 320200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.31988692300001, "SHAPE_Area": 1774.4089831599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356024.761100001633167, 256478.008000001311302 ], [ 356033.652099996805191, 256475.547600001096725 ], [ 356053.860299997031689, 256469.802400000393391 ], [ 356056.286399997770786, 256468.977899998426437 ], [ 356053.498099997639656, 256417.659299999475479 ], [ 356021.229500003159046, 256419.295099999755621 ], [ 356024.761100001633167, 256478.008000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204068200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95632919000001, "LATITUDE": 18.3378087, "OBJECTID_1": 8921, "PARCEL_NO_": "105204068200", "Tax_Legal_": "CONTANT 74A 7A S S QTR", "Name": "VENTURA, IGNACIO", "Address": "PO Box 8522", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 35900, "Improved_V": 190600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.721894748699995, "SHAPE_Area": 408.24192322800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356128.813199996948242, 256474.426600001752377 ], [ 356129.810099996626377, 256452.058899998664856 ], [ 356107.156000003218651, 256460.950500000268221 ], [ 356108.635600000619888, 256476.583500001579523 ], [ 356128.813199996948242, 256474.426600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204064700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95682084000001, "LATITUDE": 18.33758262, "OBJECTID_1": 8903, "PARCEL_NO_": "105204064700", "Tax_Legal_": "70 ESTATE CONTANT 7A SOUTHSIDE QTR", "Name": "DAAS ENTERPRISES INC", "Address": "PO Box 502967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 267900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.08686640799999, "SHAPE_Area": 1220.98264096 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356081.366599999368191, 256459.261700000613928 ], [ 356080.120800003409386, 256416.188499998301268 ], [ 356053.498099997639656, 256417.659299999475479 ], [ 356056.286399997770786, 256468.977899998426437 ], [ 356060.334200002253056, 256467.111200001090765 ], [ 356070.855800002813339, 256462.553199999034405 ], [ 356081.366599999368191, 256459.261700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95263395000001, "LATITUDE": 18.33764869, "OBJECTID_1": 8595, "PARCEL_NO_": "105204030900", "Tax_Legal_": "CONTANT 104 SOUTHSIDE QUARTER 7B", "Name": "FRANCIS, GEORGIA & CLARK, TAHMIN", "Address": "14-6 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54800, "Improved_V": 130300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.40509427699999, "SHAPE_Area": 811.46275518699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356528.30290000140667, 256434.844300001859665 ], [ 356491.896600000560284, 256448.900699999183416 ], [ 356488.610200002789497, 256456.050900001078844 ], [ 356482.044600002467632, 256469.507199998944998 ], [ 356514.390600003302097, 256458.795099999755621 ], [ 356536.267099998891354, 256446.519600000232458 ], [ 356532.307499997317791, 256438.043400000780821 ], [ 356531.522799998521805, 256435.503899998962879 ], [ 356531.538900002837181, 256433.604200001806021 ], [ 356528.30290000140667, 256434.844300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95820372, "LATITUDE": 18.33763521, "OBJECTID_1": 8510, "PARCEL_NO_": "105203014500", "Tax_Legal_": "CONTANT 40 1 SOUTHSIDE QTR", "Name": "DOMINO OIL CO.", "Address": "1000 Estate Ross", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 150300, "Improved_V": 52100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.36692008200001, "SHAPE_Area": 908.56649657900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355943.708400003612041, 256432.1706000007689 ], [ 355923.523599997162819, 256435.171799998730421 ], [ 355918.698299996554852, 256433.654599998146296 ], [ 355916.28660000115633, 256432.790500000119209 ], [ 355896.877499997615814, 256439.386599998921156 ], [ 355910.376199997961521, 256463.984000001102686 ], [ 355948.465300001204014, 256441.708700001239777 ], [ 355943.708400003612041, 256432.1706000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204068100", "MAP": "F9-3445-T76", "PARCEL_NAM": "76B", "ACRE": null, "LONGITUDE": -64.9554617, "LATITUDE": 18.33770737, "OBJECTID_1": 8920, "PARCEL_NO_": "105204068100", "Tax_Legal_": "76B CONTANT 7A S S QTR", "Name": "BEVERLY ANNE MAGRAS REVOC LIVING TRUST AGREEMENT", "Address": "PO Box 304650", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23200, "Improved_V": 45400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.763870392, "SHAPE_Area": 444.24008558000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356228.939800001680851, 256458.358600001782179 ], [ 356229.834200002253056, 256448.022399999201298 ], [ 356202.421400003135204, 256447.586899999529123 ], [ 356200.752999998629093, 256454.11710000038147 ], [ 356191.878200002014637, 256454.677799999713898 ], [ 356191.795500002801418, 256464.38740000128746 ], [ 356228.939800001680851, 256458.358600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204064600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95659615, "LATITUDE": 18.33754045, "OBJECTID_1": 8902, "PARCEL_NO_": "105204064600", "Tax_Legal_": "CONTANT 71 7A SOUTHSIDE QTR", "Name": "SMITH, JEANETTE", "Address": "PO Box 512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 66600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.50973891, "SHAPE_Area": 866.356378393 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356102.388300001621246, 256452.678800001740456 ], [ 356101.902099996805191, 256415.10020000115037 ], [ 356080.120800003409386, 256416.188499998301268 ], [ 356081.366599999368191, 256459.261700000613928 ], [ 356102.388300001621246, 256452.678800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204063400", "MAP": null, "PARCEL_NAM": "77A", "ACRE": null, "LONGITUDE": -64.95515689, "LATITUDE": 18.33763454, "OBJECTID_1": 8891, "PARCEL_NO_": "105204063400", "Tax_Legal_": "77A CONTANT 7A SOUTHSIDE QTR", "Name": "DANET, GARY & MARIA", "Address": "6311 SW 35TH P", "City": "Hollywood", "State": "Florida", "Zip": 33023, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.577860772700006, "SHAPE_Area": 482.70899037200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356229.907999999821186, 256439.368099998682737 ], [ 356229.880999997258186, 256442.534299999475479 ], [ 356229.834200002253056, 256448.022399999201298 ], [ 356228.939800001680851, 256458.358600001782179 ], [ 356239.438000001013279, 256456.544700000435114 ], [ 356257.202100001275539, 256453.7347999997437 ], [ 356258.107299998402596, 256442.131999999284744 ], [ 356258.141500003635883, 256438.121500000357628 ], [ 356229.907999999821186, 256439.368099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204063500", "MAP": "D9-8024-T007", "PARCEL_NAM": "76-REM", "ACRE": ".19", "LONGITUDE": -64.95551143, "LATITUDE": 18.337501, "OBJECTID_1": 8892, "PARCEL_NO_": "105204063500", "Tax_Legal_": "EST CONTANT 76 SOUTHSIDE QTR. 7A", "Name": "BEVERLY ANNE MAGRAS REVOCABLE LIVING TRUST", "Address": "PO Box 304650", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63200, "Improved_V": 66200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.705889176, "SHAPE_Area": 981.92459452900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356229.880999997258186, 256442.534299999475479 ], [ 356220.226800002157688, 256439.922200001776218 ], [ 356213.086900003254414, 256426.142700001597404 ], [ 356213.241499997675419, 256407.989900000393391 ], [ 356195.491899996995926, 256409.111200001090765 ], [ 356191.878200002014637, 256454.677799999713898 ], [ 356200.752999998629093, 256454.11710000038147 ], [ 356202.421400003135204, 256447.586899999529123 ], [ 356229.834200002253056, 256448.022399999201298 ], [ 356229.880999997258186, 256442.534299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204064500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9563447, "LATITUDE": 18.33749465, "OBJECTID_1": 8901, "PARCEL_NO_": "105204064500", "Tax_Legal_": "72 ESTATE CONTANT 7A S S QTR", "Name": "SPENCELEY, MARIA,BERNARD & DAVID CANCEL&LUZ C. MARTINEZ TRUST", "Address": "PO Box 292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 313600, "Improved_V": 123000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.54380371600001, "SHAPE_Area": 1085.4118638899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356101.902099996805191, 256415.10020000115037 ], [ 356102.388300001621246, 256452.678800001740456 ], [ 356115.323499999940395, 256448.773899998515844 ], [ 356128.269400000572205, 256443.60249999910593 ], [ 356131.512699998915195, 256441.518100000917912 ], [ 356136.408100001513958, 256434.803199999034405 ], [ 356137.297100000083447, 256425.10020000115037 ], [ 356131.75, 256413.655699998140335 ], [ 356101.902099996805191, 256415.10020000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204062500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95364072, "LATITUDE": 18.33740604, "OBJECTID_1": 8883, "PARCEL_NO_": "105204062500", "Tax_Legal_": "CONTANT 2A-1 SOUTHSIDE QTR. 7A", "Name": "ANDRE, NOEL E. & CHRISTINE", "Address": "PO Box 10513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30700, "Improved_V": 374600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.76072969800001, "SHAPE_Area": 969.61179618999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356423.772399999201298, 256440.733300000429153 ], [ 356406.822999998927116, 256401.763799998909235 ], [ 356388.274300001561642, 256402.034200001507998 ], [ 356394.377700001001358, 256442.825199998915195 ], [ 356423.772399999201298, 256440.733300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503036300", "MAP": "G9-2492-T75", "PARCEL_NAM": "14B-2", "ACRE": ".24", "LONGITUDE": -64.91189757, "LATITUDE": 18.33768721, "OBJECTID_1": 20116, "PARCEL_NO_": "105503036300", "Tax_Legal_": "14B-2 EST THOMAS NEW QTR", "Name": "SHAWN BROWN & ELFA FERNANDES", "Address": "2802 Silke Gade Apt 1A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026646, "Country": "United States", "Land_Value": 53200, "Improved_V": 115600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.589618659, "SHAPE_Area": 1076.0037369199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360819.867700003087521, 256475.44200000166893 ], [ 360801.262100003659725, 256474.95719999819994 ], [ 360797.160700000822544, 256484.048599999397993 ], [ 360794.4003000035882, 256490.167599998414516 ], [ 360792.848600000143051, 256490.124800000339746 ], [ 360791.878200002014637, 256493.804299999028444 ], [ 360790.448399998247623, 256498.757100000977516 ], [ 360839.44879999756813, 256507.522399999201298 ], [ 360831.243600003421307, 256481.033500000834465 ], [ 360829.929099999368191, 256477.195799998939037 ], [ 360823.332599997520447, 256476.046000000089407 ], [ 360819.867700003087521, 256475.44200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204062400", "MAP": null, "PARCEL_NAM": "2C", "ACRE": "0.92", "LONGITUDE": -64.95408678, "LATITUDE": 18.33741467, "OBJECTID_1": 8882, "PARCEL_NO_": "105204062400", "Tax_Legal_": "2C CONTANT 7A S S QTR", "Name": "CB INVESTMENTS LLC", "Address": "3219 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 463900, "Improved_V": 2039400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.601651901, "SHAPE_Area": 2934.3568546800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356394.377700001001358, 256442.825199998915195 ], [ 356388.274300001561642, 256402.034200001507998 ], [ 356326.179200001060963, 256402.581399999558926 ], [ 356321.341300003230572, 256402.541799999773502 ], [ 356322.124300003051758, 256405.292399998754263 ], [ 356323.539099998772144, 256428.524300001561642 ], [ 356321.800599999725819, 256443.28660000115633 ], [ 356321.576099999248981, 256446.784499999135733 ], [ 356321.960600003600121, 256446.762299999594688 ], [ 356328.222300000488758, 256446.716699998825788 ], [ 356394.377700001001358, 256442.825199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204062600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95340157, "LATITUDE": 18.33737506, "OBJECTID_1": 8884, "PARCEL_NO_": "105204062600", "Tax_Legal_": "ESTATE CONTANT 2A SOUTHSIDE QTR. 7A", "Name": "ANDRE, NOEL E. & CHRISTINE", "Address": "PO Box 10513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 401200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.89053192099999, "SHAPE_Area": 1087.0682494600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356449.136900000274181, 256438.928199999034405 ], [ 356437.468299999833107, 256401.381299998611212 ], [ 356406.822999998927116, 256401.763799998909235 ], [ 356423.772399999201298, 256440.733300000429153 ], [ 356449.136900000274181, 256438.928199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204064000", "MAP": "D9-674-T67", "PARCEL_NAM": "76A", "ACRE": null, "LONGITUDE": -64.95535454, "LATITUDE": 18.33741474, "OBJECTID_1": 8896, "PARCEL_NO_": "105204064000", "Tax_Legal_": "76A CONTANT 7A SOUTHSIDE QTR", "Name": "THOMAS, CECIL & DIANE", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26100, "Improved_V": 49500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.918266727700001, "SHAPE_Area": 523.72884181300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356229.907999999821186, 256439.368099998682737 ], [ 356230.989399999380112, 256407.079700000584126 ], [ 356213.241499997675419, 256407.989900000393391 ], [ 356213.086900003254414, 256426.142700001597404 ], [ 356220.226800002157688, 256439.922200001776218 ], [ 356229.880999997258186, 256442.534299999475479 ], [ 356229.907999999821186, 256439.368099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204063600", "MAP": null, "PARCEL_NAM": "77", "ACRE": null, "LONGITUDE": -64.95514134, "LATITUDE": 18.33740791, "OBJECTID_1": 8893, "PARCEL_NO_": "105204063600", "Tax_Legal_": "77 CONTANT 7A SOUTHSIDE QTR", "Name": "MUGHAL PROPERTIES LLC", "Address": "Po Box 503203", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 55000, "Improved_V": 50200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.284769383, "SHAPE_Area": 946.01112696799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356260.803199999034405, 256409.645700000226498 ], [ 356260.839100003242493, 256405.424100000411272 ], [ 356230.989399999380112, 256407.079700000584126 ], [ 356229.907999999821186, 256439.368099998682737 ], [ 356258.141500003635883, 256438.121500000357628 ], [ 356260.803199999034405, 256409.645700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503032200", "MAP": "B9-283-T70", "PARCEL_NAM": "14R-3", "ACRE": ".12", "LONGITUDE": -64.9103438, "LATITUDE": 18.33733809, "OBJECTID_1": 20079, "PARCEL_NO_": "105503032200", "Tax_Legal_": "14R-3&14R-4 EST THOMAS NEW QTR.", "Name": "WILLIE, THOMAS", "Address": "P.O.BOX 3564", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75100, "Improved_V": 209800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.436702106, "SHAPE_Area": 908.59609997500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360974.399800002574921, 256464.842999998480082 ], [ 360996.28490000218153, 256475.960200000554323 ], [ 360992.75, 256438.770599998533726 ], [ 360968.150700002908707, 256436.985100001096725 ], [ 360963.249899998307228, 256444.333299998193979 ], [ 360962.402199998497963, 256449.181499999016523 ], [ 360958.717500001192093, 256453.921500001102686 ], [ 360974.399800002574921, 256464.842999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050161", "MAP": null, "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.94865431, "LATITUDE": 18.33724036, "OBJECTID_1": 8686, "PARCEL_NO_": "105204050161", "Tax_Legal_": "CROWN BAY 2 S S QTR", "Name": "SEA CHEST", "Address": "3806 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 1258600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.34529045799999, "SHAPE_Area": 3603.1192895899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356905.390299998223782, 256374.60249999910593 ], [ 356899.215599998831749, 256436.824499998241663 ], [ 356956.406300000846386, 256444.047600001096725 ], [ 356962.580899998545647, 256381.825500000268221 ], [ 356905.390299998223782, 256374.60249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204062700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95315432, "LATITUDE": 18.33737887, "OBJECTID_1": 8885, "PARCEL_NO_": "105204062700", "Tax_Legal_": "2B&POR OF 2 CONTANT SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 209100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.868970585, "SHAPE_Area": 845.35789656400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356473.183899998664856, 256437.216899998486042 ], [ 356471.871799997985363, 256433.115800000727177 ], [ 356467.183200001716614, 256415.556699998676777 ], [ 356459.991099998354912, 256407.898499999195337 ], [ 356452.77929999679327, 256402.562100000679493 ], [ 356447.952200002968311, 256401.256000000983477 ], [ 356437.468299999833107, 256401.381299998611212 ], [ 356449.136900000274181, 256438.928199999034405 ], [ 356473.183899998664856, 256437.216899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204073200", "MAP": null, "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.94910387, "LATITUDE": 18.33718758, "OBJECTID_1": 8938, "PARCEL_NO_": "105204073200", "Tax_Legal_": "5 CROWN BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 117600, "Improved_V": 51200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.45056871099999, "SHAPE_Area": 2367.9229500599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356867.531400002539158, 256369.859600000083447 ], [ 356861.365699999034405, 256431.026299998164177 ], [ 356899.215599998831749, 256436.824499998241663 ], [ 356905.390299998223782, 256374.60249999910593 ], [ 356867.531400002539158, 256369.859600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204073300", "MAP": null, "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.94938777, "LATITUDE": 18.33715159, "OBJECTID_1": 8939, "PARCEL_NO_": "105204073300", "Tax_Legal_": "6 CROWN BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 114300, "Improved_V": 49400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.26943646199999, "SHAPE_Area": 1345.2340377400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356845.778899997472763, 256367.570700000971556 ], [ 356843.165799997746944, 256390.34739999845624 ], [ 356838.830300003290176, 256425.986699998378754 ], [ 356861.365699999034405, 256431.026299998164177 ], [ 356867.531400002539158, 256369.859600000083447 ], [ 356845.778899997472763, 256367.570700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204051000", "MAP": "C9-301-T87", "PARCEL_NAM": "1A-A, REM 1-A, & REM 1", "ACRE": null, "LONGITUDE": -64.95775133, "LATITUDE": 18.33710193, "OBJECTID_1": 8730, "PARCEL_NO_": "105204051000", "Tax_Legal_": "NISKY 1 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 104600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.82699368900001, "SHAPE_Area": 1469.57957167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355944.968099996447563, 256370.235300000756979 ], [ 355948.164099998772144, 256403.575699999928474 ], [ 355950.399800002574921, 256403.938799999654293 ], [ 355976.226999998092651, 256401.194899998605251 ], [ 355993.612000003457069, 256400.239100001752377 ], [ 355994.20610000193119, 256371.832699999213219 ], [ 355949.263300001621246, 256370.117199998348951 ], [ 355944.968099996447563, 256370.235300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204051500", "MAP": "A3-39-T39", "PARCEL_NAM": "REM 16", "ACRE": null, "LONGITUDE": -64.95065339, "LATITUDE": 18.3373673, "OBJECTID_1": 8733, "PARCEL_NO_": "105204051500", "Tax_Legal_": "CONTANT 110 7B S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 230600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.845010979099996, "SHAPE_Area": 292.71975704099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356708.912299998104572, 256415.121700000017881 ], [ 356703.473200000822544, 256423.987199999392033 ], [ 356728.032300002872944, 256429.719500001519918 ], [ 356729.969099998474121, 256426.151200000196695 ], [ 356734.882500000298023, 256417.325500000268221 ], [ 356708.912299998104572, 256415.121700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": "F9-3406-T75", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94963045, "LATITUDE": 18.3372173, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.147279316, "SHAPE_Area": 933.33255655599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356843.165799997746944, 256390.34739999845624 ], [ 356815.772699996829033, 256387.59010000154376 ], [ 356812.272299997508526, 256419.85869999974966 ], [ 356838.830300003290176, 256425.986699998378754 ], [ 356843.165799997746944, 256390.34739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203023000", "MAP": "C9-301-T87", "PARCEL_NAM": "REM 4C", "ACRE": ".16", "LONGITUDE": -64.95870393, "LATITUDE": 18.33726468, "OBJECTID_1": 8541, "PARCEL_NO_": "105203023000", "Tax_Legal_": "NISKY 4C S S QTR", "Name": "V. I. PT. AUTH.", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 104600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.1043946379, "SHAPE_Area": 510.30012516099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355873.060400001704693, 256395.495299998670816 ], [ 355867.509700000286102, 256384.473099999129772 ], [ 355854.919900000095367, 256391.03489999845624 ], [ 355863.432899996638298, 256410.427000001072884 ], [ 355867.946999996900558, 256420.709899999201298 ], [ 355872.85360000282526, 256419.769400000572205 ], [ 355883.368000000715256, 256416.055799998342991 ], [ 355877.018200002610683, 256404.182599999010563 ], [ 355873.060400001704693, 256395.495299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204070100", "MAP": null, "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.94982301, "LATITUDE": 18.33708331, "OBJECTID_1": 8927, "PARCEL_NO_": "105204070100", "Tax_Legal_": "8 CROWN BAY No6 Southside Quarter", "Name": "VIRGIN ISLANDS GOVERNMENT", "Address": "TRACT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.15502088299999, "SHAPE_Area": 859.71590973599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356815.772699996829033, 256387.59010000154376 ], [ 356818.387699998915195, 256364.602299999445677 ], [ 356803.080300003290176, 256362.999299999326468 ], [ 356797.907999999821186, 256402.220400001853704 ], [ 356796.1875, 256414.871899999678135 ], [ 356810.66330000013113, 256419.42339999973774 ], [ 356812.272299997508526, 256419.85869999974966 ], [ 356815.772699996829033, 256387.59010000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96907725, "LATITUDE": 18.33702773, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 882.82681656099999, "SHAPE_Area": 16567.980743700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354577.718999996781349, 256337.608600001782179 ], [ 354572.855999998748302, 256340.524099998176098 ], [ 354571.218199998140335, 256343.465999998152256 ], [ 354570.167300000786781, 256372.166200000792742 ], [ 354572.559299997985363, 256375.352200001478195 ], [ 354575.764799997210503, 256377.700399998575449 ], [ 354607.189400002360344, 256380.490699999034405 ], [ 354939.269599996507168, 256397.35190000012517 ], [ 354958.621100001037121, 256397.510299999266863 ], [ 354965.879699997603893, 256397.358600001782179 ], [ 354979.649999998509884, 256390.083000000566244 ], [ 354986.201200000941753, 256378.315400000661612 ], [ 354984.642499998211861, 256371.969900000840425 ], [ 354979.041500002145767, 256366.857799999415874 ], [ 354975.836000002920628, 256364.509500000625849 ], [ 354965.377300001680851, 256361.679699998348951 ], [ 354898.507299996912479, 256354.799600001424551 ], [ 354643.816899999976158, 256340.471599999815226 ], [ 354577.718999996781349, 256337.608600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203022800", "MAP": "G9-1323-T69", "PARCEL_NAM": "17 (W)", "ACRE": ".318", "LONGITUDE": -64.95890522000001, "LATITUDE": 18.33701555, "OBJECTID_1": 8539, "PARCEL_NO_": "105203022800", "Tax_Legal_": "NISKY 17 S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 196000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.318111997, "SHAPE_Area": 990.54557974900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355855.641599997878075, 256357.778099998831749 ], [ 355853.952899999916553, 256354.265099998563528 ], [ 355827.570600003004074, 256365.660599999129772 ], [ 355829.729900002479553, 256370.442800000309944 ], [ 355841.590800002217293, 256397.98200000077486 ], [ 355867.509700000286102, 256384.473099999129772 ], [ 355864.349200002849102, 256376.847800001502037 ], [ 355858.803900003433228, 256365.192299999296665 ], [ 355855.641599997878075, 256357.778099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204070400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95042355, "LATITUDE": 18.33690208, "OBJECTID_1": 8929, "PARCEL_NO_": "105204070400", "Tax_Legal_": "45 SUBBASE No.6 SOUTHSIDE QTR.", "Name": "VIRGINS ISLANDS GOVERNMENT", "Address": "Cyril King Airport Terminal Bldg E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 267900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.04368917799999, "SHAPE_Area": 1898.7480430600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356747.656900003552437, 256337.636700000613928 ], [ 356711.760200001299381, 256386.527699999511242 ], [ 356730.240699999034405, 256394.278299998492002 ], [ 356744.716499999165535, 256398.829799998551607 ], [ 356775.708800002932549, 256357.709100000560284 ], [ 356765.271700002253056, 256352.3462999984622 ], [ 356747.656900003552437, 256337.636700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503020900", "MAP": "D9-1698-T81", "PARCEL_NAM": "14BA-2A", "ACRE": ".25", "LONGITUDE": -64.91209347, "LATITUDE": 18.33697931, "OBJECTID_1": 20000, "PARCEL_NO_": "105503020900", "Tax_Legal_": "14BA-2A EST. THOMAS NEW QTR", "Name": "MCKAY, DONALD & SYBIL", "Address": "14BA-2A ESTATE THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73500, "Improved_V": 269600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.51315336499999, "SHAPE_Area": 1081.2760006799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360767.325699999928474, 256400.441599998623133 ], [ 360799.348300002515316, 256430.172600001096725 ], [ 360802.100599996745586, 256429.715500000864267 ], [ 360808.561899997293949, 256428.501800000667572 ], [ 360824.670199997723103, 256430.744600001722574 ], [ 360829.70610000193119, 256431.462699998170137 ], [ 360807.253200002014637, 256406.337400000542402 ], [ 360789.471199996769428, 256397.736999999731779 ], [ 360783.848600000143051, 256395.157900001853704 ], [ 360770.196999996900558, 256388.502199999988079 ], [ 360767.325699999928474, 256400.441599998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204051900", "MAP": null, "PARCEL_NAM": "154", "ACRE": null, "LONGITUDE": -64.95109003, "LATITUDE": 18.33705954, "OBJECTID_1": 8736, "PARCEL_NO_": "105204051900", "Tax_Legal_": "45-A-1 NISKY #5 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "18 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.25827667199999, "SHAPE_Area": 547.64239903800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356662.693800002336502, 256372.193900000303984 ], [ 356656.857199996709824, 256394.733199998736382 ], [ 356671.360100001096725, 256396.118400000035763 ], [ 356684.264700002968311, 256395.801899999380112 ], [ 356693.148500002920628, 256394.1858000010252 ], [ 356694.797100000083447, 256389.977400001138449 ], [ 356693.202399998903275, 256387.853500001132488 ], [ 356662.693800002336502, 256372.193900000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050146", "MAP": "D9-847-T69", "PARCEL_NAM": "42", "ACRE": null, "LONGITUDE": -64.95175137, "LATITUDE": 18.33682266, "OBJECTID_1": 8671, "PARCEL_NO_": "105204050146", "Tax_Legal_": "SUB BASE #42 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 326900, "Improved_V": 1400000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.27689599799999, "SHAPE_Area": 4609.5539764200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356572.132600001990795, 256306.646999999880791 ], [ 356557.821099996566772, 256377.457299999892712 ], [ 356597.278200000524521, 256383.901999998837709 ], [ 356633.494000002741814, 256392.219900000840425 ], [ 356656.857199996709824, 256394.733199998736382 ], [ 356662.693800002336502, 256372.193900000303984 ], [ 356642.633100003004074, 256360.630699999630451 ], [ 356617.772299997508526, 256344.595199998468161 ], [ 356587.337399996817112, 256320.281399998813868 ], [ 356572.132600001990795, 256306.646999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203022700", "MAP": "D9-305-T62", "PARCEL_NAM": "16AB", "ACRE": "0.06", "LONGITUDE": -64.95862131, "LATITUDE": 18.33699916, "OBJECTID_1": 8538, "PARCEL_NO_": "105203022700", "Tax_Legal_": "NISKY 16AB S S QTR", "Name": "JOSEPH, STEVE", "Address": "BOX 5187", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.661229286199998, "SHAPE_Area": 139.307583937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355889.753700003027916, 256372.77479999884963 ], [ 355887.82039999961853, 256366.696299999952316 ], [ 355864.349200002849102, 256376.847800001502037 ], [ 355866.128700003027916, 256381.141199998557568 ], [ 355889.753700003027916, 256372.77479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105203027500", "MAP": "F9-3406-T75", "PARCEL_NAM": "7A", "ACRE": ".20", "LONGITUDE": -64.94960413, "LATITUDE": 18.33696038, "OBJECTID_1": 8557, "PARCEL_NO_": "105203027500", "Tax_Legal_": "NISKY 7A S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 104600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.145259057, "SHAPE_Area": 634.27765736900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356818.387699998915195, 256364.602299999445677 ], [ 356815.772699996829033, 256387.59010000154376 ], [ 356843.165799997746944, 256390.34739999845624 ], [ 356845.778899997472763, 256367.570700000971556 ], [ 356818.387699998915195, 256364.602299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203023500", "MAP": "G9-1942-T71", "PARCEL_NAM": "15", "ACRE": "0.53", "LONGITUDE": -64.95823234, "LATITUDE": 18.33673602, "OBJECTID_1": 8546, "PARCEL_NO_": "105203023500", "Tax_Legal_": "15 ESTATE NISKY No.6 SOUTHSIDE QTR.", "Name": "JOSEPH, C. D. , S. A. , L. D. , W. A. & D. A", "Address": "P.O.BOX 5187", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 133500, "Improved_V": 300800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.14101113800001, "SHAPE_Area": 2033.6067645099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355944.968099996447563, 256370.235300000756979 ], [ 355940.518200002610683, 256336.395599998533726 ], [ 355906.820500001311302, 256313.445199999958277 ], [ 355903.908500000834465, 256311.484400000423193 ], [ 355894.256800003349781, 256319.75 ], [ 355905.799999997019768, 256371.312100000679493 ], [ 355944.968099996447563, 256370.235300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203022600", "MAP": "D9-305-T62", "PARCEL_NAM": "16Aa", "ACRE": "0.07", "LONGITUDE": -64.95865485, "LATITUDE": 18.33693254, "OBJECTID_1": 8537, "PARCEL_NO_": "105203022600", "Tax_Legal_": "16Aa ESTATE NISKY No.6 SOUTHSIDE QTR.", "Name": "JOSEPH, ALBERT & HILDA", "Address": "BOX 5187", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.862309358700003, "SHAPE_Area": 281.12938283199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355884.181100003421307, 256356.255899999290705 ], [ 355859.848800003528595, 256367.388599999248981 ], [ 355864.349200002849102, 256376.847800001502037 ], [ 355887.82039999961853, 256366.696299999952316 ], [ 355884.181100003421307, 256356.255899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203023300", "MAP": null, "PARCEL_NAM": "16", "ACRE": "0.21", "LONGITUDE": -64.95849362, "LATITUDE": 18.33675797, "OBJECTID_1": 8544, "PARCEL_NO_": "105203023300", "Tax_Legal_": "NISKY 16 S S QTR", "Name": "JOSEPH, STEVE", "Address": "BOX 5187", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53400, "Improved_V": 17400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.45621547299999, "SHAPE_Area": 822.68551283299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355904.924699999392033, 256367.402300000190735 ], [ 355894.256800003349781, 256319.75 ], [ 355892.99040000140667, 256320.834499999880791 ], [ 355884.466600000858307, 256328.13399999961257 ], [ 355876.41330000013113, 256335.030600000172853 ], [ 355877.579199999570847, 256338.3260000012815 ], [ 355883.097599998116493, 256353.147700000554323 ], [ 355887.82039999961853, 256366.696299999952316 ], [ 355889.753700003027916, 256372.77479999884963 ], [ 355904.924699999392033, 256367.402300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203022300", "MAP": "B9-428-T74", "PARCEL_NAM": "19B", "ACRE": ".16", "LONGITUDE": -64.95901089, "LATITUDE": 18.33679744, "OBJECTID_1": 8534, "PARCEL_NO_": "105203022300", "Tax_Legal_": "NISKY 19B S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 104600, "Improved_V": 24200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.078860198000001, "SHAPE_Area": 533.57711453299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355853.952899999916553, 256354.265099998563528 ], [ 355848.510600000619888, 256342.943199999630451 ], [ 355846.930399999022484, 256339.13060000166297 ], [ 355838.0304000005126, 256342.646299999207258 ], [ 355832.422200001776218, 256338.378600001335144 ], [ 355821.024099998176098, 256351.162000000476837 ], [ 355827.570600003004074, 256365.660599999129772 ], [ 355853.952899999916553, 256354.265099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203022500", "MAP": "F9-3418-T76", "PARCEL_NAM": "16A", "ACRE": "0.12", "LONGITUDE": -64.95870047, "LATITUDE": 18.3368056, "OBJECTID_1": 8536, "PARCEL_NO_": "105203022500", "Tax_Legal_": "NISKY 16A S S QTR", "Name": "YVONNE MC CAULEY", "Address": "4555 Mill Water Xing", "City": "Douglasville", "State": "Georgia", "Zip": 30135, "Country": "United States", "Land_Value": 30500, "Improved_V": 37100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.322292679300006, "SHAPE_Area": 505.34731530900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355877.579199999570847, 256338.3260000012815 ], [ 355876.41330000013113, 256335.030600000172853 ], [ 355853.952899999916553, 256354.265099998563528 ], [ 355855.641599997878075, 256357.778099998831749 ], [ 355858.803900003433228, 256365.192299999296665 ], [ 355859.848800003528595, 256367.388599999248981 ], [ 355884.181100003421307, 256356.255899999290705 ], [ 355883.097599998116493, 256353.147700000554323 ], [ 355877.579199999570847, 256338.3260000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94837926, "LATITUDE": 18.33627255, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.860401948, "SHAPE_Area": 2796.1591355800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356954.630400002002716, 256273.891699999570847 ], [ 356942.521999999880791, 256370.051199998706579 ], [ 356963.464599996805191, 256372.755800001323223 ], [ 356975.75450000166893, 256255.277199998497963 ], [ 356977.504799999296665, 256231.517299998551607 ], [ 356958.653200000524521, 256229.202199999243021 ], [ 356957.236299999058247, 256251.959300000220537 ], [ 356954.630400002002716, 256273.891699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94861232, "LATITUDE": 18.33644863, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.816828472, "SHAPE_Area": 2403.4143109500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356954.630400002002716, 256273.891699999570847 ], [ 356930.4662000015378, 256270.738600000739098 ], [ 356926.933399997651577, 256306.806699998676777 ], [ 356924.287900000810623, 256333.382800001651049 ], [ 356919.453599996864796, 256332.921000000089407 ], [ 356915.940700002014637, 256366.667300000786781 ], [ 356942.521999999880791, 256370.051199998706579 ], [ 356954.630400002002716, 256273.891699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203024000", "MAP": "B9-428-T74", "PARCEL_NAM": null, "ACRE": ".11", "LONGITUDE": -64.95874231000001, "LATITUDE": 18.33667814, "OBJECTID_1": 8551, "PARCEL_NO_": "105203024000", "Tax_Legal_": "NISKY 18A S S QTR", "Name": "JOSEPH, RHYS", "Address": "3221 Patmor Rd", "City": "Owings Mills", "State": "Maryland", "Zip": 21117, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.819508423599999, "SHAPE_Area": 359.51809024300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355884.466600000858307, 256328.13399999961257 ], [ 355883.322300001978874, 256326.762800000607967 ], [ 355880.924999997019768, 256324.210099998861551 ], [ 355879.314099997282028, 256323.985800001770258 ], [ 355848.510600000619888, 256342.943199999630451 ], [ 355853.952899999916553, 256354.265099998563528 ], [ 355884.466600000858307, 256328.13399999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94892604, "LATITUDE": 18.33669098, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.459462032, "SHAPE_Area": 1012.81942443 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356919.453599996864796, 256332.921000000089407 ], [ 356889.639899998903275, 256330.355000000447035 ], [ 356885.331399999558926, 256362.828200001269579 ], [ 356915.940700002014637, 256366.667300000786781 ], [ 356919.453599996864796, 256332.921000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94945641, "LATITUDE": 18.33631241, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 384.10380503200003, "SHAPE_Area": 9118.7771243799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356892.29619999974966, 256302.51240000128746 ], [ 356895.832500003278255, 256266.022199999541044 ], [ 356809.751299999654293, 256242.519499998539686 ], [ 356799.934199996292591, 256353.685499999672174 ], [ 356885.331399999558926, 256362.828200001269579 ], [ 356889.639899998903275, 256330.355000000447035 ], [ 356892.29619999974966, 256302.51240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203022200", "MAP": "B9-428-T74", "PARCEL_NAM": "19A", "ACRE": ".08", "LONGITUDE": -64.95911604, "LATITUDE": 18.33666329, "OBJECTID_1": 8533, "PARCEL_NO_": "105203022200", "Tax_Legal_": "NISKY 19A S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 424700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.565386187300007, "SHAPE_Area": 292.33300652700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355832.422200001776218, 256338.378600001335144 ], [ 355839.005699999630451, 256322.811500001698732 ], [ 355813.903899997472763, 256335.060600001364946 ], [ 355821.024099998176098, 256351.162000000476837 ], [ 355832.422200001776218, 256338.378600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203022400", "MAP": "B9-428-T74", "PARCEL_NAM": "REM 19", "ACRE": ".80", "LONGITUDE": -64.95898602, "LATITUDE": 18.3366464, "OBJECTID_1": 8535, "PARCEL_NO_": "105203022400", "Tax_Legal_": "NISKY 18&19 S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 424700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.660061995699998, "SHAPE_Area": 144.25033543399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355832.422200001776218, 256338.378600001335144 ], [ 355838.0304000005126, 256342.646299999207258 ], [ 355846.930399999022484, 256339.13060000166297 ], [ 355839.005699999630451, 256322.811500001698732 ], [ 355832.422200001776218, 256338.378600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203022400", "MAP": "B9-428-T74", "PARCEL_NAM": "REM 18", "ACRE": ".04", "LONGITUDE": -64.95889065, "LATITUDE": 18.3365634, "OBJECTID_1": 8535, "PARCEL_NO_": "105203022400", "Tax_Legal_": "NISKY 18&19 S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 424700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.854444575700001, "SHAPE_Area": 298.62954628900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355856.652900002896786, 256333.721700001507998 ], [ 355856.040799997746944, 256310.918600000441074 ], [ 355839.005699999630451, 256322.811500001698732 ], [ 355846.930399999022484, 256339.13060000166297 ], [ 355856.652900002896786, 256333.721700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203024100", "MAP": "B9-428-T74", "PARCEL_NAM": "18B", "ACRE": ".10", "LONGITUDE": -64.95875564000001, "LATITUDE": 18.33650767, "OBJECTID_1": 8552, "PARCEL_NO_": "105203024100", "Tax_Legal_": "NISKY 18B S S QTR", "Name": "JOSEPH, RUSSELL E.", "Address": "1740 Leland Ave", "City": "Evanston", "State": "Illinois", "Zip": 60201, "Country": "United States", "Land_Value": 28000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.90940417, "SHAPE_Area": 330.45700227600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355856.040799997746944, 256310.918600000441074 ], [ 355856.652900002896786, 256333.721700001507998 ], [ 355876.909599997103214, 256322.277399998158216 ], [ 355864.141699999570847, 256306.552000001072884 ], [ 355862.530799999833107, 256306.3277000002563 ], [ 355856.040799997746944, 256310.918600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203024300", "MAP": "B9-428-T74", "PARCEL_NAM": null, "ACRE": ".07", "LONGITUDE": -64.95850272, "LATITUDE": 18.33645426, "OBJECTID_1": 8555, "PARCEL_NO_": "105203024300", "Tax_Legal_": "18D NISKY NO 6 SOUTHSIDE QTR", "Name": "JOSEPH, RONALD G.", "Address": "6470 Heritage Park Blvd", "City": "Dayton", "State": "Ohio", "Zip": 45424, "Country": "United States", "Land_Value": 17800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.279797966700002, "SHAPE_Area": 276.928343316 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355903.908500000834465, 256311.484400000423193 ], [ 355891.586900003254414, 256303.188000001013279 ], [ 355878.592399999499321, 256314.058499999344349 ], [ 355887.382700003683567, 256323.418600000441074 ], [ 355883.322300001978874, 256326.762800000607967 ], [ 355884.466600000858307, 256328.13399999961257 ], [ 355903.908500000834465, 256311.484400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94887646, "LATITUDE": 18.33641905, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.359087016, "SHAPE_Area": 951.62612933499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356926.933399997651577, 256306.806699998676777 ], [ 356892.29619999974966, 256302.51240000128746 ], [ 356889.639899998903275, 256330.355000000447035 ], [ 356919.453599996864796, 256332.921000000089407 ], [ 356924.287900000810623, 256333.382800001651049 ], [ 356926.933399997651577, 256306.806699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050103", "MAP": "A9-261-T77", "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.95174729, "LATITUDE": 18.33620107, "OBJECTID_1": 8643, "PARCEL_NO_": "105204050103", "Tax_Legal_": "SUB BASE 9&10 Southside Quarter QTR", "Name": "JOHN'S AUTO CENTER,INC", "Address": "PO Box 308940", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.259918621, "SHAPE_Area": 2150.23085201 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356639.24889999628067, 256284.609299998730421 ], [ 356602.34910000115633, 256261.931400001049042 ], [ 356593.406000003218651, 256270.513000000268221 ], [ 356571.443099997937679, 256292.920299999415874 ], [ 356585.838100001215935, 256306.970300000160933 ], [ 356606.658299997448921, 256324.028200000524521 ], [ 356622.140100002288818, 256305.156500000506639 ], [ 356639.24889999628067, 256284.609299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203024200", "MAP": "B9-428-T74", "PARCEL_NAM": "18C", "ACRE": ".06", "LONGITUDE": -64.95860788, "LATITUDE": 18.33636492, "OBJECTID_1": 8553, "PARCEL_NO_": "105203024200", "Tax_Legal_": "NISKY 18C S S QTR", "Name": "JOSEPH, RONALD G", "Address": "PO Box 104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.172467531400002, "SHAPE_Area": 229.354450542 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355878.592399999499321, 256314.058499999344349 ], [ 355891.586900003254414, 256303.188000001013279 ], [ 355879.5658999979496, 256294.434799998998642 ], [ 355868.200199998915195, 256303.418800000101328 ], [ 355878.592399999499321, 256314.058499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050500", "MAP": "D9-2610-T84", "PARCEL_NAM": "45-B", "ACRE": "0.10", "LONGITUDE": -64.95411072, "LATITUDE": 18.33617921, "OBJECTID_1": 8723, "PARCEL_NO_": "105204050500", "Tax_Legal_": "45 & 46 NISKY NO.5 SOUTHSIDE QUARTER", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1333600, "Improved_V": 624600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.383459608, "SHAPE_Area": 139.230782971 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356335.771499998867512, 256317.800299998372793 ], [ 356367.607900001108646, 256272.253600001335144 ], [ 356361.969099998474121, 256271.574099998921156 ], [ 356335.771499998867512, 256317.800299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404150500", "MAP": "D9-6359-T97", "PARCEL_NAM": "6 REM", "ACRE": ".32", "LONGITUDE": -64.91873714, "LATITUDE": 18.33621416, "OBJECTID_1": 19553, "PARCEL_NO_": "105404150500", "Tax_Legal_": "6 & 9 EST. THOMAS NEW QTR", "Name": "PLESSEN ENTERPRISES INC", "Address": "P.o. Box 8707", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 1635800, "Improved_V": 157400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.024170121, "SHAPE_Area": 816.00789599300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360073.290600001811981, 256324.031500000506639 ], [ 360101.180100001394749, 256340.720899999141693 ], [ 360114.408900000154972, 256318.540300000458956 ], [ 360087.125500001013279, 256302.9070999994874 ], [ 360073.290600001811981, 256324.031500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94884867, "LATITUDE": 18.33613224, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.75760562900001, "SHAPE_Area": 1272.46907065 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356930.4662000015378, 256270.738600000739098 ], [ 356895.832500003278255, 256266.022199999541044 ], [ 356892.29619999974966, 256302.51240000128746 ], [ 356926.933399997651577, 256306.806699998676777 ], [ 356930.4662000015378, 256270.738600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94772233, "LATITUDE": 18.33614246, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.711670156, "SHAPE_Area": 1844.87791967 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356986.672499999403954, 256298.85190000012517 ], [ 357060.840599998831749, 256300.936500001698732 ], [ 357068.909199997782707, 256300.369300000369549 ], [ 357070.708800002932549, 256278.430300001055002 ], [ 357009.457800000905991, 256274.551500000059605 ], [ 356987.579499997198582, 256287.037999998778105 ], [ 356986.672499999403954, 256298.85190000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94638036000001, "LATITUDE": 18.33601024, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 422.329966388, "SHAPE_Area": 4763.7597950299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357075.363300003111362, 256299.999899998307228 ], [ 357113.265299998223782, 256299.676899999380112 ], [ 357141.502499997615814, 256298.008099999278784 ], [ 357160.875500001013279, 256295.633600000292063 ], [ 357202.890100002288818, 256285.844900000840425 ], [ 357253.045100003480911, 256267.045899998396635 ], [ 357247.719200000166893, 256229.638799998909235 ], [ 357228.258000001311302, 256242.356199998408556 ], [ 357211.246299996972084, 256251.505100000649691 ], [ 357192.630999997258186, 256259.585400000214577 ], [ 357156.249799996614456, 256270.686700001358986 ], [ 357133.635300002992153, 256274.934500001370907 ], [ 357106.19370000064373, 256277.876400001347065 ], [ 357077.159299999475479, 256278.4831000007689 ], [ 357075.363300003111362, 256299.999899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404150700", "MAP": "D9-6359-T97", "PARCEL_NAM": "6A", "ACRE": ".04", "LONGITUDE": -64.91889164, "LATITUDE": 18.336129, "OBJECTID_1": 19555, "PARCEL_NO_": "105404150700", "Tax_Legal_": "6A & 9A EST. THOMAS 6G KINGS QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.657261312499998, "SHAPE_Area": 141.418713029 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360068.423900000751019, 256321.119199998676777 ], [ 360073.290600001811981, 256324.031500000506639 ], [ 360087.125500001013279, 256302.9070999994874 ], [ 360082.310999996960163, 256300.123500000685453 ], [ 360068.423900000751019, 256321.119199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050103", "MAP": "A9-261-T77", "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.9520124, "LATITUDE": 18.33605927, "OBJECTID_1": 8643, "PARCEL_NO_": "105204050103", "Tax_Legal_": "SUB BASE 9&10 Southside Quarter QTR", "Name": "JOHN'S AUTO CENTER,INC", "Address": "PO Box 308940", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.547986395799995, "SHAPE_Area": 508.75128103399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356583.830899998545647, 256258.613400001078844 ], [ 356560.262599997222424, 256280.163199998438358 ], [ 356571.443099997937679, 256292.920299999415874 ], [ 356593.406000003218651, 256270.513000000268221 ], [ 356583.830899998545647, 256258.613400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105104010100", "MAP": null, "PARCEL_NAM": "UNSURVEYED PORTION OF 70 LINDBERG BAY", "ACRE": null, "LONGITUDE": -64.96931085, "LATITUDE": 18.33562208, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 427.48996987800001, "SHAPE_Area": 7938.2381972399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354794.200300000607967, 256199.003199998289347 ], [ 354794.229000002145767, 256195.625999998301268 ], [ 354791.001999996602535, 256195.810600001364946 ], [ 354785.393799997866154, 256191.542899999767542 ], [ 354781.399999998509884, 256187.077199999243021 ], [ 354781.364000000059605, 256191.298799999058247 ], [ 354779.738799996674061, 256192.763099998235703 ], [ 354771.726000003516674, 256186.786899998784065 ], [ 354763.677299998700619, 256185.032299999147654 ], [ 354754.033900000154972, 256181.1537000015378 ], [ 354746.019299998879433, 256175.388599999248981 ], [ 354741.989500001072884, 256175.144499998539686 ], [ 354743.620200000703335, 256173.046900000423193 ], [ 354735.589400000870228, 256169.181499999016523 ], [ 354729.970399998128414, 256166.18019999936223 ], [ 354721.954000003635883, 256160.626200001686811 ], [ 354721.174699999392033, 256157.453400000929832 ], [ 354709.164499998092651, 256147.433699999004602 ], [ 354705.955399997532368, 256145.507599998265505 ], [ 354703.52929999679327, 256146.332100000232458 ], [ 354698.759800001978874, 256138.271499998867512 ], [ 354697.17230000346899, 256135.303199999034405 ], [ 354697.076499998569489, 256156.543400000780821 ], [ 354699.578199997544289, 256171.553599998354912 ], [ 354703.247400000691414, 256186.897399999201298 ], [ 354707.08330000191927, 256196.904199998825788 ], [ 354706.935900002717972, 256199.852800000458956 ], [ 354706.749799996614456, 256203.575399998575449 ], [ 354704.454999998211861, 256226.977400001138449 ], [ 354701.894000001251698, 256243.632800001651049 ], [ 354701.478299997746944, 256249.659099999815226 ], [ 354756.950599998235703, 256252.108500000089407 ], [ 354788.805699996650219, 256255.777699999511242 ], [ 354807.239000000059605, 256261.887600000947714 ], [ 354808.610500000417233, 256229.542399998754263 ], [ 354809.022900000214577, 256219.815699998289347 ], [ 354806.971799999475479, 256214.306499999016523 ], [ 354802.970799997448921, 256210.685100000351667 ], [ 354803.019299998879433, 256204.986000001430511 ], [ 354799.812100000679493, 256202.848799999803305 ], [ 354797.394900001585484, 256202.618000000715256 ], [ 354795.794900000095367, 256201.127199999988079 ], [ 354794.200300000607967, 256199.003199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": "G3-169-T78", "PARCEL_NAM": "37", "ACRE": ".31", "LONGITUDE": -64.95844347000001, "LATITUDE": 18.33600896, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.73922298700001, "SHAPE_Area": 1604.6309016 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355924.200800001621246, 256261.025100000202656 ], [ 355920.318499997258186, 256243.472600001841784 ], [ 355878.285899996757507, 256255.372000001370907 ], [ 355858.012999996542931, 256268.716099999845028 ], [ 355870.046599999070168, 256275.991700001060963 ], [ 355874.848499998450279, 256280.252900000661612 ], [ 355927.294799998402596, 256276.460299998521805 ], [ 355924.200800001621246, 256261.025100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "11A", "ACRE": null, "LONGITUDE": -64.95215675, "LATITUDE": 18.33589276, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.17995438299999, "SHAPE_Area": 1009.75522323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356564.678999997675419, 256235.025299999862909 ], [ 356539.517899997532368, 256254.239999998360872 ], [ 356560.262599997222424, 256280.163199998438358 ], [ 356583.830899998545647, 256258.613400001078844 ], [ 356564.678999997675419, 256235.025299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050115", "MAP": "D3-336-T77", "PARCEL_NAM": null, "ACRE": ".47", "LONGITUDE": -64.95892631, "LATITUDE": 18.33578524, "OBJECTID_1": 8649, "PARCEL_NO_": "105204050115", "Tax_Legal_": "SUB BASE KRUM BAY 51&51A SOUTHSIDE QTR", "Name": "CHUCK KLINE, INC.", "Address": "PO Box 2070", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 313600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.76922828400001, "SHAPE_Area": 2350.9913665300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355858.012999996542931, 256268.716099999845028 ], [ 355878.285899996757507, 256255.372000001370907 ], [ 355864.877099998295307, 256220.22069999948144 ], [ 355841.567800000309944, 256211.375100001692772 ], [ 355839.960600003600121, 256210.728700000792742 ], [ 355833.486699998378754, 256213.419900000095367 ], [ 355828.618199996650219, 256216.968600001186132 ], [ 355819.651699997484684, 256228.294300001114607 ], [ 355811.448299996554852, 256244.692499998956919 ], [ 355858.012999996542931, 256268.716099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94869973, "LATITUDE": 18.3357805, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.79167579, "SHAPE_Area": 2667.5328645700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356895.832500003278255, 256266.022199999541044 ], [ 356930.4662000015378, 256270.738600000739098 ], [ 356954.630400002002716, 256273.891699999570847 ], [ 356957.236299999058247, 256251.959300000220537 ], [ 356958.653200000524521, 256229.202199999243021 ], [ 356899.121799997985363, 256221.595400001853704 ], [ 356898.487000003457069, 256238.390599999576807 ], [ 356895.832500003278255, 256266.022199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050172", "MAP": "D9-8491-T010", "PARCEL_NAM": "104", "ACRE": ".4938", "LONGITUDE": -64.95799427, "LATITUDE": 18.33567088, "OBJECTID_1": 8695, "PARCEL_NO_": "105204050172", "Tax_Legal_": "104 SUBBASE SOUTHSIDE QUARTER", "Name": "FRANCIS, RAYMOND", "Address": "PO BOX 303734", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 116700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.85234512, "SHAPE_Area": 3495.71647347 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355915.673000000417233, 256220.847600001841784 ], [ 355920.318499997258186, 256243.472600001841784 ], [ 355924.200800001621246, 256261.025100000202656 ], [ 355978.270499996840954, 256255.979200001806021 ], [ 355972.165200002491474, 256215.399300001561642 ], [ 355970.7162000015378, 256196.17790000140667 ], [ 355906.974399998784065, 256200.722500000149012 ], [ 355906.934799998998642, 256205.366200000047684 ], [ 355907.696199998259544, 256210.64979999884963 ], [ 355909.294399999082088, 256212.351599998772144 ], [ 355917.326999999582767, 256216.005899999290705 ], [ 355915.673000000417233, 256220.847600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": "D3-417-T88", "PARCEL_NAM": "A", "ACRE": "0.54", "LONGITUDE": -64.94936938, "LATITUDE": 18.3356762, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.60205073099999, "SHAPE_Area": 3378.371621 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356809.751299999654293, 256242.519499998539686 ], [ 356895.832500003278255, 256266.022199999541044 ], [ 356898.487000003457069, 256238.390599999576807 ], [ 356899.121799997985363, 256221.595400001853704 ], [ 356812.445299997925758, 256210.244300000369549 ], [ 356809.751299999654293, 256242.519499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050149", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95750794, "LATITUDE": 18.33573062, "OBJECTID_1": 8674, "PARCEL_NO_": "105204050149", "Tax_Legal_": "SUB BASE 108 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 293800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.684294155, "SHAPE_Area": 1327.1905595799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356006.86540000140667, 256212.305799998342991 ], [ 355977.008500002324581, 256214.805700000375509 ], [ 355983.112000003457069, 256255.596700001507998 ], [ 356023.463500000536442, 256251.705099999904633 ], [ 356015.472300000488758, 256243.195900000631809 ], [ 356012.302799999713898, 256236.6261 ], [ 356009.945000000298023, 256229.42960000038147 ], [ 356006.86540000140667, 256212.305799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "11B", "ACRE": null, "LONGITUDE": -64.95232402000001, "LATITUDE": 18.33569305, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.591513264, "SHAPE_Area": 781.08291963600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356548.718199998140335, 256215.473999999463558 ], [ 356524.35980000346899, 256235.117499999701977 ], [ 356539.517899997532368, 256254.239999998360872 ], [ 356564.678999997675419, 256235.025299999862909 ], [ 356548.718199998140335, 256215.473999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91044246, "LATITUDE": 18.33573567, "OBJECTID_1": 20090, "PARCEL_NO_": "105503033400", "Tax_Legal_": "14 NP&14N-18 EST.THOMAS 6E NEW QTR", "Name": "LETTSOME, WHITMORE & ELTERAH", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018580, "Country": "United States", "Land_Value": 45700, "Improved_V": 222500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.383845336199997, "SHAPE_Area": 117.289354206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360973.523699998855591, 256267.468899998813868 ], [ 360971.624600000679493, 256266.880699999630451 ], [ 360971.013700000941753, 256268.382599998265505 ], [ 360963.78320000320673, 256286.157400000840425 ], [ 360964.654200002551079, 256286.451099999248981 ], [ 360967.286100000143051, 256287.338599998503923 ], [ 360971.099299997091293, 256280.166799999773502 ], [ 360978.433499999344349, 256271.14979999884963 ], [ 360980.046099998056889, 256269.489199999719858 ], [ 360973.523699998855591, 256267.468899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "67", "ACRE": null, "LONGITUDE": -64.96058522, "LATITUDE": 18.33534922, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.59028755700001, "SHAPE_Area": 1869.4042312300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355669.825000002980232, 256209.758400000631809 ], [ 355688.481700003147125, 256196.823300000280142 ], [ 355693.258400000631809, 256204.039599999785423 ], [ 355703.798000000417233, 256197.370799999684095 ], [ 355702.197999998927116, 256195.880100000649691 ], [ 355691.901199996471405, 256174.053199999034405 ], [ 355688.765799999237061, 256163.472800001502037 ], [ 355661.250500001013279, 256175.068900000303984 ], [ 355657.253100000321865, 256171.025400001555681 ], [ 355652.43860000371933, 256168.241700001060963 ], [ 355643.414499998092651, 256186.321899998933077 ], [ 355640.644299998879433, 256196.359099999070168 ], [ 355659.3800999969244, 256205.537799999117851 ], [ 355666.838100001215935, 256209.191399998962879 ], [ 355667.362899996340275, 256214.804499998688698 ], [ 355674.691500000655651, 256238.318500000983477 ], [ 355679.281400002539158, 256235.589200001209974 ], [ 355672.1199000030756, 256224.342599999159575 ], [ 355675.363099999725819, 256222.258200000971556 ], [ 355671.396300002932549, 256214.626400001347065 ], [ 355669.825000002980232, 256209.758400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "67A", "ACRE": null, "LONGITUDE": -64.96045015, "LATITUDE": 18.33558066, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.95138045, "SHAPE_Area": 706.61564713400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355679.281400002539158, 256235.589200001209974 ], [ 355706.89019999653101, 256213.017099998891354 ], [ 355704.503700003027916, 256209.197799999266863 ], [ 355699.637000001966953, 256212.535500001162291 ], [ 355693.258400000631809, 256204.039599999785423 ], [ 355688.481700003147125, 256196.823300000280142 ], [ 355669.825000002980232, 256209.758400000631809 ], [ 355671.396300002932549, 256214.626400001347065 ], [ 355675.363099999725819, 256222.258200000971556 ], [ 355672.1199000030756, 256224.342599999159575 ], [ 355679.281400002539158, 256235.589200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": "D3-336-T77", "PARCEL_NAM": "34A", "ACRE": null, "LONGITUDE": -64.9595613, "LATITUDE": 18.33560287, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.743219996999997, "SHAPE_Area": 261.09775327099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355787.496299996972084, 256216.632100000977516 ], [ 355775.525700002908707, 256201.968699999153614 ], [ 355772.88740000128746, 256227.700500000268221 ], [ 355783.335299998521805, 256231.796799998730421 ], [ 355787.496299996972084, 256216.632100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.95248187, "LATITUDE": 18.33547242, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.139621592, "SHAPE_Area": 1244.0456140399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356552.778499998152256, 256212.129799999296665 ], [ 356532.035599999129772, 256185.99549999833107 ], [ 356502.819499999284744, 256207.92119999974966 ], [ 356524.35980000346899, 256235.117499999701977 ], [ 356548.718199998140335, 256215.473999999463558 ], [ 356552.778499998152256, 256212.129799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503037400", "MAP": "D9-1877-T81", "PARCEL_NAM": "14N-29", "ACRE": null, "LONGITUDE": -64.9103161, "LATITUDE": 18.33554951, "OBJECTID_1": 20121, "PARCEL_NO_": "105503037400", "Tax_Legal_": "14N-29 EST. THOMAS NEW QTR.", "Name": "TRUST AGREEMENT OF THOMAS RECALDO LETTSOME", "Address": "PO Box 12181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 114400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.989309501299999, "SHAPE_Area": 401.21533761799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360983.853399999439716, 256245.531599998474121 ], [ 360978.485799998044968, 256245.072000000625849 ], [ 360971.624600000679493, 256266.880699999630451 ], [ 360973.523699998855591, 256267.468899998813868 ], [ 360980.046099998056889, 256269.489199999719858 ], [ 360988.195500001311302, 256261.097199998795986 ], [ 361000.3800999969244, 256250.642200000584126 ], [ 361001.540500000119209, 256249.314800001680851 ], [ 361003.385600000619888, 256247.204100001603365 ], [ 360983.853399999439716, 256245.531599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": "D3-336-T77", "PARCEL_NAM": "34", "ACRE": null, "LONGITUDE": -64.9597106, "LATITUDE": 18.33553302, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.098079800600004, "SHAPE_Area": 594.95938019699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355770.738200001418591, 256196.018899999558926 ], [ 355760.265100002288818, 256194.877700001001358 ], [ 355747.166299998760223, 256217.990699999034405 ], [ 355772.88740000128746, 256227.700500000268221 ], [ 355775.525700002908707, 256201.968699999153614 ], [ 355770.738200001418591, 256196.018899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "170-C", "ACRE": null, "LONGITUDE": -64.95063025, "LATITUDE": 18.33449172, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 639.16758305999997, "SHAPE_Area": 5955.8967202599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356716.865599997341633, 256071.195700000971556 ], [ 356715.242200002074242, 256072.449000000953674 ], [ 356707.259999997913837, 256062.884399998933077 ], [ 356709.698700003325939, 256060.582400001585484 ], [ 356648.360699996352196, 255972.265399999916553 ], [ 356644.302199997007847, 255975.398600000888109 ], [ 356664.971400000154972, 256010.187100000679493 ], [ 356664.723300002515316, 256039.315999999642372 ], [ 356677.34910000115633, 256071.716699998825788 ], [ 356704.45269999653101, 256108.457699999213219 ], [ 356705.235600002110004, 256111.208299998193979 ], [ 356716.459200002253056, 256118.899500001221895 ], [ 356719.693499997258186, 256117.87049999833107 ], [ 356723.725100003182888, 256117.903499998152256 ], [ 356727.742200002074242, 256119.625100001692772 ], [ 356730.143200002610683, 256121.755699999630451 ], [ 356777.935699999332428, 256190.96339999884367 ], [ 356807.409599997103214, 256233.423300001770258 ], [ 356810.058799996972084, 256206.425000000745058 ], [ 356716.865599997341633, 256071.195700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": "D9-8125-T008", "PARCEL_NAM": "150", "ACRE": ".5217", "LONGITUDE": -64.95923754, "LATITUDE": 18.33488935, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.510761352, "SHAPE_Area": 2673.9970018200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355805.349500000476837, 256115.305599998682737 ], [ 355795.019500002264977, 256113.787300001829863 ], [ 355785.759099997580051, 256120.071199998259544 ], [ 355779.806000001728535, 256137.269099999219179 ], [ 355779.806000001728535, 256147.231699999421835 ], [ 355790.463699996471405, 256152.272799998521805 ], [ 355834.63289999961853, 256173.532600000500679 ], [ 355842.251599997282028, 256154.44480000063777 ], [ 355845.112800002098083, 256122.65430000051856 ], [ 355805.349500000476837, 256115.305599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050149", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95758214, "LATITUDE": 18.33534845, "OBJECTID_1": 8674, "PARCEL_NO_": "105204050149", "Tax_Legal_": "SUB BASE 108 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 293800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.67314389699999, "SHAPE_Area": 1213.7476390100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355998.362800002098083, 256169.173099998384714 ], [ 355973.35639999806881, 256170.234999999403954 ], [ 355977.008500002324581, 256214.805700000375509 ], [ 356006.86540000140667, 256212.305799998342991 ], [ 355998.362800002098083, 256169.173099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050171", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95720195, "LATITUDE": 18.33536757, "OBJECTID_1": 8694, "PARCEL_NO_": "105204050171", "Tax_Legal_": "100 SUB BASE SOUTHSIDE QTR", "Name": "JOHN'S AUTO SALES, INC.", "Address": "PO Box 308940", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 215400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.24063268699999, "SHAPE_Area": 998.09589218799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356040.211999997496605, 256178.803800001740456 ], [ 356007.923500001430511, 256182.761399999260902 ], [ 356014.147399999201298, 256209.410100001841784 ], [ 356052.877400003373623, 256206.560699999332428 ], [ 356040.211999997496605, 256178.803800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "12A", "ACRE": null, "LONGITUDE": -64.95226406, "LATITUDE": 18.33531038, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.68645552300001, "SHAPE_Area": 708.40528491299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356549.880599997937679, 256173.686999998986721 ], [ 356536.902199998497963, 256182.657800000160933 ], [ 356532.035599999129772, 256185.99549999833107 ], [ 356552.778499998152256, 256212.129799999296665 ], [ 356569.829800002276897, 256198.337200000882149 ], [ 356549.880599997937679, 256173.686999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050118", "MAP": "D9-8486-T010", "PARCEL_NAM": "105", "ACRE": ".6888", "LONGITUDE": -64.95803948, "LATITUDE": 18.33528052, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.043159368, "SHAPE_Area": 1674.24374797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355968.54730000346899, 256166.818199999630451 ], [ 355913.665899999439716, 256172.490699999034405 ], [ 355912.766000002622604, 256183.460200000554323 ], [ 355910.273400001227856, 256192.0945999994874 ], [ 355907.827500000596046, 256195.24100000038743 ], [ 355906.974399998784065, 256200.722500000149012 ], [ 355970.7162000015378, 256196.17790000140667 ], [ 355968.54730000346899, 256166.818199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204072600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95269828000001, "LATITUDE": 18.33518845, "OBJECTID_1": 8934, "PARCEL_NO_": "105204072600", "Tax_Legal_": "170 REM.SUBBASE(CROWN BAY LAND FILL) No.6 SOUTHSIDE QTR.", "Name": "VIRGIN ISLANDS GOVERNMENT", "Address": "2nd King Terminal", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 676300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.261672017, "SHAPE_Area": 921.33486242100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356508.873700000345707, 256159.841400001198053 ], [ 356483.705399997532368, 256179.900400001555681 ], [ 356494.819300003349781, 256200.467500001192093 ], [ 356531.337200000882149, 256173.324200000613928 ], [ 356508.873700000345707, 256159.841400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204072700", "MAP": "D9-4291-T88", "PARCEL_NAM": null, "ACRE": ".13", "LONGITUDE": -64.95284521000001, "LATITUDE": 18.33501574, "OBJECTID_1": 8935, "PARCEL_NO_": "105204072700", "Tax_Legal_": "114 & 115 SUBBASE SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 665800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.838544379, "SHAPE_Area": 752.99708117099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356508.873700000345707, 256159.841400001198053 ], [ 356495.333599999547005, 256140.098900001496077 ], [ 356471.803099997341633, 256157.215999998152256 ], [ 356483.705399997532368, 256179.900400001555681 ], [ 356508.873700000345707, 256159.841400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": "D9-8487-T010", "PARCEL_NAM": "106", "ACRE": ".4424", "LONGITUDE": -64.95801494, "LATITUDE": 18.33497647, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.98809509899999, "SHAPE_Area": 1993.4682411700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355913.665899999439716, 256172.490699999034405 ], [ 355968.54730000346899, 256166.818199999630451 ], [ 355968.797200001776218, 256137.478199999779463 ], [ 355967.296099998056889, 256124.378100000321865 ], [ 355965.686999998986721, 256123.942800000309944 ], [ 355962.470799997448921, 256122.861000001430511 ], [ 355944.654600001871586, 256131.792199999094009 ], [ 355924.433799996972084, 256139.015000000596046 ], [ 355918.757299996912479, 256142.768199998885393 ], [ 355916.314999997615814, 256145.492400001734495 ], [ 355914.670000001788139, 256149.278599999845028 ], [ 355913.665899999439716, 256172.490699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050184", "MAP": "D9-4291-T88", "PARCEL_NAM": "168", "ACRE": "4.04", "LONGITUDE": -64.95273579000001, "LATITUDE": 18.33408885, "OBJECTID_1": 8706, "PARCEL_NO_": "105204050184", "Tax_Legal_": "SUB BASE #168&169 SOUTHSIDE QTR.", "Name": "CROWN- BAY MARINA", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 2940600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1929.9932956499999, "SHAPE_Area": 16741.522170600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356400.509900003671646, 256006.967199999839067 ], [ 356402.090199999511242, 256010.779800001531839 ], [ 356406.071400001645088, 256016.723000001162291 ], [ 356420.448299996554852, 256032.883799999952316 ], [ 356430.914200000464916, 256034.869300000369549 ], [ 356439.819600000977516, 256030.720300000160933 ], [ 356446.275499999523163, 256030.139800000935793 ], [ 356448.678300000727177, 256032.059300001710653 ], [ 356447.819799996912479, 256038.1739999987185 ], [ 356437.271200001239777, 256045.898200001567602 ], [ 356437.238799996674061, 256049.697599999606609 ], [ 356436.362400002777576, 256057.923000000417233 ], [ 356475.416799999773502, 256111.649399999529123 ], [ 356495.333599999547005, 256140.098900001496077 ], [ 356508.873700000345707, 256159.841400001198053 ], [ 356531.337200000882149, 256173.324200000613928 ], [ 356537.830799996852875, 256168.311099998652935 ], [ 356549.169600002467632, 256162.493299998342991 ], [ 356558.049800001084805, 256161.299400001764297 ], [ 356568.528200000524521, 256161.807300001382828 ], [ 356578.180600002408028, 256164.630499999970198 ], [ 356589.420400001108646, 256170.422100000083447 ], [ 356571.897399999201298, 256144.947399999946356 ], [ 356606.779200002551079, 256120.535000000149012 ], [ 356632.73759999871254, 256102.38230000063777 ], [ 356670.067100003361702, 256074.612399999052286 ], [ 356644.030699998140335, 256007.271499998867512 ], [ 356631.320299997925758, 255984.791600000113249 ], [ 356629.696900002658367, 255986.044799998402596 ], [ 356646.253600001335144, 256030.298900000751019 ], [ 356649.489600002765656, 256029.058800000697374 ], [ 356652.657300002872944, 256035.839699998497963 ], [ 356652.585400000214577, 256044.282900001853704 ], [ 356662.821099996566772, 256073.286499999463558 ], [ 356583.324199996888638, 256128.786699999123812 ], [ 356564.204700000584126, 256101.39919999986887 ], [ 356619.361199997365475, 256063.431600000709295 ], [ 356622.532499998807907, 256069.790300000458956 ], [ 356625.772100001573563, 256068.128100000321865 ], [ 356616.220399998128414, 256053.484499998390675 ], [ 356613.788900002837181, 256054.942200001329184 ], [ 356617.766500003635883, 256061.307599999010563 ], [ 356562.619000002741814, 256098.219799999147654 ], [ 356561.015399999916553, 256097.151200000196695 ], [ 356558.630599997937679, 256093.120900001376867 ], [ 356522.942500002682209, 256117.526799999177456 ], [ 356504.616700001060963, 256091.623399998992682 ], [ 356514.351700000464916, 256084.736999999731779 ], [ 356500.822400003671646, 256063.728000000119209 ], [ 356517.060199998319149, 256050.77309999987483 ], [ 356590.077899999916553, 255998.597300000488758 ], [ 356598.042099997401237, 256010.272599998861551 ], [ 356601.281700000166893, 256008.610399998724461 ], [ 356582.151399999856949, 255982.48930000141263 ], [ 356579.719899997115135, 255983.94709999859333 ], [ 356588.486800000071526, 255996.051100000739098 ], [ 356516.277300000190735, 256048.022399999201298 ], [ 356503.539899997413158, 256028.708700001239777 ], [ 356473.528300002217293, 256049.361299999058247 ], [ 356446.455300003290176, 256009.031899999827147 ], [ 356476.459700003266335, 255989.223600000143051 ], [ 356460.520499996840954, 255967.139400001615286 ], [ 356496.214000001549721, 255942.100400000810623 ], [ 356512.147900000214577, 255964.817800000309944 ], [ 356550.278300002217293, 255937.687699999660254 ], [ 356601.074199996888638, 255938.314500000327826 ], [ 356600.289499998092651, 255935.774999998509884 ], [ 356469.66499999910593, 255934.916999999433756 ], [ 356421.795900002121925, 255969.355599999427795 ], [ 356396.641999997198582, 255987.725999999791384 ], [ 356395.758299998939037, 255996.795800000429153 ], [ 356400.509900003671646, 256006.967199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050149", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95763422, "LATITUDE": 18.33491674, "OBJECTID_1": 8674, "PARCEL_NO_": "105204050149", "Tax_Legal_": "SUB BASE 108 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 293800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.88708472100001, "SHAPE_Area": 1159.79083956 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355973.35639999806881, 256170.234999999403954 ], [ 355998.362800002098083, 256169.173099998384714 ], [ 355996.105700001120567, 256150.156199999153614 ], [ 355989.145599998533726, 256115.268800001591444 ], [ 355985.123099997639656, 256114.180399999022484 ], [ 355978.663599997758865, 256115.18299999833107 ], [ 355974.614000000059605, 256117.260800000280142 ], [ 355972.166299998760223, 256120.618299998342991 ], [ 355973.543399997055531, 256148.282800000160933 ], [ 355972.605800002813339, 256163.684999998658895 ], [ 355973.35639999806881, 256170.234999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050190", "MAP": null, "PARCEL_NAM": "170-5", "ACRE": null, "LONGITUDE": -64.95147189, "LATITUDE": 18.33476725, "OBJECTID_1": 8712, "PARCEL_NO_": "105204050190", "Tax_Legal_": "CROWN BAY 170-5 SOUTHSIDE QUARTER", "Name": "HEAVY MATERIAL, LLC", "Address": "PO Box 7368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010368, "Country": "United States", "Land_Value": 0, "Improved_V": 174200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.272185036, "SHAPE_Area": 1694.6696666400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356663.81700000166893, 256145.699700001627207 ], [ 356632.73759999871254, 256102.38230000063777 ], [ 356606.779200002551079, 256120.535000000149012 ], [ 356637.856700003147125, 256164.063499998301268 ], [ 356663.81700000166893, 256145.699700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050190", "MAP": null, "PARCEL_NAM": "170-4", "ACRE": null, "LONGITUDE": -64.95118105, "LATITUDE": 18.33432394, "OBJECTID_1": 8712, "PARCEL_NO_": "105204050190", "Tax_Legal_": "CROWN BAY 170-5 SOUTHSIDE QUARTER", "Name": "HEAVY MATERIAL, LLC", "Address": "PO Box 7368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010368, "Country": "United States", "Land_Value": 0, "Improved_V": 174200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 477.619756854, "SHAPE_Area": 4013.9141272799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356644.302199997007847, 255975.398600000888109 ], [ 356639.433700002729893, 255978.947399999946356 ], [ 356654.557700000703335, 256002.080299999564886 ], [ 356649.690999999642372, 256005.418000001460314 ], [ 356634.568899996578693, 255982.073899999260902 ], [ 356631.320299997925758, 255984.791600000113249 ], [ 356644.030699998140335, 256007.271499998867512 ], [ 356670.067100003361702, 256074.612399999052286 ], [ 356632.73759999871254, 256102.38230000063777 ], [ 356663.81700000166893, 256145.699700001627207 ], [ 356703.568999998271465, 256117.527499999850988 ], [ 356705.235600002110004, 256111.208299998193979 ], [ 356704.45269999653101, 256108.457699999213219 ], [ 356677.34910000115633, 256071.716699998825788 ], [ 356664.723300002515316, 256039.315999999642372 ], [ 356664.971400000154972, 256010.187100000679493 ], [ 356644.302199997007847, 255975.398600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050177", "MAP": "F9-3209-T74", "PARCEL_NAM": "121", "ACRE": ".310", "LONGITUDE": -64.95639224, "LATITUDE": 18.33461933, "OBJECTID_1": 8699, "PARCEL_NO_": "105204050177", "Tax_Legal_": "121,167&171 SUB BASE SOUTHSIDE QTR.", "Name": "OTTLEY COMMUNICATIONS", "Address": "PO Box 1340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 400600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.33839880299999, "SHAPE_Area": 1472.4647239400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356140.044699996709824, 256102.571699999272823 ], [ 356103.083800002932549, 256087.07039999961853 ], [ 356091.4628000035882, 256126.02760000154376 ], [ 356094.691600002348423, 256125.631900001317263 ], [ 356125.239799998700619, 256136.647700000554323 ], [ 356126.847000002861023, 256137.294100001454353 ], [ 356140.044699996709824, 256102.571699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105104010500", "MAP": "D9-676-T67", "PARCEL_NAM": "70CA", "ACRE": null, "LONGITUDE": -64.96991687000001, "LATITUDE": 18.33458929, "OBJECTID_1": 7431, "PARCEL_NO_": "105104010500", "Tax_Legal_": "70C REM.,70D&70E LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1067500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.32557540600001, "SHAPE_Area": 1047.6286753 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354694.344499997794628, 256088.628400001674891 ], [ 354699.333400003612041, 256070.937399998307228 ], [ 354680.773800000548363, 256072.474199999123812 ], [ 354676.648699998855591, 256083.417300000786781 ], [ 354674.123700000345707, 256095.851199999451637 ], [ 354673.25450000166893, 256103.232299998402596 ], [ 354673.107900001108646, 256120.430300001055002 ], [ 354681.169799998402596, 256120.649399999529123 ], [ 354690.037799999117851, 256120.890500001609325 ], [ 354697.29280000180006, 256121.160900000482798 ], [ 354698.145900003612041, 256115.679499998688698 ], [ 354696.576399996876717, 256110.600400000810623 ], [ 354696.601599998772144, 256107.645300000905991 ], [ 354698.230400003492832, 256105.758799999952316 ], [ 354694.294100001454353, 256094.538600001484156 ], [ 354694.344499997794628, 256088.628400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050700", "MAP": "B9-250-T69", "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.95383098000001, "LATITUDE": 18.33430559, "OBJECTID_1": 8726, "PARCEL_NO_": "105204050700", "Tax_Legal_": "NISKY 13 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.26374622899999, "SHAPE_Area": 5744.63445804 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356392.254399999976158, 256029.486600000411272 ], [ 356388.764899998903275, 256026.199799999594688 ], [ 356347.737099997699261, 256043.889899998903275 ], [ 356348.941899999976158, 256064.311900001019239 ], [ 356349.116899996995926, 256067.276599999517202 ], [ 356351.970399998128414, 256115.644999999552965 ], [ 356404.401900000870228, 256118.034200001507998 ], [ 356442.275200001895428, 256121.08839999884367 ], [ 356397.830200001597404, 256037.553800001740456 ], [ 356392.254399999976158, 256029.486600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105104010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97008611, "LATITUDE": 18.33444183, "OBJECTID_1": 7431, "PARCEL_NO_": "105104010500", "Tax_Legal_": "70C REM.,70D&70E LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1067500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.321163393199996, "SHAPE_Area": 118.292716009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354674.317900002002716, 256073.054699998348951 ], [ 354663.020599998533726, 256074.017700001597404 ], [ 354666.901100002229214, 256091.781300000846386 ], [ 354667.638999998569489, 256099.808899998664856 ], [ 354669.343400001525879, 256089.057000000029802 ], [ 354671.027900002896786, 256080.627099998295307 ], [ 354674.317900002002716, 256073.054699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050177", "MAP": "D9-1220-T74", "PARCEL_NAM": "121", "ACRE": null, "LONGITUDE": -64.95447111, "LATITUDE": 18.33424389, "OBJECTID_1": 8699, "PARCEL_NO_": "105204050177", "Tax_Legal_": "121,167&171 SUB BASE SOUTHSIDE QTR.", "Name": "OTTLEY COMMUNICATIONS", "Address": "PO Box 1340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 400600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.193422693, "SHAPE_Area": 1382.7537699 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356349.116899996995926, 256067.276599999517202 ], [ 356348.941899999976158, 256064.311900001019239 ], [ 356342.783399999141693, 256062.645599998533726 ], [ 356296.125200003385544, 256049.598099999129772 ], [ 356298.46679999679327, 256058.694299999624491 ], [ 356308.569399997591972, 256103.317699998617172 ], [ 356349.116899996995926, 256067.276599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105104010500", "MAP": "D9-676-T67", "PARCEL_NAM": "70C", "ACRE": null, "LONGITUDE": -64.97008531, "LATITUDE": 18.33393656, "OBJECTID_1": 7431, "PARCEL_NO_": "105104010500", "Tax_Legal_": "70C REM.,70D&70E LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1067500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.94115186100001, "SHAPE_Area": 2133.12230933 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354674.317900002002716, 256073.054699998348951 ], [ 354680.951800003647804, 256051.577399998903275 ], [ 354682.65259999781847, 256041.247699998319149 ], [ 354683.61710000038147, 256022.679400000721216 ], [ 354680.683200001716614, 255988.458200000226498 ], [ 354678.282200001180172, 255986.327599998563528 ], [ 354653.261399999260902, 255989.078200001269579 ], [ 354651.618199996650219, 255992.653299998492002 ], [ 354653.758400000631809, 256025.390299998223782 ], [ 354659.998499996960163, 256050.139299999922514 ], [ 354663.020599998533726, 256074.017700001597404 ], [ 354674.317900002002716, 256073.054699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105104010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96993623, "LATITUDE": 18.33396264, "OBJECTID_1": 7431, "PARCEL_NO_": "105104010500", "Tax_Legal_": "70C REM.,70D&70E LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1067500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.982833618, "SHAPE_Area": 557.51487215199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354680.773800000548363, 256072.474199999123812 ], [ 354684.906099997460842, 256060.686799999326468 ], [ 354688.260799996554852, 256045.515500001609325 ], [ 354690.028099998831749, 256027.375900000333786 ], [ 354687.790700003504753, 256006.037200000137091 ], [ 354687.885999999940395, 255994.850000001490116 ], [ 354690.382299996912479, 255985.793400000780821 ], [ 354678.282200001180172, 255986.327599998563528 ], [ 354680.683200001716614, 255988.458200000226498 ], [ 354683.61710000038147, 256022.679400000721216 ], [ 354682.65259999781847, 256041.247699998319149 ], [ 354680.951800003647804, 256051.577399998903275 ], [ 354674.317900002002716, 256073.054699998348951 ], [ 354680.773800000548363, 256072.474199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105104010500", "MAP": "D9-676-T67", "PARCEL_NAM": "70C", "ACRE": null, "LONGITUDE": -64.96974328, "LATITUDE": 18.33390046, "OBJECTID_1": 7431, "PARCEL_NO_": "105104010500", "Tax_Legal_": "70C REM.,70D&70E LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1067500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.83468811500001, "SHAPE_Area": 2742.2960626499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354699.333400003612041, 256070.937399998307228 ], [ 354703.368500001728535, 256070.548200000077486 ], [ 354705.018899999558926, 256066.128699999302626 ], [ 354705.044100001454353, 256063.173599999397993 ], [ 354709.930500000715256, 256057.51410000026226 ], [ 354709.957500003278255, 256054.347899999469519 ], [ 354707.531400002539158, 256055.172400001436472 ], [ 354705.934900000691414, 256053.259500000625849 ], [ 354705.978100001811981, 256048.193599998950958 ], [ 354709.235699996352196, 256044.4206000007689 ], [ 354710.853699997067451, 256043.800599999725819 ], [ 354712.464599996805191, 256044.024900000542402 ], [ 354714.059199996292591, 256046.148800000548363 ], [ 354716.488899998366833, 256044.902199998497963 ], [ 354718.96000000089407, 256038.800700001418591 ], [ 354719.105700001120567, 256021.703299999237061 ], [ 354719.924599997699261, 256020.232299998402596 ], [ 354727.186800003051758, 256019.658500000834465 ], [ 354728.005699999630451, 256018.1875 ], [ 354729.69200000166893, 256009.546500001102686 ], [ 354727.294699996709824, 256006.99379999935627 ], [ 354729.078100003302097, 255986.954500000923872 ], [ 354725.897799998521805, 255981.651099998503923 ], [ 354723.477099999785423, 255981.842399999499321 ], [ 354690.382299996912479, 255985.793400000780821 ], [ 354687.885999999940395, 255994.850000001490116 ], [ 354687.790700003504753, 256006.037200000137091 ], [ 354690.028099998831749, 256027.375900000333786 ], [ 354688.260799996554852, 256045.515500001609325 ], [ 354684.906099997460842, 256060.686799999326468 ], [ 354680.773800000548363, 256072.474199999123812 ], [ 354699.333400003612041, 256070.937399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050177", "MAP": "D9-2626-T84", "PARCEL_NAM": "167", "ACRE": "0.07", "LONGITUDE": -64.9544518, "LATITUDE": 18.33407154, "OBJECTID_1": 8699, "PARCEL_NO_": "105204050177", "Tax_Legal_": "121,167&171 SUB BASE SOUTHSIDE QTR.", "Name": "OTTLEY COMMUNICATIONS", "Address": "PO Box 1340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 400600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.83696960499999, "SHAPE_Area": 275.735709327 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356325.136200003325939, 256051.735399998724461 ], [ 356292.943099997937679, 256044.505800001323223 ], [ 356296.125200003385544, 256049.598099999129772 ], [ 356342.783399999141693, 256062.645599998533726 ], [ 356344.450000002980232, 256056.326400000602007 ], [ 356341.231899999082088, 256055.455699998885393 ], [ 356325.136200003325939, 256051.735399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050177", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95432336, "LATITUDE": 18.33403387, "OBJECTID_1": 8699, "PARCEL_NO_": "105204050177", "Tax_Legal_": "121,167&171 SUB BASE SOUTHSIDE QTR.", "Name": "OTTLEY COMMUNICATIONS", "Address": "PO Box 1340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 400600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.4400796089, "SHAPE_Area": 135.826245607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356326.80460000038147, 256045.205099999904633 ], [ 356325.136200003325939, 256051.735399998724461 ], [ 356341.231899999082088, 256055.455699998885393 ], [ 356342.929099999368191, 256045.548200000077486 ], [ 356326.80460000038147, 256045.205099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": "D9-4291-T88", "PARCEL_NAM": "17", "ACRE": "0.11", "LONGITUDE": -64.95363895, "LATITUDE": 18.33380639, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.09082567199999, "SHAPE_Area": 493.58645692499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356400.509900003671646, 256006.967199999839067 ], [ 356398.406499996781349, 256002.464699998497963 ], [ 356388.145000003278255, 256012.320300001651049 ], [ 356391.570299997925758, 256015.126600001007318 ], [ 356396.374099999666214, 256019.176699999719858 ], [ 356398.76240000128746, 256022.78489999845624 ], [ 356402.752599999308586, 256027.672699999064207 ], [ 356411.483599998056889, 256043.9983000010252 ], [ 356430.914200000464916, 256034.869300000369549 ], [ 356420.448299996554852, 256032.883799999952316 ], [ 356406.071400001645088, 256016.723000001162291 ], [ 356402.090199999511242, 256010.779800001531839 ], [ 356400.509900003671646, 256006.967199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050118", "MAP": "B9-301-T70", "PARCEL_NAM": "132", "ACRE": "1.49", "LONGITUDE": -64.96240679, "LATITUDE": 18.33341683, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.30026813299997, "SHAPE_Area": 6875.09930506 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355527.838100001215935, 255933.541400000452995 ], [ 355498.810900002717972, 255933.303800001740456 ], [ 355481.050399996340275, 255935.691599998623133 ], [ 355461.652199998497963, 255941.021200001239777 ], [ 355437.383699998259544, 255950.110700000077486 ], [ 355433.326999999582767, 255953.032800000160933 ], [ 355430.880999997258186, 255956.179200001060963 ], [ 355429.234300002455711, 255960.176500000059605 ], [ 355429.19650000333786, 255964.609200000762939 ], [ 355433.010499998927116, 255990.182700000703335 ], [ 355436.919799998402596, 256004.569099999964237 ], [ 355440.884800001978874, 256012.412000000476837 ], [ 355445.668700002133846, 256018.783900000154972 ], [ 355475.554399996995926, 256012.906800001859665 ], [ 355507.850100003182888, 256008.104899998754263 ], [ 355515.934799998998642, 256005.638000000268221 ], [ 355522.417700000107288, 256001.89130000025034 ], [ 355525.673500001430511, 255998.3293999992311 ], [ 355528.257799997925758, 255978.929900001734495 ], [ 355529.091099999845028, 255975.770300000905991 ], [ 355526.906000003218651, 255948.310300000011921 ], [ 355527.838100001215935, 255933.541400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050133", "MAP": null, "PARCEL_NAM": "141", "ACRE": null, "LONGITUDE": -64.95885926, "LATITUDE": 18.33358028, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.033039737, "SHAPE_Area": 885.24895920999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355851.637699998915195, 255975.877099998295307 ], [ 355835.336999997496605, 255996.219799999147654 ], [ 355852.905100002884865, 256016.417399998754263 ], [ 355878.908500000834465, 255992.987799998372793 ], [ 355851.637699998915195, 255975.877099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050133", "MAP": null, "PARCEL_NAM": "142", "ACRE": null, "LONGITUDE": -64.95902104, "LATITUDE": 18.33346711, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.473791221, "SHAPE_Area": 287.73482069400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355844.418600000441074, 255971.385099999606609 ], [ 355840.369099996984005, 255973.462900001555681 ], [ 355825.754799999296665, 255985.164500001817942 ], [ 355835.336999997496605, 255996.219799999147654 ], [ 355851.637699998915195, 255975.877099998295307 ], [ 355844.418600000441074, 255971.385099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95525541000001, "LATITUDE": 18.33344454, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.564357852000001, "SHAPE_Area": 277.69336970199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356240.3378000035882, 255972.303399998694658 ], [ 356220.041599996387959, 255988.391499999910593 ], [ 356240.982299998402596, 255991.307100001722574 ], [ 356249.110200002789497, 255983.774300001561642 ], [ 356240.3378000035882, 255972.303399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95581599, "LATITUDE": 18.33332989, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.226516070399995, "SHAPE_Area": 230.63223432000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356173.534400001168251, 255957.613400001078844 ], [ 356166.225400000810623, 255963.675299998372793 ], [ 356181.381700001657009, 255983.008900001645088 ], [ 356188.685300000011921, 255977.580200001597404 ], [ 356173.534400001168251, 255957.613400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204073100", "MAP": "D9-8298-T009", "PARCEL_NAM": null, "ACRE": ".3016", "LONGITUDE": -64.95623365, "LATITUDE": 18.33324379, "OBJECTID_1": 8937, "PARCEL_NO_": "105204073100", "Tax_Legal_": "86 SUBBASE 6 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 88200, "Improved_V": 1057500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.232209885, "SHAPE_Area": 1403.61725286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356126.112999998033047, 255939.493400000035763 ], [ 356101.751000002026558, 255959.559000000357628 ], [ 356102.521300002932549, 255963.787200000137091 ], [ 356116.986400000751019, 255969.605099998414516 ], [ 356137.898400001227856, 255975.897999998182058 ], [ 356158.830200001597404, 255979.868999999016523 ], [ 356162.071599997580051, 255977.995700001716614 ], [ 356162.109399996697903, 255973.563000001013279 ], [ 356152.573899999260902, 255957.01969999819994 ], [ 356143.002400003373623, 255944.697900000959635 ], [ 356134.163500003516674, 255941.037000000476837 ], [ 356126.112999998033047, 255939.493400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050176", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95927281, "LATITUDE": 18.33322135, "OBJECTID_1": 8698, "PARCEL_NO_": "105204050176", "Tax_Legal_": "SUB BASE 25 S.S. QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 115600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.73943741, "SHAPE_Area": 1094.8591935500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355815.716899998486042, 255932.942200001329184 ], [ 355785.707099996507168, 255953.383799999952316 ], [ 355804.925499998033047, 255969.162000000476837 ], [ 355812.945500001311302, 255974.2939000017941 ], [ 355815.358999997377396, 255974.946899998933077 ], [ 355821.012199997901917, 255973.937699999660254 ], [ 355834.836400002241135, 255960.329799998551607 ], [ 355815.716899998486042, 255932.942200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204070600", "MAP": "D9-7320-T003", "PARCEL_NAM": "116", "ACRE": ".438", "LONGITUDE": -64.95582983, "LATITUDE": 18.33299429, "OBJECTID_1": 8931, "PARCEL_NO_": "105204070600", "Tax_Legal_": "11 & 116 SUBMARINE BASE 6 SOUTHSIDE QTR", "Name": "VIRGIN ISLANDS PORT AUTHORITY", "Address": "PO Box 301707", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 584800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.54855473699999, "SHAPE_Area": 1897.3215771299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356184.896499998867512, 255949.051600001752377 ], [ 356208.238899998366833, 255930.000900000333786 ], [ 356187.707400001585484, 255903.056200001388788 ], [ 356147.942800000309944, 255932.706000000238419 ], [ 356142.291400000452995, 255933.504099998623133 ], [ 356166.225400000810623, 255963.675299998372793 ], [ 356173.534400001168251, 255957.613400001078844 ], [ 356184.896499998867512, 255949.051600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050162", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95900608, "LATITUDE": 18.33302364, "OBJECTID_1": 8687, "PARCEL_NO_": "105204050162", "Tax_Legal_": "SUB BASE 24 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 180700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.24029775100001, "SHAPE_Area": 1227.4491083 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355849.783399999141693, 255909.578600000590086 ], [ 355815.716899998486042, 255932.942200001329184 ], [ 355834.836400002241135, 255960.329799998551607 ], [ 355858.417300000786781, 255937.302499998360872 ], [ 355859.26129999756813, 255932.876400001347065 ], [ 355861.741400003433228, 255925.719500001519918 ], [ 355860.171899996697903, 255920.640500001609325 ], [ 355849.783399999141693, 255909.578600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050167", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95661447000001, "LATITUDE": 18.33316255, "OBJECTID_1": 8690, "PARCEL_NO_": "105204050167", "Tax_Legal_": "CROWN BAY 10 S S QTR", "Name": "CIFRE, VICTOR", "Address": "PO Box 1708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 195400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.702472861199993, "SHAPE_Area": 157.52687084300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356110.793099999427795, 255939.368099998682737 ], [ 356092.127400003373623, 255953.358600001782179 ], [ 356087.338100001215935, 255947.619800001382828 ], [ 356077.599399998784065, 255954.928399998694658 ], [ 356086.443599998950958, 255957.9560999982059 ], [ 356092.094999998807907, 255957.157999999821186 ], [ 356095.336499996483326, 255955.284699998795986 ], [ 356113.204800002276897, 255940.232200000435114 ], [ 356110.793099999427795, 255939.368099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050133", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95950574, "LATITUDE": 18.33295708, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.071291917, "SHAPE_Area": 1621.48163548 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355801.375900000333786, 255912.559900000691414 ], [ 355790.218800000846386, 255897.058699999004602 ], [ 355759.366700001060963, 255921.715199999511242 ], [ 355761.765900000929832, 255924.05689999833703 ], [ 355778.515000000596046, 255945.725499998778105 ], [ 355785.707099996507168, 255953.383799999952316 ], [ 355815.716899998486042, 255932.942200001329184 ], [ 355801.375900000333786, 255912.559900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050167", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95687589000001, "LATITUDE": 18.33301512, "OBJECTID_1": 8690, "PARCEL_NO_": "105204050167", "Tax_Legal_": "CROWN BAY 10 S S QTR", "Name": "CIFRE, VICTOR", "Address": "PO Box 1708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 195400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.12258364799999, "SHAPE_Area": 667.29827554500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356077.599399998784065, 255954.928399998694658 ], [ 356068.029700003564358, 255942.395599998533726 ], [ 356084.262100003659725, 255930.073899999260902 ], [ 356073.898699998855591, 255916.05689999833703 ], [ 356043.062799997627735, 255938.813700001686811 ], [ 356059.928800001740456, 255946.762200001627207 ], [ 356066.345200002193451, 255950.825500000268221 ], [ 356077.599399998784065, 255954.928399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95691128, "LATITUDE": 18.33281071, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 421.85996076200001, "SHAPE_Area": 3171.0519470099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356007.073700003325939, 255903.89979999884963 ], [ 356017.440600000321865, 255917.494699999690056 ], [ 356053.965700000524521, 255889.507100000977516 ], [ 356064.327200002968311, 255903.735100001096725 ], [ 356033.487800002098083, 255926.914099998772144 ], [ 356041.457400001585484, 255937.956199999898672 ], [ 356043.062799997627735, 255938.813700001686811 ], [ 356073.898699998855591, 255916.05689999833703 ], [ 356084.262100003659725, 255930.073899999260902 ], [ 356068.029700003564358, 255942.395599998533726 ], [ 356077.599399998784065, 255954.928399998694658 ], [ 356087.338100001215935, 255947.619800001382828 ], [ 356092.127400003373623, 255953.358600001782179 ], [ 356110.793099999427795, 255939.368099998682737 ], [ 356056.576999999582767, 255866.941399998962879 ], [ 356007.073700003325939, 255903.89979999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "A3-97-T66", "PARCEL_NAM": "TRACT 1 of REM 35", "ACRE": "19.83", "LONGITUDE": -64.96257854, "LATITUDE": 18.32919093, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1690.2666425699999, "SHAPE_Area": 56477.742868000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355565.608599998056889, 255191.434500001370907 ], [ 355565.894799999892712, 255157.836399998515844 ], [ 355406.385099999606609, 255324.414900001138449 ], [ 355403.52759999781847, 255407.917500000447035 ], [ 355403.552799999713898, 255412.113000001758337 ], [ 355404.046400003135204, 255494.335999999195337 ], [ 355441.200099997222424, 255937.054099999368191 ], [ 355464.737099997699261, 255893.431600000709295 ], [ 355476.342399999499321, 255873.127099998295307 ], [ 355471.020700000226498, 255857.967300001531839 ], [ 355473.666599996387959, 255824.894299998879433 ], [ 355472.343599997460842, 255765.362900000065565 ], [ 355475.92400000244379, 255716.802099999040365 ], [ 355481.670500002801418, 255702.931200001388788 ], [ 355512.362199999392033, 255655.306099999696016 ], [ 355518.712200000882149, 255622.497699998319149 ], [ 355513.42059999704361, 255578.047600001096725 ], [ 355503.895499996840954, 255493.380800001323223 ], [ 355502.837200000882149, 255458.455699998885393 ], [ 355483.7871999964118, 255436.230700001120567 ], [ 355500.720499999821186, 255401.305599998682737 ], [ 355496.487199999392033, 255364.263900000602007 ], [ 355498.603900000452995, 255329.338799998164177 ], [ 355525.062200002372265, 255311.347100000828505 ], [ 355538.785199999809265, 255311.116099998354912 ], [ 355540.44820000231266, 255305.219099998474121 ], [ 355543.72919999808073, 255298.701999999582767 ], [ 355548.620999999344349, 255292.409200001507998 ], [ 355554.346100002527237, 255282.956900000572205 ], [ 355558.451399996876717, 255274.335700001567602 ], [ 355561.861800000071526, 255252.620900001376867 ], [ 355562.330600000917912, 255244.965599998831749 ], [ 355565.608599998056889, 255191.434500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050167", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95714146, "LATITUDE": 18.3328246, "OBJECTID_1": 8690, "PARCEL_NO_": "105204050167", "Tax_Legal_": "CROWN BAY 10 S S QTR", "Name": "CIFRE, VICTOR", "Address": "PO Box 1708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 195400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.876979113, "SHAPE_Area": 965.92547226199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356017.440600000321865, 255917.494699999690056 ], [ 356006.89019999653101, 255925.429900001734495 ], [ 356024.5878000035882, 255930.429900001734495 ], [ 356041.457400001585484, 255937.956199999898672 ], [ 356033.487800002098083, 255926.914099998772144 ], [ 356064.327200002968311, 255903.735100001096725 ], [ 356053.965700000524521, 255889.507100000977516 ], [ 356017.440600000321865, 255917.494699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050156", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95915754000001, "LATITUDE": 18.33282548, "OBJECTID_1": 8681, "PARCEL_NO_": "105204050156", "Tax_Legal_": "SUB BASE 5A /S.BODY SHOP SOUTHSIDE QUARTER", "Name": "MOHAMED, DERYK", "Address": "4109 Estate Fortuna Ml", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.907289198, "SHAPE_Area": 986.52107126400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355830.586499996483326, 255891.267400000244379 ], [ 355801.375900000333786, 255912.559900000691414 ], [ 355815.716899998486042, 255932.942200001329184 ], [ 355849.783399999141693, 255909.578600000590086 ], [ 355830.586499996483326, 255891.267400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204070600", "MAP": "D9-7320-T003", "PARCEL_NAM": "11", "ACRE": ".85", "LONGITUDE": -64.95613151000001, "LATITUDE": 18.33269681, "OBJECTID_1": 8931, "PARCEL_NO_": "105204070600", "Tax_Legal_": "11 & 116 SUBMARINE BASE 6 SOUTHSIDE QTR", "Name": "VIRGIN ISLANDS PORT AUTHORITY", "Address": "PO Box 301707", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 584800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.80138836099999, "SHAPE_Area": 3511.4621327599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356155.013700000941753, 255859.936599999666214 ], [ 356116.876000002026558, 255887.910999998450279 ], [ 356099.837399996817112, 255900.226100001484156 ], [ 356122.988399997353554, 255927.646600000560284 ], [ 356142.291400000452995, 255933.504099998623133 ], [ 356147.942800000309944, 255932.706000000238419 ], [ 356187.707400001585484, 255903.056200001388788 ], [ 356155.013700000941753, 255859.936599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050121", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95751821, "LATITUDE": 18.33282009, "OBJECTID_1": 8654, "PARCEL_NO_": "105204050121", "Tax_Legal_": "SUB BASE 140 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 27800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.74534499000001, "SHAPE_Area": 644.06522267299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355991.764499999582767, 255902.508000001311302 ], [ 355973.9087999984622, 255916.082899998873472 ], [ 356006.89019999653101, 255925.429900001734495 ], [ 356017.440600000321865, 255917.494699999690056 ], [ 356007.073700003325939, 255903.89979999884963 ], [ 356000.693300001323223, 255895.614900000393391 ], [ 355991.764499999582767, 255902.508000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050135", "MAP": "D9-1142-T73", "PARCEL_NAM": "19 (Part of SECTION 3 of TRACT 4)", "ACRE": ".59", "LONGITUDE": -64.95988002, "LATITUDE": 18.33265103, "OBJECTID_1": 8664, "PARCEL_NO_": "105204050135", "Tax_Legal_": "SUB BASE #19 SOUTHSIDE QTR", "Name": "ANTILLES GAS CORPORATION", "Address": "PO Box 302067", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 80500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.594164046, "SHAPE_Area": 2515.8356811499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355789.42679999768734, 255895.363499999046326 ], [ 355776.601400002837181, 255886.392599999904633 ], [ 355734.892499998211861, 255860.297800000756979 ], [ 355712.112499997019768, 255883.964899998158216 ], [ 355719.247100003063679, 255898.377700001001358 ], [ 355726.444600000977516, 255905.402699999511242 ], [ 355733.667199999094009, 255909.472600001841784 ], [ 355746.541199997067451, 255912.744300000369549 ], [ 355752.163800001144409, 255915.323499999940395 ], [ 355759.366700001060963, 255921.715199999511242 ], [ 355790.218800000846386, 255897.058699999004602 ], [ 355789.42679999768734, 255895.363499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": "D3-405-T86", "PARCEL_NAM": "70Z", "ACRE": null, "LONGITUDE": -64.97271625, "LATITUDE": 18.33253119, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.21860665600002, "SHAPE_Area": 4833.8890224999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354450.270599998533726, 255866.296900000423193 ], [ 354344.160999998450279, 255827.431600000709295 ], [ 354331.768500000238419, 255865.279199998825788 ], [ 354422.835500001907349, 255904.230000000447035 ], [ 354431.369300000369549, 255907.938700001686811 ], [ 354434.598200000822544, 255907.543000001460314 ], [ 354437.844999998807907, 255905.036400001496077 ], [ 354450.270599998533726, 255866.296900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050140", "MAP": "D9-8048-T007", "PARCEL_NAM": "70A Rev.", "ACRE": ".19", "LONGITUDE": -64.95778795, "LATITUDE": 18.33271633, "OBJECTID_1": 8667, "PARCEL_NO_": "105204050140", "Tax_Legal_": "SUB BASE #70A KRUM BAY", "Name": "ZIEBART, AUTO RUST PROOF", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 425100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.71336725499999, "SHAPE_Area": 875.54727099299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355983.791299998760223, 255891.888000000268221 ], [ 355975.821699999272823, 255880.845899999141693 ], [ 355941.731799997389317, 255906.953600000590086 ], [ 355973.9087999984622, 255916.082899998873472 ], [ 355991.764499999582767, 255902.508000001311302 ], [ 355983.791299998760223, 255891.888000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050156", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95930692, "LATITUDE": 18.33266033, "OBJECTID_1": 8681, "PARCEL_NO_": "105204050156", "Tax_Legal_": "SUB BASE 5A /S.BODY SHOP SOUTHSIDE QUARTER", "Name": "MOHAMED, DERYK", "Address": "4109 Estate Fortuna Ml", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.254377594, "SHAPE_Area": 768.23112456299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355812.991499997675419, 255874.23589999973774 ], [ 355789.42679999768734, 255895.363499999046326 ], [ 355790.218800000846386, 255897.058699999004602 ], [ 355801.375900000333786, 255912.559900000691414 ], [ 355830.586499996483326, 255891.267400000244379 ], [ 355812.991499997675419, 255874.23589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050166", "MAP": "D9-7824-T006", "PARCEL_NAM": "194", "ACRE": ".997", "LONGITUDE": -64.95791578, "LATITUDE": 18.33189334, "OBJECTID_1": 8689, "PARCEL_NO_": "105204050166", "Tax_Legal_": "SUB BASE 97 S S QTR", "Name": "WILHELMSEN, RANDOLPH", "Address": "PO Box 524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 34600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.087900848, "SHAPE_Area": 3399.547601 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355938.106600001454353, 255859.216699998825788 ], [ 355940.110699996352196, 255863.070500001311302 ], [ 355981.811200000345707, 255813.960099998861551 ], [ 355997.005699999630451, 255799.098799999803305 ], [ 355975.227399997413158, 255770.454100001603365 ], [ 355922.8716000020504, 255794.905299998819828 ], [ 355935.856700003147125, 255839.355599999427795 ], [ 355938.106600001454353, 255859.216699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050124", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95882202, "LATITUDE": 18.33256231, "OBJECTID_1": 8656, "PARCEL_NO_": "105204050124", "Tax_Legal_": "SUBMARINE BASE #22 SOUTHSIDE QTR", "Name": "ARIANS BAR & RESTAURANT", "Address": "8214 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 775400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.85986257, "SHAPE_Area": 1373.3187415699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355834.681000001728535, 255883.912599999457598 ], [ 355849.880500003695488, 255898.180300001055002 ], [ 355853.877899996936321, 255902.223799999803305 ], [ 355863.535700000822544, 255904.413800001144409 ], [ 355874.816799998283386, 255905.350499998778105 ], [ 355880.750500001013279, 255871.412999998778105 ], [ 355856.674400001764297, 255857.916999999433756 ], [ 355834.681000001728535, 255883.912599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95463649, "LATITUDE": 18.33223715, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.92171897200001, "SHAPE_Area": 4340.7957055400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356296.60639999806881, 255898.458999998867512 ], [ 356297.367700003087521, 255903.742600001394749 ], [ 356348.465700000524521, 255868.90819999948144 ], [ 356297.447899997234344, 255799.674100000411272 ], [ 356258.504000000655651, 255827.6418999992311 ], [ 356295.177199997007847, 255876.915800001472235 ], [ 356287.063699997961521, 255882.760000001639128 ], [ 356296.60639999806881, 255898.458999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105203041001", "MAP": "G3-166-T78", "PARCEL_NAM": "4", "ACRE": "0.63", "LONGITUDE": -64.95965162, "LATITUDE": 18.33236212, "OBJECTID_1": 8559, "PARCEL_NO_": "105203041001", "Tax_Legal_": "4 SUBBASE No.6 SOUTHSIDE QTR.", "Name": "SUNTECH GROUP INC", "Address": "9020 Estate Pearl", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 0, "Improved_V": 176000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.817884636, "SHAPE_Area": 2825.3565471900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355759.418099999427795, 255821.024000000208616 ], [ 355743.104900002479553, 255842.844300001859665 ], [ 355734.892499998211861, 255860.297800000756979 ], [ 355776.601400002837181, 255886.392599999904633 ], [ 355789.42679999768734, 255895.363499999046326 ], [ 355812.991499997675419, 255874.23589999973774 ], [ 355800.214599996805191, 255859.565900001674891 ], [ 355798.627099998295307, 255856.597600001841784 ], [ 355792.232400000095367, 255850.001299999654293 ], [ 355759.418099999427795, 255821.024000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94507428, "LATITUDE": 18.34071727, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.90451618, "SHAPE_Area": 783.54922685999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357324.422100000083447, 256786.075899999588728 ], [ 357295.432599999010563, 256781.405699998140335 ], [ 357289.542099997401237, 256810.277300000190735 ], [ 357316.135999999940395, 256812.183699999004602 ], [ 357323.601400002837181, 256787.75789999961853 ], [ 357324.422100000083447, 256786.075899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-5603-T93", "PARCEL_NAM": "212-C-REM", "ACRE": "1.85", "LONGITUDE": -64.94687335, "LATITUDE": 18.33971639, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 560.72045348500001, "SHAPE_Area": 9010.5238473400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357147.898299999535084, 256683.095100000500679 ], [ 357173.773299999535084, 256580.08219999819994 ], [ 357128.405799999833107, 256604.831000000238419 ], [ 357116.212200000882149, 256616.341299999505281 ], [ 357107.231299996376038, 256629.355599999427795 ], [ 357104.762000001966953, 256635.245999999344349 ], [ 357103.914399996399879, 256640.094200000166893 ], [ 357101.461199998855591, 256644.084899999201298 ], [ 357089.046499997377396, 256681.55799999833107 ], [ 357074.891400001943111, 256734.004399999976158 ], [ 357073.187100000679493, 256744.756299998611212 ], [ 357074.531800001859665, 256776.220199998468161 ], [ 357073.691299997270107, 256780.22410000115633 ], [ 357072.750100001692772, 256796.04839999973774 ], [ 357101.683899998664856, 256807.262099999934435 ], [ 357104.093800000846386, 256808.33729999884963 ], [ 357101.221000000834465, 256766.939399998635054 ], [ 357101.357699997723103, 256750.897399999201298 ], [ 357106.465300001204014, 256719.275199998170137 ], [ 357110.588600002229214, 256708.543200001120567 ], [ 357140.368199996650219, 256715.119699999690056 ], [ 357147.898299999535084, 256683.095100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95803194, "LATITUDE": 18.34064999, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.880276534299995, "SHAPE_Area": 310.03187504800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355922.091899998486042, 256792.541400000452995 ], [ 355952.051299996674061, 256778.010099999606609 ], [ 355936.034800000488758, 256765.002300001680851 ], [ 355932.744800001382828, 256772.574700001627207 ], [ 355922.921599999070168, 256789.804000001400709 ], [ 355922.091899998486042, 256792.541400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93836933, "LATITUDE": 18.34032287, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.550898139, "SHAPE_Area": 197.86643171099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358008.194899998605251, 256789.35020000115037 ], [ 358025.641699999570847, 256729.120299998670816 ], [ 358020.76969999819994, 256733.0912000015378 ], [ 358004.962399996817112, 256790.168099999427795 ], [ 358008.194899998605251, 256789.35020000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95531883, "LATITUDE": 18.34039401, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.15024805900001, "SHAPE_Area": 949.33360468800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356245.037699997425079, 256745.788699999451637 ], [ 356210.463299997150898, 256734.106699999421835 ], [ 356209.635399997234344, 256736.633000001311302 ], [ 356203.788000002503395, 256760.438700001686811 ], [ 356235.144299998879433, 256771.250100001692772 ], [ 356245.037699997425079, 256745.788699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95526153, "LATITUDE": 18.34020232, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.91896733599999, "SHAPE_Area": 646.44753825400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356250.809500001370907, 256730.848299998790026 ], [ 356214.647699996829033, 256716.197999998927116 ], [ 356210.463299997150898, 256734.106699999421835 ], [ 356245.037699997425079, 256745.788699999451637 ], [ 356250.809500001370907, 256730.848299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95569404, "LATITUDE": 18.34016363, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.64710245000001, "SHAPE_Area": 158.405284765 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356160.923299998044968, 256717.395199999213219 ], [ 356159.841399997472763, 256720.618400000035763 ], [ 356209.635399997234344, 256736.633000001311302 ], [ 356210.463299997150898, 256734.106699999421835 ], [ 356160.923299998044968, 256717.395199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95108895, "LATITUDE": 18.34011143, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.08139745299999, "SHAPE_Area": 268.503729491 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356690.456600002944469, 256710.170800000429153 ], [ 356673.444899998605251, 256719.319699998944998 ], [ 356653.980099998414516, 256732.459300000220537 ], [ 356650.713500000536442, 256737.28770000115037 ], [ 356656.341499999165535, 256739.233600001782179 ], [ 356669.332400001585484, 256728.785300001502037 ], [ 356690.40089999884367, 256716.714299999177456 ], [ 356690.456600002944469, 256710.170800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96128972, "LATITUDE": 18.33987018, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.08080965299999, "SHAPE_Area": 396.75521732800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355621.478699997067451, 256678.834800001233816 ], [ 355619.916400000452995, 256672.911400001496077 ], [ 355607.764200001955032, 256679.566899999976158 ], [ 355595.61370000243187, 256686.011300001293421 ], [ 355582.669600002467632, 256690.971599999815226 ], [ 355563.253300003707409, 256698.412099998444319 ], [ 355564.005699999630451, 256704.7511 ], [ 355593.939999997615814, 256693.174800001084805 ], [ 355606.074199996888638, 256688.630100000649691 ], [ 355621.478699997067451, 256678.834800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93706246000001, "LATITUDE": 18.33956797, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.56935788700002, "SHAPE_Area": 3824.5602237399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358129.98870000243187, 256690.921999998390675 ], [ 358140.44200000166893, 256694.385000001639128 ], [ 358175.01630000025034, 256706.067099999636412 ], [ 358172.536200001835823, 256713.223900001496077 ], [ 358180.565200001001358, 256717.300400000065565 ], [ 358183.862400002777576, 256708.883699998259544 ], [ 358186.311899997293949, 256705.315099999308586 ], [ 358189.5929000005126, 256698.798099998384714 ], [ 358191.252300001680851, 256693.32319999858737 ], [ 358199.443000003695488, 256678.40260000154376 ], [ 358201.92849999666214, 256670.612500000745058 ], [ 358200.3716000020504, 256664.055900000035763 ], [ 358197.159000001847744, 256662.551899999380112 ], [ 358114.222099997103214, 256648.574200000613928 ], [ 358111.788800001144409, 256650.243099998682737 ], [ 358102.651399999856949, 256681.621199999004602 ], [ 358129.98870000243187, 256690.921999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95580565, "LATITUDE": 18.33978061, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.612988301499996, "SHAPE_Area": 177.100320861 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356177.947599999606609, 256670.090300001204014 ], [ 356172.303400002419949, 256670.044100001454353 ], [ 356170.654799997806549, 256674.252500001341105 ], [ 356168.946900002658367, 256685.426500000059605 ], [ 356168.844400003552437, 256697.458000000566244 ], [ 356174.468800000846386, 256699.8260000012815 ], [ 356176.277400001883507, 256676.831599999219179 ], [ 356177.947599999606609, 256670.090300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95820205, "LATITUDE": 18.33966047, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.251587726, "SHAPE_Area": 565.76990250400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355934.376500003039837, 256675.696199998259544 ], [ 355919.29389999806881, 256647.708399999886751 ], [ 355911.972300000488758, 256655.247800000011921 ], [ 355910.325499996542931, 256659.245099999010563 ], [ 355910.910700000822544, 256685.214400000870228 ], [ 355911.693599998950958, 256687.964999999850988 ], [ 355931.134999997913837, 256677.569499999284744 ], [ 355934.376500003039837, 256675.696199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96585028, "LATITUDE": 18.33972183, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.09424114800001, "SHAPE_Area": 1083.53848713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355153.023699998855591, 256673.522999998182058 ], [ 355151.519000001251698, 256660.845100000500679 ], [ 355070.851800002157688, 256664.406700000166893 ], [ 355071.539399996399879, 256678.344500001519918 ], [ 355153.023699998855591, 256673.522999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9530783, "LATITUDE": 18.33973309, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.928141387899998, "SHAPE_Area": 77.528608522699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356468.144500002264977, 256681.331399999558926 ], [ 356456.094800002872944, 256675.955400001257658 ], [ 356454.426399998366833, 256682.485599998384714 ], [ 356466.48870000243187, 256686.38399999961257 ], [ 356468.144500002264977, 256681.331399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95277115, "LATITUDE": 18.33961233, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.712556849499997, "SHAPE_Area": 107.664051241 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356495.819799996912479, 256661.108500000089407 ], [ 356485.061599999666214, 256664.182300001382828 ], [ 356497.211300000548363, 256676.925200000405312 ], [ 356499.610500000417233, 256679.2668999992311 ], [ 356498.84910000115633, 256673.983300000429153 ], [ 356495.819799996912479, 256661.108500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95575791, "LATITUDE": 18.33954234, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.8826950383, "SHAPE_Area": 143.739797735 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356183.791299998760223, 256646.706700000911951 ], [ 356179.78320000320673, 256643.929699998348951 ], [ 356174.000500001013279, 256660.136599998921156 ], [ 356172.303400002419949, 256670.044100001454353 ], [ 356177.947599999606609, 256670.090300001204014 ], [ 356183.791299998760223, 256646.706700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91285908, "LATITUDE": 18.33955695, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.328423382499999, "SHAPE_Area": 131.99643177600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360708.653300002217293, 256702.950100000947714 ], [ 360712.706399999558926, 256700.450199998915195 ], [ 360721.584899999201298, 256699.467399999499321 ], [ 360723.242399998009205, 256694.203600000590086 ], [ 360699.872000001370907, 256692.534600000828505 ], [ 360704.670299999415874, 256697.217999998480082 ], [ 360708.653300002217293, 256702.950100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96118242, "LATITUDE": 18.33936836, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.73326973, "SHAPE_Area": 828.14315006499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355609.156700000166893, 256610.761799998581409 ], [ 355598.613499999046326, 256617.852699998766184 ], [ 355588.084700003266335, 256623.254900000989437 ], [ 355599.91499999910593, 256654.382500000298023 ], [ 355616.075400002300739, 256650.504000000655651 ], [ 355620.924099996685982, 256649.277100000530481 ], [ 355609.156700000166893, 256610.761799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91190696, "LATITUDE": 18.33944688, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.418811629, "SHAPE_Area": 687.55309954400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360770.22070000320673, 256669.679000001400709 ], [ 360793.395199999213219, 256694.355599999427795 ], [ 360842.625200003385544, 256689.481100000441074 ], [ 360859.566799998283386, 256688.564300000667572 ], [ 360874.967600002884865, 256679.191199999302626 ], [ 360874.175700001418591, 256677.495900001376867 ], [ 360863.664899997413158, 256680.787399999797344 ], [ 360857.185599997639656, 256684.111900001764297 ], [ 360845.067500002682209, 256686.756900001317263 ], [ 360832.161100000143051, 256687.284600000828505 ], [ 360809.618600003421307, 256683.089299999177456 ], [ 360781.467799998819828, 256674.626200001686811 ], [ 360770.22070000320673, 256669.679000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9139371, "LATITUDE": 18.33944085, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.500306061, "SHAPE_Area": 97.696287665699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360620.862300001084805, 256690.832499999552965 ], [ 360620.882100000977516, 256688.51069999858737 ], [ 360573.424800001084805, 256674.612300001084805 ], [ 360575.017599999904633, 256676.947299998253584 ], [ 360620.862300001084805, 256690.832499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95218361000001, "LATITUDE": 18.33941136, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.436738141699998, "SHAPE_Area": 86.295811886500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356557.882600001990795, 256654.201499998569489 ], [ 356561.951899997889996, 256649.80180000141263 ], [ 356555.587700001895428, 256639.617199998348951 ], [ 356549.104800000786781, 256643.363899998366833 ], [ 356557.882600001990795, 256654.201499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95571433000001, "LATITUDE": 18.33939119, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 26.570689060100001, "SHAPE_Area": 40.849315364799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356180.650600001215935, 256636.75959999859333 ], [ 356179.78320000320673, 256643.929699998348951 ], [ 356183.791299998760223, 256646.706700000911951 ], [ 356186.2804000005126, 256638.494500000029802 ], [ 356180.650600001215935, 256636.75959999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95583695000001, "LATITUDE": 18.33935054, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.316869924099997, "SHAPE_Area": 153.18675135199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356160.550300002098083, 256629.84010000154376 ], [ 356158.077500000596046, 256636.152699999511242 ], [ 356179.78320000320673, 256643.929699998348951 ], [ 356180.650600001215935, 256636.75959999859333 ], [ 356160.550300002098083, 256629.84010000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95184134, "LATITUDE": 18.33917359, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.81584546299999, "SHAPE_Area": 203.05677990800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356555.587700001895428, 256639.617199998348951 ], [ 356612.252599999308586, 256613.9054000005126 ], [ 356609.075900003314018, 256608.179900001734495 ], [ 356555.587700001895428, 256639.617199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95610037, "LATITUDE": 18.33926304, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.442621176399996, "SHAPE_Area": 241.863676134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356160.550300002098083, 256629.84010000154376 ], [ 356125.979599997401237, 256617.736000001430511 ], [ 356122.707599997520447, 256623.197599999606609 ], [ 356158.077500000596046, 256636.152699999511242 ], [ 356160.550300002098083, 256629.84010000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95942672, "LATITUDE": 18.33929799, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.669530743700001, "SHAPE_Area": 30.977518381300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355787.999799996614456, 256630.80180000141263 ], [ 355794.462899997830391, 256629.377000000327826 ], [ 355792.887999996542931, 256624.931200001388788 ], [ 355786.424999997019768, 256626.355900000780821 ], [ 355787.999799996614456, 256630.80180000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204031500", "MAP": "G9-2821-T78", "PARCEL_NAM": "3AA", "ACRE": ".456", "LONGITUDE": -64.95334453, "LATITUDE": 18.33901731, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.541861522, "SHAPE_Area": 1802.68800136 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356466.644100002944469, 256599.394499998539686 ], [ 356442.321999996900558, 256588.872099999338388 ], [ 356413.40089999884367, 256576.180900000035763 ], [ 356404.371399998664856, 256594.894299998879433 ], [ 356401.927299998700619, 256597.829599998891354 ], [ 356400.275100000202656, 256602.460200000554323 ], [ 356417.13570000231266, 256611.041900001466274 ], [ 356435.601800002157688, 256620.481199998408556 ], [ 356451.901199996471405, 256628.868400000035763 ], [ 356466.644100002944469, 256599.394499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9651492, "LATITUDE": 18.33876201, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 840.81581632799998, "SHAPE_Area": 16099.0597473 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355019.570699997246265, 256531.420299999415874 ], [ 355013.104000002145767, 256533.267200000584126 ], [ 355010.665299996733665, 256535.569299999624491 ], [ 355009.022100001573563, 256539.144400000572205 ], [ 355007.829199999570847, 256584.519799999892712 ], [ 355009.409500002861023, 256588.332400001585484 ], [ 355014.222199998795986, 256591.327100001275539 ], [ 355020.676299996674061, 256590.957699999213219 ], [ 355023.933899998664856, 256587.18470000103116 ], [ 355024.029200002551079, 256575.997499998658895 ], [ 355339.979599997401237, 256593.148899998515844 ], [ 355339.04559999704361, 256608.128899998962879 ], [ 355352.75110000371933, 256608.452100001275539 ], [ 355356.798900000751019, 256606.585400000214577 ], [ 355360.054700002074242, 256603.023499999195337 ], [ 355363.679099999368191, 256556.190400000661612 ], [ 355359.692500002682209, 256550.880399998277426 ], [ 355353.259999997913837, 256548.71680000051856 ], [ 355321.009300000965595, 256548.241799999028444 ], [ 355019.570699997246265, 256531.420299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91474621, "LATITUDE": 18.33907861, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.564321313400001, "SHAPE_Area": 20.9353656786 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360509.94370000064373, 256648.550400000065565 ], [ 360514.826499998569489, 256643.313000001013279 ], [ 360514.900200001895428, 256634.6587999984622 ], [ 360509.94370000064373, 256648.550400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95486979, "LATITUDE": 18.33899848, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.194289185000002, "SHAPE_Area": 424.923187692 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356281.910800002515316, 256582.281899999827147 ], [ 356252.709100000560284, 256602.519000001251698 ], [ 356282.472599998116493, 256610.995200000703335 ], [ 356281.910800002515316, 256582.281899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90890779, "LATITUDE": 18.33887132, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.342799504399999, "SHAPE_Area": 145.52737150499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361140.843199998140335, 256611.073100000619888 ], [ 361120.541599996387959, 256627.794399999082088 ], [ 361130.163400001823902, 256634.206000000238419 ], [ 361140.843199998140335, 256611.073100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94249936, "LATITUDE": 18.33883058, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.575091350599997, "SHAPE_Area": 90.295140922900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357577.584799997508526, 256601.118999999016523 ], [ 357580.833400003612041, 256598.401399999856949 ], [ 357584.965700000524521, 256586.614000000059605 ], [ 357580.955700002610683, 256584.048000000417233 ], [ 357576.943899996578693, 256581.693199999630451 ], [ 357577.584799997508526, 256601.118999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9504234, "LATITUDE": 18.3387422, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.62810092700001, "SHAPE_Area": 853.67675807299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356760.856799997389317, 256586.624000001698732 ], [ 356755.44820000231266, 256558.926500000059605 ], [ 356721.539899997413158, 256563.715199999511242 ], [ 356731.017800003290176, 256587.013099998235703 ], [ 356739.876500003039837, 256588.352200001478195 ], [ 356760.856799997389317, 256586.624000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95982831000001, "LATITUDE": 18.33854256, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.445928271, "SHAPE_Area": 185.95199484899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355756.297600001096725, 256565.947700001299381 ], [ 355745.358000002801418, 256524.905999999493361 ], [ 355745.437200002372265, 256515.618500001728535 ], [ 355741.385799996554852, 256517.907400000840425 ], [ 355751.450699999928474, 256566.963500000536442 ], [ 355756.297600001096725, 256565.947700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90875263, "LATITUDE": 18.33867359, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.873647167999998, "SHAPE_Area": 58.551212893500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361140.843199998140335, 256611.073100000619888 ], [ 361153.026000000536442, 256600.829199999570847 ], [ 361147.423199996352196, 256595.928199999034405 ], [ 361140.843199998140335, 256611.073100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95982554, "LATITUDE": 18.33846644, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.25012479599999, "SHAPE_Area": 52.426018791099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355756.297600001096725, 256565.947700001299381 ], [ 355745.437200002372265, 256515.618500001728535 ], [ 355745.358000002801418, 256524.905999999493361 ], [ 355756.297600001096725, 256565.947700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204062200", "MAP": "D9-989-T71", "PARCEL_NAM": "2", "ACRE": "3.59", "LONGITUDE": -64.95380041, "LATITUDE": 18.33813817, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 539.28948121600001, "SHAPE_Area": 17155.847967199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356475.799099996685982, 256445.391399998217821 ], [ 356473.183899998664856, 256437.216899998486042 ], [ 356449.136900000274181, 256438.928199999034405 ], [ 356423.772399999201298, 256440.733300000429153 ], [ 356394.377700001001358, 256442.825199998915195 ], [ 356328.222300000488758, 256446.716699998825788 ], [ 356321.960600003600121, 256446.762299999594688 ], [ 356321.576099999248981, 256446.784499999135733 ], [ 356320.847999997437, 256458.129200000315905 ], [ 356319.11429999768734, 256485.142200000584126 ], [ 356319.043300002813339, 256486.247999999672174 ], [ 356315.210500001907349, 256545.968199998140335 ], [ 356387.676500000059605, 256605.749699998646975 ], [ 356390.622699998319149, 256599.636900000274181 ], [ 356392.249700002372265, 256597.961500000208616 ], [ 356394.718999996781349, 256592.071100000292063 ], [ 356400.442299999296665, 256582.829799998551607 ], [ 356414.392399996519089, 256554.446400001645088 ], [ 356429.087600000202656, 256533.246199999004602 ], [ 356447.062100000679493, 256505.740100000053644 ], [ 356451.129600003361702, 256501.551500000059605 ], [ 356464.995099999010563, 256483.088700000196695 ], [ 356473.198499999940395, 256466.690600000321865 ], [ 356474.868699997663498, 256459.949200000613928 ], [ 356475.611800000071526, 256448.322799999266863 ], [ 356475.799099996685982, 256445.391399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94260799, "LATITUDE": 18.33852769, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.465415270500003, "SHAPE_Area": 30.977190476400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357568.193199999630451, 256567.689399998635054 ], [ 357570.694799996912479, 256557.999499998986721 ], [ 357567.577500000596046, 256545.308400001376867 ], [ 357568.193199999630451, 256567.689399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94154473, "LATITUDE": 18.3383668, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 341.765843244, "SHAPE_Area": 1015.80120227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357717.607299998402596, 256539.992400001734495 ], [ 357718.49099999666214, 256530.922600001096725 ], [ 357716.917900003492832, 256526.265700001269579 ], [ 357712.126800000667572, 256520.738099999725819 ], [ 357708.120399996638298, 256517.75 ], [ 357666.319799996912479, 256502.420200001448393 ], [ 357664.644199997186661, 256509.794799998402596 ], [ 357675.907399997115135, 256512.842300001531839 ], [ 357688.768899999558926, 256517.591600000858307 ], [ 357706.45380000025034, 256524.069099999964237 ], [ 357711.252099998295307, 256528.752500001341105 ], [ 357712.809000000357628, 256535.309099998325109 ], [ 357711.144199997186661, 256541.417199999094009 ], [ 357705.453299999237061, 256546.859099999070168 ], [ 357687.66950000077486, 256551.990800000727177 ], [ 357669.883799999952316, 256557.333700001239777 ], [ 357661.800899997353554, 256559.589600000530481 ], [ 357653.734200000762939, 256559.945700000971556 ], [ 357641.664700001478195, 256556.891600001603365 ], [ 357629.627599999308586, 256550.038100000470877 ], [ 357623.95099999755621, 256553.791400000452995 ], [ 357627.961000002920628, 256556.357299998402596 ], [ 357632.771899998188019, 256559.563099998980761 ], [ 357640.003499999642372, 256562.577599998563528 ], [ 357652.071199998259544, 256565.842799998819828 ], [ 357664.171300001442432, 256565.308499999344349 ], [ 357680.338899999856949, 256560.585700001567602 ], [ 357694.88849999755621, 256556.482900001108646 ], [ 357707.832699999213219, 256551.522599998861551 ], [ 357713.503799997270107, 256548.40260000154376 ], [ 357716.76860000193119, 256543.785300001502037 ], [ 357717.607299998402596, 256539.992400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96519267, "LATITUDE": 18.33816215, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 775.79756940799996, "SHAPE_Area": 17372.567304799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355020.957800000905991, 256463.248399998992682 ], [ 355017.727200001478195, 256463.85530000180006 ], [ 355015.290299996733665, 256465.946199998259544 ], [ 355013.375600002706051, 256501.394299998879433 ], [ 355014.127899996936321, 256507.733300000429153 ], [ 355018.114500001072884, 256513.043200001120567 ], [ 355022.925399996340275, 256516.249000001698732 ], [ 355029.365199998021126, 256517.568300001323223 ], [ 355084.979099996387959, 256520.556600000709295 ], [ 355138.204700000584126, 256519.936700001358986 ], [ 355259.113899998366833, 256525.359299998730421 ], [ 355294.568199999630451, 256528.393699999898672 ], [ 355350.99210000038147, 256530.966400001198053 ], [ 355352.001599997282028, 256507.121100001037121 ], [ 355356.92400000244379, 256497.239999998360872 ], [ 355355.451700001955032, 256480.762600000947714 ], [ 355020.957800000905991, 256463.248399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95840668, "LATITUDE": 18.33831598, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.423956647, "SHAPE_Area": 207.31317095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355930.980700001120567, 256506.371300000697374 ], [ 355882.458099998533726, 256522.861699998378754 ], [ 355884.002400003373623, 256530.895899999886751 ], [ 355905.871799997985363, 256519.464699998497963 ], [ 355930.980700001120567, 256506.371300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96978311, "LATITUDE": 18.33791, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1654.45437698, "SHAPE_Area": 24326.7272495 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354211.72580000013113, 256420.73930000141263 ], [ 354229.304700002074242, 256439.670499999076128 ], [ 354334.0658999979496, 256447.493999999016523 ], [ 354758.792999997735023, 256474.401599999517202 ], [ 354756.941200003027916, 256502.461899999529123 ], [ 354981.00620000064373, 256514.850400000810623 ], [ 354990.703500002622604, 256512.396699998527765 ], [ 354997.218699999153614, 256504.850600000470877 ], [ 354998.312799997627735, 256471.084600001573563 ], [ 354994.331600002944469, 256465.141399998217821 ], [ 354988.714299999177456, 256461.929000001400709 ], [ 354211.72580000013113, 256420.73930000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95277917, "LATITUDE": 18.33812833, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.372667523000004, "SHAPE_Area": 405.09435400799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356494.773000001907349, 256489.876299999654293 ], [ 356480.194600000977516, 256497.3564000017941 ], [ 356494.521200001239777, 256519.427400000393391 ], [ 356507.510300002992153, 256509.190099999308586 ], [ 356494.773000001907349, 256489.876299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204040100", "MAP": "A9-39-T39", "PARCEL_NAM": "REM 18 thru 23", "ACRE": null, "LONGITUDE": -64.95211724000001, "LATITUDE": 18.33767278, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 362.33811521500002, "SHAPE_Area": 2847.9911725799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356505.250699996948242, 256395.814399998635054 ], [ 356502.821000002324581, 256397.061000000685453 ], [ 356502.804799996316433, 256398.960799999535084 ], [ 356519.665399998426437, 256407.542500000447035 ], [ 356524.472699999809265, 256411.170400001108646 ], [ 356532.460299998521805, 256420.101700000464916 ], [ 356537.233499996364117, 256427.740200001746416 ], [ 356553.846000000834465, 256465.450800001621246 ], [ 356565.818400003015995, 256479.903099998831749 ], [ 356575.420400001108646, 256488.636599998921156 ], [ 356588.249499998986721, 256497.185300000011921 ], [ 356625.960900001227856, 256519.236600000411272 ], [ 356558.991300001740456, 256429.395899999886751 ], [ 356557.420100003480911, 256424.527899999171495 ], [ 356552.643299996852875, 256417.311599999666214 ], [ 356541.444899998605251, 256406.665300000458956 ], [ 356531.817699998617172, 256400.886999998241663 ], [ 356520.559900000691414, 256397.206199999898672 ], [ 356505.250699996948242, 256395.814399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94817686, "LATITUDE": 18.33790194, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.205074264, "SHAPE_Area": 148.92967693599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356966.708499997854233, 256465.241300001740456 ], [ 356965.880599997937679, 256467.767599999904633 ], [ 356981.182599999010563, 256470.003800000995398 ], [ 356983.25450000166893, 256510.761799998581409 ], [ 356985.678800001740456, 256510.148400001227856 ], [ 356983.623099997639656, 256467.490699999034405 ], [ 356966.708499997854233, 256465.241300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97543169, "LATITUDE": 18.33753615, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 430.88572131199999, "SHAPE_Area": 4736.9621882199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354008.682499997317791, 256401.767799999564886 ], [ 354006.251000002026558, 256403.225600000470877 ], [ 354003.783500000834465, 256408.904899999499321 ], [ 354005.29900000244379, 256420.316399998962879 ], [ 354007.6891999989748, 256423.71339999884367 ], [ 354010.89469999819994, 256426.061700001358986 ], [ 354204.318000003695488, 256438.410599999129772 ], [ 354178.7550999969244, 256410.125900000333786 ], [ 354008.682499997317791, 256401.767799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97679532, "LATITUDE": 18.33750608, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.803757858, "SHAPE_Area": 584.74854922899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353937.685699999332428, 256406.041900001466274 ], [ 353937.552599996328354, 256421.661800000816584 ], [ 353973.820500001311302, 256423.858399998396635 ], [ 353975.568000003695488, 256408.040699999779463 ], [ 353937.685699999332428, 256406.041900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95809894, "LATITUDE": 18.33752069, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.904314623399998, "SHAPE_Area": 69.786175273200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355926.781199999153614, 256431.398699998855591 ], [ 355918.698299996554852, 256433.654599998146296 ], [ 355923.523599997162819, 256435.171799998730421 ], [ 355943.708400003612041, 256432.1706000007689 ], [ 355943.733599998056889, 256429.215500000864267 ], [ 355926.781199999153614, 256431.398699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96515926, "LATITUDE": 18.33719728, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 697.452475714, "SHAPE_Area": 12653.471909899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355036.338200002908707, 256361.627199999988079 ], [ 355033.912100002169609, 256362.451699998229742 ], [ 355031.468000002205372, 256365.386999998241663 ], [ 355029.711499996483326, 256382.260099999606609 ], [ 355030.390100002288818, 256397.253299999982119 ], [ 355034.38570000231266, 256401.50789999961853 ], [ 355039.2128000035882, 256402.813999999314547 ], [ 355233.458599999547005, 256413.26969999819994 ], [ 355299.558200001716614, 256415.921599999070168 ], [ 355319.694499999284744, 256418.619600001722574 ], [ 355326.951300002634525, 256418.679000001400709 ], [ 355335.030599996447563, 256416.845199998468161 ], [ 355340.698100000619888, 256414.147399999201298 ], [ 355349.634099997580051, 256406.410100001841784 ], [ 355351.293499998748302, 256400.935199998319149 ], [ 355351.359999999403954, 256393.125300001353025 ], [ 355347.373400002717972, 256387.815400000661612 ], [ 355337.746200002729893, 256382.037000000476837 ], [ 355331.308300003409386, 256380.506700001657009 ], [ 355257.982400000095367, 256374.206999998539686 ], [ 355124.188500002026558, 256366.779199998825788 ], [ 355091.955799996852875, 256364.193300001323223 ], [ 355036.338200002908707, 256361.627199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94295081, "LATITUDE": 18.33736942, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.4970712744, "SHAPE_Area": 27.488882735699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357538.723899997770786, 256430.026299998164177 ], [ 357538.75450000166893, 256426.437899999320507 ], [ 357523.411200001835823, 256429.056600000709295 ], [ 357538.723899997770786, 256430.026299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94282112, "LATITUDE": 18.33734527, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.9631684073, "SHAPE_Area": 20.425225073699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357538.723899997770786, 256430.026299998164177 ], [ 357551.664499998092651, 256425.488099999725819 ], [ 357551.691399998962879, 256422.321899998933077 ], [ 357538.723899997770786, 256430.026299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204070700", "MAP": null, "PARCEL_NAM": "44", "ACRE": null, "LONGITUDE": -64.95014691, "LATITUDE": 18.3370035, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.511351832, "SHAPE_Area": 1307.79028326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356775.708800002932549, 256357.709100000560284 ], [ 356744.716499999165535, 256398.829799998551607 ], [ 356769.649300001561642, 256406.422100000083447 ], [ 356798.991200000047684, 256369.720899999141693 ], [ 356799.85869999974966, 256362.550799999386072 ], [ 356786.968400001525879, 256361.178700000047684 ], [ 356775.708800002932549, 256357.709100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.952383, "LATITUDE": 18.33713696, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 21.672334686300001, "SHAPE_Area": 20.595206876599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356539.852700002491474, 256392.391699999570847 ], [ 356531.775200001895428, 256394.014400001615286 ], [ 356539.001500003039837, 256397.662099998444319 ], [ 356539.852700002491474, 256392.391699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97288468000001, "LATITUDE": 18.33686059, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 669.30067231800001, "SHAPE_Area": 12194.6029476 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354256.993699997663498, 256313.029899999499321 ], [ 354253.766599997878075, 256313.214600000530481 ], [ 354249.715300001204014, 256315.503499999642372 ], [ 354212.247299998998642, 256359.526500001549721 ], [ 354375.873000003397465, 256367.409600000828505 ], [ 354434.704999998211861, 256371.2685999982059 ], [ 354502.417300000786781, 256373.933699999004602 ], [ 354509.688500002026558, 256372.304499998688698 ], [ 354521.048799999058247, 256363.953699998557568 ], [ 354525.938799999654293, 256357.872000001370907 ], [ 354526.791900001466274, 256352.390599999576807 ], [ 354524.421499997377396, 256346.671599999070168 ], [ 354519.628600001335144, 256341.355099998414516 ], [ 354513.204999998211861, 256338.136100001633167 ], [ 354447.150399997830391, 256330.20719999819994 ], [ 354331.894400000572205, 256323.775400001555681 ], [ 354256.993699997663498, 256313.029899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97884389, "LATITUDE": 18.33648107, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1957.2673688499999, "SHAPE_Area": 78370.992732400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353986.487000003457069, 256356.834300000220537 ], [ 354171.0641999989748, 256366.366599999368191 ], [ 354218.303300000727177, 256311.235599998384714 ], [ 354219.194099999964237, 256301.32149999961257 ], [ 354217.592299997806549, 256300.041799999773502 ], [ 354005.789200000464916, 256268.121899999678135 ], [ 353374.67849999666214, 256235.725499998778105 ], [ 353328.707900002598763, 256236.615800000727177 ], [ 353306.915899999439716, 256238.970600001513958 ], [ 353296.376299999654293, 256245.639299999922514 ], [ 353289.844899997115135, 256255.085099998861551 ], [ 353287.312700003385544, 256268.363299999386072 ], [ 353288.700499996542931, 256294.761300001293421 ], [ 353293.462899997830391, 256303.666200000792742 ], [ 353298.252199999988079, 256309.404899999499321 ], [ 353303.854999996721745, 256314.306000001728535 ], [ 353313.489399999380112, 256319.239999998360872 ], [ 353369.900700002908707, 256323.290300000458956 ], [ 353986.487000003457069, 256356.834300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204052200", "MAP": null, "PARCEL_NAM": "39-1", "ACRE": null, "LONGITUDE": -64.95303952, "LATITUDE": 18.33687766, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.710259337, "SHAPE_Area": 172.111050503 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356491.4712999984622, 256378.87950000166893 ], [ 356477.726499997079372, 256377.208700001239777 ], [ 356471.267700001597404, 256374.728300001472235 ], [ 356469.058700002729893, 256372.071199998259544 ], [ 356467.593099996447563, 256369.420099999755621 ], [ 356466.981100000441074, 256353.157200001180172 ], [ 356467.435000002384186, 256349.571400001645088 ], [ 356467.921700000762939, 256347.506400000303984 ], [ 356464.535199999809265, 256347.774000000208616 ], [ 356461.209200002253056, 256359.567999999970198 ], [ 356461.949000000953674, 256367.384500000625849 ], [ 356465.122100003063679, 256373.532200001180172 ], [ 356467.517700001597404, 256376.296000000089407 ], [ 356477.170000001788139, 256379.119199998676777 ], [ 356487.652099996805191, 256379.204999998211861 ], [ 356491.4712999984622, 256378.87950000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9498563, "LATITUDE": 18.3360737, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.51504481299997, "SHAPE_Area": 456.84231862399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356809.751299999654293, 256242.519499998539686 ], [ 356812.445299997925758, 256210.244300000369549 ], [ 356810.058799996972084, 256206.425000000745058 ], [ 356807.409599997103214, 256233.423300001770258 ], [ 356802.133000001311302, 256284.886999998241663 ], [ 356802.107799999415874, 256287.842099998146296 ], [ 356802.075499996542931, 256291.641499999910593 ], [ 356797.516999997198582, 256353.454599998891354 ], [ 356799.934199996292591, 256353.685499999672174 ], [ 356809.751299999654293, 256242.519499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204071600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9500504, "LATITUDE": 18.33643653, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.028382652, "SHAPE_Area": 1753.9018233500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356802.075499996542931, 256291.641499999910593 ], [ 356780.265500001609325, 256296.10700000077486 ], [ 356777.047399997711182, 256295.236299999058247 ], [ 356756.133599996566772, 256289.154500000178814 ], [ 356753.666199997067451, 256294.83390000090003 ], [ 356764.117600001394749, 256298.508000001311302 ], [ 356761.625, 256307.142400000244379 ], [ 356773.696299999952316, 256309.985500000417233 ], [ 356770.982500001788139, 256344.582600001245737 ], [ 356782.222300000488758, 256350.374099999666214 ], [ 356789.461099997162819, 256352.544300001114607 ], [ 356797.516999997198582, 256353.454599998891354 ], [ 356802.075499996542931, 256291.641499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96869505, "LATITUDE": 18.33463768, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 5925.3297716500001, "SHAPE_Area": 43296.371734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355452.891699999570847, 256306.774700000882149 ], [ 355445.706900000572205, 256298.272100001573563 ], [ 355407.894000001251698, 256193.4712999984622 ], [ 355404.02419999986887, 256174.441199999302626 ], [ 355403.422899998724461, 256150.371700000017881 ], [ 355405.944300003349781, 256138.359999999403954 ], [ 355411.719800002872944, 256122.997400000691414 ], [ 355414.99719999730587, 256116.902499999850988 ], [ 355422.334899999201298, 256107.46339999884367 ], [ 355431.299699999392033, 256096.348799999803305 ], [ 355436.171700000762939, 256092.377900000661612 ], [ 355429.775200001895428, 256085.99269999936223 ], [ 355415.95099999755621, 256099.600600000470877 ], [ 355406.151100002229214, 256114.085900001227856 ], [ 355400.404500000178814, 256126.071199998259544 ], [ 355397.094700001180172, 256135.965500000864267 ], [ 355393.707599997520447, 256154.936200000345707 ], [ 355395.133199997246265, 256176.901599999517202 ], [ 355398.234399996697903, 256191.492400001734495 ], [ 355417.129100002348423, 256245.264800000935793 ], [ 355424.181000001728535, 256269.387200001627207 ], [ 355428.05969999730587, 256287.361900001764297 ], [ 355427.18860000371933, 256294.954199999570847 ], [ 355425.536499999463558, 256299.584699999541044 ], [ 355422.289599999785423, 256302.0912000015378 ], [ 355415.009400002658367, 256304.77589999884367 ], [ 355365.869300000369549, 256299.0962999984622 ], [ 355321.666000001132488, 256297.329799998551607 ], [ 355321.576099999248981, 256292.401000000536442 ], [ 355307.937100000679493, 256284.267799999564886 ], [ 355290.273800000548363, 256275.25730000063777 ], [ 355280.626800000667572, 256271.800900001078844 ], [ 355278.223999999463558, 256269.881400000303984 ], [ 355251.667900003492832, 256263.542300000786781 ], [ 355238.777699999511242, 256262.170299999415874 ], [ 355234.751500003039837, 256261.504000000655651 ], [ 355196.034100003540516, 256262.875900000333786 ], [ 355163.74379999935627, 256267.044599998742342 ], [ 355128.204999998211861, 256273.930900000035763 ], [ 355076.175300002098083, 256284.491900000721216 ], [ 354873.394000001251698, 256273.745200000703335 ], [ 354843.592799998819828, 256269.70160000026226 ], [ 354824.284500002861023, 256264.477400001138449 ], [ 354807.239000000059605, 256261.887600000947714 ], [ 354788.805699996650219, 256255.777699999511242 ], [ 354756.950599998235703, 256252.108500000089407 ], [ 354701.478299997746944, 256249.659099999815226 ], [ 354692.740199998021126, 256249.273299999535084 ], [ 354659.485299997031689, 256246.527399998158216 ], [ 354659.960400000214577, 256243.922899998724461 ], [ 354661.589199997484684, 256242.036400001496077 ], [ 354672.926100000739098, 256236.429699998348951 ], [ 354675.366599999368191, 256233.916499998420477 ], [ 354682.131800003349781, 256197.030499998480082 ], [ 354683.353500001132488, 256148.277899999171495 ], [ 354672.056100003421307, 256149.240899998694658 ], [ 354673.071000002324581, 256124.76240000128746 ], [ 354673.107900001108646, 256120.430300001055002 ], [ 354665.425200000405312, 256120.221400000154972 ], [ 354665.821400001645088, 256123.85869999974966 ], [ 354665.724299997091293, 256135.256900001317263 ], [ 354665.690200001001358, 256139.267400000244379 ], [ 354665.666799999773502, 256142.011399999260902 ], [ 354666.401199996471405, 256150.461199998855591 ], [ 354665.355700001120567, 256178.528099998831749 ], [ 354656.079899996519089, 256226.159299999475479 ], [ 354653.650100000202656, 256227.405999999493361 ], [ 354651.236599996685982, 256226.752900000661612 ], [ 354643.266999997198582, 256215.710900001227856 ], [ 354637.58500000089407, 256220.097300000488758 ], [ 354651.924199998378754, 256240.690699998289347 ], [ 354651.870300002396107, 256247.02309999987483 ], [ 354649.42620000243187, 256249.958399999886751 ], [ 354647.0, 256250.782900001853704 ], [ 354643.776600003242493, 256250.545499999076128 ], [ 354629.365500003099442, 256238.395199999213219 ], [ 354619.790399998426437, 256226.495600000023842 ], [ 354608.715999998152256, 256201.284800000488758 ], [ 354607.211300000548363, 256188.606899999082088 ], [ 354605.851800002157688, 255874.910700000822544 ], [ 354606.069399997591972, 255849.370200000703335 ], [ 354605.29730000346899, 255845.353100001811981 ], [ 354599.755599997937679, 255833.275400001555681 ], [ 354593.358999997377396, 255826.8902000002563 ], [ 354566.909000001847744, 255808.097500000149012 ], [ 354560.517800003290176, 255801.079100001603365 ], [ 354557.337499998509884, 255795.775800000876188 ], [ 354541.569099999964237, 255753.63910000026226 ], [ 354541.76690000295639, 255730.420400001108646 ], [ 354539.437899999320507, 255719.846700001507998 ], [ 354535.474600002169609, 255711.792700000107288 ], [ 354520.327299997210503, 255691.4037000015378 ], [ 354413.892300002276897, 255690.743700001388788 ], [ 354414.139399997889996, 255756.395799998193979 ], [ 354522.194200001657009, 255756.224700000137091 ], [ 354528.630300000309944, 255757.966099999845028 ], [ 354534.24040000140667, 255762.022799998521805 ], [ 354535.811599999666214, 255766.890900000929832 ], [ 354553.212399996817112, 255806.718899998813868 ], [ 354561.203599996864796, 255815.228000000119209 ], [ 354587.657300002872944, 255833.598600000143051 ], [ 354592.451999999582767, 255838.703999999910593 ], [ 354594.83500000089407, 255842.94539999961853 ], [ 354594.770300000905991, 255850.544300001114607 ], [ 354593.125299997627735, 255854.33049999922514 ], [ 354548.457999996840954, 255891.539599999785423 ], [ 354541.957099996507168, 255897.396999999880791 ], [ 354528.417400002479553, 256161.575300000607967 ], [ 354594.724600002169609, 256234.52309999987483 ], [ 354597.04280000180006, 256246.363299999386072 ], [ 354601.785400003194809, 256257.59010000154376 ], [ 354608.169399999082088, 256265.452799998223782 ], [ 354618.583099998533726, 256273.559599999338388 ], [ 354631.433799996972084, 256279.575300000607967 ], [ 354651.571800000965595, 256282.062199998646975 ], [ 354725.739900000393391, 256284.146899998188019 ], [ 354766.847499996423721, 256286.172100000083447 ], [ 354798.295500002801418, 256286.218400001525879 ], [ 354820.883000001311302, 256285.136700000613928 ], [ 355384.274300001561642, 256315.71229999884963 ], [ 355439.056800000369549, 256321.649099998176098 ], [ 355516.365599997341633, 256333.680900000035763 ], [ 355579.187899999320507, 256342.427700001746416 ], [ 355571.263199999928474, 256326.108600001782179 ], [ 355459.318899996578693, 256309.57149999961257 ], [ 355452.891699999570847, 256306.774700000882149 ] ], [ [ 354634.795699998736382, 256263.559799998998642 ], [ 354632.371299996972084, 256264.173200000077486 ], [ 354626.730700001120567, 256263.704799998551607 ], [ 354619.517099998891354, 256258.579599998891354 ], [ 354614.718800000846386, 256253.896200001239777 ], [ 354609.162699997425079, 256243.507199998944998 ], [ 354602.913599997758865, 256219.813499998301268 ], [ 354596.574600003659725, 256206.673900000751019 ], [ 354550.238200001418591, 256155.843299999833107 ], [ 354546.269599996507168, 256148.422499999403954 ], [ 354546.697599999606609, 256098.185699999332428 ], [ 354550.786700002849102, 256091.464200001209974 ], [ 354553.915899999439716, 256008.107900001108646 ], [ 354560.475400000810623, 255900.714899998158216 ], [ 354563.770700000226498, 255892.509300000965595 ], [ 354582.470600001513958, 255874.508299998939037 ], [ 354586.514700002968311, 255873.063700001686811 ], [ 354591.347199998795986, 255873.7364999987185 ], [ 354593.755400002002716, 255875.022799998521805 ], [ 354596.944600000977516, 255879.270799998193979 ], [ 354597.607500001788139, 256180.084499999880791 ], [ 354598.316699996590614, 256191.489399999380112 ], [ 354599.851999998092651, 256200.578999999910593 ], [ 354605.337899997830391, 256219.200100000947714 ], [ 354615.672499999403954, 256236.594399999827147 ], [ 354625.256599999964237, 256247.4386 ], [ 354635.66669999808073, 256255.967500001192093 ], [ 354636.420900002121925, 256262.095400001853704 ], [ 354634.795699998736382, 256263.559799998998642 ] ], [ [ 355114.389700002968311, 256286.483399998396635 ], [ 355141.060999996960163, 256279.313400000333786 ], [ 355183.867499999701977, 256271.220100000500679 ], [ 355205.654100000858307, 256269.498500000685453 ], [ 355242.748099997639656, 256269.379900000989437 ], [ 355258.046400003135204, 256272.03830000013113 ], [ 355272.527699999511242, 256275.956500001251698 ], [ 355291.812700003385544, 256283.924800001084805 ], [ 355294.16330000013113, 256291.965599998831749 ], [ 355289.292999997735023, 256295.725400000810623 ], [ 355114.389700002968311, 256286.483399998396635 ] ], [ [ 354827.452200002968311, 256271.258299998939037 ], [ 354675.122100003063679, 256262.623199999332428 ], [ 354686.460799999535084, 256256.805399999022484 ], [ 354699.369000002741814, 256256.066700000315905 ], [ 354794.459899999201298, 256263.177799999713898 ], [ 354812.979900002479553, 256266.284699998795986 ], [ 354827.452200002968311, 256271.258299998939037 ] ], [ [ 354586.882600001990795, 256208.49439999833703 ], [ 354588.459299996495247, 256212.729200001806021 ], [ 354553.301600001752377, 256174.866799999028444 ], [ 354538.930100001394749, 256158.072700001299381 ], [ 354543.75900000333786, 256159.167700000107288 ], [ 354554.944799996912479, 256171.291600000113249 ], [ 354558.92960000038147, 256176.812699999660254 ], [ 354576.519299998879433, 256194.477400001138449 ], [ 354586.882600001990795, 256208.49439999833703 ] ], [ [ 354649.285899996757507, 256266.422600001096725 ], [ 354651.711999997496605, 256265.598000001162291 ], [ 354666.976199999451637, 256272.2668999992311 ], [ 354650.05629999935627, 256270.650699999183416 ], [ 354649.285899996757507, 256266.422600001096725 ] ], [ [ 354597.848099999129772, 255867.879099998623133 ], [ 354593.022799998521805, 255866.361999999731779 ], [ 354588.98759999871254, 255866.7511 ], [ 354597.914599999785423, 255860.069200001657009 ], [ 354597.848099999129772, 255867.879099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204052300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95297408, "LATITUDE": 18.33642518, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.171658003, "SHAPE_Area": 177.20867273 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356467.958599999547005, 256347.503499999642372 ], [ 356487.148299999535084, 256273.588899999856949 ], [ 356486.144799999892712, 256272.168299999088049 ], [ 356464.535199999809265, 256347.774000000208616 ], [ 356467.958599999547005, 256347.503499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204071700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95028269, "LATITUDE": 18.33643349, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.937424832, "SHAPE_Area": 885.92905212999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356753.666199997067451, 256294.83390000090003 ], [ 356741.348499998450279, 256320.908700000494719 ], [ 356770.982500001788139, 256344.582600001245737 ], [ 356773.696299999952316, 256309.985500000417233 ], [ 356761.625, 256307.142400000244379 ], [ 356764.117600001394749, 256298.508000001311302 ], [ 356753.666199997067451, 256294.83390000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": "A3-12-T33", "PARCEL_NAM": "REM 57 thru 59", "ACRE": "4.8 (d.)", "LONGITUDE": -64.96246732, "LATITUDE": 18.33565857, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 626.183318665, "SHAPE_Area": 19769.751171700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355571.263199999928474, 256326.108600001782179 ], [ 355491.212099999189377, 256162.700300000607967 ], [ 355460.967799998819828, 256116.012200001627207 ], [ 355436.171700000762939, 256092.377900000661612 ], [ 355431.299699999392033, 256096.348799999803305 ], [ 355422.334899999201298, 256107.46339999884367 ], [ 355414.99719999730587, 256116.902499999850988 ], [ 355411.719800002872944, 256122.997400000691414 ], [ 355405.944300003349781, 256138.359999999403954 ], [ 355403.422899998724461, 256150.371700000017881 ], [ 355404.02419999986887, 256174.441199999302626 ], [ 355407.894000001251698, 256193.4712999984622 ], [ 355445.706900000572205, 256298.272100001573563 ], [ 355452.891699999570847, 256306.774700000882149 ], [ 355459.318899996578693, 256309.57149999961257 ], [ 355571.263199999928474, 256326.108600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91138174, "LATITUDE": 18.33633572, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.1242355889, "SHAPE_Area": 110.804665911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360878.618699997663498, 256345.271000001579523 ], [ 360869.07599999755621, 256329.572000000625849 ], [ 360869.013099998235703, 256336.959800001233816 ], [ 360865.719499997794628, 256344.9543999992311 ], [ 360867.301500000059605, 256348.555900000035763 ], [ 360878.618699997663498, 256345.271000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95284827, "LATITUDE": 18.33597455, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.3202809179, "SHAPE_Area": 19.9967957502 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356487.148299999535084, 256273.588899999856949 ], [ 356487.7162000015378, 256271.401500001549721 ], [ 356491.328000001609325, 256259.289599999785423 ], [ 356490.298699997365475, 256257.847899999469519 ], [ 356486.144799999892712, 256272.168299999088049 ], [ 356487.148299999535084, 256273.588899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": "D9-8922-T014", "PARCEL_NAM": "80", "ACRE": "1.063", "LONGITUDE": -64.9646463, "LATITUDE": 18.33621786, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.193846482, "SHAPE_Area": 1999.19059937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355195.077600002288818, 256270.334300000220537 ], [ 355197.548000000417233, 256290.877500001341105 ], [ 355289.292999997735023, 256295.725400000810623 ], [ 355294.16330000013113, 256291.965599998831749 ], [ 355291.812700003385544, 256283.924800001084805 ], [ 355272.527699999511242, 256275.956500001251698 ], [ 355258.046400003135204, 256272.03830000013113 ], [ 355242.748099997639656, 256269.379900000989437 ], [ 355205.654100000858307, 256269.498500000685453 ], [ 355195.077600002288818, 256270.334300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91788723000001, "LATITUDE": 18.33547437, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 484.43514919500001, "SHAPE_Area": 710.15529769900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360144.161300003528595, 256131.622699998319149 ], [ 360141.508100003004074, 256133.428599998354912 ], [ 360143.366400003433228, 256137.659000001847744 ], [ 360147.277400001883507, 256151.834300000220537 ], [ 360148.792999997735023, 256163.245700001716614 ], [ 360150.159199997782707, 256192.176699999719858 ], [ 360152.472099997103214, 256204.650199998170137 ], [ 360157.178700000047684, 256220.098499998450279 ], [ 360165.918700002133846, 256235.36879999935627 ], [ 360231.369199998676777, 256314.220199998468161 ], [ 360252.952600002288818, 256336.350600000470877 ], [ 360254.586800001561642, 256333.830800000578165 ], [ 360233.804300002753735, 256312.340300001204014 ], [ 360171.543099999427795, 256237.736900001764297 ], [ 360164.372599996626377, 256227.545699998736382 ], [ 360161.212099999189377, 256219.920499999076128 ], [ 360158.820100001990795, 256216.734499998390675 ], [ 360154.916199997067451, 256201.714899998158216 ], [ 360152.637500002980232, 256185.230900000780821 ], [ 360152.016400001943111, 256163.483199998736382 ], [ 360148.162900000810623, 256142.553399998694658 ], [ 360144.161300003528595, 256131.622699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204052400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9525766, "LATITUDE": 18.33587237, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.90676620599999, "SHAPE_Area": 132.714260384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356491.447300001978874, 256259.456700000911951 ], [ 356494.785999998450279, 256250.87220000103116 ], [ 356496.826099999248981, 256248.143800001591444 ], [ 356501.734600000083447, 256245.333000000566244 ], [ 356506.523299999535084, 256244.210499998182058 ], [ 356513.000100001692772, 256244.473999999463558 ], [ 356516.181199997663498, 256245.133099999278784 ], [ 356519.251800000667572, 256246.319299999624491 ], [ 356521.677400000393391, 256248.450300000607967 ], [ 356548.619099996984005, 256282.35700000077486 ], [ 356549.76799999922514, 256281.554900001734495 ], [ 356521.04280000180006, 256245.856100000441074 ], [ 356517.032899998128414, 256243.290199998766184 ], [ 356512.205799996852875, 256241.984099999070168 ], [ 356503.332699999213219, 256242.333700001239777 ], [ 356498.475100003182888, 256244.615899998694658 ], [ 356492.780599996447563, 256250.479899998754263 ], [ 356490.298699997365475, 256257.847899999469519 ], [ 356491.447300001978874, 256259.456700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97018993, "LATITUDE": 18.33614068, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.514466989200002, "SHAPE_Area": 49.530093142299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354651.711999997496605, 256265.598000001162291 ], [ 354649.285899996757507, 256266.422600001096725 ], [ 354650.05629999935627, 256270.650699999183416 ], [ 354666.976199999451637, 256272.2668999992311 ], [ 354651.711999997496605, 256265.598000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96933796, "LATITUDE": 18.33607993, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.68639889899998, "SHAPE_Area": 927.88284547900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354699.369000002741814, 256256.066700000315905 ], [ 354686.460799999535084, 256256.805399999022484 ], [ 354675.122100003063679, 256262.623199999332428 ], [ 354827.452200002968311, 256271.258299998939037 ], [ 354812.979900002479553, 256266.284699998795986 ], [ 354794.459899999201298, 256263.177799999713898 ], [ 354699.369000002741814, 256256.066700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97094437, "LATITUDE": 18.33415311, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 850.31075820499996, "SHAPE_Area": 13796.9199078 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354597.607500001788139, 256180.084499999880791 ], [ 354596.944600000977516, 255879.270799998193979 ], [ 354593.755400002002716, 255875.022799998521805 ], [ 354591.347199998795986, 255873.7364999987185 ], [ 354586.514700002968311, 255873.063700001686811 ], [ 354582.470600001513958, 255874.508299998939037 ], [ 354563.770700000226498, 255892.509300000965595 ], [ 354560.475400000810623, 255900.714899998158216 ], [ 354553.915899999439716, 256008.107900001108646 ], [ 354550.786700002849102, 256091.464200001209974 ], [ 354546.697599999606609, 256098.185699999332428 ], [ 354546.269599996507168, 256148.422499999403954 ], [ 354550.238200001418591, 256155.843299999833107 ], [ 354596.574600003659725, 256206.673900000751019 ], [ 354602.913599997758865, 256219.813499998301268 ], [ 354609.162699997425079, 256243.507199998944998 ], [ 354614.718800000846386, 256253.896200001239777 ], [ 354619.517099998891354, 256258.579599998891354 ], [ 354626.730700001120567, 256263.704799998551607 ], [ 354632.371299996972084, 256264.173200000077486 ], [ 354634.795699998736382, 256263.559799998998642 ], [ 354636.420900002121925, 256262.095400001853704 ], [ 354635.66669999808073, 256255.967500001192093 ], [ 354625.256599999964237, 256247.4386 ], [ 354615.672499999403954, 256236.594399999827147 ], [ 354605.337899997830391, 256219.200100000947714 ], [ 354599.851999998092651, 256200.578999999910593 ], [ 354598.316699996590614, 256191.489399999380112 ], [ 354597.607500001788139, 256180.084499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97044928, "LATITUDE": 18.33371363, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 938.32630436700003, "SHAPE_Area": 14973.130224299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354637.58500000089407, 256220.097300000488758 ], [ 354630.549900002777576, 256214.204799998551607 ], [ 354628.168600000441074, 256208.648600000888109 ], [ 354628.962399996817112, 256202.563099998980761 ], [ 354629.491599999368191, 256197.535999998450279 ], [ 354632.402000002563, 256191.715199999511242 ], [ 354633.195699997246265, 256186.423500001430511 ], [ 354633.989500001072884, 256181.925599999725819 ], [ 354634.51860000193119, 256176.104800000786781 ], [ 354635.576999999582767, 256168.431800000369549 ], [ 354636.370700001716614, 256161.023499999195337 ], [ 354637.164499998092651, 256155.202599998563528 ], [ 354638.222800001502037, 256149.117199998348951 ], [ 354637.958200000226498, 256144.09010000154376 ], [ 354637.69370000064373, 256140.650499999523163 ], [ 354638.487400002777576, 256128.479699999094009 ], [ 354640.436499997973442, 256119.541999999433756 ], [ 354638.848999999463558, 256110.8108000010252 ], [ 354636.467699997127056, 256096.126299999654293 ], [ 354635.277099996805191, 256075.88569999858737 ], [ 354634.880199998617172, 256073.107500001788139 ], [ 354634.086499996483326, 256067.154399998486042 ], [ 354632.498999997973442, 256060.804400000721216 ], [ 354631.705200001597404, 256054.057500001043081 ], [ 354630.117700003087521, 256046.120000001043081 ], [ 354628.927100002765656, 256038.976199999451637 ], [ 354626.942699998617172, 256023.894999999552965 ], [ 354626.942699998617172, 256016.751200001686811 ], [ 354626.942699998617172, 256008.019900001585484 ], [ 354626.942699998617172, 255998.891800001263618 ], [ 354628.133400000631809, 255990.557399999350309 ], [ 354629.720899999141693, 255983.413600001484156 ], [ 354630.911499999463558, 255979.444899998605251 ], [ 354632.498999997973442, 255974.682399999350309 ], [ 354636.864600002765656, 255970.316700000315905 ], [ 354640.436499997973442, 255966.744800001382828 ], [ 354646.389600001275539, 255964.760499998927116 ], [ 354651.54900000244379, 255961.1886 ], [ 354654.723999999463558, 255956.822900000959635 ], [ 354657.898999996483326, 255952.060400001704693 ], [ 354661.867799997329712, 255950.076099999248981 ], [ 354666.630300000309944, 255946.901000000536442 ], [ 354668.217799998819828, 255944.916700001806021 ], [ 354670.59910000115633, 255942.1385000012815 ], [ 354672.98030000180006, 255939.75730000063777 ], [ 354675.758500002324581, 255935.391600001603365 ], [ 354675.361599996685982, 255930.629099998623133 ], [ 354674.964699998497963, 255925.469799999147654 ], [ 354674.170900002121925, 255919.119699999690056 ], [ 354674.567800000309944, 255913.563499998301268 ], [ 354677.742799997329712, 255905.625999998301268 ], [ 354678.139700002968311, 255900.466600000858307 ], [ 354679.330300003290176, 255892.529100000858307 ], [ 354679.330300003290176, 255884.988400001078844 ], [ 354677.742799997329712, 255878.241500001400709 ], [ 354674.964699998497963, 255873.082100000232458 ], [ 354671.789700001478195, 255868.319600000977516 ], [ 354665.836599998176098, 255862.763399999588728 ], [ 354657.898999996483326, 255857.207100000232458 ], [ 354649.564699999988079, 255850.460200000554323 ], [ 354634.086499996483326, 255840.141499999910593 ], [ 354610.298299998044968, 255826.240899998694658 ], [ 354609.885200001299381, 255874.732599999755621 ], [ 354605.851800002157688, 255874.910700000822544 ], [ 354607.211300000548363, 256188.606899999082088 ], [ 354608.715999998152256, 256201.284800000488758 ], [ 354619.790399998426437, 256226.495600000023842 ], [ 354629.365500003099442, 256238.395199999213219 ], [ 354643.776600003242493, 256250.545499999076128 ], [ 354647.0, 256250.782900001853704 ], [ 354649.42620000243187, 256249.958399999886751 ], [ 354651.870300002396107, 256247.02309999987483 ], [ 354651.924199998378754, 256240.690699998289347 ], [ 354637.58500000089407, 256220.097300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97461189000001, "LATITUDE": 18.33567272, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.97295703600003, "SHAPE_Area": 3838.68707941 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354214.763700000941753, 256158.797100000083447 ], [ 354213.928599998354912, 256162.167700000107288 ], [ 354211.480899997055531, 256165.525199998170137 ], [ 354208.192699998617172, 256172.886599998921156 ], [ 354200.032499998807907, 256184.218800000846386 ], [ 354190.26860000193119, 256194.482500001788139 ], [ 354178.902900002896786, 256203.466499999165535 ], [ 354163.507500000298023, 256212.206399999558926 ], [ 354149.758799999952316, 256216.949099998921156 ], [ 354133.609200000762939, 256219.561099998652935 ], [ 354118.291000001132488, 256219.224599998444319 ], [ 354117.39299999922514, 256229.9831000007689 ], [ 354219.67059999704361, 256245.385600000619888 ], [ 354224.432199999690056, 256159.720600001513958 ], [ 354214.763700000941753, 256158.797100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204072000", "MAP": null, "PARCEL_NAM": "170-3", "ACRE": null, "LONGITUDE": -64.9509097, "LATITUDE": 18.335291, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 453.39865598900002, "SHAPE_Area": 12972.949956599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356716.459200002253056, 256118.899500001221895 ], [ 356620.726400002837181, 256187.1435999982059 ], [ 356611.803000003099442, 256193.403400000184774 ], [ 356610.163400001823902, 256196.55629999935627 ], [ 356611.73650000244379, 256201.213300000876188 ], [ 356626.880199998617172, 256222.024399999529123 ], [ 356636.465999998152256, 256232.657499998807907 ], [ 356651.661899998784065, 256247.347300000488758 ], [ 356673.283100001513958, 256265.045099999755621 ], [ 356727.638700000941753, 256226.437600001692772 ], [ 356777.935699999332428, 256190.96339999884367 ], [ 356730.143200002610683, 256121.755699999630451 ], [ 356727.742200002074242, 256119.625100001692772 ], [ 356723.725100003182888, 256117.903499998152256 ], [ 356719.693499997258186, 256117.87049999833107 ], [ 356716.459200002253056, 256118.899500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": "B9-107-T64", "PARCEL_NAM": "REM PORTION OF 14", "ACRE": null, "LONGITUDE": -64.91198662, "LATITUDE": 18.3357836, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.91590982700001, "SHAPE_Area": 471.471862601 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360771.817900002002716, 256292.890099998563528 ], [ 360790.391800001263618, 256289.664599999785423 ], [ 360825.11540000140667, 256283.827100001275539 ], [ 360827.561300002038479, 256280.680700000375509 ], [ 360821.949500001966953, 256276.835099998861551 ], [ 360817.962899997830391, 256271.525100000202656 ], [ 360831.00959999859333, 256254.533300001174212 ], [ 360820.446599997580051, 256263.946100000292063 ], [ 360800.971000000834465, 256278.352200001478195 ], [ 360791.2449000030756, 256284.183200001716614 ], [ 360771.817900002002716, 256292.890099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9432745, "LATITUDE": 18.33557575, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.792103193, "SHAPE_Area": 506.62244590699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357520.002899996936321, 256261.209300000220537 ], [ 357521.642499998211861, 256258.05629999935627 ], [ 357504.124799996614456, 256231.948399998247623 ], [ 357494.513700000941753, 256224.270399998873472 ], [ 357494.535300001502037, 256221.737500000745058 ], [ 357507.393200002610683, 256226.908900000154972 ], [ 357526.706900000572205, 256231.5 ], [ 357521.917599998414516, 256225.761300001293421 ], [ 357501.797499999403954, 256221.163600001484156 ], [ 357487.3378000035882, 256214.712499998509884 ], [ 357478.526000000536442, 256207.885299999266863 ], [ 357475.343900002539158, 256202.793099999427795 ], [ 357472.888999998569489, 256206.994800001382828 ], [ 357476.092600002884865, 256209.554200001060963 ], [ 357478.473800003528595, 256214.006599999964237 ], [ 357486.472199998795986, 256221.671500001102686 ], [ 357492.055200003087521, 256228.894299998879433 ], [ 357498.460799999535084, 256234.22410000115633 ], [ 357509.616099998354912, 256249.936299998313189 ], [ 357520.002899996936321, 256261.209300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94238395000001, "LATITUDE": 18.33570405, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.057330081099998, "SHAPE_Area": 65.359988745099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357607.205099999904633, 256247.779699999839067 ], [ 357581.480400003492832, 256238.492199998348951 ], [ 357581.462399996817112, 256240.603000000119209 ], [ 357607.179899998009205, 256250.7347999997437 ], [ 357607.205099999904633, 256247.779699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91193374, "LATITUDE": 18.33562264, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.469973212299998, "SHAPE_Area": 75.741303150099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360821.339199997484684, 256253.820900000631809 ], [ 360806.733900003135204, 256264.467199999839067 ], [ 360807.495200000703335, 256269.750700000673532 ], [ 360817.232100002467632, 256262.653200000524521 ], [ 360821.319399997591972, 256256.142799999564886 ], [ 360821.339199997484684, 256253.820900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94253565, "LATITUDE": 18.33565367, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17.152972895800001, "SHAPE_Area": 7.6593618701399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357581.462399996817112, 256240.603000000119209 ], [ 357581.480400003492832, 256238.492199998348951 ], [ 357574.229000002145767, 256237.799499999731779 ], [ 357581.462399996817112, 256240.603000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97106713, "LATITUDE": 18.33537196, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.90795845, "SHAPE_Area": 212.590858148 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354538.930100001394749, 256158.072700001299381 ], [ 354553.301600001752377, 256174.866799999028444 ], [ 354588.459299996495247, 256212.729200001806021 ], [ 354586.882600001990795, 256208.49439999833703 ], [ 354576.519299998879433, 256194.477400001138449 ], [ 354558.92960000038147, 256176.812699999660254 ], [ 354554.944799996912479, 256171.291600000113249 ], [ 354543.75900000333786, 256159.167700000107288 ], [ 354538.930100001394749, 256158.072700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94270125, "LATITUDE": 18.33558936, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 21.2263763588, "SHAPE_Area": 15.1489897939 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357556.553000003099442, 256230.266600001603365 ], [ 357559.758500002324581, 256232.614900000393391 ], [ 357566.203599996864796, 256233.300900001078844 ], [ 357563.80629999935627, 256230.748100001364946 ], [ 357556.553000003099442, 256230.266600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94289932, "LATITUDE": 18.33557764, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.419448794299996, "SHAPE_Area": 102.294358917 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357537.214100003242493, 256228.630699999630451 ], [ 357527.543799996376038, 256227.918200001120567 ], [ 357521.917599998414516, 256225.761300001293421 ], [ 357526.706900000572205, 256231.5 ], [ 357552.507100000977516, 256231.922200001776218 ], [ 357559.758500002324581, 256232.614900000393391 ], [ 357563.80629999935627, 256230.748100001364946 ], [ 357556.553000003099442, 256230.266600001603365 ], [ 357537.214100003242493, 256228.630699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9428255, "LATITUDE": 18.33556529, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.312598898600001, "SHAPE_Area": 18.8935230907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357556.553000003099442, 256230.266600001603365 ], [ 357551.734999999403954, 256227.905099999159575 ], [ 357537.214100003242493, 256228.630699999630451 ], [ 357556.553000003099442, 256230.266600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94308089, "LATITUDE": 18.33551802, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.8908901034, "SHAPE_Area": 23.148354106599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357515.526399999856949, 256218.742899999022484 ], [ 357521.917599998414516, 256225.761300001293421 ], [ 357527.543799996376038, 256227.918200001120567 ], [ 357521.148999996483326, 256221.322000000625849 ], [ 357515.526399999856949, 256218.742899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91250593, "LATITUDE": 18.33530609, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.01851225799999, "SHAPE_Area": 422.11212333399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360730.46509999781847, 256225.0016999989748 ], [ 360717.569499999284744, 256224.262899998575449 ], [ 360697.42059999704361, 256223.042500000447035 ], [ 360680.497100003063679, 256221.848499998450279 ], [ 360680.470100000500679, 256225.014699999243021 ], [ 360694.171999998390675, 256225.760099999606609 ], [ 360711.9037000015378, 256226.749600000679493 ], [ 360729.635399997234344, 256227.739100001752377 ], [ 360748.977899998426437, 256228.952899999916553 ], [ 360767.515900000929832, 256229.949000000953674 ], [ 360788.471000000834465, 256231.175999999046326 ], [ 360802.198100000619888, 256228.966299999505281 ], [ 360824.000900000333786, 256225.345100000500679 ], [ 360824.029700003564358, 256221.967799998819828 ], [ 360821.607100002467632, 256222.370200000703335 ], [ 360803.03320000320673, 256225.595600001513958 ], [ 360786.881800003349781, 256228.418800000101328 ], [ 360767.539200000464916, 256227.204999998211861 ], [ 360748.196699999272823, 256225.991200000047684 ], [ 360730.46509999781847, 256225.0016999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "111111111111", "MAP": "B9-193-T68", "PARCEL_NAM": "21", "ACRE": ".393", "LONGITUDE": -64.9534607, "LATITUDE": 18.33498241, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.71258300400001, "SHAPE_Area": 2004.7034985499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356448.621500000357628, 256133.383799999952316 ], [ 356437.277300000190735, 256139.834800001233816 ], [ 356429.314900003373623, 256127.948399998247623 ], [ 356403.415799997746944, 256139.135499998927116 ], [ 356402.16889999806881, 256190.843199998140335 ], [ 356458.936300002038479, 256153.099899999797344 ], [ 356448.621500000357628, 256133.383799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204072400", "MAP": null, "PARCEL_NAM": "169", "ACRE": null, "LONGITUDE": -64.95175931, "LATITUDE": 18.33496446, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.19436293699999, "SHAPE_Area": 2306.8177781700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356637.856700003147125, 256164.063499998301268 ], [ 356606.779200002551079, 256120.535000000149012 ], [ 356571.897399999201298, 256144.947399999946356 ], [ 356589.420400001108646, 256170.422100000083447 ], [ 356592.604299999773502, 256175.303300000727177 ], [ 356602.163199998438358, 256189.102600000798702 ], [ 356615.953199997544289, 256179.505100000649691 ], [ 356637.856700003147125, 256164.063499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "101", "ACRE": null, "LONGITUDE": -64.95727735, "LATITUDE": 18.33512988, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.315144647, "SHAPE_Area": 767.80755218499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356035.586300000548363, 256153.856899999082088 ], [ 356004.915799997746944, 256157.194400001317263 ], [ 356007.923500001430511, 256182.761399999260902 ], [ 356040.211999997496605, 256178.803800001740456 ], [ 356034.670299999415874, 256166.726100001484156 ], [ 356035.586300000548363, 256153.856899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96992368, "LATITUDE": 18.3349005, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.97935441600001, "SHAPE_Area": 531.19847371100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354690.037799999117851, 256120.890500001609325 ], [ 354681.169799998402596, 256120.649399999529123 ], [ 354681.150399997830391, 256122.928599998354912 ], [ 354673.071000002324581, 256124.76240000128746 ], [ 354672.056100003421307, 256149.240899998694658 ], [ 354697.17230000346899, 256135.303199999034405 ], [ 354698.759800001978874, 256138.271499998867512 ], [ 354700.431699998676777, 256131.319099999964237 ], [ 354698.034400001168251, 256128.766399998217821 ], [ 354698.057700000703335, 256126.022300001233816 ], [ 354700.494699999690056, 256123.93129999935627 ], [ 354699.709899999201298, 256121.391800001263618 ], [ 354697.29280000180006, 256121.160900000482798 ], [ 354690.037799999117851, 256120.890500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204072800", "MAP": "D9-4291-T88", "PARCEL_NAM": null, "ACRE": ".18", "LONGITUDE": -64.95299169, "LATITUDE": 18.33478738, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.106392399, "SHAPE_Area": 941.58588104600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356475.416799999773502, 256111.649399999529123 ], [ 356455.136699996888638, 256125.837699998170137 ], [ 356471.803099997341633, 256157.215999998152256 ], [ 356495.333599999547005, 256140.098900001496077 ], [ 356475.416799999773502, 256111.649399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "111111111111", "MAP": "B9-193-T68", "PARCEL_NAM": "21A", "ACRE": ".174", "LONGITUDE": -64.95347036, "LATITUDE": 18.33473188, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.52617569099999, "SHAPE_Area": 611.98104882500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356442.275200001895428, 256121.08839999884367 ], [ 356404.401900000870228, 256118.034200001507998 ], [ 356403.415799997746944, 256139.135499998927116 ], [ 356429.314900003373623, 256127.948399998247623 ], [ 356437.277300000190735, 256139.834800001233816 ], [ 356448.621500000357628, 256133.383799999952316 ], [ 356442.275200001895428, 256121.08839999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204072900", "MAP": "D9-4291-T88", "PARCEL_NAM": "16", "ACRE": ".32", "LONGITUDE": -64.95325596000001, "LATITUDE": 18.33438653, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.22213428800001, "SHAPE_Area": 1478.9296024499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356437.238799996674061, 256049.697599999606609 ], [ 356419.417300000786781, 256059.261999998241663 ], [ 356455.136699996888638, 256125.837699998170137 ], [ 356475.416799999773502, 256111.649399999529123 ], [ 356436.362400002777576, 256057.923000000417233 ], [ 356437.238799996674061, 256049.697599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95075171000001, "LATITUDE": 18.33415801, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.668792162500001, "SHAPE_Area": 33.956060698100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356716.865599997341633, 256071.195700000971556 ], [ 356709.698700003325939, 256060.582400001585484 ], [ 356707.259999997913837, 256062.884399998933077 ], [ 356715.242200002074242, 256072.449000000953674 ], [ 356716.865599997341633, 256071.195700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91091238, "LATITUDE": 18.33397995, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.001004782, "SHAPE_Area": 477.54557381799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360897.105999998748302, 256068.256499998271465 ], [ 360895.027000002563, 256067.772100001573563 ], [ 360895.258299998939037, 256075.653499998152256 ], [ 360921.990199998021126, 256081.548000000417233 ], [ 360930.037100002169609, 256083.513700000941753 ], [ 360934.833599999547005, 256088.408100001513958 ], [ 360935.623700000345707, 256090.314399998635054 ], [ 360935.569799996912479, 256096.646800000220537 ], [ 360934.747299998998642, 256098.539900001138449 ], [ 360940.364500001072884, 256101.752300001680851 ], [ 360943.5574000030756, 256105.578099999576807 ], [ 360942.837399996817112, 256095.439699999988079 ], [ 360943.663500003516674, 256093.124400001019239 ], [ 360942.112000003457069, 256085.934500001370907 ], [ 360933.330700002610683, 256075.519099999219179 ], [ 360921.252199999988079, 256073.520399998873472 ], [ 360897.105999998748302, 256068.256499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204071800", "MAP": "D9-4291-T88", "PARCEL_NAM": "18", "ACRE": ".12", "LONGITUDE": -64.95342238000001, "LATITUDE": 18.33397316, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.326802903, "SHAPE_Area": 526.19561240400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356430.914200000464916, 256034.869300000369549 ], [ 356411.483599998056889, 256043.9983000010252 ], [ 356419.417300000786781, 256059.261999998241663 ], [ 356437.238799996674061, 256049.697599999606609 ], [ 356437.271200001239777, 256045.898200001567602 ], [ 356447.819799996912479, 256038.1739999987185 ], [ 356448.678300000727177, 256032.059300001710653 ], [ 356446.275499999523163, 256030.139800000935793 ], [ 356439.819600000977516, 256030.720300000160933 ], [ 356430.914200000464916, 256034.869300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93805619, "LATITUDE": 18.33341795, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 668.329246786, "SHAPE_Area": 2704.9470454699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358149.497000001370907, 256010.093800000846386 ], [ 357994.375, 255950.562399998307228 ], [ 357990.343400001525879, 255950.529399998486042 ], [ 357987.107400000095367, 255951.769499998539686 ], [ 357985.48929999768734, 255952.389499999582767 ], [ 357919.638599999248981, 256015.178599998354912 ], [ 357920.364000000059605, 256024.683800000697374 ], [ 357987.028200000524521, 255961.057000000029802 ], [ 357990.264300003647804, 255959.816899999976158 ], [ 357994.295800000429153, 255959.849899999797344 ], [ 358138.964500002563, 256015.918200001120567 ], [ 358145.373700000345707, 256020.825899999588728 ], [ 358146.948600001633167, 256025.271699998527765 ], [ 358153.02139999717474, 256069.651099998503923 ], [ 358165.89190000295639, 256073.344999998807907 ], [ 358160.328599996864796, 256063.800200000405312 ], [ 358153.469200000166893, 256017.092399999499321 ], [ 358151.899700000882149, 256012.013300001621246 ], [ 358149.497000001370907, 256010.093800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9181943, "LATITUDE": 18.33319354, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 548.35036404100003, "SHAPE_Area": 2067.9630453999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360110.948100000619888, 255872.893500000238419 ], [ 360101.335199996829033, 255865.426500000059605 ], [ 360098.086599998176098, 255868.144099999219179 ], [ 360129.923699997365475, 255917.167300000786781 ], [ 360129.900399997830391, 255919.911299999803305 ], [ 360137.44200000166893, 255981.190200001001358 ], [ 360141.180500000715256, 256015.629000000655651 ], [ 360141.162500001490116, 256017.739799998700619 ], [ 360166.754100002348423, 256042.647199999541044 ], [ 360189.147399999201298, 256064.362100001424551 ], [ 360196.972000002861023, 256080.279899999499321 ], [ 360199.871899999678135, 256093.704599998891354 ], [ 360221.862700000405312, 256078.736999999731779 ], [ 360215.653200000524521, 256076.611299999058247 ], [ 360208.446800000965595, 256070.641699999570847 ], [ 360164.408900000154972, 256033.973200000822544 ], [ 360153.237400002777576, 256020.160700000822544 ], [ 360150.856200002133846, 256015.708200000226498 ], [ 360146.930699996650219, 256003.221599999815226 ], [ 360145.384700000286102, 255995.398499999195337 ], [ 360143.567299999296665, 255972.754599999636412 ], [ 360142.468699999153614, 255959.066500000655651 ], [ 360137.108599998056889, 255925.669900000095367 ], [ 360130.845100000500679, 255903.664900001138449 ], [ 360126.896300002932549, 255893.922200001776218 ], [ 360121.331200003623962, 255884.588599998503923 ], [ 360110.948100000619888, 255872.893500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91137069, "LATITUDE": 18.33375484, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.389499090699999, "SHAPE_Area": 25.020462839299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360873.774999998509884, 256061.943900000303984 ], [ 360877.867700003087521, 256054.800200000405312 ], [ 360873.062200002372265, 256050.961199998855591 ], [ 360873.774999998509884, 256061.943900000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97011266, "LATITUDE": 18.333582, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.5897477627, "SHAPE_Area": 68.082797645499994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354653.261399999260902, 255989.078200001269579 ], [ 354678.282200001180172, 255986.327599998563528 ], [ 354675.080300003290176, 255983.557199999690056 ], [ 354660.554099999368191, 255984.916000001132488 ], [ 354657.321699999272823, 255985.733899999409914 ], [ 354653.261399999260902, 255989.078200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-4351-T88", "PARCEL_NAM": "A-1-E", "ACRE": "0.46", "LONGITUDE": -64.91635889, "LATITUDE": 18.33272748, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 431.717012571, "SHAPE_Area": 1243.5921861300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360319.14750000089407, 255854.543600000441074 ], [ 360317.520499996840954, 255856.219000000506639 ], [ 360318.305200003087521, 255858.758600000292063 ], [ 360314.161700002849102, 255871.859900001436472 ], [ 360314.838600002229214, 255887.064100001007318 ], [ 360317.950499996542931, 255900.3885000012815 ], [ 360327.509400002658367, 255914.187800001353025 ], [ 360331.467200003564358, 255922.875100001692772 ], [ 360335.38910000026226, 255935.783900000154972 ], [ 360336.895599998533726, 255948.250700000673532 ], [ 360339.289399996399879, 255951.225600000470877 ], [ 360340.860699996352196, 255956.093600001186132 ], [ 360344.850900001823902, 255960.9814000017941 ], [ 360346.429300002753735, 255965.005100000649691 ], [ 360348.032999999821186, 255966.073699999600649 ], [ 360352.811499997973442, 255973.078899998217821 ], [ 360364.004600003361702, 255984.358500000089407 ], [ 360372.015500001609325, 255990.545800000429153 ], [ 360380.028300002217293, 255996.521999999880791 ], [ 360389.660899996757507, 256001.667100001126528 ], [ 360399.306100003421307, 256005.334600001573563 ], [ 360405.745800003409386, 256006.653900001198053 ], [ 360409.872699998319149, 255995.499699998646975 ], [ 360403.441899999976158, 255993.125 ], [ 360401.804099999368191, 255996.066899999976158 ], [ 360398.566299997270107, 255997.518100000917912 ], [ 360391.323899999260902, 255995.769999999552965 ], [ 360382.495800003409386, 255990.842599999159575 ], [ 360371.275799997150898, 255982.729299999773502 ], [ 360364.072899997234344, 255976.337499998509884 ], [ 360356.087099999189377, 255967.195099998265505 ], [ 360349.703100003302097, 255959.332400001585484 ], [ 360348.117499999701977, 255956.153000000864267 ], [ 360343.364100001752377, 255946.192699998617172 ], [ 360340.275499999523163, 255930.124299999326468 ], [ 360337.125799998641014, 255921.232599999755621 ], [ 360333.17339999973774, 255911.912200000137091 ], [ 360323.618100002408028, 255897.690699998289347 ], [ 360320.477399997413158, 255887.743599999696016 ], [ 360320.623000003397465, 255870.646200001239777 ], [ 360322.208800002932549, 255864.149700000882149 ], [ 360326.321299999952316, 255854.684099998325109 ], [ 360335.385200001299381, 255841.588700000196695 ], [ 360329.71000000089407, 255845.178199999034405 ], [ 360319.14750000089407, 255854.543600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97103508, "LATITUDE": 18.33235706, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 350.77448250200001, "SHAPE_Area": 852.228211429 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354541.957099996507168, 255897.396999999880791 ], [ 354548.457999996840954, 255891.539599999785423 ], [ 354593.125299997627735, 255854.33049999922514 ], [ 354594.770300000905991, 255850.544300001114607 ], [ 354594.83500000089407, 255842.94539999961853 ], [ 354592.451999999582767, 255838.703999999910593 ], [ 354587.657300002872944, 255833.598600000143051 ], [ 354561.203599996864796, 255815.228000000119209 ], [ 354553.212399996817112, 255806.718899998813868 ], [ 354535.811599999666214, 255766.890900000929832 ], [ 354551.583599999547005, 255808.605399999767542 ], [ 354549.128700003027916, 255812.807100001722574 ], [ 354586.0050999969244, 255838.229100000113249 ], [ 354585.907999999821186, 255849.627399999648333 ], [ 354542.027300000190735, 255889.164900001138449 ], [ 354541.957099996507168, 255897.396999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105203040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95833594, "LATITUDE": 18.33258583, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.44663674399999, "SHAPE_Area": 1264.04314331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355893.351199999451637, 255906.768699999898672 ], [ 355932.183700002729893, 255891.887800000607967 ], [ 355938.653999999165535, 255889.61879999935627 ], [ 355931.598600000143051, 255865.918499998748302 ], [ 355887.937200002372265, 255879.704500000923872 ], [ 355886.261699996888638, 255887.078999999910593 ], [ 355893.351199999451637, 255906.768699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050197", "MAP": "D9-8048-T007", "PARCEL_NAM": "70B-2", "ACRE": ".03", "LONGITUDE": -64.9574146, "LATITUDE": 18.33254082, "OBJECTID_1": 8719, "PARCEL_NO_": "105204050197", "Tax_Legal_": "SUBBASE 70B-2 CROWN PRINCE QUARTER", "Name": "ADVANCE OFFICE SUPPLIES", "Address": "8206 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 271600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.2516922605, "SHAPE_Area": 163.825006919 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356007.995099999010563, 255890.397399999201298 ], [ 356018.543600000441074, 255882.673200000077486 ], [ 356009.756899997591972, 255872.890999998897314 ], [ 356000.012800000607967, 255880.832800000905991 ], [ 356007.995099999010563, 255890.397399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": "D9-7320-T003", "PARCEL_NAM": "16", "ACRE": "0.50", "LONGITUDE": -64.95638531, "LATITUDE": 18.33240375, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.80675795600001, "SHAPE_Area": 2164.7440629900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356137.474399998784065, 255836.361699998378754 ], [ 356136.14580000191927, 255834.568799998611212 ], [ 356081.014300003647804, 255874.89469999819994 ], [ 356083.095399998128414, 255877.713100001215935 ], [ 356099.837399996817112, 255900.226100001484156 ], [ 356116.876000002026558, 255887.910999998450279 ], [ 356155.013700000941753, 255859.936599999666214 ], [ 356151.828000001609325, 255855.266499999910593 ], [ 356137.474399998784065, 255836.361699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010600", "MAP": "D3-405-T86", "PARCEL_NAM": "70Y", "ACRE": "1.8", "LONGITUDE": -64.97265386, "LATITUDE": 18.33201723, "OBJECTID_1": 7433, "PARCEL_NO_": "105104010600", "Tax_Legal_": "70Y LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 151500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 371.592024138, "SHAPE_Area": 7040.336837 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354392.391599997878075, 255750.566100001335144 ], [ 354372.300300002098083, 255742.5912000015378 ], [ 354344.160999998450279, 255827.431600000709295 ], [ 354450.270599998533726, 255866.296900000423193 ], [ 354451.490500003099442, 255817.755399998277426 ], [ 354426.094300001859665, 255792.594700001180172 ], [ 354415.614399999380112, 255782.646000001579523 ], [ 354408.629399999976158, 255781.481800001114607 ], [ 354402.27929999679327, 255778.095199998468161 ], [ 354399.104299999773502, 255775.343499999493361 ], [ 354397.037000000476837, 255773.191100001335144 ], [ 354396.259499996900558, 255769.807300001382828 ], [ 354395.503499999642372, 255763.890500001609325 ], [ 354389.078199997544289, 255760.882599998265505 ], [ 354392.391599997878075, 255750.566100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": "D9-6783-T000", "PARCEL_NAM": "16A", "ACRE": "1.01", "LONGITUDE": -64.95663894, "LATITUDE": 18.33207506, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.33767711499999, "SHAPE_Area": 3978.5547676299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356136.14580000191927, 255834.568799998611212 ], [ 356100.803000003099442, 255786.8766999989748 ], [ 356048.056400001049042, 255825.91950000077486 ], [ 356073.52929999679327, 255864.758099999278784 ], [ 356081.014300003647804, 255874.89469999819994 ], [ 356136.14580000191927, 255834.568799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050165", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95765837, "LATITUDE": 18.33219366, "OBJECTID_1": 8688, "PARCEL_NO_": "105204050165", "Tax_Legal_": "SUB BASE 1 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 1000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.09810151900001, "SHAPE_Area": 1382.4249230200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356011.086499996483326, 255811.473700001835823 ], [ 355945.340000003576279, 255862.020199999213219 ], [ 355954.907899998128414, 255874.76410000026226 ], [ 356021.44990000128746, 255825.490699999034405 ], [ 356011.086499996483326, 255811.473700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95579614, "LATITUDE": 18.33222639, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.662074811, "SHAPE_Area": 1282.4378867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356160.769299998879433, 255846.895899999886751 ], [ 356182.806000001728535, 255875.204999998211861 ], [ 356205.013999998569489, 255859.290399998426437 ], [ 356176.321199998259544, 255819.792100001126528 ], [ 356164.151000000536442, 255828.558499999344349 ], [ 356160.769299998879433, 255846.895899999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050192", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95932199000001, "LATITUDE": 18.33216045, "OBJECTID_1": 8714, "PARCEL_NO_": "105204050192", "Tax_Legal_": "SUB BASE 6A SOUTHSIDE QUARTER", "Name": "BRYAN, RONNIE", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032621, "Country": "United States", "Land_Value": 0, "Improved_V": 219900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.248890746, "SHAPE_Area": 1406.0430867499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355777.867299996316433, 255823.904199998825788 ], [ 355786.849799998104572, 255831.337400000542402 ], [ 355798.755999997258186, 255842.926199998706579 ], [ 355811.45610000193119, 255857.372499998658895 ], [ 355822.683399997651577, 255872.415399998426437 ], [ 355824.314099997282028, 255870.317800000309944 ], [ 355826.851700000464916, 255856.406399998813868 ], [ 355830.897600002586842, 255854.750799998641014 ], [ 355831.671599999070168, 255858.556800000369549 ], [ 355829.963600002229214, 255869.730799999088049 ], [ 355834.061700001358986, 255861.95380000025034 ], [ 355838.120300002396107, 255858.820599999278784 ], [ 355830.960600003600121, 255847.363000001758337 ], [ 355811.796099998056889, 255825.252399999648333 ], [ 355794.202799998223782, 255808.009799998253584 ], [ 355792.604599997401237, 255806.30799999833107 ], [ 355786.089400000870228, 255813.854100000113249 ], [ 355777.867299996316433, 255823.904199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050166", "MAP": "D9-1425-T78", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95860951, "LATITUDE": 18.33225772, "OBJECTID_1": 8689, "PARCEL_NO_": "105204050166", "Tax_Legal_": "SUB BASE 97 S S QTR", "Name": "WILHELMSEN, RANDOLPH", "Address": "PO Box 524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 34600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.5906340298, "SHAPE_Area": 398.70967631000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355879.432800002396107, 255836.782900001853704 ], [ 355871.193499997258186, 255857.40260000154376 ], [ 355884.836000002920628, 255865.113600000739098 ], [ 355895.553700000047684, 255837.548099998384714 ], [ 355879.432800002396107, 255836.782900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050138", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9590551, "LATITUDE": 18.33203734, "OBJECTID_1": 8666, "PARCEL_NO_": "105204050138", "Tax_Legal_": "SUB BASE 110 S S QTR", "Name": "A B C JANITORS", "Address": "BOX 2955", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 314800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.38887009300001, "SHAPE_Area": 2809.0116602500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355838.120300002396107, 255858.820599999278784 ], [ 355852.736400000751019, 255846.907900001853704 ], [ 355871.193499997258186, 255857.40260000154376 ], [ 355879.432800002396107, 255836.782900001853704 ], [ 355816.145900003612041, 255787.924499999731779 ], [ 355806.435999996960163, 255791.855799999088049 ], [ 355794.202799998223782, 255808.009799998253584 ], [ 355811.796099998056889, 255825.252399999648333 ], [ 355830.960600003600121, 255847.363000001758337 ], [ 355838.120300002396107, 255858.820599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95558618, "LATITUDE": 18.33206508, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.18172477799999, "SHAPE_Area": 1476.2093771499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356229.356200002133846, 255841.546700000762939 ], [ 356200.665200002491474, 255801.83729999884963 ], [ 356176.321199998259544, 255819.792100001126528 ], [ 356205.013999998569489, 255859.290399998426437 ], [ 356229.356200002133846, 255841.546700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95535842, "LATITUDE": 18.33190481, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.51480649000001, "SHAPE_Area": 1455.19172824 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356253.696699999272823, 255824.013999998569489 ], [ 356224.197599999606609, 255784.509199999272823 ], [ 356200.665200002491474, 255801.83729999884963 ], [ 356229.356200002133846, 255841.546700000762939 ], [ 356253.696699999272823, 255824.013999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050133", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95972713, "LATITUDE": 18.33172466, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.80980117499999, "SHAPE_Area": 2157.42728554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355798.967200003564358, 255798.235700000077486 ], [ 355756.145199999213219, 255755.565099999308586 ], [ 355732.952799998223782, 255777.347899999469519 ], [ 355733.151500001549721, 255780.701299998909235 ], [ 355733.175499998033047, 255780.677200000733137 ], [ 355733.358499996364117, 255783.413800001144409 ], [ 355777.867299996316433, 255823.904199998825788 ], [ 355786.089400000870228, 255813.854100000113249 ], [ 355792.604599997401237, 255806.30799999833107 ], [ 355798.967200003564358, 255798.235700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95506413, "LATITUDE": 18.33170273, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.41425985199999, "SHAPE_Area": 2312.2647684499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356224.197599999606609, 255784.509199999272823 ], [ 356253.696699999272823, 255824.013999998569489 ], [ 356292.642399996519089, 255795.835099998861551 ], [ 356275.112099997699261, 255771.204799998551607 ], [ 356268.68860000371933, 255767.985800001770258 ], [ 356261.478500001132488, 255762.438400000333786 ], [ 356255.029799997806549, 255762.174499999731779 ], [ 356224.197599999606609, 255784.509199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050194", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95588085, "LATITUDE": 18.33164287, "OBJECTID_1": 8716, "PARCEL_NO_": "105204050194", "Tax_Legal_": "CROWN BAY 161D SOUTHSIDE QUARTER", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 387800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.80310594299999, "SHAPE_Area": 1317.14816711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356197.499300003051758, 255794.845300000160933 ], [ 356168.799400001764297, 255756.191399998962879 ], [ 356146.890500001609325, 255772.26630000025034 ], [ 356174.784100003540516, 255810.913600001484156 ], [ 356197.499300003051758, 255794.845300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050189", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95566602, "LATITUDE": 18.33149102, "OBJECTID_1": 8711, "PARCEL_NO_": "105204050189", "Tax_Legal_": "CROWNBAY #161C SOUTHSIDE QTR.", "Name": "INSULAR INVESTMENTS", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 712700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.526342594, "SHAPE_Area": 1400.2116166000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356221.028099998831749, 255777.939300000667572 ], [ 356192.329899996519089, 255739.074299998581409 ], [ 356168.799400001764297, 255756.191399998962879 ], [ 356197.499300003051758, 255794.845300000160933 ], [ 356221.028099998831749, 255777.939300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050183", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95537112, "LATITUDE": 18.3312842, "OBJECTID_1": 8705, "PARCEL_NO_": "105204050183", "Tax_Legal_": "161-B SUB BASE No.6 SOUTHSIDE QTR.", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 472000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.97768511300001, "SHAPE_Area": 2347.5837806999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356192.329899996519089, 255739.074299998581409 ], [ 356221.028099998831749, 255777.939300000667572 ], [ 356254.291900001466274, 255754.146899998188019 ], [ 356261.564900003373623, 255752.306600000709295 ], [ 356230.480099998414516, 255709.622400000691414 ], [ 356229.657600000500679, 255711.515500001609325 ], [ 356192.329899996519089, 255739.074299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "D9-781-T68", "PARCEL_NAM": "REM 78 (HAYPIECE HILL)", "ACRE": null, "LONGITUDE": -64.95837519, "LATITUDE": 18.33023879, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1571.2045274, "SHAPE_Area": 18849.797971100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355867.441500000655651, 255776.026599999517202 ], [ 356025.767700001597404, 255602.611200001090765 ], [ 356006.462999999523163, 255596.964800000190735 ], [ 355971.825699999928474, 255592.670499999076128 ], [ 355957.349799998104572, 255588.119100000709295 ], [ 355922.001599997282028, 255572.631000000983477 ], [ 355913.954599998891354, 255570.665300000458956 ], [ 355903.479800000786781, 255569.735199999064207 ], [ 355897.016699999570847, 255571.160000000149012 ], [ 355892.967100001871586, 255573.237799998372793 ], [ 355886.462700001895428, 255579.517299998551607 ], [ 355883.181699998676777, 255586.034400001168251 ], [ 355879.825199998915195, 255601.416700001806021 ], [ 355880.476800002157688, 255619.576099999248981 ], [ 355884.32320000231266, 255641.35020000115037 ], [ 355891.448700003325939, 255656.818399999290705 ], [ 355893.050599999725819, 255658.098099999129772 ], [ 355895.433499999344349, 255662.339400000870228 ], [ 355901.034599997103214, 255667.451499998569489 ], [ 355912.294200003147125, 255670.92119999974966 ], [ 355926.807800002396107, 255671.03999999910593 ], [ 355935.69879999756813, 255668.579599998891354 ], [ 355944.605999998748302, 255664.219500001519918 ], [ 355949.474500000476837, 255660.670800000429153 ], [ 355897.064099997282028, 255660.241900000721216 ], [ 355899.74379999935627, 255629.655200000852346 ], [ 355894.25789999961853, 255611.034099999815226 ], [ 355890.388099998235703, 255592.004000000655651 ], [ 355906.588100001215935, 255583.481699999421835 ], [ 355918.530000001192093, 255601.522399999201298 ], [ 355946.770700000226498, 255599.431499999016523 ], [ 355971.552400000393391, 255624.75450000166893 ], [ 355963.365199998021126, 255639.252999998629093 ], [ 355962.54450000077486, 255640.934999998658895 ], [ 355963.325599998235703, 255643.896699998527765 ], [ 355962.44200000166893, 255652.966499999165535 ], [ 355960.784400001168251, 255658.230200000107288 ], [ 355958.338500000536442, 255661.376600001007318 ], [ 355947.784500002861023, 255669.734000001102686 ], [ 355940.495300002396107, 255673.473999999463558 ], [ 355931.60249999910593, 255676.145500000566244 ], [ 355918.687100000679493, 255677.728500001132488 ], [ 355910.629399999976158, 255677.02930000051856 ], [ 355902.582500003278255, 255675.0636 ], [ 355894.558899998664856, 255670.353799998760223 ], [ 355885.78660000115633, 255658.883000001311302 ], [ 355880.250299997627735, 255646.172100000083447 ], [ 355875.56700000166893, 255627.979699999094009 ], [ 355874.098300002515316, 255611.080200001597404 ], [ 355875.0574000030756, 255593.145100001245737 ], [ 355880.024800002574921, 255577.986999999731779 ], [ 355888.975100003182888, 255568.561000000685453 ], [ 355893.026500001549721, 255566.272199999541044 ], [ 355901.111199997365475, 255563.80519999936223 ], [ 355912.397699996829033, 255564.10869999974966 ], [ 355922.055500000715256, 255566.298700001090765 ], [ 355963.836300000548363, 255583.950300000607967 ], [ 355975.905799999833107, 255587.004399999976158 ], [ 356001.684399999678135, 255589.959600001573563 ], [ 356023.408100001513958, 255595.625799998641014 ], [ 356025.828900001943111, 255595.434500001370907 ], [ 356026.665700003504753, 255591.852800000458956 ], [ 356018.651199996471405, 255586.087699998170137 ], [ 355978.425499998033047, 255575.20380000025034 ], [ 355969.602799996733665, 255569.643100000917912 ], [ 355959.2195999994874, 255557.947999998927116 ], [ 355943.199500001966953, 255545.362399999052286 ], [ 355909.483599998056889, 255527.565699998289347 ], [ 355896.616700001060963, 255523.449599999934435 ], [ 355882.920199997723103, 255522.070900000631809 ], [ 355862.742600001394749, 255524.227800000458956 ], [ 355853.847999997437, 255527.110300000756979 ], [ 355848.988600000739098, 255529.603700000792742 ], [ 355842.491300001740456, 255535.038899999111891 ], [ 355867.441500000655651, 255776.026599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404170100", "MAP": "A9-461-T94", "PARCEL_NAM": "5", "ACRE": ".604", "LONGITUDE": -64.92230003, "LATITUDE": 18.33102685, "OBJECTID_1": 19574, "PARCEL_NO_": "105404170100", "Tax_Legal_": "1, 2, 3, & ESTATE THOMAS 6F & 6B NEW QUARTER", "Name": "EMPLOYEES RETIREMENT SYSTEM OF THE GOVT OF THE VI", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.73832094100001, "SHAPE_Area": 2517.19724421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359721.339400000870228, 255699.141100000590086 ], [ 359695.111299999058247, 255748.955600000917912 ], [ 359720.564400002360344, 255790.116099998354912 ], [ 359735.290200002491474, 255765.327599998563528 ], [ 359750.01070000231266, 255741.1722999997437 ], [ 359738.876900002360344, 255722.927099999040365 ], [ 359721.339400000870228, 255699.141100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "A3-97-T66", "PARCEL_NAM": "35 REM", "ACRE": null, "LONGITUDE": -64.95586604, "LATITUDE": 18.33058123, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 584.84126508199995, "SHAPE_Area": 4346.5364044300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356217.465300001204014, 255641.448699999600649 ], [ 356236.282700002193451, 255626.017299998551607 ], [ 356244.249399997293949, 255610.198699999600649 ], [ 356252.446999996900558, 255592.781100001186132 ], [ 356250.005300000309944, 255594.736200001090765 ], [ 356234.649400003254414, 255598.832400001585484 ], [ 356202.36089999973774, 255602.78999999910593 ], [ 356198.302400000393391, 255605.923200000077486 ], [ 356200.640399999916553, 255615.441500000655651 ], [ 356199.763999998569489, 255623.666999999433756 ], [ 356191.632500000298023, 255631.622000001370907 ], [ 356195.505999997258186, 255636.435899998992682 ], [ 356137.921400003135204, 255689.2331000007689 ], [ 356109.459499999880791, 255717.286699999123812 ], [ 356095.637100003659725, 255730.683600001037121 ], [ 356085.851700000464916, 255743.480200000107288 ], [ 356082.577899999916553, 255749.152899999171495 ], [ 356080.880699999630451, 255759.060400001704693 ], [ 356149.895599998533726, 255703.474399998784065 ], [ 356170.191899999976158, 255687.386300001293421 ], [ 356198.605200000107288, 255665.031899999827147 ], [ 356205.910599999129772, 255659.392099998891354 ], [ 356204.846500001847744, 255656.566399998962879 ], [ 356217.465300001204014, 255641.448699999600649 ] ], [ [ 356228.345799997448921, 255607.145300000905991 ], [ 356224.376999996602535, 255617.993200000375509 ], [ 356218.820699997246265, 255624.607799999415874 ], [ 356211.941600002348423, 255629.370299998670816 ], [ 356204.797799997031689, 255632.545299999415874 ], [ 356202.192100003361702, 255630.413400001823902 ], [ 356228.081200003623962, 255604.763999998569489 ], [ 356228.345799997448921, 255607.145300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105204050100", "MAP": "D9-5872-T95", "PARCEL_NAM": "ROW 161-K", "ACRE": "0.50", "LONGITUDE": -64.95588295, "LATITUDE": 18.33127874, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.03865232099997, "SHAPE_Area": 2278.9160458599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356193.411300003528595, 255706.785900000482798 ], [ 356193.41610000282526, 255710.857999999076128 ], [ 356193.420699998736382, 255710.862199999392033 ], [ 356193.420699998736382, 255714.830899998545647 ], [ 356187.864399999380112, 255722.503899998962879 ], [ 356184.954000003635883, 255725.414299998432398 ], [ 356109.180100001394749, 255781.184300001710653 ], [ 356115.305799998342991, 255788.261999998241663 ], [ 356116.884300000965595, 255792.285700000822544 ], [ 356117.825199998915195, 255793.492199998348951 ], [ 356119.303300000727177, 255792.305399999022484 ], [ 356146.890500001609325, 255772.26630000025034 ], [ 356168.799400001764297, 255756.191399998962879 ], [ 356192.329899996519089, 255739.074299998581409 ], [ 356229.657600000500679, 255711.515500001609325 ], [ 356230.480099998414516, 255709.622400000691414 ], [ 356231.309799998998642, 255706.885000001639128 ], [ 356212.005000002682209, 255701.238499999046326 ], [ 356193.411300003528595, 255706.785900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050134", "MAP": "D9-2983-T85", "PARCEL_NAM": "81A", "ACRE": ".188", "LONGITUDE": -64.95679248, "LATITUDE": 18.33110653, "OBJECTID_1": 8663, "PARCEL_NO_": "105204050134", "Tax_Legal_": "SUBMARINE BASE SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 96600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.02263692, "SHAPE_Area": 777.67711042099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356072.925499998033047, 255746.329700000584126 ], [ 356075.378600001335144, 255742.339000001549721 ], [ 356078.643399998545647, 255737.721700001507998 ], [ 356078.661399997770786, 255735.61089999973774 ], [ 356081.924400001764297, 255731.204599998891354 ], [ 356090.054099999368191, 255723.460700001567602 ], [ 356092.494599997997284, 255720.947599999606609 ], [ 356096.562100000679493, 255716.75899999961257 ], [ 356082.968099996447563, 255703.348799999803305 ], [ 356056.163800001144409, 255726.138599999248981 ], [ 356072.925499998033047, 255746.329700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204072700", "MAP": "G9-2482-T75", "PARCEL_NAM": "114", "ACRE": null, "LONGITUDE": -64.95999027000001, "LATITUDE": 18.33103952, "OBJECTID_1": 8935, "PARCEL_NO_": "105204072700", "Tax_Legal_": "114 & 115 SUBBASE SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 665800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.03667432100001, "SHAPE_Area": 1044.5617191399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355733.109399996697903, 255690.986200001090765 ], [ 355724.124899998307228, 255704.422600001096725 ], [ 355722.474500000476837, 255708.842099998146296 ], [ 355723.221500001847744, 255715.814300000667572 ], [ 355729.506499998271465, 255735.286299999803305 ], [ 355744.821099996566772, 255736.045000001788139 ], [ 355756.424099996685982, 255699.198600001633167 ], [ 355733.109399996697903, 255690.986200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204072700", "MAP": "G9-2482-T75", "PARCEL_NAM": "115 REM", "ACRE": null, "LONGITUDE": -64.96047643, "LATITUDE": 18.33072521, "OBJECTID_1": 8935, "PARCEL_NO_": "105204072700", "Tax_Legal_": "114 & 115 SUBBASE SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 665800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.985295028, "SHAPE_Area": 4717.5624033399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355714.899099998176098, 255703.094500001519918 ], [ 355696.665299996733665, 255627.203999999910593 ], [ 355693.349399998784065, 255625.432900000363588 ], [ 355687.751999996602535, 255619.898600000888109 ], [ 355657.113899998366833, 255619.436799999326468 ], [ 355657.884199999272823, 255623.664900001138449 ], [ 355661.854699999094009, 255630.874600000679493 ], [ 355661.815099999308586, 255635.518300000578165 ], [ 355660.161100000143051, 255640.359999999403954 ], [ 355658.532300002872944, 255642.246500000357628 ], [ 355663.186800003051758, 255663.816100001335144 ], [ 355669.311800003051758, 255702.074200000613928 ], [ 355670.865099996328354, 255709.052999999374151 ], [ 355672.475900001823902, 255709.277300000190735 ], [ 355674.052599996328354, 255713.511999998241663 ], [ 355676.307899996638298, 255732.739999998360872 ], [ 355719.834399998188019, 255734.785000000149012 ], [ 355714.33219999819994, 255718.0636 ], [ 355713.626599997282028, 255706.236600000411272 ], [ 355714.899099998176098, 255703.094500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404170100", "MAP": "A9-461-T94", "PARCEL_NAM": "21", "ACRE": "3.115", "LONGITUDE": -64.92322608000001, "LATITUDE": 18.33052158, "OBJECTID_1": 19574, "PARCEL_NO_": "105404170100", "Tax_Legal_": "1, 2, 3, & ESTATE THOMAS 6F & 6B NEW QUARTER", "Name": "EMPLOYEES RETIREMENT SYSTEM OF THE GOVT OF THE VI", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 626.89468269600002, "SHAPE_Area": 12517.903633 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359583.889799997210503, 255647.564800001680851 ], [ 359584.447899997234344, 255676.700300000607967 ], [ 359542.505300000309944, 255678.045699998736382 ], [ 359482.458800002932549, 255722.094999998807907 ], [ 359484.003100000321865, 255730.129200000315905 ], [ 359486.391400001943111, 255733.737300001084805 ], [ 359489.607699997723103, 255734.819099999964237 ], [ 359484.74099999666214, 255738.156800001859665 ], [ 359487.143799997866154, 255740.076299998909235 ], [ 359496.074400000274181, 255732.972199998795986 ], [ 359504.200400002300739, 255725.650499999523163 ], [ 359513.928300000727177, 255719.608399998396635 ], [ 359525.234700001776218, 255717.589999999850988 ], [ 359531.696000002324581, 255716.376299999654293 ], [ 359534.926600001752377, 255715.769400000572205 ], [ 359574.502499997615814, 255708.282900001853704 ], [ 359591.451200000941753, 255706.521800000220537 ], [ 359598.699000000953674, 255707.636599998921156 ], [ 359667.894500002264977, 255725.512600000947714 ], [ 359686.362300001084805, 255734.740699999034405 ], [ 359695.111299999058247, 255748.955600000917912 ], [ 359721.339400000870228, 255699.141100000590086 ], [ 359695.830600000917912, 255664.524099998176098 ], [ 359685.422200001776218, 255655.784000001847744 ], [ 359669.380500003695488, 255645.7314000017941 ], [ 359656.526199996471405, 255640.137699998915195 ], [ 359650.927000001072884, 255634.814599998295307 ], [ 359647.759300000965595, 255628.033599998801947 ], [ 359583.889799997210503, 255647.564800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050134", "MAP": "D9-3797-T86", "PARCEL_NAM": "81B", "ACRE": ".4684", "LONGITUDE": -64.95650247, "LATITUDE": 18.33077999, "OBJECTID_1": 8663, "PARCEL_NO_": "105204050134", "Tax_Legal_": "SUBMARINE BASE SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 96600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.02378213200001, "SHAPE_Area": 1711.6908333599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356075.824600003659725, 255689.991500001400709 ], [ 356082.968099996447563, 255703.348799999803305 ], [ 356096.562100000679493, 255716.75899999961257 ], [ 356132.325800001621246, 255683.487799998372793 ], [ 356144.521200001239777, 255671.766399998217821 ], [ 356144.551700003445148, 255668.177999999374151 ], [ 356142.944499999284744, 255667.531599998474121 ], [ 356110.681199997663498, 255668.534099999815226 ], [ 356103.40820000320673, 255670.374400001019239 ], [ 356095.305500000715256, 255674.952199999243021 ], [ 356075.824600003659725, 255689.991500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050133", "MAP": null, "PARCEL_NAM": "166", "ACRE": null, "LONGITUDE": -64.95984607, "LATITUDE": 18.33055203, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.24169422300002, "SHAPE_Area": 2812.5088352500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355765.15259999781847, 255621.165399998426437 ], [ 355713.552199997007847, 255620.320900000631809 ], [ 355721.59009999781847, 255623.342000000178814 ], [ 355726.402800001204014, 255626.33669999986887 ], [ 355730.398400001227856, 255630.5912000015378 ], [ 355734.36879999935627, 255637.800900001078844 ], [ 355740.61429999768734, 255661.916700001806021 ], [ 355738.856100000441074, 255679.000900000333786 ], [ 355737.191299997270107, 255685.109000001102686 ], [ 355733.109399996697903, 255690.986200001090765 ], [ 355756.424099996685982, 255699.198600001633167 ], [ 355769.287399999797344, 255703.736800000071526 ], [ 355777.526699997484684, 255683.11710000038147 ], [ 355765.15259999781847, 255621.165399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050175", "MAP": "D3-407-T86", "PARCEL_NAM": "C", "ACRE": "0.29", "LONGITUDE": -64.95550713, "LATITUDE": 18.33077087, "OBJECTID_1": 8697, "PARCEL_NO_": "105204050175", "Tax_Legal_": "PARCEL C SUBBASE SOUTHSIDE QUARTER", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 378800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.54404337400001, "SHAPE_Area": 1290.7680943600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356233.181400001049042, 255676.50279999896884 ], [ 356211.52419999986887, 255663.026700001209974 ], [ 356205.027000002563, 255668.461899999529123 ], [ 356198.508100003004074, 255676.430100001394749 ], [ 356191.100299999117851, 255694.101300001144409 ], [ 356189.408500000834465, 255703.375599998980761 ], [ 356193.411300003528595, 255706.785900000482798 ], [ 356212.005000002682209, 255701.238499999046326 ], [ 356231.309799998998642, 255706.885000001639128 ], [ 356232.951200000941753, 255703.520899999886751 ], [ 356230.586199998855591, 255697.168699998408556 ], [ 356229.893200002610683, 255683.864199999719858 ], [ 356233.181400001049042, 255676.50279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050175", "MAP": "D9-5872-T95", "PARCEL_NAM": "E", "ACRE": "0.05", "LONGITUDE": -64.9557753, "LATITUDE": 18.33074067, "OBJECTID_1": 8697, "PARCEL_NO_": "105204050175", "Tax_Legal_": "PARCEL C SUBBASE SOUTHSIDE QUARTER", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 378800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.319991449699998, "SHAPE_Area": 304.24432279899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356170.191899999976158, 255687.386300001293421 ], [ 356185.407499998807907, 255699.754299998283386 ], [ 356186.273199997842312, 255692.795299999415874 ], [ 356188.756800003349781, 255685.2162000015378 ], [ 356191.226099997758865, 255679.325800001621246 ], [ 356197.771899998188019, 255668.191399998962879 ], [ 356198.605200000107288, 255665.031899999827147 ], [ 356170.191899999976158, 255687.386300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050182", "MAP": "D9-7822-T007", "PARCEL_NAM": "162", "ACRE": ".35", "LONGITUDE": -64.95521129, "LATITUDE": 18.33038046, "OBJECTID_1": 8704, "PARCEL_NO_": "105204050182", "Tax_Legal_": "SUB BASE 162 S.S. QTR.", "Name": "HAULOVER MARINE/YACHT C.", "Address": "BOX 4429", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 969200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.59088939700001, "SHAPE_Area": 1754.5314342900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356282.236299999058247, 255601.447500001639128 ], [ 356210.651600003242493, 255655.706000000238419 ], [ 356205.910599999129772, 255659.392099998891354 ], [ 356211.52419999986887, 255663.026700001209974 ], [ 356233.181400001049042, 255676.50279999896884 ], [ 356260.869300000369549, 255644.643199998885393 ], [ 356268.221400000154972, 255633.515399999916553 ], [ 356279.723800003528595, 255608.489399999380112 ], [ 356282.236299999058247, 255601.447500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050195", "MAP": "D9-8485-T010", "PARCEL_NAM": "134", "ACRE": ".2143", "LONGITUDE": -64.95655311, "LATITUDE": 18.33046777, "OBJECTID_1": 8717, "PARCEL_NO_": "105204050195", "Tax_Legal_": "SUBBASE 134 CROWN PRINCE QTR.", "Name": "FRANCIS, HALVOR", "Address": "PO Box 12107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 144500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.061441356, "SHAPE_Area": 621.08455356499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356092.938699997961521, 255668.811099998652935 ], [ 356098.622500002384186, 255664.213500000536442 ], [ 356102.671999998390675, 255662.13569999858737 ], [ 356126.0945999994874, 255657.683400001376867 ], [ 356094.849899999797344, 255633.785199999809265 ], [ 356089.835799999535084, 255654.43129999935627 ], [ 356085.730499997735023, 255663.052600000053644 ], [ 356092.938699997961521, 255668.811099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050160", "MAP": "D9-953-T71", "PARCEL_NAM": "129", "ACRE": ".70", "LONGITUDE": -64.95608866000001, "LATITUDE": 18.33011796, "OBJECTID_1": 8685, "PARCEL_NO_": "105204050160", "Tax_Legal_": "SUB BASE 129 S S QTR", "Name": "M. D. M ENTERPRISES", "Address": "BOX 3157", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 4922100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.17684472399998, "SHAPE_Area": 5824.5797454200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356198.302400000393391, 255605.923200000077486 ], [ 356189.774599999189377, 255565.745600000023842 ], [ 356188.892800003290176, 255574.604299999773502 ], [ 356185.631599999964237, 255578.799499999731779 ], [ 356181.580200001597404, 255581.08839999884367 ], [ 356168.655900001525879, 255583.726799998432398 ], [ 356158.173799999058247, 255583.640999998897314 ], [ 356144.484499998390675, 255581.418000001460314 ], [ 356136.421300001442432, 255581.352000001817942 ], [ 356121.067199997603893, 255585.237199999392033 ], [ 356111.339299999177456, 255591.27930000051856 ], [ 356105.648400001227856, 255596.721099998801947 ], [ 356099.122400000691414, 255605.533599998801947 ], [ 356096.552400000393391, 255623.24439999833703 ], [ 356116.611299999058247, 255635.018800001591444 ], [ 356145.460500001907349, 255656.153099998831749 ], [ 356159.956200003623962, 255658.382699999958277 ], [ 356191.632500000298023, 255631.622000001370907 ], [ 356199.763999998569489, 255623.666999999433756 ], [ 356200.640399999916553, 255615.441500000655651 ], [ 356198.302400000393391, 255605.923200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050129", "MAP": "D9-953-T71", "PARCEL_NAM": "133", "ACRE": ".37", "LONGITUDE": -64.95641137, "LATITUDE": 18.33037452, "OBJECTID_1": 8661, "PARCEL_NO_": "105204050129", "Tax_Legal_": "SUB BASE SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 303000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.46162992399999, "SHAPE_Area": 583.21513393700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356096.552400000393391, 255623.24439999833703 ], [ 356094.849899999797344, 255633.785199999809265 ], [ 356126.0945999994874, 255657.683400001376867 ], [ 356145.460500001907349, 255656.153099998831749 ], [ 356116.611299999058247, 255635.018800001591444 ], [ 356096.552400000393391, 255623.24439999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107302015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92374284, "LATITUDE": 18.33034285, "OBJECTID_1": 24817, "PARCEL_NO_": "107302015100", "Tax_Legal_": "LIVERPOOL /THOMAS #6A FRENCHMAN BAY", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.503092477, "SHAPE_Area": 611.38474495200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359542.505300000309944, 255678.045699998736382 ], [ 359584.447899997234344, 255676.700300000607967 ], [ 359583.889799997210503, 255647.564800001680851 ], [ 359542.505300000309944, 255678.045699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302016500", "MAP": "D9-5764-T94", "PARCEL_NAM": "1A-5A", "ACRE": ".36", "LONGITUDE": -64.91703936, "LATITUDE": 18.33001111, "OBJECTID_1": 24829, "PARCEL_NO_": "107302016500", "Tax_Legal_": "THOMAS 1A-5A & 1A-6 6C NEW QUARTER", "Name": "SILVEIRA, BRAD & KIM", "Address": "11261 La Vereda Dr", "City": "Santa Ana", "State": "California", "Zip": 92705, "Country": "United States", "Land_Value": 118500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.96486890400001, "SHAPE_Area": 1412.4646304400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360301.167300000786781, 255598.762099999934435 ], [ 360298.787900000810623, 255594.098600000143051 ], [ 360261.489000000059605, 255618.280200000852346 ], [ 360266.782499998807907, 255659.486699998378754 ], [ 360301.367600001394749, 255669.902300000190735 ], [ 360306.209100000560284, 255669.51969999819994 ], [ 360283.054399996995926, 255642.521299999207258 ], [ 360285.620800003409386, 255625.232700001448393 ], [ 360284.93860000371933, 255610.66160000115633 ], [ 360301.167300000786781, 255598.762099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302015600", "MAP": "D9-5764-T94", "PARCEL_NAM": "1A-5", "ACRE": ".14", "LONGITUDE": -64.91692023, "LATITUDE": 18.32995475, "OBJECTID_1": 24821, "PARCEL_NO_": "107302015600", "Tax_Legal_": "THOMAS 1A-1 6C NEW QTR", "Name": "DAGGETT, JOHN & BARBARA", "Address": "7301 Flagg Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 182500, "Improved_V": 492300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.98192676, "SHAPE_Area": 529.85608866099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360306.209100000560284, 255669.51969999819994 ], [ 360291.1841000020504, 255634.777399998158216 ], [ 360301.167300000786781, 255598.762099999934435 ], [ 360284.93860000371933, 255610.66160000115633 ], [ 360285.620800003409386, 255625.232700001448393 ], [ 360283.054399996995926, 255642.521299999207258 ], [ 360306.209100000560284, 255669.51969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050151", "MAP": "D9-941-T71", "PARCEL_NAM": "123", "ACRE": ".90", "LONGITUDE": -64.95535524, "LATITUDE": 18.32973264, "OBJECTID_1": 8676, "PARCEL_NO_": "105204050151", "Tax_Legal_": "123 SUBBASE SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 466800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.577438812, "SHAPE_Area": 3518.47231543 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356252.446999996900558, 255592.781100001186132 ], [ 356273.667000003159046, 255555.749600000679493 ], [ 356272.191100001335144, 255546.155200000852346 ], [ 356252.042300000786781, 255544.934799998998642 ], [ 356247.189999997615814, 255546.583799999207258 ], [ 356193.894299998879433, 255555.435699999332428 ], [ 356189.774599999189377, 255565.745600000023842 ], [ 356198.302400000393391, 255605.923200000077486 ], [ 356202.36089999973774, 255602.78999999910593 ], [ 356234.649400003254414, 255598.832400001585484 ], [ 356250.005300000309944, 255594.736200001090765 ], [ 356252.446999996900558, 255592.781100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401010100", "MAP": "D9-1777-T81", "PARCEL_NAM": "3Q", "ACRE": ".21", "LONGITUDE": -64.9156137, "LATITUDE": 18.329683, "OBJECTID_1": 32942, "PARCEL_NO_": "107401010100", "Tax_Legal_": "BAKEROE 3Q FRENCHMANS BAY QTR", "Name": "AMER Y DAAS and SUZAN DAAS", "Address": "Po Box 8650", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.70877063399999, "SHAPE_Area": 1622.4623959800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360363.883599996566772, 255598.582600001245737 ], [ 360362.292000003159046, 255603.125 ], [ 360368.05349999666214, 255603.742499999701977 ], [ 360393.83389999717474, 255606.486600000411272 ], [ 360399.472699999809265, 255607.16609999909997 ], [ 360413.140399999916553, 255611.921999998390675 ], [ 360419.572999998927116, 255614.08559999987483 ], [ 360453.402099996805191, 255618.584300000220537 ], [ 360466.637599997222424, 255579.429200001060963 ], [ 360448.837600000202656, 255586.460700001567602 ], [ 360434.295199997723103, 255589.719200000166893 ], [ 360420.571699999272823, 255591.506700001657009 ], [ 360411.680699996650219, 255593.967099998146296 ], [ 360396.308600001037121, 255599.962999999523163 ], [ 360384.194099999964237, 255602.185899998992682 ], [ 360373.713799998164177, 255601.888999998569489 ], [ 360366.886799998581409, 255599.592700000852346 ], [ 360363.883599996566772, 255598.582600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107401010100", "MAP": null, "PARCEL_NAM": "3Q", "ACRE": null, "LONGITUDE": -64.91639354, "LATITUDE": 18.32964919, "OBJECTID_1": 32942, "PARCEL_NO_": "107401010100", "Tax_Legal_": "BAKEROE 3Q FRENCHMANS BAY QTR", "Name": "AMER Y DAAS and SUZAN DAAS", "Address": "Po Box 8650", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.367624233399994, "SHAPE_Area": 233.39263782 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360347.191799998283386, 255591.53940000012517 ], [ 360347.24040000140667, 255585.840300001204014 ], [ 360337.492700003087521, 255594.204300001263618 ], [ 360335.279399998486042, 255596.402100000530481 ], [ 360331.799999997019768, 255599.857200000435114 ], [ 360362.292000003159046, 255603.125 ], [ 360363.883599996566772, 255598.582600001245737 ], [ 360360.848800003528595, 255597.561799999326468 ], [ 360349.592799998819828, 255593.670000001788139 ], [ 360347.191799998283386, 255591.53940000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050133", "MAP": null, "PARCEL_NAM": "143", "ACRE": null, "LONGITUDE": -64.95533984, "LATITUDE": 18.32938388, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.762402353, "SHAPE_Area": 2085.9741914900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356193.894299998879433, 255555.435699999332428 ], [ 356247.189999997615814, 255546.583799999207258 ], [ 356252.042300000786781, 255544.934799998998642 ], [ 356272.191100001335144, 255546.155200000852346 ], [ 356269.847699999809265, 255537.270100001245737 ], [ 356245.875900000333786, 255511.531500000506639 ], [ 356207.104599997401237, 255519.235800001770258 ], [ 356193.894299998879433, 255555.435699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302013900", "MAP": null, "PARCEL_NAM": "3G-1", "ACRE": null, "LONGITUDE": -64.91710624, "LATITUDE": 18.32938392, "OBJECTID_1": 24806, "PARCEL_NO_": "107302013900", "Tax_Legal_": "BAKKERO 3G OF 3 FRENCHMANS BAY QTR", "Name": "SILVEIRA, BRADFORD J. & KIMBERLY", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 269200, "Improved_V": 444900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.22322442700001, "SHAPE_Area": 609.76661189100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360271.776100002229214, 255546.592599999159575 ], [ 360253.027699999511242, 255570.292700000107288 ], [ 360254.634900003671646, 255570.939100001007318 ], [ 360293.226400002837181, 255584.342799998819828 ], [ 360271.776100002229214, 255546.592599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014300", "MAP": "D9-417-T64", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91773961, "LATITUDE": 18.3284774, "OBJECTID_1": 24810, "PARCEL_NO_": "107302014300", "Tax_Legal_": "3TA BAKKERO FRENCHMAN'S BAY QTR", "Name": "ORVILLE & JULIETTE KEAN FAMILY TRUST", "Address": "PO Box 6046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.44011392499999, "SHAPE_Area": 1352.5516011899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360185.987999998033047, 255488.684099998325109 ], [ 360214.181900002062321, 255492.081199999898672 ], [ 360228.335199996829033, 255439.845899999141693 ], [ 360188.81870000064373, 255440.366799999028444 ], [ 360194.414300002157688, 255446.112100001424551 ], [ 360202.427100002765656, 255452.088300000876188 ], [ 360207.218199998140335, 255457.61600000038743 ], [ 360205.517499998211861, 255467.945599999278784 ], [ 360202.270700000226498, 255470.452199999243021 ], [ 360179.64360000193119, 255476.177600000053644 ], [ 360178.016500003635883, 255477.853100001811981 ], [ 360178.794100001454353, 255481.236900001764297 ], [ 360185.987999998033047, 255488.684099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94837823, "LATITUDE": 18.32657678, "OBJECTID_1": 87267, "PARCEL_NO_": "507201013700", "Tax_Legal_": "96 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "SPRAT BAY HOMEOWNERS ASSOC. INC", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 257700, "Improved_V": 370800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 372.04101480200001, "SHAPE_Area": 6931.8660304599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356980.903399996459484, 255272.256700001657009 ], [ 356993.78830000013113, 255274.261999998241663 ], [ 356998.645900003612041, 255271.979699999094009 ], [ 357001.899899996817112, 255268.628800000995398 ], [ 357002.736800000071526, 255265.047100000083447 ], [ 357004.613799996674061, 255234.031700000166893 ], [ 357006.323499999940395, 255222.646600000560284 ], [ 357008.826999999582767, 255212.745700001716614 ], [ 357014.541299998760223, 255204.559900000691414 ], [ 356981.111299999058247, 255153.20160000026226 ], [ 356976.232100002467632, 255158.016800001263618 ], [ 356972.967299997806549, 255162.634199999272823 ], [ 356927.872000001370907, 255250.079999998211861 ], [ 356921.353200003504753, 255258.048200000077486 ], [ 356914.857799999415874, 255263.272399999201298 ], [ 356913.241499997675419, 255263.68129999935627 ], [ 356911.61089999973774, 255265.778900001198053 ], [ 356911.58219999819994, 255269.156199999153614 ], [ 356917.141800001263618, 255279.123100001364946 ], [ 356923.525799997150898, 255286.985800001770258 ], [ 356927.552000001072884, 255287.651999998837709 ], [ 356929.976300001144409, 255287.038600001484156 ], [ 356942.162699997425079, 255276.372600000351667 ], [ 356949.448299996554852, 255273.054699998348951 ], [ 356960.754600003361702, 255271.036299999803305 ], [ 356980.903399996459484, 255272.256700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010100", "MAP": "A9-508-T98", "PARCEL_NAM": "O", "ACRE": null, "LONGITUDE": -64.94966862, "LATITUDE": 18.32388129, "OBJECTID_1": 87159, "PARCEL_NO_": "507104010100", "Tax_Legal_": "WATER ISLAND SOUTHSIDE QUARTER", "Name": "GOVERNMENT OF THE U. S. V. I.", "Address": "000 USVI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12173300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1928.26733033, "SHAPE_Area": 68440.735035399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356741.078000001609325, 254838.185300000011921 ], [ 356697.75110000371933, 254812.71059999987483 ], [ 356676.89130000025034, 254800.296399999409914 ], [ 356664.184500001370907, 254777.394299998879433 ], [ 356700.923500001430511, 254724.28830000013113 ], [ 356701.016999997198582, 254713.312199998646975 ], [ 356705.948399998247623, 254702.375700000673532 ], [ 356647.376999996602535, 254667.910300001502037 ], [ 356636.96509999781847, 254659.592399999499321 ], [ 356625.779200002551079, 254647.468499999493361 ], [ 356616.171800002455711, 254639.368299998342991 ], [ 356608.150100000202656, 254634.447500001639128 ], [ 356584.860500000417233, 254623.280099999159575 ], [ 356562.069799996912479, 254648.213700000196695 ], [ 356545.722300000488758, 254674.044399999082088 ], [ 356556.967600002884865, 254679.2027000002563 ], [ 356602.778099998831749, 254697.098400000482798 ], [ 356613.19539999961853, 254704.782999999821186 ], [ 356619.577600002288818, 254712.856800001114607 ], [ 356627.536399997770786, 254725.165300000458956 ], [ 356641.764200001955032, 254758.84569999948144 ], [ 356644.130900003015995, 254764.986699998378754 ], [ 356646.46000000089407, 254775.560499999672174 ], [ 356649.368699997663498, 254812.736800000071526 ], [ 356653.299599997699261, 254824.590199999511242 ], [ 356660.489900000393391, 254832.459499999880791 ], [ 356690.15259999781847, 254852.756099998950958 ], [ 356697.332099996507168, 254861.8918999992311 ], [ 356701.273800000548363, 254872.478900000452995 ], [ 356705.064400002360344, 254900.796399999409914 ], [ 356704.160999998450279, 254912.188099998980761 ], [ 356702.489000000059605, 254919.140500001609325 ], [ 356687.81530000269413, 254937.807700000703335 ], [ 356686.99099999666214, 254939.911899998784065 ], [ 356688.522699996829033, 254949.423700001090765 ], [ 356691.722800001502037, 254952.405200000852346 ], [ 356792.784100003540516, 255015.927099999040365 ], [ 356808.046499997377396, 255022.807000000029802 ], [ 356822.529600001871586, 255026.51410000026226 ], [ 356831.390000000596046, 255027.642099998891354 ], [ 356865.256899997591972, 255027.708200000226498 ], [ 356871.694799996912479, 255029.238499999046326 ], [ 356878.915700003504753, 255033.519499998539686 ], [ 356885.292499996721745, 255042.226500000804663 ], [ 356888.406199999153614, 255055.339800000190735 ], [ 356888.256999999284744, 255072.859400000423193 ], [ 356880.662100002169609, 255112.482799999415874 ], [ 356953.237400002777576, 255112.232400000095367 ], [ 356953.401799999177456, 255187.594200000166893 ], [ 356967.344700001180172, 255160.054999999701977 ], [ 356975.497699998319149, 255149.567099999636412 ], [ 356981.989600002765656, 255144.765099998563528 ], [ 357010.331000000238419, 255130.853700000792742 ], [ 357014.369699999690056, 255130.042399998754263 ], [ 357018.408500000834465, 255129.231100000441074 ], [ 357030.221900001168251, 255067.688499998301268 ], [ 357034.444099999964237, 255045.347100000828505 ], [ 356972.299800001084805, 254957.023600000888109 ], [ 356989.265799999237061, 254858.581700000911951 ], [ 356978.783699996769428, 254858.495999999344349 ], [ 356951.430200003087521, 254851.094900000840425 ], [ 356944.169799998402596, 254851.457699999213219 ], [ 356930.433700002729893, 254854.722699999809265 ], [ 356911.078599996864796, 254854.9864999987185 ], [ 356903.00110000371933, 254856.609099999070168 ], [ 356877.154200002551079, 254861.674899999052286 ], [ 356874.697499997913837, 254866.087799999862909 ], [ 356873.477600000798702, 254914.629299998283386 ], [ 356828.282700002193451, 254919.114599999040365 ], [ 356791.231899999082088, 254914.167300000786781 ], [ 356774.649999998509884, 254872.868299998342991 ], [ 356766.752300001680851, 254853.383099999278784 ], [ 356741.078000001609325, 254838.185300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94574076000001, "LATITUDE": 18.32258176, "OBJECTID_1": 87343, "PARCEL_NO_": "507203020100", "Tax_Legal_": "91 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "SPRAT BAY HOMEOWNERS ASSOC. INC", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 337900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 528.74304459799998, "SHAPE_Area": 2530.7722956299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357195.230800002813339, 254694.471200000494719 ], [ 357183.641099996864796, 254712.308100000023842 ], [ 357189.280900001525879, 254759.738200001418591 ], [ 357231.734899997711182, 254793.01630000025034 ], [ 357297.415600001811981, 254844.849599998444319 ], [ 357304.625699996948242, 254850.396999999880791 ], [ 357333.384199999272823, 254787.515399999916553 ], [ 357328.569799996912479, 254784.731800001114607 ], [ 357313.044799998402596, 254808.669399999082088 ], [ 357298.394500002264977, 254824.592599999159575 ], [ 357296.767499998211861, 254826.268100000917912 ], [ 357292.725199997425079, 254827.501499999314547 ], [ 357285.470200002193451, 254827.231100000441074 ], [ 357275.835799999535084, 254822.297100000083447 ], [ 357267.022100001573563, 254815.681000001728535 ], [ 357259.835400000214577, 254807.389600001275539 ], [ 357254.286499999463558, 254796.156199999153614 ], [ 357244.704300001263618, 254785.100900001823902 ], [ 357218.237999998033047, 254768.207899998873472 ], [ 357208.630599997937679, 254760.107700001448393 ], [ 357200.650200001895428, 254750.332100000232458 ], [ 357195.891400001943111, 254741.004999998956919 ], [ 357192.774099998176098, 254728.313900001347065 ], [ 357192.102600000798702, 254712.476399999111891 ], [ 357192.993400000035763, 254702.562300000339746 ], [ 357195.230800002813339, 254694.471200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507102010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94968161, "LATITUDE": 18.32278698, "OBJECTID_1": 87151, "PARCEL_NO_": "507102010100", "Tax_Legal_": "107 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "NIGAMATOV, ILIAS N.", "Address": "86 Water Isle", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 133600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.796939420699999, "SHAPE_Area": 65.955452456800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356833.207999996840954, 254814.241399999707937 ], [ 356842.939499996602535, 254807.777100000530481 ], [ 356830.879000000655651, 254803.667700000107288 ], [ 356831.606100000441074, 254812.96169999986887 ], [ 356833.207999996840954, 254814.241399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010100", "MAP": "A9-508B-T98", "PARCEL_NAM": "AREA N", "ACRE": null, "LONGITUDE": -64.94992213, "LATITUDE": 18.3214634, "OBJECTID_1": 87159, "PARCEL_NO_": "507104010100", "Tax_Legal_": "WATER ISLAND SOUTHSIDE QUARTER", "Name": "GOVERNMENT OF THE U. S. V. I.", "Address": "000 USVI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12173300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 371.917334337, "SHAPE_Area": 7152.0283224100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356844.585500001907349, 254709.209899999201298 ], [ 356860.376599997282028, 254654.032699998468161 ], [ 356871.006099998950958, 254636.809999998658895 ], [ 356855.75450000166893, 254628.663600001484156 ], [ 356846.904899999499321, 254626.269099999219179 ], [ 356839.664200000464916, 254624.309999998658895 ], [ 356821.11540000140667, 254624.580400001257658 ], [ 356803.324400000274181, 254630.556499999016523 ], [ 356788.787399999797344, 254633.181800000369549 ], [ 356768.665600001811981, 254628.795200001448393 ], [ 356739.724600002169609, 254618.425799999386072 ], [ 356757.244099996984005, 254644.322599999606609 ], [ 356767.447499997913837, 254677.125599998980761 ], [ 356769.772900000214577, 254688.121500000357628 ], [ 356773.754100002348423, 254694.064699999988079 ], [ 356797.092200003564358, 254699.533100001513958 ], [ 356822.017800003290176, 254707.969799999147654 ], [ 356844.585500001907349, 254709.209899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020400", "MAP": "A9-508B-T98", "PARCEL_NAM": "97", "ACRE": "0.84", "LONGITUDE": -64.95081467, "LATITUDE": 18.32154582, "OBJECTID_1": 87197, "PARCEL_NO_": "507104020400", "Tax_Legal_": "97 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "EMCO LLC", "Address": "5600 33rd St NE", "City": "Washington", "State": "District of Columbia", "Zip": 200151631, "Country": "United States", "Land_Value": 111200, "Improved_V": 411500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.78982091, "SHAPE_Area": 3378.2769172500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356682.320000000298023, 254636.321100000292063 ], [ 356672.30799999833107, 254675.713700000196695 ], [ 356710.827600002288818, 254697.560499999672174 ], [ 356716.498700000345707, 254694.440499998629093 ], [ 356723.769900001585484, 254692.811299998313189 ], [ 356738.29619999974966, 254691.452500000596046 ], [ 356757.644100002944469, 254692.033100001513958 ], [ 356761.803300000727177, 254677.079500000923872 ], [ 356753.153200000524521, 254651.255199998617172 ], [ 356712.803400002419949, 254654.9358000010252 ], [ 356682.320000000298023, 254636.321100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010100", "MAP": "A9-508-T98", "PARCEL_NAM": "P", "ACRE": null, "LONGITUDE": -64.95437399, "LATITUDE": 18.32081417, "OBJECTID_1": 87159, "PARCEL_NO_": "507104010100", "Tax_Legal_": "WATER ISLAND SOUTHSIDE QUARTER", "Name": "GOVERNMENT OF THE U. S. V. I.", "Address": "000 USVI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12173300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 849.85296342799995, "SHAPE_Area": 18987.213088299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356280.253700003027916, 254539.480700001120567 ], [ 356289.986100003123283, 254528.784800000488758 ], [ 356263.365900002419949, 254499.692200001329184 ], [ 356257.0016999989748, 254489.507599998265505 ], [ 356253.142800003290176, 254469.210999999195337 ], [ 356254.843500003218651, 254458.881400000303984 ], [ 356258.126299999654293, 254452.153200000524521 ], [ 356254.0658999979496, 254455.497499998658895 ], [ 356249.157899998128414, 254463.690000001341105 ], [ 356221.097000002861023, 254444.673000000417233 ], [ 356219.421499997377396, 254452.047499999403954 ], [ 356219.238099999725819, 254473.577599998563528 ], [ 356221.552699998021126, 254485.839999999850988 ], [ 356221.459200002253056, 254496.816100001335144 ], [ 356224.551399998366833, 254512.46229999884963 ], [ 356226.133400000631809, 254516.063799999654293 ], [ 356226.111900001764297, 254518.596799999475479 ], [ 356230.07150000333786, 254527.072900000959635 ], [ 356230.847199998795986, 254530.667899999767542 ], [ 356246.721699997782707, 254560.350900001823902 ], [ 356248.291199997067451, 254565.429999999701977 ], [ 356252.277800001204014, 254570.739900000393391 ], [ 356253.062600001692772, 254573.279500000178814 ], [ 356259.426700003445148, 254583.464099999517202 ], [ 356262.619599997997284, 254587.289900001138449 ], [ 356264.198100000619888, 254591.3136 ], [ 356273.760499998927116, 254604.690699998289347 ], [ 356275.331799998879433, 254609.558800000697374 ], [ 356280.113899998366833, 254616.141800001263618 ], [ 356299.361100003123283, 254628.542700000107288 ], [ 356307.363099999725819, 254635.785399999469519 ], [ 356318.610200002789497, 254640.732599999755621 ], [ 356321.009300000965595, 254643.074299998581409 ], [ 356332.252700001001358, 254648.44370000064373 ], [ 356362.025200001895428, 254655.864500001072884 ], [ 356384.585699997842312, 254657.949000000953674 ], [ 356414.419299997389317, 254658.193199999630451 ], [ 356432.176100000739098, 254656.227600000798702 ], [ 356437.847300000488758, 254653.107599999755621 ], [ 356446.777900002896786, 254646.003499999642372 ], [ 356454.101199999451637, 254638.252999998629093 ], [ 356461.401199996471405, 254633.246500000357628 ], [ 356466.239100001752377, 254633.286100000143051 ], [ 356482.334700003266335, 254637.006400000303984 ], [ 356493.707599997520447, 254627.178100001066923 ], [ 356460.184199996292591, 254586.795899998396635 ], [ 356432.892300002276897, 254563.714600000530481 ], [ 356402.044699996709824, 254591.879799999296665 ], [ 356366.148500002920628, 254601.044799998402596 ], [ 356364.728900000452995, 254600.027300000190735 ], [ 356280.253700003027916, 254539.480700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020500", "MAP": "A9-508B-T98", "PARCEL_NAM": "96", "ACRE": "0.59", "LONGITUDE": -64.95082086, "LATITUDE": 18.3212183, "OBJECTID_1": 87198, "PARCEL_NO_": "507104020500", "Tax_Legal_": "96 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "EMCO LLC", "Address": "5600 33rd St NE", "City": "Washington", "State": "District of Columbia", "Zip": 200151631, "Country": "United States", "Land_Value": 72000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.36215255900001, "SHAPE_Area": 2026.3187763000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356693.81700000166893, 254611.928399998694658 ], [ 356682.320000000298023, 254636.321100000292063 ], [ 356712.803400002419949, 254654.9358000010252 ], [ 356753.153200000524521, 254651.255199998617172 ], [ 356752.38289999961853, 254647.027100000530481 ], [ 356734.057099997997284, 254621.123700000345707 ], [ 356724.424500003457069, 254615.97859999909997 ], [ 356713.164899997413158, 254612.508900001645088 ], [ 356703.498099997639656, 254611.374299999326468 ], [ 356693.81700000166893, 254611.928399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012000", "MAP": "A9-508B-T98", "PARCEL_NAM": "AREA R", "ACRE": null, "LONGITUDE": -64.95616437, "LATITUDE": 18.31958821, "OBJECTID_1": 87179, "PARCEL_NO_": "507104012000", "Tax_Legal_": "TRACT \"E\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 425500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 626.26911811599996, "SHAPE_Area": 18688.258920799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356126.396300002932549, 254391.757800001651049 ], [ 356102.007399998605251, 254414.989599999040365 ], [ 356087.578199997544289, 254404.950100000947714 ], [ 356101.962399996817112, 254420.266499999910593 ], [ 356083.131300002336502, 254453.676300000399351 ], [ 356073.489699997007847, 254449.586599998176098 ], [ 356053.573600001633167, 254515.706999998539686 ], [ 356059.172799997031689, 254521.030099999159575 ], [ 356068.10700000077486, 254513.503899998962879 ], [ 356075.387199997901917, 254510.819299999624491 ], [ 356084.247599996626377, 254511.947299998253584 ], [ 356093.946699999272823, 254509.282400000840425 ], [ 356110.080200001597404, 254508.570099998265505 ], [ 356129.361599996685982, 254516.960499998182058 ], [ 356139.780699998140335, 254524.434099998325109 ], [ 356141.366300001740456, 254527.613499999046326 ], [ 356214.116099998354912, 254506.8885000012815 ], [ 356211.769100002944469, 254498.425500001758337 ], [ 356211.894900001585484, 254483.649999998509884 ], [ 356210.348800003528595, 254475.826900001615286 ], [ 356210.575400002300739, 254449.230900000780821 ], [ 356214.743600003421307, 254433.221900001168251 ], [ 356222.106600001454353, 254420.8277000002563 ], [ 356227.050499998033047, 254408.413600001484156 ], [ 356237.662100002169609, 254393.301699999719858 ], [ 356239.306999996304512, 254389.515500001609325 ], [ 356240.986199997365475, 254381.718800000846386 ], [ 356239.420299999415874, 254376.217500001192093 ], [ 356219.298500001430511, 254371.831000000238419 ], [ 356192.776500001549721, 254361.4814000017941 ], [ 356126.396300002932549, 254391.757800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95370014, "LATITUDE": 18.3198584, "OBJECTID_1": 87205, "PARCEL_NO_": "507104021200", "Tax_Legal_": "88 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "FORREST L TUCKER MARY L TUCKER JOINT LIVING TRUST", "Address": "PO Box 510", "City": "Wirtz", "State": "Virginia", "Zip": 24184, "Country": "United States", "Land_Value": 287200, "Improved_V": 634500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.832220367700003, "SHAPE_Area": 98.549200770699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356409.376800000667572, 254492.865600001066923 ], [ 356414.270400002598763, 254486.361800000071526 ], [ 356417.601700000464916, 254473.934500001370907 ], [ 356418.487199999392033, 254464.6537000015378 ], [ 356406.986599996685982, 254489.468600001186132 ], [ 356409.376800000667572, 254492.865600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012000", "MAP": "A9-508B-T98", "PARCEL_NAM": "AREA S", "ACRE": null, "LONGITUDE": -64.95448189, "LATITUDE": 18.31853852, "OBJECTID_1": 87179, "PARCEL_NO_": "507104012000", "Tax_Legal_": "TRACT \"E\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 425500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 580.35658973800003, "SHAPE_Area": 14052.668611700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356269.396999999880791, 254265.005499999970198 ], [ 356305.028300002217293, 254341.924100000411272 ], [ 356300.642499998211861, 254383.473600000143051 ], [ 356302.240800000727177, 254385.175400000065565 ], [ 356303.808399997651577, 254390.465599998831749 ], [ 356302.127499997615814, 254398.473400000482798 ], [ 356285.011500000953674, 254419.864900000393391 ], [ 356333.35249999910593, 254424.693500000983477 ], [ 356398.814900003373623, 254407.497400000691414 ], [ 356393.258799999952316, 254397.108300000429153 ], [ 356376.63910000026226, 254360.241999998688698 ], [ 356373.494800001382828, 254350.717099998146296 ], [ 356368.842100001871586, 254328.9364 ], [ 356364.911200001835823, 254317.083000000566244 ], [ 356357.771300002932549, 254303.30350000038743 ], [ 356362.643399998545647, 254299.332499999552965 ], [ 356360.287399999797344, 254291.925000000745058 ], [ 356362.749399997293949, 254286.878899998962879 ], [ 356370.074600003659725, 254278.917300000786781 ], [ 356375.8158999979496, 254267.565200001001358 ], [ 356353.217600002884865, 254269.913400001823902 ], [ 356322.924699999392033, 254228.924400001764297 ], [ 356310.776100002229214, 254235.157800000160933 ], [ 356299.419399999082088, 254243.086399998515844 ], [ 356269.396999999880791, 254265.005499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104023000", "MAP": "D9-7109-T002", "PARCEL_NAM": "40 REM", "ACRE": null, "LONGITUDE": -64.95416562, "LATITUDE": 18.31678303, "OBJECTID_1": 87223, "PARCEL_NO_": "507104023000", "Tax_Legal_": "40 REM WATER ISLAND No.10 SOUTHSIDE QUARTER", "Name": "BULLOCK, WILLIAM H. & JAN MARIE (TRUSTEES)", "Address": "2244 Lookout Lndg", "City": "Fleming Island", "State": "Florida", "Zip": 32003, "Country": "United States", "Land_Value": 121500, "Improved_V": 313500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.56538513300001, "SHAPE_Area": 507.55867312800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356362.573600001633167, 254118.213700000196695 ], [ 356356.91499999910593, 254119.856100000441074 ], [ 356347.079199999570847, 254138.563000001013279 ], [ 356375.201300002634525, 254150.403299998492002 ], [ 356386.41950000077486, 254158.727699998766184 ], [ 356391.205200001597404, 254164.888599999248981 ], [ 356391.988200001418591, 254167.639199998229742 ], [ 356393.593599997460842, 254168.496800001710653 ], [ 356395.209799997508526, 254168.087799999862909 ], [ 356395.233199998736382, 254165.343800000846386 ], [ 356392.862800002098083, 254159.624899998307228 ], [ 356390.470799997448921, 254156.438900001347065 ], [ 356384.866200000047684, 254151.7489 ], [ 356375.242600001394749, 254145.548500001430511 ], [ 356366.457699999213219, 254135.55519999936223 ], [ 356363.306199997663498, 254126.874499998986721 ], [ 356362.573600001633167, 254118.213700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95805406, "LATITUDE": 18.3141838, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 425.812282805, "SHAPE_Area": 7025.0182020599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355932.236100003123283, 253803.328600000590086 ], [ 355923.611959149129689, 253808.235739394644042 ], [ 355915.189499996602535, 253813.481499999761581 ], [ 355914.391336759319529, 253814.006151699402835 ], [ 355913.69175228610402, 253814.656463566294406 ], [ 355913.110306707792915, 253815.414253114053281 ], [ 355912.663257033855189, 253816.258332819037605 ], [ 355912.363102612784132, 253817.1651025157189 ], [ 355912.218235654348973, 253818.109209248912521 ], [ 355912.23270658677211, 253819.06425613333704 ], [ 355912.406110807904042, 253820.003540400939528 ], [ 355912.733599998056889, 253820.900800000876188 ], [ 355927.763999998569489, 253855.009899999946356 ], [ 355934.000500001013279, 253880.181099999696016 ], [ 355940.310699999332428, 253896.697999998927116 ], [ 355962.668300002813339, 253926.477299999445677 ], [ 355975.346513536002021, 253908.533238996111322 ], [ 355988.483800001442432, 253890.922499999403954 ], [ 356002.01799999922514, 253866.528000000864267 ], [ 356002.903599999845028, 253864.900699999183416 ], [ 356003.073385820491239, 253864.345586744631873 ], [ 356003.158164135355037, 253863.77131277899025 ], [ 356003.156024563068058, 253863.190818702802062 ], [ 356003.067015316453762, 253862.617185279523255 ], [ 356002.89314211596502, 253862.063338675827254 ], [ 356002.638322993414477, 253861.541759185201954 ], [ 356002.308300003409386, 253861.0641999989748 ], [ 355995.830504240060691, 253858.190639128675684 ], [ 355989.079099997878075, 253856.037099998444319 ], [ 355984.404326833959203, 253853.400317332125269 ], [ 355979.942000554699916, 253850.418074695946416 ], [ 355975.717600002884865, 253847.107400000095367 ], [ 355975.303885869681835, 253845.766365859453799 ], [ 355975.121663633559365, 253844.374846184044145 ], [ 355975.17612714873394, 253842.972503260272788 ], [ 355975.465724049485289, 253841.599307867960306 ], [ 355975.982199996709824, 253840.294399999082088 ], [ 355988.483800001442432, 253819.260000001639128 ], [ 355988.6620160145103, 253819.066037123353453 ], [ 355988.80609029950574, 253818.845526021934347 ], [ 355988.912138795945793, 253818.604411398031516 ], [ 355988.977302570245229, 253818.349193397152703 ], [ 355988.999824889528099, 253818.086752374074422 ], [ 355988.979098580428399, 253817.82416340711643 ], [ 355988.915682398132049, 253817.568505562987411 ], [ 355988.811285962641705, 253817.326671054033795 ], [ 355988.668723670067266, 253817.105179432983277 ], [ 355988.491838819580153, 253816.91000183406868 ], [ 355988.285400003194809, 253816.746399998664856 ], [ 355965.954999998211861, 253820.77760000154376 ], [ 355965.973600000143051, 253818.592399999499321 ], [ 355965.941299997270107, 253816.644999999552965 ], [ 355992.240699999034405, 253811.383099999278784 ], [ 355992.64580000191927, 253811.302099999040365 ], [ 355992.655599996447563, 253810.155900001525879 ], [ 355971.133299998939037, 253780.848900001496077 ], [ 355956.535199999809265, 253790.650800000876188 ], [ 355941.972999997437, 253796.231100000441074 ], [ 355932.236100003123283, 253803.328600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.96007826, "LATITUDE": 18.31416866, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.99881877600001, "SHAPE_Area": 4566.2657561200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355786.707500003278255, 253828.584800001233816 ], [ 355781.948885980120394, 253823.611532824317692 ], [ 355776.785599999129772, 253819.059799998998642 ], [ 355776.45240600372199, 253818.805538796033943 ], [ 355776.08068936469499, 253818.611905797355575 ], [ 355775.681368316989392, 253818.484588481951505 ], [ 355775.266171905270312, 253818.427326473552966 ], [ 355774.847295472689439, 253818.441801698674681 ], [ 355774.437042453791946, 253818.527588984201429 ], [ 355774.047462992020883, 253818.682168545899913 ], [ 355773.689999997615814, 253818.901000000536442 ], [ 355771.210208573553246, 253819.894571285462007 ], [ 355768.927500002086163, 253821.282299999147654 ], [ 355766.314394612389151, 253822.560847531596664 ], [ 355763.547871858172584, 253823.460489360673819 ], [ 355760.682558174128644, 253823.96346158918459 ], [ 355757.775030673656147, 253824.059832768136403 ], [ 355754.882700003683567, 253823.747699998319149 ], [ 355749.01799999922514, 253823.571699999272823 ], [ 355712.019299998879433, 253812.503100000321865 ], [ 355715.174400001764297, 253820.761599998921156 ], [ 355675.470899999141693, 253843.234700001776218 ], [ 355676.253799997270107, 253845.985300000756979 ], [ 355678.656599998474121, 253847.904800001531839 ], [ 355678.613399997353554, 253852.97069999948144 ], [ 355680.22070000320673, 253853.617199998348951 ], [ 355685.090899996459484, 253849.857400000095367 ], [ 355685.065700002014637, 253852.8125 ], [ 355693.058700002729893, 253861.110500000417233 ], [ 355693.827299997210503, 253865.549800001084805 ], [ 355721.445100001990795, 253841.922200001776218 ], [ 355750.124099999666214, 253885.014600001275539 ], [ 355750.647299997508526, 253885.455200001597404 ], [ 355751.83653151645558, 253886.258588919619797 ], [ 355753.12822091137059, 253886.884083816694329 ], [ 355754.495938757725526, 253887.318886360386387 ], [ 355755.911700002849102, 253887.554099999368191 ], [ 355756.672110765299294, 253887.486530264373869 ], [ 355757.413122947269585, 253887.30297879196587 ], [ 355758.117154291481711, 253887.007800772582414 ], [ 355758.767499998211861, 253886.607999999076128 ], [ 355761.813160592340864, 253883.186670115886955 ], [ 355765.196900002658367, 253880.099300000816584 ], [ 355768.519504944270011, 253876.522488132904982 ], [ 355772.300278682727367, 253873.433955038461136 ], [ 355776.468099996447563, 253870.891800001263618 ], [ 355779.551688569539692, 253869.496888081193902 ], [ 355782.765077791525982, 253868.43461341742659 ], [ 355786.072499997913837, 253867.71680000051856 ], [ 355787.1184050218435, 253867.400925357593223 ], [ 355788.103689250245225, 253866.928792856604559 ], [ 355789.005165827809833, 253866.311513269058196 ], [ 355789.80162015859969, 253865.563613136589993 ], [ 355790.474309152341448, 253864.702692915627267 ], [ 355791.00740230869269, 253863.749012782762293 ], [ 355791.388354259019252, 253862.725015848875046 ], [ 355791.608199998736382, 253861.654800001531839 ], [ 355791.254420487384778, 253859.857504780695308 ], [ 355791.181340545415878, 253858.027179843571503 ], [ 355791.390699997544289, 253856.207400001585484 ], [ 355792.544095461780671, 253851.742849817150272 ], [ 355793.10293681366602, 253847.165708155633183 ], [ 355793.057599999010563, 253842.554800000041723 ], [ 355791.655654315138236, 253837.594763557543047 ], [ 355789.522737688908819, 253832.902420872153016 ], [ 355786.707500003278255, 253828.584800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95955955, "LATITUDE": 18.31446551, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.246661161999995, "SHAPE_Area": 175.04653647399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355808.376999996602535, 253871.129900000989437 ], [ 355801.153800003230572, 253871.288600001484156 ], [ 355800.560434128390625, 253871.12684025024646 ], [ 355799.9482027090271, 253871.06834266288206 ], [ 355799.33494098810479, 253871.114811364066554 ], [ 355798.738514222728554, 253871.264892649021931 ], [ 355798.1762972419383, 253871.514214419119526 ], [ 355797.664668291050475, 253871.855513547692681 ], [ 355797.218531908350997, 253872.278847466252046 ], [ 355796.850884732848499, 253872.771883806562982 ], [ 355796.572436892194673, 253873.320259661792079 ], [ 355796.39130000025034, 253873.907999999821186 ], [ 355795.440645875933114, 253875.099203154648421 ], [ 355794.696099996566772, 253876.429000001400709 ], [ 355791.126460078230593, 253884.699819291010499 ], [ 355788.209100000560284, 253893.222600001841784 ], [ 355795.570002568769269, 253887.14067943347618 ], [ 355802.51435459026834, 253880.58715981268324 ], [ 355809.012000001966953, 253873.590500000864267 ], [ 355809.178995506314095, 253873.416473147051875 ], [ 355809.314230032148771, 253873.216762187541462 ], [ 355809.413824969786219, 253872.997094955760986 ], [ 355809.474923875066452, 253872.763771643367363 ], [ 355809.495774393668398, 253872.523484106874093 ], [ 355809.475778519874439, 253872.283123940957012 ], [ 355809.415509747632314, 253872.049584823427722 ], [ 355809.316696622583549, 253871.829564800136723 ], [ 355809.182173166016582, 253871.629374181095045 ], [ 355809.01579759363085, 253871.454754556645639 ], [ 355808.822341659513768, 253871.310714125313098 ], [ 355808.607353798986878, 253871.201384055486415 ], [ 355808.376999996602535, 253871.129900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95758654, "LATITUDE": 18.31402468, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.923049069, "SHAPE_Area": 1515.31767266 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356018.183399997651577, 253810.793299999088049 ], [ 356013.357148246956058, 253811.098677335452521 ], [ 356008.611771336814854, 253812.02999857958639 ], [ 356004.028099998831749, 253813.571400001645088 ], [ 355999.709380326443352, 253816.547181772912154 ], [ 355995.710462575196289, 253819.940597983368207 ], [ 355992.071572256449144, 253823.71751392193255 ], [ 355988.82931332977023, 253827.83993721549632 ], [ 355986.01630000025034, 253832.266399998217821 ], [ 355982.945299997925758, 253837.448399998247623 ], [ 355982.47191944468068, 253839.001142442924902 ], [ 355982.250620999897365, 253840.609285858809017 ], [ 355982.286999035801273, 253842.232176762772724 ], [ 355982.58013392414432, 253843.828788858721964 ], [ 355983.122615284752101, 253845.35876017253031 ], [ 355983.900729317800142, 253846.783413393248338 ], [ 355984.894805485557299, 253848.066733626212226 ], [ 355986.07971377891954, 253849.176278841157909 ], [ 355987.425499998033047, 253850.083999998867512 ], [ 355992.164462867251132, 253852.379898068669718 ], [ 355997.108460945484694, 253854.192575653200038 ], [ 356002.208365861850325, 253855.50402022592607 ], [ 356007.413500003516674, 253856.301199998706579 ], [ 356016.60955314419698, 253845.915967930719489 ], [ 356025.375600002706051, 253835.165300000458956 ], [ 356028.686300002038479, 253829.677299998700619 ], [ 356030.367403869633563, 253826.278171230107546 ], [ 356031.796400003135204, 253822.765599999576807 ], [ 356033.330799996852875, 253817.804800000041723 ], [ 356033.400610989890993, 253816.841951417794917 ], [ 356033.327001476020087, 253815.879385780252051 ], [ 356033.111596124887001, 253814.938348319876241 ], [ 356032.759149247896858, 253814.039609110768652 ], [ 356032.277439863479231, 253813.203004642651649 ], [ 356031.677100002765656, 253812.447000000625849 ], [ 356027.282734355831053, 253811.200116919499123 ], [ 356022.748815234517679, 253810.644469316903269 ], [ 356018.183399997651577, 253810.793299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95682232, "LATITUDE": 18.31389732, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.905945042199999, "SHAPE_Area": 32.764845545900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356091.8175999969244, 253812.656300000846386 ], [ 356089.398699998855591, 253812.636500000953674 ], [ 356085.280799999833107, 253822.735199999064207 ], [ 356086.071000002324581, 253824.641600001603365 ], [ 356087.681800000369549, 253824.865800000727177 ], [ 356091.8175999969244, 253812.656300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95724668, "LATITUDE": 18.31389592, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.178388191500002, "SHAPE_Area": 34.485378493399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356043.543700002133846, 253814.920800000429153 ], [ 356036.717500001192093, 253821.032699998468161 ], [ 356049.973099999129772, 253818.889600001275539 ], [ 356046.233300000429153, 253816.179299999028444 ], [ 356043.543700002133846, 253814.920800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95760087, "LATITUDE": 18.3136011, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.00377435199999, "SHAPE_Area": 2522.3906552100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356019.493299998342991, 253807.095800001174212 ], [ 356024.565390936040785, 253807.397361103008734 ], [ 356029.563898873922881, 253808.309481694275746 ], [ 356034.415600001811981, 253809.818799998611212 ], [ 356035.247799434815533, 253809.756738982134266 ], [ 356036.057252178725321, 253809.553776617423864 ], [ 356036.820280946325511, 253809.215849752799841 ], [ 356037.514566397469025, 253808.75284308072878 ], [ 356038.119800001382828, 253808.178300000727177 ], [ 356038.637808144441806, 253805.261780516593717 ], [ 356038.685500003397465, 253802.300000000745058 ], [ 356036.125159796501976, 253792.268606593570439 ], [ 356033.181599996984005, 253782.3429000005126 ], [ 356031.422100000083447, 253778.097899999469519 ], [ 356030.515118495270144, 253774.388646451901877 ], [ 356029.010917942854576, 253770.878866112849209 ], [ 356026.950397343374789, 253767.663989413937088 ], [ 356024.38958196080057, 253764.831428398436401 ], [ 356021.398100003600121, 253762.458200000226498 ], [ 356017.350173192564398, 253760.75097120978171 ], [ 356013.108978752861731, 253759.605278696253663 ], [ 356008.752016079903115, 253759.04205771224224 ], [ 356004.358900003135204, 253759.071600001305342 ], [ 356001.080786519974936, 253759.138285889290273 ], [ 355997.85382857627701, 253759.718990156514337 ], [ 355994.758120767131913, 253760.799299453297863 ], [ 355991.87049999833107, 253762.352400001138449 ], [ 355968.798799999058247, 253777.274900000542402 ], [ 355971.133299998939037, 253780.848900001496077 ], [ 355992.655599996447563, 253810.155900001525879 ], [ 355992.64580000191927, 253811.302099999040365 ], [ 355999.235306415357627, 253809.57033051920007 ], [ 356005.92689916753443, 253808.288454260560684 ], [ 356012.689899181597866, 253807.462348266417393 ], [ 356019.493299998342991, 253807.095800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "D9-9098-T016", "PARCEL_NAM": "12", "ACRE": ".112", "LONGITUDE": -64.95635972, "LATITUDE": 18.31358979, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.674778101499996, "SHAPE_Area": 480.32821166999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356141.360500000417233, 253771.054099999368191 ], [ 356140.577299997210503, 253768.19370000064373 ], [ 356133.571699999272823, 253769.306600000709295 ], [ 356125.891500003635883, 253770.787999998778105 ], [ 356126.820000000298023, 253774.101500000804663 ], [ 356134.645700000226498, 253802.029899999499321 ], [ 356149.180900000035763, 253799.615800000727177 ], [ 356141.360500000417233, 253771.054099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-806-T014", "PARCEL_NAM": "B-17", "ACRE": ".37", "LONGITUDE": -64.95634132000001, "LATITUDE": 18.3105846, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.37392461299999, "SHAPE_Area": 2145.8512029399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356194.780000001192093, 253463.716899998486042 ], [ 356197.797700002789497, 253454.679299999028444 ], [ 356173.124600000679493, 253450.029699999839067 ], [ 356036.290700003504753, 253420.834300000220537 ], [ 356061.214400000870228, 253429.482099998742342 ], [ 356171.303400002419949, 253474.501600001007318 ], [ 356183.367499999701977, 253478.188999999314547 ], [ 356186.596400000154972, 253477.793200001120567 ], [ 356189.031499996781349, 253475.91330000013113 ], [ 356191.509800001978874, 253468.967500001192093 ], [ 356194.780000001192093, 253463.716899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-806-T014", "PARCEL_NAM": "B-18", "ACRE": ".037", "LONGITUDE": -64.95787931, "LATITUDE": 18.31024878, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.417973588, "SHAPE_Area": 381.520909023 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356013.737300001084805, 253417.905499998480082 ], [ 355955.803300000727177, 253403.288100000470877 ], [ 355957.394299998879433, 253405.834199998527765 ], [ 355971.001000002026558, 253417.766800001263618 ], [ 355974.991200000047684, 253422.654699999839067 ], [ 356000.031800001859665, 253417.582299999892712 ], [ 356013.737300001084805, 253417.905499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801070500", "MAP": "G9-3072-T80", "PARCEL_NAM": "8-7", "ACRE": null, "LONGITUDE": -64.9479917, "LATITUDE": 18.36110877, "OBJECTID_1": 4007, "PARCEL_NO_": "102801070500", "Tax_Legal_": "ST PETER 7-3 & 8-7 LT. NORTHSIDE", "Name": "CHONGASING, ELTON & BEVERLY (TRUSTEES)", "Address": "PO BOX 301763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.76561362300001, "SHAPE_Area": 1251.25106611 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356998.016500003635883, 259070.080600000917912 ], [ 356998.375100001692772, 259036.208999998867512 ], [ 356991.888199999928474, 259036.40260000154376 ], [ 356971.80460000038147, 259033.96000000089407 ], [ 356967.291000001132488, 259032.817299999296665 ], [ 356962.835299998521805, 259031.169300001114607 ], [ 356959.23139999806881, 259065.699299998581409 ], [ 356966.303400002419949, 259066.599500000476837 ], [ 356971.152400001883507, 259067.21680000051856 ], [ 356984.038999997079372, 259069.011100001633167 ], [ 356998.016500003635883, 259070.080600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801070500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94795381, "LATITUDE": 18.36087081, "OBJECTID_1": 4007, "PARCEL_NO_": "102801070500", "Tax_Legal_": "ST PETER 7-3 & 8-7 LT. NORTHSIDE", "Name": "CHONGASING, ELTON & BEVERLY (TRUSTEES)", "Address": "PO BOX 301763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.848404410100002, "SHAPE_Area": 181.687678597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356967.464900001883507, 259026.867499999701977 ], [ 356972.89019999653101, 259028.532000001519918 ], [ 356992.431000001728535, 259029.888999998569489 ], [ 356997.387599997222424, 259030.233199998736382 ], [ 356987.597699999809265, 259018.042500000447035 ], [ 356967.464900001883507, 259026.867499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801071200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94769315000001, "LATITUDE": 18.36149493, "OBJECTID_1": 4014, "PARCEL_NO_": "102801071200", "Tax_Legal_": "ST PETER 7-5 LT. NORTHSIDE", "Name": "GUMBS, CLEOPHAS", "Address": "KIRWIN TERRACE BLDG.12,APT.71", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81700, "Improved_V": 277900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.936029359, "SHAPE_Area": 1535.1599894599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356990.4070999994874, 259111.572799999266863 ], [ 356990.932499997317791, 259111.708399999886751 ], [ 357007.832699999213219, 259115.64640000090003 ], [ 357026.374300003051758, 259116.220300000160933 ], [ 357028.304300002753735, 259115.857799999415874 ], [ 357029.543300002813339, 259071.327199999243021 ], [ 357017.640299998223782, 259073.251400001347065 ], [ 357000.908600002527237, 259076.537399999797344 ], [ 356991.484300002455711, 259076.151799999177456 ], [ 356990.4070999994874, 259111.572799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801071000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9472702, "LATITUDE": 18.36148544, "OBJECTID_1": 4012, "PARCEL_NO_": "102801071000", "Tax_Legal_": "ST PETER 7-9 GT. NORTHSIDE", "Name": "WILLIAMS, GLORIA J.", "Address": "PO Box 303208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.925628284, "SHAPE_Area": 2126.5480185299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357028.304300002753735, 259115.857799999415874 ], [ 357048.988799996674061, 259111.97239999845624 ], [ 357061.078100003302097, 259112.704700000584126 ], [ 357068.322400003671646, 259114.241599999368191 ], [ 357075.579199999570847, 259114.300999999046326 ], [ 357082.042199999094009, 259112.876299999654293 ], [ 357082.578100003302097, 259112.636100001633167 ], [ 357084.501000002026558, 259077.706900000572205 ], [ 357083.253899998962879, 259077.569400001317263 ], [ 357064.790600001811981, 259075.533399999141693 ], [ 357041.35530000180006, 259072.949099998921156 ], [ 357030.382399998605251, 259071.191599998623133 ], [ 357029.543300002813339, 259071.327199999243021 ], [ 357028.304300002753735, 259115.857799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801070600", "MAP": "G9-3066-T80", "PARCEL_NAM": "7-6", "ACRE": ".49", "LONGITUDE": -64.94752874, "LATITUDE": 18.36108302, "OBJECTID_1": 4008, "PARCEL_NO_": "102801070600", "Tax_Legal_": "ST.PETER ESTATE 7-6 No.2 LITTLE NORTHSIDE QTR.", "Name": "BRUZZESE, JAMES J. & KAYLA D.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79600, "Improved_V": 318700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.200668896, "SHAPE_Area": 2124.5421420100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356998.016500003635883, 259070.080600000917912 ], [ 357002.573399998247623, 259070.429299999028444 ], [ 357016.864200003445148, 259067.199299998581409 ], [ 357031.50789999961853, 259064.952799998223782 ], [ 357042.518799997866154, 259065.854699999094009 ], [ 357057.940200001001358, 259067.182399999350309 ], [ 357058.077799998223782, 259032.216499999165535 ], [ 357053.295299999415874, 259031.35530000180006 ], [ 357036.545400001108646, 259028.338799998164177 ], [ 357022.556400001049042, 259029.074799999594688 ], [ 357010.071999996900558, 259035.8597999997437 ], [ 356998.375100001692772, 259036.208999998867512 ], [ 356998.016500003635883, 259070.080600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801013000", "MAP": "F9-2761-T71", "PARCEL_NAM": "7C", "ACRE": ".503", "LONGITUDE": -64.9476921, "LATITUDE": 18.36063986, "OBJECTID_1": 3712, "PARCEL_NO_": "102801013000", "Tax_Legal_": "ST PETER 7C LITTLE NORTHSIDE QTR", "Name": "TURBE, JUDITH LOUISE", "Address": "613 Windtree Pass", "City": "Mount Juliet", "State": "Tennessee", "Zip": 37122, "Country": "United States", "Land_Value": 71200, "Improved_V": 188700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.94828841399999, "SHAPE_Area": 1540.1867850900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356987.597699999809265, 259018.042500000447035 ], [ 356997.387599997222424, 259030.233199998736382 ], [ 357030.934600003063679, 259009.918200001120567 ], [ 357030.834499999880791, 258966.622800000011921 ], [ 357030.064599998295307, 258967.007399998605251 ], [ 357004.9628000035882, 258979.256400000303984 ], [ 357004.928599998354912, 258983.267000000923872 ], [ 357020.89299999922514, 259002.396000001579523 ], [ 357018.409400001168251, 259009.975099999457598 ], [ 357015.227300003170967, 259004.882800001651049 ], [ 357012.027199998497963, 259001.901299998164177 ], [ 356997.666400000452995, 258983.840799998492002 ], [ 356987.597699999809265, 259018.042500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801071300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94811138, "LATITUDE": 18.36144774, "OBJECTID_1": 4015, "PARCEL_NO_": "102801071300", "Tax_Legal_": "ST PETER 7-4 & 8-8 LT. NORTHSIDE", "Name": "BERRY, CLELY & BEVERLY CHONGASING (TRUSTEES)", "Address": "P.O. BOX 5603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.98485665300001, "SHAPE_Area": 1633.63006789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356964.931100003421307, 259072.79619999974966 ], [ 356943.413699999451637, 259067.749400001019239 ], [ 356938.902500003576279, 259097.746899999678135 ], [ 356957.139300003647804, 259102.988099999725819 ], [ 356990.4070999994874, 259111.572799999266863 ], [ 356991.484300002455711, 259076.151799999177456 ], [ 356988.011200003325939, 259076.009700000286102 ], [ 356964.931100003421307, 259072.79619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801070900", "MAP": "G9-3070-T80", "PARCEL_NAM": "7-10", "ACRE": null, "LONGITUDE": -64.9467677, "LATITUDE": 18.36145377, "OBJECTID_1": 4011, "PARCEL_NO_": "102801070900", "Tax_Legal_": "ST PETER 7-10 LT. NORTHSIDE", "Name": "MILLIN, NILDA", "Address": "PO Box 563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 83400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.709691311, "SHAPE_Area": 1667.33429084 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357132.387100003659725, 259075.751200001686811 ], [ 357090.540299996733665, 259069.235500000417233 ], [ 357093.278200000524521, 259073.282200001180172 ], [ 357094.452500000596046, 259075.017799999564886 ], [ 357089.640299998223782, 259078.273699998855591 ], [ 357084.501000002026558, 259077.706900000572205 ], [ 357082.578100003302097, 259112.636100001633167 ], [ 357088.517899997532368, 259109.973999999463558 ], [ 357087.749399997293949, 259105.534699998795986 ], [ 357094.2179000005126, 259103.476700000464916 ], [ 357131.534100003540516, 259112.872600000351667 ], [ 357132.387100003659725, 259075.751200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801070800", "MAP": "G9-3066-T80", "PARCEL_NAM": "7-7", "ACRE": ".46", "LONGITUDE": -64.94692778, "LATITUDE": 18.36113191, "OBJECTID_1": 4010, "PARCEL_NO_": "102801070800", "Tax_Legal_": "ST PETER 7-7 LT. NORTHSIDE", "Name": "FORDE, JEAN & LISA", "Address": "PO Box 1682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 74700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.1098719, "SHAPE_Area": 2238.2171689000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357132.771200001239777, 259059.039500001817942 ], [ 357102.189599998295307, 259038.199700001627207 ], [ 357102.151500001549721, 259039.654699999839067 ], [ 357098.619800001382828, 259039.562100000679493 ], [ 357097.464500002563, 259039.531800001859665 ], [ 357097.532700002193451, 259036.93189999833703 ], [ 357081.998400002717972, 259036.524399999529123 ], [ 357066.251800000667572, 259033.6886 ], [ 357058.077799998223782, 259032.216499999165535 ], [ 357057.940200001001358, 259067.182399999350309 ], [ 357066.505599997937679, 259067.919799998402596 ], [ 357083.50280000269413, 259070.302600000053644 ], [ 357087.682700000703335, 259071.1689000017941 ], [ 357090.540299996733665, 259069.235500000417233 ], [ 357132.387100003659725, 259075.751200001686811 ], [ 357132.771200001239777, 259059.039500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801070700", "MAP": "G9-3066-T80", "PARCEL_NAM": "7-8", "ACRE": ".48", "LONGITUDE": -64.94669683, "LATITUDE": 18.36090791, "OBJECTID_1": 4009, "PARCEL_NO_": "102801070700", "Tax_Legal_": "ST PETER 7-8 LT. NORTHSIDE", "Name": "GREAT HOUSE PIRATES LLC", "Address": "9718 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.95961153299999, "SHAPE_Area": 1249.5146687700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357133.87389999628067, 259011.054800000041723 ], [ 357096.553700000047684, 259017.177600000053644 ], [ 357086.889899998903275, 259019.787399999797344 ], [ 357089.156700000166893, 259031.23759999871254 ], [ 357096.683300003409386, 259031.246899999678135 ], [ 357096.602799996733665, 259025.148200001567602 ], [ 357098.987400002777576, 259025.210799999535084 ], [ 357102.527999997138977, 259025.303700000047684 ], [ 357102.205399997532368, 259037.598900001496077 ], [ 357102.189599998295307, 259038.199700001627207 ], [ 357132.771200001239777, 259059.039500001817942 ], [ 357133.87389999628067, 259011.054800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012900", "MAP": "F9-2807-T71", "PARCEL_NAM": "7E", "ACRE": ".53", "LONGITUDE": -64.94673197, "LATITUDE": 18.36043936, "OBJECTID_1": 3711, "PARCEL_NO_": "102801012900", "Tax_Legal_": "ST PETER 7E LITTLE NORTHSIDE", "Name": "MOOREHEAD, ROY & CHARMAINE", "Address": "PO Box 956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 81200, "Improved_V": 323900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.37455160499999, "SHAPE_Area": 2996.57429202 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357133.87389999628067, 259011.054800000041723 ], [ 357135.577600002288818, 258936.913899999111891 ], [ 357114.912600003182888, 258945.959199998527765 ], [ 357094.70440000295639, 258951.7043999992311 ], [ 357090.177199997007847, 258952.528000000864267 ], [ 357086.51070000231266, 258962.293400000780821 ], [ 357096.553700000047684, 259017.177600000053644 ], [ 357133.87389999628067, 259011.054800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012800", "MAP": "G3-25-T46", "PARCEL_NAM": "7B", "ACRE": ".54", "LONGITUDE": -64.9472453, "LATITUDE": 18.36053987, "OBJECTID_1": 3710, "PARCEL_NO_": "102801012800", "Tax_Legal_": "ST PETER 7B LITTLE NORTHSIDE QTR", "Name": "LINDA R WYMER FAMILY TRUST", "Address": "7825 Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85800, "Improved_V": 149700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.587315351, "SHAPE_Area": 3229.3882250199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357079.565399996936321, 258961.631900001317263 ], [ 357085.820600003004074, 258953.32039999961853 ], [ 357074.532700002193451, 258954.35700000077486 ], [ 357063.965899996459484, 258955.327399998903275 ], [ 357058.382600001990795, 258955.84010000154376 ], [ 357045.451099999248981, 258959.322900000959635 ], [ 357030.834499999880791, 258966.622800000011921 ], [ 357030.934600003063679, 259009.918200001120567 ], [ 357065.957299999892712, 259025.440200001001358 ], [ 357086.889899998903275, 259019.787399999797344 ], [ 357083.422200001776218, 258992.254700001329184 ], [ 357079.565399996936321, 258961.631900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012700", "MAP": "F9-491-T59", "PARCEL_NAM": "7D", "ACRE": null, "LONGITUDE": -64.94723758000001, "LATITUDE": 18.36084234, "OBJECTID_1": 3709, "PARCEL_NO_": "102801012700", "Tax_Legal_": "ST PETER 7D LITTLE NORTHSIDE QTR", "Name": "LINDA R WYMER FAMILY TRUST", "Address": "7825 Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.033092815, "SHAPE_Area": 418.58688589299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357086.889899998903275, 259019.787399999797344 ], [ 357065.957299999892712, 259025.440200001001358 ], [ 357030.934600003063679, 259009.918200001120567 ], [ 357032.157300002872944, 259022.279800001531839 ], [ 357036.553300000727177, 259022.058100000023842 ], [ 357054.310199998319149, 259026.089400000870228 ], [ 357067.189400002360344, 259029.013300001621246 ], [ 357074.705700002610683, 259030.128600001335144 ], [ 357082.120899997651577, 259031.228900000452995 ], [ 357089.156700000166893, 259031.23759999871254 ], [ 357086.889899998903275, 259019.787399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014000", "MAP": "G9-2593-T76", "PARCEL_NAM": "7A & 8C", "ACRE": ".33", "LONGITUDE": -64.94805792, "LATITUDE": 18.36067817, "OBJECTID_1": 3722, "PARCEL_NO_": "102801014000", "Tax_Legal_": "ST PETER 7A & 8C LITTLE NORTHSIDE QTR", "Name": "MICHAEL LLOYD SHEESLEY TRUST", "Address": "PO Box 307728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52000, "Improved_V": 274900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.50943069900001, "SHAPE_Area": 1396.6013867500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356987.597699999809265, 259018.042500000447035 ], [ 356997.666400000452995, 258983.840799998492002 ], [ 356994.283399999141693, 258984.725099999457598 ], [ 356991.002499997615814, 258985.889299999922514 ], [ 356988.250900000333786, 258986.312600001692772 ], [ 356985.816699996590614, 258986.524300001561642 ], [ 356983.911700002849102, 258986.206799998879433 ], [ 356980.842500001192093, 258985.571800000965595 ], [ 356976.503300003707409, 258984.725099999457598 ], [ 356972.058300003409386, 258983.666799999773502 ], [ 356968.46000000089407, 258983.031800001859665 ], [ 356967.108300000429153, 258982.803399998694658 ], [ 356966.214900001883507, 258984.216699998825788 ], [ 356958.060000002384186, 258994.915699999779463 ], [ 356956.14299999922514, 258996.700300000607967 ], [ 356952.491800002753735, 259000.351500000804663 ], [ 356948.514799997210503, 259004.270700000226498 ], [ 356949.022799998521805, 259006.718199998140335 ], [ 356955.513800002634525, 259019.964999999850988 ], [ 356966.376199997961521, 259026.588500000536442 ], [ 356967.464900001883507, 259026.867499999701977 ], [ 356987.597699999809265, 259018.042500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801070400", "MAP": "G9-3069-T80", "PARCEL_NAM": "8-6", "ACRE": ".46", "LONGITUDE": -64.94838571, "LATITUDE": 18.36099464, "OBJECTID_1": 4006, "PARCEL_NO_": "102801070400", "Tax_Legal_": "ST.PETER 8-6 LT. NORTHSIDE", "Name": "DALEY, TERRENCE D. and JUDITH C.", "Address": "707 Stonemill Mnr", "City": "Stone Mountain", "State": "Georgia", "Zip": 30088, "Country": "United States", "Land_Value": 74700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.91353391000001, "SHAPE_Area": 2284.7181619799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356967.291000001132488, 259032.817299999296665 ], [ 356967.464900001883507, 259026.867499999701977 ], [ 356966.376199997961521, 259026.588500000536442 ], [ 356955.513800002634525, 259019.964999999850988 ], [ 356949.022799998521805, 259006.718199998140335 ], [ 356948.514799997210503, 259004.270700000226498 ], [ 356945.049300000071526, 259007.685899998992682 ], [ 356940.200300000607967, 259011.019999999552965 ], [ 356940.197899997234344, 259011.021699998527765 ], [ 356905.304499998688698, 259035.013900000602007 ], [ 356906.065800003707409, 259040.297400001436472 ], [ 356910.790399998426437, 259053.635000001639128 ], [ 356915.592299997806549, 259057.896200001239777 ], [ 356934.117700003087521, 259060.369800001382828 ], [ 356950.752999998629093, 259064.324200000613928 ], [ 356953.431400001049042, 259064.960900001227856 ], [ 356959.23139999806881, 259065.699299998581409 ], [ 356962.835299998521805, 259031.169300001114607 ], [ 356967.291000001132488, 259032.817299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804032500", "MAP": "D9-8033-T007", "PARCEL_NAM": "10-B", "ACRE": ".560", "LONGITUDE": -64.93412544, "LATITUDE": 18.35007309, "OBJECTID_1": 4648, "PARCEL_NO_": "102804032500", "Tax_Legal_": "10-B ELIZABETH GREAT NORTHSIDE QTR", "Name": "HODGE, MONIQUE SIBILLY", "Address": "PO Box 792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 109200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.98039168400001, "SHAPE_Area": 1643.6272608500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358426.946400001645088, 257823.5625 ], [ 358446.517099998891354, 257873.354800000786781 ], [ 358492.136900000274181, 257833.235199999064207 ], [ 358464.626000002026558, 257827.444299999624491 ], [ 358435.649099998176098, 257821.296500001102686 ], [ 358426.946400001645088, 257823.5625 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010500", "MAP": "D9-8982-T015", "PARCEL_NAM": "33F", "ACRE": ".716", "LONGITUDE": -64.96535569, "LATITUDE": 18.34728099, "OBJECTID_1": 7438, "PARCEL_NO_": "105201010500", "Tax_Legal_": "33F LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "PETERSEN, JENS O", "Address": "14416 Dolbrook Ln", "City": "Mitchellville", "State": "Maryland", "Zip": 20721, "Country": "United States", "Land_Value": 63100, "Improved_V": 146900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.99030728700001, "SHAPE_Area": 3348.1754552299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355190.521600000560284, 257477.885299999266863 ], [ 355189.745899997651577, 257474.290300000458956 ], [ 355122.699600003659725, 257488.096000000834465 ], [ 355123.995999999344349, 257528.2010000012815 ], [ 355123.859200000762939, 257536.521000001579523 ], [ 355152.605899997055531, 257532.846599999815226 ], [ 355186.826800003647804, 257528.713599998503923 ], [ 355187.535499997437, 257518.965300001204014 ], [ 355190.521600000560284, 257477.885299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010500", "MAP": "D9-8081-T008", "PARCEL_NAM": "33 REM", "ACRE": "1.194", "LONGITUDE": -64.96515268, "LATITUDE": 18.3481603, "OBJECTID_1": 7438, "PARCEL_NO_": "105201010500", "Tax_Legal_": "33F LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "PETERSEN, JENS O", "Address": "14416 Dolbrook Ln", "City": "Mitchellville", "State": "Maryland", "Zip": 20721, "Country": "United States", "Land_Value": 63100, "Improved_V": 146900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.35215930300001, "SHAPE_Area": 4041.4930666099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355130.1503000035882, 257654.709800001233816 ], [ 355196.424400001764297, 257636.886999998241663 ], [ 355202.097300000488758, 257633.556000001728535 ], [ 355199.058100000023842, 257527.940499998629093 ], [ 355192.808100000023842, 257528.739900000393391 ], [ 355191.960400000214577, 257542.064800001680851 ], [ 355189.096600003540516, 257541.467300001531839 ], [ 355182.810199998319149, 257540.155900001525879 ], [ 355181.136500000953674, 257560.080299999564886 ], [ 355130.1503000035882, 257654.709800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201013800", "MAP": "D9-8081-T008", "PARCEL_NAM": "33J", "ACRE": "1.180", "LONGITUDE": -64.96542414, "LATITUDE": 18.34789869, "OBJECTID_1": 7470, "PARCEL_NO_": "105201013800", "Tax_Legal_": "33J LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "RABSATT, ELMO L. & KEVIN A.", "Address": "14416 Dolbrook Ln", "City": "Mitchellville", "State": "Maryland", "Zip": 20721, "Country": "United States", "Land_Value": 106900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.462840003, "SHAPE_Area": 4225.4545248300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355123.859200000762939, 257536.521000001579523 ], [ 355130.1503000035882, 257654.709800001233816 ], [ 355181.136500000953674, 257560.080299999564886 ], [ 355182.810199998319149, 257540.155900001525879 ], [ 355183.293200001120567, 257537.840700000524521 ], [ 355180.478399999439716, 257537.253400001674891 ], [ 355181.352600000798702, 257533.062699999660254 ], [ 355184.246899999678135, 257532.678300000727177 ], [ 355185.371699996292591, 257530.949700001627207 ], [ 355186.826800003647804, 257528.713599998503923 ], [ 355123.859200000762939, 257536.521000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105201065200", "MAP": "D9-9052-T016", "PARCEL_NAM": "15B", "ACRE": ".77", "LONGITUDE": -64.96436244, "LATITUDE": 18.3410069, "OBJECTID_1": 7778, "PARCEL_NO_": "105201065200", "Tax_Legal_": "PAR 15 REM LINDBERG BAY 4A SOUTHSIDE QTR", "Name": "KESWICK GUARANTY INC", "Address": "18285 Blue Ridge Tpke", "City": "Gordonsville", "State": "Virginia", "Zip": 22942, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.871276749, "SHAPE_Area": 3178.89517677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355300.661700002849102, 256835.323399998247623 ], [ 355298.296800002455711, 256791.589299999177456 ], [ 355298.042300000786781, 256786.882399998605251 ], [ 355234.367200002074242, 256788.97749999910593 ], [ 355234.474399998784065, 256791.938999999314547 ], [ 355234.95719999819994, 256805.282699998468161 ], [ 355237.42230000346899, 256840.109400000423193 ], [ 355300.661700002849102, 256835.323399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105201066700", "MAP": "D9-8044-T007", "PARCEL_NAM": "15C", "ACRE": "0.48", "LONGITUDE": -64.96438422, "LATITUDE": 18.34064081, "OBJECTID_1": 7795, "PARCEL_NO_": "105201066700", "Tax_Legal_": "15C LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "VIRGIN ISLANDS ENTRPRISES INC", "Address": "6 Sylvan Way", "City": "Parsippany", "State": "New Jersey", "Zip": 7054, "Country": "United States", "Land_Value": 685200, "Improved_V": 191700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.67296452799999, "SHAPE_Area": 1990.85445602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355298.042300000786781, 256786.882399998605251 ], [ 355296.38570000231266, 256756.246700000017881 ], [ 355233.206500001251698, 256756.89809999987483 ], [ 355234.367200002074242, 256788.97749999910593 ], [ 355298.042300000786781, 256786.882399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96004035, "LATITUDE": 18.35587483, "OBJECTID_1": 3200, "PARCEL_NO_": "102703012200", "Tax_Legal_": "DORETHEA 5 LITTLE NORTHSIDE QTR", "Name": "KALLOO, FLORENCE (TRUSTEE)", "Address": "7917 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 229600, "Improved_V": 95300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.460800525, "SHAPE_Area": 657.50256653700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355682.464900001883507, 258470.857900001108646 ], [ 355684.844099998474121, 258477.995400000363588 ], [ 355696.211999997496605, 258474.2060999982059 ], [ 355710.260499998927116, 258467.734900001436472 ], [ 355745.864100001752377, 258453.249800000339746 ], [ 355745.11540000140667, 258446.488600000739098 ], [ 355694.184600003063679, 258461.692699998617172 ], [ 355694.159699998795986, 258461.609200000762939 ], [ 355693.483800001442432, 258462.364599999040365 ], [ 355690.697300001978874, 258462.476100001484156 ], [ 355688.678000003099442, 258460.875799998641014 ], [ 355684.232500001788139, 258462.197399999946356 ], [ 355684.845600001513958, 258464.259500000625849 ], [ 355684.734099999070168, 258467.826200000941753 ], [ 355684.0625, 258470.325300000607967 ], [ 355682.464900001883507, 258470.857900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96048257, "LATITUDE": 18.35568742, "OBJECTID_1": 3200, "PARCEL_NO_": "102703012200", "Tax_Legal_": "DORETHEA 5 LITTLE NORTHSIDE QTR", "Name": "KALLOO, FLORENCE (TRUSTEE)", "Address": "7917 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 229600, "Improved_V": 95300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.334970269, "SHAPE_Area": 2339.9494011400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355631.449199996888638, 258429.767799999564886 ], [ 355635.927500002086163, 258452.848099999129772 ], [ 355682.464900001883507, 258470.857900001108646 ], [ 355684.0625, 258470.325300000607967 ], [ 355684.734099999070168, 258467.826200000941753 ], [ 355684.845600001513958, 258464.259500000625849 ], [ 355684.232500001788139, 258462.197399999946356 ], [ 355688.678000003099442, 258460.875799998641014 ], [ 355690.697300001978874, 258462.476100001484156 ], [ 355693.483800001442432, 258462.364599999040365 ], [ 355694.159699998795986, 258461.609200000762939 ], [ 355680.07379999756813, 258414.292300000786781 ], [ 355678.509700000286102, 258408.579999998211861 ], [ 355638.032300002872944, 258427.247099999338388 ], [ 355631.449199996888638, 258429.767799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9609238, "LATITUDE": 18.35576663, "OBJECTID_1": 3200, "PARCEL_NO_": "102703012200", "Tax_Legal_": "DORETHEA 5 LITTLE NORTHSIDE QTR", "Name": "KALLOO, FLORENCE (TRUSTEE)", "Address": "7917 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 229600, "Improved_V": 95300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.87047345399998, "SHAPE_Area": 4558.2038033999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355584.086599998176098, 258417.728500001132488 ], [ 355587.142899997532368, 258437.596400000154972 ], [ 355591.804499998688698, 258458.321699999272823 ], [ 355600.41499999910593, 258488.789599999785423 ], [ 355602.009700000286102, 258490.913600001484156 ], [ 355606.849799998104572, 258503.031500000506639 ], [ 355654.529600001871586, 258475.92850000038743 ], [ 355666.803000003099442, 258464.796799998730421 ], [ 355635.927500002086163, 258452.848099999129772 ], [ 355631.449199996888638, 258429.767799999564886 ], [ 355638.032300002872944, 258427.247099999338388 ], [ 355629.454099997878075, 258392.979699999094009 ], [ 355586.523599997162819, 258415.637600000947714 ], [ 355584.086599998176098, 258417.728500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96059452, "LATITUDE": 18.35621246, "OBJECTID_1": 3200, "PARCEL_NO_": "102703012200", "Tax_Legal_": "DORETHEA 5 LITTLE NORTHSIDE QTR", "Name": "KALLOO, FLORENCE (TRUSTEE)", "Address": "7917 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 229600, "Improved_V": 95300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.124027181, "SHAPE_Area": 3170.8483873700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355606.849799998104572, 258503.031500000506639 ], [ 355609.11540000140667, 258508.703600000590086 ], [ 355620.236599996685982, 258528.426300000399351 ], [ 355626.821099996566772, 258537.461199998855591 ], [ 355700.682099997997284, 258488.220499999821186 ], [ 355696.211999997496605, 258474.2060999982059 ], [ 355684.844099998474121, 258477.995400000363588 ], [ 355682.464900001883507, 258470.857900001108646 ], [ 355666.803000003099442, 258464.796799998730421 ], [ 355654.529600001871586, 258475.92850000038743 ], [ 355606.849799998104572, 258503.031500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "102703017800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96041484, "LATITUDE": 18.3565464, "OBJECTID_1": 3254, "PARCEL_NO_": "102703017800", "Tax_Legal_": "5-F DOROTHEA NO.7 LT NORTHSIDE QTR", "Name": "KALLOO DOROTHEA REAL A LLC", "Address": "7917 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.57651851399999, "SHAPE_Area": 3580.6444040199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355626.821099996566772, 258537.461199998855591 ], [ 355636.177599996328354, 258550.299400001764297 ], [ 355646.566200003027916, 258561.361299999058247 ], [ 355659.368299998342991, 258573.076299998909235 ], [ 355672.99099999666214, 258583.109200000762939 ], [ 355677.0675999969244, 258577.865200001746416 ], [ 355684.450300000607967, 258563.149099998176098 ], [ 355696.847000002861023, 258527.786800000816584 ], [ 355701.769400000572205, 258517.905699998140335 ], [ 355707.738899998366833, 258510.344300001859665 ], [ 355700.682099997997284, 258488.220499999821186 ], [ 355626.821099996566772, 258537.461199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95953591, "LATITUDE": 18.34196373, "OBJECTID_1": 7680, "PARCEL_NO_": "105201050400", "Tax_Legal_": "CONTANT 6 SOUTHSIDE QUARTER", "Name": "WARNER, RAFAEL & BERTHE", "Address": "PO Box 12366", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 166400, "Improved_V": 95500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.488935903, "SHAPE_Area": 2126.70557414 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355756.712200000882149, 256895.890299998223782 ], [ 355757.317199997603893, 256919.53770000115037 ], [ 355757.250600002706051, 256927.347600001841784 ], [ 355757.052799999713898, 256950.566300000995398 ], [ 355795.907300002872944, 256949.901299998164177 ], [ 355795.858300000429153, 256938.851599998772144 ], [ 355795.9391999989748, 256929.353000000119209 ], [ 355796.218000002205372, 256896.635800000280142 ], [ 355788.973700001835823, 256895.098900001496077 ], [ 355756.712200000882149, 256895.890299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95953119000001, "LATITUDE": 18.34244661, "OBJECTID_1": 7678, "PARCEL_NO_": "105201050300", "Tax_Legal_": "CONTANT 6A 7A SOUTHSIDE QRT", "Name": "WARNER, ADOLPHE, MARIETTA & JOSEPH, ADRIENNE", "Address": "PO Box 11925", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 179700, "Improved_V": 60600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.88083896099999, "SHAPE_Area": 2013.1645182699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355757.052799999713898, 256950.566300000995398 ], [ 355757.587600000202656, 256982.445799998939037 ], [ 355757.407799996435642, 257003.553700000047684 ], [ 355796.134199999272823, 257001.126400001347065 ], [ 355795.907300002872944, 256949.901299998164177 ], [ 355757.052799999713898, 256950.566300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701012800", "MAP": "D9-9151-T016", "PARCEL_NAM": "14C", "ACRE": "1.75", "LONGITUDE": -64.96173006, "LATITUDE": 18.36233457, "OBJECTID_1": 2799, "PARCEL_NO_": "102701012800", "Tax_Legal_": "14C DOROTHEA NO. 7 LITTLE NORTHSIDE QUARTER", "Name": "NORTHSIDE DEV. INC.", "Address": "7917 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 169000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 394.66307775799999, "SHAPE_Area": 5727.17147716 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355489.075099997222424, 259207.22690000012517 ], [ 355514.566100001335144, 259195.250399999320507 ], [ 355516.099600002169609, 259204.551100000739098 ], [ 355526.295800000429153, 259238.198399998247623 ], [ 355538.431800000369549, 259233.442600000649691 ], [ 355576.456200003623962, 259218.766100000590086 ], [ 355507.358999997377396, 259094.710900001227856 ], [ 355493.335900001227856, 259097.306800000369549 ], [ 355498.000100001692772, 259117.596000000834465 ], [ 355498.346000000834465, 259137.311099998652935 ], [ 355499.383599996566772, 259168.440200001001358 ], [ 355497.308300003409386, 259179.508400000631809 ], [ 355489.075099997222424, 259207.22690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701012800", "MAP": "D9-3828-T87", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.96204762000001, "LATITUDE": 18.36212706, "OBJECTID_1": 2799, "PARCEL_NO_": "102701012800", "Tax_Legal_": "14C DOROTHEA NO. 7 LITTLE NORTHSIDE QUARTER", "Name": "NORTHSIDE DEV. INC.", "Address": "7917 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 169000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.11561631199999, "SHAPE_Area": 773.13563213500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355483.074400000274181, 259204.663400001823902 ], [ 355485.420199997723103, 259208.943999998271465 ], [ 355489.075099997222424, 259207.22690000012517 ], [ 355497.308300003409386, 259179.508400000631809 ], [ 355499.383599996566772, 259168.440200001001358 ], [ 355498.346000000834465, 259137.311099998652935 ], [ 355498.000100001692772, 259117.596000000834465 ], [ 355493.335900001227856, 259097.306800000369549 ], [ 355486.8800999969244, 259098.501899998635054 ], [ 355491.428400002419949, 259128.318199999630451 ], [ 355492.811899997293949, 259167.056699998676777 ], [ 355483.074400000274181, 259204.663400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701015800", "MAP": "D9-3828-T87", "PARCEL_NAM": "14C-3", "ACRE": null, "LONGITUDE": -64.96220406, "LATITUDE": 18.36227315, "OBJECTID_1": 2834, "PARCEL_NO_": "102701015800", "Tax_Legal_": "DOROTHEA 14C-2A & 14C-3 NO.7 LITTLE NORTHSIDE QTR", "Name": "FLETCHER, NOREEN A. & ELLIOT M.", "Address": "PO Box 10984", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53200, "Improved_V": 210200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.04885120899999, "SHAPE_Area": 1190.2830609600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355492.267300002276897, 259151.808299999684095 ], [ 355451.057899996638298, 259147.510200001299381 ], [ 355454.550599999725819, 259153.746300000697374 ], [ 355455.332599997520447, 259155.142700001597404 ], [ 355461.592299997806549, 259166.319200001657009 ], [ 355475.89190000295639, 259191.556400001049042 ], [ 355483.074400000274181, 259204.663400001823902 ], [ 355492.56700000166893, 259168.002500001341105 ], [ 355492.811899997293949, 259167.056699998676777 ], [ 355492.267300002276897, 259151.808299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701016000", "MAP": "D9-7844-T006", "PARCEL_NAM": "14C-1", "ACRE": ".29", "LONGITUDE": -64.96232533, "LATITUDE": 18.36180184, "OBJECTID_1": 2836, "PARCEL_NO_": "102701016000", "Tax_Legal_": "DOROTHEA 14C-1 & 14C-2 REM LT. NORTHSIDE QTR", "Name": "GAIKWAD, MIDA S. & VINODKUMAR S.", "Address": "PO Box 7236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81600, "Improved_V": 340900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.44723058, "SHAPE_Area": 1429.6810003600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355429.825300000607967, 259109.063999999314547 ], [ 355436.684500001370907, 259121.503800000995398 ], [ 355440.870600000023842, 259129.09569999948144 ], [ 355491.491099998354912, 259130.073899999260902 ], [ 355491.428400002419949, 259128.318199999630451 ], [ 355486.8800999969244, 259098.501899998635054 ], [ 355429.825300000607967, 259109.063999999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96349375, "LATITUDE": 18.36038786, "OBJECTID_1": 2783, "PARCEL_NO_": "102701010900", "Tax_Legal_": "DOROTHEA 13B REMAINDER LITTLE NORTHSIDE", "Name": "BROWN, OMAR", "Address": "PO Box 10902", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 177400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 536.63705695399995, "SHAPE_Area": 9800.2124996700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355261.371100001037121, 258910.734900001436472 ], [ 355330.492499999701977, 259024.983800001442432 ], [ 355330.538000002503395, 259024.719500001519918 ], [ 355446.795500002801418, 258963.880100000649691 ], [ 355430.55460000038147, 258928.796000000089407 ], [ 355381.783900000154972, 258974.415199998766184 ], [ 355328.215899996459484, 258920.570199999958277 ], [ 355293.034800000488758, 258885.451799999922514 ], [ 355261.371100001037121, 258910.734900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96274606, "LATITUDE": 18.36119031, "OBJECTID_1": 2829, "PARCEL_NO_": "102701015300", "Tax_Legal_": "DOROTHEA 13B-1 LT. NORTHSIDE QTR.", "Name": "BROWN, RUDOLFO A", "Address": "PO Box 521", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 180600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 506.779949676, "SHAPE_Area": 15690.3775195 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355330.492499999701977, 259024.983800001442432 ], [ 355330.550999999046326, 259025.080600000917912 ], [ 355386.210699997842312, 259117.361800000071526 ], [ 355429.825300000607967, 259109.063900001347065 ], [ 355507.358999997377396, 259094.710900001227856 ], [ 355446.795500002801418, 258963.880100000649691 ], [ 355330.538000002503395, 259024.719500001519918 ], [ 355330.492499999701977, 259024.983800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201035200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96509064, "LATITUDE": 18.3450468, "OBJECTID_1": 7555, "PARCEL_NO_": "105201035200", "Tax_Legal_": "LINDBERG BAY 31K 4A SOUTHSIDE", "Name": "DONOVAN, JEAN V", "Address": "PO Box 301804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 107600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.342780811, "SHAPE_Area": 660.98641945199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355174.767899997532368, 257244.709100000560284 ], [ 355176.841099999845028, 257274.812300000339746 ], [ 355198.447499997913837, 257274.309799998998642 ], [ 355196.549099996685982, 257243.620799999684095 ], [ 355174.767899997532368, 257244.709100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803040400", "MAP": "D9-8075-T008", "PARCEL_NAM": "97-4 REM", "ACRE": ".500", "LONGITUDE": -64.9446676, "LATITUDE": 18.35221313, "OBJECTID_1": 4395, "PARCEL_NO_": "102803040400", "Tax_Legal_": "SOLBERG 97-4 LT NORTHSIDE", "Name": "BOSCHULTE, EVELYN", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 95200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.18669450900001, "SHAPE_Area": 2181.8271472800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357371.279100000858307, 258085.314500000327826 ], [ 357341.512900002300739, 258040.776299998164177 ], [ 357337.601400002837181, 258040.912500001490116 ], [ 357330.509400002658367, 258039.89299999922514 ], [ 357329.820000000298023, 258040.085099998861551 ], [ 357316.243299998342991, 258038.747999999672174 ], [ 357316.3462999984622, 258058.500700000673532 ], [ 357316.453599996864796, 258079.0636 ], [ 357341.001900002360344, 258101.733300000429153 ], [ 357366.974799998104572, 258087.93299999833107 ], [ 357371.279100000858307, 258085.314500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803041500", "MAP": "D9-6524-T97", "PARCEL_NAM": "97-5", "ACRE": null, "LONGITUDE": -64.94409484000001, "LATITUDE": 18.35196871, "OBJECTID_1": 4401, "PARCEL_NO_": "102803041500", "Tax_Legal_": "SOLBERG 97-5 #1 LT.NORTHSIDE QTR.", "Name": "BOSCHULTE, EVELYN", "Address": "PO Box 305882", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.88760982100001, "SHAPE_Area": 1738.25919144 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357425.849600002169609, 258018.89979999884963 ], [ 357427.994699999690056, 258013.692099999636412 ], [ 357403.663699999451637, 258022.670499999076128 ], [ 357388.563000001013279, 258030.184000000357628 ], [ 357376.952100001275539, 258035.961100000888109 ], [ 357368.262699998915195, 258038.628199998289347 ], [ 357391.276699997484684, 258073.149300001561642 ], [ 357398.57039999961853, 258068.71229999884963 ], [ 357401.404200002551079, 258066.988400001078844 ], [ 357414.373499996960163, 258059.072999998927116 ], [ 357416.864399999380112, 258050.649599999189377 ], [ 357417.722800001502037, 258044.53489999845624 ], [ 357421.856899999082088, 258032.536400001496077 ], [ 357425.849600002169609, 258018.89979999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803042100", "MAP": "D9-7164-T002", "PARCEL_NAM": "97-8-1", "ACRE": ".501", "LONGITUDE": -64.9441432, "LATITUDE": 18.35150211, "OBJECTID_1": 4407, "PARCEL_NO_": "102803042100", "Tax_Legal_": "97-8-1 EST. SOLBERG #1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JEFFREY T", "Address": "PO Box 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88100, "Improved_V": 338100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.66930478500001, "SHAPE_Area": 1945.05187882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357421.776600003242493, 258006.344399999827147 ], [ 357403.063199996948242, 257960.959100000560284 ], [ 357371.538199998438358, 257970.778400000184774 ], [ 357381.622500002384186, 258017.756599999964237 ], [ 357382.765100002288818, 258024.244699999690056 ], [ 357397.018399998545647, 258017.719099998474121 ], [ 357421.776600003242493, 258006.344399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94375712, "LATITUDE": 18.35112862, "OBJECTID_1": 4336, "PARCEL_NO_": "102803027000", "Tax_Legal_": "SOLBERG 97-15 NO.1 LITTLE NORTHSIDE", "Name": "ROBLES, SR, PETER A.", "Address": "PO Box 502071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 110400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.11688222004, "SHAPE_Area": 0.00063793994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357436.012199997901917, 257950.666000001132488 ], [ 357435.998400002717972, 257950.700599998235703 ], [ 357436.040500000119209, 257950.6875 ], [ 357436.012199997901917, 257950.666000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202082100", "MAP": "A9-465-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9549221, "LATITUDE": 18.34607536, "OBJECTID_1": 8463, "PARCEL_NO_": "105202082100", "Tax_Legal_": "107-8-7 ESTATE CONTANT No. 7B SOUTHSIDE QTR.", "Name": "SAMUEL, KATHLEEN & CYRILLA DOMINIQUE", "Address": "CHICHESTER HOUSE", "City": "LONDON", "State": "London", "Zip": 0, "Country": "United Kingdom", "Land_Value": 34800, "Improved_V": 183400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.609486156, "SHAPE_Area": 1377.86430522 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356238.399499997496605, 257368.815499998629093 ], [ 356243.997100003063679, 257380.505399998277426 ], [ 356249.393299996852875, 257390.596500001847744 ], [ 356252.506300002336502, 257396.41780000180006 ], [ 356254.574299998581409, 257400.28489999845624 ], [ 356255.010899998247623, 257403.450500000268221 ], [ 356280.488099999725819, 257411.867899999022484 ], [ 356279.784299999475479, 257399.829799998551607 ], [ 356261.473200000822544, 257348.570199999958277 ], [ 356261.406800001859665, 257348.614399999380112 ], [ 356256.782399997115135, 257352.556499999016523 ], [ 356255.156099997460842, 257353.942899998277426 ], [ 356250.267800003290176, 257358.109900001436472 ], [ 356245.114900000393391, 257362.675700001418591 ], [ 356238.399499997496605, 257368.815499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043700", "MAP": "A9-465-T95", "PARCEL_NAM": "107-8-5", "ACRE": ".38", "LONGITUDE": -64.95449494, "LATITUDE": 18.34583631, "OBJECTID_1": 3575, "PARCEL_NO_": "102704043700", "Tax_Legal_": "PAR 107-8-4 CONTANT 7B SOUTHSIDE QTR", "Name": "JUSTGREG INC", "Address": "8000 NISKY SHOPPING CENTER, STE. 78, PMB 70", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.35967561499999, "SHAPE_Area": 2080.08663007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356280.167700000107288, 257328.428599998354912 ], [ 356282.701499998569489, 257331.586300000548363 ], [ 356280.445799998939037, 257333.497400000691414 ], [ 356302.45269999653101, 257389.249600000679493 ], [ 356326.658299997448921, 257387.547899998724461 ], [ 356333.112400002777576, 257387.17850000038743 ], [ 356332.329499997198582, 257384.42790000140667 ], [ 356314.197899997234344, 257335.728000000119209 ], [ 356312.617600001394749, 257331.915300000458956 ], [ 356307.54450000077486, 257318.289599999785423 ], [ 356280.167700000107288, 257328.428599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202082000", "MAP": "A9-465-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95471584000001, "LATITUDE": 18.34596893, "OBJECTID_1": 8462, "PARCEL_NO_": "105202082000", "Tax_Legal_": "107-8-6 CONTANT\nNo.7B SOUTHSIDE QUARTER", "Name": "MORANCIE, MAGDALENE AGNES", "Address": "PO Box 11245", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.94587191, "SHAPE_Area": 1475.4780405199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356261.473200000822544, 257348.570199999958277 ], [ 356279.784299999475479, 257399.829799998551607 ], [ 356302.369999997317791, 257398.959199998527765 ], [ 356302.45269999653101, 257389.249600000679493 ], [ 356280.445799998939037, 257333.497400000691414 ], [ 356267.021200001239777, 257344.871399998664856 ], [ 356261.473200000822544, 257348.570199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202081100", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-11", "ACRE": "0.32", "LONGITUDE": -64.95584874, "LATITUDE": 18.34629348, "OBJECTID_1": 8453, "PARCEL_NO_": "105202081100", "Tax_Legal_": "107-2-11 CONTANT No.7B SOUTHSIDE QUARTER", "Name": "GONZALES, VALMY & GERMAINE M", "Address": "PO Box 8827", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.44073269800001, "SHAPE_Area": 1349.7713501400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356135.811800003051758, 257418.108300000429153 ], [ 356157.756800003349781, 257431.245000001043081 ], [ 356163.341700002551079, 257424.969799999147654 ], [ 356175.590300001204014, 257411.207400001585484 ], [ 356190.630300000309944, 257392.407400000840425 ], [ 356171.830300003290176, 257384.666200000792742 ], [ 356163.471799999475479, 257379.26799999922514 ], [ 356135.811800003051758, 257418.108300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202081200", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-12", "ACRE": "0.32", "LONGITUDE": -64.95609669, "LATITUDE": 18.34615895, "OBJECTID_1": 8454, "PARCEL_NO_": "105202081200", "Tax_Legal_": "107-2-12 CONTANT No.7B SOUTHSIDE QUARTER", "Name": "McLEISH, LIONEL D. & MARIA L", "Address": "8247 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 249800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.237655996, "SHAPE_Area": 1507.92847209 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356111.800499998033047, 257403.734700001776218 ], [ 356135.811800003051758, 257418.108300000429153 ], [ 356163.471799999475479, 257379.26799999922514 ], [ 356160.443199999630451, 257377.311999998986721 ], [ 356150.597300000488758, 257370.953299999237061 ], [ 356142.1925999969244, 257367.41440000012517 ], [ 356132.018500000238419, 257366.308499999344349 ], [ 356127.594999998807907, 257367.856800001114607 ], [ 356123.537699997425079, 257377.652800001204014 ], [ 356111.800499998033047, 257403.734700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202081000", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-10", "ACRE": "0.32", "LONGITUDE": -64.95616457, "LATITUDE": 18.34652268, "OBJECTID_1": 8452, "PARCEL_NO_": "105202081000", "Tax_Legal_": "107-2-10 CONTANT No.7B SOUTHSIDE QUARTER", "Name": "HALLIDAY, ERNEST", "Address": "PO Box 11245", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44200, "Improved_V": 306400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.40557069900001, "SHAPE_Area": 1461.68425321 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356101.324000000953674, 257427.7956000007689 ], [ 356141.414800003170967, 257457.347500000149012 ], [ 356146.504299998283386, 257449.218199998140335 ], [ 356157.756800003349781, 257431.245000001043081 ], [ 356111.800499998033047, 257403.734700001776218 ], [ 356101.324000000953674, 257427.7956000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202080900", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-9", "ACRE": "0.29", "LONGITUDE": -64.95628638, "LATITUDE": 18.34673742, "OBJECTID_1": 8451, "PARCEL_NO_": "105202080900", "Tax_Legal_": "107-2-9 CONTANT No.7B SOUTHSIDE QUARTER", "Name": "GUISHARD, MARIA & HANNAH", "Address": "PO Box 303551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33600, "Improved_V": 411800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.796783159, "SHAPE_Area": 1202.3977394200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356090.710100002586842, 257451.210499998182058 ], [ 356119.989399999380112, 257471.159000001847744 ], [ 356123.02080000191927, 257484.111400000751019 ], [ 356137.3175999969244, 257463.891699999570847 ], [ 356141.414800003170967, 257457.347500000149012 ], [ 356101.324000000953674, 257427.7956000007689 ], [ 356091.469300001859665, 257450.428700000047684 ], [ 356090.710100002586842, 257451.210499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202080800", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-8", "ACRE": "0.28", "LONGITUDE": -64.9564133, "LATITUDE": 18.3469372, "OBJECTID_1": 8450, "PARCEL_NO_": "105202080800", "Tax_Legal_": "107-2-8 ESTATE CONTANT NO.7B SOUTHSIDE QTR", "Name": "TODMAN, VINCENT B. & LOUISE A. CHRISTOPHER", "Address": "PO BOX 11834", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 51900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.53404777599999, "SHAPE_Area": 1159.0860977899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356077.425800003111362, 257473.00899999961257 ], [ 356108.604299999773502, 257495.999200001358986 ], [ 356110.856200002133846, 257509.192899998277426 ], [ 356112.792000003159046, 257503.165500000119209 ], [ 356118.544100001454353, 257490.546999998390675 ], [ 356122.626000002026558, 257484.669700000435114 ], [ 356123.02080000191927, 257484.111400000751019 ], [ 356119.989399999380112, 257471.159000001847744 ], [ 356090.710100002586842, 257451.210499998182058 ], [ 356089.842299997806549, 257452.104100000113249 ], [ 356085.735200002789497, 257460.9364 ], [ 356077.425800003111362, 257473.00899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202080300", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-3", "ACRE": "0.36", "LONGITUDE": -64.9572627, "LATITUDE": 18.34788036, "OBJECTID_1": 8445, "PARCEL_NO_": "105202080300", "Tax_Legal_": "107-2-3 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "RAYMOND, MICHELET & RICHARDS, PATRICIA", "Address": "8253 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.541612335, "SHAPE_Area": 1803.6550839199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355986.123999997973442, 257553.504599999636412 ], [ 356005.303700000047684, 257610.807399999350309 ], [ 356011.085900001227856, 257609.990800000727177 ], [ 356020.793999999761581, 257606.270599998533726 ], [ 356028.902099996805191, 257601.059599999338388 ], [ 356036.449199996888638, 257594.676500000059605 ], [ 356017.807300001382828, 257550.418000001460314 ], [ 356009.145300000905991, 257553.824000000953674 ], [ 355986.123999997973442, 257553.504599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202080400", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-4", "ACRE": "0.27", "LONGITUDE": -64.95700589, "LATITUDE": 18.34774596, "OBJECTID_1": 8446, "PARCEL_NO_": "105202080400", "Tax_Legal_": "107-2-4 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "C CHARLES REVOCABLE TRUST", "Address": "PO BOX 304837", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 277800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.151549141, "SHAPE_Area": 1272.20490735 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356017.807300001382828, 257550.418000001460314 ], [ 356036.449199996888638, 257594.676500000059605 ], [ 356045.958700001239777, 257586.633699998259544 ], [ 356062.526699997484684, 257569.651599999517202 ], [ 356032.791199997067451, 257536.029399998486042 ], [ 356027.785700000822544, 257542.788600001484156 ], [ 356019.66330000013113, 257549.688200000673532 ], [ 356017.807300001382828, 257550.418000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202080700", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-7", "ACRE": "0.29", "LONGITUDE": -64.95653239000001, "LATITUDE": 18.34716175, "OBJECTID_1": 8449, "PARCEL_NO_": "105202080700", "Tax_Legal_": "107-2-7 ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "BROWNBILL, JAMES M.", "Address": "PO Box 1753", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 24000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.636992599, "SHAPE_Area": 1404.4948944800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356062.954800002276897, 257494.0337999984622 ], [ 356101.163400001823902, 257530.810600001364946 ], [ 356101.268100000917912, 257530.724399998784065 ], [ 356106.165299996733665, 257523.79839999973774 ], [ 356110.856200002133846, 257509.192899998277426 ], [ 356108.604299999773502, 257495.999200001358986 ], [ 356077.425800003111362, 257473.00899999961257 ], [ 356062.954800002276897, 257494.0337999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202080500", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-5", "ACRE": "0.32", "LONGITUDE": -64.95682836, "LATITUDE": 18.34753289, "OBJECTID_1": 8447, "PARCEL_NO_": "105202080500", "Tax_Legal_": "107-2-5 CONTANT No.7B SOUTHSIDE QUARTER", "Name": "NICHOLAS, IVAN & CRESCENE", "Address": "PO Box 502365", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37100, "Improved_V": 256400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.602171457, "SHAPE_Area": 1391.41990723 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356032.791199997067451, 257536.029399998486042 ], [ 356062.526699997484684, 257569.651599999517202 ], [ 356084.126999996602535, 257547.511300001293421 ], [ 356050.095299996435642, 257512.662599999457598 ], [ 356032.791199997067451, 257536.029399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202080600", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-6", "ACRE": "0.32", "LONGITUDE": -64.95666871, "LATITUDE": 18.34734824, "OBJECTID_1": 8448, "PARCEL_NO_": "105202080600", "Tax_Legal_": "107-2-6 CONTANT No.7B SOUTHSIDE QUARTER", "Name": "GUMBS, MONICA T", "Address": "PO Box 303746", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.57414984499999, "SHAPE_Area": 1164.8038973499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356050.095299996435642, 257512.662599999457598 ], [ 356084.126999996602535, 257547.511300001293421 ], [ 356089.886200003325939, 257541.6081000007689 ], [ 356090.706900000572205, 257539.926100000739098 ], [ 356092.326700001955032, 257539.094999998807907 ], [ 356093.147399999201298, 257537.412999998778105 ], [ 356101.163400001823902, 257530.810600001364946 ], [ 356062.954800002276897, 257494.0337999984622 ], [ 356050.626800000667572, 257511.94480000063777 ], [ 356050.095299996435642, 257512.662599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202080100", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-1", "ACRE": "0.25", "LONGITUDE": -64.95751491, "LATITUDE": 18.34803855, "OBJECTID_1": 8443, "PARCEL_NO_": "105202080100", "Tax_Legal_": "107-2-1 CONTANT NO 7B SOUTHSIDE QTR", "Name": "BRYAN, DERRICK", "Address": "PO BOX 8644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.563326738, "SHAPE_Area": 997.79980122100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355962.178700000047684, 257584.253899998962879 ], [ 355977.177599996328354, 257614.779500000178814 ], [ 356005.303700000047684, 257610.807399999350309 ], [ 355994.770400002598763, 257579.337200000882149 ], [ 355962.178700000047684, 257584.253899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202080200", "MAP": "A9-608-T003", "PARCEL_NAM": "107-2-2", "ACRE": "0.25", "LONGITUDE": -64.95763281000001, "LATITUDE": 18.34777714, "OBJECTID_1": 8444, "PARCEL_NO_": "105202080200", "Tax_Legal_": "107-2-2 CONTANT No 7B SOUTHSIDE QTR", "Name": "BRYAN, DERRICK", "Address": "PO BOX 8644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.62243520800001, "SHAPE_Area": 1006.32071086 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355948.643100000917912, 257556.706300001591444 ], [ 355962.178700000047684, 257584.253899998962879 ], [ 355994.770400002598763, 257579.337200000882149 ], [ 355986.123999997973442, 257553.504599999636412 ], [ 355972.056699998676777, 257553.309399999678135 ], [ 355948.643100000917912, 257556.706300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202081600", "MAP": "A9-465-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95510013000001, "LATITUDE": 18.34552221, "OBJECTID_1": 8458, "PARCEL_NO_": "105202081600", "Tax_Legal_": "107-5-4 & 1/13 INT IN ROW 107-5-A CONTANT 7B SOUTHSIDE QTR", "Name": "HERMAN, JOAN, JOHN, JANE, JOHN B. J", "Address": "PO Box 302792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41700, "Improved_V": 122800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.599104297, "SHAPE_Area": 1311.6308998699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356219.520599998533726, 257306.671999998390675 ], [ 356246.130500003695488, 257351.808100000023842 ], [ 356262.954999998211861, 257338.219099998474121 ], [ 356263.778099998831749, 257337.483300000429153 ], [ 356240.896700002253056, 257288.918699998408556 ], [ 356219.520599998533726, 257306.671999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202081500", "MAP": "A9-465-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95528495000001, "LATITUDE": 18.34567785, "OBJECTID_1": 8457, "PARCEL_NO_": "105202081500", "Tax_Legal_": "107-5-3&1/13 INT 107-5-A CONTANT No.7B SOUTHSIDE QUARTER", "Name": "HERMAN,JOAN, JOHN,JANE,JOHN B.&JAMES", "Address": "PO Box 302792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.92804182500001, "SHAPE_Area": 1378.7149485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356198.168300002813339, 257324.405699998140335 ], [ 356227.082099996507168, 257368.302099999040365 ], [ 356231.990299999713898, 257364.539099998772144 ], [ 356245.703199997544289, 257352.153299998492002 ], [ 356246.130500003695488, 257351.808100000023842 ], [ 356219.520599998533726, 257306.671999998390675 ], [ 356198.168300002813339, 257324.405699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202081400", "MAP": "A9-465-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95548696, "LATITUDE": 18.34584083, "OBJECTID_1": 8456, "PARCEL_NO_": "105202081400", "Tax_Legal_": "107-5-2CONTANT(1/13 UNDIV. INT. 107-5-A No.7B SOUTHSIDE QUARTER", "Name": "HERMAN,JOAN, JOHN,JANE,JOHN B.&JAMES", "Address": "PO Box 302792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19000, "Improved_V": 443400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.04286869699999, "SHAPE_Area": 1501.28287518 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356177.637299999594688, 257337.822799999266863 ], [ 356194.9408999979496, 257381.79280000180006 ], [ 356205.227899998426437, 257379.579100001603365 ], [ 356218.719700001180172, 257374.713300000876188 ], [ 356227.082099996507168, 257368.302099999040365 ], [ 356198.168300002813339, 257324.405699998140335 ], [ 356186.807700000703335, 257333.840999998152256 ], [ 356181.946400001645088, 257336.545400001108646 ], [ 356177.637299999594688, 257337.822799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202081300", "MAP": "A9-465-T95", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.955785, "LATITUDE": 18.34587724, "OBJECTID_1": 8455, "PARCEL_NO_": "105202081300", "Tax_Legal_": "107-5-1 CONTANT&1/3 INT.107-5-A No.7B SOUTHSIDE QUARTER", "Name": "HERMAN, JOHN, JANE & JAMES", "Address": "PO Box 302792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.86059924200001, "SHAPE_Area": 1320.9216035899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356139.738600000739098, 257357.22069999948144 ], [ 356139.759700000286102, 257357.240299999713898 ], [ 356149.491400003433228, 257361.442699998617172 ], [ 356159.444399997591972, 257367.856800001114607 ], [ 356177.802000001072884, 257380.021499998867512 ], [ 356187.755000002682209, 257383.339099999517202 ], [ 356194.9408999979496, 257381.79280000180006 ], [ 356177.637299999594688, 257337.822799999266863 ], [ 356177.096000000834465, 257337.983300000429153 ], [ 356162.677000001072884, 257339.541400000452995 ], [ 356154.910199999809265, 257343.179000001400709 ], [ 356143.703000001609325, 257349.292100001126528 ], [ 356139.738600000739098, 257357.22069999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801010700", "MAP": "D9-6796-T000", "PARCEL_NAM": "21REM", "ACRE": ".521", "LONGITUDE": -64.94557793, "LATITUDE": 18.36341156, "OBJECTID_1": 3689, "PARCEL_NO_": "102801010700", "Tax_Legal_": "ST.PETER 21 REMAINDER No.2 LITTLE NORTHSIDE QTR", "Name": "BERRY, CHRISTOPHER A", "Address": "7812 EST. ST. PETER 3P-1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.04284941200001, "SHAPE_Area": 2027.5447517299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357204.921700000762939, 259290.954100001603365 ], [ 357203.171999998390675, 259322.307500001043081 ], [ 357205.244099996984005, 259322.445000000298023 ], [ 357210.071199998259544, 259323.7511 ], [ 357214.55969999730587, 259325.852299999445677 ], [ 357219.510600000619888, 259328.263000000268221 ], [ 357261.289300002157688, 259325.778099998831749 ], [ 357259.152699999511242, 259289.836300000548363 ], [ 357234.756700001657009, 259290.2314000017941 ], [ 357204.921700000762939, 259290.954100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801015300", "MAP": "D9-5023-T90", "PARCEL_NAM": "21B", "ACRE": null, "LONGITUDE": -64.94683715, "LATITUDE": 18.3634149, "OBJECTID_1": 3734, "PARCEL_NO_": "102801015300", "Tax_Legal_": "ST.PETER ESTATE 21b No.2 LITTLE NORTHSIDE QTR.", "Name": "BENGOA, JOANNE D", "Address": "7818 ST. PETER 3N1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.62804779099997, "SHAPE_Area": 3077.3727311399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357045.916199997067451, 259294.00899999961257 ], [ 357043.537600003182888, 259322.541799999773502 ], [ 357129.273100003600121, 259319.448300000280142 ], [ 357143.61599999666214, 259331.135499998927116 ], [ 357151.079700000584126, 259330.577500000596046 ], [ 357149.599399998784065, 259292.088100001215935 ], [ 357045.916199997067451, 259294.00899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94793926, "LATITUDE": 18.3636882, "OBJECTID_1": 3692, "PARCEL_NO_": "102801011000", "Tax_Legal_": "ST PETER 9D&9G LITTLE NORTHSIDE", "Name": "DAVID JOHN BERRY REVOCABLE TRUST", "Address": "PO Box 304851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034851, "Country": "United States", "Land_Value": 253200, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.47905597600001, "SHAPE_Area": 2095.42396517 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356949.937899999320507, 259318.799800001084805 ], [ 356990.776000000536442, 259378.16270000115037 ], [ 357007.853200003504753, 259346.888099998235703 ], [ 357007.19709999859333, 259340.313999999314547 ], [ 356986.556999996304512, 259305.705699998885393 ], [ 356949.937899999320507, 259318.799800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94762332000001, "LATITUDE": 18.36356878, "OBJECTID_1": 3692, "PARCEL_NO_": "102801011000", "Tax_Legal_": "ST PETER 9D&9G LITTLE NORTHSIDE", "Name": "DAVID JOHN BERRY REVOCABLE TRUST", "Address": "PO Box 304851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034851, "Country": "United States", "Land_Value": 253200, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.168126659, "SHAPE_Area": 2451.59836129 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357018.36370000243187, 259293.229200001806021 ], [ 357006.13459999859333, 259291.974899999797344 ], [ 356990.142700001597404, 259304.423500001430511 ], [ 356986.556999996304512, 259305.705699998885393 ], [ 357007.19709999859333, 259340.313999999314547 ], [ 357007.853200003504753, 259346.888099998235703 ], [ 356990.776000000536442, 259378.16270000115037 ], [ 356992.024099998176098, 259378.519200000911951 ], [ 356999.598200000822544, 259369.748199999332428 ], [ 357008.329599998891354, 259361.586599998176098 ], [ 357009.95830000191927, 259360.702399998903275 ], [ 357019.304399996995926, 259355.628899998962879 ], [ 357034.355599999427795, 259351.552499998360872 ], [ 357037.804799996316433, 259336.187800001353025 ], [ 357036.864100001752377, 259296.364900000393391 ], [ 357018.36370000243187, 259293.229200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019600", "MAP": "D9-5733-T94", "PARCEL_NAM": "9-3 REM", "ACRE": "1.048", "LONGITUDE": -64.94866126, "LATITUDE": 18.36336148, "OBJECTID_1": 3773, "PARCEL_NO_": "102801019600", "Tax_Legal_": "ST PETER 9-3 LT. NORTHSIDE", "Name": "BERRY, DAVID J", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 356100, "Improved_V": 27300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.822053971, "SHAPE_Area": 4849.2748564800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356941.53999999910593, 259330.543600000441074 ], [ 356941.226400002837181, 259326.153599999845028 ], [ 356947.497699998319149, 259325.212900001555681 ], [ 356950.821599997580051, 259321.612100001424551 ], [ 356937.342799998819828, 259278.719000000506639 ], [ 356927.429499998688698, 259277.770399998873472 ], [ 356928.370200000703335, 259261.778499998152256 ], [ 356886.472599998116493, 259263.068799998611212 ], [ 356869.98309999704361, 259263.57660000026226 ], [ 356871.041599996387959, 259270.736000001430511 ], [ 356876.85080000013113, 259326.752099998295307 ], [ 356878.938500002026558, 259346.883299998939037 ], [ 356898.828100003302097, 259335.200100000947714 ], [ 356941.53999999910593, 259330.543600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019600", "MAP": "D9-5733-T94", "PARCEL_NAM": "9-3-1", "ACRE": ".574", "LONGITUDE": -64.94846917, "LATITUDE": 18.36423189, "OBJECTID_1": 3773, "PARCEL_NO_": "102801019600", "Tax_Legal_": "ST PETER 9-3 LT. NORTHSIDE", "Name": "BERRY, DAVID J", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 356100, "Improved_V": 27300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.02643926299999, "SHAPE_Area": 2666.04522124 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356992.651299998164177, 259409.029199998825788 ], [ 356991.745999999344349, 259404.889499999582767 ], [ 356982.148900002241135, 259409.009100001305342 ], [ 356961.405500002205372, 259398.002399999648333 ], [ 356955.486800000071526, 259395.481499999761581 ], [ 356949.975500002503395, 259393.134100001305342 ], [ 356942.355499997735023, 259383.820700000971556 ], [ 356930.525799997150898, 259364.685899998992682 ], [ 356883.493000000715256, 259390.800400000065565 ], [ 356886.725900001823902, 259421.974599998444319 ], [ 356926.2787000015378, 259406.637800000607967 ], [ 356935.46509999781847, 259406.534600000828505 ], [ 356955.713699996471405, 259406.307100001722574 ], [ 356981.179799996316433, 259415.567499998956919 ], [ 356993.278399996459484, 259429.410999998450279 ], [ 356993.592000000178814, 259419.376899998635054 ], [ 356992.651299998164177, 259409.029199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801016700", "MAP": "G9-2612-T77", "PARCEL_NAM": "9-1", "ACRE": ".51", "LONGITUDE": -64.94853456, "LATITUDE": 18.36463436, "OBJECTID_1": 3744, "PARCEL_NO_": "102801016700", "Tax_Legal_": "ST PETER 9-1 LT. NORTHSIDE", "Name": "BRYAN, JUDITH E", "Address": "PO Box 7401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63100, "Improved_V": 176000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.02675698, "SHAPE_Area": 2134.3691763000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356938.219200000166893, 259424.482799999415874 ], [ 356886.725900001823902, 259421.974599998444319 ], [ 356887.240299999713898, 259426.934799998998642 ], [ 356890.352799996733665, 259459.610300000756979 ], [ 356904.49099999666214, 259458.769499998539686 ], [ 356934.760300002992153, 259456.956599999219179 ], [ 356958.008400000631809, 259456.136100001633167 ], [ 356958.3496999964118, 259448.797899998724461 ], [ 356938.219200000166893, 259424.482799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203021400", "MAP": "B9-497-T79", "PARCEL_NAM": "9I-A", "ACRE": ".50", "LONGITUDE": -64.9477079, "LATITUDE": 18.36556845, "OBJECTID_1": 793, "PARCEL_NO_": "101203021400", "Tax_Legal_": "ST PETER 9I-A LT. NORTHSIDE", "Name": "BISTARKEY, MARK D.", "Address": "2-6 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.32918052799999, "SHAPE_Area": 2135.6435279699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356971.3412000015378, 259518.458700001239777 ], [ 356971.793700002133846, 259553.373399998992682 ], [ 357039.924800001084805, 259568.778799999505281 ], [ 357043.714900001883507, 259566.834199998527765 ], [ 357051.828299999237061, 259560.989900000393391 ], [ 357054.26349999755621, 259559.109999999403954 ], [ 357069.698499999940395, 259545.726399999111891 ], [ 357073.861900001764297, 259541.438999999314547 ], [ 357061.849600002169609, 259547.625399999320507 ], [ 357049.9341000020504, 259554.523899998515844 ], [ 357034.88289999961853, 259555.151000000536442 ], [ 357023.280900001525879, 259550.447500001639128 ], [ 357015.128200002014637, 259532.574200000613928 ], [ 357014.384999997913837, 259528.539599999785423 ], [ 356971.3412000015378, 259518.458700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94853195, "LATITUDE": 18.36525544, "OBJECTID_1": 785, "PARCEL_NO_": "101203020400", "Tax_Legal_": "ST PETER 9M LITTLE NORTHSIDE", "Name": "ANDERSON, THOMAS G", "Address": "7529 Upper Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56300, "Improved_V": 135800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.02486414399999, "SHAPE_Area": 1851.9887211600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356947.335799999535084, 259493.69370000064373 ], [ 356894.321599997580051, 259488.846900001168251 ], [ 356895.247599996626377, 259497.445799998939037 ], [ 356896.835100002586842, 259508.558400001376867 ], [ 356897.893500000238419, 259517.818799998611212 ], [ 356899.772699996829033, 259527.823699999600649 ], [ 356901.814400002360344, 259538.692899998277426 ], [ 356916.922600001096725, 259535.234299998730421 ], [ 356941.48589999973774, 259515.652699999511242 ], [ 356945.495200000703335, 259512.247900001704693 ], [ 356949.610399998724461, 259493.794599998742342 ], [ 356947.335799999535084, 259493.69370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011400", "MAP": "D9-5733-T94", "PARCEL_NAM": "9 REM", "ACRE": null, "LONGITUDE": -64.94796546000001, "LATITUDE": 18.36470938, "OBJECTID_1": 3696, "PARCEL_NO_": "102801011400", "Tax_Legal_": "ST PETER 9 REMAINDER LITTLE NORTHSIDE", "Name": "BERRY, CHRISTY LYNN", "Address": "9 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 128100, "Improved_V": 37700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.16710394, "SHAPE_Area": 4254.5216673200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356981.179799996316433, 259415.567499998956919 ], [ 356955.713699996471405, 259406.307100001722574 ], [ 356935.46509999781847, 259406.534600000828505 ], [ 356926.2787000015378, 259406.637800000607967 ], [ 356928.663400001823902, 259410.28940000012517 ], [ 356936.862099997699261, 259422.843499999493361 ], [ 356958.3496999964118, 259448.797899998724461 ], [ 356958.008400000631809, 259456.136100001633167 ], [ 356958.031999997794628, 259456.142900001257658 ], [ 356958.006700001657009, 259456.143699999898672 ], [ 356953.325400002300739, 259477.135600000619888 ], [ 357021.812899999320507, 259492.437800001353025 ], [ 357021.743199996650219, 259492.680799998342991 ], [ 357022.026699997484684, 259492.437800001353025 ], [ 357027.357299998402596, 259483.971500001847744 ], [ 357029.23870000243187, 259477.072999998927116 ], [ 357027.637500002980232, 259473.257599998265505 ], [ 357026.516400001943111, 259470.174600001424551 ], [ 357021.87780000269413, 259465.535999998450279 ], [ 357021.812899999320507, 259465.471099998801947 ], [ 357010.838100001215935, 259457.945500001311302 ], [ 357001.117499999701977, 259451.046999998390675 ], [ 356997.354800000786781, 259442.267200000584126 ], [ 356993.278399996459484, 259429.410999998450279 ], [ 356981.179799996316433, 259415.567499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203020600", "MAP": "D9-9108-T016", "PARCEL_NAM": "9H & 9J", "ACRE": "0.66", "LONGITUDE": -64.94793491, "LATITUDE": 18.36517971, "OBJECTID_1": 787, "PARCEL_NO_": "101203020600", "Tax_Legal_": "ST PETER 9H&9J LITTLE NORTHSIDE", "Name": "LAPLACE, FRANK & KRYSTLE GARCIA", "Address": "PO Box 11028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 106300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.05003959000001, "SHAPE_Area": 2419.3355363000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356984.706600002944469, 259484.147100001573563 ], [ 356953.325400002300739, 259477.135600000619888 ], [ 356945.495200000703335, 259512.247900001704693 ], [ 356948.375900000333786, 259513.080200001597404 ], [ 356950.428400002419949, 259513.560899998992682 ], [ 356978.401699997484684, 259520.112300001084805 ], [ 357014.384999997913837, 259528.539599999785423 ], [ 357010.738300003111362, 259508.743200000375509 ], [ 357014.348600000143051, 259502.178899999707937 ], [ 357017.636699996888638, 259496.200599998235703 ], [ 357021.743199996650219, 259492.680799998342991 ], [ 357021.812899999320507, 259492.437800001353025 ], [ 356984.706600002944469, 259484.147100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203020500", "MAP": "D9-1069-T72", "PARCEL_NAM": "9K", "ACRE": ".51", "LONGITUDE": -64.94848024, "LATITUDE": 18.36492848, "OBJECTID_1": 786, "PARCEL_NO_": "101203020500", "Tax_Legal_": "ST PETER 9K LT. NORTHSIDE", "Name": "BRADLY BRYAN & MICHELLE WIEBRACHT", "Address": "9-K State St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82000, "Improved_V": 230400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.339708137, "SHAPE_Area": 2072.7335168099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356953.325400002300739, 259477.135600000619888 ], [ 356958.006700001657009, 259456.143699999898672 ], [ 356949.491400003433228, 259456.444200001657009 ], [ 356934.97410000115633, 259456.956599999219179 ], [ 356904.49099999666214, 259458.769499998539686 ], [ 356890.352799996733665, 259459.610300000756979 ], [ 356894.321599997580051, 259488.846900001168251 ], [ 356947.335799999535084, 259493.69370000064373 ], [ 356949.610399998724461, 259493.794599998742342 ], [ 356953.325400002300739, 259477.135600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94748198000001, "LATITUDE": 18.36530286, "OBJECTID_1": 788, "PARCEL_NO_": "101203020700", "Tax_Legal_": "9A ST. PETER LITTLE NORTHSIDE QTR", "Name": "CHALWELL, HOIESTINE L", "Address": "PO Box 303694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60800, "Improved_V": 123000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.14219979399999, "SHAPE_Area": 1124.5767485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357015.982799999415874, 259508.788899999111891 ], [ 357018.665799997746944, 259524.399099998176098 ], [ 357021.104900002479553, 259535.131099998950958 ], [ 357026.958700001239777, 259547.082699999213219 ], [ 357033.300399996340275, 259550.741300001740456 ], [ 357037.872500002384186, 259549.740100000053644 ], [ 357038.014600001275539, 259538.583200000226498 ], [ 357038.384400002658367, 259509.556499999016523 ], [ 357039.706699997186661, 259482.212799999862909 ], [ 357034.0320999994874, 259481.714999999850988 ], [ 357030.373499996960163, 259485.617499999701977 ], [ 357019.39750000089407, 259501.227699998766184 ], [ 357015.982799999415874, 259508.788899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801010300", "MAP": "D9-5573-T93", "PARCEL_NAM": "9B-1", "ACRE": ".72", "LONGITUDE": -64.94754412, "LATITUDE": 18.36454206, "OBJECTID_1": 3685, "PARCEL_NO_": "102801010300", "Tax_Legal_": "ST PETER 9B-1 LITTLE NORTHSIDE QTR", "Name": "ALEXANDER, NINIAN & JENNA PEARSON", "Address": "PO Box 8603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 106300, "Improved_V": 79400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.68898054799999, "SHAPE_Area": 2373.8035714900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357042.706900000572205, 259401.668800000101328 ], [ 357022.616999998688698, 259398.48200000077486 ], [ 357010.746399998664856, 259406.547400001436472 ], [ 356998.333200000226498, 259414.981499999761581 ], [ 356998.909199997782707, 259429.762299999594688 ], [ 357005.006899997591972, 259446.592000000178814 ], [ 357009.397299997508526, 259452.689800001680851 ], [ 357020.861000001430511, 259459.031399998813868 ], [ 357029.397799998521805, 259466.348700001835823 ], [ 357035.251599997282028, 259476.348999999463558 ], [ 357039.928800001740456, 259477.619500000029802 ], [ 357041.61150000244379, 259440.217300001531839 ], [ 357041.741400003433228, 259435.586399998515844 ], [ 357042.342600002884865, 259414.142499998211861 ], [ 357042.706900000572205, 259401.668800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029600", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-11", "ACRE": ".03", "LONGITUDE": -64.93680571, "LATITUDE": 18.35021278, "OBJECTID_1": 4616, "PARCEL_NO_": "102804029600", "Tax_Legal_": "7-2,7-10,7-11 & 1/7 IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "QUESTEL, JOHN P.", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61600, "Improved_V": 232800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.992441492600001, "SHAPE_Area": 114.05791037 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358162.312600001692772, 257865.26969999819994 ], [ 358179.157200001180172, 257855.698100000619888 ], [ 358172.103200003504753, 257844.878899998962879 ], [ 358170.7804000005126, 257849.111800000071526 ], [ 358164.431000001728535, 257862.075100000947714 ], [ 358162.312600001692772, 257865.26969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804036200", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-4", "ACRE": ".34", "LONGITUDE": -64.93686112, "LATITUDE": 18.34988665, "OBJECTID_1": 4655, "PARCEL_NO_": "102804036200", "Tax_Legal_": "7-4 & 1/7TH INT IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "QUESTEL, JR., JOHN P.", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.97396923700001, "SHAPE_Area": 1433.12709829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358141.080799996852875, 257809.546799998730421 ], [ 358152.078000001609325, 257841.752999998629093 ], [ 358155.171499997377396, 257838.794100001454353 ], [ 358164.960199996829033, 257835.883900001645088 ], [ 358170.251299999654293, 257836.148499999195337 ], [ 358172.618500001728535, 257839.462600000202656 ], [ 358193.118000000715256, 257827.009700000286102 ], [ 358188.906700000166893, 257820.543600000441074 ], [ 358171.399800002574921, 257793.169300001114607 ], [ 358165.707099996507168, 257798.822200000286102 ], [ 358141.080799996852875, 257809.546799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804036300", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-5", "ACRE": ".34", "LONGITUDE": -64.9371904, "LATITUDE": 18.35002024, "OBJECTID_1": 4656, "PARCEL_NO_": "102804036300", "Tax_Legal_": "7-5 & 1/7TH INT IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "QUERRARD, ANNA L.", "Address": "7629 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.906356117, "SHAPE_Area": 1255.4515910600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358108.679300002753735, 257823.657499998807907 ], [ 358122.319099999964237, 257857.491300001740456 ], [ 358136.123400002717972, 257852.815600000321865 ], [ 358149.08669999986887, 257844.61430000141263 ], [ 358152.078000001609325, 257841.752999998629093 ], [ 358141.080799996852875, 257809.546799998730421 ], [ 358108.679300002753735, 257823.657499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804036100", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-3", "ACRE": ".40", "LONGITUDE": -64.9366019, "LATITUDE": 18.35018154, "OBJECTID_1": 4654, "PARCEL_NO_": "102804036100", "Tax_Legal_": "7-3 & 1/7TH INT IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "QUESTEL, AMELIA E. (LIFE ESTATE)", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54200, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.593491341, "SHAPE_Area": 1154.0780422099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358172.103200003504753, 257844.878899998962879 ], [ 358193.329599998891354, 257877.435600001364946 ], [ 358215.97070000320673, 257861.928399998694658 ], [ 358211.989500001072884, 257855.985199999064207 ], [ 358193.118000000715256, 257827.009700000286102 ], [ 358172.618500001728535, 257839.462600000202656 ], [ 358172.896899998188019, 257839.852299999445677 ], [ 358172.103200003504753, 257844.878899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029500", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-8", "ACRE": ".36", "LONGITUDE": -64.93727918, "LATITUDE": 18.35042512, "OBJECTID_1": 4615, "PARCEL_NO_": "102804029500", "Tax_Legal_": "7-1,7-9 & 1/7TH INT IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "BRIN, MOLLY T. & DALE E", "Address": "7806 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 309400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.63750178199999, "SHAPE_Area": 1251.2488797599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358093.2212999984622, 257904.528999999165535 ], [ 358145.851999998092651, 257874.622999999672174 ], [ 358159.404500000178814, 257852.286499999463558 ], [ 358157.817100003361702, 257848.847300000488758 ], [ 358155.171499997377396, 257849.905499998480082 ], [ 358137.975299999117851, 257861.810600001364946 ], [ 358119.191699996590614, 257868.953600000590086 ], [ 358101.466300003230572, 257878.742300000041723 ], [ 358085.509400002658367, 257894.467999998480082 ], [ 358093.2212999984622, 257904.528999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017700", "MAP": "D9-8343-T009", "PARCEL_NAM": "17-8-C", "ACRE": "0.60", "LONGITUDE": -64.94730951, "LATITUDE": 18.37083503, "OBJECTID_1": 776, "PARCEL_NO_": "101203017700", "Tax_Legal_": "17-8-C ST PETER NO.2 LT NORTHSIDE QTR", "Name": "STARSHAK, DAVID J. & CHRISTINE M.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.198603152, "SHAPE_Area": 2581.2055538899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357053.597999997437, 260161.493900001049042 ], [ 357076.065399996936321, 260152.168499998748302 ], [ 357037.409199997782707, 260076.036200001835823 ], [ 357036.301500000059605, 260092.190099999308586 ], [ 357017.924999997019768, 260120.214299999177456 ], [ 357012.412100002169609, 260129.861999999731779 ], [ 357015.168499998748302, 260139.969099998474121 ], [ 357039.517399996519089, 260155.589099999517202 ], [ 357053.597999997437, 260161.493900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017600", "MAP": "D9-8343-T009", "PARCEL_NAM": "17-8 REM", "ACRE": "0.58", "LONGITUDE": -64.94753593, "LATITUDE": 18.37125655, "OBJECTID_1": 775, "PARCEL_NO_": "101203017600", "Tax_Legal_": "17-8 REM ST PETER NO.2 LT NORTHSIDE QTR", "Name": "STARSHAK, DAVID J. & CHRISTINE M.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 108800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.68237585600002, "SHAPE_Area": 3412.6855498300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356983.81139999628067, 260136.931499999016523 ], [ 357015.164300002157688, 260225.608800001442432 ], [ 357038.392700001597404, 260208.311000000685453 ], [ 357037.679799996316433, 260204.746300000697374 ], [ 357044.11150000244379, 260196.47690000012517 ], [ 357061.278200000524521, 260183.82149999961257 ], [ 357052.380999997258186, 260169.371500000357628 ], [ 357036.301500000059605, 260163.399099998176098 ], [ 357024.816200003027916, 260156.967399999499321 ], [ 357009.196199998259544, 260147.319699998944998 ], [ 357002.764399997889996, 260128.483800001442432 ], [ 356998.334700003266335, 260114.899500001221895 ], [ 356983.81139999628067, 260136.931499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94741578, "LATITUDE": 18.37087907, "OBJECTID_1": 777, "PARCEL_NO_": "101203017800", "Tax_Legal_": "17-8-1 ST PETER NO.2 LT NORTHSIDE QTR", "Name": "STARSHAK, DAVID J. & CHRISTINE M.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 533.00486384400006, "SHAPE_Area": 3304.7928706600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356998.334700003266335, 260114.899500001221895 ], [ 357002.764399997889996, 260128.483800001442432 ], [ 357009.196199998259544, 260147.319699998944998 ], [ 357024.816200003027916, 260156.967399999499321 ], [ 357036.301500000059605, 260163.399099998176098 ], [ 357052.380999997258186, 260169.371500000357628 ], [ 357061.278200000524521, 260183.82149999961257 ], [ 357044.11150000244379, 260196.47690000012517 ], [ 357037.679799996316433, 260204.746300000697374 ], [ 357038.598600000143051, 260209.340399999171495 ], [ 357045.949199996888638, 260222.663400001823902 ], [ 357061.10980000346899, 260237.824000000953674 ], [ 357065.703900001943111, 260239.661699999123812 ], [ 357074.432800002396107, 260235.067499998956919 ], [ 357075.810999996960163, 260231.851599998772144 ], [ 357074.432800002396107, 260227.257500000298023 ], [ 357067.08219999819994, 260221.744600001722574 ], [ 357057.893899999558926, 260219.447500001639128 ], [ 357051.462099999189377, 260212.096900001168251 ], [ 357051.462099999189377, 260202.449200000613928 ], [ 357063.866300001740456, 260190.963899999856949 ], [ 357070.652900002896786, 260179.949099998921156 ], [ 357064.325699999928474, 260168.912099998444319 ], [ 357053.759199999272823, 260161.561500001698732 ], [ 357039.517399996519089, 260155.589099999517202 ], [ 357015.168499998748302, 260139.969099998474121 ], [ 357012.412100002169609, 260129.861999999731779 ], [ 357017.924999997019768, 260120.214299999177456 ], [ 357036.301500000059605, 260092.190099999308586 ], [ 357037.409199997782707, 260076.036200001835823 ], [ 357020.893799997866154, 260043.509500000625849 ], [ 357003.082999996840954, 260051.807399999350309 ], [ 357017.305299997329712, 260086.120999999344349 ], [ 356998.334700003266335, 260114.899500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204072600", "MAP": "D9-8146-T008", "PARCEL_NAM": null, "ACRE": ".71", "LONGITUDE": -64.95198651, "LATITUDE": 18.3354863, "OBJECTID_1": 8934, "PARCEL_NO_": "105204072600", "Tax_Legal_": "170 REM.SUBBASE(CROWN BAY LAND FILL) No.6 SOUTHSIDE QTR.", "Name": "VIRGIN ISLANDS GOVERNMENT", "Address": "2nd King Terminal", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 676300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.31900229799999, "SHAPE_Area": 2882.4358452000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356548.718199998140335, 256215.473999999463558 ], [ 356564.678999997675419, 256235.025299999862909 ], [ 356579.733800001442432, 256253.567200001329184 ], [ 356615.917000003159046, 256222.96510000154376 ], [ 356585.293600000441074, 256181.576200000941753 ], [ 356582.095299996435642, 256178.383699998259544 ], [ 356574.872699998319149, 256174.313799999654293 ], [ 356568.440099999308586, 256172.150199998170137 ], [ 356556.347199998795986, 256171.84010000154376 ], [ 356549.880599997937679, 256173.686999998986721 ], [ 356569.829800002276897, 256198.337200000882149 ], [ 356552.778499998152256, 256212.129799999296665 ], [ 356548.718199998140335, 256215.473999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802012900", "MAP": "D9-6501-T98", "PARCEL_NAM": "2HA-2", "ACRE": null, "LONGITUDE": -64.93921314000001, "LATITUDE": 18.36246388, "OBJECTID_1": 4048, "PARCEL_NO_": "102802012900", "Tax_Legal_": "LERKENLUND 2HA-2 GT.NORTHSIDE QTR.", "Name": "BYRAN, EVELYN", "Address": "PO Box 9527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.36935516099999, "SHAPE_Area": 2001.9767904800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357876.51969999819994, 259195.985300000756979 ], [ 357893.791000001132488, 259238.576799999922514 ], [ 357937.50450000166893, 259218.669599998742342 ], [ 357916.674900002777576, 259181.433899998664856 ], [ 357876.51969999819994, 259195.985300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023400", "MAP": "D9-8517-T011", "PARCEL_NAM": "97-REM", "ACRE": ".736", "LONGITUDE": -64.93806318, "LATITUDE": 18.34986351, "OBJECTID_1": 4538, "PARCEL_NO_": "102804023400", "Tax_Legal_": "97E, 97D & ROW 97-1 AGNES FANCY 8H GREAT NORTHSIDE QUARTER", "Name": "QUESTEL, JOHN P.", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 117100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.09983480099999, "SHAPE_Area": 3166.8659852800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357996.493500001728535, 257838.368999999016523 ], [ 358034.021899998188019, 257837.243200000375509 ], [ 358095.291799999773502, 257829.487700000405312 ], [ 358029.625500001013279, 257775.965799998492002 ], [ 358027.222699999809265, 257774.046300001442432 ], [ 358017.23589999973774, 257810.483800001442432 ], [ 358001.13120000064373, 257807.818799998611212 ], [ 357996.493500001728535, 257838.368999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023400", "MAP": "D9-8517-T011", "PARCEL_NAM": "97-1", "ACRE": ".10", "LONGITUDE": -64.93788065, "LATITUDE": 18.35066155, "OBJECTID_1": 4538, "PARCEL_NO_": "102804023400", "Tax_Legal_": "97E, 97D & ROW 97-1 AGNES FANCY 8H GREAT NORTHSIDE QUARTER", "Name": "QUESTEL, JOHN P.", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 117100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.40126740700001, "SHAPE_Area": 483.78197616 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358033.148900002241135, 257910.138199999928474 ], [ 358035.331399999558926, 257912.320700000971556 ], [ 358040.569399997591972, 257923.669700000435114 ], [ 358045.8074000030756, 257918.431699998676777 ], [ 358045.8074000030756, 257915.812699999660254 ], [ 358047.116899996995926, 257912.757199998944998 ], [ 358049.299300000071526, 257911.011199999600649 ], [ 358053.664300002157688, 257910.138199999928474 ], [ 358085.509300000965595, 257894.467999998480082 ], [ 358080.368699997663498, 257887.761399999260902 ], [ 358071.124200001358986, 257892.678399998694658 ], [ 358043.624899998307228, 257904.900299999862909 ], [ 358033.148900002241135, 257910.138199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804037900", "MAP": "D9-8517-T011", "PARCEL_NAM": null, "ACRE": ".50", "LONGITUDE": -64.9383283, "LATITUDE": 18.35091742, "OBJECTID_1": 4662, "PARCEL_NO_": "102804037900", "Tax_Legal_": "97B AGNES FANCY NO.8H GREAT NORTHSID QTR", "Name": "QUESTEL, JASON P.", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.27899960299999, "SHAPE_Area": 2669.2207484700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357978.919200003147125, 257954.135999999940395 ], [ 358042.559399999678135, 257954.656800001859665 ], [ 358040.569399997591972, 257923.669700000435114 ], [ 358037.797100000083447, 257917.662999998778105 ], [ 357987.208599999547005, 257899.531199999153614 ], [ 357978.919200003147125, 257954.135999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023400", "MAP": "D9-8517-T011", "PARCEL_NAM": "97E", "ACRE": ".50", "LONGITUDE": -64.93829585, "LATITUDE": 18.35039552, "OBJECTID_1": 4538, "PARCEL_NO_": "102804023400", "Tax_Legal_": "97E, 97D & ROW 97-1 AGNES FANCY 8H GREAT NORTHSIDE QUARTER", "Name": "QUESTEL, JOHN P.", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 117100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.720894904, "SHAPE_Area": 3026.3712238399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357987.208599999547005, 257899.531199999153614 ], [ 358037.797100000083447, 257917.662999998778105 ], [ 358035.331399999558926, 257912.320700000971556 ], [ 358033.148900002241135, 257910.138199999928474 ], [ 358035.49379999935627, 257837.05689999833703 ], [ 358034.021899998188019, 257837.243200000375509 ], [ 357996.493500001728535, 257838.368999999016523 ], [ 357987.208599999547005, 257899.531199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103032600", "MAP": "D9-6516-T98", "PARCEL_NAM": "18A", "ACRE": ".508", "LONGITUDE": -64.96680297, "LATITUDE": 18.36267796, "OBJECTID_1": 462, "PARCEL_NO_": "101103032600", "Tax_Legal_": "NELTJEBERG 18A & 18 REM/EASTERN PT LT. NORTHSIDE", "Name": "NANCY E BELL REVOCABLE LIVING TRUST", "Address": "PO Box 1686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 95900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.09879014099999, "SHAPE_Area": 1926.5995131899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355018.829499997198582, 259205.811200000345707 ], [ 355018.648999996483326, 259183.380800001323223 ], [ 355014.697400003671646, 259185.881900001317263 ], [ 354962.920699998736382, 259201.414200000464916 ], [ 354951.728200003504753, 259224.296599999070168 ], [ 354977.250900000333786, 259227.371899999678135 ], [ 354992.581699997186661, 259226.230799999088049 ], [ 355018.944799996912479, 259220.132800001651049 ], [ 355018.829499997198582, 259205.811200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103032600", "MAP": "D9-6516-T98", "PARCEL_NAM": "18 REM", "ACRE": ".502", "LONGITUDE": -64.96738824000001, "LATITUDE": 18.36267363, "OBJECTID_1": 462, "PARCEL_NO_": "101103032600", "Tax_Legal_": "NELTJEBERG 18A & 18 REM/EASTERN PT LT. NORTHSIDE", "Name": "NANCY E BELL REVOCABLE LIVING TRUST", "Address": "PO Box 1686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 95900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.135005681, "SHAPE_Area": 1896.0357145800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354874.195799998939037, 259208.585499998182058 ], [ 354874.969700001180172, 259212.391499999910593 ], [ 354902.310599997639656, 259221.270100001245737 ], [ 354920.830700002610683, 259224.377000000327826 ], [ 354949.056999996304512, 259223.974800001829863 ], [ 354951.728200003504753, 259224.296599999070168 ], [ 354962.920699998736382, 259201.414200000464916 ], [ 354948.141599997878075, 259181.474199999123812 ], [ 354947.803999997675419, 259181.745799999684095 ], [ 354921.041000001132488, 259199.680799998342991 ], [ 354910.515799999237061, 259204.660900000482798 ], [ 354896.785099998116493, 259207.292700000107288 ], [ 354888.718400001525879, 259207.648899998515844 ], [ 354881.47240000218153, 259206.322999998927116 ], [ 354877.437200002372265, 259206.712200000882149 ], [ 354874.195799998939037, 259208.585499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602025700", "MAP": "D9-6516-T98", "PARCEL_NAM": "18-B", "ACRE": ".504", "LONGITUDE": -64.96689145000001, "LATITUDE": 18.36238358, "OBJECTID_1": 2455, "PARCEL_NO_": "102602025700", "Tax_Legal_": "18-B NELTJEBERG EASTERN PART No.6 LITTLE NORTHSIDE QUARTER", "Name": "BORGESEN, CHRISTOPHER A. & CHRIST", "Address": "PO Box 8597", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68000, "Improved_V": 287700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.55905774799999, "SHAPE_Area": 2003.8804565 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355018.648999996483326, 259183.380800001323223 ], [ 354977.966600000858307, 259143.362500000745058 ], [ 354975.51349999755621, 259147.353199999779463 ], [ 354967.320900000631809, 259162.484900001436472 ], [ 354954.299500003457069, 259176.521600000560284 ], [ 354948.141599997878075, 259181.474199999123812 ], [ 354962.920699998736382, 259201.414200000464916 ], [ 355014.697400003671646, 259185.881900001317263 ], [ 355018.648999996483326, 259183.380800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201022200", "MAP": "D9-7685-T005", "PARCEL_NAM": "412", "ACRE": ".12", "LONGITUDE": -64.96319095, "LATITUDE": 18.34735254, "OBJECTID_1": 7498, "PARCEL_NO_": "105201022200", "Tax_Legal_": "204 & REM 412 ESTATE CONTANT NO 7A SOUTHSIDE QTR", "Name": "MAUREEN A. DAVID HENDRICKS & KALIA RICHARDSON", "Address": "PO Box 304091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27700, "Improved_V": 169200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.017659544, "SHAPE_Area": 563.90374546099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355366.722800001502037, 257524.079199999570847 ], [ 355371.318999998271465, 257536.908700000494719 ], [ 355396.513599999248981, 257518.307000000029802 ], [ 355399.902099996805191, 257510.207499999552965 ], [ 355395.260200001299381, 257487.160300001502037 ], [ 355386.191200003027916, 257510.517499998211861 ], [ 355366.722800001502037, 257524.079199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201021900", "MAP": "D9-7685-T005", "PARCEL_NAM": "412A", "ACRE": ".10", "LONGITUDE": -64.96317132, "LATITUDE": 18.34752661, "OBJECTID_1": 7495, "PARCEL_NO_": "105201021900", "Tax_Legal_": "207 & 412A ESTATE CONTANT 7A SOUTHSIDE QTR", "Name": "Olwin J.Lewis, Jr, Cereese N. Lewis-Smith & Coreen A.B. Smith", "Address": "PO Box 304867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034867, "Country": "United States", "Land_Value": 22700, "Improved_V": 38800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.572547868, "SHAPE_Area": 554.35927754700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355371.318999998271465, 257536.908700000494719 ], [ 355376.962099999189377, 257552.660700000822544 ], [ 355385.070200003683567, 257547.449700001627207 ], [ 355394.780100002884865, 257543.518399998545647 ], [ 355398.005400002002716, 257543.544799998402596 ], [ 355398.883599996566772, 257535.108199998736382 ], [ 355399.902099996805191, 257510.207499999552965 ], [ 355396.513599999248981, 257518.307000000029802 ], [ 355371.318999998271465, 257536.908700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804025800", "MAP": "D9-7622-T005", "PARCEL_NAM": "23-B", "ACRE": ".57", "LONGITUDE": -64.93744715, "LATITUDE": 18.35291798, "OBJECTID_1": 4562, "PARCEL_NO_": "102804025800", "Tax_Legal_": "23-B ESTATE ELIZABETH 8I GREAT NOPRTHSIDE QTR", "Name": "LUIS MANUEL MAGRAS FAM TR", "Address": "PO Box 305495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104800, "Improved_V": 436900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.03689752400001, "SHAPE_Area": 1767.65092134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358066.908399999141693, 258145.366500001400709 ], [ 358098.462700001895428, 258178.082299999892712 ], [ 358122.214100003242493, 258171.468600001186132 ], [ 358133.678700000047684, 258150.875199999660254 ], [ 358092.72580000013113, 258130.697200000286102 ], [ 358073.275399997830391, 258142.148200001567602 ], [ 358066.908399999141693, 258145.366500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027100", "MAP": "D9-7622-T005", "PARCEL_NAM": "23-C", "ACRE": ".502", "LONGITUDE": -64.93775447, "LATITUDE": 18.35303969, "OBJECTID_1": 4576, "PARCEL_NO_": "102804027100", "Tax_Legal_": "23-C ESTATE ELIZABETH 8I GREAT NORTHSIDE QTR.", "Name": "MARIE JOSEPHINE MAGRAS BAKER TRUST", "Address": "PO Box 7937", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.97317209900001, "SHAPE_Area": 1211.51728841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358040.888099998235703, 258157.820300001651049 ], [ 358066.129399999976158, 258187.502199999988079 ], [ 358089.074299998581409, 258180.69649999961257 ], [ 358098.462700001895428, 258178.082299999892712 ], [ 358066.908399999141693, 258145.366500001400709 ], [ 358045.740299999713898, 258156.066100001335144 ], [ 358040.888099998235703, 258157.820300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021700", "MAP": "D9-7622-T005", "PARCEL_NAM": "23-REM", "ACRE": ".665", "LONGITUDE": -64.93785687, "LATITUDE": 18.35329817, "OBJECTID_1": 4521, "PARCEL_NO_": "102804021700", "Tax_Legal_": "23-REM. ESTATE ELIZABETH 8I NORTHSIDE QTR.", "Name": "MARIE JOSEPHINE MAGRAS BAKER TRUST", "Address": "PO Box 7937", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 115900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.29674188000001, "SHAPE_Area": 2436.6620899599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358029.045800000429153, 258222.635000001639128 ], [ 358037.128700003027916, 258220.379200000315905 ], [ 358058.123400002717972, 258216.962400000542402 ], [ 358072.658600002527237, 258214.548200000077486 ], [ 358096.077600002288818, 258210.51799999922514 ], [ 358089.074299998581409, 258180.69649999961257 ], [ 358066.129399999976158, 258187.502199999988079 ], [ 358040.888099998235703, 258157.820300001651049 ], [ 358036.033900000154972, 258159.575300000607967 ], [ 358029.045800000429153, 258222.635000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022700", "MAP": "D9-8327-T009", "PARCEL_NAM": "41-C", "ACRE": ".322", "LONGITUDE": -64.95623932, "LATITUDE": 18.34340755, "OBJECTID_1": 8118, "PARCEL_NO_": "105202022700", "Tax_Legal_": "41-C ESTATE CONTANT", "Name": "DISCOUNT CAR RENTAL & SALES INC", "Address": "PO Box 303708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 129900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.683178309, "SHAPE_Area": 1406.1471634 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356082.664200000464916, 257078.648699998855591 ], [ 356102.727300003170967, 257097.609000001102686 ], [ 356102.726000003516674, 257097.909600000828505 ], [ 356153.761200003325939, 257097.122900001704693 ], [ 356151.80799999833107, 257071.022399999201298 ], [ 356082.664200000464916, 257078.648699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022200", "MAP": "D9-8703-T012", "PARCEL_NAM": "41-E", "ACRE": ".84", "LONGITUDE": -64.95683798, "LATITUDE": 18.34372229, "OBJECTID_1": 8113, "PARCEL_NO_": "105202022200", "Tax_Legal_": "41 REM CONTANT 7A SOUTHSIDE QTR", "Name": "BELMONTE, ALEX", "Address": "PO Box 303708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 291200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.58638319, "SHAPE_Area": 3766.2401499699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356102.501800000667572, 257149.565400000661612 ], [ 356102.726000003516674, 257097.909600000828505 ], [ 356098.013400003314018, 257097.982200000435114 ], [ 356088.052000001072884, 257098.135800000280142 ], [ 356009.843199998140335, 257100.478700000792742 ], [ 356010.389200001955032, 257123.836599998176098 ], [ 356013.564099997282028, 257129.773200001567602 ], [ 356016.766000002622604, 257132.543600000441074 ], [ 356021.589500002563, 257134.271899998188019 ], [ 356040.104099996387959, 257138.011999998241663 ], [ 356065.880900003015995, 257141.178300000727177 ], [ 356085.098899997770786, 257144.541900001466274 ], [ 356092.451499998569489, 257145.828699998557568 ], [ 356102.501800000667572, 257149.565400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602025800", "MAP": "A9-572-T002", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97078223, "LATITUDE": 18.36278865, "OBJECTID_1": 2456, "PARCEL_NO_": "102602025800", "Tax_Legal_": "8-1-B NELTJBERG NO.6 LITTLE NORTHSIDE QTR", "Name": "JANET SEABERG", "Address": "150001 VIA DEL CORSO", "City": "Austin", "State": "Texas", "Zip": 78738, "Country": "United States", "Land_Value": 74900, "Improved_V": 415100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.86242716000001, "SHAPE_Area": 2409.38559747 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354606.835299998521805, 259222.116300001740456 ], [ 354590.58500000089407, 259208.729499999433756 ], [ 354574.728100001811981, 259195.971599999815226 ], [ 354567.975900001823902, 259190.336399998515844 ], [ 354563.338100001215935, 259186.722199998795986 ], [ 354559.07150000333786, 259189.118900001049042 ], [ 354546.904899999499321, 259197.462999999523163 ], [ 354532.009999997913837, 259209.511399999260902 ], [ 354534.993100002408028, 259212.691700000315905 ], [ 354551.122100003063679, 259228.389299999922514 ], [ 354576.930299997329712, 259253.270399998873472 ], [ 354586.178000003099442, 259242.475499998778105 ], [ 354594.825300000607967, 259232.850900001823902 ], [ 354606.835299998521805, 259222.116300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103036200", "MAP": "A9-572-T002", "PARCEL_NAM": "8-1-C", "ACRE": "0.60", "LONGITUDE": -64.9702812, "LATITUDE": 18.36244932, "OBJECTID_1": 489, "PARCEL_NO_": "101103036200", "Tax_Legal_": "8-1-C NELTJEBERG EASTERN SECTION NO.6 LITTLE NORTHSIDE QUARTER", "Name": "KOPKO, FREDERICK H.", "Address": "PO Box 303620", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.69985099899998, "SHAPE_Area": 4151.9696565699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354678.977399997413158, 259173.760999999940395 ], [ 354662.543200001120567, 259153.785599999129772 ], [ 354652.295400001108646, 259141.790899999439716 ], [ 354649.779500000178814, 259142.787399999797344 ], [ 354626.28490000218153, 259155.682900000363588 ], [ 354572.035400003194809, 259181.83669999986887 ], [ 354563.338100001215935, 259186.722199998795986 ], [ 354567.975900001823902, 259190.336399998515844 ], [ 354574.728100001811981, 259195.971599999815226 ], [ 354590.58500000089407, 259208.729499999433756 ], [ 354606.835299998521805, 259222.116300001740456 ], [ 354612.089500002563, 259217.420000001788139 ], [ 354626.072599999606609, 259205.781800001859665 ], [ 354635.592399999499321, 259197.926600001752377 ], [ 354643.017800003290176, 259193.285900000482798 ], [ 354654.594200000166893, 259186.954700000584126 ], [ 354666.166599996387959, 259181.133400000631809 ], [ 354675.369800001382828, 259175.919399999082088 ], [ 354678.977399997413158, 259173.760999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602025500", "MAP": "A9-572-T002", "PARCEL_NAM": "8-1-D", "ACRE": null, "LONGITUDE": -64.96950332, "LATITUDE": 18.36204534, "OBJECTID_1": 2453, "PARCEL_NO_": "102602025500", "Tax_Legal_": "8-1-D NELTJBERG NO.6 LITTLE NORTHSIDE QTR", "Name": "HAIRSTON, EVELYN S.", "Address": "PO Box 305882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.923669335, "SHAPE_Area": 3101.45520562 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354652.295400001108646, 259141.790899999439716 ], [ 354662.543200001120567, 259153.785599999129772 ], [ 354678.977399997413158, 259173.760999999940395 ], [ 354684.575400002300739, 259170.411699999123812 ], [ 354695.267899997532368, 259163.740899998694658 ], [ 354707.733499996364117, 259157.084300000220537 ], [ 354716.052599996328354, 259151.569600000977516 ], [ 354729.130400002002716, 259142.274099998176098 ], [ 354737.45889999717474, 259135.584399998188019 ], [ 354744.917199999094009, 259126.831500001251698 ], [ 354749.704199999570847, 259119.526000000536442 ], [ 354755.699100002646446, 259108.9989 ], [ 354759.017899997532368, 259100.506599999964237 ], [ 354760.819700002670288, 259093.481100000441074 ], [ 354761.168499998748302, 259091.538699999451637 ], [ 354748.505599997937679, 259101.798900000751019 ], [ 354739.589400000870228, 259107.214400000870228 ], [ 354652.295400001108646, 259141.790899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97102155, "LATITUDE": 18.36301132, "OBJECTID_1": 2454, "PARCEL_NO_": "102602025600", "Tax_Legal_": "8-1-A NELTJBERG NO.6 LT NORTHSIDE QTR", "Name": "NIEVES, KILOLO & PEDRO", "Address": "PO BOX 304349", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.50744630200001, "SHAPE_Area": 1954.4068320900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354509.517099998891354, 259229.398499999195337 ], [ 354515.306199997663498, 259235.447000000625849 ], [ 354526.449000000953674, 259246.404699999839067 ], [ 354556.943199999630451, 259276.610700000077486 ], [ 354561.115500003099442, 259272.237799998372793 ], [ 354565.890699997544289, 259266.40089999884367 ], [ 354576.930299997329712, 259253.270399998873472 ], [ 354551.122100003063679, 259228.389299999922514 ], [ 354534.993100002408028, 259212.691700000315905 ], [ 354532.009999997913837, 259209.511399999260902 ], [ 354529.85360000282526, 259211.255699999630451 ], [ 354514.404200002551079, 259226.328000001609325 ], [ 354509.517099998891354, 259229.398499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602026300", "MAP": "D9-8778-T013", "PARCEL_NAM": "8-1-F", "ACRE": ".500", "LONGITUDE": -64.971514, "LATITUDE": 18.3631357, "OBJECTID_1": 2461, "PARCEL_NO_": "102602026300", "Tax_Legal_": "8-1-F NELTJBERG (WESTERN SECT.) No.6 LITTLE NORTHSIDE QUARTER", "Name": "MATTHEW, NIKKORI OHANIO", "Address": "PO Box 10437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.61048668500001, "SHAPE_Area": 2095.3763307499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354452.389399997889996, 259254.169100001454353 ], [ 354475.633599996566772, 259284.010999999940395 ], [ 354532.375399999320507, 259252.275100000202656 ], [ 354526.449000000953674, 259246.404699999839067 ], [ 354515.306199997663498, 259235.447000000625849 ], [ 354509.517099998891354, 259229.398499999195337 ], [ 354499.811499997973442, 259235.496599998325109 ], [ 354452.389399997889996, 259254.169100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021400", "MAP": "D9-6604-T99/ D9-7728-T006", "PARCEL_NAM": "23-17", "ACRE": null, "LONGITUDE": -64.93270116, "LATITUDE": 18.34971314, "OBJECTID_1": 4795, "PARCEL_NO_": "102903021400", "Tax_Legal_": "23-17,23-16-1,&23-18 MAFOLIE NO.8F GREAT NORTHSIDE QTR", "Name": "BAA, JULIEN and JASMINE TURNER", "Address": "2339 S Holt Ave", "City": "Los Angeles", "State": "California", "Zip": 90034, "Country": "United States", "Land_Value": 144900, "Improved_V": 294600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.56835761, "SHAPE_Area": 1525.48229954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.7179000005126, 257807.069299999624491 ], [ 358618.276799999177456, 257775.717399999499321 ], [ 358602.107299998402596, 257780.651299998164177 ], [ 358598.054200001060963, 257783.151299998164177 ], [ 358593.970499999821186, 257789.239500001072884 ], [ 358590.6283999979496, 257802.933299999684095 ], [ 358578.249600000679493, 257836.18470000103116 ], [ 358631.7179000005126, 257807.069299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9665257, "LATITUDE": 18.35923598, "OBJECTID_1": 2427, "PARCEL_NO_": "102602021200", "Tax_Legal_": "NELTJEBERG 6 WEST POR. LITTLE NORTHSIDE", "Name": "GEORGES, ROSETTA & VINCENT", "Address": "PO Box 7544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49400, "Improved_V": 204200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.70088345400001, "SHAPE_Area": 1079.85123133 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355014.937700003385544, 258873.909099999815226 ], [ 355018.364500001072884, 258873.313000001013279 ], [ 355023.038900002837181, 258871.443399999290705 ], [ 355023.020900003612041, 258871.4206000007689 ], [ 355021.490900002419949, 258861.697799999266863 ], [ 355023.943999998271465, 258857.707100000232458 ], [ 355027.99719999730587, 258855.207100000232458 ], [ 355023.251000002026558, 258844.402499999850988 ], [ 355037.096799999475479, 258828.261599998921156 ], [ 355031.635999999940395, 258806.685400001704693 ], [ 355018.850100003182888, 258793.070799998939037 ], [ 355012.383400000631809, 258794.917700000107288 ], [ 355014.649499997496605, 258812.879200000315905 ], [ 355015.272399999201298, 258834.415800001472235 ], [ 355015.155500002205372, 258848.135899998247623 ], [ 355014.936200000345707, 258873.887600000947714 ], [ 355014.937700003385544, 258873.909099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96641689, "LATITUDE": 18.3599719, "OBJECTID_1": 2536, "PARCEL_NO_": "102602041300", "Tax_Legal_": "21-18 DOROTHEA ESTATE NO.6 LITTLE NORTHSIDE QTR", "Name": "TURBE, MARIE", "Address": "3570 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.16612942899999, "SHAPE_Area": 1806.49658497 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355023.038900002837181, 258871.443399999290705 ], [ 355018.364500001072884, 258873.313000001013279 ], [ 355014.937700003385544, 258873.909099999815226 ], [ 355017.105099998414516, 258903.247299998998642 ], [ 355020.141599997878075, 258925.436999998986721 ], [ 355023.152199998497963, 258940.670299999415874 ], [ 355027.483800001442432, 258939.383400000631809 ], [ 355038.017399996519089, 258937.649300001561642 ], [ 355052.438799999654293, 258938.132500000298023 ], [ 355054.170299999415874, 258906.506000000983477 ], [ 355052.570299997925758, 258905.0152000002563 ], [ 355041.369999997317791, 258894.579999998211861 ], [ 355023.038900002837181, 258871.443399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704017300", "MAP": "A9-468-T95", "PARCEL_NAM": "10-1-11", "ACRE": ".4978", "LONGITUDE": -64.95183101000001, "LATITUDE": 18.35751747, "OBJECTID_1": 3489, "PARCEL_NO_": "102704017300", "Tax_Legal_": "10-1-13 LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "HINKSON, MARTIN & CECILE", "Address": "PO Box 8563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.30023780100001, "SHAPE_Area": 1895.4045313300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356540.817500002682209, 258665.918200001120567 ], [ 356604.426299996674061, 258668.445900000631809 ], [ 356604.667499996721745, 258640.130399998277426 ], [ 356604.733400002121925, 258632.397799998521805 ], [ 356549.838600002229214, 258635.088300000876188 ], [ 356549.876000002026558, 258635.249000001698732 ], [ 356550.586999997496605, 258646.442800000309944 ], [ 356545.625100001692772, 258660.967599999159575 ], [ 356540.817500002682209, 258665.918200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704017500", "MAP": "A9-468-T95", "PARCEL_NAM": "10-1-15", "ACRE": "0.0325", "LONGITUDE": -64.95170916, "LATITUDE": 18.35686319, "OBJECTID_1": 3491, "PARCEL_NO_": "102704017500", "Tax_Legal_": "10-1-15 LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "BRIGGS, COURTNEY & MARIE", "Address": "PO Box 302695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.68911108099999, "SHAPE_Area": 391.91371214700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356593.98369999974966, 258605.734900001436472 ], [ 356593.998000003397465, 258605.510800000280142 ], [ 356594.053800001740456, 258571.536800000816584 ], [ 356594.75110000371933, 258552.61259999871254 ], [ 356590.898299999535084, 258552.625 ], [ 356586.866700001060963, 258552.592000000178814 ], [ 356586.435199998319149, 258603.250900000333786 ], [ 356588.843299999833107, 258604.537099998444319 ], [ 356593.98369999974966, 258605.734900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704014200", "MAP": "A9-468-T95", "PARCEL_NAM": null, "ACRE": ".10", "LONGITUDE": -64.95150724, "LATITUDE": 18.35685137, "OBJECTID_1": 3467, "PARCEL_NO_": "102704014200", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 10-1REMAINDER No.3 GREAT NORTHSIDE QTR.", "Name": "INDUSTRIOUS, JUULIAN SR. & JULIAN JR. & FELICE & AYALA,KIMBERLY", "Address": "PO Box 304985", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 185300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.65677912500001, "SHAPE_Area": 1789.9732500299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356594.75110000371933, 258552.61259999871254 ], [ 356594.053800001740456, 258571.536800000816584 ], [ 356593.998000003397465, 258605.510800000280142 ], [ 356593.98369999974966, 258605.734900001436472 ], [ 356594.476700000464916, 258605.849800001829863 ], [ 356626.790399998426437, 258598.937100000679493 ], [ 356631.637199997901917, 258597.921300001442432 ], [ 356630.112700000405312, 258587.565200001001358 ], [ 356629.493400000035763, 258565.6064000017941 ], [ 356632.023800000548363, 258552.53940000012517 ], [ 356627.992299996316433, 258552.506400000303984 ], [ 356594.75110000371933, 258552.61259999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203017900", "MAP": "D9-6578-T99", "PARCEL_NAM": "16F-1", "ACRE": "0.81", "LONGITUDE": -64.94509238000001, "LATITUDE": 18.36815582, "OBJECTID_1": 778, "PARCEL_NO_": "101203017900", "Tax_Legal_": "16F-1 ST PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, JEFFREY PAUL", "Address": "PO Box 303911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 140800, "Improved_V": 335400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.979581771, "SHAPE_Area": 2290.39661669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357255.608400002121925, 259847.002599999308586 ], [ 357278.752599999308586, 259858.205200001597404 ], [ 357296.517599999904633, 259865.597699999809265 ], [ 357301.372100003063679, 259866.442499998956919 ], [ 357304.220799997448921, 259864.855000000447035 ], [ 357305.060500003397465, 259861.237700000405312 ], [ 357303.100500002503395, 259853.168400000780821 ], [ 357298.151799999177456, 259814.068900000303984 ], [ 357297.779899999499321, 259806.5304000005126 ], [ 357251.878899998962879, 259811.508299998939037 ], [ 357255.608400002121925, 259847.002599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203011100", "MAP": "D9-6578-T99", "PARCEL_NAM": "16F ROAD", "ACRE": ".5", "LONGITUDE": -64.94478547, "LATITUDE": 18.36837919, "OBJECTID_1": 711, "PARCEL_NO_": "101203011100", "Tax_Legal_": "16F REM & R.O.W ESTATE ST.PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, RODNEY LOUIS", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 218100, "Improved_V": 243800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 366.027035646, "SHAPE_Area": 1253.5319097900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357297.779899999499321, 259806.5304000005126 ], [ 357298.151799999177456, 259814.068900000303984 ], [ 357303.100500002503395, 259853.168400000780821 ], [ 357305.060500003397465, 259861.237700000405312 ], [ 357304.220799997448921, 259864.855000000447035 ], [ 357301.372100003063679, 259866.442499998956919 ], [ 357296.517599999904633, 259865.597699999809265 ], [ 357278.752599999308586, 259858.205200001597404 ], [ 357255.608400002121925, 259847.002599999308586 ], [ 357256.423900000751019, 259855.039299998432398 ], [ 357272.646799996495247, 259861.779599998146296 ], [ 357299.712499998509884, 259871.260999999940395 ], [ 357317.882600001990795, 259878.656800001859665 ], [ 357322.318899996578693, 259881.108899999409914 ], [ 357325.941799998283386, 259883.957100000232458 ], [ 357336.088699996471405, 259881.623500000685453 ], [ 357365.497900001704693, 259877.269999999552965 ], [ 357363.920299999415874, 259868.636100001633167 ], [ 357349.139899998903275, 259870.857500001788139 ], [ 357331.30290000140667, 259872.32319999858737 ], [ 357321.580700002610683, 259872.244199998676777 ], [ 357315.530599996447563, 259868.973600000143051 ], [ 357312.316100001335144, 259865.726100001484156 ], [ 357309.193199999630451, 259851.204500000923872 ], [ 357305.792900003492832, 259820.976500000804663 ], [ 357304.592799998819828, 259805.791600000113249 ], [ 357297.779899999499321, 259806.5304000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602026100", "MAP": "D9-8149-T008", "PARCEL_NAM": "1B-1", "ACRE": "1.49", "LONGITUDE": -64.96694047, "LATITUDE": 18.36056795, "OBJECTID_1": 2459, "PARCEL_NO_": "102602026100", "Tax_Legal_": "1B-1 ESTATE DOROTHEA NO.7A LITTLE NORHTSIDE QTR", "Name": "QUESTEL, SHERIDON", "Address": "PO Box 304175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 125800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.38705471899999, "SHAPE_Area": 4772.8501489500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355019.797399997711182, 258986.521699998527765 ], [ 355012.202299997210503, 258979.967999998480082 ], [ 355014.905199997127056, 258975.81980000063777 ], [ 355017.794299997389317, 258972.241599999368191 ], [ 355021.831900000572205, 258968.104100000113249 ], [ 355025.596400000154972, 258964.294900000095367 ], [ 355019.17230000346899, 258955.093800000846386 ], [ 355014.860799998044968, 258947.190600000321865 ], [ 355010.569099999964237, 258936.802799999713898 ], [ 354963.809199996292591, 258948.645399998873472 ], [ 354945.437799997627735, 258953.467999998480082 ], [ 354938.444799996912479, 258955.19310000166297 ], [ 354938.391099996864796, 258961.498199999332428 ], [ 354937.928999997675419, 259015.745400000363588 ], [ 354946.002899996936321, 259014.545000001788139 ], [ 354975.096699997782707, 259006.972600001841784 ], [ 354989.642700001597404, 259003.291999999433756 ], [ 355003.396799996495247, 258997.91609999909997 ], [ 355015.54900000244379, 258991.260600000619888 ], [ 355019.797399997711182, 258986.521699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602020800", "MAP": "D9-8149-T008", "PARCEL_NAM": "1B REM", "ACRE": "2.28", "LONGITUDE": -64.96694495, "LATITUDE": 18.35979806, "OBJECTID_1": 2424, "PARCEL_NO_": "102602020800", "Tax_Legal_": "1B REM ESTATE DOROTHEA NO.7A LITTLE NORTHSIDE QTR", "Name": "QUESTEL, VANBORNE", "Address": "PO Box 304175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 165400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 445.43947528400003, "SHAPE_Area": 9178.9004308299991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355025.596400000154972, 258964.294900000095367 ], [ 355027.407200001180172, 258962.462499998509884 ], [ 355031.583200000226498, 258959.651900000870228 ], [ 355028.753899998962879, 258955.693900000303984 ], [ 355023.233800001442432, 258941.083200000226498 ], [ 355020.141599997878075, 258925.436999998986721 ], [ 355017.105099998414516, 258903.247299998998642 ], [ 355014.936200000345707, 258873.887600000947714 ], [ 355015.155500002205372, 258848.135899998247623 ], [ 355015.272399999201298, 258834.415800001472235 ], [ 354950.015000000596046, 258827.548900000751019 ], [ 354940.348300002515316, 258826.414299998432398 ], [ 354939.486199997365475, 258832.951200000941753 ], [ 354938.862300001084805, 258906.195500001311302 ], [ 354938.444799996912479, 258955.19310000166297 ], [ 354945.437799997627735, 258953.467999998480082 ], [ 354963.809199996292591, 258948.645399998873472 ], [ 355010.569099999964237, 258936.802799999713898 ], [ 355014.860799998044968, 258947.190600000321865 ], [ 355019.17230000346899, 258955.093800000846386 ], [ 355025.596400000154972, 258964.294900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003041100", "MAP": "A9-739-T009", "PARCEL_NAM": null, "ACRE": "0.50", "LONGITUDE": -64.91028101000001, "LATITUDE": 18.3499107, "OBJECTID_1": 5900, "PARCEL_NO_": "103003041100", "Tax_Legal_": "4G-1A ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHISDE QTR", "Name": "MORALES, ANGEL L. & MATTHIAS, ERIE A.", "Address": "PO Box 502425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 76800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.31774965, "SHAPE_Area": 1821.26363999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361003.9054000005126, 257824.584600001573563 ], [ 360941.572800002992153, 257837.126800000667572 ], [ 360946.308399997651577, 257865.065400000661612 ], [ 361008.498700000345707, 257853.331000000238419 ], [ 361003.9054000005126, 257824.584600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702014200", "MAP": "D9-1860-T81", "PARCEL_NAM": "9A-1", "ACRE": ".50", "LONGITUDE": -64.95385917, "LATITUDE": 18.35844769, "OBJECTID_1": 2979, "PARCEL_NO_": "102702014200", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 9A-1 No.3 LITTLE NORTH SIDE QTR.", "Name": "BRYAN, LAURENCE E. & JUDITH M.", "Address": "PO Box 10682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013682, "Country": "United States", "Land_Value": 39100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.27153379800001, "SHAPE_Area": 2366.5614336600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356393.030000001192093, 258768.664299998432398 ], [ 356393.084899999201298, 258768.565099999308586 ], [ 356377.394199997186661, 258720.385600000619888 ], [ 356349.058200001716614, 258733.663699999451637 ], [ 356328.887800000607967, 258734.976300001144409 ], [ 356345.430100001394749, 258780.918999999761581 ], [ 356393.030000001192093, 258768.664299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702016100", "MAP": "D9-6648-T99", "PARCEL_NAM": "9-2", "ACRE": ".34", "LONGITUDE": -64.95349675, "LATITUDE": 18.3591182, "OBJECTID_1": 2997, "PARCEL_NO_": "102702016100", "Tax_Legal_": "9-2 (SECTION 1) LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSID QTR", "Name": "ALEXANDER, THOMPSON & ESRAN R.", "Address": "PO Box 305773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.68694827799999, "SHAPE_Area": 1731.2687505 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356380.326999999582767, 258852.792700000107288 ], [ 356392.014499999582767, 258842.087699998170137 ], [ 356426.293200001120567, 258836.316199999302626 ], [ 356429.000699996948242, 258815.166799999773502 ], [ 356429.495300002396107, 258808.75899999961257 ], [ 356385.933899998664856, 258809.067499998956919 ], [ 356386.065999999642372, 258808.302799999713898 ], [ 356385.684399999678135, 258808.533700000494719 ], [ 356367.416299998760223, 258838.432300001382828 ], [ 356369.434399999678135, 258840.043999999761581 ], [ 356371.951700001955032, 258842.723299998790026 ], [ 356375.480200000107288, 258845.942499998956919 ], [ 356379.002300001680851, 258849.959399998188019 ], [ 356380.326999999582767, 258852.792700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702016300", "MAP": "D9-8356-T009", "PARCEL_NAM": "9-1 REM", "ACRE": ".31", "LONGITUDE": -64.95357371, "LATITUDE": 18.35955091, "OBJECTID_1": 2999, "PARCEL_NO_": "102702016300", "Tax_Legal_": "9-1 REM (SECTION 1) LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "RODRIGUEZ, RIGOBERTO A. & TARA M.", "Address": "PO Box 307381", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40600, "Improved_V": 47000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.022527486, "SHAPE_Area": 1005.58402058 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356422.159100003540516, 258861.028099998831749 ], [ 356382.618199996650219, 258861.944899998605251 ], [ 356382.190999999642372, 258863.811799999326468 ], [ 356380.392300002276897, 258866.456199999898672 ], [ 356378.595899999141693, 258868.834699999541044 ], [ 356374.757600001990795, 258872.526200000196695 ], [ 356370.407300002872944, 258876.745400000363588 ], [ 356366.82940000295639, 258879.641399998217821 ], [ 356364.523100003600121, 258882.281700000166893 ], [ 356363.494699999690056, 258883.86879999935627 ], [ 356362.976199999451637, 258885.194099999964237 ], [ 356363.215000003576279, 258887.057300001382828 ], [ 356364.215499997138977, 258888.926600001752377 ], [ 356366.235799998044968, 258890.272399999201298 ], [ 356368.509900003671646, 258891.620299998670816 ], [ 356371.296099998056889, 258892.440499998629093 ], [ 356373.102200001478195, 258892.996800001710653 ], [ 356418.850199997425079, 258870.8125 ], [ 356422.113200001418591, 258866.406199999153614 ], [ 356422.159100003540516, 258861.028099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702016400", "MAP": "D9-8356-T009", "PARCEL_NAM": "9-1-A", "ACRE": ".25", "LONGITUDE": -64.95344234, "LATITUDE": 18.35933517, "OBJECTID_1": 3000, "PARCEL_NO_": "102702016400", "Tax_Legal_": "9-1-A (SECTION 1) LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "BORNN, BRIGITTE M.", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31000, "Improved_V": 235400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.925992185, "SHAPE_Area": 866.12146376400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356426.293200001120567, 258836.316199999302626 ], [ 356392.014499999582767, 258842.087699998170137 ], [ 356380.326999999582767, 258852.792700000107288 ], [ 356380.749300003051758, 258853.696100000292063 ], [ 356382.244699999690056, 258857.164799999445677 ], [ 356382.980499997735023, 258860.3614999987185 ], [ 356382.618199996650219, 258861.944899998605251 ], [ 356422.159100003540516, 258861.028099998831749 ], [ 356422.163599997758865, 258860.495999999344349 ], [ 356424.681400001049042, 258848.906500000506639 ], [ 356426.293200001120567, 258836.316199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "13", "ACRE": null, "LONGITUDE": -64.94429157, "LATITUDE": 18.33431663, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 369.30761792700002, "SHAPE_Area": 3580.0972779499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357404.186099998652935, 256131.283300001174212 ], [ 357462.614500001072884, 256096.109099999070168 ], [ 357448.857100002467632, 256093.651999998837709 ], [ 357445.640799999237061, 256092.570199999958277 ], [ 357431.933499999344349, 256092.458000000566244 ], [ 357412.608999997377396, 256089.133499998599291 ], [ 357410.215199999511242, 256086.158599998801947 ], [ 357405.407899998128414, 256082.530600000172853 ], [ 357403.81870000064373, 256079.773400001227856 ], [ 357394.173500001430511, 256076.105900000780821 ], [ 357378.840999998152256, 256077.458000000566244 ], [ 357376.488600000739098, 256069.628299999982119 ], [ 357374.893899999558926, 256067.504299998283386 ], [ 357374.933499999344349, 256062.860599998384714 ], [ 357373.351400002837181, 256059.259100001305342 ], [ 357373.369400002062321, 256057.148299999535084 ], [ 357370.210699997842312, 256049.311999998986721 ], [ 357368.607100002467632, 256048.243400000035763 ], [ 357367.865500003099442, 256040.637899998575449 ], [ 357366.261900000274181, 256039.569299999624491 ], [ 357363.841099999845028, 256039.760600000619888 ], [ 357364.665399998426437, 256037.656399998813868 ], [ 357363.875299997627735, 256035.750100001692772 ], [ 357362.26630000025034, 256035.314800001680851 ], [ 357360.671599999070168, 256033.190799999982119 ], [ 357349.404799997806549, 256030.565400000661612 ], [ 357343.755199998617172, 256031.152499999850988 ], [ 357340.513800002634525, 256033.025800000876188 ], [ 357338.879600003361702, 256035.545499999076128 ], [ 357338.847199998795986, 256039.344999998807907 ], [ 357342.819499999284744, 256046.343499999493361 ], [ 357350.837600000202656, 256051.686500001698732 ], [ 357353.224200002849102, 256055.505699999630451 ], [ 357353.985600002110004, 256060.789299998432398 ], [ 357360.364100001752377, 256069.285199999809265 ], [ 357365.122900001704693, 256078.612300001084805 ], [ 357365.103100001811981, 256080.934200000017881 ], [ 357370.761699996888638, 256079.291700001806021 ], [ 357385.752499997615814, 256118.044599998742342 ], [ 357393.652000002563, 256137.31870000064373 ], [ 357404.186099998652935, 256131.283300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032100", "MAP": "D9-8474-T010", "PARCEL_NAM": "D-10-1", "ACRE": ".01", "LONGITUDE": -64.90225417000001, "LATITUDE": 18.36376945, "OBJECTID_1": 5358, "PARCEL_NO_": "103002032100", "Tax_Legal_": "D-9 & D-10-1 ESTATE LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "PURKEY, JACKSON P.D. & ZIEBA, CHRISTINE", "Address": "4003 Raphune Hill Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 271900, "Improved_V": 617600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.103891469300002, "SHAPE_Area": 130.16661029299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361799.832999996840954, 259383.646499998867512 ], [ 361823.332900002598763, 259396.091699998825788 ], [ 361822.70610000193119, 259394.222800001502037 ], [ 361807.528200000524521, 259377.422200001776218 ], [ 361800.221000000834465, 259383.272999998182058 ], [ 361799.832999996840954, 259383.646499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202010300", "MAP": "D9-435-T64", "PARCEL_NAM": "107-12 REM", "ACRE": null, "LONGITUDE": -64.95590914, "LATITUDE": 18.3476014, "OBJECTID_1": 7925, "PARCEL_NO_": "105202010300", "Tax_Legal_": "107-10A INC POR 107-12 CONTANT 7B SOUTHSIDE QTR", "Name": "SUNSET VIEW ESTATES LIMITED PARTNERSHIP", "Address": "8000 Nisky Center--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 147300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.30811321, "SHAPE_Area": 5783.8690211900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356182.723600000143051, 257503.045299999415874 ], [ 356173.528999999165535, 257503.958999998867512 ], [ 356163.750600002706051, 257505.412900000810623 ], [ 356151.217000000178814, 257508.547699999064207 ], [ 356131.585900001227856, 257520.651799999177456 ], [ 356111.744699999690056, 257531.443500000983477 ], [ 356128.022799998521805, 257608.414700001478195 ], [ 356141.802000001072884, 257600.083799999207258 ], [ 356143.430799998342991, 257598.197299998253584 ], [ 356186.431500002741814, 257567.307399999350309 ], [ 356204.245899997651577, 257558.587200000882149 ], [ 356182.723600000143051, 257503.045299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202027800", "MAP": "D9-7892-T006", "PARCEL_NAM": "107-10A-3", "ACRE": ".26", "LONGITUDE": -64.9556538, "LATITUDE": 18.34677616, "OBJECTID_1": 8177, "PARCEL_NO_": "105202027800", "Tax_Legal_": "107-10A-3 ESTATE CONTANT 7B SOUTHSIDE QTR", "Name": "SCHNEIDER, LATOYA T", "Address": "PO BOX 9516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.270708188, "SHAPE_Area": 809.62092948099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356200.26799999922514, 257469.653400000184774 ], [ 356199.296999998390675, 257447.975699998438358 ], [ 356188.416500002145767, 257446.556200001388788 ], [ 356174.948899999260902, 257446.697999998927116 ], [ 356162.044900000095367, 257449.288899999111891 ], [ 356171.154799997806549, 257473.190099999308586 ], [ 356196.925999999046326, 257469.445799998939037 ], [ 356200.26799999922514, 257469.653400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202028100", "MAP": "D9-7821-T006", "PARCEL_NAM": "107-10A-2-2", "ACRE": ".278", "LONGITUDE": -64.95533605, "LATITUDE": 18.34678821, "OBJECTID_1": 8180, "PARCEL_NO_": "105202028100", "Tax_Legal_": "107-10A-2-2 CONTANT 7B SOUTHSIDE QTR", "Name": "BAZAR, MOHAMMAD K. AND EMAN M.", "Address": "PO Box 10701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 277800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.6722799, "SHAPE_Area": 672.98052012899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356199.296999998390675, 257447.975699998438358 ], [ 356200.26799999922514, 257469.653400000184774 ], [ 356231.602799996733665, 257471.599800001829863 ], [ 356234.894900001585484, 257453.311700001358986 ], [ 356199.296999998390675, 257447.975699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001012400", "MAP": "A9-170-T72", "PARCEL_NAM": "8A", "ACRE": null, "LONGITUDE": -64.91294719, "LATITUDE": 18.35811508, "OBJECTID_1": 5113, "PARCEL_NO_": "103001012400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 8A GR NORTHSIDE QTR", "Name": "ROBINSON, WILLIAM D.", "Address": "1107 West Ave", "City": "Richmond", "State": "Virginia", "Zip": 23220, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.15427568199999, "SHAPE_Area": 2582.32790785 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360673.151799999177456, 258715.852400001138449 ], [ 360657.1891999989748, 258742.632500000298023 ], [ 360674.019299998879433, 258780.671599999070168 ], [ 360677.217600002884865, 258783.864199999719858 ], [ 360680.414099998772144, 258787.267900001257658 ], [ 360690.501299999654293, 258792.211899999529123 ], [ 360691.675499998033047, 258790.526399999856949 ], [ 360719.642200000584126, 258725.949599999934435 ], [ 360711.615000002086163, 258721.662000000476837 ], [ 360709.966399997472763, 258725.870400000363588 ], [ 360707.522299997508526, 258728.805700000375509 ], [ 360701.055600002408028, 258730.65260000154376 ], [ 360695.41499999910593, 258730.184300001710653 ], [ 360692.200599998235703, 258728.891399998217821 ], [ 360683.395900003612041, 258721.219999998807907 ], [ 360673.151799999177456, 258715.852400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003028800", "MAP": "D9-6551-T99", "PARCEL_NAM": "8H-1", "ACRE": ".16", "LONGITUDE": -64.91326668000001, "LATITUDE": 18.35782483, "OBJECTID_1": 5796, "PARCEL_NO_": "103003028800", "Tax_Legal_": "8H-1 ST. JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "DAVID E S HENRY SR REVOCABLE TRUST", "Address": "8H St. Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20000, "Improved_V": 335600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.48733303100001, "SHAPE_Area": 831.25831243799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360648.072800002992153, 258702.776799999177456 ], [ 360639.704199999570847, 258698.98200000077486 ], [ 360632.634900003671646, 258719.482200000435114 ], [ 360640.643299996852875, 258722.980999998748302 ], [ 360647.056100003421307, 258727.466499999165535 ], [ 360650.261500000953674, 258729.814699999988079 ], [ 360653.209399998188019, 258734.373700000345707 ], [ 360654.24099999666214, 258735.969000000506639 ], [ 360657.1891999989748, 258742.632500000298023 ], [ 360673.151799999177456, 258715.852400001138449 ], [ 360667.082599997520447, 258712.672200001776218 ], [ 360662.523500002920628, 258710.283399999141693 ], [ 360648.072800002992153, 258702.776799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804013200", "MAP": "D9-3407-T86", "PARCEL_NAM": null, "ACRE": ".531", "LONGITUDE": -64.9342631, "LATITUDE": 18.35580159, "OBJECTID_1": 4447, "PARCEL_NO_": "102804013200", "Tax_Legal_": "3AC-4 & POR OF ROW 3AC-5 MISGUNST NO.6 GREAT NORTHSIDE QTR", "Name": "SMITH, DONNA", "Address": "PO Box 306951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.820406822, "SHAPE_Area": 1759.97508165 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358407.201399996876717, 258489.953999999910593 ], [ 358426.142599999904633, 258509.984400000423193 ], [ 358448.54619999974966, 258484.447000000625849 ], [ 358461.164499998092651, 258471.745999999344349 ], [ 358455.132299996912479, 258458.348099999129772 ], [ 358452.437799997627735, 258452.363299999386072 ], [ 358446.111000001430511, 258438.311000000685453 ], [ 358435.110399998724461, 258452.461899999529123 ], [ 358428.597000002861023, 258459.796799998730421 ], [ 358416.353100001811981, 258477.217399999499321 ], [ 358407.201399996876717, 258489.953999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017300", "MAP": "D9-7167-T003", "PARCEL_NAM": "17-5E", "ACRE": "1.06", "LONGITUDE": -64.94562116, "LATITUDE": 18.36940611, "OBJECTID_1": 772, "PARCEL_NO_": "101203017300", "Tax_Legal_": "17-5E ESTATE ST.PETER #2 LITTLE NORTHSIDE QTR", "Name": "RITTER, M. & C. A. & BUBAN, JR. , J. A. C", "Address": "17432 Westbrook Dr", "City": "ORLAND PARK", "State": "Illinois", "Zip": 60467, "Country": "United States", "Land_Value": 150800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.414290631, "SHAPE_Area": 3652.1009104200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357226.648999996483326, 259923.969300001859665 ], [ 357214.803400002419949, 259937.899399999529123 ], [ 357214.72070000320673, 259948.083999998867512 ], [ 357179.7212999984622, 259989.296000000089407 ], [ 357229.215499997138977, 260019.059999998658895 ], [ 357238.047899998724461, 259989.32039999961853 ], [ 357247.607900001108646, 259982.792500000447035 ], [ 357250.270000003278255, 259975.303899999707937 ], [ 357253.180500000715256, 259968.689300000667572 ], [ 357253.180500000715256, 259963.397599998861551 ], [ 357249.740900002419949, 259939.849700000137091 ], [ 357246.036700002849102, 259935.616300001740456 ], [ 357238.099200002849102, 259930.853799998760223 ], [ 357231.219999998807907, 259926.355900000780821 ], [ 357226.648999996483326, 259923.969300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203011800", "MAP": "D9-6638-T99", "PARCEL_NAM": "17-5A", "ACRE": "0.51", "LONGITUDE": -64.94698038, "LATITUDE": 18.36972412, "OBJECTID_1": 717, "PARCEL_NO_": "101203011800", "Tax_Legal_": "ST.PETER ESTATE 17-5-A No.2 LITTLE NORTHSIDE QTR.", "Name": "BRUNEY, ALEX J. & WARREL, LINDA", "Address": "PO Box 6828", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.77520757799999, "SHAPE_Area": 1329.5230250699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357097.056199997663498, 260004.535999998450279 ], [ 357094.27139999717474, 260002.238600000739098 ], [ 357090.038000002503395, 259996.946899998933077 ], [ 357086.439699999988079, 259990.385200001299381 ], [ 357079.448499999940395, 259973.653799999505281 ], [ 357073.872400000691414, 259977.237500000745058 ], [ 357068.136500000953674, 259987.956300001591444 ], [ 357066.480700001120567, 259993.00899999961257 ], [ 357055.066399998962879, 260007.692200001329184 ], [ 357090.544299997389317, 260037.581399999558926 ], [ 357097.056199997663498, 260004.535999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017200", "MAP": "D9-7040-T002", "PARCEL_NAM": "17-5D", "ACRE": "0.51", "LONGITUDE": -64.94608245000001, "LATITUDE": 18.369793, "OBJECTID_1": 771, "PARCEL_NO_": "101203017200", "Tax_Legal_": "17-5D ESTATE ST.PETER #2 LT.NORTHSIDE QTR", "Name": "ANDERSON, NANCY M. (TRUSTEE)", "Address": "7499 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.33849210100001, "SHAPE_Area": 2435.7429276399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357169.167099997401237, 259983.248700000345707 ], [ 357135.849500000476837, 260022.250799998641014 ], [ 357145.28320000320673, 260028.061900001019239 ], [ 357147.82320000231266, 260029.966899998486042 ], [ 357171.038999997079372, 260044.857799999415874 ], [ 357174.76799999922514, 260041.875700000673532 ], [ 357214.423000000417233, 260010.164299998432398 ], [ 357179.7212999984622, 259989.296000000089407 ], [ 357169.167099997401237, 259983.248700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010400", "MAP": "D9-7040-T002", "PARCEL_NAM": "17-5C", "ACRE": "0.69", "LONGITUDE": -64.94653024, "LATITUDE": 18.37004323, "OBJECTID_1": 704, "PARCEL_NO_": "101203010400", "Tax_Legal_": "17-5C ESTATE ST.PETER No.2 LITTLE NORTHSIDE QTR.", "Name": "ANDERSON, NANCY M. (TRUSTEE)", "Address": "7499 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 108600, "Improved_V": 365300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.535079889, "SHAPE_Area": 2509.7959972399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357171.038999997079372, 260044.857799999415874 ], [ 357147.82320000231266, 260029.966899998486042 ], [ 357142.743199996650219, 260035.682000000029802 ], [ 357109.299800001084805, 260014.5152000002563 ], [ 357102.738099999725819, 260009.223600000143051 ], [ 357097.056199997663498, 260004.535999998450279 ], [ 357090.544299997389317, 260037.581399999558926 ], [ 357134.173799999058247, 260074.338199999183416 ], [ 357171.038999997079372, 260044.857799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203016600", "MAP": "D9-7184-T003", "PARCEL_NAM": "17-5B", "ACRE": "0.51", "LONGITUDE": -64.94599469000001, "LATITUDE": 18.36892481, "OBJECTID_1": 765, "PARCEL_NO_": "101203016600", "Tax_Legal_": "17-5B ESTATE ST.PETER #2 LT.NORTHSIDE QTR", "Name": "WILSON, KEMAR R. and CHRISTINA M. GHALY", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88000, "Improved_V": 487000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.255659041, "SHAPE_Area": 2152.28011737 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357168.248999997973442, 259891.166200000792742 ], [ 357163.560199998319149, 259888.048099998384714 ], [ 357155.987800002098083, 259898.327300000935793 ], [ 357155.866499997675419, 259905.506700001657009 ], [ 357153.114799998700619, 259912.91499999910593 ], [ 357153.114799998700619, 259923.921700000762939 ], [ 357165.401500001549721, 259930.249000001698732 ], [ 357188.463200002908707, 259942.125100001692772 ], [ 357208.359899997711182, 259939.796799998730421 ], [ 357214.853299997746944, 259931.75620000064373 ], [ 357223.078900001943111, 259922.10530000180006 ], [ 357218.243199996650219, 259919.201699998229742 ], [ 357177.2449000030756, 259896.193300001323223 ], [ 357168.248999997973442, 259891.166200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203018200", "MAP": "D9-8541-T011", "PARCEL_NAM": "17-5G", "ACRE": "1.010", "LONGITUDE": -64.94626568, "LATITUDE": 18.36943058, "OBJECTID_1": 781, "PARCEL_NO_": "101203018200", "Tax_Legal_": "17-5G ESTATE ST.PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "ANDERSON, NANCY M. (TRUSTEE)", "Address": "7499 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 403.62601287799998, "SHAPE_Area": 4528.8366737899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357135.849500000476837, 260022.250799998641014 ], [ 357169.167099997401237, 259983.248700000345707 ], [ 357179.7212999984622, 259989.296000000089407 ], [ 357214.72070000320673, 259948.083999998867512 ], [ 357214.853299997746944, 259931.75620000064373 ], [ 357208.359899997711182, 259939.796799998730421 ], [ 357188.463200002908707, 259942.125100001692772 ], [ 357165.401500001549721, 259930.249000001698732 ], [ 357153.114799998700619, 259923.921700000762939 ], [ 357152.268200002610683, 259938.738400001078844 ], [ 357161.581500001251698, 259949.321800000965595 ], [ 357150.073100000619888, 259962.761700000613928 ], [ 357131.313100002706051, 259984.670200001448393 ], [ 357097.764399997889996, 259975.945799998939037 ], [ 357086.17960000038147, 259969.39299999922514 ], [ 357086.288800001144409, 259978.007199998944998 ], [ 357098.889799997210503, 259995.231100000441074 ], [ 357104.219700001180172, 260002.238600000739098 ], [ 357118.824799999594688, 260011.763599999248981 ], [ 357128.588600002229214, 260017.778099998831749 ], [ 357135.849500000476837, 260022.250799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010500", "MAP": "D9-7167-T003", "PARCEL_NAM": "17-5-1", "ACRE": ".42", "LONGITUDE": -64.94547934000001, "LATITUDE": 18.36967078, "OBJECTID_1": 705, "PARCEL_NO_": "101203010500", "Tax_Legal_": "17-5 REM CONSOLIDATED & EASEMENT B,C,D ST. PETER NO. 2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, BASIL", "Address": "PO Box 10333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 303100, "Improved_V": 138900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 397.900380961, "SHAPE_Area": 1519.2019098000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357207.752099998295307, 260077.257699999958277 ], [ 357225.803099997341633, 260051.395700000226498 ], [ 357239.136799998581409, 260020.569400001317263 ], [ 357245.23870000243187, 260001.506499998271465 ], [ 357247.647699996829033, 259997.782400000840425 ], [ 357250.64019999653101, 259995.442299999296665 ], [ 357254.818800002336502, 259993.505899999290705 ], [ 357261.224899999797344, 259993.4037000015378 ], [ 357260.933200001716614, 259992.202899999916553 ], [ 357260.346199996769428, 259990.250599998980761 ], [ 357258.377599999308586, 259972.857200000435114 ], [ 357258.998700000345707, 259970.615100000053644 ], [ 357259.02419999986887, 259967.469399999827147 ], [ 357256.77080000191927, 259937.397599998861551 ], [ 357251.063799999654293, 259933.764199998229742 ], [ 357241.803300000727177, 259926.885099999606609 ], [ 357225.686899997293949, 259919.045499999076128 ], [ 357223.078900001943111, 259922.10530000180006 ], [ 357231.219999998807907, 259926.355900000780821 ], [ 357238.099200002849102, 259930.853799998760223 ], [ 357246.036700002849102, 259935.616300001740456 ], [ 357249.740900002419949, 259939.849700000137091 ], [ 357253.180500000715256, 259963.397599998861551 ], [ 357253.180500000715256, 259968.689300000667572 ], [ 357250.270000003278255, 259975.303899999707937 ], [ 357247.607900001108646, 259982.792500000447035 ], [ 357238.047899998724461, 259989.32039999961853 ], [ 357229.215499997138977, 260019.059999998658895 ], [ 357219.092500001192093, 260047.79450000077486 ], [ 357213.061099998652935, 260058.188400000333786 ], [ 357207.058499999344349, 260065.035900000482798 ], [ 357204.28660000115633, 260064.619300000369549 ], [ 357201.326200000941753, 260063.019000001251698 ], [ 357198.124300003051758, 260066.736600000411272 ], [ 357201.076700001955032, 260069.32209999859333 ], [ 357202.050200000405312, 260071.497400000691414 ], [ 357202.035800002515316, 260073.270599998533726 ], [ 357207.752099998295307, 260077.257699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010500", "MAP": "D9-8541-T011", "PARCEL_NAM": "17-5", "ACRE": "1.12", "LONGITUDE": -64.94648876, "LATITUDE": 18.36921699, "OBJECTID_1": 705, "PARCEL_NO_": "101203010500", "Tax_Legal_": "17-5 REM CONSOLIDATED & EASEMENT B,C,D ST. PETER NO. 2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, BASIL", "Address": "PO Box 10333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 303100, "Improved_V": 138900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.29470866899999, "SHAPE_Area": 2696.3298376799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357086.17960000038147, 259969.39299999922514 ], [ 357097.764399997889996, 259975.945799998939037 ], [ 357131.313100002706051, 259984.670200001448393 ], [ 357150.073100000619888, 259962.761700000613928 ], [ 357161.581500001251698, 259949.321800000965595 ], [ 357152.268200002610683, 259938.738400001078844 ], [ 357153.114799998700619, 259923.921700000762939 ], [ 357153.114799998700619, 259912.91499999910593 ], [ 357155.866499997675419, 259905.506700001657009 ], [ 357155.987800002098083, 259898.327300000935793 ], [ 357144.638300001621246, 259905.41160000115633 ], [ 357138.130300000309944, 259912.113299999386072 ], [ 357131.589900001883507, 259922.614500001072884 ], [ 357127.466600000858307, 259933.346500001847744 ], [ 357123.399099998176098, 259937.535100001841784 ], [ 357102.247900001704693, 259959.315699998289347 ], [ 357090.76799999922514, 259966.515399999916553 ], [ 357086.17960000038147, 259969.39299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201090100", "MAP": "D9-8459-T010", "PARCEL_NAM": "130", "ACRE": ".738", "LONGITUDE": -64.95803794, "LATITUDE": 18.34544052, "OBJECTID_1": 7899, "PARCEL_NO_": "105201090100", "Tax_Legal_": "CONTANT ESTATE 130 7A SOUTHSIDE QTR.", "Name": "CRANSTON, JOSEPH A. & DANIELLE", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65200, "Improved_V": 199500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.44384504799999, "SHAPE_Area": 2737.3379561500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355914.140699997544289, 257322.388000000268221 ], [ 355932.954300001263618, 257323.365299999713898 ], [ 355933.968000002205372, 257329.485199999064207 ], [ 355939.168399997055531, 257331.330200001597404 ], [ 355955.867399998009205, 257337.254700001329184 ], [ 355962.008699998259544, 257339.433499999344349 ], [ 355962.240000002086163, 257337.41440000012517 ], [ 355967.211999997496605, 257293.991500001400709 ], [ 355956.576300002634525, 257288.049199998378754 ], [ 355950.160700000822544, 257287.155900001525879 ], [ 355946.051100000739098, 257288.716299999505281 ], [ 355932.372400000691414, 257290.204199999570847 ], [ 355924.333599999547005, 257290.139499999582767 ], [ 355909.608300000429153, 257289.457699999213219 ], [ 355904.1300999969244, 257291.84180000051856 ], [ 355876.568000003695488, 257308.925900001078844 ], [ 355894.466700002551079, 257315.338899999856949 ], [ 355914.140699997544289, 257322.388000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202020600", "MAP": "D9-4316-T88", "PARCEL_NAM": "131", "ACRE": ".738", "LONGITUDE": -64.95746029, "LATITUDE": 18.34557108, "OBJECTID_1": 8097, "PARCEL_NO_": "105202020600", "Tax_Legal_": "CONTANT 131 7A S S QTR", "Name": "LILLIAN A MILLER", "Address": "3667 Highwood Dr SE", "City": "Washington", "State": "District of Columbia", "Zip": 200202347, "Country": "United States", "Land_Value": 66600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.793003207, "SHAPE_Area": 2726.8385426700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355985.734899997711182, 257299.853500001132488 ], [ 355967.676500000059605, 257289.935300000011921 ], [ 355967.211999997496605, 257293.991500001400709 ], [ 355962.240000002086163, 257337.41440000012517 ], [ 355962.008699998259544, 257339.433499999344349 ], [ 355972.235100001096725, 257343.061599999666214 ], [ 355978.673000000417233, 257344.592000000178814 ], [ 355997.98309999704361, 257349.605200000107288 ], [ 356016.504299998283386, 257354.2685999982059 ], [ 356025.917900003492832, 257312.003899998962879 ], [ 356010.487199999392033, 257305.296100001782179 ], [ 356000.043700002133846, 257300.75620000064373 ], [ 355985.734899997711182, 257299.853500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105202026900", "MAP": "D9-3874-T87", "PARCEL_NAM": "131A", "ACRE": ".09", "LONGITUDE": -64.95799303, "LATITUDE": 18.34522569, "OBJECTID_1": 8157, "PARCEL_NO_": "105202026900", "Tax_Legal_": "CONTANT 131A 7A S.S. QTR.", "Name": "GARBUTT, YVETTE", "Address": "PO Box 8206", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.572796404, "SHAPE_Area": 388.49633035900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355967.676500000059605, 257289.935300000011921 ], [ 355968.030900001525879, 257286.84010000154376 ], [ 355965.469099998474121, 257285.377700001001358 ], [ 355958.23929999768734, 257282.152199998497963 ], [ 355948.579700000584126, 257280.173300001770258 ], [ 355921.159699998795986, 257280.582100000232458 ], [ 355909.608300000429153, 257289.457699999213219 ], [ 355924.333599999547005, 257290.139499999582767 ], [ 355932.372400000691414, 257290.204199999570847 ], [ 355946.051100000739098, 257288.716299999505281 ], [ 355950.160700000822544, 257287.155900001525879 ], [ 355955.120399996638298, 257285.593100000172853 ], [ 355959.340800002217293, 257285.627099998295307 ], [ 355965.745999999344349, 257288.875 ], [ 355967.676500000059605, 257289.935300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023100", "MAP": "D9-4636-T89", "PARCEL_NAM": "27A", "ACRE": null, "LONGITUDE": -64.93742663, "LATITUDE": 18.35232093, "OBJECTID_1": 4535, "PARCEL_NO_": "102804023100", "Tax_Legal_": "ELIZABETH 27A GREAT NORTHSIDE QTR", "Name": "MCDONALD, SYLVESTER & JOHN D. SR", "Address": "PO Box 1422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 74400, "Improved_V": 285500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.35057850499999, "SHAPE_Area": 1796.79332888 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358099.575300000607967, 258056.031300000846386 ], [ 358077.338799998164177, 258094.262499999254942 ], [ 358097.297799997031689, 258117.180900000035763 ], [ 358103.35530000180006, 258113.474599998444319 ], [ 358135.821800000965595, 258088.620200000703335 ], [ 358099.575300000607967, 258056.031300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023200", "MAP": "D9-8458-T010", "PARCEL_NAM": "6-REM", "ACRE": ".460", "LONGITUDE": -64.93791548, "LATITUDE": 18.35184073, "OBJECTID_1": 4536, "PARCEL_NO_": "102804023200", "Tax_Legal_": "6 ESTATE AGNES FANCY GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. , TRUSTE", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 398600, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 419.621529791, "SHAPE_Area": 1507.8680385499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358075.024499997496605, 258020.057199999690056 ], [ 358080.608010516152717, 258021.251436707156245 ], [ 358086.242799997329712, 258022.173900000751019 ], [ 358096.508699998259544, 258028.629700001329184 ], [ 358097.830060054897331, 258029.192838021583157 ], [ 358099.220231628918555, 258029.55414097479661 ], [ 358100.6485744464444, 258029.705645511916373 ], [ 358102.08360691490816, 258029.644012375676539 ], [ 358103.493699997663498, 258029.370600000023842 ], [ 358110.623848955205176, 258026.217820595426019 ], [ 358117.436800003051758, 258022.427999999374151 ], [ 358122.058300003409386, 258019.355700001120567 ], [ 358119.518299996852875, 258013.217399999499321 ], [ 358119.216628542519175, 258013.635245702345856 ], [ 358118.850789378164336, 258013.998236616316717 ], [ 358118.430598624516279, 258014.296633044461487 ], [ 358117.967330752813723, 258014.522428475727793 ], [ 358117.473416070395615, 258014.669564413867192 ], [ 358116.962107193714473, 258014.734092937898822 ], [ 358116.447123456571717, 258014.714282631874084 ], [ 358115.942282795789652, 258014.610665041778702 ], [ 358115.461130991287064, 258014.426020413346123 ], [ 358115.016578208596911, 258014.165303092944669 ], [ 358114.620552595763002, 258013.835508593678242 ], [ 358114.283680229913443, 258013.445485893142177 ], [ 358114.015000000596046, 258013.005699999630451 ], [ 358109.358300000429153, 258014.487399999052286 ], [ 358106.910199999809265, 258016.996800001710653 ], [ 358104.768098894157447, 258018.048621415800881 ], [ 358102.490321286895778, 258018.760418160585687 ], [ 358100.130472601682413, 258019.115438747248845 ], [ 358097.744089730374981, 258019.105328089324757 ], [ 358095.387334022670984, 258018.730324131902307 ], [ 358093.115669579943642, 258017.99925225196057 ], [ 358090.982557958108373, 258016.929317561065545 ], [ 358089.038199998438358, 258015.545699998736382 ], [ 358085.69030000269413, 258014.632500000298023 ], [ 358078.73607236839598, 258013.330952128861099 ], [ 358071.681500002741814, 258012.793999999761581 ], [ 358054.508451193629298, 258016.696124487381894 ], [ 358037.391500003635883, 258020.837400000542402 ], [ 358032.043229712056927, 258022.060093037231127 ], [ 358026.64919999986887, 258023.061799999326468 ], [ 358019.342226064414717, 258024.05729162535863 ], [ 358011.991400003433228, 258024.647399999201298 ], [ 358008.434022998611908, 258024.382829849637346 ], [ 358004.878180056344718, 258024.667275781801436 ], [ 358001.408100001513958, 258025.493999999016523 ], [ 358000.635499998927116, 258031.726599998772144 ], [ 358000.566566652734764, 258033.503046487370739 ], [ 358000.790444393001962, 258035.266677029896528 ], [ 358001.301048236084171, 258036.969556253025075 ], [ 358002.084499999880791, 258038.565400000661612 ], [ 358012.012223765952513, 258041.696360117610311 ], [ 358021.686532211781014, 258045.539583572448464 ], [ 358031.056400001049042, 258050.074799999594688 ], [ 358034.158660435583442, 258052.585364827333251 ], [ 358036.89966723381076, 258055.486026353610214 ], [ 358039.230771627335344, 258058.72530217768508 ], [ 358041.110600002110004, 258062.245700001716614 ], [ 358042.560866601124872, 258071.660698483639862 ], [ 358043.227300003170967, 258081.163400001823902 ], [ 358043.653082307195291, 258085.008786452177446 ], [ 358044.655639821081422, 258088.745518440759042 ], [ 358046.211900003254414, 258092.287599999457598 ], [ 358053.374600000679493, 258087.801300000399351 ], [ 358051.699799999594688, 258085.243500001728535 ], [ 358049.763762389076874, 258080.260414834774565 ], [ 358048.512658588122576, 258075.062904018064728 ], [ 358047.969038401904982, 258069.744647113431711 ], [ 358048.142700001597404, 258064.401500001549721 ], [ 358047.108533640741371, 258060.493654733087169 ], [ 358045.542199814575724, 258056.76708083084668 ], [ 358043.473994421772659, 258053.293857377459062 ], [ 358040.943920519086532, 258050.141163172287634 ], [ 358038.000914585776627, 258047.369977364665829 ], [ 358034.701899997889996, 258045.033900000154972 ], [ 358024.282250684453174, 258039.06581782878493 ], [ 358013.535199999809265, 258033.709699999541044 ], [ 358013.382281203230377, 258033.628291824192274 ], [ 358013.244820615916979, 258033.522859209275339 ], [ 358013.126556334609631, 258033.396269284276059 ], [ 358013.030704432458151, 258033.251964529627003 ], [ 358012.959871501661837, 258033.09386916202493 ], [ 358012.915983769460581, 258032.926282419357449 ], [ 358012.900234716886189, 258032.753761647560168 ], [ 358012.913052622869145, 258032.580998368357541 ], [ 358012.954088917875197, 258032.412690698169172 ], [ 358013.022227662848309, 258032.253415587794734 ], [ 358013.115615896007512, 258032.107504357059952 ], [ 358013.23171402211301, 258031.978924908995396 ], [ 358013.367364874342456, 258031.871173827094026 ], [ 358013.518879569717683, 258031.787181289109867 ], [ 358013.682137824827805, 258031.729231384175364 ], [ 358013.852700002491474, 258031.698899999260902 ], [ 358023.774338489456568, 258030.515766961296322 ], [ 358033.595926326641347, 258028.678615250770235 ], [ 358043.274400003254414, 258026.195500001311302 ], [ 358053.779086275491863, 258023.755565448023845 ], [ 358064.367349325213581, 258021.708518821164034 ], [ 358075.024499997496605, 258020.057199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023100", "MAP": "D9-4636-T89", "PARCEL_NAM": "27A-1", "ACRE": null, "LONGITUDE": -64.93768732, "LATITUDE": 18.3523456, "OBJECTID_1": 4535, "PARCEL_NO_": "102804023100", "Tax_Legal_": "ELIZABETH 27A GREAT NORTHSIDE QTR", "Name": "MCDONALD, SYLVESTER & JOHN D. SR", "Address": "PO Box 1422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 74400, "Improved_V": 285500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.39081287299999, "SHAPE_Area": 1601.6076442200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358099.575300000607967, 258056.031300000846386 ], [ 358093.409100003540516, 258050.487300001084805 ], [ 358051.699799999594688, 258085.243500001728535 ], [ 358053.374600000679493, 258087.801300000399351 ], [ 358058.454180905595422, 258095.920523301960202 ], [ 358063.276900000870228, 258104.194899998605251 ], [ 358063.907742304319981, 258108.239822060946608 ], [ 358065.011309854977299, 258112.182092366652796 ], [ 358066.572193825733848, 258115.966666019288823 ], [ 358068.568599998950958, 258119.540699999779463 ], [ 358071.180913087853696, 258121.007056442380417 ], [ 358073.924199998378754, 258122.210700001567602 ], [ 358077.790476498717908, 258123.399244367756182 ], [ 358081.779820927476976, 258124.066973891312955 ], [ 358085.822400003671646, 258124.202199999243021 ], [ 358097.297799997031689, 258117.180900000035763 ], [ 358077.338799998164177, 258094.262499999254942 ], [ 358099.575300000607967, 258056.031300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023200", "MAP": "D9-8458-T010", "PARCEL_NAM": "6E", "ACRE": "1.144", "LONGITUDE": -64.93730521000001, "LATITUDE": 18.35128976, "OBJECTID_1": 4536, "PARCEL_NO_": "102804023200", "Tax_Legal_": "6 ESTATE AGNES FANCY GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. , TRUSTE", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 398600, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.58200914299999, "SHAPE_Area": 5959.7377329600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358121.075699999928474, 258027.012299999594688 ], [ 358159.200499996542931, 257994.663800001144409 ], [ 358142.098200000822544, 257919.796700000762939 ], [ 358138.91610000282526, 257914.7043999992311 ], [ 358133.336499996483326, 257918.498100001364946 ], [ 358114.004100002348423, 257931.642499998211861 ], [ 358079.708200000226498, 257954.960900001227856 ], [ 358073.278099998831749, 257954.90819999948144 ], [ 358085.69030000269413, 258014.632500000298023 ], [ 358089.038199998438358, 258015.545699998736382 ], [ 358090.982557957526296, 258016.929317562375218 ], [ 358093.11566957924515, 258017.999252254288876 ], [ 358095.387334022088908, 258018.730324134900002 ], [ 358097.744089730083942, 258019.105328092555283 ], [ 358100.130472601740621, 258019.115438750304747 ], [ 358102.490321287186816, 258018.760418163001304 ], [ 358104.768098894448485, 258018.048621417197865 ], [ 358106.910199999809265, 258016.996800001710653 ], [ 358109.358300000429153, 258014.487399999052286 ], [ 358114.015000000596046, 258013.005699999630451 ], [ 358114.283680227235891, 258013.445485896838363 ], [ 358114.620552591513842, 258013.835508600983303 ], [ 358115.016578203882091, 258014.165303103538463 ], [ 358115.461130987037905, 258014.426020426646573 ], [ 358115.942282792646438, 258014.610665057 ], [ 358116.447123455058318, 258014.714282648114022 ], [ 358116.962107193947304, 258014.734092954226071 ], [ 358117.47341607225826, 258014.669564429263119 ], [ 358117.967330755956937, 258014.522428489261074 ], [ 358118.430598628357984, 258014.296633055346319 ], [ 358118.850789381773211, 258013.998236623912817 ], [ 358119.216628544847481, 258013.635245706216665 ], [ 358119.518299996852875, 258013.217399999499321 ], [ 358122.058300003409386, 258019.355700001120567 ], [ 358117.436800003051758, 258022.427999999374151 ], [ 358118.706500001251698, 258024.484299998730421 ], [ 358121.075699999928474, 258027.012299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023200", "MAP": "D9-8458-T010", "PARCEL_NAM": "6H", "ACRE": ".643", "LONGITUDE": -64.93778568, "LATITUDE": 18.35192402, "OBJECTID_1": 4536, "PARCEL_NO_": "102804023200", "Tax_Legal_": "6 ESTATE AGNES FANCY GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. , TRUSTE", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 398600, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.59570946000002, "SHAPE_Area": 2952.9171163800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358093.409100003540516, 258050.487300001084805 ], [ 358121.075699999928474, 258027.012299999594688 ], [ 358118.706500001251698, 258024.484299998730421 ], [ 358117.436800003051758, 258022.427999999374151 ], [ 358110.623848955205176, 258026.217820595484227 ], [ 358103.493699997663498, 258029.370600000023842 ], [ 358102.08360691490816, 258029.64401237553102 ], [ 358100.6485744464444, 258029.705645511683542 ], [ 358099.220231628918555, 258029.554140974563779 ], [ 358097.830060054955538, 258029.192838021437638 ], [ 358096.508699998259544, 258028.629700001329184 ], [ 358086.242799997329712, 258022.173900000751019 ], [ 358080.608010516152717, 258021.251436707185348 ], [ 358075.024499997496605, 258020.057199999690056 ], [ 358064.367349325213581, 258021.708518821164034 ], [ 358053.779086275491863, 258023.755565448023845 ], [ 358043.274400003254414, 258026.195500001311302 ], [ 358033.595926326641347, 258028.678615250770235 ], [ 358023.774338489456568, 258030.515766961296322 ], [ 358013.852700002491474, 258031.698899999260902 ], [ 358013.682137824653182, 258031.729231383942533 ], [ 358013.518879569310229, 258031.78718128867331 ], [ 358013.367364873702172, 258031.871173826570157 ], [ 358013.231714021298103, 258031.978924908442423 ], [ 358013.115615894959774, 258032.107504356506979 ], [ 358013.022227661625948, 258032.253415587329073 ], [ 358012.954088916536421, 258032.412690697819926 ], [ 358012.913052621472161, 258032.580998368153814 ], [ 358012.900234715547413, 258032.75376164750196 ], [ 358012.915983768180013, 258032.926282419415656 ], [ 358012.959871500497684, 258033.093869162199553 ], [ 358013.030704431468621, 258033.251964529918041 ], [ 358013.126556333852932, 258033.396269284567097 ], [ 358013.244820615451317, 258033.522859209537273 ], [ 358013.382281202997547, 258033.628291824366897 ], [ 358013.535199999809265, 258033.709699999541044 ], [ 358024.282250684453174, 258039.06581782878493 ], [ 358034.701899997889996, 258045.033900000154972 ], [ 358038.000914585776627, 258047.369977364665829 ], [ 358040.943920519086532, 258050.141163172287634 ], [ 358043.473994421772659, 258053.293857377459062 ], [ 358045.542199814575724, 258056.76708083084668 ], [ 358047.108533640741371, 258060.493654733087169 ], [ 358048.142700001597404, 258064.401500001549721 ], [ 358047.969038402079605, 258069.744647113431711 ], [ 358048.512658588355407, 258075.062904018035624 ], [ 358049.763762389251497, 258080.260414834745461 ], [ 358051.699799999594688, 258085.243500001728535 ], [ 358093.409100003540516, 258050.487300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023200", "MAP": "D9-8458-T010", "PARCEL_NAM": "6G", "ACRE": ".855", "LONGITUDE": -64.93844323, "LATITUDE": 18.35148653, "OBJECTID_1": 4536, "PARCEL_NO_": "102804023200", "Tax_Legal_": "6 ESTATE AGNES FANCY GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. , TRUSTE", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 398600, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.61221963100002, "SHAPE_Area": 3887.8337263399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358011.991400003433228, 258024.647399999201298 ], [ 358019.342226064414717, 258024.05729162535863 ], [ 358026.64919999986887, 258023.061799999326468 ], [ 358021.463200002908707, 257954.484200000762939 ], [ 357978.919200003147125, 257954.135999999940395 ], [ 357966.729299999773502, 258039.938099998980761 ], [ 358000.635499998927116, 258031.726599998772144 ], [ 358001.408100001513958, 258025.493999999016523 ], [ 358004.878180056344718, 258024.667275781801436 ], [ 358008.434022998611908, 258024.382829849637346 ], [ 358011.991400003433228, 258024.647399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023200", "MAP": "D9-8458-T010", "PARCEL_NAM": "6F", "ACRE": ".820", "LONGITUDE": -64.93793676, "LATITUDE": 18.35140846, "OBJECTID_1": 4536, "PARCEL_NO_": "102804023200", "Tax_Legal_": "6 ESTATE AGNES FANCY GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. , TRUSTE", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 398600, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.94262173000001, "SHAPE_Area": 3477.0359477500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358071.681500002741814, 258012.793999999761581 ], [ 358078.73607236839598, 258013.330952128861099 ], [ 358085.69030000269413, 258014.632500000298023 ], [ 358073.278099998831749, 257954.90819999948144 ], [ 358042.559399999678135, 257954.656800001859665 ], [ 358021.463200002908707, 257954.484200000762939 ], [ 358026.64919999986887, 258023.061799999326468 ], [ 358032.043229712056927, 258022.060093037231127 ], [ 358037.391500003635883, 258020.837400000542402 ], [ 358054.508451193629298, 258016.696124487381894 ], [ 358071.681500002741814, 258012.793999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022900", "MAP": "A9-515-T98", "PARCEL_NAM": null, "ACRE": ".0486", "LONGITUDE": -64.93946358, "LATITUDE": 18.35301105, "OBJECTID_1": 4533, "PARCEL_NO_": "102804022900", "Tax_Legal_": "LERKENLUND 10BA&10Aa No.9 GREAT NORTHSIDE QTR.", "Name": "PRAKASH LACHMANDAS DASWANI REVOCABLE TRUST", "Address": "PO Box 1386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 163600, "Improved_V": 437300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.937691921199999, "SHAPE_Area": 204.82131237799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357882.767300002276897, 258191.180100001394749 ], [ 357895.560999996960163, 258148.528799999505281 ], [ 357885.97070000320673, 258148.481600001454353 ], [ 357882.767300002276897, 258191.180100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804025200", "MAP": "G9-479-T58", "PARCEL_NAM": "10A", "ACRE": ".005", "LONGITUDE": -64.93933879, "LATITUDE": 18.35324639, "OBJECTID_1": 4556, "PARCEL_NO_": "102804025200", "Tax_Legal_": "LERKENLUND 1OA GREAT NORTHSIDE QTR", "Name": "KYLE R. WALDNER and DAVID CATTIE", "Address": "PO Box 534", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.640227361800001, "SHAPE_Area": 242.352779051 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357926.13740000128746, 258190.328000001609325 ], [ 357885.347199998795986, 258182.579300001263618 ], [ 357882.767300002276897, 258191.180100001394749 ], [ 357899.48480000346899, 258191.599399998784065 ], [ 357916.399400003254414, 258193.848700001835823 ], [ 357926.105700001120567, 258190.339600000530481 ], [ 357926.13740000128746, 258190.328000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021000", "MAP": "D9-8571-T010", "PARCEL_NAM": "10G-REM", "ACRE": ".47", "LONGITUDE": -64.9416373, "LATITUDE": 18.35402686, "OBJECTID_1": 4281, "PARCEL_NO_": "102803021000", "Tax_Legal_": "10G-REM & 10H-1 LERKENLUND GR NORTHSIDE QTR", "Name": "HURLEY DOWLING LIVING REVOCABLE TRUST", "Address": "3192 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111100, "Improved_V": 268400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.04312417700001, "SHAPE_Area": 1909.6137464400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357688.651199996471405, 258322.407400000840425 ], [ 357681.076800003647804, 258295.96510000154376 ], [ 357676.858800001442432, 258294.2685999982059 ], [ 357661.927199997007847, 258248.550200000405312 ], [ 357645.975400000810623, 258227.943500000983477 ], [ 357631.904899999499321, 258270.469300001859665 ], [ 357685.5033999979496, 258320.725999999791384 ], [ 357688.651199996471405, 258322.407400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021100", "MAP": "D9-8571-T010", "PARCEL_NAM": "10H-REM", "ACRE": ".63", "LONGITUDE": -64.9414137, "LATITUDE": 18.35395227, "OBJECTID_1": 4282, "PARCEL_NO_": "102803021100", "Tax_Legal_": "10H-REM, 10G-1 & 10G-2 LERKENLUND GR NORTHSIDE QTR", "Name": "KENNETH SCOTT CHISUM TRUST", "Address": "8101 Coounty Rd", "City": "Mansfield", "State": "Texas", "Zip": 76063, "Country": "United States", "Land_Value": 141800, "Improved_V": 1008200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.7057848, "SHAPE_Area": 1672.44552533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357661.927199997007847, 258248.550200000405312 ], [ 357667.776399999856949, 258250.81810000166297 ], [ 357676.858800001442432, 258294.2685999982059 ], [ 357696.145499996840954, 258302.025800000876188 ], [ 357706.058700002729893, 258274.242600001394749 ], [ 357672.513599999248981, 258236.393399998545647 ], [ 357650.951800003647804, 258211.730099998414516 ], [ 357661.927199997007847, 258248.550200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94144095, "LATITUDE": 18.35329709, "OBJECTID_1": 4283, "PARCEL_NO_": "102803021200", "Tax_Legal_": "LERKENLUND 10P & 10PA-1 GR NORTHSIDE QTR", "Name": "GARY UDHWANI LIVING REVOCABLE TRUST", "Address": "6111 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 383100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.78042537900001, "SHAPE_Area": 2597.3642545100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357650.951800003647804, 258211.730099998414516 ], [ 357672.513599999248981, 258236.393399998545647 ], [ 357712.544399999082088, 258175.503899998962879 ], [ 357693.322400003671646, 258160.147799998521805 ], [ 357672.33669999986887, 258162.509199999272823 ], [ 357667.511399999260902, 258160.991999998688698 ], [ 357650.951800003647804, 258211.730099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021100", "MAP": "D9-8571-T010", "PARCEL_NAM": "10G-1", "ACRE": ".01", "LONGITUDE": -64.94153004, "LATITUDE": 18.35394705, "OBJECTID_1": 4282, "PARCEL_NO_": "102803021100", "Tax_Legal_": "10H-REM, 10G-1 & 10G-2 LERKENLUND GR NORTHSIDE QTR", "Name": "KENNETH SCOTT CHISUM TRUST", "Address": "8101 Coounty Rd", "City": "Mansfield", "State": "Texas", "Zip": 76063, "Country": "United States", "Land_Value": 141800, "Improved_V": 1008200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.758025328499997, "SHAPE_Area": 116.776344864 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357676.858800001442432, 258294.2685999982059 ], [ 357667.776399999856949, 258250.81810000166297 ], [ 357661.927199997007847, 258248.550200000405312 ], [ 357676.858800001442432, 258294.2685999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105501021500", "MAP": "D3-263-T64", "PARCEL_NAM": "ROAD E", "ACRE": null, "LONGITUDE": -64.91447291, "LATITUDE": 18.34245791, "OBJECTID_1": 19747, "PARCEL_NO_": "105501021500", "Tax_Legal_": "52B-3,C,D,F,G&RD\"E\" THOMAS 6A NEW QTR.", "Name": "SUGAR ESTATE PARK INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1635800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 599.33670417600001, "SHAPE_Area": 5002.3443905200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360402.249499998986721, 256992.024700000882149 ], [ 360405.110500000417233, 257015.321199998259544 ], [ 360667.915500000119209, 257036.144499998539686 ], [ 360676.862199999392033, 257027.140700001269579 ], [ 360672.054899998009205, 257023.512800000607967 ], [ 360664.871799997985363, 257014.799100000411272 ], [ 360662.569799996912479, 257001.059200000017881 ], [ 360660.944600000977516, 257002.523600000888109 ], [ 360659.299599997699261, 257006.309799998998642 ], [ 360653.612199999392033, 257011.329500000923872 ], [ 360651.175300002098083, 257013.420499999076128 ], [ 360645.51129999756813, 257015.696199998259544 ], [ 360640.671700000762939, 257015.867600001394749 ], [ 360606.813699997961521, 257014.746199999004602 ], [ 360569.755699999630451, 257010.643199998885393 ], [ 360415.894000001251698, 256997.264299999922514 ], [ 360408.958206275536213, 256994.940180462785065 ], [ 360402.249499998986721, 256992.024700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93851909, "LATITUDE": 18.34590369, "OBJECTID_1": 4531, "PARCEL_NO_": "102804022700", "Tax_Legal_": "STAABI #1 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 864700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.1142712698799999, "SHAPE_Area": 0.05667363081 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357994.155199997127056, 257376.914599999785423 ], [ 357994.394900001585484, 257377.096700001507998 ], [ 357994.476999998092651, 257376.686200000345707 ], [ 357994.155199997127056, 257376.914599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9381912, "LATITUDE": 18.34616166, "OBJECTID_1": 4531, "PARCEL_NO_": "102804022700", "Tax_Legal_": "STAABI #1 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 864700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.33500661776, "SHAPE_Area": 0.08280894943 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358028.573100000619888, 257405.598299998790026 ], [ 358028.674400001764297, 257405.959199998527765 ], [ 358029.045699998736382, 257405.647100001573563 ], [ 358028.573100000619888, 257405.598299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93789588, "LATITUDE": 18.34618781, "OBJECTID_1": 4531, "PARCEL_NO_": "102804022700", "Tax_Legal_": "STAABI #1 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 864700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.56663632283999998, "SHAPE_Area": 0.01148582445 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358060.029500000178814, 257408.972500000149012 ], [ 358060.010799996554852, 257408.848700001835823 ], [ 358059.822300001978874, 257408.829199999570847 ], [ 358060.029500000178814, 257408.972500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022700", "MAP": "D9-8388-T009", "PARCEL_NAM": "4A-2", "ACRE": ".002", "LONGITUDE": -64.93806595, "LATITUDE": 18.34614472, "OBJECTID_1": 4531, "PARCEL_NO_": "102804022700", "Tax_Legal_": "STAABI #1 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 864700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.922581049200005, "SHAPE_Area": 142.45388104599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358060.010799996554852, 257408.848700001835823 ], [ 358037.469499997794628, 257397.45549999922514 ], [ 358028.573100000619888, 257405.598299998790026 ], [ 358060.010799996554852, 257408.848700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022700", "MAP": "A9-502B-T97", "PARCEL_NAM": "REM 4A", "ACRE": ".65", "LONGITUDE": -64.9380817, "LATITUDE": 18.34604018, "OBJECTID_1": 4531, "PARCEL_NO_": "102804022700", "Tax_Legal_": "STAABI #1 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 864700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.85861908599998, "SHAPE_Area": 2343.7962636299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358073.628300003707409, 257410.256599999964237 ], [ 358071.113399997353554, 257406.951499998569489 ], [ 358074.049400001764297, 257402.365899998694658 ], [ 358084.385999999940395, 257402.546300001442432 ], [ 358102.862700000405312, 257389.331399999558926 ], [ 358103.092299997806549, 257387.099500000476837 ], [ 358090.033399999141693, 257385.783500000834465 ], [ 358088.823600001633167, 257385.661499999463558 ], [ 357995.134199999272823, 257376.219900000840425 ], [ 357994.476999998092651, 257376.686200000345707 ], [ 357989.502099998295307, 257401.558699999004602 ], [ 358028.573100000619888, 257405.598299998790026 ], [ 358037.469499997794628, 257397.45549999922514 ], [ 358060.010799996554852, 257408.848700001835823 ], [ 358073.628300003707409, 257410.256599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93763189000001, "LATITUDE": 18.3461329, "OBJECTID_1": 4531, "PARCEL_NO_": "102804022700", "Tax_Legal_": "STAABI #1 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 864700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.620710927299996, "SHAPE_Area": 271.35451977999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358084.506700001657009, 257411.381299998611212 ], [ 358087.90259999781847, 257409.681600000709295 ], [ 358092.270499996840954, 257407.220400001853704 ], [ 358095.478299997746944, 257404.84569999948144 ], [ 358099.181699998676777, 257400.9386 ], [ 358101.934500001370907, 257398.354400001466274 ], [ 358102.862700000405312, 257389.331399999558926 ], [ 358084.385999999940395, 257402.546300001442432 ], [ 358074.049400001764297, 257402.365899998694658 ], [ 358071.113399997353554, 257406.951499998569489 ], [ 358073.628300003707409, 257410.256599999964237 ], [ 358084.506700001657009, 257411.381299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201060700", "MAP": "D9-8028-T007", "PARCEL_NAM": "23E & 23D", "ACRE": ".22", "LONGITUDE": -64.96582602, "LATITUDE": 18.34302296, "OBJECTID_1": 7729, "PARCEL_NO_": "105201060700", "Tax_Legal_": "23D & 23E LINDBERG BAY SOUTHSIDE QTR", "Name": "LAPLACE, JOSEPH RUDY", "Address": "PO Box 1201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.48424484100001, "SHAPE_Area": 891.97172224600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355094.327600002288818, 257032.323899999260902 ], [ 355094.999099999666214, 257048.161400001496077 ], [ 355126.438100002706051, 257049.263099998235703 ], [ 355126.587300002574921, 257031.743500001728535 ], [ 355126.684399999678135, 257020.345300000160933 ], [ 355094.421099998056889, 257021.347800001502037 ], [ 355094.327600002288818, 257032.323899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201013600", "MAP": null, "PARCEL_NAM": "33K", "ACRE": null, "LONGITUDE": -64.96499762000001, "LATITUDE": 18.3469595, "OBJECTID_1": 7468, "PARCEL_NO_": "105201013600", "Tax_Legal_": "33 REM LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "HERMAN, LUVA A.", "Address": "4048 Walden Rd", "City": "Valdosta", "State": "Georgia", "Zip": 31605, "Country": "United States", "Land_Value": 107800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.71435255599999, "SHAPE_Area": 513.21926875500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355192.808100000023842, 257528.739900000393391 ], [ 355199.058100000023842, 257527.940499998629093 ], [ 355195.875600002706051, 257417.345300000160933 ], [ 355187.70269999653101, 257430.155099999159575 ], [ 355189.293799996376038, 257432.701200000941753 ], [ 355189.250600002706051, 257437.767099998891354 ], [ 355195.366700001060963, 257477.080600000917912 ], [ 355192.808100000023842, 257528.739900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003039800", "MAP": null, "PARCEL_NAM": "4J-4", "ACRE": null, "LONGITUDE": -64.91268475, "LATITUDE": 18.34828986, "OBJECTID_1": 5894, "PARCEL_NO_": "103003039800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4J-4 GT.NORTHSIDE QTR.", "Name": "BLACKMAN, EDITH", "Address": "ESTATE TUTU 173-301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.92972461299999, "SHAPE_Area": 1730.4189645399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360754.23480000346899, 257662.785100001841784 ], [ 360730.418999999761581, 257642.339099999517202 ], [ 360705.771099999547005, 257638.958299998193979 ], [ 360699.961300000548363, 257686.357999999076128 ], [ 360707.470499999821186, 257686.420400001108646 ], [ 360718.402400001883507, 257685.380199998617172 ], [ 360724.096799999475479, 257684.7489 ], [ 360729.121699996292591, 257682.5287000015378 ], [ 360733.926600001752377, 257679.401900000870228 ], [ 360739.872900001704693, 257676.346900001168251 ], [ 360749.622400000691414, 257667.771899998188019 ], [ 360754.23480000346899, 257662.785100001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003039700", "MAP": "D9-4500-T88", "PARCEL_NAM": "4I-1", "ACRE": ".76", "LONGITUDE": -64.91304398, "LATITUDE": 18.34797938, "OBJECTID_1": 5893, "PARCEL_NO_": "103003039700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL REM 4I-1 GT.NORTHSIDE QTR.", "Name": "SMALLS (TRUSTEE), DORIS L.", "Address": "7404 Cape Charles Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27617, "Country": "United States", "Land_Value": 114500, "Improved_V": 280300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.56068865899999, "SHAPE_Area": 3316.9186253299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360655.285599999129772, 257648.07490000128746 ], [ 360681.134099997580051, 257654.505300000309944 ], [ 360693.516599997878075, 257681.334100000560284 ], [ 360693.675300002098083, 257682.445300001651049 ], [ 360693.040299996733665, 257683.556600000709295 ], [ 360692.2466000020504, 257684.032800000160933 ], [ 360691.094700001180172, 257685.837400000542402 ], [ 360691.092000000178814, 257685.84010000154376 ], [ 360696.337200000882149, 257686.0929000005126 ], [ 360699.961300000548363, 257686.357999999076128 ], [ 360707.282399997115135, 257626.628499999642372 ], [ 360709.207500003278255, 257610.922200001776218 ], [ 360710.608000002801418, 257599.496899999678135 ], [ 360697.830700002610683, 257594.731800001114607 ], [ 360692.028099998831749, 257593.052799999713898 ], [ 360686.569300003349781, 257591.473200000822544 ], [ 360666.113200001418591, 257587.69370000064373 ], [ 360657.163099996745586, 257637.605099998414516 ], [ 360655.285599999129772, 257648.07490000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003039900", "MAP": "D9-7439-T004", "PARCEL_NAM": "4I-4-A", "ACRE": ".25", "LONGITUDE": -64.91301949, "LATITUDE": 18.34872816, "OBJECTID_1": 5895, "PARCEL_NO_": "103003039900", "Tax_Legal_": "4I-4-A ST.JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QUARTER", "Name": "WILTON, SAMY & HARRY, MONIQUE", "Address": "PO Box 308233", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 198400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.29514951499999, "SHAPE_Area": 962.58937856399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360698.505699999630451, 257727.739399999380112 ], [ 360699.789399996399879, 257691.243200000375509 ], [ 360694.276799999177456, 257691.128400001674891 ], [ 360683.693499997258186, 257691.551699999719858 ], [ 360678.307700000703335, 257691.112100001424551 ], [ 360674.25, 257712.316500000655651 ], [ 360670.973999999463558, 257729.435400001704693 ], [ 360680.747000001370907, 257730.174699999392033 ], [ 360698.373099997639656, 257731.508099999278784 ], [ 360698.505699999630451, 257727.739399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91215753, "LATITUDE": 18.35141151, "OBJECTID_1": 5801, "PARCEL_NO_": "103003030500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4 GR NORTH SIDE", "Name": "NILES, MARY & OTHERS", "Address": "PO Box 11908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 359600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 760.66784837199998, "SHAPE_Area": 30446.274121800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360735.148800000548363, 257879.842099998146296 ], [ 360733.195500001311302, 257892.24100000038743 ], [ 360722.093099996447563, 257964.977400001138449 ], [ 360697.267899997532368, 258134.071199998259544 ], [ 360696.418399997055531, 258139.130499999970198 ], [ 360695.588699996471405, 258141.868000000715256 ], [ 360694.726700000464916, 258148.404800001531839 ], [ 360693.857400000095367, 258155.785999998450279 ], [ 360701.967299997806549, 258150.363899998366833 ], [ 360708.451999999582767, 258146.406199999153614 ], [ 360727.877199999988079, 258137.910399999469519 ], [ 360794.946800000965595, 258121.360700000077486 ], [ 360806.245899997651577, 258120.186599999666214 ], [ 360823.180299997329712, 258120.114100001752377 ], [ 360823.20549999922514, 258117.159000001847744 ], [ 360832.720499999821186, 258041.454300001263618 ], [ 360849.946099996566772, 258007.186999998986721 ], [ 360844.342600002884865, 257907.716099999845028 ], [ 360843.265299998223782, 257887.699599999934435 ], [ 360735.148800000548363, 257879.842099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003038700", "MAP": "D9-7634-T005", "PARCEL_NAM": "4J REM", "ACRE": "5.549", "LONGITUDE": -64.91225002, "LATITUDE": 18.34946904, "OBJECTID_1": 5883, "PARCEL_NO_": "103003038700", "Tax_Legal_": "4J ST.JOSEPH & ROSENDAHL 4 GR. NORTHSIDE QTR.", "Name": "THOMAS, RACHEL RIAMER", "Address": "564 E 93rd St", "City": "Brooklyn", "State": "New York", "Zip": 11236, "Country": "United States", "Land_Value": 248100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 710.97089555900004, "SHAPE_Area": 25033.3508014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360727.862000003457069, 257688.63230000063777 ], [ 360720.311899997293949, 257690.070000000298023 ], [ 360712.691899999976158, 257690.704999998211861 ], [ 360704.436800003051758, 257691.339999999850988 ], [ 360699.789399996399879, 257691.243200000375509 ], [ 360698.505699999630451, 257727.739399999380112 ], [ 360697.719700001180172, 257750.084699999541044 ], [ 360696.564900003373623, 257782.91440000012517 ], [ 360696.711000002920628, 257876.548700001090765 ], [ 360717.9324000030756, 257878.997299998998642 ], [ 360735.148800000548363, 257879.842099998146296 ], [ 360843.265299998223782, 257887.699599999934435 ], [ 360835.988499999046326, 257752.493999999016523 ], [ 360836.019100002944469, 257748.905600000172853 ], [ 360828.988799996674061, 257722.250300001353025 ], [ 360825.849899999797344, 257712.092099998146296 ], [ 360826.98309999704361, 257690.485199999064207 ], [ 360764.546700000762939, 257719.013900000602007 ], [ 360736.317199997603893, 257720.362799998372793 ], [ 360738.163699999451637, 257689.842000000178814 ], [ 360738.8800999969244, 257685.776500001549721 ], [ 360740.727700002491474, 257681.124899998307228 ], [ 360736.392099998891354, 257683.946199998259544 ], [ 360727.862000003457069, 257688.63230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025800", "MAP": "A9-25-T64", "PARCEL_NAM": "3-12", "ACRE": null, "LONGITUDE": -64.91393154, "LATITUDE": 18.34957513, "OBJECTID_1": 5774, "PARCEL_NO_": "103003025800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-12 GT. NORTHSIDE", "Name": "PHAROAH, PLACID & ISIDORA", "Address": "293 Woodgreen Ln", "City": "Winter Springs", "State": "Florida", "Zip": 32708, "Country": "United States", "Land_Value": 74000, "Improved_V": 228000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.95357049899999, "SHAPE_Area": 2603.80280915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360612.447200000286102, 257753.475600000470877 ], [ 360598.087399996817112, 257753.558800000697374 ], [ 360588.988899998366833, 257781.925299998372793 ], [ 360583.254799999296665, 257792.433100000023842 ], [ 360574.309900000691414, 257801.22580000013113 ], [ 360547.554099999368191, 257818.316500000655651 ], [ 360602.088200002908707, 257846.876400001347065 ], [ 360604.545500002801418, 257829.149000000208616 ], [ 360612.447200000286102, 257753.475600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91377738, "LATITUDE": 18.34906462, "OBJECTID_1": 5774, "PARCEL_NO_": "103003025800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 3-12 GT. NORTHSIDE", "Name": "PHAROAH, PLACID & ISIDORA", "Address": "293 Woodgreen Ln", "City": "Winter Springs", "State": "Florida", "Zip": 32708, "Country": "United States", "Land_Value": 74000, "Improved_V": 228000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.769645375499998, "SHAPE_Area": 142.23633548000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360612.447200000286102, 257753.475600000470877 ], [ 360613.618400000035763, 257742.259500000625849 ], [ 360601.414499998092651, 257743.1858000010252 ], [ 360598.087399996817112, 257753.558800000697374 ], [ 360612.447200000286102, 257753.475600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003030600", "MAP": "D9-7847-T006", "PARCEL_NAM": null, "ACRE": ".177", "LONGITUDE": -64.91340034, "LATITUDE": 18.34929688, "OBJECTID_1": 5802, "PARCEL_NO_": "103003030600", "Tax_Legal_": "4I REM ST.JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "SMALLS (TRUSTEE), DORIS L.", "Address": "7404 Cape Charles Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27617, "Country": "United States", "Land_Value": 290400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.259471537, "SHAPE_Area": 867.94664083600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360671.214299999177456, 257804.870799999684095 ], [ 360669.217000000178814, 257798.747000001370907 ], [ 360667.392800003290176, 257799.184200000017881 ], [ 360665.803700000047684, 257798.718699999153614 ], [ 360664.682899996638298, 257796.673599999397993 ], [ 360658.074199996888638, 257770.380399998277426 ], [ 360655.383000001311302, 257765.607999999076128 ], [ 360651.546599999070168, 257761.730900000780821 ], [ 360647.933899998664856, 257758.30799999833107 ], [ 360623.255800001323223, 257746.766699999570847 ], [ 360613.618400000035763, 257742.259500000625849 ], [ 360612.447200000286102, 257753.475600000470877 ], [ 360632.41499999910593, 257761.301399998366833 ], [ 360644.902999997138977, 257766.195799998939037 ], [ 360644.909999996423721, 257766.199700001627207 ], [ 360648.51519999653101, 257770.527300000190735 ], [ 360649.624799996614456, 257773.929400000721216 ], [ 360657.95440000295639, 257812.225000001490116 ], [ 360668.218500003218651, 257809.369800001382828 ], [ 360667.552799999713898, 257807.328499998897314 ], [ 360668.476099997758865, 257805.75279999896884 ], [ 360671.214299999177456, 257804.870799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003030600", "MAP": "D9-7847-T006", "PARCEL_NAM": "4I-8", "ACRE": ".349", "LONGITUDE": -64.91311777, "LATITUDE": 18.3492488, "OBJECTID_1": 5802, "PARCEL_NO_": "103003030600", "Tax_Legal_": "4I REM ST.JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "SMALLS (TRUSTEE), DORIS L.", "Address": "7404 Cape Charles Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27617, "Country": "United States", "Land_Value": 290400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.730362179, "SHAPE_Area": 1039.5645696399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360644.747299998998642, 257756.065699998289347 ], [ 360642.932800002396107, 257755.969200000166893 ], [ 360647.933899998664856, 257758.30799999833107 ], [ 360651.546599999070168, 257761.730900000780821 ], [ 360655.383000001311302, 257765.607999999076128 ], [ 360658.074199996888638, 257770.380399998277426 ], [ 360661.150700002908707, 257782.620400000363588 ], [ 360696.564900003373623, 257782.91440000012517 ], [ 360697.433700002729893, 257758.215799998492002 ], [ 360662.825599998235703, 257757.026999998837709 ], [ 360644.747299998998642, 257756.065699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003030600", "MAP": "D9-7847-T006", "PARCEL_NAM": "4I-6", "ACRE": ".357", "LONGITUDE": -64.91346585, "LATITUDE": 18.34898104, "OBJECTID_1": 5802, "PARCEL_NO_": "103003030600", "Tax_Legal_": "4I REM ST.JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "SMALLS (TRUSTEE), DORIS L.", "Address": "7404 Cape Charles Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27617, "Country": "United States", "Land_Value": 290400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.05709751099999, "SHAPE_Area": 1084.7215248499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360643.701499998569489, 257712.675000000745058 ], [ 360631.556199997663498, 257728.908399999141693 ], [ 360614.492899999022484, 257733.88459999859333 ], [ 360613.618400000035763, 257742.259500000625849 ], [ 360623.255800001323223, 257746.766699999570847 ], [ 360642.932800002396107, 257755.969200000166893 ], [ 360644.747299998998642, 257756.065699998289347 ], [ 360662.825599998235703, 257757.026999998837709 ], [ 360660.208800002932549, 257750.753499999642372 ], [ 360650.653999999165535, 257727.847899999469519 ], [ 360648.348800003528595, 257722.817200001329184 ], [ 360643.701499998569489, 257712.675000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003038900", "MAP": "D9-7634-T005", "PARCEL_NAM": "4J-6", "ACRE": "1.228", "LONGITUDE": -64.91202872, "LATITUDE": 18.34840632, "OBJECTID_1": 5885, "PARCEL_NO_": "103003038900", "Tax_Legal_": "4J-6 ST.JOSEPH & ROSENDAHL 4 GR. NORTHSIDE QTR.", "Name": "WILSON, DANIELLE L. & DIANNE M. THOMAS", "Address": "727 E 60th St", "City": "Chicago", "State": "Illinois", "Zip": 60637, "Country": "United States", "Land_Value": 119100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.153503449, "SHAPE_Area": 3586.0603609899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360762.261100001633167, 257662.549100000411272 ], [ 360764.546700000762939, 257719.013900000602007 ], [ 360826.98309999704361, 257690.485199999064207 ], [ 360828.738099999725819, 257657.020399998873472 ], [ 360816.634499996900558, 257657.976799998432398 ], [ 360786.179799996316433, 257635.984900001436472 ], [ 360778.601700000464916, 257643.355700001120567 ], [ 360770.789700001478195, 257652.338599998503923 ], [ 360762.261100001633167, 257662.549100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003038600", "MAP": "D9-7634-T005", "PARCEL_NAM": "4J-5", "ACRE": ".351", "LONGITUDE": -64.91240969, "LATITUDE": 18.3485898, "OBJECTID_1": 5882, "PARCEL_NO_": "103003038600", "Tax_Legal_": "4J-5 ST. JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR.", "Name": "BLACKMAN, AUDITH", "Address": "7708 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.020916159, "SHAPE_Area": 1194.9915714599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360740.727700002491474, 257681.124899998307228 ], [ 360738.8800999969244, 257685.776500001549721 ], [ 360738.163699999451637, 257689.842000000178814 ], [ 360736.317199997603893, 257720.362799998372793 ], [ 360764.546700000762939, 257719.013900000602007 ], [ 360762.261100001633167, 257662.549100000411272 ], [ 360761.595600001513958, 257663.34569999948144 ], [ 360753.104800000786781, 257671.870600000023842 ], [ 360744.629000000655651, 257678.585999999195337 ], [ 360740.727700002491474, 257681.124899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003030600", "MAP": "D9-7847-T006", "PARCEL_NAM": "4I-17", "ACRE": ".158", "LONGITUDE": -64.91347677, "LATITUDE": 18.34944744, "OBJECTID_1": 5802, "PARCEL_NO_": "103003030600", "Tax_Legal_": "4I REM ST.JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "SMALLS (TRUSTEE), DORIS L.", "Address": "7404 Cape Charles Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27617, "Country": "United States", "Land_Value": 290400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.63728763699999, "SHAPE_Area": 1351.0990513199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360644.902999997138977, 257766.195700000971556 ], [ 360632.41499999910593, 257761.301399998366833 ], [ 360615.605800002813339, 257808.732999999076128 ], [ 360626.142599999904633, 257809.601799998432398 ], [ 360657.95440000295639, 257812.225000001490116 ], [ 360649.624799996614456, 257773.929400000721216 ], [ 360648.51519999653101, 257770.527300000190735 ], [ 360644.909999996423721, 257766.199700001627207 ], [ 360644.902999997138977, 257766.195700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003030600", "MAP": "D9-7847-T006", "PARCEL_NAM": "4I", "ACRE": "5.619", "LONGITUDE": -64.91328052, "LATITUDE": 18.35035113, "OBJECTID_1": 5802, "PARCEL_NO_": "103003030600", "Tax_Legal_": "4I REM ST.JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "SMALLS (TRUSTEE), DORIS L.", "Address": "7404 Cape Charles Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27617, "Country": "United States", "Land_Value": 290400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 637.52953375100003, "SHAPE_Area": 19022.168983899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360696.711000002920628, 257876.548700001090765 ], [ 360696.564900003373623, 257782.91440000012517 ], [ 360661.150700002908707, 257782.620400000363588 ], [ 360664.682899996638298, 257796.673599999397993 ], [ 360665.803700000047684, 257798.718699999153614 ], [ 360667.392800003290176, 257799.184200000017881 ], [ 360669.217000000178814, 257798.747000001370907 ], [ 360671.214299999177456, 257804.870799999684095 ], [ 360668.476099997758865, 257805.75279999896884 ], [ 360667.552799999713898, 257807.328499998897314 ], [ 360668.218500003218651, 257809.369800001382828 ], [ 360657.95440000295639, 257812.225000001490116 ], [ 360626.142599999904633, 257809.601799998432398 ], [ 360615.605800002813339, 257808.732999999076128 ], [ 360613.696199998259544, 257814.121300000697374 ], [ 360602.088200002908707, 257846.876400001347065 ], [ 360597.146700002253056, 257882.525800000876188 ], [ 360591.542700000107288, 257922.954900000244379 ], [ 360585.611299999058247, 257965.745200000703335 ], [ 360592.260600000619888, 257965.814599998295307 ], [ 360676.934199996292591, 257965.241099998354912 ], [ 360722.093099996447563, 257964.977400001138449 ], [ 360733.195500001311302, 257892.24100000038743 ], [ 360735.148800000548363, 257879.842099998146296 ], [ 360717.9324000030756, 257878.997299998998642 ], [ 360696.711000002920628, 257876.548700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803026300", "MAP": "D9-8158-T008", "PARCEL_NAM": "55-1", "ACRE": "1.751", "LONGITUDE": -64.94727816, "LATITUDE": 18.35008059, "OBJECTID_1": 4331, "PARCEL_NO_": "102803026300", "Tax_Legal_": "55-1 & 55B-3A SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "SCHACK, SUZANNE J. LA PLACE", "Address": "2-I Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 334900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 407.68320733600001, "SHAPE_Area": 7783.0680808099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357065.441200003027916, 257748.653799999505281 ], [ 357030.467699997127056, 257783.831300001591444 ], [ 357018.304700002074242, 257791.753299999982119 ], [ 357037.107699997723103, 257856.290699999779463 ], [ 357047.285899996757507, 257892.048799999058247 ], [ 357071.602899998426437, 257877.260200001299381 ], [ 357086.692699998617172, 257904.4037000015378 ], [ 357115.077299997210503, 257885.426500000059605 ], [ 357091.430900000035763, 257821.482700001448393 ], [ 357065.441200003027916, 257748.653799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803025800", "MAP": "D9-4893-T90", "PARCEL_NAM": "55A-6", "ACRE": "0.52", "LONGITUDE": -64.9463117, "LATITUDE": 18.3490559, "OBJECTID_1": 4327, "PARCEL_NO_": "102803025800", "Tax_Legal_": "SOLBERG 55A-6 LT.NORTHSIDE QTR.", "Name": "LAPLACE, EDWARD", "Address": "55A-7 Solberg Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.35741058400001, "SHAPE_Area": 2019.2639619900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357210.108000002801418, 257721.024500001221895 ], [ 357182.0033999979496, 257696.412200000137091 ], [ 357137.533900000154972, 257710.40260000154376 ], [ 357131.052799999713898, 257713.938200000673532 ], [ 357148.784500002861023, 257743.677600000053644 ], [ 357210.108000002801418, 257721.024500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94656607, "LATITUDE": 18.3486269, "OBJECTID_1": 4325, "PARCEL_NO_": "102803025600", "Tax_Legal_": "SOLBERG 55A-4 LT. NORTHSIDE", "Name": "PHILLIPS, DION & MARIA THERESA", "Address": "PO Box 7471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 117400, "Improved_V": 377500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.67757990299998, "SHAPE_Area": 3953.8732008900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357168.347300000488758, 257641.239999998360872 ], [ 357164.082800000905991, 257643.246199999004602 ], [ 357148.632200002670288, 257646.658399999141693 ], [ 357131.108000002801418, 257649.75899999961257 ], [ 357121.323499999940395, 257649.384700000286102 ], [ 357108.608999997377396, 257644.564699999988079 ], [ 357100.921999998390675, 257641.554200001060963 ], [ 357092.031999997794628, 257640.597600001841784 ], [ 357088.183700002729893, 257641.330200001597404 ], [ 357127.872500002384186, 257708.634799998253584 ], [ 357135.163500003516674, 257704.683699999004602 ], [ 357148.903200000524521, 257700.996500000357628 ], [ 357165.085199996829033, 257694.58500000089407 ], [ 357179.63120000064373, 257690.904399998486042 ], [ 357188.55460000038147, 257684.644600000232458 ], [ 357168.347300000488758, 257641.239999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704048300", "MAP": "D9-8156-T008", "PARCEL_NAM": "6-20", "ACRE": "1.028", "LONGITUDE": -64.95135168, "LATITUDE": 18.3495364, "OBJECTID_1": 3613, "PARCEL_NO_": "102704048300", "Tax_Legal_": "6-20 LILLIENDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "RUAN, ST. CLAUDE I. & ROSE A.", "Address": "PO Box 303598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.67257851099998, "SHAPE_Area": 4932.1259862899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356655.478699997067451, 257832.505499999970198 ], [ 356663.969400003552437, 257737.66609999909997 ], [ 356659.808700002729893, 257734.97520000115037 ], [ 356611.583400003612041, 257707.166499998420477 ], [ 356610.077899999916553, 257721.073300000280142 ], [ 356606.500200003385544, 257762.418400000780821 ], [ 356608.062399998307228, 257768.34180000051856 ], [ 356609.556400001049042, 257782.286200001835823 ], [ 356609.589000001549721, 257790.335299998521805 ], [ 356613.123700000345707, 257799.220800001174212 ], [ 356615.773199997842312, 257804.595600001513958 ], [ 356619.973800003528595, 257808.453499998897314 ], [ 356655.478699997067451, 257832.505499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202030400", "MAP": "A9-682-T006", "PARCEL_NAM": "11-6 REM", "ACRE": ".490", "LONGITUDE": -64.95293917, "LATITUDE": 18.345302, "OBJECTID_1": 8190, "PARCEL_NO_": "105202030400", "Tax_Legal_": "CONTANT 11-6 7BA SUOTHSIDE", "Name": "JOHNSON, BRIAN & STEPHEN", "Address": "PO Box 302553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38100, "Improved_V": 236200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.981649976, "SHAPE_Area": 2463.8900708599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356435.172799997031689, 257291.193300001323223 ], [ 356440.666799999773502, 257294.518300000578165 ], [ 356436.614799998700619, 257298.346799999475479 ], [ 356448.290299996733665, 257308.116700001060963 ], [ 356457.879699997603893, 257318.3277000002563 ], [ 356461.524999998509884, 257323.264400001615286 ], [ 356465.906400002539158, 257324.684999998658895 ], [ 356468.566399998962879, 257330.540199998766184 ], [ 356509.615000002086163, 257303.341299999505281 ], [ 356468.814900003373623, 257265.221599999815226 ], [ 356435.172799997031689, 257291.193300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021000", "MAP": "A9-96-T68", "PARCEL_NAM": "20 REM", "ACRE": "27.69", "LONGITUDE": -64.96404107, "LATITUDE": 18.36281246, "OBJECTID_1": 2425, "PARCEL_NO_": "102602021000", "Tax_Legal_": "DOROTHEA 20 & 21 LITTLE NORTHSIDE", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 896500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1709.0725032400001, "SHAPE_Area": 98743.175704499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355287.467200003564358, 259035.040899999439716 ], [ 355243.874700002372265, 259076.706000000238419 ], [ 355211.983499996364117, 259028.754200000315905 ], [ 355155.497800000011921, 258938.788199998438358 ], [ 355145.753700003027916, 258946.730000000447035 ], [ 355132.786200001835823, 258954.434399999678135 ], [ 355115.796099998056889, 258961.050299998372793 ], [ 355096.408600002527237, 258965.113499999046326 ], [ 355094.700499996542931, 258965.217099998146296 ], [ 355094.854299999773502, 258969.636900000274181 ], [ 355059.551399998366833, 258972.765700001269579 ], [ 355060.443999998271465, 258980.354499999433756 ], [ 355045.607100002467632, 258992.183600001037121 ], [ 355060.560400001704693, 259008.305399999022484 ], [ 355074.138300001621246, 259023.615200001746416 ], [ 355098.975699998438358, 259042.394799999892712 ], [ 355105.23200000077486, 259065.244100000709295 ], [ 355110.73589999973774, 259081.754399999976158 ], [ 355113.135099999606609, 259084.096099998801947 ], [ 355115.518100000917912, 259088.337400000542402 ], [ 355119.452500000596046, 259099.768699999898672 ], [ 355124.954700000584126, 259116.490100000053644 ], [ 355126.522299997508526, 259121.780299998819828 ], [ 355133.655100002884865, 259136.404100000858307 ], [ 355136.032600000500679, 259141.2787000015378 ], [ 355128.454000003635883, 259179.002500001341105 ], [ 355135.592100001871586, 259192.993099998682737 ], [ 355147.573499999940395, 259206.390000000596046 ], [ 355152.368199996650219, 259211.49549999833107 ], [ 355158.662299998104572, 259229.912200000137091 ], [ 355177.862700000405312, 259247.801199998706579 ], [ 355203.339199997484684, 259286.217599999159575 ], [ 355235.563000001013279, 259289.858800001442432 ], [ 355236.33330000191927, 259294.087000001221895 ], [ 355245.125399999320507, 259303.236000001430511 ], [ 355269.077399998903275, 259331.296399999409914 ], [ 355284.829700000584126, 259375.332800000905991 ], [ 355292.027099996805191, 259382.357799999415874 ], [ 355322.41889999806881, 259411.737399999052286 ], [ 355322.264200001955032, 259429.8902000002563 ], [ 355333.414099998772144, 259446.235700000077486 ], [ 355312.772600002586842, 259502.850900001823902 ], [ 355316.710699997842312, 259513.859999999403954 ], [ 355323.776900000870228, 259536.293699998408556 ], [ 355371.514700002968311, 259517.263799998909235 ], [ 355379.046599999070168, 259498.805300001055002 ], [ 355392.275799997150898, 259483.723999999463558 ], [ 355401.007100000977516, 259476.051100000739098 ], [ 355411.061300002038479, 259465.467700000852346 ], [ 355419.792499996721745, 259456.207299999892712 ], [ 355425.084200002253056, 259453.8260000012815 ], [ 355446.780100002884865, 259444.565600000321865 ], [ 355457.363399997353554, 259439.009300000965595 ], [ 355471.386399999260902, 259426.309300001710653 ], [ 355477.20719999819994, 259421.546799998730421 ], [ 355484.615599997341633, 259416.51969999819994 ], [ 355499.040899999439716, 259408.538899999111891 ], [ 355476.010200001299381, 259366.976100001484156 ], [ 355458.544699996709824, 259334.746899999678135 ], [ 355445.045999996364117, 259310.149599999189377 ], [ 355433.683899998664856, 259318.711399998515844 ], [ 355419.400399997830391, 259291.574599999934435 ], [ 355430.758900001645088, 259283.434900000691414 ], [ 355416.462899997830391, 259257.775499999523163 ], [ 355402.168600000441074, 259231.905099999159575 ], [ 355384.704899996519089, 259199.464899998158216 ], [ 355364.842000000178814, 259164.68299999833107 ], [ 355342.597900003194809, 259125.448600001633167 ], [ 355295.676399998366833, 259048.648699998855591 ], [ 355287.467200003564358, 259035.040899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701015900", "MAP": "D9-5829-T94", "PARCEL_NAM": "40A", "ACRE": ".30", "LONGITUDE": -64.96636822000001, "LATITUDE": 18.36084176, "OBJECTID_1": 2835, "PARCEL_NO_": "102701015900", "Tax_Legal_": "NELTJEBERG 40-A LITTLE NORTHSIDE", "Name": "SMITH, RAQUEMA LAYCOYA", "Address": "PO Box 306892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.041892291, "SHAPE_Area": 677.73106069300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355020.26969999819994, 258998.50560000166297 ], [ 355021.599799998104572, 259003.279599998146296 ], [ 355022.023199997842312, 259016.402899999171495 ], [ 355032.174800001084805, 259020.068599998950958 ], [ 355060.560400001704693, 259008.305399999022484 ], [ 355045.607100002467632, 258992.183600001037121 ], [ 355035.4949000030756, 259000.245799999684095 ], [ 355025.69820000231266, 258993.444699998944998 ], [ 355022.755400002002716, 258997.230200000107288 ], [ 355020.26969999819994, 258998.50560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701041300", "MAP": "A9-660A-T006", "PARCEL_NAM": "21-29A", "ACRE": ".014", "LONGITUDE": -64.96617159, "LATITUDE": 18.36038017, "OBJECTID_1": 2939, "PARCEL_NO_": "102701041300", "Tax_Legal_": "21-29 DOROTHEA \nNo.7 LITTLE NORTHSIDE QUARTER", "Name": "HUYGHUE, JR. (LIFE ESTATE), LEROY", "Address": "PO Box 9642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48600, "Improved_V": 198900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.963388469100003, "SHAPE_Area": 84.211778105400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355066.218000002205372, 258957.891699999570847 ], [ 355066.389200001955032, 258952.350099999457598 ], [ 355054.753200002014637, 258952.825500000268221 ], [ 355051.615699999034405, 258953.166999999433756 ], [ 355051.305500000715256, 258958.833700001239777 ], [ 355066.218000002205372, 258957.891699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602026200", "MAP": "A9-660A-T006", "PARCEL_NAM": "1-BA", "ACRE": ".014", "LONGITUDE": -64.96653005, "LATITUDE": 18.3605627, "OBJECTID_1": 2460, "PARCEL_NO_": "102602026200", "Tax_Legal_": "8-1-E NELTJBERG WESTERN SECTION No.6 LITTLE NORTHSIDE QUARTER", "Name": "XAVIER, VERNON & CATHERINE KING", "Address": "PO Box 303709", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.007765565600003, "SHAPE_Area": 157.63831085199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355019.797399997711182, 258986.521699998527765 ], [ 355020.433600001037121, 258985.812100000679493 ], [ 355023.737999998033047, 258976.551100000739098 ], [ 355029.403200000524521, 258969.747299998998642 ], [ 355025.596400000154972, 258964.294900000095367 ], [ 355021.831900000572205, 258968.104100000113249 ], [ 355017.794299997389317, 258972.241599999368191 ], [ 355014.905199997127056, 258975.81980000063777 ], [ 355012.202299997210503, 258979.967999998480082 ], [ 355019.797399997711182, 258986.521699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602041400", "MAP": "A9-660A-T006", "PARCEL_NAM": "21-18A", "ACRE": ".028", "LONGITUDE": -64.96633032, "LATITUDE": 18.36040066, "OBJECTID_1": 2537, "PARCEL_NO_": "102602041400", "Tax_Legal_": "21-18A DOROTHEA NO.6 LITTLE NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.613052450600001, "SHAPE_Area": 100.470617273 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355034.181800000369549, 258963.287200000137091 ], [ 355035.596600003540516, 258962.598099999129772 ], [ 355039.696900002658367, 258960.799400001764297 ], [ 355045.080799996852875, 258958.772100001573563 ], [ 355051.305500000715256, 258958.833700001239777 ], [ 355051.615699999034405, 258953.166999999433756 ], [ 355045.019400000572205, 258953.884799998253584 ], [ 355040.052699998021126, 258954.982200000435114 ], [ 355036.034800000488758, 258956.655900001525879 ], [ 355031.583200000226498, 258959.651900000870228 ], [ 355034.181800000369549, 258963.287200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602026300", "MAP": "A9-660A-T006", "PARCEL_NAM": "21CA", "ACRE": ".005", "LONGITUDE": -64.96644583, "LATITUDE": 18.36045622, "OBJECTID_1": 2461, "PARCEL_NO_": "102602026300", "Tax_Legal_": "8-1-F NELTJBERG (WESTERN SECT.) No.6 LITTLE NORTHSIDE QUARTER", "Name": "MATTHEW, NIKKORI OHANIO", "Address": "PO Box 10437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.142829531299999, "SHAPE_Area": 34.567313356600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355028.172100000083447, 258967.984099999070168 ], [ 355030.280699998140335, 258966.138900000602007 ], [ 355034.140799999237061, 258963.229800000786781 ], [ 355031.583200000226498, 258959.651900000870228 ], [ 355027.407200001180172, 258962.462499998509884 ], [ 355025.596400000154972, 258964.294900000095367 ], [ 355028.172100000083447, 258967.984099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102602026300", "MAP": "A9-660A-T006", "PARCEL_NAM": "21 REM", "ACRE": ".006", "LONGITUDE": -64.96639986, "LATITUDE": 18.36046509, "OBJECTID_1": 2461, "PARCEL_NO_": "102602026300", "Tax_Legal_": "8-1-F NELTJBERG (WESTERN SECT.) No.6 LITTLE NORTHSIDE QUARTER", "Name": "MATTHEW, NIKKORI OHANIO", "Address": "PO Box 10437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.247550895300002, "SHAPE_Area": 31.700415081500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355029.403200000524521, 258969.747299998998642 ], [ 355031.551500000059605, 258967.951099999248981 ], [ 355033.404899999499321, 258966.511999998241663 ], [ 355035.853699997067451, 258965.131599999964237 ], [ 355037.705200001597404, 258963.934900000691414 ], [ 355040.504900000989437, 258962.718899998813868 ], [ 355041.429300002753735, 258962.295499999076128 ], [ 355040.787900000810623, 258960.388599999248981 ], [ 355039.696900002658367, 258960.799400001764297 ], [ 355035.596600003540516, 258962.598099999129772 ], [ 355034.181800000369549, 258963.287200000137091 ], [ 355030.280699998140335, 258966.138900000602007 ], [ 355028.170500002801418, 258967.981800001114607 ], [ 355029.403200000524521, 258969.747299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202081800", "MAP": "A9-676-T006", "PARCEL_NAM": "107-5-6 REM", "ACRE": ".25", "LONGITUDE": -64.95467273, "LATITUDE": 18.34536049, "OBJECTID_1": 8460, "PARCEL_NO_": "105202081800", "Tax_Legal_": "107-5-6-REM CONTANT NO. 7B SOUTHSIDE QUARTER", "Name": "HERMAN, JOHN B., JANE, JAMES & JOAN", "Address": "PO Box 302792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.152684408, "SHAPE_Area": 1189.9714134599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356293.137800000607967, 257279.594399999827147 ], [ 356289.29619999974966, 257278.530699998140335 ], [ 356271.525100000202656, 257279.887899998575449 ], [ 356277.552599996328354, 257325.169700000435114 ], [ 356280.167700000107288, 257328.428599998354912 ], [ 356307.54450000077486, 257318.289599999785423 ], [ 356293.137800000607967, 257279.594399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202081700", "MAP": "A9-676-T006", "PARCEL_NAM": "107-5-5 REM", "ACRE": ".30", "LONGITUDE": -64.95491496, "LATITUDE": 18.34537643, "OBJECTID_1": 8459, "PARCEL_NO_": "105202081700", "Tax_Legal_": "107-5-5&1/13 INT 107-5-A CONTANT No.7B SOUTHSIDE QUARTER", "Name": "HERMAN,JOAN, JOHN,JANE,JOHN B.&JAMES", "Address": "PO Box 302792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.812956963, "SHAPE_Area": 1261.8471342099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356271.525100000202656, 257279.887899998575449 ], [ 356262.622800000011921, 257280.31700000166893 ], [ 356247.716300003230572, 257283.254799999296665 ], [ 356240.896700002253056, 257288.918699998408556 ], [ 356263.778099998831749, 257337.483300000429153 ], [ 356277.552599996328354, 257325.169700000435114 ], [ 356271.525100000202656, 257279.887899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202015400", "MAP": "A9-676-T006", "PARCEL_NAM": null, "ACRE": ".009", "LONGITUDE": -64.95437031, "LATITUDE": 18.34512226, "OBJECTID_1": 8060, "PARCEL_NO_": "105202015400", "Tax_Legal_": "CONTANT 11-1 7BA SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 98000, "Improved_V": 263500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.633015656300003, "SHAPE_Area": 32.464664320399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356320.628899998962879, 257278.061200000345707 ], [ 356329.211099997162819, 257277.197599999606609 ], [ 356329.223999999463558, 257275.689300000667572 ], [ 356304.219300001859665, 257276.540100000798702 ], [ 356320.628899998962879, 257278.061200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202017000", "MAP": "A9-676-T006", "PARCEL_NAM": "11-1-1 REM", "ACRE": ".295", "LONGITUDE": -64.95417946000001, "LATITUDE": 18.34532785, "OBJECTID_1": 8076, "PARCEL_NO_": "105202017000", "Tax_Legal_": "CONTANT 11-1-1 7BA S.S. QTR", "Name": "KIKENDALL REALTY LP", "Address": "PO Box 301903", "City": "St.Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.073644126, "SHAPE_Area": 1360.56740214 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356328.369099996984005, 257281.381799999624491 ], [ 356322.295100003480911, 257331.783500000834465 ], [ 356347.400499999523163, 257319.112199999392033 ], [ 356349.830200001597404, 257317.865499999374151 ], [ 356357.376599997282028, 257283.941199999302626 ], [ 356358.204499997198582, 257281.414900001138449 ], [ 356359.874600000679493, 257274.673599999397993 ], [ 356351.554200001060963, 257274.949299998581409 ], [ 356329.211099997162819, 257277.197599999606609 ], [ 356329.196999996900558, 257278.855500001460314 ], [ 356328.369099996984005, 257281.381799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202016600", "MAP": "A9-678-T006", "PARCEL_NAM": "11-1C REM", "ACRE": ".569", "LONGITUDE": -64.95369551, "LATITUDE": 18.34535745, "OBJECTID_1": 8072, "PARCEL_NO_": "105202016600", "Tax_Legal_": "CONTANT 11 1C 7A SOUTHSIDE QTR", "Name": "BANBANAMANGO LLC", "Address": "PO Box 1903", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 176400, "Improved_V": 174200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.842177142, "SHAPE_Area": 2903.8852591899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356426.59179999679327, 257299.495400000363588 ], [ 356387.641099996864796, 257279.104400001466274 ], [ 356377.59910000115633, 257276.507399998605251 ], [ 356359.874600000679493, 257274.673599999397993 ], [ 356358.204499997198582, 257281.414900001138449 ], [ 356357.376599997282028, 257283.941199999302626 ], [ 356349.830200001597404, 257317.865499999374151 ], [ 356363.598700001835823, 257310.801100000739098 ], [ 356400.528999999165535, 257329.890599999576807 ], [ 356404.499499998986721, 257337.100299999117851 ], [ 356436.992899999022484, 257309.079700000584126 ], [ 356426.59179999679327, 257299.495400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105202015400", "MAP": "A9-676-T006", "PARCEL_NAM": "11-1 REM", "ACRE": ".291", "LONGITUDE": -64.95442923, "LATITUDE": 18.34532939, "OBJECTID_1": 8060, "PARCEL_NO_": "105202015400", "Tax_Legal_": "CONTANT 11-1 7BA SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 98000, "Improved_V": 263500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.168834484, "SHAPE_Area": 1286.30291829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356304.219300001859665, 257276.540100000798702 ], [ 356292.120999999344349, 257276.863299999386072 ], [ 356293.137800000607967, 257279.594399999827147 ], [ 356307.54450000077486, 257318.289599999785423 ], [ 356312.617600001394749, 257331.915300000458956 ], [ 356314.197899997234344, 257335.728000000119209 ], [ 356322.295100003480911, 257331.783500000834465 ], [ 356328.369099996984005, 257281.381799999624491 ], [ 356329.196999996900558, 257278.855500001460314 ], [ 356329.211099997162819, 257277.197599999606609 ], [ 356320.628899998962879, 257278.061200000345707 ], [ 356304.219300001859665, 257276.540100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202030200", "MAP": "A9-678-T006", "PARCEL_NAM": "11-5 REM", "ACRE": ".242", "LONGITUDE": -64.95323359, "LATITUDE": 18.3450911, "OBJECTID_1": 8188, "PARCEL_NO_": "105202030200", "Tax_Legal_": "CONTANT REM. 11 5 7BA SOUTHSIDE QTR", "Name": "SAMUEL, VICTOR S. & ME-OLGA C.", "Address": "PO Box 302482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.318027022, "SHAPE_Area": 857.73486785600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356417.620600000023842, 257284.813999999314547 ], [ 356435.296400003135204, 257291.097899999469519 ], [ 356468.814900003373623, 257265.221599999815226 ], [ 356439.839800000190735, 257258.862799998372793 ], [ 356413.836400002241135, 257282.292399998754263 ], [ 356417.620600000023842, 257284.813999999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202039400", "MAP": "A9-678-T006", "PARCEL_NAM": null, "ACRE": ".229", "LONGITUDE": -64.95363329, "LATITUDE": 18.34507845, "OBJECTID_1": 8250, "PARCEL_NO_": "105202039400", "Tax_Legal_": "11-5A-A CONTANT R.O.W. NO.7BA SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.183797860399999, "SHAPE_Area": 37.6683476101 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356405.888099998235703, 257278.280200000852346 ], [ 356406.472000002861023, 257277.236299999058247 ], [ 356398.326700001955032, 257273.355700001120567 ], [ 356399.769100002944469, 257270.381799999624491 ], [ 356394.280100002884865, 257268.243700001388788 ], [ 356392.146899998188019, 257272.615699999034405 ], [ 356399.383900001645088, 257274.996899999678135 ], [ 356405.888099998235703, 257278.280200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202039500", "MAP": "A9-678-T006", "PARCEL_NAM": "11-4-B", "ACRE": ".004", "LONGITUDE": -64.95370857, "LATITUDE": 18.34504821, "OBJECTID_1": 8251, "PARCEL_NO_": "105202039500", "Tax_Legal_": "43-A ROW UPPER JOHN DUNKO SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.9269671781, "SHAPE_Area": 37.322696180400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356394.280100002884865, 257268.243700001388788 ], [ 356387.376400001347065, 257265.55460000038147 ], [ 356385.159400001168251, 257270.390900000929832 ], [ 356392.146899998188019, 257272.615699999034405 ], [ 356394.280100002884865, 257268.243700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202039500", "MAP": "A9-678-T006", "PARCEL_NAM": null, "ACRE": ".006", "LONGITUDE": -64.95440608, "LATITUDE": 18.34504541, "OBJECTID_1": 8251, "PARCEL_NO_": "105202039500", "Tax_Legal_": "43-A ROW UPPER JOHN DUNKO SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.653108328, "SHAPE_Area": 48.759045904300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356366.755400002002716, 257267.589999999850988 ], [ 356290.583999998867512, 257267.970899999141693 ], [ 356290.573100000619888, 257269.251200001686811 ], [ 356366.755400002002716, 257267.589999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804013900", "MAP": "D9-7175-T003", "PARCEL_NAM": "4A-1", "ACRE": ".775", "LONGITUDE": -64.93615959, "LATITUDE": 18.353741, "OBJECTID_1": 4454, "PARCEL_NO_": "102804013900", "Tax_Legal_": "LERKENLUND 4AA GREAT NORTHSIDE", "Name": "BRYAN, RICHARD LOUIS", "Address": "13110 Hidden Valley Dr", "City": "Homer Glen", "State": "Illinois", "Zip": 60491, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.987599628, "SHAPE_Area": 3522.9838049099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358214.351999998092651, 258208.679499998688698 ], [ 358209.869199998676777, 258266.659600000828505 ], [ 358216.386100001633167, 258286.440900001674891 ], [ 358238.203299999237061, 258281.131099998950958 ], [ 358251.154700003564358, 258275.326400000602007 ], [ 358258.465400002896786, 258269.05350000038743 ], [ 358263.339199997484684, 258264.871500000357628 ], [ 358269.085900001227856, 258252.886199999600649 ], [ 358269.20099999755621, 258239.377099998295307 ], [ 358266.839599996805191, 258232.602800000458956 ], [ 358262.856600001454353, 258226.870700001716614 ], [ 358258.056500002741814, 258222.398400001227856 ], [ 358250.839199997484684, 258217.695300001651049 ], [ 358229.965000003576279, 258206.969799999147654 ], [ 358214.351999998092651, 258208.679499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020200", "MAP": "A9-820-T016", "PARCEL_NAM": "4B", "ACRE": "9.57", "LONGITUDE": -64.93494678, "LATITUDE": 18.36069602, "OBJECTID_1": 4087, "PARCEL_NO_": "102802020200", "Tax_Legal_": "4B REM, 4B-A,4B-B,4B-1&4B-2 LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BIMA CORPORATION", "Address": "18285 Blue Ridge Tpke", "City": "Gordonsville", "State": "Virginia", "Zip": 22942, "Country": "United States", "Land_Value": 487700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 849.14297368200005, "SHAPE_Area": 37710.24753220001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358411.554700002074242, 258941.349500000476837 ], [ 358367.922399997711182, 258921.296000000089407 ], [ 358363.450073905929457, 258915.539037015667418 ], [ 358359.564873813302256, 258909.370605795644224 ], [ 358356.304378190427087, 258902.850368701125262 ], [ 358353.700123235059436, 258896.04139083341579 ], [ 358351.777297847613227, 258889.009530055162031 ], [ 358350.554499998688698, 258881.822799999266863 ], [ 358349.2162000015378, 258880.278799999505281 ], [ 358341.109899997711182, 258885.2787000015378 ], [ 358212.839100003242493, 258909.354299999773502 ], [ 358221.490299999713898, 258922.517799999564886 ], [ 358258.307599999010563, 258978.53830000013113 ], [ 358264.543300002813339, 258989.124499998986721 ], [ 358384.667099997401237, 259170.80460000038147 ], [ 358390.302599996328354, 259168.757800001651049 ], [ 358415.400799997150898, 259156.930900000035763 ], [ 358434.800800003111362, 259151.390099998563528 ], [ 358447.746799997985363, 259146.218699999153614 ], [ 358466.372900001704693, 259136.872000001370907 ], [ 358478.535899996757507, 259128.949999999254942 ], [ 358411.554700002074242, 258941.349500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020200", "MAP": "D9-7391-T004", "PARCEL_NAM": "4B-2", "ACRE": "2.001", "LONGITUDE": -64.9356953, "LATITUDE": 18.35926191, "OBJECTID_1": 4087, "PARCEL_NO_": "102802020200", "Tax_Legal_": "4B REM, 4B-A,4B-B,4B-1&4B-2 LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BIMA CORPORATION", "Address": "18285 Blue Ridge Tpke", "City": "Gordonsville", "State": "Virginia", "Zip": 22942, "Country": "United States", "Land_Value": 487700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 396.29939989000002, "SHAPE_Area": 8889.16476582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358323.166199997067451, 258834.743599999696016 ], [ 358309.083400003612041, 258799.746500000357628 ], [ 358269.840599998831749, 258800.249499998986721 ], [ 358253.913500003516674, 258821.817499998956919 ], [ 358228.082099996507168, 258871.869100000709295 ], [ 358207.125699996948242, 258900.660900000482798 ], [ 358212.839100003242493, 258909.354299999773502 ], [ 358341.109899997711182, 258885.2787000015378 ], [ 358344.621184972871561, 258876.870238858129596 ], [ 358347.55969999730587, 258868.244899999350309 ], [ 358338.604000002145767, 258855.94539999961853 ], [ 358323.166199997067451, 258834.743599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201054300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9604965, "LATITUDE": 18.34026583, "OBJECTID_1": 7719, "PARCEL_NO_": "105201054300", "Tax_Legal_": "CONTANT 411A 7A SOUTHSIDE QTR.", "Name": "CREQUE, MICHAEL A", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69900, "Improved_V": 203800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.27626591000001, "SHAPE_Area": 762.80262375699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355708.967600002884865, 256726.413499999791384 ], [ 355710.278899997472763, 256718.420400001108646 ], [ 355706.633100003004074, 256716.473099999129772 ], [ 355651.634800001978874, 256735.865699999034405 ], [ 355650.73139999806881, 256747.257399998605251 ], [ 355650.688299998641014, 256752.323300000280142 ], [ 355657.138800002634525, 256752.3761 ], [ 355661.996399998664856, 256750.093800000846386 ], [ 355673.349500000476837, 256742.587400000542402 ], [ 355682.285499997437, 256734.850000001490116 ], [ 355708.967600002884865, 256726.413499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201052800", "MAP": "D9-6229-T97", "PARCEL_NAM": "411-B", "ACRE": ".25", "LONGITUDE": -64.96016839000001, "LATITUDE": 18.34035827, "OBJECTID_1": 7704, "PARCEL_NO_": "105201052800", "Tax_Legal_": "411B&411 REMAINDER CONTANT 7A SOUTHSIDE QTR.", "Name": "CREQUE, MICHAEL", "Address": "PO Box 637", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 89900, "Improved_V": 28700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.483530401, "SHAPE_Area": 864.19702848400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355712.975699998438358, 256729.190600000321865 ], [ 355695.200900003314018, 256733.267000000923872 ], [ 355697.386100001633167, 256760.727000001817942 ], [ 355719.979000002145767, 256759.012099999934435 ], [ 355724.820500001311302, 256758.629599999636412 ], [ 355725.833599999547005, 256734.362100001424551 ], [ 355726.853299997746944, 256728.449400000274181 ], [ 355712.975699998438358, 256729.190600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105201052800", "MAP": "D9-6229-T97", "PARCEL_NAM": "411 REM", "ACRE": ".01", "LONGITUDE": -64.96010037000001, "LATITUDE": 18.34017414, "OBJECTID_1": 7704, "PARCEL_NO_": "105201052800", "Tax_Legal_": "411B&411 REMAINDER CONTANT 7A SOUTHSIDE QTR.", "Name": "CREQUE, MICHAEL", "Address": "PO Box 637", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 89900, "Improved_V": 28700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.367342475500003, "SHAPE_Area": 157.82084396799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355710.282499998807907, 256718.422400001436472 ], [ 355708.967699997127056, 256726.413499999791384 ], [ 355712.975699998438358, 256729.190600000321865 ], [ 355726.847900003194809, 256728.480399999767542 ], [ 355728.3783999979496, 256719.6064000017941 ], [ 355723.095499999821186, 256720.253899998962879 ], [ 355720.30629999935627, 256720.59569999948144 ], [ 355716.951899997889996, 256720.128699999302626 ], [ 355712.252099998295307, 256719.474399998784065 ], [ 355710.282499998807907, 256718.422400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032100", "MAP": "D9-7965-T007", "PARCEL_NAM": "4C-1", "ACRE": ".22", "LONGITUDE": -64.92998606, "LATITUDE": 18.34908999, "OBJECTID_1": 4832, "PARCEL_NO_": "102903032100", "Tax_Legal_": "4 LYTTONS FANCY QUEENS QUARTER", "Name": "BERNIER, JAMES & THERESA", "Address": "119 Fisher S Creek Ct", "City": "Cary", "State": "North Carolina", "Zip": 27513, "Country": "United States", "Land_Value": 109400, "Improved_V": 60600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.73027689599999, "SHAPE_Area": 918.20936046400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358904.023100003600121, 257713.067800000309944 ], [ 358891.265000000596046, 257701.835200000554323 ], [ 358893.48480000346899, 257706.363499999046326 ], [ 358885.991800002753735, 257729.743200000375509 ], [ 358881.094899997115135, 257734.096000000834465 ], [ 358881.806199997663498, 257736.07039999961853 ], [ 358885.526900000870228, 257754.104699999094009 ], [ 358873.622900001704693, 257753.785799998790026 ], [ 358877.284699998795986, 257756.516800001263618 ], [ 358882.095600001513958, 257759.722600001841784 ], [ 358886.920900002121925, 257761.239700000733137 ], [ 358900.622800000011921, 257761.985199999064207 ], [ 358904.023100003600121, 257713.067800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95612175, "LATITUDE": 18.33180245, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.90523626699999, "SHAPE_Area": 1628.4566793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356138.420900002121925, 255819.904100000858307 ], [ 356140.015600003302097, 255822.028099998831749 ], [ 356148.048100002110004, 255825.682500001043081 ], [ 356152.079700000584126, 255825.715399999171495 ], [ 356156.12389999628067, 255824.270899999886751 ], [ 356158.559000000357628, 255822.390999998897314 ], [ 356174.784100003540516, 255810.913600001484156 ], [ 356146.890500001609325, 255772.26630000025034 ], [ 356119.303199999034405, 255792.305500000715256 ], [ 356117.825099997222424, 255793.492199998348951 ], [ 356138.420900002121925, 255819.904100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": "D9-3211-T85", "PARCEL_NAM": "161-J", "ACRE": "1.2071", "LONGITUDE": -64.95525206000001, "LATITUDE": 18.33263267, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.57961002600001, "SHAPE_Area": 4861.23481 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356190.912600003182888, 255884.213799998164177 ], [ 356193.284000001847744, 255888.665399998426437 ], [ 356220.073100000619888, 255924.714899998158216 ], [ 356232.05120000243187, 255940.34739999845624 ], [ 356236.572400003671646, 255941.030799999833107 ], [ 356281.198299996554852, 255908.676500000059605 ], [ 356282.087300002574921, 255898.973499998450279 ], [ 356246.222300000488758, 255849.495200000703335 ], [ 356241.402400001883507, 255847.344799999147654 ], [ 356237.367200002074242, 255847.733899999409914 ], [ 356191.117899999022484, 255881.341499999165535 ], [ 356190.912600003182888, 255884.213799998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": "D9-3211-T85", "PARCEL_NAM": "161-A", "ACRE": "2.9929", "LONGITUDE": -64.95440373, "LATITUDE": 18.33307707, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 443.46351303500001, "SHAPE_Area": 12620.3255799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356240.511600002646446, 255951.365200001746416 ], [ 356262.075800001621246, 255978.954599998891354 ], [ 356275.677100002765656, 255988.846900001168251 ], [ 356284.519599996507168, 255992.085700001567602 ], [ 356346.548100002110004, 255999.348299998790026 ], [ 356409.841499999165535, 255952.792500000447035 ], [ 356348.465700000524521, 255868.90819999948144 ], [ 356297.367700003087521, 255903.742600001394749 ], [ 356296.539800003170967, 255906.269000001251698 ], [ 356242.985200002789497, 255945.516199998557568 ], [ 356240.511600002646446, 255951.365200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95381652, "LATITUDE": 18.3334067, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.436668274, "SHAPE_Area": 1363.7274205599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356377.1841000020504, 256004.631400000303984 ], [ 356396.641999997198582, 255987.725999999791384 ], [ 356421.795900002121925, 255969.355599999427795 ], [ 356409.841499999165535, 255952.792500000447035 ], [ 356346.548100002110004, 255999.348299998790026 ], [ 356357.028399996459484, 255999.645199999213219 ], [ 356359.47070000320673, 255996.921000000089407 ], [ 356365.100500002503395, 255998.655799999833107 ], [ 356377.1841000020504, 256004.631400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050126", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95380834, "LATITUDE": 18.33359587, "OBJECTID_1": 8658, "PARCEL_NO_": "105204050126", "Tax_Legal_": "SUBMARINE BASE 191 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 31400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.8389706066, "SHAPE_Area": 232.74597672799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356398.406499996781349, 256002.464699998497963 ], [ 356395.758299998939037, 255996.795800000429153 ], [ 356396.641999997198582, 255987.725999999791384 ], [ 356377.1841000020504, 256004.631400000303984 ], [ 356381.160199999809265, 256006.597699999809265 ], [ 356388.145000003278255, 256012.320300001651049 ], [ 356398.406499996781349, 256002.464699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95260262, "LATITUDE": 18.33292608, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 459.401329621, "SHAPE_Area": 4477.2085253699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356417.103699997067451, 255952.218600001186132 ], [ 356409.841499999165535, 255952.792399998754263 ], [ 356421.795900002121925, 255969.355599999427795 ], [ 356469.66499999910593, 255934.916900001466274 ], [ 356600.289499998092651, 255935.774900000542402 ], [ 356601.074199996888638, 255938.314500000327826 ], [ 356605.105800002813339, 255938.347500000149012 ], [ 356608.34179999679327, 255937.107400000095367 ], [ 356612.425499998033047, 255931.019200000911951 ], [ 356614.626599997282028, 255919.959199998527765 ], [ 356610.990699999034405, 255915.50279999896884 ], [ 356605.326899997889996, 255912.384799998253584 ], [ 356479.547600001096725, 255910.721999999135733 ], [ 356473.080899998545647, 255912.568999998271465 ], [ 356417.103699997067451, 255952.218600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105203022800", "MAP": "D9-6302-T97", "PARCEL_NAM": "17-4", "ACRE": ".3032", "LONGITUDE": -64.95371881, "LATITUDE": 18.33562446, "OBJECTID_1": 8539, "PARCEL_NO_": "105203022800", "Tax_Legal_": "NISKY 17 S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 196000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.17996011100001, "SHAPE_Area": 1751.5410202 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356366.275799997150898, 256239.312100000679493 ], [ 356416.272799998521805, 256255.0945999994874 ], [ 356416.51070000231266, 256250.450599998235703 ], [ 356408.424300000071526, 256186.684200000017881 ], [ 356402.16889999806881, 256190.843199998140335 ], [ 356366.275799997150898, 256239.312100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105203022800", "MAP": "A9-731-T008", "PARCEL_NAM": "17-3A", "ACRE": ".35", "LONGITUDE": -64.95309043, "LATITUDE": 18.33575965, "OBJECTID_1": 8539, "PARCEL_NO_": "105203022800", "Tax_Legal_": "NISKY 17 S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 196000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.74970975700001, "SHAPE_Area": 1547.5934681000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356476.8783999979496, 256264.503899998962879 ], [ 356484.60360000282526, 256236.009799998253584 ], [ 356486.446099996566772, 256229.344999998807907 ], [ 356486.351099997758865, 256216.915399998426437 ], [ 356487.428900003433228, 256216.092399999499321 ], [ 356487.442100003361702, 256214.550299998372793 ], [ 356487.102399997413158, 256213.325699999928474 ], [ 356480.172700002789497, 256215.968499999493361 ], [ 356423.444899998605251, 256249.06810000166297 ], [ 356476.8783999979496, 256264.503899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105203022800", "MAP": "A9-731-T008", "PARCEL_NAM": "17-2", "ACRE": ".20", "LONGITUDE": -64.95323835000001, "LATITUDE": 18.3359313, "OBJECTID_1": 8539, "PARCEL_NO_": "105203022800", "Tax_Legal_": "NISKY 17 S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 196000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.56094571200001, "SHAPE_Area": 513.41752256200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356474.466700002551079, 256273.399599999189377 ], [ 356476.8783999979496, 256264.503899998962879 ], [ 356423.444899998605251, 256249.067999999970198 ], [ 356416.51070000231266, 256250.450599998235703 ], [ 356416.272799998521805, 256255.0945999994874 ], [ 356422.570200003683567, 256257.082499999552965 ], [ 356474.466700002551079, 256273.399599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050179", "MAP": "D9-7822-T007", "PARCEL_NAM": "181", "ACRE": ".20", "LONGITUDE": -64.95510016, "LATITUDE": 18.33003444, "OBJECTID_1": 8701, "PARCEL_NO_": "105204050179", "Tax_Legal_": "181 SUBBASE No.6 SOUTHSIDE QTR.", "Name": "ISLAND TRI CORP.", "Address": "PO Box 4429", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 57200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.36266271699998, "SHAPE_Area": 1694.6573264799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356273.719200000166893, 255556.089099999517202 ], [ 356273.667000003159046, 255555.749600000679493 ], [ 356252.446999996900558, 255592.781100001186132 ], [ 356244.249399997293949, 255610.198699999600649 ], [ 356236.282700002193451, 255626.017299998551607 ], [ 356217.465300001204014, 255641.448699999600649 ], [ 356204.846500001847744, 255656.566399998962879 ], [ 356205.910599999129772, 255659.392099998891354 ], [ 356210.651600003242493, 255655.706000000238419 ], [ 356282.236299999058247, 255601.447500001639128 ], [ 356283.85419999808073, 255596.913100000470877 ], [ 356283.951800003647804, 255595.581700000911951 ], [ 356284.766599997878075, 255584.465999998152256 ], [ 356282.376500003039837, 255581.068999998271465 ], [ 356274.340300001204014, 255577.836800001561642 ], [ 356271.140299998223782, 255574.85530000180006 ], [ 356271.192400000989437, 255568.734000001102686 ], [ 356273.719200000166893, 255556.089099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204010400", "MAP": "D9-8048-T007", "PARCEL_NAM": "70B-3", "ACRE": ".20", "LONGITUDE": -64.95721906, "LATITUDE": 18.33238184, "OBJECTID_1": 8561, "PARCEL_NO_": "105204010400", "Tax_Legal_": "CONTANT 85,86,87,94,95&96 7B SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 428000, "Improved_V": 601500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.8306025232, "SHAPE_Area": 153.82696267200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356026.763899996876717, 255872.923799999058247 ], [ 356039.550499998033047, 255863.114100001752377 ], [ 356032.461499996483326, 255855.953299999237061 ], [ 356020.855499997735023, 255864.800700001418591 ], [ 356026.763899996876717, 255872.923799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204010400", "MAP": "D9-8048-T007", "PARCEL_NAM": "70B-4", "ACRE": ".20", "LONGITUDE": -64.95717723, "LATITUDE": 18.33226484, "OBJECTID_1": 8561, "PARCEL_NO_": "105204010400", "Tax_Legal_": "CONTANT 85,86,87,94,95&96 7B SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 428000, "Improved_V": 601500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.029186686, "SHAPE_Area": 851.81625208800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356020.855499997735023, 255864.800700001418591 ], [ 356032.461499996483326, 255855.953299999237061 ], [ 356039.550499998033047, 255863.114100001752377 ], [ 356026.763899996876717, 255872.923799999058247 ], [ 356028.520700000226498, 255875.339200001209974 ], [ 356055.869599997997284, 255855.325399998575449 ], [ 356039.994800001382828, 255831.338199999183416 ], [ 356012.570699997246265, 255850.371800001710653 ], [ 356012.310999996960163, 255853.053300000727177 ], [ 356020.855499997735023, 255864.800700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050187", "MAP": "D9-8048-T007", "PARCEL_NAM": "70B-1", "ACRE": ".04", "LONGITUDE": -64.95754086, "LATITUDE": 18.33262924, "OBJECTID_1": 8709, "PARCEL_NO_": "105204050187", "Tax_Legal_": "SUB BASE #70B-1 SOUTHSIDE QTR.", "Name": "BLACKSHEAR, SHEILA", "Address": "PO Box 3649", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 495500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.736460266199998, "SHAPE_Area": 160.06208730700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355986.746100001037121, 255889.797800000756979 ], [ 355994.719700001180172, 255900.226599998772144 ], [ 356000.693300001323223, 255895.614900000393391 ], [ 356004.75, 255892.692800000309944 ], [ 355996.77139999717474, 255882.7060999982059 ], [ 355986.746100001037121, 255889.797800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204010400", "MAP": "D9-8048-T007", "PARCEL_NAM": "70B REM", "ACRE": ".17", "LONGITUDE": -64.95751776, "LATITUDE": 18.33249792, "OBJECTID_1": 8561, "PARCEL_NO_": "105204010400", "Tax_Legal_": "CONTANT 85,86,87,94,95&96 7B SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 428000, "Improved_V": 601500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.273751527, "SHAPE_Area": 746.36639858399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355991.764499999582767, 255902.508000001311302 ], [ 355994.878799997270107, 255900.103700000792742 ], [ 355986.665200002491474, 255889.855000000447035 ], [ 355996.77139999717474, 255882.7060999982059 ], [ 356004.75, 255892.692800000309944 ], [ 356007.995099999010563, 255890.397300001233816 ], [ 356000.012800000607967, 255880.832800000905991 ], [ 356009.756899997591972, 255872.890999998897314 ], [ 356018.543600000441074, 255882.673200000077486 ], [ 356023.322200000286102, 255879.160599999129772 ], [ 356007.332800000905991, 255856.844999998807907 ], [ 355975.821699999272823, 255880.845899999141693 ], [ 355983.791299998760223, 255891.888000000268221 ], [ 355991.764499999582767, 255902.508000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "34A-1", "ACRE": null, "LONGITUDE": -64.95941389, "LATITUDE": 18.33570473, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.423891145100001, "SHAPE_Area": 286.30666391599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355802.704800002276897, 256229.844399999827147 ], [ 355787.496299996972084, 256216.632100000977516 ], [ 355783.335299998521805, 256231.796799998730421 ], [ 355801.812100000679493, 256239.969500001519918 ], [ 355804.231100000441074, 256239.98930000141263 ], [ 355806.667999997735023, 256237.898299999535084 ], [ 355809.008799999952316, 256232.510499998927116 ], [ 355802.704800002276897, 256229.844399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105203022800", "MAP": "D9-7733-T006", "PARCEL_NAM": "17-3 REM", "ACRE": ".72", "LONGITUDE": -64.95327437, "LATITUDE": 18.33540499, "OBJECTID_1": 8539, "PARCEL_NO_": "105203022800", "Tax_Legal_": "NISKY 17 S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 196000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.88605594799998, "SHAPE_Area": 4525.0161823 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356408.424300000071526, 256186.684200000017881 ], [ 356416.51070000231266, 256250.450599998235703 ], [ 356423.445000000298023, 256249.067999999970198 ], [ 356480.172700002789497, 256215.968499999493361 ], [ 356487.102399997413158, 256213.325699999928474 ], [ 356482.748000003397465, 256197.624400001019239 ], [ 356458.936300002038479, 256153.099899999797344 ], [ 356408.424300000071526, 256186.684200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-4554-T88", "PARCEL_NAM": "2", "ACRE": ".485", "LONGITUDE": -64.95999502, "LATITUDE": 18.32933319, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.208123914, "SHAPE_Area": 2857.5358444100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355754.356899999082088, 255563.237399999052286 ], [ 355762.51410000026226, 255492.320500001311302 ], [ 355748.573499999940395, 255484.874299999326468 ], [ 355748.443999998271465, 255484.843100000172853 ], [ 355735.153599999845028, 255478.446800000965595 ], [ 355734.088699996471405, 255481.378299999982119 ], [ 355727.485299997031689, 255499.267200000584126 ], [ 355724.969300001859665, 255510.645700000226498 ], [ 355714.240900002419949, 255539.477699998766184 ], [ 355710.947300001978874, 255547.472300000488758 ], [ 355706.869000002741814, 255552.927299998700619 ], [ 355710.879000000655651, 255555.493299998342991 ], [ 355717.331299997866154, 255555.33500000089407 ], [ 355754.356899999082088, 255563.237399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050165", "MAP": "D9-4554-T88", "PARCEL_NAM": "1", "ACRE": "1.014", "LONGITUDE": -64.96018613, "LATITUDE": 18.32995411, "OBJECTID_1": 8688, "PARCEL_NO_": "105204050165", "Tax_Legal_": "SUB BASE 1 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 1000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.89419460400001, "SHAPE_Area": 4915.5058529500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355754.356899999082088, 255563.237399999052286 ], [ 355717.331299997866154, 255555.33500000089407 ], [ 355710.879000000655651, 255555.493299998342991 ], [ 355706.869000002741814, 255552.927299998700619 ], [ 355704.426700003445148, 255555.651500001549721 ], [ 355666.872400000691414, 255609.80629999935627 ], [ 355662.036300003528595, 255609.555599998682737 ], [ 355657.979500003159046, 255612.477800000458956 ], [ 355656.339900001883507, 255615.630699999630451 ], [ 355657.113899998366833, 255619.436799999326468 ], [ 355687.751999996602535, 255619.898600000888109 ], [ 355699.038500003516674, 255620.202100001275539 ], [ 355713.552199997007847, 255620.320900000631809 ], [ 355765.15259999781847, 255621.165399998426437 ], [ 355754.356899999082088, 255563.237399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204072700", "MAP": "G9-2482-T75", "PARCEL_NAM": "115 REM", "ACRE": null, "LONGITUDE": -64.96020571, "LATITUDE": 18.33055857, "OBJECTID_1": 8935, "PARCEL_NO_": "105204072700", "Tax_Legal_": "114 & 115 SUBBASE SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 665800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.71565111800001, "SHAPE_Area": 1456.5362345200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355696.665299996733665, 255627.203999999910593 ], [ 355714.899099998176098, 255703.094500001519918 ], [ 355716.097699999809265, 255700.135099999606609 ], [ 355728.345200002193451, 255682.292399998754263 ], [ 355729.988399997353554, 255678.717199999839067 ], [ 355731.723300002515316, 255664.377000000327826 ], [ 355725.477799996733665, 255640.261300001293421 ], [ 355723.892200000584126, 255637.081900000572205 ], [ 355716.685699999332428, 255631.112300001084805 ], [ 355711.856799997389317, 255630.017299998551607 ], [ 355703.795500002801418, 255629.740200001746416 ], [ 355698.968400001525879, 255628.434200000017881 ], [ 355696.665299996733665, 255627.203999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050185", "MAP": "D9-8316-T009", "PARCEL_NAM": "89", "ACRE": null, "LONGITUDE": -64.95897945, "LATITUDE": 18.33403989, "OBJECTID_1": 8707, "PARCEL_NO_": "105204050185", "Tax_Legal_": "SUB BASE #89 SOUTHSIDE QTR.", "Name": "CHEVRON CARIBBEAN INC", "Address": "P O BOX 3740", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 371000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 513.89575731800005, "SHAPE_Area": 14320.651315 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355835.336999997496605, 255996.219799999147654 ], [ 355825.754799999296665, 255985.164500001817942 ], [ 355784.350500002503395, 256017.967300001531839 ], [ 355767.320900000631809, 256029.227000001817942 ], [ 355747.020999997854233, 256045.737199999392033 ], [ 355808.538800001144409, 256112.946299999952316 ], [ 355833.565099999308586, 256109.5625 ], [ 355861.048000000417233, 256101.765900000929832 ], [ 355884.5929000005126, 256082.960200000554323 ], [ 355940.026399999856949, 256012.486400000751019 ], [ 355915.973700001835823, 255996.246500000357628 ], [ 355890.28490000218153, 255982.737300001084805 ], [ 355878.908500000834465, 255992.987799998372793 ], [ 355852.905100002884865, 256016.417399998754263 ], [ 355835.336999997496605, 255996.219799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "A3-97-T66", "PARCEL_NAM": "35 REM", "ACRE": null, "LONGITUDE": -64.95840229, "LATITUDE": 18.3309624, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3583.0259866000001, "SHAPE_Area": 56903.8005691 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355889.283699996769428, 255910.957299999892712 ], [ 355897.362999998033047, 255909.123599998652935 ], [ 355918.40089999884367, 255900.640999998897314 ], [ 355932.183700002729893, 255891.887800000607967 ], [ 355893.351199999451637, 255906.768699999898672 ], [ 355886.261699996888638, 255887.078999999910593 ], [ 355887.937200002372265, 255879.704500000923872 ], [ 355931.598600000143051, 255865.918499998748302 ], [ 355938.653999999165535, 255889.61879999935627 ], [ 356007.607699997723103, 255841.209399998188019 ], [ 356080.650600001215935, 255786.078499998897314 ], [ 356074.300800003111362, 255774.205299999564886 ], [ 356072.73309999704361, 255768.915100000798702 ], [ 356071.962700001895428, 255764.686999998986721 ], [ 356072.074199996888638, 255751.600099999457598 ], [ 356072.925499998033047, 255746.329700000584126 ], [ 356056.163800001144409, 255726.138599999248981 ], [ 356082.968099996447563, 255703.348799999803305 ], [ 356075.824600003659725, 255689.991500001400709 ], [ 356067.707500003278255, 255696.257800001651049 ], [ 356020.6824000030756, 255726.270399998873472 ], [ 356012.567100003361702, 255732.325699999928474 ], [ 356001.998800002038479, 255742.371700000017881 ], [ 355998.732199996709824, 255747.200100000947714 ], [ 355990.593500003218651, 255755.999400001019239 ], [ 355973.558499999344349, 255767.892400000244379 ], [ 355957.363899998366833, 255775.781399998813868 ], [ 355924.18639999628067, 255789.44200000166893 ], [ 355901.494599997997284, 255802.76630000025034 ], [ 355895.035099998116493, 255803.768899999558926 ], [ 355887.794399999082088, 255801.809799998998642 ], [ 355858.176700003445148, 255776.236099999397993 ], [ 355831.802100002765656, 255748.578099999576807 ], [ 355827.014600001275539, 255742.628299999982119 ], [ 355818.29619999974966, 255724.825100000947714 ], [ 355815.979800000786781, 255712.773800000548363 ], [ 355816.44370000064373, 255658.315499998629093 ], [ 355812.59009999781847, 255637.385600000619888 ], [ 355811.089000001549721, 255624.285599999129772 ], [ 355810.768200002610683, 255567.28770000115037 ], [ 355812.45099999755621, 255559.068799998611212 ], [ 355818.190399996936321, 255547.927799999713898 ], [ 355823.075099997222424, 255542.479400001466274 ], [ 355836.554999999701977, 255531.868099998682737 ], [ 355762.51410000026226, 255492.320500001311302 ], [ 355754.356899999082088, 255563.237399999052286 ], [ 355765.15259999781847, 255621.165399998426437 ], [ 355777.526699997484684, 255683.11710000038147 ], [ 355769.287399999797344, 255703.736800000071526 ], [ 355756.424099996685982, 255699.198600001633167 ], [ 355744.821099996566772, 255736.045000001788139 ], [ 355729.506499998271465, 255735.286299999803305 ], [ 355731.036399997770786, 255745.009199999272823 ], [ 355732.952799998223782, 255777.347899999469519 ], [ 355756.145199999213219, 255755.565099999308586 ], [ 355798.967200003564358, 255798.235700000077486 ], [ 355792.604599997401237, 255806.30799999833107 ], [ 355794.202799998223782, 255808.009799998253584 ], [ 355806.435999996960163, 255791.855799999088049 ], [ 355816.145900003612041, 255787.924499999731779 ], [ 355879.432800002396107, 255836.782900001853704 ], [ 355895.553700000047684, 255837.548099998384714 ], [ 355905.22580000013113, 255838.049400001764297 ], [ 355935.856700003147125, 255839.355599999427795 ], [ 355922.8716000020504, 255794.905299998819828 ], [ 355975.227399997413158, 255770.454100001603365 ], [ 355997.005699999630451, 255799.098799999803305 ], [ 355981.811200000345707, 255813.960099998861551 ], [ 355940.110699996352196, 255863.070500001311302 ], [ 355938.106600001454353, 255859.21680000051856 ], [ 355920.319200001657009, 255864.770700000226498 ], [ 355896.873199999332428, 255871.967099998146296 ], [ 355884.836000002920628, 255865.113600000739098 ], [ 355871.193499997258186, 255857.40260000154376 ], [ 355852.736400000751019, 255846.907900001853704 ], [ 355838.120300002396107, 255858.820599999278784 ], [ 355834.061700001358986, 255861.95380000025034 ], [ 355829.963600002229214, 255869.730799999088049 ], [ 355826.678999997675419, 255876.670000001788139 ], [ 355834.681000001728535, 255883.912599999457598 ], [ 355856.674400001764297, 255857.916999999433756 ], [ 355880.750500001013279, 255871.412999998778105 ], [ 355874.816799998283386, 255905.350499998778105 ], [ 355863.535700000822544, 255904.413800001144409 ], [ 355853.877899996936321, 255902.223799999803305 ], [ 355862.706000000238419, 255907.151200000196695 ], [ 355872.360100001096725, 255909.763300001621246 ], [ 355878.79619999974966, 255911.504799999296665 ], [ 355889.283699996769428, 255910.957299999892712 ] ], [ [ 355954.907899998128414, 255874.76410000026226 ], [ 355945.340000003576279, 255862.020199999213219 ], [ 356011.086499996483326, 255811.473700001835823 ], [ 356021.44990000128746, 255825.490699999034405 ], [ 355954.907899998128414, 255874.76410000026226 ] ] ], [ [ [ 355867.441500000655651, 255776.026599999517202 ], [ 355872.656099997460842, 255780.36540000140667 ], [ 355887.850199997425079, 255795.26630000025034 ], [ 355895.893500000238419, 255797.654199998825788 ], [ 355901.555699996650219, 255795.589600000530481 ], [ 355914.524999998509884, 255787.674199998378754 ], [ 355926.671899996697903, 255781.651900000870228 ], [ 355952.561999998986721, 255771.520199999213219 ], [ 355973.619599997997284, 255760.715700000524521 ], [ 355988.226700000464916, 255749.858399998396635 ], [ 356000.445500001311302, 255735.392900001257658 ], [ 356013.443599998950958, 255724.10020000115037 ], [ 356067.773999996483326, 255688.447900000959635 ], [ 356092.938699997961521, 255668.811099998652935 ], [ 356085.730499997735023, 255663.052600000053644 ], [ 356089.835799999535084, 255654.43129999935627 ], [ 356094.849899999797344, 255633.785199999809265 ], [ 356037.970299996435642, 255590.045499999076128 ], [ 356033.163000002503395, 255586.417500000447035 ], [ 356034.737899996340275, 255590.863400001078844 ], [ 356033.047899998724461, 255599.926600001752377 ], [ 356025.767700001597404, 255602.611200001090765 ], [ 355867.441500000655651, 255776.026599999517202 ] ] ], [ [ [ 355859.844999998807907, 255769.705899998545647 ], [ 355867.441500000655651, 255776.026599999517202 ], [ 355842.491300001740456, 255535.038899999111891 ], [ 355828.694099999964237, 255545.480700001120567 ], [ 355821.363600000739098, 255554.075500000268221 ], [ 355817.238499999046326, 255565.0185999982059 ], [ 355817.580899998545647, 255619.483500000089407 ], [ 355818.26129999756813, 255634.265700001269579 ], [ 355822.849200002849102, 255663.645199999213219 ], [ 355821.658100001513958, 255708.809500001370907 ], [ 355823.972699999809265, 255721.071899998933077 ], [ 355829.494699999690056, 255735.471400000154972 ], [ 355837.4679000005126, 255746.091299999505281 ], [ 355859.844999998807907, 255769.705899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "Part of SECTION 3 of TRACT 4", "ACRE": null, "LONGITUDE": -64.96011473, "LATITUDE": 18.33194258, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 374.59749265400001, "SHAPE_Area": 1123.1172551 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355685.884700000286102, 255744.42850000038743 ], [ 355679.552500002086163, 255744.589999999850988 ], [ 355682.5641999989748, 255755.589299999177456 ], [ 355689.722099997103214, 255767.258000001311302 ], [ 355696.910599999129772, 255775.33839999884367 ], [ 355703.317900002002716, 255780.457100000232458 ], [ 355707.293700002133846, 255787.033599998801947 ], [ 355708.866800002753735, 255791.690499998629093 ], [ 355712.860600002110004, 255796.156100001186132 ], [ 355718.49040000140667, 255797.890999998897314 ], [ 355726.531900003552437, 255800.489900000393391 ], [ 355738.545699998736382, 255810.087400000542402 ], [ 355744.91889999806881, 255819.216600000858307 ], [ 355745.696400001645088, 255822.600499998778105 ], [ 355741.558799996972084, 255835.021099999547005 ], [ 355729.277099996805191, 255856.874400001019239 ], [ 355728.454599998891354, 255858.767499998211861 ], [ 355709.73139999806881, 255879.512499999254942 ], [ 355712.112499997019768, 255883.964899998158216 ], [ 355734.892499998211861, 255860.297800000756979 ], [ 355743.104900002479553, 255842.844300001859665 ], [ 355759.418099999427795, 255821.024000000208616 ], [ 355723.38400000333786, 255791.387099999934435 ], [ 355704.165600001811981, 255775.608899999409914 ], [ 355691.386900000274181, 255761.149900000542402 ], [ 355687.420000001788139, 255753.518100000917912 ], [ 355685.884700000286102, 255744.42850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204072600", "MAP": "D9-8146-T008", "PARCEL_NAM": null, "ACRE": "1.14", "LONGITUDE": -64.95130378, "LATITUDE": 18.33608262, "OBJECTID_1": 8934, "PARCEL_NO_": "105204072600", "Tax_Legal_": "170 REM.SUBBASE(CROWN BAY LAND FILL) No.6 SOUTHSIDE QTR.", "Name": "VIRGIN ISLANDS GOVERNMENT", "Address": "2nd King Terminal", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 676300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 389.09247066900002, "SHAPE_Area": 4566.3949242999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356712.170199997723103, 256339.199700001627207 ], [ 356727.89469999819994, 256321.84910000115633 ], [ 356726.032200001180172, 256320.361099999397993 ], [ 356647.558399997651577, 256255.757500000298023 ], [ 356632.35530000180006, 256241.912000000476837 ], [ 356617.978399999439716, 256225.751200001686811 ], [ 356615.917000003159046, 256222.96510000154376 ], [ 356579.733800001442432, 256253.567200001329184 ], [ 356583.830899998545647, 256258.613400001078844 ], [ 356593.406000003218651, 256270.513000000268221 ], [ 356602.34910000115633, 256261.931400001049042 ], [ 356639.24889999628067, 256284.609299998730421 ], [ 356643.258900001645088, 256287.175299998372793 ], [ 356677.707299999892712, 256313.632800001651049 ], [ 356702.542999997735023, 256332.623399998992682 ], [ 356712.170199997723103, 256339.199700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "D9-8146-T008", "PARCEL_NAM": "145 CONS", "ACRE": ".91", "LONGITUDE": -64.95126242000001, "LATITUDE": 18.33652618, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.085204089, "SHAPE_Area": 4108.32830259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356676.665899999439716, 256369.270300000905991 ], [ 356705.759499996900558, 256334.820599999278784 ], [ 356702.542999997735023, 256332.623399998992682 ], [ 356677.707400001585484, 256313.632800001651049 ], [ 356643.258900001645088, 256287.175299998372793 ], [ 356639.24889999628067, 256284.609299998730421 ], [ 356622.140100002288818, 256305.156399998813868 ], [ 356606.658299997448921, 256324.028200000524521 ], [ 356615.478399999439716, 256331.074299998581409 ], [ 356632.855899997055531, 256343.589800000190735 ], [ 356649.831000000238419, 256353.89299999922514 ], [ 356668.815700002014637, 256364.850099999457598 ], [ 356676.665899999439716, 256369.270300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105204070600", "MAP": "D9-8146-T008", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95089309, "LATITUDE": 18.3367539, "OBJECTID_1": 8931, "PARCEL_NO_": "105204070600", "Tax_Legal_": "11 & 116 SUBMARINE BASE 6 SOUTHSIDE QTR", "Name": "VIRGIN ISLANDS PORT AUTHORITY", "Address": "PO Box 301707", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 584800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.46602770299999, "SHAPE_Area": 326.627507713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356705.759499996900558, 256334.820599999278784 ], [ 356676.665899999439716, 256369.270300000905991 ], [ 356682.650399997830391, 256372.640000000596046 ], [ 356712.271099999547005, 256339.2685999982059 ], [ 356705.759499996900558, 256334.820599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204070500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95068613, "LATITUDE": 18.33676847, "OBJECTID_1": 8930, "PARCEL_NO_": "105204070500", "Tax_Legal_": "CROWN BAY FILL No.46 No.6 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 325300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.29463788199999, "SHAPE_Area": 1827.22952313 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356728.434900000691414, 256322.280600000172853 ], [ 356727.89469999819994, 256321.84910000115633 ], [ 356712.170199997723103, 256339.199700001627207 ], [ 356712.221100002527237, 256339.234499998390675 ], [ 356682.650399997830391, 256372.640000000596046 ], [ 356689.273400001227856, 256375.789000000804663 ], [ 356711.760200001299381, 256386.527699999511242 ], [ 356747.656900003552437, 256337.636700000613928 ], [ 356734.043099999427795, 256326.54839999973774 ], [ 356728.434900000691414, 256322.280600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050118", "MAP": null, "PARCEL_NAM": "30A", "ACRE": null, "LONGITUDE": -64.95853222, "LATITUDE": 18.3356909, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.553208783, "SHAPE_Area": 1924.45046611 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355841.567800000309944, 256211.375100001692772 ], [ 355864.877099998295307, 256220.22069999948144 ], [ 355878.285899996757507, 256255.372000001370907 ], [ 355920.318499997258186, 256243.472600001841784 ], [ 355915.673000000417233, 256220.847600001841784 ], [ 355906.011600002646446, 256219.079700000584126 ], [ 355894.784400001168251, 256211.810699999332428 ], [ 355887.547399997711182, 256209.429400000721216 ], [ 355846.423600003123283, 256209.303899999707937 ], [ 355841.567800000309944, 256211.375100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-8272-T009", "PARCEL_NAM": "99B-2", "ACRE": ".13", "LONGITUDE": -64.9606901, "LATITUDE": 18.33570114, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.109941141600004, "SHAPE_Area": 512.46343561699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355663.369099996984005, 256210.338799998164177 ], [ 355649.051299996674061, 256214.925200000405312 ], [ 355657.035599999129772, 256248.878800000995398 ], [ 355666.995200000703335, 256242.933699999004602 ], [ 355667.016000002622604, 256242.921300001442432 ], [ 355670.673500001430511, 256240.728000000119209 ], [ 355667.294600002467632, 256222.825500000268221 ], [ 355663.369099996984005, 256210.338799998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204070200", "MAP": null, "PARCEL_NAM": "43", "ACRE": null, "LONGITUDE": -64.94999015, "LATITUDE": 18.33711901, "OBJECTID_1": 8928, "PARCEL_NO_": "105204070200", "Tax_Legal_": "43 CROWN BAY FILL No.6 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 223800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.64381630700001, "SHAPE_Area": 705.67956033999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356792.16669999808073, 256413.572500001639128 ], [ 356796.1875, 256414.871899999678135 ], [ 356797.907999999821186, 256402.220400001853704 ], [ 356803.080300003290176, 256362.999299999326468 ], [ 356799.85869999974966, 256362.550799999386072 ], [ 356798.991200000047684, 256369.720899999141693 ], [ 356769.649300001561642, 256406.422100000083447 ], [ 356788.950400002300739, 256412.490699999034405 ], [ 356792.16669999808073, 256413.572500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105204050500", "MAP": "D9-7062-T002", "PARCEL_NAM": "46", "ACRE": null, "LONGITUDE": -64.95844315, "LATITUDE": 18.33618559, "OBJECTID_1": 8723, "PARCEL_NO_": "105204050500", "Tax_Legal_": "45 & 46 NISKY NO.5 SOUTHSIDE QUARTER", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1333600, "Improved_V": 624600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.817161604199995, "SHAPE_Area": 396.76594364599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355891.59179999679327, 256293.548799999058247 ], [ 355911.258100003004074, 256287.692999999970198 ], [ 355917.441799998283386, 256277.172800000756979 ], [ 355874.848499998450279, 256280.252900000661612 ], [ 355888.896700002253056, 256291.704599998891354 ], [ 355889.712899997830391, 256292.265299998223782 ], [ 355891.59179999679327, 256293.548799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050500", "MAP": "D9-7062-T002", "PARCEL_NAM": "46A", "ACRE": "8.1748", "LONGITUDE": -64.95763222, "LATITUDE": 18.33632928, "OBJECTID_1": 8723, "PARCEL_NO_": "105204050500", "Tax_Legal_": "45 & 46 NISKY NO.5 SOUTHSIDE QUARTER", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1333600, "Improved_V": 624600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 367.72265716800001, "SHAPE_Area": 6952.576742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355911.258100003004074, 256287.692999999970198 ], [ 355921.221600003540516, 256291.469500001519918 ], [ 355928.803400002419949, 256302.388300001621246 ], [ 355920.546300001442432, 256313.328400000929832 ], [ 355932.750399999320507, 256321.665399998426437 ], [ 355962.765100002288818, 256341.902699999511242 ], [ 355976.2449000030756, 256327.720100000500679 ], [ 356000.604299999773502, 256333.229699999094009 ], [ 356043.345100000500679, 256326.671799998730421 ], [ 356043.00280000269413, 256324.481199998408556 ], [ 356037.6570999994874, 256289.395700000226498 ], [ 356033.83049999922514, 256265.299800001084805 ], [ 355991.862700000405312, 256269.600400000810623 ], [ 355927.294799998402596, 256276.460299998521805 ], [ 355917.441799998283386, 256277.172800000756979 ], [ 355911.258100003004074, 256287.692999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105204050500", "MAP": "D9-7062-T002", "PARCEL_NAM": "46", "ACRE": null, "LONGITUDE": -64.95829289, "LATITUDE": 18.33631609, "OBJECTID_1": 8723, "PARCEL_NO_": "105204050500", "Tax_Legal_": "45 & 46 NISKY NO.5 SOUTHSIDE QUARTER", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1333600, "Improved_V": 624600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.239789334899996, "SHAPE_Area": 475.99400150500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355920.546300001442432, 256313.328400000929832 ], [ 355928.803400002419949, 256302.388300001621246 ], [ 355921.221600003540516, 256291.469500001519918 ], [ 355911.258100003004074, 256287.692999999970198 ], [ 355891.59179999679327, 256293.548799999058247 ], [ 355920.546300001442432, 256313.328400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-8272-T009", "PARCEL_NAM": "99A-1", "ACRE": ".07", "LONGITUDE": -64.96094126, "LATITUDE": 18.33594158, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.18851643000001, "SHAPE_Area": 267.84210433300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355636.130300000309944, 256244.968199998140335 ], [ 355635.021899998188019, 256244.066199999302626 ], [ 355633.999799996614456, 256245.09010000154376 ], [ 355621.780900001525879, 256254.812699999660254 ], [ 355629.146099999547005, 256265.978500001132488 ], [ 355646.021999999880791, 256255.541499998420477 ], [ 355636.130300000309944, 256244.968199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "D9-8489-T010", "PARCEL_NAM": "130B", "ACRE": null, "LONGITUDE": -64.95957287, "LATITUDE": 18.33591301, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.42652037, "SHAPE_Area": 1996.3682407599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355748.16950000077486, 256226.4510000012815 ], [ 355741.360299997031689, 256249.697399999946356 ], [ 355766.417199999094009, 256264.283100001513958 ], [ 355770.240900002419949, 256275.996899999678135 ], [ 355829.028599999845028, 256262.211300000548363 ], [ 355825.827100001275539, 256260.642200000584126 ], [ 355795.316699996590614, 256245.19370000064373 ], [ 355773.618199996650219, 256236.572399999946356 ], [ 355751.917900003492832, 256228.162099998444319 ], [ 355748.16950000077486, 256226.4510000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "D9-8489-T010", "PARCEL_NAM": "130A", "ACRE": null, "LONGITUDE": -64.96010436, "LATITUDE": 18.33572524, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.17773945600001, "SHAPE_Area": 1182.82586829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355691.024899996817112, 256234.94029999896884 ], [ 355713.949500001966953, 256246.629999998956919 ], [ 355729.344899997115135, 256244.206599999219179 ], [ 355742.575699999928474, 256245.547800000756979 ], [ 355748.16950000077486, 256226.4510000012815 ], [ 355724.607500001788139, 256215.695199999958277 ], [ 355718.164200000464916, 256214.798099998384714 ], [ 355711.69030000269413, 256217.48930000141263 ], [ 355710.871399998664856, 256218.960299998521805 ], [ 355697.072400003671646, 256229.613099999725819 ], [ 355695.441799998283386, 256231.710700001567602 ], [ 355691.024899996817112, 256234.94029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "D9-8489-T010", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96004767, "LATITUDE": 18.33603977, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.21220828099999, "SHAPE_Area": 2769.84826742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355685.601999998092651, 256234.776999998837709 ], [ 355702.439499996602535, 256272.009199999272823 ], [ 355707.501800000667572, 256279.841299999505281 ], [ 355712.646899998188019, 256294.445700000971556 ], [ 355733.423699997365475, 256294.222100000828505 ], [ 355770.240699999034405, 256275.997000001370907 ], [ 355766.417199999094009, 256264.283100001513958 ], [ 355741.360299997031689, 256249.697399999946356 ], [ 355742.575699999928474, 256245.547800000756979 ], [ 355729.344899997115135, 256244.206599999219179 ], [ 355713.949500001966953, 256246.629999998956919 ], [ 355691.024899996817112, 256234.94029999896884 ], [ 355685.601999998092651, 256234.776999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "D9-8350-T009", "PARCEL_NAM": "92 REM", "ACRE": null, "LONGITUDE": -64.96048369, "LATITUDE": 18.3360708, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.156133283, "SHAPE_Area": 2024.81985605 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355672.096199996769428, 256246.148400001227856 ], [ 355672.045999996364117, 256246.736800000071526 ], [ 355664.474799998104572, 256250.427400000393391 ], [ 355652.989000000059605, 256257.078099999576807 ], [ 355662.191299997270107, 256270.1706000007689 ], [ 355656.183300003409386, 256274.780099999159575 ], [ 355656.215700000524521, 256274.813400000333786 ], [ 355653.386699996888638, 256276.59739999845624 ], [ 355658.166799999773502, 256282.759100001305342 ], [ 355675.931100003421307, 256291.882699999958277 ], [ 355712.646899998188019, 256294.445700000971556 ], [ 355707.501800000667572, 256279.841299999505281 ], [ 355702.439499996602535, 256272.009199999272823 ], [ 355685.601999998092651, 256234.776999998837709 ], [ 355679.749799996614456, 256239.684999998658895 ], [ 355675.846799999475479, 256243.11939999833703 ], [ 355672.096199996769428, 256246.148400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104023200", "MAP": "D9-6803-T000", "PARCEL_NAM": "17", "ACRE": ".5733", "LONGITUDE": -64.95106557, "LATITUDE": 18.36722056, "OBJECTID_1": 600, "PARCEL_NO_": "101104023200", "Tax_Legal_": "HULL 17 LT. NORTHSIDE", "Name": "BRYAN, LUCILLE V. & DARYL A", "Address": "7692 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38500, "Improved_V": 242600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.47068358000001, "SHAPE_Area": 2487.98977896 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356627.824299998581409, 259750.24100000038743 ], [ 356630.819899998605251, 259750.037200000137091 ], [ 356676.472000002861023, 259746.930900000035763 ], [ 356683.336199998855591, 259723.050900001078844 ], [ 356679.466499999165535, 259704.020799998193979 ], [ 356663.259300000965595, 259713.38740000128746 ], [ 356657.570200003683567, 259718.618200000375509 ], [ 356655.968400001525879, 259717.338500000536442 ], [ 356655.187200002372265, 259714.376800000667572 ], [ 356648.796099998056889, 259707.358399998396635 ], [ 356642.37610000371933, 259703.717300001531839 ], [ 356637.579599998891354, 259698.822799999266863 ], [ 356634.365199998021126, 259697.530000001192093 ], [ 356630.335400000214577, 259697.285900000482798 ], [ 356627.137100003659725, 259694.093299999833107 ], [ 356625.569399997591972, 259688.803199999034405 ], [ 356618.984099999070168, 259704.581300001591444 ], [ 356622.825000002980232, 259726.988600000739098 ], [ 356626.696599997580051, 259745.807599999010563 ], [ 356627.824299998581409, 259750.24100000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104025600", "MAP": "D9-6803-T000", "PARCEL_NAM": "18", "ACRE": ".6147", "LONGITUDE": -64.95104157, "LATITUDE": 18.3676769, "OBJECTID_1": 623, "PARCEL_NO_": "101104025600", "Tax_Legal_": "HULL 18 LT. NORTHSIDE", "Name": "BRYAN, LUCILLE V. & AIME C", "Address": "7692 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111000, "Improved_V": 134500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.490929733, "SHAPE_Area": 2202.4147081199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356630.819899998605251, 259750.037200000137091 ], [ 356627.824299998581409, 259750.24100000038743 ], [ 356628.256999999284744, 259751.942099999636412 ], [ 356642.164700001478195, 259823.194499999284744 ], [ 356660.104900002479553, 259799.698800001293421 ], [ 356668.241800002753735, 259791.110599998384714 ], [ 356674.195299997925758, 259754.851199999451637 ], [ 356676.472000002861023, 259746.930900000035763 ], [ 356630.819899998605251, 259750.037200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104015600", "MAP": "D9-6351-T97", "PARCEL_NAM": "4-5-C-2", "ACRE": "0.5710", "LONGITUDE": -64.95064047, "LATITUDE": 18.3711405, "OBJECTID_1": 542, "PARCEL_NO_": "101104015600", "Tax_Legal_": "HULL 4-5-C LT. NORTHSIDE", "Name": "DAGGETT-LENAHAN, CAROL", "Address": "7301 Flagg Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 258100, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.81977542000001, "SHAPE_Area": 2751.8623913500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356652.947700001299381, 260199.864000000059605 ], [ 356697.343900002539158, 260186.403299998492002 ], [ 356724.429700002074242, 260151.710900001227856 ], [ 356697.716099999845028, 260117.491399999707937 ], [ 356689.741099998354912, 260107.082499999552965 ], [ 356689.647600002586842, 260118.058600001037121 ], [ 356687.973800003528595, 260125.222100000828505 ], [ 356674.817500002682209, 260155.089699998497963 ], [ 356655.964800000190735, 260191.032400000840425 ], [ 356652.947700001299381, 260199.864000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203014600", "MAP": "D9-3212-T85", "PARCEL_NAM": "13-5A", "ACRE": "0.52", "LONGITUDE": -64.94272101, "LATITUDE": 18.36461398, "OBJECTID_1": 746, "PARCEL_NO_": "101203014600", "Tax_Legal_": "ST PETER 13-5A LT. NORTHSIDE", "Name": "TRUST AGREEMENT OF REX JAMES QUERRARD", "Address": "7475 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102000, "Improved_V": 230400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.33813669199998, "SHAPE_Area": 2099.65276279 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357547.393399998545647, 259504.959800001233816 ], [ 357551.676899999380112, 259499.934300001710653 ], [ 357552.403800003230572, 259500.006000000983477 ], [ 357552.087600000202656, 259499.436000000685453 ], [ 357564.257799997925758, 259490.669700000435114 ], [ 357541.17679999768734, 259455.017000000923872 ], [ 357536.439599998295307, 259443.157000001519918 ], [ 357534.916900001466274, 259432.589899998158216 ], [ 357536.612199999392033, 259422.893399998545647 ], [ 357539.074299998581409, 259417.84739999845624 ], [ 357528.082699999213219, 259382.927000001072884 ], [ 357521.520700000226498, 259395.960999999195337 ], [ 357516.628899998962879, 259402.253800000995398 ], [ 357514.163199998438358, 259407.722100000828505 ], [ 357510.907399997115135, 259411.284000001847744 ], [ 357509.258799999952316, 259415.492400001734495 ], [ 357510.761699996888638, 259428.381400000303984 ], [ 357525.09910000115633, 259449.185899998992682 ], [ 357530.626400001347065, 259462.952199999243021 ], [ 357531.389600001275539, 259468.024700000882149 ], [ 357547.393399998545647, 259504.959800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803041700", "MAP": "D9-7164-T002", "PARCEL_NAM": "97-7", "ACRE": ".501", "LONGITUDE": -64.94382138, "LATITUDE": 18.35136975, "OBJECTID_1": 4403, "PARCEL_NO_": "102803041700", "Tax_Legal_": "97-7 ESTATE SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "BOSCHULTE, JR. , JAMES T", "Address": "PO Box 303190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76800, "Improved_V": 295400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.75412955100001, "SHAPE_Area": 1688.2600595399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357432.606600001454353, 258004.014699999243021 ], [ 357434.772699996829033, 257999.881400000303984 ], [ 357450.301700003445148, 257990.047200001776218 ], [ 357455.988799996674061, 257987.06810000166297 ], [ 357436.264499999582767, 257950.857200000435114 ], [ 357436.040500000119209, 257950.6875 ], [ 357403.063199996948242, 257960.959100000560284 ], [ 357421.776600003242493, 258006.344399999827147 ], [ 357429.513800002634525, 258004.145399998873472 ], [ 357432.606600001454353, 258004.014699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803041600", "MAP": "D9-7164-T002", "PARCEL_NAM": "97-6", "ACRE": ".500", "LONGITUDE": -64.94348289, "LATITUDE": 18.35123876, "OBJECTID_1": 4402, "PARCEL_NO_": "102803041600", "Tax_Legal_": "97-6 ESTATE SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "BOSCHULTE, JEROME T", "Address": "PO Box 303190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88100, "Improved_V": 247400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.27341815099999, "SHAPE_Area": 1548.1992103800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357455.988799996674061, 257987.06810000166297 ], [ 357467.074799999594688, 257981.26069999858737 ], [ 357491.767200000584126, 257974.198800001293421 ], [ 357500.451399996876717, 257972.197299998253584 ], [ 357463.980200000107288, 257939.970100000500679 ], [ 357436.012199997901917, 257950.666000001132488 ], [ 357436.264499999582767, 257950.857200000435114 ], [ 357455.988799996674061, 257987.06810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803050100", "MAP": "D9-8820-T013", "PARCEL_NAM": "100-6-1", "ACRE": "2.87", "LONGITUDE": -64.94288463, "LATITUDE": 18.35091911, "OBJECTID_1": 4415, "PARCEL_NO_": "102803050100", "Tax_Legal_": "SOLBERG 100-6 LITTLE NORTHSIDE", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 313300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 492.82988359299998, "SHAPE_Area": 11321.032587899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357560.031000003218651, 257980.267299998551607 ], [ 357630.960400000214577, 257892.139199998229742 ], [ 357464.152999997138977, 257895.038499999791384 ], [ 357418.72410000115633, 257910.899700000882149 ], [ 357463.980200000107288, 257939.970100000500679 ], [ 357507.627300001680851, 257978.538199998438358 ], [ 357525.014600001275539, 257977.005199998617172 ], [ 357539.688500002026558, 257977.273499999195337 ], [ 357549.864000000059605, 257978.249499998986721 ], [ 357560.031000003218651, 257980.267299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803043200", "MAP": "D9-8493-T010", "PARCEL_NAM": "97-8-4", "ACRE": ".660", "LONGITUDE": -64.94509067, "LATITUDE": 18.35168538, "OBJECTID_1": 4413, "PARCEL_NO_": "102803043200", "Tax_Legal_": "97-8-4 ESTATE SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "ALFONSINA DE LA ROSA", "Address": "PO Box 306264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.37357170499999, "SHAPE_Area": 1117.167319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357297.623800002038479, 257993.800900001078844 ], [ 357270.857500001788139, 258002.137899998575449 ], [ 357271.171300001442432, 258012.758499998599291 ], [ 357289.192400000989437, 258025.396699998527765 ], [ 357303.380400002002716, 258028.94370000064373 ], [ 357314.193999998271465, 258031.647100001573563 ], [ 357314.760399997234344, 258031.628199998289347 ], [ 357307.055100001394749, 257990.863299999386072 ], [ 357297.623800002038479, 257993.800900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803043300", "MAP": "D9-7164-T002", "PARCEL_NAM": "97-8-2", "ACRE": ".562", "LONGITUDE": -64.94447517, "LATITUDE": 18.3516139, "OBJECTID_1": 4414, "PARCEL_NO_": "102803043300", "Tax_Legal_": "97-8-2 ESTATE SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "MARTIN, JANET", "Address": "ESTATE TUTU 148-67", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.84774700200001, "SHAPE_Area": 2046.66689079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357381.622500002384186, 258017.756599999964237 ], [ 357371.538199998438358, 257970.778400000184774 ], [ 357344.093599997460842, 257979.326699998229742 ], [ 357338.366400003433228, 257981.110599998384714 ], [ 357343.713299997150898, 258028.126499999314547 ], [ 357344.213299997150898, 258033.139699999243021 ], [ 357362.097900003194809, 258032.312699999660254 ], [ 357375.38849999755621, 258027.621899999678135 ], [ 357382.765100002288818, 258024.244699999690056 ], [ 357381.622500002384186, 258017.756599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803043100", "MAP": "D9-8493-T010", "PARCEL_NAM": "97-8-3", "ACRE": "0.556", "LONGITUDE": -64.94478711, "LATITUDE": 18.35166057, "OBJECTID_1": 4412, "PARCEL_NO_": "102803043100", "Tax_Legal_": "97-8-3 ESTATE SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "DE LA ROSA, ALFONSINA", "Address": "2403 Store Estrade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94200, "Improved_V": 330500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.192087047, "SHAPE_Area": 1439.16701285 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357344.213299997150898, 258033.139699999243021 ], [ 357343.713299997150898, 258028.126499999314547 ], [ 357338.366400003433228, 257981.110599998384714 ], [ 357317.395900003612041, 257987.642400000244379 ], [ 357307.055100001394749, 257990.863299999386072 ], [ 357314.760399997234344, 258031.628199998289347 ], [ 357320.034299999475479, 258031.452399998903275 ], [ 357339.555900000035763, 258033.355099998414516 ], [ 357344.213299997150898, 258033.139699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901010200", "MAP": "D9-7720-T006", "PARCEL_NAM": "5EA-REM", "ACRE": "1.021", "LONGITUDE": -64.93238082000001, "LATITUDE": 18.35701204, "OBJECTID_1": 4676, "PARCEL_NO_": "102901010200", "Tax_Legal_": "5Ea-REM & 5Ba-1 MISGUNST NO.6 GREAT NORTHSIDE QTR", "Name": "ADAM REEVE LIVING REVOCABLE TRUST", "Address": "9003 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 115600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.76441121, "SHAPE_Area": 3649.5052778899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358651.967799998819828, 258595.5945999994874 ], [ 358644.992899999022484, 258597.030200000852346 ], [ 358636.678599998354912, 258563.940200001001358 ], [ 358608.317299999296665, 258566.18129999935627 ], [ 358609.679999999701977, 258595.534400001168251 ], [ 358613.217000000178814, 258653.614100001752377 ], [ 358654.412699997425079, 258645.296399999409914 ], [ 358667.947800002992153, 258642.5636 ], [ 358655.25959999859333, 258594.917100001126528 ], [ 358651.967799998819828, 258595.5945999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901010300", "MAP": "D9-6817-T000", "PARCEL_NAM": "5E", "ACRE": "1.049", "LONGITUDE": -64.93201292000001, "LATITUDE": 18.35683548, "OBJECTID_1": 4677, "PARCEL_NO_": "102901010300", "Tax_Legal_": "5E REM MISGUNST NO. 6 GREAT NORTHSIDE QUARTER", "Name": "COLIN B PROBYN FAMILY TRUST", "Address": "5E ESTATE MISGUNST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 134000, "Improved_V": 338500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.42254761300001, "SHAPE_Area": 3510.0925787000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358651.967799998819828, 258595.5945999994874 ], [ 358655.25959999859333, 258594.917100001126528 ], [ 358667.947800002992153, 258642.5636 ], [ 358695.608300000429153, 258636.978799998760223 ], [ 358689.952600002288818, 258543.629099998623133 ], [ 358669.692299999296665, 258555.495600000023842 ], [ 358661.596799999475479, 258559.229100000113249 ], [ 358650.288699999451637, 258561.458500001579523 ], [ 358639.786799997091293, 258563.694600000977516 ], [ 358636.678599998354912, 258563.940200001001358 ], [ 358644.992899999022484, 258597.030200000852346 ], [ 358651.967799998819828, 258595.5945999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105202022400", "MAP": "D9-1304-T76", "PARCEL_NAM": "68", "ACRE": "2.47", "LONGITUDE": -64.95531709, "LATITUDE": 18.34291514, "OBJECTID_1": 8115, "PARCEL_NO_": "105202022400", "Tax_Legal_": "68 CONTANT 7A SOUTHSIDE QUARTER", "Name": "VI TAXI ASSOCIATION INC", "Address": "PO Box 1377", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 358400, "Improved_V": 346200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 428.52201634400001, "SHAPE_Area": 10242.239741 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356159.701499998569489, 257079.372900001704693 ], [ 356180.115800000727177, 257078.151900000870228 ], [ 356264.056900002062321, 257068.917500000447035 ], [ 356273.073700003325939, 257051.681600000709295 ], [ 356295.144500002264977, 257016.609700001776218 ], [ 356301.728000000119209, 257001.042599998414516 ], [ 356304.224299997091293, 256991.986000001430511 ], [ 356305.863899998366833, 256988.833000000566244 ], [ 356153.368400000035763, 256999.617300000041723 ], [ 356159.701499998569489, 257079.372900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017700", "MAP": "D9-5712-T94", "PARCEL_NAM": "1-1-1", "ACRE": ".275", "LONGITUDE": -64.91975832, "LATITUDE": 18.356138, "OBJECTID_1": 4989, "PARCEL_NO_": "102904017700", "Tax_Legal_": "1REM & 1-4-1 CANAAN & SHERPENJEWEL NO. 7A & 7B GREAT NORTHSIDE QUARTER", "Name": "DAVIS, JOSEPH & ELIZABETH", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 102700, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.70680141400001, "SHAPE_Area": 1219.09327093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359992.591399997472763, 258502.150499999523163 ], [ 359979.535400003194809, 258512.967199999839067 ], [ 359975.302100002765656, 258515.718899998813868 ], [ 359965.565399996936321, 258515.2956000007689 ], [ 359949.055399999022484, 258512.967199999839067 ], [ 359940.674400001764297, 258508.577199999243021 ], [ 359945.593299999833107, 258528.996899999678135 ], [ 359950.371899999678135, 258536.002099998295307 ], [ 359955.98369999974966, 258539.847699999809265 ], [ 359964.828000001609325, 258542.875399999320507 ], [ 359976.112700000405312, 258543.390000000596046 ], [ 359985.001999996602535, 258541.140700001269579 ], [ 359992.591399997472763, 258502.150499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017700", "MAP": "D9-5712-T94", "PARCEL_NAM": "1-1 REM", "ACRE": ".385", "LONGITUDE": -64.91983585, "LATITUDE": 18.35591408, "OBJECTID_1": 4989, "PARCEL_NO_": "102904017700", "Tax_Legal_": "1REM & 1-4-1 CANAAN & SHERPENJEWEL NO. 7A & 7B GREAT NORTHSIDE QUARTER", "Name": "DAVIS, JOSEPH & ELIZABETH", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 102700, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.99708836900001, "SHAPE_Area": 1112.49253032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359940.674400001764297, 258508.577199999243021 ], [ 359949.055399999022484, 258512.967199999839067 ], [ 359965.565399996936321, 258515.2956000007689 ], [ 359975.302100002765656, 258515.718899998813868 ], [ 359979.535400003194809, 258512.967199999839067 ], [ 359992.591399997472763, 258502.150499999523163 ], [ 359987.762500002980232, 258501.055500000715256 ], [ 359971.704599998891354, 258492.902499999850988 ], [ 359965.268500000238419, 258491.161100000143051 ], [ 359947.569200001657009, 258486.37220000103116 ], [ 359943.5574000030756, 258484.017299998551607 ], [ 359941.961000002920628, 258482.104400001466274 ], [ 359934.689800001680851, 258483.733600001782179 ], [ 359940.674400001764297, 258508.577199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017700", "MAP": "D9-5712-T94", "PARCEL_NAM": "1-2", "ACRE": ".272", "LONGITUDE": -64.91962229000001, "LATITUDE": 18.35575345, "OBJECTID_1": 4989, "PARCEL_NO_": "102904017700", "Tax_Legal_": "1REM & 1-4-1 CANAAN & SHERPENJEWEL NO. 7A & 7B GREAT NORTHSIDE QUARTER", "Name": "DAVIS, JOSEPH & ELIZABETH", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 102700, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.112677244, "SHAPE_Area": 709.67892673100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359998.13629999756813, 258473.737799998372793 ], [ 359965.46169999986887, 258468.485500000417233 ], [ 359965.416000001132488, 258473.852600000798702 ], [ 359967.762999996542931, 258482.315600000321865 ], [ 359974.186499997973442, 258485.534600000828505 ], [ 359971.704599998891354, 258492.902499999850988 ], [ 359987.762500002980232, 258501.055500000715256 ], [ 359992.591399997472763, 258502.150499999523163 ], [ 359998.13629999756813, 258473.737799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032000", "MAP": "D9-2831-T84", "PARCEL_NAM": "11-Q", "ACRE": ".367", "LONGITUDE": -64.94601299, "LATITUDE": 18.35465751, "OBJECTID_1": 4374, "PARCEL_NO_": "102803032000", "Tax_Legal_": "SOLBERG 11Q & 9A-2 LERKENLUND GREAT NORTHSIDE QTR", "Name": "DUNNING CHURCH, PETER & OTHERS", "Address": "410 Lenwood Dr", "City": "Costa Mesa", "State": "California", "Zip": 92627, "Country": "United States", "Land_Value": 96200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.69311055599999, "SHAPE_Area": 2107.36944606 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357219.143700003623962, 258353.428300000727177 ], [ 357248.573899999260902, 258353.132100000977516 ], [ 357243.944300003349781, 258348.015099998563528 ], [ 357226.746399998664856, 258337.960900001227856 ], [ 357210.871399998664856, 258327.906800001859665 ], [ 357201.081799998879433, 258324.202599998563528 ], [ 357189.969300001859665, 258321.821299999952316 ], [ 357180.179700002074242, 258321.02760000154376 ], [ 357162.975199997425079, 258320.88230000063777 ], [ 357152.417599998414516, 258329.661899998784065 ], [ 357173.164200000464916, 258355.374000001698732 ], [ 357219.143700003623962, 258353.428300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803018700", "MAP": "D9-2831-T84", "PARCEL_NAM": "9A-3", "ACRE": ".486", "LONGITUDE": -64.94529683, "LATITUDE": 18.35496461, "OBJECTID_1": 4270, "PARCEL_NO_": "102803018700", "Tax_Legal_": "LERKENLUND 9A-3.&11R SOLBERG NORTHSIDE QTR.", "Name": "BIJANI, PURSHOTTAM L. & BHAVNA", "Address": "32 Raadets Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93200, "Improved_V": 806100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.739901562, "SHAPE_Area": 1855.7710907000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357272.408900000154972, 258348.164700001478195 ], [ 357270.801700003445148, 258347.518300000578165 ], [ 357260.274700000882149, 258352.709399998188019 ], [ 357257.02250000089407, 258355.849199999123812 ], [ 357252.938699997961521, 258361.9375 ], [ 357247.195699997246265, 258373.500700000673532 ], [ 357246.324600003659725, 258381.0929000005126 ], [ 357247.035599999129772, 258392.286699999123812 ], [ 357247.802400000393391, 258396.936999998986721 ], [ 357249.387999996542931, 258400.116399999707937 ], [ 357253.412399999797344, 258400.993700001388788 ], [ 357265.539399996399879, 258397.293299999088049 ], [ 357288.202500000596046, 258387.3462999984622 ], [ 357286.645599998533726, 258380.789599999785423 ], [ 357291.506899997591972, 258378.085200000554323 ], [ 357301.328299999237061, 258361.06700000166893 ], [ 357298.909299999475479, 258361.047200001776218 ], [ 357272.408900000154972, 258348.164700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94484795, "LATITUDE": 18.35479681, "OBJECTID_1": 4242, "PARCEL_NO_": "102803015400", "Tax_Legal_": "LERKENLUND 9AA-1&11D-2 SOLBERG GR NORTHSIDE QTR", "Name": "BENEDEK BROADCASTING INC", "Address": "4370 Peachtree Rd NE", "City": "Atlanta", "State": "Georgia", "Zip": 30319, "Country": "United States", "Land_Value": 21500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.40639064199999, "SHAPE_Area": 1175.5379782699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357298.909299999475479, 258361.047200001776218 ], [ 357301.328299999237061, 258361.06700000166893 ], [ 357337.457699999213219, 258379.516800001263618 ], [ 357337.538599997758865, 258370.018199998885393 ], [ 357335.933200001716614, 258369.160700000822544 ], [ 357333.550200000405312, 258364.919300001114607 ], [ 357333.595200002193451, 258359.642299998551607 ], [ 357335.23480000346899, 258356.489399999380112 ], [ 357337.675300002098083, 258353.976199999451637 ], [ 357341.719400003552437, 258352.531700000166893 ], [ 357340.133799999952316, 258349.352299999445677 ], [ 357334.601099997758865, 258336.219200000166893 ], [ 357316.795699998736382, 258343.883900001645088 ], [ 357301.443400003015995, 258347.55799999833107 ], [ 357289.334299996495247, 258349.147599998861551 ], [ 357272.408900000154972, 258348.164700001478195 ], [ 357298.909299999475479, 258361.047200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202027200", "MAP": "A9-375-T90", "PARCEL_NAM": "41-A", "ACRE": "4.812", "LONGITUDE": -64.9563366, "LATITUDE": 18.3416535, "OBJECTID_1": 8171, "PARCEL_NO_": "105202027200", "Tax_Legal_": "CONTANT 41A 7ASOUTHSIDE QTR.", "Name": "JOPPA, INC.", "Address": "7340 Estate Bakkeroe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023001, "Country": "United States", "Land_Value": 435800, "Improved_V": 55000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 632.81272264500001, "SHAPE_Area": 20358.635127000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356123.027300000190735, 256774.976500000804663 ], [ 356119.360100001096725, 256773.269000001251698 ], [ 356091.225900001823902, 256760.169700000435114 ], [ 356090.859300002455711, 256764.791799999773502 ], [ 356086.723499998450279, 256777.001400001347065 ], [ 356084.068999998271465, 256804.63289999961853 ], [ 356081.90429999679327, 256869.420899998396635 ], [ 356081.067400000989437, 256873.002700001001358 ], [ 356076.931599996984005, 256885.212200000882149 ], [ 356067.96679999679327, 256896.326799999922514 ], [ 356058.224600002169609, 256904.057599999010563 ], [ 356043.613799996674061, 256915.337000001221895 ], [ 356073.516400001943111, 257002.130100000649691 ], [ 356106.632799997925758, 256995.646200001239777 ], [ 356146.109700001776218, 256999.769000001251698 ], [ 356155.900600001215935, 256986.339099999517202 ], [ 356156.795000001788139, 256976.00279999896884 ], [ 356169.645999997854233, 256792.667700000107288 ], [ 356127.046300001442432, 256776.486999999731779 ], [ 356123.027300000190735, 256774.976500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022200", "MAP": "D9-7644-T005", "PARCEL_NAM": "41 REM", "ACRE": null, "LONGITUDE": -64.95558498, "LATITUDE": 18.34183361, "OBJECTID_1": 8113, "PARCEL_NO_": "105202022200", "Tax_Legal_": "41 REM CONTANT 7A SOUTHSIDE QTR", "Name": "BELMONTE, ALEX", "Address": "PO Box 303708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 291200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.05177157200001, "SHAPE_Area": 1573.4458881800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356214.003700003027916, 256892.401200000196695 ], [ 356192.851899996399879, 256879.892099998891354 ], [ 356192.078199997544289, 256889.434599999338388 ], [ 356180.026299998164177, 256889.246300000697374 ], [ 356180.988300003111362, 256896.140099998563528 ], [ 356169.984399996697903, 256899.22749999910593 ], [ 356180.730400003492832, 256903.61939999833703 ], [ 356180.966099999845028, 256952.649099998176098 ], [ 356186.074000000953674, 256946.689399998635054 ], [ 356208.03320000320673, 256924.704300001263618 ], [ 356209.690800003707409, 256919.440499998629093 ], [ 356214.003700003027916, 256892.401200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022200", "MAP": "D9-7644-T005", "PARCEL_NAM": "41 REM", "ACRE": null, "LONGITUDE": -64.95551706000001, "LATITUDE": 18.34117948, "OBJECTID_1": 8113, "PARCEL_NO_": "105202022200", "Tax_Legal_": "41 REM CONTANT 7A SOUTHSIDE QTR", "Name": "BELMONTE, ALEX", "Address": "PO Box 303708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 291200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.77166359699999, "SHAPE_Area": 5983.9697203899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356179.261100001633167, 256883.761799998581409 ], [ 356186.14639999717474, 256882.728999998420477 ], [ 356190.014899998903275, 256871.38120000064373 ], [ 356214.802000001072884, 256887.396099999547005 ], [ 356222.065999999642372, 256886.611200001090765 ], [ 356236.592200003564358, 256885.252399999648333 ], [ 356241.435500003397465, 256884.6587999984622 ], [ 356227.732900001108646, 256789.343400001525879 ], [ 356180.900200001895428, 256796.770599998533726 ], [ 356169.645999997854233, 256792.667700000107288 ], [ 356163.684900000691414, 256877.709699999541044 ], [ 356177.893399998545647, 256873.960200000554323 ], [ 356179.261100001633167, 256883.761799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022200", "MAP": "D9-8228-T009", "PARCEL_NAM": "41-3", "ACRE": ".18", "LONGITUDE": -64.95570667, "LATITUDE": 18.34159668, "OBJECTID_1": 8113, "PARCEL_NO_": "105202022200", "Tax_Legal_": "41 REM CONTANT 7A SOUTHSIDE QTR", "Name": "BELMONTE, ALEX", "Address": "PO Box 303708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 291200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.372976139, "SHAPE_Area": 626.65061013299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356169.984399996697903, 256899.22749999910593 ], [ 356180.988300003111362, 256896.140099998563528 ], [ 356180.026299998164177, 256889.246300000697374 ], [ 356192.078199997544289, 256889.434599999338388 ], [ 356192.851899996399879, 256879.892099998891354 ], [ 356214.003700003027916, 256892.401200000196695 ], [ 356214.802000001072884, 256887.396099999547005 ], [ 356190.014899998903275, 256871.38120000064373 ], [ 356186.14639999717474, 256882.728999998420477 ], [ 356179.261100001633167, 256883.761799998581409 ], [ 356177.893399998545647, 256873.960200000554323 ], [ 356163.684900000691414, 256877.709699999541044 ], [ 356162.394100002944469, 256896.125399999320507 ], [ 356169.984399996697903, 256899.22749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802016400", "MAP": "D9-1269-T76", "PARCEL_NAM": "3J", "ACRE": ".80", "LONGITUDE": -64.93670739, "LATITUDE": 18.35990174, "OBJECTID_1": 4082, "PARCEL_NO_": "102802016400", "Tax_Legal_": "3 REM, 3J, 3M AND 3L LERKENLUND NO 9 GREAT NORTHSIDE QTR", "Name": "MARIO AUSTIN VERWEIJ REVOCABLE TRUST", "Address": "3017 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 579200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.183889803, "SHAPE_Area": 3469.4589593300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358174.819600000977516, 258882.882199998944998 ], [ 358174.033900000154972, 258882.586100000888109 ], [ 358171.280238666862715, 258890.843116111820564 ], [ 358168.288000002503395, 258899.016699999570847 ], [ 358163.681970790552441, 258909.736290663830005 ], [ 358158.634328905085567, 258920.255151842982741 ], [ 358153.153800003230572, 258930.555100001394749 ], [ 358147.528754216327798, 258938.877074126066873 ], [ 358141.424055998213589, 258946.853856253088452 ], [ 358134.860835013445467, 258954.457837035617558 ], [ 358127.861807971843518, 258961.662697471911088 ], [ 358120.451200000941753, 258968.443500000983477 ], [ 358119.470388685644139, 258968.677461667364696 ], [ 358118.542865976865869, 258969.07297465344891 ], [ 358117.695031360257417, 258969.618781725992449 ], [ 358116.95101621048525, 258970.299347927328199 ], [ 358116.331996954919305, 258971.095302736823214 ], [ 358115.855592342908494, 258971.983991401735693 ], [ 358115.535361974150874, 258972.940119744831463 ], [ 358115.380420361005235, 258973.936474096466554 ], [ 358115.395177507482003, 258974.944695859827334 ], [ 358115.579213390301447, 258975.936088663584087 ], [ 358115.92728991387412, 258976.882435128296493 ], [ 358116.429499998688698, 258977.756799999624491 ], [ 358116.670497386308853, 258978.111021357442951 ], [ 358116.968699095421471, 258978.418638411356369 ], [ 358117.315260255301837, 258978.670527024980402 ], [ 358117.699901620100718, 258978.859216006239876 ], [ 358118.111214458651375, 258978.979108708357671 ], [ 358118.536998945171945, 258979.026649030158296 ], [ 358118.964626014814712, 258979.00042689248221 ], [ 358119.381411950278562, 258978.901220062252833 ], [ 358119.774994589970447, 258978.73197108329623 ], [ 358120.133699998259544, 258978.497699998319149 ], [ 358131.28887574368855, 258973.819394821621245 ], [ 358142.15711671783356, 258968.508479329379043 ], [ 358152.702583233476616, 258962.582467077852925 ], [ 358162.890500001609325, 258956.060899998992682 ], [ 358182.087734177883249, 258943.970665381668368 ], [ 358201.626900002360344, 258932.441199999302626 ], [ 358214.897200003266335, 258922.297400001436472 ], [ 358219.189300000667572, 258919.016600001603365 ], [ 358212.839100003242493, 258909.354299999773502 ], [ 358207.125699996948242, 258900.660900000482798 ], [ 358201.618600003421307, 258892.281399998813868 ], [ 358196.158299997448921, 258890.922899998724461 ], [ 358174.819600000977516, 258882.882199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802016400", "MAP": "D9-1269-T76", "PARCEL_NAM": "3L", "ACRE": ".55", "LONGITUDE": -64.93700184, "LATITUDE": 18.35971487, "OBJECTID_1": 4082, "PARCEL_NO_": "102802016400", "Tax_Legal_": "3 REM, 3J, 3M AND 3L LERKENLUND NO 9 GREAT NORTHSIDE QTR", "Name": "MARIO AUSTIN VERWEIJ REVOCABLE TRUST", "Address": "3017 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 579200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.42404404499999, "SHAPE_Area": 2124.7809117199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358169.275499999523163, 258861.769200000911951 ], [ 358167.562172620964702, 258863.044726397842169 ], [ 358166.045619797310792, 258864.548895879212068 ], [ 358164.756089059985243, 258866.251707898423774 ], [ 358163.719300001859665, 258868.119199998676777 ], [ 358159.117342656827532, 258873.843714931368595 ], [ 358154.172208506788593, 258879.274528024950996 ], [ 358148.90259999781847, 258884.391100000590086 ], [ 358145.052925424010027, 258887.520596284157364 ], [ 358140.840341163391713, 258890.141259398835246 ], [ 358136.331699997186661, 258892.211500000208616 ], [ 358119.917900003492832, 258903.2483000010252 ], [ 358112.795299999415874, 258908.037599999457598 ], [ 358117.240299999713898, 258934.072599999606609 ], [ 358134.705799996852875, 258939.03830000013113 ], [ 358140.108800001442432, 258940.574499998241663 ], [ 358144.597017776919529, 258934.241477937903255 ], [ 358148.90259999781847, 258927.782900001853704 ], [ 358153.886972716252785, 258919.203951147123007 ], [ 358158.389763323997613, 258910.362728856562171 ], [ 358162.397217289137188, 258901.286240132059902 ], [ 358165.897093168809079, 258892.002210636448581 ], [ 358168.878700003027916, 258882.539000000804663 ], [ 358171.243446324835531, 258873.693831333308481 ], [ 358172.84740000218153, 258864.67960000038147 ], [ 358172.943144850840326, 258864.267177270230604 ], [ 358172.967071253922768, 258863.84446328697959 ], [ 358172.918476633727551, 258863.423870672588237 ], [ 358172.798787928244565, 258863.017749756894773 ], [ 358172.611519690428395, 258862.638025921041844 ], [ 358172.362170886306558, 258862.295849419431761 ], [ 358172.058063422737177, 258862.001267962099519 ], [ 358171.708127146295737, 258861.762931672798004 ], [ 358171.322637625853531, 258861.587839085696032 ], [ 358170.9129144201288, 258861.481131639622618 ], [ 358170.490988688252401, 258861.445942704274785 ], [ 358170.069249905878678, 258861.483305571629899 ], [ 358169.660082059097476, 258861.592123114096466 ], [ 358169.275499999523163, 258861.769200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012900", "MAP": "D9-7481-T004", "PARCEL_NAM": "6BA REM", "ACRE": ".613", "LONGITUDE": -64.96120328000001, "LATITUDE": 18.35440409, "OBJECTID_1": 3207, "PARCEL_NO_": "102703012900", "Tax_Legal_": "6BA REM DOROTHEA No.7A LITTLE NORTHSIDE QTR", "Name": "VIKTOR W. BRANDTNERIS & SARAH HEIDMANN", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85000, "Improved_V": 565000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.82279016800001, "SHAPE_Area": 2221.7794534200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355560.732100002467632, 258290.44819999858737 ], [ 355563.648199997842312, 258331.289900001138449 ], [ 355619.736299999058247, 258303.185400001704693 ], [ 355614.207000002264977, 258266.894799999892712 ], [ 355560.732100002467632, 258290.44819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011600", "MAP": "D9-7544-T005", "PARCEL_NAM": "22-B-1", "ACRE": ".026", "LONGITUDE": -64.96678032, "LATITUDE": 18.35619574, "OBJECTID_1": 2661, "PARCEL_NO_": "102604011600", "Tax_Legal_": "PAR 22B REM DOROTHEA", "Name": "REYNALD A CHARLES", "Address": "PO Box 305012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035012, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.249306642099995, "SHAPE_Area": 142.72422746699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355006.663800001144409, 258509.737199999392033 ], [ 355006.916400000452995, 258501.906399998813868 ], [ 354993.105200000107288, 258478.808299999684095 ], [ 354986.866999998688698, 258477.22410000115633 ], [ 355006.663800001144409, 258509.737199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011700", "MAP": "D9-7583-T005", "PARCEL_NAM": "4-11 REM", "ACRE": ".793", "LONGITUDE": -64.96232588, "LATITUDE": 18.35522077, "OBJECTID_1": 3195, "PARCEL_NO_": "102703011700", "Tax_Legal_": "4-11 REM & 4-9-1 ESTATE DOROTHEA No.6 LT. NORTHSIDE QTR.", "Name": "EMANUEL, KIMMO A.,SR. & KIM A.", "Address": "PO BOX 302884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 103700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.35215709799999, "SHAPE_Area": 3281.1307124599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355478.433399997651577, 258416.245000001043081 ], [ 355508.285499997437, 258403.118000000715256 ], [ 355479.848600000143051, 258348.481100000441074 ], [ 355471.148800000548363, 258348.680599998682737 ], [ 355465.560500003397465, 258348.003199998289347 ], [ 355465.017499998211861, 258347.876899998635054 ], [ 355434.348800003528595, 258393.312100000679493 ], [ 355441.208599999547005, 258406.932700000703335 ], [ 355447.567199997603893, 258419.568999998271465 ], [ 355478.433399997651577, 258416.245000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011500", "MAP": "D9-7583-T005", "PARCEL_NAM": "4-11-1", "ACRE": ".03", "LONGITUDE": -64.96242354, "LATITUDE": 18.35552435, "OBJECTID_1": 3191, "PARCEL_NO_": "102703011500", "Tax_Legal_": "4-9 & 4-11-1 ESTATE DOROTHEA No.6 LT. NORTHSIDE QTR", "Name": "ROY, NATHAN POULSEN and DEIRRE ANN WEST", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65500, "Improved_V": 311100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.5446376939, "SHAPE_Area": 136.531491735 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355451.790100000798702, 258427.960900001227856 ], [ 355478.433399997651577, 258416.245000001043081 ], [ 355447.567199997603893, 258419.568999998271465 ], [ 355451.790100000798702, 258427.960900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011900", "MAP": "D9-7583-T005", "PARCEL_NAM": "4-15-1", "ACRE": ".52", "LONGITUDE": -64.96268564, "LATITUDE": 18.35491858, "OBJECTID_1": 3197, "PARCEL_NO_": "102703011900", "Tax_Legal_": "DOROTHEA 4-15-1 GT. NORTHSIDE", "Name": "SMITH, TYLER B. & MARILYN BRANDT", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82700, "Improved_V": 173600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.613828533, "SHAPE_Area": 1929.8734760100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355434.348800003528595, 258393.312100000679493 ], [ 355465.017499998211861, 258347.876899998635054 ], [ 355458.2787000015378, 258346.30970000103116 ], [ 355450.827500000596046, 258342.922899998724461 ], [ 355413.741099998354912, 258326.835200000554323 ], [ 355397.556000001728535, 258320.257100000977516 ], [ 355434.348800003528595, 258393.312100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011700", "MAP": "D9-7583-T005", "PARCEL_NAM": "4-9-1", "ACRE": ".03", "LONGITUDE": -64.96203928, "LATITUDE": 18.3554253, "OBJECTID_1": 3195, "PARCEL_NO_": "102703011700", "Tax_Legal_": "4-11 REM & 4-9-1 ESTATE DOROTHEA No.6 LT. NORTHSIDE QTR.", "Name": "EMANUEL, KIMMO A.,SR. & KIM A.", "Address": "PO BOX 302884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 103700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.130283479100001, "SHAPE_Area": 172.16140808200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355508.285499997437, 258403.118000000715256 ], [ 355478.433399997651577, 258416.245000001043081 ], [ 355513.170699998736382, 258412.504099998623133 ], [ 355508.285499997437, 258403.118000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703011500", "MAP": "D9-7583-T005", "PARCEL_NAM": "4-9 REM", "ACRE": ".627", "LONGITUDE": -64.96212359, "LATITUDE": 18.35567298, "OBJECTID_1": 3191, "PARCEL_NO_": "102703011500", "Tax_Legal_": "4-9 & 4-11-1 ESTATE DOROTHEA No.6 LT. NORTHSIDE QTR", "Name": "ROY, NATHAN POULSEN and DEIRRE ANN WEST", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65500, "Improved_V": 311100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.995075095, "SHAPE_Area": 2750.6045401000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355478.433399997651577, 258416.245000001043081 ], [ 355451.790100000798702, 258427.960900001227856 ], [ 355473.165100000798702, 258470.438499998301268 ], [ 355481.817500002682209, 258464.512099999934435 ], [ 355491.470200002193451, 258459.431699998676777 ], [ 355502.646899998188019, 258455.706199999898672 ], [ 355508.404600001871586, 258454.690099999308586 ], [ 355514.331600002944469, 258453.166000001132488 ], [ 355523.137599997222424, 258450.456500001251698 ], [ 355532.216499999165535, 258448.545899998396635 ], [ 355513.170699998736382, 258412.504099998623133 ], [ 355478.433399997651577, 258416.245000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014800", "MAP": "D9-7676-T005", "PARCEL_NAM": "3E-REM", "ACRE": ".502", "LONGITUDE": -64.96328182000001, "LATITUDE": 18.35523247, "OBJECTID_1": 3226, "PARCEL_NO_": "102703014800", "Tax_Legal_": "DOROTHEA 3E LT. NORTHSIDE", "Name": "BRYAN EATON FAMILY TRUST IV", "Address": "79-25 Est Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 177200, "Improved_V": 572500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.40128462800001, "SHAPE_Area": 1533.00176829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355392.073299996554852, 258410.146200001239777 ], [ 355377.748000003397465, 258363.465199999511242 ], [ 355345.928099997341633, 258366.560499999672174 ], [ 355359.156000003218651, 258412.2989999987185 ], [ 355363.189400002360344, 258412.120900001376867 ], [ 355384.974200002849102, 258410.610500000417233 ], [ 355392.073299996554852, 258410.146200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014800", "MAP": "D9-7096-T002", "PARCEL_NAM": "3E-2", "ACRE": ".544", "LONGITUDE": -64.96310152, "LATITUDE": 18.35480996, "OBJECTID_1": 3226, "PARCEL_NO_": "102703014800", "Tax_Legal_": "DOROTHEA 3E LT. NORTHSIDE", "Name": "BRYAN EATON FAMILY TRUST IV", "Address": "79-25 Est Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 177200, "Improved_V": 572500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.13651160699999, "SHAPE_Area": 1604.7978151899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355397.556000001728535, 258320.257100000977516 ], [ 355360.382200002670288, 258321.897399999201298 ], [ 355377.748000003397465, 258363.465199999511242 ], [ 355417.375600002706051, 258359.610399998724461 ], [ 355397.556000001728535, 258320.257100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014800", "MAP": "D9-7096-T002", "PARCEL_NAM": "3E-3", "ACRE": null, "LONGITUDE": -64.96291571, "LATITUDE": 18.35520794, "OBJECTID_1": 3226, "PARCEL_NO_": "102703014800", "Tax_Legal_": "DOROTHEA 3E LT. NORTHSIDE", "Name": "BRYAN EATON FAMILY TRUST IV", "Address": "79-25 Est Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 177200, "Improved_V": 572500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.869536536, "SHAPE_Area": 2153.4299575 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355377.748000003397465, 258363.465199999511242 ], [ 355392.073299996554852, 258410.146200001239777 ], [ 355441.208599999547005, 258406.932700000703335 ], [ 355417.375600002706051, 258359.610399998724461 ], [ 355377.748000003397465, 258363.465199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020900", "MAP": "D9-7750-T006", "PARCEL_NAM": "16-I-1", "ACRE": ".03", "LONGITUDE": -64.96051432, "LATITUDE": 18.36519417, "OBJECTID_1": 425, "PARCEL_NO_": "101103020900", "Tax_Legal_": "16-I REM & 16H-1 DOROTHEA NO.6 LITTLE NORTHSIDE QTR", "Name": "MERRITT, SHERRI L.", "Address": "PO Box 10726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67800, "Improved_V": 74900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.246296457299998, "SHAPE_Area": 80.373926645099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355642.360500000417233, 259488.93129999935627 ], [ 355662.398100003600121, 259501.387099999934435 ], [ 355664.630000002682209, 259500.371399998664856 ], [ 355645.145999997854233, 259485.306200001388788 ], [ 355642.360500000417233, 259488.93129999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103021200", "MAP": "D9-7750-T006", "PARCEL_NAM": "16-H-REM", "ACRE": ".781", "LONGITUDE": -64.96020807, "LATITUDE": 18.36497619, "OBJECTID_1": 428, "PARCEL_NO_": "101103021200", "Tax_Legal_": "16H REM & 16-I-1 DOROTHEA NO.6 LITTLE NORTHSIDE QTR", "Name": "JOHN FEOLA ST THOMAS REVOCABLE TRUST", "Address": "PO Box 305062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 742900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.98093767, "SHAPE_Area": 2761.07607555 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355734.536200001835823, 259468.49269999936223 ], [ 355682.758599996566772, 259435.228100001811981 ], [ 355670.449199996888638, 259449.416299998760223 ], [ 355645.145999997854233, 259485.306200001388788 ], [ 355664.630000002682209, 259500.371399998664856 ], [ 355692.702200002968311, 259487.595300000160933 ], [ 355712.960699997842312, 259475.939899999648333 ], [ 355727.510300002992153, 259471.837099999189377 ], [ 355734.536200001835823, 259468.49269999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701010300", "MAP": "D9-1859-T81", "PARCEL_NAM": "14A", "ACRE": "1.2", "LONGITUDE": -64.96169518000001, "LATITUDE": 18.36415189, "OBJECTID_1": 2777, "PARCEL_NO_": "102701010300", "Tax_Legal_": "DOROTHEA 14A LITTLE NORTHSIDE QUARTER", "Name": "NORTHSIDE DEV. INC.", "Address": "7917 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.60078169299999, "SHAPE_Area": 4236.35244083 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355557.623999997973442, 259346.956900000572205 ], [ 355554.447300001978874, 259341.2314000017941 ], [ 355538.286899998784065, 259345.109900001436472 ], [ 355526.975199997425079, 259347.761500000953674 ], [ 355517.281400002539158, 259349.793099999427795 ], [ 355520.459899999201298, 259355.307599999010563 ], [ 355510.762599997222424, 259357.761300001293421 ], [ 355476.010200001299381, 259366.976100001484156 ], [ 355499.040899999439716, 259408.538899999111891 ], [ 355519.218500003218651, 259406.381999999284744 ], [ 355530.517599999904633, 259405.208000000566244 ], [ 355537.749700002372265, 259402.535199999809265 ], [ 355579.066399998962879, 259387.265599999576807 ], [ 355572.703000001609325, 259375.366799999028444 ], [ 355560.802500002086163, 259352.4712999984622 ], [ 355557.623999997973442, 259346.956900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602020100", "MAP": "D9-4620-T88", "PARCEL_NAM": "1A REM", "ACRE": null, "LONGITUDE": -64.96899762, "LATITUDE": 18.35760021, "OBJECTID_1": 2418, "PARCEL_NO_": "102602020100", "Tax_Legal_": "1A REM. DOROTHEA NO.7 GREAT NORTHSIDE QTR", "Name": "JEPPESEN, NIELS & PATRICIA", "Address": "PO Box 10858", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1156.04311388, "SHAPE_Area": 11910.417499499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354669.545299999415874, 258715.695799998939037 ], [ 354678.883699998259544, 258673.722600001841784 ], [ 354805.354500003159046, 258675.574700001627207 ], [ 354802.892499998211861, 258680.901299998164177 ], [ 354852.883900001645088, 258681.310499999672174 ], [ 354895.618400000035763, 258681.660199999809265 ], [ 354907.89469999819994, 258660.44029999896884 ], [ 354905.508199997246265, 258656.620999999344349 ], [ 354875.912000000476837, 258628.514499999582767 ], [ 354868.737899996340275, 258618.745400000363588 ], [ 354863.134999997913837, 258613.844399999827147 ], [ 354859.988899998366833, 258604.530600000172853 ], [ 354856.004100002348423, 258599.009500000625849 ], [ 354827.251999996602535, 258566.47690000012517 ], [ 354816.969499997794628, 258542.961300000548363 ], [ 354805.045699998736382, 258522.809900000691414 ], [ 354793.048100002110004, 258511.312600001692772 ], [ 354781.09009999781847, 258495.171599999070168 ], [ 354750.757700003683567, 258458.826400000602007 ], [ 354738.623400002717972, 258463.371100001037121 ], [ 354769.754900000989437, 258500.567299999296665 ], [ 354782.506700001657009, 258518.192400000989437 ], [ 354794.504299998283386, 258529.689699999988079 ], [ 354800.846900001168251, 258542.407200001180172 ], [ 354814.31139999628067, 258571.015000000596046 ], [ 354817.484499998390675, 258577.16270000115037 ], [ 354833.44709999859333, 258596.502900000661612 ], [ 354857.386600002646446, 258626.040800001472235 ], [ 354830.503100000321865, 258658.118099998682737 ], [ 354754.675599999725819, 258661.508299998939037 ], [ 354603.828599996864796, 258668.084100000560284 ], [ 354608.231299996376038, 258719.204799998551607 ], [ 354642.060500003397465, 258723.703499998897314 ], [ 354668.663400001823902, 258724.554499998688698 ], [ 354669.545299999415874, 258715.695799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602020700", "MAP": "F9-2674-T70", "PARCEL_NAM": "1C-D2", "ACRE": null, "LONGITUDE": -64.96750999, "LATITUDE": 18.35959606, "OBJECTID_1": 2423, "PARCEL_NO_": "102602020700", "Tax_Legal_": "DOROTHEA 1C-D2 LITTLE NORTHSIDE", "Name": "ESANNASON, ANTON E. & NOREEN D. -", "Address": "PO Box 305242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 96100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.38884003499999, "SHAPE_Area": 3593.75840758 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354911.344400003552437, 258823.432700000703335 ], [ 354899.258699998259544, 258822.278299998492002 ], [ 354895.456299997866154, 258890.008200000971556 ], [ 354901.111199997365475, 258888.787999998778105 ], [ 354900.251000002026558, 258895.113699998706579 ], [ 354900.213200002908707, 258899.546399999409914 ], [ 354900.182599999010563, 258903.134700000286102 ], [ 354900.064000003039837, 258917.065900001674891 ], [ 354938.862300001084805, 258906.195500001311302 ], [ 354939.486199997365475, 258832.951200000941753 ], [ 354940.348300002515316, 258826.414299998432398 ], [ 354917.789499998092651, 258824.118700001388788 ], [ 354911.344400003552437, 258823.432700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96748049, "LATITUDE": 18.35901794, "OBJECTID_1": 2429, "PARCEL_NO_": "102602021400", "Tax_Legal_": "DOROTHEA 1CF LT. NORTHSIDE", "Name": "BRYAN, ETHEL-TRUSTEE", "Address": "PO Box 302908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 163400, "Improved_V": 147400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.31326710600001, "SHAPE_Area": 2153.9709325200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354917.789499998092651, 258824.118700001388788 ], [ 354940.348300002515316, 258826.414299998432398 ], [ 354945.303000003099442, 258812.733800001442432 ], [ 354946.955200001597404, 258808.103300001472235 ], [ 354954.409800000488758, 258784.943999998271465 ], [ 354900.404899999499321, 258782.390999998897314 ], [ 354896.234899997711182, 258798.611099999397993 ], [ 354889.590199999511242, 258821.354800000786781 ], [ 354899.258699998259544, 258822.278299998492002 ], [ 354911.344400003552437, 258823.432700000703335 ], [ 354917.789499998092651, 258824.118700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701026000", "MAP": "C9-166-T73", "PARCEL_NAM": "10D", "ACRE": "1.11", "LONGITUDE": -64.9594258, "LATITUDE": 18.35814752, "OBJECTID_1": 2886, "PARCEL_NO_": "102701026000", "Tax_Legal_": "BONNE RESOLUTION 10D LT. NORTHSIDE QTR.", "Name": "TAYLOR, KATHLEEN A. & CARGILL JR., THOMAS", "Address": "3421 MISSISSIPPI STREET", "City": "SAN DEIGO", "State": "California", "Zip": 92104, "Country": "United States", "Land_Value": 106800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.96697662700001, "SHAPE_Area": 4621.6462694100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355755.200400002300739, 258777.143699999898672 ], [ 355768.927500002086163, 258774.934000000357628 ], [ 355774.591499999165535, 258772.658300001174212 ], [ 355781.875200003385544, 258769.551600001752377 ], [ 355785.935599997639656, 258766.207299999892712 ], [ 355801.408399999141693, 258748.390999998897314 ], [ 355791.368699997663498, 258696.379799999296665 ], [ 355780.57660000026226, 258638.029599998146296 ], [ 355765.955099999904633, 258650.575599998235703 ], [ 355753.718299999833107, 258667.151799999177456 ], [ 355755.200400002300739, 258777.143699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701023100", "MAP": "G9-2660-T77", "PARCEL_NAM": "15", "ACRE": "5.04 +/-", "LONGITUDE": -64.95988657, "LATITUDE": 18.36001797, "OBJECTID_1": 2861, "PARCEL_NO_": "102701023100", "Tax_Legal_": "DOROTHEA 15 LITTLE NORTHSIDE", "Name": "PHIPPS, LESLIE", "Address": "825 Bonnie Dr", "City": "Baldwin", "State": "New York", "Zip": 11510, "Country": "United States", "Land_Value": 207300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1053.79360034, "SHAPE_Area": 23610.122887699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355755.232100002467632, 258777.143699999898672 ], [ 355753.75, 258667.151799999177456 ], [ 355740.780699998140335, 258675.067200001329184 ], [ 355714.030299998819828, 258691.524700000882149 ], [ 355701.870899997651577, 258699.024500001221895 ], [ 355686.469999998807907, 258708.397700000554323 ], [ 355689.829899996519089, 258715.691500000655651 ], [ 355672.472199998795986, 258731.222100000828505 ], [ 355724.696299999952316, 258792.430799998342991 ], [ 355726.586199998855591, 258814.878100000321865 ], [ 355727.959100000560284, 258831.183800000697374 ], [ 355729.42679999768734, 258848.615499999374151 ], [ 355745.831000000238419, 258888.303100001066923 ], [ 355688.405199997127056, 258981.346900001168251 ], [ 355690.268399998545647, 258991.490800000727177 ], [ 355655.92960000038147, 259074.626800000667572 ], [ 355686.969499997794628, 259122.569499999284744 ], [ 355751.768100000917912, 259089.111600000411272 ], [ 355748.650700002908707, 259076.420499999076128 ], [ 355764.682700000703335, 258992.958700001239777 ], [ 355764.776199996471405, 258981.982599999755621 ], [ 355760.602600000798702, 258905.9239999987185 ], [ 355760.550800003111362, 258904.980900000780821 ], [ 355755.702200002968311, 258816.622000001370907 ], [ 355755.187100000679493, 258782.420699998736382 ], [ 355755.232100002467632, 258777.143699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024400", "MAP": "D9-7426-T004", "PARCEL_NAM": "8", "ACRE": ".800", "LONGITUDE": -64.9598559, "LATITUDE": 18.35725085, "OBJECTID_1": 2873, "PARCEL_NO_": "102701024400", "Tax_Legal_": "DOROTHEA 8 LITTLE NORTHSIDE", "Name": "MARTIN, LAURA M", "Address": "2532 Parrish St", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19130, "Country": "United States", "Land_Value": 85800, "Improved_V": 291700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.99354467400002, "SHAPE_Area": 3632.73476527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355696.318400003015995, 258589.844000000506639 ], [ 355701.879799999296665, 258599.599800001829863 ], [ 355710.605400003492832, 258616.558699999004602 ], [ 355722.500500001013279, 258640.087400000542402 ], [ 355731.231499999761581, 258656.413100000470877 ], [ 355740.748999997973442, 258675.067200001329184 ], [ 355753.718299999833107, 258667.151799999177456 ], [ 355753.783100001513958, 258659.552999999374151 ], [ 355753.476599998772144, 258600.866500001400709 ], [ 355752.747699998319149, 258591.783500000834465 ], [ 355694.111599996685982, 258564.916900001466274 ], [ 355693.280100002884865, 258567.86540000140667 ], [ 355689.192800000309944, 258574.375799998641014 ], [ 355696.318400003015995, 258589.844000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701023900", "MAP": "D9-6537-T99", "PARCEL_NAM": "9-B", "ACRE": ".200", "LONGITUDE": -64.96027175, "LATITUDE": 18.35708547, "OBJECTID_1": 2868, "PARCEL_NO_": "102701023900", "Tax_Legal_": "DOROTHEA ESTATE 9B LITLE NORTHSIDE QTR. #7", "Name": "BAKER, HELEN B. TRUSTEE", "Address": "P.O.BOX 5109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65300, "Improved_V": 46900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.09366411400001, "SHAPE_Area": 587.34924792899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355681.782999999821186, 258613.377999998629093 ], [ 355700.697999998927116, 258597.526700001209974 ], [ 355696.318400003015995, 258589.844000000506639 ], [ 355689.192800000309944, 258574.375799998641014 ], [ 355684.206600002944469, 258582.481300000101328 ], [ 355672.353200003504753, 258596.028000000864267 ], [ 355668.798100002110004, 258599.737700000405312 ], [ 355675.739900000393391, 258608.939699999988079 ], [ 355678.068199999630451, 258607.034699998795986 ], [ 355681.782999999821186, 258613.377999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701024300", "MAP": "D9-7696-T005", "PARCEL_NAM": "9-C", "ACRE": ".131", "LONGITUDE": -64.96016334, "LATITUDE": 18.35726367, "OBJECTID_1": 2872, "PARCEL_NO_": "102701024300", "Tax_Legal_": "DOROTHEA 9 LITTLE NORTHSIDE", "Name": "BERRY, MARIE C", "Address": "PO Box 304854", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49800, "Improved_V": 339100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.395602665200002, "SHAPE_Area": 548.13296743399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355700.697999998927116, 258597.526700001209974 ], [ 355681.782999999821186, 258613.377999998629093 ], [ 355694.322700001299381, 258634.790600001811981 ], [ 355710.605400003492832, 258616.558699999004602 ], [ 355701.879799999296665, 258599.599800001829863 ], [ 355700.697999998927116, 258597.526700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701011500", "MAP": "D9-427-T64", "PARCEL_NAM": "12D", "ACRE": ".288", "LONGITUDE": -64.96351412, "LATITUDE": 18.3590688, "OBJECTID_1": 2788, "PARCEL_NO_": "102701011500", "Tax_Legal_": "DOROTHEA 12D LITTLE NORTHSIDE QTR", "Name": "Agnes L Broulette,Trustee, Julian, Patrick & Linda", "Address": "7959 Estate Dorothea 12D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 179900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.641981929, "SHAPE_Area": 1310.13304954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355363.703699998557568, 258825.024099998176098 ], [ 355339.028099998831749, 258787.247499998658895 ], [ 355333.365900002419949, 258789.312100000679493 ], [ 355310.720799997448921, 258797.148299999535084 ], [ 355343.482900001108646, 258832.246899999678135 ], [ 355351.47410000115633, 258840.756099998950958 ], [ 355367.501599997282028, 258831.001499999314547 ], [ 355363.703699998557568, 258825.024099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701011700", "MAP": "D9-7621-T005", "PARCEL_NAM": "12 REM", "ACRE": ".618", "LONGITUDE": -64.96305766, "LATITUDE": 18.35878771, "OBJECTID_1": 2790, "PARCEL_NO_": "102701011700", "Tax_Legal_": "12 REM.&12-F ESTATE DOROTHEA No.7 LT.NORTHSIDE QTR.", "Name": "STAGGER, CAROL", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61600, "Improved_V": 169400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.38297135400001, "SHAPE_Area": 2301.0943390299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355418.99379999935627, 258799.521800000220537 ], [ 355405.232500001788139, 258752.465500000864267 ], [ 355396.604900002479553, 258752.324099998921156 ], [ 355388.948899999260902, 258752.823399998247623 ], [ 355373.636900000274181, 258756.152100000530481 ], [ 355371.105899997055531, 258756.980900000780821 ], [ 355372.812899999320507, 258772.249200001358986 ], [ 355356.835299998521805, 258779.371700000017881 ], [ 355337.535599999129772, 258784.120000001043081 ], [ 355329.52139999717474, 258767.326900001615286 ], [ 355324.663699999451637, 258769.609200000762939 ], [ 355333.365900002419949, 258789.312100000679493 ], [ 355339.028099998831749, 258787.247499998658895 ], [ 355366.523599997162819, 258777.973299998790026 ], [ 355374.968400001525879, 258775.125700000673532 ], [ 355385.561300002038479, 258817.073800001293421 ], [ 355386.093000002205372, 258819.686599999666214 ], [ 355397.676700003445148, 258812.636599998921156 ], [ 355418.99379999935627, 258799.521800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701012100", "MAP": "D9-427-T64", "PARCEL_NAM": "12A", "ACRE": ".110", "LONGITUDE": -64.96341284, "LATITUDE": 18.35867818, "OBJECTID_1": 2794, "PARCEL_NO_": "102701012100", "Tax_Legal_": "DOROTHEA 12A LITTLE NORTHSIDE", "Name": "DOUGLAS, BARBARA G. & IAN M.", "Address": "PO Box 10700", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11400, "Improved_V": 270000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.022766453, "SHAPE_Area": 787.99727246999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355329.52139999717474, 258767.326900001615286 ], [ 355337.535599999129772, 258784.120000001043081 ], [ 355356.835299998521805, 258779.371700000017881 ], [ 355372.812899999320507, 258772.249200001358986 ], [ 355371.105899997055531, 258756.980900000780821 ], [ 355358.990599997341633, 258757.649999998509884 ], [ 355347.173699997365475, 258759.314300000667572 ], [ 355337.354099996387959, 258762.975900001823902 ], [ 355337.354099996387959, 258763.308800000697374 ], [ 355329.52139999717474, 258767.326900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201051100", "MAP": "D9-8476-T010", "PARCEL_NAM": "114 REM", "ACRE": ".307", "LONGITUDE": -64.9602449, "LATITUDE": 18.34149974, "OBJECTID_1": 7687, "PARCEL_NO_": "105201051100", "Tax_Legal_": "CONTANT 114 SOUTHSIDE QUARTER", "Name": "RICHARDSON, HENRY & IRENE", "Address": "PO Box 6132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 190400, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.85676668900001, "SHAPE_Area": 1264.03337197 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355725.929399996995926, 256856.622699998319149 ], [ 355681.86150000244379, 256856.750799998641014 ], [ 355677.776299998164177, 256885.533900000154972 ], [ 355701.163000002503395, 256885.303199999034405 ], [ 355723.759499996900558, 256883.16609999909997 ], [ 355725.929399996995926, 256856.622699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204020600", "MAP": "F9-1640-T65", "PARCEL_NAM": "7A", "ACRE": "0.15", "LONGITUDE": -64.95102836, "LATITUDE": 18.3392191, "OBJECTID_1": 8569, "PARCEL_NO_": "105204020600", "Tax_Legal_": "7A ESTATE CONTANT 7BA SOUTHSIDE QTR", "Name": "BARBER, LINDQUIST, PETERSEN, PENA", "Address": "PO Box 307488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037488, "Country": "United States", "Land_Value": 49900, "Improved_V": 62200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.581861398, "SHAPE_Area": 592.087722 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356688.989399999380112, 256633.496500000357628 ], [ 356688.507399998605251, 256604.741799999028444 ], [ 356670.578699998557568, 256613.853100001811981 ], [ 356673.483800001442432, 256620.106100000441074 ], [ 356669.270599998533726, 256631.100699998438358 ], [ 356666.902000002563, 256635.462000001221895 ], [ 356665.061499997973442, 256639.582400001585484 ], [ 356663.613799996674061, 256642.823399998247623 ], [ 356658.663199998438358, 256649.82490000128746 ], [ 356665.880699999630451, 256645.938799999654293 ], [ 356667.222800001502037, 256645.2162000015378 ], [ 356688.989399999380112, 256633.496500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204022600", "MAP": "D9-8092-T008", "PARCEL_NAM": "84A & 119B", "ACRE": ".28", "LONGITUDE": -64.95063187, "LATITUDE": 18.33932176, "OBJECTID_1": 8584, "PARCEL_NO_": "105204022600", "Tax_Legal_": "84A & 119B CONTANT 7Bb SOUTHSIDE QTR", "Name": "ARACELY NICHOLSON", "Address": "PO Box 302578", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032578, "Country": "United States", "Land_Value": 92200, "Improved_V": 157500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.763580418, "SHAPE_Area": 984.570415303 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356706.569499999284744, 256617.210499998182058 ], [ 356710.796300001442432, 256660.065200001001358 ], [ 356715.075699999928474, 256659.921000000089407 ], [ 356733.628100000321865, 256659.228500001132488 ], [ 356729.882500000298023, 256625.633900001645088 ], [ 356729.164300002157688, 256615.284499999135733 ], [ 356706.569499999284744, 256617.210499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704044000", "MAP": "D9-8145-T008", "PARCEL_NAM": "107-4 REM", "ACRE": "1.501", "LONGITUDE": -64.9556111, "LATITUDE": 18.34936075, "OBJECTID_1": 3576, "PARCEL_NO_": "102704044000", "Tax_Legal_": "107-4 CONTANT 7B SOUTHSIDE QTR", "Name": "BRUNT, KRISTINE A. & THOMAS B. (TRUSTEES)", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 378.04748528800002, "SHAPE_Area": 6524.5707543999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356257.827200002968311, 257705.524700000882149 ], [ 356176.230999998748302, 257718.653400000184774 ], [ 356161.928199999034405, 257711.33390000090003 ], [ 356104.835400000214577, 257774.566700000315905 ], [ 356108.042599998414516, 257776.703899998217821 ], [ 356121.753499999642372, 257776.393899999558926 ], [ 356178.215199999511242, 257774.534000001847744 ], [ 356221.772200003266335, 257772.990600001066923 ], [ 356235.704300001263618, 257746.717999998480082 ], [ 356257.827200002968311, 257705.524700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203011700", "MAP": "D9-100-T56", "PARCEL_NAM": "20", "ACRE": null, "LONGITUDE": -64.95995339, "LATITUDE": 18.33929512, "OBJECTID_1": 8482, "PARCEL_NO_": "105203011700", "Tax_Legal_": "CONTANT ESTATE 20 7A SOUTHSIDE QTR.", "Name": "HASSAN, L. & MUHSEN, D. & ABDALLAH, W", "Address": "2101 Strand Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 127400, "Improved_V": 109300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.34181896300001, "SHAPE_Area": 1862.3480853799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355733.319799996912479, 256612.833500001579523 ], [ 355708.223399996757507, 256624.449299998581409 ], [ 355694.360799998044968, 256630.895700000226498 ], [ 355705.620300002396107, 256651.356699999421835 ], [ 355708.011200003325939, 256649.356600001454353 ], [ 355716.918399997055531, 256644.996500000357628 ], [ 355729.049099996685982, 256640.874000001698732 ], [ 355769.416900001466274, 256635.082600001245737 ], [ 355763.941699996590614, 256615.195000000298023 ], [ 355761.601899996399879, 256605.887800000607967 ], [ 355760.035999998450279, 256600.386500000953674 ], [ 355733.319799996912479, 256612.833500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203011200", "MAP": "D9-6883-T001", "PARCEL_NAM": "9BC", "ACRE": null, "LONGITUDE": -64.96042076000001, "LATITUDE": 18.33878962, "OBJECTID_1": 8476, "PARCEL_NO_": "105203011200", "Tax_Legal_": "CONTANT ESTATE 9B REMAINDER No.7A SOUTHSIDE QTR.", "Name": "GORRELL, INC. ,", "Address": "PO Box 307666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 414900, "Improved_V": 946500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.572507615299997, "SHAPE_Area": 547.55711601999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355671.463899999856949, 256564.329700000584126 ], [ 355683.694099999964237, 256587.460799999535084 ], [ 355698.592699997127056, 256583.806400001049042 ], [ 355689.494099996984005, 256551.257599998265505 ], [ 355671.463899999856949, 256564.329700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105203011200", "MAP": "D9-8165-T008", "PARCEL_NAM": "9B-REM", "ACRE": ".920", "LONGITUDE": -64.96047908, "LATITUDE": 18.3392656, "OBJECTID_1": 8476, "PARCEL_NO_": "105203011200", "Tax_Legal_": "CONTANT ESTATE 9B REMAINDER No.7A SOUTHSIDE QTR.", "Name": "GORRELL, INC. ,", "Address": "PO Box 307666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 414900, "Improved_V": 946500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.78557532100001, "SHAPE_Area": 3748.5960822100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355658.481299996376038, 256664.797899998724461 ], [ 355693.737999998033047, 256668.509100001305342 ], [ 355696.620399996638298, 256661.295699998736382 ], [ 355701.513999998569489, 256654.791900001466274 ], [ 355705.620300002396107, 256651.356699999421835 ], [ 355694.360799998044968, 256630.895700000226498 ], [ 355708.223399996757507, 256624.449299998581409 ], [ 355699.643500000238419, 256590.39299999922514 ], [ 355699.666900001466274, 256587.649000000208616 ], [ 355698.592699997127056, 256583.806400001049042 ], [ 355683.694099999964237, 256587.460799999535084 ], [ 355671.463899999856949, 256564.329700000584126 ], [ 355662.718599997460842, 256570.670200001448393 ], [ 355669.714599996805191, 256601.335999999195337 ], [ 355648.671400003135204, 256610.451900001615286 ], [ 355658.838799998164177, 256647.476500000804663 ], [ 355659.623499996960163, 256650.015999998897314 ], [ 355658.705700002610683, 256663.0962999984622 ], [ 355658.481299996376038, 256664.797899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204061300", "MAP": "D9-8307-T009", "PARCEL_NAM": "85", "ACRE": "3.119", "LONGITUDE": -64.95670273, "LATITUDE": 18.33884942, "OBJECTID_1": 8751, "PARCEL_NO_": "105204061300", "Tax_Legal_": "CONTANT 85 SOUTHSIDE QTR.", "Name": "EBENEZER BAPTIST CHURCH", "Address": "PO Box 308208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 252900, "Improved_V": 312500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 480.73091035900001, "SHAPE_Area": 11697.8802431 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356115.450800001621246, 256623.138199999928474 ], [ 356121.18129999935627, 256613.052600000053644 ], [ 356126.114500001072884, 256601.905000001192093 ], [ 356130.1891999989748, 256596.872099999338388 ], [ 356138.299099996685982, 256591.450100000947714 ], [ 356112.381300002336502, 256510.177999999374151 ], [ 356084.124399997293949, 256514.168600000441074 ], [ 356072.015299998223782, 256515.758299998939037 ], [ 356059.098099999129772, 256517.552400000393391 ], [ 356053.446699999272823, 256518.350499998778105 ], [ 356051.832299999892712, 256518.54839999973774 ], [ 356044.474799998104572, 256530.309399999678135 ], [ 356040.380300000309944, 256537.664200000464916 ], [ 356038.742499999701977, 256540.606100000441074 ], [ 356034.649800002574921, 256547.749800000339746 ], [ 356029.741800002753735, 256555.942299999296665 ], [ 356027.220399998128414, 256567.953899998217821 ], [ 356024.6216000020504, 256589.041999999433756 ], [ 356019.451099999248981, 256628.052000001072884 ], [ 356046.003600001335144, 256634.813200000673532 ], [ 356051.252400003373623, 256609.940400000661612 ], [ 356060.702299997210503, 256624.334300000220537 ], [ 356065.672600001096725, 256631.904899999499321 ], [ 356074.92339999973774, 256645.99549999833107 ], [ 356086.676100000739098, 256663.896999999880791 ], [ 356090.717299997806549, 256670.052499998360872 ], [ 356090.740800000727177, 256670.122999999672174 ], [ 356091.690099999308586, 256667.273400001227856 ], [ 356094.9746999964118, 256660.334199998527765 ], [ 356099.071000002324581, 256652.768300000578165 ], [ 356103.995200000703335, 256642.676199998706579 ], [ 356115.450800001621246, 256623.138199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045000", "MAP": "D9-5941-T95", "PARCEL_NAM": "REM 36", "ACRE": ".57", "LONGITUDE": -64.96429377, "LATITUDE": 18.34876906, "OBJECTID_1": 3386, "PARCEL_NO_": "102703045000", "Tax_Legal_": "LINDBERG BAY 36 SOUTHSIDE QTR", "Name": "PENN, CLAUDE & JOHN", "Address": "P.O. BOX 4024", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 86000, "Improved_V": 21400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.77405868599999, "SHAPE_Area": 3019.5484206400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355289.368600003421307, 257706.675299998372793 ], [ 355282.789599999785423, 257601.904399998486042 ], [ 355264.799900002777576, 257608.626299999654293 ], [ 355268.375, 257615.311099998652935 ], [ 355271.528300002217293, 257623.780699998140335 ], [ 355273.070799998939037, 257632.02589999884367 ], [ 355270.520599998533726, 257647.414900001138449 ], [ 355264.813500002026558, 257654.756400000303984 ], [ 355259.136900000274181, 257658.509700000286102 ], [ 355264.612099997699261, 257678.397300001233816 ], [ 355259.770599998533726, 257678.779800001531839 ], [ 355242.88120000064373, 257673.575399998575449 ], [ 355246.216099999845028, 257660.725999999791384 ], [ 355241.387299999594688, 257659.631000000983477 ], [ 355233.918300002813339, 257684.478900000452995 ], [ 355239.565999999642372, 257684.102899998426437 ], [ 355239.323299996554852, 257712.598600000143051 ], [ 355248.203500002622604, 257711.404699999839067 ], [ 355289.368600003421307, 257706.675299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201021400", "MAP": "D9-851-T69", "PARCEL_NAM": "216", "ACRE": null, "LONGITUDE": -64.96371781000001, "LATITUDE": 18.34706075, "OBJECTID_1": 7491, "PARCEL_NO_": "105201021400", "Tax_Legal_": "216 CONTANT NO 7A SOUTHSIDE QTR", "Name": "CARTY, DARRYL, DALE & DALTON", "Address": "P.O. BOX 4685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 78400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.182124796, "SHAPE_Area": 809.87938017199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355328.333400003612041, 257463.925599999725819 ], [ 355309.173600003123283, 257476.154699999839067 ], [ 355334.617799997329712, 257506.506799999624491 ], [ 355337.083499997854233, 257501.038600001484156 ], [ 355349.309399999678135, 257485.728799998760223 ], [ 355328.333400003612041, 257463.925599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": null, "PARCEL_NAM": "REM of CONTANT 7A", "ACRE": null, "LONGITUDE": -64.96372008, "LATITUDE": 18.34677664, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.33368653400001, "SHAPE_Area": 882.51697316100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355350.768500000238419, 257445.934200000017881 ], [ 355361.444700002670288, 257416.340500000864267 ], [ 355366.138700000941753, 257403.328899998217821 ], [ 355360.401100002229214, 257414.258900001645088 ], [ 355353.830099999904633, 257428.348299998790026 ], [ 355347.305900000035763, 257436.949799999594688 ], [ 355344.055399999022484, 257439.878499999642372 ], [ 355315.739200003445148, 257450.834699999541044 ], [ 355300.477399997413158, 257456.683100000023842 ], [ 355311.265100002288818, 257468.66950000077486 ], [ 355309.173600003123283, 257476.154699999839067 ], [ 355328.333400003612041, 257463.925599999725819 ], [ 355349.047600001096725, 257450.704300001263618 ], [ 355350.768500000238419, 257445.934200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201013300", "MAP": "D9-7494-T004", "PARCEL_NAM": "414", "ACRE": ".236", "LONGITUDE": -64.96407955, "LATITUDE": 18.34701881, "OBJECTID_1": 7465, "PARCEL_NO_": "105201013300", "Tax_Legal_": "32J LINDBERG BAY & 414 CONTANT 7A SOUTHSIDE QTR", "Name": "FRETT, SYLVANIE & SHANIQUE", "Address": "PO Box 10306", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.929574062, "SHAPE_Area": 1118.0774769499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355309.173600003123283, 257476.154699999839067 ], [ 355311.265100002288818, 257468.66950000077486 ], [ 355300.477399997413158, 257456.683100000023842 ], [ 355294.704899996519089, 257458.895199999213219 ], [ 355284.996799997985363, 257462.61540000140667 ], [ 355280.940099999308586, 257465.537500001490116 ], [ 355276.042900003492832, 257472.463500000536442 ], [ 355273.54839999973774, 257481.309000000357628 ], [ 355274.958400003612041, 257498.078000001609325 ], [ 355304.227200001478195, 257493.857799999415874 ], [ 355309.173600003123283, 257476.154699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022500", "MAP": "D9-9402-T019", "PARCEL_NAM": "69 REM", "ACRE": "1.00", "LONGITUDE": -64.95480937000001, "LATITUDE": 18.34224266, "OBJECTID_1": 8116, "PARCEL_NO_": "105202022500", "Tax_Legal_": "69-1,69-2,69-4,69REM & ROW 69-A CONTANT", "Name": "HOLIDAY DRIVE LLC", "Address": "12559 Holiday Dr", "City": "ASLIP", "State": "Illinois", "Zip": 60603, "Country": "United States", "Land_Value": 481100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.44419731599999, "SHAPE_Area": 3195.5958981799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356239.594200000166893, 256937.120799999684095 ], [ 356248.501400001347065, 256937.939899999648333 ], [ 356248.289099998772144, 256941.945099998265505 ], [ 356261.624099999666214, 256942.738899998366833 ], [ 356261.388477100525051, 256949.581937935581664 ], [ 356260.671599999070168, 256956.391399998217821 ], [ 356260.464907161076553, 256958.684258243214572 ], [ 356259.884984629170503, 256960.912174470955506 ], [ 356258.947536269202828, 256963.014818385941908 ], [ 356257.677947477553971, 256964.935251972667174 ], [ 356256.110597763734404, 256966.621471334248781 ], [ 356254.287929778860416, 256968.027814918837976 ], [ 356252.259300000965595, 256969.116200000047684 ], [ 356253.682700000703335, 256992.52309999987483 ], [ 356305.863899998366833, 256988.833000000566244 ], [ 356305.212200000882149, 256970.673700001090765 ], [ 356302.874200001358986, 256961.155299998819828 ], [ 356295.78999999910593, 256940.832299999892712 ], [ 356292.059900000691414, 256924.448699999600649 ], [ 356245.279700003564358, 256923.368299998342991 ], [ 356239.714900001883507, 256923.239799998700619 ], [ 356239.594200000166893, 256937.120799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202025700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95724426, "LATITUDE": 18.34473818, "OBJECTID_1": 8145, "PARCEL_NO_": "105202025700", "Tax_Legal_": "CONTANT 15-1-A 7A S S QTR", "Name": "WEEKS, ERNESTINE & CAST", "Address": "PO Box 8992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 81100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.39302466800001, "SHAPE_Area": 833.11020530400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356011.672899998724461, 257257.119899999350309 ], [ 356017.608599998056889, 257258.378100000321865 ], [ 356037.101300001144409, 257224.179099999368191 ], [ 355992.701399996876717, 257212.351199999451637 ], [ 356005.436999998986721, 257231.875999998301268 ], [ 356002.967699997127056, 257237.766399998217821 ], [ 356017.45440000295639, 257241.051399998366833 ], [ 356011.714900001883507, 257252.192400000989437 ], [ 356011.672899998724461, 257257.119899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021300", "MAP": "D9-7807-T006", "PARCEL_NAM": "15-3", "ACRE": ".413", "LONGITUDE": -64.95690042, "LATITUDE": 18.34491849, "OBJECTID_1": 8104, "PARCEL_NO_": "105202021300", "Tax_Legal_": "15 REM. CONTANT 7A SOUTHSIDE QTR", "Name": "JEANETTE SPENCER aka JEANNETTE SPENCER", "Address": "PO Box 296", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55400, "Improved_V": 300000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.76967848499999, "SHAPE_Area": 1507.05057986 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356081.628600001335144, 257235.790699999779463 ], [ 356077.845100000500679, 257235.052499998360872 ], [ 356073.082599997520447, 257243.783700000494719 ], [ 356041.173900000751019, 257238.06870000064373 ], [ 356041.173900000751019, 257234.734999999403954 ], [ 356032.058899998664856, 257233.02589999884367 ], [ 356017.60869999974966, 257258.378100000321865 ], [ 356073.491899996995926, 257270.223900001496077 ], [ 356080.5033999979496, 257260.037399999797344 ], [ 356081.628600001335144, 257235.790699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021300", "MAP": "D9-7807-T006", "PARCEL_NAM": "15-REM", "ACRE": ".709", "LONGITUDE": -64.95674153, "LATITUDE": 18.34455626, "OBJECTID_1": 8104, "PARCEL_NO_": "105202021300", "Tax_Legal_": "15 REM. CONTANT 7A SOUTHSIDE QTR", "Name": "JEANETTE SPENCER aka JEANNETTE SPENCER", "Address": "PO Box 296", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55400, "Improved_V": 300000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.53670502300002, "SHAPE_Area": 2310.8773796800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356032.058899998664856, 257233.02589999884367 ], [ 356041.173900000751019, 257234.734999999403954 ], [ 356041.173900000751019, 257238.06870000064373 ], [ 356073.082599997520447, 257243.783700000494719 ], [ 356077.845100000500679, 257235.052499998360872 ], [ 356081.628600001335144, 257235.790699999779463 ], [ 356081.22860000282526, 257232.707400001585484 ], [ 356079.709499999880791, 257221.718100000172853 ], [ 356083.843500003218651, 257209.7195999994874 ], [ 356114.708200000226498, 257183.585499998182058 ], [ 356118.770300000905991, 257180.030200000852346 ], [ 356117.188199996948242, 257176.428599998354912 ], [ 356116.398100003600121, 257174.522300001233816 ], [ 356112.424099996685982, 257167.7347999997437 ], [ 356105.908900000154972, 257175.280900001525879 ], [ 356085.556800000369549, 257197.912399999797344 ], [ 356063.041199997067451, 257190.550900001078844 ], [ 356057.3175999969244, 257188.710799999535084 ], [ 356037.101300001144409, 257224.179099999368191 ], [ 356032.058899998664856, 257233.02589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95722682, "LATITUDE": 18.34406353, "OBJECTID_1": 8107, "PARCEL_NO_": "105202021600", "Tax_Legal_": "CONTANT 93A-1 7A S S QTR", "Name": "SLACK, CHARMAINE L.", "Address": "PO Box 7673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51200, "Improved_V": 130700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.98891791599999, "SHAPE_Area": 1482.42078915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356037.118600003421307, 257172.396699998527765 ], [ 356049.415799997746944, 257147.625900000333786 ], [ 356035.203299999237061, 257145.360199999064207 ], [ 356011.866999998688698, 257139.680700000375509 ], [ 356002.994000002741814, 257140.030299998819828 ], [ 355997.317400000989437, 257143.783500000834465 ], [ 355992.407600000500679, 257152.187100000679493 ], [ 355989.130199998617172, 257158.282000001519918 ], [ 356013.969400003552437, 257176.850400000810623 ], [ 356034.969499997794628, 257172.800400000065565 ], [ 356037.118600003421307, 257172.396699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95734881, "LATITUDE": 18.34431224, "OBJECTID_1": 8106, "PARCEL_NO_": "105202021500", "Tax_Legal_": "CONTANT 93A 7A S S QTR", "Name": "SLACK, SYLVIA LORNA", "Address": "BOX 4722", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51200, "Improved_V": 206300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.62572059199999, "SHAPE_Area": 1483.7894666699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356018.707599997520447, 257209.482999999076128 ], [ 356037.118600003421307, 257172.396699998527765 ], [ 356034.969499997794628, 257172.800400000065565 ], [ 356013.969400003552437, 257176.850400000810623 ], [ 355989.130199998617172, 257158.282000001519918 ], [ 355985.019500002264977, 257167.536400001496077 ], [ 355979.229699999094009, 257184.587600000202656 ], [ 355984.8091000020504, 257192.232700001448393 ], [ 356014.515000000596046, 257207.46339999884367 ], [ 356018.5304000005126, 257209.396099999547005 ], [ 356018.707599997520447, 257209.482999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202026000", "MAP": "G9-2370-T74", "PARCEL_NAM": "15-2A", "ACRE": ".24", "LONGITUDE": -64.95676312000001, "LATITUDE": 18.34426381, "OBJECTID_1": 8148, "PARCEL_NO_": "105202026000", "Tax_Legal_": "CONTANT 15-2A 7A SOUTHSIDE QTR", "Name": "DENNIS, DAVID A.", "Address": "PO BOX 8791", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72400, "Improved_V": 94300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.76351893, "SHAPE_Area": 1338.87313591 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356104.496299996972084, 257176.851700000464916 ], [ 356041.836199998855591, 257162.893699999898672 ], [ 356037.118600003421307, 257172.396699998527765 ], [ 356032.975000001490116, 257180.743500001728535 ], [ 356038.112099997699261, 257182.536400001496077 ], [ 356063.041199997067451, 257190.550900001078844 ], [ 356085.556800000369549, 257197.912399999797344 ], [ 356104.496299996972084, 257176.851700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95717546, "LATITUDE": 18.34448072, "OBJECTID_1": 8103, "PARCEL_NO_": "105202021200", "Tax_Legal_": "15-1 CONTANT 7A SSOUTHSIDE QUARTER", "Name": "BELLE, ADELLE", "Address": "PO Box 9722", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 171100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.279605086, "SHAPE_Area": 1449.6774931 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355979.229699999094009, 257184.587600000202656 ], [ 355976.778399996459484, 257188.367300000041723 ], [ 355979.967699997127056, 257192.615200001746416 ], [ 355984.742600001394749, 257200.042599998414516 ], [ 355992.701399996876717, 257212.351199999451637 ], [ 356037.101300001144409, 257224.179099999368191 ], [ 356057.3175999969244, 257188.710799999535084 ], [ 356038.112099997699261, 257182.536400001496077 ], [ 356032.975000001490116, 257180.743500001728535 ], [ 356018.707599997520447, 257209.482999999076128 ], [ 356018.5304000005126, 257209.396099999547005 ], [ 356014.515000000596046, 257207.46339999884367 ], [ 355984.8091000020504, 257192.232700001448393 ], [ 355979.229699999094009, 257184.587600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040400", "MAP": "D9-8614-T011", "PARCEL_NAM": "5C-3", "ACRE": ".846", "LONGITUDE": -64.93133117000001, "LATITUDE": 18.35377064, "OBJECTID_1": 4910, "PARCEL_NO_": "102903040400", "Tax_Legal_": "5C MISGUNST No.6 GREAT NORTHSIDE QTR", "Name": "MATTHEW L", "Address": "PO Box 8300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011300, "Country": "United States", "Land_Value": 228800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.65667385799998, "SHAPE_Area": 3113.7161934599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358704.697300001978874, 258239.611800000071526 ], [ 358781.295000001788139, 258301.552499998360872 ], [ 358795.329300001263618, 258289.91270000115037 ], [ 358732.308499999344349, 258209.814699999988079 ], [ 358723.401299998164177, 258214.174699999392033 ], [ 358715.291400000452995, 258219.596799999475479 ], [ 358702.269900001585484, 258233.633499998599291 ], [ 358700.77759999781847, 258236.259899999946356 ], [ 358704.697300001978874, 258239.611800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040400", "MAP": "D9-8614-T011", "PARCEL_NAM": "5C-1", "ACRE": ".677", "LONGITUDE": -64.93148317000001, "LATITUDE": 18.3543629, "OBJECTID_1": 4910, "PARCEL_NO_": "102903040400", "Tax_Legal_": "5C MISGUNST No.6 GREAT NORTHSIDE QTR", "Name": "MATTHEW L", "Address": "PO Box 8300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011300, "Country": "United States", "Land_Value": 228800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.10207677099999, "SHAPE_Area": 2472.41778062 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358777.017599999904633, 258305.100000001490116 ], [ 358705.701800003647804, 258291.360700000077486 ], [ 358710.629399999976158, 258306.035500001162291 ], [ 358711.037799999117851, 258310.700699999928474 ], [ 358710.346000000834465, 258313.358899999409914 ], [ 358708.978799998760223, 258316.677499998360872 ], [ 358709.176600001752377, 258319.787000000476837 ], [ 358704.47410000115633, 258321.302299998700619 ], [ 358699.818899996578693, 258317.046399999409914 ], [ 358694.343199998140335, 258314.460200000554323 ], [ 358714.930699996650219, 258356.593600001186132 ], [ 358777.017599999904633, 258305.100000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040400", "MAP": "D9-8614-T011", "PARCEL_NAM": "5C-2", "ACRE": ".628", "LONGITUDE": -64.9314962, "LATITUDE": 18.35398677, "OBJECTID_1": 4910, "PARCEL_NO_": "102903040400", "Tax_Legal_": "5C MISGUNST No.6 GREAT NORTHSIDE QTR", "Name": "MATTHEW L", "Address": "PO Box 8300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011300, "Country": "United States", "Land_Value": 228800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.12254479800001, "SHAPE_Area": 2346.48362253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358781.295000001788139, 258301.552499998360872 ], [ 358704.697300001978874, 258239.611800000071526 ], [ 358699.923799999058247, 258249.784200001507998 ], [ 358698.068000003695488, 258258.204700000584126 ], [ 358697.332500003278255, 258266.19029999896884 ], [ 358698.410899996757507, 258270.86089999973774 ], [ 358700.812899999320507, 258277.540300000458956 ], [ 358705.397100001573563, 258290.453299999237061 ], [ 358705.701800003647804, 258291.360700000077486 ], [ 358777.017599999904633, 258305.100000001490116 ], [ 358781.295000001788139, 258301.552499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903041300", "MAP": "D9-2867-T84", "PARCEL_NAM": "5", "ACRE": ".28", "LONGITUDE": -64.93117656, "LATITUDE": 18.35347409, "OBJECTID_1": 4919, "PARCEL_NO_": "102903041300", "Tax_Legal_": "ZUFRIEDENHEIT 5 GT. NORTHSIDE", "Name": "SIBILLY, CHRISTOPHER", "Address": "PO BOX 304693", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.53685824199999, "SHAPE_Area": 1342.0915193799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358759.780599996447563, 258244.731199998408556 ], [ 358799.98650000244379, 258216.490299999713898 ], [ 358751.708499997854233, 258204.273899998515844 ], [ 358732.308499999344349, 258209.814699999988079 ], [ 358759.780599996447563, 258244.731199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202060100", "MAP": "D9-7181-T003", "PARCEL_NAM": "2-1", "ACRE": "1.221", "LONGITUDE": -64.95046927, "LATITUDE": 18.34213137, "OBJECTID_1": 8395, "PARCEL_NO_": "105202060100", "Tax_Legal_": "LOWER JOHN DUNKO 2&14 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 397100, "Improved_V": 18457100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.48968054099998, "SHAPE_Area": 5156.9418828600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356765.228100001811981, 256991.457800000905991 ], [ 356784.827799998223782, 256922.25899999961257 ], [ 356694.672700002789497, 256916.943799998611212 ], [ 356690.825599998235703, 256950.820500001311302 ], [ 356690.611599996685982, 256975.938900001347065 ], [ 356693.818899996578693, 256978.076099999248981 ], [ 356738.167900003492832, 256978.228000000119209 ], [ 356743.806699998676777, 256978.907400000840425 ], [ 356754.256399996578693, 256982.792599998414516 ], [ 356761.469999998807907, 256987.917899999767542 ], [ 356765.228100001811981, 256991.457800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702046300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95725614, "LATITUDE": 18.36037892, "OBJECTID_1": 3154, "PARCEL_NO_": "102702046300", "Tax_Legal_": "BONNE RESOLUTION 13-9 LT. NORTHSIDE", "Name": "INDUSTRIOUS, CLACIER", "Address": "PO Box 303392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27700, "Improved_V": 128600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.01204513299999, "SHAPE_Area": 2335.37649921 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355964.689800001680851, 258937.523699998855591 ], [ 355961.675399996340275, 258961.218400001525879 ], [ 356004.2787000015378, 258976.977000001817942 ], [ 355998.384499996900558, 259006.270700000226498 ], [ 356015.437600001692772, 258992.267000000923872 ], [ 356026.85360000282526, 258977.372800000011921 ], [ 356029.322899997234344, 258971.482400000095367 ], [ 356031.855099998414516, 258958.204199999570847 ], [ 356031.968400001525879, 258944.906300000846386 ], [ 355976.34009999781847, 258943.606600001454353 ], [ 355964.689800001680851, 258937.523699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024000", "MAP": "D9-649-T005", "PARCEL_NAM": "10 REM", "ACRE": "6.517", "LONGITUDE": -64.95849431000001, "LATITUDE": 18.35898077, "OBJECTID_1": 2869, "PARCEL_NO_": "102701024000", "Tax_Legal_": "BONNE RESOLUTION 10 LITTLE NORTHSIDE", "Name": "BERRY, MARIE C", "Address": "PO Box 304854", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 462000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 807.06393062200004, "SHAPE_Area": 28283.896817299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355756.562799997627735, 258832.883699998259544 ], [ 355861.524700000882149, 258885.460499998182058 ], [ 355958.67849999666214, 258934.385000001639128 ], [ 355948.076999999582767, 258853.660500001162291 ], [ 355944.306199997663498, 258823.021099999547005 ], [ 355923.886200003325939, 258664.322700001299381 ], [ 355901.111699998378754, 258687.356600001454353 ], [ 355888.882100000977516, 258703.088500000536442 ], [ 355878.315499998629093, 258712.92339999973774 ], [ 355862.916500002145767, 258722.085499998182058 ], [ 355838.656999997794628, 258730.119600001722574 ], [ 355822.457000002264977, 258738.6418999992311 ], [ 355803.785899996757507, 258753.265599999576807 ], [ 355791.583400003612041, 258765.831300001591444 ], [ 355790.759099997580051, 258767.935499999672174 ], [ 355792.362700000405312, 258769.004099998623133 ], [ 355810.146499998867512, 258763.872299998998642 ], [ 355813.330399997532368, 258768.753499999642372 ], [ 355784.231200002133846, 258776.959100000560284 ], [ 355755.1554000005126, 258782.420699998736382 ], [ 355755.670500002801418, 258816.622000001370907 ], [ 355756.562799997627735, 258832.883699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704017000", "MAP": "D9-7987-T007", "PARCEL_NAM": "6-1", "ACRE": ".536", "LONGITUDE": -64.95536691, "LATITUDE": 18.35390844, "OBJECTID_1": 3486, "PARCEL_NO_": "102704017000", "Tax_Legal_": "6-1 ESTATE BONNE RESOLUTION NO.5 LITTLE NORTHSIDE QTR.", "Name": "WEBBE, TERRENCE & KELLY V. THOMPSON", "Address": "Caret Bay 80 E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.337528284, "SHAPE_Area": 1019.33509764 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356191.42230000346899, 258227.089899998158216 ], [ 356189.994699999690056, 258229.129399999976158 ], [ 356188.079499997198582, 258232.959699999541044 ], [ 356188.079499997198582, 258236.790100000798702 ], [ 356189.994699999690056, 258241.386500000953674 ], [ 356218.205399997532368, 258286.340999998152256 ], [ 356218.640500001609325, 258235.259899999946356 ], [ 356210.625900000333786, 258229.494800001382828 ], [ 356201.781700000166893, 258226.467099998146296 ], [ 356197.7483000010252, 258226.645199999213219 ], [ 356191.42230000346899, 258227.089899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104016700", "MAP": "D9-5886-T95", "PARCEL_NAM": "17-5-2", "ACRE": ".58", "LONGITUDE": -64.95719433, "LATITUDE": 18.3671052, "OBJECTID_1": 551, "PARCEL_NO_": "101104016700", "Tax_Legal_": "17-5-2 BONNE RESOLUTION NO. 5 LITTLE NORTHSIDE QTR", "Name": "BRYAN, L. & M., A. BERRY &BALOCCA, M.", "Address": "11284 S Sally Dr", "City": "Yuma", "State": "Arizona", "Zip": 85367, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.23252415799999, "SHAPE_Area": 1861.7316582000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356012.653300002217293, 259697.718899998813868 ], [ 355987.760099999606609, 259685.482799999415874 ], [ 355961.011500000953674, 259701.729200001806021 ], [ 355964.215199999511242, 259704.288499999791384 ], [ 355966.617899999022484, 259706.208099998533726 ], [ 355990.634700000286102, 259726.669599998742342 ], [ 356056.95380000025034, 259712.035700000822544 ], [ 356042.405900001525879, 259707.461599998176098 ], [ 356012.653300002217293, 259697.718899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95666066, "LATITUDE": 18.36691689, "OBJECTID_1": 549, "PARCEL_NO_": "101104016500", "Tax_Legal_": "BONNE RESOLUTION 15-5-1 LITTLE NORTHSIDE", "Name": "OLIVE, STEVEN & VIRGINIA", "Address": "4 ESTATE HULL BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.35957713, "SHAPE_Area": 1259.54223819 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356086.043799996376038, 259696.209800001233816 ], [ 356094.960100002586842, 259691.004299998283386 ], [ 356091.749200001358986, 259689.289200000464916 ], [ 356036.316899999976158, 259664.98200000077486 ], [ 356033.6587999984622, 259693.035700000822544 ], [ 356061.788000002503395, 259704.031700000166893 ], [ 356086.043799996376038, 259696.209800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104010500", "MAP": "D9-7527-T005", "PARCEL_NAM": "17-4", "ACRE": null, "LONGITUDE": -64.95630941, "LATITUDE": 18.36744888, "OBJECTID_1": 497, "PARCEL_NO_": "101104010500", "Tax_Legal_": "BONNE RESOLUTION 17-4&5A No.8 LT. NORTHSIDE", "Name": "QUERRARD, ELIZABETH AGNES", "Address": "PO Box 304101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 140600, "Improved_V": 445900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.51632645500001, "SHAPE_Area": 2907.9222235299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356066.502099998295307, 259715.040500000119209 ], [ 356067.764399997889996, 259720.364000000059605 ], [ 356067.846500001847744, 259720.71000000089407 ], [ 356073.725699998438358, 259745.503899998962879 ], [ 356084.467799998819828, 259750.689699999988079 ], [ 356076.090300001204014, 259789.355200000107288 ], [ 356115.145599998533726, 259782.572999998927116 ], [ 356115.174400001764297, 259779.195700000971556 ], [ 356114.022100001573563, 259725.146299999207258 ], [ 356114.090400002896786, 259717.125300001353025 ], [ 356114.170400001108646, 259707.73369999974966 ], [ 356076.034100003540516, 259713.5793999992311 ], [ 356066.502099998295307, 259715.040500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104010500", "MAP": "D9-7527-T005", "PARCEL_NAM": "17-4", "ACRE": null, "LONGITUDE": -64.95669955, "LATITUDE": 18.36761474, "OBJECTID_1": 497, "PARCEL_NO_": "101104010500", "Tax_Legal_": "BONNE RESOLUTION 17-4&5A No.8 LT. NORTHSIDE", "Name": "QUERRARD, ELIZABETH AGNES", "Address": "PO Box 304101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 140600, "Improved_V": 445900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.499897363, "SHAPE_Area": 3123.5724990899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356076.090300001204014, 259789.355200000107288 ], [ 356084.467799998819828, 259750.689699999988079 ], [ 356073.725699998438358, 259745.503899998962879 ], [ 356067.846500001847744, 259720.71000000089407 ], [ 356067.764399997889996, 259720.364000000059605 ], [ 356066.502099998295307, 259715.040500000119209 ], [ 356060.762100003659725, 259721.239000000059605 ], [ 356032.35080000013113, 259751.920099999755621 ], [ 356029.091300003230572, 259755.904199998825788 ], [ 356025.795999996364117, 259764.1097999997437 ], [ 356022.358499996364117, 259788.990699999034405 ], [ 356022.275799997150898, 259798.700399998575449 ], [ 356076.090300001204014, 259789.355200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104010500", "MAP": "D9-7085-T002", "PARCEL_NAM": "17-4-C", "ACRE": ".466", "LONGITUDE": -64.95705625, "LATITUDE": 18.3675287, "OBJECTID_1": 497, "PARCEL_NO_": "101104010500", "Tax_Legal_": "BONNE RESOLUTION 17-4&5A No.8 LT. NORTHSIDE", "Name": "QUERRARD, ELIZABETH AGNES", "Address": "PO Box 304101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 140600, "Improved_V": 445900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.73160767299998, "SHAPE_Area": 3292.5942774199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356032.35080000013113, 259751.920099999755621 ], [ 356060.762100003659725, 259721.239000000059605 ], [ 356066.502099998295307, 259715.040500000119209 ], [ 355990.634700000286102, 259726.669599998742342 ], [ 355992.065700002014637, 259748.001800000667572 ], [ 355993.266500003635883, 259796.352000001817942 ], [ 355994.002700001001358, 259804.590700000524521 ], [ 356014.198299996554852, 259800.322999998927116 ], [ 356022.275799997150898, 259798.700399998575449 ], [ 356022.358499996364117, 259788.990699999034405 ], [ 356025.795999996364117, 259764.1097999997437 ], [ 356029.091300003230572, 259755.904199998825788 ], [ 356032.35080000013113, 259751.920099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104013900", "MAP": "D9-7085-T002", "PARCEL_NAM": "17-5A-1", "ACRE": null, "LONGITUDE": -64.95679995, "LATITUDE": 18.36718614, "OBJECTID_1": 529, "PARCEL_NO_": "101104013900", "Tax_Legal_": "17-4-A & 17-5-1A ESTATE BONNE RESOLUTION No.5 LITTLE NORTHSIDE QTR.", "Name": "OVERBEEK, BERTRAND & OVERBEEK, DONNA MARIA", "Address": "PO Box 308234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.29398492600001, "SHAPE_Area": 209.11122658100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356066.502099998295307, 259715.040500000119209 ], [ 356072.451200000941753, 259708.616099998354912 ], [ 356056.95380000025034, 259712.035700000822544 ], [ 355990.634700000286102, 259726.669599998742342 ], [ 356066.502099998295307, 259715.040500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104010500", "MAP": "D9-7527-T005", "PARCEL_NAM": "17-5A-2", "ACRE": ".07", "LONGITUDE": -64.95632526, "LATITUDE": 18.36709862, "OBJECTID_1": 497, "PARCEL_NO_": "101104010500", "Tax_Legal_": "BONNE RESOLUTION 17-4&5A No.8 LT. NORTHSIDE", "Name": "QUERRARD, ELIZABETH AGNES", "Address": "PO Box 304101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 140600, "Improved_V": 445900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.115798954, "SHAPE_Area": 305.30261408899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356114.170400001108646, 259707.73369999974966 ], [ 356114.203699998557568, 259703.827399998903275 ], [ 356114.241499997675419, 259699.39469999819994 ], [ 356072.451200000941753, 259708.616099998354912 ], [ 356066.502099998295307, 259715.040500000119209 ], [ 356076.034100003540516, 259713.5793999992311 ], [ 356114.170400001108646, 259707.73369999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012500", "MAP": "G9-1376-T69", "PARCEL_NAM": "7B", "ACRE": ".67", "LONGITUDE": -64.95605649, "LATITUDE": 18.35491961, "OBJECTID_1": 3455, "PARCEL_NO_": "102704012500", "Tax_Legal_": "BONNE RESOLUTION REM. 7 & 7A-A LITTLE NORTHSIDE QTR", "Name": "BRYAN, JENNIFER & MITCHELL, ALICIA E.", "Address": "800 43rd Ave", "City": "Gulfport", "State": "Mississippi", "Zip": 39501, "Country": "United States", "Land_Value": 50100, "Improved_V": 95200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.61363560800001, "SHAPE_Area": 3144.43035057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356114.36879999935627, 258403.115100000053644 ], [ 356175.937399998307228, 258340.858600001782179 ], [ 356162.523000001907349, 258314.717799998819828 ], [ 356086.491899996995926, 258374.456500001251698 ], [ 356114.36879999935627, 258403.115100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704015200", "MAP": "D9-4701-T89", "PARCEL_NAM": "8D-3C", "ACRE": ".5649", "LONGITUDE": -64.95650768, "LATITUDE": 18.35553026, "OBJECTID_1": 3476, "PARCEL_NO_": "102704015200", "Tax_Legal_": "BONNE RESOLUTION 8D-3C LT.NORTHSIDE QTR.", "Name": "STAPLETON, ELMELDA", "Address": "PO Box 6288", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 50800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.742919892, "SHAPE_Area": 1839.65811766 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356074.030000001192093, 258404.055700000375509 ], [ 356075.169100001454353, 258405.682900000363588 ], [ 356063.290600001811981, 258433.345100000500679 ], [ 356049.248099997639656, 258443.626200001686811 ], [ 356060.198899999260902, 258447.664299998432398 ], [ 356069.962099999189377, 258451.406899999827147 ], [ 356076.633500002324581, 258453.034099999815226 ], [ 356080.701499998569489, 258452.871300000697374 ], [ 356084.769500002264977, 258451.569600000977516 ], [ 356088.674699999392033, 258449.128800000995398 ], [ 356091.278200000524521, 258445.71169999986887 ], [ 356093.39360000193119, 258441.155600000172853 ], [ 356095.671599999070168, 258435.460400000214577 ], [ 356102.668499998748302, 258437.413100000470877 ], [ 356114.36879999935627, 258403.115100000053644 ], [ 356074.030000001192093, 258404.055700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704012700", "MAP": "D9-5903-T95", "PARCEL_NAM": "7A-3", "ACRE": ".26", "LONGITUDE": -64.95592339, "LATITUDE": 18.35444668, "OBJECTID_1": 3457, "PARCEL_NO_": "102704012700", "Tax_Legal_": "BONNE RESOLUTION 7A-3 LT NORTHSIDE QTR", "Name": "TURBE, FRANK FERDINAND", "Address": "878 Spirea Dr", "City": "Rockledge", "State": "Florida", "Zip": 32955, "Country": "United States", "Land_Value": 25300, "Improved_V": 146900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.301743371, "SHAPE_Area": 900.85054246899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356155.526199996471405, 258282.065799999982119 ], [ 356136.839500002563, 258296.498599998652935 ], [ 356131.469700001180172, 258303.007399998605251 ], [ 356139.660300001502037, 258332.68129999935627 ], [ 356162.523000001907349, 258314.717799998819828 ], [ 356155.526199996471405, 258282.065799999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012400", "MAP": "D9-5903-T95", "PARCEL_NAM": "7-2", "ACRE": ".02", "LONGITUDE": -64.95638229, "LATITUDE": 18.35460048, "OBJECTID_1": 3454, "PARCEL_NO_": "102704012400", "Tax_Legal_": "7A-REM & 7A-1 BONNE RESOLUTION NO. 5 LITTLE NORTHSIDE QTR", "Name": "URANIE TURBE", "Address": "PO Box 12468", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018468, "Country": "United States", "Land_Value": 32100, "Improved_V": 202600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.537347564100003, "SHAPE_Area": 66.613025876899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356092.339800000190735, 258313.311000000685453 ], [ 356095.508900001645088, 258325.950699999928474 ], [ 356107.858800001442432, 258333.168200001120567 ], [ 356092.339800000190735, 258313.311000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704015700", "MAP": "D9-5903-T95", "PARCEL_NAM": "7A-2", "ACRE": ".25", "LONGITUDE": -64.9561916, "LATITUDE": 18.35457464, "OBJECTID_1": 3481, "PARCEL_NO_": "102704015700", "Tax_Legal_": "7A-2 & 7-2 BONNE RESOLUTION NO.5 LITTLE NORTHSIDE QTR", "Name": "TURBE DUNGAN, SHERRYLYN &JUSTIN CHARLES", "Address": "7907 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25800, "Improved_V": 141000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.62728850799999, "SHAPE_Area": 1183.4407357800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356092.339800000190735, 258313.311000000685453 ], [ 356107.858800001442432, 258333.168200001120567 ], [ 356125.740299999713898, 258343.618400000035763 ], [ 356139.660300001502037, 258332.68129999935627 ], [ 356131.469700001180172, 258303.007399998605251 ], [ 356101.692199997603893, 258307.238099999725819 ], [ 356092.339800000190735, 258313.311000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012400", "MAP": "D9-5903-T95", "PARCEL_NAM": "7A-REM", "ACRE": ".08", "LONGITUDE": -64.95649698, "LATITUDE": 18.35434719, "OBJECTID_1": 3454, "PARCEL_NO_": "102704012400", "Tax_Legal_": "7A-REM & 7A-1 BONNE RESOLUTION NO. 5 LITTLE NORTHSIDE QTR", "Name": "URANIE TURBE", "Address": "PO Box 12468", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018468, "Country": "United States", "Land_Value": 32100, "Improved_V": 202600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.564130941000002, "SHAPE_Area": 438.70126373699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356101.692199997603893, 258307.238099999725819 ], [ 356090.139200001955032, 258287.386399999260902 ], [ 356081.515100002288818, 258282.667500000447035 ], [ 356080.095299996435642, 258280.395799998193979 ], [ 356074.125699996948242, 258282.38569999858737 ], [ 356070.210600003600121, 258284.995799999684095 ], [ 356092.339800000190735, 258313.311000000685453 ], [ 356101.692199997603893, 258307.238099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704012400", "MAP": "D9-5903-T95", "PARCEL_NAM": "7A-1", "ACRE": ".22", "LONGITUDE": -64.95626376, "LATITUDE": 18.35429871, "OBJECTID_1": 3454, "PARCEL_NO_": "102704012400", "Tax_Legal_": "7A-REM & 7A-1 BONNE RESOLUTION NO. 5 LITTLE NORTHSIDE QTR", "Name": "URANIE TURBE", "Address": "PO Box 12468", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018468, "Country": "United States", "Land_Value": 32100, "Improved_V": 202600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.382698186, "SHAPE_Area": 1107.30261475 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356136.839500002563, 258296.498599998652935 ], [ 356126.913599997758865, 258278.762299999594688 ], [ 356118.397600002586842, 258276.057199999690056 ], [ 356115.744699999690056, 258277.914200000464916 ], [ 356109.209499999880791, 258278.258200000971556 ], [ 356101.986299999058247, 258278.258200000971556 ], [ 356090.979699999094009, 258278.258200000971556 ], [ 356082.380699999630451, 258279.63399999961257 ], [ 356080.095299996435642, 258280.395799998193979 ], [ 356081.515100002288818, 258282.667500000447035 ], [ 356090.139200001955032, 258287.386399999260902 ], [ 356101.692199997603893, 258307.238099999725819 ], [ 356131.469700001180172, 258303.007399998605251 ], [ 356136.839500002563, 258296.498599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704015600", "MAP": "D9-5903-T95", "PARCEL_NAM": "6C", "ACRE": ".22", "LONGITUDE": -64.9559886, "LATITUDE": 18.35415544, "OBJECTID_1": 3480, "PARCEL_NO_": "102704015600", "Tax_Legal_": "BONNE RESOLUTION 6C LITTLE NORTHSIDE QUARTER", "Name": "TURBE, THOMAS OMAR", "Address": "6C EATATE BONNE RESOLUTION", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19500, "Improved_V": 116800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.479059904, "SHAPE_Area": 782.21248362899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356118.397600002586842, 258276.057199999690056 ], [ 356126.913599997758865, 258278.762299999594688 ], [ 356136.839500002563, 258296.498599998652935 ], [ 356155.526199996471405, 258282.065799999982119 ], [ 356149.108599998056889, 258252.117400001734495 ], [ 356130.1908999979496, 258267.939399998635054 ], [ 356119.184299997985363, 258275.506499998271465 ], [ 356118.397600002586842, 258276.057199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97079257, "LATITUDE": 18.33248911, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.073017426100002, "SHAPE_Area": 30.637652390100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354597.914599999785423, 255860.069200001657009 ], [ 354588.98759999871254, 255866.7511 ], [ 354593.022799998521805, 255866.361999999731779 ], [ 354597.848099999129772, 255867.879099998623133 ], [ 354597.914599999785423, 255860.069200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "111111111111", "MAP": "D9-1425-T78", "PARCEL_NAM": "95", "ACRE": null, "LONGITUDE": -64.95843519, "LATITUDE": 18.33231834, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.327317833, "SHAPE_Area": 736.316740772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355895.553700000047684, 255837.548099998384714 ], [ 355884.836000002920628, 255865.113600000739098 ], [ 355896.873199999332428, 255871.967099998146296 ], [ 355920.319200001657009, 255864.770700000226498 ], [ 355905.22580000013113, 255838.049400001764297 ], [ 355895.553700000047684, 255837.548099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91851154, "LATITUDE": 18.33223192, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.36956848299999, "SHAPE_Area": 380.58389842499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360138.123499996960163, 255901.191300000995398 ], [ 360130.999799996614456, 255885.512099999934435 ], [ 360123.827500000596046, 255875.532000001519918 ], [ 360117.434500001370907, 255868.724700000137091 ], [ 360107.827100001275539, 255860.624499998986721 ], [ 360101.335199996829033, 255865.426500000059605 ], [ 360110.948100000619888, 255872.893500000238419 ], [ 360121.331200003623962, 255884.588599998503923 ], [ 360126.896300002932549, 255893.922200001776218 ], [ 360130.845100000500679, 255903.664900001138449 ], [ 360138.123499996960163, 255901.191300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-4351-T88", "PARCEL_NAM": "A-1-16", "ACRE": "0.85", "LONGITUDE": -64.91620654, "LATITUDE": 18.33209612, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.21602895799998, "SHAPE_Area": 4727.9518539500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360404.366400003433228, 255874.954599998891354 ], [ 360399.875500001013279, 255834.17680000141263 ], [ 360377.207099996507168, 255844.756999999284744 ], [ 360362.117600001394749, 255827.241999998688698 ], [ 360357.263599999248981, 255829.102099999785423 ], [ 360335.385200001299381, 255841.588700000196695 ], [ 360326.321299999952316, 255854.684099998325109 ], [ 360322.208800002932549, 255864.149700000882149 ], [ 360320.538599997758865, 255870.890999998897314 ], [ 360320.39299999922514, 255887.988400001078844 ], [ 360401.683100000023842, 255905.96339999884367 ], [ 360404.366400003433228, 255874.954599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "111111111111", "MAP": "D9-1425-T78", "PARCEL_NAM": "95A", "ACRE": null, "LONGITUDE": -64.95822339, "LATITUDE": 18.33225714, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.970663236500002, "SHAPE_Area": 582.27864882599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355920.319200001657009, 255864.770700000226498 ], [ 355938.106600001454353, 255859.21680000051856 ], [ 355935.856700003147125, 255839.355599999427795 ], [ 355905.22580000013113, 255838.049400001764297 ], [ 355920.319200001657009, 255864.770700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91658669, "LATITUDE": 18.33151342, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 366.36995471, "SHAPE_Area": 1109.6694052299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360316.795100003480911, 255846.713899999856949 ], [ 360314.383400000631809, 255845.849800001829863 ], [ 360314.401299998164177, 255843.739000000059605 ], [ 360317.678700000047684, 255837.644099999219179 ], [ 360328.270499996840954, 255824.854100000113249 ], [ 360348.73759999871254, 255788.713500000536442 ], [ 360351.181699998676777, 255785.778200000524521 ], [ 360354.541799999773502, 255769.973700001835823 ], [ 360353.7787000015378, 255764.901200000196695 ], [ 360351.381300002336502, 255762.348400000482798 ], [ 360336.892800003290176, 255759.274500001221895 ], [ 360325.602700002491474, 255759.393199998885393 ], [ 360320.797200001776218, 255755.554200001060963 ], [ 360314.337700001895428, 255756.556800000369549 ], [ 360314.307099997997284, 255760.145100001245737 ], [ 360302.966600000858307, 255766.1739999987185 ], [ 360305.335199996829033, 255772.103999998420477 ], [ 360312.629699997603893, 255767.730799999088049 ], [ 360323.943300001323223, 255764.868099998682737 ], [ 360335.229900002479553, 255765.171500001102686 ], [ 360346.496699996292591, 255767.796900000423193 ], [ 360347.238200001418591, 255775.402300000190735 ], [ 360345.573499999940395, 255781.510400000959635 ], [ 360334.927799999713898, 255800.632800001651049 ], [ 360331.637800000607967, 255808.205200001597404 ], [ 360326.742399998009205, 255814.920200001448393 ], [ 360325.916299998760223, 255817.235399998724461 ], [ 360303.076999999582767, 255847.868099998682737 ], [ 360291.603399999439716, 255869.5168999992311 ], [ 360291.545900002121925, 255876.27140000090003 ], [ 360300.528599999845028, 255863.046000000089407 ], [ 360316.795100003480911, 255846.713899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9189634, "LATITUDE": 18.33183059, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.211586117, "SHAPE_Area": 622.53344326700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360107.827100001275539, 255860.624499998986721 ], [ 360080.597699999809265, 255838.659000001847744 ], [ 360054.2212999984622, 255811.212000001221895 ], [ 360048.605899997055531, 255807.788600001484156 ], [ 360042.160800002515316, 255807.102600000798702 ], [ 360043.708700001239777, 255814.714600000530481 ], [ 360048.532200001180172, 255816.442800000309944 ], [ 360078.911300003528595, 255847.300000000745058 ], [ 360101.335199996829033, 255865.426500000059605 ], [ 360107.827100001275539, 255860.624499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "CROWN BAY DOCK", "ACRE": null, "LONGITUDE": -64.95357114, "LATITUDE": 18.33150271, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 748.00591083300003, "SHAPE_Area": 15811.4119257 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356588.988300003111362, 255770.874099999666214 ], [ 356527.936200000345707, 255772.913800001144409 ], [ 356527.754100002348423, 255742.030699998140335 ], [ 356257.190200001001358, 255739.255399998277426 ], [ 356281.55179999768734, 255772.524099998176098 ], [ 356297.485699996352196, 255795.241500001400709 ], [ 356308.860399998724461, 255799.555799998342991 ], [ 356586.270700000226498, 255796.012299999594688 ], [ 356590.676600001752377, 255791.026999998837709 ], [ 356588.988300003111362, 255770.874099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96009452, "LATITUDE": 18.33143753, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.165799988, "SHAPE_Area": 417.63311406899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355732.952799998223782, 255777.347899999469519 ], [ 355731.036399997770786, 255745.009199999272823 ], [ 355729.506499998271465, 255735.286299999803305 ], [ 355719.834399998188019, 255734.785000000149012 ], [ 355722.138199999928474, 255748.313799999654293 ], [ 355723.468500003218651, 255781.466400001198053 ], [ 355732.952799998223782, 255777.347899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9207465, "LATITUDE": 18.3307353, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.199410537399999, "SHAPE_Area": 109.443288499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359903.411399997770786, 255718.785300001502037 ], [ 359886.541799999773502, 255711.25899999961257 ], [ 359869.652400001883507, 255706.054499998688698 ], [ 359868.822700001299381, 255708.791900001466274 ], [ 359883.298600003123283, 255713.343400001525879 ], [ 359903.384400002658367, 255721.951499998569489 ], [ 359903.411399997770786, 255718.785300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9581456, "LATITUDE": 18.32989635, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1122.9897502900001, "SHAPE_Area": 3390.1039900300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356033.163000002503395, 255586.417500000447035 ], [ 356020.314099997282028, 255580.190699998289347 ], [ 355982.500200003385544, 255570.170899998396635 ], [ 355978.483000002801418, 255568.449200000613928 ], [ 355970.470200002193451, 255562.473000001162291 ], [ 355969.680100001394749, 255560.566700000315905 ], [ 355964.086300000548363, 255554.610300000756979 ], [ 355952.884199999272823, 255544.386199999600649 ], [ 355944.063299998641014, 255538.614399999380112 ], [ 355910.343800000846386, 255521.239900000393391 ], [ 355899.0878000035882, 255517.348099999129772 ], [ 355892.640900000929832, 255516.873100001364946 ], [ 355880.551600001752377, 255516.140900000929832 ], [ 355858.755999997258186, 255518.91780000180006 ], [ 355847.428099997341633, 255523.469200000166893 ], [ 355836.875900000333786, 255531.615499999374151 ], [ 355842.491300001740456, 255535.038899999111891 ], [ 355848.988600000739098, 255529.603700000792742 ], [ 355853.847999997437, 255527.110300000756979 ], [ 355862.742600001394749, 255524.227800000458956 ], [ 355882.920199997723103, 255522.070900000631809 ], [ 355896.616700001060963, 255523.449599999934435 ], [ 355909.483599998056889, 255527.565699998289347 ], [ 355943.199500001966953, 255545.362399999052286 ], [ 355959.2195999994874, 255557.947999998927116 ], [ 355969.602799996733665, 255569.643100000917912 ], [ 355978.425499998033047, 255575.20380000025034 ], [ 356018.651199996471405, 255586.087699998170137 ], [ 356026.665700003504753, 255591.852800000458956 ], [ 356025.828900001943111, 255595.434500001370907 ], [ 356023.408100001513958, 255595.625799998641014 ], [ 356001.684399999678135, 255589.959600001573563 ], [ 355975.905799999833107, 255587.004399999976158 ], [ 355963.836300000548363, 255583.950300000607967 ], [ 355922.055500000715256, 255566.298700001090765 ], [ 355912.397699996829033, 255564.10869999974966 ], [ 355901.111199997365475, 255563.80519999936223 ], [ 355893.026500001549721, 255566.272199999541044 ], [ 355888.975100003182888, 255568.561000000685453 ], [ 355880.024800002574921, 255577.986999999731779 ], [ 355875.0574000030756, 255593.145100001245737 ], [ 355874.098300002515316, 255611.080200001597404 ], [ 355875.56700000166893, 255627.979699999094009 ], [ 355880.250299997627735, 255646.172100000083447 ], [ 355885.78660000115633, 255658.883000001311302 ], [ 355894.558899998664856, 255670.353799998760223 ], [ 355902.582500003278255, 255675.0636 ], [ 355910.629399999976158, 255677.02930000051856 ], [ 355918.687100000679493, 255677.728500001132488 ], [ 355931.60249999910593, 255676.145500000566244 ], [ 355940.495300002396107, 255673.473999999463558 ], [ 355947.784500002861023, 255669.734000001102686 ], [ 355958.338500000536442, 255661.376600001007318 ], [ 355960.784400001168251, 255658.230200000107288 ], [ 355962.44200000166893, 255652.966499999165535 ], [ 355963.325599998235703, 255643.896699998527765 ], [ 355962.54450000077486, 255640.934999998658895 ], [ 355955.192400000989437, 255652.062800001353025 ], [ 355955.978900000452995, 255654.391199998557568 ], [ 355951.927599996328354, 255656.680100001394749 ], [ 355949.474500000476837, 255660.670800000429153 ], [ 355944.605999998748302, 255664.219500001519918 ], [ 355935.69879999756813, 255668.579599998891354 ], [ 355926.807800002396107, 255671.03999999910593 ], [ 355912.294200003147125, 255670.92119999974966 ], [ 355901.034599997103214, 255667.451499998569489 ], [ 355895.433499999344349, 255662.339400000870228 ], [ 355893.050599999725819, 255658.098099999129772 ], [ 355891.448700003325939, 255656.818399999290705 ], [ 355884.32320000231266, 255641.35020000115037 ], [ 355880.476800002157688, 255619.576099999248981 ], [ 355879.825199998915195, 255601.416700001806021 ], [ 355883.181699998676777, 255586.034400001168251 ], [ 355886.462700001895428, 255579.517299998551607 ], [ 355892.967100001871586, 255573.237799998372793 ], [ 355897.016699999570847, 255571.160000000149012 ], [ 355903.479800000786781, 255569.735199999064207 ], [ 355913.954599998891354, 255570.665300000458956 ], [ 355922.001599997282028, 255572.631000000983477 ], [ 355957.349799998104572, 255588.119100000709295 ], [ 355971.825699999928474, 255592.670499999076128 ], [ 356006.462999999523163, 255596.964800000190735 ], [ 356025.767700001597404, 255602.611200001090765 ], [ 356033.047899998724461, 255599.926600001752377 ], [ 356034.737899996340275, 255590.863400001078844 ], [ 356033.163000002503395, 255586.417500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95795015, "LATITUDE": 18.33049113, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 12.7657709937, "SHAPE_Area": 5.6166333846400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355951.927599996328354, 255656.680100001394749 ], [ 355955.978900000452995, 255654.391199998557568 ], [ 355955.192400000989437, 255652.062800001353025 ], [ 355951.927599996328354, 255656.680100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92075207000001, "LATITUDE": 18.33034635, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.89608386500001, "SHAPE_Area": 286.11925619499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359875.636399999260902, 255666.206799998879433 ], [ 359908.662900000810623, 255670.276799999177456 ], [ 359929.556900002062321, 255678.680399999022484 ], [ 359930.388400003314018, 255675.731899999082088 ], [ 359927.976599998772144, 255674.867800001055002 ], [ 359927.188299998641014, 255672.750399999320507 ], [ 359924.776500001549721, 255671.886300001293421 ], [ 359921.545900002121925, 255672.493200000375509 ], [ 359908.688100002706051, 255667.321699999272823 ], [ 359876.4679000005126, 255663.258299998939037 ], [ 359868.413800001144409, 255662.136900000274181 ], [ 359864.369599997997284, 255663.581500001251698 ], [ 359861.113799996674061, 255667.143399998545647 ], [ 359860.276900000870228, 255670.725099999457598 ], [ 359857.829199999570847, 255674.082600001245737 ], [ 359844.86710000038147, 255681.1537000015378 ], [ 359844.838299997150898, 255684.530999999493361 ], [ 359856.988799996674061, 255678.086500000208616 ], [ 359862.683300003409386, 255672.222500000149012 ], [ 359864.335500001907349, 255667.592000000178814 ], [ 359868.386799998581409, 255665.303100001066923 ], [ 359875.636399999260902, 255666.206799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91723758000001, "LATITUDE": 18.32981344, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.14966849300001, "SHAPE_Area": 427.47639107999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360254.634900003671646, 255570.939100001007318 ], [ 360253.027699999511242, 255570.292700000107288 ], [ 360249.81139999628067, 255569.210900001227856 ], [ 360257.398100003600121, 255625.212799999862909 ], [ 360261.95719999819994, 255657.9695999994874 ], [ 360266.782499998807907, 255659.486699998378754 ], [ 360261.489000000059605, 255618.280200000852346 ], [ 360254.634900003671646, 255570.939100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91618898, "LATITUDE": 18.32981898, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.337826116, "SHAPE_Area": 514.02618570599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360393.83389999717474, 255606.486600000411272 ], [ 360368.05349999666214, 255603.742499999701977 ], [ 360365.604000002145767, 255607.311099998652935 ], [ 360347.665500000119209, 255630.595600001513958 ], [ 360360.571900002658367, 255630.067999999970198 ], [ 360393.83389999717474, 255606.486600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91340133, "LATITUDE": 18.32936173, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.037961056, "SHAPE_Area": 573.76630073900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360655.049599997699261, 255517.432199999690056 ], [ 360656.606499999761581, 255523.988800000399351 ], [ 360654.895000003278255, 255535.584899999201298 ], [ 360668.773900002241135, 255610.214499998837709 ], [ 360671.970299996435642, 255613.618200000375509 ], [ 360675.98929999768734, 255615.128800000995398 ], [ 360674.441399998962879, 255607.516699999570847 ], [ 360658.276699997484684, 255517.247499998658895 ], [ 360655.049599997699261, 255517.432199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91302749, "LATITUDE": 18.32955554, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.99785148300001, "SHAPE_Area": 462.36785467499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360735.22410000115633, 255571.7060999982059 ], [ 360732.040299996733665, 255566.82490000128746 ], [ 360715.854699999094009, 255573.658500000834465 ], [ 360712.634800001978874, 255572.9989 ], [ 360710.203299999237061, 255574.456599999219179 ], [ 360710.185300000011921, 255576.567400000989437 ], [ 360693.909800000488758, 255593.954999998211861 ], [ 360680.074799999594688, 255608.8293999992311 ], [ 360677.652300000190735, 255609.231699999421835 ], [ 360674.441399998962879, 255607.516699999570847 ], [ 360675.98929999768734, 255615.128800000995398 ], [ 360684.066799998283386, 255613.506099998950958 ], [ 360712.548500001430511, 255583.130699999630451 ], [ 360717.416900001466274, 255579.581900000572205 ], [ 360735.22410000115633, 255571.7060999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91293494, "LATITUDE": 18.32916162, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.877271656, "SHAPE_Area": 2138.5743785300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360742.932300001382828, 255518.784699998795986 ], [ 360698.608499996364117, 255515.677700001746416 ], [ 360696.614600002765656, 255560.413199998438358 ], [ 360693.909800000488758, 255593.954999998211861 ], [ 360710.185300000011921, 255576.567400000989437 ], [ 360710.203299999237061, 255574.456599999219179 ], [ 360712.634800001978874, 255572.9989 ], [ 360715.854699999094009, 255573.658500000834465 ], [ 360732.040299996733665, 255566.82490000128746 ], [ 360729.657300002872944, 255562.583500001579523 ], [ 360724.034699998795986, 255560.004399999976158 ], [ 360742.932300001382828, 255518.784699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91605275000001, "LATITUDE": 18.32930646, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.21992283, "SHAPE_Area": 133.69786457800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360359.412399999797344, 255576.862900000065565 ], [ 360373.180900000035763, 255569.79839999973774 ], [ 360397.530299998819828, 255551.210400000214577 ], [ 360401.594200000166893, 255547.443999998271465 ], [ 360402.43469999730587, 255543.440099999308586 ], [ 360359.412399999797344, 255576.862900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91272056, "LATITUDE": 18.32910648, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.596953887, "SHAPE_Area": 284.58639706899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360729.657300002872944, 255562.583500001579523 ], [ 360749.379199996590614, 255519.259700000286102 ], [ 360742.932300001382828, 255518.784699998795986 ], [ 360724.034699998795986, 255560.004399999976158 ], [ 360729.657300002872944, 255562.583500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91875114, "LATITUDE": 18.32906982, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.280043264, "SHAPE_Area": 158.550802135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360112.124399997293949, 255545.497000001370907 ], [ 360116.186599999666214, 255541.941599998623133 ], [ 360068.92339999973774, 255505.246700000017881 ], [ 360112.124399997293949, 255545.497000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92317113, "LATITUDE": 18.32871114, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.753092264, "SHAPE_Area": 398.1983518 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359627.697899997234344, 255521.900499999523163 ], [ 359631.808499999344349, 255512.646000001579523 ], [ 359638.668999999761581, 255464.572799999266863 ], [ 359639.487899996340275, 255463.10190000012517 ], [ 359638.748199999332428, 255455.285300001502037 ], [ 359632.286899998784065, 255456.499000001698732 ], [ 359632.180799998342991, 255468.9527000002563 ], [ 359625.36879999935627, 255511.326699998229742 ], [ 359625.298699997365475, 255519.558800000697374 ], [ 359627.697899997234344, 255521.900499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91555407, "LATITUDE": 18.3289277, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.831100085899998, "SHAPE_Area": 44.849233924399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360442.210100002586842, 255512.523800000548363 ], [ 360422.727300003170967, 255527.774099998176098 ], [ 360444.609300002455711, 255514.86540000140667 ], [ 360445.435400001704693, 255512.550200000405312 ], [ 360442.210100002586842, 255512.523800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94447123, "LATITUDE": 18.32810906, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 387.38463626200001, "SHAPE_Area": 8237.6979430899992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357333.700400002300739, 255412.988200001418591 ], [ 357409.778599999845028, 255474.828000001609325 ], [ 357409.830799996852875, 255468.706799998879433 ], [ 357412.377400003373623, 255453.739999998360872 ], [ 357422.286899998784065, 255426.378899998962879 ], [ 357428.863300003111362, 255411.656199999153614 ], [ 357433.773100003600121, 255403.252599999308586 ], [ 357437.847800001502037, 255398.219700001180172 ], [ 357446.742399998009205, 255395.337200000882149 ], [ 357452.384800001978874, 255395.594500001519918 ], [ 357433.94030000269413, 255383.622299998998642 ], [ 357423.505000002682209, 255378.04839999973774 ], [ 357387.343199998140335, 255363.39809999987483 ], [ 357365.707599997520447, 255347.388999998569489 ], [ 357357.6570999994874, 255345.845499999821186 ], [ 357350.378700003027916, 255348.318999998271465 ], [ 357341.457099996507168, 255354.36769999936223 ], [ 357335.753600001335144, 255361.287099998444319 ], [ 357329.195200003683567, 255373.899099998176098 ], [ 357325.764899998903275, 255397.935699999332428 ], [ 357328.101199999451637, 255407.665100000798702 ], [ 357333.700400002300739, 255412.988200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9314295, "LATITUDE": 18.32663758, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1115.6618122499999, "SHAPE_Area": 4893.7289935600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358617.20380000025034, 255156.670899998396635 ], [ 358608.341600000858307, 255155.753899998962879 ], [ 358613.715999998152256, 255187.462000001221895 ], [ 358619.272100001573563, 255197.850999999791384 ], [ 358624.864200003445148, 255204.018500000238419 ], [ 358635.274300001561642, 255212.547400001436472 ], [ 358648.907899998128414, 255221.313900001347065 ], [ 358673.822599999606609, 255231.017000000923872 ], [ 358702.790600001811981, 255238.220199998468161 ], [ 358730.163800001144409, 255243.299400001764297 ], [ 358743.869300000369549, 255243.622600000351667 ], [ 358755.989200003445148, 255240.766499999910593 ], [ 358778.661200001835823, 255229.76410000026226 ], [ 358784.316200003027916, 255228.543800000101328 ], [ 358801.250600002706051, 255228.4712999984622 ], [ 358813.359700001776218, 255226.881700001657009 ], [ 358853.784999996423721, 255214.335900001227856 ], [ 358859.423799999058247, 255215.015299998223782 ], [ 358852.806000001728535, 255234.592799998819828 ], [ 358840.524300001561642, 255256.445999998599291 ], [ 358826.604800000786781, 255281.241200000047684 ], [ 358821.734600000083447, 255285.000999998301268 ], [ 358778.710500001907349, 255318.634899999946356 ], [ 358741.326999999582767, 255352.737199999392033 ], [ 358731.543399997055531, 255365.322700001299381 ], [ 358733.856200002133846, 255377.79619999974966 ], [ 358738.641999997198582, 255383.957100000232458 ], [ 358745.054700002074242, 255388.442499998956919 ], [ 358753.094499997794628, 255391.252500001341105 ], [ 358740.274400003254414, 255381.648400001227856 ], [ 358738.753499999642372, 255370.870200000703335 ], [ 358747.725400000810623, 255358.911299999803305 ], [ 358757.476700000464916, 255350.125100001692772 ], [ 358762.350500002503395, 255345.943199999630451 ], [ 358785.101700000464916, 255325.653299998492002 ], [ 358833.813100002706051, 255286.999699998646975 ], [ 358860.838600002229214, 255238.24720000103116 ], [ 358878.130800001323223, 255196.170000001788139 ], [ 358870.895599998533726, 255193.577599998563528 ], [ 358866.77589999884367, 255203.887499999254942 ], [ 358864.340800002217293, 255205.767400000244379 ], [ 358861.111900001764297, 255206.163199998438358 ], [ 358857.89919999986887, 255204.659200001507998 ], [ 358853.867700003087521, 255204.626200001686811 ], [ 358811.019799999892712, 255217.574400000274181 ], [ 358799.715300001204014, 255219.381799999624491 ], [ 358782.779100000858307, 255219.665300000458956 ], [ 358774.699799999594688, 255221.499000001698732 ], [ 358747.985399998724461, 255233.734900001436472 ], [ 358742.330399997532368, 255234.955200001597404 ], [ 358735.879900000989437, 255234.902399998158216 ], [ 358711.7246999964118, 255230.693900000303984 ], [ 358683.555900000035763, 255224.341699998825788 ], [ 358671.493600003421307, 255220.443300001323223 ], [ 358650.603200003504753, 255211.617400001734495 ], [ 358634.574100002646446, 255200.087200000882149 ], [ 358629.770400002598763, 255196.037099998444319 ], [ 358625.780199997127056, 255191.149300001561642 ], [ 358621.83669999986887, 255180.773400001227856 ], [ 358617.20380000025034, 255156.670899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94793853, "LATITUDE": 18.32716916, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 683.08856282800002, "SHAPE_Area": 8221.1020685000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356901.906400002539158, 255269.076999999582767 ], [ 356879.113899998366833, 255294.221700001507998 ], [ 356889.547399997711182, 255300.006599999964237 ], [ 356914.489100001752377, 255306.543499998748302 ], [ 356923.318999998271465, 255311.259899999946356 ], [ 356925.739699997007847, 255311.068599998950958 ], [ 356930.626199997961521, 255305.409099999815226 ], [ 356933.055900000035763, 255304.162399999797344 ], [ 356942.735200002789497, 255303.819400001317263 ], [ 356950.818099997937679, 255301.563499998301268 ], [ 356954.038000002503395, 255302.223200000822544 ], [ 356966.888599999248981, 255308.239000000059605 ], [ 356969.307599999010563, 255308.258799999952316 ], [ 356974.973300002515316, 255305.771999999880791 ], [ 356990.26630000025034, 255309.0636 ], [ 356994.281700000166893, 255310.996300000697374 ], [ 356988.445100001990795, 255333.535500001162291 ], [ 356982.0, 255332.849500000476837 ], [ 356981.969400003552437, 255336.437800001353025 ], [ 356991.636200003325939, 255337.572399999946356 ], [ 356999.094400003552437, 255313.99100000038743 ], [ 357015.931599996984005, 255325.316799998283386 ], [ 357022.340800002217293, 255330.224399998784065 ], [ 357032.69879999756813, 255344.874600000679493 ], [ 357100.853399999439716, 255295.61430000141263 ], [ 357093.164300002157688, 255251.643899999558926 ], [ 357007.463200002908707, 255278.173599999397993 ], [ 357005.757100000977516, 255289.136500000953674 ], [ 357000.741200000047684, 255309.993700001388788 ], [ 356995.105999998748302, 255308.892099998891354 ], [ 356997.618400000035763, 255297.9358000010252 ], [ 356995.249799996614456, 255292.005800001323223 ], [ 356991.266800001263618, 255286.273699998855591 ], [ 356984.863099999725819, 255280.732799999415874 ], [ 356979.235100001096725, 255278.786899998784065 ], [ 356969.568300001323223, 255277.652300000190735 ], [ 356958.278099998831749, 255277.771000001579523 ], [ 356946.969999998807907, 255280.000500001013279 ], [ 356933.156599998474121, 255292.342000000178814 ], [ 356928.304300002753735, 255293.99100000038743 ], [ 356928.275600001215935, 255297.368299998342991 ], [ 356924.996399998664856, 255303.674199998378754 ], [ 356920.990000002086163, 255300.686099998652935 ], [ 356924.272799998521805, 255293.958000000566244 ], [ 356921.05290000140667, 255293.29839999973774 ], [ 356916.24379999935627, 255289.881499998271465 ], [ 356905.927199997007847, 255270.376499999314547 ], [ 356901.906400002539158, 255269.076999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9499017, "LATITUDE": 18.32516445, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 780.52394208700002, "SHAPE_Area": 10877.621886200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356843.654600001871586, 255214.44990000128746 ], [ 356841.957999996840954, 255206.947000000625849 ], [ 356841.247000001370907, 255195.753299999982119 ], [ 356842.935199998319149, 255186.901099998503923 ], [ 356872.622400000691414, 255109.672800000756979 ], [ 356878.59740000218153, 255070.880499999970198 ], [ 356879.509800001978874, 255058.433400001376867 ], [ 356877.191600002348423, 255046.593199998140335 ], [ 356874.806800000369549, 255042.562899999320507 ], [ 356870.001299999654293, 255038.723900001496077 ], [ 356865.175999999046326, 255037.206700000911951 ], [ 356826.476599998772144, 255036.467799998819828 ], [ 356815.202600002288818, 255034.686799999326468 ], [ 356798.316799998283386, 255029.060199998319149 ], [ 356785.469800002872944, 255022.62220000103116 ], [ 356686.818400003015995, 254960.175500001758337 ], [ 356682.817400000989437, 254956.554099999368191 ], [ 356668.030500002205372, 254988.519299998879433 ], [ 356673.674599997699261, 254988.565499998629093 ], [ 356684.939599998295307, 254991.401900000870228 ], [ 356700.999399997293949, 254999.343899998813868 ], [ 356711.427500002086163, 255005.761999998241663 ], [ 356730.721400000154972, 255012.674899999052286 ], [ 356757.203900001943111, 255027.668200001120567 ], [ 356765.245399996638298, 255030.267099998891354 ], [ 356786.114200003445148, 255041.625900000333786 ], [ 356798.131599999964237, 255050.801300000399351 ], [ 356804.504799999296665, 255059.930500000715256 ], [ 356806.088600002229214, 255063.320900000631809 ], [ 356807.638300001621246, 255070.721900001168251 ], [ 356814.002499997615814, 255080.906500000506639 ], [ 356816.376500003039837, 255086.203200001269579 ], [ 356819.569399997591972, 255090.029100000858307 ], [ 356821.943400003015995, 255095.325800001621246 ], [ 356822.564499996602535, 255117.073499999940395 ], [ 356824.871899999678135, 255130.18019999936223 ], [ 356826.443199999630451, 255135.048200000077486 ], [ 356832.042400002479553, 255140.371399998664856 ], [ 356833.633500002324581, 255142.917500000447035 ], [ 356833.611900001764297, 255145.450500000268221 ], [ 356831.164200000464916, 255148.80799999833107 ], [ 356831.061700001358986, 255160.839499998837709 ], [ 356828.55460000038147, 255171.162500001490116 ], [ 356828.380199998617172, 255191.637200001627207 ], [ 356825.027300000190735, 255206.59739999845624 ], [ 356822.565200001001358, 255211.643500000238419 ], [ 356823.310400001704693, 255218.826699998229742 ], [ 356828.334799997508526, 255223.708500001579523 ], [ 356843.654600001871586, 255214.44990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9635269, "LATITUDE": 18.32666263, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 551.97935421399995, "SHAPE_Area": 2410.3939927000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355289.8766999989748, 255186.011300001293421 ], [ 355277.670500002801418, 255198.999200001358986 ], [ 355280.089400000870228, 255199.019000001251698 ], [ 355286.55969999730587, 255196.75 ], [ 355313.223800003528595, 255190.424300000071526 ], [ 355342.267200000584126, 255188.762200001627207 ], [ 355350.3158999979496, 255190.516800001263618 ], [ 355355.934900000691414, 255193.518100000917912 ], [ 355362.335100002586842, 255199.481100000441074 ], [ 355376.670699998736382, 255220.496700000017881 ], [ 355378.240199998021126, 255225.575800001621246 ], [ 355379.825800001621246, 255228.755100000649691 ], [ 355384.595399998128414, 255236.815699998289347 ], [ 355393.382100000977516, 255246.598000001162291 ], [ 355403.799400001764297, 255254.282600000500679 ], [ 355402.94990000128746, 255259.341899998486042 ], [ 355399.703100003302097, 255261.848400000482798 ], [ 355388.418300002813339, 255261.33390000090003 ], [ 355379.566899999976158, 255259.150499999523163 ], [ 355369.932499997317791, 255254.216499999165535 ], [ 355362.697300001978874, 255251.624200001358986 ], [ 355344.177199997007847, 255248.517299998551607 ], [ 355344.099899999797344, 255257.593699999153614 ], [ 355352.157700002193451, 255258.292899999767542 ], [ 355361.81360000371933, 255260.693900000303984 ], [ 355378.679700002074242, 255268.642400000244379 ], [ 355385.920299999415874, 255270.601500000804663 ], [ 355393.976199999451637, 255271.511900000274181 ], [ 355400.430299997329712, 255271.142499998211861 ], [ 355406.094300001859665, 255268.866799999028444 ], [ 355409.346500001847744, 255265.727000001817942 ], [ 355412.638300001621246, 255257.943500000983477 ], [ 355420.694200001657009, 255258.853799998760223 ], [ 355428.771700002253056, 255257.231199998408556 ], [ 355436.870800003409386, 255253.075599998235703 ], [ 355441.742899999022484, 255249.104699999094009 ], [ 355435.348099999129772, 255242.508499998599291 ], [ 355431.284199997782707, 255246.274900000542402 ], [ 355423.194099999964237, 255249.375100001692772 ], [ 355418.35980000346899, 255248.91330000013113 ], [ 355411.914700001478195, 255248.227299999445677 ], [ 355407.902900002896786, 255245.872400000691414 ], [ 355401.486599996685982, 255241.809099998325109 ], [ 355395.88910000026226, 255236.274900000542402 ], [ 355390.307899996638298, 255228.840900000184774 ], [ 355386.357199996709824, 255219.309399999678135 ], [ 355384.755400002002716, 255218.029699999839067 ], [ 355378.409199997782707, 255205.734299998730421 ], [ 355368.043999999761581, 255191.928399998694658 ], [ 355360.839400000870228, 255185.747800000011921 ], [ 355354.415799997746944, 255182.528799999505281 ], [ 355346.370700001716614, 255180.352000001817942 ], [ 355323.795699998736382, 255179.9560999982059 ], [ 355307.649700000882149, 255182.146000001579523 ], [ 355289.8766999989748, 255186.011300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94765756, "LATITUDE": 18.32662752, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.14362983799998, "SHAPE_Area": 4637.4713734099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357007.463200002908707, 255278.173599999397993 ], [ 357093.164300002157688, 255251.643899999558926 ], [ 357090.822700001299381, 255242.547699999064207 ], [ 357085.291799999773502, 255229.203600000590086 ], [ 357074.95719999819994, 255211.809300001710653 ], [ 357068.556999996304512, 255205.8462999984622 ], [ 357062.954199999570847, 255200.945300001651049 ], [ 357057.331600002944469, 255198.366200000047684 ], [ 357050.090999998152256, 255196.4070999994874 ], [ 357040.417000003159046, 255196.116799999028444 ], [ 357032.339500002563, 255197.739399999380112 ], [ 357028.29169999808073, 255199.606199998408556 ], [ 357020.975599996745586, 255206.51240000128746 ], [ 357016.893700003623962, 255212.389600001275539 ], [ 357013.603699997067451, 255219.962000001221895 ], [ 357011.926299996674061, 255227.547699999064207 ], [ 357010.922200001776218, 255250.759700000286102 ], [ 357007.463200002908707, 255278.173599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94883694000001, "LATITUDE": 18.32658898, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.658756001, "SHAPE_Area": 626.53265092799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356917.379199996590614, 255251.26069999858737 ], [ 356924.70610000193119, 255243.087999999523163 ], [ 356937.822899997234344, 255217.864100001752377 ], [ 356932.200300000607967, 255215.285000000149012 ], [ 356924.94709999859333, 255214.803399998694658 ], [ 356916.858800001442432, 255217.692499998956919 ], [ 356912.798500001430511, 255221.036800000816584 ], [ 356910.348899997770786, 255224.605399999767542 ], [ 356908.704000003635883, 255228.391600001603365 ], [ 356909.420400001108646, 255238.952100001275539 ], [ 356911.787100002169609, 255245.093199998140335 ], [ 356917.379199996590614, 255251.26069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94723063000001, "LATITUDE": 18.32585474, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 345.79622764300001, "SHAPE_Area": 4874.1446227400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357112.179899998009205, 255101.923099998384714 ], [ 357028.068000003695488, 255131.21000000089407 ], [ 357059.40089999884367, 255144.765299998223782 ], [ 357066.614600002765656, 255149.890599999576807 ], [ 357069.805699996650219, 255153.927499998360872 ], [ 357083.309799998998642, 255177.891600001603365 ], [ 357084.103500001132488, 255179.375799998641014 ], [ 357084.89190000295639, 255181.493200000375509 ], [ 357088.050599999725819, 255189.329500000923872 ], [ 357092.733800001442432, 255207.521899998188019 ], [ 357093.441200003027916, 255219.137800000607967 ], [ 357095.806199997663498, 255225.489999998360872 ], [ 357098.230499997735023, 255224.876499999314547 ], [ 357114.658900000154972, 255189.5472999997437 ], [ 357118.803700000047684, 255176.282299999147654 ], [ 357121.343099996447563, 255162.159800000488758 ], [ 357122.347300000488758, 255138.947700001299381 ], [ 357120.784999996423721, 255133.024300001561642 ], [ 357117.705399997532368, 255115.900499999523163 ], [ 357112.179899998009205, 255101.923099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94778649, "LATITUDE": 18.3260329, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.3958491, "SHAPE_Area": 4215.2724059399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356981.111299999058247, 255153.20160000026226 ], [ 357014.541299998760223, 255204.559900000691414 ], [ 357016.996200002729893, 255200.3581000007689 ], [ 357026.734899997711182, 255193.049499999731779 ], [ 357037.245700001716614, 255189.758000001311302 ], [ 357050.143100000917912, 255190.285799998790026 ], [ 357058.188199996948242, 255192.462600000202656 ], [ 357067.023500002920628, 255196.545699998736382 ], [ 357072.633500002324581, 255200.602400001138449 ], [ 357082.212200000882149, 255212.079799998551607 ], [ 357085.440999999642372, 255211.684000000357628 ], [ 357086.294100001454353, 255206.202599998563528 ], [ 357082.386600002646446, 255191.605200000107288 ], [ 357076.852099999785423, 255178.683100000023842 ], [ 357064.139899998903275, 255156.414299998432398 ], [ 357060.142499998211861, 255152.370799999684095 ], [ 357056.929899998009205, 255150.866799999028444 ], [ 357024.799599997699261, 255136.249499998986721 ], [ 357018.354500003159046, 255135.563499998301268 ], [ 357013.51129999756813, 255136.1570999994874 ], [ 356986.791500002145767, 255149.026200000196695 ], [ 356981.111299999058247, 255153.20160000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94251992, "LATITUDE": 18.32619461, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.630506995, "SHAPE_Area": 434.37156996900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357559.727200001478195, 255195.089800000190735 ], [ 357608.881700001657009, 255199.080699998885393 ], [ 357603.377700001001358, 255182.570300001651049 ], [ 357562.167700000107288, 255192.57660000026226 ], [ 357559.727200001478195, 255195.089800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94753135000001, "LATITUDE": 18.32535124, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.63871751099998, "SHAPE_Area": 4140.1201754699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357088.321400001645088, 255062.886700000613928 ], [ 357030.221900001168251, 255067.688499998301268 ], [ 357018.408500000834465, 255129.231100000441074 ], [ 357028.068000003695488, 255131.21000000089407 ], [ 357112.179899998009205, 255101.923099998384714 ], [ 357088.321400001645088, 255062.886700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9449096, "LATITUDE": 18.32382758, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.452177718, "SHAPE_Area": 3758.2637150599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357343.073299996554852, 254880.686999998986721 ], [ 357297.339000001549721, 254948.495900001376867 ], [ 357309.331200003623962, 254960.626400001347065 ], [ 357318.155699998140335, 254965.975999999791384 ], [ 357327.815200001001358, 254967.954900000244379 ], [ 357335.086400002241135, 254966.325599998235703 ], [ 357343.189099997282028, 254961.747900001704693 ], [ 357362.74379999935627, 254938.054400000721216 ], [ 357379.915500000119209, 254910.119500000029802 ], [ 357343.073299996554852, 254880.686999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94528313000001, "LATITUDE": 18.32353619, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.44466741899998, "SHAPE_Area": 4401.1396707399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357304.625699996948242, 254850.396999999880791 ], [ 357297.415600001811981, 254844.849599998444319 ], [ 357258.176700003445148, 254907.434300001710653 ], [ 357297.339000001549721, 254948.495900001376867 ], [ 357343.073299996554852, 254880.686999998986721 ], [ 357304.625699996948242, 254850.396999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91756791, "LATITUDE": 18.32368322, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.94549439399999, "SHAPE_Area": 432.49782129099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360245.728100001811981, 254912.676500000059605 ], [ 360225.384999997913837, 254934.252599999308586 ], [ 360209.14190000295639, 254947.840799998492002 ], [ 360214.712399996817112, 254956.541200000792742 ], [ 360217.169100001454353, 254952.128400001674891 ], [ 360221.193400003015995, 254953.005699999630451 ], [ 360225.2466000020504, 254950.505699999630451 ], [ 360225.298699997365475, 254944.384399998933077 ], [ 360239.929200001060963, 254930.783100001513958 ], [ 360249.711099997162819, 254918.408599998801947 ], [ 360245.728100001811981, 254912.676500000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94763184, "LATITUDE": 18.32332619, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.26021173199999, "SHAPE_Area": 3399.5501574300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357077.23650000244379, 254849.591400001198053 ], [ 357079.750799998641014, 254838.424100000411272 ], [ 357052.440499998629093, 254825.957100000232458 ], [ 357039.402800001204014, 254841.893500000238419 ], [ 357015.777000002563, 254870.197799999266863 ], [ 357020.539300002157688, 254879.102699998766184 ], [ 357026.943099997937679, 254884.643500000238419 ], [ 357048.485100001096725, 254911.628699999302626 ], [ 357063.717000000178814, 254922.096999999135733 ], [ 357077.23650000244379, 254849.591400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94451223, "LATITUDE": 18.32325, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.56503091900001, "SHAPE_Area": 3240.0679552900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357421.54280000180006, 254851.142900001257658 ], [ 357381.471699997782707, 254822.106199998408556 ], [ 357343.073299996554852, 254880.686999998986721 ], [ 357379.915500000119209, 254910.119500000029802 ], [ 357388.187200002372265, 254885.700300000607967 ], [ 357394.713299997150898, 254876.887800000607967 ], [ 357399.579899996519089, 254873.55009999871254 ], [ 357404.434000000357628, 254871.690000001341105 ], [ 357410.079999998211861, 254871.525100000202656 ], [ 357421.54280000180006, 254851.142900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94783085, "LATITUDE": 18.32292443, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.148631357, "SHAPE_Area": 668.14858716200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357052.440499998629093, 254825.957100000232458 ], [ 357013.886699996888638, 254808.120799999684095 ], [ 357011.426399998366833, 254812.955800000578165 ], [ 357021.732299998402596, 254833.727299999445677 ], [ 357039.402800001204014, 254841.893500000238419 ], [ 357052.440499998629093, 254825.957100000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94561476, "LATITUDE": 18.32225456, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 478.99530680700002, "SHAPE_Area": 9367.5363276299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357338.490099996328354, 254756.104299999773502 ], [ 357344.23309999704361, 254744.541200000792742 ], [ 357346.675499998033047, 254741.816899999976158 ], [ 357347.508699998259544, 254738.657299999147654 ], [ 357350.771799996495247, 254734.2511 ], [ 357287.026299998164177, 254739.217799998819828 ], [ 357278.162299998104572, 254738.511999998241663 ], [ 357271.728000000119209, 254736.559500001370907 ], [ 357263.699000000953674, 254732.482999999076128 ], [ 357258.090800002217293, 254728.215199999511242 ], [ 357206.993900001049042, 254668.2685999982059 ], [ 357205.276900000870228, 254680.497999999672174 ], [ 357197.771999999880791, 254709.567499998956919 ], [ 357199.217399999499321, 254729.210999999195337 ], [ 357201.553599998354912, 254738.940400000661612 ], [ 357209.505199998617172, 254752.093299999833107 ], [ 357215.901799999177456, 254758.478500001132488 ], [ 357250.375399999320507, 254781.980900000780821 ], [ 357259.946900002658367, 254794.302700001746416 ], [ 357262.317299999296665, 254800.021600000560284 ], [ 357268.693999998271465, 254808.72859999909997 ], [ 357277.496899999678135, 254816.611099999397993 ], [ 357283.916900001466274, 254820.252300001680851 ], [ 357288.742200002074242, 254821.769400000572205 ], [ 357293.587200000882149, 254820.964699998497963 ], [ 357303.354699999094009, 254810.278900001198053 ], [ 357320.483300000429153, 254787.40989999845624 ], [ 357322.948899999260902, 254781.941599998623133 ], [ 357327.025499999523163, 254776.697599999606609 ], [ 357331.944300003349781, 254767.238699998706579 ], [ 357335.20549999922514, 254763.043499998748302 ], [ 357338.490099996328354, 254756.104299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91840808000001, "LATITUDE": 18.32253099, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 418.05319150600002, "SHAPE_Area": 1220.30086 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360158.758900001645088, 254804.095899999141693 ], [ 360141.819099999964237, 254804.801600001752377 ], [ 360101.494499996304512, 254805.527100000530481 ], [ 360070.066299997270107, 254803.158900000154972 ], [ 360060.387000001966953, 254803.501899998635054 ], [ 360039.413800001144409, 254804.38569999858737 ], [ 360038.566200003027916, 254809.233899999409914 ], [ 360070.820500001311302, 254809.286800000816584 ], [ 360093.380999997258186, 254811.371300000697374 ], [ 360131.281300000846386, 254811.259300000965595 ], [ 360171.613099999725819, 254809.689500000327826 ], [ 360207.116099998354912, 254807.02479999884963 ], [ 360215.967500001192093, 254809.208200000226498 ], [ 360223.985699996352196, 254814.551100000739098 ], [ 360230.412799999117851, 254817.348000001162291 ], [ 360239.278599999845028, 254817.842700000852346 ], [ 360240.137100003659725, 254811.728000000119209 ], [ 360234.48929999768734, 254812.103999998420477 ], [ 360230.464900001883507, 254811.226700000464916 ], [ 360218.433200001716614, 254803.739900000393391 ], [ 360211.997100003063679, 254801.998500000685453 ], [ 360201.523999996483326, 254800.857299998402596 ], [ 360191.839299999177456, 254801.833500001579523 ], [ 360178.925700001418591, 254803.20549999922514 ], [ 360158.758900001645088, 254804.095899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91620681000001, "LATITUDE": 18.32242075, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.992839864099999, "SHAPE_Area": 37.274419723400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360380.426500000059605, 254813.931699998676777 ], [ 360372.573700003325939, 254789.16950000077486 ], [ 360369.353900000452995, 254788.509799998253584 ], [ 360380.426500000059605, 254813.931699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91625115, "LATITUDE": 18.32231331, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.254949265699999, "SHAPE_Area": 22.807110262599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360370.212300002574921, 254782.395199999213219 ], [ 360366.188000001013279, 254781.517799999564886 ], [ 360369.353900000452995, 254788.509799998253584 ], [ 360372.573700003325939, 254789.16950000077486 ], [ 360370.212300002574921, 254782.395199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91902183000001, "LATITUDE": 18.32216117, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.95935797000001, "SHAPE_Area": 873.50315377499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360100.293700002133846, 254757.17680000141263 ], [ 360082.585400000214577, 254753.443300001323223 ], [ 360078.550200000405312, 254753.832400001585484 ], [ 360073.708700001239777, 254754.214999999850988 ], [ 360067.216899998486042, 254759.017000000923872 ], [ 360056.698899999260902, 254763.152800001204014 ], [ 360051.825000002980232, 254767.334800001233816 ], [ 360048.561999998986721, 254771.74100000038743 ], [ 360046.098099999129772, 254776.998199999332428 ], [ 360060.622500002384186, 254775.850499998778105 ], [ 360100.96509999781847, 254773.014299999922514 ], [ 360100.293700002133846, 254757.17680000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95720875000001, "LATITUDE": 18.32027938, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.21594627799999, "SHAPE_Area": 881.16247545700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356062.187700003385544, 254545.75279999896884 ], [ 356050.252999998629093, 254526.867800001055002 ], [ 356013.536700002849102, 254482.659800000488758 ], [ 356011.981600001454353, 254475.892099998891354 ], [ 356004.701399996876717, 254478.576699998229742 ], [ 356007.847499996423721, 254487.890599999576807 ], [ 356022.217299997806549, 254504.895700000226498 ], [ 356043.771999999880791, 254530.403299998492002 ], [ 356056.496699996292591, 254551.194600000977516 ], [ 356071.618900001049042, 254574.538699999451637 ], [ 356078.10530000180006, 254570.369899999350309 ], [ 356062.187700003385544, 254545.75279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95643894, "LATITUDE": 18.31849488, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.809021362800003, "SHAPE_Area": 73.359312923100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356116.381800003349781, 254336.791499998420477 ], [ 356129.347499996423721, 254329.298300001770258 ], [ 356127.850000001490116, 254315.776000000536442 ], [ 356126.181599996984005, 254322.30629999935627 ], [ 356116.381800003349781, 254336.791499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": "A9-508-T98", "PARCEL_NAM": "S", "ACRE": null, "LONGITUDE": -64.95386838, "LATITUDE": 18.3179294, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.1724539712, "SHAPE_Area": 97.614034102199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356407.290799997746944, 254264.445300001651049 ], [ 356375.8158999979496, 254267.565200001001358 ], [ 356408.045000001788139, 254270.57319999858737 ], [ 356407.290799997746944, 254264.445300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95506077, "LATITUDE": 18.31584714, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.666576308499998, "SHAPE_Area": 344.92361668500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356285.795100003480911, 254043.913699999451637 ], [ 356269.864900000393391, 254020.774099998176098 ], [ 356260.126199997961521, 254028.082600001245737 ], [ 356267.305699996650219, 254037.218400001525879 ], [ 356264.874200001358986, 254038.676199998706579 ], [ 356267.25900000333786, 254042.706500001251698 ], [ 356269.688699997961521, 254041.459800001233816 ], [ 356276.058300003409386, 254051.011100001633167 ], [ 356285.795100003480911, 254043.913699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95420255000001, "LATITUDE": 18.31523308, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.069005698, "SHAPE_Area": 603.63942282300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356374.921099998056889, 253993.980700001120567 ], [ 356375.894599996507168, 253974.356899999082088 ], [ 356377.563000001013279, 253967.826699998229742 ], [ 356355.950800001621246, 253949.073600001633167 ], [ 356348.625699996948242, 253957.035199999809265 ], [ 356349.377999998629093, 253963.374099999666214 ], [ 356374.921099998056889, 253993.980700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95442989, "LATITUDE": 18.31491339, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.619975375, "SHAPE_Area": 1108.9881943 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356352.26630000025034, 253908.302299998700619 ], [ 356313.34570000320673, 253933.526099998503923 ], [ 356338.984099999070168, 253952.945500001311302 ], [ 356341.394000001251698, 253954.020700000226498 ], [ 356345.429200001060963, 253953.631499998271465 ], [ 356359.264200001955032, 253938.757100000977516 ], [ 356360.09740000218153, 253935.597500000149012 ], [ 356352.203400000929832, 253915.690099999308586 ], [ 356352.26630000025034, 253908.302299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95400304, "LATITUDE": 18.31471797, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.242972654, "SHAPE_Area": 1487.85010334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356420.783100001513958, 253916.124699998646975 ], [ 356419.710799999535084, 253897.544199999421835 ], [ 356419.212384324462619, 253897.002660248195753 ], [ 356418.63534580176929, 253896.545812318712706 ], [ 356417.993910304736346, 253896.184918995888438 ], [ 356417.303891301096883, 253895.92887747194618 ], [ 356416.582299999892712, 253895.784000001847744 ], [ 356398.258500002324581, 253904.879099998623133 ], [ 356395.027800001204014, 253905.48589999973774 ], [ 356390.999899998307228, 253905.030799999833107 ], [ 356386.986299999058247, 253902.886999998241663 ], [ 356383.806000001728535, 253897.583599999547005 ], [ 356380.598700001835823, 253895.446400001645088 ], [ 356374.959899999201298, 253894.767000000923872 ], [ 356366.059900000691414, 253898.282800000160933 ], [ 356358.741999998688698, 253905.399999998509884 ], [ 356356.288900002837181, 253909.390700001269579 ], [ 356357.037600003182888, 253916.151900000870228 ], [ 356361.760399997234344, 253929.700500000268221 ], [ 356364.163199998438358, 253931.620000001043081 ], [ 356367.386600002646446, 253931.857500001788139 ], [ 356373.869499996304512, 253928.11089999973774 ], [ 356380.341600000858307, 253925.630699999630451 ], [ 356420.783100001513958, 253916.124699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95572298, "LATITUDE": 18.31483713, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.542863823700003, "SHAPE_Area": 91.911380989899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356210.179099999368191, 253927.82660000026226 ], [ 356210.259999997913837, 253918.328099999576807 ], [ 356190.851000003516674, 253924.924199998378754 ], [ 356210.179099999368191, 253927.82660000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95431634000001, "LATITUDE": 18.31346098, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.544525317000002, "SHAPE_Area": 184.504437986 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356347.666900001466274, 253785.619300000369549 ], [ 356364.741499997675419, 253769.082699999213219 ], [ 356348.665600001811981, 253763.040500000119209 ], [ 356347.666900001466274, 253785.619300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "V", "ACRE": null, "LONGITUDE": -64.95630522, "LATITUDE": 18.30969491, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1516.2579899100001, "SHAPE_Area": 79576.224211599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356312.743600003421307, 253341.614900000393391 ], [ 356307.237899996340275, 253325.315600000321865 ], [ 356302.480999998748302, 253315.777499999850988 ], [ 356298.503300003707409, 253309.412099998444319 ], [ 356296.901500001549721, 253308.132399998605251 ], [ 356296.115000002086163, 253305.804000001400709 ], [ 356284.130000002682209, 253292.829199999570847 ], [ 356270.503600001335144, 253283.218400001525879 ], [ 356258.441299997270107, 253279.320000000298023 ], [ 356251.182700000703335, 253279.471700001507998 ], [ 356221.305900000035763, 253284.293400000780821 ], [ 356214.063500002026558, 253282.545400001108646 ], [ 356209.252599999308586, 253279.339600000530481 ], [ 356207.657999999821186, 253277.215599998831749 ], [ 356201.399899996817112, 253254.577399998903275 ], [ 356191.148000001907349, 253227.473499998450279 ], [ 356185.593699999153614, 253216.873399998992682 ], [ 356182.436800003051758, 253208.8260000012815 ], [ 356180.838500000536442, 253207.124200001358986 ], [ 356179.267300002276897, 253202.256099998950958 ], [ 356172.107600003480911, 253190.798500001430511 ], [ 356092.20889999717474, 253198.799400001764297 ], [ 356083.289099998772144, 253204.636999998241663 ], [ 356069.529700003564358, 253210.646099999547005 ], [ 356048.518799997866154, 253215.962600000202656 ], [ 356034.757500000298023, 253222.182799998670816 ], [ 356023.372100003063679, 253233.488600000739098 ], [ 356018.469400003552437, 253241.047899998724461 ], [ 356027.817900002002716, 253279.543400000780821 ], [ 356042.090599998831749, 253307.946800000965595 ], [ 355983.105700001120567, 253322.029399998486042 ], [ 355938.431000001728535, 253303.615499999374151 ], [ 355903.294399999082088, 253277.792199999094009 ], [ 355877.107600003480911, 253270.077300000935793 ], [ 355877.888800002634525, 253273.039000000804663 ], [ 355880.444399997591972, 253279.063499998301268 ], [ 355884.233199998736382, 253285.545400001108646 ], [ 355887.418999999761581, 253290.234400000423193 ], [ 355890.563199996948242, 253299.740499999374151 ], [ 355889.66160000115633, 253310.921100001782179 ], [ 355896.045500002801418, 253318.7837999984622 ], [ 355908.109700001776218, 253322.471099998801947 ], [ 355916.943099997937679, 253326.765299998223782 ], [ 355924.151399999856949, 253332.523800000548363 ], [ 355928.143399998545647, 253337.200500000268221 ], [ 355924.08669999986887, 253340.122600000351667 ], [ 355920.096400000154972, 253335.2347999997437 ], [ 355912.88459999859333, 253329.898499999195337 ], [ 355903.239399999380112, 253326.230900000780821 ], [ 355902.409699998795986, 253328.968400001525879 ], [ 355907.010200001299381, 253356.870400000363588 ], [ 355907.719400003552437, 253368.275199998170137 ], [ 355911.686300002038479, 253375.907000001519918 ], [ 355922.105400003492832, 253383.38060000166297 ], [ 355955.803300000727177, 253403.288100000470877 ], [ 356013.737300001084805, 253417.905499998480082 ], [ 356022.606700003147125, 253417.978100001811981 ], [ 356036.290700003504753, 253420.834300000220537 ], [ 356173.124600000679493, 253450.029699999839067 ], [ 356224.649499997496605, 253459.739500001072884 ], [ 356254.285300001502037, 253483.202399998903275 ], [ 356259.888099998235703, 253488.103399999439716 ], [ 356332.764399997889996, 253547.172800000756979 ], [ 356338.415799997746944, 253546.374600000679493 ], [ 356347.337399996817112, 253540.325899999588728 ], [ 356352.227399997413158, 253534.244199998676777 ], [ 356354.732699997723103, 253524.13230000063777 ], [ 356353.208200000226498, 253513.776200000196695 ], [ 356345.43639999628067, 253479.515399999916553 ], [ 356338.627300001680851, 253426.897399999201298 ], [ 356331.64919999986887, 253394.120799999684095 ], [ 356323.017099998891354, 253366.1858000010252 ], [ 356320.648500002920628, 253360.255800001323223 ], [ 356317.461000002920628, 253355.796700000762939 ], [ 356314.32209999859333, 253345.638599999248981 ], [ 356312.72749999910593, 253343.514600001275539 ], [ 356312.743600003421307, 253341.614900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95500631, "LATITUDE": 18.30955141, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 854.92649122199998, "SHAPE_Area": 2525.1931991599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356354.732699997723103, 253524.13230000063777 ], [ 356359.633500002324581, 253516.784099999815226 ], [ 356352.644599996507168, 253485.274000000208616 ], [ 356348.047700002789497, 253456.949799999594688 ], [ 356345.063400000333786, 253428.638799998909235 ], [ 356341.987400002777576, 253411.0929000005126 ], [ 356338.864600002765656, 253399.035000000149012 ], [ 356334.9662000015378, 253383.382199998944998 ], [ 356327.891000002622604, 253362.003800000995398 ], [ 356326.29450000077486, 253360.090900000184774 ], [ 356313.677599996328354, 253326.634899999946356 ], [ 356311.319799996912479, 253319.438400000333786 ], [ 356300.983400002121925, 253302.255199998617172 ], [ 356290.598499998450279, 253290.771200001239777 ], [ 356281.79559999704361, 253282.888599999248981 ], [ 356269.756599999964237, 253276.246199999004602 ], [ 356257.687100000679493, 253273.192099999636412 ], [ 356247.201399996876717, 253273.528499998152256 ], [ 356221.35809999704361, 253278.172100000083447 ], [ 356216.525600001215935, 253277.499299999326468 ], [ 356214.124700002372265, 253275.368700001388788 ], [ 356212.528200000524521, 253273.455800000578165 ], [ 356212.551600001752377, 253270.711800001561642 ], [ 356207.065600000321865, 253252.090599998831749 ], [ 356199.97070000320673, 253233.034200001507998 ], [ 356198.376000002026558, 253230.910199999809265 ], [ 356195.213699996471405, 253223.495999999344349 ], [ 356193.631700001657009, 253219.894499998539686 ], [ 356188.898100003600121, 253207.612300001084805 ], [ 356187.312399998307228, 253204.432900000363588 ], [ 356185.710600003600121, 253203.153200000524521 ], [ 356180.15990000218153, 253192.131000000983477 ], [ 356180.176100000739098, 253190.231199998408556 ], [ 356172.107600003480911, 253190.798500001430511 ], [ 356179.267300002276897, 253202.256099998950958 ], [ 356180.838500000536442, 253207.124200001358986 ], [ 356182.436800003051758, 253208.8260000012815 ], [ 356185.593699999153614, 253216.873399998992682 ], [ 356191.148000001907349, 253227.473499998450279 ], [ 356201.399899996817112, 253254.577399998903275 ], [ 356207.657999999821186, 253277.215599998831749 ], [ 356209.252599999308586, 253279.339600000530481 ], [ 356214.063500002026558, 253282.545400001108646 ], [ 356221.305900000035763, 253284.293400000780821 ], [ 356251.182700000703335, 253279.471700001507998 ], [ 356258.441299997270107, 253279.320000000298023 ], [ 356270.503600001335144, 253283.218400001525879 ], [ 356284.130000002682209, 253292.829199999570847 ], [ 356296.115000002086163, 253305.804000001400709 ], [ 356296.901500001549721, 253308.132399998605251 ], [ 356298.503300003707409, 253309.412099998444319 ], [ 356302.480999998748302, 253315.777499999850988 ], [ 356307.237899996340275, 253325.315600000321865 ], [ 356312.743600003421307, 253341.614900000393391 ], [ 356312.72749999910593, 253343.514600001275539 ], [ 356314.32209999859333, 253345.638599999248981 ], [ 356317.461000002920628, 253355.796700000762939 ], [ 356320.648500002920628, 253360.255800001323223 ], [ 356323.017099998891354, 253366.1858000010252 ], [ 356331.64919999986887, 253394.120799999684095 ], [ 356338.627300001680851, 253426.897399999201298 ], [ 356345.43639999628067, 253479.515399999916553 ], [ 356353.208200000226498, 253513.776200000196695 ], [ 356354.732699997723103, 253524.13230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95350079000001, "LATITUDE": 18.31111783, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.4342370707, "SHAPE_Area": 99.485924086300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356441.969099998474121, 253506.692200001329184 ], [ 356440.347499996423721, 253507.734400000423193 ], [ 356436.229599997401237, 253517.833200000226498 ], [ 356437.01969999819994, 253519.739500001072884 ], [ 356442.662100002169609, 253519.996800001710653 ], [ 356446.724200002849102, 253516.441399998962879 ], [ 356446.778200000524521, 253510.109099999070168 ], [ 356444.382600001990795, 253507.345199998468161 ], [ 356441.969099998474121, 253506.692200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95404885000001, "LATITUDE": 18.31044201, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.0036895621, "SHAPE_Area": 86.636347686500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356382.027900002896786, 253443.7179000005126 ], [ 356388.456799998879433, 253446.303700000047684 ], [ 356390.88120000064373, 253445.690200001001358 ], [ 356389.295500002801418, 253442.510800000280142 ], [ 356382.954700000584126, 253429.58219999819994 ], [ 356380.5591000020504, 253426.818399999290705 ], [ 356382.027900002896786, 253443.7179000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95887933, "LATITUDE": 18.31028244, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 413.18314242500003, "SHAPE_Area": 8681.8216481899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355958.814599998295307, 253428.432900000363588 ], [ 355966.087600000202656, 253426.592599999159575 ], [ 355966.929799996316433, 253422.377599999308586 ], [ 355956.526900000870228, 253413.004299998283386 ], [ 355947.71679999679327, 253405.966099999845028 ], [ 355936.9746999964118, 253399.568199999630451 ], [ 355804.433899998664856, 253373.38230000063777 ], [ 355799.108499996364117, 253376.290300000458956 ], [ 355796.856145138037391, 253380.947741202020552 ], [ 355795.256653243675828, 253385.867750006233109 ], [ 355794.339616220036987, 253390.959302230359754 ], [ 355794.122000001370907, 253396.128199998289347 ], [ 355801.789300930628087, 253404.873065987485461 ], [ 355809.763199999928474, 253413.339299999177456 ], [ 355816.150444372382481, 253419.059222799929557 ], [ 355822.074744882236701, 253425.257373410306172 ], [ 355827.500399999320507, 253431.89640000090003 ], [ 355833.572608914866578, 253437.890899419406196 ], [ 355840.115218891471159, 253443.368124911095947 ], [ 355847.084299996495247, 253448.291299998760223 ], [ 355858.272341284085996, 253454.4332208292617 ], [ 355869.214800000190735, 253461.002700001001358 ], [ 355871.460894005198497, 253462.553844021138502 ], [ 355873.902388621703722, 253463.774536483630072 ], [ 355876.490991372324061, 253464.640632234630175 ], [ 355879.175499998033047, 253465.135000001639128 ], [ 355881.062345401907805, 253464.818601952400059 ], [ 355882.974899386579636, 253464.76930124964565 ], [ 355884.875539948989172, 253464.988067691505421 ], [ 355886.726879435940646, 253465.470597905688919 ], [ 355888.492499999701977, 253466.207400001585484 ], [ 355892.069091171666514, 253464.14568318775855 ], [ 355895.368692581541836, 253461.664693230588455 ], [ 355898.342415603867266, 253458.801189778809203 ], [ 355900.946199998259544, 253455.597600001841784 ], [ 355907.185975529719144, 253450.719697647349676 ], [ 355913.816457427688874, 253446.387788153486326 ], [ 355920.78999999910593, 253442.633000001311302 ], [ 355926.937804550863802, 253439.218020354834152 ], [ 355933.297029051522259, 253436.215046737983357 ], [ 355939.84009999781847, 253433.637099999934435 ], [ 355946.053882717213128, 253431.51320503099123 ], [ 355952.386740303249098, 253429.776270859030774 ], [ 355958.814599998295307, 253428.432900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95643904000001, "LATITUDE": 18.30823459, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.06958240399999, "SHAPE_Area": 318.37424913000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356092.20889999717474, 253198.799400001764297 ], [ 356172.107600003480911, 253190.798500001430511 ], [ 356162.458800002932549, 253187.553100001066923 ], [ 356126.961300000548363, 253189.584600001573563 ], [ 356109.999899998307228, 253192.823300000280142 ], [ 356092.20889999717474, 253198.799400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95596958, "LATITUDE": 18.30797938, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.694492224699999, "SHAPE_Area": 202.37560248099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356181.932599999010563, 253173.3581000007689 ], [ 356187.571400001645088, 253174.037599999457598 ], [ 356193.229900002479553, 253172.395100001245737 ], [ 356194.856899999082088, 253170.719700001180172 ], [ 356194.07039999961853, 253168.391199998557568 ], [ 356184.464800000190735, 253160.079999998211861 ], [ 356172.485200002789497, 253146.471900001168251 ], [ 356181.932599999010563, 253173.3581000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95664803, "LATITUDE": 18.30732052, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.64049533899998, "SHAPE_Area": 814.10102732999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356163.035999998450279, 253119.796799998730421 ], [ 356159.841300003230572, 253116.182100001722574 ], [ 356150.289700001478195, 253101.538400001823902 ], [ 356134.32880000025034, 253081.987199999392033 ], [ 356124.703400000929832, 253075.997800000011921 ], [ 356106.17620000243187, 253073.735199999064207 ], [ 356093.255500003695488, 253075.951499998569489 ], [ 356067.363499999046326, 253086.294300001114607 ], [ 356051.167199999094009, 253094.394400000572205 ], [ 356053.548299998044968, 253098.846799999475479 ], [ 356097.243900001049042, 253081.050400000065565 ], [ 356107.736699998378754, 253079.869699999690056 ], [ 356123.038699999451637, 253082.105900000780821 ], [ 356128.655900001525879, 253085.318300001323223 ], [ 356138.243500001728535, 253095.740299999713898 ], [ 356158.178400002419949, 253122.079100001603365 ], [ 356166.1587999984622, 253131.854699999094009 ], [ 356163.035999998450279, 253119.796799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94745066, "LATITUDE": 18.36091474, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.44195262900001, "SHAPE_Area": 827.75240932999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356967.291000001132488, 259032.817299999296665 ], [ 356971.80460000038147, 259033.96000000089407 ], [ 356991.888199999928474, 259036.40260000154376 ], [ 357010.071999996900558, 259035.8597999997437 ], [ 357022.556400001049042, 259029.074799999594688 ], [ 357036.545400001108646, 259028.338799998164177 ], [ 357053.295299999415874, 259031.35530000180006 ], [ 357066.251800000667572, 259033.6886 ], [ 357081.998400002717972, 259036.524399999529123 ], [ 357097.532700002193451, 259036.93189999833703 ], [ 357097.464500002563, 259039.531800001859665 ], [ 357102.151500001549721, 259039.654699999839067 ], [ 357102.527999997138977, 259025.303700000047684 ], [ 357096.602799996733665, 259025.148200001567602 ], [ 357096.683300003409386, 259031.246899999678135 ], [ 357082.120899997651577, 259031.228900000452995 ], [ 357067.189400002360344, 259029.013300001621246 ], [ 357054.310199998319149, 259026.089400000870228 ], [ 357036.553300000727177, 259022.058100000023842 ], [ 357021.199400000274181, 259022.832600001245737 ], [ 357007.86599999666214, 259030.960900001227856 ], [ 356992.431000001728535, 259029.888999998569489 ], [ 356972.89019999653101, 259028.532000001519918 ], [ 356967.464900001883507, 259026.867499999701977 ], [ 356967.291000001132488, 259032.817299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94732766, "LATITUDE": 18.36128054, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.24375471900001, "SHAPE_Area": 632.85668365000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357000.908600002527237, 259076.537399999797344 ], [ 357017.640299998223782, 259073.251400001347065 ], [ 357030.382399998605251, 259071.191599998623133 ], [ 357041.35530000180006, 259072.949099998921156 ], [ 357064.790600001811981, 259075.533399999141693 ], [ 357083.253899998962879, 259077.569400001317263 ], [ 357089.640299998223782, 259078.273699998855591 ], [ 357094.452500000596046, 259075.017799999564886 ], [ 357090.540299996733665, 259069.235500000417233 ], [ 357087.682800002396107, 259071.1689000017941 ], [ 357083.50280000269413, 259070.302600000053644 ], [ 357066.505599997937679, 259067.919799998402596 ], [ 357042.518799997866154, 259065.854699999094009 ], [ 357031.50789999961853, 259064.952799998223782 ], [ 357016.864200003445148, 259067.199299998581409 ], [ 357002.573399998247623, 259070.429299999028444 ], [ 357000.908600002527237, 259076.537399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94762671, "LATITUDE": 18.36083481, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.731678039599998, "SHAPE_Area": 233.238084007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356997.387599997222424, 259030.233199998736382 ], [ 357007.86599999666214, 259030.960900001227856 ], [ 357021.199400000274181, 259022.832600001245737 ], [ 357032.157300002872944, 259022.279800001531839 ], [ 357030.934600003063679, 259009.918200001120567 ], [ 356997.387599997222424, 259030.233199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93377001, "LATITUDE": 18.34999074, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.4786530709000001, "SHAPE_Area": 0.0307025244 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358492.136900000274181, 257833.235199999064207 ], [ 358492.805399999022484, 257833.468699999153614 ], [ 358492.79839999973774, 257833.374400001019239 ], [ 358492.136900000274181, 257833.235199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701016300", "MAP": "D9-7844-T006", "PARCEL_NAM": "14C-2", "ACRE": ".18", "LONGITUDE": -64.96230912, "LATITUDE": 18.36197496, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.49243227700001, "SHAPE_Area": 531.91715726200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355491.825599998235703, 259139.439899999648333 ], [ 355491.60530000180006, 259133.272599998861551 ], [ 355491.491099998354912, 259130.073899999260902 ], [ 355440.870600000023842, 259129.09569999948144 ], [ 355445.23480000346899, 259137.01069999858737 ], [ 355448.883699998259544, 259143.628199998289347 ], [ 355451.057899996638298, 259147.510200001299381 ], [ 355462.195000000298023, 259139.335799999535084 ], [ 355491.825599998235703, 259139.439899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95601325, "LATITUDE": 18.34577388, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.348107924800004, "SHAPE_Area": 99.088208788499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356135.038199998438358, 257352.837900001555681 ], [ 356139.738600000739098, 257357.22069999948144 ], [ 356143.703000001609325, 257349.292100001126528 ], [ 356154.910199999809265, 257343.179000001400709 ], [ 356162.677000001072884, 257339.541400000452995 ], [ 356155.303900003433228, 257340.338100001215935 ], [ 356142.358000002801418, 257345.509500000625849 ], [ 356135.038199998438358, 257352.837900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202082500", "MAP": "A9-676-T006", "PARCEL_NAM": null, "ACRE": ".008", "LONGITUDE": -64.95472815, "LATITUDE": 18.34513836, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.710320307800004, "SHAPE_Area": 39.39094186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356271.525100000202656, 257279.887899998575449 ], [ 356289.29619999974966, 257278.530699998140335 ], [ 356293.137800000607967, 257279.594399999827147 ], [ 356292.120999999344349, 257276.863299999386072 ], [ 356271.24889999628067, 257277.812800001353025 ], [ 356271.525100000202656, 257279.887899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202082400", "MAP": "A9-676-T006", "PARCEL_NAM": null, "ACRE": ".005", "LONGITUDE": -64.95492832, "LATITUDE": 18.34515436, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.8605967827, "SHAPE_Area": 46.602738312200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356247.716300003230572, 257283.254799999296665 ], [ 356262.622800000011921, 257280.31700000166893 ], [ 356271.525100000202656, 257279.887899998575449 ], [ 356271.24889999628067, 257277.812800001353025 ], [ 356260.660400003194809, 257278.29450000077486 ], [ 356254.199100002646446, 257279.508200000971556 ], [ 356247.716300003230572, 257283.254799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94748198000001, "LATITUDE": 18.36530286, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.14219979399999, "SHAPE_Area": 1124.5767485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357015.982799999415874, 259508.788899999111891 ], [ 357018.665799997746944, 259524.399099998176098 ], [ 357021.104900002479553, 259535.131099998950958 ], [ 357026.958700001239777, 259547.082699999213219 ], [ 357033.300399996340275, 259550.741300001740456 ], [ 357037.872500002384186, 259549.740100000053644 ], [ 357038.014600001275539, 259538.583200000226498 ], [ 357038.384400002658367, 259509.556499999016523 ], [ 357039.706699997186661, 259482.212799999862909 ], [ 357034.0320999994874, 259481.714999999850988 ], [ 357030.373499996960163, 259485.617499999701977 ], [ 357019.39750000089407, 259501.227699998766184 ], [ 357015.982799999415874, 259508.788899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94741578, "LATITUDE": 18.37087907, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 533.00486384400006, "SHAPE_Area": 3304.7928706600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356998.334700003266335, 260114.899500001221895 ], [ 357002.764399997889996, 260128.483800001442432 ], [ 357009.196199998259544, 260147.319699998944998 ], [ 357024.816200003027916, 260156.967399999499321 ], [ 357036.301500000059605, 260163.399099998176098 ], [ 357052.380999997258186, 260169.371500000357628 ], [ 357061.278200000524521, 260183.82149999961257 ], [ 357044.11150000244379, 260196.47690000012517 ], [ 357037.679799996316433, 260204.746300000697374 ], [ 357038.598600000143051, 260209.340399999171495 ], [ 357045.949199996888638, 260222.663400001823902 ], [ 357061.10980000346899, 260237.824000000953674 ], [ 357065.703900001943111, 260239.661699999123812 ], [ 357074.432800002396107, 260235.067499998956919 ], [ 357075.810999996960163, 260231.851599998772144 ], [ 357074.432800002396107, 260227.257500000298023 ], [ 357067.08219999819994, 260221.744600001722574 ], [ 357057.893899999558926, 260219.447500001639128 ], [ 357051.462099999189377, 260212.096900001168251 ], [ 357051.462099999189377, 260202.449200000613928 ], [ 357063.866300001740456, 260190.963899999856949 ], [ 357070.652900002896786, 260179.949099998921156 ], [ 357064.325699999928474, 260168.912099998444319 ], [ 357053.759199999272823, 260161.561500001698732 ], [ 357039.517399996519089, 260155.589099999517202 ], [ 357015.168499998748302, 260139.969099998474121 ], [ 357012.412100002169609, 260129.861999999731779 ], [ 357017.924999997019768, 260120.214299999177456 ], [ 357036.301500000059605, 260092.190099999308586 ], [ 357037.409199997782707, 260076.036200001835823 ], [ 357020.893799997866154, 260043.509500000625849 ], [ 357003.082999996840954, 260051.807399999350309 ], [ 357017.305299997329712, 260086.120999999344349 ], [ 356998.334700003266335, 260114.899500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93797328, "LATITUDE": 18.36324162, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 614.624987401, "SHAPE_Area": 2925.1555226 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358041.73589999973774, 259291.644299998879433 ], [ 358030.808799996972084, 259295.775800000876188 ], [ 358023.850500002503395, 259283.320099998265505 ], [ 357960.836199998855591, 259319.552200000733137 ], [ 357955.974899999797344, 259322.256599999964237 ], [ 357924.363300003111362, 259341.418499998748302 ], [ 357888.698499999940395, 259363.080299999564886 ], [ 357892.683399997651577, 259368.601399999111891 ], [ 357930.793999999761581, 259343.793200001120567 ], [ 357951.056100003421307, 259331.715599998831749 ], [ 357973.737199999392033, 259319.657800000160933 ], [ 357978.611000001430511, 259315.47580000013113 ], [ 357982.651600003242493, 259314.453400000929832 ], [ 357988.293999999761581, 259314.710700001567602 ], [ 357993.911200001835823, 259317.923000000417233 ], [ 358010.112899996340275, 259309.189699999988079 ], [ 358030.348099999129772, 259300.278299998492002 ], [ 358052.185000002384186, 259292.646600000560284 ], [ 358056.191399998962879, 259295.634700000286102 ], [ 358059.407700002193451, 259296.716499999165535 ], [ 358067.474399998784065, 259296.360300000756979 ], [ 358072.337499998509884, 259293.44480000063777 ], [ 358076.415799997746944, 259287.989700000733137 ], [ 358082.081500001251698, 259285.502999998629093 ], [ 358085.308600001037121, 259285.318300001323223 ], [ 358089.331200003623962, 259286.406700000166893 ], [ 358092.531199999153614, 259289.388199999928474 ], [ 358098.971000000834465, 259290.707499999552965 ], [ 358103.004299998283386, 259290.529399998486042 ], [ 358108.662900000810623, 259288.886900000274181 ], [ 358113.52589999884367, 259285.971400000154972 ], [ 358119.236699998378754, 259278.207699999213219 ], [ 358120.104099996387959, 259271.037599999457598 ], [ 358120.136500000953674, 259267.238200001418591 ], [ 358120.998499996960163, 259260.701400000602007 ], [ 358125.173900000751019, 259243.848099999129772 ], [ 358132.561999998986721, 259228.498700000345707 ], [ 358110.995800003409386, 259255.615200001746416 ], [ 358079.513999998569489, 259276.253199998289347 ], [ 358041.73589999973774, 259291.644299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93245457, "LATITUDE": 18.34974291, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.11471474447, "SHAPE_Area": 0.00017028501 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.807499997317791, 257807.069699998944998 ], [ 358631.858000002801418, 257807.070000000298023 ], [ 358631.859499998390675, 257807.065999999642372 ], [ 358631.803900003433228, 257807.067299999296665 ], [ 358631.807499997317791, 257807.069699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93682521, "LATITUDE": 18.34517964, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.79102176800001, "SHAPE_Area": 1202.2830618099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358124.271200001239777, 257347.774500001221895 ], [ 358126.549900002777576, 257348.614199999719858 ], [ 358132.895300000905991, 257338.115899998694658 ], [ 358167.904700003564358, 257293.093299999833107 ], [ 358210.714500002563, 257297.553199999034405 ], [ 358211.925800003111362, 257295.531300000846386 ], [ 358217.589800000190735, 257293.25560000166297 ], [ 358209.659699998795986, 257277.56980000063777 ], [ 358175.745999999344349, 257282.991700001060963 ], [ 358166.045100003480911, 257285.867600001394749 ], [ 358154.697400003671646, 257292.740800000727177 ], [ 358149.820000000298023, 257297.344999998807907 ], [ 358146.540799997746944, 257303.651000000536442 ], [ 358145.716499999165535, 257305.755100000649691 ], [ 358144.078699998557568, 257308.697000000625849 ], [ 358126.037699997425079, 257344.013099998235703 ], [ 358124.271200001239777, 257347.774500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93658637, "LATITUDE": 18.34516133, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.54940494627000003, "SHAPE_Area": 0.00919636019 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358199.266099996864796, 257296.360500000417233 ], [ 358199.180500000715256, 257296.473200000822544 ], [ 358199.417300000786781, 257296.376299999654293 ], [ 358199.266099996864796, 257296.360500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93658706, "LATITUDE": 18.34516126, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.32932791724, "SHAPE_Area": 0.0040313249 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358199.180500000715256, 257296.473200000822544 ], [ 358199.266099996864796, 257296.360500000417233 ], [ 358199.199799999594688, 257296.35359999909997 ], [ 358199.180500000715256, 257296.473200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-8387-T009", "PARCEL_NAM": null, "ACRE": ".152", "LONGITUDE": -64.93706393, "LATITUDE": 18.34579232, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.957715755, "SHAPE_Area": 700.17863944500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358149.796999998390675, 257338.492600001394749 ], [ 358144.694499999284744, 257348.039700001478195 ], [ 358137.530100002884865, 257363.962699998170137 ], [ 358135.198600001633167, 257378.726500000804663 ], [ 358141.016000002622604, 257384.243500001728535 ], [ 358154.762900002300739, 257379.711899999529123 ], [ 358162.968000002205372, 257374.910900000482798 ], [ 358149.796999998390675, 257338.492600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93761638, "LATITUDE": 18.34597384, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.72271852657, "SHAPE_Area": 0.55538185978 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358088.823600001633167, 257385.661499999463558 ], [ 358090.033399999141693, 257385.783500000834465 ], [ 358090.209299996495247, 257384.883099999278784 ], [ 358088.823600001633167, 257385.661499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93752501, "LATITUDE": 18.34593264, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.884336912099997, "SHAPE_Area": 108.458727032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358090.033399999141693, 257385.783500000834465 ], [ 358103.092299997806549, 257387.099500000476837 ], [ 358104.749700002372265, 257367.968800000846386 ], [ 358103.227200001478195, 257371.2685999982059 ], [ 358095.889499999582767, 257380.707699999213219 ], [ 358090.209299996495247, 257384.883099999278784 ], [ 358090.033399999141693, 257385.783500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93896876, "LATITUDE": 18.34605253, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.47347905960999997, "SHAPE_Area": 0.01185333515 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357946.626900002360344, 257393.066899999976158 ], [ 357946.678900003433228, 257393.068599998950958 ], [ 357946.755699999630451, 257392.925000000745058 ], [ 357946.650799997150898, 257392.915500000119209 ], [ 357946.626900002360344, 257393.066899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93896917, "LATITUDE": 18.3460537, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.3508485867, "SHAPE_Area": 0.00366138503 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357946.678900003433228, 257393.068599998950958 ], [ 357946.626900002360344, 257393.066899999976158 ], [ 357946.604800000786781, 257393.206999998539686 ], [ 357946.678900003433228, 257393.068599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94750598, "LATITUDE": 18.34950935, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.90699127, "SHAPE_Area": 387.73278184399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357065.441200003027916, 257748.653799999505281 ], [ 357062.260899998247623, 257743.350400000810623 ], [ 357026.47749999910593, 257778.943500000983477 ], [ 357016.744199998676777, 257785.61879999935627 ], [ 357018.304700002074242, 257791.753299999982119 ], [ 357030.467699997127056, 257783.831300001591444 ], [ 357065.441200003027916, 257748.653799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202082300", "MAP": "A9-676-T006", "PARCEL_NAM": null, "ACRE": ".006", "LONGITUDE": -64.95420973, "LATITUDE": 18.34511324, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.306747196400003, "SHAPE_Area": 16.835547318500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356329.211099997162819, 257277.197599999606609 ], [ 356351.554200001060963, 257274.949299998581409 ], [ 356329.223999999463558, 257275.689300000667572 ], [ 356329.211099997162819, 257277.197599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202039700", "MAP": "A9-682-T006", "PARCEL_NAM": "11-5-B", "ACRE": ".0018", "LONGITUDE": -64.95334332, "LATITUDE": 18.34523341, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.080687396800002, "SHAPE_Area": 38.055511167500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356435.172799997031689, 257291.193300001323223 ], [ 356435.162399999797344, 257291.050299998372793 ], [ 356417.620600000023842, 257284.813999999314547 ], [ 356431.476400002837181, 257294.046900000423193 ], [ 356435.172799997031689, 257291.193300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202039600", "MAP": "A9-682-T006", "PARCEL_NAM": "11-6-A", "ACRE": ".0004", "LONGITUDE": -64.95326807, "LATITUDE": 18.34527463, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.3663111497, "SHAPE_Area": 32.53188378 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356436.614799998700619, 257298.346799999475479 ], [ 356440.666799999773502, 257294.518300000578165 ], [ 356435.172799997031689, 257291.193300001323223 ], [ 356431.476400002837181, 257294.046900000423193 ], [ 356436.614799998700619, 257298.346799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202018800", "MAP": "A9-678-T006", "PARCEL_NAM": "11-1C-A", "ACRE": ".011", "LONGITUDE": -64.95355017, "LATITUDE": 18.34521703, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.246472241600003, "SHAPE_Area": 57.893791498500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356387.641099996864796, 257279.104400001466274 ], [ 356426.59179999679327, 257299.495400000363588 ], [ 356416.973600000143051, 257292.661699999123812 ], [ 356395.300200000405312, 257281.085200000554323 ], [ 356387.641099996864796, 257279.104400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93900299000001, "LATITUDE": 18.34037255, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.570920602, "SHAPE_Area": 132.695318184 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357952.891999997198582, 256726.67960000038147 ], [ 357941.294900000095367, 256805.26799999922514 ], [ 357942.743299998342991, 256805.279800001531839 ], [ 357953.840300001204014, 256733.176699999719858 ], [ 357954.695200003683567, 256727.484099999070168 ], [ 357952.891999997198582, 256726.67960000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93902004, "LATITUDE": 18.34035154, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.82105423100001, "SHAPE_Area": 196.14276427199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357941.294900000095367, 256805.26799999922514 ], [ 357952.891999997198582, 256726.67960000038147 ], [ 357952.285300001502037, 256726.408900000154972 ], [ 357949.873499996960163, 256725.544799998402596 ], [ 357939.518100000917912, 256805.253400001674891 ], [ 357941.294900000095367, 256805.26799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204071800", "MAP": null, "PARCEL_NAM": "170-1", "ACRE": null, "LONGITUDE": -64.95061276, "LATITUDE": 18.33601861, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.41127618100001, "SHAPE_Area": 4284.71631127 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356775.467200003564358, 256291.423700001090765 ], [ 356773.850900001823902, 256291.832699999213219 ], [ 356771.458999998867512, 256288.646699998527765 ], [ 356727.638700000941753, 256226.437600001692772 ], [ 356673.283100001513958, 256265.045099999755621 ], [ 356732.542000003159046, 256313.448300000280142 ], [ 356734.944700002670288, 256315.367800001055002 ], [ 356741.348499998450279, 256320.908700000494719 ], [ 356753.666199997067451, 256294.83390000090003 ], [ 356756.133599996566772, 256289.154500000178814 ], [ 356777.047399997711182, 256295.236299999058247 ], [ 356775.467200003564358, 256291.423700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204071900", "MAP": null, "PARCEL_NAM": "170-2", "ACRE": null, "LONGITUDE": -64.95014849, "LATITUDE": 18.33575634, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.19158350100003, "SHAPE_Area": 4908.4341531800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356802.107799999415874, 256287.842099998146296 ], [ 356802.133000001311302, 256284.886999998241663 ], [ 356807.409599997103214, 256233.423300001770258 ], [ 356777.935699999332428, 256190.96339999884367 ], [ 356727.638700000941753, 256226.437600001692772 ], [ 356771.458999998867512, 256288.646699998527765 ], [ 356773.850900001823902, 256291.832699999213219 ], [ 356775.467200003564358, 256291.423700001090765 ], [ 356777.047399997711182, 256295.236299999058247 ], [ 356780.265500001609325, 256296.10700000077486 ], [ 356802.075499996542931, 256291.641499999910593 ], [ 356802.107799999415874, 256287.842099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204052200", "MAP": "A9-731-T008", "PARCEL_NAM": "39", "ACRE": ".33", "LONGITUDE": -64.95283051, "LATITUDE": 18.33681395, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.42490662899999, "SHAPE_Area": 1604.7097323200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356510.529100000858307, 256344.139699999243021 ], [ 356510.743900001049042, 256337.210099998861551 ], [ 356469.344899997115135, 256342.163699999451637 ], [ 356467.958599999547005, 256347.503499999642372 ], [ 356467.921700000762939, 256347.506400000303984 ], [ 356467.435000002384186, 256349.571400001645088 ], [ 356466.981100000441074, 256353.157200001180172 ], [ 356467.593099996447563, 256369.420099999755621 ], [ 356469.058700002729893, 256372.071199998259544 ], [ 356471.267700001597404, 256374.728300001472235 ], [ 356477.726499997079372, 256377.208700001239777 ], [ 356491.4712999984622, 256378.87950000166893 ], [ 356510.246799997985363, 256377.278999999165535 ], [ 356510.529100000858307, 256344.139699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204052300", "MAP": "A9-731-T008", "PARCEL_NAM": "40", "ACRE": ".40", "LONGITUDE": -64.95281297, "LATITUDE": 18.33642261, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.95573705499999, "SHAPE_Area": 1745.42353772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356510.743900001049042, 256337.210099998861551 ], [ 356511.641099996864796, 256308.262800000607967 ], [ 356487.148299999535084, 256273.588899999856949 ], [ 356469.344899997115135, 256342.163699999451637 ], [ 356510.743900001049042, 256337.210099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204052400", "MAP": "A9-731-T008", "PARCEL_NAM": "23-A", "ACRE": ".09", "LONGITUDE": -64.95271164, "LATITUDE": 18.33615298, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.988066472, "SHAPE_Area": 556.41081468100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356491.328000001609325, 256259.289599999785423 ], [ 356487.7162000015378, 256271.401500001549721 ], [ 356487.148299999535084, 256273.588899999856949 ], [ 356511.641099996864796, 256308.262800000607967 ], [ 356521.376199997961521, 256301.376400001347065 ], [ 356491.328000001609325, 256259.289599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204052400", "MAP": "A9-731-T008", "PARCEL_NAM": "23", "ACRE": ".46", "LONGITUDE": -64.95256535, "LATITUDE": 18.33601615, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.483546819, "SHAPE_Area": 1733.3520535299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356548.619099996984005, 256282.35700000077486 ], [ 356521.677400000393391, 256248.450300000607967 ], [ 356519.251800000667572, 256246.319299999624491 ], [ 356516.181199997663498, 256245.133099999278784 ], [ 356513.000100001692772, 256244.473999999463558 ], [ 356506.523299999535084, 256244.210499998182058 ], [ 356501.734600000083447, 256245.333000000566244 ], [ 356496.826099999248981, 256248.143800001591444 ], [ 356494.785999998450279, 256250.87220000103116 ], [ 356491.447300001978874, 256259.456700000911951 ], [ 356521.376199997961521, 256301.376400001347065 ], [ 356548.619099996984005, 256282.35700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95290243, "LATITUDE": 18.33576523, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.517687287, "SHAPE_Area": 63.816436441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356487.428900003433228, 256216.092399999499321 ], [ 356486.351099997758865, 256216.915399998426437 ], [ 356486.446099996566772, 256229.344999998807907 ], [ 356484.60360000282526, 256236.009799998253584 ], [ 356476.8783999979496, 256264.503899998962879 ], [ 356478.145199999213219, 256264.869800001382828 ], [ 356486.459499999880791, 256235.229499999433756 ], [ 356487.325199998915195, 256228.270500000566244 ], [ 356487.428900003433228, 256216.092399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9529657, "LATITUDE": 18.33600666, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 21.0189693009, "SHAPE_Area": 11.798870600900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356476.8783999979496, 256264.503899998962879 ], [ 356474.466700002551079, 256273.399599999189377 ], [ 356475.648400001227856, 256273.771099999547005 ], [ 356478.145199999213219, 256264.869800001382828 ], [ 356476.8783999979496, 256264.503899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9549364, "LATITUDE": 18.3295769, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.35309340392, "SHAPE_Area": 0.03774116353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356273.842299997806549, 255555.44370000064373 ], [ 356273.667000003159046, 255555.749600000679493 ], [ 356273.719200000166893, 255556.089099999517202 ], [ 356273.842299997806549, 255555.44370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96013331, "LATITUDE": 18.33064312, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 313.87663327299998, "SHAPE_Area": 1317.5760295299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355698.968400001525879, 255628.434200000017881 ], [ 355703.795500002801418, 255629.740200001746416 ], [ 355711.856799997389317, 255630.017299998551607 ], [ 355716.685699999332428, 255631.112300001084805 ], [ 355723.892200000584126, 255637.081900000572205 ], [ 355725.477799996733665, 255640.261300001293421 ], [ 355731.723300002515316, 255664.377000000327826 ], [ 355729.988399997353554, 255678.717199999839067 ], [ 355728.345200002193451, 255682.292399998754263 ], [ 355716.097699999809265, 255700.135099999606609 ], [ 355713.626599997282028, 255706.236600000411272 ], [ 355714.33219999819994, 255718.0636 ], [ 355719.834399998188019, 255734.785000000149012 ], [ 355729.506499998271465, 255735.286299999803305 ], [ 355723.221500001847744, 255715.814300000667572 ], [ 355722.474500000476837, 255708.842099998146296 ], [ 355724.124899998307228, 255704.422600001096725 ], [ 355733.109399996697903, 255690.986200001090765 ], [ 355737.191299997270107, 255685.109000001102686 ], [ 355738.856100000441074, 255679.000900000333786 ], [ 355740.61429999768734, 255661.916700001806021 ], [ 355734.36879999935627, 255637.800900001078844 ], [ 355730.398400001227856, 255630.5912000015378 ], [ 355726.402800001204014, 255626.33669999986887 ], [ 355721.59009999781847, 255623.342000000178814 ], [ 355713.552199997007847, 255620.320900000631809 ], [ 355699.038500003516674, 255620.202100001275539 ], [ 355687.751999996602535, 255619.898600000888109 ], [ 355693.349399998784065, 255625.432900000363588 ], [ 355698.968400001525879, 255628.434200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105203040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96073387, "LATITUDE": 18.33615934, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.03076817558, "SHAPE_Area": 3.641002e-05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355655.077799998223782, 256279.375799998641014 ], [ 355655.077600002288818, 256279.362900000065565 ], [ 355655.071999996900558, 256279.365800000727177 ], [ 355655.077799998223782, 256279.375799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": "D9-8489-T010", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96068279000001, "LATITUDE": 18.33589159, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.349992357399998, "SHAPE_Area": 107.122324744 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355666.995200000703335, 256242.933699999004602 ], [ 355650.125299997627735, 256253.003800000995398 ], [ 355652.989000000059605, 256257.078099999576807 ], [ 355664.474799998104572, 256250.427400000393391 ], [ 355672.045999996364117, 256246.736800000071526 ], [ 355672.096199996769428, 256246.148400001227856 ], [ 355671.655500002205372, 256246.504299998283386 ], [ 355666.995200000703335, 256242.933699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904011900", "MAP": "D9-7682-T005", "PARCEL_NAM": "1-4", "ACRE": ".27", "LONGITUDE": -64.91964093, "LATITUDE": 18.35548089, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.77285593900001, "SHAPE_Area": 1281.61739936 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359965.46169999986887, 258468.485500000417233 ], [ 359998.13629999756813, 258473.737799998372793 ], [ 360002.709499999880791, 258450.304299999028444 ], [ 360003.354400001466274, 258444.109299998730421 ], [ 359962.178800001740456, 258433.1689000017941 ], [ 359954.00110000371933, 258433.32039999961853 ], [ 359955.264799997210503, 258434.928300000727177 ], [ 359957.640600003302097, 258440.013999998569489 ], [ 359961.614600002765656, 258446.801500000059605 ], [ 359964.762500002980232, 258455.90430000051856 ], [ 359965.523900002241135, 258461.187899999320507 ], [ 359965.46169999986887, 258468.485500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602030100", "MAP": "D9-8042-T007", "PARCEL_NAM": "1A", "ACRE": ".500", "LONGITUDE": -64.96886864, "LATITUDE": 18.35807747, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.224300271, "SHAPE_Area": 1763.4371576200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354765.069899998605251, 258674.984700001776218 ], [ 354749.399999998509884, 258721.994600001722574 ], [ 354781.55799999833107, 258724.212000001221895 ], [ 354802.892499998211861, 258680.901299998164177 ], [ 354805.354500003159046, 258675.574700001627207 ], [ 354765.069899998605251, 258674.984700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602030100", "MAP": "D9-8042-T007", "PARCEL_NAM": "1A-20", "ACRE": ".500", "LONGITUDE": -64.9692337, "LATITUDE": 18.35807434, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.56286325900001, "SHAPE_Area": 1872.8835035499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354724.849399998784065, 258674.395700000226498 ], [ 354709.192299999296665, 258719.222100000828505 ], [ 354749.399999998509884, 258721.994600001722574 ], [ 354765.069899998605251, 258674.984700001776218 ], [ 354724.849399998784065, 258674.395700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95877604, "LATITUDE": 18.35826668, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 483.781266743, "SHAPE_Area": 1398.1690674500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355755.200400002300739, 258777.143699999898672 ], [ 355755.1554000005126, 258782.420699998736382 ], [ 355784.231200002133846, 258776.959100000560284 ], [ 355813.330399997532368, 258768.753499999642372 ], [ 355810.146499998867512, 258763.872299998998642 ], [ 355792.362700000405312, 258769.004099998623133 ], [ 355790.759099997580051, 258767.935499999672174 ], [ 355791.583400003612041, 258765.831300001591444 ], [ 355803.785899996757507, 258753.265599999576807 ], [ 355822.457000002264977, 258738.6418999992311 ], [ 355838.656999997794628, 258730.119600001722574 ], [ 355862.916500002145767, 258722.085499998182058 ], [ 355878.315499998629093, 258712.92339999973774 ], [ 355888.882100000977516, 258703.088500000536442 ], [ 355901.111699998378754, 258687.356600001454353 ], [ 355923.886200003325939, 258664.322700001299381 ], [ 355923.151799999177456, 258655.872900001704693 ], [ 355872.70549999922514, 258708.866700001060963 ], [ 355858.942500002682209, 258715.298000000417233 ], [ 355853.274899996817112, 258717.995799999684095 ], [ 355845.987499997019768, 258721.52479999884963 ], [ 355835.473099999129772, 258725.238400001078844 ], [ 355827.37219999730587, 258729.605099998414516 ], [ 355801.408399999141693, 258748.390999998897314 ], [ 355785.935599997639656, 258766.207299999892712 ], [ 355781.875200003385544, 258769.551600001752377 ], [ 355774.591499999165535, 258772.658300001174212 ], [ 355768.927500002086163, 258774.934000000357628 ], [ 355755.200400002300739, 258777.143699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-2543-T83", "PARCEL_NAM": "326", "ACRE": "2.6046", "LONGITUDE": -64.95494726, "LATITUDE": 18.34105006, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 560.93193205, "SHAPE_Area": 10834.228193299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356292.059900000691414, 256924.448699999600649 ], [ 356283.641500003635883, 256891.144499998539686 ], [ 356277.820600003004074, 256865.479899998754263 ], [ 356277.556100003421307, 256844.313299998641014 ], [ 356279.14360000193119, 256826.85080000013113 ], [ 356282.318599998950958, 256814.150800000876188 ], [ 356287.08110000193119, 256804.096599999815226 ], [ 356301.897699996829033, 256775.521600000560284 ], [ 356315.92059999704361, 256755.148699998855591 ], [ 356324.889600001275539, 256743.27589999884367 ], [ 356255.634800001978874, 256732.365499999374151 ], [ 356250.809500001370907, 256730.848299998790026 ], [ 356245.037699997425079, 256745.788699999451637 ], [ 356235.144299998879433, 256771.250100001692772 ], [ 356227.732900001108646, 256789.343400001525879 ], [ 356241.435500003397465, 256884.6587999984622 ], [ 356236.592200003564358, 256885.252399999648333 ], [ 356222.065999999642372, 256886.611200001090765 ], [ 356221.464400000870228, 256894.054900001734495 ], [ 356218.818599998950958, 256908.871599998325109 ], [ 356216.850100003182888, 256922.711800001561642 ], [ 356245.279700003564358, 256923.368299998342991 ], [ 356292.059900000691414, 256924.448699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": "D9-7803-T006", "PARCEL_NAM": "104", "ACRE": ".029", "LONGITUDE": -64.94127271000001, "LATITUDE": 18.33704689, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.339684143299998, "SHAPE_Area": 118.64349582299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357714.022799998521805, 256392.830899998545647 ], [ 357714.105499997735023, 256383.121300000697374 ], [ 357709.263999998569489, 256383.503800000995398 ], [ 357708.373199999332428, 256393.417899999767542 ], [ 357707.456900000572205, 256402.402199998497963 ], [ 357711.881099998950958, 256404.242800001055002 ], [ 357714.20549999922514, 256405.945000000298023 ], [ 357714.022799998521805, 256392.830899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": "D9-7804-T006", "PARCEL_NAM": "26", "ACRE": ".11", "LONGITUDE": -64.94160573000001, "LATITUDE": 18.33702305, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.135969551, "SHAPE_Area": 539.66768983600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357652.984300002455711, 256391.529899999499321 ], [ 357653.50620000064373, 256397.401799999177456 ], [ 357658.347699999809265, 256397.019299998879433 ], [ 357659.137800000607967, 256398.925599999725819 ], [ 357668.155199997127056, 256397.276000000536442 ], [ 357680.11089999973774, 256398.041799999773502 ], [ 357696.000799998641014, 256397.528000000864267 ], [ 357696.36150000244379, 256383.529399998486042 ], [ 357690.420299999415874, 256384.297499999403954 ], [ 357685.128600001335144, 256384.165300000458956 ], [ 357678.778599999845028, 256384.297499999403954 ], [ 357673.789300002157688, 256384.241200000047684 ], [ 357667.363499999046326, 256384.578400000929832 ], [ 357663.022399999201298, 256385.410500001162291 ], [ 357658.037600003182888, 256387.910700000822544 ], [ 357652.984300002455711, 256391.529899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91134154, "LATITUDE": 18.34074208, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.64246466499998, "SHAPE_Area": 401.82350821300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360911.862700000405312, 256859.678800001740456 ], [ 360918.05179999768734, 256860.705200001597404 ], [ 360881.035800002515316, 256818.773699998855591 ], [ 360873.81139999628067, 256814.914900001138449 ], [ 360864.142800003290176, 256813.991399999707937 ], [ 360810.859700001776218, 256821.365699999034405 ], [ 360810.836300000548363, 256824.109700001776218 ], [ 360864.92400000244379, 256816.953099999576807 ], [ 360873.782600000500679, 256818.292100001126528 ], [ 360879.396200001239777, 256821.926699999719858 ], [ 360911.862700000405312, 256859.678800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012500", "MAP": "A9-443-T94", "PARCEL_NAM": "7A-A", "ACRE": null, "LONGITUDE": -64.95619925, "LATITUDE": 18.3547578, "OBJECTID_1": 3455, "PARCEL_NO_": "102704012500", "Tax_Legal_": "BONNE RESOLUTION REM. 7 & 7A-A LITTLE NORTHSIDE QTR", "Name": "BRYAN, JENNIFER & MITCHELL, ALICIA E.", "Address": "800 43rd Ave", "City": "Gulfport", "State": "Mississippi", "Zip": 39501, "Country": "United States", "Land_Value": 50100, "Improved_V": 95200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.630181733299999, "SHAPE_Area": 73.727177022899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356125.740299999713898, 258343.618400000035763 ], [ 356107.858800001442432, 258333.168200001120567 ], [ 356119.721799999475479, 258348.347300000488758 ], [ 356125.740299999713898, 258343.618400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012500", "MAP": "D9-7771-T006", "PARCEL_NAM": "7-REM", "ACRE": ".517", "LONGITUDE": -64.95663546, "LATITUDE": 18.35450277, "OBJECTID_1": 3455, "PARCEL_NO_": "102704012500", "Tax_Legal_": "BONNE RESOLUTION REM. 7 & 7A-A LITTLE NORTHSIDE QTR", "Name": "BRYAN, JENNIFER & MITCHELL, ALICIA E.", "Address": "800 43rd Ave", "City": "Gulfport", "State": "Mississippi", "Zip": 39501, "Country": "United States", "Land_Value": 50100, "Improved_V": 95200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.76769895199999, "SHAPE_Area": 1523.7430250899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356051.397399999201298, 258328.228799998760223 ], [ 356065.405900001525879, 258328.228799998760223 ], [ 356087.047499999403954, 258330.344099998474121 ], [ 356111.204499997198582, 258337.449099998921156 ], [ 356107.858800001442432, 258333.168200001120567 ], [ 356095.508900001645088, 258325.950699999928474 ], [ 356092.339800000190735, 258313.311000000685453 ], [ 356070.210600003600121, 258284.995799999684095 ], [ 356066.90259999781847, 258287.201099999248981 ], [ 356061.399300001561642, 258290.640700001269579 ], [ 356058.647600002586842, 258293.392400000244379 ], [ 356052.800300002098083, 258299.583599999547005 ], [ 356049.360699996352196, 258308.87049999833107 ], [ 356047.296999998390675, 258315.061700001358986 ], [ 356049.360699996352196, 258323.316700000315905 ], [ 356051.397399999201298, 258328.228799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704014800", "MAP": "D9-3224-T85", "PARCEL_NAM": "7-1", "ACRE": ".50", "LONGITUDE": -64.95650973, "LATITUDE": 18.35481044, "OBJECTID_1": 3472, "PARCEL_NO_": "102704014800", "Tax_Legal_": "BONNE RESOLUTION 7-1 LT. NORTHSIDE", "Name": "BRYAN, WAYNE V", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42500, "Improved_V": 273800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.76311693299999, "SHAPE_Area": 1808.3894083299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356111.204499997198582, 258337.449099998921156 ], [ 356087.047499999403954, 258330.344099998474121 ], [ 356065.405900001525879, 258328.228799998760223 ], [ 356051.397399999201298, 258328.228799998760223 ], [ 356055.207999996840954, 258337.418999999761581 ], [ 356064.414499998092651, 258356.466899998486042 ], [ 356077.56530000269413, 258365.279699999839067 ], [ 356086.491899996995926, 258374.456500001251698 ], [ 356119.721799999475479, 258348.347300000488758 ], [ 356111.204499997198582, 258337.449099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704015000", "MAP": "D9-4701-T89", "PARCEL_NAM": "8D-3A", "ACRE": ".5973", "LONGITUDE": -64.95654634, "LATITUDE": 18.35517854, "OBJECTID_1": 3474, "PARCEL_NO_": "102704015000", "Tax_Legal_": "BONNE RESOLUTION 8D-3A LT.NORTHSIDE QTR", "Name": "SMITH, NOEL F", "Address": "PO Box 11416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.345371739, "SHAPE_Area": 1305.0594864 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356052.195299997925758, 258396.82209999859333 ], [ 356074.030000001192093, 258404.055700000375509 ], [ 356114.36879999935627, 258403.115100000053644 ], [ 356077.56530000269413, 258365.279699999839067 ], [ 356064.414499998092651, 258356.466899998486042 ], [ 356065.182800002396107, 258358.056499999016523 ], [ 356067.590499997138977, 258370.782999999821186 ], [ 356064.15089999884367, 258384.885299999266863 ], [ 356059.335500001907349, 258391.764400001615286 ], [ 356052.195299997925758, 258396.82209999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704015100", "MAP": "D9-4701-T89", "PARCEL_NAM": "8D-3B", "ACRE": ".5476", "LONGITUDE": -64.95693241, "LATITUDE": 18.35545935, "OBJECTID_1": 3475, "PARCEL_NO_": "102704015100", "Tax_Legal_": "BONNE RESOLUTION 8D-3B LT.NORTHSIDE QTR", "Name": "FOY, KAYREN JOSEPH", "Address": "PO Box 304015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51700, "Improved_V": 6300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.232003287, "SHAPE_Area": 2182.1220861900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356049.248099997639656, 258443.626200001686811 ], [ 356063.290600001811981, 258433.345100000500679 ], [ 356075.169100001454353, 258405.682900000363588 ], [ 356074.030000001192093, 258404.055700000375509 ], [ 356052.195299997925758, 258396.82209999859333 ], [ 356051.08049999922514, 258397.611699998378754 ], [ 356041.449699997901917, 258401.739199999719858 ], [ 356012.901100002229214, 258406.898600000888109 ], [ 356002.979400001466274, 258408.138799998909235 ], [ 356000.155699998140335, 258410.727200001478195 ], [ 355998.691200003027916, 258414.469700001180172 ], [ 355999.179399996995926, 258417.07319999858737 ], [ 356001.620200000703335, 258419.513999998569489 ], [ 356006.013599999248981, 258423.581999998539686 ], [ 356011.220600001513958, 258427.487199999392033 ], [ 356020.98369999974966, 258433.182399999350309 ], [ 356034.163900002837181, 258438.063900001347065 ], [ 356049.248099997639656, 258443.626200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704015800", "MAP": "D9-6182-T97", "PARCEL_NAM": "8D-2 REM", "ACRE": ".52", "LONGITUDE": -64.95719634, "LATITUDE": 18.35578882, "OBJECTID_1": 3482, "PARCEL_NO_": "102704015800", "Tax_Legal_": "8D-2 BONNE RESOLUTION No.5 LITTLE NORTHSIDE QTR.", "Name": "BARROWS, MICHAEL S. & KIMBERLY C. BRYAN", "Address": "3004 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56900, "Improved_V": 346500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.304066807, "SHAPE_Area": 1667.5607003499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356002.098099999129772, 258427.290300000458956 ], [ 356002.317199997603893, 258427.662799999117851 ], [ 355985.129299998283386, 258454.506900001317263 ], [ 355999.420400001108646, 258474.398600000888109 ], [ 356025.821599997580051, 258479.546000000089407 ], [ 356037.6587999984622, 258444.657600000500679 ], [ 356027.809500001370907, 258441.181400001049042 ], [ 356018.346500001847744, 258437.318999998271465 ], [ 356006.759099997580051, 258430.366500001400709 ], [ 356002.098099999129772, 258427.290300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704015900", "MAP": "D9-6182-T97", "PARCEL_NAM": "8D-2A", "ACRE": ".52", "LONGITUDE": -64.9568317, "LATITUDE": 18.35588062, "OBJECTID_1": 3483, "PARCEL_NO_": "102704015900", "Tax_Legal_": "8D-2A BONNE RESOLUTION NO 5 LITTLE NORTHSIDE QTR", "Name": "WATSON, ALFONSINA", "Address": "1351 Hospital Gorund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56900, "Improved_V": 71700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.62117788, "SHAPE_Area": 1224.6846957600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356025.821599997580051, 258479.546000000089407 ], [ 356030.126999996602535, 258480.385400000959635 ], [ 356040.555600002408028, 258481.737300001084805 ], [ 356047.894299998879433, 258481.930399999022484 ], [ 356054.653599999845028, 258481.157900001853704 ], [ 356062.378499999642372, 258478.261100001633167 ], [ 356067.01349999755621, 258473.43299999833107 ], [ 356072.807199999690056, 258467.253100000321865 ], [ 356077.635300002992153, 258460.686900001019239 ], [ 356077.635300002992153, 258457.596900001168251 ], [ 356071.648400001227856, 258455.858800001442432 ], [ 356052.529200002551079, 258450.451299998909235 ], [ 356040.362499997019768, 258446.009500000625849 ], [ 356037.6587999984622, 258444.657600000500679 ], [ 356025.821599997580051, 258479.546000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95683438, "LATITUDE": 18.3558082, "OBJECTID_1": 3478, "PARCEL_NO_": "102704015400", "Tax_Legal_": "BONNE RESOLUTION 8D-1REM. & 8D-E(R.O.W.) LITTLE NORTHSIDE QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 433.42925137100002, "SHAPE_Area": 1365.69408413 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356037.6587999984622, 258444.657600000500679 ], [ 356040.362499997019768, 258446.009500000625849 ], [ 356052.529200002551079, 258450.451299998909235 ], [ 356071.648400001227856, 258455.858800001442432 ], [ 356077.635300002992153, 258457.596900001168251 ], [ 356077.635300002992153, 258460.686900001019239 ], [ 356072.807199999690056, 258467.253100000321865 ], [ 356067.01349999755621, 258473.43299999833107 ], [ 356062.378499999642372, 258478.261100001633167 ], [ 356054.653599999845028, 258481.157900001853704 ], [ 356047.894299998879433, 258481.930399999022484 ], [ 356040.555600002408028, 258481.737300001084805 ], [ 356030.126999996602535, 258480.385400000959635 ], [ 356025.821599997580051, 258479.546000000089407 ], [ 356022.98139999806881, 258487.917199999094009 ], [ 356035.72749999910593, 258490.620999999344349 ], [ 356047.314900003373623, 258491.200300000607967 ], [ 356059.674800001084805, 258489.269099999219179 ], [ 356067.399700000882149, 258485.213500000536442 ], [ 356074.738399997353554, 258478.647300001233816 ], [ 356081.497699998319149, 258469.570500001311302 ], [ 356102.668499998748302, 258437.413100000470877 ], [ 356095.671599999070168, 258435.460400000214577 ], [ 356093.39360000193119, 258441.155600000172853 ], [ 356091.278200000524521, 258445.71169999986887 ], [ 356088.674699999392033, 258449.128800000995398 ], [ 356084.769500002264977, 258451.569600000977516 ], [ 356080.701499998569489, 258452.871300000697374 ], [ 356076.633500002324581, 258453.034099999815226 ], [ 356069.962099999189377, 258451.406899999827147 ], [ 356060.198899999260902, 258447.664299998432398 ], [ 356049.248099997639656, 258443.626200001686811 ], [ 356034.163900002837181, 258438.063900001347065 ], [ 356020.98369999974966, 258433.182399999350309 ], [ 356011.220600001513958, 258427.487199999392033 ], [ 356006.013599999248981, 258423.581999998539686 ], [ 356001.620200000703335, 258419.513999998569489 ], [ 355999.179399996995926, 258417.07319999858737 ], [ 355998.691200003027916, 258414.469700001180172 ], [ 356000.155699998140335, 258410.727200001478195 ], [ 356002.979400001466274, 258408.138799998909235 ], [ 355986.514799997210503, 258409.221599999815226 ], [ 355991.309199996292591, 258414.144200000911951 ], [ 355991.888599999248981, 258416.268500000238419 ], [ 355993.819799996912479, 258420.324099998921156 ], [ 355997.102899998426437, 258423.993500001728535 ], [ 356002.098099999129772, 258427.290300000458956 ], [ 356006.759099997580051, 258430.366500001400709 ], [ 356018.346500001847744, 258437.318999998271465 ], [ 356027.809500001370907, 258441.181400001049042 ], [ 356037.6587999984622, 258444.657600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014000", "MAP": "G9-1887-T71", "PARCEL_NAM": "10B", "ACRE": "1.00", "LONGITUDE": -64.9583875, "LATITUDE": 18.35656434, "OBJECTID_1": 3218, "PARCEL_NO_": "102703014000", "Tax_Legal_": "BONNE RESOLUTION 10B LT NORTHSIDE", "Name": "BERRY, CARLA & ROY L.,JR.", "Address": "565 Urb Valencia", "City": "San Juan", "State": "Puerto Rico", "Zip": 923, "Country": "United States", "Land_Value": 124000, "Improved_V": 276900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.97814440299999, "SHAPE_Area": 4613.5020749599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355930.527500003576279, 258543.110800001770258 ], [ 355935.023900002241135, 258492.794799998402596 ], [ 355860.91330000013113, 258526.151700001209974 ], [ 355858.093299999833107, 258531.006400000303984 ], [ 355853.178099997341633, 258540.043200001120567 ], [ 355842.789899997413158, 258546.872499998658895 ], [ 355841.186899997293949, 258547.926300000399351 ], [ 355829.713100001215935, 258555.469200000166893 ], [ 355813.460299998521805, 258566.153900001198053 ], [ 355814.176600001752377, 258567.620200000703335 ], [ 355818.199199996888638, 258575.853900000452995 ], [ 355819.779500000178814, 258579.666499998420477 ], [ 355830.286700002849102, 258576.797200001776218 ], [ 355848.059799998998642, 258572.93189999833703 ], [ 355856.986699998378754, 258566.249899998307228 ], [ 355929.665799997746944, 258552.753699999302626 ], [ 355929.928999997675419, 258549.808400001376867 ], [ 355930.527500003576279, 258543.110800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95745359, "LATITUDE": 18.35702294, "OBJECTID_1": 3478, "PARCEL_NO_": "102704015400", "Tax_Legal_": "BONNE RESOLUTION 8D-1REM. & 8D-E(R.O.W.) LITTLE NORTHSIDE QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.28331677899999, "SHAPE_Area": 613.73727042899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355992.39469999819994, 258563.960700001567602 ], [ 355986.016400001943111, 258573.119300000369549 ], [ 355980.016099996864796, 258580.684799998998642 ], [ 355973.233300000429153, 258593.4679000005126 ], [ 355971.928900003433228, 258597.381099998950958 ], [ 355971.4070999994874, 258600.77250000089407 ], [ 355971.928900003433228, 258606.250999998301268 ], [ 355974.015900000929832, 258613.0337999984622 ], [ 355966.958200000226498, 258615.386399999260902 ], [ 355985.572400003671646, 258617.120400000363588 ], [ 355984.037100002169609, 258608.030799999833107 ], [ 355984.0945999994874, 258601.276299998164177 ], [ 355985.788099996745586, 258591.791000001132488 ], [ 355988.260999999940395, 258585.478399999439716 ], [ 356002.520199999213219, 258566.254799999296665 ], [ 355992.39469999819994, 258563.960700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704016000", "MAP": "D9-7607-T005", "PARCEL_NAM": "8D-1-A", "ACRE": "1.224", "LONGITUDE": -64.95762456, "LATITUDE": 18.35569026, "OBJECTID_1": 3484, "PARCEL_NO_": "102704016000", "Tax_Legal_": "8D-1A ESTATE BONNE RESOLUTION NO. 5 LITTLE NORTHSIDE QTR.", "Name": "RABSATT, PAULETTE", "Address": "PO Box 1212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.74223364300002, "SHAPE_Area": 3566.1296051600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355934.492700003087521, 258498.738899998366833 ], [ 355940.362499997019768, 258489.116200000047684 ], [ 355946.623599998652935, 258481.289900001138449 ], [ 355953.928199999034405, 258478.159299999475479 ], [ 355964.885200001299381, 258475.028799999505281 ], [ 355975.842100001871586, 258473.202599998563528 ], [ 355991.233999997377396, 258472.941700000315905 ], [ 355999.420400001108646, 258474.398600000888109 ], [ 355985.129299998283386, 258454.506900001317263 ], [ 356002.317199997603893, 258427.662799999117851 ], [ 356002.098099999129772, 258427.290300000458956 ], [ 355997.102899998426437, 258423.993500001728535 ], [ 355993.819799996912479, 258420.324099998921156 ], [ 355991.888599999248981, 258416.268500000238419 ], [ 355991.309199996292591, 258414.144200000911951 ], [ 355986.514799997210503, 258409.221599999815226 ], [ 355960.97860000282526, 258406.750300001353025 ], [ 355947.88459999859333, 258402.974199999123812 ], [ 355947.861199997365475, 258405.718199998140335 ], [ 355941.004299998283386, 258453.369199998676777 ], [ 355935.023900002241135, 258492.794799998402596 ], [ 355934.492700003087521, 258498.738899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704016100", "MAP": null, "PARCEL_NAM": "8D-1B", "ACRE": ".60", "LONGITUDE": -64.95749604, "LATITUDE": 18.35625505, "OBJECTID_1": 3485, "PARCEL_NO_": "102704016100", "Tax_Legal_": "8D-1B ESTATE BONNE RESOLUTION MO.5 LITTLE NORTHSIDE QTR.", "Name": "SMITH, ALONZO E. & CELECIA M.", "Address": "PO Box 304340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.12695705900001, "SHAPE_Area": 3214.28479294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355996.959299996495247, 258535.621800001710653 ], [ 356022.98139999806881, 258487.917199999094009 ], [ 356008.973700001835823, 258484.420400001108646 ], [ 355989.407799996435642, 258481.550700001418591 ], [ 355983.146700002253056, 258481.289900001138449 ], [ 355975.320299997925758, 258481.550700001418591 ], [ 355966.972199998795986, 258482.855099998414516 ], [ 355955.232600003480911, 258486.507399998605251 ], [ 355946.101899996399879, 258492.246800001710653 ], [ 355942.188699997961521, 258500.07319999858737 ], [ 355940.101599998772144, 258505.8125 ], [ 355941.666900001466274, 258514.943300001323223 ], [ 355947.667099997401237, 258523.030499998480082 ], [ 355956.276100002229214, 258529.030799999833107 ], [ 355968.798299998044968, 258531.900400001555681 ], [ 355980.277000002563, 258533.465700000524521 ], [ 355994.10360000282526, 258535.030999999493361 ], [ 355996.959299996495247, 258535.621800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95753071, "LATITUDE": 18.3563039, "OBJECTID_1": 3478, "PARCEL_NO_": "102704015400", "Tax_Legal_": "BONNE RESOLUTION 8D-1REM. & 8D-E(R.O.W.) LITTLE NORTHSIDE QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 441.96736234799999, "SHAPE_Area": 1758.22469662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356022.98139999806881, 258487.917199999094009 ], [ 356025.821599997580051, 258479.546000000089407 ], [ 355999.420400001108646, 258474.398600000888109 ], [ 355991.233999997377396, 258472.941700000315905 ], [ 355975.842100001871586, 258473.202599998563528 ], [ 355964.885200001299381, 258475.028799999505281 ], [ 355953.928199999034405, 258478.159299999475479 ], [ 355946.623599998652935, 258481.289900001138449 ], [ 355940.362499997019768, 258489.116200000047684 ], [ 355934.492700003087521, 258498.738899998366833 ], [ 355933.145000003278255, 258513.82039999961853 ], [ 355936.710199996829033, 258523.030499998480082 ], [ 355940.101599998772144, 258528.248100001364946 ], [ 355950.536799997091293, 258535.8136 ], [ 355957.58049999922514, 258538.161499999463558 ], [ 355972.189800001680851, 258540.248599998652935 ], [ 355991.755699999630451, 258542.33559999987483 ], [ 355995.147100001573563, 258543.379099998623133 ], [ 355998.016800001263618, 258545.466099999845028 ], [ 355999.582099996507168, 258548.596700001507998 ], [ 355999.060300000011921, 258553.814300000667572 ], [ 355996.190700002014637, 258558.510099999606609 ], [ 355992.39469999819994, 258563.960700001567602 ], [ 356002.520199999213219, 258566.254799999296665 ], [ 356005.321400001645088, 258562.945000000298023 ], [ 356008.973700001835823, 258554.596900001168251 ], [ 356010.278099998831749, 258546.770500000566244 ], [ 356009.49549999833107, 258542.596500001847744 ], [ 356007.147600002586842, 258539.204999998211861 ], [ 356001.669100001454353, 258536.596200000494719 ], [ 355996.959299996495247, 258535.621800001710653 ], [ 355994.10360000282526, 258535.030999999493361 ], [ 355980.277000002563, 258533.465700000524521 ], [ 355968.798299998044968, 258531.900400001555681 ], [ 355956.276100002229214, 258529.030799999833107 ], [ 355947.667099997401237, 258523.030499998480082 ], [ 355941.666900001466274, 258514.943300001323223 ], [ 355940.101599998772144, 258505.8125 ], [ 355942.188699997961521, 258500.07319999858737 ], [ 355946.101899996399879, 258492.246800001710653 ], [ 355955.232600003480911, 258486.507399998605251 ], [ 355966.972199998795986, 258482.855099998414516 ], [ 355975.320299997925758, 258481.550700001418591 ], [ 355983.146700002253056, 258481.289900001138449 ], [ 355989.407799996435642, 258481.550700001418591 ], [ 356008.973700001835823, 258484.420400001108646 ], [ 356022.98139999806881, 258487.917199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702045100", "MAP": "D9-8974-T015", "PARCEL_NAM": "8D REM", "ACRE": "12.26", "LONGITUDE": -64.95705467000001, "LATITUDE": 18.35807268, "OBJECTID_1": 3142, "PARCEL_NO_": "102702045100", "Tax_Legal_": "8 BONNE RESOLUTION NO.5 LITTLE NORTHSIDE", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 417300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1051.81870506, "SHAPE_Area": 50541.265267299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356108.233999997377396, 258795.442899998277426 ], [ 356067.399700000882149, 258485.213500000536442 ], [ 356059.674800001084805, 258489.269099999219179 ], [ 356047.314900003373623, 258491.200300000607967 ], [ 356035.72749999910593, 258490.620999999344349 ], [ 356022.98139999806881, 258487.917199999094009 ], [ 355996.959299996495247, 258535.621800001710653 ], [ 356001.669100001454353, 258536.596200000494719 ], [ 356007.147600002586842, 258539.204999998211861 ], [ 356009.49549999833107, 258542.596500001847744 ], [ 356010.278099998831749, 258546.770500000566244 ], [ 356008.973700001835823, 258554.596900001168251 ], [ 356005.321400001645088, 258562.945000000298023 ], [ 356002.520199999213219, 258566.254799999296665 ], [ 355988.260999999940395, 258585.478399999439716 ], [ 355985.788099996745586, 258591.791000001132488 ], [ 355984.0945999994874, 258601.276299998164177 ], [ 355984.037100002169609, 258608.030799999833107 ], [ 355985.572400003671646, 258617.120400000363588 ], [ 355966.958200000226498, 258615.386399999260902 ], [ 355924.820699997246265, 258629.432199999690056 ], [ 355923.151799999177456, 258655.872900001704693 ], [ 355923.886200003325939, 258664.322700001299381 ], [ 355944.306199997663498, 258823.021099999547005 ], [ 356089.570900000631809, 258903.792300000786781 ], [ 356117.067500002682209, 258799.737100001424551 ], [ 356108.233999997377396, 258795.442899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021600", "MAP": "D9-6859-T000", "PARCEL_NAM": "2B-2", "ACRE": ".100", "LONGITUDE": -64.95764654, "LATITUDE": 18.35285719, "OBJECTID_1": 3508, "PARCEL_NO_": "102704021600", "Tax_Legal_": "2B-2 R.O.W. BONNE RESOLUTION No.5 LITTLE NORTHSIDE QTR", "Name": "JAMES-PLASKETT, VIMYRKA; VIONETTE & KELVIN JAMES", "Address": "215 Lindsey Ct", "City": "Franklin Park", "State": "New Jersey", "Zip": 8823, "Country": "United States", "Land_Value": 172700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.991865301, "SHAPE_Area": 348.08740663700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355947.02759999781847, 258124.956999998539686 ], [ 355946.285999998450279, 258133.204799998551607 ], [ 355954.711599998176098, 258133.6261 ], [ 355956.186099998652935, 258134.258000001311302 ], [ 355956.396700002253056, 258135.311200000345707 ], [ 355956.818000003695488, 258136.364399999380112 ], [ 355962.505300000309944, 258136.153799999505281 ], [ 355962.294699996709824, 258134.679299999028444 ], [ 355963.137199997901917, 258133.6261 ], [ 355990.48929999768734, 258134.60080000013113 ], [ 355984.108999997377396, 258126.315900001674891 ], [ 355947.02759999781847, 258124.956999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104010200", "MAP": "D9-7790-T006", "PARCEL_NAM": "17 REM", "ACRE": ".432", "LONGITUDE": -64.95737507, "LATITUDE": 18.368521, "OBJECTID_1": 494, "PARCEL_NO_": "101104010200", "Tax_Legal_": "BONNE RSOLUTION 17 No.5 LT. NORTHSIDE", "Name": "QUERRARD, SHAWN C.", "Address": "PO BOX 4101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.78530590999998, "SHAPE_Area": 2928.7766348800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355942.499399997293949, 259890.185199998319149 ], [ 355952.541299998760223, 259889.868099998682737 ], [ 355975.718800000846386, 259884.153099998831749 ], [ 355992.387500002980232, 259878.75560000166297 ], [ 356008.421300001442432, 259873.5168999992311 ], [ 356016.517499998211861, 259866.055599998682737 ], [ 356031.757500000298023, 259851.450599998235703 ], [ 356042.728799998760223, 259837.867199998348951 ], [ 355933.886100001633167, 259856.872000001370907 ], [ 355940.127999998629093, 259881.410000000149012 ], [ 355942.473200000822544, 259890.083999998867512 ], [ 355942.499399997293949, 259890.185199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104010100", "MAP": "F9-1438-T64", "PARCEL_NAM": "17-2", "ACRE": null, "LONGITUDE": -64.95699684, "LATITUDE": 18.36812187, "OBJECTID_1": 493, "PARCEL_NO_": "101104010100", "Tax_Legal_": "BONNE RESOLUTION 17-2 LT. NORTHSIDE", "Name": "QUERRARD, SHAWN C.", "Address": "PO BOX 4101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 151400, "Improved_V": 65100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 469.85519948500001, "SHAPE_Area": 8086.0387437700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355958.474600002169609, 259810.210499998182058 ], [ 355954.444899998605251, 259809.966400001198053 ], [ 355921.335699997842312, 259815.606100000441074 ], [ 355932.271600000560284, 259857.069899998605251 ], [ 355933.886100001633167, 259856.872000001370907 ], [ 356049.368600003421307, 259836.707899998873472 ], [ 356050.983000002801418, 259836.510000001639128 ], [ 356059.865000002086163, 259835.105000000447035 ], [ 356116.387800000607967, 259826.068399999290705 ], [ 356115.145599998533726, 259782.572999998927116 ], [ 356022.275799997150898, 259798.700399998575449 ], [ 356014.198299996554852, 259800.322999998927116 ], [ 355994.002700001001358, 259804.590700000524521 ], [ 355988.347800001502037, 259805.811000000685453 ], [ 355967.356700003147125, 259808.805599998682737 ], [ 355958.474600002169609, 259810.210499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104017800", "MAP": "D9-7790-T006", "PARCEL_NAM": "17-A", "ACRE": ".52", "LONGITUDE": -64.95752398, "LATITUDE": 18.36914456, "OBJECTID_1": 561, "PARCEL_NO_": "101104017800", "Tax_Legal_": "BONNE RSOLUTION 17-A No.5 LT. NORTHSIDE", "Name": "JERRY QUERRARD", "Address": "7585 Estate Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.96461962399999, "SHAPE_Area": 1660.9057418899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355985.248800002038479, 259963.976399999111891 ], [ 355965.192400000989437, 259893.366900000721216 ], [ 355954.446299999952316, 259896.535599999129772 ], [ 355944.342299997806549, 259897.301100000739098 ], [ 355945.595899999141693, 259902.1418999992311 ], [ 355964.344999998807907, 259973.011700000613928 ], [ 355975.663999997079372, 259969.515799999237061 ], [ 355985.248800002038479, 259963.976399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104010200", "MAP": "D9-7790-T006", "PARCEL_NAM": "17-F", "ACRE": ".21", "LONGITUDE": -64.95721528, "LATITUDE": 18.36861189, "OBJECTID_1": 494, "PARCEL_NO_": "101104010200", "Tax_Legal_": "BONNE RSOLUTION 17 No.5 LT. NORTHSIDE", "Name": "QUERRARD, SHAWN C.", "Address": "PO BOX 4101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.92158908599998, "SHAPE_Area": 713.74028019499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356042.728799998760223, 259837.867199998348951 ], [ 356031.757500000298023, 259851.450599998235703 ], [ 356016.517499998211861, 259866.055599998682737 ], [ 356008.421300001442432, 259873.5168999992311 ], [ 355992.387500002980232, 259878.75560000166297 ], [ 355975.718800000846386, 259884.153099998831749 ], [ 355952.541299998760223, 259889.868099998682737 ], [ 355942.499399997293949, 259890.185199998319149 ], [ 355944.342299997806549, 259897.301100000739098 ], [ 355954.446299999952316, 259896.535599999129772 ], [ 355966.82880000025034, 259892.884399998933077 ], [ 355986.672499999403954, 259885.899399999529123 ], [ 356003.023800000548363, 259881.4543999992311 ], [ 356014.295000001788139, 259876.691899999976158 ], [ 356032.71000000089407, 259858.276900000870228 ], [ 356051.317100003361702, 259836.457100000232458 ], [ 356050.983000002801418, 259836.510000001639128 ], [ 356049.368600003421307, 259836.707899998873472 ], [ 356042.728799998760223, 259837.867199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104017900", "MAP": "D9-7790-T006", "PARCEL_NAM": "17-B", "ACRE": ".52", "LONGITUDE": -64.95731565, "LATITUDE": 18.3690223, "OBJECTID_1": 562, "PARCEL_NO_": "101104017900", "Tax_Legal_": "BONNE RSOLUTION 17-B No.5 LT. NORTHSIDE", "Name": "MELVIN AND DOROTHY BRYAN JOINT REVOCABLE TRUST", "Address": "921 Harrison St", "City": "Auburn", "State": "Kansas", "Zip": 66402, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.65935142800001, "SHAPE_Area": 1893.61028431 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356005.031199999153614, 259935.25560000166297 ], [ 355995.637999996542931, 259883.462200000882149 ], [ 355986.672499999403954, 259885.899399999529123 ], [ 355966.82880000025034, 259892.884399998933077 ], [ 355965.192400000989437, 259893.366900000721216 ], [ 355985.248800002038479, 259963.976399999111891 ], [ 355985.388300001621246, 259963.895799998193979 ], [ 355990.260300002992153, 259959.924899999052286 ], [ 356000.036799997091293, 259948.183699999004602 ], [ 356005.031199999153614, 259935.25560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104018100", "MAP": "D9-7790-T006", "PARCEL_NAM": "17-D", "ACRE": ".52", "LONGITUDE": -64.95668471, "LATITUDE": 18.36864902, "OBJECTID_1": 564, "PARCEL_NO_": "101104018100", "Tax_Legal_": "BONNE RSOLUTION 17-D No.5 LT. NORTHSIDE", "Name": "QUERRARD, RODNEY F. & OTHERS", "Address": "7629 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.242423006, "SHAPE_Area": 2602.1715107800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356074.152500003576279, 259920.999400001019239 ], [ 356065.775700002908707, 259834.160000000149012 ], [ 356059.865000002086163, 259835.105000000447035 ], [ 356051.317100003361702, 259836.457100000232458 ], [ 356032.71000000089407, 259858.276900000870228 ], [ 356027.380300000309944, 259863.606600001454353 ], [ 356034.138800002634525, 259867.484400000423193 ], [ 356039.954300001263618, 259911.991200000047684 ], [ 356041.469800002872944, 259912.003600001335144 ], [ 356044.687899999320507, 259912.874299999326468 ], [ 356047.895099997520447, 259915.011500000953674 ], [ 356052.738399997353554, 259914.417899999767542 ], [ 356056.762800000607967, 259915.295200001448393 ], [ 356061.573700003325939, 259918.500999998301268 ], [ 356063.155699998140335, 259922.10249999910593 ], [ 356070.419699996709824, 259921.317600000649691 ], [ 356074.152500003576279, 259920.999400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104018000", "MAP": "D9-7790-T006", "PARCEL_NAM": "17-C", "ACRE": ".52", "LONGITUDE": -64.95702372, "LATITUDE": 18.36882686, "OBJECTID_1": 563, "PARCEL_NO_": "101104018000", "Tax_Legal_": "BONNE RSOLUTION 17-C No.5 LT. NORTHSIDE", "Name": "QUERRARD, PAULA E., BRETT A.& DONNA M.OVERBEEK", "Address": "PO Box 304101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.32820103200001, "SHAPE_Area": 1897.1584688800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356039.954300001263618, 259911.991200000047684 ], [ 356034.138800002634525, 259867.484400000423193 ], [ 356027.380300000309944, 259863.606600001454353 ], [ 356014.295000001788139, 259876.691899999976158 ], [ 356003.023800000548363, 259881.4543999992311 ], [ 355995.637999996542931, 259883.462200000882149 ], [ 356005.031199999153614, 259935.25560000166297 ], [ 356005.808600001037121, 259933.243299998342991 ], [ 356013.898699998855591, 259930.143100000917912 ], [ 356018.767200000584126, 259926.594399999827147 ], [ 356022.024800002574921, 259922.821299999952316 ], [ 356024.486900001764297, 259917.775199998170137 ], [ 356030.168799996376038, 259913.388799998909235 ], [ 356035.019299998879433, 259911.950800001621246 ], [ 356039.954300001263618, 259911.991200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104018200", "MAP": "D9-7790-T006", "PARCEL_NAM": "17-E", "ACRE": ".52", "LONGITUDE": -64.95630888, "LATITUDE": 18.36860285, "OBJECTID_1": 565, "PARCEL_NO_": "101104018200", "Tax_Legal_": "BONNE RSOLUTION 17-E No.5 LT. NORTHSIDE", "Name": "QUERRARD, SHAWN C.", "Address": "PO BOX 4101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.48838738000001, "SHAPE_Area": 4277.34957691 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356065.775700002908707, 259834.160000000149012 ], [ 356074.152500003576279, 259920.999400001019239 ], [ 356093.014499999582767, 259919.391600001603365 ], [ 356117.997500002384186, 259921.073699999600649 ], [ 356116.901000000536442, 259860.480900000780821 ], [ 356116.953199997544289, 259854.359600000083447 ], [ 356116.387800000607967, 259826.068399999290705 ], [ 356065.775700002908707, 259834.160000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103020200", "MAP": "B9-101-T64", "PARCEL_NAM": "17-1", "ACRE": null, "LONGITUDE": -64.95863261, "LATITUDE": 18.36799113, "OBJECTID_1": 418, "PARCEL_NO_": "101103020200", "Tax_Legal_": "BOONE RESOLUTION 17-1 LT. NORTHSIDE", "Name": "DEWERD, DAWN PETRELLA", "Address": "PO Box 8467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 509200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1609.71037667, "SHAPE_Area": 52272.036854899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355942.473200000822544, 259890.083999998867512 ], [ 355940.127999998629093, 259881.410000000149012 ], [ 355933.886100001633167, 259856.872000001370907 ], [ 355932.271600000560284, 259857.069899998605251 ], [ 355921.335699997842312, 259815.606100000441074 ], [ 355904.145300000905991, 259751.081900000572205 ], [ 355856.519199997186661, 259567.673900000751019 ], [ 355858.162399999797344, 259564.098799999803305 ], [ 355781.132299996912479, 259519.349800001829863 ], [ 355787.80969999730587, 259776.72749999910593 ], [ 355790.238399997353554, 259870.261799998581409 ], [ 355790.207800000905991, 259873.85020000115037 ], [ 355790.177199997007847, 259877.438499998301268 ], [ 355796.30009999871254, 260105.258600000292063 ], [ 355802.813500002026558, 260097.923599999397993 ], [ 355808.529700003564358, 260089.526599999517202 ], [ 355814.288900002837181, 260076.063799999654293 ], [ 355818.428400002419949, 260063.432000000029802 ], [ 355822.526500001549721, 260055.655099999159575 ], [ 355829.124399997293949, 260038.399500001221895 ], [ 355830.755000002682209, 260036.301899999380112 ], [ 355834.063000001013279, 260026.618599999696016 ], [ 355836.516099996864796, 260022.627900000661612 ], [ 355839.824100002646446, 260012.944699998944998 ], [ 355844.746500000357628, 260003.0636 ], [ 355848.876900002360344, 259991.487300001084805 ], [ 355850.507500000298023, 259989.389699999243021 ], [ 355851.346199996769428, 259985.596900001168251 ], [ 355852.976800002157688, 259983.499299999326468 ], [ 355853.817299999296665, 259979.495400000363588 ], [ 355855.453299999237061, 259976.764499999582767 ], [ 355865.172200001776218, 259971.777800001204014 ], [ 355872.457800000905991, 259968.46000000089407 ], [ 355882.156900003552437, 259965.795099999755621 ], [ 355895.075900003314018, 259963.789900001138449 ], [ 355906.36429999768734, 259963.88230000063777 ], [ 355915.2246999964118, 259965.010299999266863 ], [ 355925.685199998319149, 259967.629000000655651 ], [ 355932.10869999974966, 259970.848000001162291 ], [ 355940.956600002944469, 259973.453600000590086 ], [ 355955.462999999523163, 259974.416700001806021 ], [ 355964.344999998807907, 259973.011700000613928 ], [ 355945.595899999141693, 259902.1418999992311 ], [ 355942.473200000822544, 259890.083999998867512 ] ], [ [ 355821.687399998307228, 259775.527100000530481 ], [ 355870.543399997055531, 259814.557100001722574 ], [ 355840.359200000762939, 259855.473299998790026 ], [ 355831.448399998247623, 259860.255499999970198 ], [ 355814.45830000191927, 259866.871500000357628 ], [ 355799.914099998772144, 259870.340999998152256 ], [ 355821.687399998307228, 259775.527100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702041600", "MAP": "D9-8435-T010", "PARCEL_NAM": "14-43", "ACRE": ".49", "LONGITUDE": -64.95805278, "LATITUDE": 18.36426904, "OBJECTID_1": 3112, "PARCEL_NO_": "102702041600", "Tax_Legal_": "BONNE RESOLUTION 14-43 LITTLE NORTHSIDE", "Name": "INDUSTRIOUS, JR., JULIAN & AKEDA", "Address": "PO Box 304985", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25500, "Improved_V": 224800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.74100630699999, "SHAPE_Area": 1015.22351598 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355914.178800001740456, 259369.872499998658895 ], [ 355892.379699997603893, 259385.118400000035763 ], [ 355893.536200001835823, 259387.280799999833107 ], [ 355896.723700001835823, 259391.739900000393391 ], [ 355902.306800000369549, 259398.962799999862909 ], [ 355907.034999996423721, 259411.878199998289347 ], [ 355909.39639999717474, 259418.652499999850988 ], [ 355935.396200001239777, 259395.644999999552965 ], [ 355923.413000002503395, 259382.459100000560284 ], [ 355917.835299998521805, 259374.603000000119209 ], [ 355914.178800001740456, 259369.872499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042600", "MAP": "D9-8632-T012", "PARCEL_NAM": "14-5-REM", "ACRE": ".225", "LONGITUDE": -64.95683155, "LATITUDE": 18.36314498, "OBJECTID_1": 3119, "PARCEL_NO_": "102702042600", "Tax_Legal_": "BONNE RESOLUTION 14-5 LT NORTHSIDE", "Name": "ROMNEY(TRUSTEE), EILEEN", "Address": "PO Box 8105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44200, "Improved_V": 224300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.535574732, "SHAPE_Area": 797.25073648099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356042.231499999761581, 259284.917899999767542 ], [ 356060.264799997210503, 259278.24210000038147 ], [ 356057.553199999034405, 259254.57880000025034 ], [ 356026.872000001370907, 259259.182900000363588 ], [ 356027.651299998164177, 259262.355599999427795 ], [ 356025.909199997782707, 259277.540100000798702 ], [ 356042.231499999761581, 259284.917899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042500", "MAP": "D9-8632-T012", "PARCEL_NAM": "14-4-A", "ACRE": ".007", "LONGITUDE": -64.95694937, "LATITUDE": 18.36325327, "OBJECTID_1": 3118, "PARCEL_NO_": "102702042500", "Tax_Legal_": "BONNE RESOLUTION 14-4 5 LITTLE NORTHSIDE", "Name": "ROMNEY(TRUSTEE), EILEEN", "Address": "PO Box 8105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52700, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.121097547200002, "SHAPE_Area": 38.014287687500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356024.602899998426437, 259281.607599999755621 ], [ 356042.231499999761581, 259284.917899999767542 ], [ 356025.909199997782707, 259277.540100000798702 ], [ 356024.602899998426437, 259281.607599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104018600", "MAP": "D9-8634-T012", "PARCEL_NAM": "16-4", "ACRE": ".30", "LONGITUDE": -64.95700277, "LATITUDE": 18.36573954, "OBJECTID_1": 567, "PARCEL_NO_": "101104018600", "Tax_Legal_": "16-4 BONNE RESOLUTION No.5 LITTLE NORTHSIDE QUARTER", "Name": "LAPLACE, AIMEE C. & DARYL A.", "Address": "7794 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.33740367300001, "SHAPE_Area": 1378.86711339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356048.344999998807907, 259574.42790000140667 ], [ 356044.100900001823902, 259542.832800000905991 ], [ 356036.349799998104572, 259541.115800000727177 ], [ 355998.110799998044968, 259542.81529999896884 ], [ 355996.99379999935627, 259548.136500000953674 ], [ 355997.65990000218153, 259564.607200000435114 ], [ 356004.097800001502037, 259566.137600000947714 ], [ 356008.914099998772144, 259568.710099998861551 ], [ 356019.370999999344349, 259571.750999998301268 ], [ 356038.724299997091293, 259571.698300000280142 ], [ 356048.344999998807907, 259574.42790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104018500", "MAP": "D9-8634-T012", "PARCEL_NAM": "16-3", "ACRE": ".31", "LONGITUDE": -64.95652801, "LATITUDE": 18.36583235, "OBJECTID_1": 566, "PARCEL_NO_": "101104018500", "Tax_Legal_": "16-3 BONNE RESOLUTION No.5 LITTLE NORTHSIDE QUARTER", "Name": "DONNO E. YOHO & GENE A LAPLACE", "Address": "4ABC Estate Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.03865069899999, "SHAPE_Area": 1729.36681346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356044.100900001823902, 259542.832800000905991 ], [ 356048.344999998807907, 259574.42790000140667 ], [ 356070.901299998164177, 259580.827599998563528 ], [ 356090.972800001502037, 259591.124400001019239 ], [ 356098.163000002503395, 259598.993700001388788 ], [ 356099.730700001120567, 259604.283900000154972 ], [ 356102.147799998521805, 259604.514699999243021 ], [ 356101.375699996948242, 259600.497600000351667 ], [ 356092.678700000047684, 259553.593699999153614 ], [ 356044.100900001823902, 259542.832800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012200", "MAP": "D9-7531-T005", "PARCEL_NAM": "5L-1", "ACRE": ".408", "LONGITUDE": -64.93196063000001, "LATITUDE": 18.35511763, "OBJECTID_1": 4437, "PARCEL_NO_": "102804012200", "Tax_Legal_": "PAR 5 REM, 5L-1, EASEMENT \"A\" & 5M GREEN BELT MISGUNST 6 GREAT NORTHSIDE QTR", "Name": "CONN J & DEBORAH B. DAVIS REVOC TR", "Address": "PO Box 7997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.92485201400001, "SHAPE_Area": 2240.1803096399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358693.102700002491474, 258363.169900000095367 ], [ 358681.081799998879433, 258354.416700001806021 ], [ 358671.95160000026226, 258384.950500000268221 ], [ 358664.594099998474121, 258396.711500000208616 ], [ 358654.752899996936321, 258416.051600001752377 ], [ 358652.191899999976158, 258432.706999998539686 ], [ 358684.471400000154972, 258429.804800000041723 ], [ 358681.906800001859665, 258446.882399998605251 ], [ 358689.151000000536442, 258448.419399999082088 ], [ 358698.712700001895428, 258367.226599998772144 ], [ 358693.102700002491474, 258363.169900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021400", "MAP": "F9-1070-T63", "PARCEL_NAM": "5BC", "ACRE": null, "LONGITUDE": -64.93298874, "LATITUDE": 18.35725965, "OBJECTID_1": 4098, "PARCEL_NO_": "102802021400", "Tax_Legal_": "MISGUNST 5BD GR NORTHSIDE QTR", "Name": "TUNICK, JAMES & REBECCA", "Address": "1336 Beltjen Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130400, "Improved_V": 569200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.36396948800001, "SHAPE_Area": 344.52239759100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358569.123000003397465, 258596.617800001055002 ], [ 358562.822300001978874, 258659.666299998760223 ], [ 358573.653800003230572, 258659.623100001364946 ], [ 358570.784599997103214, 258617.803100001066923 ], [ 358570.046599999070168, 258609.775499999523163 ], [ 358569.123000003397465, 258596.617800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021500", "MAP": "D9-7720-T006", "PARCEL_NAM": "5BA-REM", "ACRE": ".432", "LONGITUDE": -64.93277596, "LATITUDE": 18.35715028, "OBJECTID_1": 4099, "PARCEL_NO_": "102802021500", "Tax_Legal_": "5Bc,5Ba-REM & 5Ea-1 MISGUNST NO.6 GREAT NORTHSIDE QTR", "Name": "ADAM REEVE LIVING REVOCABLE TRUST", "Address": "PO Box 8803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 122400, "Improved_V": 317300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.08880039300001, "SHAPE_Area": 2464.5242978800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358570.046599999070168, 258609.775499999523163 ], [ 358570.784599997103214, 258617.803100001066923 ], [ 358573.653800003230572, 258659.623100001364946 ], [ 358582.523199997842312, 258659.695700000971556 ], [ 358613.217000000178814, 258653.614100001752377 ], [ 358609.679999999701977, 258595.534400001168251 ], [ 358569.123000003397465, 258596.617800001055002 ], [ 358570.046599999070168, 258609.775499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93319295000001, "LATITUDE": 18.35714335, "OBJECTID_1": 4098, "PARCEL_NO_": "102802021400", "Tax_Legal_": "MISGUNST 5BD GR NORTHSIDE QTR", "Name": "TUNICK, JAMES & REBECCA", "Address": "1336 Beltjen Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130400, "Improved_V": 569200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.29344850699999, "SHAPE_Area": 2330.194904 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358562.822300001978874, 258659.666299998760223 ], [ 358569.123000003397465, 258596.617800001055002 ], [ 358561.286799997091293, 258596.827100001275539 ], [ 358554.834499999880791, 258596.985399998724461 ], [ 358542.734399996697903, 258597.519600000232458 ], [ 358526.604599997401237, 258597.809799998998642 ], [ 358522.402199998497963, 258617.829300001263618 ], [ 358523.977099999785423, 258622.275100000202656 ], [ 358526.347499996423721, 258627.994100000709295 ], [ 358538.978699997067451, 258659.761500000953674 ], [ 358562.822300001978874, 258659.666299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901010700", "MAP": "F9-1016-T62", "PARCEL_NAM": "5FAA", "ACRE": null, "LONGITUDE": -64.9313709, "LATITUDE": 18.35633223, "OBJECTID_1": 4680, "PARCEL_NO_": "102901010700", "Tax_Legal_": "MISGUNST 5FAA 6 GR NORTHSIDE", "Name": "LACORTE, PATRICIA M. (TRUSTEE)", "Address": "PO BOX 301856", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99700, "Improved_V": 264200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.82917191199999, "SHAPE_Area": 1394.84563254 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358719.680100001394749, 258556.326900001615286 ], [ 358775.481100000441074, 258537.363000001758337 ], [ 358767.547399997711182, 258522.099399998784065 ], [ 358736.896799996495247, 258523.115100000053644 ], [ 358729.612999998033047, 258526.221900001168251 ], [ 358715.85530000180006, 258532.019900001585484 ], [ 358713.427400000393391, 258533.055500000715256 ], [ 358712.473600000143051, 258550.357299998402596 ], [ 358714.017899997532368, 258558.391499999910593 ], [ 358719.680100001394749, 258556.326900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901010500", "MAP": "D9-8122-T008", "PARCEL_NAM": "5FA-1", "ACRE": ".659", "LONGITUDE": -64.93104725000001, "LATITUDE": 18.3569105, "OBJECTID_1": 4679, "PARCEL_NO_": "102901010500", "Tax_Legal_": "5FA ESTATE MISGUNST No.6 GREAT NORTHSIDE QTR.", "Name": "COLEMAN, MARION T", "Address": "190 Lawrence St", "City": "New Haven", "State": "Connecticut", "Zip": 6511, "Country": "United States", "Land_Value": 167900, "Improved_V": 354900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.85546563700001, "SHAPE_Area": 2788.2667315200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358791.319099999964237, 258566.825199998915195 ], [ 358732.090999998152256, 258603.827300000935793 ], [ 358741.649099998176098, 258627.8564000017941 ], [ 358815.961099997162819, 258613.054699998348951 ], [ 358812.786200001835823, 258607.118099998682737 ], [ 358791.319099999964237, 258566.825199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901011100", "MAP": "D9-8411-T010", "PARCEL_NAM": "5D-4", "ACRE": "1.16", "LONGITUDE": -64.93015115, "LATITUDE": 18.35661481, "OBJECTID_1": 4684, "PARCEL_NO_": "102901011100", "Tax_Legal_": "MISGUNST 5D-4&5D-5 GT NORTHSIDE QTR", "Name": "ADELL, MICHAEL & NADIA", "Address": "PO Box 8045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 131600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.64815992500002, "SHAPE_Area": 4947.7568992699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358848.699100002646446, 258556.327399998903275 ], [ 358812.786200001835823, 258607.118099998682737 ], [ 358815.961099997162819, 258613.054699998348951 ], [ 358836.962999999523163, 258608.793699998408556 ], [ 358900.774899996817112, 258596.017000000923872 ], [ 358907.799099996685982, 258528.735700000077486 ], [ 358869.178800001740456, 258518.709300000220537 ], [ 358867.541000001132488, 258521.651200000196695 ], [ 358862.561099998652935, 258538.286800000816584 ], [ 358854.388199999928474, 258551.096700001507998 ], [ 358848.699100002646446, 258556.327399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102802027500", "MAP": "D9-7391-T004", "PARCEL_NAM": "4B-A", "ACRE": ".27", "LONGITUDE": -64.93498859, "LATITUDE": 18.3591654, "OBJECTID_1": 4157, "PARCEL_NO_": "102802027500", "Tax_Legal_": "4B-A LERKENLUND #9 GT.NORTHSIDE QTR.", "Name": "WINDFALL TRUST", "Address": "7272 Estate Misgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 128100, "Improved_V": 378100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.00391416100001, "SHAPE_Area": 408.03874448300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358367.18469999730587, 258815.59910000115633 ], [ 358364.590599998831749, 258808.453600000590086 ], [ 358364.538900002837181, 258808.540399998426437 ], [ 358362.441460712114349, 258812.320812040561577 ], [ 358360.56700000166893, 258816.216600000858307 ], [ 358355.933326568978373, 258835.748619292746298 ], [ 358350.830300003290176, 258855.16330000013113 ], [ 358349.357741688203532, 258861.744787909876322 ], [ 358347.55969999730587, 258868.244899999350309 ], [ 358344.621184972871561, 258876.870238858129596 ], [ 358341.109899997711182, 258885.2787000015378 ], [ 358349.2162000015378, 258880.278799999505281 ], [ 358352.9825560823665, 258869.569366832613014 ], [ 358356.186946055735461, 258858.678577982296702 ], [ 358358.820699997246265, 258847.635899998247623 ], [ 358361.349776131566614, 258835.09850866268971 ], [ 358364.324000000953674, 258822.659200001507998 ], [ 358367.145999997854233, 258815.684099998325109 ], [ 358367.18469999730587, 258815.59910000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021200", "MAP": "D9-3039-T85", "PARCEL_NAM": "2A-2", "ACRE": ".52", "LONGITUDE": -64.93463331, "LATITUDE": 18.35881625, "OBJECTID_1": 4096, "PARCEL_NO_": "102802021200", "Tax_Legal_": "2A-2 ESTATE MISGUNST No.6 GREAT NORTHSIDE QTR.", "Name": "BRIN, JR. , GENE & FRANCIA", "Address": "5H-2 ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68900, "Improved_V": 345000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.35386244700001, "SHAPE_Area": 2128.64868604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358422.71000000089407, 258797.968800000846386 ], [ 358408.277699999511242, 258762.549800001084805 ], [ 358406.472699999809265, 258785.122000001370907 ], [ 358405.567500002682209, 258796.724800001829863 ], [ 358399.160099998116493, 258791.606100000441074 ], [ 358400.068899996578693, 258779.581199999898672 ], [ 358398.468900002539158, 258778.090399999171495 ], [ 358396.048199996352196, 258778.281700000166893 ], [ 358387.097800001502037, 258787.707699999213219 ], [ 358382.278054065827746, 258792.638189260469517 ], [ 358377.851895281346515, 258797.924851123592816 ], [ 358373.845557687978726, 258803.536351308721351 ], [ 358370.282787026604638, 258809.439430204889504 ], [ 358367.18469999730587, 258815.59910000115633 ], [ 358367.145999997854233, 258815.684099998325109 ], [ 358380.223600000143051, 258852.602099999785423 ], [ 358422.71000000089407, 258797.968800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024900", "MAP": "D9-3039-T85", "PARCEL_NAM": "2A-3", "ACRE": ".59", "LONGITUDE": -64.93483521, "LATITUDE": 18.3583596, "OBJECTID_1": 4130, "PARCEL_NO_": "102802024900", "Tax_Legal_": "MISGUNST 2A-3 GREAT NORTHSIDE", "Name": "BERRY, LUCIA A. & JANELLE C.", "Address": "7430 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.25807722100001, "SHAPE_Area": 2858.3060243 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358401.922499999403954, 258751.309799998998642 ], [ 358377.245099999010563, 258713.744300000369549 ], [ 358351.189599998295307, 258743.295200001448393 ], [ 358343.873400002717972, 258750.201400000602007 ], [ 358361.196900002658367, 258799.105799999088049 ], [ 358364.538900002837181, 258808.540399998426437 ], [ 358368.197488005796913, 258802.961219422752038 ], [ 358372.340872723318171, 258797.731985716556665 ], [ 358376.935777645965572, 258792.894696101138834 ], [ 358381.945299997925758, 258788.488200001418591 ], [ 358387.24231472145766, 258780.163690463814419 ], [ 358391.907574346405454, 258771.469371821440291 ], [ 358395.915399998426437, 258762.453099999576807 ], [ 358401.922499999403954, 258751.309799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802021300", "MAP": "D9-4387-T88", "PARCEL_NAM": "2C", "ACRE": null, "LONGITUDE": -64.9346166, "LATITUDE": 18.35757292, "OBJECTID_1": 4097, "PARCEL_NO_": "102802021300", "Tax_Legal_": "2C-2,2C REM,2C-3 ROW ESTATE MISGUNST No.6 GREAT NORTHSIDE QTR.", "Name": "MISGUNST HOLDINGS LLC", "Address": "819 S Wabash Ave", "City": "Chicago", "State": "Illinois", "Zip": 60605, "Country": "United States", "Land_Value": 397100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 551.94608090400004, "SHAPE_Area": 10700.944273700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358351.189599998295307, 258743.295200001448393 ], [ 358377.245099999010563, 258713.744300000369549 ], [ 358401.922499999403954, 258751.309799998998642 ], [ 358402.80799999833107, 258742.028900001198053 ], [ 358406.173500001430511, 258725.5912000015378 ], [ 358408.653499998152256, 258718.434300001710653 ], [ 358414.378600001335144, 258708.98200000077486 ], [ 358426.620800003409386, 258691.77250000089407 ], [ 358428.242399998009205, 258690.73030000180006 ], [ 358444.587999999523163, 258665.110700000077486 ], [ 358451.167999997735023, 258649.965799998492002 ], [ 358452.796800002455711, 258648.079300001263618 ], [ 358452.813000001013279, 258646.179499998688698 ], [ 358456.905699998140335, 258639.035900000482798 ], [ 358465.145000003278255, 258618.41609999909997 ], [ 358467.598099999129772, 258614.425400000065565 ], [ 358467.61429999768734, 258612.525699999183416 ], [ 358470.906099997460842, 258604.742199998348951 ], [ 358475.000600002706051, 258597.38740000128746 ], [ 358479.94820000231266, 258584.551199998706579 ], [ 358480.810199998319149, 258578.014400001615286 ], [ 358438.64639999717474, 258605.322500001639128 ], [ 358366.481799997389317, 258652.0168999992311 ], [ 358327.561200000345707, 258677.240600001066923 ], [ 358319.453100003302097, 258682.45160000026226 ], [ 358327.343599997460842, 258702.781199999153614 ], [ 358343.873400002717972, 258750.201400000602007 ], [ 358351.189599998295307, 258743.295200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020900", "MAP": "D9-3039-T85", "PARCEL_NAM": "2A-1", "ACRE": ".53", "LONGITUDE": -64.934446, "LATITUDE": 18.35909059, "OBJECTID_1": 4094, "PARCEL_NO_": "102802020900", "Tax_Legal_": "2A-1 MISGUNST GREAT NORTHSIDE QUARTER", "Name": "BRIN, GENE C.,JR. & GENE C.,SR.", "Address": "7631 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90300, "Improved_V": 150900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.76256938, "SHAPE_Area": 2301.3361009800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358422.71000000089407, 258797.968800000846386 ], [ 358380.223600000143051, 258852.602099999785423 ], [ 358386.396499998867512, 258870.028400000184774 ], [ 358395.29110000282526, 258867.145899999886751 ], [ 358444.611000001430511, 258851.717500001192093 ], [ 358422.71000000089407, 258797.968800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "D9-8484-T010", "PARCEL_NAM": "148A", "ACRE": "3.3459", "LONGITUDE": -64.95711195, "LATITUDE": 18.32922949, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 483.84577857800002, "SHAPE_Area": 13089.973455400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356048.493500001728535, 255598.137699998915195 ], [ 356083.640600003302097, 255545.7989999987185 ], [ 356122.740199998021126, 255499.502399999648333 ], [ 356104.370800003409386, 255488.828899998217821 ], [ 356081.950300000607967, 255455.267900001257658 ], [ 356047.503100000321865, 255449.877900000661612 ], [ 356001.293499998748302, 255439.882199998944998 ], [ 356002.812600001692772, 255514.173000000417233 ], [ 355973.119999997317791, 255564.449299998581409 ], [ 355978.483000002801418, 255568.449200000613928 ], [ 355982.500200003385544, 255570.170899998396635 ], [ 356020.314099997282028, 255580.190699998289347 ], [ 356033.163000002503395, 255586.417500000447035 ], [ 356037.970299996435642, 255590.045499999076128 ], [ 356048.493500001728535, 255598.137699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "G9-2434-T74", "PARCEL_NAM": "147", "ACRE": ".88", "LONGITUDE": -64.95776936, "LATITUDE": 18.32756978, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.80788645000001, "SHAPE_Area": 2753.8246351600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356011.067500002682209, 255353.35249999910593 ], [ 355993.554499998688698, 255303.541200000792742 ], [ 355992.832599997520447, 255303.855399999767542 ], [ 355974.296400003135204, 255302.648200001567602 ], [ 355961.386399999260902, 255303.598000001162291 ], [ 355951.689099997282028, 255306.05180000141263 ], [ 355949.805699996650219, 255307.018100000917912 ], [ 355949.772799998521805, 255315.67509999871254 ], [ 355949.612400002777576, 255357.9695999994874 ], [ 356011.067500002682209, 255353.35249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "A9-354-T88", "PARCEL_NAM": "REM 148", "ACRE": null, "LONGITUDE": -64.95636306, "LATITUDE": 18.32884623, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 957.36900331100003, "SHAPE_Area": 30880.371692699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356245.875900000333786, 255511.531500000506639 ], [ 356238.26070000231266, 255486.686200000345707 ], [ 356223.708599999547005, 255454.936099998652935 ], [ 356195.927299998700619, 255444.352800000458956 ], [ 356169.468900002539158, 255437.738200001418591 ], [ 356173.437600001692772, 255414.587099999189377 ], [ 356127.796899996697903, 255372.253699999302626 ], [ 356102.0, 255362.993200000375509 ], [ 356080.171800002455711, 255354.394299998879433 ], [ 356068.265500001609325, 255353.732799999415874 ], [ 356051.0675999969244, 255341.826499998569489 ], [ 356020.640500001609325, 255335.211899999529123 ], [ 356006.521899998188019, 255340.423599999397993 ], [ 356011.067500002682209, 255353.35249999910593 ], [ 356047.503100000321865, 255449.877900000661612 ], [ 356081.950300000607967, 255455.267900001257658 ], [ 356104.370800003409386, 255488.828899998217821 ], [ 356122.740199998021126, 255499.502399999648333 ], [ 356083.640600003302097, 255545.7989999987185 ], [ 356048.493500001728535, 255598.137699998915195 ], [ 356094.849899999797344, 255633.785199999809265 ], [ 356096.552400000393391, 255623.24439999833703 ], [ 356099.122400000691414, 255605.533599998801947 ], [ 356105.648400001227856, 255596.721099998801947 ], [ 356111.339299999177456, 255591.27930000051856 ], [ 356121.067199997603893, 255585.237199999392033 ], [ 356136.421300001442432, 255581.352000001817942 ], [ 356144.484499998390675, 255581.418000001460314 ], [ 356158.173799999058247, 255583.640999998897314 ], [ 356168.655900001525879, 255583.726799998432398 ], [ 356181.580200001597404, 255581.08839999884367 ], [ 356185.631599999964237, 255578.799499999731779 ], [ 356188.892800003290176, 255574.604299999773502 ], [ 356189.774599999189377, 255565.745600000023842 ], [ 356193.894299998879433, 255555.435699999332428 ], [ 356207.104599997401237, 255519.235800001770258 ], [ 356245.875900000333786, 255511.531500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050133", "MAP": "D9-8741-T013", "PARCEL_NAM": "160", "ACRE": ".68", "LONGITUDE": -64.95947429, "LATITUDE": 18.32822756, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 413.56605154, "SHAPE_Area": 4356.1313502399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355735.153599999845028, 255478.446800000965595 ], [ 355748.443999998271465, 255484.843100000172853 ], [ 355762.396499998867512, 255462.918299999088049 ], [ 355801.088799998164177, 255429.548700001090765 ], [ 355814.804399996995926, 255417.028799999505281 ], [ 355811.195799998939037, 255414.293200001120567 ], [ 355812.880300000309944, 255392.955400001257658 ], [ 355820.184600003063679, 255387.601100001484156 ], [ 355826.852399997413158, 255386.151200000196695 ], [ 355851.871299996972084, 255345.840999998152256 ], [ 355845.727700002491474, 255344.447900000959635 ], [ 355838.465499997138977, 255345.021800000220537 ], [ 355833.615000002086163, 255346.459699999541044 ], [ 355832.778200000524521, 255350.041499998420477 ], [ 355819.065399996936321, 255350.5625 ], [ 355802.888800002634525, 255356.340700000524521 ], [ 355798.835699997842312, 255358.840700000524521 ], [ 355786.634900003671646, 255371.195300001651049 ], [ 355781.7179000005126, 255380.443199999630451 ], [ 355778.465700000524521, 255383.583000000566244 ], [ 355769.549500003457069, 255388.998500000685453 ], [ 355775.119999997317791, 255397.698899999260902 ], [ 355774.301100000739098, 255399.169799998402596 ], [ 355775.042700000107288, 255406.775299999862909 ], [ 355777.465199999511242, 255406.372900001704693 ], [ 355781.406800001859665, 255416.959800001233816 ], [ 355774.896999999880791, 255423.872699998319149 ], [ 355772.375600002706051, 255435.884399998933077 ], [ 355769.920699998736382, 255440.086100000888109 ], [ 355766.666599996387959, 255443.436999998986721 ], [ 355755.31530000269413, 255450.732400000095367 ], [ 355748.006399996578693, 255456.794300001114607 ], [ 355739.846100002527237, 255468.126499999314547 ], [ 355738.217299997806549, 255470.013000000268221 ], [ 355735.153599999845028, 255478.446800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "A9-770-T012", "PARCEL_NAM": "149-1", "ACRE": ".30", "LONGITUDE": -64.95895664, "LATITUDE": 18.32848728, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 319.03019746500001, "SHAPE_Area": 905.086697415 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355914.312299996614456, 255453.927099999040365 ], [ 355915.089900001883507, 255454.068300001323223 ], [ 355923.815800003707409, 255451.907900001853704 ], [ 355902.854299999773502, 255438.911499999463558 ], [ 355877.333200000226498, 255423.698600001633167 ], [ 355862.98139999806881, 255420.247999999672174 ], [ 355850.050200000405312, 255418.952799998223782 ], [ 355838.751500003039837, 255419.211100000888109 ], [ 355830.945900000631809, 255419.148299999535084 ], [ 355820.215700000524521, 255418.738600000739098 ], [ 355814.804399996995926, 255417.028799999505281 ], [ 355801.088799998164177, 255429.548700001090765 ], [ 355783.449299998581409, 255444.761700000613928 ], [ 355788.590199999511242, 255449.762200001627207 ], [ 355793.762599997222424, 255444.703099999576807 ], [ 355804.147799998521805, 255434.781800001859665 ], [ 355819.082400001585484, 255425.373500000685453 ], [ 355823.881099998950958, 255424.697500001639128 ], [ 355832.749799996614456, 255424.530699998140335 ], [ 355847.132299996912479, 255424.170000001788139 ], [ 355860.548500001430511, 255424.75450000166893 ], [ 355872.987000003457069, 255427.713199999183416 ], [ 355878.240000002086163, 255430.137600000947714 ], [ 355914.312299996614456, 255453.927099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "A9-770-T012", "PARCEL_NAM": "149-2", "ACRE": ".17", "LONGITUDE": -64.95892031, "LATITUDE": 18.32822442, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.72888572599999, "SHAPE_Area": 448.77502888700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355893.826499998569489, 255395.344999998807907 ], [ 355893.140500001609325, 255389.849399998784065 ], [ 355848.913599997758865, 255400.494699999690056 ], [ 355827.286399997770786, 255406.041200000792742 ], [ 355820.639300003647804, 255409.563099998980761 ], [ 355816.143500000238419, 255413.960400000214577 ], [ 355814.804399996995926, 255417.0287000015378 ], [ 355820.215700000524521, 255418.738600000739098 ], [ 355820.324000000953674, 255418.74269999936223 ], [ 355822.555699996650219, 255415.406399998813868 ], [ 355826.00789999961853, 255412.997000001370907 ], [ 355829.947899997234344, 255410.916400000452995 ], [ 355838.794299997389317, 255408.550400000065565 ], [ 355893.826499998569489, 255395.344999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "A9-770-T012", "PARCEL_NAM": "149A", "ACRE": ".58", "LONGITUDE": -64.95834564, "LATITUDE": 18.32794716, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 425.15929274199999, "SHAPE_Area": 2630.7799795599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355929.594499997794628, 255334.845199998468161 ], [ 355933.5253000035882, 255337.495700001716614 ], [ 355937.194600000977516, 255348.736600000411272 ], [ 355927.644400000572205, 255339.893199998885393 ], [ 355925.550800003111362, 255345.312300000339746 ], [ 355920.097900003194809, 255360.622699998319149 ], [ 355917.976899996399879, 255360.118200000375509 ], [ 355916.695200003683567, 255377.168600000441074 ], [ 355915.836099997162819, 255382.361099999397993 ], [ 355912.033299997448921, 255387.692400000989437 ], [ 355906.119999997317791, 255391.219399999827147 ], [ 355893.826499998569489, 255395.344999998807907 ], [ 355838.794299997389317, 255408.550400000065565 ], [ 355829.947899997234344, 255410.916400000452995 ], [ 355826.00789999961853, 255412.997000001370907 ], [ 355822.555699996650219, 255415.406399998813868 ], [ 355820.324000000953674, 255418.74269999936223 ], [ 355830.945900000631809, 255419.148299999535084 ], [ 355838.751500003039837, 255419.211100000888109 ], [ 355864.86150000244379, 255408.106100000441074 ], [ 355928.02759999781847, 255399.885899998247623 ], [ 355949.612400002777576, 255357.9695999994874 ], [ 355949.772799998521805, 255315.67509999871254 ], [ 355949.805699996650219, 255307.018100000917912 ], [ 355945.209799997508526, 255309.376200001686811 ], [ 355941.153099998831749, 255312.298300001770258 ], [ 355938.696400001645088, 255316.711199998855591 ], [ 355931.322700001299381, 255330.371899999678135 ], [ 355929.594499997794628, 255334.845199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "A9-770-T012", "PARCEL_NAM": "149 REM", "ACRE": "4.51", "LONGITUDE": -64.95776201, "LATITUDE": 18.32874087, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 598.06398743, "SHAPE_Area": 13225.1823817 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355915.089900001883507, 255454.068300001323223 ], [ 355913.953400000929832, 255523.099800001829863 ], [ 355944.063299998641014, 255538.614399999380112 ], [ 355952.884199999272823, 255544.386199999600649 ], [ 355964.086300000548363, 255554.610300000756979 ], [ 355969.680100001394749, 255560.566700000315905 ], [ 355970.470200002193451, 255562.473000001162291 ], [ 355973.119999997317791, 255564.449299998581409 ], [ 356002.812600001692772, 255514.173000000417233 ], [ 356001.293499998748302, 255439.882199998944998 ], [ 356047.503100000321865, 255449.877900000661612 ], [ 356011.067500002682209, 255353.35249999910593 ], [ 355978.609499998390675, 255355.791000001132488 ], [ 355967.791400000452995, 255441.020399998873472 ], [ 355915.089900001883507, 255454.068300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-1", "PARCEL_NO": "105204050133", "MAP": "D9-8689-T012", "PARCEL_NAM": "159A", "ACRE": ".105", "LONGITUDE": -64.95921661, "LATITUDE": 18.32820156, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.182250707099996, "SHAPE_Area": 456.55642370800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355835.335100002586842, 255403.977000001817942 ], [ 355836.253499999642372, 255402.003499999642372 ], [ 355836.998800002038479, 255399.237399999052286 ], [ 355836.610500000417233, 255396.154100000858307 ], [ 355834.66780000180006, 255393.674400001764297 ], [ 355828.408600002527237, 255388.490499999374151 ], [ 355826.243699997663498, 255387.959699999541044 ], [ 355820.18469999730587, 255387.601100001484156 ], [ 355812.880300000309944, 255392.955400001257658 ], [ 355811.195799998939037, 255414.293200001120567 ], [ 355814.804399996995926, 255417.0287000015378 ], [ 355816.143500000238419, 255413.960400000214577 ], [ 355820.639300003647804, 255409.563099998980761 ], [ 355827.286399997770786, 255406.041200000792742 ], [ 355835.335100002586842, 255403.977000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050133", "MAP": "D9-8689-T012", "PARCEL_NAM": "159-1", "ACRE": ".03", "LONGITUDE": -64.95903727, "LATITUDE": 18.32812074, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.670007734, "SHAPE_Area": 436.25851120300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355861.906199999153614, 255397.367400001734495 ], [ 355833.137800000607967, 255376.02419999986887 ], [ 355826.852399997413158, 255386.151200000196695 ], [ 355820.184799998998642, 255387.601100001484156 ], [ 355826.243699997663498, 255387.959699999541044 ], [ 355828.408600002527237, 255388.490499999374151 ], [ 355834.66780000180006, 255393.674400001764297 ], [ 355836.610500000417233, 255396.154100000858307 ], [ 355836.998800002038479, 255399.237399999052286 ], [ 355836.253499999642372, 255402.003499999642372 ], [ 355835.335100002586842, 255403.977000001817942 ], [ 355848.913599997758865, 255400.494699999690056 ], [ 355861.906199999153614, 255397.367400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "A9-770-T012", "PARCEL_NAM": "149B", "ACRE": "1.43", "LONGITUDE": -64.95817452, "LATITUDE": 18.32828543, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 392.94813609900001, "SHAPE_Area": 5657.3994169500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355838.751500003039837, 255419.211100000888109 ], [ 355850.050200000405312, 255418.952799998223782 ], [ 355862.98139999806881, 255420.247999999672174 ], [ 355877.333200000226498, 255423.698600001633167 ], [ 355902.854299999773502, 255438.911499999463558 ], [ 355923.815800003707409, 255451.907900001853704 ], [ 355967.791400000452995, 255441.020399998873472 ], [ 355978.609499998390675, 255355.791000001132488 ], [ 355949.612400002777576, 255357.9695999994874 ], [ 355928.02759999781847, 255399.885899998247623 ], [ 355864.86150000244379, 255408.106100000441074 ], [ 355838.751500003039837, 255419.211100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "A9-770-T012", "PARCEL_NAM": "149C", "ACRE": ".70", "LONGITUDE": -64.95898991, "LATITUDE": 18.32863342, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.34889130800002, "SHAPE_Area": 3981.1008776399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355914.680200003087521, 255454.169700000435114 ], [ 355878.240000002086163, 255430.137600000947714 ], [ 355872.987000003457069, 255427.713199999183416 ], [ 355860.548500001430511, 255424.75450000166893 ], [ 355847.132299996912479, 255424.170000001788139 ], [ 355832.749799996614456, 255424.530699998140335 ], [ 355823.881099998950958, 255424.697500001639128 ], [ 355819.082400001585484, 255425.373500000685453 ], [ 355804.147799998521805, 255434.781800001859665 ], [ 355793.762599997222424, 255444.703099999576807 ], [ 355788.590199999511242, 255449.762200001627207 ], [ 355789.89750000089407, 255451.0337999984622 ], [ 355789.556100003421307, 255451.36769999936223 ], [ 355815.473800003528595, 255471.438499998301268 ], [ 355846.636799998581409, 255471.016100000590086 ], [ 355914.680200003087521, 255454.169700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050133", "MAP": "A9-354-T88", "PARCEL_NAM": "148", "ACRE": null, "LONGITUDE": -64.95834071, "LATITUDE": 18.3286842, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.6530647193100001, "SHAPE_Area": 0.0683491403 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355915.089900001883507, 255454.068300001323223 ], [ 355914.312299996614456, 255453.927099999040365 ], [ 355914.680200003087521, 255454.169700000435114 ], [ 355915.089900001883507, 255454.068300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93485681, "LATITUDE": 18.34972006, "OBJECTID_1": 4559, "PARCEL_NO_": "102804025500", "Tax_Legal_": "AGNES FANCY 3B-1 GR NORTHSIDE", "Name": "BERGIN, JACQUELYN", "Address": "PO Box 305784", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 270000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.406405267, "SHAPE_Area": 925.79708875300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358356.002199999988079, 257799.746399998664856 ], [ 358370.301899999380112, 257824.983600001782179 ], [ 358377.61259999871254, 257818.71059999987483 ], [ 358385.73870000243187, 257811.388799998909235 ], [ 358393.053000003099442, 257804.69370000064373 ], [ 358401.123800002038479, 257800.436299998313189 ], [ 358389.629299998283386, 257783.55290000140667 ], [ 358372.204000003635883, 257791.013099998235703 ], [ 358368.962600000202656, 257792.886399999260902 ], [ 358356.002199999988079, 257799.746399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903035400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93209015, "LATITUDE": 18.34821271, "OBJECTID_1": 4866, "PARCEL_NO_": "102903035400", "Tax_Legal_": "LYTTONS FANCY 8GFB-1 QUEENS QTR", "Name": "HAMILTON, CHARLES & CATHIA", "Address": "BOX 2463", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.93310939400001, "SHAPE_Area": 1060.03896166 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358685.715599998831749, 257652.954900000244379 ], [ 358686.451300002634525, 257619.108199998736382 ], [ 358675.253799997270107, 257618.707899998873472 ], [ 358667.192400000989437, 257618.430900000035763 ], [ 358658.308600001037121, 257620.046900000423193 ], [ 358658.299699999392033, 257620.046000000089407 ], [ 358658.414200000464916, 257661.271000001579523 ], [ 358658.764300003647804, 257661.213899999856949 ], [ 358676.549900002777576, 257655.870999999344349 ], [ 358685.715599998831749, 257652.954900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93183242000001, "LATITUDE": 18.34820225, "OBJECTID_1": 4824, "PARCEL_NO_": "102903031500", "Tax_Legal_": "LYTTONS FANCY 8GFB GR NORTHSIDE QTR", "Name": "LAPLACE, NOREEN & EMANUEL B", "Address": "PO Box 152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20200, "Improved_V": 4600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.407249745, "SHAPE_Area": 718.54201913600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358692.721100002527237, 257650.725999999791384 ], [ 358702.421999998390675, 257647.850099999457598 ], [ 358718.5591000020504, 257646.715599998831749 ], [ 358720.182499997317791, 257645.462400000542402 ], [ 358721.010399997234344, 257642.936000000685453 ], [ 358701.014399997889996, 257623.773899998515844 ], [ 358690.570100001990795, 257619.255499999970198 ], [ 358686.451300002634525, 257619.108199998736382 ], [ 358685.715599998831749, 257652.954900000244379 ], [ 358692.721100002527237, 257650.725999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91872176, "LATITUDE": 18.3499655, "OBJECTID_1": 5015, "PARCEL_NO_": "102904020700", "Tax_Legal_": "3 ESTATE LOUISENHOJ No.5A GREAT NORTHSIDE QTR.", "Name": "GORDON L. COFFELT RESIDUARY TRUST", "Address": "7003 Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124600, "Improved_V": 594600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.64202515599999, "SHAPE_Area": 2731.8734263800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360107.92230000346899, 257883.986099999397993 ], [ 360091.723300002515316, 257798.832899998873472 ], [ 360090.656800001859665, 257799.491999998688698 ], [ 360058.131399996578693, 257813.255300000309944 ], [ 360069.704700000584126, 257874.567200001329184 ], [ 360090.598600000143051, 257882.970899999141693 ], [ 360099.45549999922514, 257884.521000001579523 ], [ 360107.92230000346899, 257883.986099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91842737, "LATITUDE": 18.34993024, "OBJECTID_1": 5016, "PARCEL_NO_": "102904020800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1G GREAT NORTHSIDE QTR.", "Name": "FRANCIS, REGINALD", "Address": "PO Box 6755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96100, "Improved_V": 213300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.871660773, "SHAPE_Area": 2499.1353337199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360091.723300002515316, 257798.832899998873472 ], [ 360107.92230000346899, 257883.986099999397993 ], [ 360108.330300003290176, 257883.960299998521805 ], [ 360118.024099998176098, 257881.928800001740456 ], [ 360125.304300002753735, 257879.244100000709295 ], [ 360133.408699996769428, 257874.455299999564886 ], [ 360141.531199999153614, 257867.555700000375509 ], [ 360108.951700001955032, 257788.186700001358986 ], [ 360099.468900002539158, 257794.046599999070168 ], [ 360091.723300002515316, 257798.832899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401031200", "MAP": null, "PARCEL_NAM": "8AA", "ACRE": null, "LONGITUDE": -64.93136672, "LATITUDE": 18.34523885, "OBJECTID_1": 11432, "PARCEL_NO_": "105401031200", "Tax_Legal_": "DOMINI GADE PCL QUEENS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.035238095, "SHAPE_Area": 774.57124932299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358765.946599997580051, 257322.010299999266863 ], [ 358766.431800000369549, 257314.686000000685453 ], [ 358766.673500001430511, 257307.349700000137091 ], [ 358766.671400003135204, 257300.009399998933077 ], [ 358766.607400000095367, 257297.243099998682737 ], [ 358732.892099998891354, 257297.607200000435114 ], [ 358738.036399997770786, 257322.696600001305342 ], [ 358765.946599997580051, 257322.010299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401120100", "MAP": "D9-5146-T91", "PARCEL_NAM": "8B", "ACRE": "2.90", "LONGITUDE": -64.92938684000001, "LATITUDE": 18.3461142, "OBJECTID_1": 11644, "PARCEL_NO_": "105401120100", "Tax_Legal_": "PCL OF 8G,8GB,8GDB&8GFA LYTTONS FANCY", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 673300, "Improved_V": 206500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 615.58477334500003, "SHAPE_Area": 11470.998012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358992.171599999070168, 257522.298900000751019 ], [ 358982.443000003695488, 257433.771099999547005 ], [ 358984.412600003182888, 257425.73759999871254 ], [ 358981.055699996650219, 257391.152499999850988 ], [ 358980.760600000619888, 257388.112700000405312 ], [ 358979.010799996554852, 257370.084399998188019 ], [ 358978.515000000596046, 257364.976300001144409 ], [ 358974.848499998450279, 257327.202399998903275 ], [ 358973.622900001704693, 257314.575199998915195 ], [ 358972.623700000345707, 257304.280699998140335 ], [ 358970.959299996495247, 257287.133099999278784 ], [ 358970.587099999189377, 257283.298200000077486 ], [ 358969.141099996864796, 257268.400699999183416 ], [ 358927.410499997437, 257289.070099998265505 ], [ 358933.332999996840954, 257359.948800001293421 ], [ 358935.102300003170967, 257381.12220000103116 ], [ 358936.077899999916553, 257386.317699998617172 ], [ 358946.18299999833107, 257525.300000000745058 ], [ 358947.588899999856949, 257549.587200000882149 ], [ 358992.171599999070168, 257522.298900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026400", "MAP": "D9-6411-T98", "PARCEL_NAM": "B-1", "ACRE": null, "LONGITUDE": -64.91897429, "LATITUDE": 18.34963944, "OBJECTID_1": 5078, "PARCEL_NO_": "102904026400", "Tax_Legal_": "ROSS A-8 & B-1 NEW QUARTER", "Name": "REESE, ELAINE P. & COURTNEY P", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45800, "Improved_V": 86500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.48914893589000003, "SHAPE_Area": 0.00291797996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360056.675499998033047, 257807.430799998342991 ], [ 360056.694899998605251, 257807.4070999994874 ], [ 360056.618100002408028, 257807.200100000947714 ], [ 360056.675499998033047, 257807.430799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026000", "MAP": "D9-509-T98", "PARCEL_NAM": "A-7-8", "ACRE": null, "LONGITUDE": -64.92082689, "LATITUDE": 18.34892845, "OBJECTID_1": 5075, "PARCEL_NO_": "102904026000", "Tax_Legal_": "ROSS A-7-8 NEW QTR.", "Name": "SMITH, GLEN J. & AMIN T.", "Address": "PO Box 303573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.375975122, "SHAPE_Area": 1299.87154766 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359887.10530000180006, 257738.460400000214577 ], [ 359872.756499998271465, 257700.053800001740456 ], [ 359863.922799997031689, 257704.586599998176098 ], [ 359854.610799998044968, 257714.178300000727177 ], [ 359849.514300003647804, 257721.711399998515844 ], [ 359845.432199999690056, 257726.38230000063777 ], [ 359840.386200003325939, 257731.579900000244379 ], [ 359832.990800000727177, 257732.76630000025034 ], [ 359831.304700002074242, 257734.997800000011921 ], [ 359830.530199997127056, 257742.226599998772144 ], [ 359830.642499998211861, 257744.426399998366833 ], [ 359887.10530000180006, 257738.460400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026100", "MAP": "D9-509-T98", "PARCEL_NAM": "A-7-9", "ACRE": ".39", "LONGITUDE": -64.92049172, "LATITUDE": 18.3488236, "OBJECTID_1": 5076, "PARCEL_NO_": "102904026100", "Tax_Legal_": "ROSS A-7-9 NEW QTR.", "Name": "CHESTERFIELD, LAURA T", "Address": "PO Box 307952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.88243598700001, "SHAPE_Area": 1246.1184051800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359872.756499998271465, 257700.053800001740456 ], [ 359887.10530000180006, 257738.460400000214577 ], [ 359897.8412000015378, 257737.3260000012815 ], [ 359897.83389999717474, 257737.323699999600649 ], [ 359928.085600003600121, 257707.127900000661612 ], [ 359927.727700002491474, 257707.215599998831749 ], [ 359914.509400002658367, 257703.743400000035763 ], [ 359886.044799998402596, 257699.304499998688698 ], [ 359874.40429999679327, 257699.208299998193979 ], [ 359872.756499998271465, 257700.053800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304031000", "MAP": "A9-370-T89", "PARCEL_NAM": "11-19", "ACRE": ".68", "LONGITUDE": -64.92165236, "LATITUDE": 18.36975346, "OBJECTID_1": 1042, "PARCEL_NO_": "101304031000", "Tax_Legal_": "PETERBORG ESTATE 11-19 No.12 GREAT NORTHSIDE QTR.", "Name": "BRYAN, CHARLES E. & BETSY M", "Address": "3923 Juniper Rd", "City": "Baltimore", "State": "Maryland", "Zip": 21218, "Country": "United States", "Land_Value": 188300, "Improved_V": 717000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.86754240900001, "SHAPE_Area": 2815.3462908800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359725.249399997293949, 260001.170099999755621 ], [ 359725.439400002360344, 260043.134799998253584 ], [ 359787.3429000005126, 260067.206999998539686 ], [ 359787.3699000030756, 260064.040800001472235 ], [ 359791.455399997532368, 260057.741500001400709 ], [ 359762.935199998319149, 259997.979600001126528 ], [ 359757.291000001132488, 259997.933499999344349 ], [ 359750.822599999606609, 259999.991399999707937 ], [ 359742.723499998450279, 260004.146999999880791 ], [ 359734.656700000166893, 260004.503199998289347 ], [ 359725.249399997293949, 260001.170099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101304039800", "MAP": "A9-370-T98", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9196142, "LATITUDE": 18.36867142, "OBJECTID_1": 1096, "PARCEL_NO_": "101304039800", "Tax_Legal_": "PETERBORG ROAD PARCELS 11-D,E,F, G,H,&I No.12 GREAT NORTHSIDE QTR", "Name": "SIDNEY'S FANCY HOME-OWNERS", "Address": "100 BLACKBEARD'S CASTLE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2063.0478832499998, "SHAPE_Area": 7734.7627845699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359687.587200000882149, 259979.849500000476837 ], [ 359682.422399997711182, 259985.98200000077486 ], [ 359699.283299997448921, 259991.970300000160933 ], [ 359734.656700000166893, 260004.503199998289347 ], [ 359742.723499998450279, 260004.146999999880791 ], [ 359750.822599999606609, 259999.991399999707937 ], [ 359757.291000001132488, 259997.933499999344349 ], [ 359762.935199998319149, 259997.979600001126528 ], [ 359784.705700002610683, 259998.157800000160933 ], [ 359806.499499998986721, 259995.592000000178814 ], [ 359821.043700002133846, 259992.122400000691414 ], [ 359847.709499999880791, 259985.585700001567602 ], [ 359923.666500002145767, 259966.997800000011921 ], [ 359918.711800001561642, 259980.678399998694658 ], [ 359914.626299999654293, 259986.977699998766184 ], [ 359908.931699998676777, 259992.84180000051856 ], [ 359878.113799996674061, 260013.487799998372793 ], [ 359862.720200002193451, 260022.016600001603365 ], [ 359858.692199997603893, 260021.561500001698732 ], [ 359857.106600001454353, 260018.382100000977516 ], [ 359851.440800003707409, 260020.86879999935627 ], [ 359853.035400003194809, 260022.992800001055002 ], [ 359853.010300002992153, 260025.947900000959635 ], [ 359849.768799997866154, 260027.821299999952316 ], [ 359852.141000002622604, 260033.329100001603365 ], [ 359860.234700001776218, 260029.806800000369549 ], [ 359887.778800003230572, 260014.833500001579523 ], [ 359911.302100002765656, 259998.560699999332428 ], [ 359917.804799996316433, 259992.492199998348951 ], [ 359924.330799996852875, 259983.679699998348951 ], [ 359931.754799999296665, 259964.10869999974966 ], [ 359945.517899997532368, 259957.677499998360872 ], [ 359956.867399998009205, 259950.593199998140335 ], [ 359964.138599999248981, 259948.963899999856949 ], [ 359972.196299999952316, 259949.663199998438358 ], [ 359980.239699997007847, 259952.050999999046326 ], [ 360012.413000002503395, 259961.60249999910593 ], [ 360017.250900000333786, 259961.642099998891354 ], [ 360022.101400002837181, 259960.204100001603365 ], [ 360029.419299997389317, 259953.086800001561642 ], [ 360039.996699996292591, 259941.985399998724461 ], [ 360061.203599996864796, 259913.661400001496077 ], [ 360075.092500001192093, 259892.454599998891354 ], [ 360085.741800002753735, 259872.910100001841784 ], [ 360092.258799999952316, 259865.152899999171495 ], [ 360102.017300002276897, 259855.52250000089407 ], [ 360110.933499999344349, 259850.10700000077486 ], [ 360114.158699996769428, 259850.133400000631809 ], [ 360115.758799999952316, 259851.624200001358986 ], [ 360115.731799997389317, 259854.790399998426437 ], [ 360107.479900002479553, 259876.887699998915195 ], [ 360101.677400000393391, 259895.416400000452995 ], [ 360093.308600001037121, 259931.233800001442432 ], [ 360091.651000000536442, 259936.497600000351667 ], [ 360088.341300003230572, 259946.3918999992311 ], [ 360086.712499998509884, 259948.278400000184774 ], [ 360084.241400003433228, 259954.379900000989437 ], [ 360081.007100000977516, 259955.408900000154972 ], [ 360078.598999999463558, 259954.122600000351667 ], [ 360075.330600000917912, 259959.162099998444319 ], [ 360078.534299999475479, 259961.721500001847744 ], [ 360076.066799998283386, 259967.400800000876188 ], [ 360082.48309999704361, 259971.464099999517202 ], [ 360094.768399998545647, 259949.188700001686811 ], [ 360099.72860000282526, 259934.875 ], [ 360108.082999996840954, 259900.746199999004602 ], [ 360114.713299997150898, 259879.691100001335144 ], [ 360122.96339999884367, 259857.804900001734495 ], [ 360123.010200001299381, 259852.316799998283386 ], [ 360121.437100000679493, 259847.65989999845624 ], [ 360119.847900003194809, 259844.902699999511242 ], [ 360116.638800002634525, 259842.976599998772144 ], [ 360108.577500000596046, 259842.699499998241663 ], [ 360098.043300002813339, 259848.734999999403954 ], [ 360092.359499998390675, 259853.332499999552965 ], [ 360089.112700000405312, 259855.839099999517202 ], [ 360080.146200001239777, 259867.164700001478195 ], [ 360074.403099998831749, 259878.727899998426437 ], [ 360072.777900002896786, 259880.192200001329184 ], [ 360067.862700000405312, 259889.228999998420477 ], [ 360059.680900000035763, 259903.094200000166893 ], [ 360035.207400001585484, 259936.246700000017881 ], [ 360021.370600000023842, 259951.33219999819994 ], [ 360017.313900001347065, 259954.254299998283386 ], [ 360014.894900001585484, 259954.234499998390675 ], [ 360013.293099999427795, 259952.954799998551607 ], [ 360013.323700003325939, 259949.366500001400709 ], [ 360024.730700001120567, 259935.527699999511242 ], [ 360033.74040000140667, 259919.136100001633167 ], [ 360039.546400003135204, 259900.185199998319149 ], [ 360042.08049999922514, 259886.695999998599291 ], [ 360043.11150000244379, 259860.317699998617172 ], [ 360039.26519999653101, 259838.543600000441074 ], [ 360029.173299998044968, 259792.6537000015378 ], [ 360027.866400003433228, 259756.757100000977516 ], [ 360029.53660000115633, 259750.015799999237061 ], [ 360032.086800001561642, 259734.626800000667572 ], [ 360034.516500003635883, 259733.380199998617172 ], [ 360037.736400000751019, 259734.039799999445677 ], [ 360039.390299998223782, 259729.19819999858737 ], [ 360035.371399998664856, 259727.687600001692772 ], [ 360035.410899996757507, 259723.0439000017941 ], [ 360047.813100002706051, 259687.04839999973774 ], [ 360041.400399997830391, 259682.562899999320507 ], [ 360024.856899999082088, 259731.401299998164177 ], [ 360022.3462999984622, 259742.146499998867512 ], [ 360019.774499997496605, 259760.068399999290705 ], [ 360020.415399998426437, 259779.494199998676777 ], [ 360023.437399998307228, 259803.372499998658895 ], [ 360024.188000001013279, 259809.922600001096725 ], [ 360030.404700003564358, 259837.415600001811981 ], [ 360032.739200003445148, 259847.356100000441074 ], [ 360034.304999999701977, 259852.857400000095367 ], [ 360035.820600003004074, 259864.268800001591444 ], [ 360034.859600000083447, 259882.41499999910593 ], [ 360033.148100003600121, 259894.011199999600649 ], [ 360028.972699999809265, 259910.864500001072884 ], [ 360027.342100001871586, 259912.962099999189377 ], [ 360024.037699997425079, 259922.223099999129772 ], [ 360013.424400001764297, 259937.546100001782179 ], [ 360005.278499998152256, 259947.189699999988079 ], [ 360001.230800002813339, 259949.056400001049042 ], [ 359998.005500003695488, 259949.030000001192093 ], [ 359973.071000002324581, 259941.648800000548363 ], [ 359965.823100000619888, 259940.534000001847744 ], [ 359952.891599997878075, 259944.016699999570847 ], [ 359943.161899998784065, 259950.269900001585484 ], [ 359931.82320000231266, 259956.087699998170137 ], [ 359922.116800002753735, 259959.596900001168251 ], [ 359872.829300001263618, 259971.22580000013113 ], [ 359842.124700002372265, 259978.573899999260902 ], [ 359799.300200000405312, 259988.778099998831749 ], [ 359785.578500002622604, 259990.354499999433756 ], [ 359768.644100002944469, 259990.427000001072884 ], [ 359755.741300001740456, 259990.532499998807907 ], [ 359747.656599998474121, 259992.999400001019239 ], [ 359741.98369999974966, 259996.33049999922514 ], [ 359738.751199997961521, 259997.148400001227856 ], [ 359733.915200002491474, 259996.897799998521805 ], [ 359728.288999997079372, 259994.740800000727177 ], [ 359687.587200000882149, 259979.849500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304031100", "MAP": null, "PARCEL_NAM": "11-20", "ACRE": "1.19", "LONGITUDE": -64.92116566, "LATITUDE": 18.3696196, "OBJECTID_1": 1043, "PARCEL_NO_": "101304031100", "Tax_Legal_": "CONSOLIDATED 11-20 PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "11-20 ESTATE PETERBORG TRUST", "Address": "1781 Chain Bridge Rd", "City": "Mc Lean", "State": "Virginia", "Zip": 22102, "Country": "United States", "Land_Value": 279700, "Improved_V": 829000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.76011901300001, "SHAPE_Area": 3258.0247307999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359821.043700002133846, 259992.122400000691414 ], [ 359806.499499998986721, 259995.592000000178814 ], [ 359784.705700002610683, 259998.157800000160933 ], [ 359762.935199998319149, 259997.979600001126528 ], [ 359791.455399997532368, 260057.741500001400709 ], [ 359799.577799998223782, 260050.84180000051856 ], [ 359810.932800002396107, 260043.124299999326468 ], [ 359811.785800002515316, 260037.642900001257658 ], [ 359816.66330000013113, 260033.038699999451637 ], [ 359822.310999996960163, 260032.662799999117851 ], [ 359831.95440000295639, 260036.541400000452995 ], [ 359833.525700002908707, 260041.409400001168251 ], [ 359836.016599997878075, 260032.986000001430511 ], [ 359837.68129999935627, 260026.877900000661612 ], [ 359847.709499999880791, 259985.585700001567602 ], [ 359821.043700002133846, 259992.122400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301015200", "MAP": "D9-9390-T019", "PARCEL_NAM": "REM 10-3-6", "ACRE": "0.56", "LONGITUDE": -64.92877459, "LATITUDE": 18.37341926, "OBJECTID_1": 840, "PARCEL_NO_": "101301015200", "Tax_Legal_": "10-3-6 PETERBORG GREAT NORTHSIDE QUARTER", "Name": "WOOTTON COTTAGE TRUST", "Address": "2067 Annette CRT", "City": "BURLINGTON", "State": "Ontario", "Zip": 0, "Country": "Canada", "Land_Value": 148600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.18507225, "SHAPE_Area": 3073.8496487500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359035.700699999928474, 260458.333200000226498 ], [ 359020.679300002753735, 260423.168800000101328 ], [ 359006.437200002372265, 260391.177099999040365 ], [ 358967.859999999403954, 260411.14640000090003 ], [ 358960.270599998533726, 260415.074999999254942 ], [ 358957.715499997138977, 260416.385999999940395 ], [ 358969.296499997377396, 260434.302600000053644 ], [ 358971.42119999974966, 260433.499899998307228 ], [ 358975.450199998915195, 260432.907400000840425 ], [ 358979.479299999773502, 260434.447900000959635 ], [ 358981.375299997627735, 260436.225400000810623 ], [ 358982.204800002276897, 260437.647399999201298 ], [ 358992.895999997854233, 260466.932000000029802 ], [ 358998.945299997925758, 260465.71680000051856 ], [ 359035.700699999928474, 260458.333200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301019900", "MAP": "D9-2122-T82", "PARCEL_NAM": "10-3-5", "ACRE": null, "LONGITUDE": -64.92917595, "LATITUDE": 18.37356727, "OBJECTID_1": 864, "PARCEL_NO_": "101301019900", "Tax_Legal_": "PETERBORG 10-3-5 GREAT NORTHSIDE QTR.", "Name": "WOOTTON, KENNETH (Trustee)", "Address": "5100 South Service Rd", "City": "BURLINGTON", "State": "Ontario", "Zip": 0, "Country": "Canada", "Land_Value": 183000, "Improved_V": 666200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.41023758, "SHAPE_Area": 1968.6478944 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358918.986800000071526, 260433.735500000417233 ], [ 358959.079599998891354, 260473.656800001859665 ], [ 358987.235699996352196, 260468.069099999964237 ], [ 358990.675999999046326, 260467.377999998629093 ], [ 358957.715499997138977, 260416.385999999940395 ], [ 358931.113899998366833, 260430.035100001841784 ], [ 358931.884199999272823, 260434.263300001621246 ], [ 358927.028399996459484, 260436.334499999880791 ], [ 358924.641800001263618, 260432.5152000002563 ], [ 358923.031000003218651, 260432.291000001132488 ], [ 358918.986800000071526, 260433.735500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91606088, "LATITUDE": 18.36464524, "OBJECTID_1": 973, "PARCEL_NO_": "101304020500", "Tax_Legal_": "14-21 PETERBORG 12 GREAT NORTHSIDE", "Name": "LARSEN, DAVID H & AZADEH", "Address": "13515 Bellaria Cir", "City": "Windermere", "State": "Florida", "Zip": 347867403, "Country": "United States", "Land_Value": 141400, "Improved_V": 708600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.65369592100001, "SHAPE_Area": 1763.1133293600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360338.539099998772144, 259446.881400000303984 ], [ 360338.542900003492832, 259447.102899998426437 ], [ 360330.209200002253056, 259447.102899998426437 ], [ 360330.582400001585484, 259477.887299999594688 ], [ 360330.432700000703335, 259478.286499999463558 ], [ 360330.593599997460842, 259478.283500000834465 ], [ 360335.119800001382828, 259499.173700001090765 ], [ 360338.91499999910593, 259497.407000001519918 ], [ 360338.913800001144409, 259497.546900000423193 ], [ 360385.87780000269413, 259474.710999999195337 ], [ 360377.064099997282028, 259468.094900000840425 ], [ 360367.476400002837181, 259457.672899998724461 ], [ 360361.067299999296665, 259452.765299998223782 ], [ 360349.013999998569489, 259447.811500001698732 ], [ 360338.539099998772144, 259446.881400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91584561000001, "LATITUDE": 18.36495687, "OBJECTID_1": 974, "PARCEL_NO_": "101304020600", "Tax_Legal_": "14-20 PETERBORG GREAT NORTHSIDE QUARTER", "Name": "BORNN, DAVID A", "Address": "14-20 ESTATE PETERBORG", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 133000, "Improved_V": 213600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.48678827800001, "SHAPE_Area": 2703.0400832800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360338.91499999910593, 259497.407000001519918 ], [ 360335.119800001382828, 259499.173700001090765 ], [ 360339.476499997079372, 259519.281599998474121 ], [ 360339.724399998784065, 259520.425700001418591 ], [ 360340.093199998140335, 259521.119899999350309 ], [ 360392.63289999961853, 259533.661400001496077 ], [ 360397.571400001645088, 259521.880499999970198 ], [ 360399.202100001275539, 259519.782900001853704 ], [ 360399.218199998140335, 259517.883200000971556 ], [ 360401.683899998664856, 259512.41499999910593 ], [ 360404.959499999880791, 259506.531199999153614 ], [ 360405.029700003564358, 259498.299100000411272 ], [ 360400.279899999499321, 259487.916600000113249 ], [ 360393.892300002276897, 259480.476100001484156 ], [ 360385.87780000269413, 259474.710999999195337 ], [ 360338.913800001144409, 259497.546900000423193 ], [ 360338.91499999910593, 259497.407000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91622151, "LATITUDE": 18.36439742, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.799622951700002, "SHAPE_Area": 70.029701474299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360338.603799998760223, 259439.282499998807907 ], [ 360329.265399999916553, 259439.38740000128746 ], [ 360329.836099997162819, 259446.916299998760223 ], [ 360330.21169999986887, 259447.312600001692772 ], [ 360330.209200002253056, 259447.102899998426437 ], [ 360338.542900003492832, 259447.102899998426437 ], [ 360338.539099998772144, 259446.881400000303984 ], [ 360338.603799998760223, 259439.282499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101403010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91532043, "LATITUDE": 18.3651732, "OBJECTID_1": 1105, "PARCEL_NO_": "101403010800", "Tax_Legal_": "PETERBORG 14-19 GT. NORTHSIDE QTR.", "Name": "HANFORD, KAREN L", "Address": "2130 Old Seneca Tunrpike", "City": "Marcellus", "State": "New York", "Zip": 13108, "Country": "United States", "Land_Value": 157900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.34231263800001, "SHAPE_Area": 2033.5739199100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360413.398699998855591, 259486.134799998253584 ], [ 360408.402900002896786, 259488.338799998164177 ], [ 360411.51969999819994, 259493.708200000226498 ], [ 360413.083800002932549, 259499.420499999076128 ], [ 360411.384900003671646, 259509.539099998772144 ], [ 360408.902999997138977, 259516.907000001519918 ], [ 360406.455300003290176, 259520.264499999582767 ], [ 360399.853699997067451, 259537.942299999296665 ], [ 360457.703199997544289, 259562.480500001460314 ], [ 360462.620200000703335, 259553.232599999755621 ], [ 360418.799900002777576, 259491.023499999195337 ], [ 360413.398699998855591, 259486.134799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91532043, "LATITUDE": 18.3651732, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.34231263800001, "SHAPE_Area": 2033.5739199100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360413.398699998855591, 259486.134799998253584 ], [ 360408.402900002896786, 259488.338799998164177 ], [ 360411.51969999819994, 259493.708200000226498 ], [ 360413.083800002932549, 259499.420499999076128 ], [ 360411.384900003671646, 259509.539099998772144 ], [ 360408.902999997138977, 259516.907000001519918 ], [ 360406.455300003290176, 259520.264499999582767 ], [ 360399.853699997067451, 259537.942299999296665 ], [ 360457.703199997544289, 259562.480500001460314 ], [ 360462.620200000703335, 259553.232599999755621 ], [ 360418.799900002777576, 259491.023499999195337 ], [ 360413.398699998855591, 259486.134799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102902030200", "MAP": "B9-259-T69", "PARCEL_NAM": "14-22", "ACRE": ".58", "LONGITUDE": -64.9160667, "LATITUDE": 18.36414265, "OBJECTID_1": 4712, "PARCEL_NO_": "102902030200", "Tax_Legal_": "14-22 ESTATE PETERBORG GT. NORTHSIDE", "Name": "RICHMAN, STEVEN A. & COLEEN C.", "Address": "PO Box 307906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 267100, "Improved_V": 179300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.95400073799999, "SHAPE_Area": 2692.3563178899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360361.861599996685982, 259380.959800001233816 ], [ 360325.016999997198582, 259383.333099998533726 ], [ 360329.265399999916553, 259439.38740000128746 ], [ 360338.603799998760223, 259439.282499998807907 ], [ 360350.685900002717972, 259440.859099999070168 ], [ 360357.118400000035763, 259443.022599998861551 ], [ 360363.549199998378754, 259445.397300001233816 ], [ 360370.760999999940395, 259450.73369999974966 ], [ 360378.874799996614456, 259459.207100000232458 ], [ 360380.737400002777576, 259452.519799999892712 ], [ 360361.861599996685982, 259380.959800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001014100", "MAP": "D9-7372-T004", "PARCEL_NAM": "4A REM", "ACRE": "4.003", "LONGITUDE": -64.91597631, "LATITUDE": 18.36077671, "OBJECTID_1": 5161, "PARCEL_NO_": "103001014100", "Tax_Legal_": "4AREM.4D&4-3(R.O.W.)LOVENLUND No.2 GREAT NORTHSIDE QUARTER", "Name": "RELIANCE LOVNLUND ASSOCIATES", "Address": "4020 Philmont Dr", "City": "Marietta", "State": "Georgia", "Zip": 30066, "Country": "United States", "Land_Value": 654100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 513.97882962899996, "SHAPE_Area": 14952.188266499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360305.809299997985363, 259129.907600000500679 ], [ 360323.822700001299381, 259127.724199999123812 ], [ 360351.246799997985363, 259111.134300000965595 ], [ 360379.686700001358986, 259095.221500001847744 ], [ 360390.520999997854233, 259086.757199998944998 ], [ 360409.819499999284744, 259065.427299998700619 ], [ 360421.669399999082088, 259053.915899999439716 ], [ 360433.519400000572205, 259028.861699998378754 ], [ 360440.9679000005126, 259007.531800001859665 ], [ 360443.676500000059605, 258992.634700000286102 ], [ 360445.369300000369549, 258978.753400001674891 ], [ 360446.404899999499321, 258967.432000000029802 ], [ 360440.978500001132488, 258970.015099998563528 ], [ 360333.516000002622604, 258995.311099998652935 ], [ 360296.350100003182888, 259003.872900001704693 ], [ 360295.918700002133846, 259004.353999998420477 ], [ 360296.306900002062321, 259004.532999999821186 ], [ 360305.809299997985363, 259129.907600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91636187, "LATITUDE": 18.3599608, "OBJECTID_1": 4689, "PARCEL_NO_": "102902010200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 6E GREAT NORTHSIDE QTR", "Name": "PALERMO, JOSE R", "Address": "PO Box 502712", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 111000, "Improved_V": 294100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.943446838, "SHAPE_Area": 5130.9208847999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360359.196800000965595, 258915.094700001180172 ], [ 360297.117899999022484, 258913.742199998348951 ], [ 360289.834499999880791, 258913.840799998492002 ], [ 360291.350100003182888, 258998.105099998414516 ], [ 360300.453599996864796, 258995.462699998170137 ], [ 360359.44030000269413, 258981.1689000017941 ], [ 360358.167499996721745, 258941.261799998581409 ], [ 360359.196800000965595, 258915.094700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103001010400", "MAP": "D9-393-T63", "PARCEL_NAM": "6F", "ACRE": null, "LONGITUDE": -64.91535481, "LATITUDE": 18.35834442, "OBJECTID_1": 5097, "PARCEL_NO_": "103001010400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 6F GREAT NORTHSIDE", "Name": "LUTHER BENJAMIN", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 163900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 519.86527912099996, "SHAPE_Area": 6526.7980690200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360387.594499997794628, 258819.607999999076128 ], [ 360342.26240000128746, 258877.324599999934435 ], [ 360360.283299997448921, 258873.320000000298023 ], [ 360386.128499999642372, 258867.731800001114607 ], [ 360387.041199997067451, 258864.871199999004602 ], [ 360396.052699998021126, 258848.2685999982059 ], [ 360398.494999997317791, 258845.544300001114607 ], [ 360399.324699997901917, 258842.80689999833703 ], [ 360415.639700002968311, 258820.775600001215935 ], [ 360425.410800002515316, 258809.667599998414516 ], [ 360443.334899999201298, 258788.071699999272823 ], [ 360444.969099998474121, 258785.551899999380112 ], [ 360458.827399998903275, 258767.933499999344349 ], [ 360466.177699998021126, 258757.016800001263618 ], [ 360485.0033999979496, 258724.240299999713898 ], [ 360487.445799998939037, 258721.516100000590086 ], [ 360492.425700001418591, 258704.880399998277426 ], [ 360494.182199999690056, 258688.00730000063777 ], [ 360452.048799999058247, 258690.219000000506639 ], [ 360437.172499999403954, 258737.161899998784065 ], [ 360419.952500000596046, 258778.409800000488758 ], [ 360387.594499997794628, 258819.607999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010300", "MAP": "A9-719-T07", "PARCEL_NAM": "6-J", "ACRE": "3.837", "LONGITUDE": -64.91623594000001, "LATITUDE": 18.35895561, "OBJECTID_1": 4690, "PARCEL_NO_": "102902010300", "Tax_Legal_": "6 ST.JOSEPH&ROSENDAHL GR NORTHSIDE QTR", "Name": "GIBBS, ADELINE & EMERY T. & ROMERO, GERTRUDE", "Address": "200 Lake St", "City": "Saint Joseph", "State": "Michigan", "Zip": 49085, "Country": "United States", "Land_Value": 495700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 849.67406571599997, "SHAPE_Area": 19355.007691499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360437.446400001645088, 258736.297699999064207 ], [ 360399.1283999979496, 258717.138700000941753 ], [ 360288.600100003182888, 258839.680900000035763 ], [ 360240.960299998521805, 258828.836100000888109 ], [ 360235.817299999296665, 258914.571699999272823 ], [ 360297.117899999022484, 258913.742199998348951 ], [ 360359.196800000965595, 258915.094700001180172 ], [ 360435.648999996483326, 258933.030099999159575 ], [ 360393.184199996292591, 258901.018500000238419 ], [ 360387.604699999094009, 258893.373399998992682 ], [ 360385.263099998235703, 258884.277300000190735 ], [ 360384.555699996650219, 258872.661299999803305 ], [ 360386.128499999642372, 258867.731800001114607 ], [ 360360.283299997448921, 258873.320000000298023 ], [ 360342.26240000128746, 258877.324599999934435 ], [ 360387.594499997794628, 258819.607999999076128 ], [ 360419.952500000596046, 258778.409800000488758 ], [ 360437.172499999403954, 258737.161899998784065 ], [ 360437.446400001645088, 258736.297699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91787196, "LATITUDE": 18.3560053, "OBJECTID_1": 4924, "PARCEL_NO_": "102904010200", "Tax_Legal_": "5B ST JOSEPH & ROSENDAHL NO 4 GREAT NORTHSIDE QTR", "Name": "ESANNASON FAMILY REVOCABLE LIVING TRUST", "Address": "PO Box 305242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 96000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 311.11407282800002, "SHAPE_Area": 3310.04748604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360203.094700001180172, 258546.120900001376867 ], [ 360168.270499996840954, 258489.886300001293421 ], [ 360176.984700001776218, 258462.842399999499321 ], [ 360167.125399999320507, 258460.093699999153614 ], [ 360152.611699998378754, 258459.974899999797344 ], [ 360144.532399997115135, 258461.808600001037121 ], [ 360132.398199997842312, 258466.353399999439716 ], [ 360141.111199997365475, 258484.789799999445677 ], [ 360156.942500002682209, 258519.538699999451637 ], [ 360163.270700000226498, 258533.944899998605251 ], [ 360163.713799998164177, 258576.589400000870228 ], [ 360175.020199999213219, 258574.570999998599291 ], [ 360183.622699998319149, 258556.403799999505281 ], [ 360203.094700001180172, 258546.120900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902011600", "MAP": "D9-3123-T85", "PARCEL_NAM": "5C-1", "ACRE": "1.5", "LONGITUDE": -64.91752525, "LATITUDE": 18.35617081, "OBJECTID_1": 4700, "PARCEL_NO_": "102902011600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5C-1 GT. NORTHSIDE", "Name": "LEDEE, GREGORY & EVELYN", "Address": "6005 St Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 155000, "Improved_V": 479800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 419.52003151999997, "SHAPE_Area": 6503.6840504000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360184.011500000953674, 258612.97859999909997 ], [ 360214.85869999974966, 258605.744600001722574 ], [ 360221.610600002110004, 258571.166499998420477 ], [ 360239.708200000226498, 258529.891399998217821 ], [ 360224.785700000822544, 258509.571299999952316 ], [ 360227.325699999928474, 258492.74379999935627 ], [ 360236.078599996864796, 258464.843899998813868 ], [ 360208.987099997699261, 258468.246800001710653 ], [ 360192.868000000715256, 258467.270500000566244 ], [ 360176.984700001776218, 258462.842399999499321 ], [ 360168.270499996840954, 258489.886300001293421 ], [ 360203.094700001180172, 258546.120900001376867 ], [ 360183.622699998319149, 258556.403799999505281 ], [ 360175.020199999213219, 258574.570999998599291 ], [ 360184.011500000953674, 258612.97859999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010600", "MAP": "D9-3123-T85", "PARCEL_NAM": "5C", "ACRE": "1.4", "LONGITUDE": -64.91715788, "LATITUDE": 18.35619148, "OBJECTID_1": 4693, "PARCEL_NO_": "102902010600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5C GREAT NORTHSIDE QTR", "Name": "LEDEE, GREGORY J. & MARY EVELYN", "Address": "6005 St Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 146200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 356.910663785, "SHAPE_Area": 4251.6690739599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360214.85869999974966, 258605.744600001722574 ], [ 360254.906300000846386, 258596.353100001811981 ], [ 360263.083700001239777, 258460.034699998795986 ], [ 360243.698100000619888, 258463.886799998581409 ], [ 360236.078599996864796, 258464.843899998813868 ], [ 360227.325699999928474, 258492.74379999935627 ], [ 360224.785700000822544, 258509.571299999952316 ], [ 360239.708200000226498, 258529.891399998217821 ], [ 360221.610600002110004, 258571.166499998420477 ], [ 360214.85869999974966, 258605.744600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010300", "MAP": "D9-5681-T94", "PARCEL_NAM": "6H", "ACRE": "0.59", "LONGITUDE": -64.91670934, "LATITUDE": 18.35565715, "OBJECTID_1": 4690, "PARCEL_NO_": "102902010300", "Tax_Legal_": "6 ST.JOSEPH&ROSENDAHL GR NORTHSIDE QTR", "Name": "GIBBS, ADELINE & EMERY T. & ROMERO, GERTRUDE", "Address": "200 Lake St", "City": "Saint Joseph", "State": "Michigan", "Zip": 49085, "Country": "United States", "Land_Value": 495700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.70518656, "SHAPE_Area": 2029.7725035799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360322.980999998748302, 258486.240899998694658 ], [ 360311.5608000010252, 258453.255800001323223 ], [ 360281.652300000190735, 258457.442400000989437 ], [ 360263.083700001239777, 258460.034699998795986 ], [ 360261.346500001847744, 258488.993900001049042 ], [ 360286.239900000393391, 258497.6689000017941 ], [ 360322.980999998748302, 258486.240899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103003010700", "MAP": "G9-261-T53", "PARCEL_NAM": "6-B", "ACRE": "1.00", "LONGITUDE": -64.91573762, "LATITUDE": 18.35572821, "OBJECTID_1": 5598, "PARCEL_NO_": "103003010700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 6B GR NORTHSIDE", "Name": "LIGHTNER, JAMES M", "Address": "2501 S El Camino Real", "City": "San Clemente", "State": "California", "Zip": 92672, "Country": "United States", "Land_Value": 98900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.60330675, "SHAPE_Area": 3908.3800011600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360460.662699997425079, 258457.852099999785423 ], [ 360460.385200001299381, 258455.367800001055002 ], [ 360442.971400000154972, 258458.720600001513958 ], [ 360438.491700001060963, 258460.046799998730421 ], [ 360385.453299999237061, 258470.788600001484156 ], [ 360352.519900001585484, 258477.743599999696016 ], [ 360347.722900003194809, 258478.545099999755621 ], [ 360322.980999998748302, 258486.240899998694658 ], [ 360337.415600001811981, 258514.161899998784065 ], [ 360428.734300002455711, 258489.620200000703335 ], [ 360461.256800003349781, 258482.765999998897314 ], [ 360460.662699997425079, 258457.852099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010300", "MAP": "A9-719-T007", "PARCEL_NAM": "6-K", "ACRE": ".04", "LONGITUDE": -64.91519586, "LATITUDE": 18.35576561, "OBJECTID_1": 4690, "PARCEL_NO_": "102902010300", "Tax_Legal_": "6 ST.JOSEPH&ROSENDAHL GR NORTHSIDE QTR", "Name": "GIBBS, ADELINE & EMERY T. & ROMERO, GERTRUDE", "Address": "200 Lake St", "City": "Saint Joseph", "State": "Michigan", "Zip": 49085, "Country": "United States", "Land_Value": 495700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.867845596500004, "SHAPE_Area": 177.649876097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360428.734300002455711, 258489.620200000703335 ], [ 360461.163500003516674, 258493.710400000214577 ], [ 360461.256800003349781, 258482.765999998897314 ], [ 360428.734300002455711, 258489.620200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103003011300", "MAP": "D9-5487-T93", "PARCEL_NAM": "6G", "ACRE": "0.23", "LONGITUDE": -64.91523751, "LATITUDE": 18.35591241, "OBJECTID_1": 5610, "PARCEL_NO_": "103003011300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 6G GREAT NORTHSIDE QTR", "Name": "HENRY, EPHRAIM & ANN", "Address": "6G Estate St. Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 43600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.37961274600001, "SHAPE_Area": 818.48133432300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360430.70160000026226, 258501.547100000083447 ], [ 360433.701099999248981, 258519.7314000017941 ], [ 360462.965300001204014, 258517.413400001823902 ], [ 360461.82209999859333, 258511.057199999690056 ], [ 360461.148900002241135, 258495.430700000375509 ], [ 360461.163500003516674, 258493.710400000214577 ], [ 360428.734300002455711, 258489.620200000703335 ], [ 360430.70160000026226, 258501.547100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010300", "MAP": "A9-719-T007", "PARCEL_NAM": "6 REM", "ACRE": "14.510", "LONGITUDE": -64.91618469, "LATITUDE": 18.35714178, "OBJECTID_1": 4690, "PARCEL_NO_": "102902010300", "Tax_Legal_": "6 ST.JOSEPH&ROSENDAHL GR NORTHSIDE QTR", "Name": "GIBBS, ADELINE & EMERY T. & ROMERO, GERTRUDE", "Address": "200 Lake St", "City": "Saint Joseph", "State": "Michigan", "Zip": 49085, "Country": "United States", "Land_Value": 495700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1241.3524739500001, "SHAPE_Area": 55726.867472500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360428.734300002455711, 258489.620200000703335 ], [ 360337.415600001811981, 258514.161899998784065 ], [ 360322.980999998748302, 258486.240899998694658 ], [ 360286.239900000393391, 258497.6689000017941 ], [ 360261.346500001847744, 258488.993900001049042 ], [ 360251.821999996900558, 258647.769200000911951 ], [ 360240.960299998521805, 258828.836100000888109 ], [ 360288.600100003182888, 258839.680900000035763 ], [ 360399.1283999979496, 258717.138700000941753 ], [ 360437.446400001645088, 258736.297699999064207 ], [ 360452.048799999058247, 258690.219000000506639 ], [ 360438.517800003290176, 258690.929200001060963 ], [ 360431.235100001096725, 258691.302700001746416 ], [ 360385.27419999986887, 258693.65989999845624 ], [ 360384.604599997401237, 258677.611299999058247 ], [ 360384.0050999969244, 258653.330600000917912 ], [ 360489.696699999272823, 258646.5962999984622 ], [ 360483.575300000607967, 258607.91609999909997 ], [ 360478.936999998986721, 258584.446699999272823 ], [ 360464.901699997484684, 258528.180900000035763 ], [ 360462.965300001204014, 258517.413400001823902 ], [ 360433.701099999248981, 258519.7314000017941 ], [ 360430.70160000026226, 258501.547100000083447 ], [ 360428.734300002455711, 258489.620200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "103001010200", "MAP": "A9-79-T68", "PARCEL_NAM": "7-1", "ACRE": "5.03", "LONGITUDE": -64.91417165, "LATITUDE": 18.35939902, "OBJECTID_1": 5095, "PARCEL_NO_": "103001010200", "Tax_Legal_": "JOSEPH & ROSENDAHL 7-1 GR NORTHSIDE QTR", "Name": "JACKSON DEVELOPMENT COMPANY LLC", "Address": "PO BOX 303217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 442000, "Improved_V": 640200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 612.52193719399997, "SHAPE_Area": 18560.825932200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360454.385300002992153, 258953.945799998939037 ], [ 360475.001900002360344, 258951.717300001531839 ], [ 360501.649700000882149, 258947.291299998760223 ], [ 360654.271200001239777, 258921.731600001454353 ], [ 360664.1266999989748, 258900.702899999916553 ], [ 360653.730999998748302, 258890.485300000756979 ], [ 360644.206299997866154, 258872.675500001758337 ], [ 360636.308600001037121, 258853.19029999896884 ], [ 360633.914800003170967, 258850.215399999171495 ], [ 360626.821699999272823, 258830.947799999266863 ], [ 360622.858400002121925, 258822.893800001591444 ], [ 360620.520400002598763, 258813.375399999320507 ], [ 360618.139200001955032, 258808.923000000417233 ], [ 360616.576999999582767, 258802.999600000679493 ], [ 360422.907999999821186, 258914.1385000012815 ], [ 360438.935400001704693, 258925.879799999296665 ], [ 360446.926600001752377, 258934.388900000602007 ], [ 360450.902400001883507, 258940.965399999171495 ], [ 360454.091700002551079, 258945.213300000876188 ], [ 360454.876400001347065, 258947.752900000661612 ], [ 360454.385300002992153, 258953.945799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001021700", "MAP": "D9-7502-T004", "PARCEL_NAM": "3 REM", "ACRE": "2.667", "LONGITUDE": -64.91418497, "LATITUDE": 18.36037537, "OBJECTID_1": 5217, "PARCEL_NO_": "103001021700", "Tax_Legal_": "3 REM.&4B&4-1 ESTATE LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "RELIANCE LOVENLUND ASSOCIATES,L.L.L.P", "Address": "720 Olive St", "City": "Saint Louis", "State": "Missouri", "Zip": 63101, "Country": "United States", "Land_Value": 776200, "Improved_V": 10481000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 591.800370402, "SHAPE_Area": 10706.933708 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360526.643399998545647, 259045.532800000160933 ], [ 360518.223800003528595, 259039.919700000435114 ], [ 360529.52759999781847, 259017.609600000083447 ], [ 360604.787000000476837, 258996.489399999380112 ], [ 360621.580399997532368, 259010.801899999380112 ], [ 360670.85700000077486, 259002.735300000756979 ], [ 360670.85700000077486, 258991.618999999016523 ], [ 360668.487000003457069, 258977.73759999871254 ], [ 360660.361299999058247, 258961.147700000554323 ], [ 360646.339599996805191, 258947.934900000691414 ], [ 360630.856200002133846, 258954.361999999731779 ], [ 360615.454999998211861, 258959.816599998623133 ], [ 360547.112400002777576, 258969.121399998664856 ], [ 360542.76690000295639, 258968.997299998998642 ], [ 360542.941299997270107, 258971.046599999070168 ], [ 360517.272699996829033, 258990.939699999988079 ], [ 360449.310199998319149, 258997.282900001853704 ], [ 360447.73929999768734, 259004.823300000280142 ], [ 360438.597900003194809, 259028.184599999338388 ], [ 360454.863099999725819, 259052.710799999535084 ], [ 360526.643399998545647, 259045.532800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": "A9-571-T001", "PARCEL_NAM": "3-1", "ACRE": ".23", "LONGITUDE": -64.91355135000001, "LATITUDE": 18.3600514, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.90702582900002, "SHAPE_Area": 750.69682201800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360542.76690000295639, 258968.997299998998642 ], [ 360547.112400002777576, 258969.121399998664856 ], [ 360615.454999998211861, 258959.816599998623133 ], [ 360630.856200002133846, 258954.361999999731779 ], [ 360646.339599996805191, 258947.934900000691414 ], [ 360660.361299999058247, 258961.147700000554323 ], [ 360668.487000003457069, 258977.73759999871254 ], [ 360670.85700000077486, 258991.618999999016523 ], [ 360670.85700000077486, 259002.735300000756979 ], [ 360675.236599996685982, 259001.6886 ], [ 360675.935599997639656, 258993.650400001555681 ], [ 360672.888400003314018, 258976.383400000631809 ], [ 360664.762800000607967, 258960.809099998325109 ], [ 360647.008900001645088, 258943.700899999588728 ], [ 360643.271499998867512, 258945.043800000101328 ], [ 360614.47240000218153, 258955.3918999992311 ], [ 360542.431100003421307, 258965.052200000733137 ], [ 360542.76690000295639, 258968.997299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": "A9-571-T001", "PARCEL_NAM": "3B", "ACRE": "3.02", "LONGITUDE": -64.91481675, "LATITUDE": 18.36017507, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.276375008, "SHAPE_Area": 2409.9183532000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360504.680799998342991, 258970.114199999719858 ], [ 360481.336599998176098, 258972.971700001507998 ], [ 360479.626199997961521, 258950.949200000613928 ], [ 360475.001900002360344, 258951.717300001531839 ], [ 360454.385300002992153, 258953.945799998939037 ], [ 360453.972999997437, 258959.144499998539686 ], [ 360451.5253000035882, 258962.502000000327826 ], [ 360451.412600003182888, 258962.613299999386072 ], [ 360451.802199997007847, 258974.690499998629093 ], [ 360451.125, 258988.571899998933077 ], [ 360449.310199998319149, 258997.282900001853704 ], [ 360517.272699996829033, 258990.939699999988079 ], [ 360542.941299997270107, 258971.046599999070168 ], [ 360542.431100003421307, 258965.052200000733137 ], [ 360504.680799998342991, 258970.114199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "103001014000", "MAP": "D9-6180-T97", "PARCEL_NAM": "3A", "ACRE": "2.19", "LONGITUDE": -64.91351741, "LATITUDE": 18.35992777, "OBJECTID_1": 5160, "PARCEL_NO_": "103001014000", "Tax_Legal_": "LOVENLUND 3A GREAT NORTHSIDE QTR.", "Name": "JACKSON DEVELOPMENT COMPANY LLC", "Address": "PO BOX 303217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 232800, "Improved_V": 24100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 613.34263778800005, "SHAPE_Area": 8175.6696902599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360479.626199997961521, 258950.949200000613928 ], [ 360481.336599998176098, 258972.971700001507998 ], [ 360504.680799998342991, 258970.114199999719858 ], [ 360614.47240000218153, 258955.3918999992311 ], [ 360647.008900001645088, 258943.700899999588728 ], [ 360664.762800000607967, 258960.809099998325109 ], [ 360672.888400003314018, 258976.383400000631809 ], [ 360675.935599997639656, 258993.650400001555681 ], [ 360675.236599996685982, 259001.6886 ], [ 360693.13849999755621, 258997.410100001841784 ], [ 360698.795299999415874, 258995.978700000792742 ], [ 360714.147600002586842, 258992.304699998348951 ], [ 360712.646499998867512, 258979.204599998891354 ], [ 360715.169699996709824, 258966.981800001114607 ], [ 360713.605599999427795, 258961.269499998539686 ], [ 360712.910800002515316, 258948.175999999046326 ], [ 360708.965599998831749, 258938.011199999600649 ], [ 360705.778099998831749, 258933.552200000733137 ], [ 360693.767899997532368, 258923.532499998807907 ], [ 360685.744300000369549, 258918.822799999266863 ], [ 360668.928700000047684, 258904.964099999517202 ], [ 360664.1266999989748, 258900.702899999916553 ], [ 360654.271200001239777, 258921.731600001454353 ], [ 360501.649700000882149, 258947.291299998760223 ], [ 360479.626199997961521, 258950.949200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": "A9-641-T005", "PARCEL_NAM": "4C", "ACRE": "4.04", "LONGITUDE": -64.91262774, "LATITUDE": 18.36240523, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1292.05629922, "SHAPE_Area": 17417.4088926 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360675.236599996685982, 259001.6886 ], [ 360674.748700000345707, 259057.640799999237061 ], [ 360672.858800001442432, 259071.248399998992682 ], [ 360674.370800003409386, 259084.478000000119209 ], [ 360683.064499996602535, 259111.31529999896884 ], [ 360684.954499997198582, 259120.765000000596046 ], [ 360683.442500002682209, 259137.0185999982059 ], [ 360681.930500000715256, 259173.305599998682737 ], [ 360683.820500001311302, 259190.315099999308586 ], [ 360692.892200000584126, 259204.300700001418591 ], [ 360695.916199997067451, 259208.458599999547005 ], [ 360704.609899997711182, 259222.066199999302626 ], [ 360709.14580000191927, 259234.917899999767542 ], [ 360722.7533999979496, 259291.238299999386072 ], [ 360732.203100003302097, 259321.099500000476837 ], [ 360734.093099996447563, 259332.4391999989748 ], [ 360732.203100003302097, 259343.778799999505281 ], [ 360721.997400000691414, 259386.491700001060963 ], [ 360717.839500002563, 259405.769099999219179 ], [ 360717.839500002563, 259422.778599999845028 ], [ 360719.729500003159046, 259436.764299999922514 ], [ 360728.045299999415874, 259475.697200000286102 ], [ 360729.179200001060963, 259484.013000000268221 ], [ 360728.045299999415874, 259491.19480000063777 ], [ 360728.80120000243187, 259494.974599998444319 ], [ 360731.069200001657009, 259497.998599998652935 ], [ 360727.667300000786781, 259500.266499999910593 ], [ 360724.643399998545647, 259496.486600000411272 ], [ 360720.863499999046326, 259496.108600001782179 ], [ 360720.485500000417233, 259497.242600001394749 ], [ 360716.89299999922514, 259492.623700000345707 ], [ 360676.26070000231266, 259526.72580000013113 ], [ 360658.688400000333786, 259548.263700000941753 ], [ 360674.037699997425079, 259535.753400001674891 ], [ 360680.500799998641014, 259534.328699998557568 ], [ 360683.72070000320673, 259534.988299999386072 ], [ 360686.123400002717972, 259536.907800000160933 ], [ 360691.036799997091293, 259528.082100000232458 ], [ 360704.843000002205372, 259516.584899999201298 ], [ 360732.349399998784065, 259506.044300001114607 ], [ 360738.022299997508526, 259502.713199999183416 ], [ 360744.534000001847744, 259495.589299999177456 ], [ 360748.685999996960163, 259481.480099998414516 ], [ 360749.73870000243187, 259452.568900000303984 ], [ 360744.419900000095367, 259414.317400000989437 ], [ 360743.827600002288818, 259389.192400000989437 ], [ 360747.293799996376038, 259360.934200000017881 ], [ 360749.745099999010563, 259357.154599998146296 ], [ 360759.557499997317791, 259341.191799998283386 ], [ 360762.039399996399879, 259333.823899999260902 ], [ 360762.953599996864796, 259321.165699999779463 ], [ 360755.837099999189377, 259304.642200000584126 ], [ 360752.653200000524521, 259299.760999999940395 ], [ 360746.254799999296665, 259293.586899999529123 ], [ 360734.237499997019768, 259284.411499999463558 ], [ 360731.850900001823902, 259280.592300001531839 ], [ 360730.254399999976158, 259278.679400000721216 ], [ 360725.515500001609325, 259267.030499998480082 ], [ 360725.538900002837181, 259264.286400001496077 ], [ 360723.965800002217293, 259259.62950000166893 ], [ 360725.679099999368191, 259247.822299998253584 ], [ 360728.123199999332428, 259244.886999998241663 ], [ 360728.970899999141693, 259240.038800001144409 ], [ 360737.147299997508526, 259226.806800000369549 ], [ 360738.833700001239777, 259218.165800001472235 ], [ 360742.98030000180006, 259204.689699999988079 ], [ 360744.095899999141693, 259168.390700001269579 ], [ 360741.759700000286102, 259158.661299999803305 ], [ 360740.17400000244379, 259155.481899999082088 ], [ 360739.416299998760223, 259149.776200000196695 ], [ 360735.463799998164177, 259140.455699998885393 ], [ 360735.490800000727177, 259137.289599999785423 ], [ 360731.545500002801418, 259127.124800000339746 ], [ 360725.202899999916553, 259114.407299999147654 ], [ 360722.872100003063679, 259104.044599998742342 ], [ 360718.919699996709824, 259094.72410000115633 ], [ 360716.594200000166893, 259083.728199999779463 ], [ 360711.070500001311302, 259069.539799999445677 ], [ 360711.984700001776218, 259056.881599999964237 ], [ 360714.498999997973442, 259045.714200001209974 ], [ 360714.147600002586842, 258992.304699998348951 ], [ 360698.795299999415874, 258995.978700000792742 ], [ 360693.13849999755621, 258997.410100001841784 ], [ 360675.236599996685982, 259001.6886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001021800", "MAP": "D9-7502-T04", "PARCEL_NAM": "3-C", "ACRE": ".356", "LONGITUDE": -64.91409656, "LATITUDE": 18.36055632, "OBJECTID_1": 5218, "PARCEL_NO_": "103001021800", "Tax_Legal_": "3-C & 4B-1 LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "RELIANCE LOVENLUND ASSOCIATES 2,L.L.L.P", "Address": "720 Olive St", "City": "Saint Louis", "State": "Missouri", "Zip": 63101, "Country": "United States", "Land_Value": 287500, "Improved_V": 10513200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.015909523, "SHAPE_Area": 1804.44857237 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360621.580399997532368, 259010.801899999380112 ], [ 360604.787000000476837, 258996.489399999380112 ], [ 360529.52759999781847, 259017.609600000083447 ], [ 360518.223800003528595, 259039.919700000435114 ], [ 360526.643399998545647, 259045.532800000160933 ], [ 360527.048699997365475, 259045.492300000041723 ], [ 360544.103500001132488, 259043.786800000816584 ], [ 360569.090800002217293, 259019.394400000572205 ], [ 360621.580399997532368, 259010.801899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001021800", "MAP": "D9-7502-T04", "PARCEL_NAM": "4B-1", "ACRE": ".528", "LONGITUDE": -64.91379561, "LATITUDE": 18.36068396, "OBJECTID_1": 5218, "PARCEL_NO_": "103001021800", "Tax_Legal_": "3-C & 4B-1 LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "RELIANCE LOVENLUND ASSOCIATES 2,L.L.L.P", "Address": "720 Olive St", "City": "Saint Louis", "State": "Missouri", "Zip": 63101, "Country": "United States", "Land_Value": 287500, "Improved_V": 10513200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.71968949699999, "SHAPE_Area": 2257.4708196500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360527.048699997365475, 259045.492300000041723 ], [ 360533.989600002765656, 259048.546300001442432 ], [ 360572.660400003194809, 259043.786800000816584 ], [ 360569.388300001621246, 259022.666499998420477 ], [ 360580.394599996507168, 259020.881700001657009 ], [ 360582.476899996399879, 259033.970300000160933 ], [ 360575.337700001895428, 259044.679200001060963 ], [ 360610.141400001943111, 259062.824700001627207 ], [ 360630.964199997484684, 259018.799499999731779 ], [ 360621.580399997532368, 259010.801899999380112 ], [ 360569.090800002217293, 259019.394400000572205 ], [ 360544.103500001132488, 259043.786800000816584 ], [ 360527.048699997365475, 259045.492300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": "A9-641-T005", "PARCEL_NAM": "4F", "ACRE": ".704", "LONGITUDE": -64.91283478, "LATITUDE": 18.36471031, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 372.30531185500001, "SHAPE_Area": 3966.59666169 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360715.601499997079372, 259387.947299998253584 ], [ 360648.232100002467632, 259539.598200000822544 ], [ 360656.227300003170967, 259539.199400000274181 ], [ 360658.688400000333786, 259548.263700000941753 ], [ 360676.26070000231266, 259526.72580000013113 ], [ 360718.595499999821186, 259491.19480000063777 ], [ 360721.619400002062321, 259487.79280000180006 ], [ 360722.7533999979496, 259481.366999998688698 ], [ 360712.925700001418591, 259433.362399999052286 ], [ 360711.79169999808073, 259409.5489999987185 ], [ 360712.925700001418591, 259398.965300001204014 ], [ 360715.601499997079372, 259387.947299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": "A9-641-T005", "PARCEL_NAM": "4-2", "ACRE": ".687", "LONGITUDE": -64.91275394, "LATITUDE": 18.36271533, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1043.58232447, "SHAPE_Area": 2761.7256921100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360716.89299999922514, 259492.623700000345707 ], [ 360720.485500000417233, 259497.242600001394749 ], [ 360720.863499999046326, 259496.108600001782179 ], [ 360724.643399998545647, 259496.486600000411272 ], [ 360727.667300000786781, 259500.266499999910593 ], [ 360731.069200001657009, 259497.998599998652935 ], [ 360728.80120000243187, 259494.974599998444319 ], [ 360728.045299999415874, 259491.19480000063777 ], [ 360729.179200001060963, 259484.013000000268221 ], [ 360728.045299999415874, 259475.697200000286102 ], [ 360719.729500003159046, 259436.764299999922514 ], [ 360717.839500002563, 259422.778599999845028 ], [ 360717.839500002563, 259405.769099999219179 ], [ 360721.997400000691414, 259386.491700001060963 ], [ 360732.203100003302097, 259343.778799999505281 ], [ 360734.093099996447563, 259332.4391999989748 ], [ 360732.203100003302097, 259321.099500000476837 ], [ 360722.7533999979496, 259291.238299999386072 ], [ 360709.14580000191927, 259234.917899999767542 ], [ 360704.609899997711182, 259222.066199999302626 ], [ 360695.916199997067451, 259208.458599999547005 ], [ 360692.892200000584126, 259204.300700001418591 ], [ 360683.820500001311302, 259190.315099999308586 ], [ 360681.930500000715256, 259173.305599998682737 ], [ 360683.442500002682209, 259137.0185999982059 ], [ 360684.954499997198582, 259120.765000000596046 ], [ 360683.064499996602535, 259111.31529999896884 ], [ 360674.370800003409386, 259084.478000000119209 ], [ 360672.858800001442432, 259071.248399998992682 ], [ 360674.748700000345707, 259057.640799999237061 ], [ 360675.236599996685982, 259001.6886 ], [ 360670.85700000077486, 259002.735300000756979 ], [ 360668.322899997234344, 259055.372800000011921 ], [ 360668.700900003314018, 259074.650299999862909 ], [ 360670.212899997830391, 259088.25789999961853 ], [ 360675.504699997603893, 259102.621500000357628 ], [ 360679.662600003182888, 259117.741099998354912 ], [ 360678.528599999845028, 259130.97069999948144 ], [ 360676.26070000231266, 259147.98030000180006 ], [ 360675.882700003683567, 259164.989799998700619 ], [ 360675.882700003683567, 259177.841400001198053 ], [ 360678.906599998474121, 259189.181099999696016 ], [ 360687.978399999439716, 259205.056699998676777 ], [ 360693.648199997842312, 259211.104499999433756 ], [ 360700.829999998211861, 259225.09010000154376 ], [ 360704.231899999082088, 259237.1858000010252 ], [ 360727.667300000786781, 259324.123399998992682 ], [ 360728.045299999415874, 259333.951099999248981 ], [ 360725.777300000190735, 259346.046799998730421 ], [ 360712.925700001418591, 259398.965300001204014 ], [ 360711.79169999808073, 259409.5489999987185 ], [ 360712.925700001418591, 259433.362399999052286 ], [ 360722.7533999979496, 259481.366999998688698 ], [ 360721.619400002062321, 259487.79280000180006 ], [ 360718.595499999821186, 259491.19480000063777 ], [ 360716.89299999922514, 259492.623700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": "A9-641-T005", "PARCEL_NAM": "4E", "ACRE": ".413", "LONGITUDE": -64.91316898, "LATITUDE": 18.36205269, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.667917929, "SHAPE_Area": 1268.8197630499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360675.882700003683567, 259164.989799998700619 ], [ 360637.004699997603893, 259175.641699999570847 ], [ 360639.217699997127056, 259191.449099998921156 ], [ 360640.725900001823902, 259205.754799999296665 ], [ 360683.705600000917912, 259197.579300001263618 ], [ 360678.906599998474121, 259189.181099999696016 ], [ 360675.882700003683567, 259177.841400001198053 ], [ 360675.882700003683567, 259164.989799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001021700", "MAP": "D9-7372-T004", "PARCEL_NAM": "4-3", "ACRE": "1.429", "LONGITUDE": -64.9147014, "LATITUDE": 18.36258925, "OBJECTID_1": 5217, "PARCEL_NO_": "103001021700", "Tax_Legal_": "3 REM.&4B&4-1 ESTATE LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "RELIANCE LOVENLUND ASSOCIATES,L.L.L.P", "Address": "720 Olive St", "City": "Saint Louis", "State": "Missouri", "Zip": 63101, "Country": "United States", "Land_Value": 776200, "Improved_V": 10481000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1050.3404173500001, "SHAPE_Area": 3080.0965340500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360421.669399999082088, 259062.380199998617172 ], [ 360433.397699996829033, 259068.397399999201298 ], [ 360433.737000003457069, 259072.129099998623133 ], [ 360420.845600001513958, 259099.947299998253584 ], [ 360419.149400003254414, 259107.75 ], [ 360418.810199998319149, 259114.195599999278784 ], [ 360421.524099998176098, 259122.337499998509884 ], [ 360439.164899997413158, 259157.958399999886751 ], [ 360443.23589999973774, 259176.616900000721216 ], [ 360443.914399996399879, 259185.098099999129772 ], [ 360441.539700001478195, 259191.883000001311302 ], [ 360430.683799996972084, 259212.237700000405312 ], [ 360428.987499997019768, 259220.718899998813868 ], [ 360428.987499997019768, 259231.574799999594688 ], [ 360426.952100001275539, 259243.109099999070168 ], [ 360416.827799998223782, 259261.529199998825788 ], [ 360412.625, 259272.269900001585484 ], [ 360413.558899998664856, 259284.878499999642372 ], [ 360415.893899999558926, 259294.218199998140335 ], [ 360426.167499996721745, 259301.689899999648333 ], [ 360443.446000002324581, 259306.3597999997437 ], [ 360460.257399998605251, 259308.227699998766184 ], [ 360486.408600002527237, 259308.694699998944998 ], [ 360529.838200002908707, 259303.557900000363588 ], [ 360579.805600002408028, 259297.487100001424551 ], [ 360608.29169999808073, 259294.685199998319149 ], [ 360622.30120000243187, 259297.487100001424551 ], [ 360632.107900001108646, 259301.223000001162291 ], [ 360642.381599999964237, 259308.694699998944998 ], [ 360648.919399999082088, 259318.501400001347065 ], [ 360651.254299998283386, 259324.572200000286102 ], [ 360651.7212999984622, 259331.109999999403954 ], [ 360662.461999997496605, 259327.841099999845028 ], [ 360643.782600000500679, 259298.888000000268221 ], [ 360630.240000002086163, 259291.416299998760223 ], [ 360599.885999999940395, 259288.614399999380112 ], [ 360580.272600002586842, 259290.949299998581409 ], [ 360504.620999999344349, 259300.289000000804663 ], [ 360468.196199998259544, 259302.156899999827147 ], [ 360447.181900002062321, 259300.756000000983477 ], [ 360432.238300003111362, 259297.487100001424551 ], [ 360421.030699998140335, 259290.482299998402596 ], [ 360418.228799998760223, 259274.604800000786781 ], [ 360420.096699997782707, 259266.66609999909997 ], [ 360431.304399996995926, 259245.651700001209974 ], [ 360432.705300003290176, 259232.576200000941753 ], [ 360435.040200002491474, 259215.297699999064207 ], [ 360448.115800000727177, 259190.08049999922514 ], [ 360448.582800000905991, 259172.335099998861551 ], [ 360445.313900001347065, 259159.259500000625849 ], [ 360433.639300003647804, 259134.509300000965595 ], [ 360425.700499996542931, 259115.362900000065565 ], [ 360424.766599997878075, 259103.2212999984622 ], [ 360430.837399996817112, 259090.145700000226498 ], [ 360438.3091000020504, 259071.933299999684095 ], [ 360437.842200003564358, 259064.461500000208616 ], [ 360429.43639999628067, 259058.857700001448393 ], [ 360426.640799999237061, 259055.130199998617172 ], [ 360421.669399999082088, 259062.380199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91562253, "LATITUDE": 18.36094916, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 462.49413323599998, "SHAPE_Area": 1266.83571882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360421.669399999082088, 259053.915899999439716 ], [ 360409.819499999284744, 259065.427299998700619 ], [ 360390.520999997854233, 259086.757199998944998 ], [ 360379.686700001358986, 259095.221500001847744 ], [ 360351.246799997985363, 259111.134300000965595 ], [ 360323.822700001299381, 259127.724199999123812 ], [ 360319.950000002980232, 259128.193599998950958 ], [ 360325.176899999380112, 259135.511300001293421 ], [ 360342.782600000500679, 259124.338500000536442 ], [ 360370.545299999415874, 259106.732900001108646 ], [ 360383.410999998450279, 259100.300000000745058 ], [ 360389.843800000846386, 259091.835799999535084 ], [ 360421.669399999082088, 259062.380199998617172 ], [ 360426.640799999237061, 259055.130199998617172 ], [ 360429.795100003480911, 259050.530200000852346 ], [ 360438.597900003194809, 259028.184599999338388 ], [ 360447.73929999768734, 259004.823300000280142 ], [ 360451.125, 258988.571899998933077 ], [ 360451.802199997007847, 258974.690499998629093 ], [ 360451.412600003182888, 258962.613299999386072 ], [ 360446.646099999547005, 258967.317200001329184 ], [ 360446.404899999499321, 258967.432000000029802 ], [ 360445.369300000369549, 258978.753400001674891 ], [ 360443.676500000059605, 258992.634700000286102 ], [ 360440.9679000005126, 259007.531800001859665 ], [ 360433.519400000572205, 259028.861699998378754 ], [ 360421.669399999082088, 259053.915899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": "D9-8065-T007", "PARCEL_NAM": "4F", "ACRE": "1.001", "LONGITUDE": -64.91624186, "LATITUDE": 18.36190157, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.17288557400002, "SHAPE_Area": 3671.73575377 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360316.987300001084805, 259210.836199998855591 ], [ 360373.31360000371933, 259184.780499998480082 ], [ 360343.01799999922514, 259124.1891999989748 ], [ 360342.782600000500679, 259124.338500000536442 ], [ 360325.176899999380112, 259135.511300001293421 ], [ 360319.950000002980232, 259128.193599998950958 ], [ 360305.809299997985363, 259129.907600000500679 ], [ 360309.909299999475479, 259184.002599999308586 ], [ 360316.987300001084805, 259210.836199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001021700", "MAP": "A9-571-T001", "PARCEL_NAM": "4B", "ACRE": "11.979", "LONGITUDE": -64.91431562, "LATITUDE": 18.36156941, "OBJECTID_1": 5217, "PARCEL_NO_": "103001021700", "Tax_Legal_": "3 REM.&4B&4-1 ESTATE LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "RELIANCE LOVENLUND ASSOCIATES,L.L.L.P", "Address": "720 Olive St", "City": "Saint Louis", "State": "Missouri", "Zip": 63101, "Country": "United States", "Land_Value": 776200, "Improved_V": 10481000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1080.5399430299999, "SHAPE_Area": 41088.287678499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360421.078500002622604, 259290.512200001627207 ], [ 360523.946400001645088, 259243.727600000798702 ], [ 360541.901399999856949, 259211.109499998390675 ], [ 360678.528599999845028, 259130.97069999948144 ], [ 360679.662600003182888, 259117.741099998354912 ], [ 360675.504699997603893, 259102.621500000357628 ], [ 360670.212899997830391, 259088.25789999961853 ], [ 360668.700900003314018, 259074.650299999862909 ], [ 360668.322899997234344, 259055.372800000011921 ], [ 360670.85700000077486, 259002.735300000756979 ], [ 360621.580399997532368, 259010.801899999380112 ], [ 360630.964199997484684, 259018.799499999731779 ], [ 360610.141400001943111, 259062.824700001627207 ], [ 360575.337700001895428, 259044.679200001060963 ], [ 360582.476899996399879, 259033.970300000160933 ], [ 360580.394599996507168, 259020.881700001657009 ], [ 360569.388300001621246, 259022.666499998420477 ], [ 360572.660400003194809, 259043.786800000816584 ], [ 360533.989600002765656, 259048.546300001442432 ], [ 360527.048699997365475, 259045.492300000041723 ], [ 360526.643399998545647, 259045.532800000160933 ], [ 360454.863099999725819, 259052.710799999535084 ], [ 360438.597900003194809, 259028.184599999338388 ], [ 360429.795100003480911, 259050.530200000852346 ], [ 360426.640799999237061, 259055.130199998617172 ], [ 360429.43639999628067, 259058.857700001448393 ], [ 360437.842200003564358, 259064.461500000208616 ], [ 360438.3091000020504, 259071.933299999684095 ], [ 360430.837399996817112, 259090.145700000226498 ], [ 360424.766599997878075, 259103.2212999984622 ], [ 360425.700499996542931, 259115.362900000065565 ], [ 360433.639300003647804, 259134.509300000965595 ], [ 360445.313900001347065, 259159.259500000625849 ], [ 360448.582800000905991, 259172.335099998861551 ], [ 360448.115800000727177, 259190.08049999922514 ], [ 360435.040200002491474, 259215.297699999064207 ], [ 360432.705300003290176, 259232.576200000941753 ], [ 360431.304399996995926, 259245.651700001209974 ], [ 360420.096699997782707, 259266.66609999909997 ], [ 360418.228799998760223, 259274.604800000786781 ], [ 360421.030699998140335, 259290.482299998402596 ], [ 360421.078500002622604, 259290.512200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001014100", "MAP": "D9-7372-T004", "PARCEL_NAM": "4D", "ACRE": "6.084", "LONGITUDE": -64.9136606, "LATITUDE": 18.36263006, "OBJECTID_1": 5161, "PARCEL_NO_": "103001014100", "Tax_Legal_": "4AREM.4D&4-3(R.O.W.)LOVENLUND No.2 GREAT NORTHSIDE QUARTER", "Name": "RELIANCE LOVNLUND ASSOCIATES", "Address": "4020 Philmont Dr", "City": "Marietta", "State": "Georgia", "Zip": 30066, "Country": "United States", "Land_Value": 654100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 907.84268535900003, "SHAPE_Area": 24388.687268400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360637.004699997603893, 259175.641699999570847 ], [ 360675.882700003683567, 259164.989799998700619 ], [ 360675.89580000191927, 259164.402699999511242 ], [ 360676.26070000231266, 259147.98030000180006 ], [ 360678.528599999845028, 259130.97069999948144 ], [ 360541.901399999856949, 259211.109499998390675 ], [ 360523.946400001645088, 259243.727600000798702 ], [ 360421.078500002622604, 259290.512200001627207 ], [ 360432.238300003111362, 259297.487100001424551 ], [ 360447.181900002062321, 259300.756000000983477 ], [ 360468.196199998259544, 259302.156899999827147 ], [ 360504.620999999344349, 259300.289000000804663 ], [ 360580.272600002586842, 259290.949299998581409 ], [ 360599.885999999940395, 259288.614399999380112 ], [ 360630.240000002086163, 259291.416299998760223 ], [ 360643.782600000500679, 259298.888000000268221 ], [ 360662.461999997496605, 259327.841099999845028 ], [ 360724.81700000166893, 259313.549899999052286 ], [ 360704.231899999082088, 259237.1858000010252 ], [ 360700.829999998211861, 259225.09010000154376 ], [ 360693.648199997842312, 259211.104499999433756 ], [ 360687.978399999439716, 259205.056699998676777 ], [ 360683.705600000917912, 259197.579300001263618 ], [ 360640.725900001823902, 259205.754799999296665 ], [ 360639.217699997127056, 259191.449099998921156 ], [ 360637.004699997603893, 259175.641699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001010100", "MAP": "A9-571-T001", "PARCEL_NAM": "4 REM", "ACRE": "23.532", "LONGITUDE": -64.9145533, "LATITUDE": 18.36391728, "OBJECTID_1": 5094, "PARCEL_NO_": "103001010100", "Tax_Legal_": "3B,4C,4REM,4E, & ROW 3-1,4-2 LOVENLUND NO. 2 GREAT NORTHSIDE QTR", "Name": "PETERSEN, MAUREEN P", "Address": "SAPPHIRE BAY WEST D-31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3103300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1772.6839268599999, "SHAPE_Area": 101823.814572 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360343.01799999922514, 259124.1891999989748 ], [ 360373.31360000371933, 259184.780499998480082 ], [ 360316.987300001084805, 259210.836199998855591 ], [ 360380.737400002777576, 259452.519799999892712 ], [ 360396.276699997484684, 259465.617199998348951 ], [ 360410.797899998724461, 259483.780900001525879 ], [ 360418.799900002777576, 259491.023499999195337 ], [ 360462.620200000703335, 259553.232599999755621 ], [ 360485.67960000038147, 259591.418200001120567 ], [ 360490.45269999653101, 259599.056600000709295 ], [ 360502.38740000128746, 259617.941599998623133 ], [ 360538.268700003623962, 259665.520199999213219 ], [ 360540.799099996685982, 259652.453099999576807 ], [ 360540.059299997985363, 259644.636599998921156 ], [ 360546.579899996519089, 259636.457299999892712 ], [ 360550.688799999654293, 259627.413899999111891 ], [ 360551.583200000226498, 259617.0777000002563 ], [ 360554.822899997234344, 259615.415399998426437 ], [ 360557.236400000751019, 259616.068500000983477 ], [ 360561.284199997782707, 259614.201799999922514 ], [ 360565.436200000345707, 259600.092500001192093 ], [ 360580.819099999964237, 259592.830099999904633 ], [ 360588.08669999986887, 259591.622999999672174 ], [ 360591.324500001966953, 259590.171900000423193 ], [ 360601.082999996840954, 259580.541400000452995 ], [ 360620.5675999969244, 259565.079999998211861 ], [ 360631.047799997031689, 259557.948100000619888 ], [ 360636.822300001978874, 259550.788199998438358 ], [ 360641.557199999690056, 259554.340900000184774 ], [ 360647.206900000572205, 259556.433600001037121 ], [ 360650.721600003540516, 259550.417300000786781 ], [ 360648.232100002467632, 259539.598200000822544 ], [ 360715.601499997079372, 259387.947299998253584 ], [ 360725.777300000190735, 259346.046799998730421 ], [ 360728.045299999415874, 259333.951099999248981 ], [ 360727.667300000786781, 259324.123399998992682 ], [ 360724.81700000166893, 259313.549899999052286 ], [ 360662.461999997496605, 259327.841099999845028 ], [ 360651.7212999984622, 259331.109999999403954 ], [ 360651.254299998283386, 259324.572200000286102 ], [ 360648.919399999082088, 259318.501400001347065 ], [ 360642.381599999964237, 259308.694699998944998 ], [ 360632.107900001108646, 259301.223000001162291 ], [ 360622.30120000243187, 259297.487100001424551 ], [ 360608.29169999808073, 259294.685199998319149 ], [ 360579.805600002408028, 259297.487100001424551 ], [ 360529.838200002908707, 259303.557900000363588 ], [ 360486.408600002527237, 259308.694699998944998 ], [ 360460.257399998605251, 259308.227699998766184 ], [ 360443.446000002324581, 259306.3597999997437 ], [ 360426.167499996721745, 259301.689899999648333 ], [ 360415.893899999558926, 259294.218199998140335 ], [ 360413.558899998664856, 259284.878499999642372 ], [ 360412.625, 259272.269900001585484 ], [ 360416.827799998223782, 259261.529199998825788 ], [ 360426.952100001275539, 259243.109099999070168 ], [ 360428.987499997019768, 259231.574799999594688 ], [ 360428.987499997019768, 259220.718899998813868 ], [ 360430.683799996972084, 259212.237700000405312 ], [ 360441.539700001478195, 259191.883000001311302 ], [ 360443.914399996399879, 259185.098099999129772 ], [ 360443.23589999973774, 259176.616900000721216 ], [ 360439.164899997413158, 259157.958399999886751 ], [ 360421.524099998176098, 259122.337499998509884 ], [ 360418.810199998319149, 259114.195599999278784 ], [ 360419.149400003254414, 259107.75 ], [ 360420.845600001513958, 259099.947299998253584 ], [ 360433.737000003457069, 259072.129099998623133 ], [ 360433.397699996829033, 259068.397399999201298 ], [ 360421.669399999082088, 259062.380199998617172 ], [ 360389.843800000846386, 259091.835799999535084 ], [ 360383.410999998450279, 259100.300000000745058 ], [ 360370.545299999415874, 259106.732900001108646 ], [ 360343.01799999922514, 259124.1891999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002035500", "MAP": "D9-7172-T003", "PARCEL_NAM": "C-5-C REM", "ACRE": ".595", "LONGITUDE": -64.90592679, "LATITUDE": 18.36392957, "OBJECTID_1": 5411, "PARCEL_NO_": "103002035500", "Tax_Legal_": "C-5-C REM.LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "MOORE FUN LLC", "Address": "PO BOX 6385", "City": "Breckenridge", "State": "Colorado", "Zip": 80424, "Country": "United States", "Land_Value": 265900, "Improved_V": 1169200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.15419808399997, "SHAPE_Area": 3163.9970872 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361452.590700000524521, 259386.48030000180006 ], [ 361447.570100001990795, 259390.935199998319149 ], [ 361445.342799998819828, 259390.935199998319149 ], [ 361444.971600003540516, 259381.190499998629093 ], [ 361445.020900003612041, 259381.155900001525879 ], [ 361443.030000001192093, 259379.716299999505281 ], [ 361438.219099998474121, 259376.510499998927116 ], [ 361380.058499999344349, 259388.489000000059605 ], [ 361357.330700002610683, 259406.03489999845624 ], [ 361387.128300003707409, 259410.500599998980761 ], [ 361406.440200001001358, 259415.302799999713898 ], [ 361418.498999997973442, 259419.6233000010252 ], [ 361420.910700000822544, 259420.487399999052286 ], [ 361440.273000001907349, 259419.379299998283386 ], [ 361458.845200002193451, 259416.364900000393391 ], [ 361472.590199999511242, 259412.04450000077486 ], [ 361482.310900002717972, 259406.846700001507998 ], [ 361452.590700000524521, 259386.48030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032000", "MAP": "D9-7019-T002", "PARCEL_NAM": "C-17-5", "ACRE": ".611", "LONGITUDE": -64.90349017, "LATITUDE": 18.36360538, "OBJECTID_1": 5357, "PARCEL_NO_": "103002032000", "Tax_Legal_": "C-17-5&C-17-6 LOVENLUND #2 GREAT NORTHSIDE QTR", "Name": "JEREMY HENKEL TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 502600, "Improved_V": 1220800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.92232044900001, "SHAPE_Area": 2787.3232368499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361661.004900000989437, 259393.729600001126528 ], [ 361718.04619999974966, 259390.933499999344349 ], [ 361699.210699997842312, 259345.159000001847744 ], [ 361695.718699999153614, 259345.054200001060963 ], [ 361676.394199997186661, 259341.729600001126528 ], [ 361661.122800000011921, 259335.905099999159575 ], [ 361647.337099999189377, 259332.556600000709295 ], [ 361661.004900000989437, 259393.729600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002039000", "MAP": "D9-7019-T002", "PARCEL_NAM": "C-17", "ACRE": ".820", "LONGITUDE": -64.90293675, "LATITUDE": 18.36371767, "OBJECTID_1": 5579, "PARCEL_NO_": "103002039000", "Tax_Legal_": "C-17 REM.LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "SUMER S TAK AND TARA MIDDLETON TAK REVOCABLE TRUST", "Address": "12800 Center Lake Dr", "City": "Austin", "State": "Texas", "Zip": 78753, "Country": "United States", "Land_Value": 240200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.91042410799997, "SHAPE_Area": 3963.1437388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361699.210699997842312, 259345.159000001847744 ], [ 361735.376900002360344, 259433.051199998706579 ], [ 361740.145700000226498, 259430.699599999934435 ], [ 361746.64299999922514, 259425.264299999922514 ], [ 361772.667900003492832, 259399.301699999719858 ], [ 361750.645000003278255, 259334.104699999094009 ], [ 361724.753100000321865, 259344.447399999946356 ], [ 361715.066600002348423, 259345.634700000286102 ], [ 361699.210699997842312, 259345.159000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032000", "MAP": "D9-7019-T002", "PARCEL_NAM": "C-17-6", "ACRE": ".563", "LONGITUDE": -64.9033194, "LATITUDE": 18.36402967, "OBJECTID_1": 5357, "PARCEL_NO_": "103002032000", "Tax_Legal_": "C-17-5&C-17-6 LOVENLUND #2 GREAT NORTHSIDE QTR", "Name": "JEREMY HENKEL TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 502600, "Improved_V": 1220800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.56061867899999, "SHAPE_Area": 2590.4123075900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361718.04619999974966, 259390.933499999344349 ], [ 361661.004900000989437, 259393.729600001126528 ], [ 361668.715700000524521, 259428.241399999707937 ], [ 361682.892099998891354, 259430.86430000141263 ], [ 361708.64019999653101, 259437.407800000160933 ], [ 361721.541199997067451, 259437.513399999588728 ], [ 361729.618699997663498, 259435.890799999237061 ], [ 361735.376900002360344, 259433.051199998706579 ], [ 361718.04619999974966, 259390.933499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002035800", "MAP": "D9-7245-T003", "PARCEL_NAM": "C-17-2-A", "ACRE": ".57", "LONGITUDE": -64.90393464, "LATITUDE": 18.3639576, "OBJECTID_1": 5492, "PARCEL_NO_": "103002035800", "Tax_Legal_": "C-17-2-A LOVENLUND (CONSOLIDATED) No.2 GREAT NORTHSIDE QTR.", "Name": "MILES, GEOFFREY T. & JENNIFER AMERLING", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 161600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.69770652, "SHAPE_Area": 2487.7357920999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361607.560099996626377, 259394.3761 ], [ 361583.987899996340275, 259418.642499998211861 ], [ 361609.602200001478195, 259420.342999998480082 ], [ 361613.002700001001358, 259420.704999998211861 ], [ 361648.272799998521805, 259424.459199998527765 ], [ 361668.715700000524521, 259428.241399999707937 ], [ 361657.936099998652935, 259379.994699999690056 ], [ 361614.805900000035763, 259386.916799999773502 ], [ 361607.560099996626377, 259394.3761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002035200", "MAP": "D9-7245-T003", "PARCEL_NAM": "C-17-2 REM", "ACRE": "1.140", "LONGITUDE": -64.90415757, "LATITUDE": 18.36361517, "OBJECTID_1": 5397, "PARCEL_NO_": "103002035200", "Tax_Legal_": "C-17-2 REM LOVENLUND (CONSOLIDATED)", "Name": "SPILLANE, PHILIP F. & JESSICA", "Address": "5316 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 352500, "Improved_V": 470200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.37020960299998, "SHAPE_Area": 4751.0359798899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361607.560099996626377, 259394.3761 ], [ 361614.805900000035763, 259386.916799999773502 ], [ 361657.936099998652935, 259379.994699999690056 ], [ 361647.337099999189377, 259332.556600000709295 ], [ 361645.833400003612041, 259332.191399998962879 ], [ 361625.697200000286102, 259329.493400000035763 ], [ 361615.209700003266335, 259330.040899999439716 ], [ 361604.688100002706051, 259334.598799999803305 ], [ 361596.516699999570847, 259340.953999999910593 ], [ 361568.159500002861023, 259363.008600000292063 ], [ 361560.677500002086163, 259368.002599999308586 ], [ 361583.987899996340275, 259418.642499998211861 ], [ 361607.560099996626377, 259394.3761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001041000", "MAP": null, "PARCEL_NAM": "B-24-B", "ACRE": null, "LONGITUDE": -64.91096593, "LATITUDE": 18.35761939, "OBJECTID_1": 5282, "PARCEL_NO_": "103001041000", "Tax_Legal_": "R.O.W.'S B-24-B,-C,-D,-E&B-24-A-3 LOVELNUND NO.2 GT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.9534361889, "SHAPE_Area": 13.9285038708 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360886.68639999628067, 258698.387600000947714 ], [ 360886.807499997317791, 258699.380399998277426 ], [ 360903.64019999653101, 258696.799300000071526 ], [ 360907.697999998927116, 258694.770500000566244 ], [ 360900.51690000295639, 258696.821400001645088 ], [ 360886.68639999628067, 258698.387600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001041000", "MAP": "A9-708-T07", "PARCEL_NAM": "B-24-C", "ACRE": null, "LONGITUDE": -64.90973743000001, "LATITUDE": 18.35674004, "OBJECTID_1": 5282, "PARCEL_NO_": "103001041000", "Tax_Legal_": "R.O.W.'S B-24-B,-C,-D,-E&B-24-A-3 LOVELNUND NO.2 GT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 452.929806531, "SHAPE_Area": 465.93258492899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360951.200400002300739, 258671.19200000166893 ], [ 360969.588899999856949, 258655.414200000464916 ], [ 360987.97749999910593, 258630.940200001001358 ], [ 361024.754600003361702, 258601.571400001645088 ], [ 361061.399499997496605, 258579.081799998879433 ], [ 361087.990199998021126, 258554.872299998998642 ], [ 361100.954800002276897, 258541.643100000917912 ], [ 361109.289200000464916, 258529.736900001764297 ], [ 361115.602099999785423, 258518.864500001072884 ], [ 361091.277000002563, 258548.506299998611212 ], [ 361089.6554000005126, 258549.548500001430511 ], [ 361088.015799999237061, 258552.701400000602007 ], [ 361076.625, 258564.640500001609325 ], [ 361060.383599996566772, 258578.017599999904633 ], [ 361019.859399996697903, 258602.172800000756979 ], [ 361003.632500000298023, 258613.861200001090765 ], [ 360986.566799998283386, 258629.342500001192093 ], [ 360971.092299997806549, 258647.369899999350309 ], [ 360961.303199999034405, 258660.588599998503923 ], [ 360951.200400002300739, 258671.19200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001041000", "MAP": "A9-708-T07", "PARCEL_NAM": "B-24-D", "ACRE": null, "LONGITUDE": -64.90812783, "LATITUDE": 18.35537008, "OBJECTID_1": 5282, "PARCEL_NO_": "103001041000", "Tax_Legal_": "R.O.W.'S B-24-B,-C,-D,-E&B-24-A-3 LOVELNUND NO.2 GT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 311.77723419, "SHAPE_Area": 273.569132932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361137.406499996781349, 258495.948800001293421 ], [ 361165.037000000476837, 258476.277699999511242 ], [ 361187.738300003111362, 258460.878899998962879 ], [ 361205.042099997401237, 258447.861400000751019 ], [ 361221.234600000083447, 258430.716400001198053 ], [ 361226.790899999439716, 258424.525100000202656 ], [ 361242.348399996757507, 258416.111299999058247 ], [ 361264.757100000977516, 258412.910100001841784 ], [ 361263.387699998915195, 258412.281899999827147 ], [ 361253.721000000834465, 258411.147300001233816 ], [ 361240.7804000005126, 258415.685499999672174 ], [ 361228.628200002014637, 258422.340999998152256 ], [ 361218.068800002336502, 258431.331599999219179 ], [ 361217.246299996972084, 258433.224700000137091 ], [ 361203.423900000751019, 258446.621599998325109 ], [ 361189.6266999989748, 258457.063299998641014 ], [ 361164.490699999034405, 258473.322900000959635 ], [ 361140.943999998271465, 258492.339699998497963 ], [ 361137.406499996781349, 258495.948800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103001041000", "MAP": "A9-708-T07", "PARCEL_NAM": "B-24A-3", "ACRE": null, "LONGITUDE": -64.90709645, "LATITUDE": 18.3557671, "OBJECTID_1": 5282, "PARCEL_NO_": "103001041000", "Tax_Legal_": "R.O.W.'S B-24-B,-C,-D,-E&B-24-A-3 LOVELNUND NO.2 GT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.6669044705, "SHAPE_Area": 35.798518474399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361312.103900000452995, 258501.616200000047684 ], [ 361313.80460000038147, 258499.915500000119209 ], [ 361302.877199999988079, 258492.136700000613928 ], [ 361297.522299997508526, 258489.646000001579523 ], [ 361299.79839999973774, 258492.3733000010252 ], [ 361307.811099998652935, 258498.349500000476837 ], [ 361312.103900000452995, 258501.616200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004050100", "MAP": "A9-708-T007", "PARCEL_NAM": "B-19", "ACRE": "2.64", "LONGITUDE": -64.90787635, "LATITUDE": 18.35480944, "OBJECTID_1": 6256, "PARCEL_NO_": "103004050100", "Tax_Legal_": "B-19 ESTATE LOVENLUND NO.2 GT NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 154500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 537.38667468799997, "SHAPE_Area": 9528.2791572900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361310.247900001704693, 258435.121399998664856 ], [ 361256.160599999129772, 258314.0641999989748 ], [ 361225.317699998617172, 258337.665399998426437 ], [ 361144.7753000035882, 258421.232500001788139 ], [ 361129.12780000269413, 258446.118500001728535 ], [ 361127.608900003135204, 258448.534200001507998 ], [ 361126.354999996721745, 258450.644900001585484 ], [ 361208.592799998819828, 258428.954500000923872 ], [ 361215.081000000238419, 258422.27309999987483 ], [ 361217.359600000083447, 258419.926699999719858 ], [ 361225.478399999439716, 258413.449299998581409 ], [ 361236.820799998939037, 258407.209300000220537 ], [ 361246.528899997472763, 258403.489100001752377 ], [ 361253.798299998044968, 258402.070900000631809 ], [ 361261.857799999415874, 258402.559099998325109 ], [ 361271.506599999964237, 258405.804499998688698 ], [ 361278.720200002193451, 258410.929699998348951 ], [ 361281.308899998664856, 258414.972899999469519 ], [ 361285.338100001215935, 258418.024099998176098 ], [ 361287.768700003623962, 258424.100600000470877 ], [ 361289.347900003194809, 258435.997600000351667 ], [ 361310.247900001704693, 258435.121399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103004055000", "MAP": "A9-708-T07", "PARCEL_NAM": "B-25-C", "ACRE": null, "LONGITUDE": -64.90516595, "LATITUDE": 18.35600927, "OBJECTID_1": 6328, "PARCEL_NO_": "103004055000", "Tax_Legal_": "B-25-C R.O.W ESTATE LOVENLUND NO.2 GT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 808.95948793900004, "SHAPE_Area": 1069.684564 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361702.855200000107288, 258545.521099999547005 ], [ 361699.173100002110004, 258541.598900001496077 ], [ 361659.167999997735023, 258527.787599999457598 ], [ 361646.468000002205372, 258521.278799999505281 ], [ 361630.116700001060963, 258514.770100001245737 ], [ 361616.940399996936321, 258514.770100001245737 ], [ 361600.430399999022484, 258520.485100001096725 ], [ 361569.47410000115633, 258529.692600000649691 ], [ 361546.772799998521805, 258534.296399999409914 ], [ 361525.023999996483326, 258536.360100001096725 ], [ 361507.244000002741814, 258536.201400000602007 ], [ 361488.828900001943111, 258533.978900000452995 ], [ 361476.922700002789497, 258530.962600000202656 ], [ 361440.88629999756813, 258521.913899999111891 ], [ 361409.929999999701977, 258515.881299998611212 ], [ 361385.641199998557568, 258513.6587999984622 ], [ 361362.939900003373623, 258512.865100000053644 ], [ 361343.572400003671646, 258510.642599999904633 ], [ 361329.919900000095367, 258507.785100001841784 ], [ 361315.314800001680851, 258500.64130000025034 ], [ 361313.80460000038147, 258499.915500000119209 ], [ 361312.103900000452995, 258501.616200000047684 ], [ 361312.321400001645088, 258501.781700000166893 ], [ 361313.419399999082088, 258502.617300000041723 ], [ 361329.482699997723103, 258510.136999998241663 ], [ 361344.773800000548363, 258513.639600001275539 ], [ 361408.43299999833107, 258518.804699998348951 ], [ 361441.443199999630451, 258524.774399999529123 ], [ 361488.922200001776218, 258536.139899998903275 ], [ 361507.447599999606609, 258538.613499999046326 ], [ 361527.605400003492832, 258538.778499998152256 ], [ 361545.358599998056889, 258537.235100001096725 ], [ 361564.742499999701977, 258533.594000000506639 ], [ 361609.210199996829033, 258519.814699999988079 ], [ 361619.699400000274181, 258519.056200001388788 ], [ 361621.321000002324581, 258518.013999998569489 ], [ 361626.146300002932549, 258519.531100001186132 ], [ 361637.427500002086163, 258520.467799998819828 ], [ 361661.532399997115135, 258530.586500000208616 ], [ 361683.225500002503395, 258539.841099999845028 ], [ 361702.855200000107288, 258545.521099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103001039900", "MAP": "A9-718-T007", "PARCEL_NAM": "C-5B ROW", "ACRE": null, "LONGITUDE": -64.9092588, "LATITUDE": 18.36434012, "OBJECTID_1": 5274, "PARCEL_NO_": "103001039900", "Tax_Legal_": "LOVENLUND C-5B (ROADWAY) GT NORTHSIDE", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 22200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1762.6928377700001, "SHAPE_Area": 7116.7418969700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361174.161799997091293, 259515.148800000548363 ], [ 361149.900499999523163, 259523.393899999558926 ], [ 361128.052799999713898, 259532.292100001126528 ], [ 361098.079000003635883, 259548.512099999934435 ], [ 361082.703299999237061, 259554.93019999936223 ], [ 361069.769900001585484, 259558.624000001698732 ], [ 361057.659000001847744, 259560.424699999392033 ], [ 361044.741899996995926, 259562.218800000846386 ], [ 361028.617399998009205, 259561.875799998641014 ], [ 360999.620700001716614, 259558.049899999052286 ], [ 360983.537600003182888, 259552.852000001817942 ], [ 360973.102300003170967, 259547.278099998831749 ], [ 360965.894100002944469, 259541.519600000232458 ], [ 360953.104599997401237, 259528.327199999243021 ], [ 360946.709799997508526, 259521.730900000780821 ], [ 360937.901500001549721, 259514.481600001454353 ], [ 360916.242600001394749, 259501.216600000858307 ], [ 360907.448600001633167, 259492.2787000015378 ], [ 360904.302500002086163, 259482.964800000190735 ], [ 360903.622100003063679, 259468.182700000703335 ], [ 360905.326399996876717, 259457.430900000035763 ], [ 360907.880199998617172, 259441.619699999690056 ], [ 360912.055600002408028, 259424.766399998217821 ], [ 360919.506599999964237, 259402.02930000051856 ], [ 360924.438000001013279, 259391.092799998819828 ], [ 360927.735200002789497, 259382.676100000739098 ], [ 360933.469300001859665, 259372.168299999088049 ], [ 360940.792599998414516, 259364.41780000180006 ], [ 360955.417700000107288, 259351.449700001627207 ], [ 360962.764499999582767, 259340.955099999904633 ], [ 360973.354400001466274, 259328.376200001686811 ], [ 360987.201999999582767, 259312.02419999986887 ], [ 360989.626299999654293, 259311.410799998790026 ], [ 360994.453400000929832, 259312.716899998486042 ], [ 360995.22919999808073, 259316.311799999326468 ], [ 361004.109399996697903, 259315.117899999022484 ], [ 361002.584899999201298, 259304.761900000274181 ], [ 361002.638800002634525, 259298.429499998688698 ], [ 361004.296400003135204, 259293.165699999779463 ], [ 361014.866599999368191, 259282.908599998801947 ], [ 361043.299699999392033, 259258.232299998402596 ], [ 361062.006700001657009, 259239.386999998241663 ], [ 361054.794900000095367, 259234.050599999725819 ], [ 361039.341899998486042, 259249.545099999755621 ], [ 361027.159100003540516, 259259.789000000804663 ], [ 361003.608800001442432, 259279.227899998426437 ], [ 360997.924999997019768, 259283.825500000268221 ], [ 360993.040399998426437, 259289.273899998515844 ], [ 360983.247800000011921, 259302.914799999445677 ], [ 360961.25789999961853, 259328.488299999386072 ], [ 360948.213100001215935, 259345.269000001251698 ], [ 360943.33389999717474, 259350.084199998527765 ], [ 360925.449299998581409, 259367.036400001496077 ], [ 360922.983599998056889, 259372.504700001329184 ], [ 360917.244099996984005, 259383.645700000226498 ], [ 360908.994000002741814, 259405.531899999827147 ], [ 360900.666500002145767, 259436.494500000029802 ], [ 360897.221900001168251, 259462.219700001180172 ], [ 360896.402999997138977, 259463.690600000321865 ], [ 360897.087099999189377, 259478.050599999725819 ], [ 360897.004299998283386, 259487.760200001299381 ], [ 360899.387299999594688, 259492.001600001007318 ], [ 360900.159500002861023, 259496.018699999898672 ], [ 360912.153399996459484, 259507.938099998980761 ], [ 360923.393299996852875, 259513.729600001126528 ], [ 360931.406000003218651, 259519.705800000578165 ], [ 360941.819799996912479, 259527.812600001692772 ], [ 360960.203100003302097, 259546.961500000208616 ], [ 360969.01860000193119, 259553.366399999707937 ], [ 360982.664800003170967, 259560.655299998819828 ], [ 360994.725299999117851, 259564.764800000935793 ], [ 361033.390500001609325, 259569.514199998229742 ], [ 361047.097900003194809, 259569.626400001347065 ], [ 361060.819600000977516, 259568.050000000745058 ], [ 361068.893500000238419, 259566.849500000476837 ], [ 361081.826800003647804, 259563.155699998140335 ], [ 361098.816899999976158, 259556.539700001478195 ], [ 361135.264600001275539, 259537.628499999642372 ], [ 361166.005199998617172, 259526.058899998664856 ], [ 361196.745800003409386, 259514.489199999719858 ], [ 361201.599799998104572, 259512.629099998623133 ], [ 361214.55120000243187, 259506.824499998241663 ], [ 361287.369300000369549, 259478.078499998897314 ], [ 361317.305299997329712, 259466.29109999909997 ], [ 361348.051299996674061, 259454.088300000876188 ], [ 361382.044100001454353, 259439.378800000995398 ], [ 361396.611699998378754, 259433.165300000458956 ], [ 361404.363600000739098, 259431.20380000025034 ], [ 361396.685400001704693, 259424.510999999940395 ], [ 361361.875500001013279, 259440.48030000180006 ], [ 361341.64750000089407, 259448.547400001436472 ], [ 361268.829499997198582, 259477.293400000780821 ], [ 361240.50959999859333, 259488.671799998730421 ], [ 361174.161799997091293, 259515.148800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052600", "MAP": null, "PARCEL_NAM": "B-1-2", "ACRE": null, "LONGITUDE": -64.90726222000001, "LATITUDE": 18.35651551, "OBJECTID_1": 6307, "PARCEL_NO_": "103004052600", "Tax_Legal_": "LOVENLUND ESTATE B1-2 No.2 GREAT NORTHSIDE QTR", "Name": "FAIRWAY VILLAGE COND, ASSOCIATN", "Address": "PO Box 302778", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.59934873, "SHAPE_Area": 1291.4157458899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361308.497599996626377, 258595.142200000584126 ], [ 361301.056800000369549, 258558.614700000733137 ], [ 361292.023699998855591, 258553.104600001126528 ], [ 361259.519400000572205, 258582.391699999570847 ], [ 361291.019199997186661, 258599.677700001746416 ], [ 361308.497599996626377, 258595.142200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001048900", "MAP": "A9-714-T007", "PARCEL_NAM": "CONS B-1-4", "ACRE": "15.318", "LONGITUDE": -64.90868376, "LATITUDE": 18.3568469, "OBJECTID_1": 5285, "PARCEL_NO_": "103001048900", "Tax_Legal_": "B-1-4 ESTATE LOVENLUND GT. NORTHSIDE QTR.", "Name": "DUN RUN DEVELOPMENT LLC", "Address": "3100 Monticello Ave", "City": "Dallas", "State": "Texas", "Zip": 75205, "Country": "United States", "Land_Value": 231400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2431.0761877999998, "SHAPE_Area": 65716.963189200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360874.000799998641014, 258760.736299999058247 ], [ 360891.794799998402596, 258756.629999998956919 ], [ 360912.326300002634525, 258765.298799999058247 ], [ 360942.4391999989748, 258776.249000001698732 ], [ 360983.502300001680851, 258767.1239 ], [ 361028.215499997138977, 258750.698600001633167 ], [ 361069.278499998152256, 258725.604499999433756 ], [ 361104.866499997675419, 258710.09180000051856 ], [ 361129.504399999976158, 258690.929000001400709 ], [ 361154.142200000584126, 258655.7972999997437 ], [ 361188.36150000244379, 258602.415300000458956 ], [ 361198.399099998176098, 258568.196100000292063 ], [ 361227.53490000218153, 258550.676899999380112 ], [ 361226.937100000679493, 258526.185199998319149 ], [ 361239.148699998855591, 258512.564100001007318 ], [ 361272.376599997282028, 258492.993200000375509 ], [ 361277.164099998772144, 258498.942999999970198 ], [ 361284.365099996328354, 258505.545899998396635 ], [ 361295.586999997496605, 258513.44819999858737 ], [ 361301.209600001573563, 258516.027300000190735 ], [ 361314.061999998986721, 258521.831999998539686 ], [ 361345.441699996590614, 258529.899300001561642 ], [ 361365.556400001049042, 258535.130199998617172 ], [ 361399.390900000929832, 258538.995700001716614 ], [ 361426.737199999392033, 258547.241099998354912 ], [ 361442.021200001239777, 258551.587999999523163 ], [ 361459.720499999821186, 258556.377000000327826 ], [ 361487.093800000846386, 258561.4560999982059 ], [ 361502.963600002229214, 258560.121800001710653 ], [ 361508.678599998354912, 258560.333500001579523 ], [ 361513.123599998652935, 258560.121800001710653 ], [ 361519.473600000143051, 258559.910100001841784 ], [ 361526.881899997591972, 258559.698499999940395 ], [ 361533.020300000905991, 258558.851799998432398 ], [ 361538.523599997162819, 258558.21680000051856 ], [ 361545.085299998521805, 258557.581799998879433 ], [ 361552.070299997925758, 258556.311799999326468 ], [ 361557.785300001502037, 258555.041799999773502 ], [ 361564.135300002992153, 258552.92509999871254 ], [ 361575.777000002563, 258549.432599999010563 ], [ 361580.063299998641014, 258548.003899998962879 ], [ 361584.825800001621246, 258546.257599998265505 ], [ 361588.000799998641014, 258545.14640000090003 ], [ 361591.175800003111362, 258544.352600000798702 ], [ 361594.192100003361702, 258543.717599999159575 ], [ 361596.890799999237061, 258543.558899998664856 ], [ 361599.7483000010252, 258543.082600001245737 ], [ 361604.828299999237061, 258543.082600001245737 ], [ 361612.924599997699261, 258543.558899998664856 ], [ 361620.862099997699261, 258543.876400001347065 ], [ 361633.720899999141693, 258545.463899999856949 ], [ 361640.229699999094009, 258546.098900001496077 ], [ 361649.437200002372265, 258547.368900001049042 ], [ 361656.263400003314018, 258549.273899998515844 ], [ 361661.18469999730587, 258550.702599998563528 ], [ 361666.105999998748302, 258552.131400000303984 ], [ 361669.916000001132488, 258553.718899998813868 ], [ 361672.773500002920628, 258554.988899998366833 ], [ 361676.107199996709824, 258557.052600000053644 ], [ 361678.806000001728535, 258559.751400001347065 ], [ 361682.139700002968311, 258563.720100000500679 ], [ 361684.362199999392033, 258567.212699998170137 ], [ 361685.473499998450279, 258569.593899998813868 ], [ 361687.219800002872944, 258574.197700001299381 ], [ 361687.854800000786781, 258579.595199998468161 ], [ 361687.028399996459484, 258584.098499998450279 ], [ 361687.171400003135204, 258585.303599998354912 ], [ 361687.375500001013279, 258587.022700000554323 ], [ 361687.642599999904633, 258589.27309999987483 ], [ 361699.722900003194809, 258591.0608000010252 ], [ 361711.007700003683567, 258591.575300000607967 ], [ 361712.625699996948242, 258590.955299999564886 ], [ 361715.068000003695488, 258588.230999998748302 ], [ 361716.925200000405312, 258559.537500001490116 ], [ 361713.752099998295307, 258553.389800000935793 ], [ 361708.957400001585484, 258548.284299999475479 ], [ 361705.7483000010252, 258546.358199998736382 ], [ 361683.225500002503395, 258539.841099999845028 ], [ 361661.532399997115135, 258530.586500000208616 ], [ 361626.146300002932549, 258519.531100001186132 ], [ 361621.321000002324581, 258518.013999998569489 ], [ 361619.699400000274181, 258519.056200001388788 ], [ 361609.210199996829033, 258519.814699999988079 ], [ 361564.742499999701977, 258533.594000000506639 ], [ 361545.358599998056889, 258537.235100001096725 ], [ 361527.605400003492832, 258538.778499998152256 ], [ 361507.447599999606609, 258538.613499999046326 ], [ 361488.922200001776218, 258536.139899998903275 ], [ 361441.443199999630451, 258524.774399999529123 ], [ 361408.43299999833107, 258518.804699998348951 ], [ 361344.773800000548363, 258513.639600001275539 ], [ 361329.482699997723103, 258510.136999998241663 ], [ 361313.419399999082088, 258502.617300000041723 ], [ 361312.321400001645088, 258501.781700000166893 ], [ 361312.163199998438358, 258501.661299999803305 ], [ 361312.103900000452995, 258501.616200000047684 ], [ 361307.811099998652935, 258498.349500000476837 ], [ 361299.79839999973774, 258492.3733000010252 ], [ 361297.522299997508526, 258489.646000001579523 ], [ 361291.816200003027916, 258482.808699999004602 ], [ 361288.628700003027916, 258478.349700000137091 ], [ 361281.495899997651577, 258463.725900001823902 ], [ 361278.39299999922514, 258449.346099998801947 ], [ 361276.970899999141693, 258426.958500001579523 ], [ 361275.397900000214577, 258422.301600001752377 ], [ 361273.812200002372265, 258419.12220000103116 ], [ 361269.010300002992153, 258414.861099999397993 ], [ 361264.757100000977516, 258412.910100001841784 ], [ 361242.348399996757507, 258416.111299999058247 ], [ 361226.790899999439716, 258424.525100000202656 ], [ 361221.234600000083447, 258430.716400001198053 ], [ 361205.042099997401237, 258447.861400000751019 ], [ 361187.738300003111362, 258460.878899998962879 ], [ 361165.037000000476837, 258476.277699999511242 ], [ 361137.406499996781349, 258495.948800001293421 ], [ 361118.981200002133846, 258514.746899999678135 ], [ 361115.602099999785423, 258518.864500001072884 ], [ 361109.289200000464916, 258529.736900001764297 ], [ 361100.954800002276897, 258541.643100000917912 ], [ 361087.990199998021126, 258554.872299998998642 ], [ 361061.399499997496605, 258579.081799998879433 ], [ 361024.754600003361702, 258601.571400001645088 ], [ 360987.97749999910593, 258630.940200001001358 ], [ 360969.588899999856949, 258655.414200000464916 ], [ 360951.200400002300739, 258671.19200000166893 ], [ 360950.725900001823902, 258671.690000001341105 ], [ 360949.034800000488758, 258673.05009999871254 ], [ 360937.734899997711182, 258682.138399999588728 ], [ 360919.917000003159046, 258691.280699998140335 ], [ 360907.697999998927116, 258694.770500000566244 ], [ 360903.64019999653101, 258696.799300000071526 ], [ 360886.807499997317791, 258699.380399998277426 ], [ 360886.68639999628067, 258698.387600000947714 ], [ 360877.916799999773502, 258699.380699999630451 ], [ 360870.645599998533726, 258701.009899999946356 ], [ 360863.363600000739098, 258703.905600000172853 ], [ 360855.259099997580051, 258708.694400001317263 ], [ 360850.379900000989437, 258713.50959999859333 ], [ 360842.241200000047684, 258722.309000000357628 ], [ 360839.784500002861023, 258726.721799999475479 ], [ 360836.499899998307228, 258733.660999998450279 ], [ 360834.005500003695488, 258742.506499998271465 ], [ 360826.610200002789497, 258758.700199998915195 ], [ 360823.348999999463558, 258762.895399998873472 ], [ 360815.221100002527237, 258770.428199999034405 ], [ 360814.97410000115633, 258770.574999999254942 ], [ 360789.286100000143051, 258785.836899999529123 ], [ 360765.005000002682209, 258796.403900001198053 ], [ 360730.24719999730587, 258806.252000000327826 ], [ 360731.0337999984622, 258808.580400001257658 ], [ 360743.078100003302097, 258814.589600000530481 ], [ 360800.543499998748302, 258794.95549999922514 ], [ 360831.112700000405312, 258786.28660000115633 ], [ 360849.819200001657009, 258776.249000001698732 ], [ 360856.663000002503395, 258766.211399998515844 ], [ 360874.000799998641014, 258760.736299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103001020100", "MAP": "A9-724-T008", "PARCEL_NAM": "CONS A-1 REM", "ACRE": "2.74", "LONGITUDE": -64.91027795, "LATITUDE": 18.3596402, "OBJECTID_1": 5168, "PARCEL_NO_": "103001020100", "Tax_Legal_": "Consolidated A-1-REM LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "DUN RUN GOLF LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 353600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 525.422339857, "SHAPE_Area": 12794.169029000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361034.171499997377396, 258909.915199998766184 ], [ 361033.997599996626377, 258907.654599998146296 ], [ 361017.402900002896786, 258865.935300000011921 ], [ 361014.357699997723103, 258869.37220000103116 ], [ 361002.192800000309944, 258877.505300000309944 ], [ 360983.595499999821186, 258883.474800001829863 ], [ 360971.490000002086163, 258884.642299998551607 ], [ 360961.826899997889996, 258883.085499998182058 ], [ 360948.155500002205372, 258878.751800000667572 ], [ 360932.896700002253056, 258871.449700001627207 ], [ 360927.286700002849102, 258867.39299999922514 ], [ 360919.407799996435642, 258864.66950000077486 ], [ 360912.441899999976158, 258865.664599999785423 ], [ 360889.247299998998642, 258869.85249999910593 ], [ 360872.416599996387959, 258878.383200000971556 ], [ 360884.190700002014637, 258909.470100000500679 ], [ 360885.754799999296665, 258915.182399999350309 ], [ 360892.1908999979496, 258916.923799999058247 ], [ 360905.113499999046326, 258914.496500000357628 ], [ 360910.755900003015995, 258914.753800000995398 ], [ 360917.188400000333786, 258916.917300000786781 ], [ 360922.647299997508526, 258938.704700000584126 ], [ 360926.646499998867512, 258942.537099998444319 ], [ 360941.007299996912479, 258960.597600001841784 ], [ 360946.403399996459484, 258989.772599998861551 ], [ 360958.54839999973774, 258983.961399998515844 ], [ 360968.322999998927116, 258972.43129999935627 ], [ 360968.995600000023842, 258970.546399999409914 ], [ 360974.40259999781847, 258973.75279999896884 ], [ 361012.046599999070168, 258994.181600000709295 ], [ 361022.326200000941753, 258975.195300001651049 ], [ 361033.801600001752377, 258953.335499998182058 ], [ 361033.825000002980232, 258950.591499999165535 ], [ 361034.171499997377396, 258909.915199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002020300", "MAP": "A9-724-T008", "PARCEL_NAM": "CONS C-2-Q", "ACRE": "131.9", "LONGITUDE": -64.90781256, "LATITUDE": 18.36001611, "OBJECTID_1": 5296, "PARCEL_NO_": "103002020300", "Tax_Legal_": "LOVENLUND C-2Q GR NORTHSIDE", "Name": "DUN RUN GOLF LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 1648755, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 6245.8399924900004, "SHAPE_Area": 522427.49888899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360775.347900003194809, 259664.716400001198053 ], [ 360796.472099997103214, 259646.102000001817942 ], [ 360825.814000003039837, 259609.400699999183416 ], [ 360842.035599999129772, 259598.345499999821186 ], [ 360858.161799997091293, 259598.47749999910593 ], [ 360912.05349999666214, 259614.328400000929832 ], [ 360928.917700000107288, 259622.488000001758337 ], [ 360969.01860000193119, 259553.366399999707937 ], [ 360960.203100003302097, 259546.961500000208616 ], [ 360941.819799996912479, 259527.812600001692772 ], [ 360931.406000003218651, 259519.705800000578165 ], [ 360875.651799999177456, 259533.181699998676777 ], [ 360851.825699999928474, 259490.345800001174212 ], [ 360853.734999999403954, 259455.530999999493361 ], [ 360855.633500002324581, 259421.982599999755621 ], [ 360866.376299999654293, 259391.462000001221895 ], [ 360882.779500000178814, 259359.087799999862909 ], [ 360899.189900003373623, 259325.869300000369549 ], [ 360909.029200002551079, 259306.74040000140667 ], [ 360913.111199997365475, 259300.863200001418591 ], [ 360930.26129999756813, 259275.461199998855591 ], [ 360947.407799996435642, 259250.4814000017941 ], [ 360956.388800002634525, 259237.467099998146296 ], [ 360970.95269999653101, 259231.675700001418591 ], [ 361013.024800002574921, 259215.132500000298023 ], [ 361022.783299997448921, 259205.502099998295307 ], [ 361038.391000002622604, 259171.854899998754263 ], [ 361054.002199999988079, 259137.785500001162291 ], [ 361090.462499998509884, 259117.396699998527765 ], [ 361118.821900002658367, 259101.374600000679493 ], [ 361151.997599996626377, 259087.92509999871254 ], [ 361190.837200000882149, 259072.19990000128746 ], [ 361214.414499998092651, 259049.594700001180172 ], [ 361237.877400003373623, 259135.068599998950958 ], [ 361287.093000002205372, 259131.882800001651049 ], [ 361313.742700003087521, 259127.245700001716614 ], [ 361396.11429999768734, 259112.932300001382828 ], [ 361419.538699999451637, 259108.268800001591444 ], [ 361447.016199998557568, 259101.105399999767542 ], [ 361474.515399999916553, 259091.409099999815226 ], [ 361493.109099999070168, 259085.861800000071526 ], [ 361502.012699998915195, 259081.923900000751019 ], [ 361523.817299999296665, 259078.091499999165535 ], [ 361523.867700003087521, 259072.18129999935627 ], [ 361524.968900002539158, 259037.570999998599291 ], [ 361594.297399997711182, 259039.827199999243021 ], [ 361648.325699999928474, 259039.636100001633167 ], [ 361714.243699997663498, 259063.60700000077486 ], [ 361726.302400000393391, 259067.927600000053644 ], [ 361754.438900001347065, 259078.079199999570847 ], [ 361765.836099997162819, 259080.885899998247623 ], [ 361768.977700002491474, 259075.242899999022484 ], [ 361780.357699997723103, 259064.570300001651049 ], [ 361826.535099998116493, 259039.405900001525879 ], [ 361845.159400001168251, 259030.270199999213219 ], [ 361873.53320000320673, 259012.559500001370907 ], [ 361962.826399996876717, 258942.996199999004602 ], [ 361969.352399997413158, 258934.183600001037121 ], [ 361970.1875, 258930.813000001013279 ], [ 361971.818099997937679, 258928.715399999171495 ], [ 361972.685599997639656, 258921.545299999415874 ], [ 361971.162799999117851, 258910.978199999779463 ], [ 361967.208599999547005, 258901.86879999935627 ], [ 361967.237400002777576, 258898.491500001400709 ], [ 361965.635499998927116, 258897.211899999529123 ], [ 361952.838799998164177, 258884.863699998706579 ], [ 361949.626199997961521, 258883.359700001776218 ], [ 361925.535700000822544, 258871.552400000393391 ], [ 361909.459799997508526, 258865.510200001299381 ], [ 361891.760499998927116, 258860.7212999984622 ], [ 361870.825099997222424, 258857.172499999403954 ], [ 361861.154799997806549, 258856.46000000089407 ], [ 361764.337899997830391, 258862.633699998259544 ], [ 361757.064900003373623, 258864.473999999463558 ], [ 361687.569200001657009, 258881.848200000822544 ], [ 361685.144900001585484, 258882.461599998176098 ], [ 361669.837499998509884, 258880.85869999974966 ], [ 361639.231799997389317, 258876.59739999845624 ], [ 361623.956900000572205, 258871.195099998265505 ], [ 361611.921499997377396, 258864.130499999970198 ], [ 361607.911499999463558, 258861.564500000327826 ], [ 361587.910199999809265, 258843.035700000822544 ], [ 361581.549599997699261, 258832.429000001400709 ], [ 361577.60249999910593, 258822.475299999117851 ], [ 361576.043799996376038, 258816.129700001329184 ], [ 361575.363399997353554, 258801.347600001841784 ], [ 361577.082099996507168, 258788.9070999994874 ], [ 361582.861199997365475, 258773.122400000691414 ], [ 361590.207900002598763, 258762.627900000661612 ], [ 361592.355800002813339, 258758.782200001180172 ], [ 361596.735699996352196, 258753.604299999773502 ], [ 361602.435599997639656, 258747.10700000077486 ], [ 361608.922100000083447, 258742.938200000673532 ], [ 361638.95889999717474, 258719.33049999922514 ], [ 361645.470499999821186, 258712.206599999219179 ], [ 361661.110500000417233, 258674.760000001639128 ], [ 361673.39580000191927, 258652.484600000083447 ], [ 361692.981100000441074, 258625.2027000002563 ], [ 361700.311599999666214, 258616.607900001108646 ], [ 361705.106799997389317, 258610.015900000929832 ], [ 361705.093099996447563, 258603.440499998629093 ], [ 361700.533399999141693, 258599.705299999564886 ], [ 361695.181500002741814, 258598.672800000756979 ], [ 361694.91950000077486, 258597.690600000321865 ], [ 361693.209700003266335, 258597.076900001615286 ], [ 361687.642599999904633, 258589.27309999987483 ], [ 361687.028399996459484, 258584.098499998450279 ], [ 361687.854800000786781, 258579.595199998468161 ], [ 361687.219800002872944, 258574.197700001299381 ], [ 361685.473499998450279, 258569.593899998813868 ], [ 361684.362199999392033, 258567.212699998170137 ], [ 361682.139700002968311, 258563.720100000500679 ], [ 361678.806000001728535, 258559.751400001347065 ], [ 361676.107199996709824, 258557.052600000053644 ], [ 361672.773500002920628, 258554.988899998366833 ], [ 361669.916000001132488, 258553.718899998813868 ], [ 361666.105999998748302, 258552.131400000303984 ], [ 361661.18469999730587, 258550.702599998563528 ], [ 361656.263400003314018, 258549.273899998515844 ], [ 361649.437200002372265, 258547.368900001049042 ], [ 361640.229699999094009, 258546.098900001496077 ], [ 361633.720899999141693, 258545.463899999856949 ], [ 361620.862099997699261, 258543.876400001347065 ], [ 361612.924599997699261, 258543.558899998664856 ], [ 361604.828299999237061, 258543.082600001245737 ], [ 361599.7483000010252, 258543.082600001245737 ], [ 361596.890799999237061, 258543.558899998664856 ], [ 361594.192100003361702, 258543.717599999159575 ], [ 361591.175800003111362, 258544.352600000798702 ], [ 361588.000799998641014, 258545.14640000090003 ], [ 361584.825800001621246, 258546.257599998265505 ], [ 361580.063299998641014, 258548.003899998962879 ], [ 361575.777000002563, 258549.432599999010563 ], [ 361564.135300002992153, 258552.92509999871254 ], [ 361557.785300001502037, 258555.041799999773502 ], [ 361552.070299997925758, 258556.311799999326468 ], [ 361545.085299998521805, 258557.581799998879433 ], [ 361538.523599997162819, 258558.21680000051856 ], [ 361533.020300000905991, 258558.851799998432398 ], [ 361526.881899997591972, 258559.698499999940395 ], [ 361519.473600000143051, 258559.910100001841784 ], [ 361513.123599998652935, 258560.121800001710653 ], [ 361508.678599998354912, 258560.333500001579523 ], [ 361502.963600002229214, 258560.121800001710653 ], [ 361487.093800000846386, 258561.4560999982059 ], [ 361459.630599997937679, 258566.930900000035763 ], [ 361422.223700001835823, 258565.631000000983477 ], [ 361291.019199997186661, 258599.677700001746416 ], [ 361259.519400000572205, 258582.391699999570847 ], [ 361227.53490000218153, 258550.676899999380112 ], [ 361198.399099998176098, 258568.196100000292063 ], [ 361188.36150000244379, 258602.415300000458956 ], [ 361154.142200000584126, 258655.7972999997437 ], [ 361129.504399999976158, 258690.929000001400709 ], [ 361104.866499997675419, 258710.09180000051856 ], [ 361069.278499998152256, 258725.604499999433756 ], [ 361028.215499997138977, 258750.698600001633167 ], [ 360983.502300001680851, 258767.1239 ], [ 360942.4391999989748, 258776.249000001698732 ], [ 360912.326300002634525, 258765.298799999058247 ], [ 360891.794799998402596, 258756.629999998956919 ], [ 360874.000799998641014, 258760.736299999058247 ], [ 360856.663000002503395, 258766.211399998515844 ], [ 360849.819200001657009, 258776.249000001698732 ], [ 360831.112700000405312, 258786.28660000115633 ], [ 360800.543499998748302, 258794.95549999922514 ], [ 360743.078100003302097, 258814.589600000530481 ], [ 360731.0337999984622, 258808.580400001257658 ], [ 360730.24719999730587, 258806.252000000327826 ], [ 360717.012199997901917, 258808.010400000959635 ], [ 360705.246200002729893, 258806.680599998682737 ], [ 360696.255999997258186, 258802.934099998325109 ], [ 360686.435900002717972, 258854.895899999886751 ], [ 360664.1266999989748, 258900.702899999916553 ], [ 360685.744300000369549, 258918.822799999266863 ], [ 360693.767899997532368, 258923.532499998807907 ], [ 360705.778099998831749, 258933.552200000733137 ], [ 360708.965599998831749, 258938.011199999600649 ], [ 360712.910800002515316, 258948.175999999046326 ], [ 360713.605599999427795, 258961.269499998539686 ], [ 360715.169699996709824, 258966.981800001114607 ], [ 360712.646499998867512, 258979.204599998891354 ], [ 360714.147600002586842, 258992.304699998348951 ], [ 360714.498999997973442, 259045.714200001209974 ], [ 360711.984700001776218, 259056.881599999964237 ], [ 360711.070500001311302, 259069.539799999445677 ], [ 360716.594200000166893, 259083.728199999779463 ], [ 360718.919699996709824, 259094.72410000115633 ], [ 360722.872100003063679, 259104.044599998742342 ], [ 360725.202899999916553, 259114.407299999147654 ], [ 360731.545500002801418, 259127.124800000339746 ], [ 360735.490800000727177, 259137.289599999785423 ], [ 360735.463799998164177, 259140.455699998885393 ], [ 360739.416299998760223, 259149.776200000196695 ], [ 360740.17400000244379, 259155.481899999082088 ], [ 360741.759700000286102, 259158.661299999803305 ], [ 360744.095899999141693, 259168.390700001269579 ], [ 360742.98030000180006, 259204.689699999988079 ], [ 360738.833700001239777, 259218.165800001472235 ], [ 360737.147299997508526, 259226.806800000369549 ], [ 360728.970899999141693, 259240.038800001144409 ], [ 360728.123199999332428, 259244.886999998241663 ], [ 360725.679099999368191, 259247.822299998253584 ], [ 360723.965800002217293, 259259.62950000166893 ], [ 360725.538900002837181, 259264.286400001496077 ], [ 360725.515500001609325, 259267.030499998480082 ], [ 360730.254399999976158, 259278.679400000721216 ], [ 360731.850900001823902, 259280.592300001531839 ], [ 360734.237499997019768, 259284.411499999463558 ], [ 360746.254799999296665, 259293.586899999529123 ], [ 360752.653200000524521, 259299.760999999940395 ], [ 360755.837099999189377, 259304.642200000584126 ], [ 360762.953599996864796, 259321.165699999779463 ], [ 360762.039399996399879, 259333.823899999260902 ], [ 360759.557499997317791, 259341.191799998283386 ], [ 360749.745099999010563, 259357.154599998146296 ], [ 360747.293799996376038, 259360.934200000017881 ], [ 360743.827600002288818, 259389.192400000989437 ], [ 360744.419900000095367, 259414.317400000989437 ], [ 360749.73870000243187, 259452.568900000303984 ], [ 360748.685999996960163, 259481.480099998414516 ], [ 360744.534000001847744, 259495.589299999177456 ], [ 360738.022299997508526, 259502.713199999183416 ], [ 360732.349399998784065, 259506.044300001114607 ], [ 360704.843000002205372, 259516.584899999201298 ], [ 360691.036799997091293, 259528.082100000232458 ], [ 360686.123400002717972, 259536.907800000160933 ], [ 360690.117200002074242, 259541.373500000685453 ], [ 360690.074100002646446, 259546.439399998635054 ], [ 360685.173299998044968, 259553.787500001490116 ], [ 360681.0608000010252, 259563.253100000321865 ], [ 360676.908699996769428, 259577.362399999052286 ], [ 360675.193599998950958, 259589.38060000166297 ], [ 360675.843500003218651, 259607.7511 ], [ 360677.389600001275539, 259615.574200000613928 ], [ 360681.352799996733665, 259623.628199998289347 ], [ 360688.539499998092651, 259631.919700000435114 ], [ 360694.151299998164177, 259635.765299998223782 ], [ 360707.045100003480911, 259636.715199999511242 ], [ 360718.342500001192093, 259635.752199999988079 ], [ 360731.26860000193119, 259632.902699999511242 ], [ 360740.168700002133846, 259629.386900000274181 ], [ 360749.808399997651577, 259633.687699999660254 ], [ 360750.537399999797344, 259642.770700000226498 ], [ 360752.887999996542931, 259650.811500001698732 ], [ 360756.057499997317791, 259657.381299998611212 ], [ 360760.049500003457069, 259662.058100000023842 ], [ 360762.454099997878075, 259663.766499999910593 ], [ 360775.347900003194809, 259664.716400001198053 ] ], [ [ 360830.980899997055531, 258833.339800000190735 ], [ 360896.385999999940395, 258813.654699999839067 ], [ 360898.07940000295639, 258816.829700000584126 ], [ 360899.964599996805191, 258819.675900001078844 ], [ 360912.861199997365475, 258856.931400001049042 ], [ 360863.613200001418591, 258863.916600000113249 ], [ 360857.150100000202656, 258865.341299999505281 ], [ 360855.605800002813339, 258857.307100001722574 ], [ 360845.87610000371933, 258863.560300000011921 ], [ 360838.612099997699261, 258864.345199998468161 ], [ 360837.049800001084805, 258858.421799998730421 ], [ 360835.475000001490116, 258853.975999999791384 ], [ 360803.976599998772144, 258859.839899998158216 ], [ 360791.032499998807907, 258864.800200000405312 ], [ 360770.097099997103214, 258861.251299999654293 ], [ 360766.164499998092651, 258849.609000001102686 ], [ 360809.82940000295639, 258835.40089999884367 ], [ 360821.097999997437, 258837.815200001001358 ], [ 360831.576499998569489, 258838.323100000619888 ], [ 360831.1925999969244, 258835.244800001382828 ], [ 360830.980899997055531, 258833.339800000190735 ] ], [ [ 361014.357699997723103, 258869.37220000103116 ], [ 361017.402900002896786, 258865.935300000011921 ], [ 361024.942199997603893, 258857.426500000059605 ], [ 361032.270999997854233, 258849.042700000107288 ], [ 361042.687700003385544, 258839.99269999936223 ], [ 361072.943000003695488, 258858.356699999421835 ], [ 361073.069499999284744, 258873.795299999415874 ], [ 361073.107299998402596, 258878.404500000178814 ], [ 361055.031400002539158, 258883.334300000220537 ], [ 361029.161399997770786, 258871.372299998998642 ], [ 361017.402900002896786, 258865.935300000011921 ], [ 361033.997599996626377, 258907.654599998146296 ], [ 361034.171499997377396, 258909.915199998766184 ], [ 361033.825000002980232, 258950.591499999165535 ], [ 361033.801600001752377, 258953.335499998182058 ], [ 361022.326200000941753, 258975.195300001651049 ], [ 361001.844700001180172, 259013.024500001221895 ], [ 360963.741200000047684, 259036.988400001078844 ], [ 360960.498000003397465, 259039.072799999266863 ], [ 360946.715199999511242, 259047.825899999588728 ], [ 360909.506099998950958, 259061.453600000590086 ], [ 360877.959200002253056, 259073.016600001603365 ], [ 360842.366400003433228, 259086.235300000756979 ], [ 360810.967000000178814, 259080.489900000393391 ], [ 360782.900700002908707, 259062.106100000441074 ], [ 360770.141699999570847, 259045.325300000607967 ], [ 360758.77759999781847, 259029.637600000947714 ], [ 360816.106200002133846, 258950.4983000010252 ], [ 360869.51519999653101, 258928.348400000482798 ], [ 360864.779899999499321, 258916.277300000190735 ], [ 360884.190700002014637, 258909.470100000500679 ], [ 360872.416599996387959, 258878.383200000971556 ], [ 360889.247299998998642, 258869.85249999910593 ], [ 360912.441899999976158, 258865.664599999785423 ], [ 360919.407799996435642, 258864.66950000077486 ], [ 360948.155500002205372, 258878.751800000667572 ], [ 360961.826899997889996, 258883.085499998182058 ], [ 360971.490000002086163, 258884.642299998551607 ], [ 360983.595499999821186, 258883.474800001829863 ], [ 361002.192800000309944, 258877.505300000309944 ], [ 361014.357699997723103, 258869.37220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026400", "MAP": "D9-6411-T98", "PARCEL_NAM": "B-1", "ACRE": null, "LONGITUDE": -64.91891271, "LATITUDE": 18.34942638, "OBJECTID_1": 5078, "PARCEL_NO_": "102904026400", "Tax_Legal_": "ROSS A-8 & B-1 NEW QUARTER", "Name": "REESE, ELAINE P. & COURTNEY P", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45800, "Improved_V": 86500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.91070602400001, "SHAPE_Area": 1546.6009686299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360056.618100002408028, 257807.200100000947714 ], [ 360056.694899998605251, 257807.4070999994874 ], [ 360056.675499998033047, 257807.430799998342991 ], [ 360058.107299998402596, 257813.192099999636412 ], [ 360081.187299996614456, 257803.535700000822544 ], [ 360090.659100003540516, 257799.49379999935627 ], [ 360061.135600000619888, 257754.037500001490116 ], [ 360039.767399996519089, 257761.771899998188019 ], [ 360056.539499998092651, 257806.988000001758337 ], [ 360056.563400000333786, 257806.980000000447035 ], [ 360056.618100002408028, 257807.200100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026600", "MAP": "A9-516-T98", "PARCEL_NAM": "B-3", "ACRE": "1.0", "LONGITUDE": -64.91913683, "LATITUDE": 18.34862947, "OBJECTID_1": 5080, "PARCEL_NO_": "102904026600", "Tax_Legal_": "ROSS ESTATE B-3 #8 NEW QTR.", "Name": "FRANCIS (LIFE ESTATE), JAMES A. D.", "Address": "PO Box 54", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 135700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.38578056599999, "SHAPE_Area": 4143.8824306099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360031.299199998378754, 257738.942400000989437 ], [ 360083.870800003409386, 257713.004700001329184 ], [ 360082.40820000320673, 257708.540500000119209 ], [ 360079.254900000989437, 257700.070999998599291 ], [ 360078.771999999880791, 257699.200599998235703 ], [ 360069.724799998104572, 257682.894400000572205 ], [ 360051.582900002598763, 257654.435899998992682 ], [ 359986.178900003433228, 257684.813099998980761 ], [ 360020.500900000333786, 257709.831000000238419 ], [ 360027.286799997091293, 257728.125 ], [ 360031.299199998378754, 257738.942400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026200", "MAP": "D9-7697-T005", "PARCEL_NAM": "A-7-10", "ACRE": ".67", "LONGITUDE": -64.91989006, "LATITUDE": 18.34887433, "OBJECTID_1": 5077, "PARCEL_NO_": "102904026200", "Tax_Legal_": "A-7-10 & A-7-11 ESTATE ROSS #8 NEW QTR", "Name": "BROWN, DIANA L", "Address": "PO Box 7482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.335331102, "SHAPE_Area": 1712.8432093700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359987.460199996829033, 257732.195500001311302 ], [ 359983.147100001573563, 257714.464000001549721 ], [ 359968.66889999806881, 257702.591899998486042 ], [ 359955.888099998235703, 257699.881599999964237 ], [ 359948.632100000977516, 257701.870600000023842 ], [ 359941.0016999989748, 257703.96229999884963 ], [ 359928.087200000882149, 257707.127500001341105 ], [ 359955.086300000548363, 257743.603399999439716 ], [ 359955.093299999833107, 257743.611999999731779 ], [ 359960.585100002586842, 257750.386700000613928 ], [ 359987.460199996829033, 257732.195500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904025600", "MAP": "D9-5884-T95", "PARCEL_NAM": "A-7-7-A", "ACRE": null, "LONGITUDE": -64.92024669, "LATITUDE": 18.34822309, "OBJECTID_1": 5072, "PARCEL_NO_": "102904025600", "Tax_Legal_": "A-7-7 REM. ESTATE ROSS NEW QTR", "Name": "THOMAS, HALDINE S", "Address": "ESTATE THOMAS #14P-4", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75200, "Improved_V": 125300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.320294768, "SHAPE_Area": 1249.03869887 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359944.996100001037121, 257628.928800001740456 ], [ 359911.056800000369549, 257622.634700000286102 ], [ 359914.380199998617172, 257696.85530000180006 ], [ 359944.996100001037121, 257628.928800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904025600", "MAP": "D9-5884-T95", "PARCEL_NAM": "A-7-7 Rem", "ACRE": null, "LONGITUDE": -64.92005138, "LATITUDE": 18.34842014, "OBJECTID_1": 5072, "PARCEL_NO_": "102904025600", "Tax_Legal_": "A-7-7 REM. ESTATE ROSS NEW QTR", "Name": "THOMAS, HALDINE S", "Address": "ESTATE THOMAS #14P-4", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75200, "Improved_V": 125300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.37361048099999, "SHAPE_Area": 2039.7519260399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359972.433200001716614, 257674.793699998408556 ], [ 359944.996100001037121, 257628.928800001740456 ], [ 359914.380199998617172, 257696.85530000180006 ], [ 359920.789599999785423, 257697.881099998950958 ], [ 359920.980400003492832, 257697.91160000115633 ], [ 359932.610500000417233, 257699.268800001591444 ], [ 359951.52139999717474, 257693.960200000554323 ], [ 359959.902400001883507, 257686.973600000143051 ], [ 359965.775399997830391, 257681.265000000596046 ], [ 359972.433200001716614, 257674.793699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026700", "MAP": "A9-516-T98", "PARCEL_NAM": "B-4", "ACRE": "1.48", "LONGITUDE": -64.91954869, "LATITUDE": 18.34812644, "OBJECTID_1": 5081, "PARCEL_NO_": "102904026700", "Tax_Legal_": "ROSS B-4 #8 NEW QTR.", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 177900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.11792282099998, "SHAPE_Area": 5589.3586345200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360029.142300002276897, 257619.234200000762939 ], [ 360006.80009999871254, 257589.276099998503923 ], [ 359951.186999998986721, 257624.956799998879433 ], [ 359944.996100001037121, 257628.928800001740456 ], [ 359972.433200001716614, 257674.793699998408556 ], [ 359986.178900003433228, 257684.813099998980761 ], [ 360051.582900002598763, 257654.435899998992682 ], [ 360029.142300002276897, 257619.234200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099800", "MAP": "D9-6123-T96", "PARCEL_NAM": "A-7-5-A", "ACRE": ".0184", "LONGITUDE": -64.92088588, "LATITUDE": 18.34803822, "OBJECTID_1": 12683, "PARCEL_NO_": "105402099800", "Tax_Legal_": "A-7-5-A ESTATE ROSS", "Name": "HODGE, JOHN A.", "Address": "14P-4 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.7535989904, "SHAPE_Area": 137.59848420099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359865.570299997925758, 257623.983800001442432 ], [ 359848.256800003349781, 257625.544900000095367 ], [ 359846.825800001621246, 257628.296700000762939 ], [ 359846.716300003230572, 257628.615600001066923 ], [ 359845.023900002241135, 257633.546300001442432 ], [ 359867.232600003480911, 257629.982999999076128 ], [ 359865.747800000011921, 257624.624400001019239 ], [ 359865.570299997925758, 257623.983800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904027200", "MAP": "D9-8359-t009", "PARCEL_NAM": "A-7-6-B", "ACRE": ".29", "LONGITUDE": -64.92055353000001, "LATITUDE": 18.34812004, "OBJECTID_1": 5086, "PARCEL_NO_": "102904027200", "Tax_Legal_": "A-7-6 REM & A-7-6-B ESTATE ROSS NO.8 NEW QTR", "Name": "HODGE, JOHN A.", "Address": "14P-4 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.929502396, "SHAPE_Area": 1353.90645885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359911.056800000369549, 257622.634700000286102 ], [ 359901.070600003004074, 257620.782800000160933 ], [ 359865.570299997925758, 257623.983800001442432 ], [ 359867.232600003480911, 257629.982999999076128 ], [ 359873.60530000180006, 257652.982200000435114 ], [ 359912.533900000154972, 257655.621399998664856 ], [ 359911.191600002348423, 257625.644299998879433 ], [ 359911.056800000369549, 257622.634700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904025900", "MAP": "D9-8359-T009", "PARCEL_NAM": "A-7-6-A", "ACRE": ".27", "LONGITUDE": -64.92050198, "LATITUDE": 18.34844248, "OBJECTID_1": 5074, "PARCEL_NO_": "102904025900", "Tax_Legal_": "ROSS A-7-6-A", "Name": "HODGE, JOHN A.", "Address": "14P-4 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.99455137199999, "SHAPE_Area": 1362.7845751499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359912.533900000154972, 257655.621399998664856 ], [ 359873.60530000180006, 257652.982200000435114 ], [ 359884.759800001978874, 257693.239100001752377 ], [ 359890.512299999594688, 257693.035700000822544 ], [ 359911.893200002610683, 257696.457400001585484 ], [ 359914.380199998617172, 257696.85530000180006 ], [ 359912.533900000154972, 257655.621399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904025800", "MAP": "D9-9002-T015", "PARCEL_NAM": "A-7-5-B", "ACRE": ".30", "LONGITUDE": -64.92084636, "LATITUDE": 18.34831407, "OBJECTID_1": 5073, "PARCEL_NO_": "102904025800", "Tax_Legal_": "ROSS A-7-5 NEW QUARTER", "Name": "JACOBS, TRUDY", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105700, "Improved_V": 210600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.368104789, "SHAPE_Area": 1645.20214517 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359835.17509999871254, 257677.575699999928474 ], [ 359847.399499997496605, 257666.632500000298023 ], [ 359875.127899996936321, 257689.069200001657009 ], [ 359874.878700003027916, 257693.999200001358986 ], [ 359880.875299997627735, 257693.376499999314547 ], [ 359881.775200001895428, 257693.344700001180172 ], [ 359884.759800001978874, 257693.239100001752377 ], [ 359867.232600003480911, 257629.982999999076128 ], [ 359845.023900002241135, 257633.546300001442432 ], [ 359839.383799999952316, 257649.978399999439716 ], [ 359837.645300000905991, 257664.740699999034405 ], [ 359835.17509999871254, 257677.575699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026200", "MAP": "D9-7635-T005", "PARCEL_NAM": "A-7-11", "ACRE": ".29", "LONGITUDE": -64.91960602, "LATITUDE": 18.34872396, "OBJECTID_1": 5077, "PARCEL_NO_": "102904026200", "Tax_Legal_": "A-7-10 & A-7-11 ESTATE ROSS #8 NEW QTR", "Name": "BROWN, DIANA L", "Address": "PO Box 7482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.873795161, "SHAPE_Area": 1283.02139891 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359955.888099998235703, 257699.881599999964237 ], [ 359968.66889999806881, 257702.591899998486042 ], [ 359983.147100001573563, 257714.464000001549721 ], [ 359987.460199996829033, 257732.195500001311302 ], [ 359993.41160000115633, 257728.167199999094009 ], [ 360020.500900000333786, 257709.831000000238419 ], [ 359980.869599997997284, 257680.94310000166297 ], [ 359975.328900001943111, 257686.955400001257658 ], [ 359968.035400003194809, 257696.275600001215935 ], [ 359962.450900003314018, 257699.153999999165535 ], [ 359955.888099998235703, 257699.881599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026900", "MAP": "D9-6593-T99", "PARCEL_NAM": "A-9", "ACRE": "1.53", "LONGITUDE": -64.92100473000001, "LATITUDE": 18.34927867, "OBJECTID_1": 5083, "PARCEL_NO_": "102904026900", "Tax_Legal_": "A-9 ESTATE ROSS No.8 NEW QUARTER", "Name": "VANTERPOOL, L, M & OTHERS", "Address": "PO Box 334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 151800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 349.31019690900001, "SHAPE_Area": 5982.66209325 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359782.083099998533726, 257784.604499999433756 ], [ 359890.027400001883507, 257794.532699998468161 ], [ 359905.102399997413158, 257788.403299998492002 ], [ 359905.133500002324581, 257788.360599998384714 ], [ 359905.193300001323223, 257788.366399999707937 ], [ 359897.845499999821186, 257737.355799999088049 ], [ 359897.82880000025034, 257737.326999999582767 ], [ 359830.642499998211861, 257744.426399998366833 ], [ 359825.853799998760223, 257744.940200001001358 ], [ 359825.839900001883507, 257744.672400001436472 ], [ 359825.734099999070168, 257744.942699998617172 ], [ 359771.995700001716614, 257739.700300000607967 ], [ 359772.418999999761581, 257741.441899999976158 ], [ 359777.136600002646446, 257763.037300001829863 ], [ 359778.688100002706051, 257770.227200001478195 ], [ 359782.083099998533726, 257784.604499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9204824, "LATITUDE": 18.34901877, "OBJECTID_1": 5093, "PARCEL_NO_": "102904040600", "Tax_Legal_": "ROSS A-6 NEW QTR", "Name": "MILLER, CYNTHIA", "Address": "PO Box 306391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79000, "Improved_V": 314000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.08281832769, "SHAPE_Area": 0.00021213506 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359897.845299996435642, 257737.354499999433756 ], [ 359897.8412000015378, 257737.3260000012815 ], [ 359897.840599998831749, 257737.317499998956919 ], [ 359897.829999998211861, 257737.328099999576807 ], [ 359897.845299996435642, 257737.354499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026400", "MAP": "D9-6411-T98", "PARCEL_NAM": "A-8", "ACRE": ".07", "LONGITUDE": -64.91907813, "LATITUDE": 18.34946219, "OBJECTID_1": 5078, "PARCEL_NO_": "102904026400", "Tax_Legal_": "ROSS A-8 & B-1 NEW QUARTER", "Name": "REESE, ELAINE P. & COURTNEY P", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45800, "Improved_V": 86500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.606296335, "SHAPE_Area": 312.71392773299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360039.767399996519089, 257761.771899998188019 ], [ 360035.22860000282526, 257763.372099999338388 ], [ 360049.340199999511242, 257810.714299999177456 ], [ 360049.352300003170967, 257810.758600000292063 ], [ 360056.239200003445148, 257807.087600000202656 ], [ 360056.539499998092651, 257806.988000001758337 ], [ 360039.767399996519089, 257761.771899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9202309, "LATITUDE": 18.34910564, "OBJECTID_1": 5093, "PARCEL_NO_": "102904040600", "Tax_Legal_": "ROSS A-6 NEW QTR", "Name": "MILLER, CYNTHIA", "Address": "PO Box 306391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79000, "Improved_V": 314000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.61983033199999, "SHAPE_Area": 2681.2613338900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359897.840599998831749, 257737.317499998956919 ], [ 359897.8412000015378, 257737.3260000012815 ], [ 359897.845299996435642, 257737.354499999433756 ], [ 359905.133500002324581, 257788.360599998384714 ], [ 359911.155799999833107, 257784.146499998867512 ], [ 359920.949500001966953, 257777.214999999850988 ], [ 359960.585100002586842, 257750.386700000613928 ], [ 359955.093000002205372, 257743.612399999052286 ], [ 359928.086400002241135, 257707.127700001001358 ], [ 359897.840599998831749, 257737.317499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904027000", "MAP": "D9-7424-T004", "PARCEL_NAM": "A-10", "ACRE": ".772", "LONGITUDE": -64.92127537, "LATITUDE": 18.34994171, "OBJECTID_1": 5084, "PARCEL_NO_": "102904027000", "Tax_Legal_": "A-10 ESTATE ROSS No.8 NEW QUARTER", "Name": "BRYAN, CLIFF C", "Address": "407A-1 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.535656152, "SHAPE_Area": 3502.99543202 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359852.307199999690056, 257870.33559999987483 ], [ 359804.675499998033047, 257786.682399999350309 ], [ 359782.083099998533726, 257784.604499999433756 ], [ 359788.02759999781847, 257809.778099998831749 ], [ 359795.788599997758865, 257845.305300001055002 ], [ 359801.936999998986721, 257880.819400001317263 ], [ 359809.166799999773502, 257884.045000001788139 ], [ 359847.1587999984622, 257873.167899999767542 ], [ 359852.307199999690056, 257870.33559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904024900", "MAP": "D9-7424-T004", "PARCEL_NAM": "A", "ACRE": "5.14", "LONGITUDE": -64.92088686, "LATITUDE": 18.34975144, "OBJECTID_1": 5066, "PARCEL_NO_": "102904024900", "Tax_Legal_": "\"A\" REM.ESTATE ROSS No.8 NEW QUARTER", "Name": "PETERKIN, YURI and VALERIE COMISSIONG", "Address": "1H Wintberg Peak", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 253300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.23546109699998, "SHAPE_Area": 4065.6892588699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359804.675499998033047, 257786.682399999350309 ], [ 359852.307199999690056, 257870.33559999987483 ], [ 359852.829999998211861, 257870.048000000417233 ], [ 359869.130599997937679, 257849.705299999564886 ], [ 359870.757700003683567, 257848.029899999499321 ], [ 359874.026100002229214, 257842.99040000140667 ], [ 359884.646600000560284, 257826.823100000619888 ], [ 359888.732100002467632, 257820.523699998855591 ], [ 359892.82660000026226, 257813.168999999761581 ], [ 359902.6858000010252, 257791.718100000172853 ], [ 359905.102399997413158, 257788.403299998492002 ], [ 359890.027400001883507, 257794.532699998468161 ], [ 359804.675499998033047, 257786.682399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904024900", "MAP": "D9-7424-T004", "PARCEL_NAM": "A", "ACRE": "5.148", "LONGITUDE": -64.91980869, "LATITUDE": 18.34953304, "OBJECTID_1": 5066, "PARCEL_NO_": "102904024900", "Tax_Legal_": "\"A\" REM.ESTATE ROSS No.8 NEW QUARTER", "Name": "PETERKIN, YURI and VALERIE COMISSIONG", "Address": "1H Wintberg Peak", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 253300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 541.21100785700003, "SHAPE_Area": 13343.061003700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360049.352300003170967, 257810.758600000292063 ], [ 360049.340199999511242, 257810.714299999177456 ], [ 360035.22860000282526, 257763.372099999338388 ], [ 360039.767399996519089, 257761.771899998188019 ], [ 360027.286799997091293, 257728.125 ], [ 360020.500900000333786, 257709.831000000238419 ], [ 359993.41330000013113, 257728.166000001132488 ], [ 359920.948700003325939, 257777.215599998831749 ], [ 359911.155799999833107, 257784.146499998867512 ], [ 359909.550599999725819, 257788.648699998855591 ], [ 359909.451800003647804, 257788.77309999987483 ], [ 359909.967699997127056, 257788.822399999946356 ], [ 359908.324600003659725, 257792.39750000089407 ], [ 359904.231899999082088, 257799.541200000792742 ], [ 359900.932899996638298, 257808.169100001454353 ], [ 359898.490599997341633, 257810.893300000578165 ], [ 359889.473700001835823, 257828.129200000315905 ], [ 359886.214299999177456, 257832.113299999386072 ], [ 359883.752199999988079, 257837.159400001168251 ], [ 359877.229699999094009, 257845.549699999392033 ], [ 359876.403599999845028, 257847.864999998360872 ], [ 359860.106600001454353, 257867.785500001162291 ], [ 359860.896700002253056, 257869.691799998283386 ], [ 359950.62219999730587, 257844.039500001817942 ], [ 360000.768200002610683, 257826.295800000429153 ], [ 360028.240299999713898, 257819.765700001269579 ], [ 360046.042099997401237, 257812.52309999987483 ], [ 360049.352300003170967, 257810.758600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903039300", "MAP": "D9-7335-T003", "PARCEL_NAM": "272A", "ACRE": ".55", "LONGITUDE": -64.92679239, "LATITUDE": 18.34978449, "OBJECTID_1": 4905, "PARCEL_NO_": "102903039300", "Tax_Legal_": "272A HOSPITAL GROUND GREAT NORTHSIDE QTR", "Name": "FAML MANAGEMENT LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.363104443, "SHAPE_Area": 2487.4951166699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359243.490800000727177, 257783.735300000756979 ], [ 359210.717799998819828, 257774.833999998867512 ], [ 359210.028499998152256, 257774.386900000274181 ], [ 359215.979800000786781, 257848.792500000447035 ], [ 359251.383799999952316, 257857.737100001424551 ], [ 359243.490800000727177, 257783.735300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903035000", "MAP": "B9-56-T60", "PARCEL_NAM": "290B", "ACRE": null, "LONGITUDE": -64.92773009, "LATITUDE": 18.34822725, "OBJECTID_1": 4862, "PARCEL_NO_": "102903035000", "Tax_Legal_": "HOSPITAL GROUND 290B GREAT NORTHSIDE", "Name": "SEELEY, MAVIS & ERIC BLD#7", "Address": "APT. #4 R-2816 8TH AVE", "City": "New York", "State": "New York", "Zip": 10039, "Country": "United States", "Land_Value": 37500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.1950221, "SHAPE_Area": 1248.1271165400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359116.679999999701977, 257664.416299998760223 ], [ 359127.67790000140667, 257671.378899998962879 ], [ 359136.567900002002716, 257676.935199998319149 ], [ 359142.416299998760223, 257678.530200000852346 ], [ 359142.198600001633167, 257611.975000001490116 ], [ 359125.553400002419949, 257609.752399999648333 ], [ 359123.427699998021126, 257623.246100001037121 ], [ 359120.057199999690056, 257644.641600001603365 ], [ 359128.04730000346899, 257650.063700001686811 ], [ 359116.679999999701977, 257664.416299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903035200", "MAP": "D9-7535-T005", "PARCEL_NAM": "290A-1", "ACRE": ".14", "LONGITUDE": -64.92806742, "LATITUDE": 18.34812983, "OBJECTID_1": 4864, "PARCEL_NO_": "102903035200", "Tax_Legal_": "HOSPITAL GROUND 290 & 290A-1 GREAT NORTHSIDE QTR.", "Name": "VICTOR, FRANKLIN", "Address": "PO Box 308034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41300, "Improved_V": 139800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.096358577799997, "SHAPE_Area": 73.874157119700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359093.564300000667572, 257642.481300000101328 ], [ 359102.190999999642372, 257631.285000000149012 ], [ 359095.187299996614456, 257623.247999999672174 ], [ 359093.564300000667572, 257642.481300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903035200", "MAP": "D9-7535-T005", "PARCEL_NAM": "290", "ACRE": ".309", "LONGITUDE": -64.92820996, "LATITUDE": 18.34803156, "OBJECTID_1": 4864, "PARCEL_NO_": "102903035200", "Tax_Legal_": "HOSPITAL GROUND 290 & 290A-1 GREAT NORTHSIDE QTR.", "Name": "VICTOR, FRANKLIN", "Address": "PO Box 308034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41300, "Improved_V": 139800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.46777896099999, "SHAPE_Area": 927.67628507699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359096.707699999213219, 257604.444899998605251 ], [ 359073.909199997782707, 257604.273800000548363 ], [ 359065.713899999856949, 257617.501600001007318 ], [ 359059.564699999988079, 257627.79839999973774 ], [ 359063.374700002372265, 257628.010099999606609 ], [ 359072.688100002706051, 257630.761799998581409 ], [ 359080.943099997937679, 257636.265099998563528 ], [ 359089.515000000596046, 257643.629999998956919 ], [ 359093.254299998283386, 257646.154699999839067 ], [ 359096.445200003683567, 257608.342599999159575 ], [ 359096.707699999213219, 257604.444899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903039100", "MAP": "D9-7695-T005", "PARCEL_NAM": "270A", "ACRE": ".52", "LONGITUDE": -64.92733696000001, "LATITUDE": 18.34906478, "OBJECTID_1": 4903, "PARCEL_NO_": "102903039100", "Tax_Legal_": "HOSPITAL GROUND 27OA No.9 NEW QTR", "Name": "BERETTA, PATRICK A. & DAWN L.", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 93400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.96748232900001, "SHAPE_Area": 1374.4672410600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359160.306999996304512, 257692.317699998617172 ], [ 359160.954999998211861, 257701.968800000846386 ], [ 359169.153599999845028, 257717.789000000804663 ], [ 359162.720200002193451, 257728.256900001317263 ], [ 359165.49040000140667, 257769.514299999922514 ], [ 359186.453100003302097, 257776.065099999308586 ], [ 359178.549900002777576, 257699.032000001519918 ], [ 359160.306999996304512, 257692.317699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033300", "MAP": "D9-7695-T005", "PARCEL_NAM": "270 REM", "ACRE": ".53", "LONGITUDE": -64.927279, "LATITUDE": 18.34971522, "OBJECTID_1": 4845, "PARCEL_NO_": "102903033300", "Tax_Legal_": "HOSPITAL GROUND 270 No.9 NEW QTR.", "Name": "VANTERPOOL, CLARICE A. & OTHERS", "Address": "6900 English Point Ln", "City": "Brandywine", "State": "Maryland", "Zip": 20613, "Country": "United States", "Land_Value": 79500, "Improved_V": 45000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.96585705499999, "SHAPE_Area": 1518.2004709400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359165.49040000140667, 257769.514299999922514 ], [ 359170.333599999547005, 257841.642200000584126 ], [ 359193.440800003707409, 257844.17509999871254 ], [ 359186.453100003302097, 257776.065099999308586 ], [ 359165.49040000140667, 257769.514299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105102022300", "MAP": "A3-14-T62", "PARCEL_NAM": "65", "ACRE": null, "LONGITUDE": -64.96712742, "LATITUDE": 18.34204454, "OBJECTID_1": 7416, "PARCEL_NO_": "105102022300", "Tax_Legal_": "LINDBERG BAY 64 & 65 SOUTHSIDE QTR.", "Name": "MICHAEL E. KIRWAN TERRACE PROJ", "Address": "64 & 65 LINDBERG BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 438900, "Improved_V": 4360800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1394.63031523, "SHAPE_Area": 80850.427983600021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355071.213600002229214, 256905.900699999183416 ], [ 355091.378600001335144, 256905.221400000154972 ], [ 355091.931400001049042, 256934.990100000053644 ], [ 355091.859399996697903, 256943.433299999684095 ], [ 355149.592799998819828, 256940.506700001657009 ], [ 355148.589000001549721, 256910.122600000351667 ], [ 355142.217399999499321, 256775.520100001245737 ], [ 355040.565600000321865, 256782.037599999457598 ], [ 355040.907499998807907, 256756.052000001072884 ], [ 355007.297499999403954, 256756.950899999588728 ], [ 355003.413599997758865, 256724.22749999910593 ], [ 354968.738499999046326, 256724.365899998694658 ], [ 354963.861100003123283, 256728.970100000500679 ], [ 354945.865099996328354, 256759.009199999272823 ], [ 354938.439000003039837, 256768.205200001597404 ], [ 354932.825599998235703, 256775.156599998474121 ], [ 354903.534000001847744, 256805.947700001299381 ], [ 354880.716300003230572, 256834.047400001436472 ], [ 354879.89019999653101, 256836.362700000405312 ], [ 354878.26860000193119, 256837.404899999499321 ], [ 354858.672600001096725, 256865.953299999237061 ], [ 354857.846500001847744, 256868.268500000238419 ], [ 354856.223099999129772, 256869.521800000220537 ], [ 354846.392700001597404, 256887.595400001853704 ], [ 354839.839699998497963, 256899.574099998921156 ], [ 354832.419200003147125, 256918.722899999469519 ], [ 354824.903499998152256, 256949.058800000697374 ], [ 354819.212600000202656, 256984.449200000613928 ], [ 354870.594200000166893, 256999.579900000244379 ], [ 354877.784999996423721, 257007.798000000417233 ], [ 354872.991099998354912, 257014.304000001400709 ], [ 354861.691200003027916, 257034.16440000012517 ], [ 354848.679200001060963, 257060.8733000010252 ], [ 354842.173199996352196, 257106.072799999266863 ], [ 354843.980200000107288, 257133.479400001466274 ], [ 354853.168999999761581, 257133.363699998706579 ], [ 354977.389700002968311, 257128.680900000035763 ], [ 354985.467200003564358, 257127.058299999684095 ], [ 354988.57490000128746, 257108.785799998790026 ], [ 355011.090400002896786, 257053.5962999984622 ], [ 355020.150499999523163, 257031.294599998742342 ], [ 355022.618000000715256, 257025.615200001746416 ], [ 355031.686999998986721, 257002.258099999278784 ], [ 355041.58389999717474, 256976.374600000679493 ], [ 355044.053199999034405, 256970.484200000762939 ], [ 355053.924999997019768, 256947.555799998342991 ], [ 355060.515699997544289, 256931.144400000572205 ], [ 355071.213600002229214, 256905.900699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105104010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96857927000001, "LATITUDE": 18.34336899, "OBJECTID_1": 7430, "PARCEL_NO_": "105104010400", "Tax_Legal_": "LINDBERG BAY 66 4A SOUTHSIDE QTR", "Name": "UNIVERSITY OF THE VI", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4941000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 504.07412748500002, "SHAPE_Area": 8705.5147016699993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354726.55460000038147, 257135.071699999272823 ], [ 354802.362300001084805, 257134.003400001674891 ], [ 354843.980200000107288, 257133.479400001466274 ], [ 354842.173199996352196, 257106.072799999266863 ], [ 354848.679200001060963, 257060.8733000010252 ], [ 354861.691200003027916, 257034.16440000012517 ], [ 354872.991099998354912, 257014.304000001400709 ], [ 354877.784999996423721, 257007.798000000417233 ], [ 354870.594200000166893, 256999.579900000244379 ], [ 354819.212600000202656, 256984.449200000613928 ], [ 354810.428300000727177, 257039.077300000935793 ], [ 354807.941100001335144, 257047.078499998897314 ], [ 354806.243900001049042, 257056.986000001430511 ], [ 354803.808799996972084, 257058.865899998694658 ], [ 354802.971900001168251, 257062.447700001299381 ], [ 354789.873099997639656, 257085.560699999332428 ], [ 354777.650799997150898, 257100.448300000280142 ], [ 354763.837300002574921, 257112.789799999445677 ], [ 354754.910400003194809, 257119.471700001507998 ], [ 354726.55460000038147, 257135.071699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105102010400", "MAP": null, "PARCEL_NAM": "68A", "ACRE": null, "LONGITUDE": -64.96779657, "LATITUDE": 18.34446252, "OBJECTID_1": 7385, "PARCEL_NO_": "105102010400", "Tax_Legal_": "LINBERG BAY 68A S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 289700, "Improved_V": 875200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 575.67247034399998, "SHAPE_Area": 14010.0855013 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354843.980200000107288, 257133.479400001466274 ], [ 354849.67620000243187, 257272.595800001174212 ], [ 354961.138300001621246, 257237.894400000572205 ], [ 354960.531599998474121, 257214.458000000566244 ], [ 354959.931999996304512, 257190.177299998700619 ], [ 354953.41499999910593, 257197.934500001370907 ], [ 354951.795199997723103, 257198.765599999576807 ], [ 354936.336800001561642, 257214.893300000578165 ], [ 354929.940200001001358, 257208.508099999278784 ], [ 354947.020300000905991, 257191.338199999183416 ], [ 354955.99040000140667, 257179.590399999171495 ], [ 354957.642599999904633, 257174.959899999201298 ], [ 354959.269599996507168, 257173.284400001168251 ], [ 354969.233000002801418, 257139.590999998152256 ], [ 354971.693300001323223, 257134.756000000983477 ], [ 354977.389700002968311, 257128.680900000035763 ], [ 354853.168999999761581, 257133.363699998706579 ], [ 354843.980200000107288, 257133.479400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804049000", "MAP": "D9-1158-T73", "PARCEL_NAM": "5-G", "ACRE": ".540", "LONGITUDE": -64.93650051, "LATITUDE": 18.34955824, "OBJECTID_1": 4674, "PARCEL_NO_": "102804049000", "Tax_Legal_": "AGNES FANCY 5G GR NORTHSIDE", "Name": "Bryan, David Harry & Ursula", "Address": "PO BOX 308675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8038675, "Country": "United States", "Land_Value": 83400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.06780231, "SHAPE_Area": 1866.7912466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358184.961800001561642, 257814.375199999660254 ], [ 358246.591899998486042, 257769.719999998807907 ], [ 358226.471799999475479, 257765.122400000691414 ], [ 358208.005800001323223, 257755.683100000023842 ], [ 358190.91499999910593, 257774.119500000029802 ], [ 358171.399800002574921, 257793.169300001114607 ], [ 358184.961800001561642, 257814.375199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027600", "MAP": "D9-7475-T004", "PARCEL_NAM": "5-F-1", "ACRE": ".025", "LONGITUDE": -64.93617499, "LATITUDE": 18.34970638, "OBJECTID_1": 4596, "PARCEL_NO_": "102804027600", "Tax_Legal_": "5-A-REM & 5-F-1 AGNES FANCY NO. 8H GREAT NORTHSIDE QTR", "Name": "IVAN D BRYAN & INGA A BRYAN FAMILY TRUST", "Address": "PO Box 10156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71100, "Improved_V": 150200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.412758984299998, "SHAPE_Area": 113.022482943 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358244.062799997627735, 257784.656399998813868 ], [ 358232.402300000190735, 257802.075199998915195 ], [ 358242.600900001823902, 257814.3136 ], [ 358239.832099996507168, 257805.972800001502037 ], [ 358244.062799997627735, 257784.656399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027600", "MAP": "D9-7475-T004", "PARCEL_NAM": "5-A-REM", "ACRE": ".426", "LONGITUDE": -64.93589099, "LATITUDE": 18.34994782, "OBJECTID_1": 4596, "PARCEL_NO_": "102804027600", "Tax_Legal_": "5-A-REM & 5-F-1 AGNES FANCY NO. 8H GREAT NORTHSIDE QTR", "Name": "IVAN D BRYAN & INGA A BRYAN FAMILY TRUST", "Address": "PO Box 10156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71100, "Improved_V": 150200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.771205434, "SHAPE_Area": 1317.3669472300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358242.600900001823902, 257814.3136 ], [ 358248.277300000190735, 257814.35190000012517 ], [ 358251.875600002706051, 257825.146899998188019 ], [ 358253.87049999833107, 257848.262099999934435 ], [ 358258.024800002574921, 257847.495999999344349 ], [ 358279.023100003600121, 257843.6570999994874 ], [ 358280.630400002002716, 257844.30350000038743 ], [ 358297.785899996757507, 257818.268399998545647 ], [ 358274.444200001657009, 257813.222199998795986 ], [ 358239.832099996507168, 257805.972800001502037 ], [ 358242.600900001823902, 257814.3136 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804047700", "MAP": "D9-7475-T004", "PARCEL_NAM": "5-F-REM", "ACRE": ".482", "LONGITUDE": -64.93633042, "LATITUDE": 18.34989627, "OBJECTID_1": 4673, "PARCEL_NO_": "102804047700", "Tax_Legal_": "5F-REM & 5-A-1 AGNES FANCY NO. 8H GREAT NORTHSIDE QTR", "Name": "BRYAN, DAVID HARRY & URSULA RUTH LEDEE (TRUSTEES)", "Address": "PO Box 307685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97000, "Improved_V": 455600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.13151616900001, "SHAPE_Area": 3055.8263992299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358242.600900001823902, 257814.3136 ], [ 358232.402300000190735, 257802.075199998915195 ], [ 358244.062799997627735, 257784.656399998813868 ], [ 358245.729800000786781, 257776.256900001317263 ], [ 358246.591899998486042, 257769.719999998807907 ], [ 358184.961800001561642, 257814.375199999660254 ], [ 358188.906700000166893, 257820.543600000441074 ], [ 358211.989500001072884, 257855.985199999064207 ], [ 358253.87049999833107, 257848.262099999934435 ], [ 358242.600900001823902, 257814.3136 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804047700", "MAP": "D9-7475-T004", "PARCEL_NAM": "5-A-1", "ACRE": ".025", "LONGITUDE": -64.93607505, "LATITUDE": 18.34994695, "OBJECTID_1": 4673, "PARCEL_NO_": "102804047700", "Tax_Legal_": "5F-REM & 5-A-1 AGNES FANCY NO. 8H GREAT NORTHSIDE QTR", "Name": "BRYAN, DAVID HARRY & URSULA RUTH LEDEE (TRUSTEES)", "Address": "PO Box 307685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97000, "Improved_V": 455600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.0267331883, "SHAPE_Area": 126.957059219 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358253.87049999833107, 257848.262099999934435 ], [ 358251.875600002706051, 257825.146899998188019 ], [ 358248.277300000190735, 257814.35190000012517 ], [ 358242.600900001823902, 257814.3136 ], [ 358253.87049999833107, 257848.262099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023600", "MAP": "c3-34-t43", "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.93657683000001, "LATITUDE": 18.35147049, "OBJECTID_1": 4540, "PARCEL_NO_": "102804023600", "Tax_Legal_": "ELIZABETH 12 GR NORTHSIDE QTR", "Name": "CHINNERY, DAVID", "Address": "PO Box 150", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 113900, "Improved_V": 114500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.21299385999998, "SHAPE_Area": 3571.0362486399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358234.342200003564358, 257977.124699998646975 ], [ 358213.622599996626377, 257948.246399998664856 ], [ 358159.200499996542931, 257994.663800001144409 ], [ 358170.85639999806881, 258046.265999998897314 ], [ 358187.117499999701977, 258030.567099999636412 ], [ 358196.04450000077486, 258023.885200001299381 ], [ 358203.333700001239777, 258020.145100001245737 ], [ 358207.383199997246265, 258018.067299999296665 ], [ 358209.044399999082088, 258012.381400000303984 ], [ 358213.954199999570847, 258003.977800000458956 ], [ 358215.577600002288818, 258002.724599998444319 ], [ 358218.032499998807907, 257998.522799998521805 ], [ 358225.350500002503395, 257991.405499998480082 ], [ 358232.69539999961853, 257981.122000001370907 ], [ 358234.342200003564358, 257977.124699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023700", "MAP": "D9-7975-T007", "PARCEL_NAM": "13", "ACRE": "1.742", "LONGITUDE": -64.93592751, "LATITUDE": 18.35109094, "OBJECTID_1": 4541, "PARCEL_NO_": "102804023700", "Tax_Legal_": "ELIZABETH REM 13 GREAT NORTHSIDE QTR", "Name": "DASWANI, VIVEK & ANGELINA", "Address": "1575 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8024724, "Country": "United States", "Land_Value": 82700, "Improved_V": 137400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 368.70497750599998, "SHAPE_Area": 6529.4992390699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358242.048600003123283, 257924.41440000012517 ], [ 358213.622599996626377, 257948.246399998664856 ], [ 358234.342200003564358, 257977.124699998646975 ], [ 358239.962999999523163, 257979.91499999910593 ], [ 358233.418999999761581, 257990.838300000876188 ], [ 358218.761500000953674, 258007.605799999088049 ], [ 358215.4679000005126, 258015.600400000810623 ], [ 358270.430299997329712, 258000.429299999028444 ], [ 358280.9375, 257997.559999998658895 ], [ 358308.990500003099442, 257922.851399999111891 ], [ 358294.753799997270107, 257890.226399999111891 ], [ 358286.649300001561642, 257895.015299998223782 ], [ 358270.43129999935627, 257905.648299999535084 ], [ 358245.293600000441074, 257922.118900001049042 ], [ 358242.048600003123283, 257924.41440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029800", "MAP": "C3-34-T43", "PARCEL_NAM": "6B", "ACRE": null, "LONGITUDE": -64.93676786, "LATITUDE": 18.35098371, "OBJECTID_1": 4618, "PARCEL_NO_": "102804029800", "Tax_Legal_": "AGNES FANCY 6B GT. NORTHSIDE", "Name": "JOSEPH, PAULETTE T", "Address": "PO Box 150", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 178400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.516320044, "SHAPE_Area": 4027.1904698399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358183.462899997830391, 257891.637600000947714 ], [ 358142.098200000822544, 257919.796700000762939 ], [ 358159.200499996542931, 257994.663800001144409 ], [ 358213.622599996626377, 257948.246399998664856 ], [ 358205.687200002372265, 257933.193799998611212 ], [ 358184.252999998629093, 257893.5439000017941 ], [ 358183.462899997830391, 257891.637600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029400", "MAP": "D9-7975-T007", "PARCEL_NAM": "6C-1", "ACRE": "1.255", "LONGITUDE": -64.93619038, "LATITUDE": 18.35054192, "OBJECTID_1": 4614, "PARCEL_NO_": "102804029400", "Tax_Legal_": "AGNES FANCY6C-1&13-1 ELIZABETH GT.NORTHSIDE QTR.", "Name": "VIVEK DASWANI AND ANGELINA DASWANI REVOCABLE TRUST", "Address": "PO Box 1511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 102700, "Improved_V": 340600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 319.16469207300003, "SHAPE_Area": 6091.1065482100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358286.649300001561642, 257895.015299998223782 ], [ 358294.753799997270107, 257890.226399999111891 ], [ 358276.546599999070168, 257850.391800001263618 ], [ 358215.97070000320673, 257861.928399998694658 ], [ 358180.100299999117851, 257886.496700000017881 ], [ 358183.462899997830391, 257891.637600000947714 ], [ 358184.252999998629093, 257893.5439000017941 ], [ 358205.687200002372265, 257933.193799998611212 ], [ 358213.622599996626377, 257948.246399998664856 ], [ 358242.048600003123283, 257924.41440000012517 ], [ 358245.293600000441074, 257922.118900001049042 ], [ 358270.43129999935627, 257905.648299999535084 ], [ 358286.649300001561642, 257895.015299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804038000", "MAP": "D9-8517-T011", "PARCEL_NAM": "97C", "ACRE": ".50", "LONGITUDE": -64.93772873, "LATITUDE": 18.35088127, "OBJECTID_1": 4663, "PARCEL_NO_": "102804038000", "Tax_Legal_": "97C AGNES FANCY NO.8H GREAT NORTHSIDE QTR", "Name": "QUESTEL, JASON P.", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.60136379799999, "SHAPE_Area": 2952.6753408899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358040.569399997591972, 257923.669700000435114 ], [ 358042.559399999678135, 257954.656800001859665 ], [ 358073.278099998831749, 257954.90819999948144 ], [ 358079.708200000226498, 257954.960900001227856 ], [ 358114.004100002348423, 257931.642499998211861 ], [ 358101.212200000882149, 257914.953999999910593 ], [ 358100.049999997019768, 257913.437800001353025 ], [ 358098.507500000298023, 257911.425500001758337 ], [ 358085.509400002658367, 257894.467999998480082 ], [ 358053.664300002157688, 257910.138199999928474 ], [ 358049.299300000071526, 257911.011199999600649 ], [ 358047.116899996995926, 257912.757199998944998 ], [ 358045.8074000030756, 257915.812699999660254 ], [ 358045.8074000030756, 257918.431699998676777 ], [ 358040.569399997591972, 257923.669700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023400", "MAP": "D9-8517-T011", "PARCEL_NAM": "97D", "ACRE": ".50", "LONGITUDE": -64.937932, "LATITUDE": 18.35034638, "OBJECTID_1": 4538, "PARCEL_NO_": "102804023400", "Tax_Legal_": "97E, 97D & ROW 97-1 AGNES FANCY 8H GREAT NORTHSIDE QUARTER", "Name": "QUESTEL, JOHN P.", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 117100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.40039641300001, "SHAPE_Area": 2306.4923561599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358033.148900002241135, 257910.138199999928474 ], [ 358043.624899998307228, 257904.900299999862909 ], [ 358071.124200001358986, 257892.678399998694658 ], [ 358080.368699997663498, 257887.761399999260902 ], [ 358053.130400002002716, 257852.226100001484156 ], [ 358079.139300003647804, 257837.194899998605251 ], [ 358083.1503000035882, 257834.876800000667572 ], [ 358095.291799999773502, 257829.487700000405312 ], [ 358035.49379999935627, 257837.05689999833703 ], [ 358033.148900002241135, 257910.138199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029600", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-2", "ACRE": ".24", "LONGITUDE": -64.93679429, "LATITUDE": 18.35039972, "OBJECTID_1": 4616, "PARCEL_NO_": "102804029600", "Tax_Legal_": "7-2,7-10,7-11 & 1/7 IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "QUESTEL, JOHN P.", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61600, "Improved_V": 232800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.197569492, "SHAPE_Area": 879.03939648200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358153.782999999821186, 257878.131700001657009 ], [ 358164.775100000202656, 257896.993099998682737 ], [ 358193.329599998891354, 257877.435600001364946 ], [ 358179.157200001180172, 257855.698100000619888 ], [ 358162.312600001692772, 257865.26969999819994 ], [ 358153.782999999821186, 257878.131700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029600", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-10", "ACRE": ".05", "LONGITUDE": -64.93698654000001, "LATITUDE": 18.35057383, "OBJECTID_1": 4616, "PARCEL_NO_": "102804029600", "Tax_Legal_": "7-2,7-10,7-11 & 1/7 IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "QUESTEL, JOHN P.", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61600, "Improved_V": 232800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.138298958600004, "SHAPE_Area": 374.73348021700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358164.775100000202656, 257896.993099998682737 ], [ 358153.782999999821186, 257878.131700001657009 ], [ 358149.933600001037121, 257883.9364 ], [ 358147.763899996876717, 257887.208099998533726 ], [ 358140.620899997651577, 257900.436000000685453 ], [ 358141.943599998950958, 257905.727200001478195 ], [ 358145.647399999201298, 257905.991700001060963 ], [ 358147.58839999884367, 257908.764600001275539 ], [ 358161.854099996387959, 257898.99379999935627 ], [ 358164.775100000202656, 257896.993099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029500", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-1", "ACRE": ".25", "LONGITUDE": -64.93731648000001, "LATITUDE": 18.3507264, "OBJECTID_1": 4615, "PARCEL_NO_": "102804029500", "Tax_Legal_": "7-1,7-9 & 1/7TH INT IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "BRIN, MOLLY T. & DALE E", "Address": "7806 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 309400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.803571589, "SHAPE_Area": 827.27254461099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358130.303099997341633, 257902.287900000810623 ], [ 358127.129799999296665, 257896.524500001221895 ], [ 358126.211300000548363, 257894.856199998408556 ], [ 358124.589000001549721, 257892.061000000685453 ], [ 358096.133299998939037, 257908.328000001609325 ], [ 358098.507500000298023, 257911.425500001758337 ], [ 358100.049999997019768, 257913.437800001353025 ], [ 358101.212200000882149, 257914.953999999910593 ], [ 358114.004100002348423, 257931.642499998211861 ], [ 358133.336499996483326, 257918.498100001364946 ], [ 358132.6841000020504, 257911.018300000578165 ], [ 358130.303099997341633, 257902.287900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023500", "MAP": "D9-8516-T011", "PARCEL_NAM": "7A", "ACRE": ".50", "LONGITUDE": -64.93713976, "LATITUDE": 18.35035028, "OBJECTID_1": 4539, "PARCEL_NO_": "102804023500", "Tax_Legal_": "R.O.W. 7A AGNES FANCY GREAT NORTHSIDE QTR", "Name": "QUESTEL, AMALIA & OTHERS", "Address": "PO BOX 306882", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.669426606, "SHAPE_Area": 1602.5758529699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358153.782999999821186, 257878.131700001657009 ], [ 358151.549400001764297, 257871.573499999940395 ], [ 358162.312600001692772, 257865.26969999819994 ], [ 358164.431000001728535, 257862.075100000947714 ], [ 358170.7804000005126, 257849.111800000071526 ], [ 358172.103200003504753, 257844.878899998962879 ], [ 358172.896899998188019, 257839.852299999445677 ], [ 358170.251299999654293, 257836.148499999195337 ], [ 358164.960199996829033, 257835.883900001645088 ], [ 358155.171499997377396, 257838.794100001454353 ], [ 358149.08669999986887, 257844.61430000141263 ], [ 358136.123400002717972, 257852.815600000321865 ], [ 358119.720799997448921, 257858.371300000697374 ], [ 358113.106799997389317, 257862.339699998497963 ], [ 358098.820699997246265, 257870.805500000715256 ], [ 358080.368699997663498, 257887.761399999260902 ], [ 358085.509400002658367, 257894.467999998480082 ], [ 358101.466300003230572, 257878.742300000041723 ], [ 358119.191699996590614, 257868.953600000590086 ], [ 358137.975299999117851, 257861.810600001364946 ], [ 358155.171499997377396, 257849.905499998480082 ], [ 358157.817100003361702, 257848.847300000488758 ], [ 358159.404500000178814, 257852.286499999463558 ], [ 358145.851999998092651, 257874.622999999672174 ], [ 358145.118299998342991, 257875.832100000232458 ], [ 358134.800599999725819, 257892.499299999326468 ], [ 358130.303099997341633, 257902.287900000810623 ], [ 358132.6841000020504, 257911.018300000578165 ], [ 358133.336499996483326, 257918.498100001364946 ], [ 358138.91610000282526, 257914.7043999992311 ], [ 358147.58839999884367, 257908.764600001275539 ], [ 358145.647399999201298, 257905.991700001060963 ], [ 358141.943599998950958, 257905.727200001478195 ], [ 358140.620899997651577, 257900.436000000685453 ], [ 358147.763899996876717, 257887.208099998533726 ], [ 358153.782999999821186, 257878.131700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029500", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-1", "ACRE": ".25", "LONGITUDE": -64.9372663, "LATITUDE": 18.3505525, "OBJECTID_1": 4615, "PARCEL_NO_": "102804029500", "Tax_Legal_": "7-1,7-9 & 1/7TH INT IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "BRIN, MOLLY T. & DALE E", "Address": "7806 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 309400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.58071028099999, "SHAPE_Area": 365.70182565699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358096.133299998939037, 257908.328000001609325 ], [ 358124.589000001549721, 257892.061000000685453 ], [ 358126.211300000548363, 257894.856199998408556 ], [ 358130.303099997341633, 257902.287900000810623 ], [ 358136.82209999859333, 257889.23369999974966 ], [ 358145.118299998342991, 257875.832100000232458 ], [ 358145.851999998092651, 257874.622999999672174 ], [ 358122.406199999153614, 257887.94539999961853 ], [ 358093.2212999984622, 257904.528999999165535 ], [ 358096.133299998939037, 257908.328000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023500", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-2A", "ACRE": ".004", "LONGITUDE": -64.93695255, "LATITUDE": 18.35036163, "OBJECTID_1": 4539, "PARCEL_NO_": "102804023500", "Tax_Legal_": "R.O.W. 7A AGNES FANCY GREAT NORTHSIDE QTR", "Name": "QUESTEL, AMALIA & OTHERS", "Address": "PO BOX 306882", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.834721469500003, "SHAPE_Area": 42.333692964800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358162.312600001692772, 257865.26969999819994 ], [ 358151.549400001764297, 257871.573499999940395 ], [ 358153.782999999821186, 257878.131700001657009 ], [ 358162.312600001692772, 257865.26969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804040700", "MAP": "D9-8161-T008", "PARCEL_NAM": "2-8", "ACRE": ".080", "LONGITUDE": -64.93313541000001, "LATITUDE": 18.34879395, "OBJECTID_1": 4670, "PARCEL_NO_": "102804040700", "Tax_Legal_": "AGNES FANCY 2-8 GT. NORTHSIDE", "Name": "FRANCIS J BRYAN & CLARA I BRYAN FAM REVOC LIV TR", "Address": "7636 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.069176912499998, "SHAPE_Area": 253.21470620400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358550.267099998891354, 257687.776099998503923 ], [ 358557.384499996900558, 257713.787300001829863 ], [ 358576.858900003135204, 257700.217599999159575 ], [ 358569.428599998354912, 257700.37779999896884 ], [ 358550.267099998891354, 257687.776099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804027300", "MAP": "D9-3110-T85", "PARCEL_NAM": "2 REM", "ACRE": ".28", "LONGITUDE": -64.93341637, "LATITUDE": 18.34878532, "OBJECTID_1": 4593, "PARCEL_NO_": "102804027300", "Tax_Legal_": "2 REM AGNES FANCY NO.8 GT NORTHSIDE QTR", "Name": "SIBILLY, CECILE", "Address": "7636 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35700, "Improved_V": 106400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.10946586, "SHAPE_Area": 1467.07323961 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358557.384499996900558, 257713.787300001829863 ], [ 358550.267099998891354, 257687.776099998503923 ], [ 358532.769100002944469, 257684.88060000166297 ], [ 358494.890399999916553, 257682.459699999541044 ], [ 358502.860100001096725, 257693.5016999989748 ], [ 358514.854000002145767, 257705.42119999974966 ], [ 358526.065099999308586, 257714.589899998158216 ], [ 358542.108599998056889, 257724.431499999016523 ], [ 358557.384499996900558, 257713.787300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804040700", "MAP": "D9-8161-T008", "PARCEL_NAM": "2-8-1", "ACRE": ".037", "LONGITUDE": -64.93304562, "LATITUDE": 18.34872439, "OBJECTID_1": 4670, "PARCEL_NO_": "102804040700", "Tax_Legal_": "AGNES FANCY 2-8 GT. NORTHSIDE", "Name": "FRANCIS J BRYAN & CLARA I BRYAN FAM REVOC LIV TR", "Address": "7636 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.368730714999998, "SHAPE_Area": 221.409192907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358581.85700000077486, 257690.029199998825788 ], [ 358581.567699998617172, 257686.733300000429153 ], [ 358579.508299998939037, 257688.42960000038147 ], [ 358573.036200001835823, 257690.909699998795986 ], [ 358550.267099998891354, 257687.776099998503923 ], [ 358569.428599998354912, 257700.37779999896884 ], [ 358576.858900003135204, 257700.217599999159575 ], [ 358582.411700002849102, 257696.348400000482798 ], [ 358581.85700000077486, 257690.029199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804040200", "MAP": "A9-147-T70", "PARCEL_NAM": "2-2", "ACRE": ".319", "LONGITUDE": -64.93298914, "LATITUDE": 18.34818625, "OBJECTID_1": 4666, "PARCEL_NO_": "102804040200", "Tax_Legal_": "AGNES FANCY 2-2 No.8 GREAT NORTHSIDE QTR.", "Name": "BRYAN,IVAN C. &, LAURA C.,CO-TRUSTEES", "Address": "PO Box 9505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.095749047200002, "SHAPE_Area": 471.48913313499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358578.429799996316433, 257649.096599999815226 ], [ 358587.922100000083447, 257647.335200000554323 ], [ 358585.583999998867512, 257637.816799998283386 ], [ 358584.032600000500679, 257630.626899998635054 ], [ 358581.723300002515316, 257617.731300000101328 ], [ 358564.738600000739098, 257623.714000001549721 ], [ 358572.289200000464916, 257647.836199998855591 ], [ 358572.999200001358986, 257650.104400001466274 ], [ 358578.429799996316433, 257649.096599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102804027300", "MAP": "D9-3110-T85", "PARCEL_NAM": "2-9", "ACRE": null, "LONGITUDE": -64.9333589, "LATITUDE": 18.34862786, "OBJECTID_1": 4593, "PARCEL_NO_": "102804027300", "Tax_Legal_": "2 REM AGNES FANCY NO.8 GT NORTHSIDE QTR", "Name": "SIBILLY, CECILE", "Address": "7636 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35700, "Improved_V": 106400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.93374864200001, "SHAPE_Area": 561.86123780399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358503.009300000965595, 257675.982200000435114 ], [ 358495.74889999628067, 257676.344999998807907 ], [ 358492.523699998855591, 257676.318599998950958 ], [ 358489.309199996292591, 257675.025699999183416 ], [ 358494.890399999916553, 257682.459699999541044 ], [ 358532.769100002944469, 257684.88060000166297 ], [ 358550.267099998891354, 257687.776099998503923 ], [ 358573.036200001835823, 257690.909699998795986 ], [ 358579.508299998939037, 257688.42960000038147 ], [ 358581.567699998617172, 257686.733300000429153 ], [ 358580.438699997961521, 257673.871700000017881 ], [ 358578.770300000905991, 257680.401999998837709 ], [ 358575.518100000917912, 257683.541700001806021 ], [ 358573.093800000846386, 257684.155200000852346 ], [ 358569.056800000369549, 257684.755399998277426 ], [ 358551.343099996447563, 257681.655099999159575 ], [ 358546.808600001037121, 257681.103100001811981 ], [ 358527.177100002765656, 257678.713100001215935 ], [ 358507.843599997460842, 257676.443999998271465 ], [ 358503.009300000965595, 257675.982200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804041000", "MAP": "A9-156-T71", "PARCEL_NAM": "2-6", "ACRE": ".22", "LONGITUDE": -64.93353094, "LATITUDE": 18.34840211, "OBJECTID_1": 4671, "PARCEL_NO_": "102804041000", "Tax_Legal_": "2-6 AGNES FANCY NO. 8 GT NORTHSIDE QTR", "Name": "SIBILLY, CECILE Q. (LIFE ESTATE)", "Address": "5420 Bantry Ct", "City": "Woodbridge", "State": "Virginia", "Zip": 22193, "Country": "United States", "Land_Value": 36300, "Improved_V": 238300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.86219092799999, "SHAPE_Area": 977.16120256 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358517.715199999511242, 257638.160199999809265 ], [ 358504.218299999833107, 257656.913600001484156 ], [ 358503.009300000965595, 257675.982200000435114 ], [ 358507.843599997460842, 257676.443999998271465 ], [ 358527.177100002765656, 257678.713100001215935 ], [ 358534.798900000751019, 257635.923500001430511 ], [ 358535.472300000488758, 257632.704999998211861 ], [ 358517.715199999511242, 257638.160199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804040600", "MAP": "A9-156-T71", "PARCEL_NAM": "2-7", "ACRE": ".20", "LONGITUDE": -64.93376553, "LATITUDE": 18.34840356, "OBJECTID_1": 4669, "PARCEL_NO_": "102804040600", "Tax_Legal_": "2-7 AGNES FANCY NO. 8 GT NORTHSIDE QTR", "Name": "BRYAN FAMILY REVOCABLE LIVING TRUST", "Address": "12702 Cedar Grove Ct", "City": "Humble", "State": "Texas", "Zip": 77346, "Country": "United States", "Land_Value": 36300, "Improved_V": 161800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.399624886, "SHAPE_Area": 787.73755966099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358492.871899999678135, 257645.792300000786781 ], [ 358487.008000001311302, 257647.593699999153614 ], [ 358472.942100003361702, 257651.914900001138449 ], [ 358478.159299999475479, 257658.68019999936223 ], [ 358479.743100002408028, 257662.070700000971556 ], [ 358489.309199996292591, 257675.025699999183416 ], [ 358492.523699998855591, 257676.318599998950958 ], [ 358495.74889999628067, 257676.344999998807907 ], [ 358503.009300000965595, 257675.982200000435114 ], [ 358504.218299999833107, 257656.913600001484156 ], [ 358517.715199999511242, 257638.160199999809265 ], [ 358515.975199997425079, 257638.694699998944998 ], [ 358513.134400002658367, 257639.567400000989437 ], [ 358505.162900000810623, 257642.016399998217821 ], [ 358492.871899999678135, 257645.792300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804040500", "MAP": "A9-156-T71", "PARCEL_NAM": "2-5", "ACRE": ".23", "LONGITUDE": -64.93333316, "LATITUDE": 18.34838727, "OBJECTID_1": 4668, "PARCEL_NO_": "102804040500", "Tax_Legal_": "AGNES FANCY 2-5 LITTLE NORTHSIDE", "Name": "SIBILLY, ALBERT E. & JULIA A.", "Address": "PO Box 307067", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.19837787700001, "SHAPE_Area": 866.02817682900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358546.808600001037121, 257681.103100001811981 ], [ 358551.066200003027916, 257627.91440000012517 ], [ 358535.472300000488758, 257632.704999998211861 ], [ 358527.177100002765656, 257678.713100001215935 ], [ 358546.808600001037121, 257681.103100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804028500", "MAP": "A9-156-T71", "PARCEL_NAM": "2-4", "ACRE": ".28", "LONGITUDE": -64.93312651, "LATITUDE": 18.34840398, "OBJECTID_1": 4604, "PARCEL_NO_": "102804028500", "Tax_Legal_": "AGNES FANCY 2-4 GR NORTHSIDE", "Name": "SIBILLY, ALBERT E. & JULIA A.", "Address": "PO Box 307067", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44200, "Improved_V": 256100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.61327150700001, "SHAPE_Area": 1430.49580833 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358572.289200000464916, 257647.836199998855591 ], [ 358564.738600000739098, 257623.714000001549721 ], [ 358551.066200003027916, 257627.91440000012517 ], [ 358550.98369999974966, 257629.331700000911951 ], [ 358546.808600001037121, 257681.103100001811981 ], [ 358551.343099996447563, 257681.655099999159575 ], [ 358569.056800000369549, 257684.755399998277426 ], [ 358573.093800000846386, 257684.155200000852346 ], [ 358575.518100000917912, 257683.541700001806021 ], [ 358578.770300000905991, 257680.401999998837709 ], [ 358580.438699997961521, 257673.871700000017881 ], [ 358572.289200000464916, 257647.836199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804026100", "MAP": "D9-7870-T006", "PARCEL_NAM": "3F", "ACRE": ".930", "LONGITUDE": -64.9346397, "LATITUDE": 18.34872883, "OBJECTID_1": 4565, "PARCEL_NO_": "102804026100", "Tax_Legal_": "AGNES FANCY 3F GR NORTHSIDE", "Name": "BUCKNER INNISS, LOLITA K. & DARYL", "Address": "PO Box 202177", "City": "Shaker Heights", "State": "Ohio", "Zip": 44120, "Country": "United States", "Land_Value": 79000, "Improved_V": 316200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.843675486, "SHAPE_Area": 3553.04200808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358452.669100001454353, 257716.522300001233816 ], [ 358422.338500000536442, 257679.965999998152256 ], [ 358395.444799996912479, 257656.6261 ], [ 358391.414800003170967, 257653.128699999302626 ], [ 358388.408900000154972, 257655.151399999856949 ], [ 358363.383599996566772, 257671.991500001400709 ], [ 358363.595299996435642, 257673.684799998998642 ], [ 358364.352200001478195, 257675.487199999392033 ], [ 358365.076899997889996, 257676.8597999997437 ], [ 358366.664499998092651, 257677.918099999427795 ], [ 358367.722800001502037, 257679.082299999892712 ], [ 358368.040299996733665, 257679.929000001400709 ], [ 358368.675300002098083, 257681.516499999910593 ], [ 358368.887000001966953, 257682.574799999594688 ], [ 358368.887000001966953, 257684.374000001698732 ], [ 358368.463600002229214, 257685.855700001120567 ], [ 358366.347000002861023, 257689.559799998998642 ], [ 358364.315200001001358, 257694.873700000345707 ], [ 358362.219400003552437, 257700.354899998754263 ], [ 358362.325300000607967, 257701.519000001251698 ], [ 358362.431100003421307, 257702.577399998903275 ], [ 358362.536899998784065, 257703.318199999630451 ], [ 358363.318199999630451, 257705.184999998658895 ], [ 358364.225900001823902, 257705.94200000166893 ], [ 358364.973399996757507, 257706.371800001710653 ], [ 358366.871699996292591, 257707.463300000876188 ], [ 358368.789899997413158, 257708.45549999922514 ], [ 358371.4358000010252, 257709.116999998688698 ], [ 358372.727300003170967, 257709.779100000858307 ], [ 358374.420299999415874, 257710.647100001573563 ], [ 358376.121500000357628, 257709.774099998176098 ], [ 358385.804499998688698, 257709.00899999961257 ], [ 358393.833499997854233, 257713.085499998182058 ], [ 358418.724799998104572, 257725.532600000500679 ], [ 358452.669100001454353, 257716.522300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804040600", "MAP": "D9-8192-T008", "PARCEL_NAM": "2-7-A", "ACRE": ".009", "LONGITUDE": -64.93397768, "LATITUDE": 18.34847914, "OBJECTID_1": 4669, "PARCEL_NO_": "102804040600", "Tax_Legal_": "2-7 AGNES FANCY NO. 8 GT NORTHSIDE QTR", "Name": "BRYAN FAMILY REVOCABLE LIVING TRUST", "Address": "12702 Cedar Grove Ct", "City": "Humble", "State": "Texas", "Zip": 77346, "Country": "United States", "Land_Value": 36300, "Improved_V": 161800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.280041429400001, "SHAPE_Area": 51.698379541500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358464.5, 257658.789599999785423 ], [ 358478.041500002145767, 257674.95549999922514 ], [ 358481.592399999499321, 257677.552099999040365 ], [ 358467.686200000345707, 257657.539099998772144 ], [ 358464.5, 257658.789599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804040600", "MAP": "D9-8192-T008", "PARCEL_NAM": "A", "ACRE": ".009", "LONGITUDE": -64.93390971, "LATITUDE": 18.3484551, "OBJECTID_1": 4669, "PARCEL_NO_": "102804040600", "Tax_Legal_": "2-7 AGNES FANCY NO. 8 GT NORTHSIDE QTR", "Name": "BRYAN FAMILY REVOCABLE LIVING TRUST", "Address": "12702 Cedar Grove Ct", "City": "Humble", "State": "Texas", "Zip": 77346, "Country": "United States", "Land_Value": 36300, "Improved_V": 161800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.217352450299998, "SHAPE_Area": 79.265946519099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358489.309199996292591, 257675.025699999183416 ], [ 358479.743100002408028, 257662.070700000971556 ], [ 358478.159299999475479, 257658.68019999936223 ], [ 358472.942100003361702, 257651.914900001138449 ], [ 358469.921700000762939, 257652.949099998921156 ], [ 358485.962700001895428, 257675.025299999862909 ], [ 358489.309199996292591, 257675.025699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804026200", "MAP": "G9-3-T48", "PARCEL_NAM": "3A", "ACRE": ".45", "LONGITUDE": -64.93410069, "LATITUDE": 18.34868284, "OBJECTID_1": 4566, "PARCEL_NO_": "102804026200", "Tax_Legal_": "AGNES FANCY 3A GREAT NORTHSIDE QTR", "Name": "BRYAN, I. & L.,C. OVERCAST, A. SIBILLY,F. & C. BRYAN", "Address": "7636 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.87916622099999, "SHAPE_Area": 2245.2214474100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358481.592399999499321, 257677.552099999040365 ], [ 358462.933600001037121, 257663.907800000160933 ], [ 358458.574199996888638, 257661.115499999374151 ], [ 358445.0320999994874, 257666.430700000375509 ], [ 358424.221400000154972, 257678.842999998480082 ], [ 358422.338500000536442, 257679.965999998152256 ], [ 358452.669100001454353, 257716.522300001233816 ], [ 358485.850199997425079, 257702.439599998295307 ], [ 358496.171599999070168, 257697.192899998277426 ], [ 358491.584299996495247, 257691.931800000369549 ], [ 358481.592399999499321, 257677.552099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804040600", "MAP": "D9-8192-T008", "PARCEL_NAM": "2-7 REM", "ACRE": ".019", "LONGITUDE": -64.93402447, "LATITUDE": 18.34847042, "OBJECTID_1": 4669, "PARCEL_NO_": "102804040600", "Tax_Legal_": "2-7 AGNES FANCY NO. 8 GT NORTHSIDE QTR", "Name": "BRYAN FAMILY REVOCABLE LIVING TRUST", "Address": "12702 Cedar Grove Ct", "City": "Humble", "State": "Texas", "Zip": 77346, "Country": "United States", "Land_Value": 36300, "Improved_V": 161800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.347341671499997, "SHAPE_Area": 60.658255439800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358478.041500002145767, 257674.95549999922514 ], [ 358464.5, 257658.789599999785423 ], [ 358458.574199996888638, 257661.115499999374151 ], [ 358462.933600001037121, 257663.907800000160933 ], [ 358478.041500002145767, 257674.95549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804028300", "MAP": "G3-108-T64", "PARCEL_NAM": "123", "ACRE": null, "LONGITUDE": -64.9343567, "LATITUDE": 18.3480984, "OBJECTID_1": 4602, "PARCEL_NO_": "102804028300", "Tax_Legal_": "AGNES FANCY 123 GR NORTHSIDE QTR", "Name": "WESSELEHOFT, LUCIEN A", "Address": "1273 Clay Ave", "City": "Bronx", "State": "New York", "Zip": 10456, "Country": "United States", "Land_Value": 56100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.24157234500001, "SHAPE_Area": 1640.2432313899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358395.565800003707409, 257604.386500000953674 ], [ 358458.574199996888638, 257661.115499999374151 ], [ 358467.686200000345707, 257657.539099998772144 ], [ 358468.876500003039837, 257656.895500000566244 ], [ 358468.400200001895428, 257656.181099999696016 ], [ 358459.207995151227806, 257642.773780619550962 ], [ 358449.588299997150898, 257629.669799998402596 ], [ 358442.089425001642667, 257619.140009279479273 ], [ 358435.141999997198582, 257608.238499999046326 ], [ 358430.062143665156327, 257599.609516485274071 ], [ 358425.625, 257590.633099999278784 ], [ 358421.522399999201298, 257592.449200000613928 ], [ 358395.565800003707409, 257604.386500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804026700", "MAP": "F9-1977-T67", "PARCEL_NAM": "3H", "ACRE": ".50", "LONGITUDE": -64.9344212, "LATITUDE": 18.34839145, "OBJECTID_1": 4571, "PARCEL_NO_": "102804026700", "Tax_Legal_": "AGNES FANCY3H GREAT NORTHSIDE", "Name": "QUETEL, VERA, ROB. , JOE & LIN", "Address": "212-63RD ST", "City": "West New York", "State": "New Jersey", "Zip": 7093, "Country": "United States", "Land_Value": 54700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.98036555499999, "SHAPE_Area": 1580.55150854 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358395.444799996912479, 257656.6261 ], [ 358422.338500000536442, 257679.965999998152256 ], [ 358424.221400000154972, 257678.842999998480082 ], [ 358445.0320999994874, 257666.430700000375509 ], [ 358458.574199996888638, 257661.115499999374151 ], [ 358423.368900001049042, 257629.418699998408556 ], [ 358417.080899998545647, 257634.537900000810623 ], [ 358395.444799996912479, 257656.6261 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804026600", "MAP": null, "PARCEL_NAM": "3J", "ACRE": null, "LONGITUDE": -64.93473853, "LATITUDE": 18.3481511, "OBJECTID_1": 4570, "PARCEL_NO_": "102804026600", "Tax_Legal_": "AGNES FANCY 3J GREAT NORTHSIDE", "Name": "BRADSHAW, IVY & LACILLE", "Address": "PO Box 8747", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.76548433, "SHAPE_Area": 1712.70428913 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358357.280299998819828, 257623.504900000989437 ], [ 358395.444799996912479, 257656.6261 ], [ 358417.080899998545647, 257634.537900000810623 ], [ 358423.368900001049042, 257629.418699998408556 ], [ 358395.565800003707409, 257604.386500000953674 ], [ 358380.98929999768734, 257611.655499998480082 ], [ 358357.280299998819828, 257623.504900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027900", "MAP": "D9-1155-T73", "PARCEL_NAM": "5-C", "ACRE": null, "LONGITUDE": -64.93536965, "LATITUDE": 18.3498152, "OBJECTID_1": 4599, "PARCEL_NO_": "102804027900", "Tax_Legal_": "AGNES FANCY 5C GR NORTHSIDE", "Name": "BRYAN, STEVE D. & JUDITH E. (Trustees)", "Address": "PO Box 7401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 87000, "Improved_V": 23300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.78967302300001, "SHAPE_Area": 2394.1128116700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358299.4966000020504, 257781.667100001126528 ], [ 358289.339400000870228, 257816.442299999296665 ], [ 358297.785899996757507, 257818.268399998545647 ], [ 358322.679099999368191, 257830.504399999976158 ], [ 358326.546999998390675, 257849.745600000023842 ], [ 358359.027900002896786, 257823.202599998563528 ], [ 358345.520199999213219, 257799.660599999129772 ], [ 358303.733999997377396, 257782.642200000584126 ], [ 358299.4966000020504, 257781.667100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029000", "MAP": "B9-396-T73", "PARCEL_NAM": "5-E", "ACRE": null, "LONGITUDE": -64.93588961, "LATITUDE": 18.34964468, "OBJECTID_1": 4610, "PARCEL_NO_": "102804029000", "Tax_Legal_": "5-E AGNES FANCY 8H LITTLE NORTHSIDE QTR", "Name": "SANDRA LAPLACE FAMILY TRUST", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 95600, "Improved_V": 603100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.95674595099999, "SHAPE_Area": 1907.0319014700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358246.591899998486042, 257769.719999998807907 ], [ 358245.729800000786781, 257776.256900001317263 ], [ 358239.832099996507168, 257805.972800001502037 ], [ 358274.444200001657009, 257813.222199998795986 ], [ 358289.339400000870228, 257816.442299999296665 ], [ 358299.4966000020504, 257781.667100001126528 ], [ 358282.809399999678135, 257777.826900001615286 ], [ 358246.591899998486042, 257769.719999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021100", "MAP": "D9-7136-T002", "PARCEL_NAM": "22 REM", "ACRE": ".500", "LONGITUDE": -64.93837427, "LATITUDE": 18.35324246, "OBJECTID_1": 4516, "PARCEL_NO_": "102804021100", "Tax_Legal_": "22 REM ESTATE ELIZABETH NO.8 GREAT NORTHSIDE QTR", "Name": "AUST, JAIME LEIGH and CAMERON LEE", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79000, "Improved_V": 408800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.00979838800001, "SHAPE_Area": 2434.4380392399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357954.738099999725819, 258200.614999998360872 ], [ 357990.26240000128746, 258203.867899999022484 ], [ 358029.946400001645088, 258214.50789999961853 ], [ 358036.033900000154972, 258159.575300000607967 ], [ 357954.333800002932549, 258189.726199999451637 ], [ 357954.738099999725819, 258200.614999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804025000", "MAP": "D9-7136-T002", "PARCEL_NAM": "22 A", "ACRE": ".503", "LONGITUDE": -64.93854603, "LATITUDE": 18.3535171, "OBJECTID_1": 4554, "PARCEL_NO_": "102804025000", "Tax_Legal_": "22A ESTATE ELIZABETH 8i GREAT NORTHSIDE QTR", "Name": "BREUNLIN,JR., JAMES H. & SUSAN K.", "Address": "PO Box 7363", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 102500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.54427093499999, "SHAPE_Area": 1983.71746209 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357956.301399998366833, 258242.726799998432398 ], [ 358029.045800000429153, 258222.635000001639128 ], [ 358029.946400001645088, 258214.50789999961853 ], [ 357990.26240000128746, 258203.867899999022484 ], [ 357954.738099999725819, 258200.614999998360872 ], [ 357956.301399998366833, 258242.726799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021600", "MAP": "D9-7622-T005", "PARCEL_NAM": "31-B", "ACRE": ".51", "LONGITUDE": -64.93769225, "LATITUDE": 18.35367756, "OBJECTID_1": 4520, "PARCEL_NO_": "102804021600", "Tax_Legal_": "ELIZABETH 31B GREAT NORTHSIDE QTR", "Name": "JOSEPH, NOVELLE", "Address": "PO Box 9622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.57594829799999, "SHAPE_Area": 2640.4707752499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358040.437899999320507, 258219.840599998831749 ], [ 358040.427500002086163, 258220.060499999672174 ], [ 358054.661200001835823, 258266.399300001561642 ], [ 358062.553099997341633, 258264.916900001466274 ], [ 358081.132399998605251, 258261.058200001716614 ], [ 358108.599200002849102, 258255.161299999803305 ], [ 358096.077600002288818, 258210.51799999922514 ], [ 358072.658600002527237, 258214.548200000077486 ], [ 358058.123400002717972, 258216.962400000542402 ], [ 358040.437899999320507, 258219.840599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021000", "MAP": "G9-377-T56", "PARCEL_NAM": "29", "ACRE": ".595", "LONGITUDE": -64.93856238, "LATITUDE": 18.35384001, "OBJECTID_1": 4515, "PARCEL_NO_": "102804021000", "Tax_Legal_": "ELIZABETH 29 GREAT NORTHSIDE QTR", "Name": "BREUNLIN, JR. , J. H. & KINDER, S. K", "Address": "PO Box 7363", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 108100, "Improved_V": 558400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.47369923799999, "SHAPE_Area": 2468.5379696599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357988.713899999856949, 258279.005300000309944 ], [ 358029.045800000429153, 258222.635000001639128 ], [ 357956.301399998366833, 258242.726799998432398 ], [ 357950.281400002539158, 258286.796100001782179 ], [ 357988.713899999856949, 258279.005300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021200", "MAP": "D9-1841-T81", "PARCEL_NAM": "31", "ACRE": ".28", "LONGITUDE": -64.93823334, "LATITUDE": 18.35389198, "OBJECTID_1": 4517, "PARCEL_NO_": "102804021200", "Tax_Legal_": "ELIZABETH 31 GREAT NORTHSIDE QTR", "Name": "BREULIN, JR. , J. H. & KINDER, S. K", "Address": "PO Box 305148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.09238879, "SHAPE_Area": 989.87617131900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358032.85360000282526, 258242.11089999973774 ], [ 358015.979900002479553, 258246.889299999922514 ], [ 358016.109899997711182, 258240.714999999850988 ], [ 357988.713899999856949, 258279.005300000309944 ], [ 357996.323899999260902, 258277.462600000202656 ], [ 358022.169100001454353, 258272.607900001108646 ], [ 358030.2466000020504, 258270.985300000756979 ], [ 358038.206699997186661, 258269.490100000053644 ], [ 358032.85360000282526, 258242.11089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021200", "MAP": "F9-863-T62", "PARCEL_NAM": "31A", "ACRE": ".061", "LONGITUDE": -64.93816316, "LATITUDE": 18.35367309, "OBJECTID_1": 4517, "PARCEL_NO_": "102804021200", "Tax_Legal_": "ELIZABETH 31 GREAT NORTHSIDE QTR", "Name": "BREULIN, JR. , J. H. & KINDER, S. K", "Address": "PO Box 305148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.788704906099994, "SHAPE_Area": 212.17270640500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358016.109899997711182, 258240.714999999850988 ], [ 358015.979900002479553, 258246.889299999922514 ], [ 358032.85360000282526, 258242.11089999973774 ], [ 358029.045800000429153, 258222.635000001639128 ], [ 358016.109899997711182, 258240.714999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021500", "MAP": "F9-864-T62", "PARCEL_NAM": "31C", "ACRE": ".132", "LONGITUDE": -64.93801125, "LATITUDE": 18.35375138, "OBJECTID_1": 4519, "PARCEL_NO_": "102804021500", "Tax_Legal_": "ELIZABETH 31C GR NORTHSIDE QTR", "Name": "JOSEPH, NOVELLE", "Address": "PO Box 9622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 599000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.92477473700001, "SHAPE_Area": 684.46923202200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358054.661200001835823, 258266.399300001561642 ], [ 358040.427500002086163, 258220.060499999672174 ], [ 358040.437899999320507, 258219.840599998831749 ], [ 358037.128700003027916, 258220.379200000315905 ], [ 358029.045800000429153, 258222.635000001639128 ], [ 358038.206699997186661, 258269.490100000053644 ], [ 358042.558899998664856, 258268.672600001096725 ], [ 358054.661200001835823, 258266.399300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029500", "MAP": "D9-8150-T008", "PARCEL_NAM": "7-9", "ACRE": ".07", "LONGITUDE": -64.93726706, "LATITUDE": 18.35055237, "OBJECTID_1": 4615, "PARCEL_NO_": "102804029500", "Tax_Legal_": "7-1,7-9 & 1/7TH INT IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "BRIN, MOLLY T. & DALE E", "Address": "7806 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 309400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.60232451, "SHAPE_Area": 363.15169050499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358093.2212999984622, 257904.528999999165535 ], [ 358096.133299998939037, 257908.328000001609325 ], [ 358124.589000001549721, 257892.061000000685453 ], [ 358126.211300000548363, 257894.856199998408556 ], [ 358127.129799999296665, 257896.524500001221895 ], [ 358130.303099997341633, 257902.287900000810623 ], [ 358134.800599999725819, 257892.499299999326468 ], [ 358135.573399998247623, 257891.250900000333786 ], [ 358136.82209999859333, 257889.23369999974966 ], [ 358145.118299998342991, 257875.832100000232458 ], [ 358145.851999998092651, 257874.622999999672174 ], [ 358122.406199999153614, 257887.94539999961853 ], [ 358093.2212999984622, 257904.528999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804036400", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-6", "ACRE": ".34", "LONGITUDE": -64.9374632, "LATITUDE": 18.350134, "OBJECTID_1": 4657, "PARCEL_NO_": "102804036400", "Tax_Legal_": "7-6 & 1/7TH INT IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "WILLIAMS, NADINE & RHONDA", "Address": "PO BOX 306882", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.36025599000001, "SHAPE_Area": 1065.94619115 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358079.139300003647804, 257837.194899998605251 ], [ 358101.170100003480911, 257869.41330000013113 ], [ 358113.106799997389317, 257862.339699998497963 ], [ 358119.720799997448921, 257858.371300000697374 ], [ 358122.319099999964237, 257857.491300001740456 ], [ 358108.679300002753735, 257823.657499998807907 ], [ 358095.291799999773502, 257829.487700000405312 ], [ 358083.1503000035882, 257834.876800000667572 ], [ 358079.139300003647804, 257837.194899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804036500", "MAP": "D9-8516-T011", "PARCEL_NAM": "7-7", "ACRE": ".34", "LONGITUDE": -64.93769081000001, "LATITUDE": 18.3502759, "OBJECTID_1": 4658, "PARCEL_NO_": "102804036500", "Tax_Legal_": "7-7 & 1/7 INT IN 7-8 AGNES FANCY GT NORTHSIDE QTR", "Name": "CRAVENS, MARIE", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.63459358, "SHAPE_Area": 1196.9610662600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358101.170100003480911, 257869.41330000013113 ], [ 358079.139300003647804, 257837.194899998605251 ], [ 358053.130400002002716, 257852.226100001484156 ], [ 358080.368699997663498, 257887.761399999260902 ], [ 358093.017899997532368, 257876.137800000607967 ], [ 358098.820699997246265, 257870.805500000715256 ], [ 358101.170100003480911, 257869.41330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104023800", "MAP": "D9-5130-T91", "PARCEL_NAM": "11-F", "ACRE": ".502Q", "LONGITUDE": -64.94972487, "LATITUDE": 18.3652206, "OBJECTID_1": 606, "PARCEL_NO_": "101104023800", "Tax_Legal_": "11-F REM. HULL NO.4A LITTLE NORTHSIDE QTR.", "Name": "LISA E. L. KINGHT REV. FAM. TRUST", "Address": "PO Box 11985", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.168369232, "SHAPE_Area": 2217.8988003999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356813.41610000282526, 259534.485300000756979 ], [ 356807.918999999761581, 259504.180700000375509 ], [ 356812.848300002515316, 259475.864900000393391 ], [ 356770.932599999010563, 259474.044199999421835 ], [ 356780.045500002801418, 259540.190999999642372 ], [ 356789.733900003135204, 259538.792700000107288 ], [ 356803.457400001585484, 259537.005199998617172 ], [ 356813.41610000282526, 259534.485300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020300", "MAP": "D3-260-T64", "PARCEL_NAM": "88", "ACRE": ".08", "LONGITUDE": -64.94192195, "LATITUDE": 18.34271564, "OBJECTID_1": 8982, "PARCEL_NO_": "105301020300", "Tax_Legal_": "88 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "SMITH, JULIET VANTERPOOL", "Address": "101 Carpenter St", "City": "Pawtucket", "State": "Rhode Island", "Zip": 2860, "Country": "United States", "Land_Value": 27200, "Improved_V": 500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.400719368599994, "SHAPE_Area": 276.72597021899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357640.679499998688698, 257005.801199998706579 ], [ 357636.767399996519089, 257005.000500001013279 ], [ 357634.576899997889996, 257010.262600000947714 ], [ 357630.41950000077486, 257025.005100000649691 ], [ 357636.762100003659725, 257037.722600001841784 ], [ 357638.372900001704693, 257037.946899998933077 ], [ 357640.001800000667572, 257036.060400001704693 ], [ 357642.516000002622604, 257024.89299999922514 ], [ 357643.42119999974966, 257013.290300000458956 ], [ 357640.679499998688698, 257005.801199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94196456, "LATITUDE": 18.34258095, "OBJECTID_1": 8984, "PARCEL_NO_": "105301020500", "Tax_Legal_": "ANNAS FANCY 87 CROWN PRINCE QUARTER", "Name": "CREQUE, CARMEN", "Address": "3410 De Reimer Ave", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.951618837000002, "SHAPE_Area": 24.5022062442 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357636.767399996519089, 257005.000500001013279 ], [ 357628.1858000010252, 257003.244199998676777 ], [ 357634.576899997889996, 257010.262600000947714 ], [ 357636.767399996519089, 257005.000500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020400", "MAP": "G9-1488-T70", "PARCEL_NAM": "84", "ACRE": null, "LONGITUDE": -64.94214865, "LATITUDE": 18.34229415, "OBJECTID_1": 8983, "PARCEL_NO_": "105301020400", "Tax_Legal_": "84 & 84A ANNAS FANCY CROWN PRINCE QUARTER", "Name": "ROLLINS, OSCAR & PHILLIS A.", "Address": "PO Box 6811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37700, "Improved_V": 191700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.767151476699993, "SHAPE_Area": 527.70035267599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357614.91499999910593, 256990.590399999171495 ], [ 357620.15259999781847, 256989.448899999260902 ], [ 357626.042000003159046, 256970.929299999028444 ], [ 357627.688799999654293, 256966.932000000029802 ], [ 357606.796599999070168, 256958.317299999296665 ], [ 357605.148000001907349, 256962.525699999183416 ], [ 357601.777099996805191, 256979.596700001507998 ], [ 357614.91499999910593, 256990.590399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020400", "MAP": "D9-8570-T011", "PARCEL_NAM": "84A", "ACRE": ".002", "LONGITUDE": -64.94211002, "LATITUDE": 18.34244724, "OBJECTID_1": 8983, "PARCEL_NO_": "105301020400", "Tax_Legal_": "84 & 84A ANNAS FANCY CROWN PRINCE QUARTER", "Name": "ROLLINS, OSCAR & PHILLIS A.", "Address": "PO Box 6811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37700, "Improved_V": 191700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 14.6570327183, "SHAPE_Area": 10.409912325200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357620.15259999781847, 256989.448899999260902 ], [ 357614.91499999910593, 256990.590399999171495 ], [ 357618.590999998152256, 256993.666499998420477 ], [ 357619.413400001823902, 256991.773400001227856 ], [ 357620.15259999781847, 256989.448899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301020100", "MAP": "D9-8570-T011", "PARCEL_NAM": "85A", "ACRE": ".002", "LONGITUDE": -64.9422235, "LATITUDE": 18.34238009, "OBJECTID_1": 8980, "PARCEL_NO_": "105301020100", "Tax_Legal_": "85 REM & 85A ANNA'S FANCY KRONPRINDSENS QTR", "Name": "ROLLINS, OSCAR & PHILLIS A.", "Address": "PO Box 6811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.2804725632, "SHAPE_Area": 11.6954030579 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357601.274099998176098, 256980.956199999898672 ], [ 357614.91499999910593, 256990.590399999171495 ], [ 357601.777099996805191, 256979.596700001507998 ], [ 357601.274099998176098, 256980.956199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904025400", "MAP": "D9-5475-T93", "PARCEL_NAM": "A-7-1", "ACRE": null, "LONGITUDE": -64.92149421000001, "LATITUDE": 18.34822325, "OBJECTID_1": 5070, "PARCEL_NO_": "102904025400", "Tax_Legal_": "ROSS A-7-1 KING QUARTER", "Name": "CALLWOOD (LIFE ESTATE), HORACE A", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 111900, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.855286855, "SHAPE_Area": 2181.6299783200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359838.004199996590614, 257629.164500001817942 ], [ 359749.287900000810623, 257640.563799999654293 ], [ 359752.258799999952316, 257654.331599999219179 ], [ 359755.494599997997284, 257667.655799999833107 ], [ 359823.838500000536442, 257658.607099998742342 ], [ 359838.004199996590614, 257629.164500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904025500", "MAP": "D9-5609-T93", "PARCEL_NAM": "A-7-4", "ACRE": ".6514", "LONGITUDE": -64.9214514, "LATITUDE": 18.34889926, "OBJECTID_1": 5071, "PARCEL_NO_": "102904025500", "Tax_Legal_": "A-7-4 ESTATE ROSS KINGS QUARTER", "Name": "KEAN, MICHAEL C", "Address": "PO Box 6046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.348640399, "SHAPE_Area": 2070.14529244 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359820.306199997663498, 257696.710900001227856 ], [ 359803.730099998414516, 257708.137200001627207 ], [ 359762.919699996709824, 257700.671900000423193 ], [ 359764.545199997723103, 257708.028099998831749 ], [ 359767.027300000190735, 257719.258099999278784 ], [ 359771.995700001716614, 257739.700300000607967 ], [ 359825.734099999070168, 257744.942699998617172 ], [ 359825.839900001883507, 257744.672400001436472 ], [ 359825.544799998402596, 257738.980099998414516 ], [ 359825.480400003492832, 257730.152199998497963 ], [ 359822.650799997150898, 257723.574200000613928 ], [ 359818.7550999969244, 257711.772100001573563 ], [ 359816.757600001990795, 257704.973200000822544 ], [ 359816.772699996829033, 257703.143300000578165 ], [ 359817.73200000077486, 257701.396899998188019 ], [ 359820.306199997663498, 257696.710900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026800", "MAP": "D9-5609-T93", "PARCEL_NAM": "A-7-3", "ACRE": ".5862", "LONGITUDE": -64.92148215, "LATITUDE": 18.34854136, "OBJECTID_1": 5082, "PARCEL_NO_": "102904026800", "Tax_Legal_": "ROSS A-7-3 NEW QRT #8", "Name": "AUGUSTIN, AVELINA", "Address": "PO Box 10798", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.730838807, "SHAPE_Area": 2559.6689161999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359831.233999997377396, 257663.409800000488758 ], [ 359825.955099999904633, 257669.402100000530481 ], [ 359795.352600000798702, 257662.378600001335144 ], [ 359755.494599997997284, 257667.655799999833107 ], [ 359756.933100000023842, 257673.5793999992311 ], [ 359762.919699996709824, 257700.671900000423193 ], [ 359803.730099998414516, 257708.137200001627207 ], [ 359820.306199997663498, 257696.710900001227856 ], [ 359828.631999999284744, 257681.554499998688698 ], [ 359831.164200000464916, 257668.276299998164177 ], [ 359831.203699998557568, 257663.632599998265505 ], [ 359831.233999997377396, 257663.409800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904027100", "MAP": "D9-6230-T97", "PARCEL_NAM": "407A-2", "ACRE": ".17", "LONGITUDE": -64.92172177, "LATITUDE": 18.34973746, "OBJECTID_1": 5085, "PARCEL_NO_": "102904027100", "Tax_Legal_": "407A-2 REM HOSPITAL GROUND(ROAD) 9 NEW QTR", "Name": "OTTLEY, MELVIN L.", "Address": "1320 Calvin Dr", "City": "Washington", "State": "Illinois", "Zip": 61571, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.98286511200001, "SHAPE_Area": 1046.3338458000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359769.575900003314018, 257847.685300000011921 ], [ 359768.678999997675419, 257832.896899998188019 ], [ 359762.964000001549721, 257832.420699998736382 ], [ 359775.663999997079372, 257802.893100000917912 ], [ 359786.191699996590614, 257802.003699999302626 ], [ 359778.688100002706051, 257770.227200001478195 ], [ 359744.171999998390675, 257846.360500000417233 ], [ 359765.929799996316433, 257848.01630000025034 ], [ 359769.575900003314018, 257847.685300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904024900", "MAP": "D9-5808-T93", "PARCEL_NAM": "A-7-2", "ACRE": null, "LONGITUDE": -64.92119475, "LATITUDE": 18.348302, "OBJECTID_1": 5066, "PARCEL_NO_": "102904024900", "Tax_Legal_": "\"A\" REM.ESTATE ROSS No.8 NEW QUARTER", "Name": "PETERKIN, YURI and VALERIE COMISSIONG", "Address": "1H Wintberg Peak", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 253300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.92132571900001, "SHAPE_Area": 333.97322693299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359840.606299996376038, 257628.832800000905991 ], [ 359838.004199996590614, 257629.164500001817942 ], [ 359823.838500000536442, 257658.607099998742342 ], [ 359795.352600000798702, 257662.378600001335144 ], [ 359825.955099999904633, 257669.402100000530481 ], [ 359831.233999997377396, 257663.409800000488758 ], [ 359832.064000003039837, 257657.306800000369549 ], [ 359833.789899997413158, 257644.021999999880791 ], [ 359835.416900001466274, 257642.346599999815226 ], [ 359838.733900003135204, 257631.607999999076128 ], [ 359840.364500001072884, 257629.510400000959635 ], [ 359840.606299996376038, 257628.832800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904023900", "MAP": "G9-1021-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92335115, "LATITUDE": 18.34817862, "OBJECTID_1": 5055, "PARCEL_NO_": "102904023900", "Tax_Legal_": "HOSPITAL GROUND 284A KINGS QUARTER", "Name": "FELIX,JR.,OTIS LEANDER &, PATRICIA MAUREEN", "Address": "PO Box 11018", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28800, "Improved_V": 31800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.202739522, "SHAPE_Area": 1056.7636373 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359618.603399999439716, 257630.650699999183416 ], [ 359617.989399999380112, 257626.064100001007318 ], [ 359614.598800003528595, 257627.451499998569489 ], [ 359567.751800000667572, 257636.567299999296665 ], [ 359572.427799999713898, 257655.603999998420477 ], [ 359620.864100001752377, 257649.245400000363588 ], [ 359618.603399999439716, 257630.650699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92289584, "LATITUDE": 18.34866022, "OBJECTID_1": 5040, "PARCEL_NO_": "102904022300", "Tax_Legal_": "HOSPITAL GROUND 285 GR NORTHSIDE QTR", "Name": "INFINITY INVESTORS LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 384.28174464300002, "SHAPE_Area": 5158.8156570199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359652.50450000166893, 257626.706300001591444 ], [ 359651.540700003504753, 257611.797400001436472 ], [ 359646.178000003099442, 257612.089000001549721 ], [ 359642.13570000231266, 257613.322500001639128 ], [ 359626.736599996685982, 257622.484600000083447 ], [ 359617.989399999380112, 257626.064100001007318 ], [ 359618.603399999439716, 257630.650699999183416 ], [ 359620.864100001752377, 257649.245400000363588 ], [ 359623.866400003433228, 257675.445599999278784 ], [ 359627.630000002682209, 257706.929299999028444 ], [ 359629.890699997544289, 257725.524099998176098 ], [ 359632.135200001299381, 257746.018500000238419 ], [ 359640.716899998486042, 257779.863699998706579 ], [ 359666.547700002789497, 257776.697599999606609 ], [ 359652.50450000166893, 257626.706300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92233056000001, "LATITUDE": 18.34860344, "OBJECTID_1": 5038, "PARCEL_NO_": "102904022200", "Tax_Legal_": "HOSPITAL GROUND 287 GR NORTHSIDE QTR", "Name": "THOMAS, IRENE JUSTINA G", "Address": "PO Box 304129", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 137400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 384.81059601599998, "SHAPE_Area": 4875.3450993200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359695.607299998402596, 257773.135800000280142 ], [ 359725.475000001490116, 257769.369500000029802 ], [ 359723.214299999177456, 257750.774700000882149 ], [ 359718.748700000345707, 257707.041799999773502 ], [ 359713.042199999094009, 257619.596700001507998 ], [ 359712.147600002586842, 257610.461100000888109 ], [ 359709.758100003004074, 257610.428800001740456 ], [ 359683.288199998438358, 257610.070700000971556 ], [ 359680.562200002372265, 257610.219000000506639 ], [ 359681.562299996614456, 257623.355500001460314 ], [ 359695.607299998402596, 257773.135800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9221374, "LATITUDE": 18.34835953, "OBJECTID_1": 5063, "PARCEL_NO_": "102904024600", "Tax_Legal_": "HOSPITAL GROUND 288 GR NORTHSIDE", "Name": "TIESSONAIERE, FRANCISCO", "Address": "1652SW ANGELINO LN", "City": "Pt.St.Lucia", "State": "Florida", "Zip": 33452, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.11245462599999, "SHAPE_Area": 1462.32706564 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359712.788900002837181, 257619.844300001859665 ], [ 359718.748700000345707, 257707.041799999773502 ], [ 359738.111000001430511, 257705.933699999004602 ], [ 359724.34179999679327, 257618.428300000727177 ], [ 359723.687399998307228, 257610.668499998748302 ], [ 359722.795699998736382, 257610.605200000107288 ], [ 359712.147600002586842, 257610.461100000888109 ], [ 359712.788900002837181, 257619.844300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92193442, "LATITUDE": 18.34887987, "OBJECTID_1": 5061, "PARCEL_NO_": "102904024400", "Tax_Legal_": "HOSPITAL GROUND 288B GR NORTHSIDE", "Name": "NEWSOME, ADELE", "Address": "91 Schaefer St", "City": "Brooklyn", "State": "New York", "Zip": 11207, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 412.98596076799998, "SHAPE_Area": 2046.7090913899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359729.991400003433228, 257617.841299999505281 ], [ 359729.123000003397465, 257611.054699998348951 ], [ 359723.687399998307228, 257610.668499998748302 ], [ 359724.34179999679327, 257618.428300000727177 ], [ 359738.111000001430511, 257705.933699999004602 ], [ 359744.208999998867512, 257747.357999999076128 ], [ 359723.214299999177456, 257750.774700000882149 ], [ 359725.475000001490116, 257769.369500000029802 ], [ 359727.089500002563, 257769.171599999070168 ], [ 359777.136600002646446, 257763.037300001829863 ], [ 359772.482100002467632, 257741.467700000852346 ], [ 359753.10360000282526, 257744.475499998778105 ], [ 359740.788900002837181, 257675.558200001716614 ], [ 359729.991400003433228, 257617.841299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92196021, "LATITUDE": 18.34818699, "OBJECTID_1": 5065, "PARCEL_NO_": "102904024800", "Tax_Legal_": "HOSPITAL GROUND 288D GR NORTHSIDE", "Name": "ERBA, RITA", "Address": "9310 Queens Blvd", "City": "Rego Park", "State": "New York", "Zip": 11374, "Country": "United States", "Land_Value": 55300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.79978928899999, "SHAPE_Area": 951.970666241 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359729.123000003397465, 257611.054699998348951 ], [ 359729.991400003433228, 257617.841299999505281 ], [ 359740.788900002837181, 257675.558200001716614 ], [ 359756.933100000023842, 257673.5793999992311 ], [ 359752.258799999952316, 257654.331599999219179 ], [ 359749.155900001525879, 257639.951799999922514 ], [ 359743.713100001215935, 257616.264800000935793 ], [ 359742.942699998617172, 257612.03660000115633 ], [ 359729.123000003397465, 257611.054699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92260937, "LATITUDE": 18.34863509, "OBJECTID_1": 5037, "PARCEL_NO_": "102904022100", "Tax_Legal_": "HOSPITAL GROUND 286 KINGS QTR", "Name": "V I FINANCE AUTH.", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 202600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 387.54063327599999, "SHAPE_Area": 4813.6615325299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359695.607299998402596, 257773.135800000280142 ], [ 359681.562299996614456, 257623.355500001460314 ], [ 359680.562200002372265, 257610.219000000506639 ], [ 359651.540700003504753, 257611.797400001436472 ], [ 359652.50450000166893, 257626.706300001591444 ], [ 359666.547700002789497, 257776.697599999606609 ], [ 359695.607299998402596, 257773.135800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102904024000", "MAP": "D9-5464-T93", "PARCEL_NAM": "296-1", "ACRE": ".16", "LONGITUDE": -64.92450341, "LATITUDE": 18.34842616, "OBJECTID_1": 5056, "PARCEL_NO_": "102904024000", "Tax_Legal_": "HOSPITAL GROUND 296 GR NORTHSIDE", "Name": "GEORGE, FLOYD & ELAINE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79300, "Improved_V": 72200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.13248331600001, "SHAPE_Area": 939.65051674100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359491.843199998140335, 257659.628899998962879 ], [ 359490.804399996995926, 257651.172899998724461 ], [ 359457.786700002849102, 257654.733399998396635 ], [ 359458.655000001192093, 257664.383099999278784 ], [ 359460.861800000071526, 257689.310199998319149 ], [ 359471.359999999403954, 257687.496300000697374 ], [ 359477.839299999177456, 257684.171799998730421 ], [ 359483.528399996459484, 257678.940999999642372 ], [ 359491.843199998140335, 257659.628899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903035100", "MAP": "D9-7535-T005", "PARCEL_NAM": "290A", "ACRE": ".29", "LONGITUDE": -64.92795144, "LATITUDE": 18.34810857, "OBJECTID_1": 4863, "PARCEL_NO_": "102903035100", "Tax_Legal_": "HOSPITAL GROUND 290A GREAT NORTHSIDE QTR", "Name": "VIALET, CLARICE", "Address": "PO Box 663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36300, "Improved_V": 167700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.764348469, "SHAPE_Area": 1249.6388081299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359122.954599998891354, 257626.249200001358986 ], [ 359116.696699999272823, 257611.249200001358986 ], [ 359119.792300000786781, 257610.614199999719858 ], [ 359125.553400002419949, 257609.752399999648333 ], [ 359125.327200002968311, 257604.659699998795986 ], [ 359096.707699999213219, 257604.444899998605251 ], [ 359096.445200003683567, 257608.342599999159575 ], [ 359095.187299996614456, 257623.247999999672174 ], [ 359102.190999999642372, 257631.285000000149012 ], [ 359093.564300000667572, 257642.481300000101328 ], [ 359093.254299998283386, 257646.154699999839067 ], [ 359101.541299998760223, 257651.75 ], [ 359108.753200002014637, 257657.086399998515844 ], [ 359116.679999999701977, 257664.416299998760223 ], [ 359117.252300001680851, 257662.446199998259544 ], [ 359122.954599998891354, 257626.249200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804040100", "MAP": "A9-147-T70", "PARCEL_NAM": "2-1", "ACRE": ".309", "LONGITUDE": -64.93279631, "LATITUDE": 18.34846677, "OBJECTID_1": 4665, "PARCEL_NO_": "102804040100", "Tax_Legal_": "2-1 AGNES FANCY&30C-1 ELIZABETH No.8&8i GREAT NORTHSIDE QTR.", "Name": "BRYAN, ASHLEY F. & ALBERTINA H", "Address": "PO Box 11957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38200, "Improved_V": 271100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.99051509500001, "SHAPE_Area": 1602.8611556599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358580.438699997961521, 257673.871700000017881 ], [ 358581.567699998617172, 257686.733300000429153 ], [ 358581.85700000077486, 257690.029199998825788 ], [ 358582.411700002849102, 257696.348400000482798 ], [ 358586.723700001835823, 257693.343800000846386 ], [ 358604.54169999808073, 257684.201499998569489 ], [ 358614.26240000128746, 257679.003699999302626 ], [ 358614.29839999973774, 257674.7820999994874 ], [ 358615.934399999678135, 257672.051300000399351 ], [ 358617.425899997353554, 257670.89979999884963 ], [ 358617.152900002896786, 257641.057100001722574 ], [ 358605.691500000655651, 257643.892000000923872 ], [ 358587.922100000083447, 257647.335200000554323 ], [ 358578.429799996316433, 257649.096599999815226 ], [ 358572.999200001358986, 257650.104400001466274 ], [ 358580.438699997961521, 257673.871700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804040300", "MAP": "A9-147-T70", "PARCEL_NAM": "2-3", "ACRE": ".300", "LONGITUDE": -64.93275896, "LATITUDE": 18.34811985, "OBJECTID_1": 4667, "PARCEL_NO_": "102804040300", "Tax_Legal_": "AGNES FANCY 2-3 LITTLE NORTHSIDE", "Name": "BRYAN,IVAN C. &, LAURA C.,TRUSTEES", "Address": "PO Box 9505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.59630549100001, "SHAPE_Area": 1105.1386501300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358616.822899997234344, 257604.976199999451637 ], [ 358605.991800002753735, 257608.641800001263618 ], [ 358600.329599998891354, 257610.706399999558926 ], [ 358581.723300002515316, 257617.731300000101328 ], [ 358584.032600000500679, 257630.626899998635054 ], [ 358585.583999998867512, 257637.816799998283386 ], [ 358587.922100000083447, 257647.335200000554323 ], [ 358605.691500000655651, 257643.892000000923872 ], [ 358617.152900002896786, 257641.057100001722574 ], [ 358616.969099998474121, 257620.958999998867512 ], [ 358616.822899997234344, 257604.976199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903012000", "MAP": "D9-5013-T90", "PARCEL_NAM": "12A", "ACRE": null, "LONGITUDE": -64.92938962, "LATITUDE": 18.35123092, "OBJECTID_1": 4736, "PARCEL_NO_": "102903012000", "Tax_Legal_": "MAFOLIE 12A GT.NORTHSIDE QTR.", "Name": "CHUGANI, VISHNU & INDRA (TRUSTEES)", "Address": "5332 Raadets Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87800, "Improved_V": 1113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.048220421, "SHAPE_Area": 2101.5789050100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358972.733800001442432, 258005.543999999761581 ], [ 358969.967100001871586, 257951.692499998956919 ], [ 358969.635499998927116, 257942.384899999946356 ], [ 358936.457000002264977, 257943.418099999427795 ], [ 358936.893899999558926, 257953.110599998384714 ], [ 358938.854299999773502, 258006.95549999922514 ], [ 358945.317400000989437, 258005.530699998140335 ], [ 358972.733800001442432, 258005.543999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015400", "MAP": null, "PARCEL_NAM": "400BA-1", "ACRE": null, "LONGITUDE": -64.92761655, "LATITUDE": 18.35128238, "OBJECTID_1": 4769, "PARCEL_NO_": "102903015400", "Tax_Legal_": "400BA-1REM& 400BA-2 HOSPITAL GROUND No.5 GREAT NORTHSIDE QTR.", "Name": "WHITE BREEZE HOLDINGS LLC", "Address": "20 N Martingale Rd", "City": "Schaumburg", "State": "Illinois", "Zip": 60173, "Country": "United States", "Land_Value": 58200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.788963314, "SHAPE_Area": 1035.96853964 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359123.60419999808073, 257996.224199999123812 ], [ 359172.844999998807907, 257990.083299998193979 ], [ 359147.246200002729893, 257966.020199999213219 ], [ 359120.609099999070168, 257969.179699998348951 ], [ 359123.50789999961853, 257995.355000000447035 ], [ 359123.60419999808073, 257996.224199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903012200", "MAP": "D9-162-T58", "PARCEL_NAM": "10A", "ACRE": ".4349", "LONGITUDE": -64.92879387000001, "LATITUDE": 18.35082561, "OBJECTID_1": 4738, "PARCEL_NO_": "102903012200", "Tax_Legal_": "MAFOLIE 1OA GREAT NORTHSIDE QTR", "Name": "IMJ LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.089033118, "SHAPE_Area": 2184.8526157900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359002.865000002086163, 257890.768399998545647 ], [ 359005.031700000166893, 257955.243400000035763 ], [ 359005.527900002896786, 257970.008499998599291 ], [ 359018.901299998164177, 257970.179699998348951 ], [ 359022.14750000089407, 257970.221200000494719 ], [ 359029.288699999451637, 257970.312600001692772 ], [ 359033.511100001633167, 257970.366700001060963 ], [ 359030.681500002741814, 257923.902899999171495 ], [ 359028.579000003635883, 257886.733199998736382 ], [ 359018.079000003635883, 257888.758200000971556 ], [ 359002.865000002086163, 257890.768399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015300", "MAP": "D9-162-T58/D9-7663-T005", "PARCEL_NAM": "400B", "ACRE": ".1969", "LONGITUDE": -64.9284791, "LATITUDE": 18.351331, "OBJECTID_1": 4768, "PARCEL_NO_": "102903015300", "Tax_Legal_": "8D&9C LOUISENHOJ&10 MAFOLIE &400B HOSPITAL GROUND", "Name": "HILL-ROWLAND, PAMELA E", "Address": "7156 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.11277060200001, "SHAPE_Area": 1049.78929982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359067.043799996376038, 258001.841899998486042 ], [ 359065.060199998319149, 257968.520700000226498 ], [ 359033.511100001633167, 257970.366700001060963 ], [ 359035.0050999969244, 257984.311099998652935 ], [ 359035.755699999630451, 257990.861099999397993 ], [ 359036.706799998879433, 258004.855000000447035 ], [ 359067.043799996376038, 258001.841899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015300", "MAP": "D9-162-T58/ D9-7663-T005", "PARCEL_NAM": "10", "ACRE": ".1774", "LONGITUDE": -64.92876318, "LATITUDE": 18.35135321, "OBJECTID_1": 4768, "PARCEL_NO_": "102903015300", "Tax_Legal_": "8D&9C LOUISENHOJ&10 MAFOLIE &400B HOSPITAL GROUND", "Name": "HILL-ROWLAND, PAMELA E", "Address": "7156 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.52236256200001, "SHAPE_Area": 1054.99787438 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359006.798799999058247, 258007.825599998235703 ], [ 359036.706799998879433, 258004.855000000447035 ], [ 359035.755699999630451, 257990.861099999397993 ], [ 359035.0050999969244, 257984.311099998652935 ], [ 359033.511100001633167, 257970.366700001060963 ], [ 359029.288699999451637, 257970.312600001692772 ], [ 359022.14750000089407, 257970.221200000494719 ], [ 359018.901299998164177, 257970.179699998348951 ], [ 359005.527900002896786, 257970.008499998599291 ], [ 359006.798799999058247, 258007.825599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903016100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92805546, "LATITUDE": 18.35150971, "OBJECTID_1": 4776, "PARCEL_NO_": "102903016100", "Tax_Legal_": "LOUISENHOJ 15 & 400BA-1A HOSPITAL GROUND", "Name": "DST HOLDINGS LLC", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026733, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.05072024200001, "SHAPE_Area": 836.27228377400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359067.781599998474121, 258017.721000000834465 ], [ 359125.103500001132488, 258009.535300001502037 ], [ 359123.60419999808073, 257996.224199999123812 ], [ 359077.517200000584126, 258000.801600001752377 ], [ 359067.043799996376038, 258001.841899998486042 ], [ 359067.099299997091293, 258003.149999998509884 ], [ 359067.835500001907349, 258011.388599999248981 ], [ 359067.781599998474121, 258017.721000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015300", "MAP": "D9-1767-T81", "PARCEL_NAM": "9C", "ACRE": ".1109", "LONGITUDE": -64.92844191, "LATITUDE": 18.35153721, "OBJECTID_1": 4768, "PARCEL_NO_": "102903015300", "Tax_Legal_": "8D&9C LOUISENHOJ&10 MAFOLIE &400B HOSPITAL GROUND", "Name": "HILL-ROWLAND, PAMELA E", "Address": "7156 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.398023697200003, "SHAPE_Area": 348.09218539099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359037.296700000762939, 258011.767499998211861 ], [ 359067.781599998474121, 258017.721000000834465 ], [ 359067.835500001907349, 258011.388599999248981 ], [ 359067.099299997091293, 258003.149999998509884 ], [ 359067.043799996376038, 258001.841899998486042 ], [ 359036.706799998879433, 258004.855000000447035 ], [ 359037.296700000762939, 258011.767499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015300", "MAP": "D9-1767-T81", "PARCEL_NAM": "8D", "ACRE": null, "LONGITUDE": -64.92867937, "LATITUDE": 18.35152805, "OBJECTID_1": 4768, "PARCEL_NO_": "102903015300", "Tax_Legal_": "8D&9C LOUISENHOJ&10 MAFOLIE &400B HOSPITAL GROUND", "Name": "HILL-ROWLAND, PAMELA E", "Address": "7156 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.2310452794, "SHAPE_Area": 80.416779257200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359013.635300002992153, 258007.146600000560284 ], [ 359037.296700000762939, 258011.767499998211861 ], [ 359036.706799998879433, 258004.855000000447035 ], [ 359013.635300002992153, 258007.146600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92932082, "LATITUDE": 18.35185452, "OBJECTID_1": 4726, "PARCEL_NO_": "102903011300", "Tax_Legal_": "MAFOLIE 21A GR NORTHSIDE", "Name": "GRAY, NORMAN W", "Address": "21A Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132400, "Improved_V": 574300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.14232643700001, "SHAPE_Area": 2788.1847395099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358980.72860000282526, 258013.631000000983477 ], [ 358979.810000002384186, 258010.709399998188019 ], [ 358978.332999996840954, 258010.867199998348951 ], [ 358972.681699998676777, 258011.665300000458956 ], [ 358951.713899999856949, 258011.915899999439716 ], [ 358923.122599996626377, 258055.167199999094009 ], [ 358928.750600002706051, 258057.113099999725819 ], [ 358937.575099997222424, 258062.462600000202656 ], [ 358956.867200002074242, 258069.586599998176098 ], [ 358989.89190000295639, 258073.86769999936223 ], [ 358980.72860000282526, 258013.631000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102903011400", "MAP": "D9-1767-T81", "PARCEL_NAM": "9", "ACRE": ".391", "LONGITUDE": -64.928987, "LATITUDE": 18.35179854, "OBJECTID_1": 4727, "PARCEL_NO_": "102903011400", "Tax_Legal_": "9 ESTATE MAFOLIE No.8F GREAT NORHTSIDE QTR.", "Name": "PAMELA E ROWLAND HILL TRUST", "Address": "7156 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.64101235199999, "SHAPE_Area": 1507.94857247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358980.72860000282526, 258013.631000000983477 ], [ 358989.89190000295639, 258073.86769999936223 ], [ 358990.67119999974966, 258077.040500000119209 ], [ 359001.950599998235703, 258078.188299998641014 ], [ 359002.826999999582767, 258069.962799999862909 ], [ 359011.341499999165535, 258017.048000000417233 ], [ 359013.017099998891354, 258009.67339999973774 ], [ 359013.635300002992153, 258007.146600000560284 ], [ 359006.798799999058247, 258007.825599998235703 ], [ 358979.810000002384186, 258010.709399998188019 ], [ 358980.72860000282526, 258013.631000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92907655, "LATITUDE": 18.35126514, "OBJECTID_1": 4737, "PARCEL_NO_": "102903012100", "Tax_Legal_": "MAFOLIE 11 GR NORTHSIDE", "Name": "RONALD H. & MARY P. SMITH REVOC TR", "Address": "9005 Havensight Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 115700, "Improved_V": 464800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.78778644499999, "SHAPE_Area": 2082.42147316 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359005.146600000560284, 257958.663100000470877 ], [ 358988.166900001466274, 257950.049800001084805 ], [ 358969.449000000953674, 257937.151399999856949 ], [ 358969.967100001871586, 257951.692499998956919 ], [ 358972.733800001442432, 258005.543999999761581 ], [ 358978.332999996840954, 258010.867199998348951 ], [ 359006.798799999058247, 258007.825599998235703 ], [ 359005.146600000560284, 257958.663100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92907957, "LATITUDE": 18.35074549, "OBJECTID_1": 4777, "PARCEL_NO_": "102903016200", "Tax_Legal_": "MAFOLIE 11A GT NORTHSIDE", "Name": "MITCHELL, GIAVONNE", "Address": "7143 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023677, "Country": "United States", "Land_Value": 101400, "Improved_V": 85800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.85814702799999, "SHAPE_Area": 1967.13371663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358969.449000000953674, 257937.151399999856949 ], [ 358988.166900001466274, 257950.049800001084805 ], [ 359005.146600000560284, 257958.663100000470877 ], [ 359005.031700000166893, 257955.243400000035763 ], [ 359002.865000002086163, 257890.768399998545647 ], [ 358984.980599999427795, 257893.131400000303984 ], [ 358968.048100002110004, 257892.992800001055002 ], [ 358968.665600001811981, 257915.16270000115037 ], [ 358969.449000000953674, 257937.151399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903016400", "MAP": "D9-1767-T81", "PARCEL_NAM": "9B", "ACRE": ".500", "LONGITUDE": -64.92842543, "LATITUDE": 18.35188962, "OBJECTID_1": 4779, "PARCEL_NO_": "102903016400", "Tax_Legal_": "LOUISENHOJ 9B GT. NORTHSIDE QTR.", "Name": "PAMELA E ROWLAND HILL TRUST", "Address": "7156 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63700, "Improved_V": 127900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.25426174, "SHAPE_Area": 2065.5561473100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359067.781599998474121, 258017.721000000834465 ], [ 359037.296700000762939, 258011.767499998211861 ], [ 359041.494099996984005, 258074.5011 ], [ 359074.452200002968311, 258086.592099998146296 ], [ 359073.0337999984622, 258063.782400000840425 ], [ 359067.781599998474121, 258017.721000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903016300", "MAP": "D9-1767-T81", "PARCEL_NAM": "8B", "ACRE": ".4159", "LONGITUDE": -64.92873111, "LATITUDE": 18.35184733, "OBJECTID_1": 4778, "PARCEL_NO_": "102903016300", "Tax_Legal_": "8B ESTATE LOUISENHOJ GT NORTHSIDE", "Name": "PAMELA E ROWLAND HILL TRUST", "Address": "7156 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56800, "Improved_V": 422400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.674113965, "SHAPE_Area": 1990.16810093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359037.296700000762939, 258011.767499998211861 ], [ 359013.635300002992153, 258007.146600000560284 ], [ 359013.017099998891354, 258009.67339999973774 ], [ 359011.341499999165535, 258017.048000000417233 ], [ 359002.826999999582767, 258069.962799999862909 ], [ 359041.494099996984005, 258074.5011 ], [ 359037.296700000762939, 258011.767499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015400", "MAP": "G9-2700-T77", "PARCEL_NAM": "400BA-1A", "ACRE": ".26", "LONGITUDE": -64.92806507, "LATITUDE": 18.35132286, "OBJECTID_1": 4769, "PARCEL_NO_": "102903015400", "Tax_Legal_": "400BA-1REM& 400BA-2 HOSPITAL GROUND No.5 GREAT NORTHSIDE QTR.", "Name": "WHITE BREEZE HOLDINGS LLC", "Address": "20 N Martingale Rd", "City": "Schaumburg", "State": "Illinois", "Zip": 60173, "Country": "United States", "Land_Value": 58200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.282760951, "SHAPE_Area": 1502.06216814 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359075.406999997794628, 257974.509199999272823 ], [ 359065.45440000295639, 257975.142900001257658 ], [ 359067.043799996376038, 258001.841899998486042 ], [ 359077.517200000584126, 258000.801600001752377 ], [ 359123.60419999808073, 257996.224199999123812 ], [ 359123.50789999961853, 257995.355000000447035 ], [ 359120.609099999070168, 257969.179699998348951 ], [ 359075.406999997794628, 257974.509199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904012100", "MAP": "F9-1971-T67", "PARCEL_NAM": "1-6", "ACRE": ".33", "LONGITUDE": -64.92000243, "LATITUDE": 18.3549628, "OBJECTID_1": 4938, "PARCEL_NO_": "102904012100", "Tax_Legal_": "CAN & SHEPENJEWEL 1-6 7A&B GR NORTHSIDE", "Name": "TURNBULL, HURBERT & SIMONE", "Address": "PO Box 10988", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40900, "Improved_V": 170700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.992497289, "SHAPE_Area": 1272.2469337099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359954.00110000371933, 258433.32039999961853 ], [ 359954.789599999785423, 258421.480599999427795 ], [ 359955.235299997031689, 258414.788199998438358 ], [ 359957.068000003695488, 258387.269499998539686 ], [ 359956.072899997234344, 258385.677700001746416 ], [ 359940.211300000548363, 258360.304699998348951 ], [ 359938.943599998950958, 258363.022900000214577 ], [ 359930.759999997913837, 258380.896899998188019 ], [ 359926.618699997663498, 258389.94200000166893 ], [ 359927.322599999606609, 258401.980099998414516 ], [ 359929.70549999922514, 258406.221500001847744 ], [ 359935.308399997651577, 258411.122499998658895 ], [ 359941.124700002372265, 258416.886999998241663 ], [ 359948.085299998521805, 258425.792500000447035 ], [ 359954.00110000371933, 258433.32039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017700", "MAP": "D9-6034-T96", "PARCEL_NAM": "1 REM", "ACRE": "1.431", "LONGITUDE": -64.91965353000001, "LATITUDE": 18.35487497, "OBJECTID_1": 4989, "PARCEL_NO_": "102904017700", "Tax_Legal_": "1REM & 1-4-1 CANAAN & SHERPENJEWEL NO. 7A & 7B GREAT NORTHSIDE QUARTER", "Name": "DAVIS, JOSEPH & ELIZABETH", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 102700, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.35100696799998, "SHAPE_Area": 5366.1934876599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359962.178800001740456, 258433.1689000017941 ], [ 360003.871500000357628, 258438.786299999803305 ], [ 360007.142099998891354, 258403.266699999570847 ], [ 360016.3783999979496, 258360.279199998825788 ], [ 360018.260799996554852, 258351.028499998152256 ], [ 359990.841399997472763, 258346.561999998986721 ], [ 359985.054899998009205, 258345.61939999833703 ], [ 359945.982299998402596, 258339.254799999296665 ], [ 359943.195600003004074, 258350.834300000220537 ], [ 359940.211300000548363, 258360.304699998348951 ], [ 359956.072899997234344, 258385.677700001746416 ], [ 359957.068000003695488, 258387.269499998539686 ], [ 359955.235299997031689, 258414.788199998438358 ], [ 359954.00110000371933, 258433.32039999961853 ], [ 359962.178800001740456, 258433.1689000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904012500", "MAP": "C3-64-T47", "PARCEL_NAM": "7", "ACRE": "1.26", "LONGITUDE": -64.91966586, "LATITUDE": 18.35421495, "OBJECTID_1": 4942, "PARCEL_NO_": "102904012500", "Tax_Legal_": "LOUISENHOJ 7 GREAT NORTHSIDE QTR", "Name": "ELIZABETH DAVIS", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 173600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.78894597300001, "SHAPE_Area": 5303.4641146100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359985.054899998009205, 258345.61939999833703 ], [ 359990.841399997472763, 258346.561999998986721 ], [ 360018.260799996554852, 258351.028499998152256 ], [ 360029.843999996781349, 258294.105999998748302 ], [ 359986.405599996447563, 258281.718199998140335 ], [ 359950.074799999594688, 258286.909299999475479 ], [ 359891.13849999755621, 258295.29280000180006 ], [ 359899.181800000369549, 258297.680700000375509 ], [ 359912.887299999594688, 258298.004000000655651 ], [ 359920.129799999296665, 258299.752000000327826 ], [ 359929.769500002264977, 258304.052700001746416 ], [ 359937.76969999819994, 258311.506499998271465 ], [ 359943.345600001513958, 258319.573699999600649 ], [ 359946.493500001728535, 258328.676500000059605 ], [ 359945.982299998402596, 258339.254799999296665 ], [ 359985.054899998009205, 258345.61939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017700", "MAP": "D9-7682-T005", "PARCEL_NAM": "1-4-1", "ACRE": ".009", "LONGITUDE": -64.91955744000001, "LATITUDE": 18.35534825, "OBJECTID_1": 4989, "PARCEL_NO_": "102904017700", "Tax_Legal_": "1REM & 1-4-1 CANAAN & SHERPENJEWEL NO. 7A & 7B GREAT NORTHSIDE QUARTER", "Name": "DAVIS, JOSEPH & ELIZABETH", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 102700, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.021827575800003, "SHAPE_Area": 112.459128217 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360003.354400001466274, 258444.109299998730421 ], [ 360003.5878000035882, 258441.86769999936223 ], [ 360003.871500000357628, 258438.786299999803305 ], [ 359962.178800001740456, 258433.1689000017941 ], [ 360003.354400001466274, 258444.109299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904010700", "MAP": "D9-7682-T005", "PARCEL_NAM": "1-I-2", "ACRE": null, "LONGITUDE": -64.91943344000001, "LATITUDE": 18.35555386, "OBJECTID_1": 4927, "PARCEL_NO_": "102904010700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1I REM GREAT NORTHSIDE QTR", "Name": "DAVIS, JOSEPH & ELIZABETH", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 35100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.744955600499999, "SHAPE_Area": 41.155760845400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360005.041199997067451, 258456.125300001353025 ], [ 360001.233599998056889, 258457.86710000038147 ], [ 359999.234099999070168, 258468.113000001758337 ], [ 360005.917999997735023, 258462.371300000697374 ], [ 360005.041199997067451, 258456.125300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904010700", "MAP": "D9-5555-T93", "PARCEL_NAM": "1-I", "ACRE": "0.31", "LONGITUDE": -64.91927771, "LATITUDE": 18.35564624, "OBJECTID_1": 4927, "PARCEL_NO_": "102904010700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1I REM GREAT NORTHSIDE QTR", "Name": "DAVIS, JOSEPH & ELIZABETH", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 35100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.02353122900001, "SHAPE_Area": 1948.9118592299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360053.085500001907349, 258434.147700000554323 ], [ 360005.041199997067451, 258456.125300001353025 ], [ 360005.917999997735023, 258462.371300000697374 ], [ 359999.234099999070168, 258468.113000001758337 ], [ 359992.591399997472763, 258502.150499999523163 ], [ 360023.175599999725819, 258508.944699998944998 ], [ 360021.812899999320507, 258479.591499999165535 ], [ 360059.264700002968311, 258437.468299999833107 ], [ 360054.439400002360344, 258435.951099999248981 ], [ 360053.085500001907349, 258434.147700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904010700", "MAP": "D9-7682-T005", "PARCEL_NAM": "1-21-1", "ACRE": null, "LONGITUDE": -64.91942881, "LATITUDE": 18.35547551, "OBJECTID_1": 4927, "PARCEL_NO_": "102904010700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1I REM GREAT NORTHSIDE QTR", "Name": "DAVIS, JOSEPH & ELIZABETH", "Address": "PO Box 1446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041446, "Country": "United States", "Land_Value": 35100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.2548477707, "SHAPE_Area": 22.2117722793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360004.470799997448921, 258452.062199998646975 ], [ 360003.354400001466274, 258444.109299998730421 ], [ 360002.709499999880791, 258450.304299999028444 ], [ 360002.181900002062321, 258453.008099999278784 ], [ 360001.233599998056889, 258457.86710000038147 ], [ 360005.041199997067451, 258456.125300001353025 ], [ 360004.470799997448921, 258452.062199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9325336, "LATITUDE": 18.35004685, "OBJECTID_1": 4794, "PARCEL_NO_": "102903021300", "Tax_Legal_": "23-16 REM & 23-18-1 MAFOLIE NO.8F GREAT NORTHSIDE QTR", "Name": "AUSTIN, JEREMY ROBERT", "Address": "PO Box 307271", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120200, "Improved_V": 363800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.35623256599999, "SHAPE_Area": 3338.80161589 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.78830000013113, 257807.084100000560284 ], [ 358622.754699997603893, 257813.814599998295307 ], [ 358621.233199998736382, 257817.103199999779463 ], [ 358620.374600000679493, 257820.562399998307228 ], [ 358619.862899996340275, 257822.208700001239777 ], [ 358613.542400002479553, 257823.477299999445677 ], [ 358612.870700001716614, 257817.33219999819994 ], [ 358578.249600000679493, 257836.18470000103116 ], [ 358576.629699997603893, 257837.015900000929832 ], [ 358574.160499997437, 257842.906300000846386 ], [ 358632.729999996721745, 257877.582800000905991 ], [ 358639.26860000193119, 257867.292700000107288 ], [ 358647.412600003182888, 257857.860199999064207 ], [ 358653.926100000739098, 257850.525199998170137 ], [ 358661.229599997401237, 257845.096500001847744 ], [ 358649.42620000243187, 257810.802799999713898 ], [ 358631.847499996423721, 257807.096599999815226 ], [ 358631.78830000013113, 257807.084100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021400", "MAP": "D9-8417-T010", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93219905, "LATITUDE": 18.34949294, "OBJECTID_1": 4795, "PARCEL_NO_": "102903021400", "Tax_Legal_": "23-17,23-16-1,&23-18 MAFOLIE NO.8F GREAT NORTHSIDE QTR", "Name": "BAA, JULIEN and JASMINE TURNER", "Address": "2339 S Holt Ave", "City": "Los Angeles", "State": "California", "Zip": 90034, "Country": "United States", "Land_Value": 144900, "Improved_V": 294600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.25429299000001, "SHAPE_Area": 3315.4555991100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.681900002062321, 257806.985300000756979 ], [ 358631.803900003433228, 257807.067299999296665 ], [ 358631.859499998390675, 257807.065999999642372 ], [ 358631.858000002801418, 257807.070000000298023 ], [ 358657.325800001621246, 257807.199799999594688 ], [ 358658.465400002896786, 257806.679999999701977 ], [ 358715.806400001049042, 257780.526399999856949 ], [ 358640.320500001311302, 257743.811599999666214 ], [ 358631.244300000369549, 257768.013099998235703 ], [ 358625.553300000727177, 257773.454900000244379 ], [ 358618.276799999177456, 257775.717399999499321 ], [ 358631.681900002062321, 257806.985300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020500", "MAP": null, "PARCEL_NAM": "16", "ACRE": null, "LONGITUDE": -64.93256159000001, "LATITUDE": 18.35199991, "OBJECTID_1": 4786, "PARCEL_NO_": "102903020500", "Tax_Legal_": "ELLIZABETH 16 GR NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.483536415, "SHAPE_Area": 610.66307802200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358610.330600000917912, 258074.569299999624491 ], [ 358610.688199996948242, 258084.849700000137091 ], [ 358634.51129999756813, 258047.105500001460314 ], [ 358636.478399999439716, 258043.836399998515844 ], [ 358624.06700000166893, 258042.587000001221895 ], [ 358607.528499998152256, 258042.962200000882149 ], [ 358610.330600000917912, 258074.569299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93240388, "LATITUDE": 18.35212228, "OBJECTID_1": 4787, "PARCEL_NO_": "102903020600", "Tax_Legal_": "ELIZABETH GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 182100, "Improved_V": 166300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.42024463199999, "SHAPE_Area": 1324.67231653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358610.688199996948242, 258084.849700000137091 ], [ 358630.201700001955032, 258099.888000000268221 ], [ 358660.241300001740456, 258055.759799998253584 ], [ 358646.611299999058247, 258046.571199998259544 ], [ 358637.76349999755621, 258043.965700000524521 ], [ 358636.478399999439716, 258043.836399998515844 ], [ 358634.51129999756813, 258047.105500001460314 ], [ 358610.688199996948242, 258084.849700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020700", "MAP": "G9-23-T51", "PARCEL_NAM": "24", "ACRE": ".655", "LONGITUDE": -64.93285597000001, "LATITUDE": 18.35213129, "OBJECTID_1": 4788, "PARCEL_NO_": "102903020700", "Tax_Legal_": "ELIZABETH 24 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 126300, "Improved_V": 170300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.689763247, "SHAPE_Area": 2928.8120622000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358560.692699998617172, 258098.641399998217821 ], [ 358630.201700001955032, 258099.888000000268221 ], [ 358610.688199996948242, 258084.849700000137091 ], [ 358607.528499998152256, 258042.962200000882149 ], [ 358592.946400001645088, 258041.71059999987483 ], [ 358584.943599998950958, 258039.181000001728535 ], [ 358575.665200002491474, 258035.524099998176098 ], [ 358566.095200002193451, 258032.402300000190735 ], [ 358560.692699998617172, 258098.641399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903011900", "MAP": "D9-7433-T004", "PARCEL_NAM": "13", "ACRE": ".958", "LONGITUDE": -64.92971789000001, "LATITUDE": 18.35105039, "OBJECTID_1": 4735, "PARCEL_NO_": "102903011900", "Tax_Legal_": "MAFOLIE 13 GR NORTHSIDE", "Name": "SHERIDAN, JOHN C & CHARLOTE", "Address": "839 Savannah Hwy", "City": "Charleston", "State": "South Carolina", "Zip": 29407, "Country": "United States", "Land_Value": 178100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.54147849600002, "SHAPE_Area": 3787.85974605 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358906.5675999969244, 258001.358300000429153 ], [ 358906.178199999034405, 258005.145100001245737 ], [ 358885.742499999701977, 258015.48030000180006 ], [ 358888.058600001037121, 258022.925400000065565 ], [ 358892.975400000810623, 258020.157200001180172 ], [ 358903.720799997448921, 258015.226399999111891 ], [ 358916.87610000371933, 258011.561700001358986 ], [ 358938.854299999773502, 258006.95549999922514 ], [ 358936.893899999558926, 257953.110599998384714 ], [ 358934.181100003421307, 257892.926699999719858 ], [ 358901.908900000154972, 257894.984600000083447 ], [ 358904.389600001275539, 257955.144000001251698 ], [ 358908.25620000064373, 257954.834699999541044 ], [ 358911.060699999332428, 257957.668299999088049 ], [ 358906.5675999969244, 258001.358300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021400", "MAP": "D9-8417-T010", "PARCEL_NAM": "23-18 REM", "ACRE": ".009", "LONGITUDE": -64.93231896, "LATITUDE": 18.34975349, "OBJECTID_1": 4795, "PARCEL_NO_": "102903021400", "Tax_Legal_": "23-17,23-16-1,&23-18 MAFOLIE NO.8F GREAT NORTHSIDE QTR", "Name": "BAA, JULIEN and JASMINE TURNER", "Address": "2339 S Holt Ave", "City": "Los Angeles", "State": "California", "Zip": 90034, "Country": "United States", "Land_Value": 144900, "Improved_V": 294600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.144348308300003, "SHAPE_Area": 46.646180004199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358657.325800001621246, 257807.199799999594688 ], [ 358631.858000002801418, 257807.070000000298023 ], [ 358631.847499996423721, 257807.096599999815226 ], [ 358649.42620000243187, 257810.802799999713898 ], [ 358657.325800001621246, 257807.199799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021400", "MAP": "D9-8417-T010", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93245556, "LATITUDE": 18.34974256, "OBJECTID_1": 4795, "PARCEL_NO_": "102903021400", "Tax_Legal_": "23-17,23-16-1,&23-18 MAFOLIE NO.8F GREAT NORTHSIDE QTR", "Name": "BAA, JULIEN and JASMINE TURNER", "Address": "2339 S Holt Ave", "City": "Los Angeles", "State": "California", "Zip": 90034, "Country": "United States", "Land_Value": 144900, "Improved_V": 294600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.30571699069000002, "SHAPE_Area": 0.00205831011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.701700001955032, 257807.031500000506639 ], [ 358631.800999999046326, 257807.067299999296665 ], [ 358631.803900003433228, 257807.067299999296665 ], [ 358631.681900002062321, 257806.985300000756979 ], [ 358631.701700001955032, 257807.031500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021400", "MAP": "D9-8417-T010", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93245546, "LATITUDE": 18.3497428, "OBJECTID_1": 4795, "PARCEL_NO_": "102903021400", "Tax_Legal_": "23-17,23-16-1,&23-18 MAFOLIE NO.8F GREAT NORTHSIDE QTR", "Name": "BAA, JULIEN and JASMINE TURNER", "Address": "2339 S Holt Ave", "City": "Los Angeles", "State": "California", "Zip": 90034, "Country": "United States", "Land_Value": 144900, "Improved_V": 294600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.22980552099000001, "SHAPE_Area": 0.00158678994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.800999999046326, 257807.067299999296665 ], [ 358631.701700001955032, 257807.031500000506639 ], [ 358631.7179000005126, 257807.069299999624491 ], [ 358631.800999999046326, 257807.067299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021400", "MAP": "D9-8417-T010", "PARCEL_NAM": "23-16-1", "ACRE": ".0009", "LONGITUDE": -64.932579, "LATITUDE": 18.34983738, "OBJECTID_1": 4795, "PARCEL_NO_": "102903021400", "Tax_Legal_": "23-17,23-16-1,&23-18 MAFOLIE NO.8F GREAT NORTHSIDE QTR", "Name": "BAA, JULIEN and JASMINE TURNER", "Address": "2339 S Holt Ave", "City": "Los Angeles", "State": "California", "Zip": 90034, "Country": "United States", "Land_Value": 144900, "Improved_V": 294600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.337388860700003, "SHAPE_Area": 72.665836118100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358612.870700001716614, 257817.33219999819994 ], [ 358613.542400002479553, 257823.477299999445677 ], [ 358619.862899996340275, 257822.208700001239777 ], [ 358620.374600000679493, 257820.562399998307228 ], [ 358621.233199998736382, 257817.103199999779463 ], [ 358622.754699997603893, 257813.814599998295307 ], [ 358631.78830000013113, 257807.084100000560284 ], [ 358631.7179000005126, 257807.069299999624491 ], [ 358616.012999996542931, 257815.621100001037121 ], [ 358612.870700001716614, 257817.33219999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022700", "MAP": "B3-148-T45", "PARCEL_NAM": "1", "ACRE": "32.2", "LONGITUDE": -64.93977782, "LATITUDE": 18.3508037, "OBJECTID_1": 4531, "PARCEL_NO_": "102804022700", "Tax_Legal_": "STAABI #1 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 864700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1625.69102193, "SHAPE_Area": 121142.088238 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357740.943300001323223, 258154.838100001215935 ], [ 357790.189499996602535, 258148.063900001347065 ], [ 357838.570100001990795, 258148.248799998313189 ], [ 357903.076899997889996, 258148.565699998289347 ], [ 357907.829300001263618, 258106.230700001120567 ], [ 357926.368000000715256, 258104.268399998545647 ], [ 357958.859099999070168, 258100.829199999570847 ], [ 357960.047399997711182, 258086.970400001853704 ], [ 357964.830399997532368, 258053.304200001060963 ], [ 357966.729299999773502, 258039.938099998980761 ], [ 357978.919200003147125, 257954.135999999940395 ], [ 358001.13120000064373, 257807.818799998611212 ], [ 358007.99889999628067, 257758.901299998164177 ], [ 358013.147900000214577, 257722.424300000071526 ], [ 358014.002700001001358, 257716.731800001114607 ], [ 358015.719700001180172, 257704.502399999648333 ], [ 358032.447400003671646, 257595.062399998307228 ], [ 357985.934000000357628, 257587.053199999034405 ], [ 357938.450300000607967, 257687.826900001615286 ], [ 357871.197300001978874, 257725.906500000506639 ], [ 357801.668799996376038, 257709.825300000607967 ], [ 357801.545999996364117, 257710.485599998384714 ], [ 357717.45830000191927, 257892.599300000816584 ], [ 357715.784299999475479, 257893.699599999934435 ], [ 357717.363899998366833, 257893.733399998396635 ], [ 357696.244099996984005, 258006.495600000023842 ], [ 357680.188699997961521, 258092.701499998569489 ], [ 357667.511399999260902, 258160.991999998688698 ], [ 357672.33669999986887, 258162.509199999272823 ], [ 357693.322400003671646, 258160.147799998521805 ], [ 357724.800899997353554, 258156.605799999088049 ], [ 357740.943300001323223, 258154.838100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023200", "MAP": "D9-8458-T010", "PARCEL_NAM": "6J", "ACRE": ".457", "LONGITUDE": -64.9384227, "LATITUDE": 18.35224178, "OBJECTID_1": 4536, "PARCEL_NO_": "102804023200", "Tax_Legal_": "6 ESTATE AGNES FANCY GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. , TRUSTE", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 398600, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.52874635299997, "SHAPE_Area": 5773.6311940699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358000.635499998927116, 258031.726599998772144 ], [ 357966.729299999773502, 258039.938099998980761 ], [ 357964.830399997532368, 258053.304200001060963 ], [ 357960.047399997711182, 258086.970400001853704 ], [ 357958.859099999070168, 258100.829199999570847 ], [ 357986.709399998188019, 258129.55689999833703 ], [ 357995.973499998450279, 258123.754299998283386 ], [ 357996.148900002241135, 258123.644400000572205 ], [ 358022.718400001525879, 258107.002700001001358 ], [ 358023.085699997842312, 258106.772599998861551 ], [ 358046.211900003254414, 258092.287599999457598 ], [ 358044.655639821081422, 258088.745518440759042 ], [ 358043.653082307195291, 258085.008786452177446 ], [ 358043.227300003170967, 258081.163400001823902 ], [ 358042.560866601124872, 258071.660698483639862 ], [ 358041.110600002110004, 258062.245700001716614 ], [ 358039.230771627393551, 258058.725302177655976 ], [ 358036.899667233868968, 258055.48602635358111 ], [ 358034.15866043564165, 258052.585364827304147 ], [ 358031.056400001049042, 258050.074799999594688 ], [ 358021.686532211781014, 258045.539583572448464 ], [ 358012.012223765952513, 258041.696360117581207 ], [ 358002.084499999880791, 258038.565400000661612 ], [ 358001.301048236025963, 258036.969556253025075 ], [ 358000.790444392943755, 258035.266677029925631 ], [ 358000.566566652676556, 258033.503046487370739 ], [ 358000.635499998927116, 258031.726599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023000", "MAP": "D9-8458-T010", "PARCEL_NAM": "21B", "ACRE": ".295", "LONGITUDE": -64.93811249, "LATITUDE": 18.35268097, "OBJECTID_1": 4534, "PARCEL_NO_": "102804023000", "Tax_Legal_": "21 ESTATE ELIZABETH No.8i GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. B. TRUST", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 168300, "Improved_V": 1035100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.490058901, "SHAPE_Area": 2927.79893558 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358058.705399997532368, 258116.220800001174212 ], [ 358057.254444957361557, 258111.560521420935402 ], [ 358056.059600003063679, 258106.828099999576807 ], [ 358054.24700976733584, 258102.788871390832355 ], [ 358051.980394605372567, 258098.985805939882994 ], [ 358049.290041618573014, 258095.46972119648126 ], [ 358046.211900003254414, 258092.287599999457598 ], [ 358023.085699997842312, 258106.772599998861551 ], [ 358022.718400001525879, 258107.002700001001358 ], [ 357996.148900002241135, 258123.644400000572205 ], [ 357996.297899998724461, 258123.805399999022484 ], [ 357995.973499998450279, 258123.754299998283386 ], [ 357986.709399998188019, 258129.55689999833703 ], [ 358014.253700003027916, 258157.969000000506639 ], [ 358024.442900002002716, 258154.214699998497963 ], [ 358032.880599997937679, 258151.105700001120567 ], [ 358053.654799997806549, 258141.525199998170137 ], [ 358069.310300000011921, 258134.305300001055002 ], [ 358071.526094997476321, 258133.047184707655106 ], [ 358073.519441429816652, 258131.459994875680422 ], [ 358075.241899996995926, 258129.582299999892712 ], [ 358067.092987236508634, 258122.753855485963868 ], [ 358058.705399997532368, 258116.220800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020400", "MAP": "A9-579-T002", "PARCEL_NAM": "REM of CANAAN & SCHERPENJEWEL", "ACRE": "50.24", "LONGITUDE": -64.92290466, "LATITUDE": 18.35696051, "OBJECTID_1": 4707, "PARCEL_NO_": "102902020400", "Tax_Legal_": "CANAAN&SHERPENJEWEL REMAINDER No.7B GREAT NORTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY INC.", "Address": "3052 Estate Little Princess", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 2226400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2570.3921094399998, "SHAPE_Area": 139229.48421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359515.755900003015995, 258026.171999998390675 ], [ 359570.493500001728535, 258967.11879999935627 ], [ 359613.155000001192093, 259028.882399998605251 ], [ 359645.009999997913837, 259044.989900000393391 ], [ 359725.437899999320507, 259042.519200000911951 ], [ 359726.789300002157688, 259040.060600001364946 ], [ 359729.951899997889996, 259042.300299998372793 ], [ 359853.526299998164177, 259018.824799999594688 ], [ 359892.362400002777576, 259003.521699998527765 ], [ 359939.29389999806881, 258984.485199999064207 ], [ 359811.528999999165535, 258931.932700000703335 ], [ 359682.476899996399879, 258841.161699999123812 ], [ 359671.969999998807907, 258654.680100001394749 ], [ 359663.144799999892712, 258554.760600000619888 ], [ 359632.51969999819994, 258363.470300000160933 ], [ 359667.147100001573563, 258113.9695999994874 ], [ 359638.131099998950958, 258083.395100001245737 ], [ 359626.89130000025034, 258077.60359999909997 ], [ 359601.123499996960163, 258073.381900001317263 ], [ 359582.637599997222424, 258066.264499999582767 ], [ 359575.418600000441074, 258061.77250000089407 ], [ 359568.212099999189377, 258055.80290000140667 ], [ 359561.821000002324581, 258048.784499999135733 ], [ 359556.248700000345707, 258040.295099999755621 ], [ 359549.047600001096725, 258033.692299999296665 ], [ 359538.612300001084805, 258028.118400000035763 ], [ 359530.568999998271465, 258025.730599999427795 ], [ 359520.090499997138977, 258025.222600001841784 ], [ 359515.755900003015995, 258026.171999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040500", "MAP": "A9-579-T002", "PARCEL_NAM": "REM of ZUFRIEDENHEIT", "ACRE": "75.200", "LONGITUDE": -64.92705975, "LATITUDE": 18.35473425, "OBJECTID_1": 4911, "PARCEL_NO_": "102903040500", "Tax_Legal_": "REMAINDER&11 ESTATE ZUFRIEDENHET No.5 GREAT NORTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4489200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2677.31264689, "SHAPE_Area": 317526.21607000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358900.774899996817112, 258596.017099998891354 ], [ 359158.621899999678135, 258544.830600000917912 ], [ 359311.485299997031689, 258709.176899999380112 ], [ 359431.341700002551079, 258678.220600001513958 ], [ 359498.721500001847744, 258684.590199999511242 ], [ 359473.570200003683567, 258040.620999999344349 ], [ 359434.331900000572205, 258058.506799999624491 ], [ 359423.018299996852875, 258061.369500000029802 ], [ 359414.958800002932549, 258060.881400000303984 ], [ 359407.719999998807907, 258058.711199998855591 ], [ 359400.500900000333786, 258054.219099998474121 ], [ 359387.689800001680851, 258043.559599999338388 ], [ 359378.858199998736382, 258039.054400000721216 ], [ 359370.003100000321865, 258037.293099999427795 ], [ 359345.822700001299381, 258036.039799999445677 ], [ 359330.272600002586842, 258062.932500001043081 ], [ 359324.570900000631809, 258069.640799999237061 ], [ 359311.571000002324581, 258081.144499998539686 ], [ 359279.962999999523163, 258099.884300000965595 ], [ 359240.281000003218651, 258119.824499998241663 ], [ 359235.414399996399879, 258123.162099998444319 ], [ 359228.098200000822544, 258130.068300001323223 ], [ 359219.119099996984005, 258142.871599998325109 ], [ 359210.86540000140667, 258165.179900001734495 ], [ 359208.406900003552437, 258169.803899999707937 ], [ 359201.898800000548363, 258176.50560000166297 ], [ 359195.424900002777576, 258179.196800000965595 ], [ 359190.587099999189377, 258179.157200001180172 ], [ 359184.960900001227856, 258177.000199999660254 ], [ 359181.760799996554852, 258174.018699999898672 ], [ 359180.178700000047684, 258170.417199999094009 ], [ 359177.776000000536442, 258168.497699998319149 ], [ 359125.534699998795986, 258148.227299999445677 ], [ 359119.903099998831749, 258146.703600000590086 ], [ 359112.655299998819828, 258145.588799998164177 ], [ 359104.592200003564358, 258145.522799998521805 ], [ 359055.376500003039837, 258148.708599999547005 ], [ 359039.252099998295307, 258148.365499999374151 ], [ 359021.534800000488758, 258145.687399998307228 ], [ 359001.418300002813339, 258140.667599998414516 ], [ 358939.540899999439716, 258115.674300000071526 ], [ 358940.725500002503395, 258165.924300000071526 ], [ 358918.18469999730587, 258161.517900001257658 ], [ 358890.006899997591972, 258156.221000000834465 ], [ 358884.671999998390675, 258119.869300000369549 ], [ 358871.744099996984005, 258122.929900001734495 ], [ 358870.043300002813339, 258133.259500000625849 ], [ 358864.964500002563, 258161.50450000166893 ], [ 358838.2212999984622, 258177.117600001394749 ], [ 358842.202500000596046, 258183.060899998992682 ], [ 358799.98650000244379, 258216.490299999713898 ], [ 358759.780599996447563, 258244.731199998408556 ], [ 358795.329300001263618, 258289.91270000115037 ], [ 358865.531300000846386, 258378.935499999672174 ], [ 358911.337200000882149, 258492.034400001168251 ], [ 358907.799099996685982, 258528.735700000077486 ], [ 358900.774899996817112, 258596.017099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020300", "MAP": "D9-6978-T001", "PARCEL_NAM": "46 REM", "ACRE": ".46", "LONGITUDE": -64.93197923, "LATITUDE": 18.35246129, "OBJECTID_1": 4784, "PARCEL_NO_": "102903020300", "Tax_Legal_": "46 REMAINDER ESTATE ELIZABETH No.8i GREAT NORTHSIDE QTR.", "Name": "ST P. & . & ROMAN C. CHURCH", "Address": "BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.19162506399999, "SHAPE_Area": 1877.0143798900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358683.568099997937679, 258076.901200000196695 ], [ 358647.929700002074242, 258113.550500001758337 ], [ 358679.699699997901917, 258138.034499999135733 ], [ 358701.655299998819828, 258116.471500001847744 ], [ 358704.988399997353554, 258103.833200000226498 ], [ 358703.422600001096725, 258098.331999998539686 ], [ 358688.251900002360344, 258080.686999998986721 ], [ 358686.64469999819994, 258080.040600001811981 ], [ 358683.568099997937679, 258076.901200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020400", "MAP": "D9-6978-T001", "PARCEL_NAM": "15", "ACRE": ".278", "LONGITUDE": -64.93220016, "LATITUDE": 18.35225407, "OBJECTID_1": 4785, "PARCEL_NO_": "102903020400", "Tax_Legal_": "ELIZABETH GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.38915533900001, "SHAPE_Area": 1409.2090833 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358647.929700002074242, 258113.550500001758337 ], [ 358683.568099997937679, 258076.901200000196695 ], [ 358677.051600001752377, 258070.251800000667572 ], [ 358660.241300001740456, 258055.759799998253584 ], [ 358630.201700001955032, 258099.888000000268221 ], [ 358646.571699999272823, 258112.503899998962879 ], [ 358647.929700002074242, 258113.550500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903021000", "MAP": "D9-5217-T92", "PARCEL_NAM": "42A", "ACRE": ".5001", "LONGITUDE": -64.93227665000001, "LATITUDE": 18.35276566, "OBJECTID_1": 4791, "PARCEL_NO_": "102903021000", "Tax_Legal_": "42A ELIZABETH ESTATE NO 8I GREAT NORTHSIDE QTR", "Name": "OUR LADY OF PERPETUAL HELP ROMAN CATHOLIC CONG INC", "Address": "P.O. BOX 1825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 84500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.34030181899999, "SHAPE_Area": 1948.5498121600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358647.929700002074242, 258113.550500001758337 ], [ 358625.603799998760223, 258115.442099999636412 ], [ 358637.260600000619888, 258137.671900000423193 ], [ 358620.790299996733665, 258143.251899998635054 ], [ 358640.667599998414516, 258176.345100000500679 ], [ 358657.929999999701977, 258160.815999999642372 ], [ 358679.699699997901917, 258138.034499999135733 ], [ 358647.929700002074242, 258113.550500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020200", "MAP": "D9-5217-T92", "PARCEL_NAM": "42 REM", "ACRE": ".5001", "LONGITUDE": -64.93263669, "LATITUDE": 18.35250311, "OBJECTID_1": 4783, "PARCEL_NO_": "102903020200", "Tax_Legal_": "ELIZABETH ESTATE 42 REMAINDER No.8 GREAT NORTHSIDE QTR", "Name": "ROEBUCK, V. C. D. & RIVERA, JESUS E", "Address": "PO Box 304983", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.13158328600002, "SHAPE_Area": 1462.87665208 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358625.603799998760223, 258115.442099999636412 ], [ 358647.929700002074242, 258113.550500001758337 ], [ 358646.571699999272823, 258112.503899998962879 ], [ 358639.397900000214577, 258106.975299999117851 ], [ 358630.201700001955032, 258099.888000000268221 ], [ 358560.692699998617172, 258098.641399998217821 ], [ 358622.487400002777576, 258133.344300001859665 ], [ 358627.788400001823902, 258127.864700000733137 ], [ 358631.977899998426437, 258133.306800000369549 ], [ 358620.790299996733665, 258143.251899998635054 ], [ 358637.260600000619888, 258137.671900000423193 ], [ 358625.603799998760223, 258115.442099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020300", "MAP": "D9-6978-T001", "PARCEL_NAM": "46A", "ACRE": ".05", "LONGITUDE": -64.93178519, "LATITUDE": 18.35240634, "OBJECTID_1": 4784, "PARCEL_NO_": "102903020300", "Tax_Legal_": "46 REMAINDER ESTATE ELIZABETH No.8i GREAT NORTHSIDE QTR.", "Name": "ST P. & . & ROMAN C. CHURCH", "Address": "BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.97901785100001, "SHAPE_Area": 251.635574709 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358683.568099997937679, 258076.901200000196695 ], [ 358688.251900002360344, 258080.686999998986721 ], [ 358703.422600001096725, 258098.331999998539686 ], [ 358704.988399997353554, 258103.833200000226498 ], [ 358701.655299998819828, 258116.471500001847744 ], [ 358679.699699997901917, 258138.034499999135733 ], [ 358680.488899998366833, 258139.363699998706579 ], [ 358714.499200001358986, 258105.126899998635054 ], [ 358686.248499996960163, 258074.462000001221895 ], [ 358683.568099997937679, 258076.901200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804031900", "MAP": "D9-7626-T005", "PARCEL_NAM": "33-5A", "ACRE": ".55", "LONGITUDE": -64.93379133000001, "LATITUDE": 18.35266848, "OBJECTID_1": 4645, "PARCEL_NO_": "102804031900", "Tax_Legal_": "ELIZABETH 33-5 GT. NORTHSIDE", "Name": "VINCENT RICHARDS FAMILY TRUST", "Address": "PO Box 502936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 163900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.988045344, "SHAPE_Area": 1720.83814555 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358534.504600003361702, 258120.5489999987185 ], [ 358465.596500001847744, 258112.722300000488758 ], [ 358462.104999996721745, 258123.376899998635054 ], [ 358452.989200003445148, 258152.222100000828505 ], [ 358492.602799996733665, 258140.30290000140667 ], [ 358498.254199996590614, 258139.504700001329184 ], [ 358511.963299997150898, 258139.405799999833107 ], [ 358534.504600003361702, 258120.5489999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804024900", "MAP": "D9-8033-T007", "PARCEL_NAM": "10-A", "ACRE": ".577", "LONGITUDE": -64.93394325, "LATITUDE": 18.35036016, "OBJECTID_1": 4553, "PARCEL_NO_": "102804024900", "Tax_Legal_": "10-A ELIZABETH NO.8 GREAT NORTHSIDE QTR", "Name": "LORETTE A SIBILLY REVOCABLE TRUST", "Address": "598 Mcgill Pl", "City": "ATLANTA", "State": "Georgia", "Zip": 30312, "Country": "United States", "Land_Value": 105900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.83120293100001, "SHAPE_Area": 2028.6594364699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358492.805399999022484, 257833.468699999153614 ], [ 358492.136900000274181, 257833.235199999064207 ], [ 358446.517099998891354, 257873.354800000786781 ], [ 358457.446900002658367, 257894.28489999845624 ], [ 358464.045699998736382, 257906.921399999409914 ], [ 358470.297899998724461, 257918.894299998879433 ], [ 358485.909199997782707, 257884.82490000128746 ], [ 358499.047499999403954, 257857.06810000166297 ], [ 358494.245600000023842, 257852.80689999833703 ], [ 358492.805399999022484, 257833.468699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027200", "MAP": "D9-2395-T83", "PARCEL_NAM": "30B", "ACRE": ".500", "LONGITUDE": -64.93352877, "LATITUDE": 18.35026396, "OBJECTID_1": 4577, "PARCEL_NO_": "102804027200", "Tax_Legal_": "ELIZABETH 30A-BCDEFGHJK GR NORTHSIDE QTR", "Name": "M. R. M. ASSOCIATES", "Address": "888 Brickell Key Dr", "City": "Miami", "State": "Florida", "Zip": 33131, "Country": "United States", "Land_Value": 180100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.13454407500001, "SHAPE_Area": 2243.6799889899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358487.375399999320507, 257881.727200001478195 ], [ 358529.460400000214577, 257890.682300001382828 ], [ 358533.695600003004074, 257884.072000000625849 ], [ 358543.577200002968311, 257870.739100001752377 ], [ 358555.288199998438358, 257855.295099999755621 ], [ 358542.900399997830391, 257850.967799998819828 ], [ 358531.32769999653101, 257846.925299998372793 ], [ 358518.54900000244379, 257842.461399998515844 ], [ 358494.727099999785423, 257834.140000000596046 ], [ 358492.805399999022484, 257833.468699999153614 ], [ 358494.245600000023842, 257852.80689999833703 ], [ 358499.047499999403954, 257857.06810000166297 ], [ 358487.375399999320507, 257881.727200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804025100", "MAP": "D9-954-T71", "PARCEL_NAM": "34", "ACRE": null, "LONGITUDE": -64.93382162, "LATITUDE": 18.35159374, "OBJECTID_1": 4555, "PARCEL_NO_": "102804025100", "Tax_Legal_": "LERKENLUND 4ACA GREAT NORTHSIDE QTR", "Name": "BRIN FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61900, "Improved_V": 644100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.90603039000001, "SHAPE_Area": 3751.2828382399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358506.996299996972084, 257965.212999999523163 ], [ 358498.132200002670288, 257964.507199998944998 ], [ 358461.830200001597404, 257966.320999998599291 ], [ 358470.685999996960163, 258062.652100000530481 ], [ 358473.896799996495247, 258064.367199998348951 ], [ 358478.73650000244379, 258064.195700000971556 ], [ 358492.497800000011921, 258057.975499998778105 ], [ 358494.932899996638298, 258056.095600001513958 ], [ 358500.614799998700619, 258051.709100000560284 ], [ 358505.503100000321865, 258045.838500000536442 ], [ 358507.997500002384186, 258036.993000000715256 ], [ 358508.866800002753735, 258029.611900001764297 ], [ 358505.832099996507168, 258007.211100000888109 ], [ 358504.424500003457069, 257983.134899999946356 ], [ 358506.996299996972084, 257965.212999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804034700", "MAP": "D9-8266-T009", "PARCEL_NAM": "44-D", "ACRE": ".589", "LONGITUDE": -64.93490073, "LATITUDE": 18.35112785, "OBJECTID_1": 4649, "PARCEL_NO_": "102804034700", "Tax_Legal_": "34,44A,44D ELIZABETH 8i GREAT NORTHSIDE QTR", "Name": "LRS VI ESTATE LLC", "Address": "PO Box 1101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 186400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.259448814, "SHAPE_Area": 2313.56067742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358407.563199996948242, 257943.404800001531839 ], [ 358354.870600000023842, 257934.489500001072884 ], [ 358350.789300002157688, 257938.392200000584126 ], [ 358335.152800001204014, 257975.416700001806021 ], [ 358335.127700001001358, 257978.371800001710653 ], [ 358337.535800002515316, 257979.658100001513958 ], [ 358360.164700001478195, 257973.721599999815226 ], [ 358373.060300000011921, 257974.460400000214577 ], [ 358383.513599999248981, 257977.92339999973774 ], [ 358393.932700000703335, 257985.396999999880791 ], [ 358407.563199996948242, 257943.404800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027200", "MAP": "D9-2395-T83", "PARCEL_NAM": "30", "ACRE": ".500", "LONGITUDE": -64.93344654000001, "LATITUDE": 18.34975475, "OBJECTID_1": 4577, "PARCEL_NO_": "102804027200", "Tax_Legal_": "ELIZABETH 30A-BCDEFGHJK GR NORTHSIDE QTR", "Name": "M. R. M. ASSOCIATES", "Address": "888 Brickell Key Dr", "City": "Miami", "State": "Florida", "Zip": 33131, "Country": "United States", "Land_Value": 180100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.47311391299999, "SHAPE_Area": 516.02468768400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358473.974600002169609, 257780.3293999992311 ], [ 358473.292400002479553, 257783.663600001484156 ], [ 358532.927500002086163, 257798.703200001269579 ], [ 358541.757399998605251, 257803.048000000417233 ], [ 358544.646700002253056, 257811.082600001245737 ], [ 358542.357699997723103, 257828.153799999505281 ], [ 358536.912000000476837, 257848.875900000333786 ], [ 358541.611699998378754, 257850.517700001597404 ], [ 358549.431800000369549, 257817.2635000012815 ], [ 358550.294600002467632, 257810.327799998223782 ], [ 358548.477600000798702, 257802.568999998271465 ], [ 358545.548900000751019, 257799.340700000524521 ], [ 358526.255400002002716, 257793.30799999833107 ], [ 358473.974600002169609, 257780.3293999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027200", "MAP": "D9-2395-T83", "PARCEL_NAM": "30 K", "ACRE": ".500", "LONGITUDE": -64.93364703, "LATITUDE": 18.34982665, "OBJECTID_1": 4577, "PARCEL_NO_": "102804027200", "Tax_Legal_": "ELIZABETH 30A-BCDEFGHJK GR NORTHSIDE QTR", "Name": "M. R. M. ASSOCIATES", "Address": "888 Brickell Key Dr", "City": "Miami", "State": "Florida", "Zip": 33131, "Country": "United States", "Land_Value": 180100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.99351681300001, "SHAPE_Area": 3383.3398598200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358473.292400002479553, 257783.663600001484156 ], [ 358464.346699997782707, 257827.385099999606609 ], [ 358464.626000002026558, 257827.444299999624491 ], [ 358492.136900000274181, 257833.235199999064207 ], [ 358492.79839999973774, 257833.374400001019239 ], [ 358494.727099999785423, 257834.140000000596046 ], [ 358518.54900000244379, 257842.461399998515844 ], [ 358531.32769999653101, 257846.925299998372793 ], [ 358536.912000000476837, 257848.875900000333786 ], [ 358542.357699997723103, 257828.153799999505281 ], [ 358544.646700002253056, 257811.082600001245737 ], [ 358541.757399998605251, 257803.048000000417233 ], [ 358532.927500002086163, 257798.703200001269579 ], [ 358473.292400002479553, 257783.663600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027200", "MAP": "D9-2395-T83", "PARCEL_NAM": "30", "ACRE": ".500", "LONGITUDE": -64.93405084, "LATITUDE": 18.34950848, "OBJECTID_1": 4577, "PARCEL_NO_": "102804027200", "Tax_Legal_": "ELIZABETH 30A-BCDEFGHJK GR NORTHSIDE QTR", "Name": "M. R. M. ASSOCIATES", "Address": "888 Brickell Key Dr", "City": "Miami", "State": "Florida", "Zip": 33131, "Country": "United States", "Land_Value": 180100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.671089198200001, "SHAPE_Area": 85.545830077100007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358455.325400002300739, 257775.211800001561642 ], [ 358453.787100002169609, 257779.789000000804663 ], [ 358465.622900001704693, 257783.198300000280142 ], [ 358466.171099998056889, 257781.86769999936223 ], [ 358473.292400002479553, 257783.663600001484156 ], [ 358473.974600002169609, 257780.3293999992311 ], [ 358455.325400002300739, 257775.211800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93441446, "LATITUDE": 18.34940441, "OBJECTID_1": 4563, "PARCEL_NO_": "102804025900", "Tax_Legal_": "AGNES FANCY 3D-1&3U GREAT NORTHSIDE QTR", "Name": "QUESTEL, YVONNE & EDWARD J. ARMSTRONG", "Address": "PO Box 9190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.01778156399999, "SHAPE_Area": 573.78696232899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358414.487800002098083, 257791.146600000560284 ], [ 358414.396600000560284, 257791.713199999183416 ], [ 358414.636799998581409, 257791.555399999022484 ], [ 358437.105400003492832, 257776.788600001484156 ], [ 358427.410899996757507, 257747.135299999266863 ], [ 358423.479999996721745, 257735.281899999827147 ], [ 358414.487800002098083, 257791.146600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804024800", "MAP": "F9-2733-T70", "PARCEL_NAM": "28", "ACRE": null, "LONGITUDE": -64.93443896, "LATITUDE": 18.35014242, "OBJECTID_1": 4552, "PARCEL_NO_": "102804024800", "Tax_Legal_": "28 ELIZABETH GREAT NORTHSIDE QTR", "Name": "MOOREHEAD, JOANNE & JENNIFER H.", "Address": "PO BOX 9760", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 116100, "Improved_V": 504400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.21110633400002, "SHAPE_Area": 3243.6311581 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358457.446900002658367, 257894.28489999845624 ], [ 358446.517099998891354, 257873.354800000786781 ], [ 358426.946400001645088, 257823.5625 ], [ 358423.170000001788139, 257813.871700000017881 ], [ 358415.138700000941753, 257792.932599999010563 ], [ 358414.636799998581409, 257791.555399999022484 ], [ 358414.396600000560284, 257791.713199999183416 ], [ 358407.746699996292591, 257796.083599999547005 ], [ 358401.123800002038479, 257800.436299998313189 ], [ 358393.053000003099442, 257804.69370000064373 ], [ 358385.73870000243187, 257811.388799998909235 ], [ 358394.924599997699261, 257827.329300001263618 ], [ 358423.146999999880791, 257885.065400000661612 ], [ 358425.759099997580051, 257894.326499998569489 ], [ 358431.599600002169609, 257909.540399998426437 ], [ 358457.446900002658367, 257894.28489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027200", "MAP": "D9-2395-T83", "PARCEL_NAM": "30 D", "ACRE": ".500", "LONGITUDE": -64.93421961, "LATITUDE": 18.34969486, "OBJECTID_1": 4577, "PARCEL_NO_": "102804027200", "Tax_Legal_": "ELIZABETH 30A-BCDEFGHJK GR NORTHSIDE QTR", "Name": "M. R. M. ASSOCIATES", "Address": "888 Brickell Key Dr", "City": "Miami", "State": "Florida", "Zip": 33131, "Country": "United States", "Land_Value": 180100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.115626445, "SHAPE_Area": 2183.78952721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358464.346699997782707, 257827.385099999606609 ], [ 358473.292400002479553, 257783.663600001484156 ], [ 358466.171099998056889, 257781.86769999936223 ], [ 358465.622900001704693, 257783.198300000280142 ], [ 358453.787100002169609, 257779.789000000804663 ], [ 358455.325400002300739, 257775.211800001561642 ], [ 358449.967699997127056, 257773.741599999368191 ], [ 358444.236400000751019, 257772.10190000012517 ], [ 358437.105400003492832, 257776.788600001484156 ], [ 358414.636799998581409, 257791.555399999022484 ], [ 358415.138700000941753, 257792.932599999010563 ], [ 358423.170000001788139, 257813.871700000017881 ], [ 358426.946400001645088, 257823.5625 ], [ 358435.649099998176098, 257821.296500001102686 ], [ 358464.346699997782707, 257827.385099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027200", "MAP": "D9-2395-T83", "PARCEL_NAM": "30 H", "ACRE": ".500", "LONGITUDE": -64.93313158, "LATITUDE": 18.34934357, "OBJECTID_1": 4577, "PARCEL_NO_": "102804027200", "Tax_Legal_": "ELIZABETH 30A-BCDEFGHJK GR NORTHSIDE QTR", "Name": "M. R. M. ASSOCIATES", "Address": "888 Brickell Key Dr", "City": "Miami", "State": "Florida", "Zip": 33131, "Country": "United States", "Land_Value": 180100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.37368865799999, "SHAPE_Area": 1871.02089417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358523.612000003457069, 257722.189899999648333 ], [ 358565.822899997234344, 257797.024399999529123 ], [ 358585.195100001990795, 257791.39130000025034 ], [ 358585.524400003254414, 257790.008000001311302 ], [ 358585.249499998986721, 257771.26799999922514 ], [ 358577.869199998676777, 257756.941300000995398 ], [ 358565.756999999284744, 257744.918000001460314 ], [ 358548.064999997615814, 257734.126600001007318 ], [ 358523.612000003457069, 257722.189899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027200", "MAP": "D9-2395-T83", "PARCEL_NAM": "30 G", "ACRE": ".500", "LONGITUDE": -64.93311276, "LATITUDE": 18.34988279, "OBJECTID_1": 4577, "PARCEL_NO_": "102804027200", "Tax_Legal_": "ELIZABETH 30A-BCDEFGHJK GR NORTHSIDE QTR", "Name": "M. R. M. ASSOCIATES", "Address": "888 Brickell Key Dr", "City": "Miami", "State": "Florida", "Zip": 33131, "Country": "United States", "Land_Value": 180100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.76215188099999, "SHAPE_Area": 1543.08441808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358585.195100001990795, 257791.39130000025034 ], [ 358548.118000000715256, 257802.172600001096725 ], [ 358548.477600000798702, 257802.568999998271465 ], [ 358550.294600002467632, 257810.327799998223782 ], [ 358549.431800000369549, 257817.2635000012815 ], [ 358541.611699998378754, 257850.517700001597404 ], [ 358542.900399997830391, 257850.967799998819828 ], [ 358555.288199998438358, 257855.295099999755621 ], [ 358573.173000000417233, 257833.344099998474121 ], [ 358579.75620000064373, 257814.234499998390675 ], [ 358585.195100001990795, 257791.39130000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804026000", "MAP": "F9-2947-T72", "PARCEL_NAM": "3E", "ACRE": ".50", "LONGITUDE": -64.93390544, "LATITUDE": 18.34898151, "OBJECTID_1": 4564, "PARCEL_NO_": "102804026000", "Tax_Legal_": "AGNES FANCY 3E GREAT NORTHSIDE QTR", "Name": "KRYSALKA, NICHOLAS", "Address": "723 Westmount Dr", "City": "West Hollywood", "State": "California", "Zip": 90069, "Country": "United States", "Land_Value": 163400, "Improved_V": 257000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.92254872399999, "SHAPE_Area": 2121.3185327599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358523.612000003457069, 257722.189899999648333 ], [ 358517.9695999994874, 257718.323399998247623 ], [ 358501.965599998831749, 257703.837999999523163 ], [ 358496.171599999070168, 257697.192899998277426 ], [ 358485.850199997425079, 257702.439599998295307 ], [ 358452.669100001454353, 257716.522300001233816 ], [ 358418.724799998104572, 257725.532600000500679 ], [ 358435.610699996352196, 257731.159299999475479 ], [ 358446.88459999859333, 257732.94029999896884 ], [ 358466.227099999785423, 257734.154100000858307 ], [ 358485.539099998772144, 257738.956199999898672 ], [ 358492.801299996674061, 257738.382399998605251 ], [ 358498.291500002145767, 257737.483399998396635 ], [ 358510.844200000166893, 257730.025600001215935 ], [ 358520.458200000226498, 257724.313900001347065 ], [ 358522.39469999819994, 257723.163400001823902 ], [ 358523.612000003457069, 257722.189899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027200", "MAP": "D9-2395-T83", "PARCEL_NAM": "30 F", "ACRE": ".500", "LONGITUDE": -64.93344156000001, "LATITUDE": 18.34941661, "OBJECTID_1": 4577, "PARCEL_NO_": "102804027200", "Tax_Legal_": "ELIZABETH 30A-BCDEFGHJK GR NORTHSIDE QTR", "Name": "M. R. M. ASSOCIATES", "Address": "888 Brickell Key Dr", "City": "Miami", "State": "Florida", "Zip": 33131, "Country": "United States", "Land_Value": 180100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.75185439699999, "SHAPE_Area": 2749.7353078000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358565.822899997234344, 257797.024399999529123 ], [ 358523.612000003457069, 257722.189899999648333 ], [ 358491.272399999201298, 257784.623500000685453 ], [ 358526.255400002002716, 257793.30799999833107 ], [ 358545.548900000751019, 257799.340700000524521 ], [ 358548.118000000715256, 257802.172600001096725 ], [ 358565.822899997234344, 257797.024399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027200", "MAP": "D9-2395-T83", "PARCEL_NAM": "30 E", "ACRE": ".500", "LONGITUDE": -64.93383649, "LATITUDE": 18.34932374, "OBJECTID_1": 4577, "PARCEL_NO_": "102804027200", "Tax_Legal_": "ELIZABETH 30A-BCDEFGHJK GR NORTHSIDE QTR", "Name": "M. R. M. ASSOCIATES", "Address": "888 Brickell Key Dr", "City": "Miami", "State": "Florida", "Zip": 33131, "Country": "United States", "Land_Value": 180100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.78760911800001, "SHAPE_Area": 1718.4621832400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358523.612000003457069, 257722.189899999648333 ], [ 358522.39469999819994, 257723.163400001823902 ], [ 358520.458200000226498, 257724.313900001347065 ], [ 358510.844200000166893, 257730.025600001215935 ], [ 358498.291500002145767, 257737.483399998396635 ], [ 358483.127300001680851, 257746.542100001126528 ], [ 358444.236400000751019, 257772.10190000012517 ], [ 358449.967699997127056, 257773.741599999368191 ], [ 358455.325400002300739, 257775.211800001561642 ], [ 358473.974600002169609, 257780.3293999992311 ], [ 358491.272399999201298, 257784.623500000685453 ], [ 358523.612000003457069, 257722.189899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804027200", "MAP": "D9-2395-T83", "PARCEL_NAM": "30A", "ACRE": ".500", "LONGITUDE": -64.93370296000001, "LATITUDE": 18.35073225, "OBJECTID_1": 4577, "PARCEL_NO_": "102804027200", "Tax_Legal_": "ELIZABETH 30A-BCDEFGHJK GR NORTHSIDE QTR", "Name": "M. R. M. ASSOCIATES", "Address": "888 Brickell Key Dr", "City": "Miami", "State": "Florida", "Zip": 33131, "Country": "United States", "Land_Value": 180100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.39398389799999, "SHAPE_Area": 2564.8121976699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358529.460400000214577, 257890.682300001382828 ], [ 358487.375399999320507, 257881.727200001478195 ], [ 358485.909199997782707, 257884.82490000128746 ], [ 358470.297899998724461, 257918.894299998879433 ], [ 358506.996299996972084, 257965.212999999523163 ], [ 358512.094899997115135, 257934.646200001239777 ], [ 358523.658399999141693, 257902.443500000983477 ], [ 358526.780500002205372, 257894.865200001746416 ], [ 358529.460400000214577, 257890.682300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021900", "MAP": "D9-6629-T99", "PARCEL_NAM": "8 REM", "ACRE": ".6297", "LONGITUDE": -64.93680726, "LATITUDE": 18.35311752, "OBJECTID_1": 4523, "PARCEL_NO_": "102804021900", "Tax_Legal_": "8 ESTATE ELIZABETH No.8i GREAT NORTHSIDE QTR.", "Name": "SILVANO, RICHARD & SUSAN", "Address": "4801 Woodway Dr", "City": "Houston", "State": "Texas", "Zip": 77056, "Country": "United States", "Land_Value": 159400, "Improved_V": 874400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.06545796899999, "SHAPE_Area": 3222.5682818199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358210.190200001001358, 258161.844999998807907 ], [ 358193.833200000226498, 258157.7212999984622 ], [ 358199.609099999070168, 258140.721500001847744 ], [ 358139.188000001013279, 258166.752300001680851 ], [ 358122.214100003242493, 258171.468600001186132 ], [ 358140.552100002765656, 258207.256999999284744 ], [ 358170.340499997138977, 258196.045800000429153 ], [ 358183.762800000607967, 258199.145399998873472 ], [ 358198.722300000488758, 258195.5929000005126 ], [ 358210.190200001001358, 258161.844999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021900", "MAP": "D9-6629-T99", "PARCEL_NAM": "8-2", "ACRE": ".1999", "LONGITUDE": -64.93644754, "LATITUDE": 18.35285278, "OBJECTID_1": 4523, "PARCEL_NO_": "102804021900", "Tax_Legal_": "8 ESTATE ELIZABETH No.8i GREAT NORTHSIDE QTR.", "Name": "SILVANO, RICHARD & SUSAN", "Address": "4801 Woodway Dr", "City": "Houston", "State": "Texas", "Zip": 77056, "Country": "United States", "Land_Value": 159400, "Improved_V": 874400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.196765476600007, "SHAPE_Area": 423.37906913400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358199.609099999070168, 258140.721500001847744 ], [ 358193.833200000226498, 258157.7212999984622 ], [ 358210.190200001001358, 258161.844999998807907 ], [ 358218.454800002276897, 258138.270199999213219 ], [ 358220.931199997663498, 258131.535500001162291 ], [ 358199.609099999070168, 258140.721500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042400", "MAP": "G9-1361-T69", "PARCEL_NAM": "8-35", "ACRE": ".16", "LONGITUDE": -64.94337204, "LATITUDE": 18.35697451, "OBJECTID_1": 3892, "PARCEL_NO_": "102801042400", "Tax_Legal_": "LERKENLUND 8-35 &8-36-1 GREAT NORTHSIDE", "Name": "LEONCE, SABRINA HUGUETTE", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.833595608, "SHAPE_Area": 849.20372045900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357453.028399996459484, 258602.765599999576807 ], [ 357459.387900002300739, 258613.550200000405312 ], [ 357496.016800001263618, 258603.518199998885393 ], [ 357476.861299999058247, 258580.352200001478195 ], [ 357451.069799996912479, 258593.776799999177456 ], [ 357453.028399996459484, 258602.765599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042500", "MAP": "G9-1361-T69", "PARCEL_NAM": "8-36", "ACRE": ".187", "LONGITUDE": -64.94365319000001, "LATITUDE": 18.35707889, "OBJECTID_1": 3893, "PARCEL_NO_": "102801042500", "Tax_Legal_": "8-36 & 8-35-1 LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "TURNBULL, TARIQUE H. & JAMILA A.", "Address": "PO Box 10589", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 315100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.988225854099994, "SHAPE_Area": 478.00665484699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357453.028399996459484, 258602.765599999576807 ], [ 357448.512699998915195, 258595.107799999415874 ], [ 357426.643299996852875, 258606.539000000804663 ], [ 357432.95719999819994, 258622.633799999952316 ], [ 357455.604099996387959, 258614.586500000208616 ], [ 357453.028399996459484, 258602.765599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042500", "MAP": "G9-1361-T69", "PARCEL_NAM": "8-36-1", "ACRE": ".004", "LONGITUDE": -64.94350248000001, "LATITUDE": 18.35711783, "OBJECTID_1": 3893, "PARCEL_NO_": "102801042500", "Tax_Legal_": "8-36 & 8-35-1 LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "TURNBULL, TARIQUE H. & JAMILA A.", "Address": "PO Box 10589", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 315100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.758449402099998, "SHAPE_Area": 50.105717376299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357462.525799997150898, 258618.871500000357628 ], [ 357459.387900002300739, 258613.550200000405312 ], [ 357453.028399996459484, 258602.765599999576807 ], [ 357455.604099996387959, 258614.586500000208616 ], [ 357457.974399998784065, 258620.305399999022484 ], [ 357462.525799997150898, 258618.871500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042400", "MAP": "G9-1361-T69", "PARCEL_NAM": "8-35-1", "ACRE": ".004", "LONGITUDE": -64.94358271, "LATITUDE": 18.35693049, "OBJECTID_1": 3892, "PARCEL_NO_": "102801042400", "Tax_Legal_": "LERKENLUND 8-35 &8-36-1 GREAT NORTHSIDE", "Name": "LEONCE, SABRINA HUGUETTE", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.568794795400002, "SHAPE_Area": 41.832526009600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357453.028399996459484, 258602.765599999576807 ], [ 357451.069799996912479, 258593.776799999177456 ], [ 357450.287799999117851, 258587.027499999850988 ], [ 357444.697300001978874, 258590.069299999624491 ], [ 357448.512699998915195, 258595.107799999415874 ], [ 357453.028399996459484, 258602.765599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804034700", "MAP": "D9-6510-T98", "PARCEL_NAM": "44A", "ACRE": null, "LONGITUDE": -64.93387629, "LATITUDE": 18.35110996, "OBJECTID_1": 4649, "PARCEL_NO_": "102804034700", "Tax_Legal_": "34,44A,44D ELIZABETH 8i GREAT NORTHSIDE QTR", "Name": "LRS VI ESTATE LLC", "Address": "PO Box 1101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 186400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.201912596, "SHAPE_Area": 700.41035292399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358491.04730000346899, 257945.083000000566244 ], [ 358456.298799999058247, 257952.692699998617172 ], [ 358461.830200001597404, 257966.320999998599291 ], [ 358498.132200002670288, 257964.507199998944998 ], [ 358506.996299996972084, 257965.212999999523163 ], [ 358491.04730000346899, 257945.083000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804034800", "MAP": "D9-8266-T009", "PARCEL_NAM": "44-B", "ACRE": ".500", "LONGITUDE": -64.93411836, "LATITUDE": 18.35083198, "OBJECTID_1": 4650, "PARCEL_NO_": "102804034800", "Tax_Legal_": "44-B ELIZABETH 8i GREAT NORTHSIDE QTR", "Name": "ZULMA S. DIXON REV. TRUST", "Address": "1571 Oak Park Cv", "City": "Decatur", "State": "Georgia", "Zip": 30033, "Country": "United States", "Land_Value": 69300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.07264461599999, "SHAPE_Area": 1977.39435252 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358431.599600002169609, 257909.540399998426437 ], [ 358423.234099999070168, 257939.498399998992682 ], [ 358449.193499997258186, 257935.186799999326468 ], [ 358456.298799999058247, 257952.692699998617172 ], [ 358491.04730000346899, 257945.083000000566244 ], [ 358470.297899998724461, 257918.894299998879433 ], [ 358464.045699998736382, 257906.921399999409914 ], [ 358457.446900002658367, 257894.28489999845624 ], [ 358431.599600002169609, 257909.540399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804034900", "MAP": "D9-8266-T009", "PARCEL_NAM": "44-C", "ACRE": ".501", "LONGITUDE": -64.93461568, "LATITUDE": 18.35081158, "OBJECTID_1": 4651, "PARCEL_NO_": "102804034900", "Tax_Legal_": "44-C ELIZABETH 8i GREAT NORTHSIDE QTR", "Name": "DENISE M SIBILLY REVOCABLE TRUST", "Address": "PO Box 1101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 69300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.42850368500001, "SHAPE_Area": 1886.5853572599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358423.234099999070168, 257939.498399998992682 ], [ 358431.599600002169609, 257909.540399998426437 ], [ 358425.759099997580051, 257894.326499998569489 ], [ 358425.673100002110004, 257894.2511 ], [ 358425.702500000596046, 257894.357999999076128 ], [ 358356.480200000107288, 257932.950399998575449 ], [ 358354.870600000023842, 257934.489500001072884 ], [ 358407.563199996948242, 257943.404800001531839 ], [ 358408.010499998927116, 257942.026900000870228 ], [ 358423.234099999070168, 257939.498399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702045200", "MAP": "D9-7627-T005", "PARCEL_NAM": "8D-1C", "ACRE": "1.046", "LONGITUDE": -64.95772447, "LATITUDE": 18.35687798, "OBJECTID_1": 3143, "PARCEL_NO_": "102702045200", "Tax_Legal_": "8D-1C ESTATE BONNE RESOLUTION No.5 LITTLE NORTHSIDE QTR.", "Name": "HARRIS, ALTHEA & VADIM", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.10053220999998, "SHAPE_Area": 4744.6159532800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355930.5253000035882, 258548.736699998378754 ], [ 355929.840499997138977, 258550.798700001090765 ], [ 355928.801399998366833, 258562.426399998366833 ], [ 355924.810099996626377, 258629.600499998778105 ], [ 355966.958200000226498, 258615.386399999260902 ], [ 355974.015900000929832, 258613.0337999984622 ], [ 355971.928900003433228, 258606.250999998301268 ], [ 355971.4070999994874, 258600.77250000089407 ], [ 355971.928900003433228, 258597.381099998950958 ], [ 355973.233300000429153, 258593.4679000005126 ], [ 355980.016099996864796, 258580.684799998998642 ], [ 355986.016400001943111, 258573.119300000369549 ], [ 355992.39469999819994, 258563.960700001567602 ], [ 355996.190700002014637, 258558.510099999606609 ], [ 355999.060300000011921, 258553.814300000667572 ], [ 355999.582099996507168, 258548.596700001507998 ], [ 355999.255999997258186, 258547.944499999284744 ], [ 355998.016800001263618, 258545.466099999845028 ], [ 355995.147100001573563, 258543.379099998623133 ], [ 355991.755699999630451, 258542.33559999987483 ], [ 355972.189800001680851, 258540.248599998652935 ], [ 355957.58049999922514, 258538.161499999463558 ], [ 355952.623800002038479, 258537.378899998962879 ], [ 355940.101599998772144, 258528.248100001364946 ], [ 355936.710199996829033, 258523.030499998480082 ], [ 355933.145000003278255, 258513.82039999961853 ], [ 355930.527500003576279, 258543.110800001770258 ], [ 355930.024300001561642, 258548.742400001734495 ], [ 355930.5253000035882, 258548.736699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057500", "MAP": "G9-2955-T79", "PARCEL_NAM": "3E-3", "ACRE": ".69", "LONGITUDE": -64.94946602, "LATITUDE": 18.35792021, "OBJECTID_1": 3983, "PARCEL_NO_": "102801057500", "Tax_Legal_": "ST PETER 3E-3 LT. NORTHSIDE", "Name": "NICHOLSON, CARLOS & ANNETTE", "Address": "P O BOX 4847", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 102900, "Improved_V": 210100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.92482065199999, "SHAPE_Area": 1701.73267659 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356851.05969999730587, 258682.330200001597404 ], [ 356803.4358000010252, 258676.346099998801947 ], [ 356801.852600000798702, 258684.174100000411272 ], [ 356799.309600003063679, 258698.718699999153614 ], [ 356800.888099998235703, 258702.742400001734495 ], [ 356820.959499999880791, 258713.039200000464916 ], [ 356832.185000002384186, 258720.519299998879433 ], [ 356838.590499997138977, 258725.84910000115633 ], [ 356844.247299998998642, 258724.417700000107288 ], [ 356849.345899999141693, 258693.850900001823902 ], [ 356851.05969999730587, 258682.330200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801058600", "MAP": "D9-8618-T011", "PARCEL_NAM": "3E-1-REM", "ACRE": ".593", "LONGITUDE": -64.94903614, "LATITUDE": 18.35774546, "OBJECTID_1": 3994, "PARCEL_NO_": "102801058600", "Tax_Legal_": "3E-1 REM ST PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "LAPLACE, ROBERT", "Address": "7794 Est St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 115700, "Improved_V": 368600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.61006556900003, "SHAPE_Area": 3567.0572524300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356899.295400001108646, 258640.235300000756979 ], [ 356871.222099997103214, 258636.216299999505281 ], [ 356863.809000000357628, 258630.313400000333786 ], [ 356863.567800000309944, 258630.155099999159575 ], [ 356861.963899999856949, 258632.52589999884367 ], [ 356858.754799999296665, 258630.599800001829863 ], [ 356849.345899999141693, 258693.850900001823902 ], [ 356844.247299998998642, 258724.417700000107288 ], [ 356847.479699999094009, 258723.599800001829863 ], [ 356859.599600002169609, 258720.743700001388788 ], [ 356888.657399997115135, 258717.392900001257658 ], [ 356892.098499998450279, 258692.089899998158216 ], [ 356892.933499999344349, 258688.719200000166893 ], [ 356899.295400001108646, 258640.235300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051400", "MAP": "D9-2342-T83", "PARCEL_NAM": "3F-2", "ACRE": null, "LONGITUDE": -64.94872786000001, "LATITUDE": 18.35793578, "OBJECTID_1": 3928, "PARCEL_NO_": "102801051400", "Tax_Legal_": "ST PETER 3F-1-B,3F-2,3G-2-B,3G-4 LILLTE NORTHSIDE", "Name": "PERCELL, SANDRA", "Address": "BOX 4910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.218069953, "SHAPE_Area": 1031.8240028099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356921.17620000243187, 258680.501299999654293 ], [ 356894.047799997031689, 258680.226700000464916 ], [ 356892.933499999344349, 258688.719200000166893 ], [ 356892.098499998450279, 258692.089899998158216 ], [ 356888.657399997115135, 258717.392900001257658 ], [ 356896.715199999511242, 258718.092099998146296 ], [ 356912.732699997723103, 258723.268899999558926 ], [ 356919.129299998283386, 258690.869199998676777 ], [ 356920.231499999761581, 258685.286299999803305 ], [ 356921.17620000243187, 258680.501299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024800", "MAP": "F9-2340-T69", "PARCEL_NAM": "3AB", "ACRE": null, "LONGITUDE": -64.93933601000001, "LATITUDE": 18.35836939, "OBJECTID_1": 4129, "PARCEL_NO_": "102802024800", "Tax_Legal_": "LERKENLUND 3AB GR NORTHSIDE", "Name": "BRYAN, RONNIE,LEON & LEAYLE", "Address": "P O BOX 2621", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30900, "Improved_V": 263200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.530043337199999, "SHAPE_Area": 444.76222368600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357892.976800002157688, 258771.912000000476837 ], [ 357910.591300003230572, 258754.551500000059605 ], [ 357903.677199997007847, 258740.688000001013279 ], [ 357881.778999999165535, 258755.496399998664856 ], [ 357892.976800002157688, 258771.912000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93929833, "LATITUDE": 18.35865518, "OBJECTID_1": 4111, "PARCEL_NO_": "102802023000", "Tax_Legal_": "LERKENLUND 3AC GR NORHTSIDE", "Name": "AIMEE C LAPLACE and DARYL A BRYAN", "Address": "17 ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52000, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.06113876500001, "SHAPE_Area": 1752.5520134200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357885.616499997675419, 258779.166200000792742 ], [ 357870.950000002980232, 258793.621199999004602 ], [ 357886.907200001180172, 258816.122299998998642 ], [ 357929.054799996316433, 258790.713799998164177 ], [ 357914.776699997484684, 258762.94370000064373 ], [ 357910.591300003230572, 258754.551500000059605 ], [ 357892.976800002157688, 258771.912000000476837 ], [ 357885.616499997675419, 258779.166200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802027800", "MAP": "D9-8650-T012", "PARCEL_NAM": "3AG", "ACRE": ".08", "LONGITUDE": -64.93953679000001, "LATITUDE": 18.35855929, "OBJECTID_1": 4160, "PARCEL_NO_": "102802027800", "Tax_Legal_": "3AG LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BRYAN, EDWIN A", "Address": "6F-2 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.597764100999996, "SHAPE_Area": 163.33101341899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357875.184199996292591, 258763.169700000435114 ], [ 357880.772699996829033, 258770.531199999153614 ], [ 357863.925399996340275, 258783.547400001436472 ], [ 357867.33669999986887, 258788.506499998271465 ], [ 357879.157399997115135, 258779.705400001257658 ], [ 357884.702399998903275, 258771.413899999111891 ], [ 357881.144199997186661, 258766.961399998515844 ], [ 357884.419799998402596, 258764.095800001174212 ], [ 357877.579000003635883, 258763.359400000423193 ], [ 357875.184199996292591, 258763.169700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024700", "MAP": "D9-8650-T012", "PARCEL_NAM": "3A-REM", "ACRE": ".06", "LONGITUDE": -64.93948269000001, "LATITUDE": 18.35852849, "OBJECTID_1": 4128, "PARCEL_NO_": "102802024700", "Tax_Legal_": "3A-REMAINDER LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BRYAN, VERONICA", "Address": "3A LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.457031867, "SHAPE_Area": 273.648272658 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357872.563400000333786, 258760.060699999332428 ], [ 357875.184199996292591, 258763.169700000435114 ], [ 357877.579000003635883, 258763.359400000423193 ], [ 357884.419799998402596, 258764.095800001174212 ], [ 357881.144199997186661, 258766.961399998515844 ], [ 357884.702399998903275, 258771.413899999111891 ], [ 357879.157399997115135, 258779.705400001257658 ], [ 357867.33669999986887, 258788.506499998271465 ], [ 357867.784000001847744, 258789.156899999827147 ], [ 357870.950000002980232, 258793.621199999004602 ], [ 357885.616499997675419, 258779.166200000792742 ], [ 357892.976800002157688, 258771.912000000476837 ], [ 357881.778999999165535, 258755.496399998664856 ], [ 357872.563400000333786, 258760.060699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802023100", "MAP": "F9-1489-T64", "PARCEL_NAM": "3AA", "ACRE": null, "LONGITUDE": -64.93961135000001, "LATITUDE": 18.35850919, "OBJECTID_1": 4112, "PARCEL_NO_": "102802023100", "Tax_Legal_": "LERKENLUND 3AA GR NORTHSIDE QTR", "Name": "BRYAN, EDWIN A", "Address": "7434 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26100, "Improved_V": 128600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.805144534799993, "SHAPE_Area": 319.67716280899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357863.925399996340275, 258783.547400001436472 ], [ 357880.772699996829033, 258770.531199999153614 ], [ 357875.184199996292591, 258763.169700000435114 ], [ 357872.563400000333786, 258760.060699999332428 ], [ 357857.335400000214577, 258767.602899998426437 ], [ 357854.450099997222424, 258770.588199999183416 ], [ 357859.02250000089407, 258776.41950000077486 ], [ 357863.925399996340275, 258783.547400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004051500", "MAP": null, "PARCEL_NAM": "B-28-2", "ACRE": null, "LONGITUDE": -64.90302693, "LATITUDE": 18.35607847, "OBJECTID_1": 6297, "PARCEL_NO_": "103004051500", "Tax_Legal_": "B-28 REM LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.638917699800004, "SHAPE_Area": 173.64600101100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361718.006599999964237, 258527.249099999666214 ], [ 361717.097499996423721, 258530.432300001382828 ], [ 361750.312600001692772, 258541.425400000065565 ], [ 361751.808799996972084, 258534.914000000804663 ], [ 361718.006599999964237, 258527.249099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004011300", "MAP": "D9-8584-T010", "PARCEL_NAM": "B-28-1", "ACRE": ".07", "LONGITUDE": -64.90255602000001, "LATITUDE": 18.35622384, "OBJECTID_1": 5950, "PARCEL_NO_": "103004011300", "Tax_Legal_": "1A REM & EASEMENT \"A\" WINTBERG NO. 3 GREAT NORTHSIDE QTR", "Name": "LEDEE, JOSEPH", "Address": "PO Box 11113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73300, "Improved_V": 112400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.41771071400001, "SHAPE_Area": 506.43040975399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361817.493299998342991, 258566.08049999922514 ], [ 361819.113399997353554, 258558.363099999725819 ], [ 361751.808799996972084, 258534.914000000804663 ], [ 361750.312600001692772, 258541.425400000065565 ], [ 361752.437299996614456, 258541.924199998378754 ], [ 361817.493299998342991, 258566.08049999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90347517, "LATITUDE": 18.35597965, "OBJECTID_1": 6297, "PARCEL_NO_": "103004051500", "Tax_Legal_": "B-28 REM LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.39293393600001, "SHAPE_Area": 231.19233485199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361717.097499996423721, 258530.432300001382828 ], [ 361718.006599999964237, 258527.249099999666214 ], [ 361660.864500001072884, 258514.326900001615286 ], [ 361658.45099999755621, 258513.673799999058247 ], [ 361663.1875, 258518.431400001049042 ], [ 361686.240699999034405, 258524.805300001055002 ], [ 361717.097499996423721, 258530.432300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802016400", "MAP": "A9-774-T012", "PARCEL_NAM": "3-REM", "ACRE": "7.04", "LONGITUDE": -64.9369113, "LATITUDE": 18.36102665, "OBJECTID_1": 4082, "PARCEL_NO_": "102802016400", "Tax_Legal_": "3 REM, 3J, 3M AND 3L LERKENLUND NO 9 GREAT NORTHSIDE QTR", "Name": "MARIO AUSTIN VERWEIJ REVOCABLE TRUST", "Address": "3017 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 579200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 760.12108406899995, "SHAPE_Area": 27355.913320700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358237.417400002479553, 258980.8136 ], [ 358237.382307961932383, 258976.793741391680669 ], [ 358236.832079282961786, 258972.811563208466396 ], [ 358235.775797417329159, 258968.932805249729427 ], [ 358234.230899997055531, 258965.221500001847744 ], [ 358228.228479856916238, 258954.615568350767717 ], [ 358221.782189278048463, 258944.273413280432578 ], [ 358214.903599999845028, 258934.213599998503923 ], [ 358214.584396561491303, 258933.654592428298201 ], [ 358214.178332813433371, 258933.155100154952379 ], [ 358213.696273029549047, 258932.728487141284859 ], [ 358213.151114764856175, 258932.386167458724231 ], [ 358212.55744378012605, 258932.137299902649829 ], [ 358211.931143798457924, 258931.988542947976384 ], [ 358211.288971534871962, 258931.943876601028023 ], [ 358210.648108368914109, 258932.004495914152358 ], [ 358210.025700654950924, 258932.168779011903098 ], [ 358209.438400970015209, 258932.432330484502017 ], [ 358208.901922572578769, 258932.788098987482954 ], [ 358208.430618992715608, 258933.226565900986316 ], [ 358208.037100002169609, 258933.736000001430511 ], [ 358199.821837403054815, 258938.56687747160322 ], [ 358191.76519999653101, 258943.657900001853704 ], [ 358160.234700001776218, 258963.638099998235703 ], [ 358141.891099996864796, 258973.688200000673532 ], [ 358130.35329151339829, 258978.517250135104405 ], [ 358118.607699997723103, 258982.816300000995398 ], [ 358117.407345992163755, 258983.126197495934321 ], [ 358116.172910195949953, 258983.240453616104787 ], [ 358114.936068726528902, 258983.156136503675953 ], [ 358113.728559431852773, 258982.875409769563703 ], [ 358112.581367484584916, 258982.405476974265184 ], [ 358111.523930290073622, 258981.758396781748161 ], [ 358110.583382110577077, 258980.950773529184517 ], [ 358109.783857789589092, 258980.003331153071485 ], [ 358109.145873441651929, 258978.940381404594518 ], [ 358108.6858000010252, 258977.789200000464916 ], [ 358108.378151708340738, 258976.726219268952264 ], [ 358108.225056697963737, 258975.630255115625914 ], [ 358108.229637268465012, 258974.523659197526285 ], [ 358108.391800001263618, 258973.429000001400709 ], [ 358071.910999998450279, 258981.887099999934435 ], [ 358036.333700001239777, 259013.822599999606609 ], [ 358041.561200000345707, 259021.119300000369549 ], [ 358117.300700001418591, 259126.837799999862909 ], [ 358166.711300000548363, 259195.425400000065565 ], [ 358175.622100003063679, 259190.643199998885393 ], [ 358188.568000003695488, 259185.471799999475479 ], [ 358201.505000002682209, 259181.355799999088049 ], [ 358206.537799999117851, 259180.301100000739098 ], [ 358220.892399996519089, 259177.292700000107288 ], [ 358207.533900000154972, 259151.530999999493361 ], [ 358203.644559074135032, 259139.27291016059462 ], [ 358200.282446098979563, 259126.859855110378703 ], [ 358197.453699998557568, 259114.314500000327826 ], [ 358195.700401405512821, 259104.170314757880988 ], [ 358194.720059381856117, 259093.92251110507641 ], [ 358194.518299996852875, 259083.629900000989437 ], [ 358195.273290799290407, 259075.45587467297446 ], [ 358196.79632347880397, 259067.389582300907932 ], [ 358199.073803019186016, 259059.503024869598448 ], [ 358202.085400000214577, 259051.866599999368191 ], [ 358205.274932669766713, 259045.061132998351241 ], [ 358209.142507914162707, 259038.61680514505133 ], [ 358213.647718551976141, 259032.600944702833658 ], [ 358218.743495592556428, 259027.076403445418691 ], [ 358224.376599997282028, 259022.100900001823902 ], [ 358226.228699997067451, 259020.381099998950958 ], [ 358228.639604894560762, 259017.881502779113362 ], [ 358230.611604855395854, 259015.022890381340403 ], [ 358232.092126707313582, 259011.881472909532022 ], [ 358233.04169999808073, 259008.541000001132488 ], [ 358235.282802338711917, 259001.833891308720922 ], [ 358236.76966641965555, 258994.920347939536441 ], [ 358237.484111025114544, 258987.884907966159517 ], [ 358237.417400002479553, 258980.8136 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802016400", "MAP": "A9-774-T012", "PARCEL_NAM": "3-M", "ACRE": "2.950", "LONGITUDE": -64.93778225, "LATITUDE": 18.36000677, "OBJECTID_1": 4082, "PARCEL_NO_": "102802016400", "Tax_Legal_": "3 REM, 3J, 3M AND 3L LERKENLUND NO 9 GREAT NORTHSIDE QTR", "Name": "MARIO AUSTIN VERWEIJ REVOCABLE TRUST", "Address": "3017 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 579200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 480.35486221100001, "SHAPE_Area": 11889.198373200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358119.917900003492832, 258903.2483000010252 ], [ 358136.331699997186661, 258892.211500000208616 ], [ 358133.689000003039837, 258893.122400000691414 ], [ 358128.878507936431561, 258894.42365522927139 ], [ 358123.957942913752049, 258895.212413081724662 ], [ 358118.981747085519601, 258895.479946577834198 ], [ 358114.004978113051038, 258895.223295671545202 ], [ 358109.082699999213219, 258894.445300001651049 ], [ 358042.839100003242493, 258875.238099999725819 ], [ 358028.276900000870228, 258880.818500000983477 ], [ 357989.797600001096725, 258948.897799998521805 ], [ 357992.191399998962879, 258951.872699998319149 ], [ 357996.969899997115135, 258958.877900000661612 ], [ 358015.358400002121925, 258984.544900000095367 ], [ 358036.333700001239777, 259013.822599999606609 ], [ 358071.910999998450279, 258981.887099999934435 ], [ 358108.391800001263618, 258973.429000001400709 ], [ 358108.745112467906438, 258972.273011912155198 ], [ 358109.273904661706183, 258971.186035841878038 ], [ 358109.965308787941467, 258970.194522606558166 ], [ 358110.802500002086163, 258969.322599999606609 ], [ 358117.795159712899476, 258964.274944869830506 ], [ 358124.420421894174069, 258958.75389305248973 ], [ 358130.646300002932549, 258952.786100000143051 ], [ 358135.464311107760295, 258946.747529269836377 ], [ 358140.108800001442432, 258940.574499998241663 ], [ 358134.705799996852875, 258939.03830000013113 ], [ 358117.240299999713898, 258934.072599999606609 ], [ 358112.795299999415874, 258908.037599999457598 ], [ 358119.917900003492832, 258903.2483000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803023300", "MAP": "D9-9134-T016", "PARCEL_NAM": "106-1", "ACRE": ".28", "LONGITUDE": -64.94275911, "LATITUDE": 18.34523313, "OBJECTID_1": 4306, "PARCEL_NO_": "102803023300", "Tax_Legal_": "63 & 106 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "L & L INVESTMENTS REV. TRST.", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 168800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.33324154799999, "SHAPE_Area": 1392.88889333 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357566.0641999989748, 257309.359700001776218 ], [ 357572.146799996495247, 257291.192299999296665 ], [ 357537.251900002360344, 257280.93129999935627 ], [ 357525.977899998426437, 257279.150299999862909 ], [ 357521.138199999928474, 257279.321699999272823 ], [ 357517.898599997162819, 257280.984000001102686 ], [ 357516.26799999922514, 257283.081599999219179 ], [ 357517.03830000013113, 257287.30970000103116 ], [ 357559.542199999094009, 257330.037500001490116 ], [ 357566.0641999989748, 257309.359700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202018700", "MAP": "D9-7892-T006", "PARCEL_NAM": "107-10A-4", "ACRE": ".23", "LONGITUDE": -64.95557642, "LATITUDE": 18.34699335, "OBJECTID_1": 8092, "PARCEL_NO_": "105202018700", "Tax_Legal_": "107-10A-4 & 107-10A-2 REM CONATNT 7B SOUTHSIDE QTR", "Name": "PLANTATION MANOR LTD", "Address": "8248 Plantattion Mnr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.403564328, "SHAPE_Area": 763.05313599399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356205.701200000941753, 257489.012600000947714 ], [ 356205.145099997520447, 257469.956300001591444 ], [ 356196.925999999046326, 257469.445799998939037 ], [ 356171.154799997806549, 257473.190099999308586 ], [ 356178.460799999535084, 257492.044399999082088 ], [ 356180.537600003182888, 257497.403999999165535 ], [ 356205.765900000929832, 257494.73759999871254 ], [ 356205.701200000941753, 257489.012600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202018700", "MAP": "D9-7821-T006", "PARCEL_NAM": "107-10A-2-REM", "ACRE": null, "LONGITUDE": -64.95529319000001, "LATITUDE": 18.3469934, "OBJECTID_1": 8092, "PARCEL_NO_": "105202018700", "Tax_Legal_": "107-10A-4 & 107-10A-2 REM CONATNT 7B SOUTHSIDE QTR", "Name": "PLANTATION MANOR LTD", "Address": "8248 Plantattion Mnr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.140105752, "SHAPE_Area": 703.32174845999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356205.701200000941753, 257489.012600000947714 ], [ 356205.765900000929832, 257494.73759999871254 ], [ 356220.453400000929832, 257493.232500001788139 ], [ 356230.876599997282028, 257496.188900001347065 ], [ 356239.332800000905991, 257493.661800000816584 ], [ 356237.058100000023842, 257488.5168999992311 ], [ 356231.57660000026226, 257471.723099999129772 ], [ 356231.602799996733665, 257471.599800001829863 ], [ 356205.145099997520447, 257469.956300001591444 ], [ 356205.701200000941753, 257489.012600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202028000", "MAP": "D9-7821-T006", "PARCEL_NAM": "107-10A--2-F", "ACRE": ".24", "LONGITUDE": -64.95497586, "LATITUDE": 18.34687501, "OBJECTID_1": 8179, "PARCEL_NO_": "105202028000", "Tax_Legal_": "107-10A-2-1 CONTANT 7B SOUTHSIDE QUARTER", "Name": "BEDMINSTER, KIMBERLY & FORGOSON", "Address": "2402 Adel Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.892090053, "SHAPE_Area": 1481.76770055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356278.590800002217293, 257477.533300001174212 ], [ 356274.294600002467632, 257450.254200000315905 ], [ 356253.468500003218651, 257453.836800001561642 ], [ 356234.894900001585484, 257453.311700001358986 ], [ 356231.57660000026226, 257471.723099999129772 ], [ 356237.058100000023842, 257488.5168999992311 ], [ 356239.332800000905991, 257493.661800000816584 ], [ 356252.030500002205372, 257489.867199998348951 ], [ 356258.582099996507168, 257487.423000000417233 ], [ 356276.49040000140667, 257478.578099999576807 ], [ 356278.590800002217293, 257477.533300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202027900", "MAP": "D9-7735-T006", "PARCEL_NAM": "107-10A-1", "ACRE": ".23", "LONGITUDE": -64.95460914, "LATITUDE": 18.34671544, "OBJECTID_1": 8178, "PARCEL_NO_": "105202027900", "Tax_Legal_": "107-10A-1 ESTATE CONTANT NO.7B SOUTHSIDE QTR", "Name": "PETTY, CELINA PELTIER", "Address": "PO BOX 10511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.78735586299999, "SHAPE_Area": 1047.9966718799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356278.590800002217293, 257477.533300001174212 ], [ 356288.345600001513958, 257472.680900000035763 ], [ 356296.935099996626377, 257466.757199998944998 ], [ 356302.495899997651577, 257462.557100001722574 ], [ 356305.030199997127056, 257459.830800000578165 ], [ 356312.160400003194809, 257449.467799998819828 ], [ 356312.442100003361702, 257447.171000000089407 ], [ 356311.955899998545647, 257441.763700000941753 ], [ 356309.40990000218153, 257436.394600000232458 ], [ 356305.781400002539158, 257431.481199998408556 ], [ 356298.562700003385544, 257431.722500000149012 ], [ 356288.366800002753735, 257440.235100001096725 ], [ 356274.294600002467632, 257450.254200000315905 ], [ 356278.590800002217293, 257477.533300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202028200", "MAP": "D9-7892-T006", "PARCEL_NAM": "107-10A-REM", "ACRE": ".241", "LONGITUDE": -64.95596946000001, "LATITUDE": 18.34702818, "OBJECTID_1": 8181, "PARCEL_NO_": "105202028200", "Tax_Legal_": "107-10A REM CONTANT 7B SOUTHSIDE QTR", "Name": "PRENTICE, KAISA", "Address": "2807 Silke Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.11879259099999, "SHAPE_Area": 2089.7996651399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356178.460799999535084, 257492.044399999082088 ], [ 356162.044900000095367, 257449.288899999111891 ], [ 356147.980099998414516, 257459.3761 ], [ 356131.257500000298023, 257480.729800000786781 ], [ 356120.855099998414516, 257503.231499999761581 ], [ 356116.61089999973774, 257515.881700001657009 ], [ 356115.063500002026558, 257520.49379999935627 ], [ 356114.67790000140667, 257521.42960000038147 ], [ 356119.392099998891354, 257520.010299999266863 ], [ 356126.960600003600121, 257516.076099999248981 ], [ 356136.293600000441074, 257511.406899999827147 ], [ 356147.91160000115633, 257503.759700000286102 ], [ 356164.276299998164177, 257499.396999999880791 ], [ 356173.080700002610683, 257497.969799999147654 ], [ 356180.537600003182888, 257497.403999999165535 ], [ 356178.460799999535084, 257492.044399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903034200", "MAP": "D9-9153-T017", "PARCEL_NAM": "295A", "ACRE": "0.19", "LONGITUDE": -64.92500279, "LATITUDE": 18.34866506, "OBJECTID_1": 4854, "PARCEL_NO_": "102903034200", "Tax_Legal_": "REM. 295A HOSPITAL GROUND 9 NEW QUARTER", "Name": "FREDIMON, MARTHA", "Address": "2001 Wimmelskafts Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.99118814400001, "SHAPE_Area": 571.81505005899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359436.907999999821186, 257693.70549999922514 ], [ 359434.691500000655651, 257678.872000001370907 ], [ 359408.040600001811981, 257687.000999998301268 ], [ 359409.080099999904633, 257718.674499999731779 ], [ 359411.451899997889996, 257715.292500000447035 ], [ 359412.277999997138977, 257712.977200001478195 ], [ 359422.049099996685982, 257701.869199998676777 ], [ 359428.539099998772144, 257697.278299998492002 ], [ 359436.632799997925758, 257693.756000000983477 ], [ 359436.907999999821186, 257693.70549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903036100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92488662, "LATITUDE": 18.34832269, "OBJECTID_1": 4873, "PARCEL_NO_": "102903036100", "Tax_Legal_": "HOSPITAL GROUND 295 GREAT NORTHSIDE QTR", "Name": "CALLWOOD, DARRELL & DELITA BENJAMIN RAWLINGS", "Address": "295 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32900, "Improved_V": 96000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.42860628299999, "SHAPE_Area": 2303.5119125199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359408.040600001811981, 257687.000999998301268 ], [ 359459.273900002241135, 257671.374000001698732 ], [ 359458.655000001192093, 257664.383099999278784 ], [ 359455.708499997854233, 257631.639499999582767 ], [ 359455.490500003099442, 257624.927400000393391 ], [ 359447.743900001049042, 257627.000399999320507 ], [ 359439.779100000858307, 257629.509899999946356 ], [ 359432.141599997878075, 257631.473799999803305 ], [ 359425.595200002193451, 257633.983300000429153 ], [ 359420.79450000077486, 257637.147399999201298 ], [ 359406.937899999320507, 257649.03999999910593 ], [ 359406.987499997019768, 257654.909299999475479 ], [ 359407.483300000429153, 257670.0185999982059 ], [ 359408.040600001811981, 257687.000999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904023100", "MAP": "D9-4448-T88", "PARCEL_NAM": "REM 404", "ACRE": "2.57", "LONGITUDE": -64.92425363, "LATITUDE": 18.34986274, "OBJECTID_1": 5048, "PARCEL_NO_": "102904023100", "Tax_Legal_": "HOSPITAL GROUND 404 GR NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 268100, "Improved_V": 146100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 540.47551296300003, "SHAPE_Area": 10678.6176338 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359534.869499996304512, 257819.709499999880791 ], [ 359560.265600003302097, 257815.134500000625849 ], [ 359559.79619999974966, 257813.1875 ], [ 359547.3429000005126, 257760.523299999535084 ], [ 359539.269000001251698, 257761.723700001835823 ], [ 359515.045500002801418, 257765.536299999803305 ], [ 359487.591300003230572, 257769.955600000917912 ], [ 359448.834299996495247, 257775.971200000494719 ], [ 359441.534400001168251, 257780.977699998766184 ], [ 359452.423500001430511, 257827.92960000038147 ], [ 359470.3412000015378, 257901.747900001704693 ], [ 359490.516999997198582, 257899.802099999040365 ], [ 359515.4983000010252, 257901.695300001651049 ], [ 359526.768700003623962, 257903.898499999195337 ], [ 359549.340000003576279, 257904.716499999165535 ], [ 359552.105999998748302, 257904.225400000810623 ], [ 359548.096600003540516, 257879.5320999994874 ], [ 359543.139899998903275, 257880.495799999684095 ], [ 359522.021300002932549, 257884.601700000464916 ], [ 359513.781499996781349, 257855.622299998998642 ], [ 359505.119499996304512, 257825.157600000500679 ], [ 359534.869499996304512, 257819.709499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "102904023000", "MAP": "D9-4522-T88", "PARCEL_NAM": "405", "ACRE": ".460", "LONGITUDE": -64.92397894, "LATITUDE": 18.35007923, "OBJECTID_1": 5047, "PARCEL_NO_": "102904023000", "Tax_Legal_": "HOSPITAL GROUND 405 GR NORTHSIDE QTR", "Name": "PERSAD, BHAGWANDEEN", "Address": "PO Box 6305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 70700, "Improved_V": 528700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.29951068, "SHAPE_Area": 1738.47967754 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359541.65429999679327, 257852.16950000077486 ], [ 359534.869499996304512, 257819.709499999880791 ], [ 359505.119499996304512, 257825.157600000500679 ], [ 359513.781499996781349, 257855.622299998998642 ], [ 359522.021300002932549, 257884.601700000464916 ], [ 359543.139899998903275, 257880.495799999684095 ], [ 359548.096600003540516, 257879.5320999994874 ], [ 359542.112899996340275, 257852.110300000756979 ], [ 359541.65429999679327, 257852.16950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904022900", "MAP": "G9-725-T63", "PARCEL_NAM": null, "ACRE": ".22", "LONGITUDE": -64.92376224, "LATITUDE": 18.35009145, "OBJECTID_1": 5046, "PARCEL_NO_": "102904022900", "Tax_Legal_": "HOSPITAL GROOUND 405A GR NORTHSIDE", "Name": "BENVENUTI, JOSEFINA ARBONIES", "Address": "PO Box 808", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 153500, "Improved_V": 312600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.84865510899999, "SHAPE_Area": 1224.6409298399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359558.808100000023842, 257903.035599999129772 ], [ 359555.691600002348423, 257879.83049999922514 ], [ 359563.211499996483326, 257864.099399998784065 ], [ 359552.3074000030756, 257816.56810000166297 ], [ 359534.869499996304512, 257819.709499999880791 ], [ 359541.65429999679327, 257852.16950000077486 ], [ 359542.112899996340275, 257852.110300000756979 ], [ 359548.096600003540516, 257879.5320999994874 ], [ 359552.105999998748302, 257904.225400000810623 ], [ 359558.808100000023842, 257903.035599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904022900", "MAP": "G9-725-T63", "PARCEL_NAM": null, "ACRE": ".22", "LONGITUDE": -64.92362128000001, "LATITUDE": 18.35022162, "OBJECTID_1": 5046, "PARCEL_NO_": "102904022900", "Tax_Legal_": "HOSPITAL GROOUND 405A GR NORTHSIDE", "Name": "BENVENUTI, JOSEFINA ARBONIES", "Address": "PO Box 808", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 153500, "Improved_V": 312600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.71296094300001, "SHAPE_Area": 1067.75387316 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359552.3074000030756, 257816.56810000166297 ], [ 359563.211499996483326, 257864.099399998784065 ], [ 359555.691600002348423, 257879.83049999922514 ], [ 359558.808100000023842, 257903.035599999129772 ], [ 359580.028399996459484, 257899.268199998885393 ], [ 359579.258100003004074, 257895.03999999910593 ], [ 359573.781099997460842, 257875.363400001078844 ], [ 359568.363499999046326, 257848.7212999984622 ], [ 359560.265600003302097, 257815.134500000625849 ], [ 359552.3074000030756, 257816.56810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804013500", "MAP": "G9-3078-T81", "PARCEL_NAM": "8B", "ACRE": "0.46", "LONGITUDE": -64.93486601, "LATITUDE": 18.35543403, "OBJECTID_1": 4450, "PARCEL_NO_": "102804013500", "Tax_Legal_": "MISGUNST 8B GREAT NORTHSIDE QTR", "Name": "PETERSEN, ARNOLD & MARIA", "Address": "PO Box 304008", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60300, "Improved_V": 294000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.67446437000001, "SHAPE_Area": 2294.6219328100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358398.896499998867512, 258443.932799998670816 ], [ 358383.957800000905991, 258399.058699999004602 ], [ 358375.066799998283386, 258401.519099999219179 ], [ 358362.10639999806881, 258408.379099998623133 ], [ 358355.204199999570847, 258413.945300001651049 ], [ 358349.664800003170967, 258449.001600001007318 ], [ 358347.31530000269413, 258463.870400000363588 ], [ 358349.195799998939037, 258467.1081000007689 ], [ 358351.111599996685982, 258469.475400000810623 ], [ 358399.856600001454353, 258447.724300000816584 ], [ 358398.896499998867512, 258443.932799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804013700", "MAP": "D9-7692-T005", "PARCEL_NAM": "9", "ACRE": "0.44", "LONGITUDE": -64.93525048, "LATITUDE": 18.3555768, "OBJECTID_1": 4452, "PARCEL_NO_": "102804013700", "Tax_Legal_": "MISGUNST 9 GREAT NORTHSIDE QTR", "Name": "CATHARINE CHANDLER FAMILY TRUST II", "Address": "PO BOX 332", "City": "Remsenburg", "State": "New York", "Zip": 11960, "Country": "United States", "Land_Value": 87700, "Improved_V": 315000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.66588038399999, "SHAPE_Area": 1341.1365805600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358342.886100001633167, 258466.086300000548363 ], [ 358344.870700001716614, 258457.884899999946356 ], [ 358346.325900003314018, 258453.519299998879433 ], [ 358346.590400002896786, 258447.566100001335144 ], [ 358347.648800000548363, 258442.671300001442432 ], [ 358348.442500002682209, 258439.496300000697374 ], [ 358349.236299999058247, 258436.321299999952316 ], [ 358350.162299998104572, 258433.410900000482798 ], [ 358350.691500000655651, 258428.516100000590086 ], [ 358350.691500000655651, 258423.621300000697374 ], [ 358351.695299997925758, 258416.774999998509884 ], [ 358349.927199997007847, 258418.200800001621246 ], [ 358326.378700003027916, 258437.428700000047684 ], [ 358319.071599997580051, 258443.279500000178814 ], [ 358304.493199996650219, 258450.759500000625849 ], [ 358321.601599998772144, 258476.7347999997437 ], [ 358342.886100001633167, 258466.086300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017000", "MAP": "D9-2211-T82", "PARCEL_NAM": "3AC-6", "ACRE": "0.68", "LONGITUDE": -64.93468921, "LATITUDE": 18.3557668, "OBJECTID_1": 4482, "PARCEL_NO_": "102804017000", "Tax_Legal_": "3AC-6 MISGUNST NO.6 GREAT NORTHSIDE QTR.", "Name": "ROM(TRUSTEES), DANIEL S. & JULIA B.", "Address": "286 High Rail Ter", "City": "Leesburg", "State": "Virginia", "Zip": 20175, "Country": "United States", "Land_Value": 101700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.16847684499999, "SHAPE_Area": 2872.7558956100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358447.252199999988079, 258426.575199998915195 ], [ 358351.111599996685982, 258469.475400000810623 ], [ 358371.677799999713898, 258519.5135000012815 ], [ 358413.196099996566772, 258469.170000001788139 ], [ 358431.942699998617172, 258445.681000001728535 ], [ 358443.13849999755621, 258431.708999998867512 ], [ 358447.252199999988079, 258426.575199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804015000", "MAP": "G9-1567-T70", "PARCEL_NAM": "3B-2", "ACRE": "0.46", "LONGITUDE": -64.93507156, "LATITUDE": 18.35606537, "OBJECTID_1": 4465, "PARCEL_NO_": "102804015000", "Tax_Legal_": "3B-2 & 3 MISGUNST No.6. GREAT NORTHSIDE QTR.", "Name": "ROM(TRUSTEES), DANIEL S. & JULIA B.", "Address": "286 High Rail Ter", "City": "Leesburg", "State": "Virginia", "Zip": 20175, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.687173234, "SHAPE_Area": 1724.67705437 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358327.67960000038147, 258479.9560999982059 ], [ 358347.246500000357628, 258543.568399999290705 ], [ 358365.123800002038479, 258527.46059999987483 ], [ 358371.677799999713898, 258519.5135000012815 ], [ 358351.111599996685982, 258469.475400000810623 ], [ 358327.67960000038147, 258479.9560999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802024000", "MAP": "G9-1566-T70", "PARCEL_NAM": "3B REM", "ACRE": ".57", "LONGITUDE": -64.93535709, "LATITUDE": 18.35625401, "OBJECTID_1": 4121, "PARCEL_NO_": "102802024000", "Tax_Legal_": "3B MISGUNST NO.6 GREAT NORTHSIDE QTR", "Name": "ROM(TRUSTEES), DANIEL S. & JULIA B.", "Address": "286 High Rail Ter", "City": "Leesburg", "State": "Virginia", "Zip": 20175, "Country": "United States", "Land_Value": 130400, "Improved_V": 137600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.59828172100001, "SHAPE_Area": 3117.8868030200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358347.246500000357628, 258543.568399999290705 ], [ 358327.67960000038147, 258479.9560999982059 ], [ 358322.772299997508526, 258482.151000000536442 ], [ 358306.581299997866154, 258489.617899999022484 ], [ 358288.774099998176098, 258497.493700001388788 ], [ 358316.324299998581409, 258576.456999998539686 ], [ 358335.760300002992153, 258566.694699998944998 ], [ 358330.954800002276897, 258562.855700001120567 ], [ 358330.999700002372265, 258557.578699998557568 ], [ 358336.697899997234344, 258551.292599998414516 ], [ 358347.246500000357628, 258543.568399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804015000", "MAP": "G9-1567-T70", "PARCEL_NAM": "3B-3", "ACRE": "0.27", "LONGITUDE": -64.93492139, "LATITUDE": 18.35645983, "OBJECTID_1": 4465, "PARCEL_NO_": "102804015000", "Tax_Legal_": "3B-2 & 3 MISGUNST No.6. GREAT NORTHSIDE QTR.", "Name": "ROM(TRUSTEES), DANIEL S. & JULIA B.", "Address": "286 High Rail Ter", "City": "Leesburg", "State": "Virginia", "Zip": 20175, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.74486858500001, "SHAPE_Area": 788.654533722 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358369.115800000727177, 258532.137299999594688 ], [ 358351.234899997711182, 258548.667300000786781 ], [ 358340.688100002706051, 258556.180399999022484 ], [ 358337.432300001382828, 258559.742300000041723 ], [ 358341.449400000274181, 258561.463899999856949 ], [ 358351.926100000739098, 258562.18299999833107 ], [ 358366.466700002551079, 258559.135600000619888 ], [ 358386.69820000231266, 258550.646299999207258 ], [ 358374.803099997341633, 258527.117600001394749 ], [ 358369.115800000727177, 258532.137299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93631266, "LATITUDE": 18.35601058, "OBJECTID_1": 4455, "PARCEL_NO_": "102804014000", "Tax_Legal_": "LERKENLUND 4AB GREAT NORTHSIDE", "Name": "BRYAN, RICHARD LOUIS", "Address": "13110 Hidden Valley Dr", "City": "Homer Glen", "State": "Illinois", "Zip": 60491, "Country": "United States", "Land_Value": 79600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.56928376299999, "SHAPE_Area": 1524.3815770599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358210.754199996590614, 258474.268100000917912 ], [ 358202.619099996984005, 258482.645300000905991 ], [ 358192.072300001978874, 258490.158300001174212 ], [ 358205.610600002110004, 258510.111900001764297 ], [ 358215.160499997437, 258524.966600000858307 ], [ 358224.089199997484684, 258518.073600001633167 ], [ 358241.082900002598763, 258511.035500001162291 ], [ 358246.743500001728535, 258508.69649999961257 ], [ 358217.069600000977516, 258467.277699999511242 ], [ 358210.754199996590614, 258474.268100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802023900", "MAP": null, "PARCEL_NAM": "3B-1", "ACRE": "0.59", "LONGITUDE": -64.93560123, "LATITUDE": 18.35642174, "OBJECTID_1": 4120, "PARCEL_NO_": "102802023900", "Tax_Legal_": "3B-1 MISGUNST NO.6. GREAT NORTHSIDE QTR", "Name": "ROM(TRUSTEES), DANIEL S. & JULIA B.", "Address": "286 High Rail Ter", "City": "Leesburg", "State": "Virginia", "Zip": 20175, "Country": "United States", "Land_Value": 129200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.70223721599999, "SHAPE_Area": 1829.9141553899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358271.648900002241135, 258505.199000000953674 ], [ 358293.846199996769428, 258587.504200000315905 ], [ 358316.324299998581409, 258576.456999998539686 ], [ 358288.774099998176098, 258497.493700001388788 ], [ 358278.874200001358986, 258501.947999998927116 ], [ 358271.648900002241135, 258505.199000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804013800", "MAP": "D9-7692-T005", "PARCEL_NAM": "8A", "ACRE": ".43", "LONGITUDE": -64.93566063, "LATITUDE": 18.35577997, "OBJECTID_1": 4453, "PARCEL_NO_": "102804013800", "Tax_Legal_": "8A MISGUNST GREAT NORTHSIDE QTR", "Name": "CATHARINE CHANDLER FAMILY TRUST I", "Address": "PO BOX 332", "City": "Remsenburg", "State": "New York", "Zip": 11960, "Country": "United States", "Land_Value": 111800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.6287462, "SHAPE_Area": 1820.7862800099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358258.582099996507168, 258456.749000001698732 ], [ 358269.960299998521805, 258498.938000001013279 ], [ 358276.317800000309944, 258496.253899998962879 ], [ 358280.551399998366833, 258494.466400001198053 ], [ 358291.222699999809265, 258489.960999999195337 ], [ 358300.159500002861023, 258486.187800001353025 ], [ 358315.535199999809265, 258479.76969999819994 ], [ 358321.601599998772144, 258476.7347999997437 ], [ 358304.493199996650219, 258450.759500000625849 ], [ 358295.594999998807907, 258454.0641999989748 ], [ 358269.923500001430511, 258456.0929000005126 ], [ 358263.084499999880791, 258456.488600000739098 ], [ 358258.582099996507168, 258456.749000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93593548, "LATITUDE": 18.3565354, "OBJECTID_1": 4119, "PARCEL_NO_": "102802023800", "Tax_Legal_": "LERKENLUND 4A-1 GR NORTHSIDE QTR", "Name": "BRIN FAMILY TRUST", "Address": "4605 Tutu Park", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 173800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.93856149599998, "SHAPE_Area": 4564.3314144200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358262.859499998390675, 258605.150400001555681 ], [ 358293.846199996769428, 258587.504200000315905 ], [ 358271.648900002241135, 258505.199000000953674 ], [ 358258.823600001633167, 258510.9695999994874 ], [ 358250.889600001275539, 258514.48369999974966 ], [ 358228.875, 258524.234499998390675 ], [ 358219.138099998235703, 258531.331999998539686 ], [ 358215.884099997580051, 258534.682799998670816 ], [ 358242.075199998915195, 258583.870900001376867 ], [ 358253.984700001776218, 258605.710999999195337 ], [ 358262.859499998390675, 258605.150400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802022000", "MAP": "G9-1398-T69", "PARCEL_NAM": "4A-7", "ACRE": "1.6", "LONGITUDE": -64.93572008, "LATITUDE": 18.35745886, "OBJECTID_1": 4104, "PARCEL_NO_": "102802022000", "Tax_Legal_": "4A-7 LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "ROM FAMILY TRUST", "Address": "286 High Rail Ter", "City": "Leesburg", "State": "Virginia", "Zip": 20175, "Country": "United States", "Land_Value": 224400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 370.732747743, "SHAPE_Area": 6859.8010213699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358214.817699998617172, 258659.852600000798702 ], [ 358274.893799997866154, 258706.995999999344349 ], [ 358278.09740000218153, 258709.555300001055002 ], [ 358281.301100000739098, 258712.114700000733137 ], [ 358327.343599997460842, 258702.781199999153614 ], [ 358319.453100003302097, 258682.45160000026226 ], [ 358293.846199996769428, 258587.504200000315905 ], [ 358262.859499998390675, 258605.150400001555681 ], [ 358248.756599999964237, 258651.475499998778105 ], [ 358214.817699998617172, 258659.852600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014900", "MAP": "G9-596-T61", "PARCEL_NAM": "4Aa", "ACRE": "0.28", "LONGITUDE": -64.93605158, "LATITUDE": 18.35584994, "OBJECTID_1": 4464, "PARCEL_NO_": "102804014900", "Tax_Legal_": "No.4A,REM.4B,REM.4C,4C-1&4C ESTATE MISGUNST GT.NORTHSIDE QTR", "Name": "SEACLUSION, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 337500, "Improved_V": 1977800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.917472855, "SHAPE_Area": 1675.9259438900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358253.785199999809265, 258457.026500001549721 ], [ 358252.639600001275539, 258457.092799998819828 ], [ 358236.696400001645088, 258458.015099998563528 ], [ 358227.809000000357628, 258460.053300000727177 ], [ 358218.894599996507168, 258465.257699999958277 ], [ 358217.069600000977516, 258467.277699999511242 ], [ 358246.743500001728535, 258508.69649999961257 ], [ 358251.602799996733665, 258506.6886 ], [ 358258.646499998867512, 258503.714800000190735 ], [ 358267.965800002217293, 258499.780099999159575 ], [ 358269.960299998521805, 258498.938000001013279 ], [ 358258.582099996507168, 258456.749000001698732 ], [ 358253.785199999809265, 258457.026500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025100", "MAP": null, "PARCEL_NAM": "BEACH PARCEL", "ACRE": "0.03", "LONGITUDE": -64.92314081000001, "LATITUDE": 18.32811413, "OBJECTID_1": 24884, "PARCEL_NO_": "107302025100", "Tax_Legal_": "BELLEVUE PCL FRENCHMAN BAY QTR", "Name": "VIRGIN ISLANDS GOVERNMET", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.131861523, "SHAPE_Area": 1727.6634382699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359654.905000001192093, 255451.828999999910593 ], [ 359660.836900003254414, 255418.102600000798702 ], [ 359645.223099999129772, 255403.770700000226498 ], [ 359638.112800002098083, 255397.244199998676777 ], [ 359603.958400003612041, 255407.631700001657009 ], [ 359607.66160000115633, 255412.812199998646975 ], [ 359610.010399997234344, 255421.064100001007318 ], [ 359610.788000002503395, 255424.447900000959635 ], [ 359654.905000001192093, 255451.828999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304014500", "MAP": "D9-4931-T90", "PARCEL_NAM": "8-27-2", "ACRE": "1.0", "LONGITUDE": -64.92345654, "LATITUDE": 18.37226616, "OBJECTID_1": 969, "PARCEL_NO_": "101304014500", "Tax_Legal_": "PETERBORG 8-27-2 GT.NORTHSIDE QTR.", "Name": "HANCOCK, MICHAEL J. (TRUSTEE)", "Address": "8102 Lindberg Bay Dr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 275700, "Improved_V": 549600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.53101381099998, "SHAPE_Area": 4399.2073269100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359598.913999997079372, 260277.426100000739098 ], [ 359530.9324000030756, 260274.988000001758337 ], [ 359509.319499999284744, 260290.559000000357628 ], [ 359524.852200001478195, 260305.916400000452995 ], [ 359530.447899997234344, 260311.661699999123812 ], [ 359588.01690000295639, 260369.128199998289347 ], [ 359589.75900000333786, 260353.94370000064373 ], [ 359591.398599997162819, 260350.790699999779463 ], [ 359594.648999996483326, 260347.861999999731779 ], [ 359595.503799997270107, 260342.16950000077486 ], [ 359593.920000001788139, 260338.778999999165535 ], [ 359585.907200001180172, 260332.802799999713898 ], [ 359581.922399997711182, 260327.281700000166893 ], [ 359581.213200002908707, 260315.876899998635054 ], [ 359583.675300002098083, 260310.830800000578165 ], [ 359586.922100000083447, 260308.324200000613928 ], [ 359590.996799997985363, 260303.291400000452995 ], [ 359599.110299997031689, 260297.44709999859333 ], [ 359601.554399996995926, 260294.511799998581409 ], [ 359604.081299997866154, 260281.866900000721216 ], [ 359598.913999997079372, 260277.426100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304020800", "MAP": "D9-7331-T003", "PARCEL_NAM": "12-1-5", "ACRE": "1.15", "LONGITUDE": -64.91645186, "LATITUDE": 18.3650993, "OBJECTID_1": 976, "PARCEL_NO_": "101304020800", "Tax_Legal_": "12-1-5 PETERBORG (CONS) NO. 12 GREAT NORTHSIDE QTR", "Name": "BAKER, RICHARD S. & SUSAN E.", "Address": "98 Ely Rd", "City": "Longmeadow", "State": "Massachusetts", "Zip": 1106, "Country": "United States", "Land_Value": 335300, "Improved_V": 1073300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.61270321900003, "SHAPE_Area": 4526.85573785 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360285.497599996626377, 259520.54109999909997 ], [ 360278.993199996650219, 259526.820599999278784 ], [ 360274.880699999630451, 259536.286200001835823 ], [ 360275.580899998545647, 259548.746399998664856 ], [ 360279.581900000572205, 259552.367800001055002 ], [ 360283.568499997258186, 259557.677799999713898 ], [ 360339.995999999344349, 259559.828299999237061 ], [ 360339.259800001978874, 259551.589699998497963 ], [ 360339.520499996840954, 259520.983199998736382 ], [ 360339.476499997079372, 259519.281599998474121 ], [ 360330.593599997460842, 259478.283500000834465 ], [ 360283.431100003421307, 259479.14979999884963 ], [ 360282.304700002074242, 259516.715300001204014 ], [ 360285.497599996626377, 259520.54109999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202013800", "MAP": "D9-7489-T004", "PARCEL_NAM": "9-1-6", "ACRE": ".507", "LONGITUDE": -64.93421989, "LATITUDE": 18.3763023, "OBJECTID_1": 686, "PARCEL_NO_": "101202013800", "Tax_Legal_": "PETERBORG 9-1-6 GT. NORTHSIDE", "Name": "OTTO, WILLIAM", "Address": "P.O. BOX 5080", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.717558688, "SHAPE_Area": 3001.0096172 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358389.238099999725819, 260738.216699998825788 ], [ 358398.929300002753735, 260737.211599998176098 ], [ 358400.952500000596046, 260747.273899998515844 ], [ 358404.119199998676777, 260746.253400001674891 ], [ 358405.956500001251698, 260774.912599999457598 ], [ 358409.612400002777576, 260782.937100000679493 ], [ 358459.753100000321865, 260765.826799999922514 ], [ 358424.766199998557568, 260707.911899998784065 ], [ 358419.100400000810623, 260710.398600000888109 ], [ 358411.84179999679327, 260710.550299998372793 ], [ 358406.183300003409386, 260712.192699998617172 ], [ 358399.684199996292591, 260717.839099999517202 ], [ 358394.822999998927116, 260720.543499998748302 ], [ 358381.907600000500679, 260722.126499999314547 ], [ 358389.238099999725819, 260738.216699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202013700", "MAP": "D9-7489-T004", "PARCEL_NAM": "9-1-7", "ACRE": ".542", "LONGITUDE": -64.934656, "LATITUDE": 18.37645839, "OBJECTID_1": 685, "PARCEL_NO_": "101202013700", "Tax_Legal_": "PETERBORG 9-1-7 GT. NORTHSIDE", "Name": "OTTO, WILLIAM", "Address": "P.O. BOX 5080", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 258900, "Improved_V": 336200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.042157592, "SHAPE_Area": 3435.4628502 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358405.956500001251698, 260774.912599999457598 ], [ 358404.119199998676777, 260746.253400001674891 ], [ 358400.952500000596046, 260747.273899998515844 ], [ 358398.929300002753735, 260737.211599998176098 ], [ 358389.238099999725819, 260738.216699998825788 ], [ 358381.907600000500679, 260722.126499999314547 ], [ 358376.24719999730587, 260723.980099998414516 ], [ 358364.100400000810623, 260730.002399999648333 ], [ 358351.9121999964118, 260740.87950000166893 ], [ 358347.830300003290176, 260746.756700001657009 ], [ 358341.352799996733665, 260749.870099999010563 ], [ 358336.471799999475479, 260754.89640000090003 ], [ 358365.108800001442432, 260800.938000001013279 ], [ 358374.82769999653101, 260795.951299998909235 ], [ 358401.52589999884367, 260785.615200001746416 ], [ 358409.612400002777576, 260782.937100000679493 ], [ 358405.956500001251698, 260774.912599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301020900", "MAP": "D9-7657-T005", "PARCEL_NAM": "7-7-A REM", "ACRE": ".717", "LONGITUDE": -64.92991489000001, "LATITUDE": 18.37515886, "OBJECTID_1": 868, "PARCEL_NO_": "101301020900", "Tax_Legal_": "7-7-A REM CONSOLIDATED PETERBORG NO.12 GT NORTHSIDE", "Name": "JEANS PAD USVI LLC", "Address": "6100 Red Hook Quarter", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 204400, "Improved_V": 872600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.96833676599999, "SHAPE_Area": 3195.92100867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358909.767599999904633, 260652.243700001388788 ], [ 358889.831699997186661, 260581.74210000038147 ], [ 358870.906199999153614, 260587.651399999856949 ], [ 358859.560300000011921, 260594.313499998301268 ], [ 358850.59740000218153, 260605.217000000178814 ], [ 358848.954199999570847, 260608.792199999094009 ], [ 358847.29839999973774, 260613.844900000840425 ], [ 358846.396799996495247, 260625.025400001555681 ], [ 358848.72580000013113, 260635.599199999123812 ], [ 358852.715999998152256, 260640.486999999731779 ], [ 358857.521499998867512, 260644.3260000012815 ], [ 358859.893700003623962, 260649.83390000090003 ], [ 358896.935500003397465, 260655.836599998176098 ], [ 358909.767599999904633, 260652.243700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100504010100", "MAP": "D9-7637-T005", "PARCEL_NAM": "9-2-30-1", "ACRE": "1.20", "LONGITUDE": -64.93894949, "LATITUDE": 18.38185802, "OBJECTID_1": 15, "PARCEL_NO_": "100504010100", "Tax_Legal_": "9-2-30 REM. PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "DIOCESE OF ST THOMAS IN THE VIRGIN ISLANDS INC", "Address": "PO Box 301825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 849500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.20706249800003, "SHAPE_Area": 6493.5098345799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357849.703400000929832, 261320.5016999989748 ], [ 357893.627099998295307, 261388.371700000017881 ], [ 357894.0253000035882, 261388.144400000572205 ], [ 357905.338799998164177, 261385.281700000166893 ], [ 357912.565099999308586, 261388.929400000721216 ], [ 357913.355200000107288, 261390.835700001567602 ], [ 357915.756099998950958, 261392.966299999505281 ], [ 357919.782300002872944, 261393.632599998265505 ], [ 357921.368000000715256, 261396.811900001019239 ], [ 357923.777900002896786, 261397.887099999934435 ], [ 357926.204000003635883, 261397.062600001692772 ], [ 357927.024700000882149, 261395.38060000166297 ], [ 357930.266199998557568, 261393.50730000063777 ], [ 357935.104000002145767, 261393.546900000423193 ], [ 357939.913099996745586, 261396.963700000196695 ], [ 357939.896999999880791, 261398.863400001078844 ], [ 357941.498800002038479, 261400.143100000917912 ], [ 357943.917700000107288, 261400.162900000810623 ], [ 357945.542900003492832, 261398.698600001633167 ], [ 357947.951099999248981, 261399.9847999997437 ], [ 357949.560099996626377, 261400.420200001448393 ], [ 357950.379000000655651, 261398.949200000613928 ], [ 357953.609700001776218, 261398.342399999499321 ], [ 357954.4358000010252, 261396.027100000530481 ], [ 357947.189699999988079, 261394.701299998909235 ], [ 357946.408600002527237, 261391.739500001072884 ], [ 357950.447400003671646, 261390.928199999034405 ], [ 357953.652800001204014, 261393.276500001549721 ], [ 357956.876299999654293, 261393.513999998569489 ], [ 357967.399700000882149, 261388.744899999350309 ], [ 357970.642899997532368, 261386.660599999129772 ], [ 357971.481600001454353, 261382.86769999936223 ], [ 357977.143799997866154, 261380.803100001066923 ], [ 357977.176100000739098, 261377.003699999302626 ], [ 357978.810400001704693, 261374.484000001102686 ], [ 357981.238300003111362, 261373.448399998247623 ], [ 357959.757399998605251, 261339.286499999463558 ], [ 357945.983499996364117, 261346.984200000762939 ], [ 357933.217399999499321, 261331.047699999064207 ], [ 357934.057800002396107, 261327.043800000101328 ], [ 357925.996500000357628, 261326.766800001263618 ], [ 357894.633100003004074, 261316.799800001084805 ], [ 357887.395999997854233, 261314.418499998748302 ], [ 357884.170800000429153, 261314.392099998891354 ], [ 357881.742799997329712, 261315.427700001746416 ], [ 357879.327500000596046, 261314.985700000077486 ], [ 357878.5337999984622, 261313.501600001007318 ], [ 357870.477799996733665, 261312.591299999505281 ], [ 357864.018399998545647, 261313.593899998813868 ], [ 357849.703400000929832, 261320.5016999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100504010100", "MAP": "D9-7637-T005", "PARCEL_NAM": "9-2-30-2", "ACRE": "1.20", "LONGITUDE": -64.93967473, "LATITUDE": 18.38204743, "OBJECTID_1": 15, "PARCEL_NO_": "100504010100", "Tax_Legal_": "9-2-30 REM. PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "DIOCESE OF ST THOMAS IN THE VIRGIN ISLANDS INC", "Address": "PO Box 301825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 849500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.75845345200003, "SHAPE_Area": 6624.8072957200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357783.70099999755621, 261367.224700000137091 ], [ 357838.453699998557568, 261436.102000001817942 ], [ 357847.745399996638298, 261425.340300001204014 ], [ 357857.491300001740456, 261417.187399998307228 ], [ 357867.219200000166893, 261411.145300000905991 ], [ 357874.502899996936321, 261408.038499999791384 ], [ 357876.968599997460842, 261402.570300001651049 ], [ 357881.858599998056889, 261396.488600000739098 ], [ 357886.732500001788139, 261392.306600000709295 ], [ 357893.627099998295307, 261388.371700000017881 ], [ 357849.703400000929832, 261320.5016999989748 ], [ 357836.488600000739098, 261326.878600001335144 ], [ 357813.798600003123283, 261339.991700001060963 ], [ 357783.731299996376038, 261367.187800001353025 ], [ 357783.70099999755621, 261367.224700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301021100", "MAP": "D9-7759-T006 / D9-8978-T015", "PARCEL_NAM": "7-7-B", "ACRE": ".504", "LONGITUDE": -64.92941465, "LATITUDE": 18.37503499, "OBJECTID_1": 870, "PARCEL_NO_": "101301021100", "Tax_Legal_": "7-7-B-REMAINDER ESTATE PETERBORG NO.12 GT NORTHSIDE QTR", "Name": "STAWSKI, HOPE & SCOTT", "Address": "5560 Oak Bend Trl", "City": "Prosper", "State": "Texas", "Zip": 75078, "Country": "United States", "Land_Value": 200900, "Improved_V": 922900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.26824875099999, "SHAPE_Area": 2275.1373433899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358903.98200000077486, 260577.323800001293421 ], [ 358907.553000003099442, 260585.067800000309944 ], [ 358907.87049999833107, 260599.355399999767542 ], [ 358921.946400001645088, 260635.867899999022484 ], [ 358924.5253000035882, 260647.494600001722574 ], [ 358952.749099999666214, 260635.395100001245737 ], [ 358948.314000003039837, 260588.073800001293421 ], [ 358939.460799999535084, 260586.101500000804663 ], [ 358926.624499998986721, 260578.397100001573563 ], [ 358919.383900001645088, 260576.438000001013279 ], [ 358910.519799999892712, 260575.732200000435114 ], [ 358906.481100000441074, 260576.543499998748302 ], [ 358903.98200000077486, 260577.323800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202014300", "MAP": "D9-7690-T005", "PARCEL_NAM": "9-1-1", "ACRE": ".97", "LONGITUDE": -64.93275383, "LATITUDE": 18.3751007, "OBJECTID_1": 691, "PARCEL_NO_": "101202014300", "Tax_Legal_": "PETERBORG 9-1-1 GT. NORTHSEDE", "Name": "CULBERTSON, CARLA D. & SCOTT D.", "Address": "100 Summit Rd", "City": "San Anselmo", "State": "California", "Zip": 94960, "Country": "United States", "Land_Value": 357700, "Improved_V": 1837500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.77150197099999, "SHAPE_Area": 2771.5908471299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358611.976000003516674, 260612.46680000051856 ], [ 358579.301299996674061, 260573.464499998837709 ], [ 358575.875, 260575.948600001633167 ], [ 358570.146300002932549, 260585.823100000619888 ], [ 358567.705799996852875, 260588.336199998855591 ], [ 358558.798600003123283, 260592.696299999952316 ], [ 358557.171599999070168, 260594.371700000017881 ], [ 358552.245600000023842, 260604.675000000745058 ], [ 358546.567199997603893, 260608.639299999922514 ], [ 358542.494300000369549, 260613.461100000888109 ], [ 358569.623000003397465, 260647.247000001370907 ], [ 358597.183300003409386, 260630.374000001698732 ], [ 358601.263400003314018, 260624.707899998873472 ], [ 358610.224500000476837, 260614.015500001609325 ], [ 358611.976000003516674, 260612.46680000051856 ] ] ], [ [ [ 358579.99719999730587, 260659.997600000351667 ], [ 358589.827600002288818, 260641.9239999987185 ], [ 358573.615000002086163, 260651.923799999058247 ], [ 358579.99719999730587, 260659.997600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301014100", "MAP": "D9-7690-T005", "PARCEL_NAM": "10-11", "ACRE": ".60", "LONGITUDE": -64.93241811, "LATITUDE": 18.37476801, "OBJECTID_1": 832, "PARCEL_NO_": "101301014100", "Tax_Legal_": "10-11 CONSOLIDATED PETERBORG 12 GREAT NORTHSIDE QTR", "Name": "DYLANA DREAMS LLC", "Address": "100 Summit Rd", "City": "San Anselmo", "State": "California", "Zip": 94960, "Country": "United States", "Land_Value": 251700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.30357472099999, "SHAPE_Area": 2415.1321352800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358646.184799998998642, 260585.53770000115037 ], [ 358615.702600002288818, 260538.910999998450279 ], [ 358612.448600001633167, 260542.261900000274181 ], [ 358608.362999998033047, 260548.561200000345707 ], [ 358596.995600000023842, 260557.756299998611212 ], [ 358589.702799998223782, 260561.918499998748302 ], [ 358584.800200000405312, 260569.477699998766184 ], [ 358579.301299996674061, 260573.464499998837709 ], [ 358611.976000003516674, 260612.46680000051856 ], [ 358628.911799997091293, 260597.491999998688698 ], [ 358637.034299999475479, 260590.592399999499321 ], [ 358646.184799998998642, 260585.53770000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301013900", "MAP": "D9-1542-T80", "PARCEL_NAM": "10-9", "ACRE": ".51", "LONGITUDE": -64.93167743, "LATITUDE": 18.37422497, "OBJECTID_1": 830, "PARCEL_NO_": "101301013900", "Tax_Legal_": "PETERBORG 10-9 GT. NORTHSIDE", "Name": "CLARK, JOHN J. & MELANIE D", "Address": "PO Box 7307", "City": "Los Angeles", "State": "California", "Zip": 90007, "Country": "United States", "Land_Value": 231900, "Improved_V": 1071900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.873107369, "SHAPE_Area": 2757.1469872799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358726.348999999463558, 260518.496100001037121 ], [ 358694.423799999058247, 260479.815799999982119 ], [ 358684.674300000071526, 260488.390900000929832 ], [ 358674.946400001645088, 260494.43299999833107 ], [ 358660.292499996721745, 260510.778299998492002 ], [ 358657.350199997425079, 260514.563299998641014 ], [ 358678.242299996316433, 260542.525199998170137 ], [ 358691.961000002920628, 260554.884799998253584 ], [ 358694.609700001776218, 260552.644600000232458 ], [ 358710.055500000715256, 260537.994500000029802 ], [ 358726.348999999463558, 260518.496100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301014000", "MAP": "D9-7690-T005", "PARCEL_NAM": "10-10", "ACRE": ".64", "LONGITUDE": -64.93203608, "LATITUDE": 18.37453327, "OBJECTID_1": 831, "PARCEL_NO_": "101301014000", "Tax_Legal_": "10-10 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "10 10 PETERBORG LLC", "Address": "22325 Nelson Rd", "City": "Merrill", "State": "Michigan", "Zip": 48637, "Country": "United States", "Land_Value": 285500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.58974789300001, "SHAPE_Area": 2646.3458292800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358615.702600002288818, 260538.910999998450279 ], [ 358646.184799998998642, 260585.53770000115037 ], [ 358663.770199999213219, 260575.823600001633167 ], [ 358677.553099997341633, 260567.070500001311302 ], [ 358691.961000002920628, 260554.884799998253584 ], [ 358678.242299996316433, 260542.525199998170137 ], [ 358657.350199997425079, 260514.563299998641014 ], [ 358657.031300000846386, 260514.973499998450279 ], [ 358656.203400000929832, 260517.499800000339746 ], [ 358649.689999997615814, 260524.834800001233816 ], [ 358639.150399997830391, 260531.503499999642372 ], [ 358630.257600001990795, 260534.175000000745058 ], [ 358622.181800000369549, 260535.586500000208616 ], [ 358615.702600002288818, 260538.910999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301017100", "MAP": "D9-7717-T006", "PARCEL_NAM": "10-A-18", "ACRE": ".547", "LONGITUDE": -64.9299631, "LATITUDE": 18.37564408, "OBJECTID_1": 857, "PARCEL_NO_": "101301017100", "Tax_Legal_": "PETERBORG 10-A-18&7-4 GT. NORTHSIDE", "Name": "AUGUSTO TROMBEN REVOCABLE TRUST", "Address": "7350 Bovoni Commerical Ctr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.27859327300001, "SHAPE_Area": 2395.8012749300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358907.0591000020504, 260691.048900000751019 ], [ 358897.996899999678135, 260658.986699998378754 ], [ 358897.841499999165535, 260655.582899998873472 ], [ 358896.935500003397465, 260655.836599998176098 ], [ 358859.893700003623962, 260649.83390000090003 ], [ 358859.832599997520447, 260657.010499998927116 ], [ 358857.377700001001358, 260661.21229999884963 ], [ 358855.743500001728535, 260663.732099998742342 ], [ 358843.576800003647804, 260672.076200000941753 ], [ 358831.431800000369549, 260677.887499999254942 ], [ 358820.922799997031689, 260680.967799998819828 ], [ 358820.904799997806549, 260683.078600000590086 ], [ 358837.004100002348423, 260686.376800000667572 ], [ 358853.071000002324581, 260693.474399998784065 ], [ 358860.311599999666214, 260695.433499999344349 ], [ 358865.948600001633167, 260696.324000000953674 ], [ 358877.240599997341633, 260695.994199998676777 ], [ 358888.543300002813339, 260694.397999998182058 ], [ 358890.965899996459484, 260693.995600000023842 ], [ 358903.076700001955032, 260692.194899998605251 ], [ 358907.0591000020504, 260691.048900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202010600", "MAP": "D9-7729-T006", "PARCEL_NAM": "9-1-34", "ACRE": ".82", "LONGITUDE": -64.93396912, "LATITUDE": 18.37809254, "OBJECTID_1": 661, "PARCEL_NO_": "101202010600", "Tax_Legal_": "PETERBORG 9-1-33B&9-1-34 No.12 GREAT NORTHSIDE QTR", "Name": "TODD, BRANDON L & OLGA V", "Address": "PO BOX 500206", "City": "Austin", "State": "Texas", "Zip": 78750, "Country": "United States", "Land_Value": 337600, "Improved_V": 333800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.79828527199999, "SHAPE_Area": 3588.2987768100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358412.581299997866154, 260907.717700000852346 ], [ 358425.598099999129772, 260929.397700000554323 ], [ 358421.168499998748302, 260934.809900000691414 ], [ 358439.280199997127056, 260991.951499998569489 ], [ 358440.894599996507168, 260991.753600001335144 ], [ 358442.519799999892712, 260990.289299998432398 ], [ 358445.739699997007847, 260990.948899999260902 ], [ 358448.181999996304512, 260988.224700000137091 ], [ 358454.646899998188019, 260986.588799998164177 ], [ 358456.270300000905991, 260985.33559999987483 ], [ 358468.38120000064373, 260983.534800000488758 ], [ 358471.619000002741814, 260982.083700001239777 ], [ 358474.059500001370907, 260979.570500001311302 ], [ 358478.895599998533726, 260979.821199998259544 ], [ 358450.611000001430511, 260892.408100001513958 ], [ 358444.938100002706051, 260895.739100001752377 ], [ 358412.581299997866154, 260907.717700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202010900", "MAP": "D9-7729-T006", "PARCEL_NAM": "9-1-39", "ACRE": ".79", "LONGITUDE": -64.93435599, "LATITUDE": 18.3781832, "OBJECTID_1": 664, "PARCEL_NO_": "101202010900", "Tax_Legal_": "PETERBORG 9-1-39\nGT. NORTHSIDE", "Name": "MATTHEW R STEWART and MEAGHAN ELLIOTT", "Address": "36 Myrtle St", "City": "Boston", "State": "Massachusetts", "Zip": 2114, "Country": "United States", "Land_Value": 306100, "Improved_V": 307200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.74024630299999, "SHAPE_Area": 3739.2979207899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358439.280199997127056, 260991.951499998569489 ], [ 358421.168499998748302, 260934.809900000691414 ], [ 358425.598099999129772, 260929.397700000554323 ], [ 358412.581299997866154, 260907.717700000852346 ], [ 358394.78660000115633, 260914.11600000038743 ], [ 358363.191200003027916, 260931.378199998289347 ], [ 358415.771300002932549, 261006.535599999129772 ], [ 358426.332500003278255, 260997.333999998867512 ], [ 358431.218900002539158, 260991.674400001764297 ], [ 358435.259400002658367, 260990.651999998837709 ], [ 358439.280199997127056, 260991.951499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202011500", "MAP": "D9-8167-T008", "PARCEL_NAM": "9-2-6", "ACRE": ".94", "LONGITUDE": -64.93535134, "LATITUDE": 18.37894509, "OBJECTID_1": 669, "PARCEL_NO_": "101202011500", "Tax_Legal_": "9-2-6 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "OCEANSCAPE, LLC", "Address": "36782 Bayside Dr", "City": "Fenwick Island", "State": "Delaware", "Zip": 19944, "Country": "United States", "Land_Value": 200000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.39110476799999, "SHAPE_Area": 4161.9098921799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358352.409599997103214, 261061.112500000745058 ], [ 358298.159299999475479, 260992.696299999952316 ], [ 358294.898100003600121, 260996.891499999910593 ], [ 358290.884499996900558, 260994.747699998319149 ], [ 358287.661100000143051, 260994.510200001299381 ], [ 358281.982699997723103, 260998.474599998444319 ], [ 358255.930799998342991, 261027.603300001472235 ], [ 358284.603799998760223, 261069.42339999973774 ], [ 358287.010200001299381, 261070.920800000429153 ], [ 358293.465999998152256, 261070.340300001204014 ], [ 358296.676899999380112, 261072.055399999022484 ], [ 358301.521999999880791, 261071.250700000673532 ], [ 358303.123800002038479, 261072.530299998819828 ], [ 358305.541000001132488, 261072.761199999600649 ], [ 358307.976099997758865, 261070.881299998611212 ], [ 358311.204899996519089, 261070.485500000417233 ], [ 358312.833700001239777, 261068.598999999463558 ], [ 358312.8733000010252, 261063.955299999564886 ], [ 358314.512900002300739, 261060.802299998700619 ], [ 358317.730899997055531, 261061.673000000417233 ], [ 358317.712999999523163, 261063.7837999984622 ], [ 358320.104900002479553, 261066.969799999147654 ], [ 358322.514899998903275, 261068.045000001788139 ], [ 358323.295999996364117, 261071.006700001657009 ], [ 358324.901399999856949, 261071.864199999719858 ], [ 358328.128499999642372, 261071.679499998688698 ], [ 358329.751900002360344, 261070.426199998706579 ], [ 358330.597800001502037, 261065.789099998772144 ], [ 358333.02929999679327, 261064.331300001591444 ], [ 358333.86259999871254, 261061.171799998730421 ], [ 358333.077899999916553, 261058.632199998944998 ], [ 358347.596900001168251, 261058.117800001055002 ], [ 358352.409599997103214, 261061.112500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101202011300", "MAP": "D9-8167-T008", "PARCEL_NAM": "9-2-2", "ACRE": ".90", "LONGITUDE": -64.93497299000001, "LATITUDE": 18.37867465, "OBJECTID_1": 667, "PARCEL_NO_": "101202011300", "Tax_Legal_": "9-2-2 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "OCEANSCAPE, LLC", "Address": "36782 Bayside Dr", "City": "Fenwick Island", "State": "Delaware", "Zip": 19944, "Country": "United States", "Land_Value": 230000, "Improved_V": 632200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.15513852100003, "SHAPE_Area": 4484.1135737100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358298.159299999475479, 260992.696299999952316 ], [ 358352.409599997103214, 261061.112500000745058 ], [ 358357.256399996578693, 261060.096700001507998 ], [ 358358.899599999189377, 261056.521499998867512 ], [ 358358.138300001621246, 261051.238000001758337 ], [ 358369.460799999535084, 261047.31980000063777 ], [ 358373.542700000107288, 261041.442600000649691 ], [ 358379.203100003302097, 261039.589099999517202 ], [ 358382.464299999177456, 261035.393899999558926 ], [ 358385.689599998295307, 261035.420299999415874 ], [ 358387.309399999678135, 261034.589200001209974 ], [ 358327.535400003194809, 260951.984600000083447 ], [ 358316.983199998736382, 260960.130899999290705 ], [ 358300.693400003015995, 260979.207100000232458 ], [ 358297.432099997997284, 260983.402300000190735 ], [ 358297.367399998009205, 260991.0011 ], [ 358298.159299999475479, 260992.696299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303011800", "MAP": "D9-5498-T93", "PARCEL_NAM": "8-14-A", "ACRE": null, "LONGITUDE": -64.92438805, "LATITUDE": 18.37143058, "OBJECTID_1": 908, "PARCEL_NO_": "101303011800", "Tax_Legal_": "8-13REM.&8-14-A ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "BROWN, RICHARD L. & DOLORITA M. BAECHER, TRUSTEES", "Address": "PO Box 11958", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 181000, "Improved_V": 449000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.476425032100003, "SHAPE_Area": 62.446375546900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359457.981299996376038, 260220.461300000548363 ], [ 359464.414800003170967, 260219.662500001490116 ], [ 359469.119800001382828, 260212.275400001555681 ], [ 359467.961300000548363, 260205.843400001525879 ], [ 359457.981299996376038, 260220.461300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92452608000001, "LATITUDE": 18.3711913, "OBJECTID_1": 908, "PARCEL_NO_": "101303011800", "Tax_Legal_": "8-13REM.&8-14-A ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "BROWN, RICHARD L. & DOLORITA M. BAECHER, TRUSTEES", "Address": "PO Box 11958", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 181000, "Improved_V": 449000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.27351074699999, "SHAPE_Area": 2263.8374752499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359467.961300000548363, 260205.843400001525879 ], [ 359466.223499998450279, 260196.195500001311302 ], [ 359476.142399996519089, 260185.927200000733137 ], [ 359474.84910000115633, 260182.787500001490116 ], [ 359461.776500001549721, 260151.051699999719858 ], [ 359450.315800003707409, 260157.752000000327826 ], [ 359431.63400000333786, 260173.642200000584126 ], [ 359431.61599999666214, 260175.752900000661612 ], [ 359433.212399996817112, 260177.665899999439716 ], [ 359429.961999997496605, 260180.5945999994874 ], [ 359428.369099996984005, 260178.259500000625849 ], [ 359425.948399998247623, 260178.450800001621246 ], [ 359417.820500001311302, 260185.983600001782179 ], [ 359450.557499997317791, 260224.037300001829863 ], [ 359453.351800002157688, 260227.24210000038147 ], [ 359457.981299996376038, 260220.461300000548363 ], [ 359467.961300000548363, 260205.843400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011900", "MAP": "A9-109-T69", "PARCEL_NAM": "8-15", "ACRE": null, "LONGITUDE": -64.92413052000001, "LATITUDE": 18.37098429, "OBJECTID_1": 953, "PARCEL_NO_": "101304011900", "Tax_Legal_": "PETERBORG 8-15 GR NORTHSIDE", "Name": "MCBRIDE REVOCABLE TRUST", "Address": "6200 Lamb Creek Dr", "City": "Fort Worth", "State": "Texas", "Zip": 76179, "Country": "United States", "Land_Value": 157900, "Improved_V": 242500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.448507447, "SHAPE_Area": 2136.6746093199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359474.84910000115633, 260182.787500001490116 ], [ 359478.180600002408028, 260190.875100001692772 ], [ 359514.282300002872944, 260186.712900001555681 ], [ 359517.06530000269413, 260178.774300001561642 ], [ 359518.816399998962879, 260162.534499999135733 ], [ 359517.273900002241135, 260154.289200000464916 ], [ 359516.483800001442432, 260152.38289999961853 ], [ 359509.259300000965595, 260148.524099998176098 ], [ 359503.670900002121925, 260141.934399999678135 ], [ 359480.282399997115135, 260142.376299999654293 ], [ 359473.817500002682209, 260144.012099999934435 ], [ 359461.776500001549721, 260151.051699999719858 ], [ 359474.84910000115633, 260182.787500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92422247, "LATITUDE": 18.37142321, "OBJECTID_1": 947, "PARCEL_NO_": "101304011200", "Tax_Legal_": "8-14 REM,8-13-A,8-27-1-1 & 10-29A-1 PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "MARK VAN DEN DRIESSCHE&CHARLOTTE WARDELL FAM TRUST", "Address": "PO Box 302808", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 168600, "Improved_V": 580200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.56543819699999, "SHAPE_Area": 1664.3015316200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359467.961300000548363, 260205.843400001525879 ], [ 359469.119800001382828, 260212.275400001555681 ], [ 359464.414800003170967, 260219.662500001490116 ], [ 359457.981299996376038, 260220.461300000548363 ], [ 359453.351800002157688, 260227.24210000038147 ], [ 359460.938799999654293, 260235.943500000983477 ], [ 359468.129100002348423, 260243.812800001353025 ], [ 359472.119300000369549, 260248.700599998235703 ], [ 359508.822400003671646, 260199.816199999302626 ], [ 359510.461999997496605, 260196.663199998438358 ], [ 359507.247500002384186, 260195.370400000363588 ], [ 359510.523100003600121, 260189.486600000411272 ], [ 359512.933100000023842, 260190.561799999326468 ], [ 359514.282300002872944, 260186.712900001555681 ], [ 359478.180600002408028, 260190.875100001692772 ], [ 359467.961300000548363, 260205.843400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011200", "MAP": "D9-5498-T93", "PARCEL_NAM": "8-13-A", "ACRE": null, "LONGITUDE": -64.92432177000001, "LATITUDE": 18.37125636, "OBJECTID_1": 947, "PARCEL_NO_": "101304011200", "Tax_Legal_": "8-14 REM,8-13-A,8-27-1-1 & 10-29A-1 PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "MARK VAN DEN DRIESSCHE&CHARLOTTE WARDELL FAM TRUST", "Address": "PO Box 302808", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 168600, "Improved_V": 580200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.555192104100001, "SHAPE_Area": 97.3066353464 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359476.142399996519089, 260185.927200000733137 ], [ 359466.223499998450279, 260196.195500001311302 ], [ 359467.961300000548363, 260205.843400001525879 ], [ 359478.180600002408028, 260190.875100001692772 ], [ 359476.142399996519089, 260185.927200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011000", "MAP": "A9-139-T70", "PARCEL_NAM": "10-1-27", "ACRE": ".57", "LONGITUDE": -64.92446912, "LATITUDE": 18.37247874, "OBJECTID_1": 946, "PARCEL_NO_": "101304011000", "Tax_Legal_": "PETERBORG 10-1-27 GT.NORTHSIDE QTR.", "Name": "POITRAS, MAURICE", "Address": "76 Perrys Point Way", "City": "Willsboro", "State": "New York", "Zip": 12996, "Country": "United States", "Land_Value": 170400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.547900599, "SHAPE_Area": 1811.38036188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359457.157999999821186, 260301.140500001609325 ], [ 359456.528899997472763, 260300.223999999463558 ], [ 359453.916500002145767, 260303.013799998909235 ], [ 359426.366999998688698, 260318.620299998670816 ], [ 359445.418200001120567, 260354.028900001198053 ], [ 359467.194099999964237, 260353.573800001293421 ], [ 359473.689499996602535, 260348.349599998444319 ], [ 359484.216499999165535, 260343.158500000834465 ], [ 359485.035400003194809, 260341.6875 ], [ 359457.157999999821186, 260301.140500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304010800", "MAP": "D9-1045-T72", "PARCEL_NAM": "10-1-30", "ACRE": null, "LONGITUDE": -64.92414138, "LATITUDE": 18.3722421, "OBJECTID_1": 944, "PARCEL_NO_": "101304010800", "Tax_Legal_": "PETERBORG 10-1-30 GT.NORTHSIDE QTR.", "Name": "THOMAS SUSAN SWEITZER REVOCABLE TRUST", "Address": "411 Walnut St", "City": "Green Cove Springs", "State": "Florida", "Zip": 32043, "Country": "United States", "Land_Value": 165100, "Improved_V": 311700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.50403458, "SHAPE_Area": 2590.87323612 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359456.528899997472763, 260300.223999999463558 ], [ 359457.157999999821186, 260301.140500001609325 ], [ 359485.035400003194809, 260341.6875 ], [ 359486.674999997019768, 260338.534499999135733 ], [ 359487.537100002169609, 260331.997699998319149 ], [ 359494.020000003278255, 260328.2511 ], [ 359495.616400003433228, 260330.164000000804663 ], [ 359500.443499997258186, 260331.469999998807907 ], [ 359505.284999996423721, 260331.087499998509884 ], [ 359507.721900001168251, 260328.996500000357628 ], [ 359524.852200001478195, 260305.916400000452995 ], [ 359496.865099996328354, 260278.245200000703335 ], [ 359487.538199998438358, 260267.109600000083447 ], [ 359456.528899997472763, 260300.223999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304010100", "MAP": "D9-7938-T007", "PARCEL_NAM": "10-1-29A REM", "ACRE": ".03", "LONGITUDE": -64.92423902, "LATITUDE": 18.37190176, "OBJECTID_1": 937, "PARCEL_NO_": "101304010100", "Tax_Legal_": "8-27-1 REM & 10-1-29A REM PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "BILGER, ERIC W.", "Address": "2738 Claudia Ct", "City": "Bellmore", "State": "New York", "Zip": 11710, "Country": "United States", "Land_Value": 383400, "Improved_V": 1084300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.992225339299999, "SHAPE_Area": 142.10264860500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359479.508500002324581, 260257.522799998521805 ], [ 359474.276199996471405, 260260.614500001072884 ], [ 359477.410199999809265, 260277.925200000405312 ], [ 359487.538199998438358, 260267.109600000083447 ], [ 359479.508500002324581, 260257.522799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011200", "MAP": "D9-7938-T007", "PARCEL_NAM": "10-1-29A-1", "ACRE": ".01", "LONGITUDE": -64.92428365000001, "LATITUDE": 18.37180144, "OBJECTID_1": 947, "PARCEL_NO_": "101304011200", "Tax_Legal_": "8-14 REM,8-13-A,8-27-1-1 & 10-29A-1 PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "MARK VAN DEN DRIESSCHE&CHARLOTTE WARDELL FAM TRUST", "Address": "PO Box 302808", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 168600, "Improved_V": 580200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.692921594200001, "SHAPE_Area": 34.502793388999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359474.276199996471405, 260260.614500001072884 ], [ 359479.508500002324581, 260257.522799998521805 ], [ 359472.119300000369549, 260248.700599998235703 ], [ 359474.276199996471405, 260260.614500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304011200", "MAP": "D9-7938-T007", "PARCEL_NAM": "8-27-1-1", "ACRE": ".69", "LONGITUDE": -64.92413638, "LATITUDE": 18.37157389, "OBJECTID_1": 947, "PARCEL_NO_": "101304011200", "Tax_Legal_": "8-14 REM,8-13-A,8-27-1-1 & 10-29A-1 PETERBORG NO.12 GREAT NORTHSIDE QTR", "Name": "MARK VAN DEN DRIESSCHE&CHARLOTTE WARDELL FAM TRUST", "Address": "PO Box 302808", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 168600, "Improved_V": 580200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.35953779100001, "SHAPE_Area": 500.174342293 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359479.508500002324581, 260257.522799998521805 ], [ 359512.618299998342991, 260203.100699998438358 ], [ 359508.822400003671646, 260199.816199999302626 ], [ 359472.119300000369549, 260248.700599998235703 ], [ 359479.508500002324581, 260257.522799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304010700", "MAP": "D9-6548-T99", "PARCEL_NAM": "10-1-29 REM", "ACRE": null, "LONGITUDE": -64.92448913, "LATITUDE": 18.37189603, "OBJECTID_1": 943, "PARCEL_NO_": "101304010700", "Tax_Legal_": "10-1-29 REM PETERBORG NO 12 GREAT NORTHSIDE QTR", "Name": "VILLA DB LLC", "Address": "PO Box 11196", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 182900, "Improved_V": 1249700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.82772801900001, "SHAPE_Area": 2152.5096072299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359477.410199999809265, 260277.925200000405312 ], [ 359472.119300000369549, 260248.700599998235703 ], [ 359468.129100002348423, 260243.812800001353025 ], [ 359460.938799999654293, 260235.943500000983477 ], [ 359456.8733000010252, 260231.280799999833107 ], [ 359443.2837999984622, 260241.905299998819828 ], [ 359432.634499996900558, 260250.230999998748302 ], [ 359435.406199999153614, 260254.105999998748302 ], [ 359422.837200000882149, 260259.696299999952316 ], [ 359453.916500002145767, 260303.013799998909235 ], [ 359477.410199999809265, 260277.925200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303012900", "MAP": "A9-139-T70", "PARCEL_NAM": "10-1-16", "ACRE": null, "LONGITUDE": -64.92476663, "LATITUDE": 18.37147055, "OBJECTID_1": 919, "PARCEL_NO_": "101303012900", "Tax_Legal_": "PETERBORG 10-1-16 GT. NORTHSIDE QTR", "Name": "GOLDAMMER-GAVIOLA LIVING TRUST", "Address": "1851 Barry Ave", "City": "Los Angeles", "State": "California", "Zip": 90025, "Country": "United States", "Land_Value": 181200, "Improved_V": 637600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.82818454100001, "SHAPE_Area": 1951.6479015899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359443.2837999984622, 260241.905299998819828 ], [ 359456.8733000010252, 260231.280799999833107 ], [ 359450.557499997317791, 260224.037300001829863 ], [ 359417.820500001311302, 260185.983600001782179 ], [ 359392.679200001060963, 260202.876400001347065 ], [ 359418.195299997925758, 260236.649099998176098 ], [ 359420.551299996674061, 260244.056699998676777 ], [ 359425.365800000727177, 260246.840300001204014 ], [ 359428.590999998152256, 260246.866700001060963 ], [ 359429.909699998795986, 260246.421399999409914 ], [ 359432.634499996900558, 260250.230999998748302 ], [ 359443.2837999984622, 260241.905299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301013400", "MAP": "D9-1542-T80", "PARCEL_NAM": "10-4", "ACRE": ".5", "LONGITUDE": -64.92988269, "LATITUDE": 18.37328313, "OBJECTID_1": 825, "PARCEL_NO_": "101301013400", "Tax_Legal_": "PETERBORG 10-4 GT. NORTHSIDE QTR", "Name": "JASETH III LLC", "Address": "130 Campbell Dr", "City": "Far Hills", "State": "New Jersey", "Zip": 7931, "Country": "United States", "Land_Value": 253100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.68039037400001, "SHAPE_Area": 1706.0710684200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358880.226300001144409, 260440.173300001770258 ], [ 358890.738899998366833, 260436.670699998736382 ], [ 358897.207400001585484, 260434.612700000405312 ], [ 358914.998400002717972, 260428.636599998921156 ], [ 358881.482100002467632, 260387.410199999809265 ], [ 358850.705600000917912, 260403.201400000602007 ], [ 358873.847699999809265, 260431.677299998700619 ], [ 358876.237899996340275, 260435.074400000274181 ], [ 358880.226300001144409, 260440.173300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91319795, "LATITUDE": 18.35884391, "OBJECTID_1": 5159, "PARCEL_NO_": "103001013900", "Tax_Legal_": "7-1-A ST JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "JACKSON DEVELOPMENT COMPANY, LLC.", "Address": "PO BOX 303217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 249400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 311.796139702, "SHAPE_Area": 5620.3595973299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360644.206299997866154, 258872.675500001758337 ], [ 360653.730999998748302, 258890.485300000756979 ], [ 360664.1266999989748, 258900.702899999916553 ], [ 360686.435900002717972, 258854.895899999886751 ], [ 360696.255999997258186, 258802.934099998325109 ], [ 360686.168200001120567, 258798.225499998778105 ], [ 360676.358499996364117, 258792.97520000115037 ], [ 360670.391800001263618, 258786.396499998867512 ], [ 360663.576800003647804, 258775.942099999636412 ], [ 360633.672700002789497, 258792.548099998384714 ], [ 360616.576999999582767, 258802.999600000679493 ], [ 360618.139200001955032, 258808.923000000417233 ], [ 360620.520400002598763, 258813.375399999320507 ], [ 360622.858400002121925, 258822.893800001591444 ], [ 360626.821699999272823, 258830.947799999266863 ], [ 360633.914800003170967, 258850.215399999171495 ], [ 360636.308600001037121, 258853.19029999896884 ], [ 360644.206299997866154, 258872.675500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026400", "MAP": "D9-2055-T82", "PARCEL_NAM": "3I-1", "ACRE": ".50", "LONGITUDE": -64.93516963, "LATITUDE": 18.3619752, "OBJECTID_1": 4146, "PARCEL_NO_": "102802026400", "Tax_Legal_": "3i-1 & 1/8 INTEREST IN 3i-9 & 3i-10 ROW LERKENLUND NO.9 NORTHSIDE QTR", "Name": "ZAZULAK, O. GREGORY & JANET L.", "Address": "392 Fisher Rd Cir", "City": "Pittsford", "State": "New York", "Zip": 14534, "Country": "United States", "Land_Value": 142400, "Improved_V": 598000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.20359548699997, "SHAPE_Area": 3801.6982263599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358384.667099997401237, 259170.80460000038147 ], [ 358358.489900000393391, 259131.213100001215935 ], [ 358357.936499997973442, 259134.370000001043081 ], [ 358356.878200002014637, 259136.486699998378754 ], [ 358354.443999998271465, 259138.709199998527765 ], [ 358351.586499996483326, 259140.614199999719858 ], [ 358349.998999997973442, 259141.778299998492002 ], [ 358348.838799998164177, 259142.715399999171495 ], [ 358345.482900001108646, 259137.183800000697374 ], [ 358347.458999998867512, 259135.957499999552965 ], [ 358348.411499999463558, 259135.004999998956919 ], [ 358349.152400001883507, 259134.158300001174212 ], [ 358349.152400001883507, 259132.888300001621246 ], [ 358348.940700002014637, 259132.041700001806021 ], [ 358347.988200001418591, 259131.618299998342991 ], [ 358347.035700000822544, 259131.512499999254942 ], [ 358346.189000003039837, 259131.300799999386072 ], [ 358344.707299999892712, 259131.300799999386072 ], [ 358341.916900001466274, 259131.305799998342991 ], [ 358328.727600000798702, 259130.587799999862909 ], [ 358312.376299999654293, 259130.1114999987185 ], [ 358303.009999997913837, 259130.746500000357628 ], [ 358298.774099998176098, 259129.822299998253584 ], [ 358296.312600001692772, 259180.440400000661612 ], [ 358315.968999996781349, 259186.092300001531839 ], [ 358325.639300003647804, 259186.804800000041723 ], [ 358334.52139999717474, 259185.39979999884963 ], [ 358357.951200000941753, 259180.103100001811981 ], [ 358369.271899998188019, 259176.396099999547005 ], [ 358384.667099997401237, 259170.80460000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802027600", "MAP": "D9-6504-T98", "PARCEL_NAM": "3C-1-A", "ACRE": ".508", "LONGITUDE": -64.93867673, "LATITUDE": 18.35962319, "OBJECTID_1": 4158, "PARCEL_NO_": "102802027600", "Tax_Legal_": "3C-1-A ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "FIRSTBANK PUERTO RICO", "Address": "PO Box 2192", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 120100, "Improved_V": 199900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.88246307099999, "SHAPE_Area": 1582.2483957500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357970.672600001096725, 258923.887600000947714 ], [ 357989.921499997377396, 258915.538800001144409 ], [ 357989.899099998176098, 258881.670800000429153 ], [ 357989.857299998402596, 258881.670499999076128 ], [ 357977.561200000345707, 258885.2956000007689 ], [ 357961.880199998617172, 258886.183600001037121 ], [ 357953.892399996519089, 258885.296300001442432 ], [ 357947.631300002336502, 258881.847199998795986 ], [ 357948.366499997675419, 258855.599599998444319 ], [ 357930.972699999809265, 258875.904399998486042 ], [ 357953.101000003516674, 258902.368000000715256 ], [ 357964.277900002896786, 258915.5472999997437 ], [ 357970.672600001096725, 258923.887600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93902891, "LATITUDE": 18.35913358, "OBJECTID_1": 4109, "PARCEL_NO_": "102802022800", "Tax_Legal_": "LERKENLUND 3AE GR NORHTSIDE", "Name": "BRYAN, RONNIE", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032621, "Country": "United States", "Land_Value": 61800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.24614027499999, "SHAPE_Area": 1972.7414375599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357948.366499997675419, 258855.599599998444319 ], [ 357948.78999999910593, 258840.482299998402596 ], [ 357950.474600002169609, 258832.052299998700619 ], [ 357938.57769999653101, 258808.734700001776218 ], [ 357898.058899998664856, 258832.256599999964237 ], [ 357919.566799998283386, 258863.252300001680851 ], [ 357930.972699999809265, 258875.904399998486042 ], [ 357948.366499997675419, 258855.599599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020400", "MAP": "D9-5500-T93", "PARCEL_NAM": "3C-3A", "ACRE": ".01", "LONGITUDE": -64.93843307, "LATITUDE": 18.3593201, "OBJECTID_1": 4089, "PARCEL_NO_": "102802020400", "Tax_Legal_": "LERKENLUND 3C-2 REM. & 3C-3A GREAT NORTHSIDE QTR", "Name": "TURNER, THERESA & LUCAS, JOHN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120100, "Improved_V": 226400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.313730128299994, "SHAPE_Area": 100.426230954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357985.688500002026558, 258849.332899998873472 ], [ 357983.563400000333786, 258859.605099998414516 ], [ 358005.585299998521805, 258875.025400001555681 ], [ 357986.67960000038147, 258853.534299999475479 ], [ 357985.688500002026558, 258849.332899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020400", "MAP": "D9-5500-T93", "PARCEL_NAM": "3C-2", "ACRE": ".49", "LONGITUDE": -64.93835721000001, "LATITUDE": 18.35911871, "OBJECTID_1": 4089, "PARCEL_NO_": "102802020400", "Tax_Legal_": "LERKENLUND 3C-2 REM. & 3C-3A GREAT NORTHSIDE QTR", "Name": "TURNER, THERESA & LUCAS, JOHN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120100, "Improved_V": 226400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.656891368, "SHAPE_Area": 1710.49886087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358024.751299999654293, 258872.137499999254942 ], [ 357993.525600001215935, 258795.252199999988079 ], [ 357978.612800002098083, 258811.825899999588728 ], [ 357977.208800002932549, 258813.386399999260902 ], [ 357988.529700003564358, 258835.599399998784065 ], [ 357985.688500002026558, 258849.332899998873472 ], [ 357986.67960000038147, 258853.534299999475479 ], [ 358005.585299998521805, 258875.025400001555681 ], [ 358024.751299999654293, 258872.137499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802027100", "MAP": "D9-6504-T98", "PARCEL_NAM": "3C-1-B", "ACRE": ".50", "LONGITUDE": -64.93835859000001, "LATITUDE": 18.35974546, "OBJECTID_1": 4153, "PARCEL_NO_": "102802027100", "Tax_Legal_": "LERKENLUND 3C-1-B GT. NORTHSIDE QTR.", "Name": "STRICKLAND, JEFFREY STEVEN", "Address": "145 Coral Dr", "City": "FORT MYERS", "State": "Florida", "Zip": 33905, "Country": "United States", "Land_Value": 65500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.936848379, "SHAPE_Area": 1597.58374809 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357989.899099998176098, 258881.670800000429153 ], [ 357989.921499997377396, 258915.538800001144409 ], [ 357970.672600001096725, 258923.887600000947714 ], [ 357987.405599996447563, 258945.711899999529123 ], [ 357989.797600001096725, 258948.897799998521805 ], [ 358028.276900000870228, 258880.818500000983477 ], [ 358006.892800003290176, 258881.809599999338388 ], [ 357989.899099998176098, 258881.670800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026200", "MAP": "D9-5500-T93", "PARCEL_NAM": "3C-3", "ACRE": ".4933", "LONGITUDE": -64.93857318000001, "LATITUDE": 18.35930186, "OBJECTID_1": 4144, "PARCEL_NO_": "102802026200", "Tax_Legal_": "LERKENLUND ESTATE 3C-3REM.&3C-2A No.9 GREAT NORTHSIDE QTR.", "Name": "ROSARIO, KIMBERLY", "Address": "4018 Oak Hill Rd", "City": "Chapel Hill", "State": "North Carolina", "Zip": 27514, "Country": "United States", "Land_Value": 163500, "Improved_V": 403700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.291326239, "SHAPE_Area": 2226.5301713399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357977.208800002932549, 258813.386399999260902 ], [ 357955.972499996423721, 258836.987900000065565 ], [ 357955.256700001657009, 258838.635400000959635 ], [ 357954.089000001549721, 258881.055599998682737 ], [ 357953.892399996519089, 258885.296300001442432 ], [ 357961.880199998617172, 258886.183600001037121 ], [ 357977.561200000345707, 258885.2956000007689 ], [ 357989.857299998402596, 258881.670499999076128 ], [ 358006.892800003290176, 258881.809599999338388 ], [ 358028.276900000870228, 258880.818500000983477 ], [ 358024.751299999654293, 258872.137499999254942 ], [ 358005.585299998521805, 258875.025400001555681 ], [ 357983.563400000333786, 258859.605099998414516 ], [ 357985.688500002026558, 258849.332899998873472 ], [ 357977.208800002932549, 258813.386399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026200", "MAP": "D9-5500-T93", "PARCEL_NAM": "3C-2A", "ACRE": ".01", "LONGITUDE": -64.9385063, "LATITUDE": 18.35905745, "OBJECTID_1": 4144, "PARCEL_NO_": "102802026200", "Tax_Legal_": "LERKENLUND ESTATE 3C-3REM.&3C-2A No.9 GREAT NORTHSIDE QTR.", "Name": "ROSARIO, KIMBERLY", "Address": "4018 Oak Hill Rd", "City": "Chapel Hill", "State": "North Carolina", "Zip": 27514, "Country": "United States", "Land_Value": 163500, "Improved_V": 403700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.888956230999995, "SHAPE_Area": 109.293577896 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357988.529700003564358, 258835.599399998784065 ], [ 357977.208800002932549, 258813.386399999260902 ], [ 357985.688500002026558, 258849.332899998873472 ], [ 357988.529700003564358, 258835.599399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020600", "MAP": "G9-433-T56", "PARCEL_NAM": "3G", "ACRE": null, "LONGITUDE": -64.93709533000001, "LATITUDE": 18.35915477, "OBJECTID_1": 4091, "PARCEL_NO_": "102802020600", "Tax_Legal_": "LERKENLUND 3G GREAT NORTHSIDE QTR", "Name": "BERRY, LOUIS M", "Address": "408 Conard Cir", "City": "Bryson City", "State": "North Carolina", "Zip": 28713, "Country": "United States", "Land_Value": 254700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.219192792, "SHAPE_Area": 2874.6964849699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358176.54280000180006, 258854.126499999314547 ], [ 358147.417999997735023, 258809.810699999332428 ], [ 358124.711800001561642, 258824.823600001633167 ], [ 358092.726999998092651, 258843.4070999994874 ], [ 358097.041199997067451, 258855.863000001758337 ], [ 358102.879699997603893, 258873.538800001144409 ], [ 358174.453199997544289, 258854.572700001299381 ], [ 358176.54280000180006, 258854.126499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93737803, "LATITUDE": 18.35868438, "OBJECTID_1": 4091, "PARCEL_NO_": "102802020600", "Tax_Legal_": "LERKENLUND 3G GREAT NORTHSIDE QTR", "Name": "BERRY, LOUIS M", "Address": "408 Conard Cir", "City": "Bryson City", "State": "North Carolina", "Zip": 28713, "Country": "United States", "Land_Value": 254700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.55476454699999, "SHAPE_Area": 3253.7864532100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358067.722099997103214, 258771.212400000542402 ], [ 358089.410300001502037, 258833.831000000238419 ], [ 358122.386399999260902, 258813.8277000002563 ], [ 358131.311499997973442, 258807.356800001114607 ], [ 358136.975500002503395, 258805.0810999982059 ], [ 358142.6503000035882, 258801.539000000804663 ], [ 358115.618699997663498, 258756.354800000786781 ], [ 358096.200599998235703, 258764.006400000303984 ], [ 358076.806000001728535, 258768.913899999111891 ], [ 358067.722099997103214, 258771.212400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802016300", "MAP": "D9-1269-T76", "PARCEL_NAM": "3K", "ACRE": ".57", "LONGITUDE": -64.93712207, "LATITUDE": 18.35942326, "OBJECTID_1": 4081, "PARCEL_NO_": "102802016300", "Tax_Legal_": "3K LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "LAMPHEAR, STEVEN", "Address": "PO Box 600176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 356.50524865400001, "SHAPE_Area": 2045.27429938 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358201.618600003421307, 258892.281399998813868 ], [ 358176.54280000180006, 258854.126499999314547 ], [ 358174.453199997544289, 258854.572700001299381 ], [ 358102.879699997603893, 258873.538800001144409 ], [ 358097.041199997067451, 258855.863000001758337 ], [ 358080.379199996590614, 258862.670000001788139 ], [ 358066.103299997746944, 258868.502099998295307 ], [ 358078.089872191892937, 258875.075988755765138 ], [ 358090.427334869746119, 258880.965041398914764 ], [ 358103.07660000026226, 258886.150600001215935 ], [ 358107.973213713732548, 258887.890385522303404 ], [ 358113.018740298051853, 258889.133905126247555 ], [ 358118.163020057254471, 258889.868796463182662 ], [ 358123.354911548784003, 258890.087753670057282 ], [ 358128.54280000180006, 258889.788600001484156 ], [ 358132.850135877670255, 258889.0473065682163 ], [ 358137.019386384519748, 258887.735815617750632 ], [ 358140.975429730839096, 258885.87775766820414 ], [ 358144.646985703904647, 258883.506611312855966 ], [ 358147.9679000005126, 258880.665100000798702 ], [ 358151.296300001442432, 258876.07209999859333 ], [ 358157.1520992241567, 258868.024892404791899 ], [ 358162.817900002002716, 258859.842799998819828 ], [ 358166.665726756560616, 258858.405768251453992 ], [ 358170.669200003147125, 258857.48759999871254 ], [ 358171.95078647340415, 258857.52571909618564 ], [ 358173.209059632325079, 258857.772022981371265 ], [ 358174.410429837065749, 258858.219936564040836 ], [ 358175.522826470958535, 258858.857502776518231 ], [ 358176.5165540696471, 258859.667701768106781 ], [ 358177.36508504266385, 258860.628905250312528 ], [ 358178.045767828007229, 258861.715453865006566 ], [ 358178.54043157666456, 258862.898342161555775 ], [ 358178.835871223767754, 258864.145992898440454 ], [ 358178.924199998378754, 258865.42509999871254 ], [ 358176.606777018227149, 258874.041997846099548 ], [ 358174.033900000154972, 258882.586100000888109 ], [ 358174.819600000977516, 258882.882199998944998 ], [ 358196.158299997448921, 258890.922899998724461 ], [ 358201.618600003421307, 258892.281399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802025800", "MAP": "D9-2375-T83", "PARCEL_NAM": "3F-3", "ACRE": ".50", "LONGITUDE": -64.93771071, "LATITUDE": 18.35906899, "OBJECTID_1": 4140, "PARCEL_NO_": "102802025800", "Tax_Legal_": "LERKENLUND 3F-3 GT. NORTHSIDE", "Name": "BERRY,TRUSTEES, JERRY M. & LAURA B.", "Address": "NISKY MAILBOXES", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 118900, "Improved_V": 337800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.38209089099999, "SHAPE_Area": 2449.5474318199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358036.201499998569489, 258816.46510000154376 ], [ 358036.116300001740456, 258816.745900001376867 ], [ 358062.245200000703335, 258870.078299999237061 ], [ 358080.379199996590614, 258862.670000001788139 ], [ 358097.041199997067451, 258855.863000001758337 ], [ 358092.726999998092651, 258843.4070999994874 ], [ 358089.410300001502037, 258833.831000000238419 ], [ 358077.58219999819994, 258799.680700000375509 ], [ 358036.201499998569489, 258816.46510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802025700", "MAP": "D9-2375-T83", "PARCEL_NAM": "3F-2", "ACRE": ".50", "LONGITUDE": -64.93803325, "LATITUDE": 18.35920256, "OBJECTID_1": 4139, "PARCEL_NO_": "102802025700", "Tax_Legal_": "LERKENLUND 3F-2 GT. NORTHSIDE", "Name": "BERRY, DAVID FRANCIS", "Address": "3F-2 Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124600, "Improved_V": 102800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.77192487400001, "SHAPE_Area": 1924.5083526400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358042.839100003242493, 258875.238099999725819 ], [ 358058.193199999630451, 258871.353000000119209 ], [ 358058.4341000020504, 258871.635299999266863 ], [ 358058.909999996423721, 258871.440799999982119 ], [ 358062.245200000703335, 258870.078299999237061 ], [ 358036.116300001740456, 258816.745900001376867 ], [ 358036.201499998569489, 258816.46510000154376 ], [ 358007.04619999974966, 258828.290699999779463 ], [ 358006.982500001788139, 258828.386500000953674 ], [ 358028.276900000870228, 258880.818500000983477 ], [ 358042.839100003242493, 258875.238099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802022300", "MAP": "D9-4928-T90", "PARCEL_NAM": "3H-2", "ACRE": ".71", "LONGITUDE": -64.93787482, "LATITUDE": 18.35801232, "OBJECTID_1": 4107, "PARCEL_NO_": "102802022300", "Tax_Legal_": "3H-2,3H-3 &3Ha R.O.W, LERKENLUND NO.9 GREAT NORTHSIDE QTR.", "Name": "Garden of the Lord's Delight Trst", "Address": "PO Box 302908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 206800, "Improved_V": 176900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.31604298399998, "SHAPE_Area": 2591.8229042900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358031.209399998188019, 258725.89979999884963 ], [ 358046.42230000346899, 258731.29619999974966 ], [ 358054.129900000989437, 258736.296100001782179 ], [ 358066.778399996459484, 258744.496100001037121 ], [ 358077.37049999833107, 258736.880899999290705 ], [ 358098.160700000822544, 258727.776999998837709 ], [ 358085.399599999189377, 258706.711599998176098 ], [ 358073.362400002777576, 258699.8581000007689 ], [ 358063.704599998891354, 258697.668099999427795 ], [ 358053.218999996781349, 258698.00450000166893 ], [ 358019.287299998104572, 258705.537200000137091 ], [ 358008.771099999547005, 258709.461899999529123 ], [ 357995.839500002563, 258712.944699998944998 ], [ 357965.149300001561642, 258718.604100000113249 ], [ 358001.415399998426437, 258721.011900000274181 ], [ 358024.479999996721745, 258716.079999998211861 ], [ 358031.240000002086163, 258722.3114 ], [ 358031.209399998188019, 258725.89979999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802025900", "MAP": "D9-2376-T83", "PARCEL_NAM": "3F-4", "ACRE": ".50", "LONGITUDE": -64.93788366, "LATITUDE": 18.3585808, "OBJECTID_1": 4141, "PARCEL_NO_": "102802025900", "Tax_Legal_": "LERKENLUND 3F-4 GT. NORTHSIDE", "Name": "BERRY, EILEEN", "Address": "PO Box 307254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.53303442699999, "SHAPE_Area": 1988.73498774 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358020.218800000846386, 258758.094300001859665 ], [ 358046.309399999678135, 258812.365200001746416 ], [ 358077.58219999819994, 258799.680700000375509 ], [ 358067.722099997103214, 258771.212400000542402 ], [ 358062.69539999961853, 258757.891399998217821 ], [ 358023.990800000727177, 258754.321800000965595 ], [ 358020.218800000846386, 258758.094300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020500", "MAP": "D9-2376-T83", "PARCEL_NAM": "3F-1", "ACRE": ".50", "LONGITUDE": -64.9382001, "LATITUDE": 18.35872187, "OBJECTID_1": 4090, "PARCEL_NO_": "102802020500", "Tax_Legal_": "LERKENLUND 3F-1 GREAT NORTHSIDE QTR", "Name": "BERRY, SHELLY", "Address": "3F-1 ESTATE LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 118900, "Improved_V": 178100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.13544227599999, "SHAPE_Area": 2184.7883006299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358046.309399999678135, 258812.365200001746416 ], [ 358020.218800000846386, 258758.094300001859665 ], [ 358010.173299998044968, 258768.140900000929832 ], [ 357996.08839999884367, 258778.38569999858737 ], [ 357987.89130000025034, 258785.852699998766184 ], [ 357993.525600001215935, 258795.252199999988079 ], [ 358006.982500001788139, 258828.386500000953674 ], [ 358007.04619999974966, 258828.290699999779463 ], [ 358046.309399999678135, 258812.365200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802022300", "MAP": "D9-4928-T90", "PARCEL_NAM": "3H-3", "ACRE": ".62", "LONGITUDE": -64.93772208, "LATITUDE": 18.35826424, "OBJECTID_1": 4107, "PARCEL_NO_": "102802022300", "Tax_Legal_": "3H-2,3H-3 &3Ha R.O.W, LERKENLUND NO.9 GREAT NORTHSIDE QTR.", "Name": "Garden of the Lord's Delight Trst", "Address": "PO Box 302908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 206800, "Improved_V": 176900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.87037342799999, "SHAPE_Area": 1725.41079068 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358098.160700000822544, 258727.776999998837709 ], [ 358077.37049999833107, 258736.880899999290705 ], [ 358066.778399996459484, 258744.496100001037121 ], [ 358054.129900000989437, 258736.296100001782179 ], [ 358046.42230000346899, 258731.29619999974966 ], [ 358031.209399998188019, 258725.89979999884963 ], [ 358033.579800002276897, 258731.618700001388788 ], [ 358032.708700001239777, 258739.210999999195337 ], [ 358029.416900001466274, 258746.994500000029802 ], [ 358023.990800000727177, 258754.321800000965595 ], [ 358062.69539999961853, 258757.891399998217821 ], [ 358064.653099998831749, 258763.0793999992311 ], [ 358091.431100003421307, 258755.945799998939037 ], [ 358110.845499999821186, 258748.716400001198053 ], [ 358098.160700000822544, 258727.776999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801044500", "MAP": "D9-4082-T87", "PARCEL_NAM": "11A-1", "ACRE": ".51", "LONGITUDE": -64.94233841, "LATITUDE": 18.35646041, "OBJECTID_1": 3912, "PARCEL_NO_": "102801044500", "Tax_Legal_": "11A-1 LERKENLUND NO.9 GREAT NORTHSIDE QTR.", "Name": "LAPLACE WEATHERBEE, AILLEEN", "Address": "245 Newburgh Rd", "City": "Bangor", "State": "Maine", "Zip": 4401, "Country": "United States", "Land_Value": 106500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.38085629400001, "SHAPE_Area": 1688.2029808299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357558.478500001132488, 258537.141499999910593 ], [ 357573.712899997830391, 258576.420400001108646 ], [ 357607.726300001144409, 258542.816700000315905 ], [ 357583.254600003361702, 258510.276399999856949 ], [ 357567.470200002193451, 258524.77589999884367 ], [ 357558.478500001132488, 258537.141499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801043900", "MAP": "C9-248-T80", "PARCEL_NAM": "11-E", "ACRE": ".51", "LONGITUDE": -64.94204144, "LATITUDE": 18.35616918, "OBJECTID_1": 3907, "PARCEL_NO_": "102801043900", "Tax_Legal_": "LERKENLUND 11E GR NORTHSIDE QTR", "Name": "DODSON, J. DARYL & ROBERTS, M", "Address": "PO Box 6516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 125800, "Improved_V": 342500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.38896988400001, "SHAPE_Area": 2469.8325358500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357608.291299998760223, 258486.646899998188019 ], [ 357584.746399998664856, 258505.452599998563528 ], [ 357576.640100002288818, 258510.452500000596046 ], [ 357563.686999998986721, 258516.468199998140335 ], [ 357567.470200002193451, 258524.77589999884367 ], [ 357583.254600003361702, 258510.276399999856949 ], [ 357615.280500002205372, 258552.861600000411272 ], [ 357638.004399999976158, 258501.033399999141693 ], [ 357652.028399996459484, 258484.545200001448393 ], [ 357624.211099997162819, 258481.756400000303984 ], [ 357611.590400002896786, 258483.306099999696016 ], [ 357608.291299998760223, 258486.646899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801044300", "MAP": "G9-2307-T73", "PARCEL_NAM": "11-F", "ACRE": ".50", "LONGITUDE": -64.94176174, "LATITUDE": 18.35648853, "OBJECTID_1": 3910, "PARCEL_NO_": "102801044300", "Tax_Legal_": "LERKENLUND 11F GREAT NORTHSIDE QTR", "Name": "NOEL ATTIDORE, NOELISE", "Address": "PO Box 8202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105400, "Improved_V": 235700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.31644450499999, "SHAPE_Area": 2609.45687314 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357638.004399999976158, 258501.033399999141693 ], [ 357615.280500002205372, 258552.861600000411272 ], [ 357638.877899996936321, 258587.800000000745058 ], [ 357656.76070000231266, 258571.058800000697374 ], [ 357668.938100002706051, 258561.44819999858737 ], [ 357673.074699997901917, 258559.111099999397993 ], [ 357663.900100000202656, 258545.245999999344349 ], [ 357652.560500003397465, 258525.910000000149012 ], [ 357645.809500001370907, 258491.856800001114607 ], [ 357638.004399999976158, 258501.033399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801044000", "MAP": null, "PARCEL_NAM": "11", "ACRE": ".44", "LONGITUDE": -64.94145399, "LATITUDE": 18.35596321, "OBJECTID_1": 3908, "PARCEL_NO_": "102801044000", "Tax_Legal_": "LERKENLUND REM 11 GR NORTHSIDE QTR", "Name": "CHRISTIAN, DELMA P. (TRUSTEE)", "Address": "4804 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022229, "Country": "United States", "Land_Value": 109700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.115679777, "SHAPE_Area": 2463.69938422 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357652.560500003397465, 258525.910000000149012 ], [ 357706.993900001049042, 258491.308600001037121 ], [ 357703.089100003242493, 258481.538199998438358 ], [ 357690.393500000238419, 258449.771800000220537 ], [ 357673.843599997460842, 258458.896899998188019 ], [ 357645.809500001370907, 258491.856800001114607 ], [ 357652.560500003397465, 258525.910000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010100", "MAP": "G9-1487-T70", "PARCEL_NAM": "11B", "ACRE": ".515", "LONGITUDE": -64.94087705, "LATITUDE": 18.35613748, "OBJECTID_1": 4416, "PARCEL_NO_": "102804010100", "Tax_Legal_": "11B LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "GEORGE & SANDRA POGAN LIV. TRST", "Address": "18961 River's Edge Dr E", "City": "Chagrin Falls", "State": "Ohio", "Zip": 44023, "Country": "United States", "Land_Value": 68800, "Improved_V": 99100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.72308485400001, "SHAPE_Area": 1888.7917221499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357741.809500001370907, 258473.68299999833107 ], [ 357709.743299998342991, 258498.188200000673532 ], [ 357724.942699998617172, 258536.219500001519918 ], [ 357739.351599998772144, 258530.993700001388788 ], [ 357763.602099999785423, 258524.015000000596046 ], [ 357741.809500001370907, 258473.68299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94106791, "LATITUDE": 18.35574273, "OBJECTID_1": 4212, "PARCEL_NO_": "102803014500", "Tax_Legal_": "LERKENLUND 11BB GR NORTHSIDE QTR", "Name": "SPRINGETTE, ETHLYN P", "Address": "BOX 3338", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.97842591200001, "SHAPE_Area": 1875.2377815699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357709.743299998342991, 258498.188200000673532 ], [ 357741.809500001370907, 258473.68299999833107 ], [ 357734.342200003564358, 258456.436700001358986 ], [ 357723.264200001955032, 258431.64809999987483 ], [ 357690.393500000238419, 258449.771800000220537 ], [ 357703.089100003242493, 258481.538199998438358 ], [ 357709.743299998342991, 258498.188200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803015500", "MAP": "G9-2387-T74", "PARCEL_NAM": "11G", "ACRE": ".50", "LONGITUDE": -64.94131014, "LATITUDE": 18.35631703, "OBJECTID_1": 4243, "PARCEL_NO_": "102803015500", "Tax_Legal_": "LERKENLUND 11G GR NORTHSIDE", "Name": "WILLIAMS, FLOYD & SILLE, AYUDA", "Address": "1220 Colgate Ave", "City": "Bronx", "State": "New York", "Zip": 10472, "Country": "United States", "Land_Value": 118900, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.6569394, "SHAPE_Area": 2608.7482546199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357706.993900001049042, 258491.308600001037121 ], [ 357652.560500003397465, 258525.910000000149012 ], [ 357663.900100000202656, 258545.245999999344349 ], [ 357673.074699997901917, 258559.111099999397993 ], [ 357681.092100001871586, 258554.581599999219179 ], [ 357714.273199997842312, 258540.498799998313189 ], [ 357723.98309999704361, 258536.567499998956919 ], [ 357724.942699998617172, 258536.219500001519918 ], [ 357706.993900001049042, 258491.308600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801016500", "MAP": "D9-1357-T77", "PARCEL_NAM": "8B & 8AA", "ACRE": null, "LONGITUDE": -64.94387508, "LATITUDE": 18.35928211, "OBJECTID_1": 3742, "PARCEL_NO_": "102801016500", "Tax_Legal_": "8AA&8B LERKENLUND GR NORTHSIDE QTR", "Name": "STEPHEN D WENTWORTH and DESIRE MORALES WENTWORTH", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85800, "Improved_V": 589200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.46863651300001, "SHAPE_Area": 2658.8887508900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357456.433899998664856, 258861.554299999028444 ], [ 357431.903200000524521, 258856.941500000655651 ], [ 357412.538099996745586, 258806.58729999884963 ], [ 357409.755300000309944, 258809.085799999535084 ], [ 357385.630999997258186, 258830.745700001716614 ], [ 357386.797399997711182, 258835.03830000013113 ], [ 357386.775799997150898, 258837.571199998259544 ], [ 357393.833099998533726, 258861.060400001704693 ], [ 357397.848399996757507, 258862.993099998682737 ], [ 357403.501599997282028, 258861.983899999409914 ], [ 357406.723300002515316, 258862.432399999350309 ], [ 357409.126000002026558, 258864.35190000012517 ], [ 357410.71169999986887, 258867.531300000846386 ], [ 357412.211000002920628, 258880.842500001192093 ], [ 357411.368699997663498, 258885.057500001043081 ], [ 357411.277000002563, 258895.822500001639128 ], [ 357420.187799997627735, 258891.040300000458956 ], [ 357436.368000000715256, 258884.839899998158216 ], [ 357443.931199997663498, 258878.101799998432398 ], [ 357451.602799996733665, 258869.02250000089407 ], [ 357456.433899998664856, 258861.554299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801013500", "MAP": "D9-1357-T77", "PARCEL_NAM": "8A", "ACRE": null, "LONGITUDE": -64.94372304, "LATITUDE": 18.3590832, "OBJECTID_1": 3717, "PARCEL_NO_": "102801013500", "Tax_Legal_": "LERKENLUND 8A GR NORTHSIDE", "Name": "BRYAN, MATTHEW EDMUND", "Address": "7E-1 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.599012703, "SHAPE_Area": 977.47528723699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357431.903200000524521, 258856.941500000655651 ], [ 357456.113600000739098, 258843.441300000995398 ], [ 357439.786499999463558, 258824.870999999344349 ], [ 357427.338899999856949, 258810.713199999183416 ], [ 357418.782300002872944, 258800.980900000780821 ], [ 357412.538099996745586, 258806.58729999884963 ], [ 357431.903200000524521, 258856.941500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801016400", "MAP": "D9-1357-T77", "PARCEL_NAM": "8B-10", "ACRE": null, "LONGITUDE": -64.94356175, "LATITUDE": 18.35928592, "OBJECTID_1": 3741, "PARCEL_NO_": "102801016400", "Tax_Legal_": "LERKENLUND 8B-10 GR NORTHSIDE QTR", "Name": "BRYAN, PAUL", "Address": "7 Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.171875916399998, "SHAPE_Area": 253.34286096599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357456.113600000739098, 258843.441300000995398 ], [ 357431.903200000524521, 258856.941500000655651 ], [ 357456.433899998664856, 258861.554299999028444 ], [ 357456.462399996817112, 258861.510200001299381 ], [ 357459.751800000667572, 258850.407999999821186 ], [ 357456.113600000739098, 258843.441300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801017000", "MAP": "102801015900", "PARCEL_NAM": "8B-6A", "ACRE": null, "LONGITUDE": -64.94417722, "LATITUDE": 18.35866149, "OBJECTID_1": 3747, "PARCEL_NO_": "102801017000", "Tax_Legal_": "LERKENLUND 8B-6A&8 GT. NORTHSIDE", "Name": "CHRISTIE HELEN SCARBROUGH", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 228700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.651884218699998, "SHAPE_Area": 64.245907551399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357374.273999996483326, 258790.606100000441074 ], [ 357376.708099998533726, 258792.606100000441074 ], [ 357396.590800002217293, 258775.74040000140667 ], [ 357395.406300000846386, 258774.393199998885393 ], [ 357374.273999996483326, 258790.606100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801015900", "MAP": "D9-1357-T77", "PARCEL_NAM": "8B-6", "ACRE": null, "LONGITUDE": -64.94427674000001, "LATITUDE": 18.35856141, "OBJECTID_1": 3738, "PARCEL_NO_": "102801015900", "Tax_Legal_": "LERKENLUND 8B-6&8B-7A GREAT NORTHSIDE QTR", "Name": "O'BAIDI, EMAD I", "Address": "PO Box 307886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42200, "Improved_V": 349800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.75652544, "SHAPE_Area": 806.41947837500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357352.017899997532368, 258774.965599998831749 ], [ 357374.273999996483326, 258790.606100000441074 ], [ 357395.406300000846386, 258774.393199998885393 ], [ 357376.947999998927116, 258753.398699998855591 ], [ 357352.017899997532368, 258774.965599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801017000", "MAP": "D9-1357-T77", "PARCEL_NAM": "8B-8", "ACRE": null, "LONGITUDE": -64.94414852, "LATITUDE": 18.35884095, "OBJECTID_1": 3747, "PARCEL_NO_": "102801017000", "Tax_Legal_": "LERKENLUND 8B-6A&8 GT. NORTHSIDE", "Name": "CHRISTIE HELEN SCARBROUGH", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 228700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.43640420899999, "SHAPE_Area": 1717.3181023300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357374.273999996483326, 258790.606100000441074 ], [ 357357.986000001430511, 258809.4712999984622 ], [ 357358.678999997675419, 258822.775800000876188 ], [ 357373.210600003600121, 258820.7837999984622 ], [ 357382.888099998235703, 258820.651900000870228 ], [ 357385.630999997258186, 258830.745700001716614 ], [ 357409.755300000309944, 258809.085799999535084 ], [ 357418.782300002872944, 258800.980900000780821 ], [ 357415.039099998772144, 258796.723499998450279 ], [ 357396.590800002217293, 258775.74040000140667 ], [ 357376.708099998533726, 258792.606100000441074 ], [ 357374.273999996483326, 258790.606100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801017100", "MAP": "102801015900", "PARCEL_NAM": "8B-7", "ACRE": null, "LONGITUDE": -64.9444107, "LATITUDE": 18.35910161, "OBJECTID_1": 3748, "PARCEL_NO_": "102801017100", "Tax_Legal_": "LERKENLUND 8B-7 GT. NORTHSIDE QTR", "Name": "SMITH, LEROY", "Address": "PO Box 302028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 92600, "Improved_V": 137700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.32675133700002, "SHAPE_Area": 2913.6989033499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357371.06139999628067, 258789.102200001478195 ], [ 357348.578100003302097, 258777.941300000995398 ], [ 357344.469800002872944, 258782.831300001591444 ], [ 357342.061099998652935, 258785.698399998247623 ], [ 357336.334200002253056, 258795.361900001764297 ], [ 357334.673000000417233, 258801.047800000756979 ], [ 357358.146700002253056, 258885.255199998617172 ], [ 357390.532300002872944, 258869.899300001561642 ], [ 357384.93129999935627, 258864.787200000137091 ], [ 357384.952799998223782, 258862.254299998283386 ], [ 357373.210600003600121, 258820.7837999984622 ], [ 357358.678999997675419, 258822.775800000876188 ], [ 357357.986000001430511, 258809.4712999984622 ], [ 357374.273999996483326, 258790.606100000441074 ], [ 357371.06139999628067, 258789.102200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801017200", "MAP": "G9-2764-T78", "PARCEL_NAM": "8B-5", "ACRE": ".25", "LONGITUDE": -64.94405273, "LATITUDE": 18.35840245, "OBJECTID_1": 3749, "PARCEL_NO_": "102801017200", "Tax_Legal_": "LERKENLUND 8B-5 GT. NORTHSIDE", "Name": "MCCOY, NORMAN JR. & DENISE", "Address": "6161 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40600, "Improved_V": 335300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.820323054, "SHAPE_Area": 872.18735434099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357403.162000000476837, 258770.009799998253584 ], [ 357420.772399999201298, 258760.05689999833703 ], [ 357418.104400001466274, 258756.978799998760223 ], [ 357398.131800003349781, 258735.072700001299381 ], [ 357376.947999998927116, 258753.398699998855591 ], [ 357395.406300000846386, 258774.393199998885393 ], [ 357403.162000000476837, 258770.009799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94217006, "LATITUDE": 18.35793648, "OBJECTID_1": 3729, "PARCEL_NO_": "102801014700", "Tax_Legal_": "LERKENLUND 6AA-5 GR NORTHSIDE", "Name": "GLORIA MATTHEW", "Address": "7748 Upper Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023433, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.82596087953999997, "SHAPE_Area": 0.00715355541 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357597.759800001978874, 258705.3277000002563 ], [ 357597.535899996757507, 258705.636999998241663 ], [ 357597.555299997329712, 258705.674100000411272 ], [ 357597.759800001978874, 258705.3277000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801023000", "MAP": "F9-1831-T66", "PARCEL_NAM": "6AA-3", "ACRE": ".51", "LONGITUDE": -64.94277394, "LATITUDE": 18.35841639, "OBJECTID_1": 3803, "PARCEL_NO_": "102801023000", "Tax_Legal_": "LERKENLUND 6AA-3 GR NORTHSIDE", "Name": "FEDDERSEN, FRAUKE", "Address": "6002 NAZARETH", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165000, "Improved_V": 183800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.57768671400001, "SHAPE_Area": 2992.1411733199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357536.814900003373623, 258784.120799999684095 ], [ 357541.358999997377396, 258783.2347999997437 ], [ 357561.864100001752377, 258754.910799998790026 ], [ 357571.690800003707409, 258741.337099999189377 ], [ 357552.576399996876717, 258715.762299999594688 ], [ 357544.724500000476837, 258722.479699999094009 ], [ 357541.287799999117851, 258725.600299999117851 ], [ 357527.550899997353554, 258736.871500000357628 ], [ 357516.018700003623962, 258746.707499999552965 ], [ 357507.667700000107288, 258754.874099999666214 ], [ 357505.178099997341633, 258761.39299999922514 ], [ 357502.645000003278255, 258773.239799998700619 ], [ 357498.656000003218651, 258784.348099999129772 ], [ 357495.694799996912479, 258788.925700001418591 ], [ 357493.057599999010563, 258792.621599998325109 ], [ 357486.645999997854233, 258797.5760000012815 ], [ 357486.645999997854233, 258800.379900000989437 ], [ 357501.402300000190735, 258793.511799998581409 ], [ 357520.693899996578693, 258788.23930000141263 ], [ 357531.059399999678135, 258785.406300000846386 ], [ 357536.814900003373623, 258784.120799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801013900", "MAP": "F9-2058-T67", "PARCEL_NAM": "6AA-2A", "ACRE": ".38", "LONGITUDE": -64.94327002, "LATITUDE": 18.35840502, "OBJECTID_1": 3721, "PARCEL_NO_": "102801013900", "Tax_Legal_": "6AA-2A LERKENLUND GREAT NORTHSIDE", "Name": "MICHEL L ENLOE & MARY A ENLOE REVOCABLE TRUST", "Address": "3004 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58500, "Improved_V": 291700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.05715512399999, "SHAPE_Area": 1667.55807147 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357480.330899998545647, 258796.742300000041723 ], [ 357483.480999998748302, 258792.701400000602007 ], [ 357489.601700000464916, 258789.118299998342991 ], [ 357493.048199996352196, 258784.786899998784065 ], [ 357495.066399998962879, 258776.32660000026226 ], [ 357496.860600002110004, 258765.442600000649691 ], [ 357497.613200001418591, 258762.784600000828505 ], [ 357499.843500003218651, 258758.201099999248981 ], [ 357482.608999997377396, 258720.702799998223782 ], [ 357481.302500002086163, 258721.610199999064207 ], [ 357466.700800001621246, 258731.834199998527765 ], [ 357459.669699996709824, 258736.742899999022484 ], [ 357480.330899998545647, 258796.742300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014300", "MAP": "F9-2058-T67", "PARCEL_NAM": "6AA-2", "ACRE": "6aa-2", "LONGITUDE": -64.94308599, "LATITUDE": 18.35815888, "OBJECTID_1": 3725, "PARCEL_NO_": "102801014300", "Tax_Legal_": "LERKENLUND 6AA-2 GR NORTHSIDE QTR", "Name": "JOHNSON, STEPHEN & BRIAN", "Address": "PO Box 10614", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.72052775500001, "SHAPE_Area": 937.19360375500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357499.843500003218651, 258758.201099999248981 ], [ 357502.576800003647804, 258751.684099998325109 ], [ 357506.023299999535084, 258747.352699998766184 ], [ 357509.717399999499321, 258742.539000000804663 ], [ 357516.089699998497963, 258737.989199999719858 ], [ 357517.56139999628067, 258736.790199998766184 ], [ 357505.767200000584126, 258704.889899998903275 ], [ 357489.414200000464916, 258715.977000001817942 ], [ 357482.608999997377396, 258720.702799998223782 ], [ 357499.843500003218651, 258758.201099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014500", "MAP": "A9-159-T71", "PARCEL_NAM": "6AA-1", "ACRE": ".48", "LONGITUDE": -64.94280208000001, "LATITUDE": 18.35795739, "OBJECTID_1": 3727, "PARCEL_NO_": "102801014500", "Tax_Legal_": "LERKENLUND 6AA-1 GR NORTHSIDE", "Name": "BUMP, DEAN L. & MELISSA L", "Address": "PO Box 867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.00356421000001, "SHAPE_Area": 1471.65693558 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357517.56139999628067, 258736.790199998766184 ], [ 357537.668600000441074, 258721.211300000548363 ], [ 357546.001800000667572, 258715.224399998784065 ], [ 357550.428900003433228, 258710.174400001764297 ], [ 357554.13289999961853, 258704.149700000882149 ], [ 357556.113600000739098, 258700.290699999779463 ], [ 357544.674400001764297, 258680.221599999815226 ], [ 357542.119400002062321, 258681.789000000804663 ], [ 357540.497800000011921, 258682.831199999898672 ], [ 357512.12219999730587, 258700.752999998629093 ], [ 357507.257299996912479, 258703.879599999636412 ], [ 357505.767200000584126, 258704.889899998903275 ], [ 357517.56139999628067, 258736.790199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014700", "MAP": "F9-1848-T66", "PARCEL_NAM": "6AA-5", "ACRE": ".10", "LONGITUDE": -64.94253805, "LATITUDE": 18.35771976, "OBJECTID_1": 3729, "PARCEL_NO_": "102801014700", "Tax_Legal_": "LERKENLUND 6AA-5 GR NORTHSIDE", "Name": "GLORIA MATTHEW", "Address": "7748 Upper Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023433, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.3011452585, "SHAPE_Area": 391.76692142299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357573.238600000739098, 258682.493000000715256 ], [ 357573.170100003480911, 258682.109400000423193 ], [ 357564.61879999935627, 258667.986699998378754 ], [ 357544.674400001764297, 258680.221599999815226 ], [ 357552.751800000667572, 258694.392700001597404 ], [ 357573.238600000739098, 258682.493000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94239673, "LATITUDE": 18.35746471, "OBJECTID_1": 3730, "PARCEL_NO_": "102801014800", "Tax_Legal_": "LERKENLUND 8-18A GR NORTHSIDE", "Name": "GLORIA MATTHEW", "Address": "7748 Upper Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023433, "Country": "United States", "Land_Value": 17900, "Improved_V": 210400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.667377743100005, "SHAPE_Area": 404.98362123200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357590.311999998986721, 258652.277300000190735 ], [ 357581.078000001609325, 258640.784000001847744 ], [ 357562.546899996697903, 258650.292199999094009 ], [ 357558.497400000691414, 258652.370000001043081 ], [ 357567.248099997639656, 258666.373799998313189 ], [ 357574.54450000077486, 258661.78940000012517 ], [ 357590.311999998986721, 258652.277300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801023100", "MAP": "A9-159-T71", "PARCEL_NAM": "6AA", "ACRE": ".78", "LONGITUDE": -64.94227506, "LATITUDE": 18.35783445, "OBJECTID_1": 3804, "PARCEL_NO_": "102801023100", "Tax_Legal_": "LERKENLUND REM 6AA GT. NORTHSIDE", "Name": "STRYKER LIVING TRUST", "Address": "7705 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.53369429200001, "SHAPE_Area": 2780.9957372 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357626.348600000143051, 258666.512299999594688 ], [ 357613.202899999916553, 258649.850099999457598 ], [ 357590.637699998915195, 258668.845400001853704 ], [ 357576.105700001120567, 258680.8277000002563 ], [ 357552.751800000667572, 258694.392700001597404 ], [ 357556.113600000739098, 258700.290699999779463 ], [ 357561.214400000870228, 258702.269799999892712 ], [ 357557.005400002002716, 258710.470100000500679 ], [ 357552.576399996876717, 258715.762299999594688 ], [ 357571.690800003707409, 258741.337099999189377 ], [ 357597.468599997460842, 258705.729899998754263 ], [ 357597.535899996757507, 258705.636999998241663 ], [ 357597.759800001978874, 258705.3277000002563 ], [ 357613.220499999821186, 258683.971599999815226 ], [ 357626.348600000143051, 258666.512299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801023300", "MAP": "D9-8355-T009", "PARCEL_NAM": "6A REM", "ACRE": ".65", "LONGITUDE": -64.94226216, "LATITUDE": 18.3583102, "OBJECTID_1": 3806, "PARCEL_NO_": "102801023300", "Tax_Legal_": "6A REM LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "DEBBIE KAREN QUERRARD REVOC LIV TR", "Address": "7355 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98300, "Improved_V": 150000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.440772909, "SHAPE_Area": 2679.70885043 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357591.019199997186661, 258774.189500000327826 ], [ 357625.812600001692772, 258726.542300000786781 ], [ 357597.468599997460842, 258705.729899998754263 ], [ 357541.358999997377396, 258783.2347999997437 ], [ 357553.300800003111362, 258780.906399998813868 ], [ 357581.664200000464916, 258774.556400001049042 ], [ 357591.019199997186661, 258774.189500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801023200", "MAP": "D9-8355-T009", "PARCEL_NAM": "6A-5", "ACRE": "1.543", "LONGITUDE": -64.94179194, "LATITUDE": 18.35819595, "OBJECTID_1": 3805, "PARCEL_NO_": "102801023200", "Tax_Legal_": "CONSOLIDATED 6A-5 LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "STANLEY T. QUERRARD REV. LIVING TRUST", "Address": "7355 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 197400, "Improved_V": 152600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 355.72151176900002, "SHAPE_Area": 5812.1642905500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357591.019199997186661, 258774.189500000327826 ], [ 357603.254199996590614, 258773.709699999541044 ], [ 357621.129699997603893, 258778.061099998652935 ], [ 357630.774899996817112, 258781.72859999909997 ], [ 357642.7128000035882, 258786.387099999934435 ], [ 357648.456200003623962, 258788.628299999982119 ], [ 357649.983900003135204, 258789.224399998784065 ], [ 357663.607500001788139, 258774.268100000917912 ], [ 357681.637699998915195, 258736.5912000015378 ], [ 357646.242399998009205, 258691.727600000798702 ], [ 357626.348600000143051, 258666.512299999594688 ], [ 357613.220499999821186, 258683.971599999815226 ], [ 357597.759800001978874, 258705.3277000002563 ], [ 357597.555299997329712, 258705.674100000411272 ], [ 357597.468599997460842, 258705.729899998754263 ], [ 357625.812600001692772, 258726.542300000786781 ], [ 357591.019199997186661, 258774.189500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802030200", "MAP": "D9-1456-T79", "PARCEL_NAM": "6F", "ACRE": "1.236", "LONGITUDE": -64.94060343, "LATITUDE": 18.35755051, "OBJECTID_1": 4162, "PARCEL_NO_": "102802030200", "Tax_Legal_": "LERKENLUND 6F 9 GR NORTHSIDE QTR", "Name": "ALICEA, DENISE ANN", "Address": "PO Box 1631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 145800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.66410883600003, "SHAPE_Area": 4814.0825175700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357792.010499998927116, 258634.040899999439716 ], [ 357783.705899998545647, 258617.4662000015378 ], [ 357748.35700000077486, 258637.688400000333786 ], [ 357714.781900003552437, 258656.895799998193979 ], [ 357723.04839999973774, 258672.431099999696016 ], [ 357741.928199999034405, 258707.912099998444319 ], [ 357742.784699998795986, 258709.521800000220537 ], [ 357754.066399998962879, 258703.704300001263618 ], [ 357779.632799997925758, 258690.520799998193979 ], [ 357811.732500001788139, 258673.968299999833107 ], [ 357792.010499998927116, 258634.040899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801023500", "MAP": "F9-2128-T67", "PARCEL_NAM": "6A-2", "ACRE": "0.49", "LONGITUDE": -64.94136266, "LATITUDE": 18.35848625, "OBJECTID_1": 3808, "PARCEL_NO_": "102801023500", "Tax_Legal_": "6A-2 ESTATE LERKENLUND GREAT NORTHSIDE QTR.", "Name": "CAMPBELL, FULLER R. & SILVIA R", "Address": "PO Box 9394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.984981909, "SHAPE_Area": 1663.7581320100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357708.660700000822544, 258747.444699998944998 ], [ 357684.996799997985363, 258739.320599999278784 ], [ 357681.637699998915195, 258736.5912000015378 ], [ 357663.607500001788139, 258774.268100000917912 ], [ 357649.983900003135204, 258789.224399998784065 ], [ 357657.296899996697903, 258792.078200001269579 ], [ 357664.546499997377396, 258792.981899999082088 ], [ 357670.196099996566772, 258792.394799999892712 ], [ 357685.580799996852875, 258784.921399999409914 ], [ 357690.193099997937679, 258783.863600000739098 ], [ 357694.468199998140335, 258782.883200000971556 ], [ 357696.694600000977516, 258782.828600000590086 ], [ 357708.660700000822544, 258747.444699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802030100", "MAP": "D9-429-T64", "PARCEL_NAM": "6G", "ACRE": "2.23", "LONGITUDE": -64.94040822, "LATITUDE": 18.3582102, "OBJECTID_1": 4161, "PARCEL_NO_": "102802030100", "Tax_Legal_": "LERKENLUND 6G 9 GR NORTHSIDE QTR", "Name": "BUSHNELL, YVONNE J. & LOIS KOOLSTRA BUSHNELL", "Address": "PO Box 1631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 223400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 419.01715695600001, "SHAPE_Area": 9167.8460312099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357805.755599997937679, 258685.785999998450279 ], [ 357801.187700003385544, 258679.405799999833107 ], [ 357779.632799997925758, 258690.520799998193979 ], [ 357754.066399998962879, 258703.704300001263618 ], [ 357721.752499997615814, 258720.367199998348951 ], [ 357711.387999996542931, 258725.711800001561642 ], [ 357710.654600001871586, 258726.089899998158216 ], [ 357696.315099999308586, 258733.484200000762939 ], [ 357684.996799997985363, 258739.320599999278784 ], [ 357708.660700000822544, 258747.444699998944998 ], [ 357740.586499996483326, 258758.405299998819828 ], [ 357788.37389999628067, 258776.116700001060963 ], [ 357828.749300003051758, 258791.081000000238419 ], [ 357834.643899999558926, 258782.341299999505281 ], [ 357839.607799999415874, 258774.9814000017941 ], [ 357843.770900003612041, 258768.273200001567602 ], [ 357853.266099996864796, 258752.144999999552965 ], [ 357811.142800003290176, 258693.310400001704693 ], [ 357805.755599997937679, 258685.785999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801023600", "MAP": "G9-1067-T68", "PARCEL_NAM": "6A-1-C", "ACRE": "0.46", "LONGITUDE": -64.94068596, "LATITUDE": 18.35867917, "OBJECTID_1": 3809, "PARCEL_NO_": "102801023600", "Tax_Legal_": "LERKENLUND 6A-1C GR NORTHSIDE", "Name": "JOHN M. AND ANNA J. GREAUX REVOCABLE TRUST", "Address": "PO Box 303123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74700, "Improved_V": 193000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.56361715400001, "SHAPE_Area": 2200.25563728 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357788.37389999628067, 258776.116700001060963 ], [ 357740.586499996483326, 258758.405299998819828 ], [ 357725.883799999952316, 258786.728900000452995 ], [ 357732.29839999973774, 258791.003299999982119 ], [ 357737.879600003361702, 258798.437199998646975 ], [ 357739.45269999653101, 258803.094200000166893 ], [ 357739.292599998414516, 258821.880199998617172 ], [ 357739.213500000536442, 258831.167700000107288 ], [ 357741.634199999272823, 258830.976399999111891 ], [ 357768.478100001811981, 258803.54280000180006 ], [ 357788.37389999628067, 258776.116700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802031200", "MAP": "G9-1067-T68", "PARCEL_NAM": "6A-1-B", "ACRE": "0.38", "LONGITUDE": -64.94025962000001, "LATITUDE": 18.35876087, "OBJECTID_1": 4170, "PARCEL_NO_": "102802031200", "Tax_Legal_": "LERKENLUND ESTATE 6A-1B NO 9 GR NORTHSIDE", "Name": "STUEDELL, DAVID", "Address": "1515 Los Griegos Rd", "City": "Jemez Springs", "State": "New Mexico", "Zip": 87025, "Country": "United States", "Land_Value": 90400, "Improved_V": 162200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.06003560299999, "SHAPE_Area": 1519.77477064 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357828.749300003051758, 258791.081000000238419 ], [ 357788.37389999628067, 258776.116700001060963 ], [ 357768.478100001811981, 258803.54280000180006 ], [ 357771.218000002205372, 258806.147599998861551 ], [ 357774.077399998903275, 258808.86600000038743 ], [ 357775.575199998915195, 258807.2010000012815 ], [ 357781.139700002968311, 258809.457499999552965 ], [ 357810.600900001823902, 258821.404399998486042 ], [ 357815.97860000282526, 258812.375300001353025 ], [ 357824.165799997746944, 258797.876899998635054 ], [ 357828.749300003051758, 258791.081000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802031300", "MAP": "F9-2828-T71", "PARCEL_NAM": "6A-1-A-1", "ACRE": "0.40", "LONGITUDE": -64.94044899, "LATITUDE": 18.35907144, "OBJECTID_1": 4171, "PARCEL_NO_": "102802031300", "Tax_Legal_": "LERKENLUND 6A-1A-1 GR NORTHSIDE", "Name": "WOOD, CONNIE M. & NILES, DALE A.", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84300, "Improved_V": 276900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.11583080099999, "SHAPE_Area": 1821.9029115799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357743.97410000115633, 258840.283599998801947 ], [ 357784.006499998271465, 258859.155200000852346 ], [ 357788.658100001513958, 258852.811500001698732 ], [ 357792.29169999808073, 258847.856300000101328 ], [ 357798.8158999979496, 258839.254799999296665 ], [ 357801.274400003254414, 258834.630899999290705 ], [ 357805.343699999153614, 258830.231199998408556 ], [ 357810.600900001823902, 258821.404399998486042 ], [ 357781.139700002968311, 258809.457499999552965 ], [ 357775.575199998915195, 258807.2010000012815 ], [ 357774.077399998903275, 258808.86600000038743 ], [ 357752.109099999070168, 258831.906500000506639 ], [ 357749.159299999475479, 258834.944099999964237 ], [ 357743.97410000115633, 258840.283599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801023900", "MAP": "F9-721-T61", "PARCEL_NAM": "11C-2", "ACRE": ".35", "LONGITUDE": -64.94162249, "LATITUDE": 18.3569683, "OBJECTID_1": 3812, "PARCEL_NO_": "102801023900", "Tax_Legal_": "11c-2 LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "CECILIA P SENTHILL HARRIGAN LIVING TRUST", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040582, "Country": "United States", "Land_Value": 56800, "Improved_V": 269700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.842382769, "SHAPE_Area": 902.63387610999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357635.555900000035763, 258601.457100000232458 ], [ 357646.583400003612041, 258618.815900001674891 ], [ 357677.462300002574921, 258602.047899998724461 ], [ 357662.363499999046326, 258575.959800001233816 ], [ 357635.555900000035763, 258601.457100000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801023800", "MAP": "F9-609-T60", "PARCEL_NAM": "11C-1", "ACRE": ".26", "LONGITUDE": -64.94191291, "LATITUDE": 18.35716857, "OBJECTID_1": 3811, "PARCEL_NO_": "102801023800", "Tax_Legal_": "LERKENLUND 11C-1 GR NORTHSIDE QTR", "Name": "FRANCIS E JACKSON, JR. and TONI JACKSON", "Address": "PO Box 6591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 84900, "Improved_V": 240500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.934718371, "SHAPE_Area": 687.51600701400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357602.644100002944469, 258626.989399999380112 ], [ 357614.258799999952316, 258638.049800001084805 ], [ 357635.336199998855591, 258624.92339999973774 ], [ 357646.583400003612041, 258618.815900001674891 ], [ 357635.555900000035763, 258601.457100000232458 ], [ 357633.097099997103214, 258603.795800000429153 ], [ 357611.987300001084805, 258620.721599999815226 ], [ 357603.877400003373623, 258626.1435999982059 ], [ 357602.644100002944469, 258626.989399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802031000", "MAP": "F9-855-T61", "PARCEL_NAM": "11C-5", "ACRE": ".24", "LONGITUDE": -64.94070958, "LATITUDE": 18.35649663, "OBJECTID_1": 4169, "PARCEL_NO_": "102802031000", "Tax_Legal_": "LERKENLUND 11C 5 GR NORTHSIDE QTR", "Name": "BASSUE, CLEPHTON & MARY E", "Address": "7743 Lerkenlund 11-C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 159600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.600051202, "SHAPE_Area": 1040.7318428200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357777.908900000154972, 258548.407900001853704 ], [ 357770.005900003015995, 258529.555900000035763 ], [ 357744.947200000286102, 258536.739100001752377 ], [ 357729.575199998915195, 258542.734999999403954 ], [ 357739.839599996805191, 258568.361299999058247 ], [ 357743.08110000193119, 258566.488000001758337 ], [ 357750.370200000703335, 258562.747999999672174 ], [ 357777.908900000154972, 258548.407900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802030300", "MAP": "D9-430-T64", "PARCEL_NAM": "6H", "ACRE": "2.17", "LONGITUDE": -64.9398768, "LATITUDE": 18.35744644, "OBJECTID_1": 4163, "PARCEL_NO_": "102802030300", "Tax_Legal_": "LERKENLUND 6H 9 GR NORTHSIDE QTR", "Name": "YVONNE JEANE BUSHNELL AMENDED AND RESTATED REVOCAB", "Address": "PO Box 1631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 221200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 481.65212775200001, "SHAPE_Area": 9637.5183592899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357871.026500001549721, 258574.399700000882149 ], [ 357869.96679999679327, 258571.061200000345707 ], [ 357783.705899998545647, 258617.4662000015378 ], [ 357785.522299997508526, 258621.091400001198053 ], [ 357792.010499998927116, 258634.040899999439716 ], [ 357811.732500001788139, 258673.968299999833107 ], [ 357801.187700003385544, 258679.405799999833107 ], [ 357805.755599997937679, 258685.785999998450279 ], [ 357811.142800003290176, 258693.310400001704693 ], [ 357853.266099996864796, 258752.144999999552965 ], [ 357854.407600000500679, 258750.206199999898672 ], [ 357860.138099998235703, 258740.120600000023842 ], [ 357861.763300001621246, 258738.656199999153614 ], [ 357864.219999998807907, 258734.243400000035763 ], [ 357871.602700002491474, 258719.527199998497963 ], [ 357877.313400000333786, 258711.7635000012815 ], [ 357859.408399999141693, 258636.467700000852346 ], [ 357857.85869999974966, 258629.066700000315905 ], [ 357857.878499999642372, 258626.744800001382828 ], [ 357867.590199999511242, 258622.60249999910593 ], [ 357870.018100000917912, 258621.566899999976158 ], [ 357892.675800003111362, 258612.253100000321865 ], [ 357891.88740000128746, 258610.13569999858737 ], [ 357879.965400002896786, 258589.77309999987483 ], [ 357875.991400003433228, 258582.985599998384714 ], [ 357871.026500001549721, 258574.399700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802030500", "MAP": "D3-234-T56", "PARCEL_NAM": "6B", "ACRE": "1.21", "LONGITUDE": -64.93935145, "LATITUDE": 18.35741861, "OBJECTID_1": 4165, "PARCEL_NO_": "102802030500", "Tax_Legal_": "LERKENLUND 6B GREAT NORTHSIDE QTR", "Name": "YVONNE JEANE BUSHNELL AMENDED AND RESTATED REVOCAB", "Address": "PO Box 1631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 180700, "Improved_V": 74800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.68839748300002, "SHAPE_Area": 4951.5868993000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357892.675800003111362, 258612.253100000321865 ], [ 357870.018100000917912, 258621.566899999976158 ], [ 357867.590199999511242, 258622.60249999910593 ], [ 357857.878499999642372, 258626.744800001382828 ], [ 357857.85869999974966, 258629.066700000315905 ], [ 357859.408399999141693, 258636.467700000852346 ], [ 357877.313400000333786, 258711.7635000012815 ], [ 357881.395300000905991, 258705.886300001293421 ], [ 357890.342100001871586, 258696.882500000298023 ], [ 357917.954499997198582, 258673.888199999928474 ], [ 357938.243600003421307, 258658.644400000572205 ], [ 357918.558700002729893, 258602.965700000524521 ], [ 357916.132600001990795, 258603.790199998766184 ], [ 357892.675800003111362, 258612.253100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014400", "MAP": "D9-7405-T004", "PARCEL_NAM": "8B-1B", "ACRE": ".007", "LONGITUDE": -64.94302784, "LATITUDE": 18.35787684, "OBJECTID_1": 3726, "PARCEL_NO_": "102801014400", "Tax_Legal_": "LERKENLUND 8B-1&8-17-A No.9 GREAT NORTHSIDE QTR.", "Name": "DIPNARINE, TRUSTEES, SONNY RAM & RITA", "Address": "7746 Est Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 180300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.658654955199999, "SHAPE_Area": 41.883910803600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357501.593900002539158, 258690.037399999797344 ], [ 357507.330600000917912, 258703.832600001245737 ], [ 357512.12219999730587, 258700.752999998629093 ], [ 357501.593900002539158, 258690.037399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014400", "MAP": "D9-955-T71", "PARCEL_NAM": "8B-1", "ACRE": ".23", "LONGITUDE": -64.94323951, "LATITUDE": 18.35783119, "OBJECTID_1": 3726, "PARCEL_NO_": "102801014400", "Tax_Legal_": "LERKENLUND 8B-1&8-17-A No.9 GREAT NORTHSIDE QTR.", "Name": "DIPNARINE, TRUSTEES, SONNY RAM & RITA", "Address": "7746 Est Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 180300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.74982085799999, "SHAPE_Area": 1070.6121508399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357501.593900002539158, 258690.037399999797344 ], [ 357495.244499996304512, 258688.525100000202656 ], [ 357494.657300002872944, 258682.977299999445677 ], [ 357484.941299997270107, 258673.08839999884367 ], [ 357473.629600003361702, 258675.740100000053644 ], [ 357458.252099998295307, 258682.369199998676777 ], [ 357489.414200000464916, 258715.977000001817942 ], [ 357507.257299996912479, 258703.879599999636412 ], [ 357507.330600000917912, 258703.832600001245737 ], [ 357501.593900002539158, 258690.037399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014600", "MAP": "D9-7405-T004", "PARCEL_NAM": "8-17-A", "ACRE": ".008", "LONGITUDE": -64.9431837, "LATITUDE": 18.35767934, "OBJECTID_1": 3728, "PARCEL_NO_": "102801014600", "Tax_Legal_": "8-17,8B-1A&8B-1B LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BUMP, DEAN L. & MELISSA L", "Address": "PO Box 867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 275500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.9044589007, "SHAPE_Area": 43.564233007699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357494.657300002872944, 258682.977299999445677 ], [ 357493.935699999332428, 258676.160700000822544 ], [ 357490.400799997150898, 258671.836399998515844 ], [ 357484.941299997270107, 258673.08839999884367 ], [ 357494.657300002872944, 258682.977299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802010500", "MAP": "A9-115-T69", "PARCEL_NAM": "1-9", "ACRE": null, "LONGITUDE": -64.93979115, "LATITUDE": 18.36385282, "OBJECTID_1": 4027, "PARCEL_NO_": "102802010500", "Tax_Legal_": "LERKENLUND 1-9 GREAT NORTHSIDE", "Name": "BALLARD, JOYCE", "Address": "PO Box 304977", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199600, "Improved_V": 153400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.24633295699999, "SHAPE_Area": 4379.11358948 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357852.969400003552437, 259315.370700001716614 ], [ 357843.197999998927116, 259330.101300001144409 ], [ 357823.068899996578693, 259339.600499998778105 ], [ 357794.439099997282028, 259353.020700000226498 ], [ 357831.076300002634525, 259406.516199998557568 ], [ 357839.191600002348423, 259400.460900001227856 ], [ 357862.688000001013279, 259387.354299999773502 ], [ 357878.909500002861023, 259376.299100000411272 ], [ 357892.683399997651577, 259368.601399999111891 ], [ 357888.698499999940395, 259363.080299999564886 ], [ 357862.386900000274181, 259328.034499999135733 ], [ 357852.969400003552437, 259315.370700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014800", "MAP": "D9-7086-T002", "PARCEL_NAM": "1-4-B2", "ACRE": ".54", "LONGITUDE": -64.94010558, "LATITUDE": 18.36329788, "OBJECTID_1": 4066, "PARCEL_NO_": "102802014800", "Tax_Legal_": "LEREKNLUND 1-4B2 GREAT NORTHSIDE", "Name": "QUERRARD, WARREN J", "Address": "PO Box 153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 85800, "Improved_V": 154400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.10943973899998, "SHAPE_Area": 3616.9218869199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357780.514499999582767, 259352.981100000441074 ], [ 357829.623700000345707, 259330.594500001519918 ], [ 357835.116499997675419, 259327.619500000029802 ], [ 357836.762999996542931, 259324.411800000816584 ], [ 357834.963299997150898, 259321.578699998557568 ], [ 357839.664099998772144, 259316.382699999958277 ], [ 357842.479800000786781, 259318.82149999961257 ], [ 357846.752599999308586, 259316.440499998629093 ], [ 357849.830899998545647, 259311.150299999862909 ], [ 357845.645000003278255, 259305.521600000560284 ], [ 357839.266400001943111, 259297.025600001215935 ], [ 357820.928000003099442, 259272.599800001829863 ], [ 357795.417300000786781, 259238.193799998611212 ], [ 357792.028399996459484, 259257.375599998980761 ], [ 357786.796800002455711, 259303.562300000339746 ], [ 357792.426600001752377, 259305.297100000083447 ], [ 357797.219499997794628, 259310.613699998706579 ], [ 357798.00959999859333, 259312.519999999552965 ], [ 357795.32379999756813, 259319.204199999570847 ], [ 357789.770700000226498, 259332.481100000441074 ], [ 357784.228000000119209, 259343.938400000333786 ], [ 357780.514499999582767, 259352.981100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803010200", "MAP": "D9-1598-T80", "PARCEL_NAM": "9A-1", "ACRE": ".701", "LONGITUDE": -64.94582595, "LATITUDE": 18.35521663, "OBJECTID_1": 4175, "PARCEL_NO_": "102803010200", "Tax_Legal_": "9A-1 LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "MOUNTAIN TOP INVESTMENTS LLC", "Address": "7840 Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 196000, "Improved_V": 30900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.84984544500003, "SHAPE_Area": 3788.47650793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357235.36540000140667, 258353.265000000596046 ], [ 357180.885999999940395, 258390.506099998950958 ], [ 357182.48030000180006, 258397.6689000017941 ], [ 357184.026399999856949, 258405.49210000038147 ], [ 357191.756800003349781, 258444.607599999755621 ], [ 357193.29389999806881, 258453.486200001090765 ], [ 357208.490099996328354, 258443.794300001114607 ], [ 357217.750500001013279, 258438.502599999308586 ], [ 357221.983900003135204, 258434.79839999973774 ], [ 357231.244300000369549, 258422.098400000482798 ], [ 357239.446400001645088, 258409.133799999952316 ], [ 357241.563000001013279, 258401.460900001227856 ], [ 357240.769299998879433, 258390.613000001758337 ], [ 357241.033900000154972, 258383.204700000584126 ], [ 357239.899300001561642, 258378.08500000089407 ], [ 357239.975500002503395, 258371.0337999984622 ], [ 357241.827600002288818, 258365.477600000798702 ], [ 357246.060900002717972, 258360.71510000154376 ], [ 357248.971400000154972, 258353.571299999952316 ], [ 357248.573899999260902, 258353.132100000977516 ], [ 357235.36540000140667, 258353.265000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801060800", "MAP": "D9-1953-T82", "PARCEL_NAM": "3A-22", "ACRE": "3A-22", "LONGITUDE": -64.94680179, "LATITUDE": 18.35652688, "OBJECTID_1": 4002, "PARCEL_NO_": "102801060800", "Tax_Legal_": "ST PETER 3A-22 LT. NORTHSIDE", "Name": "MANHAR N DESAI FAMILY TRUST", "Address": "PO Box 6758", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57900, "Improved_V": 459100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.321071381, "SHAPE_Area": 1107.41397607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357127.462700001895428, 258537.899399999529123 ], [ 357126.610799998044968, 258528.529500000178814 ], [ 357120.88120000064373, 258529.309399999678135 ], [ 357103.140500001609325, 258529.375199999660254 ], [ 357093.560300000011921, 258527.313299998641014 ], [ 357093.739100001752377, 258568.091499999165535 ], [ 357101.218599997460842, 258565.667599998414516 ], [ 357128.889300003647804, 258553.592799998819828 ], [ 357127.462700001895428, 258537.899399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801060900", "MAP": "D9-1953-T82", "PARCEL_NAM": "3A-23", "ACRE": ".503", "LONGITUDE": -64.94640232, "LATITUDE": 18.35641636, "OBJECTID_1": 4003, "PARCEL_NO_": "102801060900", "Tax_Legal_": "ST PETER 3A-23 LT. NORTHSIDE", "Name": "HAMMOND, RICHARD", "Address": "7845 Mountain Top", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93200, "Improved_V": 414300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.05848055800001, "SHAPE_Area": 1184.9134479899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357160.631499998271465, 258518.649399999529123 ], [ 357156.658299997448921, 258517.533300001174212 ], [ 357152.220100000500679, 258519.218199998140335 ], [ 357141.2179000005126, 258523.91330000013113 ], [ 357129.952600002288818, 258528.074700001627207 ], [ 357126.610799998044968, 258528.529500000178814 ], [ 357127.462700001895428, 258537.899399999529123 ], [ 357128.889300003647804, 258553.592799998819828 ], [ 357136.831200003623962, 258550.127099998295307 ], [ 357147.340199999511242, 258547.046700000762939 ], [ 357166.740299999713898, 258541.505899999290705 ], [ 357173.235699996352196, 258536.281800001859665 ], [ 357185.413099996745586, 258526.671100001782179 ], [ 357186.404200002551079, 258525.888900000602007 ], [ 357160.631499998271465, 258518.649399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803031600", "MAP": "D9-2831-T84", "PARCEL_NAM": "3A-24", "ACRE": ".518", "LONGITUDE": -64.94623706, "LATITUDE": 18.35615589, "OBJECTID_1": 4372, "PARCEL_NO_": "102803031600", "Tax_Legal_": "ST PETER 3A-24 LT. NORTHSIDE", "Name": "WILLIAMS, MICHAEL D and KAY", "Address": "101 Ryan Lake Trl", "City": "Alpharetta", "State": "Georgia", "Zip": 30004, "Country": "United States", "Land_Value": 110200, "Improved_V": 694700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.23540540900001, "SHAPE_Area": 1759.21048688 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357139.735600002110004, 258518.856600001454353 ], [ 357140.609899997711182, 258518.606600001454353 ], [ 357148.052000001072884, 258516.302099999040365 ], [ 357155.507700003683567, 258512.541600000113249 ], [ 357157.298299998044968, 258513.9864999987185 ], [ 357158.389700002968311, 258516.875999998301268 ], [ 357156.658299997448921, 258517.533300001174212 ], [ 357160.631499998271465, 258518.649399999529123 ], [ 357186.404200002551079, 258525.888900000602007 ], [ 357205.696800000965595, 258512.060600001364946 ], [ 357179.420199997723103, 258488.084499999880791 ], [ 357150.159999996423721, 258485.243900001049042 ], [ 357142.526799999177456, 258487.641399998217821 ], [ 357142.380000002682209, 258489.283700000494719 ], [ 357139.735600002110004, 258518.856600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803031400", "MAP": "D9-1953-T82", "PARCEL_NAM": "3A-16", "ACRE": ".502", "LONGITUDE": -64.9470926, "LATITUDE": 18.35615158, "OBJECTID_1": 4371, "PARCEL_NO_": "102803031400", "Tax_Legal_": "ST PETER 3A-16 LT. NORTHSIDE QTR", "Name": "WALTER, PAULINE", "Address": "PO Box 12422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.08718293800001, "SHAPE_Area": 2040.97028802 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357066.390000000596046, 258489.177799999713898 ], [ 357063.146700002253056, 258491.262200001627207 ], [ 357051.757700003683567, 258502.990200001746416 ], [ 357043.609999999403954, 258512.844900000840425 ], [ 357044.344400003552437, 258521.294700000435114 ], [ 357049.158900000154972, 258524.078299999237061 ], [ 357052.385999999940395, 258523.8935999982059 ], [ 357058.035499997437, 258523.306600000709295 ], [ 357072.58330000191927, 258519.414799999445677 ], [ 357083.068999998271465, 258519.078499998897314 ], [ 357103.998999997973442, 258523.260600000619888 ], [ 357105.137000001966953, 258523.245099999010563 ], [ 357111.029700003564358, 258518.094900000840425 ], [ 357107.818400003015995, 258510.989399999380112 ], [ 357100.939000003039837, 258495.767000000923872 ], [ 357101.044600002467632, 258494.0337999984622 ], [ 357101.925800003111362, 258479.561999998986721 ], [ 357079.314499996602535, 258478.290100000798702 ], [ 357066.390000000596046, 258489.177799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803010100", "MAP": "D9-1953-T82", "PARCEL_NAM": "3A-15", "ACRE": ".507", "LONGITUDE": -64.94667717, "LATITUDE": 18.35611157, "OBJECTID_1": 4173, "PARCEL_NO_": "102803010100", "Tax_Legal_": "3A-15 & 3A-18 ST PETER LITTLE NORTHSIDE", "Name": "MOUNTAIN TOP INVESTMENTS LLC", "Address": "7840 Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355800, "Improved_V": 720700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.55503587499999, "SHAPE_Area": 1559.2784298900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357101.925800003111362, 258479.561999998986721 ], [ 357101.044600002467632, 258494.0337999984622 ], [ 357100.939000003039837, 258495.767000000923872 ], [ 357107.818400003015995, 258510.989399999380112 ], [ 357111.029700003564358, 258518.094900000840425 ], [ 357105.137000001966953, 258523.245099999010563 ], [ 357113.676500000059605, 258523.128699999302626 ], [ 357120.126999996602535, 258523.181499999016523 ], [ 357129.353500001132488, 258521.826099999248981 ], [ 357139.735600002110004, 258518.856600001454353 ], [ 357142.380000002682209, 258489.283700000494719 ], [ 357142.526799999177456, 258487.641399998217821 ], [ 357150.159999996423721, 258485.243900001049042 ], [ 357148.237000003457069, 258479.752000000327826 ], [ 357142.139799997210503, 258481.824200000613928 ], [ 357124.803300000727177, 258480.848999999463558 ], [ 357101.925800003111362, 258479.561999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803031700", "MAP": "D9-2831-T84", "PARCEL_NAM": "3A-25", "ACRE": ".500", "LONGITUDE": -64.94610953, "LATITUDE": 18.35593482, "OBJECTID_1": 4373, "PARCEL_NO_": "102803031700", "Tax_Legal_": "ST PETER 3A-25 LT. NORTHSIDE", "Name": "FERREYRA FAMILY TRUST", "Address": "PO BOX 304993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76800, "Improved_V": 609100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.777655512, "SHAPE_Area": 1990.5333651399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357143.875200003385544, 258467.295800000429153 ], [ 357150.159999996423721, 258485.243900001049042 ], [ 357179.420199997723103, 258488.084499999880791 ], [ 357205.696800000965595, 258512.060600001364946 ], [ 357219.508199997246265, 258503.247999999672174 ], [ 357196.786799997091293, 258461.99549999833107 ], [ 357194.856200002133846, 258459.409600000828505 ], [ 357173.836300000548363, 258465.781399998813868 ], [ 357171.464100003242493, 258460.273600000888109 ], [ 357171.512699998915195, 258454.574400000274181 ], [ 357143.875200003385544, 258467.295800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803018500", "MAP": "D9-2831-T84", "PARCEL_NAM": "3A-26", "ACRE": ".128", "LONGITUDE": -64.94585056, "LATITUDE": 18.3558782, "OBJECTID_1": 4268, "PARCEL_NO_": "102803018500", "Tax_Legal_": "3A-26 ST.PETER&9A-7 LERKENLUND LT.NORTHSIDE & GT. NORTHSIDE", "Name": "FERREYRA, CARLOS & MATTHEW KIEFFER", "Address": "8168 Crown Bay Marina 310480 No", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89100, "Improved_V": 397900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.121184395, "SHAPE_Area": 535.60874725600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357223.480999998748302, 258500.713100001215935 ], [ 357210.879199996590614, 258452.644600000232458 ], [ 357194.856200002133846, 258459.409600000828505 ], [ 357196.786799997091293, 258461.99549999833107 ], [ 357219.508199997246265, 258503.247999999672174 ], [ 357223.480999998748302, 258500.713100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803011200", "MAP": "D9-4857-T90", "PARCEL_NAM": "10K", "ACRE": ".456", "LONGITUDE": -64.94174978, "LATITUDE": 18.35437518, "OBJECTID_1": 4185, "PARCEL_NO_": "102803011200", "Tax_Legal_": "LERKENLUND 1OK GREAT NORTHSIDE QTR", "Name": "TREVISTA TRUST", "Address": "PO Box 717", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040717, "Country": "United States", "Land_Value": 92800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.793307473, "SHAPE_Area": 1170.6148829900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357629.667199999094009, 258315.474500000476837 ], [ 357630.294799998402596, 258329.249800000339746 ], [ 357677.392399996519089, 258326.285900000482798 ], [ 357677.39360000193119, 258326.14809999987483 ], [ 357661.393200002610683, 258311.240600001066923 ], [ 357630.996100001037121, 258282.494199998676777 ], [ 357626.481200002133846, 258278.237700000405312 ], [ 357628.077799998223782, 258280.586599998176098 ], [ 357629.667199999094009, 258315.474500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803011300", "MAP": "D9-4857-T90", "PARCEL_NAM": "19A", "ACRE": ".53", "LONGITUDE": -64.9420837, "LATITUDE": 18.35427966, "OBJECTID_1": 4186, "PARCEL_NO_": "102803011300", "Tax_Legal_": "SOLBERG 19A LITTLE NORTHSIDE QTR", "Name": "TREVISTA TRUST", "Address": "PO Box 717", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040717, "Country": "United States", "Land_Value": 93200, "Improved_V": 204700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.870020657, "SHAPE_Area": 2271.6300083800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357629.667199999094009, 258315.474500000476837 ], [ 357628.077799998223782, 258280.586599998176098 ], [ 357626.481200002133846, 258278.237700000405312 ], [ 357626.470899999141693, 258278.227899998426437 ], [ 357611.797399997711182, 258264.394099999219179 ], [ 357602.507100000977516, 258254.811000000685453 ], [ 357588.737000003457069, 258320.989500001072884 ], [ 357585.674699999392033, 258332.057799998670816 ], [ 357630.294799998402596, 258329.249800000339746 ], [ 357629.667199999094009, 258315.474500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803011100", "MAP": "D9-4857-T90", "PARCEL_NAM": "9B", "ACRE": ".99", "LONGITUDE": -64.94211611, "LATITUDE": 18.35471568, "OBJECTID_1": 4184, "PARCEL_NO_": "102803011100", "Tax_Legal_": "LERKENLUND 9B GR NORTHSIDE QTR", "Name": "TREVISTA TRUST", "Address": "PO Box 717", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040717, "Country": "United States", "Land_Value": 119000, "Improved_V": 409300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.88738382499997, "SHAPE_Area": 4238.6206575699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357545.246100001037121, 258350.067099999636412 ], [ 357572.870800003409386, 258375.731699999421835 ], [ 357620.418700002133846, 258373.081000000238419 ], [ 357675.85080000013113, 258335.0489999987185 ], [ 357677.344999998807907, 258331.847199998795986 ], [ 357677.392399996519089, 258326.285900000482798 ], [ 357558.050700001418591, 258333.79619999974966 ], [ 357553.271700002253056, 258334.096999999135733 ], [ 357545.246100001037121, 258350.067099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803018600", "MAP": "D9-4857-T90", "PARCEL_NAM": "9B-1", "ACRE": ".50", "LONGITUDE": -64.94252141, "LATITUDE": 18.35501882, "OBJECTID_1": 4269, "PARCEL_NO_": "102803018600", "Tax_Legal_": "LERKENLUND 9B-1 & 9-12 No.9 GREAT NORTHSIDE QTR.", "Name": "McFARLANE, KEVIN", "Address": "2EA ESTATE HULL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70100, "Improved_V": 155800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.28106668500001, "SHAPE_Area": 2286.7417862100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357526.176600001752377, 258387.750199999660254 ], [ 357553.181599996984005, 258406.304400000721216 ], [ 357589.108300000429153, 258395.254999998956919 ], [ 357620.418700002133846, 258373.081000000238419 ], [ 357572.870800003409386, 258375.731699999421835 ], [ 357545.246100001037121, 258350.067099999636412 ], [ 357526.176600001752377, 258387.750199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803019900", "MAP": "D9-6178-T97", "PARCEL_NAM": "9-11", "ACRE": ".01", "LONGITUDE": -64.94296129, "LATITUDE": 18.35511648, "OBJECTID_1": 4272, "PARCEL_NO_": "102803019900", "Tax_Legal_": "LERKENLUND 9-11& 9-12 LITTLE NORTHSIDE QTR", "Name": "THE FAEGOL TRUST", "Address": "PO Box 2126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.1706550237, "SHAPE_Area": 124.156694329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357526.169100001454353, 258387.745099999010563 ], [ 357525.509900003671646, 258387.292199999094009 ], [ 357500.840800002217293, 258392.682100001722574 ], [ 357512.031199999153614, 258394.774000000208616 ], [ 357520.187200002372265, 258399.585799999535084 ], [ 357526.169100001454353, 258387.745099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803019900", "MAP": "D9-6178-T97", "PARCEL_NAM": "9-12", "ACRE": null, "LONGITUDE": -64.94279747, "LATITUDE": 18.35516845, "OBJECTID_1": 4272, "PARCEL_NO_": "102803019900", "Tax_Legal_": "LERKENLUND 9-11& 9-12 LITTLE NORTHSIDE QTR", "Name": "THE FAEGOL TRUST", "Address": "PO Box 2126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.002788680899997, "SHAPE_Area": 247.393659329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357553.181599996984005, 258406.304400000721216 ], [ 357526.176600001752377, 258387.750199999660254 ], [ 357520.187200002372265, 258399.585799999535084 ], [ 357527.163599997758865, 258401.988400001078844 ], [ 357540.021300002932549, 258404.971799999475479 ], [ 357551.413999997079372, 258406.848000001162291 ], [ 357553.181599996984005, 258406.304400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803011000", "MAP": "F9-1753-T66", "PARCEL_NAM": "9-7", "ACRE": ".394", "LONGITUDE": -64.94324362, "LATITUDE": 18.35526546, "OBJECTID_1": 4183, "PARCEL_NO_": "102803011000", "Tax_Legal_": "LERKENLUND 9-7 GR NORTHSIDE QTR", "Name": "GALINDO, BRENDA", "Address": "PO Box 1729", "City": "Winterville", "State": "North Carolina", "Zip": 28590, "Country": "United States", "Land_Value": 82200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.46891840399999, "SHAPE_Area": 1106.4656245599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357457.862400002777576, 258400.554499998688698 ], [ 357466.973099999129772, 258425.592700000852346 ], [ 357470.938699997961521, 258423.6722999997437 ], [ 357512.702600002288818, 258412.96059999987483 ], [ 357523.519000001251698, 258409.537999998778105 ], [ 357522.653499998152256, 258405.697000000625849 ], [ 357513.019100002944469, 258402.226399999111891 ], [ 357502.105200000107288, 258399.509799998253584 ], [ 357486.481600001454353, 258397.6239 ], [ 357475.187899999320507, 258398.164799999445677 ], [ 357457.862400002777576, 258400.554499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803010900", "MAP": "D9-4458-T88", "PARCEL_NAM": "9-6", "ACRE": ".37", "LONGITUDE": -64.94365201, "LATITUDE": 18.35537329, "OBJECTID_1": 4182, "PARCEL_NO_": "102803010900", "Tax_Legal_": "LERKENLUND 9-6 9 GR NORTHSIDE", "Name": "VARLACK, LEON & MARY T", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66000, "Improved_V": 243500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.53803094, "SHAPE_Area": 1295.11627787 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357466.973099999129772, 258425.592700000852346 ], [ 357457.862400002777576, 258400.554499998688698 ], [ 357447.739100001752377, 258401.950899999588728 ], [ 357433.191299997270107, 258405.842599999159575 ], [ 357417.822800002992153, 258411.416400000452995 ], [ 357436.879399999976158, 258446.191700000315905 ], [ 357449.045999996364117, 258437.847500000149012 ], [ 357460.413500003516674, 258428.652399998158216 ], [ 357463.651399999856949, 258427.201299998909235 ], [ 357466.973099999129772, 258425.592700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803013800", "MAP": "F9-1421-T64", "PARCEL_NAM": "9-1", "ACRE": ".44", "LONGITUDE": -64.94272687, "LATITUDE": 18.35541988, "OBJECTID_1": 4207, "PARCEL_NO_": "102803013800", "Tax_Legal_": "LERKENLUND 9-1 LITTLE NORTHSIDE QTR", "Name": "HATCH, LEWIS M.", "Address": "80 N Cerrio Loop", "City": "Los Lunas", "State": "New Mexico", "Zip": 87031, "Country": "United States", "Land_Value": 92800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.08183729000001, "SHAPE_Area": 1661.1095605099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357602.32490000128746, 258400.777300000190735 ], [ 357565.533100001513958, 258410.575899999588728 ], [ 357526.590700000524521, 258418.951799999922514 ], [ 357501.555200003087521, 258426.667100001126528 ], [ 357514.226099997758865, 258453.790800001472235 ], [ 357549.883599996566772, 258432.973299998790026 ], [ 357586.33669999986887, 258413.428800001740456 ], [ 357602.32490000128746, 258400.777300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803013400", "MAP": "D9-569-T66", "PARCEL_NAM": "9D-1-2", "ACRE": "0.36", "LONGITUDE": -64.94404506, "LATITUDE": 18.35603073, "OBJECTID_1": 4203, "PARCEL_NO_": "102803013400", "Tax_Legal_": "LERKENLUND 9D-1-2 GR NORTHSIDE QTR", "Name": "ROSEBURY, JAMES C.", "Address": "PO Box 8168", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48700, "Improved_V": 375100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.12744115000001, "SHAPE_Area": 1123.0872786499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357424.481899999082088, 258498.14299999922514 ], [ 357424.6283999979496, 258498.062600001692772 ], [ 357406.139200001955032, 258471.174600001424551 ], [ 357386.498000003397465, 258480.999200001358986 ], [ 357377.142899997532368, 258486.186700001358986 ], [ 357398.112800002098083, 258516.270700000226498 ], [ 357424.481899999082088, 258498.14299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94549718, "LATITUDE": 18.35699461, "OBJECTID_1": 3854, "PARCEL_NO_": "102801031300", "Tax_Legal_": "ST PETER 3I-18 LITTLE NORTHSIDE", "Name": "BRADSHAW , LACILLE & IVY", "Address": "PO Box 8747", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 296000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.37025263, "SHAPE_Area": 716.40201680500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357263.755599997937679, 258606.683499999344349 ], [ 357254.308300003409386, 258579.7972999997437 ], [ 357230.009199999272823, 258592.475099999457598 ], [ 357237.878100000321865, 258615.337600000202656 ], [ 357263.755599997937679, 258606.683499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803010400", "MAP": "G9-699-T63", "PARCEL_NAM": "9D-2", "ACRE": ".63", "LONGITUDE": -64.94452769, "LATITUDE": 18.3554446, "OBJECTID_1": 4177, "PARCEL_NO_": "102803010400", "Tax_Legal_": "LERKENLUND 9D-2 GR NORTHSIDE QTR", "Name": "ZAJAC, KATHLYN M", "Address": "1-143-59 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.82794424, "SHAPE_Area": 2220.4151235700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357304.996200002729893, 258447.915199998766184 ], [ 357318.230999998748302, 258458.871199999004602 ], [ 357319.382700003683567, 258458.407200001180172 ], [ 357338.941899999976158, 258450.621100001037121 ], [ 357357.936700001358986, 258440.311299998313189 ], [ 357371.259199999272823, 258432.280799999833107 ], [ 357383.187100000679493, 258427.920800000429153 ], [ 357390.273299999535084, 258427.022900000214577 ], [ 357370.423000000417233, 258390.763399999588728 ], [ 357338.726899996399879, 258419.846000000834465 ], [ 357325.721600003540516, 258431.982999999076128 ], [ 357314.348700001835823, 258441.811299998313189 ], [ 357304.996200002729893, 258447.915199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801032400", "MAP": "D9-569-T66", "PARCEL_NAM": "9D-1", "ACRE": ".51", "LONGITUDE": -64.94476557, "LATITUDE": 18.35660048, "OBJECTID_1": 3864, "PARCEL_NO_": "102801032400", "Tax_Legal_": "LERKENLUND 9D-1 GR NORTHSIDE QTR", "Name": "MATHES, ROBERT & MARIAN", "Address": "2 ESTATE CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.08951178400002, "SHAPE_Area": 1283.57151561 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357343.628499999642372, 258553.726599998772144 ], [ 357366.74379999935627, 258537.835799999535084 ], [ 357333.799999997019768, 258524.173000000417233 ], [ 357330.413599997758865, 258529.134300000965595 ], [ 357325.715300001204014, 258536.169399999082088 ], [ 357322.815800003707409, 258550.292599998414516 ], [ 357321.503300003707409, 258559.508099999278784 ], [ 357318.97070000320673, 258566.560899998992682 ], [ 357314.609399996697903, 258570.215900000184774 ], [ 357266.370399996638298, 258593.265099998563528 ], [ 357263.755599997937679, 258606.683499999344349 ], [ 357286.469099998474121, 258590.826299998909235 ], [ 357307.559000000357628, 258576.222300000488758 ], [ 357323.771600000560284, 258566.222500000149012 ], [ 357343.628499999642372, 258553.726599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803010600", "MAP": "D9-569-T66", "PARCEL_NAM": "9D-1-1", "ACRE": ".31", "LONGITUDE": -64.94436292, "LATITUDE": 18.35622381, "OBJECTID_1": 4179, "PARCEL_NO_": "102803010600", "Tax_Legal_": "LERKENLUND 9D-1-1 GT.NORTHSIDE QTR.", "Name": "BEACH HEAD ST. THOMAS, LLC", "Address": "5501 MONTE FINO COURT", "City": "Greenacres", "State": "Florida", "Zip": 334635973, "Country": "United States", "Land_Value": 40600, "Improved_V": 130200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.63110333500001, "SHAPE_Area": 1754.06436764 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357398.112800002098083, 258516.270700000226498 ], [ 357377.142899997532368, 258486.186700001358986 ], [ 357370.646799996495247, 258489.788899999111891 ], [ 357363.184000000357628, 258494.341299999505281 ], [ 357355.396899998188019, 258500.736299999058247 ], [ 357347.292900003492832, 258508.051300000399351 ], [ 357337.302500002086163, 258519.041499998420477 ], [ 357333.799999997019768, 258524.173000000417233 ], [ 357366.74379999935627, 258537.835799999535084 ], [ 357398.112800002098083, 258516.270700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803010700", "MAP": "G9-699-T63", "PARCEL_NAM": "9D-3", "ACRE": ".39", "LONGITUDE": -64.94423689, "LATITUDE": 18.35570238, "OBJECTID_1": 4180, "PARCEL_NO_": "102803010700", "Tax_Legal_": "LERKENLUND 9D-3 GR NORTHSIDE", "Name": "GREEN, JEANNIE", "Address": "PO Box 190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 82200, "Improved_V": 1600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.170296678, "SHAPE_Area": 1188.23076365 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357358.239200003445148, 258444.444200001657009 ], [ 357376.692800000309944, 258480.412900000810623 ], [ 357388.094899997115135, 258474.861400000751019 ], [ 357404.454300001263618, 258466.191300000995398 ], [ 357394.924199998378754, 258449.014699999243021 ], [ 357386.974299997091293, 258435.650699999183416 ], [ 357377.267899997532368, 258436.5929000005126 ], [ 357366.512699998915195, 258440.57490000128746 ], [ 357358.239200003445148, 258444.444200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801032100", "MAP": "G9-708-T63", "PARCEL_NAM": "9D-10", "ACRE": ".42", "LONGITUDE": -64.94512121, "LATITUDE": 18.3566537, "OBJECTID_1": 3861, "PARCEL_NO_": "102801032100", "Tax_Legal_": "LERKENLUND 9D-10 GR NORTHSIDE QTR", "Name": "DAVIS, PAUL & SHERRIE", "Address": "PO Box 12296", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73000, "Improved_V": 423700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.64104641899999, "SHAPE_Area": 1572.8247389200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357317.880500003695488, 258553.114700000733137 ], [ 357272.710900001227856, 258535.710900001227856 ], [ 357271.489399999380112, 258546.1886 ], [ 357268.066699996590614, 258559.531700000166893 ], [ 357264.861000001430511, 258570.163600001484156 ], [ 357262.848600000143051, 258577.898499999195337 ], [ 357263.977300003170967, 258582.945900000631809 ], [ 357267.759900003671646, 258586.13459999859333 ], [ 357283.900399997830391, 258579.807500001043081 ], [ 357312.790600001811981, 258565.587999999523163 ], [ 357315.592500001192093, 258563.458000000566244 ], [ 357317.179399996995926, 258558.550299998372793 ], [ 357317.880500003695488, 258553.114700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803010500", "MAP": "G9-708-T63", "PARCEL_NAM": "9D-8", "ACRE": ".36", "LONGITUDE": -64.9445612, "LATITUDE": 18.35597446, "OBJECTID_1": 4178, "PARCEL_NO_": "102803010500", "Tax_Legal_": "LEREKNLUND 9D-8 GR NORTHSIDE QTR", "Name": "CRUSE, GREGORY", "Address": "PO Box 9050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75900, "Improved_V": 503700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.93084098400001, "SHAPE_Area": 1263.0392775099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357315.767399996519089, 258490.303399998694658 ], [ 357339.127700001001358, 258510.30460000038147 ], [ 357343.288400001823902, 258505.86600000038743 ], [ 357352.954300001263618, 258496.718400001525879 ], [ 357363.545900002121925, 258487.885899998247623 ], [ 357375.048199996352196, 258481.213599998503923 ], [ 357376.692800000309944, 258480.412900000810623 ], [ 357368.594999998807907, 258464.629099998623133 ], [ 357328.167499996721745, 258480.957299999892712 ], [ 357315.767399996519089, 258490.303399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801033000", "MAP": "D9-7094-T002", "PARCEL_NAM": "9D-7BC", "ACRE": ".516", "LONGITUDE": -64.94537633, "LATITUDE": 18.35609711, "OBJECTID_1": 3868, "PARCEL_NO_": "102801033000", "Tax_Legal_": "LERKENLUDN 9D-7B GT. NORTHSIDE", "Name": "FRIEDMAN, LESLIE & ANDREW", "Address": "P.O. BOX 3541", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.95064485500001, "SHAPE_Area": 2464.4413434100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357241.716499999165535, 258543.386100001633167 ], [ 357260.060099996626377, 258537.181800000369549 ], [ 357268.705600000917912, 258528.889600001275539 ], [ 357268.754199996590614, 258522.912599999457598 ], [ 357266.624300003051758, 258497.122400000691414 ], [ 357267.089800000190735, 258487.824599999934435 ], [ 357272.233900003135204, 258478.564899999648333 ], [ 357281.632200002670288, 258473.602899998426437 ], [ 357292.976899996399879, 258469.044399999082088 ], [ 357318.230999998748302, 258458.871199999004602 ], [ 357304.996200002729893, 258447.915199998766184 ], [ 357282.724500000476837, 258462.450699999928474 ], [ 357254.343500003218651, 258481.005800001323223 ], [ 357251.100299999117851, 258483.090199999511242 ], [ 357226.590499997138977, 258498.728999998420477 ], [ 357239.364100001752377, 258535.556400001049042 ], [ 357241.716499999165535, 258543.386100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803014200", "MAP": "G9-699-T63", "PARCEL_NAM": "9D-4", "ACRE": ".33", "LONGITUDE": -64.94458558, "LATITUDE": 18.35576473, "OBJECTID_1": 4209, "PARCEL_NO_": "102803014200", "Tax_Legal_": "LERKENLUND ESTATE 9D-4 No.9 GREAT NORTHSIDE QTR.", "Name": "HADDOX, JENNIFER and KEVIN", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43200, "Improved_V": 199600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.74020016, "SHAPE_Area": 908.07113374899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357319.976800002157688, 258462.654599998146296 ], [ 357328.167499996721745, 258480.957299999892712 ], [ 357368.594999998807907, 258464.629099998623133 ], [ 357358.239200003445148, 258444.444200001657009 ], [ 357351.443599998950958, 258447.622299998998642 ], [ 357338.327100001275539, 258454.298000000417233 ], [ 357325.017300002276897, 258460.778400000184774 ], [ 357319.976800002157688, 258462.654599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803010300", "MAP": null, "PARCEL_NAM": "9D-5", "ACRE": null, "LONGITUDE": -64.94496813000001, "LATITUDE": 18.35592841, "OBJECTID_1": 4176, "PARCEL_NO_": "102803010300", "Tax_Legal_": "9D-5 LEREKNLUND NO.9 GREAT NORTHSIDE QTR.", "Name": "LUTHER BENJAMIN", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 118000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.716695593, "SHAPE_Area": 1040.8413189400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357273.557800002396107, 258484.197500001639128 ], [ 357305.020599998533726, 258498.403299998492002 ], [ 357328.167499996721745, 258480.957299999892712 ], [ 357319.976800002157688, 258462.654599998146296 ], [ 357305.657799996435642, 258467.9847999997437 ], [ 357281.605499997735023, 258476.896999999880791 ], [ 357274.548100002110004, 258481.684200000017881 ], [ 357273.557800002396107, 258484.197500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801032300", "MAP": "G9-708-T63", "PARCEL_NAM": "9D-9", "ACRE": ".31", "LONGITUDE": -64.94485657, "LATITUDE": 18.35628583, "OBJECTID_1": 3863, "PARCEL_NO_": "102801032300", "Tax_Legal_": "LERKENLUND 9D-9 GR NORTHSIDE QTR", "Name": "MATHES, ROBERT & MARIAN", "Address": "2 ESTATE CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73700, "Improved_V": 164600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.122271547, "SHAPE_Area": 1403.5926528099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357305.020599998533726, 258498.403299998492002 ], [ 357298.079199999570847, 258545.485300000756979 ], [ 357317.880500003695488, 258553.114700000733137 ], [ 357318.170100003480911, 258550.869899999350309 ], [ 357319.482600003480911, 258541.654500000178814 ], [ 357322.030199997127056, 258532.756599999964237 ], [ 357326.730999998748302, 258525.413899999111891 ], [ 357336.421899996697903, 258513.191100001335144 ], [ 357339.127700001001358, 258510.30460000038147 ], [ 357315.767399996519089, 258490.303399998694658 ], [ 357305.020599998533726, 258498.403299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801032200", "MAP": "G9-917-T67", "PARCEL_NAM": "9D-6", "ACRE": ".30", "LONGITUDE": -64.94512489, "LATITUDE": 18.35623338, "OBJECTID_1": 3862, "PARCEL_NO_": "102801032200", "Tax_Legal_": "LERKENLUND 9D-6 GR NORTHSIDE QTR", "Name": "SMITH, MOLETO A. JR. & ATHENIA W", "Address": "PO Box 307452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52100, "Improved_V": 325600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.24263060600001, "SHAPE_Area": 1493.7957424599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357298.079199999570847, 258545.485300000756979 ], [ 357305.020599998533726, 258498.403299998492002 ], [ 357273.557800002396107, 258484.197500001639128 ], [ 357271.960199996829033, 258488.251800000667572 ], [ 357271.097000002861023, 258498.5152000002563 ], [ 357273.041400000452995, 258523.141199998557568 ], [ 357272.956399999558926, 258533.604699999094009 ], [ 357272.710900001227856, 258535.710900001227856 ], [ 357298.079199999570847, 258545.485300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803014300", "MAP": "G9-2107-T72", "PARCEL_NAM": "9D-7A", "ACRE": ".255", "LONGITUDE": -64.9454059, "LATITUDE": 18.35663332, "OBJECTID_1": 4210, "PARCEL_NO_": "102803014300", "Tax_Legal_": "LERKENLUND 9D-7A GR NORTHSIDE", "Name": "FRIEDMAN, LESLIE & ANDREW", "Address": "P.O. BOX 3541", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.86900575600001, "SHAPE_Area": 780.57176135300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357268.705600000917912, 258528.889600001275539 ], [ 357260.060099996626377, 258537.181800000369549 ], [ 357241.716499999165535, 258543.386100001633167 ], [ 357251.941500000655651, 258573.656199999153614 ], [ 357254.308300003409386, 258579.7972999997437 ], [ 357263.755599997937679, 258606.683499999344349 ], [ 357266.370399996638298, 258593.265099998563528 ], [ 357262.354800000786781, 258590.684000000357628 ], [ 357260.626999996602535, 258587.375700000673532 ], [ 357258.323899999260902, 258582.899999998509884 ], [ 357260.399300001561642, 258567.41440000012517 ], [ 357265.991599999368191, 258550.988400001078844 ], [ 357268.662900000810623, 258534.151200000196695 ], [ 357268.705600000917912, 258528.889600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801031500", "MAP": "D9-1411-T78", "PARCEL_NAM": null, "ACRE": ".61", "LONGITUDE": -64.94554282, "LATITUDE": 18.35735996, "OBJECTID_1": 3855, "PARCEL_NO_": "102801031500", "Tax_Legal_": "3I-15,-16,-17 ST PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "FATER, RICHARD C.", "Address": "4G7 A B St Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 171500, "Improved_V": 142700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.639981218, "SHAPE_Area": 2346.6505191199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357245.102600000798702, 258619.196400001645088 ], [ 357225.680900000035763, 258627.270100001245737 ], [ 357212.733199998736382, 258632.65260000154376 ], [ 357198.149400003254414, 258640.765900000929832 ], [ 357190.842299997806549, 258646.616700001060963 ], [ 357190.822499997913837, 258648.9386 ], [ 357223.841700002551079, 258653.852899998426437 ], [ 357237.522100001573563, 258657.13120000064373 ], [ 357246.373499996960163, 258659.314599998295307 ], [ 357252.824000000953674, 258659.367400001734495 ], [ 357258.482600003480911, 258657.725000001490116 ], [ 357263.343900002539158, 258655.020500000566244 ], [ 357277.95099999755621, 258644.163199998438358 ], [ 357266.939499996602535, 258611.564699999988079 ], [ 357245.102600000798702, 258619.196400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801032600", "MAP": "F9-1231-T63", "PARCEL_NAM": "8-60", "ACRE": ".15", "LONGITUDE": -64.94405945, "LATITUDE": 18.35634731, "OBJECTID_1": 3866, "PARCEL_NO_": "102801032600", "Tax_Legal_": "LERKENLUND 8-60 GT. NORTHSIDE", "Name": "STEVENS, WILMA", "Address": "PO Box 302267", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.944233452500001, "SHAPE_Area": 583.49004338600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357406.45380000025034, 258515.85190000012517 ], [ 357402.77589999884367, 258513.065000001341105 ], [ 357398.112800002098083, 258516.270700000226498 ], [ 357381.597699999809265, 258527.624200001358986 ], [ 357382.590999998152256, 258529.151099998503923 ], [ 357393.038099996745586, 258544.868000000715256 ], [ 357401.42400000244379, 258537.938299998641014 ], [ 357418.453599996864796, 258526.678599998354912 ], [ 357419.415500000119209, 258525.803800001740456 ], [ 357418.064800001680851, 258524.766699999570847 ], [ 357406.45380000025034, 258515.85190000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801032500", "MAP": "D9-3145-T85", "PARCEL_NAM": "8-61", "ACRE": ".15", "LONGITUDE": -64.94428088, "LATITUDE": 18.35650383, "OBJECTID_1": 3865, "PARCEL_NO_": "102801032500", "Tax_Legal_": "LERKENLUND 8-61 GR NORTHSIDE", "Name": "BROOKES, JORYN M", "Address": "PO Box 1103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22800, "Improved_V": 204400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.003803002, "SHAPE_Area": 624.35237483100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357359.092399999499321, 258543.095800001174212 ], [ 357370.640500001609325, 258564.407200001180172 ], [ 357376.250299997627735, 258558.630499999970198 ], [ 357378.340899996459484, 258556.926600001752377 ], [ 357379.735500000417233, 258555.789900001138449 ], [ 357385.994300000369549, 258550.688700001686811 ], [ 357393.038099996745586, 258544.868000000715256 ], [ 357382.590999998152256, 258529.151099998503923 ], [ 357381.597699999809265, 258527.624200001358986 ], [ 357366.74379999935627, 258537.835799999535084 ], [ 357359.092399999499321, 258543.095800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801031900", "MAP": "F9-1234-T63", "PARCEL_NAM": "8-63", "ACRE": "0.22", "LONGITUDE": -64.94458062, "LATITUDE": 18.35679195, "OBJECTID_1": 3859, "PARCEL_NO_": "102801031900", "Tax_Legal_": "LERKENLUND 8-63 GT. NORTHSIDE", "Name": "TUCHTEN, IVAN", "Address": "85-36 152ND STREET", "City": "Briarwood", "State": "New York", "Zip": 11435, "Country": "United States", "Land_Value": 35700, "Improved_V": 251400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.961867566, "SHAPE_Area": 876.18216388500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357359.931599996984005, 258581.08390000090003 ], [ 357343.6283999979496, 258553.726700000464916 ], [ 357339.584499999880791, 258556.271600000560284 ], [ 357323.771600000560284, 258566.222500000149012 ], [ 357349.264300003647804, 258602.73930000141263 ], [ 357354.948100000619888, 258598.141699999570847 ], [ 357356.627199999988079, 258590.344999998807907 ], [ 357357.394900001585484, 258588.193399999290705 ], [ 357359.931599996984005, 258581.08390000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803011800", "MAP": "D9-7116-T002", "PARCEL_NAM": "9C", "ACRE": ".500", "LONGITUDE": -64.94310432, "LATITUDE": 18.35493698, "OBJECTID_1": 4190, "PARCEL_NO_": "102803011800", "Tax_Legal_": "9C LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "COLLINS, ANTHONY V. & SANDRA WEBB", "Address": "8711 Regatta Ct", "City": "Sims", "State": "North Carolina", "Zip": 27880, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.63217629, "SHAPE_Area": 2161.3822810299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357539.734099999070168, 258360.893899999558926 ], [ 357506.131700001657009, 258351.759799998253584 ], [ 357499.010200001299381, 258349.823899999260902 ], [ 357497.2483000010252, 258357.413899999111891 ], [ 357480.555399999022484, 258358.836800001561642 ], [ 357469.842000000178814, 258359.75 ], [ 357469.443400003015995, 258391.110800001770258 ], [ 357478.483300000429153, 258389.959100000560284 ], [ 357479.710400000214577, 258390.108600001782179 ], [ 357500.840800002217293, 258392.682100001722574 ], [ 357525.509900003671646, 258387.292199999094009 ], [ 357526.169100001454353, 258387.745099999010563 ], [ 357539.734099999070168, 258360.893899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803014400", "MAP": "D9-7116-T002", "PARCEL_NAM": "9-9", "ACRE": ".504", "LONGITUDE": -64.94371838000001, "LATITUDE": 18.35499974, "OBJECTID_1": 4211, "PARCEL_NO_": "102803014400", "Tax_Legal_": "9-9 LERKENLUND No9 GREAT NORTHSIDE QTR.", "Name": "COLLINS, ANTHONY V. & SANDRA WEBB", "Address": "8711 Regatta Ct", "City": "Sims", "State": "North Carolina", "Zip": 27880, "Country": "United States", "Land_Value": 65500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.55911197899999, "SHAPE_Area": 2195.3713600800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357469.443400003015995, 258391.110800001770258 ], [ 357469.842000000178814, 258359.75 ], [ 357456.48929999768734, 258360.888199999928474 ], [ 357398.051600001752377, 258365.86939999833703 ], [ 357416.273100003600121, 258404.015399999916553 ], [ 357439.722699999809265, 258396.396899998188019 ], [ 357456.687600001692772, 258392.736000001430511 ], [ 357469.443400003015995, 258391.110800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803014800", "MAP": "D9-7116-T002", "PARCEL_NAM": "19C-REM", "ACRE": ".572", "LONGITUDE": -64.942876, "LATITUDE": 18.3540492, "OBJECTID_1": 4236, "PARCEL_NO_": "102803014800", "Tax_Legal_": "19C REM. EST. SOLBERG #1 LT NORTHSIDE QTR", "Name": "NORKAITIS, PAULA D. & GARY V", "Address": "PO Box 308336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 112300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.13655141000001, "SHAPE_Area": 1910.28501815 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357515.52139999717474, 258297.985199999064207 ], [ 357561.802400000393391, 258308.024500001221895 ], [ 357563.07880000025034, 258303.892000000923872 ], [ 357551.099200002849102, 258290.284000001847744 ], [ 357535.154600001871586, 258268.833000000566244 ], [ 357533.572499997913837, 258265.231499999761581 ], [ 357531.97070000320673, 258263.951799999922514 ], [ 357521.625299997627735, 258247.824000000953674 ], [ 357512.897900000214577, 258231.076200000941753 ], [ 357508.115800000727177, 258224.493200000375509 ], [ 357505.698600001633167, 258224.262299999594688 ], [ 357504.066200003027916, 258226.570999998599291 ], [ 357507.75789999961853, 258266.497900001704693 ], [ 357511.651000000536442, 258282.783900000154972 ], [ 357514.78999999910593, 258292.942099999636412 ], [ 357516.38459999859333, 258295.066100001335144 ], [ 357515.52139999717474, 258297.985199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803018800", "MAP": "D9-7116-T002", "PARCEL_NAM": "19C-1", "ACRE": ".500", "LONGITUDE": -64.94284107, "LATITUDE": 18.35453853, "OBJECTID_1": 4271, "PARCEL_NO_": "102803018800", "Tax_Legal_": "19C-1 ESTATE SOLBERG #1 LITTLE NORTHSIDE QTR", "Name": "NORKAITIS, GARY V. & PAULA D", "Address": "PO Box 308336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.45714561400001, "SHAPE_Area": 2564.8220347699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357561.802400000393391, 258308.024500001221895 ], [ 357515.52139999717474, 258297.985199999064207 ], [ 357513.893700003623962, 258303.489500001072884 ], [ 357503.976999998092651, 258331.69480000063777 ], [ 357502.354900002479553, 258337.301300000399351 ], [ 357500.605499997735023, 258343.851300001144409 ], [ 357499.010200001299381, 258349.823899999260902 ], [ 357506.131700001657009, 258351.759799998253584 ], [ 357539.734099999070168, 258360.893899999558926 ], [ 357541.720299996435642, 258356.962400000542402 ], [ 357553.271700002253056, 258334.096999999135733 ], [ 357556.444899998605251, 258325.369300000369549 ], [ 357561.802400000393391, 258308.024500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803012000", "MAP": "D9-7116-T002", "PARCEL_NAM": "19L", "ACRE": "1.035", "LONGITUDE": -64.94344168000001, "LATITUDE": 18.35458573, "OBJECTID_1": 4191, "PARCEL_NO_": "102803012000", "Tax_Legal_": "SOLBERG 19L No.1 LITTLE NORTHSIDE QTR.", "Name": "COLLINS, ANTHONY V. & SANDRA WEBB", "Address": "8711 Regatta Ct", "City": "Sims", "State": "North Carolina", "Zip": 27880, "Country": "United States", "Land_Value": 147700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 321.69166043899997, "SHAPE_Area": 4335.0480999299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357510.88570000231266, 258297.050299998372793 ], [ 357507.400399997830391, 258300.717500001192093 ], [ 357446.85530000180006, 258300.383299998939037 ], [ 357454.934000000357628, 258314.61710000038147 ], [ 357450.060199998319149, 258318.7989999987185 ], [ 357424.056800000369549, 258342.228700000792742 ], [ 357411.866800002753735, 258353.316899999976158 ], [ 357407.356200002133846, 258357.415199998766184 ], [ 357398.051600001752377, 258365.86939999833703 ], [ 357456.48929999768734, 258360.888199999928474 ], [ 357480.555399999022484, 258358.836800001561642 ], [ 357497.2483000010252, 258357.413899999111891 ], [ 357499.010200001299381, 258349.823899999260902 ], [ 357502.354900002479553, 258337.301300000399351 ], [ 357503.976999998092651, 258331.69480000063777 ], [ 357513.893700003623962, 258303.489500001072884 ], [ 357510.88570000231266, 258297.050299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803012500", "MAP": "D9-7178-T003", "PARCEL_NAM": "19K-1", "ACRE": ".916", "LONGITUDE": -64.94347056, "LATITUDE": 18.35368001, "OBJECTID_1": 4196, "PARCEL_NO_": "102803012500", "Tax_Legal_": "19K-1 ESTATE SOLBERG #1 LITTLE NORTHSIDE QTR", "Name": "CALEB, URIEL R. M. & HYACINTH V", "Address": "PO Box 308511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 153300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.04649013199997, "SHAPE_Area": 4236.3240430200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357496.753700003027916, 258193.355500001460314 ], [ 357450.9358000010252, 258199.746500000357628 ], [ 357456.522600002586842, 258222.804400000721216 ], [ 357405.665500000119209, 258229.354200001806021 ], [ 357420.69709999859333, 258255.17960000038147 ], [ 357501.682499997317791, 258266.267299998551607 ], [ 357500.564099997282028, 258259.050700001418591 ], [ 357496.886699996888638, 258217.435199998319149 ], [ 357496.753700003027916, 258193.355500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803012100", "MAP": "D9-7178-T003", "PARCEL_NAM": "19K-REM", "ACRE": ".818", "LONGITUDE": -64.94342861, "LATITUDE": 18.35410068, "OBJECTID_1": 4192, "PARCEL_NO_": "102803012100", "Tax_Legal_": "19K REM.ESTATE SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "COLLINS, ANTHONY V. & SANDRA WEBB", "Address": "8711 Regatta Ct", "City": "Sims", "State": "North Carolina", "Zip": 27880, "Country": "United States", "Land_Value": 125500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.04756423200001, "SHAPE_Area": 2764.2755297799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357501.682499997317791, 258266.267299998551607 ], [ 357420.69709999859333, 258255.17960000038147 ], [ 357431.097099997103214, 258273.047600001096725 ], [ 357439.045100003480911, 258286.622699998319149 ], [ 357446.85530000180006, 258300.383299998939037 ], [ 357507.400399997830391, 258300.717500001192093 ], [ 357510.88570000231266, 258297.050299998372793 ], [ 357509.9341000020504, 258295.013300001621246 ], [ 357508.335900001227856, 258293.311500001698732 ], [ 357502.857100002467632, 258273.846000000834465 ], [ 357501.682499997317791, 258266.267299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017900", "MAP": "D9-7712-T006", "PARCEL_NAM": "11D-15", "ACRE": ".459", "LONGITUDE": -64.94407681, "LATITUDE": 18.35445199, "OBJECTID_1": 4264, "PARCEL_NO_": "102803017900", "Tax_Legal_": "SOLBERG 11D-15 9AA-4 LERKENLUND", "Name": "LAURO, VINCENT ANDREW & ASHLEY MEEDER", "Address": "444 NW 1st Ave", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33301, "Country": "United States", "Land_Value": 71200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.44608882, "SHAPE_Area": 1677.06539099 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357403.872000001370907, 258345.229899998754263 ], [ 357424.305799998342991, 258342.004299998283386 ], [ 357431.119300000369549, 258335.865200001746416 ], [ 357402.014499999582767, 258303.325500000268221 ], [ 357405.141500003635883, 258299.50450000166893 ], [ 357390.805500000715256, 258285.796799998730421 ], [ 357376.858400002121925, 258297.934900000691414 ], [ 357371.914399996399879, 258310.348999999463558 ], [ 357403.872000001370907, 258345.229899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013100", "MAP": "D9-6927-T001", "PARCEL_NAM": "2G-1", "ACRE": ".50", "LONGITUDE": -64.9383283, "LATITUDE": 18.36163741, "OBJECTID_1": 4050, "PARCEL_NO_": "102802013100", "Tax_Legal_": "2G-1 ESTATE LERKENLUND #9 GREAT NORTHSIDE", "Name": "SILVA, JOY VERONICA BRYAN", "Address": "PO Box 306024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65500, "Improved_V": 320100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.63977534700001, "SHAPE_Area": 2029.78993507 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358030.837499998509884, 259123.886599998921156 ], [ 358026.793999999761581, 259118.264600001275539 ], [ 358007.130800001323223, 259091.316799998283386 ], [ 357964.250600002706051, 259108.064399998635054 ], [ 357995.416400000452995, 259143.910199999809265 ], [ 358004.023199997842312, 259143.061799999326468 ], [ 358012.506499998271465, 259141.571800000965595 ], [ 358021.012699998915195, 259137.275299999862909 ], [ 358025.117899999022484, 259134.034400001168251 ], [ 358029.240900002419949, 259128.610599998384714 ], [ 358030.837499998509884, 259123.886599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802015900", "MAP": "D9-9087-T016", "PARCEL_NAM": "REM 2E-4-1", "ACRE": "0.41", "LONGITUDE": -64.93864122, "LATITUDE": 18.36117324, "OBJECTID_1": 4077, "PARCEL_NO_": "102802015900", "Tax_Legal_": "2E-4-1 LERKUNLUND NO 9 GREAT NORTHSIDE QTR", "Name": "BERRY, ROBERT", "Address": "2E-3 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 177400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.72081950899999, "SHAPE_Area": 1867.5338955899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357943.3091000020504, 259054.053599998354912 ], [ 357938.632299996912479, 259078.559799998998642 ], [ 357966.568300001323223, 259083.762600000947714 ], [ 358007.130800001323223, 259091.316799998283386 ], [ 357998.904399998486042, 259079.487399999052286 ], [ 357990.869999997317791, 259070.310100000351667 ], [ 357984.581299997866154, 259063.249699998646975 ], [ 357976.564000003039837, 259051.969799999147654 ], [ 357970.997500002384186, 259042.812600001692772 ], [ 357968.08219999819994, 259035.896600000560284 ], [ 357967.085199996829033, 259033.531500000506639 ], [ 357943.3091000020504, 259054.053599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704023700", "MAP": "D9-7736-T006", "PARCEL_NAM": "2B-3", "ACRE": ".61", "LONGITUDE": -64.95795069, "LATITUDE": 18.35330588, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.57289137599997, "SHAPE_Area": 3410.05397442 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355946.82150000333786, 258243.800999999046326 ], [ 355959.165399998426437, 258136.277499999850988 ], [ 355956.818000003695488, 258136.364399999380112 ], [ 355897.012699998915195, 258154.643199998885393 ], [ 355934.852700002491474, 258228.926399998366833 ], [ 355946.82150000333786, 258243.800999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704023600", "MAP": "D9-6859-T000", "PARCEL_NAM": "2B-1", "ACRE": null, "LONGITUDE": -64.9581445, "LATITUDE": 18.35264505, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.23898348799997, "SHAPE_Area": 5362.6212277300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355897.012699998915195, 258154.643199998885393 ], [ 355956.818000003695488, 258136.364399999380112 ], [ 355956.396700002253056, 258135.311200000345707 ], [ 355956.186099998652935, 258134.258000001311302 ], [ 355954.711599998176098, 258133.6261 ], [ 355946.285999998450279, 258133.204799998551607 ], [ 355947.02759999781847, 258124.956999998539686 ], [ 355943.630800001323223, 258050.413100000470877 ], [ 355865.852600000798702, 258093.473000001162291 ], [ 355897.012699998915195, 258154.643199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704023800", "MAP": "D9-7736-T006", "PARCEL_NAM": "2B-4", "ACRE": ".53", "LONGITUDE": -64.95765422, "LATITUDE": 18.35326744, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.76947175399999, "SHAPE_Area": 1969.269168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355959.165399998426437, 258136.277499999850988 ], [ 355946.82150000333786, 258243.800999999046326 ], [ 355954.126900002360344, 258238.161200001835823 ], [ 355969.836999997496605, 258192.482500001788139 ], [ 355973.139600001275539, 258183.432500001043081 ], [ 355990.48929999768734, 258134.60080000013113 ], [ 355963.137199997901917, 258133.6261 ], [ 355962.294699996709824, 258134.679299999028444 ], [ 355962.505300000309944, 258136.153799999505281 ], [ 355959.165399998426437, 258136.277499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9217187, "LATITUDE": 18.34627104, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.66319390772999998, "SHAPE_Area": 0.01876847019 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359769.619199998676777, 257432.009399998933077 ], [ 359769.659100003540516, 257432.281700000166893 ], [ 359769.772100001573563, 257432.112100001424551 ], [ 359769.619199998676777, 257432.009399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "7B", "ACRE": null, "LONGITUDE": -64.92346377, "LATITUDE": 18.34209719, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.163493756299999, "SHAPE_Area": 419.28430809299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359601.212300002574921, 256978.788800001144409 ], [ 359590.247299998998642, 256952.088799998164177 ], [ 359577.476700000464916, 256958.653000000864267 ], [ 359586.73929999768734, 256984.442699998617172 ], [ 359590.357400000095367, 256983.028999999165535 ], [ 359593.975699998438358, 256981.61540000140667 ], [ 359597.593999996781349, 256980.201999999582767 ], [ 359601.212300002574921, 256978.788800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9311666, "LATITUDE": 18.34395195, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.284712860700001, "SHAPE_Area": 15.3848465018 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358782.916199997067451, 257167.179299999028444 ], [ 358768.362800002098083, 257166.213100001215935 ], [ 358768.365900002419949, 257166.741900000721216 ], [ 358768.369400002062321, 257167.270599998533726 ], [ 358768.373199999332428, 257167.799400001764297 ], [ 358768.377400003373623, 257168.328200001269579 ], [ 358782.916199997067451, 257167.179299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "G9-1268-T69", "PARCEL_NAM": "PORTION OF 14", "ACRE": null, "LONGITUDE": -64.91624859, "LATITUDE": 18.36324952, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 440.51699980199999, "SHAPE_Area": 3690.0559421399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360325.016999997198582, 259383.333099998533726 ], [ 360361.861599996685982, 259380.959800001233816 ], [ 360309.909299999475479, 259184.002599999308586 ], [ 360314.182800002396107, 259240.387299999594688 ], [ 360325.016999997198582, 259383.333099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90192553, "LATITUDE": 18.35661914, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.04113593366, "SHAPE_Area": 7.636499e-05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361852.080300003290176, 258594.845499999821186 ], [ 361852.094499997794628, 258594.851799998432398 ], [ 361852.094400003552437, 258594.840999998152256 ], [ 361852.080300003290176, 258594.845499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001032300", "MAP": "A9-709-T007", "PARCEL_NAM": "C-53", "ACRE": ".29", "LONGITUDE": -64.90782681, "LATITUDE": 18.36173457, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.58372081900001, "SHAPE_Area": 624.71570912200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361244.521300002932549, 259156.337099999189377 ], [ 361242.07209999859333, 259149.052999999374151 ], [ 361240.220799997448921, 259143.953699998557568 ], [ 361203.067500002682209, 259151.037900000810623 ], [ 361212.577799998223782, 259170.536299999803305 ], [ 361244.521300002932549, 259156.337099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036000", "MAP": "A9-302-T83", "PARCEL_NAM": "C-57", "ACRE": ".81", "LONGITUDE": -64.90755815, "LATITUDE": 18.36337737, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.828626939, "SHAPE_Area": 4869.9538033999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361220.380300000309944, 259315.721599999815226 ], [ 361217.390299998223782, 259335.754399999976158 ], [ 361188.973899997770786, 259331.732700001448393 ], [ 361193.834100000560284, 259337.747099999338388 ], [ 361201.67400000244379, 259347.449000000953674 ], [ 361229.931500002741814, 259361.7364999987185 ], [ 361253.585299998521805, 259370.150299999862909 ], [ 361261.522799998521805, 259373.801500000059605 ], [ 361267.079099997878075, 259379.675299998372793 ], [ 361272.356200002133846, 259383.4864999987185 ], [ 361275.651600003242493, 259385.866500001400709 ], [ 361278.357299998402596, 259387.160500001162291 ], [ 361284.128700003027916, 259365.718100000172853 ], [ 361286.394599996507168, 259353.157999999821186 ], [ 361288.226700000464916, 259343.002099998295307 ], [ 361286.770900003612041, 259315.002999998629093 ], [ 361266.28320000320673, 259302.909299999475479 ], [ 361230.825199998915195, 259300.297100000083447 ], [ 361223.211099997162819, 259299.771000001579523 ], [ 361220.380300000309944, 259315.721599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-709-T007", "PARCEL_NAM": "\"C\"", "ACRE": "15.287", "LONGITUDE": -64.90668848, "LATITUDE": 18.36204133, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1738.4851989900001, "SHAPE_Area": 62893.508654999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361130.955799996852875, 259350.388900000602007 ], [ 361139.337999999523163, 259338.135600000619888 ], [ 361169.854900002479553, 259361.405600000172853 ], [ 361188.973899997770786, 259331.732700001448393 ], [ 361217.390299998223782, 259335.754399999976158 ], [ 361220.380300000309944, 259315.721599999815226 ], [ 361223.211099997162819, 259299.771000001579523 ], [ 361266.28320000320673, 259302.909299999475479 ], [ 361278.350199997425079, 259260.649599999189377 ], [ 361303.750299997627735, 259237.630800001323223 ], [ 361314.953199997544289, 259230.928199999034405 ], [ 361334.59179999679327, 259219.17850000038743 ], [ 361330.731700003147125, 259215.410799998790026 ], [ 361382.969999998807907, 259181.942499998956919 ], [ 361475.237800002098083, 259150.448300000280142 ], [ 361491.869800001382828, 259143.832699999213219 ], [ 361536.421099998056889, 259130.481800001114607 ], [ 361596.562100000679493, 259131.602800000458956 ], [ 361651.419600002467632, 259143.330200001597404 ], [ 361648.819799996912479, 259170.94029999896884 ], [ 361660.869599997997284, 259176.316300000995398 ], [ 361669.1858000010252, 259180.582400001585484 ], [ 361671.630999997258186, 259181.83669999986887 ], [ 361675.758500002324581, 259182.789200000464916 ], [ 361679.355400003492832, 259183.433699999004602 ], [ 361692.304999999701977, 259177.84010000154376 ], [ 361697.166199997067451, 259175.13569999858737 ], [ 361664.903999999165535, 259081.357200000435114 ], [ 361660.953400000929832, 259071.825699999928474 ], [ 361648.325699999928474, 259039.636100001633167 ], [ 361594.297399997711182, 259039.827199999243021 ], [ 361524.968900002539158, 259037.570999998599291 ], [ 361523.867700003087521, 259072.18129999935627 ], [ 361523.817299999296665, 259078.091499999165535 ], [ 361502.012699998915195, 259081.923900000751019 ], [ 361493.109099999070168, 259085.861800000071526 ], [ 361474.515399999916553, 259091.409099999815226 ], [ 361447.016199998557568, 259101.105399999767542 ], [ 361419.538699999451637, 259108.268800001591444 ], [ 361396.11429999768734, 259112.932300001382828 ], [ 361313.742700003087521, 259127.245700001716614 ], [ 361287.093000002205372, 259131.882800001651049 ], [ 361237.877400003373623, 259135.068599998950958 ], [ 361240.220799997448921, 259143.953699998557568 ], [ 361242.07209999859333, 259149.052999999374151 ], [ 361244.521300002932549, 259156.337099999189377 ], [ 361212.577799998223782, 259170.536299999803305 ], [ 361190.722900003194809, 259180.278799999505281 ], [ 361166.447200000286102, 259190.212600000202656 ], [ 361132.258400000631809, 259227.929699998348951 ], [ 361105.39469999819994, 259257.685100000351667 ], [ 361086.671499997377396, 259278.430100001394749 ], [ 361069.577100001275539, 259297.288600001484156 ], [ 361058.861299999058247, 259324.643100000917912 ], [ 361064.32209999859333, 259346.219300001859665 ], [ 361076.3125, 259358.560899998992682 ], [ 361099.533699996769428, 259377.749299999326468 ], [ 361109.926100000739098, 259381.130800001323223 ], [ 361112.029600001871586, 259381.81529999896884 ], [ 361130.955799996852875, 259350.388900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "B-1-1", "ACRE": null, "LONGITUDE": -64.9067851, "LATITUDE": 18.35644618, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.74190244900001, "SHAPE_Area": 2334.8342604300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361292.023699998855591, 258553.104600001126528 ], [ 361301.056800000369549, 258558.614700000733137 ], [ 361308.497599996626377, 258595.142200000584126 ], [ 361422.223700001835823, 258565.631000000983477 ], [ 361348.38459999859333, 258563.065099999308586 ], [ 361335.5033999979496, 258560.637600000947714 ], [ 361304.105800002813339, 258554.681099999696016 ], [ 361295.274099998176098, 258550.175900001078844 ], [ 361280.045900002121925, 258539.285500001162291 ], [ 361275.972999997437, 258544.107299998402596 ], [ 361283.98929999768734, 258549.661299999803305 ], [ 361292.023699998855591, 258553.104600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-724-T008", "PARCEL_NAM": "A3A-1", "ACRE": "7.9", "LONGITUDE": -64.91113352000001, "LATITUDE": 18.36040031, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 691.43269274099998, "SHAPE_Area": 24954.680901700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360816.106200002133846, 258950.4983000010252 ], [ 360758.77759999781847, 259029.637600000947714 ], [ 360770.141699999570847, 259045.325300000607967 ], [ 360782.900700002908707, 259062.106100000441074 ], [ 360810.967000000178814, 259080.489900000393391 ], [ 360842.366400003433228, 259086.235300000756979 ], [ 360877.959200002253056, 259073.016600001603365 ], [ 360909.506099998950958, 259061.453600000590086 ], [ 360946.715199999511242, 259047.825899999588728 ], [ 360960.498000003397465, 259039.072799999266863 ], [ 360963.741200000047684, 259036.988400001078844 ], [ 361001.844700001180172, 259013.024500001221895 ], [ 361012.046599999070168, 258994.181600000709295 ], [ 360974.40259999781847, 258973.75279999896884 ], [ 360968.995600000023842, 258970.546399999409914 ], [ 360968.322999998927116, 258972.43129999935627 ], [ 360958.54839999973774, 258983.961399998515844 ], [ 360946.403399996459484, 258989.772599998861551 ], [ 360941.007299996912479, 258960.597600001841784 ], [ 360926.646499998867512, 258942.537099998444319 ], [ 360922.647299997508526, 258938.704700000584126 ], [ 360917.188400000333786, 258916.917300000786781 ], [ 360910.755900003015995, 258914.753800000995398 ], [ 360905.113499999046326, 258914.496500000357628 ], [ 360892.1908999979496, 258916.923799999058247 ], [ 360885.754799999296665, 258915.182399999350309 ], [ 360884.190700002014637, 258909.470100000500679 ], [ 360864.779899999499321, 258916.277300000190735 ], [ 360869.51519999653101, 258928.348400000482798 ], [ 360816.106200002133846, 258950.4983000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-723-T008", "PARCEL_NAM": "CONS D (WEST)", "ACRE": "2.54", "LONGITUDE": -64.90321128, "LATITUDE": 18.36126925, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 409.58431827700002, "SHAPE_Area": 8799.8355530400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361714.9662000015378, 259168.104200001806021 ], [ 361731.105099998414516, 259166.758600000292063 ], [ 361743.187200002372265, 259168.335200000554323 ], [ 361746.421400003135204, 259167.306200001388788 ], [ 361748.858300000429153, 259165.215199999511242 ], [ 361758.029899999499321, 259129.826499998569489 ], [ 361759.865500003099442, 259103.666000001132488 ], [ 361760.761699996888638, 259093.118599999696016 ], [ 361763.245399996638298, 259085.539599999785423 ], [ 361765.836099997162819, 259080.885899998247623 ], [ 361754.438900001347065, 259078.079199999570847 ], [ 361726.302400000393391, 259067.927600000053644 ], [ 361714.243699997663498, 259063.60700000077486 ], [ 361648.325699999928474, 259039.636100001633167 ], [ 361660.953400000929832, 259071.825699999928474 ], [ 361664.903999999165535, 259081.357200000435114 ], [ 361695.606499999761581, 259170.602099999785423 ], [ 361697.166199997067451, 259175.13569999858737 ], [ 361705.267099998891354, 259170.769000001251698 ], [ 361706.550599999725819, 259170.416400000452995 ], [ 361714.9662000015378, 259168.104200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91897494, "LATITUDE": 18.34963708, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.07194499056, "SHAPE_Area": 0.01464575057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360056.520700000226498, 257806.9375 ], [ 360056.694899998605251, 257807.4070999994874 ], [ 360056.572800002992153, 257806.909800000488758 ], [ 360056.520700000226498, 257806.9375 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9204093, "LATITUDE": 18.34947937, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.21100992953, "SHAPE_Area": 0.00136692002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359905.102399997413158, 257788.403299998492002 ], [ 359905.193300001323223, 257788.366399999707937 ], [ 359905.133500002324581, 257788.360599998384714 ], [ 359905.102399997413158, 257788.403299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91900115, "LATITUDE": 18.34968058, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.7338814967, "SHAPE_Area": 49.900999978900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360049.352300003170967, 257810.758600000292063 ], [ 360050.969300001859665, 257816.687699999660254 ], [ 360058.131399996578693, 257813.255300000309944 ], [ 360056.694899998605251, 257807.4070999994874 ], [ 360056.520700000226498, 257806.9375 ], [ 360056.239200003445148, 257807.087600000202656 ], [ 360049.352300003170967, 257810.758600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92023673, "LATITUDE": 18.34998531, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 709.27644067999995, "SHAPE_Area": 1776.0935055100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360050.969300001859665, 257816.687699999660254 ], [ 360049.352300003170967, 257810.758600000292063 ], [ 360046.042099997401237, 257812.52309999987483 ], [ 360028.240299999713898, 257819.765700001269579 ], [ 360000.768200002610683, 257826.295800000429153 ], [ 359950.62219999730587, 257844.039500001817942 ], [ 359860.896700002253056, 257869.691799998283386 ], [ 359860.106600001454353, 257867.785500001162291 ], [ 359876.403599999845028, 257847.864999998360872 ], [ 359877.229699999094009, 257845.549699999392033 ], [ 359883.752199999988079, 257837.159400001168251 ], [ 359886.214299999177456, 257832.113299999386072 ], [ 359889.473700001835823, 257828.129200000315905 ], [ 359898.490599997341633, 257810.893300000578165 ], [ 359900.932899996638298, 257808.169100001454353 ], [ 359904.231899999082088, 257799.541200000792742 ], [ 359908.324600003659725, 257792.39750000089407 ], [ 359909.967699997127056, 257788.822399999946356 ], [ 359909.451800003647804, 257788.77309999987483 ], [ 359909.550599999725819, 257788.648699998855591 ], [ 359911.155799999833107, 257784.146499998867512 ], [ 359905.193300001323223, 257788.366399999707937 ], [ 359905.102399997413158, 257788.403299998492002 ], [ 359902.6858000010252, 257791.718100000172853 ], [ 359892.82660000026226, 257813.168999999761581 ], [ 359888.732100002467632, 257820.523699998855591 ], [ 359884.646600000560284, 257826.823100000619888 ], [ 359874.026100002229214, 257842.99040000140667 ], [ 359870.757700003683567, 257848.029899999499321 ], [ 359869.130599997937679, 257849.705299999564886 ], [ 359852.829999998211861, 257870.048000000417233 ], [ 359847.1587999984622, 257873.167899999767542 ], [ 359809.166799999773502, 257884.045000001788139 ], [ 359816.398500002920628, 257887.059500001370907 ], [ 359860.045400001108646, 257874.962200000882149 ], [ 359891.568899996578693, 257866.143199998885393 ], [ 359928.749200001358986, 257855.892799999564886 ], [ 360002.33219999819994, 257832.008200000971556 ], [ 360018.487300001084805, 257828.762899998575449 ], [ 360039.508900001645088, 257822.179900001734495 ], [ 360050.969300001859665, 257816.687699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92679455, "LATITUDE": 18.34744838, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.4249493057, "SHAPE_Area": 7.6491234310399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359236.542700000107288, 257559.683499999344349 ], [ 359236.542700000107288, 257558.527100000530481 ], [ 359223.313500002026558, 257555.854699999094009 ], [ 359236.542700000107288, 257559.683499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94152129, "LATITUDE": 18.33874413, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 360.7886316, "SHAPE_Area": 822.47269861699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357743.762699998915195, 256555.449599999934435 ], [ 357738.467200003564358, 256552.406599998474121 ], [ 357737.569099999964237, 256563.16499999910593 ], [ 357729.487999998033047, 256565.209800001233816 ], [ 357727.063699997961521, 256565.82319999858737 ], [ 357731.021499998867512, 256574.510499998927116 ], [ 357716.488099999725819, 256576.713599998503923 ], [ 357702.760999999940395, 256578.923200000077486 ], [ 357685.805100001394749, 256581.5287000015378 ], [ 357667.234700001776218, 256584.331999998539686 ], [ 357647.048199996352196, 256587.544300001114607 ], [ 357630.092200003564358, 256590.149700000882149 ], [ 357618.787699997425079, 256591.956999998539686 ], [ 357609.905599996447563, 256593.361999999731779 ], [ 357595.37219999730587, 256595.565099999308586 ], [ 357593.763199999928474, 256595.129700001329184 ], [ 357589.765799999237061, 256591.086199998855591 ], [ 357590.523599997162819, 256596.791999999433756 ], [ 357592.928099997341633, 256598.500399999320507 ], [ 357596.963299997150898, 256598.111200001090765 ], [ 357614.716499999165535, 256596.567800000309944 ], [ 357688.188100002706051, 256585.770100001245737 ], [ 357734.208999998867512, 256578.969500001519918 ], [ 357738.255000002682209, 256577.313900001347065 ], [ 357741.51799999922514, 256572.907600000500679 ], [ 357742.428599998354912, 256560.671700000762939 ], [ 357743.762699998915195, 256555.449599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "FREEWAY", "ACRE": null, "LONGITUDE": -64.93489346, "LATITUDE": 18.34254847, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.780049606399999, "SHAPE_Area": 77.275081447900007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358382.72240000218153, 257026.284600000828505 ], [ 358382.098999999463558, 257006.28999999910593 ], [ 358379.315099999308586, 256990.863400001078844 ], [ 358377.005500003695488, 256991.00450000166893 ], [ 358379.594800002872944, 257003.194600000977516 ], [ 358379.703100003302097, 257003.776099998503923 ], [ 358379.866700001060963, 257008.022599998861551 ], [ 358380.021899998188019, 257012.052200000733137 ], [ 358380.572200000286102, 257026.340900000184774 ], [ 358381.944099999964237, 257026.300799999386072 ], [ 358382.72240000218153, 257026.284600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "FREEWAY", "ACRE": null, "LONGITUDE": -64.93506098, "LATITUDE": 18.34254747, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.636308233799994, "SHAPE_Area": 58.9731723027 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358364.127300001680851, 257013.921000000089407 ], [ 358364.012999996542931, 257013.070599999278784 ], [ 358362.204599998891354, 256991.912099998444319 ], [ 358360.078000001609325, 256992.232799999415874 ], [ 358362.098600000143051, 257009.078999999910593 ], [ 358362.695100001990795, 257014.111000001430511 ], [ 358364.199799999594688, 257026.788899999111891 ], [ 358365.851000003516674, 257026.744800001382828 ], [ 358364.127300001680851, 257013.921000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "F3-24-T70", "PARCEL_NAM": "A7", "ACRE": null, "LONGITUDE": -64.9264283, "LATITUDE": 18.34752797, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.814268560499997, "SHAPE_Area": 86.966889120800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359276.009999997913837, 257565.662399999797344 ], [ 359261.152000002563, 257563.024999998509884 ], [ 359260.925499998033047, 257566.740499999374151 ], [ 359275.703500002622604, 257571.017700001597404 ], [ 359278.99379999935627, 257571.969999998807907 ], [ 359279.431199997663498, 257566.26969999819994 ], [ 359276.009999997913837, 257565.662399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "LOT A", "ACRE": null, "LONGITUDE": -64.92661522, "LATITUDE": 18.34748787, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.280450994500001, "SHAPE_Area": 59.075004981200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359236.542700000107288, 257558.527100000530481 ], [ 359236.542700000107288, 257559.683499999344349 ], [ 359240.226999998092651, 257560.749899998307228 ], [ 359241.096600003540516, 257561.001600001007318 ], [ 359255.596400000154972, 257565.198100000619888 ], [ 359260.925499998033047, 257566.740499999374151 ], [ 359261.152000002563, 257563.024999998509884 ], [ 359255.73030000180006, 257562.062600001692772 ], [ 359241.828199997544289, 257559.594799999147654 ], [ 359240.255400002002716, 257559.277100000530481 ], [ 359236.542700000107288, 257558.527100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "FREE PASSAGE", "ACRE": null, "LONGITUDE": -64.937815, "LATITUDE": 18.34134688, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.541421396499999, "SHAPE_Area": 66.921851644900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358073.301899999380112, 256855.820099998265505 ], [ 358072.444799996912479, 256866.435600001364946 ], [ 358070.530900001525879, 256890.138999998569489 ], [ 358072.464100003242493, 256890.339000001549721 ], [ 358074.404799997806549, 256866.618599999696016 ], [ 358075.175700001418591, 256856.1891999989748 ], [ 358073.301899999380112, 256855.820099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-8011-T007", "PARCEL_NAM": "LOT-A", "ACRE": ".37", "LONGITUDE": -64.92405325, "LATITUDE": 18.34286085, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.603443838, "SHAPE_Area": 1453.6860566299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359544.414800003170967, 257044.330600000917912 ], [ 359530.838200002908707, 257045.567200001329184 ], [ 359527.229999996721745, 257013.838500000536442 ], [ 359523.255500003695488, 257014.894499998539686 ], [ 359519.075900003314018, 257015.971500001847744 ], [ 359514.888400003314018, 257017.0168999992311 ], [ 359510.693099997937679, 257018.030799999833107 ], [ 359512.352099999785423, 257030.678899999707937 ], [ 359512.904700003564358, 257034.892400000244379 ], [ 359514.904200002551079, 257050.136399999260902 ], [ 359516.473600000143051, 257062.101799998432398 ], [ 359517.758100003004074, 257071.894900001585484 ], [ 359518.27419999986887, 257075.692800000309944 ], [ 359518.825300000607967, 257079.485800001770258 ], [ 359519.411399997770786, 257083.273600000888109 ], [ 359520.032600000500679, 257087.055700000375509 ], [ 359520.278300002217293, 257088.50959999859333 ], [ 359538.506499998271465, 257086.017400000244379 ], [ 359536.460900001227856, 257058.348900001496077 ], [ 359546.212300002574921, 257057.073800001293421 ], [ 359544.414800003170967, 257044.330600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92326357, "LATITUDE": 18.34327329, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.3342026471, "SHAPE_Area": 67.90121381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359599.246500000357628, 257096.570199999958277 ], [ 359599.427500002086163, 257100.06810000166297 ], [ 359599.447599999606609, 257100.063799999654293 ], [ 359600.281099997460842, 257100.063799999654293 ], [ 359601.273199997842312, 257100.129900000989437 ], [ 359602.490299999713898, 257100.143100000917912 ], [ 359603.535400003194809, 257100.196100000292063 ], [ 359604.461499996483326, 257100.275400001555681 ], [ 359605.480099998414516, 257100.354800000786781 ], [ 359606.842699997127056, 257100.420899998396635 ], [ 359607.834899999201298, 257100.473900001496077 ], [ 359609.845799997448921, 257100.659099999815226 ], [ 359610.467500001192093, 257100.698800001293421 ], [ 359611.459700003266335, 257100.7516999989748 ], [ 359612.88849999755621, 257100.870700001716614 ], [ 359614.25110000371933, 257101.002999998629093 ], [ 359616.389799997210503, 257101.346999999135733 ], [ 359617.606899999082088, 257101.558699999004602 ], [ 359619.662799999117851, 257101.853399999439716 ], [ 359619.410800002515316, 257098.697599999606609 ], [ 359617.50110000371933, 257098.378400001674891 ], [ 359615.860600002110004, 257098.166700001806021 ], [ 359614.087899997830391, 257097.796300001442432 ], [ 359612.262299999594688, 257097.505199998617172 ], [ 359610.516000002622604, 257097.372900001704693 ], [ 359608.743299998342991, 257097.214200001209974 ], [ 359605.145000003278255, 257096.817299999296665 ], [ 359603.92790000140667, 257096.579199999570847 ], [ 359601.705399997532368, 257096.473400000482798 ], [ 359600.276600003242493, 257096.552700001746416 ], [ 359599.246500000357628, 257096.570199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91992201, "LATITUDE": 18.35547842, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.36277546100001, "SHAPE_Area": 899.001771308 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359948.085299998521805, 258425.792500000447035 ], [ 359941.124700002372265, 258416.886999998241663 ], [ 359935.308399997651577, 258411.122499998658895 ], [ 359929.70549999922514, 258406.221500001847744 ], [ 359927.322599999606609, 258401.980099998414516 ], [ 359926.618699997663498, 258389.94200000166893 ], [ 359920.776799999177456, 258413.114500001072884 ], [ 359921.59570000320673, 258411.6435999982059 ], [ 359925.632600001990795, 258411.043299999088049 ], [ 359939.228399999439716, 258424.242400001734495 ], [ 359948.801700003445148, 258436.353100001811981 ], [ 359956.742499999701977, 258450.772399999201298 ], [ 359959.076999999582767, 258460.712900001555681 ], [ 359959.786200001835823, 258472.117800001055002 ], [ 359958.123199999332428, 258478.014800000935793 ], [ 359954.075400002300739, 258479.881499998271465 ], [ 359950.853799998760223, 258479.43299999833107 ], [ 359945.241999998688698, 258475.587400000542402 ], [ 359940.400499999523163, 258475.969900000840425 ], [ 359939.561800003051758, 258479.762699998915195 ], [ 359941.961000002920628, 258482.104400001466274 ], [ 359943.5574000030756, 258484.017299998551607 ], [ 359947.569200001657009, 258486.37220000103116 ], [ 359965.268500000238419, 258491.161100000143051 ], [ 359971.704599998891354, 258492.902499999850988 ], [ 359974.186499997973442, 258485.534600000828505 ], [ 359967.762999996542931, 258482.315600000321865 ], [ 359965.416000001132488, 258473.852600000798702 ], [ 359965.46169999986887, 258468.485500000417233 ], [ 359965.523900002241135, 258461.187899999320507 ], [ 359964.762500002980232, 258455.90430000051856 ], [ 359961.614600002765656, 258446.801500000059605 ], [ 359957.640600003302097, 258440.013999998569489 ], [ 359955.264799997210503, 258434.928300000727177 ], [ 359954.00110000371933, 258433.32039999961853 ], [ 359948.085299998521805, 258425.792500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904011800", "MAP": "F9-587-T60", "PARCEL_NAM": "1-21", "ACRE": "1.04", "LONGITUDE": -64.91915467, "LATITUDE": 18.3550289, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.79050703199999, "SHAPE_Area": 4141.3289114600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360077.207999996840954, 258370.84180000051856 ], [ 360016.3783999979496, 258360.279199998825788 ], [ 360007.142099998891354, 258403.266699999570847 ], [ 360003.5878000035882, 258441.86769999936223 ], [ 360003.354400001466274, 258444.109299998730421 ], [ 360004.470799997448921, 258452.062199998646975 ], [ 360005.041199997067451, 258456.125300001353025 ], [ 360053.085500001907349, 258434.147700000554323 ], [ 360051.838899999856949, 258432.487300001084805 ], [ 360051.250100001692772, 258431.703099999576807 ], [ 360052.932899996638298, 258423.484299998730421 ], [ 360055.499300003051758, 258406.195599999278784 ], [ 360057.153200000524521, 258401.353999998420477 ], [ 360059.620700001716614, 258395.674699999392033 ], [ 360061.247699998319149, 258393.999200001358986 ], [ 360062.887299999594688, 258390.846200000494719 ], [ 360063.718800000846386, 258387.897700000554323 ], [ 360067.793600000441074, 258382.864799998700619 ], [ 360068.619599997997284, 258380.549600001424551 ], [ 360070.2449000030756, 258379.085200000554323 ], [ 360077.207999996840954, 258370.84180000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93028677, "LATITUDE": 18.35145189, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.7114912, "SHAPE_Area": 5819.3611930699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358906.178199999034405, 258005.145100001245737 ], [ 358911.060699999332428, 257957.668299999088049 ], [ 358908.25620000064373, 257954.834699999541044 ], [ 358904.389600001275539, 257955.144000001251698 ], [ 358852.111199997365475, 257971.416799999773502 ], [ 358805.983900003135204, 257985.77479999884963 ], [ 358805.960199996829033, 257988.558200001716614 ], [ 358806.4662000015378, 258023.814899999648333 ], [ 358831.409699998795986, 258030.140799999237061 ], [ 358851.509999997913837, 258037.060300000011921 ], [ 358858.763199999928474, 258037.541799999773502 ], [ 358866.842500001192093, 258035.708099998533726 ], [ 358888.058600001037121, 258022.925400000065565 ], [ 358885.742499999701977, 258015.48030000180006 ], [ 358906.178199999034405, 258005.145100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93245454, "LATITUDE": 18.349743, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.12730211373, "SHAPE_Area": 0.00067322507 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.807499997317791, 257807.069699998944998 ], [ 358631.847499996423721, 257807.096599999815226 ], [ 358631.858000002801418, 257807.070000000298023 ], [ 358631.807499997317791, 257807.069699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93245476, "LATITUDE": 18.34974305, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.13270912173, "SHAPE_Area": 0.00054624 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.807499997317791, 257807.069699998944998 ], [ 358631.78830000013113, 257807.084100000560284 ], [ 358631.847499996423721, 257807.096599999815226 ], [ 358631.807499997317791, 257807.069699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93245513, "LATITUDE": 18.34974292, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.17965387524000001, "SHAPE_Area": 0.00010621998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.807499997317791, 257807.069699998944998 ], [ 358631.800999999046326, 257807.067299999296665 ], [ 358631.7179000005126, 257807.069299999624491 ], [ 358631.807499997317791, 257807.069699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93245517, "LATITUDE": 18.34974297, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.18553975113000001, "SHAPE_Area": 0.00064896004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.78830000013113, 257807.084100000560284 ], [ 358631.807499997317791, 257807.069699998944998 ], [ 358631.7179000005126, 257807.069299999624491 ], [ 358631.78830000013113, 257807.084100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-2422-T83", "PARCEL_NAM": "300", "ACRE": "19,945 sq ft", "LONGITUDE": -64.94169132, "LATITUDE": 18.33757948, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.254050159, "SHAPE_Area": 935.482906587 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357677.689300000667572, 256444.318599998950958 ], [ 357673.114200003445148, 256434.507399998605251 ], [ 357651.645000003278255, 256423.503400001674891 ], [ 357649.334899999201298, 256426.559300001710653 ], [ 357653.960699997842312, 256444.529800001531839 ], [ 357666.549999997019768, 256475.402100000530481 ], [ 357668.714299999177456, 256481.739000000059605 ], [ 357677.723300002515316, 256489.003600001335144 ], [ 357685.748599998652935, 256493.502199999988079 ], [ 357697.814499996602535, 256496.978500001132488 ], [ 357692.720499999821186, 256492.234499998390675 ], [ 357689.668499998748302, 256492.209699999541044 ], [ 357682.670900002121925, 256489.422200001776218 ], [ 357677.809900000691414, 256486.652100000530481 ], [ 357676.025600001215935, 256480.8733000010252 ], [ 357673.077299997210503, 256468.107099998742342 ], [ 357675.014799997210503, 256455.077199999243021 ], [ 357677.689300000667572, 256444.318599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202010400", "MAP": null, "PARCEL_NAM": "107-10 REM", "ACRE": null, "LONGITUDE": -64.95515881, "LATITUDE": 18.34729205, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.21289368499998, "SHAPE_Area": 3957.49638422 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356307.628799997270107, 257466.531899999827147 ], [ 356301.267800003290176, 257472.119899999350309 ], [ 356287.832099996507168, 257480.867600001394749 ], [ 356279.50110000371933, 257484.631000000983477 ], [ 356268.571099996566772, 257489.568300001323223 ], [ 356250.514899998903275, 257497.597500000149012 ], [ 356240.558200001716614, 257499.901500001549721 ], [ 356227.351599998772144, 257501.498100001364946 ], [ 356217.94879999756813, 257498.867499999701977 ], [ 356203.891099996864796, 257499.77589999884367 ], [ 356182.723600000143051, 257503.045299999415874 ], [ 356204.245899997651577, 257558.587200000882149 ], [ 356223.676500000059605, 257549.458099998533726 ], [ 356232.589100003242493, 257544.464800000190735 ], [ 356239.918700002133846, 257538.806400001049042 ], [ 356277.233000002801418, 257509.999800000339746 ], [ 356289.435599997639656, 257497.434099998325109 ], [ 356307.628799997270107, 257466.531899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95686637, "LATITUDE": 18.34788745, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.460060365, "SHAPE_Area": 690.193778748 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356111.744699999690056, 257531.443500000983477 ], [ 356111.791500002145767, 257525.955400001257658 ], [ 356110.205799996852875, 257522.776000000536442 ], [ 356098.791599996387959, 257537.459199998527765 ], [ 356074.377400003373623, 257563.646000001579523 ], [ 356025.612099997699261, 257608.631999999284744 ], [ 356001.35980000346899, 257615.821800000965595 ], [ 355978.75789999961853, 257618.592099998146296 ], [ 355980.341700002551079, 257621.982599999755621 ], [ 356008.594999998807907, 257618.414099998772144 ], [ 356021.5337999984622, 257614.087099999189377 ], [ 356038.559799998998642, 257603.249600000679493 ], [ 356057.254299998283386, 257585.881799999624491 ], [ 356097.927699998021126, 257544.207100000232458 ], [ 356111.744699999690056, 257531.443500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92355639, "LATITUDE": 18.34329956, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.842548232, "SHAPE_Area": 381.15868606499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359599.427500002086163, 257100.06810000166297 ], [ 359599.246500000357628, 257096.570199999958277 ], [ 359598.715599998831749, 257096.579199999570847 ], [ 359597.207500003278255, 257096.605599999427795 ], [ 359595.672899998724461, 257096.764400001615286 ], [ 359594.191200003027916, 257097.002500001341105 ], [ 359592.101000003516674, 257097.293600000441074 ], [ 359589.693300001323223, 257097.611099999397993 ], [ 359584.771999999880791, 257098.060899998992682 ], [ 359582.840599998831749, 257097.954999998211861 ], [ 359580.935599997639656, 257097.902100000530481 ], [ 359580.035999998450279, 257097.822700001299381 ], [ 359577.179799996316433, 257092.545899998396635 ], [ 359575.102700002491474, 257082.853999998420477 ], [ 359569.112700000405312, 257084.255300000309944 ], [ 359572.917300000786781, 257123.958099998533726 ], [ 359576.610200002789497, 257123.6554000005126 ], [ 359576.796800002455711, 257122.147199999541044 ], [ 359577.008400000631809, 257120.178700000047684 ], [ 359577.241300001740456, 257117.554000001400709 ], [ 359577.304799996316433, 257115.924199998378754 ], [ 359578.04559999704361, 257111.0135000012815 ], [ 359578.722900003194809, 257109.2989999987185 ], [ 359579.421400003135204, 257107.626800000667572 ], [ 359580.204599998891354, 257106.462600000202656 ], [ 359581.36879999935627, 257105.213799998164177 ], [ 359582.278899997472763, 257104.557599999010563 ], [ 359583.252599999308586, 257104.092000000178814 ], [ 359584.882500000298023, 257103.541600000113249 ], [ 359588.184500001370907, 257102.843100000172853 ], [ 359589.835500001907349, 257102.440999999642372 ], [ 359591.415799997746944, 257102.006400000303984 ], [ 359591.528800003230572, 257101.975299999117851 ], [ 359593.306800000369549, 257101.446100000292063 ], [ 359595.783299997448921, 257100.853500001132488 ], [ 359599.427500002086163, 257100.06810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": "D3-327-T75", "PARCEL_NAM": "355", "ACRE": null, "LONGITUDE": -64.92347058, "LATITUDE": 18.34351219, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.480896994899993, "SHAPE_Area": 134.14722154099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359600.721100002527237, 257126.724800001829863 ], [ 359600.381700001657009, 257121.706999998539686 ], [ 359596.496899999678135, 257122.025400001555681 ], [ 359596.134400002658367, 257122.05519999936223 ], [ 359572.917300000786781, 257123.958099998533726 ], [ 359573.707999996840954, 257128.702399998903275 ], [ 359596.569600000977516, 257127.0287000015378 ], [ 359600.721100002527237, 257126.724800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93723565000001, "LATITUDE": 18.35895284, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.28016196600001, "SHAPE_Area": 651.06721525700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358089.410300001502037, 258833.831000000238419 ], [ 358092.726999998092651, 258843.4070999994874 ], [ 358124.711800001561642, 258824.823600001633167 ], [ 358147.417999997735023, 258809.810699999332428 ], [ 358142.6503000035882, 258801.539000000804663 ], [ 358136.975500002503395, 258805.0810999982059 ], [ 358131.311499997973442, 258807.356800001114607 ], [ 358122.386399999260902, 258813.8277000002563 ], [ 358089.410300001502037, 258833.831000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93750632, "LATITUDE": 18.35839631, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.375857823, "SHAPE_Area": 439.71011286599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358064.653099998831749, 258763.0793999992311 ], [ 358067.722099997103214, 258771.212400000542402 ], [ 358076.806000001728535, 258768.913899999111891 ], [ 358096.200599998235703, 258764.006400000303984 ], [ 358115.618699997663498, 258756.354800000786781 ], [ 358110.845499999821186, 258748.716400001198053 ], [ 358091.431100003421307, 258755.945799998939037 ], [ 358064.653099998831749, 258763.0793999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D3-273-T66", "PARCEL_NAM": "13", "ACRE": "1", "LONGITUDE": -64.94362159000001, "LATITUDE": 18.35865973, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.83756304899998, "SHAPE_Area": 4232.2172722900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357449.665700003504753, 258743.727099999785423 ], [ 357420.772399999201298, 258760.05689999833703 ], [ 357403.162000000476837, 258770.009799998253584 ], [ 357395.406300000846386, 258774.393199998885393 ], [ 357396.590800002217293, 258775.74040000140667 ], [ 357415.039099998772144, 258796.723499998450279 ], [ 357427.338899999856949, 258810.713199999183416 ], [ 357439.786499999463558, 258824.870999999344349 ], [ 357456.113600000739098, 258843.441300000995398 ], [ 357452.664399996399879, 258836.836500000208616 ], [ 357450.71679999679327, 258830.461199998855591 ], [ 357453.167700000107288, 258824.121700000017881 ], [ 357458.427199997007847, 258816.61259999871254 ], [ 357465.885899998247623, 258811.628299999982119 ], [ 357473.705700002610683, 258806.402800001204014 ], [ 357482.282899998128414, 258802.410700000822544 ], [ 357459.669699996709824, 258736.742899999022484 ], [ 357449.665700003504753, 258743.727099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94217096, "LATITUDE": 18.35793769, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.25968629447000002, "SHAPE_Area": 0.00214954509 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357597.468599997460842, 258705.729899998754263 ], [ 357597.555299997329712, 258705.674100000411272 ], [ 357597.535899996757507, 258705.636999998241663 ], [ 357597.468599997460842, 258705.729899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803061600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.946533, "LATITUDE": 18.35631011, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.463889841599993, "SHAPE_Area": 208.306759594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357155.507700003683567, 258512.541600000113249 ], [ 357148.052000001072884, 258516.302099999040365 ], [ 357140.609899997711182, 258518.606600001454353 ], [ 357129.353500001132488, 258521.826099999248981 ], [ 357120.126999996602535, 258523.181499999016523 ], [ 357120.88120000064373, 258529.309399999678135 ], [ 357129.952600002288818, 258528.074700001627207 ], [ 357141.2179000005126, 258523.91330000013113 ], [ 357152.220100000500679, 258519.218199998140335 ], [ 357158.389700002968311, 258516.875999998301268 ], [ 357157.298299998044968, 258513.9864999987185 ], [ 357155.507700003683567, 258512.541600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013300", "MAP": "D9-8776-T013", "PARCEL_NAM": "2G REM", "ACRE": ".318", "LONGITUDE": -64.938025, "LATITUDE": 18.36200809, "OBJECTID_1": 4052, "PARCEL_NO_": "102802013300", "Tax_Legal_": "2G ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BRYAN, RONNIE", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032621, "Country": "United States", "Land_Value": 245300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.42851050499999, "SHAPE_Area": 1606.0582952699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358045.810999996960163, 259185.016800001263618 ], [ 358047.001800000667572, 259179.966499999165535 ], [ 358049.151100002229214, 259168.316899999976158 ], [ 358050.687299996614456, 259159.870799999684095 ], [ 358050.70160000026226, 259158.120799999684095 ], [ 358051.350400000810623, 259150.542500000447035 ], [ 358051.359899997711182, 259149.375900000333786 ], [ 358045.555600002408028, 259141.453099999576807 ], [ 358038.883000001311302, 259132.064899999648333 ], [ 358035.580799996852875, 259128.708200000226498 ], [ 358034.556400001049042, 259130.837000001221895 ], [ 358029.475599996745586, 259138.280000001192093 ], [ 358023.953599996864796, 259142.133099999278784 ], [ 358017.339900001883507, 259145.197599999606609 ], [ 358008.684500001370907, 259148.557300001382828 ], [ 358002.153800003230572, 259151.659499999135733 ], [ 358024.141400001943111, 259176.948899999260902 ], [ 358029.729900002479553, 259183.538499999791384 ], [ 358033.295100003480911, 259190.958399999886751 ], [ 358045.233900003135204, 259184.9560999982059 ], [ 358045.810999996960163, 259185.016800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802015800", "MAP": "D9-6463-T98", "PARCEL_NAM": "2J-3", "ACRE": ".5891", "LONGITUDE": -64.9374361, "LATITUDE": 18.36239141, "OBJECTID_1": 4076, "PARCEL_NO_": "102802015800", "Tax_Legal_": "LERKENLUND 2J-3 GT. NORTHSIDE", "Name": "DIANE T. BRYAN TRUST", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.018235178, "SHAPE_Area": 3241.31335687 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358062.353299997746944, 259186.93019999936223 ], [ 358093.744599997997284, 259231.580299999564886 ], [ 358110.995800003409386, 259255.615200001746416 ], [ 358132.561999998986721, 259228.498700000345707 ], [ 358120.614799998700619, 259211.0912000015378 ], [ 358083.165799997746944, 259158.222500000149012 ], [ 358079.179300002753735, 259152.912500001490116 ], [ 358071.071199998259544, 259158.123500000685453 ], [ 358060.531599998474121, 259164.792199999094009 ], [ 358058.024499997496605, 259175.115299999713898 ], [ 358056.566500000655651, 259178.699999999254942 ], [ 358062.353299997746944, 259186.93019999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013300", "MAP": "D9-8776-T013", "PARCEL_NAM": "2G-2", "ACRE": ".503", "LONGITUDE": -64.9384525, "LATITUDE": 18.36052854, "OBJECTID_1": 4052, "PARCEL_NO_": "102802013300", "Tax_Legal_": "2G ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BRYAN, RONNIE", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032621, "Country": "United States", "Land_Value": 245300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.00229223700001, "SHAPE_Area": 2084.3802070199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357976.554999999701977, 259041.010999999940395 ], [ 358015.358400002121925, 258984.544900000095367 ], [ 357996.969899997115135, 258958.877900000661612 ], [ 357992.30799999833107, 258952.043699998408556 ], [ 357966.142800003290176, 259004.24549999833107 ], [ 357964.625, 259007.1239 ], [ 357970.007500000298023, 259023.218100000172853 ], [ 357974.917099997401237, 259038.264299999922514 ], [ 357976.554999999701977, 259041.010999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011600", "MAP": "D9-9374-T019", "PARCEL_NAM": "2D-3A", "ACRE": "0.90", "LONGITUDE": -64.93967106, "LATITUDE": 18.36059011, "OBJECTID_1": 4036, "PARCEL_NO_": "102802011600", "Tax_Legal_": "2D-3A & 2D-3R (ROW)LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BRYAN, DENNY ANTHONY", "Address": "PO Box 306407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.300675635, "SHAPE_Area": 2670.98941023 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357863.690999999642372, 258985.651500001549721 ], [ 357837.438699997961521, 258943.640099998563528 ], [ 357810.753100000321865, 258952.498700000345707 ], [ 357832.305699996650219, 258970.619899999350309 ], [ 357841.177199997007847, 258978.078899998217821 ], [ 357845.116999998688698, 258988.876899998635054 ], [ 357847.18299999833107, 258993.861600000411272 ], [ 357871.943599998950958, 259058.124099999666214 ], [ 357882.45269999653101, 259055.043699998408556 ], [ 357887.328299999237061, 259050.650600001215935 ], [ 357894.721799999475479, 259034.668000001460314 ], [ 357863.690999999642372, 258985.651500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802012300", "MAP": "D9-8180-T008", "PARCEL_NAM": "2E-3-A", "ACRE": ".502", "LONGITUDE": -64.93946252000001, "LATITUDE": 18.36045205, "OBJECTID_1": 4041, "PARCEL_NO_": "102802012300", "Tax_Legal_": "2E-3-C ROW LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BERRY, JOSEPH ADELBERT,URISE BERRY,JOHN BERRY", "Address": "2E-3 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.68071058800001, "SHAPE_Area": 2143.55480764 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357907.17509999871254, 259014.959600001573563 ], [ 357896.1266999989748, 259010.179999999701977 ], [ 357894.433399997651577, 259004.253299999982119 ], [ 357899.090000003576279, 258995.9983000010252 ], [ 357899.725000001490116, 258975.466600000858307 ], [ 357874.940700002014637, 258947.114500001072884 ], [ 357851.984899997711182, 258966.918299999088049 ], [ 357863.690999999642372, 258985.651500001549721 ], [ 357894.721799999475479, 259034.668000001460314 ], [ 357902.192100003361702, 259024.507500000298023 ], [ 357907.17509999871254, 259014.959600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013200", "MAP": "G9-1439-T70", "PARCEL_NAM": "2F-A", "ACRE": null, "LONGITUDE": -64.9389988, "LATITUDE": 18.35992174, "OBJECTID_1": 4051, "PARCEL_NO_": "102802013200", "Tax_Legal_": "LERKENLUND 2FA GR NORTHSIDE", "Name": "BURK, ETTY", "Address": "255 WEST 84TH STREET", "City": "NEW YORK", "State": "New York", "Zip": 10024, "Country": "United States", "Land_Value": 221700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 430.08334986300002, "SHAPE_Area": 6664.8957224899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357928.922499999403954, 258967.828299999237061 ], [ 357934.260799996554852, 258957.110100001096725 ], [ 357938.472499996423721, 258960.303599998354912 ], [ 357943.164599999785423, 258969.556200001388788 ], [ 357949.695500001311302, 258980.666700001806021 ], [ 357958.067400000989437, 258993.371700000017881 ], [ 357964.625, 259007.1239 ], [ 357966.142800003290176, 259004.24549999833107 ], [ 357992.30799999833107, 258952.043699998408556 ], [ 357992.191399998962879, 258951.872699998319149 ], [ 357989.797600001096725, 258948.897799998521805 ], [ 357987.405599996447563, 258945.711899999529123 ], [ 357982.483199998736382, 258955.592999998480082 ], [ 357962.552000001072884, 258928.831999998539686 ], [ 357953.765299998223782, 258919.049800001084805 ], [ 357948.990299999713898, 258911.622499998658895 ], [ 357946.587600000202656, 258909.703000001609325 ], [ 357914.656999997794628, 258871.655900001525879 ], [ 357898.717699997127056, 258849.571699999272823 ], [ 357884.704700000584126, 258885.3429000005126 ], [ 357880.574299998581409, 258896.919300001114607 ], [ 357875.641099996864796, 258908.066799998283386 ], [ 357894.827100001275539, 258927.644499998539686 ], [ 357910.013999998569489, 258943.389699999243021 ], [ 357911.852300003170967, 258945.605099998414516 ], [ 357925.014200001955032, 258962.740200001746416 ], [ 357928.922499999403954, 258967.828299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802016100", "MAP": "D9-9161-T017", "PARCEL_NAM": "CONS REM 2E-3", "ACRE": "0.79", "LONGITUDE": -64.93898691, "LATITUDE": 18.36082141, "OBJECTID_1": 4079, "PARCEL_NO_": "102802016100", "Tax_Legal_": "2E-3 REM LERKENLUND (CONS) NO.9 GREAT NORTHSIDE QTR", "Name": "TURK, CARL M & CYNTHIA M.", "Address": "3997 E Lake View Trl", "City": "Leesburg", "State": "Indiana", "Zip": 46538, "Country": "United States", "Land_Value": 163500, "Improved_V": 373900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.56021315200002, "SHAPE_Area": 3670.83655198 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357939.441699996590614, 258971.368700001388788 ], [ 357935.496899999678135, 258967.914000000804663 ], [ 357931.264700002968311, 258975.677299998700619 ], [ 357905.034500002861023, 259033.218400001525879 ], [ 357900.284999996423721, 259044.212799999862909 ], [ 357919.125900000333786, 259074.927000001072884 ], [ 357923.593599997460842, 259075.75899999961257 ], [ 357938.632299996912479, 259078.559799998998642 ], [ 357943.3091000020504, 259054.053599998354912 ], [ 357950.977899998426437, 259047.434300001710653 ], [ 357957.561800003051758, 259004.639199998229742 ], [ 357954.338100001215935, 258995.973900001496077 ], [ 357952.615500003099442, 258993.128699999302626 ], [ 357939.441699996590614, 258971.368700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013600", "MAP": "D9-6501-T98", "PARCEL_NAM": "2HA-1", "ACRE": null, "LONGITUDE": -64.939371, "LATITUDE": 18.3620336, "OBJECTID_1": 4055, "PARCEL_NO_": "102802013600", "Tax_Legal_": "LERKENLUND 2HA-1 N0.9 GREAT NORTHSIDE QTR.", "Name": "MAUREEN V. B TURBE", "Address": "PO Box 12468", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018468, "Country": "United States", "Land_Value": 89500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.48154929500001, "SHAPE_Area": 2133.1944147700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357930.716700002551079, 259166.078600000590086 ], [ 357893.153899997472763, 259135.562399998307228 ], [ 357857.461300000548363, 259148.986900001764297 ], [ 357873.803700000047684, 259189.287599999457598 ], [ 357930.716700002551079, 259166.078600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013000", "MAP": "D9-6501-T98", "PARCEL_NAM": "2-HA-3", "ACRE": null, "LONGITUDE": -64.93886953000001, "LATITUDE": 18.36233633, "OBJECTID_1": 4049, "PARCEL_NO_": "102802013000", "Tax_Legal_": "LERKENLUND 2HA-3 GT. LERKENLUND", "Name": "BRYAN, KEVIN", "Address": "PO Box 9588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.63574741299999, "SHAPE_Area": 1290.13723841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357972.485600002110004, 259202.642099998891354 ], [ 357939.45610000193119, 259173.178599998354912 ], [ 357916.674900002777576, 259181.433899998664856 ], [ 357937.50450000166893, 259218.669599998742342 ], [ 357972.485600002110004, 259202.642099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011200", "MAP": "D9-6694-T99", "PARCEL_NAM": "2J-6", "ACRE": ".8033", "LONGITUDE": -64.93884261, "LATITUDE": 18.36181509, "OBJECTID_1": 4035, "PARCEL_NO_": "102802011200", "Tax_Legal_": "LERKENLUND REMAINDER 2J No.9 LT.NORTHSIDE QTR.", "Name": "BRYAN, DENNY A", "Address": "PO Box 306407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 281000, "Improved_V": 725000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.56700666399999, "SHAPE_Area": 3061.1375050400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357949.593900002539158, 259158.380499999970198 ], [ 357995.416400000452995, 259143.910199999809265 ], [ 357964.250600002706051, 259108.064399998635054 ], [ 357940.788400001823902, 259117.160500001162291 ], [ 357920.368699997663498, 259125.170699998736382 ], [ 357905.9983000010252, 259130.807900000363588 ], [ 357901.954099997878075, 259132.252500001341105 ], [ 357893.153899997472763, 259135.562399998307228 ], [ 357930.716700002551079, 259166.078600000590086 ], [ 357949.593900002539158, 259158.380499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802027300", "MAP": "D9-5110-T91", "PARCEL_NAM": "3B-1B", "ACRE": ".51", "LONGITUDE": -64.93873933, "LATITUDE": 18.35839123, "OBJECTID_1": 4155, "PARCEL_NO_": "102802027300", "Tax_Legal_": "3B-1B LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "BERRY, JOSEPH N., JR. & ANITA M. (Co-Trustees)", "Address": "PO Box 305516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.117263079, "SHAPE_Area": 2153.9026577200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357962.685400001704693, 258723.861299999058247 ], [ 357954.636699996888638, 258722.106699999421835 ], [ 357942.540200002491474, 258722.218800000846386 ], [ 357934.45549999922514, 258724.685699999332428 ], [ 357933.034000001847744, 258725.370799999684095 ], [ 357963.646799996495247, 258807.583000000566244 ], [ 357975.012800000607967, 258791.300999999046326 ], [ 357980.709100000560284, 258785.225900001823902 ], [ 357984.406099997460842, 258781.482400000095367 ], [ 357962.685400001704693, 258723.861299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802027400", "MAP": "D9-5110-T91", "PARCEL_NAM": "3B-1C", "ACRE": ".30", "LONGITUDE": -64.93884504, "LATITUDE": 18.35778479, "OBJECTID_1": 4156, "PARCEL_NO_": "102802027400", "Tax_Legal_": "3B-1C LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "BERRY, JOSEPH N., JR. & ANITA M. (Co-Trustees)", "Address": "PO Box 305516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.933859592, "SHAPE_Area": 1147.4691967700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357931.899599999189377, 258675.612100001424551 ], [ 357943.60249999910593, 258716.981600001454353 ], [ 357950.660899996757507, 258715.530200000852346 ], [ 357955.507700003683567, 258714.514400001615286 ], [ 357968.433899998664856, 258711.664900001138449 ], [ 357950.320299997925758, 258660.854200001806021 ], [ 357931.899599999189377, 258675.612100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904015800", "MAP": "G9-619-T62", "PARCEL_NAM": "1-F-I", "ACRE": ".33", "LONGITUDE": -64.91833521, "LATITUDE": 18.35211048, "OBJECTID_1": 4971, "PARCEL_NO_": "102904015800", "Tax_Legal_": "1-F-I ST.JOSEPH&ROSENDAHL GREAT NORTHSIDE QTR.", "Name": "SALZBURN, BENJAMIN A. & ERIN K", "Address": "7280 Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46900, "Improved_V": 372200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.40731084199999, "SHAPE_Area": 1252.56994715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360139.953000001609325, 258079.00620000064373 ], [ 360155.405100002884865, 258060.812600001692772 ], [ 360154.127199999988079, 258059.736099999397993 ], [ 360147.3429000005126, 258058.961899999529123 ], [ 360139.889499999582767, 258060.270700000226498 ], [ 360126.957900002598763, 258063.753400001674891 ], [ 360113.191200003027916, 258070.606800001114607 ], [ 360107.019599996507168, 258069.929800000041723 ], [ 360100.70610000193119, 258099.206900000572205 ], [ 360096.660400003194809, 258117.967599999159575 ], [ 360112.887599997222424, 258102.190600000321865 ], [ 360127.499200001358986, 258089.067200001329184 ], [ 360127.550200000405312, 258088.878400001674891 ], [ 360127.72860000282526, 258088.861200001090765 ], [ 360139.953000001609325, 258079.00620000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904019600", "MAP": "D9-8834-T013", "PARCEL_NAM": "1-F-J/K", "ACRE": "0.58", "LONGITUDE": -64.91812919, "LATITUDE": 18.3522681, "OBJECTID_1": 5006, "PARCEL_NO_": "102904019600", "Tax_Legal_": "1-F-J/K ST. JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "SMITH, RAMSEY and CATHERINE", "Address": "10919 Spicewood Trl", "City": "Boynton Beach", "State": "Florida", "Zip": 33436, "Country": "United States", "Land_Value": 74000, "Improved_V": 306300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.812059522, "SHAPE_Area": 2848.5839378400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360112.887599997222424, 258102.190600000321865 ], [ 360096.660400003194809, 258117.967599999159575 ], [ 360118.39130000025034, 258122.789500001817942 ], [ 360138.645400002598763, 258127.22580000013113 ], [ 360159.439499996602535, 258131.780299998819828 ], [ 360167.001999996602535, 258095.956300001591444 ], [ 360172.041299998760223, 258072.355099998414516 ], [ 360174.113499999046326, 258061.913899999111891 ], [ 360163.472099997103214, 258057.989999998360872 ], [ 360161.569300003349781, 258055.946899998933077 ], [ 360155.405100002884865, 258060.812600001692772 ], [ 360139.953000001609325, 258079.00620000064373 ], [ 360127.72860000282526, 258088.861200001090765 ], [ 360127.499200001358986, 258089.067200001329184 ], [ 360112.887599997222424, 258102.190600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904015900", "MAP": "G9-619-T62", "PARCEL_NAM": "1-F-H", "ACRE": ".86", "LONGITUDE": -64.91791099, "LATITUDE": 18.35162481, "OBJECTID_1": 4972, "PARCEL_NO_": "102904015900", "Tax_Legal_": "1-FH & 1-9-b ST.JOSEPH&ROSENDAHL NO.4 GREAT NORTHSIDE", "Name": "THROGMORTON, J. R. , H. R. & L. L", "Address": "7000 Skyline Dr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48200, "Improved_V": 440300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.66501512100001, "SHAPE_Area": 1687.4070590900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360174.545299999415874, 258059.738400001078844 ], [ 360177.939000003039837, 258042.63910000026226 ], [ 360179.594800002872944, 258037.586399998515844 ], [ 360183.79900000244379, 258017.355900000780821 ], [ 360188.008500002324581, 257996.49210000038147 ], [ 360180.76969999819994, 257994.321899998933077 ], [ 360155.630199998617172, 258011.003600001335144 ], [ 360146.710400000214577, 258016.8412000015378 ], [ 360150.673600003123283, 258024.895199999213219 ], [ 360154.631399996578693, 258033.582400001585484 ], [ 360140.753300003707409, 258053.522700000554323 ], [ 360146.824400000274181, 258051.777199998497963 ], [ 360153.472499996423721, 258051.545000001788139 ], [ 360159.52250000089407, 258053.749200001358986 ], [ 360163.472099997103214, 258057.989999998360872 ], [ 360174.113499999046326, 258061.913899999111891 ], [ 360174.545299999415874, 258059.738400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801026000", "MAP": "G9-860-T66", "PARCEL_NAM": "5E", "ACRE": "1.48", "LONGITUDE": -64.94292357, "LATITUDE": 18.3594405, "OBJECTID_1": 3823, "PARCEL_NO_": "102801026000", "Tax_Legal_": "LERKENLUND 5E GT. NORTHSIDE", "Name": "BERRY, MICHAEL PHILIP", "Address": "BOX 3351", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 194200, "Improved_V": 215700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 377.45717531000003, "SHAPE_Area": 6433.5192191899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357574.343000002205372, 258881.771099999547005 ], [ 357499.354900002479553, 258832.317600000649691 ], [ 357502.570100001990795, 258803.459899999201298 ], [ 357500.103799998760223, 258804.351300001144409 ], [ 357492.895400002598763, 258806.956399999558926 ], [ 357476.049900002777576, 258813.178800001740456 ], [ 357468.404100000858307, 258819.078600000590086 ], [ 357465.9662000015378, 258823.828299999237061 ], [ 357464.718199998140335, 258829.780200000852346 ], [ 357464.260099999606609, 258836.930799998342991 ], [ 357467.774700000882149, 258847.293499998748302 ], [ 357466.945299997925758, 258859.926199998706579 ], [ 357547.719899997115135, 258937.40430000051856 ], [ 357550.362000003457069, 258939.938499998301268 ], [ 357574.343000002205372, 258881.771099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022400", "MAP": "G9-860-T66", "PARCEL_NAM": "5D", "ACRE": "1.44", "LONGITUDE": -64.9432223, "LATITUDE": 18.35978966, "OBJECTID_1": 3797, "PARCEL_NO_": "102801022400", "Tax_Legal_": "5D LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "LAPLACE QUERRARD, CATHERINE & RODNEY F. QUERRARD", "Address": "6G-2 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.29346249100001, "SHAPE_Area": 4406.6394151799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357550.362000003457069, 258939.938499998301268 ], [ 357547.719899997115135, 258937.40430000051856 ], [ 357466.945299997925758, 258859.926199998706579 ], [ 357466.861800000071526, 258861.197399999946356 ], [ 357461.989200003445148, 258870.299499999731779 ], [ 357452.641099996864796, 258881.320599999278784 ], [ 357439.517700001597404, 258893.731600001454353 ], [ 357457.696099996566772, 258936.943500000983477 ], [ 357550.362000003457069, 258939.938499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022300", "MAP": null, "PARCEL_NAM": "5K", "ACRE": null, "LONGITUDE": -64.94290717, "LATITUDE": 18.36036291, "OBJECTID_1": 3796, "PARCEL_NO_": "102801022300", "Tax_Legal_": "LERKENLUND 5K GR NORTHSIDE", "Name": "BANANA TREE TRUST", "Address": "7451 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023599, "Country": "United States", "Land_Value": 178200, "Improved_V": 202200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.82516537700002, "SHAPE_Area": 6800.5692371900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357463.68469999730587, 258952.020300000905991 ], [ 357467.958800002932549, 258962.780900001525879 ], [ 357475.062700003385544, 258980.782000001519918 ], [ 357481.389200001955032, 258995.39919999986887 ], [ 357500.460199996829033, 259028.48589999973774 ], [ 357549.909599997103214, 258997.859900001436472 ], [ 357573.429300002753735, 258982.009199999272823 ], [ 357584.843699999153614, 258973.013000000268221 ], [ 357558.099399998784065, 258947.360100001096725 ], [ 357550.362000003457069, 258939.938499998301268 ], [ 357457.696099996566772, 258936.943500000983477 ], [ 357463.68469999730587, 258952.020300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801025900", "MAP": "D9-8935-T014", "PARCEL_NAM": "5G-1", "ACRE": ".814", "LONGITUDE": -64.94119833000001, "LATITUDE": 18.35910819, "OBJECTID_1": 3822, "PARCEL_NO_": "102801025900", "Tax_Legal_": "LERKENLUND 5G GT. NORTHSIDE", "Name": "BERRY, MILTON R. & ANNE E", "Address": "7434 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 199000, "Improved_V": 335000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.217872683, "SHAPE_Area": 2972.1207113400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357661.206799998879433, 258863.710700001567602 ], [ 357694.511200003325939, 258864.877000000327826 ], [ 357732.163800001144409, 258840.135299999266863 ], [ 357732.174300000071526, 258805.567699998617172 ], [ 357729.805699996650219, 258799.637699998915195 ], [ 357724.206500001251698, 258794.314500000327826 ], [ 357724.120399996638298, 258794.297899998724461 ], [ 357720.805500000715256, 258796.775199998170137 ], [ 357717.993900001049042, 258799.524599999189377 ], [ 357714.820900000631809, 258803.830600000917912 ], [ 357708.663400001823902, 258810.711399998515844 ], [ 357703.939999997615814, 258812.752199999988079 ], [ 357666.202899999916553, 258836.086500000208616 ], [ 357658.465700000524521, 258839.361000001430511 ], [ 357661.206799998879433, 258863.710700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022800", "MAP": "G9-861-T66", "PARCEL_NAM": "5H", "ACRE": ".82", "LONGITUDE": -64.94195439000001, "LATITUDE": 18.3593894, "OBJECTID_1": 3801, "PARCEL_NO_": "102801022800", "Tax_Legal_": "LERKENLUND 5H GR NORTHSIDE", "Name": "BERRY, KENNETH, STEPHANIE, LISA & KAREN", "Address": "473 Heather Ave NE", "City": "Palm Bay", "State": "Florida", "Zip": 32907, "Country": "United States", "Land_Value": 219400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.900342005, "SHAPE_Area": 3211.2250342799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357599.445100001990795, 258896.555500000715256 ], [ 357662.03320000320673, 258871.052099999040365 ], [ 357658.465700000524521, 258839.361000001430511 ], [ 357657.77589999884367, 258835.129299998283386 ], [ 357653.875299997627735, 258837.459699999541044 ], [ 357629.317800000309944, 258846.264800000935793 ], [ 357587.416299998760223, 258850.061000000685453 ], [ 357574.343000002205372, 258881.771099999547005 ], [ 357599.445100001990795, 258896.555500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801025900", "MAP": "D9-6690-T99", "PARCEL_NAM": "5G REM", "ACRE": ".556", "LONGITUDE": -64.94118177, "LATITUDE": 18.35950636, "OBJECTID_1": 3822, "PARCEL_NO_": "102801025900", "Tax_Legal_": "LERKENLUND 5G GT. NORTHSIDE", "Name": "BERRY, MILTON R. & ANNE E", "Address": "7434 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 199000, "Improved_V": 335000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.224547411, "SHAPE_Area": 3181.3296487500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357732.163800001144409, 258840.135299999266863 ], [ 357694.511200003325939, 258864.877000000327826 ], [ 357661.206799998879433, 258863.710700001567602 ], [ 357666.187899999320507, 258907.96000000089407 ], [ 357676.503499999642372, 258903.903900001198053 ], [ 357719.241599999368191, 258903.831500001251698 ], [ 357729.725500002503395, 258903.706199999898672 ], [ 357732.144400000572205, 258903.725999999791384 ], [ 357732.163800001144409, 258840.135299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022600", "MAP": "D9-5206-T91", "PARCEL_NAM": "5J-1", "ACRE": ".533", "LONGITUDE": -64.94231536, "LATITUDE": 18.36009787, "OBJECTID_1": 3799, "PARCEL_NO_": "102801022600", "Tax_Legal_": "LERKENLUND REMAINDER 5J&5J-1 No.9 GREAT NORTHSIDE QTR.", "Name": "BERRY, KENNETH, STEPHANIE, LISA & KAREN", "Address": "473 Heather Ave NE", "City": "Palm Bay", "State": "Florida", "Zip": 32907, "Country": "United States", "Land_Value": 225100, "Improved_V": 337100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.75687015400001, "SHAPE_Area": 1873.52203134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357616.108599998056889, 258948.804699998348951 ], [ 357561.04900000244379, 258914.016499999910593 ], [ 357550.362000003457069, 258939.938499998301268 ], [ 357584.843699999153614, 258973.013000000268221 ], [ 357586.418399997055531, 258971.771999999880791 ], [ 357594.515699997544289, 258967.827500000596046 ], [ 357607.512000001966953, 258956.745900001376867 ], [ 357614.010999999940395, 258951.099500000476837 ], [ 357616.108599998056889, 258948.804699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022600", "MAP": "D9-5206-T91", "PARCEL_NAM": "5J REM", "ACRE": ".77", "LONGITUDE": -64.9421368, "LATITUDE": 18.3598409, "OBJECTID_1": 3799, "PARCEL_NO_": "102801022600", "Tax_Legal_": "LERKENLUND REMAINDER 5J&5J-1 No.9 GREAT NORTHSIDE QTR.", "Name": "BERRY, KENNETH, STEPHANIE, LISA & KAREN", "Address": "473 Heather Ave NE", "City": "Palm Bay", "State": "Florida", "Zip": 32907, "Country": "United States", "Land_Value": 225100, "Improved_V": 337100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.55880573, "SHAPE_Area": 2579.24633782 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357561.04900000244379, 258914.016499999910593 ], [ 357616.108599998056889, 258948.804699998348951 ], [ 357630.290100000798702, 258933.289799999445677 ], [ 357644.88289999961853, 258924.121100001037121 ], [ 357645.473899997770786, 258923.664900001138449 ], [ 357574.343000002205372, 258881.771099999547005 ], [ 357561.04900000244379, 258914.016499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022800", "MAP": "D9-5206-T91", "PARCEL_NAM": "5H-1", "ACRE": ".5006", "LONGITUDE": -64.94174833, "LATITUDE": 18.35967136, "OBJECTID_1": 3801, "PARCEL_NO_": "102801022800", "Tax_Legal_": "LERKENLUND 5H GR NORTHSIDE", "Name": "BERRY, KENNETH, STEPHANIE, LISA & KAREN", "Address": "473 Heather Ave NE", "City": "Palm Bay", "State": "Florida", "Zip": 32907, "Country": "United States", "Land_Value": 219400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.14770114300001, "SHAPE_Area": 1848.3799485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357662.03320000320673, 258871.052099999040365 ], [ 357599.445100001990795, 258896.555500000715256 ], [ 357645.473899997770786, 258923.664900001138449 ], [ 357655.435099996626377, 258915.974899999797344 ], [ 357665.985500000417233, 258908.039700001478195 ], [ 357666.187899999320507, 258907.96000000089407 ], [ 357662.03320000320673, 258871.052099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022900", "MAP": "G9-860-T66", "PARCEL_NAM": "5F", "ACRE": "1.26", "LONGITUDE": -64.94258197000001, "LATITUDE": 18.35902497, "OBJECTID_1": 3802, "PARCEL_NO_": "102801022900", "Tax_Legal_": "LERKENLUND 5F GR NORTHSIDE", "Name": "BERRY, MICHAEL P", "Address": "11530 Belize Dr", "City": "Pensacola", "State": "Florida", "Zip": 32506, "Country": "United States", "Land_Value": 100400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.54038853499998, "SHAPE_Area": 6097.4323284100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357587.416299998760223, 258850.061000000685453 ], [ 357598.584499999880791, 258783.972199998795986 ], [ 357596.888199999928474, 258783.984400000423193 ], [ 357582.087499998509884, 258784.716400001198053 ], [ 357542.717399999499321, 258792.124800000339746 ], [ 357516.557899996638298, 258798.404699999839067 ], [ 357502.570100001990795, 258803.459899999201298 ], [ 357499.354900002479553, 258832.317600000649691 ], [ 357574.343000002205372, 258881.771099999547005 ], [ 357587.416299998760223, 258850.061000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801023400", "MAP": "G9-779-T64", "PARCEL_NAM": "5B", "ACRE": "1.056", "LONGITUDE": -64.94181749000001, "LATITUDE": 18.35893635, "OBJECTID_1": 3807, "PARCEL_NO_": "102801023400", "Tax_Legal_": "LERKENLUND 5B GR NORTHSIDE", "Name": "BERRY FAMILY REVOCABLE TRUST", "Address": "7430 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46900, "Improved_V": 184200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.98386141100002, "SHAPE_Area": 4620.8127441500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357598.584499999880791, 258783.972199998795986 ], [ 357587.416299998760223, 258850.061000000685453 ], [ 357629.317800000309944, 258846.264800000935793 ], [ 357653.875299997627735, 258837.459699999541044 ], [ 357665.931999996304512, 258830.256599999964237 ], [ 357697.154500000178814, 258811.13740000128746 ], [ 357695.798100002110004, 258806.447999998927116 ], [ 357695.50450000166893, 258799.687899999320507 ], [ 357694.675300002098083, 258794.482900001108646 ], [ 357692.612999998033047, 258791.503299999982119 ], [ 357687.128700003027916, 258792.533399999141693 ], [ 357681.461099997162819, 258795.231300000101328 ], [ 357672.553900003433228, 258799.591299999505281 ], [ 357662.062899999320507, 258800.560899998992682 ], [ 357657.230400003492832, 258799.888099998235703 ], [ 357645.175300002098083, 258795.145399998873472 ], [ 357625.08219999819994, 258787.381499998271465 ], [ 357610.597300000488758, 258783.885499998927116 ], [ 357598.584499999880791, 258783.972199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802030400", "MAP": "D9-911-T70", "PARCEL_NAM": "6C", "ACRE": "2.00", "LONGITUDE": -64.94011787, "LATITUDE": 18.35664277, "OBJECTID_1": 4164, "PARCEL_NO_": "102802030400", "Tax_Legal_": "LERKENLUND 6C 9 GR NORTHSIDE QTR", "Name": "BUSHNELL, YVONNE JEANE", "Address": "PO Box 1631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 240200, "Improved_V": 173200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 368.61700209899999, "SHAPE_Area": 7616.7043905199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357881.725599996745586, 258564.735399998724461 ], [ 357856.447999998927116, 258507.191399998962879 ], [ 357837.847599998116493, 258517.023299999535084 ], [ 357798.158500000834465, 258537.807900000363588 ], [ 357777.908900000154972, 258548.407900001853704 ], [ 357755.064999997615814, 258560.303300000727177 ], [ 357750.370200000703335, 258562.747999999672174 ], [ 357747.864500001072884, 258564.033700000494719 ], [ 357777.305299997329712, 258619.934000000357628 ], [ 357777.218000002205372, 258621.177700001746416 ], [ 357783.705899998545647, 258617.4662000015378 ], [ 357881.725599996745586, 258564.735399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801023700", "MAP": "D9-6409-T98", "PARCEL_NAM": "6E REM", "ACRE": "1.56", "LONGITUDE": -64.9410994, "LATITUDE": 18.35717396, "OBJECTID_1": 3810, "PARCEL_NO_": "102801023700", "Tax_Legal_": "LERKENLUND 6E REMAINDER No.9 GREAT NORTHSIDE QTR.", "Name": "HEMMERT FAMILY TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 189100, "Improved_V": 189400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.70245917699998, "SHAPE_Area": 7679.9723604800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357777.218000002205372, 258621.177700001746416 ], [ 357777.305299997329712, 258619.934000000357628 ], [ 357747.864500001072884, 258564.033700000494719 ], [ 357743.08110000193119, 258566.488000001758337 ], [ 357739.839599996805191, 258568.361299999058247 ], [ 357712.29730000346899, 258583.123500000685453 ], [ 357679.07769999653101, 258601.170299999415874 ], [ 357677.462300002574921, 258602.047899998724461 ], [ 357659.090000003576279, 258612.024500001221895 ], [ 357656.065600000321865, 258666.967099998146296 ], [ 357672.615900002419949, 258678.352200001478195 ], [ 357690.877199999988079, 258669.090900000184774 ], [ 357713.675300002098083, 258657.528799999505281 ], [ 357777.218000002205372, 258621.177700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023200", "MAP": "D9-8458-T010", "PARCEL_NAM": "6K", "ACRE": ".208", "LONGITUDE": -64.93869934, "LATITUDE": 18.35266551, "OBJECTID_1": 4536, "PARCEL_NO_": "102804023200", "Tax_Legal_": "6 ESTATE AGNES FANCY GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. , TRUSTE", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 398600, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.520395476, "SHAPE_Area": 570.928638718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357958.859099999070168, 258100.829199999570847 ], [ 357961.978699997067451, 258145.046900000423193 ], [ 357986.709399998188019, 258129.55689999833703 ], [ 357958.859099999070168, 258100.829199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804023000", "MAP": "D9-8458-T010", "PARCEL_NAM": "21A", "ACRE": ".579", "LONGITUDE": -64.93857773000001, "LATITUDE": 18.35292834, "OBJECTID_1": 4534, "PARCEL_NO_": "102804023000", "Tax_Legal_": "21 ESTATE ELIZABETH No.8i GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. B. TRUST", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 168300, "Improved_V": 1035100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.68736219100001, "SHAPE_Area": 1466.10058314 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357961.978699997067451, 258145.046900000423193 ], [ 357962.262999996542931, 258149.077199999243021 ], [ 357961.512000001966953, 258153.647199999541044 ], [ 357957.356100000441074, 258178.933499999344349 ], [ 358014.253700003027916, 258157.969000000506639 ], [ 357986.709399998188019, 258129.55689999833703 ], [ 357961.978699997067451, 258145.046900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022900", "MAP": "D9-8458-T010", "PARCEL_NAM": "10AA-1 REM", "ACRE": ".028", "LONGITUDE": -64.93884819, "LATITUDE": 18.35292592, "OBJECTID_1": 4533, "PARCEL_NO_": "102804022900", "Tax_Legal_": "LERKENLUND 10BA&10Aa No.9 GREAT NORTHSIDE QTR.", "Name": "PRAKASH LACHMANDAS DASWANI REVOCABLE TRUST", "Address": "PO Box 1386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 163600, "Improved_V": 437300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.63765789036999998, "SHAPE_Area": 0.01525362954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357953.309900000691414, 258153.714299999177456 ], [ 357953.093400001525879, 258153.892400000244379 ], [ 357953.244999997317791, 258153.908599998801947 ], [ 357953.309900000691414, 258153.714299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022900", "MAP": "D9-8458-T010", "PARCEL_NAM": "10AA-1 REM", "ACRE": ".028", "LONGITUDE": -64.93894647, "LATITUDE": 18.35289799, "OBJECTID_1": 4533, "PARCEL_NO_": "102804022900", "Tax_Legal_": "LERKENLUND 10BA&10Aa No.9 GREAT NORTHSIDE QTR.", "Name": "PRAKASH LACHMANDAS DASWANI REVOCABLE TRUST", "Address": "PO Box 1386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 163600, "Improved_V": 437300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.50352761400001, "SHAPE_Area": 115.433716163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357903.076899997889996, 258148.565699998289347 ], [ 357961.512000001966953, 258153.647199999541044 ], [ 357962.262999996542931, 258149.077199999243021 ], [ 357954.675499998033047, 258149.621300000697374 ], [ 357950.2195999994874, 258149.544599998742342 ], [ 357931.294200003147125, 258149.218800000846386 ], [ 357903.076899997889996, 258148.565699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022900", "MAP": "A9-515-T98", "PARCEL_NAM": "10AA-REM", "ACRE": "1.0086", "LONGITUDE": -64.93913157, "LATITUDE": 18.35306094, "OBJECTID_1": 4533, "PARCEL_NO_": "102804022900", "Tax_Legal_": "LERKENLUND 10BA&10Aa No.9 GREAT NORTHSIDE QTR.", "Name": "PRAKASH LACHMANDAS DASWANI REVOCABLE TRUST", "Address": "PO Box 1386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 163600, "Improved_V": 437300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.099351781, "SHAPE_Area": 2423.2728662899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357885.347199998795986, 258182.579300001263618 ], [ 357926.13740000128746, 258190.328000001609325 ], [ 357943.165399998426437, 258184.119100000709295 ], [ 357957.356100000441074, 258178.933499999344349 ], [ 357961.512000001966953, 258153.647199999541044 ], [ 357903.076899997889996, 258148.565699998289347 ], [ 357895.560999996960163, 258148.528799999505281 ], [ 357885.347199998795986, 258182.579300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022800", "MAP": "D9-8458-T010", "PARCEL_NAM": "1A-REM", "ACRE": ".476", "LONGITUDE": -64.93892325, "LATITUDE": 18.35265302, "OBJECTID_1": 4532, "PARCEL_NO_": "102804022800", "Tax_Legal_": "1A ESTATE STABI&10Aa-1 LERKENLUN No.9A&9G GREAT NORTHSIDE QTR.", "Name": "FOG, J. B. , P. B. , J. B. & P. H. , TRUSTE", "Address": "PO Box 7547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 123300, "Improved_V": 72800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.993942516, "SHAPE_Area": 1356.4024991900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357962.262999996542931, 258149.077199999243021 ], [ 357961.978699997067451, 258145.046900000423193 ], [ 357958.859099999070168, 258100.829199999570847 ], [ 357926.368000000715256, 258104.268399998545647 ], [ 357927.648599997162819, 258130.766100000590086 ], [ 357950.2195999994874, 258149.544599998742342 ], [ 357954.675499998033047, 258149.621300000697374 ], [ 357962.262999996542931, 258149.077199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011200", "MAP": "D9-6694-T99", "PARCEL_NAM": "2J-5", "ACRE": ".626", "LONGITUDE": -64.93842654, "LATITUDE": 18.3622136, "OBJECTID_1": 4035, "PARCEL_NO_": "102802011200", "Tax_Legal_": "LERKENLUND REMAINDER 2J No.9 LT.NORTHSIDE QTR.", "Name": "BRYAN, DENNY A", "Address": "PO Box 306407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 281000, "Improved_V": 725000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.18228363, "SHAPE_Area": 3160.02726162 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357939.45610000193119, 259173.178599998354912 ], [ 357972.485600002110004, 259202.642099998891354 ], [ 357985.032700002193451, 259213.834499999880791 ], [ 357985.55969999730587, 259214.778000000864267 ], [ 357988.847999997437, 259213.304800000041723 ], [ 358033.295100003480911, 259190.958399999886751 ], [ 358029.729900002479553, 259183.538499999791384 ], [ 358024.141400001943111, 259176.948899999260902 ], [ 358002.153800003230572, 259151.659499999135733 ], [ 357957.016500003635883, 259166.815099999308586 ], [ 357939.45610000193119, 259173.178599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802015600", "MAP": "D9-6463-T98", "PARCEL_NAM": "2J-1", "ACRE": ".6370", "LONGITUDE": -64.93796556, "LATITUDE": 18.36295465, "OBJECTID_1": 4074, "PARCEL_NO_": "102802015600", "Tax_Legal_": "LERKENLUND 2J-1 GT.NORTHSIDE QTR.", "Name": "BRYAN, DENNY", "Address": "PO Box 6407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 97200, "Improved_V": 398400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.870552511, "SHAPE_Area": 2154.7039591900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358069.77419999986887, 259280.2212999984622 ], [ 358034.379299998283386, 259225.039799999445677 ], [ 358028.961000002920628, 259234.422499999403954 ], [ 358024.637500002980232, 259241.909400001168251 ], [ 358013.973600000143051, 259250.596599999815226 ], [ 358008.020900003612041, 259254.984499998390675 ], [ 358023.850500002503395, 259283.320099998265505 ], [ 358030.808799996972084, 259295.775800000876188 ], [ 358041.73589999973774, 259291.644299998879433 ], [ 358069.77419999986887, 259280.2212999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011200", "MAP": "D9-6694-T99", "PARCEL_NAM": "2J-4", "ACRE": ".626", "LONGITUDE": -64.93818393, "LATITUDE": 18.36253183, "OBJECTID_1": 4035, "PARCEL_NO_": "102802011200", "Tax_Legal_": "LERKENLUND REMAINDER 2J No.9 LT.NORTHSIDE QTR.", "Name": "BRYAN, DENNY A", "Address": "PO Box 306407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 281000, "Improved_V": 725000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.59227640200001, "SHAPE_Area": 1672.9330146299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358006.400200001895428, 259252.083299998193979 ], [ 358011.451499998569489, 259246.717000000178814 ], [ 358019.377199999988079, 259237.390900000929832 ], [ 358024.364699997007847, 259229.551899999380112 ], [ 358035.20719999819994, 259212.510299999266863 ], [ 358045.810999996960163, 259185.016800001263618 ], [ 358045.233900003135204, 259184.9560999982059 ], [ 357988.847999997437, 259213.304800000041723 ], [ 357985.55969999730587, 259214.778000000864267 ], [ 358006.400200001895428, 259252.083299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802015400", "MAP": "D9-6293-T97", "PARCEL_NAM": "2-K-6", "ACRE": ".50", "LONGITUDE": -64.93915739000001, "LATITUDE": 18.36284483, "OBJECTID_1": 4072, "PARCEL_NO_": "102802015400", "Tax_Legal_": "2K-6 ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BRYAN, RONNY", "Address": "P O BOX 2621", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.86014093099999, "SHAPE_Area": 1701.44114853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357941.648999996483326, 259259.714999999850988 ], [ 357922.454199999570847, 259225.523499999195337 ], [ 357893.791000001132488, 259238.576799999922514 ], [ 357881.647799998521805, 259244.176899999380112 ], [ 357900.843699999153614, 259277.317999999970198 ], [ 357923.402500003576279, 259266.541299998760223 ], [ 357941.648999996483326, 259259.714999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804015000", "MAP": "D9-6293-T97", "PARCEL_NAM": "2-k-2", "ACRE": ".50", "LONGITUDE": -64.93883152, "LATITUDE": 18.36314593, "OBJECTID_1": 4465, "PARCEL_NO_": "102804015000", "Tax_Legal_": "3B-2 & 3 MISGUNST No.6. GREAT NORTHSIDE QTR.", "Name": "ROM(TRUSTEES), DANIEL S. & JULIA B.", "Address": "286 High Rail Ter", "City": "Leesburg", "State": "Virginia", "Zip": 20175, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.991740462, "SHAPE_Area": 2468.4812231800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357944.999300003051758, 259328.909699998795986 ], [ 357934.713200002908707, 259310.175200000405312 ], [ 358002.373800002038479, 259256.360700000077486 ], [ 357997.631499998271465, 259257.516499999910593 ], [ 357989.757600001990795, 259258.31700000166893 ], [ 357973.73139999806881, 259260.095600001513958 ], [ 357953.406300000846386, 259261.625 ], [ 357947.226499997079372, 259262.942499998956919 ], [ 357925.755800001323223, 259272.613400001078844 ], [ 357915.269599996507168, 259277.365600001066923 ], [ 357907.812200002372265, 259280.745099999010563 ], [ 357936.715199999511242, 259333.986900001764297 ], [ 357943.377899996936321, 259329.892499998211861 ], [ 357944.999300003051758, 259328.909699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014900", "MAP": "D9-6293-T97", "PARCEL_NAM": "2-K-1", "ACRE": ".500", "LONGITUDE": -64.93850133, "LATITUDE": 18.36320445, "OBJECTID_1": 4067, "PARCEL_NO_": "102802014900", "Tax_Legal_": "LERKENLUND 2K-1 G. NORTHSIDE QTR", "Name": "BRYAN, RONNIE M", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105400, "Improved_V": 1128800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.180041321, "SHAPE_Area": 2544.6551173399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358002.373800002038479, 259256.360700000077486 ], [ 357934.713200002908707, 259310.175200000405312 ], [ 357944.999300003051758, 259328.909699998795986 ], [ 357955.974899999797344, 259322.256599999964237 ], [ 357960.836199998855591, 259319.552200000733137 ], [ 358023.850500002503395, 259283.320099998265505 ], [ 358008.020900003612041, 259254.984499998390675 ], [ 358002.373800002038479, 259256.360700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802015500", "MAP": "D9-6293-T97", "PARCEL_NAM": "2K-7", "ACRE": ".50", "LONGITUDE": -64.93866525, "LATITUDE": 18.36268119, "OBJECTID_1": 4073, "PARCEL_NO_": "102802015500", "Tax_Legal_": "2K-7 LERKENLUND NO 9 GREAT NORTHSIDE QTR", "Name": "BRYAN, DENNY", "Address": "PO Box 306407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.29128321, "SHAPE_Area": 2851.5799318999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357922.454199999570847, 259225.523499999195337 ], [ 357941.648999996483326, 259259.714999999850988 ], [ 357945.370200000703335, 259258.322799999266863 ], [ 357958.10809999704361, 259255.498500000685453 ], [ 357961.169100001454353, 259255.339099999517202 ], [ 357964.490599997341633, 259255.166299998760223 ], [ 357973.465400002896786, 259254.699099998921156 ], [ 357987.431000001728535, 259253.425999999046326 ], [ 358006.400200001895428, 259252.083299998193979 ], [ 358004.049199998378754, 259247.874899998307228 ], [ 357999.955700002610683, 259240.547400001436472 ], [ 357985.032700002193451, 259213.834499999880791 ], [ 357972.485600002110004, 259202.642099998891354 ], [ 357937.50450000166893, 259218.669599998742342 ], [ 357922.454199999570847, 259225.523499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014700", "MAP": "D9-5747-T94", "PARCEL_NAM": "1-4-B3-1", "ACRE": ".53", "LONGITUDE": -64.9406846, "LATITUDE": 18.36251898, "OBJECTID_1": 4065, "PARCEL_NO_": "102802014700", "Tax_Legal_": "LERKENLUND 1-4-B3 & 1-4-B3-1 GREAT NORTHSIDE QTR", "Name": "JACKLYN ANN QUERRARD REVOCABLE FAMILY TRUST", "Address": "PO Box 11102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 158800, "Improved_V": 572400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.83877856200002, "SHAPE_Area": 2958.73883815 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357714.74210000038147, 259239.362700000405312 ], [ 357795.417300000786781, 259238.193799998611212 ], [ 357745.189699999988079, 259170.866099998354912 ], [ 357720.851000003516674, 259188.187699999660254 ], [ 357726.495200000703335, 259188.233899999409914 ], [ 357729.704300001263618, 259190.160000000149012 ], [ 357731.297100000083447, 259192.495000001043081 ], [ 357731.250399999320507, 259197.9831000007689 ], [ 357721.344499997794628, 259224.921999998390675 ], [ 357714.74210000038147, 259239.362700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203012400", "MAP": "D9-8971-T015", "PARCEL_NAM": "13-5", "ACRE": "3.35", "LONGITUDE": -64.94272553, "LATITUDE": 18.36616335, "OBJECTID_1": 725, "PARCEL_NO_": "101203012400", "Tax_Legal_": "13-5 & 13-6 ST PETER LITTLE NORTHSIDE QUARTER", "Name": "NAPOLEON QUERRARD REVOCABLE LIVING TRUST", "Address": "7480 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 409400, "Improved_V": 32900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 772.08560012700002, "SHAPE_Area": 14560.5291478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357490.109300002455711, 259551.150499999523163 ], [ 357498.994400002062321, 259565.719000000506639 ], [ 357492.713200002908707, 259574.049199998378754 ], [ 357517.444700002670288, 259621.026500001549721 ], [ 357514.559500001370907, 259622.827199999243021 ], [ 357488.85700000077486, 259638.868700001388788 ], [ 357451.938900001347065, 259661.910100001841784 ], [ 357465.513300001621246, 259723.119899999350309 ], [ 357472.894199997186661, 259708.614799998700619 ], [ 357481.831900000572205, 259700.666400000452995 ], [ 357497.216600000858307, 259693.192999999970198 ], [ 357516.63459999859333, 259685.541400000452995 ], [ 357548.186899997293949, 259673.345100000500679 ], [ 357570.868000000715256, 259661.287300001829863 ], [ 357582.222900003194809, 259653.56980000063777 ], [ 357591.1587999984622, 259645.832499999552965 ], [ 357601.729000002145767, 259635.575399998575449 ], [ 357611.512599997222424, 259622.989900000393391 ], [ 357594.192699998617172, 259573.66330000013113 ], [ 357592.612499997019768, 259569.850699998438358 ], [ 357552.021700002253056, 259601.815799999982119 ], [ 357533.010099999606609, 259561.7635000012815 ], [ 357563.846000000834465, 259539.006700001657009 ], [ 357563.892700001597404, 259533.518699999898672 ], [ 357567.971000000834465, 259528.0636 ], [ 357552.403800003230572, 259500.006000000983477 ], [ 357551.676899999380112, 259499.934300001710653 ], [ 357547.393399998545647, 259504.959800001233816 ], [ 357551.950900003314018, 259515.478000000119209 ], [ 357546.286899998784065, 259517.753600001335144 ], [ 357534.42059999704361, 259490.847600001841784 ], [ 357533.47580000013113, 259507.094099998474121 ], [ 357531.026299998164177, 259510.662599999457598 ], [ 357525.35700000077486, 259513.571600001305342 ], [ 357520.513700000941753, 259514.165199998766184 ], [ 357513.95889999717474, 259526.355000000447035 ], [ 357505.807700000703335, 259536.631799999624491 ], [ 357494.42400000244379, 259547.726599998772144 ], [ 357490.109300002455711, 259551.150499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203014900", "MAP": "D9-4501-T88", "PARCEL_NAM": "13-5F", "ACRE": ".514", "LONGITUDE": -64.94340928, "LATITUDE": 18.36625393, "OBJECTID_1": 749, "PARCEL_NO_": "101203014900", "Tax_Legal_": "13-5F&13-5L ESTATE ST.PETER No.2 LT.NORTHSIDE QTR.", "Name": "CURRY, DIANE & FRANCE, CARY", "Address": "7480 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.74717288900001, "SHAPE_Area": 1651.9112977699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357457.931000001728535, 259595.140700001269579 ], [ 357461.590800002217293, 259578.404100000858307 ], [ 357453.919900000095367, 259589.163800001144409 ], [ 357453.750500001013279, 259589.401399999856949 ], [ 357446.427199997007847, 259597.151900000870228 ], [ 357438.904700003564358, 259603.135899998247623 ], [ 357454.402699999511242, 259660.372400000691414 ], [ 357466.547200001776218, 259652.792700000107288 ], [ 357477.382399998605251, 259646.030200000852346 ], [ 357484.099899999797344, 259641.837699998170137 ], [ 357457.931000001728535, 259595.140700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203015000", "MAP": "D9-4501-T88", "PARCEL_NAM": "13-5G", "ACRE": ".514", "LONGITUDE": -64.94316373, "LATITUDE": 18.36602874, "OBJECTID_1": 750, "PARCEL_NO_": "101203015000", "Tax_Legal_": "ST PETER 13-5G LT. NORTHSIDE", "Name": "QUERRARD, KATHLEEN", "Address": "PO Box 10942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82300, "Improved_V": 155900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.64649714699999, "SHAPE_Area": 2739.0629508000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357461.590800002217293, 259578.404100000858307 ], [ 357457.931000001728535, 259595.140700001269579 ], [ 357484.099899999797344, 259641.837699998170137 ], [ 357488.85700000077486, 259638.868700001388788 ], [ 357514.559500001370907, 259622.827199999243021 ], [ 357517.444700002670288, 259621.026500001549721 ], [ 357491.115500003099442, 259571.014299999922514 ], [ 357488.557899996638298, 259566.155999999493361 ], [ 357489.230599999427795, 259559.649000000208616 ], [ 357490.109300002455711, 259551.150499999523163 ], [ 357484.681699998676777, 259555.457400001585484 ], [ 357483.056500002741814, 259556.921700000762939 ], [ 357473.310599997639656, 259565.074599999934435 ], [ 357462.727899998426437, 259576.809200000017881 ], [ 357461.590800002217293, 259578.404100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203016100", "MAP": "D9-5394-T92", "PARCEL_NAM": "14-9", "ACRE": null, "LONGITUDE": -64.94372697, "LATITUDE": 18.36688234, "OBJECTID_1": 760, "PARCEL_NO_": "101203016100", "Tax_Legal_": "ST PETER 14-9 LITTLE NORTHSIDE", "Name": "SUAZO-BOYLAN, DAGOT KELLY", "Address": "P.O. BOX 5217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.50798770399999, "SHAPE_Area": 2075.4745608500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357441.970399998128414, 259681.64640000090003 ], [ 357401.543999999761581, 259668.981499999761581 ], [ 357396.382600001990795, 259697.644999999552965 ], [ 357393.074600003659725, 259707.328200001269579 ], [ 357391.466300003230572, 259712.435400001704693 ], [ 357447.297200001776218, 259709.556099999696016 ], [ 357462.33330000191927, 259708.780600000172853 ], [ 357457.192400000989437, 259685.599300000816584 ], [ 357441.970399998128414, 259681.64640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203016500", "MAP": "D9-5491-T93", "PARCEL_NAM": "14-10-A", "ACRE": ".309", "LONGITUDE": -64.94370242, "LATITUDE": 18.36660352, "OBJECTID_1": 764, "PARCEL_NO_": "101203016500", "Tax_Legal_": "ST PETER 14-10-A\nLITTLE NORTHSIDE QTR", "Name": "PEEVEY, JACK CRAIG and KELLI W", "Address": "7478 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52000, "Improved_V": 190500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.138834164, "SHAPE_Area": 1402.5557188600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357436.628499999642372, 259653.26410000026226 ], [ 357408.984399996697903, 259638.219799999147654 ], [ 357404.846699997782707, 259650.640399999916553 ], [ 357401.543999999761581, 259668.981499999761581 ], [ 357441.970399998128414, 259681.64640000090003 ], [ 357457.192400000989437, 259685.599300000816584 ], [ 357451.938900001347065, 259661.910100001841784 ], [ 357438.243600003421307, 259654.176199998706579 ], [ 357436.628499999642372, 259653.26410000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203016200", "MAP": "D9-5491-T93", "PARCEL_NAM": "14-10", "ACRE": ".253", "LONGITUDE": -64.94366111, "LATITUDE": 18.36633024, "OBJECTID_1": 761, "PARCEL_NO_": "101203016200", "Tax_Legal_": "ST PETER 14-10 LITTLE NORTHSIDE", "Name": "CURRY, DIANE & CARY, FRANCE", "Address": "13 EST BARRETT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40600, "Improved_V": 238200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.95098714299999, "SHAPE_Area": 1194.2435339199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357451.938900001347065, 259661.910100001841784 ], [ 357438.904700003564358, 259603.135899998247623 ], [ 357429.541199997067451, 259610.584300000220537 ], [ 357428.565999999642372, 259611.360100001096725 ], [ 357418.798600003123283, 259622.045899998396635 ], [ 357414.713100001215935, 259628.345300000160933 ], [ 357412.268899999558926, 259631.280600000172853 ], [ 357408.984399996697903, 259638.219799999147654 ], [ 357436.628499999642372, 259653.26410000026226 ], [ 357438.243600003421307, 259654.176199998706579 ], [ 357451.938900001347065, 259661.910100001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801016300", "MAP": "F9-3166-T73", "PARCEL_NAM": "8B", "ACRE": null, "LONGITUDE": -64.94878512, "LATITUDE": 18.36265764, "OBJECTID_1": 3740, "PARCEL_NO_": "102801016300", "Tax_Legal_": "8B ST PETER LITTLE NORTHSIDE", "Name": "SERRANO, FRANK & HENRIETTE", "Address": "PO Box 303893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74700, "Improved_V": 236200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.86647612899998, "SHAPE_Area": 4881.0579365499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356858.051700003445148, 259186.403400000184774 ], [ 356867.229400001466274, 259244.951400000602007 ], [ 356869.98309999704361, 259263.57660000026226 ], [ 356928.370200000703335, 259261.778499998152256 ], [ 356924.043499998748302, 259201.720100000500679 ], [ 356923.323499999940395, 259191.581700000911951 ], [ 356913.653099998831749, 259190.869199998676777 ], [ 356913.743000000715256, 259180.31529999896884 ], [ 356858.067900002002716, 259184.503699999302626 ], [ 356858.051700003445148, 259186.403400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801071700", "MAP": "G9-3067-T80", "PARCEL_NAM": "7-11", "ACRE": null, "LONGITUDE": -64.94781203, "LATITUDE": 18.36192603, "OBJECTID_1": 4019, "PARCEL_NO_": "102801071700", "Tax_Legal_": "ST PETER 7-11 LITTLE NORTHSIDE", "Name": "THORNTON, ROBERT & ROSANNA", "Address": "PO Box 8798", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 76300, "Improved_V": 280300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.849191617, "SHAPE_Area": 2021.0621783700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357019.06360000371933, 259122.493299998342991 ], [ 357007.780599996447563, 259121.767700001597404 ], [ 356991.68129999935627, 259118.469500001519918 ], [ 356984.444300003349781, 259116.088199999183416 ], [ 356976.015699997544289, 259114.623599998652935 ], [ 356975.435300000011921, 259161.243099998682737 ], [ 356992.905500002205372, 259164.075699999928474 ], [ 357021.090499997138977, 259168.528299998492002 ], [ 357019.06360000371933, 259122.493299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011200", "MAP": "D9-7324-T003", "PARCEL_NAM": "8B-2", "ACRE": ".771", "LONGITUDE": -64.94840097, "LATITUDE": 18.36179336, "OBJECTID_1": 3694, "PARCEL_NO_": "102801011200", "Tax_Legal_": "ST PETER 8B-2&8BA-1 No.2 LITTLE NORTHSIDE QUARTER", "Name": "GEORGE, MAXWELL A. & PHYLLIS", "Address": "PO Box 6795", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 130500, "Improved_V": 318100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.80548600100002, "SHAPE_Area": 3671.6958418200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356883.799099996685982, 259098.377000000327826 ], [ 356886.171300001442432, 259103.884899999946356 ], [ 356887.771300002932549, 259105.375599998980761 ], [ 356894.920199997723103, 259118.099700000137091 ], [ 356897.319399997591972, 259120.441399998962879 ], [ 356898.105899997055531, 259122.769900001585484 ], [ 356906.079099997878075, 259133.389800000935793 ], [ 356913.271200001239777, 259141.048000000417233 ], [ 356922.08669999986887, 259147.453000001609325 ], [ 356929.312899999320507, 259151.100699998438358 ], [ 356942.174400001764297, 259155.850099999457598 ], [ 356975.435300000011921, 259161.243099998682737 ], [ 356976.015699997544289, 259114.623599998652935 ], [ 356969.145900003612041, 259113.429900001734495 ], [ 356950.643899999558926, 259108.212200000882149 ], [ 356913.589500002563, 259103.687100000679493 ], [ 356894.308100000023842, 259095.296599999070168 ], [ 356885.490800000727177, 259089.102800000458956 ], [ 356878.280799999833107, 259083.555300001055002 ], [ 356879.054700002074242, 259087.361299999058247 ], [ 356881.410700000822544, 259094.768899999558926 ], [ 356883.799099996685982, 259098.377000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801071500", "MAP": "G9-3068-T80", "PARCEL_NAM": "8-2", "ACRE": ".46", "LONGITUDE": -64.94868327, "LATITUDE": 18.36126134, "OBJECTID_1": 4017, "PARCEL_NO_": "102801071500", "Tax_Legal_": "ST PETER 8-2 LT. NORTHSIDE", "Name": "MESTEMAKER, CAROL", "Address": "PO Box 308028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65500, "Improved_V": 93600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.428686486, "SHAPE_Area": 2360.9600660900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356943.413699999451637, 259067.749400001019239 ], [ 356928.013400003314018, 259064.137200001627207 ], [ 356915.349200002849102, 259061.742300000041723 ], [ 356908.45549999922514, 259058.706500001251698 ], [ 356903.410300001502037, 259055.227299999445677 ], [ 356899.789499998092651, 259046.716899998486042 ], [ 356899.848999999463558, 259039.38230000063777 ], [ 356898.980499997735023, 259032.727899998426437 ], [ 356896.481100000441074, 259028.1233000010252 ], [ 356893.708400003612041, 259028.788400001823902 ], [ 356890.002099998295307, 259030.821400001645088 ], [ 356882.571000002324581, 259037.179299999028444 ], [ 356876.954899996519089, 259047.219399999827147 ], [ 356874.749499998986721, 259063.246899999678135 ], [ 356879.506599999964237, 259073.829500000923872 ], [ 356898.76690000295639, 259087.50959999859333 ], [ 356932.138199999928474, 259095.802799999713898 ], [ 356938.902500003576279, 259097.746899999678135 ], [ 356943.413699999451637, 259067.749400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702030800", "MAP": "D9-7434-T004", "PARCEL_NAM": "3M-1 REM", "ACRE": ".381", "LONGITUDE": -64.9497962, "LATITUDE": 18.36006672, "OBJECTID_1": 3062, "PARCEL_NO_": "102702030800", "Tax_Legal_": "ST PETER 3M-1 LITTLE NORTHSIDE QTR", "Name": "MC ALLISTER, LEAH", "Address": "PO Box 301918", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.817675337, "SHAPE_Area": 1330.0584603 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356776.165200002491474, 258955.969200000166893 ], [ 356796.10639999806881, 258945.920400001108646 ], [ 356817.186499997973442, 258930.661699999123812 ], [ 356825.164099998772144, 258923.165800001472235 ], [ 356837.844999998807907, 258908.016699999570847 ], [ 356809.470399998128414, 258925.04450000077486 ], [ 356766.774599999189377, 258920.929800000041723 ], [ 356766.754600003361702, 258923.2668999992311 ], [ 356765.66780000180006, 258956.1886 ], [ 356776.165200002491474, 258955.969200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702030700", "MAP": "D9-7434-T004", "PARCEL_NAM": "3M", "ACRE": ".680", "LONGITUDE": -64.94969754, "LATITUDE": 18.35974395, "OBJECTID_1": 3061, "PARCEL_NO_": "102702030700", "Tax_Legal_": "ST PETER 3M LITTLE NORTHSIDE", "Name": "MC ALLISTER, LEAH", "Address": "PO Box 301918", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 187900, "Improved_V": 384700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.898526831, "SHAPE_Area": 2994.6242253099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356766.774599999189377, 258920.929800000041723 ], [ 356809.470399998128414, 258925.04450000077486 ], [ 356837.844999998807907, 258908.016699999570847 ], [ 356834.659299999475479, 258903.346599999815226 ], [ 356834.71509999781847, 258896.803100001066923 ], [ 356838.847300000488758, 258885.015700001269579 ], [ 356838.883299998939037, 258880.794100001454353 ], [ 356835.685000002384186, 258877.601599998772144 ], [ 356788.911700002849102, 258878.063099998980761 ], [ 356780.859399996697903, 258876.730599999427795 ], [ 356768.795199997723103, 258873.043299999088049 ], [ 356767.830700002610683, 258891.611699998378754 ], [ 356766.808600001037121, 258916.934500001370907 ], [ 356766.774599999189377, 258920.929800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056900", "MAP": "D9-1549-T80", "PARCEL_NAM": "3M-1A", "ACRE": null, "LONGITUDE": -64.94942367, "LATITUDE": 18.36008932, "OBJECTID_1": 3977, "PARCEL_NO_": "102801056900", "Tax_Legal_": "ST PETER 3M-1A LT. NORTHSIDE", "Name": "HERBERT, VIDA & WINSTON L. JR.", "Address": "PO Box 4924", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81200, "Improved_V": 271400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.696445571, "SHAPE_Area": 1857.93782177 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356837.844999998807907, 258908.016699999570847 ], [ 356825.164099998772144, 258923.165800001472235 ], [ 356817.186499997973442, 258930.661699999123812 ], [ 356796.10639999806881, 258945.920400001108646 ], [ 356776.165200002491474, 258955.969200000166893 ], [ 356816.478100001811981, 258955.126800000667572 ], [ 356854.265000000596046, 258952.528400000184774 ], [ 356854.586800001561642, 258912.82660000026226 ], [ 356847.48480000346899, 258912.317499998956919 ], [ 356842.659500002861023, 258910.800299998372793 ], [ 356837.844999998807907, 258908.016699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057200", "MAP": "D9-2317-T83", "PARCEL_NAM": "3N-1", "ACRE": ".19", "LONGITUDE": -64.94885567, "LATITUDE": 18.36008505, "OBJECTID_1": 3980, "PARCEL_NO_": "102801057200", "Tax_Legal_": "ST PETER 3N-1 LT. NORTHSIDE", "Name": "BERRY, VELMA M. & CYRIL J.", "Address": "7812 St Peter 3p-1", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30900, "Improved_V": 116400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.023979762, "SHAPE_Area": 865.534175592 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356898.816500000655651, 258954.021999999880791 ], [ 356906.910199999809265, 258927.672100000083447 ], [ 356905.418799996376038, 258926.934900000691414 ], [ 356883.083999998867512, 258916.906899999827147 ], [ 356870.422899998724461, 258952.578200001269579 ], [ 356888.263300001621246, 258952.970100000500679 ], [ 356897.127300001680851, 258953.675900001078844 ], [ 356898.816500000655651, 258954.021999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057300", "MAP": "D9-2317-T83", "PARCEL_NAM": "3N-2", "ACRE": ".17", "LONGITUDE": -64.94859711, "LATITUDE": 18.36015713, "OBJECTID_1": 3981, "PARCEL_NO_": "102801057300", "Tax_Legal_": "ST PETER 3N-2 LT. NORTHSIDE", "Name": "JOHN C BERRY & COLLETTE A M BERRY", "Address": "7812 St Peter 3 Pla", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 242700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.32572621600001, "SHAPE_Area": 731.97441102400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356925.105899997055531, 258962.656399998813868 ], [ 356935.293200001120567, 258941.7010000012815 ], [ 356906.910199999809265, 258927.672100000083447 ], [ 356898.816500000655651, 258954.021999999880791 ], [ 356910.006700001657009, 258956.314500000327826 ], [ 356925.105899997055531, 258962.656399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057400", "MAP": "D9-2317-T83", "PARCEL_NAM": "3N-3", "ACRE": ".16", "LONGITUDE": -64.94833444, "LATITUDE": 18.36027603, "OBJECTID_1": 3982, "PARCEL_NO_": "102801057400", "Tax_Legal_": "ST PETER 3N-3 LT. NORTHSIDE", "Name": "TURBE, OMAR & URANIE", "Address": "7907 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21000, "Improved_V": 108400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.62823225, "SHAPE_Area": 679.54213701699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356935.293200001120567, 258941.7010000012815 ], [ 356925.105899997055531, 258962.656399998813868 ], [ 356939.736000001430511, 258968.801199998706579 ], [ 356955.820900000631809, 258973.787999998778105 ], [ 356959.049699999392033, 258973.392200000584126 ], [ 356960.674999997019768, 258971.92790000140667 ], [ 356961.524400003254414, 258966.868599999696016 ], [ 356959.956799998879433, 258961.578400000929832 ], [ 356955.982699997723103, 258954.790899999439716 ], [ 356947.977200001478195, 258947.970400001853704 ], [ 356935.293200001120567, 258941.7010000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801012300", "MAP": "D9-7443-T004", "PARCEL_NAM": "6E REM", "ACRE": ".469", "LONGITUDE": -64.94530152, "LATITUDE": 18.36210182, "OBJECTID_1": 3705, "PARCEL_NO_": "102801012300", "Tax_Legal_": "ST PETER 6E REMAINDER No.2 LITTLE NORTHSIDE QTR.", "Name": "MITCHELL, PHAEDRA", "Address": "PO Box 1627", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 81200, "Improved_V": 24600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.82217143899999, "SHAPE_Area": 2203.0789382100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357243.40259999781847, 259197.367800001055002 ], [ 357277.321599997580051, 259191.312600001692772 ], [ 357276.639399997889996, 259176.741500001400709 ], [ 357279.159000001847744, 259164.940900001674891 ], [ 357284.07599999755621, 259155.69310000166297 ], [ 357297.930799998342991, 259138.496800001710653 ], [ 357247.133100003004074, 259138.081000000238419 ], [ 357243.101499997079372, 259138.048000000417233 ], [ 357242.934299997985363, 259157.678399998694658 ], [ 357242.869599997997284, 259165.277199998497963 ], [ 357243.40259999781847, 259197.367800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019000", "MAP": "D9-7220-T003", "PARCEL_NAM": "6D-1-A", "ACRE": ".014", "LONGITUDE": -64.94573264, "LATITUDE": 18.36239265, "OBJECTID_1": 3767, "PARCEL_NO_": "102801019000", "Tax_Legal_": "6D-1 REM.&6D-2 EST.ST.PETER No.2 LITTLE NORTHSIDE QTR.", "Name": "ASHLEY A POMERANZ 2018 TRUST", "Address": "Raphune Hill Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 280100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.013585800599998, "SHAPE_Area": 94.666617193199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357243.40259999781847, 259197.367800001055002 ], [ 357203.997000001370907, 259192.463899999856949 ], [ 357203.891500003635883, 259197.255499999970198 ], [ 357243.40259999781847, 259197.367800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019400", "MAP": "D9-7737-T006", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94738351, "LATITUDE": 18.36292096, "OBJECTID_1": 3771, "PARCEL_NO_": "102801019400", "Tax_Legal_": "ST PETER 7-2AA 2 LT.NORTHSIDE", "Name": "DAVID JOHN BERRY REVOCABLE TRUST", "Address": "PO Box 304851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034851, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.795944179, "SHAPE_Area": 637.38707419900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357048.10980000346899, 259252.8125 ], [ 357042.986900001764297, 259212.6233000010252 ], [ 357038.090700000524521, 259212.675200000405312 ], [ 357037.322400003671646, 259286.090799998492002 ], [ 357046.54110000282526, 259286.513099998235703 ], [ 357048.10980000346899, 259252.8125 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017400", "MAP": "D9-7504-T004", "PARCEL_NAM": "17-5F-1", "ACRE": "0.50", "LONGITUDE": -64.945244, "LATITUDE": 18.37000682, "OBJECTID_1": 773, "PARCEL_NO_": "101203017400", "Tax_Legal_": "17-5F ESTATE ST.PETER No.2 LITTLE NORTHSIDE QUARTER", "Name": "4-C0CO-NUTS, LLC", "Address": "8352 Corona Loop NE", "City": "Albuquerque", "State": "New Mexico", "Zip": 87112, "Country": "United States", "Land_Value": 255400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.920129519, "SHAPE_Area": 2389.7512254399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357244.461999997496605, 260003.932900000363588 ], [ 357248.722800001502037, 260060.645599998533726 ], [ 357267.083800002932549, 260090.976500000804663 ], [ 357270.483800001442432, 260088.615299999713898 ], [ 357279.392800003290176, 260084.044199999421835 ], [ 357270.297600001096725, 259992.936599999666214 ], [ 357261.224899999797344, 259993.4037000015378 ], [ 357254.818800002336502, 259993.505899999290705 ], [ 357250.64019999653101, 259995.442299999296665 ], [ 357247.647699996829033, 259997.782400000840425 ], [ 357245.23870000243187, 260001.506499998271465 ], [ 357244.461999997496605, 260003.932900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017400", "MAP": "D9-7753-T006", "PARCEL_NAM": "17-5F REM", "ACRE": ".91", "LONGITUDE": -64.94572707, "LATITUDE": 18.37062063, "OBJECTID_1": 773, "PARCEL_NO_": "101203017400", "Tax_Legal_": "17-5F ESTATE ST.PETER No.2 LITTLE NORTHSIDE QUARTER", "Name": "4-C0CO-NUTS, LLC", "Address": "8352 Corona Loop NE", "City": "Albuquerque", "State": "New Mexico", "Zip": 87112, "Country": "United States", "Land_Value": 255400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.29072594, "SHAPE_Area": 3425.19270353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357202.035800002515316, 260073.270599998533726 ], [ 357163.010300002992153, 260098.632399998605251 ], [ 357220.795299999415874, 260147.314800001680851 ], [ 357229.72410000115633, 260140.421799998730421 ], [ 357234.677000001072884, 260126.952399998903275 ], [ 357242.855200000107288, 260113.509300000965595 ], [ 357252.343699999153614, 260102.800599999725819 ], [ 357211.375699996948242, 260072.066100001335144 ], [ 357207.752099998295307, 260077.257699999958277 ], [ 357202.035800002515316, 260073.270599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017400", "MAP": "D9-7504-T004", "PARCEL_NAM": "17-5F-2", "ACRE": ".51", "LONGITUDE": -64.94545079, "LATITUDE": 18.37024801, "OBJECTID_1": 773, "PARCEL_NO_": "101203017400", "Tax_Legal_": "17-5F ESTATE ST.PETER No.2 LITTLE NORTHSIDE QUARTER", "Name": "4-C0CO-NUTS, LLC", "Address": "8352 Corona Loop NE", "City": "Albuquerque", "State": "New Mexico", "Zip": 87112, "Country": "United States", "Land_Value": 255400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.73951942100001, "SHAPE_Area": 2039.67887587 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357267.083800002932549, 260090.976500000804663 ], [ 357248.722800001502037, 260060.645599998533726 ], [ 357244.461999997496605, 260003.932900000363588 ], [ 357239.136799998581409, 260020.569400001317263 ], [ 357225.803099997341633, 260051.395700000226498 ], [ 357211.375699996948242, 260072.066100001335144 ], [ 357252.343699999153614, 260102.800599999725819 ], [ 357253.439800001680851, 260101.5636 ], [ 357262.37219999730587, 260094.248500000685453 ], [ 357267.083800002932549, 260090.976500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011300", "MAP": "C9-153-T72", "PARCEL_NAM": "9L", "ACRE": null, "LONGITUDE": -64.94820595, "LATITUDE": 18.36309512, "OBJECTID_1": 3695, "PARCEL_NO_": "102801011300", "Tax_Legal_": "ST PETER 9L LITTLE NORTHSIDE", "Name": "MAUN, TONI", "Address": "355 Rose Ln", "City": "Mattituck", "State": "New York", "Zip": 11952, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.262618804, "SHAPE_Area": 951.53693412899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356980.549800001084805, 259282.853700000792742 ], [ 356979.852200001478195, 259262.472199998795986 ], [ 356949.39639999717474, 259262.061799999326468 ], [ 356928.370200000703335, 259261.778499998152256 ], [ 356927.429499998688698, 259277.770399998873472 ], [ 356980.549800001084805, 259282.853700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801017600", "MAP": "D9-7464-T004", "PARCEL_NAM": "8B-1-1", "ACRE": ".500", "LONGITUDE": -64.94822847, "LATITUDE": 18.36281936, "OBJECTID_1": 3753, "PARCEL_NO_": "102801017600", "Tax_Legal_": "ST PETER 8B-1-1 No.2 LT. NORTHSIDE QTR.", "Name": "CLAUSE, MICHAEL", "Address": "264 Sonoma Blvd", "City": "Vallejo", "State": "California", "Zip": 94590, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.666326024, "SHAPE_Area": 2218.7429988399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356979.852200001478195, 259262.472199998795986 ], [ 356978.403999999165535, 259220.157499998807907 ], [ 356925.299999997019768, 259219.162099998444319 ], [ 356928.370200000703335, 259261.778499998152256 ], [ 356979.852200001478195, 259262.472199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011800", "MAP": "D9-7464-T004", "PARCEL_NAM": "8B-1 REM", "ACRE": ".639", "LONGITUDE": -64.94826495, "LATITUDE": 18.36236922, "OBJECTID_1": 3700, "PARCEL_NO_": "102801011800", "Tax_Legal_": "ST PETER 8B-1 REMAINDER No.2 LITTLE NORTHSIDE QTR.", "Name": "MARIAN C LAPLACE", "Address": "1451 Disston Ave", "City": "Clermont", "State": "Florida", "Zip": 347113100, "Country": "United States", "Land_Value": 97200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.30433075, "SHAPE_Area": 3083.1491597999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356978.403999999165535, 259220.157499998807907 ], [ 356976.60980000346899, 259167.734200000762939 ], [ 356942.926700003445148, 259162.188999999314547 ], [ 356932.468099996447563, 259159.359200000762939 ], [ 356926.040899999439716, 259156.562399998307228 ], [ 356921.998599998652935, 259157.795899998396635 ], [ 356921.815200001001358, 259179.325899999588728 ], [ 356923.323499999940395, 259191.581700000911951 ], [ 356924.043499998748302, 259201.720100000500679 ], [ 356925.299999997019768, 259219.162099998444319 ], [ 356978.403999999165535, 259220.157499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801071800", "MAP": "D9-4342-T88", "PARCEL_NAM": "7-14", "ACRE": ".654", "LONGITUDE": -64.94776086, "LATITUDE": 18.362376, "OBJECTID_1": 4020, "PARCEL_NO_": "102801071800", "Tax_Legal_": "ST PETER 7-14 LT. MORTHSIDE QTR.", "Name": "TAYLOR, LOUIS & MICHELE", "Address": "GERS COMPLEX-3rd FLOOR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83500, "Improved_V": 321100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.87401181199999, "SHAPE_Area": 2152.2535552700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356978.16499999910593, 259213.174600001424551 ], [ 356994.101000003516674, 259213.059200000017881 ], [ 357028.777800001204014, 259212.709800001233816 ], [ 357030.723099999129772, 259173.67339999973774 ], [ 357019.425700001418591, 259174.636399999260902 ], [ 356992.851599998772144, 259170.408100001513958 ], [ 356976.60980000346899, 259167.734200000762939 ], [ 356978.16499999910593, 259213.174600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801015500", "MAP": "G9-2415-T74", "PARCEL_NAM": "9N", "ACRE": null, "LONGITUDE": -64.94809204000001, "LATITUDE": 18.36331843, "OBJECTID_1": 3736, "PARCEL_NO_": "102801015500", "Tax_Legal_": "ST PETER 9N GR NORTHSIDE", "Name": "DAVID JOHN BERRY REVOCABLE TRUST", "Address": "PO Box 304851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034851, "Country": "United States", "Land_Value": 76300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.543402004, "SHAPE_Area": 1574.58716433 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357006.13459999859333, 259291.974899999797344 ], [ 356980.549800001084805, 259282.853700000792742 ], [ 356937.342799998819828, 259278.719000000506639 ], [ 356949.937899999320507, 259318.799800001084805 ], [ 356990.142700001597404, 259304.423500001430511 ], [ 357006.13459999859333, 259291.974899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801015800", "MAP": "D9-7611-T005", "PARCEL_NAM": "7-2B", "ACRE": ".504", "LONGITUDE": -64.94757601000001, "LATITUDE": 18.36287827, "OBJECTID_1": 3737, "PARCEL_NO_": "102801015800", "Tax_Legal_": "ST PETER 7-2B LITTLE NORTHSIDE", "Name": "BERRY, MICHAEL", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102300, "Improved_V": 224800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.10367657, "SHAPE_Area": 2300.41331008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357007.829800002276897, 259212.920899998396635 ], [ 357002.300399996340275, 259229.694200001657009 ], [ 357010.331900000572205, 259284.854600001126528 ], [ 357037.322400003671646, 259286.090799998492002 ], [ 357038.090700000524521, 259212.675200000405312 ], [ 357028.777800001204014, 259212.709800001233816 ], [ 357007.829800002276897, 259212.920899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95050565, "LATITUDE": 18.35850207, "OBJECTID_1": 3065, "PARCEL_NO_": "102702031200", "Tax_Legal_": "ST PETER 3JC LT. NORTHSIDE", "Name": "BRYAN, RODNEY", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 161200, "Improved_V": 379600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.704286217, "SHAPE_Area": 3148.3100432699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356763.344800002872944, 258771.950199998915195 ], [ 356759.145199999213219, 258767.159800000488758 ], [ 356741.241099998354912, 258751.4391999989748 ], [ 356733.569200001657009, 258744.549400001764297 ], [ 356720.943199999630451, 258739.753199998289347 ], [ 356703.388899996876717, 258733.85020000115037 ], [ 356680.7804000005126, 258728.270500000566244 ], [ 356680.92620000243187, 258775.432199999690056 ], [ 356751.771999999880791, 258788.888799998909235 ], [ 356756.678300000727177, 258780.907400000840425 ], [ 356759.950300000607967, 258775.445700000971556 ], [ 356763.344800002872944, 258771.950199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702036500", "MAP": "D9-8238-T009", "PARCEL_NAM": "3CD-B", "ACRE": "0.51", "LONGITUDE": -64.95051063, "LATITUDE": 18.35802865, "OBJECTID_1": 3096, "PARCEL_NO_": "102702036500", "Tax_Legal_": "3CD-B ESTATE ST. PETER No.2 LITTLE NORTHSIDE QTR", "Name": "POTTER, MILTON & PAULETTE VENZEN-POTTER", "Address": "7630 Estate Tutu", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.213892445, "SHAPE_Area": 2205.2827429099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356753.767599999904633, 258689.024999998509884 ], [ 356706.147699996829033, 258689.065499998629093 ], [ 356685.797700002789497, 258696.510999999940395 ], [ 356685.527800001204014, 258708.553199999034405 ], [ 356687.148400001227856, 258724.757399998605251 ], [ 356707.293999999761581, 258728.761100001633167 ], [ 356726.872400000691414, 258736.042399998754263 ], [ 356741.655199997127056, 258710.199499998241663 ], [ 356753.767599999904633, 258689.024999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019400", "MAP": "D9-2829-T84", "PARCEL_NAM": "7-2AA", "ACRE": null, "LONGITUDE": -64.94715404, "LATITUDE": 18.36273721, "OBJECTID_1": 3771, "PARCEL_NO_": "102801019400", "Tax_Legal_": "ST PETER 7-2AA 2 LT.NORTHSIDE", "Name": "DAVID JOHN BERRY REVOCABLE TRUST", "Address": "PO Box 304851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034851, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.60234920400001, "SHAPE_Area": 1700.68276335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357042.986900001764297, 259212.6233000010252 ], [ 357048.10980000346899, 259252.8125 ], [ 357068.753600001335144, 259252.933600001037121 ], [ 357089.717699997127056, 259253.105200000107288 ], [ 357085.228699997067451, 259212.116300001740456 ], [ 357077.163699999451637, 259212.261399999260902 ], [ 357042.986900001764297, 259212.6233000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801010800", "MAP": "D9-4911-T90", "PARCEL_NAM": "20 REM", "ACRE": "1.12", "LONGITUDE": -64.94681452, "LATITUDE": 18.36310143, "OBJECTID_1": 3690, "PARCEL_NO_": "102801010800", "Tax_Legal_": "20 ST.PETER No.2 LITTLE NORTHSIDE QTR", "Name": "TROMBEN, ANDREA E.", "Address": "PO Box 6035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 142000, "Improved_V": 100800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.43670464299998, "SHAPE_Area": 4426.7317763900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357158.887599997222424, 259291.932000000029802 ], [ 357159.712200000882149, 259256.760999999940395 ], [ 357148.551500000059605, 259256.753100000321865 ], [ 357148.580300003290176, 259253.375900000333786 ], [ 357089.717699997127056, 259253.105200000107288 ], [ 357068.753600001335144, 259252.933600001037121 ], [ 357048.10980000346899, 259252.8125 ], [ 357045.916199997067451, 259294.00899999961257 ], [ 357071.477399997413158, 259293.40089999884367 ], [ 357158.887599997222424, 259291.932000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019900", "MAP": "D9-4911-T90", "PARCEL_NAM": "20-1", "ACRE": ".54", "LONGITUDE": -64.94555212, "LATITUDE": 18.36309154, "OBJECTID_1": 3776, "PARCEL_NO_": "102801019900", "Tax_Legal_": "20-1 ST PETER LITTLE NORTHSIDE QUARTER", "Name": "DARASH, CRAIG & SARAH M", "Address": "7824 St Peter Mtn", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70100, "Improved_V": 230100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.29508547500001, "SHAPE_Area": 1732.74734027 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357210.379299998283386, 259256.803700000047684 ], [ 357209.064300000667572, 259290.853799998760223 ], [ 357234.756700001657009, 259290.2314000017941 ], [ 357259.152699999511242, 259289.836300000548363 ], [ 357258.786200001835823, 259284.675299998372793 ], [ 357259.619499996304512, 259281.515700001269579 ], [ 357260.492299996316433, 259273.712400000542402 ], [ 357262.979599997401237, 259265.711199998855591 ], [ 357267.08669999986887, 259256.878899998962879 ], [ 357234.832400001585484, 259256.8260000012815 ], [ 357210.379299998283386, 259256.803700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801015200", "MAP": "D9-4911-T90", "PARCEL_NAM": "20-2", "ACRE": ".51", "LONGITUDE": -64.94603625000001, "LATITUDE": 18.36310321, "OBJECTID_1": 3733, "PARCEL_NO_": "102801015200", "Tax_Legal_": "20-2 ST PETER LITTLE NORTHSIDE QUARTER", "Name": "HENRY, CAROLYN N. & ORLANDO", "Address": "8345 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 82300, "Improved_V": 237700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.11187016299999, "SHAPE_Area": 1746.80851996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357209.064300000667572, 259290.853799998760223 ], [ 357210.379299998283386, 259256.803700000047684 ], [ 357176.774300001561642, 259256.772999998182058 ], [ 357159.712200000882149, 259256.760999999940395 ], [ 357158.887599997222424, 259291.932000000029802 ], [ 357177.371899999678135, 259291.621399998664856 ], [ 357209.064300000667572, 259290.853799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017400", "MAP": "D9-7753-T006", "PARCEL_NAM": "17-5F REM", "ACRE": ".646", "LONGITUDE": -64.94596966, "LATITUDE": 18.37017161, "OBJECTID_1": 773, "PARCEL_NO_": "101203017400", "Tax_Legal_": "17-5F ESTATE ST.PETER No.2 LITTLE NORTHSIDE QUARTER", "Name": "4-C0CO-NUTS, LLC", "Address": "8352 Corona Loop NE", "City": "Albuquerque", "State": "New Mexico", "Zip": 87112, "Country": "United States", "Land_Value": 255400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.00741096500002, "SHAPE_Area": 3577.2915619800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357163.010300002992153, 260098.632399998605251 ], [ 357202.035800002515316, 260073.270599998533726 ], [ 357202.050200000405312, 260071.497400000691414 ], [ 357201.076700001955032, 260069.32209999859333 ], [ 357198.124300003051758, 260066.736600000411272 ], [ 357201.326200000941753, 260063.019000001251698 ], [ 357204.28660000115633, 260064.619300000369549 ], [ 357207.058499999344349, 260065.035900000482798 ], [ 357213.061099998652935, 260058.188400000333786 ], [ 357219.092500001192093, 260047.79450000077486 ], [ 357229.215499997138977, 260019.059999998658895 ], [ 357214.423000000417233, 260010.164299998432398 ], [ 357174.76799999922514, 260041.875700000673532 ], [ 357134.173799999058247, 260074.338199999183416 ], [ 357163.010300002992153, 260098.632399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801071600", "MAP": "G9-3068-T80", "PARCEL_NAM": "8-1", "ACRE": ".46", "LONGITUDE": -64.94927047, "LATITUDE": 18.36130888, "OBJECTID_1": 4018, "PARCEL_NO_": "102801071600", "Tax_Legal_": "ST PETER 8-1 LT. NORTHSIDE", "Name": "RAYMOND L HYNDMAN & ANGELA B HYNDMAN REV LIV TR", "Address": "355 Falcon Ridge Dr", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 65500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.163661139, "SHAPE_Area": 2303.7084395799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356822.526699997484684, 259061.872600000351667 ], [ 356811.12950000166893, 259093.764499999582767 ], [ 356830.618400000035763, 259093.719900000840425 ], [ 356845.151799999177456, 259091.516800001263618 ], [ 356876.551299996674061, 259097.262200001627207 ], [ 356873.374600000679493, 259091.536699999123812 ], [ 356871.045500002801418, 259080.962999999523163 ], [ 356869.513800002634525, 259071.451200000941753 ], [ 356869.58389999717474, 259063.219099998474121 ], [ 356869.115299999713898, 259055.202799998223782 ], [ 356852.551100000739098, 259050.037399999797344 ], [ 356829.342600002884865, 259042.800000000745058 ], [ 356822.526699997484684, 259061.872600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801013200", "MAP": "G9-3068-T80", "PARCEL_NAM": "8-3", "ACRE": ".46", "LONGITUDE": -64.94915415, "LATITUDE": 18.36090454, "OBJECTID_1": 3714, "PARCEL_NO_": "102801013200", "Tax_Legal_": "ST.PETER ESTATE 8-3 No.2 LITTLE NORTHSIDE QTR", "Name": "QUERRARD, ALEXANDER N N.", "Address": "PO Box 305072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74700, "Improved_V": 228100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.41822709900001, "SHAPE_Area": 1826.9951535499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356890.121200002729893, 259018.846500001847744 ], [ 356844.467399999499321, 259000.477200001478195 ], [ 356829.342600002884865, 259042.800000000745058 ], [ 356852.551100000739098, 259050.037399999797344 ], [ 356869.115299999713898, 259055.202799998223782 ], [ 356868.8800999969244, 259051.181099999696016 ], [ 356873.02139999717474, 259038.338199999183416 ], [ 356885.250900000333786, 259022.606300000101328 ], [ 356890.121200002729893, 259018.846500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801070100", "MAP": "G9-3069-T80", "PARCEL_NAM": "8-4", "ACRE": ".52", "LONGITUDE": -64.94896948, "LATITUDE": 18.36050602, "OBJECTID_1": 4004, "PARCEL_NO_": "102801070100", "Tax_Legal_": "ST PETER 8-4 LT. NORTHSIDE", "Name": "ROEBUCK, VALENTINE", "Address": "4007 S Lynwood Ave", "City": "Tampa", "State": "Florida", "Zip": 33611, "Country": "United States", "Land_Value": 83500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.13494073300001, "SHAPE_Area": 2424.2174731499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356882.368299998342991, 259015.727000001817942 ], [ 356913.489799998700619, 258966.942499998956919 ], [ 356905.771099999547005, 258964.871500000357628 ], [ 356893.038199998438358, 258960.39750000089407 ], [ 356867.239799998700619, 258959.76410000026226 ], [ 356858.838799998164177, 258960.262600000947714 ], [ 356844.467399999499321, 259000.477200001478195 ], [ 356882.368299998342991, 259015.727000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801070200", "MAP": "G9-3069-T80", "PARCEL_NAM": "8-5", "ACRE": ".47", "LONGITUDE": -64.94856752, "LATITUDE": 18.36060943, "OBJECTID_1": 4005, "PARCEL_NO_": "102801070200", "Tax_Legal_": "ST PETER 8-5 LT. NORTHSIDE", "Name": "ROEBUCK, VALENTINE", "Address": "4007 S Lynwood Ave", "City": "Tampa", "State": "Florida", "Zip": 33611, "Country": "United States", "Land_Value": 76300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.75946342899999, "SHAPE_Area": 2277.87578794 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356891.096199996769428, 259017.981199998408556 ], [ 356891.554499998688698, 259018.173099998384714 ], [ 356894.978799998760223, 259016.5641999989748 ], [ 356899.813100002706051, 259017.026000000536442 ], [ 356903.004199996590614, 259021.062899999320507 ], [ 356902.948499999940395, 259027.606300000101328 ], [ 356905.363799996674061, 259028.048300001770258 ], [ 356916.722300000488758, 259019.908599998801947 ], [ 356942.682499997317791, 259001.544799998402596 ], [ 356955.698600001633167, 258988.141399998217821 ], [ 356957.356200002133846, 258982.877599999308586 ], [ 356955.75620000064373, 258981.386799998581409 ], [ 356942.082999996840954, 258977.264199998229742 ], [ 356938.266500003635883, 258976.120000001043081 ], [ 356925.637900002300739, 258970.201799999922514 ], [ 356913.489799998700619, 258966.942499998956919 ], [ 356882.368299998342991, 259015.727000001817942 ], [ 356890.121200002729893, 259018.846500001847744 ], [ 356891.096199996769428, 259017.981199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702022000", "MAP": null, "PARCEL_NAM": "8A-1", "ACRE": null, "LONGITUDE": -64.95064586, "LATITUDE": 18.36042401, "OBJECTID_1": 3021, "PARCEL_NO_": "102702022000", "Tax_Legal_": "ST PETER 8A-1 LITTLE NORTHSIDE QTR", "Name": "ANNICK M. GALTES REVOC FAM TR", "Address": "7826 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43400, "Improved_V": 227600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.414424572, "SHAPE_Area": 762.19178087199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356677.231499999761581, 258982.115600001066923 ], [ 356723.522699996829033, 258981.304699998348951 ], [ 356723.658600002527237, 258965.344000000506639 ], [ 356693.816100001335144, 258966.155200000852346 ], [ 356675.283500000834465, 258964.52589999884367 ], [ 356677.231499999761581, 258982.115600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702022600", "MAP": "F9-3620-T78", "PARCEL_NAM": "8A-4", "ACRE": null, "LONGITUDE": -64.95023697000001, "LATITUDE": 18.36041402, "OBJECTID_1": 3027, "PARCEL_NO_": "102702022600", "Tax_Legal_": "ST PETER 8A-4 LT.NORTHSIDE QTR", "Name": "LEGOFF, HEIDI A.", "Address": "PO Box 237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26000, "Improved_V": 245400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.089786969, "SHAPE_Area": 620.48169279700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356723.522699996829033, 258981.304699998348951 ], [ 356761.427699998021126, 258980.640700001269579 ], [ 356762.374200001358986, 258964.183200001716614 ], [ 356723.658600002527237, 258965.344000000506639 ], [ 356723.522699996829033, 258981.304699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702022100", "MAP": "F9-2319-T68", "PARCEL_NAM": "8A-2", "ACRE": ".40", "LONGITUDE": -64.94958233, "LATITUDE": 18.36076786, "OBJECTID_1": 3022, "PARCEL_NO_": "102702022100", "Tax_Legal_": "ST PETER 8A-2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, ADOLPH & ZAIDA", "Address": "ST PETER 8A-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65000, "Improved_V": 150400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.998182009, "SHAPE_Area": 2229.9687125099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356768.963299997150898, 259017.524700000882149 ], [ 356788.111599996685982, 259040.77140000090003 ], [ 356789.319899998605251, 259042.144799999892712 ], [ 356838.434799998998642, 259017.357999999076128 ], [ 356844.467399999499321, 259000.477200001478195 ], [ 356852.464299999177456, 258978.100000001490116 ], [ 356822.453100003302097, 258992.320099998265505 ], [ 356784.690399996936321, 259009.672899998724461 ], [ 356768.963299997150898, 259017.524700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702022700", "MAP": "F9-3620-T78", "PARCEL_NAM": "8A-5", "ACRE": null, "LONGITUDE": -64.94987456, "LATITUDE": 18.36040343, "OBJECTID_1": 3028, "PARCEL_NO_": "102702022700", "Tax_Legal_": "ST PETER 8A-5 LT.NORTHSIDE", "Name": "CHRISTIAN, KAREEM & KISHA CHRISTIAN-BUTCHER", "Address": "PO Box 2306", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.107963107, "SHAPE_Area": 635.74291718699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356761.427699998021126, 258980.640700001269579 ], [ 356795.833999998867512, 258979.934900000691414 ], [ 356800.004299998283386, 258979.968699999153614 ], [ 356800.593199998140335, 258963.172100000083447 ], [ 356762.374200001358986, 258964.183200001716614 ], [ 356761.427699998021126, 258980.640700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702023800", "MAP": "D9-5256-T92", "PARCEL_NAM": "8A-8", "ACRE": ".70", "LONGITUDE": -64.94971699, "LATITUDE": 18.36116065, "OBJECTID_1": 3036, "PARCEL_NO_": "102702023800", "Tax_Legal_": "8A-8 & 8A-8-A ST.PETER NO.2 LT NORTHSIDE QTR", "Name": "VINCENT, LEO BRYAN", "Address": "8A St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.75044832899999, "SHAPE_Area": 3299.8215329099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356752.913099996745586, 259025.397300001233816 ], [ 356780.563000001013279, 259063.133600000292063 ], [ 356773.629699997603893, 259093.85020000115037 ], [ 356811.12950000166893, 259093.764499999582767 ], [ 356822.526699997484684, 259061.872600000351667 ], [ 356829.342600002884865, 259042.800000000745058 ], [ 356838.434799998998642, 259017.357999999076128 ], [ 356789.319899998605251, 259042.144799999892712 ], [ 356788.111599996685982, 259040.77140000090003 ], [ 356768.963299997150898, 259017.524700000882149 ], [ 356756.709100000560284, 259023.642499998211861 ], [ 356752.913099996745586, 259025.397300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702023700", "MAP": "D9-5256-T92", "PARCEL_NAM": "8A-7", "ACRE": ".70", "LONGITUDE": -64.9501644, "LATITUDE": 18.3612374, "OBJECTID_1": 3035, "PARCEL_NO_": "102702023700", "Tax_Legal_": "8A-7 ST.PETER NO.2 LT NORTHSIDE QTR", "Name": "BRYAN, MARK MICHAEL", "Address": "8A St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.83032404599999, "SHAPE_Area": 2989.7418552899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356730.832299999892712, 259035.604499999433756 ], [ 356721.677799999713898, 259047.31870000064373 ], [ 356728.377400003373623, 259093.953699998557568 ], [ 356773.629699997603893, 259093.85020000115037 ], [ 356780.563000001013279, 259063.133600000292063 ], [ 356752.913099996745586, 259025.397300001233816 ], [ 356742.722599998116493, 259030.107999999076128 ], [ 356730.832299999892712, 259035.604499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702021900", "MAP": "D9-8112-T008", "PARCEL_NAM": "8A-9", "ACRE": ".309", "LONGITUDE": -64.94980575, "LATITUDE": 18.36069595, "OBJECTID_1": 3020, "PARCEL_NO_": "102702021900", "Tax_Legal_": "8A REM ST.PETER NO.2 LT NORTHSIDE QTR", "Name": "LEGOFF, HEIDI AGNES", "Address": "PO Box 237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 130300, "Improved_V": 217400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.75795309, "SHAPE_Area": 969.63273679199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356729.163000002503395, 259026.881900001317263 ], [ 356730.832299999892712, 259035.604499999433756 ], [ 356742.722599998116493, 259030.107999999076128 ], [ 356756.709100000560284, 259023.642499998211861 ], [ 356784.690399996936321, 259009.672899998724461 ], [ 356822.453100003302097, 258992.320099998265505 ], [ 356852.464299999177456, 258978.100000001490116 ], [ 356855.742299996316433, 258968.927499998360872 ], [ 356826.706000000238419, 258983.352000001817942 ], [ 356743.141000002622604, 259021.455099999904633 ], [ 356737.833400003612041, 259023.515700001269579 ], [ 356736.888800002634525, 259022.984099999070168 ], [ 356734.807099997997284, 259022.552700001746416 ], [ 356733.36259999871254, 259020.675599999725819 ], [ 356730.218099996447563, 259022.722800001502037 ], [ 356729.791000001132488, 259023.962999999523163 ], [ 356729.163000002503395, 259026.881900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702023600", "MAP": "D9-5256-T92", "PARCEL_NAM": "8A-6", "ACRE": ".50", "LONGITUDE": -64.95060317, "LATITUDE": 18.36121964, "OBJECTID_1": 3034, "PARCEL_NO_": "102702023600", "Tax_Legal_": "8A-6 ST.PETER NO.2 LT NORTHSIDE QTR", "Name": "BRYAN, JOHN LAWRENCE", "Address": "8A St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.38613636, "SHAPE_Area": 2884.0151869000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356723.788599997758865, 259029.026799999177456 ], [ 356710.542099997401237, 259029.727899998426437 ], [ 356679.320699997246265, 259031.380199998617172 ], [ 356681.978799998760223, 259094.059799998998642 ], [ 356686.844099998474121, 259094.048599999397993 ], [ 356728.377400003373623, 259093.953699998557568 ], [ 356721.677799999713898, 259047.31870000064373 ], [ 356730.832299999892712, 259035.604499999433756 ], [ 356729.515500001609325, 259028.723700001835823 ], [ 356723.788599997758865, 259029.026799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702022500", "MAP": "F9-3621-T78", "PARCEL_NAM": "8A-3", "ACRE": null, "LONGITUDE": -64.95066856, "LATITUDE": 18.36073186, "OBJECTID_1": 3026, "PARCEL_NO_": "102702022500", "Tax_Legal_": "ST PETER 8A-3 LT.NORTHSIDE QTR", "Name": "GREAUX, MARIA SIMONE", "Address": "2025 Ivy Ln", "City": "Cumming", "State": "Georgia", "Zip": 30041, "Country": "United States", "Land_Value": 76500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.009725645, "SHAPE_Area": 1737.5770054100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356717.263599999248981, 259029.372099999338388 ], [ 356716.237899996340275, 258988.150499999523163 ], [ 356677.231499999761581, 258982.115600001066923 ], [ 356679.128899998962879, 259026.856499999761581 ], [ 356679.320699997246265, 259031.380199998617172 ], [ 356710.542099997401237, 259029.727899998426437 ], [ 356717.263599999248981, 259029.372099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702021900", "MAP": "D9-8112-T008", "PARCEL_NAM": "8A", "ACRE": ".88", "LONGITUDE": -64.94997775, "LATITUDE": 18.36057754, "OBJECTID_1": 3020, "PARCEL_NO_": "102702021900", "Tax_Legal_": "8A REM ST.PETER NO.2 LT NORTHSIDE QTR", "Name": "LEGOFF, HEIDI AGNES", "Address": "PO Box 237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 130300, "Improved_V": 217400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 445.56066635299999, "SHAPE_Area": 4052.5534949900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356723.788599997758865, 259029.026799999177456 ], [ 356729.515500001609325, 259028.723700001835823 ], [ 356729.163000002503395, 259026.881900001317263 ], [ 356729.791000001132488, 259023.962999999523163 ], [ 356730.218099996447563, 259022.722800001502037 ], [ 356733.36259999871254, 259020.675599999725819 ], [ 356734.807099997997284, 259022.552700001746416 ], [ 356736.888800002634525, 259022.984099999070168 ], [ 356737.833400003612041, 259023.515700001269579 ], [ 356743.141000002622604, 259021.455099999904633 ], [ 356826.706000000238419, 258983.352000001817942 ], [ 356855.742299996316433, 258968.927499998360872 ], [ 356858.838799998164177, 258960.262600000947714 ], [ 356817.219700001180172, 258962.732200000435114 ], [ 356800.593199998140335, 258963.172100000083447 ], [ 356800.004299998283386, 258979.968699999153614 ], [ 356795.833999998867512, 258979.934900000691414 ], [ 356761.427699998021126, 258980.640700001269579 ], [ 356723.522699996829033, 258981.304699998348951 ], [ 356677.231499999761581, 258982.115600001066923 ], [ 356716.237899996340275, 258988.150499999523163 ], [ 356717.263599999248981, 259029.372099999338388 ], [ 356723.788599997758865, 259029.026799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801010400", "MAP": "D9-8280-T009", "PARCEL_NAM": "22C", "ACRE": ".23", "LONGITUDE": -64.9464411, "LATITUDE": 18.36387572, "OBJECTID_1": 3686, "PARCEL_NO_": "102801010400", "Tax_Legal_": "ST PETER 22 LITTLE NORTHSIDE QTR", "Name": "TODMAN, JULIE SMITH & BYRON", "Address": "PO Box 11011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 261100, "Improved_V": 218200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.664257605, "SHAPE_Area": 758.43358426299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357154.243199996650219, 259372.682000000029802 ], [ 357155.047700002789497, 259346.098900001496077 ], [ 357141.343999996781349, 259345.564500000327826 ], [ 357128.740800000727177, 259342.81700000166893 ], [ 357127.039499998092651, 259373.991099998354912 ], [ 357154.243199996650219, 259372.682000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801010400", "MAP": "D9-8280-T009", "PARCEL_NAM": "22D", "ACRE": ".24", "LONGITUDE": -64.94620702, "LATITUDE": 18.3638522, "OBJECTID_1": 3686, "PARCEL_NO_": "102801010400", "Tax_Legal_": "ST PETER 22 LITTLE NORTHSIDE QTR", "Name": "TODMAN, JULIE SMITH & BYRON", "Address": "PO Box 11011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 261100, "Improved_V": 218200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.12104116899999, "SHAPE_Area": 582.53705268099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357175.980800002813339, 259368.065400000661612 ], [ 357176.779100000858307, 259338.877399999648333 ], [ 357172.019799999892712, 259341.593699999153614 ], [ 357165.547700002789497, 259344.073899999260902 ], [ 357155.047700002789497, 259346.098900001496077 ], [ 357154.243199996650219, 259372.682000000029802 ], [ 357175.980800002813339, 259368.065400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801010400", "MAP": "D9-8280-T009", "PARCEL_NAM": "22E", "ACRE": ".28", "LONGITUDE": -64.94596392, "LATITUDE": 18.36377449, "OBJECTID_1": 3686, "PARCEL_NO_": "102801010400", "Tax_Legal_": "ST PETER 22 LITTLE NORTHSIDE QTR", "Name": "TODMAN, JULIE SMITH & BYRON", "Address": "PO Box 11011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 261100, "Improved_V": 218200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.132840852, "SHAPE_Area": 971.59678769499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357176.779100000858307, 259338.877399999648333 ], [ 357175.980800002813339, 259368.065400000661612 ], [ 357177.371500000357628, 259367.770100001245737 ], [ 357206.536399997770786, 259360.561599999666214 ], [ 357208.181599996984005, 259356.244100000709295 ], [ 357206.691299997270107, 259341.877500001341105 ], [ 357200.354000002145767, 259328.526700001209974 ], [ 357190.669299997389317, 259329.502900000661612 ], [ 357185.811700001358986, 259331.785199999809265 ], [ 357179.312600001692772, 259337.431499999016523 ], [ 357176.779100000858307, 259338.877399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010200", "MAP": "D9-8343-T009", "PARCEL_NAM": "17-8-B", "ACRE": "2.62", "LONGITUDE": -64.94697744, "LATITUDE": 18.37193815, "OBJECTID_1": 702, "PARCEL_NO_": "101203010200", "Tax_Legal_": "17-8-B ST PETER NO.2 LT NORTHSIDE QTR", "Name": "STARSHAK, DAVID J. & CHRISTINE M.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 278600, "Improved_V": 280600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 551.97905871, "SHAPE_Area": 10830.7083484 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357076.065399996936321, 260152.168499998748302 ], [ 357053.597999997437, 260161.493900001049042 ], [ 357053.759199999272823, 260161.561500001698732 ], [ 357064.325699999928474, 260168.912099998444319 ], [ 357070.652900002896786, 260179.949099998921156 ], [ 357063.866300001740456, 260190.963899999856949 ], [ 357051.462099999189377, 260202.449200000613928 ], [ 357051.462099999189377, 260212.096900001168251 ], [ 357057.893899999558926, 260219.447500001639128 ], [ 357067.08219999819994, 260221.744600001722574 ], [ 357074.432800002396107, 260227.257500000298023 ], [ 357075.810999996960163, 260231.851599998772144 ], [ 357074.432800002396107, 260235.067499998956919 ], [ 357065.703900001943111, 260239.661699999123812 ], [ 357061.10980000346899, 260237.824000000953674 ], [ 357045.949199996888638, 260222.663400001823902 ], [ 357038.598600000143051, 260209.340399999171495 ], [ 357038.392700001597404, 260208.311000000685453 ], [ 357015.164300002157688, 260225.608800001442432 ], [ 357044.4408999979496, 260308.413499999791384 ], [ 357052.4662000015378, 260312.912200000137091 ], [ 357058.069099999964237, 260317.813200000673532 ], [ 357059.678099997341633, 260318.248500000685453 ], [ 357072.573700003325939, 260318.987300001084805 ], [ 357079.029600001871586, 260318.406899999827147 ], [ 357089.53320000320673, 260315.959699999541044 ], [ 357089.747900001704693, 260315.877500001341105 ], [ 357096.005300000309944, 260313.479600001126528 ], [ 357106.537699997425079, 260307.655200000852346 ], [ 357113.844899997115135, 260301.804400000721216 ], [ 357115.479099996387959, 260299.284600000828505 ], [ 357126.047499999403954, 260289.238600000739098 ], [ 357133.345600001513958, 260284.443199999630451 ], [ 357141.439300000667572, 260280.920899998396635 ], [ 357087.167499996721745, 260174.033900000154972 ], [ 357076.065399996936321, 260152.168499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017500", "MAP": "D9-8869-T014", "PARCEL_NAM": "17-7-2A", "ACRE": "1.077", "LONGITUDE": -64.94634477, "LATITUDE": 18.37164367, "OBJECTID_1": 774, "PARCEL_NO_": "101203017500", "Tax_Legal_": "ST PETER 17-7-2 No.2 LITTLE NORTHSIDE QTR", "Name": "STIEHLER, MARY", "Address": "3208 Morse Ave S", "City": "Seattle", "State": "Washington", "Zip": 98144, "Country": "United States", "Land_Value": 203300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.04853251499998, "SHAPE_Area": 5418.0563738500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357104.053400002419949, 260183.556400001049042 ], [ 357113.275399997830391, 260200.815699998289347 ], [ 357103.471799999475479, 260206.14469999819994 ], [ 357141.439300000667572, 260280.920899998396635 ], [ 357147.906000003218651, 260279.073899999260902 ], [ 357152.783500000834465, 260274.469799999147654 ], [ 357163.376999996602535, 260261.468699999153614 ], [ 357173.211000002920628, 260242.973000001162291 ], [ 357177.375600002706051, 260227.386100001633167 ], [ 357179.071000002324581, 260217.689699999988079 ], [ 357180.015699997544289, 260201.443199999630451 ], [ 357180.253799997270107, 260200.97239999845624 ], [ 357152.244099996984005, 260169.306800000369549 ], [ 357104.053400002419949, 260183.556400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010300", "MAP": "D9-7532-T005", "PARCEL_NAM": "17-7-1", "ACRE": "1.505", "LONGITUDE": -64.94701814, "LATITUDE": 18.37032106, "OBJECTID_1": 703, "PARCEL_NO_": "101203010300", "Tax_Legal_": "ST PETER 17-7 Remainder No.2 LITTLE NORTHSIDE QTR", "Name": "STIEHLER, MARY", "Address": "3208 Morse Ave S", "City": "Seattle", "State": "Washington", "Zip": 98144, "Country": "United States", "Land_Value": 509500, "Improved_V": 157600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 358.79596976699997, "SHAPE_Area": 7339.7824148700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357100.831200003623962, 260111.183499999344349 ], [ 357134.173799999058247, 260074.338199999183416 ], [ 357104.511200003325939, 260049.348200000822544 ], [ 357055.066399998962879, 260007.692200001329184 ], [ 357052.622299998998642, 260010.627500001341105 ], [ 357047.710699997842312, 260019.24210000038147 ], [ 357033.875699996948242, 260034.116500001400709 ], [ 357020.893799997866154, 260043.509500000625849 ], [ 357071.63629999756813, 260143.445500001311302 ], [ 357100.831200003623962, 260111.183499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011900", "MAP": "A9-581-T002", "PARCEL_NAM": "53- REM", "ACRE": "1.563", "LONGITUDE": -64.96917998000001, "LATITUDE": 18.35542601, "OBJECTID_1": 2664, "PARCEL_NO_": "102604011900", "Tax_Legal_": "53 REMAINDER LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "DONALD A & JUTTA U. DAVIS TRUST", "Address": "630 Reva Ridge Rd", "City": "Twin Lakes", "State": "Colorado", "Zip": 81251, "Country": "United States", "Land_Value": 148300, "Improved_V": 232400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.59167107000002, "SHAPE_Area": 5408.7930616100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354717.354000002145767, 258337.442499998956919 ], [ 354720.083599999547005, 258462.586100000888109 ], [ 354739.519599996507168, 258452.823800001293421 ], [ 354747.471600003540516, 258450.026799999177456 ], [ 354762.891000002622604, 258444.55629999935627 ], [ 354779.106700003147125, 258438.889800000935793 ], [ 354775.5945999994874, 258433.656399998813868 ], [ 354780.038500003516674, 258429.30180000141263 ], [ 354783.283500000834465, 258427.006400000303984 ], [ 354785.731200002133846, 258423.648899998515844 ], [ 354785.490299999713898, 258411.417599998414516 ], [ 354777.635999999940395, 258395.747699998319149 ], [ 354768.999300003051758, 258381.35080000013113 ], [ 354761.104000002145767, 258370.797600001096725 ], [ 354752.939099997282028, 258361.777399998158216 ], [ 354739.366899996995926, 258352.969799999147654 ], [ 354727.586199998855591, 258345.455800000578165 ], [ 354717.354000002145767, 258337.442499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96998501, "LATITUDE": 18.35612939, "OBJECTID_1": 2670, "PARCEL_NO_": "102604012500", "Tax_Legal_": "LINDBERG BAY 54-A-1 WESTEND QTR.", "Name": "CHRISTIAN, MARK & JO ANN C.", "Address": "PO Box 11777", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42000, "Improved_V": 280300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.878404037, "SHAPE_Area": 3019.2840841299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354688.596100002527237, 258467.183499999344349 ], [ 354650.913400001823902, 258441.754999998956919 ], [ 354637.936599999666214, 258434.354899998754263 ], [ 354643.12049999833107, 258534.294199999421835 ], [ 354652.618400000035763, 258525.573100000619888 ], [ 354655.868900001049042, 258522.644400000572205 ], [ 354667.24889999628067, 258511.971799999475479 ], [ 354689.218999996781349, 258488.720199998468161 ], [ 354688.596100002527237, 258467.183499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96991934, "LATITUDE": 18.35569563, "OBJECTID_1": 2665, "PARCEL_NO_": "102604012000", "Tax_Legal_": "LINDBERG BAY 54A S S QTR", "Name": "NELTHROPP, BRUMNEY A", "Address": "PO Box 1012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.95151152299999, "SHAPE_Area": 1785.12787959 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354650.913400001823902, 258441.754999998956919 ], [ 354688.596100002527237, 258467.183499999344349 ], [ 354688.172799997031689, 258422.217199999839067 ], [ 354687.788800001144409, 258415.012699998915195 ], [ 354650.094800002872944, 258414.909800000488758 ], [ 354636.926100000739098, 258414.873799998313189 ], [ 354637.936599999666214, 258434.354899998754263 ], [ 354650.913400001823902, 258441.754999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011100", "MAP": "D9-8568-T011", "PARCEL_NAM": "53-B-2-C", "ACRE": ".700", "LONGITUDE": -64.96935144, "LATITUDE": 18.35348175, "OBJECTID_1": 2656, "PARCEL_NO_": "102604011100", "Tax_Legal_": "53-B-2-C LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "TWISTED CONCH REAL ESTATE LLC", "Address": "116 Candlewyck Dr", "City": "Hurricane", "State": "West Virginia", "Zip": 25526, "Country": "United States", "Land_Value": 154700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.79636244400001, "SHAPE_Area": 2392.53944568 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354715.71000000089407, 258218.737199999392033 ], [ 354718.137999996542931, 258217.701699998229742 ], [ 354735.840899996459484, 258213.739599999040365 ], [ 354756.76969999819994, 258204.4037000015378 ], [ 354770.567199997603893, 258191.820000000298023 ], [ 354777.99719999730587, 258185.6114999987185 ], [ 354743.925300002098083, 258181.188799999654293 ], [ 354721.948299996554852, 258177.9087999984622 ], [ 354711.751000002026558, 258173.695500001311302 ], [ 354706.362999998033047, 258169.66499999910593 ], [ 354704.163900002837181, 258165.561500001698732 ], [ 354704.847000002861023, 258159.598200000822544 ], [ 354706.467699997127056, 258157.577899999916553 ], [ 354710.090199999511242, 258154.392400000244379 ], [ 354734.585299998521805, 258148.766600001603365 ], [ 354731.083599999547005, 258147.690600000321865 ], [ 354727.795000001788139, 258146.023400001227856 ], [ 354722.200800001621246, 258144.546599999070168 ], [ 354714.701999999582767, 258141.994699999690056 ], [ 354707.896200001239777, 258141.054299999028444 ], [ 354701.783900000154972, 258141.050999999046326 ], [ 354706.330899998545647, 258220.529800001531839 ], [ 354715.71000000089407, 258218.737199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604013600", "MAP": "D9-5313-T92", "PARCEL_NAM": "54B", "ACRE": ".55", "LONGITUDE": -64.96977847, "LATITUDE": 18.3533642, "OBJECTID_1": 2681, "PARCEL_NO_": "102604013600", "Tax_Legal_": "LINDBERG BAY 54B SOUTHSIDE QUARTER", "Name": "HENDRICKS, JIMMY", "Address": "PO Box 305352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48500, "Improved_V": 209600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.70472136000001, "SHAPE_Area": 2511.55093222 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354665.96169999986887, 258210.155299998819828 ], [ 354690.994800001382828, 258206.354400001466274 ], [ 354705.394799999892712, 258204.168000001460314 ], [ 354701.783900000154972, 258141.050999999046326 ], [ 354701.05179999768734, 258140.934799998998642 ], [ 354699.00620000064373, 258141.161299999803305 ], [ 354692.17339999973774, 258141.917700000107288 ], [ 354687.331900000572205, 258142.300200000405312 ], [ 354661.29839999973774, 258152.084800001233816 ], [ 354665.96169999986887, 258210.155299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011100", "MAP": "D9-8568-T011", "PARCEL_NAM": "53-B-2-A", "ACRE": ".548", "LONGITUDE": -64.96947784, "LATITUDE": 18.35399953, "OBJECTID_1": 2656, "PARCEL_NO_": "102604011100", "Tax_Legal_": "53-B-2-C LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "TWISTED CONCH REAL ESTATE LLC", "Address": "116 Candlewyck Dr", "City": "Hurricane", "State": "West Virginia", "Zip": 25526, "Country": "United States", "Land_Value": 154700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.61693732699999, "SHAPE_Area": 422.27189249899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354707.919600002467632, 258259.913800001144409 ], [ 354735.956399999558926, 258261.090999998152256 ], [ 354735.31700000166893, 258260.882199998944998 ], [ 354725.103500001132488, 258251.955800000578165 ], [ 354717.088899999856949, 258246.190699998289347 ], [ 354712.938699997961521, 258242.063099998980761 ], [ 354711.210299998521805, 258237.594700001180172 ], [ 354711.872699998319149, 258225.925900001078844 ], [ 354715.71000000089407, 258218.737199999392033 ], [ 354706.330899998545647, 258220.529800001531839 ], [ 354707.919600002467632, 258259.913800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011000", "MAP": "D9-6514-T98", "PARCEL_NAM": "54 REM", "ACRE": "2.960", "LONGITUDE": -64.96985684000001, "LATITUDE": 18.35500131, "OBJECTID_1": 2655, "PARCEL_NO_": "102604011000", "Tax_Legal_": "54 LINDBERG BAY 4A SOUTHSIDE QTR", "Name": "NELTHROPP, BRUMNEY", "Address": "PO Box 1012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 134600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 560.60828002000005, "SHAPE_Area": 10822.8587876 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354702.235100001096725, 258475.316700000315905 ], [ 354699.912600003182888, 258387.273800000548363 ], [ 354718.434000000357628, 258386.958099998533726 ], [ 354717.354000002145767, 258337.442499998956919 ], [ 354711.744499996304512, 258330.74549999833107 ], [ 354708.421599999070168, 258317.047200001776218 ], [ 354709.639899998903275, 258302.561599999666214 ], [ 354709.105999998748302, 258289.018699999898672 ], [ 354630.132500000298023, 258283.902399998158216 ], [ 354636.926100000739098, 258414.873799998313189 ], [ 354650.094800002872944, 258414.909800000488758 ], [ 354687.788800001144409, 258415.012699998915195 ], [ 354688.172799997031689, 258422.217199999839067 ], [ 354688.596100002527237, 258467.183499999344349 ], [ 354689.218999996781349, 258488.720199998468161 ], [ 354702.235100001096725, 258475.316700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604013500", "MAP": "D9-5313-T92", "PARCEL_NAM": "54C", "ACRE": ".51", "LONGITUDE": -64.97014548, "LATITUDE": 18.35345929, "OBJECTID_1": 2680, "PARCEL_NO_": "102604013500", "Tax_Legal_": "LINDBERG BAY 54-C SOUTHSIDE QTR.", "Name": "WILLIAMS, ANDREW", "Address": "180 HOSPITAL GROUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.00372917799999, "SHAPE_Area": 2107.4392530099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354665.96169999986887, 258210.155299998819828 ], [ 354661.29839999973774, 258152.084800001233816 ], [ 354644.457099996507168, 258158.414599999785423 ], [ 354624.019799999892712, 258166.056499999016523 ], [ 354626.61710000038147, 258216.129099998623133 ], [ 354645.346199996769428, 258213.285399999469519 ], [ 354665.96169999986887, 258210.155299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604014500", "MAP": "D9-6514-T98", "PARCEL_NAM": "54-D", "ACRE": ".525", "LONGITUDE": -64.97013666, "LATITUDE": 18.35400782, "OBJECTID_1": 2689, "PARCEL_NO_": "102604014500", "Tax_Legal_": "54D LINDBERG BAY 4A SOUTHSIDE QTR", "Name": "COURTELYOU REVOCABLE FAMILY TRUST", "Address": "PO Box 305375", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.20460895100001, "SHAPE_Area": 2389.7147217400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354657.633000001311302, 258285.684000000357628 ], [ 354665.96169999986887, 258210.155299998819828 ], [ 354645.346199996769428, 258213.285399999469519 ], [ 354626.61710000038147, 258216.129099998623133 ], [ 354630.132500000298023, 258283.902399998158216 ], [ 354657.633000001311302, 258285.684000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011000", "MAP": "D9-6514-T98", "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.96958219, "LATITUDE": 18.35420997, "OBJECTID_1": 2655, "PARCEL_NO_": "102604011000", "Tax_Legal_": "54 LINDBERG BAY 4A SOUTHSIDE QTR", "Name": "NELTHROPP, BRUMNEY", "Address": "PO Box 1012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 134600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.877977535, "SHAPE_Area": 384.38025861400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354706.858000002801418, 258231.996100001037121 ], [ 354695.589800000190735, 258288.143100000917912 ], [ 354709.105999998748302, 258289.018699999898672 ], [ 354706.858000002801418, 258231.996100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011000", "MAP": "D9-6514-T98", "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.96969113, "LATITUDE": 18.35372049, "OBJECTID_1": 2655, "PARCEL_NO_": "102604011000", "Tax_Legal_": "54 LINDBERG BAY 4A SOUTHSIDE QTR", "Name": "NELTHROPP, BRUMNEY", "Address": "PO Box 1012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 134600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.11543667399999, "SHAPE_Area": 554.38182747799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354706.858000002801418, 258231.996100001037121 ], [ 354706.572200000286102, 258224.746599998325109 ], [ 354705.394799999892712, 258204.168000001460314 ], [ 354690.994800001382828, 258206.354400001466274 ], [ 354665.96169999986887, 258210.155299998819828 ], [ 354706.858000002801418, 258231.996100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604014600", "MAP": "D9-6514-T98", "PARCEL_NAM": "54E", "ACRE": null, "LONGITUDE": -64.96980207, "LATITUDE": 18.35406012, "OBJECTID_1": 2690, "PARCEL_NO_": "102604014600", "Tax_Legal_": "54E CONSOLIDATED LINDBERG BAY 4A SOUTSHIDE QTR", "Name": "COURTELYOU REVOCABLE FAMILY TRUST", "Address": "PO Box 305375", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.652451869, "SHAPE_Area": 2714.8099625999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354695.589800000190735, 258288.143100000917912 ], [ 354706.858000002801418, 258231.996100001037121 ], [ 354665.96169999986887, 258210.155299998819828 ], [ 354657.633000001311302, 258285.684000000357628 ], [ 354695.589800000190735, 258288.143100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604014700", "MAP": "D9-8068-T008", "PARCEL_NAM": "53-B-1-B", "ACRE": ".767", "LONGITUDE": -64.96912013, "LATITUDE": 18.35464467, "OBJECTID_1": 2691, "PARCEL_NO_": "102604014700", "Tax_Legal_": "53B-1-B LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "MOORE, DALMAR R. & MILLS, BRIDGET A.", "Address": "PO Box 303941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.323977864, "SHAPE_Area": 2956.53000066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354740.866599999368191, 258343.709800001233816 ], [ 354787.117899999022484, 258338.275400001555681 ], [ 354783.660400003194809, 258288.109900001436472 ], [ 354773.912699997425079, 258296.473900001496077 ], [ 354765.023500002920628, 258298.723099999129772 ], [ 354744.063000001013279, 258298.129399999976158 ], [ 354731.991700001060963, 258295.286400001496077 ], [ 354725.537600003182888, 258295.655699998140335 ], [ 354719.875399999320507, 258297.720300000160933 ], [ 354716.612400002777576, 258302.126600001007318 ], [ 354714.435099996626377, 258312.394600000232458 ], [ 354717.992799997329712, 258325.402800001204014 ], [ 354722.281199999153614, 258332.876499999314547 ], [ 354731.504399999976158, 258338.32319999858737 ], [ 354740.866599999368191, 258343.709800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011900", "MAP": "A9-581-T002", "PARCEL_NAM": "53 REM", "ACRE": ".059", "LONGITUDE": -64.96877619, "LATITUDE": 18.3556687, "OBJECTID_1": 2664, "PARCEL_NO_": "102604011900", "Tax_Legal_": "53 REMAINDER LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "DONALD A & JUTTA U. DAVIS TRUST", "Address": "630 Reva Ridge Rd", "City": "Twin Lakes", "State": "Colorado", "Zip": 81251, "Country": "United States", "Land_Value": 148300, "Improved_V": 232400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.573109790399997, "SHAPE_Area": 65.233246325899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354791.957000002264977, 258433.61089999973774 ], [ 354792.018399998545647, 258424.871199999004602 ], [ 354782.291000001132488, 258432.635299999266863 ], [ 354783.399999998509884, 258437.498799998313189 ], [ 354791.957000002264977, 258433.61089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96785476, "LATITUDE": 18.35506775, "OBJECTID_1": 2668, "PARCEL_NO_": "102604012300", "Tax_Legal_": "LINDBERG BAY 51B-1 S S QTR", "Name": "JOHNSON, STEPHEN & MARGARET", "Address": "PO Box 10614", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39300, "Improved_V": 237900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.88477791099999, "SHAPE_Area": 2389.7028370399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354905.581000000238419, 258330.789700001478195 ], [ 354862.408299997448921, 258347.012099999934435 ], [ 354865.484999999403954, 258399.493000000715256 ], [ 354907.795500002801418, 258388.128800000995398 ], [ 354906.513700000941753, 258349.276999998837709 ], [ 354905.581000000238419, 258330.789700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96752345, "LATITUDE": 18.35496419, "OBJECTID_1": 2666, "PARCEL_NO_": "102604012100", "Tax_Legal_": "LINDBERG BAY 51B S S QTR", "Name": "JOHNSON, BRIAN E", "Address": "BOX 2553", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.19874041599999, "SHAPE_Area": 1649.70931877 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354933.324699997901917, 258320.364799998700619 ], [ 354905.581000000238419, 258330.789700001478195 ], [ 354906.513700000941753, 258349.276999998837709 ], [ 354907.795500002801418, 258388.128800000995398 ], [ 354935.687799997627735, 258380.607099998742342 ], [ 354933.949199996888638, 258336.2837999984622 ], [ 354933.324699997901917, 258320.364799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604012200", "MAP": "G9-2829-T79", "PARCEL_NAM": "51A", "ACRE": null, "LONGITUDE": -64.96774754, "LATITUDE": 18.35460756, "OBJECTID_1": 2667, "PARCEL_NO_": "102604012200", "Tax_Legal_": "LINDBERG BAY 51A S S QTR", "Name": "JOHNSON, BRIAN & STEPHEN", "Address": "BOX 2553", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 80500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.142326384, "SHAPE_Area": 2643.7054195599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354933.324699997901917, 258320.364799998700619 ], [ 354931.816100001335144, 258281.906300000846386 ], [ 354903.754199996590614, 258294.581199999898672 ], [ 354860.332699999213219, 258311.608600001782179 ], [ 354862.408299997448921, 258347.012099999934435 ], [ 354905.581000000238419, 258330.789700001478195 ], [ 354933.324699997901917, 258320.364799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011300", "MAP": "G9-2829-T79", "PARCEL_NAM": "51", "ACRE": "3.99", "LONGITUDE": -64.96781672, "LATITUDE": 18.35338939, "OBJECTID_1": 2658, "PARCEL_NO_": "102604011300", "Tax_Legal_": "51 REM. ESTATE LINDBERG BAY SOUTHSIDE QTR.", "Name": "FULLER, JR. , V. A. & BRAHM, REBECCA", "Address": "PO Box 303300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 224100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 627.94353105899995, "SHAPE_Area": 17327.500273900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354931.816100001335144, 258281.906300000846386 ], [ 354922.348700001835823, 258040.552700001746416 ], [ 354909.088699996471405, 258047.012200001627207 ], [ 354893.668099999427795, 258058.70719999819994 ], [ 354853.874700002372265, 258091.734299998730421 ], [ 354847.73650000244379, 258096.748599998652935 ], [ 354854.503300003707409, 258212.172400001436472 ], [ 354860.332699999213219, 258311.608600001782179 ], [ 354903.754199996590614, 258294.581199999898672 ], [ 354931.816100001335144, 258281.906300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011800", "MAP": "D9-5804-T94", "PARCEL_NAM": "52A REM", "ACRE": "1.42", "LONGITUDE": -64.96851459, "LATITUDE": 18.35324575, "OBJECTID_1": 2663, "PARCEL_NO_": "102604011800", "Tax_Legal_": "LINDBERG REM. OF PARCEL 52A S S QTR", "Name": "NELTHROPP, GLEN & YVONE", "Address": "P.O. BOX 5375", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 108500, "Improved_V": 346300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 394.32011784000002, "SHAPE_Area": 5668.6341295599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354783.240500003099442, 258236.317600000649691 ], [ 354852.484700001776218, 258177.741099998354912 ], [ 354847.73650000244379, 258096.748599998652935 ], [ 354835.19820000231266, 258106.991200000047684 ], [ 354802.787500001490116, 258125.302200000733137 ], [ 354789.823499999940395, 258132.584399998188019 ], [ 354774.656000003218651, 258140.858500000089407 ], [ 354775.085600003600121, 258143.711800001561642 ], [ 354786.70099999755621, 258140.481699999421835 ], [ 354792.611100003123283, 258139.655000001192093 ], [ 354797.200000002980232, 258178.395100001245737 ], [ 354793.798799999058247, 258179.616399999707937 ], [ 354790.149400003254414, 258180.461199998855591 ], [ 354784.8733000010252, 258180.543800000101328 ], [ 354780.549500003457069, 258180.00450000166893 ], [ 354784.514399997889996, 258182.410999998450279 ], [ 354785.326200000941753, 258187.220800001174212 ], [ 354782.218299999833107, 258189.997499998658895 ], [ 354783.240500003099442, 258236.317600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604014000", "MAP": "D9-5983-T95", "PARCEL_NAM": "53-A", "ACRE": null, "LONGITUDE": -64.9690518, "LATITUDE": 18.35323437, "OBJECTID_1": 2685, "PARCEL_NO_": "102604014000", "Tax_Legal_": "53A LINDBERG BAY No.4 SOUTHSIDE QTR", "Name": "CARTY, JOSEPHINE A", "Address": "PO Box 11686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71800, "Improved_V": 139900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.56733829000001, "SHAPE_Area": 2303.5784430499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354729.960400000214577, 258155.10359999909997 ], [ 354710.67849999666214, 258157.931800000369549 ], [ 354708.00900000333786, 258161.045699998736382 ], [ 354707.737700000405312, 258166.479899998754263 ], [ 354710.491999998688698, 258168.665399998426437 ], [ 354730.612099997699261, 258173.263000000268221 ], [ 354780.549500003457069, 258180.00450000166893 ], [ 354784.8733000010252, 258180.543800000101328 ], [ 354790.149400003254414, 258180.461199998855591 ], [ 354793.798799999058247, 258179.616399999707937 ], [ 354797.200000002980232, 258178.395100001245737 ], [ 354792.611100003123283, 258139.655000001192093 ], [ 354786.70099999755621, 258140.481699999421835 ], [ 354775.085600003600121, 258143.711800001561642 ], [ 354774.656000003218651, 258140.858500000089407 ], [ 354770.380300000309944, 258143.190999999642372 ], [ 354742.076700001955032, 258152.669700000435114 ], [ 354729.960400000214577, 258155.10359999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011200", "MAP": "D9-7858-T006", "PARCEL_NAM": "52-B", "ACRE": "1.06", "LONGITUDE": -64.968338, "LATITUDE": 18.35522933, "OBJECTID_1": 2657, "PARCEL_NO_": "102604011200", "Tax_Legal_": "LINDBERG BAY 52 S S QTR", "Name": "DOOKHAN, MARLENE JAQUELINE", "Address": "PO Box 306542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 167900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.560510163, "SHAPE_Area": 3387.4876696800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354862.174500003457069, 258343.024999998509884 ], [ 354842.366200000047684, 258347.77930000051856 ], [ 354813.121200002729893, 258367.031800001859665 ], [ 354803.206299997866154, 258381.095899999141693 ], [ 354804.302599996328354, 258427.093699999153614 ], [ 354819.644900001585484, 258418.22690000012517 ], [ 354832.603399999439716, 258411.578000001609325 ], [ 354853.644900001585484, 258402.673200000077486 ], [ 354865.484999999403954, 258399.493000000715256 ], [ 354862.174500003457069, 258343.024999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94517323, "LATITUDE": 18.36626079, "OBJECTID_1": 714, "PARCEL_NO_": "101203011500", "Tax_Legal_": "ST PETER 16E LITTLE NORTHSIDE QTR", "Name": "BRYAN, RICHARD", "Address": "13110 Hidden Valley Dr", "City": "Homer Glen", "State": "Illinois", "Zip": 60491, "Country": "United States", "Land_Value": 242300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 796.77286597700004, "SHAPE_Area": 2967.2346361999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357280.290799997746944, 259600.013999998569489 ], [ 357303.162500001490116, 259565.581900000572205 ], [ 357304.814699999988079, 259560.951299998909235 ], [ 357294.391999997198582, 259553.899900000542402 ], [ 357264.637500002980232, 259544.368299998342991 ], [ 357241.331799998879433, 259535.100499998778105 ], [ 357229.276699997484684, 259530.357799999415874 ], [ 357225.272100001573563, 259527.158599998801947 ], [ 357221.312399998307228, 259518.682500001043081 ], [ 357216.816200003027916, 259478.537900000810623 ], [ 357209.507200002670288, 259484.599800001829863 ], [ 357216.334299996495247, 259535.10700000077486 ], [ 357294.321800000965595, 259562.131999999284744 ], [ 357295.079599998891354, 259567.837699998170137 ], [ 357270.591700002551079, 259602.678800001740456 ], [ 357270.444300003349781, 259619.987300001084805 ], [ 357278.30460000038147, 259636.243700001388788 ], [ 357282.982699997723103, 259654.511999998241663 ], [ 357286.668300002813339, 259676.130399998277426 ], [ 357289.652900002896786, 259724.608800001442432 ], [ 357297.779899999499321, 259806.5304000005126 ], [ 357304.592799998819828, 259805.791600000113249 ], [ 357300.884900003671646, 259767.876899998635054 ], [ 357295.358499996364117, 259735.209499999880791 ], [ 357296.184299997985363, 259692.998799998313189 ], [ 357295.830300003290176, 259677.16440000012517 ], [ 357295.445200003683567, 259665.167599998414516 ], [ 357291.218599997460842, 259650.74100000038743 ], [ 357285.563500002026558, 259633.903900001198053 ], [ 357282.753499999642372, 259623.326699998229742 ], [ 357280.897100001573563, 259614.196400001645088 ], [ 357280.290799997746944, 259600.013999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203012300", "MAP": "D9-8393-T010", "PARCEL_NAM": "16-1", "ACRE": ".55", "LONGITUDE": -64.94513696, "LATITUDE": 18.36487737, "OBJECTID_1": 723, "PARCEL_NO_": "101203012300", "Tax_Legal_": "15 & 16 ESTATE ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, RODNEY L. & JEFFREY P. & LINDA M.", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 269700, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.40928365299999, "SHAPE_Area": 1777.44650004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357273.820900000631809, 259498.763300001621246 ], [ 357302.269500002264977, 259496.595100000500679 ], [ 357297.93129999935627, 259449.930599998682737 ], [ 357292.076700001955032, 259451.498100001364946 ], [ 357284.42119999974966, 259453.547699999064207 ], [ 357242.755199998617172, 259452.732999999076128 ], [ 357239.583599999547005, 259456.348299998790026 ], [ 357234.93299999833107, 259461.203699998557568 ], [ 357272.853900000452995, 259475.484099999070168 ], [ 357273.820900000631809, 259498.763300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203012300", "MAP": "D9-8393-T010", "PARCEL_NAM": "15&16 REM", "ACRE": ".1", "LONGITUDE": -64.94507327, "LATITUDE": 18.36577505, "OBJECTID_1": 723, "PARCEL_NO_": "101203012300", "Tax_Legal_": "15 & 16 ESTATE ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, RODNEY L. & JEFFREY P. & LINDA M.", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 269700, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.238174605699996, "SHAPE_Area": 384.30387154900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357276.022600002586842, 259555.790800001472235 ], [ 357277.996200002729893, 259592.143800001591444 ], [ 357295.079599998891354, 259567.837699998170137 ], [ 357294.321800000965595, 259562.131999999284744 ], [ 357276.022600002586842, 259555.790800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203011900", "MAP": "B9-106-T64", "PARCEL_NAM": "16D", "ACRE": "2.5", "LONGITUDE": -64.94539831, "LATITUDE": 18.36603082, "OBJECTID_1": 718, "PARCEL_NO_": "101203011900", "Tax_Legal_": "ST PETER 16D LITTLE NORTHSIDE QTR", "Name": "BRYAN, MARIE L QUESTEL", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 276500, "Improved_V": 249400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 341.64921569099999, "SHAPE_Area": 5663.1738495899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357277.996200002729893, 259592.143800001591444 ], [ 357276.022600002586842, 259555.790800001472235 ], [ 357216.334299996495247, 259535.10700000077486 ], [ 357226.170800000429153, 259610.970100000500679 ], [ 357228.451300002634525, 259627.243000000715256 ], [ 357232.780699998140335, 259659.293099999427795 ], [ 357282.825300000607967, 259653.897399999201298 ], [ 357278.30460000038147, 259636.243700001388788 ], [ 357270.444300003349781, 259619.987300001084805 ], [ 357270.591700002551079, 259602.678800001740456 ], [ 357277.996200002729893, 259592.143800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203012300", "MAP": "D9-8393-T010", "PARCEL_NAM": "15&16-1", "ACRE": ".638", "LONGITUDE": -64.94482201, "LATITUDE": 18.36502448, "OBJECTID_1": 723, "PARCEL_NO_": "101203012300", "Tax_Legal_": "15 & 16 ESTATE ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, RODNEY L. & JEFFREY P. & LINDA M.", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 269700, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.63240529400002, "SHAPE_Area": 2692.4836069799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357274.533100001513958, 259515.908300001174212 ], [ 357274.697999998927116, 259515.919199999421835 ], [ 357337.260600000619888, 259517.612500000745058 ], [ 357337.36879999935627, 259517.344200000166893 ], [ 357334.376000002026558, 259498.498500000685453 ], [ 357325.131800003349781, 259447.760400000959635 ], [ 357324.407799996435642, 259442.841899998486042 ], [ 357297.93129999935627, 259449.930599998682737 ], [ 357302.269500002264977, 259496.595100000500679 ], [ 357273.820900000631809, 259498.763300001621246 ], [ 357274.533100001513958, 259515.908300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801027900", "MAP": "B9-108-T64", "PARCEL_NAM": "15A", "ACRE": null, "LONGITUDE": -64.9448579, "LATITUDE": 18.36439092, "OBJECTID_1": 3825, "PARCEL_NO_": "102801027900", "Tax_Legal_": "ST PETER 15A & 16A LITTLE NORTHSIDE QTR", "Name": "LEDEE, MARIE L QUESTEL", "Address": "7488 Barrett Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76500, "Improved_V": 244200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.272533493, "SHAPE_Area": 1493.0495300499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357292.961599998176098, 259396.472300000488758 ], [ 357297.93129999935627, 259449.930599998682737 ], [ 357324.407799996435642, 259442.841899998486042 ], [ 357322.082800000905991, 259427.048200000077486 ], [ 357319.769900001585484, 259414.574799999594688 ], [ 357313.612499997019768, 259380.116200000047684 ], [ 357302.261200003325939, 259387.411499999463558 ], [ 357296.575699999928474, 259392.220100000500679 ], [ 357292.961599998176098, 259396.472300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801027900", "MAP": "B9-108-T64", "PARCEL_NAM": "16A", "ACRE": null, "LONGITUDE": -64.94514124, "LATITUDE": 18.36454067, "OBJECTID_1": 3825, "PARCEL_NO_": "102801027900", "Tax_Legal_": "ST PETER 15A & 16A LITTLE NORTHSIDE QTR", "Name": "LEDEE, MARIE L QUESTEL", "Address": "7488 Barrett Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76500, "Improved_V": 244200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.76218475, "SHAPE_Area": 1574.8933008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357297.93129999935627, 259449.930599998682737 ], [ 357292.961599998176098, 259396.472300000488758 ], [ 357290.873999997973442, 259398.92850000038743 ], [ 357290.48650000244379, 259399.327399998903275 ], [ 357285.992899999022484, 259403.954799998551607 ], [ 357267.267899997532368, 259424.910900000482798 ], [ 357262.383299998939037, 259430.359299998730421 ], [ 357242.755199998617172, 259452.732999999076128 ], [ 357284.42119999974966, 259453.547699999064207 ], [ 357292.076700001955032, 259451.498100001364946 ], [ 357294.652500003576279, 259450.808400001376867 ], [ 357297.93129999935627, 259449.930599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203012300", "MAP": "D9-8393-T010", "PARCEL_NAM": "15&16-2", "ACRE": ".577", "LONGITUDE": -64.94484175, "LATITUDE": 18.36546112, "OBJECTID_1": 723, "PARCEL_NO_": "101203012300", "Tax_Legal_": "15 & 16 ESTATE ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, RODNEY L. & JEFFREY P. & LINDA M.", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 269700, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.55727990700001, "SHAPE_Area": 2474.8795679099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357337.36879999935627, 259517.344200000166893 ], [ 357337.260600000619888, 259517.612500000745058 ], [ 357274.697999998927116, 259515.919199999421835 ], [ 357274.533100001513958, 259515.908300001174212 ], [ 357275.864699997007847, 259547.964800000190735 ], [ 357294.391999997198582, 259553.899900000542402 ], [ 357301.298900000751019, 259558.572700001299381 ], [ 357343.893399998545647, 259553.502999998629093 ], [ 357338.202600002288818, 259522.594500001519918 ], [ 357337.36879999935627, 259517.344200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203012300", "MAP": "D9-8393-T010", "PARCEL_NAM": "15&16-3", "ACRE": ".611", "LONGITUDE": -64.94474016, "LATITUDE": 18.36587297, "OBJECTID_1": 723, "PARCEL_NO_": "101203012300", "Tax_Legal_": "15 & 16 ESTATE ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, RODNEY L. & JEFFREY P. & LINDA M.", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 269700, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.18602433199999, "SHAPE_Area": 2545.22668909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357303.998099997639656, 259563.239999998360872 ], [ 357303.162500001490116, 259565.581900000572205 ], [ 357280.290799997746944, 259600.013999998569489 ], [ 357280.635999999940395, 259608.089299999177456 ], [ 357351.69650000333786, 259596.514299999922514 ], [ 357350.528099998831749, 259590.245299998670816 ], [ 357345.909599997103214, 259564.454100001603365 ], [ 357345.015699997544289, 259559.598799999803305 ], [ 357343.893399998545647, 259553.502999998629093 ], [ 357301.298900000751019, 259558.572700001299381 ], [ 357304.814699999988079, 259560.951299998909235 ], [ 357303.998099997639656, 259563.239999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94447335, "LATITUDE": 18.36787879, "OBJECTID_1": 738, "PARCEL_NO_": "101203013800", "Tax_Legal_": "ST PETER 15C-1&16C-1 GR NORTHSIDE", "Name": "LEDEE, JOSEPH A", "Address": "7488 Barrett Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.86042059299999, "SHAPE_Area": 2232.8486431000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357387.44370000064373, 259800.374400001019239 ], [ 357385.139899998903275, 259786.845600001513958 ], [ 357384.11429999768734, 259781.704900000244379 ], [ 357331.846400000154972, 259793.112100001424551 ], [ 357303.94820000231266, 259799.200800001621246 ], [ 357304.592799998819828, 259805.791600000113249 ], [ 357305.792900003492832, 259820.976500000804663 ], [ 357306.400399997830391, 259826.377599999308586 ], [ 357334.855400003492832, 259820.842300001531839 ], [ 357354.251900002360344, 259815.723700001835823 ], [ 357388.196099996566772, 259806.71339999884367 ], [ 357387.44370000064373, 259800.374400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203011600", "MAP": "B9-108-T64", "PARCEL_NAM": "16B&15B", "ACRE": "2.63", "LONGITUDE": -64.94465791, "LATITUDE": 18.36659321, "OBJECTID_1": 715, "PARCEL_NO_": "101203011600", "Tax_Legal_": "ST PETER 15B & 16B LITTLE NORTHSIDE QTR", "Name": "BRYAN, RICHARD LOUIS", "Address": "13110 Hidden Valley Dr", "City": "Homer Glen", "State": "Illinois", "Zip": 60491, "Country": "United States", "Land_Value": 239200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 389.83468267699999, "SHAPE_Area": 8543.4429761499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357295.534400001168251, 259726.221700001507998 ], [ 357372.341700002551079, 259714.646099999547005 ], [ 357355.925999999046326, 259619.209300000220537 ], [ 357351.69650000333786, 259596.514299999922514 ], [ 357280.635999999940395, 259608.089299999177456 ], [ 357280.897100001573563, 259614.196400001645088 ], [ 357282.753499999642372, 259623.326699998229742 ], [ 357285.563500002026558, 259633.903900001198053 ], [ 357291.218599997460842, 259650.74100000038743 ], [ 357295.445200003683567, 259665.167599998414516 ], [ 357295.830300003290176, 259677.16440000012517 ], [ 357296.184299997985363, 259692.998799998313189 ], [ 357295.534400001168251, 259726.221700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94457981, "LATITUDE": 18.36722181, "OBJECTID_1": 713, "PARCEL_NO_": "101203011400", "Tax_Legal_": "ST PETER 15C-4&16C-4 LITTLE NORTHSIDE", "Name": "BRYAN, MARIA E LEDEE", "Address": "PO Box 9588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.02210254900001, "SHAPE_Area": 1688.5670828100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357372.341700002551079, 259714.646099999547005 ], [ 357295.534400001168251, 259726.221700001507998 ], [ 357295.358499996364117, 259735.209499999880791 ], [ 357297.582800000905991, 259748.357700001448393 ], [ 357326.427599996328354, 259743.386599998921156 ], [ 357375.925200000405312, 259734.856300000101328 ], [ 357373.597199998795986, 259721.94539999961853 ], [ 357372.341700002551079, 259714.646099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94454434, "LATITUDE": 18.36742099, "OBJECTID_1": 740, "PARCEL_NO_": "101203014000", "Tax_Legal_": "ST PETER 15C-3&16C-3 GR NORTHSIDE", "Name": "LEDEE, LAWRENCE H", "Address": "7488 Barrett Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.05656764099999, "SHAPE_Area": 1862.62103398 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357375.925200000405312, 259734.856300000101328 ], [ 357326.427599996328354, 259743.386599998921156 ], [ 357297.582800000905991, 259748.357700001448393 ], [ 357300.884900003671646, 259767.876899998635054 ], [ 357301.33330000191927, 259772.46229999884963 ], [ 357328.88570000231266, 259767.024500001221895 ], [ 357379.513700000941753, 259757.032600000500679 ], [ 357377.447200000286102, 259743.2972999997437 ], [ 357375.925200000405312, 259734.856300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94450827, "LATITUDE": 18.36764211, "OBJECTID_1": 739, "PARCEL_NO_": "101203013900", "Tax_Legal_": "ST PETER 15C-2&16C-2 GR NORTHSIDE", "Name": "LEDEE, CYRIL E", "Address": "7488 Barrett Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94900, "Improved_V": 253800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.71070357400001, "SHAPE_Area": 2091.6610768300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357379.513700000941753, 259757.032600000500679 ], [ 357328.88570000231266, 259767.024500001221895 ], [ 357301.33330000191927, 259772.46229999884963 ], [ 357303.94820000231266, 259799.200800001621246 ], [ 357331.846400000154972, 259793.112100001424551 ], [ 357384.11429999768734, 259781.704900000244379 ], [ 357380.499799996614456, 259763.58729999884963 ], [ 357379.513700000941753, 259757.032600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602039800", "MAP": "A9-394-T91", "PARCEL_NAM": "#50 CEMETARY", "ACRE": ".12", "LONGITUDE": -64.96742198, "LATITUDE": 18.36087107, "OBJECTID_1": 2522, "PARCEL_NO_": "102602039800", "Tax_Legal_": "NELTJEBERG #50/EASTERN PT LT. NORTHSIDE", "Name": "MARSH, WARREN S., ALVA. A, JEWEL A AND OTHERS", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.179260177100005, "SHAPE_Area": 380.54221903500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354938.060000002384186, 259000.37220000103116 ], [ 354915.155100002884865, 259000.801300000399351 ], [ 354914.169299997389317, 259016.755199998617172 ], [ 354916.952299997210503, 259017.051399998366833 ], [ 354928.238899998366833, 259017.354899998754263 ], [ 354937.928999997675419, 259015.745400000363588 ], [ 354938.060000002384186, 259000.37220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056200", "MAP": "D9-5401-T92", "PARCEL_NAM": "3QA-1", "ACRE": null, "LONGITUDE": -64.94826875, "LATITUDE": 18.35876135, "OBJECTID_1": 3970, "PARCEL_NO_": "102801056200", "Tax_Legal_": "ST PETER 3QA GT NORTHSIDE", "Name": "QUESTEL, STANLEY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 134000, "Improved_V": 51500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.359797746, "SHAPE_Area": 2033.56675905 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356982.938500002026558, 258772.209600001573563 ], [ 356923.781099997460842, 258775.54839999973774 ], [ 356925.732299998402596, 258814.16609999909997 ], [ 356962.064999997615814, 258808.763999998569489 ], [ 356962.088299997150898, 258806.019900001585484 ], [ 356980.638899996876717, 258805.538499999791384 ], [ 356982.938500002026558, 258772.209600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051000", "MAP": "D9-8395-T010", "PARCEL_NAM": "3Q REM", "ACRE": "1.043", "LONGITUDE": -64.94880192, "LATITUDE": 18.35862105, "OBJECTID_1": 3924, "PARCEL_NO_": "102801051000", "Tax_Legal_": "3Q REM ST. PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "QUETEL, STANLEY A. & GERALDINE", "Address": "3Q-1 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 142800, "Improved_V": 147000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.93899597299998, "SHAPE_Area": 3776.9645765099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356915.816799998283386, 258815.675700001418591 ], [ 356911.104900002479553, 258790.234299998730421 ], [ 356919.487300001084805, 258775.878400001674891 ], [ 356921.592200003564358, 258732.227899998426437 ], [ 356893.437799997627735, 258724.186999998986721 ], [ 356888.603500001132488, 258723.725299999117851 ], [ 356876.914099998772144, 258770.703499998897314 ], [ 356865.17620000243187, 258823.380800001323223 ], [ 356890.206000000238419, 258819.57490000128746 ], [ 356915.816799998283386, 258815.675700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801010400", "MAP": "D9-8429-T010", "PARCEL_NAM": "22 REM", "ACRE": "1.01", "LONGITUDE": -64.94633576, "LATITUDE": 18.36415141, "OBJECTID_1": 3686, "PARCEL_NO_": "102801010400", "Tax_Legal_": "ST PETER 22 LITTLE NORTHSIDE QTR", "Name": "TODMAN, JULIE SMITH & BYRON", "Address": "PO Box 11011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 261100, "Improved_V": 218200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 319.77799348999997, "SHAPE_Area": 3594.6264857000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357186.07490000128746, 259395.537599999457598 ], [ 357202.407999999821186, 259371.395500000566244 ], [ 357206.536399997770786, 259360.561599999666214 ], [ 357177.371500000357628, 259367.770100001245737 ], [ 357154.243199996650219, 259372.682000000029802 ], [ 357127.039499998092651, 259373.991099998354912 ], [ 357128.740800000727177, 259342.81700000166893 ], [ 357121.222099997103214, 259341.177999999374151 ], [ 357118.136799998581409, 259381.3766999989748 ], [ 357117.414300002157688, 259409.54109999909997 ], [ 357117.056500002741814, 259422.24549999833107 ], [ 357140.069899998605251, 259422.902499999850988 ], [ 357148.064999997615814, 259423.130800001323223 ], [ 357154.651199996471405, 259418.251299999654293 ], [ 357158.040799997746944, 259415.915800001472235 ], [ 357168.221000000834465, 259408.901500001549721 ], [ 357186.07490000128746, 259395.537599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203015200", "MAP": "D9-4866-T90", "PARCEL_NAM": "14-3", "ACRE": ".510", "LONGITUDE": -64.9443415, "LATITUDE": 18.36546074, "OBJECTID_1": 752, "PARCEL_NO_": "101203015200", "Tax_Legal_": "BARRETTE 14-3 LT.NORTHSIDE QTR.", "Name": "BURTON FAMILY VI TRUST", "Address": "3213 Friar Ln", "City": "Garland", "State": "Texas", "Zip": 75044, "Country": "United States", "Land_Value": 82300, "Improved_V": 258700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.81635257600001, "SHAPE_Area": 1954.7477611300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357380.024700000882149, 259535.39130000025034 ], [ 357379.274099998176098, 259528.8412000015378 ], [ 357377.058399997651577, 259504.969500001519918 ], [ 357345.51690000295639, 259515.899300001561642 ], [ 357338.202600002288818, 259522.594500001519918 ], [ 357345.909599997103214, 259564.454100001603365 ], [ 357383.048600003123283, 259559.058499999344349 ], [ 357380.024700000882149, 259535.39130000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803034100", "MAP": "D9-7314-T003", "PARCEL_NAM": "97-13", "ACRE": ".541", "LONGITUDE": -64.94479176, "LATITUDE": 18.35122735, "OBJECTID_1": 4391, "PARCEL_NO_": "102803034100", "Tax_Legal_": "97-13 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BALY, PAULINE & KILO EMANUEL", "Address": "PO BOX 9841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.14626772400001, "SHAPE_Area": 2418.9611017399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357344.576499998569489, 257931.824799999594688 ], [ 357296.2483000010252, 257944.05350000038743 ], [ 357305.155500002205372, 257981.854100000113249 ], [ 357307.275200001895428, 257990.794700000435114 ], [ 357338.366400003433228, 257981.110599998384714 ], [ 357358.882200002670288, 257974.720400001853704 ], [ 357344.576499998569489, 257931.824799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102803027000", "MAP": "D9-7383-T004", "PARCEL_NAM": "97-15", "ACRE": ".724", "LONGITUDE": -64.94388145000001, "LATITUDE": 18.35098397, "OBJECTID_1": 4336, "PARCEL_NO_": "102803027000", "Tax_Legal_": "SOLBERG 97-15 NO.1 LITTLE NORTHSIDE", "Name": "ROBLES, SR, PETER A.", "Address": "PO Box 502071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 110400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.546552499, "SHAPE_Area": 1836.1397057300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357396.215999998152256, 257918.758200000971556 ], [ 357391.860799998044968, 257919.860199999064207 ], [ 357409.612199999392033, 257958.862500000745058 ], [ 357435.784100003540516, 257950.493000000715256 ], [ 357463.980099998414516, 257939.970100000500679 ], [ 357418.72410000115633, 257910.899700000882149 ], [ 357396.215999998152256, 257918.758200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102803027100", "MAP": "D9-7383-T004", "PARCEL_NAM": "97-14", "ACRE": ".726", "LONGITUDE": -64.94432429, "LATITUDE": 18.35109714, "OBJECTID_1": 4337, "PARCEL_NO_": "102803027100", "Tax_Legal_": "97-14 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "JAMES, LUNA C. & THEODORE SEALEY", "Address": "PO Box 302354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.99568355100001, "SHAPE_Area": 2231.0133026499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357391.860799998044968, 257919.860199999064207 ], [ 357344.576499998569489, 257931.824799999594688 ], [ 357358.882200002670288, 257974.720400001853704 ], [ 357380.216700002551079, 257968.075199998915195 ], [ 357402.785099998116493, 257961.045699998736382 ], [ 357409.612199999392033, 257958.862500000745058 ], [ 357391.860799998044968, 257919.860199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803040500", "MAP": "D9-4126-T87", "PARCEL_NAM": "97-3-A", "ACRE": ".52", "LONGITUDE": -64.9460731, "LATITUDE": 18.35030202, "OBJECTID_1": 4396, "PARCEL_NO_": "102803040500", "Tax_Legal_": "SOLBERG 97-3-A No.1 LITTLE NORTHSIDE QTR.", "Name": "FRANCOIS, DONALD C. & FAYE M. (TRUSTEES)", "Address": "PO Box 303826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 95200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.293727512, "SHAPE_Area": 1738.3314477599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357234.032399997115135, 257876.567600000649691 ], [ 357234.064999997615814, 257872.552799999713898 ], [ 357234.081699997186661, 257870.501800000667572 ], [ 357230.514799997210503, 257870.539299998432398 ], [ 357210.459499999880791, 257858.342799998819828 ], [ 357201.652999997138977, 257850.882500000298023 ], [ 357179.284800000488758, 257826.212499998509884 ], [ 357176.059600003063679, 257826.186099998652935 ], [ 357164.630999997258186, 257842.557900000363588 ], [ 357160.522100001573563, 257851.601300001144409 ], [ 357191.745300002396107, 257878.032400000840425 ], [ 357234.032399997115135, 257876.567600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803040600", "MAP": "D9-4305-T88", "PARCEL_NAM": "97-2B", "ACRE": ".501", "LONGITUDE": -64.94602592, "LATITUDE": 18.3506692, "OBJECTID_1": 4397, "PARCEL_NO_": "102803040600", "Tax_Legal_": "SOLBERG 97-2B LT.NORTHSIDE QTR.", "Name": "FRANCOIS, DONALD C. & FAYE M. (TRUSTEES)", "Address": "PO Box 303826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105100, "Improved_V": 374400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.549832958, "SHAPE_Area": 1724.4070244699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357200.181699998676777, 257918.776000000536442 ], [ 357234.032399997115135, 257876.567600000649691 ], [ 357191.745300002396107, 257878.032400000840425 ], [ 357168.956299997866154, 257902.754999998956919 ], [ 357169.602600000798702, 257921.547600001096725 ], [ 357200.181699998676777, 257918.776000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803022400", "MAP": "D3-176-T49", "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.94501435, "LATITUDE": 18.34904028, "OBJECTID_1": 4297, "PARCEL_NO_": "102803022400", "Tax_Legal_": "SOLBERG 7 LITTLE NORTHSIDE QTR", "Name": "BERNARD, CRAIG & KENDRA", "Address": "16305 E Hialeah Dr", "City": "Centennial", "State": "Colorado", "Zip": 800154103, "Country": "United States", "Land_Value": 172000, "Improved_V": 401100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.88791183199999, "SHAPE_Area": 5275.5021941599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357271.909500002861023, 257717.233300000429153 ], [ 357278.238099999725819, 257760.685100000351667 ], [ 357281.019500002264977, 257779.782600000500679 ], [ 357281.303300000727177, 257780.855399999767542 ], [ 357299.743199996650219, 257778.992800001055002 ], [ 357324.585600003600121, 257739.029899999499321 ], [ 357349.023299999535084, 257684.48030000180006 ], [ 357340.971000000834465, 257683.147900000214577 ], [ 357332.137500002980232, 257678.853700000792742 ], [ 357312.121799997985363, 257662.0135000012815 ], [ 357304.054999999701977, 257662.369699999690056 ], [ 357299.996500000357628, 257665.50279999896884 ], [ 357271.909500002861023, 257717.233300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803040300", "MAP": "D9-7098-T002", "PARCEL_NAM": "97-3", "ACRE": null, "LONGITUDE": -64.94563159, "LATITUDE": 18.35013063, "OBJECTID_1": 4394, "PARCEL_NO_": "102803040300", "Tax_Legal_": "SOLBERG 97-3 REMAINDER LT. NORTHSIDE", "Name": "DIXON 2015 REVOCABLE LIVING TRUST", "Address": "43182 Maple Cross St", "City": "SOUTH RIDING", "State": "Virginia", "Zip": 20152, "Country": "United States", "Land_Value": 134600, "Improved_V": 559600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.09689685000001, "SHAPE_Area": 3624.4299746500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357260.817400000989437, 257869.132100000977516 ], [ 357267.040700003504753, 257859.394000001251698 ], [ 357291.82209999859333, 257820.616700001060963 ], [ 357267.986599996685982, 257819.960700001567602 ], [ 357185.523299999535084, 257815.907999999821186 ], [ 357182.572999998927116, 257818.851199999451637 ], [ 357183.348800003528595, 257822.446100000292063 ], [ 357209.725100003182888, 257849.893100000917912 ], [ 357225.754299998283386, 257861.423300001770258 ], [ 357241.804999999701977, 257870.4206000007689 ], [ 357260.817400000989437, 257869.132100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803027500", "MAP": "D9-7098-T002", "PARCEL_NAM": "97-22", "ACRE": ".546", "LONGITUDE": -64.94541014000001, "LATITUDE": 18.3495366, "OBJECTID_1": 4341, "PARCEL_NO_": "102803027500", "Tax_Legal_": "97-22 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, EVELYN & EMILE W.", "Address": "PO Box 305882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.36675657000001, "SHAPE_Area": 2664.0666475799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357240.444600000977516, 257786.374299999326468 ], [ 357269.481200002133846, 257805.726799998432398 ], [ 357291.82209999859333, 257820.616700001060963 ], [ 357281.019500002264977, 257779.782600000500679 ], [ 357278.238099999725819, 257760.685100000351667 ], [ 357271.909500002861023, 257717.233300000429153 ], [ 357268.046800002455711, 257724.347500000149012 ], [ 357261.486599996685982, 257737.1706000007689 ], [ 357248.457999996840954, 257752.051600001752377 ], [ 357247.635499998927116, 257753.944699998944998 ], [ 357229.053000003099442, 257772.482599999755621 ], [ 357225.267499998211861, 257776.25899999961257 ], [ 357240.444600000977516, 257786.374299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803040200", "MAP": null, "PARCEL_NAM": "97-2 REM", "ACRE": null, "LONGITUDE": -64.94562756000001, "LATITUDE": 18.35142174, "OBJECTID_1": 4393, "PARCEL_NO_": "102803040200", "Tax_Legal_": "SOLBERG 97-2 REMAINDER 1 LT. NORTHSIDE", "Name": "JACKSON, JR. , FRANCIS E. & TONI", "Address": "PO Box 6591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 140500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.14146879099999, "SHAPE_Area": 3098.4118199300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357259.020400002598763, 258016.657900001853704 ], [ 357259.883400000631809, 257945.806800000369549 ], [ 357211.749899998307228, 257947.26969999819994 ], [ 357212.765000000596046, 257953.936299998313189 ], [ 357217.743600003421307, 257986.635099999606609 ], [ 357223.313900001347065, 258023.219399999827147 ], [ 357259.020400002598763, 258016.657900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803042000", "MAP": "D9-5290-T92", "PARCEL_NAM": "97-2C", "ACRE": ".75", "LONGITUDE": -64.94562225, "LATITUDE": 18.35081769, "OBJECTID_1": 4406, "PARCEL_NO_": "102803042000", "Tax_Legal_": "SOLBERG 97-2C No.1 LT.NORTHSIDE QTR.", "Name": "BOSCHULTE-HAIRSTON, EVELYN", "Address": "PO Box 305882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.475126316, "SHAPE_Area": 2944.0616890599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357208.066600002348423, 257923.078400000929832 ], [ 357211.749899998307228, 257947.26969999819994 ], [ 357259.883400000631809, 257945.806800000369549 ], [ 357260.817400000989437, 257869.132100000977516 ], [ 357241.804999999701977, 257870.4206000007689 ], [ 357243.0591000020504, 257873.672899998724461 ], [ 357240.409100003540516, 257879.067800000309944 ], [ 357208.066600002348423, 257923.078400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803041800", "MAP": "D9-6384-T98", "PARCEL_NAM": "97-8-REM", "ACRE": ".45", "LONGITUDE": -64.94470089, "LATITUDE": 18.35181564, "OBJECTID_1": 4404, "PARCEL_NO_": "102803041800", "Tax_Legal_": "EASEMENT \"A\" OVER 97-8 ESTATE SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, EVELYN", "Address": "PO Box 305882", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 398.29701761199999, "SHAPE_Area": 1644.17817087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357421.776600003242493, 258006.344399999827147 ], [ 357397.018399998545647, 258017.719099998474121 ], [ 357375.38849999755621, 258027.621899999678135 ], [ 357362.097900003194809, 258032.312699999660254 ], [ 357339.555900000035763, 258033.355099998414516 ], [ 357320.034299999475479, 258031.452399998903275 ], [ 357314.193999998271465, 258031.647100001573563 ], [ 357289.192400000989437, 258025.396699998527765 ], [ 357271.171300001442432, 258012.758499998599291 ], [ 357270.857500001788139, 258002.137899998575449 ], [ 357259.164700001478195, 258004.809500001370907 ], [ 357259.020400002598763, 258016.657900001853704 ], [ 357267.28660000115633, 258025.8445999994874 ], [ 357288.567400000989437, 258036.022399999201298 ], [ 357329.820000000298023, 258040.085099998861551 ], [ 357330.509400002658367, 258039.89299999922514 ], [ 357337.601400002837181, 258040.912500001490116 ], [ 357360.732299998402596, 258040.10700000077486 ], [ 357363.791799999773502, 258040.000399999320507 ], [ 357376.952100001275539, 258035.961100000888109 ], [ 357388.563000001013279, 258030.184000000357628 ], [ 357403.663699999451637, 258022.670499999076128 ], [ 357427.994699999690056, 258013.692099999636412 ], [ 357429.683200001716614, 258009.592999998480082 ], [ 357432.606600001454353, 258004.014699999243021 ], [ 357429.513800002634525, 258004.145399998873472 ], [ 357421.776600003242493, 258006.344399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803040700", "MAP": "D9-6866-T002", "PARCEL_NAM": "97-12", "ACRE": null, "LONGITUDE": -64.9452258, "LATITUDE": 18.3513559, "OBJECTID_1": 4398, "PARCEL_NO_": "102803040700", "Tax_Legal_": "SOLBERG ESTATE 97-12 No.1 LITLE NORTHSIDE QTR.", "Name": "NILES, LYNELLE", "Address": "PO Box 303523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.730521208, "SHAPE_Area": 2158.7995924500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357307.055100001394749, 257990.863299999386072 ], [ 357307.228100001811981, 257990.5962999984622 ], [ 357305.155500002205372, 257981.854100000113249 ], [ 357296.2483000010252, 257944.05350000038743 ], [ 357269.342600002884865, 257950.8614999987185 ], [ 357259.800999999046326, 257952.576499998569489 ], [ 357259.164700001478195, 258004.809500001370907 ], [ 357270.857500001788139, 258002.137899998575449 ], [ 357307.055100001394749, 257990.863299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803027200", "MAP": "D9-7380-T004", "PARCEL_NAM": "97-16", "ACRE": ".604", "LONGITUDE": -64.94517439000001, "LATITUDE": 18.35075047, "OBJECTID_1": 4338, "PARCEL_NO_": "102803027200", "Tax_Legal_": "97-16 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, EVELYN & EMILE W.", "Address": "PO Box 305882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 73100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.17759240700002, "SHAPE_Area": 4177.5869899500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357259.883400000631809, 257945.806800000369549 ], [ 357259.800999999046326, 257952.576499998569489 ], [ 357269.342600002884865, 257950.8614999987185 ], [ 357296.2483000010252, 257944.05350000038743 ], [ 357313.275200001895428, 257939.745099999010563 ], [ 357315.362800002098083, 257868.608600001782179 ], [ 357304.908900000154972, 257868.776999998837709 ], [ 357260.817400000989437, 257869.132100000977516 ], [ 357259.883400000631809, 257945.806800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803025200", "MAP": "D9-1385-T78", "PARCEL_NAM": "97-REM", "ACRE": null, "LONGITUDE": -64.94464074, "LATITUDE": 18.35010868, "OBJECTID_1": 4321, "PARCEL_NO_": "102803025200", "Tax_Legal_": "97 REM SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, EVELYN & EMILE W.", "Address": "PO Box 305882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 229300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 589.75752667799998, "SHAPE_Area": 13463.9339306 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357400.036300003528595, 257758.782600000500679 ], [ 357365.610200002789497, 257767.780600000172853 ], [ 357361.255400002002716, 257763.107200000435114 ], [ 357358.046300001442432, 257761.181099999696016 ], [ 357336.385600000619888, 257748.127099998295307 ], [ 357324.585600003600121, 257739.029899999499321 ], [ 357299.743199996650219, 257778.992800001055002 ], [ 357281.303300000727177, 257780.855399999767542 ], [ 357291.82209999859333, 257820.616700001060963 ], [ 357298.708200000226498, 257820.806200001388788 ], [ 357314.680100001394749, 257821.320099998265505 ], [ 357315.362800002098083, 257868.608600001782179 ], [ 357313.275200001895428, 257939.745099999010563 ], [ 357344.576499998569489, 257931.824799999594688 ], [ 357391.860799998044968, 257919.860199999064207 ], [ 357396.215999998152256, 257918.758200000971556 ], [ 357369.328199997544289, 257856.687800001353025 ], [ 357386.739100001752377, 257800.679400000721216 ], [ 357400.036300003528595, 257758.782600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803027300", "MAP": "D9-7098-T002", "PARCEL_NAM": "97-20", "ACRE": ".5313", "LONGITUDE": -64.94510331, "LATITUDE": 18.35021277, "OBJECTID_1": 4339, "PARCEL_NO_": "102803027300", "Tax_Legal_": "97-20 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, EVELYN & EMILE W.", "Address": "PO Box 305882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.286830837, "SHAPE_Area": 1857.3635805900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357315.362800002098083, 257868.608600001782179 ], [ 357314.680100001394749, 257821.320099998265505 ], [ 357298.708200000226498, 257820.806200001388788 ], [ 357291.82209999859333, 257820.616700001060963 ], [ 357267.040700003504753, 257859.394000001251698 ], [ 357260.817400000989437, 257869.132100000977516 ], [ 357304.908900000154972, 257868.776999998837709 ], [ 357315.362800002098083, 257868.608600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803023300", "MAP": "G9-608-T62", "PARCEL_NAM": "63", "ACRE": ".40", "LONGITUDE": -64.94179022, "LATITUDE": 18.34593284, "OBJECTID_1": 4306, "PARCEL_NO_": "102803023300", "Tax_Legal_": "63 & 106 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "L & L INVESTMENTS REV. TRST.", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 168800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.577086396, "SHAPE_Area": 2053.1085412100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357677.744099996984005, 257358.997699998319149 ], [ 357667.174099996685982, 257358.734200000762939 ], [ 357630.094200000166893, 257357.809999998658895 ], [ 357628.73369999974966, 257357.776099998503923 ], [ 357619.322800002992153, 257381.029100000858307 ], [ 357607.483900003135204, 257392.271899998188019 ], [ 357645.64130000025034, 257394.650600001215935 ], [ 357651.458499997854233, 257395.013199999928474 ], [ 357660.982600003480911, 257394.966499999165535 ], [ 357676.6283999979496, 257394.889800000935793 ], [ 357677.744099996984005, 257358.997699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94429478000001, "LATITUDE": 18.3489589, "OBJECTID_1": 4298, "PARCEL_NO_": "102803022500", "Tax_Legal_": "SOLBERG 9 LITTLE NORTHSIDE QTR", "Name": "ONEAL, CLARA & REMAINDERMAN, C", "Address": "PO Box 746", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 141800, "Improved_V": 248300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.952224387, "SHAPE_Area": 4507.2773534199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357365.610200002789497, 257767.780600000172853 ], [ 357431.962300002574921, 257673.255100000649691 ], [ 357428.966899998486042, 257671.202500000596046 ], [ 357423.342500001192093, 257668.834399998188019 ], [ 357401.602700002491474, 257665.067899998277426 ], [ 357392.733199998736382, 257664.995299998670816 ], [ 357387.882799997925758, 257666.433200001716614 ], [ 357382.22240000218153, 257668.286800000816584 ], [ 357373.302599996328354, 257674.124400001019239 ], [ 357336.385600000619888, 257748.127199999988079 ], [ 357358.046300001442432, 257761.181099999696016 ], [ 357361.255400002002716, 257763.107200000435114 ], [ 357365.610200002789497, 257767.780600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803029300", "MAP": "A9-339-T86", "PARCEL_NAM": "95-1", "ACRE": ".471", "LONGITUDE": -64.94399903, "LATITUDE": 18.34909691, "OBJECTID_1": 4353, "PARCEL_NO_": "102803029300", "Tax_Legal_": "SOLBERG 95-1 LT. NORTHSIDE", "Name": "CARTY, AMOS,SR.", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98800, "Improved_V": 414200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.78693267599999, "SHAPE_Area": 2781.5126614300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357365.610200002789497, 257767.780600000172853 ], [ 357400.036300003528595, 257758.782600000500679 ], [ 357427.510399997234344, 257751.601599998772144 ], [ 357427.56360000371933, 257741.274000000208616 ], [ 357434.3108000010252, 257706.498799998313189 ], [ 357439.22240000218153, 257697.884199999272823 ], [ 357445.746699996292591, 257689.282699998468161 ], [ 357448.181800000369549, 257687.402800001204014 ], [ 357448.208700001239777, 257684.236600000411272 ], [ 357445.802400000393391, 257682.73930000141263 ], [ 357442.277400001883507, 257680.323699999600649 ], [ 357431.962300002574921, 257673.255100000649691 ], [ 357365.610200002789497, 257767.780600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803024400", "MAP": "D9-5519-T93", "PARCEL_NAM": "95-2B", "ACRE": ".406", "LONGITUDE": -64.94318633, "LATITUDE": 18.34892347, "OBJECTID_1": 4313, "PARCEL_NO_": "102803024400", "Tax_Legal_": "SOLBERG 95-2B LITTLE NORTHSIDE QTR", "Name": "NEWTON, NIGEL", "Address": "PO Box 307862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58800, "Improved_V": 67400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.30649553399999, "SHAPE_Area": 1856.53523028 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357518.774999998509884, 257727.747600000351667 ], [ 357517.440099999308586, 257714.115100000053644 ], [ 357513.677500002086163, 257675.690900001674891 ], [ 357494.98929999768734, 257682.930799998342991 ], [ 357483.654100000858307, 257688.326400000602007 ], [ 357477.986599996685982, 257691.024300001561642 ], [ 357474.781900003552437, 257691.730700001120567 ], [ 357482.32379999756813, 257724.64809999987483 ], [ 357485.053400002419949, 257736.561500001698732 ], [ 357518.774999998509884, 257727.747600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803024500", "MAP": "D9-5519-T93", "PARCEL_NAM": "95-2A", "ACRE": ".404", "LONGITUDE": -64.94356166, "LATITUDE": 18.34904674, "OBJECTID_1": 4314, "PARCEL_NO_": "102803024500", "Tax_Legal_": "SOLBERG 95-2A LITTLE NORTSIDE QTR.", "Name": "SCHEIDT, LINDA B", "Address": "339 Azalea St", "City": "Palm Beach Gardens", "State": "Florida", "Zip": 33410, "Country": "United States", "Land_Value": 70500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.27535596800001, "SHAPE_Area": 2112.1453634 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357482.32379999756813, 257724.64809999987483 ], [ 357474.781900003552437, 257691.730700001120567 ], [ 357471.523500002920628, 257692.449000000953674 ], [ 357465.072999998927116, 257692.396200001239777 ], [ 357459.439599998295307, 257691.083599999547005 ], [ 357456.228699997067451, 257689.368500001728535 ], [ 357453.80799999833107, 257689.559799998998642 ], [ 357442.39190000295639, 257704.453999999910593 ], [ 357439.935199998319149, 257708.866900000721216 ], [ 357434.0320999994874, 257739.215999998152256 ], [ 357434.430299997329712, 257749.793000001460314 ], [ 357485.053400002419949, 257736.561500001698732 ], [ 357482.32379999756813, 257724.64809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803024300", "MAP": "D9-5519-T93", "PARCEL_NAM": "95-2 REM", "ACRE": ".425", "LONGITUDE": -64.94280706000001, "LATITUDE": 18.34877053, "OBJECTID_1": 4312, "PARCEL_NO_": "102803024300", "Tax_Legal_": "SOLBERG 95-2 REMAINDER LT. NORTHSIDE", "Name": "WARE, HANNIBAL M", "Address": "PO Box 265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75800, "Improved_V": 475400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.53620794700001, "SHAPE_Area": 2654.9522761899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357560.070200003683567, 257716.954199999570847 ], [ 357555.477700002491474, 257639.718299999833107 ], [ 357533.040600001811981, 257665.088199999183416 ], [ 357524.923500001430511, 257671.354499999433756 ], [ 357520.069499999284744, 257673.214600000530481 ], [ 357513.677500002086163, 257675.690900001674891 ], [ 357517.440099999308586, 257714.115100000053644 ], [ 357518.774999998509884, 257727.747600000351667 ], [ 357549.11089999973774, 257719.81870000064373 ], [ 357560.070200003683567, 257716.954199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803025700", "MAP": "F9-3643-T79", "PARCEL_NAM": "98", "ACRE": null, "LONGITUDE": -64.94332669000001, "LATITUDE": 18.34939316, "OBJECTID_1": 4326, "PARCEL_NO_": "102803025700", "Tax_Legal_": "SOLBERG 98 LT.NORTHSIDE QTR.", "Name": "SCHEIDT DONALD J and PAIRIN SAETAE", "Address": "PO Box 2898", "City": "Edgartown", "State": "Massachusetts", "Zip": 25392898, "Country": "United States", "Land_Value": 213900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 448.559904824, "SHAPE_Area": 7487.9286906400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357549.11089999973774, 257719.81870000064373 ], [ 357400.036300003528595, 257758.782600000500679 ], [ 357386.739100001752377, 257800.679400000721216 ], [ 357547.495600000023842, 257766.742499999701977 ], [ 357567.038000002503395, 257763.578000001609325 ], [ 357566.612000003457069, 257715.24439999833703 ], [ 357549.11089999973774, 257719.81870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803028300", "MAP": null, "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.94243156, "LATITUDE": 18.34860288, "OBJECTID_1": 4343, "PARCEL_NO_": "102803028300", "Tax_Legal_": "SOLBERG 3 No. 1 LITTLE NORTHSIDE QTR", "Name": "RICHARDSON, DARIN M & ELEANOR HART", "Address": "PO Box 207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 119500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.44851147099999, "SHAPE_Area": 2673.6810624599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357583.380800001323223, 257624.548000000417233 ], [ 357580.685900002717972, 257611.094399999827147 ], [ 357560.999600000679493, 257633.449499998241663 ], [ 357562.463600002229214, 257654.786699999123812 ], [ 357565.917700000107288, 257705.126899998635054 ], [ 357566.612000003457069, 257715.24439999833703 ], [ 357600.98139999806881, 257718.349899999797344 ], [ 357598.795000001788139, 257708.267200000584126 ], [ 357583.380800001323223, 257624.548000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803028400", "MAP": "D9-1487-T79", "PARCEL_NAM": "4", "ACRE": ".80", "LONGITUDE": -64.9421542, "LATITUDE": 18.34852812, "OBJECTID_1": 4344, "PARCEL_NO_": "102803028400", "Tax_Legal_": "SOLBERG 4 LITTLE NORTHSIDE QTR", "Name": "SMOCK,TERRYLN M. &, HENRY C.", "Address": "PO Box 6571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 119500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.753878208, "SHAPE_Area": 3901.0826198099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357639.390500001609325, 257721.820300001651049 ], [ 357607.41160000115633, 257599.97749999910593 ], [ 357598.097599998116493, 257600.814899999648333 ], [ 357590.822800002992153, 257602.866300001740456 ], [ 357583.522900000214577, 257607.872800000011921 ], [ 357580.685900002717972, 257611.094399999827147 ], [ 357583.380800001323223, 257624.548000000417233 ], [ 357598.795000001788139, 257708.267200000584126 ], [ 357600.98139999806881, 257718.349899999797344 ], [ 357639.390500001609325, 257721.820300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017500", "MAP": "D9-7712-T006", "PARCEL_NAM": "11D-14", "ACRE": ".504", "LONGITUDE": -64.94386648, "LATITUDE": 18.35426622, "OBJECTID_1": 4260, "PARCEL_NO_": "102803017500", "Tax_Legal_": "SOLBERG 11D-14 LT. NORTHSIDE QTR", "Name": "LAURO, VINCENT ANDREW & ASHLEY MEEDER", "Address": "444 NW 1st Ave", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33301, "Country": "United States", "Land_Value": 62900, "Improved_V": 236400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.86377072299999, "SHAPE_Area": 2446.6142804000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357376.858400002121925, 258297.934900000691414 ], [ 357390.805500000715256, 258285.796799998730421 ], [ 357405.141500003635883, 258299.50450000166893 ], [ 357402.014499999582767, 258303.325500000268221 ], [ 357431.119300000369549, 258335.865200001746416 ], [ 357450.060199998319149, 258318.7989999987185 ], [ 357454.934000000357628, 258314.61710000038147 ], [ 357439.045100003480911, 258286.622699998319149 ], [ 357431.097099997103214, 258273.047600001096725 ], [ 357385.17509999871254, 258268.238800000399351 ], [ 357389.14190000295639, 258275.870600000023842 ], [ 357388.261799998581409, 258284.518300000578165 ], [ 357382.55290000140667, 258292.070900000631809 ], [ 357376.858400002121925, 258297.934900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017900", "MAP": "D9-7712-T006", "PARCEL_NAM": "9AA-4", "ACRE": ".0408", "LONGITUDE": -64.94394111, "LATITUDE": 18.35470941, "OBJECTID_1": 4264, "PARCEL_NO_": "102803017900", "Tax_Legal_": "SOLBERG 11D-15 9AA-4 LERKENLUND", "Name": "LAURO, VINCENT ANDREW & ASHLEY MEEDER", "Address": "444 NW 1st Ave", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33301, "Country": "United States", "Land_Value": 71200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.872357137999998, "SHAPE_Area": 95.505320870700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357424.305799998342991, 258342.004299998283386 ], [ 357403.872000001370907, 258345.229899998754263 ], [ 357411.866800002753735, 258353.316899999976158 ], [ 357424.056800000369549, 258342.228700000792742 ], [ 357424.305799998342991, 258342.004299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032900", "MAP": "D9-7939-T007", "PARCEL_NAM": "99-3", "ACRE": "6.020", "LONGITUDE": -64.94833482, "LATITUDE": 18.3532069, "OBJECTID_1": 4383, "PARCEL_NO_": "102803032900", "Tax_Legal_": "99-3 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, LOUIS J.", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 303500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 607.24673239799995, "SHAPE_Area": 20657.025189600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356877.493199996650219, 258244.566899999976158 ], [ 357029.173100002110004, 258221.970100000500679 ], [ 357060.913800001144409, 258170.447599999606609 ], [ 357062.930200003087521, 258149.730000000447035 ], [ 357062.831000000238419, 258149.710200000554323 ], [ 356974.40990000218153, 258116.900299999862909 ], [ 356961.539499998092651, 258113.206399999558926 ], [ 356950.265500001609325, 258111.425400000065565 ], [ 356886.903399996459484, 258105.706799998879433 ], [ 356881.557099997997284, 258169.648299999535084 ], [ 356870.168399997055531, 258171.378400001674891 ], [ 356835.188299998641014, 258178.666700001806021 ], [ 356877.493199996650219, 258244.566899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704051200", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-5", "ACRE": ".503", "LONGITUDE": -64.94969224, "LATITUDE": 18.35355019, "OBJECTID_1": 3628, "PARCEL_NO_": "102704051200", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-5", "Name": "FREEMAN, MARJORIE", "Address": "PO Box 305365", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.64830240800001, "SHAPE_Area": 1769.70912213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356780.529799997806549, 258207.683600001037121 ], [ 356795.223099999129772, 258250.210799999535084 ], [ 356797.502700001001358, 258248.23030000180006 ], [ 356801.563100002706051, 258244.885999999940395 ], [ 356804.854900002479553, 258237.10249999910593 ], [ 356809.716099999845028, 258234.397999998182058 ], [ 356812.131399996578693, 258234.839999999850988 ], [ 356816.157600000500679, 258235.50620000064373 ], [ 356835.188299998641014, 258178.666700001806021 ], [ 356797.117200002074242, 258198.831199999898672 ], [ 356780.529799997806549, 258207.683600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021400", "MAP": "D3-63-T43", "PARCEL_NAM": "4", "ACRE": "4.35", "LONGITUDE": -64.94925223, "LATITUDE": 18.35284766, "OBJECTID_1": 4285, "PARCEL_NO_": "102803021400", "Tax_Legal_": "LILLIANDAHL & MARIENHOJ 4 MARIENHOJ LITTLE NOR", "Name": "BOSCHULTE LOUIS J HELM", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 181400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.79590352999998, "SHAPE_Area": 4181.2036154400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356816.561499997973442, 258104.48759999871254 ], [ 356835.188299998641014, 258178.666700001806021 ], [ 356870.168399997055531, 258171.378400001674891 ], [ 356881.557099997997284, 258169.648299999535084 ], [ 356886.903399996459484, 258105.706799998879433 ], [ 356883.388300001621246, 258105.389600001275539 ], [ 356839.071699999272823, 258101.438299998641014 ], [ 356829.394199997186661, 258101.570199999958277 ], [ 356818.086000002920628, 258103.799600001424551 ], [ 356816.561499997973442, 258104.48759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803033000", "MAP": "D9-7949-T007", "PARCEL_NAM": "99-4", "ACRE": "1.416", "LONGITUDE": -64.94654418, "LATITUDE": 18.35288709, "OBJECTID_1": 4384, "PARCEL_NO_": "102803033000", "Tax_Legal_": "99-4 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, LIONEL THEODORE", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 155900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 355.04058505099999, "SHAPE_Area": 5958.0961731799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357060.913800001144409, 258170.447599999606609 ], [ 357183.709799997508526, 258172.896800000220537 ], [ 357188.946599997580051, 258111.901200000196695 ], [ 357187.373499996960163, 258107.244300000369549 ], [ 357182.582400001585484, 258101.716600000858307 ], [ 357179.367899999022484, 258100.423700001090765 ], [ 357164.065999999642372, 258098.187600001692772 ], [ 357151.139799997210503, 258101.037099998444319 ], [ 357138.983999997377396, 258108.114799998700619 ], [ 357102.405000001192093, 258142.43470000103116 ], [ 357088.636600002646446, 258149.499200001358986 ], [ 357078.942800000309944, 258151.530799999833107 ], [ 357071.685999996960163, 258151.471400000154972 ], [ 357062.930200003087521, 258149.730000000447035 ], [ 357060.913800001144409, 258170.447599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803022000", "MAP": "D9-8158-T008", "PARCEL_NAM": "55-2", "ACRE": "1.653", "LONGITUDE": -64.94768858, "LATITUDE": 18.34902694, "OBJECTID_1": 4293, "PARCEL_NO_": "102803022000", "Tax_Legal_": "55-2 SOLBERG NO.1 LT NORTHSIDE QTR", "Name": "LA PLACE, KENNETH G.", "Address": "2-I Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 331600, "Improved_V": 28500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.37858940699999, "SHAPE_Area": 5735.0982573900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357006.156900003552437, 257660.242300000041723 ], [ 356981.021999999880791, 257653.759500000625849 ], [ 356990.946900002658367, 257690.204500000923872 ], [ 357016.744199998676777, 257785.61879999935627 ], [ 357026.47749999910593, 257778.943500000983477 ], [ 357062.260899998247623, 257743.350400000810623 ], [ 357040.230800002813339, 257678.997699998319149 ], [ 357034.370300002396107, 257663.445599999278784 ], [ 357031.925399996340275, 257664.578600000590086 ], [ 357023.032999999821186, 257663.916799999773502 ], [ 357012.963799998164177, 257662.066300000995398 ], [ 357006.156900003552437, 257660.242300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803029800", "MAP": "C9-330-T92", "PARCEL_NAM": "1A-3B", "ACRE": "1.52", "LONGITUDE": -64.94796488, "LATITUDE": 18.34825774, "OBJECTID_1": 4357, "PARCEL_NO_": "102803029800", "Tax_Legal_": "SOLBERG 1A-3B LITTLE NORTHSIDE", "Name": "FOUNDATION OF THE U. V. I. , INC.", "Address": "1A-3B ESTATE SOLBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 218200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.13774889199999, "SHAPE_Area": 2414.6125808299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357019.859999999403954, 257619.284099999815226 ], [ 357017.52929999679327, 257598.807399999350309 ], [ 357011.843699999153614, 257603.616099998354912 ], [ 357006.170800000429153, 257606.94709999859333 ], [ 356996.476999998092651, 257608.978700000792742 ], [ 356989.216600000858307, 257609.341499999165535 ], [ 356980.363399997353554, 257607.369199998676777 ], [ 356973.905699998140335, 257608.160700000822544 ], [ 356967.383299998939037, 257616.551100000739098 ], [ 356964.089699998497963, 257624.545699998736382 ], [ 356960.821299999952316, 257629.585200000554323 ], [ 356959.151100002229214, 257636.326499998569489 ], [ 356960.785199999809265, 257646.742600001394749 ], [ 356979.163900002837181, 257646.936200000345707 ], [ 356985.601800002157688, 257647.004099998623133 ], [ 357006.52759999781847, 257651.1064000017941 ], [ 357021.624200001358986, 257654.766499999910593 ], [ 357023.929799996316433, 257655.040100000798702 ], [ 357021.952100001275539, 257637.664900001138449 ], [ 357019.859999999403954, 257619.284099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021600", "MAP": "D9-1590-T80", "PARCEL_NAM": "100", "ACRE": null, "LONGITUDE": -64.94007629, "LATITUDE": 18.34653455, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.351632892, "SHAPE_Area": 559.75556168399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357804.603299997746944, 257480.103799998760223 ], [ 357810.374499998986721, 257483.82039999961853 ], [ 357827.816399998962879, 257460.28489999845624 ], [ 357836.688799999654293, 257446.749400001019239 ], [ 357839.789300002157688, 257435.888300001621246 ], [ 357845.861199997365475, 257404.212600000202656 ], [ 357842.046800002455711, 257403.44310000166297 ], [ 357839.531700000166893, 257403.938900001347065 ], [ 357831.452799998223782, 257444.800700001418591 ], [ 357813.153899997472763, 257468.645100001245737 ], [ 357804.603299997746944, 257480.103799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803033800", "MAP": "D9-8204-T008", "PARCEL_NAM": "100-8", "ACRE": ".23", "LONGITUDE": -64.93971285000001, "LATITUDE": 18.34535156, "OBJECTID_1": 4388, "PARCEL_NO_": "102803033800", "Tax_Legal_": "100-8 SOLBERG NO.1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, EMILE WILLIAM", "Address": "PO Box 305882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.17453208000001, "SHAPE_Area": 1360.5106408199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357859.166299998760223, 257339.7179000005126 ], [ 357886.596100002527237, 257335.13399999961257 ], [ 357880.501500003039837, 257298.045800000429153 ], [ 357876.965999998152256, 257280.530900001525879 ], [ 357844.319899998605251, 257315.949000000953674 ], [ 357855.256999999284744, 257325.331599999219179 ], [ 357859.222000002861023, 257333.174499999731779 ], [ 357859.166299998760223, 257339.7179000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803033900", "MAP": "D9-8204-T008", "PARCEL_NAM": "100-9", "ACRE": "4.573", "LONGITUDE": -64.93947789000001, "LATITUDE": 18.34612329, "OBJECTID_1": 4389, "PARCEL_NO_": "102803033900", "Tax_Legal_": "PAR 100-9 REM, 100-9-2 & 100-9-A (ROW) SOLBERG 1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, LAWRENCE T", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 845.14590117900002, "SHAPE_Area": 19940.393837 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357876.965999998152256, 257280.530900001525879 ], [ 357880.501500003039837, 257298.045800000429153 ], [ 357886.596100002527237, 257335.13399999961257 ], [ 357859.166299998760223, 257339.717999998480082 ], [ 357851.618199996650219, 257373.853300001472235 ], [ 357845.861199997365475, 257404.212600000202656 ], [ 357839.789300002157688, 257435.888300001621246 ], [ 357836.688799999654293, 257446.749400001019239 ], [ 357827.816399998962879, 257460.28489999845624 ], [ 357810.374499998986721, 257483.82039999961853 ], [ 357900.320200003683567, 257525.605999998748302 ], [ 357939.144799999892712, 257416.999499998986721 ], [ 357940.807700000703335, 257411.10249999910593 ], [ 357946.604800000786781, 257393.206999998539686 ], [ 357950.866499997675419, 257366.221900001168251 ], [ 357957.662299998104572, 257325.747600000351667 ], [ 357924.648400001227856, 257320.199999999254942 ], [ 357935.646600000560284, 257259.706199999898672 ], [ 357920.601700000464916, 257227.285700000822544 ], [ 357913.309000000357628, 257231.447900000959635 ], [ 357921.255199998617172, 257245.234000001102686 ], [ 357906.394799999892712, 257292.362900000065565 ], [ 357885.708099998533726, 257297.057199999690056 ], [ 357879.951700001955032, 257266.216400001198053 ], [ 357874.39919999986887, 257255.405200000852346 ], [ 357868.7246999964118, 257258.999800000339746 ], [ 357874.18469999730587, 257268.585900001227856 ], [ 357876.965999998152256, 257280.530900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301010500", "MAP": "D9-6565-T99", "PARCEL_NAM": "40", "ACRE": null, "LONGITUDE": -64.94244561, "LATITUDE": 18.34477328, "OBJECTID_1": 8943, "PARCEL_NO_": "105301010500", "Tax_Legal_": "SOLBERG 40 LITTLE NORTH SIDE", "Name": "BRIN, ANN MARGARET and ALBERT", "Address": "P.O. BOX 5265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46100, "Improved_V": 89400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.489891511, "SHAPE_Area": 710.30382312200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357589.773100003600121, 257262.034200001507998 ], [ 357596.122500002384186, 257264.737799998372793 ], [ 357597.182300001382828, 257234.982299998402596 ], [ 357580.215599998831749, 257238.854200001806021 ], [ 357561.634400002658367, 257242.9239999987185 ], [ 357553.555100001394749, 257244.757699999958277 ], [ 357552.176299996674061, 257246.025499999523163 ], [ 357547.86599999666214, 257249.988499999046326 ], [ 357561.347599998116493, 257249.930599998682737 ], [ 357589.773100003600121, 257262.034200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301010100", "MAP": "D9-3455-T86", "PARCEL_NAM": "48", "ACRE": ".33", "LONGITUDE": -64.94254601, "LATITUDE": 18.34494366, "OBJECTID_1": 8940, "PARCEL_NO_": "105301010100", "Tax_Legal_": "SOLBERG 48 CROWN PRINCE QTR", "Name": "COOPER, VINCENT & FENNELA", "Address": "X2502-011 Mac", "City": "Des Moines", "State": "Iowa", "Zip": 50328, "Country": "United States", "Land_Value": 132100, "Improved_V": 51600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.49219637600001, "SHAPE_Area": 1185.1240401800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357588.448600001633167, 257286.496599998325109 ], [ 357596.122500002384186, 257264.737799998372793 ], [ 357589.773100003600121, 257262.034200001507998 ], [ 357561.347599998116493, 257249.930599998682737 ], [ 357547.86599999666214, 257249.988499999046326 ], [ 357547.034500002861023, 257252.936999998986721 ], [ 357546.861900001764297, 257273.200500000268221 ], [ 357548.463699996471405, 257274.480200000107288 ], [ 357566.163000002503395, 257279.269099999219179 ], [ 357578.225400000810623, 257283.167500000447035 ], [ 357588.448600001633167, 257286.496599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301010300", "MAP": "D9-8328-T009", "PARCEL_NAM": "47", "ACRE": ".10", "LONGITUDE": -64.94223171, "LATITUDE": 18.34504885, "OBJECTID_1": 8941, "PARCEL_NO_": "105301010300", "Tax_Legal_": "46 & 47 SOLBERG KRONDPRINDSENS QTR", "Name": "JAVANKA LARCHEVEAUX REOCABLE FAMILY TRUST", "Address": "2 Apt 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 118000, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.408556245900002, "SHAPE_Area": 524.60972980500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357596.122500002384186, 257264.737799998372793 ], [ 357588.448600001633167, 257286.496599998325109 ], [ 357612.803300000727177, 257294.427400000393391 ], [ 357612.980599999427795, 257266.714299999177456 ], [ 357606.275600001215935, 257266.468600001186132 ], [ 357596.122500002384186, 257264.737799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301010300", "MAP": "D9-8328-T009", "PARCEL_NAM": "46", "ACRE": ".17", "LONGITUDE": -64.94204188, "LATITUDE": 18.34507645, "OBJECTID_1": 8941, "PARCEL_NO_": "105301010300", "Tax_Legal_": "46 & 47 SOLBERG KRONDPRINDSENS QTR", "Name": "JAVANKA LARCHEVEAUX REOCABLE FAMILY TRUST", "Address": "2 Apt 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 118000, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.290315565100002, "SHAPE_Area": 578.48362555799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357612.980599999427795, 257266.714299999177456 ], [ 357613.031700000166893, 257267.620400000363588 ], [ 357612.803300000727177, 257294.427400000393391 ], [ 357627.279100000858307, 257298.978900000452995 ], [ 357631.701300002634525, 257300.126899998635054 ], [ 357632.391699999570847, 257270.856199998408556 ], [ 357632.463299997150898, 257267.818300001323223 ], [ 357626.798799999058247, 257267.497299998998642 ], [ 357612.980599999427795, 257266.714299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301010400", "MAP": "D9-4220-T88", "PARCEL_NAM": "45", "ACRE": ".3125", "LONGITUDE": -64.94177946000001, "LATITUDE": 18.34510572, "OBJECTID_1": 8942, "PARCEL_NO_": "105301010400", "Tax_Legal_": "45 SOLBERG NO.1 LITTLE NORTHSIDE QTR.", "Name": "DARWEESH, ENAN D.", "Address": "PO Box 1495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 85800, "Improved_V": 267500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.24129072400001, "SHAPE_Area": 1257.5328580299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357632.463299997150898, 257267.818300001323223 ], [ 357632.391699999570847, 257270.856199998408556 ], [ 357631.701300002634525, 257300.126899998635054 ], [ 357646.589299999177456, 257303.99210000038147 ], [ 357660.294799998402596, 257304.31529999896884 ], [ 357666.787500001490116, 257303.569400001317263 ], [ 357668.406300000846386, 257283.492899999022484 ], [ 357671.706399999558926, 257270.042100001126528 ], [ 357666.233999997377396, 257269.73200000077486 ], [ 357642.956200003623962, 257268.412900000810623 ], [ 357632.463299997150898, 257267.818300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803024600", "MAP": "D9-8319-T009", "PARCEL_NAM": "96C", "ACRE": "1.074", "LONGITUDE": -64.94853143, "LATITUDE": 18.35159338, "OBJECTID_1": 4315, "PARCEL_NO_": "102803024600", "Tax_Legal_": "SOLBERG 96 LT. NORTHSIDE", "Name": "BOSCHULTE, CHRISTIAN & E", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 334000, "Improved_V": 523800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.28575803699999, "SHAPE_Area": 4627.0934436899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356896.703000001609325, 258034.180900000035763 ], [ 356936.37049999833107, 258039.260499998927116 ], [ 356968.494499996304512, 258008.579799998551607 ], [ 356964.827299997210503, 258006.042100001126528 ], [ 356952.664399996399879, 257998.033599998801947 ], [ 356951.733499996364117, 257996.862799998372793 ], [ 356951.518299996852875, 257995.195099998265505 ], [ 356952.313699997961521, 257993.400699999183416 ], [ 356955.43469999730587, 257991.496700000017881 ], [ 356962.354900002479553, 257990.835999999195337 ], [ 356979.534500002861023, 257988.549800001084805 ], [ 356981.190600000321865, 257983.544700000435114 ], [ 356978.802199997007847, 257979.936500001698732 ], [ 356973.201200000941753, 257974.824400000274181 ], [ 356942.683600001037121, 257960.220300000160933 ], [ 356923.308700002729893, 257962.806000001728535 ], [ 356899.398699998855591, 257967.364999998360872 ], [ 356896.703000001609325, 258034.180900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803024600", "MAP": "D9-8333-T009", "PARCEL_NAM": "96D", "ACRE": "1.273", "LONGITUDE": -64.94787773, "LATITUDE": 18.35182835, "OBJECTID_1": 4315, "PARCEL_NO_": "102803024600", "Tax_Legal_": "SOLBERG 96 LT. NORTHSIDE", "Name": "BOSCHULTE, CHRISTIAN & E", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 334000, "Improved_V": 523800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.91620597600001, "SHAPE_Area": 5791.7865384799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356936.37049999833107, 258039.260499998927116 ], [ 356963.755300000309944, 258061.431000001728535 ], [ 356980.701200000941753, 258056.89979999884963 ], [ 356993.170100003480911, 258054.199799999594688 ], [ 357016.693199999630451, 258049.488600000739098 ], [ 357031.98200000077486, 258046.578000001609325 ], [ 357048.863399997353554, 258049.982999999076128 ], [ 357050.976899996399879, 258050.000199999660254 ], [ 357052.393500000238419, 258049.078000001609325 ], [ 357053.353699997067451, 258046.51799999922514 ], [ 357055.115500003099442, 258045.718100000172853 ], [ 357040.794699996709824, 257991.420800000429153 ], [ 357039.700800001621246, 257987.061500001698732 ], [ 356984.14299999922514, 257992.754900000989437 ], [ 356963.207500003278255, 257995.945700000971556 ], [ 356961.857100002467632, 257997.265599999576807 ], [ 356965.846199996769428, 258000.06980000063777 ], [ 356972.21169999986887, 258004.501200001686811 ], [ 356968.494499996304512, 258008.579799998551607 ], [ 356936.37049999833107, 258039.260499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803024600", "MAP": "D9-1342-T77", "PARCEL_NAM": "96", "ACRE": null, "LONGITUDE": -64.94815182000001, "LATITUDE": 18.35228281, "OBJECTID_1": 4315, "PARCEL_NO_": "102803024600", "Tax_Legal_": "SOLBERG 96 LT. NORTHSIDE", "Name": "BOSCHULTE, CHRISTIAN & E", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 334000, "Improved_V": 523800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 445.15216521299999, "SHAPE_Area": 8621.1776301699992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357055.115500003099442, 258045.718100000172853 ], [ 357053.353699997067451, 258046.51799999922514 ], [ 357052.393500000238419, 258049.078000001609325 ], [ 357050.976899996399879, 258050.000199999660254 ], [ 357048.863399997353554, 258049.982999999076128 ], [ 357031.98200000077486, 258046.578000001609325 ], [ 357016.693199999630451, 258049.488600000739098 ], [ 356993.170100003480911, 258054.199799999594688 ], [ 356980.701200000941753, 258056.89979999884963 ], [ 356963.755300000309944, 258061.431000001728535 ], [ 356936.37049999833107, 258039.260499998927116 ], [ 356896.703000001609325, 258034.180900000035763 ], [ 356896.370999999344349, 258042.410900000482798 ], [ 356894.147900000214577, 258097.511900000274181 ], [ 356956.786100000143051, 258103.246100001037121 ], [ 356973.688100002706051, 258106.973000001162291 ], [ 356998.606499999761581, 258116.254000000655651 ], [ 357061.883699998259544, 258071.597800001502037 ], [ 357057.198600001633167, 258053.616500001400709 ], [ 357055.115500003099442, 258045.718100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301010700", "MAP": "D9-6565-T99", "PARCEL_NAM": "42", "ACRE": null, "LONGITUDE": -64.94204787, "LATITUDE": 18.34479853, "OBJECTID_1": 8945, "PARCEL_NO_": "105301010700", "Tax_Legal_": "42 SOLBERG LITTLE NORTHSIDE QTR", "Name": "HODGE, ALWYN & ILEEN", "Address": "PO Box 6223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65100, "Improved_V": 237500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.86394506800001, "SHAPE_Area": 636.27039341099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357632.463299997150898, 257267.818300001323223 ], [ 357633.017800003290176, 257236.90260000154376 ], [ 357627.806000001728535, 257237.132800001651049 ], [ 357611.206500001251698, 257235.256999999284744 ], [ 357612.980599999427795, 257266.714299999177456 ], [ 357626.798799999058247, 257267.497299998998642 ], [ 357632.463299997150898, 257267.818300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301010800", "MAP": "D9-8363-T009", "PARCEL_NAM": "43 ( CON)", "ACRE": ".364", "LONGITUDE": -64.94175487, "LATITUDE": 18.34480226, "OBJECTID_1": 8946, "PARCEL_NO_": "105301010800", "Tax_Legal_": "43 ESTATE SOLBERG LITTLE NORTHSIDE", "Name": "HODGE, CAMPBELL & DONAH", "Address": "PO Box 9314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.96358054699999, "SHAPE_Area": 1344.4133000899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357633.017800003290176, 257236.90260000154376 ], [ 357632.463299997150898, 257267.818300001323223 ], [ 357642.956200003623962, 257268.412900000810623 ], [ 357666.233999997377396, 257269.73200000077486 ], [ 357671.706399999558926, 257270.042100001126528 ], [ 357673.584899999201298, 257259.750900000333786 ], [ 357671.643899999558926, 257232.503100000321865 ], [ 357666.539599999785423, 257233.861200001090765 ], [ 357643.939499996602535, 257236.420400001108646 ], [ 357633.017800003290176, 257236.90260000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95950211, "LATITUDE": 18.33954057, "OBJECTID_1": 8515, "PARCEL_NO_": "105203015300", "Tax_Legal_": "CONTANT 29A 7A S S QTR", "Name": "RAMOS, JUAN", "Address": "10 Blding Paul M Pearson Gdns", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.10228418, "SHAPE_Area": 468.563079759 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355792.594899997115135, 256659.337000001221895 ], [ 355791.013099998235703, 256650.091499999165535 ], [ 355789.071900002658367, 256650.503299999982119 ], [ 355787.296700000762939, 256650.879799999296665 ], [ 355788.433899998664856, 256646.818300001323223 ], [ 355789.635300002992153, 256642.527499999850988 ], [ 355791.125799998641014, 256642.208099998533726 ], [ 355790.700900003314018, 256638.384500000625849 ], [ 355787.1216000020504, 256639.238299999386072 ], [ 355779.045900002121925, 256640.649900000542402 ], [ 355775.989699997007847, 256641.157499998807907 ], [ 355777.160800002515316, 256648.965300001204014 ], [ 355771.73139999806881, 256649.843600001186132 ], [ 355771.097199998795986, 256649.946199998259544 ], [ 355773.906800001859665, 256669.057799998670816 ], [ 355793.583700001239777, 256664.622600000351667 ], [ 355792.594899997115135, 256659.337000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803026600", "MAP": "D9-8158-T008", "PARCEL_NAM": "55B-3", "ACRE": "2.440", "LONGITUDE": -64.94672346, "LATITUDE": 18.34968101, "OBJECTID_1": 4332, "PARCEL_NO_": "102803026600", "Tax_Legal_": "55B-3 REM SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "HUSSEIN MUSTAFA AND SONS TRUST", "Address": "PO Box 10200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 207800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 405.30237468600001, "SHAPE_Area": 10047.428094299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357146.07660000026226, 257855.6858000010252 ], [ 357155.45269999653101, 257841.721700001507998 ], [ 357166.551100000739098, 257823.370600000023842 ], [ 357173.931199997663498, 257813.454199999570847 ], [ 357185.121399998664856, 257803.673300001770258 ], [ 357158.878200002014637, 257760.606499999761581 ], [ 357131.052799999713898, 257713.938200000673532 ], [ 357122.371699996292591, 257720.526799999177456 ], [ 357113.515100002288818, 257724.989700000733137 ], [ 357100.074400000274181, 257732.136199999600649 ], [ 357086.045100003480911, 257736.859400000423193 ], [ 357075.044799998402596, 257743.118700001388788 ], [ 357065.441200003027916, 257748.653799999505281 ], [ 357091.430900000035763, 257821.482700001448393 ], [ 357104.858000002801418, 257857.791799999773502 ], [ 357132.168799996376038, 257848.600699998438358 ], [ 357146.07660000026226, 257855.6858000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803011500", "MAP": "D9-1136-T73", "PARCEL_NAM": "19E", "ACRE": null, "LONGITUDE": -64.9425033, "LATITUDE": 18.35346254, "OBJECTID_1": 4188, "PARCEL_NO_": "102803011500", "Tax_Legal_": "SOLBERG 19E LITTLE NORTHSIDE QTR", "Name": "MARSHALL A. BELL & NANCY E. REVOCABLE LIVING TRUST", "Address": "PO Box 1686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 80100, "Improved_V": 627200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.50430324199999, "SHAPE_Area": 1554.07759154 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357577.846400000154972, 258253.372900001704693 ], [ 357579.688799999654293, 258247.24379999935627 ], [ 357584.526799999177456, 258221.562399998307228 ], [ 357572.150700002908707, 258185.54280000180006 ], [ 357566.549699999392033, 258180.430700000375509 ], [ 357560.124399997293949, 258177.422800000756979 ], [ 357554.487400002777576, 258176.532299999147654 ], [ 357546.181500002741814, 258204.961899999529123 ], [ 357545.11710000038147, 258208.769099999219179 ], [ 357559.564300000667572, 258221.856199998408556 ], [ 357577.846400000154972, 258253.372900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803011400", "MAP": "D9-8602-T010", "PARCEL_NAM": "19D REM", "ACRE": ".500", "LONGITUDE": -64.94235854, "LATITUDE": 18.3541956, "OBJECTID_1": 4187, "PARCEL_NO_": "102803011400", "Tax_Legal_": "SOLBERG 19D LITTLE NORTHSIDE QTR", "Name": "NORKAITIS, PAULA D", "Address": "PO Box 308336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99000, "Improved_V": 313700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.882647072, "SHAPE_Area": 1901.4909625800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357577.846400000154972, 258253.372900001704693 ], [ 357590.743199996650219, 258274.293999999761581 ], [ 357584.16669999808073, 258305.655499998480082 ], [ 357566.720200002193451, 258290.387699998915195 ], [ 357564.750799998641014, 258296.939599998295307 ], [ 357563.07880000025034, 258303.892000000923872 ], [ 357556.444899998605251, 258325.369300000369549 ], [ 357553.271700002253056, 258334.096999999135733 ], [ 357558.050700001418591, 258333.79619999974966 ], [ 357585.674699999392033, 258332.057799998670816 ], [ 357588.737000003457069, 258320.989500001072884 ], [ 357602.507100000977516, 258254.811000000685453 ], [ 357599.00789999961853, 258251.20160000026226 ], [ 357593.433799996972084, 258242.923300001770258 ], [ 357589.461599998176098, 258235.924699999392033 ], [ 357584.526799999177456, 258221.562399998307228 ], [ 357579.688799999654293, 258247.24379999935627 ], [ 357577.846400000154972, 258253.372900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803011600", "MAP": "D9-8607-T010", "PARCEL_NAM": "19E-1", "ACRE": ".695", "LONGITUDE": -64.94255025, "LATITUDE": 18.35390639, "OBJECTID_1": 4189, "PARCEL_NO_": "102803011600", "Tax_Legal_": "SOLBERG 19E-1 LITTLE NORTHSIDE", "Name": "NORKATIS, PAULA D", "Address": "PO Box 308336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 89400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.904042323, "SHAPE_Area": 2825.6038328 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357566.720200002193451, 258290.387699998915195 ], [ 357584.16669999808073, 258305.655499998480082 ], [ 357590.743199996650219, 258274.293999999761581 ], [ 357577.846400000154972, 258253.372900001704693 ], [ 357559.564300000667572, 258221.856199998408556 ], [ 357545.11710000038147, 258208.769099999219179 ], [ 357532.874099999666214, 258252.560199998319149 ], [ 357535.246299996972084, 258258.067999999970198 ], [ 357552.773000001907349, 258283.12049999833107 ], [ 357564.750799998641014, 258296.939599998295307 ], [ 357566.720200002193451, 258290.387699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803043000", "MAP": "D9-8610-T010", "PARCEL_NAM": "97-4-2-A", "ACRE": ".500", "LONGITUDE": -64.9451823, "LATITUDE": 18.35226684, "OBJECTID_1": 4411, "PARCEL_NO_": "102803043000", "Tax_Legal_": "SOLBERG 97-4-2 LT NORTHSIDE", "Name": "WATSON, MICHAEL A. & JUDITH A.", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 138700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.3358985, "SHAPE_Area": 2068.4285707499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357316.453599996864796, 258079.0636 ], [ 357316.3462999984622, 258058.500700000673532 ], [ 357278.596199996769428, 258056.429200001060963 ], [ 357257.164099998772144, 258055.253199998289347 ], [ 357260.868400000035763, 258093.702500000596046 ], [ 357270.211099997162819, 258104.353500001132488 ], [ 357295.888199999928474, 258090.3108000010252 ], [ 357316.453599996864796, 258079.0636 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803043000", "MAP": "D9-8610-T010", "PARCEL_NAM": "97-4-2 REM", "ACRE": ".500", "LONGITUDE": -64.94516064, "LATITUDE": 18.35199686, "OBJECTID_1": 4411, "PARCEL_NO_": "102803043000", "Tax_Legal_": "SOLBERG 97-4-2 LT NORTHSIDE", "Name": "WATSON, MICHAEL A. & JUDITH A.", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 138700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.52533709400001, "SHAPE_Area": 1257.6785632900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357316.243299998342991, 258038.747999999672174 ], [ 357295.454899996519089, 258036.700699999928474 ], [ 357288.567400000989437, 258036.022399999201298 ], [ 357267.28660000115633, 258025.8445999994874 ], [ 357257.164099998772144, 258055.253199998289347 ], [ 357278.596199996769428, 258056.429200001060963 ], [ 357316.3462999984622, 258058.500700000673532 ], [ 357316.243299998342991, 258038.747999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021600", "MAP": "D9-160-T58", "PARCEL_NAM": "56", "ACRE": "2.31", "LONGITUDE": -64.94851766, "LATITUDE": 18.35028702, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 653.633758435, "SHAPE_Area": 9160.5960875399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356934.345799997448921, 257658.740800000727177 ], [ 356934.288599997758865, 257658.703400000929832 ], [ 356919.119199998676777, 257791.997000001370907 ], [ 356903.199400000274181, 257956.941799998283386 ], [ 356934.690600000321865, 257951.922200001776218 ], [ 356964.322700001299381, 257949.258099999278784 ], [ 356934.345799997448921, 257658.740800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021700", "MAP": "C9-126-T77", "PARCEL_NAM": "55C", "ACRE": null, "LONGITUDE": -64.94788442, "LATITUDE": 18.35050275, "OBJECTID_1": 4290, "PARCEL_NO_": "102803021700", "Tax_Legal_": "SOLBERG 55C LITTLENORTHSIDE", "Name": "JOSEPH, NORRIS & DEFREITAS, KENROY", "Address": "PO Box 10979", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 255200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 439.49336321200002, "SHAPE_Area": 11460.991416700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357016.744199998676777, 257785.61879999935627 ], [ 356952.230099998414516, 257832.064300000667572 ], [ 356964.322700001299381, 257949.258099999278784 ], [ 357018.617200002074242, 257944.376499999314547 ], [ 357033.172200001776218, 257939.640500001609325 ], [ 357056.688299998641014, 257924.212000001221895 ], [ 357047.285899996757507, 257892.048799999058247 ], [ 357037.107699997723103, 257856.290699999779463 ], [ 357018.304700002074242, 257791.753299999982119 ], [ 357016.744199998676777, 257785.61879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021700", "MAP": "D9-8264-T009", "PARCEL_NAM": "55C-3", "ACRE": "2.129", "LONGITUDE": -64.94817224000001, "LATITUDE": 18.34924292, "OBJECTID_1": 4290, "PARCEL_NO_": "102803021700", "Tax_Legal_": "SOLBERG 55C LITTLENORTHSIDE", "Name": "JOSEPH, NORRIS & DEFREITAS, KENROY", "Address": "PO Box 10979", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 255200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 437.60692328800002, "SHAPE_Area": 9186.6778496999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356934.316600002348423, 257658.457499999552965 ], [ 356952.230099998414516, 257832.064300000667572 ], [ 357016.744199998676777, 257785.61879999935627 ], [ 356990.946900002658367, 257690.204500000923872 ], [ 356981.021999999880791, 257653.759500000625849 ], [ 356980.537699997425079, 257653.63459999859333 ], [ 356934.316600002348423, 257658.457499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021600", "MAP": "D9-160-T58", "PARCEL_NAM": "56", "ACRE": "2.31", "LONGITUDE": -64.94852614, "LATITUDE": 18.34852692, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.60063166039000004, "SHAPE_Area": 0.00755634008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356934.288599997758865, 257658.703400000929832 ], [ 356934.345799997448921, 257658.740800000727177 ], [ 356934.316600002348423, 257658.457499999552965 ], [ 356934.288599997758865, 257658.703400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202038000", "MAP": "A9-141-T70", "PARCEL_NAM": "79-1", "ACRE": ".41", "LONGITUDE": -64.95001352, "LATITUDE": 18.34580559, "OBJECTID_1": 8237, "PARCEL_NO_": "105202038000", "Tax_Legal_": "SOLBERG 79-1 LITTLE NORTHSIDE", "Name": "SEWER, IRVIN", "Address": "PO Box 131", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.99730366599999, "SHAPE_Area": 1828.45332654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356803.429899998009205, 257363.163499999791384 ], [ 356795.622100003063679, 257333.124299999326468 ], [ 356757.750600002706051, 257329.859000001102686 ], [ 356765.445100001990795, 257373.196199998259544 ], [ 356771.719400003552437, 257393.93470000103116 ], [ 356779.852700002491474, 257385.7685999982059 ], [ 356800.998400002717972, 257364.621199999004602 ], [ 356803.429899998009205, 257363.163499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046500", "MAP": "A9-755-T010", "PARCEL_NAM": "6-40", "ACRE": "1.084", "LONGITUDE": -64.94887202, "LATITUDE": 18.3506686, "OBJECTID_1": 3600, "PARCEL_NO_": "102704046500", "Tax_Legal_": "6 LILLIANDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "BRIN, MARK", "Address": "4916 MONTE VISTA PL", "City": "MOUNT VERNON", "State": "Washington", "Zip": 982730000, "Country": "United States", "Land_Value": 507400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.89406900199998, "SHAPE_Area": 3337.4052361 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356915.090400002896786, 257833.739900000393391 ], [ 356888.054899998009205, 257831.757500000298023 ], [ 356877.252199999988079, 257961.900800000876188 ], [ 356901.58500000089407, 257957.139699999243021 ], [ 356903.199400000274181, 257956.941799998283386 ], [ 356915.090400002896786, 257833.739900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046500", "MAP": "D9-7664-T005", "PARCEL_NAM": "6-38", "ACRE": "2.457", "LONGITUDE": -64.95037702, "LATITUDE": 18.35150406, "OBJECTID_1": 3600, "PARCEL_NO_": "102704046500", "Tax_Legal_": "6 LILLIANDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "BRIN, MARK", "Address": "4916 MONTE VISTA PL", "City": "MOUNT VERNON", "State": "Washington", "Zip": 982730000, "Country": "United States", "Land_Value": 507400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 452.86223384200002, "SHAPE_Area": 9875.9344831599992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356777.225900001823902, 257926.907999999821186 ], [ 356741.044900000095367, 257944.427499998360872 ], [ 356715.099500000476837, 257942.34739999845624 ], [ 356687.662299998104572, 257933.774300001561642 ], [ 356675.812299996614456, 257988.494600001722574 ], [ 356714.5996999964118, 258009.239799998700619 ], [ 356702.38120000064373, 258027.648400001227856 ], [ 356688.888999998569489, 258052.33729999884963 ], [ 356712.838500000536442, 258058.39750000089407 ], [ 356733.881700001657009, 258049.281599998474121 ], [ 356743.607799999415874, 258043.450599998235703 ], [ 356749.300599999725819, 258037.797699999064207 ], [ 356750.123099997639656, 258035.904500000178814 ], [ 356771.303000003099442, 258010.746700000017881 ], [ 356784.319099999964237, 257997.343199998140335 ], [ 356795.68469999730587, 257988.359200000762939 ], [ 356804.273599997162819, 257983.428199999034405 ], [ 356777.225900001823902, 257926.907999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046500", "MAP": "D9-4948-T90", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.9501402, "LATITUDE": 18.34994098, "OBJECTID_1": 3600, "PARCEL_NO_": "102704046500", "Tax_Legal_": "6 LILLIANDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "BRIN, MARK", "Address": "4916 MONTE VISTA PL", "City": "MOUNT VERNON", "State": "Washington", "Zip": 982730000, "Country": "United States", "Land_Value": 507400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1285.3470041099999, "SHAPE_Area": 6836.8688983000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356701.074799999594688, 257871.838300000876188 ], [ 356712.115699999034405, 257879.175900001078844 ], [ 356725.517599999904633, 257886.932100001722574 ], [ 356734.343599997460842, 257889.680300001055002 ], [ 356746.644100002944469, 257890.927000001072884 ], [ 356762.822400003671646, 257888.381400000303984 ], [ 356817.943300001323223, 257875.062100000679493 ], [ 356834.509400002658367, 257872.137200001627207 ], [ 356841.864799998700619, 257866.461100000888109 ], [ 356851.190099999308586, 257855.065099999308586 ], [ 356861.694300003349781, 257840.619600001722574 ], [ 356875.663699999451637, 257825.81980000063777 ], [ 356883.425499998033047, 257817.470199998468161 ], [ 356890.709200002253056, 257802.3429000005126 ], [ 356884.365299999713898, 257796.446600001305342 ], [ 356875.542400002479553, 257793.315999999642372 ], [ 356760.187100000679493, 257786.263099998235703 ], [ 356749.819300003349781, 257783.884799998253584 ], [ 356744.455399997532368, 257781.164700001478195 ], [ 356736.814400002360344, 257774.602200001478195 ], [ 356720.362800002098083, 257763.379799999296665 ], [ 356699.325900003314018, 257748.296300001442432 ], [ 356679.412100002169609, 257737.045899998396635 ], [ 356654.919299997389317, 257721.169700000435114 ], [ 356612.703599996864796, 257696.818999998271465 ], [ 356611.583400003612041, 257707.166499998420477 ], [ 356659.808700002729893, 257734.97520000115037 ], [ 356696.931100003421307, 257758.983800001442432 ], [ 356722.913099996745586, 257780.990200001746416 ], [ 356731.32039999961853, 257787.941199999302626 ], [ 356742.045100003480911, 257793.763900000602007 ], [ 356767.409400001168251, 257797.028400000184774 ], [ 356787.012699998915195, 257799.09910000115633 ], [ 356814.29730000346899, 257802.761700000613928 ], [ 356853.531800001859665, 257803.462000001221895 ], [ 356863.905900001525879, 257805.075599998235703 ], [ 356867.709299996495247, 257810.459899999201298 ], [ 356865.742499999701977, 257815.7972999997437 ], [ 356861.073600001633167, 257822.260000001639128 ], [ 356835.840000003576279, 257850.352099999785423 ], [ 356823.077399998903275, 257858.661100000143051 ], [ 356817.294699996709824, 257860.143800001591444 ], [ 356805.726400002837181, 257863.491500001400709 ], [ 356786.051899999380112, 257870.21510000154376 ], [ 356760.222499996423721, 257876.888799998909235 ], [ 356752.116300001740456, 257880.264600001275539 ], [ 356741.736100003123283, 257879.415800001472235 ], [ 356734.818099997937679, 257878.594999998807907 ], [ 356727.909299999475479, 257876.627099998295307 ], [ 356715.2550999969244, 257871.553599998354912 ], [ 356703.382600001990795, 257864.956900000572205 ], [ 356619.973800003528595, 257808.453499998897314 ], [ 356615.773199997842312, 257804.595600001513958 ], [ 356613.123700000345707, 257799.220800001174212 ], [ 356609.589000001549721, 257790.335299998521805 ], [ 356609.69820000231266, 257817.328999999910593 ], [ 356613.706799998879433, 257815.197500001639128 ], [ 356615.719700001180172, 257814.814300000667572 ], [ 356620.531400002539158, 257816.251499999314547 ], [ 356701.074799999594688, 257871.838300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046500", "MAP": "A9-755-T010", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.95031342, "LATITUDE": 18.35001883, "OBJECTID_1": 3600, "PARCEL_NO_": "102704046500", "Tax_Legal_": "6 LILLIANDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "BRIN, MARK", "Address": "4916 MONTE VISTA PL", "City": "MOUNT VERNON", "State": "Washington", "Zip": 982730000, "Country": "United States", "Land_Value": 507400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 571.33688823700004, "SHAPE_Area": 15402.841960600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356663.969400003552437, 257737.66609999909997 ], [ 356655.478699997067451, 257832.505499999970198 ], [ 356703.382600001990795, 257864.956900000572205 ], [ 356715.2550999969244, 257871.553599998354912 ], [ 356727.909299999475479, 257876.627099998295307 ], [ 356734.818099997937679, 257878.594999998807907 ], [ 356741.736100003123283, 257879.415800001472235 ], [ 356752.116300001740456, 257880.264600001275539 ], [ 356760.222499996423721, 257876.888799998909235 ], [ 356786.051899999380112, 257870.21510000154376 ], [ 356805.726400002837181, 257863.491500001400709 ], [ 356817.294699996709824, 257860.143800001591444 ], [ 356823.077399998903275, 257858.661100000143051 ], [ 356835.840000003576279, 257850.352099999785423 ], [ 356861.073600001633167, 257822.260000001639128 ], [ 356865.742499999701977, 257815.7972999997437 ], [ 356867.709299996495247, 257810.459899999201298 ], [ 356863.905900001525879, 257805.075599998235703 ], [ 356853.531800001859665, 257803.462000001221895 ], [ 356814.29730000346899, 257802.761700000613928 ], [ 356787.012699998915195, 257799.09910000115633 ], [ 356767.409400001168251, 257797.028400000184774 ], [ 356742.045100003480911, 257793.763900000602007 ], [ 356731.32039999961853, 257787.941199999302626 ], [ 356722.913099996745586, 257780.990200001746416 ], [ 356696.931100003421307, 257758.983800001442432 ], [ 356663.969400003552437, 257737.66609999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105202012100", "MAP": "D9-8335-T009", "PARCEL_NAM": "6-39", "ACRE": ".003", "LONGITUDE": -64.94982428, "LATITUDE": 18.34850899, "OBJECTID_1": 8030, "PARCEL_NO_": "105202012100", "Tax_Legal_": "2-8 UPPER JOHN DUNKO SOUTHSIDE QTR", "Name": "RICHARDS, ROBERT & ADEYEMI", "Address": "PO Box 305473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23800, "Improved_V": 215000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.777342048599998, "SHAPE_Area": 30.1428310346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356787.90259999781847, 257654.000799998641014 ], [ 356800.961099997162819, 257658.353500001132488 ], [ 356802.528899997472763, 257654.259500000625849 ], [ 356787.90259999781847, 257654.000799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301070200", "MAP": "G9-1978-T72", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.94926751, "LATITUDE": 18.34832154, "OBJECTID_1": 9221, "PARCEL_NO_": "105301070200", "Tax_Legal_": "UPPER JOHN DUNKOE 2-10 SOUTHSIDE QTR", "Name": "BROWNE, SPENCER G.", "Address": "PO Box 12173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19500, "Improved_V": 470400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.07255324400001, "SHAPE_Area": 1069.82286264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356876.190999999642372, 257634.889899998903275 ], [ 356867.290799997746944, 257628.608600001782179 ], [ 356860.919399999082088, 257619.268300000578165 ], [ 356856.95440000295639, 257611.425400000065565 ], [ 356841.57150000333786, 257618.687800001353025 ], [ 356836.713899999856949, 257620.969999998807907 ], [ 356841.673600003123283, 257634.986000001430511 ], [ 356848.783299997448921, 257655.077899999916553 ], [ 356868.314099997282028, 257655.423000000417233 ], [ 356875.048600003123283, 257637.867800001055002 ], [ 356876.190999999642372, 257634.889899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301070100", "MAP": "G9-1978-T72", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.94956017, "LATITUDE": 18.34836249, "OBJECTID_1": 9220, "PARCEL_NO_": "105301070100", "Tax_Legal_": "2-9 UPPER JOHN DUNKO NO.3A LITTLE NORTHSIDE", "Name": "JOSEPH, JEAN R.", "Address": "146-157 Annas Retreat", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21000, "Improved_V": 37700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.94880923299999, "SHAPE_Area": 1163.39049178 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356800.252199999988079, 257632.662300001829863 ], [ 356799.223300002515316, 257632.969099998474121 ], [ 356801.920500002801418, 257637.699599999934435 ], [ 356811.453000001609325, 257654.418299999088049 ], [ 356848.783299997448921, 257655.077899999916553 ], [ 356841.673600003123283, 257634.986000001430511 ], [ 356836.713899999856949, 257620.969999998807907 ], [ 356835.122800000011921, 257618.423900000751019 ], [ 356800.252199999988079, 257632.662300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202012200", "MAP": "G9-1978-T72", "PARCEL_NAM": null, "ACRE": ".22", "LONGITUDE": -64.94969355000001, "LATITUDE": 18.3481108, "OBJECTID_1": 8031, "PARCEL_NO_": "105202012200", "Tax_Legal_": "UPPER JOHN DUNKO 2-7 LITTLE NORTHSIDE", "Name": "PATRICK AND JANE DALLET REVOCABLE TRUST", "Address": "2513 Noble Dr", "City": "Tallahassee", "State": "Florida", "Zip": 32308, "Country": "United States", "Land_Value": 22300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.26027944500001, "SHAPE_Area": 1186.14070973 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356800.252199999988079, 257632.662300001829863 ], [ 356835.122800000011921, 257618.423799999058247 ], [ 356820.065399996936321, 257587.480999998748302 ], [ 356794.123199999332428, 257603.734000001102686 ], [ 356790.865599997341633, 257607.506999999284744 ], [ 356791.569399997591972, 257619.545099999755621 ], [ 356799.223300002515316, 257632.969099998474121 ], [ 356800.252199999988079, 257632.662300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105202012100", "MAP": "G9-1978-T72", "PARCEL_NAM": "2-8", "ACRE": null, "LONGITUDE": -64.94992445, "LATITUDE": 18.34837073, "OBJECTID_1": 8030, "PARCEL_NO_": "105202012100", "Tax_Legal_": "2-8 UPPER JOHN DUNKO SOUTHSIDE QTR", "Name": "RICHARDS, ROBERT & ADEYEMI", "Address": "PO Box 305473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23800, "Improved_V": 215000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.56548944100001, "SHAPE_Area": 1023.75097002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356785.100900001823902, 257621.603100001811981 ], [ 356770.00789999961853, 257628.096799999475479 ], [ 356767.895499996840954, 257653.648699998855591 ], [ 356811.453000001609325, 257654.418299999088049 ], [ 356801.920500002801418, 257637.699599999934435 ], [ 356791.569399997591972, 257619.545099999755621 ], [ 356785.100900001823902, 257621.603100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.951098, "LATITUDE": 18.34830698, "OBJECTID_1": 8027, "PARCEL_NO_": "105202011800", "Tax_Legal_": "26 UPPER JOHN DUNKO LITTLE NORTHSIDE QUARTER", "Name": "THOMPSON, ORIEL & GLORIA", "Address": "P.O. BOX 5237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33900, "Improved_V": 286500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.36933314, "SHAPE_Area": 853.7576652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356643.071199998259544, 257634.372800000011921 ], [ 356641.799699999392033, 257637.014400001615286 ], [ 356679.983300000429153, 257652.092099998146296 ], [ 356679.269000001251698, 257644.801600001752377 ], [ 356678.536399997770786, 257636.140700001269579 ], [ 356675.381300002336502, 257627.882199998944998 ], [ 356668.20719999819994, 257618.113200001418591 ], [ 356658.605099998414516, 257609.379799999296665 ], [ 356643.071199998259544, 257634.372800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803022800", "MAP": "D9-7042-T002", "PARCEL_NAM": "6-3", "ACRE": ".6056", "LONGITUDE": -64.94923458, "LATITUDE": 18.35103862, "OBJECTID_1": 4301, "PARCEL_NO_": "102803022800", "Tax_Legal_": "6-3 ESTATE LILLIENDAHL&MARIENHOJ No.3 LITTLE NORTHSIDE QTR.", "Name": "GOERGE, JONE & ALDONZA, MARTIA F", "Address": "PO Box 7441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98200, "Improved_V": 416000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.361276199, "SHAPE_Area": 2591.2812015600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356830.124300003051758, 257914.869100000709295 ], [ 356839.660499997437, 257971.157699998468161 ], [ 356861.199299998581409, 257965.041799999773502 ], [ 356877.252199999988079, 257961.900800000876188 ], [ 356882.218699999153614, 257903.013300001621246 ], [ 356830.124300003051758, 257914.869100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021900", "MAP": "D9-7042-T002", "PARCEL_NAM": "6-2", "ACRE": ".5976", "LONGITUDE": -64.9496623, "LATITUDE": 18.35114225, "OBJECTID_1": 4292, "PARCEL_NO_": "102803021900", "Tax_Legal_": "6-2 ESTATE LILLIENDAHL&MARIENHOJ No.3 LITTLE NORTHSIDE QTR.", "Name": "DANIEL, EZEKIEL & MARILYN A. H", "Address": "PO Box 304082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98200, "Improved_V": 420700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.62490622499999, "SHAPE_Area": 2681.92737915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356839.660499997437, 257971.157699998468161 ], [ 356830.124300003051758, 257914.869100000709295 ], [ 356777.225900001823902, 257926.907999999821186 ], [ 356804.273599997162819, 257983.428199999034405 ], [ 356809.460400000214577, 257980.450399998575449 ], [ 356813.508100003004074, 257978.583700001239777 ], [ 356839.660499997437, 257971.157699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704047000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95456382, "LATITUDE": 18.34838019, "OBJECTID_1": 3605, "PARCEL_NO_": "102704047000", "Tax_Legal_": "6A-14 LILLENDAHL & MARIENHOJ (CONS) NO.3 LITTLE NORTHSIDE QTR", "Name": "BRUNT, SHANE G and CRISTINA A", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026158, "Country": "United States", "Land_Value": 107000, "Improved_V": 406300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.06421650843, "SHAPE_Area": 0.00018036997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356296.33219999819994, 257637.236200001090765 ], [ 356296.3141999989748, 257637.2195999994874 ], [ 356296.308300003409386, 257637.234200000762939 ], [ 356296.33219999819994, 257637.236200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202014100", "MAP": "A9-681-T006", "PARCEL_NAM": "8", "ACRE": ".171", "LONGITUDE": -64.95373872, "LATITUDE": 18.34764328, "OBJECTID_1": 8050, "PARCEL_NO_": "105202014100", "Tax_Legal_": "UPPER JOHN DUNKO 8 SOUTHSIDE QTR", "Name": "SKELTON FAMILY REVOC TR", "Address": "PO Box 306754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22300, "Improved_V": 241300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.68738216099999, "SHAPE_Area": 881.161571944 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356392.981700003147125, 257574.960700001567602 ], [ 356409.475900001823902, 257561.645500000566244 ], [ 356383.374899998307228, 257545.065699998289347 ], [ 356372.955799996852875, 257537.592099998146296 ], [ 356359.33839999884367, 257526.925999999046326 ], [ 356363.278300002217293, 257537.723999999463558 ], [ 356372.784999996423721, 257557.644600000232458 ], [ 356383.137599997222424, 257572.928100001066923 ], [ 356386.446699999272823, 257580.236299999058247 ], [ 356392.981700003147125, 257574.960700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202011900", "MAP": "A9-19-T63", "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.95164981000001, "LATITUDE": 18.34796361, "OBJECTID_1": 8028, "PARCEL_NO_": "105202011900", "Tax_Legal_": "UPPER JOHN DUNKO 24 SOUTHSIDE QTR", "Name": "JEREMIAH, DENISE & HENRY, FANCENEL", "Address": "PO Box 307905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31000, "Improved_V": 225800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.99523517099999, "SHAPE_Area": 1005.66797367 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356622.760499998927116, 257601.761399999260902 ], [ 356630.723899997770786, 257593.563299998641014 ], [ 356609.650200001895428, 257581.959199998527765 ], [ 356599.202399998903275, 257577.862900000065565 ], [ 356591.949100002646446, 257577.381299998611212 ], [ 356577.1621999964118, 257580.814500000327826 ], [ 356608.550599999725819, 257616.390000000596046 ], [ 356622.760499998927116, 257601.761399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202011700", "MAP": "A9-19-T63", "PARCEL_NAM": "25", "ACRE": null, "LONGITUDE": -64.95137768, "LATITUDE": 18.34815971, "OBJECTID_1": 8026, "PARCEL_NO_": "105202011700", "Tax_Legal_": "UPPER JOHN DUNKO 25 SOUTHSIDE QTR", "Name": "KENDALL, SHARON & JEROME", "Address": "PO Box 9552", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42600, "Improved_V": 251500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.48164568300001, "SHAPE_Area": 1253.15463669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356630.723899997770786, 257593.563299998641014 ], [ 356622.760499998927116, 257601.761399999260902 ], [ 356608.550599999725819, 257616.390000000596046 ], [ 356608.487899996340275, 257623.746199999004602 ], [ 356641.799699999392033, 257637.014400001615286 ], [ 356643.071199998259544, 257634.372800000011921 ], [ 356658.605099998414516, 257609.379799999296665 ], [ 356652.993299998342991, 257605.534200001507998 ], [ 356635.333599999547005, 257596.101500000804663 ], [ 356630.723899997770786, 257593.563299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202011600", "MAP": "A9-19-T63", "PARCEL_NAM": "22", "ACRE": null, "LONGITUDE": -64.95185682, "LATITUDE": 18.34805662, "OBJECTID_1": 8025, "PARCEL_NO_": "105202011600", "Tax_Legal_": "UPPER JOHN DUNKOE 22 SOUTHSIDE QTR", "Name": "NANDLAL, RUSSELL & SUSAN", "Address": "PO Box 303247", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49100, "Improved_V": 236600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.349242914, "SHAPE_Area": 1109.26851622 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356573.056900002062321, 257617.967799998819828 ], [ 356608.487899996340275, 257623.746199999004602 ], [ 356608.550599999725819, 257616.390000000596046 ], [ 356577.1621999964118, 257580.814500000327826 ], [ 356571.75, 257582.071100000292063 ], [ 356559.356299996376038, 257585.507599998265505 ], [ 356573.056900002062321, 257617.967799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202011500", "MAP": "A9-19-T63", "PARCEL_NAM": "21", "ACRE": null, "LONGITUDE": -64.95214746000001, "LATITUDE": 18.3480503, "OBJECTID_1": 8024, "PARCEL_NO_": "105202011500", "Tax_Legal_": "UPPER JOHN DUNKOE 21 SOUTHSIDE QTR", "Name": "GORDON, SHENELL M.", "Address": "BOX 3945", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 199200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.334890208, "SHAPE_Area": 855.26551600300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356537.901199996471405, 257607.068799998611212 ], [ 356543.6587999984622, 257615.936299998313189 ], [ 356573.056900002062321, 257617.967799998819828 ], [ 356559.356299996376038, 257585.507599998265505 ], [ 356536.994000002741814, 257591.708099998533726 ], [ 356529.266099996864796, 257593.769499998539686 ], [ 356537.901199996471405, 257607.068799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202011400", "MAP": "A9-19-T63", "PARCEL_NAM": "18", "ACRE": null, "LONGITUDE": -64.95252532000001, "LATITUDE": 18.34813959, "OBJECTID_1": 8023, "PARCEL_NO_": "105202011400", "Tax_Legal_": "UPPER JOHN DUNKOE 18 LITTLE NORTHSIDE", "Name": "GARFIELD, ALDA", "Address": "P.O. BOX 2396", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.19788345000001, "SHAPE_Area": 1393.10768502 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356543.6587999984622, 257615.936299998313189 ], [ 356537.901199996471405, 257607.068799998611212 ], [ 356529.266099996864796, 257593.769499998539686 ], [ 356521.638099998235703, 257595.804299999028444 ], [ 356511.95160000026226, 257596.991599999368191 ], [ 356493.370399996638298, 257601.0614 ], [ 356489.905299998819828, 257601.971599999815226 ], [ 356484.013800002634525, 257603.519200000911951 ], [ 356498.077299997210503, 257635.671900000423193 ], [ 356507.700300000607967, 257630.875799998641014 ], [ 356538.403399996459484, 257615.57319999858737 ], [ 356543.6587999984622, 257615.936299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704045300", "MAP": "B9-145-T66", "PARCEL_NAM": "6A-17", "ACRE": ".82", "LONGITUDE": -64.95330454, "LATITUDE": 18.34848444, "OBJECTID_1": 3588, "PARCEL_NO_": "102704045300", "Tax_Legal_": "6A-17 LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "JEROME A E KNIGHT AND LISA E LA PLACE KINGHT REVOA", "Address": "6A-17 Lilliendahl & Marienhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64800, "Improved_V": 310700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.725110718, "SHAPE_Area": 2902.0814167399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356498.077299997210503, 257635.671900000423193 ], [ 356391.144500002264977, 257630.53489999845624 ], [ 356391.438799999654293, 257639.70160000026226 ], [ 356392.180399999022484, 257647.307000000029802 ], [ 356392.822999998927116, 257666.521800000220537 ], [ 356398.400700002908707, 257674.377900000661612 ], [ 356402.414300002157688, 257676.521699998527765 ], [ 356412.082800000905991, 257677.445199999958277 ], [ 356417.739600002765656, 257676.013799998909235 ], [ 356469.568400003015995, 257650.051300000399351 ], [ 356495.48369999974966, 257636.964600000530481 ], [ 356498.077299997210503, 257635.671900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202011300", "MAP": "A9-19-T63", "PARCEL_NAM": "17", "ACRE": null, "LONGITUDE": -64.95292283000001, "LATITUDE": 18.34822874, "OBJECTID_1": 8022, "PARCEL_NO_": "105202011300", "Tax_Legal_": "UPPER JOHN DUNKOE 17 SOUTHSIDE QTR", "Name": "CUFFY, ANDREW P. & BERTHA", "Address": "PO Box 9194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30000, "Improved_V": 186800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.399979723, "SHAPE_Area": 1238.2373968300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356441.37049999833107, 257628.892599999904633 ], [ 356438.990299999713898, 257632.833399999886751 ], [ 356498.077299997210503, 257635.671900000423193 ], [ 356484.013800002634525, 257603.519200000911951 ], [ 356471.549599997699261, 257606.793400000780821 ], [ 356458.636100001633167, 257608.165300000458956 ], [ 356455.542199999094009, 257606.76410000026226 ], [ 356441.37049999833107, 257628.892599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704047000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9543216, "LATITUDE": 18.34854801, "OBJECTID_1": 3605, "PARCEL_NO_": "102704047000", "Tax_Legal_": "6A-14 LILLENDAHL & MARIENHOJ (CONS) NO.3 LITTLE NORTHSIDE QTR", "Name": "BRUNT, SHANE G and CRISTINA A", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026158, "Country": "United States", "Land_Value": 107000, "Improved_V": 406300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.316408174, "SHAPE_Area": 3692.0362345899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356374.318499997258186, 257629.504099998623133 ], [ 356301.01860000193119, 257625.573600001633167 ], [ 356296.3141999989748, 257637.2195999994874 ], [ 356296.33219999819994, 257637.236200001090765 ], [ 356296.308300003409386, 257637.234200000762939 ], [ 356283.211300000548363, 257660.136199999600649 ], [ 356315.876299999654293, 257706.633099999278784 ], [ 356337.956299997866154, 257671.583500001579523 ], [ 356338.76410000026226, 257670.301199998706579 ], [ 356361.578299999237061, 257642.623599998652935 ], [ 356374.318499997258186, 257629.504099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202014000", "MAP": "A9-681-T006", "PARCEL_NAM": "6", "ACRE": ".468", "LONGITUDE": -64.9541459, "LATITUDE": 18.34765091, "OBJECTID_1": 8049, "PARCEL_NO_": "105202014000", "Tax_Legal_": "6 UPPER JOHN DUNKO SOUTHDIDE QUARTER", "Name": "DIETER WENDLAND TRUST", "Address": "PO Box 305806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 153500, "Improved_V": 56000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.21835036300001, "SHAPE_Area": 1833.7636751099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356352.060000002384186, 257529.399500001221895 ], [ 356330.313000001013279, 257526.477299999445677 ], [ 356328.606799997389317, 257537.440200001001358 ], [ 356319.417300000786781, 257574.939699999988079 ], [ 356316.944399997591972, 257581.252199999988079 ], [ 356314.709299996495247, 257587.516600001603365 ], [ 356370.545100003480911, 257567.980099998414516 ], [ 356363.912000000476837, 257557.994199998676777 ], [ 356359.945100001990795, 257550.362300001084805 ], [ 356352.060000002384186, 257529.399500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704070400", "MAP": "D9-7351-T004", "PARCEL_NAM": "6-4", "ACRE": ".508", "LONGITUDE": -64.95113474, "LATITUDE": 18.35135594, "OBJECTID_1": 3679, "PARCEL_NO_": "102704070400", "Tax_Legal_": "6-4 LILLIENDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "FRAZER, BERNICE", "Address": "2037 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.22807670399999, "SHAPE_Area": 1495.38573731 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356675.812299996614456, 257988.494600001722574 ], [ 356682.17849999666214, 257959.097100000828505 ], [ 356626.440499998629093, 257947.848799999803305 ], [ 356626.774999998509884, 257948.446299999952316 ], [ 356634.928300000727177, 257965.098200000822544 ], [ 356637.634900003671646, 257972.040100000798702 ], [ 356638.707000002264977, 257976.112900000065565 ], [ 356639.241700001060963, 257978.313999999314547 ], [ 356639.636100001633167, 257981.576699998229742 ], [ 356640.409000001847744, 257987.970899999141693 ], [ 356675.812299996614456, 257988.494600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704070600", "MAP": "A9-687-T006", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95152559, "LATITUDE": 18.35073177, "OBJECTID_1": 3681, "PARCEL_NO_": "102704070600", "Tax_Legal_": "LILLIENDAHL 6-6 LITTLE NORTHSIDE QTR", "Name": "HEATH, STEVEN", "Address": "17618 Baker Ave", "City": "COUNTRY CLUB HILLS", "State": "Illinois", "Zip": 60478, "Country": "United States", "Land_Value": 42500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.270980690599998, "SHAPE_Area": 73.0466056116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356618.791900001466274, 257915.397999998182058 ], [ 356611.782999999821186, 257870.409400001168251 ], [ 356612.601599998772144, 257880.376299999654293 ], [ 356615.4037000015378, 257914.493900001049042 ], [ 356618.791900001466274, 257915.397999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704070700", "MAP": "D9-7351-T004", "PARCEL_NAM": "6-7", "ACRE": ".586", "LONGITUDE": -64.9512046, "LATITUDE": 18.35036554, "OBJECTID_1": 3682, "PARCEL_NO_": "102704070700", "Tax_Legal_": "LILLIANDAHL 6-7 No.3 LITTLE NORTHSIDE QTR", "Name": "SMITH, STEVEN", "Address": "8191 Strawberry Lane", "City": "Falls Church", "State": "Virginia", "Zip": 220421043, "Country": "United States", "Land_Value": 48600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.722920036, "SHAPE_Area": 3973.4873896300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356611.782999999821186, 257870.409400001168251 ], [ 356695.16950000077486, 257899.107500001788139 ], [ 356695.726400002837181, 257896.535999998450279 ], [ 356701.074799999594688, 257871.838300000876188 ], [ 356620.531400002539158, 257816.251499999314547 ], [ 356615.719700001180172, 257814.814300000667572 ], [ 356613.706799998879433, 257815.197500001639128 ], [ 356609.69820000231266, 257817.328999999910593 ], [ 356609.816100001335144, 257846.460700001567602 ], [ 356610.332299999892712, 257852.746899999678135 ], [ 356611.782999999821186, 257870.409400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704047900", "MAP": "A9-690-T006", "PARCEL_NAM": "6-1", "ACRE": ".998", "LONGITUDE": -64.95096225, "LATITUDE": 18.35177359, "OBJECTID_1": 3610, "PARCEL_NO_": "102704047900", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6-1 LT.NORTHSIDE QTR.", "Name": "HUSSEIN, MUSA", "Address": "9B CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.148322358, "SHAPE_Area": 3108.9586253500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356702.38120000064373, 258027.648400001227856 ], [ 356714.5996999964118, 258009.239799998700619 ], [ 356675.812299996614456, 257988.494600001722574 ], [ 356640.409000001847744, 257987.970899999141693 ], [ 356638.644500002264977, 257987.94480000063777 ], [ 356640.721699997782707, 258004.822799999266863 ], [ 356646.983400002121925, 258027.038800001144409 ], [ 356651.770900003612041, 258032.988600000739098 ], [ 356662.191799998283386, 258040.2511 ], [ 356680.661499999463558, 258049.268199998885393 ], [ 356688.888999998569489, 258052.33729999884963 ], [ 356702.38120000064373, 258027.648400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704070400", "MAP": "A9-687-T006", "PARCEL_NAM": null, "ACRE": ".008", "LONGITUDE": -64.95134649000001, "LATITUDE": 18.35133501, "OBJECTID_1": 3679, "PARCEL_NO_": "102704070400", "Tax_Legal_": "6-4 LILLIENDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "FRAZER, BERNICE", "Address": "2037 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.109537088699994, "SHAPE_Area": 83.636317650099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356626.440499998629093, 257947.848799999803305 ], [ 356623.720399998128414, 257947.299899999052286 ], [ 356630.619099996984005, 257960.199299998581409 ], [ 356634.573299996554852, 257969.308699999004602 ], [ 356637.704999998211861, 257980.311200000345707 ], [ 356637.818000003695488, 257981.228999998420477 ], [ 356638.644500002264977, 257987.94480000063777 ], [ 356640.409000001847744, 257987.970899999141693 ], [ 356639.636100001633167, 257981.576699998229742 ], [ 356639.241700001060963, 257978.313999999314547 ], [ 356638.707000002264977, 257976.112900000065565 ], [ 356637.634900003671646, 257972.040100000798702 ], [ 356634.928300000727177, 257965.098200000822544 ], [ 356626.774999998509884, 257948.446299999952316 ], [ 356626.440499998629093, 257947.848799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704070500", "MAP": "D9-7351-T004", "PARCEL_NAM": "6-5", "ACRE": ".501", "LONGITUDE": -64.95117258000001, "LATITUDE": 18.35107374, "OBJECTID_1": 3680, "PARCEL_NO_": "102704070500", "Tax_Legal_": "6-5 LILLIENDAHL&MARIENHOJ No.3 LITTLE NORTHSIDE QUARTER", "Name": "ALTHEA ESPIRIT, ULRIC J. DAVID & CRYSTAL A. DAVID", "Address": "PO Box 10269", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40300, "Improved_V": 220400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.796164269, "SHAPE_Area": 1824.9536084399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356618.791900001466274, 257915.397999998182058 ], [ 356619.732799999415874, 257924.52419999986887 ], [ 356622.635600000619888, 257941.05350000038743 ], [ 356626.440499998629093, 257947.848799999803305 ], [ 356682.17849999666214, 257959.097100000828505 ], [ 356686.187899999320507, 257940.582400001585484 ], [ 356687.662299998104572, 257933.774300001561642 ], [ 356618.791900001466274, 257915.397999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704070500", "MAP": "A9-687-T006", "PARCEL_NAM": null, "ACRE": ".008", "LONGITUDE": -64.95148435, "LATITUDE": 18.35100361, "OBJECTID_1": 3680, "PARCEL_NO_": "102704070500", "Tax_Legal_": "6-5 LILLIENDAHL&MARIENHOJ No.3 LITTLE NORTHSIDE QUARTER", "Name": "ALTHEA ESPIRIT, ULRIC J. DAVID & CRYSTAL A. DAVID", "Address": "PO Box 10269", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40300, "Improved_V": 220400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.443205316800004, "SHAPE_Area": 102.112782053 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356619.732799999415874, 257924.52419999986887 ], [ 356618.791900001466274, 257915.397999998182058 ], [ 356615.4037000015378, 257914.493900001049042 ], [ 356616.156499996781349, 257923.660000000149012 ], [ 356616.391400001943111, 257926.519000001251698 ], [ 356620.289800003170967, 257942.171799998730421 ], [ 356621.888099998235703, 257943.873700000345707 ], [ 356623.720399998128414, 257947.299899999052286 ], [ 356626.440499998629093, 257947.848799999803305 ], [ 356622.635600000619888, 257941.05350000038743 ], [ 356619.732799999415874, 257924.52419999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046500", "MAP": "A9-755-T010", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.94985012, "LATITUDE": 18.35068306, "OBJECTID_1": 3600, "PARCEL_NO_": "102704046500", "Tax_Legal_": "6 LILLIANDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "BRIN, MARK", "Address": "4916 MONTE VISTA PL", "City": "MOUNT VERNON", "State": "Washington", "Zip": 982730000, "Country": "United States", "Land_Value": 507400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 597.72398428400004, "SHAPE_Area": 10260.928284199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356687.662299998104572, 257933.774300001561642 ], [ 356715.099500000476837, 257942.34739999845624 ], [ 356741.044900000095367, 257944.427499998360872 ], [ 356777.225900001823902, 257926.907999999821186 ], [ 356882.218699999153614, 257903.013300001621246 ], [ 356890.709200002253056, 257802.3429000005126 ], [ 356883.425499998033047, 257817.470199998468161 ], [ 356875.663699999451637, 257825.81980000063777 ], [ 356861.694300003349781, 257840.619600001722574 ], [ 356851.190099999308586, 257855.065099999308586 ], [ 356841.864799998700619, 257866.461100000888109 ], [ 356834.509400002658367, 257872.137200001627207 ], [ 356817.943300001323223, 257875.062100000679493 ], [ 356762.822400003671646, 257888.381400000303984 ], [ 356746.644100002944469, 257890.927000001072884 ], [ 356734.343599997460842, 257889.680300001055002 ], [ 356725.517599999904633, 257886.932100001722574 ], [ 356712.115699999034405, 257879.175900001078844 ], [ 356701.074799999594688, 257871.838300000876188 ], [ 356687.662299998104572, 257933.774300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704070600", "MAP": "D9-7351-T004", "PARCEL_NAM": "6-6", "ACRE": ".508", "LONGITUDE": -64.95117429, "LATITUDE": 18.35076204, "OBJECTID_1": 3681, "PARCEL_NO_": "102704070600", "Tax_Legal_": "LILLIENDAHL 6-6 LITTLE NORTHSIDE QTR", "Name": "HEATH, STEVEN", "Address": "17618 Baker Ave", "City": "COUNTRY CLUB HILLS", "State": "Illinois", "Zip": 60478, "Country": "United States", "Land_Value": 42500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.46818249399999, "SHAPE_Area": 3037.8849539100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356611.782999999821186, 257870.409400001168251 ], [ 356618.791900001466274, 257915.397999998182058 ], [ 356687.662299998104572, 257933.774300001561642 ], [ 356693.625799998641014, 257906.23589999973774 ], [ 356695.16950000077486, 257899.107500001788139 ], [ 356611.782999999821186, 257870.409400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704017300", "MAP": "A9-468-T95", "PARCEL_NAM": "10-1-13", "ACRE": ".02", "LONGITUDE": -64.95155778, "LATITUDE": 18.35750898, "OBJECTID_1": 3489, "PARCEL_NO_": "102704017300", "Tax_Legal_": "10-1-13 LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "HINKSON, MARTIN & CECILE", "Address": "PO Box 8563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.039601899199994, "SHAPE_Area": 91.9763110122 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356604.426299996674061, 258668.445900000631809 ], [ 356606.874899998307228, 258668.543200001120567 ], [ 356607.366800002753735, 258632.188700001686811 ], [ 356604.463600002229214, 258632.411100000143051 ], [ 356604.733400002121925, 258632.397799998521805 ], [ 356604.667499996721745, 258640.130399998277426 ], [ 356604.426299996674061, 258668.445900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704014200", "MAP": "D9-7681-T005", "PARCEL_NAM": "10-1 REM", "ACRE": "5.071", "LONGITUDE": -64.95143805, "LATITUDE": 18.35833805, "OBJECTID_1": 3467, "PARCEL_NO_": "102704014200", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 10-1REMAINDER No.3 GREAT NORTHSIDE QTR.", "Name": "INDUSTRIOUS, JUULIAN SR. & JULIAN JR. & FELICE & AYALA,KIMBERLY", "Address": "PO Box 304985", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 185300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 621.72457223499998, "SHAPE_Area": 8963.1214111099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356632.391400001943111, 258604.049199998378754 ], [ 356607.366800002753735, 258632.188700001686811 ], [ 356606.874899998307228, 258668.543200001120567 ], [ 356604.426299996674061, 258668.445900000631809 ], [ 356594.332500003278255, 258668.044799998402596 ], [ 356593.910300001502037, 258672.339699998497963 ], [ 356592.060300000011921, 258700.188900001347065 ], [ 356591.174900002777576, 258709.469700001180172 ], [ 356587.518100000917912, 258760.102299999445677 ], [ 356585.628499999642372, 258792.595199998468161 ], [ 356585.344400003552437, 258825.945700000971556 ], [ 356621.583499997854233, 258831.519600000232458 ], [ 356627.427299998700619, 258808.135999999940395 ], [ 356681.3800999969244, 258816.810300000011921 ], [ 356680.816500000655651, 258788.30799999833107 ], [ 356676.784999996423721, 258788.274999998509884 ], [ 356674.342699997127056, 258790.999299999326468 ], [ 356669.486800000071526, 258793.07039999961853 ], [ 356661.436300002038479, 258791.526900000870228 ], [ 356656.634400002658367, 258787.265700001269579 ], [ 356653.477399997413158, 258779.218299999833107 ], [ 356650.268399998545647, 258777.292199999094009 ], [ 356640.60700000077486, 258775.524399999529123 ], [ 356633.380800001323223, 258771.8766999989748 ], [ 356628.577100001275539, 258767.82660000026226 ], [ 356622.988600000739098, 258761.236900001764297 ], [ 356620.609200000762939, 258756.573399998247623 ], [ 356619.056000001728535, 258749.5945999994874 ], [ 356618.371899999678135, 258735.234600000083447 ], [ 356626.629299998283386, 258712.504099998623133 ], [ 356631.664899997413158, 258689.324999999254942 ], [ 356633.383599996566772, 258676.88459999859333 ], [ 356635.219200000166893, 258650.723999999463558 ], [ 356632.391400001943111, 258604.049199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702033500", "MAP": "F9-2940-T72", "PARCEL_NAM": "7-4", "ACRE": ".26", "LONGITUDE": -64.95211735, "LATITUDE": 18.35786597, "OBJECTID_1": 3077, "PARCEL_NO_": "102702033500", "Tax_Legal_": "7-4 LILLIENDAHL&MARNJ LT NORTHSIDE", "Name": "MALONE, REMEO & OTHERS", "Address": "BOX 1913", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 182800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.15526175900001, "SHAPE_Area": 1406.45394128 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356569.129399999976158, 258712.63289999961853 ], [ 356555.268700003623962, 258666.492400001734495 ], [ 356540.817500002682209, 258665.918200001120567 ], [ 356537.102200001478195, 258665.770500000566244 ], [ 356534.098099999129772, 258669.207100000232458 ], [ 356533.453000001609325, 258669.945000000298023 ], [ 356527.747699998319149, 258677.075500000268221 ], [ 356519.826999999582767, 258690.57149999961257 ], [ 356563.902300000190735, 258717.23030000180006 ], [ 356566.940600000321865, 258714.548700001090765 ], [ 356569.129399999976158, 258712.63289999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702035000", "MAP": "F9-2940-T72", "PARCEL_NAM": "7-4-1", "ACRE": ".25", "LONGITUDE": -64.95183527, "LATITUDE": 18.35782679, "OBJECTID_1": 3084, "PARCEL_NO_": "102702035000", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-4-1 LITTLE NORTHSIDE", "Name": "JACKSON, LLOYD and REHEMA", "Address": "215-316 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18500, "Improved_V": 227000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.146920588, "SHAPE_Area": 1212.5801015500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356555.268700003623962, 258666.492400001734495 ], [ 356569.129399999976158, 258712.63289999961853 ], [ 356571.002700001001358, 258710.993400000035763 ], [ 356578.293700002133846, 258707.042300000786781 ], [ 356578.530199997127056, 258706.087600000202656 ], [ 356579.128700003027916, 258703.671599999070168 ], [ 356585.595399998128414, 258701.824700001627207 ], [ 356592.060300000011921, 258700.188900001347065 ], [ 356593.910300001502037, 258672.339699998497963 ], [ 356594.332500003278255, 258668.044799998402596 ], [ 356555.268700003623962, 258666.492400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102702032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95223175, "LATITUDE": 18.35891687, "OBJECTID_1": 3073, "PARCEL_NO_": "102702032500", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-1B GR NORTHSIDE QTR", "Name": "MADURO, JENEFFER A.", "Address": "Po Box 623101", "City": "Oviedo", "State": "Florida", "Zip": 32762, "Country": "United States", "Land_Value": 25100, "Improved_V": 270000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.544333544, "SHAPE_Area": 277.59637826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356515.089400000870228, 258809.615899998694658 ], [ 356520.753100000321865, 258805.371899999678135 ], [ 356525.594499997794628, 258803.325899999588728 ], [ 356529.58839999884367, 258802.315699998289347 ], [ 356534.593999996781349, 258805.900800000876188 ], [ 356537.505300000309944, 258809.052000001072884 ], [ 356553.574600003659725, 258820.83500000089407 ], [ 356548.425399996340275, 258805.591099999845028 ], [ 356543.810000002384186, 258807.643399998545647 ], [ 356541.096600003540516, 258805.953400000929832 ], [ 356538.604699999094009, 258802.805599998682737 ], [ 356535.280599996447563, 258798.817099999636412 ], [ 356530.266599997878075, 258796.274399999529123 ], [ 356525.645099997520447, 258797.071100000292063 ], [ 356518.714599996805191, 258798.057599999010563 ], [ 356513.843599997460842, 258802.359999999403954 ], [ 356515.089400000870228, 258809.615899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702032800", "MAP": "F9-2731-T70", "PARCEL_NAM": "7-5-1", "ACRE": ".27", "LONGITUDE": -64.95222252000001, "LATITUDE": 18.35807676, "OBJECTID_1": 3076, "PARCEL_NO_": "102702032800", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-5-1 LT NORTHSIDE", "Name": "BONELLI, JUDY G", "Address": "PO Box 304004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.451293531, "SHAPE_Area": 1076.19307878 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356509.841099999845028, 258712.590399999171495 ], [ 356551.736100003123283, 258732.898899998515844 ], [ 356553.917300000786781, 258728.796500001102686 ], [ 356561.253200002014637, 258719.568399999290705 ], [ 356563.902300000190735, 258717.23030000180006 ], [ 356519.826999999582767, 258690.57149999961257 ], [ 356518.747000001370907, 258692.41160000115633 ], [ 356513.837200000882149, 258700.815200001001358 ], [ 356510.543600000441074, 258708.809799998998642 ], [ 356510.527500003576279, 258710.709499999880791 ], [ 356509.841099999845028, 258712.590399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702033600", "MAP": "F9-2732-T70", "PARCEL_NAM": "7-6-1", "ACRE": ".23", "LONGITUDE": -64.95233439, "LATITUDE": 18.35848083, "OBJECTID_1": 3078, "PARCEL_NO_": "102702033600", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-6-1 MARIENHOJ", "Name": "CELAIRE, AUSTIN", "Address": "2185 Pacific St", "City": "Brooklyn", "State": "New York", "Zip": 11233, "Country": "United States", "Land_Value": 22300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.43313307699999, "SHAPE_Area": 909.65296394200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356508.008400000631809, 258769.803300000727177 ], [ 356542.251000002026558, 258769.906599998474121 ], [ 356542.8141999989748, 258761.801100000739098 ], [ 356542.450300000607967, 258754.917399998754263 ], [ 356544.61540000140667, 258751.067699998617172 ], [ 356504.634400002658367, 258739.881700001657009 ], [ 356504.539800003170967, 258750.979400001466274 ], [ 356508.008400000631809, 258769.803300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702033700", "MAP": "F9-2731-T70", "PARCEL_NAM": "7-5", "ACRE": ".23", "LONGITUDE": -64.95230326, "LATITUDE": 18.35826666, "OBJECTID_1": 3079, "PARCEL_NO_": "102702033700", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-5 LITTLE NORHTSIDE", "Name": "SIMON, WINSTON S. & CAROLINE M.P.", "Address": "PO BOX 305533", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16100, "Improved_V": 191300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.606515414, "SHAPE_Area": 1053.76710903 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356551.736100003123283, 258732.898899998515844 ], [ 356509.841099999845028, 258712.590399999171495 ], [ 356507.224899999797344, 258719.759500000625849 ], [ 356504.651299998164177, 258737.892499998211861 ], [ 356504.634400002658367, 258739.881700001657009 ], [ 356544.61540000140667, 258751.067699998617172 ], [ 356547.317500002682209, 258746.263199999928474 ], [ 356551.458800002932549, 258733.420400001108646 ], [ 356551.736100003123283, 258732.898899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702032700", "MAP": "F9-2732-T70", "PARCEL_NAM": "7-6", "ACRE": ".27", "LONGITUDE": -64.95228514, "LATITUDE": 18.35873561, "OBJECTID_1": 3075, "PARCEL_NO_": "102702032700", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-6 LT. NORTHSIDE", "Name": "WILLIAMS, MICHAEL & ANNA", "Address": "BOX 4011", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27100, "Improved_V": 227100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.2005362, "SHAPE_Area": 994.58064281899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356542.251000002026558, 258769.906599998474121 ], [ 356508.008400000631809, 258769.803300000727177 ], [ 356509.263300001621246, 258776.613600000739098 ], [ 356513.843599997460842, 258802.359999999403954 ], [ 356518.714599996805191, 258798.057599999010563 ], [ 356525.645099997520447, 258797.071100000292063 ], [ 356530.266599997878075, 258796.274399999529123 ], [ 356535.280599996447563, 258798.817099999636412 ], [ 356538.604699999094009, 258802.805599998682737 ], [ 356541.096600003540516, 258805.953400000929832 ], [ 356543.810000002384186, 258807.643399998545647 ], [ 356548.425399996340275, 258805.591099999845028 ], [ 356542.589599996805191, 258787.363600000739098 ], [ 356542.006099998950958, 258773.430300001055002 ], [ 356542.251000002026558, 258769.906599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702032600", "MAP": "D9-663-T67", "PARCEL_NAM": "7-7", "ACRE": ".40", "LONGITUDE": -64.95221585, "LATITUDE": 18.3591475, "OBJECTID_1": 3074, "PARCEL_NO_": "102702032600", "Tax_Legal_": "LILLIENDAHL & MARIEHOJ 7-7 LT NORTHSIDE", "Name": "GEORGE, VANNETTA ENA", "Address": "PO Box 6202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.46168694400001, "SHAPE_Area": 1721.6687655799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356523.857299998402596, 258862.675299998372793 ], [ 356536.965000003576279, 258849.915300000458956 ], [ 356547.285499997437, 258844.785999998450279 ], [ 356552.472300000488758, 258846.084600001573563 ], [ 356566.1875, 258838.132699999958277 ], [ 356563.491300001740456, 258835.477099999785423 ], [ 356553.930600002408028, 258821.888900000602007 ], [ 356553.574600003659725, 258820.83500000089407 ], [ 356537.505300000309944, 258809.052000001072884 ], [ 356534.593999996781349, 258805.900800000876188 ], [ 356529.58839999884367, 258802.315699998289347 ], [ 356525.594499997794628, 258803.325899999588728 ], [ 356520.753100000321865, 258805.371899999678135 ], [ 356515.089400000870228, 258809.615899998694658 ], [ 356516.854599997401237, 258819.896699998527765 ], [ 356517.402000002563, 258850.298599999397993 ], [ 356518.962399996817112, 258856.433100000023842 ], [ 356523.748199999332428, 258862.594000000506639 ], [ 356523.857299998402596, 258862.675299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702031700", "MAP": "B9-232-T69", "PARCEL_NAM": "7-1", "ACRE": ".26", "LONGITUDE": -64.95157867, "LATITUDE": 18.35920089, "OBJECTID_1": 3067, "PARCEL_NO_": "102702031700", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-1 LITTLE NORTHSIDE QTR", "Name": "RAND, DONALD JOHN", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21000, "Improved_V": 200900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.419914037, "SHAPE_Area": 636.78566547699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356585.344400003552437, 258825.945700000971556 ], [ 356582.763599999248981, 258841.528400000184774 ], [ 356607.877499997615814, 258848.820900000631809 ], [ 356617.892300002276897, 258847.854899998754263 ], [ 356621.583499997854233, 258831.519600000232458 ], [ 356585.344400003552437, 258825.945700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95187271, "LATITUDE": 18.35895559, "OBJECTID_1": 3083, "PARCEL_NO_": "102702034100", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-2 LITTLE NORTHSIDE", "Name": "DAVID, GILBERT & DEBRA", "Address": "PO Box 306623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23600, "Improved_V": 204700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.15334035699999, "SHAPE_Area": 1031.88255097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356585.344400003552437, 258825.945700000971556 ], [ 356585.628499999642372, 258792.595199998468161 ], [ 356552.560699999332428, 258793.379999998956919 ], [ 356554.085199996829033, 258803.736099999397993 ], [ 356558.014300003647804, 258815.800599999725819 ], [ 356564.383900001645088, 258825.35190000012517 ], [ 356569.97410000115633, 258831.730500001460314 ], [ 356573.17960000038147, 258834.078699998557568 ], [ 356585.344400003552437, 258825.945700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702032400", "MAP": "B9-232-T69", "PARCEL_NAM": "7-1A", "ACRE": ".32", "LONGITUDE": -64.95160611, "LATITUDE": 18.35949295, "OBJECTID_1": 3072, "PARCEL_NO_": "102702032400", "Tax_Legal_": "7-1A LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "GEORGE-VANTERPOOL, CHERYL C & OTHERS", "Address": "PO Box 10391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23600, "Improved_V": 155400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.124319896, "SHAPE_Area": 1357.9996669499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356617.393700003623962, 258850.061500001698732 ], [ 356617.892300002276897, 258847.854899998754263 ], [ 356607.877499997615814, 258848.820900000631809 ], [ 356601.747699998319149, 258847.041000001132488 ], [ 356591.774499997496605, 258844.144999999552965 ], [ 356577.492799997329712, 258884.408500000834465 ], [ 356584.021999999880791, 258886.518699999898672 ], [ 356598.467299997806549, 258894.658500000834465 ], [ 356604.057499997317791, 258901.037000000476837 ], [ 356617.323600001633167, 258858.293600000441074 ], [ 356619.8091000020504, 258850.503499999642372 ], [ 356617.393700003623962, 258850.061500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702032600", "MAP": "D9-8314-T009", "PARCEL_NAM": "7-7A", "ACRE": ".01", "LONGITUDE": -64.95217084, "LATITUDE": 18.35933376, "OBJECTID_1": 3074, "PARCEL_NO_": "102702032600", "Tax_Legal_": "LILLIENDAHL & MARIEHOJ 7-7 LT NORTHSIDE", "Name": "GEORGE, VANNETTA ENA", "Address": "PO Box 6202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.2413545446, "SHAPE_Area": 93.834168061699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356552.472300000488758, 258846.084600001573563 ], [ 356547.285499997437, 258844.785999998450279 ], [ 356536.965000003576279, 258849.915300000458956 ], [ 356523.857299998402596, 258862.675299998372793 ], [ 356552.472300000488758, 258846.084600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702032500", "MAP": "B9-232-T69", "PARCEL_NAM": "7-1B", "ACRE": ".34", "LONGITUDE": -64.951946, "LATITUDE": 18.35940327, "OBJECTID_1": 3073, "PARCEL_NO_": "102702032500", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-1B GR NORTHSIDE QTR", "Name": "MADURO, JENEFFER A.", "Address": "Po Box 623101", "City": "Oviedo", "State": "Florida", "Zip": 32762, "Country": "United States", "Land_Value": 25100, "Improved_V": 270000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.83295554, "SHAPE_Area": 1924.7296901899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356591.774499997496605, 258844.144999999552965 ], [ 356582.763599999248981, 258841.528400000184774 ], [ 356585.344400003552437, 258825.945700000971556 ], [ 356573.17960000038147, 258834.078699998557568 ], [ 356566.1875, 258838.132699999958277 ], [ 356575.866800002753735, 258838.344999998807907 ], [ 356552.472300000488758, 258846.084600001573563 ], [ 356523.857299998402596, 258862.675299998372793 ], [ 356535.767300002276897, 258871.558299999684095 ], [ 356542.187299996614456, 258875.199400000274181 ], [ 356549.420699998736382, 258878.00279999896884 ], [ 356571.959700003266335, 258882.620299998670816 ], [ 356577.492799997329712, 258884.408500000834465 ], [ 356591.774499997496605, 258844.144999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702032500", "MAP": "D9-8314-T009", "PARCEL_NAM": "7-1B-1", "ACRE": ".015", "LONGITUDE": -64.95193122000001, "LATITUDE": 18.35923464, "OBJECTID_1": 3073, "PARCEL_NO_": "102702032500", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 7-1B GR NORTHSIDE QTR", "Name": "MADURO, JENEFFER A.", "Address": "Po Box 623101", "City": "Oviedo", "State": "Florida", "Zip": 32762, "Country": "United States", "Land_Value": 25100, "Improved_V": 270000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.176826476099997, "SHAPE_Area": 39.940281325800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356552.472300000488758, 258846.084600001573563 ], [ 356575.866800002753735, 258838.344999998807907 ], [ 356566.1875, 258838.132699999958277 ], [ 356552.472300000488758, 258846.084600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704041500", "MAP": "A9-690-T006", "PARCEL_NAM": "5-16", "ACRE": ".913", "LONGITUDE": -64.95127034, "LATITUDE": 18.35210715, "OBJECTID_1": 3555, "PARCEL_NO_": "102704041500", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 5-16 No.3 LITTLE NORTHSIDE QTR", "Name": "FOY, DARWIN E", "Address": "BOX 3806", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.85475530899998, "SHAPE_Area": 3969.8942617399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356630.630199998617172, 257994.878899998962879 ], [ 356597.12049999833107, 258036.612900000065565 ], [ 356601.687799997627735, 258043.344500001519918 ], [ 356612.069200001657009, 258055.250700000673532 ], [ 356626.397600002586842, 258077.110599998384714 ], [ 356630.391400001943111, 258081.576299998909235 ], [ 356635.999600000679493, 258085.844000000506639 ], [ 356652.867499999701977, 258093.581500001251698 ], [ 356676.383599996566772, 258078.153000000864267 ], [ 356702.311499997973442, 258063.588700000196695 ], [ 356674.968800000846386, 258054.921100001782179 ], [ 356653.293600000441074, 258043.555799998342991 ], [ 356642.888899996876717, 258034.3935999982059 ], [ 356638.922100000083447, 258026.761799998581409 ], [ 356634.217299997806549, 258011.102299999445677 ], [ 356631.843299999833107, 257993.368099998682737 ], [ 356630.630199998617172, 257994.878899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704041600", "MAP": "A9-687-T006", "PARCEL_NAM": null, "ACRE": "1.045", "LONGITUDE": -64.9516485, "LATITUDE": 18.35150393, "OBJECTID_1": 3556, "PARCEL_NO_": "102704041600", "Tax_Legal_": "LILLIENDAHL 5 17 LITTLE NORTHSIDE QTR", "Name": "LINEN HOUSE INC", "Address": "PO Box 6397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 73300, "Improved_V": 462600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.4306788, "SHAPE_Area": 3456.7128661299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356627.9966000020504, 257981.878499999642372 ], [ 356625.052000001072884, 257973.083500001579523 ], [ 356623.4679000005126, 257963.194600000977516 ], [ 356611.427599996328354, 257941.254900000989437 ], [ 356607.444600000977516, 257935.522799998521805 ], [ 356605.072400003671646, 257930.015000000596046 ], [ 356569.065999999642372, 257991.781800001859665 ], [ 356583.405199997127056, 258012.375199999660254 ], [ 356588.149599999189377, 258023.390900000929832 ], [ 356597.12049999833107, 258036.612900000065565 ], [ 356630.630199998617172, 257994.878899998962879 ], [ 356631.843299999833107, 257993.368099998682737 ], [ 356627.9966000020504, 257981.878499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704044100", "MAP": "F9-633-T60", "PARCEL_NAM": "6A-6", "ACRE": null, "LONGITUDE": -64.95478577, "LATITUDE": 18.34945012, "OBJECTID_1": 3577, "PARCEL_NO_": "102704044100", "Tax_Legal_": "LILLIENDAHL 6 A 6 LITTLE NORTHSIDE QTR", "Name": "WEBSTER, SR., KEN C. & ROSALYN", "Address": "PO Box 307768", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97700, "Improved_V": 900000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.31408426600001, "SHAPE_Area": 4039.2408442400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356299.55009999871254, 257777.566599998623133 ], [ 356318.322700001299381, 257764.306400001049042 ], [ 356317.024999998509884, 257761.104600001126528 ], [ 356309.026600003242493, 257753.439800001680851 ], [ 356257.827200002968311, 257705.524700000882149 ], [ 356235.704300001263618, 257746.717999998480082 ], [ 356244.363399997353554, 257771.486800000071526 ], [ 356248.398500002920628, 257771.097600001841784 ], [ 356250.810300000011921, 257771.96169999986887 ], [ 356252.408500000834465, 257773.663600001484156 ], [ 356259.485500000417233, 257794.830800000578165 ], [ 356261.082000002264977, 257796.743700001388788 ], [ 356263.470899999141693, 257803.051300000399351 ], [ 356299.55009999871254, 257777.566599998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704044200", "MAP": "A9-688-T006", "PARCEL_NAM": "6A-7", "ACRE": ".997", "LONGITUDE": -64.9544267, "LATITUDE": 18.34992826, "OBJECTID_1": 3578, "PARCEL_NO_": "102704044200", "Tax_Legal_": "LILLIENDAHL 6A-7 LITTLE NORTHSIDE", "Name": "ANDREW L CAPDEVILLE FAMILY TRUST", "Address": "PO Box 6576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 93700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.40945371499998, "SHAPE_Area": 4371.6400328700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356318.322700001299381, 257764.306400001049042 ], [ 356299.55009999871254, 257777.566599998623133 ], [ 356263.470899999141693, 257803.051300000399351 ], [ 356265.813699997961521, 257809.236999999731779 ], [ 356269.004799999296665, 257813.273899998515844 ], [ 356278.529500000178814, 257831.083700001239777 ], [ 356283.29730000346899, 257839.355399999767542 ], [ 356286.493699997663498, 257842.75899999961257 ], [ 356290.507299996912479, 257844.902800001204014 ], [ 356296.950599998235703, 257845.799899999052286 ], [ 356329.29839999973774, 257834.8766999989748 ], [ 356343.869599997997284, 257828.24100000038743 ], [ 356348.718299999833107, 257827.01410000026226 ], [ 356348.242799997329712, 257788.168999999761581 ], [ 356336.97240000218153, 257785.965799998492002 ], [ 356328.94709999859333, 257781.467199999839067 ], [ 356320.973800003528595, 257770.847199998795986 ], [ 356318.322700001299381, 257764.306400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202011200", "MAP": "A9-691-T006", "PARCEL_NAM": "10", "ACRE": ".341", "LONGITUDE": -64.95336551, "LATITUDE": 18.3481713, "OBJECTID_1": 8021, "PARCEL_NO_": "105202011200", "Tax_Legal_": "UPPER JOHN DUNKOE 10 SOUTHSIDE QTR", "Name": "SWANSTON, ANTHONY B. & FLORA P", "Address": "PO Box 9544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.20953804600001, "SHAPE_Area": 1730.54045851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356436.416400000452995, 257589.765000000596046 ], [ 356409.532200001180172, 257604.677700001746416 ], [ 356391.772799998521805, 257614.528900001198053 ], [ 356390.801500000059605, 257619.85359999909997 ], [ 356390.859600000083447, 257621.66270000115037 ], [ 356391.144500002264977, 257630.53489999845624 ], [ 356438.990299999713898, 257632.833399999886751 ], [ 356441.37049999833107, 257628.892599999904633 ], [ 356450.718000002205372, 257614.296799998730421 ], [ 356455.542199999094009, 257606.76410000026226 ], [ 356448.193499997258186, 257603.4358000010252 ], [ 356444.187200002372265, 257600.447700001299381 ], [ 356441.795199997723103, 257597.261700000613928 ], [ 356436.416400000452995, 257589.765000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202013900", "MAP": "A9-691-T006", "PARCEL_NAM": "9", "ACRE": ".280", "LONGITUDE": -64.95350517, "LATITUDE": 18.34791587, "OBJECTID_1": 8048, "PARCEL_NO_": "105202013900", "Tax_Legal_": "9 UPPER JOHN DUNKO SOUTHSIDE QTR", "Name": "SWANSTON, ANTHONY B. & FLORA P", "Address": "PO Box 9544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32000, "Improved_V": 281000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.220263829, "SHAPE_Area": 1396.7011598900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356409.532200001180172, 257604.677700001746416 ], [ 356436.416400000452995, 257589.765000000596046 ], [ 356431.435400001704693, 257582.822599999606609 ], [ 356424.257700003683567, 257573.475699998438358 ], [ 356410.643899999558926, 257562.38740000128746 ], [ 356409.475900001823902, 257561.645500000566244 ], [ 356392.981700003147125, 257574.960700001567602 ], [ 356386.446699999272823, 257580.236299999058247 ], [ 356389.469400003552437, 257586.912099998444319 ], [ 356392.064400002360344, 257600.598000001162291 ], [ 356392.556199997663498, 257603.191500000655651 ], [ 356392.493299998342991, 257610.579300001263618 ], [ 356391.772799998521805, 257614.528900001198053 ], [ 356409.532200001180172, 257604.677700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704010100", "MAP": "A9-42-T65", "PARCEL_NAM": "11A", "ACRE": "6.38", "LONGITUDE": -64.95573622000001, "LATITUDE": 18.35664034, "OBJECTID_1": 3438, "PARCEL_NO_": "102704010100", "Tax_Legal_": "BONNE RESOLUTION 11A 5 LITTLE NORTHSIDE", "Name": "BRIN, ODETTE", "Address": "25 Allen Rd", "City": "HOLLYWOOD", "State": "Florida", "Zip": 33023, "Country": "United States", "Land_Value": 182600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 641.62480161799999, "SHAPE_Area": 25502.538751399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356257.502599999308586, 258509.604699999094009 ], [ 356260.521600000560284, 258478.079500000923872 ], [ 356132.298500001430511, 258480.879599999636412 ], [ 356067.399700000882149, 258485.213500000536442 ], [ 356072.440700002014637, 258523.511199999600649 ], [ 356086.137999996542931, 258627.573699999600649 ], [ 356093.535499997437, 258627.714400000870228 ], [ 356246.799599997699261, 258621.36939999833703 ], [ 356257.502599999308586, 258509.604699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704039900", "MAP": "G9-181-T52", "PARCEL_NAM": "5-9", "ACRE": "1.43", "LONGITUDE": -64.95467608, "LATITUDE": 18.3531893, "OBJECTID_1": 3544, "PARCEL_NO_": "102704039900", "Tax_Legal_": "LILLIENDAHL 5-3,5,7,8,9&25,47 MARIENHOJ", "Name": "VIETTE, ANDRE", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.46135569199998, "SHAPE_Area": 4835.0910907400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356254.28660000115633, 258121.138900000602007 ], [ 356264.778300002217293, 258237.495000001043081 ], [ 356282.396700002253056, 258229.026700001209974 ], [ 356301.863300003111362, 258215.675999999046326 ], [ 356301.938100002706051, 258112.240800000727177 ], [ 356294.692100003361702, 258110.91499999910593 ], [ 356254.28660000115633, 258121.138900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704032200", "MAP": "D9-7662-T005", "PARCEL_NAM": "5-10", "ACRE": ".324", "LONGITUDE": -64.95477083, "LATITUDE": 18.35248241, "OBJECTID_1": 3538, "PARCEL_NO_": "102704032200", "Tax_Legal_": "LILLIENDAHL/MARIENDAHL 5-10 & 11 LITTLE NORTHSIDE", "Name": "5-10/11 L & M, LLC", "Address": "PO Box 302936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.91511579300001, "SHAPE_Area": 1675.94666699 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356254.28660000115633, 258121.138900000602007 ], [ 356294.692100003361702, 258110.91499999910593 ], [ 356286.673900000751019, 258105.572000000625849 ], [ 356284.281999997794628, 258102.385999999940395 ], [ 356283.543999999761581, 258094.358399998396635 ], [ 356285.995300002396107, 258090.57880000025034 ], [ 356287.661899998784065, 258084.25959999859333 ], [ 356286.923900000751019, 258076.23200000077486 ], [ 356290.217500001192093, 258068.237399999052286 ], [ 356291.85530000180006, 258065.295499999076128 ], [ 356255.571199998259544, 258064.998599998652935 ], [ 356254.28660000115633, 258121.138900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704030200", "MAP": "D9-366-T63", "PARCEL_NAM": "1C", "ACRE": ".944", "LONGITUDE": -64.95516735, "LATITUDE": 18.35352966, "OBJECTID_1": 3529, "PARCEL_NO_": "102704030200", "Tax_Legal_": "BONNE RESOLUTION 1C LITTLE NORTHSIDE", "Name": "JANECEK, JOSEPH & GIANNA", "Address": "13 Stancliff Dr", "City": "Asheville", "State": "North Carolina", "Zip": 28803, "Country": "United States", "Land_Value": 82900, "Improved_V": 204100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.97979866999998, "SHAPE_Area": 3639.6777778400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356252.976800002157688, 258180.234400000423193 ], [ 356181.166400000452995, 258185.346200000494719 ], [ 356184.903099998831749, 258219.996100001037121 ], [ 356191.3733000010252, 258217.727099999785423 ], [ 356201.05629999935627, 258216.961899999529123 ], [ 356209.104999996721745, 258218.716600000858307 ], [ 356215.5304000005126, 258221.724399998784065 ], [ 356237.970399998128414, 258237.951200000941753 ], [ 356246.812899999320507, 258241.190000001341105 ], [ 356251.648999996483326, 258241.440699998289347 ], [ 356257.300399996340275, 258240.642599999904633 ], [ 356262.964299999177456, 258238.366900000721216 ], [ 356264.778300002217293, 258237.495000001043081 ], [ 356259.583800002932549, 258179.885999999940395 ], [ 356252.976800002157688, 258180.234400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704032300", "MAP": "D9-366-T63", "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.95524387, "LATITUDE": 18.35286924, "OBJECTID_1": 3539, "PARCEL_NO_": "102704032300", "Tax_Legal_": "BONNE RESOLUTION 1 LITTLE NORTHSIDE QTR", "Name": "COLLEGE OF THE VIRGIN ISLANDS", "Address": "COLLEGE OF THE V I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 228700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 374.21319143599999, "SHAPE_Area": 7496.8940495999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356259.583800002932549, 258179.885999999940395 ], [ 356254.28660000115633, 258121.138900000602007 ], [ 356255.571199998259544, 258064.998599998652935 ], [ 356233.824100002646446, 258062.076400000602007 ], [ 356230.503600001335144, 258073.237100001424551 ], [ 356223.144299998879433, 258085.209199998527765 ], [ 356215.000200003385544, 258094.641800001263618 ], [ 356207.694899998605251, 258100.281500000506639 ], [ 356196.36150000244379, 258105.466099999845028 ], [ 356173.743400000035763, 258110.136100001633167 ], [ 356181.166400000452995, 258185.346200000494719 ], [ 356252.976800002157688, 258180.234400000423193 ], [ 356259.583800002932549, 258179.885999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704010400", "MAP": "D9-7357-T004", "PARCEL_NAM": "6 REM", "ACRE": "5.06", "LONGITUDE": -64.95542631, "LATITUDE": 18.35507736, "OBJECTID_1": 3440, "PARCEL_NO_": "102704010400", "Tax_Legal_": "6 ESTATE BONNE RESOLUTION NO.5 LITTLE NORTHSIDE QTR.", "Name": "FRETT, MARILYN & BRIN, SONEILL", "Address": "9053 FIRST AVE TRLR2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 206800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 759.74371659200006, "SHAPE_Area": 26190.464745000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356260.521600000560284, 258478.079500000923872 ], [ 356264.764399997889996, 258433.774500001221895 ], [ 356265.214699998497963, 258287.050999999046326 ], [ 356218.205399997532368, 258286.340999998152256 ], [ 356189.994699999690056, 258241.386500000953674 ], [ 356188.079499997198582, 258236.790100000798702 ], [ 356188.079499997198582, 258232.959699999541044 ], [ 356189.994699999690056, 258229.129399999976158 ], [ 356191.42230000346899, 258227.089899998158216 ], [ 356197.7483000010252, 258226.645199999213219 ], [ 356184.880300000309944, 258225.632599998265505 ], [ 356175.249499998986721, 258231.479899998754263 ], [ 356160.682099997997284, 258242.980399999767542 ], [ 356149.108599998056889, 258252.117400001734495 ], [ 356162.523000001907349, 258314.717799998819828 ], [ 356175.937399998307228, 258340.858600001782179 ], [ 356114.36879999935627, 258403.115100000053644 ], [ 356132.298500001430511, 258480.879599999636412 ], [ 356260.521600000560284, 258478.079500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012300", "MAP": "F9-392-T59", "PARCEL_NAM": "6B", "ACRE": null, "LONGITUDE": -64.95504138, "LATITUDE": 18.35406625, "OBJECTID_1": 3453, "PARCEL_NO_": "102704012300", "Tax_Legal_": "BONNE RESOLUTION 6B LITTLE NORTHSIDE", "Name": "ROY V & NANCY L GREEN JOINT REVOC LIVING TRUST", "Address": "393 Snow Dr", "City": "Fort Myers", "State": "Florida", "Zip": 33919, "Country": "United States", "Land_Value": 48600, "Improved_V": 155200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.91807305200001, "SHAPE_Area": 1906.7063904700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356218.205399997532368, 258286.340999998152256 ], [ 356265.214699998497963, 258287.050999999046326 ], [ 356265.238899998366833, 258279.161499999463558 ], [ 356265.338899999856949, 258246.573699999600649 ], [ 356251.573499999940395, 258250.306000001728535 ], [ 356244.320200003683567, 258249.824400000274181 ], [ 356235.474200002849102, 258247.007800001651049 ], [ 356218.640500001609325, 258235.259899999946356 ], [ 356218.205399997532368, 258286.340999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704011100", "MAP": "D9-8124-T008", "PARCEL_NAM": "10-63", "ACRE": ".459", "LONGITUDE": -64.95143447, "LATITUDE": 18.35321071, "OBJECTID_1": 3445, "PARCEL_NO_": "102704011100", "Tax_Legal_": "LILLENDAHL & MARJ. 10-63 GT. NORTHSIDE", "Name": "BRIN FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 247800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.83812671199999, "SHAPE_Area": 1937.94329464 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356612.536200001835823, 258139.469700001180172 ], [ 356609.697700001299381, 258144.312800001353025 ], [ 356608.256099998950958, 258151.972600001841784 ], [ 356608.486400000751019, 258163.73200000077486 ], [ 356607.85980000346899, 258176.19539999961853 ], [ 356607.930200003087521, 258195.52760000154376 ], [ 356611.123000003397465, 258210.985800001770258 ], [ 356616.238899998366833, 258228.381599999964237 ], [ 356622.863799996674061, 258207.959699999541044 ], [ 356628.639300003647804, 258192.597100000828505 ], [ 356650.679399996995926, 258161.113499999046326 ], [ 356616.204000003635883, 258137.82209999859333 ], [ 356612.536200001835823, 258139.469700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704014600", "MAP": "D9-8124-T008", "PARCEL_NAM": "10-62", "ACRE": ".505", "LONGITUDE": -64.95112184, "LATITUDE": 18.35337926, "OBJECTID_1": 3470, "PARCEL_NO_": "102704014600", "Tax_Legal_": "10-62&10-2-1 LILLIENDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "BRYAN, MARGUERITE", "Address": "PO Box 11372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.63725493000001, "SHAPE_Area": 2152.0176410200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356622.863799996674061, 258207.959699999541044 ], [ 356661.473300002515316, 258219.252599999308586 ], [ 356668.837999999523163, 258206.647199999541044 ], [ 356674.453400000929832, 258210.070700000971556 ], [ 356693.110100001096725, 258197.135600000619888 ], [ 356685.907200001180172, 258190.74379999935627 ], [ 356663.497699998319149, 258170.928700000047684 ], [ 356650.679399996995926, 258161.113499999046326 ], [ 356628.639300003647804, 258192.597100000828505 ], [ 356622.863799996674061, 258207.959699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702027100", "MAP": "D9-8117-T008", "PARCEL_NAM": "9-1-5", "ACRE": ".493", "LONGITUDE": -64.95305097000001, "LATITUDE": 18.35820014, "OBJECTID_1": 3047, "PARCEL_NO_": "102702027100", "Tax_Legal_": "9-1-5 LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "THOMAS MASON, SANDRA", "Address": "PO BOX 307858", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.08461069099999, "SHAPE_Area": 2048.2986549299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356438.232699997723103, 258755.065900001674891 ], [ 356467.340199999511242, 258746.5962999984622 ], [ 356467.326999999582767, 258746.425799999386072 ], [ 356467.945200003683567, 258740.219900000840425 ], [ 356467.553999997675419, 258694.184099998325109 ], [ 356431.532200001180172, 258707.318799998611212 ], [ 356422.592600002884865, 258715.478199999779463 ], [ 356420.942299999296665, 258719.897700000554323 ], [ 356422.465000003576279, 258730.464800000190735 ], [ 356424.043399997055531, 258734.488499999046326 ], [ 356434.417599998414516, 258747.239100001752377 ], [ 356436.800599999725819, 258751.480399999767542 ], [ 356438.232699997723103, 258755.065900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702027500", "MAP": "D9-8117-T008", "PARCEL_NAM": "9-1-6", "ACRE": ".486", "LONGITUDE": -64.95267589, "LATITUDE": 18.35806891, "OBJECTID_1": 3051, "PARCEL_NO_": "102702027500", "Tax_Legal_": "9-1-6 LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "BERTRAND, ANNETTE PRISCILLA & EDISON A.", "Address": "PO Box 8843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.30556788000001, "SHAPE_Area": 1946.31810301 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356467.939300000667572, 258739.522900000214577 ], [ 356496.874899998307228, 258744.054999999701977 ], [ 356496.581000000238419, 258738.670800000429153 ], [ 356499.14919999986887, 258721.171100001782179 ], [ 356501.65259999781847, 258711.270199999213219 ], [ 356504.132700003683567, 258704.113299999386072 ], [ 356510.698299996554852, 258690.657000001519918 ], [ 356515.595499999821186, 258683.730999998748302 ], [ 356515.624300003051758, 258680.353799998760223 ], [ 356512.41160000115633, 258678.849800001829863 ], [ 356499.478200003504753, 258682.543600000441074 ], [ 356467.553999997675419, 258694.184099998325109 ], [ 356467.939300000667572, 258739.522900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702027800", "MAP": "D9-8117-T008", "PARCEL_NAM": "9-1-1", "ACRE": ".460", "LONGITUDE": -64.95298956000001, "LATITUDE": 18.35918856, "OBJECTID_1": 3054, "PARCEL_NO_": "102702027800", "Tax_Legal_": "9-1-1 LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "THOMAS, KENRICK & ARTHURLYN C.", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.58106577500001, "SHAPE_Area": 1831.7821209399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356472.205099999904633, 258810.550500001758337 ], [ 356438.7466000020504, 258807.013999998569489 ], [ 356434.357199996709824, 258848.985700000077486 ], [ 356433.534699998795986, 258850.878800000995398 ], [ 356431.291599996387959, 258862.997800000011921 ], [ 356471.314800001680851, 258856.310499999672174 ], [ 356472.205099999904633, 258810.550500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702027700", "MAP": "D9-8117-T008", "PARCEL_NAM": "9-1-2", "ACRE": ".462", "LONGITUDE": -64.95264209, "LATITUDE": 18.35912339, "OBJECTID_1": 3053, "PARCEL_NO_": "102702027700", "Tax_Legal_": "9-1-2 LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "BERTRAND, ANNETTE PRISCILLA & EDISON A.", "Address": "PO Box 8843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.03737678499999, "SHAPE_Area": 1881.07239671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356505.743400000035763, 258800.819400001317263 ], [ 356471.70099999755621, 258802.641699999570847 ], [ 356472.205099999904633, 258810.550500001758337 ], [ 356471.314800001680851, 258856.310499999672174 ], [ 356509.693000003695488, 258849.898200001567602 ], [ 356509.351400002837181, 258848.755100000649691 ], [ 356509.421599999070168, 258840.522999998182058 ], [ 356508.742899999022484, 258825.529800001531839 ], [ 356506.503799997270107, 258804.402100000530481 ], [ 356505.743400000035763, 258800.819400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702027900", "MAP": "D9-8117-T008", "PARCEL_NAM": "9-1-4", "ACRE": ".460", "LONGITUDE": -64.95297063, "LATITUDE": 18.3586979, "OBJECTID_1": 3055, "PARCEL_NO_": "102702027900", "Tax_Legal_": "9-1-4 LILLIENDAHL & MARIENHOJ NO.3 LITTLE NORTHSIDE QTR", "Name": "THOMAS, KENRICK & ARTHURLYN C.", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.58807510899999, "SHAPE_Area": 1738.9174790100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356467.340199999511242, 258746.5962999984622 ], [ 356438.232699997723103, 258755.065900001674891 ], [ 356439.169200003147125, 258757.410399999469519 ], [ 356441.501800000667572, 258767.561999998986721 ], [ 356438.7466000020504, 258807.013999998569489 ], [ 356472.205099999904633, 258810.550500001758337 ], [ 356471.70099999755621, 258802.641699999570847 ], [ 356467.340199999511242, 258746.5962999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702027600", "MAP": "D9-8902-T014", "PARCEL_NAM": "9-1-3-1", "ACRE": ".230", "LONGITUDE": -64.95267452, "LATITUDE": 18.35875917, "OBJECTID_1": 3052, "PARCEL_NO_": "102702027600", "Tax_Legal_": "9-1-3 LILLIENDAHL & MARIENHOJ NO.3 LTTLE NORTHSIDE QTR", "Name": "BERTRAND, ANNETTE PRISCILLA & EDISON A.", "Address": "PO Box 8843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.71312258499999, "SHAPE_Area": 933.6558038 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356499.595799997448921, 258771.855799999088049 ], [ 356469.465899996459484, 258773.915600001811981 ], [ 356471.70099999755621, 258802.641699999570847 ], [ 356505.743400000035763, 258800.819400001317263 ], [ 356499.595799997448921, 258771.855799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012500", "MAP": "D9-8356-T009", "PARCEL_NAM": "9 REM", "ACRE": "2.92", "LONGITUDE": -64.9541711, "LATITUDE": 18.35887669, "OBJECTID_1": 2965, "PARCEL_NO_": "102702012500", "Tax_Legal_": "PAR 9 REM LILLIENDAHL & MARIENHOJ", "Name": "USVIAH, LLC", "Address": "PO BOX 22268", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 422.95602008899999, "SHAPE_Area": 9097.2867433400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356367.416299998760223, 258838.432300001382828 ], [ 356385.684399999678135, 258808.533700000494719 ], [ 356386.065999999642372, 258808.302799999713898 ], [ 356392.859200000762939, 258768.973200000822544 ], [ 356393.030000001192093, 258768.664299998432398 ], [ 356345.430100001394749, 258780.918999999761581 ], [ 356328.887800000607967, 258734.976300001144409 ], [ 356291.729099996387959, 258742.69370000064373 ], [ 356276.364200003445148, 258747.845300000160933 ], [ 356300.160300001502037, 258867.355599999427795 ], [ 356367.416299998760223, 258838.432300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702013600", "MAP": "D9-1638-T80", "PARCEL_NAM": "12-3", "ACRE": null, "LONGITUDE": -64.95455048, "LATITUDE": 18.35991356, "OBJECTID_1": 2976, "PARCEL_NO_": "102702013600", "Tax_Legal_": "BONNE RESOLUTION 12-3 LITTLE NORTHSIDE", "Name": "ARCHIBALD, NAOMI", "Address": "404-320 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.95441929699999, "SHAPE_Area": 1185.4826572699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356307.023900002241135, 258924.960499998182058 ], [ 356305.739799998700619, 258897.483600001782179 ], [ 356305.611100003123283, 258894.730799999088049 ], [ 356267.303599998354912, 258902.46680000051856 ], [ 356267.415700003504753, 258921.482400000095367 ], [ 356267.453199997544289, 258927.837099999189377 ], [ 356267.46339999884367, 258929.569200001657009 ], [ 356273.499799996614456, 258929.516100000590086 ], [ 356294.977300003170967, 258929.326999999582767 ], [ 356298.20440000295639, 258929.142299998551607 ], [ 356307.023900002241135, 258924.960499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95546185000001, "LATITUDE": 18.35955024, "OBJECTID_1": 2964, "PARCEL_NO_": "102702012400", "Tax_Legal_": "BONNE RESOLUTION REM 12 LITTLE NORTHSIDE", "Name": "RELIABLE CONST. INC.", "Address": "PO BOX 4258", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 381900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 819.61824929399995, "SHAPE_Area": 36254.70621 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356237.408100001513958, 258974.980000000447035 ], [ 356238.282499998807907, 258935.092599999159575 ], [ 356228.997100003063679, 258935.143500000238419 ], [ 356228.63459999859333, 258929.911100000143051 ], [ 356262.82379999756813, 258929.610100001096725 ], [ 356267.46339999884367, 258929.569200001657009 ], [ 356267.453199997544289, 258927.837099999189377 ], [ 356267.415700003504753, 258921.482400000095367 ], [ 356267.303599998354912, 258902.46680000051856 ], [ 356305.611100003123283, 258894.730799999088049 ], [ 356276.364200003445148, 258747.845300000160933 ], [ 356117.067500002682209, 258799.737100001424551 ], [ 356089.570900000631809, 258903.792300000786781 ], [ 356082.071299999952316, 258932.228500001132488 ], [ 356079.533699996769428, 258946.139899998903275 ], [ 356074.454800002276897, 258974.384899999946356 ], [ 356217.168499998748302, 258975.975099999457598 ], [ 356226.045199997723103, 258975.203400000929832 ], [ 356237.408100001513958, 258974.980000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702013700", "MAP": "D9-9133-T016", "PARCEL_NAM": "12-2", "ACRE": ".259", "LONGITUDE": -64.95487571, "LATITUDE": 18.36028883, "OBJECTID_1": 2977, "PARCEL_NO_": "102702013700", "Tax_Legal_": "BONNE RESOLUTION 12-2 LT.NORTHSIDE", "Name": "RESTATED BONELLI FAMILY TRUST", "Address": "PO Box 6217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.84515930500001, "SHAPE_Area": 1181.5809839000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356238.282499998807907, 258935.092599999159575 ], [ 356237.408100001513958, 258974.980000000447035 ], [ 356263.950900003314018, 258974.458200000226498 ], [ 356267.984200000762939, 258974.280099999159575 ], [ 356267.292400002479553, 258934.933499999344349 ], [ 356262.958200000226498, 258934.957299999892712 ], [ 356238.282499998807907, 258935.092599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702013500", "MAP": "D9-9110-T016", "PARCEL_NAM": "12-1", "ACRE": "0.26", "LONGITUDE": -64.95454192, "LATITUDE": 18.36027955, "OBJECTID_1": 2975, "PARCEL_NO_": "102702013500", "Tax_Legal_": "BONNE RESOLUTION 12-1 LT. NORTHSIDE QTR.", "Name": "RESTATED BONELLI FAMILY TRUST", "Address": "PO Box 6217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42200, "Improved_V": 202200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.22941499500001, "SHAPE_Area": 1595.73988736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356309.212700001895428, 258971.793000001460314 ], [ 356307.324600003659725, 258931.394299998879433 ], [ 356299.766699999570847, 258935.065699998289347 ], [ 356294.925200000405312, 258935.448300000280142 ], [ 356292.511600002646446, 258934.795299999415874 ], [ 356267.292400002479553, 258934.933499999344349 ], [ 356267.984200000762939, 258974.280099999159575 ], [ 356294.597900003194809, 258973.864599999040365 ], [ 356301.050200000405312, 258973.706399999558926 ], [ 356309.212700001895428, 258971.793000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702015300", "MAP": "D9-4210-T88", "PARCEL_NAM": "12A-1", "ACRE": ".24", "LONGITUDE": -64.95420394, "LATITUDE": 18.36021347, "OBJECTID_1": 2989, "PARCEL_NO_": "102702015300", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 12A-1 LT.NORTHSIDE QTR.", "Name": "PETTY, FITZROY E. & EMILY A", "Address": "PO Box 308325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32500, "Improved_V": 260000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.74169808799999, "SHAPE_Area": 1332.0655990600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356307.324600003659725, 258931.394299998879433 ], [ 356309.212700001895428, 258971.793000001460314 ], [ 356312.362000003457069, 258971.054699998348951 ], [ 356319.633199997246265, 258969.425500001758337 ], [ 356331.752999998629093, 258966.569400001317263 ], [ 356344.461400002241135, 258958.730900000780821 ], [ 356331.689800001680851, 258919.601799998432398 ], [ 356315.151299998164177, 258927.592300001531839 ], [ 356307.324600003659725, 258931.394299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702015400", "MAP": "D9-6789-T000", "PARCEL_NAM": "12A-2", "ACRE": ".23", "LONGITUDE": -64.95395089, "LATITUDE": 18.36008089, "OBJECTID_1": 2990, "PARCEL_NO_": "102702015400", "Tax_Legal_": "LILLENDAHL & MARIENHOJ 12A-2 LT. NORTHSIDE QRT", "Name": "PHIPPS, PETRA L", "Address": "P. O. BOX 3765", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 191500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.56960314599999, "SHAPE_Area": 1156.51081086 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356331.689800001680851, 258919.601799998432398 ], [ 356344.461400002241135, 258958.730900000780821 ], [ 356347.965599998831749, 258956.569600000977516 ], [ 356367.156099997460842, 258951.015999998897314 ], [ 356359.492399998009205, 258906.211800001561642 ], [ 356336.203599996864796, 258917.421000000089407 ], [ 356331.689800001680851, 258919.601799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012300", "MAP": "D9-6789-T000", "PARCEL_NAM": "12A-REM", "ACRE": ".23", "LONGITUDE": -64.9534652, "LATITUDE": 18.35978752, "OBJECTID_1": 2963, "PARCEL_NO_": "102702012300", "Tax_Legal_": "LILLIENDAL & MARIENHOJ 12A-REM. LITTLE NORTHSIDE", "Name": "OTTLEY, ANTHONY A.& KOYA S", "Address": "PO Box 9073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.732859201, "SHAPE_Area": 1090.6439629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356382.709799997508526, 258894.993700001388788 ], [ 356384.177100002765656, 258919.780999999493361 ], [ 356417.842000000178814, 258913.787999998778105 ], [ 356418.630900003015995, 258896.564100001007318 ], [ 356420.353200003504753, 258883.701499998569489 ], [ 356419.584600001573563, 258879.262200001627207 ], [ 356417.174699999392033, 258878.186999998986721 ], [ 356382.709799997508526, 258894.993700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702015900", "MAP": "D9-6789-T000", "PARCEL_NAM": "12A-4", "ACRE": ".23", "LONGITUDE": -64.9534737, "LATITUDE": 18.36004651, "OBJECTID_1": 2995, "PARCEL_NO_": "102702015900", "Tax_Legal_": "LILLIENDAL & MARIENHOJ 12A-4 LITTLE NORTHSIDE", "Name": "OTTLEY, ANTHONY A.& KOYA S", "Address": "PO Box 9073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.67604566599999, "SHAPE_Area": 827.62983856200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356384.177100002765656, 258919.780999999493361 ], [ 356385.707000002264977, 258945.626499999314547 ], [ 356392.426100000739098, 258943.63459999859333 ], [ 356416.649599999189377, 258939.822000000625849 ], [ 356417.842000000178814, 258913.787999998778105 ], [ 356384.177100002765656, 258919.780999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702015800", "MAP": "D9-6789-T000", "PARCEL_NAM": "12A-3", "ACRE": ".23", "LONGITUDE": -64.95373247000001, "LATITUDE": 18.35999479, "OBJECTID_1": 2994, "PARCEL_NO_": "102702015800", "Tax_Legal_": "LILLIENDAL & MARIENHOJ 12A-3 LITTLE NORTHSIDE", "Name": "OTTLEY, ANTHONY A.& KOYA S", "Address": "PO Box 9073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.27992772600001, "SHAPE_Area": 1040.63150273 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356384.177100002765656, 258919.780999999493361 ], [ 356382.709799997508526, 258894.993700001388788 ], [ 356375.878300003707409, 258898.325100000947714 ], [ 356359.492399998009205, 258906.211800001561642 ], [ 356362.474299997091293, 258923.644499998539686 ], [ 356367.156099997460842, 258951.015999998897314 ], [ 356382.725100003182888, 258946.510499998927116 ], [ 356385.707000002264977, 258945.626499999314547 ], [ 356384.177100002765656, 258919.780999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95059734, "LATITUDE": 18.36210564, "OBJECTID_1": 3018, "PARCEL_NO_": "102702021700", "Tax_Legal_": "HULL PCL OF 4A LITTLE NORTHSIDE QTR", "Name": "BRIN, JAMES", "Address": "40C Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 551000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 860.69802647200004, "SHAPE_Area": 36394.4563022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356681.978799998760223, 259094.059799998998642 ], [ 356613.073499999940395, 259051.293800000101328 ], [ 356609.922600001096725, 259064.471400000154972 ], [ 356604.877899996936321, 259088.705899998545647 ], [ 356581.319300003349781, 259203.770199999213219 ], [ 356567.886100001633167, 259266.143899999558926 ], [ 356704.481899999082088, 259228.631799999624491 ], [ 356750.553199999034405, 259215.921000000089407 ], [ 356769.951499998569489, 259210.591400001198053 ], [ 356805.515600003302097, 259200.75 ], [ 356858.051700003445148, 259186.403400000184774 ], [ 356858.067900002002716, 259184.503699999302626 ], [ 356845.151799999177456, 259091.516800001263618 ], [ 356830.618400000035763, 259093.719900000840425 ], [ 356681.978799998760223, 259094.059799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95240924, "LATITUDE": 18.36095805, "OBJECTID_1": 3007, "PARCEL_NO_": "102702020300", "Tax_Legal_": "HULL 6A LITTLE NORTHSIDE", "Name": "LA PLACE, CARL F. & JOHN A.", "Address": "PO Box 2704", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 144000, "Improved_V": 72800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.85924860799997, "SHAPE_Area": 4172.7124703999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356554.272299997508526, 259014.799100000411272 ], [ 356505.455200001597404, 258984.500900000333786 ], [ 356470.576200000941753, 259046.232400000095367 ], [ 356521.104099996387959, 259078.309999998658895 ], [ 356551.434000000357628, 259020.296399999409914 ], [ 356554.272299997508526, 259014.799100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95259385, "LATITUDE": 18.36100488, "OBJECTID_1": 3019, "PARCEL_NO_": "102702021800", "Tax_Legal_": "HULL 6B LITTLE NORTHSIDE QTR", "Name": "LA PLACE, CARL F. & JOHN A.", "Address": "PO Box 2704", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 253600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 746.26671283799999, "SHAPE_Area": 13816.691779000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356505.455200001597404, 258984.500900000333786 ], [ 356427.164800003170967, 258935.910100001841784 ], [ 356425.369800001382828, 258957.414200000464916 ], [ 356426.025100000202656, 258975.151399999856949 ], [ 356428.284000001847744, 258993.95719999819994 ], [ 356425.667199999094009, 259017.156100001186132 ], [ 356422.346699997782707, 259028.316899999976158 ], [ 356412.980899997055531, 259086.502000000327826 ], [ 356604.877899996936321, 259088.705899998545647 ], [ 356613.158699996769428, 259051.346700001507998 ], [ 356554.237700000405312, 259014.77760000154376 ], [ 356521.104099996387959, 259078.309999998658895 ], [ 356470.576200000941753, 259046.232400000095367 ], [ 356505.455200001597404, 258984.500900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702020200", "MAP": "A9-42-T65", "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.95198191, "LATITUDE": 18.36028977, "OBJECTID_1": 3006, "PARCEL_NO_": "102702020200", "Tax_Legal_": "LILLIENDAHL 12 LITTLE NORTHSIDE", "Name": "BRIN, JAMES", "Address": "40C TAARNEBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 198800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 797.24382423500003, "SHAPE_Area": 29609.861816600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356613.158699996769428, 259051.346700001507998 ], [ 356681.978799998760223, 259094.059799998998642 ], [ 356679.128899998962879, 259026.856499999761581 ], [ 356677.231499999761581, 258982.115600001066923 ], [ 356675.283500000834465, 258964.52589999884367 ], [ 356664.004100002348423, 258963.378100000321865 ], [ 356652.744499996304512, 258959.908399999141693 ], [ 356635.066799998283386, 258952.586599998176098 ], [ 356623.01519999653101, 258947.421700000762939 ], [ 356616.618699997663498, 258941.036499999463558 ], [ 356611.84910000115633, 258932.975900001823902 ], [ 356609.507500000298023, 258923.879700001329184 ], [ 356606.345200002193451, 258916.465599998831749 ], [ 356595.171899996697903, 258902.864100001752377 ], [ 356591.165500000119209, 258899.875999998301268 ], [ 356583.950099997222424, 258894.961800001561642 ], [ 356577.523000001907349, 258892.16499999910593 ], [ 356566.263400003314018, 258888.69539999961853 ], [ 356548.547899998724461, 258885.806200001388788 ], [ 356538.902699999511242, 258882.138599999248981 ], [ 356529.273699998855591, 258876.571400001645088 ], [ 356519.660899996757507, 258869.104400001466274 ], [ 356513.271499998867512, 258861.875 ], [ 356509.693000003695488, 258849.898200001567602 ], [ 356431.291599996387959, 258862.997800000011921 ], [ 356430.99889999628067, 258864.579100001603365 ], [ 356429.188400000333786, 258887.784600000828505 ], [ 356428.414300002157688, 258912.760600000619888 ], [ 356427.165799997746944, 258935.897300001233816 ], [ 356427.164800003170967, 258935.910100001841784 ], [ 356505.455200001597404, 258984.500900000333786 ], [ 356554.237700000405312, 259014.77760000154376 ], [ 356613.158699996769428, 259051.346700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704017200", "MAP": "D9-8203-T008", "PARCEL_NAM": "11D REM", "ACRE": ".986", "LONGITUDE": -64.95451027, "LATITUDE": 18.35514976, "OBJECTID_1": 3488, "PARCEL_NO_": "102704017200", "Tax_Legal_": "11D REM LILLIENDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "MUSTAFA, MONA", "Address": "PO Box 11192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 439.93246236499999, "SHAPE_Area": 5773.4662494300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356326.838899999856949, 258407.553399998694658 ], [ 356327.003600001335144, 258288.351599998772144 ], [ 356317.563900001347065, 258306.433800000697374 ], [ 356316.848899997770786, 258323.838100001215935 ], [ 356316.459600001573563, 258360.097800001502037 ], [ 356265.051399998366833, 258340.25 ], [ 356265.006800003349781, 258354.782600000500679 ], [ 356264.764399997889996, 258433.774500001221895 ], [ 356263.306100003421307, 258449.002700001001358 ], [ 356312.174699999392033, 258427.563799999654293 ], [ 356326.197700001299381, 258421.213700000196695 ], [ 356326.688100002706051, 258420.968499999493361 ], [ 356326.838899999856949, 258407.553399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012200", "MAP": "D9-8203-T008", "PARCEL_NAM": "11D-4", "ACRE": ".50", "LONGITUDE": -64.9545377, "LATITUDE": 18.35467092, "OBJECTID_1": 3452, "PARCEL_NO_": "102704012200", "Tax_Legal_": "11D-3,11D-4 LILLIENDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "BRIN, JAVAITE", "Address": "6212 FRYDENHOJ #33", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.96066279199999, "SHAPE_Area": 1691.8075336500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356317.563900001347065, 258306.433800000697374 ], [ 356309.032300002872944, 258304.608600001782179 ], [ 356308.47580000013113, 258319.888199999928474 ], [ 356308.115500003099442, 258329.779399998486042 ], [ 356265.14360000193119, 258310.204100001603365 ], [ 356265.051399998366833, 258340.25 ], [ 356316.459600001573563, 258360.097800001502037 ], [ 356317.205700002610683, 258323.840999998152256 ], [ 356317.563900001347065, 258306.433800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704012200", "MAP": "D9-8203-T008", "PARCEL_NAM": "11D-3", "ACRE": ".50", "LONGITUDE": -64.95460335, "LATITUDE": 18.35435331, "OBJECTID_1": 3452, "PARCEL_NO_": "102704012200", "Tax_Legal_": "11D-3,11D-4 LILLIENDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "BRIN, JAVAITE", "Address": "6212 FRYDENHOJ #33", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.388827365, "SHAPE_Area": 1889.49499253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356309.032300002872944, 258304.608600001782179 ], [ 356308.741400003433228, 258296.44990000128746 ], [ 356312.956799998879433, 258290.565799999982119 ], [ 356311.12610000371933, 258289.177799999713898 ], [ 356308.024599999189377, 258287.432399999350309 ], [ 356304.57150000333786, 258286.372299998998642 ], [ 356297.676399998366833, 258282.875799998641014 ], [ 356284.570100001990795, 258276.9206000007689 ], [ 356272.170000001788139, 258269.250700000673532 ], [ 356265.291900001466274, 258261.881599999964237 ], [ 356265.174099996685982, 258300.281700000166893 ], [ 356265.14360000193119, 258310.204100001603365 ], [ 356308.115500003099442, 258329.779399998486042 ], [ 356308.47580000013113, 258319.888199999928474 ], [ 356309.032300002872944, 258304.608600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046500", "MAP": "A9-755-T010", "PARCEL_NAM": "6-41", "ACRE": "1.699", "LONGITUDE": -64.94874905, "LATITUDE": 18.34930545, "OBJECTID_1": 3600, "PARCEL_NO_": "102704046500", "Tax_Legal_": "6 LILLIANDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "BRIN, MARK", "Address": "4916 MONTE VISTA PL", "City": "MOUNT VERNON", "State": "Washington", "Zip": 982730000, "Country": "United States", "Land_Value": 507400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 404.34927978600001, "SHAPE_Area": 5013.8647097499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356888.054899998009205, 257831.757500000298023 ], [ 356915.090400002896786, 257833.739900000393391 ], [ 356919.119199998676777, 257791.997000001370907 ], [ 356934.288599997758865, 257658.703400000929832 ], [ 356933.968800000846386, 257658.49379999935627 ], [ 356901.976899996399879, 257664.034499999135733 ], [ 356888.054899998009205, 257831.757500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704046500", "MAP": "A9-755-T010", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.95007324, "LATITUDE": 18.34901531, "OBJECTID_1": 3600, "PARCEL_NO_": "102704046500", "Tax_Legal_": "6 LILLIANDAHL & MARIENHOJ NO.3 LT NORTHSIDE QTR", "Name": "BRIN, MARK", "Address": "4916 MONTE VISTA PL", "City": "MOUNT VERNON", "State": "Washington", "Zip": 982730000, "Country": "United States", "Land_Value": 507400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 822.77393499599998, "SHAPE_Area": 32686.773804500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356802.528899997472763, 257654.259500000625849 ], [ 356800.961099997162819, 257658.353500001132488 ], [ 356787.90259999781847, 257654.000799998641014 ], [ 356679.983300000429153, 257652.092099998146296 ], [ 356608.487899996340275, 257623.746199999004602 ], [ 356609.180900000035763, 257637.050700001418591 ], [ 356612.071699999272823, 257676.337799999862909 ], [ 356612.703599996864796, 257696.818999998271465 ], [ 356654.919299997389317, 257721.169700000435114 ], [ 356679.412100002169609, 257737.045899998396635 ], [ 356699.325900003314018, 257748.296300001442432 ], [ 356720.362800002098083, 257763.379799999296665 ], [ 356736.814400002360344, 257774.602200001478195 ], [ 356744.455399997532368, 257781.164700001478195 ], [ 356749.819300003349781, 257783.884799998253584 ], [ 356760.187100000679493, 257786.263099998235703 ], [ 356875.542400002479553, 257793.315999999642372 ], [ 356884.365299999713898, 257796.446600001305342 ], [ 356890.709200002253056, 257802.3429000005126 ], [ 356902.3125, 257664.037200000137091 ], [ 356868.314099997282028, 257655.423000000417233 ], [ 356802.528899997472763, 257654.259500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202016300", "MAP": "A9-683-T006", "PARCEL_NAM": "38 REM", "ACRE": ".519", "LONGITUDE": -64.9528825, "LATITUDE": 18.34645818, "OBJECTID_1": 8069, "PARCEL_NO_": "105202016300", "Tax_Legal_": "UPPER JOHN DUNKO 38&39-1 3A LITTLE NORTHSIDE", "Name": "FARR, KIMBERLY & KAREN HUMPHREYS", "Address": "PO Box 7100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49100, "Improved_V": 299400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.678302978, "SHAPE_Area": 2207.5924747099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356491.121799997985363, 257396.489199999719858 ], [ 356470.997800000011921, 257402.222699999809265 ], [ 356463.295900002121925, 257397.790500000119209 ], [ 356455.007100000977516, 257400.695099998265505 ], [ 356453.056900002062321, 257411.169399999082088 ], [ 356454.610200002789497, 257418.148200001567602 ], [ 356456.698299996554852, 257457.006499998271465 ], [ 356501.156999997794628, 257444.282600000500679 ], [ 356501.241499997675419, 257434.361900001764297 ], [ 356492.645400002598763, 257402.205299999564886 ], [ 356491.121799997985363, 257396.489199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202013300", "MAP": "A9-684-T006", "PARCEL_NAM": "34", "ACRE": ".358", "LONGITUDE": -64.95184115000001, "LATITUDE": 18.34737272, "OBJECTID_1": 8042, "PARCEL_NO_": "105202013300", "Tax_Legal_": "UPPER JOHN DUNKO 34 3A LITTLE NORTHSIDE", "Name": "SOTO FAMILY TRUST", "Address": "PO Box 302668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 117600, "Improved_V": 124600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.095667862, "SHAPE_Area": 1088.3243174199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356605.167499996721745, 257536.306400001049042 ], [ 356608.729599997401237, 257535.69649999961257 ], [ 356608.557700000703335, 257531.264600001275539 ], [ 356607.956200003623962, 257515.756900001317263 ], [ 356594.099399998784065, 257514.281899999827147 ], [ 356585.229999996721745, 257514.209399998188019 ], [ 356567.462300002574921, 257517.441399998962879 ], [ 356559.170800000429153, 257544.182399999350309 ], [ 356605.167499996721745, 257536.306400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202013400", "MAP": "A9-685-T006", "PARCEL_NAM": "23", "ACRE": ".354", "LONGITUDE": -64.95182782000001, "LATITUDE": 18.34760651, "OBJECTID_1": 8043, "PARCEL_NO_": "105202013400", "Tax_Legal_": "23 REM. UPPER JOHN DUNKO NO. 3A LITTLE NORTHSIDE QTR", "Name": "BAZZAR, HAMEID M.", "Address": "PO Box 11701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34900, "Improved_V": 358300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.425147896, "SHAPE_Area": 1327.9661029700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356605.167499996721745, 257536.306400001049042 ], [ 356559.170800000429153, 257544.182399999350309 ], [ 356571.008400000631809, 257574.465700000524521 ], [ 356590.404799997806549, 257569.347100000828505 ], [ 356604.974200002849102, 257562.922499999403954 ], [ 356609.722999997437, 257561.308600001037121 ], [ 356609.1300999969244, 257546.021200001239777 ], [ 356608.729599997401237, 257535.69649999961257 ], [ 356605.167499996721745, 257536.306400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202013200", "MAP": "A9-685-T006", "PARCEL_NAM": "33", "ACRE": ".326", "LONGITUDE": -64.95144611000001, "LATITUDE": 18.34743952, "OBJECTID_1": 8041, "PARCEL_NO_": "105202013200", "Tax_Legal_": "UPPER JOHN DUNKO 33 SOUTHSIDE QTR", "Name": "SHALHOUT, RAED F.", "Address": "PO BOX 8811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32000, "Improved_V": 321100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.74330164599999, "SHAPE_Area": 1413.0363918099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356609.1300999969244, 257546.021200001239777 ], [ 356609.722999997437, 257561.308600001037121 ], [ 356614.678700000047684, 257559.624400001019239 ], [ 356625.999499998986721, 257555.917399998754263 ], [ 356634.100400000810623, 257551.550700001418591 ], [ 356641.402099996805191, 257546.333099998533726 ], [ 356650.354299999773502, 257536.696100000292063 ], [ 356651.246899999678135, 257526.570900000631809 ], [ 356648.061200000345707, 257521.900800000876188 ], [ 356644.047600001096725, 257519.756999999284744 ], [ 356613.43469999730587, 257516.339999999850988 ], [ 356607.956200003623962, 257515.756900001317263 ], [ 356608.557700000703335, 257531.264600001275539 ], [ 356609.1300999969244, 257546.021200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202016000", "MAP": "A9-19-T63", "PARCEL_NAM": "14", "ACRE": null, "LONGITUDE": -64.95322576, "LATITUDE": 18.34719982, "OBJECTID_1": 8066, "PARCEL_NO_": "105202016000", "Tax_Legal_": "UPPER JOHN DUNKO 14 LITTLE NORTHSIDE QTR", "Name": "FLAGSTAR BANK FSB", "Address": "5151 Corporate Dr", "City": "Troy", "State": "Michigan", "Zip": 48098, "Country": "United States", "Land_Value": 51100, "Improved_V": 283000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.130388552, "SHAPE_Area": 1437.7493527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356420.738499999046326, 257529.71680000051856 ], [ 356469.544399999082088, 257511.334800001233816 ], [ 356468.350599996745586, 257509.030900001525879 ], [ 356458.032200001180172, 257489.736900001764297 ], [ 356458.04839999973774, 257487.837200000882149 ], [ 356410.368100002408028, 257500.11259999871254 ], [ 356420.738499999046326, 257529.71680000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202013800", "MAP": "A9-681-T006", "PARCEL_NAM": "16", "ACRE": ".45", "LONGITUDE": -64.9530069, "LATITUDE": 18.34770925, "OBJECTID_1": 8047, "PARCEL_NO_": "105202013800", "Tax_Legal_": "UPPER JOHN DUNKO 16&15-1 SOUTHSIDE QTR", "Name": "KHEMANI, SHOBHA & PARKASH", "Address": "PO Box 8580", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1578600, "Improved_V": 98400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.90106239799999, "SHAPE_Area": 2685.3032922500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356493.737300001084805, 257558.001299999654293 ], [ 356482.630500003695488, 257536.589899998158216 ], [ 356480.027500003576279, 257531.566300000995398 ], [ 356428.079599998891354, 257550.673599999397993 ], [ 356430.835900001227856, 257558.541900001466274 ], [ 356432.414300002157688, 257562.565600000321865 ], [ 356433.992799997329712, 257566.589299999177456 ], [ 356434.777500003576279, 257569.128899998962879 ], [ 356437.129900000989437, 257576.958599999547005 ], [ 356449.077200002968311, 257594.36600000038743 ], [ 356455.488099999725819, 257599.062600001692772 ], [ 356459.507100000977516, 257600.573100000619888 ], [ 356464.344999998807907, 257600.612700000405312 ], [ 356493.737300001084805, 257558.001299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202016500", "MAP": "A9-682-T006", "PARCEL_NAM": "11-1B REM", "ACRE": ".569", "LONGITUDE": -64.95323256, "LATITUDE": 18.34578639, "OBJECTID_1": 8071, "PARCEL_NO_": "105202016500", "Tax_Legal_": "11-1B REM CONTANT 7BA SOUTHSIDE QUARTER", "Name": "D & M INC.", "Address": "PO Box 1557", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 174800, "Improved_V": 164300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.79397246600001, "SHAPE_Area": 3130.6596128900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356472.362700000405312, 257365.516399998217821 ], [ 356459.60419999808073, 257338.455899998545647 ], [ 356452.384700000286102, 257327.423300001770258 ], [ 356446.683200001716614, 257318.1081000007689 ], [ 356436.992899999022484, 257309.079700000584126 ], [ 356404.499499998986721, 257337.100299999117851 ], [ 356431.496899999678135, 257386.295000001788139 ], [ 356434.675399996340275, 257391.809399999678135 ], [ 356446.015900000929832, 257385.780499998480082 ], [ 356474.813299998641014, 257370.822599999606609 ], [ 356472.362700000405312, 257365.516399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202030600", "MAP": "A9-682-T006", "PARCEL_NAM": "11-7 REM", "ACRE": ".509", "LONGITUDE": -64.95265342, "LATITUDE": 18.34560587, "OBJECTID_1": 8192, "PARCEL_NO_": "105202030600", "Tax_Legal_": "11-7 REM CONTANT & 40-1 UPPER JOHN DUNKO 7BA SOUTHSIDE QUARTER", "Name": "SHALHOUT, JEHAD FARIZ", "Address": "PO BOX 1355", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 168200, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.987012233, "SHAPE_Area": 2023.86129504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356484.459799997508526, 257361.80970000103116 ], [ 356537.647900000214577, 257329.907699998468161 ], [ 356536.014700002968311, 257328.044199999421835 ], [ 356509.615000002086163, 257303.341299999505281 ], [ 356468.566399998962879, 257330.540199998766184 ], [ 356472.739399999380112, 257339.726100001484156 ], [ 356483.33110000193119, 257359.699200000613928 ], [ 356484.459799997508526, 257361.80970000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95219465, "LATITUDE": 18.34535996, "OBJECTID_1": 8193, "PARCEL_NO_": "105202030700", "Tax_Legal_": "CONTANT 11-8 7BA SOUTHSIDE QTR", "Name": "Olivia Carty, Dale Carty, and Leborne Carty", "Address": "PO Box 302152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52500, "Improved_V": 177900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.69218263499999, "SHAPE_Area": 2141.1612311700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356537.647900000214577, 257329.907699998468161 ], [ 356595.052599996328354, 257305.529899999499321 ], [ 356592.594700001180172, 257303.846999999135733 ], [ 356566.876900002360344, 257286.737100001424551 ], [ 356566.998000003397465, 257287.978900000452995 ], [ 356566.177299998700619, 257289.660999998450279 ], [ 356562.937700003385544, 257291.32319999858737 ], [ 356556.483599998056889, 257291.692600000649691 ], [ 356554.086199998855591, 257289.139800000935793 ], [ 356552.51860000193119, 257283.849599998444319 ], [ 356546.098600000143051, 257280.208500001579523 ], [ 356509.615000002086163, 257303.341299999505281 ], [ 356536.014700002968311, 257328.044199999421835 ], [ 356537.647900000214577, 257329.907699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202033900", "MAP": "D9-6143-T96", "PARCEL_NAM": "11-18-A", "ACRE": null, "LONGITUDE": -64.95178507, "LATITUDE": 18.34519912, "OBJECTID_1": 8225, "PARCEL_NO_": "105202033900", "Tax_Legal_": "11-18A ESTATE CONTANT 7BA SOUTHSIDE QTR", "Name": "ASFOUR, MICHAEL & CINDY", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021736, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.71152979, "SHAPE_Area": 1042.0934602499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356604.097999997437, 257270.160700000822544 ], [ 356566.256499998271465, 257280.373500000685453 ], [ 356566.876900002360344, 257286.737100001424551 ], [ 356592.594700001180172, 257303.846999999135733 ], [ 356595.052599996328354, 257305.529899999499321 ], [ 356616.420100003480911, 257296.455899998545647 ], [ 356614.534500002861023, 257292.589899998158216 ], [ 356604.097999997437, 257270.160700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032600", "MAP": "D9-2535-T83", "PARCEL_NAM": "52-B", "ACRE": null, "LONGITUDE": -64.95188782, "LATITUDE": 18.34591418, "OBJECTID_1": 8212, "PARCEL_NO_": "105202032600", "Tax_Legal_": "UPPER JOHN DUNKO 53B&52B LITTLE NORTHSIDE", "Name": "ALEXANDER, BERTHA", "Address": "3215 Erinwood Pl", "City": "Montgomery", "State": "Alabama", "Zip": 36110, "Country": "United States", "Land_Value": 169900, "Improved_V": 121700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.776585022199995, "SHAPE_Area": 70.713218242300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356570.278999999165535, 257376.121700000017881 ], [ 356599.229800000786781, 257355.155600000172853 ], [ 356577.996500000357628, 257366.227899998426437 ], [ 356570.297700002789497, 257373.921000000089407 ], [ 356570.278999999165535, 257376.121700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202030900", "MAP": "D9-9316-T019", "PARCEL_NAM": "51 REM", "ACRE": "0.34", "LONGITUDE": -64.95226205, "LATITUDE": 18.34579709, "OBJECTID_1": 8195, "PARCEL_NO_": "105202030900", "Tax_Legal_": "UPPER JOHN DUNKO 51&52A 3A LITTLE NORTHSIDE", "Name": "FRANCIS, ELMA", "Address": "PO Box 302471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38300, "Improved_V": 238200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.75178607800001, "SHAPE_Area": 1860.70295936 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356563.232199996709824, 257374.031300000846386 ], [ 356563.747400000691414, 257359.813999999314547 ], [ 356563.726700000464916, 257359.642099998891354 ], [ 356554.792099997401237, 257322.627099998295307 ], [ 356537.647900000214577, 257329.907699998468161 ], [ 356515.023800000548363, 257343.47749999910593 ], [ 356518.094200000166893, 257349.217999998480082 ], [ 356529.118299998342991, 257380.339000001549721 ], [ 356552.546300001442432, 257375.253400001674891 ], [ 356556.583200000226498, 257374.653099998831749 ], [ 356561.426500000059605, 257374.059500001370907 ], [ 356563.232199996709824, 257374.031300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202030600", "MAP": "D9-7998-T007", "PARCEL_NAM": "40-1", "ACRE": ".016", "LONGITUDE": -64.95267673, "LATITUDE": 18.34582765, "OBJECTID_1": 8192, "PARCEL_NO_": "105202030600", "Tax_Legal_": "11-7 REM CONTANT & 40-1 UPPER JOHN DUNKO 7BA SOUTHSIDE QUARTER", "Name": "SHALHOUT, JEHAD FARIZ", "Address": "PO BOX 1355", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 168200, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.296619230799998, "SHAPE_Area": 95.432806319099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356485.317199997603893, 257363.413100000470877 ], [ 356492.040399998426437, 257360.035700000822544 ], [ 356496.689499996602535, 257359.234299998730421 ], [ 356499.92509999871254, 257359.260499998927116 ], [ 356508.414399996399879, 257353.316100001335144 ], [ 356504.500399999320507, 257349.78940000012517 ], [ 356484.459799997508526, 257361.80970000103116 ], [ 356485.317199997603893, 257363.413100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202030800", "MAP": "G9-1968-T72", "PARCEL_NAM": "40", "ACRE": null, "LONGITUDE": -64.95255752, "LATITUDE": 18.34600594, "OBJECTID_1": 8194, "PARCEL_NO_": "105202030800", "Tax_Legal_": "40 REM &41A UPPER JOHN DUNKO NO.3A LITTLE NORTHSIDE QTR", "Name": "DIDOMENICO, ELIZABETH S.", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 282400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.36234125799999, "SHAPE_Area": 1582.98019688 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356504.500399999320507, 257349.78940000012517 ], [ 356508.414399996399879, 257353.316100001335144 ], [ 356499.92509999871254, 257359.260499998927116 ], [ 356496.689499996602535, 257359.234299998730421 ], [ 356492.040399998426437, 257360.035700000822544 ], [ 356485.317199997603893, 257363.413100000470877 ], [ 356486.505999997258186, 257365.635899998247623 ], [ 356496.030699998140335, 257383.445700000971556 ], [ 356501.496799997985363, 257404.388700000941753 ], [ 356512.009499996900558, 257400.886100001633167 ], [ 356533.8445999994874, 257393.465500000864267 ], [ 356529.118299998342991, 257380.339000001549721 ], [ 356518.094200000166893, 257349.217999998480082 ], [ 356515.023800000548363, 257343.47749999910593 ], [ 356504.500399999320507, 257349.78940000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704048200", "MAP": "D9-8145-T008", "PARCEL_NAM": "107-4-2", "ACRE": "1.604", "LONGITUDE": -64.95515846000001, "LATITUDE": 18.34876856, "OBJECTID_1": 3612, "PARCEL_NO_": "102704048200", "Tax_Legal_": "107-4-2 CONTANT 7B SOUTHSIDE QTR", "Name": "BRUNT, THOMAS IV & PIA", "Address": "# 8", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138800, "Improved_V": 710300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.82732555699999, "SHAPE_Area": 5328.4478100200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356290.851800002157688, 257646.775699999183416 ], [ 356261.370800003409386, 257631.826099999248981 ], [ 356247.094499997794628, 257640.20890000090003 ], [ 356217.881999999284744, 257661.712499998509884 ], [ 356166.703100003302097, 257706.045400001108646 ], [ 356161.928199999034405, 257711.33390000090003 ], [ 356176.230999998748302, 257718.653400000184774 ], [ 356257.827200002968311, 257705.524700000882149 ], [ 356283.211300000548363, 257660.136199999600649 ], [ 356290.851800002157688, 257646.775699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202011000", "MAP": "A9-691-T006", "PARCEL_NAM": "7 REM", "ACRE": ".761", "LONGITUDE": -64.95408049, "LATITUDE": 18.34806848, "OBJECTID_1": 8020, "PARCEL_NO_": "105202011000", "Tax_Legal_": "UPPER JOHN DUNKOE 7 3A LITTLE NORTHSIDE", "Name": "BRUNT, SHANE G and CRISTINA A", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026158, "Country": "United States", "Land_Value": 59400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.165665655, "SHAPE_Area": 3670.8446445599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356301.01860000193119, 257625.573600001633167 ], [ 356374.318499997258186, 257629.504099998623133 ], [ 356377.848399996757507, 257625.869300000369549 ], [ 356381.92849999666214, 257620.203099999576807 ], [ 356384.424699999392033, 257611.146499998867512 ], [ 356384.976099997758865, 257605.486800000071526 ], [ 356385.308399997651577, 257602.076799999922514 ], [ 356383.765900000929832, 257593.831500001251698 ], [ 356382.901100002229214, 257591.933400001376867 ], [ 356382.281000003218651, 257590.572299998253584 ], [ 356379.80799999833107, 257585.144299998879433 ], [ 356377.446599997580051, 257578.369899999350309 ], [ 356370.545100003480911, 257567.980099998414516 ], [ 356314.709299996495247, 257587.516600001603365 ], [ 356311.987899996340275, 257595.143899999558926 ], [ 356310.241899996995926, 257600.616099998354912 ], [ 356310.217299997806549, 257600.693199999630451 ], [ 356309.941600002348423, 257601.557500001043081 ], [ 356307.01690000295639, 257610.72410000115633 ], [ 356301.01860000193119, 257625.573600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704044000", "MAP": "D9-8145-T008", "PARCEL_NAM": "1074-1", "ACRE": ".10", "LONGITUDE": -64.95468637, "LATITUDE": 18.34833498, "OBJECTID_1": 3576, "PARCEL_NO_": "102704044000", "Tax_Legal_": "107-4 CONTANT 7B SOUTHSIDE QTR", "Name": "BRUNT, KRISTINE A. & THOMAS B. (TRUSTEES)", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.288118543, "SHAPE_Area": 568.01980125199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356301.01860000193119, 257625.573600001633167 ], [ 356278.445799998939037, 257620.456199999898672 ], [ 356277.901600003242493, 257620.8293999992311 ], [ 356264.113300003111362, 257630.215700000524521 ], [ 356261.370800003409386, 257631.826099999248981 ], [ 356290.851800002157688, 257646.775699999183416 ], [ 356296.308300003409386, 257637.234200000762939 ], [ 356298.6503000035882, 257631.436500001698732 ], [ 356301.01860000193119, 257625.573600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202017400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95458305, "LATITUDE": 18.34801985, "OBJECTID_1": 8080, "PARCEL_NO_": "105202017400", "Tax_Legal_": "CONTANT 107-48 7B SOUTHSIDE QUARTER", "Name": "BRUNT, THOMAS B. ,III & KRISTINE A. (TRUSTEES)", "Address": "3814 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.630570181, "SHAPE_Area": 1595.6582640199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356278.445799998939037, 257620.456199999898672 ], [ 356301.01860000193119, 257625.573600001633167 ], [ 356307.01690000295639, 257610.72410000115633 ], [ 356311.987899996340275, 257595.143899999558926 ], [ 356316.944399997591972, 257581.252199999988079 ], [ 356319.417300000786781, 257574.939699999988079 ], [ 356279.094499997794628, 257575.453999999910593 ], [ 356277.056800000369549, 257596.035300001502037 ], [ 356275.565399996936321, 257611.100000001490116 ], [ 356277.950099997222424, 257615.130300000309944 ], [ 356277.905799999833107, 257620.333799999207258 ], [ 356278.445799998939037, 257620.456199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202017300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95492659, "LATITUDE": 18.34796274, "OBJECTID_1": 8079, "PARCEL_NO_": "105202017300", "Tax_Legal_": "CONTANT 107-47 7B SOUTHSIDE QTR.", "Name": "RYAN, KEN & SHIRLEY", "Address": "PO Box 305701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41500, "Improved_V": 369500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.215710605, "SHAPE_Area": 1155.7287523699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356277.056800000369549, 257596.035300001502037 ], [ 356279.094499997794628, 257575.453999999910593 ], [ 356246.030299998819828, 257575.816700000315905 ], [ 356242.054700002074242, 257575.860300000756979 ], [ 356236.758100003004074, 257596.87220000103116 ], [ 356234.693000003695488, 257605.064800001680851 ], [ 356263.531800001859665, 257603.824299998581409 ], [ 356269.964299999177456, 257605.987900000065565 ], [ 356275.565399996936321, 257611.100000001490116 ], [ 356277.056800000369549, 257596.035300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202017200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95527667, "LATITUDE": 18.34796528, "OBJECTID_1": 8078, "PARCEL_NO_": "105202017200", "Tax_Legal_": "CONTANT 107-46 7B SOUTHSIDE QTR.", "Name": "DANIEL, CORINE", "Address": "EST. TUTU 146-8", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.75004733200001, "SHAPE_Area": 1021.88091534 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356203.539099998772144, 257576.256400000303984 ], [ 356205.701999999582767, 257598.635600000619888 ], [ 356206.7820999994874, 257609.811099998652935 ], [ 356226.425300002098083, 257605.420400001108646 ], [ 356234.693000003695488, 257605.064800001680851 ], [ 356236.758100003004074, 257596.87220000103116 ], [ 356242.054700002074242, 257575.860300000756979 ], [ 356212.966099999845028, 257576.179400000721216 ], [ 356203.539099998772144, 257576.256400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202017100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95575196, "LATITUDE": 18.34808471, "OBJECTID_1": 8077, "PARCEL_NO_": "105202017100", "Tax_Legal_": "CONTANT 107-45 7B SOUTHSIDE QUARTER", "Name": "BESS, LIONEL", "Address": "PO Box 10872", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49800, "Improved_V": 244900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.356048552, "SHAPE_Area": 2181.4013841800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356206.7820999994874, 257609.811099998652935 ], [ 356205.701999999582767, 257598.635600000619888 ], [ 356203.539099998772144, 257576.256400000303984 ], [ 356187.160499997437, 257576.390299998223782 ], [ 356143.36429999768734, 257606.007199998944998 ], [ 356138.497599996626377, 257609.344799999147654 ], [ 356124.709399998188019, 257618.731199998408556 ], [ 356111.752700001001358, 257625.169100001454353 ], [ 356112.541000001132488, 257627.286400001496077 ], [ 356119.795999996364117, 257627.55689999833703 ], [ 356140.787100002169609, 257624.562300000339746 ], [ 356206.7820999994874, 257609.811099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202016900", "MAP": "G9-1978-T72", "PARCEL_NAM": "2-5", "ACRE": ".22", "LONGITUDE": -64.95008103000001, "LATITUDE": 18.34802028, "OBJECTID_1": 8075, "PARCEL_NO_": "105202016900", "Tax_Legal_": "UPPER JOHN DUNKO 2-5 LITTLE NORTHSIDE", "Name": "HODGE, LISTON", "Address": "PO Box 306035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17000, "Improved_V": 251300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.08816367200001, "SHAPE_Area": 1133.0965585900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356770.00789999961853, 257628.096799999475479 ], [ 356785.100900001823902, 257621.603100001811981 ], [ 356784.393500000238419, 257609.987100001424551 ], [ 356786.049300000071526, 257604.934399999678135 ], [ 356792.566299997270107, 257597.177299998700619 ], [ 356751.424500003457069, 257573.848400000482798 ], [ 356752.374099999666214, 257591.243599999696016 ], [ 356762.446900002658367, 257612.294900000095367 ], [ 356770.00789999961853, 257628.096799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202013100", "MAP": "G9-229-T73", "PARCEL_NAM": "30", "ACRE": null, "LONGITUDE": -64.95128688, "LATITUDE": 18.34776665, "OBJECTID_1": 8040, "PARCEL_NO_": "105202013100", "Tax_Legal_": "UPPER JOHN DUNKO 30 SOUTHSIDE QTR", "Name": "SOTO FAMILY TRUST", "Address": "PO Box 302668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31000, "Improved_V": 235100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.20816538599999, "SHAPE_Area": 1463.6358065899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356663.858400002121925, 257560.660199999809265 ], [ 356647.820299997925758, 257550.185300000011921 ], [ 356636.458200000226498, 257558.74720000103116 ], [ 356624.313100002706051, 257564.558400001376867 ], [ 356612.994199998676777, 257568.054400000721216 ], [ 356610.551899999380112, 257570.778599999845028 ], [ 356610.526699997484684, 257573.73369999974966 ], [ 356612.92400000244379, 257576.286400001496077 ], [ 356645.027300000190735, 257594.069899998605251 ], [ 356645.645700000226498, 257594.411899998784065 ], [ 356675.651199996471405, 257567.409000001847744 ], [ 356671.8783999979496, 257565.792100001126528 ], [ 356663.858400002121925, 257560.660199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9509911, "LATITUDE": 18.34789104, "OBJECTID_1": 8038, "PARCEL_NO_": "105202012900", "Tax_Legal_": "UPPER JOHN DUNKO 29 SOUTHSIDE QTR", "Name": "SUMNER, HAROLD J & DELITA N", "Address": "PO BOX 2532", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.07790887300001, "SHAPE_Area": 1070.92434736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356675.651199996471405, 257567.409000001847744 ], [ 356645.645700000226498, 257594.411899998784065 ], [ 356656.26349999755621, 257600.283599998801947 ], [ 356663.250200003385544, 257605.55629999935627 ], [ 356706.687299996614456, 257580.549499999731779 ], [ 356692.768799997866154, 257574.617899999022484 ], [ 356683.929899998009205, 257570.956999998539686 ], [ 356675.651199996471405, 257567.409000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95066189000001, "LATITUDE": 18.34803489, "OBJECTID_1": 8037, "PARCEL_NO_": "105202012800", "Tax_Legal_": "UPPER JOHN DUNKO 28 NORTHSIDE QTR", "Name": "JACKSON, ROY D", "Address": "P.O. BOX 4547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49100, "Improved_V": 111000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.292853412, "SHAPE_Area": 2333.2860584300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356740.632500000298023, 257608.302299998700619 ], [ 356758.005500003695488, 257603.012699998915195 ], [ 356752.374099999666214, 257591.243599999696016 ], [ 356710.444700002670288, 257582.150800000876188 ], [ 356706.687299996614456, 257580.549499999731779 ], [ 356663.250200003385544, 257605.55629999935627 ], [ 356665.878100000321865, 257607.539500001817942 ], [ 356673.077399998903275, 257614.353399999439716 ], [ 356677.863099999725819, 257620.514299999922514 ], [ 356681.103399999439716, 257626.427299998700619 ], [ 356740.632500000298023, 257608.302299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202016700", "MAP": "D9-3958-T87", "PARCEL_NAM": "27", "ACRE": null, "LONGITUDE": -64.95047695, "LATITUDE": 18.34821334, "OBJECTID_1": 8073, "PARCEL_NO_": "105202016700", "Tax_Legal_": "27 UPPER JOHN DUNKO No.3A LITTLE NORTHSIDE QTR", "Name": "RAUL A RIJO and ROSA OVIEDO WILLIAMS", "Address": "PO Box 9003", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.58452419100001, "SHAPE_Area": 1499.9079522899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356736.71339999884367, 257629.788400001823902 ], [ 356770.00789999961853, 257628.096799999475479 ], [ 356762.446900002658367, 257612.294900000095367 ], [ 356758.005500003695488, 257603.012699998915195 ], [ 356740.632500000298023, 257608.302299998700619 ], [ 356681.103399999439716, 257626.427299998700619 ], [ 356682.627300001680851, 257629.208099998533726 ], [ 356684.981499999761581, 257636.826799999922514 ], [ 356685.011799998581409, 257637.155999999493361 ], [ 356685.532999999821186, 257640.834899999201298 ], [ 356714.487700000405312, 257630.917700000107288 ], [ 356736.71339999884367, 257629.788400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032000", "MAP": "A9-19-T63", "PARCEL_NAM": "56", "ACRE": null, "LONGITUDE": -64.95060267, "LATITUDE": 18.3467038, "OBJECTID_1": 8206, "PARCEL_NO_": "105202032000", "Tax_Legal_": "UPPER JOHN DUNKO 56 SOUTHSIDE QTR", "Name": "SECOND STOREY LIVING, INC", "Address": "PO Box 1500", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 153500, "Improved_V": 82300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.146628443, "SHAPE_Area": 2049.1251923200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356743.531599998474121, 257484.474199999123812 ], [ 356740.374600000679493, 257476.42680000141263 ], [ 356729.327200002968311, 257448.049899999052286 ], [ 356719.057300001382828, 257423.056800000369549 ], [ 356716.688799999654293, 257417.126800000667572 ], [ 356711.955200001597404, 257404.8445999994874 ], [ 356692.99099999666214, 257453.874200001358986 ], [ 356699.396600000560284, 257459.203999999910593 ], [ 356704.96339999884367, 257468.326499998569489 ], [ 356706.513099998235703, 257475.72749999910593 ], [ 356704.803400002419949, 257487.11259999871254 ], [ 356743.531599998474121, 257484.474199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202037200", "MAP": "G9-763-T64", "PARCEL_NAM": "57", "ACRE": null, "LONGITUDE": -64.95059572, "LATITUDE": 18.34712415, "OBJECTID_1": 8230, "PARCEL_NO_": "105202037200", "Tax_Legal_": "UPPER JOHN DUNKO 57 LITTLE NORTHSIDE", "Name": "HAZELL, FRANKLIN & CHARMAINE", "Address": "PO Box 6733", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24900, "Improved_V": 145500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.10853404400001, "SHAPE_Area": 1123.60737298 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356720.105700001120567, 257523.323499999940395 ], [ 356726.325900003314018, 257513.008099999278784 ], [ 356743.531599998474121, 257484.474199999123812 ], [ 356704.803400002419949, 257487.11259999871254 ], [ 356694.949600003659725, 257507.93019999936223 ], [ 356694.913699999451637, 257512.151700001209974 ], [ 356697.316399998962879, 257514.071299999952316 ], [ 356715.798699997365475, 257521.610800001770258 ], [ 356720.105700001120567, 257523.323499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202031700", "MAP": "A9-679-T006", "PARCEL_NAM": "57A-REM", "ACRE": ".23", "LONGITUDE": -64.95035599000001, "LATITUDE": 18.34723994, "OBJECTID_1": 8203, "PARCEL_NO_": "105202031700", "Tax_Legal_": "UPPER JOHN DUNKO 57A LITTLE NORTHSIDE QTR", "Name": "JAMES, OAKLAND & VERONICA", "Address": "1538 E 54th St", "City": "Brooklyn", "State": "New York", "Zip": 11234, "Country": "United States", "Land_Value": 24900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.82338277700001, "SHAPE_Area": 1028.7870236599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356761.199199996888638, 257532.883400000631809 ], [ 356753.810400001704693, 257508.411899998784065 ], [ 356752.224799998104572, 257505.232500001788139 ], [ 356748.279500000178814, 257495.067800000309944 ], [ 356743.531599998474121, 257484.474199999123812 ], [ 356726.325900003314018, 257513.008099999278784 ], [ 356720.105700001120567, 257523.323499999940395 ], [ 356739.104400001466274, 257530.878600001335144 ], [ 356751.983800001442432, 257533.517099998891354 ], [ 356761.199199996888638, 257532.883400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202014400", "MAP": "A9-19-T63", "PARCEL_NAM": "3", "ACRE": ".76", "LONGITUDE": -64.95387796, "LATITUDE": 18.34679093, "OBJECTID_1": 8053, "PARCEL_NO_": "105202014400", "Tax_Legal_": "UPPER JOHN DUNKO 3 LITTLE NORTHSIDE QTR", "Name": "CLARK, NANCY O", "Address": "PO Box 6832", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 69600, "Improved_V": 312600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.19591468799999, "SHAPE_Area": 2313.6283911599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356340.49040000140667, 257467.665500000119209 ], [ 356339.633699998259544, 257473.569099999964237 ], [ 356366.098200000822544, 257490.673200000077486 ], [ 356393.59910000115633, 257480.765799999237061 ], [ 356392.871899999678135, 257471.471700001507998 ], [ 356393.809500001370907, 257456.069600000977516 ], [ 356394.718299999833107, 257444.044700000435114 ], [ 356396.01410000026226, 257429.902399998158216 ], [ 356343.895099997520447, 257449.011100001633167 ], [ 356343.031599998474121, 257453.331999998539686 ], [ 356340.49040000140667, 257467.665500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202016100", "MAP": "A9-681-T006", "PARCEL_NAM": "15", "ACRE": ".390", "LONGITUDE": -64.95312064, "LATITUDE": 18.34740831, "OBJECTID_1": 8067, "PARCEL_NO_": "105202016100", "Tax_Legal_": "UPPER JOHN DUNKO 15 SOUTHSIDE QTR", "Name": "DAWSON, DOROLEY DIAN", "Address": "PO Box 6831", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 51100, "Improved_V": 154600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.49479574099999, "SHAPE_Area": 1204.52363044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356469.544399999082088, 257511.334800001233816 ], [ 356420.738499999046326, 257529.71680000051856 ], [ 356428.079599998891354, 257550.673599999397993 ], [ 356480.027500003576279, 257531.566300000995398 ], [ 356469.544399999082088, 257511.334800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202030900", "MAP": "G9-2510-T75", "PARCEL_NAM": "52A", "ACRE": ".877", "LONGITUDE": -64.95210002, "LATITUDE": 18.34562476, "OBJECTID_1": 8195, "PARCEL_NO_": "105202030900", "Tax_Legal_": "UPPER JOHN DUNKO 51&52A 3A LITTLE NORTHSIDE", "Name": "FRANCIS, ELMA", "Address": "PO Box 302471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38300, "Improved_V": 238200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.800121430499999, "SHAPE_Area": 86.768343399100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356563.726700000464916, 257359.642099998891354 ], [ 356559.04450000077486, 257320.821299999952316 ], [ 356554.792099997401237, 257322.627099998295307 ], [ 356563.726700000464916, 257359.642099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032600", "MAP": "D9-2545-T83", "PARCEL_NAM": "53-B", "ACRE": null, "LONGITUDE": -64.9516483, "LATITUDE": 18.34603048, "OBJECTID_1": 8212, "PARCEL_NO_": "105202032600", "Tax_Legal_": "UPPER JOHN DUNKO 53B&52B LITTLE NORTHSIDE", "Name": "ALEXANDER, BERTHA", "Address": "3215 Erinwood Pl", "City": "Montgomery", "State": "Alabama", "Zip": 36110, "Country": "United States", "Land_Value": 169900, "Improved_V": 121700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.830095739, "SHAPE_Area": 3288.1427911800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356599.229800000786781, 257355.155600000172853 ], [ 356570.278999999165535, 257376.121700000017881 ], [ 356570.254600003361702, 257378.986900001764297 ], [ 356572.623199999332428, 257384.916900001466274 ], [ 356586.152500003576279, 257405.925900001078844 ], [ 356586.933600001037121, 257408.887600000947714 ], [ 356586.798699997365475, 257424.718499999493361 ], [ 356588.369999997317791, 257429.586500000208616 ], [ 356593.175499998033047, 257433.425500001758337 ], [ 356644.624099999666214, 257357.430799998342991 ], [ 356639.646799996495247, 257337.307000000029802 ], [ 356599.229800000786781, 257355.155600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032600", "MAP": "D9-2535-T83", "PARCEL_NAM": "53-A", "ACRE": null, "LONGITUDE": -64.9514714, "LATITUDE": 18.34567854, "OBJECTID_1": 8212, "PARCEL_NO_": "105202032600", "Tax_Legal_": "UPPER JOHN DUNKO 53B&52B LITTLE NORTHSIDE", "Name": "ALEXANDER, BERTHA", "Address": "3215 Erinwood Pl", "City": "Montgomery", "State": "Alabama", "Zip": 36110, "Country": "United States", "Land_Value": 169900, "Improved_V": 121700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.657818105399997, "SHAPE_Area": 161.60205831600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356599.229800000786781, 257355.155600000172853 ], [ 356639.646799996495247, 257337.307000000029802 ], [ 356637.86370000243187, 257330.097699999809265 ], [ 356599.229800000786781, 257355.155600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032800", "MAP": "D9-1430-T78", "PARCEL_NAM": "51A", "ACRE": null, "LONGITUDE": -64.95204499, "LATITUDE": 18.3459395, "OBJECTID_1": 8214, "PARCEL_NO_": "105202032800", "Tax_Legal_": "UPPER JOHN DUNKO 52, 51A and 53-A 3A LITTLE NORTHSIDE", "Name": "FONTAINE, CLIFTON AND JILL PRIENTICE-FONTAINE", "Address": "6511 Estatec Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62900, "Improved_V": 48200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.092020299600001, "SHAPE_Area": 28.232129102199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356563.726700000464916, 257359.642099998891354 ], [ 356563.747400000691414, 257359.813999999314547 ], [ 356563.232199996709824, 257374.031300000846386 ], [ 356567.185000002384186, 257373.9695999994874 ], [ 356563.726700000464916, 257359.642099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032400", "MAP": "D9-8970-T015", "PARCEL_NAM": "64 REM", "ACRE": ".78", "LONGITUDE": -64.95074059, "LATITUDE": 18.34575343, "OBJECTID_1": 8210, "PARCEL_NO_": "105202032400", "Tax_Legal_": "UPPER JOHN DUNKO 64 SOUTHSIDE QTR", "Name": "JEWEL C PENN TRUST", "Address": "PO BOX 305604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71000, "Improved_V": 480100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.147387638, "SHAPE_Area": 3272.91349515 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356687.869999997317791, 257326.419799998402596 ], [ 356691.108300000429153, 257348.235599998384714 ], [ 356644.624099999666214, 257357.430799998342991 ], [ 356650.869599997997284, 257381.546500001102686 ], [ 356751.102300003170967, 257353.024900000542402 ], [ 356748.112300001084805, 257321.989000000059605 ], [ 356687.869999997317791, 257326.419799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202070900", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3E", "ACRE": ".13", "LONGITUDE": -64.95162829, "LATITUDE": 18.34225508, "OBJECTID_1": 8416, "PARCEL_NO_": "105202070900", "Tax_Legal_": "CONTANT 23-3E 7BASOUTHSIDE QTR.", "Name": "SIMMONS, PEARL", "Address": "831 SW 29th Way", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33312, "Country": "United States", "Land_Value": 46600, "Improved_V": 46800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.66127222, "SHAPE_Area": 600.99206354499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356631.906400002539158, 256955.604100000113249 ], [ 356631.440700002014637, 256955.544700000435114 ], [ 356618.804499998688698, 256953.93299999833107 ], [ 356596.934299997985363, 256951.143500000238419 ], [ 356593.893700003623962, 256970.503299999982119 ], [ 356628.56870000064373, 256970.364900000393391 ], [ 356631.906400002539158, 256955.604100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202061500", "MAP": "A9-272-T78", "PARCEL_NAM": "23-1", "ACRE": ".23", "LONGITUDE": -64.95103474, "LATITUDE": 18.34071633, "OBJECTID_1": 8405, "PARCEL_NO_": "105202061500", "Tax_Legal_": "CONTANT 114,115,116&117A 24 L.J.DNK.&23-1 CON", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 272400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.31841484200001, "SHAPE_Area": 738.11721354999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356671.553800001740456, 256772.833999998867512 ], [ 356670.660199999809265, 256784.215900000184774 ], [ 356665.251400001347065, 256853.111699998378754 ], [ 356691.729400001466274, 256750.077899999916553 ], [ 356673.8091000020504, 256770.290300000458956 ], [ 356671.553800001740456, 256772.833999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202060100", "MAP": "D9-7181-T003", "PARCEL_NAM": "2-REM", "ACRE": "7.577", "LONGITUDE": -64.95046716, "LATITUDE": 18.34128011, "OBJECTID_1": 8395, "PARCEL_NO_": "105202060100", "Tax_Legal_": "LOWER JOHN DUNKO 2&14 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 397100, "Improved_V": 18457100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 970.37559943799999, "SHAPE_Area": 28964.665984700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356691.729400001466274, 256750.077899999916553 ], [ 356629.343099996447563, 256992.842099998146296 ], [ 356629.509900003671646, 256996.343499999493361 ], [ 356681.601999998092651, 256993.133099999278784 ], [ 356681.596500001847744, 256992.963700000196695 ], [ 356682.316500000655651, 256989.534000001847744 ], [ 356683.277500003576279, 256984.955899998545647 ], [ 356683.457000002264977, 256980.135299999266863 ], [ 356684.322999998927116, 256956.888999998569489 ], [ 356689.549199998378754, 256911.33559999987483 ], [ 356695.184399999678135, 256912.437199998646975 ], [ 356694.672700002789497, 256916.943799998611212 ], [ 356784.827799998223782, 256922.25899999961257 ], [ 356765.228100001811981, 256991.457800000905991 ], [ 356771.869400002062321, 256997.713300000876188 ], [ 356802.546300001442432, 256898.961500000208616 ], [ 356819.120300002396107, 256846.53489999845624 ], [ 356832.375500001013279, 256805.057900000363588 ], [ 356844.835199996829033, 256762.307900000363588 ], [ 356769.077799998223782, 256757.465999998152256 ], [ 356763.435400001704693, 256757.208700001239777 ], [ 356744.902800001204014, 256755.5793999992311 ], [ 356726.370200000703335, 256753.950100000947714 ], [ 356710.256599999964237, 256752.340500000864267 ], [ 356694.949199996888638, 256750.73759999871254 ], [ 356691.729400001466274, 256750.077899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202058400", "MAP": "A9-272-T78", "PARCEL_NAM": "23 REM", "ACRE": null, "LONGITUDE": -64.95099327, "LATITUDE": 18.34039403, "OBJECTID_1": 8382, "PARCEL_NO_": "105202058400", "Tax_Legal_": "CONTANT 23 7BA SOUTHSIDE QTR", "Name": "VIRCO LTD", "Address": "P.O. BOX 1709", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 171700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.171946447899998, "SHAPE_Area": 181.02160129699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356686.904100000858307, 256748.5608000010252 ], [ 356679.250600002706051, 256746.225099999457598 ], [ 356671.553800001740456, 256772.833999998867512 ], [ 356673.8091000020504, 256770.290300000458956 ], [ 356691.729400001466274, 256750.077899999916553 ], [ 356686.904100000858307, 256748.5608000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202058400", "MAP": "A9-272-T78", "PARCEL_NAM": "23 REM", "ACRE": null, "LONGITUDE": -64.95126882, "LATITUDE": 18.34160551, "OBJECTID_1": 8382, "PARCEL_NO_": "105202058400", "Tax_Legal_": "CONTANT 23 7BA SOUTHSIDE QTR", "Name": "VIRCO LTD", "Address": "P.O. BOX 1709", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 171700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 449.46652073299998, "SHAPE_Area": 1428.4442518000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356670.660199999809265, 256784.215900000184774 ], [ 356671.553800001740456, 256772.833999998867512 ], [ 356670.760200001299381, 256777.15089999884367 ], [ 356668.077299997210503, 256791.744699999690056 ], [ 356664.248099997639656, 256812.573499999940395 ], [ 356663.364399999380112, 256816.481499999761581 ], [ 356658.913400001823902, 256836.166200000792742 ], [ 356655.739399999380112, 256850.203000001609325 ], [ 356649.745800003409386, 256876.709499999880791 ], [ 356645.209700003266335, 256896.770300000905991 ], [ 356641.057099997997284, 256915.135099999606609 ], [ 356635.673600003123283, 256938.943500000983477 ], [ 356628.56870000064373, 256970.364900000393391 ], [ 356628.783699996769428, 256976.969999998807907 ], [ 356629.207800000905991, 256990.001800000667572 ], [ 356629.343099996447563, 256992.842099998146296 ], [ 356665.251400001347065, 256853.111699998378754 ], [ 356670.660199999809265, 256784.215900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202073400", "MAP": "D9-3087-T85", "PARCEL_NAM": "8-1", "ACRE": ".15", "LONGITUDE": -64.9510114, "LATITUDE": 18.34020076, "OBJECTID_1": 8441, "PARCEL_NO_": "105202073400", "Tax_Legal_": "CONTANT 8-1 7BA S S QTR.", "Name": "DOWLING, ADORA A", "Address": "PO Box 304546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.355121032, "SHAPE_Area": 614.10898013400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356691.729400001466274, 256750.077899999916553 ], [ 356690.40089999884367, 256716.714299999177456 ], [ 356669.332400001585484, 256728.785300001502037 ], [ 356656.341499999165535, 256739.233600001782179 ], [ 356686.904100000858307, 256748.5608000010252 ], [ 356691.729400001466274, 256750.077899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202073000", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3Q", "ACRE": "0.14", "LONGITUDE": -64.95122932, "LATITUDE": 18.34059783, "OBJECTID_1": 8438, "PARCEL_NO_": "105202073000", "Tax_Legal_": "CONTANT 23-3Q S S QTR.", "Name": "ALEXANDER, ANNATHAR N., ANNEIL S. & ANDEL C.", "Address": "PO Box 7861", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.707617522500001, "SHAPE_Area": 558.90662317900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356671.553800001740456, 256772.833999998867512 ], [ 356645.375100001692772, 256765.730200000107288 ], [ 356643.991499997675419, 256769.107799999415874 ], [ 356638.221400000154972, 256783.837200000882149 ], [ 356668.077299997210503, 256791.744699999690056 ], [ 356670.760200001299381, 256777.15089999884367 ], [ 356671.553800001740456, 256772.833999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202073200", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3R", "ACRE": "0.14", "LONGITUDE": -64.95116289000001, "LATITUDE": 18.34039377, "OBJECTID_1": 8440, "PARCEL_NO_": "105202073200", "Tax_Legal_": "CONTANT 23-3R 7BA SOUTHSIDE QTR.", "Name": "IBLE, DONNA E. & PAULA J", "Address": "PO Box 305454", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69000, "Improved_V": 166400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.516024121, "SHAPE_Area": 721.70774741399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356679.250600002706051, 256746.225099999457598 ], [ 356656.341499999165535, 256739.233600001782179 ], [ 356654.707299999892712, 256741.753400001674891 ], [ 356651.402999997138977, 256751.014499999582767 ], [ 356645.375100001692772, 256765.730200000107288 ], [ 356671.553800001740456, 256772.833999998867512 ], [ 356679.250600002706051, 256746.225099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060900", "MAP": "D3-142-T46", "PARCEL_NAM": "106", "ACRE": null, "LONGITUDE": -64.95002051, "LATITUDE": 18.339733, "OBJECTID_1": 9203, "PARCEL_NO_": "105301060900", "Tax_Legal_": "106 & 107 CONTANT 7BB SOUTH SIDE QUARTER", "Name": "ROBERT, JOSEPH", "Address": "PO Box 10724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74600, "Improved_V": 96100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.222259456, "SHAPE_Area": 863.96371056400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356767.79110000282526, 256695.633400000631809 ], [ 356802.801500000059605, 256697.190600000321865 ], [ 356803.414399996399879, 256677.290500000119209 ], [ 356767.195600003004074, 256667.019000001251698 ], [ 356767.79110000282526, 256695.633400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060500", "MAP": "G9-620-T62", "PARCEL_NAM": "110", "ACRE": ".08", "LONGITUDE": -64.95000643, "LATITUDE": 18.34030302, "OBJECTID_1": 9199, "PARCEL_NO_": "105301060500", "Tax_Legal_": "CONTANT 11O SOUTHSIDE QTR", "Name": "MILLS, IRENE A. -LIFE ESTATE", "Address": "PO Box 9501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33300, "Improved_V": 78900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.98396986500001, "SHAPE_Area": 730.82267401800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356801.600900001823902, 256736.169599998742342 ], [ 356801.136699996888638, 256736.165800001472235 ], [ 356768.624399997293949, 256735.676500000059605 ], [ 356769.077799998223782, 256757.465999998152256 ], [ 356800.882299996912479, 256759.498700000345707 ], [ 356801.600900001823902, 256736.169599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060600", "MAP": "G9-620-T62", "PARCEL_NAM": "109", "ACRE": ".05", "LONGITUDE": -64.95000983, "LATITUDE": 18.3401017, "OBJECTID_1": 9200, "PARCEL_NO_": "105301060600", "Tax_Legal_": "CONTANT 109&108A 7BB SOUTHSIDE QTR.", "Name": "CHRISTIAN (LIFE ESTATE), LORENE", "Address": "PO BOX 302342", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.4647000155, "SHAPE_Area": 206.989482025 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356768.454099997878075, 256727.495200000703335 ], [ 356801.840000003576279, 256728.4070999994874 ], [ 356802.026299998164177, 256722.356499999761581 ], [ 356768.323299996554852, 256721.206300001591444 ], [ 356768.454099997878075, 256727.495200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060800", "MAP": "D3-142-T46", "PARCEL_NAM": "108", "ACRE": null, "LONGITUDE": -64.95000745, "LATITUDE": 18.33999278, "OBJECTID_1": 9202, "PARCEL_NO_": "105301060800", "Tax_Legal_": "CONTANT 1O8 SOUTHSIDE QTR", "Name": "MILLS, KENNETH", "Address": "PO Box 1062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.831979877500004, "SHAPE_Area": 212.76742018600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356768.198700003325939, 256715.220400001853704 ], [ 356802.203299999237061, 256716.612300001084805 ], [ 356802.401199996471405, 256710.186599999666214 ], [ 356768.073299996554852, 256709.193799998611212 ], [ 356768.198700003325939, 256715.220400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060900", "MAP": "D3-142-T46", "PARCEL_NAM": "107", "ACRE": null, "LONGITUDE": -64.95001063, "LATITUDE": 18.33990444, "OBJECTID_1": 9203, "PARCEL_NO_": "105301060900", "Tax_Legal_": "106 & 107 CONTANT 7BB SOUTH SIDE QUARTER", "Name": "ROBERT, JOSEPH", "Address": "PO Box 10724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74600, "Improved_V": 96100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.952766616900007, "SHAPE_Area": 460.41919622099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356802.801500000059605, 256697.190600000321865 ], [ 356767.79110000282526, 256695.633400000631809 ], [ 356768.073299996554852, 256709.193799998611212 ], [ 356802.401199996471405, 256710.186599999666214 ], [ 356802.801500000059605, 256697.190600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061000", "MAP": "A3-39-TT39", "PARCEL_NAM": "73", "ACRE": null, "LONGITUDE": -64.94962851, "LATITUDE": 18.33986299, "OBJECTID_1": 9204, "PARCEL_NO_": "105301061000", "Tax_Legal_": "CONTANT 73 SOUTHSIDE QTR", "Name": "JACKSON, G. & J. , & RICHARDSON", "Address": "BOX 4378", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55500, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.255458401, "SHAPE_Area": 945.36714074700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356848.815200001001358, 256690.165899999439716 ], [ 356803.120999999344349, 256686.815600000321865 ], [ 356802.470899999141693, 256707.924100000411272 ], [ 356848.792400002479553, 256710.112799998372793 ], [ 356848.815200001001358, 256690.165899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301062500", "MAP": "D9-287-T61", "PARCEL_NAM": "65B", "ACRE": null, "LONGITUDE": -64.94864861000001, "LATITUDE": 18.34031568, "OBJECTID_1": 9217, "PARCEL_NO_": "105301062500", "Tax_Legal_": "CONTANT 65B&66A 7B S S QTR", "Name": "WILLIAMS, DOREEN R", "Address": "PO Box 723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.527431389200004, "SHAPE_Area": 209.683647536 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356933.035099998116493, 256761.960799999535084 ], [ 356932.705399997532368, 256735.419799998402596 ], [ 356927.045800000429153, 256737.960900001227856 ], [ 356924.585500001907349, 256738.508600000292063 ], [ 356924.26410000026226, 256761.995299998670816 ], [ 356933.035099998116493, 256761.960799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301062300", "MAP": "C9-76-T67", "PARCEL_NAM": "61", "ACRE": ".39", "LONGITUDE": -64.94775316, "LATITUDE": 18.34008175, "OBJECTID_1": 9216, "PARCEL_NO_": "105301062300", "Tax_Legal_": "CONTANT 61,62&63 No.7B SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 178400, "Improved_V": 1191000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.13121726099999, "SHAPE_Area": 1261.09574909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357015.491499997675419, 256691.09910000115633 ], [ 357013.518100000917912, 256761.644000001251698 ], [ 357028.666599996387959, 256761.584399998188019 ], [ 357033.083700001239777, 256719.519000001251698 ], [ 357036.546300001442432, 256691.68299999833107 ], [ 357015.491499997675419, 256691.09910000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301062300", "MAP": "C9-76-T67", "PARCEL_NAM": "62", "ACRE": ".38", "LONGITUDE": -64.9479613, "LATITUDE": 18.34009721, "OBJECTID_1": 9216, "PARCEL_NO_": "105301062300", "Tax_Legal_": "CONTANT 61,62&63 No.7B SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 178400, "Improved_V": 1191000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.56224802700001, "SHAPE_Area": 1831.06157476 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356989.48480000346899, 256690.377999998629093 ], [ 356987.928900003433228, 256761.744699999690056 ], [ 357013.518100000917912, 256761.644000001251698 ], [ 357015.491499997675419, 256691.09910000115633 ], [ 356989.48480000346899, 256690.377999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301062300", "MAP": "C9-76-T67", "PARCEL_NAM": "63", "ACRE": ".37", "LONGITUDE": -64.94817568000001, "LATITUDE": 18.34010007, "OBJECTID_1": 9216, "PARCEL_NO_": "105301062300", "Tax_Legal_": "CONTANT 61,62&63 No.7B SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 178400, "Improved_V": 1191000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.46164910499999, "SHAPE_Area": 1399.8914843800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356970.458099998533726, 256689.850400000810623 ], [ 356967.903499998152256, 256761.823499999940395 ], [ 356970.045199997723103, 256761.815099999308586 ], [ 356987.928900003433228, 256761.744699999690056 ], [ 356989.48480000346899, 256690.377999998629093 ], [ 356972.387299999594688, 256689.903900001198053 ], [ 356970.458099998533726, 256689.850400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061400", "MAP": "A3-39-T39", "PARCEL_NAM": "69", "ACRE": ".35", "LONGITUDE": -64.94921945, "LATITUDE": 18.34010781, "OBJECTID_1": 9208, "PARCEL_NO_": "105301061400", "Tax_Legal_": "CONTANT 69 SOUTHSIDE QTR", "Name": "WHEATLEY, LEONA B. (TRUSTEE)", "Address": "PO Box 302243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 113200, "Improved_V": 59300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.798180981, "SHAPE_Area": 1989.9783369 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356882.437799997627735, 256762.15989999845624 ], [ 356882.518100000917912, 256690.393100000917912 ], [ 356854.263999998569489, 256690.823699999600649 ], [ 356855.112899996340275, 256762.267499998211861 ], [ 356873.613600000739098, 256762.194600000977516 ], [ 356879.544100001454353, 256762.171300001442432 ], [ 356882.437799997627735, 256762.15989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061500", "MAP": "A3-39-T39", "PARCEL_NAM": "68", "ACRE": ".29", "LONGITUDE": -64.94901904, "LATITUDE": 18.34010335, "OBJECTID_1": 9209, "PARCEL_NO_": "105301061500", "Tax_Legal_": "CONTANT 68 SOUTHSIDE QTR", "Name": "WHEATLEY, L. & R. , & C. , & SNELLI", "Address": "PO Box 302243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.894724639, "SHAPE_Area": 1048.33379014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356882.437799997627735, 256762.15989999845624 ], [ 356896.643500000238419, 256762.103999998420477 ], [ 356897.494199998676777, 256690.164799999445677 ], [ 356882.518100000917912, 256690.393100000917912 ], [ 356882.437799997627735, 256762.15989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061600", "MAP": "A3-39-T39", "PARCEL_NAM": "67", "ACRE": ".24", "LONGITUDE": -64.94888379, "LATITUDE": 18.34010798, "OBJECTID_1": 9210, "PARCEL_NO_": "105301061600", "Tax_Legal_": "CONTANT 67 SOUTHSIDE QTR", "Name": "WHEATLEY, L. , & R. , & C. , & SNELLIN", "Address": "PO Box 302243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.03507222100001, "SHAPE_Area": 1008.1972842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356911.167300000786781, 256762.046799998730421 ], [ 356910.971900001168251, 256689.959399998188019 ], [ 356903.324500001966953, 256690.0760000012815 ], [ 356897.494199998676777, 256690.164799999445677 ], [ 356896.643500000238419, 256762.103999998420477 ], [ 356902.067800000309944, 256762.082699999213219 ], [ 356911.167300000786781, 256762.046799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301062500", "MAP": "A9-535-T99", "PARCEL_NAM": "66A", "ACRE": ".06", "LONGITUDE": -64.94874679, "LATITUDE": 18.3403211, "OBJECTID_1": 9217, "PARCEL_NO_": "105301062500", "Tax_Legal_": "CONTANT 65B&66A 7B S S QTR", "Name": "WILLIAMS, DOREEN R", "Address": "PO Box 723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.929216546299998, "SHAPE_Area": 305.12014814999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356919.828500002622604, 256736.465199999511242 ], [ 356911.122699998319149, 256745.587200000882149 ], [ 356911.167300000786781, 256762.046799998730421 ], [ 356924.26410000026226, 256761.995299998670816 ], [ 356924.641000002622604, 256734.453699998557568 ], [ 356924.471400000154972, 256734.490800000727177 ], [ 356919.828500002622604, 256736.465199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301062200", "MAP": "A9-535-T99", "PARCEL_NAM": "64A", "ACRE": ".09", "LONGITUDE": -64.94834785, "LATITUDE": 18.3401166, "OBJECTID_1": 9215, "PARCEL_NO_": "105301062200", "Tax_Legal_": "CONTANT 64A 7B SOUTHSIDE QTR", "Name": "ROEBUCK, EDNA", "Address": "PO Box 303914", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34900, "Improved_V": 91100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.223550933499993, "SHAPE_Area": 464.12601440700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356969.685099996626377, 256711.630199998617172 ], [ 356965.138899996876717, 256711.969700001180172 ], [ 356959.32769999653101, 256715.371700000017881 ], [ 356953.797600001096725, 256719.7820999994874 ], [ 356951.093999996781349, 256721.929499998688698 ], [ 356950.543099999427795, 256740.639400001615286 ], [ 356968.635600000619888, 256741.197299998253584 ], [ 356969.685099996626377, 256711.630199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301062100", "MAP": "D9-287-T61", "PARCEL_NAM": "64B", "ACRE": null, "LONGITUDE": -64.94836028, "LATITUDE": 18.34032852, "OBJECTID_1": 9214, "PARCEL_NO_": "105301062100", "Tax_Legal_": "CONTANT 64B 7B SOUTHSIDE QTR", "Name": "WILLIAMS, RUEBEN & MAVIS C", "Address": "14-29 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34300, "Improved_V": 89400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.990737974799998, "SHAPE_Area": 377.91926889000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356968.635600000619888, 256741.197299998253584 ], [ 356950.543099999427795, 256740.639400001615286 ], [ 356949.917300000786781, 256761.894299998879433 ], [ 356967.903499998152256, 256761.823499999940395 ], [ 356968.635600000619888, 256741.197299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061800", "MAP": "A9-535-T99", "PARCEL_NAM": "66", "ACRE": ".16", "LONGITUDE": -64.94875464, "LATITUDE": 18.33996685, "OBJECTID_1": 9211, "PARCEL_NO_": "105301061800", "Tax_Legal_": "CONTANT 66 SOUTHSIDE QUARTER", "Name": "ROEBUCK, ECTOR", "Address": "PO Box 723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 85300, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.46324683100001, "SHAPE_Area": 593.39995419900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356911.096600003540516, 256735.975400000810623 ], [ 356921.181000001728535, 256730.15260000154376 ], [ 356922.764399997889996, 256731.027800001204014 ], [ 356924.696199998259544, 256730.424600001424551 ], [ 356925.252999998629093, 256689.741799999028444 ], [ 356910.971900001168251, 256689.959399998188019 ], [ 356911.096600003540516, 256735.975400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061900", "MAP": "A9-535-T99", "PARCEL_NAM": "65 REM", "ACRE": ".17", "LONGITUDE": -64.94857209, "LATITUDE": 18.33992705, "OBJECTID_1": 9212, "PARCEL_NO_": "105301061900", "Tax_Legal_": "CONTANT 65 SOUTHSIDE QTR", "Name": "ROEBUCK, NICOLE, KASIM & ELMO JR.", "Address": "PO Box 1134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29400, "Improved_V": 91500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.70430997299999, "SHAPE_Area": 896.22263364900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356924.696199998259544, 256730.424600001424551 ], [ 356932.186499997973442, 256728.086100000888109 ], [ 356951.332800000905991, 256713.819400001317263 ], [ 356952.053599998354912, 256689.34010000154376 ], [ 356951.896700002253056, 256689.335700001567602 ], [ 356925.252999998629093, 256689.741799999028444 ], [ 356924.696199998259544, 256730.424600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061800", "MAP": "A9-535-T99", "PARCEL_NAM": "66B", "ACRE": null, "LONGITUDE": -64.94878861, "LATITUDE": 18.34023209, "OBJECTID_1": 9211, "PARCEL_NO_": "105301061800", "Tax_Legal_": "CONTANT 66 SOUTHSIDE QUARTER", "Name": "ROEBUCK, ECTOR", "Address": "PO Box 723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 85300, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.314323956500001, "SHAPE_Area": 28.953577840600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356911.122699998319149, 256745.587200000882149 ], [ 356919.828500002622604, 256736.465199999511242 ], [ 356911.104699999094009, 256738.954500000923872 ], [ 356911.122699998319149, 256745.587200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061800", "MAP": "A9-535-T99", "PARCEL_NAM": "66C", "ACRE": null, "LONGITUDE": -64.94874883, "LATITUDE": 18.34017902, "OBJECTID_1": 9211, "PARCEL_NO_": "105301061800", "Tax_Legal_": "CONTANT 66 SOUTHSIDE QUARTER", "Name": "ROEBUCK, ECTOR", "Address": "PO Box 723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 85300, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.777188657799996, "SHAPE_Area": 60.4105989392 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356924.696199998259544, 256730.424600001424551 ], [ 356922.764399997889996, 256731.027800001204014 ], [ 356921.181000001728535, 256730.15260000154376 ], [ 356911.096600003540516, 256735.975400000810623 ], [ 356911.104699999094009, 256738.954500000923872 ], [ 356919.828500002622604, 256736.465199999511242 ], [ 356924.471400000154972, 256734.490800000727177 ], [ 356924.641000002622604, 256734.453699998557568 ], [ 356924.696199998259544, 256730.424600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061900", "MAP": null, "PARCEL_NAM": "65C", "ACRE": null, "LONGITUDE": -64.94856371, "LATITUDE": 18.34009578, "OBJECTID_1": 9212, "PARCEL_NO_": "105301061900", "Tax_Legal_": "CONTANT 65 SOUTHSIDE QTR", "Name": "ROEBUCK, NICOLE, KASIM & ELMO JR.", "Address": "PO Box 1134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29400, "Improved_V": 91500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.433541225100001, "SHAPE_Area": 110.921399322 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356951.332800000905991, 256713.819400001317263 ], [ 356932.186499997973442, 256728.086100000888109 ], [ 356924.696199998259544, 256730.424600001424551 ], [ 356924.641000002622604, 256734.453699998557568 ], [ 356929.541000001132488, 256733.382199998944998 ], [ 356934.916000001132488, 256730.263999998569489 ], [ 356941.751999996602535, 256725.289299998432398 ], [ 356949.02759999781847, 256719.599700000137091 ], [ 356951.220600001513958, 256717.629000000655651 ], [ 356951.332800000905991, 256713.819400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301062000", "MAP": "D9-287-T61", "PARCEL_NAM": "65A", "ACRE": null, "LONGITUDE": -64.94852112, "LATITUDE": 18.34027164, "OBJECTID_1": 9213, "PARCEL_NO_": "105301062000", "Tax_Legal_": "CONTANT 65A 7B S S QTR", "Name": "RHYMER, BERNICE", "Address": "PO Box 723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.219107302, "SHAPE_Area": 581.1698294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356932.705399997532368, 256735.419799998402596 ], [ 356933.035099998116493, 256761.960799999535084 ], [ 356941.858599998056889, 256761.926100000739098 ], [ 356949.917300000786781, 256761.894299998879433 ], [ 356951.093999996781349, 256721.929499998688698 ], [ 356946.812299996614456, 256725.330400001257658 ], [ 356932.705399997532368, 256735.419799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060700", "MAP": "G9-620-T62", "PARCEL_NAM": "109A", "ACRE": ".05", "LONGITUDE": -64.95000994, "LATITUDE": 18.34016557, "OBJECTID_1": 9201, "PARCEL_NO_": "105301060700", "Tax_Legal_": "CONTANT 109A 7B SOUTHSIDE QTR", "Name": "MILLS, IRENE", "Address": "PO Box 9501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34700, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.327802491499995, "SHAPE_Area": 264.59339565900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356801.840000003576279, 256728.4070999994874 ], [ 356768.454099997878075, 256727.495200000703335 ], [ 356768.521899998188019, 256730.753499999642372 ], [ 356768.624399997293949, 256735.676500000059605 ], [ 356801.136699996888638, 256736.165800001472235 ], [ 356801.600900001823902, 256736.169599998742342 ], [ 356801.70269999653101, 256732.865699999034405 ], [ 356801.840000003576279, 256728.4070999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301060600", "MAP": "D3-142-T46", "PARCEL_NAM": "108A", "ACRE": null, "LONGITUDE": -64.95001011, "LATITUDE": 18.34004733, "OBJECTID_1": 9200, "PARCEL_NO_": "105301060600", "Tax_Legal_": "CONTANT 109&108A 7BB SOUTHSIDE QTR.", "Name": "CHRISTIAN (LIFE ESTATE), LORENE", "Address": "PO BOX 302342", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.489819249000007, "SHAPE_Area": 198.58778588000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356802.203299999237061, 256716.612300001084805 ], [ 356768.198700003325939, 256715.220400001853704 ], [ 356768.265900000929832, 256718.451499998569489 ], [ 356768.323299996554852, 256721.206300001591444 ], [ 356802.026299998164177, 256722.356499999761581 ], [ 356802.097900003194809, 256720.0337999984622 ], [ 356802.203299999237061, 256716.612300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061200", "MAP": "G9-833-T66", "PARCEL_NAM": "71B", "ACRE": null, "LONGITUDE": -64.94949151, "LATITUDE": 18.34018605, "OBJECTID_1": 9206, "PARCEL_NO_": "105301061200", "Tax_Legal_": "CONTANT 71 SOUTHSIDE QTR", "Name": "JAMES, THELMA RAMONA (LIFE ESTATE)", "Address": "PO Box 304974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54800, "Improved_V": 117600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.932273800100006, "SHAPE_Area": 287.011300038 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356830.539300002157688, 256742.036800000816584 ], [ 356848.754799999296665, 256743.079700000584126 ], [ 356848.773100003600121, 256727.032499998807907 ], [ 356830.889899998903275, 256726.299199998378754 ], [ 356830.539300002157688, 256742.036800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061100", "MAP": "A3-39-T39", "PARCEL_NAM": "72", "ACRE": null, "LONGITUDE": -64.94962847, "LATITUDE": 18.34003279, "OBJECTID_1": 9205, "PARCEL_NO_": "105301061100", "Tax_Legal_": "CONTANT 72 SOUTHSIDE QTR", "Name": "TODMAN, HENRITA", "Address": "PO Box 668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 54100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.360191028, "SHAPE_Area": 794.87779330599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356848.792400002479553, 256710.112799998372793 ], [ 356802.470899999141693, 256707.924100000411272 ], [ 356801.941500000655651, 256725.112300001084805 ], [ 356848.773100003600121, 256727.032499998807907 ], [ 356848.792400002479553, 256710.112799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061200", "MAP": "G9-833-T66", "PARCEL_NAM": "71", "ACRE": null, "LONGITUDE": -64.94978467, "LATITUDE": 18.34017419, "OBJECTID_1": 9206, "PARCEL_NO_": "105301061200", "Tax_Legal_": "CONTANT 71 SOUTHSIDE QTR", "Name": "JAMES, THELMA RAMONA (LIFE ESTATE)", "Address": "PO Box 304974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54800, "Improved_V": 117600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.0631248296, "SHAPE_Area": 217.622061892 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356801.471400000154972, 256740.372400000691414 ], [ 356815.513400003314018, 256741.176399998366833 ], [ 356816.165700003504753, 256725.695500001311302 ], [ 356801.941500000655651, 256725.112300001084805 ], [ 356801.471400000154972, 256740.372400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061200", "MAP": "G9-833-T66", "PARCEL_NAM": "71A", "ACRE": null, "LONGITUDE": -64.94964739, "LATITUDE": 18.34017996, "OBJECTID_1": 9206, "PARCEL_NO_": "105301061200", "Tax_Legal_": "CONTANT 71 SOUTHSIDE QTR", "Name": "JAMES, THELMA RAMONA (LIFE ESTATE)", "Address": "PO Box 304974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54800, "Improved_V": 117600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.023225704200001, "SHAPE_Area": 232.55516784299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356815.513400003314018, 256741.176399998366833 ], [ 356830.539300002157688, 256742.036800000816584 ], [ 356830.889899998903275, 256726.299199998378754 ], [ 356826.500799998641014, 256726.119300000369549 ], [ 356821.138700000941753, 256725.899399999529123 ], [ 356816.165700003504753, 256725.695500001311302 ], [ 356815.513400003314018, 256741.176399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061300", "MAP": "G9-833-T66", "PARCEL_NAM": "70B", "ACRE": null, "LONGITUDE": -64.94949238, "LATITUDE": 18.34034547, "OBJECTID_1": 9207, "PARCEL_NO_": "105301061300", "Tax_Legal_": "CONTANT ESTATE 70 7B SOUTHSIDE QTR.", "Name": "CHRISTOPHER, K. , L. , L. , & DUGGINSE", "Address": "PO Box 10210", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53700, "Improved_V": 311700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.4472147277, "SHAPE_Area": 357.14593311800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356848.754799999296665, 256743.079700000584126 ], [ 356830.539300002157688, 256742.036800000816584 ], [ 356830.10869999974966, 256761.366700001060963 ], [ 356844.835199996829033, 256762.307900000363588 ], [ 356848.732900001108646, 256762.292599998414516 ], [ 356848.754799999296665, 256743.079700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061300", "MAP": "G9-833-T66", "PARCEL_NAM": "70", "ACRE": null, "LONGITUDE": -64.94978942, "LATITUDE": 18.34033016, "OBJECTID_1": 9207, "PARCEL_NO_": "105301061300", "Tax_Legal_": "CONTANT ESTATE 70 7B SOUTHSIDE QTR.", "Name": "CHRISTOPHER, K. , L. , L. , & DUGGINSE", "Address": "PO Box 10210", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53700, "Improved_V": 311700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.273209765999994, "SHAPE_Area": 267.60962662899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356815.513400003314018, 256741.176399998366833 ], [ 356801.471400000154972, 256740.372400000691414 ], [ 356800.882299996912479, 256759.498700000345707 ], [ 356814.704199999570847, 256760.382100000977516 ], [ 356815.513400003314018, 256741.176399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301061300", "MAP": "G9-833-T66", "PARCEL_NAM": "70A", "ACRE": null, "LONGITUDE": -64.94965148, "LATITUDE": 18.34033766, "OBJECTID_1": 9207, "PARCEL_NO_": "105301061300", "Tax_Legal_": "CONTANT ESTATE 70 7B SOUTHSIDE QTR.", "Name": "CHRISTOPHER, K. , L. , L. , & DUGGINSE", "Address": "PO Box 10210", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53700, "Improved_V": 311700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.0438826388, "SHAPE_Area": 293.73553710300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356830.539300002157688, 256742.036800000816584 ], [ 356815.513400003314018, 256741.176399998366833 ], [ 356814.704199999570847, 256760.382100000977516 ], [ 356819.971699997782707, 256760.718800000846386 ], [ 356825.040700003504753, 256761.04280000180006 ], [ 356830.10869999974966, 256761.366700001060963 ], [ 356830.539300002157688, 256742.036800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105202011900", "MAP": "A9-308-T003", "PARCEL_NAM": "24", "ACRE": ".13", "LONGITUDE": -64.94926659, "LATITUDE": 18.34049469, "OBJECTID_1": 8028, "PARCEL_NO_": "105202011900", "Tax_Legal_": "UPPER JOHN DUNKO 24 SOUTHSIDE QTR", "Name": "JEREMIAH, DENISE & HENRY, FANCENEL", "Address": "PO Box 307905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31000, "Improved_V": 225800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.89380125700001, "SHAPE_Area": 524.51646931899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356882.476599998772144, 256776.525699999183416 ], [ 356882.437799997627735, 256762.15989999845624 ], [ 356879.544100001454353, 256762.171300001442432 ], [ 356873.613600000739098, 256762.194600000977516 ], [ 356844.835199996829033, 256762.307900000363588 ], [ 356841.286100000143051, 256774.485300000756979 ], [ 356882.476599998772144, 256776.525699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032800", "MAP": "D9-8696-T012", "PARCEL_NAM": "52-REM", "ACRE": ".877", "LONGITUDE": -64.95174912, "LATITUDE": 18.34558726, "OBJECTID_1": 8214, "PARCEL_NO_": "105202032800", "Tax_Legal_": "UPPER JOHN DUNKO 52, 51A and 53-A 3A LITTLE NORTHSIDE", "Name": "FONTAINE, CLIFTON AND JILL PRIENTICE-FONTAINE", "Address": "6511 Estatec Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62900, "Improved_V": 48200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.87646546600001, "SHAPE_Area": 3596.92265013 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356628.708999998867512, 257293.422800000756979 ], [ 356623.416199997067451, 257293.484900001436472 ], [ 356616.420100003480911, 257296.455899998545647 ], [ 356595.052599996328354, 257305.529899999499321 ], [ 356564.002300001680851, 257318.715900000184774 ], [ 356559.04450000077486, 257320.821299999952316 ], [ 356563.726700000464916, 257359.642099998891354 ], [ 356567.185000002384186, 257373.9695999994874 ], [ 356570.297700002789497, 257373.921000000089407 ], [ 356577.996500000357628, 257366.227899998426437 ], [ 356599.229800000786781, 257355.155600000172853 ], [ 356637.86370000243187, 257330.097699999809265 ], [ 356636.828900001943111, 257325.914000000804663 ], [ 356636.060400001704693, 257321.474800001829863 ], [ 356628.823100000619888, 257293.832499999552965 ], [ 356628.708999998867512, 257293.422800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032700", "MAP": "A9-19-T63", "PARCEL_NAM": "65", "ACRE": null, "LONGITUDE": -64.95090058, "LATITUDE": 18.34539296, "OBJECTID_1": 8213, "PARCEL_NO_": "105202032700", "Tax_Legal_": "UPPER JOHN DUNKO 65 6B&C LITTLE N S", "Name": "CORNELIUS, ROBEY & EVERILLE", "Address": "5976 20th St", "City": "Vero Beach", "State": "Florida", "Zip": 32966, "Country": "United States", "Land_Value": 80500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.83705553499999, "SHAPE_Area": 3667.533047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356729.98309999704361, 257292.234999999403954 ], [ 356628.708999998867512, 257293.422800000756979 ], [ 356628.823100000619888, 257293.832499999552965 ], [ 356636.060400001704693, 257321.474800001829863 ], [ 356636.828900001943111, 257325.914000000804663 ], [ 356637.86370000243187, 257330.097699999809265 ], [ 356748.112300001084805, 257321.989000000059605 ], [ 356747.398000001907349, 257314.575599998235703 ], [ 356745.817800000309944, 257310.762899998575449 ], [ 356745.029500000178814, 257308.645500000566244 ], [ 356741.039200000464916, 257303.757699999958277 ], [ 356738.66889999806881, 257298.038800001144409 ], [ 356734.658900000154972, 257295.472899999469519 ], [ 356730.629100002348423, 257295.228799998760223 ], [ 356729.98309999704361, 257292.234999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301070800", "MAP": null, "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.94912415, "LATITUDE": 18.3454243, "OBJECTID_1": 9227, "PARCEL_NO_": "105301070800", "Tax_Legal_": "UPPER JOHN DUNKOE 1 LITTLE NORTHSIDE QTR", "Name": "ONE SCOTT FREE,LLC", "Address": "1340 Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 198000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 554.09704961, "SHAPE_Area": 10856.3473116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356750.360799998044968, 257291.995999999344349 ], [ 356745.962399996817112, 257292.047600001096725 ], [ 356746.757200002670288, 257295.149700000882149 ], [ 356750.731200002133846, 257301.937199998646975 ], [ 356754.748400002717972, 257303.6587999984622 ], [ 356757.750600002706051, 257329.859000001102686 ], [ 356795.622100003063679, 257333.124299999326468 ], [ 356868.139899998903275, 257339.628400001674891 ], [ 356884.255400002002716, 257341.026900000870228 ], [ 356969.667000003159046, 257348.480900000780821 ], [ 356976.367399998009205, 257319.193799998611212 ], [ 356983.087600000202656, 257287.584699999541044 ], [ 356970.987499997019768, 257288.118999999016523 ], [ 356940.331500001251698, 257289.767900001257658 ], [ 356893.036300003528595, 257290.322599999606609 ], [ 356822.269500002264977, 257291.15260000154376 ], [ 356750.360799998044968, 257291.995999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202061400", "MAP": "G9-409-T56", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.95031823, "LATITUDE": 18.34479915, "OBJECTID_1": 8404, "PARCEL_NO_": "105202061400", "Tax_Legal_": "LOWER JOHN DUNKO ESTATE 6 LITTLE NORTHSIDE QTR.", "Name": "LYDIA B LOCKHART TRUST", "Address": "PO Box 1354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 144500, "Improved_V": 340100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.62821178799999, "SHAPE_Area": 6037.8442884699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356781.753300003707409, 257291.62779999896884 ], [ 356778.260600000619888, 257199.204799998551607 ], [ 356771.777300000190735, 257197.829300001263618 ], [ 356730.682300001382828, 257194.326499998569489 ], [ 356721.044299997389317, 257189.814699999988079 ], [ 356714.651199996471405, 257250.456199999898672 ], [ 356719.267300002276897, 257292.360700000077486 ], [ 356729.98309999704361, 257292.234999999403954 ], [ 356745.962399996817112, 257292.047600001096725 ], [ 356750.360799998044968, 257291.995999999344349 ], [ 356781.753300003707409, 257291.62779999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202060200", "MAP": "G9-410-T56", "PARCEL_NAM": "3", "ACRE": "1.49", "LONGITUDE": -64.95062825, "LATITUDE": 18.34289693, "OBJECTID_1": 8397, "PARCEL_NO_": "105202060200", "Tax_Legal_": "LOWER JOHN DUNKO 3&13 LITTLE NORTHSIDE QTR", "Name": "JOHN M. SR & ERNA M. LYNCH TRUST", "Address": "PO Box 1523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 176800, "Improved_V": 251800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.219790424, "SHAPE_Area": 3353.9584059200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356752.904899999499321, 257055.951999999582767 ], [ 356729.138400003314018, 256996.941399998962879 ], [ 356688.797600001096725, 256999.566500000655651 ], [ 356693.275799997150898, 257041.821899998933077 ], [ 356701.870099999010563, 257074.189599998295307 ], [ 356752.904899999499321, 257055.951999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202060500", "MAP": "D9-848-T69", "PARCEL_NAM": "4", "ACRE": ".70", "LONGITUDE": -64.9504352, "LATITUDE": 18.34346142, "OBJECTID_1": 8399, "PARCEL_NO_": "105202060500", "Tax_Legal_": "LOWER JOHNDUNKO 4 LITTLE NORTHSIDE QTR", "Name": "LOUISE O FISHMAN REVOCABLE LIVING TRUST", "Address": "PO Box 6767", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 108100, "Improved_V": 582600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.94982449899999, "SHAPE_Area": 3792.74309524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356776.952100001275539, 257103.505699999630451 ], [ 356752.904899999499321, 257055.951999999582767 ], [ 356701.870099999010563, 257074.189599998295307 ], [ 356711.265399999916553, 257107.197000000625849 ], [ 356714.341399997472763, 257124.743000000715256 ], [ 356715.892899997532368, 257131.932900000363588 ], [ 356718.48759999871254, 257144.976599998772144 ], [ 356753.57379999756813, 257120.088700000196695 ], [ 356761.121200002729893, 257114.734999999403954 ], [ 356776.952100001275539, 257103.505699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202060900", "MAP": "D9-848-T69", "PARCEL_NAM": "4-1", "ACRE": ".13", "LONGITUDE": -64.95011045, "LATITUDE": 18.34362205, "OBJECTID_1": 8402, "PARCEL_NO_": "105202060900", "Tax_Legal_": "LOWER JOHN DUNKO 4-1 LITTLE NORTHSIDE", "Name": "LOUISE O FISHMAN REVOCABLE LIVING TRUST", "Address": "PO Box 6767", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.672541270300002, "SHAPE_Area": 240.75150845900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356753.57379999756813, 257120.088700000196695 ], [ 356783.271799996495247, 257119.618999999016523 ], [ 356776.952100001275539, 257103.505699999630451 ], [ 356761.121200002729893, 257114.734999999403954 ], [ 356753.57379999756813, 257120.088700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202060700", "MAP": "D9-848-T69", "PARCEL_NAM": "5&9A", "ACRE": "1.30", "LONGITUDE": -64.95013654, "LATITUDE": 18.3440197, "OBJECTID_1": 8401, "PARCEL_NO_": "105202060700", "Tax_Legal_": "LOWER JOHN DUNKO 5&9A LITTLE NORTHSIDE", "Name": "LUAY AL SAMMAN & GINA AL SAMMAN", "Address": "6632 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 192000, "Improved_V": 522600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.62219480900001, "SHAPE_Area": 5623.1329098799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356824.090000003576279, 257143.183800000697374 ], [ 356789.068000003695488, 257134.397199999541044 ], [ 356787.668399997055531, 257130.82880000025034 ], [ 356783.271799996495247, 257119.618999999016523 ], [ 356753.57379999756813, 257120.088700000196695 ], [ 356744.437799997627735, 257126.569099999964237 ], [ 356718.48759999871254, 257144.976599998772144 ], [ 356725.945200003683567, 257182.466499999165535 ], [ 356729.134400002658367, 257186.714499998837709 ], [ 356733.151600003242493, 257188.436099998652935 ], [ 356775.051100000739098, 257192.156500000506639 ], [ 356797.746799997985363, 257196.842399999499321 ], [ 356824.090000003576279, 257143.183800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202060400", "MAP": null, "PARCEL_NAM": "18-1", "ACRE": null, "LONGITUDE": -64.95011633, "LATITUDE": 18.34328863, "OBJECTID_1": 8398, "PARCEL_NO_": "105202060400", "Tax_Legal_": "LOWER JOHN DUNKO 18&18-1 LITTLE NORTHSIDE QTR", "Name": "LOUISE O FISHMAN REVOCABLE LIVING TRUST", "Address": "PO Box 6767", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.488031992, "SHAPE_Area": 651.34969479100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356788.638199999928474, 257091.46169999986887 ], [ 356760.815600000321865, 257051.013999998569489 ], [ 356752.904899999499321, 257055.951999999582767 ], [ 356776.952100001275539, 257103.505699999630451 ], [ 356788.638199999928474, 257091.46169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204020200", "MAP": "G9-2225-T73", "PARCEL_NAM": "84", "ACRE": null, "LONGITUDE": -64.95067898000001, "LATITUDE": 18.33898812, "OBJECTID_1": 8565, "PARCEL_NO_": "105204020200", "Tax_Legal_": "CONTANT 84 7B SOUTHSIDE QUARTER", "Name": "NICHOLSON, MARY & OTHERS", "Address": "PO BOX 5036", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88600, "Improved_V": 103300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.170483385, "SHAPE_Area": 657.07938883899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356703.906900003552437, 256576.050400000065565 ], [ 356706.569499999284744, 256617.210499998182058 ], [ 356729.164300002157688, 256615.284499999135733 ], [ 356726.916199997067451, 256595.212200000882149 ], [ 356717.29619999974966, 256588.589499998837709 ], [ 356706.891400001943111, 256579.427400000393391 ], [ 356703.906900003552437, 256576.050400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204020100", "MAP": "D9-8074-T008", "PARCEL_NAM": "119A", "ACRE": ".12", "LONGITUDE": -64.95086224000001, "LATITUDE": 18.33889567, "OBJECTID_1": 8563, "PARCEL_NO_": "105204020100", "Tax_Legal_": "119A & 119 REM CONTANT 7Bb SOUTHSIDE QTR", "Name": "NICHOLSON, GERARD R. & ARACELY G.", "Address": "PO Box 302578", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.247149648, "SHAPE_Area": 744.86461314799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356687.792599998414516, 256562.104699999094009 ], [ 356688.507399998605251, 256604.741799999028444 ], [ 356688.624499998986721, 256611.730399999767542 ], [ 356688.669600002467632, 256614.418800000101328 ], [ 356694.381099998950958, 256613.387499999254942 ], [ 356706.184399999678135, 256611.25620000064373 ], [ 356703.906900003552437, 256576.050400000065565 ], [ 356690.907200001180172, 256562.620099999010563 ], [ 356687.792599998414516, 256562.104699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204020100", "MAP": "D9-8074-T008", "PARCEL_NAM": "119 REM", "ACRE": ".25", "LONGITUDE": -64.95083195, "LATITUDE": 18.33931812, "OBJECTID_1": 8563, "PARCEL_NO_": "105204020100", "Tax_Legal_": "119A & 119 REM CONTANT 7Bb SOUTHSIDE QTR", "Name": "NICHOLSON, GERARD R. & ARACELY G.", "Address": "PO Box 302578", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.84809052700001, "SHAPE_Area": 926.372682736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356689.451499998569489, 256661.059799998998642 ], [ 356694.910700000822544, 256660.600299999117851 ], [ 356710.796300001442432, 256660.065200001001358 ], [ 356706.569499999284744, 256617.210499998182058 ], [ 356706.184399999678135, 256611.25620000064373 ], [ 356694.381099998950958, 256613.387499999254942 ], [ 356688.669600002467632, 256614.418800000101328 ], [ 356689.202799998223782, 256646.227299999445677 ], [ 356689.451499998569489, 256661.059799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202061200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95066138, "LATITUDE": 18.33977753, "OBJECTID_1": 8403, "PARCEL_NO_": "105202061200", "Tax_Legal_": "CONTANT ESTATE 113 7BB SOUTHSIDE QTR", "Name": "MEJIA, PAUBLINA", "Address": "PO Box 10618", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51300, "Improved_V": 103700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.07758556, "SHAPE_Area": 771.601542612 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356706.790600001811981, 256669.219900000840425 ], [ 356706.392200000584126, 256708.107700001448393 ], [ 356726.765799999237061, 256707.512699998915195 ], [ 356726.133900001645088, 256687.031500000506639 ], [ 356726.293999999761581, 256668.245400000363588 ], [ 356706.790600001811981, 256669.219900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202061500", "MAP": null, "PARCEL_NAM": "114", "ACRE": null, "LONGITUDE": -64.95083392, "LATITUDE": 18.33978258, "OBJECTID_1": 8405, "PARCEL_NO_": "105202061500", "Tax_Legal_": "CONTANT 114,115,116&117A 24 L.J.DNK.&23-1 CON", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 272400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.85953658, "SHAPE_Area": 649.74176781599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356706.392200000584126, 256708.107700001448393 ], [ 356706.790600001811981, 256669.219900000840425 ], [ 356704.512800000607967, 256669.333700001239777 ], [ 356694.833400003612041, 256669.676699999719858 ], [ 356689.595200002193451, 256669.631000000983477 ], [ 356689.661799997091293, 256673.607799999415874 ], [ 356689.860699996352196, 256685.467999998480082 ], [ 356690.456600002944469, 256710.170800000429153 ], [ 356695.308899998664856, 256708.521800000220537 ], [ 356704.181900002062321, 256708.172200001776218 ], [ 356706.392200000584126, 256708.107700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204031000", "MAP": "A3-39-T39", "PARCEL_NAM": "REM 105", "ACRE": "0.16", "LONGITUDE": -64.95263622, "LATITUDE": 18.33748293, "OBJECTID_1": 8596, "PARCEL_NO_": "105204031000", "Tax_Legal_": "CONTANT 105 7B SOUTHSIDE QTR", "Name": "JOSHUA, AUSTIN & RENA & OTHERS", "Address": "PO Box 692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52300, "Improved_V": 1100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.634478763, "SHAPE_Area": 647.26708722800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356526.776600003242493, 256424.699299998581409 ], [ 356524.428800001740456, 256426.340900000184774 ], [ 356513.387199997901917, 256416.135800000280142 ], [ 356492.826499998569489, 256434.064800001680851 ], [ 356491.896600000560284, 256448.900699999183416 ], [ 356528.30290000140667, 256434.844300001859665 ], [ 356531.538900002837181, 256433.604200001806021 ], [ 356526.776600003242493, 256424.699299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204063900", "MAP": "C9-23-T57", "PARCEL_NAM": "75", "ACRE": null, "LONGITUDE": -64.9557523, "LATITUDE": 18.33756166, "OBJECTID_1": 8895, "PARCEL_NO_": "105204063900", "Tax_Legal_": "75 EST CONTANT 7A SOUTHSIDE QTR", "Name": "THOMAS, CECIL & DIANE", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 130700, "Improved_V": 33600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.27865766400001, "SHAPE_Area": 1440.3072719100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356171.165600001811981, 256410.804200001060963 ], [ 356164.147399999201298, 256468.849500000476837 ], [ 356191.795500002801418, 256464.38740000128746 ], [ 356191.878200002014637, 256454.677799999713898 ], [ 356195.491899996995926, 256409.111200001090765 ], [ 356171.165600001811981, 256410.804200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204064100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95601863, "LATITUDE": 18.33761656, "OBJECTID_1": 8897, "PARCEL_NO_": "105204064100", "Tax_Legal_": "CONTANT ESTATE 74 7A SOUTHSIDE QTR", "Name": "DAVIS MANAGEMENT CO. , INC.", "Address": "P.O.BOX 5856", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 202600, "Improved_V": 1056900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.62580525300001, "SHAPE_Area": 1678.7437944599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356165.63849999755621, 256411.188900001347065 ], [ 356143.047399997711182, 256412.692699998617172 ], [ 356145.435699999332428, 256416.300799999386072 ], [ 356147.793499998748302, 256423.497299998998642 ], [ 356146.056800000369549, 256438.048599999397993 ], [ 356142.782999999821186, 256443.7212999984622 ], [ 356137.092100001871586, 256449.163100000470877 ], [ 356129.810099996626377, 256452.058899998664856 ], [ 356128.813199996948242, 256474.426600001752377 ], [ 356161.918799996376038, 256469.209100000560284 ], [ 356164.147399999201298, 256468.849500000476837 ], [ 356171.165600001811981, 256410.804200001060963 ], [ 356165.63849999755621, 256411.188900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202027600", "MAP": "D9-8327-T009", "PARCEL_NAM": "41-D", "ACRE": ".505", "LONGITUDE": -64.95631329, "LATITUDE": 18.34317741, "OBJECTID_1": 8175, "PARCEL_NO_": "105202027600", "Tax_Legal_": "41-D ESTATE CONTANT 7A SOUTHSIDE QTR", "Name": "MAYNARD, WINGROVE S.", "Address": "PO Box 307586", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037586, "Country": "United States", "Land_Value": 225000, "Improved_V": 268800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.80818180700001, "SHAPE_Area": 2055.34941 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356150.166599996387959, 257048.770399998873472 ], [ 356149.760499998927116, 257042.945700000971556 ], [ 356083.079800002276897, 257046.324099998921156 ], [ 356083.046499997377396, 257047.289299998432398 ], [ 356082.664200000464916, 257078.648699998855591 ], [ 356151.80799999833107, 257071.022399999201298 ], [ 356150.490900002419949, 257053.422600001096725 ], [ 356150.166599996387959, 257048.770399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703047600", "MAP": "B3-195-T73", "PARCEL_NAM": "292", "ACRE": ".23", "LONGITUDE": -64.96340988, "LATITUDE": 18.34836689, "OBJECTID_1": 3437, "PARCEL_NO_": "102703047600", "Tax_Legal_": "CONTANT ESTATE 292 7A SOUTHSIDE QTR.", "Name": "JULIE MAE PICKERING RESTATED REVOC FAMILY TRUST", "Address": "PO Box 308310", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26700, "Improved_V": 184600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.80149734400001, "SHAPE_Area": 1194.42550678 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355380.223499998450279, 257634.121500000357628 ], [ 355381.507600001990795, 257608.309999998658895 ], [ 355381.325300000607967, 257608.42509999871254 ], [ 355374.858599998056889, 257610.271999999880791 ], [ 355367.5945999994874, 257611.05689999833703 ], [ 355357.116099998354912, 257610.5489999987185 ], [ 355351.822700001299381, 257609.174100000411272 ], [ 355347.048000000417233, 257607.748199999332428 ], [ 355345.4746999964118, 257659.277499999850988 ], [ 355349.858999997377396, 257654.76799999922514 ], [ 355365.672899998724461, 257642.20160000026226 ], [ 355371.603100001811981, 257637.965799998492002 ], [ 355380.223499998450279, 257634.121500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703047200", "MAP": null, "PARCEL_NAM": "291", "ACRE": ".24", "LONGITUDE": -64.96307227, "LATITUDE": 18.34821601, "OBJECTID_1": 3434, "PARCEL_NO_": "102703047200", "Tax_Legal_": "CONTANT 291 7A S S QTR", "Name": "BRYAN, ANTONIA E. & JEAN", "Address": "PO Box 6052", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.44741104900001, "SHAPE_Area": 1067.2614868600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355414.28999999910593, 257627.698800001293421 ], [ 355407.379799999296665, 257584.509899999946356 ], [ 355405.772299997508526, 257585.017599999904633 ], [ 355403.089599996805191, 257586.853100001811981 ], [ 355398.397299997508526, 257590.545800000429153 ], [ 355395.041500002145767, 257593.912900000810623 ], [ 355390.382100000977516, 257598.289900001138449 ], [ 355387.275799997150898, 257601.113800000399351 ], [ 355381.910300001502037, 257604.078899998217821 ], [ 355381.507600001990795, 257608.309999998658895 ], [ 355380.223499998450279, 257634.121500000357628 ], [ 355382.051500000059605, 257633.30629999935627 ], [ 355389.252499997615814, 257629.917599998414516 ], [ 355398.853799998760223, 257627.940900001674891 ], [ 355405.066299997270107, 257627.3761 ], [ 355414.102799996733665, 257627.658500000834465 ], [ 355414.28999999910593, 257627.698800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201011700", "MAP": "D9-7145-T002", "PARCEL_NAM": "32H", "ACRE": ".230", "LONGITUDE": -64.96463976, "LATITUDE": 18.34757647, "OBJECTID_1": 7450, "PARCEL_NO_": "105201011700", "Tax_Legal_": "32H ESTATE LINDBERG #4 SOUTHSIDE QTR", "Name": "PAUL, CHESTER", "Address": "915 E 104th St", "City": "Brooklyn", "State": "New York", "Zip": 11236, "Country": "United States", "Land_Value": 23200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.373589237, "SHAPE_Area": 1326.7576626299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355254.902699999511242, 257517.85190000012517 ], [ 355249.16499999910593, 257522.259199999272823 ], [ 355226.133900001645088, 257515.307900000363588 ], [ 355225.243500001728535, 257515.039099998772144 ], [ 355210.00959999859333, 257555.405299998819828 ], [ 355239.298900000751019, 257566.486299999058247 ], [ 355239.017300002276897, 257563.290899999439716 ], [ 355238.985600002110004, 257562.930500000715256 ], [ 355240.662900000810623, 257555.344799999147654 ], [ 355252.987800002098083, 257528.425700001418591 ], [ 355254.902699999511242, 257517.85190000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201013500", "MAP": "D9-7762-T006", "PARCEL_NAM": "32K", "ACRE": null, "LONGITUDE": -64.96475883, "LATITUDE": 18.3479242, "OBJECTID_1": 7467, "PARCEL_NO_": "105201013500", "Tax_Legal_": "LINDBERG BAY 32K 4A SOUTHSIDE QTR.", "Name": "NEDMAN, ANTHONY G.", "Address": "6214 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.98597505199999, "SHAPE_Area": 1534.9614725500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355210.00959999859333, 257555.405299998819828 ], [ 355199.742399998009205, 257551.719399999827147 ], [ 355201.106899999082088, 257599.138399999588728 ], [ 355246.390600003302097, 257593.940900001674891 ], [ 355242.812200002372265, 257587.026399999856949 ], [ 355240.456200003623962, 257579.618900001049042 ], [ 355239.298900000751019, 257566.486299999058247 ], [ 355210.00959999859333, 257555.405299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201081500", "MAP": "D9-4468-T88", "PARCEL_NAM": "95B", "ACRE": ".5180", "LONGITUDE": -64.95825352, "LATITUDE": 18.34736984, "OBJECTID_1": 7898, "PARCEL_NO_": "105201081500", "Tax_Legal_": "CONTANT 95-B 7A SOUTHSIDE QTR.", "Name": "HODGE, IRVINE", "Address": "PO Box 306043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.07209594700001, "SHAPE_Area": 2081.90898479 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355937.440399996936321, 257551.67850000038743 ], [ 355904.300899997353554, 257484.642799999564886 ], [ 355897.632500000298023, 257486.627999998629093 ], [ 355877.947200000286102, 257492.430799998342991 ], [ 355908.332000002264977, 257558.669900000095367 ], [ 355929.316699996590614, 257553.592799998819828 ], [ 355937.440399996936321, 257551.67850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201080800", "MAP": "D9-7505-T004", "PARCEL_NAM": "95A REM", "ACRE": ".256", "LONGITUDE": -64.95787937, "LATITUDE": 18.34744114, "OBJECTID_1": 7891, "PARCEL_NO_": "105201080800", "Tax_Legal_": "CONTANT 95-A 7A S S QTR", "Name": "LETTSOME, GRACIA Y", "Address": "PO Box 303278", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59300, "Improved_V": 66300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.32188345, "SHAPE_Area": 1386.36476756 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355945.538000002503395, 257510.399700000882149 ], [ 355920.366700001060963, 257517.141199998557568 ], [ 355937.440399996936321, 257551.67850000038743 ], [ 355953.556500002741814, 257547.88060000166297 ], [ 355967.279899999499321, 257546.093100000172853 ], [ 355974.716899998486042, 257546.218899998813868 ], [ 355953.942800000309944, 257508.298500001430511 ], [ 355945.538000002503395, 257510.399700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201080800", "MAP": "D9-7505-T004", "PARCEL_NAM": "95A-1", "ACRE": ".262", "LONGITUDE": -64.95805215, "LATITUDE": 18.34713477, "OBJECTID_1": 7891, "PARCEL_NO_": "105201080800", "Tax_Legal_": "CONTANT 95-A 7A S S QTR", "Name": "LETTSOME, GRACIA Y", "Address": "PO Box 303278", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59300, "Improved_V": 66300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.58072393399999, "SHAPE_Area": 1220.94814563 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355953.942800000309944, 257508.298500001430511 ], [ 355935.827200002968311, 257475.230700001120567 ], [ 355925.927100002765656, 257478.204700000584126 ], [ 355904.300899997353554, 257484.642799999564886 ], [ 355920.366700001060963, 257517.141199998557568 ], [ 355945.538000002503395, 257510.399700000882149 ], [ 355953.942800000309944, 257508.298500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201080700", "MAP": "F9-523-T60", "PARCEL_NAM": "126", "ACRE": null, "LONGITUDE": -64.95775966, "LATITUDE": 18.34691448, "OBJECTID_1": 7890, "PARCEL_NO_": "105201080700", "Tax_Legal_": "CONTANT 126 7A SOUTHSIDE QTR", "Name": "YEE, DARLENE E. & KENSOON", "Address": "9663 Santa Monica Blvd", "City": "Beverly Hills", "State": "California", "Zip": 90210, "Country": "United States", "Land_Value": 130600, "Improved_V": 250500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 614.55803534799998, "SHAPE_Area": 8777.4699843800008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356025.456699997186661, 257532.214899998158216 ], [ 356045.020400002598763, 257507.465999998152256 ], [ 356052.37610000371933, 257495.916000001132488 ], [ 356037.514700002968311, 257441.965500000864267 ], [ 356022.932800002396107, 257449.86769999936223 ], [ 356007.576899997889996, 257453.963899999856949 ], [ 355999.513700000941753, 257453.897900000214577 ], [ 355985.030699998140335, 257450.190799999982119 ], [ 355955.303199999034405, 257437.493000000715256 ], [ 355948.0608000010252, 257435.745000001043081 ], [ 355935.969700001180172, 257435.223799999803305 ], [ 355922.239000000059605, 257437.855599999427795 ], [ 355858.391099996864796, 257454.853799998760223 ], [ 355820.460199996829033, 257458.554200001060963 ], [ 355820.363099999725819, 257469.952399998903275 ], [ 355860.456799998879433, 257468.531800001859665 ], [ 355876.489200003445148, 257489.252199999988079 ], [ 355877.947200000286102, 257492.430799998342991 ], [ 355897.632500000298023, 257486.627999998629093 ], [ 355925.927100002765656, 257478.204700000584126 ], [ 355952.605599999427795, 257470.190400000661612 ], [ 355979.567500002682209, 257462.224500000476837 ], [ 356017.851800002157688, 257541.820799998939037 ], [ 356018.119000002741814, 257541.653999999165535 ], [ 356025.456699997186661, 257532.214899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202014800", "MAP": "D9-4347-T88", "PARCEL_NAM": "100", "ACRE": "1.0313", "LONGITUDE": -64.95758938, "LATITUDE": 18.34722292, "OBJECTID_1": 8055, "PARCEL_NO_": "105202014800", "Tax_Legal_": "CONTANT 100 7A SOUTHSIDE QTR", "Name": "YEE, DARLENE E. & KENSOON", "Address": "9663 Santa Monica Blvd", "City": "Beverly Hills", "State": "California", "Zip": 90210, "Country": "United States", "Land_Value": 94600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.21245042800001, "SHAPE_Area": 3695.1784401800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356017.851800002157688, 257541.820799998939037 ], [ 355979.567500002682209, 257462.224500000476837 ], [ 355952.605599999427795, 257470.190400000661612 ], [ 355935.827200002968311, 257475.230700001120567 ], [ 355953.942800000309944, 257508.298500001430511 ], [ 355974.716899998486042, 257546.218899998813868 ], [ 355991.467500001192093, 257546.502199999988079 ], [ 356005.979299999773502, 257546.831999998539686 ], [ 356012.444200001657009, 257545.196199998259544 ], [ 356017.851800002157688, 257541.820799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704011300", "MAP": "D9-1839-T81", "PARCEL_NAM": "1", "ACRE": "1.028", "LONGITUDE": -64.95064542, "LATITUDE": 18.35251125, "OBJECTID_1": 3446, "PARCEL_NO_": "102704011300", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 1 LITTLE NORTHSIDE QTR", "Name": "LEWIS, KEVIN & C DEJOUNG", "Address": "PO Box 305878", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88100, "Improved_V": 341500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 341.1994055, "SHAPE_Area": 4099.0347362599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356774.514700002968311, 258110.168400000780821 ], [ 356727.656700000166893, 258061.881000000983477 ], [ 356712.754000000655651, 258068.318199999630451 ], [ 356690.071099996566772, 258080.587099999189377 ], [ 356637.364100001752377, 258114.986099999397993 ], [ 356623.584899999201298, 258123.317099999636412 ], [ 356625.983999997377396, 258125.6587999984622 ], [ 356680.888800002634525, 258117.242199998348951 ], [ 356696.226700000464916, 258115.256799999624491 ], [ 356726.078299999237061, 258113.3902000002563 ], [ 356772.871399998664856, 258110.606800001114607 ], [ 356774.514700002968311, 258110.168400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704014700", "MAP": "D9-3080-T85", "PARCEL_NAM": "3B", "ACRE": ".501", "LONGITUDE": -64.94989741000001, "LATITUDE": 18.35235663, "OBJECTID_1": 3471, "PARCEL_NO_": "102704014700", "Tax_Legal_": "LILLIENDAHL & MARIEHJ 3B LT. NORTHSIDE", "Name": "TURNBULL, BRIAN & KAREN", "Address": "PO Box 301799", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48400, "Improved_V": 293300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.82969726, "SHAPE_Area": 2345.0516418299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356801.052799999713898, 258042.725699998438358 ], [ 356749.956799998879433, 258084.861400000751019 ], [ 356774.514700002968311, 258110.168400000780821 ], [ 356788.227300003170967, 258106.510600000619888 ], [ 356807.647100001573563, 258098.647900000214577 ], [ 356814.425899997353554, 258095.982500001788139 ], [ 356801.052799999713898, 258042.725699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803024200", "MAP": "D9-1352-T77", "PARCEL_NAM": "3A", "ACRE": ".12", "LONGITUDE": -64.9496718, "LATITUDE": 18.3527375, "OBJECTID_1": 4311, "PARCEL_NO_": "102803024200", "Tax_Legal_": "LILLIENDAHL 3A LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, LOUIS J", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.64600747599999, "SHAPE_Area": 776.86446588199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356783.876299999654293, 258117.797600001096725 ], [ 356827.546099998056889, 258148.232500001788139 ], [ 356816.561499997973442, 258104.48759999871254 ], [ 356801.086900003254414, 258111.471000000834465 ], [ 356783.876299999654293, 258117.797600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021400", "MAP": "D3-63-T43", "PARCEL_NAM": "4", "ACRE": "4.35", "LONGITUDE": -64.94928331, "LATITUDE": 18.3519261, "OBJECTID_1": 4285, "PARCEL_NO_": "102803021400", "Tax_Legal_": "LILLIANDAHL & MARIENHOJ 4 MARIENHOJ LITTLE NOR", "Name": "BOSCHULTE LOUIS J HELM", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 181400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 421.131162507, "SHAPE_Area": 10950.090819 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356827.250299997627735, 258093.161299999803305 ], [ 356830.276000000536442, 258092.711399998515844 ], [ 356840.759900003671646, 258092.586199998855591 ], [ 356885.880999997258186, 258096.755100000649691 ], [ 356894.147900000214577, 258097.511900000274181 ], [ 356899.398699998855591, 257967.364999998360872 ], [ 356886.1554000005126, 257969.8902000002563 ], [ 356865.96339999884367, 257973.735700000077486 ], [ 356823.129900000989437, 257984.995200000703335 ], [ 356806.134400002658367, 257992.24439999833703 ], [ 356795.51349999755621, 258000.718100000172853 ], [ 356791.340499997138977, 258004.047400001436472 ], [ 356814.425899997353554, 258095.982500001788139 ], [ 356818.165100000798702, 258094.512200001627207 ], [ 356827.250299997627735, 258093.161299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704011800", "MAP": "D9-6145-T96", "PARCEL_NAM": "1-C", "ACRE": "1.94", "LONGITUDE": -64.95041583, "LATITUDE": 18.35337255, "OBJECTID_1": 3448, "PARCEL_NO_": "102704011800", "Tax_Legal_": "LILLIENDAL & MARIENHOJ 1C 3 LITTLE NORTHSIDE", "Name": "ST ANDREWS EPISCOPAL CHURCH", "Address": "PO Box 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 173200, "Improved_V": 432200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.23978245000001, "SHAPE_Area": 4103.9085577100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356767.888999998569489, 258194.0168999992311 ], [ 356756.13570000231266, 258181.309599999338388 ], [ 356736.898699998855591, 258160.511199999600649 ], [ 356725.646600000560284, 258150.300200000405312 ], [ 356680.529700003564358, 258185.988899998366833 ], [ 356685.907200001180172, 258190.74379999935627 ], [ 356693.110100001096725, 258197.135600000619888 ], [ 356720.323299996554852, 258221.000799998641014 ], [ 356733.109200000762939, 258234.61540000140667 ], [ 356746.083999998867512, 258226.066799998283386 ], [ 356780.529799997806549, 258207.683600001037121 ], [ 356772.896700002253056, 258199.431099999696016 ], [ 356767.888999998569489, 258194.0168999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704011900", "MAP": "D9-6145-T96", "PARCEL_NAM": "1-B", "ACRE": "1.289", "LONGITUDE": -64.94992786, "LATITUDE": 18.35306902, "OBJECTID_1": 3449, "PARCEL_NO_": "102704011900", "Tax_Legal_": "LILLIENDAL & MARIENHOJ 1B 3 LITTLE NORTHSIDE", "Name": "ST ANDREWS EPISCOPAL CHURCH", "Address": "PO Box 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 173200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 503.446992137, "SHAPE_Area": 5027.6413866399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356725.646600000560284, 258150.300200000405312 ], [ 356736.898699998855591, 258160.511199999600649 ], [ 356756.13570000231266, 258181.309599999338388 ], [ 356767.888999998569489, 258194.0168999992311 ], [ 356773.775499999523163, 258193.785000000149012 ], [ 356785.900799997150898, 258190.295699998736382 ], [ 356797.246699996292591, 258183.633499998599291 ], [ 356802.944799996912479, 258177.34739999845624 ], [ 356803.902199998497963, 258159.6233000010252 ], [ 356803.162399999797344, 258151.806800000369549 ], [ 356801.594700001180172, 258146.516600001603365 ], [ 356784.782600000500679, 258132.235800001770258 ], [ 356770.357100002467632, 258121.774099998176098 ], [ 356766.334499999880791, 258120.685699999332428 ], [ 356762.866999998688698, 258120.857799999415874 ], [ 356725.646600000560284, 258150.300200000405312 ] ] ], [ [ [ 356827.546099998056889, 258148.232500001788139 ], [ 356783.876299999654293, 258117.797600001096725 ], [ 356780.864399999380112, 258118.904800001531839 ], [ 356781.638300001621246, 258122.710799999535084 ], [ 356804.864900000393391, 258141.266100000590086 ], [ 356807.258699998259544, 258144.24100000038743 ], [ 356808.831699997186661, 258148.897900000214577 ], [ 356809.598499998450279, 258153.548200000077486 ], [ 356810.318499997258186, 258163.686599999666214 ], [ 356808.565600000321865, 258180.137600000947714 ], [ 356797.183700002729893, 258191.021299999207258 ], [ 356785.846799999475479, 258196.627999998629093 ], [ 356774.535099998116493, 258199.279699999839067 ], [ 356772.896700002253056, 258199.431099999696016 ], [ 356780.529799997806549, 258207.683600001037121 ], [ 356797.117200002074242, 258198.831199999898672 ], [ 356835.188299998641014, 258178.666700001806021 ], [ 356827.546099998056889, 258148.232500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803029100", "MAP": "D9-3105-T85", "PARCEL_NAM": "71B", "ACRE": ".23", "LONGITUDE": -64.9432158, "LATITUDE": 18.3484215, "OBJECTID_1": 4351, "PARCEL_NO_": "102803029100", "Tax_Legal_": "SOLBERG 71B LT. NORTHSIDE", "Name": "HODGE, JOHN W", "Address": "Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.013155939, "SHAPE_Area": 1369.78623563 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357473.9070999994874, 257632.765700001269579 ], [ 357486.141699999570847, 257677.107799999415874 ], [ 357494.265699997544289, 257673.214600000530481 ], [ 357515.292700000107288, 257665.998399998992682 ], [ 357521.749700002372265, 257661.987900000065565 ], [ 357491.801700003445148, 257618.093199998140335 ], [ 357494.809199996292591, 257630.781300000846386 ], [ 357480.370200000703335, 257632.152100000530481 ], [ 357473.9070999994874, 257632.765700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94309226, "LATITUDE": 18.34822279, "OBJECTID_1": 4307, "PARCEL_NO_": "102803023400", "Tax_Legal_": "SOLBERG 60 LITTLE NORTHSIDE QTR", "Name": "BLYDEN, ELEANOR R.", "Address": "PO Box 7636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.04568182599999, "SHAPE_Area": 1022.1272265 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357501.986000001430511, 257604.158900000154972 ], [ 357499.812299996614456, 257600.808400001376867 ], [ 357497.292400002479553, 257601.889699999243021 ], [ 357490.021200001239777, 257603.518899999558926 ], [ 357482.762599997222424, 257603.6706000007689 ], [ 357481.796700000762939, 257603.428800001740456 ], [ 357485.397100001573563, 257608.705899998545647 ], [ 357521.749700002372265, 257661.987900000065565 ], [ 357525.020599998533726, 257659.956300001591444 ], [ 357527.461099997162819, 257657.44310000166297 ], [ 357532.703199997544289, 257651.50620000064373 ], [ 357501.986000001430511, 257604.158900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803023200", "MAP": "D9-5419-T92", "PARCEL_NAM": "71A", "ACRE": null, "LONGITUDE": -64.94341561, "LATITUDE": 18.34835609, "OBJECTID_1": 4305, "PARCEL_NO_": "102803023200", "Tax_Legal_": "SOLBERG 71-A 1 LITTLE NORTHSIDE", "Name": "RABSATT, JAMES & VENZEN, D", "Address": "PO Box 11284", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 241000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.59125755900001, "SHAPE_Area": 1518.2242521400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357472.302100002765656, 257601.051899999380112 ], [ 357471.856200002133846, 257600.82209999859333 ], [ 357463.879299998283386, 257643.201699998229742 ], [ 357458.725000001490116, 257680.311900001019239 ], [ 357466.768299996852875, 257682.699799999594688 ], [ 357475.643100000917912, 257682.139199998229742 ], [ 357481.724200002849102, 257679.224899999797344 ], [ 357486.141699999570847, 257677.107799999415874 ], [ 357473.9070999994874, 257632.765700001269579 ], [ 357480.370200000703335, 257632.152100000530481 ], [ 357494.809199996292591, 257630.781300000846386 ], [ 357491.801700003445148, 257618.093199998140335 ], [ 357485.397100001573563, 257608.705899998545647 ], [ 357481.796700000762939, 257603.428800001740456 ], [ 357476.512800000607967, 257602.105999998748302 ], [ 357472.302100002765656, 257601.051899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202020900", "MAP": "D9-4531-T88", "PARCEL_NAM": "93C-1A", "ACRE": ".50", "LONGITUDE": -64.95666586, "LATITUDE": 18.34528397, "OBJECTID_1": 8100, "PARCEL_NO_": "105202020900", "Tax_Legal_": "CONTANT 93C-1-A 7A S S QTR", "Name": "KING, BOBBIE L and MYTSOOKO", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17300, "Improved_V": 194800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.65395304699999, "SHAPE_Area": 1017.5230258399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356080.5033999979496, 257260.037399999797344 ], [ 356083.01690000295639, 257267.181200001388788 ], [ 356081.032499998807907, 257270.885400000959635 ], [ 356073.624200001358986, 257280.410399999469519 ], [ 356070.449199996888638, 257284.114599999040365 ], [ 356067.670999996364117, 257287.554200001060963 ], [ 356065.686700001358986, 257290.199999999254942 ], [ 356061.188699997961521, 257294.300999999046326 ], [ 356060.552799999713898, 257311.890799999237061 ], [ 356061.464199997484684, 257316.468600001186132 ], [ 356066.00110000371933, 257316.386900000274181 ], [ 356083.097000002861023, 257313.604600001126528 ], [ 356093.501500003039837, 257264.507100000977516 ], [ 356089.029200002551079, 257263.590900000184774 ], [ 356085.012000001966953, 257261.869300000369549 ], [ 356080.5033999979496, 257260.037399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202020500", "MAP": null, "PARCEL_NAM": "102", "ACRE": null, "LONGITUDE": -64.95635108, "LATITUDE": 18.34525425, "OBJECTID_1": 8096, "PARCEL_NO_": "105202020500", "Tax_Legal_": "CONTANT 102 7A SOUTHSIDE QUARTER", "Name": "MCBEAN, JR., CLYDE V & NESTRA C", "Address": "PO BOX 305555", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39300, "Improved_V": 265500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.381903526, "SHAPE_Area": 1918.61271278 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356088.610200002789497, 257312.772300001233816 ], [ 356091.840800002217293, 257312.165399998426437 ], [ 356135.442800000309944, 257305.345100000500679 ], [ 356135.7162000015378, 257273.261100001633167 ], [ 356102.713100001215935, 257266.44709999859333 ], [ 356098.688699997961521, 257265.56980000063777 ], [ 356093.501500003039837, 257264.507100000977516 ], [ 356083.097000002861023, 257313.604600001126528 ], [ 356086.995800003409386, 257312.970199998468161 ], [ 356088.610200002789497, 257312.772300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202020800", "MAP": "D9-697-T68", "PARCEL_NAM": "93C-1", "ACRE": ".50", "LONGITUDE": -64.95708614, "LATITUDE": 18.34527564, "OBJECTID_1": 8099, "PARCEL_NO_": "105202020800", "Tax_Legal_": "CONTANT 93C-1 7A S S QTR", "Name": "ELLICK, ROCHELLE", "Address": "705 Westminster Dr", "City": "Greensboro", "State": "North Carolina", "Zip": 27410, "Country": "United States", "Land_Value": 96400, "Improved_V": 163400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.47948871599999, "SHAPE_Area": 1986.9453034200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356010.487199999392033, 257305.296100001782179 ], [ 356025.917900003492832, 257312.003899998962879 ], [ 356041.0, 257316.815600000321865 ], [ 356054.710900001227856, 257316.50560000166297 ], [ 356057.936099998652935, 257316.532000001519918 ], [ 356061.464199997484684, 257316.468600001186132 ], [ 356055.60809999704361, 257287.052999999374151 ], [ 356054.838699996471405, 257283.188499998301268 ], [ 356038.222099997103214, 257279.347100000828505 ], [ 356030.232400000095367, 257277.5 ], [ 356034.054099999368191, 257261.864199999719858 ], [ 356017.60869999974966, 257258.378100000321865 ], [ 356011.672899998724461, 257257.119899999350309 ], [ 356011.637500002980232, 257261.268699999898672 ], [ 356010.487199999392033, 257305.296100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95642258, "LATITUDE": 18.34567007, "OBJECTID_1": 8144, "PARCEL_NO_": "105202025600", "Tax_Legal_": "CONTANT 102A. 7A S S QTR", "Name": "RACHID, ALI & ABEER", "Address": "PO BOX 304042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61800, "Improved_V": 152600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.83243575899999, "SHAPE_Area": 2641.7091784999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356075.81530000269413, 257346.721999999135733 ], [ 356070.308100000023842, 257381.826699998229742 ], [ 356075.173299998044968, 257375.568199999630451 ], [ 356087.354299999773502, 257365.535399999469519 ], [ 356129.464199997484684, 257344.559599999338388 ], [ 356135.442800000309944, 257305.345100000500679 ], [ 356091.840800002217293, 257312.165399998426437 ], [ 356083.097000002861023, 257313.604600001126528 ], [ 356077.324299998581409, 257329.913100000470877 ], [ 356081.562600001692772, 257330.383499998599291 ], [ 356078.515900000929832, 257339.044700000435114 ], [ 356075.81530000269413, 257346.721999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95573347, "LATITUDE": 18.34540406, "OBJECTID_1": 8146, "PARCEL_NO_": "105202025800", "Tax_Legal_": "19-1 REM.&19-1-A ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "HERMAN, JOAN, JANE & JOHN B", "Address": "PO Box 302792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28300, "Improved_V": 387500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.63936707, "SHAPE_Area": 1630.48060553 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356158.275100000202656, 257278.983500000089407 ], [ 356160.187799997627735, 257334.214899998158216 ], [ 356163.422799997031689, 257333.860700000077486 ], [ 356173.107600003480911, 257332.884500000625849 ], [ 356181.192299999296665, 257330.417500000447035 ], [ 356207.175899997353554, 257309.30970000103116 ], [ 356189.449600003659725, 257307.686999998986721 ], [ 356186.454499997198582, 257280.642499998211861 ], [ 356167.903899997472763, 257281.1239 ], [ 356159.048900000751019, 257279.362700000405312 ], [ 356158.275100000202656, 257278.983500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803029000", "MAP": "D9-2208-T82", "PARCEL_NAM": "15-B", "ACRE": ".29", "LONGITUDE": -64.94452193, "LATITUDE": 18.34768132, "OBJECTID_1": 4350, "PARCEL_NO_": "102803029000", "Tax_Legal_": "SOLBERG 15B LT. NORTHSIDE", "Name": "KRONPRINDSENS QTR. INC.", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.44718653499999, "SHAPE_Area": 974.36974546800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357331.243199996650219, 257574.654199998825788 ], [ 357356.234200000762939, 257575.326099999248981 ], [ 357386.39130000025034, 257586.223600000143051 ], [ 357377.502499997615814, 257559.745999999344349 ], [ 357333.185900002717972, 257555.794700000435114 ], [ 357331.243199996650219, 257574.654199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803025000", "MAP": "G9-2695-T77", "PARCEL_NAM": "69A", "ACRE": ".012", "LONGITUDE": -64.94285677000001, "LATITUDE": 18.34785328, "OBJECTID_1": 4319, "PARCEL_NO_": "102803025000", "Tax_Legal_": "SOLBERG 69A LT NORTHSIDE QTR", "Name": "OSORIO, URSULA", "Address": "30326 Colthurst St", "City": "Wesley Chapel", "State": "Florida", "Zip": 33545, "Country": "United States", "Land_Value": 2700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.815142595099999, "SHAPE_Area": 76.262454845199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357534.966300003230572, 257596.907499998807907 ], [ 357539.784599997103214, 257581.162000000476837 ], [ 357538.586900003254414, 257581.962699998170137 ], [ 357536.153599999845028, 257583.631499998271465 ], [ 357527.646099999547005, 257588.469500001519918 ], [ 357534.966300003230572, 257596.907499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94289851000001, "LATITUDE": 18.34810969, "OBJECTID_1": 4308, "PARCEL_NO_": "102803023500", "Tax_Legal_": "SOLBERG 60A LITTLE NORTHSIDE QTR", "Name": "OSORIO, URSULA", "Address": "30326 Colthurst St", "City": "Wesley Chapel", "State": "Florida", "Zip": 33545, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.64586133500001, "SHAPE_Area": 1764.3359816699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357557.743400000035763, 257623.162399999797344 ], [ 357527.646099999547005, 257588.469500001519918 ], [ 357524.809500001370907, 257590.082600001245737 ], [ 357523.957099996507168, 257590.448300000280142 ], [ 357499.812299996614456, 257600.808400001376867 ], [ 357501.986000001430511, 257604.158900000154972 ], [ 357532.703199997544289, 257651.50620000064373 ], [ 357543.745600000023842, 257639.000199999660254 ], [ 357557.743400000035763, 257623.162399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803028200", "MAP": "G9-2695-T77", "PARCEL_NAM": "69", "ACRE": ".228", "LONGITUDE": -64.94269532, "LATITUDE": 18.34786573, "OBJECTID_1": 4342, "PARCEL_NO_": "102803028200", "Tax_Legal_": "SOLBERG 69 LITTLE NORTHSIDE QTR", "Name": "OSORIO, URSULA", "Address": "30326 Colthurst St", "City": "Wesley Chapel", "State": "Florida", "Zip": 33545, "Country": "United States", "Land_Value": 42300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.89822254699999, "SHAPE_Area": 730.15973116800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357539.784599997103214, 257581.162000000476837 ], [ 357534.966300003230572, 257596.907499998807907 ], [ 357557.743400000035763, 257623.162399999797344 ], [ 357559.988200001418591, 257620.623599998652935 ], [ 357562.1554000005126, 257618.172499999403954 ], [ 357547.014799997210503, 257593.586399998515844 ], [ 357570.879199996590614, 257567.464600000530481 ], [ 357571.518500000238419, 257559.920800000429153 ], [ 357562.916599996387959, 257565.69649999961257 ], [ 357539.784599997103214, 257581.162000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803023000", "MAP": "G9-719-T63", "PARCEL_NAM": "66", "ACRE": null, "LONGITUDE": -64.94403307, "LATITUDE": 18.34819228, "OBJECTID_1": 4303, "PARCEL_NO_": "102803023000", "Tax_Legal_": "SOLBERG 66 1 LITTLE NORTHSIDE", "Name": "SANES, OLGA & LISA", "Address": "3820 Windway Ct", "City": "Orlando", "State": "Florida", "Zip": 32817, "Country": "United States", "Land_Value": 91200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.51540726600001, "SHAPE_Area": 1485.704261 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357433.912299998104572, 257663.472100000828505 ], [ 357417.965899996459484, 257616.053199999034405 ], [ 357406.856299996376038, 257596.309999998658895 ], [ 357384.555299997329712, 257580.754700001329184 ], [ 357389.298699997365475, 257594.884100001305342 ], [ 357393.220499999821186, 257607.792899999767542 ], [ 357408.933200001716614, 257656.473000001162291 ], [ 357424.229800000786781, 257659.342399999499321 ], [ 357428.246899999678135, 257661.064100001007318 ], [ 357433.871299996972084, 257663.432100001722574 ], [ 357433.912299998104572, 257663.472100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803028800", "MAP": "D9-2076-T82", "PARCEL_NAM": "66A", "ACRE": ".45", "LONGITUDE": -64.94372895, "LATITUDE": 18.34833469, "OBJECTID_1": 4348, "PARCEL_NO_": "102803028800", "Tax_Legal_": "SOLBERG 66A LT. NORTHSIDE QTR.", "Name": "TURNBULL, LOUIS A. & SHARON", "Address": "PO Box 308111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79300, "Improved_V": 438500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.564215262, "SHAPE_Area": 1894.19051474 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357406.856299996376038, 257596.309999998658895 ], [ 357417.965899996459484, 257616.053199999034405 ], [ 357433.912299998104572, 257663.472100000828505 ], [ 357436.270499996840954, 257665.773800000548363 ], [ 357458.725000001490116, 257680.311900001019239 ], [ 357463.879299998283386, 257643.201699998229742 ], [ 357465.063500002026558, 257636.910500001162291 ], [ 357412.411499999463558, 257600.184900000691414 ], [ 357406.856299996376038, 257596.309999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803025400", "MAP": "G9-2709-T78", "PARCEL_NAM": "15A", "ACRE": ".24", "LONGITUDE": -64.94426014, "LATITUDE": 18.34830787, "OBJECTID_1": 4323, "PARCEL_NO_": "102803025400", "Tax_Legal_": "SOLBERG 15A LT. NORTHSIDE QTR", "Name": "O'NEAL, CLARA M", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44700, "Improved_V": 283100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.575456143, "SHAPE_Area": 1273.97222762 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357359.236800000071526, 257641.003400001674891 ], [ 357386.3175999969244, 257657.372499998658895 ], [ 357389.581699997186661, 257656.314699999988079 ], [ 357404.906999997794628, 257655.806800000369549 ], [ 357408.933200001716614, 257656.473000001162291 ], [ 357396.5878000035882, 257618.225099999457598 ], [ 357373.450000002980232, 257619.569499999284744 ], [ 357359.236800000071526, 257641.003400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803022900", "MAP": "D9-2207-T82", "PARCEL_NAM": "15", "ACRE": ".94", "LONGITUDE": -64.9445144, "LATITUDE": 18.34803749, "OBJECTID_1": 4302, "PARCEL_NO_": "102803022900", "Tax_Legal_": "SOLBERG 15 LITTLE NORTHSIDE QTR", "Name": "KRONPRINDSENS QTR. INC.", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 149600, "Improved_V": 303400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.28678613099999, "SHAPE_Area": 3303.6550214499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357356.234200000762939, 257575.326099999248981 ], [ 357331.243199996650219, 257574.654199998825788 ], [ 357329.55009999871254, 257591.091400001198053 ], [ 357327.776600003242493, 257615.203699998557568 ], [ 357356.398199997842312, 257645.284099999815226 ], [ 357373.396099999547005, 257663.148299999535084 ], [ 357380.687100000679493, 257659.197200000286102 ], [ 357386.3175999969244, 257657.372499998658895 ], [ 357359.236800000071526, 257641.003400001674891 ], [ 357373.450000002980232, 257619.569499999284744 ], [ 357396.5878000035882, 257618.225099999457598 ], [ 357393.220499999821186, 257607.792899999767542 ], [ 357389.298699997365475, 257594.884100001305342 ], [ 357386.39130000025034, 257586.223600000143051 ], [ 357356.234200000762939, 257575.326099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201048200", "MAP": "D9-7251-T003", "PARCEL_NAM": "11-REM", "ACRE": ".365", "LONGITUDE": -64.96195981, "LATITUDE": 18.34128284, "OBJECTID_1": 7663, "PARCEL_NO_": "105201048200", "Tax_Legal_": "LINDBER BAY 11 SOUTHSIDE QTR", "Name": "HARLEY, RAMONA, GWENDOLYN & JUNE", "Address": "BOX 4071", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47100, "Improved_V": 88600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.64185210299999, "SHAPE_Area": 1599.48542213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355557.763300001621246, 256833.7939000017941 ], [ 355536.946699999272823, 256823.497499998658895 ], [ 355534.07769999653101, 256821.946899998933077 ], [ 355532.385799996554852, 256819.53830000013113 ], [ 355526.709299996495247, 256823.291499998420477 ], [ 355494.271600000560284, 256844.7685999982059 ], [ 355494.100699998438358, 256864.821100000292063 ], [ 355514.260300002992153, 256864.774999998509884 ], [ 355536.032600000500679, 256864.74210000038147 ], [ 355536.235799998044968, 256840.8902000002563 ], [ 355557.763300001621246, 256833.7939000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043800", "MAP": "B9-273-T70", "PARCEL_NAM": "37K", "ACRE": null, "LONGITUDE": -64.96505393, "LATITUDE": 18.34940726, "OBJECTID_1": 3375, "PARCEL_NO_": "102703043800", "Tax_Legal_": "LINDBERG BAY 37K SOUTHSIDE QTR.", "Name": "HINES, JAMES C. & KRISTEN M.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.763332609, "SHAPE_Area": 1086.61690615 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355168.450800001621246, 257728.061299998313189 ], [ 355170.616300001740456, 257734.581399999558926 ], [ 355179.589699998497963, 257761.600299999117851 ], [ 355184.874200001358986, 257762.182100001722574 ], [ 355200.170699998736382, 257765.051500000059605 ], [ 355203.42119999974966, 257762.122800000011921 ], [ 355202.692199997603893, 257753.039799999445677 ], [ 355199.578400000929832, 257739.926500000059605 ], [ 355195.634999997913837, 257729.550700001418591 ], [ 355194.036700002849102, 257727.848799999803305 ], [ 355187.670699998736382, 257717.875300001353025 ], [ 355185.987499997019768, 257714.922699999064207 ], [ 355168.450800001621246, 257728.061299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043700", "MAP": "D9-7284-T003", "PARCEL_NAM": "37J-A", "ACRE": ".01", "LONGITUDE": -64.96546906, "LATITUDE": 18.34945234, "OBJECTID_1": 3374, "PARCEL_NO_": "102703043700", "Tax_Legal_": "LINDBERG BAY 37J SOUTHSIDE QTR.", "Name": "HINES, JAMES C. & KRISTEN M.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19800, "Improved_V": 360300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.298858200200002, "SHAPE_Area": 111.374465781 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355141.302699998021126, 257765.414099998772144 ], [ 355146.272100001573563, 257752.245600000023842 ], [ 355140.933600001037121, 257722.961500000208616 ], [ 355140.814699999988079, 257728.046500001102686 ], [ 355141.302699998021126, 257765.414099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043700", "MAP": "D9-7284-T003", "PARCEL_NAM": "37J", "ACRE": ".26", "LONGITUDE": -64.96532274, "LATITUDE": 18.34943639, "OBJECTID_1": 3374, "PARCEL_NO_": "102703043700", "Tax_Legal_": "LINDBERG BAY 37J SOUTHSIDE QTR.", "Name": "HINES, JAMES C. & KRISTEN M.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19800, "Improved_V": 360300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.90874037699999, "SHAPE_Area": 1101.53241897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355140.933600001037121, 257722.961500000208616 ], [ 355146.272100001573563, 257752.245600000023842 ], [ 355141.302699998021126, 257765.414099998772144 ], [ 355170.373099997639656, 257760.585700001567602 ], [ 355179.589699998497963, 257761.600299999117851 ], [ 355170.616300001740456, 257734.581399999558926 ], [ 355168.450800001621246, 257728.061299998313189 ], [ 355140.933600001037121, 257722.961500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043600", "MAP": "B9-273-T70", "PARCEL_NAM": "38HK", "ACRE": null, "LONGITUDE": -64.96561452, "LATITUDE": 18.34944999, "OBJECTID_1": 3373, "PARCEL_NO_": "102703043600", "Tax_Legal_": "LINDBERG BAY 38HK 4A S S QTR", "Name": "RICHARDSON, SONIA S", "Address": "25BA Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.77184105800001, "SHAPE_Area": 1213.9207301 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355141.302699998021126, 257765.414099998772144 ], [ 355140.814699999988079, 257728.046500001102686 ], [ 355140.933600001037121, 257722.961500000208616 ], [ 355126.174099996685982, 257720.226100001484156 ], [ 355124.744199998676777, 257721.371100001037121 ], [ 355120.69650000333786, 257723.237799998372793 ], [ 355119.07660000026226, 257724.068900000303984 ], [ 355114.039200000464916, 257747.459100000560284 ], [ 355109.030500002205372, 257767.471999999135733 ], [ 355121.114399999380112, 257768.837400000542402 ], [ 355141.302699998021126, 257765.414099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101104012800", "MAP": "A9-108-T69", "PARCEL_NAM": "4-3", "ACRE": ".7", "LONGITUDE": -64.95118032000001, "LATITUDE": 18.37005843, "OBJECTID_1": 518, "PARCEL_NO_": "101104012800", "Tax_Legal_": "HULL 4-3 LT. NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 209100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.357340967, "SHAPE_Area": 990.58155960900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356642.311200000345707, 260071.491900000721216 ], [ 356656.959799997508526, 260062.423700001090765 ], [ 356636.394299998879433, 260027.274700000882149 ], [ 356623.476400002837181, 260006.447999998927116 ], [ 356611.546300001442432, 260016.168000001460314 ], [ 356617.86879999935627, 260024.801100000739098 ], [ 356621.04730000346899, 260030.315499998629093 ], [ 356624.22580000013113, 260035.829999998211861 ], [ 356633.745099999010563, 260054.272999998182058 ], [ 356636.137100003659725, 260057.458999998867512 ], [ 356639.295800000429153, 260065.295299999415874 ], [ 356641.67339999973774, 260070.169900000095367 ], [ 356642.311200000345707, 260071.491900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101104019900", "MAP": "D9-4309-T88", "PARCEL_NAM": "4-3-A-1", "ACRE": ".52", "LONGITUDE": -64.95096534, "LATITUDE": 18.37043397, "OBJECTID_1": 568, "PARCEL_NO_": "101104019900", "Tax_Legal_": "HULL 4-3-A-1, 4-3-A-2 & 4-5-B-1 LITTLE NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.056863385, "SHAPE_Area": 577.65303218899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356652.706200003623962, 260100.678700000047684 ], [ 356672.374899998307228, 260088.769999999552965 ], [ 356656.959799997508526, 260062.423700001090765 ], [ 356642.311200000345707, 260071.491900000721216 ], [ 356644.8429000005126, 260076.739799998700619 ], [ 356647.23309999704361, 260080.136799998581409 ], [ 356650.386399999260902, 260088.6064000017941 ], [ 356652.702799998223782, 260100.657699998468161 ], [ 356652.706200003623962, 260100.678700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101104019900", "MAP": "D9-4309-T88", "PARCEL_NAM": "4-3-A-2", "ACRE": ".149", "LONGITUDE": -64.95089053, "LATITUDE": 18.37066007, "OBJECTID_1": 568, "PARCEL_NO_": "101104019900", "Tax_Legal_": "HULL 4-3-A-1, 4-3-A-2 & 4-5-B-1 LITTLE NORTHSIDE QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.57985847099999, "SHAPE_Area": 593.50489758200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356672.374899998307228, 260088.769999999552965 ], [ 356652.706200003623962, 260100.678700000047684 ], [ 356653.467799998819828, 260105.519099999219179 ], [ 356650.858300000429153, 260127.873599998652935 ], [ 356681.701300002634525, 260104.27250000089407 ], [ 356680.920199997723103, 260101.3108000010252 ], [ 356679.318300001323223, 260100.031100001186132 ], [ 356673.749700002372265, 260091.119600001722574 ], [ 356672.374899998307228, 260088.769999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202060600", "MAP": "D9-848-T69", "PARCEL_NAM": "19", "ACRE": null, "LONGITUDE": -64.94958778, "LATITUDE": 18.34341724, "OBJECTID_1": 8400, "PARCEL_NO_": "105202060600", "Tax_Legal_": "LOWER JOHN DUNKO REM.19 No.3B&3C LT.NORTHSIDE QTR.", "Name": "KING LIFE INTERNATIONAL", "Address": "PO Box 305214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.21407298599999, "SHAPE_Area": 2376.0416960100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356833.893500000238419, 257049.087000001221895 ], [ 356797.005800001323223, 257099.774300001561642 ], [ 356828.431100003421307, 257131.793999999761581 ], [ 356824.387299999594688, 257143.240299999713898 ], [ 356833.436300002038479, 257144.960900001227856 ], [ 356848.499799996614456, 257044.293699998408556 ], [ 356841.666599996387959, 257047.666299998760223 ], [ 356840.719800002872944, 257047.839400000870228 ], [ 356833.893500000238419, 257049.087000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202060400", "MAP": "D9-848-T69", "PARCEL_NAM": "18", "ACRE": null, "LONGITUDE": -64.94991057, "LATITUDE": 18.34310979, "OBJECTID_1": 8398, "PARCEL_NO_": "105202060400", "Tax_Legal_": "LOWER JOHN DUNKO 18&18-1 LITTLE NORTHSIDE QTR", "Name": "LOUISE O FISHMAN REVOCABLE LIVING TRUST", "Address": "PO Box 6767", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.68650996299999, "SHAPE_Area": 2019.8398004600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356760.815600000321865, 257051.013999998569489 ], [ 356788.638199999928474, 257091.46169999986887 ], [ 356829.800800003111362, 257049.038699999451637 ], [ 356823.047200001776218, 257048.161400001496077 ], [ 356810.99210000038147, 257043.418600000441074 ], [ 356795.772799998521805, 257031.472800001502037 ], [ 356794.170999996364117, 257030.193199999630451 ], [ 356760.815600000321865, 257051.013999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202061700", "MAP": null, "PARCEL_NAM": "19-2", "ACRE": ".06", "LONGITUDE": -64.94975991, "LATITUDE": 18.34327995, "OBJECTID_1": 8407, "PARCEL_NO_": "105202061700", "Tax_Legal_": "LOWER JOHN DUNKO 19-2 LT. NORTHSIDE QTR.", "Name": "KINGDOM LIFE INTERNATIONAL", "Address": "PO Box 305214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.73720067299999, "SHAPE_Area": 451.89561215100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356788.638199999928474, 257091.46169999986887 ], [ 356790.651799999177456, 257093.300200000405312 ], [ 356797.005800001323223, 257099.774300001561642 ], [ 356833.893500000238419, 257049.087000001221895 ], [ 356832.347300000488758, 257049.369500000029802 ], [ 356829.800800003111362, 257049.038699999451637 ], [ 356788.638199999928474, 257091.46169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104016200", "MAP": "D9-4898-T90", "PARCEL_NAM": "4-5-A-5", "ACRE": ".54", "LONGITUDE": -64.95136891, "LATITUDE": 18.37297475, "OBJECTID_1": 547, "PARCEL_NO_": "101104016200", "Tax_Legal_": "4-5-A-5 ESTATE HULL LT.NORTHSIDE QTR.", "Name": "CUNNINGHAM FAMILY TRUST", "Address": "7660 Fay Ave", "City": "La Jolla", "State": "California", "Zip": 92037, "Country": "United States", "Land_Value": 150000, "Improved_V": 850000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.64965292900001, "SHAPE_Area": 2549.4065735499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356615.297200001776218, 260345.855500001460314 ], [ 356575.618100002408028, 260342.739199999719858 ], [ 356574.805600002408028, 260346.999600000679493 ], [ 356575.412299998104572, 260370.435899998992682 ], [ 356577.741300001740456, 260381.009700000286102 ], [ 356603.557700000703335, 260379.532200001180172 ], [ 356651.965199999511242, 260376.550900001078844 ], [ 356651.205700002610683, 260371.05629999935627 ], [ 356652.951399996876717, 260355.449599999934435 ], [ 356655.789700001478195, 260349.035700000822544 ], [ 356615.297200001776218, 260345.855500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104016000", "MAP": "D9-4631-T89", "PARCEL_NAM": "4-5-B-4", "ACRE": ".64", "LONGITUDE": -64.95050751, "LATITUDE": 18.37185344, "OBJECTID_1": 545, "PARCEL_NO_": "101104016000", "Tax_Legal_": "HULL 4-5-B-4 LT.NORTHSIDE QTR", "Name": "BERRY, CHARLES A. -TRUSTEE", "Address": "PO Box 11583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 115700, "Improved_V": 726000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.423539342, "SHAPE_Area": 3093.3591651699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356696.5641999989748, 260210.303300000727177 ], [ 356682.677500002086163, 260234.604100000113249 ], [ 356666.182599999010563, 260276.186700001358986 ], [ 356677.816899999976158, 260276.282000001519918 ], [ 356709.264799997210503, 260276.328200001269579 ], [ 356714.251999996602535, 260258.848299998790026 ], [ 356716.782399997115135, 260245.781199999153614 ], [ 356720.896700002253056, 260236.104600001126528 ], [ 356726.609200000762939, 260228.129799999296665 ], [ 356737.98030000180006, 260218.512499999254942 ], [ 356746.124300003051758, 260209.079999998211861 ], [ 356745.354000002145767, 260204.851799998432398 ], [ 356739.747599996626377, 260200.372999999672174 ], [ 356735.7195999994874, 260199.91780000180006 ], [ 356730.885300002992153, 260199.4560999982059 ], [ 356709.064499996602535, 260205.188099998980761 ], [ 356696.5641999989748, 260210.303300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604013700", "MAP": "D9-6521-T98", "PARCEL_NAM": "50-1", "ACRE": ".58", "LONGITUDE": -64.96707566000001, "LATITUDE": 18.35222443, "OBJECTID_1": 2682, "PARCEL_NO_": "102604013700", "Tax_Legal_": "LINDBERG BAY ESTATE 50-1 SOUTHSIDE QTR", "Name": "RIDELL HARRIS and LATOYA HENDRICKSON-HARRIS", "Address": "173 D3 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.60661164300001, "SHAPE_Area": 1497.18763356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354922.458200000226498, 258043.3429000005126 ], [ 354928.464199997484684, 258043.119699999690056 ], [ 354952.061499997973442, 258044.775400001555681 ], [ 354971.409199997782707, 258047.313700001686811 ], [ 354977.295299999415874, 258049.377700001001358 ], [ 354978.576099999248981, 258050.671300001442432 ], [ 354978.560000002384186, 258052.688000001013279 ], [ 354977.990500003099442, 258054.700199998915195 ], [ 354977.611299999058247, 258055.980599999427795 ], [ 354972.156000003218651, 258057.703000001609325 ], [ 354972.334100000560284, 258088.891399998217821 ], [ 354989.874899998307228, 258088.326099999248981 ], [ 354988.081399999558926, 258028.907800000160933 ], [ 354968.903300002217293, 258030.19200000166893 ], [ 354953.572599999606609, 258031.333099998533726 ], [ 354945.495099999010563, 258032.955800000578165 ], [ 354925.283299997448921, 258039.123100001364946 ], [ 354922.348700001835823, 258040.552700001746416 ], [ 354922.458200000226498, 258043.3429000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011400", "MAP": "G9-2848-T79", "PARCEL_NAM": "50 REM", "ACRE": null, "LONGITUDE": -64.96712296, "LATITUDE": 18.35363095, "OBJECTID_1": 2659, "PARCEL_NO_": "102604011400", "Tax_Legal_": "REMAINDER 50 LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "BENJAMIN, GASTON G", "Address": "611 Ferrell Ave", "City": "Charlotte", "State": "North Carolina", "Zip": 28216, "Country": "United States", "Land_Value": 196500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 704.87474238599998, "SHAPE_Area": 14761.988774900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354931.816100001335144, 258281.906300000846386 ], [ 354966.589599996805191, 258268.607299998402596 ], [ 354968.73589999973774, 258371.816799998283386 ], [ 354982.958800002932549, 258368.056800000369549 ], [ 354998.229999996721745, 258365.135800000280142 ], [ 354989.874899998307228, 258088.326099999248981 ], [ 354924.305600002408028, 258090.439100001007318 ], [ 354931.816100001335144, 258281.906300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604012600", "MAP": "D9-6760-T000", "PARCEL_NAM": "50-3", "ACRE": null, "LONGITUDE": -64.96729415, "LATITUDE": 18.35237821, "OBJECTID_1": 2671, "PARCEL_NO_": "102604012600", "Tax_Legal_": "LINDBERG BAY ESTATE 50-3 SOUTHSIDE QTR", "Name": "BENJAMIN, GASTON", "Address": "611 Ferrell Ave", "City": "Charlotte", "State": "North Carolina", "Zip": 28216, "Country": "United States", "Land_Value": 55400, "Improved_V": 188100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.943851991, "SHAPE_Area": 2012.4601405200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354972.334100000560284, 258088.891399998217821 ], [ 354972.117600001394749, 258050.986299999058247 ], [ 354960.14190000295639, 258049.240299999713898 ], [ 354933.229000002145767, 258047.008099999278784 ], [ 354922.610100001096725, 258047.2162000015378 ], [ 354924.305600002408028, 258090.439100001007318 ], [ 354972.334100000560284, 258088.891399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604013900", "MAP": "D9-7364-T004", "PARCEL_NAM": "50-2-B", "ACRE": ".504", "LONGITUDE": -64.96725121, "LATITUDE": 18.35442221, "OBJECTID_1": 2684, "PARCEL_NO_": "102604013900", "Tax_Legal_": "50-2-B LINDBERG BAY NO.4 SOUTHSIDE QTR", "Name": "BENJAMIN, JR., LEAYLE M.", "Address": "1388 Fairgreen Rd", "City": "West Palm Beach", "State": "Florida", "Zip": 33417, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.103731289, "SHAPE_Area": 1396.8929201200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354933.324699997901917, 258320.364799998700619 ], [ 354967.459399998188019, 258310.434200000017881 ], [ 354966.589599996805191, 258268.607299998402596 ], [ 354931.816100001335144, 258281.906300000846386 ], [ 354933.324699997901917, 258320.364799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604013800", "MAP": "D9-7364-T004", "PARCEL_NAM": "50-2-A", "ACRE": ".503", "LONGITUDE": -64.96723493, "LATITUDE": 18.35487778, "OBJECTID_1": 2683, "PARCEL_NO_": "102604013800", "Tax_Legal_": "50-2-A LINDBERG BAY No.4A SOUTHSIDE QUARTER", "Name": "FRANCIS, FERDINAND", "Address": "P O BOX 503795", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 41400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.43164687800001, "SHAPE_Area": 2059.1937623899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354967.459399998188019, 258310.434200000017881 ], [ 354933.324699997901917, 258320.364799998700619 ], [ 354933.949199996888638, 258336.2837999984622 ], [ 354935.687799997627735, 258380.607099998742342 ], [ 354945.7820999994874, 258377.885000001639128 ], [ 354968.73589999973774, 258371.816799998283386 ], [ 354967.459399998188019, 258310.434200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011500", "MAP": "A3-12-T33", "PARCEL_NAM": "49", "ACRE": "6.19", "LONGITUDE": -64.96645021, "LATITUDE": 18.35351416, "OBJECTID_1": 2660, "PARCEL_NO_": "102604011500", "Tax_Legal_": "LINDBERG BAY 49 S S QTR", "Name": "WILLIAMS, JAMES", "Address": "609 Calle Argentina", "City": "San Juan", "State": "Puerto Rico", "Zip": 915, "Country": "United States", "Land_Value": 231500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 839.20170190199997, "SHAPE_Area": 28295.1158387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354988.081399999558926, 258028.907800000160933 ], [ 354998.229999996721745, 258365.135800000280142 ], [ 355013.650799997150898, 258362.186200000345707 ], [ 355043.513099998235703, 258359.053199999034405 ], [ 355059.6537000015378, 258357.496500000357628 ], [ 355086.745700001716614, 258354.704700000584126 ], [ 355086.757799997925758, 258354.660799998790026 ], [ 355068.626800000667572, 258022.385200001299381 ], [ 355044.745200000703335, 258025.113200001418591 ], [ 354988.081399999558926, 258028.907800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022100", "MAP": "A3-12-T33", "PARCEL_NAM": "47", "ACRE": null, "LONGITUDE": -64.96494309000001, "LATITUDE": 18.35322912, "OBJECTID_1": 3273, "PARCEL_NO_": "102703022100", "Tax_Legal_": "LINDBERG BAY 47 SOUTHSIDE QTR", "Name": "DEWINDT, HENDRICKS", "Address": "PO Box 8253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 237600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 816.63574748099995, "SHAPE_Area": 23927.993695000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355151.942900002002716, 258004.983800001442432 ], [ 355169.058200001716614, 258346.186000000685453 ], [ 355169.416500002145767, 258346.151399999856949 ], [ 355185.568000003695488, 258343.328299999237061 ], [ 355204.960799999535084, 258338.631900001317263 ], [ 355232.443800002336502, 258330.835299998521805 ], [ 355232.027699999511242, 258285.024599999189377 ], [ 355234.54730000346899, 258273.223999999463558 ], [ 355231.899300001561642, 258205.441199999302626 ], [ 355231.215199999511242, 258191.081300001591444 ], [ 355232.064699999988079, 258186.021999999880791 ], [ 355229.978399999439716, 258146.952599998563528 ], [ 355227.348399996757507, 258077.059099998325109 ], [ 355226.124200001358986, 258031.452899999916553 ], [ 355224.811800003051758, 257996.189500000327826 ], [ 355210.325199998915195, 257992.904599998146296 ], [ 355193.367399998009205, 257995.721099998801947 ], [ 355173.985399998724461, 257999.151000000536442 ], [ 355158.62950000166893, 258003.24720000103116 ], [ 355151.942900002002716, 258004.983800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021500", "MAP": "F9-1037-T62", "PARCEL_NAM": "48-2", "ACRE": ".270", "LONGITUDE": -64.96582608, "LATITUDE": 18.35317158, "OBJECTID_1": 3267, "PARCEL_NO_": "102703021500", "Tax_Legal_": "LINDBERG BAY 48-2 SOUTHSIDE QTR", "Name": "O'CONNOR, EASTLYN E", "Address": "PO Box 10903", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.10355802399999, "SHAPE_Area": 1270.49552969 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355127.89299999922514, 258168.723799999803305 ], [ 355126.651100002229214, 258143.819299999624491 ], [ 355075.447400003671646, 258147.380899999290705 ], [ 355076.789499998092651, 258171.978000000119209 ], [ 355127.89299999922514, 258168.723799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022000", "MAP": "D9-5098-T91", "PARCEL_NAM": "48A-2", "ACRE": ".04", "LONGITUDE": -64.96547904000001, "LATITUDE": 18.3520443, "OBJECTID_1": 3272, "PARCEL_NO_": "102703022000", "Tax_Legal_": "LINDBERG BAY 48A-1& 48A-2 S S QTR", "Name": "CANTON, DAVID", "Address": "PO Box 6303", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22600, "Improved_V": 195400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.037105385700002, "SHAPE_Area": 144.640195608 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355125.172200001776218, 258034.877300001680851 ], [ 355125.432499997317791, 258039.791499998420477 ], [ 355153.31870000064373, 258032.411499999463558 ], [ 355153.052000001072884, 258027.094200000166893 ], [ 355125.172200001776218, 258034.877300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703022000", "MAP": "F9-3021-T72 / D9-5098-T91", "PARCEL_NAM": "48A-1", "ACRE": ".23", "LONGITUDE": -64.96548903, "LATITUDE": 18.35192076, "OBJECTID_1": 3272, "PARCEL_NO_": "102703022000", "Tax_Legal_": "LINDBERG BAY 48A-1& 48A-2 S S QTR", "Name": "CANTON, DAVID", "Address": "PO Box 6303", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22600, "Improved_V": 195400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.65912599399999, "SHAPE_Area": 633.38515429699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355123.972300000488758, 258012.227299999445677 ], [ 355125.172200001776218, 258034.877300001680851 ], [ 355153.052000001072884, 258027.094200000166893 ], [ 355151.942900002002716, 258004.983800001442432 ], [ 355127.111400000751019, 258011.43299999833107 ], [ 355123.972300000488758, 258012.227299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021800", "MAP": "F9-1028-T62", "PARCEL_NAM": "48C", "ACRE": "1.01", "LONGITUDE": -64.96585509000001, "LATITUDE": 18.35237129, "OBJECTID_1": 3270, "PARCEL_NO_": "102703021800", "Tax_Legal_": "LINDBERG BAY 48C SOUTHSIDE QTR", "Name": "DOBBY MANAGEMENT LLC", "Address": "PO Box 1137", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 246700, "Improved_V": 455500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 319.57660468, "SHAPE_Area": 5751.5269473500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355125.172200001776218, 258034.877300001680851 ], [ 355123.972300000488758, 258012.227299999445677 ], [ 355121.671899996697903, 258012.809399999678135 ], [ 355117.413999997079372, 258013.886799998581409 ], [ 355116.612099997699261, 258014.045899998396635 ], [ 355082.681500002741814, 258020.779699999839067 ], [ 355068.626800000667572, 258022.385200001299381 ], [ 355074.110600002110004, 258122.882699999958277 ], [ 355129.6300999969244, 258119.033399999141693 ], [ 355125.432499997317791, 258039.791499998420477 ], [ 355125.172200001776218, 258034.877300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021700", "MAP": "F9-1038-T62", "PARCEL_NAM": "48-1", "ACRE": ".329", "LONGITUDE": -64.96584062, "LATITUDE": 18.35294925, "OBJECTID_1": 3269, "PARCEL_NO_": "102703021700", "Tax_Legal_": "LINDBERG BAY 48 1 4A SOUTHSIDE QUARTER", "Name": "CREQUE-QUAIN, CHERISE L. & GWENEVERE L. ROJAS", "Address": "6463 Austin St", "City": "Rego Park", "State": "New York", "Zip": 11374, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.82949583199999, "SHAPE_Area": 1260.2757261199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355126.651100002229214, 258143.819299999624491 ], [ 355125.429700002074242, 258119.324599999934435 ], [ 355074.110600002110004, 258122.882699999958277 ], [ 355075.447400003671646, 258147.380899999290705 ], [ 355126.651100002229214, 258143.819299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021200", "MAP": "F9-1266-T63", "PARCEL_NAM": "18-3A", "ACRE": ".12", "LONGITUDE": -64.96569157, "LATITUDE": 18.35338616, "OBJECTID_1": 3264, "PARCEL_NO_": "102703021200", "Tax_Legal_": "LINDBERG BAY 48-3 4A SOUTHSIDE QTR", "Name": "GRANT, R. & JANICE R. CHARLES", "Address": "PO Box 8462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.151205608, "SHAPE_Area": 626.54204600900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355102.524700000882149, 258170.339200001209974 ], [ 355103.678199999034405, 258195.09569999948144 ], [ 355129.110200002789497, 258193.134100001305342 ], [ 355127.89299999922514, 258168.723799999803305 ], [ 355102.524700000882149, 258170.339200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021000", "MAP": "F9-1035-T62", "PARCEL_NAM": "48-4", "ACRE": ".25", "LONGITUDE": -64.96580028, "LATITUDE": 18.35361725, "OBJECTID_1": 3262, "PARCEL_NO_": "102703021000", "Tax_Legal_": "LINDBERG BAY 48 4 SOUTHSIDE QTR", "Name": "LLOYD, RICHARD A", "Address": "45 FIRST AVE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.37933496700001, "SHAPE_Area": 1241.24195725 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355129.555399999022484, 258217.675500001758337 ], [ 355129.110200002789497, 258193.134100001305342 ], [ 355078.310000002384186, 258197.052299998700619 ], [ 355078.157799996435642, 258197.05290000140667 ], [ 355079.49379999935627, 258221.536800000816584 ], [ 355129.555399999022484, 258217.675500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021200", "MAP": "F9-1266-T63", "PARCEL_NAM": "48-3", "ACRE": ".12", "LONGITUDE": -64.96593284, "LATITUDE": 18.35340403, "OBJECTID_1": 3264, "PARCEL_NO_": "102703021200", "Tax_Legal_": "LINDBERG BAY 48-3 4A SOUTHSIDE QTR", "Name": "GRANT, R. & JANICE R. CHARLES", "Address": "PO Box 8462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.27863344399999, "SHAPE_Area": 640.94296149000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355103.678199999034405, 258195.09569999948144 ], [ 355102.524700000882149, 258170.339200001209974 ], [ 355076.789499998092651, 258171.978000000119209 ], [ 355078.157799996435642, 258197.05290000140667 ], [ 355078.310000002384186, 258197.052299998700619 ], [ 355103.678199999034405, 258195.09569999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703020800", "MAP": "F9-1034-T62", "PARCEL_NAM": "48-5", "ACRE": ".246", "LONGITUDE": -64.96579412, "LATITUDE": 18.35383698, "OBJECTID_1": 3260, "PARCEL_NO_": "102703020800", "Tax_Legal_": "LINDBERG BAY 48-5 SOUTHSIDE QTR", "Name": "HAMDAN, FAUD & YESRA", "Address": "5333 Raadets Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026902, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.75096461199999, "SHAPE_Area": 1187.16786873 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355080.826899997889996, 258245.9679000005126 ], [ 355128.646700002253056, 258241.723799999803305 ], [ 355129.555399999022484, 258217.675500001758337 ], [ 355079.49379999935627, 258221.536800000816584 ], [ 355080.826899997889996, 258245.9679000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703023500", "MAP": "F9-2033-T67", "PARCEL_NAM": "48-6", "ACRE": ".44", "LONGITUDE": -64.96580585, "LATITUDE": 18.35419697, "OBJECTID_1": 3286, "PARCEL_NO_": "102703023500", "Tax_Legal_": "48-6 LINDBERG BAY SOUTHSIDE QTR", "Name": "Hamdan (Life Estate), Yusra", "Address": "33 Raadets Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42500, "Improved_V": 269800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.854108637, "SHAPE_Area": 2327.23467944 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355083.870399996638298, 258301.744800001382828 ], [ 355122.720499999821186, 258299.777699999511242 ], [ 355121.725900001823902, 258265.439300000667572 ], [ 355122.475000001490116, 258261.317400000989437 ], [ 355124.528800003230572, 258255.213199999183416 ], [ 355128.646700002253056, 258241.723799999803305 ], [ 355080.826899997889996, 258245.9679000005126 ], [ 355083.870399996638298, 258301.744800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021900", "MAP": "G9-534-T60", "PARCEL_NAM": "48A", "ACRE": null, "LONGITUDE": -64.96545366, "LATITUDE": 18.35246528, "OBJECTID_1": 3271, "PARCEL_NO_": "102703021900", "Tax_Legal_": "LINDBERG BAY 48A SOUTHSIDE QTR", "Name": "CHINNERY, WALTER", "Address": "P.O. BOX 1981, V.D.S", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.55287793400001, "SHAPE_Area": 2481.6844102199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355129.994199998676777, 258126.250999998301268 ], [ 355157.828400000929832, 258122.314100001007318 ], [ 355153.31870000064373, 258032.411499999463558 ], [ 355125.432499997317791, 258039.791499998420477 ], [ 355129.6300999969244, 258119.033399999141693 ], [ 355129.994199998676777, 258126.250999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703020100", "MAP": "F9-2033-T67", "PARCEL_NAM": "48-7", "ACRE": ".44", "LONGITUDE": -64.96579125, "LATITUDE": 18.3546944, "OBJECTID_1": 3256, "PARCEL_NO_": "102703020100", "Tax_Legal_": "LINDBERG BAY 48-7 4A SOUTHSIDE QTR", "Name": "ACKLEY, GORDON P. & JENNIFER S. (CO-TRUSTEES)", "Address": "PO Box 305751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55100, "Improved_V": 603900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.94130691000001, "SHAPE_Area": 1971.6127434499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355122.720499999821186, 258299.777699999511242 ], [ 355083.870399996638298, 258301.744800001382828 ], [ 355086.757799997925758, 258354.660799998790026 ], [ 355086.745700001716614, 258354.704700000584126 ], [ 355123.397799998521805, 258350.927600000053644 ], [ 355122.847599998116493, 258304.16499999910593 ], [ 355122.720499999821186, 258299.777699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003013600", "MAP": "D9-1520-T79", "PARCEL_NAM": "11A", "ACRE": "1.15", "LONGITUDE": -64.91202508000001, "LATITUDE": 18.35290319, "OBJECTID_1": 5636, "PARCEL_NO_": "103003013600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 11A GT. NORTHSIDE", "Name": "ABDEL-SAMAD, AYMAN & MOAMAR", "Address": "PO Box 304157", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 109300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.047115115, "SHAPE_Area": 4388.72442391 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360736.096400000154972, 258143.623700000345707 ], [ 360796.994400002062321, 258224.534000001847744 ], [ 360836.106299996376038, 258199.186999998986721 ], [ 360786.799099996685982, 258131.215399999171495 ], [ 360762.559399999678135, 258136.927600000053644 ], [ 360736.096400000154972, 258143.623700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703020300", "MAP": null, "PARCEL_NAM": "48B", "ACRE": ".20", "LONGITUDE": -64.96537695000001, "LATITUDE": 18.35478835, "OBJECTID_1": 3257, "PARCEL_NO_": "102703020300", "Tax_Legal_": "PAR 48-B ESTATE LINDBERGH BAY SOUTHSIDE QTR", "Name": "RUSSELL, MARVO V", "Address": "PO Box 6872", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18900, "Improved_V": 184400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.492046219, "SHAPE_Area": 945.19390613500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355167.856100000441074, 258322.220499999821186 ], [ 355126.050399996340275, 258330.269900001585484 ], [ 355125.782499998807907, 258350.68189999833703 ], [ 355129.869499996304512, 258350.26069999858737 ], [ 355157.311099998652935, 258347.318900000303984 ], [ 355169.058200001716614, 258346.186000000685453 ], [ 355167.856100000441074, 258322.220499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703020400", "MAP": "F9-718-T61", "PARCEL_NAM": "48B-1", "ACRE": ".23", "LONGITUDE": -64.96538952, "LATITUDE": 18.35458759, "OBJECTID_1": 3258, "PARCEL_NO_": "102703020400", "Tax_Legal_": "LINDBERG BAY 48B-1 No.4A SOUTHSIDE QUARTER", "Name": "LEWIS, CHARLES W & M A", "Address": "4003 WEYMOUTH RHYMER HIGHWAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.04394348700001, "SHAPE_Area": 931.62034657900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355166.740299999713898, 258299.976799998432398 ], [ 355125.919100001454353, 258307.599500000476837 ], [ 355126.11429999768734, 258325.399900000542402 ], [ 355126.050399996340275, 258330.269900001585484 ], [ 355167.856100000441074, 258322.220499999821186 ], [ 355166.740299999713898, 258299.976799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703020900", "MAP": "F9-715-T61", "PARCEL_NAM": "48B-4", "ACRE": ".23", "LONGITUDE": -64.96538693, "LATITUDE": 18.35388873, "OBJECTID_1": 3261, "PARCEL_NO_": "102703020900", "Tax_Legal_": "LINDBERG BAY 48B-4 SOUTHSIDE QTR", "Name": "FRANCOIS, DENISE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17500, "Improved_V": 141200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.40860350600001, "SHAPE_Area": 926.24226361800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355162.745399996638298, 258220.337400000542402 ], [ 355133.530599996447563, 258224.400400001555681 ], [ 355133.55179999768734, 258237.208299998193979 ], [ 355132.8108000010252, 258240.333799999207258 ], [ 355131.204800002276897, 258244.164099998772144 ], [ 355127.551899999380112, 258253.244699999690056 ], [ 355127.143799997866154, 258254.813799999654293 ], [ 355164.1908999979496, 258249.154399998486042 ], [ 355162.745399996638298, 258220.337400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021100", "MAP": "F9-714-T61", "PARCEL_NAM": "48B-5", "ACRE": ".23", "LONGITUDE": -64.96538572, "LATITUDE": 18.35363906, "OBJECTID_1": 3263, "PARCEL_NO_": "102703021100", "Tax_Legal_": "LINDBERG BAY 48B-5 SOUTHSIDE QTR", "Name": "FRANCOIS, DENISE & PLASKET, LEON A", "Address": "PO Box 600118", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.347861833, "SHAPE_Area": 710.31244884499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355161.4949000030756, 258195.407900001853704 ], [ 355133.489900000393391, 258199.867199998348951 ], [ 355133.530599996447563, 258224.400400001555681 ], [ 355162.745399996638298, 258220.337400000542402 ], [ 355161.4949000030756, 258195.407900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021300", "MAP": "F9-713-T61", "PARCEL_NAM": "48B-6", "ACRE": ".23", "LONGITUDE": -64.96539588, "LATITUDE": 18.35341686, "OBJECTID_1": 3265, "PARCEL_NO_": "102703021300", "Tax_Legal_": "LINDBERG BAY 48B 6 4A SOUTHSIDE QTR", "Name": "GLASFORD, LYNETTE", "Address": "PO Box 306694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.08069556700001, "SHAPE_Area": 679.287425375 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355160.283399999141693, 258171.256999999284744 ], [ 355132.591399997472763, 258175.339400000870228 ], [ 355133.478200003504753, 258192.797200001776218 ], [ 355133.489900000393391, 258199.867199998348951 ], [ 355161.4949000030756, 258195.407900001853704 ], [ 355160.283399999141693, 258171.256999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021400", "MAP": "F9-712-T61", "PARCEL_NAM": "48B-7", "ACRE": ".23", "LONGITUDE": -64.96540902, "LATITUDE": 18.35319607, "OBJECTID_1": 3266, "PARCEL_NO_": "102703021400", "Tax_Legal_": "LINDBERG BAY 48B 7 4A SOUTHSIDE QTR", "Name": "ESANNASON, MARION LYNCH", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.17786327, "SHAPE_Area": 685.04496468900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355159.05349999666214, 258146.738299999386072 ], [ 355131.268500000238419, 258150.82149999961257 ], [ 355132.241300001740456, 258168.446899998933077 ], [ 355132.591399997472763, 258175.339400000870228 ], [ 355160.283399999141693, 258171.256999999284744 ], [ 355159.05349999666214, 258146.738299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703021600", "MAP": "F9-711-T61", "PARCEL_NAM": "48B-8", "ACRE": ".24", "LONGITUDE": -64.96542306000001, "LATITUDE": 18.35297482, "OBJECTID_1": 3268, "PARCEL_NO_": "102703021600", "Tax_Legal_": "LINDBERG BAY 48B 8 4A SOUTHSIDE QTR", "Name": "LIBURD, A BERNARD", "Address": "PO Box 8014", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.25315137600001, "SHAPE_Area": 686.57187007000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355157.828400000929832, 258122.314100001007318 ], [ 355129.994199998676777, 258126.250999998301268 ], [ 355130.865800000727177, 258143.526099998503923 ], [ 355131.268500000238419, 258150.82149999961257 ], [ 355159.05349999666214, 258146.738299999386072 ], [ 355157.828400000929832, 258122.314100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201012900", "MAP": "D9-1691-T81", "PARCEL_NAM": "33A", "ACRE": null, "LONGITUDE": -64.96545346000001, "LATITUDE": 18.34583717, "OBJECTID_1": 7462, "PARCEL_NO_": "105201012900", "Tax_Legal_": "LINDBERG BAY 33A S S QTR.", "Name": "RABSATT, ELMO L., JR., KEVIN A. & JUDITH C.", "Address": "580 Marcy Ave", "City": "Brooklyn", "State": "New York", "Zip": 11206, "Country": "United States", "Land_Value": 47500, "Improved_V": 78000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.51546014100001, "SHAPE_Area": 2205.88703416 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355125.657300002872944, 257330.222199998795986 ], [ 355120.8175999969244, 257330.393699999898672 ], [ 355116.784299999475479, 257330.571800000965595 ], [ 355118.062399998307228, 257369.845600001513958 ], [ 355138.254399999976158, 257366.000100001692772 ], [ 355143.099500000476837, 257365.19539999961853 ], [ 355147.138199999928474, 257364.384100001305342 ], [ 355179.442900002002716, 257358.526799999177456 ], [ 355178.77139999717474, 257342.6891999989748 ], [ 355186.145099997520447, 257329.028499998152256 ], [ 355157.927799999713898, 257328.375399999320507 ], [ 355125.657300002872944, 257330.222199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010600", "MAP": "C3-95-T59", "PARCEL_NAM": "32", "ACRE": null, "LONGITUDE": -64.96471065, "LATITUDE": 18.34821681, "OBJECTID_1": 7439, "PARCEL_NO_": "105201010600", "Tax_Legal_": "LINDBERG BAY 32 4A SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 270900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.53895562299999, "SHAPE_Area": 1336.07765675 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355202.097300000488758, 257633.556000001728535 ], [ 355255.706299997866154, 257610.806800000369549 ], [ 355253.125200003385544, 257606.953600000590086 ], [ 355246.390600003302097, 257593.940900001674891 ], [ 355201.106899999082088, 257599.138399999588728 ], [ 355202.097300000488758, 257633.556000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010600", "MAP": "C3-95-T59", "PARCEL_NAM": "32", "ACRE": null, "LONGITUDE": -64.96465495, "LATITUDE": 18.34671568, "OBJECTID_1": 7439, "PARCEL_NO_": "105201010600", "Tax_Legal_": "LINDBERG BAY 32 4A SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 270900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 594.94310897499997, "SHAPE_Area": 10862.643229200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355268.499899998307228, 257390.459399998188019 ], [ 355242.579700000584126, 257382.550400000065565 ], [ 355264.406000003218651, 257323.969500001519918 ], [ 355241.807700000703335, 257326.317699998617172 ], [ 355234.351300001144409, 257349.688000001013279 ], [ 355229.365900002419949, 257366.956900000572205 ], [ 355223.56530000269413, 257385.274599999189377 ], [ 355195.317400000989437, 257388.209800001233816 ], [ 355195.875600002706051, 257417.345300000160933 ], [ 355199.742399998009205, 257551.719399999827147 ], [ 355210.00959999859333, 257555.405299998819828 ], [ 355225.243500001728535, 257515.039099998772144 ], [ 355226.133900001645088, 257515.307900000363588 ], [ 355249.16499999910593, 257522.259199999272823 ], [ 355254.902699999511242, 257517.85190000012517 ], [ 355258.064800001680851, 257500.391800001263618 ], [ 355266.372500002384186, 257471.7511 ], [ 355268.838200002908707, 257466.282800000160933 ], [ 355272.097599998116493, 257462.298700001090765 ], [ 355266.777099996805191, 257424.258400000631809 ], [ 355266.003200002014637, 257420.452300000935793 ], [ 355263.5608000010252, 257423.176600001752377 ], [ 355259.558100000023842, 257419.76630000025034 ], [ 355263.618400000035763, 257416.421999998390675 ], [ 355265.25620000064373, 257413.480099998414516 ], [ 355265.27419999986887, 257411.369300000369549 ], [ 355266.894000001251698, 257410.538199998438358 ], [ 355266.937100000679493, 257405.472300000488758 ], [ 355268.499899998307228, 257390.459399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703047500", "MAP": "D9-5941-T95", "PARCEL_NAM": "36K", "ACRE": null, "LONGITUDE": -64.96453223, "LATITUDE": 18.3484121, "OBJECTID_1": 3436, "PARCEL_NO_": "102703047500", "Tax_Legal_": "LINDBERG BAY 36-K 1 S,SIDE QTR.", "Name": "BACHELOR, JOYCELYN & JAMES", "Address": "PO Box 303925", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34600, "Improved_V": 129200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.45982625299999, "SHAPE_Area": 1251.56874576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355213.389300003647804, 257633.226199999451637 ], [ 355217.411899998784065, 257634.314599998295307 ], [ 355241.469999998807907, 257649.921300001442432 ], [ 355247.099799998104572, 257651.656199999153614 ], [ 355255.175499998033047, 257650.244600001722574 ], [ 355259.230400003492832, 257647.533599998801947 ], [ 355263.317699998617172, 257641.02309999987483 ], [ 355261.852600000798702, 257623.701499998569489 ], [ 355260.25789999961853, 257621.577500000596046 ], [ 355260.274099998176098, 257619.677799999713898 ], [ 355257.88570000231266, 257616.069600000977516 ], [ 355257.10639999806881, 257612.896800000220537 ], [ 355255.706299997866154, 257610.806800000369549 ], [ 355202.097300000488758, 257633.556000001728535 ], [ 355207.755900003015995, 257631.913499999791384 ], [ 355213.389300003647804, 257633.226199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201060500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96583425, "LATITUDE": 18.34334074, "OBJECTID_1": 7727, "PARCEL_NO_": "105201060500", "Tax_Legal_": "LINDBERG BAY 25C SOUTHSIDE QTR", "Name": "FLAX, OTTLEY & MYRTLE", "Address": "BOX 2361", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6500, "Improved_V": 88100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.070167908599998, "SHAPE_Area": 305.95392103799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355095.63459999859333, 257068.220499999821186 ], [ 355095.568000003695488, 257076.0304000005126 ], [ 355121.379000000655651, 257075.186200000345707 ], [ 355121.396999999880791, 257073.075399998575449 ], [ 355123.855499997735023, 257068.451400000602007 ], [ 355126.314000003039837, 257063.827500000596046 ], [ 355095.538099996745586, 257065.177000001072884 ], [ 355095.63459999859333, 257068.220499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703020600", "MAP": "D9-8107-T008", "PARCEL_NAM": "48B-2 & 48B-3", "ACRE": ".23", "LONGITUDE": -64.96540361, "LATITUDE": 18.35425482, "OBJECTID_1": 3259, "PARCEL_NO_": "102703020600", "Tax_Legal_": "48B-2 & 48B-3(COMBINED)ESTATE LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "ALLIE & BEVERLY PETRUS TRUST CO INC", "Address": "PO Box 502626", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 53300, "Improved_V": 636400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.98290165399999, "SHAPE_Area": 2071.9237579300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355125.460600003600121, 258280.808600001037121 ], [ 355125.4679000005126, 258280.984400000423193 ], [ 355125.783399999141693, 258295.221000000834465 ], [ 355125.919100001454353, 258307.599500000476837 ], [ 355166.740299999713898, 258299.976799998432398 ], [ 355165.47860000282526, 258274.825500000268221 ], [ 355164.1908999979496, 258249.154399998486042 ], [ 355127.143799997866154, 258254.813799999654293 ], [ 355125.335500001907349, 258261.767400000244379 ], [ 355124.73650000244379, 258265.036400001496077 ], [ 355124.988600000739098, 258269.308699999004602 ], [ 355125.460600003600121, 258280.808600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105201045000", "MAP": "D9-188-T58", "PARCEL_NAM": "13", "ACRE": null, "LONGITUDE": -64.96306678000001, "LATITUDE": 18.34034889, "OBJECTID_1": 7628, "PARCEL_NO_": "105201045000", "Tax_Legal_": "LINDBERG BAY 13 SOUTHSIDE QTR", "Name": "HENDERSON, , I & JACKSON, J. & BERG. E, & OTHERS", "Address": "P O BOX 4547", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 724600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 662.45982052600004, "SHAPE_Area": 2798.0102526599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355418.929499998688698, 256791.167500000447035 ], [ 355432.642200000584126, 256790.646499998867512 ], [ 355431.250100001692772, 256670.100600000470877 ], [ 355426.410400003194809, 256670.272100001573563 ], [ 355423.628200002014637, 256712.890299998223782 ], [ 355421.810599997639656, 256736.940000001341105 ], [ 355420.181800000369549, 256738.82660000026226 ], [ 355418.565600000321865, 256739.235500000417233 ], [ 355400.047399997711182, 256735.917599998414516 ], [ 355402.204300001263618, 256730.352800000458956 ], [ 355404.309799998998642, 256724.104800000786781 ], [ 355404.607900001108646, 256721.11089999973774 ], [ 355405.082999996840954, 256712.738499999046326 ], [ 355405.1908999979496, 256700.073699999600649 ], [ 355391.483599998056889, 256699.961599998176098 ], [ 355392.534500002861023, 256671.261399999260902 ], [ 355388.50110000371933, 256671.439500000327826 ], [ 355387.302799999713898, 256717.448100000619888 ], [ 355387.040299996733665, 256748.265599999576807 ], [ 355369.303199999034405, 256747.909400001168251 ], [ 355371.335500001907349, 256793.311099998652935 ], [ 355418.929499998688698, 256791.167500000447035 ] ], [ [ 355420.134999997913837, 256744.314599998295307 ], [ 355424.762500002980232, 256769.050400000065565 ], [ 355416.544799998402596, 256787.137200001627207 ], [ 355373.007500000298023, 256786.35869999974966 ], [ 355396.773599997162819, 256741.590300001204014 ], [ 355415.300800003111362, 256743.852899998426437 ], [ 355420.134999997913837, 256744.314599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104017700", "MAP": "D9-7118-T002", "PARCEL_NAM": "2G-3", "ACRE": null, "LONGITUDE": -64.95542163, "LATITUDE": 18.36842302, "OBJECTID_1": 560, "PARCEL_NO_": "101104017700", "Tax_Legal_": "2G-2,2G-3 HULL NO.4B LITTLE NORTHSIDE QTR", "Name": "SHELL COLLECTORS TRUST", "Address": "8217 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154500, "Improved_V": 119200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.194275854, "SHAPE_Area": 449.98344797499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356174.749300003051758, 259852.156599998474121 ], [ 356178.524400003254414, 259877.434799998998642 ], [ 356211.243299998342991, 259831.457800000905991 ], [ 356195.269799999892712, 259842.757100000977516 ], [ 356182.309399999678135, 259849.617199998348951 ], [ 356174.749300003051758, 259852.156599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104017500", "MAP": "D9-7119-T002", "PARCEL_NAM": "2F-1", "ACRE": ".345", "LONGITUDE": -64.95577876, "LATITUDE": 18.36851831, "OBJECTID_1": 558, "PARCEL_NO_": "101104017500", "Tax_Legal_": "2F-1 ESTATE HULL 4B LITTLE NORTHSIDE QTR", "Name": "JOSEPH I ALSINA REVOCABLE TRUST & JULIA ALSINA", "Address": "PO BOX 5135", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69800, "Improved_V": 997700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.059659517, "SHAPE_Area": 1368.30806082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356178.524400003254414, 259877.434799998998642 ], [ 356174.749300003051758, 259852.156599998474121 ], [ 356116.953199997544289, 259854.359600000083447 ], [ 356117.203100003302097, 259870.322799999266863 ], [ 356175.413199998438358, 259881.806600000709295 ], [ 356178.524400003254414, 259877.434799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104017400", "MAP": "D9-7119-T002", "PARCEL_NAM": "2F-2", "ACRE": ".38", "LONGITUDE": -64.95589687, "LATITUDE": 18.36890991, "OBJECTID_1": 557, "PARCEL_NO_": "101104017400", "Tax_Legal_": "2F-2 ESTATE HULL 4B LITTLE NORTHSIDE QTR", "Name": "KEVIN JOHN", "Address": "7686 Hull Bay 2G", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 108300, "Improved_V": 218800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.76476367699999, "SHAPE_Area": 1683.4255284599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356152.182300001382828, 259901.158399999141693 ], [ 356131.818099997937679, 259879.299899999052286 ], [ 356117.293600000441074, 259876.105599999427795 ], [ 356117.997500002384186, 259921.073699999600649 ], [ 356125.248999997973442, 259921.76630000025034 ], [ 356135.698700003325939, 259925.651500001549721 ], [ 356144.51240000128746, 259932.267599999904633 ], [ 356145.288099996745586, 259935.862500000745058 ], [ 356148.482799999415874, 259939.477299999445677 ], [ 356148.725500002503395, 259939.560300000011921 ], [ 356157.326999999582767, 259942.504900000989437 ], [ 356158.492799997329712, 259942.864100001752377 ], [ 356157.049099996685982, 259906.902499999850988 ], [ 356152.944899998605251, 259902.163699999451637 ], [ 356152.182300001382828, 259901.158399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104017600", "MAP": "D9-7119-T002", "PARCEL_NAM": "2F-3", "ACRE": ".31", "LONGITUDE": -64.95556355, "LATITUDE": 18.36909593, "OBJECTID_1": 559, "PARCEL_NO_": "101104017600", "Tax_Legal_": "2F-3 ESTATE HULL 4B LITTLE NORTH QTR", "Name": "LAPLACE, SANDRA", "Address": "2G ESTATE HULL BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61800, "Improved_V": 45900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.363018157, "SHAPE_Area": 972.38340460100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356157.049099996685982, 259906.902499999850988 ], [ 356158.492799997329712, 259942.864100001752377 ], [ 356168.586599998176098, 259945.974599998444319 ], [ 356176.86540000140667, 259946.662000000476837 ], [ 356189.01349999755621, 259947.670699998736382 ], [ 356183.834899999201298, 259912.99439999833703 ], [ 356177.868199996650219, 259912.99439999833703 ], [ 356176.10700000077486, 259912.791200000792742 ], [ 356169.343999996781349, 259912.010800000280142 ], [ 356161.45160000026226, 259910.405999999493361 ], [ 356157.798600003123283, 259907.767900001257658 ], [ 356157.049099996685982, 259906.902499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104017300", "MAP": "D9-7118-T002", "PARCEL_NAM": "2G-1", "ACRE": null, "LONGITUDE": -64.95522428, "LATITUDE": 18.36912632, "OBJECTID_1": 556, "PARCEL_NO_": "101104017300", "Tax_Legal_": "2G-1 ESTATE HULL 4B LITTLE NORTHSIDE QTR.", "Name": "BRYAN, ANGELA", "Address": "20 Estate Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 100900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.65831574200001, "SHAPE_Area": 2019.9397535099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356183.440999999642372, 259910.356600001454353 ], [ 356189.01349999755621, 259947.670699998736382 ], [ 356196.789599999785423, 259948.316399998962879 ], [ 356202.395999997854233, 259952.795200001448393 ], [ 356206.380800001323223, 259958.316300000995398 ], [ 356208.747599996626377, 259964.457299999892712 ], [ 356209.507200002670288, 259969.951999999582767 ], [ 356217.615299999713898, 259964.74100000038743 ], [ 356228.120700001716614, 259962.082800000905991 ], [ 356223.289300002157688, 259903.222699999809265 ], [ 356183.440999999642372, 259910.356600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104017700", "MAP": "D9-7118-T002", "PARCEL_NAM": "2G-2", "ACRE": null, "LONGITUDE": -64.95526566, "LATITUDE": 18.3686488, "OBJECTID_1": 560, "PARCEL_NO_": "101104017700", "Tax_Legal_": "2G-2,2G-3 HULL NO.4B LITTLE NORTHSIDE QTR", "Name": "SHELL COLLECTORS TRUST", "Address": "8217 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154500, "Improved_V": 119200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.11425617800001, "SHAPE_Area": 2014.7575800100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356217.366800002753735, 259831.071400001645088 ], [ 356179.999300003051758, 259885.782499998807907 ], [ 356179.785400003194809, 259885.878299999982119 ], [ 356183.440999999642372, 259910.356600001454353 ], [ 356223.289300002157688, 259903.222699999809265 ], [ 356217.366800002753735, 259831.071400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804011500", "MAP": "D9-1366-T77", "PARCEL_NAM": "10A", "ACRE": ".398", "LONGITUDE": -64.93383954, "LATITUDE": 18.35443953, "OBJECTID_1": 4430, "PARCEL_NO_": "102804011500", "Tax_Legal_": "10A ESTATE MISGUNST No.6 GREAT NORTHSIDE QTR.", "Name": "JOWERS, JOHN M. & DOLORES V. G", "Address": "PO Box 103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 63300, "Improved_V": 34300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.48661288900001, "SHAPE_Area": 1762.56510153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358458.645700000226498, 258310.147300001233816 ], [ 358465.211999997496605, 258356.028900001198053 ], [ 358486.826999999582767, 258345.01630000025034 ], [ 358495.221600003540516, 258341.460799999535084 ], [ 358505.360500000417233, 258337.166499998420477 ], [ 358497.791900001466274, 258298.891499999910593 ], [ 358479.829899996519089, 258303.797800000756979 ], [ 358458.645700000226498, 258310.147300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93775803, "LATITUDE": 18.35461473, "OBJECTID_1": 4462, "PARCEL_NO_": "102804014700", "Tax_Legal_": "7 ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "JEANETTE M QUERRARD FAMILY TRUST", "Address": "PO Box 11034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 407300, "Improved_V": 70800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 657.87024251800005, "SHAPE_Area": 22260.294672299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358012.4679000005126, 258437.546599999070168 ], [ 358020.779100000858307, 258435.771899998188019 ], [ 358049.035999998450279, 258431.781300000846386 ], [ 358066.825199998915195, 258426.016199998557568 ], [ 358082.21169999986887, 258418.331700000911951 ], [ 358141.4087999984622, 258379.341699998825788 ], [ 358110.282700002193451, 258341.512299999594688 ], [ 358173.500500001013279, 258303.821800000965595 ], [ 358171.925599999725819, 258299.375900000333786 ], [ 358152.966099999845028, 258253.202399998903275 ], [ 358146.485100001096725, 258256.737900000065565 ], [ 358054.392800003290176, 258276.249200001358986 ], [ 357989.737499997019768, 258288.180900000035763 ], [ 357982.190399996936321, 258289.573699999600649 ], [ 358002.292099997401237, 258439.719399999827147 ], [ 358012.4679000005126, 258437.546599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804018000", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-2B", "ACRE": ".51", "LONGITUDE": -64.93865492, "LATITUDE": 18.35529384, "OBJECTID_1": 4491, "PARCEL_NO_": "102804018000", "Tax_Legal_": "7D-2B ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "LAPLACE, FRANK R", "Address": "6475 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.982255565, "SHAPE_Area": 2189.3119382099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357946.805699996650219, 258378.652100000530481 ], [ 357961.5658999979496, 258451.378800000995398 ], [ 357965.981100000441074, 258449.861600000411272 ], [ 357973.10419999808073, 258447.414000000804663 ], [ 357994.120399996638298, 258441.464299999177456 ], [ 357996.056199997663498, 258441.050900001078844 ], [ 357987.319899998605251, 258394.688700001686811 ], [ 357946.805699996650219, 258378.652100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804018200", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-2E", "ACRE": ".58", "LONGITUDE": -64.93924068, "LATITUDE": 18.35544018, "OBJECTID_1": 4493, "PARCEL_NO_": "102804018200", "Tax_Legal_": "7D-2E ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "CHEZ PAPRDISE, LLC", "Address": "PO Box 302097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 108800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.20336849700001, "SHAPE_Area": 2620.8658767299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357882.138599999248981, 258403.709199998527765 ], [ 357903.629799999296665, 258474.3733000010252 ], [ 357914.695500001311302, 258469.899599999189377 ], [ 357917.634300000965595, 258468.711399998515844 ], [ 357934.019500002264977, 258462.087000001221895 ], [ 357919.632600001990795, 258391.427999999374151 ], [ 357887.586800001561642, 258401.8114 ], [ 357882.138599999248981, 258403.709199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93858219000001, "LATITUDE": 18.35491203, "OBJECTID_1": 4490, "PARCEL_NO_": "102804017900", "Tax_Legal_": "7D-2A ESTATE LERKENLUND", "Name": "HECHT FAMILY TRUST I", "Address": "PO Box 7613", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 118900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.16664598699998, "SHAPE_Area": 2170.9221215799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357946.805699996650219, 258378.652100000530481 ], [ 357987.319899998605251, 258394.688700001686811 ], [ 357996.056199997663498, 258441.050900001078844 ], [ 358002.292099997401237, 258439.719399999827147 ], [ 357986.373199999332428, 258320.816300000995398 ], [ 357960.204199999570847, 258359.067499998956919 ], [ 357946.805699996650219, 258378.652100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804018100", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-2C", "ACRE": ".52", "LONGITUDE": -64.93892958000001, "LATITUDE": 18.35533762, "OBJECTID_1": 4492, "PARCEL_NO_": "102804018100", "Tax_Legal_": "7D-2C ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "RICHARDSON, CARL A. & REVA A.", "Address": "PO Box 307266", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 121200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.376550353, "SHAPE_Area": 1821.2364626000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357923.255699999630451, 258390.254099998623133 ], [ 357937.556699998676777, 258460.657000001519918 ], [ 357944.512299999594688, 258457.844900000840425 ], [ 357954.503200002014637, 258453.805700000375509 ], [ 357961.5658999979496, 258451.378800000995398 ], [ 357946.805699996650219, 258378.652100000530481 ], [ 357942.885099999606609, 258382.189800001680851 ], [ 357939.236400000751019, 258384.415399998426437 ], [ 357931.040700003504753, 258387.731600001454353 ], [ 357923.255699999630451, 258390.254099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93906002, "LATITUDE": 18.35538706, "OBJECTID_1": 4462, "PARCEL_NO_": "102804014700", "Tax_Legal_": "7 ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "JEANETTE M QUERRARD FAMILY TRUST", "Address": "PO Box 11034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 407300, "Improved_V": 70800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.57334377500001, "SHAPE_Area": 271.18648614699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357919.632600001990795, 258391.427999999374151 ], [ 357934.019500002264977, 258462.087000001221895 ], [ 357937.556699998676777, 258460.657000001519918 ], [ 357923.255699999630451, 258390.254099998623133 ], [ 357919.632600001990795, 258391.427999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804018300", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-2F", "ACRE": ".61", "LONGITUDE": -64.93953025, "LATITUDE": 18.35556001, "OBJECTID_1": 4494, "PARCEL_NO_": "102804018300", "Tax_Legal_": "7D-2F ESTATE LURKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "CARTER, CALVIN & LORIS", "Address": "14614 SW 80th St", "City": "MIAMI", "State": "Florida", "Zip": 33183, "Country": "United States", "Land_Value": 122500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.064100978, "SHAPE_Area": 2258.8431368900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357854.445299997925758, 258413.355900000780821 ], [ 357874.539800003170967, 258486.134100001305342 ], [ 357879.498099997639656, 258484.12950000166893 ], [ 357903.629799999296665, 258474.3733000010252 ], [ 357882.138599999248981, 258403.709199998527765 ], [ 357854.445299997925758, 258413.355900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016300", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-1", "ACRE": ".093", "LONGITUDE": -64.94024947, "LATITUDE": 18.35536789, "OBJECTID_1": 4476, "PARCEL_NO_": "102804016300", "Tax_Legal_": "7D-2D,2L&2REM. LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BLUE RIDGE ESTATES OWNERS ASSOCIATION INC", "Address": "PO Box 7613", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 145200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.017986587, "SHAPE_Area": 230.58260130900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357776.323600001633167, 258428.186099998652935 ], [ 357779.626999996602535, 258429.906199999153614 ], [ 357782.302699998021126, 258429.595899999141693 ], [ 357785.023599997162819, 258429.843600001186132 ], [ 357787.744400002062321, 258430.091299999505281 ], [ 357790.24210000038147, 258429.886199999600649 ], [ 357827.512000001966953, 258417.525299999862909 ], [ 357826.641199998557568, 258413.636999998241663 ], [ 357776.323600001633167, 258428.186099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94059708, "LATITUDE": 18.35514345, "OBJECTID_1": 4457, "PARCEL_NO_": "102804014200", "Tax_Legal_": "LERKENLUND 7D-1 GREAT NORTHSIDE", "Name": "SHAPIRO, LAURA", "Address": "PO Box 305617", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 204300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 420.334075278, "SHAPE_Area": 6596.693734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357826.641199998557568, 258413.636999998241663 ], [ 357808.837700001895428, 258334.145599998533726 ], [ 357807.457599997520447, 258327.98369999974966 ], [ 357786.510799996554852, 258390.580299999564886 ], [ 357761.714699998497963, 258366.945999998599291 ], [ 357759.290399998426437, 258367.559399999678135 ], [ 357701.124399997293949, 258380.17119999974966 ], [ 357723.264200001955032, 258431.64809999987483 ], [ 357727.965800002217293, 258442.168600000441074 ], [ 357826.641199998557568, 258413.636999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017200", "MAP": "D9-3473-T86", "PARCEL_NAM": "7C", "ACRE": ".33", "LONGITUDE": -64.93992072, "LATITUDE": 18.35466033, "OBJECTID_1": 4484, "PARCEL_NO_": "102804017200", "Tax_Legal_": "LERKENLUND 7C & 7D-3 GT. NORTHSIDE", "Name": "HORSFORD, LADONNA", "Address": "PO Box 10823", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74500, "Improved_V": 224300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.994557262, "SHAPE_Area": 2146.4321317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357816.835699997842312, 258369.8564000017941 ], [ 357868.911499999463558, 258359.01069999858737 ], [ 357869.260600000619888, 258358.910500001162291 ], [ 357860.349200002849102, 258320.067200001329184 ], [ 357853.216399997472763, 258322.098700001835823 ], [ 357832.214500002563, 258326.3597999997437 ], [ 357816.075699999928474, 258327.705299999564886 ], [ 357811.234200000762939, 258328.087900001555681 ], [ 357807.457599997520447, 258327.98369999974966 ], [ 357808.837700001895428, 258334.145599998533726 ], [ 357816.835699997842312, 258369.8564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804018400", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-2G", "ACRE": ".61", "LONGITUDE": -64.9397951, "LATITUDE": 18.35566203, "OBJECTID_1": 4495, "PARCEL_NO_": "102804018400", "Tax_Legal_": "7D-2G ESTATE LURKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "KAPPEL, BRADLEY & TIARRA", "Address": "7 Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.73954817000001, "SHAPE_Area": 2266.2249407099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357834.503600001335144, 258420.302400000393391 ], [ 357828.456200003623962, 258428.030099999159575 ], [ 357845.426100000739098, 258497.904500000178814 ], [ 357848.964800000190735, 258496.473799999803305 ], [ 357863.822999998927116, 258490.46680000051856 ], [ 357874.539800003170967, 258486.134100001305342 ], [ 357854.445299997925758, 258413.355900000780821 ], [ 357841.109499998390675, 258418.001299999654293 ], [ 357834.503600001335144, 258420.302400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804018500", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-2H", "ACRE": ".59", "LONGITUDE": -64.94006642, "LATITUDE": 18.35574775, "OBJECTID_1": 4496, "PARCEL_NO_": "102804018500", "Tax_Legal_": "7D-2H ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "JOSE ANDRADE TRUST", "Address": "5412 Curry Ford Rd", "City": "Orlando", "State": "Florida", "Zip": 32812, "Country": "United States", "Land_Value": 130400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.34426045399999, "SHAPE_Area": 2402.8945948099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357804.32150000333786, 258429.648699998855591 ], [ 357799.030100002884865, 258437.400499999523163 ], [ 357816.559299997985363, 258508.232299998402596 ], [ 357824.396700002253056, 258505.642299998551607 ], [ 357834.748199999332428, 258502.221400000154972 ], [ 357845.426100000739098, 258497.904500000178814 ], [ 357828.456200003623962, 258428.030099999159575 ], [ 357834.503600001335144, 258420.302400000393391 ], [ 357827.168499998748302, 258422.728199999779463 ], [ 357813.159400001168251, 258426.971599999815226 ], [ 357804.32150000333786, 258429.648699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016300", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-2J", "ACRE": ".58", "LONGITUDE": -64.94034382, "LATITUDE": 18.35585149, "OBJECTID_1": 4476, "PARCEL_NO_": "102804016300", "Tax_Legal_": "7D-2D,2L&2REM. LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BLUE RIDGE ESTATES OWNERS ASSOCIATION INC", "Address": "PO Box 7613", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 145200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.60716132799999, "SHAPE_Area": 2449.7705682599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357778.476300001144409, 258439.278400000184774 ], [ 357770.140000000596046, 258463.354600001126528 ], [ 357786.280100002884865, 258517.465700000524521 ], [ 357796.240699999034405, 258514.589099999517202 ], [ 357804.828299999237061, 258512.109000001102686 ], [ 357816.559299997985363, 258508.232299998402596 ], [ 357799.030100002884865, 258437.400499999523163 ], [ 357804.32150000333786, 258429.648699998855591 ], [ 357795.21339999884367, 258432.407600000500679 ], [ 357788.83110000193119, 258435.964200001209974 ], [ 357787.683799996972084, 258437.533599998801947 ], [ 357785.859399996697903, 258438.64640000090003 ], [ 357783.125699996948242, 258439.977299999445677 ], [ 357778.476300001144409, 258439.278400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016300", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-2K", "ACRE": ".666", "LONGITUDE": -64.94065111, "LATITUDE": 18.35582109, "OBJECTID_1": 4476, "PARCEL_NO_": "102804016300", "Tax_Legal_": "7D-2D,2L&2REM. LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BLUE RIDGE ESTATES OWNERS ASSOCIATION INC", "Address": "PO Box 7613", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 145200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.90566703100001, "SHAPE_Area": 2874.2884013900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357779.626999996602535, 258429.906199999153614 ], [ 357776.323600001633167, 258428.186099998652935 ], [ 357727.965800002217293, 258442.168600000441074 ], [ 357729.633799999952316, 258445.901000000536442 ], [ 357734.342200003564358, 258456.436700001358986 ], [ 357763.602099999785423, 258524.015000000596046 ], [ 357772.684600003063679, 258521.392000000923872 ], [ 357786.280100002884865, 258517.465700000524521 ], [ 357770.140000000596046, 258463.354600001126528 ], [ 357778.476300001144409, 258439.278400000184774 ], [ 357778.366499997675419, 258439.261900000274181 ], [ 357775.208499997854233, 258436.980799999088049 ], [ 357774.321099996566772, 258434.492600001394749 ], [ 357775.70269999653101, 258432.022999998182058 ], [ 357778.668799996376038, 258430.017400000244379 ], [ 357779.626999996602535, 258429.906199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014600", "MAP": "D9-5780-T94", "PARCEL_NAM": "7B", "ACRE": ".76", "LONGITUDE": -64.93932041, "LATITUDE": 18.35451292, "OBJECTID_1": 4461, "PARCEL_NO_": "102804014600", "Tax_Legal_": "LERKENLUND 7B GR NORTHSIDE QTR", "Name": "BLACKWOOD, REBECCA", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130500, "Improved_V": 158600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.67965024700001, "SHAPE_Area": 3159.4911591300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357932.141099996864796, 258344.803599998354912 ], [ 357941.658699996769428, 258309.674100000411272 ], [ 357939.088299997150898, 258298.634700000286102 ], [ 357922.73369999974966, 258302.191599998623133 ], [ 357886.358000002801418, 258312.659600000828505 ], [ 357860.349200002849102, 258320.067200001329184 ], [ 357869.265399999916553, 258358.931200001388788 ], [ 357932.141099996864796, 258344.803599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017200", "MAP": "D9-3473-T86", "PARCEL_NAM": "7D-3", "ACRE": ".273", "LONGITUDE": -64.93962776, "LATITUDE": 18.35478519, "OBJECTID_1": 4484, "PARCEL_NO_": "102804017200", "Tax_Legal_": "LERKENLUND 7C & 7D-3 GT. NORTHSIDE", "Name": "HORSFORD, LADONNA", "Address": "PO Box 10823", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74500, "Improved_V": 224300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.74716410221999996, "SHAPE_Area": 0.00385366501 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357868.911499999463558, 258359.01069999858737 ], [ 357869.265399999916553, 258358.931200001388788 ], [ 357869.260600000619888, 258358.910500001162291 ], [ 357868.911499999463558, 258359.01069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "G9-861-T66", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94138678, "LATITUDE": 18.35900924, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.393977287, "SHAPE_Area": 242.27336492800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357657.77589999884367, 258835.129299998283386 ], [ 357658.465700000524521, 258839.361000001430511 ], [ 357666.202899999916553, 258836.086500000208616 ], [ 357703.939999997615814, 258812.752199999988079 ], [ 357698.71339999884367, 258812.363000001758337 ], [ 357697.154500000178814, 258811.13740000128746 ], [ 357665.931999996304512, 258830.256599999964237 ], [ 357657.77589999884367, 258835.129299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94763603, "LATITUDE": 18.36423558, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1044.49909056, "SHAPE_Area": 2859.41766499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356980.549800001084805, 259282.853700000792742 ], [ 357006.13459999859333, 259291.974899999797344 ], [ 357018.36370000243187, 259293.229200001806021 ], [ 357036.864100001752377, 259296.364900000393391 ], [ 357037.137999996542931, 259307.961300000548363 ], [ 357037.804799996316433, 259336.187800001353025 ], [ 357034.355599999427795, 259351.552499998360872 ], [ 357019.304399996995926, 259355.628899998962879 ], [ 357009.95830000191927, 259360.702399998903275 ], [ 356999.598200000822544, 259369.748199999332428 ], [ 356992.024099998176098, 259378.519200000911951 ], [ 356985.4391999989748, 259376.637800000607967 ], [ 356968.979699999094009, 259351.236900001764297 ], [ 356956.365199998021126, 259328.843499999493361 ], [ 356950.821599997580051, 259321.612100001424551 ], [ 356947.497699998319149, 259325.212900001555681 ], [ 356941.226400002837181, 259326.153599999845028 ], [ 356941.53999999910593, 259330.543600000441074 ], [ 356949.379100002348423, 259330.857099998742342 ], [ 356957.800300002098083, 259342.728999998420477 ], [ 356965.825699999928474, 259354.480399999767542 ], [ 356970.613499999046326, 259362.451499998569489 ], [ 356981.362800002098083, 259381.19649999961257 ], [ 356985.009999997913837, 259386.807500001043081 ], [ 356989.201999999582767, 259393.256799999624491 ], [ 356989.806800000369549, 259396.022300001233816 ], [ 356991.745999999344349, 259404.889499999582767 ], [ 356993.0996999964118, 259413.961800001561642 ], [ 356993.514200001955032, 259421.866399999707937 ], [ 356993.278399996459484, 259429.410999998450279 ], [ 356996.305399999022484, 259438.957600001245737 ], [ 357001.117499999701977, 259451.046999998390675 ], [ 357012.500399999320507, 259459.085400000214577 ], [ 357021.812899999320507, 259465.471099998801947 ], [ 357026.516400001943111, 259470.174600001424551 ], [ 357028.978000000119209, 259476.943900000303984 ], [ 357027.143500000238419, 259483.971500001847744 ], [ 357021.812899999320507, 259492.437800001353025 ], [ 357017.423000000417233, 259496.200599998235703 ], [ 357014.134900003671646, 259502.178899999707937 ], [ 357010.524499997496605, 259508.743200000375509 ], [ 357014.17119999974966, 259528.539599999785423 ], [ 357014.914499998092651, 259532.574200000613928 ], [ 357023.067199997603893, 259550.447500001639128 ], [ 357034.669100001454353, 259555.151000000536442 ], [ 357043.538099996745586, 259554.781500000506639 ], [ 357049.720299996435642, 259554.523899998515844 ], [ 357059.664899997413158, 259548.766499999910593 ], [ 357067.61599999666214, 259544.5456000007689 ], [ 357073.648100003600121, 259541.438999999314547 ], [ 357084.939499996602535, 259530.020799998193979 ], [ 357087.552599996328354, 259526.696600001305342 ], [ 357071.355999998748302, 259536.91950000077486 ], [ 357059.479500003159046, 259542.902399998158216 ], [ 357051.274300001561642, 259548.372600000351667 ], [ 357043.069099999964237, 259550.834199998527765 ], [ 357037.872500002384186, 259549.740100000053644 ], [ 357033.300399996340275, 259550.741300001740456 ], [ 357026.958700001239777, 259547.082699999213219 ], [ 357021.104900002479553, 259535.131099998950958 ], [ 357018.665799997746944, 259524.399099998176098 ], [ 357015.982799999415874, 259508.788899999111891 ], [ 357019.39750000089407, 259501.227699998766184 ], [ 357030.373499996960163, 259485.617499999701977 ], [ 357034.0320999994874, 259481.714999999850988 ], [ 357039.706699997186661, 259482.212799999862909 ], [ 357039.928800001740456, 259477.619500000029802 ], [ 357035.251599997282028, 259476.348999999463558 ], [ 357029.397799998521805, 259466.348700001835823 ], [ 357020.861000001430511, 259459.031399998813868 ], [ 357009.397299997508526, 259452.689800001680851 ], [ 357005.006899997591972, 259446.592000000178814 ], [ 356998.909199997782707, 259429.762299999594688 ], [ 356998.177400000393391, 259410.981300000101328 ], [ 356994.274899996817112, 259388.712400000542402 ], [ 356999.884800001978874, 259377.004700001329184 ], [ 357006.226400002837181, 259370.663100000470877 ], [ 357017.690200001001358, 259362.857999999076128 ], [ 357031.836900003254414, 259357.979800000786781 ], [ 357042.869199998676777, 259352.96510000154376 ], [ 357042.813500002026558, 259349.646099999547005 ], [ 357042.55629999935627, 259334.313999999314547 ], [ 357043.537600003182888, 259322.541799999773502 ], [ 357045.916199997067451, 259294.00899999961257 ], [ 357046.54110000282526, 259286.513099998235703 ], [ 357008.329599998891354, 259284.762899998575449 ], [ 356992.964800000190735, 259284.041700001806021 ], [ 356980.549800001084805, 259282.853700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203013600", "MAP": "D9-8088-T008", "PARCEL_NAM": "17-15", "ACRE": "0.33", "LONGITUDE": -64.9468734, "LATITUDE": 18.36907775, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.51060297500001, "SHAPE_Area": 1448.4756827399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357058.104299999773502, 259934.388000000268221 ], [ 357093.804899998009205, 259957.377300001680851 ], [ 357098.255900003015995, 259954.638999998569489 ], [ 357123.476400002837181, 259928.458700001239777 ], [ 357082.450099997222424, 259914.818500000983477 ], [ 357058.104299999773502, 259934.388000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203013600", "MAP": "D9-8088-T008", "PARCEL_NAM": "17-13", "ACRE": "0.27", "LONGITUDE": -64.94731374, "LATITUDE": 18.36951382, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.19290710199999, "SHAPE_Area": 1039.36476597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357064.477399997413158, 259982.514400001615286 ], [ 357035.078299999237061, 259956.906599998474121 ], [ 357024.119000002741814, 259982.728500001132488 ], [ 357047.940200001001358, 260007.294900000095367 ], [ 357059.223899997770786, 259992.949599999934435 ], [ 357064.477399997413158, 259982.514400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203013600", "MAP": "D9-8088-T008", "PARCEL_NAM": "17-14", "ACRE": "0.32", "LONGITUDE": -64.94713553, "LATITUDE": 18.36928384, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.39838660500001, "SHAPE_Area": 1326.7202980300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357093.804899998009205, 259957.377300001680851 ], [ 357058.104299999773502, 259934.388000000268221 ], [ 357035.078299999237061, 259956.906599998474121 ], [ 357064.477399997413158, 259982.514400001615286 ], [ 357069.066799998283386, 259973.398499999195337 ], [ 357071.505599997937679, 259971.096400000154972 ], [ 357093.804899998009205, 259957.377300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604015000", "MAP": "D9-8068-T008", "PARCEL_NAM": "53-B-1-A", "ACRE": "0.51", "LONGITUDE": -64.96889673, "LATITUDE": 18.3550314, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.80208101599999, "SHAPE_Area": 1246.6547463100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354787.117899999022484, 258338.275400001555681 ], [ 354740.866599999368191, 258343.709800001233816 ], [ 354742.778499998152256, 258344.80970000103116 ], [ 354754.561200000345707, 258352.067899998277426 ], [ 354765.046800002455711, 258360.594900000840425 ], [ 354775.464800000190735, 258377.564599998295307 ], [ 354787.392300002276897, 258398.895899999886751 ], [ 354789.869699999690056, 258405.534699998795986 ], [ 354792.180399999022484, 258411.72690000012517 ], [ 354787.117899999022484, 258338.275400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604015200", "MAP": "D9-8068-T008", "PARCEL_NAM": "53-B-1-C", "ACRE": "0.53", "LONGITUDE": -64.96923575, "LATITUDE": 18.35426034, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.43240456800001, "SHAPE_Area": 1728.5845090099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354735.956399999558926, 258261.090999998152256 ], [ 354707.919600002467632, 258259.913800001144409 ], [ 354709.639899998903275, 258302.561599999666214 ], [ 354710.178099997341633, 258296.163199998438358 ], [ 354713.237800002098083, 258289.286400001496077 ], [ 354722.382399998605251, 258287.397300001233816 ], [ 354733.681599996984005, 258286.223200000822544 ], [ 354747.36370000243187, 258289.290500000119209 ], [ 354764.296300001442432, 258289.429099999368191 ], [ 354771.574699997901917, 258286.95549999922514 ], [ 354777.267399996519089, 258281.302600000053644 ], [ 354778.149300001561642, 258272.443900000303984 ], [ 354774.155500002205372, 258267.978199999779463 ], [ 354767.313900001347065, 258264.753899998962879 ], [ 354746.798100002110004, 258264.631599999964237 ], [ 354735.956399999558926, 258261.090999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604015400", "MAP": "D9-8568-T011", "PARCEL_NAM": "53-B-2-A", "ACRE": "0.55", "LONGITUDE": -64.96923049, "LATITUDE": 18.35390232, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.13858317200001, "SHAPE_Area": 1221.7068761400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354756.826200000941753, 258258.66440000012517 ], [ 354756.336999997496605, 258210.115600001066923 ], [ 354749.611100003123283, 258214.79280000180006 ], [ 354722.099399998784065, 258225.966699998825788 ], [ 354718.040899999439716, 258229.099899999797344 ], [ 354717.992299996316433, 258234.7989999987185 ], [ 354722.158399999141693, 258239.891499999910593 ], [ 354728.814099997282028, 258248.728500001132488 ], [ 354738.479000002145767, 258254.905499998480082 ], [ 354754.946599997580051, 258258.620000001043081 ], [ 354756.826200000941753, 258258.66440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-1337-T77", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.94259694, "LATITUDE": 18.34864764, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.47508529000001, "SHAPE_Area": 499.97126543399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357555.477700002491474, 257639.718299999833107 ], [ 357560.070200003683567, 257716.954199999570847 ], [ 357566.612000003457069, 257715.24439999833703 ], [ 357565.917700000107288, 257705.126899998635054 ], [ 357562.463600002229214, 257654.786699999123812 ], [ 357560.999600000679493, 257633.449499998241663 ], [ 357555.838500000536442, 257639.310199998319149 ], [ 357555.477700002491474, 257639.718299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91831007, "LATITUDE": 18.33273825, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.64011839599999, "SHAPE_Area": 552.24702762300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360143.567299999296665, 255972.754599999636412 ], [ 360151.588600002229214, 255972.251800000667572 ], [ 360151.264399997889996, 255967.793299999088049 ], [ 360149.74889999628067, 255956.381900001317263 ], [ 360148.983900003135204, 255951.520500000566244 ], [ 360145.925899997353554, 255931.863699998706579 ], [ 360143.609499998390675, 255919.812399998307228 ], [ 360138.123499996960163, 255901.191300000995398 ], [ 360130.845100000500679, 255903.664900001138449 ], [ 360137.108599998056889, 255925.669900000095367 ], [ 360142.468699999153614, 255959.066500000655651 ], [ 360143.567299999296665, 255972.754599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-4351-T88", "PARCEL_NAM": "A-1-D", "ACRE": "0.70", "LONGITUDE": -64.91636796, "LATITUDE": 18.3319938, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 609.79856342799997, "SHAPE_Area": 2260.9018953899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360261.865500003099442, 255954.120200000703335 ], [ 360268.607299998402596, 255957.739399999380112 ], [ 360269.108300000429153, 255954.403499998152256 ], [ 360277.450099997222424, 255921.752199999988079 ], [ 360282.381499998271465, 255910.815699998289347 ], [ 360284.037299998104572, 255905.763000000268221 ], [ 360284.85980000346899, 255903.869899999350309 ], [ 360286.506599999964237, 255899.872600000351667 ], [ 360288.952500000596046, 255896.726300001144409 ], [ 360300.41889999806881, 255875.921799998730421 ], [ 360317.520499996840954, 255856.219000000506639 ], [ 360319.14750000089407, 255854.543600000441074 ], [ 360329.71000000089407, 255845.178199999034405 ], [ 360335.385200001299381, 255841.588700000196695 ], [ 360357.263599999248981, 255829.102099999785423 ], [ 360362.117600001394749, 255827.241999998688698 ], [ 360380.713200002908707, 255821.483600001782179 ], [ 360396.051100000739098, 255819.498199999332428 ], [ 360410.566500000655651, 255819.405900001525879 ], [ 360427.479299999773502, 255821.866300001740456 ], [ 360431.491099998354912, 255824.221200000494719 ], [ 360434.678599998354912, 255828.680300001055002 ], [ 360439.399499997496605, 255842.440000001341105 ], [ 360439.363600000739098, 255846.66160000115633 ], [ 360422.439999997615814, 255845.467599999159575 ], [ 360435.285300001502037, 255852.116599999368191 ], [ 360439.309600003063679, 255852.993900001049042 ], [ 360441.733999997377396, 255852.380499999970198 ], [ 360444.169100001454353, 255850.500599998980761 ], [ 360445.82490000128746, 255845.447900000959635 ], [ 360443.499399997293949, 255834.451999999582767 ], [ 360440.344300001859665, 255826.193500000983477 ], [ 360438.746100001037121, 255824.491700001060963 ], [ 360437.255699999630451, 255810.125100001692772 ], [ 360437.300200000405312, 255810.017400000244379 ], [ 360429.385600000619888, 255806.122099999338388 ], [ 360429.226700000464916, 255806.048700001090765 ], [ 360422.74210000038147, 255810.006299998611212 ], [ 360417.083499997854233, 255811.648800000548363 ], [ 360409.016800001263618, 255812.004900000989437 ], [ 360383.200400002300739, 255813.482400000095367 ], [ 360362.997699998319149, 255818.594399999827147 ], [ 360352.477799996733665, 255822.941199999302626 ], [ 360341.947200000286102, 255828.55460000038147 ], [ 360324.92119999974966, 255839.392099998891354 ], [ 360316.795100003480911, 255846.713899999856949 ], [ 360300.528599999845028, 255863.046000000089407 ], [ 360291.545900002121925, 255876.27140000090003 ], [ 360285.838699996471405, 255883.613000001758337 ], [ 360284.994699999690056, 255888.039000000804663 ], [ 360279.273199997842312, 255897.069200001657009 ], [ 360275.148100003600121, 255908.012299999594688 ], [ 360273.515699997544289, 255910.320999998599291 ], [ 360268.553700000047684, 255924.845800001174212 ], [ 360261.865500003099442, 255954.120200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-3854-T87", "PARCEL_NAM": "A-1-B", "ACRE": "1.0", "LONGITUDE": -64.91517407000001, "LATITUDE": 18.33075847, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 863.35595394899997, "SHAPE_Area": 3301.6947407799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360532.321099996566772, 255662.561000000685453 ], [ 360526.85530000180006, 255656.108899999409914 ], [ 360525.753899998962879, 255655.944899998605251 ], [ 360522.270300000905991, 255674.8766999989748 ], [ 360519.743400000035763, 255687.521600000560284 ], [ 360520.395099997520447, 255705.681000001728535 ], [ 360523.478299997746944, 255722.382599998265505 ], [ 360525.863099999725819, 255726.412900000810623 ], [ 360527.432499997317791, 255731.491999998688698 ], [ 360528.156099997460842, 255741.208200000226498 ], [ 360526.431999996304512, 255754.281899999827147 ], [ 360526.396099999547005, 255758.503499999642372 ], [ 360523.165399998426437, 255759.110300000756979 ], [ 360500.80799999833107, 255733.173900000751019 ], [ 360488.850000001490116, 255717.032999999821186 ], [ 360480.930699996650219, 255700.080699998885393 ], [ 360476.945900000631809, 255694.559599999338388 ], [ 360470.543999999761581, 255688.807700000703335 ], [ 360467.338500000536442, 255686.459399998188019 ], [ 360429.5929000005126, 255668.418600000441074 ], [ 360414.30349999666214, 255664.704900000244379 ], [ 360409.451300002634525, 255666.353900000452995 ], [ 360407.822400003671646, 255668.24040000140667 ], [ 360406.191799998283386, 255670.337999999523163 ], [ 360405.360299997031689, 255673.286499999463558 ], [ 360406.127099998295307, 255677.936900001019239 ], [ 360414.913800001144409, 255687.719099998474121 ], [ 360429.298000000417233, 255703.035599999129772 ], [ 360437.251400001347065, 255715.977400001138449 ], [ 360439.609200000762939, 255723.173799999058247 ], [ 360448.257500000298023, 255749.209100000560284 ], [ 360447.359499998390675, 255759.967599999159575 ], [ 360447.310900002717972, 255765.666700001806021 ], [ 360434.120399996638298, 255799.544799998402596 ], [ 360429.226800002157688, 255806.048700001090765 ], [ 360429.385600000619888, 255806.122099999338388 ], [ 360437.300200000405312, 255810.017400000244379 ], [ 360456.192900002002716, 255764.261700000613928 ], [ 360456.311599999666214, 255750.33049999922514 ], [ 360445.318099997937679, 255715.621199999004602 ], [ 360443.723499998450279, 255713.49720000103116 ], [ 360436.583599999547005, 255699.717700000852346 ], [ 360413.405500002205372, 255675.463300000876188 ], [ 360413.427100002765656, 255672.930399999022484 ], [ 360425.505599997937679, 255674.929099999368191 ], [ 360467.259400002658367, 255695.746899999678135 ], [ 360473.652400001883507, 255702.554200001060963 ], [ 360481.571599997580051, 255719.506499998271465 ], [ 360485.547399997711182, 255726.082899998873472 ], [ 360499.909999996423721, 255743.932399999350309 ], [ 360519.864600002765656, 255767.949200000613928 ], [ 360525.490800000727177, 255770.106199998408556 ], [ 360529.53320000320673, 255768.872800000011921 ], [ 360531.959299996495247, 255768.048200000077486 ], [ 360534.405199997127056, 255764.901900000870228 ], [ 360536.152699999511242, 255749.084100000560284 ], [ 360536.2533999979496, 255737.263700000941753 ], [ 360533.924400001764297, 255726.690000001341105 ], [ 360529.208800002932549, 255712.296999998390675 ], [ 360527.686099998652935, 255701.729899998754263 ], [ 360527.822700001299381, 255685.687899999320507 ], [ 360532.321099996566772, 255662.561000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-3894-T87", "PARCEL_NAM": "A-1-C", "ACRE": "0.76", "LONGITUDE": -64.91731677, "LATITUDE": 18.33362451, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 789.61377598700005, "SHAPE_Area": 2973.1212914399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360151.588600002229214, 255972.251800000667572 ], [ 360143.567299999296665, 255972.754599999636412 ], [ 360145.384700000286102, 255995.398499999195337 ], [ 360146.930699996650219, 256003.221599999815226 ], [ 360150.856200002133846, 256015.708200000226498 ], [ 360153.237400002777576, 256020.160700000822544 ], [ 360164.408900000154972, 256033.973200000822544 ], [ 360208.446800000965595, 256070.641699999570847 ], [ 360215.653200000524521, 256076.611299999058247 ], [ 360224.497500002384186, 256079.638999998569489 ], [ 360234.167900003492832, 256080.351399999111891 ], [ 360266.472499996423721, 256074.494100000709295 ], [ 360281.009499996900558, 256071.868900001049042 ], [ 360295.519500002264977, 256072.409800000488758 ], [ 360304.387199997901917, 256072.693500000983477 ], [ 360321.287399999797344, 256076.631499998271465 ], [ 360326.130599997937679, 256076.037900000810623 ], [ 360331.798199996352196, 256073.339999999850988 ], [ 360333.428800001740456, 256071.242499999701977 ], [ 360335.106200002133846, 256063.656800001859665 ], [ 360332.744800001382828, 256056.882500000298023 ], [ 360329.578900001943111, 256049.890500001609325 ], [ 360323.997599996626377, 256042.456500001251698 ], [ 360304.050200000405312, 256017.595300000160933 ], [ 360292.038199998438358, 256007.786699999123812 ], [ 360280.79839999973774, 256001.995200000703335 ], [ 360272.781999997794628, 255996.441199999302626 ], [ 360267.202600002288818, 255988.796100001782179 ], [ 360265.688799999654293, 255977.173599999397993 ], [ 360268.607299998402596, 255957.739399999380112 ], [ 360261.865500003099442, 255954.120200000703335 ], [ 360260.177699998021126, 255961.507599998265505 ], [ 360259.290500000119209, 255970.999499998986721 ], [ 360258.453599996864796, 255974.581199999898672 ], [ 360259.159199997782707, 255986.408300001174212 ], [ 360260.714299999177456, 255993.175999999046326 ], [ 360263.104500003159046, 255996.572999998927116 ], [ 360266.293799996376038, 256000.820999998599291 ], [ 360291.957299999892712, 256017.285300001502037 ], [ 360293.560900002717972, 256018.353900000452995 ], [ 360299.964699998497963, 256023.89469999819994 ], [ 360305.542300000786781, 256031.750799998641014 ], [ 360311.940700002014637, 256037.924899999052286 ], [ 360321.504900000989437, 256051.090999998152256 ], [ 360322.284299999475479, 256054.263799998909235 ], [ 360327.04839999973774, 256062.957600001245737 ], [ 360327.01969999819994, 256066.334800001233816 ], [ 360324.580899998545647, 256068.636900000274181 ], [ 360321.353900000452995, 256068.821600001305342 ], [ 360307.677199997007847, 256065.121100001037121 ], [ 360289.142800003290176, 256063.702799998223782 ], [ 360277.040899999439716, 256064.448100000619888 ], [ 360235.044299997389317, 256072.125999998301268 ], [ 360226.174900002777576, 256072.053399998694658 ], [ 360217.336000002920628, 256068.392400000244379 ], [ 360198.126599997282028, 256051.558800000697374 ], [ 360172.49719999730587, 256031.084100000560284 ], [ 360163.710500001907349, 256021.301899999380112 ], [ 360157.342699997127056, 256011.539500001817942 ], [ 360153.429799996316433, 255997.575300000607967 ], [ 360151.588600002229214, 255972.251800000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704053100", "MAP": "A9-687-T006", "PARCEL_NAM": null, "ACRE": ".001", "LONGITUDE": -64.95140307, "LATITUDE": 18.35142718, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.9572381949, "SHAPE_Area": 50.689700703900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356623.4679000005126, 257963.194600000977516 ], [ 356625.052000001072884, 257973.083500001579523 ], [ 356627.9966000020504, 257981.878499999642372 ], [ 356631.843299999833107, 257993.368099998682737 ], [ 356630.426700003445148, 257982.784800000488758 ], [ 356628.08500000089407, 257973.6886 ], [ 356626.550200000405312, 257969.880699999630451 ], [ 356624.926299996674061, 257965.852299999445677 ], [ 356623.4679000005126, 257963.194600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "A9-338-T86", "PARCEL_NAM": "GREEN BELT", "ACRE": null, "LONGITUDE": -64.9509835, "LATITUDE": 18.35415546, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.9546363551, "SHAPE_Area": 172.394094088 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356665.753700003027916, 258284.726599998772144 ], [ 356677.857400000095367, 258283.770199999213219 ], [ 356679.480800002813339, 258282.5168999992311 ], [ 356679.511399999260902, 258278.928599998354912 ], [ 356673.096900001168251, 258274.654199998825788 ], [ 356667.23369999974966, 258270.888399999588728 ], [ 356658.579499997198582, 258284.728500001132488 ], [ 356665.753700003027916, 258284.726599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202034200", "MAP": "A9-682-T006", "PARCEL_NAM": "11-1B-A", "ACRE": ".021", "LONGITUDE": -64.95297625000001, "LATITUDE": 18.34576407, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.32871526700001, "SHAPE_Area": 203.36088357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356472.362700000405312, 257365.516399998217821 ], [ 356474.813299998641014, 257370.822599999606609 ], [ 356479.223999999463558, 257368.531599998474121 ], [ 356476.850000001490116, 257363.2347999997437 ], [ 356464.150399997830391, 257339.488400001078844 ], [ 356459.362899996340275, 257333.538600001484156 ], [ 356458.574500001966953, 257331.42119999974966 ], [ 356448.193199999630451, 257319.515000000596046 ], [ 356446.683200001716614, 257318.1081000007689 ], [ 356452.384700000286102, 257327.423300001770258 ], [ 356459.60419999808073, 257338.455899998545647 ], [ 356472.362700000405312, 257365.516399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94828388000001, "LATITUDE": 18.33984955, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.312778054699997, "SHAPE_Area": 86.339817146100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356965.335900001227856, 256705.504000000655651 ], [ 356965.272299997508526, 256707.59180000051856 ], [ 356969.832999996840954, 256707.460900001227856 ], [ 356970.458099998533726, 256689.850400000810623 ], [ 356965.219499997794628, 256689.705200001597404 ], [ 356965.335900001227856, 256705.504000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.94846621000001, "LATITUDE": 18.34006318, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.633025072, "SHAPE_Area": 185.11088560900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356969.832999996840954, 256707.460900001227856 ], [ 356963.438900001347065, 256707.644400000572205 ], [ 356954.41669999808073, 256714.756999999284744 ], [ 356951.220600001513958, 256717.629000000655651 ], [ 356949.02759999781847, 256719.599700000137091 ], [ 356941.751999996602535, 256725.289299998432398 ], [ 356934.916000001132488, 256730.263999998569489 ], [ 356929.541000001132488, 256733.382199998944998 ], [ 356924.641000002622604, 256734.453699998557568 ], [ 356924.585500001907349, 256738.508600000292063 ], [ 356927.045800000429153, 256737.960900001227856 ], [ 356932.705399997532368, 256735.419799998402596 ], [ 356946.812299996614456, 256725.330400001257658 ], [ 356951.093999996781349, 256721.929499998688698 ], [ 356953.797600001096725, 256719.7820999994874 ], [ 356959.32769999653101, 256715.371700000017881 ], [ 356965.138899996876717, 256711.969700001180172 ], [ 356969.685099996626377, 256711.630199998617172 ], [ 356969.832999996840954, 256707.460900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94830598, "LATITUDE": 18.34099403, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.173094526, "SHAPE_Area": 683.60036140299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357022.146099999547005, 256825.159800000488758 ], [ 356983.059000000357628, 256824.413400001823902 ], [ 356954.256700001657009, 256822.625500001013279 ], [ 356906.732500001788139, 256815.578999999910593 ], [ 356908.463699996471405, 256822.476199999451637 ], [ 356957.558700002729893, 256828.647300001233816 ], [ 357021.418999999761581, 256831.768300000578165 ], [ 357022.146099999547005, 256825.159800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "216", "ACRE": null, "LONGITUDE": -64.94765403, "LATITUDE": 18.34041275, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.807818752, "SHAPE_Area": 1406.8736540800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357021.418999999761581, 256831.768300000578165 ], [ 357032.0016999989748, 256832.018500000238419 ], [ 357034.833700001239777, 256798.060100000351667 ], [ 357041.88120000064373, 256728.034699998795986 ], [ 357046.240000002086163, 256689.651399999856949 ], [ 357045.473200000822544, 256685.000999998301268 ], [ 357043.023699998855591, 256688.569600000977516 ], [ 357036.546300001442432, 256691.68299999833107 ], [ 357033.083700001239777, 256719.519000001251698 ], [ 357026.063100002706051, 256786.378199998289347 ], [ 357025.159699998795986, 256797.769799999892712 ], [ 357022.146099999547005, 256825.159800000488758 ], [ 357021.418999999761581, 256831.768300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9480501, "LATITUDE": 18.34420324, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 517.620741404, "SHAPE_Area": 3070.8650364499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356965.651900000870228, 257157.197299998253584 ], [ 356957.468299999833107, 257171.273600000888109 ], [ 356955.8125, 257176.326299998909235 ], [ 356956.557700000703335, 257183.50959999859333 ], [ 356959.739799998700619, 257188.60190000012517 ], [ 356965.326499998569489, 257195.40260000154376 ], [ 356973.335600003600121, 257201.800900001078844 ], [ 356982.975400000810623, 257206.101700000464916 ], [ 356998.262999996542931, 257210.026500001549721 ], [ 357002.274800002574921, 257212.381400000303984 ], [ 357005.472999997437, 257215.574000000953674 ], [ 357007.787699997425079, 257227.836300000548363 ], [ 357007.696000002324581, 257238.601399999111891 ], [ 357006.067199997603893, 257240.487900000065565 ], [ 357004.407799996435642, 257245.962699998170137 ], [ 357005.10980000346899, 257258.211899999529123 ], [ 357006.691899999976158, 257261.813400000333786 ], [ 357008.277500003576279, 257264.992800001055002 ], [ 357012.265900000929832, 257270.091699998825788 ], [ 357013.847999997437, 257273.693199999630451 ], [ 357014.630900003015995, 257276.443900000303984 ], [ 357014.544600002467632, 257286.575599998235703 ], [ 357022.611299999058247, 257286.219500001519918 ], [ 357023.539899997413158, 257271.872699998319149 ], [ 357020.393799997866154, 257262.558800000697374 ], [ 357016.427000001072884, 257254.927000001072884 ], [ 357016.513300001621246, 257244.795200001448393 ], [ 357019.005900003015995, 257236.160799998790026 ], [ 357019.900399997830391, 257225.824499998241663 ], [ 357016.009099997580051, 257209.327399998903275 ], [ 357007.996299996972084, 257203.351199999451637 ], [ 357004.788999997079372, 257201.214000001549721 ], [ 356983.8716000020504, 257195.554400000721216 ], [ 356977.457099996507168, 257191.280000001192093 ], [ 356971.056999996304512, 257185.31700000166893 ], [ 356985.786399997770786, 257160.106300000101328 ], [ 356994.572499997913837, 257144.192999999970198 ], [ 356993.323600001633167, 257141.152800001204014 ], [ 356990.031900003552437, 257135.020899999886751 ], [ 356990.931699998676777, 257124.051399998366833 ], [ 356989.35869999974966, 257119.394499998539686 ], [ 356987.763999998569489, 257117.270500000566244 ], [ 356986.207099996507168, 257110.713899999856949 ], [ 356984.603500001132488, 257109.645300000905991 ], [ 356983.820600003004074, 257106.89469999819994 ], [ 356981.443000003695488, 257102.019999999552965 ], [ 356979.988600000739098, 257083.43189999833703 ], [ 356980.848899997770786, 257077.106100000441074 ], [ 356975.188500002026558, 257078.959699999541044 ], [ 356968.737999998033047, 257078.906899999827147 ], [ 356968.701999999582767, 257083.128400001674891 ], [ 356969.409400001168251, 257094.74439999833703 ], [ 356970.170800000429153, 257100.027899999171495 ], [ 356976.463100001215935, 257118.655699998140335 ], [ 356979.614600002765656, 257127.336300000548363 ], [ 356978.75789999961853, 257133.239900000393391 ], [ 356977.089599996805191, 257139.770199999213219 ], [ 356974.648999996483326, 257142.283300001174212 ], [ 356968.918499998748302, 257152.368900001049042 ], [ 356965.651900000870228, 257157.197299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "46", "ACRE": null, "LONGITUDE": -64.94735153000001, "LATITUDE": 18.33787717, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.979910867599997, "SHAPE_Area": 73.690772185200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357065.508299998939037, 256478.129799999296665 ], [ 357059.914700001478195, 256477.476199999451637 ], [ 357059.723999999463558, 256480.554800000041723 ], [ 357064.884400002658367, 256482.785300001502037 ], [ 357074.525100000202656, 256485.237100001424551 ], [ 357075.123499996960163, 256479.253199998289347 ], [ 357065.508299998939037, 256478.129799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93655738, "LATITUDE": 18.34531037, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.422849603299994, "SHAPE_Area": 331.84138641200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358204.973600000143051, 257296.955200001597404 ], [ 358198.688100002706051, 257299.531500000506639 ], [ 358194.310099996626377, 257326.720400001853704 ], [ 358204.414499998092651, 257328.479299999773502 ], [ 358206.031700000166893, 257324.824999999254942 ], [ 358207.70719999819994, 257317.450500000268221 ], [ 358207.752199999988079, 257312.173500001430511 ], [ 358208.653800003230572, 257300.992899999022484 ], [ 358210.714500002563, 257297.553199999034405 ], [ 358204.973600000143051, 257296.955200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104015800", "MAP": "D9-8353-T009", "PARCEL_NAM": "2F REM", "ACRE": "0.26", "LONGITUDE": -64.95565021, "LATITUDE": 18.3688027, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.393134221, "SHAPE_Area": 887.42589883899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356152.182300001382828, 259901.158399999141693 ], [ 356156.051399998366833, 259905.750700000673532 ], [ 356157.798600003123283, 259907.767900001257658 ], [ 356161.45160000026226, 259910.405999999493361 ], [ 356169.343999996781349, 259912.010800000280142 ], [ 356176.10700000077486, 259912.791200000792742 ], [ 356177.868199996650219, 259912.99439999833703 ], [ 356183.834899999201298, 259912.99439999833703 ], [ 356183.440999999642372, 259910.356600001454353 ], [ 356179.785400003194809, 259885.878299999982119 ], [ 356175.546800002455711, 259887.774599999189377 ], [ 356173.354400001466274, 259888.067899998277426 ], [ 356169.159699998795986, 259887.512299999594688 ], [ 356144.019500002264977, 259881.983300000429153 ], [ 356136.554099999368191, 259880.341499999165535 ], [ 356131.818099997937679, 259879.299899999052286 ], [ 356152.182300001382828, 259901.158399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017200", "MAP": "D9-3473-T86", "PARCEL_NAM": "7D-3", "ACRE": ".273", "LONGITUDE": -64.93982993, "LATITUDE": 18.35503934, "OBJECTID_1": 4484, "PARCEL_NO_": "102804017200", "Tax_Legal_": "LERKENLUND 7C & 7D-3 GT. NORTHSIDE", "Name": "HORSFORD, LADONNA", "Address": "PO Box 10823", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74500, "Improved_V": 224300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.25316981200001, "SHAPE_Area": 2458.7299837400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357869.265399999916553, 258358.931200001388788 ], [ 357868.911499999463558, 258359.01069999858737 ], [ 357816.835699997842312, 258369.8564000017941 ], [ 357826.641199998557568, 258413.636999998241663 ], [ 357827.512000001966953, 258417.525299999862909 ], [ 357838.726899996399879, 258413.805799998342991 ], [ 357878.840700000524521, 258400.668400000780821 ], [ 357869.265399999916553, 258358.931200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014100", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-4", "ACRE": ".474", "LONGITUDE": -64.93933709, "LATITUDE": 18.35489693, "OBJECTID_1": 4456, "PARCEL_NO_": "102804014100", "Tax_Legal_": "LERKENLUND 7D-4 GREAT NORTHSIDE QTR", "Name": "BLACKWOOD, REBECCA", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.10893252299999, "SHAPE_Area": 2186.3345550200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357920.859200000762939, 258386.968100000172853 ], [ 357932.141099996864796, 258344.803599998354912 ], [ 357869.265399999916553, 258358.931200001388788 ], [ 357878.840700000524521, 258400.668400000780821 ], [ 357887.216300003230572, 258397.925400000065565 ], [ 357912.468599997460842, 258389.597500000149012 ], [ 357920.859200000762939, 258386.968100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017300", "MAP": "D9-5780-T94", "PARCEL_NAM": "7D-5", "ACRE": ".519", "LONGITUDE": -64.93886836, "LATITUDE": 18.35455704, "OBJECTID_1": 4485, "PARCEL_NO_": "102804017300", "Tax_Legal_": "LERKENLUND 7D-5 GT. NORTHSIDE", "Name": "PBG CORPORATION", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.50514499, "SHAPE_Area": 2561.69298785 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357939.088299997150898, 258298.634700000286102 ], [ 357941.658699996769428, 258309.674100000411272 ], [ 357932.141099996864796, 258344.803599998354912 ], [ 357920.859200000762939, 258386.968100000172853 ], [ 357926.283500000834465, 258385.268300000578165 ], [ 357936.888999998569489, 258380.484900001436472 ], [ 357944.92509999871254, 258373.168999999761581 ], [ 357951.34009999781847, 258362.285900000482798 ], [ 357958.915799997746944, 258350.243599999696016 ], [ 357966.676399998366833, 258336.712499998509884 ], [ 357973.388700000941753, 258323.097899999469519 ], [ 357975.434399999678135, 258308.351599998772144 ], [ 357973.864600002765656, 258298.496800001710653 ], [ 357970.314000003039837, 258291.899500001221895 ], [ 357951.008599996566772, 258296.090199999511242 ], [ 357940.506800003349781, 258298.326299998909235 ], [ 357939.088299997150898, 258298.634700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040800", "MAP": null, "PARCEL_NAM": "28A", "ACRE": null, "LONGITUDE": -64.96334249, "LATITUDE": 18.34440771, "OBJECTID_1": 7586, "PARCEL_NO_": "105201040800", "Tax_Legal_": "LINDBERG BAY 28A SOUTHSIDE QTR", "Name": "Novita C. Scatliffe George Revocable Living Trust", "Address": "PO Box 305344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23200, "Improved_V": 4500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.46566294199999, "SHAPE_Area": 700.20637633800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355357.37219999730587, 257201.8739 ], [ 355388.137299999594688, 257200.918000001460314 ], [ 355388.009700000286102, 257198.328600000590086 ], [ 355387.345100000500679, 257181.176199998706579 ], [ 355380.1503000035882, 257178.417899999767542 ], [ 355371.286300003528595, 257177.712099999189377 ], [ 355355.944700002670288, 257180.119600001722574 ], [ 355357.211300000548363, 257199.422899998724461 ], [ 355357.37219999730587, 257201.8739 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040800", "MAP": "F9-1156-T63", "PARCEL_NAM": "28AA", "ACRE": null, "LONGITUDE": -64.96362048, "LATITUDE": 18.34443024, "OBJECTID_1": 7586, "PARCEL_NO_": "105201040800", "Tax_Legal_": "LINDBERG BAY 28A SOUTHSIDE QTR", "Name": "Novita C. Scatliffe George Revocable Living Trust", "Address": "PO Box 305344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23200, "Improved_V": 4500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.121536354900002, "SHAPE_Area": 577.85474342400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355357.211300000548363, 257199.422899998724461 ], [ 355355.944700002670288, 257180.119600001722574 ], [ 355326.874300003051758, 257184.947900000959635 ], [ 355328.151699997484684, 257200.455400001257658 ], [ 355328.335900001227856, 257202.691799998283386 ], [ 355357.37219999730587, 257201.8739 ], [ 355357.211300000548363, 257199.422899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201049900", "MAP": "F9-1335-T64", "PARCEL_NAM": "28C", "ACRE": ".358", "LONGITUDE": -64.96357517, "LATITUDE": 18.34471249, "OBJECTID_1": 7674, "PARCEL_NO_": "105201049900", "Tax_Legal_": "LINDBERGH BAY 28C SOUTHSIDE QTR.", "Name": "JACKSON, ELEANOR", "Address": "376 SW 122 Ave", "City": "Pembroke Pines", "State": "Florida", "Zip": 33025, "Country": "United States", "Land_Value": 35200, "Improved_V": 92500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.62513151900001, "SHAPE_Area": 1442.05868126 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355372.144900001585484, 257241.660799998790026 ], [ 355357.37219999730587, 257201.8739 ], [ 355328.335900001227856, 257202.691799998283386 ], [ 355329.6554000005126, 257237.110800001770258 ], [ 355329.603299997746944, 257243.232099998742342 ], [ 355372.144900001585484, 257241.660799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040600", "MAP": "F9-1477-T64", "PARCEL_NAM": "28D", "ACRE": null, "LONGITUDE": -64.96318738, "LATITUDE": 18.34452732, "OBJECTID_1": 7584, "PARCEL_NO_": "105201040600", "Tax_Legal_": "LINDBERG 28D SOUTHSIDE QTR.", "Name": "RICHARDSON, ALLAN & EVELIN", "Address": "PO Box 11142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15300, "Improved_V": 75400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.965979627, "SHAPE_Area": 576.12375522399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355389.075000002980232, 257213.508699998259544 ], [ 355405.229099996387959, 257192.657200001180172 ], [ 355391.402699999511242, 257182.731899999082088 ], [ 355387.345100000500679, 257181.176199998706579 ], [ 355388.009700000286102, 257198.328600000590086 ], [ 355388.137299999594688, 257200.918000001460314 ], [ 355373.535800002515316, 257201.371700000017881 ], [ 355379.655799999833107, 257224.896099999547005 ], [ 355390.880900003015995, 257220.940400000661612 ], [ 355389.075000002980232, 257213.508699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201049700", "MAP": "F9-3759-T79", "PARCEL_NAM": "28G", "ACRE": null, "LONGITUDE": -64.96301006, "LATITUDE": 18.3445466, "OBJECTID_1": 7672, "PARCEL_NO_": "105201049700", "Tax_Legal_": "LINDBERGH BAY 28G S S QTR", "Name": "JACKSON, ROY D", "Address": "PO Box 304547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.973147295100006, "SHAPE_Area": 400.19206876599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355405.229099996387959, 257192.657200001180172 ], [ 355389.075000002980232, 257213.508699998259544 ], [ 355417.740500003099442, 257213.064599998295307 ], [ 355423.604400001466274, 257205.802299998700619 ], [ 355420.255500003695488, 257203.444099999964237 ], [ 355405.229099996387959, 257192.657200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201049600", "MAP": "F9-3782-T79", "PARCEL_NAM": "28F", "ACRE": null, "LONGITUDE": -64.96287805, "LATITUDE": 18.34434193, "OBJECTID_1": 7671, "PARCEL_NO_": "105201049600", "Tax_Legal_": "LINDBERGH BAY 28F S.S.QTR.", "Name": "GEJAN INC", "Address": "PO Box 302305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.532654276, "SHAPE_Area": 651.08144585000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355430.750299997627735, 257170.261599998921156 ], [ 355402.098499998450279, 257175.684300001710653 ], [ 355402.175899997353554, 257182.750399999320507 ], [ 355411.657499998807907, 257189.663400001823902 ], [ 355413.106600001454353, 257190.719999998807907 ], [ 355427.565999999642372, 257201.239000000059605 ], [ 355438.012299999594688, 257179.268699999898672 ], [ 355430.750299997627735, 257170.261599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040300", "MAP": "D9-4781-T89", "PARCEL_NAM": "28 REM", "ACRE": "1.470", "LONGITUDE": -64.96236232, "LATITUDE": 18.34463578, "OBJECTID_1": 7582, "PARCEL_NO_": "105201040300", "Tax_Legal_": "28 LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "JACKSON, ROY D.", "Address": "P O BOX 4547", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55600, "Improved_V": 131900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 371.51239578399998, "SHAPE_Area": 3920.7389634599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355445.152300000190735, 257215.258000001311302 ], [ 355431.477399997413158, 257211.346400000154972 ], [ 355423.604400001466274, 257205.802299998700619 ], [ 355417.740500003099442, 257213.064599998295307 ], [ 355419.06530000269413, 257239.927700001746416 ], [ 355423.171499997377396, 257239.776000000536442 ], [ 355475.060400001704693, 257237.920200001448393 ], [ 355475.905100002884865, 257213.755499999970198 ], [ 355476.635899998247623, 257213.792700000107288 ], [ 355484.712700001895428, 257214.204300001263618 ], [ 355491.566500000655651, 257218.737300001084805 ], [ 355491.944899998605251, 257218.987500000745058 ], [ 355491.929499998688698, 257219.043600000441074 ], [ 355504.08330000191927, 257229.299800001084805 ], [ 355501.840999998152256, 257236.962400000542402 ], [ 355528.837999999523163, 257235.996800001710653 ], [ 355531.3091000020504, 257229.895300000905991 ], [ 355539.575400002300739, 257206.109400000423193 ], [ 355507.3733000010252, 257199.935199998319149 ], [ 355475.171099998056889, 257193.760999999940395 ], [ 355459.24040000140667, 257182.378400001674891 ], [ 355453.111900001764297, 257177.999600000679493 ], [ 355451.638300001621246, 257193.953099999576807 ], [ 355446.457599997520447, 257209.34739999845624 ], [ 355445.152300000190735, 257215.258000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105201040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9632259, "LATITUDE": 18.34432031, "OBJECTID_1": 7582, "PARCEL_NO_": "105201040300", "Tax_Legal_": "28 LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "JACKSON, ROY D.", "Address": "P O BOX 4547", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55600, "Improved_V": 131900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.399384371, "SHAPE_Area": 880.10381885000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355427.565999999642372, 257201.239000000059605 ], [ 355413.106600001454353, 257190.719999998807907 ], [ 355402.175899997353554, 257182.750399999320507 ], [ 355402.098499998450279, 257175.684300001710653 ], [ 355430.750299997627735, 257170.261599998921156 ], [ 355429.825000002980232, 257169.114000000059605 ], [ 355426.190999999642372, 257169.295499999076128 ], [ 355419.67339999973774, 257169.615200001746416 ], [ 355400.376500003039837, 257170.561900001019239 ], [ 355397.955700002610683, 257170.753199998289347 ], [ 355393.922399997711182, 257170.931200001388788 ], [ 355381.824100002646446, 257171.254399999976158 ], [ 355371.340199999511242, 257171.379700001329184 ], [ 355360.035700000822544, 257173.186999998986721 ], [ 355326.926500000059605, 257178.826699998229742 ], [ 355326.874300003051758, 257184.947900000959635 ], [ 355355.944700002670288, 257180.119600001722574 ], [ 355371.286300003528595, 257177.712099999189377 ], [ 355380.1503000035882, 257178.417899999767542 ], [ 355391.402699999511242, 257182.731899999082088 ], [ 355420.255500003695488, 257203.444099999964237 ], [ 355423.604400001466274, 257205.802400000393391 ], [ 355427.565999999642372, 257201.239000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040700", "MAP": "D9-4781-T89", "PARCEL_NAM": "28E", "ACRE": ".04", "LONGITUDE": -64.96224912, "LATITUDE": 18.34473724, "OBJECTID_1": 7585, "PARCEL_NO_": "105201040700", "Tax_Legal_": "LINDBERG BAY 28E S S QTR", "Name": "VI WASTE MANAGEMENT AUTHORITY", "Address": "1 La Grande Princesse", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 8700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.381163636500006, "SHAPE_Area": 515.54020445799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355476.635899998247623, 257213.792700000107288 ], [ 355475.905100002884865, 257213.755499999970198 ], [ 355475.92790000140667, 257216.148400001227856 ], [ 355475.894299998879433, 257220.880499999970198 ], [ 355475.060400001704693, 257237.920200001448393 ], [ 355501.840999998152256, 257236.962400000542402 ], [ 355504.08330000191927, 257229.299800001084805 ], [ 355491.929499998688698, 257219.043600000441074 ], [ 355491.566500000655651, 257218.737300001084805 ], [ 355484.712700001895428, 257214.204300001263618 ], [ 355476.635899998247623, 257213.792700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040300", "MAP": "D9-4781-T89", "PARCEL_NAM": "28 REM", "ACRE": "1.470", "LONGITUDE": -64.96317063, "LATITUDE": 18.34472149, "OBJECTID_1": 7582, "PARCEL_NO_": "105201040300", "Tax_Legal_": "28 LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "JACKSON, ROY D.", "Address": "P O BOX 4547", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55600, "Improved_V": 131900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.98649665799999, "SHAPE_Area": 1486.9109027899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355419.06530000269413, 257239.927700001746416 ], [ 355417.740500003099442, 257213.064599998295307 ], [ 355389.075000002980232, 257213.508699998259544 ], [ 355390.880900003015995, 257220.940400000661612 ], [ 355379.655799999833107, 257224.896099999547005 ], [ 355373.535800002515316, 257201.371700000017881 ], [ 355357.37219999730587, 257201.8739 ], [ 355372.144900001585484, 257241.660799998790026 ], [ 355419.06530000269413, 257239.927700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040100", "MAP": "F9-1432-T64", "PARCEL_NAM": "30A", "ACRE": null, "LONGITUDE": -64.96355709, "LATITUDE": 18.34534873, "OBJECTID_1": 7580, "PARCEL_NO_": "105201040100", "Tax_Legal_": "LINDBERG 30A SOUTHSIDE QTR", "Name": "BERG, ELEANOR JACKSON", "Address": "PO Box 7916", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.923555345500006, "SHAPE_Area": 556.95537848900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355362.706399999558926, 257283.704100001603365 ], [ 355332.277199998497963, 257286.803899999707937 ], [ 355333.144000001251698, 257300.889600001275539 ], [ 355332.305299997329712, 257304.682399999350309 ], [ 355366.208200000226498, 257300.526999998837709 ], [ 355362.706399999558926, 257283.704100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040200", "MAP": "D9-8181-T008", "PARCEL_NAM": "30 REM", "ACRE": "1.30", "LONGITUDE": -64.96330164, "LATITUDE": 18.34510083, "OBJECTID_1": 7581, "PARCEL_NO_": "105201040200", "Tax_Legal_": "30 LINDBERG BAY NO 4A SOUTHSIDE QTR", "Name": "JACKSON, JEROME", "Address": "BOX 16702 SUNNY ISLES", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 191500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.636490987, "SHAPE_Area": 4305.5094533299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355332.277199998497963, 257286.803899999707937 ], [ 355362.706399999558926, 257283.704100001603365 ], [ 355366.208200000226498, 257300.526999998837709 ], [ 355392.038900002837181, 257297.36089999973774 ], [ 355398.4966000020504, 257296.569299999624491 ], [ 355413.830899998545647, 257295.006099998950958 ], [ 355411.418099999427795, 257251.897599998861551 ], [ 355424.456299997866154, 257253.082899998873472 ], [ 355423.171499997377396, 257239.776000000536442 ], [ 355329.603299997746944, 257243.232099998742342 ], [ 355331.727300003170967, 257277.86879999935627 ], [ 355332.277199998497963, 257286.803899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105203030101", "MAP": "B9-373-T72", "PARCEL_NAM": "70-T", "ACRE": "1.38", "LONGITUDE": -64.96416346, "LATITUDE": 18.33576521, "OBJECTID_1": 8558, "PARCEL_NO_": "105203030101", "Tax_Legal_": "70T&70U LINDBERG BAY SOUTHSIDE QTR.", "Name": "BEACHCOMBER HOTEL", "Address": "PO Box 2579", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 880000, "Improved_V": 1148700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.071009463, "SHAPE_Area": 5235.8288658600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355321.137599997222424, 256199.619899999350309 ], [ 355299.92679999768734, 256208.439300000667572 ], [ 355277.364799998700619, 256181.426100000739098 ], [ 355257.905500002205372, 256193.932500001043081 ], [ 355243.626500003039837, 256200.673700001090765 ], [ 355259.170800000429153, 256232.202199999243021 ], [ 355289.358900003135204, 256274.929499998688698 ], [ 355290.273800000548363, 256275.25730000063777 ], [ 355307.937100000679493, 256284.267799999564886 ], [ 355321.576099999248981, 256292.401000000536442 ], [ 355329.736599996685982, 256222.241799999028444 ], [ 355321.137599997222424, 256199.619899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105203020101", "MAP": "D9-2179-T82", "PARCEL_NAM": "70D1", "ACRE": "4.26", "LONGITUDE": -64.96343643, "LATITUDE": 18.33537669, "OBJECTID_1": 8522, "PARCEL_NO_": "105203020101", "Tax_Legal_": "LINBERG BAY 70 D & T SOUTHSIDE QUARTER", "Name": "EMERALD BEACH HOTEL", "Address": "PO Box 340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 5420200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 715.76284273099998, "SHAPE_Area": 19394.766004000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355321.576099999248981, 256292.401000000536442 ], [ 355321.666000001132488, 256297.329799998551607 ], [ 355365.537000000476837, 256299.093699999153614 ], [ 355415.009400002658367, 256304.77589999884367 ], [ 355422.289599999785423, 256302.0912000015378 ], [ 355425.536499999463558, 256299.584699999541044 ], [ 355427.18860000371933, 256294.954199999570847 ], [ 355428.05969999730587, 256287.361900001764297 ], [ 355424.181000001728535, 256269.387200001627207 ], [ 355417.129100002348423, 256245.264800000935793 ], [ 355398.234399996697903, 256191.492400001734495 ], [ 355395.133199997246265, 256176.901599999517202 ], [ 355393.707599997520447, 256154.936200000345707 ], [ 355397.094700001180172, 256135.965500000864267 ], [ 355400.404500000178814, 256126.071199998259544 ], [ 355406.151100002229214, 256114.085900001227856 ], [ 355415.95099999755621, 256099.600600000470877 ], [ 355429.775200001895428, 256085.99269999936223 ], [ 355377.785599999129772, 256036.171300001442432 ], [ 355369.785400003194809, 256028.717500001192093 ], [ 355371.342299997806549, 256035.27419999986887 ], [ 355372.839900001883507, 256048.796399999409914 ], [ 355371.142700001597404, 256058.703899998217821 ], [ 355366.177199997007847, 256073.65089999884367 ], [ 355357.941399998962879, 256093.848499998450279 ], [ 355356.303599998354912, 256096.790399998426437 ], [ 355342.407499998807907, 256118.841499999165535 ], [ 355339.968800000846386, 256121.1435999982059 ], [ 355339.142700001597404, 256123.45890000090003 ], [ 355332.620300002396107, 256131.849199999123812 ], [ 355315.52589999884367, 256150.707699999213219 ], [ 355303.337700001895428, 256161.584800001233816 ], [ 355320.35530000180006, 256197.94819999858737 ], [ 355329.736599996685982, 256222.241799999028444 ], [ 355321.576099999248981, 256292.401000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105104010100", "MAP": "D9-8234-T009", "PARCEL_NAM": "70-X", "ACRE": ".18", "LONGITUDE": -64.96522235, "LATITUDE": 18.33588704, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.798802338, "SHAPE_Area": 845.89538559000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355172.645599998533726, 256263.317699998617172 ], [ 355173.213299997150898, 256265.82209999859333 ], [ 355194.209100000560284, 256263.1114999987185 ], [ 355193.645700000226498, 256259.267700001597404 ], [ 355189.115299999713898, 256223.133699998259544 ], [ 355166.468500003218651, 256231.181000001728535 ], [ 355172.645599998533726, 256263.317699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105203030101", "MAP": "B9-373-T72", "PARCEL_NAM": "70-U", "ACRE": ".80", "LONGITUDE": -64.96465332, "LATITUDE": 18.33582865, "OBJECTID_1": 8558, "PARCEL_NO_": "105203030101", "Tax_Legal_": "70T&70U LINDBERG BAY SOUTHSIDE QTR.", "Name": "BEACHCOMBER HOTEL", "Address": "PO Box 2579", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 880000, "Improved_V": 1148700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.78656669499998, "SHAPE_Area": 2892.3007171200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355211.185900002717972, 256214.758000001311302 ], [ 355214.496899999678135, 256241.900199998170137 ], [ 355211.189599998295307, 256242.296999998390675 ], [ 355211.718800000846386, 256248.117899999022484 ], [ 355214.496899999678135, 256247.853300001472235 ], [ 355215.141800001263618, 256256.038899999111891 ], [ 355211.586499996483326, 256256.055399999022484 ], [ 355211.861900001764297, 256262.315099999308586 ], [ 355234.751500003039837, 256261.504000000655651 ], [ 355238.777699999511242, 256262.170299999415874 ], [ 355251.667900003492832, 256263.542300000786781 ], [ 355278.223999999463558, 256269.881400000303984 ], [ 355280.626800000667572, 256271.800900001078844 ], [ 355289.358900003135204, 256274.929499998688698 ], [ 355259.170800000429153, 256232.202199999243021 ], [ 355243.626500003039837, 256200.673700001090765 ], [ 355242.522600002586842, 256201.194899998605251 ], [ 355217.429799996316433, 256212.3885000012815 ], [ 355211.185900002717972, 256214.758000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105104010100", "MAP": "D9-5416-T92", "PARCEL_NAM": "70-W", "ACRE": null, "LONGITUDE": -64.96552758, "LATITUDE": 18.33596253, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.00592464299999, "SHAPE_Area": 1446.8370429399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355129.034599997103214, 256271.193500000983477 ], [ 355129.627700001001358, 256273.655200000852346 ], [ 355163.74379999935627, 256267.044599998742342 ], [ 355173.213299997150898, 256265.82209999859333 ], [ 355172.645599998533726, 256263.317699998617172 ], [ 355166.468500003218651, 256231.181000001728535 ], [ 355122.808899998664856, 256244.755800001323223 ], [ 355129.034599997103214, 256271.193500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105104010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96737904, "LATITUDE": 18.33614645, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 432.71942217200001, "SHAPE_Area": 1939.0800116200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354872.223099999129772, 256256.770399998873472 ], [ 354871.5287000015378, 256267.285500001162291 ], [ 354841.533600002527237, 256261.453200001269579 ], [ 354841.820600003004074, 256261.535999998450279 ], [ 354857.332500003278255, 256266.014400001615286 ], [ 354873.394000001251698, 256273.745200000703335 ], [ 355043.9341000020504, 256282.78319999948144 ], [ 355043.281199999153614, 256268.548500001430511 ], [ 355029.861800000071526, 256269.959600001573563 ], [ 354958.0945999994874, 256270.005499999970198 ], [ 354921.032999999821186, 256266.324700001627207 ], [ 354884.795699998736382, 256260.539599999785423 ], [ 354872.223099999129772, 256256.770399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105104010100", "MAP": "D9-8234-T009", "PARCEL_NAM": "70-3", "ACRE": ".18", "LONGITUDE": -64.96607949, "LATITUDE": 18.33610059, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.13254309499999, "SHAPE_Area": 1962.1188121499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355076.175300002098083, 256284.491900000721216 ], [ 355128.204999998211861, 256273.930900000035763 ], [ 355129.627700001001358, 256273.655200000852346 ], [ 355129.034599997103214, 256271.193500000983477 ], [ 355122.808899998664856, 256244.755800001323223 ], [ 355105.83500000089407, 256249.471999999135733 ], [ 355078.32150000333786, 256260.85700000077486 ], [ 355070.174999997019768, 256263.059799998998642 ], [ 355054.074600003659725, 256267.413499999791384 ], [ 355043.281199999153614, 256268.548500001430511 ], [ 355043.9341000020504, 256282.78319999948144 ], [ 355076.175300002098083, 256284.491900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105201065200", "MAP": "D9-9052-T016", "PARCEL_NAM": "15 REM", "ACRE": "1.158", "LONGITUDE": -64.96440669, "LATITUDE": 18.34014223, "OBJECTID_1": 7778, "PARCEL_NO_": "105201065200", "Tax_Legal_": "PAR 15 REM LINDBERG BAY 4A SOUTHSIDE QTR", "Name": "KESWICK GUARANTY INC", "Address": "18285 Blue Ridge Tpke", "City": "Gordonsville", "State": "Virginia", "Zip": 22942, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.72860416899999, "SHAPE_Area": 4970.2648375400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355294.415399998426437, 256709.486000001430511 ], [ 355292.505000002682209, 256675.931200001388788 ], [ 355258.623700000345707, 256677.553700000047684 ], [ 355230.388400003314018, 256679.011399999260902 ], [ 355232.337499998509884, 256732.88120000064373 ], [ 355233.206500001251698, 256756.89809999987483 ], [ 355296.38570000231266, 256756.246700000017881 ], [ 355295.228500001132488, 256734.848600000143051 ], [ 355295.140600003302097, 256731.729499999433756 ], [ 355294.609200000762939, 256712.889800000935793 ], [ 355294.415399998426437, 256709.486000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105201066300", "MAP": "D9-8270-T009", "PARCEL_NAM": "14A", "ACRE": null, "LONGITUDE": -64.96348252, "LATITUDE": 18.34085625, "OBJECTID_1": 7789, "PARCEL_NO_": "105201066300", "Tax_Legal_": "PCL OF LINDBERG BAY S S QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 509.56261754899998, "SHAPE_Area": 2178.1396686799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355357.870999999344349, 256672.923099998384714 ], [ 355365.597999997437, 256842.118900001049042 ], [ 355357.450800001621246, 256855.538100000470877 ], [ 355340.553199999034405, 256863.643100000917912 ], [ 355330.502599999308586, 256863.812199998646975 ], [ 355311.382100000977516, 256864.076400000602007 ], [ 355311.798600003123283, 256872.195000000298023 ], [ 355374.716099999845028, 256869.754599999636412 ], [ 355371.335500001907349, 256793.311099998652935 ], [ 355369.303199999034405, 256747.909400001168251 ], [ 355367.944099999964237, 256718.13399999961257 ], [ 355365.913599997758865, 256672.521200001239777 ], [ 355357.870999999344349, 256672.923099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105201044800", "MAP": "D9-8270-T009", "PARCEL_NAM": "14C", "ACRE": ".98", "LONGITUDE": -64.96370786, "LATITUDE": 18.34107602, "OBJECTID_1": 7626, "PARCEL_NO_": "105201044800", "Tax_Legal_": "LINDBERG BAY 14 SOUTHSIDE QTR", "Name": "PARROTT, OZIAS", "Address": "PO Box 337", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 447000, "Improved_V": 235200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.45819744200003, "SHAPE_Area": 4353.5854021499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355362.679200001060963, 256778.206599999219179 ], [ 355307.330200001597404, 256785.090399999171495 ], [ 355311.382100000977516, 256864.076400000602007 ], [ 355330.502599999308586, 256863.812199998646975 ], [ 355340.553199999034405, 256863.643100000917912 ], [ 355357.450800001621246, 256855.538100000470877 ], [ 355365.597999997437, 256842.118900001049042 ], [ 355362.679200001060963, 256778.206599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105201044900", "MAP": null, "PARCEL_NAM": "14B", "ACRE": null, "LONGITUDE": -64.96355736, "LATITUDE": 18.339859, "OBJECTID_1": 7627, "PARCEL_NO_": "105201044900", "Tax_Legal_": "LINDBERG BAY 14B SOUTHSIDE QTR", "Name": "PARROTT, AUSTIN", "Address": "PO Box 8336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.197218121899994, "SHAPE_Area": 270.452370358 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355347.899899996817112, 256673.421300001442432 ], [ 355348.513800002634525, 256699.648200001567602 ], [ 355359.07599999755621, 256699.307500001043081 ], [ 355357.870999999344349, 256672.923099998384714 ], [ 355347.899899996817112, 256673.421300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105201044800", "MAP": "D9-8270-T009", "PARCEL_NAM": "14", "ACRE": "1.28", "LONGITUDE": -64.96376308000001, "LATITUDE": 18.34025324, "OBJECTID_1": 7626, "PARCEL_NO_": "105201044800", "Tax_Legal_": "LINDBERG BAY 14 SOUTHSIDE QTR", "Name": "PARROTT, OZIAS", "Address": "PO Box 337", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 447000, "Improved_V": 235200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.95086765999997, "SHAPE_Area": 5731.0435320200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355322.351099997758865, 256674.697799999266863 ], [ 355302.184299997985363, 256675.588199999183416 ], [ 355303.500299997627735, 256710.429400000721216 ], [ 355307.330200001597404, 256785.090399999171495 ], [ 355362.679200001060963, 256778.206599999219179 ], [ 355359.07599999755621, 256699.307500001043081 ], [ 355348.513800002634525, 256699.648200001567602 ], [ 355347.899899996817112, 256673.421300001442432 ], [ 355322.351099997758865, 256674.697799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604022000", "MAP": "D9-4382-T88", "PARCEL_NAM": "39V", "ACRE": ".24", "LONGITUDE": -64.96656372, "LATITUDE": 18.35136238, "OBJECTID_1": 2708, "PARCEL_NO_": "102604022000", "Tax_Legal_": "LINDBERG BAY 39V S S QTR.", "Name": "Esther Leona Walters and John Walters, Jr.", "Address": "PO Box 308085", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21700, "Improved_V": 200700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.92429665700001, "SHAPE_Area": 1595.4798745799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355043.544399999082088, 257976.763000000268221 ], [ 355047.098700001835823, 257938.162000000476837 ], [ 355040.669600002467632, 257936.10530000180006 ], [ 355034.231899999082088, 257934.045899998396635 ], [ 355031.042000003159046, 257933.041900001466274 ], [ 355017.829000003635883, 257928.883299998939037 ], [ 355017.121799997985363, 257933.75450000166893 ], [ 355016.537799999117851, 257937.776599999517202 ], [ 355013.028599999845028, 257961.947799999266863 ], [ 354993.633100003004074, 257960.942400000989437 ], [ 354994.836400002241135, 257974.644900001585484 ], [ 355016.136900000274181, 257975.694299999624491 ], [ 355041.119999997317791, 257977.376400001347065 ], [ 355043.544399999082088, 257976.763000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604022200", "MAP": "F9-109-T57", "PARCEL_NAM": "39D", "ACRE": null, "LONGITUDE": -64.96634825, "LATITUDE": 18.35072873, "OBJECTID_1": 2710, "PARCEL_NO_": "102604022200", "Tax_Legal_": "LINDBERG BAY 39D S S QTR", "Name": "LEWIS, SHERRI N.", "Address": "404-59 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45200, "Improved_V": 218100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.337858361, "SHAPE_Area": 1387.2865486200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355036.046599999070168, 257915.22859999909997 ], [ 355064.292000003159046, 257907.694099999964237 ], [ 355061.4712999984622, 257860.175000000745058 ], [ 355036.436099998652935, 257864.614100001752377 ], [ 355033.553199999034405, 257865.145799998193979 ], [ 355036.046599999070168, 257915.22859999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604029100", "MAP": "D9-8110-T008", "PARCEL_NAM": "39B-2", "ACRE": ".04", "LONGITUDE": -64.96657675, "LATITUDE": 18.35102543, "OBJECTID_1": 2772, "PARCEL_NO_": "102604029100", "Tax_Legal_": "39B-2 ROW LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "HODGE, ELENDA, MICHAEL, STEPHANIE & STEPHAN", "Address": "PO Box 9654", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.804162169900003, "SHAPE_Area": 123.82513021600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355036.046599999070168, 257915.22859999909997 ], [ 355029.997100003063679, 257914.819299999624491 ], [ 355026.168799996376038, 257913.880899999290705 ], [ 355021.614200003445148, 257912.3918999992311 ], [ 355017.669600002467632, 257925.977099999785423 ], [ 355027.078000001609325, 257928.310300000011921 ], [ 355025.29900000244379, 257924.425500001758337 ], [ 355026.349600002169609, 257921.264699999243021 ], [ 355033.580200001597404, 257915.886500000953674 ], [ 355036.046599999070168, 257915.22859999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604029200", "MAP": "D9-8110-T008", "PARCEL_NAM": "39B-1", "ACRE": ".23", "LONGITUDE": -64.96659811000001, "LATITUDE": 18.35075736, "OBJECTID_1": 2773, "PARCEL_NO_": "102604029200", "Tax_Legal_": "39B-1 LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "HODGE, MICHAEL", "Address": "PO Box 9654", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.105510095, "SHAPE_Area": 1172.4340245000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355009.784599997103214, 257869.462200000882149 ], [ 355007.169699996709824, 257891.397199999541044 ], [ 355008.879799999296665, 257905.935499999672174 ], [ 355021.614200003445148, 257912.3918999992311 ], [ 355026.168799996376038, 257913.880899999290705 ], [ 355029.997100003063679, 257914.819299999624491 ], [ 355036.046599999070168, 257915.22859999909997 ], [ 355033.553199999034405, 257865.145799998193979 ], [ 355021.090999998152256, 257867.443799998611212 ], [ 355009.784599997103214, 257869.462200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604029000", "MAP": "D9-8110-T008", "PARCEL_NAM": "39B-3", "ACRE": ".05", "LONGITUDE": -64.96676591000001, "LATITUDE": 18.35098936, "OBJECTID_1": 2771, "PARCEL_NO_": "102604029000", "Tax_Legal_": "39B-3 LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "HODGE, ELISA G & STEPHANIE", "Address": "4333 Sheldon Ave", "City": "Baltimore", "State": "Maryland", "Zip": 21206, "Country": "United States", "Land_Value": 4100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.730554272500001, "SHAPE_Area": 281.67064505399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354988.731499999761581, 257905.124800000339746 ], [ 354989.540200002491474, 257914.333999998867512 ], [ 355017.669600002467632, 257925.977099999785423 ], [ 355020.272699996829033, 257917.012200001627207 ], [ 354988.731499999761581, 257905.124800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604021300", "MAP": "F9-3456-T76", "PARCEL_NAM": "39-1", "ACRE": null, "LONGITUDE": -64.96684817000001, "LATITUDE": 18.35040479, "OBJECTID_1": 2703, "PARCEL_NO_": "102604021300", "Tax_Legal_": "LINDBERG BAY 39-1 S.S. QTR.", "Name": "BELLA VISTA INC", "Address": "PO Box 11299", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.829819614, "SHAPE_Area": 1016.33339449 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354982.181000001728535, 257830.531399998813868 ], [ 354985.961999997496605, 257873.588199999183416 ], [ 355009.784599997103214, 257869.462200000882149 ], [ 355007.696599997580051, 257830.603900000452995 ], [ 354982.181000001728535, 257830.531399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604022300", "MAP": "D9-8110-T008", "PARCEL_NAM": "39B", "ACRE": ".23", "LONGITUDE": -64.96681093, "LATITUDE": 18.35077246, "OBJECTID_1": 2711, "PARCEL_NO_": "102604022300", "Tax_Legal_": "39B REM LINDBERG BAY NO.4A SOUTHSIDE QTR", "Name": "HODGE, ELENDA", "Address": "PO Box 9654", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.35973750700001, "SHAPE_Area": 852.11524564599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354985.961999997496605, 257873.588199999183416 ], [ 354988.731499999761581, 257905.124800000339746 ], [ 355020.272699996829033, 257917.012200001627207 ], [ 355021.614200003445148, 257912.3918999992311 ], [ 355008.879799999296665, 257905.935499999672174 ], [ 355007.169699996709824, 257891.397199999541044 ], [ 355009.784599997103214, 257869.462200000882149 ], [ 354985.961999997496605, 257873.588199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020400", "MAP": "D9-7122-T002", "PARCEL_NAM": "44B", "ACRE": ".543", "LONGITUDE": -64.97079282, "LATITUDE": 18.35322895, "OBJECTID_1": 2695, "PARCEL_NO_": "102604020400", "Tax_Legal_": "LINDBERG BAY 44B REMAINDER\nNo.4A SOUTHSIDE QTR.", "Name": "AXIS DEVELOPMENT GROUP LLC", "Address": "9010 Estate Cottage", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 169900, "Improved_V": 826300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.39554799500002, "SHAPE_Area": 2653.52011326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354646.469499997794628, 258149.563299998641014 ], [ 354614.601599998772144, 258144.906899999827147 ], [ 354600.578699998557568, 258145.171500001102686 ], [ 354600.181800000369549, 258142.790199998766184 ], [ 354586.026600003242493, 258141.864199999719858 ], [ 354583.77759999781847, 258143.583999998867512 ], [ 354561.420299999415874, 258149.27250000089407 ], [ 354558.509800001978874, 258148.214200001209974 ], [ 354554.276500001549721, 258148.081900000572205 ], [ 354554.678000003099442, 258136.6886 ], [ 354547.212700001895428, 258136.726599998772144 ], [ 354541.409400001168251, 258137.630699999630451 ], [ 354540.979400001466274, 258189.231699999421835 ], [ 354558.33839999884367, 258184.990899998694658 ], [ 354580.520199999213219, 258176.436299998313189 ], [ 354596.643899999558926, 258167.833299998193979 ], [ 354625.203599996864796, 258157.221900001168251 ], [ 354646.469499997794628, 258149.563299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103003025400", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-11", "ACRE": ".51", "LONGITUDE": -64.91603493, "LATITUDE": 18.34877894, "OBJECTID_1": 5770, "PARCEL_NO_": "103003025400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1G-11 No.4 GREAT NORTHSIDE QTR.", "Name": "WADHWANI, PAYAL V. & SANGEETA BUDHRANI", "Address": "PO Box 878", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 82100, "Improved_V": 454200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.546563631, "SHAPE_Area": 1951.0430785399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360403.407300002872944, 257706.163199998438358 ], [ 360388.901500001549721, 257681.182100001722574 ], [ 360372.003799997270107, 257695.712000001221895 ], [ 360361.455300003290176, 257703.436099998652935 ], [ 360348.476899996399879, 257712.406899999827147 ], [ 360330.658900000154972, 257721.549199998378754 ], [ 360346.585600003600121, 257745.111000001430511 ], [ 360366.028800003230572, 257734.504299998283386 ], [ 360403.407300002872944, 257706.163199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103003026300", "MAP": "A9-97-T68", "PARCEL_NAM": "2A-1", "ACRE": ".51", "LONGITUDE": -64.91544196, "LATITUDE": 18.34832789, "OBJECTID_1": 5779, "PARCEL_NO_": "103003026300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 2A-1 GR NORTHSIDE", "Name": "MILLS, BLANCHE K. & MILTON V", "Address": "PO Box 302464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82100, "Improved_V": 317300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.07469985099999, "SHAPE_Area": 2735.0377033 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360473.226899996399879, 257649.25 ], [ 360454.86089999973774, 257624.407200001180172 ], [ 360410.182899996638298, 257662.882800001651049 ], [ 360388.901500001549721, 257681.182100001722574 ], [ 360403.407300002872944, 257706.163199998438358 ], [ 360426.899599999189377, 257688.35080000013113 ], [ 360448.812100000679493, 257671.853799998760223 ], [ 360467.494000002741814, 257655.963599998503923 ], [ 360473.226899996399879, 257649.25 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904021300", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-3", "ACRE": ".48", "LONGITUDE": -64.91774757, "LATITUDE": 18.3491224, "OBJECTID_1": 5021, "PARCEL_NO_": "102904021300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1G-3 OF 47 EST THOMAS", "Name": "REEVE, JOHN & JUDITH NANCY (TRUSTEES)", "Address": "PO Box 8803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96400, "Improved_V": 370300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.90810663299999, "SHAPE_Area": 2543.0419762199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360156.292000003159046, 257739.845400001853704 ], [ 360175.880000002682209, 257785.716299999505281 ], [ 360218.984999999403954, 257767.920200001448393 ], [ 360192.849600002169609, 257712.188700001686811 ], [ 360156.292000003159046, 257739.845400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904020800", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-2", "ACRE": ".48", "LONGITUDE": -64.91807811, "LATITUDE": 18.3493568, "OBJECTID_1": 5016, "PARCEL_NO_": "102904020800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1G GREAT NORTHSIDE QTR.", "Name": "FRANCIS, REGINALD", "Address": "PO Box 6755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 96100, "Improved_V": 213300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.32442802599999, "SHAPE_Area": 1976.08304443 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360156.292000003159046, 257739.845400001853704 ], [ 360129.554099999368191, 257759.112700000405312 ], [ 360136.531400002539158, 257776.422100000083447 ], [ 360124.363399997353554, 257781.612500000745058 ], [ 360167.736000001430511, 257820.485199999064207 ], [ 360163.821299999952316, 257806.732099998742342 ], [ 360163.088699996471405, 257798.071299999952316 ], [ 360168.806599996984005, 257789.463199999183416 ], [ 360172.85980000346899, 257786.963300000876188 ], [ 360175.880000002682209, 257785.716299999505281 ], [ 360156.292000003159046, 257739.845400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904020900", "MAP": "A9-97-T68", "PARCEL_NAM": "1G-1", "ACRE": ".50", "LONGITUDE": -64.91817787, "LATITUDE": 18.34976788, "OBJECTID_1": 5017, "PARCEL_NO_": "102904020900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1G-1 GREAT NORTHSIDE", "Name": "DAAS, NEDAA S. & AHED Y.", "Address": "PO Box 502967", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 81200, "Improved_V": 163800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.13359250900001, "SHAPE_Area": 2536.1181749799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360124.363399997353554, 257781.612500000745058 ], [ 360108.951700001955032, 257788.186700001358986 ], [ 360141.531199999153614, 257867.555700000375509 ], [ 360160.240000002086163, 257848.499299999326468 ], [ 360168.396700002253056, 257837.589200001209974 ], [ 360170.871299996972084, 257831.065499998629093 ], [ 360167.736000001430511, 257820.485199999064207 ], [ 360124.363399997353554, 257781.612500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904026500", "MAP": "A9-516-T98", "PARCEL_NAM": "B-2", "ACRE": ".765", "LONGITUDE": -64.91880915, "LATITUDE": 18.34914741, "OBJECTID_1": 5079, "PARCEL_NO_": "102904026500", "Tax_Legal_": "ROSS B-2 #8 NEW QTR.", "Name": "VANTERPOOL, STANLEY", "Address": "499 Fort Washington Ave", "City": "New York", "State": "New York", "Zip": 10033, "Country": "United States", "Land_Value": 115400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.08477068600001, "SHAPE_Area": 3008.85321273 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360083.870800003409386, 257713.004700001329184 ], [ 360031.299199998378754, 257738.942400000989437 ], [ 360039.888700000941753, 257762.098900001496077 ], [ 360061.315700002014637, 257754.030999999493361 ], [ 360090.656800001859665, 257799.491999998688698 ], [ 360099.468900002539158, 257794.046599999070168 ], [ 360108.951700001955032, 257788.186700001358986 ], [ 360089.481600001454353, 257730.129999998956919 ], [ 360083.870800003409386, 257713.004700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010100", "MAP": "A9-508B-T98", "PARCEL_NAM": "AREA REM M", "ACRE": null, "LONGITUDE": -64.94965673, "LATITUDE": 18.32073648, "OBJECTID_1": 87159, "PARCEL_NO_": "507104010100", "Tax_Legal_": "WATER ISLAND SOUTHSIDE QUARTER", "Name": "GOVERNMENT OF THE U. S. V. I.", "Address": "000 USVI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12173300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 457.947367719, "SHAPE_Area": 10828.4932943 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356920.622000001370907, 254572.334600001573563 ], [ 356917.519799999892712, 254572.173900000751019 ], [ 356907.125799998641014, 254561.745200000703335 ], [ 356901.478000000119209, 254562.121199999004602 ], [ 356899.073499999940395, 254560.41270000115037 ], [ 356896.695900000631809, 254555.538100000470877 ], [ 356889.45889999717474, 254553.156899999827147 ], [ 356884.620999999344349, 254553.117300000041723 ], [ 356882.193099997937679, 254554.152899999171495 ], [ 356876.4949000030756, 254560.438999999314547 ], [ 356873.262500002980232, 254561.256999999284744 ], [ 356869.234499998390675, 254560.80180000141263 ], [ 356859.5929000005126, 254556.712099999189377 ], [ 356854.791000001132488, 254552.450899999588728 ], [ 356855.680100001394749, 254542.747900001704693 ], [ 356854.88629999756813, 254541.263799998909235 ], [ 356853.279100000858307, 254540.617300000041723 ], [ 356852.516000002622604, 254535.544799998402596 ], [ 356846.886200003325939, 254533.809999998658895 ], [ 356842.895900003612041, 254528.922200001776218 ], [ 356838.880599997937679, 254526.989500001072884 ], [ 356828.403899997472763, 254526.270500000566244 ], [ 356825.169699996709824, 254527.299499999731779 ], [ 356822.727300003170967, 254530.023699998855591 ], [ 356819.496699996292591, 254530.630499999970198 ], [ 356812.25789999961853, 254528.460299998521805 ], [ 356809.856899999082088, 254526.329799998551607 ], [ 356779.561200000345707, 254536.279899999499321 ], [ 356778.140600003302097, 254597.206900000572205 ], [ 356777.532999999821186, 254623.263999998569489 ], [ 356792.071999996900558, 254626.242499999701977 ], [ 356800.145900003612041, 254625.042100001126528 ], [ 356820.354099996387959, 254619.296799998730421 ], [ 356831.651500001549721, 254618.333799999207258 ], [ 356846.960600003600121, 254619.725699998438358 ], [ 356857.417499996721745, 254622.766600001603365 ], [ 356878.284500002861023, 254634.336399998515844 ], [ 356887.286100000143051, 254640.845600001513958 ], [ 356920.622000001370907, 254572.334600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010100", "MAP": "A9-508-T98", "PARCEL_NAM": "AREA L", "ACRE": null, "LONGITUDE": -64.94793591, "LATITUDE": 18.32234571, "OBJECTID_1": 87159, "PARCEL_NO_": "507104010100", "Tax_Legal_": "WATER ISLAND SOUTHSIDE QUARTER", "Name": "GOVERNMENT OF THE U. S. V. I.", "Address": "000 USVI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12173300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 612.87098477500001, "SHAPE_Area": 11425.975647900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356993.6283999979496, 254685.562800001353025 ], [ 356977.46169999986887, 254729.718100000172853 ], [ 356992.400399997830391, 254774.592199999839067 ], [ 356996.307899996638298, 254789.189599998295307 ], [ 356996.284500002861023, 254791.933600001037121 ], [ 356935.575499996542931, 254819.089999999850988 ], [ 356939.547700002789497, 254826.088599998503923 ], [ 356939.531499996781349, 254827.988299999386072 ], [ 356944.272299997508526, 254839.426199998706579 ], [ 356948.275100000202656, 254842.836399998515844 ], [ 356979.644000001251698, 254852.170200001448393 ], [ 356997.377400003373623, 254852.948600001633167 ], [ 357011.426399998366833, 254812.955800000578165 ], [ 357013.886699996888638, 254808.120799999684095 ], [ 357023.857400000095367, 254773.583099998533726 ], [ 357027.980599999427795, 254762.850999999791384 ], [ 357031.742499999701977, 254751.530900001525879 ], [ 357059.259199999272823, 254763.172499999403954 ], [ 357091.131700001657009, 254786.895799998193979 ], [ 357103.239200003445148, 254731.591899998486042 ], [ 357101.666199997067451, 254726.934900000691414 ], [ 357093.635399997234344, 254723.069499999284744 ], [ 357077.624200001358986, 254709.42850000038743 ], [ 357068.7871999964118, 254705.556499999016523 ], [ 357051.863600000739098, 254704.362500000745058 ], [ 357044.619400002062321, 254702.825599998235703 ], [ 356993.6283999979496, 254685.562800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507201020900", "MAP": "A9-508B-T98", "PARCEL_NAM": "75W-2", "ACRE": null, "LONGITUDE": -64.95802167, "LATITUDE": 18.31896039, "OBJECTID_1": 87277, "PARCEL_NO_": "507201020900", "Tax_Legal_": "75 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.95388652099999, "SHAPE_Area": 1324.12056908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355937.694499999284744, 254394.904800001531839 ], [ 355971.219800002872944, 254394.039900001138449 ], [ 355982.656000003218651, 254388.0287000015378 ], [ 355975.40089999884367, 254366.939300000667572 ], [ 355957.260300002992153, 254359.644799999892712 ], [ 355934.728299997746944, 254362.684399999678135 ], [ 355934.709700003266335, 254364.857700001448393 ], [ 355933.080899998545647, 254366.744199998676777 ], [ 355933.057599999010563, 254369.488200001418591 ], [ 355941.876599997282028, 254375.471000000834465 ], [ 355941.054099999368191, 254377.364199999719858 ], [ 355933.795500002801418, 254377.515799999237061 ], [ 355933.779399998486042, 254379.415500000119209 ], [ 355935.375799998641014, 254381.328499998897314 ], [ 355939.405599996447563, 254381.572500001639128 ], [ 355941.007399998605251, 254382.852200001478195 ], [ 355940.18129999935627, 254385.167500000447035 ], [ 355938.557899996638298, 254386.420699998736382 ], [ 355937.694499999284744, 254394.904800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507201020900", "MAP": "A9-508B-T98", "PARCEL_NAM": "75W-1", "ACRE": null, "LONGITUDE": -64.95793802, "LATITUDE": 18.31922892, "OBJECTID_1": 87277, "PARCEL_NO_": "507201020900", "Tax_Legal_": "75 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.13031945700001, "SHAPE_Area": 1373.9592877600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355982.656000003218651, 254388.0287000015378 ], [ 355971.219800002872944, 254394.039900001138449 ], [ 355937.694499999284744, 254394.904800001531839 ], [ 355937.677799999713898, 254395.068399999290705 ], [ 355936.052599996328354, 254396.532699998468161 ], [ 355936.032899998128414, 254398.854600001126528 ], [ 355939.241899996995926, 254400.780699998140335 ], [ 355944.085199996829033, 254400.187100000679493 ], [ 355946.468199998140335, 254404.428399998694658 ], [ 355945.622299998998642, 254409.065600000321865 ], [ 355943.203400000929832, 254409.045800000429153 ], [ 355939.996100001037121, 254406.908599998801947 ], [ 355938.378100000321865, 254407.528599999845028 ], [ 355936.747500002384186, 254409.626200001686811 ], [ 355935.916000001132488, 254412.574700001627207 ], [ 355936.693499997258186, 254415.958599999547005 ], [ 355939.107100002467632, 254416.611600000411272 ], [ 355943.957500003278255, 254415.173700001090765 ], [ 355945.559399999678135, 254416.453299999237061 ], [ 355944.727899998426437, 254419.401799999177456 ], [ 355971.759300000965595, 254424.052299998700619 ], [ 355975.179700002074242, 254424.640700001269579 ], [ 355993.081500001251698, 254418.333999998867512 ], [ 355982.656000003218651, 254388.0287000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013300", "MAP": "D9-8776-T013", "PARCEL_NAM": "2G-3", "ACRE": ".504", "LONGITUDE": -64.93825939, "LATITUDE": 18.36082119, "OBJECTID_1": 4052, "PARCEL_NO_": "102802013300", "Tax_Legal_": "2G ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BRYAN, RONNIE", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032621, "Country": "United States", "Land_Value": 245300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.22108200599999, "SHAPE_Area": 2602.4323860700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358015.358400002121925, 258984.544900000095367 ], [ 357976.554999999701977, 259041.010999999940395 ], [ 357983.278200000524521, 259052.285500001162291 ], [ 357994.813199996948242, 259066.859200000762939 ], [ 357997.29280000180006, 259069.364500001072884 ], [ 358041.561200000345707, 259021.119300000369549 ], [ 358015.358400002121925, 258984.544900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602026000", "MAP": "D9-8778-T013", "PARCEL_NAM": "8-1-J", "ACRE": ".615", "LONGITUDE": -64.97222204000001, "LATITUDE": 18.36392159, "OBJECTID_1": 2458, "PARCEL_NO_": "102602026000", "Tax_Legal_": "REM 8 NELTJBERG WESTERN SECTION No.6 LITTLE NORTHSIDE QUARTER", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.381896122, "SHAPE_Area": 2028.5795349800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354462.20549999922514, 259334.603999998420477 ], [ 354443.101099997758865, 259334.01969999819994 ], [ 354413.095100000500679, 259303.714999999850988 ], [ 354387.357100002467632, 259373.47580000013113 ], [ 354381.206500001251698, 259390.949799999594688 ], [ 354389.415899999439716, 259382.785300001502037 ], [ 354392.396799996495247, 259379.577899999916553 ], [ 354402.528599999845028, 259369.083799999207258 ], [ 354415.908699996769428, 259358.909400001168251 ], [ 354428.374099999666214, 259352.252599999308586 ], [ 354437.563100002706051, 259348.800999999046326 ], [ 354444.094800002872944, 259345.034400001168251 ], [ 354462.20549999922514, 259334.603999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602026400", "MAP": "D9-8778-T013", "PARCEL_NAM": "8-1-G", "ACRE": ".518", "LONGITUDE": -64.97128193, "LATITUDE": 18.36337037, "OBJECTID_1": 2462, "PARCEL_NO_": "102602026400", "Tax_Legal_": "8-1-G NELTJBERG WESTERN SECTION No.6 LITTLE NORTHSIDE QUARTER", "Name": "BOSCHULTE, JR., JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.97156074, "SHAPE_Area": 2419.6924782900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354475.633599996566772, 259284.010999999940395 ], [ 354475.875699996948242, 259284.321800000965595 ], [ 354497.926500000059605, 259313.07319999858737 ], [ 354502.89469999819994, 259309.372699998319149 ], [ 354513.877999998629093, 259303.291700001806021 ], [ 354526.331699997186661, 259298.10359999909997 ], [ 354536.128200002014637, 259292.600600000470877 ], [ 354540.584399998188019, 259289.698699999600649 ], [ 354550.402000002563, 259281.552200000733137 ], [ 354556.943199999630451, 259276.610700000077486 ], [ 354532.375399999320507, 259252.275100000202656 ], [ 354475.633599996566772, 259284.010999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602026200", "MAP": "D9-8778-T013", "PARCEL_NAM": "8-1-E", "ACRE": ".541", "LONGITUDE": -64.97199158, "LATITUDE": 18.3633986, "OBJECTID_1": 2460, "PARCEL_NO_": "102602026200", "Tax_Legal_": "8-1-E NELTJBERG WESTERN SECTION No.6 LITTLE NORTHSIDE QUARTER", "Name": "XAVIER, VERNON & CATHERINE KING", "Address": "PO Box 303709", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.87210656600001, "SHAPE_Area": 2121.0564401500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354475.633599996566772, 259284.010999999940395 ], [ 354452.389399997889996, 259254.169100001454353 ], [ 354439.939400002360344, 259259.071299999952316 ], [ 354427.821299999952316, 259261.716299999505281 ], [ 354425.326800003647804, 259270.561799999326468 ], [ 354413.095100000500679, 259303.714999999850988 ], [ 354429.371399998664856, 259320.153299998492002 ], [ 354446.453599996864796, 259300.331500001251698 ], [ 354475.633599996566772, 259284.010999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602026000", "MAP": "D9-8778-T013", "PARCEL_NAM": "8-1-H", "ACRE": ".515", "LONGITUDE": -64.97177479, "LATITUDE": 18.36364759, "OBJECTID_1": 2458, "PARCEL_NO_": "102602026000", "Tax_Legal_": "REM 8 NELTJBERG WESTERN SECTION No.6 LITTLE NORTHSIDE QUARTER", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.71989464500001, "SHAPE_Area": 2000.6699036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354497.926500000059605, 259313.07319999858737 ], [ 354475.875699996948242, 259284.321800000965595 ], [ 354475.633599996566772, 259284.010999999940395 ], [ 354446.453599996864796, 259300.331500001251698 ], [ 354429.371399998664856, 259320.153299998492002 ], [ 354443.101099997758865, 259334.01969999819994 ], [ 354462.20549999922514, 259334.603999998420477 ], [ 354476.153200000524521, 259327.371599998325109 ], [ 354483.866999998688698, 259323.614500001072884 ], [ 354488.6233000010252, 259320.127500001341105 ], [ 354496.651399999856949, 259314.022900000214577 ], [ 354497.926500000059605, 259313.07319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104023600", "MAP": "A9-782-T013", "PARCEL_NAM": "19B", "ACRE": "13.69", "LONGITUDE": -64.94951805, "LATITUDE": 18.36727814, "OBJECTID_1": 604, "PARCEL_NO_": "101104023600", "Tax_Legal_": "19D HULL BAY (ROW) LITTLE NORTHSIDE", "Name": "BRYAN, LEOPOLD & SALVADOR", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1301.15517486, "SHAPE_Area": 60561.363466000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356852.623800002038479, 259918.210900001227856 ], [ 356915.375900000333786, 259890.245400000363588 ], [ 356915.179099999368191, 259863.636900000274181 ], [ 356906.985399998724461, 259686.27760000154376 ], [ 356862.343000002205372, 259687.3108000010252 ], [ 356861.146499998867512, 259643.897999998182058 ], [ 356905.400700002908707, 259641.886999998241663 ], [ 356905.062399998307228, 259631.351199999451637 ], [ 356901.847999997437, 259630.058299999684095 ], [ 356897.848800003528595, 259626.225900001823902 ], [ 356894.654100000858307, 259622.611200001090765 ], [ 356893.108000002801418, 259614.788100000470877 ], [ 356894.762000001966953, 259609.946400001645088 ], [ 356903.690800003707409, 259603.053399998694658 ], [ 356904.538400001823902, 259598.205200001597404 ], [ 356903.026500001549721, 259586.371599998325109 ], [ 356902.3783999979496, 259567.790100000798702 ], [ 356899.246699996292591, 259556.787599999457598 ], [ 356894.484399996697903, 259547.882699999958277 ], [ 356884.093999996781349, 259537.031800001859665 ], [ 356873.656900003552437, 259531.669100001454353 ], [ 356863.194600000977516, 259529.261399999260902 ], [ 356855.127899996936321, 259529.617600001394749 ], [ 356847.856700003147125, 259531.246800001710653 ], [ 356834.093599997460842, 259537.678100001066923 ], [ 356820.346799999475479, 259542.209600001573563 ], [ 356824.747699998319149, 259593.541400000452995 ], [ 356777.954599998891354, 259596.324799999594688 ], [ 356773.515900000929832, 259549.425700001418591 ], [ 356763.010499998927116, 259552.08390000090003 ], [ 356754.103299997746944, 259556.443999998271465 ], [ 356733.8141999989748, 259571.687800001353025 ], [ 356740.142399996519089, 259586.093899998813868 ], [ 356748.873400002717972, 259602.419599998742342 ], [ 356756.806999996304512, 259617.683299999684095 ], [ 356743.796400003135204, 259630.453499998897314 ], [ 356749.082699999213219, 259672.504399999976158 ], [ 356715.919600002467632, 259684.476399999111891 ], [ 356683.336199998855591, 259723.050900001078844 ], [ 356689.581699997186661, 259747.166700001806021 ], [ 356694.229000002145767, 259769.580600000917912 ], [ 356701.506300002336502, 259861.888099998235703 ], [ 356724.043499998748302, 259866.716600000858307 ], [ 356744.185099996626377, 259868.781300000846386 ], [ 356777.261900000274181, 259866.941100001335144 ], [ 356806.280199997127056, 259868.234099999070168 ], [ 356816.746100001037121, 259870.2195999994874 ], [ 356823.16780000180006, 259873.649599999189377 ], [ 356827.172399997711182, 259876.848799999803305 ], [ 356831.947300001978874, 259884.276099998503923 ], [ 356837.524999998509884, 259892.13230000063777 ], [ 356843.8783999979496, 259903.583299998193979 ], [ 356847.866800002753735, 259908.682199999690056 ], [ 356851.04169999808073, 259914.61879999935627 ], [ 356852.643500000238419, 259915.898499999195337 ], [ 356852.623800002038479, 259918.210900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104023600", "MAP": "A9-782-T013", "PARCEL_NAM": "19C", "ACRE": ".52", "LONGITUDE": -64.9488484, "LATITUDE": 18.36665581, "OBJECTID_1": 604, "PARCEL_NO_": "101104023600", "Tax_Legal_": "19D HULL BAY (ROW) LITTLE NORTHSIDE", "Name": "BRYAN, LEOPOLD & SALVADOR", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.81001514900001, "SHAPE_Area": 1947.88156751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356905.400700002908707, 259641.886999998241663 ], [ 356861.146499998867512, 259643.897999998182058 ], [ 356862.343000002205372, 259687.3108000010252 ], [ 356906.985399998724461, 259686.27760000154376 ], [ 356905.647600002586842, 259657.320500001311302 ], [ 356905.699699997901917, 259651.199200000613928 ], [ 356905.400700002908707, 259641.886999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104023600", "MAP": "A9-782-T013", "PARCEL_NAM": "19A", "ACRE": "20.24", "LONGITUDE": -64.94936111, "LATITUDE": 18.37040648, "OBJECTID_1": 604, "PARCEL_NO_": "101104023600", "Tax_Legal_": "19D HULL BAY (ROW) LITTLE NORTHSIDE", "Name": "BRYAN, LEOPOLD & SALVADOR", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1909.08752869, "SHAPE_Area": 71046.082389899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356915.375900000333786, 259890.245400000363588 ], [ 356852.623800002038479, 259918.210900001227856 ], [ 356852.481700003147125, 259934.895599998533726 ], [ 356849.090999998152256, 259954.288400001823902 ], [ 356844.947899997234344, 259967.342300001531839 ], [ 356842.501999996602535, 259970.488699998706579 ], [ 356841.665200002491474, 259974.07039999961853 ], [ 356838.385999999940395, 259980.376400001347065 ], [ 356835.114000000059605, 259985.838100001215935 ], [ 356832.648299999535084, 259991.30629999935627 ], [ 356831.818599998950958, 259994.043699998408556 ], [ 356827.686300002038479, 260005.831199999898672 ], [ 356822.656000003218651, 260028.377000000327826 ], [ 356820.001500003039837, 260056.008499998599291 ], [ 356815.773999996483326, 260078.9831000007689 ], [ 356812.072200000286102, 260134.892599999904633 ], [ 356808.63120000064373, 260160.195700000971556 ], [ 356807.517399996519089, 260196.283599998801947 ], [ 356809.07599999755621, 260202.629099998623133 ], [ 356811.469800002872944, 260205.603999998420477 ], [ 356812.247299998998642, 260208.987900000065565 ], [ 356815.43299999833107, 260213.657999999821186 ], [ 356820.179200001060963, 260224.462600000202656 ], [ 356812.081900000572205, 260228.4070999994874 ], [ 356809.709700003266335, 260222.899300001561642 ], [ 356808.11150000244379, 260221.197500001639128 ], [ 356806.54559999704361, 260215.696199998259544 ], [ 356800.186800003051758, 260204.878400001674891 ], [ 356797.809199996292591, 260200.003800000995398 ], [ 356799.790500000119209, 260156.745799999684095 ], [ 356804.133100003004074, 260120.262200001627207 ], [ 356806.924300000071526, 260076.588700000196695 ], [ 356811.1537000015378, 260053.403000000864267 ], [ 356812.964100003242493, 260030.197500001639128 ], [ 356816.33500000089407, 260013.126499999314547 ], [ 356821.320299997925758, 259995.857700001448393 ], [ 356827.911100000143051, 259979.446299999952316 ], [ 356830.358800001442432, 259976.088799998164177 ], [ 356833.652400001883507, 259968.094200000166893 ], [ 356836.098300002515316, 259964.947900000959635 ], [ 356840.241300001740456, 259951.894000001251698 ], [ 356842.760999999940395, 259940.093299999833107 ], [ 356843.747100003063679, 259918.99210000038147 ], [ 356826.233000002801418, 259892.462000001221895 ], [ 356823.858999997377396, 259887.165300000458956 ], [ 356819.865199998021126, 259882.699599999934435 ], [ 356815.858800001442432, 259879.711500000208616 ], [ 356808.625399999320507, 259876.908100001513958 ], [ 356779.599899999797344, 259876.459399998188019 ], [ 356746.526699997484684, 259877.877500001341105 ], [ 356719.941799998283386, 259874.915699999779463 ], [ 356702.231700003147125, 259871.393199998885393 ], [ 356704.476199999451637, 259891.887699998915195 ], [ 356708.913099996745586, 259938.997900001704693 ], [ 356709.640299998223782, 259948.291900001466274 ], [ 356710.318899996578693, 259963.285100001841784 ], [ 356738.142499998211861, 260010.164500001817942 ], [ 356745.750699996948242, 260063.633499998599291 ], [ 356709.146499998867512, 260100.908500000834465 ], [ 356697.716099999845028, 260117.491399999707937 ], [ 356747.968900002539158, 260181.864000000059605 ], [ 356771.100199997425079, 260211.6064000017941 ], [ 356792.638700000941753, 260239.013799998909235 ], [ 356830.130800001323223, 260286.816700000315905 ], [ 356870.814000003039837, 260338.656500000506639 ], [ 356871.66160000115633, 260333.808299999684095 ], [ 356875.774099998176098, 260324.342700000852346 ], [ 356884.746100001037121, 260312.383799999952316 ], [ 356902.567699998617172, 260302.819400001317263 ], [ 356926.033399999141693, 260293.301100000739098 ], [ 356919.833200000226498, 260074.557500001043081 ], [ 356915.553900003433228, 259914.302400000393391 ], [ 356915.375900000333786, 259890.245400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010800", "MAP": "G9-2953-T79", "PARCEL_NAM": "18-3-A", "ACRE": null, "LONGITUDE": -64.94317323, "LATITUDE": 18.36955351, "OBJECTID_1": 708, "PARCEL_NO_": "101203010800", "Tax_Legal_": "ST PETER 18-4 LITTLE NORTHSIDE QTR", "Name": "QUERRARD, PAUL NUGOLF", "Address": "7552 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 170500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 426.833485209, "SHAPE_Area": 9303.3595423200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357522.838799998164177, 260032.774000000208616 ], [ 357499.382799997925758, 259904.799100000411272 ], [ 357487.0253000035882, 259911.114900000393391 ], [ 357438.523000001907349, 259933.220499999821186 ], [ 357466.480700001120567, 260082.831199999898672 ], [ 357476.178000003099442, 260080.377399999648333 ], [ 357484.287900000810623, 260074.955400001257658 ], [ 357489.994999997317791, 260067.613800000399351 ], [ 357491.645400002598763, 260063.194400001317263 ], [ 357512.785800002515316, 260042.68019999936223 ], [ 357522.838799998164177, 260032.774000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010600", "MAP": "D9-8763-T013", "PARCEL_NAM": "19", "ACRE": "4.50", "LONGITUDE": -64.94465648000001, "LATITUDE": 18.36969041, "OBJECTID_1": 706, "PARCEL_NO_": "101203010600", "Tax_Legal_": "ST PETER 19 LITTLE NORTHSIDE QTR", "Name": "NEUMANN, ALFRED & IRMELA (Co Trustees)", "Address": "PO Box 303830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 342300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 509.24177440699998, "SHAPE_Area": 15251.5553894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357378.844999998807907, 259954.9527000002563 ], [ 357263.047600001096725, 259920.312899999320507 ], [ 357279.392800003290176, 260084.044199999421835 ], [ 357288.292900003492832, 260080.528400000184774 ], [ 357301.222599998116493, 260077.256799999624491 ], [ 357318.140799999237061, 260079.083999998867512 ], [ 357327.816500000655651, 260079.163199998438358 ], [ 357338.34179999679327, 260074.183100000023842 ], [ 357348.067900002002716, 260068.352099999785423 ], [ 357357.808399997651577, 260060.832400001585484 ], [ 357361.877700001001358, 260056.432700000703335 ], [ 357395.780599996447563, 260052.277300000190735 ], [ 357394.254199996590614, 260042.13230000063777 ], [ 357385.784000001847744, 259995.200199998915195 ], [ 357378.844999998807907, 259954.9527000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010900", "MAP": "F9-1643-T64", "PARCEL_NAM": "18-2", "ACRE": null, "LONGITUDE": -64.94365483, "LATITUDE": 18.36882858, "OBJECTID_1": 709, "PARCEL_NO_": "101203010900", "Tax_Legal_": "ST PETER 18 2 LITTLE NORTHSIDE QTR", "Name": "NEUMANN, ALFRED & IRMELA CO-TRUST", "Address": "BOX 3830", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 357.96356019799998, "SHAPE_Area": 6323.6994376399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357492.479299999773502, 259867.133799999952316 ], [ 357369.651000000536442, 259900.195799998939037 ], [ 357376.563199996948242, 259941.717999998480082 ], [ 357379.718800000846386, 259960.021200001239777 ], [ 357487.0253000035882, 259911.114900000393391 ], [ 357499.382799997925758, 259904.799100000411272 ], [ 357492.479299999773502, 259867.133799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203018000", "MAP": "D9-6578-T99", "PARCEL_NAM": "16F-3", "ACRE": "0.78", "LONGITUDE": -64.94441293, "LATITUDE": 18.3688763, "OBJECTID_1": 779, "PARCEL_NO_": "101203018000", "Tax_Legal_": "16F-3 ST PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, KELLY JOHN", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 137400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.74358620300001, "SHAPE_Area": 3020.8220272 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357365.497900001704693, 259877.269999999552965 ], [ 357336.088699996471405, 259881.623500000685453 ], [ 357325.941799998283386, 259883.957100000232458 ], [ 357322.318899996578693, 259881.108899999409914 ], [ 357325.854999996721745, 259905.670299999415874 ], [ 357330.88459999859333, 259940.605799999088049 ], [ 357378.844999998807907, 259954.9527000002563 ], [ 357368.892099998891354, 259895.636900000274181 ], [ 357368.1199000030756, 259891.619800001382828 ], [ 357365.497900001704693, 259877.269999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203011100", "MAP": "D9-8443-T010", "PARCEL_NAM": "16F REM", "ACRE": "1.08", "LONGITUDE": -64.94496337, "LATITUDE": 18.36874238, "OBJECTID_1": 711, "PARCEL_NO_": "101203011100", "Tax_Legal_": "16F REM & R.O.W ESTATE ST.PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, RODNEY LOUIS", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 218100, "Improved_V": 243800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.45862679599998, "SHAPE_Area": 4016.75615991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357330.88459999859333, 259940.605799999088049 ], [ 357322.318899996578693, 259881.108899999409914 ], [ 357317.882600001990795, 259878.656800001859665 ], [ 357299.712499998509884, 259871.260999999940395 ], [ 357272.646799996495247, 259861.779599998146296 ], [ 357256.423900000751019, 259855.039299998432398 ], [ 357263.047600001096725, 259920.312899999320507 ], [ 357330.88459999859333, 259940.605799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702030300", "MAP": "D9-8238-T009", "PARCEL_NAM": "3C & 3D REM", "ACRE": ".85", "LONGITUDE": -64.9501439, "LATITUDE": 18.35815602, "OBJECTID_1": 3058, "PARCEL_NO_": "102702030300", "Tax_Legal_": "3C & 3D REM ST PETER\nNO.2 LITTLE NORTHSIDE QTR", "Name": "FARMER, ROY M", "Address": "7411 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022553, "Country": "United States", "Land_Value": 93700, "Improved_V": 441300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.98107282199999, "SHAPE_Area": 2014.5639349 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356769.429700002074242, 258675.774099998176098 ], [ 356753.767599999904633, 258689.024999998509884 ], [ 356741.655199997127056, 258710.199499998241663 ], [ 356738.419100001454353, 258715.856699999421835 ], [ 356726.872400000691414, 258736.042399998754263 ], [ 356735.538999997079372, 258739.871399998664856 ], [ 356735.966600000858307, 258740.088199999183416 ], [ 356742.584299996495247, 258744.622400000691414 ], [ 356758.144500002264977, 258758.190400000661612 ], [ 356768.039300002157688, 258767.11600000038743 ], [ 356769.429700002074242, 258675.774099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702030200", "MAP": "D9-8767-T013", "PARCEL_NAM": "3CD-C", "ACRE": ".598", "LONGITUDE": -64.95042107, "LATITUDE": 18.35772056, "OBJECTID_1": 3057, "PARCEL_NO_": "102702030200", "Tax_Legal_": "3CD-C ST PETER(CONS)& 3CD-A(ROW) NO.2 LITTLE NORTHSIDE QTR", "Name": "VAN GORES FAMILY TRUST I", "Address": "131 Scarlett Dr", "City": "Pisgah Forest", "State": "North Carolina", "Zip": 28768, "Country": "United States", "Land_Value": 82600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.24714190099999, "SHAPE_Area": 2347.3530065499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356757.223999999463558, 258655.313499998301268 ], [ 356710.491499997675419, 258659.877300001680851 ], [ 356685.867899999022484, 258667.685100000351667 ], [ 356686.100699998438358, 258682.995900001376867 ], [ 356685.797700002789497, 258696.510999999940395 ], [ 356706.147699996829033, 258689.065499998629093 ], [ 356753.767599999904633, 258689.024999998509884 ], [ 356769.429700002074242, 258675.774099998176098 ], [ 356757.223999999463558, 258655.313499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050157", "MAP": "C9-108-T70", "PARCEL_NAM": "32A", "ACRE": null, "LONGITUDE": -64.96024249, "LATITUDE": 18.33483552, "OBJECTID_1": 8682, "PARCEL_NO_": "105204050157", "Tax_Legal_": "SUB BASE 32A S S QTR", "Name": "GRANT, REUBEN", "Address": "PO Box 8462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 100700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.883593954700004, "SHAPE_Area": 572.45586437600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355694.051600001752377, 256143.715599998831749 ], [ 355721.344099998474121, 256144.123599998652935 ], [ 355721.513999998569489, 256123.006000000983477 ], [ 355698.252300001680851, 256121.179299999028444 ], [ 355696.339100003242493, 256126.38230000063777 ], [ 355693.814099997282028, 256138.816199999302626 ], [ 355694.051600001752377, 256143.715599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": "D9-8774-T013", "PARCEL_NAM": "33", "ACRE": ".20", "LONGITUDE": -64.95984629, "LATITUDE": 18.33538948, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.40475444499999, "SHAPE_Area": 755.85701397000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355760.265100002288818, 256194.877700001001358 ], [ 355759.851800002157688, 256190.683899998664856 ], [ 355767.180699996650219, 256177.64919999986887 ], [ 355752.997000001370907, 256171.199299998581409 ], [ 355731.447800002992153, 256210.170699998736382 ], [ 355740.742799997329712, 256214.771800000220537 ], [ 355747.166299998760223, 256217.990699999034405 ], [ 355760.265100002288818, 256194.877700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050118", "MAP": "D9-8774-T013", "PARCEL_NAM": "32", "ACRE": "1.24", "LONGITUDE": -64.95997254, "LATITUDE": 18.33484768, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 391.01050396900001, "SHAPE_Area": 5808.7553951500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355758.124499998986721, 256057.867899999022484 ], [ 355722.802199997007847, 256094.928100001066923 ], [ 355721.513999998569489, 256123.006000000983477 ], [ 355721.344099998474121, 256144.123599998652935 ], [ 355694.051600001752377, 256143.715599998831749 ], [ 355694.499899998307228, 256152.96510000154376 ], [ 355696.854099996387959, 256160.583700001239777 ], [ 355698.402000002563, 256168.195700000971556 ], [ 355705.523999996483326, 256184.086100000888109 ], [ 355711.069200001657009, 256195.741599999368191 ], [ 355719.062200002372265, 256204.039599999785423 ], [ 355731.447800002992153, 256210.170699998736382 ], [ 355752.997000001370907, 256171.199299998581409 ], [ 355753.807700000703335, 256149.664599999785423 ], [ 355746.074199996888638, 256133.763099998235703 ], [ 355783.725000001490116, 256085.836800001561642 ], [ 355758.124499998986721, 256057.867899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050133", "MAP": "D9-8741-T013", "PARCEL_NAM": "198", "ACRE": ".54", "LONGITUDE": -64.95867893, "LATITUDE": 18.32793798, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.35150904300002, "SHAPE_Area": 3150.7882228499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355893.140500001609325, 255389.849399998784065 ], [ 355893.826499998569489, 255395.344999998807907 ], [ 355906.119999997317791, 255391.219399999827147 ], [ 355912.033299997448921, 255387.692400000989437 ], [ 355915.836099997162819, 255382.361099999397993 ], [ 355916.695200003683567, 255377.168600000441074 ], [ 355917.976899996399879, 255360.118200000375509 ], [ 355920.097900003194809, 255360.622699998319149 ], [ 355925.550800003111362, 255345.312300000339746 ], [ 355908.638099998235703, 255342.85190000012517 ], [ 355904.3800999969244, 255355.845300000160933 ], [ 355904.127300001680851, 255355.850299999117851 ], [ 355897.667300000786781, 255355.97859999909997 ], [ 355890.896700002253056, 255356.4543999992311 ], [ 355882.819099999964237, 255357.176699999719858 ], [ 355877.01070000231266, 255356.455600000917912 ], [ 355873.052400000393391, 255355.226199999451637 ], [ 355869.857699997723103, 255351.6114999987185 ], [ 355860.214400000870228, 255347.732900001108646 ], [ 355851.871299996972084, 255345.840999998152256 ], [ 355833.137800000607967, 255376.02419999986887 ], [ 355861.906199999153614, 255397.367400001734495 ], [ 355893.140500001609325, 255389.849399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204051300", "MAP": "D9-8822-T013", "PARCEL_NAM": "47", "ACRE": ".17", "LONGITUDE": -64.9588957, "LATITUDE": 18.33628423, "OBJECTID_1": 8732, "PARCEL_NO_": "105204051300", "Tax_Legal_": "NISKY 42&44 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 690000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.383174091, "SHAPE_Area": 878.39228110199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355825.868400000035763, 256295.705400001257658 ], [ 355839.608900003135204, 256314.845400001853704 ], [ 355874.284599997103214, 256290.02250000089407 ], [ 355874.489600002765656, 256289.875799998641014 ], [ 355867.562899999320507, 256283.570799998939037 ], [ 355856.578599996864796, 256277.194699998944998 ], [ 355825.868400000035763, 256295.705400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050118", "MAP": "D9-8814-T013", "PARCEL_NAM": "200", "ACRE": "4.604", "LONGITUDE": -64.95485465, "LATITUDE": 18.33488983, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 760.86840177800002, "SHAPE_Area": 19748.714142500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356282.523999996483326, 256037.032299999147654 ], [ 356279.527099996805191, 256029.955800000578165 ], [ 356229.878100000321865, 256021.892900001257658 ], [ 356200.09740000218153, 256152.459100000560284 ], [ 356242.89130000025034, 256145.843199998140335 ], [ 356250.1300999969244, 256148.013399999588728 ], [ 356266.967399999499321, 256159.339200001209974 ], [ 356273.121200002729893, 256194.219999998807907 ], [ 356256.005199998617172, 256215.6114999987185 ], [ 356210.542400002479553, 256251.547499999403954 ], [ 356366.275799997150898, 256239.312100000679493 ], [ 356308.569399997591972, 256103.317699998617172 ], [ 356298.46679999679327, 256058.694299999624491 ], [ 356282.505999997258186, 256039.14299999922514 ], [ 356282.523999996483326, 256037.032299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201070600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95823771000001, "LATITUDE": 18.34343273, "OBJECTID_1": 7829, "PARCEL_NO_": "105201070600", "Tax_Legal_": "EST CONTANT 228 7A SOUTHSIDE", "Name": "LORNA J and JAMIE PEREZ (LIFE ESTATE)", "Address": "PO Box 445", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040445, "Country": "United States", "Land_Value": 54800, "Improved_V": 63500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.070929224, "SHAPE_Area": 568.58165771200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355906.578900001943111, 257095.57149999961257 ], [ 355924.286399997770786, 257102.866900000721216 ], [ 355925.189800001680851, 257091.475299999117851 ], [ 355926.86540000140667, 257084.100699998438358 ], [ 355924.487800002098083, 257079.226100001484156 ], [ 355919.667900003492832, 257077.075699999928474 ], [ 355891.46679999679327, 257074.522900000214577 ], [ 355906.578900001943111, 257095.57149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201071200", "MAP": "D9-8815-T013", "PARCEL_NAM": "162-REM", "ACRE": ".647", "LONGITUDE": -64.95842958, "LATITUDE": 18.34375971, "OBJECTID_1": 7835, "PARCEL_NO_": "105201071200", "Tax_Legal_": "CONTANT 162 7A SOUTHSIDE QTR", "Name": "BARRY, ESSETTA", "Address": "PO Box 302462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 171500, "Improved_V": 400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.484091584, "SHAPE_Area": 2835.6934316100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355903.128700003027916, 257094.272999998182058 ], [ 355899.094999998807907, 257093.656399998813868 ], [ 355886.506099998950958, 257093.997800000011921 ], [ 355875.745399996638298, 257091.079700000584126 ], [ 355855.665299996733665, 257112.226700000464916 ], [ 355898.747699998319149, 257166.40819999948144 ], [ 355915.096900001168251, 257140.366399999707937 ], [ 355922.526299998164177, 257120.162200000137091 ], [ 355908.99889999628067, 257098.942099999636412 ], [ 355906.578900001943111, 257095.57149999961257 ], [ 355906.098099999129772, 257095.373399998992682 ], [ 355903.128700003027916, 257094.272999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201070500", "MAP": "D9-853-T69", "PARCEL_NAM": "162-1", "ACRE": null, "LONGITUDE": -64.95842099, "LATITUDE": 18.34341687, "OBJECTID_1": 7828, "PARCEL_NO_": "105201070500", "Tax_Legal_": "CONTANT 162-1 7A S S QTR", "Name": "LORNA J and JAMIE PEREZ (LIFE ESTATE)", "Address": "PO Box 445", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040445, "Country": "United States", "Land_Value": 19000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.512250888400004, "SHAPE_Area": 167.694069074 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355881.084200002253056, 257085.45719999819994 ], [ 355882.441899999976158, 257085.785599999129772 ], [ 355898.014200001955032, 257089.551500000059605 ], [ 355899.99040000140667, 257093.110100001096725 ], [ 355906.098099999129772, 257095.373399998992682 ], [ 355906.578900001943111, 257095.57149999961257 ], [ 355891.46679999679327, 257074.522900000214577 ], [ 355881.084200002253056, 257085.45719999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201070400", "MAP": "D9-8815-T013", "PARCEL_NAM": "227", "ACRE": ".03", "LONGITUDE": -64.95818265, "LATITUDE": 18.34361188, "OBJECTID_1": 7827, "PARCEL_NO_": "105201070400", "Tax_Legal_": "CONTANT ESTATE 227&324 7A SOUTHSIDE QTR", "Name": "BARRY, ESSETTA", "Address": "PO Box 302462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.900592991099998, "SHAPE_Area": 162.287256036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355922.526299998164177, 257120.162200000137091 ], [ 355924.227099999785423, 257109.832499999552965 ], [ 355924.286399997770786, 257102.866900000721216 ], [ 355906.578900001943111, 257095.57149999961257 ], [ 355908.99889999628067, 257098.942099999636412 ], [ 355922.526299998164177, 257120.162200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201071200", "MAP": "D9-8815-T013", "PARCEL_NAM": "162-2", "ACRE": ".04", "LONGITUDE": -64.95846988, "LATITUDE": 18.34347014, "OBJECTID_1": 7835, "PARCEL_NO_": "105201071200", "Tax_Legal_": "CONTANT 162 7A SOUTHSIDE QTR", "Name": "BARRY, ESSETTA", "Address": "PO Box 302462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 171500, "Improved_V": 400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.412212034299998, "SHAPE_Area": 128.770261597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355875.745399996638298, 257091.079700000584126 ], [ 355886.506099998950958, 257093.997800000011921 ], [ 355899.094999998807907, 257093.656399998813868 ], [ 355903.128700003027916, 257094.272999998182058 ], [ 355899.99040000140667, 257093.110100001096725 ], [ 355898.014200001955032, 257089.551500000059605 ], [ 355882.441899999976158, 257085.785599999129772 ], [ 355881.084200002253056, 257085.45719999819994 ], [ 355875.745399996638298, 257091.079700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021600", "MAP": "D9-8817-T013", "PARCEL_NAM": "100-11-2", "ACRE": ".503", "LONGITUDE": -64.94161813, "LATITUDE": 18.34861706, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.69175205299999, "SHAPE_Area": 1671.9586593900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357677.286200001835823, 257647.697599999606609 ], [ 357645.31360000371933, 257653.2212999984622 ], [ 357648.766999997198582, 257701.878800000995398 ], [ 357686.300300002098083, 257692.605599999427795 ], [ 357677.286200001835823, 257647.697599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021600", "MAP": "D9-8817-T013", "PARCEL_NAM": "100-11-1", "ACRE": ".504", "LONGITUDE": -64.94174534, "LATITUDE": 18.34823603, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.67169826700001, "SHAPE_Area": 1113.2570560500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357645.31360000371933, 257653.2212999984622 ], [ 357677.286200001835823, 257647.697599999606609 ], [ 357674.417900003492832, 257633.407900001853704 ], [ 357629.889799997210503, 257608.464899998158216 ], [ 357620.099399998784065, 257604.951099999248981 ], [ 357618.35809999704361, 257605.614799998700619 ], [ 357636.45380000025034, 257628.580200001597404 ], [ 357639.870200000703335, 257633.307199999690056 ], [ 357642.207400001585484, 257636.579500000923872 ], [ 357644.002099998295307, 257639.48589999973774 ], [ 357644.532799996435642, 257641.297600001096725 ], [ 357644.701399996876717, 257642.925599999725819 ], [ 357644.852300003170967, 257646.722300000488758 ], [ 357645.31360000371933, 257653.2212999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021600", "MAP": "D9-1590-T80", "PARCEL_NAM": "100 REM", "ACRE": null, "LONGITUDE": -64.94221274, "LATITUDE": 18.34977273, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1480.3284752899999, "SHAPE_Area": 62154.527782500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357790.036799997091293, 257693.097100000828505 ], [ 357782.416799999773502, 257700.293699998408556 ], [ 357780.461159520666115, 257698.067748005472822 ], [ 357778.203002764901612, 257696.149384112737607 ], [ 357775.690203537407797, 257694.579278383636847 ], [ 357772.976034162682481, 257693.390717672591563 ], [ 357770.118036091153044, 257692.60889993069577 ], [ 357767.17679999768734, 257692.250399999320507 ], [ 357765.973065694328398, 257692.233589604555164 ], [ 357764.784409630694427, 257692.424261114676483 ], [ 357763.646326081128791, 257692.81672091720975 ], [ 357762.59279918204993, 257693.399249830923509 ], [ 357761.655288136797026, 257694.154453050199663 ], [ 357760.861787817324512, 257695.059779568866361 ], [ 357760.235992813657504, 257696.088195572112454 ], [ 357759.796589893230703, 257697.208991689170944 ], [ 357759.556699998676777, 257698.388700000941753 ], [ 357753.418399997055531, 257697.330400001257658 ], [ 357753.608668254280929, 257696.238264494517352 ], [ 357753.626436651393306, 257695.12982132556499 ], [ 357753.471271126763895, 257694.032148498750757 ], [ 357753.146962197439279, 257692.972060911270091 ], [ 357752.661432361230254, 257691.975455295731081 ], [ 357752.026542559207883, 257691.066677592403721 ], [ 357751.257802426232956, 257690.26792820575065 ], [ 357750.373991408327129, 257689.598719673667802 ], [ 357749.396700002253056, 257689.075399998575449 ], [ 357745.879675973556004, 257688.694729492795886 ], [ 357742.465127507282887, 257687.769944747968111 ], [ 357739.236699998378754, 257686.323699999600649 ], [ 357736.516554420872126, 257684.501190566486912 ], [ 357734.123838655941654, 257682.26609686264419 ], [ 357732.120472505688667, 257679.67625967375352 ], [ 357730.558300003409386, 257676.798700001090765 ], [ 357729.796593572595157, 257674.282092901179567 ], [ 357728.638952743553091, 257671.921293101768242 ], [ 357727.115691974933725, 257669.778121477080276 ], [ 357725.266699999570847, 257667.908700000494719 ], [ 357722.586799745156895, 257667.51201557656168 ], [ 357719.878636504348833, 257667.583259992738022 ], [ 357717.223300002515316, 257668.120299998670816 ], [ 357715.774134531209711, 257668.21696179479477 ], [ 357714.326675599266309, 257668.09743478425662 ], [ 357712.912995928840246, 257667.764367440569913 ], [ 357711.564419762988109, 257667.225139853166183 ], [ 357710.310828784655314, 257666.491700199869229 ], [ 357709.179999999701977, 257665.580299999564886 ], [ 357674.417900003492832, 257633.407900001853704 ], [ 357686.300300002098083, 257692.605599999427795 ], [ 357648.766999997198582, 257701.878800000995398 ], [ 357640.756599999964237, 257703.078699998557568 ], [ 357638.648299999535084, 257649.382800001651049 ], [ 357639.427100002765656, 257643.063400000333786 ], [ 357637.823100000619888, 257639.074099998921156 ], [ 357637.110500000417233, 257637.260899998247623 ], [ 357635.851000003516674, 257635.624000001698732 ], [ 357607.41160000115633, 257599.97749999910593 ], [ 357639.390500001609325, 257721.820300001651049 ], [ 357600.429700002074242, 257718.345400001853704 ], [ 357566.612000003457069, 257715.24439999833703 ], [ 357567.038000002503395, 257763.578000001609325 ], [ 357547.495600000023842, 257766.742499999701977 ], [ 357386.739100001752377, 257800.679400000721216 ], [ 357369.328199997544289, 257856.687800001353025 ], [ 357396.215999998152256, 257918.758200000971556 ], [ 357464.152999997138977, 257895.038499999791384 ], [ 357637.548000000417233, 257892.024700000882149 ], [ 357715.784299999475479, 257893.699599999934435 ], [ 357717.45830000191927, 257892.599300000816584 ], [ 357801.545999996364117, 257710.485599998384714 ], [ 357801.668799996376038, 257709.825300000607967 ], [ 357801.181199997663498, 257709.712600000202656 ], [ 357801.30969999730587, 257709.308899998664856 ], [ 357790.036799997091293, 257693.097100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021600", "MAP": "D9-8817-T013", "PARCEL_NAM": "100-11-A", "ACRE": null, "LONGITUDE": -64.94187925, "LATITUDE": 18.34842886, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.21679357900001, "SHAPE_Area": 689.13302891900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357607.41160000115633, 257599.97749999910593 ], [ 357635.851000003516674, 257635.624000001698732 ], [ 357637.110500000417233, 257637.260899998247623 ], [ 357637.823100000619888, 257639.074099998921156 ], [ 357639.427100002765656, 257643.063400000333786 ], [ 357638.648299999535084, 257649.382800001651049 ], [ 357640.756599999964237, 257703.078699998557568 ], [ 357648.766999997198582, 257701.878800000995398 ], [ 357644.852300003170967, 257646.722300000488758 ], [ 357644.701399996876717, 257642.925599999725819 ], [ 357644.532799996435642, 257641.297600001096725 ], [ 357644.002099998295307, 257639.48589999973774 ], [ 357642.207400001585484, 257636.579500000923872 ], [ 357639.870200000703335, 257633.307199999690056 ], [ 357636.45380000025034, 257628.580200001597404 ], [ 357615.030599996447563, 257601.391800001263618 ], [ 357613.485799998044968, 257599.431400001049042 ], [ 357607.41160000115633, 257599.97749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803023600", "MAP": "D9-1885-T81", "PARCEL_NAM": "19R", "ACRE": ".509", "LONGITUDE": -64.94348171, "LATITUDE": 18.35167388, "OBJECTID_1": 4309, "PARCEL_NO_": "102803023600", "Tax_Legal_": "SOLBERG 19R LITTLE NORTHSIDE", "Name": "BOSCHULTE, JAMES T & BRENDA", "Address": "PO Box 303190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 115200, "Improved_V": 285900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.399293075, "SHAPE_Area": 2852.89889829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357502.834600001573563, 257991.509399998933077 ], [ 357503.707999996840954, 257984.654800001531839 ], [ 357504.30969999730587, 257979.1537000015378 ], [ 357502.580300003290176, 257979.474500000476837 ], [ 357487.11370000243187, 257981.631299998611212 ], [ 357469.106600001454353, 257988.125100001692772 ], [ 357458.843800000846386, 257992.309300001710653 ], [ 357452.140000000596046, 257995.042399998754263 ], [ 357442.074100002646446, 258000.563299998641014 ], [ 357438.198299996554852, 258003.778400000184774 ], [ 357435.137800000607967, 258006.317200001329184 ], [ 357432.960699997842312, 258012.895899999886751 ], [ 357431.234200000762939, 258018.112799998372793 ], [ 357430.00110000371933, 258021.838700000196695 ], [ 357424.963500000536442, 258046.493999999016523 ], [ 357424.923900000751019, 258051.137800000607967 ], [ 357426.534699998795986, 258051.361999999731779 ], [ 357436.248199999332428, 258047.008600000292063 ], [ 357444.359899997711182, 258041.375399999320507 ], [ 357446.796800002455711, 258039.284499999135733 ], [ 357456.546300001442432, 258030.709399998188019 ], [ 357466.261600002646446, 258026.144900001585484 ], [ 357499.5591000020504, 258017.21680000051856 ], [ 357502.834600001573563, 257991.509399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803024800", "MAP": "G9-2758-T78", "PARCEL_NAM": "19-Pb", "ACRE": "0.52", "LONGITUDE": -64.94278335, "LATITUDE": 18.3524345, "OBJECTID_1": 4317, "PARCEL_NO_": "102803024800", "Tax_Legal_": "SOLBERG 19PB LT NORTHSIDE", "Name": "DUNSTON, MICHAEL", "Address": "PO Box 6612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 108100, "Improved_V": 534000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.75721563299999, "SHAPE_Area": 2099.11081805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357571.221600003540516, 258078.008900001645088 ], [ 357516.909699998795986, 258071.710200000554323 ], [ 357516.568099997937679, 258075.83049999922514 ], [ 357515.745899997651577, 258086.078299999237061 ], [ 357513.86710000038147, 258117.304699998348951 ], [ 357513.847199998795986, 258119.635299999266863 ], [ 357547.857799999415874, 258122.156399998813868 ], [ 357571.221600003540516, 258078.008900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803020900", "MAP": "C9-172-T73", "PARCEL_NAM": "19-Q", "ACRE": null, "LONGITUDE": -64.94190182, "LATITUDE": 18.35263301, "OBJECTID_1": 4280, "PARCEL_NO_": "102803020900", "Tax_Legal_": "SOLBERG 19Q LITTLE NORTHSIDE", "Name": "BOSCHULTE, JEROME T", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 175900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.08104518699997, "SHAPE_Area": 5421.5363879400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357599.133100003004074, 258141.856199998408556 ], [ 357667.511399999260902, 258160.991999998688698 ], [ 357680.188699997961521, 258092.701499998569489 ], [ 357575.396799996495247, 258088.466299999505281 ], [ 357572.207999996840954, 258088.278799999505281 ], [ 357572.460400000214577, 258090.66780000180006 ], [ 357578.609099999070168, 258107.984600000083447 ], [ 357583.017899997532368, 258118.291200000792742 ], [ 357589.52419999986887, 258128.466099999845028 ], [ 357599.133100003004074, 258141.856199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9425154, "LATITUDE": 18.35281034, "OBJECTID_1": 4277, "PARCEL_NO_": "102803020600", "Tax_Legal_": "SOLBERG 19-O LITTLE NORTHSIDE QTR", "Name": "CHRISTIAN, SHIRLEY", "Address": "PO Box 7157", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 126300, "Improved_V": 344800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.34683309600001, "SHAPE_Area": 3293.1784746500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357571.626199997961521, 258082.771800000220537 ], [ 357571.221600003540516, 258078.008900001645088 ], [ 357547.857799999415874, 258122.156399998813868 ], [ 357528.021099999547005, 258159.639299999922514 ], [ 357545.709600001573563, 258165.694699998944998 ], [ 357565.030599996447563, 258169.441399998962879 ], [ 357572.255000002682209, 258173.300200000405312 ], [ 357577.857799999415874, 258178.201200000941753 ], [ 357599.133100003004074, 258141.856199998408556 ], [ 357589.52419999986887, 258128.466099999845028 ], [ 357583.017899997532368, 258118.291200000792742 ], [ 357578.609099999070168, 258107.984600000083447 ], [ 357572.460400000214577, 258090.66780000180006 ], [ 357572.207999996840954, 258088.278799999505281 ], [ 357571.626199997961521, 258082.771800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803028600", "MAP": "D9-1885-T81", "PARCEL_NAM": "19-2", "ACRE": null, "LONGITUDE": -64.9437254, "LATITUDE": 18.35199367, "OBJECTID_1": 4346, "PARCEL_NO_": "102803028600", "Tax_Legal_": "SOLBERG 19-2 LT. NORTHSIDE", "Name": "BOSCHULTE, BRENDA & JAMES", "Address": "PO Box 303190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 215900, "Improved_V": 368400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.64450043799999, "SHAPE_Area": 262.15123975300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357419.164599999785423, 258064.600600000470877 ], [ 357435.73929999768734, 258050.59180000051856 ], [ 357449.24099999666214, 258040.749099999666214 ], [ 357462.08389999717474, 258033.336199998855591 ], [ 357465.715700000524521, 258032.095199998468161 ], [ 357465.930799998342991, 258029.750799998641014 ], [ 357466.261600002646446, 258026.144900001585484 ], [ 357456.546300001442432, 258030.709399998188019 ], [ 357446.796800002455711, 258039.284499999135733 ], [ 357444.359899997711182, 258041.375399999320507 ], [ 357436.248199999332428, 258047.008600000292063 ], [ 357426.534699998795986, 258051.361999999731779 ], [ 357424.923900000751019, 258051.137800000607967 ], [ 357414.373499996960163, 258059.072999998927116 ], [ 357419.164599999785423, 258064.600600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803020200", "MAP": "D9-1003-T70", "PARCEL_NAM": "20-1", "ACRE": "1.00", "LONGITUDE": -64.94377453, "LATITUDE": 18.3523841, "OBJECTID_1": 4273, "PARCEL_NO_": "102803020200", "Tax_Legal_": "SOLBERG 20-1 LITTLE NORTHSIDE QTR", "Name": "KIM, EILEEN M", "Address": "390 Rendezvous Dr", "City": "Lafayette", "State": "Colorado", "Zip": 80026, "Country": "United States", "Land_Value": 155600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.29370943399999, "SHAPE_Area": 3557.5583420500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357456.128799997270107, 258114.995200000703335 ], [ 357465.715700000524521, 258032.095199998468161 ], [ 357462.08389999717474, 258033.336199998855591 ], [ 357449.24099999666214, 258040.749099999666214 ], [ 357435.73929999768734, 258050.59180000051856 ], [ 357419.164599999785423, 258064.600600000470877 ], [ 357419.119699999690056, 258069.877599999308586 ], [ 357415.944399997591972, 258117.297899998724461 ], [ 357402.484600000083447, 258121.681200001388788 ], [ 357382.741099998354912, 258133.422600001096725 ], [ 357365.209899999201298, 258143.848299998790026 ], [ 357361.962499998509884, 258151.613800000399351 ], [ 357360.619699999690056, 258162.968400001525879 ], [ 357363.504600003361702, 258161.670299999415874 ], [ 357365.149499997496605, 258161.070500001311302 ], [ 357369.304499998688698, 258149.213599998503923 ], [ 357389.997400000691414, 258137.456199999898672 ], [ 357406.579099997878075, 258128.034800000488758 ], [ 357415.380500003695488, 258125.718600001186132 ], [ 357456.128799997270107, 258114.995200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803028600", "MAP": "D9-1885-T81", "PARCEL_NAM": "19-2", "ACRE": "1.60", "LONGITUDE": -64.94279212, "LATITUDE": 18.35168632, "OBJECTID_1": 4346, "PARCEL_NO_": "102803028600", "Tax_Legal_": "SOLBERG 19-2 LT. NORTHSIDE", "Name": "BOSCHULTE, BRENDA & JAMES", "Address": "PO Box 303190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 215900, "Improved_V": 368400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 328.87995183200002, "SHAPE_Area": 5450.8273661599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357575.233199998736382, 258044.39750000089407 ], [ 357580.124499998986721, 258032.2314000017941 ], [ 357584.067699998617172, 258017.187699999660254 ], [ 357584.476099997758865, 258012.767299998551607 ], [ 357583.69650000333786, 258008.063999999314547 ], [ 357583.191399998962879, 258005.016499999910593 ], [ 357577.876900002360344, 257995.595499999821186 ], [ 357573.300200000405312, 257987.520300000905991 ], [ 357567.193400003015995, 257983.451499998569489 ], [ 357560.031000003218651, 257980.267299998551607 ], [ 357549.864000000059605, 257978.249499998986721 ], [ 357539.688500002026558, 257977.273499999195337 ], [ 357525.014600001275539, 257977.005199998617172 ], [ 357507.627300001680851, 257978.538199998438358 ], [ 357504.30969999730587, 257979.1537000015378 ], [ 357502.834600001573563, 257991.509399998933077 ], [ 357499.5591000020504, 258017.21680000051856 ], [ 357466.261600002646446, 258026.144900001585484 ], [ 357465.930799998342991, 258029.750799998641014 ], [ 357465.715700000524521, 258032.095199998468161 ], [ 357471.05349999666214, 258030.656300000846386 ], [ 357477.873800002038479, 258030.28830000013113 ], [ 357484.470799997448921, 258031.188999999314547 ], [ 357510.509900003671646, 258038.117199998348951 ], [ 357516.664499998092651, 258041.297699999064207 ], [ 357521.734899997711182, 258046.526999998837709 ], [ 357526.016999997198582, 258043.914900001138449 ], [ 357570.095499999821186, 258048.175400000065565 ], [ 357574.016999997198582, 258048.554400000721216 ], [ 357575.233199998736382, 258044.39750000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9430014, "LATITUDE": 18.35206919, "OBJECTID_1": 4275, "PARCEL_NO_": "102803020400", "Tax_Legal_": "SOLBERG 19-1 LT NORTHSIDE", "Name": "BOSCHULTE, JAMES & BRENDA", "Address": "PO Box 303190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 143500, "Improved_V": 396300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.86998506100002, "SHAPE_Area": 3431.3578868099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357461.872599996626377, 258065.327399998903275 ], [ 357516.909699998795986, 258071.710200000554323 ], [ 357571.221600003540516, 258078.008900001645088 ], [ 357570.25959999859333, 258066.68470000103116 ], [ 357571.219899997115135, 258059.101100001484156 ], [ 357573.538800001144409, 258050.188900001347065 ], [ 357574.016999997198582, 258048.554400000721216 ], [ 357570.095799997448921, 258048.135299999266863 ], [ 357526.016999997198582, 258043.914900001138449 ], [ 357521.734899997711182, 258046.526999998837709 ], [ 357516.664499998092651, 258041.297699999064207 ], [ 357510.509900003671646, 258038.117199998348951 ], [ 357484.470799997448921, 258031.188999999314547 ], [ 357477.873800002038479, 258030.28830000013113 ], [ 357471.05349999666214, 258030.656300000846386 ], [ 357465.715700000524521, 258032.095199998468161 ], [ 357461.872599996626377, 258065.327399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803020500", "MAP": "D9-1885-T81", "PARCEL_NAM": "19-REM", "ACRE": null, "LONGITUDE": -64.94188803, "LATITUDE": 18.35200209, "OBJECTID_1": 4276, "PARCEL_NO_": "102803020500", "Tax_Legal_": "SOLBERG REM 19 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, JEROME T", "Address": "PO Box 303190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 238800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 390.75967236600002, "SHAPE_Area": 9353.0592872800007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357572.207999996840954, 258088.278799999505281 ], [ 357575.396799996495247, 258088.466299999505281 ], [ 357680.188699997961521, 258092.701499998569489 ], [ 357696.244099996984005, 258006.495600000023842 ], [ 357583.69650000333786, 258008.063999999314547 ], [ 357584.476099997758865, 258012.767299998551607 ], [ 357584.067699998617172, 258017.187699999660254 ], [ 357580.124499998986721, 258032.2314000017941 ], [ 357575.233199998736382, 258044.39750000089407 ], [ 357573.538800001144409, 258050.188900001347065 ], [ 357571.219899997115135, 258059.101100001484156 ], [ 357570.25959999859333, 258066.68470000103116 ], [ 357571.626199997961521, 258082.771800000220537 ], [ 357572.207999996840954, 258088.278799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803050100", "MAP": "D9-8820-T013", "PARCEL_NAM": "100-6-REM", "ACRE": "2.87", "LONGITUDE": -64.94176091, "LATITUDE": 18.35113671, "OBJECTID_1": 4415, "PARCEL_NO_": "102803050100", "Tax_Legal_": "SOLBERG 100-6 LITTLE NORTHSIDE", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 313300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 465.19460268699999, "SHAPE_Area": 13299.421232799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357630.960400000214577, 257892.139199998229742 ], [ 357560.031000003218651, 257980.267299998551607 ], [ 357567.193400003015995, 257983.451499998569489 ], [ 357573.300200000405312, 257987.520300000905991 ], [ 357577.876900002360344, 257995.595499999821186 ], [ 357583.191399998962879, 258005.016499999910593 ], [ 357583.69650000333786, 258008.063999999314547 ], [ 357696.244099996984005, 258006.495600000023842 ], [ 357717.363899998366833, 257893.733399998396635 ], [ 357637.548000000417233, 257892.024700000882149 ], [ 357630.960400000214577, 257892.139199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202027400", "MAP": "D9-8119-T008", "PARCEL_NAM": "41-1", "ACRE": "3.00", "LONGITUDE": -64.95683869, "LATITUDE": 18.34265597, "OBJECTID_1": 8173, "PARCEL_NO_": "105202027400", "Tax_Legal_": "41-1 ESTATE CONTANT 7A SOUTHSIDE QTR", "Name": "WORD OF FAITH INTERNATIONAL CHRISTIAN CENTER", "Address": "9147 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 556700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 506.089340392, "SHAPE_Area": 10643.018457800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356149.742600001394749, 257042.689399998635054 ], [ 356146.898100003600121, 257001.886300001293421 ], [ 356146.109700001776218, 256999.769000001251698 ], [ 356106.632799997925758, 256995.646200001239777 ], [ 356073.516400001943111, 257002.130100000649691 ], [ 356043.613799996674061, 256915.337000001221895 ], [ 356023.326499998569489, 256930.369699999690056 ], [ 356003.055399999022484, 256943.502700001001358 ], [ 356008.0253000035882, 257022.703499998897314 ], [ 356008.421899996697903, 257039.668800000101328 ], [ 356008.561599999666214, 257045.645700000226498 ], [ 356008.565700002014637, 257045.821800000965595 ], [ 356008.665600001811981, 257050.094500001519918 ], [ 356069.354999996721745, 257047.019499998539686 ], [ 356149.760499998927116, 257042.945700000971556 ], [ 356149.742600001394749, 257042.689399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022200", "MAP": "D9-8830-T013", "PARCEL_NAM": "41 REM", "ACRE": ".967", "LONGITUDE": -64.95695247, "LATITUDE": 18.34331521, "OBJECTID_1": 8113, "PARCEL_NO_": "105202022200", "Tax_Legal_": "41 REM CONTANT 7A SOUTHSIDE QTR", "Name": "BELMONTE, ALEX", "Address": "PO Box 303708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 291200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.060080368, "SHAPE_Area": 3963.9067715400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356083.046499997377396, 257047.289299998432398 ], [ 356083.079800002276897, 257046.324099998921156 ], [ 356069.354999996721745, 257047.019499998539686 ], [ 356008.665600001811981, 257050.094500001519918 ], [ 356009.207699999213219, 257073.287900000810623 ], [ 356009.70830000191927, 257094.705099999904633 ], [ 356009.843199998140335, 257100.478700000792742 ], [ 356088.052000001072884, 257098.135800000280142 ], [ 356098.013400003314018, 257097.982200000435114 ], [ 356102.726000003516674, 257097.909600000828505 ], [ 356102.727300003170967, 257097.609000001102686 ], [ 356082.664200000464916, 257078.648699998855591 ], [ 356083.046499997377396, 257047.289299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92033302, "LATITUDE": 18.35733674, "OBJECTID_1": 4710, "PARCEL_NO_": "102902020700", "Tax_Legal_": "CANAAN&SCHERPENJEWEL 1A(PORTION) GT.NORTHSIDE QTR.", "Name": "McCONNELL, F. W. , W. S. , M. S. & C. W", "Address": "6000 Estate Canaan", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 430600, "Improved_V": 496600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 544.26048020899998, "SHAPE_Area": 1371.87084293 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359944.182899996638298, 258539.864199999719858 ], [ 359942.001800000667572, 258546.652100000530481 ], [ 359933.263599999248981, 258557.582400001585484 ], [ 359929.41330000013113, 258563.05180000141263 ], [ 359928.005599997937679, 258565.962699998170137 ], [ 359929.020499996840954, 258568.721700001507998 ], [ 359937.756899997591972, 258578.936900001019239 ], [ 359942.552500002086163, 258584.649700000882149 ], [ 359946.131800003349781, 258591.03999999910593 ], [ 359946.792400002479553, 258594.827599998563528 ], [ 359946.41950000077486, 258598.090900000184774 ], [ 359944.645999997854233, 258603.405600000172853 ], [ 359939.116999998688698, 258623.645700000226498 ], [ 359933.995099999010563, 258636.496899999678135 ], [ 359929.037500001490116, 258650.380899999290705 ], [ 359920.412699997425079, 258668.532400000840425 ], [ 359911.329999998211861, 258679.287900000810623 ], [ 359899.271799996495247, 258694.316599998623133 ], [ 359890.552199997007847, 258703.012099999934435 ], [ 359882.718500003218651, 258709.136199999600649 ], [ 359874.731799997389317, 258712.852299999445677 ], [ 359869.037299998104572, 258713.644799999892712 ], [ 359855.661100000143051, 258715.876299999654293 ], [ 359845.537299998104572, 258716.52309999987483 ], [ 359835.779500000178814, 258717.344200000166893 ], [ 359833.942299999296665, 258717.371700000017881 ], [ 359832.49719999730587, 258717.037599999457598 ], [ 359831.749200001358986, 258715.87049999833107 ], [ 359831.488600000739098, 258713.354699999094009 ], [ 359826.814800001680851, 258713.831900000572205 ], [ 359826.294600002467632, 258713.999499998986721 ], [ 359823.699000000953674, 258714.149999998509884 ], [ 359822.939099997282028, 258722.395500000566244 ], [ 359840.923900000751019, 258722.715900000184774 ], [ 359849.746899999678135, 258722.445000000298023 ], [ 359860.304999999701977, 258721.500700000673532 ], [ 359866.886799998581409, 258720.351700000464916 ], [ 359878.328199997544289, 258717.179900001734495 ], [ 359885.271499998867512, 258714.142799999564886 ], [ 359892.929399996995926, 258708.361000001430511 ], [ 359897.278499998152256, 258705.302499998360872 ], [ 359908.626500003039837, 258692.50279999896884 ], [ 359916.322700001299381, 258682.079700000584126 ], [ 359921.915200002491474, 258675.077500000596046 ], [ 359928.240599997341633, 258663.095899999141693 ], [ 359934.757500000298023, 258648.880899999290705 ], [ 359941.111400000751019, 258633.461199998855591 ], [ 359945.195699997246265, 258620.601500000804663 ], [ 359949.122699998319149, 258605.849300000816584 ], [ 359950.391500003635883, 258598.8114 ], [ 359950.943099997937679, 258594.861900001764297 ], [ 359950.446999996900558, 258592.107200000435114 ], [ 359949.952299997210503, 258589.180599998682737 ], [ 359947.570799998939037, 258584.347300000488758 ], [ 359935.067900002002716, 258569.459399998188019 ], [ 359933.528499998152256, 258567.383699998259544 ], [ 359933.544100001454353, 258565.492800001055002 ], [ 359934.424500003457069, 258563.609000001102686 ], [ 359944.751900002360344, 258548.737799998372793 ], [ 359946.324000000953674, 258546.859700001776218 ], [ 359949.813900001347065, 258545.230000000447035 ], [ 359947.88459999859333, 258544.003299999982119 ], [ 359944.182899996638298, 258539.864199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020700", "MAP": "D9-9029-T015", "PARCEL_NAM": "1A-REM", "ACRE": "3.5", "LONGITUDE": -64.92069604, "LATITUDE": 18.35687683, "OBJECTID_1": 4710, "PARCEL_NO_": "102902020700", "Tax_Legal_": "CANAAN&SCHERPENJEWEL 1A(PORTION) GT.NORTHSIDE QTR.", "Name": "McCONNELL, F. W. , W. S. , M. S. & C. W", "Address": "6000 Estate Canaan", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 430600, "Improved_V": 496600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 592.03256575499995, "SHAPE_Area": 12531.0209209 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359877.331799998879433, 258670.663100000470877 ], [ 359879.139799997210503, 258668.414200000464916 ], [ 359883.486199997365475, 258664.377399999648333 ], [ 359896.73759999871254, 258652.697500001639128 ], [ 359903.689400002360344, 258646.538699999451637 ], [ 359907.408399999141693, 258640.138900000602007 ], [ 359939.675499998033047, 258597.749299999326468 ], [ 359944.457900002598763, 258588.051500000059605 ], [ 359942.552500002086163, 258584.649700000882149 ], [ 359937.756899997591972, 258578.936900001019239 ], [ 359929.020499996840954, 258568.721700001507998 ], [ 359928.005599997937679, 258565.962699998170137 ], [ 359929.41330000013113, 258563.05180000141263 ], [ 359933.263599999248981, 258557.582400001585484 ], [ 359942.001800000667572, 258546.652100000530481 ], [ 359944.182899996638298, 258539.864199999719858 ], [ 359943.890799999237061, 258539.537599999457598 ], [ 359939.902400001883507, 258534.438799999654293 ], [ 359937.246899999678135, 258523.771999999880791 ], [ 359874.737999998033047, 258550.113200001418591 ], [ 359830.287900000810623, 258595.092399999499321 ], [ 359747.737800002098083, 258666.530099999159575 ], [ 359765.644599996507168, 258686.227400001138449 ], [ 359817.56139999628067, 258639.463199999183416 ], [ 359841.109399996697903, 258639.463199999183416 ], [ 359877.331799998879433, 258670.663100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902021000", "MAP": "D9-7211-T003", "PARCEL_NAM": "1A-4", "ACRE": "1.269", "LONGITUDE": -64.92103065000001, "LATITUDE": 18.358142, "OBJECTID_1": 4711, "PARCEL_NO_": "102902021000", "Tax_Legal_": "1A-1,2,3,4,1A-B CANAAN&SHERPEN J 7B GT.NORTHSIDE QTR", "Name": "SCENIC ROCK LLC", "Address": "25887 County 12", "City": "Preston", "State": "Minnesota", "Zip": 55965, "Country": "United States", "Land_Value": 571700, "Improved_V": 4822600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.93874322300002, "SHAPE_Area": 4445.8115104899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359865.416299998760223, 258778.489100001752377 ], [ 359878.328199997544289, 258717.179900001734495 ], [ 359866.886799998581409, 258720.351700000464916 ], [ 359860.304999999701977, 258721.500700000673532 ], [ 359849.746899999678135, 258722.445000000298023 ], [ 359840.923900000751019, 258722.715900000184774 ], [ 359822.939099997282028, 258722.395500000566244 ], [ 359823.341099999845028, 258718.033500000834465 ], [ 359810.146999999880791, 258720.94539999961853 ], [ 359792.931699998676777, 258713.700800001621246 ], [ 359791.454300001263618, 258722.262600000947714 ], [ 359784.682899996638298, 258764.018500000238419 ], [ 359857.678800001740456, 258780.344099998474121 ], [ 359865.416299998760223, 258778.489100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020600", "MAP": "D9-6206-T97", "PARCEL_NAM": "1B", "ACRE": "6.7", "LONGITUDE": -64.92147303, "LATITUDE": 18.35674254, "OBJECTID_1": 4709, "PARCEL_NO_": "102902020600", "Tax_Legal_": "1-B,C&D CANAAN&SHERPENJEWEL 7B GT.NORTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "3052 Estate Little Princess", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 528800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1041.41900811, "SHAPE_Area": 23216.621521100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359914.259700000286102, 258420.871599998325109 ], [ 359902.992899999022484, 258418.246300000697374 ], [ 359901.225699998438358, 258436.385899998247623 ], [ 359894.982500001788139, 258516.668299999088049 ], [ 359858.069700002670288, 258524.771099999547005 ], [ 359750.592299997806549, 258548.363699998706579 ], [ 359664.253700003027916, 258567.315999999642372 ], [ 359698.44650000333786, 258642.699099998921156 ], [ 359710.696000002324581, 258669.705099999904633 ], [ 359784.682899996638298, 258764.018500000238419 ], [ 359791.454300001263618, 258722.262600000947714 ], [ 359792.931699998676777, 258713.700800001621246 ], [ 359789.188799999654293, 258712.125700000673532 ], [ 359770.867200002074242, 258691.972199998795986 ], [ 359747.737800002098083, 258666.530099999159575 ], [ 359830.287900000810623, 258595.092399999499321 ], [ 359874.737999998033047, 258550.113200001418591 ], [ 359937.246899999678135, 258523.771999999880791 ], [ 359915.732100002467632, 258437.348999999463558 ], [ 359914.196800000965595, 258428.259399998933077 ], [ 359914.259700000286102, 258420.871599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020600", "MAP": "D9-6206-T97", "PARCEL_NAM": "1C", "ACRE": "8-8", "LONGITUDE": -64.91989904, "LATITUDE": 18.35896682, "OBJECTID_1": 4709, "PARCEL_NO_": "102902020600", "Tax_Legal_": "1-B,C&D CANAAN&SHERPENJEWEL 7B GT.NORTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY", "Address": "3052 Estate Little Princess", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 528800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 975.56593859300006, "SHAPE_Area": 42517.8858483 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360062.295800000429153, 258933.562899999320507 ], [ 360008.60980000346899, 258713.866300001740456 ], [ 359991.722599998116493, 258644.75959999859333 ], [ 359938.139700002968311, 258738.793200001120567 ], [ 359916.240199998021126, 258760.679499998688698 ], [ 359865.416299998760223, 258778.489100001752377 ], [ 359857.678800001740456, 258780.344099998474121 ], [ 359784.682899996638298, 258764.018500000238419 ], [ 359939.29389999806881, 258984.485199999064207 ], [ 360051.765100002288818, 258939.176300000399351 ], [ 360062.295800000429153, 258933.562899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91992913, "LATITUDE": 18.35643743, "OBJECTID_1": 4710, "PARCEL_NO_": "102902020700", "Tax_Legal_": "CANAAN&SCHERPENJEWEL 1A(PORTION) GT.NORTHSIDE QTR.", "Name": "McCONNELL, F. W. , W. S. , M. S. & C. W", "Address": "6000 Estate Canaan", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 430600, "Improved_V": 496600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.614847420100006, "SHAPE_Area": 518.51991928200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359939.279399998486042, 258574.474199999123812 ], [ 359969.789200000464916, 258555.002700001001358 ], [ 359968.74210000038147, 258550.7179000005126 ], [ 359958.310900002717972, 258550.632500000298023 ], [ 359949.813900001347065, 258545.230000000447035 ], [ 359946.324000000953674, 258546.859700001776218 ], [ 359944.751900002360344, 258548.737799998372793 ], [ 359934.424500003457069, 258563.609000001102686 ], [ 359933.544100001454353, 258565.492800001055002 ], [ 359933.528499998152256, 258567.383699998259544 ], [ 359935.067900002002716, 258569.459399998188019 ], [ 359939.279399998486042, 258574.474199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902021000", "MAP": "D9-7211-T003", "PARCEL_NAM": "1A-2", "ACRE": "1.082", "LONGITUDE": -64.9198511, "LATITUDE": 18.35735125, "OBJECTID_1": 4711, "PARCEL_NO_": "102902021000", "Tax_Legal_": "1A-1,2,3,4,1A-B CANAAN&SHERPEN J 7B GT.NORTHSIDE QTR", "Name": "SCENIC ROCK LLC", "Address": "25887 County 12", "City": "Preston", "State": "Minnesota", "Zip": 55965, "Country": "United States", "Land_Value": 571700, "Improved_V": 4822600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.36623794100001, "SHAPE_Area": 3485.00137851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359919.993900001049042, 258677.483199998736382 ], [ 359956.064499996602535, 258707.33669999986887 ], [ 359991.722599998116493, 258644.75959999859333 ], [ 359986.674199998378754, 258624.100499998778105 ], [ 359943.127300001680851, 258627.113899998366833 ], [ 359941.111400000751019, 258633.461199998855591 ], [ 359934.757500000298023, 258648.880899999290705 ], [ 359928.240599997341633, 258663.095899999141693 ], [ 359921.915200002491474, 258675.077500000596046 ], [ 359919.993900001049042, 258677.483199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902021000", "MAP": "D9-7211-T003", "PARCEL_NAM": "1A-3", "ACRE": "1.204", "LONGITUDE": -64.92029824, "LATITUDE": 18.35797634, "OBJECTID_1": 4711, "PARCEL_NO_": "102902021000", "Tax_Legal_": "1A-1,2,3,4,1A-B CANAAN&SHERPEN J 7B GT.NORTHSIDE QTR", "Name": "SCENIC ROCK LLC", "Address": "25887 County 12", "City": "Preston", "State": "Minnesota", "Zip": 55965, "Country": "United States", "Land_Value": 571700, "Improved_V": 4822600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.932463703, "SHAPE_Area": 4655.1933620999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359904.54619999974966, 258697.105099998414516 ], [ 359897.278499998152256, 258705.302499998360872 ], [ 359892.929399996995926, 258708.361000001430511 ], [ 359885.271499998867512, 258714.142799999564886 ], [ 359878.328199997544289, 258717.179900001734495 ], [ 359865.416299998760223, 258778.489100001752377 ], [ 359916.240199998021126, 258760.679499998688698 ], [ 359938.139700002968311, 258738.793200001120567 ], [ 359956.064499996602535, 258707.33669999986887 ], [ 359919.993900001049042, 258677.483199998736382 ], [ 359916.322700001299381, 258682.079700000584126 ], [ 359908.626500003039837, 258692.50279999896884 ], [ 359904.54619999974966, 258697.105099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902021000", "MAP": "D9-7211-T003", "PARCEL_NAM": "1A-1", "ACRE": ".757", "LONGITUDE": -64.9197381, "LATITUDE": 18.35640145, "OBJECTID_1": 4711, "PARCEL_NO_": "102902021000", "Tax_Legal_": "1A-1,2,3,4,1A-B CANAAN&SHERPEN J 7B GT.NORTHSIDE QTR", "Name": "SCENIC ROCK LLC", "Address": "25887 County 12", "City": "Preston", "State": "Minnesota", "Zip": 55965, "Country": "United States", "Land_Value": 571700, "Improved_V": 4822600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.61111650967999998, "SHAPE_Area": 0.01765513035 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359969.625299997627735, 258555.107299998402596 ], [ 359969.834700003266335, 258555.189100001007318 ], [ 359969.789200000464916, 258555.002700001001358 ], [ 359969.625299997627735, 258555.107299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020700", "MAP": "D9-9029-T015", "PARCEL_NAM": "1A-D-REM", "ACRE": ".34", "LONGITUDE": -64.92025619, "LATITUDE": 18.35725305, "OBJECTID_1": 4710, "PARCEL_NO_": "102902020700", "Tax_Legal_": "CANAAN&SCHERPENJEWEL 1A(PORTION) GT.NORTHSIDE QTR.", "Name": "McCONNELL, F. W. , W. S. , M. S. & C. W", "Address": "6000 Estate Canaan", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 430600, "Improved_V": 496600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.74434736800001, "SHAPE_Area": 2175.9669785299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359877.331799998879433, 258670.663100000470877 ], [ 359901.528099998831749, 258691.504399999976158 ], [ 359911.329999998211861, 258679.287900000810623 ], [ 359920.412699997425079, 258668.532400000840425 ], [ 359929.037500001490116, 258650.380899999290705 ], [ 359933.995099999010563, 258636.496899999678135 ], [ 359939.116999998688698, 258623.645700000226498 ], [ 359944.645999997854233, 258603.405600000172853 ], [ 359946.41950000077486, 258598.090900000184774 ], [ 359946.792400002479553, 258594.827599998563528 ], [ 359946.131800003349781, 258591.03999999910593 ], [ 359944.457900002598763, 258588.051500000059605 ], [ 359939.675499998033047, 258597.749299999326468 ], [ 359907.408399999141693, 258640.138900000602007 ], [ 359903.689400002360344, 258646.538699999451637 ], [ 359896.73759999871254, 258652.697500001639128 ], [ 359883.486199997365475, 258664.377399999648333 ], [ 359879.139799997210503, 258668.414200000464916 ], [ 359877.331799998879433, 258670.663100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020700", "MAP": "D9-7211-T003", "PARCEL_NAM": "1A-E", "ACRE": ".04", "LONGITUDE": -64.92099607, "LATITUDE": 18.35783593, "OBJECTID_1": 4710, "PARCEL_NO_": "102902020700", "Tax_Legal_": "CANAAN&SCHERPENJEWEL 1A(PORTION) GT.NORTHSIDE QTR.", "Name": "McCONNELL, F. W. , W. S. , M. S. & C. W", "Address": "6000 Estate Canaan", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 430600, "Improved_V": 496600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.240768799600005, "SHAPE_Area": 145.48964206100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359851.811499997973442, 258716.122299998998642 ], [ 359850.018700003623962, 258715.579100001603365 ], [ 359846.786499999463558, 258714.521499998867512 ], [ 359844.723200000822544, 258713.215999998152256 ], [ 359843.502899996936321, 258711.852899998426437 ], [ 359841.890500001609325, 258710.873199999332428 ], [ 359839.046700000762939, 258709.883299998939037 ], [ 359832.710400000214577, 258707.962600000202656 ], [ 359830.575800001621246, 258707.42960000038147 ], [ 359828.826399996876717, 258707.350699998438358 ], [ 359827.200699999928474, 258707.981499999761581 ], [ 359825.633500002324581, 258709.385999999940395 ], [ 359824.846699997782707, 258710.474700000137091 ], [ 359824.253200002014637, 258711.693900000303984 ], [ 359823.699000000953674, 258714.149999998509884 ], [ 359826.294600002467632, 258713.999499998986721 ], [ 359826.814800001680851, 258713.831900000572205 ], [ 359831.488600000739098, 258713.354699999094009 ], [ 359831.749200001358986, 258715.87049999833107 ], [ 359832.49719999730587, 258717.037599999457598 ], [ 359833.942299999296665, 258717.371700000017881 ], [ 359835.779500000178814, 258717.344200000166893 ], [ 359845.537299998104572, 258716.52309999987483 ], [ 359851.811499997973442, 258716.122299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91832181, "LATITUDE": 18.35634083, "OBJECTID_1": 4694, "PARCEL_NO_": "102902010700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5A-2 &3 GREAT NORTHSIDE QTR", "Name": "BUDSAN, THYRA E. & OTHERS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48500, "Improved_V": 158100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.16752731400001, "SHAPE_Area": 794.00679146499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360095.723899997770786, 258511.860500000417233 ], [ 360115.486100003123283, 258569.774300001561642 ], [ 360136.525799997150898, 258564.372400000691414 ], [ 360130.186800003051758, 258536.629399999976158 ], [ 360117.267800003290176, 258538.63459999859333 ], [ 360106.828900001943111, 258533.482900001108646 ], [ 360102.847699999809265, 258527.539700001478195 ], [ 360100.513199999928474, 258517.599199999123812 ], [ 360098.929399996995926, 258514.208799999207258 ], [ 360095.723899997770786, 258511.860500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902011800", "MAP": "D9-4619-T88", "PARCEL_NAM": "5D-2", "ACRE": ".57", "LONGITUDE": -64.91801762, "LATITUDE": 18.35672085, "OBJECTID_1": 4702, "PARCEL_NO_": "102902011800", "Tax_Legal_": "5D-2 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE", "Name": "RICHARD A VIALET, JR and EVETH WEBSTER VIALET", "Address": "PO Box 8685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73100, "Improved_V": 209600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.5363507494, "SHAPE_Area": 168.56468836100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360145.59570000320673, 258562.229600001126528 ], [ 360150.142599999904633, 258606.510000001639128 ], [ 360158.11429999768734, 258605.4189000017941 ], [ 360149.939000003039837, 258578.877300001680851 ], [ 360145.59570000320673, 258562.229600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010100", "MAP": "D9-8752-T013", "PARCEL_NAM": "5H-1", "ACRE": ".51", "LONGITUDE": -64.91924894, "LATITUDE": 18.35640842, "OBJECTID_1": 4687, "PARCEL_NO_": "102902010100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5 GREAT NORTHSIDE QTR", "Name": "RAIMER, MARY & OTHERS", "Address": "PO Box 7757", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 699800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.00470493899999, "SHAPE_Area": 2125.7410344899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360011.84570000320673, 258538.991700001060963 ], [ 360009.98870000243187, 258543.094799999147654 ], [ 359991.874700002372265, 258564.381900001317263 ], [ 359988.936800003051758, 258568.583099998533726 ], [ 359987.544600002467632, 258573.930799998342991 ], [ 359987.204599998891354, 258577.432100001722574 ], [ 359987.074500001966953, 258580.625900000333786 ], [ 359988.507299996912479, 258582.905099999159575 ], [ 359991.185999996960163, 258584.988499999046326 ], [ 359992.214199997484684, 258586.02760000154376 ], [ 359994.284400001168251, 258586.456999998539686 ], [ 359996.467699997127056, 258585.753600001335144 ], [ 360004.905799999833107, 258580.979499999433756 ], [ 360011.264399997889996, 258576.909600000828505 ], [ 360014.699500001966953, 258575.289000000804663 ], [ 360018.545000001788139, 258574.187100000679493 ], [ 360030.083400003612041, 258570.675299998372793 ], [ 360042.058600001037121, 258564.48759999871254 ], [ 360055.499300003051758, 258561.663100000470877 ], [ 360041.054899998009205, 258523.492600001394749 ], [ 360023.377300001680851, 258533.422600001096725 ], [ 360018.913800001144409, 258535.929800000041723 ], [ 360011.84570000320673, 258538.991700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010500", "MAP": "D9-4619-T88", "PARCEL_NAM": "5D-3", "ACRE": ".74", "LONGITUDE": -64.91871265, "LATITUDE": 18.35628612, "OBJECTID_1": 4692, "PARCEL_NO_": "102902010500", "Tax_Legal_": "ST. JOSEPH & ROSENDAHL 5D-3 GR NORTHSIDE QTR", "Name": "RICHARD A VIALET, JR and EVETH WEBSTER VIALET", "Address": "PO Box 8685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88100, "Improved_V": 243700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.94923925500001, "SHAPE_Area": 3245.7396066000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360058.506899997591972, 258569.610700000077486 ], [ 360070.445200003683567, 258567.151799999177456 ], [ 360073.98929999768734, 258575.039700001478195 ], [ 360115.486100003123283, 258569.774300001561642 ], [ 360095.723899997770786, 258511.860500000417233 ], [ 360073.022600002586842, 258516.721799999475479 ], [ 360071.946099996566772, 258516.952399998903275 ], [ 360062.68129999935627, 258509.690200001001358 ], [ 360050.512900002300739, 258518.24549999833107 ], [ 360048.89299999922514, 258519.07660000026226 ], [ 360044.841700002551079, 258521.365499999374151 ], [ 360041.054899998009205, 258523.492600001394749 ], [ 360058.506899997591972, 258569.610700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902011900", "MAP": "D9-4619-T88", "PARCEL_NAM": "5D-1", "ACRE": ".584", "LONGITUDE": -64.91797627, "LATITUDE": 18.35691058, "OBJECTID_1": 4703, "PARCEL_NO_": "102902011900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5D-1 GREAT NORTHSIDE", "Name": "VIALET NILES (LIFE eSTATE), LEONICIA", "Address": "2512 Paxton St", "City": "Woodbridge", "State": "Virginia", "Zip": 22192, "Country": "United States", "Land_Value": 74900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.222465865499998, "SHAPE_Area": 128.06171380800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360151.587600000202656, 258620.582299999892712 ], [ 360162.030500002205372, 258618.133400000631809 ], [ 360158.11429999768734, 258605.4189000017941 ], [ 360150.142599999904633, 258606.510000001639128 ], [ 360151.587600000202656, 258620.582299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010400", "MAP": "F9-1442-T64", "PARCEL_NAM": "5E", "ACRE": null, "LONGITUDE": -64.91911197, "LATITUDE": 18.35731898, "OBJECTID_1": 4691, "PARCEL_NO_": "102902010400", "Tax_Legal_": "5E ST JOSEPH & ROSENDHAL NO 4 GREAT NORTHSIDE QTR", "Name": "RAIMER, LAWRENCE,HUBERT,EUGENIA,MAVIS,WANDA,MAGDALINA,& DAVID RAIMER E", "Address": "PO Box 7757", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010757, "Country": "United States", "Land_Value": 138200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 426.812111716, "SHAPE_Area": 8574.7369461399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360077.39190000295639, 258626.357900001108646 ], [ 360033.041799999773502, 258636.984999999403954 ], [ 360019.714500002563, 258587.693999998271465 ], [ 359979.369000002741814, 258594.205600000917912 ], [ 359979.89639999717474, 258596.364000000059605 ], [ 359989.177799999713898, 258634.345800001174212 ], [ 360008.60980000346899, 258713.866300001740456 ], [ 360099.798699997365475, 258696.020799998193979 ], [ 360077.39190000295639, 258626.357900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010100", "MAP": null, "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.91880305, "LATITUDE": 18.35814872, "OBJECTID_1": 4687, "PARCEL_NO_": "102902010100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5 GREAT NORTHSIDE QTR", "Name": "RAIMER, MARY & OTHERS", "Address": "PO Box 7757", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 699800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 375.22329691900001, "SHAPE_Area": 8747.7089061900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360029.945799998939037, 258801.178899999707937 ], [ 360128.193999998271465, 258784.302400000393391 ], [ 360099.798699997365475, 258696.020799998193979 ], [ 360008.60980000346899, 258713.866300001740456 ], [ 360012.211099997162819, 258728.603999998420477 ], [ 360029.945799998939037, 258801.178899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010100", "MAP": "D9-568-T66", "PARCEL_NAM": "5G", "ACRE": "1.23", "LONGITUDE": -64.91822997, "LATITUDE": 18.35756372, "OBJECTID_1": 4687, "PARCEL_NO_": "102902010100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5 GREAT NORTHSIDE QTR", "Name": "RAIMER, MARY & OTHERS", "Address": "PO Box 7757", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 699800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.990685262, "SHAPE_Area": 5487.3922414799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360089.274899996817112, 258650.917100001126528 ], [ 360085.661100000143051, 258652.06700000166893 ], [ 360099.798699997365475, 258696.020799998193979 ], [ 360113.737700000405312, 258739.357400000095367 ], [ 360162.296099998056889, 258724.868599999696016 ], [ 360152.913900002837181, 258633.4989 ], [ 360120.706799998879433, 258642.314100001007318 ], [ 360089.274899996817112, 258650.917100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902011900", "MAP": "D9-4619-T88", "PARCEL_NAM": "5D-1", "ACRE": ".584", "LONGITUDE": -64.91836884, "LATITUDE": 18.35704303, "OBJECTID_1": 4703, "PARCEL_NO_": "102902011900", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5D-1 GREAT NORTHSIDE", "Name": "VIALET NILES (LIFE eSTATE), LEONICIA", "Address": "2512 Paxton St", "City": "Woodbridge", "State": "Virginia", "Zip": 22192, "Country": "United States", "Land_Value": 74900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.52035346299999, "SHAPE_Area": 2325.2127051000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360152.913900002837181, 258633.4989 ], [ 360150.142599999904633, 258606.510000001639128 ], [ 360074.304300002753735, 258616.758600000292063 ], [ 360085.661100000143051, 258652.06700000166893 ], [ 360089.274899996817112, 258650.917100001126528 ], [ 360120.706799998879433, 258642.314100001007318 ], [ 360152.913900002837181, 258633.4989 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902011800", "MAP": "D9-4619-T88", "PARCEL_NAM": "5D-2", "ACRE": ".57", "LONGITUDE": -64.91843627, "LATITUDE": 18.35670778, "OBJECTID_1": 4702, "PARCEL_NO_": "102902011800", "Tax_Legal_": "5D-2 ST JOSEPH & ROSENDAHL GREAT NORTHSIDE", "Name": "RICHARD A VIALET, JR and EVETH WEBSTER VIALET", "Address": "PO Box 8685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73100, "Improved_V": 209600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.48415541000003, "SHAPE_Area": 3484.89854633 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360150.142599999904633, 258606.510000001639128 ], [ 360145.59570000320673, 258562.229600001126528 ], [ 360136.525799997150898, 258564.372400000691414 ], [ 360115.486100003123283, 258569.774300001561642 ], [ 360073.98929999768734, 258575.039700001478195 ], [ 360070.445200003683567, 258567.151799999177456 ], [ 360058.506899997591972, 258569.610700000077486 ], [ 360062.723200000822544, 258580.752500001341105 ], [ 360074.304300002753735, 258616.758600000292063 ], [ 360150.142599999904633, 258606.510000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010100", "MAP": null, "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.91789502, "LATITUDE": 18.35905543, "OBJECTID_1": 4687, "PARCEL_NO_": "102902010100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5 GREAT NORTHSIDE QTR", "Name": "RAIMER, MARY & OTHERS", "Address": "PO Box 7757", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 699800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1098.27579339, "SHAPE_Area": 54248.381010500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360252.20610000193119, 258641.366099998354912 ], [ 360192.463200002908707, 258654.343199998140335 ], [ 360155.87049999833107, 258662.291799999773502 ], [ 360162.296099998056889, 258724.868599999696016 ], [ 360113.737700000405312, 258739.357400000095367 ], [ 360128.193999998271465, 258784.302400000393391 ], [ 360029.945799998939037, 258801.178899999707937 ], [ 360033.499499998986721, 258815.721400000154972 ], [ 360062.295800000429153, 258933.562899999320507 ], [ 360174.197700001299381, 259049.73589999973774 ], [ 360195.282300002872944, 259035.7652000002563 ], [ 360223.632700003683567, 259020.798500001430511 ], [ 360229.573700003325939, 259018.653000000864267 ], [ 360251.821999996900558, 258647.769200000911951 ], [ 360252.20610000193119, 258641.366099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902011700", "MAP": "D9-3123-T05", "PARCEL_NAM": "5C-2", "ACRE": "1.16", "LONGITUDE": -64.91751624, "LATITUDE": 18.357059, "OBJECTID_1": 4701, "PARCEL_NO_": "102902011700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5C-2 ST. NORTHSIDE", "Name": "BRYAN, DAVID HARRY & URSULA RUTH BRYAN (TRUSTEES)", "Address": "PO Box 307685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 125000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.72650928199999, "SHAPE_Area": 4346.4947825199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360155.87049999833107, 258662.291799999773502 ], [ 360192.463200002908707, 258654.343199998140335 ], [ 360252.20610000193119, 258641.366099998354912 ], [ 360254.906300000846386, 258596.353100001811981 ], [ 360214.85869999974966, 258605.744600001722574 ], [ 360184.011500000953674, 258612.97859999909997 ], [ 360162.030500002205372, 258618.133400000631809 ], [ 360151.587600000202656, 258620.582299999892712 ], [ 360152.913900002837181, 258633.4989 ], [ 360155.87049999833107, 258662.291799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004051600", "MAP": "D9-3007-T85", "PARCEL_NAM": "B-29", "ACRE": ".0026", "LONGITUDE": -64.90183734, "LATITUDE": 18.35643179, "OBJECTID_1": 6298, "PARCEL_NO_": "103004051600", "Tax_Legal_": "LOVENLUND B-29 GT. NORTHSIDE QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.250710813200001, "SHAPE_Area": 23.896709857800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361858.145400002598763, 258577.669700000435114 ], [ 361861.998599998652935, 258576.196299999952316 ], [ 361866.121399998664856, 258573.063799999654293 ], [ 361860.268200002610683, 258571.203400000929832 ], [ 361858.145400002598763, 258577.669700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021200", "MAP": null, "PARCEL_NAM": "2K", "ACRE": null, "LONGITUDE": -64.95725025, "LATITUDE": 18.35428398, "OBJECTID_1": 3504, "PARCEL_NO_": "102704021200", "Tax_Legal_": "BONNE RESOLUTION 2K LITTLE NORTHSIDE", "Name": "LAPLACE, AGNITA G. , DIANA & ALBA I", "Address": "6612 E Prescott Ct", "City": "ORANGE", "State": "California", "Zip": 92867, "Country": "United States", "Land_Value": 3900, "Improved_V": 195400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.819660121, "SHAPE_Area": 611.38559684400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356013.61540000140667, 258300.280099999159575 ], [ 356028.589100003242493, 258289.599399998784065 ], [ 356021.986699998378754, 258285.356800001114607 ], [ 356016.996399998664856, 258281.743099998682737 ], [ 356007.311899997293949, 258273.065699998289347 ], [ 355997.215199999511242, 258281.010600000619888 ], [ 355985.915799997746944, 258289.901999998837709 ], [ 355988.337999999523163, 258292.481199998408556 ], [ 355996.366899996995926, 258296.557700000703335 ], [ 356013.61540000140667, 258300.280099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021100", "MAP": "F9-2865-T71", "PARCEL_NAM": "2 REM", "ACRE": ".392", "LONGITUDE": -64.95752018, "LATITUDE": 18.35403436, "OBJECTID_1": 3503, "PARCEL_NO_": "102704021100", "Tax_Legal_": "BONNE RESOLUTION 2 LITTLE NORTHSIDE QTR", "Name": "DIANA LAPLACE LIVING TRUST", "Address": "6612 E Prescott Ct", "City": "ORANGE", "State": "California", "Zip": 92867, "Country": "United States", "Land_Value": 36900, "Improved_V": 134500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.72736188100001, "SHAPE_Area": 1332.88505295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355997.215199999511242, 258281.010600000619888 ], [ 356007.311899997293949, 258273.065699998289347 ], [ 356002.250299997627735, 258268.5304000005126 ], [ 355998.125, 258264.337200000882149 ], [ 355995.016199998557568, 258259.968100000172853 ], [ 355984.449000000953674, 258245.167700000107288 ], [ 355983.032300002872944, 258242.020899999886751 ], [ 355954.126900002360344, 258238.161200001835823 ], [ 355946.82150000333786, 258243.800999999046326 ], [ 355952.40820000320673, 258250.601700000464916 ], [ 355960.431699998676777, 258255.3114 ], [ 355969.234600000083447, 258263.193900000303984 ], [ 355985.141500003635883, 258289.077500000596046 ], [ 355985.915799997746944, 258289.901999998837709 ], [ 355997.215199999511242, 258281.010600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021300", "MAP": "F9-1513-T65", "PARCEL_NAM": "2I", "ACRE": ".15", "LONGITUDE": -64.95742553, "LATITUDE": 18.35362428, "OBJECTID_1": 3505, "PARCEL_NO_": "102704021300", "Tax_Legal_": "2i BONNE RESOLUTION NO.5 LITTLE NORTHSIDE QTR", "Name": "JAMES, KELVIN J & KEITH O; WINSTON WILLIAMS", "Address": "5527 Sara Creek Ln", "City": "SUGAR HILL", "State": "Georgia", "Zip": 30518, "Country": "United States", "Land_Value": 14600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.797751078, "SHAPE_Area": 2252.1028958400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356006.661300003528595, 258224.025699999183416 ], [ 356031.8125, 258210.040300000458956 ], [ 356041.8429000005126, 258203.743900001049042 ], [ 356034.259300000965595, 258202.720100000500679 ], [ 356006.675599999725819, 258198.290300000458956 ], [ 355999.632799997925758, 258197.159299999475479 ], [ 355969.836999997496605, 258192.482500001788139 ], [ 355954.126900002360344, 258238.161200001835823 ], [ 355983.032300002872944, 258242.020899999886751 ], [ 355981.988300003111362, 258239.701699998229742 ], [ 355983.271899998188019, 258235.821899998933077 ], [ 355986.416500002145767, 258234.135600000619888 ], [ 355989.612000003457069, 258232.539799999445677 ], [ 355995.661399997770786, 258229.518899999558926 ], [ 356006.661300003528595, 258224.025699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022000", "MAP": "G9-518-T59", "PARCEL_NAM": "2AD", "ACRE": null, "LONGITUDE": -64.95682119, "LATITUDE": 18.35321556, "OBJECTID_1": 3512, "PARCEL_NO_": "102704022000", "Tax_Legal_": "2AD BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "SMITH, GRANVILLE & USINECA", "Address": "PO Box 8353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 87000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.52850828800001, "SHAPE_Area": 976.904238534 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356070.855999998748302, 258173.613899998366833 ], [ 356070.563799999654293, 258156.033500000834465 ], [ 356034.430200003087521, 258153.980099998414516 ], [ 356046.696099996566772, 258194.612100001424551 ], [ 356047.554300002753735, 258197.454700000584126 ], [ 356051.272799998521805, 258193.360100001096725 ], [ 356070.855999998748302, 258173.613899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704023200", "MAP": "F9-192-T57", "PARCEL_NAM": "2F", "ACRE": ".01", "LONGITUDE": -64.95739072000001, "LATITUDE": 18.35298169, "OBJECTID_1": 3524, "PARCEL_NO_": "102704023200", "Tax_Legal_": "BONNE RESOLUTION 2F LITTLE NORTHSIDE QTR", "Name": "JAMES, KEITH O.", "Address": "248 Lawlor St", "City": "New Britain", "State": "Connecticut", "Zip": 6051, "Country": "United States", "Land_Value": 1800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.895017515399999, "SHAPE_Area": 117.628560494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355985.851099997758865, 258147.655200000852346 ], [ 356003.962200000882149, 258149.46059999987483 ], [ 356006.468800000846386, 258149.710400000214577 ], [ 356004.329700000584126, 258148.709100000560284 ], [ 356003.275200001895428, 258148.215399999171495 ], [ 355997.668799996376038, 258143.736600000411272 ], [ 355990.48929999768734, 258134.60080000013113 ], [ 355985.851099997758865, 258147.655200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021900", "MAP": "F9-1182-T63", "PARCEL_NAM": "2H", "ACRE": ".883", "LONGITUDE": -64.95723376, "LATITUDE": 18.35327442, "OBJECTID_1": 3511, "PARCEL_NO_": "102704021900", "Tax_Legal_": "2H BONNE RESOLUTION No. 5 LITTLE NORTHSIDE QTR", "Name": "STEELE SIBLINGS TRUST", "Address": "PO BOX 995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88900, "Improved_V": 400500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.78219539599999, "SHAPE_Area": 3043.86809576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356003.962200000882149, 258149.46059999987483 ], [ 355985.851099997758865, 258147.655200000852346 ], [ 355985.069799996912479, 258149.854299999773502 ], [ 355973.139600001275539, 258183.432500001043081 ], [ 355969.836999997496605, 258192.482500001788139 ], [ 355999.632799997925758, 258197.159299999475479 ], [ 356006.675599999725819, 258198.290300000458956 ], [ 356034.259300000965595, 258202.720100000500679 ], [ 356041.8429000005126, 258203.743900001049042 ], [ 356047.554300002753735, 258197.454700000584126 ], [ 356046.696099996566772, 258194.612100001424551 ], [ 356034.430200003087521, 258153.980099998414516 ], [ 356020.972800001502037, 258153.215399999171495 ], [ 356012.913199998438358, 258152.727299999445677 ], [ 356006.468800000846386, 258149.710400000214577 ], [ 356003.962200000882149, 258149.46059999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95755583, "LATITUDE": 18.35486501, "OBJECTID_1": 3499, "PARCEL_NO_": "102704020700", "Tax_Legal_": "5B BONNE RESOLUTION LT.NORTHSIDE QTR.", "Name": "ANNETTE T ZACHMAN 2016 TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 206600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.777372335, "SHAPE_Area": 874.71751258300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355966.106100000441074, 258338.151099998503923 ], [ 355953.124899998307228, 258371.503899998962879 ], [ 355989.967200003564358, 258361.899999998509884 ], [ 355989.373400002717972, 258360.250700000673532 ], [ 355988.610200002789497, 258355.178199999034405 ], [ 355989.490299999713898, 258346.530600000172853 ], [ 355990.334299996495247, 258342.104499999433756 ], [ 355992.80179999768734, 258336.425200000405312 ], [ 355994.104699999094009, 258334.416200000792742 ], [ 355966.106100000441074, 258338.151099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95759346, "LATITUDE": 18.35513161, "OBJECTID_1": 3496, "PARCEL_NO_": "102704020400", "Tax_Legal_": "5C BONNE RESOLUTION LITTLE NORTHSIDE", "Name": "BERRY, CHRISTOPHER A. & LORNA M. LAPLACE", "Address": "7914 Bonne Resolution #3A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023462, "Country": "United States", "Land_Value": 22100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.67670909700001, "SHAPE_Area": 1174.9209186400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355953.124899998307228, 258371.503899998962879 ], [ 355944.968299999833107, 258392.460900001227856 ], [ 355956.813400000333786, 258396.081199999898672 ], [ 355968.083800002932549, 258398.284400001168251 ], [ 355982.85419999808073, 258399.8125 ], [ 355990.178400002419949, 258372.602600000798702 ], [ 355991.736599996685982, 258366.813900001347065 ], [ 355989.967200003564358, 258361.899999998509884 ], [ 355953.124899998307228, 258371.503899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95729742, "LATITUDE": 18.35518029, "OBJECTID_1": 3497, "PARCEL_NO_": "102704020500", "Tax_Legal_": "BONNE RESOLUTION 5D LITTLE NORTHSIDE", "Name": "HUSSEIN, MUSA H", "Address": "PO Box 304157", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 385700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.19858238499999, "SHAPE_Area": 814.49898619700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355990.178400002419949, 258372.602600000798702 ], [ 355982.85419999808073, 258399.8125 ], [ 355985.808300003409386, 258400.118200000375509 ], [ 356000.321900002658367, 258400.236999999731779 ], [ 356012.431000001728535, 258398.647300001233816 ], [ 356022.117499999701977, 258397.46000000089407 ], [ 356014.236000001430511, 258376.075100000947714 ], [ 356006.973800003528595, 258376.648899998515844 ], [ 355998.937600001692772, 258373.416799999773502 ], [ 355993.331200003623962, 258368.937899999320507 ], [ 355991.736599996685982, 258366.813900001347065 ], [ 355990.178400002419949, 258372.602600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95768409, "LATITUDE": 18.35440045, "OBJECTID_1": 3494, "PARCEL_NO_": "102704020200", "Tax_Legal_": "BONNE RESOLUTION 3B LITTLE NORTHSIDE QTR", "Name": "GREEN, VINCENT & ORNA", "Address": "PO Box 307001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.015979053, "SHAPE_Area": 1205.3837996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355972.476899996399879, 258307.884799998253584 ], [ 355980.916299998760223, 258293.550400000065565 ], [ 355978.674800001084805, 258290.924400001764297 ], [ 355966.750900000333786, 258270.772900000214577 ], [ 355942.31700000166893, 258299.281700000166893 ], [ 355954.154600001871586, 258329.565000001341105 ], [ 355956.818899996578693, 258334.479800000786781 ], [ 355972.476899996399879, 258307.884799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013700", "MAP": "D9-6674-T99", "PARCEL_NAM": "3J", "ACRE": null, "LONGITUDE": -64.9581376, "LATITUDE": 18.35467934, "OBJECTID_1": 3215, "PARCEL_NO_": "102703013700", "Tax_Legal_": "3 REM ESTATE BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "LAPLACE, AGNES GERTRUDE & GENE ANTHONY", "Address": "4 Abc-3 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.795993426, "SHAPE_Area": 1778.8681172900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355934.847099997103214, 258301.914500001817942 ], [ 355927.652099996805191, 258306.962699998170137 ], [ 355882.831600002944469, 258320.403599999845028 ], [ 355899.341700002551079, 258352.153599999845028 ], [ 355929.527800001204014, 258357.368200000375509 ], [ 355930.192100003361702, 258355.870999999344349 ], [ 355934.847099997103214, 258301.914500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021000", "MAP": "G9-2225-T73", "PARCEL_NAM": "5", "ACRE": ".28", "LONGITUDE": -64.95740331, "LATITUDE": 18.35455215, "OBJECTID_1": 3502, "PARCEL_NO_": "102704021000", "Tax_Legal_": "5 REM.ESTATE BONNE RESO;LUTION No.5 LITTLE NORTHSIDE QTR.", "Name": "PETERSEN, JR. , ROBERT M. & MERLIT", "Address": "PO Box 11576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36700, "Improved_V": 368100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.30382184199999, "SHAPE_Area": 1175.9463253500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355982.666799999773502, 258295.601199999451637 ], [ 355966.106100000441074, 258338.151099998503923 ], [ 355994.104699999094009, 258334.416200000792742 ], [ 355996.887299999594688, 258330.125799998641014 ], [ 355999.324199996888638, 258328.034800000488758 ], [ 356002.727700002491474, 258324.749000001698732 ], [ 356005.828699998557568, 258321.755199998617172 ], [ 356007.448499999940395, 258320.924100000411272 ], [ 356015.554799996316433, 258315.924199998378754 ], [ 356019.631300002336502, 258310.68019999936223 ], [ 356021.283500000834465, 258306.049699999392033 ], [ 356015.630300000309944, 258307.058899998664856 ], [ 356008.378899998962879, 258306.366300001740456 ], [ 355991.489500001072884, 258301.161800000816584 ], [ 355982.666799999773502, 258295.601199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704023000", "MAP": "G9-439-T56", "PARCEL_NAM": "2E", "ACRE": null, "LONGITUDE": -64.95710408, "LATITUDE": 18.3543533, "OBJECTID_1": 3522, "PARCEL_NO_": "102704023000", "Tax_Legal_": "BONNE RESOLUTION 2E LITTLE NORTHSIDE QTR", "Name": "LAPLACE, L. & BOUGH, J", "Address": "PO Box 301827", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.7841154268, "SHAPE_Area": 56.7926778283 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356028.589100003242493, 258289.599399998784065 ], [ 356013.61540000140667, 258300.280099999159575 ], [ 356015.684299997985363, 258300.726500000804663 ], [ 356022.95549999922514, 258299.097300000488758 ], [ 356027.271600000560284, 258295.825199998915195 ], [ 356028.363499999046326, 258292.457299999892712 ], [ 356028.589100003242493, 258289.599399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021700", "MAP": "F9-1624-T65", "PARCEL_NAM": "2J", "ACRE": ".19", "LONGITUDE": -64.95697154, "LATITUDE": 18.35381862, "OBJECTID_1": 3509, "PARCEL_NO_": "102704021700", "Tax_Legal_": "2J BONNE RESOLUTION No.5 LITTLE NORTHSIDE QTR.", "Name": "WILKINSON, SHERNETTE", "Address": "11975 NW 2nd St", "City": "Pompano Beach", "State": "Florida", "Zip": 33071, "Country": "United States", "Land_Value": 19400, "Improved_V": 259200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.20803913, "SHAPE_Area": 1262.41094563 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356047.891099996864796, 258211.697599999606609 ], [ 356047.878499999642372, 258208.2027000002563 ], [ 356041.301600001752377, 258211.766800001263618 ], [ 356026.137500002980232, 258219.984600000083447 ], [ 356013.237300001084805, 258226.156300000846386 ], [ 356038.677799999713898, 258265.319099999964237 ], [ 356051.695699997246265, 258264.500300001353025 ], [ 356050.787299998104572, 258250.351399999111891 ], [ 356047.891099996864796, 258211.697599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704021800", "MAP": "F9-2865-T71", "PARCEL_NAM": "2L", "ACRE": ".436", "LONGITUDE": -64.95719691, "LATITUDE": 18.35395278, "OBJECTID_1": 3510, "PARCEL_NO_": "102704021800", "Tax_Legal_": "BONNE RESOLUTION 2L LITTLE NORTHSIDE QTR", "Name": "LEWIS, MELVIN & LUCITA A.", "Address": "PO Box 303521", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.405534179, "SHAPE_Area": 1344.7231629800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356032.88740000128746, 258269.101500000804663 ], [ 356038.677799999713898, 258265.319099999964237 ], [ 356013.237300001084805, 258226.156300000846386 ], [ 356008.486400000751019, 258228.429200001060963 ], [ 355998.949600003659725, 258232.991799999028444 ], [ 355996.207099996507168, 258234.226399999111891 ], [ 355990.184000000357628, 258236.937800001353025 ], [ 355987.753700003027916, 258239.166700001806021 ], [ 355987.483400002121925, 258241.855599999427795 ], [ 355994.29389999806881, 258251.194200001657009 ], [ 356000.412500001490116, 258259.187600001692772 ], [ 356012.705399997532368, 258271.782299999147654 ], [ 356019.482900001108646, 258277.857799999415874 ], [ 356032.88740000128746, 258269.101500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95694078, "LATITUDE": 18.35418701, "OBJECTID_1": 3525, "PARCEL_NO_": "102704023400", "Tax_Legal_": "BONNE RESOLUTION 2G LITTLE NORTHSIDE", "Name": "MANTOR, NORBERT & JUSTINA", "Address": "PO Box 8585", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12600, "Improved_V": 130500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.598101119399999, "SHAPE_Area": 598.68634146800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356032.88740000128746, 258269.101500000804663 ], [ 356019.482900001108646, 258277.857799999415874 ], [ 356022.449000000953674, 258280.516699999570847 ], [ 356031.929200001060963, 258286.927299998700619 ], [ 356037.55179999768734, 258289.506499998271465 ], [ 356046.058200001716614, 258290.703600000590086 ], [ 356052.868100002408028, 258290.054000001400709 ], [ 356052.211099997162819, 258272.527899999171495 ], [ 356051.695699997246265, 258264.500300001353025 ], [ 356038.677799999713898, 258265.319099999964237 ], [ 356032.88740000128746, 258269.101500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704026500", "MAP": "D9-7222-T003", "PARCEL_NAM": "10H-3", "ACRE": ".52", "LONGITUDE": -64.9586353, "LATITUDE": 18.36073307, "OBJECTID_1": 3526, "PARCEL_NO_": "102704026500", "Tax_Legal_": "10H-2 & 10H-3 BONNE RESOLUTION F/K/A 10B-2 #5 LT.NORTHSIDE QTR", "Name": "MARK GORDON REVOCABLE TRUST", "Address": "PO BOX 4544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.10648816099999, "SHAPE_Area": 1700.9176444300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355821.321999996900558, 259006.700399998575449 ], [ 355858.71000000089407, 259031.828999999910593 ], [ 355886.112999998033047, 258970.997699998319149 ], [ 355877.367399998009205, 258965.721000000834465 ], [ 355863.312799997627735, 258987.022599998861551 ], [ 355834.876599997282028, 258990.759199999272823 ], [ 355821.321999996900558, 259006.700399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024000", "MAP": "A9-649-T005", "PARCEL_NAM": "10H REM", "ACRE": "7.726", "LONGITUDE": -64.95872333, "LATITUDE": 18.36011422, "OBJECTID_1": 2869, "PARCEL_NO_": "102701024000", "Tax_Legal_": "BONNE RESOLUTION 10 LITTLE NORTHSIDE", "Name": "BERRY, MARIE C", "Address": "PO Box 304854", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 462000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 675.09595991399999, "SHAPE_Area": 20643.853344 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355763.986299999058247, 258968.164799999445677 ], [ 355821.321999996900558, 259006.700399998575449 ], [ 355834.876599997282028, 258990.759199999272823 ], [ 355863.312799997627735, 258987.022599998861551 ], [ 355877.367399998009205, 258965.721000000834465 ], [ 355952.591399997472763, 259011.107599999755621 ], [ 355961.675399996340275, 258961.218400001525879 ], [ 355964.689800001680851, 258937.523699998855591 ], [ 355958.67849999666214, 258934.385000001639128 ], [ 355861.524700000882149, 258885.460499998182058 ], [ 355756.562799997627735, 258832.883699998259544 ], [ 355763.986299999058247, 258968.164799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024000", "MAP": "D9-7222-T003", "PARCEL_NAM": "10H-5", "ACRE": ".14", "LONGITUDE": -64.95780974, "LATITUDE": 18.36110916, "OBJECTID_1": 2869, "PARCEL_NO_": "102701024000", "Tax_Legal_": "BONNE RESOLUTION 10 LITTLE NORTHSIDE", "Name": "BERRY, MARIE C", "Address": "PO Box 304854", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 462000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.11820371100001, "SHAPE_Area": 676.93450417899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355938.041299998760223, 259085.147999998182058 ], [ 355938.061099998652935, 259082.826099999248981 ], [ 355941.354699999094009, 259074.831500001251698 ], [ 355941.372599996626377, 259072.720800001174212 ], [ 355952.591399997472763, 259011.107599999755621 ], [ 355944.437200002372265, 259006.187699999660254 ], [ 355933.366499997675419, 259057.515599999576807 ], [ 355933.366499997675419, 259067.837000001221895 ], [ 355934.6841000020504, 259076.840799998492002 ], [ 355938.041299998760223, 259085.147999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024000", "MAP": "D9-7222-T003", "PARCEL_NAM": "10H-4", "ACRE": ".17", "LONGITUDE": -64.95843449, "LATITUDE": 18.36077712, "OBJECTID_1": 2869, "PARCEL_NO_": "102701024000", "Tax_Legal_": "BONNE RESOLUTION 10 LITTLE NORTHSIDE", "Name": "BERRY, MARIE C", "Address": "PO Box 304854", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 462000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.87975849899999, "SHAPE_Area": 705.57209722899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355858.71000000089407, 259031.828999999910593 ], [ 355869.07039999961853, 259038.792300000786781 ], [ 355893.670800000429153, 258975.557700000703335 ], [ 355886.112999998033047, 258970.997699998319149 ], [ 355858.71000000089407, 259031.828999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701026400", "MAP": "D9-7222-T003", "PARCEL_NAM": "10H-1", "ACRE": ".5063", "LONGITUDE": -64.95798334, "LATITUDE": 18.36105233, "OBJECTID_1": 2890, "PARCEL_NO_": "102701026400", "Tax_Legal_": "10H-1(F/K/A/10B)BONNE RESOLUTION #5 LT NORTHSIDE QTR", "Name": "KAESTNER, JR, THOMAS PATERSON", "Address": "6505 ESTATE NAZARETH", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.87365175299999, "SHAPE_Area": 2217.3384423500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355900.056599996984005, 259059.618299998342991 ], [ 355938.041299998760223, 259085.147999998182058 ], [ 355934.6841000020504, 259076.840799998492002 ], [ 355933.366499997675419, 259067.837000001221895 ], [ 355933.366499997675419, 259057.515599999576807 ], [ 355944.437200002372265, 259006.187699999660254 ], [ 355920.929499998688698, 258992.004299998283386 ], [ 355900.056599996984005, 259059.618299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704026500", "MAP": "D9-7222-T003", "PARCEL_NAM": "10H-2", "ACRE": ".5146", "LONGITUDE": -64.95824873, "LATITUDE": 18.36087785, "OBJECTID_1": 3526, "PARCEL_NO_": "102704026500", "Tax_Legal_": "10H-2 & 10H-3 BONNE RESOLUTION F/K/A 10B-2 #5 LT.NORTHSIDE QTR", "Name": "MARK GORDON REVOCABLE TRUST", "Address": "PO BOX 4544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.78423412000001, "SHAPE_Area": 2329.0429357600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355869.07039999961853, 259038.792300000786781 ], [ 355900.056599996984005, 259059.618299998342991 ], [ 355920.929499998688698, 258992.004299998283386 ], [ 355893.670800000429153, 258975.557700000703335 ], [ 355869.07039999961853, 259038.792300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702045500", "MAP": "A9-157-T71", "PARCEL_NAM": "14-25", "ACRE": null, "LONGITUDE": -64.95813995, "LATITUDE": 18.36143245, "OBJECTID_1": 3146, "PARCEL_NO_": "102702045500", "Tax_Legal_": "14-25 BONNE RESOLUTION LITTLE NORTHSIDE QUARTER", "Name": "LETTSOME, EDWIN & LOUISE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 222700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.506835929, "SHAPE_Area": 1603.62284006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355876.851999998092651, 259044.022399999201298 ], [ 355882.495600000023842, 259074.138700000941753 ], [ 355921.701099999248981, 259110.134399998933077 ], [ 355930.673000000417233, 259098.175500001758337 ], [ 355938.041299998760223, 259085.147999998182058 ], [ 355900.056599996984005, 259059.618299998342991 ], [ 355876.851999998092651, 259044.022399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701025400", "MAP": "A9-157-T71", "PARCEL_NAM": "14-31", "ACRE": null, "LONGITUDE": -64.95876362, "LATITUDE": 18.36108771, "OBJECTID_1": 2882, "PARCEL_NO_": "102701025400", "Tax_Legal_": "BONNE RESOLUTION 14-31 LT. NORTHSIDE", "Name": "GORDON, MARK", "Address": "P.O. BOX 4544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.509578022, "SHAPE_Area": 800.88752243399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355827.020099997520447, 259054.897399999201298 ], [ 355839.039300002157688, 259063.861699998378754 ], [ 355856.198399998247623, 259037.40430000051856 ], [ 355858.71000000089407, 259031.828999999910593 ], [ 355835.917999997735023, 259016.510499998927116 ], [ 355834.093999996781349, 259024.37950000166893 ], [ 355827.020099997520447, 259054.897399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701023600", "MAP": "A9-157-T71", "PARCEL_NAM": "14-90", "ACRE": null, "LONGITUDE": -64.95926007, "LATITUDE": 18.3610262, "OBJECTID_1": 2866, "PARCEL_NO_": "102701023600", "Tax_Legal_": "BONNE RESOLUTION 14-90 LITTLE NORTHSIDE", "Name": "MARK GORDON REVOCABLE TRUST", "Address": "PO BOX 4544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 95300, "Improved_V": 158800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.87250384399999, "SHAPE_Area": 6083.8044390300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355827.020099997520447, 259054.897399999201298 ], [ 355835.917999997735023, 259016.510499998927116 ], [ 355763.986299999058247, 258968.164799999445677 ], [ 355764.744499996304512, 258981.982599999755621 ], [ 355764.651000000536442, 258992.958700001239777 ], [ 355748.619000002741814, 259076.420499999076128 ], [ 355784.015799999237061, 259086.209399998188019 ], [ 355788.911300003528595, 259079.494500000029802 ], [ 355792.179700002074242, 259074.454999998211861 ], [ 355827.020099997520447, 259054.897399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010100", "MAP": "D9-568-T66", "PARCEL_NAM": "5H REM", "ACRE": ".14", "LONGITUDE": -64.91915281, "LATITUDE": 18.35662162, "OBJECTID_1": 4687, "PARCEL_NO_": "102902010100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5 GREAT NORTHSIDE QTR", "Name": "RAIMER, MARY & OTHERS", "Address": "PO Box 7757", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 699800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.276195761, "SHAPE_Area": 757.83675554199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360056.894000001251698, 258565.348600000143051 ], [ 360048.983900003135204, 258567.121399998664856 ], [ 360043.997800000011921, 258568.213899999856949 ], [ 360040.144599996507168, 258570.243200000375509 ], [ 360035.978699997067451, 258572.476100001484156 ], [ 360033.375600002706051, 258573.794399999082088 ], [ 360027.554999999701977, 258575.4983000010252 ], [ 360019.451700001955032, 258577.389499999582767 ], [ 360016.64639999717474, 258578.087699998170137 ], [ 360014.983300000429153, 258578.589299999177456 ], [ 360013.525799997150898, 258579.298700001090765 ], [ 360009.35639999806881, 258581.943799998611212 ], [ 359997.794200003147125, 258588.341099999845028 ], [ 359995.192900002002716, 258589.453299999237061 ], [ 359987.924199998378754, 258590.732999999076128 ], [ 359981.191799998283386, 258589.852800000458956 ], [ 359978.12780000269413, 258589.126499999314547 ], [ 359979.369000002741814, 258594.205600000917912 ], [ 360062.723200000822544, 258580.752500001341105 ], [ 360056.894000001251698, 258565.348600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010100", "MAP": "D9-8752-T013", "PARCEL_NAM": "5HA", "ACRE": ".25", "LONGITUDE": -64.91944709000001, "LATITUDE": 18.35652865, "OBJECTID_1": 4687, "PARCEL_NO_": "102902010100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5 GREAT NORTHSIDE QTR", "Name": "RAIMER, MARY & OTHERS", "Address": "PO Box 7757", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 699800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.13535229299998, "SHAPE_Area": 800.84269859899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359998.226400002837181, 258544.891600001603365 ], [ 359995.011799998581409, 258548.639299999922514 ], [ 359989.464800000190735, 258554.880199998617172 ], [ 359985.590300001204014, 258559.486000001430511 ], [ 359980.24889999628067, 258565.93470000103116 ], [ 359977.214900001883507, 258569.207600001245737 ], [ 359974.563699997961521, 258574.541299998760223 ], [ 359978.12780000269413, 258589.126499999314547 ], [ 359981.191799998283386, 258589.852800000458956 ], [ 359987.924199998378754, 258590.732999999076128 ], [ 359995.192900002002716, 258589.453299999237061 ], [ 359997.794200003147125, 258588.341099999845028 ], [ 360009.35639999806881, 258581.943799998611212 ], [ 360013.525799997150898, 258579.298700001090765 ], [ 360014.983300000429153, 258578.589299999177456 ], [ 360016.64639999717474, 258578.087699998170137 ], [ 360019.451700001955032, 258577.389499999582767 ], [ 360027.554999999701977, 258575.4983000010252 ], [ 360033.375600002706051, 258573.794399999082088 ], [ 360035.978699997067451, 258572.476100001484156 ], [ 360040.144599996507168, 258570.243200000375509 ], [ 360043.997800000011921, 258568.213899999856949 ], [ 360048.983900003135204, 258567.121399998664856 ], [ 360056.894000001251698, 258565.348600000143051 ], [ 360055.499300003051758, 258561.663100000470877 ], [ 360042.058600001037121, 258564.48759999871254 ], [ 360030.083400003612041, 258570.675299998372793 ], [ 360018.545000001788139, 258574.187100000679493 ], [ 360014.699500001966953, 258575.289000000804663 ], [ 360011.264399997889996, 258576.909600000828505 ], [ 360004.905799999833107, 258580.979499999433756 ], [ 359996.467699997127056, 258585.753600001335144 ], [ 359994.284400001168251, 258586.456999998539686 ], [ 359992.214199997484684, 258586.02760000154376 ], [ 359991.185999996960163, 258584.988499999046326 ], [ 359988.507299996912479, 258582.905099999159575 ], [ 359987.074500001966953, 258580.625900000333786 ], [ 359987.204599998891354, 258577.432100001722574 ], [ 359987.544600002467632, 258573.930799998342991 ], [ 359988.936800003051758, 258568.583099998533726 ], [ 359991.874700002372265, 258564.381900001317263 ], [ 360009.98870000243187, 258543.094799999147654 ], [ 360011.84570000320673, 258538.991700001060963 ], [ 359998.226400002837181, 258544.891600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902010100", "MAP": "D9-8752-T013", "PARCEL_NAM": "5H REM", "ACRE": ".14", "LONGITUDE": -64.91963915, "LATITUDE": 18.35641718, "OBJECTID_1": 4687, "PARCEL_NO_": "102902010100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5 GREAT NORTHSIDE QTR", "Name": "RAIMER, MARY & OTHERS", "Address": "PO Box 7757", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 699800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.909201, "SHAPE_Area": 318.914390201 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359969.834700003266335, 258555.189100001007318 ], [ 359974.563699997961521, 258574.541299998760223 ], [ 359977.214900001883507, 258569.207600001245737 ], [ 359980.24889999628067, 258565.93470000103116 ], [ 359985.590300001204014, 258559.486000001430511 ], [ 359989.464800000190735, 258554.880199998617172 ], [ 359995.011799998581409, 258548.639299999922514 ], [ 359998.226400002837181, 258544.891600001603365 ], [ 359997.870600000023842, 258545.045699998736382 ], [ 359989.787699997425079, 258547.301600001752377 ], [ 359976.856100000441074, 258550.784299999475479 ], [ 359968.74210000038147, 258550.7179000005126 ], [ 359969.834700003266335, 258555.189100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902021000", "MAP": "D9-7211-T003", "PARCEL_NAM": "1A-1", "ACRE": ".757", "LONGITUDE": -64.9198178, "LATITUDE": 18.35677712, "OBJECTID_1": 4711, "PARCEL_NO_": "102902021000", "Tax_Legal_": "1A-1,2,3,4,1A-B CANAAN&SHERPEN J 7B GT.NORTHSIDE QTR", "Name": "SCENIC ROCK LLC", "Address": "25887 County 12", "City": "Preston", "State": "Minnesota", "Zip": 55965, "Country": "United States", "Land_Value": 571700, "Improved_V": 4822600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.48724339500001, "SHAPE_Area": 1723.1342027400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359969.834700003266335, 258555.189100001007318 ], [ 359969.625299997627735, 258555.107299998402596 ], [ 359939.279399998486042, 258574.474199999123812 ], [ 359947.570799998939037, 258584.347300000488758 ], [ 359949.952299997210503, 258589.180599998682737 ], [ 359950.446999996900558, 258592.107200000435114 ], [ 359950.943099997937679, 258594.861900001764297 ], [ 359950.391500003635883, 258598.8114 ], [ 359949.122699998319149, 258605.849300000816584 ], [ 359945.195699997246265, 258620.601500000804663 ], [ 359943.127300001680851, 258627.113899998366833 ], [ 359986.674199998378754, 258624.100499998778105 ], [ 359986.252999998629093, 258622.3766999989748 ], [ 359980.82880000025034, 258617.106100000441074 ], [ 359973.817900002002716, 258603.852899998426437 ], [ 359969.485100001096725, 258573.228199999779463 ], [ 359969.186499997973442, 258565.548500001430511 ], [ 359969.834700003266335, 258555.189100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902021000", "MAP": "D9-6904-T001", "PARCEL_NAM": "1A-A", "ACRE": ".0858", "LONGITUDE": -64.91967612000001, "LATITUDE": 18.35673746, "OBJECTID_1": 4711, "PARCEL_NO_": "102902021000", "Tax_Legal_": "1A-1,2,3,4,1A-B CANAAN&SHERPEN J 7B GT.NORTHSIDE QTR", "Name": "SCENIC ROCK LLC", "Address": "25887 County 12", "City": "Preston", "State": "Minnesota", "Zip": 55965, "Country": "United States", "Land_Value": 571700, "Improved_V": 4822600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.71586971, "SHAPE_Area": 331.61454154099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359969.834700003266335, 258555.189100001007318 ], [ 359969.186499997973442, 258565.548500001430511 ], [ 359969.485100001096725, 258573.228199999779463 ], [ 359973.817900002002716, 258603.852899998426437 ], [ 359980.82880000025034, 258617.106100000441074 ], [ 359986.252999998629093, 258622.3766999989748 ], [ 359969.834700003266335, 258555.189100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701020100", "MAP": "D9-4759-T89", "PARCEL_NAM": "14-88", "ACRE": "1.99", "LONGITUDE": -64.95908491, "LATITUDE": 18.36439116, "OBJECTID_1": 2838, "PARCEL_NO_": "102701020100", "Tax_Legal_": "BONNE RESOLUTION 14-88 LITTLE NORTHSIDE", "Name": "RAYMOND, LINDA", "Address": "Po Box 12087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 137700, "Improved_V": 242300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 678.61625188400001, "SHAPE_Area": 6963.52181776 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355781.132299996912479, 259519.349800001829863 ], [ 355822.272200003266335, 259517.575599998235703 ], [ 355826.568099997937679, 259486.579999998211861 ], [ 355856.419600002467632, 259484.71339999884367 ], [ 355856.457400001585484, 259480.280699998140335 ], [ 355816.120200000703335, 259482.48369999974966 ], [ 355815.421800002455711, 259469.812399998307228 ], [ 355830.962899997830391, 259443.975000001490116 ], [ 355842.321400001645088, 259435.835400000214577 ], [ 355828.76690000295639, 259417.781500000506639 ], [ 355820.858400002121925, 259399.562699999660254 ], [ 355814.5337999984622, 259384.734400000423193 ], [ 355806.857299998402596, 259339.286400001496077 ], [ 355823.028499998152256, 259334.141499999910593 ], [ 355816.682300001382828, 259321.846099998801947 ], [ 355809.50280000269413, 259312.710299998521805 ], [ 355800.753799997270107, 259298.495400000363588 ], [ 355799.150200001895428, 259297.42680000141263 ], [ 355792.773400001227856, 259288.719799999147654 ], [ 355785.649700000882149, 259273.040600001811981 ], [ 355773.511799998581409, 259278.007500000298023 ], [ 355762.183899998664856, 259282.558800000697374 ], [ 355765.387599997222424, 259285.118200000375509 ], [ 355784.347099997103214, 259331.291700001806021 ], [ 355791.371899999678135, 259358.580299999564886 ], [ 355795.139200001955032, 259389.6418999992311 ], [ 355801.424199998378754, 259409.113899998366833 ], [ 355810.086900003254414, 259433.46059999987483 ], [ 355790.577100001275539, 259451.877199999988079 ], [ 355791.956000000238419, 259479.330600000917912 ], [ 355781.132299996912479, 259519.349800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94423639, "LATITUDE": 18.34045295, "OBJECTID_1": 9122, "PARCEL_NO_": "105301043000", "Tax_Legal_": "ALTONA & WELGUNST 179 KRONPRINDSENS QTR", "Name": "B & B MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 159400, "Improved_V": 182828, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.301174436, "SHAPE_Area": 1328.3213344200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357373.821900002658367, 256772.804999999701977 ], [ 357388.464599996805191, 256784.685699999332428 ], [ 357401.85419999808073, 256795.535100001841784 ], [ 357420.553099997341633, 256765.753299999982119 ], [ 357381.239799998700619, 256742.422400001436472 ], [ 357377.096799999475479, 256755.476300001144409 ], [ 357373.821900002658367, 256772.804999999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94412569000001, "LATITUDE": 18.34072259, "OBJECTID_1": 9122, "PARCEL_NO_": "105301043000", "Tax_Legal_": "ALTONA & WELGUNST 179 KRONPRINDSENS QTR", "Name": "B & B MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 159400, "Improved_V": 182828, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.4096172068, "SHAPE_Area": 0.00710542945 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357406.470799997448921, 256798.703999999910593 ], [ 357406.443499997258186, 256798.535199999809265 ], [ 357406.37610000371933, 256798.638999998569489 ], [ 357406.470799997448921, 256798.703999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94425904000001, "LATITUDE": 18.34080585, "OBJECTID_1": 9109, "PARCEL_NO_": "105301041800", "Tax_Legal_": "11A & 11B ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "LAWRENCE AND LINDA BENJAMIN REVOCABLE TRUST", "Address": "PO Box Box", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22500, "Improved_V": 89500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.262624685700004, "SHAPE_Area": 554.12336859300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357410.361299999058247, 256812.383400000631809 ], [ 357407.820699997246265, 256808.661100000143051 ], [ 357406.188199996948242, 256806.421100001782179 ], [ 357400.336999997496605, 256800.982500001788139 ], [ 357393.188900001347065, 256795.533300001174212 ], [ 357388.273500002920628, 256791.926300000399351 ], [ 357375.04900000244379, 256806.544100001454353 ], [ 357389.451099999248981, 256819.749800000339746 ], [ 357392.652999997138977, 256822.520199999213219 ], [ 357401.571000002324581, 256816.893699999898672 ], [ 357410.361299999058247, 256812.383400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9444165, "LATITUDE": 18.34068124, "OBJECTID_1": 9108, "PARCEL_NO_": "105301041700", "Tax_Legal_": "ALTONA & WELGUNST 10&195 KRONPRINDSENS QTR", "Name": "FAULKNER, ELROY A", "Address": "3295 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.799948244500001, "SHAPE_Area": 304.63869774 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357380.630400002002716, 256786.317600000649691 ], [ 357372.203400000929832, 256780.526599999517202 ], [ 357372.039499998092651, 256781.188299998641014 ], [ 357370.376500003039837, 256787.085299998521805 ], [ 357368.735100001096725, 256790.449400000274181 ], [ 357364.647799998521805, 256796.959800001233816 ], [ 357375.04900000244379, 256806.544100001454353 ], [ 357388.273500002920628, 256791.926300000399351 ], [ 357380.630400002002716, 256786.317600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9425979, "LATITUDE": 18.34068131, "OBJECTID_1": 9116, "PARCEL_NO_": "105301042600", "Tax_Legal_": "PCL. OF ESTATE ALTONA & WELGUNST (JEWISH CEMETERY) KRONPRINDSEN QTR.", "Name": "HEBREW CONGREGATION OF STT. INC", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 375400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.25193146500001, "SHAPE_Area": 2220.8577172199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357555.384499996900558, 256758.125599998980761 ], [ 357543.681199997663498, 256815.97069999948144 ], [ 357582.402400001883507, 256829.077500000596046 ], [ 357592.196999996900558, 256778.979400001466274 ], [ 357555.384499996900558, 256758.125599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301043500", "MAP": null, "PARCEL_NAM": "178", "ACRE": null, "LONGITUDE": -64.94265366, "LATITUDE": 18.34098486, "OBJECTID_1": 9126, "PARCEL_NO_": "105301043500", "Tax_Legal_": "178 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1858200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.51121818, "SHAPE_Area": 528.76730431199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357543.681199997663498, 256815.97069999948144 ], [ 357541.064300000667572, 256828.904800001531839 ], [ 357553.654899999499321, 256832.911200001835823 ], [ 357570.865099996328354, 256838.67960000038147 ], [ 357579.879000000655651, 256842.223700001835823 ], [ 357581.236599996685982, 256835.040600001811981 ], [ 357582.402400001883507, 256829.077500000596046 ], [ 357543.681199997663498, 256815.97069999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042700", "MAP": null, "PARCEL_NAM": "178-97", "ACRE": null, "LONGITUDE": -64.94305527, "LATITUDE": 18.34084133, "OBJECTID_1": 9117, "PARCEL_NO_": "105301042700", "Tax_Legal_": "178-97 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "LIBURD, DAVID & ALEXIS R.", "Address": "178-97A Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 39400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.949372751799999, "SHAPE_Area": 549.25137103999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357512.474200002849102, 256797.444299999624491 ], [ 357511.380500003695488, 256800.060600001364946 ], [ 357503.135799996554852, 256821.3136 ], [ 357512.0033999979496, 256821.597199998795986 ], [ 357526.491899996995926, 256824.671100001782179 ], [ 357530.516199998557568, 256825.54839999973774 ], [ 357531.493400000035763, 256820.752300001680851 ], [ 357533.756099998950958, 256809.646600000560284 ], [ 357534.235299997031689, 256807.29450000077486 ], [ 357512.474200002849102, 256797.444299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042600", "MAP": "A9-548-T000", "PARCEL_NAM": "307", "ACRE": ".19", "LONGITUDE": -64.9427873, "LATITUDE": 18.34034846, "OBJECTID_1": 9116, "PARCEL_NO_": "105301042600", "Tax_Legal_": "PCL. OF ESTATE ALTONA & WELGUNST (JEWISH CEMETERY) KRONPRINDSEN QTR.", "Name": "HEBREW CONGREGATION OF STT. INC", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 375400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.811262773, "SHAPE_Area": 51.196305654299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357549.137000001966953, 256754.495400000363588 ], [ 357544.657799996435642, 256756.1385000012815 ], [ 357543.385899998247623, 256762.381400000303984 ], [ 357546.481100000441074, 256761.868900001049042 ], [ 357550.429300002753735, 256760.519799999892712 ], [ 357552.989799998700619, 256758.929299999028444 ], [ 357554.588299997150898, 256757.674600001424551 ], [ 357552.874700002372265, 256756.70380000025034 ], [ 357550.468299999833107, 256755.206500001251698 ], [ 357549.137000001966953, 256754.495400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042600", "MAP": "A9-548-T000", "PARCEL_NAM": "307", "ACRE": ".19", "LONGITUDE": -64.94283717, "LATITUDE": 18.34067005, "OBJECTID_1": 9116, "PARCEL_NO_": "105301042600", "Tax_Legal_": "PCL. OF ESTATE ALTONA & WELGUNST (JEWISH CEMETERY) KRONPRINDSEN QTR.", "Name": "HEBREW CONGREGATION OF STT. INC", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 375400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.01837915799999, "SHAPE_Area": 745.73963718200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357554.588299997150898, 256757.674600001424551 ], [ 357552.989799998700619, 256758.929299999028444 ], [ 357550.429300002753735, 256760.519799999892712 ], [ 357546.481100000441074, 256761.868900001049042 ], [ 357543.385899998247623, 256762.381400000303984 ], [ 357541.447400003671646, 256771.895799998193979 ], [ 357539.568899996578693, 256781.115899998694658 ], [ 357533.190999999642372, 256812.419900000095367 ], [ 357531.493400000035763, 256820.752300001680851 ], [ 357530.516199998557568, 256825.54839999973774 ], [ 357541.064300000667572, 256828.904800001531839 ], [ 357543.681199997663498, 256815.97069999948144 ], [ 357555.384499996900558, 256758.125599998980761 ], [ 357554.588299997150898, 256757.674600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94320193, "LATITUDE": 18.34075161, "OBJECTID_1": 9126, "PARCEL_NO_": "105301043500", "Tax_Legal_": "178 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1858200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.387615805, "SHAPE_Area": 357.526072387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357510.733300000429153, 256782.392299998551607 ], [ 357506.027000002563, 256781.030000001192093 ], [ 357504.913800001144409, 256785.011100001633167 ], [ 357504.677799999713898, 256785.546300001442432 ], [ 357504.208999998867512, 256786.2331000007689 ], [ 357503.355499997735023, 256786.763300001621246 ], [ 357502.501999996602535, 256787.293499998748302 ], [ 357501.961000002920628, 256787.365800000727177 ], [ 357501.112499997019768, 256787.282200001180172 ], [ 357499.417300000786781, 256786.884700000286102 ], [ 357497.326499998569489, 256791.799499999731779 ], [ 357505.159199997782707, 256794.1418999992311 ], [ 357492.899800002574921, 256822.186099998652935 ], [ 357503.135799996554852, 256821.3136 ], [ 357511.380500003695488, 256800.060600001364946 ], [ 357512.474200002849102, 256797.444299999624491 ], [ 357509.307599999010563, 256785.8141999989748 ], [ 357510.733300000429153, 256782.392299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301042900", "MAP": "G9-1285-T69", "PARCEL_NAM": "178-100", "ACRE": ".16", "LONGITUDE": -64.94365736, "LATITUDE": 18.3407284, "OBJECTID_1": 9121, "PARCEL_NO_": "105301042900", "Tax_Legal_": "178-100 ALTONA & WELGUNST KRONPRINDSENS QUARTER", "Name": "CREQUE, BERNARD", "Address": "178-100 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18300, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.24414265159000001, "SHAPE_Area": 0.00265001984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357455.870600000023842, 256799.667500000447035 ], [ 357455.959399998188019, 256799.707899998873472 ], [ 357455.945299997925758, 256799.641800001263618 ], [ 357455.870600000023842, 256799.667500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301043600", "MAP": "D9-6758-T000", "PARCEL_NAM": "178-228", "ACRE": ".09", "LONGITUDE": -64.94357866, "LATITUDE": 18.34063096, "OBJECTID_1": 9127, "PARCEL_NO_": "105301043600", "Tax_Legal_": "178-228 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "GRANT, ALVIN & VALERIA", "Address": "3515 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 32400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.930382724400005, "SHAPE_Area": 312.098246738 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357472.527800001204014, 256778.375100001692772 ], [ 357457.141999997198582, 256783.467599999159575 ], [ 357452.91499999910593, 256784.831900000572205 ], [ 357455.870600000023842, 256799.667500000447035 ], [ 357476.087099999189377, 256792.716899998486042 ], [ 357472.527800001204014, 256778.375100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301043900", "MAP": "D9-6758-T000", "PARCEL_NAM": "178-99", "ACRE": null, "LONGITUDE": -64.94353104, "LATITUDE": 18.34085872, "OBJECTID_1": 9130, "PARCEL_NO_": "105301043900", "Tax_Legal_": "178-99 ALTONA & WELGUNST KRONPRINDSENS QTR.", "Name": "PHIPPS, MERCEDES", "Address": "2493 W Moonlight Ln", "City": "Eustis", "State": "Florida", "Zip": 32726, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.606330517, "SHAPE_Area": 693.56499487500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357484.327600002288818, 256825.542399998754263 ], [ 357472.404399998486042, 256793.982999999076128 ], [ 357458.400600001215935, 256798.797600001096725 ], [ 357455.945299997925758, 256799.641800001263618 ], [ 357463.36259999871254, 256834.517900001257658 ], [ 357464.321599997580051, 256834.17119999974966 ], [ 357465.129399999976158, 256833.879200000315905 ], [ 357484.327600002288818, 256825.542399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301042800", "MAP": "G9-1285-T69", "PARCEL_NAM": "178-98", "ACRE": ".15", "LONGITUDE": -64.94334986, "LATITUDE": 18.34076837, "OBJECTID_1": 9119, "PARCEL_NO_": "105301042800", "Tax_Legal_": "ALTONA & WELGUNST 178 98 KRONPRINDSENS QTR", "Name": "MCCLEAN, ELAINE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33500, "Improved_V": 44200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.992012221, "SHAPE_Area": 699.74537487400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357472.404399998486042, 256793.982999999076128 ], [ 357484.327600002288818, 256825.542399998754263 ], [ 357485.781099997460842, 256824.911200001835823 ], [ 357491.83839999884367, 256822.276599999517202 ], [ 357492.899800002574921, 256822.186099998652935 ], [ 357505.159199997782707, 256794.1418999992311 ], [ 357487.394500002264977, 256788.829300001263618 ], [ 357473.954499997198582, 256793.450100000947714 ], [ 357472.404399998486042, 256793.982999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301042900", "MAP": "G9-1285-T69", "PARCEL_NAM": "178-100", "ACRE": ".16", "LONGITUDE": -64.94370888, "LATITUDE": 18.34092117, "OBJECTID_1": 9121, "PARCEL_NO_": "105301042900", "Tax_Legal_": "178-100 ALTONA & WELGUNST KRONPRINDSENS QUARTER", "Name": "CREQUE, BERNARD", "Address": "178-100 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18300, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.68107213, "SHAPE_Area": 703.16552053400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357455.959399998188019, 256799.707899998873472 ], [ 357455.870600000023842, 256799.667500000447035 ], [ 357439.749899998307228, 256805.209899999201298 ], [ 357441.292700000107288, 256840.261999998241663 ], [ 357455.423100002110004, 256837.388300001621246 ], [ 357463.36259999871254, 256834.517900001257658 ], [ 357455.959399998188019, 256799.707899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.943159, "LATITUDE": 18.34042617, "OBJECTID_1": 9126, "PARCEL_NO_": "105301043500", "Tax_Legal_": "178 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1858200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.28418490499999, "SHAPE_Area": 319.64064548300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357498.68639999628067, 256766.149300001561642 ], [ 357472.470100000500679, 256773.441799998283386 ], [ 357472.510200001299381, 256774.374899998307228 ], [ 357472.523900002241135, 256777.473999999463558 ], [ 357517.496299996972084, 256766.160300001502037 ], [ 357537.204700000584126, 256763.404800001531839 ], [ 357543.385899998247623, 256762.381400000303984 ], [ 357544.657799996435642, 256756.1385000012815 ], [ 357539.450300000607967, 256758.048700001090765 ], [ 357528.278200000524521, 256760.481199998408556 ], [ 357509.847800001502037, 256763.485500000417233 ], [ 357498.68639999628067, 256766.149300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301044300", "MAP": "D9-6758-T000", "PARCEL_NAM": "178-229", "ACRE": ".17", "LONGITUDE": -64.94382803000001, "LATITUDE": 18.34080882, "OBJECTID_1": 9133, "PARCEL_NO_": "105301044300", "Tax_Legal_": "178-229 ALTONA&WELGUNST KRONPRINDSENS QUARTER", "Name": "CREQUE, BROCK LYMAN", "Address": "334 Peach Tree Cres", "City": "Newport News", "State": "Virginia", "Zip": 23602, "Country": "United States", "Land_Value": 41800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.29879959799999, "SHAPE_Area": 712.18539900799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357422.255599997937679, 256808.735199999064207 ], [ 357424.721000000834465, 256810.377000000327826 ], [ 357429.650499999523163, 256813.662000000476837 ], [ 357435.309199996292591, 256840.135600000619888 ], [ 357438.459899999201298, 256840.838100001215935 ], [ 357441.292700000107288, 256840.261999998241663 ], [ 357439.749899998307228, 256805.209899999201298 ], [ 357455.870600000023842, 256799.667500000447035 ], [ 357453.502099998295307, 256787.778799999505281 ], [ 357425.718699999153614, 256795.425299998372793 ], [ 357424.418600000441074, 256799.19990000128746 ], [ 357426.201099999248981, 256802.999499998986721 ], [ 357422.255599997937679, 256808.735199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301042900", "MAP": "G9-1285-T69", "PARCEL_NAM": "178-100", "ACRE": ".16", "LONGITUDE": -64.9439273, "LATITUDE": 18.34093644, "OBJECTID_1": 9121, "PARCEL_NO_": "105301042900", "Tax_Legal_": "178-100 ALTONA & WELGUNST KRONPRINDSENS QUARTER", "Name": "CREQUE, BERNARD", "Address": "178-100 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18300, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.328505233599998, "SHAPE_Area": 221.34433079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357424.720200002193451, 256810.377199999988079 ], [ 357422.255599997937679, 256808.735199999064207 ], [ 357417.003600001335144, 256810.333200000226498 ], [ 357418.495600000023842, 256811.945700000971556 ], [ 357418.73650000244379, 256812.434500001370907 ], [ 357420.084899999201298, 256815.170099999755621 ], [ 357420.968699999153614, 256816.963300000876188 ], [ 357426.306699998676777, 256830.333299998193979 ], [ 357429.754000000655651, 256835.775199998170137 ], [ 357431.273199997842312, 256837.869800001382828 ], [ 357433.218199998140335, 256839.135000001639128 ], [ 357434.607900001108646, 256839.979200001806021 ], [ 357435.309199996292591, 256840.135600000619888 ], [ 357429.650499999523163, 256813.662000000476837 ], [ 357424.720200002193451, 256810.377199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042600", "MAP": "A9-548-T000", "PARCEL_NAM": "307", "ACRE": ".19", "LONGITUDE": -64.94280489000001, "LATITUDE": 18.3403122, "OBJECTID_1": 9116, "PARCEL_NO_": "105301042600", "Tax_Legal_": "PCL. OF ESTATE ALTONA & WELGUNST (JEWISH CEMETERY) KRONPRINDSEN QTR.", "Name": "HEBREW CONGREGATION OF STT. INC", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 375400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 12.8780393719, "SHAPE_Area": 7.7666619812900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357544.657799996435642, 256756.1385000012815 ], [ 357549.137000001966953, 256754.495400000363588 ], [ 357548.862899996340275, 256754.348999999463558 ], [ 357545.423199996352196, 256752.381900001317263 ], [ 357544.657799996435642, 256756.1385000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301043500", "MAP": "A9-548-T000", "PARCEL_NAM": "308", "ACRE": null, "LONGITUDE": -64.94388626, "LATITUDE": 18.34065111, "OBJECTID_1": 9126, "PARCEL_NO_": "105301043500", "Tax_Legal_": "178 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1858200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.15737488299999, "SHAPE_Area": 661.94559718899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357472.420400001108646, 256772.283300001174212 ], [ 357429.82660000026226, 256788.307799998670816 ], [ 357424.299300000071526, 256788.429299999028444 ], [ 357419.053700000047684, 256778.882599998265505 ], [ 357415.555200003087521, 256784.499699998646975 ], [ 357406.443499997258186, 256798.535199999809265 ], [ 357412.542499996721745, 256805.511700000613928 ], [ 357415.331500001251698, 256808.526000000536442 ], [ 357416.19370000064373, 256809.457899998873472 ], [ 357417.003600001335144, 256810.333200000226498 ], [ 357422.255599997937679, 256808.735199999064207 ], [ 357426.201099999248981, 256802.999499998986721 ], [ 357424.418600000441074, 256799.19990000128746 ], [ 357425.718699999153614, 256795.425299998372793 ], [ 357453.366499997675419, 256787.766600001603365 ], [ 357452.91499999910593, 256784.831900000572205 ], [ 357472.527800001204014, 256778.375100001692772 ], [ 357472.510200001299381, 256774.374899998307228 ], [ 357472.420400001108646, 256772.283300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301043500", "MAP": "C3-98-T61", "PARCEL_NAM": "178", "ACRE": null, "LONGITUDE": -64.94336527, "LATITUDE": 18.34027559, "OBJECTID_1": 9126, "PARCEL_NO_": "105301043500", "Tax_Legal_": "178 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1858200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.17278725099999, "SHAPE_Area": 1288.40923277 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357472.420400001108646, 256772.283300001174212 ], [ 357472.470100000500679, 256773.441799998283386 ], [ 357498.68639999628067, 256766.149300001561642 ], [ 357498.844499997794628, 256766.111600000411272 ], [ 357515.159599997103214, 256735.074700001627207 ], [ 357509.542400002479553, 256731.862300001084805 ], [ 357505.782799996435642, 256729.553700000047684 ], [ 357498.4070999994874, 256743.204999998211861 ], [ 357468.261799998581409, 256726.196899998933077 ], [ 357463.116499997675419, 256734.536499999463558 ], [ 357471.864699997007847, 256740.285399999469519 ], [ 357470.000600002706051, 256757.663800001144409 ], [ 357472.420400001108646, 256772.283300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301041900", "MAP": "G9-1285-T69", "PARCEL_NAM": "178-86", "ACRE": ".13", "LONGITUDE": -64.94436925, "LATITUDE": 18.34153666, "OBJECTID_1": 9110, "PARCEL_NO_": "105301041900", "Tax_Legal_": "ALTONA & WELGUNST 178 86 KRONPRINDSENS QTR", "Name": "SERRENO, EUSTACIA", "Address": "3524 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29300, "Improved_V": 29200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.822120544100002, "SHAPE_Area": 515.812656124 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357370.364699997007847, 256883.132800001651049 ], [ 357367.89360000193119, 256889.234299998730421 ], [ 357368.635200001299381, 256896.839699998497963 ], [ 357375.046099998056889, 256901.536200001835823 ], [ 357378.273199997842312, 256901.351500000804663 ], [ 357392.790399998426437, 256901.048200000077486 ], [ 357383.396899998188019, 256867.829599998891354 ], [ 357373.631300002336502, 256878.304299999028444 ], [ 357371.986299999058247, 256882.090599998831749 ], [ 357370.364699997007847, 256883.132800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301036000", "MAP": null, "PARCEL_NAM": "178-222", "ACRE": null, "LONGITUDE": -64.94278807000001, "LATITUDE": 18.34180317, "OBJECTID_1": 9090, "PARCEL_NO_": "105301036000", "Tax_Legal_": "ALTONA & WELGUNST 178-222 KRONPRINDSENS QTR.", "Name": "GREAUX (LIFE ESTATE), MELINDA M.", "Address": "2712 S Hemlock Ave", "City": "Broken Arrow", "State": "Oklahoma", "Zip": 74012, "Country": "United States", "Land_Value": 22700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.166231013200004, "SHAPE_Area": 497.858378265 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357559.592799998819828, 256914.656800001859665 ], [ 357539.54280000180006, 256901.827100001275539 ], [ 357535.273900002241135, 256929.656500000506639 ], [ 357555.404799997806549, 256932.987700000405312 ], [ 357559.592799998819828, 256914.656800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301031700", "MAP": null, "PARCEL_NAM": "178-17", "ACRE": null, "LONGITUDE": -64.94224973, "LATITUDE": 18.34193056, "OBJECTID_1": 9053, "PARCEL_NO_": "105301031700", "Tax_Legal_": "ALTONA & WELGUNST 178-17 KRONPRINDSENS QTR", "Name": "LANCLOS, EDWARD HAROLD", "Address": "178-17 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26900, "Improved_V": 99300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.10509614199999, "SHAPE_Area": 710.83467487999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357595.814999997615814, 256923.0625 ], [ 357590.632700003683567, 256948.743500001728535 ], [ 357602.808200001716614, 256953.218400001525879 ], [ 357604.40820000320673, 256954.709199998527765 ], [ 357605.191100001335144, 256957.459800001233816 ], [ 357606.796599999070168, 256958.317299999296665 ], [ 357611.799900002777576, 256938.937699999660254 ], [ 357617.627499997615814, 256917.45380000025034 ], [ 357611.990500003099442, 256916.563299998641014 ], [ 357604.740900002419949, 256915.659600000828505 ], [ 357597.491200000047684, 256914.755899999290705 ], [ 357595.814999997615814, 256923.0625 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301031600", "MAP": null, "PARCEL_NAM": "178-16", "ACRE": null, "LONGITUDE": -64.94240619, "LATITUDE": 18.34178018, "OBJECTID_1": 9052, "PARCEL_NO_": "105301031600", "Tax_Legal_": "ALTONA & WELGUNST 178-16 KRONPRINDSENS QTR.", "Name": "REYNOLDS, CALMA", "Address": "3850 Wd Judge Dr", "City": "Orlando", "State": "Florida", "Zip": 32808, "Country": "United States", "Land_Value": 14600, "Improved_V": 36100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.947366884600001, "SHAPE_Area": 325.774875232 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357590.122900001704693, 256927.783399999141693 ], [ 357594.520099997520447, 256929.479600001126528 ], [ 357595.814999997615814, 256923.0625 ], [ 357597.491200000047684, 256914.755899999290705 ], [ 357582.271999999880791, 256902.810100000351667 ], [ 357576.464199997484684, 256921.972100000828505 ], [ 357590.122900001704693, 256927.783399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301043300", "MAP": "D9-4198-T88", "PARCEL_NAM": "172", "ACRE": "0.11", "LONGITUDE": -64.94227856000001, "LATITUDE": 18.34165205, "OBJECTID_1": 9125, "PARCEL_NO_": "105301043300", "Tax_Legal_": "ALTONA & WELGUNST 172 KRONPRINDSENS QTR", "Name": "DECASTRO, MALCOLM A.", "Address": "PO BOX 304154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23100, "Improved_V": 50000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.724313405, "SHAPE_Area": 636.98987396200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357599.243600003421307, 256892.807700000703335 ], [ 357586.222499996423721, 256890.627900000661612 ], [ 357584.720399998128414, 256895.795400001108646 ], [ 357582.271999999880791, 256902.810100000351667 ], [ 357597.491200000047684, 256914.755899999290705 ], [ 357604.740900002419949, 256915.659600000828505 ], [ 357611.990500003099442, 256916.563299998641014 ], [ 357612.567900002002716, 256916.641699999570847 ], [ 357618.674400001764297, 256896.060499999672174 ], [ 357599.243600003421307, 256892.807700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301031500", "MAP": null, "PARCEL_NAM": "178-15", "ACRE": null, "LONGITUDE": -64.9425965, "LATITUDE": 18.34170672, "OBJECTID_1": 9051, "PARCEL_NO_": "105301031500", "Tax_Legal_": "ALTONA & WELGUNST 178-15 KRONPRINDSENS QTR.", "Name": "PETERSEN, A & LAMOTTA J", "Address": "3532 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16800, "Improved_V": 49000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.635322638800005, "SHAPE_Area": 446.36820510899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357551.458400003612041, 256907.223799999803305 ], [ 357550.784500002861023, 256909.020500000566244 ], [ 357559.592799998819828, 256914.656800001859665 ], [ 357576.464199997484684, 256921.972100000828505 ], [ 357582.271999999880791, 256902.810100000351667 ], [ 357554.576700001955032, 256898.910599999129772 ], [ 357551.458400003612041, 256907.223799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301043800", "MAP": "D9-6828-T000", "PARCEL_NAM": "178-231", "ACRE": null, "LONGITUDE": -64.94340415000001, "LATITUDE": 18.3413503, "OBJECTID_1": 9129, "PARCEL_NO_": "105301043800", "Tax_Legal_": "178-231 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "CHARLES, JANICE ROZINA", "Address": "PO BOX 8133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.908358057, "SHAPE_Area": 879.20513000899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357497.06360000371933, 256852.016600001603365 ], [ 357461.026600003242493, 256862.813700001686811 ], [ 357464.706799998879433, 256883.482700001448393 ], [ 357475.212300002574921, 256880.824499998241663 ], [ 357492.160999998450279, 256879.063400000333786 ], [ 357500.225900001823902, 256878.918299999088049 ], [ 357502.590400002896786, 256879.402699999511242 ], [ 357497.06360000371933, 256852.016600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301044100", "MAP": "D9-7063-T002", "PARCEL_NAM": "178-236", "ACRE": null, "LONGITUDE": -64.94291049, "LATITUDE": 18.34136157, "OBJECTID_1": 9132, "PARCEL_NO_": "105301044100", "Tax_Legal_": "178-236 EST.ALTONA& WELGUNST KRONPRINDSENS QTR", "Name": "OTTLEY, V TRIBENA", "Address": "PO Box 8084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32200, "Improved_V": 69800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.01978414600001, "SHAPE_Area": 657.40537632799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357541.048000000417233, 256860.703699998557568 ], [ 357541.843299999833107, 256835.78940000012517 ], [ 357538.405100002884865, 256834.418299999088049 ], [ 357538.118500001728535, 256860.034600000828505 ], [ 357521.704999998211861, 256856.285900000482798 ], [ 357525.165899999439716, 256885.666299998760223 ], [ 357534.823600001633167, 256887.856300000101328 ], [ 357545.800200000405312, 256892.046599999070168 ], [ 357541.047499999403954, 256860.738099999725819 ], [ 357541.048000000417233, 256860.703699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301044900", "MAP": "D9-2638-T84", "PARCEL_NAM": "178-221", "ACRE": null, "LONGITUDE": -64.94217939000001, "LATITUDE": 18.34145606, "OBJECTID_1": 9137, "PARCEL_NO_": "105301044900", "Tax_Legal_": "178-221 ESTATE ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "SMITH, AUDREY T.K.", "Address": "BOX 3881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36600, "Improved_V": 55100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.967988019900005, "SHAPE_Area": 590.83120142200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357612.251500003039837, 256865.194200001657009 ], [ 357609.231899999082088, 256863.889600001275539 ], [ 357594.792099997401237, 256892.0625 ], [ 357599.243600003421307, 256892.807700000703335 ], [ 357618.674400001764297, 256896.060499999672174 ], [ 357625.64919999986887, 256872.552799999713898 ], [ 357612.251500003039837, 256865.194200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204050100", "MAP": "D9-6853-T000", "PARCEL_NAM": "10-A", "ACRE": ".11", "LONGITUDE": -64.94965624, "LATITUDE": 18.33760353, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.75536414699999, "SHAPE_Area": 727.11145528899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356775.260399997234344, 256427.471599999815226 ], [ 356773.637299999594688, 256429.953899998217821 ], [ 356778.436499997973442, 256432.932700000703335 ], [ 356803.425399996340275, 256443.19310000166297 ], [ 356833.379100002348423, 256458.749099999666214 ], [ 356850.763099998235703, 256468.819899998605251 ], [ 356853.796700000762939, 256449.539500001817942 ], [ 356841.065800003707409, 256447.53660000115633 ], [ 356802.445500001311302, 256437.510200001299381 ], [ 356775.260399997234344, 256427.471599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204050100", "MAP": "D9-6853-T000", "PARCEL_NAM": "10 REM", "ACRE": ".27", "LONGITUDE": -64.94922531, "LATITUDE": 18.33774837, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.71056666699999, "SHAPE_Area": 879.67209736200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356850.763099998235703, 256468.819899998605251 ], [ 356857.375100001692772, 256472.650299999862909 ], [ 356870.283299997448921, 256479.931800000369549 ], [ 356884.60530000180006, 256482.492199998348951 ], [ 356887.772600002586842, 256454.884899999946356 ], [ 356853.796700000762939, 256449.539500001817942 ], [ 356850.763099998235703, 256468.819899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "164", "ACRE": null, "LONGITUDE": -64.9555397, "LATITUDE": 18.33326335, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.55515846599999, "SHAPE_Area": 2212.1633847500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356208.238899998366833, 255930.000900000333786 ], [ 356184.896499998867512, 255949.051600001752377 ], [ 356173.534400001168251, 255957.613400001078844 ], [ 356188.685300000011921, 255977.580200001597404 ], [ 356181.381700001657009, 255983.008900001645088 ], [ 356220.041599996387959, 255988.391499999910593 ], [ 356240.3378000035882, 255972.303399998694658 ], [ 356220.402999997138977, 255945.964699998497963 ], [ 356208.238899998366833, 255930.000900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103002021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9019817, "LATITUDE": 18.35962105, "OBJECTID_1": 5335, "PARCEL_NO_": "103002021400", "Tax_Legal_": "LOVENLUND D-3-C GT. NORTHSIDE QTR.", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 2300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1321.2987326699999, "SHAPE_Area": 5998.4426162 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361740.98369999974966, 258859.065099999308586 ], [ 361722.397100001573563, 258863.768100000917912 ], [ 361698.965499997138977, 258869.27589999884367 ], [ 361683.623999997973442, 258871.683400001376867 ], [ 361671.527500003576279, 258871.795499999076128 ], [ 361652.996699996292591, 258869.955099999904633 ], [ 361632.073899999260902, 258864.928700000047684 ], [ 361639.231799997389317, 258876.59739999845624 ], [ 361669.837499998509884, 258880.85869999974966 ], [ 361685.144900001585484, 258882.461599998176098 ], [ 361687.569200001657009, 258881.848200000822544 ], [ 361757.064900003373623, 258864.473999999463558 ], [ 361764.337899997830391, 258862.633699998259544 ], [ 361861.154799997806549, 258856.46000000089407 ], [ 361870.825099997222424, 258857.172499999403954 ], [ 361891.760499998927116, 258860.7212999984622 ], [ 361909.459799997508526, 258865.510200001299381 ], [ 361925.535700000822544, 258871.552400000393391 ], [ 361949.626199997961521, 258883.359700001776218 ], [ 361952.838799998164177, 258884.863699998706579 ], [ 361965.635499998927116, 258897.211899999529123 ], [ 361967.237400002777576, 258898.491500001400709 ], [ 361967.208599999547005, 258901.86879999935627 ], [ 361971.162799999117851, 258910.978199999779463 ], [ 361972.685599997639656, 258921.545299999415874 ], [ 361971.818099997937679, 258928.715399999171495 ], [ 361970.1875, 258930.813000001013279 ], [ 361969.352399997413158, 258934.183600001037121 ], [ 361962.826399996876717, 258942.996199999004602 ], [ 361873.53320000320673, 259012.559500001370907 ], [ 361845.159400001168251, 259030.270199999213219 ], [ 361826.535099998116493, 259039.405900001525879 ], [ 361780.357699997723103, 259064.570300001651049 ], [ 361768.977700002491474, 259075.242899999022484 ], [ 361763.245399996638298, 259085.539599999785423 ], [ 361772.093199998140335, 259088.145100001245737 ], [ 361777.816500000655651, 259078.903799999505281 ], [ 361783.509300000965595, 259073.250900000333786 ], [ 361788.375900000333786, 259069.913199998438358 ], [ 361849.930799998342991, 259038.119699999690056 ], [ 361878.302799999713898, 259020.620099999010563 ], [ 361957.853699997067451, 258958.787500001490116 ], [ 361966.778800003230572, 258952.316599998623133 ], [ 361972.480599999427795, 258945.608300000429153 ], [ 361979.843500003218651, 258933.214000001549721 ], [ 361982.377499997615814, 258919.724800001829863 ], [ 361982.42960000038147, 258913.603500001132488 ], [ 361980.831399999558926, 258911.901700001209974 ], [ 361978.477200001478195, 258904.282999999821186 ], [ 361974.513999998569489, 258896.228999998420477 ], [ 361963.346100002527237, 258881.99439999833703 ], [ 361952.926899999380112, 258874.520799998193979 ], [ 361931.246399998664856, 258863.788699999451637 ], [ 361911.151500001549721, 258856.236000001430511 ], [ 361895.061300002038479, 258851.882399998605251 ], [ 361875.738499999046326, 258848.346799999475479 ], [ 361858.814999997615814, 258847.152800001204014 ], [ 361848.325699999928474, 258847.911299999803305 ], [ 361791.041599996387959, 258851.664299998432398 ], [ 361762.802599996328354, 258853.544100001454353 ], [ 361740.98369999974966, 258859.065099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002039100", "MAP": "D9-5909-T95", "PARCEL_NAM": "D-31-A", "ACRE": ".37", "LONGITUDE": -64.90330084, "LATITUDE": 18.35833409, "OBJECTID_1": 5580, "PARCEL_NO_": "103002039100", "Tax_Legal_": "LOVENLUND D-31-A GREAT NORTHSIDE", "Name": "MAHOGANY RUN CONDOMINIUM ASSOC", "Address": "310 M GOLF VILLAGE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.461886999, "SHAPE_Area": 1572.74681562 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361731.010899998247623, 258796.139899998903275 ], [ 361725.26799999922514, 258781.758799999952316 ], [ 361728.301500000059605, 258762.375399999320507 ], [ 361714.389799997210503, 258758.493999999016523 ], [ 361713.223399996757507, 258762.490699999034405 ], [ 361685.217100001871586, 258774.862199999392033 ], [ 361676.773800000548363, 258791.184500001370907 ], [ 361682.342200003564358, 258803.517799999564886 ], [ 361731.010899998247623, 258796.139899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94565324, "LATITUDE": 18.34909812, "OBJECTID_1": 4310, "PARCEL_NO_": "102803024000", "Tax_Legal_": "SOLBERG 55A-1 LITTLE NORTHSIDE", "Name": "BAIG, SHAKIL & SEEMA", "Address": "PO Box 10447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 349200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.172252453, "SHAPE_Area": 1099.67959574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357259.829199999570847, 257722.217500001192093 ], [ 357237.717100001871586, 257702.590300001204014 ], [ 357233.535400003194809, 257705.277800001204014 ], [ 357223.803900003433228, 257711.741999998688698 ], [ 357218.084200002253056, 257720.561099998652935 ], [ 357212.418499998748302, 257723.047899998724461 ], [ 357240.432599999010563, 257747.55290000140667 ], [ 357249.383000001311302, 257738.127000000327826 ], [ 357255.09910000115633, 257729.730000000447035 ], [ 357259.829199999570847, 257722.217500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701031900", "MAP": "D9-1998-T82", "PARCEL_NAM": "3C-1", "ACRE": "0.50", "LONGITUDE": -64.96239568, "LATITUDE": 18.35771506, "OBJECTID_1": 2909, "PARCEL_NO_": "102701031900", "Tax_Legal_": "DOROTHEA 3C-1 LT. NORTHSIDE", "Name": "BERRY, RICHARD & LYN", "Address": "PO Box 303125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55400, "Improved_V": 431300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.872340855, "SHAPE_Area": 1813.6701231300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355438.384300000965595, 258686.349700000137091 ], [ 355486.117399998009205, 258678.824200000613928 ], [ 355480.028800003230572, 258639.785599999129772 ], [ 355469.222099997103214, 258640.270799998193979 ], [ 355433.765500001609325, 258653.182700000703335 ], [ 355437.512599997222424, 258679.973700001835823 ], [ 355438.384300000965595, 258686.349700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701031700", "MAP": null, "PARCEL_NAM": "3J", "ACRE": null, "LONGITUDE": -64.96227801000001, "LATITUDE": 18.35736055, "OBJECTID_1": 2907, "PARCEL_NO_": "102701031700", "Tax_Legal_": "DOROTHEA 3J LT NORTHSIDE", "Name": "BRYAN, CARL & ELIZABETH", "Address": "3C DOROTHEA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 70200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 582.96015555700001, "SHAPE_Area": 8941.6903889799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355480.028800003230572, 258639.785599999129772 ], [ 355493.892300002276897, 258728.674600001424551 ], [ 355500.821000002324581, 258726.299100000411272 ], [ 355515.394000001251698, 258719.452300000935793 ], [ 355534.048900000751019, 258706.728300001472235 ], [ 355509.527199998497963, 258642.410100001841784 ], [ 355508.997500002384186, 258631.1554000005126 ], [ 355508.222800001502037, 258614.691199999302626 ], [ 355483.995700001716614, 258618.925900001078844 ], [ 355472.701899997889996, 258619.466699998825788 ], [ 355467.8783999979496, 258617.738499999046326 ], [ 355464.689099997282028, 258613.490499999374151 ], [ 355464.750200003385544, 258606.313799999654293 ], [ 355467.197999998927116, 258602.956399999558926 ], [ 355478.55290000140667, 258595.238899998366833 ], [ 355494.751000002026558, 258586.927700001746416 ], [ 355474.14299999922514, 258544.962499998509884 ], [ 355450.747299998998642, 258546.248700000345707 ], [ 355438.685000002384186, 258542.350299999117851 ], [ 355435.475900001823902, 258540.424199998378754 ], [ 355432.288400001823902, 258535.96510000154376 ], [ 355421.586999997496605, 258561.630899999290705 ], [ 355432.192100003361702, 258641.933299999684095 ], [ 355433.765500001609325, 258653.182700000703335 ], [ 355469.222099997103214, 258640.270799998193979 ], [ 355480.028800003230572, 258639.785599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304034300", "MAP": "A9-370-T89", "PARCEL_NAM": "11-67", "ACRE": ".500", "LONGITUDE": -64.92155923, "LATITUDE": 18.36873844, "OBJECTID_1": 1073, "PARCEL_NO_": "101304034300", "Tax_Legal_": "PETERBORG ESTATE 11-67 GT.NORTHSIDE QTR.", "Name": "JAMES, STEPHEN R. & AMY C.", "Address": "PO Box 7484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 165000, "Improved_V": 467800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.49152416300001, "SHAPE_Area": 2292.6745030900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359740.663699999451637, 259897.667399998754263 ], [ 359735.384199999272823, 259946.190600000321865 ], [ 359761.817100003361702, 259939.919799998402596 ], [ 359800.660400003194809, 259923.772399999201298 ], [ 359805.534199997782707, 259919.590399999171495 ], [ 359805.586300000548363, 259913.469099998474121 ], [ 359791.97070000320673, 259902.591899998486042 ], [ 359788.779700003564358, 259898.554999999701977 ], [ 359759.736199997365475, 259900.217099998146296 ], [ 359740.663699999451637, 259897.667399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304033700", "MAP": "A9-370-T89", "PARCEL_NAM": "11-44", "ACRE": ".500", "LONGITUDE": -64.9204163, "LATITUDE": 18.3689965, "OBJECTID_1": 1068, "PARCEL_NO_": "101304033700", "Tax_Legal_": "PETERBORG ESTATE 11-44 No.12 GREAT NORTHSIDE QTR.", "Name": "GIBBONS, THOMAS R. & BARBARA S. BUNK", "Address": "65 Littel Acres Rd", "City": "GLASTONBURY", "State": "Connecticut", "Zip": 6033, "Country": "United States", "Land_Value": 156100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.64630960900001, "SHAPE_Area": 1698.2209506500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359916.603399999439716, 259960.897700000554323 ], [ 359895.842100001871586, 259921.51240000128746 ], [ 359856.949400000274181, 259942.175999999046326 ], [ 359872.829300001263618, 259971.22580000013113 ], [ 359916.603399999439716, 259960.897700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304034400", "MAP": "A9-370-T89", "PARCEL_NAM": "11-45", "ACRE": ".532", "LONGITUDE": -64.92061218000001, "LATITUDE": 18.3686765, "OBJECTID_1": 1074, "PARCEL_NO_": "101304034400", "Tax_Legal_": "PETERBORG 11-45 GT. NORTHSIDE QTR.", "Name": "MEYERS, ISHMAEL A., JR. & MICOL L. MORGAN", "Address": "PO Box 10001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 161500, "Improved_V": 477000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.125616616, "SHAPE_Area": 1875.26278245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359895.842100001871586, 259921.51240000128746 ], [ 359877.013800002634525, 259885.794100001454353 ], [ 359874.351300001144409, 259887.223000001162291 ], [ 359846.042199999094009, 259897.334899999201298 ], [ 359836.337700001895428, 259900.633000001311302 ], [ 359856.949400000274181, 259942.175999999046326 ], [ 359895.842100001871586, 259921.51240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304033600", "MAP": "A9-370-T89", "PARCEL_NAM": "11-47", "ACRE": ".514", "LONGITUDE": -64.92001005, "LATITUDE": 18.36882247, "OBJECTID_1": 1067, "PARCEL_NO_": "101304033600", "Tax_Legal_": "PETERBORG 11-47 GT.NORTHSIDE QTR.", "Name": "SIMON BRITTON and DINA KATZ LIVING TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 188000, "Improved_V": 728800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.26749785300001, "SHAPE_Area": 2493.3851719200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359965.823100000619888, 259940.534000001847744 ], [ 359937.182499997317791, 259894.914500001817942 ], [ 359903.121399998664856, 259917.644900001585484 ], [ 359895.842100001871586, 259921.51240000128746 ], [ 359916.603399999439716, 259960.897700000554323 ], [ 359922.116800002753735, 259959.596900001168251 ], [ 359931.82320000231266, 259956.087699998170137 ], [ 359943.161899998784065, 259950.269900001585484 ], [ 359952.891599997878075, 259944.016699999570847 ], [ 359965.823100000619888, 259940.534000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92018637, "LATITUDE": 18.368445, "OBJECTID_1": 1075, "PARCEL_NO_": "101304034500", "Tax_Legal_": "PETERBORG 11-46 00.NORTHSIDE QTR.", "Name": "FRANKY & MAX LLC", "Address": "6427 S Halm Ave", "City": "Los Angeles", "State": "California", "Zip": 90056, "Country": "United States", "Land_Value": 166900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.07020171, "SHAPE_Area": 2407.9238325800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359947.725699998438358, 259887.823600001633167 ], [ 359919.805100001394749, 259852.342399999499321 ], [ 359899.481799997389317, 259871.596700001507998 ], [ 359889.743100002408028, 259878.905299998819828 ], [ 359883.262100003659725, 259882.440799999982119 ], [ 359877.013800002634525, 259885.794100001454353 ], [ 359895.842100001871586, 259921.51240000128746 ], [ 359903.121399998664856, 259917.644900001585484 ], [ 359937.182499997317791, 259894.914500001817942 ], [ 359947.725699998438358, 259887.823600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304033500", "MAP": "A9-370-T89", "PARCEL_NAM": "11-48", "ACRE": ".511", "LONGITUDE": -64.91962936, "LATITUDE": 18.36872473, "OBJECTID_1": 1066, "PARCEL_NO_": "101304033500", "Tax_Legal_": "PETERBORG ESTATE 11-48 GT.NORTHSIDE QTR", "Name": "ROBLES, PETER A", "Address": "PO Box 502071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 157900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.527225093, "SHAPE_Area": 1790.3215245599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360001.230800002813339, 259949.056400001049042 ], [ 359987.428900003433228, 259911.139699999243021 ], [ 359947.725699998438358, 259887.823600001633167 ], [ 359937.182499997317791, 259894.914500001817942 ], [ 359965.823100000619888, 259940.534000001847744 ], [ 359973.071000002324581, 259941.648800000548363 ], [ 359998.005500003695488, 259949.030000001192093 ], [ 360001.230800002813339, 259949.056400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91921456, "LATITUDE": 18.36858211, "OBJECTID_1": 1065, "PARCEL_NO_": "101304033400", "Tax_Legal_": "PETERBORG 11-49 GT.NORTHSIDE QTR.", "Name": "ALFRED BAILEY FAMILY TRUST", "Address": "PO Box 1343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 161500, "Improved_V": 340800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.148712797, "SHAPE_Area": 2242.81403581 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359987.428900003433228, 259911.139699999243021 ], [ 360001.230800002813339, 259949.056400001049042 ], [ 360005.278499998152256, 259947.189699999988079 ], [ 360013.424400001764297, 259937.546100001782179 ], [ 360024.037699997425079, 259922.223099999129772 ], [ 360027.342100001871586, 259912.962099999189377 ], [ 360028.972699999809265, 259910.864500001072884 ], [ 360033.148100003600121, 259894.011199999600649 ], [ 360034.859600000083447, 259882.41499999910593 ], [ 360035.820600003004074, 259864.268800001591444 ], [ 360034.304999999701977, 259852.857400000095367 ], [ 360032.739200003445148, 259847.356100000441074 ], [ 360020.452100001275539, 259869.842599999159575 ], [ 360021.209799997508526, 259875.548300001770258 ], [ 360017.914499998092651, 259883.754000000655651 ], [ 360010.688199996948242, 259880.106199998408556 ], [ 359987.428900003433228, 259911.139699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304030600", "MAP": "A9-370-T89", "PARCEL_NAM": "11-15", "ACRE": ".59", "LONGITUDE": -64.92270689, "LATITUDE": 18.36869908, "OBJECTID_1": 1038, "PARCEL_NO_": "101304030600", "Tax_Legal_": "11-15 PETERBORG No.12 GREAT NORTHSIDE QTR", "Name": "1115 PETERBORG TRUST", "Address": "PO BOX 9701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 248800, "Improved_V": 96200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.74915813300001, "SHAPE_Area": 2320.5258156899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359595.201399996876717, 259930.618900001049042 ], [ 359667.552299998700619, 259930.38910000026226 ], [ 359689.590599998831749, 259899.220899999141693 ], [ 359629.975699998438358, 259892.611200001090765 ], [ 359618.546999998390675, 259908.982999999076128 ], [ 359611.229099996387959, 259916.100299999117851 ], [ 359597.433700002729893, 259926.330899998545647 ], [ 359595.80120000243187, 259928.639600001275539 ], [ 359595.201399996876717, 259930.618900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304030700", "MAP": "A9-370-T89", "PARCEL_NAM": "11-16", "ACRE": ".604", "LONGITUDE": -64.92286777, "LATITUDE": 18.36898249, "OBJECTID_1": 1039, "PARCEL_NO_": "101304030700", "Tax_Legal_": "PETERBORG 11-16 GT.NORTHSIDE QTR.", "Name": "11-16 ESTATE PETERBORG TRUST", "Address": "401 S King Creek Rd", "City": "Burgettstown", "State": "Pennsylvania", "Zip": 15021, "Country": "United States", "Land_Value": 174000, "Improved_V": 792300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.40945939900001, "SHAPE_Area": 2006.0169057400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359614.004799999296665, 259963.332899998873472 ], [ 359660.877199999988079, 259957.167899999767542 ], [ 359660.124600000679493, 259950.4864999987185 ], [ 359661.827200002968311, 259939.945799998939037 ], [ 359665.113600000739098, 259932.795499999076128 ], [ 359666.737000003457069, 259931.542199999094009 ], [ 359667.552299998700619, 259930.38910000026226 ], [ 359595.201399996876717, 259930.618900001049042 ], [ 359593.312200002372265, 259936.85190000012517 ], [ 359586.782600000500679, 259946.086599998176098 ], [ 359607.635200001299381, 259959.344999998807907 ], [ 359614.004799999296665, 259963.332899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304030500", "MAP": "A9-370-T89", "PARCEL_NAM": "11-14", "ACRE": ".55", "LONGITUDE": -64.92243527, "LATITUDE": 18.3683457, "OBJECTID_1": 1037, "PARCEL_NO_": "101304030500", "Tax_Legal_": "PETERBORG 11-14 GT NORTHSIDE QTR", "Name": "GOODWIN, SHELTON W", "Address": "2452 Bridgeport Dr", "City": "Memphis", "State": "Tennessee", "Zip": 38114, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.46352617900001, "SHAPE_Area": 2457.5500189600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359709.271200001239777, 259860.751800000667572 ], [ 359674.133799999952316, 259842.717799998819828 ], [ 359659.27080000191927, 259861.397999998182058 ], [ 359644.624099999666214, 259876.899099998176098 ], [ 359634.871100001037121, 259885.896299999207258 ], [ 359629.975699998438358, 259892.611200001090765 ], [ 359689.590599998831749, 259899.220899999141693 ], [ 359691.230200000107288, 259896.067899998277426 ], [ 359709.271200001239777, 259860.751800000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304030200", "MAP": "A9-370-T89", "PARCEL_NAM": "11-13", "ACRE": ".55", "LONGITUDE": -64.92206955, "LATITUDE": 18.3678893, "OBJECTID_1": 1034, "PARCEL_NO_": "101304030200", "Tax_Legal_": "11-13 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "ROESNER, MICHAEL J.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.84724124799999, "SHAPE_Area": 2882.1955472300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359754.84009999781847, 259812.362199999392033 ], [ 359706.671700000762939, 259787.269999999552965 ], [ 359696.8108000010252, 259808.93189999833703 ], [ 359695.173000000417233, 259811.873799998313189 ], [ 359680.463299997150898, 259834.762600000947714 ], [ 359674.133799999952316, 259842.717799998819828 ], [ 359709.271200001239777, 259860.751800000667572 ], [ 359715.78999999910593, 259852.783599998801947 ], [ 359754.84009999781847, 259812.362199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304030100", "MAP": "101304030100", "PARCEL_NAM": "11-L", "ACRE": null, "LONGITUDE": -64.92049916000001, "LATITUDE": 18.36607892, "OBJECTID_1": 1033, "PARCEL_NO_": "101304030100", "Tax_Legal_": "11-10,11-L PETERBORG(GREENBELT) No.12 GREAT NORTHSIDE QUARTER", "Name": "REARDEN CAPITAL LLC", "Address": "Mountainlion Realty LLC", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 199100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.128314114899993, "SHAPE_Area": 256.773572726 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359879.752300001680851, 259631.844000000506639 ], [ 359900.063000001013279, 259614.067299999296665 ], [ 359898.461199998855591, 259612.78770000115037 ], [ 359870.126900002360344, 259625.854600001126528 ], [ 359864.616899996995926, 259628.815799999982119 ], [ 359873.479099996387959, 259637.334600001573563 ], [ 359879.752300001680851, 259631.844000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304030100", "MAP": "A9-370-T89", "PARCEL_NAM": "11-10", "ACRE": ".600", "LONGITUDE": -64.92111387, "LATITUDE": 18.3665735, "OBJECTID_1": 1033, "PARCEL_NO_": "101304030100", "Tax_Legal_": "11-10,11-L PETERBORG(GREENBELT) No.12 GREAT NORTHSIDE QUARTER", "Name": "REARDEN CAPITAL LLC", "Address": "Mountainlion Realty LLC", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 199100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.67849860699999, "SHAPE_Area": 3346.8518779000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359824.743299998342991, 259652.503199998289347 ], [ 359802.022699996829033, 259669.204700000584126 ], [ 359789.020999997854233, 259680.91950000077486 ], [ 359771.953500002622604, 259696.611900001764297 ], [ 359763.805900000035763, 259706.466600000858307 ], [ 359797.493000000715256, 259727.640500001609325 ], [ 359824.430399999022484, 259689.230900000780821 ], [ 359829.325800001621246, 259682.515999998897314 ], [ 359830.945600003004074, 259681.684900000691414 ], [ 359843.965300001204014, 259667.859200000762939 ], [ 359871.628100000321865, 259638.954700000584126 ], [ 359873.479099996387959, 259637.334600001573563 ], [ 359864.616899996995926, 259628.815799999982119 ], [ 359844.204499997198582, 259639.785799998790026 ], [ 359824.743299998342991, 259652.503199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101302010200", "MAP": "D9-1047-T72", "PARCEL_NAM": "10-1-39", "ACRE": ".50", "LONGITUDE": -64.9237782, "LATITUDE": 18.37295682, "OBJECTID_1": 893, "PARCEL_NO_": "101302010200", "Tax_Legal_": "PETERBORG 10-1-39 GT. NORTHSIDE", "Name": "AMAID, JOSEPH P. & BARBARA A", "Address": "167 Robeth Ln", "City": "Wethersfield", "State": "Connecticut", "Zip": 6109, "Country": "United States", "Land_Value": 223000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.43025303, "SHAPE_Area": 2724.10480581 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359514.792199999094009, 260342.776200000196695 ], [ 359505.863300003111362, 260348.027800001204014 ], [ 359491.465599998831749, 260371.590599998831749 ], [ 359534.375900000333786, 260418.507199998944998 ], [ 359542.439000003039837, 260418.57319999858737 ], [ 359549.713799998164177, 260416.521800000220537 ], [ 359553.770499996840954, 260413.599700000137091 ], [ 359562.674099996685982, 260409.661800000816584 ], [ 359568.354299999773502, 260405.486400000751019 ], [ 359514.792199999094009, 260342.776200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101302010100", "MAP": "D9-1047-T72", "PARCEL_NAM": "10-1-40", "ACRE": ".50", "LONGITUDE": -64.9240981, "LATITUDE": 18.37318364, "OBJECTID_1": 892, "PARCEL_NO_": "101302010100", "Tax_Legal_": "PETERBORG 10-1-40 GR NORTHSIDE QTR", "Name": "CHRISTOPHER MARKWOOD and DAWN VANDERBURG", "Address": "PO BOX 503268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 223000, "Improved_V": 319800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.29963138700001, "SHAPE_Area": 2559.2969938599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359478.961000002920628, 260380.1081000007689 ], [ 359462.193300001323223, 260398.645399998873472 ], [ 359488.198499999940395, 260443.671599999070168 ], [ 359493.047100000083447, 260442.444699998944998 ], [ 359501.103100001811981, 260443.355000000447035 ], [ 359506.768799997866154, 260440.868299998342991 ], [ 359509.211199998855591, 260438.144000001251698 ], [ 359510.926299996674061, 260426.125700000673532 ], [ 359512.580300003290176, 260421.284099999815226 ], [ 359515.035199999809265, 260417.082400001585484 ], [ 359518.278399996459484, 260414.997999999672174 ], [ 359523.1199000030756, 260414.61540000140667 ], [ 359534.375900000333786, 260418.507199998944998 ], [ 359491.465599998831749, 260371.590599998831749 ], [ 359485.749200001358986, 260380.945799998939037 ], [ 359481.273500002920628, 260377.551600001752377 ], [ 359478.961000002920628, 260380.1081000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101302010300", "MAP": "D9-1047-T72", "PARCEL_NAM": "10-1-41", "ACRE": ".50", "LONGITUDE": -64.9243812, "LATITUDE": 18.37304641, "OBJECTID_1": 894, "PARCEL_NO_": "101302010300", "Tax_Legal_": "10-1-41 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "OLENDER, JOANNE", "Address": "3562 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 223000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.49626344900003, "SHAPE_Area": 2126.2739336 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359475.856100000441074, 260356.048300001770258 ], [ 359459.048199996352196, 260363.217500001192093 ], [ 359433.194099999964237, 260369.127599999308586 ], [ 359452.223700001835823, 260407.069099999964237 ], [ 359477.635499998927116, 260453.084300000220537 ], [ 359480.882299996912479, 260450.577799998223782 ], [ 359484.145300000905991, 260446.171500001102686 ], [ 359488.198499999940395, 260443.671599999070168 ], [ 359462.193300001323223, 260398.645399998873472 ], [ 359478.961000002920628, 260380.1081000007689 ], [ 359481.273500002920628, 260377.551600001752377 ], [ 359478.115900002419949, 260375.156899999827147 ], [ 359492.118100002408028, 260358.942499998956919 ], [ 359475.856100000441074, 260356.048300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101302010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92409624, "LATITUDE": 18.37271044, "OBJECTID_1": 894, "PARCEL_NO_": "101302010300", "Tax_Legal_": "10-1-41 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "OLENDER, JOANNE", "Address": "3562 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 223000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.93310577599999, "SHAPE_Area": 520.20927703999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359510.070699997246265, 260337.248399998992682 ], [ 359509.039599999785423, 260336.194099999964237 ], [ 359505.612700000405312, 260338.534200001507998 ], [ 359480.899599999189377, 260353.897100001573563 ], [ 359475.856100000441074, 260356.048300001770258 ], [ 359492.118100002408028, 260358.942499998956919 ], [ 359478.115900002419949, 260375.156899999827147 ], [ 359485.749200001358986, 260380.945799998939037 ], [ 359491.465599998831749, 260371.590599998831749 ], [ 359505.863300003111362, 260348.027800001204014 ], [ 359514.792199999094009, 260342.776200000196695 ], [ 359510.070699997246265, 260337.248399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304010900", "MAP": "D9-7183-T003", "PARCEL_NAM": "10-1-38", "ACRE": ".57", "LONGITUDE": -64.92355037, "LATITUDE": 18.37273754, "OBJECTID_1": 945, "PARCEL_NO_": "101304010900", "Tax_Legal_": "PETERBORG 10-1-38 GT. NORTHSIDE", "Name": "KTM INVESTEMENTS LLC", "Address": "17154 Butte Creek Rd", "City": "Houston", "State": "Texas", "Zip": 77090, "Country": "United States", "Land_Value": 260600, "Improved_V": 1280100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.10359447299999, "SHAPE_Area": 2946.4768510200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359509.039599999785423, 260336.194099999964237 ], [ 359510.070699997246265, 260337.248399998992682 ], [ 359568.354299999773502, 260405.486400000751019 ], [ 359573.235299997031689, 260400.460099998861551 ], [ 359575.695600003004074, 260395.625100001692772 ], [ 359577.320799998939037, 260394.160700000822544 ], [ 359578.152300000190735, 260391.212200000882149 ], [ 359579.777500003576279, 260389.747900001704693 ], [ 359585.531400002539158, 260376.918299999088049 ], [ 359588.01690000295639, 260369.128199998289347 ], [ 359539.497800000011921, 260320.695500001311302 ], [ 359513.330099999904633, 260333.264199998229742 ], [ 359509.039599999785423, 260336.194099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301011900", "MAP": "A9-139-T70", "PARCEL_NAM": "10-1-34", "ACRE": ".8", "LONGITUDE": -64.92467118, "LATITUDE": 18.37330787, "OBJECTID_1": 813, "PARCEL_NO_": "101301011900", "Tax_Legal_": "PETERBORG 10-1-34 GR NORTHSIDE QTR", "Name": "JACOB, JOHN M", "Address": "3562 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 309000, "Improved_V": 517400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.06733759899998, "SHAPE_Area": 4911.8058979899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359386.508199997246265, 260400.972600001841784 ], [ 359446.663699999451637, 260480.200800001621246 ], [ 359451.624899998307228, 260477.358300000429153 ], [ 359458.941100001335144, 260470.452100001275539 ], [ 359460.578900001943111, 260467.510200001299381 ], [ 359464.64639999717474, 260463.321600001305342 ], [ 359476.816600002348423, 260454.555300001055002 ], [ 359477.635499998927116, 260453.084300000220537 ], [ 359452.223700001835823, 260407.069099999964237 ], [ 359433.194099999964237, 260369.127599999308586 ], [ 359415.406700000166893, 260374.681499999016523 ], [ 359407.321999996900558, 260377.148499999195337 ], [ 359395.938299998641014, 260388.243200000375509 ], [ 359393.479800000786781, 260392.867199998348951 ], [ 359386.508199997246265, 260400.972600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301011800", "MAP": "A9-139-T70", "PARCEL_NAM": "10-1-35", "ACRE": "1.0", "LONGITUDE": -64.92493695, "LATITUDE": 18.37358564, "OBJECTID_1": 812, "PARCEL_NO_": "101301011800", "Tax_Legal_": "PETERBORG 10-1-35 GT. NORTHSIDE", "Name": "BLOOM, TIMOTHY & LUCY", "Address": "1621 ALDERWAY BRANDON", "City": "Brandon", "State": "Florida", "Zip": 33510, "Country": "United States", "Land_Value": 396400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.599678192, "SHAPE_Area": 3203.824765 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359365.059199996292591, 260425.765500001609325 ], [ 359421.552199997007847, 260505.187600001692772 ], [ 359424.81700000166893, 260500.570300001651049 ], [ 359426.43860000371933, 260499.528099998831749 ], [ 359427.295299999415874, 260493.624499998986721 ], [ 359432.188900001347065, 260487.120600000023842 ], [ 359436.241999998688698, 260484.620700001716614 ], [ 359441.090700000524521, 260483.393800001591444 ], [ 359446.663699999451637, 260480.200800001621246 ], [ 359386.508199997246265, 260400.972600001841784 ], [ 359369.861199997365475, 260420.327100001275539 ], [ 359365.059199996292591, 260425.765500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301011600", "MAP": "D9-1045-T72", "PARCEL_NAM": "10-2-29", "ACRE": ".85", "LONGITUDE": -64.92550065, "LATITUDE": 18.37400539, "OBJECTID_1": 810, "PARCEL_NO_": "101301011600", "Tax_Legal_": "PETERBORG 10-2-29 GR NORTHSIDE QTR", "Name": "MAXWELL DUNCAN REVOCABLE TRUST", "Address": "PO Box 306795", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036795, "Country": "United States", "Land_Value": 294300, "Improved_V": 370400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.82567646299998, "SHAPE_Area": 3534.9358173000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359283.6503000035882, 260484.736299999058247 ], [ 359327.256700001657009, 260495.954100001603365 ], [ 359369.472300000488758, 260552.600900001823902 ], [ 359370.349899999797344, 260552.264600001275539 ], [ 359375.221900001168251, 260548.293699998408556 ], [ 359380.130000002682209, 260540.101199999451637 ], [ 359383.375, 260537.805799998342991 ], [ 359389.035400003194809, 260535.952199999243021 ], [ 359390.662399999797344, 260534.276799999177456 ], [ 359335.738899998366833, 260450.234200000762939 ], [ 359325.994800001382828, 260458.175999999046326 ], [ 359304.085900001227856, 260474.250900000333786 ], [ 359283.6503000035882, 260484.736299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301011500", "MAP": "D9-1045-T72", "PARCEL_NAM": "10-2-28", "ACRE": ".55", "LONGITUDE": -64.92559481000001, "LATITUDE": 18.37433844, "OBJECTID_1": 809, "PARCEL_NO_": "101301011500", "Tax_Legal_": "PETERBORG 10-2-28 GT. NORTHSIDE", "Name": "IBRAHIM SALAMEH ASFOUR and SAMI IBRAHIM ASFOUR", "Address": "5221 Curacao Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 234500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.41191232899999, "SHAPE_Area": 2573.9927186999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359300.046700000762939, 260506.730900000780821 ], [ 359338.549800001084805, 260577.381999999284744 ], [ 359339.499600000679493, 260576.710099998861551 ], [ 359343.520400002598763, 260578.009500000625849 ], [ 359345.977099999785423, 260573.596700001507998 ], [ 359353.286100000143051, 260567.534800000488758 ], [ 359356.568899996578693, 260560.806699998676777 ], [ 359359.826499998569489, 260557.033599998801947 ], [ 359365.495899997651577, 260554.124699998646975 ], [ 359369.472300000488758, 260552.600900001823902 ], [ 359327.256700001657009, 260495.954100001603365 ], [ 359309.569200001657009, 260502.959399998188019 ], [ 359300.046700000762939, 260506.730900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301011300", "MAP": "D9-1045-T72", "PARCEL_NAM": "10-2-26", "ACRE": ".70", "LONGITUDE": -64.92613218, "LATITUDE": 18.37471279, "OBJECTID_1": 807, "PARCEL_NO_": "101301011300", "Tax_Legal_": "PETERBORG 10-2-26 GR NORTHSIDE", "Name": "LEE RIGGINS RICH REVOCABLE LIVING TRUST", "Address": "1818 Calthrop Neck Rd", "City": "Yorktown", "State": "Virginia", "Zip": 23693, "Country": "United States", "Land_Value": 280300, "Improved_V": 133000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.34808025500001, "SHAPE_Area": 2819.7836619899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359248.785700000822544, 260529.61879999935627 ], [ 359244.32769999653101, 260532.35249999910593 ], [ 359245.506300002336502, 260535.410799998790026 ], [ 359285.815499998629093, 260631.155000001192093 ], [ 359288.241599999368191, 260630.33049999922514 ], [ 359293.124499998986721, 260625.093100000172853 ], [ 359303.656900003552437, 260619.268699999898672 ], [ 359305.294699996709824, 260616.326799999922514 ], [ 359307.729800000786781, 260614.446899998933077 ], [ 359309.720100000500679, 260614.333000000566244 ], [ 359269.915799997746944, 260525.598700001835823 ], [ 359248.785700000822544, 260529.61879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301011400", "MAP": "D9-1045-T72", "PARCEL_NAM": "10-2-27", "ACRE": ".80", "LONGITUDE": -64.92585867, "LATITUDE": 18.37457802, "OBJECTID_1": 808, "PARCEL_NO_": "101301011400", "Tax_Legal_": "PETERBORG 10-2-27 GR NORTHSIDE QTR", "Name": "BRYAN, RAYMOND G. & JENNIFER L", "Address": "PO Box 18263", "City": "Reno", "State": "Nevada", "Zip": 89511, "Country": "United States", "Land_Value": 311800, "Improved_V": 487300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.59353284600002, "SHAPE_Area": 4000.4412496999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359267.274599999189377, 260519.710700001567602 ], [ 359267.738799996674061, 260520.745600000023842 ], [ 359309.720100000500679, 260614.333000000566244 ], [ 359310.956799998879433, 260614.262200001627207 ], [ 359313.368600003421307, 260615.126299999654293 ], [ 359315.749799996614456, 260619.57880000025034 ], [ 359318.16330000013113, 260620.231800001114607 ], [ 359323.013800002634525, 260618.793800000101328 ], [ 359326.289399996399879, 260612.910000000149012 ], [ 359332.779399998486042, 260608.319099999964237 ], [ 359335.223499998450279, 260605.383799999952316 ], [ 359336.071199998259544, 260600.535599999129772 ], [ 359336.254600003361702, 260579.005499999970198 ], [ 359338.549800001084805, 260577.381999999284744 ], [ 359300.046700000762939, 260506.730900000780821 ], [ 359273.987000003457069, 260517.052200000733137 ], [ 359267.274599999189377, 260519.710700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9262032, "LATITUDE": 18.37407843, "OBJECTID_1": 816, "PARCEL_NO_": "101301012200", "Tax_Legal_": "PETERBORG 10-2-30 GR NORTHSIDE", "Name": "MAXWELL DUNCAN REVOCABLE TRUST", "Address": "PO Box 306795", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036795, "Country": "United States", "Land_Value": 159700, "Improved_V": 22300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.968391263, "SHAPE_Area": 1963.0463763099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359216.518700003623962, 260530.529500000178814 ], [ 359267.274599999189377, 260519.710700001567602 ], [ 359309.569200001657009, 260502.959399998188019 ], [ 359327.256700001657009, 260495.954100001603365 ], [ 359283.6503000035882, 260484.736299999058247 ], [ 359275.739100001752377, 260488.795499999076128 ], [ 359257.127400003373623, 260496.453600000590086 ], [ 359240.916599996387959, 260506.242300000041723 ], [ 359223.042900003492832, 260521.928100001066923 ], [ 359216.518700003623962, 260530.529500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301011000", "MAP": "D9-1045-T72", "PARCEL_NAM": "10-2-24", "ACRE": ".70", "LONGITUDE": -64.92670797, "LATITUDE": 18.37475636, "OBJECTID_1": 804, "PARCEL_NO_": "101301011000", "Tax_Legal_": "PETERBORG 10-2-24 GT. NORTHSIDE", "Name": "DUFFY (TRUSTEE), ELIZABETH A.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 280300, "Improved_V": 278500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.84767879700001, "SHAPE_Area": 2797.3048827100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359244.32769999653101, 260532.35249999910593 ], [ 359248.785700000822544, 260529.61879999935627 ], [ 359243.650600001215935, 260530.59569999948144 ], [ 359225.504199996590614, 260534.048200000077486 ], [ 359215.133500002324581, 260536.021200001239777 ], [ 359198.139700002968311, 260541.611200001090765 ], [ 359198.666500002145767, 260543.682300001382828 ], [ 359201.204800002276897, 260624.340799998492002 ], [ 359208.476000003516674, 260622.711599998176098 ], [ 359214.926500000059605, 260622.764400001615286 ], [ 359226.997800000011921, 260625.607400000095367 ], [ 359235.861900001764297, 260626.313200000673532 ], [ 359226.538400001823902, 260543.260999999940395 ], [ 359229.248700000345707, 260541.598999999463558 ], [ 359237.98200000077486, 260536.243700001388788 ], [ 359244.32769999653101, 260532.35249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101301011200", "MAP": "D9-1045-T72", "PARCEL_NAM": "10-2-25", "ACRE": ".65", "LONGITUDE": -64.92638256, "LATITUDE": 18.37483715, "OBJECTID_1": 806, "PARCEL_NO_": "101301011200", "Tax_Legal_": "PETERBORG 10-2-25 GT. NORTHSIDE", "Name": "LEE RIGGINS RICH REVOCABLE LIVING TRUST", "Address": "1818 Calthrop Neck Rd", "City": "Yorktown", "State": "Virginia", "Zip": 23693, "Country": "United States", "Land_Value": 266000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.59100585200002, "SHAPE_Area": 3184.7088357799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359244.32769999653101, 260532.35249999910593 ], [ 359237.98200000077486, 260536.243700001388788 ], [ 359229.248700000345707, 260541.598999999463558 ], [ 359226.538400001823902, 260543.260999999940395 ], [ 359235.861900001764297, 260626.313200000673532 ], [ 359250.380900003015995, 260625.798700001090765 ], [ 359256.818800002336502, 260627.329100001603365 ], [ 359260.823399998247623, 260630.528299998492002 ], [ 359264.828000001609325, 260633.727400001138449 ], [ 359268.863200001418591, 260633.338300000876188 ], [ 359273.718999996781349, 260631.267099998891354 ], [ 359283.389399997889996, 260631.979499999433756 ], [ 359285.815499998629093, 260631.155000001192093 ], [ 359245.506300002336502, 260535.410799998790026 ], [ 359244.32769999653101, 260532.35249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202041800", "MAP": "F9-472-T59", "PARCEL_NAM": "17D", "ACRE": "0.22", "LONGITUDE": -64.95434719, "LATITUDE": 18.3417288, "OBJECTID_1": 8278, "PARCEL_NO_": "105202041800", "Tax_Legal_": "CONTANT 17D S S QTR", "Name": "AGEMA INCORPORATED INC", "Address": "9 Contant Gilmore Plaza", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71900, "Improved_V": 3400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.302791114, "SHAPE_Area": 1019.37007772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356309.122900001704693, 256875.075599998235703 ], [ 356322.221699997782707, 256928.312199998646975 ], [ 356327.349500000476837, 256927.791799999773502 ], [ 356332.291900001466274, 256927.270199999213219 ], [ 356341.868100002408028, 256926.25959999859333 ], [ 356327.005300000309944, 256873.537900000810623 ], [ 356317.334499999880791, 256874.369500000029802 ], [ 356309.122900001704693, 256875.075599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801041600", "MAP": "F9-1209-T63", "PARCEL_NAM": "8-38", "ACRE": ".38", "LONGITUDE": -64.94346061, "LATITUDE": 18.3566733, "OBJECTID_1": 3885, "PARCEL_NO_": "102801041600", "Tax_Legal_": "8-38 ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "STRYKER LIVING TRUST", "Address": "7705 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51100, "Improved_V": 224700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.52640089299999, "SHAPE_Area": 1539.33304142 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357470.7128000035882, 258535.118900001049042 ], [ 357440.685099996626377, 258567.390500001609325 ], [ 357443.075300000607967, 258570.787599999457598 ], [ 357443.024899996817112, 258576.697799999266863 ], [ 357429.18639999628067, 258591.994300000369549 ], [ 357429.963899999856949, 258595.378199998289347 ], [ 357433.183799996972084, 258596.037799999117851 ], [ 357444.697300001978874, 258590.069299999624491 ], [ 357450.287799999117851, 258587.027499999850988 ], [ 357472.871100001037121, 258575.464400000870228 ], [ 357472.845799997448921, 258571.224599998444319 ], [ 357495.074100002646446, 258556.2516999989748 ], [ 357470.7128000035882, 258535.118900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801041700", "MAP": "F9-1205-T63", "PARCEL_NAM": "8-34", "ACRE": ".241", "LONGITUDE": -64.94314025, "LATITUDE": 18.35680296, "OBJECTID_1": 3886, "PARCEL_NO_": "102801041700", "Tax_Legal_": "LERKENLUND 8-34 LITTLE NORTHSIDE", "Name": "STRYKER LIVING TRUST", "Address": "7705 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57100, "Improved_V": 243300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.19735179099999, "SHAPE_Area": 1201.0366746699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357521.824500001966953, 258582.801199998706579 ], [ 357498.9712999984622, 258560.119600001722574 ], [ 357495.074100002646446, 258556.2516999989748 ], [ 357472.845799997448921, 258571.224599998444319 ], [ 357472.871100001037121, 258575.464400000870228 ], [ 357475.266599997878075, 258578.228199999779463 ], [ 357476.861299999058247, 258580.352200001478195 ], [ 357496.016800001263618, 258603.518199998885393 ], [ 357521.824500001966953, 258582.801199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801044400", "MAP": "C9-248-T80", "PARCEL_NAM": "11-D-7", "ACRE": ".53", "LONGITUDE": -64.94287036, "LATITUDE": 18.35651022, "OBJECTID_1": 3911, "PARCEL_NO_": "102801044400", "Tax_Legal_": "LERKENLUND 11D-7 GT.NORTHSIDE", "Name": "WYSZKOWSKI, RAFAL", "Address": "2914 Eagle Rd", "City": "Abington", "State": "Pennsylvania", "Zip": 19001, "Country": "United States", "Land_Value": 84600, "Improved_V": 309300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.72274527600001, "SHAPE_Area": 2625.9813974399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357498.9712999984622, 258560.119600001722574 ], [ 357521.824500001966953, 258582.801199998706579 ], [ 357530.117499999701977, 258576.144000001251698 ], [ 357567.470200002193451, 258524.77589999884367 ], [ 357563.686999998986721, 258516.468199998140335 ], [ 357544.267099998891354, 258524.330800000578165 ], [ 357526.485100001096725, 258529.251499999314547 ], [ 357512.754399999976158, 258531.883400000631809 ], [ 357494.196599997580051, 258533.209100000560284 ], [ 357481.765000000596046, 258543.348200000822544 ], [ 357480.958099998533726, 258544.006299998611212 ], [ 357495.074100002646446, 258556.2516999989748 ], [ 357498.9712999984622, 258560.119600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803016600", "MAP": "C9-248-T80", "PARCEL_NAM": "11-D-6", "ACRE": ".53", "LONGITUDE": -64.94343778, "LATITUDE": 18.3561454, "OBJECTID_1": 4252, "PARCEL_NO_": "102803016600", "Tax_Legal_": "LERKENLUND 11D-6 GT. NORTHSIDE", "Name": "PETERSEN, VERA L.-TRUSTEE", "Address": "PO Box 488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 79200, "Improved_V": 409000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.43261635200003, "SHAPE_Area": 2374.71085713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357481.765000000596046, 258543.348200000822544 ], [ 357494.196599997580051, 258533.209100000560284 ], [ 357489.355200000107288, 258533.591699998825788 ], [ 357484.537100002169609, 258531.230200000107288 ], [ 357482.145099997520447, 258528.044300001114607 ], [ 357481.398100003600121, 258521.07209999859333 ], [ 357483.039499998092651, 258517.708000000566244 ], [ 357500.097999997437, 258503.071100000292063 ], [ 357500.938500002026558, 258499.067200001329184 ], [ 357498.535700000822544, 258497.147700000554323 ], [ 357488.872500002384186, 258495.590900000184774 ], [ 357477.614699997007847, 258491.910199999809265 ], [ 357473.620899997651577, 258487.444499999284744 ], [ 357472.855999998748302, 258482.583099998533726 ], [ 357473.698299996554852, 258478.368099998682737 ], [ 357476.142399996519089, 258475.432799998670816 ], [ 357485.049599997699261, 258471.072799999266863 ], [ 357455.107699997723103, 258481.371199999004602 ], [ 357454.961900003254414, 258481.421300001442432 ], [ 357424.6283999979496, 258498.062600001692772 ], [ 357425.009999997913837, 258498.617600001394749 ], [ 357430.744300000369549, 258503.769999999552965 ], [ 357451.571800000965595, 258519.983600001782179 ], [ 357466.79280000180006, 258531.718299999833107 ], [ 357480.958099998533726, 258544.006299998611212 ], [ 357481.765000000596046, 258543.348200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801042100", "MAP": "F9-2556-T70", "PARCEL_NAM": "8-19A", "ACRE": null, "LONGITUDE": -64.94265672, "LATITUDE": 18.35725571, "OBJECTID_1": 3889, "PARCEL_NO_": "102801042100", "Tax_Legal_": "LERKENLUND 8-19A LITTLE NORTHSIDE", "Name": "VILLA POLARIS LLC", "Address": "7796 N Star Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62300, "Improved_V": 212300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.60286093400001, "SHAPE_Area": 1404.3193228800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357567.643200002610683, 258623.835400000214577 ], [ 357549.789099998772144, 258609.705699998885393 ], [ 357514.183799996972084, 258621.567600000649691 ], [ 357518.428099997341633, 258623.12220000103116 ], [ 357539.957599997520447, 258651.58500000089407 ], [ 357563.42339999973774, 258642.066700000315905 ], [ 357579.102600000798702, 258632.90430000051856 ], [ 357567.643200002610683, 258623.835400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801044700", "MAP": "D9-4081-T87", "PARCEL_NAM": "11A-3", "ACRE": ".55", "LONGITUDE": -64.94214585, "LATITUDE": 18.35699282, "OBJECTID_1": 3914, "PARCEL_NO_": "102801044700", "Tax_Legal_": "11A-3 REM. LERKENLUND GREAT NORTHSIDE", "Name": "LAPLACE, KRISTIAN", "Address": "7745 Upper Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.84062460600001, "SHAPE_Area": 2080.9632224299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357561.381499998271465, 258615.84180000051856 ], [ 357559.461099997162819, 258617.360100001096725 ], [ 357567.643200002610683, 258623.835400000214577 ], [ 357579.102600000798702, 258632.90430000051856 ], [ 357581.406199999153614, 258631.131299998611212 ], [ 357591.789899997413158, 258625.200300000607967 ], [ 357608.013300001621246, 258613.934000000357628 ], [ 357632.377099998295307, 258593.657400000840425 ], [ 357638.877899996936321, 258587.800000000745058 ], [ 357626.954099997878075, 258570.145399998873472 ], [ 357624.248099997639656, 258566.138999998569489 ], [ 357561.381499998271465, 258615.84180000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801043800", "MAP": "D9-4081-T87", "PARCEL_NAM": "11A REM", "ACRE": ".55", "LONGITUDE": -64.94228986, "LATITUDE": 18.35681063, "OBJECTID_1": 3906, "PARCEL_NO_": "102801043800", "Tax_Legal_": "11A REM. LERKENLUND GREAT NORTHSIDE", "Name": "QUERRARD, ELVIRA A", "Address": "11A Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111100, "Improved_V": 150100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.24225607, "SHAPE_Area": 2044.1236917000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357559.461099997162819, 258617.360100001096725 ], [ 357561.381499998271465, 258615.84180000051856 ], [ 357624.248099997639656, 258566.138999998569489 ], [ 357615.280500002205372, 258552.861600000411272 ], [ 357607.726300001144409, 258542.816700000315905 ], [ 357573.712899997830391, 258576.420400001108646 ], [ 357545.730999998748302, 258602.294799998402596 ], [ 357549.244800001382828, 258606.189699999988079 ], [ 357549.789099998772144, 258609.705699998885393 ], [ 357559.461099997162819, 258617.360100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801044600", "MAP": "D9-4082-T87", "PARCEL_NAM": "11A-2", "ACRE": ".51", "LONGITUDE": -64.94261848, "LATITUDE": 18.35674013, "OBJECTID_1": 3913, "PARCEL_NO_": "102801044600", "Tax_Legal_": "REM 11A-2 LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "QUERRARD, JOHNATHAN ADRIAN", "Address": "10546 Highway 182", "City": "Franklin", "State": "Louisiana", "Zip": 70538, "Country": "United States", "Land_Value": 50000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.61614683600001, "SHAPE_Area": 1511.4599394899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357525.490000002086163, 258579.85869999974966 ], [ 357545.730999998748302, 258602.294799998402596 ], [ 357573.712899997830391, 258576.420400001108646 ], [ 357558.478500001132488, 258537.141499999910593 ], [ 357530.117499999701977, 258576.144000001251698 ], [ 357525.490000002086163, 258579.85869999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801041900", "MAP": "D9-8853-T014", "PARCEL_NAM": "8-28", "ACRE": ".375", "LONGITUDE": -64.94288796, "LATITUDE": 18.35701548, "OBJECTID_1": 3888, "PARCEL_NO_": "102801041900", "Tax_Legal_": "CONS 8-28 LERKENLUND GREAT NORTHSIDE QUARTER", "Name": "ANTHONY LABADIE, MARGARET", "Address": "PO Box 8192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75800, "Improved_V": 145000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.500315524, "SHAPE_Area": 1216.99408485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357545.730999998748302, 258602.294799998402596 ], [ 357525.490000002086163, 258579.85869999974966 ], [ 357496.016800001263618, 258603.518199998885393 ], [ 357499.209700003266335, 258607.344000000506639 ], [ 357509.585600003600121, 258619.883400000631809 ], [ 357514.183799996972084, 258621.567600000649691 ], [ 357549.789099998772144, 258609.705699998885393 ], [ 357549.244800001382828, 258606.189699999988079 ], [ 357545.730999998748302, 258602.294799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304010600", "MAP": "D9-8861-T014", "PARCEL_NAM": "8-32 & 11-18", "ACRE": "1.52", "LONGITUDE": -64.92207541000001, "LATITUDE": 18.36982907, "OBJECTID_1": 942, "PARCEL_NO_": "101304010600", "Tax_Legal_": "PETERBROG 8-32 GT. NORTHSIDE", "Name": "NEWBOLD, JR. WILLIAM & F. E", "Address": "PO Box 11788", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 366300, "Improved_V": 835900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 385.570423871, "SHAPE_Area": 5671.1889505500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359787.3429000005126, 260067.206999998539686 ], [ 359725.439400002360344, 260043.134799998253584 ], [ 359725.249399997293949, 260001.170099999755621 ], [ 359699.283299997448921, 259991.970300000160933 ], [ 359682.422399997711182, 259985.98200000077486 ], [ 359670.995800003409386, 259999.549199998378754 ], [ 359661.107900001108646, 260024.377300001680851 ], [ 359667.482900001108646, 260033.295400001108646 ], [ 359670.646999999880791, 260040.498500000685453 ], [ 359673.784100003540516, 260050.867800001055002 ], [ 359674.552699998021126, 260055.307000000029802 ], [ 359673.62049999833107, 260070.075899999588728 ], [ 359762.295100003480911, 260073.123700000345707 ], [ 359780.703599996864796, 260089.317499998956919 ], [ 359787.21339999884367, 260082.404699999839067 ], [ 359788.869199998676777, 260077.352000001817942 ], [ 359787.3429000005126, 260067.206999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304012200", "MAP": "A9-109-T69", "PARCEL_NAM": "8-17", "ACRE": ".593", "LONGITUDE": -64.923449, "LATITUDE": 18.37021905, "OBJECTID_1": 956, "PARCEL_NO_": "101304012200", "Tax_Legal_": "PETERBORG 8-17 GR NORTHSIDE", "Name": "PRIOR, GERTRUDE & CORNELIUS B", "Address": "PO Box 12030", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 172200, "Improved_V": 525000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.262751544, "SHAPE_Area": 2606.6064081200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359530.232699997723103, 260078.315400000661612 ], [ 359576.443999998271465, 260118.465399999171495 ], [ 359582.950199998915195, 260111.974700000137091 ], [ 359583.772699996829033, 260110.081599999219179 ], [ 359595.987899996340275, 260096.03830000013113 ], [ 359600.080600000917912, 260088.894600000232458 ], [ 359552.11540000140667, 260039.950599998235703 ], [ 359547.997599996626377, 260050.049300000071526 ], [ 359545.551700003445148, 260053.195700000971556 ], [ 359541.446400001645088, 260061.81700000166893 ], [ 359533.287900000810623, 260072.938099998980761 ], [ 359530.232699997723103, 260078.315400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304012500", "MAP": "A9-109-T69", "PARCEL_NAM": "8-19", "ACRE": ".539", "LONGITUDE": -64.92326619000001, "LATITUDE": 18.36938616, "OBJECTID_1": 959, "PARCEL_NO_": "101304012500", "Tax_Legal_": "8-19 PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "WLA LLC", "Address": "1057 FOXBOROUGH DRIVE", "City": "Williamston", "State": "Michigan", "Zip": 488959206, "Country": "United States", "Land_Value": 163300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.89822865799999, "SHAPE_Area": 2930.03959016 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359556.419799998402596, 260044.342700000852346 ], [ 359573.46000000089407, 260026.376899998635054 ], [ 359602.407700002193451, 259995.856699999421835 ], [ 359626.08330000191927, 259970.895100001245737 ], [ 359607.635200001299381, 259959.344999998807907 ], [ 359586.782600000500679, 259946.086599998176098 ], [ 359578.618699997663498, 259957.840999998152256 ], [ 359569.601800002157688, 259975.076900001615286 ], [ 359564.648900002241135, 259988.546300001442432 ], [ 359557.939499996602535, 260018.888900000602007 ], [ 359552.11540000140667, 260039.950599998235703 ], [ 359556.419799998402596, 260044.342700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304012300", "MAP": "A9-109-T69", "PARCEL_NAM": "8-18", "ACRE": ".533", "LONGITUDE": -64.92320903, "LATITUDE": 18.36994508, "OBJECTID_1": 957, "PARCEL_NO_": "101304012300", "Tax_Legal_": "PETERBORG 8-18 GR NORTHSIDE", "Name": "ROURKE, BRIAN E. & CARR0OLL B", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 161500, "Improved_V": 467200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.31173215699999, "SHAPE_Area": 2291.4122562100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359573.46000000089407, 260026.376899998635054 ], [ 359556.419799998402596, 260044.342700000852346 ], [ 359600.080600000917912, 260088.894600000232458 ], [ 359603.348999999463558, 260083.855200000107288 ], [ 359605.816500000655651, 260078.175799999386072 ], [ 359607.445299997925758, 260076.289299998432398 ], [ 359613.215400002896786, 260061.559999998658895 ], [ 359616.480200000107288, 260056.942600000649691 ], [ 359621.991700001060963, 260044.583399999886751 ], [ 359580.04169999808073, 260019.437600001692772 ], [ 359573.46000000089407, 260026.376899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304012400", "MAP": "A9-109-T69", "PARCEL_NAM": "8-20", "ACRE": ".501", "LONGITUDE": -64.92292661, "LATITUDE": 18.36954559, "OBJECTID_1": 958, "PARCEL_NO_": "101304012400", "Tax_Legal_": "8-20 PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "WLA LLC", "Address": "1057 FOXBOROUGH DRIVE", "City": "Williamston", "State": "Michigan", "Zip": 488959206, "Country": "United States", "Land_Value": 156100, "Improved_V": 721800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.16985913100001, "SHAPE_Area": 2792.0783570200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359626.08330000191927, 259970.895100001245737 ], [ 359602.407700002193451, 259995.856699999421835 ], [ 359580.04169999808073, 260019.437600001692772 ], [ 359621.991700001060963, 260044.583399999886751 ], [ 359630.455399997532368, 260025.604100000113249 ], [ 359633.718400001525879, 260021.197799999266863 ], [ 359637.773400001227856, 260018.486800000071526 ], [ 359645.046400003135204, 260016.646499998867512 ], [ 359657.362199999392033, 259990.782800000160933 ], [ 359626.08330000191927, 259970.895100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702035700", "MAP": "D9-8859-T014", "PARCEL_NAM": "10-1-12", "ACRE": ".5409", "LONGITUDE": -64.95182102, "LATITUDE": 18.35721479, "OBJECTID_1": 3090, "PARCEL_NO_": "102702035700", "Tax_Legal_": "10-1-12 LILLIENDAHL & MARIENHOJ 3 LITTLE NORTHSIDE QUARTER", "Name": "INDUSTRIOUS, JULIAN,SR. & FELICE", "Address": "PO Box 304985", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.427644681, "SHAPE_Area": 2098.86991515 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356604.463600002229214, 258632.411100000143051 ], [ 356607.366800002753735, 258632.188700001686811 ], [ 356632.391400001943111, 258604.049199998378754 ], [ 356601.771999999880791, 258610.326200000941753 ], [ 356601.695799998939037, 258610.341899998486042 ], [ 356593.618299998342991, 258611.964499998837709 ], [ 356587.174999997019768, 258611.067400000989437 ], [ 356543.812100000679493, 258589.8141999989748 ], [ 356545.98650000244379, 258618.540699999779463 ], [ 356549.838600002229214, 258635.088300000876188 ], [ 356604.463600002229214, 258632.411100000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010100", "MAP": "F9-1453-T64", "PARCEL_NAM": "34 AA", "ACRE": "0.75", "LONGITUDE": -64.89919199000001, "LATITUDE": 18.36263974, "OBJECTID_1": 6335, "PARCEL_NO_": "103101010100", "Tax_Legal_": "MANDAHL 34AA GREAT NORTHSIDE", "Name": "HOUSTON, SUSAN", "Address": "PO Box 11814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 130700, "Improved_V": 349400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.50995192, "SHAPE_Area": 3666.1960250100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362175.349799998104572, 259268.975299999117851 ], [ 362155.575000002980232, 259223.850499998778105 ], [ 362152.335400000214577, 259225.512699998915195 ], [ 362158.656400002539158, 259240.763199999928474 ], [ 362152.178900003433228, 259243.876600001007318 ], [ 362142.679399996995926, 259223.111699998378754 ], [ 362094.794100001454353, 259259.449999999254942 ], [ 362110.471699997782707, 259305.935199998319149 ], [ 362109.942500002682209, 259298.262200001627207 ], [ 362118.144599996507168, 259294.425799999386072 ], [ 362143.280100002884865, 259288.075699999928474 ], [ 362159.155100002884865, 259283.313200000673532 ], [ 362168.812399998307228, 259281.725699998438358 ], [ 362176.220799997448921, 259280.005899999290705 ], [ 362176.882200002670288, 259275.111099999397993 ], [ 362175.349799998104572, 259268.975299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101003021600", "MAP": "D9-6942-T001", "PARCEL_NAM": "2E-20", "ACRE": null, "LONGITUDE": -64.97709279, "LATITUDE": 18.36540604, "OBJECTID_1": 168, "PARCEL_NO_": "101003021600", "Tax_Legal_": "2E-20 REMAINDER ESTATE CARET BAY NO. 8 LITTLE NORTHSIDE QTR.", "Name": "JAMES T TEMPLETON FAMILY TRUST", "Address": "PO BOX 503087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 11000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.83648296800001, "SHAPE_Area": 333.03981590500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353873.780900001525879, 259503.822700001299381 ], [ 353882.511600002646446, 259508.297899998724461 ], [ 353909.917700000107288, 259503.492199998348951 ], [ 353934.17339999973774, 259504.526000000536442 ], [ 353934.928000003099442, 259500.778900001198053 ], [ 353904.986900001764297, 259498.910900000482798 ], [ 353893.630500003695488, 259499.699700001627207 ], [ 353874.239200003445148, 259499.520899999886751 ], [ 353873.780900001525879, 259503.822700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101003021800", "MAP": "F9-907-T62", "PARCEL_NAM": "2E-18", "ACRE": null, "LONGITUDE": -64.97746616000001, "LATITUDE": 18.36540337, "OBJECTID_1": 170, "PARCEL_NO_": "101003021800", "Tax_Legal_": "CARET BAY 2E-8, 8A & 18 LITTLE NORTHSIDE", "Name": "HAMLIN, MARK", "Address": "PO Box 6813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046813, "Country": "United States", "Land_Value": 57700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.447394398900002, "SHAPE_Area": 234.37307797099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353848.478200003504753, 259494.190200001001358 ], [ 353847.596799999475479, 259503.3136 ], [ 353861.269900001585484, 259507.436299998313189 ], [ 353873.341499999165535, 259507.947500001639128 ], [ 353874.239200003445148, 259499.520899999886751 ], [ 353858.933700002729893, 259497.706900000572205 ], [ 353851.438900001347065, 259495.186000000685453 ], [ 353848.478200003504753, 259494.190200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003021200", "MAP": "D9-6942-T001", "PARCEL_NAM": "2E-20-E", "ACRE": ".03", "LONGITUDE": -64.97696518, "LATITUDE": 18.36544285, "OBJECTID_1": 164, "PARCEL_NO_": "101003021200", "Tax_Legal_": "CARET BAY 2E-19 & 2E-20-A No.8 LITTLE NORTHSIDE QTR.", "Name": "NOEL HODGE and ROSELYN R SAMUEL-HODGE", "Address": "PO BOX 303896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90700, "Improved_V": 381400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.444014856, "SHAPE_Area": 202.03248876399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353882.511600002646446, 259508.297899998724461 ], [ 353932.386100001633167, 259509.673099998384714 ], [ 353934.17339999973774, 259504.526000000536442 ], [ 353909.917700000107288, 259503.492199998348951 ], [ 353882.511600002646446, 259508.297899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101003021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97731635, "LATITUDE": 18.36544496, "OBJECTID_1": 164, "PARCEL_NO_": "101003021200", "Tax_Legal_": "CARET BAY 2E-19 & 2E-20-A No.8 LITTLE NORTHSIDE QTR.", "Name": "NOEL HODGE and ROSELYN R SAMUEL-HODGE", "Address": "PO BOX 303896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90700, "Improved_V": 381400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.135953595299998, "SHAPE_Area": 19.111555174199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353873.780900001525879, 259503.822700001299381 ], [ 353873.341499999165535, 259507.947500001639128 ], [ 353879.80969999730587, 259508.2212999984622 ], [ 353882.511600002646446, 259508.297899998724461 ], [ 353873.780900001525879, 259503.822700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003028500", "MAP": "D9-3589-T86", "PARCEL_NAM": "2B-2", "ACRE": ".016", "LONGITUDE": -64.97590857, "LATITUDE": 18.36540519, "OBJECTID_1": 236, "PARCEL_NO_": "101003028500", "Tax_Legal_": "2B-2 REM. & 2B2-1 ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "EDINBOROUGH, CHARLES A. & LYDIA D.", "Address": "PO Box 1715", "City": "North Highlands", "State": "California", "Zip": 95660, "Country": "United States", "Land_Value": 9400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.566627287599999, "SHAPE_Area": 111.646477448 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354032.387100003659725, 259499.538499999791384 ], [ 354018.581799998879433, 259499.224599998444319 ], [ 354018.513400003314018, 259507.245600000023842 ], [ 354031.715999998152256, 259508.022999998182058 ], [ 354032.387100003659725, 259499.538499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035900", "MAP": "D9-7238-T003", "PARCEL_NAM": "60-12", "ACRE": ".954", "LONGITUDE": -64.97759976, "LATITUDE": 18.37047143, "OBJECTID_1": 294, "PARCEL_NO_": "101003035900", "Tax_Legal_": "60-12 ESTATE CARET BAY 8 LITTLE NORTHSIDE", "Name": "WILLIAM HENDON WYCHE and ROSETTE AYONIE WYCHE", "Address": "1111 Fox Den Rd", "City": "Hephzibah", "State": "Georgia", "Zip": 30815, "Country": "United States", "Land_Value": 168300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 366.00068482900002, "SHAPE_Area": 6243.6364786599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353844.02759999781847, 260087.234400000423193 ], [ 353848.149700000882149, 260086.235100001096725 ], [ 353853.445799998939037, 260086.235100001096725 ], [ 353856.813100002706051, 260085.826999999582767 ], [ 353859.790700003504753, 260085.621599998325109 ], [ 353862.619199998676777, 260085.13399999961257 ], [ 353866.806999996304512, 260084.274900000542402 ], [ 353869.821299999952316, 260083.859200000762939 ], [ 353873.359700001776218, 260083.021099999547005 ], [ 353876.748800002038479, 260081.555599998682737 ], [ 353879.565700002014637, 260079.845300000160933 ], [ 353882.778599999845028, 260078.083399999886751 ], [ 353884.962300002574921, 260076.627599999308586 ], [ 353887.100599996745586, 260074.692899998277426 ], [ 353889.816100001335144, 260072.629200000315905 ], [ 353892.940999999642372, 260070.062300000339746 ], [ 353896.657300002872944, 260067.855700001120567 ], [ 353899.654600001871586, 260066.301600001752377 ], [ 353902.981899999082088, 260064.695300001651049 ], [ 353905.139200001955032, 260063.976199999451637 ], [ 353908.639700002968311, 260062.875999998301268 ], [ 353911.910400003194809, 260061.3429000005126 ], [ 353914.788500003516674, 260060.212200000882149 ], [ 353917.507500000298023, 260058.767700001597404 ], [ 353919.222599998116493, 260057.052600000053644 ], [ 353922.54559999704361, 260053.045499999076128 ], [ 353924.294100001454353, 260050.192699998617172 ], [ 353925.124499998986721, 260048.324200000613928 ], [ 353926.696800000965595, 260045.628899998962879 ], [ 353817.701899997889996, 260030.173000000417233 ], [ 353806.990900002419949, 260028.1097999997437 ], [ 353778.053099997341633, 260087.474599998444319 ], [ 353787.440499998629093, 260090.554800000041723 ], [ 353786.582800000905991, 260092.266199998557568 ], [ 353783.311300002038479, 260099.293000001460314 ], [ 353788.144000001251698, 260100.018399998545647 ], [ 353799.185099996626377, 260098.991300001740456 ], [ 353807.17620000243187, 260098.71680000051856 ], [ 353810.794299997389317, 260098.325699999928474 ], [ 353815.467299997806549, 260097.7162000015378 ], [ 353818.538999997079372, 260097.044199999421835 ], [ 353822.126999996602535, 260095.911200001835823 ], [ 353823.719700001180172, 260095.114799998700619 ], [ 353826.645400002598763, 260093.989500001072884 ], [ 353830.554899998009205, 260092.510299999266863 ], [ 353836.320500001311302, 260090.268100000917912 ], [ 353839.259400002658367, 260089.254700001329184 ], [ 353841.659000001847744, 260088.107099998742342 ], [ 353844.02759999781847, 260087.234400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003030900", "MAP": "D9-6589-T99", "PARCEL_NAM": "60-10", "ACRE": ".804", "LONGITUDE": -64.97667454, "LATITUDE": 18.37067804, "OBJECTID_1": 249, "PARCEL_NO_": "101003030900", "Tax_Legal_": "CARET BAY 60-9,60-10 #8 LT.NORTHSIDE QTR.", "Name": "ANN AND MICHAEL WERTH TRUST", "Address": "PO Box 6035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 279000, "Improved_V": 565800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.33579972199999, "SHAPE_Area": 2849.9280984500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353989.999499998986721, 260103.866300001740456 ], [ 353927.531199999153614, 260051.910399999469519 ], [ 353925.527699999511242, 260055.179299999028444 ], [ 353921.929300002753735, 260059.518500000238419 ], [ 353919.706799998879433, 260061.74100000038743 ], [ 353916.320200003683567, 260063.540199998766184 ], [ 353913.356799997389317, 260064.7043999992311 ], [ 353909.970100000500679, 260066.291900001466274 ], [ 353906.266000002622604, 260067.456000000238419 ], [ 353904.361000001430511, 260068.090999998152256 ], [ 353901.291799999773502, 260069.572700001299381 ], [ 353898.434299997985363, 260071.054400000721216 ], [ 353895.047600001096725, 260073.065200001001358 ], [ 353892.084299996495247, 260075.499400001019239 ], [ 353889.438400000333786, 260077.510200001299381 ], [ 353887.463100001215935, 260079.297400001436472 ], [ 353964.129799999296665, 260117.072000000625849 ], [ 353978.71000000089407, 260109.380899999290705 ], [ 353990.021700002253056, 260106.729200001806021 ], [ 353989.999499998986721, 260103.866300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035800", "MAP": "D9-7238-T003", "PARCEL_NAM": "60-11", "ACRE": "1.46", "LONGITUDE": -64.97720732000001, "LATITUDE": 18.37092678, "OBJECTID_1": 293, "PARCEL_NO_": "101003035800", "Tax_Legal_": "60-11 ESTATE CARET BAY No.8 LITTLE NORTHSISE QTR.", "Name": "HARRINGTON, SCOTT & BILLI ORMS", "Address": "3801 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 249500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 381.39022058400002, "SHAPE_Area": 5855.76215357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353964.129799999296665, 260117.072000000625849 ], [ 353887.463100001215935, 260079.297400001436472 ], [ 353887.215899996459484, 260079.521099999547005 ], [ 353884.675899997353554, 260081.214400000870228 ], [ 353881.395099997520447, 260083.013599999248981 ], [ 353878.431699998676777, 260084.812699999660254 ], [ 353874.515900000929832, 260086.506099998950958 ], [ 353870.494199998676777, 260087.458599999547005 ], [ 353867.42509999871254, 260087.881900001317263 ], [ 353863.297600001096725, 260088.72859999909997 ], [ 353860.228399999439716, 260089.257800001651049 ], [ 353857.159199997782707, 260089.469399999827147 ], [ 353853.66669999808073, 260089.892799999564886 ], [ 353850.91499999910593, 260089.892799999564886 ], [ 353848.58669999986887, 260089.892799999564886 ], [ 353845.094200000166893, 260090.739399999380112 ], [ 353843.08330000191927, 260091.48030000180006 ], [ 353840.64919999986887, 260092.644400000572205 ], [ 353837.579999998211861, 260093.702799998223782 ], [ 353831.865000002086163, 260095.925299998372793 ], [ 353827.949100002646446, 260097.406899999827147 ], [ 353825.197499997913837, 260098.465300001204014 ], [ 353823.504100002348423, 260099.311900001019239 ], [ 353819.482500001788139, 260100.581900000572205 ], [ 353816.095799997448921, 260101.322799999266863 ], [ 353811.227399997413158, 260101.957800000905991 ], [ 353807.435900002717972, 260102.36769999936223 ], [ 353799.417499996721745, 260102.643100000917912 ], [ 353788.040399998426437, 260103.701400000602007 ], [ 353893.33389999717474, 260148.754900000989437 ], [ 353893.707299999892712, 260148.581799998879433 ], [ 353898.563199996948242, 260146.510600000619888 ], [ 353930.930699996650219, 260133.265599999576807 ], [ 353949.553199999034405, 260124.340999998152256 ], [ 353964.129799999296665, 260117.072000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101004010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97418856, "LATITUDE": 18.36741486, "OBJECTID_1": 345, "PARCEL_NO_": "101004010800", "Tax_Legal_": "CARET BAY 21 LT. NORTHSIDE", "Name": "KRAL SENIOR & JUNIOR FAMILY TRUST", "Address": "PO Box 304429", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 179900, "Improved_V": 282700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.99860908300002, "SHAPE_Area": 4390.7076211200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354258.259999997913837, 259720.181800000369549 ], [ 354178.1908999979496, 259692.066500000655651 ], [ 354169.733900003135204, 259702.361999999731779 ], [ 354145.557899996638298, 259731.793699998408556 ], [ 354180.137800000607967, 259743.110599998384714 ], [ 354242.114000000059605, 259763.393500000238419 ], [ 354256.967600002884865, 259723.668299999088049 ], [ 354258.259999997913837, 259720.181800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003032500", "MAP": "D9-1836-T81", "PARCEL_NAM": "22", "ACRE": ".41", "LONGITUDE": -64.97504582000001, "LATITUDE": 18.36700345, "OBJECTID_1": 263, "PARCEL_NO_": "101003032500", "Tax_Legal_": "22 CARET BAY (EASTERN PART) NO. 8 LITTLE NORTHSIDE QUARTER", "Name": "KREINER, JEFFREY M.", "Address": "P.O. BOX 2818", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.680521309, "SHAPE_Area": 1168.0063895000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354177.108499996364117, 259693.384300000965595 ], [ 354178.1908999979496, 259692.066500000655651 ], [ 354160.572599999606609, 259685.880100000649691 ], [ 354099.52419999986887, 259664.44370000064373 ], [ 354084.790700003504753, 259678.351700000464916 ], [ 354083.156499996781349, 259680.871399998664856 ], [ 354079.074600003659725, 259686.748599998652935 ], [ 354075.795000001788139, 259695.257399998605251 ], [ 354085.6554000005126, 259692.269099999219179 ], [ 354095.577399998903275, 259689.249299999326468 ], [ 354105.22860000282526, 259687.4087999984622 ], [ 354112.127700001001358, 259686.732400000095367 ], [ 354117.293099999427795, 259686.188700001686811 ], [ 354123.525700002908707, 259686.053199999034405 ], [ 354129.217299997806549, 259685.91440000012517 ], [ 354136.920100003480911, 259686.877199999988079 ], [ 354145.728200003504753, 259688.096799999475479 ], [ 354151.771499998867512, 259689.574099998921156 ], [ 354159.921400003135204, 259691.126400001347065 ], [ 354167.480700001120567, 259692.169100001454353 ], [ 354177.108499996364117, 259693.384300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003039900", "MAP": "D9-7238-T003", "PARCEL_NAM": "60-B", "ACRE": null, "LONGITUDE": -64.97765882, "LATITUDE": 18.37074118, "OBJECTID_1": 295, "PARCEL_NO_": "101003039900", "Tax_Legal_": "60-A & 60-B R.O.W. ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "BUSHFIELD, CHARLES W", "Address": "2594 S Kilmer St", "City": "LAKEWOOD", "State": "Colorado", "Zip": 80228, "Country": "United States", "Land_Value": 138400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.07996549000001, "SHAPE_Area": 399.57858684500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353887.215899996459484, 260079.521099999547005 ], [ 353887.039899997413158, 260074.747900001704693 ], [ 353884.962300002574921, 260076.627599999308586 ], [ 353882.778599999845028, 260078.083399999886751 ], [ 353879.565700002014637, 260079.845300000160933 ], [ 353876.748800002038479, 260081.555599998682737 ], [ 353873.359700001776218, 260083.021099999547005 ], [ 353869.821299999952316, 260083.859200000762939 ], [ 353866.806999996304512, 260084.274900000542402 ], [ 353862.619199998676777, 260085.13399999961257 ], [ 353859.790700003504753, 260085.621599998325109 ], [ 353856.813100002706051, 260085.826999999582767 ], [ 353853.445799998939037, 260086.235100001096725 ], [ 353848.149700000882149, 260086.235100001096725 ], [ 353844.02759999781847, 260087.234400000423193 ], [ 353841.659000001847744, 260088.107099998742342 ], [ 353839.259400002658367, 260089.254700001329184 ], [ 353836.320500001311302, 260090.268100000917912 ], [ 353830.554899998009205, 260092.510299999266863 ], [ 353826.645400002598763, 260093.989500001072884 ], [ 353823.719700001180172, 260095.114799998700619 ], [ 353822.126999996602535, 260095.911200001835823 ], [ 353818.538999997079372, 260097.044199999421835 ], [ 353815.467299997806549, 260097.7162000015378 ], [ 353810.794299997389317, 260098.325699999928474 ], [ 353807.17620000243187, 260098.71680000051856 ], [ 353799.185099996626377, 260098.991300001740456 ], [ 353788.144000001251698, 260100.018399998545647 ], [ 353783.311300002038479, 260099.293000001460314 ], [ 353781.701899997889996, 260102.749800000339746 ], [ 353781.757100000977516, 260102.758600000292063 ], [ 353788.040399998426437, 260103.701400000602007 ], [ 353799.417499996721745, 260102.643100000917912 ], [ 353807.435900002717972, 260102.36769999936223 ], [ 353811.227399997413158, 260101.957800000905991 ], [ 353816.095799997448921, 260101.322799999266863 ], [ 353819.482500001788139, 260100.581900000572205 ], [ 353823.504100002348423, 260099.311900001019239 ], [ 353825.197499997913837, 260098.465300001204014 ], [ 353827.949100002646446, 260097.406899999827147 ], [ 353831.865000002086163, 260095.925299998372793 ], [ 353837.579999998211861, 260093.702799998223782 ], [ 353840.64919999986887, 260092.644400000572205 ], [ 353843.08330000191927, 260091.48030000180006 ], [ 353845.094200000166893, 260090.739399999380112 ], [ 353848.58669999986887, 260089.892799999564886 ], [ 353850.91499999910593, 260089.892799999564886 ], [ 353853.66669999808073, 260089.892799999564886 ], [ 353857.159199997782707, 260089.469399999827147 ], [ 353860.228399999439716, 260089.257800001651049 ], [ 353863.297600001096725, 260088.72859999909997 ], [ 353867.42509999871254, 260087.881900001317263 ], [ 353870.494199998676777, 260087.458599999547005 ], [ 353874.515900000929832, 260086.506099998950958 ], [ 353878.431699998676777, 260084.812699999660254 ], [ 353881.395099997520447, 260083.013599999248981 ], [ 353884.675899997353554, 260081.214400000870228 ], [ 353887.215899996459484, 260079.521099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003030200", "MAP": "D9-7238-T003", "PARCEL_NAM": "60 REM", "ACRE": ".970", "LONGITUDE": -64.97722933, "LATITUDE": 18.37006408, "OBJECTID_1": 243, "PARCEL_NO_": "101003030200", "Tax_Legal_": "60 REM.ESTATE CARET BAY LT.NORTHSIDE", "Name": "WALLACE, DARRYL & LOURDES", "Address": "2222 Austin Lake Drive SE", "City": "Smyrna", "State": "Georgia", "Zip": 30082, "Country": "United States", "Land_Value": 178400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 367.98831629300003, "SHAPE_Area": 5275.01720561 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353954.619099996984005, 260020.880199998617172 ], [ 353965.702799998223782, 260015.496700000017881 ], [ 353969.552599996328354, 260017.730399999767542 ], [ 353969.033500000834465, 260014.731800001114607 ], [ 353969.859600000083447, 260012.416499998420477 ], [ 353936.044799998402596, 260006.229100000113249 ], [ 353888.544299997389317, 259997.396600000560284 ], [ 353878.87389999628067, 259996.684200000017881 ], [ 353835.905900001525879, 259993.849899999797344 ], [ 353824.071699999272823, 259993.069200001657009 ], [ 353806.990900002419949, 260028.1097999997437 ], [ 353817.701899997889996, 260030.173000000417233 ], [ 353926.696800000965595, 260045.628899998962879 ], [ 353927.404799997806549, 260044.415100000798702 ], [ 353928.633799999952316, 260042.05970000103116 ], [ 353930.082099996507168, 260039.274399999529123 ], [ 353931.641400001943111, 260036.824000000953674 ], [ 353933.01630000025034, 260034.624099999666214 ], [ 353935.704499997198582, 260032.447999998927116 ], [ 353938.733499996364117, 260029.96000000089407 ], [ 353943.029200002551079, 260026.800700001418591 ], [ 353948.284800000488758, 260024.311200000345707 ], [ 353954.619099996984005, 260020.880199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003039900", "MAP": "D9-7238-T003", "PARCEL_NAM": "60-A", "ACRE": null, "LONGITUDE": -64.97678603, "LATITUDE": 18.37031281, "OBJECTID_1": 295, "PARCEL_NO_": "101003039900", "Tax_Legal_": "60-A & 60-B R.O.W. ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "BUSHFIELD, CHARLES W", "Address": "2594 S Kilmer St", "City": "LAKEWOOD", "State": "Colorado", "Zip": 80228, "Country": "United States", "Land_Value": 138400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.16163874200001, "SHAPE_Area": 390.22030973 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353887.039899997413158, 260074.747900001704693 ], [ 353887.215899996459484, 260079.521099999547005 ], [ 353889.438400000333786, 260077.510200001299381 ], [ 353892.084299996495247, 260075.499400001019239 ], [ 353895.047600001096725, 260073.065200001001358 ], [ 353898.434299997985363, 260071.054400000721216 ], [ 353901.291799999773502, 260069.572700001299381 ], [ 353904.361000001430511, 260068.090999998152256 ], [ 353906.266000002622604, 260067.456000000238419 ], [ 353909.970100000500679, 260066.291900001466274 ], [ 353913.356799997389317, 260064.7043999992311 ], [ 353916.320200003683567, 260063.540199998766184 ], [ 353919.706799998879433, 260061.74100000038743 ], [ 353921.929300002753735, 260059.518500000238419 ], [ 353925.527699999511242, 260055.179299999028444 ], [ 353927.538500003516674, 260051.898499999195337 ], [ 353928.385200001299381, 260049.993500001728535 ], [ 353930.607699997723103, 260046.183499999344349 ], [ 353931.877700001001358, 260043.749299999326468 ], [ 353933.253499999642372, 260041.103500001132488 ], [ 353934.735200002789497, 260038.775199998170137 ], [ 353935.793499998748302, 260037.081799998879433 ], [ 353938.016000002622604, 260035.282600000500679 ], [ 353940.979400001466274, 260032.848499998450279 ], [ 353944.912900000810623, 260029.955699998885393 ], [ 353949.939900003373623, 260027.574400000274181 ], [ 353956.28999999910593, 260024.134799998253584 ], [ 353965.550399996340275, 260019.636900000274181 ], [ 353970.579599998891354, 260022.554900001734495 ], [ 353969.802000001072884, 260019.171000000089407 ], [ 353969.552599996328354, 260017.730399999767542 ], [ 353965.702799998223782, 260015.496700000017881 ], [ 353954.619099996984005, 260020.880199998617172 ], [ 353948.284800000488758, 260024.311200000345707 ], [ 353943.029200002551079, 260026.800700001418591 ], [ 353938.733499996364117, 260029.96000000089407 ], [ 353935.704499997198582, 260032.447999998927116 ], [ 353933.01630000025034, 260034.624099999666214 ], [ 353931.641400001943111, 260036.824000000953674 ], [ 353930.082099996507168, 260039.274399999529123 ], [ 353928.633799999952316, 260042.05970000103116 ], [ 353927.404799997806549, 260044.415100000798702 ], [ 353925.124499998986721, 260048.324200000613928 ], [ 353924.294100001454353, 260050.192699998617172 ], [ 353922.54559999704361, 260053.045499999076128 ], [ 353919.222599998116493, 260057.052600000053644 ], [ 353917.507500000298023, 260058.767700001597404 ], [ 353914.788500003516674, 260060.212200000882149 ], [ 353911.910400003194809, 260061.3429000005126 ], [ 353908.639700002968311, 260062.875999998301268 ], [ 353905.139200001955032, 260063.976199999451637 ], [ 353902.981899999082088, 260064.695300001651049 ], [ 353899.654600001871586, 260066.301600001752377 ], [ 353896.657300002872944, 260067.855700001120567 ], [ 353892.940999999642372, 260070.062300000339746 ], [ 353889.816100001335144, 260072.629200000315905 ], [ 353887.100599996745586, 260074.692899998277426 ], [ 353887.039899997413158, 260074.747900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004011400", "MAP": "D9-7567-T005", "PARCEL_NAM": "17-3", "ACRE": ".75", "LONGITUDE": -64.96786337, "LATITUDE": 18.36310697, "OBJECTID_1": 349, "PARCEL_NO_": "101004011400", "Tax_Legal_": "NELTJEBERG ESTATE 17-3 (CONSOLIDATED) No.6 LITTLE NORTHSIDE QTR.", "Name": "FRAGUELA, JIMMY & DENISE", "Address": "PO Box 304616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75600, "Improved_V": 397600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.88585595500001, "SHAPE_Area": 4214.9520174600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354915.917900003492832, 259282.402499999850988 ], [ 354918.336199998855591, 259233.222500000149012 ], [ 354904.648699998855591, 259230.788499999791384 ], [ 354891.086999997496605, 259226.686799999326468 ], [ 354846.053099997341633, 259232.456199999898672 ], [ 354828.943400003015995, 259236.689599998295307 ], [ 354831.765600003302097, 259243.039599999785423 ], [ 354848.666599996387959, 259285.063700001686811 ], [ 354915.917900003492832, 259282.402499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103035200", "MAP": "D9-5057-T91", "PARCEL_NAM": "2C", "ACRE": "1.0", "LONGITUDE": -64.96477662, "LATITUDE": 18.36927663, "OBJECTID_1": 486, "PARCEL_NO_": "101103035200", "Tax_Legal_": "NELTJEBERG 2C LITTLE NORTHSIDE QTR", "Name": "KOPKO, MARY", "Address": "4901 S Ellis Ave", "City": "Chicago", "State": "Illinois", "Zip": 60615, "Country": "United States", "Land_Value": 120100, "Improved_V": 894600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.60447572499999, "SHAPE_Area": 3644.9906650399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355248.728000000119209, 259926.602299999445677 ], [ 355141.523400001227856, 259920.455299999564886 ], [ 355145.476800002157688, 259925.779699999839067 ], [ 355149.44539999961853, 259933.200399998575449 ], [ 355151.815800003707409, 259938.919399999082088 ], [ 355153.399700000882149, 259942.309799998998642 ], [ 355154.996100001037121, 259944.222699999809265 ], [ 355158.941399998962879, 259954.387499999254942 ], [ 355162.080300003290176, 259964.545699998736382 ], [ 355162.983999997377396, 259968.797899998724461 ], [ 355251.779700003564358, 259950.605099998414516 ], [ 355255.031000003218651, 259938.919799998402596 ], [ 355258.368400000035763, 259926.920800000429153 ], [ 355248.728000000119209, 259926.602299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103010500", "MAP": "B9-488-T78", "PARCEL_NAM": "18-C", "ACRE": null, "LONGITUDE": -64.96153811000001, "LATITUDE": 18.36712573, "OBJECTID_1": 402, "PARCEL_NO_": "101103010500", "Tax_Legal_": "DOROTHEA 17-1&18C LT. NORTHSIDE", "Name": "Y & S CORPORATION, INC.", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 427100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 434.15166612399997, "SHAPE_Area": 5278.16980427 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355536.050399996340275, 259705.002900000661612 ], [ 355570.745700001716614, 259662.4662000015378 ], [ 355532.824699997901917, 259607.665600001811981 ], [ 355524.527800001204014, 259635.039799999445677 ], [ 355525.553700000047684, 259694.381799999624491 ], [ 355527.228699997067451, 259791.271200001239777 ], [ 355549.818099997937679, 259789.978399999439716 ], [ 355572.612099997699261, 259741.997999999672174 ], [ 355536.050399996340275, 259705.002900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103010600", "MAP": "B9-312-T70", "PARCEL_NAM": "17C", "ACRE": null, "LONGITUDE": -64.96222658000001, "LATITUDE": 18.36596825, "OBJECTID_1": 403, "PARCEL_NO_": "101103010600", "Tax_Legal_": "DOROTHEA 17C LT. NORTHSIDE QTR.", "Name": "SPREAD EAGLE PARADISE HOLDING", "Address": "PO Box 6880", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 227800, "Improved_V": 206600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.57455907799999, "SHAPE_Area": 4800.0550783400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355467.370600000023842, 259529.236299999058247 ], [ 355416.011200003325939, 259583.541000001132488 ], [ 355455.161100000143051, 259623.154899999499321 ], [ 355485.477099999785423, 259580.89130000025034 ], [ 355523.145400002598763, 259608.008499998599291 ], [ 355522.675300002098083, 259568.530200000852346 ], [ 355522.779600001871586, 259556.287599999457598 ], [ 355487.310900002717972, 259554.941799998283386 ], [ 355480.066600002348423, 259553.404899999499321 ], [ 355474.453000001609325, 259549.770399998873472 ], [ 355469.667300000786781, 259543.609499998390675 ], [ 355468.108599998056889, 259537.263900000602007 ], [ 355467.370600000023842, 259529.236299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103010600", "MAP": "B9-312-T70", "PARCEL_NAM": "17C", "ACRE": null, "LONGITUDE": -64.96178174000001, "LATITUDE": 18.36677607, "OBJECTID_1": 403, "PARCEL_NO_": "101103010600", "Tax_Legal_": "DOROTHEA 17C LT. NORTHSIDE QTR.", "Name": "SPREAD EAGLE PARADISE HOLDING", "Address": "PO Box 6880", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 227800, "Improved_V": 206600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.211256658, "SHAPE_Area": 683.48616971599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355501.055200003087521, 259669.592999998480082 ], [ 355525.553700000047684, 259694.381799999624491 ], [ 355524.527800001204014, 259635.039799999445677 ], [ 355522.872000001370907, 259640.092500001192093 ], [ 355501.055200003087521, 259669.592999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101103010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96169153, "LATITUDE": 18.36629738, "OBJECTID_1": 402, "PARCEL_NO_": "101103010500", "Tax_Legal_": "DOROTHEA 17-1&18C LT. NORTHSIDE", "Name": "Y & S CORPORATION, INC.", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 427100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.901312751999995, "SHAPE_Area": 171.96295066600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355532.854900002479553, 259604.116500001400709 ], [ 355523.087399996817112, 259603.143199998885393 ], [ 355523.145400002598763, 259608.008499998599291 ], [ 355524.527800001204014, 259635.039799999445677 ], [ 355532.824699997901917, 259607.665600001811981 ], [ 355532.854900002479553, 259604.116500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96160347, "LATITUDE": 18.36872648, "OBJECTID_1": 401, "PARCEL_NO_": "101103010400", "Tax_Legal_": "DOROTHEA REM 17-2 LT NORTHSIDE", "Name": "Y & S COORPORATION", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 246500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.991714422, "SHAPE_Area": 577.236325083 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355527.010200001299381, 259855.786200001835823 ], [ 355529.120800003409386, 259891.527699999511242 ], [ 355539.102099999785423, 259929.906100001186132 ], [ 355538.760300002992153, 259855.141800001263618 ], [ 355529.099200002849102, 259855.670000001788139 ], [ 355527.010200001299381, 259855.786200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103010700", "MAP": "D9-3308-T86", "PARCEL_NAM": "17-2-A", "ACRE": "1.9", "LONGITUDE": -64.96201245, "LATITUDE": 18.36895006, "OBJECTID_1": 404, "PARCEL_NO_": "101103010700", "Tax_Legal_": "DOROTHEA 17-2-A LT. NORTHSIDE", "Name": "R & F CONDOMINIUMS, INC.", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4660000, "Improved_V": 918600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 365.74360209500003, "SHAPE_Area": 7674.77108383 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355539.102099999785423, 259929.906100001186132 ], [ 355529.120800003409386, 259891.527699999511242 ], [ 355527.010200001299381, 259855.786200001835823 ], [ 355486.744499996304512, 259858.024700000882149 ], [ 355463.305600002408028, 259863.426600001752377 ], [ 355446.769100002944469, 259888.892799999564886 ], [ 355447.761200003325939, 259946.770599998533726 ], [ 355452.391500003635883, 259959.338300000876188 ], [ 355483.149300001561642, 259945.778400000184774 ], [ 355486.125900000333786, 259959.668999999761581 ], [ 355511.922799997031689, 259954.377300001680851 ], [ 355511.922799997031689, 259943.793999999761581 ], [ 355539.157999999821186, 259942.142799999564886 ], [ 355539.102099999785423, 259929.906100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701011900", "MAP": "D9-212-T59", "PARCEL_NAM": "16-F", "ACRE": "1.00", "LONGITUDE": -64.95972467, "LATITUDE": 18.36412716, "OBJECTID_1": 2792, "PARCEL_NO_": "102701011900", "Tax_Legal_": "16F-REM & 11B DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "WILLIAMS, ALVIN & CELIA J. JACKSON-WILLIAMS", "Address": "PO Box 306801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124000, "Improved_V": 188400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.711473727, "SHAPE_Area": 4576.5628148799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355741.612499997019768, 259330.94200000166893 ], [ 355738.998499996960163, 259328.158700000494719 ], [ 355687.5371999964118, 259347.177499998360872 ], [ 355709.038099996745586, 259368.461100000888109 ], [ 355713.017599999904633, 259374.61540000140667 ], [ 355715.375399999320507, 259381.811900001019239 ], [ 355714.477300003170967, 259392.570300001651049 ], [ 355711.17119999974966, 259402.042500000447035 ], [ 355707.628799997270107, 259406.195900000631809 ], [ 355774.1925999969244, 259422.436799999326468 ], [ 355773.255400002002716, 259402.761700000613928 ], [ 355770.159599997103214, 259387.537599999457598 ], [ 355767.015299998223782, 259378.012699998915195 ], [ 355762.292499996721745, 259364.464000001549721 ], [ 355755.15259999781847, 259350.684500001370907 ], [ 355741.612499997019768, 259330.94200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-1995-T82", "PARCEL_NAM": "11-10", "ACRE": "6,488 sq ft", "LONGITUDE": -64.96043005, "LATITUDE": 18.36386582, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.097718075, "SHAPE_Area": 459.87374293800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355652.770999997854233, 259345.503899998962879 ], [ 355649.284800000488758, 259361.314599998295307 ], [ 355657.159599997103214, 259358.40430000051856 ], [ 355678.694200001657009, 259350.445700000971556 ], [ 355672.156400002539158, 259343.672400001436472 ], [ 355666.612899996340275, 259331.805799998342991 ], [ 355665.054200001060963, 259325.460200000554323 ], [ 355652.770999997854233, 259345.503899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103021400", "MAP": "D9-212-T59", "PARCEL_NAM": "16-G", "ACRE": "1.02", "LONGITUDE": -64.95978674, "LATITUDE": 18.36466319, "OBJECTID_1": 430, "PARCEL_NO_": "101103021400", "Tax_Legal_": "DOROTHEA 16G LT. NORTHSIDE", "Name": "ALANA LEE MAWSON REVOCABLE LIVING TRUST", "Address": "101 W Lemon St", "City": "Lady Lake", "State": "Florida", "Zip": 32159, "Country": "United States", "Land_Value": 121700, "Improved_V": 201100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.396903788, "SHAPE_Area": 3310.4904673699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355774.1925999969244, 259422.436799999326468 ], [ 355707.628799997270107, 259406.195900000631809 ], [ 355689.17960000038147, 259427.826999999582767 ], [ 355682.758599996566772, 259435.228100001811981 ], [ 355734.536200001835823, 259468.49269999936223 ], [ 355738.845499999821186, 259466.441399998962879 ], [ 355751.827399998903275, 259457.04839999973774 ], [ 355763.221799999475479, 259444.687199998646975 ], [ 355774.623499996960163, 259431.481600001454353 ], [ 355774.1925999969244, 259422.436799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103025000", "MAP": "D9-6592-T99", "PARCEL_NAM": "18C-1", "ACRE": ".501", "LONGITUDE": -64.96129785, "LATITUDE": 18.36708826, "OBJECTID_1": 438, "PARCEL_NO_": "101103025000", "Tax_Legal_": "DOROTHEA 18C-1 LT. NORTHSIDE", "Name": "BEDMINISTER, JOHN", "Address": "PO Box 502641", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.91959503499999, "SHAPE_Area": 2380.0347362900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355575.504000000655651, 259669.342500001192093 ], [ 355570.745700001716614, 259662.4662000015378 ], [ 355536.050399996340275, 259705.002900000661612 ], [ 355572.612099997699261, 259741.997999999672174 ], [ 355583.482900001108646, 259719.11540000140667 ], [ 355590.829599998891354, 259708.620799999684095 ], [ 355595.710600003600121, 259703.594500001519918 ], [ 355598.053099997341633, 259701.928599998354912 ], [ 355575.504000000655651, 259669.342500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9612939, "LATITUDE": 18.36665075, "OBJECTID_1": 402, "PARCEL_NO_": "101103010500", "Tax_Legal_": "DOROTHEA 17-1&18C LT. NORTHSIDE", "Name": "Y & S CORPORATION, INC.", "Address": "PO Box 9768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 427100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.95427438, "SHAPE_Area": 776.74341581600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355532.824699997901917, 259607.665600001811981 ], [ 355598.053099997341633, 259701.928599998354912 ], [ 355603.992399998009205, 259697.704700000584126 ], [ 355537.943300001323223, 259604.304900001734495 ], [ 355532.854900002479553, 259604.116500001400709 ], [ 355532.824699997901917, 259607.665600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602025400", "MAP": "D9-5281-T92", "PARCEL_NAM": "21-A", "ACRE": ".52", "LONGITUDE": -64.96849284, "LATITUDE": 18.36279688, "OBJECTID_1": 2452, "PARCEL_NO_": "102602025400", "Tax_Legal_": "NELTEBERG 21-A #6 LT.NORTHSIDE QTR.", "Name": "JACOBS, JANET", "Address": "246 Valentine Ln", "City": "Yonkers", "State": "New York", "Zip": 10705, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.07792010099999, "SHAPE_Area": 2070.5688292499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354864.516500003635883, 259208.92850000038743 ], [ 354852.276699997484684, 259212.011999998241663 ], [ 354843.01630000025034, 259210.689100001007318 ], [ 354837.195500001311302, 259204.339099999517202 ], [ 354830.051700003445148, 259199.841099999845028 ], [ 354773.32039999961853, 259218.5456000007689 ], [ 354769.956699997186661, 259234.119100000709295 ], [ 354772.187700003385544, 259244.615800000727177 ], [ 354867.21339999884367, 259216.919900000095367 ], [ 354865.277800001204014, 259214.212000001221895 ], [ 354864.516500003635883, 259208.92850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103032300", "MAP": "D9-7266-T003", "PARCEL_NAM": "15-1", "ACRE": ".609", "LONGITUDE": -64.96638965, "LATITUDE": 18.36419931, "OBJECTID_1": 459, "PARCEL_NO_": "101103032300", "Tax_Legal_": "15-1 ESTATE NELTJBERG,EAST PART No.6 LT.NORTHSIDE QTR.", "Name": "PEPPER, LIAM G. & BIC H. LEU", "Address": "8 Sioux Ln", "City": "West Hartford", "State": "Connecticut", "Zip": 6117, "Country": "United States", "Land_Value": 63900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.40744934899999, "SHAPE_Area": 2042.3209631499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354994.193400003015995, 259395.913899999111891 ], [ 355032.598499998450279, 259404.080800000578165 ], [ 355072.895400002598763, 259358.821600001305342 ], [ 355025.35530000180006, 259354.63289999961853 ], [ 355022.079700000584126, 259360.516699999570847 ], [ 355000.876400001347065, 259388.418600000441074 ], [ 354994.193400003015995, 259395.913899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101103039900", "MAP": "A9-394-T91", "PARCEL_NAM": "36A & B", "ACRE": null, "LONGITUDE": -64.96635008, "LATITUDE": 18.36488573, "OBJECTID_1": 492, "PARCEL_NO_": "101103039900", "Tax_Legal_": "NELTJEBERG 36A&B/EAST PT ROADS", "Name": "MARSH, WARREN S., ALVA. A, JEWEL A AND OTHERS", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 50600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 5709.9837651400003, "SHAPE_Area": 27379.092355799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354979.864399999380112, 259015.244300000369549 ], [ 354970.167099997401237, 259017.698100000619888 ], [ 354971.425899997353554, 259025.333000000566244 ], [ 354972.467399999499321, 259031.649000000208616 ], [ 354973.703599996864796, 259033.361900001764297 ], [ 354976.452200002968311, 259037.170099999755621 ], [ 354979.157700002193451, 259040.412099998444319 ], [ 354981.241499997675419, 259042.9087999984622 ], [ 354984.450699999928474, 259044.622999999672174 ], [ 354987.881700001657009, 259045.894999999552965 ], [ 354990.886699996888638, 259046.576299998909235 ], [ 354993.140000000596046, 259046.349199999123812 ], [ 354995.570000000298023, 259046.104299999773502 ], [ 354998.797499999403954, 259045.778900001198053 ], [ 355000.571400001645088, 259045.600099999457598 ], [ 355006.274800002574921, 259042.001800000667572 ], [ 355009.489399999380112, 259039.973600000143051 ], [ 355013.971100002527237, 259037.093299999833107 ], [ 355015.975900001823902, 259035.804800000041723 ], [ 355022.440800003707409, 259034.168999999761581 ], [ 355026.715400002896786, 259034.826499998569489 ], [ 355029.68860000371933, 259035.2837999984622 ], [ 355032.203000001609325, 259037.292500000447035 ], [ 355035.295000001788139, 259039.762600000947714 ], [ 355036.787600003182888, 259042.822900000959635 ], [ 355037.672600001096725, 259044.637200001627207 ], [ 355037.173100002110004, 259049.102600000798702 ], [ 355036.799699999392033, 259052.440600000321865 ], [ 355032.699799999594688, 259060.428599998354912 ], [ 355027.942100003361702, 259065.450199998915195 ], [ 355026.701800003647804, 259066.759399998933077 ], [ 355024.563000001013279, 259069.016800001263618 ], [ 355018.966700002551079, 259073.172800000756979 ], [ 355015.299300000071526, 259075.89640000090003 ], [ 355010.782200001180172, 259079.250999998301268 ], [ 355007.176899999380112, 259081.928300000727177 ], [ 355002.994800001382828, 259085.034099999815226 ], [ 354998.614200003445148, 259088.287300001829863 ], [ 354992.393700003623962, 259092.906800001859665 ], [ 354988.856899999082088, 259095.533399999141693 ], [ 354984.791199997067451, 259099.510899998247623 ], [ 354981.766400001943111, 259103.733600001782179 ], [ 354979.078599996864796, 259107.485700000077486 ], [ 354977.515100002288818, 259110.788899999111891 ], [ 354975.266599997878075, 259116.467799998819828 ], [ 354974.112999998033047, 259120.935899998992682 ], [ 354972.149599999189377, 259128.540899999439716 ], [ 354970.790700003504753, 259133.80460000038147 ], [ 354969.729800000786781, 259136.936500001698732 ], [ 354966.654899999499321, 259146.014199998229742 ], [ 354963.715800002217293, 259150.629000000655651 ], [ 354961.828599996864796, 259153.659099999815226 ], [ 354958.48030000180006, 259159.035100001841784 ], [ 354956.813500002026558, 259160.879999998956919 ], [ 354953.882100000977516, 259164.124699998646975 ], [ 354950.339800000190735, 259168.045499999076128 ], [ 354943.687600001692772, 259168.281199999153614 ], [ 354935.858199998736382, 259168.558600001037121 ], [ 354930.135399997234344, 259168.761399999260902 ], [ 354924.420100003480911, 259168.963899999856949 ], [ 354920.403399996459484, 259169.106199998408556 ], [ 354916.462099999189377, 259169.245799999684095 ], [ 354912.843999996781349, 259168.439800001680851 ], [ 354907.608900003135204, 259167.273499999195337 ], [ 354905.408500000834465, 259166.276999998837709 ], [ 354902.647900000214577, 259165.026700001209974 ], [ 354897.166400000452995, 259162.543999999761581 ], [ 354894.844400003552437, 259160.791700001806021 ], [ 354892.358999997377396, 259158.91609999909997 ], [ 354892.382399998605251, 259156.172100000083447 ], [ 354894.011200003325939, 259154.285599999129772 ], [ 354889.214699998497963, 259149.391100000590086 ], [ 354886.786799997091293, 259150.426699999719858 ], [ 354883.561499997973442, 259150.400299999862909 ], [ 354880.347099997103214, 259149.107500001788139 ], [ 354878.748800002038479, 259147.405600000172853 ], [ 354871.452500000596046, 259151.989999998360872 ], [ 354873.108800001442432, 259153.879900000989437 ], [ 354874.985500000417233, 259156.021299999207258 ], [ 354877.042700000107288, 259158.368500001728535 ], [ 354879.990199998021126, 259160.723200000822544 ], [ 354882.882500000298023, 259163.033900000154972 ], [ 354885.929999999701977, 259165.468499999493361 ], [ 354889.857400000095367, 259168.605900000780821 ], [ 354892.135300002992153, 259169.655600000172853 ], [ 354895.586199998855591, 259171.245799999684095 ], [ 354901.024300001561642, 259173.7516999989748 ], [ 354904.31530000269413, 259175.268100000917912 ], [ 354910.259800001978874, 259176.876600001007318 ], [ 354915.420100003480911, 259177.737199999392033 ], [ 354918.436800003051758, 259178.025400001555681 ], [ 354922.27250000089407, 259178.391699999570847 ], [ 354926.863300003111362, 259178.830200001597404 ], [ 354928.466899998486042, 259179.898800000548363 ], [ 354928.434500001370907, 259183.69819999858737 ], [ 354926.061899997293949, 259185.257199998944998 ], [ 354924.4949000030756, 259186.286800000816584 ], [ 354922.336499996483326, 259187.704999998211861 ], [ 354919.836000002920628, 259189.348000001162291 ], [ 354915.907799996435642, 259191.929099999368191 ], [ 354913.838200002908707, 259193.289000000804663 ], [ 354908.809299997985363, 259195.477600000798702 ], [ 354903.560300000011921, 259197.188799999654293 ], [ 354895.246200002729893, 259198.625300001353025 ], [ 354891.215800002217293, 259198.304400000721216 ], [ 354885.797399997711182, 259197.872900001704693 ], [ 354881.380400002002716, 259197.521200001239777 ], [ 354877.518200002610683, 259197.213599998503923 ], [ 354874.363799996674061, 259198.31980000063777 ], [ 354871.047899998724461, 259199.482700001448393 ], [ 354866.985699996352196, 259203.038100000470877 ], [ 354865.827500000596046, 259205.800900001078844 ], [ 354864.516500003635883, 259208.92850000038743 ], [ 354864.839199997484684, 259211.168600000441074 ], [ 354865.277800001204014, 259214.212000001221895 ], [ 354867.21339999884367, 259216.919900000095367 ], [ 354868.465300001204014, 259218.671100001782179 ], [ 354871.328299999237061, 259219.885600000619888 ], [ 354878.106899999082088, 259222.760800000280142 ], [ 354881.480400003492832, 259223.781199999153614 ], [ 354885.904799997806549, 259225.11939999833703 ], [ 354891.086999997496605, 259226.686799999326468 ], [ 354894.077200002968311, 259227.591099999845028 ], [ 354897.72580000013113, 259228.694699998944998 ], [ 354901.897699996829033, 259229.956500001251698 ], [ 354904.648699998855591, 259230.788499999791384 ], [ 354909.138800002634525, 259231.587000001221895 ], [ 354913.388400003314018, 259232.342700000852346 ], [ 354918.336199998855591, 259233.222500000149012 ], [ 354925.659599997103214, 259233.175999999046326 ], [ 354934.1233000010252, 259233.12220000103116 ], [ 354941.953299999237061, 259233.072399999946356 ], [ 354947.366999998688698, 259233.037999998778105 ], [ 354953.982199996709824, 259233.785500001162291 ], [ 354958.44200000166893, 259234.289500001817942 ], [ 354965.130000002682209, 259235.045200001448393 ], [ 354970.776500001549721, 259235.683200001716614 ], [ 354975.562799997627735, 259236.223999999463558 ], [ 354982.372000001370907, 259235.92339999973774 ], [ 354988.95830000191927, 259235.632599998265505 ], [ 354993.928099997341633, 259235.012899998575449 ], [ 355000.220600001513958, 259233.6064000017941 ], [ 355005.174699999392033, 259232.499000001698732 ], [ 355012.031300000846386, 259230.966400001198053 ], [ 355017.588200002908707, 259229.724399998784065 ], [ 355023.749899998307228, 259228.347100000828505 ], [ 355028.656900003552437, 259227.250300001353025 ], [ 355034.515299998223782, 259225.940799999982119 ], [ 355037.193400003015995, 259225.345300000160933 ], [ 355040.353399999439716, 259224.642700001597404 ], [ 355045.911399997770786, 259223.406800001859665 ], [ 355048.249600000679493, 259222.886799998581409 ], [ 355052.718000002205372, 259222.4983000010252 ], [ 355056.746100001037121, 259222.14809999987483 ], [ 355061.998000003397465, 259221.691500000655651 ], [ 355066.002899996936321, 259221.343299999833107 ], [ 355071.441100001335144, 259220.250900000333786 ], [ 355076.972800001502037, 259218.549699999392033 ], [ 355080.648900002241135, 259217.061299998313189 ], [ 355083.790299996733665, 259215.78940000012517 ], [ 355087.414899997413158, 259212.913199998438358 ], [ 355090.160800002515316, 259210.734200000762939 ], [ 355091.791500002145767, 259209.44029999896884 ], [ 355093.532600000500679, 259208.058600001037121 ], [ 355099.968699999153614, 259209.80009999871254 ], [ 355101.556100003421307, 259212.768399998545647 ], [ 355100.713899999856949, 259216.983399998396635 ], [ 355099.195900000631809, 259219.089899998158216 ], [ 355096.866200000047684, 259222.323100000619888 ], [ 355094.018200002610683, 259226.275299999862909 ], [ 355090.696299999952316, 259230.885299999266863 ], [ 355085.516800001263618, 259238.073100000619888 ], [ 355080.726199999451637, 259244.721400000154972 ], [ 355075.71679999679327, 259251.673200000077486 ], [ 355070.499200001358986, 259258.913899999111891 ], [ 355068.743699997663498, 259261.350000001490116 ], [ 355065.795400001108646, 259265.441599998623133 ], [ 355063.565999999642372, 259268.535399999469519 ], [ 355061.119599997997284, 259271.930399999022484 ], [ 355057.465000003576279, 259277.002099998295307 ], [ 355053.691299997270107, 259282.227899998426437 ], [ 355048.662799999117851, 259289.191300000995398 ], [ 355046.857100002467632, 259291.691899999976158 ], [ 355045.407499998807907, 259294.589600000530481 ], [ 355043.374600000679493, 259298.653200000524521 ], [ 355041.680600002408028, 259302.03940000012517 ], [ 355038.250200003385544, 259308.896600000560284 ], [ 355033.633900001645088, 259318.124400001019239 ], [ 355031.392700001597404, 259322.604400001466274 ], [ 355027.450599998235703, 259330.484499998390675 ], [ 355024.10980000346899, 259336.850699998438358 ], [ 355023.071199998259544, 259338.7820999994874 ], [ 355020.982699997723103, 259340.514299999922514 ], [ 355017.45889999717474, 259343.436900001019239 ], [ 355015.762299999594688, 259344.844000000506639 ], [ 355010.292700000107288, 259346.361600000411272 ], [ 355004.943099997937679, 259347.846000000834465 ], [ 354996.055699996650219, 259350.311900001019239 ], [ 354989.897299997508526, 259352.020599998533726 ], [ 354985.510600000619888, 259353.986699998378754 ], [ 354978.569799996912479, 259357.097500000149012 ], [ 354972.546800002455711, 259359.796999998390675 ], [ 354965.614399999380112, 259362.798700001090765 ], [ 354961.582900002598763, 259362.765700001269579 ], [ 354956.764799997210503, 259360.40430000051856 ], [ 354954.652400001883507, 259358.57660000026226 ], [ 354950.361000001430511, 259354.863400001078844 ], [ 354946.029899999499321, 259352.978799998760223 ], [ 354941.658100001513958, 259351.128299999982119 ], [ 354939.401399999856949, 259350.197799999266863 ], [ 354935.548299998044968, 259348.609000001102686 ], [ 354931.616200000047684, 259347.484299998730421 ], [ 354926.997100003063679, 259346.805500000715256 ], [ 354922.554700002074242, 259346.152699999511242 ], [ 354919.796700000762939, 259345.747400000691414 ], [ 354915.222800001502037, 259344.457600001245737 ], [ 354908.347300000488758, 259342.5185999982059 ], [ 354901.294699996709824, 259340.529699999839067 ], [ 354895.761200003325939, 259340.339499998837709 ], [ 354885.159400001168251, 259341.453099999576807 ], [ 354881.177599996328354, 259342.700100000947714 ], [ 354871.75110000371933, 259346.173500001430511 ], [ 354866.144100002944469, 259348.938400000333786 ], [ 354857.316100001335144, 259353.291700001806021 ], [ 354853.5945999994874, 259355.126899998635054 ], [ 354848.214500002563, 259360.051500000059605 ], [ 354845.07320000231266, 259363.867499999701977 ], [ 354843.32209999859333, 259366.83500000089407 ], [ 354842.189300000667572, 259368.754700001329184 ], [ 354840.078400000929832, 259380.827500000596046 ], [ 354838.798600003123283, 259388.14750000089407 ], [ 354835.566200003027916, 259388.965399999171495 ], [ 354835.497800000011921, 259396.986400000751019 ], [ 354837.106899999082088, 259397.421799998730421 ], [ 354839.498800002038479, 259400.607799999415874 ], [ 354839.792499996721745, 259402.732200000435114 ], [ 354840.258400000631809, 259406.102400001138449 ], [ 354849.129600003361702, 259405.963899999856949 ], [ 354849.207400001585484, 259403.616700001060963 ], [ 354849.333700001239777, 259399.8108000010252 ], [ 354849.410599999129772, 259397.49210000038147 ], [ 354849.647299997508526, 259390.3581000007689 ], [ 354849.781400002539158, 259386.314100001007318 ], [ 354849.880500003695488, 259383.3260000012815 ], [ 354849.958599999547005, 259380.972100000828505 ], [ 354850.000500001013279, 259379.710499998182058 ], [ 354850.112499997019768, 259376.334600001573563 ], [ 354850.214699998497963, 259373.253299999982119 ], [ 354852.040799997746944, 259370.158700000494719 ], [ 354854.305600002408028, 259366.320700000971556 ], [ 354857.249899998307228, 259364.708200000226498 ], [ 354858.909199997782707, 259363.799400001764297 ], [ 354863.619599997997284, 259361.2195999994874 ], [ 354866.628200002014637, 259359.571899998933077 ], [ 354871.51690000295639, 259356.894400000572205 ], [ 354875.176700003445148, 259354.890000000596046 ], [ 354878.609999999403954, 259353.00959999859333 ], [ 354882.027800001204014, 259352.092399999499321 ], [ 354885.702299997210503, 259351.106300000101328 ], [ 354889.126400001347065, 259350.187399998307228 ], [ 354892.3496999964118, 259349.322399999946356 ], [ 354897.076800003647804, 259349.551600001752377 ], [ 354902.828199997544289, 259349.830299999564886 ], [ 354906.2787000015378, 259351.023400001227856 ], [ 354910.401000000536442, 259352.448699999600649 ], [ 354914.646899998188019, 259353.916799999773502 ], [ 354919.712200000882149, 259355.668099999427795 ], [ 354925.87950000166893, 259356.324599999934435 ], [ 354930.296999998390675, 259356.794799998402596 ], [ 354932.602399997413158, 259357.040100000798702 ], [ 354936.80179999768734, 259358.729200001806021 ], [ 354940.156599998474121, 259360.078499998897314 ], [ 354943.853000000119209, 259361.565200001001358 ], [ 354946.204999998211861, 259363.319400001317263 ], [ 354947.859399996697903, 259364.553300000727177 ], [ 354948.653099998831749, 259366.037399999797344 ], [ 354952.194300003349781, 259368.24100000038743 ], [ 354955.87219999730587, 259370.529500000178814 ], [ 354957.48759999871254, 259371.051600001752377 ], [ 354959.892899997532368, 259371.828899998217821 ], [ 354964.284199997782707, 259372.056600000709295 ], [ 354967.773800000548363, 259371.388599999248981 ], [ 354971.2871999964118, 259370.5912000015378 ], [ 354976.957299999892712, 259368.265599999576807 ], [ 354980.201499998569489, 259366.717199999839067 ], [ 354986.61540000140667, 259363.655900001525879 ], [ 354990.20440000295639, 259361.942899998277426 ], [ 354994.130300000309944, 259360.069099999964237 ], [ 354996.288500003516674, 259359.039000000804663 ], [ 355000.355400003492832, 259358.222100000828505 ], [ 355004.36599999666214, 259357.416400000452995 ], [ 355006.777699999511242, 259358.280499998480082 ], [ 355007.103299997746944, 259361.024399999529123 ], [ 355007.530100002884865, 259364.619500000029802 ], [ 355006.082000002264977, 259366.453699998557568 ], [ 355004.402400001883507, 259368.581300001591444 ], [ 355001.617600001394749, 259372.108800001442432 ], [ 354998.979000002145767, 259375.451099999248981 ], [ 354993.609700001776218, 259382.252300001680851 ], [ 354989.795400001108646, 259387.083799999207258 ], [ 354986.335799999535084, 259391.465999998152256 ], [ 354984.306100003421307, 259393.242499999701977 ], [ 354981.129600003361702, 259396.022700000554323 ], [ 354977.938199996948242, 259398.815900001674891 ], [ 354974.461999997496605, 259401.858399998396635 ], [ 354970.087300002574921, 259405.687300000339746 ], [ 354964.627400003373623, 259408.842799998819828 ], [ 354956.305399999022484, 259413.652300000190735 ], [ 354952.232400000095367, 259416.00620000064373 ], [ 354947.397299997508526, 259418.800500001758337 ], [ 354943.784800000488758, 259421.433800000697374 ], [ 354940.300800003111362, 259423.973299998790026 ], [ 354937.660400003194809, 259425.897999998182058 ], [ 354934.636100001633167, 259428.901200000196695 ], [ 354931.967600002884865, 259431.550999999046326 ], [ 354929.509099997580051, 259436.174899999052286 ], [ 354928.67230000346899, 259439.756599999964237 ], [ 354929.596600003540516, 259443.953099999576807 ], [ 354930.174599997699261, 259446.577399998903275 ], [ 354931.001299999654293, 259450.330400001257658 ], [ 354932.58330000191927, 259453.93189999833703 ], [ 354933.986400000751019, 259455.379299998283386 ], [ 354936.185199998319149, 259457.647300001233816 ], [ 354938.978100001811981, 259460.528099998831749 ], [ 354942.971900001168251, 259464.99379999935627 ], [ 354944.557499997317791, 259468.173200000077486 ], [ 354944.149700000882149, 259471.909499999135733 ], [ 354943.682899996638298, 259476.187600001692772 ], [ 354940.649099998176098, 259479.357599999755621 ], [ 354937.021099999547005, 259483.148400001227856 ], [ 354934.133299998939037, 259486.165800001472235 ], [ 354929.851499997079372, 259490.639800000935793 ], [ 354928.814300000667572, 259492.634300000965595 ], [ 354926.572300001978874, 259496.945799998939037 ], [ 354925.713899999856949, 259503.060499999672174 ], [ 354923.276900000870228, 259505.151500001549721 ], [ 354920.306599996984005, 259505.541499998420477 ], [ 354915.176100000739098, 259506.214999999850988 ], [ 354908.60980000346899, 259507.471700001507998 ], [ 354902.906499996781349, 259509.100600000470877 ], [ 354898.234499998390675, 259510.434900000691414 ], [ 354892.377599999308586, 259513.241799999028444 ], [ 354888.296499997377396, 259515.197700001299381 ], [ 354884.028899997472763, 259517.242899999022484 ], [ 354879.612000003457069, 259519.359600000083447 ], [ 354874.221699997782707, 259521.004399999976158 ], [ 354869.489000000059605, 259522.448499999940395 ], [ 354865.427100002765656, 259523.687899999320507 ], [ 354859.400200001895428, 259525.526900000870228 ], [ 354854.358000002801418, 259527.010200001299381 ], [ 354848.387599997222424, 259528.766600001603365 ], [ 354844.040700003504753, 259530.045299999415874 ], [ 354840.819099999964237, 259529.596700001507998 ], [ 354840.039700001478195, 259526.423900000751019 ], [ 354837.259499996900558, 259527.127399999648333 ], [ 354831.150499999523163, 259528.673200000077486 ], [ 354831.114600002765656, 259532.894799999892712 ], [ 354827.8766999989748, 259534.346000000834465 ], [ 354829.4425999969244, 259539.847199998795986 ], [ 354830.220100000500679, 259543.231100000441074 ], [ 354832.465999998152256, 259542.629099998623133 ], [ 354837.523000001907349, 259541.273400001227856 ], [ 354843.225400000810623, 259539.744800001382828 ], [ 354848.585799999535084, 259538.307799998670816 ], [ 354854.379900000989437, 259536.754599999636412 ], [ 354861.281400002539158, 259534.904599998146296 ], [ 354869.473700001835823, 259532.708500001579523 ], [ 354875.741099998354912, 259530.652800001204014 ], [ 354880.63459999859333, 259528.815000001341105 ], [ 354885.999600000679493, 259526.80009999871254 ], [ 354889.836900003254414, 259524.772700000554323 ], [ 354893.951999999582767, 259522.598400000482798 ], [ 354899.769799999892712, 259519.524500001221895 ], [ 354906.790299996733665, 259517.225600000470877 ], [ 354911.090499997138977, 259515.817499998956919 ], [ 354916.741899996995926, 259515.019400000572205 ], [ 354925.460600003600121, 259513.7989999987185 ], [ 354934.35419999808073, 259512.554000001400709 ], [ 354940.432700000703335, 259511.703200001269579 ], [ 354947.549199998378754, 259510.706999998539686 ], [ 354955.790799997746944, 259509.553300000727177 ], [ 354966.954999998211861, 259507.975099999457598 ], [ 354977.292700000107288, 259506.437899999320507 ], [ 354981.640500001609325, 259505.250700000673532 ], [ 354989.914300002157688, 259502.991300001740456 ], [ 354994.570600003004074, 259501.719700001180172 ], [ 354998.307199999690056, 259500.699299998581409 ], [ 355005.507200002670288, 259496.53830000013113 ], [ 355008.031499996781349, 259495.0793999992311 ], [ 355011.712099999189377, 259491.154100000858307 ], [ 355016.405699998140335, 259486.148299999535084 ], [ 355019.424099996685982, 259482.929200001060963 ], [ 355020.368400000035763, 259480.282699998468161 ], [ 355021.488099999725819, 259477.144499998539686 ], [ 355022.550300002098083, 259474.167599998414516 ], [ 355023.698600001633167, 259470.949200000613928 ], [ 355025.206799998879433, 259466.722300000488758 ], [ 355027.633100003004074, 259464.327799998223782 ], [ 355030.086000002920628, 259461.9070999994874 ], [ 355034.124799996614456, 259461.095800001174212 ], [ 355038.906599998474121, 259461.175400000065565 ], [ 355042.080799996852875, 259461.228199999779463 ], [ 355044.620099999010563, 259461.270399998873472 ], [ 355049.899700000882149, 259461.358199998736382 ], [ 355056.45610000193119, 259461.467199999839067 ], [ 355061.961400002241135, 259461.558800000697374 ], [ 355069.854999996721745, 259461.690000001341105 ], [ 355074.220600001513958, 259461.762600000947714 ], [ 355077.613399997353554, 259461.819099999964237 ], [ 355080.791000001132488, 259461.871899999678135 ], [ 355084.112499997019768, 259461.927099999040365 ], [ 355086.361400000751019, 259462.905799999833107 ], [ 355089.085299998521805, 259464.091099999845028 ], [ 355090.539700001478195, 259464.723900001496077 ], [ 355091.682300001382828, 259466.655099999159575 ], [ 355092.924400001764297, 259468.754200000315905 ], [ 355095.198700003325939, 259475.316500000655651 ], [ 355096.821099996566772, 259479.997800000011921 ], [ 355097.962300002574921, 259483.290800001472235 ], [ 355099.365500003099442, 259487.339600000530481 ], [ 355100.947700001299381, 259491.904899999499321 ], [ 355102.222199998795986, 259494.910199999809265 ], [ 355103.757500000298023, 259497.729100000113249 ], [ 355105.963500000536442, 259501.779599998146296 ], [ 355107.933300003409386, 259505.396200001239777 ], [ 355107.010799996554852, 259511.323499999940395 ], [ 355106.227200001478195, 259516.359099999070168 ], [ 355104.778599999845028, 259519.218199998140335 ], [ 355103.323299996554852, 259522.090399999171495 ], [ 355101.439000003039837, 259525.809300001710653 ], [ 355099.385200001299381, 259529.862900000065565 ], [ 355098.025600001215935, 259532.54619999974966 ], [ 355095.711599998176098, 259534.770199999213219 ], [ 355092.902300000190735, 259537.470400001853704 ], [ 355091.07880000025034, 259539.223000001162291 ], [ 355088.375200003385544, 259541.82149999961257 ], [ 355085.830200001597404, 259544.267599999904633 ], [ 355082.581600002944469, 259546.985300000756979 ], [ 355081.021899998188019, 259547.176500000059605 ], [ 355076.964400000870228, 259547.188299998641014 ], [ 355074.851800002157688, 259546.121899999678135 ], [ 355072.064499996602535, 259544.714899998158216 ], [ 355068.00789999961853, 259542.041499998420477 ], [ 355061.891000002622604, 259537.425200000405312 ], [ 355056.09009999781847, 259533.047400001436472 ], [ 355053.685599997639656, 259531.338899999856949 ], [ 355051.707699999213219, 259531.11540000140667 ], [ 355049.594099998474121, 259530.876600001007318 ], [ 355045.629600003361702, 259530.428599998354912 ], [ 355039.157600000500679, 259532.9087999984622 ], [ 355036.195799998939037, 259535.195300001651049 ], [ 355031.852200001478195, 259538.548500001430511 ], [ 355028.745999999344349, 259540.321299999952316 ], [ 355024.368199996650219, 259542.819899998605251 ], [ 355020.537900000810623, 259545.005899999290705 ], [ 355017.266599997878075, 259546.872900001704693 ], [ 355013.015100002288818, 259548.686299998313189 ], [ 355008.795999996364117, 259550.48589999973774 ], [ 355003.581299997866154, 259552.710200000554323 ], [ 354997.843199998140335, 259555.157699998468161 ], [ 354990.977899998426437, 259558.160300001502037 ], [ 354984.259700000286102, 259561.098600000143051 ], [ 354978.417999997735023, 259563.653499998152256 ], [ 354974.308200001716614, 259565.962099999189377 ], [ 354968.608199998736382, 259569.164000000804663 ], [ 354963.3699000030756, 259572.514800000935793 ], [ 354959.188799999654293, 259575.682599999010563 ], [ 354954.025600001215935, 259579.594500001519918 ], [ 354950.845100000500679, 259582.004099998623133 ], [ 354946.3108000010252, 259585.324299998581409 ], [ 354941.46339999884367, 259588.873799998313189 ], [ 354936.891500003635883, 259592.221500001847744 ], [ 354929.747900001704693, 259597.452300000935793 ], [ 354915.96509999781847, 259606.205400001257658 ], [ 354912.020199999213219, 259608.131999999284744 ], [ 354909.639499999582767, 259609.294700000435114 ], [ 354905.474200002849102, 259611.328999999910593 ], [ 354901.897100001573563, 259613.075899999588728 ], [ 354898.960600003600121, 259614.510000001639128 ], [ 354895.663599997758865, 259615.740499999374151 ], [ 354891.717600002884865, 259617.213199999183416 ], [ 354880.06530000269413, 259621.561900001019239 ], [ 354877.928199999034405, 259622.359400000423193 ], [ 354875.283500000834465, 259622.040800001472235 ], [ 354872.289399996399879, 259621.679999999701977 ], [ 354871.508199997246265, 259618.718299999833107 ], [ 354868.938199996948242, 259618.781399998813868 ], [ 354865.055900000035763, 259618.876600001007318 ], [ 354864.548500001430511, 259620.800400000065565 ], [ 354863.389399997889996, 259625.195700000971556 ], [ 354860.902099996805191, 259625.969099998474121 ], [ 354856.112800002098083, 259627.458200000226498 ], [ 354852.685400001704693, 259627.837600000202656 ], [ 354851.035700000822544, 259628.020199999213219 ], [ 354847.234300002455711, 259628.440999999642372 ], [ 354847.16780000180006, 259636.250900000333786 ], [ 354849.896999999880791, 259636.013700000941753 ], [ 354856.044399999082088, 259635.479200001806021 ], [ 354858.356200002133846, 259635.320300001651049 ], [ 354865.758699998259544, 259634.811200000345707 ], [ 354869.76070000231266, 259634.535999998450279 ], [ 354875.811499997973442, 259633.103500001132488 ], [ 354882.688699997961521, 259631.475400000810623 ], [ 354889.917400002479553, 259628.929200001060963 ], [ 354896.794699996709824, 259626.506700001657009 ], [ 354905.511200003325939, 259622.623700000345707 ], [ 354915.61599999666214, 259617.657499998807907 ], [ 354922.094400003552437, 259613.989700000733137 ], [ 354927.752899996936321, 259610.291999999433756 ], [ 354935.464500002563, 259605.252700001001358 ], [ 354943.695799998939037, 259599.265999998897314 ], [ 354948.751999996602535, 259595.36259999871254 ], [ 354952.174800001084805, 259592.720199998468161 ], [ 354958.815600000321865, 259587.593499999493361 ], [ 354963.003899998962879, 259584.360199999064207 ], [ 354969.413699999451637, 259579.411800000816584 ], [ 354971.366700001060963, 259578.32039999961853 ], [ 354977.002499997615814, 259575.170699998736382 ], [ 354983.1875, 259571.714099999517202 ], [ 354988.602300003170967, 259568.655000001192093 ], [ 354991.290200002491474, 259567.136399999260902 ], [ 354997.860500000417233, 259564.431099999696016 ], [ 355003.247400000691414, 259562.213100001215935 ], [ 355009.166599996387959, 259559.77589999884367 ], [ 355016.299500003457069, 259556.839000001549721 ], [ 355020.941200003027916, 259554.927799999713898 ], [ 355024.467699997127056, 259553.475699998438358 ], [ 355027.6891999989748, 259551.405299998819828 ], [ 355033.327500000596046, 259547.781599998474121 ], [ 355039.254699997603893, 259543.972300000488758 ], [ 355043.927100002765656, 259540.969399999827147 ], [ 355046.938299998641014, 259540.731499999761581 ], [ 355051.189300000667572, 259540.395500000566244 ], [ 355055.567299999296665, 259543.5614 ], [ 355059.854699999094009, 259546.661699999123812 ], [ 355063.941100001335144, 259549.616599999368191 ], [ 355068.019400000572205, 259552.565600000321865 ], [ 355070.020599998533726, 259553.89919999986887 ], [ 355072.830300003290176, 259555.77140000090003 ], [ 355076.854699999094009, 259556.648699998855591 ], [ 355081.67509999871254, 259556.267900001257658 ], [ 355084.116899996995926, 259556.07490000128746 ], [ 355089.786200001835823, 259553.166000001132488 ], [ 355091.925700001418591, 259551.452899999916553 ], [ 355097.093400001525879, 259547.315099999308586 ], [ 355097.915899999439716, 259545.421999998390675 ], [ 355099.535700000822544, 259544.590900000184774 ], [ 355105.235600002110004, 259538.093699999153614 ], [ 355108.913699999451637, 259532.288600001484156 ], [ 355110.957099996507168, 259529.063499998301268 ], [ 355118.271499998867512, 259522.368299998342991 ], [ 355120.476999998092651, 259520.910100001841784 ], [ 355123.947999998927116, 259518.615100000053644 ], [ 355128.126900002360344, 259516.756499998271465 ], [ 355139.327299997210503, 259511.774900000542402 ], [ 355150.060500003397465, 259505.432799998670816 ], [ 355158.939000003039837, 259500.186700001358986 ], [ 355163.640799999237061, 259497.408399999141693 ], [ 355168.186300002038479, 259494.160399999469519 ], [ 355170.588799998164177, 259492.44370000064373 ], [ 355174.652800001204014, 259489.539700001478195 ], [ 355178.244300000369549, 259486.973299998790026 ], [ 355184.266999997198582, 259481.676100000739098 ], [ 355187.99379999935627, 259478.398200001567602 ], [ 355190.439699999988079, 259475.251899998635054 ], [ 355192.057700000703335, 259474.631799999624491 ], [ 355192.8783999979496, 259472.949799999594688 ], [ 355195.300899997353554, 259472.547400001436472 ], [ 355197.709100000560284, 259473.833700001239777 ], [ 355197.37389999628067, 259481.512899998575449 ], [ 355197.007100000977516, 259485.7511 ], [ 355196.7787000015378, 259488.391499999910593 ], [ 355196.113899998366833, 259491.139699999243021 ], [ 355193.916900001466274, 259500.221900001168251 ], [ 355189.945600003004074, 259514.142400000244379 ], [ 355186.79730000346899, 259524.195700000971556 ], [ 355186.777500003576279, 259526.517599999904633 ], [ 355172.800399996340275, 259558.067299999296665 ], [ 355171.175200000405312, 259559.531599998474121 ], [ 355161.538699999451637, 259575.675299998372793 ], [ 355153.996299996972084, 259588.3108000010252 ], [ 355145.81139999628067, 259598.630199998617172 ], [ 355141.333700001239777, 259604.275499999523163 ], [ 355134.226300001144409, 259613.236400000751019 ], [ 355121.391400001943111, 259629.418299999088049 ], [ 355087.170199997723103, 259670.93470000103116 ], [ 355084.605400003492832, 259672.725400000810623 ], [ 355078.120399996638298, 259676.58729999884963 ], [ 355062.912100002169609, 259684.683600001037121 ], [ 355052.306400001049042, 259693.236400000751019 ], [ 355051.48030000180006, 259695.551699999719858 ], [ 355053.006599999964237, 259705.696699999272823 ], [ 355062.621200002729893, 259712.952500000596046 ], [ 355075.477200001478195, 259718.335099998861551 ], [ 355079.042400002479553, 259718.987500000745058 ], [ 355082.723300002515316, 259719.660999998450279 ], [ 355087.355499997735023, 259719.78770000115037 ], [ 355091.162600003182888, 259719.891800001263618 ], [ 355099.623000003397465, 259720.123100001364946 ], [ 355115.776699997484684, 259720.564800001680851 ], [ 355118.971400000154972, 259724.179499998688698 ], [ 355118.160499997437, 259726.452199999243021 ], [ 355117.319200001657009, 259728.809999998658895 ], [ 355115.697599999606609, 259729.852200001478195 ], [ 355113.214199997484684, 259729.940200001001358 ], [ 355110.857900001108646, 259730.023699998855591 ], [ 355107.621799997985363, 259731.263799998909235 ], [ 355103.565099999308586, 259734.185899998992682 ], [ 355101.117399998009205, 259737.543400000780821 ], [ 355100.23200000077486, 259746.824200000613928 ], [ 355100.204999998211861, 259749.99040000140667 ], [ 355103.390699997544289, 259754.660599999129772 ], [ 355102.54839999973774, 259758.875500001013279 ], [ 355100.119099996984005, 259763.905600000172853 ], [ 355092.69820000231266, 259779.271000001579523 ], [ 355095.909100003540516, 259780.986000001430511 ], [ 355082.795900002121925, 259805.78770000115037 ], [ 355080.078500002622604, 259840.807000000029802 ], [ 355068.507799997925758, 259873.853999998420477 ], [ 355074.943899996578693, 259875.595400001853704 ], [ 355085.711900003254414, 259842.119699999690056 ], [ 355088.425700001418591, 259807.522599998861551 ], [ 355100.725400000810623, 259783.558600001037121 ], [ 355108.928800001740456, 259767.160399999469519 ], [ 355112.206200003623962, 259761.065499998629093 ], [ 355115.52139999717474, 259760.027399998158216 ], [ 355122.717000000178814, 259757.774000000208616 ], [ 355125.963799998164177, 259755.267499998211861 ], [ 355127.597999997437, 259752.747699998319149 ], [ 355130.105099998414516, 259742.424699999392033 ], [ 355126.969700001180172, 259731.844300001859665 ], [ 355131.049900002777576, 259726.178199999034405 ], [ 355134.081399999558926, 259723.994600001722574 ], [ 355136.618199996650219, 259722.167300000786781 ], [ 355139.16330000013113, 259720.333999998867512 ], [ 355168.291299998760223, 259708.7511 ], [ 355168.334399998188019, 259703.685300000011921 ], [ 355171.584899999201298, 259700.756599999964237 ], [ 355221.061800003051758, 259690.051300000399351 ], [ 355223.287799999117851, 259689.569600000977516 ], [ 355227.306699998676777, 259691.080099999904633 ], [ 355229.402900002896786, 259693.180900000035763 ], [ 355240.898999996483326, 259704.701400000602007 ], [ 355242.636200003325939, 259707.481600001454353 ], [ 355245.085500001907349, 259711.401099998503923 ], [ 355248.523199997842312, 259719.113200001418591 ], [ 355250.550200000405312, 259725.913199998438358 ], [ 355252.750900000333786, 259733.296000000089407 ], [ 355254.34910000115633, 259734.997800000011921 ], [ 355256.081699997186661, 259738.785300001502037 ], [ 355259.098899997770786, 259745.380300000309944 ], [ 355262.288199998438358, 259749.628199998289347 ], [ 355263.071099996566772, 259752.378899998962879 ], [ 355264.673000000417233, 259753.658500000834465 ], [ 355293.288400001823902, 259802.233199998736382 ], [ 355297.436899997293949, 259788.546000000089407 ], [ 355295.831399999558926, 259787.688499998301268 ], [ 355295.872800000011921, 259782.833700001239777 ], [ 355296.691699996590614, 259781.362799998372793 ], [ 355299.927699998021126, 259780.122699998319149 ], [ 355295.147399999201298, 259773.328600000590086 ], [ 355290.298699997365475, 259774.555399999022484 ], [ 355286.281599998474121, 259772.833799999207258 ], [ 355264.030299998819828, 259734.443799998611212 ], [ 355255.367600001394749, 259710.097100000828505 ], [ 355249.802599996328354, 259700.763399999588728 ], [ 355233.012100003659725, 259683.949599999934435 ], [ 355228.197599999606609, 259681.166000001132488 ], [ 355220.139799997210503, 259680.46680000051856 ], [ 355166.81530000269413, 259692.695999998599291 ], [ 355162.787399999797344, 259692.240800000727177 ], [ 355160.390000000596046, 259689.688099998980761 ], [ 355136.11429999768734, 259699.621899999678135 ], [ 355136.090899996459484, 259702.365899998694658 ], [ 355131.22070000320673, 259706.125700000673532 ], [ 355128.80179999768734, 259706.105900000780821 ], [ 355125.590899996459484, 259704.390900000929832 ], [ 355114.248599998652935, 259710.630899999290705 ], [ 355098.590999998152256, 259710.864399999380112 ], [ 355086.828500002622604, 259711.039700001478195 ], [ 355080.226800002157688, 259709.831799998879433 ], [ 355074.751800000667572, 259708.829900000244379 ], [ 355061.109300002455711, 259701.118900001049042 ], [ 355060.333499997854233, 259697.524000000208616 ], [ 355065.375299997627735, 259693.631799999624491 ], [ 355068.450599998235703, 259691.257599998265505 ], [ 355072.192299999296665, 259689.506700001657009 ], [ 355080.356899999082088, 259685.686099998652935 ], [ 355087.071299999952316, 259682.544100001454353 ], [ 355089.954599998891354, 259680.225099999457598 ], [ 355093.566799998283386, 259677.319899998605251 ], [ 355098.617899999022484, 259671.138599999248981 ], [ 355109.615500003099442, 259657.680100001394749 ], [ 355130.235600002110004, 259632.445999998599291 ], [ 355151.4054000005126, 259605.774399999529123 ], [ 355155.621100001037121, 259600.800900001078844 ], [ 355159.57039999961853, 259596.589099999517202 ], [ 355161.960100002586842, 259592.84910000115633 ], [ 355166.601999998092651, 259585.584199998527765 ], [ 355174.30120000243187, 259573.534499999135733 ], [ 355180.827600002288818, 259562.354800000786781 ], [ 355188.230099998414516, 259545.316799998283386 ], [ 355189.858900003135204, 259543.430300001055002 ], [ 355195.058799996972084, 259527.304299999028444 ], [ 355202.282600000500679, 259504.901900000870228 ], [ 355206.479599997401237, 259485.515599999576807 ], [ 355207.38120000064373, 259474.33500000089407 ], [ 355204.215300001204014, 259467.342999998480082 ], [ 355199.404399998486042, 259464.137299999594688 ], [ 355190.534999996423721, 259464.064699999988079 ], [ 355186.48369999974966, 259466.353500001132488 ], [ 355180.787299998104572, 259472.428599998354912 ], [ 355177.829599998891354, 259474.839299999177456 ], [ 355166.17119999974966, 259484.341299999505281 ], [ 355148.329800002276897, 259496.227699998766184 ], [ 355137.715000003576279, 259501.563900001347065 ], [ 355131.79559999704361, 259504.539599999785423 ], [ 355128.08389999717474, 259506.405499998480082 ], [ 355120.832500003278255, 259505.712900001555681 ], [ 355118.429700002074242, 259503.793400000780821 ], [ 355113.64580000191927, 259497.421399999409914 ], [ 355130.921800002455711, 259457.243999999016523 ], [ 355137.406499996781349, 259453.286299999803305 ], [ 355133.423500001430511, 259447.554099999368191 ], [ 355123.693800002336502, 259453.807300001382828 ], [ 355108.892399996519089, 259487.461100000888109 ], [ 355102.603799998760223, 259468.411200001835823 ], [ 355102.619999997317791, 259466.511500000953674 ], [ 355096.243199996650219, 259457.804499998688698 ], [ 355084.924900002777576, 259452.012299999594688 ], [ 355077.272299997508526, 259449.354400001466274 ], [ 355068.119400002062321, 259446.175299998372793 ], [ 355056.098999999463558, 259444.677000001072884 ], [ 355047.799999997019768, 259444.678599998354912 ], [ 355039.905599996447563, 259445.100000001490116 ], [ 355031.014600001275539, 259447.560300000011921 ], [ 355024.529899999499321, 259451.51799999922514 ], [ 355018.012900002300739, 259459.275199998170137 ], [ 355015.53999999910593, 259465.587699998170137 ], [ 355013.859099999070168, 259473.595499999821186 ], [ 355008.949299998581409, 259481.999099999666214 ], [ 355001.63849999755621, 259488.272100001573563 ], [ 354996.777199998497963, 259490.976500000804663 ], [ 354992.598300002515316, 259492.179099999368191 ], [ 354972.526699997484684, 259497.955200001597404 ], [ 354968.285300001502037, 259498.585900001227856 ], [ 354951.961499996483326, 259501.013000000268221 ], [ 354940.231100000441074, 259502.757100000977516 ], [ 354937.014799997210503, 259501.675299998372793 ], [ 354936.242700003087521, 259497.65819999948144 ], [ 354938.692199997603893, 259494.089699998497963 ], [ 354941.060199998319149, 259491.838799998164177 ], [ 354945.954000003635883, 259487.186900001019239 ], [ 354949.260600000619888, 259484.043699998408556 ], [ 354951.710100002586842, 259480.475099999457598 ], [ 354952.140699997544289, 259476.916000001132488 ], [ 354953.445000000298023, 259466.135000001639128 ], [ 354950.277300000190735, 259459.354100000113249 ], [ 354943.085199996829033, 259451.695799998939037 ], [ 354939.886900000274181, 259448.503299999982119 ], [ 354939.102200001478195, 259445.963700000196695 ], [ 354938.613499999046326, 259441.253199998289347 ], [ 354938.35700000077486, 259438.7804000005126 ], [ 354942.832000002264977, 259433.962900001555681 ], [ 354948.925399996340275, 259428.734400000423193 ], [ 354956.488499999046326, 259424.657699998468161 ], [ 354965.127099998295307, 259420.0011 ], [ 354972.41950000077486, 259415.241799999028444 ], [ 354975.668499998748302, 259413.121300000697374 ], [ 354979.253799997270107, 259410.026799999177456 ], [ 354987.213699996471405, 259403.156700000166893 ], [ 354994.193400003015995, 259395.913899999111891 ], [ 354997.747699998319149, 259391.927600000053644 ], [ 355005.244699999690056, 259382.670299999415874 ], [ 355012.055799998342991, 259373.707400001585484 ], [ 355022.079700000584126, 259360.516699999570847 ], [ 355025.35530000180006, 259354.63289999961853 ], [ 355030.961199998855591, 259345.592399999499321 ], [ 355038.48139999806881, 259329.982900001108646 ], [ 355046.866200000047684, 259312.578999999910593 ], [ 355053.242799997329712, 259299.343499999493361 ], [ 355059.076899997889996, 259289.662300001829863 ], [ 355063.876000002026558, 259281.698699999600649 ], [ 355065.499399997293949, 259280.44539999961853 ], [ 355081.819799996912479, 259257.780900001525879 ], [ 355102.21679999679327, 259229.872400000691414 ], [ 355108.74099999666214, 259221.270899999886751 ], [ 355110.443599998950958, 259210.730200000107288 ], [ 355108.866899996995926, 259206.495400000363588 ], [ 355104.072200000286102, 259201.389899998903275 ], [ 355096.836900003254414, 259198.797600001096725 ], [ 355089.571099996566772, 259199.793600000441074 ], [ 355079.828900001943111, 259207.524300001561642 ], [ 355072.545100003480911, 259210.631099998950958 ], [ 355070.424500003457069, 259211.167700000107288 ], [ 355065.272100001573563, 259212.471400000154972 ], [ 355056.395400002598763, 259213.243099998682737 ], [ 355049.873199999332428, 259213.799100000411272 ], [ 355045.098099999129772, 259214.2060999982059 ], [ 355038.575199998915195, 259215.680700000375509 ], [ 355033.313199996948242, 259216.870299998670816 ], [ 355021.668300002813339, 259219.50279999896884 ], [ 354999.683799996972084, 259224.588100001215935 ], [ 354992.581699997186661, 259226.230799999088049 ], [ 354986.664700001478195, 259226.671300001442432 ], [ 354979.702500000596046, 259227.189500000327826 ], [ 354977.250900000333786, 259227.371899999678135 ], [ 354972.712999999523163, 259226.825199998915195 ], [ 354951.728200003504753, 259224.296599999070168 ], [ 354949.056999996304512, 259223.974800001829863 ], [ 354935.19200000166893, 259224.172400001436472 ], [ 354920.830700002610683, 259224.377000000327826 ], [ 354902.310599997639656, 259221.270100001245737 ], [ 354874.969700001180172, 259212.391499999910593 ], [ 354874.195799998939037, 259208.585499998182058 ], [ 354877.437200002372265, 259206.712200000882149 ], [ 354883.401399999856949, 259206.675999999046326 ], [ 354888.718400001525879, 259207.648899998515844 ], [ 354896.785099998116493, 259207.292700000107288 ], [ 354904.556599996984005, 259205.803100001066923 ], [ 354913.367299996316433, 259203.311700001358986 ], [ 354921.041000001132488, 259199.680799998342991 ], [ 354925.0574000030756, 259196.98930000141263 ], [ 354933.154600001871586, 259191.563000001013279 ], [ 354941.396300002932549, 259186.039900001138449 ], [ 354948.141599997878075, 259181.474199999123812 ], [ 354949.963600002229214, 259180.008900001645088 ], [ 354954.299500003457069, 259176.521600000560284 ], [ 354957.82490000128746, 259172.721400000154972 ], [ 354963.160099998116493, 259166.970199998468161 ], [ 354968.835900001227856, 259159.686599999666214 ], [ 354972.147699996829033, 259153.569699998944998 ], [ 354975.51349999755621, 259147.353199999779463 ], [ 354977.966600000858307, 259143.362500000745058 ], [ 354977.986400000751019, 259141.040699999779463 ], [ 354978.994199998676777, 259137.28999999910593 ], [ 354981.615599997341633, 259127.534099999815226 ], [ 354983.214800000190735, 259121.58219999819994 ], [ 354986.030599996447563, 259114.526900000870228 ], [ 354989.555299997329712, 259108.204799998551607 ], [ 354993.386399999260902, 259104.136599998921156 ], [ 354997.724600002169609, 259100.076799999922514 ], [ 355006.61370000243187, 259093.567800000309944 ], [ 355022.471199996769428, 259081.798700001090765 ], [ 355027.712700001895428, 259077.908500000834465 ], [ 355029.121699996292591, 259076.535300001502037 ], [ 355039.096400000154972, 259066.813700001686811 ], [ 355043.991800002753735, 259060.098799999803305 ], [ 355045.651199996471405, 259054.6239 ], [ 355046.560000002384186, 259042.598999999463558 ], [ 355044.985100001096725, 259038.153200000524521 ], [ 355040.197599999606609, 259032.203400000929832 ], [ 355036.999300003051758, 259029.010800000280142 ], [ 355032.18299999833107, 259026.438299998641014 ], [ 355028.035700000822544, 259025.452500000596046 ], [ 355023.031400002539158, 259024.987199999392033 ], [ 355014.456799998879433, 259024.815499998629093 ], [ 355012.279700003564358, 259026.317099999636412 ], [ 354996.611800000071526, 259037.124000001698732 ], [ 354987.749499998986721, 259036.207100000232458 ], [ 354983.746799997985363, 259032.796799998730421 ], [ 354980.570100001990795, 259027.071299999952316 ], [ 354979.783500000834465, 259024.742800001055002 ], [ 354979.864399999380112, 259015.244300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104010600", "MAP": "D9-7212-T003", "PARCEL_NAM": "2K-1", "ACRE": ".245", "LONGITUDE": -64.95361839, "LATITUDE": 18.36839258, "OBJECTID_1": 498, "PARCEL_NO_": "101104010600", "Tax_Legal_": "2K-1 ESTATE HULL BAY NO.4 LITTLE NORTHSIDE QTR", "Name": "SCHACK, SUZANNE J. & PAUL J", "Address": "ESTATE HULL 2I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.64852208900001, "SHAPE_Area": 1015.55888047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356400.997900001704693, 259839.299800001084805 ], [ 356358.792599998414516, 259841.613299999386072 ], [ 356357.448600001633167, 259866.067400000989437 ], [ 356394.854400001466274, 259866.087400000542402 ], [ 356400.997900001704693, 259839.299800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104012000", "MAP": "F9-2892-T71", "PARCEL_NAM": "2KA", "ACRE": ".25", "LONGITUDE": -64.95320552, "LATITUDE": 18.36840157, "OBJECTID_1": 511, "PARCEL_NO_": "101104012000", "Tax_Legal_": "HULL BAY 2K LT. NORTHSIDE", "Name": "BERRY, ANN MARIE LAPLACE", "Address": "7691 Lower Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 282200, "Improved_V": 133800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.870218006, "SHAPE_Area": 653.962039581 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356442.222499996423721, 259862.491300001740456 ], [ 356441.906099997460842, 259855.963700000196695 ], [ 356433.151699997484684, 259842.382100000977516 ], [ 356423.641099996864796, 259843.650699999183416 ], [ 356417.926100000739098, 259844.920699998736382 ], [ 356412.634400002658367, 259845.979100000113249 ], [ 356409.882700003683567, 259847.672400001436472 ], [ 356407.554399996995926, 259849.154100000858307 ], [ 356405.437700003385544, 259850.424100000411272 ], [ 356403.109399996697903, 259852.540800001472235 ], [ 356401.839400000870228, 259855.504099998623133 ], [ 356400.145999997854233, 259859.949099998921156 ], [ 356399.510999999940395, 259862.912399999797344 ], [ 356442.222499996423721, 259862.491300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101104010800", "MAP": "D9-7119-T002", "PARCEL_NAM": "2F-4", "ACRE": ".09", "LONGITUDE": -64.95578298, "LATITUDE": 18.36865045, "OBJECTID_1": 499, "PARCEL_NO_": "101104010800", "Tax_Legal_": "2F-4 ESTATE HULL (R.O.W.) No.4B LITTLE NORTHSIDE QTR.", "Name": "LAPLACE, EDNA,KEVIN,S.&BRYAN,A.&ALSINA,J.", "Address": "7686 Hull Bay 2G", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.21087513200001, "SHAPE_Area": 400.352775979 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356136.554099999368191, 259880.341499999165535 ], [ 356144.019500002264977, 259881.983300000429153 ], [ 356151.057099997997284, 259883.531100001186132 ], [ 356161.216700002551079, 259885.765500001609325 ], [ 356167.067699998617172, 259887.052299998700619 ], [ 356169.159699998795986, 259887.512299999594688 ], [ 356173.354400001466274, 259888.067899998277426 ], [ 356175.546800002455711, 259887.774599999189377 ], [ 356179.785400003194809, 259885.878299999982119 ], [ 356178.524400003254414, 259877.434799998998642 ], [ 356175.413199998438358, 259881.806600000709295 ], [ 356143.979500003159046, 259875.60530000180006 ], [ 356131.146799996495247, 259873.073699999600649 ], [ 356121.372900001704693, 259871.145500000566244 ], [ 356117.203100003302097, 259870.322799999266863 ], [ 356117.293600000441074, 259876.105599999427795 ], [ 356136.554099999368191, 259880.341499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101104020200", "MAP": "D9-5844-T94", "PARCEL_NAM": "15-2-A", "ACRE": null, "LONGITUDE": -64.95090925, "LATITUDE": 18.36934109, "OBJECTID_1": 570, "PARCEL_NO_": "101104020200", "Tax_Legal_": "HULL 15-2-A No.4A LT. NORTHSIDE QTR.", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.687414593, "SHAPE_Area": 985.60269929200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356626.945100001990795, 260000.599599998444319 ], [ 356626.972000002861023, 259997.433400001376867 ], [ 356629.959100000560284, 259994.741999998688698 ], [ 356641.598999999463558, 259984.254200000315905 ], [ 356658.689800001680851, 259965.817899998277426 ], [ 356670.102200001478195, 259951.345800001174212 ], [ 356672.103100001811981, 259950.616200000047684 ], [ 356675.764399997889996, 259949.281199999153614 ], [ 356677.699500001966953, 259949.366200000047684 ], [ 356681.598600000143051, 259949.537399999797344 ], [ 356686.609600000083447, 259949.75730000063777 ], [ 356690.830099999904633, 259949.942600000649691 ], [ 356695.471900001168251, 259949.843600001186132 ], [ 356697.690999999642372, 259949.600499998778105 ], [ 356701.385600000619888, 259949.195900000631809 ], [ 356704.9054000005126, 259948.810499999672174 ], [ 356709.640299998223782, 259948.291900001466274 ], [ 356708.913099996745586, 259938.997900001704693 ], [ 356698.41669999808073, 259940.600699998438358 ], [ 356694.929499998688698, 259940.524099998176098 ], [ 356689.847300000488758, 259940.412500001490116 ], [ 356686.147200003266335, 259940.331199999898672 ], [ 356683.098499998450279, 259940.264199998229742 ], [ 356680.703000001609325, 259937.500399999320507 ], [ 356679.450599998235703, 259937.307799998670816 ], [ 356673.455099999904633, 259936.385600000619888 ], [ 356672.623599998652935, 259939.334100000560284 ], [ 356668.971100002527237, 259941.996599998325109 ], [ 356667.755199998617172, 259942.88289999961853 ], [ 356664.049199998378754, 259945.863600000739098 ], [ 356660.674500003457069, 259949.009300000965595 ], [ 356657.174199998378754, 259954.406399998813868 ], [ 356656.465300001204014, 259955.162399999797344 ], [ 356654.468400001525879, 259957.292100001126528 ], [ 356652.471500001847744, 259959.421900000423193 ], [ 356649.949799999594688, 259962.111299999058247 ], [ 356648.114600002765656, 259964.068500000983477 ], [ 356645.781599998474121, 259966.556600000709295 ], [ 356641.815499998629093, 259970.689300000667572 ], [ 356637.814900003373623, 259974.857999999076128 ], [ 356634.313100002706051, 259978.506799999624491 ], [ 356631.664599999785423, 259981.266600001603365 ], [ 356628.696199998259544, 259984.359700001776218 ], [ 356623.822300001978874, 259988.541700001806021 ], [ 356621.399800002574921, 259988.944099999964237 ], [ 356626.945100001990795, 260000.599599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "101104022700", "MAP": "D9-5661-T94", "PARCEL_NAM": "11B REM", "ACRE": ".71", "LONGITUDE": -64.95124663, "LATITUDE": 18.36486125, "OBJECTID_1": 595, "PARCEL_NO_": "101104022700", "Tax_Legal_": "HULL 11B REMAINDER LT NORTHSIDE QTR", "Name": "LAPLACE, GEORGE", "Address": "PO Box 187-EGS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 677.01993361899997, "SHAPE_Area": 2245.04998935 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356618.163699999451637, 259516.912399999797344 ], [ 356625.439699999988079, 259512.424699999392033 ], [ 356629.496899999678135, 259509.922200001776218 ], [ 356634.376299999654293, 259506.912599999457598 ], [ 356639.102200001478195, 259502.654500000178814 ], [ 356644.127599999308586, 259498.126499999314547 ], [ 356646.331000000238419, 259495.066599998623133 ], [ 356648.1503000035882, 259492.53999999910593 ], [ 356652.287799999117851, 259486.794199999421835 ], [ 356657.966099999845028, 259482.829900000244379 ], [ 356663.628300003707409, 259480.765299998223782 ], [ 356670.150700002908707, 259472.374899998307228 ], [ 356661.20610000193119, 259474.949000000953674 ], [ 356658.025499999523163, 259475.86430000141263 ], [ 356653.758500002324581, 259478.053700000047684 ], [ 356650.736299999058247, 259479.604299999773502 ], [ 356641.791299998760223, 259488.396999999880791 ], [ 356640.956299997866154, 259491.767700001597404 ], [ 356636.068000003695488, 259497.638300001621246 ], [ 356625.66889999806881, 259504.811099998652935 ], [ 356618.223099999129772, 259509.946800000965595 ], [ 356603.668099999427795, 259514.682799998670816 ], [ 356589.962600000202656, 259514.359499998390675 ], [ 356582.741700001060963, 259510.078600000590086 ], [ 356581.973200000822544, 259505.639299999922514 ], [ 356586.850599996745586, 259501.035199999809265 ], [ 356658.982799999415874, 259458.140299998223782 ], [ 356681.093000002205372, 259438.788499999791384 ], [ 356683.355599999427795, 259436.808200001716614 ], [ 356686.627599999308586, 259431.346599999815226 ], [ 356687.013300001621246, 259427.38740000128746 ], [ 356687.350199997425079, 259423.930100001394749 ], [ 356680.25450000166893, 259422.217399999499321 ], [ 356670.878100000321865, 259419.494300000369549 ], [ 356663.469700001180172, 259419.494300000369549 ], [ 356645.266400001943111, 259420.552600000053644 ], [ 356629.179700002074242, 259418.012600000947714 ], [ 356622.618000000715256, 259417.377599999308586 ], [ 356618.173000000417233, 259416.319299999624491 ], [ 356616.05629999935627, 259414.625900000333786 ], [ 356615.421099998056889, 259411.020700000226498 ], [ 356602.695200003683567, 259411.509300000965595 ], [ 356600.989600002765656, 259423.087000001221895 ], [ 356612.457999996840954, 259423.939300000667572 ], [ 356631.508000001311302, 259426.690900001674891 ], [ 356645.478000000119209, 259428.384300000965595 ], [ 356665.374799996614456, 259427.11430000141263 ], [ 356671.089800000190735, 259426.690900001674891 ], [ 356679.370800003409386, 259431.287200000137091 ], [ 356677.738399997353554, 259433.595800001174212 ], [ 356672.873599998652935, 259436.72239999845624 ], [ 356666.255300000309944, 259443.19709999859333 ], [ 356663.246399998664856, 259446.140700001269579 ], [ 356660.676399998366833, 259448.654899999499321 ], [ 356655.118500001728535, 259453.089200001209974 ], [ 356652.557499997317791, 259455.132399998605251 ], [ 356583.672100000083447, 259495.520700000226498 ], [ 356578.128600001335144, 259501.229299999773502 ], [ 356575.537100002169609, 259503.897900000214577 ], [ 356574.709200002253056, 259506.424199998378754 ], [ 356575.481299996376038, 259510.441300000995398 ], [ 356579.464299999177456, 259516.173500001430511 ], [ 356589.908600002527237, 259520.691899999976158 ], [ 356600.392499998211861, 259520.566599998623133 ], [ 356606.844800002872944, 259520.408300001174212 ], [ 356618.163699999451637, 259516.912399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104022900", "MAP": "F9-2785-T69", "PARCEL_NAM": "5CA", "ACRE": ".14", "LONGITUDE": -64.95273943, "LATITUDE": 18.36671552, "OBJECTID_1": 597, "PARCEL_NO_": "101104022900", "Tax_Legal_": "HULL 5CA LT. NORTHSIDE", "Name": "BRYAN, DAVID. NANETTE M", "Address": "1-3 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19900, "Improved_V": 183800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.38122793700001, "SHAPE_Area": 854.59751576999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356453.975599996745586, 259645.235300000756979 ], [ 356477.108999997377396, 259699.19819999858737 ], [ 356485.222499996423721, 259693.353999998420477 ], [ 356480.129900000989437, 259649.488600000739098 ], [ 356473.819399997591972, 259648.278000000864267 ], [ 356465.352700002491474, 259646.690499998629093 ], [ 356453.975599996745586, 259645.235300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104027900", "MAP": "G9-2970-T79", "PARCEL_NAM": "5F-1", "ACRE": ".23", "LONGITUDE": -64.95484315, "LATITUDE": 18.36500874, "OBJECTID_1": 644, "PARCEL_NO_": "101104027900", "Tax_Legal_": "HULL BAY 5F-1 LITTLE NORTHSIDE", "Name": "BRYAN, VICTOR", "Address": "5E-1 Estate Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.54742191599999, "SHAPE_Area": 1285.87752808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356242.671800002455711, 259459.192999999970198 ], [ 356237.514300003647804, 259458.65260000154376 ], [ 356236.214800000190735, 259469.022700000554323 ], [ 356231.451099999248981, 259507.034699998795986 ], [ 356235.603000000119209, 259504.891800001263618 ], [ 356244.064800001680851, 259500.797400001436472 ], [ 356249.251000002026558, 259496.975999999791384 ], [ 356252.253600001335144, 259493.700399998575449 ], [ 356255.529100000858307, 259490.151999998837709 ], [ 356258.531700000166893, 259486.33049999922514 ], [ 356263.990900002419949, 259481.417199999094009 ], [ 356268.085299998521805, 259478.96059999987483 ], [ 356273.39469999819994, 259475.03830000013113 ], [ 356287.604800000786781, 259463.901299998164177 ], [ 356269.339100003242493, 259461.987300001084805 ], [ 356242.671800002455711, 259459.192999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95470784, "LATITUDE": 18.36530304, "OBJECTID_1": 587, "PARCEL_NO_": "101104021900", "Tax_Legal_": "HULL 5F LT. NORTHSIDE", "Name": "BRYAN, DAVID N.", "Address": "1-3 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 252400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.45490217299999, "SHAPE_Area": 870.25425098000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356277.885399997234344, 259479.64919999986887 ], [ 356273.39469999819994, 259475.03830000013113 ], [ 356268.085299998521805, 259478.96059999987483 ], [ 356263.990900002419949, 259481.417199999094009 ], [ 356258.531700000166893, 259486.33049999922514 ], [ 356255.529100000858307, 259490.151999998837709 ], [ 356252.253600001335144, 259493.700399998575449 ], [ 356249.251000002026558, 259496.975999999791384 ], [ 356244.064800001680851, 259500.797400001436472 ], [ 356235.603000000119209, 259504.891800001263618 ], [ 356227.141199998557568, 259509.259199999272823 ], [ 356218.252499997615814, 259511.317299999296665 ], [ 356218.198600001633167, 259517.649599999189377 ], [ 356226.236699998378754, 259514.749099999666214 ], [ 356229.83500000089407, 259514.325800001621246 ], [ 356235.973399996757507, 259513.055799998342991 ], [ 356242.746699996292591, 259513.902499999850988 ], [ 356250.578400000929832, 259514.325800001621246 ], [ 356260.315099999308586, 259515.384100001305342 ], [ 356266.030100002884865, 259516.442499998956919 ], [ 356319.793499998748302, 259537.820900000631809 ], [ 356322.756899997591972, 259532.105799999088049 ], [ 356320.216899998486042, 259531.894200000911951 ], [ 356319.158500000834465, 259530.835799999535084 ], [ 356319.370200000703335, 259529.989199999719858 ], [ 356319.581900000572205, 259529.565799999982119 ], [ 356316.830200001597404, 259527.872499998658895 ], [ 356314.925200000405312, 259528.719200000166893 ], [ 356311.750200003385544, 259529.142499998211861 ], [ 356309.210199996829033, 259528.719200000166893 ], [ 356270.263400003314018, 259512.209100000560284 ], [ 356266.453400000929832, 259510.939100001007318 ], [ 356262.643399998545647, 259510.304099999368191 ], [ 356258.621799997985363, 259509.245799999684095 ], [ 356249.943400003015995, 259508.399099998176098 ], [ 356246.345100000500679, 259508.399099998176098 ], [ 356242.111699998378754, 259508.610800001770258 ], [ 356240.630000002682209, 259508.1875 ], [ 356239.994999997317791, 259507.340799998492002 ], [ 356239.994999997317791, 259506.705800000578165 ], [ 356245.075099997222424, 259504.800799999386072 ], [ 356249.520099997520447, 259502.895799998193979 ], [ 356252.483400002121925, 259500.567400000989437 ], [ 356255.235100001096725, 259499.085799999535084 ], [ 356256.716700002551079, 259497.392400000244379 ], [ 356259.468400001525879, 259495.699099998921156 ], [ 356260.526799999177456, 259494.005800001323223 ], [ 356261.373400002717972, 259491.88910000026226 ], [ 356263.701800003647804, 259489.5608000010252 ], [ 356266.030100002884865, 259488.079100001603365 ], [ 356268.358400002121925, 259486.59739999845624 ], [ 356269.416799999773502, 259485.539099998772144 ], [ 356270.686800003051758, 259483.84569999948144 ], [ 356274.496799997985363, 259482.152399998158216 ], [ 356277.885399997234344, 259479.64919999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104026500", "MAP": "D9-2339-T83", "PARCEL_NAM": "5F-2", "ACRE": ".50", "LONGITUDE": -64.95489614, "LATITUDE": 18.36562363, "OBJECTID_1": 631, "PARCEL_NO_": "101104026500", "Tax_Legal_": "HULL 5F-2&5F-3 LT.NORTHSIDE QTR.", "Name": "BRYAN, DAVID A", "Address": "1-3 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 156800, "Improved_V": 39700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.459892091, "SHAPE_Area": 1909.4935597799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356252.31139999628067, 259583.778799999505281 ], [ 356266.030100002884865, 259516.442499998956919 ], [ 356260.315099999308586, 259515.384100001305342 ], [ 356250.578400000929832, 259514.325800001621246 ], [ 356242.746699996292591, 259513.902499999850988 ], [ 356235.973399996757507, 259513.055799998342991 ], [ 356229.83500000089407, 259514.325800001621246 ], [ 356234.366099998354912, 259585.362900000065565 ], [ 356252.31139999628067, 259583.778799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104026500", "MAP": "D9-2339-T83", "PARCEL_NAM": "5F-3", "ACRE": ".50", "LONGITUDE": -64.95463531, "LATITUDE": 18.36569221, "OBJECTID_1": 631, "PARCEL_NO_": "101104026500", "Tax_Legal_": "HULL 5F-2&5F-3 LT.NORTHSIDE QTR.", "Name": "BRYAN, DAVID A", "Address": "1-3 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 156800, "Improved_V": 39700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.923187603, "SHAPE_Area": 1842.2048634600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356266.030100002884865, 259516.442499998956919 ], [ 356252.31139999628067, 259583.778799999505281 ], [ 356281.042400002479553, 259581.24269999936223 ], [ 356287.701700001955032, 259580.654899999499321 ], [ 356290.208800002932549, 259526.056800000369549 ], [ 356286.958499997854233, 259524.764400001615286 ], [ 356266.030100002884865, 259516.442499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104025900", "MAP": "D9-2389-T83", "PARCEL_NAM": "6G-1", "ACRE": ".50", "LONGITUDE": -64.95519325, "LATITUDE": 18.36507538, "OBJECTID_1": 626, "PARCEL_NO_": "101104025900", "Tax_Legal_": "HULL 6G-1 LT. NORTHSIDE", "Name": "GAME, JUNE", "Address": "23861 Voyager Ln", "City": "Laguna Niguel", "State": "California", "Zip": 92677, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.80881970799999, "SHAPE_Area": 2071.8924447700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356237.514300003647804, 259458.65260000154376 ], [ 356198.834399998188019, 259455.769000001251698 ], [ 356198.040600001811981, 259467.199000000953674 ], [ 356194.341300003230572, 259516.435400001704693 ], [ 356209.365099996328354, 259513.355500001460314 ], [ 356218.252499997615814, 259511.317299999296665 ], [ 356227.141199998557568, 259509.259199999272823 ], [ 356231.451099999248981, 259507.034699998795986 ], [ 356236.214800000190735, 259469.022700000554323 ], [ 356237.514300003647804, 259458.65260000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702051700", "MAP": "D9-2389-T83", "PARCEL_NAM": "6G REM", "ACRE": "1.07", "LONGITUDE": -64.95590853, "LATITUDE": 18.36517646, "OBJECTID_1": 3172, "PARCEL_NO_": "102702051700", "Tax_Legal_": "6G REM HULL NO.4 LT NORTHSIDE QTR", "Name": "LAPLACE FAMILY REVOCABLE TRUST", "Address": "PO Box 152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 146200, "Improved_V": 144700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.50869763600002, "SHAPE_Area": 4283.1926405800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356196.893200002610683, 259482.471700001507998 ], [ 356158.146700002253056, 259480.534000001847744 ], [ 356151.796700000762939, 259480.216499999165535 ], [ 356104.700800001621246, 259478.417399998754263 ], [ 356075.964400000870228, 259442.869899999350309 ], [ 356076.821599997580051, 259453.797699999064207 ], [ 356079.933600001037121, 259467.122099999338388 ], [ 356086.220499999821186, 259486.383099999278784 ], [ 356086.098200000822544, 259500.736400000751019 ], [ 356122.287000000476837, 259512.220600001513958 ], [ 356150.407200001180172, 259524.271999999880791 ], [ 356178.66950000077486, 259519.64809999987483 ], [ 356194.341300003230572, 259516.435400001704693 ], [ 356196.893200002610683, 259482.471700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702051900", "MAP": "D9-7557-T005", "PARCEL_NAM": "6G-3", "ACRE": ".858", "LONGITUDE": -64.95524816, "LATITUDE": 18.36458132, "OBJECTID_1": 3174, "PARCEL_NO_": "102702051900", "Tax_Legal_": "6G-3 ESTATE HULL BAY NO.4 LITTLE NORTHSIDE QTR.", "Name": "LAPLACE QUERRARD, CATHERINE & RODNEY", "Address": "7629 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 128000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.913812689, "SHAPE_Area": 2866.6785210200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356161.744999997317791, 259404.228100001811981 ], [ 356198.834399998188019, 259455.769000001251698 ], [ 356237.514300003647804, 259458.65260000154376 ], [ 356237.717500001192093, 259457.031300000846386 ], [ 356243.434299997985363, 259411.413499999791384 ], [ 356182.007600001990795, 259406.680700000375509 ], [ 356161.744999997317791, 259404.228100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702052200", "MAP": "D9-8163-T008", "PARCEL_NAM": "6G-6", "ACRE": ".840", "LONGITUDE": -64.95628791, "LATITUDE": 18.36413348, "OBJECTID_1": 3176, "PARCEL_NO_": "102702052200", "Tax_Legal_": "6G-6,6G-7 & 6G-8 ESTATE HULL NO.4 LT NORTHSIDE QTR", "Name": "LAPLACE FAMILY REVOCABLE TRUST", "Address": "PO Box 152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 209200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.60717591, "SHAPE_Area": 3676.1129755100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356130.471199996769428, 259411.054299999028444 ], [ 356126.185000002384186, 259375.335499998182058 ], [ 356125.391199998557568, 259370.255499999970198 ], [ 356123.645000003278255, 259363.746700000017881 ], [ 356117.136200003325939, 259339.457899998873472 ], [ 356115.072400003671646, 259332.631700001657009 ], [ 356114.210500001907349, 259330.158599998801947 ], [ 356078.455099999904633, 259356.708099998533726 ], [ 356069.547899998724461, 259361.06810000166297 ], [ 356073.736800000071526, 259414.47069999948144 ], [ 356130.471199996769428, 259411.054299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702052200", "MAP": "D9-8163-T008", "PARCEL_NAM": "6G-8", "ACRE": ".689", "LONGITUDE": -64.95565233000001, "LATITUDE": 18.36374472, "OBJECTID_1": 3176, "PARCEL_NO_": "102702052200", "Tax_Legal_": "6G-6,6G-7 & 6G-8 ESTATE HULL NO.4 LT NORTHSIDE QTR", "Name": "LAPLACE FAMILY REVOCABLE TRUST", "Address": "PO Box 152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 209200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.16040710499999, "SHAPE_Area": 3041.77223026 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356145.093299999833107, 259307.227099999785423 ], [ 356161.744999997317791, 259404.228100001811981 ], [ 356190.875699996948242, 259354.635800000280142 ], [ 356184.146799996495247, 259349.973700001835823 ], [ 356179.377300001680851, 259341.913199998438358 ], [ 356178.641099996864796, 259333.674499999731779 ], [ 356187.855800002813339, 259293.219900000840425 ], [ 356186.271899998188019, 259289.829500000923872 ], [ 356183.071800000965595, 259286.848000001162291 ], [ 356179.853799998760223, 259285.977299999445677 ], [ 356175.82039999961853, 259286.155299998819828 ], [ 356170.966399997472763, 259288.015500001609325 ], [ 356145.093299999833107, 259307.227099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702052200", "MAP": "D9-8163-T008", "PARCEL_NAM": "6G-7", "ACRE": ".532", "LONGITUDE": -64.95590172, "LATITUDE": 18.36389608, "OBJECTID_1": 3176, "PARCEL_NO_": "102702052200", "Tax_Legal_": "6G-6,6G-7 & 6G-8 ESTATE HULL NO.4 LT NORTHSIDE QTR", "Name": "LAPLACE FAMILY REVOCABLE TRUST", "Address": "PO Box 152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 209200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.74437904800001, "SHAPE_Area": 1998.82444285 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356145.093299999833107, 259307.227099999785423 ], [ 356121.90429999679327, 259324.445700000971556 ], [ 356120.469899997115135, 259327.551699999719858 ], [ 356119.993699997663498, 259329.932900000363588 ], [ 356127.77250000089407, 259357.079199999570847 ], [ 356130.1537000015378, 259364.540500000119209 ], [ 356131.582500003278255, 259369.938000001013279 ], [ 356133.170000001788139, 259375.653000000864267 ], [ 356133.923600003123283, 259382.011700000613928 ], [ 356161.744999997317791, 259404.228100001811981 ], [ 356145.093299999833107, 259307.227099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702052200", "MAP": "D9-2389-T83", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.9560274, "LATITUDE": 18.36406389, "OBJECTID_1": 3176, "PARCEL_NO_": "102702052200", "Tax_Legal_": "6G-6,6G-7 & 6G-8 ESTATE HULL NO.4 LT NORTHSIDE QTR", "Name": "LAPLACE FAMILY REVOCABLE TRUST", "Address": "PO Box 152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 209200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.53072735000001, "SHAPE_Area": 544.76485668400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356121.90429999679327, 259324.445700000971556 ], [ 356114.210500001907349, 259330.158599998801947 ], [ 356115.072400003671646, 259332.631700001657009 ], [ 356117.136200003325939, 259339.457899998873472 ], [ 356123.645000003278255, 259363.746700000017881 ], [ 356125.391199998557568, 259370.255499999970198 ], [ 356126.185000002384186, 259375.335499998182058 ], [ 356130.471199996769428, 259411.054299999028444 ], [ 356137.456200003623962, 259409.46680000051856 ], [ 356137.456200003623962, 259408.196800000965595 ], [ 356137.456200003623962, 259406.609299998730421 ], [ 356137.932499997317791, 259405.656800001859665 ], [ 356139.361199997365475, 259404.386799998581409 ], [ 356138.884999997913837, 259400.100499998778105 ], [ 356137.615000002086163, 259399.782999999821186 ], [ 356136.979999996721745, 259399.624299999326468 ], [ 356136.344999998807907, 259398.98930000141263 ], [ 356135.71000000089407, 259397.084300000220537 ], [ 356133.170000001788139, 259375.653000000864267 ], [ 356131.582500003278255, 259369.938000001013279 ], [ 356130.1537000015378, 259364.540500000119209 ], [ 356127.77250000089407, 259357.079199999570847 ], [ 356119.993699997663498, 259329.932900000363588 ], [ 356120.469899997115135, 259327.551699999719858 ], [ 356121.90429999679327, 259324.445700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702052300", "MAP": "D9-7557-T005", "PARCEL_NAM": "6G-4", "ACRE": "1.11", "LONGITUDE": -64.95568647, "LATITUDE": 18.3646849, "OBJECTID_1": 3177, "PARCEL_NO_": "102702052300", "Tax_Legal_": "6G-4 ESTATE HULL NO.4 LT NORTHSIDE QTR", "Name": "LAPLACE FAMILY REVOCABLE TRUST", "Address": "PO Box 152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 135100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.58814696600001, "SHAPE_Area": 3690.5948710500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356132.895999997854233, 259410.503199998289347 ], [ 356135.045199997723103, 259447.709100000560284 ], [ 356147.745200000703335, 259461.044100001454353 ], [ 356158.857799999415874, 259463.584100000560284 ], [ 356158.146700002253056, 259480.534000001847744 ], [ 356196.893200002610683, 259482.471700001507998 ], [ 356198.040600001811981, 259467.199000000953674 ], [ 356198.834399998188019, 259455.769000001251698 ], [ 356161.744999997317791, 259404.228100001811981 ], [ 356133.923600003123283, 259382.011700000613928 ], [ 356135.71000000089407, 259397.084300000220537 ], [ 356136.344999998807907, 259398.98930000141263 ], [ 356136.979999996721745, 259399.624299999326468 ], [ 356137.615000002086163, 259399.782999999821186 ], [ 356138.884999997913837, 259400.100499998778105 ], [ 356139.361199997365475, 259404.386799998581409 ], [ 356137.932499997317791, 259405.656800001859665 ], [ 356137.456200003623962, 259406.609299998730421 ], [ 356137.456200003623962, 259408.196800000965595 ], [ 356137.456200003623962, 259409.46680000051856 ], [ 356132.895999997854233, 259410.503199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702020800", "MAP": "B9-201-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95243609000001, "LATITUDE": 18.36443852, "OBJECTID_1": 3011, "PARCEL_NO_": "102702020800", "Tax_Legal_": "HULL 5D LITTLE NORTHSIDE", "Name": "BRYAN, EDITH", "Address": "PO Box 9517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 269500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.08975848799997, "SHAPE_Area": 4932.4906143400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356555.818499997258186, 259387.184500001370907 ], [ 356492.974200002849102, 259390.432399999350309 ], [ 356427.151500001549721, 259410.857700001448393 ], [ 356445.619300000369549, 259420.085900001227856 ], [ 356482.630599997937679, 259429.676899999380112 ], [ 356492.254199996590614, 259435.877399999648333 ], [ 356493.834399998188019, 259439.690000001341105 ], [ 356541.940800003707409, 259458.857500001788139 ], [ 356544.408500000834465, 259446.112900000065565 ], [ 356553.537399999797344, 259398.965399999171495 ], [ 356555.818499997258186, 259387.184500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104026200", "MAP": "D9-3172-T85", "PARCEL_NAM": "5G-3", "ACRE": "1.0", "LONGITUDE": -64.95272053, "LATITUDE": 18.3652576, "OBJECTID_1": 629, "PARCEL_NO_": "101104026200", "Tax_Legal_": "HULL 5G-3 LT. NORTHSIDE", "Name": "MERRITT, CLARK & BOEL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 156800, "Improved_V": 186200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.19742206199999, "SHAPE_Area": 3089.77687926 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356450.120899997651577, 259459.597199998795986 ], [ 356474.453599996864796, 259564.170099999755621 ], [ 356498.360200002789497, 259562.059799998998642 ], [ 356482.151799999177456, 259451.064599998295307 ], [ 356476.803000003099442, 259451.160799998790026 ], [ 356472.758799999952316, 259452.60530000180006 ], [ 356465.453500002622604, 259458.245099999010563 ], [ 356457.36879999935627, 259460.712000001221895 ], [ 356450.120899997651577, 259459.597199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704020900", "MAP": "D9-3172-T85", "PARCEL_NAM": "5G", "ACRE": null, "LONGITUDE": -64.95239182, "LATITUDE": 18.36516421, "OBJECTID_1": 3501, "PARCEL_NO_": "102704020900", "Tax_Legal_": "BONNE RESOLUTION 5G LITTLE NORTHSIDE", "Name": "NELSON MCDONALD PETTY JR", "Address": "PO Box 302069", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032069, "Country": "United States", "Land_Value": 22100, "Improved_V": 333300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.945253154, "SHAPE_Area": 4785.7599296099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356482.151799999177456, 259451.064599998295307 ], [ 356498.360200002789497, 259562.059799998998642 ], [ 356515.148199997842312, 259560.577899999916553 ], [ 356522.617399998009205, 259558.655200000852346 ], [ 356524.243699997663498, 259550.25620000064373 ], [ 356533.707599997520447, 259501.378499999642372 ], [ 356541.940800003707409, 259458.857500001788139 ], [ 356493.834399998188019, 259439.690000001341105 ], [ 356492.977799996733665, 259445.593600001186132 ], [ 356490.531900003552437, 259448.739999998360872 ], [ 356484.867899999022484, 259451.015700001269579 ], [ 356482.151799999177456, 259451.064599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104026000", "MAP": "D9-3172-T85", "PARCEL_NAM": "5G-1", "ACRE": "1.0", "LONGITUDE": -64.95339282, "LATITUDE": 18.36539799, "OBJECTID_1": 627, "PARCEL_NO_": "101104026000", "Tax_Legal_": "HULL 5G-1 4A LT. NORTHSIDE", "Name": "BELCHER -ZACHMAN FAMILY TRUST", "Address": "PO Box 11726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 138300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.10849565799998, "SHAPE_Area": 3395.0725525600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356431.597999997437, 259567.953000001609325 ], [ 356411.308300003409386, 259472.156300000846386 ], [ 356408.144100002944469, 259464.953200001269579 ], [ 356400.874700002372265, 259466.371399998664856 ], [ 356397.627899996936321, 259468.877900000661612 ], [ 356392.772100001573563, 259470.949099998921156 ], [ 356387.9324000030756, 259471.120600000023842 ], [ 356382.286399997770786, 259471.285500001162291 ], [ 356392.123400002717972, 259560.159400001168251 ], [ 356393.359600000083447, 259571.328299999237061 ], [ 356431.597999997437, 259567.953000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104026600", "MAP": "D9-5457-T93", "PARCEL_NAM": "7CB-2", "ACRE": ".08", "LONGITUDE": -64.95189923, "LATITUDE": 18.36643477, "OBJECTID_1": 632, "PARCEL_NO_": "101104026600", "Tax_Legal_": "HULL 7CB-2 LITTLE NORTHSIDE QTR", "Name": "FOMBRUM, LIONEL & LILLIANE", "Address": "PO Box 304520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.200975578, "SHAPE_Area": 561.69096771299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356576.794399999082088, 259644.85249999910593 ], [ 356562.841399997472763, 259613.362399999052286 ], [ 356558.238899998366833, 259624.584199998527765 ], [ 356545.516000002622604, 259655.604899998754263 ], [ 356548.453000001609325, 259654.185899998992682 ], [ 356550.906000003218651, 259653.382699999958277 ], [ 356571.094400003552437, 259646.771899998188019 ], [ 356576.794399999082088, 259644.85249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104028600", "MAP": "D9-6587-T99", "PARCEL_NAM": "14-C", "ACRE": ".34", "LONGITUDE": -64.95380225, "LATITUDE": 18.36619202, "OBJECTID_1": 650, "PARCEL_NO_": "101104028600", "Tax_Legal_": "14C ESTATE HULL 4A LITTLE NORTHSIDE QTR", "Name": "QUERRARD, RODNEY", "Address": "7629 Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.13629471799999, "SHAPE_Area": 1297.7471053899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356386.393299996852875, 259612.251200001686811 ], [ 356358.842100001871586, 259585.44310000166297 ], [ 356339.699600003659725, 259588.690400000661612 ], [ 356355.855800002813339, 259639.521800000220537 ], [ 356386.393299996852875, 259612.251200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104022200", "MAP": "D9-6587-T99", "PARCEL_NAM": "14-A", "ACRE": ".34", "LONGITUDE": -64.95344586, "LATITUDE": 18.36634081, "OBJECTID_1": 590, "PARCEL_NO_": "101104022200", "Tax_Legal_": "14-A ESTATE HULL 4A LITTLE NORTHSIDE QTR", "Name": "LEDEE, MARY EVELYN", "Address": "6005 St Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67800, "Improved_V": 16200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.166477525, "SHAPE_Area": 1434.52813952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356422.722800001502037, 259610.81529999896884 ], [ 356386.393299996852875, 259612.251200001686811 ], [ 356355.855800002813339, 259639.521800000220537 ], [ 356384.087499998509884, 259638.486299999058247 ], [ 356416.36879999935627, 259635.372999999672174 ], [ 356429.260799996554852, 259636.534000001847744 ], [ 356432.614200003445148, 259636.871599998325109 ], [ 356422.722800001502037, 259610.81529999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203014100", "MAP": "G9-2953-T79", "PARCEL_NAM": "18-3-A", "ACRE": ".97", "LONGITUDE": -64.94389762, "LATITUDE": 18.36968858, "OBJECTID_1": 741, "PARCEL_NO_": "101203014100", "Tax_Legal_": "ST PETER 18-3A LT NORTHSIDE", "Name": "NEUMANN, ALFRED & IRMELA CO-TRUST", "Address": "BOX 3830", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 129100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.90941360400001, "SHAPE_Area": 3249.7482854599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357432.879900000989437, 260051.525499999523163 ], [ 357406.276399999856949, 259947.917300000786781 ], [ 357379.718800000846386, 259960.021200001239777 ], [ 357385.784000001847744, 259995.200199998915195 ], [ 357394.254199996590614, 260042.13230000063777 ], [ 357395.780599996447563, 260052.277300000190735 ], [ 357432.879900000989437, 260051.525499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010700", "MAP": "G9-2953-T79", "PARCEL_NAM": "18-3-B", "ACRE": null, "LONGITUDE": -64.94358871, "LATITUDE": 18.36968815, "OBJECTID_1": 707, "PARCEL_NO_": "101203010700", "Tax_Legal_": "ST PETER 18 3 LITTLE NORTHSIDE QTR", "Name": "NEUMANN, ALFRED & IRMELA CO-TRUST", "Address": "PO Box 303830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 132900, "Improved_V": 245900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 343.91369109300001, "SHAPE_Area": 4171.6797272000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357406.276399999856949, 259947.917300000786781 ], [ 357432.879900000989437, 260051.525499999523163 ], [ 357434.440399996936321, 260057.65989999845624 ], [ 357438.410800002515316, 260064.869600001722574 ], [ 357447.195699997246265, 260074.862900000065565 ], [ 357459.22749999910593, 260082.349599998444319 ], [ 357466.480700001120567, 260082.831199999898672 ], [ 357438.523000001907349, 259933.220499999821186 ], [ 357406.276399999856949, 259947.917300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203014900", "MAP": "D9-7724-T003", "PARCEL_NAM": "13-5L", "ACRE": ".02", "LONGITUDE": -64.94350964, "LATITUDE": 18.36640601, "OBJECTID_1": 749, "PARCEL_NO_": "101203014900", "Tax_Legal_": "13-5F&13-5L ESTATE ST.PETER No.2 LT.NORTHSIDE QTR.", "Name": "CURRY, DIANE & FRANCE, CARY", "Address": "7480 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.404008701, "SHAPE_Area": 82.425281606300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357454.402699999511242, 259660.372400000691414 ], [ 357438.904700003564358, 259603.135899998247623 ], [ 357451.938900001347065, 259661.910100001841784 ], [ 357454.402699999511242, 259660.372400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94523718000001, "LATITUDE": 18.36936366, "OBJECTID_1": 705, "PARCEL_NO_": "101203010500", "Tax_Legal_": "17-5 REM CONSOLIDATED & EASEMENT B,C,D ST. PETER NO. 2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, BASIL", "Address": "PO Box 10333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 303100, "Improved_V": 138900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.91076831399999, "SHAPE_Area": 476.31614249799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357265.3074000030756, 259942.949400000274181 ], [ 357256.77080000191927, 259937.397599998861551 ], [ 357259.02419999986887, 259967.469399999827147 ], [ 357258.998700000345707, 259970.615100000053644 ], [ 357258.377599999308586, 259972.857200000435114 ], [ 357260.346199996769428, 259990.250599998980761 ], [ 357260.933200001716614, 259992.202899999916553 ], [ 357261.224899999797344, 259993.4037000015378 ], [ 357270.297600001096725, 259992.936599999666214 ], [ 357265.3074000030756, 259942.949400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017300", "MAP": "D9-7167-T003", "PARCEL_NAM": "17-5E", "ACRE": "1.06", "LONGITUDE": -64.94564979, "LATITUDE": 18.36901794, "OBJECTID_1": 772, "PARCEL_NO_": "101203017300", "Tax_Legal_": "17-5E ESTATE ST.PETER #2 LITTLE NORTHSIDE QTR", "Name": "RITTER, M. & C. A. & BUBAN, JR. , J. A. C", "Address": "17432 Westbrook Dr", "City": "ORLAND PARK", "State": "Illinois", "Zip": 60467, "Country": "United States", "Land_Value": 150800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.137206261700001, "SHAPE_Area": 60.930987193500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357226.648999996483326, 259923.969300001859665 ], [ 357223.078900001943111, 259922.10530000180006 ], [ 357214.853299997746944, 259931.75620000064373 ], [ 357214.803400002419949, 259937.899399999529123 ], [ 357226.648999996483326, 259923.969300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010500", "MAP": "D9-7040-T002", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94667774, "LATITUDE": 18.36973266, "OBJECTID_1": 705, "PARCEL_NO_": "101203010500", "Tax_Legal_": "17-5 REM CONSOLIDATED & EASEMENT B,C,D ST. PETER NO. 2 LITTLE NORTHSIDE QTR", "Name": "BRYAN, BASIL", "Address": "PO Box 10333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 303100, "Improved_V": 138900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.43835911900001, "SHAPE_Area": 649.49764870700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357086.288800001144409, 259978.007199998944998 ], [ 357086.17960000038147, 259969.39299999922514 ], [ 357081.980400003492832, 259972.026500001549721 ], [ 357081.934799998998642, 259972.055799998342991 ], [ 357079.448499999940395, 259973.653799999505281 ], [ 357086.439699999988079, 259990.385200001299381 ], [ 357090.038000002503395, 259996.946899998933077 ], [ 357094.27139999717474, 260002.238600000739098 ], [ 357097.056199997663498, 260004.535999998450279 ], [ 357102.738099999725819, 260009.223600000143051 ], [ 357109.299800001084805, 260014.5152000002563 ], [ 357142.743199996650219, 260035.682000000029802 ], [ 357147.82320000231266, 260029.966899998486042 ], [ 357145.28320000320673, 260028.061900001019239 ], [ 357118.824799999594688, 260011.763599999248981 ], [ 357104.219700001180172, 260002.238600000739098 ], [ 357098.889799997210503, 259995.231100000441074 ], [ 357086.288800001144409, 259978.007199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203011000", "MAP": "F9-1643-T64", "PARCEL_NAM": "18-1", "ACRE": null, "LONGITUDE": -64.94380475, "LATITUDE": 18.36780421, "OBJECTID_1": 710, "PARCEL_NO_": "101203011000", "Tax_Legal_": "ST PETER 18 1 LITTLE NORTHSIDE QTR", "Name": "NEUMANN, ALFRED & IRMELA CO-TRUST", "Address": "PO Box 303830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 186200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.494174899899999, "SHAPE_Area": 44.771428516299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357410.880699999630451, 259794.233399998396635 ], [ 357414.261500000953674, 259800.017499998211861 ], [ 357421.295500002801418, 259798.21059999987483 ], [ 357417.345600001513958, 259792.597600001841784 ], [ 357410.880699999630451, 259794.233399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203011000", "MAP": "F9-1643-T64", "PARCEL_NAM": "18-1", "ACRE": null, "LONGITUDE": -64.94369635, "LATITUDE": 18.36841466, "OBJECTID_1": 710, "PARCEL_NO_": "101203011000", "Tax_Legal_": "ST PETER 18 1 LITTLE NORTHSIDE QTR", "Name": "NEUMANN, ALFRED & IRMELA CO-TRUST", "Address": "PO Box 303830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 186200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.88068458499998, "SHAPE_Area": 5113.3337535500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357488.362899996340275, 259844.675299998372793 ], [ 357485.409500002861023, 259828.561599999666214 ], [ 357362.228399999439716, 259859.377300001680851 ], [ 357368.1199000030756, 259891.619800001382828 ], [ 357368.892099998891354, 259895.636900000274181 ], [ 357369.651000000536442, 259900.195799998939037 ], [ 357492.479299999773502, 259867.133799999952316 ], [ 357488.362899996340275, 259844.675299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203014300", "MAP": "G9-2989-T80", "PARCEL_NAM": "18-A", "ACRE": ".5", "LONGITUDE": -64.94410086000001, "LATITUDE": 18.36811702, "OBJECTID_1": 743, "PARCEL_NO_": "101203014300", "Tax_Legal_": "ST PETER 18-A LT NORTHSIDE", "Name": "DORIS L PALANCIA RESTATED REVOCABLE FAMILY TRUST", "Address": "18-A Estate St. Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 374000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.41372403599999, "SHAPE_Area": 2406.5234328400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357413.527000002563, 259846.544100001454353 ], [ 357407.425599999725819, 259801.773600000888109 ], [ 357388.196099996566772, 259806.71339999884367 ], [ 357354.251900002360344, 259815.723700001835823 ], [ 357362.228399999439716, 259859.377300001680851 ], [ 357413.527000002563, 259846.544100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203015500", "MAP": "D9-5188-T91", "PARCEL_NAM": "13-5H", "ACRE": ".02", "LONGITUDE": -64.94309515, "LATITUDE": 18.36569696, "OBJECTID_1": 754, "PARCEL_NO_": "101203015500", "Tax_Legal_": "ST PETER 13-5H LT.NORTHSIDE QTR.", "Name": "QUERRARD, KATHLEEN", "Address": "PO Box 10942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.502731402099997, "SHAPE_Area": 120.06049627900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357490.109300002455711, 259551.150499999523163 ], [ 357489.230599999427795, 259559.649000000208616 ], [ 357488.557899996638298, 259566.155999999493361 ], [ 357491.115500003099442, 259571.014299999922514 ], [ 357492.713200002908707, 259574.049199998378754 ], [ 357498.994400002062321, 259565.719000000506639 ], [ 357490.109300002455711, 259551.150499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203017100", "MAP": "D9-6483-T98", "PARCEL_NAM": "14-5-A", "ACRE": ".34", "LONGITUDE": -64.94403612000001, "LATITUDE": 18.36761511, "OBJECTID_1": 770, "PARCEL_NO_": "101203017100", "Tax_Legal_": "ST.PETER 14-5A #2 LT.NORTHSIDE QTR.", "Name": "MCNALLY, JEFFREY S. & EILEEN M.", "Address": "542 E Mountain Rd S", "City": "Cold Spring", "State": "New York", "Zip": 10516, "Country": "United States", "Land_Value": 55200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.31023077899999, "SHAPE_Area": 1147.49148053 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357381.531499996781349, 259722.598999999463558 ], [ 357373.597199998795986, 259721.94539999961853 ], [ 357377.447200000286102, 259743.2972999997437 ], [ 357380.499799996614456, 259763.58729999884963 ], [ 357385.139899998903275, 259786.845600001513958 ], [ 357387.44370000064373, 259800.374400001019239 ], [ 357388.196099996566772, 259806.71339999884367 ], [ 357414.261500000953674, 259800.017499998211861 ], [ 357410.880699999630451, 259794.233399998396635 ], [ 357408.524700000882149, 259786.825899999588728 ], [ 357394.198100000619888, 259764.754900000989437 ], [ 357386.273500002920628, 259748.4358000010252 ], [ 357384.675200000405312, 259746.734000001102686 ], [ 357380.729999996721745, 259736.569200001657009 ], [ 357380.001000002026558, 259727.486200001090765 ], [ 357381.531499996781349, 259722.598999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203020200", "MAP": "B9-497-T79", "PARCEL_NAM": "9I", "ACRE": ".50", "LONGITUDE": -64.94829755000001, "LATITUDE": 18.36548026, "OBJECTID_1": 783, "PARCEL_NO_": "101203020200", "Tax_Legal_": "ST PETER 9I LITTLE NORTHSIDE", "Name": "SCHWARTZ, BENJAMIN", "Address": "8168 Crown Bay", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.07904337100001, "SHAPE_Area": 1844.5573659 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356971.3412000015378, 259518.458700001239777 ], [ 356948.375900000333786, 259513.080200001597404 ], [ 356945.495200000703335, 259512.247900001704693 ], [ 356942.436099998652935, 259514.895100001245737 ], [ 356916.922600001096725, 259535.234299998730421 ], [ 356899.026199996471405, 259539.3310999982059 ], [ 356901.992700003087521, 259543.509399998933077 ], [ 356906.697700001299381, 259550.858199998736382 ], [ 356950.533600002527237, 259548.566100001335144 ], [ 356971.793700002133846, 259553.373399998992682 ], [ 356971.3412000015378, 259518.458700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203021500", "MAP": "D9-6478-T98", "PARCEL_NAM": "23D-1", "ACRE": ".22", "LONGITUDE": -64.94587736, "LATITUDE": 18.36475442, "OBJECTID_1": 794, "PARCEL_NO_": "101203021500", "Tax_Legal_": "ST PETER 23D-1 LITTLE NORTHSIDE QTR.", "Name": "SIGUARDARDOTTIR, DAGMAR & BRYAN, ALAN G.", "Address": "7489 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.488571439, "SHAPE_Area": 1007.34314281 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357218.54389999806881, 259465.041999999433756 ], [ 357194.85360000282526, 259424.466600000858307 ], [ 357190.019400000572205, 259424.328600000590086 ], [ 357189.894000001251698, 259452.331700000911951 ], [ 357189.745800003409386, 259485.425200000405312 ], [ 357192.050399996340275, 259484.71339999884367 ], [ 357194.1908999979496, 259484.052200000733137 ], [ 357201.490900002419949, 259479.045699998736382 ], [ 357218.54389999806881, 259465.041999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94081213, "LATITUDE": 18.364619, "OBJECTID_1": 4023, "PARCEL_NO_": "102802010100", "Tax_Legal_": "LERKENLUND 1-14 GR NORTHSIDE", "Name": "BALLARD, WILLIAM HUDSON & ROBIN (TRUSTEES)", "Address": "PO Box 304977", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 138500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.434660229599999, "SHAPE_Area": 84.550358503599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357749.506300002336502, 259453.883299998939037 ], [ 357745.774300001561642, 259452.321400001645088 ], [ 357743.316699996590614, 259451.911800000816584 ], [ 357741.901699997484684, 259451.204300001263618 ], [ 357740.6503000035882, 259450.64809999987483 ], [ 357739.942100003361702, 259449.467799998819828 ], [ 357739.557300001382828, 259448.120999999344349 ], [ 357738.556599996984005, 259445.919599998742342 ], [ 357738.207400001585484, 259443.823899999260902 ], [ 357735.441799998283386, 259442.243599999696016 ], [ 357731.120200000703335, 259441.1064000017941 ], [ 357728.888300001621246, 259440.497699998319149 ], [ 357724.980099998414516, 259439.118299998342991 ], [ 357722.5912000015378, 259439.118299998342991 ], [ 357720.498400002717972, 259439.232099998742342 ], [ 357720.048500001430511, 259441.698600001633167 ], [ 357722.657399997115135, 259441.556699998676777 ], [ 357724.562399998307228, 259441.556699998676777 ], [ 357728.160800002515316, 259442.826699998229742 ], [ 357730.489100001752377, 259443.46169999986887 ], [ 357734.510799996554852, 259444.520100001245737 ], [ 357735.992499999701977, 259445.366700001060963 ], [ 357736.204099997878075, 259446.636700000613928 ], [ 357737.262500002980232, 259448.96510000154376 ], [ 357737.6858000010252, 259450.446699999272823 ], [ 357738.955799996852875, 259452.563400000333786 ], [ 357740.860799998044968, 259453.410100001841784 ], [ 357742.554099999368191, 259454.256700001657009 ], [ 357745.094099998474121, 259454.680100001394749 ], [ 357747.791599996387959, 259455.809000000357628 ], [ 357749.506300002336502, 259453.883299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101204010100", "MAP": "B9-359-T72", "PARCEL_NAM": "1-10", "ACRE": null, "LONGITUDE": -64.9405682, "LATITUDE": 18.36472187, "OBJECTID_1": 797, "PARCEL_NO_": "101204010100", "Tax_Legal_": "LERKENLUND 1-10 GR NORTHSIDE QTR", "Name": "QUERRARD, BEATRICE", "Address": "7477 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.898865417, "SHAPE_Area": 993.18021143800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357784.756899997591972, 259448.355799999088049 ], [ 357774.040299996733665, 259433.395399998873472 ], [ 357756.52419999986887, 259446.0016999989748 ], [ 357742.765799999237061, 259461.453400000929832 ], [ 357742.384999997913837, 259468.611999999731779 ], [ 357741.707500003278255, 259481.350099999457598 ], [ 357749.205200001597404, 259484.706399999558926 ], [ 357753.053599998354912, 259478.282699998468161 ], [ 357757.119300000369549, 259474.30519999936223 ], [ 357784.756899997591972, 259448.355799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301014800", "MAP": null, "PARCEL_NAM": "10-A-5", "ACRE": null, "LONGITUDE": -64.9304222, "LATITUDE": 18.37394024, "OBJECTID_1": 838, "PARCEL_NO_": "101301014800", "Tax_Legal_": "PETERBORG 10-A-5 GT. NORTHSIDE QTR.", "Name": "TENAFIVE LLC", "Address": "PO BOX 270621", "City": "Flower Mound", "State": "Texas", "Zip": 75027, "Country": "United States", "Land_Value": 163300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.650922447, "SHAPE_Area": 2467.5317192799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358793.170199997723103, 260472.585200000554323 ], [ 358811.150399997830391, 260519.781100001186132 ], [ 358826.382100000977516, 260513.404199998825788 ], [ 358852.243400000035763, 260506.64979999884963 ], [ 358843.805600002408028, 260455.918299999088049 ], [ 358814.713600002229214, 260463.279599998146296 ], [ 358793.170199997723103, 260472.585200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301014700", "MAP": null, "PARCEL_NAM": "10-A-4", "ACRE": null, "LONGITUDE": -64.93081796, "LATITUDE": 18.37412644, "OBJECTID_1": 837, "PARCEL_NO_": "101301014700", "Tax_Legal_": "PETERBORG 10-A-4 No12 GREAT NORTHSIDE QTR.", "Name": "COMISSIONG,JR., GILBERT K.", "Address": "PO Box 9401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 159700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.627887856, "SHAPE_Area": 2254.6752807600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358811.150399997830391, 260519.781100001186132 ], [ 358793.170199997723103, 260472.585200000554323 ], [ 358788.814499996602535, 260474.466600000858307 ], [ 358783.434799998998642, 260477.734200000762939 ], [ 358770.982100002467632, 260485.297600001096725 ], [ 358753.126299999654293, 260498.872499998658895 ], [ 358751.845399998128414, 260500.176600001752377 ], [ 358778.177500002086163, 260543.3141999989748 ], [ 358780.183100000023842, 260541.101599998772144 ], [ 358792.364100001752377, 260531.068799998611212 ], [ 358803.262999996542931, 260524.205299999564886 ], [ 358808.578500002622604, 260520.857900001108646 ], [ 358811.150399997830391, 260519.781100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301016500", "MAP": "D9-6083-T96", "PARCEL_NAM": "10-15-1", "ACRE": null, "LONGITUDE": -64.93140226, "LATITUDE": 18.3759891, "OBJECTID_1": 852, "PARCEL_NO_": "101301016500", "Tax_Legal_": "PETERBORG 10-15-1 GT. NORTHSIDE QTR.", "Name": "PJJ LIMITED LP", "Address": "15 Memorial Square", "City": "Narragansett", "State": "Rhode Island", "Zip": 28827000, "Country": "United States", "Land_Value": 189800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.453890187, "SHAPE_Area": 363.01068491500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358696.057300001382828, 260698.532999999821186 ], [ 358721.134300000965595, 260718.212099999189377 ], [ 358735.627300001680851, 260732.714000001549721 ], [ 358737.241899996995926, 260731.674400001764297 ], [ 358741.074600003659725, 260727.940499998629093 ], [ 358735.835799999535084, 260722.750199999660254 ], [ 358704.686099998652935, 260695.004099998623133 ], [ 358702.241999998688698, 260697.939500000327826 ], [ 358699.034699998795986, 260695.802299998700619 ], [ 358696.057300001382828, 260698.532999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301016200", "MAP": "D9-6083-T96", "PARCEL_NAM": "10-16-2", "ACRE": ".13", "LONGITUDE": -64.93134902, "LATITUDE": 18.37636032, "OBJECTID_1": 849, "PARCEL_NO_": "101301016200", "Tax_Legal_": "PETERBORG 10-15 REM, 10-16-2 & 9 -22-1 GREAT NORTHSIDE QUARTER", "Name": "FAIR WINDS VILLA, LLC", "Address": "15 Memorial Sq", "City": "Narragansett", "State": "Rhode Island", "Zip": 2882, "Country": "United States", "Land_Value": 175800, "Improved_V": 565000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.305231522, "SHAPE_Area": 798.81849711699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358735.627300001680851, 260732.714000001549721 ], [ 358703.850400000810623, 260753.172600001096725 ], [ 358709.772900000214577, 260760.4847999997437 ], [ 358720.846699997782707, 260774.353799998760223 ], [ 358740.343099996447563, 260758.534600000828505 ], [ 358735.627300001680851, 260732.714000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93146779, "LATITUDE": 18.37646182, "OBJECTID_1": 849, "PARCEL_NO_": "101301016200", "Tax_Legal_": "PETERBORG 10-15 REM, 10-16-2 & 9 -22-1 GREAT NORTHSIDE QUARTER", "Name": "FAIR WINDS VILLA, LLC", "Address": "15 Memorial Sq", "City": "Narragansett", "State": "Rhode Island", "Zip": 2882, "Country": "United States", "Land_Value": 175800, "Improved_V": 565000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.716536036600004, "SHAPE_Area": 61.2872140359 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358700.995099999010563, 260749.647199999541044 ], [ 358713.831799998879433, 260771.710900001227856 ], [ 358720.846699997782707, 260774.353799998760223 ], [ 358709.772900000214577, 260760.4847999997437 ], [ 358700.995099999010563, 260749.647199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304014600", "MAP": "D9-4878-T90", "PARCEL_NAM": "8-28-1", "ACRE": null, "LONGITUDE": -64.92303181, "LATITUDE": 18.37109284, "OBJECTID_1": 970, "PARCEL_NO_": "101304014600", "Tax_Legal_": "PETERBORG 8-28-1 GT,NORTHSIDE QTR.", "Name": "FALEY, TIMOTHY L. & KELLEY HEATH FALEY", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.302710066400003, "SHAPE_Area": 26.6362397585 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359618.034699998795986, 260175.653999999165535 ], [ 359616.286700002849102, 260174.309099998325109 ], [ 359590.39299999922514, 260184.862900000065565 ], [ 359618.034699998795986, 260175.653999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101403019900", "MAP": "F9-3685-T79", "PARCEL_NAM": "R.O.W C-48", "ACRE": ".20", "LONGITUDE": -64.90871424, "LATITUDE": 18.36541372, "OBJECTID_1": 1121, "PARCEL_NO_": "101403019900", "Tax_Legal_": "LOVENLUND/POLVER C-48 GT. NORTHSIDE QTR.", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.52063121200001, "SHAPE_Area": 490.62433536999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361098.816899999976158, 259556.539700001478195 ], [ 361081.826800003647804, 259563.155699998140335 ], [ 361093.106200002133846, 259564.303399998694658 ], [ 361102.773000001907349, 259565.438000001013279 ], [ 361127.768700003623962, 259565.642599999904633 ], [ 361158.410300001502037, 259565.682300001382828 ], [ 361164.054499998688698, 259565.728500001132488 ], [ 361164.112099997699261, 259558.973999999463558 ], [ 361161.691299997270107, 259559.165199998766184 ], [ 361160.093099996447563, 259557.46339999884367 ], [ 361153.626400001347065, 259559.310300000011921 ], [ 361102.825099997222424, 259559.316700000315905 ], [ 361099.601700000464916, 259559.079300001263618 ], [ 361098.816899999976158, 259556.539700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101404010500", "MAP": "D9-6358-T97", "PARCEL_NAM": "C-34-1", "ACRE": ".02", "LONGITUDE": -64.90712526, "LATITUDE": 18.3647407, "OBJECTID_1": 1125, "PARCEL_NO_": "101404010500", "Tax_Legal_": "LOVENLUND C-8(64B)&C-34-1 No.2 GREAT NORTHSIDE QTR.", "Name": "HARRIGAN FAMILY REVOC TR", "Address": "PO Box 304343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 179500, "Improved_V": 645600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.435297363999993, "SHAPE_Area": 166.342090023 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361293.57150000333786, 259475.636399999260902 ], [ 361287.369300000369549, 259478.078499998897314 ], [ 361295.263400003314018, 259497.98589999973774 ], [ 361296.669600002467632, 259502.960900001227856 ], [ 361302.566699996590614, 259501.091899998486042 ], [ 361293.57150000333786, 259475.636399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101404019900", "MAP": "F9-3686-T79", "PARCEL_NAM": "C-49 ROW", "ACRE": ".17", "LONGITUDE": -64.90765956, "LATITUDE": 18.3649582, "OBJECTID_1": 1136, "PARCEL_NO_": "101404019900", "Tax_Legal_": "LOVENLUND/RAIL CAT C-49 GT. NORTHSIDE", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 7600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.28796617, "SHAPE_Area": 419.13816496599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361214.55120000243187, 259506.824499998241663 ], [ 361201.599799998104572, 259512.629099998623133 ], [ 361228.188400000333786, 259515.168800000101328 ], [ 361269.279700003564358, 259519.093699999153614 ], [ 361266.914700001478195, 259512.741500001400709 ], [ 361264.501199997961521, 259512.088500000536442 ], [ 361263.716499999165535, 259509.548900000751019 ], [ 361258.075900003314018, 259509.080600000917912 ], [ 361254.830899998545647, 259511.375999998301268 ], [ 361214.55120000243187, 259506.824499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104013600", "MAP": "F9-2289-T68", "PARCEL_NAM": "29A", "ACRE": ".25", "LONGITUDE": -64.88868559, "LATITUDE": 18.35031382, "OBJECTID_1": 6768, "PARCEL_NO_": "103104013600", "Tax_Legal_": "MANDAHL 29A GT. NORTHSIDE", "Name": "RICHARDSON, BRANDON H.& LORRAINE A.", "Address": "PO BOX 304418", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25200, "Improved_V": 165300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.93800974199999, "SHAPE_Area": 1073.01109724 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363262.301600001752377, 257885.818999998271465 ], [ 363254.718000002205372, 257891.346900001168251 ], [ 363245.778499998152256, 257899.506400000303984 ], [ 363244.160400003194809, 257900.126400001347065 ], [ 363243.341499999165535, 257901.59739999845624 ], [ 363241.723499998450279, 257902.217399999499321 ], [ 363236.840700000524521, 257907.454799998551607 ], [ 363234.700000002980232, 257909.203600000590086 ], [ 363248.8074000030756, 257930.797600001096725 ], [ 363281.351199999451637, 257910.6891999989748 ], [ 363262.301600001752377, 257885.818999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301030500", "MAP": "A9-672-T006", "PARCEL_NAM": "4-5", "ACRE": "2.8", "LONGITUDE": -65.03058667000001, "LATITUDE": 18.35769385, "OBJECTID_1": 1172, "PARCEL_NO_": "102301030500", "Tax_Legal_": "4-5 ESTATE BOTANY BAY No.7 WESTRND QTR.", "Name": "VON KLEMPERER, VICTOR", "Address": "644 Fernwalk Lane", "City": "Osprey", "State": "Florida", "Zip": 342299083, "Country": "United States", "Land_Value": 490900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 454.27081660699997, "SHAPE_Area": 12774.1360993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348311.217000000178814, 258559.441300000995398 ], [ 348234.531599998474121, 258517.081799998879433 ], [ 348220.177199997007847, 258570.082400001585484 ], [ 348184.70719999819994, 258631.563799999654293 ], [ 348250.006499998271465, 258687.831900000572205 ], [ 348253.12219999730587, 258690.541799999773502 ], [ 348302.050599999725819, 258636.278599999845028 ], [ 348303.249099999666214, 258626.231800001114607 ], [ 348311.217000000178814, 258559.441300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102301031600", "MAP": "A9-667B-T006", "PARCEL_NAM": "4-16", "ACRE": null, "LONGITUDE": -65.02682429, "LATITUDE": 18.35793312, "OBJECTID_1": 1176, "PARCEL_NO_": "102301031600", "Tax_Legal_": "4-16 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "DUNN III, LAWRENCE J. & THERESA N.", "Address": "260 Holcombe Way", "City": "Lambertville", "State": "New Jersey", "Zip": 8530, "Country": "United States", "Land_Value": 507600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 560.84801640700005, "SHAPE_Area": 18205.606039599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348644.438199996948242, 258526.348099999129772 ], [ 348643.049137329275254, 258526.299789387499914 ], [ 348641.668200001120567, 258526.457400001585484 ], [ 348639.521099999547005, 258530.877000000327826 ], [ 348603.981799997389317, 258604.031100001186132 ], [ 348569.742899999022484, 258674.508400000631809 ], [ 348568.552199997007847, 258676.959300000220537 ], [ 348578.524099998176098, 258678.420699998736382 ], [ 348583.249487768800464, 258679.122006276564207 ], [ 348587.797242584929336, 258680.584554125671275 ], [ 348592.045596974843647, 258682.769183397671441 ], [ 348595.880800001323223, 258685.617400001734495 ], [ 348600.787886535632424, 258692.156972113793017 ], [ 348606.099930580239743, 258698.372089951182716 ], [ 348611.795534627221059, 258704.237718323682202 ], [ 348617.851756146003027, 258709.730229823820991 ], [ 348624.244199998676777, 258714.827500000596046 ], [ 348633.533309483958874, 258720.929713157354854 ], [ 348643.063632194185629, 258726.647886771272169 ], [ 348652.819300003349781, 258731.972500000149012 ], [ 348659.866434838506393, 258734.227973785629729 ], [ 348667.081329107342754, 258735.869488961267052 ], [ 348674.410599999129772, 258736.884899999946356 ], [ 348682.470200002193451, 258716.928399998694658 ], [ 348722.547399997711182, 258584.951499998569489 ], [ 348724.287100002169609, 258579.222500000149012 ], [ 348713.853215176379308, 258576.248085726227146 ], [ 348703.59910000115633, 258572.703200001269579 ], [ 348697.398018497391604, 258569.79035558772739 ], [ 348691.534100003540516, 258566.247400000691414 ], [ 348685.768281358119566, 258561.731912998395273 ], [ 348680.527400001883507, 258556.616500001400709 ], [ 348671.319899998605251, 258544.128199998289347 ], [ 348668.909809306263924, 258540.096233630465576 ], [ 348665.885153357405216, 258536.502246105723316 ], [ 348662.324000000953674, 258533.438999999314547 ], [ 348659.458395027613733, 258530.881060193554731 ], [ 348656.262330967059825, 258528.750350820220774 ], [ 348652.79900000244379, 258527.089000001549721 ], [ 348650.049009501351975, 258526.503349185193656 ], [ 348647.248324106272776, 258526.255163866240764 ], [ 348644.438199996948242, 258526.348099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102301031900", "MAP": "D9-7861-T006", "PARCEL_NAM": "4-19", "ACRE": "5.6", "LONGITUDE": -65.02609263, "LATITUDE": 18.35675321, "OBJECTID_1": 1179, "PARCEL_NO_": "102301031900", "Tax_Legal_": "4-19 ESTATE BOTANY BAY No.7 WESTEND QTR.", "Name": "DELTA SOUTHERN RESOURCE LLC", "Address": "17732 Highland Rd", "City": "Baton Rouge", "State": "Louisiana", "Zip": 70810, "Country": "United States", "Land_Value": 637900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 679.63765166600001, "SHAPE_Area": 25362.358081499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348828.491099998354912, 258588.096200000494719 ], [ 348827.768399998545647, 258460.236999999731779 ], [ 348641.088500000536442, 258424.536899998784065 ], [ 348637.241499997675419, 258423.583799999207258 ], [ 348630.468099996447563, 258446.86710000038147 ], [ 348612.476400002837181, 258486.978100001811981 ], [ 348609.035019020840991, 258502.834324968775036 ], [ 348606.338100001215935, 258518.833999998867512 ], [ 348606.607409230899066, 258520.502137822302757 ], [ 348607.142405509541277, 258522.104944810358575 ], [ 348607.929062342620455, 258523.600398683280218 ], [ 348608.946755217271857, 258524.949291737604653 ], [ 348610.168802333937492, 258526.116258791036671 ], [ 348611.563164148072246, 258527.070704384241253 ], [ 348613.093283380672801, 258527.787604930461384 ], [ 348614.719043474353384, 258528.248164782038657 ], [ 348616.397820366430096, 258528.440309013531078 ], [ 348618.085600003600121, 258528.359000001102686 ], [ 348623.390243092842866, 258527.278014841780532 ], [ 348628.529632129066158, 258525.576707240717951 ], [ 348633.431500002741814, 258523.278999999165535 ], [ 348638.605767405591905, 258521.783921332476893 ], [ 348643.924059157667216, 258520.932994652423076 ], [ 348649.306500002741814, 258520.739000000059605 ], [ 348653.570355823554564, 258521.771739788120613 ], [ 348657.677410741278436, 258523.314178711822024 ], [ 348661.566981943615247, 258525.343526832002681 ], [ 348665.181599996984005, 258527.829799998551607 ], [ 348670.877346532244701, 258533.534627543936949 ], [ 348676.041599845630117, 258539.724706188892014 ], [ 348680.633199997246265, 258546.350699998438358 ], [ 348684.274082698335405, 258551.5208788360178 ], [ 348688.415561469329987, 258556.299469595367555 ], [ 348693.015799999237061, 258560.638199999928474 ], [ 348698.359197749814484, 258563.861674144776771 ], [ 348703.937978681526147, 258566.658080481458455 ], [ 348709.718077594763599, 258569.010343569767429 ], [ 348715.664200000464916, 258570.904100000858307 ], [ 348717.997272908804007, 258571.79976191019523 ], [ 348720.426700003445148, 258572.38569999858737 ], [ 348721.543765216949396, 258572.730243436264573 ], [ 348722.699703450663947, 258572.904460747435223 ], [ 348723.868696552352048, 258572.904460747435223 ], [ 348725.024634786066599, 258572.730243436264573 ], [ 348726.141699999570847, 258572.38569999858737 ], [ 348726.767707683437038, 258571.566133111162344 ], [ 348727.512335350213107, 258570.852617069904227 ], [ 348728.357857791183051, 258570.262136498582549 ], [ 348729.284148085862398, 258569.808747269387823 ], [ 348730.269156706111971, 258569.503241915459512 ], [ 348731.289436385326553, 258569.352892723836703 ], [ 348732.320700260344893, 258569.361278625205159 ], [ 348733.33839999884367, 258569.528200000524521 ], [ 348734.508583141956478, 258569.791117687971564 ], [ 348735.621415127068758, 258570.23839754628716 ], [ 348736.64805612253258, 258570.858448000130011 ], [ 348737.561899997293949, 258571.635200001299381 ], [ 348738.408310295490082, 258572.500768165278714 ], [ 348739.092878927476704, 258573.499259240517858 ], [ 348739.595118968456518, 258574.600791618868243 ], [ 348739.899999998509884, 258575.772399999201298 ], [ 348739.089400000870228, 258579.116300001740456 ], [ 348828.491099998354912, 258588.096200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304041200", "MAP": "F9-2230-T68", "PARCEL_NAM": "4-1-6A", "ACRE": ".07", "LONGITUDE": -65.0181208, "LATITUDE": 18.34984031, "OBJECTID_1": 1326, "PARCEL_NO_": "102304041200", "Tax_Legal_": "FORTUNA 4-1-6A WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.230225605000001, "SHAPE_Area": 72.057286485199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349582.628700003027916, 257738.968100000172853 ], [ 349578.375, 257740.782400000840425 ], [ 349571.067800000309944, 257746.633200000971556 ], [ 349579.319600000977516, 257752.621800001710653 ], [ 349582.628700003027916, 257738.968100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D3-332-T76", "PARCEL_NAM": "106A", "ACRE": null, "LONGITUDE": -65.01818739, "LATITUDE": 18.3585566, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 559.10640078300003, "SHAPE_Area": 13647.449446500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349482.659500002861023, 258687.022599998861551 ], [ 349492.156099997460842, 258774.646299999207258 ], [ 349635.943999998271465, 258744.792399998754263 ], [ 349625.995999999344349, 258682.016100000590086 ], [ 349624.435599997639656, 258675.881700001657009 ], [ 349611.395400002598763, 258597.459199998527765 ], [ 349611.357699997723103, 258597.197900000959635 ], [ 349609.088500000536442, 258605.433600001037121 ], [ 349603.409199997782707, 258623.737700000405312 ], [ 349599.374799996614456, 258633.928899999707937 ], [ 349593.228900000452995, 258644.36600000038743 ], [ 349588.170199997723103, 258650.617600001394749 ], [ 349585.251400001347065, 258652.954100001603365 ], [ 349581.547600001096725, 258654.498100001364946 ], [ 349581.341300003230572, 258654.414299998432398 ], [ 349567.232299998402596, 258665.692999999970198 ], [ 349556.213799998164177, 258673.675000000745058 ], [ 349552.33389999717474, 258676.871899999678135 ], [ 349548.669399999082088, 258678.456999998539686 ], [ 349543.784400001168251, 258680.436099998652935 ], [ 349535.247400000691414, 258682.386900000274181 ], [ 349518.178000003099442, 258685.683499999344349 ], [ 349504.57490000128746, 258686.788499999791384 ], [ 349482.659500002861023, 258687.022599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402034600", "MAP": "D9-7301-T003", "PARCEL_NAM": "20B", "ACRE": null, "LONGITUDE": -65.00300632, "LATITUDE": 18.35757653, "OBJECTID_1": 1536, "PARCEL_NO_": "102402034600", "Tax_Legal_": "20B REM.ESTATE HOPE No.5 WESTEND QTR.", "Name": "MILLER, KEITH L.", "Address": "75 Hunnewell Ave", "City": "Newton", "State": "Massachusetts", "Zip": 2458, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.579750569, "SHAPE_Area": 2493.6793483299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351121.169799998402596, 258619.784400001168251 ], [ 351199.302000001072884, 258635.885999999940395 ], [ 351207.73759999871254, 258628.889699999243021 ], [ 351223.168999999761581, 258615.928199999034405 ], [ 351169.282799996435642, 258599.443999998271465 ], [ 351136.306699998676777, 258589.463799998164177 ], [ 351130.565399996936321, 258600.815900001674891 ], [ 351121.169799998402596, 258619.784400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102404011100", "MAP": "A9-615-T003", "PARCEL_NAM": "2-3", "ACRE": ".23", "LONGITUDE": -65.00793291, "LATITUDE": 18.35523548, "OBJECTID_1": 1832, "PARCEL_NO_": "102404011100", "Tax_Legal_": "2-3 ESTATE BETHESDA NO.8 WEST END QTR", "Name": "PRICE, DEBORAH RANDOLPH", "Address": "17 Chardonnay Rd", "City": "Commack", "State": "New York", "Zip": 11725, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.445272105, "SHAPE_Area": 880.86761598199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350659.825599998235703, 258365.736200001090765 ], [ 350665.97410000115633, 258331.177400000393391 ], [ 350660.276399999856949, 258332.412599999457598 ], [ 350638.80799999833107, 258337.066700000315905 ], [ 350636.515799999237061, 258354.648200001567602 ], [ 350635.370600000023842, 258363.432399999350309 ], [ 350634.35249999910593, 258371.241999998688698 ], [ 350639.10869999974966, 258370.339999999850988 ], [ 350649.9037000015378, 258368.355599999427795 ], [ 350654.496200002729893, 258367.235500000417233 ], [ 350656.412500001490116, 258366.768100000917912 ], [ 350657.095799997448921, 258366.561500001698732 ], [ 350659.825599998235703, 258365.736200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018500", "MAP": "A9-615-T003", "PARCEL_NAM": "2-24", "ACRE": null, "LONGITUDE": -65.00746554, "LATITUDE": 18.35608643, "OBJECTID_1": 1627, "PARCEL_NO_": "102403018500", "Tax_Legal_": "2-8 REM & ROWS 2-1,2-14,&2-24 BETHESDA NO. 8 WEST END QUARTER", "Name": "HENDRICKS, GWYNETHE", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 148700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 707.03533151900001, "SHAPE_Area": 1907.8918435400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350596.325499996542931, 258372.4831000007689 ], [ 350596.420699998736382, 258377.801199998706579 ], [ 350600.389499999582767, 258378.912500001490116 ], [ 350604.040700003504753, 258379.388700000941753 ], [ 350608.168200001120567, 258379.706199999898672 ], [ 350612.295800000429153, 258379.864999998360872 ], [ 350615.311999998986721, 258379.706199999898672 ], [ 350621.485699996352196, 258378.081300001591444 ], [ 350627.535800002515316, 258377.166200000792742 ], [ 350639.283299997448921, 258375.10249999910593 ], [ 350647.220799997448921, 258374.149999998509884 ], [ 350654.182199999690056, 258372.896299999207258 ], [ 350659.920800000429153, 258371.768699999898672 ], [ 350665.318400003015995, 258370.816199999302626 ], [ 350669.604599997401237, 258370.339999999850988 ], [ 350674.684600003063679, 258370.816199999302626 ], [ 350678.177100002765656, 258372.5625 ], [ 350681.034599997103214, 258374.308699999004602 ], [ 350684.050899997353554, 258375.896200001239777 ], [ 350687.606899999082088, 258378.896200001239777 ], [ 350690.877199999988079, 258384.151200000196695 ], [ 350694.369699999690056, 258390.342500001192093 ], [ 350696.979299999773502, 258400.508000001311302 ], [ 350696.784800000488758, 258425.486900001764297 ], [ 350696.595299996435642, 258449.8277000002563 ], [ 350696.589100003242493, 258449.910000000149012 ], [ 350696.07599999755621, 258456.760999999940395 ], [ 350695.542300000786781, 258465.544199999421835 ], [ 350695.035599999129772, 258470.859000001102686 ], [ 350694.13289999961853, 258475.58559999987483 ], [ 350693.580399997532368, 258478.478799998760223 ], [ 350691.883500002324581, 258487.252900000661612 ], [ 350690.213600002229214, 258492.558600001037121 ], [ 350690.179399996995926, 258496.951999999582767 ], [ 350690.846699997782707, 258500.888399999588728 ], [ 350692.668200001120567, 258505.989999998360872 ], [ 350692.932099997997284, 258508.642400000244379 ], [ 350695.710199996829033, 258512.478799998760223 ], [ 350699.943599998950958, 258516.050700001418591 ], [ 350704.044600002467632, 258518.299699999392033 ], [ 350711.320699997246265, 258518.961100000888109 ], [ 350718.596699997782707, 258518.299699999392033 ], [ 350726.931100003421307, 258516.712200000882149 ], [ 350733.491700001060963, 258515.860800001770258 ], [ 350741.4712999984622, 258512.844900000840425 ], [ 350744.739000000059605, 258511.482900001108646 ], [ 350749.395400002598763, 258511.056699998676777 ], [ 350755.50620000064373, 258511.023600000888109 ], [ 350760.268700003623962, 258512.214200001209974 ], [ 350762.782200001180172, 258513.66950000077486 ], [ 350770.179899998009205, 258518.774900000542402 ], [ 350770.271300002932549, 258519.081700000911951 ], [ 350771.851199999451637, 258525.337600000202656 ], [ 350771.866899996995926, 258525.870700001716614 ], [ 350766.310199998319149, 258547.274300001561642 ], [ 350767.712600000202656, 258548.892499998211861 ], [ 350769.717000000178814, 258550.820999998599291 ], [ 350775.114000000059605, 258539.292599998414516 ], [ 350776.701499998569489, 258530.5614 ], [ 350777.230700001120567, 258523.417599998414516 ], [ 350774.055699996650219, 258516.802999999374151 ], [ 350771.40990000218153, 258512.569699998944998 ], [ 350768.237099997699261, 258511.43470000103116 ], [ 350761.884900003671646, 258507.807199999690056 ], [ 350747.861900001764297, 258506.219700001180172 ], [ 350737.013999998569489, 258508.071699999272823 ], [ 350730.134800001978874, 258510.453000001609325 ], [ 350724.313900001347065, 258512.305100001394749 ], [ 350720.345200002193451, 258513.098799999803305 ], [ 350714.594499997794628, 258514.00899999961257 ], [ 350708.42620000243187, 258513.975099999457598 ], [ 350702.353500001132488, 258510.188400000333786 ], [ 350698.913900002837181, 258507.278000000864267 ], [ 350696.532600000500679, 258503.573800001293421 ], [ 350695.738899998366833, 258497.752999998629093 ], [ 350695.738899998366833, 258493.784200001507998 ], [ 350697.326399996876717, 258484.788400001823902 ], [ 350698.649300001561642, 258477.644600000232458 ], [ 350700.167000003159046, 258474.41499999910593 ], [ 350701.295100003480911, 258463.886199999600649 ], [ 350702.353500001132488, 258454.096599999815226 ], [ 350702.346199996769428, 258449.787300001829863 ], [ 350702.688199996948242, 258439.793200001120567 ], [ 350702.688199996948242, 258431.37950000166893 ], [ 350702.686200000345707, 258425.435699999332428 ], [ 350702.688199996948242, 258422.489399999380112 ], [ 350702.529399998486042, 258418.203200001269579 ], [ 350702.291299998760223, 258413.758200000971556 ], [ 350702.053199999034405, 258409.074999999254942 ], [ 350702.211900003254414, 258406.535000000149012 ], [ 350702.053199999034405, 258403.280699998140335 ], [ 350701.894400000572205, 258398.91499999910593 ], [ 350702.211900003254414, 258395.581300001591444 ], [ 350701.576899997889996, 258393.596900001168251 ], [ 350700.624399997293949, 258390.263099998235703 ], [ 350699.195699997246265, 258386.770599998533726 ], [ 350698.407700002193451, 258384.688200000673532 ], [ 350697.124600000679493, 258381.845600001513958 ], [ 350694.512500002980232, 258376.531199999153614 ], [ 350693.083800002932549, 258374.388099998235703 ], [ 350691.416900001466274, 258373.038699999451637 ], [ 350689.035700000822544, 258370.816199999302626 ], [ 350685.701899997889996, 258368.752500001341105 ], [ 350682.209399998188019, 258366.688700001686811 ], [ 350678.081900000572205, 258364.783700000494719 ], [ 350672.601899996399879, 258364.079300001263618 ], [ 350664.826200000941753, 258364.625 ], [ 350659.825599998235703, 258365.736200001090765 ], [ 350656.412500001490116, 258366.768100000917912 ], [ 350654.496200002729893, 258367.235500000417233 ], [ 350649.9037000015378, 258368.355599999427795 ], [ 350639.10869999974966, 258370.339999999850988 ], [ 350629.901199996471405, 258372.086199998855591 ], [ 350624.821199998259544, 258372.800599999725819 ], [ 350621.759999997913837, 258373.291900001466274 ], [ 350616.089900001883507, 258374.308699999004602 ], [ 350611.883000001311302, 258374.785000000149012 ], [ 350607.04110000282526, 258374.94370000064373 ], [ 350602.516699999570847, 258374.467500001192093 ], [ 350599.18299999833107, 258373.356199998408556 ], [ 350596.325499996542931, 258372.4831000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102404011500", "MAP": "D9-7642-T005", "PARCEL_NAM": "2-10", "ACRE": ".23", "LONGITUDE": -65.00768308000001, "LATITUDE": 18.35587338, "OBJECTID_1": 1836, "PARCEL_NO_": "102404011500", "Tax_Legal_": "#2-10 ESTATE BETHESDA NO.8 WEST END QTR.", "Name": "TYSON, DEVON S. & DIANA S.", "Address": "PO Box 306896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.86464093800001, "SHAPE_Area": 1048.30670691 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350696.784800000488758, 258425.486900001764297 ], [ 350696.938500002026558, 258405.74269999936223 ], [ 350687.849600002169609, 258409.739900000393391 ], [ 350657.069899998605251, 258408.531700000166893 ], [ 350656.523199997842312, 258424.833200000226498 ], [ 350656.17059999704361, 258435.348299998790026 ], [ 350656.091300003230572, 258437.710799999535084 ], [ 350663.166400000452995, 258437.469300001859665 ], [ 350673.882100000977516, 258436.410999998450279 ], [ 350683.803999997675419, 258434.823499999940395 ], [ 350686.950699999928474, 258433.386900000274181 ], [ 350686.993699997663498, 258433.367300000041723 ], [ 350687.409800000488758, 258433.177299998700619 ], [ 350689.889399997889996, 258432.045299999415874 ], [ 350693.196699999272823, 258429.796399999409914 ], [ 350696.784800000488758, 258425.486900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403018500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00814008, "LATITUDE": 18.35455468, "OBJECTID_1": 1627, "PARCEL_NO_": "102403018500", "Tax_Legal_": "2-8 REM & ROWS 2-1,2-14,&2-24 BETHESDA NO. 8 WEST END QUARTER", "Name": "HENDRICKS, GWYNETHE", "Address": "PO Box 12054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 148700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.89050371, "SHAPE_Area": 208.04357278399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350604.391500003635883, 258276.259300000965595 ], [ 350603.467600002884865, 258281.433800000697374 ], [ 350611.025700002908707, 258279.217300001531839 ], [ 350618.16950000077486, 258277.471000000834465 ], [ 350623.884499996900558, 258276.835999999195337 ], [ 350629.107600003480911, 258276.566100001335144 ], [ 350635.864000000059605, 258276.21680000051856 ], [ 350641.169200003147125, 258277.578999999910593 ], [ 350651.168200001120567, 258280.8885000012815 ], [ 350647.113799996674061, 258273.463700000196695 ], [ 350646.101199999451637, 258271.607599999755621 ], [ 350645.647399999201298, 258271.465799998492002 ], [ 350628.170800000429153, 258272.549800001084805 ], [ 350611.650700002908707, 258274.976300001144409 ], [ 350608.61599999666214, 258275.24439999833703 ], [ 350604.391500003635883, 258276.259300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010100", "MAP": "A9-615-T003", "PARCEL_NAM": "1-29", "ACRE": ".26", "LONGITUDE": -65.00859685, "LATITUDE": 18.35498607, "OBJECTID_1": 1546, "PARCEL_NO_": "102403010100", "Tax_Legal_": "BETHESDA 1 8AWEST END QTR.", "Name": "FARHAT, JAMIL", "Address": "6940 Augustine Way", "City": "Charlotte", "State": "North Carolina", "Zip": 28270, "Country": "United States", "Land_Value": 344700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.89542151800001, "SHAPE_Area": 629.22263674800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350603.467600002884865, 258281.433800000697374 ], [ 350604.391500003635883, 258276.259300000965595 ], [ 350602.089500002563, 258276.812300000339746 ], [ 350594.152800001204014, 258280.219300001859665 ], [ 350588.311599999666214, 258283.411400001496077 ], [ 350581.758199997246265, 258288.447799999266863 ], [ 350577.770900003612041, 258292.579300001263618 ], [ 350573.300399996340275, 258299.019499998539686 ], [ 350569.747900001704693, 258307.085499998182058 ], [ 350566.734399996697903, 258315.412399999797344 ], [ 350565.464400000870228, 258321.76240000128746 ], [ 350565.464400000870228, 258332.716099999845028 ], [ 350569.750699996948242, 258343.828699998557568 ], [ 350572.902999997138977, 258349.719999998807907 ], [ 350579.593199998140335, 258360.338700000196695 ], [ 350583.085699997842312, 258366.212499998509884 ], [ 350585.308200001716614, 258369.54619999974966 ], [ 350587.7449000030756, 258372.363200001418591 ], [ 350592.769500002264977, 258375.737500000745058 ], [ 350596.420699998736382, 258377.801199998706579 ], [ 350596.325499996542931, 258372.4831000007689 ], [ 350593.785499997437, 258370.419300001114607 ], [ 350590.610500000417233, 258367.958700001239777 ], [ 350588.736900001764297, 258365.954599998891354 ], [ 350585.6891999989748, 258361.211800001561642 ], [ 350583.784199997782707, 258358.116200000047684 ], [ 350583.021899998188019, 258356.799600001424551 ], [ 350581.164800003170967, 258353.59180000051856 ], [ 350576.719800002872944, 258345.892400000244379 ], [ 350575.21169999986887, 258343.352400001138449 ], [ 350573.227300003170967, 258341.606199998408556 ], [ 350571.639799997210503, 258338.431099999696016 ], [ 350570.528499998152256, 258334.859299998730421 ], [ 350570.498499996960163, 258330.2162000015378 ], [ 350570.156400002539158, 258329.015900000929832 ], [ 350571.655699998140335, 258321.286100000143051 ], [ 350572.76690000295639, 258313.983600001782179 ], [ 350575.465700000524521, 258307.792300000786781 ], [ 350580.386900000274181, 258299.219799999147654 ], [ 350584.514399997889996, 258294.298599999397993 ], [ 350587.530699998140335, 258290.647300001233816 ], [ 350591.499499998986721, 258287.631000000983477 ], [ 350596.262000001966953, 258284.614799998700619 ], [ 350603.467600002884865, 258281.433800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403011500", "MAP": "D9-6992-T001", "PARCEL_NAM": "3A-1-REM", "ACRE": ".26", "LONGITUDE": -65.01553624, "LATITUDE": 18.35151451, "OBJECTID_1": 1559, "PARCEL_NO_": "102403011500", "Tax_Legal_": "3A-1-REM FORTUNA NO.8 WEST END QTR", "Name": "EDMUNDO ZAYAS AND MILAGROS ZAYAS REVOCABLE LIVING", "Address": "PO Box 302824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28700, "Improved_V": 226000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.158156065, "SHAPE_Area": 987.63036148699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349853.282399997115135, 257911.845100000500679 ], [ 349823.50620000064373, 257930.662000000476837 ], [ 349853.953699998557568, 257953.498199999332428 ], [ 349867.750900000333786, 257943.056400001049042 ], [ 349868.582400001585484, 257940.107900001108646 ], [ 349869.422899998724461, 257936.103999998420477 ], [ 349863.053300000727177, 257926.552700001746416 ], [ 349860.654100000858307, 257924.210999999195337 ], [ 349859.867600001394749, 257921.882500000298023 ], [ 349858.265799999237061, 257920.602899998426437 ], [ 349853.282399997115135, 257911.845100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102403016200", "MAP": "G9-672-T63", "PARCEL_NAM": "4-1-62", "ACRE": null, "LONGITUDE": -65.0137223, "LATITUDE": 18.34953973, "OBJECTID_1": 1604, "PARCEL_NO_": "102403016200", "Tax_Legal_": "FORTUNA 4-1-62 & 4-1-61 WEST END QTR", "Name": "ANDERSON, FLORICIA & OTHRS", "Address": "BOX 3641", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.9345524921, "SHAPE_Area": 12.5950399447 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350050.317699998617172, 257715.302999999374151 ], [ 350042.256399996578693, 257715.026000000536442 ], [ 350035.780699998140335, 257717.928300000727177 ], [ 350050.317699998617172, 257715.302999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403016400", "MAP": "D9-2311-T83", "PARCEL_NAM": "4FL", "ACRE": null, "LONGITUDE": -65.0128069, "LATITUDE": 18.34940219, "OBJECTID_1": 1606, "PARCEL_NO_": "102403016400", "Tax_Legal_": "FORTUNA 4FL WEST END QTR", "Name": "HAMILTON, CHARLES & DAISY", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.303738696300002, "SHAPE_Area": 121.552188851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350108.521899998188019, 257698.212699998170137 ], [ 350154.615599997341633, 257705.851599998772144 ], [ 350155.818400003015995, 257700.776799999177456 ], [ 350108.521899998188019, 257698.212699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403017400", "MAP": "D9-2311-T83", "PARCEL_NAM": "4FL-3", "ACRE": null, "LONGITUDE": -65.01271321, "LATITUDE": 18.34974418, "OBJECTID_1": 1616, "PARCEL_NO_": "102403017400", "Tax_Legal_": "FORTUNA 4FL-2 WEST END QTR", "Name": "GARDNER, ELA BELLE", "Address": "PO Box 302463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.1050710757, "SHAPE_Area": 49.015487292800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350152.830700002610683, 257735.203000001609325 ], [ 350146.099899999797344, 257735.929800000041723 ], [ 350146.163199998438358, 257741.235500000417233 ], [ 350147.433200001716614, 257743.934300001710653 ], [ 350150.131899997591972, 257744.886799998581409 ], [ 350151.878200002014637, 257741.552999999374151 ], [ 350152.830700002610683, 257735.203000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403017500", "MAP": "D9-9144-T016", "PARCEL_NAM": "4MA-2", "ACRE": ".005", "LONGITUDE": -65.01436104, "LATITUDE": 18.34955017, "OBJECTID_1": 1617, "PARCEL_NO_": "102403017500", "Tax_Legal_": "FORTUNA 4MA & 4MB-1 WEST END QUARTER", "Name": "LAPLACE (TRUSTEES), STEVEN J. & MARCELLA T.", "Address": "PO Box 306602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55900, "Improved_V": 219400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.580507621199999, "SHAPE_Area": 11.719268746099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349975.994099996984005, 257713.2483000010252 ], [ 349973.730599999427795, 257713.198499999940395 ], [ 349974.508199997246265, 257716.582400001585484 ], [ 349976.055900000035763, 257723.754900000989437 ], [ 349975.994099996984005, 257713.2483000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403017500", "MAP": "D9-5580-T93", "PARCEL_NAM": "4MA", "ACRE": ".31", "LONGITUDE": -65.01441424, "LATITUDE": 18.34933224, "OBJECTID_1": 1617, "PARCEL_NO_": "102403017500", "Tax_Legal_": "FORTUNA 4MA & 4MB-1 WEST END QUARTER", "Name": "LAPLACE (TRUSTEES), STEVEN J. & MARCELLA T.", "Address": "PO Box 306602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55900, "Improved_V": 219400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.49510891017000003, "SHAPE_Area": 0.01003678025 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349969.903300002217293, 257692.58500000089407 ], [ 349969.875299997627735, 257692.479800000786781 ], [ 349969.715999998152256, 257692.598200000822544 ], [ 349969.903300002217293, 257692.58500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102403018400", "MAP": "D9-5127-T91", "PARCEL_NAM": "4MA-1", "ACRE": null, "LONGITUDE": -65.01451213, "LATITUDE": 18.34935651, "OBJECTID_1": 1626, "PARCEL_NO_": "102403018400", "Tax_Legal_": "FORTUNA 4MA-1 WESTEND QTR.", "Name": "LAPLACE, ALWYN & LEONE", "Address": "PO Box 302634", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.599936924199994, "SHAPE_Area": 87.741785651300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349961.490000002086163, 257698.761399999260902 ], [ 349973.908699996769428, 257692.301699999719858 ], [ 349969.715999998152256, 257692.598200000822544 ], [ 349969.875299997627735, 257692.479800000786781 ], [ 349949.256099998950958, 257694.045000001788139 ], [ 349942.861199997365475, 257694.49720000103116 ], [ 349961.490000002086163, 257698.761399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403042100", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-30", "ACRE": ".24", "LONGITUDE": -65.01147997, "LATITUDE": 18.353103, "OBJECTID_1": 1785, "PARCEL_NO_": "102403042100", "Tax_Legal_": "FORTUNA 3C-30 WEST END QUARTER", "Name": "DANIEL, DAHLIA DAUN", "Address": "PO Box 305776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.795723239, "SHAPE_Area": 738.72891148899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350298.48870000243187, 258116.300999999046326 ], [ 350268.200699999928474, 258092.946400001645088 ], [ 350263.943099997937679, 258101.241700001060963 ], [ 350255.750500001013279, 258116.373399998992682 ], [ 350291.941100001335144, 258127.646499998867512 ], [ 350294.401299998164177, 258122.811500001698732 ], [ 350298.48870000243187, 258116.300999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403042200", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-31", "ACRE": null, "LONGITUDE": -65.01155178, "LATITUDE": 18.35331516, "OBJECTID_1": 1786, "PARCEL_NO_": "102403042200", "Tax_Legal_": "3C-31 ESTATE FORTUNA WEST END QUARTER", "Name": "DANIEL, DAHLIA D", "Address": "PO Box 305776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 129100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.45603394700001, "SHAPE_Area": 1093.76770025 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350291.941100001335144, 258127.646499998867512 ], [ 350255.750500001013279, 258116.373399998992682 ], [ 350255.734300002455711, 258118.27309999987483 ], [ 350249.944499999284744, 258135.324299998581409 ], [ 350249.120200000703335, 258137.42850000038743 ], [ 350248.265299998223782, 258143.120999999344349 ], [ 350248.213299997150898, 258149.220400001853704 ], [ 350288.093599997460842, 258150.357299998402596 ], [ 350286.973700001835823, 258142.80460000038147 ], [ 350287.799800001084805, 258140.48930000141263 ], [ 350288.62049999833107, 258138.807300001382828 ], [ 350290.274499997496605, 258133.965599998831749 ], [ 350291.100599996745586, 258131.650400001555681 ], [ 350291.941100001335144, 258127.646499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-622-T003", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01466563, "LATITUDE": 18.35166933, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.91986994600001, "SHAPE_Area": 327.58720748000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349913.082400001585484, 257925.083299998193979 ], [ 349917.490599997341633, 257931.448699999600649 ], [ 349920.923699997365475, 257936.130199998617172 ], [ 349923.395199999213219, 257940.084699999541044 ], [ 349926.76410000026226, 257943.985399998724461 ], [ 349930.162500001490116, 257947.214000001549721 ], [ 349935.084200002253056, 257951.479400001466274 ], [ 349939.468800000846386, 257954.889699999243021 ], [ 349943.76969999819994, 257958.198100000619888 ], [ 349949.084399998188019, 257961.519799999892712 ], [ 349954.011399999260902, 257964.38060000166297 ], [ 349958.607600003480911, 257967.233399998396635 ], [ 349963.310599997639656, 257969.990299999713898 ], [ 349968.389899998903275, 257972.775800000876188 ], [ 349970.492399998009205, 257973.7804000005126 ], [ 349974.877599999308586, 257971.146299999207258 ], [ 349970.337200000882149, 257968.97690000012517 ], [ 349965.415899999439716, 257966.278099998831749 ], [ 349960.812200002372265, 257963.5793999992311 ], [ 349956.208400003612041, 257960.721900001168251 ], [ 349951.2871999964118, 257957.864399999380112 ], [ 349946.207099996507168, 257954.689399998635054 ], [ 349942.079599998891354, 257951.514400001615286 ], [ 349937.793399997055531, 257948.180599998682737 ], [ 349933.030900001525879, 257944.053100001066923 ], [ 349929.855899997055531, 257941.036800000816584 ], [ 349926.839599996805191, 257937.544300001114607 ], [ 349924.458400003612041, 257933.734299998730421 ], [ 349920.965800002217293, 257928.971799999475479 ], [ 349916.623199999332428, 257922.701099999248981 ], [ 349913.082400001585484, 257925.083299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030200", "MAP": "D9-6043-T86", "PARCEL_NAM": "3C-A-1", "ACRE": null, "LONGITUDE": -65.01504365, "LATITUDE": 18.35156741, "OBJECTID_1": 1705, "PARCEL_NO_": "102403030200", "Tax_Legal_": "FORTUNA 3CA-1 WEST END QUARTER", "Name": "DICKERSON, LLOYD SR & LOUISA", "Address": "2225 Trees Of Avalon Pkwy", "City": "McDonough", "State": "Georgia", "Zip": 30253, "Country": "United States", "Land_Value": 6700, "Improved_V": 70300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.806482975199998, "SHAPE_Area": 369.89536444499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349919.0287000015378, 257933.54619999974966 ], [ 349917.490599997341633, 257931.448699999600649 ], [ 349913.082400001585484, 257925.083299998193979 ], [ 349888.898299999535084, 257941.354299999773502 ], [ 349884.636699996888638, 257948.68299999833107 ], [ 349887.0287000015378, 257951.868999999016523 ], [ 349889.552500002086163, 257953.723700001835823 ], [ 349919.0287000015378, 257933.54619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-622-T003", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01438793, "LATITUDE": 18.35148988, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.22762451099999, "SHAPE_Area": 324.32281212100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349942.755999997258186, 257905.118999999016523 ], [ 349957.193599998950958, 257921.381400000303984 ], [ 349965.321299999952316, 257929.895300000905991 ], [ 349973.675700001418591, 257938.186999998986721 ], [ 349979.837200000882149, 257944.109999999403954 ], [ 349986.373000003397465, 257949.617400001734495 ], [ 349989.635600000619888, 257952.646899998188019 ], [ 349993.156099997460842, 257955.372400000691414 ], [ 349996.906199999153614, 257957.772100001573563 ], [ 349998.594700001180172, 257956.742499999701977 ], [ 350001.176899999380112, 257955.238000001758337 ], [ 349996.880599997937679, 257952.74549999833107 ], [ 349992.881899997591972, 257949.799300000071526 ], [ 349989.228500001132488, 257946.434399999678135 ], [ 349982.769599996507168, 257941.008200000971556 ], [ 349976.687200002372265, 257935.163100000470877 ], [ 349968.398999996483326, 257926.9391999989748 ], [ 349960.335900001227856, 257918.494300000369549 ], [ 349946.323299996554852, 257902.719000000506639 ], [ 349942.755999997258186, 257905.118999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403031600", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-15", "ACRE": ".05", "LONGITUDE": -65.01438841, "LATITUDE": 18.3517064, "OBJECTID_1": 1719, "PARCEL_NO_": "102403031600", "Tax_Legal_": "3C-A-15 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "MARIE JOSEPH", "Address": "PO Box 8461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011461, "Country": "United States", "Land_Value": 5600, "Improved_V": 105100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.768058165300005, "SHAPE_Area": 297.86733055600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349985.130599997937679, 257948.570500001311302 ], [ 349979.837200000882149, 257944.109999999403954 ], [ 349978.752499997615814, 257943.067299999296665 ], [ 349954.833499997854233, 257959.923599999397993 ], [ 349956.208400003612041, 257960.721900001168251 ], [ 349960.812200002372265, 257963.5793999992311 ], [ 349965.415899999439716, 257966.278099998831749 ], [ 349966.964500002563, 257967.127399999648333 ], [ 349985.130599997937679, 257948.570500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403031800", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-17", "ACRE": ".05", "LONGITUDE": -65.01448347, "LATITUDE": 18.35118921, "OBJECTID_1": 1721, "PARCEL_NO_": "102403031800", "Tax_Legal_": "3C-A-17 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "WATSON, PEARL & ANSON (LIFE INTEREST)", "Address": "PO Box 304994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.442825418599995, "SHAPE_Area": 253.19500396399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349975.130999997258186, 257892.256900001317263 ], [ 349971.751199997961521, 257885.611099999397993 ], [ 349946.323299996554852, 257902.719000000506639 ], [ 349952.841300003230572, 257910.05689999833703 ], [ 349975.130999997258186, 257892.256900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030300", "MAP": "D9-6043-T86", "PARCEL_NAM": "3C-A-2", "ACRE": null, "LONGITUDE": -65.01498975, "LATITUDE": 18.35163092, "OBJECTID_1": 1706, "PARCEL_NO_": "102403030300", "Tax_Legal_": "FORTUNA 3CA-2 WEST END QUARTER", "Name": "BRANNIGAN, MERCEDES", "Address": "Po Box 303419", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6700, "Improved_V": 88100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.911594836899994, "SHAPE_Area": 272.87306738199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349919.0287000015378, 257933.54619999974966 ], [ 349889.552500002086163, 257953.723700001835823 ], [ 349896.402900002896786, 257958.75789999961853 ], [ 349923.395199999213219, 257940.084699999541044 ], [ 349920.923699997365475, 257936.130199998617172 ], [ 349919.0287000015378, 257933.54619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030400", "MAP": "D9-6043-T86", "PARCEL_NAM": "3C-A-3", "ACRE": null, "LONGITUDE": -65.01493678, "LATITUDE": 18.3516823, "OBJECTID_1": 1707, "PARCEL_NO_": "102403030400", "Tax_Legal_": "FORTUNA 3CA-3 WEST END QUARTER", "Name": "BRATHWAITE, DEBORAH", "Address": "6707 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6700, "Improved_V": 88100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.883931431700006, "SHAPE_Area": 247.37679498200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349923.395199999213219, 257940.084699999541044 ], [ 349896.402900002896786, 257958.75789999961853 ], [ 349903.36259999871254, 257963.872299998998642 ], [ 349928.389600001275539, 257945.529699999839067 ], [ 349926.76410000026226, 257943.985399998724461 ], [ 349923.395199999213219, 257940.084699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030500", "MAP": "D9-6043-T86", "PARCEL_NAM": "3C-A-4", "ACRE": null, "LONGITUDE": -65.01487898000001, "LATITUDE": 18.3517356, "OBJECTID_1": 1708, "PARCEL_NO_": "102403030500", "Tax_Legal_": "FORTUNA 3CA-4 WEST END QUARTER", "Name": "HARRIS, MC BURNEY", "Address": "PO Box 304421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6700, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.633832530099994, "SHAPE_Area": 269.43294497900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349928.389600001275539, 257945.529699999839067 ], [ 349903.36259999871254, 257963.872299998998642 ], [ 349910.267899997532368, 257968.946699999272823 ], [ 349912.403599999845028, 257970.330899998545647 ], [ 349933.777800001204014, 257950.347199998795986 ], [ 349930.162500001490116, 257947.214000001549721 ], [ 349928.389600001275539, 257945.529699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030600", "MAP": "D9-6043-T86", "PARCEL_NAM": "3C-A-5", "ACRE": null, "LONGITUDE": -65.01480755, "LATITUDE": 18.35178484, "OBJECTID_1": 1709, "PARCEL_NO_": "102403030600", "Tax_Legal_": "FORTUNA 3CA-5 WEST END QUARTER", "Name": "GILPIN, CURTIS R. & JESSICA P.", "Address": "PO Box 306922", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6700, "Improved_V": 88100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.537367659300003, "SHAPE_Area": 259.22600829599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349933.777800001204014, 257950.347199998795986 ], [ 349912.403599999845028, 257970.330899998545647 ], [ 349921.7466000020504, 257976.38569999858737 ], [ 349939.468800000846386, 257954.889699999243021 ], [ 349935.084200002253056, 257951.479400001466274 ], [ 349933.777800001204014, 257950.347199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030700", "MAP": "D9-6043-T86", "PARCEL_NAM": "3C-A-6", "ACRE": null, "LONGITUDE": -65.01472523, "LATITUDE": 18.35183042, "OBJECTID_1": 1710, "PARCEL_NO_": "102403030700", "Tax_Legal_": "FORTUNA 3CA-6 WEST END QUARTER", "Name": "CONNOR, TONYA NIKEEMA", "Address": "6708 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6700, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.455174349800004, "SHAPE_Area": 290.38952750200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349939.468800000846386, 257954.889699999243021 ], [ 349921.7466000020504, 257976.38569999858737 ], [ 349931.062600001692772, 257982.423200000077486 ], [ 349947.726999998092651, 257960.671399999409914 ], [ 349945.543700002133846, 257959.306800000369549 ], [ 349943.76969999819994, 257958.198100000619888 ], [ 349939.468800000846386, 257954.889699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030800", "MAP": "D9-6043-T86", "PARCEL_NAM": "3A-C-7", "ACRE": null, "LONGITUDE": -65.0146486, "LATITUDE": 18.35188609, "OBJECTID_1": 1711, "PARCEL_NO_": "102403030800", "Tax_Legal_": "FORTUNA 3CA-7 WEST END QUARTER", "Name": "BRUMANT, HUBERT & PAMELA", "Address": "PO Box 305228", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6700, "Improved_V": 88100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.247484989200004, "SHAPE_Area": 263.12095851399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349947.726999998092651, 257960.671399999409914 ], [ 349931.062600001692772, 257982.423200000077486 ], [ 349934.319099999964237, 257984.533599998801947 ], [ 349940.9662000015378, 257988.841400001198053 ], [ 349941.07880000025034, 257988.78770000115037 ], [ 349954.011399999260902, 257964.38060000166297 ], [ 349949.084399998188019, 257961.519799999892712 ], [ 349947.726999998092651, 257960.671399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030900", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-8", "ACRE": null, "LONGITUDE": -65.01453697, "LATITUDE": 18.3519012, "OBJECTID_1": 1712, "PARCEL_NO_": "102403030900", "Tax_Legal_": "FORTUNA 3CA-8 WEST END QUARTER", "Name": "SMITH-RIVERA, AVAREL M.", "Address": "2680 Adams Landing Way", "City": "Powder Springs", "State": "Georgia", "Zip": 30127, "Country": "United States", "Land_Value": 6700, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.227541966000004, "SHAPE_Area": 295.197199813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349954.011399999260902, 257964.38060000166297 ], [ 349941.07880000025034, 257988.78770000115037 ], [ 349940.9662000015378, 257988.841400001198053 ], [ 349943.107699997723103, 257990.229200001806021 ], [ 349970.492399998009205, 257973.7804000005126 ], [ 349968.389899998903275, 257972.775800000876188 ], [ 349963.310599997639656, 257969.990299999713898 ], [ 349958.607600003480911, 257967.233399998396635 ], [ 349954.011399999260902, 257964.38060000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403031000", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-9", "ACRE": ".05", "LONGITUDE": -65.01474938, "LATITUDE": 18.35137102, "OBJECTID_1": 1713, "PARCEL_NO_": "102403031000", "Tax_Legal_": "3C-A-9 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "YOULANDO S. BELLE", "Address": "6109 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8028261, "Country": "United States", "Land_Value": 6200, "Improved_V": 89000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.041800329300003, "SHAPE_Area": 318.67780011100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349949.224399998784065, 257912.405000001192093 ], [ 349942.755999997258186, 257905.118999999016523 ], [ 349916.623199999332428, 257922.701099999248981 ], [ 349920.965800002217293, 257928.971799999475479 ], [ 349922.491700001060963, 257931.052600000053644 ], [ 349949.224399998784065, 257912.405000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403031100", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-10", "ACRE": ".05", "LONGITUDE": -65.01469375000001, "LATITUDE": 18.35143282, "OBJECTID_1": 1714, "PARCEL_NO_": "102403031100", "Tax_Legal_": "3C-A-10 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "RILEY, PERSHA SUSIEANNA", "Address": "PO Box 12355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6200, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.432799332000002, "SHAPE_Area": 265.593482779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349954.739000000059605, 257918.616500001400709 ], [ 349954.344200000166893, 257918.171900000423193 ], [ 349949.224399998784065, 257912.405000001192093 ], [ 349922.491700001060963, 257931.052600000053644 ], [ 349924.458400003612041, 257933.734299998730421 ], [ 349926.839599996805191, 257937.544300001114607 ], [ 349954.739000000059605, 257918.616500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403031200", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-11", "ACRE": ".05", "LONGITUDE": -65.01464262, "LATITUDE": 18.35148734, "OBJECTID_1": 1715, "PARCEL_NO_": "102403031200", "Tax_Legal_": "3C-A-11 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "STEVENS, PETULA MARIA", "Address": "PO Box 308772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.9437997868, "SHAPE_Area": 272.60298333100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349960.67620000243187, 257925.029500000178814 ], [ 349957.193599998950958, 257921.381400000303984 ], [ 349954.739000000059605, 257918.616500001400709 ], [ 349926.839599996805191, 257937.544300001114607 ], [ 349929.855899997055531, 257941.036800000816584 ], [ 349932.034400001168251, 257943.106499999761581 ], [ 349960.67620000243187, 257925.029500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403031300", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-12", "ACRE": ".05", "LONGITUDE": -65.01458733, "LATITUDE": 18.35154416, "OBJECTID_1": 1716, "PARCEL_NO_": "102403031300", "Tax_Legal_": "3C-A-12 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "WEEKS, NATASHA M. & CRISPIN N", "Address": "PO Box 304211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5600, "Improved_V": 72000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.266399741800001, "SHAPE_Area": 297.70093672199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349966.991599999368191, 257931.553100001066923 ], [ 349965.321299999952316, 257929.895300000905991 ], [ 349960.67620000243187, 257925.029500000178814 ], [ 349932.034400001168251, 257943.106499999761581 ], [ 349933.030900001525879, 257944.053100001066923 ], [ 349937.793399997055531, 257948.180599998682737 ], [ 349939.077399998903275, 257949.179299999028444 ], [ 349966.991599999368191, 257931.553100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403031400", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-13", "ACRE": ".05", "LONGITUDE": -65.01452794, "LATITUDE": 18.35159828, "OBJECTID_1": 1717, "PARCEL_NO_": "102403031400", "Tax_Legal_": "3C-A-13 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "JOSHUA, LENTINE ROSE-ANN", "Address": "PO Box 9486", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5600, "Improved_V": 109200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.351328550199995, "SHAPE_Area": 258.87177236999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349972.433399997651577, 257936.953999999910593 ], [ 349971.375600002706051, 257935.904199998825788 ], [ 349966.991599999368191, 257931.553100001066923 ], [ 349939.077399998903275, 257949.179299999028444 ], [ 349942.079599998891354, 257951.514400001615286 ], [ 349946.207099996507168, 257954.689399998635054 ], [ 349972.433399997651577, 257936.953999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403031500", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-14", "ACRE": ".05", "LONGITUDE": -65.01446149, "LATITUDE": 18.35164719, "OBJECTID_1": 1718, "PARCEL_NO_": "102403031500", "Tax_Legal_": "3C-A-14 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "PROCTOR, JACINTHE J", "Address": "6810 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.805807389799995, "SHAPE_Area": 271.80434248900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349978.752499997615814, 257943.067299999296665 ], [ 349973.675700001418591, 257938.186999998986721 ], [ 349972.433399997651577, 257936.953999999910593 ], [ 349946.207099996507168, 257954.689399998635054 ], [ 349951.2871999964118, 257957.864399999380112 ], [ 349954.833499997854233, 257959.923599999397993 ], [ 349978.752499997615814, 257943.067299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403031700", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-16", "ACRE": ".05", "LONGITUDE": -65.01428224, "LATITUDE": 18.35175182, "OBJECTID_1": 1720, "PARCEL_NO_": "102403031700", "Tax_Legal_": "3C-A-16 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "AUGUSTE, ARLENE", "Address": "PO Box 305427", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.599234910299998, "SHAPE_Area": 287.02625293400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349985.130599997937679, 257948.570500001311302 ], [ 349966.964500002563, 257967.127399999648333 ], [ 349970.337200000882149, 257968.97690000012517 ], [ 349974.877599999308586, 257971.146299999207258 ], [ 349981.237999998033047, 257967.325899999588728 ], [ 349996.906199999153614, 257957.772100001573563 ], [ 349993.156099997460842, 257955.372400000691414 ], [ 349989.635600000619888, 257952.646899998188019 ], [ 349986.373000003397465, 257949.617400001734495 ], [ 349985.130599997937679, 257948.570500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-622-T003", "PARCEL_NAM": null, "ACRE": ".5", "LONGITUDE": -65.01413839, "LATITUDE": 18.35153572, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.801213690899999, "SHAPE_Area": 61.808941284200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350006.195600003004074, 257926.170699998736382 ], [ 349987.160999998450279, 257944.697500001639128 ], [ 349989.228500001132488, 257946.434399999678135 ], [ 350007.748599998652935, 257927.395599998533726 ], [ 350006.195600003004074, 257926.170699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403031900", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-18", "ACRE": ".05", "LONGITUDE": -65.01442527, "LATITUDE": 18.35124628, "OBJECTID_1": 1722, "PARCEL_NO_": "102403031900", "Tax_Legal_": "3C-A-18 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "PERRYMAN, ROCHELLE", "Address": "PO Box 11751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5600, "Improved_V": 109200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.494463259900002, "SHAPE_Area": 246.56660478699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349975.130999997258186, 257892.256900001317263 ], [ 349952.841300003230572, 257910.05689999833703 ], [ 349958.057899996638298, 257915.929699998348951 ], [ 349980.488399997353554, 257900.690699998289347 ], [ 349979.006300002336502, 257898.626499999314547 ], [ 349975.130999997258186, 257892.256900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403032000", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-19", "ACRE": ".05", "LONGITUDE": -65.01437427, "LATITUDE": 18.35131348, "OBJECTID_1": 1723, "PARCEL_NO_": "102403032000", "Tax_Legal_": "3C-A-19 ESTATE FORTUNA No.8 WESTE ND QTR.", "Name": "SIMS, STEPHANIE VERONICA", "Address": "PO BOX 2971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5600, "Improved_V": 72000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.609346395599999, "SHAPE_Area": 250.756230198 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349980.488399997353554, 257900.690699998289347 ], [ 349958.057899996638298, 257915.929699998348951 ], [ 349960.335900001227856, 257918.494300000369549 ], [ 349964.408399999141693, 257922.759700000286102 ], [ 349986.55629999935627, 257908.139199998229742 ], [ 349983.354699999094009, 257904.68299999833107 ], [ 349980.488399997353554, 257900.690699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403032100", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-20", "ACRE": ".05", "LONGITUDE": -65.01431241, "LATITUDE": 18.35138555, "OBJECTID_1": 1724, "PARCEL_NO_": "102403032100", "Tax_Legal_": "3C-A-20 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "MERCER, LENIESE D", "Address": "PO Box 10090", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6500, "Improved_V": 124600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.083492686699998, "SHAPE_Area": 292.513760279 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349986.55629999935627, 257908.139199998229742 ], [ 349964.408399999141693, 257922.759700000286102 ], [ 349968.398999996483326, 257926.9391999989748 ], [ 349973.525100000202656, 257932.025499999523163 ], [ 349993.186200000345707, 257914.894600000232458 ], [ 349989.055100001394749, 257910.836599998176098 ], [ 349986.55629999935627, 257908.139199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403032200", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-21", "ACRE": ".05", "LONGITUDE": -65.01423841, "LATITUDE": 18.35144648, "OBJECTID_1": 1725, "PARCEL_NO_": "102403032200", "Tax_Legal_": "3C-A-21 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "ALLEN, KISHMA M", "Address": "PO Box 502651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 5600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.759534629699999, "SHAPE_Area": 239.30229315899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349993.186200000345707, 257914.894600000232458 ], [ 349973.525100000202656, 257932.025499999523163 ], [ 349976.687200002372265, 257935.163100000470877 ], [ 349980.224600002169609, 257938.562399998307228 ], [ 349999.813400000333786, 257920.981499999761581 ], [ 349995.039099998772144, 257916.714699998497963 ], [ 349993.186200000345707, 257914.894600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403032300", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-22", "ACRE": ".05", "LONGITUDE": -65.01417634000001, "LATITUDE": 18.35150143, "OBJECTID_1": 1726, "PARCEL_NO_": "102403032300", "Tax_Legal_": "3C-A-22 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "CAMERON FRANCIS and CHARISMA LEWIS", "Address": "7401 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6700, "Improved_V": 129200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.377221217200002, "SHAPE_Area": 229.86643468899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349999.813400000333786, 257920.981499999761581 ], [ 349980.224600002169609, 257938.562399998307228 ], [ 349982.769599996507168, 257941.008200000971556 ], [ 349987.160999998450279, 257944.697500001639128 ], [ 350006.195600003004074, 257926.170699998736382 ], [ 350001.293499998748302, 257922.304299999028444 ], [ 349999.813400000333786, 257920.981499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403032400", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-23", "ACRE": ".05", "LONGITUDE": -65.01409235, "LATITUDE": 18.35156194, "OBJECTID_1": 1727, "PARCEL_NO_": "102403032400", "Tax_Legal_": "3C-A-23 ESTATE FORTUNA No8 WESTEND QTR.", "Name": "CONNOR, DONIA J", "Address": "PO Box 308126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.919966449699999, "SHAPE_Area": 232.55388232000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350007.748599998652935, 257927.395599998533726 ], [ 349989.228500001132488, 257946.434399999678135 ], [ 349992.881899997591972, 257949.799300000071526 ], [ 349995.660800002515316, 257951.846799999475479 ], [ 350014.845799997448921, 257932.955800000578165 ], [ 350013.313000001013279, 257931.784499999135733 ], [ 350007.748599998652935, 257927.395599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403032500", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-24", "ACRE": ".05", "LONGITUDE": -65.01401044000001, "LATITUDE": 18.3516036, "OBJECTID_1": 1728, "PARCEL_NO_": "102403032500", "Tax_Legal_": "3C-A-24 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "BRADSHAW, LISTON & ANGELA L.", "Address": "PO Box 9108", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5600, "Improved_V": 109000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.909516430400004, "SHAPE_Area": 258.999438075 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350014.845799997448921, 257932.955800000578165 ], [ 349995.660800002515316, 257951.846799999475479 ], [ 349996.880599997937679, 257952.74549999833107 ], [ 350001.176899999380112, 257955.238000001758337 ], [ 350025.476499997079372, 257941.079199999570847 ], [ 350014.845799997448921, 257932.955800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-622-T003", "PARCEL_NAM": "3C-A-64", "ACRE": ".63", "LONGITUDE": -65.01413902, "LATITUDE": 18.35130604, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.90064209, "SHAPE_Area": 581.79695330300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350030.73200000077486, 257937.643300000578165 ], [ 350021.878100000321865, 257930.374099999666214 ], [ 350015.13120000064373, 257925.479299999773502 ], [ 350009.707299999892712, 257920.84910000115633 ], [ 350002.828100003302097, 257914.234499998390675 ], [ 349996.345799997448921, 257906.429299999028444 ], [ 349989.863499999046326, 257898.094900000840425 ], [ 349984.439499996602535, 257890.951099999248981 ], [ 349978.236599996685982, 257881.247800000011921 ], [ 349971.751199997961521, 257885.611099999397993 ], [ 349975.130999997258186, 257892.256900001317263 ], [ 349979.006300002336502, 257898.626499999314547 ], [ 349983.354699999094009, 257904.68299999833107 ], [ 349989.055100001394749, 257910.836599998176098 ], [ 349995.039099998772144, 257916.714699998497963 ], [ 350001.293499998748302, 257922.304299999028444 ], [ 350013.313000001013279, 257931.784499999135733 ], [ 350025.476499997079372, 257941.079199999570847 ], [ 350030.73200000077486, 257937.643300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403032700", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-26", "ACRE": ".05", "LONGITUDE": -65.0141497, "LATITUDE": 18.35107122, "OBJECTID_1": 1730, "PARCEL_NO_": "102403032700", "Tax_Legal_": "3C-A-26 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "WILKINSON, IONA R", "Address": "PO Box 10243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7400, "Improved_V": 116400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.627229128300002, "SHAPE_Area": 235.02204235799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350003.508000001311302, 257873.302799999713898 ], [ 349983.698700003325939, 257889.792300000786781 ], [ 349984.439499996602535, 257890.951099999248981 ], [ 349989.078400000929832, 257897.060899998992682 ], [ 350008.834100000560284, 257880.92339999973774 ], [ 350003.508000001311302, 257873.302799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-628-T004", "PARCEL_NAM": null, "ACRE": ".5", "LONGITUDE": -65.01386991, "LATITUDE": 18.351166, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.586228194, "SHAPE_Area": 476.0323094 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350056.496299996972084, 257920.799400001764297 ], [ 350053.150700002908707, 257918.456000000238419 ], [ 350045.325099997222424, 257912.747699998319149 ], [ 350037.6570999994874, 257906.8293999992311 ], [ 350032.192699998617172, 257900.942099999636412 ], [ 350027.122900001704693, 257894.711899999529123 ], [ 350022.346900001168251, 257889.268899999558926 ], [ 350017.93129999935627, 257883.529699999839067 ], [ 350013.894199997186661, 257877.518199998885393 ], [ 350004.260099999606609, 257863.739199999719858 ], [ 349999.202299997210503, 257867.142099998891354 ], [ 350008.834100000560284, 257880.92339999973774 ], [ 350013.000799998641014, 257887.114799998700619 ], [ 350017.548799999058247, 257893.031599998474121 ], [ 350022.460199996829033, 257898.650499999523163 ], [ 350027.814599998295307, 257905.196800000965595 ], [ 350033.584799997508526, 257911.379700001329184 ], [ 350038.914200000464916, 257915.613600000739098 ], [ 350044.3716000020504, 257919.681000001728535 ], [ 350050.996100001037121, 257924.395300000905991 ], [ 350056.496299996972084, 257920.799400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403032600", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-25", "ACRE": ".05", "LONGITUDE": -65.01420351, "LATITUDE": 18.3510085, "OBJECTID_1": 1729, "PARCEL_NO_": "102403032600", "Tax_Legal_": "3C-A-25 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "BREWLEY, MURIEL E", "Address": "6312 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.700783687300003, "SHAPE_Area": 224.61308123800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350003.508000001311302, 257873.302799999713898 ], [ 349999.202299997210503, 257867.142099998891354 ], [ 349978.236599996685982, 257881.247800000011921 ], [ 349983.698700003325939, 257889.792300000786781 ], [ 350003.508000001311302, 257873.302799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403032800", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-27", "ACRE": ".05", "LONGITUDE": -65.01410156, "LATITUDE": 18.35113807, "OBJECTID_1": 1731, "PARCEL_NO_": "102403032800", "Tax_Legal_": "3C-A-27 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "CONNOR, KATHRYN C", "Address": "PO Box 307534", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.0708415653, "SHAPE_Area": 220.433482191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350008.834100000560284, 257880.92339999973774 ], [ 349989.078400000929832, 257897.060899998992682 ], [ 349989.863499999046326, 257898.094900000840425 ], [ 349994.740599997341633, 257904.365499999374151 ], [ 350013.491700001060963, 257887.753499999642372 ], [ 350013.000799998641014, 257887.114799998700619 ], [ 350008.834100000560284, 257880.92339999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403032900", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-28", "ACRE": ".05", "LONGITUDE": -65.01404775, "LATITUDE": 18.35120362, "OBJECTID_1": 1732, "PARCEL_NO_": "102403032900", "Tax_Legal_": "3C-A-28 ESTATE FORTUNA NO.8 WEST END QTR", "Name": "AUBAIN, MICHELLE A.", "Address": "6212 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5600, "Improved_V": 109200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.360716357300007, "SHAPE_Area": 240.82190927 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350013.491700001060963, 257887.753499999642372 ], [ 349994.740599997341633, 257904.365499999374151 ], [ 349996.345799997448921, 257906.429299999028444 ], [ 350001.144400000572205, 257912.20719999819994 ], [ 350019.214800000190735, 257894.937600001692772 ], [ 350017.548799999058247, 257893.031599998474121 ], [ 350013.491700001060963, 257887.753499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403033000", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-29", "ACRE": ".05", "LONGITUDE": -65.01399063, "LATITUDE": 18.35126901, "OBJECTID_1": 1733, "PARCEL_NO_": "102403033000", "Tax_Legal_": "3C-A-29 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "VANBEVERHOUDT, SYVANIE", "Address": "PO Box 302354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5600, "Improved_V": 76400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.8134053486, "SHAPE_Area": 227.50430912300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350019.214800000190735, 257894.937600001692772 ], [ 350001.144400000572205, 257912.20719999819994 ], [ 350002.828100003302097, 257914.234499998390675 ], [ 350008.219499997794628, 257919.418499998748302 ], [ 350024.556599996984005, 257901.213500000536442 ], [ 350022.460199996829033, 257898.650499999523163 ], [ 350019.214800000190735, 257894.937600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403033100", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-30", "ACRE": ".05", "LONGITUDE": -65.01391628, "LATITUDE": 18.35133732, "OBJECTID_1": 1734, "PARCEL_NO_": "102403033100", "Tax_Legal_": "3C-A-30 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "HODGE, EDITA J. & VIVIAN", "Address": "PO Box 992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.596562293999995, "SHAPE_Area": 300.10207721699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350024.556599996984005, 257901.213500000536442 ], [ 350008.219499997794628, 257919.418499998748302 ], [ 350009.707299999892712, 257920.84910000115633 ], [ 350015.13120000064373, 257925.479299999773502 ], [ 350018.376199997961521, 257927.833500001579523 ], [ 350032.767599999904633, 257910.504099998623133 ], [ 350027.814599998295307, 257905.196800000965595 ], [ 350024.556599996984005, 257901.213500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403033200", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-31", "ACRE": ".05", "LONGITUDE": -65.01383222, "LATITUDE": 18.35140502, "OBJECTID_1": 1735, "PARCEL_NO_": "102403033200", "Tax_Legal_": "3C-A-31 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "BERKELEY, CLAUDINE A", "Address": "6302 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.600624954500006, "SHAPE_Area": 230.385426798 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350032.767599999904633, 257910.504099998623133 ], [ 350018.376199997961521, 257927.833500001579523 ], [ 350021.878100000321865, 257930.374099999666214 ], [ 350026.717299997806549, 257934.347100000828505 ], [ 350040.637100003659725, 257916.81810000166297 ], [ 350033.584799997508526, 257911.379700001329184 ], [ 350032.767599999904633, 257910.504099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403033300", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-32", "ACRE": ".05", "LONGITUDE": -65.01374766000001, "LATITUDE": 18.35144774, "OBJECTID_1": 1736, "PARCEL_NO_": "102403033300", "Tax_Legal_": "3C-A-32 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "TOWERS, LISA A", "Address": "PO Box 304852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6200, "Improved_V": 81700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.623698414499998, "SHAPE_Area": 203.19896444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350040.637100003659725, 257916.81810000166297 ], [ 350026.717299997806549, 257934.347100000828505 ], [ 350030.73200000077486, 257937.643300000578165 ], [ 350050.996100001037121, 257924.395300000905991 ], [ 350042.193000003695488, 257918.017900001257658 ], [ 350040.637100003659725, 257916.81810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403033400", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-33", "ACRE": ".06", "LONGITUDE": -65.01394737, "LATITUDE": 18.35083836, "OBJECTID_1": 1737, "PARCEL_NO_": "102403033400", "Tax_Legal_": "3C-A-33 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "HERMAN, ERA A", "Address": "6210 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7000, "Improved_V": 68200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.320485890499995, "SHAPE_Area": 236.52602466100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350031.511600002646446, 257854.328200001269579 ], [ 350030.177199997007847, 257851.907800000160933 ], [ 350028.059399999678135, 257847.727099999785423 ], [ 350004.260099999606609, 257863.739199999719858 ], [ 350009.656800001859665, 257871.457600001245737 ], [ 350031.511600002646446, 257854.328200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403033500", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-34", "ACRE": ".06", "LONGITUDE": -65.01390267, "LATITUDE": 18.35090165, "OBJECTID_1": 1738, "PARCEL_NO_": "102403033500", "Tax_Legal_": "3C-A-34 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "TORRES, MICHAEL & KIMBOLIE S. L", "Address": "Po Box 304784", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 89900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.852069458100004, "SHAPE_Area": 229.880353711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350031.511600002646446, 257854.328200001269579 ], [ 350009.656800001859665, 257871.457600001245737 ], [ 350013.894199997186661, 257877.518199998885393 ], [ 350014.824299998581409, 257878.903200000524521 ], [ 350035.388999998569489, 257861.165600001811981 ], [ 350034.728100001811981, 257860.162799999117851 ], [ 350031.511600002646446, 257854.328200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403033600", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-35", "ACRE": ".06", "LONGITUDE": -65.01385497, "LATITUDE": 18.35096909, "OBJECTID_1": 1739, "PARCEL_NO_": "102403033600", "Tax_Legal_": "3C-A-35 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "NEDD, VIVIAN", "Address": "PO Box 306791", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 85200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.24277446000001, "SHAPE_Area": 255.95825256099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350035.388999998569489, 257861.165600001811981 ], [ 350014.824299998581409, 257878.903200000524521 ], [ 350017.93129999935627, 257883.529699999839067 ], [ 350020.732199996709824, 257887.170200001448393 ], [ 350040.337700001895428, 257868.482400000095367 ], [ 350037.79730000346899, 257864.819499999284744 ], [ 350035.388999998569489, 257861.165600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403033700", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-36", "ACRE": ".05", "LONGITUDE": -65.01380006, "LATITUDE": 18.35104079, "OBJECTID_1": 1740, "PARCEL_NO_": "102403033700", "Tax_Legal_": "3C-A-36 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "TYSON, DIANA S. C. & DEVON S", "Address": "PO Box 306896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 68200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.858932597299997, "SHAPE_Area": 269.03424364799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350040.337700001895428, 257868.482400000095367 ], [ 350020.732199996709824, 257887.170200001448393 ], [ 350022.346900001168251, 257889.268899999558926 ], [ 350027.122900001704693, 257894.711899999529123 ], [ 350027.920299999415874, 257895.691799998283386 ], [ 350045.586000002920628, 257875.974399998784065 ], [ 350042.348099999129772, 257871.38120000064373 ], [ 350040.337700001895428, 257868.482400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403033800", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-37", "ACRE": ".05", "LONGITUDE": -65.01374143, "LATITUDE": 18.35110868, "OBJECTID_1": 1741, "PARCEL_NO_": "102403033800", "Tax_Legal_": "3C-A-37 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "CANTOIS, MARGARITA", "Address": "PO Box 9873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7000, "Improved_V": 85200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.196301667100002, "SHAPE_Area": 240.51872121100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350045.586000002920628, 257875.974399998784065 ], [ 350027.920299999415874, 257895.691799998283386 ], [ 350032.192699998617172, 257900.942099999636412 ], [ 350034.314499996602535, 257903.228100001811981 ], [ 350050.792000003159046, 257882.988400001078844 ], [ 350046.898900002241135, 257877.837000001221895 ], [ 350045.586000002920628, 257875.974399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403033900", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-38", "ACRE": ".05", "LONGITUDE": -65.01367741, "LATITUDE": 18.35117792, "OBJECTID_1": 1742, "PARCEL_NO_": "102403033900", "Tax_Legal_": "3C-A-38 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "McCLEAN, MURIEL A", "Address": "PO Box 9576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7000, "Improved_V": 68200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.819364192999998, "SHAPE_Area": 281.56989482099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350050.792000003159046, 257882.988400001078844 ], [ 350034.314499996602535, 257903.228100001811981 ], [ 350037.6570999994874, 257906.8293999992311 ], [ 350043.084899999201298, 257911.018699999898672 ], [ 350057.376500003039837, 257891.701200000941753 ], [ 350050.792000003159046, 257882.988400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403034000", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-39", "ACRE": ".05", "LONGITUDE": -65.01360251, "LATITUDE": 18.35124486, "OBJECTID_1": 1743, "PARCEL_NO_": "102403034000", "Tax_Legal_": "3C-A-39 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "RODRIGUEZ, JENNIFER J", "Address": "PO Box 8567", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7000, "Improved_V": 85200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.862778613000003, "SHAPE_Area": 238.78538174 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350057.376500003039837, 257891.701200000941753 ], [ 350043.084899999201298, 257911.018699999898672 ], [ 350045.325099997222424, 257912.747699998319149 ], [ 350051.539399996399879, 257917.280600000172853 ], [ 350064.308499999344349, 257899.727800000458956 ], [ 350057.376500003039837, 257891.701200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403034100", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-40", "ACRE": ".5", "LONGITUDE": -65.01351288, "LATITUDE": 18.35129463, "OBJECTID_1": 1744, "PARCEL_NO_": "102403034100", "Tax_Legal_": "3C-A-40 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "CHERYL E", "Address": "PO Box 10806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7000, "Improved_V": 68700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.076819046799997, "SHAPE_Area": 223.45533142 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350064.308499999344349, 257899.727800000458956 ], [ 350051.539399996399879, 257917.280600000172853 ], [ 350053.150700002908707, 257918.456000000238419 ], [ 350056.496299996972084, 257920.799400001764297 ], [ 350077.440700002014637, 257907.106600001454353 ], [ 350078.41330000013113, 257906.5929000005126 ], [ 350074.098200000822544, 257905.67119999974966 ], [ 350071.240699999034405, 257905.036200001835823 ], [ 350068.489000000059605, 257903.660399999469519 ], [ 350065.419799998402596, 257901.014600001275539 ], [ 350064.308499999344349, 257899.727800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-66", "ACRE": ".5", "LONGITUDE": -65.01344587, "LATITUDE": 18.35118569, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.280661546399998, "SHAPE_Area": 204.89057880199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350086.704700000584126, 257902.21339999884367 ], [ 350083.199799999594688, 257901.543699998408556 ], [ 350079.601499997079372, 257900.5912000015378 ], [ 350077.590700000524521, 257899.744600001722574 ], [ 350076.108999997377396, 257898.368700001388788 ], [ 350073.992299996316433, 257896.252099998295307 ], [ 350071.875699996948242, 257894.241200000047684 ], [ 350067.113099999725819, 257889.478700000792742 ], [ 350057.376500003039837, 257891.701200000941753 ], [ 350065.419799998402596, 257901.014600001275539 ], [ 350068.489000000059605, 257903.660399999469519 ], [ 350071.240699999034405, 257905.036200001835823 ], [ 350074.098200000822544, 257905.67119999974966 ], [ 350078.41330000013113, 257906.5929000005126 ], [ 350086.704700000584126, 257902.21339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-628-T004", "PARCEL_NAM": "3A-C-67", "ACRE": ".5", "LONGITUDE": -65.01367677, "LATITUDE": 18.3509148, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.13459251800001, "SHAPE_Area": 508.25424299299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350067.113099999725819, 257889.478700000792742 ], [ 350058.346600003540516, 257877.739999998360872 ], [ 350053.054899998009205, 257870.067099999636412 ], [ 350047.366400003433228, 257862.526399999856949 ], [ 350044.0591000020504, 257856.705600000917912 ], [ 350038.767399996519089, 257848.635800000280142 ], [ 350035.273400001227856, 257842.873599998652935 ], [ 350028.059399999678135, 257847.727099999785423 ], [ 350030.177199997007847, 257851.907800000160933 ], [ 350034.728100001811981, 257860.162799999117851 ], [ 350037.79730000346899, 257864.819499999284744 ], [ 350042.348099999129772, 257871.38120000064373 ], [ 350046.898900002241135, 257877.837000001221895 ], [ 350057.376500003039837, 257891.701200000941753 ], [ 350067.113099999725819, 257889.478700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-628-T004", "PARCEL_NAM": null, "ACRE": ".5", "LONGITUDE": -65.01334363, "LATITUDE": 18.35084022, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.02857129200001, "SHAPE_Area": 490.11561042400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350108.666400000452995, 257890.613200001418591 ], [ 350096.443499997258186, 257878.768500000238419 ], [ 350092.304399996995926, 257873.331999998539686 ], [ 350088.582699999213219, 257867.601599998772144 ], [ 350082.009800001978874, 257856.870600000023842 ], [ 350078.248700000345707, 257850.811500001698732 ], [ 350074.772299997508526, 257844.584600001573563 ], [ 350071.898900002241135, 257839.471099998801947 ], [ 350069.318599998950958, 257834.203600000590086 ], [ 350064.834899999201298, 257824.50730000063777 ], [ 350060.665700003504753, 257825.789700001478195 ], [ 350059.17400000244379, 257826.793299999088049 ], [ 350063.770599998533726, 257836.729499999433756 ], [ 350066.463699996471405, 257842.232799999415874 ], [ 350069.459100000560284, 257847.577399998903275 ], [ 350073.020000003278255, 257853.945799998939037 ], [ 350076.867499999701977, 257860.145199999213219 ], [ 350083.349799998104572, 257870.728500001132488 ], [ 350087.416500002145767, 257876.978399999439716 ], [ 350091.94879999756813, 257882.899399999529123 ], [ 350102.989600002765656, 257893.611699998378754 ], [ 350108.666400000452995, 257890.613200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-628-T004", "PARCEL_NAM": null, "ACRE": ".5", "LONGITUDE": -65.01279173, "LATITUDE": 18.35057786, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.906612268, "SHAPE_Area": 367.177325661 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350160.112899996340275, 257851.677400000393391 ], [ 350154.55629999935627, 257846.010800000280142 ], [ 350147.399999998509884, 257837.460700001567602 ], [ 350145.07379999756813, 257835.467300001531839 ], [ 350143.105099998414516, 257833.120099999010563 ], [ 350141.546999998390675, 257830.482400000095367 ], [ 350137.781099997460842, 257824.651599999517202 ], [ 350134.253600001335144, 257818.673599999397993 ], [ 350127.89469999819994, 257805.111200001090765 ], [ 350122.025600001215935, 257806.916400000452995 ], [ 350128.858199998736382, 257821.515900000929832 ], [ 350132.442800000309944, 257827.608800001442432 ], [ 350136.266599997878075, 257833.554499998688698 ], [ 350137.561099998652935, 257835.80290000140667 ], [ 350139.08389999717474, 257837.903499998152256 ], [ 350140.999899998307228, 257840.013300001621246 ], [ 350143.145700000226498, 257841.888900000602007 ], [ 350150.024899996817112, 257850.090999998152256 ], [ 350157.768399998545647, 257857.894000001251698 ], [ 350160.202600002288818, 257852.919799998402596 ], [ 350160.112899996340275, 257851.677400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-628-T004", "PARCEL_NAM": null, "ACRE": ".5", "LONGITUDE": -65.01274761000001, "LATITUDE": 18.35048455, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.80186599199999, "SHAPE_Area": 659.78558671200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350127.89469999819994, 257805.111200001090765 ], [ 350134.253600001335144, 257818.673599999397993 ], [ 350137.781099997460842, 257824.651599999517202 ], [ 350141.546999998390675, 257830.482400000095367 ], [ 350143.105099998414516, 257833.120099999010563 ], [ 350145.07379999756813, 257835.467300001531839 ], [ 350147.399999998509884, 257837.460700001567602 ], [ 350154.55629999935627, 257846.010800000280142 ], [ 350160.112899996340275, 257851.677400000393391 ], [ 350159.46169999986887, 257842.653999999165535 ], [ 350145.527000002563, 257799.687800001353025 ], [ 350127.89469999819994, 257805.111200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403030100", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-69", "ACRE": ".13", "LONGITUDE": -65.01307202, "LATITUDE": 18.35070446, "OBJECTID_1": 1704, "PARCEL_NO_": "102403030100", "Tax_Legal_": "3C-A ESTATE FORTUNA WESTEND QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "210-3A ALTONA", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 5179500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.18247876800001, "SHAPE_Area": 466.52985430799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350112.611100003123283, 257844.303199999034405 ], [ 350108.113200001418591, 257835.17509999871254 ], [ 350105.070500001311302, 257828.560499999672174 ], [ 350102.027699999511242, 257820.755300000309944 ], [ 350099.188199996948242, 257813.940799999982119 ], [ 350093.448100000619888, 257815.706399999558926 ], [ 350094.991499997675419, 257820.722199998795986 ], [ 350097.308499999344349, 257827.026099998503923 ], [ 350099.357100002467632, 257833.422200001776218 ], [ 350100.138400003314018, 257836.680599998682737 ], [ 350101.339800000190735, 257839.808600001037121 ], [ 350102.940700002014637, 257842.752199999988079 ], [ 350104.913400001823902, 257845.460799999535084 ], [ 350109.675499998033047, 257853.480099998414516 ], [ 350114.703000001609325, 257861.335799999535084 ], [ 350119.6300999969244, 257867.408599998801947 ], [ 350124.894500002264977, 257873.191399998962879 ], [ 350130.47919999808073, 257878.665600001811981 ], [ 350133.532499998807907, 257876.944099999964237 ], [ 350135.167900003492832, 257875.923300001770258 ], [ 350129.8091000020504, 257871.555399999022484 ], [ 350121.739200003445148, 257862.427200000733137 ], [ 350116.447599999606609, 257855.018899999558926 ], [ 350119.102200001478195, 257852.624400001019239 ], [ 350112.611100003123283, 257844.303199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403038800", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-58", "ACRE": ".06", "LONGITUDE": -65.01292789, "LATITUDE": 18.35066421, "OBJECTID_1": 1762, "PARCEL_NO_": "102403038800", "Tax_Legal_": "3C-A-58 ESTATE FORTUNA No. 8 WEST END QTR.", "Name": "HAYNES, VIVIAN", "Address": "61-2 BOLONGO BAY 7105", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6500, "Improved_V": 103000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.155347048300001, "SHAPE_Area": 247.66207400799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350138.71339999884367, 257837.433499999344349 ], [ 350137.399999998509884, 257835.550799999386072 ], [ 350136.266599997878075, 257833.554499998688698 ], [ 350133.797200001776218, 257829.774599999189377 ], [ 350112.611100003123283, 257844.303199999034405 ], [ 350119.102200001478195, 257852.624400001019239 ], [ 350138.71339999884367, 257837.433499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403038900", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-59", "ACRE": ".058", "LONGITUDE": -65.01288738, "LATITUDE": 18.35074106, "OBJECTID_1": 1763, "PARCEL_NO_": "102403038900", "Tax_Legal_": "3C-A-59 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "LOUBIE, MARY", "Address": "PO Box 6425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6500, "Improved_V": 133500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.1080970549, "SHAPE_Area": 250.663619248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350144.2516999989748, 257843.235399998724461 ], [ 350143.145700000226498, 257841.888900000602007 ], [ 350140.787600003182888, 257839.802400000393391 ], [ 350138.71339999884367, 257837.433499999344349 ], [ 350119.102200001478195, 257852.624400001019239 ], [ 350116.447599999606609, 257855.018899999558926 ], [ 350121.739200003445148, 257862.427200000733137 ], [ 350144.2516999989748, 257843.235399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403039000", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-60", "ACRE": ".05", "LONGITUDE": -65.01283089, "LATITUDE": 18.3507994, "OBJECTID_1": 1764, "PARCEL_NO_": "102403039000", "Tax_Legal_": "3C-A-60 ESTATE FORTUNA NO 8 WEST END QUARTER", "Name": "BLYDEN, JERMONE J.", "Address": "PO Box 307806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6500, "Improved_V": 104400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.925483049600004, "SHAPE_Area": 264.900268256 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350150.024899996817112, 257850.090999998152256 ], [ 350144.2516999989748, 257843.235399998724461 ], [ 350121.739200003445148, 257862.427200000733137 ], [ 350127.709399998188019, 257869.180300001055002 ], [ 350150.024899996817112, 257850.090999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403039200", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-61", "ACRE": ".05", "LONGITUDE": -65.01276046, "LATITUDE": 18.35086424, "OBJECTID_1": 1765, "PARCEL_NO_": "102403039200", "Tax_Legal_": "3C-A-61 ESTATE FORTUNA No.8 WEST END QTR.", "Name": "SMITH, ONIKA & OTIS", "Address": "PO Box 11046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6500, "Improved_V": 161500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.711158789799995, "SHAPE_Area": 338.954881091 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350150.024899996817112, 257850.090999998152256 ], [ 350127.709399998188019, 257869.180300001055002 ], [ 350129.8091000020504, 257871.555399999022484 ], [ 350135.167900003492832, 257875.923300001770258 ], [ 350150.148400001227856, 257866.572399999946356 ], [ 350154.27589999884367, 257862.76240000128746 ], [ 350157.768399998545647, 257857.894000001251698 ], [ 350150.024899996817112, 257850.090999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403038000", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-50", "ACRE": ".06", "LONGITUDE": -65.01332726, "LATITUDE": 18.3505865, "OBJECTID_1": 1755, "PARCEL_NO_": "102403038000", "Tax_Legal_": "3C-A-50 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "BRUNEY, EMMA J", "Address": "PO Box 307501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6200, "Improved_V": 123400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.872081184600006, "SHAPE_Area": 211.05824778100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350098.724799998104572, 257831.346200000494719 ], [ 350096.541799999773502, 257824.847199998795986 ], [ 350068.601499997079372, 257832.63569999858737 ], [ 350069.318599998950958, 257834.203600000590086 ], [ 350072.122800000011921, 257839.894999999552965 ], [ 350098.724799998104572, 257831.346200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403037900", "MAP": "A9-628-T004", "PARCEL_NAM": "3-A-49", "ACRE": ".06", "LONGITUDE": -65.01335271000001, "LATITUDE": 18.35051517, "OBJECTID_1": 1754, "PARCEL_NO_": "102403037900", "Tax_Legal_": "3-CA-49 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "LEONARD, DEBORAH", "Address": "6611 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6200, "Improved_V": 98900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.554937982499993, "SHAPE_Area": 271.90575584099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350096.541799999773502, 257824.847199998795986 ], [ 350094.991499997675419, 257820.722199998795986 ], [ 350093.448100000619888, 257815.706399999558926 ], [ 350064.834899999201298, 257824.50730000063777 ], [ 350068.601499997079372, 257832.63569999858737 ], [ 350096.541799999773502, 257824.847199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403038100", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-51", "ACRE": ".06", "LONGITUDE": -65.01329785, "LATITUDE": 18.35065352, "OBJECTID_1": 1756, "PARCEL_NO_": "102403038100", "Tax_Legal_": "3C-A-51 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "WHITE, ALFRED E", "Address": "PO Box 305323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6200, "Improved_V": 98700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.316071704600006, "SHAPE_Area": 232.50924644299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350100.914899997413158, 257838.835099998861551 ], [ 350099.986199997365475, 257836.171799998730421 ], [ 350099.357100002467632, 257833.422200001776218 ], [ 350098.724799998104572, 257831.346200000494719 ], [ 350072.122800000011921, 257839.894999999552965 ], [ 350074.772299997508526, 257844.584600001573563 ], [ 350076.822800002992153, 257848.338799998164177 ], [ 350100.914899997413158, 257838.835099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403038200", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-52", "ACRE": ".06", "LONGITUDE": -65.0132602, "LATITUDE": 18.35072475, "OBJECTID_1": 1757, "PARCEL_NO_": "102403038200", "Tax_Legal_": "3C-A-52 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "LAPLACE, MERVIN C", "Address": "PO Box 307913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037913, "Country": "United States", "Land_Value": 6200, "Improved_V": 98700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.233097258000001, "SHAPE_Area": 224.96779205799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350104.913400001823902, 257845.460799999535084 ], [ 350102.661499999463558, 257842.300400000065565 ], [ 350100.914899997413158, 257838.835099998861551 ], [ 350076.822800002992153, 257848.338799998164177 ], [ 350082.009800001978874, 257856.870600000023842 ], [ 350104.913400001823902, 257845.460799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403038200", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-53", "ACRE": ".07", "LONGITUDE": -65.01320807, "LATITUDE": 18.35079718, "OBJECTID_1": 1757, "PARCEL_NO_": "102403038200", "Tax_Legal_": "3C-A-52 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "LAPLACE, MERVIN C", "Address": "PO Box 307913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037913, "Country": "United States", "Land_Value": 6200, "Improved_V": 98700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.878374369, "SHAPE_Area": 265.53256761 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350110.104000002145767, 257854.172699999064207 ], [ 350104.913400001823902, 257845.460799999535084 ], [ 350082.009800001978874, 257856.870600000023842 ], [ 350087.627400003373623, 257866.023800000548363 ], [ 350110.104000002145767, 257854.172699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403038400", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-54", "ACRE": ".05", "LONGITUDE": -65.01315984, "LATITUDE": 18.350872, "OBJECTID_1": 1759, "PARCEL_NO_": "102403038400", "Tax_Legal_": "3C-A-54 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "EDWARDS, INEZ", "Address": "PO Box 307795", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6200, "Improved_V": 123400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.746252465500007, "SHAPE_Area": 228.19130319300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350114.703000001609325, 257861.335799999535084 ], [ 350110.104000002145767, 257854.172699999064207 ], [ 350087.627400003373623, 257866.023800000548363 ], [ 350088.582699999213219, 257867.601599998772144 ], [ 350092.785099998116493, 257874.008400000631809 ], [ 350114.703000001609325, 257861.335799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403038500", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-55", "ACRE": ".05", "LONGITUDE": -65.01310635, "LATITUDE": 18.35094097, "OBJECTID_1": 1760, "PARCEL_NO_": "102403038500", "Tax_Legal_": "3C-A-55 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "BROWN, KIMBERLY M", "Address": "6309 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6200, "Improved_V": 98700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.250570295499998, "SHAPE_Area": 250.67721830299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350120.667700000107288, 257868.601700000464916 ], [ 350114.703000001609325, 257861.335799999535084 ], [ 350092.785099998116493, 257874.008400000631809 ], [ 350096.443499997258186, 257878.768500000238419 ], [ 350099.817400000989437, 257882.058899998664856 ], [ 350120.667700000107288, 257868.601700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403038600", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-56", "ACRE": ".06", "LONGITUDE": -65.01302583, "LATITUDE": 18.35101447, "OBJECTID_1": 1761, "PARCEL_NO_": "102403038600", "Tax_Legal_": "3C-A-56 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "CAINES, VERLYN K", "Address": "PO Box 305908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7200, "Improved_V": 126100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.056308693099993, "SHAPE_Area": 317.93020331899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350120.667700000107288, 257868.601700000464916 ], [ 350099.817400000989437, 257882.058899998664856 ], [ 350108.666400000452995, 257890.613200001418591 ], [ 350118.515799999237061, 257885.410799998790026 ], [ 350130.47919999808073, 257878.665600001811981 ], [ 350125.444799996912479, 257873.759100001305342 ], [ 350120.667700000107288, 257868.601700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403037100", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-41", "ACRE": ".06", "LONGITUDE": -65.01364981, "LATITUDE": 18.35064739, "OBJECTID_1": 1746, "PARCEL_NO_": "102403037100", "Tax_Legal_": "3C-A-41 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "VANTERPOOL, EVALY V", "Address": "PO Box 307771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 65300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.739420977999998, "SHAPE_Area": 256.72464355800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350063.178800001740456, 257835.435300000011921 ], [ 350059.17400000244379, 257826.793299999088049 ], [ 350035.273400001227856, 257842.873599998652935 ], [ 350038.767399996519089, 257848.635800000280142 ], [ 350039.872299998998642, 257850.320700000971556 ], [ 350063.178800001740456, 257835.435300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403037200", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-42", "ACRE": ".06", "LONGITUDE": -65.01361023, "LATITUDE": 18.35072074, "OBJECTID_1": 1747, "PARCEL_NO_": "102403037200", "Tax_Legal_": "3C-A-42 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "MONSANTO, SELENE A", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6700, "Improved_V": 124300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.532372090799996, "SHAPE_Area": 245.661427377 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350063.178800001740456, 257835.435300000011921 ], [ 350039.872299998998642, 257850.320700000971556 ], [ 350044.0591000020504, 257856.705600000917912 ], [ 350044.933399997651577, 257858.244300000369549 ], [ 350067.05120000243187, 257843.337799999862909 ], [ 350063.770599998533726, 257836.729499999433756 ], [ 350063.178800001740456, 257835.435300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403037300", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-43", "ACRE": ".06", "LONGITUDE": -65.01356921, "LATITUDE": 18.35078884, "OBJECTID_1": 1748, "PARCEL_NO_": "102403037300", "Tax_Legal_": "3C-A-43 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "RENE, CHRIS M. P.", "Address": "PO Box 305252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 66400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.386277334900001, "SHAPE_Area": 218.78712670199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350067.05120000243187, 257843.337799999862909 ], [ 350044.933399997651577, 257858.244300000369549 ], [ 350047.366400003433228, 257862.526399999856949 ], [ 350049.599200002849102, 257865.486200001090765 ], [ 350070.891500003635883, 257850.221700001507998 ], [ 350069.459100000560284, 257847.577399998903275 ], [ 350067.05120000243187, 257843.337799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403037400", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-44", "ACRE": ".06", "LONGITUDE": -65.01351631, "LATITUDE": 18.35086039, "OBJECTID_1": 1749, "PARCEL_NO_": "102403037400", "Tax_Legal_": "3C-A-44 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7000, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.878008700799995, "SHAPE_Area": 286.91956487499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350070.891500003635883, 257850.221700001507998 ], [ 350049.599200002849102, 257865.486200001090765 ], [ 350053.054899998009205, 257870.067099999636412 ], [ 350055.960900001227856, 257874.280699998140335 ], [ 350076.867499999701977, 257860.145199999213219 ], [ 350073.789599999785423, 257855.23759999871254 ], [ 350070.891500003635883, 257850.221700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403037500", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-45", "ACRE": ".06", "LONGITUDE": -65.0134667, "LATITUDE": 18.3509426, "OBJECTID_1": 1750, "PARCEL_NO_": "102403037500", "Tax_Legal_": "3C-A-45 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "FELICIEN, JOSEPH H. & MARTINA", "Address": "PO Box 304001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 68900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.197787771099996, "SHAPE_Area": 240.21220393199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350076.867499999701977, 257860.145199999213219 ], [ 350055.960900001227856, 257874.280699998140335 ], [ 350058.346600003540516, 257877.739999998360872 ], [ 350062.430600002408028, 257883.208599999547005 ], [ 350081.1925999969244, 257867.174899999052286 ], [ 350076.867499999701977, 257860.145199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403037600", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-46", "ACRE": ".05", "LONGITUDE": -65.01341495, "LATITUDE": 18.35100425, "OBJECTID_1": 1751, "PARCEL_NO_": "102403037600", "Tax_Legal_": "3C-A-46 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "ANDREW, HITSON & KALIMA", "Address": "PO Box 304943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 84800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.403659951400002, "SHAPE_Area": 190.20180562100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350081.1925999969244, 257867.174899999052286 ], [ 350062.430600002408028, 257883.208599999547005 ], [ 350067.113099999725819, 257889.478700000792742 ], [ 350085.350000001490116, 257873.933299999684095 ], [ 350083.349799998104572, 257870.728500001132488 ], [ 350081.1925999969244, 257867.174899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403037700", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-47", "ACRE": ".05", "LONGITUDE": -65.01335623, "LATITUDE": 18.35107284, "OBJECTID_1": 1752, "PARCEL_NO_": "102403037700", "Tax_Legal_": "3C-A-47 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "MOORE, MAURICE & KANIKA O", "Address": "PO Box 6874", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7000, "Improved_V": 68200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.159318719799998, "SHAPE_Area": 273.15402441200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350085.350000001490116, 257873.933299999684095 ], [ 350067.113099999725819, 257889.478700000792742 ], [ 350071.875699996948242, 257894.241200000047684 ], [ 350073.992299996316433, 257896.252099998295307 ], [ 350075.23589999973774, 257897.495600000023842 ], [ 350092.888400003314018, 257883.817800000309944 ], [ 350091.94879999756813, 257882.899399999529123 ], [ 350088.521300002932549, 257878.510600000619888 ], [ 350085.350000001490116, 257873.933299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403037800", "MAP": "A9-628-T004", "PARCEL_NAM": "3C-A-48", "ACRE": ".05", "LONGITUDE": -65.01326932000001, "LATITUDE": 18.35114455, "OBJECTID_1": 1753, "PARCEL_NO_": "102403037800", "Tax_Legal_": "3C-A-48 ESTATE FORTUNA No.8 WESTEND QTR.", "Name": "HART, SHARON", "Address": "O.H.C.BLDG.5", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7000, "Improved_V": 85200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.547165844000006, "SHAPE_Area": 252.492803076 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350092.888400003314018, 257883.817800000309944 ], [ 350075.23589999973774, 257897.495600000023842 ], [ 350076.108999997377396, 257898.368700001388788 ], [ 350077.590700000524521, 257899.744600001722574 ], [ 350079.601499997079372, 257900.5912000015378 ], [ 350083.199799999594688, 257901.543699998408556 ], [ 350086.704700000584126, 257902.21339999884367 ], [ 350102.989600002765656, 257893.611699998378754 ], [ 350092.888400003314018, 257883.817800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404010800", "MAP": "D9-8139-T008", "PARCEL_NAM": "6-2A", "ACRE": ".335", "LONGITUDE": -65.00641142000001, "LATITUDE": 18.3554573, "OBJECTID_1": 1830, "PARCEL_NO_": "102404010800", "Tax_Legal_": "6-2A FORTUNA NO.8 WEST END QTR", "Name": "WEBSTER, ROY", "Address": "PO BOX 9472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.80028650899999, "SHAPE_Area": 1291.3994178099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350836.848200000822544, 258381.997299998998642 ], [ 350801.36879999935627, 258351.247800000011921 ], [ 350782.548000000417233, 258372.308499999344349 ], [ 350790.557199999690056, 258378.706900000572205 ], [ 350804.196199998259544, 258386.84010000154376 ], [ 350811.388300001621246, 258394.4983000010252 ], [ 350818.551600001752377, 258405.5337999984622 ], [ 350836.848200000822544, 258381.997299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404012400", "MAP": "D9-5720-T94", "PARCEL_NAM": "6-2C", "ACRE": ".374", "LONGITUDE": -65.00658297, "LATITUDE": 18.35515676, "OBJECTID_1": 1845, "PARCEL_NO_": "102404012400", "Tax_Legal_": "6-2C FORTUNA NO.8 WEST END QTR", "Name": "WEBSTER, KEVIN R.", "Address": "PO BOX 8841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.17667792500001, "SHAPE_Area": 1244.5807063899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350819.872800000011921, 258330.541600000113249 ], [ 350816.785400003194809, 258328.892400000244379 ], [ 350811.972699999809265, 258325.897700000554323 ], [ 350803.1554000005126, 258319.70380000025034 ], [ 350799.951700001955032, 258317.144400000572205 ], [ 350768.207000002264977, 258351.926199998706579 ], [ 350774.564000003039837, 258362.955099999904633 ], [ 350782.548000000417233, 258372.308499999344349 ], [ 350819.872800000011921, 258330.541600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404030900", "MAP": "F9-1523-T65", "PARCEL_NAM": "57-3", "ACRE": ".50", "LONGITUDE": -65.00357945, "LATITUDE": 18.3564693, "OBJECTID_1": 1876, "PARCEL_NO_": "102404030900", "Tax_Legal_": "FORTUNA 57-3 WEST END QTR", "Name": "HODGE, ZENZILE M.", "Address": "3208 Estate Bethesda", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 8020000, "Country": "United States", "Land_Value": 65900, "Improved_V": 246200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.429203809, "SHAPE_Area": 2096.11497938 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351133.32320000231266, 258490.547600001096725 ], [ 351103.974500000476837, 258453.954900000244379 ], [ 351101.155500002205372, 258456.187199998646975 ], [ 351093.047399997711182, 258461.398200001567602 ], [ 351086.943199999630451, 258462.942800000309944 ], [ 351092.894799999892712, 258487.372600000351667 ], [ 351090.347900003194809, 258520.037500001490116 ], [ 351124.009900003671646, 258518.435699999332428 ], [ 351128.231600001454353, 258518.239100001752377 ], [ 351133.32320000231266, 258490.547600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012600", "MAP": "B9-272-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97619545000001, "LATITUDE": 18.35999043, "OBJECTID_1": 2195, "PARCEL_NO_": "102601012600", "Tax_Legal_": "63-REM CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, LIONEL & OTHERS", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1223700, "Improved_V": 42300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 577.99972381199996, "SHAPE_Area": 13640.0013487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353905.60869999974966, 258984.374000001698732 ], [ 353919.741599999368191, 258985.669399999082088 ], [ 353923.825300000607967, 258979.5810999982059 ], [ 353941.661300003528595, 258968.328099999576807 ], [ 353947.332400001585484, 258965.208099998533726 ], [ 353966.770199999213219, 258955.234700001776218 ], [ 353993.464900001883507, 258945.320700000971556 ], [ 354010.433399997651577, 258941.237700000405312 ], [ 354114.871699996292591, 258923.528000000864267 ], [ 353979.617399998009205, 258817.036800000816584 ], [ 353945.496100001037121, 258896.798700001090765 ], [ 353938.9070999994874, 258912.999000001698732 ], [ 353922.44820000231266, 258951.916600000113249 ], [ 353909.329599998891354, 258977.351599998772144 ], [ 353905.60869999974966, 258984.374000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012900", "MAP": "A9-747-T009", "PARCEL_NAM": "63-3", "ACRE": "1.1", "LONGITUDE": -64.97548257, "LATITUDE": 18.36162522, "OBJECTID_1": 2198, "PARCEL_NO_": "102601012900", "Tax_Legal_": "63-3 CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "L & L INVESTMENTS REV. TRST.", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 184700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.19751974799999, "SHAPE_Area": 2380.7470856300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354111.350100003182888, 259077.275100000202656 ], [ 354033.692500002682209, 259062.350699998438358 ], [ 354029.39360000193119, 259081.981199998408556 ], [ 354030.964900001883507, 259086.849199999123812 ], [ 354089.683600001037121, 259104.006099998950958 ], [ 354099.303599998354912, 259110.628800000995398 ], [ 354104.100100003182888, 259115.523200001567602 ], [ 354108.068800002336502, 259122.943900000303984 ], [ 354111.350100003182888, 259077.275100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012000", "MAP": "D9-4244-T88", "PARCEL_NAM": "2A", "ACRE": ".27", "LONGITUDE": -64.97803527000001, "LATITUDE": 18.362784, "OBJECTID_1": 2189, "PARCEL_NO_": "102601012000", "Tax_Legal_": "CARET BAY REMAINDER 2A LITTLE NORTHSIDE", "Name": "SEKOU, PAULINE", "Address": "7266 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42500, "Improved_V": 114600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.215338648, "SHAPE_Area": 1220.0007070500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353820.607600003480911, 259225.611800000071526 ], [ 353827.618400000035763, 259198.119899999350309 ], [ 353788.128899998962879, 259195.474700000137091 ], [ 353777.22070000320673, 259226.481899999082088 ], [ 353820.607600003480911, 259225.611800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601036500", "MAP": "D9-8326-T009", "PARCEL_NAM": "39-1", "ACRE": ".22", "LONGITUDE": -64.97800947, "LATITUDE": 18.36226755, "OBJECTID_1": 2326, "PARCEL_NO_": "102601036500", "Tax_Legal_": "39-1 ESTATE PEARL NO.2 SOUTHSIDE QTR", "Name": "PENNY PALMS LLC", "Address": "7301 Flagg Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.513573992, "SHAPE_Area": 784.14697281700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353825.601400002837181, 259135.76630000025034 ], [ 353796.707699999213219, 259137.346700001507998 ], [ 353795.685699999332428, 259167.801699999719858 ], [ 353795.685699999332428, 259169.653799999505281 ], [ 353794.891999997198582, 259172.82880000025034 ], [ 353798.68639999628067, 259186.695199999958277 ], [ 353825.601400002837181, 259135.76630000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601036400", "MAP": "D9-8326-T009", "PARCEL_NAM": "39-2", "ACRE": ".19", "LONGITUDE": -64.97798503, "LATITUDE": 18.36201541, "OBJECTID_1": 2325, "PARCEL_NO_": "102601036400", "Tax_Legal_": "39-2 ESTATE PEARL NO.2 SOUTHSIDE QTR", "Name": "BOSCHULTE, RANDOLPH C.", "Address": "PO Box 2101", "City": "Maple Grove", "State": "Minnesota", "Zip": 55311, "Country": "United States", "Land_Value": 36200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.27677009600001, "SHAPE_Area": 558.33156620399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353825.601400002837181, 259135.76630000025034 ], [ 353829.010899998247623, 259129.314800001680851 ], [ 353798.034999996423721, 259109.605500001460314 ], [ 353796.744099996984005, 259113.032800000160933 ], [ 353795.685699999332428, 259115.943300001323223 ], [ 353795.421099998056889, 259120.176600001752377 ], [ 353797.008599996566772, 259128.378699999302626 ], [ 353796.707699999213219, 259137.346700001507998 ], [ 353825.601400002837181, 259135.76630000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97382406, "LATITUDE": 18.35632542, "OBJECTID_1": 2693, "PARCEL_NO_": "102604020200", "Tax_Legal_": "CROWN & HAWK 2C-3 S S QTR", "Name": "FRAZIER, MEGAN", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69600, "Improved_V": 98900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.54927774699999, "SHAPE_Area": 3244.0918179800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354207.428300000727177, 258509.468400001525879 ], [ 354300.049599997699261, 258533.309500001370907 ], [ 354292.232699997723103, 258518.401599999517202 ], [ 354271.666000001132488, 258471.581599999219179 ], [ 354225.322700001299381, 258475.455600000917912 ], [ 354207.428300000727177, 258509.468400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97381196000001, "LATITUDE": 18.35672554, "OBJECTID_1": 2395, "PARCEL_NO_": "102602014800", "Tax_Legal_": "CROWN & HAWK 2C-2 S S QTR", "Name": "FOX, ROBERT & KATHERINE", "Address": "80 John St", "City": "TORONTO", "State": "Ontario", "Zip": 0, "Country": "Canada", "Land_Value": 119800, "Improved_V": 318700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.26322403099999, "SHAPE_Area": 4998.8996723199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354300.049599997699261, 258533.309500001370907 ], [ 354207.428300000727177, 258509.468400001525879 ], [ 354202.228500001132488, 258519.351799998432398 ], [ 354183.984999999403954, 258542.609999999403954 ], [ 354214.113200001418591, 258552.578600000590086 ], [ 354296.434000000357628, 258579.816399998962879 ], [ 354321.430100001394749, 258569.974800001829863 ], [ 354315.243600003421307, 258562.286299999803305 ], [ 354300.049599997699261, 258533.309500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026500", "MAP": "D9-2055-T82", "PARCEL_NAM": "3I-6", "ACRE": ".51", "LONGITUDE": -64.93540973, "LATITUDE": 18.36146552, "OBJECTID_1": 4147, "PARCEL_NO_": "102802026500", "Tax_Legal_": "3i-6 & 1/8 INTEREST IN 3i-9 & 3i-10 ROW LERKENLUND NO. 9 NORTHSIDE QTR", "Name": "MARIO A. VERWEIJ REV. TRST", "Address": "9053 Estate Thomas", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.84460689599999, "SHAPE_Area": 2815.3696835300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358355.65820000320673, 259126.930300001055002 ], [ 358319.846100002527237, 259072.766699999570847 ], [ 358308.253899998962879, 259075.594300001859665 ], [ 358281.896200001239777, 259083.915199998766184 ], [ 358278.953900001943111, 259086.338700000196695 ], [ 358270.628700003027916, 259093.195999998599291 ], [ 358262.98929999768734, 259099.488400001078844 ], [ 358265.077399998903275, 259101.5760000012815 ], [ 358272.480800002813339, 259108.451799999922514 ], [ 358280.418300002813339, 259113.214299999177456 ], [ 358292.060000002384186, 259118.770599998533726 ], [ 358299.21339999884367, 259120.788199998438358 ], [ 358302.378799997270107, 259121.681000001728535 ], [ 358314.020499996840954, 259123.268500000238419 ], [ 358325.926700003445148, 259125.385200001299381 ], [ 358338.150399997830391, 259125.09739999845624 ], [ 358342.48480000346899, 259124.527499999850988 ], [ 358345.765699997544289, 259124.633299998939037 ], [ 358349.787399999797344, 259125.162500001490116 ], [ 358352.644900001585484, 259126.009100001305342 ], [ 358355.65820000320673, 259126.930300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020100", "MAP": "D9-2055-T82", "PARCEL_NAM": "3I-5", "ACRE": "0.62", "LONGITUDE": -64.93608609, "LATITUDE": 18.36068937, "OBJECTID_1": 4086, "PARCEL_NO_": "102802020100", "Tax_Legal_": "3i-5 & 1/8 INTEREST IN 3i-9 & 3i-10 ROW LERKENLUND NO. 9 NORTHSIDE QTR", "Name": "JCD PROPERTIES LLC", "Address": "1000 Blackbeards Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.82148507599999, "SHAPE_Area": 1733.72847402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358249.828699998557568, 258971.996199999004602 ], [ 358241.09740000218153, 258958.978700000792742 ], [ 358240.640668648062274, 258959.078688355948543 ], [ 358240.207120418956038, 258959.253723021247424 ], [ 358239.808990998018999, 258959.498864134016912 ], [ 358239.457516471738927, 258959.807193273765733 ], [ 358239.162616223213263, 258960.170008715038421 ], [ 358238.93261298496509, 258960.577071009320207 ], [ 358238.773997953569051, 258961.016891964711249 ], [ 358238.691247593495063, 258961.477058868040331 ], [ 358238.686697301571257, 258961.944584798737196 ], [ 358238.760475497168954, 258962.406275148270652 ], [ 358238.910499997437, 258962.84910000115633 ], [ 358240.009258282138035, 258969.715706579358084 ], [ 358240.6452120715403, 258976.640525598311797 ], [ 358240.815499998629093, 258983.592399999499321 ], [ 358240.710163610172458, 258989.682413176749833 ], [ 358240.107361264701467, 258995.743435003649211 ], [ 358239.011127630190458, 259001.734897936199559 ], [ 358237.428800001740456, 259007.616700001060963 ], [ 358235.112771887623239, 259013.28932417431497 ], [ 358232.194433101336472, 259018.676897836383432 ], [ 358228.70830000191927, 259023.715700000524521 ], [ 358223.258680422906764, 259028.098468745622085 ], [ 358218.24828899273416, 259032.977299870544812 ], [ 358213.722099997103214, 259038.308400001376867 ], [ 358209.591010653879493, 259045.930232678394532 ], [ 358206.014822379918769, 259053.827644276345382 ], [ 358203.011799998581409, 259061.960299998521805 ], [ 358204.767700001597404, 259060.895899999886751 ], [ 358226.836199998855591, 259047.518699999898672 ], [ 358235.553099997341633, 259042.041700001806021 ], [ 358246.945600003004074, 259034.883699998259544 ], [ 358252.686200000345707, 259022.320000000298023 ], [ 358255.067400000989437, 259015.017499998211861 ], [ 358257.289899997413158, 259006.762499999254942 ], [ 358258.401199996471405, 259000.094999998807907 ], [ 358258.945200003683567, 258995.290699999779463 ], [ 358257.766199998557568, 258989.617499999701977 ], [ 358254.114900000393391, 258981.838700000196695 ], [ 358249.828699998557568, 258971.996199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026900", "MAP": "D9-2055-T82", "PARCEL_NAM": "3I-4", "ACRE": ".51", "LONGITUDE": -64.93625586, "LATITUDE": 18.36125453, "OBJECTID_1": 4151, "PARCEL_NO_": "102802026900", "Tax_Legal_": "3i-4 & 1/8 INTEREST IN 3i-9 & 3i-10 ROW LERKENLUND NO. 9 NORTHSIDE QTR", "Name": "JCD PROPERTIES LLC", "Address": "1000 Blackbeards Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.68380813499999, "SHAPE_Area": 2207.2971794099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358243.035400003194809, 259041.940799999982119 ], [ 358246.945600003004074, 259034.883699998259544 ], [ 358235.553099997341633, 259042.041700001806021 ], [ 358226.836199998855591, 259047.518699999898672 ], [ 358204.767700001597404, 259060.895899999886751 ], [ 358203.011799998581409, 259061.960299998521805 ], [ 358202.821199998259544, 259062.544300001114607 ], [ 358200.619709096150473, 259068.599205093778437 ], [ 358199.030121316958684, 259074.842733628611313 ], [ 358198.068137991649564, 259081.213214454648551 ], [ 358197.743261218012776, 259087.647722435445758 ], [ 358198.058700002729893, 259094.082699999213219 ], [ 358199.037059591559228, 259103.076206253521377 ], [ 358200.396644717082381, 259112.020023700111778 ], [ 358202.134999997913837, 259120.897999998182058 ], [ 358203.105499997735023, 259120.035599999129772 ], [ 358209.331799998879433, 259114.503199998289347 ], [ 358211.5996999964118, 259111.648600000888109 ], [ 358244.291000001132488, 259081.014400001615286 ], [ 358241.908600002527237, 259072.241500001400709 ], [ 358240.403300002217293, 259064.095100000500679 ], [ 358240.254299998283386, 259061.575300000607967 ], [ 358240.188799999654293, 259060.467500001192093 ], [ 358240.056500002741814, 259054.44819999858737 ], [ 358240.916400000452995, 259048.429000001400709 ], [ 358242.702299997210503, 259042.541999999433756 ], [ 358243.035400003194809, 259041.940799999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026300", "MAP": "D9-2055-T82", "PARCEL_NAM": "3I-9", "ACRE": null, "LONGITUDE": -64.93619742, "LATITUDE": 18.35997426, "OBJECTID_1": 4145, "PARCEL_NO_": "102802026300", "Tax_Legal_": "3i-2 & 1/8 INTEREST IN 3i-9 & 3i-10 ROW LERKENLUND NO. 9 NORTHSIDE QTR", "Name": "ZAZULAK, O. GREGORY & JANET L.", "Address": "392 Fisher Road Cir", "City": "Pittsford", "State": "New York", "Zip": 14534, "Country": "United States", "Land_Value": 161700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.10372220299999, "SHAPE_Area": 211.343691466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358231.541400000452995, 258937.8114 ], [ 358221.490299999713898, 258922.517799999564886 ], [ 358219.189300000667572, 258919.016600001603365 ], [ 358214.897200003266335, 258922.297400001436472 ], [ 358201.626900002360344, 258932.441199999302626 ], [ 358207.759800001978874, 258928.498599998652935 ], [ 358216.12610000371933, 258924.352299999445677 ], [ 358220.437600001692772, 258930.472800001502037 ], [ 358226.05120000243187, 258937.572500001639128 ], [ 358241.09740000218153, 258958.978700000792742 ], [ 358241.544299997389317, 258953.031599998474121 ], [ 358231.541400000452995, 258937.8114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802026300", "MAP": "D9-2055-T82", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.935673, "LATITUDE": 18.36125862, "OBJECTID_1": 4145, "PARCEL_NO_": "102802026300", "Tax_Legal_": "3i-2 & 1/8 INTEREST IN 3i-9 & 3i-10 ROW LERKENLUND NO. 9 NORTHSIDE QTR", "Name": "ZAZULAK, O. GREGORY & JANET L.", "Address": "392 Fisher Road Cir", "City": "Pittsford", "State": "New York", "Zip": 14534, "Country": "United States", "Land_Value": 161700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 558.20755001199996, "SHAPE_Area": 1532.5685847100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358357.936499997973442, 259134.370000001043081 ], [ 358358.489900000393391, 259131.213100001215935 ], [ 358355.65820000320673, 259126.930300001055002 ], [ 358352.644900001585484, 259126.009100001305342 ], [ 358349.787399999797344, 259125.162500001490116 ], [ 358345.765699997544289, 259124.633299998939037 ], [ 358342.48480000346899, 259124.527499999850988 ], [ 358338.150399997830391, 259125.09739999845624 ], [ 358325.926700003445148, 259125.385200001299381 ], [ 358314.020499996840954, 259123.268500000238419 ], [ 358302.378799997270107, 259121.681000001728535 ], [ 358299.21339999884367, 259120.788199998438358 ], [ 358292.060000002384186, 259118.770599998533726 ], [ 358280.418300002813339, 259113.214299999177456 ], [ 358272.480800002813339, 259108.451799999922514 ], [ 358265.077399998903275, 259101.5760000012815 ], [ 358259.251599997282028, 259095.751800000667572 ], [ 358256.331699997186661, 259087.445700000971556 ], [ 358250.78490000218153, 259077.760099999606609 ], [ 358247.591700002551079, 259072.175500001758337 ], [ 358245.779399998486042, 259067.624499998986721 ], [ 358244.350699998438358, 259064.925799999386072 ], [ 358244.191899999976158, 259062.54450000077486 ], [ 358244.668200001120567, 259059.210799999535084 ], [ 358245.303199999034405, 259054.130699999630451 ], [ 358246.57320000231266, 259048.415699999779463 ], [ 358247.525700002908707, 259042.859499998390675 ], [ 358251.018200002610683, 259033.969500001519918 ], [ 358252.923199996352196, 259031.588199999183416 ], [ 358255.463200002908707, 259027.61939999833703 ], [ 358259.098700001835823, 259020.021800000220537 ], [ 358259.516199998557568, 259018.228700000792742 ], [ 358260.574500001966953, 259007.90989999845624 ], [ 358262.145099997520447, 259000.473000001162291 ], [ 358264.543300002813339, 258989.124499998986721 ], [ 358258.307599999010563, 258978.53830000013113 ], [ 358241.544299997389317, 258953.031599998474121 ], [ 358241.09740000218153, 258958.978700000792742 ], [ 358249.828699998557568, 258971.996199999004602 ], [ 358254.114900000393391, 258981.838700000196695 ], [ 358257.766199998557568, 258989.617499999701977 ], [ 358258.945200003683567, 258995.290699999779463 ], [ 358258.401199996471405, 259000.094999998807907 ], [ 358257.289899997413158, 259006.762499999254942 ], [ 358255.067400000989437, 259015.017499998211861 ], [ 358252.686200000345707, 259022.320000000298023 ], [ 358246.945600003004074, 259034.883699998259544 ], [ 358243.035400003194809, 259041.940799999982119 ], [ 358242.702299997210503, 259042.541999999433756 ], [ 358240.916400000452995, 259048.429000001400709 ], [ 358240.056500002741814, 259054.44819999858737 ], [ 358240.254299998283386, 259061.576400000602007 ], [ 358240.403300002217293, 259064.095100000500679 ], [ 358241.908600002527237, 259072.241500001400709 ], [ 358244.291000001132488, 259081.014400001615286 ], [ 358250.781199999153614, 259090.900199998170137 ], [ 358254.114900000393391, 259096.297699999064207 ], [ 358257.13120000064373, 259101.377700001001358 ], [ 358259.353699997067451, 259104.235199999064207 ], [ 358261.841600000858307, 259106.278799999505281 ], [ 358263.798699997365475, 259107.886500000953674 ], [ 358269.354999996721745, 259112.649000000208616 ], [ 358273.799999997019768, 259116.935199998319149 ], [ 358283.325000002980232, 259122.491500001400709 ], [ 358289.357500001788139, 259126.301500000059605 ], [ 358294.278800003230572, 259128.841499999165535 ], [ 358298.774099998176098, 259129.822299998253584 ], [ 358303.009999997913837, 259130.746500000357628 ], [ 358312.376299999654293, 259130.1114999987185 ], [ 358328.727600000798702, 259130.587799999862909 ], [ 358341.916900001466274, 259131.305799998342991 ], [ 358344.707299999892712, 259131.300799999386072 ], [ 358346.189000003039837, 259131.300799999386072 ], [ 358347.035700000822544, 259131.512499999254942 ], [ 358347.988200001418591, 259131.618299998342991 ], [ 358348.940700002014637, 259132.041700001806021 ], [ 358349.152400001883507, 259132.888300001621246 ], [ 358349.152400001883507, 259134.158300001174212 ], [ 358348.411499999463558, 259135.004999998956919 ], [ 358347.458999998867512, 259135.957499999552965 ], [ 358345.482900001108646, 259137.183800000697374 ], [ 358348.838799998164177, 259142.715399999171495 ], [ 358349.998999997973442, 259141.778299998492002 ], [ 358351.586499996483326, 259140.614199999719858 ], [ 358354.443999998271465, 259138.709199998527765 ], [ 358356.878200002014637, 259136.486699998378754 ], [ 358357.936499997973442, 259134.370000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601032600", "MAP": "D9-2978-T85", "PARCEL_NAM": "38B-8B", "ACRE": ".916", "LONGITUDE": -64.97674069, "LATITUDE": 18.35915123, "OBJECTID_1": 2297, "PARCEL_NO_": "102601032600", "Tax_Legal_": "PEARL ESTATE 38B-8B No.2 SOUTHSIDE QTR.", "Name": "CALLWOOD, ELMIRA & HART, RUDEL T", "Address": "PO Box 305853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 151300, "Improved_V": 234000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.80029181699999, "SHAPE_Area": 2104.049482 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353907.912900000810623, 258804.5625 ], [ 353968.090400002896786, 258843.982400000095367 ], [ 353979.617399998009205, 258817.036800000816584 ], [ 353980.051700003445148, 258816.021600000560284 ], [ 353978.866200000047684, 258815.335400000214577 ], [ 353912.260899998247623, 258776.780600000172853 ], [ 353907.912900000810623, 258804.5625 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033300", "MAP": "D9-4601-T88", "PARCEL_NAM": "38B-4", "ACRE": ".29", "LONGITUDE": -64.97718301, "LATITUDE": 18.35823038, "OBJECTID_1": 2304, "PARCEL_NO_": "102601033300", "Tax_Legal_": "38B-4 ESTATE PEARL SOUTHSIDE QTR.", "Name": "MASON, VELTA", "Address": "PO BOX 5394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49900, "Improved_V": 169600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.294749483, "SHAPE_Area": 996.72494401300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353881.947700001299381, 258690.168699998408556 ], [ 353880.813500002026558, 258722.259899999946356 ], [ 353911.070299997925758, 258726.219500001519918 ], [ 353912.390900000929832, 258712.665300000458956 ], [ 353914.102399997413158, 258701.069099999964237 ], [ 353914.151000000536442, 258695.3597999997437 ], [ 353883.558899998664856, 258690.428399998694658 ], [ 353881.947700001299381, 258690.168699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033800", "MAP": "D9-4601-T88", "PARCEL_NAM": "38B-5", "ACRE": ".29", "LONGITUDE": -64.97720125, "LATITUDE": 18.3585294, "OBJECTID_1": 2309, "PARCEL_NO_": "102601033800", "Tax_Legal_": "38B-5 ESTATE PEARL SOUTHSIDE QTR.", "Name": "EDMEADE, DESMOND J. & JUDY", "Address": "38B-5 ESTATE PEARL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61800, "Improved_V": 75000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.41604395900001, "SHAPE_Area": 998.95659873199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353880.813500002026558, 258722.259899999946356 ], [ 353879.713200002908707, 258753.393899999558926 ], [ 353904.905900001525879, 258764.809399999678135 ], [ 353905.5304000005126, 258760.738499999046326 ], [ 353910.623599998652935, 258730.804900001734495 ], [ 353911.070299997925758, 258726.219500001519918 ], [ 353880.813500002026558, 258722.259899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033600", "MAP": "D9-4615-T88", "PARCEL_NAM": "38B-1B", "ACRE": ".23", "LONGITUDE": -64.97748506000001, "LATITUDE": 18.35818579, "OBJECTID_1": 2307, "PARCEL_NO_": "102601033600", "Tax_Legal_": "PEARL 38B-1B&38B-4-1 SOUTHSIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.50089230499999, "SHAPE_Area": 891.07021235699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353844.681199997663498, 258711.133099999278784 ], [ 353879.044699996709824, 258722.028400000184774 ], [ 353880.25900000333786, 258689.896499998867512 ], [ 353853.756300002336502, 258685.624299999326468 ], [ 353853.726099997758865, 258689.175900001078844 ], [ 353847.941600002348423, 258705.593899998813868 ], [ 353846.312799997627735, 258707.480399999767542 ], [ 353844.681199997663498, 258711.133099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033600", "MAP": "D9-4601-T88", "PARCEL_NAM": "38B-4-1", "ACRE": null, "LONGITUDE": -64.97733916, "LATITUDE": 18.35821271, "OBJECTID_1": 2307, "PARCEL_NO_": "102601033600", "Tax_Legal_": "PEARL 38B-1B&38B-4-1 SOUTHSIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.760455619699997, "SHAPE_Area": 55.808576980399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353881.947700001299381, 258690.168699998408556 ], [ 353880.25900000333786, 258689.896499998867512 ], [ 353879.044699996709824, 258722.028400000184774 ], [ 353880.813500002026558, 258722.259899999946356 ], [ 353881.947700001299381, 258690.168699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601034000", "MAP": "D9-4615-T88", "PARCEL_NAM": "38B-1A", "ACRE": ".23", "LONGITUDE": -64.97753717000001, "LATITUDE": 18.35843318, "OBJECTID_1": 2311, "PARCEL_NO_": "102601034000", "Tax_Legal_": "PEARL 38B-1A & 38B-5-1 SOUTHSIDE QTR.", "Name": "CHITTICK, MARY", "Address": "PO Box 6523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47400, "Improved_V": 335400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.90074678900001, "SHAPE_Area": 1108.90398063 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353879.044699996709824, 258722.028400000184774 ], [ 353844.681199997663498, 258711.133099999278784 ], [ 353843.024599999189377, 258714.84180000051856 ], [ 353836.464400000870228, 258727.664799999445677 ], [ 353833.955799996852875, 258732.660000000149012 ], [ 353877.890500001609325, 258752.567999999970198 ], [ 353879.044699996709824, 258722.028400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601034000", "MAP": "D9-4601-T88", "PARCEL_NAM": "38B-5-1", "ACRE": null, "LONGITUDE": -64.97734765, "LATITUDE": 18.35849703, "OBJECTID_1": 2311, "PARCEL_NO_": "102601034000", "Tax_Legal_": "PEARL 38B-1A & 38B-5-1 SOUTHSIDE QTR.", "Name": "CHITTICK, MARY", "Address": "PO Box 6523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47400, "Improved_V": 335400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.499810777199997, "SHAPE_Area": 55.971160774600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353880.813500002026558, 258722.259899999946356 ], [ 353879.044699996709824, 258722.028400000184774 ], [ 353877.890500001609325, 258752.567999999970198 ], [ 353879.713200002908707, 258753.393899999558926 ], [ 353880.813500002026558, 258722.259899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033700", "MAP": "D9-4608-T88", "PARCEL_NAM": "38A-2", "ACRE": ".33", "LONGITUDE": -64.97765375, "LATITUDE": 18.35880689, "OBJECTID_1": 2308, "PARCEL_NO_": "102601033700", "Tax_Legal_": "PEARL 38A-2 SOUTHSIDE QTR.", "Name": "THOMAS, ELRIDGE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.983300864, "SHAPE_Area": 982.47045261599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353869.111400000751019, 258780.029699999839067 ], [ 353829.867700003087521, 258740.800000000745058 ], [ 353825.800800003111362, 258748.897999998182058 ], [ 353842.43299999833107, 258784.286699999123812 ], [ 353845.604299999773502, 258790.645500000566244 ], [ 353850.355899997055531, 258800.816899999976158 ], [ 353869.111400000751019, 258780.029699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033900", "MAP": "D9-4608-T88", "PARCEL_NAM": "38A-1", "ACRE": ".33", "LONGITUDE": -64.97755048, "LATITUDE": 18.35865272, "OBJECTID_1": 2310, "PARCEL_NO_": "102601033900", "Tax_Legal_": "PEARL 38A-1 SOUTHSIDE QTR.", "Name": "GOVAN, REGINALD K. & JULIANA W", "Address": "PO Box 307933", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.06583910200001, "SHAPE_Area": 1009.5049076400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353829.867700003087521, 258740.800000000745058 ], [ 353869.111400000751019, 258780.029699999839067 ], [ 353882.912600003182888, 258754.843600001186132 ], [ 353833.955799996852875, 258732.660000000149012 ], [ 353829.867700003087521, 258740.800000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601033100", "MAP": "D9-5433-T92", "PARCEL_NAM": "38A", "ACRE": ".092", "LONGITUDE": -64.9775417, "LATITUDE": 18.35907085, "OBJECTID_1": 2302, "PARCEL_NO_": "102601033100", "Tax_Legal_": "PEARL 38B-6 REM. & 38A REM. SOUTHSIDE QUARTER", "Name": "GEORGE, ELSTON A. & URSULA", "Address": "PO Box 7545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.068125836999997, "SHAPE_Area": 183.35707193299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353867.158699996769428, 258796.348499998450279 ], [ 353859.164599999785423, 258791.054000001400709 ], [ 353850.355899997055531, 258800.816899999976158 ], [ 353856.698499999940395, 258813.534400001168251 ], [ 353867.158699996769428, 258796.348499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601034400", "MAP": "D9-5433-T92", "PARCEL_NAM": "38A-3", "ACRE": ".138", "LONGITUDE": -64.97738418, "LATITUDE": 18.35884086, "OBJECTID_1": 2315, "PARCEL_NO_": "102601034400", "Tax_Legal_": "38A-3&38B-6A ESTATE PEARL SOUTHSIDE QUARTER", "Name": "ESTHER ROSE BENJAMIN and ERIKA BENJAMIN CALLWOOD", "Address": "PO Box 303442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59900, "Improved_V": 231400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.973521901, "SHAPE_Area": 339.680514254 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353859.164599999785423, 258791.054000001400709 ], [ 353867.158699996769428, 258796.348499998450279 ], [ 353890.36540000140667, 258758.22069999948144 ], [ 353882.912600003182888, 258754.843600001186132 ], [ 353869.111400000751019, 258780.029699999839067 ], [ 353859.164599999785423, 258791.054000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601034400", "MAP": "D9-5433-T92", "PARCEL_NAM": "38B-6A", "ACRE": ".222", "LONGITUDE": -64.97725753, "LATITUDE": 18.35890385, "OBJECTID_1": 2315, "PARCEL_NO_": "102601034400", "Tax_Legal_": "38A-3&38B-6A ESTATE PEARL SOUTHSIDE QUARTER", "Name": "ESTHER ROSE BENJAMIN and ERIKA BENJAMIN CALLWOOD", "Address": "PO Box 303442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59900, "Improved_V": 231400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.346868153, "SHAPE_Area": 986.75859267700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353900.130199998617172, 258795.942600000649691 ], [ 353904.905900001525879, 258764.809399999678135 ], [ 353890.36540000140667, 258758.22069999948144 ], [ 353867.158699996769428, 258796.348499998450279 ], [ 353879.5625, 258803.52479999884963 ], [ 353900.130199998617172, 258795.942600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601034700", "MAP": "D9-6793-T000", "PARCEL_NAM": "2K", "ACRE": ".50", "LONGITUDE": -64.97549043, "LATITUDE": 18.35678894, "OBJECTID_1": 2318, "PARCEL_NO_": "102601034700", "Tax_Legal_": "2K ESTATE CROWN & HAWK 3B SOUTHSIDE QTR", "Name": "MILLIN, HORATIO A", "Address": "977 Baywood Dr", "City": "MOSS BLUFF", "State": "Louisiana", "Zip": 70611, "Country": "United States", "Land_Value": 110300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.70881316500001, "SHAPE_Area": 1795.1372292900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354103.04450000077486, 258520.30290000140667 ], [ 354031.869999997317791, 258556.612700000405312 ], [ 354076.503100000321865, 258568.776099998503923 ], [ 354083.74379999935627, 258570.735199999064207 ], [ 354097.401500001549721, 258571.365499999374151 ], [ 354103.04450000077486, 258520.30290000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601036200", "MAP": "D9-7159-T002", "PARCEL_NAM": "64B", "ACRE": null, "LONGITUDE": -64.97328304, "LATITUDE": 18.3605048, "OBJECTID_1": 2323, "PARCEL_NO_": "102601036200", "Tax_Legal_": "64-B CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "BOSCHULTE, RANDOLPH C", "Address": "PO Box 2101", "City": "Maple Grove", "State": "Minnesota", "Zip": 55311, "Country": "United States", "Land_Value": 48800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.274218158, "SHAPE_Area": 1583.51028838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354293.760799996554852, 258926.924899999052286 ], [ 354299.92849999666214, 259022.608300000429153 ], [ 354304.098899997770786, 259010.242800001055002 ], [ 354314.926399998366833, 258978.138000000268221 ], [ 354327.887199997901917, 258940.62779999896884 ], [ 354293.760799996554852, 258926.924899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601037100", "MAP": "D9-7454-T004", "PARCEL_NAM": "42-1", "ACRE": ".036", "LONGITUDE": -64.97490708, "LATITUDE": 18.36331096, "OBJECTID_1": 2332, "PARCEL_NO_": "102601037100", "Tax_Legal_": "42-1 CARET BAY NO. 8 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, LIONEL & OTHERS", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.257119541899996, "SHAPE_Area": 80.433667436600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354126.243400000035763, 259248.021600000560284 ], [ 354134.111400000751019, 259284.221500001847744 ], [ 354138.801299996674061, 259285.353500001132488 ], [ 354126.243400000035763, 259248.021600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601050200", "MAP": "D9-4605-T88", "PARCEL_NAM": "2F", "ACRE": ".50", "LONGITUDE": -64.97708585, "LATITUDE": 18.35636423, "OBJECTID_1": 2349, "PARCEL_NO_": "102601050200", "Tax_Legal_": "CROWN & HAWK 2F SOUTHSIDE QTR.", "Name": "HENDERSON, IDRENA MILLIN", "Address": "PO Box 304361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.09695395700001, "SHAPE_Area": 2426.3682331800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353932.343099996447563, 258464.816300000995398 ], [ 353894.131999999284744, 258489.601100001484156 ], [ 353866.591499999165535, 258504.152199998497963 ], [ 353859.287900000810623, 258509.580899998545647 ], [ 353935.26070000231266, 258530.28489999845624 ], [ 353935.20099999755621, 258530.237500000745058 ], [ 353932.343099996447563, 258464.816300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602013100", "MAP": null, "PARCEL_NAM": "7HA", "ACRE": null, "LONGITUDE": -64.97257988, "LATITUDE": 18.35963109, "OBJECTID_1": 2380, "PARCEL_NO_": "102602013100", "Tax_Legal_": "CARET BAY ESTATE 7-HA No.8 LITLE NORTHSIDE QTR.", "Name": "BRIANNA LEE BURKS", "Address": "6501 Red Hook Plz Ste 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 126300, "Improved_V": 231700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.151523502, "SHAPE_Area": 2499.6139979099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354366.487199999392033, 258828.253100000321865 ], [ 354362.987499997019768, 258827.780000001192093 ], [ 354347.027500003576279, 258879.091699998825788 ], [ 354348.82490000128746, 258879.834800001233816 ], [ 354413.431599996984005, 258894.628499999642372 ], [ 354420.812799997627735, 258859.425200000405312 ], [ 354390.825199998915195, 258858.6570999994874 ], [ 354380.964599996805191, 258854.938700001686811 ], [ 354374.260399997234344, 258850.760000001639128 ], [ 354372.880400002002716, 258841.933600001037121 ], [ 354378.516400001943111, 258830.041299998760223 ], [ 354366.487199999392033, 258828.253100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012400", "MAP": null, "PARCEL_NAM": "7I", "ACRE": "0.55", "LONGITUDE": -64.97282726, "LATITUDE": 18.36066178, "OBJECTID_1": 2373, "PARCEL_NO_": "102602012400", "Tax_Legal_": "CARET BAY 7-I LITTLE NORTHSIDE", "Name": "RAINBOW ISLAND REALTIES, LTD.", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 117500, "Improved_V": 239600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.450626344, "SHAPE_Area": 2897.68020566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354351.415399998426437, 258954.397599998861551 ], [ 354327.887199997901917, 258940.62779999896884 ], [ 354314.926399998366833, 258978.138000000268221 ], [ 354313.468500003218651, 258982.460700001567602 ], [ 354354.813199996948242, 258997.954999998211861 ], [ 354366.232100002467632, 259002.234299998730421 ], [ 354387.156400002539158, 259018.414799999445677 ], [ 354407.586599998176098, 259004.00560000166297 ], [ 354373.428800001740456, 258977.469300001859665 ], [ 354351.415399998426437, 258954.397599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012000", "MAP": "G9-461-T57", "PARCEL_NAM": "7D", "ACRE": ".80", "LONGITUDE": -64.9726882, "LATITUDE": 18.36130414, "OBJECTID_1": 2369, "PARCEL_NO_": "102602012000", "Tax_Legal_": "CARET BAY 7D LITTLE NORTHSIDE", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 197400, "Improved_V": 311600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.66768430024000003, "SHAPE_Area": 0.02459057928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354369.413999997079372, 259052.208200000226498 ], [ 354369.183700002729893, 259052.235599998384714 ], [ 354369.303800001740456, 259052.373199999332428 ], [ 354369.389399997889996, 259052.3739 ], [ 354369.413999997079372, 259052.208200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012000", "MAP": "G9-461-T57", "PARCEL_NAM": "7D", "ACRE": ".80", "LONGITUDE": -64.97262304, "LATITUDE": 18.36124468, "OBJECTID_1": 2369, "PARCEL_NO_": "102602012000", "Tax_Legal_": "CARET BAY 7D LITTLE NORTHSIDE", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 197400, "Improved_V": 311600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.016772511900001, "SHAPE_Area": 80.464718935400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354385.164899997413158, 259047.955400001257658 ], [ 354383.906499996781349, 259043.201200000941753 ], [ 354367.276299998164177, 259043.464000001549721 ], [ 354368.967600002884865, 259048.446600001305342 ], [ 354385.164899997413158, 259047.955400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601036200", "MAP": "D9-7159-T002", "PARCEL_NAM": "64B", "ACRE": null, "LONGITUDE": -64.97347514000001, "LATITUDE": 18.36070802, "OBJECTID_1": 2323, "PARCEL_NO_": "102601036200", "Tax_Legal_": "64-B CARET BAY NO.8 LT NORTHSIDE QTR", "Name": "BOSCHULTE, RANDOLPH C", "Address": "PO Box 2101", "City": "Maple Grove", "State": "Minnesota", "Zip": 55311, "Country": "United States", "Land_Value": 48800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.75697067499999, "SHAPE_Area": 1559.5314837400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354299.92849999666214, 259022.608300000429153 ], [ 354293.760799996554852, 258926.924899999052286 ], [ 354266.350199997425079, 259007.396200001239777 ], [ 354296.864000000059605, 259021.219999998807907 ], [ 354299.92849999666214, 259022.608300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602016000", "MAP": "D9-3474-T86", "PARCEL_NAM": "12B", "ACRE": "0.02", "LONGITUDE": -64.97329975, "LATITUDE": 18.36383465, "OBJECTID_1": 2405, "PARCEL_NO_": "102602016000", "Tax_Legal_": "CARET BAY 12-B LT. NORTHSIDE", "Name": "CARLSON, MARTIN & BARBARA", "Address": "6501 Redhook Plaza Ste", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.554007502099999, "SHAPE_Area": 143.61644613799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354297.505500003695488, 259321.989799998700619 ], [ 354296.749700002372265, 259321.584499999880791 ], [ 354299.169299997389317, 259339.498700000345707 ], [ 354304.05629999935627, 259340.805900000035763 ], [ 354304.879900000989437, 259341.026200000196695 ], [ 354308.957099996507168, 259332.74210000038147 ], [ 354305.861400000751019, 259326.471400000154972 ], [ 354297.505500003695488, 259321.989799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602016800", "MAP": "D9-4956-T90", "PARCEL_NAM": "13-A-3", "ACRE": ".374", "LONGITUDE": -64.97350816, "LATITUDE": 18.36453705, "OBJECTID_1": 2412, "PARCEL_NO_": "102602016800", "Tax_Legal_": "13-A-3 CARET BAY 8 LT NORTHSIDE QTR", "Name": "MURPHY, DENNIS D & DEBORAH", "Address": "PO Box 305674", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035674, "Country": "United States", "Land_Value": 66900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.30332199899999, "SHAPE_Area": 857.70445984800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354301.470899999141693, 259404.049100000411272 ], [ 354306.482199996709824, 259393.642499998211861 ], [ 354254.677100002765656, 259407.154899999499321 ], [ 354256.929499998688698, 259421.323399998247623 ], [ 354261.706399999558926, 259422.24210000038147 ], [ 354267.628700003027916, 259423.206199999898672 ], [ 354274.755599997937679, 259421.822200000286102 ], [ 354292.475199997425079, 259414.104600001126528 ], [ 354302.789700001478195, 259409.60249999910593 ], [ 354309.203500002622604, 259404.133600000292063 ], [ 354301.470899999141693, 259404.049100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97241974000001, "LATITUDE": 18.35674394, "OBJECTID_1": 2650, "PARCEL_NO_": "102604010500", "Tax_Legal_": "No.2 CROWN & HAWK SOUTHSIDE QUARTER", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 966000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.586830007, "SHAPE_Area": 4066.0308742500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354440.899499997496605, 258533.541799999773502 ], [ 354432.231600001454353, 258522.509899999946356 ], [ 354421.648199997842312, 258524.163499999791384 ], [ 354409.411200001835823, 258518.54109999909997 ], [ 354403.30290000140667, 258518.889299999922514 ], [ 354380.376800000667572, 258520.195999998599291 ], [ 354376.384199999272823, 258520.423500001430511 ], [ 354345.994800001382828, 258562.038100000470877 ], [ 354366.503499999642372, 258565.649399999529123 ], [ 354440.469899997115135, 258578.673900000751019 ], [ 354442.767099998891354, 258535.918800000101328 ], [ 354440.899499997496605, 258533.541799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604010500", "MAP": "C9-167-T73", "PARCEL_NAM": "66", "ACRE": null, "LONGITUDE": -64.97292986, "LATITUDE": 18.35669753, "OBJECTID_1": 2650, "PARCEL_NO_": "102604010500", "Tax_Legal_": "No.2 CROWN & HAWK SOUTHSIDE QUARTER", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 966000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.748836568, "SHAPE_Area": 1105.4720176400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354376.384199999272823, 258520.423500001430511 ], [ 354345.580399997532368, 258522.179200001060963 ], [ 354321.430100001394749, 258569.974800001829863 ], [ 354345.994800001382828, 258562.038100000470877 ], [ 354376.384199999272823, 258520.423500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602016700", "MAP": "D9-6772-T000", "PARCEL_NAM": "5B-2-1", "ACRE": ".50", "LONGITUDE": -64.97200383000001, "LATITUDE": 18.35884134, "OBJECTID_1": 2411, "PARCEL_NO_": "102602016700", "Tax_Legal_": "CARET BAY ESTATE 5B-2-1 No.8 LITTLE NORTHSIDE QTR.", "Name": "FINNEGAN, ROBERT", "Address": "9100 SW 27th Ave", "City": "Ocala", "State": "Florida", "Zip": 34476, "Country": "United States", "Land_Value": 110300, "Improved_V": 216100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.09045709899999, "SHAPE_Area": 2057.7927787600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354426.928400002419949, 258763.288899999111891 ], [ 354424.764499999582767, 258789.002999998629093 ], [ 354427.939499996602535, 258793.447999998927116 ], [ 354428.786200001835823, 258800.009700000286102 ], [ 354432.384499996900558, 258808.688000001013279 ], [ 354430.691200003027916, 258821.599700000137091 ], [ 354446.599500000476837, 258824.243500001728535 ], [ 354466.924800001084805, 258740.258299998939037 ], [ 354459.552199997007847, 258740.701200000941753 ], [ 354451.720499999821186, 258744.299499999731779 ], [ 354443.253799997270107, 258750.120400000363588 ], [ 354426.928400002419949, 258763.288899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97203085, "LATITUDE": 18.3582886, "OBJECTID_1": 2385, "PARCEL_NO_": "102602013700", "Tax_Legal_": "CARET BAY 5B-1 LITTLE NORTHSIDE", "Name": "LEZCANO, MILAGROS & JOSE", "Address": "595 Maximo Gomez Clle", "City": "San Juan", "State": "Puerto Rico", "Zip": 918, "Country": "United States", "Land_Value": 127700, "Improved_V": 369500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.167196163, "SHAPE_Area": 1828.0645647700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354472.598499998450279, 258704.44539999961853 ], [ 354401.518799997866154, 258703.901700001209974 ], [ 354400.351899996399879, 258707.653499998152256 ], [ 354402.074799999594688, 258709.131499998271465 ], [ 354416.415100000798702, 258721.432700000703335 ], [ 354443.216399997472763, 258744.423000000417233 ], [ 354446.765699997544289, 258741.736800000071526 ], [ 354448.387299999594688, 258740.694600000977516 ], [ 354451.626900002360344, 258739.032400000840425 ], [ 354458.106200002133846, 258735.707899998873472 ], [ 354467.544399999082088, 258733.754000000655651 ], [ 354469.853900000452995, 258720.361299999058247 ], [ 354472.598499998450279, 258704.44539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97168781000001, "LATITUDE": 18.35825481, "OBJECTID_1": 2388, "PARCEL_NO_": "102602014000", "Tax_Legal_": "CARET BAY 5-2 LITTLE NORTHSIDE", "Name": "HACKL PROPERTIES LLC", "Address": "2094 Wildwood Dr", "City": "Suamico", "State": "Wisconsin", "Zip": 54173, "Country": "United States", "Land_Value": 123300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.559730456400004, "SHAPE_Area": 349.02163086199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354496.488099999725819, 258704.628199998289347 ], [ 354472.598499998450279, 258704.44539999961853 ], [ 354469.853900000452995, 258720.361299999058247 ], [ 354467.544399999082088, 258733.754000000655651 ], [ 354471.838699996471405, 258732.864999998360872 ], [ 354474.273800000548363, 258730.985100001096725 ], [ 354475.897200003266335, 258729.731800001114607 ], [ 354480.013300001621246, 258719.844099998474121 ], [ 354480.833999998867512, 258718.162099998444319 ], [ 354484.089800000190735, 258714.60020000115037 ], [ 354488.970799997448921, 258709.573899999260902 ], [ 354491.402300000190735, 258708.116099998354912 ], [ 354496.488099999725819, 258704.628199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602013500", "MAP": "A9-162-T71", "PARCEL_NAM": "5-4", "ACRE": ".50", "LONGITUDE": -64.97106479, "LATITUDE": 18.35893879, "OBJECTID_1": 2383, "PARCEL_NO_": "102602013500", "Tax_Legal_": "CARET BAY 5-4 LITTLE NORTHSIDE", "Name": "FULLER, VINCENT & BRAHM REBECCA", "Address": "PO Box 303300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 103000, "Improved_V": 223300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.86647428100002, "SHAPE_Area": 2411.98342181 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354578.101400002837181, 258760.311500001698732 ], [ 354590.217299997806549, 258751.354699999094009 ], [ 354582.935400001704693, 258754.250399999320507 ], [ 354588.034100003540516, 258751.995400000363588 ], [ 354549.746399998664856, 258763.230500001460314 ], [ 354515.3175999969244, 258773.333200000226498 ], [ 354515.3175999969244, 258775.44990000128746 ], [ 354515.44990000128746, 258777.8310999982059 ], [ 354515.185300000011921, 258780.212400000542402 ], [ 354514.259300000965595, 258783.916499998420477 ], [ 354513.597800001502037, 258786.694699998944998 ], [ 354512.010300002992153, 258790.266600001603365 ], [ 354553.987999998033047, 258839.295299999415874 ], [ 354559.536799997091293, 258850.528599999845028 ], [ 354558.257600001990795, 258836.776299998164177 ], [ 354556.015500001609325, 258804.524000000208616 ], [ 354554.818000003695488, 258787.299100000411272 ], [ 354556.273199997842312, 258782.933400001376867 ], [ 354558.257600001990795, 258778.435499999672174 ], [ 354560.109700001776218, 258775.392799999564886 ], [ 354563.417000003159046, 258771.55629999935627 ], [ 354566.988899998366833, 258768.645899999886751 ], [ 354574.545400001108646, 258762.978500001132488 ], [ 354578.101400002837181, 258760.311500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602014300", "MAP": "F9-1972-T67", "PARCEL_NAM": "5A-1", "ACRE": ".44", "LONGITUDE": -64.97068195, "LATITUDE": 18.35772612, "OBJECTID_1": 2391, "PARCEL_NO_": "102602014300", "Tax_Legal_": "CARET BAY 5A-1 LITTLE NORTHSIDE", "Name": "LINDESAY, MILTON A.,EVERICE C.,EVERICE LINDESAY-GIBBS & MARK", "Address": "PO Box 303436", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97000, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.92114921300001, "SHAPE_Area": 2123.3862520100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354553.853399999439716, 258665.775199998170137 ], [ 354605.607400000095367, 258689.400800000876188 ], [ 354603.859200000762939, 258664.495799999684095 ], [ 354608.69709999859333, 258664.535399999469519 ], [ 354615.118100002408028, 258639.559599999338388 ], [ 354556.237000003457069, 258637.442200001329184 ], [ 354556.222999997437, 258642.701299998909235 ], [ 354556.01129999756813, 258645.029699999839067 ], [ 354556.222999997437, 258647.569699998944998 ], [ 354556.01129999756813, 258651.379700001329184 ], [ 354553.853399999439716, 258665.775199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602014600", "MAP": null, "PARCEL_NAM": "REM 8", "ACRE": "3.71", "LONGITUDE": -64.97098478, "LATITUDE": 18.35766163, "OBJECTID_1": 2393, "PARCEL_NO_": "102602014600", "Tax_Legal_": "8 CARET BAY LITTLE NORTHSIDE", "Name": "Virgin Islands Telephone Company", "Address": "PO Box 6100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 398900, "Improved_V": 24200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.226132979300004, "SHAPE_Area": 167.33267171599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354550.091399997472763, 258637.221200000494719 ], [ 354550.084600001573563, 258642.912999998778105 ], [ 354549.449600003659725, 258648.204700000584126 ], [ 354549.026299998164177, 258654.131400000303984 ], [ 354549.026299998164177, 258658.153000000864267 ], [ 354548.243400000035763, 258661.718600001186132 ], [ 354553.853399999439716, 258665.775199998170137 ], [ 354556.01129999756813, 258651.379700001329184 ], [ 354556.222999997437, 258647.569699998944998 ], [ 354556.01129999756813, 258645.029699999839067 ], [ 354556.222999997437, 258642.701299998909235 ], [ 354556.237000003457069, 258637.442200001329184 ], [ 354550.091399997472763, 258637.221200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602014400", "MAP": "G9-1771-T71", "PARCEL_NAM": "5A-2", "ACRE": "1.69", "LONGITUDE": -64.97171923000001, "LATITUDE": 18.35782675, "OBJECTID_1": 2392, "PARCEL_NO_": "102602014400", "Tax_Legal_": "5A-2 ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "CROWN KINDER LLC", "Address": "9AB Emajagua Clle", "City": "San Juan", "State": "Puerto Rico", "Zip": 913, "Country": "United States", "Land_Value": 260800, "Improved_V": 30100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 390.97377938099999, "SHAPE_Area": 8638.3290103899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354548.243400000035763, 258661.718600001186132 ], [ 354549.026299998164177, 258658.153000000864267 ], [ 354549.026299998164177, 258654.131400000303984 ], [ 354549.449600003659725, 258648.204700000584126 ], [ 354550.084600001573563, 258642.912999998778105 ], [ 354550.091399997472763, 258637.221200000494719 ], [ 354423.673299998044968, 258632.675000000745058 ], [ 354412.271300002932549, 258669.332600001245737 ], [ 354404.020300000905991, 258695.859600000083447 ], [ 354401.518799997866154, 258703.901700001209974 ], [ 354472.598499998450279, 258704.44539999961853 ], [ 354496.488099999725819, 258704.628199998289347 ], [ 354513.302299998700619, 258693.096599999815226 ], [ 354531.92119999974966, 258684.594200000166893 ], [ 354545.732799999415874, 258672.463799998164177 ], [ 354548.243400000035763, 258661.718600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602014200", "MAP": "D9-54-T55", "PARCEL_NAM": "5A", "ACRE": null, "LONGITUDE": -64.97086974, "LATITUDE": 18.35803539, "OBJECTID_1": 2390, "PARCEL_NO_": "102602014200", "Tax_Legal_": "CARET BAY 5A LITTLE NORTHSIDE", "Name": "RICHARDS, WALTER L & DENISE", "Address": "PO Box 7188", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96900, "Improved_V": 86400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.66564367300001, "SHAPE_Area": 2109.6832227999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354605.607400000095367, 258689.400800000876188 ], [ 354553.853399999439716, 258665.775199998170137 ], [ 354552.176100000739098, 258673.36089999973774 ], [ 354548.911300003528595, 258677.978199999779463 ], [ 354547.282499998807907, 258679.864700000733137 ], [ 354539.968099996447563, 258686.559900000691414 ], [ 354538.344700001180172, 258687.813099998980761 ], [ 354531.861800000071526, 258691.559799998998642 ], [ 354529.432099997997284, 258692.806400001049042 ], [ 354517.294299997389317, 258697.773299999535084 ], [ 354506.837700001895428, 258704.707299999892712 ], [ 354606.735600002110004, 258705.471500001847744 ], [ 354605.607400000095367, 258689.400800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602013200", "MAP": "D9-6772-T000", "PARCEL_NAM": "5B-2-2", "ACRE": ".56", "LONGITUDE": -64.97227287, "LATITUDE": 18.35911256, "OBJECTID_1": 2381, "PARCEL_NO_": "102602013200", "Tax_Legal_": "PAR 5B-2-2 CARET BAY 8 LITTLE NORTHSIDE QTR", "Name": "Cuffy, Bernard C. & Athlene B.", "Address": "PO BOX 87", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 8210087, "Country": "United States", "Land_Value": 119000, "Improved_V": 186000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.81252258500001, "SHAPE_Area": 2031.39306721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354446.599500000476837, 258824.243500001728535 ], [ 354430.691200003027916, 258821.599700000137091 ], [ 354432.384499996900558, 258808.688000001013279 ], [ 354428.786200001835823, 258800.009700000286102 ], [ 354427.939499996602535, 258793.447999998927116 ], [ 354424.764499999582767, 258789.002999998629093 ], [ 354426.928400002419949, 258763.288899999111891 ], [ 354424.097900003194809, 258765.57209999859333 ], [ 354413.832099996507168, 258776.57880000025034 ], [ 354405.471199996769428, 258787.902899999171495 ], [ 354396.581200003623962, 258805.365499999374151 ], [ 354384.450099997222424, 258831.049400001764297 ], [ 354435.490599997341633, 258834.736800000071526 ], [ 354444.034800000488758, 258834.840900000184774 ], [ 354446.599500000476837, 258824.243500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602016600", "MAP": "C9-167-T73", "PARCEL_NAM": "64A", "ACRE": null, "LONGITUDE": -64.97323979, "LATITUDE": 18.35742517, "OBJECTID_1": 2410, "PARCEL_NO_": "102602016600", "Tax_Legal_": "CARET BAY (WESTERN POR) 64A & 65 WEST END QUARTER", "Name": "UNITED STATES OF AMERICA", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 615100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 466.47341640799999, "SHAPE_Area": 11276.9787686 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354423.673299998044968, 258632.675000000745058 ], [ 354321.430100001394749, 258569.974800001829863 ], [ 354278.916299998760223, 258586.71339999884367 ], [ 354271.699600003659725, 258586.432700000703335 ], [ 354267.99549999833107, 258587.491099998354912 ], [ 354264.291299998760223, 258587.755699999630451 ], [ 354260.322499997913837, 258588.284800000488758 ], [ 354257.941299997270107, 258589.343199998140335 ], [ 354253.707900002598763, 258590.401500001549721 ], [ 354250.532899998128414, 258590.930700000375509 ], [ 354247.357900001108646, 258592.253600001335144 ], [ 354225.027800001204014, 258602.076799999922514 ], [ 354276.991300001740456, 258676.655799999833107 ], [ 354423.673299998044968, 258632.675000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602016600", "MAP": "C9-167-T73", "PARCEL_NAM": "65", "ACRE": null, "LONGITUDE": -64.972515, "LATITUDE": 18.3571283, "OBJECTID_1": 2410, "PARCEL_NO_": "102602016600", "Tax_Legal_": "CARET BAY (WESTERN POR) 64A & 65 WEST END QUARTER", "Name": "UNITED STATES OF AMERICA", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 615100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.23407239800002, "SHAPE_Area": 3866.4350560100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354366.503499999642372, 258565.649399999529123 ], [ 354345.994800001382828, 258562.038100000470877 ], [ 354321.430100001394749, 258569.974800001829863 ], [ 354423.673299998044968, 258632.675000000745058 ], [ 354440.469899997115135, 258578.673900000751019 ], [ 354366.503499999642372, 258565.649399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604028000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97437321, "LATITUDE": 18.35029718, "OBJECTID_1": 2762, "PARCEL_NO_": "102604028000", "Tax_Legal_": "15-5-REM AND 15-5-A (INCLUDING 15-5-A-1(GREENBELT) AND DRAINAGE EASEMENT \"A\" CROWN & HAWK NO.3 SOUT", "Name": "SOOKRAM, SIEWDATH", "Address": "6076-66 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 410000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 521.42693155500001, "SHAPE_Area": 11987.311543 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354132.575300000607967, 257760.746700000017881 ], [ 354109.135300002992153, 257807.616999998688698 ], [ 354171.292099997401237, 257841.220600001513958 ], [ 354160.16160000115633, 257882.728799998760223 ], [ 354172.642099998891354, 257888.5641999989748 ], [ 354183.221799999475479, 257892.327199999243021 ], [ 354191.357699997723103, 257893.127700001001358 ], [ 354196.634099997580051, 257893.06700000166893 ], [ 354216.381399996578693, 257882.524900000542402 ], [ 354236.602099999785423, 257875.302099999040365 ], [ 354260.0337999984622, 257869.794399999082088 ], [ 354288.095399998128414, 257868.199599999934435 ], [ 354298.616999998688698, 257863.641699999570847 ], [ 354301.059299997985363, 257860.917399998754263 ], [ 354303.553800001740456, 257852.071899998933077 ], [ 354297.968999996781349, 257845.060100000351667 ], [ 354290.76969999819994, 257838.246199999004602 ], [ 354277.949600003659725, 257828.642099998891354 ], [ 354269.117899999022484, 257824.136799998581409 ], [ 354262.690800003707409, 257821.339999999850988 ], [ 354243.411200001835823, 257812.738499999046326 ], [ 354240.196800000965595, 257811.445599999278784 ], [ 354184.73200000077486, 257790.937800001353025 ], [ 354173.501199997961521, 257784.090900000184774 ], [ 354155.886399999260902, 257769.38120000064373 ], [ 354143.838500000536442, 257763.794199999421835 ], [ 354132.575300000607967, 257760.746700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603021000", "MAP": "D9-4194-T88", "PARCEL_NAM": "13", "ACRE": ".62", "LONGITUDE": -64.97956797000001, "LATITUDE": 18.35359187, "OBJECTID_1": 2582, "PARCEL_NO_": "102603021000", "Tax_Legal_": "CROWN & HAWK 13 SOUTHSIDE QUARTER", "Name": "FOY, ENOLA & YEARWOOD, ERICA C", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.222911544, "SHAPE_Area": 1751.9313999000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353682.658500000834465, 258202.076900001615286 ], [ 353650.894900001585484, 258172.025400001555681 ], [ 353643.695699997246265, 258165.211500000208616 ], [ 353625.883100003004074, 258173.720499999821186 ], [ 353620.962499998509884, 258183.390599999576807 ], [ 353647.252499997615814, 258220.969300001859665 ], [ 353682.658500000834465, 258202.076900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603023200", "MAP": "D9-4194-T88", "PARCEL_NAM": "13-2", "ACRE": ".50", "LONGITUDE": -64.97881701, "LATITUDE": 18.35433986, "OBJECTID_1": 2605, "PARCEL_NO_": "102603023200", "Tax_Legal_": "CROWN & HAWK 13-2 SOUTHSIDE QUARTER", "Name": "JNO BAPTISTE, ESONIA C", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.6043003, "SHAPE_Area": 2309.2788387000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353731.649899996817112, 258248.427499998360872 ], [ 353685.505599997937679, 258275.55799999833107 ], [ 353698.241499997675419, 258293.580600000917912 ], [ 353776.482600003480911, 258290.843499999493361 ], [ 353731.649899996817112, 258248.427499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102603022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97543129, "LATITUDE": 18.35298063, "OBJECTID_1": 2602, "PARCEL_NO_": "102603022900", "Tax_Legal_": "CROWN & HAWK 2Aa-7 REM. No.3 SOUTHSIDE QUARTER", "Name": "KNIGHT COMMUNICATIONS OF THE VI INC", "Address": "PO Box 8209", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.18827355299999, "SHAPE_Area": 409.35055550599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354124.779399998486042, 258107.931800000369549 ], [ 354118.478799998760223, 258111.368999999016523 ], [ 354116.044600002467632, 258112.004000000655651 ], [ 354114.060300000011921, 258111.607099998742342 ], [ 354111.046899996697903, 258110.774700000882149 ], [ 354094.814499996602535, 258123.096400000154972 ], [ 354083.470399998128414, 258129.547400001436472 ], [ 354068.11089999973774, 258134.065799999982119 ], [ 354054.3783999979496, 258136.908700000494719 ], [ 354056.748800002038479, 258142.627599999308586 ], [ 354078.560599997639656, 258137.9510000012815 ], [ 354087.460600003600121, 258134.435199998319149 ], [ 354095.565099999308586, 258129.64640000090003 ], [ 354099.621899999678135, 258126.724300000816584 ], [ 354124.779399998486042, 258107.931800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010800", "MAP": "B9-183-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9783945, "LATITUDE": 18.35642432, "OBJECTID_1": 2544, "PARCEL_NO_": "102603010800", "Tax_Legal_": "PEARL 37-6 S S QTR", "Name": "LIBURD, DENSMORE", "Address": "PO Box 11861", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 86100, "Improved_V": 283400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.19930812000001, "SHAPE_Area": 2065.2956446500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353799.505699999630451, 258522.601500000804663 ], [ 353782.160599999129772, 258476.230099998414516 ], [ 353779.696699999272823, 258481.487300001084805 ], [ 353777.26519999653101, 258482.945000000298023 ], [ 353771.613799996674061, 258483.743099998682737 ], [ 353753.849799998104572, 258486.553100001066923 ], [ 353748.187600001692772, 258488.61769999936223 ], [ 353738.481299996376038, 258492.126800000667572 ], [ 353765.498499996960163, 258538.999600000679493 ], [ 353788.184900000691414, 258526.308600001037121 ], [ 353799.505699999630451, 258522.601500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604014200", "MAP": "A9-581-T002", "PARCEL_NAM": "54F", "ACRE": ".500", "LONGITUDE": -64.9695127, "LATITUDE": 18.35563931, "OBJECTID_1": 2687, "PARCEL_NO_": "102604014200", "Tax_Legal_": "54 F ESTATE LINBERG BAY #4 SOUTHSIDE QTR", "Name": "DONALD A & JUTTA U DAVIS TRUST", "Address": "630 Reva Ridge Rd", "City": "Twin Lakes", "State": "Colorado", "Zip": 81251, "Country": "United States", "Land_Value": 57900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.16704418500001, "SHAPE_Area": 1501.1290211200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354718.434000000357628, 258386.958099998533726 ], [ 354699.912600003182888, 258387.273800000548363 ], [ 354702.235100001096725, 258475.316700000315905 ], [ 354713.152900002896786, 258467.529500000178814 ], [ 354720.083599999547005, 258462.586100000888109 ], [ 354718.434000000357628, 258386.958099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604010800", "MAP": "D9-8037-T007", "PARCEL_NAM": "2B-REM", "ACRE": ".62", "LONGITUDE": -64.97353797, "LATITUDE": 18.35417553, "OBJECTID_1": 2653, "PARCEL_NO_": "102604010800", "Tax_Legal_": "2B REM CROWN & HAWK NO.3B SOUTHSIDE QTR", "Name": "JODI GEOSITS and PIOTR GAJEWSKI", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86000, "Improved_V": 473000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.973287005, "SHAPE_Area": 2954.70884587 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354303.629100002348423, 258237.90819999948144 ], [ 354251.01690000295639, 258245.120299998670816 ], [ 354246.103500001132488, 258253.946100000292063 ], [ 354245.279200002551079, 258256.050200000405312 ], [ 354256.244800001382828, 258281.723799999803305 ], [ 354270.245099999010563, 258286.489900000393391 ], [ 354327.57660000026226, 258277.913800001144409 ], [ 354322.708200000226498, 258255.688700001686811 ], [ 354303.629100002348423, 258237.90819999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604021900", "MAP": "D9-7122-T002", "PARCEL_NAM": "44B-1", "ACRE": ".13", "LONGITUDE": -64.97063709, "LATITUDE": 18.35307382, "OBJECTID_1": 2707, "PARCEL_NO_": "102604021900", "Tax_Legal_": "44B-1 ESTATE LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "DRAFTS, WENDY M. & TARANCE F. III", "Address": "806 NW 37th Pl", "City": "Cape Coral", "State": "Florida", "Zip": 33993, "Country": "United States", "Land_Value": 45700, "Improved_V": 234300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.915006471, "SHAPE_Area": 558.34365293300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354554.678000003099442, 258136.6886 ], [ 354554.276500001549721, 258148.081900000572205 ], [ 354558.509800001978874, 258148.214200001209974 ], [ 354561.420299999415874, 258149.27250000089407 ], [ 354583.77759999781847, 258143.583999998867512 ], [ 354586.026600003242493, 258141.864199999719858 ], [ 354600.181800000369549, 258142.790199998766184 ], [ 354600.578699998557568, 258145.171500001102686 ], [ 354614.601599998772144, 258144.906899999827147 ], [ 354646.469499997794628, 258149.563299998641014 ], [ 354652.849799998104572, 258147.205600000917912 ], [ 354655.587899997830391, 258145.721999999135733 ], [ 354656.503899998962879, 258144.8260000012815 ], [ 354654.383500002324581, 258144.809000000357628 ], [ 354646.207500003278255, 258144.442600000649691 ], [ 354591.417700000107288, 258139.488400001078844 ], [ 354570.23589999973774, 258136.609400000423193 ], [ 354554.678000003099442, 258136.6886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701010500", "MAP": "D9-1613-T80", "PARCEL_NAM": "20A-2", "ACRE": "1.00", "LONGITUDE": -64.96441623, "LATITUDE": 18.36094452, "OBJECTID_1": 2779, "PARCEL_NO_": "102701010500", "Tax_Legal_": "DOROTHEA ESTATE 20A-2 No 7 LITTLE NORTHSIDE QTR", "Name": "SWAN, MARION VIVIAN", "Address": "PO Box 304076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 110700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.68139000600002, "SHAPE_Area": 5077.7999259300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355247.172799997031689, 258968.247299998998642 ], [ 355239.181400001049042, 258957.099500000476837 ], [ 355202.657999999821186, 259013.901299998164177 ], [ 355211.983499996364117, 259028.754200000315905 ], [ 355243.874700002372265, 259076.706000000238419 ], [ 355287.467200003564358, 259035.040899999439716 ], [ 355247.172799997031689, 258968.247299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102701015800", "MAP": "D9-7844-T006", "PARCEL_NAM": "14C-2A", "ACRE": ".108", "LONGITUDE": -64.96221836, "LATITUDE": 18.36206094, "OBJECTID_1": 2834, "PARCEL_NO_": "102701015800", "Tax_Legal_": "DOROTHEA 14C-2A & 14C-3 NO.7 LITTLE NORTHSIDE QTR", "Name": "FLETCHER, NOREEN A. & ELLIOT M.", "Address": "PO Box 10984", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53200, "Improved_V": 210200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.255062303599999, "SHAPE_Area": 375.58356361599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355491.825599998235703, 259139.439899999648333 ], [ 355462.195000000298023, 259139.335799999535084 ], [ 355451.057899996638298, 259147.510200001299381 ], [ 355492.267300002276897, 259151.808299999684095 ], [ 355492.1841000020504, 259149.479400001466274 ], [ 355491.890299998223782, 259141.252099998295307 ], [ 355491.825599998235703, 259139.439899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701016200", "MAP": "D9-7518-T005", "PARCEL_NAM": "19A", "ACRE": ".537", "LONGITUDE": -64.96631368, "LATITUDE": 18.36250468, "OBJECTID_1": 2837, "PARCEL_NO_": "102701016200", "Tax_Legal_": "19A ESTATE NELTJEBERG No. 6LITTLE NORTHSISE QTR.", "Name": "WENDLAND (TRUSTEES), DIETER & MONIKA A.", "Address": "PO Box 305806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71100, "Improved_V": 209000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.33720974299999, "SHAPE_Area": 1978.77631051 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355056.395400002598763, 259213.243099998682737 ], [ 355067.412799999117851, 259152.515999998897314 ], [ 355018.648999996483326, 259183.380800001323223 ], [ 355018.829499997198582, 259205.811200000345707 ], [ 355018.944799996912479, 259220.132800001651049 ], [ 355021.668300002813339, 259219.50279999896884 ], [ 355045.098099999129772, 259214.2060999982059 ], [ 355056.395400002598763, 259213.243099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96533282, "LATITUDE": 18.35820443, "OBJECTID_1": 2893, "PARCEL_NO_": "102701030200", "Tax_Legal_": "DOROTHEA 2A LITTLE NORTHSIDE", "Name": "GILHOOLEY, GWYNNETH E.", "Address": "5470 29th Pl SW", "City": "Naples", "State": "Florida", "Zip": 34116, "Country": "United States", "Land_Value": 143300, "Improved_V": 1700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 640.53691249500002, "SHAPE_Area": 5528.0001192700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355225.789200000464916, 258843.705600000917912 ], [ 355088.929200001060963, 258577.845600001513958 ], [ 355079.503700003027916, 258583.106899999082088 ], [ 355072.568999998271465, 258586.964899998158216 ], [ 355140.367700003087521, 258717.846799999475479 ], [ 355169.617200002074242, 258774.311500001698732 ], [ 355212.394599996507168, 258856.891100000590086 ], [ 355219.962499998509884, 258849.390000000596046 ], [ 355225.789200000464916, 258843.705600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030600", "MAP": "D9-6562-T99", "PARCEL_NAM": "2 REM", "ACRE": ".364", "LONGITUDE": -64.96465128, "LATITUDE": 18.35834369, "OBJECTID_1": 2897, "PARCEL_NO_": "102701030600", "Tax_Legal_": "2C ESTATE DOROTHEA LITTLE NORTHSIDE", "Name": "BAMBINI, KARL R. & MARIE A", "Address": "8319 Galgano Ln", "City": "Spring Hill", "State": "Florida", "Zip": 34606, "Country": "United States", "Land_Value": 169900, "Improved_V": 170400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.04637147099999, "SHAPE_Area": 1472.6680446299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355217.729000002145767, 258694.136399999260902 ], [ 355213.61370000243187, 258701.03660000115633 ], [ 355210.59740000218153, 258706.116599999368191 ], [ 355208.2162000015378, 258710.561599999666214 ], [ 355205.993699997663498, 258713.895300000905991 ], [ 355204.723700001835823, 258716.594099998474121 ], [ 355203.929899998009205, 258719.29280000180006 ], [ 355203.929899998009205, 258720.721599999815226 ], [ 355203.929899998009205, 258723.420299999415874 ], [ 355204.088699996471405, 258726.912900000810623 ], [ 355204.163099996745586, 258733.552299998700619 ], [ 355218.296999998390675, 258760.928199999034405 ], [ 355245.015000000596046, 258748.270100001245737 ], [ 355217.729000002145767, 258694.136399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030100", "MAP": "D9-6991-T001", "PARCEL_NAM": "2 REM", "ACRE": ".507", "LONGITUDE": -64.96604465, "LATITUDE": 18.35735847, "OBJECTID_1": 2892, "PARCEL_NO_": "102701030100", "Tax_Legal_": "DOROTHEA ESTATE 2 No.7 LITTLE NORTHSIDE QTR.", "Name": "RYKE, ROBERT, STEVEN, RONALD & CHAR", "Address": "71 Ocean Pkwy", "City": "Brooklyn", "State": "New York", "Zip": 11218, "Country": "United States", "Land_Value": 40600, "Improved_V": 213200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.799194355, "SHAPE_Area": 1674.0116299 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355100.74210000038147, 258641.351700000464916 ], [ 355072.568999998271465, 258586.964899998158216 ], [ 355055.197499997913837, 258596.629000000655651 ], [ 355049.484899997711182, 258599.410999998450279 ], [ 355065.848099999129772, 258633.677799999713898 ], [ 355069.030599996447563, 258640.342599999159575 ], [ 355076.225100003182888, 258655.4087999984622 ], [ 355100.74210000038147, 258641.351700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701033900", "MAP": "D9-7026-T002", "PARCEL_NAM": "2D-1", "ACRE": ".546", "LONGITUDE": -64.96437213, "LATITUDE": 18.35804509, "OBJECTID_1": 2927, "PARCEL_NO_": "102701033900", "Tax_Legal_": "2D-1 ESTATE DOROTHEA #7 LT NORTHSIDE QTR", "Name": "BERRY, LYNN M. & RICHARD", "Address": "PO Box 303125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 171500, "Improved_V": 14900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.618136136, "SHAPE_Area": 2723.04524399 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355288.260099999606609, 258705.662999998778105 ], [ 355276.295000001788139, 258673.376800000667572 ], [ 355252.019299998879433, 258683.310600001364946 ], [ 355236.880999997258186, 258661.866300001740456 ], [ 355235.468299999833107, 258667.699000000953674 ], [ 355232.928300000727177, 258670.662300001829863 ], [ 355227.424999997019768, 258677.647300001233816 ], [ 355223.403300002217293, 258685.267400000244379 ], [ 355217.729000002145767, 258694.136399999260902 ], [ 355233.073499999940395, 258724.578899998217821 ], [ 355241.21509999781847, 258731.777199998497963 ], [ 355264.985100001096725, 258718.582699999213219 ], [ 355288.260099999606609, 258705.662999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701034100", "MAP": "D9-7026-T002", "PARCEL_NAM": "3-I", "ACRE": ".529", "LONGITUDE": -64.96411637, "LATITUDE": 18.35835102, "OBJECTID_1": 2929, "PARCEL_NO_": "102701034100", "Tax_Legal_": "3-I REM. EST. DOROTHEA #7 LT NORTHSIDE QTR", "Name": "BERRY, RICHARD & LYN", "Address": "PO Box 303125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 168300, "Improved_V": 49500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.70540418900001, "SHAPE_Area": 1610.7643009000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355305.298900000751019, 258751.640000000596046 ], [ 355288.260099999606609, 258705.662999998778105 ], [ 355264.985100001096725, 258718.582699999213219 ], [ 355241.21509999781847, 258731.777199998497963 ], [ 355246.13629999756813, 258735.26969999819994 ], [ 355268.202600002288818, 258746.699799999594688 ], [ 355296.460199996829033, 258755.113499999046326 ], [ 355305.298900000751019, 258751.640000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701030500", "MAP": "D9-7026-T002", "PARCEL_NAM": "2D-4", "ACRE": null, "LONGITUDE": -64.96447412000001, "LATITUDE": 18.35836101, "OBJECTID_1": 2896, "PARCEL_NO_": "102701030500", "Tax_Legal_": "2D ESTATE DOROTHEA No.7 LITTLE NORTHSIDE QTR.", "Name": "BRYAN, JOSEPH C & E T", "Address": "3C DOROTHEA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.380324953600002, "SHAPE_Area": 55.982140649199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355246.13629999756813, 258735.26969999819994 ], [ 355241.21509999781847, 258731.777199998497963 ], [ 355233.073499999940395, 258724.578899998217821 ], [ 355240.886500000953674, 258740.079500000923872 ], [ 355246.13629999756813, 258735.26969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "F9-99-T57", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.96672447, "LATITUDE": 18.35106337, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.007720398, "SHAPE_Area": 149.769808893 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354989.540200002491474, 257914.333999998867512 ], [ 354989.98309999704361, 257919.377500001341105 ], [ 355017.829000003635883, 257928.883299998939037 ], [ 355034.231899999082088, 257934.045899998396635 ], [ 355027.14919999986887, 257928.465700000524521 ], [ 355027.078000001609325, 257928.310300000011921 ], [ 355017.669600002467632, 257925.977099999785423 ], [ 354989.540200002491474, 257914.333999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95892424, "LATITUDE": 18.30893939, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.60998125783000001, "SHAPE_Area": 0.01569827977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355870.461400002241135, 253268.224300000816584 ], [ 355870.694099999964237, 253268.263199999928474 ], [ 355870.673299998044968, 253268.124800000339746 ], [ 355870.461400002241135, 253268.224300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-8811-T013", "PARCEL_NAM": "A", "ACRE": ".11", "LONGITUDE": -64.93654063, "LATITUDE": 18.34605903, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.653454672899997, "SHAPE_Area": 439.66295210200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358187.890600003302097, 257397.443399999290705 ], [ 358200.588500000536442, 257411.018899999558926 ], [ 358205.61150000244379, 257406.914799999445677 ], [ 358213.812200002372265, 257396.692999999970198 ], [ 358216.770199999213219, 257390.129399999976158 ], [ 358208.656499996781349, 257380.588500000536442 ], [ 358207.905799999833107, 257381.322500001639128 ], [ 358187.890600003302097, 257397.443399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105203040100", "MAP": "D9-8813-T013", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95953649, "LATITUDE": 18.33626566, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.65836441499999, "SHAPE_Area": 1660.0977315499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355834.191399998962879, 256290.688700001686811 ], [ 355830.249300003051758, 256286.327199999243021 ], [ 355795.389899998903275, 256281.36939999833703 ], [ 355760.14299999922514, 256280.995400000363588 ], [ 355733.423699997365475, 256294.222100000828505 ], [ 355728.760200001299381, 256301.782800000160933 ], [ 355788.265399999916553, 256301.774500001221895 ], [ 355811.224500000476837, 256299.328400000929832 ], [ 355817.191500000655651, 256300.935499999672174 ], [ 355834.191399998962879, 256290.688700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105203040100", "MAP": "D9-8813-T013", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95920621, "LATITUDE": 18.33611719, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.50681974400001, "SHAPE_Area": 1245.2885955199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355760.14299999922514, 256280.995400000363588 ], [ 355795.389899998903275, 256281.36939999833703 ], [ 355830.249300003051758, 256286.327199999243021 ], [ 355834.191399998962879, 256290.688700001686811 ], [ 355856.578599996864796, 256277.194699998944998 ], [ 355840.191899999976158, 256267.682700000703335 ], [ 355839.314000003039837, 256267.252399999648333 ], [ 355829.028599999845028, 256262.211199998855591 ], [ 355770.240500003099442, 256275.997000001370907 ], [ 355760.14299999922514, 256280.995400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91870512, "LATITUDE": 18.35601676, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.113788872100002, "SHAPE_Area": 79.969884431799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360062.68129999935627, 258509.690200001001358 ], [ 360071.946099996566772, 258516.952399998903275 ], [ 360073.022600002586842, 258516.721799999475479 ], [ 360095.723899997770786, 258511.860500000417233 ], [ 360090.088699996471405, 258510.758900001645088 ], [ 360071.525499999523163, 258512.7179000005126 ], [ 360066.691299997270107, 258512.25620000064373 ], [ 360062.68129999935627, 258509.690200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94399636, "LATITUDE": 18.34047877, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.882777127499999, "SHAPE_Area": 58.794903561399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357415.906300000846386, 256773.15430000051856 ], [ 357419.053700000047684, 256778.882599998265505 ], [ 357425.365800000727177, 256768.747999999672174 ], [ 357420.553099997341633, 256765.753299999982119 ], [ 357415.906300000846386, 256773.15430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94244152, "LATITUDE": 18.34116603, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.600810212, "SHAPE_Area": 828.53948060899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357612.251500003039837, 256865.194200001657009 ], [ 357625.697499997913837, 256872.593299999833107 ], [ 357630.039599999785423, 256874.964099999517202 ], [ 357630.089000001549721, 256874.49269999936223 ], [ 357631.757399998605251, 256867.962499998509884 ], [ 357627.020499996840954, 256863.258299998939037 ], [ 357615.103799998760223, 256857.546100001782179 ], [ 357581.339400000870228, 256842.797899998724461 ], [ 357570.865099996328354, 256838.67960000038147 ], [ 357553.654899999499321, 256832.911200001835823 ], [ 357530.516199998557568, 256825.54839999973774 ], [ 357529.079199999570847, 256831.102400001138449 ], [ 357538.405100002884865, 256834.418299999088049 ], [ 357541.843299999833107, 256835.78940000012517 ], [ 357548.488300003111362, 256838.229400001466274 ], [ 357561.054399996995926, 256842.805700000375509 ], [ 357579.127499997615814, 256850.539599999785423 ], [ 357583.800399996340275, 256852.635999999940395 ], [ 357594.767899997532368, 256857.556499999016523 ], [ 357599.814499996602535, 256859.820599999278784 ], [ 357612.251500003039837, 256865.194200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94408499, "LATITUDE": 18.34061217, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.922250943199998, "SHAPE_Area": 140.858166348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357419.053700000047684, 256778.882599998265505 ], [ 357415.906300000846386, 256773.15430000051856 ], [ 357405.116200000047684, 256790.339699998497963 ], [ 357401.85419999808073, 256795.535100001841784 ], [ 357406.37610000371933, 256798.638999998569489 ], [ 357406.443499997258186, 256798.535199999809265 ], [ 357415.555200003087521, 256784.499699998646975 ], [ 357419.053700000047684, 256778.882599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301045100", "MAP": "D9-7425-T004", "PARCEL_NAM": "178-239", "ACRE": null, "LONGITUDE": -64.94244021, "LATITUDE": 18.34194476, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.464114756599997, "SHAPE_Area": 378.28439131699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357576.464199997484684, 256921.972100000828505 ], [ 357572.234099999070168, 256940.644099999219179 ], [ 357587.534999996423721, 256947.605000000447035 ], [ 357590.632700003683567, 256948.743500001728535 ], [ 357594.520099997520447, 256929.479600001126528 ], [ 357590.122900001704693, 256927.783399999141693 ], [ 357576.464199997484684, 256921.972100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94905038, "LATITUDE": 18.33785683, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 483.73022772500002, "SHAPE_Area": 1212.0826905500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356963.175800003111362, 256501.309399999678135 ], [ 356965.880599997937679, 256467.767599999904633 ], [ 356966.708499997854233, 256465.241300001740456 ], [ 356960.26519999653101, 256464.344200000166893 ], [ 356957.544200003147125, 256499.785599999129772 ], [ 356945.478299997746944, 256496.309399999678135 ], [ 356928.570900000631809, 256493.215700000524521 ], [ 356926.155500002205372, 256492.773699998855591 ], [ 356922.706399999558926, 256492.154199998825788 ], [ 356899.905900001525879, 256485.22749999910593 ], [ 356884.60530000180006, 256482.492199998348951 ], [ 356870.283299997448921, 256479.931800000369549 ], [ 356857.375100001692772, 256472.650299999862909 ], [ 356850.763099998235703, 256468.819899998605251 ], [ 356833.379100002348423, 256458.749099999666214 ], [ 356803.425399996340275, 256443.19310000166297 ], [ 356778.436499997973442, 256432.932700000703335 ], [ 356776.38120000064373, 256431.657000001519918 ], [ 356775.169900000095367, 256434.80629999935627 ], [ 356791.117600001394749, 256442.061500001698732 ], [ 356791.692100003361702, 256442.32880000025034 ], [ 356827.917900003492832, 256462.058899998664856 ], [ 356828.358400002121925, 256462.838799998164177 ], [ 356828.344700001180172, 256462.056699998676777 ], [ 356871.938199996948242, 256485.39299999922514 ], [ 356883.52250000089407, 256487.047899998724461 ], [ 356909.338899999856949, 256493.667500000447035 ], [ 356924.729400001466274, 256498.466699998825788 ], [ 356924.844800002872944, 256498.525199998170137 ], [ 356942.206299997866154, 256501.771000001579523 ], [ 356955.076700001955032, 256505.464999999850988 ], [ 356959.914599999785423, 256505.50450000166893 ], [ 356962.347900003194809, 256503.835700001567602 ], [ 356963.175800003111362, 256501.309399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-8849-T014", "PARCEL_NAM": "D-34", "ACRE": "3.00", "LONGITUDE": -64.90381682, "LATITUDE": 18.35858996, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 488.30632250399998, "SHAPE_Area": 12842.118718899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361685.217100001871586, 258774.862199999392033 ], [ 361643.0675999969244, 258727.691500000655651 ], [ 361635.613099999725819, 258733.446400001645088 ], [ 361604.762900002300739, 258757.891800001263618 ], [ 361600.693599998950958, 258762.291499998420477 ], [ 361599.048600003123283, 258766.0777000002563 ], [ 361597.426899999380112, 258767.119899999350309 ], [ 361596.60080000013113, 258769.435199998319149 ], [ 361594.160300001502037, 258771.948300000280142 ], [ 361589.241499997675419, 258781.407299999147654 ], [ 361586.763300001621246, 258788.353100001811981 ], [ 361584.243600003421307, 258800.1537000015378 ], [ 361585.710600003600121, 258817.264299999922514 ], [ 361591.232500001788139, 258831.663800001144409 ], [ 361600.809399999678135, 258843.352400001138449 ], [ 361615.218699999153614, 258855.713700000196695 ], [ 361625.646799996495247, 258862.131900001317263 ], [ 361632.073899999260902, 258864.928700000047684 ], [ 361652.996699996292591, 258869.955099999904633 ], [ 361671.527500003576279, 258871.795499999076128 ], [ 361683.623999997973442, 258871.683400001376867 ], [ 361698.965499997138977, 258869.27589999884367 ], [ 361722.397100001573563, 258863.768100000917912 ], [ 361723.23759999871254, 258859.764199998229742 ], [ 361724.079899996519089, 258855.549199998378754 ], [ 361722.505000002682209, 258851.103399999439716 ], [ 361719.412799999117851, 258835.45719999819994 ], [ 361719.490099996328354, 258826.380800001323223 ], [ 361721.986400000751019, 258817.324200000613928 ], [ 361724.446699999272823, 258812.489199999719858 ], [ 361731.821999996900558, 258803.517000000923872 ], [ 361685.145199999213219, 258809.726100001484156 ], [ 361676.773800000548363, 258791.184500001370907 ], [ 361685.217100001871586, 258774.862199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "F9-3409-T80", "PARCEL_NAM": "D-24", "ACRE": "1.0", "LONGITUDE": -64.90219955000001, "LATITUDE": 18.3578865, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 383.39654669200002, "SHAPE_Area": 4964.06046341 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361788.633900001645088, 258701.1097999997437 ], [ 361799.55349999666214, 258704.390700001269579 ], [ 361811.30349999666214, 258713.632399998605251 ], [ 361821.848800003528595, 258729.808800000697374 ], [ 361824.83669999986887, 258735.371199999004602 ], [ 361804.720299996435642, 258748.192699998617172 ], [ 361800.457900002598763, 258755.219900000840425 ], [ 361800.707599997520447, 258758.228999998420477 ], [ 361799.750200003385544, 258775.953000001609325 ], [ 361798.80009999871254, 258792.832699999213219 ], [ 361834.997800000011921, 258803.261500000953674 ], [ 361841.634900003671646, 258790.330600000917912 ], [ 361841.193999998271465, 258737.171399999409914 ], [ 361856.972800001502037, 258714.872299998998642 ], [ 361850.476899996399879, 258705.905900001525879 ], [ 361853.171499997377396, 258703.722800001502037 ], [ 361848.738600000739098, 258698.876299999654293 ], [ 361845.840800002217293, 258700.487100001424551 ], [ 361819.194399997591972, 258669.342300001531839 ], [ 361776.420999996364117, 258692.552999999374151 ], [ 361788.633900001645088, 258701.1097999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-1731-T80", "PARCEL_NAM": "D-25", "ACRE": ".075", "LONGITUDE": -64.90302326, "LATITUDE": 18.35829265, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.944261110799999, "SHAPE_Area": 469.82026132200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361728.301500000059605, 258762.375399999320507 ], [ 361725.26799999922514, 258781.758799999952316 ], [ 361731.010899998247623, 258796.139899998903275 ], [ 361743.871500000357628, 258793.849300000816584 ], [ 361742.374399997293949, 258790.471099998801947 ], [ 361741.04839999973774, 258777.853000000119209 ], [ 361743.889499999582767, 258765.733199998736382 ], [ 361728.301500000059605, 258762.375399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-723-T008", "PARCEL_NAM": "CONS D (EAST)", "ACRE": "38.696", "LONGITUDE": -64.90136012000001, "LATITUDE": 18.35936545, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2523.6669083000002, "SHAPE_Area": 134002.38727400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362031.719400003552437, 259185.684300001710653 ], [ 362065.767899997532368, 259164.431499999016523 ], [ 362060.621799997985363, 259105.916400000452995 ], [ 362070.850100003182888, 258993.915800001472235 ], [ 362071.293799996376038, 258989.057900000363588 ], [ 362071.410700000822544, 258975.337799999862909 ], [ 362070.642099998891354, 258970.898600000888109 ], [ 362069.914899997413158, 258961.604499999433756 ], [ 362054.91330000013113, 258924.118099998682737 ], [ 362053.313199996948242, 258922.627399999648333 ], [ 362050.931999996304512, 258918.174899999052286 ], [ 362049.346400000154972, 258914.995600000023842 ], [ 362044.637999996542931, 258899.758299998939037 ], [ 362043.028999999165535, 258899.322900000959635 ], [ 362013.029200002551079, 258823.928100001066923 ], [ 362013.952399998903275, 258810.214600000530481 ], [ 362016.912600003182888, 258746.699599999934435 ], [ 362013.373800002038479, 258688.831000000238419 ], [ 361989.750799998641014, 258622.143199998885393 ], [ 361964.547600001096725, 258551.642799999564886 ], [ 361879.485100001096725, 258581.645199999213219 ], [ 361867.746899999678135, 258586.153499998152256 ], [ 361864.950199998915195, 258627.538400001823902 ], [ 361798.692299999296665, 258626.984400000423193 ], [ 361801.167599998414516, 258572.089699998497963 ], [ 361800.680399999022484, 258571.85190000012517 ], [ 361772.952899999916553, 258559.861099999397993 ], [ 361759.8108000010252, 258555.67680000141263 ], [ 361755.580399997532368, 258591.016499999910593 ], [ 361735.983599998056889, 258588.314599998295307 ], [ 361729.304200001060963, 258595.535799998790026 ], [ 361724.628700003027916, 258601.819299999624491 ], [ 361719.754799999296665, 258606.001299999654293 ], [ 361700.191100001335144, 258630.750199999660254 ], [ 361680.611299999058247, 258657.398800000548363 ], [ 361669.139499999582767, 258678.836500000208616 ], [ 361655.968699999153614, 258710.392700001597404 ], [ 361651.048199996352196, 258720.062699999660254 ], [ 361646.165299996733665, 258725.30009999871254 ], [ 361643.0675999969244, 258727.691500000655651 ], [ 361685.217100001871586, 258774.862199999392033 ], [ 361713.223399996757507, 258762.490699999034405 ], [ 361716.086099997162819, 258752.68129999935627 ], [ 361721.337600000202656, 258735.447799999266863 ], [ 361727.700000002980232, 258714.568399999290705 ], [ 361770.457500003278255, 258683.509199999272823 ], [ 361776.420999996364117, 258692.552999999374151 ], [ 361819.194399997591972, 258669.342300001531839 ], [ 361845.840800002217293, 258700.487100001424551 ], [ 361848.738600000739098, 258698.876299999654293 ], [ 361853.171499997377396, 258703.722800001502037 ], [ 361850.476899996399879, 258705.905900001525879 ], [ 361856.972800001502037, 258714.872299998998642 ], [ 361841.193999998271465, 258737.171399999409914 ], [ 361841.634900003671646, 258790.330600000917912 ], [ 361834.997800000011921, 258803.261500000953674 ], [ 361839.693599998950958, 258819.976300001144409 ], [ 361843.622699998319149, 258832.040800001472235 ], [ 361846.75620000064373, 258842.83219999819994 ], [ 361848.325699999928474, 258847.911299999803305 ], [ 361858.814999997615814, 258847.152800001204014 ], [ 361875.738499999046326, 258848.346799999475479 ], [ 361895.061300002038479, 258851.882399998605251 ], [ 361911.151500001549721, 258856.236000001430511 ], [ 361931.246399998664856, 258863.788699999451637 ], [ 361952.926899999380112, 258874.520799998193979 ], [ 361963.346100002527237, 258881.99439999833703 ], [ 361974.513999998569489, 258896.228999998420477 ], [ 361978.477200001478195, 258904.282999999821186 ], [ 361980.831399999558926, 258911.901700001209974 ], [ 361982.42960000038147, 258913.603500001132488 ], [ 361984.82880000025034, 258915.945199999958277 ], [ 361982.377499997615814, 258919.724800001829863 ], [ 361979.843500003218651, 258933.214000001549721 ], [ 361972.480599999427795, 258945.608300000429153 ], [ 361966.778800003230572, 258952.316599998623133 ], [ 361957.853699997067451, 258958.787500001490116 ], [ 361878.302799999713898, 259020.620099999010563 ], [ 361849.930799998342991, 259038.119699999690056 ], [ 361788.375900000333786, 259069.913199998438358 ], [ 361783.509300000965595, 259073.250900000333786 ], [ 361777.816500000655651, 259078.903799999505281 ], [ 361772.093199998140335, 259088.145100001245737 ], [ 361770.444600000977516, 259092.353500001132488 ], [ 361768.756499998271465, 259101.205600000917912 ], [ 361769.526799999177456, 259105.433800000697374 ], [ 361767.727200001478195, 259127.372800000011921 ], [ 361760.20610000193119, 259158.342000000178814 ], [ 361757.646899998188019, 259174.786299999803305 ], [ 361779.422700002789497, 259174.331300001591444 ], [ 361784.3091000020504, 259168.671700000762939 ], [ 361799.211599998176098, 259177.603500001132488 ], [ 361846.084100000560284, 259205.69649999961257 ], [ 361862.129399999976158, 259215.327100001275539 ], [ 361889.407399997115135, 259231.593400001525879 ], [ 361923.900799997150898, 259252.774000000208616 ], [ 361930.387299999594688, 259248.605200000107288 ], [ 361968.487099997699261, 259225.063499998301268 ], [ 361972.540299996733665, 259222.563499998301268 ], [ 362002.535700000822544, 259203.810600001364946 ], [ 362031.719400003552437, 259185.684300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-8849-T014", "PARCEL_NAM": "D-35", "ACRE": ".882", "LONGITUDE": -64.90295275, "LATITUDE": 18.35872653, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.85593090700002, "SHAPE_Area": 3128.2435018599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361722.397100001573563, 258863.768100000917912 ], [ 361740.98369999974966, 258859.065099999308586 ], [ 361762.802599996328354, 258853.544100001454353 ], [ 361776.500799998641014, 258852.63230000063777 ], [ 361763.743500001728535, 258799.170099999755621 ], [ 361752.847199998795986, 258801.005899999290705 ], [ 361746.721600003540516, 258801.855500001460314 ], [ 361743.871500000357628, 258793.849300000816584 ], [ 361731.010899998247623, 258796.139899998903275 ], [ 361682.342200003564358, 258803.517799999564886 ], [ 361685.145199999213219, 258809.726100001484156 ], [ 361731.821999996900558, 258803.517000000923872 ], [ 361724.446699999272823, 258812.489199999719858 ], [ 361721.986400000751019, 258817.324200000613928 ], [ 361719.490099996328354, 258826.380800001323223 ], [ 361719.412799999117851, 258835.45719999819994 ], [ 361722.505000002682209, 258851.103399999439716 ], [ 361724.079899996519089, 258855.549199998378754 ], [ 361723.23759999871254, 258859.764199998229742 ], [ 361722.397100001573563, 258863.768100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-1731-T80", "PARCEL_NAM": "D-23-A", "ACRE": "2.28", "LONGITUDE": -64.90257125, "LATITUDE": 18.35824864, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 526.69131710299996, "SHAPE_Area": 10718.081427200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361714.389799997210503, 258758.493999999016523 ], [ 361728.301500000059605, 258762.375399999320507 ], [ 361743.889499999582767, 258765.733199998736382 ], [ 361741.04839999973774, 258777.853000000119209 ], [ 361742.374399997293949, 258790.471099998801947 ], [ 361743.871500000357628, 258793.849300000816584 ], [ 361746.721600003540516, 258801.855500001460314 ], [ 361752.847199998795986, 258801.005899999290705 ], [ 361763.743500001728535, 258799.170099999755621 ], [ 361776.500799998641014, 258852.63230000063777 ], [ 361791.041599996387959, 258851.664299998432398 ], [ 361848.325699999928474, 258847.911299999803305 ], [ 361846.75620000064373, 258842.83219999819994 ], [ 361843.622699998319149, 258832.040800001472235 ], [ 361839.693599998950958, 258819.976300001144409 ], [ 361834.997800000011921, 258803.261500000953674 ], [ 361798.80009999871254, 258792.832699999213219 ], [ 361799.750200003385544, 258775.953000001609325 ], [ 361800.707599997520447, 258758.228999998420477 ], [ 361800.457900002598763, 258755.219900000840425 ], [ 361804.720299996435642, 258748.192699998617172 ], [ 361824.83669999986887, 258735.371199999004602 ], [ 361821.848800003528595, 258729.808800000697374 ], [ 361811.30349999666214, 258713.632399998605251 ], [ 361799.55349999666214, 258704.390700001269579 ], [ 361788.633900001645088, 258701.1097999997437 ], [ 361776.420999996364117, 258692.552999999374151 ], [ 361721.337600000202656, 258735.447799999266863 ], [ 361716.086099997162819, 258752.68129999935627 ], [ 361714.389799997210503, 258758.493999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-8769-T013", "PARCEL_NAM": "D-33", "ACRE": ".744", "LONGITUDE": -64.90212725000001, "LATITUDE": 18.35671894, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.72128315399999, "SHAPE_Area": 2811.53433219 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361801.167599998414516, 258572.089699998497963 ], [ 361798.692299999296665, 258626.984400000423193 ], [ 361864.950199998915195, 258627.538400001823902 ], [ 361867.746899999678135, 258586.153499998152256 ], [ 361863.953900001943111, 258587.610199999064207 ], [ 361851.616700001060963, 258591.989799998700619 ], [ 361842.785300001502037, 258591.49439999833703 ], [ 361832.679399996995926, 258588.185300000011921 ], [ 361823.1554000005126, 258582.822200000286102 ], [ 361801.167599998414516, 258572.089699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92611404, "LATITUDE": 18.3720549, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4659.0368061500003, "SHAPE_Area": 19755.395668100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359267.738799996674061, 260520.745600000023842 ], [ 359267.274599999189377, 260519.710700001567602 ], [ 359216.518700003623962, 260530.529500000178814 ], [ 359223.042900003492832, 260521.928100001066923 ], [ 359240.916599996387959, 260506.242300000041723 ], [ 359257.127400003373623, 260496.453600000590086 ], [ 359275.739100001752377, 260488.795499999076128 ], [ 359304.085900001227856, 260474.250900000333786 ], [ 359325.994800001382828, 260458.175999999046326 ], [ 359335.738899998366833, 260450.234200000762939 ], [ 359361.718900002539158, 260429.548599999397993 ], [ 359369.861199997365475, 260420.327100001275539 ], [ 359393.479800000786781, 260392.867199998348951 ], [ 359395.938299998641014, 260388.243200000375509 ], [ 359407.321999996900558, 260377.148499999195337 ], [ 359415.406700000166893, 260374.681499999016523 ], [ 359433.194099999964237, 260369.127599999308586 ], [ 359459.048199996352196, 260363.217500001192093 ], [ 359480.899599999189377, 260353.897100001573563 ], [ 359505.612700000405312, 260338.534200001507998 ], [ 359513.329999998211861, 260333.264199998229742 ], [ 359507.721900001168251, 260328.996500000357628 ], [ 359505.284999996423721, 260331.087499998509884 ], [ 359500.443499997258186, 260331.469999998807907 ], [ 359495.616400003433228, 260330.164000000804663 ], [ 359494.020000003278255, 260328.2511 ], [ 359487.537100002169609, 260331.997699998319149 ], [ 359486.674999997019768, 260338.534499999135733 ], [ 359485.035400003194809, 260341.6875 ], [ 359484.216499999165535, 260343.158500000834465 ], [ 359473.689499996602535, 260348.349599998444319 ], [ 359467.194099999964237, 260353.573800001293421 ], [ 359449.402999997138977, 260359.549899999052286 ], [ 359430.825499996542931, 260363.197599999606609 ], [ 359404.141699999570847, 260371.845100000500679 ], [ 359396.026399999856949, 260377.900400001555681 ], [ 359391.13459999859333, 260384.193199999630451 ], [ 359385.409500002861023, 260393.645500000566244 ], [ 359365.050300002098083, 260417.121399998664856 ], [ 359361.801600001752377, 260419.839000001549721 ], [ 359358.536799997091293, 260424.456300001591444 ], [ 359330.929799996316433, 260446.817400000989437 ], [ 359317.136200003325939, 260456.837000001221895 ], [ 359303.398299999535084, 260460.313099998980761 ], [ 359288.884700000286102, 260460.194299999624491 ], [ 359288.906199999153614, 260457.661400001496077 ], [ 359291.343199998140335, 260455.57039999961853 ], [ 359311.614200003445148, 260442.437399998307228 ], [ 359325.42230000346899, 260430.729200001806021 ], [ 359331.930299997329712, 260424.027499999850988 ], [ 359342.541799999773502, 260408.915600001811981 ], [ 359345.061499997973442, 260397.114999998360872 ], [ 359345.358199998736382, 260362.287000000476837 ], [ 359349.553400002419949, 260343.111800000071526 ], [ 359354.500900000333786, 260330.275600001215935 ], [ 359357.814300000667572, 260319.959100000560284 ], [ 359361.089900001883507, 260314.075300000607967 ], [ 359374.116800002753735, 260299.4054000005126 ], [ 359387.145400002598763, 260284.524300001561642 ], [ 359398.521899998188019, 260274.273899998515844 ], [ 359412.311899997293949, 260264.676399998366833 ], [ 359422.837200000882149, 260259.696299999952316 ], [ 359435.406199999153614, 260254.105999998748302 ], [ 359429.909699998795986, 260246.421399999409914 ], [ 359428.590999998152256, 260246.866700001060963 ], [ 359425.365800000727177, 260246.840300001204014 ], [ 359420.551299996674061, 260244.056699998676777 ], [ 359418.195299997925758, 260236.649099998176098 ], [ 359392.679200001060963, 260202.876400001347065 ], [ 359387.812600001692772, 260206.214099999517202 ], [ 359403.762599997222424, 260227.031800001859665 ], [ 359405.366200000047684, 260228.100400000810623 ], [ 359410.938500002026558, 260236.589800000190735 ], [ 359415.689999997615814, 260246.761100001633167 ], [ 359414.833400003612041, 260252.664700001478195 ], [ 359396.997400000691414, 260263.91780000180006 ], [ 359388.06139999628067, 260271.655099999159575 ], [ 359384.020900003612041, 260272.677499998360872 ], [ 359380.003700003027916, 260270.955899998545647 ], [ 359371.220600001513958, 260260.751499999314547 ], [ 359348.87219999730587, 260233.759700000286102 ], [ 359344.048699997365475, 260232.031500000506639 ], [ 359339.201800003647804, 260233.0472999997437 ], [ 359332.704599998891354, 260238.482599999755621 ], [ 359313.241599999368191, 260251.411100000143051 ], [ 359300.286700002849102, 260257.637800000607967 ], [ 359284.914599999785423, 260263.633699998259544 ], [ 359282.490199998021126, 260264.24720000103116 ], [ 359267.947899997234344, 260267.505699999630451 ], [ 359248.527999997138977, 260275.368299998342991 ], [ 359233.944300003349781, 260283.481600001454353 ], [ 359222.580399997532368, 260292.25450000166893 ], [ 359217.720899999141693, 260294.747800000011921 ], [ 359208.844300001859665, 260295.519600000232458 ], [ 359204.019000001251698, 260294.002399999648333 ], [ 359204.845100000500679, 260291.687100000679493 ], [ 359207.287399999797344, 260288.962900001555681 ], [ 359209.742299996316433, 260284.761100001633167 ], [ 359210.571999996900558, 260282.023699998855591 ], [ 359213.014300003647804, 260279.299499999731779 ], [ 359217.117799997329712, 260270.889299999922514 ], [ 359256.308100000023842, 260214.003699999302626 ], [ 359266.910599999129772, 260199.947200000286102 ], [ 359285.63570000231266, 260178.991099998354912 ], [ 359307.594899997115135, 260157.006000000983477 ], [ 359327.900200001895428, 260139.86259999871254 ], [ 359349.002700001001358, 260123.781100001186132 ], [ 359359.540600001811981, 260117.323399998247623 ], [ 359395.203500002622604, 260095.872699998319149 ], [ 359429.266400001943111, 260072.931200001388788 ], [ 359450.354599997401237, 260058.53830000013113 ], [ 359476.32209999859333, 260039.330200001597404 ], [ 359486.059000000357628, 260032.232700001448393 ], [ 359500.696699999272823, 260017.787099998444319 ], [ 359512.901000000536442, 260005.010299999266863 ], [ 359524.318899996578693, 259989.905000001192093 ], [ 359542.26630000025034, 259965.565000001341105 ], [ 359553.6554000005126, 259953.837000001221895 ], [ 359573.948100000619888, 259938.171100001782179 ], [ 359565.931699998676777, 259932.616999998688698 ], [ 359550.511100001633167, 259944.311999998986721 ], [ 359537.496799997985363, 259957.504399999976158 ], [ 359530.168099999427795, 259965.888199999928474 ], [ 359529.342000000178814, 259968.203400000929832 ], [ 359519.547499999403954, 259982.055500000715256 ], [ 359511.396300002932549, 259992.332299999892712 ], [ 359495.925300002098083, 260009.937600001692772 ], [ 359486.170400001108646, 260019.145799998193979 ], [ 359482.106499999761581, 260022.912300001829863 ], [ 359473.982299998402596, 260030.022999998182058 ], [ 359452.076999999582767, 260045.675700001418591 ], [ 359422.8699000030756, 260066.546000000089407 ], [ 359366.92679999768734, 260102.185100000351667 ], [ 359356.392599999904633, 260108.220600001513958 ], [ 359347.478200003504753, 260113.425000000745058 ], [ 359327.185599997639656, 260129.090900000184774 ], [ 359312.574799999594688, 260140.370400000363588 ], [ 359296.319099999964237, 260155.436099998652935 ], [ 359274.35809999704361, 260177.63230000063777 ], [ 359275.256099998950958, 260166.873799998313189 ], [ 359276.911899998784065, 260161.821199998259544 ], [ 359281.823499999940395, 260153.206500001251698 ], [ 359290.768399998545647, 260144.413800001144409 ], [ 359305.379199996590614, 260133.134300000965595 ], [ 359320.815999999642372, 260119.539599999785423 ], [ 359317.6266999989748, 260115.291600000113249 ], [ 359307.078100003302097, 260123.015700001269579 ], [ 359288.385499998927116, 260140.172400001436472 ], [ 359268.864900000393391, 260159.855500001460314 ], [ 359260.753300003707409, 260165.488600000739098 ], [ 359255.89919999986887, 260167.348700001835823 ], [ 359251.046899996697903, 260168.997699998319149 ], [ 359242.946000002324581, 260173.364399999380112 ], [ 359217.050499998033047, 260184.129299998283386 ], [ 359210.576700001955032, 260186.820599999278784 ], [ 359205.717200003564358, 260189.313900001347065 ], [ 359197.6199000030756, 260193.258400000631809 ], [ 359159.563199996948242, 260211.734299998730421 ], [ 359142.555100001394749, 260220.460999999195337 ], [ 359110.927299998700619, 260241.522599998861551 ], [ 359115.700400002300739, 260249.160999998450279 ], [ 359125.372599996626377, 260249.662399999797344 ], [ 359126.945699997246265, 260254.319299999624491 ], [ 359132.615000002086163, 260251.410399999469519 ], [ 359134.331900000572205, 260239.181000001728535 ], [ 359135.971500001847744, 260236.028000000864267 ], [ 359151.37780000269413, 260226.021600000560284 ], [ 359165.956200003623962, 260218.541600000113249 ], [ 359199.160599999129772, 260201.714800000190735 ], [ 359221.028200000524521, 260190.494699999690056 ], [ 359234.773199997842312, 260186.174199998378754 ], [ 359255.782300002872944, 260181.068799998611212 ], [ 359261.421099998056889, 260181.7483000010252 ], [ 359267.846400000154972, 260184.75620000064373 ], [ 359245.833200000226498, 260213.073600001633167 ], [ 359227.057899996638298, 260239.939899999648333 ], [ 359208.260899998247623, 260269.339200001209974 ], [ 359203.388899996876717, 260273.310100000351667 ], [ 359143.423299998044968, 260307.860800001770258 ], [ 359115.872000001370907, 260323.678399998694658 ], [ 359094.009900003671646, 260334.265299998223782 ], [ 359064.824400000274181, 260352.602600000798702 ], [ 359066.383000001311302, 260358.94819999858737 ], [ 359080.171300001442432, 260349.561799999326468 ], [ 359097.190200001001358, 260339.568599998950958 ], [ 359131.206299997866154, 260322.115200001746416 ], [ 359191.981899999082088, 260287.148899998515844 ], [ 359195.203500002622604, 260287.597500000149012 ], [ 359154.931800000369549, 260376.771499998867512 ], [ 359149.246200002729893, 260381.580099999904633 ], [ 359083.456600002944469, 260437.192600000649691 ], [ 359078.582800000905991, 260441.374499998986721 ], [ 359065.588200002908707, 260452.245099999010563 ], [ 359035.700699999928474, 260458.333200000226498 ], [ 358987.235699996352196, 260468.069099999964237 ], [ 358952.503100000321865, 260474.962000001221895 ], [ 358959.693400003015995, 260482.831300001591444 ], [ 359069.547899998724461, 260460.721200000494719 ], [ 359118.279100000858307, 260419.745700001716614 ], [ 359162.946299999952316, 260382.53660000115633 ], [ 359181.035899996757507, 260341.52140000090003 ], [ 359196.460100002586842, 260329.40430000051856 ], [ 359213.534699998795986, 260312.867600001394749 ], [ 359221.669799998402596, 260304.490499999374151 ], [ 359237.092200003564358, 260292.584399998188019 ], [ 359254.105700001120567, 260283.224399998784065 ], [ 359270.291299998760223, 260276.390799999237061 ], [ 359289.685900002717972, 260271.483300000429153 ], [ 359306.677799999713898, 260264.656199999153614 ], [ 359319.63459999859333, 260258.218400001525879 ], [ 359343.157899998128414, 260241.945599999278784 ], [ 359369.501900002360344, 260273.19200000166893 ], [ 359371.107299998402596, 260274.049499999731779 ], [ 359373.488499999046326, 260278.502000000327826 ], [ 359371.787699997425079, 260288.831599999219179 ], [ 359358.769900001585484, 260302.446199998259544 ], [ 359350.609600000083447, 260313.778400000184774 ], [ 359342.370300002396107, 260334.398200001567602 ], [ 359327.723600000143051, 260349.89919999986887 ], [ 359312.297600001096725, 260362.22749999910593 ], [ 359301.754399999976158, 260369.318399999290705 ], [ 359275.839100003242493, 260382.405099999159575 ], [ 359274.219300001859665, 260383.236299999058247 ], [ 359280.608599998056889, 260390.465700000524521 ], [ 359303.284299999475479, 260379.041200000792742 ], [ 359309.770700000226498, 260374.872400000691414 ], [ 359325.184199996292591, 260364.021699998527765 ], [ 359334.937200002372265, 260355.024500001221895 ], [ 359339.773299999535084, 260355.275199998170137 ], [ 359338.880699999630451, 260365.400299999862909 ], [ 359340.313500002026558, 260386.52140000090003 ], [ 359337.763300001621246, 260401.910399999469519 ], [ 359333.645400002598763, 260412.009199999272823 ], [ 359324.682499997317791, 260422.91270000115037 ], [ 359315.742899999022484, 260431.072200000286102 ], [ 359295.4628000035882, 260445.260499998927116 ], [ 359282.468299999833107, 260456.131099998950958 ], [ 359284.007200002670288, 260464.798500001430511 ], [ 359291.245999999344349, 260466.968699999153614 ], [ 359300.920000001788139, 260467.258900001645088 ], [ 359300.898400001227856, 260469.791900001466274 ], [ 359249.08219999819994, 260494.276799999177456 ], [ 359239.357900001108646, 260499.896800000220537 ], [ 359228.807499997317791, 260507.831999998539686 ], [ 359216.614000000059605, 260519.342300001531839 ], [ 359205.205099999904633, 260533.392200000584126 ], [ 359197.105999998748302, 260537.547800000756979 ], [ 359198.139700002968311, 260541.611200001090765 ], [ 359215.133500002324581, 260536.021200001239777 ], [ 359243.650600001215935, 260530.59569999948144 ], [ 359269.915799997746944, 260525.598700001835823 ], [ 359267.738799996674061, 260520.745600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92160406000001, "LATITUDE": 18.33698026, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.473317052, "SHAPE_Area": 306.14996516999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359812.182499997317791, 256398.391800001263618 ], [ 359807.697300001978874, 256391.857799999415874 ], [ 359800.275799997150898, 256395.470100000500679 ], [ 359781.674999997019768, 256404.124899998307228 ], [ 359757.571999996900558, 256417.760000001639128 ], [ 359789.481899999082088, 256408.550900001078844 ], [ 359810.5287000015378, 256399.012899998575449 ], [ 359812.182499997317791, 256398.391800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97495087, "LATITUDE": 18.3670937, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.09194102000001, "SHAPE_Area": 375.14581005899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354177.108499996364117, 259693.384300000965595 ], [ 354167.480700001120567, 259692.169100001454353 ], [ 354159.921400003135204, 259691.126400001347065 ], [ 354151.771499998867512, 259689.574099998921156 ], [ 354145.728200003504753, 259688.096799999475479 ], [ 354136.920100003480911, 259686.877199999988079 ], [ 354129.217299997806549, 259685.91440000012517 ], [ 354123.525700002908707, 259686.053199999034405 ], [ 354117.293099999427795, 259686.188700001686811 ], [ 354112.127700001001358, 259686.732400000095367 ], [ 354105.22860000282526, 259687.4087999984622 ], [ 354095.577399998903275, 259689.249299999326468 ], [ 354085.6554000005126, 259692.269099999219179 ], [ 354075.795000001788139, 259695.257399998605251 ], [ 354074.127099998295307, 259699.584800001233816 ], [ 354086.718299999833107, 259695.768800001591444 ], [ 354096.454999998211861, 259692.805500000715256 ], [ 354105.750699996948242, 259691.032800000160933 ], [ 354112.497599996626377, 259690.371300000697374 ], [ 354117.524700000882149, 259689.842099998146296 ], [ 354123.610100001096725, 259689.709899999201298 ], [ 354129.034000001847744, 259689.577599998563528 ], [ 354136.442400000989437, 259690.503600001335144 ], [ 354145.041400000452995, 259691.694200001657009 ], [ 354150.994499996304512, 259693.149399999529123 ], [ 354159.328900001943111, 259694.736900001764297 ], [ 354167.001800000667572, 259695.795299999415874 ], [ 354174.364699997007847, 259696.724599998444319 ], [ 354177.108499996364117, 259693.384300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95947643, "LATITUDE": 18.36344568, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.897519117, "SHAPE_Area": 566.179347689 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355777.652300000190735, 259314.987399999052286 ], [ 355765.387599997222424, 259285.118200000375509 ], [ 355762.183899998664856, 259282.558800000697374 ], [ 355751.773800000548363, 259274.029899999499321 ], [ 355760.411100000143051, 259321.024999998509884 ], [ 355777.652300000190735, 259314.987399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95296776000001, "LATITUDE": 18.36648071, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.15023478399999, "SHAPE_Area": 382.73186567900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356421.887000001966953, 259635.870000001043081 ], [ 356418.439599998295307, 259635.559500001370907 ], [ 356419.578100003302097, 259642.787599999457598 ], [ 356424.368900001049042, 259642.826799999922514 ], [ 356439.555799998342991, 259643.780099999159575 ], [ 356446.229999996721745, 259644.565000001341105 ], [ 356453.975599996745586, 259645.235300000756979 ], [ 356465.352700002491474, 259646.690499998629093 ], [ 356473.819399997591972, 259648.278000000864267 ], [ 356480.129900000989437, 259649.488600000739098 ], [ 356479.718999996781349, 259645.949099998921156 ], [ 356479.400100000202656, 259643.201999999582767 ], [ 356469.850599996745586, 259641.134300000965595 ], [ 356459.531900003552437, 259640.075899999588728 ], [ 356447.361000001430511, 259638.356100000441074 ], [ 356429.260799996554852, 259636.534000001847744 ], [ 356426.813299998641014, 259636.3136 ], [ 356424.964299999177456, 259636.147100001573563 ], [ 356421.887000001966953, 259635.870000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92188349, "LATITUDE": 18.36730053, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1044.53610968, "SHAPE_Area": 4768.1063629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359900.063000001013279, 259614.067299999296665 ], [ 359927.590899996459484, 259600.993700001388788 ], [ 359918.775399997830391, 259594.588799998164177 ], [ 359879.12219999730587, 259611.151700001209974 ], [ 359854.020499996840954, 259623.400800000876188 ], [ 359845.914200000464916, 259628.400699999183416 ], [ 359827.271899998188019, 259639.647199999541044 ], [ 359809.426899999380112, 259651.955600000917912 ], [ 359791.564000003039837, 259666.374899998307228 ], [ 359776.125399999320507, 259680.180700000375509 ], [ 359765.558799996972084, 259690.015599999576807 ], [ 359754.151699997484684, 259703.854400001466274 ], [ 359731.3412000015378, 259731.109900001436472 ], [ 359717.493600003421307, 259747.461899999529123 ], [ 359709.31360000371933, 259761.11600000038743 ], [ 359702.764200001955032, 259772.672499999403954 ], [ 359695.34740000218153, 259791.39919999986887 ], [ 359692.894299998879433, 259795.389899998903275 ], [ 359681.422499999403954, 259816.827500000596046 ], [ 359675.70099999755621, 259825.857700001448393 ], [ 359674.077600002288818, 259827.111000001430511 ], [ 359673.251500003039837, 259829.426300000399351 ], [ 359663.464199997484684, 259842.433899998664856 ], [ 359648.803199999034405, 259859.623599998652935 ], [ 359625.21509999781847, 259883.495200000703335 ], [ 359617.044100001454353, 259896.094000000506639 ], [ 359610.5253000035882, 259904.062199998646975 ], [ 359599.152400001883507, 259913.890500001609325 ], [ 359585.380300000309944, 259921.377099998295307 ], [ 359573.229900002479553, 259927.821600001305342 ], [ 359565.931699998676777, 259932.616999998688698 ], [ 359573.948100000619888, 259938.171100001782179 ], [ 359578.811099998652935, 259935.255499999970198 ], [ 359582.031000003218651, 259935.915199998766184 ], [ 359579.567100003361702, 259941.172400001436472 ], [ 359586.782600000500679, 259946.086599998176098 ], [ 359593.312200002372265, 259936.85190000012517 ], [ 359595.80120000243187, 259928.639600001275539 ], [ 359597.433700002729893, 259926.330899998545647 ], [ 359611.229099996387959, 259916.100299999117851 ], [ 359618.546999998390675, 259908.982999999076128 ], [ 359629.975699998438358, 259892.611200001090765 ], [ 359634.871100001037121, 259885.896299999207258 ], [ 359644.624099999666214, 259876.899099998176098 ], [ 359659.27080000191927, 259861.397999998182058 ], [ 359680.463299997150898, 259834.762600000947714 ], [ 359695.173000000417233, 259811.873799998313189 ], [ 359696.8108000010252, 259808.93189999833703 ], [ 359706.671700000762939, 259787.269999999552965 ], [ 359718.168700002133846, 259762.877199999988079 ], [ 359728.778399996459484, 259747.976399999111891 ], [ 359763.805900000035763, 259706.466600000858307 ], [ 359771.953500002622604, 259696.611900001764297 ], [ 359789.020999997854233, 259680.91950000077486 ], [ 359802.022699996829033, 259669.204700000584126 ], [ 359824.743299998342991, 259652.503199998289347 ], [ 359844.204499997198582, 259639.785799998790026 ], [ 359870.126900002360344, 259625.854600001126528 ], [ 359898.461199998855591, 259612.78770000115037 ], [ 359900.063000001013279, 259614.067299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01700597, "LATITUDE": 18.34919518, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.926337281, "SHAPE_Area": 444.53599814199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349682.277099996805191, 257660.150699999183416 ], [ 349680.691799998283386, 257661.075800001621246 ], [ 349678.151799999177456, 257665.044599998742342 ], [ 349676.881800003349781, 257671.235800001770258 ], [ 349675.466399997472763, 257678.780099999159575 ], [ 349677.590999998152256, 257678.901799999177456 ], [ 349680.009800001978874, 257679.040399998426437 ], [ 349682.234099999070168, 257679.167899999767542 ], [ 349684.458400003612041, 257679.295299999415874 ], [ 349686.145000003278255, 257679.3918999992311 ], [ 349689.569600000977516, 257679.991300001740456 ], [ 349691.679899998009205, 257680.360599998384714 ], [ 349696.689800001680851, 257681.237500000745058 ], [ 349698.799999997019768, 257681.606800001114607 ], [ 349701.934600003063679, 257682.1554000005126 ], [ 349703.85869999974966, 257682.49210000038147 ], [ 349710.309199996292591, 257682.544900000095367 ], [ 349713.045900002121925, 257682.169799998402596 ], [ 349716.049300000071526, 257681.758099999278784 ], [ 349717.575000002980232, 257681.548900000751019 ], [ 349719.345499999821186, 257671.682700000703335 ], [ 349717.411200001835823, 257671.929900001734495 ], [ 349713.093999996781349, 257672.481600001454353 ], [ 349708.777500003576279, 257673.03319999948144 ], [ 349705.37950000166893, 257672.623799998313189 ], [ 349701.292199999094009, 257672.131299998611212 ], [ 349697.499899998307228, 257671.674300000071526 ], [ 349694.873099997639656, 257671.388099998235703 ], [ 349692.642499998211861, 257671.145100001245737 ], [ 349690.882600001990795, 257670.953299999237061 ], [ 349688.791799999773502, 257670.725499998778105 ], [ 349687.026900000870228, 257670.533100001513958 ], [ 349685.424999997019768, 257669.253499999642372 ], [ 349683.022299997508526, 257667.333999998867512 ], [ 349682.668700002133846, 257663.925900001078844 ], [ 349682.468099996447563, 257661.992300000041723 ], [ 349682.277099996805191, 257660.150699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304042000", "MAP": "D9-6877-T001", "PARCEL_NAM": "4X", "ACRE": ".02", "LONGITUDE": -65.01664969, "LATITUDE": 18.34965903, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.661142357599999, "SHAPE_Area": 216.95232188099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349736.509300000965595, 257730.677600000053644 ], [ 349744.972999997437, 257722.466299999505281 ], [ 349737.564699999988079, 257716.116300001740456 ], [ 349721.689699999988079, 257730.93299999833107 ], [ 349728.965700000524521, 257737.812199998646975 ], [ 349736.509300000965595, 257730.677600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "2-8-A", "ACRE": null, "LONGITUDE": -65.00784984000001, "LATITUDE": 18.35602527, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.580656586, "SHAPE_Area": 346.222433771 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350655.959499999880791, 258441.642099998891354 ], [ 350660.123700000345707, 258441.570300001651049 ], [ 350664.48929999768734, 258441.967199999839067 ], [ 350669.781000003218651, 258442.099500000476837 ], [ 350673.220600001513958, 258441.702599998563528 ], [ 350676.395599998533726, 258440.776599999517202 ], [ 350681.554999999701977, 258438.924499999731779 ], [ 350687.350500002503395, 258437.082100000232458 ], [ 350696.725500002503395, 258433.1064000017941 ], [ 350696.784800000488758, 258425.486900001764297 ], [ 350693.196699999272823, 258429.796399999409914 ], [ 350689.889399997889996, 258432.045299999415874 ], [ 350687.409699998795986, 258433.177299998700619 ], [ 350687.401100002229214, 258433.750500001013279 ], [ 350686.993699997663498, 258433.367300000041723 ], [ 350683.803999997675419, 258434.823499999940395 ], [ 350673.882100000977516, 258436.410999998450279 ], [ 350663.166400000452995, 258437.469300001859665 ], [ 350656.091300003230572, 258437.710799999535084 ], [ 350640.892700001597404, 258438.229600001126528 ], [ 350621.6266999989748, 258437.998500000685453 ], [ 350621.741999998688698, 258447.416400000452995 ], [ 350622.630699999630451, 258447.202899999916553 ], [ 350624.74889999628067, 258446.170699998736382 ], [ 350626.265399999916553, 258444.983899999409914 ], [ 350627.635899998247623, 258443.196800000965595 ], [ 350630.093400001525879, 258442.760999999940395 ], [ 350634.459100000560284, 258442.364100001752377 ], [ 350641.735100001096725, 258441.967199999839067 ], [ 350652.450800001621246, 258441.702599998563528 ], [ 350655.959499999880791, 258441.642099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01345757, "LATITUDE": 18.35197479, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 816.39004127600003, "SHAPE_Area": 3183.8674012199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349994.954099997878075, 258008.828499998897314 ], [ 350013.179200001060963, 258004.61939999833703 ], [ 350018.040399998426437, 258001.91499999910593 ], [ 350035.061099998652935, 257991.710700001567602 ], [ 350044.770999997854233, 257987.779399998486042 ], [ 350052.848499998450279, 257986.156800001859665 ], [ 350067.369400002062321, 257985.431200001388788 ], [ 350076.228000000119209, 257986.770300000905991 ], [ 350091.512000001966953, 257991.117300000041723 ], [ 350099.546300001442432, 257994.560499999672174 ], [ 350109.992399998009205, 257998.867899999022484 ], [ 350112.402400001883507, 257999.94310000166297 ], [ 350120.445699997246265, 258002.330899998545647 ], [ 350126.892599999904633, 258002.805900000035763 ], [ 350138.981899999082088, 258003.538100000470877 ], [ 350147.860299997031689, 258002.555300001055002 ], [ 350156.742399998009205, 258001.150400001555681 ], [ 350158.358599998056889, 258000.741399999707937 ], [ 350167.251400001347065, 257998.070000000298023 ], [ 350169.679300002753735, 257997.034400001168251 ], [ 350183.451399996876717, 257989.547699999064207 ], [ 350190.744199998676777, 257985.385499998927116 ], [ 350210.192800000309944, 257974.145700000226498 ], [ 350215.057599999010563, 257971.019099999219179 ], [ 350236.144000001251698, 257956.83729999884963 ], [ 350233.806000001728535, 257947.318999998271465 ], [ 350218.394299998879433, 257957.958599999547005 ], [ 350207.039399996399879, 257965.676100000739098 ], [ 350194.888999998569489, 257972.120600000023842 ], [ 350182.724200002849102, 257980.253699999302626 ], [ 350165.714299999177456, 257989.191500000655651 ], [ 350156.825099997222424, 257991.440699998289347 ], [ 350146.319600000977516, 257994.098999999463558 ], [ 350127.772699996829033, 257994.158300001174212 ], [ 350126.163599997758865, 257993.722899999469519 ], [ 350120.531999997794628, 257992.199200000613928 ], [ 350114.903999999165535, 257990.253299999982119 ], [ 350108.473300002515316, 257987.878600001335144 ], [ 350095.610100001096725, 257983.340399999171495 ], [ 350084.352300003170967, 257979.659600000828505 ], [ 350079.527000002563, 257978.142499998211861 ], [ 350065.02589999884367, 257976.546100001782179 ], [ 350054.540299996733665, 257976.882500000298023 ], [ 350045.658299997448921, 257978.287500001490116 ], [ 350034.335699997842312, 257982.205600000917912 ], [ 350017.322200000286102, 257991.565499998629093 ], [ 350006.789800003170967, 257997.390000000596046 ], [ 350002.74210000038147, 257999.256700001657009 ], [ 349983.32940000295639, 258006.274999998509884 ], [ 349979.356700003147125, 258006.809099998325109 ], [ 349973.258199997246265, 258004.8597999997437 ], [ 349969.289399996399879, 258003.536800000816584 ], [ 349965.320699997246265, 258002.213899999856949 ], [ 349959.235299997031689, 257999.038899999111891 ], [ 349948.564800001680851, 257993.058299999684095 ], [ 349939.446400001645088, 257987.8564000017941 ], [ 349910.267899997532368, 257968.946699999272823 ], [ 349887.0287000015378, 257951.868999999016523 ], [ 349884.636699996888638, 257948.68299999833107 ], [ 349884.697899997234344, 257941.506400000303984 ], [ 349879.015900000929832, 257945.892799999564886 ], [ 349875.767300002276897, 257948.610500000417233 ], [ 349881.366499997675419, 257953.933600001037121 ], [ 349887.773900002241135, 257959.052299998700619 ], [ 349893.378499999642372, 257963.742199998348951 ], [ 349900.593900002539158, 257968.656399998813868 ], [ 349907.807599999010563, 257973.781700000166893 ], [ 349913.419399999082088, 257977.627300001680851 ], [ 349920.633100003004074, 257982.752599999308586 ], [ 349931.854900002479553, 257990.654899999499321 ], [ 349940.365299999713898, 257996.990499999374151 ], [ 349947.064400002360344, 258001.684799998998642 ], [ 349955.001900002360344, 258005.918099999427795 ], [ 349962.254399999976158, 258009.108399998396635 ], [ 349975.110299997031689, 258010.680599998682737 ], [ 349984.106100000441074, 258010.680599998682737 ], [ 349994.954099997878075, 258008.828499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602015500", "MAP": null, "PARCEL_NAM": "9 REM", "ACRE": ".0015", "LONGITUDE": -64.97338831, "LATITUDE": 18.36360722, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 11.6312056754, "SHAPE_Area": 4.97562825251 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354294.789499998092651, 259307.072000000625849 ], [ 354294.47580000013113, 259304.749400001019239 ], [ 354292.176500000059605, 259306.683100000023842 ], [ 354290.628300003707409, 259307.985199999064207 ], [ 354292.487700000405312, 259307.577100001275539 ], [ 354294.789499998092651, 259307.072000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602016100", "MAP": "D9-3474-T86", "PARCEL_NAM": "9-BA", "ACRE": ".01", "LONGITUDE": -64.97339541, "LATITUDE": 18.36366548, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.819656719100003, "SHAPE_Area": 70.5201326416 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354286.421800002455711, 259311.522799998521805 ], [ 354296.749700002372265, 259321.584499999880791 ], [ 354296.359999999403954, 259318.699700001627207 ], [ 354296.187299996614456, 259317.420899998396635 ], [ 354294.789499998092651, 259307.072000000625849 ], [ 354292.487700000405312, 259307.577100001275539 ], [ 354290.628300003707409, 259307.985199999064207 ], [ 354288.887199997901917, 259309.449299998581409 ], [ 354286.421800002455711, 259311.522799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97145095, "LATITUDE": 18.35868383, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.346029853, "SHAPE_Area": 580.83313396300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354497.885899998247623, 258798.939399998635054 ], [ 354503.543700002133846, 258795.822799999266863 ], [ 354508.057800002396107, 258793.654399998486042 ], [ 354512.010300002992153, 258790.266600001603365 ], [ 354513.597800001502037, 258786.694699998944998 ], [ 354514.259300000965595, 258783.916499998420477 ], [ 354515.185300000011921, 258780.212400000542402 ], [ 354515.44990000128746, 258777.8310999982059 ], [ 354515.3175999969244, 258775.44990000128746 ], [ 354515.3175999969244, 258773.333200000226498 ], [ 354515.053099997341633, 258771.877999998629093 ], [ 354514.788500003516674, 258768.967599999159575 ], [ 354514.259300000965595, 258765.924800001084805 ], [ 354514.259300000965595, 258763.675900001078844 ], [ 354512.167499996721745, 258759.9364 ], [ 354511.936700001358986, 258758.735500000417233 ], [ 354509.580700002610683, 258751.328000001609325 ], [ 354508.212200000882149, 258748.95380000025034 ], [ 354505.45889999717474, 258744.177000001072884 ], [ 354503.652000002563, 258741.751299999654293 ], [ 354500.577899999916553, 258738.295800000429153 ], [ 354499.02250000089407, 258736.547499999403954 ], [ 354497.624499998986721, 258734.975900001823902 ], [ 354495.258599996566772, 258733.370999999344349 ], [ 354494.012999996542931, 258732.526000000536442 ], [ 354492.188299998641014, 258731.288100000470877 ], [ 354490.273000001907349, 258729.988800000399351 ], [ 354488.805399999022484, 258728.993099998682737 ], [ 354487.212499998509884, 258726.657999999821186 ], [ 354486.964100003242493, 258725.295000001788139 ], [ 354483.435699999332428, 258736.675700001418591 ], [ 354486.319899998605251, 258736.78319999948144 ], [ 354487.752199999988079, 258737.45380000025034 ], [ 354489.532600000500679, 258738.287200000137091 ], [ 354490.998099997639656, 258739.603999998420477 ], [ 354491.905100002884865, 258740.4189000017941 ], [ 354492.804700002074242, 258741.227099999785423 ], [ 354493.229000002145767, 258741.608399998396635 ], [ 354495.934500001370907, 258744.039099998772144 ], [ 354496.685199998319149, 258745.182799998670816 ], [ 354497.470399998128414, 258746.379099998623133 ], [ 354498.215700000524521, 258747.514600001275539 ], [ 354499.061599999666214, 258748.803300000727177 ], [ 354500.150200001895428, 258750.461800001561642 ], [ 354501.506800003349781, 258752.528499998152256 ], [ 354502.660800002515316, 258755.277800001204014 ], [ 354502.751000002026558, 258755.346400000154972 ], [ 354504.601999998092651, 258756.135200001299381 ], [ 354505.527999997138977, 258757.855000000447035 ], [ 354506.321800000965595, 258759.574799999594688 ], [ 354507.3800999969244, 258761.559200000017881 ], [ 354507.64469999819994, 258763.543600000441074 ], [ 354508.306199997663498, 258765.660300001502037 ], [ 354508.835299998521805, 258767.909200001507998 ], [ 354508.835299998521805, 258769.8935999982059 ], [ 354508.967600002884865, 258772.010299999266863 ], [ 354509.099899999797344, 258774.259199999272823 ], [ 354509.232199996709824, 258776.111299999058247 ], [ 354509.232199996709824, 258778.09569999948144 ], [ 354509.232199996709824, 258780.080099999904633 ], [ 354508.703000001609325, 258782.593600001186132 ], [ 354508.570699997246265, 258784.710299998521805 ], [ 354507.777000002563, 258786.562399998307228 ], [ 354506.851000003516674, 258787.885299999266863 ], [ 354505.263400003314018, 258789.208200000226498 ], [ 354503.411399997770786, 258791.192600000649691 ], [ 354499.804200001060963, 258793.682599999010563 ], [ 354490.975900001823902, 258797.278000000864267 ], [ 354489.652999997138977, 258794.764499999582767 ], [ 354486.21339999884367, 258795.955099999904633 ], [ 354487.933200001716614, 258802.569699998944998 ], [ 354492.431100003421307, 258801.114500001072884 ], [ 354497.885899998247623, 258798.939399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96526363, "LATITUDE": 18.35923814, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.27493658899999, "SHAPE_Area": 620.82318926999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355129.861100003123283, 258765.84180000051856 ], [ 355120.612700000405312, 258774.271899998188019 ], [ 355128.65429999679327, 258776.870900001376867 ], [ 355132.653499998152256, 258780.703299999237061 ], [ 355141.375399999320507, 258798.084300000220537 ], [ 355144.527000002563, 258806.765000000596046 ], [ 355176.909699998795986, 258886.401200000196695 ], [ 355178.52589999884367, 258885.992199998348951 ], [ 355183.410099998116493, 258884.756400000303984 ], [ 355129.861100003123283, 258765.84180000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95502321, "LATITUDE": 18.36289901, "OBJECTID_1": 2970, "PARCEL_NO_": "102702013000", "Tax_Legal_": "HULL BAY 6EA-2 LITTLE NORTHSIDE", "Name": "RAYMOND LORENZO HYNDMAN REVOC LIV TR", "Address": "355 Falcon Ridge Dr", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 55600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.384886570500001, "SHAPE_Area": 205.93789984700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356243.639300003647804, 259232.177299998700619 ], [ 356234.392099998891354, 259231.840300001204014 ], [ 356226.887800000607967, 259254.909299999475479 ], [ 356233.253200002014637, 259257.973200000822544 ], [ 356243.639300003647804, 259232.177299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702013000", "MAP": "D9-1574-T80", "PARCEL_NAM": "6EA-2", "ACRE": ".40", "LONGITUDE": -64.95503612, "LATITUDE": 18.36350794, "OBJECTID_1": 2970, "PARCEL_NO_": "102702013000", "Tax_Legal_": "HULL BAY 6EA-2 LITTLE NORTHSIDE", "Name": "RAYMOND LORENZO HYNDMAN REVOC LIV TR", "Address": "355 Falcon Ridge Dr", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 55600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.43753260700001, "SHAPE_Area": 1384.40096159 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356258.808899998664856, 259318.756099998950958 ], [ 356249.354299999773502, 259308.562699999660254 ], [ 356241.099299997091293, 259293.745999999344349 ], [ 356229.026699997484684, 259272.751299999654293 ], [ 356225.525600001215935, 259284.655200000852346 ], [ 356221.715599998831749, 259300.953600000590086 ], [ 356217.905599996447563, 259313.23030000180006 ], [ 356215.365599997341633, 259325.295299999415874 ], [ 356213.883900001645088, 259331.645300000905991 ], [ 356214.307199999690056, 259336.090300001204014 ], [ 356218.752199999988079, 259337.360300000756979 ], [ 356222.169399999082088, 259335.508400000631809 ], [ 356235.10809999704361, 259331.18129999935627 ], [ 356248.867600001394749, 259325.172200001776218 ], [ 356251.304499998688698, 259323.081199999898672 ], [ 356258.808899998664856, 259318.756099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011500", "MAP": null, "PARCEL_NAM": "PORTION OF 6FA", "ACRE": null, "LONGITUDE": -64.95385514, "LATITUDE": 18.36220779, "OBJECTID_1": 2955, "PARCEL_NO_": "102702011500", "Tax_Legal_": "HULL BAY 6FA LITTLE NORTHSIDE", "Name": "DELAGARDE, AIMERY & DENA ENJO", "Address": "PO Box 303852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 147700, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.14741670199999, "SHAPE_Area": 908.12748912500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356399.288699999451637, 259179.271099999547005 ], [ 356395.624799996614456, 259176.039099998772144 ], [ 356389.274800002574921, 259174.319299999624491 ], [ 356385.041400000452995, 259172.334899999201298 ], [ 356378.691399998962879, 259170.350499998778105 ], [ 356372.738300003111362, 259167.837000001221895 ], [ 356369.166400000452995, 259166.117199998348951 ], [ 356366.388300001621246, 259164.794300001114607 ], [ 356361.493500001728535, 259162.809900000691414 ], [ 356356.334100000560284, 259159.899500001221895 ], [ 356351.968500003218651, 259158.311999998986721 ], [ 356348.793399997055531, 259157.121300000697374 ], [ 356343.634099997580051, 259155.5337999984622 ], [ 356338.4746999964118, 259154.475499998778105 ], [ 356331.860100001096725, 259153.813999999314547 ], [ 356324.716300003230572, 259152.755699999630451 ], [ 356318.498599998652935, 259152.623399998992682 ], [ 356312.942299999296665, 259152.623399998992682 ], [ 356308.389399997889996, 259153.407000001519918 ], [ 356392.148800000548363, 259187.810100000351667 ], [ 356399.288699999451637, 259179.271099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9542202, "LATITUDE": 18.36209126, "OBJECTID_1": 2969, "PARCEL_NO_": "102702012900", "Tax_Legal_": "HULL 6FA-5 LITTLE NORTHSIDE", "Name": "GOLUB, ROBERT S", "Address": "PO Box 303467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 113300, "Improved_V": 109300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.94084578500002, "SHAPE_Area": 683.46665894800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356401.22860000282526, 259173.834300000220537 ], [ 356383.700900003314018, 259168.595400001853704 ], [ 356374.810900002717972, 259165.579199999570847 ], [ 356366.079599998891354, 259160.657900001853704 ], [ 356354.808300003409386, 259155.895399998873472 ], [ 356350.204599998891354, 259153.355399999767542 ], [ 356343.219499997794628, 259150.021699998527765 ], [ 356336.234499998390675, 259149.386700000613928 ], [ 356327.027000002563, 259147.957899998873472 ], [ 356315.279500000178814, 259148.116700001060963 ], [ 356306.389499999582767, 259148.116700001060963 ], [ 356298.293200001120567, 259148.116700001060963 ], [ 356287.974399998784065, 259147.799199998378754 ], [ 356277.973200000822544, 259147.322900000959635 ], [ 356262.73309999704361, 259146.846700001507998 ], [ 356252.255599997937679, 259146.21169999986887 ], [ 356248.921899996697903, 259146.05290000140667 ], [ 356254.160599999129772, 259153.037900000810623 ], [ 356293.689499996602535, 259152.085400000214577 ], [ 356304.960699997842312, 259151.926699999719858 ], [ 356308.389399997889996, 259153.407000001519918 ], [ 356312.942299999296665, 259152.623399998992682 ], [ 356318.498599998652935, 259152.623399998992682 ], [ 356324.716300003230572, 259152.755699999630451 ], [ 356331.860100001096725, 259153.813999999314547 ], [ 356338.4746999964118, 259154.475499998778105 ], [ 356343.634099997580051, 259155.5337999984622 ], [ 356348.793399997055531, 259157.121300000697374 ], [ 356351.968500003218651, 259158.311999998986721 ], [ 356356.334100000560284, 259159.899500001221895 ], [ 356361.493500001728535, 259162.809900000691414 ], [ 356366.388300001621246, 259164.794300001114607 ], [ 356369.166400000452995, 259166.117199998348951 ], [ 356372.738300003111362, 259167.837000001221895 ], [ 356378.691399998962879, 259170.350499998778105 ], [ 356385.041400000452995, 259172.334899999201298 ], [ 356389.274800002574921, 259174.319299999624491 ], [ 356395.624799996614456, 259176.039099998772144 ], [ 356399.288699999451637, 259179.271099999547005 ], [ 356401.22860000282526, 259173.834300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012900", "MAP": "C9-160-T73", "PARCEL_NAM": "6FA-5", "ACRE": "1.00", "LONGITUDE": -64.9550315, "LATITUDE": 18.36219594, "OBJECTID_1": 2969, "PARCEL_NO_": "102702012900", "Tax_Legal_": "HULL 6FA-5 LITTLE NORTHSIDE", "Name": "GOLUB, ROBERT S", "Address": "PO Box 303467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 113300, "Improved_V": 109300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 329.66433303500003, "SHAPE_Area": 4600.20389832 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356308.389399997889996, 259153.407000001519918 ], [ 356304.960699997842312, 259151.926699999719858 ], [ 356293.689499996602535, 259152.085400000214577 ], [ 356254.160599999129772, 259153.037900000810623 ], [ 356248.921899996697903, 259146.05290000140667 ], [ 356243.524400003254414, 259143.989100001752377 ], [ 356236.380599997937679, 259142.084100000560284 ], [ 356227.490599997341633, 259140.020399998873472 ], [ 356218.918099999427795, 259137.63910000026226 ], [ 356214.223700001835823, 259136.633200000971556 ], [ 356214.472999997437, 259124.939100001007318 ], [ 356210.151799999177456, 259124.747099999338388 ], [ 356207.329300001263618, 259124.621599998325109 ], [ 356197.962999999523163, 259124.621599998325109 ], [ 356197.486800000071526, 259129.542899999767542 ], [ 356196.375500001013279, 259136.369100000709295 ], [ 356196.05799999833107, 259140.6554000005126 ], [ 356194.470499999821186, 259145.735399998724461 ], [ 356193.994300000369549, 259147.799199998378754 ], [ 356192.406700000166893, 259151.926699999719858 ], [ 356191.136699996888638, 259154.784200001507998 ], [ 356186.391800001263618, 259160.389800000935793 ], [ 356225.621200002729893, 259210.125399999320507 ], [ 356232.146499998867512, 259205.556400001049042 ], [ 356280.002999998629093, 259172.595300000160933 ], [ 356308.389399997889996, 259153.407000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011700", "MAP": "G9-1101-T68", "PARCEL_NAM": "6FA-1", "ACRE": ".325", "LONGITUDE": -64.95357985, "LATITUDE": 18.36203178, "OBJECTID_1": 2957, "PARCEL_NO_": "102702011700", "Tax_Legal_": "6FA-1 HULL NO.4 LITTLE NORTHSIDE QTR", "Name": "PETERSEN, RAYMOND A", "Address": "PO Box 11544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36000, "Improved_V": 30200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.32253038, "SHAPE_Area": 1439.78825512 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356406.100699998438358, 259136.897100001573563 ], [ 356405.142099998891354, 259128.763700000941753 ], [ 356378.839400000870228, 259128.874699998646975 ], [ 356370.974399998784065, 259128.907900001853704 ], [ 356370.309799998998642, 259136.442499998956919 ], [ 356368.074799999594688, 259161.782499998807907 ], [ 356374.810900002717972, 259165.579199999570847 ], [ 356383.700900003314018, 259168.595400001853704 ], [ 356401.22860000282526, 259173.834300000220537 ], [ 356404.245300002396107, 259165.37950000166893 ], [ 356405.103699997067451, 259159.264899998903275 ], [ 356406.037699997425079, 259144.28489999845624 ], [ 356406.100699998438358, 259136.897100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95409108, "LATITUDE": 18.36131968, "OBJECTID_1": 2959, "PARCEL_NO_": "102702011900", "Tax_Legal_": "HULL BAY 4E-4 REM(ROW) No.4 LITTLE NORTHSIDE QTR.", "Name": "SPENCELY, M.J. & K.W. & TURNER, J.", "Address": "PO Box 9774", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.98911647800003, "SHAPE_Area": 1146.14679591 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356408.182499997317791, 259061.71339999884367 ], [ 356409.464699998497963, 259053.79839999973774 ], [ 356404.593400001525879, 259054.488800000399351 ], [ 356379.392499998211861, 259058.060400001704693 ], [ 356346.690499998629093, 259062.695199999958277 ], [ 356318.143100000917912, 259066.741200000047684 ], [ 356291.864699997007847, 259070.465599998831749 ], [ 356288.1233000010252, 259070.995900001376867 ], [ 356268.875900000333786, 259087.374699998646975 ], [ 356279.353399999439716, 259093.407200001180172 ], [ 356288.273100003600121, 259085.7635000012815 ], [ 356298.959100000560284, 259076.606100000441074 ], [ 356319.662699997425079, 259073.78319999948144 ], [ 356349.890699997544289, 259069.66160000115633 ], [ 356380.01519999653101, 259065.554099999368191 ], [ 356403.58839999884367, 259062.339800000190735 ], [ 356408.182499997317791, 259061.71339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702015000", "MAP": "D9-5543-T93", "PARCEL_NAM": "4E-4-2", "ACRE": ".23", "LONGITUDE": -64.95390449, "LATITUDE": 18.36144423, "OBJECTID_1": 2986, "PARCEL_NO_": "102702015000", "Tax_Legal_": "4-E-4-2 HULL LITTLE NORTHSIDE QTR", "Name": "CLAUDE, RICHARDSON", "Address": "14PS Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32800, "Improved_V": 386400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.13848728400001, "SHAPE_Area": 1057.9562026900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356333.901900000870228, 259071.841699998825788 ], [ 356340.627099998295307, 259102.507500000298023 ], [ 356354.517300002276897, 259099.506700001657009 ], [ 356371.710299998521805, 259095.792300000786781 ], [ 356372.298299998044968, 259066.606300000101328 ], [ 356349.890699997544289, 259069.66160000115633 ], [ 356333.901900000870228, 259071.841699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702014900", "MAP": "D9-5242-T92", "PARCEL_NAM": "4E-4-1", "ACRE": null, "LONGITUDE": -64.95357925, "LATITUDE": 18.36139008, "OBJECTID_1": 2985, "PARCEL_NO_": "102702014900", "Tax_Legal_": "HULL ESTATE 4E-4-1 No.4 LITTLE NORTHSIDE QTR.", "Name": "PAUL, SHAVERN I", "Address": "PO Box 502812", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.725844263, "SHAPE_Area": 942.38370605 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356372.298299998044968, 259066.606300000101328 ], [ 356371.710299998521805, 259095.792300000786781 ], [ 356382.734899997711182, 259093.410599999129772 ], [ 356403.784500002861023, 259088.863000001758337 ], [ 356408.182499997317791, 259061.71339999884367 ], [ 356403.58839999884367, 259062.339800000190735 ], [ 356380.01519999653101, 259065.554099999368191 ], [ 356372.298299998044968, 259066.606300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702015700", "MAP": "D9-6579-T99", "PARCEL_NAM": "4E-4-5", "ACRE": ".25", "LONGITUDE": -64.95445153, "LATITUDE": 18.36156199, "OBJECTID_1": 2993, "PARCEL_NO_": "102702015700", "Tax_Legal_": "HULL BAY 4E-4-5 No.4 LITTLE NORTHSIDE QTR.", "Name": "DONNA M. MITCHELL", "Address": "16339 Hard Labor Coral Bay", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.28016685199999, "SHAPE_Area": 888.53699024000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356279.353399999439716, 259093.407200001180172 ], [ 356283.365099996328354, 259114.878400001674891 ], [ 356310.947700001299381, 259108.91950000077486 ], [ 356308.561700001358986, 259075.296799998730421 ], [ 356298.959100000560284, 259076.606100000441074 ], [ 356288.273100003600121, 259085.7635000012815 ], [ 356279.353399999439716, 259093.407200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702015600", "MAP": "D9-6579-T99", "PARCEL_NAM": "4E-4-7", "ACRE": ".33", "LONGITUDE": -64.95510484, "LATITUDE": 18.36157037, "OBJECTID_1": 2992, "PARCEL_NO_": "102702015600", "Tax_Legal_": "4E-4-7 ESTATE HULL #4 LITTLE NORTHSIDE QTR.", "Name": "SHIRLEY LEDEE TRUST", "Address": "7484 St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.69939795799999, "SHAPE_Area": 2586.2589963300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356268.875900000333786, 259087.374699998646975 ], [ 356288.1233000010252, 259070.995900001376867 ], [ 356212.172200001776218, 259081.760299999266863 ], [ 356194.730800002813339, 259084.232200000435114 ], [ 356191.066200003027916, 259124.64130000025034 ], [ 356197.962999999523163, 259124.621599998325109 ], [ 356207.329300001263618, 259124.621599998325109 ], [ 356210.151799999177456, 259124.747099999338388 ], [ 356214.472999997437, 259124.939100001007318 ], [ 356268.875900000333786, 259087.374699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702015200", "MAP": "D9-5543-T93", "PARCEL_NAM": "4E-4-4", "ACRE": ".23", "LONGITUDE": -64.9542638, "LATITUDE": 18.36151226, "OBJECTID_1": 2988, "PARCEL_NO_": "102702015200", "Tax_Legal_": "HULL 4-E-4-4 LITTLE NORTHSIDE QTR", "Name": "CHARLESWELL, LORYIEL", "Address": "PO Box 8675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011675, "Country": "United States", "Land_Value": 37300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.076812524600001, "SHAPE_Area": 440.292755484 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356324.027900002896786, 259106.093600001186132 ], [ 356321.752499997615814, 259073.498199999332428 ], [ 356319.662699997425079, 259073.78319999948144 ], [ 356308.561700001358986, 259075.296799998730421 ], [ 356310.947700001299381, 259108.91950000077486 ], [ 356324.027900002896786, 259106.093600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702015100", "MAP": "D9-5543-T93", "PARCEL_NAM": "4E-4-3", "ACRE": ".23", "LONGITUDE": -64.95413271, "LATITUDE": 18.36149668, "OBJECTID_1": 2987, "PARCEL_NO_": "102702015100", "Tax_Legal_": "HULL 4-E-4-3 LITTLE NORTHSIDE QTR", "Name": "SPROTTE, DOUGLAS & SIGRID TEJO", "Address": "PO BOX 305027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 236200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.313263632399995, "SHAPE_Area": 466.46439331699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356321.752499997615814, 259073.498199999332428 ], [ 356324.027900002896786, 259106.093600001186132 ], [ 356329.150100000202656, 259104.986999999731779 ], [ 356340.627099998295307, 259102.507500000298023 ], [ 356333.901900000870228, 259071.841699998825788 ], [ 356321.752499997615814, 259073.498199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95531121, "LATITUDE": 18.36122936, "OBJECTID_1": 2960, "PARCEL_NO_": "102702012000", "Tax_Legal_": "HULL BAY 4D LITTLE NORTHSIDE", "Name": "DAVID, JOHNANNES", "Address": "44 Wayne St", "City": "Piscataway", "State": "New Jersey", "Zip": 8854, "Country": "United States", "Land_Value": 252200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.412144526200002, "SHAPE_Area": 121.693307593 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356215.693300001323223, 259054.489900000393391 ], [ 356211.479699999094009, 259055.547899998724461 ], [ 356207.034699998795986, 259056.500399999320507 ], [ 356203.383400000631809, 259056.182900000363588 ], [ 356201.002199999988079, 259055.071699999272823 ], [ 356197.53999999910593, 259053.25620000064373 ], [ 356196.819499999284744, 259061.200300000607967 ], [ 356199.414700001478195, 259062.374200001358986 ], [ 356204.970899999141693, 259062.532900001853704 ], [ 356211.003499999642372, 259062.056699998676777 ], [ 356214.82769999653101, 259061.448899999260902 ], [ 356215.693300001323223, 259054.489900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702014700", "MAP": "D9-4477-T88", "PARCEL_NAM": "4E-1A", "ACRE": ".23", "LONGITUDE": -64.9534517, "LATITUDE": 18.36031105, "OBJECTID_1": 2984, "PARCEL_NO_": "102702014700", "Tax_Legal_": "HULL 4E-1A LT. NORTHSIDE", "Name": "MOHANANI, MINERVA", "Address": "PO Box 302444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39000, "Improved_V": 302000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.29305135199999, "SHAPE_Area": 987.660128085 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356380.260499998927116, 258947.223799999803305 ], [ 356404.613200001418591, 258983.16330000013113 ], [ 356407.788199998438358, 258981.099599998444319 ], [ 356411.439499996602535, 258979.512099999934435 ], [ 356417.076899997889996, 258976.16609999909997 ], [ 356416.547100000083447, 258951.853500001132488 ], [ 356416.649599999189377, 258939.822000000625849 ], [ 356392.426100000739098, 258943.63459999859333 ], [ 356382.725100003182888, 258946.510499998927116 ], [ 356380.260499998927116, 258947.223799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104024000", "MAP": "D9-6681-T99", "PARCEL_NAM": "11G-1", "ACRE": ".52", "LONGITUDE": -64.95023622, "LATITUDE": 18.36489515, "OBJECTID_1": 608, "PARCEL_NO_": "101104024000", "Tax_Legal_": "HULL ESTATE 11G-1 No.4 LITTLE NORTHSIDE QTR.", "Name": "SCARING, DENISE", "Address": "2115 Central Dr S", "City": "East Meadow", "State": "New York", "Zip": 11554, "Country": "United States", "Land_Value": 122400, "Improved_V": 77500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.20025118300001, "SHAPE_Area": 2857.11199747 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356770.932599999010563, 259474.044199999421835 ], [ 356767.115000002086163, 259448.892799999564886 ], [ 356764.850699998438358, 259430.720199998468161 ], [ 356755.146200001239777, 259434.018300000578165 ], [ 356743.809299997985363, 259439.625 ], [ 356712.203100003302097, 259458.1537000015378 ], [ 356709.241400003433228, 259511.046900000423193 ], [ 356770.932599999010563, 259474.044199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101104026400", "MAP": "D9-6681-T99", "PARCEL_NAM": "11G-REM", "ACRE": ".50", "LONGITUDE": -64.9503321, "LATITUDE": 18.36557393, "OBJECTID_1": 630, "PARCEL_NO_": "101104026400", "Tax_Legal_": "11G-1 HULL NO.4A LITLE NORTHSIDE QTR.", "Name": "LISA E. L. KINGHT REV. FAM. TRUST", "Address": "PO Box 11985", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81200, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.449051502, "SHAPE_Area": 2071.4995480799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356779.482699997723103, 259536.105999998748302 ], [ 356773.37780000269413, 259536.217999998480082 ], [ 356768.086199998855591, 259536.217999998480082 ], [ 356763.323700003325939, 259535.424300000071526 ], [ 356759.354900002479553, 259535.159699998795986 ], [ 356753.004900000989437, 259533.043000001460314 ], [ 356747.448600001633167, 259530.926399998366833 ], [ 356738.981899999082088, 259527.486800000071526 ], [ 356727.075699999928474, 259520.87220000103116 ], [ 356709.241400003433228, 259511.046900000423193 ], [ 356708.398800000548363, 259526.094700001180172 ], [ 356704.695200003683567, 259582.215199999511242 ], [ 356750.14360000193119, 259547.9679000005126 ], [ 356763.899499997496605, 259542.380899999290705 ], [ 356780.045500002801418, 259540.190999999642372 ], [ 356779.482699997723103, 259536.105999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702020900", "MAP": "D9-7780-T006", "PARCEL_NAM": "5H-1", "ACRE": ".425", "LONGITUDE": -64.95372247, "LATITUDE": 18.36302414, "OBJECTID_1": 3012, "PARCEL_NO_": "102702020900", "Tax_Legal_": "HULL 5H-1 No.4 LITTLE NORTHSIDE QTR.", "Name": "LACATENA, MICHAEL A. & ELISA BRYAN-LACATENA", "Address": "7636 Lower Hull 5H Rem", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81700, "Improved_V": 225800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.99223109100001, "SHAPE_Area": 1835.8316348799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356382.875900000333786, 259233.048099998384714 ], [ 356367.396600000560284, 259231.361299999058247 ], [ 356354.362499997019768, 259246.875599998980761 ], [ 356351.079700000584126, 259253.603700000792742 ], [ 356351.063500002026558, 259255.503400001674891 ], [ 356349.420299999415874, 259259.078499998897314 ], [ 356347.290899999439716, 259262.452199999243021 ], [ 356381.545199997723103, 259289.951499998569489 ], [ 356391.430200003087521, 259281.235100001096725 ], [ 356397.357600003480911, 259276.010000001639128 ], [ 356382.875900000333786, 259233.048099998384714 ] ] ], [ [ [ 356355.620800003409386, 259227.026599999517202 ], [ 356352.64580000191927, 259225.073300000280142 ], [ 356343.097499996423721, 259244.039200000464916 ], [ 356334.458499997854233, 259253.047499999403954 ], [ 356339.487400002777576, 259256.7331000007689 ], [ 356351.263099998235703, 259232.073699999600649 ], [ 356355.620800003409386, 259227.026599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702023100", "MAP": "D9-7780-T006", "PARCEL_NAM": "5H-1D", "ACRE": ".476", "LONGITUDE": -64.95356226, "LATITUDE": 18.3635346, "OBJECTID_1": 3032, "PARCEL_NO_": "102702023100", "Tax_Legal_": "HULL 5H-1D No.4 LITTLE NORTHSIDE QTR.", "Name": "FRANCIS J. BRYAN & CLARA I. FAM REVOC LIV TRUST", "Address": "7636 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83400, "Improved_V": 280800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.186172341, "SHAPE_Area": 2342.2904289399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356414.274800002574921, 259326.197200000286102 ], [ 356397.357600003480911, 259276.010000001639128 ], [ 356391.430200003087521, 259281.235100001096725 ], [ 356353.582800000905991, 259314.608399998396635 ], [ 356387.396899998188019, 259344.67119999974966 ], [ 356392.19879999756813, 259348.932300001382828 ], [ 356416.526600003242493, 259332.877199999988079 ], [ 356414.274800002574921, 259326.197200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702027000", "MAP": "D9-3892-T87", "PARCEL_NAM": "5D-1", "ACRE": "1.00", "LONGITUDE": -64.95229519, "LATITUDE": 18.36394461, "OBJECTID_1": 3046, "PARCEL_NO_": "102702027000", "Tax_Legal_": "HULL 5D-1 LT. NORTHSIDE", "Name": "SCOTT, MARK C and SYLVIE J", "Address": "7632 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 158100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.78988453, "SHAPE_Area": 3651.2148973499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356520.524700000882149, 259335.628299999982119 ], [ 356483.907499998807907, 259334.659699998795986 ], [ 356491.963899999856949, 259384.217700000852346 ], [ 356492.974200002849102, 259390.432399999350309 ], [ 356555.818499997258186, 259387.184500001370907 ], [ 356559.771499998867512, 259366.769099999219179 ], [ 356558.481499999761581, 259361.093100000172853 ], [ 356553.578199997544289, 259336.5320999994874 ], [ 356520.524700000882149, 259335.628299999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702033900", "MAP": "G9-1615-T70", "PARCEL_NAM": "3JA-2", "ACRE": null, "LONGITUDE": -64.9504993, "LATITUDE": 18.35989398, "OBJECTID_1": 3081, "PARCEL_NO_": "102702033900", "Tax_Legal_": "ST PETER 3JA-2 LITTLE NORTHSIDE", "Name": "WILLIAMS-STOKES, ANGELA E", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1600, "Improved_V": 57200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.056086309299999, "SHAPE_Area": 140.21488870600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356721.682899996638298, 258928.487300001084805 ], [ 356713.014600001275539, 258897.487100001424551 ], [ 356711.333099998533726, 258897.693199999630451 ], [ 356710.118600003421307, 258897.820700000971556 ], [ 356715.901199996471405, 258929.394600000232458 ], [ 356721.682899996638298, 258928.487300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102702034000", "MAP": "G9-1615-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95027202, "LATITUDE": 18.3599965, "OBJECTID_1": 3082, "PARCEL_NO_": "102702034000", "Tax_Legal_": "ST PETER 3JA 2 1 LITTLE NORTHSIDE QTR", "Name": "MC ALLISTER, LEAH", "Address": "PO Box 301918", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.12786183, "SHAPE_Area": 231.16127665499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356715.901199996471405, 258929.394600000232458 ], [ 356715.745999999344349, 258935.866799999028444 ], [ 356766.774599999189377, 258920.929800000041723 ], [ 356766.808600001037121, 258916.934500001370907 ], [ 356731.242700003087521, 258926.986999999731779 ], [ 356729.809399999678135, 258927.212000001221895 ], [ 356721.682899996638298, 258928.487300001084805 ], [ 356715.901199996471405, 258929.394600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702042200", "MAP": "A9-157-T71", "PARCEL_NAM": "14-42", "ACRE": null, "LONGITUDE": -64.95821152000001, "LATITUDE": 18.36402732, "OBJECTID_1": 3115, "PARCEL_NO_": "102702042200", "Tax_Legal_": "BONNE RESOLUTION 14-42 REM&42-1 No.5 LITTLE NORTHSIDE QTR.", "Name": "INDUSTRIOUS, JR., JULIAN & AKEDA", "Address": "PO Box 304985", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.09882661499999, "SHAPE_Area": 686.25825792199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355914.178800001740456, 259369.872499998658895 ], [ 355912.252300001680851, 259367.380100000649691 ], [ 355903.519500002264977, 259351.265500001609325 ], [ 355900.332000002264977, 259346.806499999016523 ], [ 355880.042900003492832, 259362.050299998372793 ], [ 355892.379699997603893, 259385.118400000035763 ], [ 355914.178800001740456, 259369.872499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703017500", "MAP": "D9-6674-T99", "PARCEL_NAM": "3M", "ACRE": null, "LONGITUDE": -64.95861513, "LATITUDE": 18.3541572, "OBJECTID_1": 3252, "PARCEL_NO_": "102703017500", "Tax_Legal_": "BONNE RESOLUTION 3M No.5 LITTLE NORTHSIDE QTR.", "Name": "RADLOFF, ROBERT B. & MARGARET M. SHEAHAN", "Address": "PO BOX 306117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.872949487900001, "SHAPE_Area": 180.94936738300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355880.428800001740456, 258275.554900001734495 ], [ 355879.053000003099442, 258269.945599999278784 ], [ 355844.178900003433228, 258271.247400000691414 ], [ 355846.673900000751019, 258276.081500001251698 ], [ 355880.428800001740456, 258275.554900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013300", "MAP": "D9-6674-T99", "PARCEL_NAM": "3A", "ACRE": ".16", "LONGITUDE": -64.95790216, "LATITUDE": 18.35503403, "OBJECTID_1": 3211, "PARCEL_NO_": "102703013300", "Tax_Legal_": "BONNE RESOLUTION 3A LITTLE NORTHSIDE QTR", "Name": "LA PLACE, AGNES", "Address": "7914 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 113500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.403829192700002, "SHAPE_Area": 563.38044221600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355955.032399997115135, 258366.567099999636412 ], [ 355930.192100003361702, 258355.870999999344349 ], [ 355921.328599996864796, 258375.847100000828505 ], [ 355943.024499997496605, 258385.769000001251698 ], [ 355955.032399997115135, 258366.567099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013700", "MAP": "D9-6674-T99", "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.95779503, "LATITUDE": 18.3546059, "OBJECTID_1": 3215, "PARCEL_NO_": "102703013700", "Tax_Legal_": "3 REM ESTATE BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "LAPLACE, AGNES GERTRUDE & GENE ANTHONY", "Address": "4 Abc-3 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.48334076499998, "SHAPE_Area": 2085.5356181699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355959.559600003063679, 258266.061799999326468 ], [ 355936.145300000905991, 258286.867600001394749 ], [ 355930.192100003361702, 258355.870999999344349 ], [ 355955.032399997115135, 258366.567099999636412 ], [ 355955.069200001657009, 258366.508299998939037 ], [ 355966.106100000441074, 258338.151099998503923 ], [ 355982.666799999773502, 258295.601199999451637 ], [ 355980.916299998760223, 258293.550400000065565 ], [ 355972.476899996399879, 258307.884799998253584 ], [ 355956.818899996578693, 258334.479800000786781 ], [ 355954.154600001871586, 258329.565000001341105 ], [ 355942.31700000166893, 258299.281700000166893 ], [ 355966.750900000333786, 258270.772900000214577 ], [ 355964.168300002813339, 258267.826200000941753 ], [ 355959.559600003063679, 258266.061799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703017200", "MAP": "D9-6674-T99", "PARCEL_NAM": "3H", "ACRE": null, "LONGITUDE": -64.95815572, "LATITUDE": 18.35504026, "OBJECTID_1": 3249, "PARCEL_NO_": "102703017200", "Tax_Legal_": "BONNE RESOLUTION 3H LT. NORTHSIDE", "Name": "CURRENCE, BANKS & MAYNARD", "Address": "PO Box 6143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 182700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.77707743299999, "SHAPE_Area": 1324.2542498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355929.527800001204014, 258357.368200000375509 ], [ 355899.341700002551079, 258352.153599999845028 ], [ 355881.654899999499321, 258366.309900000691414 ], [ 355888.38289999961853, 258383.066599998623133 ], [ 355902.901900000870228, 258382.552099999040365 ], [ 355916.598499998450279, 258383.930799998342991 ], [ 355932.685199998319149, 258388.706500001251698 ], [ 355937.185900002717972, 258390.08219999819994 ], [ 355944.968299999833107, 258392.460900001227856 ], [ 355953.124899998307228, 258371.503899998962879 ], [ 355955.044299997389317, 258366.572299998253584 ], [ 355955.032399997115135, 258366.567099999636412 ], [ 355943.024499997496605, 258385.769000001251698 ], [ 355921.328599996864796, 258375.847100000828505 ], [ 355929.527800001204014, 258357.368200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013700", "MAP": "D9-6674-T99", "PARCEL_NAM": "3K", "ACRE": null, "LONGITUDE": -64.95851576, "LATITUDE": 18.35456733, "OBJECTID_1": 3215, "PARCEL_NO_": "102703013700", "Tax_Legal_": "3 REM ESTATE BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "LAPLACE, AGNES GERTRUDE & GENE ANTHONY", "Address": "4 Abc-3 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.513398962, "SHAPE_Area": 1684.6232719499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355899.341700002551079, 258352.153599999845028 ], [ 355882.831600002944469, 258320.403599999845028 ], [ 355869.020300000905991, 258293.733500000089407 ], [ 355874.899099998176098, 258275.641199998557568 ], [ 355846.673900000751019, 258276.081500001251698 ], [ 355847.351999998092651, 258277.395100001245737 ], [ 355867.074600003659725, 258328.641199998557568 ], [ 355874.16780000180006, 258347.908700000494719 ], [ 355877.328299999237061, 258355.534000001847744 ], [ 355881.654899999499321, 258366.309900000691414 ], [ 355899.341700002551079, 258352.153599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9578691, "LATITUDE": 18.35417068, "OBJECTID_1": 3215, "PARCEL_NO_": "102703013700", "Tax_Legal_": "3 REM ESTATE BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "LAPLACE, AGNES GERTRUDE & GENE ANTHONY", "Address": "4 Abc-3 Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.859056122, "SHAPE_Area": 393.67939322799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355934.065700002014637, 258267.214299999177456 ], [ 355931.890299998223782, 258303.989100001752377 ], [ 355934.847099997103214, 258301.914500001817942 ], [ 355936.145300000905991, 258286.867600001394749 ], [ 355959.559600003063679, 258266.061799999326468 ], [ 355955.570100001990795, 258264.534499999135733 ], [ 355952.130500003695488, 258264.005300000309944 ], [ 355948.95549999922514, 258263.211599998176098 ], [ 355944.986800000071526, 258262.947000000625849 ], [ 355938.901399999856949, 258264.005300000309944 ], [ 355934.065700002014637, 258267.214299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704020100", "MAP": "D9-6674-T99", "PARCEL_NAM": "3L", "ACRE": null, "LONGITUDE": -64.95826523, "LATITUDE": 18.35438756, "OBJECTID_1": 3493, "PARCEL_NO_": "102704020100", "Tax_Legal_": "BONNE RESOLUTION 3L No.5 LITTLE NORTHSIDE QTR", "Name": "JOHN F BERTORELLI TRUST", "Address": "9718 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.21327536799998, "SHAPE_Area": 806.41012345299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355931.890299998223782, 258303.989100001752377 ], [ 355934.065700002014637, 258267.214299999177456 ], [ 355928.85249999910593, 258270.673900000751019 ], [ 355927.953100003302097, 258299.191799998283386 ], [ 355881.389200001955032, 258313.776099998503923 ], [ 355880.428800001740456, 258275.554900001734495 ], [ 355874.899099998176098, 258275.641199998557568 ], [ 355869.020300000905991, 258293.733500000089407 ], [ 355882.831600002944469, 258320.403599999845028 ], [ 355927.652099996805191, 258306.962699998170137 ], [ 355931.890299998223782, 258303.989100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102703023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96436366, "LATITUDE": 18.35297776, "OBJECTID_1": 3287, "PARCEL_NO_": "102703023600", "Tax_Legal_": "LINDBERG BAY 46 SOUTHSIDE QTR", "Name": "SIMMONS, KATHERYN E. & RONALD", "Address": "2 Old Mamaroneck Rd", "City": "White Plains", "State": "New York", "Zip": 10605, "Country": "United States", "Land_Value": 24500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1017.96591361, "SHAPE_Area": 4502.5076170599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355240.528499998152256, 258328.368299998342991 ], [ 355241.12389999628067, 258310.590300001204014 ], [ 355241.609899997711182, 258296.079900000244379 ], [ 355241.628700003027916, 258293.870099999010563 ], [ 355241.657600000500679, 258290.479100000113249 ], [ 355241.726800002157688, 258282.359700001776218 ], [ 355242.612000003457069, 258280.248199999332428 ], [ 355243.55290000140667, 258278.003699999302626 ], [ 355245.832099996507168, 258273.738499999046326 ], [ 355247.118299998342991, 258272.459699999541044 ], [ 355251.20440000295639, 258268.396999999880791 ], [ 355256.512100003659725, 258263.119600001722574 ], [ 355258.687799997627735, 258260.956399999558926 ], [ 355260.757600001990795, 258258.898400001227856 ], [ 355262.402500003576279, 258257.262899998575449 ], [ 355265.373999997973442, 258254.308400001376867 ], [ 355267.975100003182888, 258251.722100000828505 ], [ 355269.416500002145767, 258250.289000000804663 ], [ 355271.045299999415874, 258248.402499999850988 ], [ 355272.720899999141693, 258241.028000000864267 ], [ 355271.973899997770786, 258234.055799998342991 ], [ 355271.336499996483326, 258232.863899998366833 ], [ 355270.670199997723103, 258231.618000000715256 ], [ 355269.592799998819828, 258229.603300001472235 ], [ 355268.140600003302097, 258228.220600001513958 ], [ 355266.948600001633167, 258227.085700001567602 ], [ 355265.645599998533726, 258225.844999998807907 ], [ 355262.450199998915195, 258222.802499998360872 ], [ 355260.771899998188019, 258221.204500000923872 ], [ 355255.956500001251698, 258216.61939999833703 ], [ 355254.217399999499321, 258214.963500000536442 ], [ 355253.123099997639656, 258213.921599999070168 ], [ 355248.795900002121925, 258209.801399998366833 ], [ 355248.010300002992153, 258208.833999998867512 ], [ 355247.020199999213219, 258207.614399999380112 ], [ 355245.521899998188019, 258205.769099999219179 ], [ 355242.411899998784065, 258201.938700001686811 ], [ 355242.131700001657009, 258200.798000000417233 ], [ 355241.408600002527237, 258197.854400001466274 ], [ 355240.853200003504753, 258195.593100000172853 ], [ 355241.274400003254414, 258192.592799998819828 ], [ 355241.420100003480911, 258191.554900001734495 ], [ 355241.71169999986887, 258189.478399999439716 ], [ 355242.262500002980232, 258188.396000001579523 ], [ 355243.205099999904633, 258186.543600000441074 ], [ 355244.171999998390675, 258184.643399998545647 ], [ 355246.696299999952316, 258182.47749999910593 ], [ 355247.776500001549721, 258181.550599999725819 ], [ 355249.045800000429153, 258180.461500000208616 ], [ 355249.795800000429153, 258179.496800001710653 ], [ 355250.8496999964118, 258178.140999998897314 ], [ 355251.316799998283386, 258177.540100000798702 ], [ 355254.159599997103214, 258173.883200000971556 ], [ 355256.415600001811981, 258170.980999998748302 ], [ 355257.953699998557568, 258169.002500001341105 ], [ 355259.810900002717972, 258166.613400001078844 ], [ 355261.275399997830391, 258164.729499999433756 ], [ 355262.896999999880791, 258163.687300000339746 ], [ 355263.794900000095367, 258162.074400000274181 ], [ 355264.829899996519089, 258160.215300001204014 ], [ 355266.304899998009205, 258157.565799999982119 ], [ 355267.600000001490116, 258155.239399999380112 ], [ 355268.75, 258153.173799999058247 ], [ 355269.44820000231266, 258151.919700000435114 ], [ 355270.039499998092651, 258150.262499999254942 ], [ 355270.388800002634525, 258149.283599998801947 ], [ 355271.185500003397465, 258147.050700001418591 ], [ 355271.926500000059605, 258144.973900001496077 ], [ 355271.9391999989748, 258143.480099998414516 ], [ 355271.95719999819994, 258141.36089999973774 ], [ 355271.976800002157688, 258139.063700001686811 ], [ 355271.084700003266335, 258136.238400001078844 ], [ 355270.390600003302097, 258134.040199998766184 ], [ 355269.586199998855591, 258131.492400001734495 ], [ 355268.836099997162819, 258129.116599999368191 ], [ 355267.893799997866154, 258127.057000000029802 ], [ 355266.344700001180172, 258123.670800000429153 ], [ 355265.230400003492832, 258121.235199999064207 ], [ 355264.54169999808073, 258119.729699999094009 ], [ 355263.714500002563, 258117.921599999070168 ], [ 355261.097999997437, 258112.202199999243021 ], [ 355259.336499996483326, 258108.351700000464916 ], [ 355258.5878000035882, 258107.173700001090765 ], [ 355257.756300002336502, 258105.86540000140667 ], [ 355256.76349999755621, 258104.30350000038743 ], [ 355255.344099998474121, 258102.070099998265505 ], [ 355254.002999998629093, 258099.96000000089407 ], [ 355252.670900002121925, 258097.864000000059605 ], [ 355251.37950000166893, 258095.831999998539686 ], [ 355252.63400000333786, 258096.1385000012815 ], [ 355254.928800001740456, 258096.699099998921156 ], [ 355257.547700002789497, 258097.338799998164177 ], [ 355260.266400001943111, 258098.002900000661612 ], [ 355263.3091000020504, 258098.746199999004602 ], [ 355265.302000001072884, 258099.232999999076128 ], [ 355267.473399996757507, 258099.763399999588728 ], [ 355271.81530000269413, 258100.368000000715256 ], [ 355275.818300001323223, 258100.925400000065565 ], [ 355280.359999999403954, 258101.557700000703335 ], [ 355281.740599997341633, 258101.448600001633167 ], [ 355282.695500001311302, 258101.373199999332428 ], [ 355283.869099996984005, 258101.2804000005126 ], [ 355285.201499998569489, 258101.17509999871254 ], [ 355287.634800001978874, 258099.506299998611212 ], [ 355288.00450000166893, 258098.470100000500679 ], [ 355288.460900001227856, 258097.190999999642372 ], [ 355289.297799997031689, 258093.609299998730421 ], [ 355288.08389999717474, 258091.593299999833107 ], [ 355285.443800002336502, 258087.208500001579523 ], [ 355280.378899998962879, 258078.796500001102686 ], [ 355272.616999998688698, 258065.905299998819828 ], [ 355264.415700003504753, 258052.284200001507998 ], [ 355259.332099996507168, 258043.841299999505281 ], [ 355258.423900000751019, 258042.332899998873472 ], [ 355257.493000000715256, 258040.786699999123812 ], [ 355258.422200001776218, 258040.688999999314547 ], [ 355259.887699998915195, 258040.53489999845624 ], [ 355263.143700003623962, 258040.192499998956919 ], [ 355265.980899997055531, 258039.894200000911951 ], [ 355270.002700001001358, 258039.4712999984622 ], [ 355273.638700000941753, 258039.088899999856949 ], [ 355276.591600000858307, 258038.778400000184774 ], [ 355280.183600001037121, 258038.400699999183416 ], [ 355281.705799996852875, 258038.240600001066923 ], [ 355283.937700003385544, 258037.385299999266863 ], [ 355286.559799998998642, 258036.380499999970198 ], [ 355288.057599999010563, 258034.838199999183416 ], [ 355289.000399999320507, 258033.867300000041723 ], [ 355289.225400000810623, 258032.687300000339746 ], [ 355290.688500002026558, 258025.0152000002563 ], [ 355289.976700000464916, 258023.587900001555681 ], [ 355289.102899998426437, 258021.835799999535084 ], [ 355287.293799996376038, 258020.047200001776218 ], [ 355285.750200003385544, 258018.521099999547005 ], [ 355283.505400002002716, 258016.301600001752377 ], [ 355281.617200002074242, 258015.0135000012815 ], [ 355279.492799997329712, 258013.564100001007318 ], [ 355276.170100003480911, 258011.297200001776218 ], [ 355273.747100003063679, 258009.644099999219179 ], [ 355271.274700000882149, 258007.957400001585484 ], [ 355269.69879999756813, 258006.882199998944998 ], [ 355267.469400003552437, 258005.361200001090765 ], [ 355265.285999998450279, 258003.871599998325109 ], [ 355263.462700001895428, 258002.627599999308586 ], [ 355260.856600001454353, 258001.350400000810623 ], [ 355258.987700000405312, 258000.434399999678135 ], [ 355257.332999996840954, 257999.6233000010252 ], [ 355254.22919999808073, 257998.102099999785423 ], [ 355252.102600000798702, 257997.059799998998642 ], [ 355249.507500000298023, 257995.787900000810623 ], [ 355247.255400002002716, 257994.684099998325109 ], [ 355245.17230000346899, 257993.663100000470877 ], [ 355242.321199998259544, 257992.265700001269579 ], [ 355239.37219999730587, 257990.820300001651049 ], [ 355210.325199998915195, 257992.904599998146296 ], [ 355212.497599996626377, 257993.397199999541044 ], [ 355216.69709999859333, 257994.349500000476837 ], [ 355219.785300001502037, 257995.049800001084805 ], [ 355222.113899998366833, 257995.577799998223782 ], [ 355224.811800003051758, 257996.189500000327826 ], [ 355227.375200003385544, 257997.060600001364946 ], [ 355229.468000002205372, 257997.771800000220537 ], [ 355231.781000003218651, 257998.557799998670816 ], [ 355232.953599996864796, 257998.956300001591444 ], [ 355234.98200000077486, 257999.645500000566244 ], [ 355237.898299999535084, 258000.636599998921156 ], [ 355240.088600002229214, 258001.380800001323223 ], [ 355243.145000003278255, 258002.987300001084805 ], [ 355244.781099997460842, 258003.847300000488758 ], [ 355247.472900003194809, 258005.262099999934435 ], [ 355249.305699996650219, 258006.225499998778105 ], [ 355251.570200003683567, 258007.415699999779463 ], [ 355253.494400002062321, 258008.427099999040365 ], [ 355255.588799998164177, 258009.527899999171495 ], [ 355258.394299998879433, 258011.002599999308586 ], [ 355261.880300000309944, 258012.834899999201298 ], [ 355263.512199997901917, 258013.692600000649691 ], [ 355264.974600002169609, 258014.461199998855591 ], [ 355267.496399998664856, 258016.316700000315905 ], [ 355269.508400000631809, 258017.796900000423193 ], [ 355271.603100001811981, 258019.338100001215935 ], [ 355273.30799999833107, 258020.592399999499321 ], [ 355274.330200001597404, 258021.344399999827147 ], [ 355275.728000000119209, 258022.372900001704693 ], [ 355277.533900000154972, 258023.701499998569489 ], [ 355280.329599998891354, 258025.758400000631809 ], [ 355281.80290000140667, 258026.842300001531839 ], [ 355281.783100001513958, 258029.164200000464916 ], [ 355280.734499998390675, 258029.238800000399351 ], [ 355278.169900000095367, 258029.421100001782179 ], [ 355275.431999996304512, 258029.615800000727177 ], [ 355271.38570000231266, 258029.903400000184774 ], [ 355267.068300001323223, 258030.210400000214577 ], [ 355262.111699998378754, 258030.562800001353025 ], [ 355259.546999998390675, 258030.745099999010563 ], [ 355257.6216000020504, 258030.881999999284744 ], [ 355255.156800001859665, 258031.057199999690056 ], [ 355252.943499997258186, 258032.192899998277426 ], [ 355251.107299998402596, 258033.135000001639128 ], [ 355249.579199999570847, 258035.10080000013113 ], [ 355248.661399997770786, 258036.281399998813868 ], [ 355248.640699997544289, 258038.705600000917912 ], [ 355248.621699996292591, 258040.928899999707937 ], [ 355248.607400000095367, 258042.613800000399351 ], [ 355249.393899999558926, 258044.942200001329184 ], [ 355250.174699999392033, 258046.22690000012517 ], [ 355251.503799997270107, 258048.413400001823902 ], [ 355253.158500000834465, 258051.135499998927116 ], [ 355254.779600001871586, 258053.802400000393391 ], [ 355256.833599999547005, 258057.181499999016523 ], [ 355260.002099998295307, 258062.394200000911951 ], [ 355261.717100001871586, 258065.215599998831749 ], [ 355263.17059999704361, 258067.606800001114607 ], [ 355264.264799997210503, 258069.407000001519918 ], [ 355266.188000001013279, 258072.570900000631809 ], [ 355268.12780000269413, 258075.762099999934435 ], [ 355270.785999998450279, 258080.135299999266863 ], [ 355273.497699998319149, 258084.5962999984622 ], [ 355275.934900000691414, 258088.605799999088049 ], [ 355278.021999999880791, 258092.039299998432398 ], [ 355273.719800002872944, 258091.314899999648333 ], [ 355269.9087999984622, 258090.673200000077486 ], [ 355266.20380000025034, 258090.049300000071526 ], [ 355263.528099998831749, 258089.598700001835823 ], [ 355258.785899996757507, 258088.237700000405312 ], [ 355255.60080000013113, 258087.323499999940395 ], [ 355252.806900002062321, 258086.521600000560284 ], [ 355250.657700002193451, 258085.904699999839067 ], [ 355248.009300000965595, 258087.034400001168251 ], [ 355245.801899999380112, 258087.975900001823902 ], [ 355244.173100002110004, 258089.862399999052286 ], [ 355242.542400002479553, 258091.96000000089407 ], [ 355242.524499997496605, 258094.070799998939037 ], [ 355243.215300001204014, 258097.66499999910593 ], [ 355244.068800002336502, 258102.105000000447035 ], [ 355245.355999998748302, 258103.877000000327826 ], [ 355246.700499996542931, 258105.727899998426437 ], [ 355248.850900001823902, 258108.688000001013279 ], [ 355249.633799999952316, 258111.438700001686811 ], [ 355251.2212999984622, 258114.407000001519918 ], [ 355252.821299999952316, 258115.897700000554323 ], [ 355254.129600003361702, 258118.580200001597404 ], [ 355255.198899999260902, 258120.772300001233816 ], [ 355256.784500002861023, 258123.951699998229742 ], [ 355257.571099996566772, 258126.280200000852346 ], [ 355258.851499997079372, 258129.439300000667572 ], [ 355260.076200000941753, 258132.461100000888109 ], [ 355261.519900001585484, 258136.022799998521805 ], [ 355261.501900002360344, 258138.133600000292063 ], [ 355261.447999998927116, 258144.465999998152256 ], [ 355260.055500000715256, 258147.721099998801947 ], [ 355258.743600003421307, 258150.78770000115037 ], [ 355257.366300001740456, 258154.00730000063777 ], [ 355255.688699997961521, 258157.928800001740456 ], [ 355252.805500000715256, 258161.083200000226498 ], [ 355251.393200002610683, 258162.628299999982119 ], [ 355248.794600002467632, 258165.566599998623133 ], [ 355244.956699997186661, 258170.721799999475479 ], [ 355243.11259999871254, 258173.199000000953674 ], [ 355241.835799999535084, 258174.914000000804663 ], [ 355240.217699997127056, 258175.534000001847744 ], [ 355237.230099998414516, 258178.610500000417233 ], [ 355235.33669999986887, 258180.560300000011921 ], [ 355234.347199998795986, 258182.211899999529123 ], [ 355232.064699999988079, 258186.021999999880791 ], [ 355231.215199999511242, 258191.081300001591444 ], [ 355231.332400001585484, 258193.542599998414516 ], [ 355231.524999998509884, 258197.585400000214577 ], [ 355231.625600002706051, 258199.697200000286102 ], [ 355231.736800000071526, 258202.0304000005126 ], [ 355231.899300001561642, 258205.441199999302626 ], [ 355234.3074000030756, 258206.72749999910593 ], [ 355235.950400002300739, 258208.602299999445677 ], [ 355238.41780000180006, 258211.417599998414516 ], [ 355240.412500001490116, 258213.693599998950958 ], [ 355241.921400003135204, 258215.415300000458956 ], [ 355243.995099999010563, 258217.781399998813868 ], [ 355245.487899996340275, 258219.484600000083447 ], [ 355248.83330000191927, 258222.212699998170137 ], [ 355250.933899998664856, 258223.925700001418591 ], [ 355256.613799996674061, 258228.557500001043081 ], [ 355258.300800003111362, 258229.933100000023842 ], [ 355261.056400001049042, 258233.077399998903275 ], [ 355263.891000002622604, 258236.311700001358986 ], [ 355263.020000003278255, 258243.903900001198053 ], [ 355240.250799998641014, 258266.304499998688698 ], [ 355236.172499999403954, 258271.75959999859333 ], [ 355234.54730000346899, 258273.223999999463558 ], [ 355232.714400000870228, 258281.808200001716614 ], [ 355232.027699999511242, 258285.024599999189377 ], [ 355232.443800002336502, 258330.835299998521805 ], [ 355240.528499998152256, 258328.368299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010600", "MAP": "C3-95-T59", "PARCEL_NAM": "32", "ACRE": null, "LONGITUDE": -64.96430449, "LATITUDE": 18.34776679, "OBJECTID_1": 7439, "PARCEL_NO_": "105201010600", "Tax_Legal_": "LINDBERG BAY 32 4A SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 270900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.14395362900001, "SHAPE_Area": 2354.9467528499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355282.789599999785423, 257601.904399998486042 ], [ 355280.138099998235703, 257559.678700000047684 ], [ 355274.958400003612041, 257498.078000001609325 ], [ 355268.292700000107288, 257499.039099998772144 ], [ 355265.246100001037121, 257509.316500000655651 ], [ 355264.331900000572205, 257521.974700000137091 ], [ 355259.362800002098083, 257537.343800000846386 ], [ 355249.512599997222424, 257557.73930000141263 ], [ 355247.829800002276897, 257565.958200000226498 ], [ 355249.345399998128414, 257577.369600001722574 ], [ 355250.913000002503395, 257582.659800000488758 ], [ 355264.799900002777576, 257608.626299999654293 ], [ 355282.789599999785423, 257601.904399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102703045800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96579208, "LATITUDE": 18.34908775, "OBJECTID_1": 3422, "PARCEL_NO_": "102703045800", "Tax_Legal_": "LINDBERG BAY 37, 38H & 39 SOUTHSIDE QUARTER", "Name": "EMPIRE REALTY", "Address": "6824 Creenoak Dr", "City": "Douglasville", "State": "Georgia", "Zip": 30135, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.446067868, "SHAPE_Area": 963.88442773199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355171.699100002646446, 257699.590599998831749 ], [ 355165.244999997317791, 257699.959899999201298 ], [ 355157.821400001645088, 257700.315499998629093 ], [ 355153.951300002634525, 257700.500799998641014 ], [ 355150.058899998664856, 257701.485700000077486 ], [ 355145.915500000119209, 257702.534200001507998 ], [ 355141.829599998891354, 257703.567999999970198 ], [ 355139.993299998342991, 257704.510200001299381 ], [ 355137.218800000846386, 257705.933800000697374 ], [ 355134.437600001692772, 257707.360800001770258 ], [ 355133.048699997365475, 257708.073499999940395 ], [ 355129.70380000025034, 257709.789700001478195 ], [ 355128.061200000345707, 257710.632500000298023 ], [ 355125.00959999859333, 257712.745600000023842 ], [ 355122.112300001084805, 257714.751899998635054 ], [ 355119.93299999833107, 257716.260899998247623 ], [ 355117.516199998557568, 257717.934399999678135 ], [ 355115.271600000560284, 257718.752900000661612 ], [ 355114.010499998927116, 257719.212699998170137 ], [ 355111.854000002145767, 257719.999000001698732 ], [ 355107.80290000140667, 257719.8597999997437 ], [ 355103.792700000107288, 257719.721900001168251 ], [ 355101.629399999976158, 257719.022799998521805 ], [ 355098.429499998688698, 257717.988699998706579 ], [ 355095.75110000371933, 257717.122999999672174 ], [ 355093.170299999415874, 257715.471700001507998 ], [ 355091.741099998354912, 257714.557100001722574 ], [ 355087.976700000464916, 257712.119800001382828 ], [ 355086.127499997615814, 257710.922499999403954 ], [ 355085.093699999153614, 257709.600900001823902 ], [ 355083.884700000286102, 257708.055300001055002 ], [ 355082.13910000026226, 257705.823600001633167 ], [ 355080.975100003182888, 257702.951900001615286 ], [ 355079.013999998569489, 257698.113499999046326 ], [ 355078.19030000269413, 257696.081000000238419 ], [ 355078.208200000226498, 257693.970199998468161 ], [ 355077.279200002551079, 257692.566799998283386 ], [ 355075.819899998605251, 257690.362100001424551 ], [ 355073.558399997651577, 257688.31529999896884 ], [ 355071.818899996578693, 257686.740800000727177 ], [ 355067.984999999403954, 257685.795099999755621 ], [ 355065.51690000295639, 257685.186299998313189 ], [ 355062.967399999499321, 257684.557399999350309 ], [ 355062.574199996888638, 257681.596999999135733 ], [ 355062.130900003015995, 257678.258799999952316 ], [ 355061.451899997889996, 257673.145899999886751 ], [ 355058.5304000005126, 257673.78999999910593 ], [ 355054.988799996674061, 257674.570700000971556 ], [ 355055.168600000441074, 257677.585099998861551 ], [ 355055.331299997866154, 257680.311999998986721 ], [ 355055.520000003278255, 257683.47580000013113 ], [ 355055.694399997591972, 257686.397700000554323 ], [ 355057.733800001442432, 257688.478799998760223 ], [ 355058.914700001478195, 257689.683699999004602 ], [ 355060.49099999666214, 257691.292100001126528 ], [ 355063.681400001049042, 257691.225499998778105 ], [ 355065.420299999415874, 257691.189100001007318 ], [ 355067.749600000679493, 257691.140399999916553 ], [ 355069.29730000346899, 257693.119100000709295 ], [ 355070.472699999809265, 257694.621800001710653 ], [ 355071.737999998033047, 257696.23930000141263 ], [ 355072.377999998629093, 257697.783500000834465 ], [ 355073.201099999248981, 257699.769299998879433 ], [ 355074.070699997246265, 257701.867400001734495 ], [ 355074.963600002229214, 257704.021699998527765 ], [ 355075.730499997735023, 257705.872000001370907 ], [ 355076.408399999141693, 257707.507500000298023 ], [ 355077.268899999558926, 257709.583500001579523 ], [ 355078.684600003063679, 257711.393399998545647 ], [ 355079.525200001895428, 257712.468100000172853 ], [ 355080.399300001561642, 257713.58559999987483 ], [ 355081.257299996912479, 257714.682399999350309 ], [ 355083.025100000202656, 257716.094700001180172 ], [ 355084.633000001311302, 257717.379200000315905 ], [ 355085.698399998247623, 257718.230399999767542 ], [ 355087.209299996495247, 257719.437399998307228 ], [ 355088.465499997138977, 257720.440900001674891 ], [ 355089.8716000020504, 257721.085999999195337 ], [ 355091.483999997377396, 257721.825500000268221 ], [ 355093.358599998056889, 257722.685499999672174 ], [ 355094.899999998509884, 257723.392499998211861 ], [ 355096.452200002968311, 257724.104499999433756 ], [ 355098.195699997246265, 257724.904199998825788 ], [ 355099.710799999535084, 257725.599199999123812 ], [ 355101.66330000013113, 257725.724800001829863 ], [ 355104.687399998307228, 257725.919300001114607 ], [ 355106.742700003087521, 257726.051500000059605 ], [ 355109.262100003659725, 257726.213500000536442 ], [ 355110.993699997663498, 257726.324799999594688 ], [ 355116.574799999594688, 257724.767200000584126 ], [ 355119.07660000026226, 257724.068900000303984 ], [ 355120.69650000333786, 257723.237799998372793 ], [ 355122.828100003302097, 257722.254799999296665 ], [ 355124.744199998676777, 257721.371100001037121 ], [ 355126.174099996685982, 257720.226100001484156 ], [ 355128.489000000059605, 257718.372600000351667 ], [ 355130.017800003290176, 257717.148499999195337 ], [ 355132.051399998366833, 257715.520300000905991 ], [ 355134.488399997353554, 257714.269900001585484 ], [ 355136.63459999859333, 257713.168699998408556 ], [ 355140.960400000214577, 257710.949099998921156 ], [ 355143.446800000965595, 257710.247999999672174 ], [ 355149.868100002408028, 257708.437300000339746 ], [ 355153.144900001585484, 257707.513300001621246 ], [ 355155.509999997913837, 257706.8462999984622 ], [ 355158.738399997353554, 257706.624299999326468 ], [ 355160.193099997937679, 257706.524300001561642 ], [ 355162.742799997329712, 257706.348999999463558 ], [ 355165.924599997699261, 257706.130199998617172 ], [ 355169.226300001144409, 257705.903099998831749 ], [ 355170.970600001513958, 257706.042100001126528 ], [ 355172.863600000739098, 257706.192800000309944 ], [ 355175.620700001716614, 257706.412399999797344 ], [ 355178.090300001204014, 257706.609000001102686 ], [ 355182.109300002455711, 257708.119500000029802 ], [ 355171.699100002646446, 257699.590599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102703045800", "MAP": "B9-273-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9662413, "LATITUDE": 18.34941266, "OBJECTID_1": 3422, "PARCEL_NO_": "102703045800", "Tax_Legal_": "LINDBERG BAY 37, 38H & 39 SOUTHSIDE QUARTER", "Name": "EMPIRE REALTY", "Address": "6824 Creenoak Dr", "City": "Douglasville", "State": "Georgia", "Zip": 30135, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 396.56345933, "SHAPE_Area": 1429.96265722 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355148.518200002610683, 257770.328299999237061 ], [ 355156.941600002348423, 257762.816599998623133 ], [ 355145.046499997377396, 257764.792300000786781 ], [ 355141.302699998021126, 257765.414099998772144 ], [ 355134.905699998140335, 257766.4989 ], [ 355123.198600001633167, 257768.484000001102686 ], [ 355121.114399999380112, 257768.837400000542402 ], [ 355117.792499996721745, 257768.462099999189377 ], [ 355115.754699997603893, 257768.231800001114607 ], [ 355112.253100000321865, 257767.836199998855591 ], [ 355109.030500002205372, 257767.471999999135733 ], [ 355105.796800002455711, 257766.888399999588728 ], [ 355102.457299999892712, 257766.285700000822544 ], [ 355097.761699996888638, 257765.438299998641014 ], [ 355094.394400000572205, 257764.830600000917912 ], [ 355090.286100000143051, 257764.089099999517202 ], [ 355086.150100000202656, 257763.342599999159575 ], [ 355083.0625, 257762.785399999469519 ], [ 355080.850900001823902, 257762.386199999600649 ], [ 355075.936300002038479, 257760.70380000025034 ], [ 355072.006599999964237, 257759.358500000089407 ], [ 355070.110799998044968, 257758.131099998950958 ], [ 355067.373099997639656, 257756.358600001782179 ], [ 355065.010499998927116, 257754.828899998217821 ], [ 355062.239799998700619, 257753.035000000149012 ], [ 355060.779399998486042, 257752.089400000870228 ], [ 355058.125, 257748.959499999880791 ], [ 355055.586499996483326, 257745.9662000015378 ], [ 355053.379900000989437, 257743.364399999380112 ], [ 355051.788000002503395, 257741.487199999392033 ], [ 355050.286300003528595, 257739.716499999165535 ], [ 355046.988399997353554, 257735.827799998223782 ], [ 355044.01410000026226, 257732.320500001311302 ], [ 355042.354699999094009, 257730.33219999819994 ], [ 355040.232100002467632, 257727.788800001144409 ], [ 355036.754799999296665, 257723.622299998998642 ], [ 355034.436700001358986, 257720.8445999994874 ], [ 355031.571299999952316, 257717.411200001835823 ], [ 355029.148599997162819, 257714.508299998939037 ], [ 355026.453199997544289, 257711.278499998152256 ], [ 355024.332800000905991, 257709.020700000226498 ], [ 355004.077899999916553, 257687.452899999916553 ], [ 354993.572400003671646, 257690.111099999397993 ], [ 355010.362899996340275, 257706.924899999052286 ], [ 355012.6199000030756, 257709.467199999839067 ], [ 355015.631099998950958, 257712.858899999409914 ], [ 355019.604999996721745, 257717.334899999201298 ], [ 355025.259099997580051, 257723.703400000929832 ], [ 355029.880500003695488, 257728.908700000494719 ], [ 355036.399700000882149, 257736.865299999713898 ], [ 355040.177699998021126, 257741.560499999672174 ], [ 355043.19370000064373, 257745.308699999004602 ], [ 355045.027900002896786, 257747.588100001215935 ], [ 355046.847000002861023, 257749.848799999803305 ], [ 355047.885600000619888, 257751.139499999582767 ], [ 355050.214800000190735, 257753.464600000530481 ], [ 355051.644799999892712, 257754.892099998891354 ], [ 355054.2820999994874, 257757.524700000882149 ], [ 355057.225500002503395, 257759.374800000339746 ], [ 355060.987199999392033, 257761.739199999719858 ], [ 355063.978299997746944, 257763.619300000369549 ], [ 355067.587399996817112, 257765.270599998533726 ], [ 355071.637599997222424, 257766.612300001084805 ], [ 355075.964500002563, 257768.045699998736382 ], [ 355080.26070000231266, 257768.831900000572205 ], [ 355083.570799998939037, 257769.4375 ], [ 355085.625799998641014, 257769.813499998301268 ], [ 355095.343500003218651, 257771.502199999988079 ], [ 355101.76860000193119, 257772.618599999696016 ], [ 355108.810099996626377, 257773.842199999839067 ], [ 355114.129699997603893, 257774.766600001603365 ], [ 355116.222499996423721, 257775.130199998617172 ], [ 355119.8141999989748, 257774.596200000494719 ], [ 355131.320299997925758, 257772.885400000959635 ], [ 355142.35419999808073, 257771.244800001382828 ], [ 355145.903300002217293, 257770.717099998146296 ], [ 355148.518200002610683, 257770.328299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102703045800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96641241, "LATITUDE": 18.35004268, "OBJECTID_1": 3422, "PARCEL_NO_": "102703045800", "Tax_Legal_": "LINDBERG BAY 37, 38H & 39 SOUTHSIDE QUARTER", "Name": "EMPIRE REALTY", "Address": "6824 Creenoak Dr", "City": "Douglasville", "State": "Georgia", "Zip": 30135, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 477.10410857400001, "SHAPE_Area": 1958.81897551 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354981.513400003314018, 257822.929000001400709 ], [ 354982.181000001728535, 257830.531399998813868 ], [ 355007.696599997580051, 257830.603900000452995 ], [ 355035.112999998033047, 257830.617199998348951 ], [ 355037.171300001442432, 257830.619899999350309 ], [ 355065.754600003361702, 257830.656899999827147 ], [ 355104.639600001275539, 257830.591099999845028 ], [ 355108.492799997329712, 257830.584499999880791 ], [ 355111.450000002980232, 257830.311200000345707 ], [ 355113.997599996626377, 257830.075800001621246 ], [ 355117.017399996519089, 257829.796700000762939 ], [ 355118.983900003135204, 257829.614900000393391 ], [ 355120.494099996984005, 257829.036200001835823 ], [ 355123.389300003647804, 257827.92680000141263 ], [ 355125.455899998545647, 257827.134799998253584 ], [ 355129.501900002360344, 257825.479100000113249 ], [ 355132.195200003683567, 257823.573899999260902 ], [ 355135.991899996995926, 257820.888199999928474 ], [ 355132.01969999819994, 257813.889600001275539 ], [ 355129.91780000180006, 257815.364100001752377 ], [ 355127.937600001692772, 257816.753199998289347 ], [ 355123.0962999984622, 257820.149399999529123 ], [ 355121.500399999320507, 257820.5185999982059 ], [ 355118.915100000798702, 257821.116599999368191 ], [ 355116.329800002276897, 257821.714600000530481 ], [ 355113.400799997150898, 257822.392099998891354 ], [ 355076.306800000369549, 257822.510600000619888 ], [ 355047.276000000536442, 257822.695199999958277 ], [ 355041.461900003254414, 257822.749099999666214 ], [ 355033.045900002121925, 257822.827100001275539 ], [ 355023.082999996840954, 257822.919399999082088 ], [ 355019.879399999976158, 257820.360100001096725 ], [ 355019.3733000010252, 257785.103300001472235 ], [ 355018.861900001764297, 257750.479800000786781 ], [ 355009.994300000369549, 257750.196100000292063 ], [ 355009.92059999704361, 257758.850299999117851 ], [ 355009.859399996697903, 257766.026999998837709 ], [ 355003.401699997484684, 257766.818500000983477 ], [ 355003.351400002837181, 257772.728700000792742 ], [ 355009.798299998044968, 257773.203699998557568 ], [ 355009.667000003159046, 257788.612399999052286 ], [ 355010.13400000333786, 257814.2837999984622 ], [ 355010.2162000015378, 257818.803300000727177 ], [ 355009.390100002288818, 257821.118599999696016 ], [ 355006.954999998211861, 257822.998500000685453 ], [ 354993.829499997198582, 257822.962699998170137 ], [ 354981.513400003314018, 257822.929000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704014100", "MAP": "D9-3080-T85", "PARCEL_NAM": "3", "ACRE": ".64", "LONGITUDE": -64.95005796, "LATITUDE": 18.35205568, "OBJECTID_1": 3466, "PARCEL_NO_": "102704014100", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 3 GT. NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.38669668200001, "SHAPE_Area": 2320.3876191899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356801.052799999713898, 258042.725699998438358 ], [ 356791.340499997138977, 258004.047400001436472 ], [ 356789.896700002253056, 258005.199299998581409 ], [ 356772.813100002706051, 258022.791400000452995 ], [ 356755.69709999859333, 258044.182799998670816 ], [ 356747.569300003349781, 258051.715700000524521 ], [ 356738.653099998831749, 258057.131099998950958 ], [ 356727.656700000166893, 258061.881000000983477 ], [ 356749.956799998879433, 258084.861400000751019 ], [ 356801.052799999713898, 258042.725699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022000", "MAP": null, "PARCEL_NAM": "2AA-1", "ACRE": null, "LONGITUDE": -64.95661787, "LATITUDE": 18.35314532, "OBJECTID_1": 3512, "PARCEL_NO_": "102704022000", "Tax_Legal_": "2AD BONNE RESOLUTION LITTLE NORTHSIDE QTR", "Name": "SMITH, GRANVILLE & USINECA", "Address": "PO Box 8353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 87000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.081863445099998, "SHAPE_Area": 122.858126773 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356070.563799999654293, 258156.033500000834465 ], [ 356070.855999998748302, 258173.613899998366833 ], [ 356080.553599998354912, 258163.83559999987483 ], [ 356081.404799997806549, 258158.565200001001358 ], [ 356077.39130000025034, 258156.421399999409914 ], [ 356070.563799999654293, 258156.033500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022700", "MAP": "F9-338-T58", "PARCEL_NAM": "2AA", "ACRE": "1.023", "LONGITUDE": -64.95654705, "LATITUDE": 18.35254075, "OBJECTID_1": 3519, "PARCEL_NO_": "102704022700", "Tax_Legal_": "BONNE RESOLUTION 2A A LITTLE NORTHSIDE QTR", "Name": "COLLEGE OF THE VIRGIN ISLANDS", "Address": "COLLEGE OF THE V I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 165500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.13369506699999, "SHAPE_Area": 1705.90963816 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356075.352899998426437, 258038.6114999987185 ], [ 356075.033699996769428, 258148.730700001120567 ], [ 356091.964199997484684, 258149.574599999934435 ], [ 356089.663199998438358, 258041.053700000047684 ], [ 356079.195600003004074, 258039.279199998825788 ], [ 356075.352899998426437, 258038.6114999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022500", "MAP": "F9-740-T61", "PARCEL_NAM": "2AB-1", "ACRE": ".16", "LONGITUDE": -64.95693904, "LATITUDE": 18.35204854, "OBJECTID_1": 3517, "PARCEL_NO_": "102704022500", "Tax_Legal_": "BONNE RESOLUTION 2A & 2AB-1 LITTLE NORTHSIDE QTR", "Name": "RUSSELL CROWTHER REVOCABLE TRUST", "Address": "7910 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107000, "Improved_V": 259800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.761382914, "SHAPE_Area": 709.87881292600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356047.081500001251698, 258022.762200001627207 ], [ 356035.872299998998642, 258013.382399998605251 ], [ 356033.795999996364117, 258069.296500001102686 ], [ 356033.912000000476837, 258078.815499998629093 ], [ 356056.66889999806881, 258030.698899999260902 ], [ 356053.487099997699261, 258028.092000000178814 ], [ 356051.633699998259544, 258026.550000000745058 ], [ 356047.081500001251698, 258022.762200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704022400", "MAP": "F9-740-T61", "PARCEL_NAM": "2A-1", "ACRE": ".21", "LONGITUDE": -64.95714762, "LATITUDE": 18.35275477, "OBJECTID_1": 3516, "PARCEL_NO_": "102704022400", "Tax_Legal_": "BONNE RESOLUTION 2AI LITTLE NORTHSIDE QTR", "Name": "COLLEGE OF THE VIRGIN ISLANDS", "Address": "COLLEGE OF THE V I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.72113303, "SHAPE_Area": 657.47339661900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356033.912000000476837, 258078.815499998629093 ], [ 356032.856299996376038, 258083.440699998289347 ], [ 356032.701499998569489, 258084.944299999624491 ], [ 356031.098099999129772, 258100.524900000542402 ], [ 356028.616200000047684, 258107.892900001257658 ], [ 356023.728000000119209, 258113.7635000012815 ], [ 356019.673000000417233, 258116.474500000476837 ], [ 356013.206299997866154, 258118.321400001645088 ], [ 356003.535999998450279, 258117.609000001102686 ], [ 355995.490800000727177, 258115.432199999690056 ], [ 355993.417999997735023, 258114.821800000965595 ], [ 355993.340000003576279, 258125.697900000959635 ], [ 355996.019799999892712, 258126.153599999845028 ], [ 356005.820799998939037, 258127.820099998265505 ], [ 356034.568599998950958, 258132.708399999886751 ], [ 356033.912000000476837, 258078.815499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704048100", "MAP": "D9-2982-T87", "PARCEL_NAM": "6A-10A", "ACRE": null, "LONGITUDE": -64.9533385, "LATITUDE": 18.34965781, "OBJECTID_1": 3611, "PARCEL_NO_": "102704048100", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 6A-10A LITTLE NORTHSIDE QTR", "Name": "KAI M. MULLEY REVOCABLE TRUST", "Address": "PO Box 6671", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.681809176, "SHAPE_Area": 2066.0901229299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356453.124600000679493, 257781.85020000115037 ], [ 356451.842699997127056, 257746.445999998599291 ], [ 356431.564499996602535, 257756.97580000013113 ], [ 356392.660099998116493, 257780.299899999052286 ], [ 356402.062600001692772, 257812.463100001215935 ], [ 356453.124600000679493, 257781.85020000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704045000", "MAP": "D9-7141-T002", "PARCEL_NAM": "6A-10 REM", "ACRE": ".25", "LONGITUDE": -64.95262666000001, "LATITUDE": 18.34941086, "OBJECTID_1": 3585, "PARCEL_NO_": "102704045000", "Tax_Legal_": "6A-10 REM. LILLIENDAHL & MARIENHOJ No.3 LT.NORTHSIDE QTR.", "Name": "HUGGINS, NYDIA", "Address": "145 Tana Dr", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.60335699699999, "SHAPE_Area": 1010.60701769 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356487.700000002980232, 257734.638900000602007 ], [ 356485.393399998545647, 257774.176399998366833 ], [ 356512.102300003170967, 257768.611900001764297 ], [ 356517.209899999201298, 257736.989599999040365 ], [ 356504.325099997222424, 257734.984299998730421 ], [ 356489.814999997615814, 257734.443399999290705 ], [ 356487.700000002980232, 257734.638900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704047800", "MAP": "D9-3947-T87", "PARCEL_NAM": "6A-12-1", "ACRE": null, "LONGITUDE": -64.95231083, "LATITUDE": 18.34942263, "OBJECTID_1": 3609, "PARCEL_NO_": "102704047800", "Tax_Legal_": "6A-12-1&6A-12-A-A LILLIENDAHL LILLIENDAHL&MARIHOJ", "Name": "MORNING GLORY TRUST", "Address": "PO Box 304753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22300, "Improved_V": 164300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.819370308, "SHAPE_Area": 948.19518953700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356513.446299999952316, 257760.290600001811981 ], [ 356546.052100002765656, 257773.683499999344349 ], [ 356555.020199999213219, 257747.431600000709295 ], [ 356517.209899999201298, 257736.989599999040365 ], [ 356513.446299999952316, 257760.290600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704063100", "MAP": "D9-6527-T99", "PARCEL_NAM": "107-3-B", "ACRE": ".26", "LONGITUDE": -64.95710001, "LATITUDE": 18.34834842, "OBJECTID_1": 3676, "PARCEL_NO_": "102704063100", "Tax_Legal_": "CONTANT 107-3-B SOUTHSIDE QRT #7B", "Name": "HARRIGAN, JOSETTE", "Address": "PO Box 7064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24500, "Improved_V": 369800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.57747367899999, "SHAPE_Area": 930.58248081700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356011.402800001204014, 257617.47520000115037 ], [ 356021.680900000035763, 257653.638199999928474 ], [ 356046.840199999511242, 257644.112399999052286 ], [ 356031.580600000917912, 257607.69200000166893 ], [ 356021.5337999984622, 257614.087099999189377 ], [ 356011.402800001204014, 257617.47520000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704063200", "MAP": "D9-6527-T99", "PARCEL_NAM": "107-3-C", "ACRE": ".25", "LONGITUDE": -64.95687694, "LATITUDE": 18.34823478, "OBJECTID_1": 3677, "PARCEL_NO_": "102704063200", "Tax_Legal_": "CONTANT 107-3-C 7B SOUTHSIDE", "Name": "PENN, DELONY D. & ROY A. STERROD", "Address": "PO Box 304585", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 157000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.144133912, "SHAPE_Area": 1208.17670694 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356031.580600000917912, 257607.69200000166893 ], [ 356046.840199999511242, 257644.112399999052286 ], [ 356072.860500000417233, 257634.26069999858737 ], [ 356063.746699996292591, 257610.039000000804663 ], [ 356051.854400001466274, 257590.898499999195337 ], [ 356038.559799998998642, 257603.249600000679493 ], [ 356031.580600000917912, 257607.69200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704063300", "MAP": "D9-6527-T99", "PARCEL_NAM": "107-3-D", "ACRE": null, "LONGITUDE": -64.9565772, "LATITUDE": 18.34817667, "OBJECTID_1": 3678, "PARCEL_NO_": "102704063300", "Tax_Legal_": "CONTANT ESTATE 107-3-D 7B SOUTHSIDE QTR", "Name": "HERMAN, NORMA S. & T. GLYERIUS", "Address": "Estate Ross #78", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.596124414, "SHAPE_Area": 1019.89852765 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356102.263199999928474, 257621.472600001841784 ], [ 356093.37950000166893, 257587.957800000905991 ], [ 356063.746699996292591, 257610.039000000804663 ], [ 356072.860500000417233, 257634.26069999858737 ], [ 356078.632700003683567, 257632.075199998915195 ], [ 356080.250699996948242, 257631.455099999904633 ], [ 356094.008400000631809, 257625.6570999994874 ], [ 356102.263199999928474, 257621.472600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202018500", "MAP": "D9-6527-T99", "PARCEL_NAM": "107-3-F", "ACRE": null, "LONGITUDE": -64.95667444, "LATITUDE": 18.3479354, "OBJECTID_1": 8090, "PARCEL_NO_": "105202018500", "Tax_Legal_": "CONTANT 107-3-F 7B SOUTHSIDE QRT", "Name": "TODMAN, LAVERNE", "Address": "PO Box 11703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 214800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.91905846399999, "SHAPE_Area": 1022.92645697 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356093.37950000166893, 257587.957800000905991 ], [ 356083.440499998629093, 257559.050999999046326 ], [ 356057.254299998283386, 257585.881799999624491 ], [ 356051.854400001466274, 257590.898499999195337 ], [ 356063.746699996292591, 257610.039000000804663 ], [ 356093.37950000166893, 257587.957800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202018400", "MAP": "D9-6527-T99", "PARCEL_NAM": "107-3-E", "ACRE": null, "LONGITUDE": -64.95631949, "LATITUDE": 18.34802276, "OBJECTID_1": 8089, "PARCEL_NO_": "105202018400", "Tax_Legal_": "107-3-E ESTATE CONTANT 7B SOUTSIDE QTR", "Name": "BROOKES, GEORGINA T.", "Address": "PO Box 1016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.07021133500001, "SHAPE_Area": 1095.5868745400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356093.37950000166893, 257587.957800000905991 ], [ 356102.263199999928474, 257621.472600001841784 ], [ 356128.022799998521805, 257608.414700001478195 ], [ 356119.569300003349781, 257568.442299999296665 ], [ 356093.37950000166893, 257587.957800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801015400", "MAP": "D9-6796-T000", "PARCEL_NAM": "21C", "ACRE": ".606", "LONGITUDE": -64.9461125, "LATITUDE": 18.36342494, "OBJECTID_1": 3735, "PARCEL_NO_": "102801015400", "Tax_Legal_": "ST.PETER ESTATE 21c No.2 LITTLE NORTHSIDE QTR.", "Name": "BERRY, GREGORY L", "Address": "7812 St Peter Mtn", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.75569051400001, "SHAPE_Area": 1938.08799718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357203.171999998390675, 259322.307500001043081 ], [ 357204.921700000762939, 259290.954100001603365 ], [ 357177.371899999678135, 259291.621399998664856 ], [ 357149.599399998784065, 259292.088100001215935 ], [ 357151.079700000584126, 259330.577500000596046 ], [ 357164.862300001084805, 259329.546999998390675 ], [ 357175.320600003004074, 259332.754799999296665 ], [ 357180.387299999594688, 259328.51630000025034 ], [ 357185.867399998009205, 259325.241799999028444 ], [ 357197.990900002419949, 259321.963500000536442 ], [ 357200.805699996650219, 259322.150400001555681 ], [ 357203.171999998390675, 259322.307500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94984475, "LATITUDE": 18.36441682, "OBJECTID_1": 3038, "PARCEL_NO_": "102702026100", "Tax_Legal_": "HULL 11CA&11JA LT.NORTHSIDE", "Name": "SKEELS, KEITHM. & DARLENE L. SPEAR", "Address": "PO Box 7296", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81200, "Improved_V": 187500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.221409095, "SHAPE_Area": 417.87270352100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356801.285800002515316, 259413.28660000115633 ], [ 356804.543499998748302, 259409.5135000012815 ], [ 356767.236299999058247, 259411.044300001114607 ], [ 356765.647799998521805, 259411.109499998390675 ], [ 356760.864100001752377, 259425.410199999809265 ], [ 356798.82379999756813, 259418.332699999213219 ], [ 356801.285800002515316, 259413.28660000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95025253, "LATITUDE": 18.36444933, "OBJECTID_1": 3037, "PARCEL_NO_": "102702026000", "Tax_Legal_": "HULL 11 4 LITTLE NORHTHSIDE", "Name": "PRYKE, ELIZABETH R", "Address": "248 Maplemere Ln", "City": "BLUFFTON", "State": "South Carolina", "Zip": 29909, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.95373795200001, "SHAPE_Area": 717.09616616899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356760.864100001752377, 259425.410199999809265 ], [ 356765.647799998521805, 259411.109499998390675 ], [ 356713.046099998056889, 259414.300599999725819 ], [ 356706.554799996316433, 259414.694400001317263 ], [ 356717.56139999628067, 259428.029399998486042 ], [ 356760.864100001752377, 259425.410199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702026000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95021704, "LATITUDE": 18.36422118, "OBJECTID_1": 3037, "PARCEL_NO_": "102702026000", "Tax_Legal_": "HULL 11 4 LITTLE NORHTHSIDE", "Name": "PRYKE, ELIZABETH R", "Address": "248 Maplemere Ln", "City": "BLUFFTON", "State": "South Carolina", "Zip": 29909, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.73718961399, "SHAPE_Area": 0.08057450721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356740.97070000320673, 259394.379900000989437 ], [ 356740.951700001955032, 259394.480099998414516 ], [ 356742.680799998342991, 259393.8429000005126 ], [ 356740.97070000320673, 259394.379900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801013800", "MAP": "F9-2807-T71", "PARCEL_NAM": "7-1", "ACRE": null, "LONGITUDE": -64.94697567, "LATITUDE": 18.36053249, "OBJECTID_1": 3720, "PARCEL_NO_": "102801013800", "Tax_Legal_": "ST PETER 7-1 LITTLE NORTHSIDE", "Name": "MOOREHEAD, ROY & CHARMAINE", "Address": "PO Box 956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.681862916, "SHAPE_Area": 528.58361994699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357086.51070000231266, 258962.293400000780821 ], [ 357090.177199997007847, 258952.528000000864267 ], [ 357085.820600003004074, 258953.32039999961853 ], [ 357079.565399996936321, 258961.631900001317263 ], [ 357083.422200001776218, 258992.254700001329184 ], [ 357086.889899998903275, 259019.787399999797344 ], [ 357096.553700000047684, 259017.177600000053644 ], [ 357086.51070000231266, 258962.293400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102801013700", "MAP": "A9-115-T69", "PARCEL_NAM": "14-1", "ACRE": ".15", "LONGITUDE": -64.94414244, "LATITUDE": 18.36384924, "OBJECTID_1": 3719, "PARCEL_NO_": "102801013700", "Tax_Legal_": "ST PETER 14-1&13-2 LITTLE NORTHSIDE", "Name": "RYNER, PETER JR., CLYDE & ELLA", "Address": "PO Box 11901", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 115700, "Improved_V": 379400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.080083411, "SHAPE_Area": 734.22816587099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357401.255599997937679, 259384.234400000423193 ], [ 357386.876800000667572, 259334.170699998736382 ], [ 357379.249300003051758, 259342.44539999961853 ], [ 357367.881800003349781, 259351.640500001609325 ], [ 357362.364399999380112, 259354.948300000280142 ], [ 357385.368600003421307, 259372.271099999547005 ], [ 357401.255599997937679, 259384.234400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801015000", "MAP": "f9-609-T60", "PARCEL_NAM": "8-18", "ACRE": ".009", "LONGITUDE": -64.94217734, "LATITUDE": 18.35734068, "OBJECTID_1": 3732, "PARCEL_NO_": "102801015000", "Tax_Legal_": "LERKENLUND 8-18 GR NORTHSIDE", "Name": "HODGE, DAISY", "Address": "7747 Upper Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023433, "Country": "United States", "Land_Value": 14600, "Improved_V": 223400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.277262453800006, "SHAPE_Area": 393.64269096300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357614.258799999952316, 258638.049800001084805 ], [ 357602.644100002944469, 258626.989399999380112 ], [ 357586.844200000166893, 258637.825399998575449 ], [ 357581.078000001609325, 258640.784000001847744 ], [ 357590.311999998986721, 258652.277300000190735 ], [ 357593.186800003051758, 258650.543000001460314 ], [ 357594.808399997651577, 258649.500799998641014 ], [ 357614.258799999952316, 258638.049800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801016000", "MAP": "D9-6954-T001", "PARCEL_NAM": "1-3A", "ACRE": ".63", "LONGITUDE": -64.94292723, "LATITUDE": 18.36312745, "OBJECTID_1": 3739, "PARCEL_NO_": "102801016000", "Tax_Legal_": "LERKENLUND 1-3A GREAT NORTHSIDE", "Name": "QUERRARD, TRACY", "Address": "1-2 Estate Lerkenlund", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96000, "Improved_V": 194000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.14360273599999, "SHAPE_Area": 2099.16040772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357517.245600000023842, 259242.316799998283386 ], [ 357505.044100001454353, 259247.6385000012815 ], [ 357500.983800001442432, 259250.982799999415874 ], [ 357497.733400002121925, 259253.911499999463558 ], [ 357494.446999996900558, 259261.061799999326468 ], [ 357490.332699999213219, 259270.738400001078844 ], [ 357506.044100001454353, 259317.512800000607967 ], [ 357538.931199997663498, 259293.980700001120567 ], [ 357517.245600000023842, 259242.316799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102801017300", "MAP": "D9-5721-T94", "PARCEL_NAM": "6H-A", "ACRE": null, "LONGITUDE": -64.94515458, "LATITUDE": 18.36133276, "OBJECTID_1": 3750, "PARCEL_NO_": "102801017300", "Tax_Legal_": "ST PETER 6H-A LT NORTHSIDE", "Name": "BERRY, LOUIS T", "Address": "PO Box 10434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013434, "Country": "United States", "Land_Value": 2900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.625622179, "SHAPE_Area": 948.31430479899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357344.755500003695488, 259037.344000000506639 ], [ 357343.324199996888638, 259040.035900000482798 ], [ 357341.728299997746944, 259043.037599999457598 ], [ 357339.838500000536442, 259046.591899998486042 ], [ 357337.668399997055531, 259049.161100000143051 ], [ 357335.765600003302097, 259051.413699999451637 ], [ 357332.859499998390675, 259053.442600000649691 ], [ 357330.087300002574921, 259055.377999998629093 ], [ 357313.863899998366833, 259066.644299998879433 ], [ 357290.381999999284744, 259078.062199998646975 ], [ 357288.119800001382828, 259078.848900001496077 ], [ 357285.5912000015378, 259079.728199999779463 ], [ 357281.29730000346899, 259081.2212999984622 ], [ 357272.589100003242493, 259084.249400001019239 ], [ 357269.144900001585484, 259084.842199999839067 ], [ 357266.812700003385544, 259085.243500001728535 ], [ 357262.177199997007847, 259086.041200000792742 ], [ 357254.599399998784065, 259087.345300000160933 ], [ 357249.170100003480911, 259088.279599998146296 ], [ 357230.106700003147125, 259088.406100001186132 ], [ 357206.430200003087521, 259088.563099998980761 ], [ 357206.122699998319149, 259090.823899999260902 ], [ 357205.569899998605251, 259094.888900000602007 ], [ 357245.890900000929832, 259094.58559999987483 ], [ 357254.654399998486042, 259093.784099999815226 ], [ 357262.837899997830391, 259093.035500001162291 ], [ 357270.869400002062321, 259090.90819999948144 ], [ 357276.326300002634525, 259089.462799999862909 ], [ 357280.618100002408028, 259088.325899999588728 ], [ 357285.452799998223782, 259086.473299998790026 ], [ 357290.326200000941753, 259084.605700001120567 ], [ 357295.123000003397465, 259082.269000001251698 ], [ 357299.548900000751019, 259080.113000001758337 ], [ 357301.500799998641014, 259079.162200000137091 ], [ 357304.137000001966953, 259077.877999998629093 ], [ 357310.865699999034405, 259074.60020000115037 ], [ 357314.618100002408028, 259072.772199999541044 ], [ 357318.754000000655651, 259070.095600001513958 ], [ 357322.553999997675419, 259067.636399999260902 ], [ 357326.748999997973442, 259064.921700000762939 ], [ 357330.54900000244379, 259062.462499998509884 ], [ 357333.998000003397465, 259060.230399999767542 ], [ 357338.132399998605251, 259057.554800000041723 ], [ 357342.970299996435642, 259057.594399999827147 ], [ 357344.755500003695488, 259037.344000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019700", "MAP": "D9-3416-T86", "PARCEL_NAM": "9-4", "ACRE": null, "LONGITUDE": -64.94855515, "LATITUDE": 18.36442031, "OBJECTID_1": 3774, "PARCEL_NO_": "102801019700", "Tax_Legal_": "ST PETER 9-4 LT. NORTHSIDE", "Name": "BRYAN, JUDITH E", "Address": "PO Box 7401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.460121707, "SHAPE_Area": 442.15238888800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356886.725900001823902, 259421.974599998444319 ], [ 356938.219200000166893, 259424.482799999415874 ], [ 356936.862099997699261, 259422.843499999493361 ], [ 356928.663400001823902, 259410.28940000012517 ], [ 356926.2787000015378, 259406.637800000607967 ], [ 356886.725900001823902, 259421.974599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801018800", "MAP": "D9-5733-T94", "PARCEL_NAM": "9-2", "ACRE": ".504", "LONGITUDE": -64.94813156, "LATITUDE": 18.36406677, "OBJECTID_1": 3765, "PARCEL_NO_": "102801018800", "Tax_Legal_": "ST PETER 9-2 LT. NORTHSIDE", "Name": "PEARSON, PATRICK & MARILYN (CO-TRUSTEES)", "Address": "PO Box 8603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60700, "Improved_V": 170100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.38913635599999, "SHAPE_Area": 1871.6103014299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356967.252400003373623, 259356.569600000977516 ], [ 356961.173799999058247, 259347.6689000017941 ], [ 356930.525799997150898, 259364.685899998992682 ], [ 356942.355499997735023, 259383.820700000971556 ], [ 356949.975500002503395, 259393.134100001305342 ], [ 356955.486800000071526, 259395.481499999761581 ], [ 356961.405500002205372, 259398.002399999648333 ], [ 356982.148900002241135, 259409.009100001305342 ], [ 356991.745999999344349, 259404.889499999582767 ], [ 356989.201999999582767, 259393.256799999624491 ], [ 356981.362800002098083, 259381.19649999961257 ], [ 356981.049300000071526, 259380.714200001209974 ], [ 356967.252400003373623, 259356.569600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019600", "MAP": "D9-5733-T94", "PARCEL_NAM": "9-3-2", "ACRE": ".762", "LONGITUDE": -64.94859148, "LATITUDE": 18.3638482, "OBJECTID_1": 3773, "PARCEL_NO_": "102801019600", "Tax_Legal_": "ST PETER 9-3 LT. NORTHSIDE", "Name": "BERRY, DAVID J", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 356100, "Improved_V": 27300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.55357644200001, "SHAPE_Area": 2770.2988643100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356949.379100002348423, 259330.857099998742342 ], [ 356941.53999999910593, 259330.543600000441074 ], [ 356898.828100003302097, 259335.200100000947714 ], [ 356878.938500002026558, 259346.883299998939037 ], [ 356881.64360000193119, 259372.967300001531839 ], [ 356883.493000000715256, 259390.800400000065565 ], [ 356961.173799999058247, 259347.6689000017941 ], [ 356957.800300002098083, 259342.728999998420477 ], [ 356949.692699998617172, 259330.857099998742342 ], [ 356949.379100002348423, 259330.857099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011100", "MAP": "D9-5573-T93", "PARCEL_NAM": "9B REM", "ACRE": ".50", "LONGITUDE": -64.94757619000001, "LATITUDE": 18.36410431, "OBJECTID_1": 3693, "PARCEL_NO_": "102801011100", "Tax_Legal_": "ST PETER 9B REM. LT.NORTHSIDE QTR.", "Name": "PEARSON, PATRICK A. & MARILYN A. (CO-TRUSTEES)", "Address": "PO Box 8603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.929984977, "SHAPE_Area": 1870.4789832599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357010.746399998664856, 259406.547400001436472 ], [ 357022.616999998688698, 259398.48200000077486 ], [ 357042.706900000572205, 259401.668800000101328 ], [ 357043.328900001943111, 259380.368400000035763 ], [ 357043.082400001585484, 259365.674699999392033 ], [ 357043.046599999070168, 259363.540899999439716 ], [ 357042.869199998676777, 259352.96510000154376 ], [ 357031.836900003254414, 259357.979800000786781 ], [ 357017.690200001001358, 259362.857999999076128 ], [ 357006.226400002837181, 259370.663100000470877 ], [ 356999.884800001978874, 259377.004700001329184 ], [ 356994.709600001573563, 259387.80519999936223 ], [ 356994.274899996817112, 259388.712400000542402 ], [ 356998.177400000393391, 259410.981300000101328 ], [ 356998.333200000226498, 259414.981499999761581 ], [ 357010.746399998664856, 259406.547400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801019200", "MAP": "G9-2902-T79", "PARCEL_NAM": "9X", "ACRE": null, "LONGITUDE": -64.94801631, "LATITUDE": 18.36386556, "OBJECTID_1": 3769, "PARCEL_NO_": "102801019200", "Tax_Legal_": "ST PETER 9X LT. NORTHSIDE QTR.", "Name": "DAVID JOHN BERRY REVOCABLE TRUST", "Address": "PO Box 304851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034851, "Country": "United States", "Land_Value": 7400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.63692124900001, "SHAPE_Area": 150.172153826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356949.937899999320507, 259318.799800001084805 ], [ 356950.821599997580051, 259321.612100001424551 ], [ 356956.365199998021126, 259328.843499999493361 ], [ 356969.928099997341633, 259352.9206000007689 ], [ 356985.4391999989748, 259376.637800000607967 ], [ 356990.776000000536442, 259378.16270000115037 ], [ 356949.937899999320507, 259318.799800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801021100", "MAP": "G9-2994-T80", "PARCEL_NAM": "13-1A", "ACRE": ".52", "LONGITUDE": -64.94315098, "LATITUDE": 18.36349394, "OBJECTID_1": 3786, "PARCEL_NO_": "102801021100", "Tax_Legal_": "ST PETER 13-1&4 LITTLE NORTHSIDE", "Name": "QUERRARD JR, LAWRENCE", "Address": "7433 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 405100, "Improved_V": 13700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.439910051, "SHAPE_Area": 2133.23897158 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357461.0050999969244, 259343.658300001174212 ], [ 357516.284699998795986, 259348.0 ], [ 357490.332699999213219, 259270.738400001078844 ], [ 357487.865199998021126, 259276.417700000107288 ], [ 357483.788699999451637, 259281.661699999123812 ], [ 357479.735600002110004, 259284.161699999123812 ], [ 357474.0878000035882, 259284.537599999457598 ], [ 357478.040200002491474, 259293.8581000007689 ], [ 357479.580899998545647, 259302.314399998635054 ], [ 357477.075699999928474, 259312.426399998366833 ], [ 357475.432499997317791, 259316.001600001007318 ], [ 357472.97580000013113, 259320.41440000012517 ], [ 357466.467699997127056, 259327.116200000047684 ], [ 357461.548900000751019, 259336.575100000947714 ], [ 357461.0050999969244, 259343.658300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801021100", "MAP": "D9-5480-T93", "PARCEL_NAM": "13-1B REM", "ACRE": null, "LONGITUDE": -64.94343387000001, "LATITUDE": 18.36445459, "OBJECTID_1": 3786, "PARCEL_NO_": "102801021100", "Tax_Legal_": "ST PETER 13-1&4 LITTLE NORTHSIDE", "Name": "QUERRARD JR, LAWRENCE", "Address": "7433 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 405100, "Improved_V": 13700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.370160261, "SHAPE_Area": 2454.3601511699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357497.336900003254414, 259412.930500000715256 ], [ 357457.017499998211861, 259395.221999999135733 ], [ 357455.392300002276897, 259396.6864 ], [ 357445.581699997186661, 259412.438099998980761 ], [ 357440.69879999756813, 259417.675500001758337 ], [ 357437.430399999022484, 259422.714999999850988 ], [ 357409.011699996888638, 259445.7027000002563 ], [ 357452.484200000762939, 259454.079999998211861 ], [ 357445.326300002634525, 259442.411299999803305 ], [ 357490.535599999129772, 259436.237399999052286 ], [ 357497.336900003254414, 259412.930500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801021900", "MAP": "D9-4499-T88", "PARCEL_NAM": "5C-2", "ACRE": ".628", "LONGITUDE": -64.94322126, "LATITUDE": 18.36193088, "OBJECTID_1": 3792, "PARCEL_NO_": "102801021900", "Tax_Legal_": "LERKENLUND 5C 9 GREAT NORTHSIDE", "Name": "QUERRARD JR, LAWRENCE", "Address": "7433 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 285900, "Improved_V": 189500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.04688457399999, "SHAPE_Area": 2494.2995578599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357502.427100002765656, 259105.718600001186132 ], [ 357450.180799998342991, 259150.232400000095367 ], [ 357464.44370000064373, 259186.089099999517202 ], [ 357513.968599997460842, 259146.597699999809265 ], [ 357502.427100002765656, 259105.718600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022000", "MAP": "D9-5231-T92", "PARCEL_NAM": "5L", "ACRE": ".90", "LONGITUDE": -64.94290522, "LATITUDE": 18.36113043, "OBJECTID_1": 3793, "PARCEL_NO_": "102801022000", "Tax_Legal_": "LERKENLUND 5L & 5M-1 GREAT NORTHSIDE", "Name": "BERRY, EMILE C. (LIFE ESTATE)", "Address": "7429 Lerkenlund 5L", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 143100, "Improved_V": 226700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.16296427500001, "SHAPE_Area": 2315.3244946999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357549.702299997210503, 259065.196899998933077 ], [ 357524.174500003457069, 259023.188900001347065 ], [ 357492.283699996769428, 259041.7179000005126 ], [ 357501.835400000214577, 259056.3614999987185 ], [ 357491.268799997866154, 259066.196400001645088 ], [ 357499.141599997878075, 259094.081599999219179 ], [ 357549.702299997210503, 259065.196899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022000", "MAP": "D9-5231-T92", "PARCEL_NAM": "5M-1", "ACRE": null, "LONGITUDE": -64.94275214, "LATITUDE": 18.36093367, "OBJECTID_1": 3793, "PARCEL_NO_": "102801022000", "Tax_Legal_": "LERKENLUND 5L & 5M-1 GREAT NORTHSIDE", "Name": "BERRY, EMILE C. (LIFE ESTATE)", "Address": "7429 Lerkenlund 5L", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 143100, "Improved_V": 226700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.807296968, "SHAPE_Area": 60.966705767500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357524.174500003457069, 259023.188900001347065 ], [ 357549.702299997210503, 259065.196899998933077 ], [ 357526.319700002670288, 259021.942499998956919 ], [ 357524.174500003457069, 259023.188900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801026100", "MAP": "D9-8301-T009", "PARCEL_NAM": "5M-2", "ACRE": ".99", "LONGITUDE": -64.94219898, "LATITUDE": 18.36110239, "OBJECTID_1": 3824, "PARCEL_NO_": "102801026100", "Tax_Legal_": "5M-2 REM, 5M-2 & 5LB LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "Jacques E. Ledee & Ethel B. Ledee Trst", "Address": "PO Box 302908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 156800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.05328750300001, "SHAPE_Area": 3295.3443746799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357615.177400000393391, 259012.318199999630451 ], [ 357549.702299997210503, 259065.196899998933077 ], [ 357569.188000001013279, 259101.242400001734495 ], [ 357591.928400002419949, 259082.219000000506639 ], [ 357618.759700000286102, 259056.263000000268221 ], [ 357635.042400002479553, 259038.031100001186132 ], [ 357615.177400000393391, 259012.318199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801026100", "MAP": "D9-5231-T92", "PARCEL_NAM": "5LB", "ACRE": null, "LONGITUDE": -64.9424774, "LATITUDE": 18.36141068, "OBJECTID_1": 3824, "PARCEL_NO_": "102801026100", "Tax_Legal_": "5M-2 REM, 5M-2 & 5LB LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "Jacques E. Ledee & Ethel B. Ledee Trst", "Address": "PO Box 302908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 156800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.287987554599994, "SHAPE_Area": 54.171878449600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357549.702299997210503, 259065.196899998933077 ], [ 357567.124600000679493, 259102.985599998384714 ], [ 357569.188000001013279, 259101.242400001734495 ], [ 357549.702299997210503, 259065.196899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94390225, "LATITUDE": 18.36026303, "OBJECTID_1": 3795, "PARCEL_NO_": "102801022200", "Tax_Legal_": "5 REM LERKENLUND NO 9 GREAT NORTHSIDE QTR", "Name": "ELLEN ELIZABETH BERRY GILLOTT REVOC FAMILY TRUST", "Address": "7410 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124600, "Improved_V": 48900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.477973782300001, "SHAPE_Area": 14.5624957249 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357409.122299998998642, 258960.886300001293421 ], [ 357417.49889999628067, 258965.49379999935627 ], [ 357410.744800001382828, 258958.30180000141263 ], [ 357409.122299998998642, 258960.886300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801028300", "MAP": "D9-2840-T84", "PARCEL_NAM": "5-3", "ACRE": ".57", "LONGITUDE": -64.94376987, "LATITUDE": 18.36089098, "OBJECTID_1": 3829, "PARCEL_NO_": "102801028300", "Tax_Legal_": "5-3 ESTATE LERKENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "BERRY, MICHAEL ANTHONY", "Address": "300 Sherluck Court", "City": "Virginia Beach", "State": "Virginia", "Zip": 234620000, "Country": "United States", "Land_Value": 91800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.58368624, "SHAPE_Area": 2905.1040884200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357450.567199997603893, 259059.8581000007689 ], [ 357430.678599998354912, 258972.743200000375509 ], [ 357399.423799999058247, 259021.841699998825788 ], [ 357422.604599997401237, 259080.622099999338388 ], [ 357439.650499999523163, 259067.462699998170137 ], [ 357450.567199997603893, 259059.8581000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801022200", "MAP": "D9-2840-T84", "PARCEL_NAM": "5 REM", "ACRE": ".50", "LONGITUDE": -64.94396972, "LATITUDE": 18.36049009, "OBJECTID_1": 3795, "PARCEL_NO_": "102801022200", "Tax_Legal_": "5 REM LERKENLUND NO 9 GREAT NORTHSIDE QTR", "Name": "ELLEN ELIZABETH BERRY GILLOTT REVOC FAMILY TRUST", "Address": "7410 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124600, "Improved_V": 48900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.98705300099999, "SHAPE_Area": 1404.1563823 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357430.678599998354912, 258972.743200000375509 ], [ 357417.49889999628067, 258965.49379999935627 ], [ 357409.122299998998642, 258960.886300001293421 ], [ 357406.657499998807907, 258964.812300000339746 ], [ 357403.470600001513958, 258966.648899998515844 ], [ 357400.167400002479553, 258969.403200000524521 ], [ 357382.349399998784065, 258978.545499999076128 ], [ 357399.423799999058247, 259021.841699998825788 ], [ 357430.678599998354912, 258972.743200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94586956000001, "LATITUDE": 18.35689689, "OBJECTID_1": 3850, "PARCEL_NO_": "102801030900", "Tax_Legal_": "ST.PETER 3I-23 LITTLE NORTHSIDE QTR", "Name": "GOLUB, ROBERT S.", "Address": "PO Box 303467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.628382496300006, "SHAPE_Area": 537.04024623299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357224.048699997365475, 258588.472600001841784 ], [ 357217.677199997007847, 258570.668800000101328 ], [ 357210.798000000417233, 258575.852600000798702 ], [ 357201.073700003325939, 258581.472500000149012 ], [ 357190.775399997830391, 258586.127399999648333 ], [ 357196.708200000226498, 258602.805900000035763 ], [ 357217.109999999403954, 258592.158399999141693 ], [ 357224.048699997365475, 258588.472600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801032900", "MAP": "F9-1255-T63", "PARCEL_NAM": "3H-8", "ACRE": ".029", "LONGITUDE": -64.94635767, "LATITUDE": 18.35735109, "OBJECTID_1": 3867, "PARCEL_NO_": "102801032900", "Tax_Legal_": "ST PETER 3H-8 LT NORTHSIDE", "Name": "ROSSSI, RICK", "Address": "3I-21 ST. PETER", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.1647376528, "SHAPE_Area": 68.547000325499994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357156.749300003051758, 258631.015799999237061 ], [ 357150.629100002348423, 258634.255199998617172 ], [ 357150.594999998807907, 258638.265700001269579 ], [ 357159.424800001084805, 258642.982099998742342 ], [ 357161.200699999928474, 258643.592399999499321 ], [ 357156.749300003051758, 258631.015799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801053200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94747161, "LATITUDE": 18.3573242, "OBJECTID_1": 3944, "PARCEL_NO_": "102801053200", "Tax_Legal_": "3H-24 ESTATE ST.PETER No.2 LITTLE NORTHSIDE QTR.", "Name": "SEABROOK, JULIETTE T.", "Address": "220 Third Ave", "City": "Charleston", "State": "South Carolina", "Zip": 29403, "Country": "United States", "Land_Value": 38200, "Improved_V": 299500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.80729542900001, "SHAPE_Area": 968.19649754399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357022.574699997901917, 258615.6864 ], [ 357025.077100001275539, 258648.706199999898672 ], [ 357052.899899996817112, 258652.875999998301268 ], [ 357050.281400002539158, 258617.428800001740456 ], [ 357047.563199996948242, 258616.735300000756979 ], [ 357040.320799998939037, 258614.987300001084805 ], [ 357022.574699997901917, 258615.6864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801053400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94701692, "LATITUDE": 18.3573499, "OBJECTID_1": 3946, "PARCEL_NO_": "102801053400", "Tax_Legal_": "ST PETER 3H-22 LT. NORTHSIDE", "Name": "EDWARDS, DONALD & SUSAN", "Address": "7783 UPPER LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.51631921000001, "SHAPE_Area": 676.48854122099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357080.584200002253056, 258621.438499998301268 ], [ 357073.270900003612041, 258620.979600001126528 ], [ 357076.216600000858307, 258652.761900000274181 ], [ 357083.548799999058247, 258652.071400001645088 ], [ 357100.041900001466274, 258647.800400000065565 ], [ 357095.539399996399879, 258622.307000000029802 ], [ 357080.584200002253056, 258621.438499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801053300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9472335, "LATITUDE": 18.35735287, "OBJECTID_1": 3945, "PARCEL_NO_": "102801053300", "Tax_Legal_": "3H-23 ST.PETER No.2 LITTLE NORTHSIDE QTR.", "Name": "ROMANO, SANDRA L.", "Address": "John Brewer S Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38200, "Improved_V": 330200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.22957883300001, "SHAPE_Area": 772.51270527300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357050.281400002539158, 258617.428800001740456 ], [ 357052.899899996817112, 258652.875999998301268 ], [ 357064.987400002777576, 258653.819299999624491 ], [ 357076.216600000858307, 258652.761900000274181 ], [ 357073.270900003612041, 258620.979600001126528 ], [ 357061.241700001060963, 258620.224700000137091 ], [ 357050.281400002539158, 258617.428800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051700", "MAP": "G9-3045-T80", "PARCEL_NAM": "3H-15", "ACRE": ".28", "LONGITUDE": -64.94766065, "LATITUDE": 18.35799932, "OBJECTID_1": 3931, "PARCEL_NO_": "102801051700", "Tax_Legal_": "ST PETER 3H-15 LT. NORTHSIDE", "Name": "OLIVACCE, RONALD & EDITH", "Address": "PO Box 7040", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 95600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.02045183499999, "SHAPE_Area": 2018.1470889 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357033.796800002455711, 258734.714600000530481 ], [ 357034.813299998641014, 258703.634100001305342 ], [ 357032.331299997866154, 258679.619199998676777 ], [ 357030.256599999964237, 258679.404800001531839 ], [ 357026.283900000154972, 258679.019799999892712 ], [ 357021.017399996519089, 258678.509300000965595 ], [ 357007.535999998450279, 258677.202599998563528 ], [ 356998.921099998056889, 258676.321899998933077 ], [ 356998.855499997735023, 258682.640599999576807 ], [ 357002.159299999475479, 258735.129900000989437 ], [ 357004.619000002741814, 258735.651700001209974 ], [ 357011.93129999935627, 258737.143699999898672 ], [ 357033.036700002849102, 258741.44990000128746 ], [ 357033.796800002455711, 258734.714600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052500", "MAP": null, "PARCEL_NAM": "3H-20", "ACRE": null, "LONGITUDE": -64.9477322, "LATITUDE": 18.35762028, "OBJECTID_1": 3937, "PARCEL_NO_": "102801052500", "Tax_Legal_": "ST PETER 3H-20 LT NORTHSIDE", "Name": "LAPLACE, PIERRE & NOREEN (LIFE ESTATE)", "Address": "7794 Est St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.278304694400006, "SHAPE_Area": 542.47396307400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357022.245600000023842, 258654.313799999654293 ], [ 357007.73200000077486, 258654.195000000298023 ], [ 356996.726000003516674, 258656.317600000649691 ], [ 356998.921099998056889, 258676.321899998933077 ], [ 357007.535999998450279, 258677.202599998563528 ], [ 357021.017399996519089, 258678.509300000965595 ], [ 357022.245600000023842, 258654.313799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051600", "MAP": null, "PARCEL_NAM": "3G-1", "ACRE": null, "LONGITUDE": -64.94802133, "LATITUDE": 18.35730355, "OBJECTID_1": 3930, "PARCEL_NO_": "102801051600", "Tax_Legal_": "ST PETER 3G-1 LITTLENORTHSIDE QTR", "Name": "LAPLACE, PIERRE & ROBERT & RICKY", "Address": "7794 Est St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.688868927, "SHAPE_Area": 892.451727409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356995.352399997413158, 258643.84569999948144 ], [ 356992.603299997746944, 258614.640799999237061 ], [ 356975.917400002479553, 258614.464600000530481 ], [ 356975.842699997127056, 258611.293099999427795 ], [ 356970.990500003099442, 258612.942200001329184 ], [ 356966.475900001823902, 258614.512099999934435 ], [ 356966.593800000846386, 258648.903099998831749 ], [ 356995.352399997413158, 258643.84569999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051400", "MAP": "D9-2342-T83", "PARCEL_NAM": "3F-1-B", "ACRE": null, "LONGITUDE": -64.94865343, "LATITUDE": 18.35773845, "OBJECTID_1": 3928, "PARCEL_NO_": "102801051400", "Tax_Legal_": "ST PETER 3F-1-B,3F-2,3G-2-B,3G-4 LILLTE NORTHSIDE", "Name": "PERCELL, SANDRA", "Address": "BOX 4910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.6223437043, "SHAPE_Area": 95.748032996700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356894.047799997031689, 258680.226700000464916 ], [ 356921.17620000243187, 258680.501299999654293 ], [ 356922.56700000166893, 258673.456500001251698 ], [ 356894.047799997031689, 258680.226700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94844624, "LATITUDE": 18.35768768, "OBJECTID_1": 3928, "PARCEL_NO_": "102801051400", "Tax_Legal_": "ST PETER 3F-1-B,3F-2,3G-2-B,3G-4 LILLTE NORTHSIDE", "Name": "PERCELL, SANDRA", "Address": "BOX 4910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.074047852600003, "SHAPE_Area": 34.168824474799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356922.56700000166893, 258673.456500001251698 ], [ 356928.172100000083447, 258673.666900001466274 ], [ 356940.279399998486042, 258674.121199999004602 ], [ 356940.770400002598763, 258670.281500000506639 ], [ 356922.56700000166893, 258673.456500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051500", "MAP": "D9-2342-T83", "PARCEL_NAM": "3G-3", "ACRE": ".50", "LONGITUDE": -64.94812374, "LATITUDE": 18.35798004, "OBJECTID_1": 3929, "PARCEL_NO_": "102801051500", "Tax_Legal_": "ST PETER 3G-3 ST LT. NORTHSIDE", "Name": "MAUREEN RICHARDSON TRUST", "Address": "PO Box 11311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.68709862700001, "SHAPE_Area": 3728.15352906 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357002.159299999475479, 258735.129900000989437 ], [ 356998.855499997735023, 258682.640599999576807 ], [ 356998.921099998056889, 258676.321899998933077 ], [ 356940.279399998486042, 258674.121199999004602 ], [ 356939.434500001370907, 258680.728799998760223 ], [ 356939.095200002193451, 258683.382500000298023 ], [ 356933.130000002682209, 258730.032800000160933 ], [ 356936.921099998056889, 258731.297899998724461 ], [ 356947.383400000631809, 258733.705600000917912 ], [ 356964.308700002729893, 258734.688499998301268 ], [ 356975.606100000441074, 258733.725499998778105 ], [ 356978.83500000089407, 258733.329700000584126 ], [ 356997.374700002372265, 258734.114700000733137 ], [ 357002.159299999475479, 258735.129900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102802010600", "MAP": "D9-6293-T97", "PARCEL_NAM": "2-K-A", "ACRE": ".30", "LONGITUDE": -64.93891651, "LATITUDE": 18.36300276, "OBJECTID_1": 4028, "PARCEL_NO_": "102802010600", "Tax_Legal_": "LERKENLUND 2K GREAT NORTHSIDE QTR", "Name": "BRYAN, YVONNE V", "Address": "PO Box 11487", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014487, "Country": "United States", "Land_Value": 2500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.79220151099997, "SHAPE_Area": 787.09018387399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358008.020900003612041, 259254.984499998390675 ], [ 358006.400200001895428, 259252.083299998193979 ], [ 357964.490599997341633, 259255.166299998760223 ], [ 357961.169100001454353, 259255.339099999517202 ], [ 357958.10809999704361, 259255.498500000685453 ], [ 357950.225000001490116, 259257.246399998664856 ], [ 357945.370200000703335, 259258.322799999266863 ], [ 357941.648999996483326, 259259.714999999850988 ], [ 357927.66889999806881, 259264.945199999958277 ], [ 357923.402500003576279, 259266.541299998760223 ], [ 357919.40990000218153, 259268.448600001633167 ], [ 357906.599799998104572, 259274.568199999630451 ], [ 357900.843699999153614, 259277.317999999970198 ], [ 357885.920199997723103, 259285.854200001806021 ], [ 357883.454499997198582, 259287.264499999582767 ], [ 357887.301100000739098, 259294.305799998342991 ], [ 357890.405500002205372, 259293.902499999850988 ], [ 357892.966700002551079, 259295.377700001001358 ], [ 357899.817100003361702, 259292.089800000190735 ], [ 357898.001299999654293, 259286.837799999862909 ], [ 357904.708999998867512, 259282.151399999856949 ], [ 357907.812200002372265, 259280.745099999010563 ], [ 357929.199400000274181, 259271.062300000339746 ], [ 357939.979299999773502, 259266.206900000572205 ], [ 357944.546400003135204, 259264.149700000882149 ], [ 357947.226499997079372, 259262.942499998956919 ], [ 357950.216899998486042, 259262.304999999701977 ], [ 357956.718500003218651, 259261.375799998641014 ], [ 357960.475400000810623, 259261.093100000172853 ], [ 357968.068300001323223, 259260.521800000220537 ], [ 357997.631499998271465, 259257.516499999910593 ], [ 358002.373800002038479, 259256.360700000077486 ], [ 358008.020900003612041, 259254.984499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011100", "MAP": "D9-1041-T72", "PARCEL_NAM": "2D-2", "ACRE": null, "LONGITUDE": -64.93983721, "LATITUDE": 18.36089341, "OBJECTID_1": 4034, "PARCEL_NO_": "102802011100", "Tax_Legal_": "LEREKNLUND 2D-2 GR NORTHSIDE", "Name": "JUNE BRYAN QUERRARD REVOCABLE TRUST", "Address": "7812 St Peter3P1A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 146400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.15148315300002, "SHAPE_Area": 2435.2276397000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357871.943599998950958, 259058.124099999666214 ], [ 357847.18299999833107, 258993.861600000411272 ], [ 357820.811599999666214, 259005.20549999922514 ], [ 357814.971199996769428, 259007.717799998819828 ], [ 357802.172100000083447, 259013.223400000482798 ], [ 357818.80799999833107, 259012.090500000864267 ], [ 357827.372599996626377, 259011.50730000063777 ], [ 357831.611699998378754, 259011.218600001186132 ], [ 357832.91780000180006, 259014.448600001633167 ], [ 357835.135899998247623, 259019.933899998664856 ], [ 357838.082999996840954, 259027.221900001168251 ], [ 357811.8125, 259037.196600001305342 ], [ 357815.597099997103214, 259046.475000001490116 ], [ 357816.23870000243187, 259048.286499999463558 ], [ 357817.171899996697903, 259050.920800000429153 ], [ 357821.186200000345707, 259060.484299998730421 ], [ 357827.109300002455711, 259062.009899999946356 ], [ 357833.300599999725819, 259062.962400000542402 ], [ 357841.238099999725819, 259063.121100001037121 ], [ 357846.476899996399879, 259063.121100001037121 ], [ 357854.096900001168251, 259062.009899999946356 ], [ 357860.129399999976158, 259061.692400000989437 ], [ 357863.463200002908707, 259060.739900000393391 ], [ 357867.749399997293949, 259059.787399999797344 ], [ 357872.145599998533726, 259058.712900001555681 ], [ 357871.943599998950958, 259058.124099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011100", "MAP": "D9-1041-T72", "PARCEL_NAM": "2D-2", "ACRE": null, "LONGITUDE": -64.93977377, "LATITUDE": 18.3611591, "OBJECTID_1": 4034, "PARCEL_NO_": "102802011100", "Tax_Legal_": "LEREKNLUND 2D-2 GR NORTHSIDE", "Name": "JUNE BRYAN QUERRARD REVOCABLE TRUST", "Address": "7812 St Peter3P1A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 146400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.795233419, "SHAPE_Area": 250.31882501800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357873.845200002193451, 259063.666700001806021 ], [ 357872.145599998533726, 259058.712900001555681 ], [ 357867.749399997293949, 259059.787399999797344 ], [ 357863.463200002908707, 259060.739900000393391 ], [ 357860.129399999976158, 259061.692400000989437 ], [ 357854.096900001168251, 259062.009899999946356 ], [ 357846.476899996399879, 259063.121100001037121 ], [ 357841.238099999725819, 259063.121100001037121 ], [ 357833.300599999725819, 259062.962400000542402 ], [ 357827.109300002455711, 259062.009899999946356 ], [ 357821.186200000345707, 259060.484299998730421 ], [ 357823.508100003004074, 259066.016100000590086 ], [ 357827.643799997866154, 259067.037000000476837 ], [ 357831.24210000038147, 259067.566199999302626 ], [ 357835.475500002503395, 259067.671999998390675 ], [ 357839.179700002074242, 259067.989500001072884 ], [ 357843.201300002634525, 259068.095300000160933 ], [ 357847.32880000025034, 259067.777800001204014 ], [ 357851.138800002634525, 259067.460299998521805 ], [ 357855.795500002801418, 259066.931200001388788 ], [ 357860.134700000286102, 259066.29619999974966 ], [ 357864.579700000584126, 259065.661200001835823 ], [ 357869.024700000882149, 259064.708700001239777 ], [ 357873.845200002193451, 259063.666700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011100", "MAP": "D9-1041-T72", "PARCEL_NAM": "2D-2", "ACRE": null, "LONGITUDE": -64.9399498, "LATITUDE": 18.36121056, "OBJECTID_1": 4034, "PARCEL_NO_": "102802011100", "Tax_Legal_": "LEREKNLUND 2D-2 GR NORTHSIDE", "Name": "JUNE BRYAN QUERRARD REVOCABLE TRUST", "Address": "7812 St Peter3P1A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 146400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.6841669509, "SHAPE_Area": 54.032635318799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357837.076899997889996, 259067.809300001710653 ], [ 357835.475500002503395, 259067.671999998390675 ], [ 357831.24210000038147, 259067.566199999302626 ], [ 357827.643799997866154, 259067.037000000476837 ], [ 357823.508100003004074, 259066.016100000590086 ], [ 357824.28490000218153, 259067.866500001400709 ], [ 357827.496299996972084, 259075.09010000154376 ], [ 357837.076899997889996, 259067.809300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011800", "MAP": "D9-4020-T87", "PARCEL_NAM": "2D-5", "ACRE": null, "LONGITUDE": -64.93988272, "LATITUDE": 18.36123989, "OBJECTID_1": 4038, "PARCEL_NO_": "102802011800", "Tax_Legal_": "LERKENLUND 2D-5 GREAT NORTHSIDE QUARTER", "Name": "JUNE BRYAN QUERRARD REVOCABLE TRUST", "Address": "7812 St Peter3P1A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.8857767999, "SHAPE_Area": 118.572128324 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357849.445500001311302, 259067.601399999111891 ], [ 357847.32880000025034, 259067.777800001204014 ], [ 357843.201300002634525, 259068.095300000160933 ], [ 357839.179700002074242, 259067.989500001072884 ], [ 357837.076899997889996, 259067.809300001710653 ], [ 357827.496299996972084, 259075.09010000154376 ], [ 357828.240900002419949, 259076.764800000935793 ], [ 357830.014399997889996, 259081.285799998790026 ], [ 357849.445500001311302, 259067.601399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014300", "MAP": "C9-324-T92", "PARCEL_NAM": "2C-5", "ACRE": null, "LONGITUDE": -64.94057109000001, "LATITUDE": 18.3600568, "OBJECTID_1": 4061, "PARCEL_NO_": "102802014300", "Tax_Legal_": "LEREKNLUND 2C-5 GREAT NORTHSIDE", "Name": "BRYAN, EVELYN & ALLEN", "Address": "PO Box 9500", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79200, "Improved_V": 258100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.127637073299994, "SHAPE_Area": 432.24946240499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357780.836099997162819, 258942.079300001263618 ], [ 357776.213100001215935, 258939.657699998468161 ], [ 357768.593099996447563, 258935.635999999940395 ], [ 357762.031400002539158, 258928.862700000405312 ], [ 357760.814400002360344, 258927.387600000947714 ], [ 357753.114699997007847, 258930.624899998307228 ], [ 357753.45889999717474, 258931.720199998468161 ], [ 357753.776399999856949, 258934.895199999213219 ], [ 357753.776399999856949, 258936.905999999493361 ], [ 357754.199699997901917, 258940.398600000888109 ], [ 357754.093900002539158, 258943.467700000852346 ], [ 357754.517200000584126, 258946.536899998784065 ], [ 357754.517200000584126, 258949.923599999397993 ], [ 357754.517200000584126, 258951.193599998950958 ], [ 357776.530599996447563, 258950.981899999082088 ], [ 357780.836099997162819, 258942.079300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802011000", "MAP": "C9-324-T92", "PARCEL_NAM": "2C REM", "ACRE": ".51", "LONGITUDE": -64.94038344000001, "LATITUDE": 18.36038752, "OBJECTID_1": 4032, "PARCEL_NO_": "102802011000", "Tax_Legal_": "LERKENLUND PORTION 2C REM GREAT NORTHSIDE QTR", "Name": "BRYAN, MARIA E", "Address": "PO Box 9588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 93700, "Improved_V": 291000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.921195541, "SHAPE_Area": 1665.90684201 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357775.683899998664856, 258976.170299999415874 ], [ 357783.303999997675419, 258982.6261 ], [ 357785.314800001680851, 259023.689599998295307 ], [ 357789.336499996483326, 259023.795400001108646 ], [ 357791.559000000357628, 259024.218699999153614 ], [ 357794.839800000190735, 259024.112900000065565 ], [ 357797.485600002110004, 259024.324599999934435 ], [ 357799.07320000231266, 259024.747900001704693 ], [ 357801.613200001418591, 259025.38289999961853 ], [ 357804.153200000524521, 259026.229600001126528 ], [ 357807.970200002193451, 259027.686900001019239 ], [ 357802.172100000083447, 259013.223400000482798 ], [ 357790.316500000655651, 258985.050900001078844 ], [ 357795.323399998247623, 258965.249099999666214 ], [ 357797.780100002884865, 258960.836199998855591 ], [ 357803.643299996852875, 258957.06810000166297 ], [ 357792.405599996447563, 258948.124400001019239 ], [ 357785.103100001811981, 258944.314399998635054 ], [ 357780.836099997162819, 258942.079300001263618 ], [ 357776.530599996447563, 258950.981899999082088 ], [ 357754.517200000584126, 258951.193599998950958 ], [ 357754.517200000584126, 258952.781100001186132 ], [ 357757.903899997472763, 258953.945199999958277 ], [ 357759.597199998795986, 258956.696899998933077 ], [ 357760.338100001215935, 258959.871899999678135 ], [ 357761.39639999717474, 258964.634399998933077 ], [ 357762.983900003135204, 258970.878600001335144 ], [ 357763.7246999964118, 258974.6886 ], [ 357764.042199999094009, 258976.805300001055002 ], [ 357775.683899998664856, 258976.170299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802010900", "MAP": "C9-324-T92", "PARCEL_NAM": "2C-6", "ACRE": ".06", "LONGITUDE": -64.9404146, "LATITUDE": 18.36058871, "OBJECTID_1": 4031, "PARCEL_NO_": "102802010900", "Tax_Legal_": "LERKENLUND 2 REM & 2C-6 GREAT NORTHSIDE QTR", "Name": "BRYAN, KEVIN", "Address": "PO Box 9588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46200, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.763116787, "SHAPE_Area": 291.93289616700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357775.683899998664856, 258976.170299999415874 ], [ 357779.070600003004074, 259022.313700001686811 ], [ 357781.610600002110004, 259022.948699999600649 ], [ 357785.314800001680851, 259023.689599998295307 ], [ 357783.303999997675419, 258982.6261 ], [ 357775.683899998664856, 258976.170299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802010900", "MAP": "C9-324-T92", "PARCEL_NAM": "2 REM", "ACRE": ".24", "LONGITUDE": -64.94057723, "LATITUDE": 18.36051727, "OBJECTID_1": 4031, "PARCEL_NO_": "102802010900", "Tax_Legal_": "LERKENLUND 2 REM & 2C-6 GREAT NORTHSIDE QTR", "Name": "BRYAN, KEVIN", "Address": "PO Box 9588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46200, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.620734373, "SHAPE_Area": 1217.4009303400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357754.517200000584126, 258952.781100001186132 ], [ 357754.517200000584126, 258954.580200001597404 ], [ 357754.411399997770786, 258958.390299998223782 ], [ 357754.093900002539158, 258962.517799999564886 ], [ 357753.882200002670288, 258968.021099999547005 ], [ 357753.353100001811981, 258972.466099999845028 ], [ 357753.035599999129772, 258977.44029999896884 ], [ 357752.612199999392033, 258980.826999999582767 ], [ 357751.765600003302097, 258983.896099999547005 ], [ 357750.601400002837181, 258987.7060999982059 ], [ 357749.543099999427795, 258992.151200000196695 ], [ 357748.167199999094009, 258998.077799998223782 ], [ 357747.8496999964118, 259000.088700000196695 ], [ 357748.06139999628067, 259001.782000001519918 ], [ 357748.167199999094009, 259003.369500000029802 ], [ 357748.484700001776218, 259004.745299998670816 ], [ 357748.802199997007847, 259005.380399998277426 ], [ 357750.601400002837181, 259006.861999999731779 ], [ 357753.353100001811981, 259008.872900001704693 ], [ 357755.99889999628067, 259010.883699998259544 ], [ 357759.914700001478195, 259013.212000001221895 ], [ 357763.407200001180172, 259014.799499999731779 ], [ 357765.418099999427795, 259016.175400000065565 ], [ 357769.016400001943111, 259017.868700001388788 ], [ 357772.403099998831749, 259019.244500000029802 ], [ 357775.789800003170967, 259020.620400000363588 ], [ 357779.070600003004074, 259022.313700001686811 ], [ 357775.683899998664856, 258976.170299999415874 ], [ 357764.042199999094009, 258976.805300001055002 ], [ 357763.7246999964118, 258974.6886 ], [ 357762.983900003135204, 258970.878600001335144 ], [ 357761.39639999717474, 258964.634399998933077 ], [ 357760.338100001215935, 258959.871899999678135 ], [ 357759.597199998795986, 258956.696899998933077 ], [ 357757.903899997472763, 258953.945199999958277 ], [ 357754.517200000584126, 258952.781100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014600", "MAP": "C9-324-T92", "PARCEL_NAM": "2C-10", "ACRE": null, "LONGITUDE": -64.94061472, "LATITUDE": 18.36046135, "OBJECTID_1": 4064, "PARCEL_NO_": "102802014600", "Tax_Legal_": "LERKENLUND 2C-10(RAODWAY) GRT. NORTHSIDE QTR.", "Name": "BRYAN, MARIO", "Address": "PO Box 12481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.75572345299997, "SHAPE_Area": 663.48239177100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357741.533299997448921, 258924.547699999064207 ], [ 357746.436800003051758, 258927.989599999040365 ], [ 357747.230599999427795, 258929.338899999856949 ], [ 357748.42119999974966, 258931.164599999785423 ], [ 357748.73870000243187, 258933.863299999386072 ], [ 357749.691200003027916, 258939.260800000280142 ], [ 357749.929300002753735, 258946.484000001102686 ], [ 357750.643700003623962, 258953.151500001549721 ], [ 357750.643700003623962, 258959.501499999314547 ], [ 357750.643700003623962, 258963.86710000038147 ], [ 357749.929300002753735, 258968.470899999141693 ], [ 357749.373700000345707, 258971.090300001204014 ], [ 357748.42119999974966, 258975.138399999588728 ], [ 357747.706799998879433, 258979.662799999117851 ], [ 357746.992499999701977, 258982.917199999094009 ], [ 357746.278099998831749, 258986.171599999070168 ], [ 357744.770000003278255, 258990.537200000137091 ], [ 357743.261799998581409, 258995.140999998897314 ], [ 357742.547499999403954, 258997.919100001454353 ], [ 357742.388700000941753, 259000.062199998646975 ], [ 357742.547499999403954, 259002.205299999564886 ], [ 357743.261799998581409, 259004.427799999713898 ], [ 357744.293700002133846, 259006.570999998599291 ], [ 357745.88120000064373, 259008.475999999791384 ], [ 357748.103699997067451, 259010.539700001478195 ], [ 357750.564300000667572, 259012.682900000363588 ], [ 357753.501199997961521, 259014.667199999094009 ], [ 357756.200000002980232, 259016.889699999243021 ], [ 357758.740000002086163, 259018.000999998301268 ], [ 357763.026199996471405, 259020.064800001680851 ], [ 357766.201300002634525, 259021.652300000190735 ], [ 357769.217500001192093, 259022.604800000786781 ], [ 357774.376900002360344, 259023.636599998921156 ], [ 357779.298199996352196, 259024.827300000935793 ], [ 357782.869999997317791, 259025.46229999884963 ], [ 357786.759400002658367, 259026.176600001752377 ], [ 357790.013800002634525, 259026.335400000214577 ], [ 357794.696900002658367, 259027.129099998623133 ], [ 357799.935699999332428, 259028.399099998176098 ], [ 357803.110699996352196, 259030.065999999642372 ], [ 357806.920699998736382, 259032.288499999791384 ], [ 357808.905100002884865, 259034.431699998676777 ], [ 357811.8125, 259037.196600001305342 ], [ 357810.068000003695488, 259032.919700000435114 ], [ 357807.970200002193451, 259027.686900001019239 ], [ 357804.153200000524521, 259026.229600001126528 ], [ 357801.613200001418591, 259025.38289999961853 ], [ 357799.07320000231266, 259024.747900001704693 ], [ 357797.485600002110004, 259024.324599999934435 ], [ 357794.839800000190735, 259024.112900000065565 ], [ 357791.559000000357628, 259024.218699999153614 ], [ 357789.336499996483326, 259023.795400001108646 ], [ 357785.314800001680851, 259023.689599998295307 ], [ 357781.610600002110004, 259022.948699999600649 ], [ 357779.070600003004074, 259022.313700001686811 ], [ 357775.789800003170967, 259020.620400000363588 ], [ 357772.403099998831749, 259019.244500000029802 ], [ 357769.016400001943111, 259017.868700001388788 ], [ 357765.418099999427795, 259016.175400000065565 ], [ 357763.407200001180172, 259014.799499999731779 ], [ 357759.914700001478195, 259013.212000001221895 ], [ 357755.99889999628067, 259010.883699998259544 ], [ 357753.353100001811981, 259008.872900001704693 ], [ 357750.601400002837181, 259006.861999999731779 ], [ 357748.802199997007847, 259005.380399998277426 ], [ 357748.484700001776218, 259004.745299998670816 ], [ 357748.167199999094009, 259003.369500000029802 ], [ 357748.06139999628067, 259001.782000001519918 ], [ 357747.8496999964118, 259000.088700000196695 ], [ 357748.167199999094009, 258998.077799998223782 ], [ 357749.543099999427795, 258992.151200000196695 ], [ 357750.601400002837181, 258987.7060999982059 ], [ 357751.765600003302097, 258983.896099999547005 ], [ 357752.612199999392033, 258980.826999999582767 ], [ 357753.035599999129772, 258977.44029999896884 ], [ 357753.353100001811981, 258972.466099999845028 ], [ 357753.882200002670288, 258968.021099999547005 ], [ 357754.093900002539158, 258962.517799999564886 ], [ 357754.411399997770786, 258958.390299998223782 ], [ 357754.517200000584126, 258954.580200001597404 ], [ 357754.517200000584126, 258949.923599999397993 ], [ 357754.517200000584126, 258946.536899998784065 ], [ 357754.093900002539158, 258943.467700000852346 ], [ 357754.199699997901917, 258940.398600000888109 ], [ 357753.776399999856949, 258936.905999999493361 ], [ 357753.776399999856949, 258934.895199999213219 ], [ 357753.45889999717474, 258931.720199998468161 ], [ 357752.294699996709824, 258928.015999998897314 ], [ 357750.601400002837181, 258924.946899998933077 ], [ 357747.318899996578693, 258920.906700000166893 ], [ 357745.693499997258186, 258922.413100000470877 ], [ 357741.533299997448921, 258924.547699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014300", "MAP": "C9-324-T92", "PARCEL_NAM": "2C-5", "ACRE": ".57", "LONGITUDE": -64.940881, "LATITUDE": 18.36023978, "OBJECTID_1": 4061, "PARCEL_NO_": "102802014300", "Tax_Legal_": "LEREKNLUND 2C-5 GREAT NORTHSIDE", "Name": "BRYAN, EVELYN & ALLEN", "Address": "PO Box 9500", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79200, "Improved_V": 258100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.47549432, "SHAPE_Area": 2374.1744110599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357742.388700000941753, 259000.062199998646975 ], [ 357742.547499999403954, 258997.919100001454353 ], [ 357743.261799998581409, 258995.140999998897314 ], [ 357744.770000003278255, 258990.537200000137091 ], [ 357746.278099998831749, 258986.171599999070168 ], [ 357746.992499999701977, 258982.917199999094009 ], [ 357747.706799998879433, 258979.662799999117851 ], [ 357748.42119999974966, 258975.138399999588728 ], [ 357749.373700000345707, 258971.090300001204014 ], [ 357749.929300002753735, 258968.470899999141693 ], [ 357750.643700003623962, 258963.86710000038147 ], [ 357750.643700003623962, 258959.501499999314547 ], [ 357750.643700003623962, 258953.151500001549721 ], [ 357749.929300002753735, 258946.484000001102686 ], [ 357749.691200003027916, 258939.260800000280142 ], [ 357748.73870000243187, 258933.863299999386072 ], [ 357748.42119999974966, 258931.164599999785423 ], [ 357747.230599999427795, 258929.338899999856949 ], [ 357746.436800003051758, 258927.989599999040365 ], [ 357741.533299997448921, 258924.547699999064207 ], [ 357736.784500002861023, 258926.984200000762939 ], [ 357719.83219999819994, 258929.167500000447035 ], [ 357714.969099998474121, 258932.083000000566244 ], [ 357711.702500000596046, 258936.911499999463558 ], [ 357712.442299999296665, 258944.728000000119209 ], [ 357714.02250000089407, 258948.540600001811981 ], [ 357713.939800001680851, 258958.250199999660254 ], [ 357709.859700001776218, 258963.916299998760223 ], [ 357705.788599997758865, 258968.527100000530481 ], [ 357728.288000002503395, 258977.78830000013113 ], [ 357712.759499996900558, 259002.147999998182058 ], [ 357742.388700000941753, 259000.062199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014200", "MAP": "C9-324-T92", "PARCEL_NAM": "2C-4", "ACRE": ".58", "LONGITUDE": -64.94087715000001, "LATITUDE": 18.36086174, "OBJECTID_1": 4060, "PARCEL_NO_": "102802014200", "Tax_Legal_": "LERKENLUND 2C-4 GRT.NORTHSIDE QTR.", "Name": "BRYAN, MARIA E", "Address": "PO Box 9588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80400, "Improved_V": 170100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.115803392, "SHAPE_Area": 2224.4929814299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357763.026199996471405, 259020.064800001680851 ], [ 357758.740000002086163, 259018.000999998301268 ], [ 357756.200000002980232, 259016.889699999243021 ], [ 357753.501199997961521, 259014.667199999094009 ], [ 357750.564300000667572, 259012.682900000363588 ], [ 357748.103699997067451, 259010.539700001478195 ], [ 357745.88120000064373, 259008.475999999791384 ], [ 357744.293700002133846, 259006.570999998599291 ], [ 357743.261799998581409, 259004.427799999713898 ], [ 357742.547499999403954, 259002.205299999564886 ], [ 357742.388700000941753, 259000.062199998646975 ], [ 357712.759499996900558, 259002.147999998182058 ], [ 357713.101899996399879, 259056.613000001758337 ], [ 357726.57150000333786, 259071.254900000989437 ], [ 357763.026199996471405, 259020.064800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013900", "MAP": "C9-324-T92", "PARCEL_NAM": "2C-1", "ACRE": ".48", "LONGITUDE": -64.94038475000001, "LATITUDE": 18.36125408, "OBJECTID_1": 4057, "PARCEL_NO_": "102802013900", "Tax_Legal_": "LERKENLUND REM 2C-1 GT. NORTHSIDE", "Name": "BRYAN, MARIO A", "Address": "PO Box 12481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85800, "Improved_V": 283200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.128314168, "SHAPE_Area": 2345.9198380500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357793.641199998557568, 259041.948499999940395 ], [ 357759.192400000989437, 259050.997299998998642 ], [ 357765.066200003027916, 259105.766100000590086 ], [ 357803.801299996674061, 259095.606100000441074 ], [ 357813.167499996721745, 259088.9386 ], [ 357793.641199998557568, 259041.948499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014400", "MAP": "C9-324-T92", "PARCEL_NAM": "2C-7", "ACRE": ".26", "LONGITUDE": -64.94012678, "LATITUDE": 18.36111664, "OBJECTID_1": 4062, "PARCEL_NO_": "102802014400", "Tax_Legal_": "LERKENLUND REM 2C-7 GRT. NORTHSIDE QTR.", "Name": "BRYAN, MARIO", "Address": "PO Box 12481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.749548748, "SHAPE_Area": 909.51562597899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357827.496299996972084, 259075.09010000154376 ], [ 357824.28490000218153, 259067.866500001400709 ], [ 357817.171899996697903, 259050.920800000429153 ], [ 357815.597099997103214, 259046.475000001490116 ], [ 357813.126599997282028, 259040.418400000780821 ], [ 357811.8125, 259037.196600001305342 ], [ 357808.905100002884865, 259034.431699998676777 ], [ 357806.920699998736382, 259032.288499999791384 ], [ 357805.145499996840954, 259031.252999998629093 ], [ 357796.975000001490116, 259040.361000001430511 ], [ 357793.641199998557568, 259041.948499999940395 ], [ 357813.167499996721745, 259088.9386 ], [ 357827.496299996972084, 259075.09010000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802014500", "MAP": "C9-324-T92", "PARCEL_NAM": "2C-8", "ACRE": ".17", "LONGITUDE": -64.94031435, "LATITUDE": 18.36150986, "OBJECTID_1": 4063, "PARCEL_NO_": "102802014500", "Tax_Legal_": "LERKENLUND 2C-8 GRT. NORTHSIDE QTR.", "Name": "BRYAN, ALLAN", "Address": "PO Box 9500", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.242492043, "SHAPE_Area": 566.45292456300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357827.496299996972084, 259075.09010000154376 ], [ 357813.167499996721745, 259088.9386 ], [ 357803.801299996674061, 259095.606100000441074 ], [ 357765.066200003027916, 259105.766100000590086 ], [ 357766.026399999856949, 259113.843699999153614 ], [ 357773.003100000321865, 259121.365600001066923 ], [ 357779.275200001895428, 259116.956199999898672 ], [ 357817.078000001609325, 259090.380199998617172 ], [ 357821.260899998247623, 259087.439599998295307 ], [ 357826.870800003409386, 259083.495799999684095 ], [ 357830.014399997889996, 259081.285799998790026 ], [ 357828.240900002419949, 259076.764800000935793 ], [ 357827.496299996972084, 259075.09010000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802016200", "MAP": "D9-8180-T008", "PARCEL_NAM": "2E-3-B", "ACRE": ".501", "LONGITUDE": -64.93924848, "LATITUDE": 18.36028889, "OBJECTID_1": 4080, "PARCEL_NO_": "102802016200", "Tax_Legal_": "2E-3-B LERKENLUND NO.9 GT NORTHSIDE QTR", "Name": "BERRY, PATRICK KELLY", "Address": "2E-3 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.881501289, "SHAPE_Area": 2081.1329549799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357874.940700002014637, 258947.114500001072884 ], [ 357899.725000001490116, 258975.466600000858307 ], [ 357899.090000003576279, 258995.9983000010252 ], [ 357894.433399997651577, 259004.253299999982119 ], [ 357896.1266999989748, 259010.179999999701977 ], [ 357907.17509999871254, 259014.959600001573563 ], [ 357910.26410000026226, 259009.040800001472235 ], [ 357915.373499996960163, 258999.604899998754263 ], [ 357915.375699996948242, 258999.341699998825788 ], [ 357923.736299999058247, 258980.981300000101328 ], [ 357926.993900001049042, 258971.267099998891354 ], [ 357926.998199999332428, 258970.740600001066923 ], [ 357928.922499999403954, 258967.828299999237061 ], [ 357925.014200001955032, 258962.740200001746416 ], [ 357911.852300003170967, 258945.605099998414516 ], [ 357910.013999998569489, 258943.389699999243021 ], [ 357896.045400001108646, 258928.907499998807907 ], [ 357874.940700002014637, 258947.114500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802025400", "MAP": "D9-5110-T91", "PARCEL_NAM": "3B-1", "ACRE": ".06", "LONGITUDE": -64.93857778, "LATITUDE": 18.35883444, "OBJECTID_1": 4136, "PARCEL_NO_": "102802025400", "Tax_Legal_": "LEREKNLUND 3B-1 GT. NORTHSIDE", "Name": "BRYAN, RONNIE", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032621, "Country": "United States", "Land_Value": 14300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.991822255, "SHAPE_Area": 406.21392119500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357993.525600001215935, 258795.252199999988079 ], [ 357987.89130000025034, 258785.852699998766184 ], [ 357985.523599997162819, 258788.00959999859333 ], [ 357974.964000001549721, 258803.078600000590086 ], [ 357969.197800002992153, 258811.307300001382828 ], [ 357960.220499999821186, 258823.899500001221895 ], [ 357956.901699997484684, 258834.849199999123812 ], [ 357955.972499996423721, 258836.987900000065565 ], [ 357977.208800002932549, 258813.386399999260902 ], [ 357978.612800002098083, 258811.825899999588728 ], [ 357993.525600001215935, 258795.252199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102802026100", "MAP": "D9-2211-T82", "PARCEL_NAM": "3AC-2", "ACRE": null, "LONGITUDE": -64.93420382, "LATITUDE": 18.35650069, "OBJECTID_1": 4143, "PARCEL_NO_": "102802026100", "Tax_Legal_": "MISGUNST RIGHT OF WAY 3AC-2 GT. NORTHSIDE QTR.", "Name": "HEWITT, CHARLES & CAREY,KATHER, ROWLES, WILLIAM", "Address": "PO Box 7798", "City": "Portland", "State": "Maine", "Zip": 4112, "Country": "United States", "Land_Value": 2000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.37090880400001, "SHAPE_Area": 689.149448699 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358391.491200000047684, 258555.962900001555681 ], [ 358393.009800001978874, 258555.560699999332428 ], [ 358394.409699998795986, 258555.189899999648333 ], [ 358399.343800000846386, 258553.883000001311302 ], [ 358402.408900000154972, 258553.071100000292063 ], [ 358409.27139999717474, 258551.253299999982119 ], [ 358411.759800001978874, 258550.894200000911951 ], [ 358414.537299998104572, 258550.493299998342991 ], [ 358417.314900003373623, 258550.092300001531839 ], [ 358420.289099998772144, 258549.836800001561642 ], [ 358424.786200001835823, 258549.775499999523163 ], [ 358428.637299999594688, 258549.723000001162291 ], [ 358430.720200002193451, 258550.087600000202656 ], [ 358432.818899996578693, 258550.454900000244379 ], [ 358436.351999998092651, 258551.073300000280142 ], [ 358440.254199996590614, 258551.756299998611212 ], [ 358443.854699999094009, 258552.386399999260902 ], [ 358446.351000003516674, 258552.823300000280142 ], [ 358449.125699996948242, 258553.695799998939037 ], [ 358450.721799999475479, 258554.197599999606609 ], [ 358454.440200001001358, 258555.366700001060963 ], [ 358457.3158999979496, 258556.270899999886751 ], [ 358459.906099997460842, 258557.085299998521805 ], [ 358462.458499997854233, 258557.887800000607967 ], [ 358465.652099996805191, 258558.8918999992311 ], [ 358466.883799999952316, 258559.468600001186132 ], [ 358468.599200002849102, 258560.271600000560284 ], [ 358472.077399998903275, 258561.89979999884963 ], [ 358473.887699998915195, 258563.948100000619888 ], [ 358475.272100001573563, 258565.514499999582767 ], [ 358476.329300001263618, 258567.548500001430511 ], [ 358477.396700002253056, 258569.602200001478195 ], [ 358478.269400000572205, 258571.280999999493361 ], [ 358479.239000000059605, 258573.14640000090003 ], [ 358479.626900002360344, 258574.348400000482798 ], [ 358479.94879999756813, 258575.345499999821186 ], [ 358480.810199998319149, 258578.014400001615286 ], [ 358487.294900000095367, 258574.056699998676777 ], [ 358480.144199997186661, 258561.543600000441074 ], [ 358475.347699999809265, 258556.64919999986887 ], [ 358472.719400003552437, 258555.322500001639128 ], [ 358470.817699998617172, 258554.36259999871254 ], [ 358468.121399998664856, 258553.001499999314547 ], [ 358466.119000002741814, 258552.350000001490116 ], [ 358463.295400001108646, 258551.43129999935627 ], [ 358459.754100002348423, 258550.278999999165535 ], [ 358455.892800003290176, 258549.022599998861551 ], [ 358453.186099998652935, 258548.141800001263618 ], [ 358450.204000003635883, 258547.171500001102686 ], [ 358446.747100003063679, 258546.251299999654293 ], [ 358442.200699999928474, 258545.220400001853704 ], [ 358439.164300002157688, 258544.531800001859665 ], [ 358435.534599997103214, 258544.136399999260902 ], [ 358432.629900000989437, 258543.819899998605251 ], [ 358428.691200003027916, 258543.390700001269579 ], [ 358426.248599998652935, 258543.4239999987185 ], [ 358422.545100003480911, 258543.474399998784065 ], [ 358419.013700000941753, 258543.52250000089407 ], [ 358417.464199997484684, 258543.741399999707937 ], [ 358414.926500000059605, 258544.099800001829863 ], [ 358412.536899998784065, 258544.437300000339746 ], [ 358409.758100003004074, 258544.829700000584126 ], [ 358407.710900001227856, 258545.11879999935627 ], [ 358404.008699998259544, 258546.103900000452995 ], [ 358399.940700002014637, 258547.186200000345707 ], [ 358396.589100003242493, 258548.078000001609325 ], [ 358395.131499998271465, 258548.465799998492002 ], [ 358393.525399997830391, 258548.893100000917912 ], [ 358386.69820000231266, 258550.646299999207258 ], [ 358391.491200000047684, 258555.962900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102803022100", "MAP": "D9-5431-T92", "PARCEL_NAM": "55B", "ACRE": null, "LONGITUDE": -64.94696658, "LATITUDE": 18.34914745, "OBJECTID_1": 4294, "PARCEL_NO_": "102803022100", "Tax_Legal_": "R.O.W. THRU 55B ESTATE SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "LAPLACE, RANDOLPH V.", "Address": "ESTATE HULL 2I", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.90399145500001, "SHAPE_Area": 407.19941186099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357131.052799999713898, 257713.938200000673532 ], [ 357127.872500002384186, 257708.634799998253584 ], [ 357124.659400001168251, 257710.050799999386072 ], [ 357122.098700001835823, 257711.843800000846386 ], [ 357120.330200001597404, 257713.081999998539686 ], [ 357117.69879999756813, 257714.924499999731779 ], [ 357115.610699996352196, 257716.386500000953674 ], [ 357112.263599999248981, 257718.960200000554323 ], [ 357109.470499999821186, 257721.107799999415874 ], [ 357106.754199996590614, 257723.196400001645088 ], [ 357104.293499998748302, 257725.088500000536442 ], [ 357101.250299997627735, 257726.744699999690056 ], [ 357099.569799996912479, 257727.659200001507998 ], [ 357097.816899999976158, 257728.613099999725819 ], [ 357095.450400002300739, 257728.92960000038147 ], [ 357091.512000001966953, 257729.456199999898672 ], [ 357089.626800000667572, 257730.316700000315905 ], [ 357087.50959999859333, 257731.28319999948144 ], [ 357084.473700001835823, 257732.6689000017941 ], [ 357081.103699997067451, 257734.20719999819994 ], [ 357079.320600003004074, 257735.021099999547005 ], [ 357075.788099996745586, 257736.745900001376867 ], [ 357073.105099998414516, 257738.055799998342991 ], [ 357069.784199997782707, 257739.677200000733137 ], [ 357065.515399999916553, 257741.761399999260902 ], [ 357064.11429999768734, 257742.445500001311302 ], [ 357062.260899998247623, 257743.350400000810623 ], [ 357064.160400003194809, 257746.518100000917912 ], [ 357065.441200003027916, 257748.653799999505281 ], [ 357069.236900001764297, 257746.466099999845028 ], [ 357071.335500001907349, 257745.256599999964237 ], [ 357075.044799998402596, 257743.118700001388788 ], [ 357079.092699997127056, 257740.815400000661612 ], [ 357081.009400002658367, 257739.724800001829863 ], [ 357082.686300002038479, 257738.770599998533726 ], [ 357084.226700000464916, 257737.894099999219179 ], [ 357086.045100003480911, 257736.859400000423193 ], [ 357087.802699998021126, 257736.267700001597404 ], [ 357089.659199997782707, 257735.642700001597404 ], [ 357091.895499996840954, 257734.889800000935793 ], [ 357094.368900001049042, 257734.057100001722574 ], [ 357096.318599998950958, 257733.400699999183416 ], [ 357098.317699998617172, 257732.727699998766184 ], [ 357100.074400000274181, 257732.136199999600649 ], [ 357104.587200000882149, 257729.736699998378754 ], [ 357106.161700002849102, 257728.899599999189377 ], [ 357108.362800002098083, 257727.729200001806021 ], [ 357110.053199999034405, 257726.830400001257658 ], [ 357113.515100002288818, 257724.989700000733137 ], [ 357116.474799998104572, 257723.4983000010252 ], [ 357118.693800002336502, 257722.380199998617172 ], [ 357122.371699996292591, 257720.526799999177456 ], [ 357124.51969999819994, 257718.896600000560284 ], [ 357128.160400003194809, 257716.133400000631809 ], [ 357131.052799999713898, 257713.938200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803022700", "MAP": "F9-2930-T72", "PARCEL_NAM": "84-A", "ACRE": ".13", "LONGITUDE": -64.94464379, "LATITUDE": 18.34832015, "OBJECTID_1": 4300, "PARCEL_NO_": "102803022700", "Tax_Legal_": "SOLBERG 84 LITTLE NORTHSIDE", "Name": "CHARLENE ONEAL HENDERSON REVOCABLE TRUST", "Address": "PO Box 308666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 276100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.307817489, "SHAPE_Area": 514.19494560800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357356.398199997842312, 257645.284099999815226 ], [ 357327.776600003242493, 257615.203699998557568 ], [ 357318.433200001716614, 257620.803100001066923 ], [ 357318.922899998724461, 257620.905900001525879 ], [ 357326.94650000333786, 257625.615600001066923 ], [ 357334.92509999871254, 257635.602299999445677 ], [ 357348.519100002944469, 257649.012499999254942 ], [ 357351.735799998044968, 257652.315200001001358 ], [ 357354.114699997007847, 257654.757800001651049 ], [ 357359.721199996769428, 257659.236699998378754 ], [ 357364.539300002157688, 257661.598099999129772 ], [ 357373.396099999547005, 257663.148299999535084 ], [ 357356.398199997842312, 257645.284099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803026800", "MAP": "D9-6427-T98", "PARCEL_NAM": "13D", "ACRE": ".64", "LONGITUDE": -64.94648348, "LATITUDE": 18.35138844, "OBJECTID_1": 4334, "PARCEL_NO_": "102803026800", "Tax_Legal_": "13-D ESTATE SOLBERG #1 LITTLE NORTHSIDE QTR", "Name": "WRENSFORD, GLENDA", "Address": "PO BOX 502955", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 102300, "Improved_V": 502600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.49260206299999, "SHAPE_Area": 4006.9732447699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357107.454199999570847, 257970.230799999088049 ], [ 357111.085400000214577, 257986.028299998492002 ], [ 357175.112700000405312, 258031.994600001722574 ], [ 357170.411100000143051, 257937.754700001329184 ], [ 357136.437700003385544, 257933.730700001120567 ], [ 357132.298299998044968, 257946.362399999052286 ], [ 357126.5929000005126, 257953.492899999022484 ], [ 357112.774099998176098, 257966.467599999159575 ], [ 357107.454199999570847, 257970.230799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803025100", "MAP": "D9-6427-T98", "PARCEL_NAM": "13C", "ACRE": null, "LONGITUDE": -64.94638344000001, "LATITUDE": 18.35065594, "OBJECTID_1": 4320, "PARCEL_NO_": "102803025100", "Tax_Legal_": "13 SOLBERG (ROW) No.1 LITTLE NORTHSIDE QUARTER", "Name": "BOSCHULTE, LOUIS J", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 77800, "Improved_V": 731100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.993293884, "SHAPE_Area": 2707.4753055900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357136.437700003385544, 257933.730700001120567 ], [ 357170.411100000143051, 257937.754700001329184 ], [ 357169.602600000798702, 257921.547600001096725 ], [ 357168.956299997866154, 257902.754999998956919 ], [ 357191.745300002396107, 257878.032400000840425 ], [ 357160.522100001573563, 257851.601300001144409 ], [ 357159.696000002324581, 257853.916600000113249 ], [ 357154.778999999165535, 257863.16440000012517 ], [ 357149.075499996542931, 257870.083799999207258 ], [ 357143.377300001680851, 257876.370000001043081 ], [ 357133.633199997246265, 257884.311799999326468 ], [ 357134.398199997842312, 257889.173200000077486 ], [ 357138.373999997973442, 257895.749699998646975 ], [ 357140.724600002169609, 257903.790500000119209 ], [ 357139.821199998259544, 257915.182100001722574 ], [ 357136.437700003385544, 257933.730700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803026900", "MAP": "D9-6427-T98", "PARCEL_NAM": "13", "ACRE": null, "LONGITUDE": -64.94690349, "LATITUDE": 18.35142162, "OBJECTID_1": 4335, "PARCEL_NO_": "102803026900", "Tax_Legal_": "13-E SOLBERG No.1 LITTLE NORTHSIDE QUARTER", "Name": "WRENSFORD, GLENDA", "Address": "PO BOX 502955", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 103400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.370698885800003, "SHAPE_Area": 155.73179145 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357092.118199996650219, 257985.120099999010563 ], [ 357111.085400000214577, 257986.028299998492002 ], [ 357107.454199999570847, 257970.230799999088049 ], [ 357103.038999997079372, 257973.353999998420477 ], [ 357100.576999999582767, 257978.400100000202656 ], [ 357097.339100003242493, 257979.851199999451637 ], [ 357094.921999998390675, 257979.620400000363588 ], [ 357092.118199996650219, 257985.120099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102803041900", "MAP": "D9-6449-T98", "PARCEL_NAM": "97-3-B", "ACRE": ".17", "LONGITUDE": -64.94594361, "LATITUDE": 18.35021681, "OBJECTID_1": 4405, "PARCEL_NO_": "102803041900", "Tax_Legal_": "SOLBERG R.O.W. 97-3-B", "Name": "SWEET, LISA N. & STEWART, TRIPP M.", "Address": "43182 Maple Cross St", "City": "SOUTH RIDING", "State": "Virginia", "Zip": 20152, "Country": "United States", "Land_Value": 33500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.530684581, "SHAPE_Area": 448.83673556999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357234.081699997186661, 257870.501800000667572 ], [ 357241.804999999701977, 257870.4206000007689 ], [ 357239.171899996697903, 257868.944699998944998 ], [ 357236.50900000333786, 257867.451999999582767 ], [ 357233.860699996352196, 257865.967399999499321 ], [ 357231.574799999594688, 257864.686099998652935 ], [ 357228.829599998891354, 257863.147199999541044 ], [ 357225.754299998283386, 257861.423300001770258 ], [ 357223.101199999451637, 257859.514899998903275 ], [ 357221.574199996888638, 257858.416499998420477 ], [ 357219.536799997091293, 257856.9510000012815 ], [ 357217.303099997341633, 257855.344200000166893 ], [ 357215.190499998629093, 257853.824599999934435 ], [ 357213.228500001132488, 257852.413199998438358 ], [ 357211.475599996745586, 257851.152399998158216 ], [ 357209.725100003182888, 257849.893100000917912 ], [ 357207.836400002241135, 257847.927799999713898 ], [ 357206.046300001442432, 257846.065000001341105 ], [ 357204.798900000751019, 257844.767099998891354 ], [ 357202.624600000679493, 257842.504399999976158 ], [ 357197.653800003230572, 257837.331900000572205 ], [ 357194.524599999189377, 257834.075699999928474 ], [ 357192.9662000015378, 257832.453999999910593 ], [ 357189.934900000691414, 257829.299699999392033 ], [ 357187.290899999439716, 257826.548300001770258 ], [ 357185.113499999046326, 257824.282499998807907 ], [ 357183.348800003528595, 257822.446100000292063 ], [ 357182.572999998927116, 257818.851199999451637 ], [ 357176.059600003063679, 257826.186099998652935 ], [ 357179.284800000488758, 257826.212499998509884 ], [ 357181.973200000822544, 257829.177600000053644 ], [ 357183.780599996447563, 257831.171100001782179 ], [ 357186.284299999475479, 257833.932399999350309 ], [ 357189.146099999547005, 257837.088700000196695 ], [ 357191.484399996697903, 257839.667599998414516 ], [ 357193.80799999833107, 257842.23030000180006 ], [ 357196.218000002205372, 257844.888199999928474 ], [ 357198.405599996447563, 257847.301100000739098 ], [ 357200.450099997222424, 257849.555900000035763 ], [ 357201.652999997138977, 257850.882500000298023 ], [ 357207.392300002276897, 257855.744500000029802 ], [ 357210.459499999880791, 257858.342799998819828 ], [ 357212.5912000015378, 257859.639299999922514 ], [ 357217.522900000214577, 257862.638399999588728 ], [ 357223.220399998128414, 257866.103300001472235 ], [ 357226.84740000218153, 257868.309099998325109 ], [ 357230.514799997210503, 257870.539299998432398 ], [ 357234.081699997186661, 257870.501800000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102803042200", "MAP": "D9-6443-T98", "PARCEL_NAM": "19-5", "ACRE": ".16", "LONGITUDE": -64.94281991, "LATITUDE": 18.35389354, "OBJECTID_1": 4408, "PARCEL_NO_": "102803042200", "Tax_Legal_": "19-5 ESTATE SOLBERG R.O.W. #1 LITTLE NORTHSIDE QTR", "Name": "NORKAITIS, GARY V. & PAULA DUMAS", "Address": "PO Box 308336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.06874136499999, "SHAPE_Area": 639.55397631599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357504.219099998474121, 258208.629299998283386 ], [ 357504.066200003027916, 258226.570999998599291 ], [ 357505.698600001633167, 258224.262299999594688 ], [ 357508.115800000727177, 258224.493200000375509 ], [ 357509.481600001454353, 258226.373399998992682 ], [ 357510.860299997031689, 258228.271299999207258 ], [ 357512.897900000214577, 258231.076200000941753 ], [ 357515.655100002884865, 258236.367199998348951 ], [ 357517.063400000333786, 258239.069899998605251 ], [ 357518.372900001704693, 258241.582699999213219 ], [ 357519.75280000269413, 258244.230799999088049 ], [ 357520.835900001227856, 258246.309300001710653 ], [ 357521.625299997627735, 258247.824000000953674 ], [ 357523.332299999892712, 258250.485100001096725 ], [ 357524.594099998474121, 258252.452300000935793 ], [ 357526.16499999910593, 258254.901099998503923 ], [ 357529.872900001704693, 258260.681600000709295 ], [ 357531.97070000320673, 258263.951799999922514 ], [ 357533.572499997913837, 258265.231499999761581 ], [ 357534.204599998891354, 258266.670400001108646 ], [ 357535.154600001871586, 258268.833000000566244 ], [ 357537.711599998176098, 258272.27309999987483 ], [ 357540.513700000941753, 258276.042899999767542 ], [ 357542.95719999819994, 258279.330299999564886 ], [ 357545.001199997961521, 258282.080200001597404 ], [ 357548.976300001144409, 258287.428100001066923 ], [ 357551.099200002849102, 258290.284000001847744 ], [ 357553.907200001180172, 258293.473799999803305 ], [ 357556.285400003194809, 258296.175299998372793 ], [ 357558.565999999642372, 258298.765900000929832 ], [ 357560.263899996876717, 258300.694499999284744 ], [ 357563.07880000025034, 258303.892000000923872 ], [ 357564.750799998641014, 258296.939599998295307 ], [ 357562.133699998259544, 258293.920200001448393 ], [ 357559.404500000178814, 258290.771600000560284 ], [ 357557.036899998784065, 258288.039900001138449 ], [ 357554.962499998509884, 258285.646699998527765 ], [ 357552.773000001907349, 258283.12049999833107 ], [ 357551.526799999177456, 258281.339200001209974 ], [ 357548.917499996721745, 258277.609600000083447 ], [ 357546.338100001215935, 258273.922600001096725 ], [ 357544.220799997448921, 258270.896099999547005 ], [ 357542.155599996447563, 258267.944200001657009 ], [ 357539.471900001168251, 258264.107999999076128 ], [ 357536.817800000309944, 258260.314399998635054 ], [ 357535.246299996972084, 258258.067999999970198 ], [ 357534.145599998533726, 258255.51240000128746 ], [ 357532.874099999666214, 258252.560199998319149 ], [ 357532.041500002145767, 258251.370099999010563 ], [ 357531.228900000452995, 258250.208599999547005 ], [ 357530.013800002634525, 258248.471700001507998 ], [ 357528.373599998652935, 258246.127300001680851 ], [ 357526.629100002348423, 258243.633699998259544 ], [ 357525.391599997878075, 258241.864700000733137 ], [ 357524.110799998044968, 258240.033900000154972 ], [ 357522.474600002169609, 258236.841899998486042 ], [ 357521.083499997854233, 258234.127900000661612 ], [ 357520.113600000739098, 258232.235700000077486 ], [ 357518.97860000282526, 258230.02140000090003 ], [ 357517.22580000013113, 258226.601700000464916 ], [ 357516.178900003433228, 258224.559200000017881 ], [ 357513.179999999701977, 258221.7652000002563 ], [ 357511.974899999797344, 258220.642400000244379 ], [ 357509.7787000015378, 258218.596200000494719 ], [ 357506.554300002753735, 258212.815799999982119 ], [ 357504.219099998474121, 258208.629299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016600", "MAP": "D9-2112-T82", "PARCEL_NAM": "7E-5", "ACRE": ".46", "LONGITUDE": -64.93746292, "LATITUDE": 18.35611728, "OBJECTID_1": 4479, "PARCEL_NO_": "102804016600", "Tax_Legal_": "LERKENLUND 7E-5 GT. NORTHSIDE QTR.", "Name": "FRANCIS, JENNIFER", "Address": "6E Estate Misgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.82124707200001, "SHAPE_Area": 1821.6989930899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358121.602099999785423, 258523.602699998766184 ], [ 358105.635499998927116, 258480.381099998950958 ], [ 358078.414599999785423, 258485.428399998694658 ], [ 358070.064099997282028, 258487.686500001698732 ], [ 358093.21169999986887, 258542.356800001114607 ], [ 358102.175999999046326, 258535.863099999725819 ], [ 358121.602099999785423, 258523.602699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010300", "MAP": "C9-136-T72", "PARCEL_NAM": "7F", "ACRE": ".39", "LONGITUDE": -64.93775996, "LATITUDE": 18.35561687, "OBJECTID_1": 4418, "PARCEL_NO_": "102804010300", "Tax_Legal_": "7F LERKENLUND GREAT NORTHSIDE", "Name": "HARRIS (LIFE ESTATE), ALPHA J & JOYCELYN G BRYAN", "Address": "PO Box 305894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 92800, "Improved_V": 225400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.010272918, "SHAPE_Area": 1259.7080732 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358078.068599998950958, 258431.385600000619888 ], [ 358065.122699998319149, 258436.557000000029802 ], [ 358051.379399999976158, 258440.666400000452995 ], [ 358041.176899999380112, 258442.326799999922514 ], [ 358052.04559999704361, 258473.410399999469519 ], [ 358091.204000003635883, 258460.975000001490116 ], [ 358078.068599998950958, 258431.385600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93834136, "LATITUDE": 18.35594643, "OBJECTID_1": 4418, "PARCEL_NO_": "102804010300", "Tax_Legal_": "7F LERKENLUND GREAT NORTHSIDE", "Name": "HARRIS (LIFE ESTATE), ALPHA J & JOYCELYN G BRYAN", "Address": "PO Box 305894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 92800, "Improved_V": 225400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 10.027995612, "SHAPE_Area": 0.67619708567000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358007.121399998664856, 258487.525400001555681 ], [ 358002.450900003314018, 258488.992800001055002 ], [ 358002.583499997854233, 258489.240699999034405 ], [ 358007.121399998664856, 258487.525400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010400", "MAP": "D9-2114-T82", "PARCEL_NAM": "7E-8", "ACRE": ".77", "LONGITUDE": -64.93803417, "LATITUDE": 18.35641373, "OBJECTID_1": 4419, "PARCEL_NO_": "102804010400", "Tax_Legal_": "LERKENLUND 7E-8 GR NORTHSIDE QTR", "Name": "QUESTEL BRYAN, AMANDA ERIN", "Address": "6555 Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.136937109, "SHAPE_Area": 3489.6414792700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358072.436300002038479, 258557.406399998813868 ], [ 358046.85980000346899, 258501.191700000315905 ], [ 358045.078599996864796, 258501.781100001186132 ], [ 358019.384199999272823, 258510.283599998801947 ], [ 357997.670000001788139, 258517.468899998813868 ], [ 358000.58330000191927, 258523.5929000005126 ], [ 358028.424300000071526, 258582.116599999368191 ], [ 358034.867299996316433, 258580.486299999058247 ], [ 358046.196999996900558, 258575.723799999803305 ], [ 358052.679899998009205, 258571.977200001478195 ], [ 358055.113200001418591, 258570.308400001376867 ], [ 358071.343699999153614, 258558.197799999266863 ], [ 358072.436300002038479, 258557.406399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016800", "MAP": "D9-2064-T82", "PARCEL_NAM": "7E-7", "ACRE": ".46", "LONGITUDE": -64.93814284, "LATITUDE": 18.35600472, "OBJECTID_1": 4481, "PARCEL_NO_": "102804016800", "Tax_Legal_": "LERKENLUND 7E-7 GT. NORTHSIDE", "Name": "HARRIS, JENNIFER & PAUL E", "Address": "7259 Estate Misgunst 6E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.42297052200001, "SHAPE_Area": 1752.2068033400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358060.533900000154972, 258484.476599998772144 ], [ 358049.343699999153614, 258474.259399998933077 ], [ 358007.121399998664856, 258487.525400001555681 ], [ 358002.583499997854233, 258489.240699999034405 ], [ 358002.450900003314018, 258488.992800001055002 ], [ 357986.506499998271465, 258494.002500001341105 ], [ 357987.492600001394749, 258496.075300000607967 ], [ 357997.670000001788139, 258517.468899998813868 ], [ 358019.384199999272823, 258510.283599998801947 ], [ 358045.078599996864796, 258501.781100001186132 ], [ 358046.85980000346899, 258501.191700000315905 ], [ 358056.850000001490116, 258498.373599998652935 ], [ 358064.402400001883507, 258489.217399999499321 ], [ 358060.533900000154972, 258484.476599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804013000", "MAP": "G9-537-T60", "PARCEL_NAM": "6B", "ACRE": ".23", "LONGITUDE": -64.93375294000001, "LATITUDE": 18.35479177, "OBJECTID_1": 4445, "PARCEL_NO_": "102804013000", "Tax_Legal_": "MISGUNST ESTATE 6B No.6 GREAT NORTHSIDE QTR.", "Name": "BRYAN, N. F. , S. A. , A. P. & J. N", "Address": "7267 Estate Misgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32800, "Improved_V": 196200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.13490318000001, "SHAPE_Area": 949.36500419200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358465.681699998676777, 258366.103500001132488 ], [ 358478.754399999976158, 258389.347699999809265 ], [ 358490.578000001609325, 258377.977600000798702 ], [ 358500.345499999821186, 258367.291799999773502 ], [ 358506.021999999880791, 258363.538600001484156 ], [ 358512.564300000667572, 258352.826400000602007 ], [ 358517.44709999859333, 258347.589000001549721 ], [ 358517.477600000798702, 258344.000599998980761 ], [ 358515.069499999284744, 258342.714400000870228 ], [ 358513.455099999904633, 258342.912200000137091 ], [ 358498.882100000977516, 258349.759100001305342 ], [ 358472.164099998772144, 258362.417100001126528 ], [ 358465.681699998676777, 258366.103500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012800", "MAP": "F9-2521-T69", "PARCEL_NAM": "6A", "ACRE": ".36", "LONGITUDE": -64.93347111, "LATITUDE": 18.35485188, "OBJECTID_1": 4443, "PARCEL_NO_": "102804012800", "Tax_Legal_": "MISGUNST 6A GREAT NORTHSIDE QTR", "Name": "JOHNSON, SANDRA", "Address": "18454 SW 88 Ct", "City": "Miami", "State": "Florida", "Zip": 33157, "Country": "United States", "Land_Value": 55400, "Improved_V": 267000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.62583167599999, "SHAPE_Area": 1443.7199556800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358532.549800001084805, 258390.471999999135733 ], [ 358542.564999997615814, 258333.440200001001358 ], [ 358532.021799996495247, 258340.531100001186132 ], [ 358518.176100000739098, 258356.671999998390675 ], [ 358510.822200000286102, 258368.010800000280142 ], [ 358504.335699997842312, 258372.17960000038147 ], [ 358482.80179999768734, 258393.993099998682737 ], [ 358532.549800001084805, 258390.471999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012900", "MAP": "F9-2521-T69", "PARCEL_NAM": "6D", "ACRE": ".03", "LONGITUDE": -64.93386655, "LATITUDE": 18.35517146, "OBJECTID_1": 4444, "PARCEL_NO_": "102804012900", "Tax_Legal_": "MISGUNST 6D GR NORTHSIDE", "Name": "FRANCIS, NOREN E & MARIE J", "Address": "7267 Estate Misgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.895529895400003, "SHAPE_Area": 202.34085936100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358482.80179999768734, 258393.993099998682737 ], [ 358466.919799998402596, 258410.081300001591444 ], [ 358474.244400002062321, 258415.594099998474121 ], [ 358485.35700000077486, 258410.831500001251698 ], [ 358482.80179999768734, 258393.993099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012600", "MAP": "G9-1703-T70", "PARCEL_NAM": "6F", "ACRE": ".46", "LONGITUDE": -64.93378481000001, "LATITUDE": 18.35528837, "OBJECTID_1": 4441, "PARCEL_NO_": "102804012600", "Tax_Legal_": "MISGUNST 6F GR NORTHSIDE", "Name": "MORGAN, JENNIFER L", "Address": "649 Richmond Ave", "City": "FORT ERIE", "State": "Ontario", "Zip": 0, "Country": "Canada", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.20357292400001, "SHAPE_Area": 178.957473459 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358474.244400002062321, 258415.594099998474121 ], [ 358461.125799998641014, 258417.98589999973774 ], [ 358458.007600001990795, 258422.239900000393391 ], [ 358475.831900000572205, 258419.245299998670816 ], [ 358519.904500000178814, 258424.233500000089407 ], [ 358521.581699997186661, 258422.651299998164177 ], [ 358474.244400002062321, 258415.594099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012400", "MAP": "G9-1703-T70", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.93396293000001, "LATITUDE": 18.35524336, "OBJECTID_1": 4439, "PARCEL_NO_": "102804012400", "Tax_Legal_": "MISGUNST 6 GREAT NORTHSIDE QTR", "Name": "QUESTEL, ADOLPHE APOLON", "Address": "Bovoni Bldg C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.3028988879, "SHAPE_Area": 44.919598178000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358474.244400002062321, 258415.594099998474121 ], [ 358466.919799998402596, 258410.081300001591444 ], [ 358461.125799998641014, 258417.98589999973774 ], [ 358474.244400002062321, 258415.594099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804012400", "MAP": "G9-1703-T70", "PARCEL_NAM": "6", "ACRE": ".516", "LONGITUDE": -64.93366894, "LATITUDE": 18.35613749, "OBJECTID_1": 4439, "PARCEL_NO_": "102804012400", "Tax_Legal_": "MISGUNST 6 GREAT NORTHSIDE QTR", "Name": "QUESTEL, ADOLPHE APOLON", "Address": "Bovoni Bldg C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.31037773700001, "SHAPE_Area": 1741.5284705399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358517.372699998319149, 258475.4662000015378 ], [ 358474.1891999989748, 258500.674699999392033 ], [ 358476.585500001907349, 258505.996899999678135 ], [ 358501.07769999653101, 258565.303599998354912 ], [ 358513.755000002682209, 258497.013000000268221 ], [ 358517.372699998319149, 258475.4662000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804013600", "MAP": "F9-2641-T70", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93507792, "LATITUDE": 18.35549505, "OBJECTID_1": 4451, "PARCEL_NO_": "102804013600", "Tax_Legal_": "MISGUNST 8A-1 & 9-1 GR NORTHSIDE", "Name": "TURBE, FLORENCE", "Address": "14735 Wrights Ln", "City": "WATERFORD", "State": "Virginia", "Zip": 20197, "Country": "United States", "Land_Value": 9700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.34889845, "SHAPE_Area": 144.00178129299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358351.695299997925758, 258416.774999998509884 ], [ 358350.691500000655651, 258423.621300000697374 ], [ 358350.691500000655651, 258428.516100000590086 ], [ 358350.162299998104572, 258433.410900000482798 ], [ 358349.236299999058247, 258436.321299999952316 ], [ 358348.442500002682209, 258439.496300000697374 ], [ 358347.648800000548363, 258442.671300001442432 ], [ 358346.590400002896786, 258447.566100001335144 ], [ 358346.325900003314018, 258453.519299998879433 ], [ 358344.870700001716614, 258457.884899999946356 ], [ 358342.886100001633167, 258466.086300000548363 ], [ 358347.31530000269413, 258463.870400000363588 ], [ 358349.664800003170967, 258449.001600001007318 ], [ 358355.204199999570847, 258413.945300001651049 ], [ 358351.695299997925758, 258416.774999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804011900", "MAP": null, "PARCEL_NAM": "13BA", "ACRE": null, "LONGITUDE": -64.93288911, "LATITUDE": 18.354164, "OBJECTID_1": 4434, "PARCEL_NO_": "102804011900", "Tax_Legal_": "MISGUNST 13BA GREAT NORTHSIDE QTR", "Name": "ORTIZ-FUERTES, DAVID", "Address": "PO Box 833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28100, "Improved_V": 128800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.80097148799999, "SHAPE_Area": 1148.1779696599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358605.025700002908707, 258303.825800001621246 ], [ 358598.346500001847744, 258277.309000000357628 ], [ 358558.277000002563, 258287.550400000065565 ], [ 358566.909100003540516, 258315.485399998724461 ], [ 358602.939900003373623, 258304.463899999856949 ], [ 358605.025700002908707, 258303.825800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017800", "MAP": "D9-5275-T92", "PARCEL_NAM": "13A-1", "ACRE": ".03", "LONGITUDE": -64.93309383, "LATITUDE": 18.3542682, "OBJECTID_1": 4489, "PARCEL_NO_": "102804017800", "Tax_Legal_": "MISGUNST 13A-1 GREAT NORTHSIDE", "Name": "ORTIZ-FUERTES, DAVID", "Address": "PO Box 833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.056137474400003, "SHAPE_Area": 177.473617717 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358558.277000002563, 258287.550400000065565 ], [ 358555.316699996590614, 258319.089800000190735 ], [ 358566.909100003540516, 258315.485399998724461 ], [ 358558.277000002563, 258287.550400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804015300", "MAP": "G9-869-T66", "PARCEL_NAM": "13BB", "ACRE": ".23", "LONGITUDE": -64.93307829, "LATITUDE": 18.3536331, "OBJECTID_1": 4467, "PARCEL_NO_": "102804015300", "Tax_Legal_": "13BB MISGUNST NO 6 GREAT NORTHSIDE", "Name": "SOPSIC, JOHN", "Address": "7020 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57300, "Improved_V": 251800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.056610311, "SHAPE_Area": 836.50000127400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358555.65259999781847, 258224.738899998366833 ], [ 358551.053099997341633, 258230.262499999254942 ], [ 358543.899099998176098, 258233.365699999034405 ], [ 358549.641099996864796, 258255.004900000989437 ], [ 358566.658399999141693, 258250.255399998277426 ], [ 358574.639799997210503, 258248.522300001233816 ], [ 358579.967200003564358, 258219.110800001770258 ], [ 358555.65259999781847, 258224.738899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804011700", "MAP": "D9-5275-T92", "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.93347061, "LATITUDE": 18.35385852, "OBJECTID_1": 4432, "PARCEL_NO_": "102804011700", "Tax_Legal_": "12 REM & 12B MISGUNST NO.6 GREAT NORTHSIDE QTR", "Name": "ELLEN G MACLEAN REVOCABLE TRUST", "Address": "7731 Estate Misgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 158000, "Improved_V": 225400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.75486129399999, "SHAPE_Area": 3405.3983758700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358551.053099997341633, 258230.262499999254942 ], [ 358555.65259999781847, 258224.738899998366833 ], [ 358542.422600001096725, 258227.801300000399351 ], [ 358500.645099997520447, 258237.471700001507998 ], [ 358491.757600001990795, 258239.509899999946356 ], [ 358486.321699999272823, 258240.885400000959635 ], [ 358497.791900001466274, 258298.891499999910593 ], [ 358510.169100001454353, 258294.833700001239777 ], [ 358519.304200001060963, 258291.838899999856949 ], [ 358556.204800002276897, 258279.741099998354912 ], [ 358549.641099996864796, 258255.004900000989437 ], [ 358543.899099998176098, 258233.365699999034405 ], [ 358551.053099997341633, 258230.262499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804017400", "MAP": "D9-6836-T000", "PARCEL_NAM": "12-A", "ACRE": ".04", "LONGITUDE": -64.93360392, "LATITUDE": 18.35441365, "OBJECTID_1": 4486, "PARCEL_NO_": "102804017400", "Tax_Legal_": "12A ESTATE MISGUNST No.6 GREAT NORTHSIDE QTR.", "Name": "JOWERS, JOHN & DOLORES-CO-TRUSTEE", "Address": "PO Box 103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.089211744400004, "SHAPE_Area": 204.25414177100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358515.238200001418591, 258333.080800000578165 ], [ 358497.791900001466274, 258298.891499999910593 ], [ 358505.360500000417233, 258337.166499998420477 ], [ 358510.296400003135204, 258335.075899999588728 ], [ 358515.238200001418591, 258333.080800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804015200", "MAP": "D9-1366-T77", "PARCEL_NAM": "7BA", "ACRE": ".15", "LONGITUDE": -64.93411997, "LATITUDE": 18.35456289, "OBJECTID_1": 4466, "PARCEL_NO_": "102804015200", "Tax_Legal_": "7BA ESTATE MISGUNST No.6 GREAT NORTHSIDE QTR.", "Name": "JOWERS, JOHN M & DOLORES, CO-TRUST", "Address": "PO Box 103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.572620571, "SHAPE_Area": 773.16773624899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358438.76690000295639, 258317.874000001698732 ], [ 358447.98589999973774, 258364.805500000715256 ], [ 358465.211999997496605, 258356.028900001198053 ], [ 358453.603200003504753, 258314.436700001358986 ], [ 358438.76690000295639, 258317.874000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804014500", "MAP": "D9-1366-T77", "PARCEL_NAM": "7aa", "ACRE": ".03", "LONGITUDE": -64.93405037, "LATITUDE": 18.35444385, "OBJECTID_1": 4460, "PARCEL_NO_": "102804014500", "Tax_Legal_": "7Aa ESTATE MISGUNST No.2 GREAT NORTHSIDE QTR.", "Name": "JOWERS, JOHN M & DOLORE-CO-TRUSTE", "Address": "PO Box 103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.129427869200001, "SHAPE_Area": 137.98772001699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358453.603200003504753, 258314.436700001358986 ], [ 358465.211999997496605, 258356.028900001198053 ], [ 358458.645700000226498, 258310.147300001233816 ], [ 358453.126900002360344, 258311.579199999570847 ], [ 358453.603200003504753, 258314.436700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804011600", "MAP": "D9-3405-T86", "PARCEL_NAM": "7BB", "ACRE": null, "LONGITUDE": -64.93423574000001, "LATITUDE": 18.354098, "OBJECTID_1": 4431, "PARCEL_NO_": "102804011600", "Tax_Legal_": "MISGUNST 7AB, 7BB & 10B GREAT NORTHSIDE QTR", "Name": "SHAW, DANNY", "Address": "22935 Colridge Dr", "City": "Land O Lakes", "State": "Florida", "Zip": 34639, "Country": "United States", "Land_Value": 136000, "Improved_V": 546600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.601997756, "SHAPE_Area": 824.8611408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358453.126900002360344, 258311.579199999570847 ], [ 358437.456699997186661, 258254.120799999684095 ], [ 358428.715999998152256, 258256.514699999243021 ], [ 358426.840800002217293, 258257.16160000115633 ], [ 358438.76690000295639, 258317.874000001698732 ], [ 358453.603200003504753, 258314.436700001358986 ], [ 358453.126900002360344, 258311.579199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804011600", "MAP": "D9-3405-T86", "PARCEL_NAM": "7AB", "ACRE": null, "LONGITUDE": -64.93414746000001, "LATITUDE": 18.35400904, "OBJECTID_1": 4431, "PARCEL_NO_": "102804011600", "Tax_Legal_": "MISGUNST 7AB, 7BB & 10B GREAT NORTHSIDE QTR", "Name": "SHAW, DANNY", "Address": "22935 Colridge Dr", "City": "Land O Lakes", "State": "Florida", "Zip": 34639, "Country": "United States", "Land_Value": 136000, "Improved_V": 546600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.503102187, "SHAPE_Area": 561.58534756799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358437.456699997186661, 258254.120799999684095 ], [ 358453.126900002360344, 258311.579199999570847 ], [ 358458.645700000226498, 258310.147300001233816 ], [ 358450.130699999630451, 258250.649599999189377 ], [ 358437.456699997186661, 258254.120799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804011100", "MAP": "G9-618-T62", "PARCEL_NAM": "7c-1", "ACRE": ".74", "LONGITUDE": -64.93444286, "LATITUDE": 18.35465885, "OBJECTID_1": 4426, "PARCEL_NO_": "102804011100", "Tax_Legal_": "MISGUNST 7C-1 GR NORTHSIDE QTR", "Name": "SELKRIDGE, JR, DAVID", "Address": "173-226 ESTATE TUTU", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 127100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.02510115699999, "SHAPE_Area": 2925.2499177200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358437.917700000107288, 258313.550900001078844 ], [ 358384.321000002324581, 258333.827199999243021 ], [ 358399.248700000345707, 258385.240299999713898 ], [ 358415.572999998927116, 258379.474700000137091 ], [ 358428.515299998223782, 258374.725499998778105 ], [ 358445.057599999010563, 258366.297400001436472 ], [ 358447.98589999973774, 258364.805500000715256 ], [ 358438.76690000295639, 258317.874000001698732 ], [ 358437.917700000107288, 258313.550900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804011200", "MAP": "G9-618-T62", "PARCEL_NAM": "7-C", "ACRE": ".80", "LONGITUDE": -64.93456861, "LATITUDE": 18.35417203, "OBJECTID_1": 4427, "PARCEL_NO_": "102804011200", "Tax_Legal_": "MISGUNST 7C REM & 7BC GREAT NORTHSIDE QTR", "Name": "SHAW, DANNY", "Address": "22935 Colridge Dr", "City": "Land O Lakes", "State": "Florida", "Zip": 34639, "Country": "United States", "Land_Value": 116600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.067236006, "SHAPE_Area": 3397.9727079700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358437.917700000107288, 258313.550900001078844 ], [ 358426.840800002217293, 258257.16160000115633 ], [ 358423.747299998998642, 258258.228700000792742 ], [ 358401.218699999153614, 258266.0 ], [ 358387.459200002253056, 258272.009100001305342 ], [ 358368.778300002217293, 258280.29619999974966 ], [ 358384.321000002324581, 258333.827199999243021 ], [ 358437.917700000107288, 258313.550900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804011000", "MAP": "D9-7686-T005", "PARCEL_NAM": "7D-1", "ACRE": ".604", "LONGITUDE": -64.93488948, "LATITUDE": 18.35480984, "OBJECTID_1": 4425, "PARCEL_NO_": "102804011000", "Tax_Legal_": "MISGUNST 7D-1\nGREAT NORTHSIDE QTR", "Name": "Trust Agreement of Lander & Raymond Victorine,Jr.", "Address": "8621 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.41242544299999, "SHAPE_Area": 2361.3563962799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358399.248700000345707, 258385.240299999713898 ], [ 358384.321000002324581, 258333.827199999243021 ], [ 358334.91669999808073, 258353.1402000002563 ], [ 358355.374799996614456, 258385.168299999088049 ], [ 358363.248700000345707, 258397.495299998670816 ], [ 358369.242600001394749, 258394.419900000095367 ], [ 358372.723300002515316, 258392.63399999961257 ], [ 358394.544100001454353, 258386.901900000870228 ], [ 358399.248700000345707, 258385.240299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804014300", "MAP": "D9-7686-T005", "PARCEL_NAM": "7D REM", "ACRE": ".809", "LONGITUDE": -64.93508782000001, "LATITUDE": 18.35437548, "OBJECTID_1": 4458, "PARCEL_NO_": "102804014300", "Tax_Legal_": "7-D REMAINDER MISGUNST GREAT NORTHSIDE QTR", "Name": "SMITH, ROBERT E and REGINA LOWE-SMITH", "Address": "19715 W Lake Dr", "City": "Hialeah", "State": "Florida", "Zip": 33015, "Country": "United States", "Land_Value": 106600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.40091411200001, "SHAPE_Area": 3178.70695763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358384.321000002324581, 258333.827199999243021 ], [ 358368.778300002217293, 258280.29619999974966 ], [ 358329.989900000393391, 258297.503199998289347 ], [ 358309.754699997603893, 258306.414599999785423 ], [ 358334.91669999808073, 258353.1402000002563 ], [ 358384.321000002324581, 258333.827199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010800", "MAP": "F9-2437-T69", "PARCEL_NAM": "7G", "ACRE": ".46", "LONGITUDE": -64.93593094000001, "LATITUDE": 18.3546391, "OBJECTID_1": 4423, "PARCEL_NO_": "102804010800", "Tax_Legal_": "MISGUNST 7G GR NORTHSIDE", "Name": "HUGH, TESSA M. (Trustee)", "Address": "PO Box 687", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 91700, "Improved_V": 371000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.93170914300001, "SHAPE_Area": 2794.04510949 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358304.159299999475479, 258346.640999998897314 ], [ 358290.359099999070168, 258314.463500000536442 ], [ 358286.042300000786781, 258316.254900000989437 ], [ 358278.898000001907349, 258319.219700001180172 ], [ 358273.339400000870228, 258321.526399999856949 ], [ 358259.581699997186661, 258327.324400000274181 ], [ 358240.966399997472763, 258335.404699999839067 ], [ 358218.301600001752377, 258345.562800001353025 ], [ 358215.396200001239777, 258347.165199998766184 ], [ 358228.719400003552437, 258377.090199999511242 ], [ 358239.078599996864796, 258372.698100000619888 ], [ 358246.804399996995926, 258369.734700001776218 ], [ 358293.194200001657009, 258351.143100000917912 ], [ 358301.73200000077486, 258347.721400000154972 ], [ 358304.159299999475479, 258346.640999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804016000", "MAP": "D9-2004-T72", "PARCEL_NAM": "7L", "ACRE": ".41", "LONGITUDE": -64.9360768, "LATITUDE": 18.35524561, "OBJECTID_1": 4473, "PARCEL_NO_": "102804016000", "Tax_Legal_": "MISGUNST 7L GR NORTHSIDE", "Name": "BRADY, MAVIS", "Address": "PO Box 7292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58400, "Improved_V": 259800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.860426195, "SHAPE_Area": 2673.6648660699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358264.266999997198582, 258381.905600000172853 ], [ 358206.489900000393391, 258406.894400000572205 ], [ 358208.865699999034405, 258411.980000000447035 ], [ 358221.550899997353554, 258437.415100000798702 ], [ 358227.895300000905991, 258449.921599999070168 ], [ 358238.386399999260902, 258448.951900001615286 ], [ 358251.896300002932549, 258448.733600001782179 ], [ 358251.249399997293949, 258442.124899998307228 ], [ 358250.931900002062321, 258438.420699998736382 ], [ 358250.720299996435642, 258435.668999999761581 ], [ 358250.720299996435642, 258433.129000000655651 ], [ 358250.402800001204014, 258429.107400000095367 ], [ 358250.720299996435642, 258425.191500000655651 ], [ 358251.037799999117851, 258421.699000000953674 ], [ 358251.778599999845028, 258419.688200000673532 ], [ 358253.154399998486042, 258417.254000000655651 ], [ 358256.32940000295639, 258413.232299998402596 ], [ 358258.869400002062321, 258411.009799998253584 ], [ 358261.515299998223782, 258408.681499999016523 ], [ 358264.161100000143051, 258406.353100001811981 ], [ 358267.865299999713898, 258404.554000001400709 ], [ 358270.828599996864796, 258403.601500000804663 ], [ 358273.792000003159046, 258403.178100001066923 ], [ 358276.755300000309944, 258402.860599998384714 ], [ 358279.930299997329712, 258402.437300000339746 ], [ 358282.787799999117851, 258402.437300000339746 ], [ 358285.433700002729893, 258402.013999998569489 ], [ 358287.973700001835823, 258400.849800001829863 ], [ 358289.561200000345707, 258399.473999999463558 ], [ 358291.4662000015378, 258397.568999998271465 ], [ 358291.995300002396107, 258395.028999999165535 ], [ 358291.4662000015378, 258392.171399999409914 ], [ 358289.243699997663498, 258390.689800001680851 ], [ 358285.222000002861023, 258389.419799998402596 ], [ 358277.813699997961521, 258386.562300000339746 ], [ 358272.204499997198582, 258384.657299999147654 ], [ 358267.865299999713898, 258383.06980000063777 ], [ 358264.266999997198582, 258381.905600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010600", "MAP": "D9-2004-T72", "PARCEL_NAM": "7K", "ACRE": ".28", "LONGITUDE": -64.93623258, "LATITUDE": 18.35502239, "OBJECTID_1": 4421, "PARCEL_NO_": "102804010600", "Tax_Legal_": "MISGUNST 7K GR NORTHSIDE", "Name": "SUSAN BURKS BAKER REVOCABLE TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.42423724400001, "SHAPE_Area": 1014.9437010300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358264.266999997198582, 258381.905600000172853 ], [ 358259.29280000180006, 258379.788899999111891 ], [ 358254.2128000035882, 258376.508099999278784 ], [ 358250.402800001204014, 258375.767200000584126 ], [ 358245.216899998486042, 258374.603100001811981 ], [ 358239.078599996864796, 258372.698100000619888 ], [ 358198.021700002253056, 258390.105799999088049 ], [ 358206.489900000393391, 258406.894400000572205 ], [ 358264.266999997198582, 258381.905600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804015400", "MAP": "D9-8996-T015", "PARCEL_NAM": "7J", "ACRE": ".55", "LONGITUDE": -64.93560929, "LATITUDE": 18.35478597, "OBJECTID_1": 4468, "PARCEL_NO_": "102804015400", "Tax_Legal_": "MISGUNST 7J CONSOLIDATED GREAT NORTHSIDE QUARTER", "Name": "DAVID, LAURITZ", "Address": "PO Box 7044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37200, "Improved_V": 259200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.39088092, "SHAPE_Area": 1673.0454403900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358295.027699999511242, 258381.11939999833703 ], [ 358310.1503000035882, 258360.034699998795986 ], [ 358317.147399999201298, 258362.428399998694658 ], [ 358334.91669999808073, 258353.1402000002563 ], [ 358332.762800000607967, 258349.140500001609325 ], [ 358326.146700002253056, 258336.854499999433756 ], [ 358301.73200000077486, 258347.721400000154972 ], [ 358300.177299998700619, 258348.344500001519918 ], [ 358246.804399996995926, 258369.734700001776218 ], [ 358245.517499998211861, 258370.228399999439716 ], [ 358246.318400003015995, 258370.47690000012517 ], [ 358251.277500003576279, 258371.590199999511242 ], [ 358255.835900001227856, 258372.476599998772144 ], [ 358261.300399996340275, 258376.005699999630451 ], [ 358265.762100003659725, 258377.90430000051856 ], [ 358269.255599997937679, 258379.034600000828505 ], [ 358273.62389999628067, 258380.632699999958277 ], [ 358275.239100001752377, 258381.18129999935627 ], [ 358279.268200002610683, 258382.549699999392033 ], [ 358286.633699998259544, 258385.390700001269579 ], [ 358288.571199998259544, 258386.002500001341105 ], [ 358295.027699999511242, 258381.11939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804015700", "MAP": "D9-2004-T72", "PARCEL_NAM": "7H", "ACRE": ".29", "LONGITUDE": -64.93521134, "LATITUDE": 18.35514178, "OBJECTID_1": 4471, "PARCEL_NO_": "102804015700", "Tax_Legal_": "MISGUNST 7H GR NORTHSIDE", "Name": "BRADSHAW, LUCILLE & IVY", "Address": "PO Box 8747", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69000, "Improved_V": 260600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.712141901, "SHAPE_Area": 1402.98198095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358355.374799996614456, 258385.168299999088049 ], [ 358346.762299999594688, 258371.684999998658895 ], [ 358342.262199997901917, 258376.420499999076128 ], [ 358317.511799998581409, 258400.415899999439716 ], [ 358311.866899996995926, 258437.098799999803305 ], [ 358323.232600003480911, 258428.114799998700619 ], [ 358351.653099998831749, 258404.916000001132488 ], [ 358359.764799997210503, 258399.282900001853704 ], [ 358363.248700000345707, 258397.495299998670816 ], [ 358355.374799996614456, 258385.168299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804015800", "MAP": "D9-2004-T72", "PARCEL_NAM": "7I", "ACRE": null, "LONGITUDE": -64.93539728, "LATITUDE": 18.35494766, "OBJECTID_1": 4472, "PARCEL_NO_": "102804015800", "Tax_Legal_": "MISGUNST 71 GR NORTHSIDE", "Name": "JAEGER, ELIZABETH A", "Address": "500 Estate Enighed", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 71400, "Improved_V": 192500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.58091435399999, "SHAPE_Area": 1276.45625673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358317.147399999201298, 258362.428399998694658 ], [ 358310.1503000035882, 258360.034699998795986 ], [ 358295.027699999511242, 258381.11939999833703 ], [ 358288.571199998259544, 258386.002500001341105 ], [ 358291.106499999761581, 258386.803100001066923 ], [ 358295.333700001239777, 258389.621199999004602 ], [ 358296.344099998474121, 258395.077399998903275 ], [ 358295.939400002360344, 258397.01969999819994 ], [ 358317.511799998581409, 258400.415899999439716 ], [ 358342.262199997901917, 258376.420499999076128 ], [ 358346.762299999594688, 258371.684999998658895 ], [ 358317.147399999201298, 258362.428399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010700", "MAP": "F9-2436-T69", "PARCEL_NAM": "7F", "ACRE": ".23", "LONGITUDE": -64.93642997000001, "LATITUDE": 18.35485412, "OBJECTID_1": 4422, "PARCEL_NO_": "102804010700", "Tax_Legal_": "MISGUNST 7F GR NORTHSIDE", "Name": "WAIZENHOFER, ROBERT & KATHRYN", "Address": "401 Saluda Ave", "City": "Columbia", "State": "South Carolina", "Zip": 29205, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.96324843599999, "SHAPE_Area": 1051.8879821400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358228.719400003552437, 258377.090199999511242 ], [ 358215.396200001239777, 258347.165199998766184 ], [ 358196.42679999768734, 258357.627199999988079 ], [ 358185.084499999880791, 258363.867199998348951 ], [ 358196.974200002849102, 258388.029100000858307 ], [ 358198.021700002253056, 258390.105799999088049 ], [ 358228.719400003552437, 258377.090199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010900", "MAP": "F9-2435-T69", "PARCEL_NAM": "7E", "ACRE": null, "LONGITUDE": -64.93548053000001, "LATITUDE": 18.35445932, "OBJECTID_1": 4424, "PARCEL_NO_": "102804010900", "Tax_Legal_": "MISGUNST 7E 9 GR NORTHSIDE", "Name": "HEALY, HAROLD & JUDITH", "Address": "1 Ring Neck Rdg", "City": "Lloyd Harbor", "State": "New York", "Zip": 11743, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.65125283099999, "SHAPE_Area": 782.446457044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358290.359099999070168, 258314.463500000536442 ], [ 358304.159299999475479, 258346.640999998897314 ], [ 358326.146700002253056, 258336.854499999433756 ], [ 358309.754699997603893, 258306.414599999785423 ], [ 358290.359099999070168, 258314.463500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021400", "MAP": "D9-3909-T87", "PARCEL_NAM": "10-M-2", "ACRE": ".50", "LONGITUDE": -64.94009185, "LATITUDE": 18.35415821, "OBJECTID_1": 4518, "PARCEL_NO_": "102804021400", "Tax_Legal_": "LERKENLUND 10-M-2 GT. NORTHSIDE", "Name": "JOHN, WAYNE & KAREN", "Address": "PO Box 302042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79000, "Improved_V": 425300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.335153891, "SHAPE_Area": 1940.3068658699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357806.533699996769428, 258310.3293999992311 ], [ 357816.049599997699261, 258320.440200001001358 ], [ 357823.397299997508526, 258320.165899999439716 ], [ 357841.161300003528595, 258317.355999998748302 ], [ 357834.352200001478195, 258264.737900000065565 ], [ 357800.972999997437, 258254.471700001507998 ], [ 357806.533699996769428, 258310.3293999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93553647, "LATITUDE": 18.34875582, "OBJECTID_1": 4612, "PARCEL_NO_": "102804029200", "Tax_Legal_": "AGNES FANCY 5I GT. NORTHSIDE", "Name": "ANDY J LAPLACE FAM TR", "Address": "6301 Cowpet Bay E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.7782916524500001, "SHAPE_Area": 0.10958812322 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358307.4375, 257695.070799998939037 ], [ 358307.373000003397465, 257694.915300000458956 ], [ 358306.191600002348423, 257695.465199999511242 ], [ 358307.4375, 257695.070799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804027400", "MAP": "D9-4654-T89", "PARCEL_NAM": "3C-1", "ACRE": ".25", "LONGITUDE": -64.93533125, "LATITUDE": 18.3484545, "OBJECTID_1": 4594, "PARCEL_NO_": "102804027400", "Tax_Legal_": "AGNES FANCY 3C-1 GT.NORTHSIDE QTR.", "Name": "HARRIGAN, KEVIN D.", "Address": "PO Box 10206", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.430926052, "SHAPE_Area": 906.67038695799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358308.910599999129772, 257647.265299998223782 ], [ 358329.111800000071526, 257684.796000000089407 ], [ 358332.116899996995926, 257683.397199999541044 ], [ 358337.000200003385544, 257681.124000001698732 ], [ 358348.397100001573563, 257674.322599999606609 ], [ 358350.123599998652935, 257673.292300000786781 ], [ 358325.722699999809265, 257638.997299998998642 ], [ 358324.30460000038147, 257639.6891999989748 ], [ 358315.397399999201298, 257644.049199998378754 ], [ 358308.910599999129772, 257647.265299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804026900", "MAP": "D9-6213-T97", "PARCEL_NAM": "3K-1", "ACRE": ".23", "LONGITUDE": -64.93516333, "LATITUDE": 18.34838277, "OBJECTID_1": 4573, "PARCEL_NO_": "102804026900", "Tax_Legal_": "AGNES FANCY 3K-1", "Name": "RHYMER, FLEURENCIA", "Address": "2600 Nye Nordsidevej--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36300, "Improved_V": 159100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.82365951599999, "SHAPE_Area": 811.32957625100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358367.389300003647804, 257665.105200000107288 ], [ 358340.944899998605251, 257631.569200001657009 ], [ 358325.722699999809265, 257638.997299998998642 ], [ 358350.123599998652935, 257673.292300000786781 ], [ 358348.397100001573563, 257674.322599999606609 ], [ 358337.000200003385544, 257681.124000001698732 ], [ 358350.031599998474121, 257676.6722999997437 ], [ 358354.039399996399879, 257675.303199999034405 ], [ 358367.389300003647804, 257665.105200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804028900", "MAP": "F9-1417-T64", "PARCEL_NAM": "125", "ACRE": ".01", "LONGITUDE": -64.93816541, "LATITUDE": 18.34937222, "OBJECTID_1": 4609, "PARCEL_NO_": "102804028900", "Tax_Legal_": "AGNES FANCY 125 QUEENS QTR", "Name": "HODGE, ARTHUR S & DELMA", "Address": "BOX 2021", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.545722917200003, "SHAPE_Area": 26.062492385599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358036.349299997091293, 257743.934599999338388 ], [ 358023.215300001204014, 257770.865200001746416 ], [ 358024.820000000298023, 257772.126800000667572 ], [ 358028.952200002968311, 257760.339400000870228 ], [ 358034.691699996590614, 257749.198399998247623 ], [ 358036.349299997091293, 257743.934599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804029700", "MAP": "D9-1864-T81", "PARCEL_NAM": "6B-1", "ACRE": ".01", "LONGITUDE": -64.93689956, "LATITUDE": 18.35064534, "OBJECTID_1": 4617, "PARCEL_NO_": "102804029700", "Tax_Legal_": "AGNES FANCY 6B-1 GT. NORTHSIDE", "Name": "QUESTEL, JOHN P", "Address": "PO Box 8031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.10550625099999, "SHAPE_Area": 303.41079984599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358183.462899997830391, 257891.637600000947714 ], [ 358180.100299999117851, 257886.496700000017881 ], [ 358138.91610000282526, 257914.7043999992311 ], [ 358142.098200000822544, 257919.796700000762939 ], [ 358183.462899997830391, 257891.637600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92413334, "LATITUDE": 18.35863321, "OBJECTID_1": 4707, "PARCEL_NO_": "102902020400", "Tax_Legal_": "CANAAN&SHERPENJEWEL REMAINDER No.7B GREAT NORTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY INC.", "Address": "3052 Estate Little Princess", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 2226400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.26053223602999998, "SHAPE_Area": 0.0022607149 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359503.268500000238419, 258798.281100001186132 ], [ 359503.160800002515316, 258798.254599999636412 ], [ 359503.162500001490116, 258798.296999998390675 ], [ 359503.268500000238419, 258798.281100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92009269, "LATITUDE": 18.36209017, "OBJECTID_1": 4705, "PARCEL_NO_": "102902020200", "Tax_Legal_": "1 HERLEINS KOB No.11 GREAT NORTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.47405189599999, "SHAPE_Area": 4234.3567093199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359933.679200001060963, 259130.807199999690056 ], [ 359892.663900002837181, 259146.219399999827147 ], [ 359922.57209999859333, 259243.571299999952316 ], [ 359940.420699998736382, 259230.840599998831749 ], [ 359960.722300000488758, 259214.119300000369549 ], [ 359933.679200001060963, 259130.807199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901011500", "MAP": "A9-579-T002", "PARCEL_NAM": "12", "ACRE": "2.00", "LONGITUDE": -64.92726827, "LATITUDE": 18.35726068, "OBJECTID_1": 4686, "PARCEL_NO_": "102901011500", "Tax_Legal_": "6&12 ESTATE ZUFRIEDENHEIT #5 GREAT NORTHSIDE QTR", "Name": "MAGENS BAY AUTHORITY", "Address": "P O BOCX 10583", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1006100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 500.481211143, "SHAPE_Area": 8702.4878548199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359228.348300002515316, 258619.794799998402596 ], [ 359158.621899999678135, 258544.830600000917912 ], [ 359132.428099997341633, 258766.287300001829863 ], [ 359228.348300002515316, 258619.794799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102901011500", "MAP": "B9-509-T84", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.92659338, "LATITUDE": 18.35836075, "OBJECTID_1": 4686, "PARCEL_NO_": "102901011500", "Tax_Legal_": "6&12 ESTATE ZUFRIEDENHEIT #5 GREAT NORTHSIDE QTR", "Name": "MAGENS BAY AUTHORITY", "Address": "P O BOCX 10583", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1006100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 770.67116324000006, "SHAPE_Area": 32070.067893300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359228.348300002515316, 258619.794799998402596 ], [ 359132.428099997341633, 258766.287300001829863 ], [ 359154.481299996376038, 258812.606199998408556 ], [ 359170.615900002419949, 258819.66270000115037 ], [ 359190.683799996972084, 258830.381599999964237 ], [ 359203.514700002968311, 258838.719300001859665 ], [ 359230.830399997532368, 258850.552999999374151 ], [ 359248.490199998021126, 258859.985700000077486 ], [ 359270.944700002670288, 258874.523800000548363 ], [ 359297.373199999332428, 258895.849500000476837 ], [ 359312.567199997603893, 258910.750399999320507 ], [ 359316.555600002408028, 258915.849300000816584 ], [ 359330.535300001502037, 258866.339699998497963 ], [ 359313.072800002992153, 258849.670899998396635 ], [ 359335.297799997031689, 258762.358199998736382 ], [ 359311.485299997031689, 258736.958200000226498 ], [ 359311.485299997031689, 258709.176899999380112 ], [ 359228.348300002515316, 258619.794799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903040500", "MAP": "A9-579-T002", "PARCEL_NAM": "11", "ACRE": null, "LONGITUDE": -64.92904964, "LATITUDE": 18.35819346, "OBJECTID_1": 4911, "PARCEL_NO_": "102903040500", "Tax_Legal_": "REMAINDER&11 ESTATE ZUFRIEDENHET No.5 GREAT NORTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4489200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1336.2608613100001, "SHAPE_Area": 98589.978930600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359154.481299996376038, 258812.606199998408556 ], [ 359132.428099997341633, 258766.287300001829863 ], [ 359158.621899999678135, 258544.830600000917912 ], [ 358900.774899996817112, 258596.017099998891354 ], [ 358836.962999999523163, 258608.793699998408556 ], [ 358856.536700002849102, 258961.480099998414516 ], [ 358874.990199998021126, 258972.396899998188019 ], [ 358886.237199999392033, 258977.344099998474121 ], [ 358902.338299997150898, 258980.431200001388788 ], [ 358916.857299998402596, 258979.916799999773502 ], [ 358929.787100002169609, 258976.645100001245737 ], [ 358941.12219999730587, 258971.249400001019239 ], [ 358971.918499998748302, 258953.136300001293421 ], [ 358985.708599999547005, 258943.538899999111891 ], [ 358998.699500001966953, 258933.090599998831749 ], [ 359012.581200003623962, 258912.728100001811981 ], [ 359014.235200002789497, 258907.886500000953674 ], [ 359015.864000000059605, 258906.0 ], [ 359023.32039999961853, 258882.629599999636412 ], [ 359054.174300000071526, 258857.761999998241663 ], [ 359093.985699996352196, 258822.624099999666214 ], [ 359098.072999998927116, 258816.113699998706579 ], [ 359105.399899996817112, 258807.940999999642372 ], [ 359111.88459999859333, 258803.983300000429153 ], [ 359121.589100003242493, 258800.685199998319149 ], [ 359146.514700002968311, 258809.121899999678135 ], [ 359154.481299996376038, 258812.606199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902011400", "MAP": "F9-2945-T72", "PARCEL_NAM": "5EA", "ACRE": ".51", "LONGITUDE": -64.91899329, "LATITUDE": 18.35687537, "OBJECTID_1": 4698, "PARCEL_NO_": "102902011400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 5EA GT. NORTHSIDE", "Name": "RAIMER, JUDITH O.", "Address": "PO Box 7757", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68700, "Improved_V": 202200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.138165405, "SHAPE_Area": 2195.4720202499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360077.39190000295639, 258626.357900001108646 ], [ 360062.723200000822544, 258580.752500001341105 ], [ 360044.137900002300739, 258583.752099998295307 ], [ 360019.714500002563, 258587.693999998271465 ], [ 360033.041799999773502, 258636.984999999403954 ], [ 360077.39190000295639, 258626.357900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903041600", "MAP": "D9-7048-T002", "PARCEL_NAM": "8", "ACRE": ".23", "LONGITUDE": -64.92713781, "LATITUDE": 18.35279469, "OBJECTID_1": 4921, "PARCEL_NO_": "102903041600", "Tax_Legal_": "8 & 9 ESTATE ZUFRIEDENHEIT #5 GREAT NORTHSIDE QTR", "Name": "MAGENS BAY AUTHORITY", "Address": "PO Box 10583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.705453585, "SHAPE_Area": 722.87584636099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359213.980099998414516, 258137.523299999535084 ], [ 359205.723300002515316, 258136.338899999856949 ], [ 359199.055799998342991, 258136.815200001001358 ], [ 359193.658299997448921, 258138.085200000554323 ], [ 359187.943300001323223, 258139.513900000602007 ], [ 359183.021999999880791, 258141.895199999213219 ], [ 359178.894500002264977, 258144.435199998319149 ], [ 359174.131999999284744, 258148.245200000703335 ], [ 359170.639499999582767, 258151.737700000405312 ], [ 359166.908600002527237, 258156.247900001704693 ], [ 359181.058799996972084, 258161.769600000232458 ], [ 359190.730899997055531, 258162.270899999886751 ], [ 359198.822800002992153, 258158.959600001573563 ], [ 359202.07150000333786, 258156.241999998688698 ], [ 359213.980099998414516, 258137.523299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92165908, "LATITUDE": 18.35411225, "OBJECTID_1": 5089, "PARCEL_NO_": "102904030300", "Tax_Legal_": "CANAAN&SHERPENJEWEL 3A GREAT NORTHSIDE QTR", "Name": "BALL, VERNON A., TRUSTEE", "Address": "PO Box 501", "City": "Blowing Rock", "State": "North Carolina", "Zip": 286050501, "Country": "United States", "Land_Value": 241500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 560.54233659299996, "SHAPE_Area": 16583.936902000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359856.104900002479553, 258242.86600000038743 ], [ 359851.013999998569489, 258207.836300000548363 ], [ 359804.5016999989748, 258233.760099999606609 ], [ 359784.251800000667572, 258245.046399999409914 ], [ 359708.98759999871254, 258286.995099999010563 ], [ 359660.060099996626377, 258314.264899998903275 ], [ 359676.728900000452995, 258349.983800001442432 ], [ 359696.995899997651577, 258357.296599999070168 ], [ 359753.722800001502037, 258377.765099998563528 ], [ 359865.134099997580051, 258275.586899999529123 ], [ 359860.752099998295307, 258265.279899999499321 ], [ 359858.421300001442432, 258254.917300000786781 ], [ 359856.104900002479553, 258242.86600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92127692, "LATITUDE": 18.35439743, "OBJECTID_1": 5090, "PARCEL_NO_": "102904030400", "Tax_Legal_": "3B-1&2 ESTATE CANAAN&SHERPENJEWL No.7B GREAT NORTHSIDE QTR.", "Name": "THE NATURE CONSERVANCY INC.", "Address": "3052 Estate Little Princess", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 55600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.84167549, "SHAPE_Area": 1083.1649548099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359867.866899996995926, 258282.014600001275539 ], [ 359865.134099997580051, 258275.586899999529123 ], [ 359753.722800001502037, 258377.765099998563528 ], [ 359754.363499999046326, 258387.4864999987185 ], [ 359814.780100002884865, 258331.344900000840425 ], [ 359867.866899996995926, 258282.014600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904030600", "MAP": "D9-5046-T90", "PARCEL_NAM": "3G", "ACRE": "1.60", "LONGITUDE": -64.92198427, "LATITUDE": 18.35303779, "OBJECTID_1": 5092, "PARCEL_NO_": "102904030600", "Tax_Legal_": "CANNAN-SHERPENJEWEL 3G GT.NORTHSIDE QTR.", "Name": "VERNON A. BALL TRUST & EVA M. BALL TRUST", "Address": "PO Box 501", "City": "Blowing Rock", "State": "North Carolina", "Zip": 286050501, "Country": "United States", "Land_Value": 201200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 619.96074128600003, "SHAPE_Area": 5305.0781370499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359688.566899999976158, 258136.673900000751019 ], [ 359670.003200002014637, 258188.111400000751019 ], [ 359730.563100002706051, 258274.969900000840425 ], [ 359738.877899996936321, 258270.335700001567602 ], [ 359725.281900003552437, 258250.626899998635054 ], [ 359716.888700000941753, 258238.460200000554323 ], [ 359682.703199997544289, 258188.905099999159575 ], [ 359814.069099999964237, 258174.22069999948144 ], [ 359832.722199998795986, 258192.477000001817942 ], [ 359848.487700000405312, 258190.452399998903275 ], [ 359844.533500000834465, 258181.343100000172853 ], [ 359835.748499996960163, 258171.349800001829863 ], [ 359826.112300001084805, 258166.626800000667572 ], [ 359708.531000003218651, 258149.199200000613928 ], [ 359700.493000000715256, 258146.178100001066923 ], [ 359692.474899999797344, 258140.835099998861551 ], [ 359688.566899999976158, 258136.673900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904030500", "MAP": "B9-419-T74", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9216958, "LATITUDE": 18.35332722, "OBJECTID_1": 5091, "PARCEL_NO_": "102904030500", "Tax_Legal_": "CANAAN & SHERPENJEWEL 3F GR NORTHSIDE", "Name": "VERNON A. BALL TRUST & EVA M. BALL TRUST", "Address": "PO Box 501", "City": "Blowing Rock", "State": "North Carolina", "Zip": 286050501, "Country": "United States", "Land_Value": 227400, "Improved_V": 373100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 419.04999181800002, "SHAPE_Area": 8916.1935355900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359851.013999998569489, 258207.836300000548363 ], [ 359848.487700000405312, 258190.452399998903275 ], [ 359832.722199998795986, 258192.477000001817942 ], [ 359814.069099999964237, 258174.22069999948144 ], [ 359682.703199997544289, 258188.905099999159575 ], [ 359716.888700000941753, 258238.460200000554323 ], [ 359725.281900003552437, 258250.626899998635054 ], [ 359738.877899996936321, 258270.335700001567602 ], [ 359784.251800000667572, 258245.046399999409914 ], [ 359804.5016999989748, 258233.760099999606609 ], [ 359851.013999998569489, 258207.836300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903020800", "MAP": "A9-583-T002", "PARCEL_NAM": "3J", "ACRE": "11.01", "LONGITUDE": -64.92402246, "LATITUDE": 18.35554885, "OBJECTID_1": 4789, "PARCEL_NO_": "102903020800", "Tax_Legal_": "3J ESTATE CANNAN&SHERPENJEWEL No.7B GREAT NORTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 537500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1981.1819841199999, "SHAPE_Area": 39783.5028189 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359515.755900003015995, 258026.171999998390675 ], [ 359501.509400002658367, 258029.292399998754263 ], [ 359489.378700003027916, 258033.41499999910593 ], [ 359473.570200003683567, 258040.620999999344349 ], [ 359498.721500001847744, 258684.590199999511242 ], [ 359525.136699996888638, 258702.033100001513958 ], [ 359536.778399996459484, 258719.495600000023842 ], [ 359528.488099999725819, 258791.815200001001358 ], [ 359503.268500000238419, 258798.281100001186132 ], [ 359559.179799996316433, 258909.290500000119209 ], [ 359542.246500000357628, 258926.223799999803305 ], [ 359570.493500001728535, 258967.11879999935627 ], [ 359515.755900003015995, 258026.171999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903038500", "MAP": "D9-1484-T79", "PARCEL_NAM": "290C-1", "ACRE": ".15", "LONGITUDE": -64.9275429, "LATITUDE": 18.34805795, "OBJECTID_1": 4898, "PARCEL_NO_": "102903038500", "Tax_Legal_": "HOSPITAL GROUND 290C-1 GT. NORTHSIDE", "Name": "HARRIGAN, MORLINE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19700, "Improved_V": 351400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.096742701, "SHAPE_Area": 682.98630920599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359142.290500000119209, 257640.071600001305342 ], [ 359162.693499997258186, 257643.249600000679493 ], [ 359162.349200002849102, 257612.984299998730421 ], [ 359161.809199996292591, 257608.037599999457598 ], [ 359141.965400002896786, 257607.720100000500679 ], [ 359142.198600001633167, 257611.975000001490116 ], [ 359142.290500000119209, 257640.071600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "102903049900", "MAP": "D9-5579-T93", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9322407, "LATITUDE": 18.3557793, "OBJECTID_1": 4922, "PARCEL_NO_": "102903049900", "Tax_Legal_": "MISGUNST 5N & 5O GREAT NORTHSIDE", "Name": "ESTATE MISGUNST HOMEOWNER ASSO", "Address": "24519 Peach Tree Rd", "City": "Clarksburg", "State": "Maryland", "Zip": 20871, "Country": "United States", "Land_Value": 7200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1041.79074044, "SHAPE_Area": 3341.0975151399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358652.453299999237061, 258561.031800001859665 ], [ 358656.932800002396107, 258560.148600000888109 ], [ 358659.336199998855591, 258559.674800001084805 ], [ 358661.596799999475479, 258559.229100000113249 ], [ 358665.90429999679327, 258557.242600001394749 ], [ 358669.692299999296665, 258555.495600000023842 ], [ 358672.69200000166893, 258553.738699998706579 ], [ 358675.275499999523163, 258552.225499998778105 ], [ 358678.627899996936321, 258550.261999998241663 ], [ 358681.197899997234344, 258548.756700001657009 ], [ 358683.327799998223782, 258547.509300000965595 ], [ 358686.555299997329712, 258545.618999999016523 ], [ 358689.952600002288818, 258543.629099998623133 ], [ 358705.71169999986887, 258536.530900001525879 ], [ 358713.427400000393391, 258533.055500000715256 ], [ 358715.85530000180006, 258532.019900001585484 ], [ 358729.612999998033047, 258526.221900001168251 ], [ 358736.896799996495247, 258523.115100000053644 ], [ 358767.547399997711182, 258522.099399998784065 ], [ 358771.633000001311302, 258515.800000000745058 ], [ 358738.56700000166893, 258516.373700000345707 ], [ 358715.920100003480911, 258524.421000000089407 ], [ 358712.816100001335144, 258525.475999999791384 ], [ 358711.067800000309944, 258526.070099998265505 ], [ 358709.536200001835823, 258526.822799999266863 ], [ 358705.758199997246265, 258528.67960000038147 ], [ 358700.829999998211861, 258531.101599998772144 ], [ 358696.072400003671646, 258533.439800001680851 ], [ 358693.184199996292591, 258534.859200000762939 ], [ 358690.680500000715256, 258536.089800000190735 ], [ 358688.725699998438358, 258537.050500001758337 ], [ 358686.218999996781349, 258538.282400000840425 ], [ 358684.563299998641014, 258539.096099998801947 ], [ 358681.916500002145767, 258540.396899998188019 ], [ 358680.551600001752377, 258541.274099998176098 ], [ 358678.379799999296665, 258542.669900000095367 ], [ 358675.196900002658367, 258544.715500000864267 ], [ 358670.976300001144409, 258547.428100001066923 ], [ 358667.321900002658367, 258549.776700001209974 ], [ 358662.995899997651577, 258551.546999998390675 ], [ 358659.230099998414516, 258553.087999999523163 ], [ 358655.883699998259544, 258553.716600000858307 ], [ 358649.916199997067451, 258554.837499998509884 ], [ 358646.307499997317791, 258555.515299998223782 ], [ 358641.460600003600121, 258556.531100001186132 ], [ 358631.490699999034405, 258557.460799999535084 ], [ 358622.867600001394749, 258558.264800000935793 ], [ 358617.657700002193451, 258558.750599998980761 ], [ 358611.418700002133846, 258559.332400001585484 ], [ 358605.694200001657009, 258559.866099998354912 ], [ 358601.917099997401237, 258560.218299999833107 ], [ 358595.728299997746944, 258557.682700000703335 ], [ 358591.172899998724461, 258555.804400000721216 ], [ 358589.863799996674061, 258555.264499999582767 ], [ 358587.167099997401237, 258552.662399999797344 ], [ 358585.598999999463558, 258551.14919999986887 ], [ 358584.739399999380112, 258550.319699998944998 ], [ 358583.465499997138977, 258549.090399999171495 ], [ 358581.36370000243187, 258547.570700000971556 ], [ 358580.166299998760223, 258546.704799998551607 ], [ 358577.855400003492832, 258545.033700000494719 ], [ 358576.555900000035763, 258542.516199998557568 ], [ 358575.730800002813339, 258540.917500000447035 ], [ 358574.682300001382828, 258538.885999999940395 ], [ 358573.864500001072884, 258535.980399999767542 ], [ 358573.152000002563, 258533.448899999260902 ], [ 358572.442900002002716, 258530.929800000041723 ], [ 358571.383699998259544, 258527.166299998760223 ], [ 358570.063900001347065, 258522.477299999445677 ], [ 358569.473099999129772, 258520.377999998629093 ], [ 358569.203599996864796, 258519.420499999076128 ], [ 358570.05120000243187, 258514.572299998253584 ], [ 358572.842500001192093, 258512.177299998700619 ], [ 358575.58669999986887, 258509.822700001299381 ], [ 358577.362000003457069, 258508.299400001764297 ], [ 358580.800399996340275, 258506.981800001114607 ], [ 358585.114399999380112, 258505.328600000590086 ], [ 358588.688100002706051, 258503.959100000560284 ], [ 358592.664599999785423, 258501.992499999701977 ], [ 358595.634400002658367, 258500.523800000548363 ], [ 358600.025100000202656, 258498.352400001138449 ], [ 358601.708400003612041, 258497.239399999380112 ], [ 358607.580300003290176, 258493.35700000077486 ], [ 358611.203900001943111, 258490.961100000888109 ], [ 358614.314499996602535, 258488.904500000178814 ], [ 358617.054700002074242, 258487.092700000852346 ], [ 358619.992399998009205, 258483.528799999505281 ], [ 358622.034299999475479, 258481.051600001752377 ], [ 358624.335900001227856, 258478.259300000965595 ], [ 358628.092600002884865, 258473.701699998229742 ], [ 358632.928199999034405, 258467.835299998521805 ], [ 358634.802400000393391, 258465.699000000953674 ], [ 358636.710400000214577, 258463.795499999076128 ], [ 358637.982299998402596, 258462.526599999517202 ], [ 358639.783399999141693, 258460.729899998754263 ], [ 358640.671599999070168, 258459.843800000846386 ], [ 358650.501900002360344, 258441.770199999213219 ], [ 358651.427400000393391, 258436.80689999833703 ], [ 358652.191899999976158, 258432.706999998539686 ], [ 358653.584100000560284, 258423.652699999511242 ], [ 358654.223700001835823, 258419.493299998342991 ], [ 358654.752899996936321, 258416.051600001752377 ], [ 358657.276299998164177, 258411.092599999159575 ], [ 358660.086900003254414, 258405.569200001657009 ], [ 358662.597999997437, 258400.634199999272823 ], [ 358664.594099998474121, 258396.711500000208616 ], [ 358666.066799998283386, 258394.357299998402596 ], [ 358667.578000001609325, 258391.941700000315905 ], [ 358669.142700001597404, 258389.440499998629093 ], [ 358671.254900000989437, 258386.064100001007318 ], [ 358671.95160000026226, 258384.950500000268221 ], [ 358672.598899997770786, 258382.785599999129772 ], [ 358675.468199998140335, 258373.189899999648333 ], [ 358677.515500001609325, 258366.343400001525879 ], [ 358678.804999999701977, 258362.030799999833107 ], [ 358681.081799998879433, 258354.416700001806021 ], [ 358683.560000002384186, 258347.470899999141693 ], [ 358671.86089999973774, 258325.683100000023842 ], [ 358654.984099999070168, 258294.252500001341105 ], [ 358649.311200000345707, 258297.583599999547005 ], [ 358676.294200003147125, 258348.466899998486042 ], [ 358675.941100001335144, 258351.385400000959635 ], [ 358675.673100002110004, 258353.601100001484156 ], [ 358675.42679999768734, 258355.636999998241663 ], [ 358674.066200003027916, 258358.167300000786781 ], [ 358672.752300001680851, 258360.610800001770258 ], [ 358672.149400003254414, 258361.731899999082088 ], [ 358670.527400001883507, 258367.483500000089407 ], [ 358668.933100000023842, 258373.136900000274181 ], [ 358667.773400001227856, 258377.249400001019239 ], [ 358666.790899999439716, 258380.733399998396635 ], [ 358666.329000003635883, 258382.371399998664856 ], [ 358663.762999996542931, 258386.255199998617172 ], [ 358662.274899996817112, 258388.507500000298023 ], [ 358660.979800000786781, 258390.467700000852346 ], [ 358659.847199998795986, 258392.18189999833703 ], [ 358658.976899996399879, 258393.499200001358986 ], [ 358657.741200000047684, 258396.446899998933077 ], [ 358656.507600001990795, 258399.389600001275539 ], [ 358654.497900001704693, 258402.744199998676777 ], [ 358653.023999996483326, 258405.2043999992311 ], [ 358651.867399998009205, 258407.135000001639128 ], [ 358650.776000000536442, 258408.956799998879433 ], [ 358649.963600002229214, 258410.312899999320507 ], [ 358649.339699998497963, 258412.319899998605251 ], [ 358647.907700002193451, 258416.926199998706579 ], [ 358647.476300001144409, 258418.314100001007318 ], [ 358646.843099996447563, 258423.500100001692772 ], [ 358646.308600001037121, 258427.877399999648333 ], [ 358645.907700002193451, 258431.160999998450279 ], [ 358645.41610000282526, 258435.187300000339746 ], [ 358645.05179999768734, 258438.170699998736382 ], [ 358644.875699996948242, 258439.613200001418591 ], [ 358643.044900000095367, 258442.732700001448393 ], [ 358640.527000002563, 258447.022799998521805 ], [ 358638.275399997830391, 258450.859400000423193 ], [ 358636.694600000977516, 258453.55290000140667 ], [ 358635.875, 258454.949400000274181 ], [ 358633.994699999690056, 258457.299400001764297 ], [ 358631.97070000320673, 258459.828999999910593 ], [ 358630.958800002932549, 258461.093699999153614 ], [ 358630.169699996709824, 258462.079900000244379 ], [ 358628.673000000417233, 258463.591499999165535 ], [ 358627.251199997961521, 258465.02760000154376 ], [ 358625.040200002491474, 258467.260499998927116 ], [ 358622.88120000064373, 258469.441100001335144 ], [ 358621.354000002145767, 258470.983500000089407 ], [ 358619.595899999141693, 258472.759100001305342 ], [ 358618.043499998748302, 258475.152699999511242 ], [ 358616.712899997830391, 258477.2043999992311 ], [ 358615.510399997234344, 258479.058499999344349 ], [ 358614.628300003707409, 258479.910100001841784 ], [ 358613.119199998676777, 258481.36710000038147 ], [ 358609.409800000488758, 258484.081599999219179 ], [ 358606.153099998831749, 258486.234900001436472 ], [ 358602.700499996542931, 258488.517700001597404 ], [ 358600.006800003349781, 258490.298700001090765 ], [ 358596.971100002527237, 258492.305900000035763 ], [ 358594.046800002455711, 258494.064399998635054 ], [ 358591.266699999570847, 258495.490800000727177 ], [ 358588.824000000953674, 258496.744100000709295 ], [ 358586.319600000977516, 258498.029100000858307 ], [ 358582.924599997699261, 258499.219700001180172 ], [ 358579.517099998891354, 258500.414700001478195 ], [ 358576.293200001120567, 258501.545299999415874 ], [ 358573.379000000655651, 258502.567200001329184 ], [ 358570.2871999964118, 258505.46169999986887 ], [ 358568.16669999808073, 258507.446800000965595 ], [ 358566.141000002622604, 258509.343100000172853 ], [ 358564.437600001692772, 258510.937800001353025 ], [ 358564.261399999260902, 258531.623500000685453 ], [ 358565.863200001418591, 258532.903200000524521 ], [ 358572.981600001454353, 258549.215700000524521 ], [ 358581.716600000858307, 258557.063799999654293 ], [ 358583.372400000691414, 258558.551500000059605 ], [ 358585.785499997437, 258560.719500001519918 ], [ 358591.697999998927116, 258563.056600000709295 ], [ 358595.444399997591972, 258564.537399999797344 ], [ 358598.752199999988079, 258565.844900000840425 ], [ 358601.055100001394749, 258566.755100000649691 ], [ 358604.384499996900558, 258566.49210000038147 ], [ 358608.317299999296665, 258566.18129999935627 ], [ 358618.198700003325939, 258565.400499999523163 ], [ 358624.744599997997284, 258564.883299998939037 ], [ 358630.343900002539158, 258564.440799999982119 ], [ 358636.678599998354912, 258563.940200001001358 ], [ 358638.605899997055531, 258563.787999998778105 ], [ 358639.786799997091293, 258563.694600000977516 ], [ 358647.638199999928474, 258562.022900000214577 ], [ 358652.453299999237061, 258561.031800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904018800", "MAP": "D9-1489-T79", "PARCEL_NAM": "11-1", "ACRE": ".46", "LONGITUDE": -64.91929353, "LATITUDE": 18.35375008, "OBJECTID_1": 4998, "PARCEL_NO_": "102904018800", "Tax_Legal_": "LOUISENHOJ 11-1 5A GT. NORTHSIDE", "Name": "DAVIS, ARTHUR McCOY", "Address": "P.O.BOX 5856", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76400, "Improved_V": 295500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.02292407799999, "SHAPE_Area": 1902.91510105 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360007.42849999666214, 258231.834100000560284 ], [ 359997.228900000452995, 258284.804800000041723 ], [ 360029.843999996781349, 258294.105999998748302 ], [ 360040.786399997770786, 258240.155600000172853 ], [ 360041.375500001013279, 258237.526999998837709 ], [ 360031.38459999859333, 258235.851500000804663 ], [ 360007.42849999666214, 258231.834100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904019200", "MAP": "D9-4968-T90", "PARCEL_NAM": "1-22A", "ACRE": ".50", "LONGITUDE": -64.91827673, "LATITUDE": 18.35430965, "OBJECTID_1": 5002, "PARCEL_NO_": "102904019200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-22A NORTHSIDE GTR.", "Name": "COFFELT, GORDON & KAREN O.", "Address": "PO BOX 502711", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 62600, "Improved_V": 408400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.77156856900001, "SHAPE_Area": 1436.65789384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360085.570799998939037, 258318.312399998307228 ], [ 360104.320600003004074, 258318.658399999141693 ], [ 360108.606899999082088, 258330.564699999988079 ], [ 360110.288999997079372, 258349.639699999243021 ], [ 360131.058100000023842, 258339.686299998313189 ], [ 360135.928400002419949, 258335.926399998366833 ], [ 360143.219400003552437, 258331.975299999117851 ], [ 360154.54730000346899, 258327.4239999987185 ], [ 360169.091499999165535, 258323.9543999992311 ], [ 360169.935599997639656, 258319.528400000184774 ], [ 360168.331900000572205, 258318.459800001233816 ], [ 360138.518200002610683, 258315.893699999898672 ], [ 360131.272100001573563, 258314.567899998277426 ], [ 360119.202600002288818, 258311.513799998909235 ], [ 360106.350199997425079, 258305.709100000560284 ], [ 360085.570799998939037, 258318.312399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904021800", "MAP": "D9-6230-T97", "PARCEL_NAM": "407A-2A", "ACRE": ".17", "LONGITUDE": -64.92158955, "LATITUDE": 18.34983909, "OBJECTID_1": 5025, "PARCEL_NO_": "102904021800", "Tax_Legal_": "407A-2A HOSPITAL GROUND 9 NEW QTR", "Name": "BRYAN, CLIFF", "Address": "407A-1 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.93231014099999, "SHAPE_Area": 966.96459213399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359786.191699996590614, 257802.003699999302626 ], [ 359775.663999997079372, 257802.893100000917912 ], [ 359762.964000001549721, 257832.420699998736382 ], [ 359768.678999997675419, 257832.896899998188019 ], [ 359769.575900003314018, 257847.685300000011921 ], [ 359795.788599997758865, 257845.305300001055002 ], [ 359788.02759999781847, 257809.778099998831749 ], [ 359786.191699996590614, 257802.003699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003060100", "MAP": "D9-1601-T80", "PARCEL_NAM": "B-10", "ACRE": ".365", "LONGITUDE": -64.9096368, "LATITUDE": 18.35644667, "OBJECTID_1": 5932, "PARCEL_NO_": "103003060100", "Tax_Legal_": "LOVELUND B-10,10-A,10-B&B-13 GT.NORTHSIDE QTR.", "Name": "FRANCIS, DELREASE", "Address": "PO Box 11613", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46800, "Improved_V": 178000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.702596599, "SHAPE_Area": 1776.1724223199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361073.576999999582767, 258554.148499999195337 ], [ 361073.153899997472763, 258543.561900001019239 ], [ 361063.877199999988079, 258533.24549999833107 ], [ 361030.677699998021126, 258562.786800000816584 ], [ 360990.085199996829033, 258594.962999999523163 ], [ 361002.914300002157688, 258603.511799998581409 ], [ 361013.466499999165535, 258595.365499999374151 ], [ 361041.829499997198582, 258578.92119999974966 ], [ 361044.260999999940395, 258577.463500000536442 ], [ 361047.502400003373623, 258575.590199999511242 ], [ 361051.553800001740456, 258573.301300000399351 ], [ 361064.542900003492832, 258563.063999999314547 ], [ 361073.576999999582767, 258554.148499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001015100", "MAP": "D9-6601-T99", "PARCEL_NAM": "8DA", "ACRE": ".1115", "LONGITUDE": -64.91161497, "LATITUDE": 18.35677045, "OBJECTID_1": 5162, "PARCEL_NO_": "103001015100", "Tax_Legal_": "8DA & 8D-B(R.O.W.) ESTATE ST. JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "PRINCE HASTING, BLONDELLE", "Address": "PO Box 1032", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.80011986100001, "SHAPE_Area": 693.52508933000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360852.111299999058247, 258619.156599998474121 ], [ 360849.994699999690056, 258612.806600000709295 ], [ 360846.02589999884367, 258614.658700000494719 ], [ 360844.438400000333786, 258615.187899999320507 ], [ 360841.792599998414516, 258614.658700000494719 ], [ 360840.998800002038479, 258613.600400000810623 ], [ 360836.236299999058247, 258610.689899999648333 ], [ 360809.229000002145767, 258568.149300001561642 ], [ 360807.706600002944469, 258565.803700000047684 ], [ 360802.828100003302097, 258572.166200000792742 ], [ 360804.104800000786781, 258574.111400000751019 ], [ 360839.068899996578693, 258632.058800000697374 ], [ 360850.259300000965595, 258625.241999998688698 ], [ 360848.936300002038479, 258622.331599999219179 ], [ 360849.200900003314018, 258620.744100000709295 ], [ 360850.523800000548363, 258620.214999999850988 ], [ 360852.111299999058247, 258619.156599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001015100", "MAP": "D9-6601-T99", "PARCEL_NAM": "8D-3", "ACRE": ".13", "LONGITUDE": -64.91142848, "LATITUDE": 18.35676013, "OBJECTID_1": 5162, "PARCEL_NO_": "103001015100", "Tax_Legal_": "8DA & 8D-B(R.O.W.) ESTATE ST. JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "PRINCE HASTING, BLONDELLE", "Address": "PO Box 1032", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.412613386100006, "SHAPE_Area": 594.95645765899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360851.03490000218153, 258585.254000000655651 ], [ 360830.034599997103214, 258600.921300001442432 ], [ 360836.236299999058247, 258610.689899999648333 ], [ 360840.998800002038479, 258613.600400000810623 ], [ 360841.792599998414516, 258614.658700000494719 ], [ 360844.438400000333786, 258615.187899999320507 ], [ 360846.02589999884367, 258614.658700000494719 ], [ 360849.994699999690056, 258612.806600000709295 ], [ 360851.000100001692772, 258615.822900000959635 ], [ 360864.924800001084805, 258605.134100001305342 ], [ 360851.03490000218153, 258585.254000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001015100", "MAP": "D9-6601-T99", "PARCEL_NAM": "8D-2", "ACRE": ".14", "LONGITUDE": -64.91155134, "LATITUDE": 18.35659902, "OBJECTID_1": 5162, "PARCEL_NO_": "103001015100", "Tax_Legal_": "8DA & 8D-B(R.O.W.) ESTATE ST. JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "PRINCE HASTING, BLONDELLE", "Address": "PO Box 1032", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.353210157600003, "SHAPE_Area": 548.70840758099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360851.03490000218153, 258585.254000000655651 ], [ 360838.263199999928474, 258566.974300000816584 ], [ 360819.089000001549721, 258583.680300001055002 ], [ 360830.034599997103214, 258600.921300001442432 ], [ 360851.03490000218153, 258585.254000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001015100", "MAP": "D9-6601-T99", "PARCEL_NAM": "8D-1", "ACRE": ".14", "LONGITUDE": -64.91167003, "LATITUDE": 18.35643055, "OBJECTID_1": 5162, "PARCEL_NO_": "103001015100", "Tax_Legal_": "8DA & 8D-B(R.O.W.) ESTATE ST. JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "PRINCE HASTING, BLONDELLE", "Address": "PO Box 1032", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.253033474700004, "SHAPE_Area": 578.71133702199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360825.273699998855591, 258549.412300001829863 ], [ 360822.80120000243187, 258546.210499998182058 ], [ 360821.083999998867512, 258548.35700000077486 ], [ 360807.706600002944469, 258565.803700000047684 ], [ 360809.229000002145767, 258568.149300001561642 ], [ 360819.089000001549721, 258583.680300001055002 ], [ 360838.263199999928474, 258566.974300000816584 ], [ 360832.854299999773502, 258559.232799999415874 ], [ 360825.273699998855591, 258549.412300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001013800", "MAP": "D9-1660-T81", "PARCEL_NAM": "7-D", "ACRE": null, "LONGITUDE": -64.9153979, "LATITUDE": 18.35924376, "OBJECTID_1": 5158, "PARCEL_NO_": "103001013800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 7-D GT. NORTHSIDE", "Name": "MAGENS INTER. RESORT, INC.", "Address": "7D ST.JOS&ROSENDHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.09448207299999, "SHAPE_Area": 3836.9060829700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360466.095100000500679, 258889.355099998414516 ], [ 360450.087200000882149, 258854.890000000596046 ], [ 360432.227700002491474, 258845.761799998581409 ], [ 360428.580300003290176, 258816.237500000745058 ], [ 360409.819300003349781, 258841.415100000798702 ], [ 360404.922100000083447, 258848.3412000015378 ], [ 360402.470799997448921, 258852.120799999684095 ], [ 360401.648299999535084, 258854.013900000602007 ], [ 360393.455700002610683, 258869.145599998533726 ], [ 360391.787299998104572, 258875.675799999386072 ], [ 360392.546899996697903, 258881.170499999076128 ], [ 360395.680399999022484, 258891.961899999529123 ], [ 360399.668799996376038, 258897.0608000010252 ], [ 360422.907999999821186, 258914.1385000012815 ], [ 360466.095100000500679, 258889.355099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103001039700", "MAP": "A9-718-T007", "PARCEL_NAM": "C-6 ROW", "ACRE": null, "LONGITUDE": -64.90749029, "LATITUDE": 18.36420407, "OBJECTID_1": 5272, "PARCEL_NO_": "103001039700", "Tax_Legal_": "LOVENLUND REM C-6 GT NORTHSIDE", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 8900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2403.1971085, "SHAPE_Area": 10860.722650199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361496.695200003683567, 259408.122999999672174 ], [ 361492.38570000231266, 259401.333500001579523 ], [ 361482.310900002717972, 259406.846700001507998 ], [ 361472.590199999511242, 259412.04450000077486 ], [ 361458.845200002193451, 259416.364900000393391 ], [ 361440.273000001907349, 259419.379299998283386 ], [ 361420.910700000822544, 259420.487399999052286 ], [ 361418.498999997973442, 259419.6233000010252 ], [ 361406.440200001001358, 259415.302799999713898 ], [ 361387.128300003707409, 259410.500599998980761 ], [ 361357.330700002610683, 259406.03489999845624 ], [ 361342.81530000269413, 259406.127199999988079 ], [ 361323.472800001502037, 259406.258299998939037 ], [ 361314.590800002217293, 259406.318399999290705 ], [ 361278.218599997460842, 259416.36430000141263 ], [ 361268.530199997127056, 259417.762600000947714 ], [ 361249.979699999094009, 259418.244100000709295 ], [ 361240.293099999427795, 259419.43129999935627 ], [ 361228.979599997401237, 259422.294100001454353 ], [ 361204.734499998390675, 259428.639499999582767 ], [ 361174.877499997615814, 259431.139400001615286 ], [ 361157.961099997162819, 259429.101100001484156 ], [ 361133.784400001168251, 259427.425599999725819 ], [ 361097.639700002968311, 259425.136700000613928 ], [ 361087.846100002527237, 259424.516399998217821 ], [ 361070.116200000047684, 259423.315900001674891 ], [ 361058.062899999320507, 259418.362100001424551 ], [ 361044.402400001883507, 259412.761799998581409 ], [ 361032.390399999916553, 259402.953200001269579 ], [ 361025.194700002670288, 259395.717099998146296 ], [ 361021.21169999986887, 259389.984999999403954 ], [ 361012.482500001788139, 259373.448300000280142 ], [ 361005.855899997055531, 259327.072599999606609 ], [ 361004.872500002384186, 259320.190400000661612 ], [ 361004.109399996697903, 259315.117899999022484 ], [ 360995.22919999808073, 259316.311799999326468 ], [ 360996.863899998366833, 259329.203999999910593 ], [ 360999.007200002670288, 259346.106899999082088 ], [ 360997.286700002849102, 259358.758400000631809 ], [ 360973.639300003647804, 259389.59569999948144 ], [ 360967.113200001418591, 259398.40819999948144 ], [ 360958.972800001502037, 259407.418600000441074 ], [ 360955.691799998283386, 259413.935600001364946 ], [ 360954.797399997711182, 259424.271899998188019 ], [ 360956.361400000751019, 259429.984200000762939 ], [ 360961.14360000193119, 259436.567200001329184 ], [ 360979.566500000655651, 259451.072399999946356 ], [ 361001.16610000282526, 259471.303100001066923 ], [ 361009.990599997341633, 259476.65260000154376 ], [ 361012.396899998188019, 259478.149999998509884 ], [ 361042.09740000218153, 259494.013999998569489 ], [ 361073.417700000107288, 259509.046900000423193 ], [ 361086.288199998438358, 259512.740800000727177 ], [ 361099.160400003194809, 259516.223700001835823 ], [ 361149.900499999523163, 259523.393899999558926 ], [ 361174.161799997091293, 259515.148800000548363 ], [ 361130.660499997437, 259510.148699998855591 ], [ 361106.492700003087521, 259507.417700000107288 ], [ 361088.784400001168251, 259503.684200000017881 ], [ 361071.903999999165535, 259497.424300000071526 ], [ 361047.007200002670288, 259485.610399998724461 ], [ 361016.500399999320507, 259469.739799998700619 ], [ 361007.692100003361702, 259462.490499999374151 ], [ 360966.859700001776218, 259428.170299999415874 ], [ 360964.523500002920628, 259418.440900001674891 ], [ 360965.349600002169609, 259416.125599998980761 ], [ 360979.20610000193119, 259398.718199998140335 ], [ 360988.174500003457069, 259387.181499999016523 ], [ 360997.94370000064373, 259376.284600000828505 ], [ 361002.779799997806549, 259376.535300001502037 ], [ 361004.385200001299381, 259377.392799999564886 ], [ 361010.718800000846386, 259391.165699999779463 ], [ 361017.88570000231266, 259401.778999999165535 ], [ 361025.880500003695488, 259409.86600000038743 ], [ 361030.687799997627735, 259413.493999999016523 ], [ 361040.302500002086163, 259420.749800000339746 ], [ 361066.822700001299381, 259431.310499999672174 ], [ 361105.493299998342991, 259435.426699999719858 ], [ 361106.443000003695488, 259435.491900000721216 ], [ 361136.923299998044968, 259437.583700001239777 ], [ 361175.608300000429153, 259440.011300001293421 ], [ 361206.269799999892712, 259437.729100000113249 ], [ 361239.405900001525879, 259428.923300001770258 ], [ 361269.259199999272823, 259426.845600001513958 ], [ 361280.561999998986721, 259425.249400001019239 ], [ 361316.12610000371933, 259415.407900001853704 ], [ 361342.745200000703335, 259414.359200000762939 ], [ 361360.764899998903275, 259415.555599998682737 ], [ 361364.504799999296665, 259415.803899999707937 ], [ 361383.83110000193119, 259418.917399998754263 ], [ 361396.685400001704693, 259424.510999999940395 ], [ 361404.363600000739098, 259431.20380000025034 ], [ 361411.157600000500679, 259429.484600000083447 ], [ 361447.47410000115633, 259425.982200000435114 ], [ 361451.512800000607967, 259425.170899998396635 ], [ 361468.474200002849102, 259421.932199999690056 ], [ 361486.209399998188019, 259422.499499998986721 ], [ 361536.996299996972084, 259424.181800000369549 ], [ 361608.72580000013113, 259428.568500000983477 ], [ 361623.230400003492832, 259429.74269999936223 ], [ 361642.571099996566772, 259431.167500000447035 ], [ 361673.164200000464916, 259436.906399998813868 ], [ 361679.605700001120567, 259438.014600001275539 ], [ 361705.359200000762939, 259443.924899999052286 ], [ 361719.860200002789497, 259445.521200001239777 ], [ 361731.976499997079372, 259443.087200000882149 ], [ 361735.214299999177456, 259441.636100001633167 ], [ 361741.689999997615814, 259438.733800001442432 ], [ 361748.991800002753735, 259433.516199998557568 ], [ 361762.002499997615814, 259420.745999999344349 ], [ 361775.82490000128746, 259407.34910000115633 ], [ 361772.667900003492832, 259399.301699999719858 ], [ 361746.64299999922514, 259425.264299999922514 ], [ 361740.145700000226498, 259430.699599999934435 ], [ 361729.618699997663498, 259435.890799999237061 ], [ 361721.541199997067451, 259437.513399999588728 ], [ 361708.64019999653101, 259437.407800000160933 ], [ 361682.892099998891354, 259430.86430000141263 ], [ 361648.272799998521805, 259424.459199998527765 ], [ 361609.602200001478195, 259420.342999998480082 ], [ 361573.336099997162819, 259417.935300000011921 ], [ 361486.279600001871586, 259414.267400000244379 ], [ 361496.695200003683567, 259408.122999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103001040700", "MAP": "A9-274-T79", "PARCEL_NAM": "5-H", "ACRE": ".01", "LONGITUDE": -64.90339374, "LATITUDE": 18.35666558, "OBJECTID_1": 5281, "PARCEL_NO_": "103001040700", "Tax_Legal_": "5-G,5-H ESTATE LOVENLUND GT.NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 1600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 12.431598668, "SHAPE_Area": 2.4930605885400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361694.91950000077486, 258597.690600000321865 ], [ 361695.181500002741814, 258598.672800000756979 ], [ 361700.533399999141693, 258599.705299999564886 ], [ 361694.91950000077486, 258597.690600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103001040700", "MAP": "A9-274-T79", "PARCEL_NAM": "5-I", "ACRE": ".074", "LONGITUDE": -64.9033432, "LATITUDE": 18.35663997, "OBJECTID_1": 5281, "PARCEL_NO_": "103001040700", "Tax_Legal_": "5-G,5-H ESTATE LOVENLUND GT.NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 1600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.690951828400003, "SHAPE_Area": 205.064241745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361699.722900003194809, 258591.0608000010252 ], [ 361687.642599999904633, 258589.27309999987483 ], [ 361689.554700002074242, 258591.953499998897314 ], [ 361691.028499998152256, 258594.019499998539686 ], [ 361691.987700000405312, 258595.364100001752377 ], [ 361692.587899997830391, 258596.205400001257658 ], [ 361693.209700003266335, 258597.076900001615286 ], [ 361694.91950000077486, 258597.690600000321865 ], [ 361697.1858000010252, 258598.503899998962879 ], [ 361698.794100001454353, 258599.0810999982059 ], [ 361700.533399999141693, 258599.705299999564886 ], [ 361702.227899998426437, 258601.093499999493361 ], [ 361703.17849999666214, 258601.872099999338388 ], [ 361704.09009999781847, 258602.618900001049042 ], [ 361705.093099996447563, 258603.440499998629093 ], [ 361705.100000001490116, 258606.769099999219179 ], [ 361705.106799997389317, 258610.015900000929832 ], [ 361715.068000003695488, 258588.230999998748302 ], [ 361713.852899998426437, 258589.586500000208616 ], [ 361712.625699996948242, 258590.955299999564886 ], [ 361711.007700003683567, 258591.575300000607967 ], [ 361708.926500000059605, 258591.480500001460314 ], [ 361707.342299997806549, 258591.40819999948144 ], [ 361705.652500003576279, 258591.331199999898672 ], [ 361704.063400000333786, 258591.258699998259544 ], [ 361702.887199997901917, 258591.205099999904633 ], [ 361701.514300003647804, 258591.142499998211861 ], [ 361699.722900003194809, 258591.0608000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002032300", "MAP": "D9-6982-T001", "PARCEL_NAM": "D-11 REM", "ACRE": null, "LONGITUDE": -64.90163876, "LATITUDE": 18.36373615, "OBJECTID_1": 5359, "PARCEL_NO_": "103002032300", "Tax_Legal_": "D-11 REM. LOVENLUND No.2 GREAT NORTHSIDE QTR.", "Name": "ROMANI FAMILY REV. TRST", "Address": "145 Cooper Rd", "City": "Chepachet", "State": "Rhode Island", "Zip": 2814, "Country": "United States", "Land_Value": 151700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.264899908, "SHAPE_Area": 788.2978011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361860.510399997234344, 259362.64979999884963 ], [ 361866.295299999415874, 259379.269200000911951 ], [ 361868.602899998426437, 259401.986800000071526 ], [ 361881.512900002300739, 259401.036899998784065 ], [ 361893.598600000143051, 259402.191300000995398 ], [ 361876.219400003552437, 259359.830400001257658 ], [ 361860.510399997234344, 259362.64979999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103002035100", "MAP": null, "PARCEL_NAM": "D-22", "ACRE": null, "LONGITUDE": -64.90310547, "LATITUDE": 18.36184329, "OBJECTID_1": 5396, "PARCEL_NO_": "103002035100", "Tax_Legal_": "LOVENLUND D-22 GT. NORTHSIDE QTR.", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 1400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.667268096, "SHAPE_Area": 326.62678866200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361697.166199997067451, 259175.13569999858737 ], [ 361699.523999996483326, 259182.33219999819994 ], [ 361706.818599998950958, 259177.95890000090003 ], [ 361711.530199997127056, 259175.169199999421835 ], [ 361714.281900003552437, 259174.428300000727177 ], [ 361719.891099996864796, 259173.370000001043081 ], [ 361727.722800001502037, 259172.629200000315905 ], [ 361733.226099997758865, 259172.734999999403954 ], [ 361740.528599999845028, 259173.581700000911951 ], [ 361744.232799999415874, 259174.110800001770258 ], [ 361747.513599999248981, 259174.957499999552965 ], [ 361748.571999996900558, 259175.592500001192093 ], [ 361749.092100001871586, 259164.313099998980761 ], [ 361748.858300000429153, 259165.215199999511242 ], [ 361746.421400003135204, 259167.306200001388788 ], [ 361743.187200002372265, 259168.335200000554323 ], [ 361731.105099998414516, 259166.758600000292063 ], [ 361714.9662000015378, 259168.104200001806021 ], [ 361705.267099998891354, 259170.769000001251698 ], [ 361697.166199997067451, 259175.13569999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036300", "MAP": "C9-249-T80", "PARCEL_NAM": "D-21-A", "ACRE": ".20", "LONGITUDE": -64.90307593, "LATITUDE": 18.36197641, "OBJECTID_1": 5505, "PARCEL_NO_": "103002036300", "Tax_Legal_": "PATIO VILLA#1 MAHOGANY GT. NORTHSIDE", "Name": "KOMIVES M., LISA", "Address": "6679 Estate Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102800, "Improved_V": 509800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.643924805, "SHAPE_Area": 492.36655434099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361702.675599999725819, 259191.012800000607967 ], [ 361745.887599997222424, 259193.401200000196695 ], [ 361747.040700003504753, 259189.265000000596046 ], [ 361747.721400000154972, 259180.680599998682737 ], [ 361699.523999996483326, 259182.33219999819994 ], [ 361702.675599999725819, 259191.012800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036300", "MAP": "C9-249-T80", "PARCEL_NAM": "D-20", "ACRE": ".08", "LONGITUDE": -64.90302314, "LATITUDE": 18.36209514, "OBJECTID_1": 5505, "PARCEL_NO_": "103002036300", "Tax_Legal_": "PATIO VILLA#1 MAHOGANY GT. NORTHSIDE", "Name": "KOMIVES M., LISA", "Address": "6679 Estate Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102800, "Improved_V": 509800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.308087152200002, "SHAPE_Area": 423.15217708900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361708.178599998354912, 259191.31700000166893 ], [ 361737.808499999344349, 259214.6064000017941 ], [ 361742.049999997019768, 259207.167100001126528 ], [ 361745.887599997222424, 259193.401200000196695 ], [ 361708.178599998354912, 259191.31700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036500", "MAP": null, "PARCEL_NAM": "D-20-B", "ACRE": null, "LONGITUDE": -64.90319863000001, "LATITUDE": 18.36222281, "OBJECTID_1": 5507, "PARCEL_NO_": "103002036500", "Tax_Legal_": "C-47-D & D-20-B ESTATE LOVENLUND \"a/k/a\" PATIO VILLA#3 MAHOGANY GT. NORTHSIDE", "Name": "CLAYTON, ALEXANDER AND ELENA LEONIDOVNA CLAYTON", "Address": "1111 Rusk St", "City": "Houston", "State": "Texas", "Zip": 77002, "Country": "United States", "Land_Value": 101900, "Improved_V": 413300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.686996333500005, "SHAPE_Area": 144.03962509300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361719.297399997711182, 259231.172499999403954 ], [ 361711.479400001466274, 259201.886100001633167 ], [ 361709.75959999859333, 259202.018399998545647 ], [ 361708.568899996578693, 259197.388199999928474 ], [ 361704.91160000115633, 259198.125700000673532 ], [ 361706.601000003516674, 259203.499499998986721 ], [ 361716.831299997866154, 259233.136300001293421 ], [ 361719.297399997711182, 259231.172499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002036300", "MAP": null, "PARCEL_NAM": "D-20-A", "ACRE": null, "LONGITUDE": -64.90308501, "LATITUDE": 18.36237588, "OBJECTID_1": 5505, "PARCEL_NO_": "103002036300", "Tax_Legal_": "PATIO VILLA#1 MAHOGANY GT. NORTHSIDE", "Name": "KOMIVES M., LISA", "Address": "6679 Estate Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 102800, "Improved_V": 509800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.370484278399999, "SHAPE_Area": 108.78752466100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361733.906599998474121, 259219.538800001144409 ], [ 361716.831299997866154, 259233.136300001293421 ], [ 361719.178300000727177, 259241.599199999123812 ], [ 361731.406099997460842, 259226.078400000929832 ], [ 361733.906599998474121, 259219.538800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103002039300", "MAP": "A9-718-T007", "PARCEL_NAM": "C-18-C", "ACRE": null, "LONGITUDE": -64.90343164, "LATITUDE": 18.36298887, "OBJECTID_1": 5582, "PARCEL_NO_": "103002039300", "Tax_Legal_": "LOVENLUND C-18-C GT NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 4000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.681766227, "SHAPE_Area": 615.72683497699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361637.842200003564358, 259323.682199999690056 ], [ 361651.529700003564358, 259326.116300001740456 ], [ 361685.571099996566772, 259305.707699999213219 ], [ 361729.417700000107288, 259270.180700000375509 ], [ 361727.050899997353554, 259264.039599999785423 ], [ 361683.19709999859333, 259300.410900000482798 ], [ 361669.414300002157688, 259309.164099998772144 ], [ 361652.407999999821186, 259317.679699998348951 ], [ 361637.842200003564358, 259323.682199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002037100", "MAP": "C9-236-T79", "PARCEL_NAM": "D-8", "ACRE": ".50", "LONGITUDE": -64.90268035, "LATITUDE": 18.36297235, "OBJECTID_1": 5513, "PARCEL_NO_": "103002037100", "Tax_Legal_": "D-8 REM LOVELLUND GREAT NORTHSIDE QTR", "Name": "GINN- LA FUND IV MAHOGANY, LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 8400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.232244979, "SHAPE_Area": 1499.22828355 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361780.566399998962879, 259267.018399998545647 ], [ 361740.430900000035763, 259302.56810000166297 ], [ 361748.288999997079372, 259326.69709999859333 ], [ 361762.050300002098083, 259320.47690000012517 ], [ 361764.489000000059605, 259318.174899999052286 ], [ 361794.586900003254414, 259287.390399999916553 ], [ 361782.637900002300739, 259270.194099999964237 ], [ 361780.566399998962879, 259267.018399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002037100", "MAP": "C9-236-T79", "PARCEL_NAM": "D-8", "ACRE": null, "LONGITUDE": -64.90293773, "LATITUDE": 18.36250346, "OBJECTID_1": 5513, "PARCEL_NO_": "103002037100", "Tax_Legal_": "D-8 REM LOVELLUND GREAT NORTHSIDE QTR", "Name": "GINN- LA FUND IV MAHOGANY, LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 8400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.77114140499999, "SHAPE_Area": 573.85457597699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361760.330899998545647, 259238.347500000149012 ], [ 361754.755000002682209, 259230.280299998819828 ], [ 361744.247800000011921, 259233.149599999189377 ], [ 361734.528899997472763, 259238.136300001293421 ], [ 361728.037000000476837, 259242.938299998641014 ], [ 361722.338899999856949, 259249.224500000476837 ], [ 361727.050899997353554, 259264.039599999785423 ], [ 361760.330899998545647, 259238.347500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002040200", "MAP": "D9-1949-T82", "PARCEL_NAM": "D-8-B", "ACRE": null, "LONGITUDE": -64.90275799, "LATITUDE": 18.36284376, "OBJECTID_1": 5590, "PARCEL_NO_": "103002040200", "Tax_Legal_": "D-8-B LOVENLUND GREAT NORTHSIDE QTR", "Name": "DUN RUN DEVELOPMENT LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 2700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.871816983, "SHAPE_Area": 288.34923653099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361777.871299996972084, 259263.098900001496077 ], [ 361738.064099997282028, 259296.427000001072884 ], [ 361740.430900000035763, 259302.56810000166297 ], [ 361780.566399998962879, 259267.018399998545647 ], [ 361779.454000003635883, 259265.312899999320507 ], [ 361777.871299996972084, 259263.098900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002037100", "MAP": "D9-1949-T82", "PARCEL_NAM": "D-8-C", "ACRE": null, "LONGITUDE": -64.90289288, "LATITUDE": 18.36258482, "OBJECTID_1": 5513, "PARCEL_NO_": "103002037100", "Tax_Legal_": "D-8 REM LOVELLUND GREAT NORTHSIDE QTR", "Name": "GINN- LA FUND IV MAHOGANY, LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 8400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.403242102299998, "SHAPE_Area": 239.96488985900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361760.330899998545647, 259238.347500000149012 ], [ 361727.050899997353554, 259264.039599999785423 ], [ 361729.417700000107288, 259270.180700000375509 ], [ 361763.272299997508526, 259242.265299998223782 ], [ 361760.330899998545647, 259238.347500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103002040300", "MAP": "A9-718-T007", "PARCEL_NAM": "C-18-B", "ACRE": null, "LONGITUDE": -64.90321088, "LATITUDE": 18.36317702, "OBJECTID_1": 5591, "PARCEL_NO_": "103002040300", "Tax_Legal_": "C-18-B LOVENLUND GREAT NORTHSIDE QTR", "Name": "DUN RUN DEVELOPMENT LLC", "Address": "3100 Monticello Ave", "City": "Dallas", "State": "Texas", "Zip": 75205, "Country": "United States", "Land_Value": 2400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.656594824, "SHAPE_Area": 441.60174613300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361668.422700002789497, 259330.898600000888109 ], [ 361686.926600001752377, 259335.905200000852346 ], [ 361698.243699997663498, 259332.620299998670816 ], [ 361707.964400000870228, 259327.422499999403954 ], [ 361740.430900000035763, 259302.56810000166297 ], [ 361738.064099997282028, 259296.427000001072884 ], [ 361712.091300003230572, 259316.268399998545647 ], [ 361707.213899999856949, 259320.872499998658895 ], [ 361697.489600002765656, 259326.492400001734495 ], [ 361682.941799998283386, 259330.384100001305342 ], [ 361672.45610000193119, 259330.720499999821186 ], [ 361668.422700002789497, 259330.898600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103002039400", "MAP": "A9-302-T83", "PARCEL_NAM": "C-16", "ACRE": null, "LONGITUDE": -64.90464058000001, "LATITUDE": 18.3645602, "OBJECTID_1": 5583, "PARCEL_NO_": "103002039400", "Tax_Legal_": "LOVENLUND C-16 GT NORTHSIDE QTR", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 8700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 439.220747082, "SHAPE_Area": 1289.63985867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361476.450400002300739, 259492.61879999935627 ], [ 361479.490900002419949, 259492.406700000166893 ], [ 361484.888400003314018, 259492.406700000166893 ], [ 361495.20719999819994, 259491.771699998527765 ], [ 361502.827200002968311, 259491.295400001108646 ], [ 361509.239200003445148, 259489.416000001132488 ], [ 361512.034699998795986, 259488.596700001507998 ], [ 361520.289700001478195, 259486.850400000810623 ], [ 361535.311599999666214, 259483.658900000154972 ], [ 361551.803800001740456, 259484.464600000530481 ], [ 361565.500299997627735, 259485.843299999833107 ], [ 361585.64190000295639, 259487.907999999821186 ], [ 361601.768200002610683, 259488.039900001138449 ], [ 361600.200499996542931, 259482.749800000339746 ], [ 361595.355400003492832, 259483.554499998688698 ], [ 361593.771600000560284, 259480.164000000804663 ], [ 361585.703100003302097, 259480.731300000101328 ], [ 361583.26799999922514, 259482.611200001090765 ], [ 361559.101999998092651, 259479.669199999421835 ], [ 361557.500100001692772, 259478.389499999582767 ], [ 361557.523500002920628, 259475.645500000566244 ], [ 361607.81700000166893, 259440.593400001525879 ], [ 361620.804300002753735, 259430.567200001329184 ], [ 361623.230400003492832, 259429.74269999936223 ], [ 361608.72580000013113, 259428.568500000983477 ], [ 361608.706000000238419, 259430.890399999916553 ], [ 361594.903399996459484, 259441.965399999171495 ], [ 361556.776500001549721, 259468.673300001770258 ], [ 361545.857799999415874, 259476.296100001782179 ], [ 361539.9746999964118, 259476.84910000115633 ], [ 361537.593500003218651, 259477.00789999961853 ], [ 361533.148500002920628, 259477.484099999070168 ], [ 361525.846000000834465, 259479.230399999767542 ], [ 361515.527199998497963, 259481.611600000411272 ], [ 361507.52250000089407, 259484.363299999386072 ], [ 361505.367200002074242, 259485.104100000113249 ], [ 361502.827200002968311, 259486.374099999666214 ], [ 361498.540899999439716, 259486.691599998623133 ], [ 361491.079599998891354, 259487.485399998724461 ], [ 361484.2533999979496, 259487.167899999767542 ], [ 361474.314499996602535, 259487.839400000870228 ], [ 361472.505900003015995, 259487.96169999986887 ], [ 361472.664599999785423, 259492.88289999961853 ], [ 361476.450400002300739, 259492.61879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103002039700", "MAP": "C9-236-T79", "PARCEL_NAM": "C-19", "ACRE": null, "LONGITUDE": -64.9034761, "LATITUDE": 18.36331536, "OBJECTID_1": 5586, "PARCEL_NO_": "103002039700", "Tax_Legal_": "LOVENLUND C-19 GT. NORTHSIDE QTR.", "Name": "GINN-LA FUND IV MAHOGANY, LLC", "Address": "1603 LBJ Frwy", "City": "Dallas", "State": "Texas", "Zip": 752346061, "Country": "United States", "Land_Value": 9900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.760503239, "SHAPE_Area": 1058.43364984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361627.412299998104572, 259317.475099999457598 ], [ 361604.688100002706051, 259334.598799999803305 ], [ 361615.209700003266335, 259330.040899999439716 ], [ 361625.697200000286102, 259329.493400000035763 ], [ 361645.833400003612041, 259332.191399998962879 ], [ 361661.122800000011921, 259335.905099999159575 ], [ 361676.394199997186661, 259341.729600001126528 ], [ 361695.718699999153614, 259345.054200001060963 ], [ 361715.066600002348423, 259345.634700000286102 ], [ 361724.753100000321865, 259344.447399999946356 ], [ 361750.645000003278255, 259334.104699999094009 ], [ 361748.288999997079372, 259326.69709999859333 ], [ 361724.011600002646446, 259336.842000000178814 ], [ 361715.131300002336502, 259338.035900000482798 ], [ 361696.589699998497963, 259337.461899999529123 ], [ 361686.926600001752377, 259335.905200000852346 ], [ 361668.422700002789497, 259330.898600000888109 ], [ 361651.529700003564358, 259326.116300001740456 ], [ 361637.842200003564358, 259323.682199999690056 ], [ 361628.180799998342991, 259321.91440000012517 ], [ 361627.412299998104572, 259317.475099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103002039800", "MAP": "D9-1465-T79", "PARCEL_NAM": "C-11", "ACRE": null, "LONGITUDE": -64.90416059, "LATITUDE": 18.36325297, "OBJECTID_1": 5587, "PARCEL_NO_": "103002039800", "Tax_Legal_": "LOVENLUND C-11 GT. NORTHSIDE-ROAD", "Name": "MAHOGANY RUN COMM SERV.", "Address": "ASSOC.INC.,BOX 5080", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 188900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 570.92778754400001, "SHAPE_Area": 2121.1439294100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361492.38570000231266, 259401.333500001579523 ], [ 361496.695200003683567, 259408.122999999672174 ], [ 361530.043399997055531, 259388.449999999254942 ], [ 361568.159500002861023, 259363.008600000292063 ], [ 361604.688100002706051, 259334.598799999803305 ], [ 361627.412299998104572, 259317.475099999457598 ], [ 361643.632100000977516, 259306.631000000983477 ], [ 361671.186899997293949, 259290.39130000025034 ], [ 361697.15259999781847, 259271.394299998879433 ], [ 361708.514700002968311, 259262.832400001585484 ], [ 361722.338899999856949, 259249.224500000476837 ], [ 361719.178300000727177, 259241.599199999123812 ], [ 361701.292000003159046, 259258.762499999254942 ], [ 361676.132700003683567, 259277.766100000590086 ], [ 361666.404799997806549, 259283.808200001716614 ], [ 361637.2246999964118, 259301.512299999594688 ], [ 361620.193199999630451, 259312.9831000007689 ], [ 361581.225900001823902, 259343.694899998605251 ], [ 361544.717100001871586, 259369.782800000160933 ], [ 361539.040500000119209, 259373.535999998450279 ], [ 361513.096500001847744, 259390.000100001692772 ], [ 361492.38570000231266, 259401.333500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002040100", "MAP": "D9-8339-T009", "PARCEL_NAM": "D-4-C-1", "ACRE": ".07", "LONGITUDE": -64.90145313, "LATITUDE": 18.36322567, "OBJECTID_1": 5589, "PARCEL_NO_": "103002040100", "Tax_Legal_": "D-4-C-1 ESTATE LOVENLUND NO.2 GREAT NORTHSIDE QTR", "Name": "BAILY, CYNTHIA D.", "Address": "400 5th Ave Apt 1127", "City": "Pittsburgh", "State": "Pennsylvania", "Zip": 152191767, "Country": "United States", "Land_Value": 20300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.112309507000006, "SHAPE_Area": 320.443333854 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361884.225500002503395, 259308.302999999374151 ], [ 361899.999200001358986, 259346.477800000458956 ], [ 361907.796800002455711, 259344.679000001400709 ], [ 361891.195200003683567, 259305.701900001615286 ], [ 361884.225500002503395, 259308.302999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003012700", "MAP": "D9-4471-T88", "PARCEL_NAM": "9P-1A", "ACRE": ".308", "LONGITUDE": -64.91290261, "LATITUDE": 18.35409083, "OBJECTID_1": 5623, "PARCEL_NO_": "103003012700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9P-1A GT. NORTHSIDE", "Name": "SINGH, INDER J. & KAUER, GURJEET & CHANDIRAMANI, RAJU S.", "Address": "PO Box 9859", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.34931720200001, "SHAPE_Area": 1547.13916728 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360725.519799999892712, 258319.500199999660254 ], [ 360699.609099999070168, 258282.099800001829863 ], [ 360660.923100002110004, 258296.394000001251698 ], [ 360682.780900001525879, 258320.137200001627207 ], [ 360707.807899996638298, 258325.575100000947714 ], [ 360725.519799999892712, 258319.500199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003011700", "MAP": null, "PARCEL_NAM": "9P-1", "ACRE": null, "LONGITUDE": -64.91327543, "LATITUDE": 18.3536475, "OBJECTID_1": 5614, "PARCEL_NO_": "103003011700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9P Remainder & 9P-1 Remainder No.4 GREAT NORTHSIDE QTR.", "Name": "SINGH, INDER J. & KAUER, GURJEET & CHANDIRAMANI, RAJU S.", "Address": "PO Box 9859", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 157400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.448059196, "SHAPE_Area": 3579.6959697500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360699.609099999070168, 258282.099800001829863 ], [ 360648.25620000064373, 258207.975000001490116 ], [ 360613.270000003278255, 258244.630100000649691 ], [ 360660.923100002110004, 258296.394000001251698 ], [ 360699.609099999070168, 258282.099800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019000", "MAP": "D9-5015-T90", "PARCEL_NAM": "9D-2-A", "ACRE": ".008", "LONGITUDE": -64.91499595000001, "LATITUDE": 18.35552376, "OBJECTID_1": 5712, "PARCEL_NO_": "103003019000", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 9D-3&9D-2A GT. NORTHSIDE", "Name": "MYRNA Y LEACH TRUST", "Address": "PO Box 304825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.342807561000001, "SHAPE_Area": 52.036538621399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360476.536799997091293, 258461.492899999022484 ], [ 360471.963600002229214, 258456.466899998486042 ], [ 360468.713200002908707, 258459.395599998533726 ], [ 360469.148500002920628, 258469.014699999243021 ], [ 360476.536799997091293, 258461.492899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003019900", "MAP": "D9-5015-T90", "PARCEL_NAM": "9D-3-A", "ACRE": ".008", "LONGITUDE": -64.91470636, "LATITUDE": 18.35574103, "OBJECTID_1": 5720, "PARCEL_NO_": "103003019900", "Tax_Legal_": "ST JOSEPH&ROSENDAHL 9D-2 & 9D-3A GT. NORTHSIDE", "Name": "RICHARDSON, CLIFFORD L. & VERNICE W. & CHAD N. & TRICIA N.", "Address": "PO Box 6183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26300, "Improved_V": 405000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.302784728199999, "SHAPE_Area": 36.337682639400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360507.696299999952316, 258486.065099999308586 ], [ 360495.606200002133846, 258482.450100000947714 ], [ 360503.120300002396107, 258490.708000000566244 ], [ 360507.696299999952316, 258486.065099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003031000", "MAP": "D9-7439-T004", "PARCEL_NAM": "4I-4", "ACRE": ".25", "LONGITUDE": -64.91311067, "LATITUDE": 18.34901098, "OBJECTID_1": 5806, "PARCEL_NO_": "103003031000", "Tax_Legal_": "ST.JOSEPH&ROSENDAHL 4I-4 No.4 GREAT NORTHSIDE QTR", "Name": "GERARD & OCTAVIA CASTOR JOINT LIV TR", "Address": "PO Box 9435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.827972456, "SHAPE_Area": 1135.9441648899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360670.973999999463558, 257729.435400001704693 ], [ 360650.653999999165535, 257727.847899999469519 ], [ 360660.208800002932549, 257750.753499999642372 ], [ 360662.825599998235703, 257757.026999998837709 ], [ 360697.433700002729893, 257758.215799998492002 ], [ 360697.719700001180172, 257750.084699999541044 ], [ 360698.373099997639656, 257731.508099999278784 ], [ 360680.747000001370907, 257730.174699999392033 ], [ 360670.973999999463558, 257729.435400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003030800", "MAP": null, "PARCEL_NAM": "4F-1", "ACRE": null, "LONGITUDE": -64.91343004, "LATITUDE": 18.34782172, "OBJECTID_1": 5804, "PARCEL_NO_": "103003030800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4F-1 GREAT NORTHSIDE", "Name": "WILLIAMS, THIERRY & CAROLE", "Address": "P.O. BOX 5265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.806450404, "SHAPE_Area": 1870.7953040499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360647.119300000369549, 257584.184300001710653 ], [ 360630.398900002241135, 257581.55519999936223 ], [ 360624.694200001657009, 257636.188499998301268 ], [ 360624.49040000140667, 257638.139699999243021 ], [ 360628.046300001442432, 257638.248599998652935 ], [ 360639.259199999272823, 257638.592199999839067 ], [ 360656.889200001955032, 257639.13230000063777 ], [ 360657.163099996745586, 257637.605099998414516 ], [ 360666.113200001418591, 257587.69370000064373 ], [ 360647.119300000369549, 257584.184300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003030700", "MAP": null, "PARCEL_NAM": "4F", "ACRE": null, "LONGITUDE": -64.91352035, "LATITUDE": 18.34846017, "OBJECTID_1": 5803, "PARCEL_NO_": "103003030700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4F GR NORTHSIDE QTR", "Name": "GEORGE, ELTON", "Address": "PO Box 502482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 80200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.443220158, "SHAPE_Area": 2598.4375367100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360628.046300001442432, 257638.248599998652935 ], [ 360624.49040000140667, 257638.139699999243021 ], [ 360621.075400002300739, 257670.844799999147654 ], [ 360615.885499998927116, 257720.547699999064207 ], [ 360614.492899999022484, 257733.88459999859333 ], [ 360631.556199997663498, 257728.908399999141693 ], [ 360643.701499998569489, 257712.675000000745058 ], [ 360656.889200001955032, 257639.13230000063777 ], [ 360639.259199999272823, 257638.592199999839067 ], [ 360628.046300001442432, 257638.248599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003039600", "MAP": "D9-2271-T83", "PARCEL_NAM": "4I-3", "ACRE": null, "LONGITUDE": -64.91326909, "LATITUDE": 18.34869811, "OBJECTID_1": 5892, "PARCEL_NO_": "103003039600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4-I-3 GT. NORTHSIDE", "Name": "LAKE, VERNON & SUSANNAH", "Address": "PO Box 10852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 270900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.178198608, "SHAPE_Area": 1102.7755182200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360670.973999999463558, 257729.435400001704693 ], [ 360674.25, 257712.316500000655651 ], [ 360678.307700000703335, 257691.112100001424551 ], [ 360676.113399997353554, 257690.932900000363588 ], [ 360652.578400000929832, 257689.011700000613928 ], [ 360648.062799997627735, 257688.353500001132488 ], [ 360643.701499998569489, 257712.675000000745058 ], [ 360648.419900000095367, 257722.97239999845624 ], [ 360650.653999999165535, 257727.847899999469519 ], [ 360670.973999999463558, 257729.435400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003038800", "MAP": "D9-4500-T88", "PARCEL_NAM": "4I-1A", "ACRE": ".25", "LONGITUDE": -64.91318422000001, "LATITUDE": 18.34834883, "OBJECTID_1": 5884, "PARCEL_NO_": "103003038800", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4I-1A GT. NORTHSIDE QTR.", "Name": "SMALL, CHERILYN M", "Address": "7404 Cape Charles Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27617, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.223390548, "SHAPE_Area": 1192.0711657100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360655.285599999129772, 257648.07490000128746 ], [ 360649.043099999427795, 257682.886700000613928 ], [ 360653.636699996888638, 257683.296700000762939 ], [ 360676.962399996817112, 257685.711599998176098 ], [ 360685.842399999499321, 257685.587099999189377 ], [ 360691.092000000178814, 257685.84010000154376 ], [ 360691.094700001180172, 257685.837400000542402 ], [ 360692.2466000020504, 257684.032800000160933 ], [ 360693.040299996733665, 257683.556600000709295 ], [ 360693.675300002098083, 257682.445300001651049 ], [ 360693.516599997878075, 257681.334100000560284 ], [ 360681.134099997580051, 257654.505300000309944 ], [ 360655.285599999129772, 257648.07490000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003030600", "MAP": "D9-7847-T006", "PARCEL_NAM": null, "ACRE": ".17", "LONGITUDE": -64.91369316, "LATITUDE": 18.34960942, "OBJECTID_1": 5802, "PARCEL_NO_": "103003030600", "Tax_Legal_": "4I REM ST.JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "SMALLS (TRUSTEE), DORIS L.", "Address": "7404 Cape Charles Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27617, "Country": "United States", "Land_Value": 290400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.3367653476000001, "SHAPE_Area": 0.0385186271 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360614.483800001442432, 257808.572299998253584 ], [ 360614.474299997091293, 257808.639600001275539 ], [ 360615.605800002813339, 257808.732999999076128 ], [ 360614.483800001442432, 257808.572299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003030600", "MAP": "D9-7847-T006", "PARCEL_NAM": null, "ACRE": ".05", "LONGITUDE": -64.91375414, "LATITUDE": 18.3497194, "OBJECTID_1": 5802, "PARCEL_NO_": "103003030600", "Tax_Legal_": "4I REM ST.JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "SMALLS (TRUSTEE), DORIS L.", "Address": "7404 Cape Charles Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27617, "Country": "United States", "Land_Value": 290400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.115090630200001, "SHAPE_Area": 169.678409875 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360614.483800001442432, 257808.572299998253584 ], [ 360606.808799996972084, 257807.473200000822544 ], [ 360604.545500002801418, 257829.149000000208616 ], [ 360602.088200002908707, 257846.876400001347065 ], [ 360613.696199998259544, 257814.121300000697374 ], [ 360615.605800002813339, 257808.732999999076128 ], [ 360614.474200002849102, 257808.639600001275539 ], [ 360614.483800001442432, 257808.572299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103003030600", "MAP": "D9-7847-T006", "PARCEL_NAM": null, "ACRE": ".17", "LONGITUDE": -64.91367026, "LATITUDE": 18.34934369, "OBJECTID_1": 5802, "PARCEL_NO_": "103003030600", "Tax_Legal_": "4I REM ST.JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "SMALLS (TRUSTEE), DORIS L.", "Address": "7404 Cape Charles Dr", "City": "Raleigh", "State": "North Carolina", "Zip": 27617, "Country": "United States", "Land_Value": 290400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.94654100400001, "SHAPE_Area": 780.38505062900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360632.41499999910593, 257761.301399998366833 ], [ 360612.447200000286102, 257753.475600000470877 ], [ 360606.808799996972084, 257807.473200000822544 ], [ 360614.483800001442432, 257808.572299998253584 ], [ 360615.605800002813339, 257808.732999999076128 ], [ 360632.41499999910593, 257761.301399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801028100", "MAP": "D9-1556-T80", "PARCEL_NAM": "1-15-A", "ACRE": ".5", "LONGITUDE": -64.94158963, "LATITUDE": 18.36327977, "OBJECTID_1": 3827, "PARCEL_NO_": "102801028100", "Tax_Legal_": "LERKENLUND 1-15-A GT NORTHSIDE", "Name": "ROSENBERG, FREDERICK", "Address": "PO Box 8579", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105400, "Improved_V": 352100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.85661755800001, "SHAPE_Area": 1715.7221972899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357628.640100002288818, 259288.008299998939037 ], [ 357642.9408999979496, 259336.441399998962879 ], [ 357649.486299999058247, 259330.302799999713898 ], [ 357676.470399998128414, 259286.405099999159575 ], [ 357691.162100002169609, 259265.627099998295307 ], [ 357628.640100002288818, 259288.008299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004011500", "MAP": "D9-7007-T002", "PARCEL_NAM": "2-2", "ACRE": null, "LONGITUDE": -64.90105755, "LATITUDE": 18.35494944, "OBJECTID_1": 5952, "PARCEL_NO_": "103004011500", "Tax_Legal_": "2-2 EST MANDAHL #1 GREAT NORTHSIDE QTR", "Name": "Etienne, Annette", "Address": "7366 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.661726399, "SHAPE_Area": 988.52044921900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361932.540200002491474, 258393.707499999552965 ], [ 361927.852099999785423, 258410.331999998539686 ], [ 361926.156800001859665, 258420.028400000184774 ], [ 361956.856100000441074, 258431.027800001204014 ], [ 361964.196999996900558, 258397.816799998283386 ], [ 361932.540200002491474, 258393.707499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004013500", "MAP": "D9-6677-T99", "PARCEL_NAM": "900B-3", "ACRE": ".24", "LONGITUDE": -64.90617885, "LATITUDE": 18.35538539, "OBJECTID_1": 5971, "PARCEL_NO_": "103004013500", "Tax_Legal_": "900B-3 ESTATE WINTBERG #3 GT.NORTHSIDE QTR", "Name": "PHIPPS WILLIAMS, JEWEL M.", "Address": "PO Box 306182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036182, "Country": "United States", "Land_Value": 30000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.73186343099999, "SHAPE_Area": 1396.76558424 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361423.191100001335144, 258445.904500000178814 ], [ 361425.860600002110004, 258436.575300000607967 ], [ 361406.927299998700619, 258433.047899998724461 ], [ 361405.974799998104572, 258437.016600001603365 ], [ 361394.703599996864796, 258434.317899998277426 ], [ 361391.232199996709824, 258432.395199999213219 ], [ 361389.656000003218651, 258437.851199999451637 ], [ 361381.731499999761581, 258467.395500000566244 ], [ 361381.171400003135204, 258469.281800001859665 ], [ 361415.226899996399879, 258478.541499998420477 ], [ 361421.086900003254414, 258453.258200000971556 ], [ 361423.191100001335144, 258445.904500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004025100", "MAP": "D9-2959-T85", "PARCEL_NAM": "1-143-12A", "ACRE": null, "LONGITUDE": -64.90714097, "LATITUDE": 18.3489669, "OBJECTID_1": 6122, "PARCEL_NO_": "103004025100", "Tax_Legal_": "WINTBERG 1-143-12A&12B GT. NORTHSIDE", "Name": "BRUNN, ITALIA E & TERRENCE A(TRUSTEES)", "Address": "PO Box 11262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.931737825500001, "SHAPE_Area": 30.4378444902 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361327.162900000810623, 257739.375999998301268 ], [ 361298.108000002801418, 257744.243900001049042 ], [ 361298.578900001943111, 257746.260200001299381 ], [ 361327.162900000810623, 257739.375999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004025100", "MAP": "D9-2959-T85", "PARCEL_NAM": "1-143-12B", "ACRE": null, "LONGITUDE": -64.90691722, "LATITUDE": 18.34891288, "OBJECTID_1": 6122, "PARCEL_NO_": "103004025100", "Tax_Legal_": "WINTBERG 1-143-12A&12B GT. NORTHSIDE", "Name": "BRUNN, ITALIA E & TERRENCE A(TRUSTEES)", "Address": "PO Box 11262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17.033516402099998, "SHAPE_Area": 8.1826510792100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361333.663099996745586, 257735.457899998873472 ], [ 361327.162900000810623, 257739.375999998301268 ], [ 361334.119099996984005, 257737.700699999928474 ], [ 361333.663099996745586, 257735.457899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004039000", "MAP": "D9-3023-T85", "PARCEL_NAM": "364B", "ACRE": null, "LONGITUDE": -64.90259156, "LATITUDE": 18.3499468, "OBJECTID_1": 6206, "PARCEL_NO_": "103004039000", "Tax_Legal_": "WINTBERG 364B GT. NORTHSIDE", "Name": "SIMMONDS, JR. MICHAEL & A. A", "Address": "PO Box 10137", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.905632306, "SHAPE_Area": 122.54019492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361777.192500002682209, 257841.654500000178814 ], [ 361779.92059999704361, 257841.032000001519918 ], [ 361780.846600003540516, 257840.635200001299381 ], [ 361781.243500001728535, 257840.238299999386072 ], [ 361782.4341000020504, 257839.841400001198053 ], [ 361783.624799996614456, 257839.576799999922514 ], [ 361784.418499998748302, 257839.709100000560284 ], [ 361785.476800002157688, 257840.635200001299381 ], [ 361787.99040000140667, 257854.525800000876188 ], [ 361790.900799997150898, 257878.073800001293421 ], [ 361791.562299996614456, 257882.968600001186132 ], [ 361793.616899996995926, 257886.776799999177456 ], [ 361793.658299997448921, 257881.921900000423193 ], [ 361786.795199997723103, 257835.636300001293421 ], [ 361781.9628000035882, 257834.96339999884367 ], [ 361777.192500002682209, 257841.654500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004039200", "MAP": "D9-4626-T89", "PARCEL_NAM": "3-C-4", "ACRE": ".13", "LONGITUDE": -64.90128051000001, "LATITUDE": 18.353512, "OBJECTID_1": 6208, "PARCEL_NO_": "103004039200", "Tax_Legal_": "MANDAHL 3C-4 GT.NORTHSIDE QTR.", "Name": "CORNEIRO, CARMEN", "Address": "PO Box 502543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.60830073400001, "SHAPE_Area": 459.28262518100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361916.167099997401237, 258238.505199998617172 ], [ 361925.684399999678135, 258247.873700000345707 ], [ 361911.132299996912479, 258260.970600001513958 ], [ 361899.322800002992153, 258261.080400001257658 ], [ 361901.676399998366833, 258264.674300000071526 ], [ 361905.749200001358986, 258273.234999999403954 ], [ 361937.697700001299381, 258246.001400001347065 ], [ 361948.303199999034405, 258236.960999999195337 ], [ 361916.167099997401237, 258238.505199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103004039400", "MAP": "A9-353-T88", "PARCEL_NAM": "4J-2", "ACRE": ".50", "LONGITUDE": -64.90043709, "LATITUDE": 18.3527973, "OBJECTID_1": 6210, "PARCEL_NO_": "103004039400", "Tax_Legal_": "MANDAHL 4J-2 GREAT NORTHSIDE QTR.", "Name": "BRYAN, KENNY P", "Address": "P.O. BOX 2122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.035998052, "SHAPE_Area": 2005.99063394 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362048.101300001144409, 258182.651999998837709 ], [ 362050.048000000417233, 258170.052099999040365 ], [ 362052.549699999392033, 258160.362300001084805 ], [ 361982.427500002086163, 258156.622000001370907 ], [ 361980.264200001955032, 258192.993999999016523 ], [ 362048.101300001144409, 258182.651999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042200", "MAP": "D9-3816-T87", "PARCEL_NAM": "350-3", "ACRE": ".25", "LONGITUDE": -64.90529896, "LATITUDE": 18.35162531, "OBJECTID_1": 6232, "PARCEL_NO_": "103004042200", "Tax_Legal_": "WINTBERG 350-3 ST NORTHSIDE", "Name": "REY, EVADNIE, jUDITH & JASMINE", "Address": "16750 SW 248th St", "City": "Homestead", "State": "Florida", "Zip": 33031, "Country": "United States", "Land_Value": 23900, "Improved_V": 1400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.890524306, "SHAPE_Area": 1034.2766861800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361519.23759999871254, 258048.868299998342991 ], [ 361522.223700001835823, 258034.64299999922514 ], [ 361522.33839999884367, 258021.170699998736382 ], [ 361471.398999996483326, 258037.393500000238419 ], [ 361474.523599997162819, 258049.240299999713898 ], [ 361502.495200000703335, 258052.104600001126528 ], [ 361519.23759999871254, 258048.868299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004044000", "MAP": "D9-3816-T87", "PARCEL_NAM": "350-1", "ACRE": ".26", "LONGITUDE": -64.90536143, "LATITUDE": 18.35209461, "OBJECTID_1": 6250, "PARCEL_NO_": "103004044000", "Tax_Legal_": "WINTBERG 350-1 GT. NORTHSIDE", "Name": "REY, EVADNIE, jUDITH & JASMINE", "Address": "16750 SW 248th St", "City": "Homestead", "State": "Florida", "Zip": 33031, "Country": "United States", "Land_Value": 32500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.986260982, "SHAPE_Area": 862.15930293899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361510.5320999994874, 258073.699000000953674 ], [ 361477.927400000393391, 258076.607400000095367 ], [ 361479.80629999935627, 258091.713300000876188 ], [ 361482.149800002574921, 258100.598400000482798 ], [ 361484.518399998545647, 258106.528400000184774 ], [ 361489.305900000035763, 258112.478199999779463 ], [ 361492.520300000905991, 258113.771099999547005 ], [ 361496.557300001382828, 258113.170899998396635 ], [ 361498.995999999344349, 258110.86879999935627 ], [ 361510.5320999994874, 258073.699000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004041000", "MAP": null, "PARCEL_NAM": "2A", "ACRE": null, "LONGITUDE": -64.90581788, "LATITUDE": 18.35319364, "OBJECTID_1": 6220, "PARCEL_NO_": "103004041000", "Tax_Legal_": "WINTBERG 2A GR NORTHSIDE QTR", "Name": "RIVERA, GERARD & ELIZABETH RIVERA-HOOVER", "Address": "PO Box 8553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 124400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.85627078300001, "SHAPE_Area": 1031.5824539600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361469.058899998664856, 258217.437100000679493 ], [ 361425.667300000786781, 258185.515599999576807 ], [ 361424.94030000269413, 258206.325300000607967 ], [ 361435.930799998342991, 258224.435199998319149 ], [ 361442.915799997746944, 258229.991500001400709 ], [ 361457.044600002467632, 258231.896499998867512 ], [ 361469.058899998664856, 258217.437100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004052700", "MAP": "D9-7564-T005", "PARCEL_NAM": "2-A", "ACRE": null, "LONGITUDE": -64.9006, "LATITUDE": 18.35561083, "OBJECTID_1": 6308, "PARCEL_NO_": "103004052700", "Tax_Legal_": "2C ESTATE MANDAHL NO.1 GREAT NORTHSIDE QTR", "Name": "MM ELECTRIC, CORPORATION", "Address": "PO Box 302640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.285120503, "SHAPE_Area": 356.477716284 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362020.606700003147125, 258484.249200001358986 ], [ 362015.9391999989748, 258477.636199999600649 ], [ 362014.157700002193451, 258477.636199999600649 ], [ 361991.912399999797344, 258480.652499999850988 ], [ 361985.879799999296665, 258482.53770000115037 ], [ 361982.109399996697903, 258480.275499999523163 ], [ 361976.45380000025034, 258481.029500000178814 ], [ 361976.45380000025034, 258484.045899998396635 ], [ 361971.13459999859333, 258485.438799999654293 ], [ 361972.683399997651577, 258494.602899998426437 ], [ 361978.416799999773502, 258491.114500001072884 ], [ 361986.134999997913837, 258489.436599999666214 ], [ 362000.229000002145767, 258486.752000000327826 ], [ 362013.316399998962879, 258483.731899999082088 ], [ 362018.350000001490116, 258484.403000000864267 ], [ 362020.606700003147125, 258484.249200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004053300", "MAP": "D9-6623-T99", "PARCEL_NAM": "B-4-1", "ACRE": ".08", "LONGITUDE": -64.9066793, "LATITUDE": 18.35566478, "OBJECTID_1": 6314, "PARCEL_NO_": "103004053300", "Tax_Legal_": "B-4-1 ESTATE LOVENLUND #2 GT.NORTHSIDE QTR", "Name": "PALM GARDENS CONDO OWNER ASSOC", "Address": "P.O. BOX 62294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 11300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.748808854, "SHAPE_Area": 738.74618566900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361342.903399996459484, 258457.238499999046326 ], [ 361341.1824000030756, 258460.820599999278784 ], [ 361350.045999996364117, 258464.78940000012517 ], [ 361350.839699998497963, 258465.318500000983477 ], [ 361350.442800000309944, 258479.341499999165535 ], [ 361339.727200001478195, 258479.870600000023842 ], [ 361336.765000000596046, 258502.471799999475479 ], [ 361345.659299999475479, 258504.358800001442432 ], [ 361356.938699997961521, 258505.506599999964237 ], [ 361363.013899996876717, 258464.344700001180172 ], [ 361347.203500002622604, 258460.045800000429153 ], [ 361342.903399996459484, 258457.238499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "103004053600", "MAP": "D9-7177-T003", "PARCEL_NAM": "1A-1AA", "ACRE": null, "LONGITUDE": -64.90219899, "LATITUDE": 18.35587482, "OBJECTID_1": 6317, "PARCEL_NO_": "103004053600", "Tax_Legal_": "1A-1AA ESTATE WINTBERG #3 GREAT NORTHSIDE QTR", "Name": "SPL 2005 TRUST", "Address": "PO Box 11113", "City": "ST.THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 349.10523593, "SHAPE_Area": 794.01503386299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361773.459799997508526, 258454.453400000929832 ], [ 361766.992799997329712, 258456.331900000572205 ], [ 361766.942800000309944, 258462.21059999987483 ], [ 361768.51410000026226, 258467.078600000590086 ], [ 361770.355999998748302, 258468.969900000840425 ], [ 361771.805299997329712, 258470.457899998873472 ], [ 361773.527199998497963, 258472.225900001823902 ], [ 361774.109700001776218, 258472.823899999260902 ], [ 361780.244000002741814, 258476.235599998384714 ], [ 361783.713899999856949, 258478.165300000458956 ], [ 361788.565099999308586, 258480.863299999386072 ], [ 361792.223600000143051, 258482.897999998182058 ], [ 361794.999700002372265, 258484.441899999976158 ], [ 361798.671800002455711, 258486.484200000762939 ], [ 361800.821199998259544, 258487.679499998688698 ], [ 361803.002099998295307, 258488.892400000244379 ], [ 361808.425599999725819, 258492.985399998724461 ], [ 361811.974200002849102, 258495.663499999791384 ], [ 361813.286200001835823, 258496.835799999535084 ], [ 361815.55629999935627, 258499.166600000113249 ], [ 361816.891699999570847, 258500.537799999117851 ], [ 361818.212300002574921, 258501.8935999982059 ], [ 361818.947899997234344, 258502.927799999713898 ], [ 361820.482699997723103, 258505.085499998182058 ], [ 361822.669900000095367, 258508.160399999469519 ], [ 361824.328400000929832, 258510.491999998688698 ], [ 361825.703100003302097, 258512.424499999731779 ], [ 361831.478699997067451, 258520.544300001114607 ], [ 361833.286799997091293, 258523.086199998855591 ], [ 361834.94990000128746, 258525.424300000071526 ], [ 361836.832999996840954, 258528.07149999961257 ], [ 361838.598499998450279, 258530.553599998354912 ], [ 361840.053300000727177, 258532.598900001496077 ], [ 361840.82320000231266, 258533.68129999935627 ], [ 361842.369699999690056, 258535.466400001198053 ], [ 361844.865000002086163, 258538.049600001424551 ], [ 361846.811700001358986, 258540.064899999648333 ], [ 361847.87049999833107, 258541.160999998450279 ], [ 361851.689000003039837, 258544.205699998885393 ], [ 361854.801899999380112, 258546.53770000115037 ], [ 361856.656999997794628, 258547.927499998360872 ], [ 361859.528300002217293, 258550.078499998897314 ], [ 361860.671599999070168, 258550.934999998658895 ], [ 361861.334200002253056, 258551.43129999935627 ], [ 361863.068800002336502, 258559.26969999819994 ], [ 361866.121399998664856, 258573.063799999654293 ], [ 361861.998599998652935, 258576.196299999952316 ], [ 361872.431999996304512, 258573.89809999987483 ], [ 361870.038199998438358, 258570.923200000077486 ], [ 361869.25900000333786, 258565.687600001692772 ], [ 361868.869099996984005, 258563.067099999636412 ], [ 361868.465899996459484, 258560.357500001788139 ], [ 361867.8462999984622, 258556.193900000303984 ], [ 361867.306100003421307, 258552.563999999314547 ], [ 361866.987400002777576, 258550.422100000083447 ], [ 361862.988200001418591, 258546.589699998497963 ], [ 361860.26240000128746, 258544.618700001388788 ], [ 361858.163500003516674, 258543.100900001823902 ], [ 361856.234200000762939, 258541.705800000578165 ], [ 361854.28320000320673, 258540.295000001788139 ], [ 361852.388800002634525, 258538.92509999871254 ], [ 361851.768200002610683, 258538.476300001144409 ], [ 361849.192900002002716, 258535.886599998921156 ], [ 361847.075599998235703, 258533.757500000298023 ], [ 361846.105599999427795, 258532.782000001519918 ], [ 361845.214900001883507, 258531.886300001293421 ], [ 361844.026799999177456, 258530.531700000166893 ], [ 361842.650700002908707, 258528.744899999350309 ], [ 361838.621500000357628, 258523.513000000268221 ], [ 361836.580899998545647, 258520.304800000041723 ], [ 361835.431699998676777, 258518.414299998432398 ], [ 361834.463200002908707, 258516.820999998599291 ], [ 361833.420800000429153, 258515.105900000780821 ], [ 361832.601199999451637, 258513.653999999165535 ], [ 361831.536499999463558, 258511.767499998211861 ], [ 361830.679899998009205, 258510.25 ], [ 361829.310199998319149, 258507.823300000280142 ], [ 361826.892700001597404, 258503.540199998766184 ], [ 361825.043700002133846, 258500.264400001615286 ], [ 361824.682599999010563, 258499.624499998986721 ], [ 361815.516099996864796, 258492.475299999117851 ], [ 361812.395300000905991, 258490.115800000727177 ], [ 361810.984999999403954, 258489.113800000399351 ], [ 361809.454700000584126, 258488.026500001549721 ], [ 361807.558499999344349, 258486.679299999028444 ], [ 361806.05799999833107, 258485.613200001418591 ], [ 361804.851099997758865, 258484.755699999630451 ], [ 361803.849799998104572, 258484.044199999421835 ], [ 361802.782799996435642, 258483.442999999970198 ], [ 361800.304099999368191, 258482.046300001442432 ], [ 361798.215300001204014, 258480.869300000369549 ], [ 361796.164300002157688, 258479.713599998503923 ], [ 361794.212999999523163, 258478.614000000059605 ], [ 361791.472599998116493, 258477.06980000063777 ], [ 361788.19709999859333, 258475.22410000115633 ], [ 361783.264300003647804, 258472.444499999284744 ], [ 361779.472900003194809, 258470.308100000023842 ], [ 361778.173299998044968, 258469.575800001621246 ], [ 361775.734099999070168, 258468.201299998909235 ], [ 361774.959200002253056, 258467.764600001275539 ], [ 361773.641699999570847, 258465.921700000762939 ], [ 361772.458499997854233, 258464.266499999910593 ], [ 361771.771700002253056, 258463.305599998682737 ], [ 361771.401000000536442, 258460.404599998146296 ], [ 361771.141400001943111, 258458.373100001364946 ], [ 361771.015699997544289, 258457.388799998909235 ], [ 361771.866999998688698, 258456.366399999707937 ], [ 361773.459799997508526, 258454.453400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103004059800", "MAP": "A9-274-T79", "PARCEL_NAM": "B-12", "ACRE": null, "LONGITUDE": -64.90674971, "LATITUDE": 18.3564215, "OBJECTID_1": 6333, "PARCEL_NO_": "103004059800", "Tax_Legal_": "LOVENLUND B-2 GT. NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1180000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3045.2970686799999, "SHAPE_Area": 13669.8905858 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361861.998599998652935, 258576.196299999952316 ], [ 361858.145400002598763, 258577.669700000435114 ], [ 361852.479099996387959, 258576.628499999642372 ], [ 361849.876400001347065, 258576.056600000709295 ], [ 361848.007200002670288, 258575.546399999409914 ], [ 361845.970100000500679, 258574.990299999713898 ], [ 361844.156800001859665, 258574.495299998670816 ], [ 361841.923699997365475, 258573.88569999858737 ], [ 361839.90820000320673, 258573.335400000214577 ], [ 361837.237199999392033, 258572.462600000202656 ], [ 361835.032999999821186, 258571.742400001734495 ], [ 361830.895599998533726, 258570.390399999916553 ], [ 361829.067199997603893, 258569.792899999767542 ], [ 361827.218000002205372, 258569.1886 ], [ 361826.235100001096725, 258568.867400001734495 ], [ 361824.429899998009205, 258568.291999999433756 ], [ 361821.697499997913837, 258567.420899998396635 ], [ 361819.846600003540516, 258566.830800000578165 ], [ 361817.493299998342991, 258566.08049999922514 ], [ 361815.921700000762939, 258565.497000001370907 ], [ 361813.149800002574921, 258564.467799998819828 ], [ 361809.738499999046326, 258563.201099999248981 ], [ 361805.36879999935627, 258561.578499998897314 ], [ 361802.872599996626377, 258560.651700001209974 ], [ 361800.774999998509884, 258559.872800000011921 ], [ 361798.713899999856949, 258559.107500001788139 ], [ 361795.549999997019768, 258557.932700000703335 ], [ 361791.862999998033047, 258556.5636 ], [ 361789.032899998128414, 258555.512800000607967 ], [ 361785.963799998164177, 258554.373100001364946 ], [ 361782.748400002717972, 258553.179200001060963 ], [ 361775.699799999594688, 258550.561999998986721 ], [ 361772.570799998939037, 258549.400100000202656 ], [ 361769.342100001871586, 258548.201299998909235 ], [ 361764.530699998140335, 258546.414700001478195 ], [ 361758.433799996972084, 258544.15089999884367 ], [ 361754.130599997937679, 258542.552999999374151 ], [ 361752.437299996614456, 258541.924199998378754 ], [ 361751.554700002074242, 258541.717000000178814 ], [ 361750.312600001692772, 258541.425400000065565 ], [ 361745.777400001883507, 258539.924499999731779 ], [ 361742.659800000488758, 258538.892599999904633 ], [ 361739.721000000834465, 258537.920000001788139 ], [ 361736.642800003290176, 258536.901200000196695 ], [ 361731.798500001430511, 258535.297899998724461 ], [ 361728.382799997925758, 258534.167399998754263 ], [ 361725.642599999904633, 258533.260499998927116 ], [ 361723.795299999415874, 258532.649099998176098 ], [ 361721.809500001370907, 258531.991900000721216 ], [ 361719.188100002706051, 258531.124299999326468 ], [ 361717.097499996423721, 258530.432300001382828 ], [ 361711.426600001752377, 258529.398200001567602 ], [ 361706.566500000655651, 258528.511900000274181 ], [ 361702.585400000214577, 258527.785900000482798 ], [ 361699.954700000584126, 258527.306200001388788 ], [ 361696.113300003111362, 258526.605700001120567 ], [ 361693.505900003015995, 258526.130199998617172 ], [ 361689.612099997699261, 258525.420200001448393 ], [ 361686.240699999034405, 258524.805300001055002 ], [ 361679.648199997842312, 258522.982599999755621 ], [ 361675.890799999237061, 258521.94370000064373 ], [ 361672.413099996745586, 258520.982200000435114 ], [ 361668.403399996459484, 258519.873599998652935 ], [ 361665.574199996888638, 258519.091299999505281 ], [ 361663.1875, 258518.431400001049042 ], [ 361660.952799998223782, 258516.186799999326468 ], [ 361659.467799998819828, 258514.695199999958277 ], [ 361658.45099999755621, 258513.673799999058247 ], [ 361650.407600000500679, 258511.285999998450279 ], [ 361647.184199996292591, 258511.048500001430511 ], [ 361629.459700003266335, 258509.214699998497963 ], [ 361620.672600001096725, 258509.270599998533726 ], [ 361617.560900002717972, 258509.290399998426437 ], [ 361614.944300003349781, 258509.307000000029802 ], [ 361611.737300001084805, 258509.804800000041723 ], [ 361609.878700003027916, 258510.093299999833107 ], [ 361608.48480000346899, 258510.309599999338388 ], [ 361605.559500001370907, 258511.260600000619888 ], [ 361601.818899996578693, 258512.476599998772144 ], [ 361590.957599997520447, 258516.007399998605251 ], [ 361584.411200001835823, 258518.135400000959635 ], [ 361581.128300003707409, 258519.2027000002563 ], [ 361576.849299997091293, 258520.593699999153614 ], [ 361572.692900002002716, 258521.94480000063777 ], [ 361570.480200000107288, 258522.664099998772144 ], [ 361569.768799997866154, 258522.810400001704693 ], [ 361562.868500001728535, 258524.229299999773502 ], [ 361555.309399999678135, 258525.783700000494719 ], [ 361551.052000001072884, 258526.659099999815226 ], [ 361547.82490000128746, 258527.322700001299381 ], [ 361545.385399997234344, 258527.824299998581409 ], [ 361543.823299996554852, 258528.145500000566244 ], [ 361540.975900001823902, 258528.359200000762939 ], [ 361536.863300003111362, 258528.667899999767542 ], [ 361532.097800001502037, 258529.025600001215935 ], [ 361528.789300002157688, 258529.273899998515844 ], [ 361526.071900002658367, 258529.477800000458956 ], [ 361523.039300002157688, 258529.490800000727177 ], [ 361519.467500001192093, 258529.506099998950958 ], [ 361516.490699999034405, 258529.518899999558926 ], [ 361512.720399998128414, 258529.535000000149012 ], [ 361510.736400000751019, 258529.543499998748302 ], [ 361509.137500002980232, 258529.550299998372793 ], [ 361506.287000000476837, 258529.263399999588728 ], [ 361503.464599996805191, 258528.979400001466274 ], [ 361501.67679999768734, 258528.799400001764297 ], [ 361499.554999999701977, 258528.585799999535084 ], [ 361496.994599997997284, 258528.328099999576807 ], [ 361495.440999999642372, 258528.171700000762939 ], [ 361488.67509999871254, 258526.98759999871254 ], [ 361484.617299996316433, 258526.277399998158216 ], [ 361481.175700001418591, 258525.675000000745058 ], [ 361479.590400002896786, 258525.39750000089407 ], [ 361477.727300003170967, 258525.071400001645088 ], [ 361475.888899996876717, 258524.546399999409914 ], [ 361473.110699996352196, 258523.752999998629093 ], [ 361470.253899998962879, 258522.936999998986721 ], [ 361467.676600001752377, 258522.2010000012815 ], [ 361466.069099999964237, 258521.741900000721216 ], [ 361463.430600002408028, 258520.988299999386072 ], [ 361460.923199996352196, 258520.272199999541044 ], [ 361458.721600003540516, 258519.643399998545647 ], [ 361456.109399996697903, 258518.897399999201298 ], [ 361453.977700002491474, 258518.288600001484156 ], [ 361452.632299996912479, 258517.90430000051856 ], [ 361451.339299999177456, 258517.535000000149012 ], [ 361449.572899997234344, 258517.030499998480082 ], [ 361447.801399998366833, 258516.662999998778105 ], [ 361446.150200001895428, 258516.32039999961853 ], [ 361442.443400003015995, 258515.551199998706579 ], [ 361438.8108000010252, 258514.797499999403954 ], [ 361435.825499996542931, 258514.178100001066923 ], [ 361434.1875, 258513.838199999183416 ], [ 361432.396300002932549, 258513.466499999165535 ], [ 361430.972499996423721, 258513.171100001782179 ], [ 361429.449199996888638, 258512.855000000447035 ], [ 361428.109700001776218, 258512.723799999803305 ], [ 361425.75110000371933, 258512.492600001394749 ], [ 361423.785599999129772, 258512.299899999052286 ], [ 361420.707599997520447, 258511.9983000010252 ], [ 361416.220399998128414, 258511.558400001376867 ], [ 361413.639600001275539, 258511.305500000715256 ], [ 361411.654799997806549, 258511.111000001430511 ], [ 361409.538999997079372, 258510.903599999845028 ], [ 361404.52759999781847, 258510.412399999797344 ], [ 361403.047700002789497, 258510.267400000244379 ], [ 361401.249899998307228, 258510.091099999845028 ], [ 361396.964599996805191, 258509.647799998521805 ], [ 361392.428599998354912, 258509.17850000038743 ], [ 361388.323600001633167, 258508.753800000995398 ], [ 361385.547799997031689, 258508.466600000858307 ], [ 361382.083700001239777, 258508.108199998736382 ], [ 361379.11150000244379, 258507.800700001418591 ], [ 361376.51860000193119, 258507.532400000840425 ], [ 361373.054399996995926, 258507.1739999987185 ], [ 361368.687700003385544, 258506.722199998795986 ], [ 361366.573100000619888, 258506.503400001674891 ], [ 361364.086199998855591, 258506.246100001037121 ], [ 361360.197800002992153, 258505.843800000846386 ], [ 361357.755999997258186, 258505.5912000015378 ], [ 361356.938699997961521, 258505.506599999964237 ], [ 361353.244099996984005, 258505.130699999630451 ], [ 361350.553300000727177, 258504.856899999082088 ], [ 361348.916599996387959, 258504.69029999896884 ], [ 361346.847099997103214, 258504.479699999094009 ], [ 361344.951700001955032, 258504.208700001239777 ], [ 361342.398699998855591, 258503.667100001126528 ], [ 361338.566399998962879, 258502.853999998420477 ], [ 361336.765000000596046, 258502.471799999475479 ], [ 361333.790299996733665, 258501.840700000524521 ], [ 361332.474500000476837, 258501.561500001698732 ], [ 361331.170800000429153, 258501.28489999845624 ], [ 361330.082800000905991, 258500.719000000506639 ], [ 361329.033299997448921, 258500.172899998724461 ], [ 361327.540100000798702, 258499.396200001239777 ], [ 361325.420199997723103, 258498.293299999088049 ], [ 361324.022799998521805, 258497.566399998962879 ], [ 361321.842399999499321, 258496.432100001722574 ], [ 361319.249799996614456, 258495.083299998193979 ], [ 361317.752499997615814, 258494.304299999028444 ], [ 361316.600900001823902, 258493.705200001597404 ], [ 361315.917400002479553, 258493.349599998444319 ], [ 361313.981700003147125, 258491.94990000128746 ], [ 361312.866400003433228, 258491.143500000238419 ], [ 361311.601499997079372, 258490.228700000792742 ], [ 361310.3074000030756, 258489.292899999767542 ], [ 361309.452899999916553, 258488.468400001525879 ], [ 361308.540399998426437, 258487.587900001555681 ], [ 361306.725299999117851, 258485.836399998515844 ], [ 361304.975400000810623, 258484.147799998521805 ], [ 361303.909100003540516, 258483.11879999935627 ], [ 361303.138599999248981, 258482.169900000095367 ], [ 361302.188100002706051, 258480.999200001358986 ], [ 361301.530799999833107, 258480.189599998295307 ], [ 361300.762199997901917, 258479.243099998682737 ], [ 361299.662000000476837, 258477.888099998235703 ], [ 361298.476899996399879, 258476.428399998694658 ], [ 361297.525100000202656, 258475.256099998950958 ], [ 361296.720499999821186, 258473.860199999064207 ], [ 361295.728000000119209, 258472.138300001621246 ], [ 361294.758299998939037, 258470.4560999982059 ], [ 361294.131099998950958, 258469.367899999022484 ], [ 361293.496100001037121, 258468.26630000025034 ], [ 361292.757299996912479, 258466.984400000423193 ], [ 361292.456299997866154, 258466.024300001561642 ], [ 361291.894400000572205, 258464.231800001114607 ], [ 361291.60530000180006, 258463.309500001370907 ], [ 361291.228799998760223, 258462.108600001782179 ], [ 361290.89130000025034, 258461.031599998474121 ], [ 361290.423799999058247, 258459.540300000458956 ], [ 361289.954000003635883, 258458.041799999773502 ], [ 361289.653099998831749, 258457.081700000911951 ], [ 361289.014600001275539, 258455.044700000435114 ], [ 361288.507100000977516, 258453.425799999386072 ], [ 361288.047100000083447, 258451.958200000226498 ], [ 361287.929300002753735, 258450.695900000631809 ], [ 361287.577299997210503, 258446.921399999409914 ], [ 361286.973399996757507, 258440.446100000292063 ], [ 361286.569399997591972, 258436.114100001752377 ], [ 361285.715599998831749, 258429.937800001353025 ], [ 361285.262000001966953, 258426.656599998474121 ], [ 361284.876500003039837, 258423.867800001055002 ], [ 361284.57039999961853, 258421.654100000858307 ], [ 361284.408900000154972, 258420.485800001770258 ], [ 361284.290700003504753, 258419.630199998617172 ], [ 361282.791799999773502, 258417.289200000464916 ], [ 361281.308899998664856, 258414.972899999469519 ], [ 361280.295999996364117, 258413.390999998897314 ], [ 361279.374399997293949, 258411.951499998569489 ], [ 361278.720200002193451, 258410.929699998348951 ], [ 361276.819899998605251, 258409.579599998891354 ], [ 361275.065099999308586, 258408.332800000905991 ], [ 361273.052400000393391, 258406.902800001204014 ], [ 361271.506599999964237, 258405.804499998688698 ], [ 361270.076300002634525, 258405.323499999940395 ], [ 361268.271999999880791, 258404.716600000858307 ], [ 361266.428199999034405, 258404.096400000154972 ], [ 361265.099799998104572, 258403.649599999189377 ], [ 361264.227399997413158, 258403.356199998408556 ], [ 361263.116700001060963, 258402.982599999755621 ], [ 361261.857799999415874, 258402.559099998325109 ], [ 361259.366499997675419, 258402.40819999948144 ], [ 361257.595100000500679, 258402.300900001078844 ], [ 361256.08330000191927, 258402.209399998188019 ], [ 361254.89299999922514, 258402.137299999594688 ], [ 361253.798299998044968, 258402.070900000631809 ], [ 361248.627400003373623, 258403.079700000584126 ], [ 361246.528899997472763, 258403.489100001752377 ], [ 361243.213899999856949, 258404.759500000625849 ], [ 361241.204899996519089, 258405.52930000051856 ], [ 361236.820799998939037, 258407.209300000220537 ], [ 361235.082500003278255, 258408.165600001811981 ], [ 361232.35809999704361, 258409.664500001817942 ], [ 361229.814000003039837, 258411.064100001007318 ], [ 361228.209299996495247, 258411.946899998933077 ], [ 361226.779899999499321, 258412.733300000429153 ], [ 361225.478399999439716, 258413.449299998581409 ], [ 361221.135899998247623, 258416.913899999111891 ], [ 361219.084899999201298, 258418.550200000405312 ], [ 361217.359600000083447, 258419.926699999719858 ], [ 361214.462600000202656, 258422.90989999845624 ], [ 361211.660700000822544, 258425.795299999415874 ], [ 361209.803999997675419, 258427.70719999819994 ], [ 361208.592799998819828, 258428.954500000923872 ], [ 361206.055799998342991, 258431.56700000166893 ], [ 361204.456900000572205, 258433.21339999884367 ], [ 361203.530000001192093, 258434.167899999767542 ], [ 361202.939699999988079, 258434.668499998748302 ], [ 361201.428900003433228, 258435.949499998241663 ], [ 361199.879600003361702, 258437.263199999928474 ], [ 361194.661899998784065, 258441.687399998307228 ], [ 361191.601800002157688, 258444.282200001180172 ], [ 361190.440700002014637, 258445.266699999570847 ], [ 361188.894599996507168, 258446.407900001853704 ], [ 361187.721100002527237, 258447.162099998444319 ], [ 361185.698399998247623, 258448.462099999189377 ], [ 361183.999899998307228, 258449.553700000047684 ], [ 361181.656199999153614, 258451.059900000691414 ], [ 361179.603399999439716, 258452.379299998283386 ], [ 361177.781300000846386, 258453.550299998372793 ], [ 361171.759800001978874, 258457.420200001448393 ], [ 361166.835100002586842, 258460.585400000214577 ], [ 361164.949400000274181, 258461.7972999997437 ], [ 361163.157300002872944, 258462.949000000953674 ], [ 361162.154500000178814, 258463.593499999493361 ], [ 361157.119999997317791, 258467.480200000107288 ], [ 361153.261100001633167, 258470.459199998527765 ], [ 361147.912399999797344, 258474.621700000017881 ], [ 361145.29839999973774, 258476.682000000029802 ], [ 361144.210199996829033, 258477.539599999785423 ], [ 361142.896999999880791, 258478.574599999934435 ], [ 361140.97410000115633, 258480.09010000154376 ], [ 361139.774599999189377, 258481.035500001162291 ], [ 361136.989799998700619, 258483.23030000180006 ], [ 361136.338500000536442, 258483.892599999904633 ], [ 361134.566500000655651, 258485.694499999284744 ], [ 361133.156099997460842, 258487.128800000995398 ], [ 361131.941399998962879, 258488.364000000059605 ], [ 361130.432899996638298, 258489.897999998182058 ], [ 361129.056599996984005, 258491.297499999403954 ], [ 361127.285800002515316, 258493.098299998790026 ], [ 361126.269500002264977, 258494.131799999624491 ], [ 361122.202500000596046, 258498.267499998211861 ], [ 361120.721500001847744, 258499.773499999195337 ], [ 361118.405299998819828, 258502.208299998193979 ], [ 361116.756099998950958, 258503.941899999976158 ], [ 361115.372699998319149, 258505.396099999547005 ], [ 361113.467299997806549, 258507.399099998176098 ], [ 361111.987999998033047, 258508.953999999910593 ], [ 361109.584200002253056, 258511.704599998891354 ], [ 361107.672799997031689, 258514.025400001555681 ], [ 361105.717500001192093, 258516.399399999529123 ], [ 361102.666000001132488, 258520.104200001806021 ], [ 361098.755400002002716, 258524.852200001478195 ], [ 361096.322599999606609, 258527.805900000035763 ], [ 361094.739600002765656, 258529.727800000458956 ], [ 361093.043999999761581, 258531.78660000115633 ], [ 361091.094300001859665, 258534.153599999845028 ], [ 361089.700400002300739, 258535.846099998801947 ], [ 361087.939800001680851, 258537.983600001782179 ], [ 361084.777699999511242, 258541.822900000959635 ], [ 361083.339800000190735, 258543.568599998950958 ], [ 361082.392700001597404, 258544.718600001186132 ], [ 361081.256499998271465, 258546.098000001162291 ], [ 361080.12610000371933, 258547.470499999821186 ], [ 361079.180600002408028, 258548.618400000035763 ], [ 361077.770499996840954, 258550.010000001639128 ], [ 361075.607299998402596, 258552.144799999892712 ], [ 361074.407600000500679, 258553.32880000025034 ], [ 361073.576999999582767, 258554.148499999195337 ], [ 361069.549400001764297, 258558.123199999332428 ], [ 361067.050700001418591, 258560.589099999517202 ], [ 361065.91889999806881, 258561.7060999982059 ], [ 361064.542900003492832, 258563.063999999314547 ], [ 361063.601700000464916, 258563.805799998342991 ], [ 361061.524300001561642, 258565.44310000166297 ], [ 361058.779200002551079, 258567.606699999421835 ], [ 361056.371500000357628, 258569.504299998283386 ], [ 361054.781300000846386, 258570.757599998265505 ], [ 361053.547200001776218, 258571.730200000107288 ], [ 361052.484999999403954, 258572.567400000989437 ], [ 361051.553800001740456, 258573.301300000399351 ], [ 361039.777699999511242, 258581.006999999284744 ], [ 361036.933399997651577, 258582.594500001519918 ], [ 361034.419900000095367, 258584.049800001084805 ], [ 361031.074600003659725, 258585.156700000166893 ], [ 361027.618500001728535, 258587.160500001162291 ], [ 361025.369199998676777, 258588.464600000530481 ], [ 361022.976300001144409, 258589.85190000012517 ], [ 361020.513199999928474, 258591.280000001192093 ], [ 361018.263899996876717, 258592.584100000560284 ], [ 361016.475900001823902, 258593.620700001716614 ], [ 361014.578100003302097, 258594.721000000834465 ], [ 361013.466499999165535, 258595.365499999374151 ], [ 361011.623499996960163, 258596.788400001823902 ], [ 361009.101800002157688, 258598.735100001096725 ], [ 361006.934199996292591, 258600.408500000834465 ], [ 361005.708200000226498, 258601.354899998754263 ], [ 361004.587700001895428, 258602.219900000840425 ], [ 361002.914300002157688, 258603.511799998581409 ], [ 361000.420999996364117, 258605.393699999898672 ], [ 360999.143299996852875, 258606.3581000007689 ], [ 360997.675499998033047, 258607.465900000184774 ], [ 360996.028800003230572, 258608.708799999207258 ], [ 360993.811300002038479, 258610.382500000298023 ], [ 360992.798299998044968, 258611.147100001573563 ], [ 360991.699400000274181, 258611.976399999111891 ], [ 360990.740500003099442, 258612.700199998915195 ], [ 360989.027099996805191, 258614.464600000530481 ], [ 360987.594499997794628, 258615.939800001680851 ], [ 360986.877700001001358, 258616.67790000140667 ], [ 360983.653599999845028, 258619.997999999672174 ], [ 360981.306800000369549, 258622.414599999785423 ], [ 360979.448299996554852, 258624.328499998897314 ], [ 360978.047799997031689, 258625.770700000226498 ], [ 360976.223200000822544, 258627.649500001221895 ], [ 360974.918999999761581, 258628.992499999701977 ], [ 360973.649800002574921, 258630.299499999731779 ], [ 360972.843299999833107, 258631.129999998956919 ], [ 360971.74889999628067, 258632.375399999320507 ], [ 360970.886200003325939, 258633.357099998742342 ], [ 360969.054399996995926, 258635.441599998623133 ], [ 360967.386699996888638, 258637.339400000870228 ], [ 360965.661300003528595, 258639.302799999713898 ], [ 360964.47860000282526, 258640.648699998855591 ], [ 360963.36540000140667, 258641.915399998426437 ], [ 360962.165799997746944, 258643.280600000172853 ], [ 360961.097300000488758, 258644.496399998664856 ], [ 360960.00110000371933, 258645.743900001049042 ], [ 360959.126500003039837, 258646.739199999719858 ], [ 360957.084600001573563, 258648.052299998700619 ], [ 360956.404799997806549, 258650.350299999117851 ], [ 360954.719899997115135, 258653.16270000115037 ], [ 360953.27419999986887, 258655.575899999588728 ], [ 360952.464400000870228, 258656.927700001746416 ], [ 360951.480999998748302, 258657.877099998295307 ], [ 360950.136399999260902, 258659.175200000405312 ], [ 360948.755199998617172, 258660.508699998259544 ], [ 360947.507399998605251, 258661.713300000876188 ], [ 360946.195900000631809, 258662.979499999433756 ], [ 360944.614000000059605, 258664.506700001657009 ], [ 360943.133599996566772, 258665.935899998992682 ], [ 360941.386500000953674, 258667.622600000351667 ], [ 360940.4408999979496, 258668.535500001162291 ], [ 360939.45549999922514, 258669.486800000071526 ], [ 360935.498000003397465, 258672.030299998819828 ], [ 360932.629399999976158, 258673.8739 ], [ 360930.436099998652935, 258675.283500000834465 ], [ 360928.379900000989437, 258676.605000000447035 ], [ 360926.482500001788139, 258677.824400000274181 ], [ 360925.865099996328354, 258678.087799999862909 ], [ 360923.7483000010252, 258678.990699999034405 ], [ 360921.080099999904633, 258680.128800000995398 ], [ 360917.700699999928474, 258681.570199999958277 ], [ 360913.570000000298023, 258683.332100000232458 ], [ 360911.876999996602535, 258684.054200001060963 ], [ 360908.967699997127056, 258685.295099999755621 ], [ 360907.625299997627735, 258685.86769999936223 ], [ 360905.314000003039837, 258686.512899998575449 ], [ 360903.406000003218651, 258686.954199999570847 ], [ 360900.280799999833107, 258687.677099999040365 ], [ 360897.363600000739098, 258688.35190000012517 ], [ 360896.189999997615814, 258688.460400000214577 ], [ 360892.808799996972084, 258688.772900000214577 ], [ 360889.230800002813339, 258689.10359999909997 ], [ 360885.468099996447563, 258689.451299998909235 ], [ 360882.14639999717474, 258689.758299998939037 ], [ 360879.349399998784065, 258690.016800001263618 ], [ 360877.96000000089407, 258690.145300000905991 ], [ 360876.381499998271465, 258690.29109999909997 ], [ 360873.714400000870228, 258691.081799998879433 ], [ 360870.701999999582767, 258691.978100001811981 ], [ 360866.46679999679327, 258693.250399999320507 ], [ 360864.130599997937679, 258693.952199999243021 ], [ 360862.638199999928474, 258694.400499999523163 ], [ 360858.556000001728535, 258696.759700000286102 ], [ 360855.019299998879433, 258698.803700000047684 ], [ 360852.913900002837181, 258700.020399998873472 ], [ 360851.163999997079372, 258701.371399998664856 ], [ 360849.740299999713898, 258702.470499999821186 ], [ 360848.043700002133846, 258703.780200000852346 ], [ 360847.294799998402596, 258704.635499998927116 ], [ 360845.724899999797344, 258706.428599998354912 ], [ 360843.827200002968311, 258708.596200000494719 ], [ 360842.048199996352196, 258710.628100000321865 ], [ 360840.638099998235703, 258712.238600000739098 ], [ 360839.248599998652935, 258713.825699999928474 ], [ 360837.432700000703335, 258715.89979999884963 ], [ 360835.797200001776218, 258717.767700001597404 ], [ 360835.015000000596046, 258718.661200001835823 ], [ 360833.493500001728535, 258721.779500000178814 ], [ 360832.027900002896786, 258724.783300001174212 ], [ 360831.235699996352196, 258726.407000001519918 ], [ 360830.393799997866154, 258728.132399998605251 ], [ 360829.673900000751019, 258730.197399999946356 ], [ 360829.051500000059605, 258732.353300001472235 ], [ 360828.459299996495247, 258734.404699999839067 ], [ 360827.899999998509884, 258736.342199999839067 ], [ 360827.420999996364117, 258738.001499999314547 ], [ 360826.410800002515316, 258741.500700000673532 ], [ 360825.871500000357628, 258743.368900001049042 ], [ 360825.326700001955032, 258745.256000000983477 ], [ 360825.105499997735023, 258746.022300001233816 ], [ 360823.464100003242493, 258749.386300001293421 ], [ 360822.190200001001358, 258751.350499998778105 ], [ 360820.940700002014637, 258753.277100000530481 ], [ 360820.195699997246265, 258754.425799999386072 ], [ 360817.935699999332428, 258755.878299999982119 ], [ 360816.156999997794628, 258757.02140000090003 ], [ 360815.330799996852875, 258757.552400000393391 ], [ 360812.87049999833107, 258762.38740000128746 ], [ 360809.623700000345707, 258764.894000001251698 ], [ 360807.127599999308586, 258766.368900001049042 ], [ 360804.901299998164177, 258767.684399999678135 ], [ 360802.516800001263618, 258769.093400001525879 ], [ 360800.036399997770786, 258770.559000000357628 ], [ 360796.969999998807907, 258772.370900001376867 ], [ 360794.62780000269413, 258773.754900000989437 ], [ 360792.323499999940395, 258775.116500001400709 ], [ 360790.418099999427795, 258776.242300000041723 ], [ 360788.425800003111362, 258777.41950000077486 ], [ 360787.164499998092651, 258778.164900001138449 ], [ 360786.188400000333786, 258778.741599999368191 ], [ 360785.310199998319149, 258779.260499998927116 ], [ 360783.328199997544289, 258780.169100001454353 ], [ 360780.601999998092651, 258781.4189000017941 ], [ 360773.152199998497963, 258784.834199998527765 ], [ 360769.929200001060963, 258786.311700001358986 ], [ 360768.012000001966953, 258787.013900000602007 ], [ 360766.054499998688698, 258787.730900000780821 ], [ 360762.07940000295639, 258789.186700001358986 ], [ 360760.052000001072884, 258789.929200001060963 ], [ 360758.263700000941753, 258790.584199998527765 ], [ 360756.321800000965595, 258791.295400001108646 ], [ 360754.257500000298023, 258792.051500000059605 ], [ 360752.681100003421307, 258792.628800000995398 ], [ 360751.324600003659725, 258793.125599998980761 ], [ 360749.700800001621246, 258793.475999999791384 ], [ 360743.703900001943111, 258794.770100001245737 ], [ 360740.014700002968311, 258795.566100001335144 ], [ 360735.493600003421307, 258796.556400001049042 ], [ 360732.053400002419949, 258797.309900000691414 ], [ 360730.161700002849102, 258797.724199999123812 ], [ 360726.194899998605251, 258798.593100000172853 ], [ 360723.875100001692772, 258799.101199999451637 ], [ 360721.433499999344349, 258799.635899998247623 ], [ 360720.622800000011921, 258799.629299998283386 ], [ 360717.580799996852875, 258799.604400001466274 ], [ 360715.266400001943111, 258799.585499998182058 ], [ 360712.28999999910593, 258799.561099998652935 ], [ 360711.165600001811981, 258799.551899999380112 ], [ 360710.145199999213219, 258799.543499998748302 ], [ 360709.081699997186661, 258799.255800001323223 ], [ 360707.384199999272823, 258798.796500001102686 ], [ 360705.18860000371933, 258798.202399998903275 ], [ 360704.140799999237061, 258797.918999999761581 ], [ 360702.494800001382828, 258797.473600000143051 ], [ 360700.775600001215935, 258797.008400000631809 ], [ 360699.686499997973442, 258796.713700000196695 ], [ 360690.501299999654293, 258792.211899999529123 ], [ 360693.123199999332428, 258797.097100000828505 ], [ 360696.255900003015995, 258802.934200000017881 ], [ 360699.332000002264977, 258804.215999998152256 ], [ 360702.525700002908707, 258805.546900000423193 ], [ 360705.246200002729893, 258806.680599998682737 ], [ 360710.568899996578693, 258807.282200001180172 ], [ 360715.359899997711182, 258807.823699999600649 ], [ 360717.012199997901917, 258808.010400000959635 ], [ 360723.62219999730587, 258807.132199998944998 ], [ 360726.386699996888638, 258806.764899998903275 ], [ 360730.24719999730587, 258806.252000000327826 ], [ 360735.115199998021126, 258804.872800000011921 ], [ 360738.752300001680851, 258803.842199999839067 ], [ 360743.699699997901917, 258802.440499998629093 ], [ 360765.005000002682209, 258796.403900001198053 ], [ 360782.134499996900558, 258788.949299998581409 ], [ 360786.23139999806881, 258787.166299998760223 ], [ 360789.286100000143051, 258785.836899999529123 ], [ 360795.067299999296665, 258782.402199998497963 ], [ 360799.532300002872944, 258779.749400001019239 ], [ 360802.890699997544289, 258777.754099998623133 ], [ 360807.786499999463558, 258774.845400001853704 ], [ 360814.97410000115633, 258770.574999999254942 ], [ 360818.386100001633167, 258767.495000001043081 ], [ 360820.85419999808073, 258765.207499999552965 ], [ 360823.348999999463558, 258762.895399998873472 ], [ 360825.167999997735023, 258760.555500000715256 ], [ 360826.610200002789497, 258758.700199998915195 ], [ 360828.699500001966953, 258754.125100001692772 ], [ 360830.891599997878075, 258749.325199998915195 ], [ 360832.005500003695488, 258746.885999999940395 ], [ 360832.987899996340275, 258744.734600000083447 ], [ 360834.005500003695488, 258742.506499998271465 ], [ 360834.90990000218153, 258739.299400001764297 ], [ 360835.718900002539158, 258736.430599998682737 ], [ 360836.499899998307228, 258733.660999998450279 ], [ 360839.784500002861023, 258726.721799999475479 ], [ 360842.241200000047684, 258722.309000000357628 ], [ 360843.342799998819828, 258721.118000000715256 ], [ 360848.54730000346899, 258715.49100000038743 ], [ 360852.313100002706051, 258711.601700000464916 ], [ 360854.042400002479553, 258709.895100001245737 ], [ 360855.259099997580051, 258708.694400001317263 ], [ 360859.314699999988079, 258706.298099998384714 ], [ 360863.363600000739098, 258703.905600000172853 ], [ 360864.910499997437, 258703.290500000119209 ], [ 360868.860399998724461, 258701.719799999147654 ], [ 360870.645599998533726, 258701.009899999946356 ], [ 360874.332599997520447, 258700.183800000697374 ], [ 360879.227399997413158, 258699.232299998402596 ], [ 360882.754100002348423, 258698.832899998873472 ], [ 360886.68639999628067, 258698.387600000947714 ], [ 360890.57880000025034, 258697.946899998933077 ], [ 360894.295299999415874, 258697.526000000536442 ], [ 360898.142300002276897, 258697.090300001204014 ], [ 360900.51690000295639, 258696.821400001645088 ], [ 360902.01240000128746, 258696.394299998879433 ], [ 360904.511100001633167, 258695.680700000375509 ], [ 360907.697999998927116, 258694.770500000566244 ], [ 360915.554099999368191, 258692.526799999177456 ], [ 360919.917000003159046, 258691.280699998140335 ], [ 360923.2550999969244, 258689.567999999970198 ], [ 360926.466899998486042, 258687.920000001788139 ], [ 360929.165100000798702, 258684.867199998348951 ], [ 360934.254799999296665, 258683.924100000411272 ], [ 360937.734899997711182, 258682.138399999588728 ], [ 360939.034000001847744, 258681.093600001186132 ], [ 360942.720299996435642, 258678.128800000995398 ], [ 360945.135300002992153, 258676.1864 ], [ 360947.840199999511242, 258674.010899998247623 ], [ 360951.200400002300739, 258671.19200000166893 ], [ 360953.075499996542931, 258669.223999999463558 ], [ 360956.112099997699261, 258666.036899998784065 ], [ 360958.824600003659725, 258663.190000001341105 ], [ 360961.303199999034405, 258660.588599998503923 ], [ 360962.423699997365475, 258659.075500000268221 ], [ 360964.328699998557568, 258656.503100000321865 ], [ 360967.17790000140667, 258652.655699998140335 ], [ 360969.146200001239777, 258649.997900001704693 ], [ 360971.092299997806549, 258647.369899999350309 ], [ 360971.992399998009205, 258646.321299999952316 ], [ 360973.851999998092651, 258644.154899999499321 ], [ 360975.422399997711182, 258642.325500000268221 ], [ 360979.104599997401237, 258638.035799998790026 ], [ 360981.497100003063679, 258635.248599998652935 ], [ 360984.460100002586842, 258631.796799998730421 ], [ 360988.510200001299381, 258627.579500000923872 ], [ 360989.710199996829033, 258626.490899998694658 ], [ 360990.817500002682209, 258625.4864999987185 ], [ 360993.329000003635883, 258623.208200000226498 ], [ 360998.429700002074242, 258618.581000000238419 ], [ 361001.363099999725819, 258615.919900000095367 ], [ 361003.632500000298023, 258613.861200001090765 ], [ 361006.127999998629093, 258612.063700001686811 ], [ 361009.086400002241135, 258609.932700000703335 ], [ 361013.166799999773502, 258606.993599999696016 ], [ 361017.508500002324581, 258603.866200000047684 ], [ 361022.449699997901917, 258600.628800000995398 ], [ 361025.351599998772144, 258598.899099998176098 ], [ 361031.454000003635883, 258595.261700000613928 ], [ 361035.93639999628067, 258592.589800000190735 ], [ 361042.404700003564358, 258588.734299998730421 ], [ 361049.362999998033047, 258584.586599998176098 ], [ 361055.093699999153614, 258581.170699998736382 ], [ 361057.899999998509884, 258579.498100001364946 ], [ 361060.383599996566772, 258578.017599999904633 ], [ 361062.059399999678135, 258576.63740000128746 ], [ 361065.745700001716614, 258573.601199999451637 ], [ 361071.291199997067451, 258569.033599998801947 ], [ 361073.618900001049042, 258567.116500001400709 ], [ 361076.625, 258564.640500001609325 ], [ 361083.581200003623962, 258557.349500000476837 ], [ 361086.301600001752377, 258554.498100001364946 ], [ 361088.015799999237061, 258552.701400000602007 ], [ 361089.6554000005126, 258549.548500001430511 ], [ 361091.277000002563, 258548.506299998611212 ], [ 361093.313699997961521, 258546.024500001221895 ], [ 361095.043799996376038, 258543.916200000792742 ], [ 361098.946400001645088, 258539.160599999129772 ], [ 361102.44820000231266, 258534.893399998545647 ], [ 361105.660499997437, 258530.978999998420477 ], [ 361108.400399997830391, 258527.640299998223782 ], [ 361110.496399998664856, 258525.086100000888109 ], [ 361112.905199997127056, 258522.150800000876188 ], [ 361115.602099999785423, 258518.864500001072884 ], [ 361118.072200000286102, 258515.854499999433756 ], [ 361121.161300003528595, 258512.522700000554323 ], [ 361124.563400000333786, 258509.051699999719858 ], [ 361127.575400002300739, 258505.978900000452995 ], [ 361129.671899996697903, 258503.839899998158216 ], [ 361132.685199998319149, 258500.765599999576807 ], [ 361135.892899997532368, 258497.493000000715256 ], [ 361137.406499996781349, 258495.948800001293421 ], [ 361139.492200002074242, 258493.820900000631809 ], [ 361140.943999998271465, 258492.339699998497963 ], [ 361144.375200003385544, 258489.568599998950958 ], [ 361150.259999997913837, 258484.815999999642372 ], [ 361154.823700003325939, 258481.130199998617172 ], [ 361159.950900003314018, 258476.989399999380112 ], [ 361162.700800001621246, 258474.768500000238419 ], [ 361164.490699999034405, 258473.322900000959635 ], [ 361166.37780000269413, 258472.102200001478195 ], [ 361170.475599996745586, 258469.451499998569489 ], [ 361173.4983000010252, 258467.496199999004602 ], [ 361176.88849999755621, 258465.303199999034405 ], [ 361180.278800003230572, 258463.110199999064207 ], [ 361183.476899996399879, 258461.041400000452995 ], [ 361185.945500001311302, 258459.444499999284744 ], [ 361187.733900003135204, 258458.28770000115037 ], [ 361189.6266999989748, 258457.063299998641014 ], [ 361192.196900002658367, 258455.118200000375509 ], [ 361194.643100000917912, 258453.2668999992311 ], [ 361196.773299999535084, 258451.654800001531839 ], [ 361198.460199996829033, 258450.378199998289347 ], [ 361203.423900000751019, 258446.621599998325109 ], [ 361206.037100002169609, 258444.088799998164177 ], [ 361209.5337999984622, 258440.699799999594688 ], [ 361212.486900001764297, 258437.837600000202656 ], [ 361215.307800002396107, 258435.10359999909997 ], [ 361217.246299996972084, 258433.224700000137091 ], [ 361218.068800002336502, 258431.331599999219179 ], [ 361220.551700003445148, 258429.217599999159575 ], [ 361224.473600000143051, 258425.878299999982119 ], [ 361228.628200002014637, 258422.340999998152256 ], [ 361237.288999997079372, 258417.597699999809265 ], [ 361240.7804000005126, 258415.685499999672174 ], [ 361244.412699997425079, 258414.411699999123812 ], [ 361248.283500000834465, 258413.054200001060963 ], [ 361251.989000000059605, 258411.754700001329184 ], [ 361253.721000000834465, 258411.147300001233816 ], [ 361263.387699998915195, 258412.281899999827147 ], [ 361264.757100000977516, 258412.910100001841784 ], [ 361266.123800002038479, 258413.537099998444319 ], [ 361266.993699997663498, 258413.936099998652935 ], [ 361267.695100001990795, 258414.257800001651049 ], [ 361268.371399998664856, 258414.56810000166297 ], [ 361269.010300002992153, 258414.861099999397993 ], [ 361270.24889999628067, 258415.960200000554323 ], [ 361271.156800001859665, 258416.765999998897314 ], [ 361271.900600001215935, 258417.425999999046326 ], [ 361272.463600002229214, 258417.925500001758337 ], [ 361273.129199996590614, 258418.516100000590086 ], [ 361273.812200002372265, 258419.12220000103116 ], [ 361274.929300002753735, 258421.362100001424551 ], [ 361276.019400000572205, 258424.141800001263618 ], [ 361276.568199999630451, 258425.766499999910593 ], [ 361276.970899999141693, 258426.958500001579523 ], [ 361277.024400003254414, 258427.801600001752377 ], [ 361277.103900000452995, 258429.053300000727177 ], [ 361277.272399999201298, 258431.705200001597404 ], [ 361278.062100000679493, 258444.136700000613928 ], [ 361278.281000003218651, 258447.583399999886751 ], [ 361278.352099999785423, 258448.703400000929832 ], [ 361278.39299999922514, 258449.346099998801947 ], [ 361278.950499996542931, 258451.930100001394749 ], [ 361279.365599997341633, 258453.853500001132488 ], [ 361279.639399997889996, 258455.122499998658895 ], [ 361279.808899998664856, 258455.90819999948144 ], [ 361279.987300001084805, 258456.7347999997437 ], [ 361280.268899999558926, 258458.039799999445677 ], [ 361280.50959999859333, 258459.155200000852346 ], [ 361281.206500001251698, 258462.384899999946356 ], [ 361281.495899997651577, 258463.725900001823902 ], [ 361281.817100003361702, 258464.38459999859333 ], [ 361282.16669999808073, 258465.101300001144409 ], [ 361282.659999996423721, 258466.11259999871254 ], [ 361283.633199997246265, 258468.107900001108646 ], [ 361284.139799997210503, 258469.146600000560284 ], [ 361288.628700003027916, 258478.349700000137091 ], [ 361289.948399998247623, 258480.195900000631809 ], [ 361291.343500003218651, 258482.14750000089407 ], [ 361291.816200003027916, 258482.808699999004602 ], [ 361292.84570000320673, 258484.042399998754263 ], [ 361293.410099998116493, 258484.718699999153614 ], [ 361295.000100001692772, 258486.6239 ], [ 361296.161499999463558, 258488.015500001609325 ], [ 361297.024400003254414, 258489.049499999731779 ], [ 361297.522299997508526, 258489.646000001579523 ], [ 361299.454800002276897, 258490.544900000095367 ], [ 361301.686999998986721, 258491.583200000226498 ], [ 361302.248499996960163, 258491.844300001859665 ], [ 361302.877199999988079, 258492.136700000613928 ], [ 361304.047600001096725, 258492.969900000840425 ], [ 361306.177100002765656, 258494.48589999973774 ], [ 361308.087899997830391, 258495.846000000834465 ], [ 361309.916799999773502, 258497.147999998182058 ], [ 361311.031400002539158, 258497.941399998962879 ], [ 361313.80460000038147, 258499.915500000119209 ], [ 361315.314800001680851, 258500.64130000025034 ], [ 361318.232699997723103, 258502.068599998950958 ], [ 361323.816299997270107, 258504.799699999392033 ], [ 361327.800899997353554, 258506.748700000345707 ], [ 361328.51860000193119, 258507.099700000137091 ], [ 361329.156800001859665, 258507.411899998784065 ], [ 361329.919900000095367, 258507.785100001841784 ], [ 361331.655699998140335, 258508.148499999195337 ], [ 361334.133100003004074, 258508.666999999433756 ], [ 361335.390100002288818, 258508.930100001394749 ], [ 361338.374399997293949, 258509.554699998348951 ], [ 361343.572400003671646, 258510.642599999904633 ], [ 361344.990599997341633, 258510.805399999022484 ], [ 361346.311300002038479, 258510.956900000572205 ], [ 361347.835299998521805, 258511.131799999624491 ], [ 361349.823899999260902, 258511.359999999403954 ], [ 361351.144599996507168, 258511.511599998921156 ], [ 361358.837700001895428, 258512.394400000572205 ], [ 361360.48480000346899, 258512.583399999886751 ], [ 361361.333499997854233, 258512.680799998342991 ], [ 361362.320299997925758, 258512.793999999761581 ], [ 361362.939900003373623, 258512.865100000053644 ], [ 361365.074400000274181, 258512.939800001680851 ], [ 361367.318300001323223, 258513.018199998885393 ], [ 361371.742399998009205, 258513.172899998724461 ], [ 361376.982299998402596, 258513.356100000441074 ], [ 361379.023400001227856, 258513.427499998360872 ], [ 361381.082999996840954, 258513.499499998986721 ], [ 361385.641199998557568, 258513.6587999984622 ], [ 361386.4966000020504, 258513.737100001424551 ], [ 361387.349399998784065, 258513.815099999308586 ], [ 361388.870099999010563, 258513.954300001263618 ], [ 361392.382799997925758, 258514.275699999183416 ], [ 361394.493900001049042, 258514.468899998813868 ], [ 361397.899300001561642, 258514.780499998480082 ], [ 361400.851199999451637, 258515.050599999725819 ], [ 361404.339800000190735, 258515.369800001382828 ], [ 361405.776900000870228, 258515.501299999654293 ], [ 361407.880000002682209, 258514.927200000733137 ], [ 361409.929999999701977, 258515.881299998611212 ], [ 361411.173299998044968, 258516.123599998652935 ], [ 361412.956000000238419, 258516.471000000834465 ], [ 361419.273999996483326, 258517.702300000935793 ], [ 361421.628600001335144, 258518.161100000143051 ], [ 361424.747900001704693, 258518.769000001251698 ], [ 361429.370099999010563, 258519.669700000435114 ], [ 361431.814900003373623, 258520.146200001239777 ], [ 361434.502199999988079, 258520.669799998402596 ], [ 361438.320799998939037, 258521.414000000804663 ], [ 361440.88629999756813, 258521.913899999111891 ], [ 361441.950400002300739, 258522.181099999696016 ], [ 361444.533100001513958, 258522.829700000584126 ], [ 361447.225100003182888, 258523.50560000166297 ], [ 361448.983199998736382, 258523.94709999859333 ], [ 361455.145199999213219, 258525.494300000369549 ], [ 361462.644599996507168, 258527.377399999648333 ], [ 361470.798199996352196, 258529.424800001084805 ], [ 361488.016000002622604, 258533.772999998182058 ], [ 361488.828900001943111, 258533.978900000452995 ], [ 361489.551500000059605, 258534.066199999302626 ], [ 361500.922700002789497, 258535.438499998301268 ], [ 361504.018399998545647, 258535.812100000679493 ], [ 361505.45269999653101, 258535.985300000756979 ], [ 361506.527300000190735, 258536.114900000393391 ], [ 361507.244000002741814, 258536.201400000602007 ], [ 361515.099200002849102, 258536.271600000560284 ], [ 361521.053700000047684, 258536.324700001627207 ], [ 361524.095600001513958, 258536.35190000012517 ], [ 361525.023999996483326, 258536.360100001096725 ], [ 361539.124899998307228, 258535.022100001573563 ], [ 361546.772799998521805, 258534.296399999409914 ], [ 361547.623400002717972, 258534.1239 ], [ 361554.196599997580051, 258532.790899999439716 ], [ 361558.78660000115633, 258531.860100001096725 ], [ 361564.342399999499321, 258530.733300000429153 ], [ 361567.380900003015995, 258530.11710000038147 ], [ 361568.867899999022484, 258529.815600000321865 ], [ 361571.482400000095367, 258529.095300000160933 ], [ 361575.132100000977516, 258528.009799998253584 ], [ 361585.515900000929832, 258524.92119999974966 ], [ 361590.155900001525879, 258523.54109999909997 ], [ 361594.005900003015995, 258522.396000001579523 ], [ 361602.469200000166893, 258519.779399998486042 ], [ 361605.690700002014637, 258518.664299998432398 ], [ 361609.545999996364117, 258517.329700000584126 ], [ 361612.569899998605251, 258516.282999999821186 ], [ 361614.646300002932549, 258515.5641999989748 ], [ 361615.793600000441074, 258515.167100001126528 ], [ 361616.940399996936321, 258514.770100001245737 ], [ 361630.116700001060963, 258514.770100001245737 ], [ 361632.967600002884865, 258515.905000001192093 ], [ 361637.885899998247623, 258517.862700000405312 ], [ 361641.617799997329712, 258519.348200000822544 ], [ 361644.67620000243187, 258520.565600000321865 ], [ 361648.36150000244379, 258522.249299999326468 ], [ 361651.888400003314018, 258524.056800000369549 ], [ 361653.888199999928474, 258525.081799998879433 ], [ 361656.311099998652935, 258526.323499999940395 ], [ 361657.495700001716614, 258526.930599998682737 ], [ 361659.167999997735023, 258527.787599999457598 ], [ 361661.096100002527237, 258528.453299999237061 ], [ 361669.067800000309944, 258531.205400001257658 ], [ 361674.621899999678135, 258533.122900001704693 ], [ 361679.9375, 258534.958099998533726 ], [ 361682.312200002372265, 258535.777899999171495 ], [ 361683.557499997317791, 258536.207899998873472 ], [ 361684.823299996554852, 258536.644799999892712 ], [ 361689.645700000226498, 258538.30970000103116 ], [ 361693.836300000548363, 258539.756499998271465 ], [ 361697.338100001215935, 258540.965399999171495 ], [ 361699.173100002110004, 258541.598900001496077 ], [ 361702.855200000107288, 258545.521099999547005 ], [ 361759.8108000010252, 258555.67680000141263 ], [ 361768.850599996745586, 258558.554999999701977 ], [ 361772.181199997663498, 258559.615499999374151 ], [ 361775.181199997663498, 258560.824799999594688 ], [ 361776.919200003147125, 258561.576400000602007 ], [ 361778.959899999201298, 258562.45890000090003 ], [ 361801.167599998414516, 258572.089699998497963 ], [ 361810.002700001001358, 258576.402300000190735 ], [ 361815.343999996781349, 258579.009399998933077 ], [ 361816.834700003266335, 258579.736999999731779 ], [ 361818.218500003218651, 258580.412500001490116 ], [ 361820.425800003111362, 258581.489900000393391 ], [ 361822.209600001573563, 258582.360599998384714 ], [ 361823.1554000005126, 258582.822200000286102 ], [ 361824.273999996483326, 258583.452100001275539 ], [ 361825.445200003683567, 258584.111699998378754 ], [ 361826.302299998700619, 258584.594300001859665 ], [ 361829.096699997782707, 258586.167899999767542 ], [ 361831.228399999439716, 258587.368299998342991 ], [ 361832.129399999976158, 258587.875700000673532 ], [ 361833.754000000655651, 258588.537200000137091 ], [ 361837.449400000274181, 258589.747299998998642 ], [ 361840.649499997496605, 258590.795099999755621 ], [ 361842.785300001502037, 258591.49439999833703 ], [ 361851.616700001060963, 258591.989799998700619 ], [ 361859.785300001502037, 258589.089999999850988 ], [ 361867.746899999678135, 258586.153499998152256 ], [ 361885.408600002527237, 258579.555900000035763 ], [ 361894.82039999961853, 258576.236299999058247 ], [ 361901.432800002396107, 258573.904100000858307 ], [ 361906.007200002670288, 258572.290600001811981 ], [ 361911.235500000417233, 258570.44649999961257 ], [ 361919.5641999989748, 258567.508900001645088 ], [ 361930.097000002861023, 258563.7939000017941 ], [ 361937.519100002944469, 258561.176100000739098 ], [ 361964.547600001096725, 258551.642799999564886 ], [ 361960.730700001120567, 258543.154599998146296 ], [ 361960.230800002813339, 258540.22520000115037 ], [ 361951.957000002264977, 258543.244100000709295 ], [ 361943.898199997842312, 258546.184500001370907 ], [ 361926.933600001037121, 258551.516199998557568 ], [ 361906.856499999761581, 258557.826200000941753 ], [ 361880.398100003600121, 258568.832899998873472 ], [ 361872.431999996304512, 258573.897999998182058 ], [ 361861.998599998652935, 258576.196299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103101012400", "MAP": "D9-6769-T000", "PARCEL_NAM": "34B-4", "ACRE": null, "LONGITUDE": -64.89926494, "LATITUDE": 18.35996469, "OBJECTID_1": 6356, "PARCEL_NO_": "103101012400", "Tax_Legal_": "34B-4 ESTATE MANDAHL NO.1 GREAT NORTHSIDE QTR.", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 10000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.392707229, "SHAPE_Area": 191.144968807 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362155.162299998104572, 259009.822200000286102 ], [ 362156.738399997353554, 259010.701200000941753 ], [ 362157.195200003683567, 258998.297200001776218 ], [ 362157.351400002837181, 258994.054999999701977 ], [ 362157.492700003087521, 258990.218800000846386 ], [ 362157.587200000882149, 258987.653299998492002 ], [ 362157.320299997925758, 258983.87220000103116 ], [ 362157.143100000917912, 258981.361900001764297 ], [ 362156.232600003480911, 258979.844399999827147 ], [ 362155.06530000269413, 258977.898899998515844 ], [ 362153.571199998259544, 258975.408700000494719 ], [ 362151.806500002741814, 258973.872800000011921 ], [ 362149.976300001144409, 258972.279899999499321 ], [ 362148.371899999678135, 258970.883400000631809 ], [ 362146.427400000393391, 258969.190999999642372 ], [ 362142.587700001895428, 258967.101799998432398 ], [ 362137.431599996984005, 258964.29619999974966 ], [ 362133.259499996900558, 258962.046599999070168 ], [ 362130.144599996507168, 258960.366999998688698 ], [ 362126.650799997150898, 258958.4831000007689 ], [ 362123.937799997627735, 258957.020199999213219 ], [ 362121.604699999094009, 258955.985500000417233 ], [ 362119.112000003457069, 258954.879999998956919 ], [ 362114.900600001215935, 258953.012299999594688 ], [ 362108.724200002849102, 258950.273299999535084 ], [ 362101.748499996960163, 258947.7010000012815 ], [ 362097.040700003504753, 258945.964999999850988 ], [ 362092.915200002491474, 258944.44370000064373 ], [ 362087.557499997317791, 258942.467999998480082 ], [ 362084.851599998772144, 258941.010999999940395 ], [ 362082.398100003600121, 258939.689899999648333 ], [ 362080.942900002002716, 258940.351399999111891 ], [ 362086.763700000941753, 258943.658700000494719 ], [ 362090.071000002324581, 258944.981600001454353 ], [ 362094.701300002634525, 258946.833700001239777 ], [ 362112.296099998056889, 258953.580600000917912 ], [ 362126.318999998271465, 258960.195199999958277 ], [ 362139.019100002944469, 258967.206599999219179 ], [ 362145.633699998259544, 258970.910799998790026 ], [ 362149.734700001776218, 258973.953499998897314 ], [ 362152.909699998795986, 258977.393100000917912 ], [ 362154.761799998581409, 258980.832699999213219 ], [ 362155.952399998903275, 258984.404599998146296 ], [ 362155.687799997627735, 258998.162900000810623 ], [ 362155.162299998104572, 259009.822200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103101012500", "MAP": "D9-6769-T000", "PARCEL_NAM": "34C-1", "ACRE": null, "LONGITUDE": -64.8990127, "LATITUDE": 18.36052523, "OBJECTID_1": 6357, "PARCEL_NO_": "103101012500", "Tax_Legal_": "34C-1 ESTATE MANDAHL NO.1 GREAT NORTHSIDE QTR.", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.376642941499995, "SHAPE_Area": 61.973018545499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362156.738399997353554, 259010.701200000941753 ], [ 362155.162299998104572, 259009.822200000286102 ], [ 362154.92059999704361, 259015.184500001370907 ], [ 362156.243500001728535, 259048.786699999123812 ], [ 362157.861199997365475, 259050.139199998229742 ], [ 362157.711800001561642, 259046.302099999040365 ], [ 362157.443999998271465, 259039.421000000089407 ], [ 362156.793700002133846, 259022.710200000554323 ], [ 362156.538099996745586, 259016.142299998551607 ], [ 362156.738399997353554, 259010.701200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103101012600", "MAP": "D9-6769-T000", "PARCEL_NAM": "34C-2", "ACRE": ".08", "LONGITUDE": -64.89847766, "LATITUDE": 18.36085033, "OBJECTID_1": 6358, "PARCEL_NO_": "103101012600", "Tax_Legal_": "34C-2 ESTATE MANDAHL NO.1 GREAT NORTHSIDE", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.540691237, "SHAPE_Area": 93.619407333400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362197.838799998164177, 259090.151999998837709 ], [ 362199.290600001811981, 259090.676899999380112 ], [ 362202.148100003600121, 259085.279399998486042 ], [ 362203.100599996745586, 259084.115200001746416 ], [ 362204.264799997210503, 259081.257699999958277 ], [ 362205.217299997806549, 259079.140999998897314 ], [ 362208.074799999594688, 259074.907699998468161 ], [ 362210.29730000346899, 259071.521000001579523 ], [ 362213.366499997675419, 259067.605200000107288 ], [ 362215.694799996912479, 259064.218499999493361 ], [ 362217.282300002872944, 259061.67850000038743 ], [ 362218.975599996745586, 259058.92680000141263 ], [ 362221.198100000619888, 259054.164299998432398 ], [ 362223.526500001549721, 259048.131799999624491 ], [ 362225.748999997973442, 259043.369300000369549 ], [ 362227.548199996352196, 259039.030099999159575 ], [ 362228.394799999892712, 259037.548500001430511 ], [ 362226.72860000282526, 259037.585900001227856 ], [ 362223.558799996972084, 259045.137600000947714 ], [ 362221.851099997758865, 259049.084899999201298 ], [ 362221.229699999094009, 259050.425700001418591 ], [ 362220.113899998366833, 259052.833299998193979 ], [ 362219.078900001943111, 259055.066599998623133 ], [ 362218.143299996852875, 259057.085299998521805 ], [ 362216.639300003647804, 259060.330600000917912 ], [ 362215.703699998557568, 259061.618599999696016 ], [ 362214.722900003194809, 259062.968899998813868 ], [ 362213.3783999979496, 259064.81980000063777 ], [ 362212.351800002157688, 259066.233199998736382 ], [ 362211.226899996399879, 259067.781800001859665 ], [ 362210.243699997663498, 259069.135299999266863 ], [ 362209.363300003111362, 259070.34739999845624 ], [ 362208.371100001037121, 259071.71339999884367 ], [ 362207.657799996435642, 259072.695300001651049 ], [ 362206.44370000064373, 259074.366900000721216 ], [ 362205.16780000180006, 259076.1233000010252 ], [ 362204.445299997925758, 259077.118099998682737 ], [ 362203.855400003492832, 259077.930100001394749 ], [ 362203.363799996674061, 259078.606899999082088 ], [ 362202.768399998545647, 259079.426600001752377 ], [ 362202.42849999666214, 259080.798500001430511 ], [ 362202.190800003707409, 259081.757699999958277 ], [ 362201.420699998736382, 259083.259100001305342 ], [ 362200.308100000023842, 259084.261599998921156 ], [ 362198.923299998044968, 259087.565000001341105 ], [ 362197.838799998164177, 259090.151999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103101012700", "MAP": "D9-6769-T000", "PARCEL_NAM": "34K ROW", "ACRE": ".127", "LONGITUDE": -64.89828218, "LATITUDE": 18.36096159, "OBJECTID_1": 6359, "PARCEL_NO_": "103101012700", "Tax_Legal_": "34K ESTATE MANDAHL NO.1 GREAT NORTHSIDE QTR.", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 42500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.60484986200001, "SHAPE_Area": 116.272598167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362233.798500001430511, 259033.873199999332428 ], [ 362232.94820000231266, 259035.041999999433756 ], [ 362233.411200001835823, 259037.092500001192093 ], [ 362233.411200001835823, 259039.209199998527765 ], [ 362233.411200001835823, 259040.862900000065565 ], [ 362233.344999998807907, 259043.244100000709295 ], [ 362233.08049999922514, 259046.683699999004602 ], [ 362233.212700001895428, 259051.115499999374151 ], [ 362232.661499999463558, 259060.724300000816584 ], [ 362232.44990000128746, 259073.741799999028444 ], [ 362232.132399998605251, 259090.040199998766184 ], [ 362231.486000001430511, 259113.247999999672174 ], [ 362233.296800002455711, 259116.215399999171495 ], [ 362233.85530000180006, 259079.866799999028444 ], [ 362234.248999997973442, 259054.241999998688698 ], [ 362234.318800002336502, 259046.216699998825788 ], [ 362234.381300002336502, 259039.028400000184774 ], [ 362233.798500001430511, 259033.873199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101015800", "MAP": "D9-6769-T000", "PARCEL_NAM": "34b-3", "ACRE": ".566", "LONGITUDE": -64.89833032, "LATITUDE": 18.35970627, "OBJECTID_1": 6365, "PARCEL_NO_": "103101015800", "Tax_Legal_": "34B-3 ESTATE MANDAHL NO.1 GREAT NORTHSIDE QTR.", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 61000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.77949308699999, "SHAPE_Area": 1711.5476235599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362176.927799999713898, 258946.96339999884367 ], [ 362181.200499996542931, 258946.182300001382828 ], [ 362189.230999998748302, 258944.714400000870228 ], [ 362195.713299997150898, 258944.449799999594688 ], [ 362200.47580000013113, 258945.508200000971556 ], [ 362203.009700000286102, 258947.257800001651049 ], [ 362206.031999997794628, 258949.3445999994874 ], [ 362225.886900000274181, 258952.254999998956919 ], [ 362258.695299997925758, 258953.313400000333786 ], [ 362265.045299999415874, 258948.947700001299381 ], [ 362267.823399998247623, 258941.27479999884963 ], [ 362264.383799999952316, 258935.718600001186132 ], [ 362251.683799996972084, 258926.855000000447035 ], [ 362204.984700001776218, 258926.590399999171495 ], [ 362176.927799999713898, 258946.96339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103018400", "MAP": "D9-6269-T97", "PARCEL_NAM": "25D-1", "ACRE": ".37", "LONGITUDE": -64.89351399, "LATITUDE": 18.35353048, "OBJECTID_1": 6507, "PARCEL_NO_": "103103018400", "Tax_Legal_": "25D-1 ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "NILES, VERNE E. & ASHICA", "Address": "4100 Donoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.488888831, "SHAPE_Area": 1155.4313498399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362768.053300000727177, 258270.746300000697374 ], [ 362742.165100000798702, 258235.034099999815226 ], [ 362718.616599999368191, 258254.261999998241663 ], [ 362735.421499997377396, 258269.387099999934435 ], [ 362739.411700002849102, 258274.274900000542402 ], [ 362741.794699996709824, 258278.51630000025034 ], [ 362743.340800002217293, 258286.339400000870228 ], [ 362768.053300000727177, 258270.746300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103017600", "MAP": "D9-6269-T97", "PARCEL_NAM": "25D-2", "ACRE": ".37", "LONGITUDE": -64.89330391, "LATITUDE": 18.35384321, "OBJECTID_1": 6499, "PARCEL_NO_": "103103017600", "Tax_Legal_": "MANDAHL 25D-2 GREAT NORTHSIDE", "Name": "NILES, CLAXTON SERENA", "Address": "156 MAHOGANY ESTATE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.50971253599999, "SHAPE_Area": 1236.9078112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362788.925399996340275, 258299.538800001144409 ], [ 362768.053300000727177, 258270.746300000697374 ], [ 362743.340800002217293, 258286.339400000870228 ], [ 362749.667199999094009, 258300.956700000911951 ], [ 362759.939000003039837, 258317.210499998182058 ], [ 362761.601899996399879, 258319.841699998825788 ], [ 362783.49099999666214, 258306.088700000196695 ], [ 362790.851499997079372, 258302.195700000971556 ], [ 362788.925399996340275, 258299.538800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103018200", "MAP": "D9-6878-T001", "PARCEL_NAM": "25E", "ACRE": ".57", "LONGITUDE": -64.89317851, "LATITUDE": 18.35471426, "OBJECTID_1": 6505, "PARCEL_NO_": "103103018200", "Tax_Legal_": "MANDAHL ESTATE 25E No.1 GREAT NORTHSIDE QTR.", "Name": "SEAGRAPE HOLDINGS LLC", "Address": "7640 Lower Hull Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.068822649, "SHAPE_Area": 2773.61909057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362775.324600003659725, 258347.917899999767542 ], [ 362737.451099999248981, 258390.776000000536442 ], [ 362809.031199999153614, 258431.687300000339746 ], [ 362816.397699996829033, 258418.870799999684095 ], [ 362802.054899998009205, 258398.699599999934435 ], [ 362797.314099997282028, 258387.261700000613928 ], [ 362795.715899996459484, 258385.559900000691414 ], [ 362790.174199998378754, 258373.482200000435114 ], [ 362788.574100002646446, 258371.991399999707937 ], [ 362786.997500002384186, 258367.756700001657009 ], [ 362785.397399999201298, 258366.265900000929832 ], [ 362782.22070000320673, 258360.540399998426437 ], [ 362781.435999996960163, 258358.000900000333786 ], [ 362779.846799999475479, 258355.243599999696016 ], [ 362775.324600003659725, 258347.917899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103018300", "MAP": "D9-6878-T001", "PARCEL_NAM": "25E-E", "ACRE": ".57", "LONGITUDE": -64.89352295, "LATITUDE": 18.35436731, "OBJECTID_1": 6506, "PARCEL_NO_": "103103018300", "Tax_Legal_": "25E-E ESTATE MANDAHL 1 GREAT NORTHSIDE QTR", "Name": "GEORGE, CARL A", "Address": "15924 NW 121st Ln", "City": "Alachua", "State": "Florida", "Zip": 32615, "Country": "United States", "Land_Value": 61000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.67624927700001, "SHAPE_Area": 2728.2785109599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362750.823299996554852, 258308.226300001144409 ], [ 362706.836800001561642, 258368.904100000858307 ], [ 362718.353000000119209, 258379.860500000417233 ], [ 362737.451099999248981, 258390.776000000536442 ], [ 362775.324600003659725, 258347.917899999767542 ], [ 362750.823299996554852, 258308.226300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103018100", "MAP": "D9-6878-T001", "PARCEL_NAM": "25E-D", "ACRE": ".52", "LONGITUDE": -64.89370519000001, "LATITUDE": 18.35382514, "OBJECTID_1": 6504, "PARCEL_NO_": "103103018100", "Tax_Legal_": "MANDAHL ESTATE 25E-D No.1 GREAT NORTHSIDE QTR.", "Name": "FRANCIS, CAROL", "Address": "16410 S.W.100 CT", "City": "Miami", "State": "Florida", "Zip": 33157, "Country": "United States", "Land_Value": 68700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.11939501500001, "SHAPE_Area": 2163.5593430200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362698.7128000035882, 258282.070099998265505 ], [ 362702.245800003409386, 258301.413600001484156 ], [ 362735.205600000917912, 258329.770300000905991 ], [ 362750.823299996554852, 258308.226300001144409 ], [ 362747.235699996352196, 258302.41440000012517 ], [ 362740.108400002121925, 258287.157400000840425 ], [ 362740.138899996876717, 258283.568999998271465 ], [ 362736.978399999439716, 258275.943799998611212 ], [ 362733.787299998104572, 258271.906899999827147 ], [ 362731.379199996590614, 258270.620600000023842 ], [ 362717.779799997806549, 258257.843699999153614 ], [ 362716.181500002741814, 258256.1418999992311 ], [ 362708.062600001692772, 258262.619300000369549 ], [ 362703.145599998533726, 258271.867199998348951 ], [ 362698.7128000035882, 258282.070099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010900", "MAP": "A3-25-T36", "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.89454792, "LATITUDE": 18.35451756, "OBJECTID_1": 6434, "PARCEL_NO_": "103103010900", "Tax_Legal_": "MANDAHL 24 GREAT NORTHSIDE QTR", "Name": "LAPLACE, L. & AUBAIN, J", "Address": "6581 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 676300, "Improved_V": 149000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 319.79550881, "SHAPE_Area": 3237.84336257 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362646.080399997532368, 258419.554299999028444 ], [ 362656.800499998033047, 258412.031800001859665 ], [ 362654.713500000536442, 258411.080699998885393 ], [ 362654.184900000691414, 258410.839800000190735 ], [ 362650.848399996757507, 258410.392200000584126 ], [ 362647.67339999973774, 258411.133099999278784 ], [ 362643.334200002253056, 258412.297200001776218 ], [ 362636.596799999475479, 258414.721900001168251 ], [ 362633.393500000238419, 258413.99549999833107 ], [ 362630.184399999678135, 258412.069400001317263 ], [ 362628.589800000190735, 258409.945500001311302 ], [ 362627.833800002932549, 258404.028599999845028 ], [ 362629.475199997425079, 258400.664599999785423 ], [ 362638.421999998390675, 258391.660799998790026 ], [ 362653.099299997091293, 258372.571400001645088 ], [ 362659.711599998176098, 258353.627099998295307 ], [ 362671.960900001227856, 258335.573300000280142 ], [ 362657.5641999989748, 258321.734400000423193 ], [ 362648.626400001347065, 258329.682799998670816 ], [ 362610.492399998009205, 258357.234999999403954 ], [ 362599.961800001561642, 258362.848400000482798 ], [ 362592.685199998319149, 258365.11089999973774 ], [ 362630.909800000488758, 258421.574599999934435 ], [ 362634.848099999129772, 258427.436200000345707 ], [ 362646.080399997532368, 258419.554299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010800", "MAP": null, "PARCEL_NAM": "24A", "ACRE": null, "LONGITUDE": -64.89428541, "LATITUDE": 18.35512558, "OBJECTID_1": 6433, "PARCEL_NO_": "103103010800", "Tax_Legal_": "MANDAHL 24A GREAT NORTHSIDE QTR", "Name": "AUBAIN, JOSEPH A. & YOLANDE GINETTE", "Address": "PO Box 502395", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 55800, "Improved_V": 297800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.890340194, "SHAPE_Area": 1521.2632650200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362686.493100002408028, 258444.513000000268221 ], [ 362662.998099997639656, 258407.682900000363588 ], [ 362646.080399997532368, 258419.554299999028444 ], [ 362634.848099999129772, 258427.436200000345707 ], [ 362640.46509999781847, 258435.796100001782179 ], [ 362652.399800002574921, 258454.681099999696016 ], [ 362660.63289999961853, 258465.149700000882149 ], [ 362675.225900001823902, 258453.504299998283386 ], [ 362686.493100002408028, 258444.513000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103010900", "MAP": "D9-4707-T89", "PARCEL_NAM": "24B", "ACRE": ".50", "LONGITUDE": -64.89388138, "LATITUDE": 18.35465266, "OBJECTID_1": 6434, "PARCEL_NO_": "103103010900", "Tax_Legal_": "MANDAHL 24 GREAT NORTHSIDE QTR", "Name": "LAPLACE, L. & AUBAIN, J", "Address": "6581 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 676300, "Improved_V": 149000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.081278951, "SHAPE_Area": 1224.33185506 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362730.970299996435642, 258387.071899998933077 ], [ 362718.353000000119209, 258379.860500000417233 ], [ 362697.288699999451637, 258359.820000000298023 ], [ 362679.42339999973774, 258376.102200001478195 ], [ 362692.123400002717972, 258396.210499998182058 ], [ 362716.465199999511242, 258406.370600000023842 ], [ 362730.970299996435642, 258387.071899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103033900", "MAP": "D9-6188-T97", "PARCEL_NAM": "322 REM", "ACRE": ".24", "LONGITUDE": -64.89835192, "LATITUDE": 18.34830781, "OBJECTID_1": 6617, "PARCEL_NO_": "103103033900", "Tax_Legal_": "322 REM. ANNA'S RETREAT #1 NEW QTR", "Name": "MARTIN, LAVERNE V", "Address": "PO Box 10128", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 295700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.953251997, "SHAPE_Area": 857.90621766699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362258.929899998009205, 257672.426600001752377 ], [ 362226.458499997854233, 257661.1114999987185 ], [ 362222.656800001859665, 257667.010200001299381 ], [ 362218.204800002276897, 257673.918000001460314 ], [ 362216.149700000882149, 257675.739399999380112 ], [ 362217.737199999392033, 257675.580600000917912 ], [ 362219.738300003111362, 257675.718299999833107 ], [ 362222.364799998700619, 257676.247400000691414 ], [ 362222.999799996614456, 257677.676100000739098 ], [ 362223.952299997210503, 257679.5810999982059 ], [ 362223.952299997210503, 257681.644900001585484 ], [ 362223.793499998748302, 257684.026099998503923 ], [ 362222.999799996614456, 257686.724899999797344 ], [ 362221.094800002872944, 257689.264899998903275 ], [ 362219.824799999594688, 257690.53489999845624 ], [ 362216.332299999892712, 257691.328600000590086 ], [ 362247.075099997222424, 257691.769099999219179 ], [ 362249.436099998652935, 257691.80290000140667 ], [ 362254.089900001883507, 257684.140799999237061 ], [ 362255.702299997210503, 257681.486099999397993 ], [ 362258.929899998009205, 257672.426600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601070300", "MAP": "D9-6188-T97", "PARCEL_NAM": "322-C", "ACRE": ".23", "LONGITUDE": -64.89823521, "LATITUDE": 18.34806473, "OBJECTID_1": 20876, "PARCEL_NO_": "105601070300", "Tax_Legal_": "ESTATE ANNA'S RETREAT 322-C #1 NEW QTR.", "Name": "BENJAMIN, ANNA M", "Address": "PO Box 600163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 95600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.62177470699999, "SHAPE_Area": 1076.0764451 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362226.458499997854233, 257661.1114999987185 ], [ 362258.929899998009205, 257672.426600001752377 ], [ 362260.017399996519089, 257669.374099999666214 ], [ 362263.444099999964237, 257659.755699999630451 ], [ 362270.03660000115633, 257641.251200001686811 ], [ 362266.645000003278255, 257639.235800001770258 ], [ 362261.027800001204014, 257636.023499999195337 ], [ 362247.720600001513958, 257628.121599998325109 ], [ 362231.259999997913837, 257653.66160000115633 ], [ 362226.458499997854233, 257661.1114999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014100", "MAP": "D9-6709-T000", "PARCEL_NAM": "323 REM", "ACRE": null, "LONGITUDE": -64.89869793, "LATITUDE": 18.34797132, "OBJECTID_1": 19838, "PARCEL_NO_": "105502014100", "Tax_Legal_": "WINTBERG ESTATE 323REM&324B-1 GT. NORTHSIDE", "Name": "RABSATT, ECEDRO (LIFE ESTATE)", "Address": "PO Box 1212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47700, "Improved_V": 476600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.16266165900001, "SHAPE_Area": 1445.46997904 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362232.450099997222424, 257611.540899999439716 ], [ 362215.036300003528595, 257612.78830000013113 ], [ 362185.806800000369549, 257630.772399999201298 ], [ 362179.460699997842312, 257664.185400001704693 ], [ 362183.371899999678135, 257664.729899998754263 ], [ 362192.219700001180172, 257667.335400000214577 ], [ 362196.809299997985363, 257668.458700001239777 ], [ 362198.330600000917912, 257669.252399999648333 ], [ 362203.074400000274181, 257672.508699998259544 ], [ 362212.009400002658367, 257638.425500001758337 ], [ 362232.450099997222424, 257611.540899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014900", "MAP": "D9-6709-T000", "PARCEL_NAM": "324B", "ACRE": null, "LONGITUDE": -64.89892474, "LATITUDE": 18.34792723, "OBJECTID_1": 19846, "PARCEL_NO_": "105502014900", "Tax_Legal_": "WINTBERG 324B REM.324A-1&323-1 No.3 GT.NORTHSIDE QTR.", "Name": "PENN, CARRIS & ADLETA", "Address": "PO Box 302952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59200, "Improved_V": 685000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.75615987500001, "SHAPE_Area": 1231.0156288400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362159.843400001525879, 257622.466699998825788 ], [ 362163.949799999594688, 257664.745299998670816 ], [ 362166.441100001335144, 257664.380199998617172 ], [ 362176.928599998354912, 257663.832800000905991 ], [ 362179.460699997842312, 257664.185400001704693 ], [ 362185.806800000369549, 257630.772399999201298 ], [ 362215.036300003528595, 257612.78830000013113 ], [ 362187.829599998891354, 257614.737199999392033 ], [ 362172.480899997055531, 257617.989100001752377 ], [ 362159.843400001525879, 257622.466699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014900", "MAP": "D9-6708-T000", "PARCEL_NAM": "324A-1", "ACRE": null, "LONGITUDE": -64.89908643, "LATITUDE": 18.3480359, "OBJECTID_1": 19846, "PARCEL_NO_": "105502014900", "Tax_Legal_": "WINTBERG 324B REM.324A-1&323-1 No.3 GT.NORTHSIDE QTR.", "Name": "PENN, CARRIS & ADLETA", "Address": "PO Box 302952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59200, "Improved_V": 685000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.712079704199994, "SHAPE_Area": 150.80549858699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362159.843400001525879, 257622.466699998825788 ], [ 362156.288000002503395, 257648.744300000369549 ], [ 362161.41610000282526, 257665.116700001060963 ], [ 362163.949799999594688, 257664.745299998670816 ], [ 362159.843400001525879, 257622.466699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103030800", "MAP": "D9-6971-T001", "PARCEL_NAM": "8-1-B", "ACRE": ".500", "LONGITUDE": -64.89524371, "LATITUDE": 18.35072496, "OBJECTID_1": 6589, "PARCEL_NO_": "103103030800", "Tax_Legal_": "8-1-B REM. ESTATE MANDAHL GREAT NORTHSIDE QTR", "Name": "RAMSAY EVELYN, LOUVINA & KYLE D. GARNETT", "Address": "PO Box 304127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.33829006600001, "SHAPE_Area": 1948.4657944600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362550.766500003635883, 257919.798000000417233 ], [ 362550.804999999701977, 257919.909699998795986 ], [ 362539.7466000020504, 257969.869899999350309 ], [ 362554.897100001573563, 257973.434099998325109 ], [ 362570.990900002419949, 257977.365499999374151 ], [ 362574.644599996507168, 257978.232700001448393 ], [ 362588.976199999451637, 257926.894299998879433 ], [ 362585.135200001299381, 257926.185600001364946 ], [ 362577.889200001955032, 257924.859700001776218 ], [ 362550.766500003635883, 257919.798000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103040700", "MAP": "D9-6697-T99", "PARCEL_NAM": "289-A", "ACRE": ".304", "LONGITUDE": -64.89493815, "LATITUDE": 18.35041266, "OBJECTID_1": 6626, "PARCEL_NO_": "103103040700", "Tax_Legal_": "ANNAS RETREAT 289-A No.1 NEW QTR", "Name": "DOGUE, SHAWN M. & PARILLA, WANDA M", "Address": "7179 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43300, "Improved_V": 186400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.74763613499999, "SHAPE_Area": 1259.04943979 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362631.316299997270107, 257931.770799998193979 ], [ 362591.991599999368191, 257894.831399999558926 ], [ 362588.499099999666214, 257893.243900001049042 ], [ 362586.91160000115633, 257889.910100001841784 ], [ 362585.21339999884367, 257887.378299999982119 ], [ 362581.407600000500679, 257890.480200000107288 ], [ 362578.17509999871254, 257891.298099998384714 ], [ 362574.145300000905991, 257891.054099999368191 ], [ 362577.889200001955032, 257924.859700001776218 ], [ 362585.135200001299381, 257926.185600001364946 ], [ 362631.831200003623962, 257934.800400000065565 ], [ 362631.316299997270107, 257931.770799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103049900", "MAP": "D9-2031-T82", "PARCEL_NAM": "256-A", "ACRE": ".25", "LONGITUDE": -64.89579944, "LATITUDE": 18.3489026, "OBJECTID_1": 6718, "PARCEL_NO_": "103103049900", "Tax_Legal_": "ANNAS RETREAT 256-A NEW QTR.", "Name": "THOMAS, HERMAN", "Address": "9371 ESTATE THOMAS N Q SUITE 1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 204900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.54934869600001, "SHAPE_Area": 1109.7386442699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362487.816799998283386, 257730.89979999884963 ], [ 362484.241999998688698, 257757.098400000482798 ], [ 362523.871799997985363, 257762.009100001305342 ], [ 362524.462499998509884, 257759.769400000572205 ], [ 362530.31530000269413, 257735.33049999922514 ], [ 362487.816799998283386, 257730.89979999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89200975, "LATITUDE": 18.35050996, "OBJECTID_1": 6602, "PARCEL_NO_": "103103032100", "Tax_Legal_": "MANDAHL 11AK GT. NORTHSIDE", "Name": "LEE, ANTOINETTE, EFREM, SHARON & WILLIAM A., JR.", "Address": "5653 S J St", "City": "Tacoma", "State": "Washington", "Zip": 98408, "Country": "United States", "Land_Value": 46100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.19962869299999, "SHAPE_Area": 908.59415920100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362936.894000001251698, 257914.947299998253584 ], [ 362936.285800002515316, 257910.563799999654293 ], [ 362929.578100003302097, 257911.695000000298023 ], [ 362902.928400002419949, 257916.331999998539686 ], [ 362888.393200002610683, 257918.746199999004602 ], [ 362888.123499996960163, 257950.407999999821186 ], [ 362911.618000000715256, 257937.512499999254942 ], [ 362923.032300002872944, 257922.8293999992311 ], [ 362927.90429999679327, 257918.858500000089407 ], [ 362933.573700003325939, 257915.949599999934435 ], [ 362936.894000001251698, 257914.947299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104011400", "MAP": "F9-3646-T79", "PARCEL_NAM": "11H", "ACRE": null, "LONGITUDE": -64.89033217, "LATITUDE": 18.35029833, "OBJECTID_1": 6748, "PARCEL_NO_": "103104011400", "Tax_Legal_": "MANDAHL 11 GREAT NORTHSIDE QTR", "Name": "STEPHENS, A", "Address": "1590 Lincoln Pl", "City": "Brooklyn", "State": "New York", "Zip": 11233, "Country": "United States", "Land_Value": 79600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.958022110899996, "SHAPE_Area": 45.574054563200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363090.468099996447563, 257905.311000000685453 ], [ 363090.497800000011921, 257902.821800000965595 ], [ 363078.005199998617172, 257905.099300000816584 ], [ 363068.776199996471405, 257906.781899999827147 ], [ 363090.447599999606609, 257907.027100000530481 ], [ 363090.468099996447563, 257905.311000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104012500", "MAP": "D9-2965-T85", "PARCEL_NAM": "11F-3", "ACRE": null, "LONGITUDE": -64.88876659, "LATITUDE": 18.34998881, "OBJECTID_1": 6758, "PARCEL_NO_": "103104012500", "Tax_Legal_": "11F-3&11F-3-1 ESTATE MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "SIMON, GLENVILLE THEOPHILUS", "Address": "46100 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.620889482, "SHAPE_Area": 100.49013681300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363218.071699999272823, 257876.679900001734495 ], [ 363219.493299998342991, 257878.628899998962879 ], [ 363275.874600000679493, 257868.93299999833107 ], [ 363280.303300000727177, 257866.749099999666214 ], [ 363259.068499997258186, 257869.783300001174212 ], [ 363233.245200000703335, 257874.969099998474121 ], [ 363227.001000002026558, 257875.815799999982119 ], [ 363218.071699999272823, 257876.679900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104026300", "MAP": "D9-4337-T88", "PARCEL_NAM": "4A-1", "ACRE": ".50", "LONGITUDE": -64.88808136, "LATITUDE": 18.34999079, "OBJECTID_1": 6829, "PARCEL_NO_": "103104026300", "Tax_Legal_": "TARBOR & HARMONY 4A-1 EAST END QTR.", "Name": "CHRISTOPHER, ELVIS & DOREEN", "Address": "7037 Belgium Cir", "City": "Pensacola", "State": "Florida", "Zip": 32526, "Country": "United States", "Land_Value": 42500, "Improved_V": 322300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.52254340100001, "SHAPE_Area": 2382.26896962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363352.377099998295307, 257880.960400000214577 ], [ 363352.693599998950958, 257843.808400001376867 ], [ 363336.534999996423721, 257847.47580000013113 ], [ 363326.018799997866154, 257851.400499999523163 ], [ 363290.366200000047684, 257868.684099998325109 ], [ 363288.414300002157688, 257904.446400001645088 ], [ 363352.377099998295307, 257880.960400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104026500", "MAP": "D9-3784-T86", "PARCEL_NAM": "4-15-2-A", "ACRE": null, "LONGITUDE": -64.8849969, "LATITUDE": 18.35113348, "OBJECTID_1": 6831, "PARCEL_NO_": "103104026500", "Tax_Legal_": "TARBOR&HARMONY4-15 REM.&4-15-2A No.5&6 EASTEND QTR.", "Name": "HAMED, WAHEED", "Address": "PO Box 503358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 92000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.455369690799998, "SHAPE_Area": 270.63530839200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363661.750100001692772, 258007.613299999386072 ], [ 363633.678400002419949, 257989.862799998372793 ], [ 363631.191100001335144, 257997.864000000059605 ], [ 363658.318199999630451, 258015.436000000685453 ], [ 363661.750100001692772, 258007.613299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104026600", "MAP": "D9-3784-T86", "PARCEL_NAM": "4-15-3", "ACRE": ".027", "LONGITUDE": -64.88457414, "LATITUDE": 18.35144186, "OBJECTID_1": 6832, "PARCEL_NO_": "103104026600", "Tax_Legal_": "TARBOR & HARMONY 4-15-3 EAST END QTR.", "Name": "DAVID HALL and MARILYN BRATHWAITE -HALL", "Address": "PO Box 302037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.407825264, "SHAPE_Area": 112.588797024 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363658.318199999630451, 258015.436000000685453 ], [ 363657.492600001394749, 258016.815999999642372 ], [ 363727.768399998545647, 258061.726500000804663 ], [ 363728.226300001144409, 258060.719700001180172 ], [ 363658.318199999630451, 258015.436000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104034400", "MAP": "D9-3278-T85", "PARCEL_NAM": "123B-1", "ACRE": ".50", "LONGITUDE": -64.88553409, "LATITUDE": 18.34959273, "OBJECTID_1": 6879, "PARCEL_NO_": "103104034400", "Tax_Legal_": "ANNAS RETREAT 123B-1 NEW QTR.", "Name": "LAITFE, MARGARET VICTORIA & MAX ALONZO", "Address": "PO Box 305444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74300, "Improved_V": 125000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.37839598100001, "SHAPE_Area": 2031.48124433 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363622.300599999725819, 257802.772100001573563 ], [ 363586.057800002396107, 257805.821699999272823 ], [ 363572.210199996829033, 257822.173599999397993 ], [ 363567.032499998807907, 257862.027899999171495 ], [ 363583.137100003659725, 257864.692800000309944 ], [ 363601.710799999535084, 257870.223799999803305 ], [ 363591.117600001394749, 257862.224500000476837 ], [ 363597.599899999797344, 257836.559900000691414 ], [ 363608.183300003409386, 257839.999499998986721 ], [ 363622.300599999725819, 257802.772100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103104039800", "MAP": "D9-2951-T85", "PARCEL_NAM": "123D", "ACRE": null, "LONGITUDE": -64.88548355, "LATITUDE": 18.34884668, "OBJECTID_1": 6926, "PARCEL_NO_": "103104039800", "Tax_Legal_": "ANNAS RETREAT 123D No.1 NEW QTR.", "Name": "CORAM, COSETTA F", "Address": "PO Box 303674", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.785489513900004, "SHAPE_Area": 86.6893633615 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363606.811599999666214, 257744.571699999272823 ], [ 363601.121699996292591, 257741.350299999117851 ], [ 363583.208400003612041, 257761.679800000041723 ], [ 363606.811599999666214, 257744.571699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103204016500", "MAP": "D9-3162-T85", "PARCEL_NAM": "12-2", "ACRE": ".40", "LONGITUDE": -64.87418576, "LATITUDE": 18.34867908, "OBJECTID_1": 7116, "PARCEL_NO_": "103204016500", "Tax_Legal_": "FRYDENDAHL 12-2 EAST END QTR.", "Name": "AIRD, TERESA", "Address": "PO Box 305364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59600, "Improved_V": 202000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.653026055, "SHAPE_Area": 1193.0485867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364787.518299996852875, 257708.017099998891354 ], [ 364776.096799999475479, 257775.130899999290705 ], [ 364797.550899997353554, 257767.396699998527765 ], [ 364805.296800002455711, 257710.042700000107288 ], [ 364802.879699997603893, 257709.811799999326468 ], [ 364787.518299996852875, 257708.017099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103204011900", "MAP": "D9-6805-T000", "PARCEL_NAM": "21-A", "ACRE": "1.0", "LONGITUDE": -64.87172774, "LATITUDE": 18.35120068, "OBJECTID_1": 7074, "PARCEL_NO_": "103204011900", "Tax_Legal_": "FRYDENDAHL ESTATE 21-A No.4 EASTEND QTR", "Name": "WHITE, E. MARCOS & ZIMMERMAN", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 162400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.49140356499998, "SHAPE_Area": 4766.8426870599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365086.115800000727177, 258064.867300000041723 ], [ 365060.178700000047684, 257974.724399998784065 ], [ 365048.885600000619888, 257969.687399998307228 ], [ 365037.691399998962879, 257975.178399998694658 ], [ 365027.983300000429153, 257978.898600000888109 ], [ 365007.7787000015378, 257984.221700001507998 ], [ 365043.293200001120567, 258074.860399998724461 ], [ 365046.516599997878075, 258075.097899999469519 ], [ 365059.462600000202656, 258069.926500000059605 ], [ 365079.629399999976158, 258069.036100000143051 ], [ 365081.258199997246265, 258067.149599999189377 ], [ 365086.115800000727177, 258064.867300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02724491, "LATITUDE": 18.34306403, "OBJECTID_1": 7197, "PARCEL_NO_": "104801011000", "Tax_Legal_": "FORTUNA 1B WEST END QTR.", "Name": "VANTERPOOL, ALBERT & CHERYL", "Address": "BOX 4638", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.46192371000001, "SHAPE_Area": 1887.0536929299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348663.929999999701977, 256986.238000001758337 ], [ 348668.599399998784065, 256976.113200001418591 ], [ 348608.59740000218153, 256978.534000001847744 ], [ 348574.117600001394749, 256979.92509999871254 ], [ 348570.284299999475479, 256998.895599998533726 ], [ 348657.393399998545647, 256998.945999998599291 ], [ 348663.929999999701977, 256986.238000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02612891, "LATITUDE": 18.34291712, "OBJECTID_1": 7203, "PARCEL_NO_": "104801011700", "Tax_Legal_": "FORTUNA 1-I & 4DA-4 WESTEND QTR.", "Name": "CRUZ, JUAN A", "Address": "PO Box 307125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 299300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.986745988, "SHAPE_Area": 1003.45073301 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348726.986599996685982, 256954.877700001001358 ], [ 348717.554899998009205, 256991.057599999010563 ], [ 348749.977200001478195, 256987.078400000929832 ], [ 348753.556500002741814, 256972.195000000298023 ], [ 348755.241099998354912, 256963.765099998563528 ], [ 348756.344300001859665, 256958.420699998736382 ], [ 348726.986599996685982, 256954.877700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02660715, "LATITUDE": 18.34323555, "OBJECTID_1": 7204, "PARCEL_NO_": "104801011800", "Tax_Legal_": "FORTUNA 1-J WEST END QTR.", "Name": "WILLIAMS, WARREN M", "Address": "26A Norre Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.41438448400001, "SHAPE_Area": 1281.3886412700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348715.426100000739098, 256999.325100000947714 ], [ 348717.554899998009205, 256991.057599999010563 ], [ 348670.017499998211861, 256996.891800001263618 ], [ 348667.828500002622604, 257001.890799999237061 ], [ 348663.726800002157688, 257010.089899998158216 ], [ 348661.304200001060963, 257010.492300000041723 ], [ 348652.625900000333786, 257028.461399998515844 ], [ 348712.417400002479553, 257011.864100001752377 ], [ 348715.426100000739098, 256999.325100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02618628, "LATITUDE": 18.34314642, "OBJECTID_1": 7204, "PARCEL_NO_": "104801011800", "Tax_Legal_": "FORTUNA 1-J WEST END QTR.", "Name": "WILLIAMS, WARREN M", "Address": "26A Norre Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.944913466, "SHAPE_Area": 577.53331508899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348748.540600001811981, 256993.052200000733137 ], [ 348749.977200001478195, 256987.078400000929832 ], [ 348717.554899998009205, 256991.057599999010563 ], [ 348715.426100000739098, 256999.325100000947714 ], [ 348712.417400002479553, 257011.864100001752377 ], [ 348747.74379999935627, 257002.05799999833107 ], [ 348748.540600001811981, 256993.052200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.02623182000001, "LATITUDE": 18.34228767, "OBJECTID_1": 7202, "PARCEL_NO_": "104801011500", "Tax_Legal_": "FORTUNA 1G & 4DA-2 WESTEND QTR.", "Name": "WALKER, CLAUDE E. & AMBER L.", "Address": "PO Box 307444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.74986638, "SHAPE_Area": 822.90634838100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348743.829700000584126, 256883.4560999982059 ], [ 348736.350699998438358, 256881.943399999290705 ], [ 348737.370200000703335, 256884.458700001239777 ], [ 348735.748599998652935, 256885.500900000333786 ], [ 348735.725199997425079, 256888.244899999350309 ], [ 348726.830600000917912, 256891.127399999648333 ], [ 348726.045900002121925, 256888.587900001555681 ], [ 348724.440399996936321, 256887.730399999767542 ], [ 348722.01969999819994, 256887.921700000762939 ], [ 348719.581000000238419, 256890.223700001835823 ], [ 348715.509900003671646, 256894.834499999880791 ], [ 348707.286700002849102, 256913.554499998688698 ], [ 348734.629399999976158, 256922.221999999135733 ], [ 348743.829700000584126, 256883.4560999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802012300", "MAP": null, "PARCEL_NAM": "4C", "ACRE": null, "LONGITUDE": -65.02562056, "LATITUDE": 18.34328424, "OBJECTID_1": 7237, "PARCEL_NO_": "104802012300", "Tax_Legal_": "REMAINDER 4C FORTUNA No.8 WEST END QUARTER", "Name": "DCPVI LLC", "Address": "821 S Linwood Ave", "City": "CUSHING", "State": "Oklahoma", "Zip": 74023, "Country": "United States", "Land_Value": 362700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.222565301, "SHAPE_Area": 613.68022475800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348829.148500002920628, 256996.456199999898672 ], [ 348826.778099998831749, 256990.737199999392033 ], [ 348791.961000002920628, 257007.550900001078844 ], [ 348755.479099996387959, 257030.472600001841784 ], [ 348759.490900002419949, 257032.827399998903275 ], [ 348761.069399997591972, 257036.851100001484156 ], [ 348822.678199999034405, 256998.72520000115037 ], [ 348829.148500002920628, 256996.456199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802012400", "MAP": "D9-8920-T014", "PARCEL_NAM": "4C-5", "ACRE": "1.3", "LONGITUDE": -65.02406818, "LATITUDE": 18.34294693, "OBJECTID_1": 7238, "PARCEL_NO_": "104802012400", "Tax_Legal_": "4C-5 FORTUNA NO. 8 WEST END QUARTER", "Name": "DCPVI LLC", "Address": "821 S Linwood Ave", "City": "CUSHING", "State": "Oklahoma", "Zip": 74023, "Country": "United States", "Land_Value": 153600, "Improved_V": 227400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.39475990099999, "SHAPE_Area": 6225.1304050500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348900.397799998521805, 256975.021499998867512 ], [ 348912.238899998366833, 257010.021999999880791 ], [ 348921.752099998295307, 257011.568500000983477 ], [ 348991.809600003063679, 257022.907600000500679 ], [ 348991.410599999129772, 256929.614500001072884 ], [ 348952.715199999511242, 256930.606699999421835 ], [ 348929.564099997282028, 256956.4037000015378 ], [ 348917.988600000739098, 256960.372400000691414 ], [ 348915.012000001966953, 256970.625 ], [ 348900.397799998521805, 256975.021499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802024500", "MAP": "D9-7406-T006", "PARCEL_NAM": "4-7-1", "ACRE": null, "LONGITUDE": -65.01693029, "LATITUDE": 18.34615257, "OBJECTID_1": 7306, "PARCEL_NO_": "104802024500", "Tax_Legal_": "FORTUNA 4-7-1 & 4-6-2 WESTEND QTR.", "Name": "WATLEY, JULIENNE I", "Address": "PO Box 10913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.058544085500003, "SHAPE_Area": 111.53682596900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349715.584700003266335, 257334.190499998629093 ], [ 349694.713100001215935, 257336.223900001496077 ], [ 349697.117600001394749, 257337.932300001382828 ], [ 349709.957500003278255, 257345.214600000530481 ], [ 349715.584700003266335, 257334.190499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802025600", "MAP": "D9-6552-T99", "PARCEL_NAM": "4-5-4", "ACRE": ".39", "LONGITUDE": -65.01902819, "LATITUDE": 18.34654209, "OBJECTID_1": 7315, "PARCEL_NO_": "104802025600", "Tax_Legal_": "4-5-4 ESTATE FORTUNA No.8 WEST END QTR.", "Name": "MORRIS, TONY E. & LISA N.", "Address": "1032 COLLWOOD ROAD", "City": "BALTIMORE", "State": "Maryland", "Zip": 21228, "Country": "United States", "Land_Value": 60500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.709773818, "SHAPE_Area": 1244.61433141 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349498.068300001323223, 257404.010400000959635 ], [ 349495.070299997925758, 257353.369899999350309 ], [ 349469.570299997925758, 257355.70160000026226 ], [ 349472.610299997031689, 257377.469099998474121 ], [ 349475.569399997591972, 257408.735199999064207 ], [ 349498.068300001323223, 257404.010400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802025700", "MAP": "D9-6552-T99", "PARCEL_NAM": "4-5-5", "ACRE": ".36", "LONGITUDE": -65.01879093, "LATITUDE": 18.34651353, "OBJECTID_1": 7316, "PARCEL_NO_": "104802025700", "Tax_Legal_": "FORTUNA ESTATE 4-5-5 No.8 WESTEND QTR.", "Name": "SCHNEIDER, TAMMY D", "Address": "PO Box 12074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.756029969, "SHAPE_Area": 1308.719186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349495.070299997925758, 257353.369899999350309 ], [ 349498.068300001323223, 257404.010400000959635 ], [ 349525.352799996733665, 257398.280699998140335 ], [ 349520.627400003373623, 257351.032900001853704 ], [ 349495.070299997925758, 257353.369899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023200", "MAP": "D9-8019-T007", "PARCEL_NAM": "4-5REM", "ACRE": "3.13", "LONGITUDE": -65.01926773, "LATITUDE": 18.34427281, "OBJECTID_1": 7295, "PARCEL_NO_": "104802023200", "Tax_Legal_": "4-5 REM ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "FORTUNA BEACH ESTATES LLC", "Address": "PO Box 1207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 433200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 555.15674137799999, "SHAPE_Area": 13882.430687100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349350.637999996542931, 257153.197200000286102 ], [ 349437.11599999666214, 257158.234299998730421 ], [ 349497.044299997389317, 257172.124899998307228 ], [ 349546.443499997258186, 257192.830099999904633 ], [ 349548.997400000691414, 257119.082499999552965 ], [ 349539.316299997270107, 257119.636599998921156 ], [ 349537.707299999892712, 257119.201200000941753 ], [ 349532.91610000282526, 257113.673599999397993 ], [ 349525.662900000810623, 257113.19200000166893 ], [ 349524.035899996757507, 257114.867499999701977 ], [ 349520.083499997854233, 257105.546999998390675 ], [ 349512.858999997377396, 257101.688200000673532 ], [ 349507.328100003302097, 257088.344000000506639 ], [ 349505.731700003147125, 257086.431099999696016 ], [ 349497.700900003314018, 257082.565699998289347 ], [ 349493.712499998509884, 257077.46680000051856 ], [ 349490.489100001752377, 257077.229299999773502 ], [ 349486.389200001955032, 257085.217300001531839 ], [ 349485.64580000191927, 257077.822999998927116 ], [ 349483.262800000607967, 257073.581599999219179 ], [ 349471.187899999320507, 257071.160700000822544 ], [ 349467.984200000762939, 257068.601399999111891 ], [ 349461.530199997127056, 257068.970800001174212 ], [ 349449.37610000371933, 257075.837400000542402 ], [ 349440.447300001978874, 257082.730399999767542 ], [ 349434.790600001811981, 257084.161699999123812 ], [ 349432.346500001847744, 257087.096999999135733 ], [ 349423.433899998664856, 257092.090300001204014 ], [ 349419.391500003635883, 257093.323800001293421 ], [ 349408.095899999141693, 257094.075699999928474 ], [ 349391.177799999713898, 257092.248500000685453 ], [ 349387.138999998569489, 257093.059799998998642 ], [ 349382.27419999986887, 257096.1864 ], [ 349378.994999997317791, 257102.492400001734495 ], [ 349370.863499999046326, 257110.447399999946356 ], [ 349350.637999996542931, 257153.197200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802026200", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-4-A", "ACRE": null, "LONGITUDE": -65.01748408, "LATITUDE": 18.34706599, "OBJECTID_1": 7320, "PARCEL_NO_": "104802026200", "Tax_Legal_": "4-2-21 & 4-2-4A FORTUNA NO.8 WEST END QTR", "Name": "WERNICKE, WERNER & TANYA MULDROW", "Address": "PO Box 302013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.582424631800002, "SHAPE_Area": 134.84906972300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349664.695299997925758, 257440.339400000870228 ], [ 349639.051299996674061, 257433.504599999636412 ], [ 349638.202200002968311, 257443.795299999415874 ], [ 349664.695299997925758, 257440.339400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104901019900", "MAP": "D9-7342-T004", "PARCEL_NAM": "4P-4", "ACRE": null, "LONGITUDE": -65.01325614, "LATITUDE": 18.34435511, "OBJECTID_1": 7378, "PARCEL_NO_": "104901019900", "Tax_Legal_": "4P-4 REM FORTUNA #8 WEST END QTR", "Name": "CARTY, SERONAI", "Address": "PO BOX 303265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.94460673899999, "SHAPE_Area": 1641.7236740799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350065.7179000005126, 257138.088199999183416 ], [ 350118.639600001275539, 257173.140700001269579 ], [ 350117.107900001108646, 257163.628899998962879 ], [ 350117.937600001692772, 257160.891499999910593 ], [ 350118.756499998271465, 257159.420499999076128 ], [ 350121.207800000905991, 257155.640900000929832 ], [ 350130.95719999819994, 257147.065900001674891 ], [ 350133.372100003063679, 257144.579199999570847 ], [ 350065.119699999690056, 257116.010000001639128 ], [ 350064.276100002229214, 257118.02250000089407 ], [ 350062.593299999833107, 257126.241399999707937 ], [ 350063.376199997961521, 257128.991999998688698 ], [ 350069.023999996483326, 257128.61600000038743 ], [ 350068.998800002038479, 257131.571100000292063 ], [ 350065.7179000005126, 257138.088199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105101010400", "MAP": "D9-4903-T90", "PARCEL_NAM": "5", "ACRE": "2.50", "LONGITUDE": -64.97741159, "LATITUDE": 18.34554812, "OBJECTID_1": 7382, "PARCEL_NO_": "105101010400", "Tax_Legal_": "JJOHN BREWERS BAY 4&5 SOUTHSIDE QTR.", "Name": "THE UNIVERSITY OF THE V. I.", "Address": "#2 JOHN BREWERS BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 317200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 511.33767835100002, "SHAPE_Area": 13289.435346300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353961.359700001776218, 257328.263900000602007 ], [ 353917.112899996340275, 257211.828699998557568 ], [ 353917.069700002670288, 257216.894600000232458 ], [ 353916.222099997103214, 257221.742800001055002 ], [ 353915.394199997186661, 257224.269200000911951 ], [ 353912.113200001418591, 257230.786200001835823 ], [ 353911.285300001502037, 257233.312600001692772 ], [ 353900.711499996483326, 257243.991799999028444 ], [ 353885.298100002110004, 257254.842500001192093 ], [ 353863.444899998605251, 257264.374000001698732 ], [ 353851.314300000667572, 257268.496599998325109 ], [ 353838.393500000238419, 257270.712799999862909 ], [ 353793.380999997258186, 257276.000999998301268 ], [ 353856.061499997973442, 257377.249000001698732 ], [ 353961.359700001776218, 257328.263900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105102020100", "MAP": null, "PARCEL_NAM": "35", "ACRE": null, "LONGITUDE": -64.9667282, "LATITUDE": 18.34639768, "OBJECTID_1": 7386, "PARCEL_NO_": "105102020100", "Tax_Legal_": "LINBERG BAY 35 SOUTHSIDE QTR", "Name": "U. V. I. , GOTTLIEB, KAIJA & KAJ.", "Address": "2 Brewers Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 232500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.63116649699998, "SHAPE_Area": 813.16268423600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355044.278099998831749, 257400.928700000047684 ], [ 355038.421599999070168, 257402.203299999237061 ], [ 355034.188199996948242, 257404.954900000244379 ], [ 355031.859899997711182, 257407.494899999350309 ], [ 355029.319899998605251, 257409.823300000280142 ], [ 355026.144900001585484, 257412.9983000010252 ], [ 355024.028200000524521, 257416.384899999946356 ], [ 355022.969899997115135, 257418.078299999237061 ], [ 355021.91160000115633, 257420.829999998211861 ], [ 355021.064900003373623, 257423.158300001174212 ], [ 355020.218199998140335, 257424.640000000596046 ], [ 355019.583200000226498, 257426.968299999833107 ], [ 355019.15990000218153, 257428.449999999254942 ], [ 355017.889899998903275, 257430.566599998623133 ], [ 355016.40820000320673, 257432.260000001639128 ], [ 355013.021499998867512, 257434.376600001007318 ], [ 355008.576499998569489, 257435.858300000429153 ], [ 355003.919900000095367, 257437.128299999982119 ], [ 354998.204800002276897, 257437.975000001490116 ], [ 354993.548199996352196, 257438.609999999403954 ], [ 354990.584799997508526, 257438.821699999272823 ], [ 354989.526500001549721, 257438.186700001358986 ], [ 354989.314800001680851, 257436.281700000166893 ], [ 354989.314800001680851, 257434.800000000745058 ], [ 354989.314800001680851, 257433.741599999368191 ], [ 354989.526500001549721, 257431.625 ], [ 354989.526500001549721, 257430.989999998360872 ], [ 354989.526500001549721, 257429.719999998807907 ], [ 354990.161499999463558, 257427.603300001472235 ], [ 354991.008199997246265, 257425.910000000149012 ], [ 354992.278200000524521, 257422.946600001305342 ], [ 354993.336499996483326, 257420.618299998342991 ], [ 354994.818199999630451, 257417.866599999368191 ], [ 354996.723200000822544, 257414.903299998492002 ], [ 354998.628200002014637, 257411.304900001734495 ], [ 355001.168200001120567, 257407.071600001305342 ], [ 355003.28490000218153, 257403.896600000560284 ], [ 355004.766500003635883, 257401.568300001323223 ], [ 355007.729900002479553, 257397.334899999201298 ], [ 355010.058200001716614, 257393.736600000411272 ], [ 355011.328199997544289, 257391.619899999350309 ], [ 355012.174900002777576, 257389.714899998158216 ], [ 355013.444899998605251, 257387.174899999052286 ], [ 355014.926500000059605, 257384.211500000208616 ], [ 355016.831500001251698, 257379.766499999910593 ], [ 355018.94820000231266, 257376.591499999165535 ], [ 355020.429899998009205, 257374.051500000059605 ], [ 355022.123199999332428, 257372.146499998867512 ], [ 355024.239900000393391, 257369.394900001585484 ], [ 355027.414899997413158, 257366.008200000971556 ], [ 355030.589900001883507, 257363.256499998271465 ], [ 355033.129900000989437, 257361.139800000935793 ], [ 355036.093299999833107, 257358.388199999928474 ], [ 355038.633299998939037, 257356.69480000063777 ], [ 355042.108199998736382, 257354.177000001072884 ], [ 355041.795100003480911, 257349.456900000572205 ], [ 355036.939900003373623, 257352.673200000077486 ], [ 355033.976599998772144, 257354.578200001269579 ], [ 355031.648199997842312, 257356.483199998736382 ], [ 355029.108199998736382, 257358.811500001698732 ], [ 355026.356600001454353, 257361.77479999884963 ], [ 355023.393200002610683, 257364.949799999594688 ], [ 355020.853200003504753, 257367.489799998700619 ], [ 355019.15990000218153, 257370.029899999499321 ], [ 355017.043200001120567, 257373.204900000244379 ], [ 355013.656499996781349, 257378.496500000357628 ], [ 355011.328199997544289, 257383.364900000393391 ], [ 355007.941500000655651, 257389.079900000244379 ], [ 355004.343199998140335, 257393.736600000411272 ], [ 355002.014899998903275, 257397.334899999201298 ], [ 354999.051500000059605, 257401.991599999368191 ], [ 354996.299800001084805, 257406.224899999797344 ], [ 354993.336499996483326, 257409.823300000280142 ], [ 354989.526500001549721, 257418.078299999237061 ], [ 354986.563199996948242, 257424.428300000727177 ], [ 354984.44650000333786, 257427.391600001603365 ], [ 354982.753100000321865, 257432.471599999815226 ], [ 354982.118100002408028, 257435.434999998658895 ], [ 354982.118100002408028, 257437.551699999719858 ], [ 354983.388099998235703, 257439.668299999088049 ], [ 354985.293099999427795, 257440.726700000464916 ], [ 354987.833200000226498, 257441.785000000149012 ], [ 354992.066500000655651, 257442.420000001788139 ], [ 354993.971500001847744, 257442.631700001657009 ], [ 354996.299800001084805, 257442.208299998193979 ], [ 355003.07320000231266, 257440.515000000596046 ], [ 355007.094899997115135, 257439.668299999088049 ], [ 355010.904899999499321, 257438.398299999535084 ], [ 355013.444899998605251, 257437.763300001621246 ], [ 355015.773199997842312, 257436.916700001806021 ], [ 355017.889899998903275, 257436.493299998342991 ], [ 355019.15990000218153, 257435.434999998658895 ], [ 355020.218199998140335, 257434.376600001007318 ], [ 355021.276600003242493, 257433.318300001323223 ], [ 355022.546599999070168, 257431.20160000026226 ], [ 355023.393200002610683, 257429.508299998939037 ], [ 355024.239900000393391, 257428.449999999254942 ], [ 355025.086599998176098, 257426.333299998193979 ], [ 355025.721600003540516, 257424.004999998956919 ], [ 355026.356600001454353, 257421.888300001621246 ], [ 355027.626599997282028, 257419.559999998658895 ], [ 355028.896600000560284, 257417.654899999499321 ], [ 355031.013199999928474, 257415.32660000026226 ], [ 355032.706600002944469, 257413.209899999201298 ], [ 355036.093299999833107, 257411.093299999833107 ], [ 355039.691600002348423, 257409.188299998641014 ], [ 355044.362499997019768, 257407.450399998575449 ], [ 355044.278099998831749, 257400.928700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105102020100", "MAP": null, "PARCEL_NAM": "35", "ACRE": null, "LONGITUDE": -64.96683058000001, "LATITUDE": 18.34661226, "OBJECTID_1": 7386, "PARCEL_NO_": "105102020100", "Tax_Legal_": "LINBERG BAY 35 SOUTHSIDE QTR", "Name": "U. V. I. , GOTTLIEB, KAIJA & KAJ.", "Address": "2 Brewers Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 232500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.162067934199996, "SHAPE_Area": 309.56580553399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355019.15990000218153, 257428.449999999254942 ], [ 354992.278200000524521, 257422.946600001305342 ], [ 354991.008199997246265, 257425.910000000149012 ], [ 354990.161499999463558, 257427.603300001472235 ], [ 354989.526500001549721, 257429.719999998807907 ], [ 354989.526500001549721, 257430.989999998360872 ], [ 354989.526500001549721, 257431.625 ], [ 354989.314800001680851, 257433.741599999368191 ], [ 354989.314800001680851, 257434.800000000745058 ], [ 354989.314800001680851, 257436.281700000166893 ], [ 354989.526500001549721, 257438.186700001358986 ], [ 354990.584799997508526, 257438.821699999272823 ], [ 354993.548199996352196, 257438.609999999403954 ], [ 354998.204800002276897, 257437.975000001490116 ], [ 355003.919900000095367, 257437.128299999982119 ], [ 355008.576499998569489, 257435.858300000429153 ], [ 355013.021499998867512, 257434.376600001007318 ], [ 355016.40820000320673, 257432.260000001639128 ], [ 355017.889899998903275, 257430.566599998623133 ], [ 355019.15990000218153, 257428.449999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105102020300", "MAP": "D9-4814-T89", "PARCEL_NAM": "35", "ACRE": ".18", "LONGITUDE": -64.96671308000001, "LATITUDE": 18.34639831, "OBJECTID_1": 7389, "PARCEL_NO_": "105102020300", "Tax_Legal_": "LINBERG BAY 35C SOUTHSIDE QTR", "Name": "JOHNS (LIFE ESTATE), MARY G", "Address": "22 Fellowship Dr", "City": "Palm Coast", "State": "Florida", "Zip": 32137, "Country": "United States", "Land_Value": 35500, "Improved_V": 40100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.54555697000001, "SHAPE_Area": 987.52410583400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354992.278200000524521, 257422.946600001305342 ], [ 355019.15990000218153, 257428.449999999254942 ], [ 355019.583200000226498, 257426.968299999833107 ], [ 355020.218199998140335, 257424.640000000596046 ], [ 355021.064900003373623, 257423.158300001174212 ], [ 355021.91160000115633, 257420.829999998211861 ], [ 355022.969899997115135, 257418.078299999237061 ], [ 355024.028200000524521, 257416.384899999946356 ], [ 355026.144900001585484, 257412.9983000010252 ], [ 355029.319899998605251, 257409.823300000280142 ], [ 355031.859899997711182, 257407.494899999350309 ], [ 355018.94820000231266, 257376.591499999165535 ], [ 355016.831500001251698, 257379.766499999910593 ], [ 355014.926500000059605, 257384.211500000208616 ], [ 355013.444899998605251, 257387.174899999052286 ], [ 355012.174900002777576, 257389.714899998158216 ], [ 355011.328199997544289, 257391.619899999350309 ], [ 355010.058200001716614, 257393.736600000411272 ], [ 355007.729900002479553, 257397.334899999201298 ], [ 355004.766500003635883, 257401.568300001323223 ], [ 355003.28490000218153, 257403.896600000560284 ], [ 355001.168200001120567, 257407.071600001305342 ], [ 354998.628200002014637, 257411.304900001734495 ], [ 354996.723200000822544, 257414.903299998492002 ], [ 354994.818199999630451, 257417.866599999368191 ], [ 354993.336499996483326, 257420.618299998342991 ], [ 354992.278200000524521, 257422.946600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105102020400", "MAP": "F9-1107-T63", "PARCEL_NAM": "35D", "ACRE": ".23", "LONGITUDE": -64.96652483, "LATITUDE": 18.34615896, "OBJECTID_1": 7390, "PARCEL_NO_": "105102020400", "Tax_Legal_": "LINDBERG BAY 35D SOUTHSIDE QTR", "Name": "GOTTLIEB, MARK A", "Address": "3001 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29100, "Improved_V": 115900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.338382134, "SHAPE_Area": 844.46825906100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355018.94820000231266, 257376.591499999165535 ], [ 355031.859899997711182, 257407.494899999350309 ], [ 355034.188199996948242, 257404.954900000244379 ], [ 355038.421599999070168, 257402.203299999237061 ], [ 355044.278099998831749, 257400.928700000047684 ], [ 355043.876299999654293, 257369.871700000017881 ], [ 355042.364399999380112, 257358.038100000470877 ], [ 355042.108199998736382, 257354.177000001072884 ], [ 355038.633299998939037, 257356.69480000063777 ], [ 355036.093299999833107, 257358.388199999928474 ], [ 355033.129900000989437, 257361.139800000935793 ], [ 355030.589900001883507, 257363.256499998271465 ], [ 355027.414899997413158, 257366.008200000971556 ], [ 355024.239900000393391, 257369.394900001585484 ], [ 355022.123199999332428, 257372.146499998867512 ], [ 355020.429899998009205, 257374.051500000059605 ], [ 355018.94820000231266, 257376.591499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105102022500", "MAP": "F9-999-T62", "PARCEL_NAM": "35BA", "ACRE": ".42", "LONGITUDE": -64.96669837, "LATITUDE": 18.34592558, "OBJECTID_1": 7418, "PARCEL_NO_": "105102022500", "Tax_Legal_": "LINDBERG BAY 35BA SOUTHSIDE QTR.", "Name": "SMITH, HUGH & HARRIET C", "Address": "PO Box 504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 78100, "Improved_V": 147800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.42535532799999, "SHAPE_Area": 1447.4897165100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354997.2449000030756, 257336.999200001358986 ], [ 355003.132500000298023, 257395.607700001448393 ], [ 355004.343199998140335, 257393.736600000411272 ], [ 355007.941500000655651, 257389.079900000244379 ], [ 355011.328199997544289, 257383.364900000393391 ], [ 355013.656499996781349, 257378.496500000357628 ], [ 355017.043200001120567, 257373.204900000244379 ], [ 355019.15990000218153, 257370.029899999499321 ], [ 355020.853200003504753, 257367.489799998700619 ], [ 355023.393200002610683, 257364.949799999594688 ], [ 355026.356600001454353, 257361.77479999884963 ], [ 355029.108199998736382, 257358.811500001698732 ], [ 355031.648199997842312, 257356.483199998736382 ], [ 355033.976599998772144, 257354.578200001269579 ], [ 355036.939900003373623, 257352.673200000077486 ], [ 355041.795100003480911, 257349.456900000572205 ], [ 355041.649800002574921, 257347.266499999910593 ], [ 355041.757700003683567, 257334.601799998432398 ], [ 354997.2449000030756, 257336.999200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105102020200", "MAP": "G9-513-T59", "PARCEL_NAM": "35B", "ACRE": null, "LONGITUDE": -64.96700141, "LATITUDE": 18.34662407, "OBJECTID_1": 7387, "PARCEL_NO_": "105102020200", "Tax_Legal_": "LINBERG BAY 35B SOUTHSIDE", "Name": "PENN, E & CAMPBELL, H. C/O", "Address": "PO Box 504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 180000, "Improved_V": 3500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 467.03121665999998, "SHAPE_Area": 6443.2542483500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355003.07320000231266, 257440.515000000596046 ], [ 354996.299800001084805, 257442.208299998193979 ], [ 354993.971500001847744, 257442.631700001657009 ], [ 354992.066500000655651, 257442.420000001788139 ], [ 354987.833200000226498, 257441.785000000149012 ], [ 354985.293099999427795, 257440.726700000464916 ], [ 354983.388099998235703, 257439.668299999088049 ], [ 354982.118100002408028, 257437.551699999719858 ], [ 354982.118100002408028, 257435.434999998658895 ], [ 354982.753100000321865, 257432.471599999815226 ], [ 354984.44650000333786, 257427.391600001603365 ], [ 354986.563199996948242, 257424.428300000727177 ], [ 354989.526500001549721, 257418.078299999237061 ], [ 354993.336499996483326, 257409.823300000280142 ], [ 354996.299800001084805, 257406.224899999797344 ], [ 354999.051500000059605, 257401.991599999368191 ], [ 355002.014899998903275, 257397.334899999201298 ], [ 355003.132500000298023, 257395.607700001448393 ], [ 354997.2449000030756, 257336.999200001358986 ], [ 354963.504000000655651, 257338.816399998962879 ], [ 354964.462099999189377, 257415.662300001829863 ], [ 354966.97070000320673, 257522.072000000625849 ], [ 355009.317400000989437, 257518.323800001293421 ], [ 355003.07320000231266, 257440.515000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201013000", "MAP": "D9-2240-T82", "PARCEL_NAM": "34D", "ACRE": null, "LONGITUDE": -64.96625689, "LATITUDE": 18.34610445, "OBJECTID_1": 7463, "PARCEL_NO_": "105201013000", "Tax_Legal_": "LINDBERG BAY 34-D SOUTHSIDE QTR.", "Name": "JANICE A. & WILBORNE E. GOTTLIEB", "Address": "3001 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.164600221, "SHAPE_Area": 1967.67515643 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355079.696699999272823, 257405.478799998760223 ], [ 355079.944600000977516, 257395.498199999332428 ], [ 355079.39360000193119, 257365.518399998545647 ], [ 355078.794100001454353, 257341.237700000405312 ], [ 355056.957099996507168, 257348.86939999833703 ], [ 355042.364399999380112, 257358.038100000470877 ], [ 355043.876299999654293, 257369.871700000017881 ], [ 355044.362499997019768, 257407.450399998575449 ], [ 355056.54559999704361, 257400.054800000041723 ], [ 355079.696699999272823, 257405.478799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010400", "MAP": null, "PARCEL_NAM": "34", "ACRE": null, "LONGITUDE": -64.96594091, "LATITUDE": 18.3465158, "OBJECTID_1": 7437, "PARCEL_NO_": "105201010400", "Tax_Legal_": "LINDBERG BAY 34 SOUTHSIDE QTR", "Name": "THOMAS, RUTH & GOTTLIEB, KAIJA", "Address": "PO Box 342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040342, "Country": "United States", "Land_Value": 222200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.41738359199999, "SHAPE_Area": 1038.3248679400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355112.482199996709824, 257435.385999999940395 ], [ 355111.975900001823902, 257405.081900000572205 ], [ 355079.696699999272823, 257405.478799998760223 ], [ 355079.564400002360344, 257423.867400001734495 ], [ 355078.902900002896786, 257429.423599999397993 ], [ 355078.241499997675419, 257433.921599999070168 ], [ 355077.579999998211861, 257438.154899999499321 ], [ 355112.482199996709824, 257435.385999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201018700", "MAP": "D9-4735-T89", "PARCEL_NAM": "34E", "ACRE": null, "LONGITUDE": -64.96595094, "LATITUDE": 18.34678644, "OBJECTID_1": 7473, "PARCEL_NO_": "105201018700", "Tax_Legal_": "LINDBERG BAY 34E S S QTR.", "Name": "GOTTLIEB, LEROY", "Address": "PO Box 304687", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.32694402200001, "SHAPE_Area": 1028.5695949799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355112.482199996709824, 257435.385999999940395 ], [ 355077.579999998211861, 257438.154899999499321 ], [ 355076.653999999165535, 257443.578899998217821 ], [ 355075.727899998426437, 257449.664299998432398 ], [ 355075.727899998426437, 257453.633099999278784 ], [ 355076.257100000977516, 257456.808100000023842 ], [ 355077.447700001299381, 257461.041400000452995 ], [ 355079.167499996721745, 257465.142499998211861 ], [ 355082.474799998104572, 257469.772700000554323 ], [ 355112.901900000870228, 257460.512200001627207 ], [ 355112.482199996709824, 257435.385999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010100", "MAP": "F9-413-T59", "PARCEL_NAM": "35A", "ACRE": null, "LONGITUDE": -64.96648917, "LATITUDE": 18.34654828, "OBJECTID_1": 7434, "PARCEL_NO_": "105201010100", "Tax_Legal_": "LINDBERG BAY 34A&35A SOUTHSIDE", "Name": "THOMAS, RUTH", "Address": "PO Box 342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40700, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.058163181699996, "SHAPE_Area": 432.93882724399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355025.086599998176098, 257426.333299998193979 ], [ 355045.555600002408028, 257443.987399999052286 ], [ 355044.362499997019768, 257407.450399998575449 ], [ 355039.691600002348423, 257409.188299998641014 ], [ 355036.093299999833107, 257411.093299999833107 ], [ 355032.706600002944469, 257413.209899999201298 ], [ 355031.013199999928474, 257415.32660000026226 ], [ 355028.896600000560284, 257417.654899999499321 ], [ 355027.626599997282028, 257419.559999998658895 ], [ 355026.356600001454353, 257421.888300001621246 ], [ 355025.721600003540516, 257424.004999998956919 ], [ 355025.086599998176098, 257426.333299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201010100", "MAP": "F9-413-T59", "PARCEL_NAM": "34A", "ACRE": null, "LONGITUDE": -64.966311, "LATITUDE": 18.34655495, "OBJECTID_1": 7434, "PARCEL_NO_": "105201010100", "Tax_Legal_": "LINDBERG BAY 34A&35A SOUTHSIDE", "Name": "THOMAS, RUTH", "Address": "PO Box 342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40700, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.657530533, "SHAPE_Area": 874.19045870900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355051.481100000441074, 257403.129200000315905 ], [ 355044.362499997019768, 257407.450399998575449 ], [ 355045.555600002408028, 257443.987399999052286 ], [ 355052.444499999284744, 257449.928899999707937 ], [ 355076.786200001835823, 257421.618400000035763 ], [ 355051.481100000441074, 257403.129200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105102021700", "MAP": "G9-1389-T69", "PARCEL_NAM": "63", "ACRE": null, "LONGITUDE": -64.96646862, "LATITUDE": 18.34354648, "OBJECTID_1": 7405, "PARCEL_NO_": "105102021700", "Tax_Legal_": "LINDBERG BAY 63 SOUTHSIDE QUARTER", "Name": "NORTH CARIBBEAN CONF. OF SEVEN", "Address": "P.O. BOX 580", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 225200, "Improved_V": 276800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.65822925999998, "SHAPE_Area": 6485.2823602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355011.090400002896786, 257053.5962999984622 ], [ 354988.57490000128746, 257108.785799998790026 ], [ 354985.467200003564358, 257127.058299999684095 ], [ 355091.947200000286102, 257122.441300000995398 ], [ 355090.071299999952316, 257058.675700001418591 ], [ 355062.669299997389317, 257056.973799999803305 ], [ 355038.492499999701977, 257055.298300001770258 ], [ 355011.090400002896786, 257053.5962999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102022600", "MAP": "D9-6857-T000", "PARCEL_NAM": "61A-1", "ACRE": ".19", "LONGITUDE": -64.96702678, "LATITUDE": 18.34469194, "OBJECTID_1": 7419, "PARCEL_NO_": "105102022600", "Tax_Legal_": "LINDBERG BAY ESTATE 61A-1 No.4A SOUTHSIDE QUARTER", "Name": "PETERS, NEWTON & IRENE", "Address": "PO Box 304079", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.557895854999998, "SHAPE_Area": 529.07553602899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354995.989399999380112, 257208.628499999642372 ], [ 354967.803900003433228, 257209.917300000786781 ], [ 354967.810000002384186, 257211.984499998390675 ], [ 354967.703900001943111, 257224.438099998980761 ], [ 354967.816100001335144, 257228.027399998158216 ], [ 354997.846199996769428, 257226.704500000923872 ], [ 354997.548199996352196, 257223.415800001472235 ], [ 354995.989399999380112, 257208.628499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102022700", "MAP": "D9-6857-T000", "PARCEL_NAM": "61A-2", "ACRE": ".18", "LONGITUDE": -64.96703818, "LATITUDE": 18.34452955, "OBJECTID_1": 7420, "PARCEL_NO_": "105102022700", "Tax_Legal_": "61A-2 LINDBERG BAY No.4 SOUTHSIDE QUARTER", "Name": "BELL, DARILYN I", "Address": "PO Box 23", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.440874987000001, "SHAPE_Area": 488.95341440200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354995.214100003242493, 257191.571199998259544 ], [ 354967.749200001358986, 257191.348799999803305 ], [ 354967.75959999859333, 257194.870400000363588 ], [ 354967.803900003433228, 257209.917300000786781 ], [ 354995.989399999380112, 257208.628499999642372 ], [ 354994.563900001347065, 257195.104800000786781 ], [ 354995.214100003242493, 257191.571199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102022800", "MAP": "D9-6857-T000", "PARCEL_NAM": "61A-3", "ACRE": ".149", "LONGITUDE": -64.96702754, "LATITUDE": 18.34435048, "OBJECTID_1": 7421, "PARCEL_NO_": "105102022800", "Tax_Legal_": "61A-3 ESTATE LINDBERG #4A SOUTHSIDE QTR", "Name": "DEWINDT, FLORICIA R", "Address": "PO Box 9354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.354503581, "SHAPE_Area": 623.83842254299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354999.062600001692772, 257170.198800001293421 ], [ 354969.524899996817112, 257170.097100000828505 ], [ 354968.957900002598763, 257171.886100001633167 ], [ 354967.699400000274181, 257174.4364 ], [ 354967.749200001358986, 257191.348799999803305 ], [ 354995.214100003242493, 257191.571199998259544 ], [ 354998.791500002145767, 257172.130199998617172 ], [ 354999.062600001692772, 257170.198800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102023200", "MAP": "D9-6756-T000", "PARCEL_NAM": "61BD-A", "ACRE": ".135", "LONGITUDE": -64.96675405000001, "LATITUDE": 18.34448967, "OBJECTID_1": 7422, "PARCEL_NO_": "105102023200", "Tax_Legal_": "LINDBERG BAY 61Bd-A No.4 SOUTHSIDE QTR.", "Name": "RICHARDSON, BERNADINE &", "Address": "8240 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.857026475, "SHAPE_Area": 619.21840953399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355030.142399996519089, 257191.652100000530481 ], [ 354996.679499998688698, 257183.607400000095367 ], [ 354994.563900001347065, 257195.104800000786781 ], [ 354995.674099996685982, 257205.636900000274181 ], [ 355030.768899999558926, 257204.689300000667572 ], [ 355030.142399996519089, 257191.652100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105104010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97000137000001, "LATITUDE": 18.33349536, "OBJECTID_1": 7431, "PARCEL_NO_": "105104010500", "Tax_Legal_": "70C REM.,70D&70E LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1067500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 768.45479065300003, "SHAPE_Area": 2471.11990999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354665.425200000405312, 256120.221400000154972 ], [ 354673.107900001108646, 256120.430300001055002 ], [ 354673.25450000166893, 256103.232299998402596 ], [ 354674.123700000345707, 256095.851199999451637 ], [ 354676.648699998855591, 256083.417300000786781 ], [ 354680.773800000548363, 256072.474199999123812 ], [ 354674.317900002002716, 256073.054699998348951 ], [ 354671.027900002896786, 256080.627099998295307 ], [ 354669.343400001525879, 256089.057000000029802 ], [ 354667.638999998569489, 256099.808899998664856 ], [ 354666.901100002229214, 256091.781300000846386 ], [ 354663.020599998533726, 256074.017700001597404 ], [ 354659.998499996960163, 256050.139299999922514 ], [ 354653.758400000631809, 256025.390299998223782 ], [ 354651.618199996650219, 255992.653299998492002 ], [ 354653.261399999260902, 255989.078200001269579 ], [ 354657.321699999272823, 255985.733899999409914 ], [ 354660.554099999368191, 255984.916000001132488 ], [ 354675.080300003290176, 255983.557199999690056 ], [ 354678.282200001180172, 255986.327599998563528 ], [ 354690.382299996912479, 255985.793400000780821 ], [ 354697.817100003361702, 255964.956000000238419 ], [ 354699.489100001752377, 255958.003600001335144 ], [ 354699.552000001072884, 255950.615800000727177 ], [ 354705.383199997246265, 255928.709800001233816 ], [ 354707.134300000965595, 255912.469900000840425 ], [ 354706.507799997925758, 255891.355500001460314 ], [ 354703.394100002944469, 255878.242199998348951 ], [ 354689.970899999141693, 255844.779500000178814 ], [ 354682.793200001120567, 255835.432700000703335 ], [ 354677.192100003361702, 255830.320599999278784 ], [ 354662.748700000345707, 255821.969700001180172 ], [ 354661.855999998748302, 255832.094900000840425 ], [ 354670.703900001943111, 255834.700399998575449 ], [ 354675.520199999213219, 255837.272999998182058 ], [ 354681.121200002729893, 255842.385099999606609 ], [ 354684.306900002062321, 255847.05519999936223 ], [ 354695.37049999833107, 255873.532499998807907 ], [ 354698.512999996542931, 255883.268500000238419 ], [ 354701.608800001442432, 255898.492499999701977 ], [ 354700.608300000429153, 255921.282499998807907 ], [ 354695.596000000834465, 255941.717500001192093 ], [ 354687.347699999809265, 255963.392599999904633 ], [ 354685.718900002539158, 255965.279199998825788 ], [ 354676.773900002241135, 255974.071899998933077 ], [ 354669.490099996328354, 255977.178700000047684 ], [ 354655.757600001990795, 255980.021600000560284 ], [ 354650.89639999717474, 255982.725999999791384 ], [ 354646.00450000166893, 255989.018800001591444 ], [ 354645.957800000905991, 255994.506799999624491 ], [ 354649.768200002610683, 256020.502500001341105 ], [ 354650.439599998295307, 256036.339999999850988 ], [ 354654.356100000441074, 256049.882100000977516 ], [ 354657.383599996566772, 256073.127099998295307 ], [ 354664.325699999928474, 256110.125300001353025 ], [ 354665.425200000405312, 256120.221400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010500", "MAP": "D9-676-T67", "PARCEL_NAM": "70CA", "ACRE": null, "LONGITUDE": -64.97006238, "LATITUDE": 18.33292293, "OBJECTID_1": 7431, "PARCEL_NO_": "105104010500", "Tax_Legal_": "70C REM.,70D&70E LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1067500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1339.6262165400001, "SHAPE_Area": 15086.7666395 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354610.298299998044968, 255826.240899998694658 ], [ 354634.086499996483326, 255840.141499999910593 ], [ 354649.564699999988079, 255850.460200000554323 ], [ 354657.898999996483326, 255857.207100000232458 ], [ 354665.836599998176098, 255862.763399999588728 ], [ 354671.789700001478195, 255868.319600000977516 ], [ 354674.964699998497963, 255873.082100000232458 ], [ 354677.742799997329712, 255878.241500001400709 ], [ 354679.330300003290176, 255884.988400001078844 ], [ 354679.330300003290176, 255892.529100000858307 ], [ 354678.139700002968311, 255900.466600000858307 ], [ 354677.742799997329712, 255905.625999998301268 ], [ 354674.567800000309944, 255913.563499998301268 ], [ 354674.170900002121925, 255919.119699999690056 ], [ 354674.964699998497963, 255925.469799999147654 ], [ 354675.361599996685982, 255930.629099998623133 ], [ 354675.758500002324581, 255935.391600001603365 ], [ 354672.98030000180006, 255939.75730000063777 ], [ 354670.59910000115633, 255942.1385000012815 ], [ 354668.217799998819828, 255944.916700001806021 ], [ 354666.630300000309944, 255946.901000000536442 ], [ 354661.867799997329712, 255950.076099999248981 ], [ 354657.898999996483326, 255952.060400001704693 ], [ 354654.723999999463558, 255956.822900000959635 ], [ 354651.54900000244379, 255961.1886 ], [ 354646.389600001275539, 255964.760499998927116 ], [ 354640.436499997973442, 255966.744800001382828 ], [ 354636.864600002765656, 255970.316700000315905 ], [ 354632.498999997973442, 255974.682399999350309 ], [ 354630.911499999463558, 255979.444899998605251 ], [ 354629.720899999141693, 255983.413600001484156 ], [ 354628.133400000631809, 255990.557399999350309 ], [ 354626.942699998617172, 255998.891800001263618 ], [ 354626.942699998617172, 256008.019900001585484 ], [ 354626.942699998617172, 256016.751200001686811 ], [ 354626.942699998617172, 256023.894999999552965 ], [ 354628.927100002765656, 256038.976199999451637 ], [ 354630.117700003087521, 256046.120000001043081 ], [ 354631.705200001597404, 256054.057500001043081 ], [ 354632.498999997973442, 256060.804400000721216 ], [ 354634.086499996483326, 256067.154399998486042 ], [ 354634.880199998617172, 256073.107500001788139 ], [ 354635.277099996805191, 256075.88569999858737 ], [ 354636.467699997127056, 256096.126299999654293 ], [ 354638.848999999463558, 256110.8108000010252 ], [ 354640.436499997973442, 256119.541999999433756 ], [ 354665.425200000405312, 256120.221400000154972 ], [ 354664.325699999928474, 256110.125300001353025 ], [ 354657.383599996566772, 256073.127099998295307 ], [ 354654.356100000441074, 256049.882100000977516 ], [ 354650.439599998295307, 256036.339999999850988 ], [ 354649.768200002610683, 256020.502500001341105 ], [ 354645.957800000905991, 255994.506799999624491 ], [ 354646.00450000166893, 255989.018800001591444 ], [ 354650.89639999717474, 255982.725999999791384 ], [ 354655.757600001990795, 255980.021600000560284 ], [ 354669.490099996328354, 255977.178700000047684 ], [ 354676.773900002241135, 255974.071899998933077 ], [ 354685.718900002539158, 255965.279199998825788 ], [ 354687.347699999809265, 255963.392599999904633 ], [ 354695.596000000834465, 255941.717500001192093 ], [ 354700.608300000429153, 255921.282499998807907 ], [ 354701.608800001442432, 255898.492499999701977 ], [ 354698.512999996542931, 255883.268500000238419 ], [ 354695.37049999833107, 255873.532499998807907 ], [ 354684.306900002062321, 255847.05519999936223 ], [ 354681.121200002729893, 255842.385099999606609 ], [ 354675.520199999213219, 255837.272999998182058 ], [ 354670.703900001943111, 255834.700399998575449 ], [ 354661.855999998748302, 255832.094900000840425 ], [ 354662.748700000345707, 255821.969700001180172 ], [ 354677.192100003361702, 255830.320599999278784 ], [ 354682.793200001120567, 255835.432700000703335 ], [ 354689.970899999141693, 255844.779500000178814 ], [ 354703.394100002944469, 255878.242199998348951 ], [ 354706.507799997925758, 255891.355500001460314 ], [ 354707.134300000965595, 255912.469900000840425 ], [ 354705.383199997246265, 255928.709800001233816 ], [ 354699.552000001072884, 255950.615800000727177 ], [ 354699.489100001752377, 255958.003600001335144 ], [ 354697.817100003361702, 255964.956000000238419 ], [ 354690.382299996912479, 255985.793400000780821 ], [ 354723.477099999785423, 255981.842399999499321 ], [ 354717.041000001132488, 255980.100999999791384 ], [ 354723.574199996888638, 255970.444099999964237 ], [ 354726.043499998748302, 255964.553700000047684 ], [ 354727.767599999904633, 255951.480000000447035 ], [ 354731.971799999475479, 255931.249499998986721 ], [ 354725.530299998819828, 255930.14130000025034 ], [ 354725.825199998915195, 255895.524300001561642 ], [ 354723.496100001037121, 255884.950599998235703 ], [ 354720.468699999153614, 255861.70549999922514 ], [ 354720.565800003707409, 255850.307300001382828 ], [ 354721.406300000846386, 255846.303399998694658 ], [ 354724.672899998724461, 255841.475000001490116 ], [ 354722.405000001192093, 255823.724500000476837 ], [ 354721.620300002396107, 255821.184999998658895 ], [ 354717.612099997699261, 255818.407999999821186 ], [ 354717.631800003349781, 255816.086100000888109 ], [ 354724.890500001609325, 255815.934399999678135 ], [ 354726.513899996876717, 255814.681099999696016 ], [ 354727.34179999679327, 255812.154800001531839 ], [ 354725.756099998950958, 255808.975400000810623 ], [ 354714.503700003027916, 255804.661499999463558 ], [ 354705.630699999630451, 255805.010999999940395 ], [ 354706.312899999320507, 255819.582100000232458 ], [ 354701.439099997282028, 255823.763999998569489 ], [ 354696.599399998784065, 255823.935499999672174 ], [ 354694.189400002360344, 255822.860300000756979 ], [ 354685.40990000218153, 255812.233800001442432 ], [ 354681.408900000154972, 255808.612500000745058 ], [ 354678.230400003492832, 255803.098000001162291 ], [ 354674.236599996685982, 255798.632399998605251 ], [ 354652.552500002086163, 255788.322399999946356 ], [ 354647.705600000917912, 255789.338199999183416 ], [ 354645.290299996733665, 255788.896200001239777 ], [ 354627.618000000715256, 255780.941100001335144 ], [ 354610.768100000917912, 255771.0929000005126 ], [ 354610.298299998044968, 255826.240899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201012800", "MAP": "G3-175-T79", "PARCEL_NAM": "32F", "ACRE": null, "LONGITUDE": -64.96440538, "LATITUDE": 18.34604707, "OBJECTID_1": 7461, "PARCEL_NO_": "105201012800", "Tax_Legal_": "LINDBERG BAY 32F S S QTR", "Name": "DICKERSON, ALTON & OLYMPIA", "Address": "BOX 3903", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13100, "Improved_V": 70300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.476748957, "SHAPE_Area": 722.75140542400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355270.521899998188019, 257354.642099998891354 ], [ 355255.034699998795986, 257349.121500000357628 ], [ 355242.579700000584126, 257382.550400000065565 ], [ 355268.499899998307228, 257390.459399998188019 ], [ 355268.693599998950958, 257388.599199999123812 ], [ 355267.237400002777576, 257370.222199998795986 ], [ 355269.773299999535084, 257356.521800000220537 ], [ 355270.521899998188019, 257354.642099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201013400", "MAP": "G3-175-T79", "PARCEL_NAM": "32G", "ACRE": null, "LONGITUDE": -64.96429779, "LATITUDE": 18.34574006, "OBJECTID_1": 7466, "PARCEL_NO_": "105201013400", "Tax_Legal_": "32G ESTATE LINDBERG BAY 4A SOUTHSIDE QTR.", "Name": "DICKENSON, JOAN ANN", "Address": "PO BOX 303903", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.402215566, "SHAPE_Area": 566.28688489800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355255.034699998795986, 257349.121500000357628 ], [ 355270.521899998188019, 257354.642099998891354 ], [ 355274.717200003564358, 257344.107799999415874 ], [ 355280.445900000631809, 257334.233300000429153 ], [ 355282.071099996566772, 257332.768899999558926 ], [ 355283.710699997842312, 257329.615899998694658 ], [ 355285.364699997007847, 257324.774300001561642 ], [ 355287.810599997639656, 257321.627900000661612 ], [ 355264.406000003218651, 257323.969500001519918 ], [ 355255.034699998795986, 257349.121500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96340783, "LATITUDE": 18.34605993, "OBJECTID_1": 7455, "PARCEL_NO_": "105201012200", "Tax_Legal_": "CONTANT 134 7A SOUTHSIDE QTR", "Name": "BLYDEN, DAVID R", "Address": "PO Box 150255", "City": "Brooklyn", "State": "New York", "Zip": 11215, "Country": "United States", "Land_Value": 70200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.344283776, "SHAPE_Area": 3033.3510933500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355400.304200001060963, 257368.355999998748302 ], [ 355397.517499998211861, 257343.868900001049042 ], [ 355367.310400001704693, 257348.469500001519918 ], [ 355328.161499999463558, 257354.43189999833703 ], [ 355335.568800002336502, 257380.94539999961853 ], [ 355341.943999998271465, 257403.764199998229742 ], [ 355343.432499997317791, 257418.34180000051856 ], [ 355345.838899999856949, 257419.839200001209974 ], [ 355349.07490000128746, 257418.59910000115633 ], [ 355356.459399998188019, 257403.671900000423193 ], [ 355357.292700000107288, 257400.512299999594688 ], [ 355362.180900000035763, 257394.641699999570847 ], [ 355369.477300003170967, 257390.057399999350309 ], [ 355374.32769999653101, 257388.61939999833703 ], [ 355388.844999998807907, 257388.316100001335144 ], [ 355392.095399998128414, 257385.387299999594688 ], [ 355394.593500003218651, 257376.119699999690056 ], [ 355400.304200001060963, 257368.355999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201036700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96634813, "LATITUDE": 18.34534568, "OBJECTID_1": 7579, "PARCEL_NO_": "105201036700", "Tax_Legal_": "LINDBERG 60-5A S S QTR", "Name": "RICHARDSON, WINIFRED", "Address": "5487 Martins Crossing Rd", "City": "Stone Mountain", "State": "Georgia", "Zip": 30088, "Country": "United States", "Land_Value": 1000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.058914200199993, "SHAPE_Area": 33.212922175700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355040.130900003015995, 257290.039599999785423 ], [ 355046.121699996292591, 257292.107099998742342 ], [ 355055.826399996876717, 257292.287099998444319 ], [ 355071.959799997508526, 257291.574799999594688 ], [ 355040.130900003015995, 257290.039599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040700", "MAP": "D9-4781-T89", "PARCEL_NAM": "28E", "ACRE": ".04", "LONGITUDE": -64.96220697, "LATITUDE": 18.34465956, "OBJECTID_1": 7585, "PARCEL_NO_": "105201040700", "Tax_Legal_": "LINDBERG BAY 28E S S QTR", "Name": "VI WASTE MANAGEMENT AUTHORITY", "Address": "1 La Grande Princesse", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 8700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.98677419131, "SHAPE_Area": 0.01254065987 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355491.566500000655651, 257218.737300001084805 ], [ 355491.929499998688698, 257219.043600000441074 ], [ 355491.944899998605251, 257218.987500000745058 ], [ 355491.566500000655651, 257218.737300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201040500", "MAP": "D9-5136-T91", "PARCEL_NAM": "28H", "ACRE": null, "LONGITUDE": -64.96269458, "LATITUDE": 18.34442669, "OBJECTID_1": 7583, "PARCEL_NO_": "105201040500", "Tax_Legal_": "LINDBERG BAY 28H SOUTHSIDE QTR.", "Name": "JAMES, GERRO L. A", "Address": "PO Box 302305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64200, "Improved_V": 17800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.91072945600001, "SHAPE_Area": 796.83168519900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355446.451999999582767, 257209.373100001364946 ], [ 355451.638300001621246, 257193.953099999576807 ], [ 355453.111900001764297, 257177.999600000679493 ], [ 355439.905500002205372, 257168.563400000333786 ], [ 355433.451399996876717, 257168.932700000703335 ], [ 355429.825000002980232, 257169.114000000059605 ], [ 355438.012299999594688, 257179.268699999898672 ], [ 355427.565999999642372, 257201.239000000059605 ], [ 355423.604400001466274, 257205.802400000393391 ], [ 355431.477399997413158, 257211.346400000154972 ], [ 355445.152300000190735, 257215.258000001311302 ], [ 355446.451999999582767, 257209.373100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201045600", "MAP": "D9-2540-T83", "PARCEL_NAM": "18B-1", "ACRE": null, "LONGITUDE": -64.96362384, "LATITUDE": 18.3418008, "OBJECTID_1": 7637, "PARCEL_NO_": "105201045600", "Tax_Legal_": "18B-1 ESTATE LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "L B W, INC", "Address": "3806 Crown Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 490100, "Improved_V": 502500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.710610371, "SHAPE_Area": 3833.1880151300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355377.814000003039837, 256929.699799999594688 ], [ 355374.716099999845028, 256869.754599999636412 ], [ 355311.798600003123283, 256872.195000000298023 ], [ 355314.502400003373623, 256933.434300001710653 ], [ 355374.203699998557568, 256929.912099998444319 ], [ 355377.814000003039837, 256929.699799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201045300", "MAP": "D9-6704-T000", "PARCEL_NAM": "18B-2", "ACRE": ".78", "LONGITUDE": -64.96240141, "LATITUDE": 18.34173484, "OBJECTID_1": 7634, "PARCEL_NO_": "105201045300", "Tax_Legal_": "LINDBERG BAY ESTATE 18B-2 No.4A SOUTHSIDE QTR.", "Name": "MILLS, IVAN A", "Address": "PO Box 502038", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 209000, "Improved_V": 307000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.62633302699999, "SHAPE_Area": 3563.91384741 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355506.514399997889996, 256922.129099998623133 ], [ 355502.47919999808073, 256864.802000001072884 ], [ 355494.100699998438358, 256864.821100000292063 ], [ 355442.609899997711182, 256866.949000000953674 ], [ 355444.243699997663498, 256925.792100001126528 ], [ 355506.514399997889996, 256922.129099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201048500", "MAP": "F9-4069-T81", "PARCEL_NAM": "26F-A", "ACRE": ".10", "LONGITUDE": -64.96226074, "LATITUDE": 18.34372679, "OBJECTID_1": 7664, "PARCEL_NO_": "105201048500", "Tax_Legal_": "LINDBERG BAY 26FA S S QTR.", "Name": "THOMAS, HILDA MAY", "Address": "PO Box 305684", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9200, "Improved_V": 108900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.308460020599995, "SHAPE_Area": 457.41832851800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355475.02139999717474, 257104.227000001817942 ], [ 355479.586400002241135, 257128.037300001829863 ], [ 355498.319700002670288, 257126.822799999266863 ], [ 355495.288599997758865, 257103.999800000339746 ], [ 355475.02139999717474, 257104.227000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201049500", "MAP": null, "PARCEL_NAM": "18A", "ACRE": null, "LONGITUDE": -64.96103876, "LATITUDE": 18.3415513, "OBJECTID_1": 7670, "PARCEL_NO_": "105201049500", "Tax_Legal_": "LINDBERG BAY #18A No.4A SOUTHSIDE QTR.", "Name": "CREQUE, CLEONE H. & TANYA C. CREQUE HODGE", "Address": "PO Box 306072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 145100, "Improved_V": 212900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.273487811, "SHAPE_Area": 836.36548813100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355640.356899999082088, 256881.180300001055002 ], [ 355641.668499998748302, 256864.551199998706579 ], [ 355606.187200002372265, 256864.68299999833107 ], [ 355589.860399998724461, 256896.17680000141263 ], [ 355609.493100002408028, 256885.145899999886751 ], [ 355640.356899999082088, 256881.180300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201049500", "MAP": "D9-6726-T000", "PARCEL_NAM": "18A-1", "ACRE": ".42", "LONGITUDE": -64.96108776, "LATITUDE": 18.34180355, "OBJECTID_1": 7670, "PARCEL_NO_": "105201049500", "Tax_Legal_": "LINDBERG BAY #18A No.4A SOUTHSIDE QTR.", "Name": "CREQUE, CLEONE H. & TANYA C. CREQUE HODGE", "Address": "PO Box 306072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 145100, "Improved_V": 212900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.97098457499999, "SHAPE_Area": 1822.55245928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355640.356899999082088, 256881.180300001055002 ], [ 355609.493100002408028, 256885.145899999886751 ], [ 355589.860399998724461, 256896.17680000141263 ], [ 355576.7753000035882, 256921.417700000107288 ], [ 355633.213600002229214, 256920.846200000494719 ], [ 355634.791799999773502, 256914.524099998176098 ], [ 355638.956500001251698, 256898.937300000339746 ], [ 355640.356899999082088, 256881.180300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201049500", "MAP": "D9-6869-T000", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96172954, "LATITUDE": 18.34162664, "OBJECTID_1": 7670, "PARCEL_NO_": "105201049500", "Tax_Legal_": "LINDBERG BAY #18A No.4A SOUTHSIDE QTR.", "Name": "CREQUE, CLEONE H. & TANYA C. CREQUE HODGE", "Address": "PO Box 306072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 145100, "Improved_V": 212900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.14175562599999, "SHAPE_Area": 391.812491889 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355596.476800002157688, 256883.414000000804663 ], [ 355594.014899998903275, 256882.367800001055002 ], [ 355591.501400001347065, 256881.706300001591444 ], [ 355587.13570000231266, 256881.044900000095367 ], [ 355583.299300000071526, 256881.574000000953674 ], [ 355579.4628000035882, 256882.500100001692772 ], [ 355576.68469999730587, 256883.293800000101328 ], [ 355573.509700000286102, 256884.616799999028444 ], [ 355569.408600002527237, 256885.807399999350309 ], [ 355566.101300001144409, 256886.733399998396635 ], [ 355561.603399999439716, 256887.527199998497963 ], [ 355557.502300001680851, 256888.585499998182058 ], [ 355553.665899999439716, 256889.379299998283386 ], [ 355549.564800001680851, 256889.776099998503923 ], [ 355547.051299996674061, 256889.511599998921156 ], [ 355542.685699999332428, 256889.379299998283386 ], [ 355540.304399996995926, 256889.247000001370907 ], [ 355536.203299999237061, 256888.05629999935627 ], [ 355532.631499998271465, 256886.601100001484156 ], [ 355530.514799997210503, 256885.410500001162291 ], [ 355528.001199997961521, 256883.955299999564886 ], [ 355526.01690000295639, 256882.500100001692772 ], [ 355522.841899998486042, 256880.11879999935627 ], [ 355519.666900001466274, 256877.60530000180006 ], [ 355514.639799997210503, 256873.504200000315905 ], [ 355511.332500003278255, 256870.990699999034405 ], [ 355504.452399998903275, 256864.797499999403954 ], [ 355502.47919999808073, 256864.802000001072884 ], [ 355502.997299998998642, 256872.16270000115037 ], [ 355505.247000001370907, 256872.710499998182058 ], [ 355506.702200002968311, 256873.107400000095367 ], [ 355508.421999998390675, 256873.768800001591444 ], [ 355511.729299999773502, 256876.414700001478195 ], [ 355514.375200003385544, 256878.663600001484156 ], [ 355517.285599999129772, 256881.177200000733137 ], [ 355519.402300000190735, 256883.161499999463558 ], [ 355522.048100002110004, 256885.013599999248981 ], [ 355525.355400003492832, 256886.336599998176098 ], [ 355529.191899999976158, 256888.453200001269579 ], [ 355531.969999998807907, 256890.173000000417233 ], [ 355535.145000003278255, 256891.2314000017941 ], [ 355537.394000001251698, 256892.025100000202656 ], [ 355541.494999997317791, 256892.554299999028444 ], [ 355543.611699998378754, 256893.215700000524521 ], [ 355546.786700002849102, 256893.348000001162291 ], [ 355549.564800001680851, 256893.215700000524521 ], [ 355552.872100003063679, 256893.083399999886751 ], [ 355555.6503000035882, 256892.951200000941753 ], [ 355559.089900001883507, 256892.289700001478195 ], [ 355562.397200003266335, 256891.363600000739098 ], [ 355565.83669999986887, 256890.569899998605251 ], [ 355569.276299998164177, 256889.379299998283386 ], [ 355573.377400003373623, 256888.1886 ], [ 355576.81700000166893, 256887.262600000947714 ], [ 355579.4628000035882, 256886.601100001484156 ], [ 355582.770099997520447, 256885.67509999871254 ], [ 355586.871200002729893, 256885.013599999248981 ], [ 355589.252400003373623, 256884.749099999666214 ], [ 355590.310699999332428, 256884.749099999666214 ], [ 355595.145499996840954, 256885.98200000077486 ], [ 355596.476800002157688, 256883.414000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201049500", "MAP": "D9-6869-T000", "PARCEL_NAM": "18A-6", "ACRE": null, "LONGITUDE": -64.96178914, "LATITUDE": 18.34154698, "OBJECTID_1": 7670, "PARCEL_NO_": "105201049500", "Tax_Legal_": "LINDBERG BAY #18A No.4A SOUTHSIDE QTR.", "Name": "CREQUE, CLEONE H. & TANYA C. CREQUE HODGE", "Address": "PO Box 306072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 145100, "Improved_V": 212900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.117422003, "SHAPE_Area": 988.86865458099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355553.665899999439716, 256889.379299998283386 ], [ 355565.867899999022484, 256864.775199998170137 ], [ 355536.032600000500679, 256864.74210000038147 ], [ 355514.260300002992153, 256864.774999998509884 ], [ 355504.452399998903275, 256864.797499999403954 ], [ 355511.332500003278255, 256870.990699999034405 ], [ 355514.639799997210503, 256873.504200000315905 ], [ 355519.666900001466274, 256877.60530000180006 ], [ 355522.841899998486042, 256880.11879999935627 ], [ 355526.01690000295639, 256882.500100001692772 ], [ 355528.001199997961521, 256883.955299999564886 ], [ 355530.514799997210503, 256885.410500001162291 ], [ 355532.631499998271465, 256886.601100001484156 ], [ 355536.203299999237061, 256888.05629999935627 ], [ 355540.304399996995926, 256889.247000001370907 ], [ 355542.685699999332428, 256889.379299998283386 ], [ 355547.051299996674061, 256889.511599998921156 ], [ 355549.564800001680851, 256889.776099998503923 ], [ 355553.665899999439716, 256889.379299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201049500", "MAP": "D9-6869-T000", "PARCEL_NAM": "18A-5", "ACRE": null, "LONGITUDE": -64.96140301, "LATITUDE": 18.34154334, "OBJECTID_1": 7670, "PARCEL_NO_": "105201049500", "Tax_Legal_": "LINDBERG BAY #18A No.4A SOUTHSIDE QTR.", "Name": "CREQUE, CLEONE H. & TANYA C. CREQUE HODGE", "Address": "PO Box 306072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 145100, "Improved_V": 212900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.14513668199999, "SHAPE_Area": 788.31803532699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355565.867899999022484, 256864.775199998170137 ], [ 355553.665899999439716, 256889.379299998283386 ], [ 355557.502300001680851, 256888.585499998182058 ], [ 355561.603399999439716, 256887.527199998497963 ], [ 355566.101300001144409, 256886.733399998396635 ], [ 355569.408600002527237, 256885.807399999350309 ], [ 355573.509700000286102, 256884.616799999028444 ], [ 355576.68469999730587, 256883.293800000101328 ], [ 355579.4628000035882, 256882.500100001692772 ], [ 355583.299300000071526, 256881.574000000953674 ], [ 355587.13570000231266, 256881.044900000095367 ], [ 355591.501400001347065, 256881.706300001591444 ], [ 355594.014899998903275, 256882.367800001055002 ], [ 355596.476800002157688, 256883.414000000804663 ], [ 355606.187200002372265, 256864.68299999833107 ], [ 355599.736699998378754, 256864.630199998617172 ], [ 355565.867899999022484, 256864.775199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201063700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96416285, "LATITUDE": 18.34363784, "OBJECTID_1": 7765, "PARCEL_NO_": "105201063700", "Tax_Legal_": "25B&25-7 ESTATE LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "MANNERS, SHANIKA & KEITHROY CHARLES,JR.", "Address": "PO Box 304069", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 101200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.429033034699998, "SHAPE_Area": 399.68113444400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355293.151500001549721, 257092.256000000983477 ], [ 355277.572499997913837, 257091.788100000470877 ], [ 355277.576200000941753, 257093.964899998158216 ], [ 355277.614000000059605, 257116.037399999797344 ], [ 355296.019799999892712, 257115.245600000023842 ], [ 355293.744699999690056, 257098.339499998837709 ], [ 355293.151500001549721, 257092.256000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201065600", "MAP": "D9-6723-T000", "PARCEL_NAM": "25-11", "ACRE": ".207", "LONGITUDE": -64.9642753, "LATITUDE": 18.34346737, "OBJECTID_1": 7784, "PARCEL_NO_": "105201065600", "Tax_Legal_": "LINDBERG BAY 25-11 No.4A SOUTHSIDE QTR", "Name": "NIBBS, BARBARA & LAWRENCE", "Address": "8235 A Bournefield", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21200, "Improved_V": 103000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.473386659, "SHAPE_Area": 1492.0794364000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355293.151500001549721, 257092.256000000983477 ], [ 355292.521499998867512, 257089.010000001639128 ], [ 355291.859999999403954, 257081.204700000584126 ], [ 355312.669799998402596, 257079.729499999433756 ], [ 355312.500299997627735, 257073.795099999755621 ], [ 355312.451999999582767, 257072.470300000160933 ], [ 355293.781900003552437, 257073.824299998581409 ], [ 355293.913699999451637, 257078.498100001364946 ], [ 355282.720899999141693, 257078.772700000554323 ], [ 355278.775399997830391, 257057.053800001740456 ], [ 355263.441100001335144, 257058.616999998688698 ], [ 355258.600599996745586, 257059.140099998563528 ], [ 355259.150600001215935, 257088.979400001466274 ], [ 355258.913199998438358, 257116.84180000051856 ], [ 355277.614000000059605, 257116.037399999797344 ], [ 355277.576200000941753, 257093.964899998158216 ], [ 355277.572499997913837, 257091.788100000470877 ], [ 355293.151500001549721, 257092.256000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201067400", "MAP": "D9-6723-T000", "PARCEL_NAM": "25-8", "ACRE": ".", "LONGITUDE": -64.96400421, "LATITUDE": 18.34347652, "OBJECTID_1": 7801, "PARCEL_NO_": "105201067400", "Tax_Legal_": "25-8 ESTATE LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "GOMEZ, DENISE", "Address": "815 ITASKA STREET", "City": "BETHLEHEM", "State": "Pennsylvania", "Zip": 18015, "Country": "United States", "Land_Value": 6500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.033297125199994, "SHAPE_Area": 247.75167094400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355312.669799998402596, 257079.729499999433756 ], [ 355291.859999999403954, 257081.204700000584126 ], [ 355292.521499998867512, 257089.010000001639128 ], [ 355293.151500001549721, 257092.256000000983477 ], [ 355300.263800002634525, 257092.4695999994874 ], [ 355313.044600002467632, 257092.853500001132488 ], [ 355312.669799998402596, 257079.729499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201064100", "MAP": "D9-6723-T000", "PARCEL_NAM": "25Y", "ACRE": ".14", "LONGITUDE": -64.96482523, "LATITUDE": 18.3435525, "OBJECTID_1": 7769, "PARCEL_NO_": "105201064100", "Tax_Legal_": "25Y ESTATE LINDBERG BAY 4A SOUTHSIDE QUARTER", "Name": "FREEMAN, SONJA JOSHUA -", "Address": "PO Box 11", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15300, "Improved_V": 113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.103041182, "SHAPE_Area": 545.99061375500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355224.227399997413158, 257118.246599998325109 ], [ 355224.437799997627735, 257093.550400000065565 ], [ 355223.73759999871254, 257081.090199999511242 ], [ 355223.765500001609325, 257077.818300001323223 ], [ 355206.073899999260902, 257078.932799998670816 ], [ 355206.007700003683567, 257079.889600001275539 ], [ 355205.991499997675419, 257081.789299998432398 ], [ 355205.910599999129772, 257091.287799999117851 ], [ 355205.802699998021126, 257103.952599998563528 ], [ 355218.332400001585484, 257103.484900001436472 ], [ 355218.874499998986721, 257118.482999999076128 ], [ 355224.227399997413158, 257118.246599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201068900", "MAP": "D9-3273-T85", "PARCEL_NAM": "23H-D", "ACRE": null, "LONGITUDE": -64.96404656, "LATITUDE": 18.34309492, "OBJECTID_1": 7814, "PARCEL_NO_": "105201068900", "Tax_Legal_": "LINDBERG BAY 23H-D S.S. QTR.", "Name": "SMITH, LaRON F", "Address": "PO Box 10287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 146400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.55735772, "SHAPE_Area": 595.76107983600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355310.422499999403954, 257031.974599998444319 ], [ 355293.252599999308586, 257032.681800000369549 ], [ 355294.707800000905991, 257030.565099999308586 ], [ 355286.845799997448921, 257030.830899998545647 ], [ 355286.780100002884865, 257056.770199999213219 ], [ 355293.294399999082088, 257056.539299998432398 ], [ 355311.846799999475479, 257055.846799999475479 ], [ 355310.422499999403954, 257031.974599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201068800", "MAP": "D9-3273-T85", "PARCEL_NAM": "23H-C", "ACRE": null, "LONGITUDE": -64.96405124, "LATITUDE": 18.34287984, "OBJECTID_1": 7813, "PARCEL_NO_": "105201068800", "Tax_Legal_": "LINDBERG BAY 23HC S.S. QTR.", "Name": "SAMUEL, ERIC & HENRIETTA", "Address": "PO Box 305425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 88600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.274841065299995, "SHAPE_Area": 529.43493931900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355310.422499999403954, 257031.974599998444319 ], [ 355309.024300001561642, 257008.538699999451637 ], [ 355286.901600003242493, 257008.777300000190735 ], [ 355286.845799997448921, 257030.830899998545647 ], [ 355294.707800000905991, 257030.565099999308586 ], [ 355293.252599999308586, 257032.681800000369549 ], [ 355310.422499999403954, 257031.974599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201068700", "MAP": "D9-3273-T85", "PARCEL_NAM": "23H-B", "ACRE": null, "LONGITUDE": -64.96430813000001, "LATITUDE": 18.34287518, "OBJECTID_1": 7812, "PARCEL_NO_": "105201068700", "Tax_Legal_": "LINDBERG BAY 23HB SOUTHSIDE QTR.", "Name": "WYLLIS, CAROLYN P.", "Address": "PO BOX 302212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 83400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.425230117, "SHAPE_Area": 685.44983554700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355286.845799997448921, 257030.830899998545647 ], [ 355286.901600003242493, 257008.777300000190735 ], [ 355253.379799999296665, 257009.138799998909235 ], [ 355257.698499999940395, 257030.376899998635054 ], [ 355280.155699998140335, 257031.226599998772144 ], [ 355286.845799997448921, 257030.830899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201061900", "MAP": "D9-5125-T91", "PARCEL_NAM": "23J", "ACRE": null, "LONGITUDE": -64.96557196000001, "LATITUDE": 18.34283826, "OBJECTID_1": 7747, "PARCEL_NO_": "105201061900", "Tax_Legal_": "23J LINDBERG BAY SOUTHSIDE QUARTER", "Name": "CAREY, EDWARD & EUNICE", "Address": "PO BOX 10961", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9900, "Improved_V": 76000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.130702426499994, "SHAPE_Area": 286.76013090200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355142.752700001001358, 257001.489900000393391 ], [ 355130.872400000691414, 257002.014400001615286 ], [ 355131.642800003290176, 257006.242600001394749 ], [ 355133.079199999570847, 257026.941500000655651 ], [ 355138.7162000015378, 257027.831999998539686 ], [ 355143.797100000083447, 257027.873599998652935 ], [ 355142.752700001001358, 257001.489900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95699388, "LATITUDE": 18.34168584, "OBJECTID_1": 8136, "PARCEL_NO_": "105202024800", "Tax_Legal_": "CONTANT 84-3 7A S.S. QTR.", "Name": "TRANQUILLE, WILNER", "Address": "PO Box 711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40500, "Improved_V": 52400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.688316603000004, "SHAPE_Area": 335.50483817600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356061.485200002789497, 256893.279899999499321 ], [ 356041.108800001442432, 256883.028000000864267 ], [ 356038.205200001597404, 256887.639499999582767 ], [ 356030.849500000476837, 256899.189399998635054 ], [ 356049.360500000417233, 256903.351700000464916 ], [ 356061.485200002789497, 256893.279899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202021700", "MAP": null, "PARCEL_NAM": "15-2", "ACRE": null, "LONGITUDE": -64.95667043, "LATITUDE": 18.34410121, "OBJECTID_1": 8108, "PARCEL_NO_": "105202021700", "Tax_Legal_": "15-2 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "PASCAL, MARK & MARQU & GERALDINE DENNIS PASCAL REV. TRUST", "Address": "PO BOX 8791", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 171600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.381782794, "SHAPE_Area": 1143.44782758 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356041.836199998855591, 257162.893699999898672 ], [ 356104.496299996972084, 257176.851700000464916 ], [ 356105.908900000154972, 257175.280900001525879 ], [ 356112.424099996685982, 257167.7347999997437 ], [ 356106.031099997460842, 257160.927499998360872 ], [ 356095.597599998116493, 257155.142599999904633 ], [ 356056.140500001609325, 257148.697900000959635 ], [ 356049.415799997746944, 257147.625900000333786 ], [ 356041.836199998855591, 257162.893699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202027000", "MAP": "D9-4531-T88", "PARCEL_NAM": "93C-1A1", "ACRE": ".26", "LONGITUDE": -64.95686328, "LATITUDE": 18.3451366, "OBJECTID_1": 8158, "PARCEL_NO_": "105202027000", "Tax_Legal_": "CONTANT 93C-1A-1 SOUTHSIDE QTR", "Name": "ELLICK, ROCHELLE (TRUSTEE)", "Address": "705 Westminster Dr", "City": "Greensboro", "State": "North Carolina", "Zip": 27410, "Country": "United States", "Land_Value": 75300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.43503251800001, "SHAPE_Area": 900.76636267699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356080.5033999979496, 257260.037399999797344 ], [ 356073.491899996995926, 257270.223900001496077 ], [ 356042.524899996817112, 257263.659699998795986 ], [ 356034.054099999368191, 257261.864199999719858 ], [ 356030.232400000095367, 257277.5 ], [ 356038.222099997103214, 257279.347100000828505 ], [ 356054.838699996471405, 257283.188499998301268 ], [ 356055.60809999704361, 257287.052999999374151 ], [ 356060.552799999713898, 257311.890799999237061 ], [ 356061.188699997961521, 257294.300999999046326 ], [ 356065.686700001358986, 257290.199999999254942 ], [ 356067.670999996364117, 257287.554200001060963 ], [ 356070.449199996888638, 257284.114599999040365 ], [ 356073.624200001358986, 257280.410399999469519 ], [ 356081.032499998807907, 257270.885400000959635 ], [ 356083.01690000295639, 257267.181200001388788 ], [ 356080.5033999979496, 257260.037399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202032900", "MAP": "D9-6142-T96", "PARCEL_NAM": "11-17-A", "ACRE": ".46", "LONGITUDE": -64.95201271000001, "LATITUDE": 18.34486357, "OBJECTID_1": 8215, "PARCEL_NO_": "105202032900", "Tax_Legal_": "11-17A CONTANT No.7B SOUTHSIDE QUARTER", "Name": "SANTANA, ADLINE", "Address": "PO Box 600206", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.90055819700001, "SHAPE_Area": 1195.6061382800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356576.234999999403954, 257218.15989999845624 ], [ 356545.360699996352196, 257272.180900000035763 ], [ 356554.989699997007847, 257277.748199999332428 ], [ 356562.246500000357628, 257277.807599999010563 ], [ 356563.850100003182888, 257278.8761 ], [ 356589.194600000977516, 257238.131400000303984 ], [ 356583.701499998569489, 257220.354600001126528 ], [ 356576.234999999403954, 257218.15989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202034000", "MAP": "D9-6143-T96", "PARCEL_NAM": "11-18-B", "ACRE": null, "LONGITUDE": -64.95185843, "LATITUDE": 18.3449795, "OBJECTID_1": 8226, "PARCEL_NO_": "105202034000", "Tax_Legal_": "11-18-B ESTATE CONTANT 7BA SOUTHSIDE QTR", "Name": "ROBINS, VAUGHN MICHAEL", "Address": "PO Box 303822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.34063134100001, "SHAPE_Area": 750.12054980899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356604.097999997437, 257270.160700000822544 ], [ 356589.194600000977516, 257238.131400000303984 ], [ 356563.850100003182888, 257278.8761 ], [ 356566.256499998271465, 257280.373500000685453 ], [ 356604.097999997437, 257270.160700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202039200", "MAP": "D9-3422-T86", "PARCEL_NAM": "64-1", "ACRE": null, "LONGITUDE": -64.95110422, "LATITUDE": 18.34567318, "OBJECTID_1": 8248, "PARCEL_NO_": "105202039200", "Tax_Legal_": "UPPER JOHN DUNKO 64-1 LT. NORTHSIDE", "Name": "FRANCIS, TERRIE", "Address": "PO Box 6171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.737873049, "SHAPE_Area": 1217.7790500200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356687.869999997317791, 257326.419799998402596 ], [ 356637.86370000243187, 257330.097699999809265 ], [ 356644.624099999666214, 257357.430799998342991 ], [ 356691.108300000429153, 257348.235599998384714 ], [ 356687.869999997317791, 257326.419799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105202037700", "MAP": "G9-3062-T80", "PARCEL_NAM": "22-1C", "ACRE": ".33", "LONGITUDE": -64.95315948, "LATITUDE": 18.34231788, "OBJECTID_1": 8235, "PARCEL_NO_": "105202037700", "Tax_Legal_": "CONTANT 22 1C 7BA SOUTHSIDE QTR", "Name": "BLACKHALL, GEORGE & MARILYN", "Address": "8000 NIsky Shopping Center", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.84844883, "SHAPE_Area": 809.65757075099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356441.9087999984622, 256921.341099999845028 ], [ 356441.954499997198582, 256915.974700000137091 ], [ 356433.885200001299381, 256916.631400000303984 ], [ 356434.325400002300739, 256921.146200001239777 ], [ 356434.626800000667572, 256924.236800000071526 ], [ 356435.735100001096725, 256928.377300001680851 ], [ 356437.233400002121925, 256933.974500000476837 ], [ 356438.534299999475479, 256938.834199998527765 ], [ 356439.39019999653101, 256941.200399998575449 ], [ 356440.645099997520447, 256944.669100001454353 ], [ 356441.807800002396107, 256947.88289999961853 ], [ 356444.04900000244379, 256954.078099999576807 ], [ 356444.027500003576279, 256956.611099999397993 ], [ 356445.051899999380112, 256960.755699999630451 ], [ 356446.038099996745586, 256964.745299998670816 ], [ 356447.590400002896786, 256971.025499999523163 ], [ 356450.177599996328354, 256981.492600001394749 ], [ 356451.005000002682209, 256984.839699998497963 ], [ 356452.601999998092651, 256991.300599999725819 ], [ 356453.673299998044968, 256996.518500000238419 ], [ 356454.567299999296665, 257000.872600000351667 ], [ 356455.093500003218651, 257003.434900000691414 ], [ 356455.635600000619888, 257006.075300000607967 ], [ 356456.620399996638298, 257010.871800001710653 ], [ 356457.247500002384186, 257013.925599999725819 ], [ 356458.097599998116493, 257016.20890000090003 ], [ 356459.290399998426437, 257019.41270000115037 ], [ 356460.575900003314018, 257022.865499999374151 ], [ 356467.17509999871254, 257018.35869999974966 ], [ 356466.125600002706051, 257015.60359999909997 ], [ 356463.737499997019768, 257009.334699999541044 ], [ 356462.854800000786781, 257005.543099999427795 ], [ 356461.8733000010252, 257001.32660000026226 ], [ 356460.560099996626377, 256995.685499999672174 ], [ 356458.999099999666214, 256988.979899998754263 ], [ 356457.847900003194809, 256984.034600000828505 ], [ 356456.609200000762939, 256978.713799998164177 ], [ 356455.958499997854233, 256975.918200001120567 ], [ 356455.443199999630451, 256972.830400001257658 ], [ 356455.013599999248981, 256970.256099998950958 ], [ 356454.4121999964118, 256966.652199998497963 ], [ 356453.948299996554852, 256963.871899999678135 ], [ 356453.54730000346899, 256961.469200000166893 ], [ 356452.889700002968311, 256957.528000000864267 ], [ 356451.910199999809265, 256954.267900001257658 ], [ 356450.537299998104572, 256949.698300000280142 ], [ 356449.777999997138977, 256947.480399999767542 ], [ 356448.410300001502037, 256943.485300000756979 ], [ 356445.029799997806549, 256933.610100001096725 ], [ 356444.134700000286102, 256928.568999998271465 ], [ 356443.731499999761581, 256926.297699999064207 ], [ 356443.490900002419949, 256924.942600000649691 ], [ 356442.783600002527237, 256923.332699999213219 ], [ 356441.9087999984622, 256921.341099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105202043600", "MAP": null, "PARCEL_NAM": "22-1B", "ACRE": null, "LONGITUDE": -64.95284602, "LATITUDE": 18.34302586, "OBJECTID_1": 8296, "PARCEL_NO_": "105202043600", "Tax_Legal_": "ROW CONTANT 22- 1- B 7BA SOUTHSIDE QTR", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.32365342, "SHAPE_Area": 485.97996943300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356467.17509999871254, 257018.35869999974966 ], [ 356463.999899998307228, 257020.527100000530481 ], [ 356460.575900003314018, 257022.865499999374151 ], [ 356461.450599998235703, 257025.214999999850988 ], [ 356462.522699996829033, 257028.094500001519918 ], [ 356463.554099999368191, 257030.864700000733137 ], [ 356465.705799996852875, 257033.771899998188019 ], [ 356467.999499998986721, 257036.870900001376867 ], [ 356470.8175999969244, 257040.678399998694658 ], [ 356473.010099999606609, 257043.640599999576807 ], [ 356474.714800000190735, 257045.94370000064373 ], [ 356476.955300003290176, 257047.836199998855591 ], [ 356479.832599997520447, 257050.266399998217821 ], [ 356481.798299998044968, 257051.92680000141263 ], [ 356484.713899999856949, 257054.389499999582767 ], [ 356487.382500000298023, 257056.643500000238419 ], [ 356490.866599999368191, 257059.586300000548363 ], [ 356492.110399998724461, 257060.636799998581409 ], [ 356494.949199996888638, 257063.034699998795986 ], [ 356497.9324000030756, 257065.554299999028444 ], [ 356498.726199999451637, 257067.038499999791384 ], [ 356498.140699997544289, 257069.329999998211861 ], [ 356497.057800002396107, 257073.56870000064373 ], [ 356509.242399998009205, 257063.113800000399351 ], [ 356505.219800002872944, 257062.025400001555681 ], [ 356501.801700003445148, 257059.165199998766184 ], [ 356499.161899998784065, 257056.956199999898672 ], [ 356495.77250000089407, 257054.120000001043081 ], [ 356488.405900001525879, 257047.955600000917912 ], [ 356484.161899998784065, 257044.339899998158216 ], [ 356480.4003000035882, 257041.135099999606609 ], [ 356478.229000002145767, 257038.243200000375509 ], [ 356476.413699999451637, 257035.825100000947714 ], [ 356475.091399997472763, 257033.962699998170137 ], [ 356472.570600003004074, 257030.412099998444319 ], [ 356470.836099997162819, 257027.969000000506639 ], [ 356469.874300003051758, 257025.444299999624491 ], [ 356468.489500001072884, 257021.809000000357628 ], [ 356467.17509999871254, 257018.35869999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202043900", "MAP": "G9-1486-T70", "PARCEL_NAM": "9-1A", "ACRE": null, "LONGITUDE": -64.9535542, "LATITUDE": 18.34031843, "OBJECTID_1": 8299, "PARCEL_NO_": "105202043900", "Tax_Legal_": "CONTANT 9-1A SOUTHSIDE QTR. 7BA", "Name": "ARMSTRONG, ZEATHEA E", "Address": "PO Box 130", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.420151671499994, "SHAPE_Area": 101.180183594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356428.993699997663498, 256752.427400000393391 ], [ 356396.501599997282028, 256738.154199998825788 ], [ 356395.056699998676777, 256741.739199999719858 ], [ 356428.012999996542931, 256754.041299998760223 ], [ 356428.993699997663498, 256752.427400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204022500", "MAP": "G9-988-T67", "PARCEL_NAM": "6-37", "ACRE": "0.97", "LONGITUDE": -64.95250025, "LATITUDE": 18.34003368, "OBJECTID_1": 8583, "PARCEL_NO_": "105204022500", "Tax_Legal_": "CONTANT ESTATE 6-37 7BA SOUTHSIDE QTR", "Name": "THE FAITH GARDENS, INC.", "Address": "PO Box 10227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 240100, "Improved_V": 534800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.338718384, "SHAPE_Area": 3675.41817653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356545.793300002813339, 256653.469200000166893 ], [ 356544.108199998736382, 256651.224800001829863 ], [ 356534.738499999046326, 256656.188999999314547 ], [ 356529.870099999010563, 256658.517299998551607 ], [ 356526.483400002121925, 256660.4222999997437 ], [ 356523.520099997520447, 256662.750599998980761 ], [ 356522.038400001823902, 256664.443999998271465 ], [ 356519.921800002455711, 256666.984000001102686 ], [ 356519.286799997091293, 256669.524000000208616 ], [ 356512.434399999678135, 256690.987900000065565 ], [ 356512.269500002264977, 256691.504399999976158 ], [ 356505.998000003397465, 256711.149000000208616 ], [ 356504.893399998545647, 256714.609099999070168 ], [ 356504.146099999547005, 256718.473999999463558 ], [ 356498.875600002706051, 256745.732900001108646 ], [ 356498.549400001764297, 256747.419799998402596 ], [ 356496.397399999201298, 256758.549699999392033 ], [ 356495.522900000214577, 256763.072700001299381 ], [ 356492.787600003182888, 256777.219799999147654 ], [ 356515.061999998986721, 256783.814500000327826 ], [ 356518.991800002753735, 256769.621100001037121 ], [ 356523.390799999237061, 256753.733399998396635 ], [ 356525.656000003218651, 256745.552299998700619 ], [ 356527.28660000115633, 256743.454700000584126 ], [ 356527.30460000038147, 256741.343899998813868 ], [ 356552.909800000488758, 256669.992800001055002 ], [ 356553.757500000298023, 256665.144600000232458 ], [ 356551.376299999654293, 256660.692099999636412 ], [ 356545.793300002813339, 256653.469200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202059900", "MAP": "G9-1096-T68", "PARCEL_NAM": "33A", "ACRE": ".108", "LONGITUDE": -64.95342392000001, "LATITUDE": 18.34129467, "OBJECTID_1": 8394, "PARCEL_NO_": "105202059900", "Tax_Legal_": "CONTANT 33A 7BA SOUTHSIDE QTR", "Name": "SAMUEL, RUTH, RIEARA JR.,ERIC & TODMAN, CHARLES", "Address": "BOX 3615", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 224900, "Improved_V": 5100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.4039389653, "SHAPE_Area": 446.979036124 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356431.075400002300739, 256838.175400000065565 ], [ 356421.593800000846386, 256844.970100000500679 ], [ 356415.924500003457069, 256847.879000000655651 ], [ 356410.219099998474121, 256855.009399998933077 ], [ 356407.356700003147125, 256862.459699999541044 ], [ 356427.939800001680851, 256865.117300000041723 ], [ 356429.08219999819994, 256865.264800000935793 ], [ 356435.602700002491474, 256852.356300000101328 ], [ 356431.075400002300739, 256838.175400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053300", "MAP": "D9-6257-T97", "PARCEL_NAM": "33B", "ACRE": null, "LONGITUDE": -64.95312999, "LATITUDE": 18.34132495, "OBJECTID_1": 8332, "PARCEL_NO_": "105202053300", "Tax_Legal_": "CONTANT 33 7BA SOUTHSIDE QTR", "Name": "RUDOLPH FREEMAN REVOCABLE TRUST", "Address": "PO BOX 303114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55500, "Improved_V": 271400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.758894166000005, "SHAPE_Area": 297.964162423 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356454.788400001823902, 256846.060699999332428 ], [ 356439.906999997794628, 256866.662500001490116 ], [ 356442.97749999910593, 256867.058899998664856 ], [ 356452.162299998104572, 256868.244800001382828 ], [ 356455.295299999415874, 256864.455400001257658 ], [ 356469.10869999974966, 256852.113899998366833 ], [ 356454.788400001823902, 256846.060699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202053300", "MAP": "D9-6257-T97", "PARCEL_NAM": "33 REM", "ACRE": null, "LONGITUDE": -64.95325979, "LATITUDE": 18.3412736, "OBJECTID_1": 8332, "PARCEL_NO_": "105202053300", "Tax_Legal_": "CONTANT 33 7BA SOUTHSIDE QTR", "Name": "RUDOLPH FREEMAN REVOCABLE TRUST", "Address": "PO BOX 303114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55500, "Improved_V": 271400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.692862958899994, "SHAPE_Area": 398.84235679 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356454.788400001823902, 256846.060699999332428 ], [ 356432.952299997210503, 256836.830400001257658 ], [ 356431.075400002300739, 256838.175400000065565 ], [ 356435.602700002491474, 256852.356300000101328 ], [ 356429.08219999819994, 256865.264800000935793 ], [ 356439.906999997794628, 256866.662500001490116 ], [ 356454.788400001823902, 256846.060699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204030400", "MAP": "D9-204-T59", "PARCEL_NAM": "105AA", "ACRE": "D9-204-T59", "LONGITUDE": -64.9527889, "LATITUDE": 18.33732139, "OBJECTID_1": 8590, "PARCEL_NO_": "105204030400", "Tax_Legal_": "CONTANT 105AA 7B SOUTHSIDE QTR", "Name": "HYDMAN, JAMES A & CHERYL S", "Address": "PO Box 9675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 130700, "Improved_V": 169500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.2479422193, "SHAPE_Area": 283.41911953599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356495.071900002658367, 256405.723999999463558 ], [ 356486.322999998927116, 256404.088599998503923 ], [ 356483.155299998819828, 256410.767900001257658 ], [ 356487.874899998307228, 256416.578999999910593 ], [ 356490.944099999964237, 256422.717300001531839 ], [ 356493.272399999201298, 256426.950699999928474 ], [ 356499.304999999701977, 256426.633200000971556 ], [ 356503.32660000026226, 256411.499000001698732 ], [ 356495.071900002658367, 256405.723999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204033500", "MAP": "D9-4326-T88", "PARCEL_NAM": "3AD-1", "ACRE": ".19", "LONGITUDE": -64.95328387000001, "LATITUDE": 18.33855882, "OBJECTID_1": 8632, "PARCEL_NO_": "105204033500", "Tax_Legal_": "3AD-1 CONTANT 7BA SOUTHSIDE QTR", "Name": "OLIVE, SARAH THERESA, LIONEL GERARD OLIVE,JR", "Address": "PO Box 1363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32700, "Improved_V": 122200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.323458695400006, "SHAPE_Area": 479.71218808499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356437.562399998307228, 256537.259799998253584 ], [ 356424.867299996316433, 256555.376499999314547 ], [ 356422.473600000143051, 256559.676199998706579 ], [ 356453.976199999451637, 256560.386199999600649 ], [ 356453.5, 256545.622400000691414 ], [ 356437.562399998307228, 256537.259799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9531848, "LATITUDE": 18.33836199, "OBJECTID_1": 8599, "PARCEL_NO_": "105204031300", "Tax_Legal_": "CONTANT 3A OF 3 7BA SOUTHSIDE QTR", "Name": "OLIVE, LIONEL", "Address": "PO Box 308360", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8038360, "Country": "United States", "Land_Value": 174100, "Improved_V": 79600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.201604870300002, "SHAPE_Area": 414.14436781000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356460.008699998259544, 256529.588599998503923 ], [ 356457.038199998438358, 256508.725999999791384 ], [ 356453.454999998211861, 256512.547400001436472 ], [ 356449.364100001752377, 256519.480000000447035 ], [ 356447.742499999701977, 256520.522199999541044 ], [ 356441.193099997937679, 256532.078699998557568 ], [ 356437.562399998307228, 256537.259799998253584 ], [ 356453.5, 256545.622400000691414 ], [ 356460.008699998259544, 256529.588599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204034200", "MAP": "D9-4326-T88", "PARCEL_NAM": "3AD", "ACRE": "0.09", "LONGITUDE": -64.95311081, "LATITUDE": 18.33853079, "OBJECTID_1": 8639, "PARCEL_NO_": "105204034200", "Tax_Legal_": "3AD CONTANT 7BA SOUTHSIDE QTR", "Name": "OLIVE, SARAH THERESA", "Address": "PO Box 1363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25600, "Improved_V": 7400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.033835176099998, "SHAPE_Area": 231.022469457 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356453.5, 256545.622400000691414 ], [ 356453.976199999451637, 256560.386199999600649 ], [ 356459.373700000345707, 256563.084899999201298 ], [ 356463.81870000064373, 256553.083700001239777 ], [ 356463.81870000064373, 256544.352400001138449 ], [ 356460.008699998259544, 256529.588599998503923 ], [ 356453.5, 256545.622400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204033600", "MAP": "D9-4325-T88", "PARCEL_NAM": "3AE", "ACRE": null, "LONGITUDE": -64.95299943000001, "LATITUDE": 18.33839892, "OBJECTID_1": 8633, "PARCEL_NO_": "105204033600", "Tax_Legal_": "CONTANT 3AE 7BA SOUTHSIDE QTR.", "Name": "MAGRAS, EDWARD F. & JALMA (TRUSTEES)", "Address": "PO Box 306627", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 148900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.54930603299999, "SHAPE_Area": 487.65296329300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356481.491300001740456, 256534.850400000810623 ], [ 356479.097000002861023, 256531.544599998742342 ], [ 356461.566699996590614, 256506.914200000464916 ], [ 356459.151399999856949, 256506.472300000488758 ], [ 356471.756300002336502, 256563.561200000345707 ], [ 356481.491300001740456, 256534.850400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301040400", "MAP": "G9-1117-T68", "PARCEL_NAM": "191", "ACRE": null, "LONGITUDE": -64.94485507, "LATITUDE": 18.34207183, "OBJECTID_1": 9095, "PARCEL_NO_": "105301040400", "Tax_Legal_": "ALTONA & WELGUNST 190 & 191 KRONPRINDSENS QTR", "Name": "EDRIS GEORGE FAM SPENDTHRIFT TR", "Address": "8370 NW 144th St", "City": "MIAMI LAKES", "State": "Florida", "Zip": 33016, "Country": "United States", "Land_Value": 10500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.858101355800002, "SHAPE_Area": 79.311632112599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357332.464800000190735, 256939.935400001704693 ], [ 357326.34009999781847, 256939.556600000709295 ], [ 357325.436700001358986, 256950.948300000280142 ], [ 357324.993100002408028, 256955.854699999094009 ], [ 357324.932300001382828, 256956.526200000196695 ], [ 357328.313400000333786, 256956.732700001448393 ], [ 357329.464599996805191, 256951.403400000184774 ], [ 357332.464800000190735, 256939.935400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301035900", "MAP": "D9-2079-T82", "PARCEL_NAM": "178-219", "ACRE": null, "LONGITUDE": -64.9446379, "LATITUDE": 18.3418139, "OBJECTID_1": 9089, "PARCEL_NO_": "105301035900", "Tax_Legal_": "ALTONA & WELGUNST 178-219 KRONPRINDSENS QTR", "Name": "AYALA, MARCIA D", "Address": "PO Box 9613", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33900, "Improved_V": 83700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.28027534099999, "SHAPE_Area": 717.64142192199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357366.684299997985363, 256905.021699998527765 ], [ 357361.354999996721745, 256899.524300001561642 ], [ 357359.83049999922514, 256889.168299999088049 ], [ 357360.656599998474121, 256886.853000000119209 ], [ 357360.945900000631809, 256886.11430000141263 ], [ 357333.351400002837181, 256935.705600000917912 ], [ 357349.967299997806549, 256941.844000000506639 ], [ 357366.684299997985363, 256905.021699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042400", "MAP": "M.B.", "PARCEL_NAM": "178-50", "ACRE": null, "LONGITUDE": -64.94314728000001, "LATITUDE": 18.34120925, "OBJECTID_1": 9115, "PARCEL_NO_": "105301042400", "Tax_Legal_": "ALTONA & WELGUNST 178-50 KRONPRINDSENS QTR", "Name": "ILES, IVORLEE & EVIE L.", "Address": "443 NE 103 St", "City": "Miami Shores", "State": "Florida", "Zip": 33138, "Country": "United States", "Land_Value": 64600, "Improved_V": 38200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.137916805, "SHAPE_Area": 1337.3223360500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357505.246299996972084, 256825.817699998617172 ], [ 357499.547100000083447, 256826.128600001335144 ], [ 357495.195000000298023, 256826.957600001245737 ], [ 357491.568199999630451, 256828.2010000012815 ], [ 357498.374099999666214, 256858.510400000959635 ], [ 357502.590400002896786, 256879.402699999511242 ], [ 357516.325199998915195, 256882.216400001198053 ], [ 357525.165899999439716, 256885.666299998760223 ], [ 357521.951099999248981, 256858.374699998646975 ], [ 357518.406199999153614, 256828.2010000012815 ], [ 357513.328699998557568, 256826.750300001353025 ], [ 357505.246299996972084, 256825.817699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301044600", "MAP": "D9-7102-T002", "PARCEL_NAM": "178-234", "ACRE": null, "LONGITUDE": -64.942722, "LATITUDE": 18.34119221, "OBJECTID_1": 9135, "PARCEL_NO_": "105301044600", "Tax_Legal_": "ALTONA&WELGUNST 178-234 & 178-237 KRONPRINDSENS QTR", "Name": "PONDE, IRENE & GREENAWAY,KEITHROY", "Address": "3507 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53000, "Improved_V": 17900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.660508124, "SHAPE_Area": 617.40875842599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357541.843299999833107, 256835.78940000012517 ], [ 357541.048000000417233, 256860.703699998557568 ], [ 357544.496899999678135, 256861.491399999707937 ], [ 357544.497400000691414, 256861.505300000309944 ], [ 357563.819799996912479, 256865.995600000023842 ], [ 357564.828599996864796, 256866.230099998414516 ], [ 357570.899700000882149, 256847.018800001591444 ], [ 357569.490699999034405, 256846.415899999439716 ], [ 357561.054399996995926, 256842.805700000375509 ], [ 357548.488300003111362, 256838.229400001466274 ], [ 357541.843299999833107, 256835.78940000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301044400", "MAP": "D9-7425-T004", "PARCEL_NAM": "178-238", "ACRE": null, "LONGITUDE": -64.94260664, "LATITUDE": 18.34187588, "OBJECTID_1": 9134, "PARCEL_NO_": "105301044400", "Tax_Legal_": "178-238 & 178-239 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GUMBS, DIANA C", "Address": "9114 Estate Little Princesse Hl", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 57300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.826527353800003, "SHAPE_Area": 343.26422491699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357576.464199997484684, 256921.972100000828505 ], [ 357559.592799998819828, 256914.656800001859665 ], [ 357555.404799997806549, 256932.987700000405312 ], [ 357572.234099999070168, 256940.644099999219179 ], [ 357576.464199997484684, 256921.972100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301043500", "MAP": "D9-7102-T002", "PARCEL_NAM": "178-233", "ACRE": null, "LONGITUDE": -64.94252249, "LATITUDE": 18.34132499, "OBJECTID_1": 9126, "PARCEL_NO_": "105301043500", "Tax_Legal_": "178 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1858200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.37263690899999, "SHAPE_Area": 606.95473689599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357572.077600002288818, 256847.522799998521805 ], [ 357570.899700000882149, 256847.018800001591444 ], [ 357564.828599996864796, 256866.230099998414516 ], [ 357565.512699998915195, 256869.459199998527765 ], [ 357566.196900002658367, 256872.688700001686811 ], [ 357570.00959999859333, 256890.68470000103116 ], [ 357576.949299998581409, 256889.075500000268221 ], [ 357579.534599997103214, 256873.366799999028444 ], [ 357591.234899997711182, 256855.971500001847744 ], [ 357583.800399996340275, 256852.635999999940395 ], [ 357579.127499997615814, 256850.539599999785423 ], [ 357572.077600002288818, 256847.522799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301043500", "MAP": null, "PARCEL_NAM": "178", "ACRE": null, "LONGITUDE": -64.94261057, "LATITUDE": 18.34159851, "OBJECTID_1": 9126, "PARCEL_NO_": "105301043500", "Tax_Legal_": "178 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1858200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.740456282, "SHAPE_Area": 413.39793097699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357550.784500002861023, 256909.020500000566244 ], [ 357554.576700001955032, 256898.910599999129772 ], [ 357582.271999999880791, 256902.810100000351667 ], [ 357584.720399998128414, 256895.795400001108646 ], [ 357586.222499996423721, 256890.627900000661612 ], [ 357583.75110000371933, 256890.214200001209974 ], [ 357576.949299998581409, 256889.075500000268221 ], [ 357570.00959999859333, 256890.68470000103116 ], [ 357563.456799998879433, 256891.053399998694658 ], [ 357545.800200000405312, 256892.046599999070168 ], [ 357547.928099997341633, 256892.859000001102686 ], [ 357552.580600000917912, 256894.75279999896884 ], [ 357552.941899999976158, 256896.24040000140667 ], [ 357552.746200002729893, 256897.352400001138449 ], [ 357549.422399997711182, 256899.307199999690056 ], [ 357543.644000001251698, 256901.180799998342991 ], [ 357539.54280000180006, 256901.827100001275539 ], [ 357550.784500002861023, 256909.020500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301045000", "MAP": "D9-8095-T008", "PARCEL_NAM": "178-241", "ACRE": ".20", "LONGITUDE": -64.94454653, "LATITUDE": 18.34228606, "OBJECTID_1": 9138, "PARCEL_NO_": "105301045000", "Tax_Legal_": "178-241 ALTONA & WELGUNST KRONPRINDSENS QUARTER", "Name": "BRATHWAITE, EDITH", "Address": "PMP Gardens", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.63528657699999, "SHAPE_Area": 2188.3929937399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357388.239900000393391, 256951.421000000089407 ], [ 357356.30179999768734, 256938.029699999839067 ], [ 357340.603500001132488, 256967.8564000017941 ], [ 357329.107799999415874, 256989.741099998354912 ], [ 357370.961300000548363, 257002.405499998480082 ], [ 357379.22580000013113, 256978.830699998885393 ], [ 357380.888800002634525, 256972.933699999004602 ], [ 357382.544600002467632, 256967.881000000983477 ], [ 357383.36710000038147, 256965.987900000065565 ], [ 357388.239900000393391, 256951.421000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301044800", "MAP": "D9-7946-T007", "PARCEL_NAM": "178-240", "ACRE": ".20", "LONGITUDE": -64.94434803, "LATITUDE": 18.34195341, "OBJECTID_1": 9136, "PARCEL_NO_": "105301044800", "Tax_Legal_": "178-240 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 49200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.85077185, "SHAPE_Area": 864.99345317300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357356.30179999768734, 256938.029699999839067 ], [ 357388.239900000393391, 256951.421000000089407 ], [ 357389.986599996685982, 256946.199200000613928 ], [ 357403.000900000333786, 256933.006900001317263 ], [ 357410.140600003302097, 256929.561599999666214 ], [ 357404.738600000739098, 256923.829700000584126 ], [ 357388.22860000282526, 256924.888000000268221 ], [ 357381.455300003290176, 256925.522999998182058 ], [ 357372.988600000739098, 256925.3114 ], [ 357367.696900002658367, 256924.041400000452995 ], [ 357363.886900000274181, 256923.618000000715256 ], [ 357356.30179999768734, 256938.029699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301043500", "MAP": "D9-6928-T001", "PARCEL_NAM": "178-232", "ACRE": null, "LONGITUDE": -64.94236479, "LATITUDE": 18.34139611, "OBJECTID_1": 9126, "PARCEL_NO_": "105301043500", "Tax_Legal_": "178 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "DEPARTMENT OF PROPERTY AND PROCURMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1858200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.295395238, "SHAPE_Area": 696.09478513 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357609.231899999082088, 256863.889600001275539 ], [ 357604.186700001358986, 256861.709699999541044 ], [ 357599.814499996602535, 256859.820599999278784 ], [ 357594.767899997532368, 256857.556499999016523 ], [ 357593.104900002479553, 256856.810499999672174 ], [ 357591.234899997711182, 256855.971500001847744 ], [ 357579.534599997103214, 256873.366799999028444 ], [ 357576.949299998581409, 256889.075500000268221 ], [ 357583.75110000371933, 256890.214200001209974 ], [ 357594.792099997401237, 256892.0625 ], [ 357609.231899999082088, 256863.889600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602019500", "MAP": "D9-1287-T76", "PARCEL_NAM": "394-C", "ACRE": "2.12", "LONGITUDE": -64.88495885, "LATITUDE": 18.34839539, "OBJECTID_1": 21008, "PARCEL_NO_": "105602019500", "Tax_Legal_": "394-C&394-C1 ANNA'S RETREAT NEW QTR", "Name": "CASSIA REALTY CORP.", "Address": "P.O. BOX 4092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 294000, "Improved_V": 108800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 371.17552567400003, "SHAPE_Area": 2698.0721195199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363674.897100001573563, 257694.880300000309944 ], [ 363670.912299998104572, 257689.359200000762939 ], [ 363664.531900003552437, 257681.074400000274181 ], [ 363648.576499998569489, 257660.889899998903275 ], [ 363625.739000000059605, 257691.311500001698732 ], [ 363623.311099998652935, 257692.347100000828505 ], [ 363617.647100001573563, 257694.622800000011921 ], [ 363611.225400000810623, 257691.192699998617172 ], [ 363579.118500001728535, 257673.831399999558926 ], [ 363558.228100001811981, 257665.00560000166297 ], [ 363555.181199997663498, 257663.718400001525879 ], [ 363554.280299998819828, 257665.756400000303984 ], [ 363557.402000002563, 257667.320799998939037 ], [ 363576.672600001096725, 257676.977800000458956 ], [ 363595.140500001609325, 257686.205899998545647 ], [ 363612.805600002408028, 257695.005399998277426 ], [ 363633.683399997651577, 257705.308699999004602 ], [ 363648.936800003051758, 257713.243999999016523 ], [ 363650.542300000786781, 257714.101500000804663 ], [ 363675.383299998939037, 257732.45890000090003 ], [ 363688.203400000929832, 257742.063000001013279 ], [ 363694.824699997901917, 257722.063299998641014 ], [ 363686.057800002396107, 257709.959300000220537 ], [ 363674.897100001573563, 257694.880300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602010500", "MAP": "D9-608-T66", "PARCEL_NAM": "14-6", "ACRE": ".58", "LONGITUDE": -64.88336766, "LATITUDE": 18.34813933, "OBJECTID_1": 20920, "PARCEL_NO_": "105602010500", "Tax_Legal_": "14-6 ANNAS RETREAT NEW QTRS.", "Name": "PINNEY, DAVID A, & PEARLINE D", "Address": "PO Box 9952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75600, "Improved_V": 247200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.679738891, "SHAPE_Area": 2473.8992669499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363857.136900000274181, 257677.394299998879433 ], [ 363836.853299997746944, 257647.074099998921156 ], [ 363830.270599998533726, 257647.827199999243021 ], [ 363785.016699999570847, 257653.004700001329184 ], [ 363787.365000002086163, 257656.69819999858737 ], [ 363793.133000001311302, 257664.830699998885393 ], [ 363797.435900002717972, 257675.137600000947714 ], [ 363801.738799996674061, 257682.542599998414516 ], [ 363804.040299996733665, 257690.848099999129772 ], [ 363803.840199999511242, 257699.153599999845028 ], [ 363801.238399997353554, 257707.759399998933077 ], [ 363800.672200001776218, 257708.688000001013279 ], [ 363839.096500001847744, 257690.8429000005126 ], [ 363845.104500003159046, 257687.407400000840425 ], [ 363857.136900000274181, 257677.394299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020600", "MAP": "A3-54-T44", "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.87482369, "LATITUDE": 18.34743903, "OBJECTID_1": 21918, "PARCEL_NO_": "105701020600", "Tax_Legal_": "FRYDENDAHL 3 EAST END QTR", "Name": "HERMAN, HENRY", "Address": "PO Box 503371", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 236900, "Improved_V": 3300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 576.56148738000002, "SHAPE_Area": 9717.7851499400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364757.321400001645088, 257497.594799999147654 ], [ 364733.541599996387959, 257497.344799999147654 ], [ 364664.979500003159046, 257738.135000001639128 ], [ 364668.774700000882149, 257738.900600001215935 ], [ 364671.189999997615814, 257739.342500001192093 ], [ 364690.741099998354912, 257716.071199998259544 ], [ 364711.892200000584126, 257694.290600001811981 ], [ 364718.420100003480911, 257685.267000000923872 ], [ 364720.885799996554852, 257679.798700001090765 ], [ 364722.510999999940395, 257678.334399998188019 ], [ 364729.089100003242493, 257663.400600001215935 ], [ 364729.936800003051758, 257658.552299998700619 ], [ 364779.597699999809265, 257508.449099998921156 ], [ 364782.900399997830391, 257497.863699998706579 ], [ 364767.953299999237061, 257497.706599999219179 ], [ 364757.321400001645088, 257497.594799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020500", "MAP": "A3-54-T44", "PARCEL_NAM": "4", "ACRE": null, "LONGITUDE": -64.87544788, "LATITUDE": 18.3478047, "OBJECTID_1": 21916, "PARCEL_NO_": "105701020500", "Tax_Legal_": "4 FRYDENDAHL RED HOOK QTR", "Name": "JOHNSON, CARRIE M.", "Address": "PO Box 358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59100, "Improved_V": 160300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 547.62718051399997, "SHAPE_Area": 12343.0972901 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364721.425399996340275, 257539.896899998188019 ], [ 364707.362199999392033, 257535.145899999886751 ], [ 364700.218500003218651, 257559.752199999988079 ], [ 364662.912100002169609, 257552.343800000846386 ], [ 364654.564900003373623, 257549.492800001055002 ], [ 364651.763300001621246, 257558.698600001633167 ], [ 364596.326999999582767, 257724.16440000012517 ], [ 364634.965300001204014, 257732.079999998211861 ], [ 364664.979500003159046, 257738.135000001639128 ], [ 364721.425399996340275, 257539.896899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105701020400", "MAP": "D9-7195-T003", "PARCEL_NAM": "EASMENT A", "ACRE": ".01", "LONGITUDE": -64.87534322, "LATITUDE": 18.3463361, "OBJECTID_1": 21915, "PARCEL_NO_": "105701020400", "Tax_Legal_": "5 ESTATE FRYDENDAHL EAST END QUARTE", "Name": "ULYSSES A. PILGRIM JR. (LIFE ESTATE)", "Address": "PO Box 304109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 205800, "Improved_V": 201400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.556653354200002, "SHAPE_Area": 44.692988548099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364667.457599997520447, 257488.204799998551607 ], [ 364670.012100003659725, 257488.968199998140335 ], [ 364674.821199998259544, 257472.466600000858307 ], [ 364672.38289999961853, 257471.762200001627207 ], [ 364667.457599997520447, 257488.204799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8728827, "LATITUDE": 18.34832187, "OBJECTID_1": 22278, "PARCEL_NO_": "105702012300", "Tax_Legal_": "FRYDENDAHL 11-5-4 EAST END QTR.", "Name": "CHARLES, LEONARD JN", "Address": "6750 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 139900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.04564185800001, "SHAPE_Area": 1070.0069766900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364953.715800002217293, 257704.502399999648333 ], [ 364950.641599997878075, 257686.745400000363588 ], [ 364907.853100001811981, 257692.728000000119209 ], [ 364908.5929000005126, 257700.54450000077486 ], [ 364913.236599996685982, 257723.38060000166297 ], [ 364953.715800002217293, 257704.502399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602010200", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-118", "ACRE": "0.14", "LONGITUDE": -64.88459701, "LATITUDE": 18.34833494, "OBJECTID_1": 20917, "PARCEL_NO_": "105602010200", "Tax_Legal_": "394-118 ANNAS RETREAT NEW QTR", "Name": "MALONE, ELISE", "Address": "ANNAS RETREAT 394-118", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 151000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.374174890600003, "SHAPE_Area": 519.38925796900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363707.993699997663498, 257690.718199998140335 ], [ 363696.012299999594688, 257677.321199998259544 ], [ 363674.897100001573563, 257694.880300000309944 ], [ 363686.057800002396107, 257709.959300000220537 ], [ 363707.993699997663498, 257690.718199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-8", "ACRE": ".23", "LONGITUDE": -64.87641916, "LATITUDE": 18.34774254, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.759090171, "SHAPE_Area": 958.16885689900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364532.991099998354912, 257638.6064000017941 ], [ 364572.4341000020504, 257653.400699999183416 ], [ 364579.2195999994874, 257631.847800001502037 ], [ 364540.048299998044968, 257616.68189999833703 ], [ 364532.991099998354912, 257638.6064000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702070300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86934245, "LATITUDE": 18.3482767, "OBJECTID_1": 22736, "PARCEL_NO_": "105702070300", "Tax_Legal_": "FRYDENDAHL 56-59 EAST END QTR.", "Name": "SCOTLAND, SKELFORD & HERMINA", "Address": "PO Box 11877", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.429107434, "SHAPE_Area": 1621.14062784 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365323.141800001263618, 257691.693999998271465 ], [ 365278.88629999756813, 257680.565999999642372 ], [ 365273.008400000631809, 257707.96000000089407 ], [ 365285.875200003385544, 257712.076099999248981 ], [ 365299.535800002515316, 257717.676399998366833 ], [ 365305.147600002586842, 257721.521999999880791 ], [ 365319.736800000071526, 257712.775499999523163 ], [ 365348.085400000214577, 257698.019799999892712 ], [ 365323.141800001263618, 257691.693999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87373518, "LATITUDE": 18.34816397, "OBJECTID_1": 22302, "PARCEL_NO_": "105702015000", "Tax_Legal_": "FRYDENDAHL 52-8 EAST END QTR", "Name": "LUTHERAN CHURCH OF THE REFORMA", "Address": "PO Box 502323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 170300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.49447332099999, "SHAPE_Area": 3535.4641187900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364816.246399998664856, 257655.247999999672174 ], [ 364809.553099997341633, 257683.690799999982119 ], [ 364802.879699997603893, 257709.811799999326468 ], [ 364805.296800002455711, 257710.042700000107288 ], [ 364827.851999998092651, 257712.760400000959635 ], [ 364867.321699999272823, 257717.72749999910593 ], [ 364863.495200000703335, 257693.631499998271465 ], [ 364866.729400001466274, 257692.60249999910593 ], [ 364869.169900000095367, 257690.089400000870228 ], [ 364870.843699999153614, 257682.925900001078844 ], [ 364864.677299998700619, 257649.522599998861551 ], [ 364816.246399998664856, 257655.247999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601082500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89236105000001, "LATITUDE": 18.34831251, "OBJECTID_1": 20902, "PARCEL_NO_": "105601082500", "Tax_Legal_": "215-185 ANNAS RETREAT NEW QTR.", "Name": "ALEXIS, LUNIA E & SYLVIO", "Address": "PO Box 10895", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 70700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.10752209499999, "SHAPE_Area": 596.40777490899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362887.948700003325939, 257686.961800001561642 ], [ 362878.425800003111362, 257668.940900001674891 ], [ 362871.94650000333786, 257672.265399999916553 ], [ 362870.36089999973774, 257669.085999999195337 ], [ 362854.931199997663498, 257681.836399998515844 ], [ 362862.031599998474121, 257700.259700000286102 ], [ 362887.948700003325939, 257686.961800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701071500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87072578, "LATITUDE": 18.34817047, "OBJECTID_1": 22250, "PARCEL_NO_": "105701071500", "Tax_Legal_": "FRYDENDAHL 56-23 EASTEND QTR", "Name": "HUTTON, OSWALD & ELVA", "Address": "33 Ruth Dr", "City": "Palm Coast", "State": "Florida", "Zip": 32164, "Country": "United States", "Land_Value": 25900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.353639732, "SHAPE_Area": 2067.7644692200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365161.319399997591972, 257661.449700001627207 ], [ 365144.268100000917912, 257675.242300000041723 ], [ 365124.029399998486042, 257684.575899999588728 ], [ 365142.303099997341633, 257716.600600000470877 ], [ 365169.019299998879433, 257704.153599999845028 ], [ 365177.931900002062321, 257699.160300001502037 ], [ 365189.288599997758865, 257691.231699999421835 ], [ 365169.438199996948242, 257654.972300000488758 ], [ 365161.319399997591972, 257661.449700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602010100", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-115", "ACRE": "0.14", "LONGITUDE": -64.88583984, "LATITUDE": 18.34825785, "OBJECTID_1": 20916, "PARCEL_NO_": "105602010100", "Tax_Legal_": "394-115 ANNAS RETREAT NEW QTR", "Name": "McCARTHY, EILEEN", "Address": "394-115 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 176000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.704556645, "SHAPE_Area": 650.14314287499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363557.402000002563, 257667.320799998939037 ], [ 363554.280299998819828, 257665.756400000303984 ], [ 363546.781499996781349, 257683.770799998193979 ], [ 363546.486494268639944, 257685.727463322225958 ], [ 363546.52956320985686, 257687.705771895096404 ], [ 363546.909444492310286, 257689.64774253196083 ], [ 363547.615003995306324, 257691.496457093744539 ], [ 363548.625562140427064, 257693.197730727959424 ], [ 363549.911499999463558, 257694.701699998229742 ], [ 363562.745899997651577, 257702.617199998348951 ], [ 363576.672600001096725, 257676.977800000458956 ], [ 363557.402000002563, 257667.320799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602020300", "MAP": "A9-167I-71", "PARCEL_NAM": "394-315", "ACRE": ".134", "LONGITUDE": -64.88868319, "LATITUDE": 18.34828803, "OBJECTID_1": 21038, "PARCEL_NO_": "105602020300", "Tax_Legal_": "394-315 ANNAS RETREAT NEW QTR", "Name": "JOSEPH, M AY C", "Address": "394-313 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 165200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.449936402099993, "SHAPE_Area": 543.81249370299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363275.808399997651577, 257687.392000000923872 ], [ 363265.489900000393391, 257668.098099999129772 ], [ 363242.776500001549721, 257683.955299999564886 ], [ 363252.319200001657009, 257699.65430000051856 ], [ 363275.808399997651577, 257687.392000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602020800", "MAP": "A9-167I-71", "PARCEL_NAM": "394-299", "ACRE": ".146", "LONGITUDE": -64.88802064, "LATITUDE": 18.34825021, "OBJECTID_1": 21043, "PARCEL_NO_": "105602020800", "Tax_Legal_": "ANNAS RETREAT 394-299 NEW QTR", "Name": "CARTY, KRECIA D.", "Address": "10417 Hayes Ave", "City": "Silver Spring", "State": "Maryland", "Zip": 20902, "Country": "United States", "Land_Value": 26400, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.546691127, "SHAPE_Area": 690.86347695100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363335.6570999994874, 257666.5614 ], [ 363333.717000000178814, 257662.858800001442432 ], [ 363312.486000001430511, 257673.100699998438358 ], [ 363314.597699999809265, 257677.576999999582767 ], [ 363324.894500002264977, 257699.403900001198053 ], [ 363335.42509999871254, 257693.790600001811981 ], [ 363346.765699997544289, 257687.761700000613928 ], [ 363335.6570999994874, 257666.5614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601082800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89173925, "LATITUDE": 18.3482498, "OBJECTID_1": 20905, "PARCEL_NO_": "105601082800", "Tax_Legal_": "ANNAS RETREAT 215-181 NEW QTR.", "Name": "DONOVAN, PACITA", "Address": "PO Box 955", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21900, "Improved_V": 118400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.538292148400004, "SHAPE_Area": 617.76779992700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362939.752300001680851, 257663.9543999992311 ], [ 362937.356700003147125, 257661.190600000321865 ], [ 362919.538699999451637, 257670.332899998873472 ], [ 362933.842000000178814, 257695.147900000214577 ], [ 362950.864399999380112, 257684.732500001788139 ], [ 362951.697700001299381, 257681.572900000959635 ], [ 362950.93639999628067, 257676.28940000012517 ], [ 362939.752300001680851, 257663.9543999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602030200", "MAP": "A9-167I-71", "PARCEL_NAM": "394-284", "ACRE": ".133", "LONGITUDE": -64.88973736, "LATITUDE": 18.34826408, "OBJECTID_1": 21101, "PARCEL_NO_": "105602030200", "Tax_Legal_": "ANNAS RETREAT 394-284 NEW QTR", "Name": "BLASH, EVLINE ORA", "Address": "394-284 ANNA RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 181700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.945109286499999, "SHAPE_Area": 562.70502438899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363164.589400000870228, 257680.360100001096725 ], [ 363149.406099997460842, 257664.192699998617172 ], [ 363129.891000002622604, 257683.242499999701977 ], [ 363149.132799997925758, 257696.276700001209974 ], [ 363151.566100001335144, 257694.607799999415874 ], [ 363164.589400000870228, 257680.360100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87420097, "LATITUDE": 18.34826493, "OBJECTID_1": 22307, "PARCEL_NO_": "105702015700", "Tax_Legal_": "FRYDENDAHL 52-7E EAST END QTR", "Name": "MARSH, CONSTANTIA", "Address": "PO Box 10752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32800, "Improved_V": 281100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.254239289, "SHAPE_Area": 870.27113183899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364809.553099997341633, 257683.690799999982119 ], [ 364778.137500002980232, 257679.845100000500679 ], [ 364769.851400002837181, 257705.952899999916553 ], [ 364802.879699997603893, 257709.811799999326468 ], [ 364809.553099997341633, 257683.690799999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602010300", "MAP": "C9-217-T77", "PARCEL_NAM": "394-11", "ACRE": "0.16", "LONGITUDE": -64.88419038000001, "LATITUDE": 18.34821362, "OBJECTID_1": 20918, "PARCEL_NO_": "105602010300", "Tax_Legal_": "ANNAS RETREAT 394-11 NEW QTR", "Name": "OLA-NIYI, KUUMBA & AUDIA", "Address": "17B-39 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 39500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.88664658499999, "SHAPE_Area": 693.76515503099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363754.059600003063679, 257678.640700001269579 ], [ 363741.307800002396107, 257661.015599999576807 ], [ 363714.496299996972084, 257684.649700000882149 ], [ 363725.66780000180006, 257698.462200000882149 ], [ 363754.059600003063679, 257678.640700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010200", "MAP": "D9-8323-T009", "PARCEL_NAM": "332-B", "ACRE": ".283", "LONGITUDE": -64.90233205, "LATITUDE": 18.34791582, "OBJECTID_1": 19786, "PARCEL_NO_": "105502010200", "Tax_Legal_": "332-A WINTBERG NO.3 NORTHSIDE QTR", "Name": "MONSANTO, WILMA M", "Address": "P O BOX 2763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.51969302000001, "SHAPE_Area": 1348.8640710699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361792.162399999797344, 257638.022700000554323 ], [ 361817.951399996876717, 257647.693599998950958 ], [ 361822.211199998855591, 257652.879399999976158 ], [ 361843.854099996387959, 257638.789700001478195 ], [ 361851.130000002682209, 257634.027300000190735 ], [ 361830.712099999189377, 257625.197999998927116 ], [ 361824.752300001680851, 257621.445500001311302 ], [ 361821.882700003683567, 257617.472300000488758 ], [ 361819.233900003135204, 257612.064300000667572 ], [ 361811.806500002741814, 257607.794100001454353 ], [ 361809.297600001096725, 257606.69649999961257 ], [ 361807.572800002992153, 257607.480500001460314 ], [ 361806.475199997425079, 257608.734900001436472 ], [ 361801.589199997484684, 257615.806600000709295 ], [ 361798.303400002419949, 257621.556600000709295 ], [ 361794.333200000226498, 257628.264899998903275 ], [ 361792.142700001597404, 257632.098200000822544 ], [ 361788.85700000077486, 257636.752999998629093 ], [ 361792.162399999797344, 257638.022700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702015600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87461254, "LATITUDE": 18.34817957, "OBJECTID_1": 22306, "PARCEL_NO_": "105702015600", "Tax_Legal_": "FRYDENDAHL 52-7D EAST END QTR", "Name": "FRANCIS, OSCAR & ROSEMARY-LIFE", "Address": "6705 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39400, "Improved_V": 174700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.415662309, "SHAPE_Area": 1539.0972251600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364774.170699998736382, 257672.213300000876188 ], [ 364735.541400000452995, 257663.242300000041723 ], [ 364733.907200001180172, 257665.761999998241663 ], [ 364729.774999998509884, 257677.549400001764297 ], [ 364727.329099997878075, 257680.695799998939037 ], [ 364725.678700000047684, 257685.115299999713898 ], [ 364715.072499997913837, 257699.593899998813868 ], [ 364756.962999999523163, 257704.369699999690056 ], [ 364759.441299997270107, 257697.423900000751019 ], [ 364761.043099999427795, 257698.703600000590086 ], [ 364763.460299998521805, 257698.934500001370907 ], [ 364766.703500002622604, 257696.850099999457598 ], [ 364774.170699998736382, 257672.213300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602012500", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-117", "ACRE": "0.16", "LONGITUDE": -64.88470738, "LATITUDE": 18.34820767, "OBJECTID_1": 20940, "PARCEL_NO_": "105602012500", "Tax_Legal_": "394-117 ANNAS RETREAT NEW QTR", "Name": "BRUNEY, LUCY", "Address": "7680 Sugar Plum Ln", "City": "Lithonia", "State": "Georgia", "Zip": 30038, "Country": "United States", "Land_Value": 21900, "Improved_V": 237900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.067833523800005, "SHAPE_Area": 477.94256608799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363696.012299999594688, 257677.321199998259544 ], [ 363693.620300002396107, 257674.135200001299381 ], [ 363688.809399999678135, 257670.929499998688698 ], [ 363681.61370000243187, 257663.693399999290705 ], [ 363664.531900003552437, 257681.074400000274181 ], [ 363670.912299998104572, 257689.359200000762939 ], [ 363674.897100001573563, 257694.880300000309944 ], [ 363696.012299999594688, 257677.321199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602021900", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-150", "ACRE": "0.13", "LONGITUDE": -64.8873532, "LATITUDE": 18.34822229, "OBJECTID_1": 21054, "PARCEL_NO_": "105602021900", "Tax_Legal_": "394-150 ANNAS RETREAT NO.1 NEW QTR", "Name": "MCCLEAN-JORDAN, MALAIKA; MALIK & MACHEO McCLEAN", "Address": "11 Claremont Ave", "City": "Montclair", "State": "New Jersey", "Zip": 7042, "Country": "United States", "Land_Value": 20200, "Improved_V": 199800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.435663344399998, "SHAPE_Area": 519.72739087100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363415.316600002348423, 257686.63399999961257 ], [ 363408.244999997317791, 257664.833500001579523 ], [ 363391.267499998211861, 257669.971900001168251 ], [ 363384.79900000244379, 257672.029899999499321 ], [ 363391.085900001227856, 257691.290800001472235 ], [ 363404.82379999756813, 257687.814699999988079 ], [ 363415.316600002348423, 257686.63399999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601082600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89214523, "LATITUDE": 18.34820701, "OBJECTID_1": 20903, "PARCEL_NO_": "105601082600", "Tax_Legal_": "215-186 ANNAS RETREAT NEW QTR.", "Name": "PHILLIPS, DALTON & ALICIA", "Address": "P.O. BOX 3251", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 62800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.983988343700005, "SHAPE_Area": 481.26130817799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362909.008100003004074, 257675.946199998259544 ], [ 362898.678900003433228, 257657.918699998408556 ], [ 362878.425800003111362, 257668.940900001674891 ], [ 362887.948700003325939, 257686.961800001561642 ], [ 362904.958599999547005, 257678.024000000208616 ], [ 362909.008100003004074, 257675.946199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602018400", "MAP": "D9-5913-T95", "PARCEL_NAM": "394C-7", "ACRE": "0.22", "LONGITUDE": -64.88519453000001, "LATITUDE": 18.34807857, "OBJECTID_1": 20999, "PARCEL_NO_": "105602018400", "Tax_Legal_": "394C-7 ESTATE ANNAS RETREAT NEW QTR.", "Name": "GUMBS, JAMES & KATUBELLE", "Address": "PO Box 305295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 176200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.17970597799999, "SHAPE_Area": 1013.07326672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363648.576499998569489, 257660.889899998903275 ], [ 363635.009400002658367, 257644.313499998301268 ], [ 363608.334600001573563, 257651.905699998140335 ], [ 363611.522100001573563, 257656.364700000733137 ], [ 363623.311099998652935, 257692.347100000828505 ], [ 363625.739000000059605, 257691.311500001698732 ], [ 363648.576499998569489, 257660.889899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014300", "MAP": "A9-85-T68(2)", "PARCEL_NAM": "325", "ACRE": "0.67", "LONGITUDE": -64.89979684, "LATITUDE": 18.3481123, "OBJECTID_1": 19840, "PARCEL_NO_": "105502014300", "Tax_Legal_": "WINTBERG ESTATE 325 GT. NORTHSIDE", "Name": "DONASTORG, ADLAH ALPHONSE", "Address": "PO Box 10325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 101900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.68554232899999, "SHAPE_Area": 1534.33542253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362097.430900000035763, 257624.763099998235703 ], [ 362087.774899996817112, 257622.361999999731779 ], [ 362058.346699997782707, 257669.195000000298023 ], [ 362066.386399999260902, 257672.005100000649691 ], [ 362078.418200001120567, 257679.491799999028444 ], [ 362103.457000002264977, 257674.630499999970198 ], [ 362097.430900000035763, 257624.763099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601080100", "MAP": "C9-312C-T88", "PARCEL_NAM": "215-77", "ACRE": null, "LONGITUDE": -64.89285056, "LATITUDE": 18.34821609, "OBJECTID_1": 20878, "PARCEL_NO_": "105601080100", "Tax_Legal_": "215-77&POR 404 ANNAS RET NEW QTR.", "Name": "FORBES, RUFUS & JASON A", "Address": "PO Box 302748", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 38800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.48843409200001, "SHAPE_Area": 639.55247966100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362815.628700003027916, 257657.239000000059605 ], [ 362807.49549999833107, 257665.405099999159575 ], [ 362801.765000000596046, 257675.490699999034405 ], [ 362800.107400000095367, 257680.754399999976158 ], [ 362829.906800001859665, 257685.009100001305342 ], [ 362838.093999996781349, 257670.51069999858737 ], [ 362815.628700003027916, 257657.239000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602018200", "MAP": "D9-5913-T95", "PARCEL_NAM": "394C-5", "ACRE": "0.16", "LONGITUDE": -64.88548069, "LATITUDE": 18.34813356, "OBJECTID_1": 20997, "PARCEL_NO_": "105602018200", "Tax_Legal_": "394C-5 ANNAS RETREAT NEW QUARTER", "Name": "RUPERT FOSTER CONSTRUCTION CO", "Address": "PO Box 4092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52300, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.26445568299999, "SHAPE_Area": 736.119646139 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363596.946599997580051, 257648.36939999833703 ], [ 363596.843500003218651, 257648.310699999332428 ], [ 363595.446199998259544, 257650.322500001639128 ], [ 363579.118500001728535, 257673.831399999558926 ], [ 363611.225400000810623, 257691.192699998617172 ], [ 363612.902699999511242, 257683.607099998742342 ], [ 363605.041000001132488, 257659.900299999862909 ], [ 363605.2482094365987, 257658.332918838859769 ], [ 363605.194811378722079, 257656.752802355360473 ], [ 363604.882260151731316, 257655.202985855110455 ], [ 363604.319068253098521, 257653.725679407769348 ], [ 363603.520574511261657, 257652.361118233529851 ], [ 363602.508526324294508, 257651.146466875623446 ], [ 363601.310487358365208, 257650.114807004283648 ], [ 363599.959086836490314, 257649.294236420246307 ], [ 363598.491130864538718, 257648.707103796041338 ], [ 363596.946599997580051, 257648.36939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602020200", "MAP": "A9-167I-71", "PARCEL_NAM": "394-316", "ACRE": ".121", "LONGITUDE": -64.88848275, "LATITUDE": 18.34817497, "OBJECTID_1": 21037, "PARCEL_NO_": "105602020200", "Tax_Legal_": "394-316 ANNAS RETREAT NEW QTR", "Name": "KUNTZ, GOLDA & GOVEN", "Address": "394-316 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 208400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.695328634399999, "SHAPE_Area": 513.77144293100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363296.056100003421307, 257677.003100000321865 ], [ 363284.942100003361702, 257656.436000000685453 ], [ 363265.489900000393391, 257668.098099999129772 ], [ 363275.808399997651577, 257687.392000000923872 ], [ 363296.056100003421307, 257677.003100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87252609, "LATITUDE": 18.34807786, "OBJECTID_1": 22279, "PARCEL_NO_": "105702012400", "Tax_Legal_": "FRYDENDAHL 11-5-3 EAST END QTR", "Name": "MERCER, ROY A", "Address": "PO Box 9727", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29900, "Improved_V": 198500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.718676746, "SHAPE_Area": 929.67454565000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364980.430299997329712, 257692.266499999910593 ], [ 364976.720600001513958, 257654.450399998575449 ], [ 364952.507799997925758, 257656.996500000357628 ], [ 364961.001400001347065, 257701.184500001370907 ], [ 364980.430299997329712, 257692.266499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602080100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89100914, "LATITUDE": 18.34818041, "OBJECTID_1": 21370, "PARCEL_NO_": "105602080100", "Tax_Legal_": "ANNAS RETREAT 215-203 NEW QTR.", "Name": "CALLWOOD, MARVA", "Address": "PO Box 194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 59900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.906123116800003, "SHAPE_Area": 547.72723006399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363011.609399996697903, 257653.354600001126528 ], [ 362999.415799997746944, 257664.864900000393391 ], [ 363000.164599999785423, 257671.625999998301268 ], [ 363012.155000001192093, 257683.967599999159575 ], [ 363014.564900003373623, 257685.04280000180006 ], [ 363017.790200002491474, 257685.069200001657009 ], [ 363021.029799997806549, 257683.407000001519918 ], [ 363029.978399999439716, 257674.192099999636412 ], [ 363011.609399996697903, 257653.354600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602021200", "MAP": "A9-167I-71", "PARCEL_NAM": "394-298", "ACRE": ".144", "LONGITUDE": -64.88781439, "LATITUDE": 18.34814894, "OBJECTID_1": 21047, "PARCEL_NO_": "105602021200", "Tax_Legal_": "394-298 ANNAS RETREAT NEW QTR", "Name": "HENRY, L. & C. & BAPTISTE, R", "Address": "PO Box 446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20200, "Improved_V": 157500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.22401629300001, "SHAPE_Area": 689.31775008800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363357.522900000214577, 257655.552400000393391 ], [ 363355.692900002002716, 257652.19649999961257 ], [ 363333.717000000178814, 257662.858800001442432 ], [ 363335.6570999994874, 257666.5614 ], [ 363346.765699997544289, 257687.761700000613928 ], [ 363359.726000003516674, 257680.901700001209974 ], [ 363369.432300001382828, 257677.392499998211861 ], [ 363357.522900000214577, 257655.552400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90129973000001, "LATITUDE": 18.34801523, "OBJECTID_1": 19787, "PARCEL_NO_": "105502010300", "Tax_Legal_": "329 WINTBERG GT. NORTHSIDE", "Name": "LETTSOME, JAMES & RUDENA", "Address": "PO Box 303264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47600, "Improved_V": 199700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.144708632, "SHAPE_Area": 1453.7087169700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361942.22580000013113, 257668.573499999940395 ], [ 361946.386100001633167, 257623.146800000220537 ], [ 361928.900799997150898, 257624.650299999862909 ], [ 361915.999799996614456, 257624.544700000435114 ], [ 361908.773900002241135, 257624.34010000154376 ], [ 361902.349299997091293, 257654.0 ], [ 361908.492700003087521, 257655.755300000309944 ], [ 361914.25280000269413, 257657.855700001120567 ], [ 361938.401600003242493, 257666.661400001496077 ], [ 361942.22580000013113, 257668.573499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90093348000001, "LATITUDE": 18.34803089, "OBJECTID_1": 19788, "PARCEL_NO_": "105502010400", "Tax_Legal_": "328 ESTATE WINTBERG GT. NORTHSIDE QTR.", "Name": "DAVID, MARILYN T", "Address": "PO Box 11094", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50100, "Improved_V": 212200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.726950824, "SHAPE_Area": 2037.19112286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361985.350900001823902, 257663.204599998891354 ], [ 361986.219099998474121, 257616.886799998581409 ], [ 361949.074799999594688, 257622.915600001811981 ], [ 361946.386100001633167, 257623.146800000220537 ], [ 361942.22580000013113, 257668.573499999940395 ], [ 361945.67230000346899, 257670.296700000762939 ], [ 361954.264899998903275, 257672.610100001096725 ], [ 361957.821000002324581, 257672.176399998366833 ], [ 361961.039899997413158, 257671.783900000154972 ], [ 361967.153899997472763, 257670.627199999988079 ], [ 361983.275499999523163, 257663.932799998670816 ], [ 361985.350900001823902, 257663.204599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602022000", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-149", "ACRE": "0.14", "LONGITUDE": -64.88714289000001, "LATITUDE": 18.348187, "OBJECTID_1": 21055, "PARCEL_NO_": "105602022000", "Tax_Legal_": "394-149 ANNAS RETREAT NEW QTR", "Name": "LYNCH-IZAAK, ESTHER", "Address": "PO BOX 9384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21800, "Improved_V": 105100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.552580996499998, "SHAPE_Area": 480.24000139899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363434.675300002098083, 257685.948100000619888 ], [ 363430.841499999165535, 257662.696400001645088 ], [ 363408.244999997317791, 257664.833500001579523 ], [ 363415.316600002348423, 257686.63399999961257 ], [ 363434.675300002098083, 257685.948100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601082400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89250527, "LATITUDE": 18.3481479, "OBJECTID_1": 20901, "PARCEL_NO_": "105601082400", "Tax_Legal_": "215-118 ANNAS RETREAT NEW QTR.", "Name": "FRETT-GREGORY, DONNA AND IRIS HOBSON", "Address": "PO Box 9124", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 100700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.73224606700001, "SHAPE_Area": 638.78703527000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362866.429999999701977, 257657.232599999755621 ], [ 362863.220899999141693, 257655.306499999016523 ], [ 362851.990099996328354, 257648.459600001573563 ], [ 362838.093999996781349, 257670.51069999858737 ], [ 362854.931199997663498, 257681.836399998515844 ], [ 362870.36089999973774, 257669.085999999195337 ], [ 362869.568899996578693, 257667.390799999237061 ], [ 362873.622100003063679, 257664.890799999237061 ], [ 362871.240900002419949, 257660.438400000333786 ], [ 362866.429999999701977, 257657.232599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602024300", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-144", "ACRE": "0.15", "LONGITUDE": -64.88612151, "LATITUDE": 18.34817527, "OBJECTID_1": 21078, "PARCEL_NO_": "105602024300", "Tax_Legal_": "ANNAS RETREAT 394-144 NEW QTR", "Name": "BROWN, ORLANDO, ISALINE, ORLANDO, JR.", "Address": "PO Box 303602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 103400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.085115417699996, "SHAPE_Area": 561.343580449 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363531.626999996602535, 257663.943500000983477 ], [ 363517.11879999935627, 257663.191500000655651 ], [ 363518.535400003194809, 257686.212200000882149 ], [ 363529.010300002992153, 257687.142400000244379 ], [ 363535.468000002205372, 257686.35080000013113 ], [ 363537.903099998831749, 257684.470899999141693 ], [ 363538.72919999808073, 257682.155699998140335 ], [ 363540.354400001466274, 257680.691300000995398 ], [ 363547.747900001704693, 257664.708700001239777 ], [ 363531.626999996602535, 257663.943500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602022500", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-148", "ACRE": "0.13", "LONGITUDE": -64.8869418, "LATITUDE": 18.34817613, "OBJECTID_1": 21060, "PARCEL_NO_": "105602022500", "Tax_Legal_": "394-148 ANNAS RETREAT NO 1.NEW QTR", "Name": "ANGELA B. WILLIAMS HYNDMAN REV. TRUST", "Address": "355 Falcon Ridge Dr", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 20200, "Improved_V": 181000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.552596386600001, "SHAPE_Area": 519.133619576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363454.833099998533726, 257686.113099999725819 ], [ 363453.434500001370907, 257660.981499999761581 ], [ 363430.841499999165535, 257662.696400001645088 ], [ 363434.675300002098083, 257685.948100000619888 ], [ 363454.833099998533726, 257686.113099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602022600", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-147", "ACRE": "0.14", "LONGITUDE": -64.886745, "LATITUDE": 18.34817434, "OBJECTID_1": 21061, "PARCEL_NO_": "105602022600", "Tax_Legal_": "394-147 ANNAS RETREAT NEW QTR", "Name": "TAYLOR, LORAINE", "Address": "2820 Blarney Way", "City": "Duluth", "State": "Georgia", "Zip": 30096, "Country": "United States", "Land_Value": 21800, "Improved_V": 202700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.592385428399993, "SHAPE_Area": 507.55845424500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363474.393200002610683, 257661.786299999803305 ], [ 363453.434500001370907, 257660.981499999761581 ], [ 363454.833099998533726, 257686.113099999725819 ], [ 363474.992700003087521, 257686.06700000166893 ], [ 363474.393200002610683, 257661.786299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602023500", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-146", "ACRE": "0.14", "LONGITUDE": -64.88654492000001, "LATITUDE": 18.34817739, "OBJECTID_1": 21070, "PARCEL_NO_": "105602023500", "Tax_Legal_": "ANNAS RETREAT 394-146 NEW QTR C", "Name": "MOOREHEAD, MAVIS", "Address": "PO Box 304553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 100200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.0810013105, "SHAPE_Area": 516.75169411100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363496.156499996781349, 257662.808800000697374 ], [ 363474.393200002610683, 257661.786299999803305 ], [ 363474.992700003087521, 257686.06700000166893 ], [ 363496.765000000596046, 257686.034099999815226 ], [ 363496.156499996781349, 257662.808800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602020100", "MAP": "A9-167I-71", "PARCEL_NAM": "394-313", "ACRE": ".133", "LONGITUDE": -64.88878659, "LATITUDE": 18.34814163, "OBJECTID_1": 21036, "PARCEL_NO_": "105602020100", "Tax_Legal_": "ANNAS RETREAT 394-313 NEW QTR", "Name": "BRUNEY, ROY & HELEN R", "Address": "ANNAS RETREAT 394-313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 143100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.878418886099993, "SHAPE_Area": 532.663578229 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363265.489900000393391, 257668.098099999129772 ], [ 363251.125600002706051, 257650.459699999541044 ], [ 363232.384400002658367, 257673.315600000321865 ], [ 363242.776500001549721, 257683.955299999564886 ], [ 363265.489900000393391, 257668.098099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602023600", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-145", "ACRE": "0.13", "LONGITUDE": -64.8863402, "LATITUDE": 18.34817989, "OBJECTID_1": 21071, "PARCEL_NO_": "105602023600", "Tax_Legal_": "ANNAS RETREAT 394-145 NEW QTR C", "Name": "BLYDEN, LINCOLN REX", "Address": "PO Box 7994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010994, "Country": "United States", "Land_Value": 17800, "Improved_V": 150800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.034436257400003, "SHAPE_Area": 493.770192081 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363517.11879999935627, 257663.191500000655651 ], [ 363496.156499996781349, 257662.808800000697374 ], [ 363496.765000000596046, 257686.034099999815226 ], [ 363518.535400003194809, 257686.212200000882149 ], [ 363517.11879999935627, 257663.191500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011300", "MAP": null, "PARCEL_NAM": "241", "ACRE": null, "LONGITUDE": -64.89445687, "LATITUDE": 18.347949, "OBJECTID_1": 20450, "PARCEL_NO_": "105601011300", "Tax_Legal_": "241 ANNAS RETREAT NEW QTR", "Name": "EDDY, JR. LIONEL & OTHERS", "Address": "P.O. BOX 4855", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 187900, "Improved_V": 86800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.988823978, "SHAPE_Area": 2843.99826738 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362670.02419999986887, 257616.361699998378754 ], [ 362629.773299999535084, 257608.432900000363588 ], [ 362622.016599997878075, 257667.053399998694658 ], [ 362664.672100000083447, 257676.690699998289347 ], [ 362680.490099996328354, 257618.347199998795986 ], [ 362670.02419999986887, 257616.361699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602030400", "MAP": "A9-167I-71", "PARCEL_NAM": "394-283", "ACRE": ".139", "LONGITUDE": -64.88957653, "LATITUDE": 18.34811475, "OBJECTID_1": 21103, "PARCEL_NO_": "105602030400", "Tax_Legal_": "ANNAS RETREAT 394-283 NEW QTR", "Name": "Trust Agreement of Renardo & May Rose Chrsitopher", "Address": "394-283 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 116800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.262282700499995, "SHAPE_Area": 508.83565297000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363180.837899997830391, 257666.138700000941753 ], [ 363165.670800000429153, 257648.071600001305342 ], [ 363149.406099997460842, 257664.192699998617172 ], [ 363164.589400000870228, 257680.360100001096725 ], [ 363175.150600001215935, 257671.158399999141693 ], [ 363180.837899997830391, 257666.138700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602017900", "MAP": "C9-217-T77", "PARCEL_NAM": "394-403", "ACRE": "0.20", "LONGITUDE": -64.88432756, "LATITUDE": 18.34806057, "OBJECTID_1": 20994, "PARCEL_NO_": "105602017900", "Tax_Legal_": "394-403 ANNAS RETREAT NEW QTR", "Name": "FABIAN, GLORIA", "Address": "PO Box 7274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25100, "Improved_V": 126200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.85435608500001, "SHAPE_Area": 908.31219076299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363741.307800002396107, 257661.015599999576807 ], [ 363738.125699996948242, 257655.923300001770258 ], [ 363723.734399996697903, 257641.451099999248981 ], [ 363698.515699997544289, 257667.420299999415874 ], [ 363714.496299996972084, 257684.649700000882149 ], [ 363741.307800002396107, 257661.015599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702070200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86900977000001, "LATITUDE": 18.34804907, "OBJECTID_1": 22735, "PARCEL_NO_": "105702070200", "Tax_Legal_": "FRYDENDAHL 56-54 EAST END QTR.", "Name": "VERONICA ALCENDOR & STACEY DEBRA THOMAS", "Address": "6817 Kenfig Dr", "City": "Falls Church", "State": "Virginia", "Zip": 22042, "Country": "United States", "Land_Value": 36400, "Improved_V": 224400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.19800345799999, "SHAPE_Area": 1000.2232512 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365354.879299998283386, 257657.756599999964237 ], [ 365349.233300000429153, 257657.921500001102686 ], [ 365329.10249999910593, 257654.590300001204014 ], [ 365323.141800001263618, 257691.693999998271465 ], [ 365348.085400000214577, 257698.019799999892712 ], [ 365354.879299998283386, 257657.756599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702070100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86863895, "LATITUDE": 18.34794586, "OBJECTID_1": 22734, "PARCEL_NO_": "105702070100", "Tax_Legal_": "FRYDENDAHL (REM) 56 EAST END QTR.", "Name": "RICHARDSON, MURIEL A.", "Address": "PO BOX 502785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 55900, "Improved_V": 54500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.687137957, "SHAPE_Area": 1747.1779958899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365420.235600002110004, 257653.01410000026226 ], [ 365386.476599998772144, 257640.283300001174212 ], [ 365384.860299997031689, 257640.692299999296665 ], [ 365369.436099998652935, 257652.809500001370907 ], [ 365362.150499999523163, 257656.127300001680851 ], [ 365354.879299998283386, 257657.756599999964237 ], [ 365348.085400000214577, 257698.019799999892712 ], [ 365420.235600002110004, 257653.01410000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602080300", "MAP": null, "PARCEL_NAM": "215-206", "ACRE": null, "LONGITUDE": -64.89053621, "LATITUDE": 18.34811103, "OBJECTID_1": 21372, "PARCEL_NO_": "105602080300", "Tax_Legal_": "215-206 ANNAS RETREAT NEW QTR.", "Name": "MATTHIAS, GILBERT & LAVERNE", "Address": "215-206 ESTATE ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 131000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.983987456799994, "SHAPE_Area": 522.70672053500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363080.065099999308586, 257663.414099998772144 ], [ 363065.691699996590614, 257646.8310999982059 ], [ 363046.988300003111362, 257665.254299998283386 ], [ 363062.194899998605251, 257678.677600000053644 ], [ 363066.256999999284744, 257675.122299998998642 ], [ 363080.065099999308586, 257663.414099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010500", "MAP": "A9-85-T68", "PARCEL_NAM": "327", "ACRE": "0.38", "LONGITUDE": -64.9005403, "LATITUDE": 18.34798831, "OBJECTID_1": 19789, "PARCEL_NO_": "105502010500", "Tax_Legal_": "327 WINTBERG GT. NORTHSIDE", "Name": "KARAWI, ADNAN & NAWAL", "Address": "P.O. BOX 5166", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47600, "Improved_V": 200400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.84432244000001, "SHAPE_Area": 1966.6779466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362030.13289999961853, 257668.119800001382828 ], [ 362020.118400000035763, 257613.153499998152256 ], [ 362008.020099997520447, 257613.476599998772144 ], [ 361986.219099998474121, 257616.886799998581409 ], [ 361985.350900001823902, 257663.204599998891354 ], [ 361990.647600002586842, 257661.346099998801947 ], [ 361991.858800001442432, 257661.417399998754263 ], [ 361995.045100003480911, 257661.604800000786781 ], [ 362006.646899998188019, 257662.530299998819828 ], [ 362014.248000003397465, 257665.669900000095367 ], [ 362019.634700000286102, 257669.933699999004602 ], [ 362022.859899997711182, 257669.960099998861551 ], [ 362030.13289999961853, 257668.119800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8729016, "LATITUDE": 18.34810796, "OBJECTID_1": 22277, "PARCEL_NO_": "105702012200", "Tax_Legal_": "FRYDENDAHL 11-5-5 EAST END QTR", "Name": "WILLIAMS, LISA", "Address": "BOX 4423", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32400, "Improved_V": 116000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.916412745, "SHAPE_Area": 961.79349074599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364946.351199999451637, 257663.811099998652935 ], [ 364903.978200003504753, 257671.829700000584126 ], [ 364907.853100001811981, 257692.728000000119209 ], [ 364950.641599997878075, 257686.745400000363588 ], [ 364946.351199999451637, 257663.811099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010600", "MAP": "A9-85-T68", "PARCEL_NAM": "326", "ACRE": "0.61", "LONGITUDE": -64.90013175, "LATITUDE": 18.34796341, "OBJECTID_1": 19790, "PARCEL_NO_": "105502010600", "Tax_Legal_": "326 ESTATE WINTBERG GREAT NORTHSIDE QTR.", "Name": "PETERS, JESHURAM", "Address": "326 Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94900, "Improved_V": 177600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.191726735, "SHAPE_Area": 2555.6652770199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362087.774899996817112, 257622.361999999731779 ], [ 362061.215199999511242, 257616.445099998265505 ], [ 362047.523999996483326, 257614.433200001716614 ], [ 362020.118400000035763, 257613.153499998152256 ], [ 362030.13289999961853, 257668.119800001382828 ], [ 362043.046499997377396, 257666.747800000011921 ], [ 362051.10419999808073, 257667.447000000625849 ], [ 362058.346699997782707, 257669.195000000298023 ], [ 362087.774899996817112, 257622.361999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601082700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89192471, "LATITUDE": 18.34809451, "OBJECTID_1": 20904, "PARCEL_NO_": "105601082700", "Tax_Legal_": "215-187 ANNAS RETREAT NEW QTR.", "Name": "SMITH, DONNA M. (TRUSTEE)", "Address": "215-187 Anna S Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 222500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.997491913, "SHAPE_Area": 617.85318122599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362909.008100003004074, 257675.946199998259544 ], [ 362919.538699999451637, 257670.332899998873472 ], [ 362937.356700003147125, 257661.190600000321865 ], [ 362922.970799997448921, 257646.085200000554323 ], [ 362919.74549999833107, 257646.058800000697374 ], [ 362898.678900003433228, 257657.918699998408556 ], [ 362909.008100003004074, 257675.946199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87230948, "LATITUDE": 18.34802761, "OBJECTID_1": 22280, "PARCEL_NO_": "105702012500", "Tax_Legal_": "FRYDENDAHL 11-5-2 EAST END QTR", "Name": "MERCER, KAJ J", "Address": "PO Box 1601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32400, "Improved_V": 156400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.153106489, "SHAPE_Area": 832.73722163599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365004.714900001883507, 257681.277300000190735 ], [ 365000.929700002074242, 257652.326499998569489 ], [ 364988.824199996888638, 257653.493999999016523 ], [ 364976.720600001513958, 257654.450399998575449 ], [ 364980.430299997329712, 257692.266499999910593 ], [ 365004.714900001883507, 257681.277300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602012600", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-116", "ACRE": "0.15", "LONGITUDE": -64.88484269, "LATITUDE": 18.34807215, "OBJECTID_1": 20941, "PARCEL_NO_": "105602012600", "Tax_Legal_": "394-116 ANNAS RETREAT NEW QTR", "Name": "EVELYN FREEMAN and DAINA MARIE COLLAZO", "Address": "PO Box 1491", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18800, "Improved_V": 166500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.820460950500006, "SHAPE_Area": 535.72792264099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363681.61370000243187, 257663.693399999290705 ], [ 363672.826999999582767, 257653.911200001835823 ], [ 363669.646700002253056, 257648.607799999415874 ], [ 363648.576499998569489, 257660.889899998903275 ], [ 363664.531900003552437, 257681.074400000274181 ], [ 363681.61370000243187, 257663.693399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602020500", "MAP": "A9-167I-71", "PARCEL_NAM": "394-317", "ACRE": ".125", "LONGITUDE": -64.8883049, "LATITUDE": 18.34807836, "OBJECTID_1": 21040, "PARCEL_NO_": "105602020500", "Tax_Legal_": "394-317 ANNAS RETREAT NEW QTR", "Name": "EUGENE SOMERSALL and ELIZABETH A SOMERSALL", "Address": "394-317 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 133000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.777311000300003, "SHAPE_Area": 498.537997179 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363314.684000000357628, 257667.445199999958277 ], [ 363301.968199998140335, 257645.598499998450279 ], [ 363299.53490000218153, 257647.267400000244379 ], [ 363284.942100003361702, 257656.436000000685453 ], [ 363296.056100003421307, 257677.003100000321865 ], [ 363314.684000000357628, 257667.445199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88760495, "LATITUDE": 18.34805808, "OBJECTID_1": 21048, "PARCEL_NO_": "105602021300", "Tax_Legal_": "394-152 ANNAS RETREAT No.1 NEW QTR", "Name": "NGUYEN, DAVID B. & NGA THI", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 102700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.660525209, "SHAPE_Area": 708.37069915899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363379.381399996578693, 257645.387699998915195 ], [ 363377.510200001299381, 257641.517499998211861 ], [ 363371.167700000107288, 257644.651200000196695 ], [ 363355.692900002002716, 257652.19649999961257 ], [ 363357.522900000214577, 257655.552400000393391 ], [ 363369.432300001382828, 257677.392499998211861 ], [ 363384.79900000244379, 257672.029899999499321 ], [ 363391.267499998211861, 257669.971900001168251 ], [ 363379.381399996578693, 257645.387699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602080200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89087223, "LATITUDE": 18.34805093, "OBJECTID_1": 21371, "PARCEL_NO_": "105602080200", "Tax_Legal_": "ANNAS RETREAT 215-204 NEW QTR", "Name": "DAVID, RONALYN & WILFRED", "Address": "PO Box 8092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24600, "Improved_V": 195400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.007792222299997, "SHAPE_Area": 577.68546360899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363044.6233000010252, 257658.902100000530481 ], [ 363027.055200003087521, 257638.7043999992311 ], [ 363011.609399996697903, 257653.354600001126528 ], [ 363029.978399999439716, 257674.192099999636412 ], [ 363044.6233000010252, 257658.902100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701071500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87041111000001, "LATITUDE": 18.3479839, "OBJECTID_1": 22250, "PARCEL_NO_": "105701071500", "Tax_Legal_": "FRYDENDAHL 56-23 EASTEND QTR", "Name": "HUTTON, OSWALD & ELVA", "Address": "33 Ruth Dr", "City": "Palm Coast", "State": "Florida", "Zip": 32164, "Country": "United States", "Land_Value": 25900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.01762246800001, "SHAPE_Area": 1030.3489323700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365211.97860000282526, 257678.118500001728535 ], [ 365194.512999996542931, 257645.889400001615286 ], [ 365184.007600001990795, 257648.547600001096725 ], [ 365169.438199996948242, 257654.972300000488758 ], [ 365189.288599997758865, 257691.231699999421835 ], [ 365193.347099997103214, 257688.098499998450279 ], [ 365211.97860000282526, 257678.118500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601082900", "MAP": "C9-261-T80", "PARCEL_NAM": "215-175", "ACRE": "0.11", "LONGITUDE": -64.89144892, "LATITUDE": 18.34808027, "OBJECTID_1": 20906, "PARCEL_NO_": "105601082900", "Tax_Legal_": "215-175 ANNAS RETREAT NEW QTR.", "Name": "LEONARD, NAURICIA", "Address": "PO Box 9181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 99400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.238138720500004, "SHAPE_Area": 490.02013651599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362981.101099997758865, 257665.356600001454353 ], [ 362976.954199999570847, 257651.171100001782179 ], [ 362968.957599997520447, 257643.295200001448393 ], [ 362950.867799997329712, 257660.953600000590086 ], [ 362960.872599996626377, 257669.866900000721216 ], [ 362968.581299997866154, 257671.05290000140667 ], [ 362975.69709999859333, 257667.939699999988079 ], [ 362981.101099997758865, 257665.356600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702070400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86933012, "LATITUDE": 18.34799613, "OBJECTID_1": 22737, "PARCEL_NO_": "105702070400", "Tax_Legal_": "FRYDENDAHL 56-55 EAST END QTR.", "Name": "LOUIS F ALCENDOR REVOCABLE LIVING TRUST", "Address": "56-55 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36600, "Improved_V": 183700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.22945465800001, "SHAPE_Area": 1530.1655030700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365329.10249999910593, 257654.590300001204014 ], [ 365312.999600000679493, 257651.714299999177456 ], [ 365300.906700000166893, 257651.404199998825788 ], [ 365292.834600001573563, 257652.3935999982059 ], [ 365283.943599998950958, 257654.853999998420477 ], [ 365278.88629999756813, 257680.565999999642372 ], [ 365323.141800001263618, 257691.693999998271465 ], [ 365329.10249999910593, 257654.590300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601080200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89271095, "LATITUDE": 18.34803747, "OBJECTID_1": 20879, "PARCEL_NO_": "105601080200", "Tax_Legal_": "215-76&POR 404 ANNAS RET NEW QTR.", "Name": "LAKE, BERNARD, UNA & PATRICA", "Address": "PO Box 10463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 134300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.35298501699999, "SHAPE_Area": 655.21470014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362851.990099996328354, 257648.459600001573563 ], [ 362831.119499996304512, 257637.311900001019239 ], [ 362828.700599998235703, 257637.292100001126528 ], [ 362827.077100001275539, 257638.545400001108646 ], [ 362818.882700003683567, 257653.888099998235703 ], [ 362815.628700003027916, 257657.239000000059605 ], [ 362838.093999996781349, 257670.51069999858737 ], [ 362851.990099996328354, 257648.459600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90183182, "LATITUDE": 18.34789989, "OBJECTID_1": 19785, "PARCEL_NO_": "105502010100", "Tax_Legal_": "330 WINTBERG No.3 NORTHSIDE QTR", "Name": "JASMIN F.D. WILLIAMS & OTHERS", "Address": "PO Box 306073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58800, "Improved_V": 167500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.98015503600001, "SHAPE_Area": 1903.19761417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361908.773900002241135, 257624.34010000154376 ], [ 361905.519500002264977, 257624.247900001704693 ], [ 361825.414499998092651, 257610.0777000002563 ], [ 361823.096799999475479, 257610.4087999984622 ], [ 361819.233900003135204, 257612.064300000667572 ], [ 361821.882700003683567, 257617.472300000488758 ], [ 361824.752300001680851, 257621.445500001311302 ], [ 361830.712099999189377, 257625.197999998927116 ], [ 361851.130000002682209, 257634.027300000190735 ], [ 361857.972800001502037, 257637.779800001531839 ], [ 361876.735200002789497, 257647.050599999725819 ], [ 361887.341600000858307, 257649.806600000709295 ], [ 361900.39580000191927, 257653.441899999976158 ], [ 361902.349299997091293, 257654.0 ], [ 361908.773900002241135, 257624.34010000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011200", "MAP": null, "PARCEL_NAM": "240", "ACRE": null, "LONGITUDE": -64.8949802, "LATITUDE": 18.34786845, "OBJECTID_1": 20449, "PARCEL_NO_": "105601011200", "Tax_Legal_": "240 ANNAS RETREAT NEW QTR", "Name": "Alma Malone, Kimbra and Kyira Willet", "Address": "240 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 115200, "Improved_V": 79100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.75049919400001, "SHAPE_Area": 3762.6018682 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362629.773299999535084, 257608.432900000363588 ], [ 362561.314099997282028, 257598.7956000007689 ], [ 362564.811599999666214, 257661.519000001251698 ], [ 362600.282200001180172, 257662.6537000015378 ], [ 362622.016599997878075, 257667.053399998694658 ], [ 362629.773299999535084, 257608.432900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602018100", "MAP": "D9-5703-T94", "PARCEL_NAM": "394C-4", "ACRE": "0.15", "LONGITUDE": -64.88570117, "LATITUDE": 18.34799658, "OBJECTID_1": 20996, "PARCEL_NO_": "105602018100", "Tax_Legal_": "394C-4 ESTATE ANNAS RETREAT NEW QUARTER", "Name": "FRANCIS, JULIAN & MACTAVIOUS", "Address": "PO Box 503153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053153, "Country": "United States", "Land_Value": 20500, "Improved_V": 128000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.397626507, "SHAPE_Area": 897.62571114599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363565.037799999117851, 257639.161899998784065 ], [ 363559.978322167007718, 257650.949409365392057 ], [ 363555.512800000607967, 257662.974500000476837 ], [ 363555.181199997663498, 257663.718400001525879 ], [ 363558.228100001811981, 257665.00560000166297 ], [ 363579.118500001728535, 257673.831399999558926 ], [ 363595.446199998259544, 257650.322500001639128 ], [ 363596.843500003218651, 257648.310699999332428 ], [ 363589.7797764139832, 257644.666323471901705 ], [ 363582.442460962512996, 257641.609941103175515 ], [ 363574.880400002002716, 257639.161899998784065 ], [ 363572.452136062958743, 257638.562402885145275 ], [ 363569.959100000560284, 257638.360824765288271 ], [ 363567.466063938161824, 257638.562402885145275 ], [ 363565.037799999117851, 257639.161899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87413248, "LATITUDE": 18.34801755, "OBJECTID_1": 22308, "PARCEL_NO_": "105702015800", "Tax_Legal_": "52-7F ESTATE FRYDENDAHL EAST END QTR", "Name": "PHILLIP, ALVIN A", "Address": "PO Box 305436", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33800, "Improved_V": 220600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.765385624, "SHAPE_Area": 903.20414790100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364816.246399998664856, 257655.247999999672174 ], [ 364786.445200003683567, 257651.2043999992311 ], [ 364778.137500002980232, 257679.845100000500679 ], [ 364809.553099997341633, 257683.690799999982119 ], [ 364816.246399998664856, 257655.247999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602094200", "MAP": "C9-261-T80", "PARCEL_NAM": "215-176", "ACRE": "0.11", "LONGITUDE": -64.8912838, "LATITUDE": 18.34794644, "OBJECTID_1": 21498, "PARCEL_NO_": "105602094200", "Tax_Legal_": "215-176 ANNAS RETREAT NEW QTR.", "Name": "WARNER, YVONNE", "Address": "PO Box 1412", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20800, "Improved_V": 52800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.894302822, "SHAPE_Area": 580.40023961500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362990.487099997699261, 257659.369199998676777 ], [ 362996.438699997961521, 257635.709600001573563 ], [ 362991.699699997901917, 257624.060699999332428 ], [ 362988.451099999248981, 257626.778299998492002 ], [ 362968.957599997520447, 257643.295200001448393 ], [ 362976.954199999570847, 257651.171100001782179 ], [ 362981.101099997758865, 257665.356600001454353 ], [ 362990.487099997699261, 257659.369199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88740976, "LATITUDE": 18.34798069, "OBJECTID_1": 21053, "PARCEL_NO_": "105602021800", "Tax_Legal_": "394-153 ANNAS RETREAT NEW QTR", "Name": "SMITH, JUDITH M", "Address": "PO Box 925", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21600, "Improved_V": 170500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.151426515, "SHAPE_Area": 678.52122665700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363402.816600002348423, 257639.457800000905991 ], [ 363401.8699000030756, 257635.032299999147654 ], [ 363398.261100001633167, 257635.337900001555681 ], [ 363391.176784164388664, 257636.805157344730105 ], [ 363384.243046114337631, 257638.870018513640389 ], [ 363377.510200001299381, 257641.517499998211861 ], [ 363379.381399996578693, 257645.387699998915195 ], [ 363391.267499998211861, 257669.971900001168251 ], [ 363408.244999997317791, 257664.833500001579523 ], [ 363402.816600002348423, 257639.457800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701021300", "MAP": "A9-318-T85", "PARCEL_NAM": "53-30", "ACRE": ".59", "LONGITUDE": -64.87703789, "LATITUDE": 18.3478067, "OBJECTID_1": 21924, "PARCEL_NO_": "105701021300", "Tax_Legal_": "53-30 ESTATE FRYDENDAHL EAST END QUARTER", "Name": "ELOI, REYNOLD", "Address": "PO Box 503073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 143700, "Improved_V": 197100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.46997754700001, "SHAPE_Area": 3072.1508131599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364524.434900000691414, 257665.188200000673532 ], [ 364507.884900003671646, 257606.260000001639128 ], [ 364505.39639999717474, 257607.31870000064373 ], [ 364443.11429999768734, 257629.81810000166297 ], [ 364444.69820000231266, 257633.208599999547005 ], [ 364447.896499998867512, 257636.401200000196695 ], [ 364462.363300003111362, 257642.008000001311302 ], [ 364469.568000003695488, 257648.188700001686811 ], [ 364479.904399998486042, 257665.371899999678135 ], [ 364482.260399997234344, 257672.779399998486042 ], [ 364482.210100002586842, 257678.689599998295307 ], [ 364518.883199997246265, 257666.96339999884367 ], [ 364524.434900000691414, 257665.188200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601082300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89221334, "LATITUDE": 18.34800773, "OBJECTID_1": 20900, "PARCEL_NO_": "105601082300", "Tax_Legal_": "215-119 ANNAS RETREAT NEW QTR.", "Name": "MANNING, TERRANCE", "Address": "215-119 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 101400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.71365454399999, "SHAPE_Area": 503.81357167800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362908.450000002980232, 257646.810699999332428 ], [ 362890.799199998378754, 257636.322700001299381 ], [ 362866.429999999701977, 257657.232599999755621 ], [ 362871.240900002419949, 257660.438400000333786 ], [ 362873.622100003063679, 257664.890799999237061 ], [ 362908.450000002980232, 257646.810699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602020400", "MAP": "A9-167I-71", "PARCEL_NAM": "394-312", "ACRE": ".142", "LONGITUDE": -64.88861776, "LATITUDE": 18.34800709, "OBJECTID_1": 21039, "PARCEL_NO_": "105602020400", "Tax_Legal_": "394-312 ANNAS RETREAT NEW QTR", "Name": "GEORGE, DELFORD & MELVA", "Address": "394-312 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 182400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.307040417699994, "SHAPE_Area": 496.06847912699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363284.942100003361702, 257656.436000000685453 ], [ 363261.713699996471405, 257638.091899998486042 ], [ 363251.125600002706051, 257650.459699999541044 ], [ 363265.489900000393391, 257668.098099999129772 ], [ 363284.942100003361702, 257656.436000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011100", "MAP": null, "PARCEL_NAM": "239", "ACRE": null, "LONGITUDE": -64.89564629, "LATITUDE": 18.34784391, "OBJECTID_1": 20448, "PARCEL_NO_": "105601011100", "Tax_Legal_": "239 ANNAS RETREAT NEW QUARTER", "Name": "MARTIN, JANET and MICHELLE M", "Address": "PO Box 7442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.199510723, "SHAPE_Area": 1781.01460477 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362536.936800003051758, 257597.908700000494719 ], [ 362508.916400000452995, 257596.88910000026226 ], [ 362510.792300000786781, 257660.654699999839067 ], [ 362538.92849999666214, 257661.104899998754263 ], [ 362536.936800003051758, 257597.908700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602020700", "MAP": "A9-167I-71", "PARCEL_NAM": "394-318", "ACRE": ".131", "LONGITUDE": -64.88813472, "LATITUDE": 18.34798596, "OBJECTID_1": 21042, "PARCEL_NO_": "105602020700", "Tax_Legal_": "394-318 ANNAS RETREAT NO 1 NEW QTR", "Name": "BRUNEY, ALEX J.", "Address": "PO Box 6828", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16300, "Improved_V": 62700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.9091545693, "SHAPE_Area": 534.53623310600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363333.313699997961521, 257657.676300000399351 ], [ 363320.5996999964118, 257635.618500001728535 ], [ 363301.968199998140335, 257645.598499998450279 ], [ 363314.684000000357628, 257667.445199999958277 ], [ 363333.313699997961521, 257657.676300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87203969, "LATITUDE": 18.34794367, "OBJECTID_1": 22281, "PARCEL_NO_": "105702012600", "Tax_Legal_": "FRYDENDAHL 11-5-1 EAST END QTR", "Name": "MILLS, OLIVE & RICHARD", "Address": "PO Box 11602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 139200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.25093547100001, "SHAPE_Area": 979.37418721699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365038.682599999010563, 257669.522999998182058 ], [ 365030.055900000035763, 257640.954799998551607 ], [ 365026.819799996912479, 257642.194899998605251 ], [ 365000.929700002074242, 257652.326499998569489 ], [ 365004.714900001883507, 257681.277300000190735 ], [ 365038.682599999010563, 257669.522999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011000", "MAP": null, "PARCEL_NAM": "238 REM", "ACRE": null, "LONGITUDE": -64.89589155, "LATITUDE": 18.34783887, "OBJECTID_1": 20447, "PARCEL_NO_": "105601011000", "Tax_Legal_": "238 ANNAS RETREAT NEW QTR", "Name": "KING, NEIL H", "Address": "PO Box 9201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60800, "Improved_V": 201900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.19759141599999, "SHAPE_Area": 1515.78337523 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362508.916400000452995, 257596.88910000026226 ], [ 362484.728799998760223, 257596.480000000447035 ], [ 362487.410999998450279, 257660.252199999988079 ], [ 362510.792300000786781, 257660.654699999839067 ], [ 362508.916400000452995, 257596.88910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602030500", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-346", "ACRE": ".168", "LONGITUDE": -64.88991366, "LATITUDE": 18.34793629, "OBJECTID_1": 21104, "PARCEL_NO_": "105602030500", "Tax_Legal_": "ANNAS RETREAT 394-346 NEW QTR", "Name": "SMITHEN, MERLE", "Address": "394-346 ESTATE ANNAS RETREAT", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 235400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.861825516, "SHAPE_Area": 786.44114254199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363121.499899998307228, 257627.022900000214577 ], [ 363111.750399999320507, 257635.597899999469519 ], [ 363109.313500002026558, 257637.688900001347065 ], [ 363134.878100000321865, 257665.762499999254942 ], [ 363149.515799999237061, 257651.316899999976158 ], [ 363125.561999998986721, 257623.467599999159575 ], [ 363121.499899998307228, 257627.022900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011400", "MAP": "D9-1964-T82", "PARCEL_NAM": "238-A", "ACRE": "0.375", "LONGITUDE": -64.89613767, "LATITUDE": 18.34783818, "OBJECTID_1": 20451, "PARCEL_NO_": "105601011400", "Tax_Legal_": "238-A ANNAS RETREAT NEW QTR.", "Name": "VERLYN & RAYMOND GILBERT, D SMITH REVOC FAM TRUST", "Address": "PO BOX 307696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60800, "Improved_V": 245000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.31546152199999, "SHAPE_Area": 1802.23859928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362484.728799998760223, 257596.480000000447035 ], [ 362456.511500000953674, 257595.826900001615286 ], [ 362457.845399998128414, 257628.557300001382828 ], [ 362459.191899999976158, 257659.810199998319149 ], [ 362487.410999998450279, 257660.252199999988079 ], [ 362484.728799998760223, 257596.480000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601071100", "MAP": "D9-5704-T94", "PARCEL_NAM": "237A", "ACRE": "0.25", "LONGITUDE": -64.89638227, "LATITUDE": 18.3479876, "OBJECTID_1": 20877, "PARCEL_NO_": "105601071100", "Tax_Legal_": "237A ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "SMITH, VERTA I", "Address": "PO Box 305345", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.48052024099999, "SHAPE_Area": 770.01815767100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362457.845399998128414, 257628.557300001382828 ], [ 362432.837099999189377, 257629.830299999564886 ], [ 362433.393500000238419, 257659.17680000141263 ], [ 362459.191899999976158, 257659.810199998319149 ], [ 362457.845399998128414, 257628.557300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502030100", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".60", "LONGITUDE": -64.90724718, "LATITUDE": 18.34784079, "OBJECTID_1": 19882, "PARCEL_NO_": "105502030100", "Tax_Legal_": "WINTBERG ESTATE 1-143-6 GREAT NORTHSIDE QTR", "Name": "ALGER, ROSH D.", "Address": "CORPORATE PLACE, ROYAL DANE MALL", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60100, "Improved_V": 240100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.58149995000002, "SHAPE_Area": 3920.3846812699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361310.664099998772144, 257595.525699999183416 ], [ 361242.82599999755621, 257607.636100001633167 ], [ 361244.404399998486042, 257611.659800000488758 ], [ 361245.887599997222424, 257626.870600000023842 ], [ 361289.236100003123283, 257649.812399998307228 ], [ 361352.380199998617172, 257620.776200000196695 ], [ 361337.313799999654293, 257590.888599999248981 ], [ 361310.664099998772144, 257595.525699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601010900", "MAP": "A9-85-T68", "PARCEL_NAM": "237 REM", "ACRE": "0.25", "LONGITUDE": -64.89653902000001, "LATITUDE": 18.34777819, "OBJECTID_1": 20446, "PARCEL_NO_": "105601010900", "Tax_Legal_": "ANNAS RETREAT 237 NEW QTR", "Name": "BRATHWAITE, ELRIDGE", "Address": "PO Box 503133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 82200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.77043777200001, "SHAPE_Area": 2308.012845 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362456.511500000953674, 257595.826900001615286 ], [ 362406.523699998855591, 257594.995600000023842 ], [ 362412.43469999730587, 257658.372000001370907 ], [ 362433.393500000238419, 257659.17680000141263 ], [ 362432.837099999189377, 257629.830299999564886 ], [ 362457.845399998128414, 257628.557300001382828 ], [ 362456.511500000953674, 257595.826900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601010800", "MAP": "A9-85-T68", "PARCEL_NAM": "236", "ACRE": "0.75", "LONGITUDE": -64.89689426, "LATITUDE": 18.34785293, "OBJECTID_1": 20445, "PARCEL_NO_": "105601010800", "Tax_Legal_": "ANNAS RETREAT 236 NEW QTR", "Name": "AUSTIN BLYDEN & DELITA BLYDEN REVOC LIVING TRUST", "Address": "PO Box 1645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 111200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.07756955100001, "SHAPE_Area": 2159.2837510099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362365.934299997985363, 257651.115299999713898 ], [ 362374.536799997091293, 257653.777899999171495 ], [ 362396.095399998128414, 257658.0439000017941 ], [ 362412.43469999730587, 257658.372000001370907 ], [ 362406.523699998855591, 257594.995600000023842 ], [ 362395.237099997699261, 257594.692099999636412 ], [ 362390.39919999986887, 257594.652499999850988 ], [ 362383.950499996542931, 257594.388599999248981 ], [ 362365.934299997985363, 257651.115299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602080500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89037247, "LATITUDE": 18.34797317, "OBJECTID_1": 21374, "PARCEL_NO_": "105602080500", "Tax_Legal_": "215-209 ANNAS RETREAT NEW QTR.", "Name": "ROBINSON, SHIRLEY", "Address": "215-209 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 96300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.568403269900003, "SHAPE_Area": 469.26142941500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363096.31360000371933, 257649.192699998617172 ], [ 363082.742899999022484, 257633.038499999791384 ], [ 363065.691699996590614, 257646.8310999982059 ], [ 363080.065099999308586, 257663.414099998772144 ], [ 363091.437899999320507, 257653.585700001567602 ], [ 363096.31360000371933, 257649.192699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87603677, "LATITUDE": 18.34792309, "OBJECTID_1": 21845, "PARCEL_NO_": "105701010900", "Tax_Legal_": "TABOR&HARMONY ESTATE 5-5 EAST END QTR", "Name": "VELGER, EARL ROBERTS", "Address": "29360 S Seaway Ct", "City": "Harrison Township", "State": "Michigan", "Zip": 48045, "Country": "United States", "Land_Value": 52100, "Improved_V": 971900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.10103554899999, "SHAPE_Area": 1166.2595772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364618.008599996566772, 257640.115499999374151 ], [ 364586.601999998092651, 257635.214400000870228 ], [ 364575.009700000286102, 257670.794300001114607 ], [ 364605.608199998736382, 257675.899900000542402 ], [ 364618.008599996566772, 257640.115499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602090100", "MAP": "C9-261-T80", "PARCEL_NAM": "215-177", "ACRE": "0.11", "LONGITUDE": -64.8911228, "LATITUDE": 18.34786263, "OBJECTID_1": 21457, "PARCEL_NO_": "105602090100", "Tax_Legal_": "ANNAS RETREAT 215-177 NEW QTR.", "Name": "CYNTJE, GREGORY & VIRGINIA", "Address": "215-177 ANNAS RETRET", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21800, "Improved_V": 139600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.41079918, "SHAPE_Area": 508.20475466300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363012.43299999833107, 257639.928399998694658 ], [ 363011.850400000810623, 257625.070000000298023 ], [ 363005.464599996805191, 257617.418400000780821 ], [ 362991.699699997901917, 257624.060699999332428 ], [ 362996.438699997961521, 257635.709600001573563 ], [ 362990.487099997699261, 257659.369199998676777 ], [ 363012.43299999833107, 257639.928399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701011100", "MAP": "C9-133-T72", "PARCEL_NAM": "5-11", "ACRE": ".27", "LONGITUDE": -64.8791231, "LATITUDE": 18.34783434, "OBJECTID_1": 21847, "PARCEL_NO_": "105701011100", "Tax_Legal_": "5-11 TABOR & HARMONY EAST END QTR.", "Name": "OSBORNE, ISAAC", "Address": "4309 Willow Lake Rd", "City": "Raleigh", "State": "North Carolina", "Zip": 27616, "Country": "United States", "Land_Value": 29800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.04044922200001, "SHAPE_Area": 1933.98305912 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364293.800899997353554, 257645.694699998944998 ], [ 364297.93129999935627, 257634.118299998342991 ], [ 364302.074400000274181, 257621.064399998635054 ], [ 364255.288500003516674, 257623.003499999642372 ], [ 364252.860600002110004, 257624.039099998772144 ], [ 364248.65820000320673, 257644.058600001037121 ], [ 364236.401600003242493, 257662.956700000911951 ], [ 364266.222599998116493, 257664.67850000038743 ], [ 364268.639799997210503, 257664.909299999475479 ], [ 364271.055100001394749, 257665.351300001144409 ], [ 364272.646099999547005, 257667.897399999201298 ], [ 364275.038099996745586, 257671.083399999886751 ], [ 364276.657899998128414, 257670.252300001680851 ], [ 364278.346100002527237, 257661.400199998170137 ], [ 364284.854099996387959, 257654.698499999940395 ], [ 364293.800899997353554, 257645.694699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702070500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86966881, "LATITUDE": 18.34798719, "OBJECTID_1": 22738, "PARCEL_NO_": "105702070500", "Tax_Legal_": "56-56 FRYDENDAHL EASTEND QUARTER", "Name": "CHESTERFIELD, ALETA C", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35100, "Improved_V": 141900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.82431610099999, "SHAPE_Area": 470.53737412100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365283.943599998950958, 257654.853999998420477 ], [ 365261.296700000762939, 257662.901299998164177 ], [ 365245.913800001144409, 257670.163600001484156 ], [ 365278.88629999756813, 257680.565999999642372 ], [ 365283.943599998950958, 257654.853999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602017800", "MAP": "C9-217-T77", "PARCEL_NAM": "394-402", "ACRE": "0.17", "LONGITUDE": -64.88448661, "LATITUDE": 18.34792762, "OBJECTID_1": 20993, "PARCEL_NO_": "105602017800", "Tax_Legal_": "ANNAS RETREAT ESTATE 394-402 NEW QTR", "Name": "SOMERSALL, EDMUND G. & MARCELLA", "Address": "PO Box 8781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 282700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.334946991, "SHAPE_Area": 725.16728381300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363723.734399996697903, 257641.451099999248981 ], [ 363720.537900000810623, 257638.047499999403954 ], [ 363717.364799998700619, 257631.89979999884963 ], [ 363702.822400003671646, 257635.158300001174212 ], [ 363682.517099998891354, 257652.301699999719858 ], [ 363692.907499998807907, 257663.152499999850988 ], [ 363698.515699997544289, 257667.420299999415874 ], [ 363723.734399996697903, 257641.451099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602022100", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-154", "ACRE": ".150", "LONGITUDE": -64.88719292, "LATITUDE": 18.34795032, "OBJECTID_1": 21056, "PARCEL_NO_": "105602022100", "Tax_Legal_": "394-154 ANNAS RETREAT NEW QTR", "Name": "RYAN, CILECIA ELMIRA (TRUSTEE)", "Address": "394-154 Annas Retreat", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21600, "Improved_V": 181800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.62656820799999, "SHAPE_Area": 740.30118133200006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363428.636600002646446, 257637.558200001716614 ], [ 363428.219300001859665, 257632.801100000739098 ], [ 363401.8699000030756, 257635.032299999147654 ], [ 363402.816600002348423, 257639.457800000905991 ], [ 363408.244999997317791, 257664.833500001579523 ], [ 363430.841499999165535, 257662.696400001645088 ], [ 363428.636600002646446, 257637.558200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502033300", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-E", "ACRE": ".2349", "LONGITUDE": -64.90384667, "LATITUDE": 18.34796217, "OBJECTID_1": 19907, "PARCEL_NO_": "105502033300", "Tax_Legal_": "1X-1-E WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "MONSANTO, LEON & ELSIE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 264200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.25748209299999, "SHAPE_Area": 836.862612281 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361662.049099996685982, 257618.033300001174212 ], [ 361657.975699998438358, 257611.365200001746416 ], [ 361647.755400002002716, 257624.664599999785423 ], [ 361633.972900003194809, 257642.599599998444319 ], [ 361640.059299997985363, 257643.606699999421835 ], [ 361666.611900001764297, 257650.368000000715256 ], [ 361671.449799999594688, 257650.407600000500679 ], [ 361673.883100003004074, 257648.738699998706579 ], [ 361675.564000003039837, 257640.730900000780821 ], [ 361673.964000001549721, 257639.240200001746416 ], [ 361662.049099996685982, 257618.033300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502030200", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": "59", "LONGITUDE": -64.90656153, "LATITUDE": 18.34779701, "OBJECTID_1": 19883, "PARCEL_NO_": "105502030200", "Tax_Legal_": "WINTBERG ESTATE 1-143-5 3 GR NORTHSIDE QTR", "Name": "WEBSTER, EDMOND & BERNICE", "Address": "PO Box 7986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010986, "Country": "United States", "Land_Value": 55700, "Improved_V": 431400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.46581580200001, "SHAPE_Area": 2290.8205765900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361347.811999998986721, 257589.074700001627207 ], [ 361337.313799999654293, 257590.888599999248981 ], [ 361352.380199998617172, 257620.776200000196695 ], [ 361353.969400003552437, 257623.533399999141693 ], [ 361365.86089999973774, 257647.484299998730421 ], [ 361375.565399996936321, 257644.186200000345707 ], [ 361387.712300002574921, 257638.163899999111891 ], [ 361392.560900002717972, 257636.936999998986721 ], [ 361403.843900002539158, 257637.66270000115037 ], [ 361376.882399998605251, 257584.246399998664856 ], [ 361347.811999998986721, 257589.074700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602024400", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-160", "ACRE": ".133", "LONGITUDE": -64.88599513, "LATITUDE": 18.347935, "OBJECTID_1": 21079, "PARCEL_NO_": "105602024400", "Tax_Legal_": "394-160 ANNAS RETREAT NEW QTR", "Name": "SARGEANT, JAMES", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.24574025, "SHAPE_Area": 620.55953061499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363537.510499998927116, 257629.596599999815226 ], [ 363536.718400001525879, 257634.221000000834465 ], [ 363531.626999996602535, 257663.943500000983477 ], [ 363547.747900001704693, 257664.708700001239777 ], [ 363551.847800001502037, 257656.72069999948144 ], [ 363556.010600000619888, 257641.344900000840425 ], [ 363556.373221203801222, 257640.619730230187997 ], [ 363556.614180669013876, 257639.845583041751524 ], [ 363556.727173544408288, 257639.04271447006613 ], [ 363556.709243302349932, 257638.232132062374149 ], [ 363556.560859098506626, 257637.435045203019399 ], [ 363556.285903496434912, 257636.67231015721336 ], [ 363555.891570877516642, 257635.963884353812318 ], [ 363555.388179195928387, 257635.328304187220056 ], [ 363554.788900002837181, 257634.782200001180172 ], [ 363546.210794331098441, 257631.985833918355638 ], [ 363537.510499998927116, 257629.596599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701071100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87015879, "LATITUDE": 18.34787961, "OBJECTID_1": 22249, "PARCEL_NO_": "105701071100", "Tax_Legal_": "FRYDENDAHL 56-25 EAST END QTR", "Name": "AUGUSTINE, LINDA P", "Address": "PO Box 10538", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 321300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.50363580499999, "SHAPE_Area": 1070.1805706499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365239.522699996829033, 257663.145199999213219 ], [ 365226.850100003182888, 257636.232599999755621 ], [ 365200.171599999070168, 257644.246899999678135 ], [ 365194.512999996542931, 257645.889400001615286 ], [ 365211.97860000282526, 257678.118500001728535 ], [ 365239.522699996829033, 257663.145199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601010700", "MAP": "A9-85-T68", "PARCEL_NAM": "235", "ACRE": "0.75", "LONGITUDE": -64.89721024000001, "LATITUDE": 18.34768623, "OBJECTID_1": 20444, "PARCEL_NO_": "105601010700", "Tax_Legal_": "ANNAS RETREAT 235 GT. NORTHSIDE", "Name": "BLYDEN, AUSTIN H", "Address": "PO Box 1645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 112300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.44919404000001, "SHAPE_Area": 2448.8701471600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362368.027999997138977, 257571.862799998372793 ], [ 362364.391000002622604, 257569.272399999201298 ], [ 362358.306800000369549, 257575.60249999910593 ], [ 362326.895900003612041, 257617.185699999332428 ], [ 362336.754199996590614, 257623.297899998724461 ], [ 362342.575099997222424, 257631.764600001275539 ], [ 362345.326700001955032, 257636.156700000166893 ], [ 362352.629199996590614, 257643.935400001704693 ], [ 362361.201800003647804, 257649.650400001555681 ], [ 362365.934299997985363, 257651.115299999713898 ], [ 362383.950499996542931, 257594.388599999248981 ], [ 362377.076800003647804, 257585.039000000804663 ], [ 362368.027999997138977, 257571.862799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602024200", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-159", "ACRE": ".149", "LONGITUDE": -64.88616861, "LATITUDE": 18.34790683, "OBJECTID_1": 21077, "PARCEL_NO_": "105602024200", "Tax_Legal_": "394-159 ANNAS RETREAT NEW QTR", "Name": "PINNEY, WILLIS W. & MARIE W", "Address": "PO BOX 302268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 183900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.39697097200001, "SHAPE_Area": 652.61743582199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363515.57320000231266, 257627.318399999290705 ], [ 363515.772299997508526, 257631.9386 ], [ 363517.11879999935627, 257663.191500000655651 ], [ 363531.626999996602535, 257663.943500000983477 ], [ 363536.718400001525879, 257634.221000000834465 ], [ 363537.510499998927116, 257629.596599999815226 ], [ 363532.563900001347065, 257628.432199999690056 ], [ 363524.082010350131895, 257627.669966241519433 ], [ 363515.57320000231266, 257627.318399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602010700", "MAP": "C9-217-T77", "PARCEL_NAM": "394-16", "ACRE": "0.16", "LONGITUDE": -64.88398565, "LATITUDE": 18.34792034, "OBJECTID_1": 20922, "PARCEL_NO_": "105602010700", "Tax_Legal_": "394-16 ANNAS RETREAT NEW QTR", "Name": "TODMAN, CHARLES & EUGELIA", "Address": "1022 Longfellow Ave", "City": "Bronx", "State": "New York", "Zip": 10459, "Country": "United States", "Land_Value": 21900, "Improved_V": 202000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.7958485809, "SHAPE_Area": 576.57419044899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363763.265299998223782, 257639.241500001400709 ], [ 363760.128100000321865, 257628.872299998998642 ], [ 363739.009300000965595, 257646.853500001132488 ], [ 363744.842324932164047, 257652.462617370852968 ], [ 363750.283174793585204, 257658.452903699653689 ], [ 363755.306999996304512, 257664.796999998390675 ], [ 363772.01240000128746, 257653.667500000447035 ], [ 363763.265299998223782, 257639.241500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601050400", "MAP": null, "PARCEL_NAM": "215-3 REM", "ACRE": null, "LONGITUDE": -64.89298519, "LATITUDE": 18.34790698, "OBJECTID_1": 20749, "PARCEL_NO_": "105601050400", "Tax_Legal_": "215-3 ANNAS RETREAT NEW QTR", "Name": "EDINBOROUGH, CLYDE", "Address": "PO Box 305002", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20100, "Improved_V": 255500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.909146902, "SHAPE_Area": 674.76063958199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362822.003600001335144, 257634.797200001776218 ], [ 362823.094099998474121, 257632.813200000673532 ], [ 362802.236100003123283, 257620.188000001013279 ], [ 362788.873599998652935, 257642.303899999707937 ], [ 362790.374499998986721, 257643.548500001430511 ], [ 362795.533900000154972, 257650.824599999934435 ], [ 362798.311999998986721, 257655.322500001639128 ], [ 362801.751599997282028, 257655.587099999189377 ], [ 362806.381800003349781, 257653.999600000679493 ], [ 362810.218299999833107, 257651.089200001209974 ], [ 362815.377700001001358, 257644.0777000002563 ], [ 362822.003600001335144, 257634.797200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602022400", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-155", "ACRE": ".139", "LONGITUDE": -64.88696767, "LATITUDE": 18.34793455, "OBJECTID_1": 21059, "PARCEL_NO_": "105602022400", "Tax_Legal_": "394-155 ANNAS RETREAT NEW QTR", "Name": "WALWYN, SAMUEL & ISELYN", "Address": "PO Box 7792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.735341015, "SHAPE_Area": 693.94709214199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363450.754600003361702, 257630.892900001257658 ], [ 363428.219300001859665, 257632.801100000739098 ], [ 363428.636600002646446, 257637.558200001716614 ], [ 363430.841499999165535, 257662.696400001645088 ], [ 363453.434500001370907, 257660.981499999761581 ], [ 363453.533399999141693, 257649.372099999338388 ], [ 363451.227700002491474, 257636.054400000721216 ], [ 363450.800366243580356, 257635.079999927838799 ], [ 363450.534707245242316, 257634.049711162399035 ], [ 363450.437589887471404, 257632.990165098104626 ], [ 363450.511524505913258, 257631.928749385144329 ], [ 363450.754600003361702, 257630.892900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602023700", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-158", "ACRE": ".156", "LONGITUDE": -64.88635521, "LATITUDE": 18.34791314, "OBJECTID_1": 21072, "PARCEL_NO_": "105602023700", "Tax_Legal_": "394-158 ANNAS RETREAT NEW QUARTER", "Name": "SIMMONDS, LORRAINE", "Address": "PO Box 303764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199100, "Improved_V": 185800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.96413202799999, "SHAPE_Area": 751.62500672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363499.226300001144409, 257627.797200001776218 ], [ 363493.314400002360344, 257628.155900001525879 ], [ 363493.98929999768734, 257633.238000001758337 ], [ 363495.504799999296665, 257644.649399999529123 ], [ 363496.156499996781349, 257662.808800000697374 ], [ 363517.11879999935627, 257663.191500000655651 ], [ 363515.772299997508526, 257631.9386 ], [ 363515.57320000231266, 257627.318399999290705 ], [ 363507.394192715582903, 257627.368066500057466 ], [ 363499.226300001144409, 257627.797200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602023400", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-157", "ACRE": ".148", "LONGITUDE": -64.88655436000001, "LATITUDE": 18.34792104, "OBJECTID_1": 21069, "PARCEL_NO_": "105602023400", "Tax_Legal_": "394-157 ANNAS RETREAT NEW QTR C", "Name": "MC KAY, CHARLES & ISOLENE", "Address": "394-157A HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 114600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.650272454, "SHAPE_Area": 708.28156126700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363493.98929999768734, 257633.238000001758337 ], [ 363493.314400002360344, 257628.155900001525879 ], [ 363473.709899999201298, 257629.382800001651049 ], [ 363473.818899996578693, 257634.550500001758337 ], [ 363474.393200002610683, 257661.786299999803305 ], [ 363496.156499996781349, 257662.808800000697374 ], [ 363495.504799999296665, 257644.649399999529123 ], [ 363493.98929999768734, 257633.238000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602080400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8907283, "LATITUDE": 18.34791338, "OBJECTID_1": 21373, "PARCEL_NO_": "105602080400", "Tax_Legal_": "215-207 ANNAS RETREAT NO.1 NEW QTR.", "Name": "CLAUDETTE P HODGE FAM. REV. TRUST", "Address": "PO Box 10386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 94900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.488352764300004, "SHAPE_Area": 569.25889204500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363060.072700001299381, 257643.829799998551607 ], [ 363043.3091000020504, 257623.849800001829863 ], [ 363027.055200003087521, 257638.7043999992311 ], [ 363044.6233000010252, 257658.902100000530481 ], [ 363055.200599998235703, 257647.800700001418591 ], [ 363060.072700001299381, 257643.829799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601082200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89236206, "LATITUDE": 18.3479073, "OBJECTID_1": 20899, "PARCEL_NO_": "105601082200", "Tax_Legal_": "215-120 ANNAS RETREAT NEW QTR.", "Name": "ROMAIN, MARGARET", "Address": "PO Box 9542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 87200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.272500186, "SHAPE_Area": 619.89587900399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362890.799199998378754, 257636.322700001299381 ], [ 362870.74210000038147, 257624.33729999884963 ], [ 362866.73030000180006, 257621.982400000095367 ], [ 362854.441399998962879, 257644.679999999701977 ], [ 362865.670400001108646, 257651.737900000065565 ], [ 362863.220899999141693, 257655.306499999016523 ], [ 362866.429999999701977, 257657.232599999755621 ], [ 362890.799199998378754, 257636.322700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602022700", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-156", "ACRE": ".140", "LONGITUDE": -64.88675636000001, "LATITUDE": 18.34791923, "OBJECTID_1": 21062, "PARCEL_NO_": "105602022700", "Tax_Legal_": "394-156 ANNAS RETREAT NEW QTR", "Name": "KING, NEIL", "Address": "PO Box 9201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21800, "Improved_V": 2800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.799966457, "SHAPE_Area": 673.87198700500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363473.818899996578693, 257634.550500001758337 ], [ 363473.709899999201298, 257629.382800001651049 ], [ 363450.754600003361702, 257630.892900001257658 ], [ 363450.545100003480911, 257634.1081000007689 ], [ 363451.227700002491474, 257636.054400000721216 ], [ 363453.533399999141693, 257649.372099999338388 ], [ 363453.434500001370907, 257660.981499999761581 ], [ 363474.393200002610683, 257661.786299999803305 ], [ 363473.818899996578693, 257634.550500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87450426, "LATITUDE": 18.34789544, "OBJECTID_1": 22305, "PARCEL_NO_": "105702015500", "Tax_Legal_": "FRYDENDAHL 52-7C EAST END QTR", "Name": "HUGGINS, ELROY K & MELVINA", "Address": "PO Box 502764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052764, "Country": "United States", "Land_Value": 32500, "Improved_V": 179600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.769538555, "SHAPE_Area": 1148.2224134799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364781.646899998188019, 257646.521000001579523 ], [ 364744.664399996399879, 257633.552700001746416 ], [ 364735.561200000345707, 257660.920400001108646 ], [ 364735.541400000452995, 257663.242300000041723 ], [ 364774.170699998736382, 257672.213300000876188 ], [ 364781.646899998188019, 257646.521000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702071400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87090874, "LATITUDE": 18.34782172, "OBJECTID_1": 22745, "PARCEL_NO_": "105702071400", "Tax_Legal_": "FRYDENDAHL 56-32 EAST END QTR.", "Name": "NEAVES, MICHAEL & PEARL", "Address": "PO Box 7412", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35200, "Improved_V": 127900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.19192420300001, "SHAPE_Area": 1082.01034916 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365161.319399997591972, 257661.449700001627207 ], [ 365133.429300002753735, 257622.380199998617172 ], [ 365122.058200001716614, 257631.997499998658895 ], [ 365114.765399999916553, 257636.159699998795986 ], [ 365144.268100000917912, 257675.242300000041723 ], [ 365161.319399997591972, 257661.449700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501014900", "MAP": "F9-2168-T68", "PARCEL_NAM": "1-32 REM", "ACRE": null, "LONGITUDE": -64.90900389, "LATITUDE": 18.34762388, "OBJECTID_1": 19701, "PARCEL_NO_": "105501014900", "Tax_Legal_": "1-32 WINTBERG GT. NORTHSIDE", "Name": "JONES, DUANNE W.", "Address": "PO Box 7303", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59300, "Improved_V": 226900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.19225369099999, "SHAPE_Area": 1017.28312641 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361098.467299997806549, 257609.832100000232458 ], [ 361129.489500001072884, 257607.117300000041723 ], [ 361126.209200002253056, 257571.640099998563528 ], [ 361091.411899998784065, 257586.131799999624491 ], [ 361095.333700001239777, 257599.040600001811981 ], [ 361098.467299997806549, 257609.832100000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602012700", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-208", "ACRE": ".155", "LONGITUDE": -64.88498213, "LATITUDE": 18.34788485, "OBJECTID_1": 20942, "PARCEL_NO_": "105602012700", "Tax_Legal_": "394-208 ANNAS RETREAT NEW QTR", "Name": "KNIGHT (LIFE ESTATE), MYRTLE A", "Address": "PO Box 6404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17100, "Improved_V": 80000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.135537708, "SHAPE_Area": 724.54252166599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363669.646700002253056, 257648.607799999415874 ], [ 363665.123400002717972, 257642.11540000140667 ], [ 363657.464800000190735, 257625.461300000548363 ], [ 363631.553099997341633, 257638.125900000333786 ], [ 363632.613899998366833, 257641.549699999392033 ], [ 363635.009400002658367, 257644.313499998301268 ], [ 363648.576499998569489, 257660.889899998903275 ], [ 363669.646700002253056, 257648.607799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502030600", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".40", "LONGITUDE": -64.90476106, "LATITUDE": 18.34779527, "OBJECTID_1": 19886, "PARCEL_NO_": "105502030600", "Tax_Legal_": "1-143-1 WINTBERG ESTATE GREAT NORTHSIDE QUARTER", "Name": "PICKERING, ELTINO S", "Address": "PO Box 303470", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.74239423399999, "SHAPE_Area": 1405.1593615199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361590.217200003564358, 257600.102699998766184 ], [ 361575.140000000596046, 257597.057000000029802 ], [ 361550.988399997353554, 257592.426399998366833 ], [ 361538.492700003087521, 257639.397999998182058 ], [ 361557.313500002026558, 257641.881299998611212 ], [ 361590.217200003564358, 257600.102699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88795903, "LATITUDE": 18.34789553, "OBJECTID_1": 21046, "PARCEL_NO_": "105602021100", "Tax_Legal_": "394-319 ANNAS RETREAT NEW QTR", "Name": "WATKINS, CLAYTON & RUTH", "Address": "PO Box 8084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 147400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.728966447999994, "SHAPE_Area": 542.280166334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363351.939800001680851, 257648.329599998891354 ], [ 363339.233000002801418, 257625.427499998360872 ], [ 363335.181699998676777, 257627.716299999505281 ], [ 363320.5996999964118, 257635.618500001728535 ], [ 363333.313699997961521, 257657.676300000399351 ], [ 363351.939800001680851, 257648.329599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501014400", "MAP": "F9-2168-T68", "PARCEL_NAM": "1-31A", "ACRE": null, "LONGITUDE": -64.90950447, "LATITUDE": 18.34781467, "OBJECTID_1": 19697, "PARCEL_NO_": "105501014400", "Tax_Legal_": "WINTBERG 1-31A GREAT NORTHSIDE QTR", "Name": "SIMON, DALMAD & MONIQUE A", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55700, "Improved_V": 124900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.46714816100001, "SHAPE_Area": 1936.6225140199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361019.886900000274181, 257616.846000000834465 ], [ 361021.931400001049042, 257638.160300001502037 ], [ 361053.159100003540516, 257627.615299999713898 ], [ 361083.820299997925758, 257625.363699998706579 ], [ 361083.847599998116493, 257622.166900001466274 ], [ 361095.333700001239777, 257599.040600001811981 ], [ 361091.411899998784065, 257586.131799999624491 ], [ 361080.080300003290176, 257591.10530000180006 ], [ 361019.886900000274181, 257616.846000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602020600", "MAP": null, "PARCEL_NAM": "394-326", "ACRE": null, "LONGITUDE": -64.88850357, "LATITUDE": 18.34785309, "OBJECTID_1": 21041, "PARCEL_NO_": "105602020600", "Tax_Legal_": "ANNAS RETREAT 394-326 NEW QTR", "Name": "BRATHWAITE, ERMINIE", "Address": "394-326 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 211900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.889763755, "SHAPE_Area": 649.34351987399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363294.02759999781847, 257631.350299999117851 ], [ 363273.97919999808073, 257618.138399999588728 ], [ 363267.435199998319149, 257629.061700001358986 ], [ 363266.603699997067451, 257632.010200001299381 ], [ 363261.713699996471405, 257638.091899998486042 ], [ 363284.942100003361702, 257656.436000000685453 ], [ 363294.02759999781847, 257631.350299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502033100", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-C", "ACRE": ".2753", "LONGITUDE": -64.90448626, "LATITUDE": 18.34784676, "OBJECTID_1": 19906, "PARCEL_NO_": "105502033100", "Tax_Legal_": "WINTBERG ESTATE 1X1-C GT. NORTHSIDE QTR.", "Name": "LEWIS, DELPHIA H. & MORTON, BARBAR", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29200, "Improved_V": 318300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.88623463900001, "SHAPE_Area": 1455.01302603 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361576.375, 257641.396800000220537 ], [ 361584.454300001263618, 257639.563099998980761 ], [ 361612.962200000882149, 257640.558100000023842 ], [ 361603.373700000345707, 257634.325599998235703 ], [ 361609.088699996471405, 257608.131799999624491 ], [ 361608.620700001716614, 257597.556600000709295 ], [ 361600.184199996292591, 257591.5625 ], [ 361598.086800001561642, 257590.110500000417233 ], [ 361590.217200003564358, 257600.102699998766184 ], [ 361557.313500002026558, 257641.881299998611212 ], [ 361567.489399999380112, 257643.223900001496077 ], [ 361570.714599996805191, 257643.250300001353025 ], [ 361576.375, 257641.396800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702016100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.871721, "LATITUDE": 18.34781731, "OBJECTID_1": 22311, "PARCEL_NO_": "105702016100", "Tax_Legal_": "FRYDENDAHL 11B-1 EAST END QTR.", "Name": "BENJAMIN, SALBERT", "Address": "7759 Estate Tutu Vly", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 257000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.35218860399999, "SHAPE_Area": 1155.1965851299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365066.464000001549721, 257626.687300000339746 ], [ 365030.055900000035763, 257640.954799998551607 ], [ 365038.682599999010563, 257669.522999998182058 ], [ 365054.866300001740456, 257662.900499999523163 ], [ 365066.205099999904633, 257657.082699999213219 ], [ 365073.505000002682209, 257652.076200000941753 ], [ 365074.388700000941753, 257643.006400000303984 ], [ 365071.998499996960163, 257639.609299998730421 ], [ 365066.464000001549721, 257626.687300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701010700", "MAP": "C9-133-T72", "PARCEL_NAM": "5-10", "ACRE": ".28", "LONGITUDE": -64.87956946, "LATITUDE": 18.34788775, "OBJECTID_1": 21843, "PARCEL_NO_": "105701010700", "Tax_Legal_": "5-10 TABOR&HARMONY EAST END QTR", "Name": "NAPOLEON LOUIMANE and MARIE O JOSEPH", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29200, "Improved_V": 183700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.20340937500001, "SHAPE_Area": 1317.32178294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364252.860600002110004, 257624.039099998772144 ], [ 364214.816399998962879, 257641.037399999797344 ], [ 364176.772299997508526, 257658.035700000822544 ], [ 364192.878799997270107, 257660.489599999040365 ], [ 364236.401600003242493, 257662.956700000911951 ], [ 364248.65820000320673, 257644.058600001037121 ], [ 364252.860600002110004, 257624.039099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87294831, "LATITUDE": 18.34790426, "OBJECTID_1": 22275, "PARCEL_NO_": "105702012000", "Tax_Legal_": "FRYDENDAHL 11-5-6 EAST END QTR", "Name": "SHAROZA KHAN and FEROZ KHAN SOOKRAM", "Address": "11-5-6 Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 254400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.292709347, "SHAPE_Area": 1022.80612751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364941.589100003242493, 257640.876600001007318 ], [ 364899.829999998211861, 257647.764800000935793 ], [ 364903.22749999910593, 257667.781100001186132 ], [ 364903.978200003504753, 257671.829700000584126 ], [ 364946.351199999451637, 257663.811099998652935 ], [ 364946.014200001955032, 257662.00959999859333 ], [ 364941.589100003242493, 257640.876600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502030400", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".43", "LONGITUDE": -64.90521314, "LATITUDE": 18.34773639, "OBJECTID_1": 19885, "PARCEL_NO_": "105502030400", "Tax_Legal_": "WINTBERG ESTATE 1-143-2&3 GREAT NORTHSIDE QTR", "Name": "COMISSIONG, RICHARD", "Address": "PO Box 335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 99500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.033131674, "SHAPE_Area": 3118.7946085600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361486.584100000560284, 257580.078000001609325 ], [ 361484.973300002515316, 257579.853700000792742 ], [ 361473.310900002717972, 257623.665800001472235 ], [ 361487.822700001299381, 257623.995600000023842 ], [ 361496.67059999704361, 257626.601199999451637 ], [ 361503.090499997138977, 257630.242300000041723 ], [ 361515.145599998533726, 257634.984999999403954 ], [ 361524.799800001084805, 257637.597199998795986 ], [ 361538.492700003087521, 257639.397999998182058 ], [ 361550.988399997353554, 257592.426399998366833 ], [ 361486.584100000560284, 257580.078000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502030300", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".57", "LONGITUDE": -64.90611154, "LATITUDE": 18.34773203, "OBJECTID_1": 19884, "PARCEL_NO_": "105502030300", "Tax_Legal_": "WINTBERG ESTATE 1-143-4 GREAT NORTHSIDE", "Name": "ELMA M FRANCIS and JEANINE LYNN FRANCIS-BROWN", "Address": "PO Box 302471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.219569003, "SHAPE_Area": 3235.13431386 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361457.951399996876717, 257628.184099998325109 ], [ 361430.982699997723103, 257575.612199999392033 ], [ 361390.609499998390675, 257582.036699999123812 ], [ 361376.882399998605251, 257584.246399998664856 ], [ 361403.843900002539158, 257637.66270000115037 ], [ 361416.743100002408028, 257637.979299999773502 ], [ 361432.885600000619888, 257636.211599998176098 ], [ 361445.81530000269413, 257632.939899999648333 ], [ 361457.951399996876717, 257628.184099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88357797, "LATITUDE": 18.3477569, "OBJECTID_1": 20921, "PARCEL_NO_": "105602010600", "Tax_Legal_": "14-3 ANNAS RETREAT NEW QTR", "Name": "KIM, JOHN D", "Address": "PO Box 475204", "City": "San Francisco", "State": "California", "Zip": 94147, "Country": "United States", "Land_Value": 82500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.70236696500001, "SHAPE_Area": 2139.4884162799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363827.259300000965595, 257632.732799999415874 ], [ 363808.956200003623962, 257605.373199999332428 ], [ 363806.126800000667572, 257605.739599999040365 ], [ 363788.795699998736382, 257608.424699999392033 ], [ 363777.079000003635883, 257609.401099998503923 ], [ 363772.319099999964237, 257612.940499998629093 ], [ 363770.488300003111362, 257619.043000001460314 ], [ 363771.952899999916553, 257631.858199998736382 ], [ 363775.614399999380112, 257640.035500001162291 ], [ 363780.872900001704693, 257646.487199999392033 ], [ 363785.016699999570847, 257653.004700001329184 ], [ 363830.270599998533726, 257647.827199999243021 ], [ 363836.853299997746944, 257647.074099998921156 ], [ 363827.259300000965595, 257632.732799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602030700", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-347", "ACRE": ".169", "LONGITUDE": -64.88976674, "LATITUDE": 18.3478082, "OBJECTID_1": 21106, "PARCEL_NO_": "105602030700", "Tax_Legal_": "ANNAS RETREAT 394-347 NEW QTR", "Name": "BROWN, BOYD B & EMILY", "Address": "PO Box 7301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 179300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.227321555, "SHAPE_Area": 757.93371899500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363164.965199999511242, 257636.244600001722574 ], [ 363140.997000001370907, 257610.08390000090003 ], [ 363125.561999998986721, 257623.467599999159575 ], [ 363149.515799999237061, 257651.316899999976158 ], [ 363164.965199999511242, 257636.244600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601083200", "MAP": "C9-261-T80", "PARCEL_NAM": "215-162", "ACRE": "0.11", "LONGITUDE": -64.89172365, "LATITUDE": 18.34783137, "OBJECTID_1": 20907, "PARCEL_NO_": "105601083200", "Tax_Legal_": "215-162 ANNAS RETREAT NEW QTR.", "Name": "MCCLEAN, JAVAR MARIE & JOAN", "Address": "PO Box 302323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20800, "Improved_V": 140300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.011682946899995, "SHAPE_Area": 548.81909954100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362940.156900003552437, 257616.46169999986887 ], [ 362937.838299997150898, 257614.190499998629093 ], [ 362922.625900000333786, 257632.945000000298023 ], [ 362937.038199998438358, 257647.824400000274181 ], [ 362955.356299996376038, 257630.729299999773502 ], [ 362940.156900003552437, 257616.46169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602036300", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-327", "ACRE": ".139", "LONGITUDE": -64.88890441, "LATITUDE": 18.34785166, "OBJECTID_1": 21159, "PARCEL_NO_": "105602036300", "Tax_Legal_": "394-327 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, REGINALD & GLORIA", "Address": "PO Box 9675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 145900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.335595919200003, "SHAPE_Area": 474.79550889699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363252.882100000977516, 257633.586599998176098 ], [ 363232.8158999979496, 257622.656599998474121 ], [ 363219.808899998664856, 257635.004700001329184 ], [ 363223.813400000333786, 257638.203899998217821 ], [ 363239.023699998855591, 257651.205099999904633 ], [ 363252.882100000977516, 257633.586599998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602080700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89022107, "LATITUDE": 18.34785067, "OBJECTID_1": 21376, "PARCEL_NO_": "105602080700", "Tax_Legal_": "215-210 ANNAS RETREAT NO.1 NEW QTR.", "Name": "TODMAN & SIMBA B., TERRENCE", "Address": "215-210 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 96300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.500158367500006, "SHAPE_Area": 412.75307015099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363111.750399999320507, 257635.597899999469519 ], [ 363097.368000000715256, 257620.07039999961853 ], [ 363091.668099999427795, 257626.567699998617172 ], [ 363082.742899999022484, 257633.038499999791384 ], [ 363096.31360000371933, 257649.192699998617172 ], [ 363109.313500002026558, 257637.688900001347065 ], [ 363111.750399999320507, 257635.597899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701011200", "MAP": "C9-133-T72", "PARCEL_NAM": "5-9", "ACRE": ".32", "LONGITUDE": -64.87987026, "LATITUDE": 18.34776752, "OBJECTID_1": 21848, "PARCEL_NO_": "105701011200", "Tax_Legal_": "5-9 TABOR & HARMONY EAST END QTR.", "Name": "Patrica O, Reed T, and Steven A Rollo", "Address": "2188 Quail Run Drive", "City": "Trappe", "State": "Maryland", "Zip": 21673, "Country": "United States", "Land_Value": 21200, "Improved_V": 363000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.62900346399999, "SHAPE_Area": 1225.66326929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364214.816399998962879, 257641.037399999797344 ], [ 364202.163599997758865, 257611.802999999374151 ], [ 364174.659000001847744, 257622.132500000298023 ], [ 364173.550599999725819, 257657.587200000882149 ], [ 364176.772299997508526, 257658.035700000822544 ], [ 364214.816399998962879, 257641.037399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601082100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89211042, "LATITUDE": 18.34782636, "OBJECTID_1": 20898, "PARCEL_NO_": "105601082100", "Tax_Legal_": "ANNAS RETREAT 215-121 NEW QTR.", "Name": "CHARLES, GERALDINE & I", "Address": "PO Box 9380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.341690329, "SHAPE_Area": 658.02118427899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362908.450000002980232, 257646.810699999332428 ], [ 362916.550899997353554, 257642.444099999964237 ], [ 362915.773299999535084, 257639.060199998319149 ], [ 362909.396499998867512, 257630.353199999779463 ], [ 362906.291799999773502, 257616.184500001370907 ], [ 362870.74210000038147, 257624.33729999884963 ], [ 362890.799199998378754, 257636.322700001299381 ], [ 362908.450000002980232, 257646.810699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602018301", "MAP": "D9-5913-T95", "PARCEL_NAM": "394C-6", "ACRE": "0.21", "LONGITUDE": -64.885315, "LATITUDE": 18.34776674, "OBJECTID_1": 20998, "PARCEL_NO_": "105602018301", "Tax_Legal_": "394C-6 ANNA'S RETREAT No.1 NEW QUARTER", "Name": "CASSIA REALTY CORP.", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 151600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.72319713100001, "SHAPE_Area": 966.94738033700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363631.830899998545647, 257638.799100000411272 ], [ 363622.362000003457069, 257614.445799998939037 ], [ 363608.028200000524521, 257593.219200000166893 ], [ 363607.806999996304512, 257619.18189999833703 ], [ 363607.729699999094009, 257628.258200000971556 ], [ 363598.729000002145767, 257643.594399999827147 ], [ 363605.145300000905991, 257647.657699998468161 ], [ 363608.334600001573563, 257651.905699998140335 ], [ 363635.009400002658367, 257644.313499998301268 ], [ 363632.613899998366833, 257641.549699999392033 ], [ 363631.830899998545647, 257638.799100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602017700", "MAP": "C9-217-T77", "PARCEL_NAM": "394-401", "ACRE": "0.20", "LONGITUDE": -64.88465726, "LATITUDE": 18.34780601, "OBJECTID_1": 20992, "PARCEL_NO_": "105602017700", "Tax_Legal_": "394-401 ANNAS RETREAT NEW QTR", "Name": "FAULKNER, C & DAWSON, O", "Address": "PO Box 8225", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 32500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.982940034600006, "SHAPE_Area": 602.19461660100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363702.822400003671646, 257635.158300001174212 ], [ 363691.65990000218153, 257620.290300000458956 ], [ 363668.206699997186661, 257628.331000000238419 ], [ 363673.751999996602535, 257639.986600000411272 ], [ 363682.517099998891354, 257652.301699999719858 ], [ 363702.822400003671646, 257635.158300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601059200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89317663, "LATITUDE": 18.34777284, "OBJECTID_1": 20832, "PARCEL_NO_": "105601059200", "Tax_Legal_": "215-3B ANNAS RETREAT NEW QTR.", "Name": "RAWLINS, EVERSON & MARY", "Address": "P.O. BOX 5287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 356000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.618548788, "SHAPE_Area": 629.71041120200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362767.699600003659725, 257623.779800001531839 ], [ 362771.324400000274181, 257626.218299999833107 ], [ 362777.674500003457069, 257632.171399999409914 ], [ 362784.950499996542931, 257639.050599999725819 ], [ 362788.873599998652935, 257642.303899999707937 ], [ 362802.236100003123283, 257620.188000001013279 ], [ 362778.165399998426437, 257606.058800000697374 ], [ 362774.875399999320507, 257613.631299998611212 ], [ 362767.699600003659725, 257623.779800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601080300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89257103, "LATITUDE": 18.34779885, "OBJECTID_1": 20880, "PARCEL_NO_": "105601080300", "Tax_Legal_": "215-75&POR.404 ANNAS RET NEW QTR.", "Name": "RICHARDSON, SANDRA & MATTHEW", "Address": "PO Box 302674", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 156600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.474727161, "SHAPE_Area": 699.89379418800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362844.265000000596046, 257608.710799999535084 ], [ 362831.98870000243187, 257629.930700000375509 ], [ 362832.764499999582767, 257633.525699999183416 ], [ 362854.441399998962879, 257644.679999999701977 ], [ 362866.73030000180006, 257621.982400000095367 ], [ 362844.265000000596046, 257608.710799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88776726, "LATITUDE": 18.34779629, "OBJECTID_1": 21049, "PARCEL_NO_": "105602021400", "Tax_Legal_": "394-320 ANNAS RETREAT NEW QTR", "Name": "SEALEY, LEON & ELEANOR", "Address": "PO Box 502484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052484, "Country": "United States", "Land_Value": 20800, "Improved_V": 235700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.618397053, "SHAPE_Area": 660.74516449800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363373.801899999380112, 257637.74269999936223 ], [ 363361.915899999439716, 257613.158599998801947 ], [ 363350.573499999940395, 257619.398600000888109 ], [ 363339.233000002801418, 257625.427499998360872 ], [ 363351.939800001680851, 257648.329599998891354 ], [ 363368.139799997210503, 257639.807300001382828 ], [ 363373.801899999380112, 257637.74269999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502030700", "MAP": "D9-131-T57", "PARCEL_NAM": "REM 1X", "ACRE": "4.35 (d.)", "LONGITUDE": -64.9031308, "LATITUDE": 18.34729937, "OBJECTID_1": 19887, "PARCEL_NO_": "105502030700", "Tax_Legal_": "WINTBERG ESTATE 1X GREAT NORTHSIDE", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 279900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 531.95005058599997, "SHAPE_Area": 16892.893988299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361797.413999997079372, 257584.141699999570847 ], [ 361784.395700000226498, 257549.373799998313189 ], [ 361781.994800001382828, 257547.243200000375509 ], [ 361778.812700003385544, 257542.15089999884367 ], [ 361776.453100003302097, 257535.165500000119209 ], [ 361774.894400000572205, 257528.819899998605251 ], [ 361774.350599996745586, 257497.995799999684095 ], [ 361773.569499999284744, 257495.034099999815226 ], [ 361769.593699999153614, 257488.457699999213219 ], [ 361763.189900003373623, 257482.916799999773502 ], [ 361755.960100002586842, 257479.691300000995398 ], [ 361738.242799997329712, 257477.013099998235703 ], [ 361729.371500000357628, 257477.151599999517202 ], [ 361710.795800000429153, 257480.588199999183416 ], [ 361665.422899998724461, 257505.970199998468161 ], [ 361663.804899998009205, 257506.590300001204014 ], [ 361658.925700001418591, 257511.405499998480082 ], [ 361655.662600003182888, 257515.811799999326468 ], [ 361653.196999996900558, 257521.280000001192093 ], [ 361646.685300000011921, 257528.403900001198053 ], [ 361671.736199997365475, 257555.226700000464916 ], [ 361702.910099998116493, 257588.605500001460314 ], [ 361703.250600002706051, 257589.695500001311302 ], [ 361703.332299999892712, 257590.847699999809265 ], [ 361712.699699997901917, 257640.596200000494719 ], [ 361712.668799996376038, 257640.629099998623133 ], [ 361725.770199999213219, 257649.724399998784065 ], [ 361726.085699997842312, 257649.690699998289347 ], [ 361725.958400003612041, 257649.873599998652935 ], [ 361752.875500001013279, 257671.212000001221895 ], [ 361761.476000003516674, 257661.532800000160933 ], [ 361775.577200002968311, 257642.913699999451637 ], [ 361786.803400002419949, 257626.074400000274181 ], [ 361793.374899998307228, 257610.467300001531839 ], [ 361796.386799998581409, 257596.776799999177456 ], [ 361797.413999997079372, 257584.141699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602028600", "MAP": "D9-4090-T87", "PARCEL_NAM": "394B-C", "ACRE": ".22", "LONGITUDE": -64.88821219, "LATITUDE": 18.34778585, "OBJECTID_1": 21097, "PARCEL_NO_": "105602028600", "Tax_Legal_": "394B-C ANNAS RETREAT NEW QTR.", "Name": "MARTHA E. RALPH,PERRY, PEGGY, JESSICA A. WILKINS", "Address": "PO BOX 8311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 321300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.04001603200001, "SHAPE_Area": 994.17712570699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363324.060900002717972, 257613.222600001841784 ], [ 363319.626500003039837, 257606.110199999064207 ], [ 363318.408100001513958, 257606.838799998164177 ], [ 363307.182499997317791, 257613.55180000141263 ], [ 363305.087300002574921, 257616.14809999987483 ], [ 363295.011699996888638, 257628.633099999278784 ], [ 363294.02759999781847, 257631.350299999117851 ], [ 363284.942100003361702, 257656.436000000685453 ], [ 363299.53490000218153, 257647.267400000244379 ], [ 363301.968199998140335, 257645.598499998450279 ], [ 363320.5996999964118, 257635.618500001728535 ], [ 363333.623800002038479, 257628.560499999672174 ], [ 363327.755900003015995, 257619.149000000208616 ], [ 363324.060900002717972, 257613.222600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702070800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86981679, "LATITUDE": 18.34775088, "OBJECTID_1": 22740, "PARCEL_NO_": "105702070800", "Tax_Legal_": "FRYDENDAHL 56-26 EAST END QTR.", "Name": "SMALL, DAVID & GENEVIEVE", "Address": "6541 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91500, "Improved_V": 195500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.07796147100001, "SHAPE_Area": 1222.68526372 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365279.980400003492832, 257646.800000000745058 ], [ 365272.12219999730587, 257622.671000000089407 ], [ 365226.850100003182888, 257636.232599999755621 ], [ 365239.522699996829033, 257663.145199999213219 ], [ 365256.525399997830391, 257655.05180000141263 ], [ 365279.980400003492832, 257646.800000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602010800", "MAP": "G9-2630--T77", "PARCEL_NAM": "14-5", "ACRE": ".53", "LONGITUDE": -64.88305069, "LATITUDE": 18.34757018, "OBJECTID_1": 20923, "PARCEL_NO_": "105602010800", "Tax_Legal_": "14-5 ANNAS RETREAT NEW QTR", "Name": "TYSON, HANSEL E. & VIOLA", "Address": "PO Box 304765", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 129300, "Improved_V": 435200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.298631495, "SHAPE_Area": 3045.4254499399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363898.233999997377396, 257606.769499998539686 ], [ 363875.927100002765656, 257571.558200001716614 ], [ 363867.273500002920628, 257579.620999999344349 ], [ 363855.43469999730587, 257587.676300000399351 ], [ 363845.548699997365475, 257595.243400000035763 ], [ 363834.564300000667572, 257600.857599999755621 ], [ 363831.391000002622604, 257602.078099999576807 ], [ 363823.091600000858307, 257603.542700000107288 ], [ 363821.53999999910593, 257603.743599999696016 ], [ 363808.956200003623962, 257605.373199999332428 ], [ 363827.259300000965595, 257632.732799999415874 ], [ 363836.853299997746944, 257647.074099998921156 ], [ 363898.233999997377396, 257606.769499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702071200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87072884, "LATITUDE": 18.34769013, "OBJECTID_1": 22743, "PARCEL_NO_": "105702071200", "Tax_Legal_": "FRYDENDAHL 56-31 EAST END QTR.", "Name": "GITTENS, JAMES & PAMELA", "Address": "PO Box 7412", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35100, "Improved_V": 111500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.36766422700001, "SHAPE_Area": 1241.7465884600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365184.007600001990795, 257648.547600001096725 ], [ 365151.303000003099442, 257606.694499999284744 ], [ 365143.191399998962879, 257612.327599998563528 ], [ 365139.930100001394749, 257616.522799998521805 ], [ 365133.429300002753735, 257622.380199998617172 ], [ 365161.319399997591972, 257661.449700001627207 ], [ 365169.438199996948242, 257654.972300000488758 ], [ 365184.007600001990795, 257648.547600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601060800", "MAP": "C9-261-T80", "PARCEL_NAM": "215-173", "ACRE": "0.11", "LONGITUDE": -64.89141872, "LATITUDE": 18.34780657, "OBJECTID_1": 20844, "PARCEL_NO_": "105601060800", "Tax_Legal_": "215-173 ANNAS RETREAT NEW QTR", "Name": "PURCELL (TRUSTEE), ALFONSO", "Address": "PO Box 8862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 77700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.1964329029, "SHAPE_Area": 495.35735051799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362978.039200000464916, 257618.460499998182058 ], [ 362974.459299996495247, 257615.600600000470877 ], [ 362957.094099998474121, 257625.403200000524521 ], [ 362952.465700000524521, 257628.015999998897314 ], [ 362955.356299996376038, 257630.729299999773502 ], [ 362958.556400001049042, 257633.710799999535084 ], [ 362968.957599997520447, 257643.295200001448393 ], [ 362988.451099999248981, 257626.778299998492002 ], [ 362978.039200000464916, 257618.460499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602080600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89057483000001, "LATITUDE": 18.34778002, "OBJECTID_1": 21375, "PARCEL_NO_": "105602080600", "Tax_Legal_": "215-208 ANNAS RETREAT NEW QTR.", "Name": "SIMON, VERNA & DEVON", "Address": "PO Box 9489", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 103100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.715173558299995, "SHAPE_Area": 588.4072556 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363077.122100003063679, 257630.2483000010252 ], [ 363058.758500002324581, 257608.777499999850988 ], [ 363043.3091000020504, 257623.849800001829863 ], [ 363060.072700001299381, 257643.829799998551607 ], [ 363077.122100003063679, 257630.2483000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021300", "MAP": "A9-778-T013", "PARCEL_NAM": "49 REM", "ACRE": "7.060", "LONGITUDE": -64.86884345, "LATITUDE": 18.34697973, "OBJECTID_1": 22378, "PARCEL_NO_": "105702021300", "Tax_Legal_": "ANNUAL", "Name": "MARGARITAVILLE VACATION CLUB BY WYNDHAM,INC.", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 1712300, "Improved_V": 1000000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1098.68536518, "SHAPE_Area": 33709.5781145 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365404.345200002193451, 257435.879900000989437 ], [ 365392.250600002706051, 257435.780900001525879 ], [ 365391.588799998164177, 257513.457899998873472 ], [ 365351.258799999952316, 257514.816599998623133 ], [ 365350.23309999704361, 257540.561599999666214 ], [ 365301.847199998795986, 257541.010000001639128 ], [ 365300.981499999761581, 257547.969000000506639 ], [ 365252.592000000178814, 257548.839499998837709 ], [ 365252.627999998629093, 257544.617899999022484 ], [ 365202.623999997973442, 257545.686299998313189 ], [ 365202.60419999808073, 257548.008200000971556 ], [ 365160.668799996376038, 257548.509300000965595 ], [ 365160.724500000476837, 257541.965900000184774 ], [ 365136.531499996781349, 257542.190099999308586 ], [ 365137.822300001978874, 257579.986400000751019 ], [ 365144.206299997866154, 257587.84910000115633 ], [ 365149.816299997270107, 257591.905799999833107 ], [ 365157.044299997389317, 257595.342399999499321 ], [ 365163.480400003492832, 257597.08390000090003 ], [ 365198.114100001752377, 257601.800299998372793 ], [ 365288.390500001609325, 257606.12779999896884 ], [ 365323.826899997889996, 257611.272900000214577 ], [ 365361.642700001597404, 257621.081700000911951 ], [ 365421.122800000011921, 257643.522199999541044 ], [ 365441.206900000572205, 257652.341400001198053 ], [ 365462.079300001263618, 257663.278000000864267 ], [ 365482.341399997472763, 257651.200399998575449 ], [ 365472.832900002598763, 257631.490899998694658 ], [ 365468.920000001788139, 257617.526700001209974 ], [ 365465.055699996650219, 257597.863400001078844 ], [ 365462.001299999654293, 257577.784499999135733 ], [ 365460.705099999904633, 257540.621399998664856 ], [ 365464.889499999582767, 257522.712699998170137 ], [ 365474.768500000238419, 257498.940000001341105 ], [ 365485.392599999904633, 257482.350600000470877 ], [ 365497.600599996745586, 257469.151599999517202 ], [ 365503.280699998140335, 257464.976199999451637 ], [ 365430.955399997532368, 257435.886599998921156 ], [ 365404.345200002193451, 257435.879900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602090200", "MAP": "C9-261-T80", "PARCEL_NAM": "215-178", "ACRE": "0.11", "LONGITUDE": -64.89094048, "LATITUDE": 18.3476954, "OBJECTID_1": 21458, "PARCEL_NO_": "105602090200", "Tax_Legal_": "215-178 ANNA'S RETREAT NEW QTR.", "Name": "BRATHWAITE, CICILY", "Address": "PO Box 503133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20200, "Improved_V": 308600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.802661425, "SHAPE_Area": 615.24733893699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363039.747299998998642, 257613.817800000309944 ], [ 363016.113899998366833, 257597.873799998313189 ], [ 363010.369000002741814, 257609.64809999987483 ], [ 363011.148400001227856, 257612.820799998939037 ], [ 363011.850400000810623, 257625.070000000298023 ], [ 363012.43299999833107, 257639.928399998694658 ], [ 363039.747299998998642, 257613.817800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702012100", "MAP": null, "PARCEL_NAM": "11-5-8", "ACRE": null, "LONGITUDE": -64.87257697, "LATITUDE": 18.34772615, "OBJECTID_1": 22276, "PARCEL_NO_": "105702012100", "Tax_Legal_": "FRYDENDAHL 11-5-8 EAST END QTR", "Name": "RILEY, GLEN, BENJAMIN & LINDA AND ELLENORE WEEKES PRYCE", "Address": "PO Box 2447", "City": "Covington", "State": "Georgia", "Zip": 30015, "Country": "United States", "Land_Value": 29900, "Improved_V": 111100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.757156674, "SHAPE_Area": 960.82076398200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364976.720600001513958, 257654.450399998575449 ], [ 364972.224299997091293, 257614.305900000035763 ], [ 364946.348600000143051, 257622.7489 ], [ 364952.507799997925758, 257656.996500000357628 ], [ 364976.720600001513958, 257654.450399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502030400", "MAP": "A9-31-T65", "PARCEL_NAM": null, "ACRE": ".49", "LONGITUDE": -64.90571226, "LATITUDE": 18.34762516, "OBJECTID_1": 19885, "PARCEL_NO_": "105502030400", "Tax_Legal_": "WINTBERG ESTATE 1-143-2&3 GREAT NORTHSIDE QTR", "Name": "COMISSIONG, RICHARD", "Address": "PO Box 335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 99500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.438823208, "SHAPE_Area": 1776.4551498000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361484.973300002515316, 257579.853700000792742 ], [ 361447.940399996936321, 257572.795699998736382 ], [ 361430.982699997723103, 257575.612199999392033 ], [ 361457.951399996876717, 257628.184099998325109 ], [ 361464.427100002765656, 257625.281800001859665 ], [ 361473.310900002717972, 257623.665800001472235 ], [ 361484.973300002515316, 257579.853700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602010900", "MAP": "C9-217-T77", "PARCEL_NAM": "394-17", "ACRE": "0.14", "LONGITUDE": -64.88413068, "LATITUDE": 18.3477643, "OBJECTID_1": 20924, "PARCEL_NO_": "105602010900", "Tax_Legal_": "ANNAS RETREAT 394-17 NEW QTR", "Name": "BASS, EMEVILLA & LOCHTON,A,E,J,V,W,M,R,J,P & G CLARKE", "Address": "PO Box 10395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 142600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.59270539800001, "SHAPE_Area": 613.09471306399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363736.420999996364117, 257621.116799999028444 ], [ 363720.658399999141693, 257623.905200000852346 ], [ 363727.019000001251698, 257634.511900000274181 ], [ 363739.009300000965595, 257646.853500001132488 ], [ 363760.128100000321865, 257628.872299998998642 ], [ 363758.771200001239777, 257621.065699998289347 ], [ 363736.420999996364117, 257621.116799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702015900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87405543, "LATITUDE": 18.3477397, "OBJECTID_1": 22309, "PARCEL_NO_": "105702015900", "Tax_Legal_": "52-7G ESTATE FRYDENDAHL EAST END QTR", "Name": "BROWN, JACQUELINE A. & WELTWORTH R. ROBERTS", "Address": "PO Box 502794", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32500, "Improved_V": 133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.868729935, "SHAPE_Area": 987.96935296100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364824.595399998128414, 257621.752399999648333 ], [ 364796.397900000214577, 257618.777399998158216 ], [ 364786.445200003683567, 257651.2043999992311 ], [ 364816.246399998664856, 257655.247999999672174 ], [ 364824.595399998128414, 257621.752399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87372885000001, "LATITUDE": 18.34775067, "OBJECTID_1": 22310, "PARCEL_NO_": "105702016000", "Tax_Legal_": "FRYDENDAHL 52-8B EAST END QTR", "Name": "PAUL, ALKIN A. & RAQUEL C.", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29800, "Improved_V": 88100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.61622255899999, "SHAPE_Area": 1231.45088461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364860.055200003087521, 257624.153599999845028 ], [ 364824.595399998128414, 257621.752399999648333 ], [ 364816.246399998664856, 257655.247999999672174 ], [ 364864.677299998700619, 257649.522599998861551 ], [ 364860.055200003087521, 257624.153599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502032900", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-M", "ACRE": ".2518", "LONGITUDE": -64.90369034, "LATITUDE": 18.34750833, "OBJECTID_1": 19905, "PARCEL_NO_": "105502032900", "Tax_Legal_": "WINTBERG ESTATE 1`X-1-M GREAT NORTHSIDE QTR.", "Name": "JUELLE, MARIA & GUERRA, ELBA", "Address": "PO Box 502282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26100, "Improved_V": 281900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.92106682, "SHAPE_Area": 1718.88788398 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361703.133299998939037, 257589.790800001472235 ], [ 361702.910099998116493, 257588.605500001460314 ], [ 361671.736199997365475, 257555.226700000464916 ], [ 361646.268399998545647, 257576.894900001585484 ], [ 361651.062899999320507, 257582.479699999094009 ], [ 361671.057099997997284, 257615.8597999997437 ], [ 361703.133299998939037, 257589.790800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502032600", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-F", "ACRE": "0.23", "LONGITUDE": -64.90400178, "LATITUDE": 18.3476972, "OBJECTID_1": 19902, "PARCEL_NO_": "105502032600", "Tax_Legal_": "WINTBERG ESTATE 1X1-F GT.NORTHSIDE QTR.", "Name": "HARRIGAN, CLARALINE B.", "Address": "PO Box 6071", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.965682112, "SHAPE_Area": 736.837754163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361642.969200000166893, 257586.002000000327826 ], [ 361640.780799999833107, 257584.170800000429153 ], [ 361621.213799998164177, 257606.484099999070168 ], [ 361625.833400003612041, 257609.715300001204014 ], [ 361647.755400002002716, 257624.664599999785423 ], [ 361657.975699998438358, 257611.365200001746416 ], [ 361644.553000003099442, 257589.392499998211861 ], [ 361642.969200000166893, 257586.002000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602018000", "MAP": "D9-5703-T94", "PARCEL_NAM": "394C-3", "ACRE": "0.16", "LONGITUDE": -64.88556892, "LATITUDE": 18.34773777, "OBJECTID_1": 20995, "PARCEL_NO_": "105602018000", "Tax_Legal_": "394C-3 ESTATE ANNAS RETREAT NEW QUARTER", "Name": "GUMBS, JOHN D", "Address": "PO Box 10161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 130100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.72458600500001, "SHAPE_Area": 812.98686356999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363607.806999996304512, 257619.18189999833703 ], [ 363574.270199999213219, 257610.572999998927116 ], [ 363573.984999999403954, 257613.838799998164177 ], [ 363570.641099996864796, 257627.743599999696016 ], [ 363570.610500000417233, 257631.331900000572205 ], [ 363573.00789999961853, 257633.884700000286102 ], [ 363589.092799998819828, 257638.871500000357628 ], [ 363598.729000002145767, 257643.594399999827147 ], [ 363607.729699999094009, 257628.258200000971556 ], [ 363607.806999996304512, 257619.18189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87235544000001, "LATITUDE": 18.34765865, "OBJECTID_1": 22282, "PARCEL_NO_": "105702012700", "Tax_Legal_": "FRYDENDAHL 11-5-12 EAST END QTR", "Name": "CABO, MAXINE", "Address": "PO Box 7964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29900, "Improved_V": 321500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.043742818, "SHAPE_Area": 917.41692826300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365002.061499997973442, 257614.127900000661612 ], [ 364996.465899996459484, 257608.382500000298023 ], [ 364972.224299997091293, 257614.305900000035763 ], [ 364976.720600001513958, 257654.450399998575449 ], [ 364988.824199996888638, 257653.493999999016523 ], [ 365002.061499997973442, 257614.127900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87215018000001, "LATITUDE": 18.34770318, "OBJECTID_1": 22283, "PARCEL_NO_": "105702012800", "Tax_Legal_": "FRYDENDAHL 11-5-13 EAST END QTR", "Name": "HENDERSON, CYRENE V. & JOHN W", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32400, "Improved_V": 276200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.777459286, "SHAPE_Area": 888.39671909799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365026.819799996912479, 257642.194899998605251 ], [ 365011.760600000619888, 257611.462999999523163 ], [ 365002.061499997973442, 257614.127900000661612 ], [ 364988.824199996888638, 257653.493999999016523 ], [ 365000.929700002074242, 257652.326499998569489 ], [ 365026.819799996912479, 257642.194899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602080900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89010861, "LATITUDE": 18.34774756, "OBJECTID_1": 21378, "PARCEL_NO_": "105602080900", "Tax_Legal_": "215-213 ANNAS RETREAT NEW QTR.", "Name": "LETANG, EMANUEL", "Address": "PO Box 502082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20200, "Improved_V": 133800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.556339249399997, "SHAPE_Area": 276.07690787600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363121.499899998307228, 257627.022900000214577 ], [ 363105.512100003659725, 257610.637800000607967 ], [ 363100.618500001728535, 257617.141699999570847 ], [ 363097.368000000715256, 257620.07039999961853 ], [ 363111.750399999320507, 257635.597899999469519 ], [ 363121.499899998307228, 257627.022900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95806865, "LATITUDE": 18.35410643, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.28770020100001, "SHAPE_Area": 507.00290266100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355928.85249999910593, 258270.673900000751019 ], [ 355938.901399999856949, 258264.005300000309944 ], [ 355944.986800000071526, 258262.947000000625849 ], [ 355948.95549999922514, 258263.211599998176098 ], [ 355952.130500003695488, 258264.005300000309944 ], [ 355955.570100001990795, 258264.534499999135733 ], [ 355964.168300002813339, 258267.826200000941753 ], [ 355961.160700000822544, 258264.394400000572205 ], [ 355948.340599998831749, 258254.790300000458956 ], [ 355935.4037000015378, 258258.906199999153614 ], [ 355922.427100002765656, 258267.666000001132488 ], [ 355918.379399999976158, 258269.532699998468161 ], [ 355911.11540000140667, 258270.317600000649691 ], [ 355881.283600002527237, 258269.862300001084805 ], [ 355879.053000003099442, 258269.945599999278784 ], [ 355880.428800001740456, 258275.554900001734495 ], [ 355911.063199996948242, 258276.438900001347065 ], [ 355919.941699996590614, 258275.4560999982059 ], [ 355928.85249999910593, 258270.673900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95773694, "LATITUDE": 18.35499405, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.15102602098000001, "SHAPE_Area": 0.00044554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355955.069200001657009, 258366.508299998939037 ], [ 355955.032399997115135, 258366.567099999636412 ], [ 355955.044299997389317, 258366.572299998253584 ], [ 355955.069200001657009, 258366.508299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "C9-324-T92", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94067651, "LATITUDE": 18.35989931, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.605812179600001, "SHAPE_Area": 82.590380322200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357760.814400002360344, 258927.387600000947714 ], [ 357758.538900002837181, 258924.629399999976158 ], [ 357751.236400000751019, 258916.903499998152256 ], [ 357747.318899996578693, 258920.906700000166893 ], [ 357750.601400002837181, 258924.946899998933077 ], [ 357752.294699996709824, 258928.015999998897314 ], [ 357753.114699997007847, 258930.624899998307228 ], [ 357760.814400002360344, 258927.387600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93585104, "LATITUDE": 18.35514242, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.17788180600002, "SHAPE_Area": 593.143689569 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358256.177100002765656, 258448.66440000012517 ], [ 358255.49889999628067, 258441.7347999997437 ], [ 358255.185099996626377, 258438.074799999594688 ], [ 358254.987499997019768, 258435.505199998617172 ], [ 358254.987499997019768, 258432.960799999535084 ], [ 358254.683600001037121, 258429.111900001764297 ], [ 358254.971799999475479, 258425.557100001722574 ], [ 358255.23650000244379, 258422.646000001579523 ], [ 358255.663400001823902, 258421.487300001084805 ], [ 358256.707500003278255, 258419.640000000596046 ], [ 358259.435199998319149, 258416.184900000691414 ], [ 358261.684000000357628, 258414.217300001531839 ], [ 358266.545900002121925, 258409.938799999654293 ], [ 358269.45830000191927, 258408.52419999986887 ], [ 358271.790100000798702, 258407.774599999189377 ], [ 358274.321199998259544, 258407.413100000470877 ], [ 358277.264700002968311, 258407.097699999809265 ], [ 358280.213600002229214, 258406.704500000923872 ], [ 358283.127099998295307, 258406.704500000923872 ], [ 358286.682499997317791, 258406.135600000619888 ], [ 358290.306900002062321, 258404.474500000476837 ], [ 358292.470899999141693, 258402.598999999463558 ], [ 358295.38400000333786, 258399.685899998992682 ], [ 358296.344099998474121, 258395.077399998903275 ], [ 358295.333700001239777, 258389.621199999004602 ], [ 358291.106499999761581, 258386.803100001066923 ], [ 358286.633699998259544, 258385.390700001269579 ], [ 358279.268200002610683, 258382.549699999392033 ], [ 358273.62389999628067, 258380.632699999958277 ], [ 358269.255599997937679, 258379.034600000828505 ], [ 358265.762100003659725, 258377.90430000051856 ], [ 358261.300399996340275, 258376.005699999630451 ], [ 358255.835900001227856, 258372.476599998772144 ], [ 358251.277500003576279, 258371.590199999511242 ], [ 358246.318400003015995, 258370.47690000012517 ], [ 358245.517499998211861, 258370.228399999439716 ], [ 358239.078599996864796, 258372.698100000619888 ], [ 358245.216899998486042, 258374.603100001811981 ], [ 358250.402800001204014, 258375.767200000584126 ], [ 358254.2128000035882, 258376.508099999278784 ], [ 358259.29280000180006, 258379.788899999111891 ], [ 358264.266999997198582, 258381.905600000172853 ], [ 358267.865299999713898, 258383.06980000063777 ], [ 358272.204499997198582, 258384.657299999147654 ], [ 358277.813699997961521, 258386.562300000339746 ], [ 358285.222000002861023, 258389.419799998402596 ], [ 358289.243699997663498, 258390.689800001680851 ], [ 358291.4662000015378, 258392.171399999409914 ], [ 358291.995300002396107, 258395.028999999165535 ], [ 358291.4662000015378, 258397.568999998271465 ], [ 358289.561200000345707, 258399.473999999463558 ], [ 358287.973700001835823, 258400.849800001829863 ], [ 358285.433700002729893, 258402.013999998569489 ], [ 358282.787799999117851, 258402.437300000339746 ], [ 358279.930299997329712, 258402.437300000339746 ], [ 358276.755300000309944, 258402.860599998384714 ], [ 358273.792000003159046, 258403.178100001066923 ], [ 358270.828599996864796, 258403.601500000804663 ], [ 358267.865299999713898, 258404.554000001400709 ], [ 358264.161100000143051, 258406.353100001811981 ], [ 358261.515299998223782, 258408.681499999016523 ], [ 358258.869400002062321, 258411.009799998253584 ], [ 358256.32940000295639, 258413.232299998402596 ], [ 358253.154399998486042, 258417.254000000655651 ], [ 358251.778599999845028, 258419.688200000673532 ], [ 358251.037799999117851, 258421.699000000953674 ], [ 358250.720299996435642, 258425.191500000655651 ], [ 358250.402800001204014, 258429.107400000095367 ], [ 358250.720299996435642, 258433.129000000655651 ], [ 358250.720299996435642, 258435.668999999761581 ], [ 358250.931900002062321, 258438.420699998736382 ], [ 358251.249399997293949, 258442.124899998307228 ], [ 358251.896300002932549, 258448.733600001782179 ], [ 358256.177100002765656, 258448.66440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "F9-1979-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93504194, "LATITUDE": 18.34864103, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.10758713899997, "SHAPE_Area": 552.55601941800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358366.664499998092651, 257677.918099999427795 ], [ 358365.076899997889996, 257676.8597999997437 ], [ 358364.352200001478195, 257675.487199999392033 ], [ 358363.595299996435642, 257673.684799998998642 ], [ 358363.383599996566772, 257671.991500001400709 ], [ 358388.408900000154972, 257655.151399999856949 ], [ 358391.414800003170967, 257653.128699999302626 ], [ 358387.506899997591972, 257649.737199999392033 ], [ 358384.269500002264977, 257652.210299998521805 ], [ 358354.039399996399879, 257675.303199999034405 ], [ 358350.031599998474121, 257676.6722999997437 ], [ 358337.000200003385544, 257681.124000001698732 ], [ 358332.116899996995926, 257683.397199999541044 ], [ 358307.373000003397465, 257694.915300000458956 ], [ 358307.4375, 257695.070799998939037 ], [ 358345.173199996352196, 257683.125199999660254 ], [ 358347.924900002777576, 257682.066799998283386 ], [ 358350.094400003552437, 257681.167199999094009 ], [ 358352.15820000320673, 257680.373500000685453 ], [ 358353.692800000309944, 257679.791400000452995 ], [ 358355.544900000095367, 257679.209300000220537 ], [ 358357.185300000011921, 257678.7331000007689 ], [ 358359.143200002610683, 257678.36259999871254 ], [ 358360.148599997162819, 257678.098099999129772 ], [ 358361.630300000309944, 257677.886399999260902 ], [ 358363.112000003457069, 257678.30970000103116 ], [ 358364.011600002646446, 257678.944699998944998 ], [ 358364.487800002098083, 257679.897199999541044 ], [ 358364.487800002098083, 257681.643500000238419 ], [ 358364.434900000691414, 257684.024700000882149 ], [ 358363.822999998927116, 257686.538699999451637 ], [ 358362.600400000810623, 257687.855900000780821 ], [ 358361.542099997401237, 257690.290100000798702 ], [ 358361.012900002300739, 257691.877599999308586 ], [ 358360.69539999961853, 257693.46510000154376 ], [ 358360.166299998760223, 257695.475900001823902 ], [ 358359.531300000846386, 257697.275100000202656 ], [ 358358.790399998426437, 257699.603399999439716 ], [ 358357.202899999916553, 257706.482599999755621 ], [ 358357.465700000524521, 257708.111900001764297 ], [ 358360.735100001096725, 257710.142299998551607 ], [ 358363.116400003433228, 257711.729800000786781 ], [ 358365.497599996626377, 257713.515700001269579 ], [ 358367.283600002527237, 257714.6402000002563 ], [ 358369.508599996566772, 257716.089600000530481 ], [ 358372.881899997591972, 257711.4364 ], [ 358374.420299999415874, 257710.647100001573563 ], [ 358372.727300003170967, 257709.779100000858307 ], [ 358371.4358000010252, 257709.116999998688698 ], [ 358368.789899997413158, 257708.45549999922514 ], [ 358366.871699996292591, 257707.463300000876188 ], [ 358364.973399996757507, 257706.371800001710653 ], [ 358364.225900001823902, 257705.94200000166893 ], [ 358363.318199999630451, 257705.184999998658895 ], [ 358362.536899998784065, 257703.318199999630451 ], [ 358362.431100003421307, 257702.577399998903275 ], [ 358362.325300000607967, 257701.519000001251698 ], [ 358362.219400003552437, 257700.354899998754263 ], [ 358364.315200001001358, 257694.873700000345707 ], [ 358366.347000002861023, 257689.559799998998642 ], [ 358368.463600002229214, 257685.855700001120567 ], [ 358368.887000001966953, 257684.374000001698732 ], [ 358368.887000001966953, 257682.574799999594688 ], [ 358368.675300002098083, 257681.516499999910593 ], [ 358368.040299996733665, 257679.929000001400709 ], [ 358367.722800001502037, 257679.082299999892712 ], [ 358366.664499998092651, 257677.918099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91648659000001, "LATITUDE": 18.35410057, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.49450051700001, "SHAPE_Area": 314.75463088100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360325.060500003397465, 258284.067699998617172 ], [ 360319.459399998188019, 258278.955600000917912 ], [ 360319.200199998915195, 258282.250900000333786 ], [ 360318.846199996769428, 258286.751299999654293 ], [ 360318.337200000882149, 258293.223000001162291 ], [ 360302.427500002086163, 258318.898600000888109 ], [ 360309.412600003182888, 258323.97859999909997 ], [ 360318.415100000798702, 258306.882199998944998 ], [ 360324.972099997103214, 258294.429900001734495 ], [ 360325.060500003397465, 258284.067699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91168831, "LATITUDE": 18.3562513, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 14.1591556422, "SHAPE_Area": 11.382394509899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360822.80120000243187, 258546.210499998182058 ], [ 360820.11710000038147, 258542.734700001776218 ], [ 360818.5016999989748, 258544.754000000655651 ], [ 360821.083999998867512, 258548.35700000077486 ], [ 360822.80120000243187, 258546.210499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91131836, "LATITUDE": 18.35593956, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.776822173, "SHAPE_Area": 444.78469596600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360820.11710000038147, 258542.734700001776218 ], [ 360822.80120000243187, 258546.210499998182058 ], [ 360823.624300003051758, 258545.181600000709295 ], [ 360827.190999999642372, 258539.279599998146296 ], [ 360830.321400001645088, 258535.254700001329184 ], [ 360833.509400002658367, 258531.459499999880791 ], [ 360837.689300000667572, 258527.124800000339746 ], [ 360842.777300000190735, 258521.882500000298023 ], [ 360846.721199996769428, 258518.545400001108646 ], [ 360851.079899996519089, 258514.96510000154376 ], [ 360854.692299999296665, 258512.2195999994874 ], [ 360858.847099997103214, 258510.06529999896884 ], [ 360863.737899996340275, 258506.855700001120567 ], [ 360867.022799998521805, 258505.570300001651049 ], [ 360871.932599999010563, 258503.511399999260902 ], [ 360880.052100002765656, 258500.3885000012815 ], [ 360886.506800003349781, 258498.184399999678135 ], [ 360893.99379999935627, 258495.532800000160933 ], [ 360902.07039999961853, 258493.358300000429153 ], [ 360906.162699997425079, 258492.296799998730421 ], [ 360908.156499996781349, 258491.999400001019239 ], [ 360905.091300003230572, 258488.166299998760223 ], [ 360900.979999996721745, 258489.232700001448393 ], [ 360892.725000001490116, 258491.455200001597404 ], [ 360885.104999996721745, 258494.153999999165535 ], [ 360878.596199996769428, 258496.376499999314547 ], [ 360870.3412000015378, 258499.551500000059605 ], [ 360865.419900000095367, 258501.615200001746416 ], [ 360861.768700003623962, 258503.043999999761581 ], [ 360856.68860000371933, 258506.377700001001358 ], [ 360852.402400001883507, 258508.600299999117851 ], [ 360848.433600001037121, 258511.616500001400709 ], [ 360843.988600000739098, 258515.267799999564886 ], [ 360839.861100003123283, 258518.760299999266863 ], [ 360834.622400000691414, 258524.157800000160933 ], [ 360830.336099997162819, 258528.602800000458956 ], [ 360827.002300001680851, 258532.57149999961257 ], [ 360823.668600000441074, 258536.857799999415874 ], [ 360820.11710000038147, 258542.734700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91302098, "LATITUDE": 18.34851222, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.35511233099999, "SHAPE_Area": 419.19039137200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360683.693499997258186, 257691.551699999719858 ], [ 360694.276799999177456, 257691.128400001674891 ], [ 360699.789399996399879, 257691.243200000375509 ], [ 360704.436800003051758, 257691.339999999850988 ], [ 360712.691899999976158, 257690.704999998211861 ], [ 360720.311899997293949, 257690.070000000298023 ], [ 360727.862000003457069, 257688.63230000063777 ], [ 360728.15820000320673, 257682.9543999992311 ], [ 360724.096799999475479, 257684.7489 ], [ 360718.402400001883507, 257685.380199998617172 ], [ 360709.130500003695488, 257686.26240000128746 ], [ 360707.470499999821186, 257686.420400001108646 ], [ 360699.961300000548363, 257686.357999999076128 ], [ 360696.111199997365475, 257686.076400000602007 ], [ 360685.842399999499321, 257685.587099999189377 ], [ 360676.932099997997284, 257685.89809999987483 ], [ 360676.962399996817112, 257685.711599998176098 ], [ 360653.636699996888638, 257683.296700000762939 ], [ 360649.043099999427795, 257682.886700000613928 ], [ 360648.062799997627735, 257688.353500001132488 ], [ 360652.578400000929832, 257689.011700000613928 ], [ 360676.113399997353554, 257690.932900000363588 ], [ 360683.693499997258186, 257691.551699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89853805, "LATITUDE": 18.35321402, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.2979051, "SHAPE_Area": 485.87842764200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362227.201499998569489, 258192.429299999028444 ], [ 362228.550800003111362, 258192.270599998533726 ], [ 362230.629699997603893, 258192.638000000268221 ], [ 362233.789599999785423, 258193.381799999624491 ], [ 362238.552100002765656, 258193.540600001811981 ], [ 362242.123999997973442, 258193.8581000007689 ], [ 362242.479999996721745, 258189.714600000530481 ], [ 362231.399800002574921, 258188.729699999094009 ], [ 362224.264600001275539, 258188.095400001853704 ], [ 362221.089599996805191, 258189.153799999505281 ], [ 362218.317199997603893, 258190.617800001055002 ], [ 362216.432899996638298, 258192.752099998295307 ], [ 362215.151399999856949, 258196.370799999684095 ], [ 362215.617200002074242, 258196.490699999034405 ], [ 362215.374600000679493, 258200.372099999338388 ], [ 362215.374600000679493, 258208.20380000025034 ], [ 362214.527900002896786, 258212.648800000548363 ], [ 362213.681199997663498, 258215.400499999523163 ], [ 362212.628799997270107, 258218.341499999165535 ], [ 362210.294600002467632, 258221.538800001144409 ], [ 362206.907899998128414, 258225.137200001627207 ], [ 362200.981200002133846, 258234.662200000137091 ], [ 362197.594499997794628, 258239.107200000435114 ], [ 362196.324500001966953, 258241.647199999541044 ], [ 362196.536200001835823, 258244.822200000286102 ], [ 362198.057599999010563, 258247.139800000935793 ], [ 362204.817699998617172, 258257.437600001692772 ], [ 362205.974399998784065, 258256.295800000429153 ], [ 362210.92960000038147, 258251.405099999159575 ], [ 362207.119599997997284, 258248.547600001096725 ], [ 362206.325800001621246, 258247.03940000012517 ], [ 362205.29389999806881, 258245.134399998933077 ], [ 362205.172499999403954, 258243.768500000238419 ], [ 362204.420800000429153, 258241.086300000548363 ], [ 362205.055799998342991, 258238.466899998486042 ], [ 362206.643299996852875, 258236.006299998611212 ], [ 362209.262699998915195, 258233.386900000274181 ], [ 362213.145300000905991, 258227.104899998754263 ], [ 362216.327100001275539, 258221.956900000572205 ], [ 362217.245600000023842, 258219.55460000038147 ], [ 362218.390799999237061, 258216.559399999678135 ], [ 362218.311499997973442, 258213.860599998384714 ], [ 362218.659500002861023, 258207.197700001299381 ], [ 362218.86710000038147, 258203.224300000816584 ], [ 362219.740199998021126, 258200.128699999302626 ], [ 362220.140699997544289, 258197.668099999427795 ], [ 362220.481899999082088, 258195.572399999946356 ], [ 362221.4070999994874, 258194.016800001263618 ], [ 362222.597699999809265, 258193.143699999898672 ], [ 362223.708999998867512, 258192.905600000172853 ], [ 362225.534599997103214, 258192.826200000941753 ], [ 362227.201499998569489, 258192.429299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89871209, "LATITUDE": 18.34829354, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.61150665100001, "SHAPE_Area": 506.40260265400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362222.364799998700619, 257676.247400000691414 ], [ 362219.738300003111362, 257675.718299999833107 ], [ 362217.737199999392033, 257675.580600000917912 ], [ 362216.149700000882149, 257675.739399999380112 ], [ 362214.403399996459484, 257675.97749999910593 ], [ 362212.736599996685982, 257676.05689999833703 ], [ 362209.561599999666214, 257675.104400001466274 ], [ 362204.131599999964237, 257673.234400000423193 ], [ 362198.330600000917912, 257669.252399999648333 ], [ 362196.809299997985363, 257668.458700001239777 ], [ 362192.219700001180172, 257667.335400000214577 ], [ 362190.890900000929832, 257666.944099999964237 ], [ 362188.921400003135204, 257666.364199999719858 ], [ 362186.780199997127056, 257665.733600001782179 ], [ 362183.371899999678135, 257664.729899998754263 ], [ 362181.591399997472763, 257664.48200000077486 ], [ 362179.460699997842312, 257664.185400001704693 ], [ 362176.928599998354912, 257663.832800000905991 ], [ 362174.693199999630451, 257663.949499998241663 ], [ 362171.922600001096725, 257664.094099998474121 ], [ 362166.441100001335144, 257664.380199998617172 ], [ 362161.41610000282526, 257665.116700001060963 ], [ 362158.028200000524521, 257665.613200001418591 ], [ 362157.83219999819994, 257670.133600000292063 ], [ 362166.403300002217293, 257668.812899999320507 ], [ 362168.865099996328354, 257668.74100000038743 ], [ 362171.656300000846386, 257668.659499999135733 ], [ 362177.695299997925758, 257668.4831000007689 ], [ 362180.017599999904633, 257669.035199999809265 ], [ 362181.639200001955032, 257669.420699998736382 ], [ 362183.415899999439716, 257669.842999998480082 ], [ 362184.882500000298023, 257670.191599998623133 ], [ 362185.973600000143051, 257670.4510000012815 ], [ 362189.187100000679493, 257671.214899998158216 ], [ 362190.571099996566772, 257671.543800000101328 ], [ 362196.987899996340275, 257675.298200000077486 ], [ 362200.162900000810623, 257677.520700000226498 ], [ 362202.067900002002716, 257678.631900001317263 ], [ 362203.337899997830391, 257679.584399998188019 ], [ 362204.290399998426437, 257681.330699998885393 ], [ 362204.766599997878075, 257682.441899999976158 ], [ 362207.442199997603893, 257688.153599999845028 ], [ 362210.458499997854233, 257690.3761 ], [ 362213.378799997270107, 257691.370700001716614 ], [ 362216.332299999892712, 257691.328600000590086 ], [ 362219.824799999594688, 257690.53489999845624 ], [ 362221.094800002872944, 257689.264899998903275 ], [ 362222.999799996614456, 257686.724899999797344 ], [ 362223.793499998748302, 257684.026099998503923 ], [ 362223.952299997210503, 257681.644900001585484 ], [ 362223.952299997210503, 257679.5810999982059 ], [ 362222.999799996614456, 257677.676100000739098 ], [ 362222.364799998700619, 257676.247400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89124166000001, "LATITUDE": 18.35048408, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.453716926, "SHAPE_Area": 404.99607397 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363027.673699997365475, 257929.712099999189377 ], [ 363027.840300001204014, 257925.164799999445677 ], [ 363025.872599996626377, 257924.694499999284744 ], [ 363023.660899996757507, 257924.165899999439716 ], [ 363019.762599997222424, 257923.234099999070168 ], [ 363016.013800002634525, 257922.338100001215935 ], [ 363011.424500003457069, 257921.241099998354912 ], [ 363007.722099997103214, 257920.356100000441074 ], [ 363005.354400001466274, 257919.478100001811981 ], [ 363002.756599999964237, 257918.514800000935793 ], [ 363000.262000001966953, 257917.589699998497963 ], [ 362997.272200003266335, 257916.480900000780821 ], [ 362992.507799997925758, 257914.714099999517202 ], [ 362990.841700002551079, 257914.096200000494719 ], [ 362987.587499998509884, 257914.069600000977516 ], [ 362986.132399998605251, 257914.057700000703335 ], [ 362984.391199998557568, 257914.043400000780821 ], [ 362981.572899997234344, 257915.156800001859665 ], [ 362979.425499998033047, 257916.005100000649691 ], [ 362975.491200000047684, 257917.559200000017881 ], [ 362974.217500001192093, 257919.034400001168251 ], [ 362972.233499996364117, 257921.33219999819994 ], [ 362970.877099998295307, 257922.482400000095367 ], [ 362968.512900002300739, 257924.486999999731779 ], [ 362966.610600002110004, 257926.100000001490116 ], [ 362963.896799996495247, 257928.401200000196695 ], [ 362961.443999998271465, 257930.480900000780821 ], [ 362958.425499998033047, 257933.040399998426437 ], [ 362956.612099997699261, 257934.752199999988079 ], [ 362955.726199999451637, 257935.588500000536442 ], [ 362953.270499996840954, 257937.906599998474121 ], [ 362951.109399996697903, 257939.946600001305342 ], [ 362948.935500003397465, 257941.062100000679493 ], [ 362951.568199999630451, 257944.588799998164177 ], [ 362953.758599996566772, 257942.968600001186132 ], [ 362959.181500002741814, 257938.95719999819994 ], [ 362963.864000000059605, 257934.798599999397993 ], [ 362966.755500003695488, 257932.230500001460314 ], [ 362969.844200000166893, 257929.487399999052286 ], [ 362972.177199997007847, 257927.415300000458956 ], [ 362975.431800000369549, 257924.52479999884963 ], [ 362977.0641999989748, 257922.216099999845028 ], [ 362980.309199996292591, 257919.920699998736382 ], [ 362981.680299997329712, 257919.573800001293421 ], [ 362984.349799998104572, 257918.898299999535084 ], [ 362988.387999996542931, 257918.799300000071526 ], [ 362990.802100002765656, 257918.739999998360872 ], [ 362993.070799998939037, 257919.619300000369549 ], [ 362995.683100000023842, 257920.631700001657009 ], [ 362997.790799997746944, 257921.448600001633167 ], [ 363000.978299997746944, 257922.683899998664856 ], [ 363003.245600000023842, 257923.562600001692772 ], [ 363005.269000001251698, 257924.346799999475479 ], [ 363007.523000001907349, 257924.930900000035763 ], [ 363010.415399998426437, 257925.680500000715256 ], [ 363013.298799999058247, 257926.427700001746416 ], [ 363016.250900000333786, 257927.192699998617172 ], [ 363018.79450000077486, 257927.851799998432398 ], [ 363021.218699999153614, 257928.480000000447035 ], [ 363023.774599999189377, 257929.142299998551607 ], [ 363027.673699997365475, 257929.712099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97901082, "LATITUDE": 18.34558508, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 367.53501138799999, "SHAPE_Area": 1835.1519291699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353793.380999997258186, 257276.000999998301268 ], [ 353786.781800001859665, 257265.3412000015378 ], [ 353778.760499998927116, 257266.214000001549721 ], [ 353769.063199996948242, 257268.66780000180006 ], [ 353759.3496999964118, 257273.021200001239777 ], [ 353752.053300000727177, 257277.605599999427795 ], [ 353734.976899996399879, 257294.353300001472235 ], [ 353725.238200001418591, 257301.661800000816584 ], [ 353713.086000002920628, 257308.317400000989437 ], [ 353702.566200003027916, 257312.664200000464916 ], [ 353633.018299996852875, 257336.159699998795986 ], [ 353639.391500003635883, 257345.288899999111891 ], [ 353708.13120000064373, 257321.997900001704693 ], [ 353717.032999999821186, 257318.271099999547005 ], [ 353737.296899996697903, 257305.982400000095367 ], [ 353760.05349999666214, 257285.059300001710653 ], [ 353772.198499999940395, 257279.248100001364946 ], [ 353776.240900002419949, 257278.014600001275539 ], [ 353793.380999997258186, 257276.000999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96995938000001, "LATITUDE": 18.33480969, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4.5980403718999998, "SHAPE_Area": 0.03537268708 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354681.169799998402596, 256120.649399999529123 ], [ 354681.119300000369549, 256122.935699999332428 ], [ 354681.150399997830391, 256122.928599998354912 ], [ 354681.169799998402596, 256120.649399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97000142, "LATITUDE": 18.33481058, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.936988898799999, "SHAPE_Area": 26.620810853599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354681.119300000369549, 256122.935699999332428 ], [ 354681.169799998402596, 256120.649399999529123 ], [ 354673.107900001108646, 256120.430300001055002 ], [ 354673.071000002324581, 256124.76240000128746 ], [ 354681.119300000369549, 256122.935699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97025586, "LATITUDE": 18.33525653, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.69196349399999, "SHAPE_Area": 2951.3246055099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354640.436499997973442, 256119.541999999433756 ], [ 354638.487400002777576, 256128.479699999094009 ], [ 354637.69370000064373, 256140.650499999523163 ], [ 354637.958200000226498, 256144.09010000154376 ], [ 354638.222800001502037, 256149.117199998348951 ], [ 354637.164499998092651, 256155.202599998563528 ], [ 354636.370700001716614, 256161.023499999195337 ], [ 354635.576999999582767, 256168.431800000369549 ], [ 354634.51860000193119, 256176.104800000786781 ], [ 354633.989500001072884, 256181.925599999725819 ], [ 354633.195699997246265, 256186.423500001430511 ], [ 354632.402000002563, 256191.715199999511242 ], [ 354629.491599999368191, 256197.535999998450279 ], [ 354628.962399996817112, 256202.563099998980761 ], [ 354628.168600000441074, 256208.648600000888109 ], [ 354630.549900002777576, 256214.204799998551607 ], [ 354637.58500000089407, 256220.097300000488758 ], [ 354643.266999997198582, 256215.710900001227856 ], [ 354651.236599996685982, 256226.752900000661612 ], [ 354653.650100000202656, 256227.405999999493361 ], [ 354656.079899996519089, 256226.159299999475479 ], [ 354665.355700001120567, 256178.528099998831749 ], [ 354666.401199996471405, 256150.461199998855591 ], [ 354665.666799999773502, 256142.011399999260902 ], [ 354665.690200001001358, 256139.267400000244379 ], [ 354665.724299997091293, 256135.256900001317263 ], [ 354665.821400001645088, 256123.85869999974966 ], [ 354665.425200000405312, 256120.221400000154972 ], [ 354640.436499997973442, 256119.541999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201049100", "MAP": "D9-6869-T000", "PARCEL_NAM": "18A-3", "ACRE": ".28", "LONGITUDE": -64.96198058, "LATITUDE": 18.34179168, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.28086718399999, "SHAPE_Area": 1171.53373928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355538.723700001835823, 256921.802999999374151 ], [ 355529.191899999976158, 256888.453200001269579 ], [ 355525.355400003492832, 256886.336599998176098 ], [ 355522.048100002110004, 256885.013599999248981 ], [ 355519.402300000190735, 256883.161499999463558 ], [ 355517.285599999129772, 256881.177200000733137 ], [ 355514.375200003385544, 256878.663600001484156 ], [ 355511.729299999773502, 256876.414700001478195 ], [ 355508.421999998390675, 256873.768800001591444 ], [ 355506.702200002968311, 256873.107400000095367 ], [ 355505.247000001370907, 256872.710499998182058 ], [ 355502.997299998998642, 256872.16270000115037 ], [ 355506.514399997889996, 256922.129099998623133 ], [ 355538.723700001835823, 256921.802999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95287862000001, "LATITUDE": 18.34310773, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.13349412100001, "SHAPE_Area": 548.42770122100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356460.575900003314018, 257022.865499999374151 ], [ 356454.72240000218153, 257026.359499998390675 ], [ 356487.347900003194809, 257077.5 ], [ 356493.006399996578693, 257075.857599999755621 ], [ 356497.057800002396107, 257073.56870000064373 ], [ 356498.726199999451637, 257067.038499999791384 ], [ 356497.9324000030756, 257065.554299999028444 ], [ 356474.714800000190735, 257045.94370000064373 ], [ 356463.554099999368191, 257030.864700000733137 ], [ 356460.575900003314018, 257022.865499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-5946-T95", "PARCEL_NAM": "REM 200-7", "ACRE": "0.69", "LONGITUDE": -64.94474085, "LATITUDE": 18.34315591, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.88512032800003, "SHAPE_Area": 3590.8025296000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357338.483900003135204, 257118.898800000548363 ], [ 357343.509199999272823, 257101.75899999961257 ], [ 357348.278800003230572, 257085.491200000047684 ], [ 357351.316100001335144, 257086.677799999713898 ], [ 357353.332900002598763, 257083.9543999992311 ], [ 357355.827299997210503, 257075.108899999409914 ], [ 357359.986599996685982, 257060.155299998819828 ], [ 357360.008100003004074, 257057.622400000691414 ], [ 357364.988099999725819, 257040.986699998378754 ], [ 357371.115900002419949, 257020.579700000584126 ], [ 357365.1537000015378, 257019.41499999910593 ], [ 357327.771899998188019, 257015.512299999594688 ], [ 357341.655299998819828, 257034.885200001299381 ], [ 357337.594999998807907, 257038.229400001466274 ], [ 357328.027199998497963, 257025.485500000417233 ], [ 357329.521099999547005, 257039.429900001734495 ], [ 357322.204899996519089, 257046.336100000888109 ], [ 357320.505999997258186, 257056.454700000584126 ], [ 357317.907300002872944, 257077.54280000180006 ], [ 357316.244300000369549, 257083.439800001680851 ], [ 357316.926500000059605, 257098.010800000280142 ], [ 357316.888800002634525, 257102.443500000983477 ], [ 357324.703699998557568, 257131.638399999588728 ], [ 357333.922600001096725, 257134.4560999982059 ], [ 357338.483900003135204, 257118.898800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94208379, "LATITUDE": 18.34158388, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.515804507, "SHAPE_Area": 234.192871266 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357626.952299997210503, 256873.268500000238419 ], [ 357625.64919999986887, 256872.552799999713898 ], [ 357618.674400001764297, 256896.060499999672174 ], [ 357612.567900002002716, 256916.641699999570847 ], [ 357616.212700001895428, 256917.136599998921156 ], [ 357617.935599997639656, 256917.37049999833107 ], [ 357624.263199999928474, 256895.765500001609325 ], [ 357630.039800003170967, 256874.964200001209974 ], [ 357626.952299997210503, 256873.268500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94481628, "LATITUDE": 18.3427799, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.921378673000007, "SHAPE_Area": 146.19547303100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357327.771899998188019, 257015.512299999594688 ], [ 357320.218099996447563, 257014.723700001835823 ], [ 357328.027199998497963, 257025.485500000417233 ], [ 357337.594999998807907, 257038.229400001466274 ], [ 357341.655299998819828, 257034.885200001299381 ], [ 357327.771899998188019, 257015.512299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-8095-T008", "PARCEL_NAM": "178-242", "ACRE": null, "LONGITUDE": -64.94467065000001, "LATITUDE": 18.3426029, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.092970513, "SHAPE_Area": 877.59699460299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357370.961300000548363, 257002.405499998480082 ], [ 357329.107799999415874, 256989.741099998354912 ], [ 357328.308799996972084, 257005.155200000852346 ], [ 357327.771899998188019, 257015.512299999594688 ], [ 357365.1537000015378, 257019.41499999910593 ], [ 357365.997599996626377, 257017.141399998217821 ], [ 357370.961300000548363, 257002.405499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702073900", "MAP": "G9-1542-T70", "PARCEL_NAM": "7", "ACRE": ".136", "LONGITUDE": -64.8681913, "LATITUDE": 18.34806052, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.203828935, "SHAPE_Area": 682.19151275000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365453.161300003528595, 257668.904599998146296 ], [ 365438.712399996817112, 257661.186900001019239 ], [ 365401.42790000140667, 257683.679900001734495 ], [ 365407.770499996840954, 257696.397399999201298 ], [ 365453.161300003528595, 257668.904599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601077030", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89831391, "LATITUDE": 18.34797846, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.95444109500001, "SHAPE_Area": 879.80193123200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362236.156199999153614, 257621.254399999976158 ], [ 362220.577299997210503, 257651.524399999529123 ], [ 362253.58219999819994, 257658.127300001680851 ], [ 362254.411899998784065, 257655.389899998903275 ], [ 362261.027800001204014, 257636.023499999195337 ], [ 362236.156199999153614, 257621.254399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601083000", "MAP": "C9-261-T80", "PARCEL_NAM": "215-174", "ACRE": "0.09", "LONGITUDE": -64.89158534000001, "LATITUDE": 18.34796167, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.929773229000006, "SHAPE_Area": 474.58227203400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362937.038199998438358, 257647.824400000274181 ], [ 362944.565700002014637, 257655.338899999856949 ], [ 362950.867799997329712, 257660.953600000590086 ], [ 362968.957599997520447, 257643.295200001448393 ], [ 362958.556400001049042, 257633.710799999535084 ], [ 362955.356299996376038, 257630.729299999773502 ], [ 362937.038199998438358, 257647.824400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602030900", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-348", "ACRE": ".170", "LONGITUDE": -64.88961772, "LATITUDE": 18.34767436, "OBJECTID_1": 21108, "PARCEL_NO_": "105602030900", "Tax_Legal_": "394-348 ANNAS RETREAT NEW QTR", "Name": "HURLSTON, CHARLES & VERA A", "Address": "PO Box 502445", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23300, "Improved_V": 276900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.80743154, "SHAPE_Area": 770.95550387599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363181.233499996364117, 257619.701299998909235 ], [ 363157.24379999935627, 257596.073600001633167 ], [ 363143.433899998664856, 257607.992899999022484 ], [ 363140.997000001370907, 257610.08390000090003 ], [ 363164.965199999511242, 257636.244600001722574 ], [ 363181.233499996364117, 257619.701299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90964597, "LATITUDE": 18.347408, "OBJECTID_1": 19670, "PARCEL_NO_": "105501011300", "Tax_Legal_": "ESTATE WINTBERG 1-30 & 1-9-A GREAT NORTHSIDE QTR", "Name": "BAIRD, GORDON J. & GERMAINE J.", "Address": "PO Box 10185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85600, "Improved_V": 370100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.08023471199999, "SHAPE_Area": 4427.5190056000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361012.223899997770786, 257536.959199998527765 ], [ 361019.886900000274181, 257616.846000000834465 ], [ 361080.080300003290176, 257591.10530000180006 ], [ 361070.148500002920628, 257526.429400000721216 ], [ 361048.338500000536442, 257530.894999999552965 ], [ 361020.081600002944469, 257534.885600000619888 ], [ 361012.223899997770786, 257536.959199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601083300", "MAP": null, "PARCEL_NAM": "215-161", "ACRE": null, "LONGITUDE": -64.89185472, "LATITUDE": 18.34767876, "OBJECTID_1": 20908, "PARCEL_NO_": "105601083300", "Tax_Legal_": "ANNAS RETREAT 215-161 NEW QTR.", "Name": "LIBURD, STANLEY & JESSICA H", "Address": "PO Box 502442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 94800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.6388288582, "SHAPE_Area": 503.145105333 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362926.509199999272823, 257603.092700000852346 ], [ 362918.288400001823902, 257599.210799999535084 ], [ 362915.274499997496605, 257602.959100000560284 ], [ 362913.62049999833107, 257607.800700001418591 ], [ 362914.439099997282028, 257617.478799998760223 ], [ 362916.39919999986887, 257622.132100000977516 ], [ 362922.625900000333786, 257632.945000000298023 ], [ 362937.838299997150898, 257614.190499998629093 ], [ 362941.651100002229214, 257610.24269999936223 ], [ 362926.509199999272823, 257603.092700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602020900", "MAP": null, "PARCEL_NAM": "394-325", "ACRE": null, "LONGITUDE": -64.88840104000001, "LATITUDE": 18.34767185, "OBJECTID_1": 21044, "PARCEL_NO_": "105602020900", "Tax_Legal_": "394-325 ANNAS RETREAT NEW QTR", "Name": "WILKINS, MARTHA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42500, "Improved_V": 449500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.918523871199994, "SHAPE_Area": 461.86689906300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363305.087300002574921, 257616.14809999987483 ], [ 363287.826800003647804, 257601.786400001496077 ], [ 363281.318800002336502, 257608.488200001418591 ], [ 363277.233300000429153, 257614.787500001490116 ], [ 363273.97919999808073, 257618.138399999588728 ], [ 363294.02759999781847, 257631.350299999117851 ], [ 363295.011699996888638, 257628.633099999278784 ], [ 363305.087300002574921, 257616.14809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602021700", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-169", "ACRE": ".147", "LONGITUDE": -64.8875679, "LATITUDE": 18.34771204, "OBJECTID_1": 21052, "PARCEL_NO_": "105602021700", "Tax_Legal_": "ANNAS RETREAT 394-169 NEW QTR", "Name": "Brathwaite, Liston A, Cheryl, Nia & Neikia", "Address": "394-169 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49000, "Improved_V": 190700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.411150607699994, "SHAPE_Area": 579.30023312100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363391.585799999535084, 257632.61089999973774 ], [ 363384.557300001382828, 257605.744500000029802 ], [ 363367.576200000941753, 257611.305100001394749 ], [ 363361.915899999439716, 257613.158599998801947 ], [ 363373.801899999380112, 257637.74269999936223 ], [ 363391.585799999535084, 257632.61089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601050600", "MAP": "C9-312C-T88", "PARCEL_NAM": "215-129", "ACRE": null, "LONGITUDE": -64.89285953, "LATITUDE": 18.3476889, "OBJECTID_1": 20751, "PARCEL_NO_": "105601050600", "Tax_Legal_": "ANNAS RETREAT 215-129 NEW QTR.", "Name": "CHASE, RASHAAN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 98700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.128435899, "SHAPE_Area": 700.82689201799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362808.054700002074242, 257599.75959999859333 ], [ 362803.917099997401237, 257612.18019999936223 ], [ 362802.236100003123283, 257620.188000001013279 ], [ 362823.094099998474121, 257632.813200000673532 ], [ 362837.02080000191927, 257607.173799999058247 ], [ 362834.6199000030756, 257605.043200001120567 ], [ 362808.054700002074242, 257599.75959999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601083500", "MAP": "C9-261-T80", "PARCEL_NAM": "215-163", "ACRE": "0.11", "LONGITUDE": -64.89156858, "LATITUDE": 18.34767276, "OBJECTID_1": 20910, "PARCEL_NO_": "105601083500", "Tax_Legal_": "215-163 ANNAS RETREAT NEW QTR.", "Name": "KISHMA WILKINS LIVING TRUST", "Address": "PO Box 502093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 105800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.677770939699997, "SHAPE_Area": 541.93127249500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362958.817199997603893, 257603.104400001466274 ], [ 362953.019000001251698, 257598.47239999845624 ], [ 362941.651100002229214, 257610.24269999936223 ], [ 362937.838299997150898, 257614.190499998629093 ], [ 362940.156900003552437, 257616.46169999986887 ], [ 362952.465700000524521, 257628.015999998897314 ], [ 362957.094099998474121, 257625.403200000524521 ], [ 362974.459299996495247, 257615.600600000470877 ], [ 362958.817199997603893, 257603.104400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602012800", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-207", "ACRE": ".162", "LONGITUDE": -64.88508507, "LATITUDE": 18.34768761, "OBJECTID_1": 20943, "PARCEL_NO_": "105602012800", "Tax_Legal_": "394-207 ANNAS RETREAT NEW QTR", "Name": "BUTE, JOSEPH K. & MONIQUE A.", "Address": "394 207 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 97200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.637689303, "SHAPE_Area": 666.18254333300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363657.464800000190735, 257625.461300000548363 ], [ 363652.263899996876717, 257606.668999999761581 ], [ 363622.362000003457069, 257614.445799998939037 ], [ 363631.553099997341633, 257638.125900000333786 ], [ 363657.464800000190735, 257625.461300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87441892, "LATITUDE": 18.34764246, "OBJECTID_1": 22304, "PARCEL_NO_": "105702015400", "Tax_Legal_": "FRYDENDAHL 52-7B EAST END QTR", "Name": "PHILLIP, LERONE", "Address": "PO Box 305436", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35200, "Improved_V": 141800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.84528270199999, "SHAPE_Area": 1151.11201082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364789.952799998223782, 257618.091400001198053 ], [ 364754.584700003266335, 257604.925200000405312 ], [ 364744.664399996399879, 257633.552700001746416 ], [ 364781.646899998188019, 257646.521000001579523 ], [ 364789.952799998223782, 257618.091400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602036400", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-328", "ACRE": ".138", "LONGITUDE": -64.88879794, "LATITUDE": 18.34767573, "OBJECTID_1": 21160, "PARCEL_NO_": "105602036400", "Tax_Legal_": "ANNAS RETREAT 394-328 NEW QTR", "Name": "DONOVAN, RACHAEL & MAURICE", "Address": "16 B PALM STRADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 105800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.592165456, "SHAPE_Area": 702.86996895000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363241.863399997353554, 257601.832400001585484 ], [ 363228.813199996948242, 257619.246399998664856 ], [ 363232.8158999979496, 257622.656599998474121 ], [ 363252.882100000977516, 257633.586599998176098 ], [ 363258.578400000929832, 257627.511500000953674 ], [ 363261.035099998116493, 257623.098700001835823 ], [ 363265.948499999940395, 257614.272999998182058 ], [ 363244.312899999320507, 257598.263900000602007 ], [ 363241.863399997353554, 257601.832400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701010900", "MAP": "C9-133-T72", "PARCEL_NAM": "5-5", "ACRE": ".40", "LONGITUDE": -64.87949344, "LATITUDE": 18.34757957, "OBJECTID_1": 21845, "PARCEL_NO_": "105701010900", "Tax_Legal_": "TABOR&HARMONY ESTATE 5-5 EAST END QTR", "Name": "VELGER, EARL ROBERTS", "Address": "29360 S Seaway Ct", "City": "Harrison Township", "State": "Michigan", "Zip": 48045, "Country": "United States", "Land_Value": 52100, "Improved_V": 971900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.493595989, "SHAPE_Area": 1634.15867714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364240.315600000321865, 257582.139899998903275 ], [ 364235.3429000005126, 257597.931200001388788 ], [ 364202.163599997758865, 257611.802999999374151 ], [ 364214.816399998962879, 257641.037399999797344 ], [ 364252.860600002110004, 257624.039099998772144 ], [ 364253.717200003564358, 257618.135499998927116 ], [ 364251.548199996352196, 257588.775800000876188 ], [ 364240.315600000321865, 257582.139899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702071000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87051838, "LATITUDE": 18.34759817, "OBJECTID_1": 22742, "PARCEL_NO_": "105702071000", "Tax_Legal_": "FRYDENDAHL 56-30 EAST END QTR.", "Name": "ASFOUR, SAMI I.", "Address": "5521 Curacac Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65300, "Improved_V": 228700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.88200042599999, "SHAPE_Area": 1152.4757111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365184.007600001990795, 257648.547600001096725 ], [ 365194.512999996542931, 257645.889400001615286 ], [ 365200.171599999070168, 257644.246899999678135 ], [ 365193.202500000596046, 257610.414900001138449 ], [ 365159.378799997270107, 257605.282900001853704 ], [ 365156.153499998152256, 257605.256599999964237 ], [ 365151.303000003099442, 257606.694499999284744 ], [ 365184.007600001990795, 257648.547600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702070500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86901785000001, "LATITUDE": 18.34768148, "OBJECTID_1": 22738, "PARCEL_NO_": "105702070500", "Tax_Legal_": "56-56 FRYDENDAHL EASTEND QUARTER", "Name": "CHESTERFIELD, ALETA C", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35100, "Improved_V": 141900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.312641439, "SHAPE_Area": 1204.8125992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365310.864799998700619, 257618.344000000506639 ], [ 365313.076899997889996, 257642.637899998575449 ], [ 365353.340400002896786, 257649.089099999517202 ], [ 365359.807099997997284, 257647.242199998348951 ], [ 365373.597099997103214, 257637.644799999892712 ], [ 365373.618699997663498, 257635.111800000071526 ], [ 365359.149999998509884, 257629.716099999845028 ], [ 365332.601099997758865, 257622.532699998468161 ], [ 365310.864799998700619, 257618.344000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602080800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8904301, "LATITUDE": 18.34765627, "OBJECTID_1": 21377, "PARCEL_NO_": "105602080800", "Tax_Legal_": "ANNAS RETREAT 215-211 NEW QTR.", "Name": "Jasmine L Eddy (Life Estate) & Valentine R Eddy", "Address": "PO Box 307692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.273132728999997, "SHAPE_Area": 564.91831553300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363091.745399996638298, 257617.491300001740456 ], [ 363073.387299999594688, 257595.387299999594688 ], [ 363058.758500002324581, 257608.777499999850988 ], [ 363077.122100003063679, 257630.2483000010252 ], [ 363087.676100000739098, 257621.890900000929832 ], [ 363091.745399996638298, 257617.491300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87300368, "LATITUDE": 18.3476855, "OBJECTID_1": 22296, "PARCEL_NO_": "105702014300", "Tax_Legal_": "FRYDENDAHL 11-5-7 EAST END QTR", "Name": "ELLIOTT, BERNICE", "Address": "1418 Perth Rd", "City": "Jacksonville", "State": "Florida", "Zip": 322212815, "Country": "United States", "Land_Value": 31200, "Improved_V": 147800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.18791688100001, "SHAPE_Area": 1048.23931627 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364935.085400000214577, 257619.701400000602007 ], [ 364934.313299998641014, 257615.684300001710653 ], [ 364894.748199999332428, 257621.904399998486042 ], [ 364899.388300001621246, 257645.16270000115037 ], [ 364899.829999998211861, 257647.764800000935793 ], [ 364941.589100003242493, 257640.876600001007318 ], [ 364941.365099996328354, 257639.806699998676777 ], [ 364939.820799998939037, 257631.77250000089407 ], [ 364935.8108000010252, 257629.206599999219179 ], [ 364933.39190000295639, 257629.186799999326468 ], [ 364932.634099997580051, 257623.480999998748302 ], [ 364935.065600000321865, 257622.023299999535084 ], [ 364935.085400000214577, 257619.701400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602022200", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-168", "ACRE": ".147", "LONGITUDE": -64.88736119, "LATITUDE": 18.34766556, "OBJECTID_1": 21057, "PARCEL_NO_": "105602022200", "Tax_Legal_": "394-168 ANNAS RETREAT NEW QTR", "Name": "TAYLOR, CECIL & EUNICE", "Address": "ANNAS REYTREAT 394-168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 175500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.98102232399999, "SHAPE_Area": 656.15089047200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363412.58049999922514, 257629.194200001657009 ], [ 363410.397100001573563, 257601.522999998182058 ], [ 363384.557300001382828, 257605.744500000029802 ], [ 363391.585799999535084, 257632.61089999973774 ], [ 363412.58049999922514, 257629.194200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602011700", "MAP": "C9-217-T77", "PARCEL_NAM": "394-404", "ACRE": "0.15", "LONGITUDE": -64.88453315, "LATITUDE": 18.34754718, "OBJECTID_1": 20932, "PARCEL_NO_": "105602011700", "Tax_Legal_": "394-404 ANNAS RETREAT NEW QTR", "Name": "FARRINGTON, THELMA G", "Address": "P.O. BOX 2175", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45700, "Improved_V": 63300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.931679809, "SHAPE_Area": 1044.0530673000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363717.364799998700619, 257631.89979999884963 ], [ 363713.385399997234344, 257625.74549999833107 ], [ 363707.107500001788139, 257605.429099999368191 ], [ 363704.814400002360344, 257590.633799999952316 ], [ 363707.308899998664856, 257581.78830000013113 ], [ 363682.32039999961853, 257580.739399999380112 ], [ 363686.182899996638298, 257600.613800000399351 ], [ 363691.65990000218153, 257620.290300000458956 ], [ 363702.822400003671646, 257635.158300001174212 ], [ 363717.364799998700619, 257631.89979999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87869916, "LATITUDE": 18.34755473, "OBJECTID_1": 21936, "PARCEL_NO_": "105701022500", "Tax_Legal_": "53-39EST.FRYDENDAHL EASTEND QTR.", "Name": "PHILIP, GEORGE & JOSEPHINE", "Address": "P. O. Box 308512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8038512, "Country": "United States", "Land_Value": 89400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.452728283, "SHAPE_Area": 1488.2943858399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364325.743400000035763, 257587.694299999624491 ], [ 364297.543999999761581, 257584.930300001055002 ], [ 364298.260399997234344, 257595.490899998694658 ], [ 364303.728399999439716, 257616.222800001502037 ], [ 364302.074400000274181, 257621.064399998635054 ], [ 364297.93129999935627, 257634.118299998342991 ], [ 364309.223300002515316, 257633.788499999791384 ], [ 364314.019799999892712, 257638.68299999833107 ], [ 364321.271200001239777, 257639.375599998980761 ], [ 364334.222599998116493, 257633.570999998599291 ], [ 364325.743400000035763, 257587.694299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702070600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86945622, "LATITUDE": 18.34763322, "OBJECTID_1": 22739, "PARCEL_NO_": "105702070600", "Tax_Legal_": "56-27 FRYDENDAHL \nNO.4 EAST END QTR.", "Name": "LUKE, FLORETTA and JACQUELINE", "Address": "PO Box 11364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36600, "Improved_V": 284100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.62455397900001, "SHAPE_Area": 1039.20264812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365310.864799998700619, 257618.344000000506639 ], [ 365287.506899997591972, 257615.197500001639128 ], [ 365268.968900002539158, 257614.201400000602007 ], [ 365272.12219999730587, 257622.671000000089407 ], [ 365279.980400003492832, 257646.800000000745058 ], [ 365284.026299998164177, 257645.144299998879433 ], [ 365295.336300000548363, 257642.70380000025034 ], [ 365313.076899997889996, 257642.637899998575449 ], [ 365310.864799998700619, 257618.344000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601057000", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-66", "ACRE": "0.148", "LONGITUDE": -64.89335046, "LATITUDE": 18.34759161, "OBJECTID_1": 20814, "PARCEL_NO_": "105601057000", "Tax_Legal_": "215-66&POR 404 ANNAS RET NEW QTR.", "Name": "JACKSON, MILTON & ALBERTHA", "Address": "PO Box 10327", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 159900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.95329644500001, "SHAPE_Area": 691.93138521000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362753.414399996399879, 257613.482599999755621 ], [ 362753.465000003576279, 257613.518199998885393 ], [ 362764.04839999973774, 257621.323499999940395 ], [ 362767.699600003659725, 257623.779800001531839 ], [ 362774.875399999320507, 257613.631299998611212 ], [ 362778.165399998426437, 257606.058800000697374 ], [ 362779.07599999755621, 257593.822900000959635 ], [ 362779.101199999451637, 257590.867800001055002 ], [ 362780.028800003230572, 257587.697299998253584 ], [ 362761.396499998867512, 257586.712099999189377 ], [ 362761.3496999964118, 257592.200100000947714 ], [ 362754.098300002515316, 257591.507500000298023 ], [ 362756.463299997150898, 257597.859700001776218 ], [ 362753.414399996399879, 257613.482599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87592501, "LATITUDE": 18.34759537, "OBJECTID_1": 21845, "PARCEL_NO_": "105701010900", "Tax_Legal_": "TABOR&HARMONY ESTATE 5-5 EAST END QTR", "Name": "VELGER, EARL ROBERTS", "Address": "29360 S Seaway Ct", "City": "Harrison Township", "State": "Michigan", "Zip": 48045, "Country": "United States", "Land_Value": 52100, "Improved_V": 971900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.219014351, "SHAPE_Area": 1218.3441141400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364630.414399996399879, 257603.697799999266863 ], [ 364599.013199999928474, 257598.163499999791384 ], [ 364586.601999998092651, 257635.214400000870228 ], [ 364618.008599996566772, 257640.115499999374151 ], [ 364630.414399996399879, 257603.697799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602081100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88996901, "LATITUDE": 18.34761241, "OBJECTID_1": 21380, "PARCEL_NO_": "105602081100", "Tax_Legal_": "215-214 ANNAS RETREAT NEW QTR.", "Name": "LETANG, CATHERIN & EMANUEL", "Address": "PO Box 502082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 45700, "Improved_V": 332100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.232411384, "SHAPE_Area": 707.29561938699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363143.433899998664856, 257607.992899999022484 ], [ 363125.847900003194809, 257589.905999999493361 ], [ 363117.721900001168251, 257597.227800000458956 ], [ 363105.512100003659725, 257610.637800000607967 ], [ 363121.499899998307228, 257627.022900000214577 ], [ 363125.561999998986721, 257623.467599999159575 ], [ 363140.997000001370907, 257610.08390000090003 ], [ 363143.433899998664856, 257607.992899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702070900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87008027, "LATITUDE": 18.34759023, "OBJECTID_1": 22741, "PARCEL_NO_": "105702070900", "Tax_Legal_": "FRYDENDAHL 56-29 EAST END QTR.", "Name": "VANTERPOOL, MARIANA P. & GILROY & GIBSON ELIZEE", "Address": "6899 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53200, "Improved_V": 60600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.56616410800001, "SHAPE_Area": 1584.7168623699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365268.968900002539158, 257614.201400000602007 ], [ 365239.94709999859333, 257613.330600000917912 ], [ 365193.202500000596046, 257610.414900001138449 ], [ 365200.171599999070168, 257644.246899999678135 ], [ 365226.850100003182888, 257636.232599999755621 ], [ 365272.12219999730587, 257622.671000000089407 ], [ 365268.968900002539158, 257614.201400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602022300", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-167", "ACRE": ".138", "LONGITUDE": -64.88716656, "LATITUDE": 18.34764654, "OBJECTID_1": 21058, "PARCEL_NO_": "105602022300", "Tax_Legal_": "ANNAS RETREAT 394-167 NEW QTR", "Name": "SAMUEL, CATHERINE", "Address": "PO Box 8774", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 137500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.868910427299994, "SHAPE_Area": 481.43131351699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363429.746799997985363, 257601.892499998211861 ], [ 363410.397100001573563, 257601.522999998182058 ], [ 363412.58049999922514, 257629.194200001657009 ], [ 363428.713899999856949, 257628.481800001114607 ], [ 363429.746799997985363, 257601.892499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87201253000001, "LATITUDE": 18.34750029, "OBJECTID_1": 22284, "PARCEL_NO_": "105702012900", "Tax_Legal_": "FRYDENDAHL 11-5-14 EAST END QTR", "Name": "SIMMONDS, RHETT V", "Address": "PO Box 7755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.89733158000001, "SHAPE_Area": 891.03688379000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365036.761699996888638, 257611.034400001168251 ], [ 365009.589800000190735, 257582.314399998635054 ], [ 365006.21169999986887, 257600.229699999094009 ], [ 365011.760600000619888, 257611.462999999523163 ], [ 365026.819799996912479, 257642.194899998605251 ], [ 365030.055900000035763, 257640.954799998551607 ], [ 365033.340499997138977, 257634.015599999576807 ], [ 365036.761699996888638, 257611.034400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601010600", "MAP": "A9-85-T68", "PARCEL_NAM": "234", "ACRE": "0.75", "LONGITUDE": -64.89746867, "LATITUDE": 18.34743749, "OBJECTID_1": 20443, "PARCEL_NO_": "105601010600", "Tax_Legal_": "ANNAS RETREAT 234 NEW QTR", "Name": "BLYDEN, LOUIE", "Address": "PO Box 1645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 111200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.53145206799999, "SHAPE_Area": 2115.8687490100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362345.96169999986887, 257556.146499998867512 ], [ 362327.15089999884367, 257549.249499998986721 ], [ 362323.234300002455711, 257558.913199998438358 ], [ 362303.324000000953674, 257603.374699998646975 ], [ 362316.421400003135204, 257613.045699998736382 ], [ 362316.861199997365475, 257613.260099999606609 ], [ 362318.128700003027916, 257614.306400001049042 ], [ 362323.524999998509884, 257615.095800001174212 ], [ 362326.895900003612041, 257617.185699999332428 ], [ 362358.306800000369549, 257575.60249999910593 ], [ 362364.391000002622604, 257569.272399999201298 ], [ 362345.96169999986887, 257556.146499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601080400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89243753, "LATITUDE": 18.34760162, "OBJECTID_1": 20881, "PARCEL_NO_": "105601080400", "Tax_Legal_": "215-74&POR 404 ANNAS RET NEW QTR.", "Name": "THOMAS, GEORGE A", "Address": "PO Box 10059", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 131000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.520981417, "SHAPE_Area": 791.33151922900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362874.998400002717972, 257597.985399998724461 ], [ 362873.014200001955032, 257596.558100000023842 ], [ 362872.073024681070819, 257596.558249559428077 ], [ 362871.139885527838487, 257596.435520884260768 ], [ 362870.230756363482215, 257596.192014889413258 ], [ 362869.361199997365475, 257595.831900000572205 ], [ 362863.58308130374644, 257591.541698116256157 ], [ 362857.504240988986567, 257587.689401622919831 ], [ 362851.157799996435642, 257584.296000000089407 ], [ 362851.578182206954807, 257587.513014579191804 ], [ 362851.485319827392232, 257590.756050284107914 ], [ 362850.881542794173583, 257593.943738678382942 ], [ 362849.781999997794628, 257596.996100001037121 ], [ 362848.949812584614847, 257600.44322768697748 ], [ 362847.645290368585847, 257603.74071869708132 ], [ 362845.893899999558926, 257606.824200000613928 ], [ 362844.265000000596046, 257608.710799999535084 ], [ 362866.73030000180006, 257621.982400000095367 ], [ 362870.74210000038147, 257624.33729999884963 ], [ 362883.012999996542931, 257603.750599998980761 ], [ 362874.998400002717972, 257597.985399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601082000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89218929, "LATITUDE": 18.34762596, "OBJECTID_1": 20897, "PARCEL_NO_": "105601082000", "Tax_Legal_": "215-145 ANNAS RETREAT NEW QTR.", "Name": "MONSANTO, RUBY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23100, "Improved_V": 60000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.669035433, "SHAPE_Area": 674.32352177200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362907.191600002348423, 257605.214999999850988 ], [ 362883.936200000345707, 257590.037000000476837 ], [ 362879.919109110254794, 257593.27510615423671 ], [ 362875.499499998986721, 257595.937699999660254 ], [ 362874.697777094726916, 257596.243103555083508 ], [ 362873.865397211280651, 257596.450888724124525 ], [ 362873.014200001955032, 257596.558100000023842 ], [ 362874.998400002717972, 257597.985399998724461 ], [ 362883.012999996542931, 257603.750599998980761 ], [ 362870.74210000038147, 257624.33729999884963 ], [ 362906.291799999773502, 257616.184500001370907 ], [ 362905.516000002622604, 257612.589600000530481 ], [ 362907.191600002348423, 257605.214999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602094100", "MAP": "C9-261-T80", "PARCEL_NAM": "215-172", "ACRE": "0.11", "LONGITUDE": -64.89119718000001, "LATITUDE": 18.34766326, "OBJECTID_1": 21497, "PARCEL_NO_": "105602094100", "Tax_Legal_": "215-172 ANNAS RETREAT NEW QTR.", "Name": "WHEATLEY, J.", "Address": "PO Box 8855", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 96000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.483736132, "SHAPE_Area": 403.81758590099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363011.148400001227856, 257612.820799998939037 ], [ 362999.874399997293949, 257611.039799999445677 ], [ 362992.691299997270107, 257602.326200000941753 ], [ 362989.514600001275539, 257596.600699998438358 ], [ 362979.687799997627735, 257614.252099998295307 ], [ 362991.699699997901917, 257624.060699999332428 ], [ 363005.464599996805191, 257617.418400000780821 ], [ 363011.850400000810623, 257625.070000000298023 ], [ 363011.148400001227856, 257612.820799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602028500", "MAP": "D9-4090-T87", "PARCEL_NAM": "394B-B", "ACRE": ".127", "LONGITUDE": -64.88797296, "LATITUDE": 18.34763084, "OBJECTID_1": 21096, "PARCEL_NO_": "105602028500", "Tax_Legal_": "394B-B EST. ANNAS RETRET NEW QTR.", "Name": "PEGGY A WILKINS and LEANDRA WILLIAMS", "Address": "Po Box 502354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.343742470199999, "SHAPE_Area": 521.93309007400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363339.439800001680851, 257601.153400000184774 ], [ 363337.035499997437, 257595.699400000274181 ], [ 363319.626500003039837, 257606.110199999064207 ], [ 363324.060900002717972, 257613.222600001841784 ], [ 363327.755900003015995, 257619.149000000208616 ], [ 363333.623800002038479, 257628.560499999672174 ], [ 363335.181699998676777, 257627.716299999505281 ], [ 363339.233000002801418, 257625.427499998360872 ], [ 363350.573499999940395, 257619.398600000888109 ], [ 363339.439800001680851, 257601.153400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602022800", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-166", "ACRE": ".137", "LONGITUDE": -64.88697122000001, "LATITUDE": 18.34764337, "OBJECTID_1": 21063, "PARCEL_NO_": "105602022800", "Tax_Legal_": "394-166 ANNAS RETREAT NO. 1 NEW QTR", "Name": "TAYLOR, SYLANIE (aka PERFESENEY S.)", "Address": "394-166B Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 152000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.011337377, "SHAPE_Area": 620.91554684499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363453.72580000013113, 257626.786699999123812 ], [ 363451.531599998474121, 257600.382100000977516 ], [ 363429.746799997985363, 257601.892499998211861 ], [ 363428.713899999856949, 257628.481800001114607 ], [ 363453.72580000013113, 257626.786699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87142542, "LATITUDE": 18.34746936, "OBJECTID_1": 22316, "PARCEL_NO_": "105702016600", "Tax_Legal_": "FRYDENDAHL 11B-7 EAST END QTR.", "Name": "O'NEAL, EUGENIE, PATRECIA, DWYNE &", "Address": "6218 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42900, "Improved_V": 220900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.210614064, "SHAPE_Area": 1557.0579340700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365099.720600001513958, 257603.739199999719858 ], [ 365087.875900000333786, 257574.300299998372793 ], [ 365082.211900003254414, 257576.575899999588728 ], [ 365075.718299999833107, 257581.589000001549721 ], [ 365072.455200001597404, 257585.995299998670816 ], [ 365069.154500000178814, 257594.834199998527765 ], [ 365068.274400003254414, 257603.481800001114607 ], [ 365069.04839999973774, 257607.287900000810623 ], [ 365068.978200003504753, 257615.519900001585484 ], [ 365072.11540000140667, 257625.889199998229742 ], [ 365078.459799997508526, 257638.395599998533726 ], [ 365080.059799998998642, 257639.886399999260902 ], [ 365084.881499998271465, 257641.825699999928474 ], [ 365088.91669999808073, 257641.436500001698732 ], [ 365090.540100000798702, 257640.183299999684095 ], [ 365097.026600003242493, 257636.014499999582767 ], [ 365099.720600001513958, 257603.739199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011100", "MAP": "D9-2202-T82", "PARCEL_NAM": "230 REM", "ACRE": "0.50", "LONGITUDE": -64.89954544, "LATITUDE": 18.34747773, "OBJECTID_1": 19795, "PARCEL_NO_": "105502011100", "Tax_Legal_": "WINTBERG ESTATE 230 No.3 GREAT NORTHSIDE QTR.", "Name": "BARBIER, FADETTE & VIOLET", "Address": "6817 WINTBERG 230", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163400, "Improved_V": 149200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.23982206900001, "SHAPE_Area": 1894.3759045300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362130.497900001704693, 257554.902899999171495 ], [ 362107.2162000015378, 257550.444600000977516 ], [ 362099.737999998033047, 257573.383200000971556 ], [ 362092.921599999070168, 257594.291499998420477 ], [ 362087.881499998271465, 257609.751400001347065 ], [ 362099.04839999973774, 257612.074700001627207 ], [ 362105.309500001370907, 257613.217199999839067 ], [ 362118.856200002133846, 257615.228100001811981 ], [ 362125.11089999973774, 257615.096799999475479 ], [ 362128.156900003552437, 257581.060499999672174 ], [ 362128.514899998903275, 257577.060600001364946 ], [ 362130.497900001704693, 257554.902899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87175232, "LATITUDE": 18.34746086, "OBJECTID_1": 22312, "PARCEL_NO_": "105702016200", "Tax_Legal_": "FRYDENDAHL 11B-2 EAST END QTR.", "Name": "SIMMONDS, RHETT V", "Address": "PO Box 7755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.08820156600001, "SHAPE_Area": 1454.3355881800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365066.010099999606609, 257585.309300001710653 ], [ 365042.724200002849102, 257573.7195999994874 ], [ 365036.761699996888638, 257611.034400001168251 ], [ 365033.340499997138977, 257634.015599999576807 ], [ 365030.055900000035763, 257640.954799998551607 ], [ 365066.464000001549721, 257626.687300000339746 ], [ 365063.348399996757507, 257613.785100001841784 ], [ 365062.684199996292591, 257597.103300001472235 ], [ 365063.533699996769428, 257592.043999999761581 ], [ 365066.010099999606609, 257585.309300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602024600", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-161", "ACRE": ".139", "LONGITUDE": -64.88590659, "LATITUDE": 18.34762311, "OBJECTID_1": 21081, "PARCEL_NO_": "105602024600", "Tax_Legal_": "ANNAS RETREAT 394-161 NEW QTR", "Name": "CALLWOOD, LEMUEL", "Address": "PO Box 7397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.965401859099998, "SHAPE_Area": 609.17186195600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363545.907899998128414, 257596.721500001847744 ], [ 363540.017399996519089, 257625.593100000172853 ], [ 363555.3175999969244, 257628.040399998426437 ], [ 363557.740099996328354, 257627.638000000268221 ], [ 363561.793200001120567, 257625.138099998235703 ], [ 363564.240900002419949, 257621.780600000172853 ], [ 363566.818099997937679, 257603.225499998778105 ], [ 363545.907899998128414, 257596.721500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601010300", "MAP": "A9-85-T68", "PARCEL_NAM": "231", "ACRE": "1.0", "LONGITUDE": -64.89908867, "LATITUDE": 18.34745668, "OBJECTID_1": 20440, "PARCEL_NO_": "105601010300", "Tax_Legal_": "ANNAS RETREAT 231 NEW QTR", "Name": "BIANCA BRADSHAW", "Address": "PO Box 12254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8015254, "Country": "United States", "Land_Value": 140100, "Improved_V": 149600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.04215006699999, "SHAPE_Area": 3712.1530688900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362189.352600000798702, 257561.905499998480082 ], [ 362185.848800003528595, 257552.257100000977516 ], [ 362152.299599997699261, 257554.902899999171495 ], [ 362135.472000002861023, 257555.537900000810623 ], [ 362130.497900001704693, 257554.902899999171495 ], [ 362128.514899998903275, 257577.060600001364946 ], [ 362128.156900003552437, 257581.060499999672174 ], [ 362125.11089999973774, 257615.096799999475479 ], [ 362133.99040000140667, 257614.910599999129772 ], [ 362139.498099997639656, 257614.084399998188019 ], [ 362146.690399996936321, 257613.00560000166297 ], [ 362168.691899999976158, 257608.175200000405312 ], [ 362170.150100000202656, 257607.626400001347065 ], [ 362177.423100002110004, 257605.786100000143051 ], [ 362178.192500002682209, 257605.714999999850988 ], [ 362194.315499998629093, 257601.89299999922514 ], [ 362198.342399999499321, 257601.6081000007689 ], [ 362203.63459999859333, 257601.23369999974966 ], [ 362197.88849999755621, 257585.410599999129772 ], [ 362189.352600000798702, 257561.905499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701021800", "MAP": "A9-318-T85", "PARCEL_NAM": "53-38", "ACRE": ".50", "LONGITUDE": -64.87792194, "LATITUDE": 18.34740665, "OBJECTID_1": 21929, "PARCEL_NO_": "105701021800", "Tax_Legal_": "ESTATE FRYDENHAL 53-38 EAST END QTR.", "Name": "CHINNERY, PATRICE & GLENN", "Address": "5219 E 20th Ave", "City": "TAMPA", "State": "Florida", "Zip": 33619, "Country": "United States", "Land_Value": 89400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.043460732, "SHAPE_Area": 2675.7447182300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364384.065800003707409, 257556.718699999153614 ], [ 364360.382399998605251, 257591.777499999850988 ], [ 364369.975500002503395, 257601.566300000995398 ], [ 364379.586499996483326, 257609.244300000369549 ], [ 364425.359300002455711, 257631.572700001299381 ], [ 364435.006300002336502, 257635.029100000858307 ], [ 364436.624300003051758, 257634.409099999815226 ], [ 364424.795699998736382, 257603.07039999961853 ], [ 364417.643200002610683, 257590.768500000238419 ], [ 364410.467299997806549, 257581.210499998182058 ], [ 364403.277000002563, 257573.3412000015378 ], [ 364396.876900002360344, 257567.378199998289347 ], [ 364388.06139999628067, 257560.973200000822544 ], [ 364384.065800003707409, 257556.718699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90165958, "LATITUDE": 18.34746869, "OBJECTID_1": 19792, "PARCEL_NO_": "105502010800", "Tax_Legal_": "227 WINTBERG GT. NORTHSIDE", "Name": "TAFEL, ELEANOR", "Address": "P.O. BOX 3616", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.658592981, "SHAPE_Area": 2819.4931280300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361864.247900001704693, 257546.860399998724461 ], [ 361864.326800003647804, 257607.817699998617172 ], [ 361910.44370000064373, 257614.155699998140335 ], [ 361918.1266999989748, 257564.189399998635054 ], [ 361914.910400003194809, 257563.107599999755621 ], [ 361910.889700002968311, 257561.808100000023842 ], [ 361864.247900001704693, 257546.860399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90105927, "LATITUDE": 18.34744576, "OBJECTID_1": 19793, "PARCEL_NO_": "105502010900", "Tax_Legal_": "228 WINTBERG GT. NORTHSIDE", "Name": "QUETEL, ERNEST & LORRAINE", "Address": "PO Box 308177", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106600, "Improved_V": 281500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.56566642799999, "SHAPE_Area": 4669.52149723 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361987.84179999679327, 257561.940600000321865 ], [ 361984.705200001597404, 257542.308200001716614 ], [ 361969.353100001811981, 257546.304000001400709 ], [ 361922.618299998342991, 257550.984200000762939 ], [ 361914.910400003194809, 257563.107599999755621 ], [ 361918.1266999989748, 257564.189399998635054 ], [ 361910.44370000064373, 257614.155699998140335 ], [ 361928.182599999010563, 257614.300900001078844 ], [ 361936.346000000834465, 257613.757500000298023 ], [ 361978.546499997377396, 257605.888799998909235 ], [ 361985.852300003170967, 257604.554699998348951 ], [ 361994.400799997150898, 257602.993700001388788 ], [ 361987.84179999679327, 257561.940600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602023300", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-165", "ACRE": ".137", "LONGITUDE": -64.88675972, "LATITUDE": 18.34762306, "OBJECTID_1": 21068, "PARCEL_NO_": "105602023300", "Tax_Legal_": "ANNAS RETREAT 394-165 NEW QTR C", "Name": "DICKENSON, CLIFTON & IVAN & PA", "Address": "394-165 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.946742620600006, "SHAPE_Area": 567.98198159799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363473.896200001239777, 257625.47410000115633 ], [ 363474.122800000011921, 257598.878199998289347 ], [ 363451.531599998474121, 257600.382100000977516 ], [ 363453.72580000013113, 257626.786699999123812 ], [ 363473.896200001239777, 257625.47410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602017600", "MAP": "C9-217-T77", "PARCEL_NAM": "394-400", "ACRE": "0.15", "LONGITUDE": -64.88474155, "LATITUDE": 18.3476209, "OBJECTID_1": 20991, "PARCEL_NO_": "105602017600", "Tax_Legal_": "394-400 ANNAS RETREAT NEW QTR", "Name": "SMITH, EDWARD & MAVIS", "Address": "PO Box 303453", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 113100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.708653290900003, "SHAPE_Area": 541.428537334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363686.182899996638298, 257600.613800000399351 ], [ 363661.937799997627735, 257606.959300000220537 ], [ 363666.613899998366833, 257625.995999999344349 ], [ 363668.206699997186661, 257628.331000000238419 ], [ 363691.65990000218153, 257620.290300000458956 ], [ 363686.182899996638298, 257600.613800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90737814000001, "LATITUDE": 18.34746424, "OBJECTID_1": 19889, "PARCEL_NO_": "105502030900", "Tax_Legal_": "WINTBERG ESTATE 1-196 GR NORTHSIDE QTR", "Name": "LEONARD FLAHARTY and AVERNE FLAHARTY-ESCOBAR", "Address": "PO BOX 302384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54800, "Improved_V": 319800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.16064121799999, "SHAPE_Area": 2380.5212307299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361261.045000001788139, 257551.423200000077486 ], [ 361268.726899996399879, 257596.237900000065565 ], [ 361239.661899998784065, 257600.43299999833107 ], [ 361242.052000001072884, 257603.830099999904633 ], [ 361242.82599999755621, 257607.636100001633167 ], [ 361310.664099998772144, 257595.525699999183416 ], [ 361310.213899999856949, 257553.725499998778105 ], [ 361281.218999996781349, 257549.688499998301268 ], [ 361269.120700001716614, 257550.011599998921156 ], [ 361261.045000001788139, 257551.423200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601050700", "MAP": "C9-312C-T88", "PARCEL_NAM": "215-1283", "ACRE": null, "LONGITUDE": -64.89310055, "LATITUDE": 18.34760364, "OBJECTID_1": 20752, "PARCEL_NO_": "105601050700", "Tax_Legal_": "215-128 ANNAS RETREAT NEW QTR.", "Name": "HODGE, GUITER & DENNIS", "Address": "215-128 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 91900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.629132239100002, "SHAPE_Area": 482.28186704699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362804.849200002849102, 257597.411299999803305 ], [ 362779.07599999755621, 257593.822900000959635 ], [ 362778.165399998426437, 257606.058800000697374 ], [ 362802.236100003123283, 257620.188000001013279 ], [ 362803.917099997401237, 257612.18019999936223 ], [ 362808.054700002074242, 257599.75959999859333 ], [ 362804.833099998533726, 257599.311000000685453 ], [ 362804.849200002849102, 257597.411299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602023800", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-164", "ACRE": ".137", "LONGITUDE": -64.88655357, "LATITUDE": 18.34761314, "OBJECTID_1": 21073, "PARCEL_NO_": "105602023800", "Tax_Legal_": "394-164 ANNAS RETREAT NEW QTR C", "Name": "THOMAS, MARGARITA", "Address": "PO Box 503362", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20800, "Improved_V": 169400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.555138081600006, "SHAPE_Area": 589.342305141 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363497.293600000441074, 257623.97690000012517 ], [ 363495.099500000476837, 257597.572200000286102 ], [ 363474.122800000011921, 257598.878199998289347 ], [ 363473.896200001239777, 257625.47410000115633 ], [ 363497.293600000441074, 257623.97690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602024500", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-162", "ACRE": ".156", "LONGITUDE": -64.88611889000001, "LATITUDE": 18.34759307, "OBJECTID_1": 21080, "PARCEL_NO_": "105602024500", "Tax_Legal_": "394-162 ANNAS RETREAT NEW QTR", "Name": "WESSELHOFT, ECEDRO & YVONNE", "Address": "P.O. BOX 4493", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 229000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.21917908, "SHAPE_Area": 683.89372942499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363545.907899998128414, 257596.721500001847744 ], [ 363519.304999999701977, 257595.87049999833107 ], [ 363518.266699999570847, 257623.093100000172853 ], [ 363540.017399996519089, 257625.593100000172853 ], [ 363545.907899998128414, 257596.721500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502032700", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-G", "ACRE": ".2353", "LONGITUDE": -64.90420659, "LATITUDE": 18.34751115, "OBJECTID_1": 19903, "PARCEL_NO_": "105502032700", "Tax_Legal_": "WINTBERG ESTATE 1X1-G GREAT NORTHSIDE QTR.", "Name": "WEBSTER, MUDIE, MARVA, & CLARE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 219500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.76288239300001, "SHAPE_Area": 934.33129458899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361640.780799999833107, 257584.170800000429153 ], [ 361637.364500001072884, 257581.312100000679493 ], [ 361626.086900003254414, 257579.953200001269579 ], [ 361624.540899999439716, 257572.130100000649691 ], [ 361633.431900002062321, 257569.669799998402596 ], [ 361622.545299999415874, 257559.054999999701977 ], [ 361618.313799999654293, 257564.42790000140667 ], [ 361598.086800001561642, 257590.110500000417233 ], [ 361600.184199996292591, 257591.5625 ], [ 361619.420699998736382, 257605.229899998754263 ], [ 361621.213799998164177, 257606.484099999070168 ], [ 361640.780799999833107, 257584.170800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602021000", "MAP": "D9-8934-T014", "PARCEL_NAM": "394-324", "ACRE": ".126", "LONGITUDE": -64.88826568, "LATITUDE": 18.347534, "OBJECTID_1": 21045, "PARCEL_NO_": "105602021000", "Tax_Legal_": "394-324 ANNAS RETREAT NEW QTR", "Name": "WILKINS, PEPSY AND JESSICA A.", "Address": "394-324 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14800, "Improved_V": 246200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.672618063900003, "SHAPE_Area": 493.92325365699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363319.626500003039837, 257606.110199999064207 ], [ 363306.759199999272823, 257585.472100000828505 ], [ 363304.887000001966953, 257586.938400000333786 ], [ 363293.523100003600121, 257595.711300000548363 ], [ 363287.826800003647804, 257601.786400001496077 ], [ 363305.087300002574921, 257616.14809999987483 ], [ 363307.182499997317791, 257613.55180000141263 ], [ 363318.408100001513958, 257606.838799998164177 ], [ 363319.626500003039837, 257606.110199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602024100", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-163", "ACRE": ".144", "LONGITUDE": -64.88634162, "LATITUDE": 18.34759416, "OBJECTID_1": 21076, "PARCEL_NO_": "105602024100", "Tax_Legal_": "ANNAS RETREAT 394-163 NEW QTR", "Name": "Vivian Sprauve, Daphne Davis & Daphne O'Neal", "Address": "394-163 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 190600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.995052543699998, "SHAPE_Area": 606.44866416699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363519.304999999701977, 257595.87049999833107 ], [ 363495.099500000476837, 257597.572200000286102 ], [ 363497.293600000441074, 257623.97690000012517 ], [ 363518.266699999570847, 257623.093100000172853 ], [ 363519.304999999701977, 257595.87049999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87112039, "LATITUDE": 18.34746527, "OBJECTID_1": 22317, "PARCEL_NO_": "105702016700", "Tax_Legal_": "FRYDENDAHL 11B-6 EAST END QTR.", "Name": "TRIUMPHANT CHURCH OF JESUS CHRIST INC", "Address": "169 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.84581485000001, "SHAPE_Area": 1092.0528971599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365129.708800002932549, 257585.830600000917912 ], [ 365099.720600001513958, 257603.739199999719858 ], [ 365097.026600003242493, 257636.014499999582767 ], [ 365117.286899998784065, 257624.147999998182058 ], [ 365135.162399999797344, 257608.251200001686811 ], [ 365137.619099996984005, 257603.838300000876188 ], [ 365138.483000002801418, 257597.090399999171495 ], [ 365129.708800002932549, 257585.830600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602031100", "MAP": "A9-167J-T71", "PARCEL_NAM": "349-349", "ACRE": ".160", "LONGITUDE": -64.88946897, "LATITUDE": 18.34753608, "OBJECTID_1": 21110, "PARCEL_NO_": "105602031100", "Tax_Legal_": "394-349 ANNAS RETREAT NEW QTR", "Name": "LEWIS, STEVEN", "Address": "394-349 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 105500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.89692963900001, "SHAPE_Area": 715.80531810100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363197.482100002467632, 257605.480000000447035 ], [ 363172.687799997627735, 257581.63459999859333 ], [ 363157.24379999935627, 257596.073600001633167 ], [ 363181.233499996364117, 257619.701299998909235 ], [ 363191.805500000715256, 257609.233199998736382 ], [ 363197.482100002467632, 257605.480000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701021400", "MAP": "A9-318-T85", "PARCEL_NAM": "53-31", "ACRE": ".72", "LONGITUDE": -64.87730149, "LATITUDE": 18.34741273, "OBJECTID_1": 21925, "PARCEL_NO_": "105701021400", "Tax_Legal_": "53-31EST.FRYDENDAHL EASTEND QTR.", "Name": "GALLAWAY, ECKFORD & ROBERTA", "Address": "PO BOX 2171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118300, "Improved_V": 232700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.567210754, "SHAPE_Area": 3120.9618321399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364507.884900003671646, 257606.260000001639128 ], [ 364500.308300003409386, 257579.282499998807907 ], [ 364499.183300003409386, 257579.403499998152256 ], [ 364415.355499997735023, 257575.339899998158216 ], [ 364430.475900001823902, 257598.894999999552965 ], [ 364432.074100002646446, 257600.596900001168251 ], [ 364443.11429999768734, 257629.81810000166297 ], [ 364505.39639999717474, 257607.31870000064373 ], [ 364507.884900003671646, 257606.260000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602031200", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-343", "ACRE": ".142", "LONGITUDE": -64.88899959, "LATITUDE": 18.34756444, "OBJECTID_1": 21111, "PARCEL_NO_": "105602031200", "Tax_Legal_": "ANNAS RETREAT 394-343 NEW QTR", "Name": "BRADSHAW, JEROME L & ELITA", "Address": "PO Box 308263", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15900, "Improved_V": 411200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.427165440899998, "SHAPE_Area": 444.155931979 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363241.863399997353554, 257601.832400001585484 ], [ 363221.003600001335144, 257589.418299999088049 ], [ 363216.887500002980232, 257599.306000001728535 ], [ 363213.620899997651577, 257604.134399998933077 ], [ 363211.999300003051758, 257605.176600001752377 ], [ 363228.813199996948242, 257619.246399998664856 ], [ 363241.863399997353554, 257601.832400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601083400", "MAP": null, "PARCEL_NAM": "215-160", "ACRE": null, "LONGITUDE": -64.89175159, "LATITUDE": 18.34752238, "OBJECTID_1": 20909, "PARCEL_NO_": "105601083400", "Tax_Legal_": "215-160 ANNAS RETREAT NEW QTR.", "Name": "GEORGE, MARILYN & GIBBON", "Address": "PO Box 10664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 109000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.863758831799998, "SHAPE_Area": 494.33529878399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362953.019000001251698, 257598.47239999845624 ], [ 362932.386900000274181, 257581.989799998700619 ], [ 362920.164499998092651, 257596.877399999648333 ], [ 362918.288400001823902, 257599.210799999535084 ], [ 362926.509199999272823, 257603.092700000852346 ], [ 362941.651100002229214, 257610.24269999936223 ], [ 362953.019000001251698, 257598.47239999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602081000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89029251, "LATITUDE": 18.3475237, "OBJECTID_1": 21379, "PARCEL_NO_": "105602081000", "Tax_Legal_": "215-212 ANNAS RETREAT NEW QTR.", "Name": "MOORE, EURMA T", "Address": "PO Box 23", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20200, "Improved_V": 85300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.256145684, "SHAPE_Area": 612.74786565399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363106.402900002896786, 257600.723700001835823 ], [ 363088.840300001204014, 257579.892799999564886 ], [ 363073.387299999594688, 257595.387299999594688 ], [ 363091.745399996638298, 257617.491300001740456 ], [ 363100.699400000274181, 257607.643199998885393 ], [ 363103.967799998819828, 257602.603700000792742 ], [ 363106.402900002896786, 257600.723700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602028800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88781618, "LATITUDE": 18.34754651, "OBJECTID_1": 21099, "PARCEL_NO_": "105602028800", "Tax_Legal_": "394B-A-1 ESTATE ANNAS RETREAT NEW QUARTER", "Name": "BENJAMIN, SR., KENNETH M. & GAYLE V.", "Address": "PO Box 10280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.020144086399995, "SHAPE_Area": 513.9621827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363354.052299998700619, 257589.662799999117851 ], [ 363352.23589999973774, 257586.609400000423193 ], [ 363337.035499997437, 257595.699400000274181 ], [ 363339.439800001680851, 257601.153400000184774 ], [ 363350.573499999940395, 257619.398600000888109 ], [ 363361.915899999439716, 257613.158599998801947 ], [ 363367.576200000941753, 257611.305100001394749 ], [ 363354.052299998700619, 257589.662799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014600", "MAP": "D9-3366-T86", "PARCEL_NAM": "226-C", "ACRE": "0.32", "LONGITUDE": -64.90232347, "LATITUDE": 18.34718098, "OBJECTID_1": 19843, "PARCEL_NO_": "105502014600", "Tax_Legal_": "WINTBERG ESTATE 226-C GT. NORTHSIDE", "Name": "JOHN ( LIFE ESTATE ), EUGENE", "Address": "6837 Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52600, "Improved_V": 210500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.65306560400001, "SHAPE_Area": 1257.5961886499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361864.247599996626377, 257546.86089999973774 ], [ 361793.399999998509884, 257533.615499999374151 ], [ 361793.297499999403954, 257545.646999999880791 ], [ 361801.509099997580051, 257569.2043999992311 ], [ 361864.247599996626377, 257546.86089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602011000", "MAP": "C9-217-T77", "PARCEL_NAM": "394-18", "ACRE": "0.17", "LONGITUDE": -64.88417767, "LATITUDE": 18.34760421, "OBJECTID_1": 20925, "PARCEL_NO_": "105602011000", "Tax_Legal_": "ANNAS RETREAT 394-18 NEW QTR", "Name": "BASS, LOCHTON R. & DARETH L", "Address": "PO Box 10013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 163800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.69382832300001, "SHAPE_Area": 719.48901414399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363732.927500002086163, 257603.529500000178814 ], [ 363713.58500000089407, 257602.315699998289347 ], [ 363719.875399999320507, 257621.154599998146296 ], [ 363720.658399999141693, 257623.905200000852346 ], [ 363736.420999996364117, 257621.116799999028444 ], [ 363758.771200001239777, 257621.065699998289347 ], [ 363759.869999997317791, 257612.940499998629093 ], [ 363761.210199996829033, 257610.649300001561642 ], [ 363742.597800001502037, 257604.241900000721216 ], [ 363732.927500002086163, 257603.529500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90767432, "LATITUDE": 18.34747758, "OBJECTID_1": 19673, "PARCEL_NO_": "105501011800", "Tax_Legal_": "EST WINTBERG 1-95 GR NORTHSIDE QTR", "Name": "HUGHES, HERBERT F.", "Address": "PO BOX 8918", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30400, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.85894091899999, "SHAPE_Area": 1078.34953954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361261.045000001788139, 257551.423200000077486 ], [ 361240.032300002872944, 257556.950800001621246 ], [ 361244.65259999781847, 257582.530900001525879 ], [ 361234.059000000357628, 257595.532000001519918 ], [ 361238.067199997603893, 257598.309000000357628 ], [ 361239.661899998784065, 257600.43299999833107 ], [ 361268.726899996399879, 257596.237900000065565 ], [ 361261.045000001788139, 257551.423200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011000", "MAP": null, "PARCEL_NAM": "229 REM", "ACRE": "0.49", "LONGITUDE": -64.90053219000001, "LATITUDE": 18.34734764, "OBJECTID_1": 19794, "PARCEL_NO_": "105502011000", "Tax_Legal_": "229 WINTBERG GT. NORTHSIDE", "Name": "MARTIN, CLIFFORD & OTHERS", "Address": "PO Box 9714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.721589454, "SHAPE_Area": 2240.0121396700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362019.553199999034405, 257600.367499999701977 ], [ 362021.567800000309944, 257600.173799999058247 ], [ 362025.504000000655651, 257600.279199998825788 ], [ 362027.46339999884367, 257562.745799999684095 ], [ 362028.529700003564358, 257542.32039999961853 ], [ 362012.640600003302097, 257541.904399998486042 ], [ 361988.667700000107288, 257541.276900000870228 ], [ 361984.705200001597404, 257542.308200001716614 ], [ 361987.84179999679327, 257561.940600000321865 ], [ 361994.400799997150898, 257602.993700001388788 ], [ 361996.802699998021126, 257602.554999999701977 ], [ 362019.553199999034405, 257600.367499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601083600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89139862, "LATITUDE": 18.34751337, "OBJECTID_1": 20911, "PARCEL_NO_": "105601083600", "Tax_Legal_": "215-164 ANNAS RETREAT NEW QTR.", "Name": "GRANT, VIOLA", "Address": "PO Box 10431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 144200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.120045343900003, "SHAPE_Area": 589.08787257799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362989.514600001275539, 257596.600699998438358 ], [ 362969.500600002706051, 257579.549400001764297 ], [ 362954.861100003123283, 257594.2060999982059 ], [ 362979.687799997627735, 257614.252099998295307 ], [ 362989.514600001275539, 257596.600699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602017300", "MAP": "D9-5703-T94", "PARCEL_NAM": "394C-2", "ACRE": "0.15", "LONGITUDE": -64.88553626, "LATITUDE": 18.34752726, "OBJECTID_1": 20988, "PARCEL_NO_": "105602017300", "Tax_Legal_": "394C-2 ANNAS RETREAT NO.1 NEW QTR", "Name": "MALENTINE BROWN and CORAL GILKES", "Address": "PO Box 12331", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23800, "Improved_V": 121700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.333729409, "SHAPE_Area": 790.25202274000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363607.296599999070168, 257589.666799999773502 ], [ 363575.868000000715256, 257592.101799998432398 ], [ 363575.772100001573563, 257593.377300001680851 ], [ 363574.270199999213219, 257610.572999998927116 ], [ 363607.806999996304512, 257619.18189999833703 ], [ 363608.028200000524521, 257593.219200000166893 ], [ 363607.241599999368191, 257590.890700001269579 ], [ 363607.296599999070168, 257589.666799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87906417000001, "LATITUDE": 18.3474895, "OBJECTID_1": 21849, "PARCEL_NO_": "105701011300", "Tax_Legal_": "TABOR&HARMONY ESTATE 5-4 EAST END QTR", "Name": "VELGER, EARL ROBERTS", "Address": "29360 S Seaway Ct", "City": "Harrison Township", "State": "Michigan", "Zip": 48045, "Country": "United States", "Land_Value": 27200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.169074459, "SHAPE_Area": 1687.9463366800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364297.543999999761581, 257584.930300001055002 ], [ 364251.548199996352196, 257588.775800000876188 ], [ 364253.717200003564358, 257618.135499998927116 ], [ 364252.860600002110004, 257624.039099998772144 ], [ 364255.288500003516674, 257623.003499999642372 ], [ 364302.074400000274181, 257621.064399998635054 ], [ 364303.728399999439716, 257616.222800001502037 ], [ 364298.260399997234344, 257595.490899998694658 ], [ 364297.543999999761581, 257584.930300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602090300", "MAP": "C9-261-T80", "PARCEL_NAM": "215-171", "ACRE": "0.11", "LONGITUDE": -64.89110797, "LATITUDE": 18.34752118, "OBJECTID_1": 21459, "PARCEL_NO_": "105602090300", "Tax_Legal_": "215-171 ANNAS RETREAT NEW QTR.", "Name": "BENJAMIN-LEWIS, CURLYN", "Address": "PO Box 9122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 105800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.288281722099995, "SHAPE_Area": 529.59965006000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363017.7516999989748, 257594.93189999833703 ], [ 363003.363899998366833, 257580.037599999457598 ], [ 362989.514600001275539, 257596.600699998438358 ], [ 362992.691299997270107, 257602.326200000941753 ], [ 362999.874399997293949, 257611.039799999445677 ], [ 363011.148400001227856, 257612.820799998939037 ], [ 363010.369000002741814, 257609.64809999987483 ], [ 363016.113899998366833, 257597.873799998313189 ], [ 363017.7516999989748, 257594.93189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701010800", "MAP": "C9-133-T72", "PARCEL_NAM": "5-7", "ACRE": ".31", "LONGITUDE": -64.87997672, "LATITUDE": 18.34751279, "OBJECTID_1": 21844, "PARCEL_NO_": "105701010800", "Tax_Legal_": "5-7 TABOR & HARMONY EAST END QTR", "Name": "ROSADO-FAHIE, ANGEL & L", "Address": "PO Box 177", "City": "Temple Hills", "State": "Maryland", "Zip": 20757, "Country": "United States", "Land_Value": 21200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.66532903699999, "SHAPE_Area": 940.31193701200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364202.163599997758865, 257611.802999999374151 ], [ 364193.456000000238419, 257592.733300000429153 ], [ 364199.989200003445148, 257583.076400000602007 ], [ 364187.847800001502037, 257588.465500000864267 ], [ 364175.688299998641014, 257595.965300001204014 ], [ 364153.782999999821186, 257611.618099998682737 ], [ 364161.78320000320673, 257619.071800000965595 ], [ 364174.659000001847744, 257622.132500000298023 ], [ 364202.163599997758865, 257611.802999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9044075, "LATITUDE": 18.34737646, "OBJECTID_1": 19894, "PARCEL_NO_": "105502031400", "Tax_Legal_": "WINTBERG ESTATE 1-102 GREAT NORTHSIDE QTR", "Name": "PASCAL, UZALA", "Address": "PO Box 503075", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 62700, "Improved_V": 323600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.19004975300001, "SHAPE_Area": 1708.25377482 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361622.545299999415874, 257559.054999999701977 ], [ 361646.685300000011921, 257528.403900001198053 ], [ 361626.4087999984622, 257542.170099999755621 ], [ 361620.47240000218153, 257545.472699999809265 ], [ 361616.686300002038479, 257547.578999999910593 ], [ 361606.164700001478195, 257552.136900000274181 ], [ 361590.790799997746944, 257558.343899998813868 ], [ 361571.394400000572205, 257563.462499998509884 ], [ 361575.140000000596046, 257597.057000000029802 ], [ 361590.217200003564358, 257600.102699998766184 ], [ 361618.313799999654293, 257564.42790000140667 ], [ 361622.545299999415874, 257559.054999999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602090400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89077225, "LATITUDE": 18.34751926, "OBJECTID_1": 21460, "PARCEL_NO_": "105602090400", "Tax_Legal_": "215-179 ANNAS RETREAT NEW QTR.", "Name": "GOODING, JUDITH", "Address": "PO Box 502283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 181900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.262430173799999, "SHAPE_Area": 545.003551227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363038.028200000524521, 257581.165699999779463 ], [ 363020.958999998867512, 257597.069099999964237 ], [ 363044.210799999535084, 257612.669300001114607 ], [ 363056.402500003576279, 257601.370000001043081 ], [ 363038.028200000524521, 257581.165699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602036500", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-329", "ACRE": ".158", "LONGITUDE": -64.88866065000001, "LATITUDE": 18.34749106, "OBJECTID_1": 21161, "PARCEL_NO_": "105602036500", "Tax_Legal_": "394-329 ANNAS RETREAT NEW QTR", "Name": "BRADSHAW, ELITA and CATISH", "Address": "PO Box 308263", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21200, "Improved_V": 11800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.395718535, "SHAPE_Area": 663.55321902599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363279.804999999701977, 257596.865600001066923 ], [ 363261.427100002765656, 257577.083500001579523 ], [ 363258.167700000107288, 257581.067600000649691 ], [ 363244.312899999320507, 257598.263900000602007 ], [ 363265.948499999940395, 257614.272999998182058 ], [ 363279.804999999701977, 257596.865600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88809541000001, "LATITUDE": 18.34742045, "OBJECTID_1": 21050, "PARCEL_NO_": "105602021500", "Tax_Legal_": "394-323 ANNAS RETREAT NEW QTR", "Name": "SMITH (LIFE ESTATE), ANGELICA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 139300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.2738576247, "SHAPE_Area": 571.40338633900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363306.759199999272823, 257585.472100000828505 ], [ 363319.626500003039837, 257606.110199999064207 ], [ 363337.035499997437, 257595.699400000274181 ], [ 363325.991400003433228, 257570.645799998193979 ], [ 363323.558100000023842, 257572.314699999988079 ], [ 363306.759199999272823, 257585.472100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601010400", "MAP": "D9-2653-T84", "PARCEL_NAM": "232 REM", "ACRE": ".50", "LONGITUDE": -64.89859036, "LATITUDE": 18.34735249, "OBJECTID_1": 20441, "PARCEL_NO_": "105601010400", "Tax_Legal_": "232 ANNAS RETREAT NEW QTR", "Name": "HARRIGAN, JULIO", "Address": "PO Box 9001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77900, "Improved_V": 133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.621920453, "SHAPE_Area": 1979.00129842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362231.31360000371933, 257552.4679000005126 ], [ 362231.674699999392033, 257544.107900001108646 ], [ 362185.848800003528595, 257552.257100000977516 ], [ 362189.352600000798702, 257561.905499998480082 ], [ 362197.88849999755621, 257585.410599999129772 ], [ 362203.63459999859333, 257601.23369999974966 ], [ 362216.752199999988079, 257600.305500000715256 ], [ 362232.6554000005126, 257598.939599998295307 ], [ 362231.31360000371933, 257552.4679000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90792987, "LATITUDE": 18.34747287, "OBJECTID_1": 19705, "PARCEL_NO_": "105501015300", "Tax_Legal_": "1-95A WINTBERG GR NORTHSIDE QTR", "Name": "RANDOLPH E RAYMO AND IRALYN M MCKAY RAYMO JOINT RE", "Address": "PO Box 10586", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013586, "Country": "United States", "Land_Value": 35700, "Improved_V": 266300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.46535881699999, "SHAPE_Area": 1008.30781295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361240.032300002872944, 257556.950800001621246 ], [ 361225.470100000500679, 257562.531100001186132 ], [ 361211.703500002622604, 257569.384500000625849 ], [ 361207.646700002253056, 257572.306600000709295 ], [ 361201.945000000298023, 257579.014899998903275 ], [ 361202.704599998891354, 257584.50959999859333 ], [ 361217.171400003135204, 257590.116399999707937 ], [ 361229.242700003087521, 257592.959399998188019 ], [ 361234.059000000357628, 257595.532000001519918 ], [ 361244.65259999781847, 257582.530900001525879 ], [ 361240.032300002872944, 257556.950800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90697002, "LATITUDE": 18.34743247, "OBJECTID_1": 19888, "PARCEL_NO_": "105502030800", "Tax_Legal_": "WINTBERG ESTATE 1-97 3 GR NORTHSIDE QTR", "Name": "SWAN, ALPHONSO", "Address": "PO Box 832", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52100, "Improved_V": 171000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.14749636499999, "SHAPE_Area": 1344.12514788 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361347.811999998986721, 257589.074700001627207 ], [ 361342.473499998450279, 257553.145100001245737 ], [ 361328.755400002002716, 257554.299400001764297 ], [ 361310.213899999856949, 257553.725499998778105 ], [ 361310.664099998772144, 257595.525699999183416 ], [ 361337.313799999654293, 257590.888599999248981 ], [ 361347.811999998986721, 257589.074700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602012900", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-206", "ACRE": ".166", "LONGITUDE": -64.8851678, "LATITUDE": 18.34748264, "OBJECTID_1": 20944, "PARCEL_NO_": "105602012900", "Tax_Legal_": "394-206 ANNAS RETREAT NEW QTR", "Name": "GERARD, MARJORIE H & TRIKA L", "Address": "394-206 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 115700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.269018601, "SHAPE_Area": 899.80080035699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363649.178900003433228, 257590.17850000038743 ], [ 363647.620200000703335, 257583.832899998873472 ], [ 363607.241599999368191, 257590.890700001269579 ], [ 363608.028200000524521, 257593.219200000166893 ], [ 363622.362000003457069, 257614.445799998939037 ], [ 363652.263899996876717, 257606.668999999761581 ], [ 363649.178900003433228, 257590.17850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702017300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87382862, "LATITUDE": 18.34746029, "OBJECTID_1": 22323, "PARCEL_NO_": "105702017300", "Tax_Legal_": "FRYDENDAHL 52-5 EAST END QTR.", "Name": "INDUSTRIOUS, WILLIAM AND REHENIA (LIFE ESTATE)", "Address": "PO Box 307667", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104500, "Improved_V": 133600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.56396454599999, "SHAPE_Area": 1808.1967186899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364853.107699997723103, 257587.788600001484156 ], [ 364807.936200000345707, 257589.529899999499321 ], [ 364796.397900000214577, 257618.777399998158216 ], [ 364824.595399998128414, 257621.752399999648333 ], [ 364860.055200003087521, 257624.153599999845028 ], [ 364853.107699997723103, 257587.788600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602028700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88764914, "LATITUDE": 18.34745784, "OBJECTID_1": 21098, "PARCEL_NO_": "105602028700", "Tax_Legal_": "ANNAS RETREAT 394B-A NEW QTR.", "Name": "BENJAMIN, KENNETH JR. & G. V", "Address": "PO Box 10280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.80358439, "SHAPE_Area": 669.12416230899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363372.920800000429153, 257575.961899999529123 ], [ 363372.043300002813339, 257574.764400001615286 ], [ 363370.324500001966953, 257575.792199999094009 ], [ 363352.23589999973774, 257586.609400000423193 ], [ 363354.052299998700619, 257589.662799999117851 ], [ 363367.576200000941753, 257611.305100001394749 ], [ 363384.557300001382828, 257605.744500000029802 ], [ 363379.062399998307228, 257588.178800001740456 ], [ 363377.29730000346899, 257581.934000000357628 ], [ 363372.920800000429153, 257575.961899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90490408, "LATITUDE": 18.34745508, "OBJECTID_1": 19893, "PARCEL_NO_": "105502031300", "Tax_Legal_": "WINTBERG 1-101 GR NORTHSIDE QTR", "Name": "GONSALVES, FRANKY & TRICILA", "Address": "6200 ESTATE FRYDENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021817, "Country": "United States", "Land_Value": 41700, "Improved_V": 248900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.295265693, "SHAPE_Area": 1583.0722416000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361519.820900000631809, 257559.451799999922514 ], [ 361512.7550999969244, 257585.095800001174212 ], [ 361550.988399997353554, 257592.426399998366833 ], [ 361575.140000000596046, 257597.057000000029802 ], [ 361571.394400000572205, 257563.462499998509884 ], [ 361558.477200001478195, 257565.256599999964237 ], [ 361546.382500000298023, 257565.157600000500679 ], [ 361536.715700000524521, 257564.022999998182058 ], [ 361519.820900000631809, 257559.451799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501011400", "MAP": "A9-420-T93", "PARCEL_NAM": "1-30", "ACRE": null, "LONGITUDE": -64.90913022, "LATITUDE": 18.34722186, "OBJECTID_1": 19671, "PARCEL_NO_": "105501011400", "Tax_Legal_": "1-9 REMAINDER ESTATE WINTBERG GREAT NORTHSIDE QTR", "Name": "HARRIS, RASHA A", "Address": "PO BOX 9196", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 104100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.71311287399999, "SHAPE_Area": 3262.2817152900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361080.080300003290176, 257591.10530000180006 ], [ 361091.411899998784065, 257586.131799999624491 ], [ 361126.209200002253056, 257571.640099998563528 ], [ 361122.504900000989437, 257533.190699998289347 ], [ 361119.553000003099442, 257501.080400001257658 ], [ 361114.675499998033047, 257505.684500001370907 ], [ 361101.69539999961853, 257514.866399999707937 ], [ 361083.886399999260902, 257522.953299999237061 ], [ 361070.148500002920628, 257526.429400000721216 ], [ 361080.080300003290176, 257591.10530000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602081300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88980465, "LATITUDE": 18.34746157, "OBJECTID_1": 21382, "PARCEL_NO_": "105602081300", "Tax_Legal_": "215-217 ANNAS RETREAT NEW QTR.", "Name": "JOSEPH, LYDIA & HILROY", "Address": "PO Box 9554", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 155900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.9137172131, "SHAPE_Area": 504.92097886200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363157.24379999935627, 257596.073600001633167 ], [ 363140.487400002777576, 257575.249299999326468 ], [ 363125.847900003194809, 257589.905999999493361 ], [ 363143.433899998664856, 257607.992899999022484 ], [ 363157.24379999935627, 257596.073600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702017100", "MAP": "D9-4232-T88", "PARCEL_NAM": "52-4A", "ACRE": ".26", "LONGITUDE": -64.87339551, "LATITUDE": 18.34745938, "OBJECTID_1": 22321, "PARCEL_NO_": "105702017100", "Tax_Legal_": "FRYDENDAHL 52-4A EAST END QTR.", "Name": "CHARLES, CLEMENT & FRANCISCA", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33800, "Improved_V": 108000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.382923291, "SHAPE_Area": 1000.3942569 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364894.748199999332428, 257621.904399998486042 ], [ 364889.368400000035763, 257590.829599998891354 ], [ 364857.110500000417233, 257591.198899999260902 ], [ 364862.49210000038147, 257622.062600001692772 ], [ 364894.748199999332428, 257621.904399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702011900", "MAP": null, "PARCEL_NAM": "11-5-9", "ACRE": null, "LONGITUDE": -64.87269753, "LATITUDE": 18.34743836, "OBJECTID_1": 22274, "PARCEL_NO_": "105702011900", "Tax_Legal_": "FRYDENDAHL 11-5-9 EAST END QTR", "Name": "WEEKS, PERPAETER & LAYNE", "Address": "6211 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 75500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.285220143, "SHAPE_Area": 1065.241725 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364972.224299997091293, 257614.305900000035763 ], [ 364971.558300003409386, 257597.835099998861551 ], [ 364928.922600001096725, 257585.875999998301268 ], [ 364928.883100003004074, 257590.51969999819994 ], [ 364934.313299998641014, 257615.684300001710653 ], [ 364935.085400000214577, 257619.701400000602007 ], [ 364945.585500001907349, 257617.676399998366833 ], [ 364946.348600000143051, 257622.7489 ], [ 364972.224299997091293, 257614.305900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87305945, "LATITUDE": 18.34743096, "OBJECTID_1": 22300, "PARCEL_NO_": "105702014800", "Tax_Legal_": "FRYDENDAHL 11AD EAST END QTR", "Name": "STRIDIRON, VOLMIE(LIFE ESTATE)", "Address": "PO BOX 1321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36400, "Improved_V": 109700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.83978593800001, "SHAPE_Area": 1223.0255004200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364928.922600001096725, 257585.875999998301268 ], [ 364895.01969999819994, 257590.031500000506639 ], [ 364889.368400000035763, 257590.829599998891354 ], [ 364894.748199999332428, 257621.904399998486042 ], [ 364934.313299998641014, 257615.684300001710653 ], [ 364928.883100003004074, 257590.51969999819994 ], [ 364928.922600001096725, 257585.875999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601081900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89206952000001, "LATITUDE": 18.34743564, "OBJECTID_1": 20896, "PARCEL_NO_": "105601081900", "Tax_Legal_": "215-146 ANNAS RETREAT NEW QTR.", "Name": "JEAN, SHEILA & GERARD", "Address": "PO Box 10776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 54200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.579899024, "SHAPE_Area": 638.95785431900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362920.268799997866154, 257584.634899999946356 ], [ 362900.236900001764297, 257569.694400001317263 ], [ 362883.936200000345707, 257590.037000000476837 ], [ 362907.191600002348423, 257605.214999999850988 ], [ 362908.030299998819828, 257601.422200001776218 ], [ 362910.490599997341633, 257596.587200000882149 ], [ 362920.268799997866154, 257584.634899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602011100", "MAP": "C9-217-T77", "PARCEL_NAM": "394-19", "ACRE": "0.15", "LONGITUDE": -64.88408137, "LATITUDE": 18.3474417, "OBJECTID_1": 20926, "PARCEL_NO_": "105602011100", "Tax_Legal_": "ANNAS RETREAT 394-19 NEW QTR", "Name": "GUMBS, MELVIN L AND SHAREEN A GUMBS", "Address": "PO BOX 303152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 113300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.09091035500001, "SHAPE_Area": 696.805185284 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363746.834399998188019, 257580.212000001221895 ], [ 363741.183499999344349, 257574.652899999171495 ], [ 363731.632200002670288, 257588.545499999076128 ], [ 363730.585900001227856, 257603.382599998265505 ], [ 363732.927500002086163, 257603.529500000178814 ], [ 363742.597800001502037, 257604.241900000721216 ], [ 363761.210199996829033, 257610.649300001561642 ], [ 363763.653599999845028, 257606.471900001168251 ], [ 363767.387299999594688, 257603.7212999984622 ], [ 363746.834399998188019, 257580.212000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602031300", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-350", "ACRE": ".151", "LONGITUDE": -64.88932565, "LATITUDE": 18.34742277, "OBJECTID_1": 21112, "PARCEL_NO_": "105602031300", "Tax_Legal_": "ANNAS RETREAT 394-350 NEW QTR", "Name": "BATTISTE, CYRIL & CLARISA", "Address": "394-350 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 123800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.89988747300001, "SHAPE_Area": 616.32014617200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363210.516099996864796, 257589.965700000524521 ], [ 363184.064300000667572, 257571.384100001305342 ], [ 363172.687799997627735, 257581.63459999859333 ], [ 363197.482100002467632, 257605.480000000447035 ], [ 363203.158600002527237, 257601.726700000464916 ], [ 363207.227899998426437, 257597.327100001275539 ], [ 363210.516099996864796, 257589.965700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87432621000001, "LATITUDE": 18.34738386, "OBJECTID_1": 22303, "PARCEL_NO_": "105702015300", "Tax_Legal_": "52-7A ESTATE FRYDENDAHL EAST END QTR", "Name": "WILLIAMS, GARALDINE L. & CONNOR, ADELINE L.", "Address": "PO Box 7083", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35200, "Improved_V": 146200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.72571575500001, "SHAPE_Area": 1166.09101276 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364801.487499997019768, 257589.265999998897314 ], [ 364763.691500000655651, 257577.135400000959635 ], [ 364754.584700003266335, 257604.925200000405312 ], [ 364789.952799998223782, 257618.091400001198053 ], [ 364801.487499997019768, 257589.265999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90660184, "LATITUDE": 18.34737605, "OBJECTID_1": 19890, "PARCEL_NO_": "105502031000", "Tax_Legal_": "WINTBERG ESTATE 1-98 GR NORTHSIDE", "Name": "PAUL, HANNAH", "Address": "6876 Upper Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48600, "Improved_V": 152400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.98691489800001, "SHAPE_Area": 1563.8657282700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361390.609499998390675, 257582.036699999123812 ], [ 361385.260300002992153, 257547.373599998652935 ], [ 361368.315099999308586, 257548.712600000202656 ], [ 361342.473499998450279, 257553.145100001245737 ], [ 361347.811999998986721, 257589.074700001627207 ], [ 361376.882399998605251, 257584.246399998664856 ], [ 361390.609499998390675, 257582.036699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88654852000001, "LATITUDE": 18.34684563, "OBJECTID_1": 21090, "PARCEL_NO_": "105602025500", "Tax_Legal_": "394B ANNAS RETREAT NEW QTR", "Name": "FAITH CHRISTIAN FELLOWSHIP", "Address": "394 B Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 292100, "Improved_V": 2231300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 827.97965737000004, "SHAPE_Area": 19762.4907719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363384.557300001382828, 257605.744500000029802 ], [ 363410.397100001573563, 257601.522999998182058 ], [ 363429.746799997985363, 257601.892499998211861 ], [ 363451.531599998474121, 257600.382100000977516 ], [ 363474.122800000011921, 257598.878199998289347 ], [ 363495.099500000476837, 257597.572200000286102 ], [ 363519.304999999701977, 257595.87049999833107 ], [ 363545.907899998128414, 257596.721500001847744 ], [ 363566.818099997937679, 257603.225499998778105 ], [ 363571.227300003170967, 257558.93189999833703 ], [ 363570.503700003027916, 257549.215700000524521 ], [ 363569.989600002765656, 257539.888000000268221 ], [ 363549.065200001001358, 257540.822900000959635 ], [ 363548.070799998939037, 257532.144600000232458 ], [ 363546.492399998009205, 257528.120900001376867 ], [ 363541.773199997842312, 257514.150100000202656 ], [ 363540.192900002002716, 257510.337499998509884 ], [ 363533.873700000345707, 257494.875900000333786 ], [ 363531.485299997031689, 257491.267799999564886 ], [ 363523.937399998307228, 257476.425900001078844 ], [ 363518.16330000013113, 257465.071600001305342 ], [ 363517.532600000500679, 257463.541900001466274 ], [ 363507.5574000030756, 257439.349300000816584 ], [ 363531.615299999713898, 257433.880100000649691 ], [ 363516.134099997580051, 257400.160799998790026 ], [ 363511.41669999808073, 257385.978900000452995 ], [ 363509.010300002992153, 257384.481600001454353 ], [ 363494.500299997627735, 257383.940600000321865 ], [ 363482.432599999010563, 257380.675500001758337 ], [ 363471.99549999833107, 257375.312699999660254 ], [ 363467.18639999628067, 257371.895899999886751 ], [ 363463.190800003707409, 257367.64130000025034 ], [ 363461.581699997186661, 257367.205899998545647 ], [ 363460.759199999272823, 257369.098999999463558 ], [ 363463.873000003397465, 257382.21229999884963 ], [ 363466.153499998152256, 257398.485199999064207 ], [ 363466.790799997746944, 257418.333200000226498 ], [ 363491.78830000013113, 257418.326699998229742 ], [ 363487.476199999451637, 257451.221999999135733 ], [ 363478.414300002157688, 257473.7347999997437 ], [ 363475.961199998855591, 257477.725499998778105 ], [ 363462.05969999730587, 257500.40989999845624 ], [ 363445.73929999768734, 257523.074400000274181 ], [ 363428.662799999117851, 257539.82209999859333 ], [ 363406.770099997520447, 257553.997299998998642 ], [ 363388.472499996423721, 257564.939500000327826 ], [ 363372.043300002813339, 257574.764400001615286 ], [ 363372.920800000429153, 257575.961899999529123 ], [ 363377.29730000346899, 257581.934000000357628 ], [ 363379.062399998307228, 257588.178800001740456 ], [ 363384.557300001382828, 257605.744500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601050900", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-73", "ACRE": "0.153", "LONGITUDE": -64.89277958, "LATITUDE": 18.34741872, "OBJECTID_1": 20754, "PARCEL_NO_": "105601050900", "Tax_Legal_": "ANNAS RETREAT 215-73 & POR 404 NEW QTR.", "Name": "CLEMENS, SAMUEL & VEDA", "Address": "212 Tomagene Dr", "City": "Bourbonnais", "State": "Illinois", "Zip": 60914, "Country": "United States", "Land_Value": 20500, "Improved_V": 114600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.53526347499999, "SHAPE_Area": 695.18536937900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362839.374600000679493, 257571.831599999219179 ], [ 362839.180500000715256, 257570.453299999237061 ], [ 362812.173500001430511, 257573.708000000566244 ], [ 362812.2787000015378, 257577.207100000232458 ], [ 362812.842799998819828, 257593.840199999511242 ], [ 362824.346199996769428, 257596.808299999684095 ], [ 362836.411300003528595, 257599.242400001734495 ], [ 362839.057099997997284, 257598.713300000876188 ], [ 362840.588799998164177, 257597.895899999886751 ], [ 362841.176500000059605, 257592.642400000244379 ], [ 362839.374600000679493, 257571.831599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701017600", "MAP": "C9-133-T72", "PARCEL_NAM": "5-6", "ACRE": ".30", "LONGITUDE": -64.87963694, "LATITUDE": 18.34737423, "OBJECTID_1": 21904, "PARCEL_NO_": "105701017600", "Tax_Legal_": "5-6 TABOR & HARMONY EAST END QTR.", "Name": "PETERS, CARDINAL & SHIRLEY", "Address": "PO Box 368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.65695106800001, "SHAPE_Area": 1103.7103567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364199.989200003445148, 257583.076400000602007 ], [ 364193.456000000238419, 257592.733300000429153 ], [ 364202.163599997758865, 257611.802999999374151 ], [ 364235.3429000005126, 257597.931200001388788 ], [ 364240.315600000321865, 257582.139899998903275 ], [ 364225.069399997591972, 257573.360300000756979 ], [ 364208.084700003266335, 257579.342999998480082 ], [ 364199.989200003445148, 257583.076400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602017500", "MAP": "C9-217-T77", "PARCEL_NAM": "394-399", "ACRE": "0.14", "LONGITUDE": -64.88478804, "LATITUDE": 18.34743662, "OBJECTID_1": 20990, "PARCEL_NO_": "105602017500", "Tax_Legal_": "394-399 ANNAS RETREAT NEW QTR", "Name": "RHYMER, ALLEN & ENA", "Address": "394-399 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 104500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.723207583299995, "SHAPE_Area": 519.131909952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363682.32039999961853, 257580.739399999380112 ], [ 363657.27080000191927, 257586.867199998348951 ], [ 363661.937799997627735, 257606.959300000220537 ], [ 363686.182899996638298, 257600.613800000399351 ], [ 363682.32039999961853, 257580.739399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602090600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89062138, "LATITUDE": 18.34739067, "OBJECTID_1": 21462, "PARCEL_NO_": "105602090600", "Tax_Legal_": "215-180 ANNAS RETREAT NEW QTR.", "Name": "HOLDER, BARBARA", "Address": "215-180 EST. TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 177100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.154840895000007, "SHAPE_Area": 618.788166757 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363054.287500001490116, 257565.67790000140667 ], [ 363038.028200000524521, 257581.165699999779463 ], [ 363056.402500003576279, 257601.370000001043081 ], [ 363069.406000003218651, 257589.444099999964237 ], [ 363071.072599999606609, 257583.124899998307228 ], [ 363054.287500001490116, 257565.67790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601027500", "MAP": "C9-240-T79", "PARCEL_NAM": "404-60", "ACRE": "0.16", "LONGITUDE": -64.89422474, "LATITUDE": 18.34742649, "OBJECTID_1": 20604, "PARCEL_NO_": "105601027500", "Tax_Legal_": "ANNAS RET. 404-60 & POR. 215 NEW QTR.", "Name": "BRUNN, LINDA", "Address": "GERS COMPLEX", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 65400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.775976943399996, "SHAPE_Area": 638.10832762400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362688.04900000244379, 257582.94539999961853 ], [ 362680.916299998760223, 257568.32149999961257 ], [ 362659.881999999284744, 257576.381999999284744 ], [ 362660.564300000667572, 257590.953099999576807 ], [ 362662.956200003623962, 257594.138999998569489 ], [ 362667.770700000226498, 257596.922699999064207 ], [ 362674.217600002884865, 257597.397599998861551 ], [ 362687.964500002563, 257592.866099998354912 ], [ 362692.0050999969244, 257591.843699999153614 ], [ 362689.629299998283386, 257586.758000001311302 ], [ 362688.04900000244379, 257582.94539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602081200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89016015, "LATITUDE": 18.34738792, "OBJECTID_1": 21381, "PARCEL_NO_": "105602081200", "Tax_Legal_": "215-215 ANNAS RETREAT NEW QTR.", "Name": "WILLIAMS, DAVID & THELMA", "Address": "PO Box 10833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 152800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.853184335500003, "SHAPE_Area": 507.04596345300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363119.420800000429153, 257587.109200000762939 ], [ 363101.856299996376038, 257566.489399999380112 ], [ 363088.840300001204014, 257579.892799999564886 ], [ 363106.402900002896786, 257600.723700001835823 ], [ 363119.420800000429153, 257587.109200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602031400", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-342", "ACRE": ".143", "LONGITUDE": -64.88888347, "LATITUDE": 18.34738649, "OBJECTID_1": 21113, "PARCEL_NO_": "105602031400", "Tax_Legal_": "394-342 ANNAS RETREAT NEW QTR", "Name": "GEORGE, JUDITH A", "Address": "PO Box 7491", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 67200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.207662258, "SHAPE_Area": 677.25578982599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363258.167700000107288, 257581.067600000649691 ], [ 363235.709600001573563, 257566.95160000026226 ], [ 363224.277400001883507, 257583.74549999833107 ], [ 363221.83330000191927, 257586.680799998342991 ], [ 363221.003600001335144, 257589.418299999088049 ], [ 363241.863399997353554, 257601.832400001585484 ], [ 363244.312899999320507, 257598.263900000602007 ], [ 363258.167700000107288, 257581.067600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601050800", "MAP": "D9-8513-T010", "PARCEL_NAM": "215-127", "ACRE": ".13", "LONGITUDE": -64.89306496, "LATITUDE": 18.3474259, "OBJECTID_1": 20753, "PARCEL_NO_": "105601050800", "Tax_Legal_": "215-127 ANNAS RETREAT NEW QTR.", "Name": "STEELE, HERLENE JAMES", "Address": "215-127 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31200, "Improved_V": 45500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.115826543, "SHAPE_Area": 679.34487029000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362804.849200002849102, 257597.411299999803305 ], [ 362805.678900003433228, 257594.673900000751019 ], [ 362812.923199996352196, 257596.210799999535084 ], [ 362812.2787000015378, 257577.207100000232458 ], [ 362812.173500001430511, 257573.708000000566244 ], [ 362786.634199999272823, 257574.288699999451637 ], [ 362783.892200000584126, 257574.49210000038147 ], [ 362779.101199999451637, 257590.867800001055002 ], [ 362779.07599999755621, 257593.822900000959635 ], [ 362804.849200002849102, 257597.411299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602011200", "MAP": "C9-217-T77", "PARCEL_NAM": "394-20", "ACRE": "0.55", "LONGITUDE": -64.88407781, "LATITUDE": 18.34698072, "OBJECTID_1": 20927, "PARCEL_NO_": "105602011200", "Tax_Legal_": "394-20 ANNAS RETREAT NEW QTR", "Name": "RAMSEY, ODETTE", "Address": "5240 Silvey Dr", "City": "Norfolk", "State": "Virginia", "Zip": 23502, "Country": "United States", "Land_Value": 74300, "Improved_V": 5800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.18827233899998, "SHAPE_Area": 2077.1730910800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363758.302599996328354, 257559.19649999961257 ], [ 363753.197899997234344, 257495.82660000026226 ], [ 363737.068000003695488, 257496.116799999028444 ], [ 363730.622900001704693, 257495.430799998342991 ], [ 363732.046700000762939, 257517.607200000435114 ], [ 363734.102799996733665, 257525.849700000137091 ], [ 363738.332299999892712, 257542.805300001055002 ], [ 363741.666899548145011, 257544.550348125281744 ], [ 363744.889600001275539, 257546.494300000369549 ], [ 363743.871684465906583, 257548.416620707430411 ], [ 363742.565478056611028, 257550.155957866896642 ], [ 363741.003168794617523, 257551.669450089480961 ], [ 363739.223255682270974, 257552.91980134032201 ], [ 363737.269599996507168, 257553.876200001686811 ], [ 363734.509847117296886, 257555.239491982443724 ], [ 363731.63400000333786, 257556.336899999529123 ], [ 363728.971476234844886, 257558.1430449692416 ], [ 363726.526000000536442, 257560.23369999974966 ], [ 363728.44200000166893, 257562.118500001728535 ], [ 363741.183499999344349, 257574.652899999171495 ], [ 363746.834399998188019, 257580.212000001221895 ], [ 363767.387299999594688, 257603.7212999984622 ], [ 363769.567100003361702, 257602.115600001066923 ], [ 363758.302599996328354, 257559.19649999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602021600", "MAP": null, "PARCEL_NAM": "394-322", "ACRE": null, "LONGITUDE": -64.88794236, "LATITUDE": 18.34733222, "OBJECTID_1": 21051, "PARCEL_NO_": "105602021600", "Tax_Legal_": "394-322 ANNAS RETREAT NEW QTR", "Name": "JONAS, DAVID & EVETTE", "Address": "10718 Crenshawblvd", "City": "Inglewood", "State": "California", "Zip": 90303, "Country": "United States", "Land_Value": 16400, "Improved_V": 103700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.037309326, "SHAPE_Area": 438.86042884300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363352.23589999973774, 257586.609400000423193 ], [ 363338.15259999781847, 257562.934900000691414 ], [ 363325.991400003433228, 257570.645799998193979 ], [ 363337.035499997437, 257595.699400000274181 ], [ 363352.23589999973774, 257586.609400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87236397, "LATITUDE": 18.3473381, "OBJECTID_1": 22299, "PARCEL_NO_": "105702014600", "Tax_Legal_": "FRYDENDAHL 11-5-10 EAST END QTR", "Name": "YEARWOOD-ALFRED, SHIRLEY", "Address": "PO Box 307152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75100, "Improved_V": 151000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.22734540899999, "SHAPE_Area": 914.18443997400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365002.34740000218153, 257580.566300000995398 ], [ 364973.365099996328354, 257575.05180000141263 ], [ 364971.558300003409386, 257597.835099998861551 ], [ 364972.224299997091293, 257614.305900000035763 ], [ 364996.465899996459484, 257608.382500000298023 ], [ 365002.34740000218153, 257580.566300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601057200", "MAP": "C9-240-T79", "PARCEL_NAM": "215-63", "ACRE": "0.15", "LONGITUDE": -64.89387712, "LATITUDE": 18.34741903, "OBJECTID_1": 20815, "PARCEL_NO_": "105601057200", "Tax_Legal_": "ANNAS R 215-63 & POR 404 NEW QTR.", "Name": "BIRMINGHAM, EUZEBE", "Address": "PO Box 9574", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.914482882, "SHAPE_Area": 621.08568858800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362726.680100001394749, 257591.705299999564886 ], [ 362727.579899996519089, 257580.735800001770258 ], [ 362726.006800003349781, 257576.07880000025034 ], [ 362722.027400001883507, 257569.924600001424551 ], [ 362691.286899998784065, 257581.494199998676777 ], [ 362688.04900000244379, 257582.94539999961853 ], [ 362689.629299998283386, 257586.758000001311302 ], [ 362692.0050999969244, 257591.843699999153614 ], [ 362696.04559999704361, 257590.821299999952316 ], [ 362704.916799999773502, 257590.682799998670816 ], [ 362712.162900000810623, 257592.008600000292063 ], [ 362718.586400002241135, 257595.227600000798702 ], [ 362722.616200000047684, 257595.471700001507998 ], [ 362725.855800002813339, 257593.809500001370907 ], [ 362726.680100001394749, 257591.705299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602011300", "MAP": "C9-217-T77", "PARCEL_NAM": "394-21", "ACRE": "0.59", "LONGITUDE": -64.88384684, "LATITUDE": 18.34700275, "OBJECTID_1": 20928, "PARCEL_NO_": "105602011300", "Tax_Legal_": "394-21 ANNAS RETREAT NEW QTR", "Name": "LANCLOS, LILLIAN", "Address": "PO Box 8962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 76800, "Improved_V": 126800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.56207702500001, "SHAPE_Area": 2749.0015701100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363790.746799997985363, 257596.997499998658895 ], [ 363787.333400003612041, 257559.011900000274181 ], [ 363777.4087999984622, 257493.491599999368191 ], [ 363753.197899997234344, 257495.82660000026226 ], [ 363758.302599996328354, 257559.19649999961257 ], [ 363769.567100003361702, 257602.115600001066923 ], [ 363779.031800001859665, 257598.782800000160933 ], [ 363790.746799997985363, 257596.997499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602090500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89095082, "LATITUDE": 18.34736088, "OBJECTID_1": 21461, "PARCEL_NO_": "105602090500", "Tax_Legal_": "215-170 ANNAS RETREAT NEW QTR.", "Name": "SMITH, DIANA", "Address": "PO Box 9228", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 97400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.332875528599999, "SHAPE_Area": 625.08658262300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363038.028200000524521, 257581.165699999779463 ], [ 363022.852099999785423, 257564.153999999165535 ], [ 363020.454700000584126, 257561.601300001144409 ], [ 363004.992799997329712, 257578.151099998503923 ], [ 363003.363899998366833, 257580.037599999457598 ], [ 363017.7516999989748, 257594.93189999833703 ], [ 363020.958999998867512, 257597.069099999964237 ], [ 363038.028200000524521, 257581.165699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602094000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89126188, "LATITUDE": 18.34734934, "OBJECTID_1": 21496, "PARCEL_NO_": "105602094000", "Tax_Legal_": "215-165 ANNAS RETREAT NEW QTR.", "Name": "MEYERS, JEREMIAH & SYLVANTA", "Address": "394-283 EST. TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 64500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.78267275499999, "SHAPE_Area": 653.76826754299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362983.385999999940395, 257558.764800000935793 ], [ 362986.582400001585484, 257562.168400000780821 ], [ 362983.330200001597404, 257565.308200001716614 ], [ 362969.500600002706051, 257579.549400001764297 ], [ 362989.514600001275539, 257596.600699998438358 ], [ 363003.363899998366833, 257580.037599999457598 ], [ 363004.992799997329712, 257578.151099998503923 ], [ 362985.012999996542931, 257557.089299999177456 ], [ 362983.385999999940395, 257558.764800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90613084, "LATITUDE": 18.3473254, "OBJECTID_1": 19891, "PARCEL_NO_": "105502031100", "Tax_Legal_": "WINTBERG ESTATE 1-99 3 GR NORTHSIDE QTR", "Name": "BRIN FAMILY TRUST", "Address": "6860 Upper Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68700, "Improved_V": 282200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.42064606599999, "SHAPE_Area": 1789.05037982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361447.940399996936321, 257572.795699998736382 ], [ 361446.556199997663498, 257545.975400000810623 ], [ 361422.345200002193451, 257548.310400001704693 ], [ 361385.260300002992153, 257547.373599998652935 ], [ 361390.609499998390675, 257582.036699999123812 ], [ 361430.982699997723103, 257575.612199999392033 ], [ 361447.940399996936321, 257572.795699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501011900", "MAP": null, "PARCEL_NAM": "1-35", "ACRE": null, "LONGITUDE": -64.90813682, "LATITUDE": 18.34711939, "OBJECTID_1": 19674, "PARCEL_NO_": "105501011900", "Tax_Legal_": "WINTBERG 1-35 NEW QTR", "Name": "HOWES FAMILY REVOCABLE TRUST", "Address": "2136 Laurel Blossom", "City": "Ocoee", "State": "Florida", "Zip": 34761, "Country": "United States", "Land_Value": 83000, "Improved_V": 534400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.00704597699999, "SHAPE_Area": 2387.6825239599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361229.695799998939037, 257552.916999999433756 ], [ 361234.751500003039837, 257521.855599999427795 ], [ 361175.944499999284744, 257507.452500000596046 ], [ 361186.819300003349781, 257556.092999998480082 ], [ 361193.064800001680851, 257580.208799999207258 ], [ 361196.345799997448921, 257573.691799998283386 ], [ 361200.420500002801418, 257568.658900000154972 ], [ 361205.294299997389317, 257564.47690000012517 ], [ 361220.684399999678135, 257556.370200000703335 ], [ 361229.695799998939037, 257552.916999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602081500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88966304, "LATITUDE": 18.34733797, "OBJECTID_1": 21384, "PARCEL_NO_": "105602081500", "Tax_Legal_": "215-218 ANNAS RETREAT NEW QTR.", "Name": "SWIFT, AILEEN", "Address": "PO Box 301734", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 95000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.523843979099993, "SHAPE_Area": 562.62123215600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363172.687799997627735, 257581.63459999859333 ], [ 363156.73589999973774, 257561.027899999171495 ], [ 363140.487400002777576, 257575.249299999326468 ], [ 363157.24379999935627, 257596.073600001633167 ], [ 363172.687799997627735, 257581.63459999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601083700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8915975, "LATITUDE": 18.347353, "OBJECTID_1": 20912, "PARCEL_NO_": "105601083700", "Tax_Legal_": "215-159 ANNAS RETREAT NEW QTR.", "Name": "SMITH, LEBURN", "Address": "11381 SW 21 St", "City": "MIRAMAR", "State": "Florida", "Zip": 33026, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.684388705999993, "SHAPE_Area": 540.57841544999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362969.500600002706051, 257579.549400001764297 ], [ 362948.683899998664856, 257562.069299999624491 ], [ 362935.642700001597404, 257578.42790000140667 ], [ 362954.861100003123283, 257594.2060999982059 ], [ 362969.500600002706051, 257579.549400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602026600", "MAP": "G9-2558-T76", "PARCEL_NAM": "394-330", "ACRE": "0.16", "LONGITUDE": -64.88848733, "LATITUDE": 18.34730253, "OBJECTID_1": 21092, "PARCEL_NO_": "105602026600", "Tax_Legal_": "ANNAS RETREAT 394-330 NEW QTR", "Name": "DANET, MATTHEW B. & VALENCIA O", "Address": "Po Box 11072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18200, "Improved_V": 66000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.289967625, "SHAPE_Area": 849.07836171999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363300.117499999701977, 257578.87779999896884 ], [ 363283.407899998128414, 257552.565499998629093 ], [ 363272.825199998915195, 257564.30009999871254 ], [ 363261.427100002765656, 257577.083500001579523 ], [ 363279.804999999701977, 257596.865600001066923 ], [ 363287.940099999308586, 257588.488499999046326 ], [ 363300.117499999701977, 257578.87779999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87196923, "LATITUDE": 18.34721404, "OBJECTID_1": 22285, "PARCEL_NO_": "105702013000", "Tax_Legal_": "FRYDENDAHL 11-5-15 EAST END QTR", "Name": "SIMMONDS, ROI", "Address": "PO Box 911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32400, "Improved_V": 93500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.86944860599999, "SHAPE_Area": 1068.9892602299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365039.547499999403954, 257567.994100000709295 ], [ 365013.844400003552437, 257556.173599999397993 ], [ 365009.589800000190735, 257582.314399998635054 ], [ 365036.761699996888638, 257611.034400001168251 ], [ 365042.724200002849102, 257573.7195999994874 ], [ 365042.760099999606609, 257569.497999999672174 ], [ 365039.547499999403954, 257567.994100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011500", "MAP": "B9-178-T67", "PARCEL_NAM": "401", "ACRE": null, "LONGITUDE": -64.89460441, "LATITUDE": 18.34729095, "OBJECTID_1": 20452, "PARCEL_NO_": "105601011500", "Tax_Legal_": "401 ANNAS RETREAT NEW QTR", "Name": "THOMAS, GUY & PAULINA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41800, "Improved_V": 99700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.98467017499999, "SHAPE_Area": 1058.09585294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362651.755999997258186, 257583.70380000025034 ], [ 362651.844099998474121, 257573.36089999973774 ], [ 362647.907799996435642, 257562.140700001269579 ], [ 362642.328400000929832, 257554.495700001716614 ], [ 362627.913599997758865, 257542.767599999904633 ], [ 362614.755500003695488, 257572.8462999984622 ], [ 362625.975500002503395, 257580.959699999541044 ], [ 362634.758699998259544, 257591.164000000804663 ], [ 362651.755999997258186, 257583.70380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502032500", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-N", "ACRE": ".2713", "LONGITUDE": -64.90395121, "LATITUDE": 18.3472341, "OBJECTID_1": 19901, "PARCEL_NO_": "105502032500", "Tax_Legal_": "WINTBERG ESTATE 1X-1-N GREAT NORTHSIDE", "Name": "MOOK, DONALD J. & & DANA W.", "Address": "1X-1-N Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 297100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.322400122, "SHAPE_Area": 1211.01483975 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361622.545299999415874, 257559.054999999701977 ], [ 361633.431900002062321, 257569.669799998402596 ], [ 361637.452600002288818, 257570.969200000166893 ], [ 361644.675300002098083, 257575.039099998772144 ], [ 361646.268399998545647, 257576.894900001585484 ], [ 361671.736199997365475, 257555.226700000464916 ], [ 361646.685300000011921, 257528.403900001198053 ], [ 361622.545299999415874, 257559.054999999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602011400", "MAP": "C9-217-T77", "PARCEL_NAM": "394-22", "ACRE": "0.59", "LONGITUDE": -64.88362654, "LATITUDE": 18.34694604, "OBJECTID_1": 20929, "PARCEL_NO_": "105602011400", "Tax_Legal_": "394-22 ANNAS RETREAT NEW QTR", "Name": "LUZUNARIS, CARMEN & CARMEN B", "Address": "PO Box 7222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 111400, "Improved_V": 217400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.473408323, "SHAPE_Area": 2252.10198158 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363811.482100002467632, 257595.770700000226498 ], [ 363805.072300001978874, 257559.1570999994874 ], [ 363804.063900001347065, 257488.221400000154972 ], [ 363777.4087999984622, 257493.491599999368191 ], [ 363787.333400003612041, 257559.011900000274181 ], [ 363790.746799997985363, 257596.997499998658895 ], [ 363803.319600000977516, 257596.585900001227856 ], [ 363811.482100002467632, 257595.770700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601080500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89240185, "LATITUDE": 18.34733878, "OBJECTID_1": 20882, "PARCEL_NO_": "105601080500", "Tax_Legal_": "215-144 ANNAS RETREAT NEW QTR.", "Name": "RIVERA, PEDRO & LUISA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.55254950200001, "SHAPE_Area": 769.08068563500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362863.238200001418591, 257558.625799998641014 ], [ 362845.337499998509884, 257577.477699998766184 ], [ 362868.603699997067451, 257591.389199998229742 ], [ 362871.821699999272823, 257592.259899999946356 ], [ 362876.679399996995926, 257589.977600000798702 ], [ 362888.10080000013113, 257574.450199998915195 ], [ 362863.238200001418591, 257558.625799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601056900", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-67", "ACRE": "0.153", "LONGITUDE": -64.8932921, "LATITUDE": 18.34732652, "OBJECTID_1": 20813, "PARCEL_NO_": "105601056900", "Tax_Legal_": "215-67&POR 404 ANNAS RET NEW QTR.", "Name": "HODGE, BASIL & EVELYN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.577567360100005, "SHAPE_Area": 583.19014174100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362761.396499998867512, 257586.712099999189377 ], [ 362780.028800003230572, 257587.697299998253584 ], [ 362783.892200000584126, 257574.49210000038147 ], [ 362786.634199999272823, 257574.288699999451637 ], [ 362784.189000003039837, 257561.567400000989437 ], [ 362783.397100001573563, 257559.87220000103116 ], [ 362770.230999998748302, 257557.904599998146296 ], [ 362768.870899997651577, 257561.230900000780821 ], [ 362758.210799999535084, 257582.041900001466274 ], [ 362758.176600001752377, 257586.052400000393391 ], [ 362761.396499998867512, 257586.712099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90550941, "LATITUDE": 18.34732541, "OBJECTID_1": 19892, "PARCEL_NO_": "105502031200", "Tax_Legal_": "WINTBERG ESTATE 1-100 3 GR NORTHSIDE", "Name": "SMALLS, JANET", "Address": "PO Box 302935", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52100, "Improved_V": 654800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.77150129699999, "SHAPE_Area": 2193.8278295199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361490.093500003218651, 257546.754000000655651 ], [ 361473.992399998009205, 257543.666900001466274 ], [ 361460.283299997448921, 257543.765799999237061 ], [ 361446.556199997663498, 257545.975400000810623 ], [ 361447.940399996936321, 257572.795699998736382 ], [ 361484.973300002515316, 257579.853700000792742 ], [ 361486.584100000560284, 257580.078000001609325 ], [ 361512.7550999969244, 257585.095800001174212 ], [ 361519.820900000631809, 257559.451799999922514 ], [ 361502.148599997162819, 257551.496700000017881 ], [ 361490.093500003218651, 257546.754000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602011500", "MAP": "C9-217-T77", "PARCEL_NAM": "394-23", "ACRE": "0.53", "LONGITUDE": -64.88342496, "LATITUDE": 18.346936, "OBJECTID_1": 20930, "PARCEL_NO_": "105602011500", "Tax_Legal_": "ANNAS RETREAT 394-23 NEW QTR", "Name": "LANG, TAMARA", "Address": "P.O.BOX 2664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72000, "Improved_V": 193600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.25212911300002, "SHAPE_Area": 2322.7363233599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363832.583200000226498, 257590.446699999272823 ], [ 363826.840899996459484, 257559.546300001442432 ], [ 363824.300800003111362, 257479.098900001496077 ], [ 363813.762999996542931, 257485.556499999016523 ], [ 363804.063900001347065, 257488.221400000154972 ], [ 363805.072300001978874, 257559.1570999994874 ], [ 363811.482100002467632, 257595.770700000226498 ], [ 363831.024899996817112, 257591.215700000524521 ], [ 363832.583200000226498, 257590.446699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8758109, "LATITUDE": 18.34725991, "OBJECTID_1": 21937, "PARCEL_NO_": "105701022700", "Tax_Legal_": "5-3 ESTATE FRYDENDAHL EAST END QTR", "Name": "PILGRIM, ULRIC", "Address": "14-64 ESTATE BONNE RESOLUTION", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.55510912400001, "SHAPE_Area": 1246.42808249 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364642.821999996900558, 257567.069099999964237 ], [ 364611.431500002741814, 257560.268300000578165 ], [ 364599.013199999928474, 257598.163499999791384 ], [ 364630.414399996399879, 257603.697799999266863 ], [ 364642.821999996900558, 257567.069099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602013200", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-191", "ACRE": "0.15", "LONGITUDE": -64.8855388, "LATITUDE": 18.34724855, "OBJECTID_1": 20947, "PARCEL_NO_": "105602013200", "Tax_Legal_": "394-191 ANNAS RETREAT NO.1 NEW QTR", "Name": "FLEMING, DARYLL. & INGRID J.L.", "Address": "PO Box 302513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22300, "Improved_V": 136300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.493542408, "SHAPE_Area": 1035.2591300700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363609.120399996638298, 257559.664200000464916 ], [ 363609.161799997091293, 257554.796599999070168 ], [ 363578.422600001096725, 257556.073699999600649 ], [ 363578.500299997627735, 257557.091600000858307 ], [ 363576.402099996805191, 257584.997999999672174 ], [ 363576.020599998533726, 257590.07209999859333 ], [ 363607.374099999666214, 257587.941700000315905 ], [ 363607.575800001621246, 257583.451099999248981 ], [ 363608.236800000071526, 257568.734000001102686 ], [ 363609.120399996638298, 257559.664200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601056800", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-64", "ACRE": "0.142", "LONGITUDE": -64.8934881, "LATITUDE": 18.34731013, "OBJECTID_1": 20812, "PARCEL_NO_": "105601056800", "Tax_Legal_": "215-64&POR 404 ANNAS RET NEW QTR.", "Name": "WILLIAMS, EULIC & DOROTHY", "Address": "PO Box 304794", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23800, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.556489157, "SHAPE_Area": 599.75303632800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362734.183600001037121, 257574.245099999010563 ], [ 362735.770999997854233, 257582.760400000959635 ], [ 362738.3175999969244, 257584.043600000441074 ], [ 362741.704300001263618, 257584.572799999266863 ], [ 362758.176600001752377, 257586.052400000393391 ], [ 362758.210799999535084, 257582.041900001466274 ], [ 362768.870899997651577, 257561.230900000780821 ], [ 362770.230999998748302, 257557.904599998146296 ], [ 362758.321000002324581, 257552.077500000596046 ], [ 362757.913199998438358, 257553.504399999976158 ], [ 362755.577799998223782, 257564.445999998599291 ], [ 362733.735399998724461, 257572.377300001680851 ], [ 362734.183600001037121, 257574.245099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602031500", "MAP": "A9-167J-T71", "PARCEL_NAM": ".154", "ACRE": null, "LONGITUDE": -64.88922978, "LATITUDE": 18.34727836, "OBJECTID_1": 21114, "PARCEL_NO_": "105602031500", "Tax_Legal_": "394-351 ANNAS RETREAT NEW QTR", "Name": "HENDRICKSON, HERMAN & E. M", "Address": "PO Box 905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19900, "Improved_V": 113200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.138972716, "SHAPE_Area": 611.72419282299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363220.344700001180172, 257572.103199999779463 ], [ 363196.29559999704361, 257555.441100001335144 ], [ 363191.402000002563, 257561.944899998605251 ], [ 363184.064300000667572, 257571.384100001305342 ], [ 363210.516099996864796, 257589.965700000524521 ], [ 363215.445699997246265, 257579.240299999713898 ], [ 363220.344700001180172, 257572.103199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87120771, "LATITUDE": 18.34722117, "OBJECTID_1": 22297, "PARCEL_NO_": "105702014400", "Tax_Legal_": "FRYDENDAHL/PUBLIC WELL 8 EAST END QTR.", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.46785039300001, "SHAPE_Area": 943.03264384099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365129.708800002932549, 257585.830600000917912 ], [ 365111.366800002753735, 257561.826900001615286 ], [ 365103.265900000929832, 257566.193599998950958 ], [ 365087.875900000333786, 257574.300299998372793 ], [ 365099.720600001513958, 257603.739199999719858 ], [ 365129.708800002932549, 257585.830600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88779419, "LATITUDE": 18.34724015, "OBJECTID_1": 21064, "PARCEL_NO_": "105602022900", "Tax_Legal_": "ANNAS RETREAT 394-321 NEW QTR", "Name": "BENJAMIN, KENNETH & GAYLE V", "Address": "PO Box 10280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 126800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.452525189599996, "SHAPE_Area": 584.23104416399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363370.324500001966953, 257575.792199999094009 ], [ 363356.791299998760223, 257552.110599998384714 ], [ 363338.15259999781847, 257562.934900000691414 ], [ 363352.23589999973774, 257586.609400000423193 ], [ 363370.324500001966953, 257575.792199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602081400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89001903, "LATITUDE": 18.34725127, "OBJECTID_1": 21383, "PARCEL_NO_": "105602081400", "Tax_Legal_": "215-216 ANNAS RETREAT NEW QTR.", "Name": "TRUST AGREEMENT OF LORECIA N KRIGGER STEPHENS", "Address": "PO Box 302551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 209600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.81511310099999, "SHAPE_Area": 654.44804008100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363137.301700003445148, 257570.579199999570847 ], [ 363117.318300001323223, 257549.939500000327826 ], [ 363101.856299996376038, 257566.489399999380112 ], [ 363119.420800000429153, 257587.109200000762939 ], [ 363137.301700003445148, 257570.579199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602011600", "MAP": "C9-217-T77", "PARCEL_NAM": "394-24", "ACRE": "0.58", "LONGITUDE": -64.88322299, "LATITUDE": 18.34693001, "OBJECTID_1": 20931, "PARCEL_NO_": "105602011600", "Tax_Legal_": "394-24 ANNAS RETREAT NEW QTR", "Name": "GABRIEL, SR. , HELEN & ALSTON", "Address": "PO Box 781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75600, "Improved_V": 1200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.179525286, "SHAPE_Area": 2214.4583903600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363865.553199999034405, 257570.08219999819994 ], [ 363849.299900002777576, 257552.398400001227856 ], [ 363833.727700002491474, 257469.23030000180006 ], [ 363830.796300001442432, 257473.874699998646975 ], [ 363824.300800003111362, 257479.098900001496077 ], [ 363826.840899996459484, 257559.546300001442432 ], [ 363832.583200000226498, 257590.446699999272823 ], [ 363840.422700002789497, 257586.577799998223782 ], [ 363865.553199999034405, 257570.08219999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601081800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89192156, "LATITUDE": 18.34725749, "OBJECTID_1": 20895, "PARCEL_NO_": "105601081800", "Tax_Legal_": "ANNAS RETREAT 215-147 NEW QTR.", "Name": "BREWLEY, BERRIS & ELLEN", "Address": "PO Box 8273", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 133800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.004512154, "SHAPE_Area": 624.235086045 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362935.741599999368191, 257566.818599998950958 ], [ 362916.533900000154972, 257549.773899998515844 ], [ 362900.236900001764297, 257569.694400001317263 ], [ 362920.268799997866154, 257584.634899999946356 ], [ 362935.741599999368191, 257566.818599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602013000", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-205", "ACRE": ".192", "LONGITUDE": -64.88521852, "LATITUDE": 18.34729372, "OBJECTID_1": 20945, "PARCEL_NO_": "105602013000", "Tax_Legal_": "ANNAS RETREAT 394-205 NEW QTR", "Name": "ALEXANDER, THOMPSON and ESRAN", "Address": "PO Box 305773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26000, "Improved_V": 234600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.501225804, "SHAPE_Area": 780.400962929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363647.620200000703335, 257583.832899998873472 ], [ 363645.354099996387959, 257565.871399998664856 ], [ 363608.236800000071526, 257568.734000001102686 ], [ 363607.241599999368191, 257590.890700001269579 ], [ 363647.620200000703335, 257583.832899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601057300", "MAP": "C9-240-T79", "PARCEL_NAM": "215-62", "ACRE": "0.14", "LONGITUDE": -64.89397769, "LATITUDE": 18.34728895, "OBJECTID_1": 20816, "PARCEL_NO_": "105601057300", "Tax_Legal_": "215-62&POR.404 ANNAS RET NEW QTR.", "Name": "HENLEY, DONNA", "Address": "PO Box 7476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 66700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.367343342, "SHAPE_Area": 580.40792107899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362722.027400001883507, 257569.924600001424551 ], [ 362712.468599997460842, 257556.125199999660254 ], [ 362696.292000003159046, 257561.903499998152256 ], [ 362684.159500002861023, 257566.237100001424551 ], [ 362680.916299998760223, 257568.32149999961257 ], [ 362688.04900000244379, 257582.94539999961853 ], [ 362691.286899998784065, 257581.494199998676777 ], [ 362722.027400001883507, 257569.924600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602019600", "MAP": "C9-217-T77", "PARCEL_NAM": "394-407", "ACRE": "0.15", "LONGITUDE": -64.88428831, "LATITUDE": 18.34733684, "OBJECTID_1": 21009, "PARCEL_NO_": "105602019600", "Tax_Legal_": "394-407 ANNAS RETREAT NEW QTR", "Name": "LEWIS, LESTER & SHIRLEY", "Address": "PO Box 771872", "City": "Ocala", "State": "Florida", "Zip": 344771872, "Country": "United States", "Land_Value": 22300, "Improved_V": 245000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.592378674, "SHAPE_Area": 764.40575544499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363728.44200000166893, 257562.118500001728535 ], [ 363726.526000000536442, 257560.23369999974966 ], [ 363723.855200000107288, 257563.163100000470877 ], [ 363720.565099009487312, 257567.008158567303326 ], [ 363717.697024408204015, 257571.177497602737276 ], [ 363715.282700002193451, 257575.625 ], [ 363714.004070373077411, 257578.65147382178111 ], [ 363713.170492025266867, 257581.829458192456514 ], [ 363712.799033246061299, 257585.09388094348833 ], [ 363712.897299997508526, 257588.377900000661612 ], [ 363713.58500000089407, 257602.315699998289347 ], [ 363730.585900001227856, 257603.382599998265505 ], [ 363731.632200002670288, 257588.545499999076128 ], [ 363741.183499999344349, 257574.652899999171495 ], [ 363728.44200000166893, 257562.118500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702011800", "MAP": "D9-5725-T94", "PARCEL_NAM": "1E", "ACRE": ".20", "LONGITUDE": -64.87266324, "LATITUDE": 18.34723961, "OBJECTID_1": 22273, "PARCEL_NO_": "105702011800", "Tax_Legal_": "1E FRYDENDAHL NO. 4 EAST END QUARTER", "Name": "WILLIAMS, CLAYTON N. & CLARICE A.", "Address": "6468 Coki Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.235201606, "SHAPE_Area": 814.27341493300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364973.365099996328354, 257575.05180000141263 ], [ 364974.193000003695488, 257572.525400001555681 ], [ 364929.831399999558926, 257573.851100001484156 ], [ 364928.922600001096725, 257585.875999998301268 ], [ 364971.558300003409386, 257597.835099998861551 ], [ 364973.365099996328354, 257575.05180000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602017400", "MAP": "C9-217-T77", "PARCEL_NAM": "394-398", "ACRE": "0.15", "LONGITUDE": -64.88482921000001, "LATITUDE": 18.3472585, "OBJECTID_1": 20989, "PARCEL_NO_": "105602017400", "Tax_Legal_": "394-398 ANNAS RETREAT NEW QTR", "Name": "ALVIN A WILLIAMS and TADISHA CUFFY", "Address": "PO Box 306538", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036538, "Country": "United States", "Land_Value": 20500, "Improved_V": 152700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.221959922099998, "SHAPE_Area": 518.79240719200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363682.32039999961853, 257580.739399999380112 ], [ 363680.047100000083447, 257563.62220000103116 ], [ 363653.428000003099442, 257564.670899998396635 ], [ 363657.27080000191927, 257586.867199998348951 ], [ 363682.32039999961853, 257580.739399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602090700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8907842, "LATITUDE": 18.34722225, "OBJECTID_1": 21463, "PARCEL_NO_": "105602090700", "Tax_Legal_": "ANNAS RETREAT 215-169 NEW QTR.", "Name": "BERTRAND, EMMY", "Address": "ANNAS RETREAT 215-169", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 118400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.125728213499997, "SHAPE_Area": 525.77108162499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363054.287500001490116, 257565.67790000140667 ], [ 363048.699100002646446, 257559.088199999183416 ], [ 363038.299699999392033, 257549.29280000180006 ], [ 363035.067299999296665, 257550.110700000077486 ], [ 363022.852099999785423, 257564.153999999165535 ], [ 363038.028200000524521, 257581.165699999779463 ], [ 363054.287500001490116, 257565.67790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701021900", "MAP": "A9-318-T85", "PARCEL_NAM": "53-37", "ACRE": ".50", "LONGITUDE": -64.87825331000001, "LATITUDE": 18.34708621, "OBJECTID_1": 21930, "PARCEL_NO_": "105701021900", "Tax_Legal_": "53-37 EST.FRYDENDAHL EASTEND QTR.", "Name": "LAMONTAGNE, LENNARDS & NANCY", "Address": "PO Box 9350", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90600, "Improved_V": 66600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.11915538, "SHAPE_Area": 1341.1496121600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364384.065800003707409, 257556.718699999153614 ], [ 364380.07379999756813, 257552.041900001466274 ], [ 364376.906099997460842, 257545.260999999940395 ], [ 364370.604800000786781, 257527.688700001686811 ], [ 364340.456600002944469, 257564.383299998939037 ], [ 364342.852200001478195, 257567.147100001573563 ], [ 364350.800200000405312, 257580.722199998795986 ], [ 364360.382399998605251, 257591.777499999850988 ], [ 364384.065800003707409, 257556.718699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602081700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88950236, "LATITUDE": 18.34720567, "OBJECTID_1": 21386, "PARCEL_NO_": "105602081700", "Tax_Legal_": "ANNAS RETREAT 215-221 NEW QTR.", "Name": "DONOVAN, ARONA & RUTH", "Address": "PO Box 9331", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 103400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.894226820599997, "SHAPE_Area": 594.53562759600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363191.402000002563, 257561.944899998605251 ], [ 363171.364600002765656, 257547.637699998915195 ], [ 363166.476400002837181, 257553.508299998939037 ], [ 363156.73589999973774, 257561.027899999171495 ], [ 363172.687799997627735, 257581.63459999859333 ], [ 363184.064300000667572, 257571.384100001305342 ], [ 363191.402000002563, 257561.944899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601083800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89146806, "LATITUDE": 18.34721099, "OBJECTID_1": 20913, "PARCEL_NO_": "105601083800", "Tax_Legal_": "ANNAS RETREAT 215-158 NEW QTR.", "Name": "VALDEMAR DENNERY (LIFE ESTATE) & MONA DENNERY", "Address": "PO Box 10322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.585440943600005, "SHAPE_Area": 583.30179554100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362983.330200001597404, 257565.308200001716614 ], [ 362963.341399997472763, 257545.30180000141263 ], [ 362948.683899998664856, 257562.069299999624491 ], [ 362969.500600002706051, 257579.549400001764297 ], [ 362983.330200001597404, 257565.308200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601051100", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-72", "ACRE": "0.141", "LONGITUDE": -64.89305125, "LATITUDE": 18.34723531, "OBJECTID_1": 20756, "PARCEL_NO_": "105601051100", "Tax_Legal_": "ANNAS RET 215-72 & POR 404 NEW QTR.", "Name": "BARNES, GWENDOLYN & JACQUELYN", "Address": "PO Box 306425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 95300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.514301262299995, "SHAPE_Area": 525.09107200100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362812.173500001430511, 257573.708000000566244 ], [ 362811.650399997830391, 257556.303700000047684 ], [ 362811.646200001239777, 257552.993200000375509 ], [ 362809.317900002002716, 257554.051500000059605 ], [ 362807.241700001060963, 257554.669599998742342 ], [ 362804.791299998760223, 257553.861600000411272 ], [ 362802.121200002729893, 257552.569899998605251 ], [ 362782.743299998342991, 257557.936500001698732 ], [ 362783.397100001573563, 257559.87220000103116 ], [ 362784.189000003039837, 257561.567400000989437 ], [ 362786.634199999272823, 257574.288699999451637 ], [ 362812.173500001430511, 257573.708000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701022400", "MAP": "A9-318-T85", "PARCEL_NAM": "53-40", "ACRE": ".5", "LONGITUDE": -64.87869739, "LATITUDE": 18.34715162, "OBJECTID_1": 21935, "PARCEL_NO_": "105701022400", "Tax_Legal_": "53-40EST.FRYDENDAHL EASTEND QTR.", "Name": "ROBINSON, WILLIAM V", "Address": "PO Box 11366", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 109800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.62554858, "SHAPE_Area": 1641.31046135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364292.232500001788139, 257545.834600001573563 ], [ 364293.785800002515316, 257552.813400000333786 ], [ 364294.552500002086163, 257557.463700000196695 ], [ 364297.543999999761581, 257584.930300001055002 ], [ 364325.743400000035763, 257587.694299999624491 ], [ 364349.108400002121925, 257589.996399998664856 ], [ 364342.720899999141693, 257582.555900000035763 ], [ 364341.934399999678135, 257580.227400001138449 ], [ 364340.332500003278255, 257578.947700001299381 ], [ 364335.559399999678135, 257571.309300001710653 ], [ 364333.971900001168251, 257568.340999998152256 ], [ 364333.190800003707409, 257565.379299998283386 ], [ 364330.798799999058247, 257562.193300001323223 ], [ 364324.502999998629093, 257543.987700000405312 ], [ 364292.232500001788139, 257545.834600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601051000", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-126", "ACRE": "0.143", "LONGITUDE": -64.8928052, "LATITUDE": 18.34720739, "OBJECTID_1": 20755, "PARCEL_NO_": "105601051000", "Tax_Legal_": "215-126 ANNAS RETREAT NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.632379401600005, "SHAPE_Area": 573.31452193699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362839.180500000715256, 257570.453299999237061 ], [ 362837.25789999961853, 257556.803199999034405 ], [ 362836.093800000846386, 257550.876499999314547 ], [ 362834.188799999654293, 257548.971500001847744 ], [ 362824.452100001275539, 257549.183200001716614 ], [ 362814.927100002765656, 257551.299899999052286 ], [ 362811.646200001239777, 257552.993200000375509 ], [ 362811.650399997830391, 257556.303700000047684 ], [ 362812.173500001430511, 257573.708000000566244 ], [ 362839.180500000715256, 257570.453299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601080900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8922086, "LATITUDE": 18.34658954, "OBJECTID_1": 20886, "PARCEL_NO_": "105601080900", "Tax_Legal_": "215-319 ANNAS RETREAT NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 227600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 418.80613033999998, "SHAPE_Area": 8041.2046691699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362958.527999997138977, 257447.737199999392033 ], [ 362960.474600002169609, 257444.487900000065565 ], [ 362956.58389999717474, 257444.975000001490116 ], [ 362953.841278281761333, 257444.593895445170347 ], [ 362951.191349564003758, 257443.790719033859205 ], [ 362948.698653421946801, 257442.585032300004968 ], [ 362946.423900000751019, 257441.00620000064373 ], [ 362943.029282103932928, 257436.046672197640873 ], [ 362940.007589023560286, 257430.851509291416733 ], [ 362937.375100001692772, 257425.448699999600649 ], [ 362937.150672885822132, 257424.975246360030724 ], [ 362936.854575147037394, 257424.54298254213063 ], [ 362936.49417701450875, 257424.162668112723622 ], [ 362936.078449231514242, 257423.843769555736799 ], [ 362935.617739763110876, 257423.594224640139146 ], [ 362935.123516222578473, 257423.42024483930436 ], [ 362934.608080428675748, 257423.326160719880136 ], [ 362934.084262198826764, 257423.314314148854464 ], [ 362933.565099999308586, 257423.385000001639128 ], [ 362922.770099997520447, 257428.941199999302626 ], [ 362909.840843395853881, 257438.078672658506548 ], [ 362897.369999997317791, 257447.832499999552965 ], [ 362873.40030634473078, 257466.952882758982014 ], [ 362848.951200000941753, 257485.456300001591444 ], [ 362834.822400003671646, 257498.632599998265505 ], [ 362834.097687062225305, 257502.03950549630099 ], [ 362833.763918927230407, 257505.506609872041736 ], [ 362833.825400002300739, 257508.989199999719858 ], [ 362836.087899997830391, 257527.372800000011921 ], [ 362843.07320000231266, 257559.305100001394749 ], [ 362845.337499998509884, 257577.477699998766184 ], [ 362863.238200001418591, 257558.625799998641014 ], [ 362877.069600000977516, 257544.173500001430511 ], [ 362882.746100001037121, 257540.420299999415874 ], [ 362895.767599999904633, 257526.383600000292063 ], [ 362910.414300002157688, 257510.882599998265505 ], [ 362922.652900002896786, 257494.095199998468161 ], [ 362934.885999999940395, 257477.941199999302626 ], [ 362951.983999997377396, 257458.660500001162291 ], [ 362958.527999997138977, 257447.737199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602031600", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-341", "ACRE": ".155", "LONGITUDE": -64.88874414, "LATITUDE": 18.34720393, "OBJECTID_1": 21115, "PARCEL_NO_": "105602031600", "Tax_Legal_": "394-341 ANNAS RETREAT NEW QTR", "Name": "IRVINE CLARITA HENDRICKSON REVOCABLE TRUST", "Address": "394-341 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 339400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.357948085, "SHAPE_Area": 645.42762624199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363272.825199998915195, 257564.30009999871254 ], [ 363249.589500002563, 257546.800200000405312 ], [ 363235.709600001573563, 257566.95160000026226 ], [ 363258.167700000107288, 257581.067600000649691 ], [ 363261.427100002765656, 257577.083500001579523 ], [ 363272.825199998915195, 257564.30009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701011400", "MAP": "D9-834-T69", "PARCEL_NAM": "5-2", "ACRE": ".38", "LONGITUDE": -64.87911082, "LATITUDE": 18.34720135, "OBJECTID_1": 21850, "PARCEL_NO_": "105701011400", "Tax_Legal_": "5-2 TABOR&HARMONY EAST END QTR", "Name": "SEIBERT, STEVEN M. & BROOKS L.", "Address": "6698 Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47300, "Improved_V": 456400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.56510177000001, "SHAPE_Area": 1367.78419095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364293.785800002515316, 257552.813400000333786 ], [ 364233.960400000214577, 257570.899999998509884 ], [ 364254.818400003015995, 257583.525199998170137 ], [ 364251.548199996352196, 257588.775800000876188 ], [ 364297.543999999761581, 257584.930300001055002 ], [ 364294.552500002086163, 257557.463700000196695 ], [ 364293.785800002515316, 257552.813400000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602093800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89112482, "LATITUDE": 18.34718316, "OBJECTID_1": 21494, "PARCEL_NO_": "105602093800", "Tax_Legal_": "215-166 ANNAS RETREAT NEW QUARTER", "Name": "CULPEPPER, KATRINA", "Address": "PO Box 304074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20800, "Improved_V": 130500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.803389893, "SHAPE_Area": 615.46890814300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363017.25110000371933, 257559.041900001466274 ], [ 362998.039800003170967, 257542.419399999082088 ], [ 362985.012999996542931, 257557.089299999177456 ], [ 363004.992799997329712, 257578.151099998503923 ], [ 363020.454700000584126, 257561.601300001144409 ], [ 363017.25110000371933, 257559.041900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601027600", "MAP": "C9-240-T79", "PARCEL_NAM": "404-59", "ACRE": "0.14", "LONGITUDE": -64.89430328, "LATITUDE": 18.34721683, "OBJECTID_1": 20605, "PARCEL_NO_": "105601027600", "Tax_Legal_": "404-59&POR 215 ANNAS RET NEW QTR", "Name": "LEWIS FAMILY TRUST", "Address": "404-59 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 112400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.210682541699995, "SHAPE_Area": 511.21890049299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362674.589900001883507, 257553.704300001263618 ], [ 362670.630199998617172, 257545.228100001811981 ], [ 362652.007700003683567, 257554.152699999511242 ], [ 362657.553000003099442, 257565.808299999684095 ], [ 362659.11710000038147, 257571.520599998533726 ], [ 362659.881999999284744, 257576.381999999284744 ], [ 362680.916299998760223, 257568.32149999961257 ], [ 362674.589900001883507, 257553.704300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601056700", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-65", "ACRE": "0.146", "LONGITUDE": -64.89359123, "LATITUDE": 18.34718773, "OBJECTID_1": 20811, "PARCEL_NO_": "105601056700", "Tax_Legal_": "215-65&POR 404 ANNAS RET NEW QTR.", "Name": "NAOMI SCHLESINGER", "Address": "11748 JELICOE DRIVE", "City": "Houston", "State": "Texas", "Zip": 770473520, "Country": "United States", "Land_Value": 19200, "Improved_V": 131500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.097383273899993, "SHAPE_Area": 562.90643408599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362758.321000002324581, 257552.077500000596046 ], [ 362753.305600002408028, 257549.623700000345707 ], [ 362747.842600002884865, 257547.425200000405312 ], [ 362743.397600002586842, 257550.49439999833703 ], [ 362741.77250000089407, 257548.721500001847744 ], [ 362740.645999997854233, 257547.213500000536442 ], [ 362737.788400001823902, 257545.520199999213219 ], [ 362732.920100003480911, 257548.695199999958277 ], [ 362728.05179999768734, 257553.1402000002563 ], [ 362725.403300002217293, 257557.245400000363588 ], [ 362728.157600000500679, 257562.665199998766184 ], [ 362733.131800003349781, 257569.861900001764297 ], [ 362733.735399998724461, 257572.377300001680851 ], [ 362755.577799998223782, 257564.445999998599291 ], [ 362757.913199998438358, 257553.504399999976158 ], [ 362758.321000002324581, 257552.077500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602090800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89037347, "LATITUDE": 18.34720308, "OBJECTID_1": 21464, "PARCEL_NO_": "105602090800", "Tax_Legal_": "215-295 ANNAS RETREAT NEW QTR.", "Name": "MILLINER, JANET", "Address": "PO Box 8801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21800, "Improved_V": 151800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.800101037499999, "SHAPE_Area": 515.04512842899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363086.703599996864796, 257546.73369999974966 ], [ 363064.769599996507168, 257565.763700000941753 ], [ 363074.360799998044968, 257575.7635000012815 ], [ 363079.187899999320507, 257577.069600000977516 ], [ 363083.235600002110004, 257575.202899999916553 ], [ 363097.882299996912479, 257559.701900001615286 ], [ 363086.703599996864796, 257546.73369999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602036700", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-331", "ACRE": ".155", "LONGITUDE": -64.88832786, "LATITUDE": 18.34716569, "OBJECTID_1": 21162, "PARCEL_NO_": "105602036700", "Tax_Legal_": "394-331 ANNAS RETREAT NEW QTR", "Name": "ROBINSON, CALVIN & ELFRIDA", "Address": "PO Box 11841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18800, "Improved_V": 308600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.7290714202, "SHAPE_Area": 506.36735356700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363313.106600001454353, 257568.640500001609325 ], [ 363294.788000002503395, 257541.892799999564886 ], [ 363283.407899998128414, 257552.565499998629093 ], [ 363300.117499999701977, 257578.87779999896884 ], [ 363313.106600001454353, 257568.640500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011600", "MAP": "B9-178-T67", "PARCEL_NAM": "203", "ACRE": null, "LONGITUDE": -64.89484365, "LATITUDE": 18.34711197, "OBJECTID_1": 20453, "PARCEL_NO_": "105601011600", "Tax_Legal_": "203 ANNAS RETREAT No.1 NEW QTR", "Name": "KRIGGER, ASHTON & CORISE", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38900, "Improved_V": 133500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.64170743099999, "SHAPE_Area": 1051.62732323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362627.913599997758865, 257542.767599999904633 ], [ 362623.907300002872944, 257539.779500000178814 ], [ 362622.321599997580051, 257536.600099999457598 ], [ 362620.718000002205372, 257535.531500000506639 ], [ 362619.935000002384186, 257532.780900001525879 ], [ 362615.941200003027916, 257528.315200001001358 ], [ 362613.53490000218153, 257526.817899998277426 ], [ 362604.678000003099442, 257525.267700001597404 ], [ 362589.869499996304512, 257559.765900000929832 ], [ 362614.755500003695488, 257572.8462999984622 ], [ 362627.913599997758865, 257542.767599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602011800", "MAP": "C9-217-T77", "PARCEL_NAM": "394-405", "ACRE": "0.16", "LONGITUDE": -64.88455516000001, "LATITUDE": 18.34719544, "OBJECTID_1": 20933, "PARCEL_NO_": "105602011800", "Tax_Legal_": "394-405 ANNAS RETREAT NEW QTR", "Name": "BASS, JERMAINE J.E.", "Address": "PO Box 8672", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 88600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.14079823500001, "SHAPE_Area": 845.83393030599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363683.37389999628067, 257551.336199998855591 ], [ 363682.864200003445148, 257551.259799998253584 ], [ 363680.047100000083447, 257563.62220000103116 ], [ 363682.32039999961853, 257580.739399999380112 ], [ 363707.308899998664856, 257581.78830000013113 ], [ 363712.243900001049042, 257570.42960000038147 ], [ 363715.512299999594688, 257565.390099998563528 ], [ 363720.395099997520447, 257560.152800001204014 ], [ 363683.3766999989748, 257551.405999999493361 ], [ 363683.390399999916553, 257551.350600000470877 ], [ 363683.37389999628067, 257551.336199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702017200", "MAP": "D9-4232-T88", "PARCEL_NAM": "52-4B", "ACRE": ".26", "LONGITUDE": -64.87344215, "LATITUDE": 18.34716031, "OBJECTID_1": 22322, "PARCEL_NO_": "105702017200", "Tax_Legal_": "FRYDENDAHL 52-4B EAST END QTR.", "Name": "MONSANTO, ALESSIO O. & IVY A", "Address": "PO Box 1673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36600, "Improved_V": 51600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.42832223299999, "SHAPE_Area": 1160.1325284699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364889.368400000035763, 257590.829599998891354 ], [ 364886.290600001811981, 257573.494800001382828 ], [ 364886.358900003135204, 257565.473799999803305 ], [ 364891.261500000953674, 257557.914500001817942 ], [ 364891.290299996733665, 257554.537300001829863 ], [ 364850.931500002741814, 257559.273200001567602 ], [ 364857.110500000417233, 257591.198899999260902 ], [ 364889.368400000035763, 257590.829599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601080600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89226634000001, "LATITUDE": 18.34718664, "OBJECTID_1": 20883, "PARCEL_NO_": "105601080600", "Tax_Legal_": "215-143 ANNAS RETREAT NEW QTR.", "Name": "CHRISTOPHER, IVIN T. & HODGE, S. B", "Address": "404-23 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 12800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.185353642500004, "SHAPE_Area": 536.92004534600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362899.506099998950958, 257560.822500001639128 ], [ 362877.069600000977516, 257544.173500001430511 ], [ 362863.238200001418591, 257558.625799998641014 ], [ 362888.10080000013113, 257574.450199998915195 ], [ 362899.506099998950958, 257560.822500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87384333, "LATITUDE": 18.34709872, "OBJECTID_1": 22320, "PARCEL_NO_": "105702017000", "Tax_Legal_": "FRYDENDAHL 52-5A EAST END QTR.", "Name": "ELOI, DAMAS & ROSEMOND", "Address": "PO Box 9226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 104500, "Improved_V": 184100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.01987382199999, "SHAPE_Area": 1823.7715940800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364807.936200000345707, 257589.529899999499321 ], [ 364853.107699997723103, 257587.788600001484156 ], [ 364847.711599998176098, 257558.613499999046326 ], [ 364843.017599999904633, 257541.687600001692772 ], [ 364840.611299999058247, 257540.19029999896884 ], [ 364799.419200003147125, 257548.085799999535084 ], [ 364800.211099997162819, 257549.780999999493361 ], [ 364807.428400002419949, 257554.484200000762939 ], [ 364809.818599998950958, 257557.88120000064373 ], [ 364811.301700003445148, 257573.092099998146296 ], [ 364809.582999996840954, 257585.532600000500679 ], [ 364807.936200000345707, 257589.529899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87424436000001, "LATITUDE": 18.34712735, "OBJECTID_1": 22319, "PARCEL_NO_": "105702016900", "Tax_Legal_": "FRYDENDAHL 52-6 EAST END QTR.", "Name": "BRAMBLE, VERNON", "Address": "PO Box 392", "City": "Newtown", "State": "Pennsylvania", "Zip": 18940, "Country": "United States", "Land_Value": 34000, "Improved_V": 167200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.072620978, "SHAPE_Area": 1139.20012157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364771.963200002908707, 257552.7162000015378 ], [ 364763.691500000655651, 257577.135400000959635 ], [ 364801.487499997019768, 257589.265999998897314 ], [ 364804.811700001358986, 257577.68299999833107 ], [ 364805.704300001263618, 257567.557900000363588 ], [ 364804.143799997866154, 257561.42339999973774 ], [ 364803.351899996399879, 257559.728100001811981 ], [ 364801.757200002670288, 257557.604200001806021 ], [ 364792.931000001728535, 257552.465700000524521 ], [ 364782.463299997150898, 257550.691199999302626 ], [ 364771.963200002908707, 257552.7162000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87305692, "LATITUDE": 18.34712466, "OBJECTID_1": 22301, "PARCEL_NO_": "105702014900", "Tax_Legal_": "FRYDENDAHL 11AC EAST END QTR.", "Name": "GERARD, DELROY A", "Address": "PO Box 9254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34000, "Improved_V": 116900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.35862435000001, "SHAPE_Area": 1314.7664051500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364929.831399999558926, 257573.851100001484156 ], [ 364930.808600001037121, 257553.80519999936223 ], [ 364930.043600000441074, 257548.943799998611212 ], [ 364897.751599997282028, 257553.323600001633167 ], [ 364895.246299996972084, 257563.435600001364946 ], [ 364893.624700002372265, 257564.477800000458956 ], [ 364891.985100001096725, 257567.630699999630451 ], [ 364891.945500001311302, 257572.274500001221895 ], [ 364895.01969999819994, 257590.031500000506639 ], [ 364928.922600001096725, 257585.875999998301268 ], [ 364929.831399999558926, 257573.851100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602023000", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-170", "ACRE": ".137", "LONGITUDE": -64.88762275000001, "LATITUDE": 18.34714577, "OBJECTID_1": 21065, "PARCEL_NO_": "105602023000", "Tax_Legal_": "394-170 ANNAS RETREAT NEW QTR", "Name": "MULLIX, EDMUND S & KELMA & MARY M REGISTE", "Address": "PO BOX 502013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17600, "Improved_V": 158500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.703677834100006, "SHAPE_Area": 550.79040234499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363388.472499996423721, 257564.939500000327826 ], [ 363374.611100003123283, 257542.757199998944998 ], [ 363356.791299998760223, 257552.110599998384714 ], [ 363370.324500001966953, 257575.792199999094009 ], [ 363388.472499996423721, 257564.939500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601057400", "MAP": "C9-240-T79", "PARCEL_NAM": "404-61", "ACRE": "0.16", "LONGITUDE": -64.89405105, "LATITUDE": 18.34715542, "OBJECTID_1": 20817, "PARCEL_NO_": "105601057400", "Tax_Legal_": "ANNAS RETREAT 404-61 & POR 215 NEW QTR.", "Name": "DAVID, GUENEVERE", "Address": "PO Box 7563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23100, "Improved_V": 65400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.5081749597, "SHAPE_Area": 541.855238859 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362712.468599997460842, 257556.125199999660254 ], [ 362702.925899997353554, 257540.426199998706579 ], [ 362674.589900001883507, 257553.704300001263618 ], [ 362680.916299998760223, 257568.32149999961257 ], [ 362684.159500002861023, 257566.237100001424551 ], [ 362696.292000003159046, 257561.903499998152256 ], [ 362712.468599997460842, 257556.125199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602031700", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-352", "ACRE": ".161", "LONGITUDE": -64.88911904, "LATITUDE": 18.34712338, "OBJECTID_1": 21116, "PARCEL_NO_": "105602031700", "Tax_Legal_": "ANNAS RETREAT 394-352 NEW QTR", "Name": "BROOKS, CLARENCE & PAULA", "Address": "PO Box 6335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21200, "Improved_V": 298000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.082301302, "SHAPE_Area": 625.59763911100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363232.588699996471405, 257554.682700000703335 ], [ 363207.73139999806881, 257538.225000001490116 ], [ 363202.830600000917912, 257545.57319999858737 ], [ 363196.29559999704361, 257555.441100001335144 ], [ 363220.344700001180172, 257572.103199999779463 ], [ 363222.785199999809265, 257569.59010000154376 ], [ 363232.588699996471405, 257554.682700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602081600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8898752, "LATITUDE": 18.34710477, "OBJECTID_1": 21385, "PARCEL_NO_": "105602081600", "Tax_Legal_": "ANNAS RETREAT 215-219 NEW QTR.", "Name": "WAY, SHIRLEY R. KRIGGER", "Address": "P O BOX 3891", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21600, "Improved_V": 332000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.366014157199999, "SHAPE_Area": 620.40730683799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363137.301700003445148, 257570.579199999570847 ], [ 363150.310599997639656, 257558.019999999552965 ], [ 363150.343000002205372, 257554.220600001513958 ], [ 363133.566899999976158, 257535.718199998140335 ], [ 363131.957800000905991, 257535.282800000160933 ], [ 363129.533500000834465, 257535.896200001239777 ], [ 363117.318300001323223, 257549.939500000327826 ], [ 363137.301700003445148, 257570.579199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87167727000001, "LATITUDE": 18.34699131, "OBJECTID_1": 22313, "PARCEL_NO_": "105702016300", "Tax_Legal_": "FRYDENDAHL 11B-3 EAST END QTR.", "Name": "SIMMONDS, ROY V", "Address": "PO Box 911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.347790049, "SHAPE_Area": 1553.90954476 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365043.821800000965595, 257539.531399998813868 ], [ 365042.893200002610683, 257553.878199998289347 ], [ 365039.547499999403954, 257567.994100000709295 ], [ 365042.760099999606609, 257569.497999999672174 ], [ 365042.724200002849102, 257573.7195999994874 ], [ 365066.010099999606609, 257585.309300001710653 ], [ 365072.539800003170967, 257576.074599999934435 ], [ 365078.218099996447563, 257572.110300000756979 ], [ 365084.686599999666214, 257570.052299998700619 ], [ 365066.368000000715256, 257543.30460000038147 ], [ 365045.655599996447563, 257513.581900000572205 ], [ 365043.821800000965595, 257539.531399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90496535, "LATITUDE": 18.34704693, "OBJECTID_1": 19899, "PARCEL_NO_": "105502031900", "Tax_Legal_": "WINTBERG ESTATE 1-2 GREAT NORTHSIDE QTR", "Name": "THOMAS, GLADSTON & VELMA", "Address": "P.O. BOX 3726", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54800, "Improved_V": 323700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.45921996000001, "SHAPE_Area": 1881.6390002600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361564.536700002849102, 257516.543600000441074 ], [ 361541.187799997627735, 257512.341699998825788 ], [ 361520.277699999511242, 257505.837799999862909 ], [ 361515.886500000953674, 257548.020500000566244 ], [ 361527.138899996876717, 257552.334499999880791 ], [ 361536.794900000095367, 257554.735599998384714 ], [ 361547.266099996864796, 257556.087799999862909 ], [ 361559.36259999871254, 257555.975699998438358 ], [ 361564.536700002849102, 257516.543600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90446188, "LATITUDE": 18.34703953, "OBJECTID_1": 19900, "PARCEL_NO_": "105502032000", "Tax_Legal_": "WINTBERG 1-1 GREAT NORTHSIDE QTR", "Name": "LARRY J PRESTON REVOCABLE TRUST OF 2016", "Address": "141 Main St", "City": "PEMBROKE", "State": "New Hampshire", "Zip": 3275, "Country": "United States", "Land_Value": 53900, "Improved_V": 497300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.47507352700001, "SHAPE_Area": 1955.2588533400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361559.36259999871254, 257555.975699998438358 ], [ 361569.857299998402596, 257554.583999998867512 ], [ 361581.978900000452995, 257551.516800001263618 ], [ 361607.057300001382828, 257542.011700000613928 ], [ 361626.500500001013279, 257531.405099999159575 ], [ 361641.102300003170967, 257521.181000001728535 ], [ 361642.734700001776218, 257518.872299998998642 ], [ 361643.569799996912479, 257515.5016999989748 ], [ 361641.962499998509884, 257514.855200000107288 ], [ 361622.585799999535084, 257517.651999998837709 ], [ 361602.415399998426437, 257518.964499998837709 ], [ 361579.035999998450279, 257518.350999999791384 ], [ 361564.536700002849102, 257516.543600000441074 ], [ 361559.36259999871254, 257555.975699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601081700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89178027, "LATITUDE": 18.34709363, "OBJECTID_1": 20894, "PARCEL_NO_": "105601081700", "Tax_Legal_": "ANNAS RETREAT 215-148 NEW QTR.", "Name": "CORBETT, MARGARET & OTHERS", "Address": "215-148 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.315752356900006, "SHAPE_Area": 575.72970642999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362949.592799998819828, 257550.044399999082088 ], [ 362931.200400002300739, 257531.950899999588728 ], [ 362916.533900000154972, 257549.773899998515844 ], [ 362935.741599999368191, 257566.818599998950958 ], [ 362949.592799998819828, 257550.044399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701021600", "MAP": "A9-318-T85", "PARCEL_NAM": "53-32", "ACRE": ".79", "LONGITUDE": -64.87737379, "LATITUDE": 18.34710604, "OBJECTID_1": 21927, "PARCEL_NO_": "105701021600", "Tax_Legal_": "ESTATE FRYDENDAHL 53-32 EASTEND QUARTER", "Name": "CARTY, FRANKLIN & AUCKLYN", "Address": "PO Box 9648", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 106000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.884227995, "SHAPE_Area": 2314.3352733299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364494.521600000560284, 257558.678199999034405 ], [ 364474.495099999010563, 257543.104400001466274 ], [ 364400.964199997484684, 257560.867800001055002 ], [ 364415.355499997735023, 257575.339899998158216 ], [ 364499.183300003409386, 257579.403499998152256 ], [ 364500.308300003409386, 257579.282499998807907 ], [ 364494.521600000560284, 257558.678199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602036800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88819208, "LATITUDE": 18.34705494, "OBJECTID_1": 21163, "PARCEL_NO_": "105602036800", "Tax_Legal_": "ANNAS RETREAT 394-332 NEW QTR", "Name": "BLAKE, JR , VICTOR & ALOMA", "Address": "PO Box 7402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 52200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.008359204, "SHAPE_Area": 708.06266355299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363330.953400000929832, 257556.120999999344349 ], [ 363311.032899998128414, 257528.093600001186132 ], [ 363299.661799997091293, 257537.710799999535084 ], [ 363294.788000002503395, 257541.892799999564886 ], [ 363313.106600001454353, 257568.640500001609325 ], [ 363321.229099996387959, 257561.740899998694658 ], [ 363330.953400000929832, 257556.120999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602090900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89049831, "LATITUDE": 18.34707386, "OBJECTID_1": 21465, "PARCEL_NO_": "105602090900", "Tax_Legal_": "215-296 ANNAS RETREAT NEW QTR.", "Name": "BANK OF NOVA SCOTIA", "Address": "9009 Estate Cottage", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 20800, "Improved_V": 112700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.740268246, "SHAPE_Area": 614.10898140899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363078.717799998819828, 257537.591299999505281 ], [ 363073.129399999976158, 257531.001600001007318 ], [ 363050.383599996566772, 257550.658300001174212 ], [ 363064.769599996507168, 257565.763700000941753 ], [ 363086.703599996864796, 257546.73369999974966 ], [ 363078.717799998819828, 257537.591299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601056600", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-68", "ACRE": "0.149", "LONGITUDE": -64.89334932, "LATITUDE": 18.34707746, "OBJECTID_1": 20810, "PARCEL_NO_": "105601056600", "Tax_Legal_": "ANNAS RET 215-68 & POR. 404 NEW QTR.", "Name": "DE COSTA, RICHARD & DENISE", "Address": "PO Box 11466", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 140200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.92395683399999, "SHAPE_Area": 536.872235316 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362770.230999998748302, 257557.904599998146296 ], [ 362783.397100001573563, 257559.87220000103116 ], [ 362777.104800000786781, 257541.24439999833703 ], [ 362772.177500002086163, 257531.07880000025034 ], [ 362754.731600001454353, 257539.836500000208616 ], [ 362753.028499998152256, 257541.392700001597404 ], [ 362753.976899996399879, 257542.653400000184774 ], [ 362750.469499997794628, 257544.192800000309944 ], [ 362746.903499998152256, 257546.049699999392033 ], [ 362747.842600002884865, 257547.425200000405312 ], [ 362753.305600002408028, 257549.623700000345707 ], [ 362770.230999998748302, 257557.904599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87232379, "LATITUDE": 18.34704448, "OBJECTID_1": 22286, "PARCEL_NO_": "105702013100", "Tax_Legal_": "FRYDENDAHL 11-5-11 EAST END QTR", "Name": "WHITE, EDWIN R", "Address": "PO BOX 4524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 303900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.932886467, "SHAPE_Area": 920.56658703100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364979.266500003635883, 257544.913699999451637 ], [ 364974.193000003695488, 257572.525400001555681 ], [ 364973.365099996328354, 257575.05180000141263 ], [ 365002.34740000218153, 257580.566300000995398 ], [ 365005.783100001513958, 257555.896499998867512 ], [ 364980.954599998891354, 257536.061599999666214 ], [ 364979.266500003635883, 257544.913699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.907588, "LATITUDE": 18.34696942, "OBJECTID_1": 19895, "PARCEL_NO_": "105502031500", "Tax_Legal_": "WINTBEREG ESTATE 1-6 GREAT NORTHSIDE QTR", "Name": "ZAHARKO, JR., PETER", "Address": "4634 Cocoplum Way", "City": "Delray Beach", "State": "Florida", "Zip": 33445, "Country": "United States", "Land_Value": 98800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.43232024599999, "SHAPE_Area": 2770.4228404 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361258.689000003039837, 257544.015700001269579 ], [ 361277.257500000298023, 257541.42339999973774 ], [ 361290.156700000166893, 257541.740100000053644 ], [ 361292.035099998116493, 257542.011500000953674 ], [ 361296.369099996984005, 257499.557100001722574 ], [ 361273.578400000929832, 257500.019000001251698 ], [ 361259.883699998259544, 257498.429200001060963 ], [ 361245.398800000548363, 257494.933200001716614 ], [ 361239.502999998629093, 257492.663199998438358 ], [ 361234.751500003039837, 257521.855599999427795 ], [ 361229.695799998939037, 257552.916999999433756 ], [ 361238.482600003480911, 257549.549800001084805 ], [ 361258.689000003039837, 257544.015700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602013100", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-204", "ACRE": ".185", "LONGITUDE": -64.88522668, "LATITUDE": 18.34709822, "OBJECTID_1": 20946, "PARCEL_NO_": "105602013100", "Tax_Legal_": "394-204 ANNAS RETREAT NEW QTR", "Name": "AVRIL BOWRY HART, BURNELL & THEOPHILUS BOWRY", "Address": "394-204 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 92400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.519085895, "SHAPE_Area": 810.27133274699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363643.100599996745586, 257546.432399999350309 ], [ 363610.885899998247623, 257541.735700000077486 ], [ 363609.174300000071526, 257553.331900000572205 ], [ 363609.120399996638298, 257559.664200000464916 ], [ 363608.236800000071526, 257568.734000001102686 ], [ 363645.354099996387959, 257565.871399998664856 ], [ 363643.100599996745586, 257546.432399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601051200", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-70", "ACRE": "0.141", "LONGITUDE": -64.89310791, "LATITUDE": 18.34703801, "OBJECTID_1": 20757, "PARCEL_NO_": "105601051200", "Tax_Legal_": "215-70&POR 404 ANNAS RET NEW QTR.", "Name": "MAYNARD, JEAN & GUMBS, S", "Address": "PO Box 8927", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 81300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.60808194099999, "SHAPE_Area": 653.45336939399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362802.121200002729893, 257552.569899998605251 ], [ 362801.062899999320507, 257548.442299999296665 ], [ 362805.190399996936321, 257546.749000001698732 ], [ 362809.153099998831749, 257546.749000001698732 ], [ 362804.641699999570847, 257527.11540000140667 ], [ 362803.604900002479553, 257525.721000000834465 ], [ 362802.093800000846386, 257526.378100000321865 ], [ 362775.503700003027916, 257537.941199999302626 ], [ 362777.104800000786781, 257541.24439999833703 ], [ 362782.743299998342991, 257557.936500001698732 ], [ 362802.121200002729893, 257552.569899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011700", "MAP": "B9-178-T67", "PARCEL_NAM": "204", "ACRE": null, "LONGITUDE": -64.89509209000001, "LATITUDE": 18.34701209, "OBJECTID_1": 20454, "PARCEL_NO_": "105601011700", "Tax_Legal_": "204 ANNAS RETREAT No.1 NEW QTR", "Name": "NADIA MONROSE MILLS and JAHMED A MILLS", "Address": "PO Box 6553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41800, "Improved_V": 125200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.21067072299999, "SHAPE_Area": 1019.37285608 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362604.678000003099442, 257525.267700001597404 ], [ 362595.8175999969244, 257524.139800000935793 ], [ 362576.514600001275539, 257518.282200001180172 ], [ 362560.984300002455711, 257542.853100001811981 ], [ 362575.42059999704361, 257552.048300001770258 ], [ 362589.869499996304512, 257559.765900000929832 ], [ 362604.678000003099442, 257525.267700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602023100", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-171", "ACRE": ".137", "LONGITUDE": -64.88745265, "LATITUDE": 18.34704806, "OBJECTID_1": 21066, "PARCEL_NO_": "105602023100", "Tax_Legal_": "394-171 ANNAS RETREAT NEW QTR C", "Name": "RITA RONA VANTERPOOL GREENE REVOC FAMILY TRUST", "Address": "1803 Appleton Dr", "City": "Missouri City", "State": "Texas", "Zip": 77489, "Country": "United States", "Land_Value": 17600, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.942154622000004, "SHAPE_Area": 556.55746641899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363406.770099997520447, 257553.997299998998642 ], [ 363392.445299997925758, 257531.715199999511242 ], [ 363374.611100003123283, 257542.757199998944998 ], [ 363388.472499996423721, 257564.939500000327826 ], [ 363406.770099997520447, 257553.997299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601080700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89212991, "LATITUDE": 18.3470463, "OBJECTID_1": 20884, "PARCEL_NO_": "105601080700", "Tax_Legal_": "215-142 ANNAS RETREAT NEW QTR.", "Name": "JANET LIVERPOOL REVOC LIVING TRUST", "Address": "6406 Tidewave St", "City": "Orlando", "State": "Florida", "Zip": 32822, "Country": "United States", "Land_Value": 20800, "Improved_V": 96200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.545162096, "SHAPE_Area": 608.831839747 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362913.35360000282526, 257544.470499999821186 ], [ 362895.767599999904633, 257526.383600000292063 ], [ 362882.746100001037121, 257540.420299999415874 ], [ 362877.069600000977516, 257544.173500001430511 ], [ 362899.506099998950958, 257560.822500001639128 ], [ 362913.35360000282526, 257544.470499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701011500", "MAP": "D9-834-T69", "PARCEL_NAM": "5-1", "ACRE": ".30", "LONGITUDE": -64.87918003, "LATITUDE": 18.34698425, "OBJECTID_1": 21851, "PARCEL_NO_": "105701011500", "Tax_Legal_": "5-1 TABOR & HARMONY EAST END QUARTER", "Name": "NANCY E WATTS LIVING REVOCABLE TRUST", "Address": "PO BOX 502363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27300, "Improved_V": 347700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.67315221800001, "SHAPE_Area": 1393.7469699400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364292.232500001788139, 257545.834600001573563 ], [ 364287.511500000953674, 257532.074799999594688 ], [ 364265.015699997544289, 257522.391499999910593 ], [ 364258.534599997103214, 257525.927099999040365 ], [ 364269.781599998474121, 257530.874299999326468 ], [ 364237.298900000751019, 257557.628400001674891 ], [ 364226.741400003433228, 257566.407900001853704 ], [ 364233.960400000214577, 257570.899999998509884 ], [ 364293.785800002515316, 257552.813400000333786 ], [ 364292.232500001788139, 257545.834600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602081900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88937516, "LATITUDE": 18.34704789, "OBJECTID_1": 21388, "PARCEL_NO_": "105602081900", "Tax_Legal_": "215-222 ANNAS RETREAT NEW QTR.", "Name": "HODGE, JACQUELINE E", "Address": "RETIREMENT, G.E.R.S. COMPLEX", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.640481932100002, "SHAPE_Area": 492.49585422000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363202.830600000917912, 257545.57319999858737 ], [ 363183.603200003504753, 257530.850299999117851 ], [ 363178.696999996900558, 257538.831700000911951 ], [ 363171.364600002765656, 257547.637699998915195 ], [ 363191.402000002563, 257561.944899998605251 ], [ 363196.29559999704361, 257555.441100001335144 ], [ 363202.830600000917912, 257545.57319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90549359000001, "LATITUDE": 18.34689902, "OBJECTID_1": 19898, "PARCEL_NO_": "105502031800", "Tax_Legal_": "1-3 WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "DAAS, ABDELQADER & NAJAH F. YUSUF", "Address": "PO Box 502454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 90900, "Improved_V": 5700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.16682795599999, "SHAPE_Area": 3015.1397838600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361452.67509999871254, 257490.296799998730421 ], [ 361449.057800002396107, 257536.285599999129772 ], [ 361465.202100001275539, 257534.306800000369549 ], [ 361484.541000001132488, 257535.942699998617172 ], [ 361498.215899996459484, 257539.854400001466274 ], [ 361515.886500000953674, 257548.020500000566244 ], [ 361520.277699999511242, 257505.837799999862909 ], [ 361505.807199999690056, 257500.653099998831749 ], [ 361488.944799996912479, 257492.282400000840425 ], [ 361480.100500002503395, 257489.254700001329184 ], [ 361465.597699999809265, 257487.869500000029802 ], [ 361452.67509999871254, 257490.296799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602012400", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-209", "ACRE": ".131", "LONGITUDE": -64.8848369, "LATITUDE": 18.34707418, "OBJECTID_1": 20939, "PARCEL_NO_": "105602012400", "Tax_Legal_": "394-209ANNAS RETREAT NEW QTR", "Name": "HOBSON, MAYFIELDS", "Address": "PO Box 10523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 113900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.391389018, "SHAPE_Area": 606.83826785500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363684.386900000274181, 257544.577500000596046 ], [ 363652.000299997627735, 257542.950800001621246 ], [ 363651.946699999272823, 257549.249000001698732 ], [ 363653.428000003099442, 257564.670899998396635 ], [ 363680.047100000083447, 257563.62220000103116 ], [ 363683.593699999153614, 257548.058600001037121 ], [ 363684.386900000274181, 257544.577500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602093700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89100324, "LATITUDE": 18.34702098, "OBJECTID_1": 21493, "PARCEL_NO_": "105602093700", "Tax_Legal_": "215-167 ANNAS RETREAT NEW QTR.", "Name": "VERNICE PATRICIA HANLEY REVOC LIVING TRUST", "Address": "PO Box 9248", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23800, "Improved_V": 226900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.008264691500003, "SHAPE_Area": 586.36535817900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363032.714900001883507, 257542.280999999493361 ], [ 363013.507200002670288, 257525.236299999058247 ], [ 362998.039800003170967, 257542.419399999082088 ], [ 363017.25110000371933, 257559.041900001466274 ], [ 363032.714900001883507, 257542.280999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90698483, "LATITUDE": 18.34696231, "OBJECTID_1": 19896, "PARCEL_NO_": "105502031600", "Tax_Legal_": "1-5 WINTBERG GREAT NORTHSIDE QTR", "Name": "RICHARDSON, MICHAEL", "Address": "PO Box 303846", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60100, "Improved_V": 247400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.690010581, "SHAPE_Area": 2890.6283896300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361358.052799999713898, 257541.142799999564886 ], [ 361358.660899996757507, 257497.966600000858307 ], [ 361310.677799999713898, 257499.267099998891354 ], [ 361296.369099996984005, 257499.557100001722574 ], [ 361292.035099998116493, 257542.011500000953674 ], [ 361310.291199997067451, 257544.649099998176098 ], [ 361327.220100000500679, 257545.209800001233816 ], [ 361336.901299998164177, 257544.655799999833107 ], [ 361358.052799999713898, 257541.142799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602093900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89131814, "LATITUDE": 18.34702479, "OBJECTID_1": 21495, "PARCEL_NO_": "105602093900", "Tax_Legal_": "ANNAS RETREAT 215-157 NEW QTR.", "Name": "POWELL, MURIEL", "Address": "Po Box 9441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 127100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.632471258300001, "SHAPE_Area": 510.87803374800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362998.039800003170967, 257542.419399999082088 ], [ 362979.631300002336502, 257526.225600000470877 ], [ 362966.598999999463558, 257541.528799999505281 ], [ 362983.385999999940395, 257558.764800000935793 ], [ 362985.012999996542931, 257557.089299999177456 ], [ 362998.039800003170967, 257542.419399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602091100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89024226, "LATITUDE": 18.34700175, "OBJECTID_1": 21467, "PARCEL_NO_": "105602091100", "Tax_Legal_": "ANNAS RETREAT 215-293 NEW QTR.", "Name": "RICHARDS, KEISHA L", "Address": "PO BOX 10716", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.00212008699999, "SHAPE_Area": 633.34305127200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363113.347900003194809, 257542.729899998754263 ], [ 363092.556400001049042, 257522.294700000435114 ], [ 363078.717799998819828, 257537.591299999505281 ], [ 363086.703599996864796, 257546.73369999974966 ], [ 363097.882299996912479, 257559.701900001615286 ], [ 363113.347900003194809, 257542.729899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702011600", "MAP": null, "PARCEL_NAM": "1D", "ACRE": null, "LONGITUDE": -64.87266598, "LATITUDE": 18.3470244, "OBJECTID_1": 22270, "PARCEL_NO_": "105702011600", "Tax_Legal_": "FRYDENDAHL 1D EAST END QTR", "Name": "LUDVIG, MARION HATCHETTE & RALPH HENLY (LIFE ESTATE)", "Address": "PO Box 502422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 42900, "Improved_V": 83800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.81629295499999, "SHAPE_Area": 1291.2773413100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364951.846400000154972, 257545.322599999606609 ], [ 364930.070600003004074, 257545.77760000154376 ], [ 364930.043600000441074, 257548.943799998611212 ], [ 364930.808600001037121, 257553.80519999936223 ], [ 364929.831399999558926, 257573.851100001484156 ], [ 364974.193000003695488, 257572.525400001555681 ], [ 364979.266500003635883, 257544.913699999451637 ], [ 364951.846400000154972, 257545.322599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601027700", "MAP": "C9-240-T79", "PARCEL_NAM": "404-58", "ACRE": "0.15", "LONGITUDE": -64.89442077, "LATITUDE": 18.34702172, "OBJECTID_1": 20606, "PARCEL_NO_": "105601027700", "Tax_Legal_": "404-58&POR 215 ANNAS RET NEW QTR.", "Name": "THOMPSON, STEPHEN", "Address": "33-45 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17100, "Improved_V": 55200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.658676318999994, "SHAPE_Area": 581.59648692200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362665.884099997580051, 257534.423500001430511 ], [ 362661.134300000965595, 257524.04109999909997 ], [ 362633.609999999403954, 257536.692499998956919 ], [ 362646.422899998724461, 257547.140900000929832 ], [ 362652.007700003683567, 257554.152699999511242 ], [ 362670.630199998617172, 257545.228100001811981 ], [ 362665.884099997580051, 257534.423500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011200", "MAP": "D9-3435-T86", "PARCEL_NAM": "225-1", "ACRE": "0.465", "LONGITUDE": -64.90219186, "LATITUDE": 18.34696903, "OBJECTID_1": 19796, "PARCEL_NO_": "105502011200", "Tax_Legal_": "225-1 WINTBERG GT. NORTHSIDE QTR.", "Name": "VIDA JOHN & OLIVER E JOHN", "Address": "6837 UPPER WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023225, "Country": "United States", "Land_Value": 70700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.42833418000001, "SHAPE_Area": 2031.0959117 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361870.847699999809265, 257518.437699999660254 ], [ 361801.830200001597404, 257506.74040000140667 ], [ 361793.399999998509884, 257533.615499999374151 ], [ 361864.247599996626377, 257546.86089999973774 ], [ 361869.259900003671646, 257526.425900001078844 ], [ 361870.847699999809265, 257518.437699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601057500", "MAP": "C9-240-T79", "PARCEL_NAM": "404-57", "ACRE": "0.14", "LONGITUDE": -64.89413807, "LATITUDE": 18.34700795, "OBJECTID_1": 20818, "PARCEL_NO_": "105601057500", "Tax_Legal_": "ANNAS RETREAT 404-57 POR 215 NO. 1 NEW QTR.", "Name": "BREWLEY, WANDA(life estate)", "Address": "PO Box 6874", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17600, "Improved_V": 61600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.009901081, "SHAPE_Area": 628.06545270900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362702.925899997353554, 257540.426199998706579 ], [ 362699.74379999935627, 257535.33390000090003 ], [ 362697.366200000047684, 257530.459300000220537 ], [ 362694.207500003278255, 257522.622999999672174 ], [ 362665.884099997580051, 257534.423500001430511 ], [ 362670.630199998617172, 257545.228100001811981 ], [ 362674.589900001883507, 257553.704300001263618 ], [ 362702.925899997353554, 257540.426199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601056400", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-56", "ACRE": "0.138", "LONGITUDE": -64.89373648, "LATITUDE": 18.34699367, "OBJECTID_1": 20808, "PARCEL_NO_": "105601056400", "Tax_Legal_": "215-56&POR 404 ANNAS RET NEW QTR.", "Name": "VESNER MOZARD", "Address": "7171 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 67500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.800549233500007, "SHAPE_Area": 594.70485192599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362727.728100001811981, 257549.313700001686811 ], [ 362735.248400002717972, 257542.874400001019239 ], [ 362737.470899999141693, 257540.969399999827147 ], [ 362741.069300003349781, 257538.217700000852346 ], [ 362740.857600003480911, 257534.936799999326468 ], [ 362743.218500003218651, 257529.846200000494719 ], [ 362739.366400003433228, 257522.359299998730421 ], [ 362737.748400002717972, 257522.979400001466274 ], [ 362736.124700002372265, 257523.69200000166893 ], [ 362722.54839999973774, 257527.740200001746416 ], [ 362714.951499998569489, 257531.1587999984622 ], [ 362707.938799999654293, 257534.314500000327826 ], [ 362708.611400000751019, 257535.617600001394749 ], [ 362718.17790000140667, 257550.743099998682737 ], [ 362723.522900000214577, 257551.377900000661612 ], [ 362727.728100001811981, 257549.313700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602013300", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-192", "ACRE": "0.18", "LONGITUDE": -64.88552549000001, "LATITUDE": 18.34699268, "OBJECTID_1": 20948, "PARCEL_NO_": "105602013300", "Tax_Legal_": "394-192 ANNAS RETREAT NEW QTR", "Name": "BOYDE, JARDY AND MINDY EUGUENE BOYDE", "Address": "PO BOX 8165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 119900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.47522123500001, "SHAPE_Area": 737.20501504799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363609.161799997091293, 257554.796599999070168 ], [ 363609.174300000071526, 257553.331900000572205 ], [ 363610.885899998247623, 257541.735700000077486 ], [ 363611.765900000929832, 257533.088100001215935 ], [ 363612.068000003695488, 257531.252999998629093 ], [ 363576.571699999272823, 257534.870700001716614 ], [ 363577.049500003457069, 257538.081300001591444 ], [ 363578.422600001096725, 257556.073699999600649 ], [ 363609.161799997091293, 257554.796599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602011900", "MAP": "C9-217-T77", "PARCEL_NAM": "394-406", "ACRE": "0.32", "LONGITUDE": -64.88442195, "LATITUDE": 18.34696846, "OBJECTID_1": 20934, "PARCEL_NO_": "105602011900", "Tax_Legal_": "394-406 ANNAS RETREAT NEW QTR", "Name": "WHEATLEY, WILLIAM & ANN LEE", "Address": "PO Box 502394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37600, "Improved_V": 127900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.06931056600001, "SHAPE_Area": 1292.01219186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363735.443999998271465, 257541.493700001388788 ], [ 363738.332299999892712, 257542.805300001055002 ], [ 363734.102799996733665, 257525.849700000137091 ], [ 363709.6587999984622, 257529.274500001221895 ], [ 363696.935999996960163, 257531.057000000029802 ], [ 363695.330099999904633, 257531.282000001519918 ], [ 363687.155699998140335, 257532.427299998700619 ], [ 363685.984200000762939, 257537.568199999630451 ], [ 363683.593699999153614, 257548.058600001037121 ], [ 363682.864200003445148, 257551.259799998253584 ], [ 363683.37389999628067, 257551.336199998855591 ], [ 363683.390399999916553, 257551.350600000470877 ], [ 363683.3766999989748, 257551.405999999493361 ], [ 363683.483199998736382, 257551.431200001388788 ], [ 363720.395099997520447, 257560.152800001204014 ], [ 363723.194378563319333, 257557.686036380968289 ], [ 363725.632799722778145, 257554.862034699646756 ], [ 363727.665200002491474, 257551.7331000007689 ], [ 363731.400816842564382, 257546.496572020201711 ], [ 363735.443999998271465, 257541.493700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87572465, "LATITUDE": 18.34697335, "OBJECTID_1": 21922, "PARCEL_NO_": "105701021100", "Tax_Legal_": "5-2 FRYDENDAHL EAST END QTR.", "Name": "PILGRIM, JR. , U. , A. , & Y", "Address": "PO Box 304109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32400, "Improved_V": 226100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.44101222, "SHAPE_Area": 850.95232765900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364649.448700003325939, 257546.436200000345707 ], [ 364620.558100000023842, 257530.156599998474121 ], [ 364612.252199999988079, 257558.586300000548363 ], [ 364611.431500002741814, 257560.268300000578165 ], [ 364642.821999996900558, 257567.069099999964237 ], [ 364649.448700003325939, 257546.436200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602036900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88802663, "LATITUDE": 18.34693735, "OBJECTID_1": 21164, "PARCEL_NO_": "105602036900", "Tax_Legal_": "394-333 ANNAS RETREAT NEW QTR", "Name": "GEORGE, EFIL & JUANNA", "Address": "394-333 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 253800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.908789411, "SHAPE_Area": 797.50738137200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363349.590300001204014, 257545.507800001651049 ], [ 363328.890500001609325, 257514.307599999010563 ], [ 363323.217500001192093, 257517.638700000941753 ], [ 363311.032899998128414, 257528.093600001186132 ], [ 363330.953400000929832, 257556.120999999344349 ], [ 363349.590300001204014, 257545.507800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701022000", "MAP": "A9-318-T85", "PARCEL_NAM": "53-36", "ACRE": ".50", "LONGITUDE": -64.87840936000001, "LATITUDE": 18.34670566, "OBJECTID_1": 21931, "PARCEL_NO_": "105701022000", "Tax_Legal_": "EST.FRYDENDAHL 53-36 EASTEND QTR.", "Name": "CHINNERY, INGRID", "Address": "720 Lenox Ave", "City": "New York", "State": "New York", "Zip": 10039, "Country": "United States", "Land_Value": 89400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.05741884299999, "SHAPE_Area": 2332.0091410800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364370.604800000786781, 257527.688700001686811 ], [ 364352.532600000500679, 257472.023200001567602 ], [ 364326.4662000015378, 257502.840599998831749 ], [ 364328.660400003194809, 257529.245200000703335 ], [ 364331.768799997866154, 257542.991700001060963 ], [ 364340.456600002944469, 257564.383299998939037 ], [ 364370.604800000786781, 257527.688700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87140164, "LATITUDE": 18.34692497, "OBJECTID_1": 22315, "PARCEL_NO_": "105702016500", "Tax_Legal_": "FRYDENDAHL 11B-5 EAST END QTR.", "Name": "TRUST AGREEMENT OF RALDA V SIMMONDS", "Address": "PO Box 7755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.06396509499999, "SHAPE_Area": 908.14115744100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365111.366800002753735, 257561.826900001615286 ], [ 365085.056999996304512, 257526.570000000298023 ], [ 365066.368000000715256, 257543.30460000038147 ], [ 365084.686599999666214, 257570.052299998700619 ], [ 365086.308200001716614, 257569.010099999606609 ], [ 365087.949600003659725, 257565.646000001579523 ], [ 365088.799099996685982, 257560.58669999986887 ], [ 365092.839599996805191, 257559.564300000667572 ], [ 365095.240599997341633, 257561.694899998605251 ], [ 365098.462200000882149, 257562.143500000238419 ], [ 365100.08389999717474, 257561.101300001144409 ], [ 365103.265900000929832, 257566.193599998950958 ], [ 365111.366800002753735, 257561.826900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602031900", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-353", "ACRE": ".158", "LONGITUDE": -64.88900962, "LATITUDE": 18.34696294, "OBJECTID_1": 21117, "PARCEL_NO_": "105602031900", "Tax_Legal_": "394-353 ANNAS RETREAT NEW QTR", "Name": "PHILLIP, VINCENT & JNO LEWIS", "Address": "394-353 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 141900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.084006664, "SHAPE_Area": 644.32156121599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363244.834399998188019, 257537.050999999046326 ], [ 363219.172600001096725, 257520.375700000673532 ], [ 363207.73139999806881, 257538.225000001490116 ], [ 363232.588699996471405, 257554.682700000703335 ], [ 363244.834399998188019, 257537.050999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601051300", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-71", "ACRE": "0.163", "LONGITUDE": -64.89286814, "LATITUDE": 18.34694292, "OBJECTID_1": 20758, "PARCEL_NO_": "105601051300", "Tax_Legal_": "215-71 ANNAS RETREAT NEW QTR.", "Name": "FRAZER, CHARLES", "Address": "PO Box 10007", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 149800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.432810372899993, "SHAPE_Area": 597.36698661499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362831.857199996709824, 257542.114900000393391 ], [ 362826.714500002563, 257516.185100000351667 ], [ 362826.526600003242493, 257514.019799999892712 ], [ 362803.604900002479553, 257525.721000000834465 ], [ 362804.641699999570847, 257527.11540000140667 ], [ 362809.153099998831749, 257546.749000001698732 ], [ 362810.69370000064373, 257546.749000001698732 ], [ 362819.05460000038147, 257544.844000000506639 ], [ 362831.857199996709824, 257542.114900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90623673, "LATITUDE": 18.34691498, "OBJECTID_1": 19897, "PARCEL_NO_": "105502031700", "Tax_Legal_": "WINTBERG ESTATE 1-4 GREAT NORTHSIDE", "Name": "MASON, GRACE (TRUSTEE)", "Address": "PO Box 9850", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62700, "Improved_V": 428900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.16879608, "SHAPE_Area": 3982.5311225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361365.971699997782707, 257539.827500000596046 ], [ 361382.918600000441074, 257538.277399998158216 ], [ 361420.003600001335144, 257539.214200001209974 ], [ 361433.718099996447563, 257538.482099998742342 ], [ 361449.057800002396107, 257536.285599999129772 ], [ 361452.67509999871254, 257490.296799998730421 ], [ 361420.375799998641014, 257495.520899999886751 ], [ 361382.461199998855591, 257497.32149999961257 ], [ 361358.660899996757507, 257497.966600000858307 ], [ 361358.052799999713898, 257541.142799999564886 ], [ 361365.971699997782707, 257539.827500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87195539, "LATITUDE": 18.34689166, "OBJECTID_1": 22288, "PARCEL_NO_": "105702013300", "Tax_Legal_": "FRYDENDAHL 11-5-16 EAST END QTR", "Name": "NIBBS, CECIL & MARILYN", "Address": "394-139 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 122600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.578793088, "SHAPE_Area": 947.03382864399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365043.821800000965595, 257539.531399998813868 ], [ 365019.013099998235703, 257517.374699998646975 ], [ 365013.844400003552437, 257556.173599999397993 ], [ 365039.547499999403954, 257567.994100000709295 ], [ 365042.893200002610683, 257553.878199998289347 ], [ 365043.821800000965595, 257539.531399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601081600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89164779, "LATITUDE": 18.34694421, "OBJECTID_1": 20893, "PARCEL_NO_": "105601081600", "Tax_Legal_": "215-149 ANNAS RETREAT NEW QUARTER", "Name": "DURANT, ELIAS & URSULA", "Address": "2225 Scrub Jay Rd", "City": "Apopka", "State": "Florida", "Zip": 32703, "Country": "United States", "Land_Value": 19200, "Improved_V": 90100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.490019228099996, "SHAPE_Area": 539.55677291999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362963.434900000691414, 257534.325699999928474 ], [ 362945.042599998414516, 257516.232200000435114 ], [ 362931.200400002300739, 257531.950899999588728 ], [ 362949.592799998819828, 257550.044399999082088 ], [ 362963.434900000691414, 257534.325699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602023200", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-172", "ACRE": ".137", "LONGITUDE": -64.88727287, "LATITUDE": 18.34693802, "OBJECTID_1": 21067, "PARCEL_NO_": "105602023200", "Tax_Legal_": "394-172 ANNAS RETREAT No.1 NEW QTR", "Name": "THOMAS, YVONNE", "Address": "394-172 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 111600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.452310477, "SHAPE_Area": 649.00105260800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363428.662799999117851, 257539.82209999859333 ], [ 363409.489399999380112, 257518.7668999992311 ], [ 363392.445299997925758, 257531.715199999511242 ], [ 363406.770099997520447, 257553.997299998998642 ], [ 363428.662799999117851, 257539.82209999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602091000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89060505, "LATITUDE": 18.34695105, "OBJECTID_1": 21466, "PARCEL_NO_": "105602091000", "Tax_Legal_": "215-297 ESTATE ANNAS RETREAT NEW QUARTER", "Name": "GEORGE, SARAH", "Address": "PO Box 10180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 139900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.142614239300002, "SHAPE_Area": 438.11440832599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363061.948899999260902, 257518.244500000029802 ], [ 363043.211300000548363, 257540.678199999034405 ], [ 363043.189699999988079, 257543.211100000888109 ], [ 363050.383599996566772, 257550.658300001174212 ], [ 363073.129399999976158, 257531.001600001007318 ], [ 363061.948899999260902, 257518.244500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602032000", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-339", "ACRE": ".162", "LONGITUDE": -64.88850545, "LATITUDE": 18.3469213, "OBJECTID_1": 21118, "PARCEL_NO_": "105602032000", "Tax_Legal_": "394-339 ANNAS RETREAT NEW QTR", "Name": "SON, SYLVIA", "Address": "PO Box 9127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18200, "Improved_V": 53100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.418121367, "SHAPE_Area": 711.80683115700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363299.661799997091293, 257537.710799999535084 ], [ 363272.452200002968311, 257513.423500001430511 ], [ 363261.021799996495247, 257530.006299998611212 ], [ 363283.407899998128414, 257552.565499998629093 ], [ 363294.788000002503395, 257541.892799999564886 ], [ 363299.661799997091293, 257537.710799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701021500", "MAP": "A9-318-T85", "PARCEL_NAM": "53-33", "ACRE": ".78", "LONGITUDE": -64.87768423, "LATITUDE": 18.34686473, "OBJECTID_1": 21926, "PARCEL_NO_": "105701021500", "Tax_Legal_": "53-33 ESTATE FRYDENDAHL EAST END QUARTER", "Name": "JOSEPH, LOWELL & SUSAN", "Address": "PO Box 303952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124600, "Improved_V": 145000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.74888019799999, "SHAPE_Area": 2660.0005248699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364474.495099999010563, 257543.104400001466274 ], [ 364429.638300001621246, 257507.906899999827147 ], [ 364380.206900000572205, 257536.422100000083447 ], [ 364380.980800002813339, 257540.228100001811981 ], [ 364385.752099998295307, 257548.077599998563528 ], [ 364390.546899996697903, 257553.183100000023842 ], [ 364400.964199997484684, 257560.867800001055002 ], [ 364474.495099999010563, 257543.104400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602081800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8896904, "LATITUDE": 18.34692202, "OBJECTID_1": 21387, "PARCEL_NO_": "105602081800", "Tax_Legal_": "ANNAS RETREAT 215-220 NEW QTR.", "Name": "BRAITHWAITE, ELAINE", "Address": "PO Box 10846", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 218000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.269772533199998, "SHAPE_Area": 609.93678890800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363148.263899996876717, 257514.30689999833703 ], [ 363137.675700001418591, 257526.674800001084805 ], [ 363138.458700001239777, 257529.425400000065565 ], [ 363156.0320999994874, 257548.989799998700619 ], [ 363157.639399997889996, 257549.636300001293421 ], [ 363160.061899997293949, 257549.233899999409914 ], [ 363160.882600001990795, 257547.551899999380112 ], [ 363163.3158999979496, 257545.883000001311302 ], [ 363170.649999998509884, 257536.86600000038743 ], [ 363171.474299997091293, 257534.761900000274181 ], [ 363148.263899996876717, 257514.30689999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87927373, "LATITUDE": 18.34688954, "OBJECTID_1": 21871, "PARCEL_NO_": "105701013800", "Tax_Legal_": "5-3&6-1 TABOR&HARMONY EAST END QTR", "Name": "ROUSE, WENDE & ORVILLE", "Address": "6625 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.525746904399995, "SHAPE_Area": 230.800888101 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364237.298900000751019, 257557.628400001674891 ], [ 364269.781599998474121, 257530.874299999326468 ], [ 364258.534599997103214, 257525.927099999040365 ], [ 364237.298900000751019, 257557.628400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602024700", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-190", "ACRE": ".137", "LONGITUDE": -64.88587029, "LATITUDE": 18.34686472, "OBJECTID_1": 21082, "PARCEL_NO_": "105602024700", "Tax_Legal_": "ANNAS RETREAT 394-190 NEW QTR", "Name": "CHALLENGER, ENID & CLARKE, WENDELL M. & RICO L. & MERVYN G.", "Address": "394-190 Estate Annas Retreat", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 167100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.870567764200004, "SHAPE_Area": 463.00192613299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363567.501400001347065, 257523.015500001609325 ], [ 363566.063500002026558, 257516.656199999153614 ], [ 363544.270900003612041, 257521.544199999421835 ], [ 363546.492399998009205, 257528.120900001376867 ], [ 363548.070799998939037, 257532.144600000232458 ], [ 363549.065200001001358, 257540.822900000959635 ], [ 363569.989600002765656, 257539.888000000268221 ], [ 363569.805299997329712, 257536.544300001114607 ], [ 363567.501400001347065, 257523.015500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89525881, "LATITUDE": 18.34698439, "OBJECTID_1": 20454, "PARCEL_NO_": "105601011700", "Tax_Legal_": "204 ANNAS RETREAT No.1 NEW QTR", "Name": "NADIA MONROSE MILLS and JAHMED A MILLS", "Address": "PO Box 6553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41800, "Improved_V": 125200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.144307827699997, "SHAPE_Area": 26.381677611800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362576.514600001275539, 257518.282200001180172 ], [ 362559.378899998962879, 257541.995600000023842 ], [ 362560.984300002455711, 257542.853100001811981 ], [ 362576.514600001275539, 257518.282200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011800", "MAP": "B9-178-T67", "PARCEL_NAM": "205", "ACRE": null, "LONGITUDE": -64.89538594, "LATITUDE": 18.34685745, "OBJECTID_1": 20455, "PARCEL_NO_": "105601011800", "Tax_Legal_": "ANNAS RETREAT 205 NEW QTR", "Name": "GORDON, EDWARD S.", "Address": "PO Box 7182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 234800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.92205760100001, "SHAPE_Area": 1114.4332909100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362576.514600001275539, 257518.282200001180172 ], [ 362569.279399998486042, 257515.689899999648333 ], [ 362563.680200003087521, 257510.366700001060963 ], [ 362562.092699997127056, 257507.398400001227856 ], [ 362561.367299996316433, 257497.893300000578165 ], [ 362527.361900001764297, 257514.080299999564886 ], [ 362531.32880000025034, 257521.712099999189377 ], [ 362540.916400000452995, 257532.134199999272823 ], [ 362559.378899998962879, 257541.995600000023842 ], [ 362576.514600001275539, 257518.282200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601080800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89198578, "LATITUDE": 18.34689531, "OBJECTID_1": 20885, "PARCEL_NO_": "105601080800", "Tax_Legal_": "215-141 ANNAS RETREAT NEW QTQR.", "Name": "SMITH, REGINA", "Address": "PO Box 502453", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 130800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.0855370118, "SHAPE_Area": 526.36588071899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362927.206600002944469, 257527.485300000756979 ], [ 362910.414300002157688, 257510.882599998265505 ], [ 362895.767599999904633, 257526.383600000292063 ], [ 362913.35360000282526, 257544.470499999821186 ], [ 362927.206600002944469, 257527.485300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90978285, "LATITUDE": 18.34672591, "OBJECTID_1": 19679, "PARCEL_NO_": "105501012500", "Tax_Legal_": "WINTBERG 1CA-1 3 GR NORTHSIDE QTR", "Name": "ISAACS, MARK A. & DOROTHY M.", "Address": "PO Box 304050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97800, "Improved_V": 243800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.89419612, "SHAPE_Area": 3028.4989640099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361049.777800001204014, 257456.601799998432398 ], [ 361006.973099999129772, 257464.484099999070168 ], [ 361006.107500001788139, 257471.44310000166297 ], [ 361008.040899999439716, 257528.454199999570847 ], [ 361020.160700000822544, 257525.598099999129772 ], [ 361058.917700000107288, 257519.582499999552965 ], [ 361049.777800001204014, 257456.601799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702017500", "MAP": null, "PARCEL_NAM": "52-4C", "ACRE": null, "LONGITUDE": -64.87345509, "LATITUDE": 18.34686651, "OBJECTID_1": 22325, "PARCEL_NO_": "105702017500", "Tax_Legal_": "FRYDENDAHL 52-4C EASTEND QTR.", "Name": "JONES, SAMUEL & ELVIA", "Address": "P.O. BOX 4315", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68000, "Improved_V": 210100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.785526672, "SHAPE_Area": 1294.1742271400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364891.290299996733665, 257554.537300001829863 ], [ 364891.317299999296665, 257551.371100001037121 ], [ 364885.926600001752377, 257521.562800001353025 ], [ 364884.358900003135204, 257516.272599998861551 ], [ 364847.104900002479553, 257535.177200000733137 ], [ 364850.931500002741814, 257559.273200001567602 ], [ 364891.290299996733665, 257554.537300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602082100", "MAP": "C9-272-T81", "PARCEL_NAM": "215-225", "ACRE": null, "LONGITUDE": -64.8892453, "LATITUDE": 18.34686546, "OBJECTID_1": 21390, "PARCEL_NO_": "105602082100", "Tax_Legal_": "ANNAS RETREAT 215-225 NEW QTR.", "Name": "AARON, JAMES & FRANCISCA & OTHERS", "Address": "Po Box 6192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20200, "Improved_V": 338800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.631812458, "SHAPE_Area": 678.70070354699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363219.172600001096725, 257520.375700000673532 ], [ 363199.11370000243187, 257508.601399999111891 ], [ 363183.603200003504753, 257530.850299999117851 ], [ 363202.830600000917912, 257545.57319999858737 ], [ 363207.73139999806881, 257538.225000001490116 ], [ 363219.172600001096725, 257520.375700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602012300", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-210", "ACRE": ".140", "LONGITUDE": -64.88482457000001, "LATITUDE": 18.34690147, "OBJECTID_1": 20938, "PARCEL_NO_": "105602012300", "Tax_Legal_": "394-210 ANNAS RETREAT NEW QTR", "Name": "PERCIVAL, RAFORD A.", "Address": "394-210 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 108700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.18847540599999, "SHAPE_Area": 593.09940993299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363667.998499996960163, 257523.633499998599291 ], [ 363659.354500003159046, 257519.665600001811981 ], [ 363653.706699997186661, 257531.953699998557568 ], [ 363652.031199999153614, 257539.328299999237061 ], [ 363652.000299997627735, 257542.950800001621246 ], [ 363684.386900000274181, 257544.577500000596046 ], [ 363685.984200000762939, 257537.568199999630451 ], [ 363687.155699998140335, 257532.427299998700619 ], [ 363667.998499996960163, 257523.633499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601051500", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-69", "ACRE": "0.147", "LONGITUDE": -64.89319412, "LATITUDE": 18.34686254, "OBJECTID_1": 20760, "PARCEL_NO_": "105601051500", "Tax_Legal_": "ANNAS RETREAT 215-69 & POR. 404 NEW QTR.", "Name": "CHARLES, LORRAINE C.& BLYDEN, BYRON M.", "Address": "215-69 Estate Annas Retreat", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.20581694099999, "SHAPE_Area": 626.55108541100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362803.604900002479553, 257525.721000000834465 ], [ 362793.48309999704361, 257509.226700000464916 ], [ 362792.584799997508526, 257509.970600001513958 ], [ 362788.830899998545647, 257511.210099998861551 ], [ 362784.910599999129772, 257512.456000000238419 ], [ 362779.676299996674061, 257514.33219999819994 ], [ 362778.776699997484684, 257511.157200001180172 ], [ 362766.245200000703335, 257516.276599999517202 ], [ 362768.397200003266335, 257522.174699999392033 ], [ 362771.557700000703335, 257529.800000000745058 ], [ 362775.503700003027916, 257537.941199999302626 ], [ 362802.093800000846386, 257526.378100000321865 ], [ 362803.604900002479553, 257525.721000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602037000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88784872, "LATITUDE": 18.34683513, "OBJECTID_1": 21165, "PARCEL_NO_": "105602037000", "Tax_Legal_": "ANNAS RETREAT 394-334 NEW QTR", "Name": "DEWINDT, ALVIN & JOYCELYN", "Address": "PO Box 9883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 116600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.172874425, "SHAPE_Area": 839.12334299400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363369.029899999499321, 257535.323300000280142 ], [ 363348.339100003242493, 257503.067699998617172 ], [ 363341.046300001442432, 257507.229899998754263 ], [ 363328.890500001609325, 257514.307599999010563 ], [ 363349.590300001204014, 257545.507800001651049 ], [ 363369.029899999499321, 257535.323300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602093600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89118292000001, "LATITUDE": 18.34687618, "OBJECTID_1": 21492, "PARCEL_NO_": "105602093600", "Tax_Legal_": "215-156 ANNAS RETREAT NEW QTR.", "Name": "PARRIS, SHERYL & BERNICE", "Address": "PO Box 8003", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 64300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.292315114199994, "SHAPE_Area": 550.279225752 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363013.507200002670288, 257525.236299999058247 ], [ 362994.285199999809265, 257509.880300000309944 ], [ 362988.588899999856949, 257515.955299999564886 ], [ 362986.951099999248981, 257518.897300001233816 ], [ 362979.631300002336502, 257526.225600000470877 ], [ 362998.039800003170967, 257542.419399999082088 ], [ 363013.507200002670288, 257525.236299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602093500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89087018, "LATITUDE": 18.34686037, "OBJECTID_1": 21491, "PARCEL_NO_": "105602093500", "Tax_Legal_": "215-168 ANNAS RETREAT NEW QTR.", "Name": "WANDA Y SANES, DUANE K WOODS, JR.,MARDIYANIC J.R.,RAJESH T, & CHARDONA", "Address": "215-168 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 209300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.508406832000006, "SHAPE_Area": 595.72551047100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363046.571400001645088, 257524.873700000345707 ], [ 363024.957400001585484, 257506.331599999219179 ], [ 363013.507200002670288, 257525.236299999058247 ], [ 363032.714900001883507, 257542.280999999493361 ], [ 363046.571400001645088, 257524.873700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602091300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89011382, "LATITUDE": 18.34686271, "OBJECTID_1": 21469, "PARCEL_NO_": "105602091300", "Tax_Legal_": "215-290 ANNAS RETREAT NEW QTR.", "Name": "SMITH, HUBERT & MARION", "Address": "4215-290 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021794, "Country": "United States", "Land_Value": 20200, "Improved_V": 172500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.802847660300003, "SHAPE_Area": 566.19715372999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363126.376599997282028, 257527.848799999803305 ], [ 363104.771600000560284, 257508.251400001347065 ], [ 363092.556400001049042, 257522.294700000435114 ], [ 363113.347900003194809, 257542.729899998754263 ], [ 363124.738799996674061, 257530.790800001472235 ], [ 363126.376599997282028, 257527.848799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601056500", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-89", "ACRE": "0.146", "LONGITUDE": -64.89345582, "LATITUDE": 18.34689885, "OBJECTID_1": 20809, "PARCEL_NO_": "105601056500", "Tax_Legal_": "ANNAS RETREAT 215-89 NEW QTR.", "Name": "APONTE, MIGUEL & LOUISE", "Address": "PO Box 10699", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 164800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.551942589000006, "SHAPE_Area": 560.13186700100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362748.092000000178814, 257539.318199999630451 ], [ 362750.569499999284744, 257537.939899999648333 ], [ 362752.287600003182888, 257540.651900000870228 ], [ 362753.028499998152256, 257541.392700001597404 ], [ 362754.731600001454353, 257539.836500000208616 ], [ 362772.177500002086163, 257531.07880000025034 ], [ 362771.557700000703335, 257529.800000000745058 ], [ 362768.397200003266335, 257522.174699999392033 ], [ 362764.457400001585484, 257511.3766999989748 ], [ 362739.366400003433228, 257522.359299998730421 ], [ 362748.092000000178814, 257539.318199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602013500", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-203", "ACRE": ".190", "LONGITUDE": -64.88520754, "LATITUDE": 18.3468708, "OBJECTID_1": 20950, "PARCEL_NO_": "105602013500", "Tax_Legal_": "394-203 ANNAS RETREAT NEW QTR", "Name": "JUANA ORTIZ", "Address": "PO Box 502995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052995, "Country": "United States", "Land_Value": 26000, "Improved_V": 142900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.577019507, "SHAPE_Area": 861.16430278400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363647.326399996876717, 257523.668800000101328 ], [ 363615.167400002479553, 257512.428800001740456 ], [ 363611.765900000929832, 257533.088100001215935 ], [ 363610.885899998247623, 257541.735700000077486 ], [ 363643.100599996745586, 257546.432399999350309 ], [ 363644.014799997210503, 257533.77419999986887 ], [ 363647.326399996876717, 257523.668800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601020200", "MAP": null, "PARCEL_NAM": "202", "ACRE": null, "LONGITUDE": -64.89454729000001, "LATITUDE": 18.34676254, "OBJECTID_1": 20537, "PARCEL_NO_": "105601020200", "Tax_Legal_": "ANNAS RETREAT 202 NEW QTR", "Name": "BROWN, ILKA F. & OTHERS", "Address": "202 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27600, "Improved_V": 109600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.564773315, "SHAPE_Area": 1446.25329859 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362658.1824000030756, 257491.930700000375509 ], [ 362623.546899996697903, 257487.425299998372793 ], [ 362624.101499997079372, 257516.982999999076128 ], [ 362627.224200002849102, 257529.040899999439716 ], [ 362631.20719999819994, 257534.772999998182058 ], [ 362633.609999999403954, 257536.692499998956919 ], [ 362661.134300000965595, 257524.04109999909997 ], [ 362659.608000002801418, 257513.896099999547005 ], [ 362658.1824000030756, 257491.930700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87227315, "LATITUDE": 18.34681065, "OBJECTID_1": 22287, "PARCEL_NO_": "105702013200", "Tax_Legal_": "FRYDENDAHL 11-4 EAST END QTR", "Name": "REY, SAMUEL A", "Address": "6363 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22500, "Improved_V": 89300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.734127816, "SHAPE_Area": 578.27897954100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365009.191699996590614, 257534.392900001257658 ], [ 364983.54619999974966, 257515.817800000309944 ], [ 364981.7753000035882, 257534.379599999636412 ], [ 364980.954599998891354, 257536.061599999666214 ], [ 365005.783100001513958, 257555.896499998867512 ], [ 365009.191699996590614, 257534.392900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501012100", "MAP": null, "PARCEL_NAM": "1-7", "ACRE": null, "LONGITUDE": -64.90818717000001, "LATITUDE": 18.34669428, "OBJECTID_1": 19675, "PARCEL_NO_": "105501012100", "Tax_Legal_": "1 7 WINTBERG GREAT NORTHSIDE", "Name": "MINTO, AGATHA", "Address": "6659 Knottwood Ct", "City": "Baltimore", "State": "Maryland", "Zip": 21214, "Country": "United States", "Land_Value": 73100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.54856035399999, "SHAPE_Area": 2791.8406377199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361239.502999998629093, 257492.663199998438358 ], [ 361226.913000002503395, 257487.815799999982119 ], [ 361202.039599999785423, 257473.257800001651049 ], [ 361169.961499996483326, 257452.519200000911951 ], [ 361161.907399997115135, 257451.397799998521805 ], [ 361175.944499999284744, 257507.452500000596046 ], [ 361234.751500003039837, 257521.855599999427795 ], [ 361239.502999998629093, 257492.663199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702011700", "MAP": "D9-4660-T89", "PARCEL_NAM": "11A REM", "ACRE": null, "LONGITUDE": -64.87306163, "LATITUDE": 18.34679074, "OBJECTID_1": 22271, "PARCEL_NO_": "105702011700", "Tax_Legal_": "11A FRYDENDAHL EAST END QTR", "Name": "AUBREY, ALFRED", "Address": "PO Box 1254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 89100, "Improved_V": 95500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.96238724400001, "SHAPE_Area": 1287.3637384000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364930.070600003004074, 257545.77760000154376 ], [ 364930.333099998533726, 257514.960099998861551 ], [ 364890.811200000345707, 257516.11430000141263 ], [ 364897.751599997282028, 257553.323600001633167 ], [ 364930.043600000441074, 257548.943799998611212 ], [ 364930.070600003004074, 257545.77760000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602091200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89042291, "LATITUDE": 18.34682091, "OBJECTID_1": 21468, "PARCEL_NO_": "105602091200", "Tax_Legal_": "215-294 ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "WALTER, KEITH", "Address": "PO Box 10713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 113600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.335712431000005, "SHAPE_Area": 505.51503326800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363092.556400001049042, 257522.294700000435114 ], [ 363073.361400000751019, 257503.77250000089407 ], [ 363061.948899999260902, 257518.244500000029802 ], [ 363073.129399999976158, 257531.001600001007318 ], [ 363078.717799998819828, 257537.591299999505281 ], [ 363092.556400001049042, 257522.294700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602023900", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-173", "ACRE": ".147", "LONGITUDE": -64.88710096, "LATITUDE": 18.34679684, "OBJECTID_1": 21074, "PARCEL_NO_": "105602023900", "Tax_Legal_": "394-173 ANNAS RETREAT NEW QTR C", "Name": "SKERRITT, HENDERSON & AUDRY", "Address": "PO Box 7818", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18800, "Improved_V": 100500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.97624876499999, "SHAPE_Area": 685.51009040400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363445.73929999768734, 257523.074400000274181 ], [ 363428.984700001776218, 257502.039000000804663 ], [ 363409.489399999380112, 257518.7668999992311 ], [ 363428.662799999117851, 257539.82209999859333 ], [ 363445.73929999768734, 257523.074400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9094539, "LATITUDE": 18.34665756, "OBJECTID_1": 19680, "PARCEL_NO_": "105501012600", "Tax_Legal_": "WINTBERG 1CA-2 & 1CA-3A GREAT NORTHSIDE", "Name": "DIMPOULOS, J. , C. , K. , & N", "Address": "PO Box 11969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.171029992, "SHAPE_Area": 1453.5700124299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361081.544799998402596, 257513.857099998742342 ], [ 361072.392300002276897, 257452.353999998420477 ], [ 361049.777800001204014, 257456.601799998432398 ], [ 361058.917700000107288, 257519.582499999552965 ], [ 361081.544799998402596, 257513.857099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601051900", "MAP": null, "PARCEL_NAM": "215-55", "ACRE": null, "LONGITUDE": -64.89376115, "LATITUDE": 18.34678131, "OBJECTID_1": 20764, "PARCEL_NO_": "105601051900", "Tax_Legal_": "215-55&POR 404 ANNAS RET\nNEW QTR.", "Name": "MEYERS, BUFFY D", "Address": "P.O. BOX 3726", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20800, "Improved_V": 98600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.612674355, "SHAPE_Area": 620.27639311500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362736.124700002372265, 257523.69200000166893 ], [ 362736.507100000977516, 257519.338799998164177 ], [ 362737.500699996948242, 257508.027300000190735 ], [ 362733.266599997878075, 257506.153200000524521 ], [ 362731.311800003051758, 257504.101599998772144 ], [ 362732.473800003528595, 257499.197799999266863 ], [ 362713.337700001895428, 257497.669100001454353 ], [ 362713.749600000679493, 257500.407000001519918 ], [ 362712.910899996757507, 257504.199799999594688 ], [ 362714.951499998569489, 257531.1587999984622 ], [ 362722.54839999973774, 257527.740200001746416 ], [ 362736.124700002372265, 257523.69200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602032200", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-338", "ACRE": ".159", "LONGITUDE": -64.88837895, "LATITUDE": 18.34678442, "OBJECTID_1": 21120, "PARCEL_NO_": "105602032200", "Tax_Legal_": "394-338 ANNAS RETREAT NEW QTR", "Name": "SADLER, SHIRLEY", "Address": "394-338 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 100500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.58179223899999, "SHAPE_Area": 707.55043540199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363311.032899998128414, 257528.093600001186132 ], [ 363293.538599997758865, 257499.241700001060963 ], [ 363278.137800000607967, 257508.614900000393391 ], [ 363272.452200002968311, 257513.423500001430511 ], [ 363299.661799997091293, 257537.710799999535084 ], [ 363311.032899998128414, 257528.093600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701011800", "MAP": "D9-2923-T85", "PARCEL_NAM": "16-F", "ACRE": "1.097", "LONGITUDE": -64.8815372, "LATITUDE": 18.34656182, "OBJECTID_1": 21853, "PARCEL_NO_": "105701011800", "Tax_Legal_": "16F,16G & 16-2 ROW ANNAS RETREAT NO.1 NEW QTR", "Name": "VALLEY VIEW PROPERTIES INCORPORATED", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 114871, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.136338685, "SHAPE_Area": 4219.5269520399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363994.60360000282526, 257460.438799999654293 ], [ 363982.239100001752377, 257492.0016999989748 ], [ 363973.992600001394749, 257513.465700000524521 ], [ 364027.762000001966953, 257543.670000001788139 ], [ 364036.796899996697903, 257524.323300000280142 ], [ 364043.322899997234344, 257515.510800000280142 ], [ 364057.958800002932549, 257501.276200000196695 ], [ 364066.918099999427795, 257490.794900000095367 ], [ 364001.063100002706051, 257459.436200000345707 ], [ 363999.421700000762939, 257462.800299998372793 ], [ 363994.60360000282526, 257460.438799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701022300", "MAP": "A9-318-T85", "PARCEL_NAM": "53-41", "ACRE": ".50", "LONGITUDE": -64.87884536, "LATITUDE": 18.34666693, "OBJECTID_1": 21934, "PARCEL_NO_": "105701022300", "Tax_Legal_": "ESTATE FRYDENDAHL 53-41 EASTEND QTR.", "Name": "CHINNERY, AQUANETTE Y. -REV. TRUST", "Address": "PO Box 6286", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 89400, "Improved_V": 79900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.85698768399999, "SHAPE_Area": 2266.3104270600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364273.380900003015995, 257486.996300000697374 ], [ 364287.511500000953674, 257532.074799999594688 ], [ 364292.232500001788139, 257545.834600001573563 ], [ 364324.502999998629093, 257543.987700000405312 ], [ 364321.439599998295307, 257524.964299999177456 ], [ 364320.733900003135204, 257513.137200001627207 ], [ 364321.567199997603893, 257509.977699998766184 ], [ 364320.804099999368191, 257504.905200000852346 ], [ 364317.645400002598763, 257497.068900000303984 ], [ 364312.058700002729893, 257490.268100000917912 ], [ 364304.038699999451637, 257485.136300001293421 ], [ 364296.798100002110004, 257483.177099999040365 ], [ 364288.736800000071526, 257482.900100000202656 ], [ 364273.380900003015995, 257486.996300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602032100", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-354", "ACRE": ".167", "LONGITUDE": -64.88889461, "LATITUDE": 18.34679479, "OBJECTID_1": 21119, "PARCEL_NO_": "105602032100", "Tax_Legal_": "394-354 ANNAS RETREAT NEW QTR", "Name": "WATLEY, DORIS & JANIKI WATLEY WILLIAMS", "Address": "153 Clifford St", "City": "Newark", "State": "New Jersey", "Zip": 7105, "Country": "United States", "Land_Value": 24700, "Improved_V": 153000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.46976893199999, "SHAPE_Area": 704.912935597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363257.081900000572205, 257519.208299998193979 ], [ 363234.66160000115633, 257500.659699998795986 ], [ 363229.780599996447563, 257505.686000000685453 ], [ 363219.172600001096725, 257520.375700000673532 ], [ 363244.834399998188019, 257537.050999999046326 ], [ 363257.081900000572205, 257519.208299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601081500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89150912, "LATITUDE": 18.34678803, "OBJECTID_1": 20892, "PARCEL_NO_": "105601081500", "Tax_Legal_": "215-150 ANNAS RETREAT NEW QTR.", "Name": "LAUDAT, ANDREW", "Address": "PO BOX 12223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 100600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.004945402, "SHAPE_Area": 635.21270424700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362979.722999997437, 257515.46059999987483 ], [ 362959.714500002563, 257497.776099998503923 ], [ 362945.042599998414516, 257516.232200000435114 ], [ 362963.434900000691414, 257534.325699999928474 ], [ 362979.722999997437, 257515.46059999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602082000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88957579, "LATITUDE": 18.3467736, "OBJECTID_1": 21389, "PARCEL_NO_": "105602082000", "Tax_Legal_": "ANNAS RETREAT 215-223 NEW QTR.", "Name": "BENJAMIN, ELLEN", "Address": "PO Box 973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20200, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.043074334, "SHAPE_Area": 651.89734417800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363183.729099996387959, 257516.074799999594688 ], [ 363162.11150000244379, 257497.954900000244379 ], [ 363148.263899996876717, 257514.30689999833703 ], [ 363171.474299997091293, 257534.761900000274181 ], [ 363173.097800001502037, 257533.508600000292063 ], [ 363183.729099996387959, 257516.074799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602013400", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-193", "ACRE": "0.22", "LONGITUDE": -64.88551991, "LATITUDE": 18.34677836, "OBJECTID_1": 20949, "PARCEL_NO_": "105602013400", "Tax_Legal_": "394-193 ANNAS RETREAT NEW QTR", "Name": "JAMES, EVERETT & BARNES, ISOLA", "Address": "P.o. Box 2252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 131100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.65298096799999, "SHAPE_Area": 960.33229874200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363610.399599999189377, 257504.1570999994874 ], [ 363609.679899998009205, 257502.956900000572205 ], [ 363573.147799998521805, 257514.561299998313189 ], [ 363573.998700000345707, 257517.580200001597404 ], [ 363576.571699999272823, 257534.870700001716614 ], [ 363612.068000003695488, 257531.252999998629093 ], [ 363615.167400002479553, 257512.428800001740456 ], [ 363610.399599999189377, 257504.1570999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87562745, "LATITUDE": 18.34671862, "OBJECTID_1": 21919, "PARCEL_NO_": "105701020700", "Tax_Legal_": "FRYDENDAHL 5-1 EAST END QTR", "Name": "DAWSON, JOAN P", "Address": "6205 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 297600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.30415648100001, "SHAPE_Area": 1095.6230125300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364661.051700003445148, 257509.589800000190735 ], [ 364628.854999996721745, 257502.782400000840425 ], [ 364620.558100000023842, 257530.156599998474121 ], [ 364649.448700003325939, 257546.436200000345707 ], [ 364661.051700003445148, 257509.589800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602012200", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-211", "ACRE": ".137", "LONGITUDE": -64.88473591, "LATITUDE": 18.34675598, "OBJECTID_1": 20937, "PARCEL_NO_": "105602012200", "Tax_Legal_": "ANNAS RETREAT 394-211 NEW QTR", "Name": "KINKITH DANGER and CLARICANE BARBIER DANGER", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18700, "Improved_V": 182800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.049370594300001, "SHAPE_Area": 553.67420407400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363695.330099999904633, 257531.282000001519918 ], [ 363681.80290000140667, 257503.198699999600649 ], [ 363667.613600000739098, 257508.636100001633167 ], [ 363660.279500000178814, 257517.653099998831749 ], [ 363659.354500003159046, 257519.665600001811981 ], [ 363667.998499996960163, 257523.633499998599291 ], [ 363687.155699998140335, 257532.427299998700619 ], [ 363695.330099999904633, 257531.282000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602037100", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-183", "ACRE": ".18", "LONGITUDE": -64.88767565000001, "LATITUDE": 18.34674019, "OBJECTID_1": 21166, "PARCEL_NO_": "105602037100", "Tax_Legal_": "ANNAS RETREAT 394-183 NEW QTR", "Name": "DE WINDT, DONALD & ESLYNNE", "Address": "PO Box 8253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 55700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.30711394399999, "SHAPE_Area": 764.40306839200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363386.050599999725819, 257525.118999999016523 ], [ 363366.164300002157688, 257493.0810999982059 ], [ 363362.922799997031689, 257494.9543999992311 ], [ 363348.339100003242493, 257503.067699998617172 ], [ 363369.029899999499321, 257535.323300000280142 ], [ 363386.050599999725819, 257525.118999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502020600", "MAP": "F9-642-T60", "PARCEL_NAM": "1-T", "ACRE": null, "LONGITUDE": -64.90307514, "LATITUDE": 18.3463291, "OBJECTID_1": 19853, "PARCEL_NO_": "105502020600", "Tax_Legal_": "WINTBERG ESTATE 1-T GREAT NORTHSIDE QTR", "Name": "BARTLETT, BASIL & EMELINE", "Address": "1-T Est. Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 118900, "Improved_V": 307400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.75824721800001, "SHAPE_Area": 4832.6995496999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361697.717799998819828, 257406.598400000482798 ], [ 361685.063900001347065, 257472.144900001585484 ], [ 361694.721699997782707, 257474.334899999201298 ], [ 361700.364100001752377, 257474.592199999839067 ], [ 361711.686599999666214, 257470.674100000411272 ], [ 361724.611000001430511, 257468.035599999129772 ], [ 361735.100199997425079, 257467.277100000530481 ], [ 361748.802199997007847, 257468.02250000089407 ], [ 361764.091499999165535, 257471.736299999058247 ], [ 361769.710500001907349, 257474.73759999871254 ], [ 361777.712499998509884, 257481.980200000107288 ], [ 361784.078500002622604, 257491.953699998557568 ], [ 361784.85249999910593, 257495.759799998253584 ], [ 361783.02759999781847, 257520.653900001198053 ], [ 361785.4358000010252, 257521.940099999308586 ], [ 361787.052000001072884, 257521.531199999153614 ], [ 361801.127999998629093, 257478.37220000103116 ], [ 361801.187299996614456, 257471.406599998474121 ], [ 361799.619599997997284, 257466.116399999707937 ], [ 361798.034000001847744, 257462.936999998986721 ], [ 361792.44370000064373, 257456.558499999344349 ], [ 361704.933300003409386, 257411.512600000947714 ], [ 361697.717799998819828, 257406.598400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601059600", "MAP": "D9-5891-T95", "PARCEL_NAM": "404-329", "ACRE": null, "LONGITUDE": -64.89393542000001, "LATITUDE": 18.34676102, "OBJECTID_1": 20836, "PARCEL_NO_": "105601059600", "Tax_Legal_": "ANNAS RETREAT 404-329 NEW QUARTER", "Name": "SODNER WAGNAC", "Address": "PO Box 10109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013109, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.38280668, "SHAPE_Area": 571.85507639900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362714.951499998569489, 257531.1587999984622 ], [ 362712.910899996757507, 257504.199799999594688 ], [ 362713.749600000679493, 257500.407000001519918 ], [ 362712.986400000751019, 257495.334499999880791 ], [ 362692.848399996757507, 257492.847699999809265 ], [ 362697.522600002586842, 257512.095499999821186 ], [ 362705.438299998641014, 257529.469900000840425 ], [ 362707.938799999654293, 257534.314500000327826 ], [ 362714.951499998569489, 257531.1587999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702010200", "MAP": "G9-1156-T68", "PARCEL_NAM": "52-3A", "ACRE": null, "LONGITUDE": -64.87413574, "LATITUDE": 18.34673022, "OBJECTID_1": 22258, "PARCEL_NO_": "105702010200", "Tax_Legal_": "FRYDENDAHL 52-3A EAST END QTR", "Name": "THOMAS, EDWARD & LUCIA", "Address": "PO Box 302044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32500, "Improved_V": 187300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.970400074, "SHAPE_Area": 1348.1246541200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364820.473200000822544, 257537.703400000929832 ], [ 364813.518500000238419, 257502.182799998670816 ], [ 364786.05179999768734, 257508.079700000584126 ], [ 364773.631599999964237, 257546.186000000685453 ], [ 364820.473200000822544, 257537.703400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87278153, "LATITUDE": 18.34674938, "OBJECTID_1": 22268, "PARCEL_NO_": "105702011400", "Tax_Legal_": "FRYDENDAHL 1C EAST END QTR", "Name": "DONOVAN, CLIFTON & HENRY, ERIC A", "Address": "PO Box 1405", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59500, "Improved_V": 37600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.759897576, "SHAPE_Area": 762.01874847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364951.846400000154972, 257545.322599999606609 ], [ 364953.746799997985363, 257511.563200000673532 ], [ 364930.358300000429153, 257512.004999998956919 ], [ 364930.333099998533726, 257514.960099998861551 ], [ 364930.070600003004074, 257545.77760000154376 ], [ 364951.846400000154972, 257545.322599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601051400", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-92", "ACRE": "0.152", "LONGITUDE": -64.89294154, "LATITUDE": 18.34673902, "OBJECTID_1": 20759, "PARCEL_NO_": "105601051400", "Tax_Legal_": "215-92 ANNAS RETREAT NEW QTR", "Name": "GRANT, CATHERINE & ANALDO", "Address": "PO Box 305834", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 156200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.043229991199993, "SHAPE_Area": 638.75142974200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362793.48309999704361, 257509.226700000464916 ], [ 362803.604900002479553, 257525.721000000834465 ], [ 362826.526600003242493, 257514.019799999892712 ], [ 362825.79110000282526, 257505.545899998396635 ], [ 362824.75789999961853, 257502.609400000423193 ], [ 362821.101800002157688, 257499.345100000500679 ], [ 362814.4425999969244, 257494.252700001001358 ], [ 362810.525399997830391, 257492.6858000010252 ], [ 362805.694099999964237, 257498.169900000095367 ], [ 362801.123999997973442, 257502.348299998790026 ], [ 362798.512599997222424, 257505.351500000804663 ], [ 362795.639899998903275, 257507.440699998289347 ], [ 362793.48309999704361, 257509.226700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87253593, "LATITUDE": 18.34674298, "OBJECTID_1": 22269, "PARCEL_NO_": "105702011500", "Tax_Legal_": "FRYDENDAHL 1CA EAST END QTR", "Name": "JURGEN, STEFAN", "Address": "PO Box 8568", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32500, "Improved_V": 174200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.126500596, "SHAPE_Area": 987.28775430099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364975.52080000191927, 257511.319200001657009 ], [ 364953.746799997985363, 257511.563200000673532 ], [ 364951.846400000154972, 257545.322599999606609 ], [ 364979.266500003635883, 257544.913699999451637 ], [ 364980.954599998891354, 257536.061599999666214 ], [ 364981.7753000035882, 257534.379599999636412 ], [ 364983.54619999974966, 257515.817800000309944 ], [ 364984.391999997198582, 257511.180700000375509 ], [ 364975.52080000191927, 257511.319200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601081000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89185912000001, "LATITUDE": 18.34674594, "OBJECTID_1": 20887, "PARCEL_NO_": "105601081000", "Tax_Legal_": "215-140 ANNAS RETREAT NEW QTR.", "Name": "LORENZO, ELEANOR", "Address": "PO Box 308603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.729378270799998, "SHAPE_Area": 495.47488807600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362940.240699999034405, 257511.971099998801947 ], [ 362922.652900002896786, 257494.095199998468161 ], [ 362910.414300002157688, 257510.882599998265505 ], [ 362927.206600002944469, 257527.485300000756979 ], [ 362940.240699999034405, 257511.971099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602091500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88998698, "LATITUDE": 18.34673063, "OBJECTID_1": 21471, "PARCEL_NO_": "105602091500", "Tax_Legal_": "215-289 ANNAS RETREAT NEW QTR.", "Name": "CHRISTIAN, MONIQUE & R.JR.&RHYMER, A. & HENNIS, A.", "Address": "215-289 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 179000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.259751021, "SHAPE_Area": 600.40497145300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363141.032300002872944, 257511.292399998754263 ], [ 363126.617499999701977, 257499.564300000667572 ], [ 363115.35249999910593, 257496.727899998426437 ], [ 363104.771600000560284, 257508.251400001347065 ], [ 363126.376599997282028, 257527.848799999803305 ], [ 363127.996399998664856, 257527.017700001597404 ], [ 363141.032300002872944, 257511.292399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701023400", "MAP": "D9-8522-T010", "PARCEL_NAM": "394-411-A", "ACRE": ".333", "LONGITUDE": -64.88256153, "LATITUDE": 18.34631469, "OBJECTID_1": 21944, "PARCEL_NO_": "105701023400", "Tax_Legal_": "394-411-A ANNAS RETREAT NO.1 NEW QTR", "Name": "ROUSE, SHENIQUA T.", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.36704579600001, "SHAPE_Area": 1219.7025714599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363883.078900001943111, 257489.290300000458956 ], [ 363917.535300001502037, 257493.197999998927116 ], [ 363923.511399999260902, 257475.900100000202656 ], [ 363924.414800003170967, 257464.508400000631809 ], [ 363923.637299999594688, 257461.124600000679493 ], [ 363914.171899996697903, 257436.349199999123812 ], [ 363912.552100002765656, 257437.180300001055002 ], [ 363906.778399996459484, 257452.331799998879433 ], [ 363901.884800001978874, 257458.83559999987483 ], [ 363883.078900001943111, 257489.290300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87163744, "LATITUDE": 18.34662973, "OBJECTID_1": 22314, "PARCEL_NO_": "105702016400", "Tax_Legal_": "FRYDENDAHL 11B-4 EAST END QTR.", "Name": "DUBLIN, ANNABELLE", "Address": "6632 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021359, "Country": "United States", "Land_Value": 94700, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.775457265, "SHAPE_Area": 1087.8801569 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365085.056999996304512, 257526.570000000298023 ], [ 365067.510600000619888, 257503.839400000870228 ], [ 365058.720200002193451, 257494.479400001466274 ], [ 365048.313699997961521, 257485.528299998492002 ], [ 365045.655599996447563, 257513.581900000572205 ], [ 365066.368000000715256, 257543.30460000038147 ], [ 365085.056999996304512, 257526.570000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90921686, "LATITUDE": 18.34658395, "OBJECTID_1": 19681, "PARCEL_NO_": "105501012700", "Tax_Legal_": "REM. 1CA & 1CA-3B EST. WINTBERG GREAT NORTHSIDE", "Name": "DIMOPOULOS, JOHN & OTHERS", "Address": "PO Box 11969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.286393506, "SHAPE_Area": 564.32512946400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361098.549300000071526, 257505.552499998360872 ], [ 361092.582500003278255, 257448.719500001519918 ], [ 361082.084200002253056, 257450.533399999141693 ], [ 361090.446599997580051, 257510.130300000309944 ], [ 361098.549300000071526, 257505.552499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602032400", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-337", "ACRE": ".170", "LONGITUDE": -64.88822883, "LATITUDE": 18.34669439, "OBJECTID_1": 21122, "PARCEL_NO_": "105602032400", "Tax_Legal_": "394-337 ANNAS RETREAT NEW QTR", "Name": "BARON, ARRON & BEVERLIE-SMITH", "Address": "394-337 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19400, "Improved_V": 170200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.754165578499993, "SHAPE_Area": 544.834155248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363323.217500001192093, 257517.638700000941753 ], [ 363308.937700003385544, 257490.079599998891354 ], [ 363293.538599997758865, 257499.241700001060963 ], [ 363311.032899998128414, 257528.093600001186132 ], [ 363323.217500001192093, 257517.638700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601051900", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-130", "ACRE": "0.138", "LONGITUDE": -64.89352123, "LATITUDE": 18.34672029, "OBJECTID_1": 20764, "PARCEL_NO_": "105601051900", "Tax_Legal_": "215-55&POR 404 ANNAS RET\nNEW QTR.", "Name": "MEYERS, BUFFY D", "Address": "P.O. BOX 3726", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20800, "Improved_V": 98600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.42408583, "SHAPE_Area": 527.94346213100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362750.126599997282028, 257486.970100000500679 ], [ 362749.302000001072884, 257486.392200000584126 ], [ 362747.423500001430511, 257490.36089999973774 ], [ 362746.618299998342991, 257495.335200000554323 ], [ 362743.608800001442432, 257502.960299998521805 ], [ 362737.500699996948242, 257508.027300000190735 ], [ 362736.507100000977516, 257519.338799998164177 ], [ 362736.124700002372265, 257523.69200000166893 ], [ 362737.748400002717972, 257522.979400001466274 ], [ 362739.366400003433228, 257522.359299998730421 ], [ 362764.457400001585484, 257511.3766999989748 ], [ 362755.744400002062321, 257492.94029999896884 ], [ 362754.435000002384186, 257489.143800001591444 ], [ 362750.126599997282028, 257486.970100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602093400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89105756, "LATITUDE": 18.34671549, "OBJECTID_1": 21490, "PARCEL_NO_": "105602093400", "Tax_Legal_": "215-155 ANNAS RETREAT NEW QTR.", "Name": "WILLIAMS, EVELYN", "Address": "ALTONA 178-37", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 91100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.100386569600005, "SHAPE_Area": 526.45042423699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363024.957400001585484, 257506.331599999219179 ], [ 363007.342600002884865, 257491.622000001370907 ], [ 362994.285199999809265, 257509.880300000309944 ], [ 363013.507200002670288, 257525.236299999058247 ], [ 363024.957400001585484, 257506.331599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602012100", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-212", "ACRE": ".125", "LONGITUDE": -64.88454811, "LATITUDE": 18.34671116, "OBJECTID_1": 20936, "PARCEL_NO_": "105602012100", "Tax_Legal_": "394-212ANNAS RETREAT NEW QTR", "Name": "GEORGE, YVONNE", "Address": "PO Box 10754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 149000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.097504722, "SHAPE_Area": 626.57070356700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363708.967399999499321, 257522.467000000178814 ], [ 363706.415500000119209, 257497.343600001186132 ], [ 363687.029899999499321, 257501.195700000971556 ], [ 363681.80290000140667, 257503.198699999600649 ], [ 363695.330099999904633, 257531.282000001519918 ], [ 363696.935999996960163, 257531.057000000029802 ], [ 363709.6587999984622, 257529.274500001221895 ], [ 363708.967399999499321, 257522.467000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701021700", "MAP": "A9-318-T85", "PARCEL_NAM": "53-34", "ACRE": ".63", "LONGITUDE": -64.87801045, "LATITUDE": 18.34655094, "OBJECTID_1": 21928, "PARCEL_NO_": "105701021700", "Tax_Legal_": "#53-34 EST. FRYDENDAHL EASTEND QTR.", "Name": "PICKERING, MARLENE", "Address": "6570 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.51951093100001, "SHAPE_Area": 2249.71570776 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364355.037799999117851, 257461.911200001835823 ], [ 364358.203699998557568, 257468.903200000524521 ], [ 364380.206900000572205, 257536.422100000083447 ], [ 364429.638300001621246, 257507.906899999827147 ], [ 364416.821800000965595, 257497.88060000166297 ], [ 364355.037799999117851, 257461.911200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602093300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89074815, "LATITUDE": 18.34669764, "OBJECTID_1": 21489, "PARCEL_NO_": "105602093300", "Tax_Legal_": "215-123 ANNAS RETREAT NEW QTR.", "Name": "LEWIS, JOSEPH", "Address": "PO Box 10746", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.91523205599999, "SHAPE_Area": 649.342118271 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363060.422600001096725, 257508.099500000476837 ], [ 363038.822999998927116, 257487.868900001049042 ], [ 363024.957400001585484, 257506.331599999219179 ], [ 363046.571400001645088, 257524.873700000345707 ], [ 363060.422600001096725, 257508.099500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601051600", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-90", "ACRE": "0.140", "LONGITUDE": -64.89333104000001, "LATITUDE": 18.34662966, "OBJECTID_1": 20761, "PARCEL_NO_": "105601051600", "Tax_Legal_": "ANNAS RETREAT 215-90 NEW QTR.", "Name": "CALLWOOD, EDRIS & TURNBULL, KE", "Address": "PO Box 7372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 69200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.837567212, "SHAPE_Area": 596.83629900200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362781.737000003457069, 257485.130499999970198 ], [ 362783.9425999969244, 257478.880300000309944 ], [ 362754.435000002384186, 257489.143800001591444 ], [ 362755.744400002062321, 257492.94029999896884 ], [ 362764.457400001585484, 257511.3766999989748 ], [ 362766.245200000703335, 257516.276599999517202 ], [ 362778.776699997484684, 257511.157200001180172 ], [ 362777.903599999845028, 257508.061599999666214 ], [ 362777.10980000346899, 257505.759700000286102 ], [ 362778.379799999296665, 257498.37779999896884 ], [ 362779.552199997007847, 257493.751800000667572 ], [ 362781.737000003457069, 257485.130499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602024800", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-189", "ACRE": ".137", "LONGITUDE": -64.88592624, "LATITUDE": 18.34668164, "OBJECTID_1": 21083, "PARCEL_NO_": "105602024800", "Tax_Legal_": "ANNAS RETREAT 394-189 NEW QTR", "Name": "DONASTORG, ROBERTO & P", "Address": "189 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 111600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.286429003400002, "SHAPE_Area": 472.727843533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363562.029899999499321, 257502.705699998885393 ], [ 363560.060099996626377, 257495.785500001162291 ], [ 363537.416000001132488, 257503.543000001460314 ], [ 363540.192900002002716, 257510.337499998509884 ], [ 363541.773199997842312, 257514.150100000202656 ], [ 363544.270900003612041, 257521.544199999421835 ], [ 363566.063500002026558, 257516.656199999153614 ], [ 363564.393100000917912, 257509.269000001251698 ], [ 363562.029899999499321, 257502.705699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702010300", "MAP": "G9-1156-T68", "PARCEL_NAM": "52-3", "ACRE": null, "LONGITUDE": -64.873832, "LATITUDE": 18.346656, "OBJECTID_1": 22259, "PARCEL_NO_": "105702010300", "Tax_Legal_": "FRYDENDAHL 52-3 EAST END QTR", "Name": "THOMAS, ELROY & LUCIA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 153900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.62690143699999, "SHAPE_Area": 1012.64886426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364847.122900001704693, 257533.066399998962879 ], [ 364840.985299997031689, 257496.285900000482798 ], [ 364813.518500000238419, 257502.182799998670816 ], [ 364820.473200000822544, 257537.703400000929832 ], [ 364847.122900001704693, 257533.066399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87190589, "LATITUDE": 18.34651153, "OBJECTID_1": 22290, "PARCEL_NO_": "105702013500", "Tax_Legal_": "FRYDENDAHL 11 EAST END QTR", "Name": "LEONARD, ALFRED H", "Address": "PO Box 7461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47900, "Improved_V": 123000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.560020487, "SHAPE_Area": 1336.2138411200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365048.313699997961521, 257485.528299998492002 ], [ 365033.909800000488758, 257472.533700000494719 ], [ 365030.698899999260902, 257470.818599998950958 ], [ 365027.471900001168251, 257471.003299999982119 ], [ 365025.033100001513958, 257473.305399999022484 ], [ 365019.013099998235703, 257517.374699998646975 ], [ 365043.821800000965595, 257539.531399998813868 ], [ 365045.655599996447563, 257513.581900000572205 ], [ 365048.313699997961521, 257485.528299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602037200", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-182", "ACRE": ".180", "LONGITUDE": -64.88750906, "LATITUDE": 18.34664104, "OBJECTID_1": 21167, "PARCEL_NO_": "105602037200", "Tax_Legal_": "394-182 ANNAS RETREAT NEW QTR", "Name": "LETTSOME, BENJAMIN & GWENDOLYN (LIFE ESTATE)", "Address": "PO Box 6403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22600, "Improved_V": 307100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.44042813900001, "SHAPE_Area": 779.29261440300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363403.0945999994874, 257512.170699998736382 ], [ 363385.605700001120567, 257482.685600001364946 ], [ 363366.164300002157688, 257493.0810999982059 ], [ 363386.050599999725819, 257525.118999999016523 ], [ 363403.0945999994874, 257512.170699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602091400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89031013, "LATITUDE": 18.34668852, "OBJECTID_1": 21470, "PARCEL_NO_": "105602091400", "Tax_Legal_": "215-292 ANNAS RETREAT NEW QTR.", "Name": "O'MARROW, MARJORIE, ALLEN HAYNES, SR. and ALLEN HAYNES, JR.", "Address": "PO Box 6581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20800, "Improved_V": 184800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.650323924099993, "SHAPE_Area": 494.11128208899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363104.771600000560284, 257508.251400001347065 ], [ 363084.770199999213219, 257489.722600001841784 ], [ 363073.361400000751019, 257503.77250000089407 ], [ 363092.556400001049042, 257522.294700000435114 ], [ 363104.771600000560284, 257508.251400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502020500", "MAP": "D9-711-T68", "PARCEL_NAM": "1Q", "ACRE": "1.85", "LONGITUDE": -64.90429083, "LATITUDE": 18.34648112, "OBJECTID_1": 19852, "PARCEL_NO_": "105502020500", "Tax_Legal_": "1Q&1R-1 WINTBERG No.3 GREAT NORTHSIDE QTR", "Name": "MODERN DAY DEVELOPERS INC", "Address": "PO Box 305675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 338100, "Improved_V": 110600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 367.11529923099999, "SHAPE_Area": 7098.8807057200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361621.015699997544289, 257418.002999998629093 ], [ 361620.374099999666214, 257416.844000000506639 ], [ 361577.427299998700619, 257432.330400001257658 ], [ 361557.907799996435642, 257439.368999999016523 ], [ 361561.134499996900558, 257442.633000001311302 ], [ 361561.924699999392033, 257444.539299998432398 ], [ 361564.314800001680851, 257447.9364 ], [ 361567.475400000810623, 257455.561599999666214 ], [ 361570.610699996352196, 257466.1418999992311 ], [ 361571.370300002396107, 257471.636599998921156 ], [ 361568.830799996852875, 257485.759100001305342 ], [ 361566.352600000798702, 257492.704900000244379 ], [ 361562.27419999986887, 257498.15989999845624 ], [ 361558.208499997854233, 257502.13740000128746 ], [ 361558.181500002741814, 257505.303599998354912 ], [ 361559.781599998474121, 257506.794399999082088 ], [ 361577.502499997615814, 257509.050299998372793 ], [ 361600.07379999756813, 257509.868400000035763 ], [ 361629.122699998319149, 257507.572999998927116 ], [ 361650.930900000035763, 257503.318500000983477 ], [ 361682.528099998831749, 257485.845300000160933 ], [ 361683.370399996638298, 257481.630300000309944 ], [ 361671.315200001001358, 257476.887600000947714 ], [ 361660.879900000989437, 257471.313700001686811 ], [ 361656.877099998295307, 257467.903499998152256 ], [ 361642.491200000047684, 257452.798099998384714 ], [ 361631.335900001227856, 257437.085799999535084 ], [ 361629.73759999871254, 257435.38399999961257 ], [ 361621.015699997544289, 257418.002999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87978801, "LATITUDE": 18.34638054, "OBJECTID_1": 21852, "PARCEL_NO_": "105701011600", "Tax_Legal_": "6 TABOR & HARMONY EAST END QTR-", "Name": "ROUSE, WENDE & ORVILLE", "Address": "6625 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 194900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 449.34210493699999, "SHAPE_Area": 6597.9982536099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364271.015900000929832, 257480.644099999219179 ], [ 364161.609099999070168, 257450.195599999278784 ], [ 364110.123800002038479, 257435.842000000178814 ], [ 364107.65089999884367, 257442.154599998146296 ], [ 364106.020300000905991, 257444.252199999988079 ], [ 364104.361000001430511, 257449.727000001817942 ], [ 364101.893500000238419, 257455.406300000846386 ], [ 364100.262900002300739, 257457.503899998962879 ], [ 364258.534599997103214, 257525.927099999040365 ], [ 364265.015699997544289, 257522.391499999910593 ], [ 364287.511500000953674, 257532.074799999594688 ], [ 364273.380900003015995, 257486.996300000697374 ], [ 364271.015900000929832, 257480.644099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90899781, "LATITUDE": 18.34648911, "OBJECTID_1": 19639, "PARCEL_NO_": "105501010200", "Tax_Legal_": "2A-3 & POR.OF 3A ST.JOSEPH&ROSENAL No.4 GREAT NORTHSIDE QTR.", "Name": "ELGADI, JARRAH", "Address": "46B Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022603, "Country": "United States", "Land_Value": 651800, "Improved_V": 486000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.60545562, "SHAPE_Area": 1869.2161735499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361098.549300000071526, 257505.552499998360872 ], [ 361109.092500001192093, 257498.461599998176098 ], [ 361118.037399999797344, 257489.6689000017941 ], [ 361122.927500002086163, 257483.587200000882149 ], [ 361144.188299998641014, 257448.930799998342991 ], [ 361145.842299997806549, 257444.089200001209974 ], [ 361141.808899998664856, 257444.267299998551607 ], [ 361112.774499997496605, 257444.874000001698732 ], [ 361092.582500003278255, 257448.719500001519918 ], [ 361098.549300000071526, 257505.552499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702017400", "MAP": "D9-1262-T76", "PARCEL_NAM": "52-4", "ACRE": null, "LONGITUDE": -64.87354014, "LATITUDE": 18.34658569, "OBJECTID_1": 22324, "PARCEL_NO_": "105702017400", "Tax_Legal_": "FRYDENDAHL 52-4 EAST END QTR.", "Name": "GORDON, JACQUELINE", "Address": "246 Harmony Blvd", "City": "Pooler", "State": "Georgia", "Zip": 31322, "Country": "United States", "Land_Value": 36600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.60184632, "SHAPE_Area": 1296.38481907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364884.358900003135204, 257516.272599998861551 ], [ 364878.883799999952316, 257496.385000001639128 ], [ 364875.723300002515316, 257488.759700000286102 ], [ 364840.985299997031689, 257496.285900000482798 ], [ 364847.122900001704693, 257533.066399998962879 ], [ 364847.104900002479553, 257535.177200000733137 ], [ 364884.358900003135204, 257516.272599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602024000", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-174", "ACRE": ".152", "LONGITUDE": -64.8869368, "LATITUDE": 18.34663741, "OBJECTID_1": 21075, "PARCEL_NO_": "105602024000", "Tax_Legal_": "394-174 ANNAS RETREAT NEW QTR C", "Name": "Patricia Richardson and Minerva E Harrigan", "Address": "Po Box 304963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 126100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.598644924, "SHAPE_Area": 614.70302370299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363462.05969999730587, 257500.40989999845624 ], [ 363444.446699999272823, 257485.489199999719858 ], [ 363438.741400003433228, 257492.619699999690056 ], [ 363428.984700001776218, 257502.039000000804663 ], [ 363445.73929999768734, 257523.074400000274181 ], [ 363462.05969999730587, 257500.40989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89500811000001, "LATITUDE": 18.34665833, "OBJECTID_1": 20538, "PARCEL_NO_": "105601020300", "Tax_Legal_": "188 ANNAS RETREAT\nNEW QTR", "Name": "JAHMED A MILLS and NADIA MONROSE MILLS", "Address": "4204 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38900, "Improved_V": 55100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.911137553, "SHAPE_Area": 1134.8592899400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362573.629199996590614, 257478.361900001764297 ], [ 362574.410400003194809, 257481.323600001633167 ], [ 362574.34740000218153, 257488.711399998515844 ], [ 362570.234999999403954, 257498.177000001072884 ], [ 362570.998099997639656, 257503.249499998986721 ], [ 362572.580200001597404, 257506.850999999791384 ], [ 362597.507500000298023, 257515.07660000026226 ], [ 362602.340000003576279, 257515.749400001019239 ], [ 362609.618400000035763, 257513.275800000876188 ], [ 362612.872400000691414, 257509.925000000745058 ], [ 362613.702100001275539, 257507.187600001692772 ], [ 362614.641500003635883, 257491.574299998581409 ], [ 362573.629199996590614, 257478.361900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602082300", "MAP": "C9-272-T81", "PARCEL_NAM": "215-226", "ACRE": ".138", "LONGITUDE": -64.88912221, "LATITUDE": 18.34668351, "OBJECTID_1": 21392, "PARCEL_NO_": "105602082300", "Tax_Legal_": "215-226 ANNAS RETREAT NEW QTR.", "Name": "GRIFFITH, ELEANOR", "Address": "21786 Kings Crossing Ter", "City": "Ashburn", "State": "Virginia", "Zip": 20147, "Country": "United States", "Land_Value": 20200, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.116965152600002, "SHAPE_Area": 447.39132693200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363229.780599996447563, 257505.686000000685453 ], [ 363210.544200003147125, 257492.018500000238419 ], [ 363199.11370000243187, 257508.601399999111891 ], [ 363219.172600001096725, 257520.375700000673532 ], [ 363229.780599996447563, 257505.686000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602013600", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-202", "ACRE": ".154", "LONGITUDE": -64.8850875, "LATITUDE": 18.34664297, "OBJECTID_1": 20951, "PARCEL_NO_": "105602013600", "Tax_Legal_": "394-202 ANNAS RETREAT NEW QTR", "Name": "MAVIS V ROBLES TRUST", "Address": "PO Box 873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22600, "Improved_V": 99100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.82109384100001, "SHAPE_Area": 922.69611072500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363654.066399998962879, 257489.737900000065565 ], [ 363650.671700000762939, 257484.913199998438358 ], [ 363634.435300000011921, 257496.220300000160933 ], [ 363614.019799999892712, 257510.437800001353025 ], [ 363615.167400002479553, 257512.428800001740456 ], [ 363647.326399996876717, 257523.668800000101328 ], [ 363649.797499999403954, 257517.567299999296665 ], [ 363651.422700002789497, 257516.103000000119209 ], [ 363660.4054000005126, 257502.877599999308586 ], [ 363660.437799997627735, 257499.078200001269579 ], [ 363659.64580000191927, 257497.383000001311302 ], [ 363654.066399998962879, 257489.737900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601011900", "MAP": "B9-178-T67", "PARCEL_NAM": "206", "ACRE": null, "LONGITUDE": -64.89547075, "LATITUDE": 18.34661558, "OBJECTID_1": 20456, "PARCEL_NO_": "105601011900", "Tax_Legal_": "ANNAS RETREAT 206 NEW QTR", "Name": "RITA A BRADY TRUST", "Address": "PO Box 12406", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45700, "Improved_V": 237700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.78301485599999, "SHAPE_Area": 1018.7766869 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362561.367299996316433, 257497.893300000578165 ], [ 362561.383500002324581, 257495.993599999696016 ], [ 362565.495999999344349, 257486.528000000864267 ], [ 362564.740000002086163, 257480.611200001090765 ], [ 362561.55969999730587, 257475.307900000363588 ], [ 362557.553300000727177, 257472.31980000063777 ], [ 362518.648900002241135, 257495.643800001591444 ], [ 362521.820299997925758, 257502.002599999308586 ], [ 362524.196000002324581, 257507.088300000876188 ], [ 362527.361900001764297, 257514.080299999564886 ], [ 362561.367299996316433, 257497.893300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87225044, "LATITUDE": 18.34661101, "OBJECTID_1": 22289, "PARCEL_NO_": "105702013400", "Tax_Legal_": "11-3 FRYDENDAHL EAST END QTR", "Name": "RAIMER, CRESIDA MCCLEAN", "Address": "PO Box 11508", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49000, "Improved_V": 159400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.47709575, "SHAPE_Area": 633.086827169 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365011.801299996674061, 257512.03830000013113 ], [ 364986.971000000834465, 257492.414500001817942 ], [ 364984.391999997198582, 257511.180700000375509 ], [ 364983.54619999974966, 257515.817800000309944 ], [ 365009.191699996590614, 257534.392900001257658 ], [ 365011.801299996674061, 257512.03830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602032300", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-355", "ACRE": ".183", "LONGITUDE": -64.88875858, "LATITUDE": 18.34661345, "OBJECTID_1": 21121, "PARCEL_NO_": "105602032300", "Tax_Legal_": "394-355 ANNAS RETREAT NEW QTR", "Name": "MARTIN, JOSEPH", "Address": "394-55 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 96400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.438211928, "SHAPE_Area": 735.38053172000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363270.93129999935627, 257502.645300000905991 ], [ 363250.190099999308586, 257476.299899999052286 ], [ 363248.550499998033047, 257479.452899999916553 ], [ 363241.17509999871254, 257493.324700001627207 ], [ 363234.66160000115633, 257500.659699998795986 ], [ 363257.081900000572205, 257519.208299998193979 ], [ 363264.430399999022484, 257508.502700001001358 ], [ 363270.93129999935627, 257502.645300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601057700", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-105", "ACRE": ".14", "LONGITUDE": -64.89424812, "LATITUDE": 18.3466341, "OBJECTID_1": 20820, "PARCEL_NO_": "105601057700", "Tax_Legal_": "ANNAS RETREAT 404-105 NEW QTR.", "Name": "BROWNE, DENFIELD", "Address": "4404-105 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 81800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.6086919, "SHAPE_Area": 698.93734735500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362659.334299996495247, 257509.679400000721216 ], [ 362688.985399998724461, 257507.86939999833703 ], [ 362686.353000000119209, 257498.071899998933077 ], [ 362684.880599997937679, 257481.594500001519918 ], [ 362657.422799997031689, 257486.436000000685453 ], [ 362658.1824000030756, 257491.930700000375509 ], [ 362659.334299996495247, 257509.679400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601081400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89137255, "LATITUDE": 18.34662571, "OBJECTID_1": 20891, "PARCEL_NO_": "105601081400", "Tax_Legal_": "215-151 ANNAS RETREAT NEW QTR.", "Name": "HODGE, MILDRED & LESLIE", "Address": "PO Box 10198", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 81200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.528970945899999, "SHAPE_Area": 595.98011772999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362993.581399999558926, 257497.842199999839067 ], [ 362972.761100001633167, 257480.784299999475479 ], [ 362959.714500002563, 257497.776099998503923 ], [ 362979.722999997437, 257515.46059999987483 ], [ 362990.309399999678135, 257503.303800001740456 ], [ 362993.581399999558926, 257497.842199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602032600", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-336", "ACRE": ".181", "LONGITUDE": -64.88807626000001, "LATITUDE": 18.34660575, "OBJECTID_1": 21124, "PARCEL_NO_": "105602032600", "Tax_Legal_": "ANNAS RETREAT 394-336 NEW QTR", "Name": "DICKERSON, BEVERLY", "Address": "304 St. Johns Place", "City": "Brooklyn", "State": "New York", "Zip": 112385688, "Country": "United States", "Land_Value": 24700, "Improved_V": 88400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.538052014, "SHAPE_Area": 633.00126070399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363341.046300001442432, 257507.229899998754263 ], [ 363327.565600000321865, 257480.521800000220537 ], [ 363308.937700003385544, 257490.079599998891354 ], [ 363323.217500001192093, 257517.638700000941753 ], [ 363328.890500001609325, 257514.307599999010563 ], [ 363341.046300001442432, 257507.229899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602082200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88945385, "LATITUDE": 18.34661536, "OBJECTID_1": 21391, "PARCEL_NO_": "105602082200", "Tax_Legal_": "ANNAS RETREAT 215-224 NEW QTR.", "Name": "BREWSTER, ROSALIA", "Address": "PO Box 60086", "City": "Savannah", "State": "Georgia", "Zip": 31420, "Country": "United States", "Land_Value": 21600, "Improved_V": 107700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.185370542399994, "SHAPE_Area": 591.89411634299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363196.781099997460842, 257498.449799999594688 ], [ 363175.15089999884367, 257481.807500001043081 ], [ 363162.11150000244379, 257497.954900000244379 ], [ 363183.729099996387959, 257516.074799999594688 ], [ 363196.781099997460842, 257498.449799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602012000", "MAP": null, "PARCEL_NAM": "394-28", "ACRE": null, "LONGITUDE": -64.88434103, "LATITUDE": 18.34669214, "OBJECTID_1": 20935, "PARCEL_NO_": "105602012000", "Tax_Legal_": "394-28 ANNAS RETREAT NEW QTR", "Name": "KING, SR , ALBERTO & D. C , C", "Address": "PO Box 304582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 3000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.857553666, "SHAPE_Area": 762.30582819000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363730.622900001704693, 257495.430799998342991 ], [ 363719.334499999880791, 257495.33839999884367 ], [ 363706.415500000119209, 257497.343600001186132 ], [ 363708.967399999499321, 257522.467000000178814 ], [ 363709.6587999984622, 257529.274500001221895 ], [ 363734.102799996733665, 257525.849700000137091 ], [ 363732.046700000762939, 257517.607200000435114 ], [ 363730.622900001704693, 257495.430799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502023000", "MAP": "D9-3979-T87", "PARCEL_NAM": "1P REM", "ACRE": "1.00", "LONGITUDE": -64.90583528000001, "LATITUDE": 18.34625104, "OBJECTID_1": 19876, "PARCEL_NO_": "105502023000", "Tax_Legal_": "WINTBERG ESTATE 1P REM. No.3 GREAT NORTHSIDE QTR", "Name": "KNIGHT, NICHOLE M.", "Address": "PO Box 6495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 140000, "Improved_V": 365200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.77180775300002, "SHAPE_Area": 3900.7959728800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361486.888999998569489, 257481.807700000703335 ], [ 361463.294699996709824, 257422.630100000649691 ], [ 361460.087700001895428, 257392.218499999493361 ], [ 361426.825599998235703, 257401.003800000995398 ], [ 361425.968999996781349, 257406.907400000840425 ], [ 361423.683799996972084, 257485.837699998170137 ], [ 361437.407300002872944, 257484.050200000405312 ], [ 361460.027199998497963, 257479.168999999761581 ], [ 361476.959799997508526, 257479.307599999010563 ], [ 361486.888999998569489, 257481.807700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602013800", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-194", "ACRE": "0.20", "LONGITUDE": -64.88559769, "LATITUDE": 18.34658252, "OBJECTID_1": 20953, "PARCEL_NO_": "105602013800", "Tax_Legal_": "394-194 ANNAS RETREAT NEW QTR", "Name": "WILSON, VALENCIA F", "Address": "PO Box 8902", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 137800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.94163518400001, "SHAPE_Area": 804.04816589400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363599.265900000929832, 257485.911899998784065 ], [ 363597.130300000309944, 257482.206700000911951 ], [ 363566.871100001037121, 257493.39299999922514 ], [ 363567.737000003457069, 257495.364199999719858 ], [ 363573.147799998521805, 257514.561299998313189 ], [ 363609.679899998009205, 257502.956900000572205 ], [ 363604.038999997079372, 257493.550400000065565 ], [ 363599.265900000929832, 257485.911899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601081100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89173226, "LATITUDE": 18.34659565, "OBJECTID_1": 20888, "PARCEL_NO_": "105601081100", "Tax_Legal_": "215-139 ANNAS RETREAT NEW QTR.", "Name": "RABSATT, YVONNE", "Address": "PO Box 11803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 131800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.5171727229, "SHAPE_Area": 565.34396326000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362955.722499996423721, 257493.099300000816584 ], [ 362934.885999999940395, 257477.941199999302626 ], [ 362922.652900002896786, 257494.095199998468161 ], [ 362940.240699999034405, 257511.971099998801947 ], [ 362955.722499996423721, 257493.099300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602091700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88986674, "LATITUDE": 18.34657708, "OBJECTID_1": 21473, "PARCEL_NO_": "105602091700", "Tax_Legal_": "ANNAS RETREAT 215-286 NEW QTR.", "Name": "CHRISTIAN, DENISE", "Address": "PO Box 502415", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20200, "Improved_V": 105900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.52414946899999, "SHAPE_Area": 638.02237366500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363152.433899998664856, 257498.086800001561642 ], [ 363148.481499999761581, 257488.766399998217821 ], [ 363140.477700002491474, 257481.7347999997437 ], [ 363130.828900001943111, 257478.489399999380112 ], [ 363118.610200002789497, 257492.954799998551607 ], [ 363115.35249999910593, 257496.727899998426437 ], [ 363126.617499999701977, 257499.564300000667572 ], [ 363141.032300002872944, 257511.292399998754263 ], [ 363152.433899998664856, 257498.086800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601051700", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-91", "ACRE": "0.141", "LONGITUDE": -64.89313424, "LATITUDE": 18.34658485, "OBJECTID_1": 20762, "PARCEL_NO_": "105601051700", "Tax_Legal_": "215-91 ANNAS RETREAT NEW QTR.", "Name": "OTTLEY, VIOLA & SAMUEL", "Address": "PO Box 1033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20800, "Improved_V": 124100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.495820883299999, "SHAPE_Area": 568.02781865099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362786.304300002753735, 257503.810100000351667 ], [ 362787.642300002276897, 257505.803300000727177 ], [ 362792.191100001335144, 257504.013399999588728 ], [ 362795.524800002574921, 257502.505300000309944 ], [ 362799.731700003147125, 257498.060300000011921 ], [ 362802.986100003123283, 257494.805900000035763 ], [ 362807.510499998927116, 257488.455899998545647 ], [ 362791.265000000596046, 257476.126299999654293 ], [ 362787.515399999916553, 257477.637600000947714 ], [ 362783.9425999969244, 257478.880300000309944 ], [ 362781.737000003457069, 257485.130499999970198 ], [ 362779.552199997007847, 257493.751800000667572 ], [ 362778.379799999296665, 257498.37779999896884 ], [ 362777.10980000346899, 257505.759700000286102 ], [ 362777.903599999845028, 257508.061599999666214 ], [ 362781.792900003492832, 257507.029699999839067 ], [ 362785.285400003194809, 257504.807199999690056 ], [ 362786.304300002753735, 257503.810100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602037300", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-181", "ACRE": ".168", "LONGITUDE": -64.88734772, "LATITUDE": 18.34654155, "OBJECTID_1": 21168, "PARCEL_NO_": "105602037300", "Tax_Legal_": "ANNAS RETREAT 394-181 NEW QTR", "Name": "CLEMENT, VINCENT & WANDA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21300, "Improved_V": 125300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.334186214, "SHAPE_Area": 632.83080221299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363420.156599998474121, 257497.111600000411272 ], [ 363396.170500002801418, 257473.061700001358986 ], [ 363385.605700001120567, 257482.685600001364946 ], [ 363403.0945999994874, 257512.170699998736382 ], [ 363414.462099999189377, 257502.975600000470877 ], [ 363420.156599998474121, 257497.111600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602093100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89063129, "LATITUDE": 18.34655639, "OBJECTID_1": 21487, "PARCEL_NO_": "105602093100", "Tax_Legal_": "215-124 ANNAS RETREAT NEW QTR.", "Name": "PETERSEN, DANIEL J & LEROY JACKSON", "Address": "PO Box 11283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 96800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.041699294200001, "SHAPE_Area": 523.81202126999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363071.833200000226498, 257493.838599998503923 ], [ 363048.615599997341633, 257474.227899998426437 ], [ 363038.822999998927116, 257487.868900001049042 ], [ 363060.422600001096725, 257508.099500000476837 ], [ 363071.833200000226498, 257493.838599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602091600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89019166, "LATITUDE": 18.34655508, "OBJECTID_1": 21472, "PARCEL_NO_": "105602091600", "Tax_Legal_": "215-291 ANNAS RETREAT NEW QTR.", "Name": "RICHARDSON, DEANNE", "Address": "PO Box 502366", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18600, "Improved_V": 139000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.860700511900006, "SHAPE_Area": 562.36602149299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363118.610200002789497, 257492.954799998551607 ], [ 363097.802500002086163, 257474.419399999082088 ], [ 363084.770199999213219, 257489.722600001841784 ], [ 363104.771600000560284, 257508.251400001347065 ], [ 363115.35249999910593, 257496.727899998426437 ], [ 363118.610200002789497, 257492.954799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601052000", "MAP": "C9-240-T79", "PARCEL_NAM": "215-54", "ACRE": "0.14", "LONGITUDE": -64.89372619, "LATITUDE": 18.34656059, "OBJECTID_1": 20765, "PARCEL_NO_": "105601052000", "Tax_Legal_": "215-54&POR 404 ANNAS RET NEW QTR.", "Name": "VANCE, BERNICE", "Address": "PO Box 176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20800, "Improved_V": 100000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.098370532299995, "SHAPE_Area": 523.55478815100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362713.337700001895428, 257497.669100001454353 ], [ 362732.473800003528595, 257499.197799999266863 ], [ 362739.365000002086163, 257497.315900001674891 ], [ 362745.352200001478195, 257482.300500001758337 ], [ 362719.587999999523163, 257477.656700000166893 ], [ 362717.172600001096725, 257477.214800000190735 ], [ 362712.986400000751019, 257495.334499999880791 ], [ 362713.337700001895428, 257497.669100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602093200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89093574, "LATITUDE": 18.34653452, "OBJECTID_1": 21488, "PARCEL_NO_": "105602093200", "Tax_Legal_": "215-154 ANNAS RETREAT NEW QTR.", "Name": "CHARLES A. PAYNE LIVING TRUST", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 106500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.450557868499999, "SHAPE_Area": 597.25806416600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363038.822999998927116, 257487.868900001049042 ], [ 363022.045100003480911, 257469.577500000596046 ], [ 363010.625399999320507, 257484.893899999558926 ], [ 363007.342600002884865, 257491.622000001370907 ], [ 363024.957400001585484, 257506.331599999219179 ], [ 363038.822999998927116, 257487.868900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602024900", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-188", "ACRE": ".144", "LONGITUDE": -64.88600249, "LATITUDE": 18.34650337, "OBJECTID_1": 21084, "PARCEL_NO_": "105602024900", "Tax_Legal_": "ANNAS RETREAT 394-188 NEW QTR", "Name": "DOROTHY H. JOSEPH LIVING TRUST", "Address": "PO Box 7693", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010693, "Country": "United States", "Land_Value": 17600, "Improved_V": 213100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.127539721900007, "SHAPE_Area": 532.75403743799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363552.954199999570847, 257479.675599999725819 ], [ 363550.574500001966953, 257474.10020000115037 ], [ 363528.297899998724461, 257485.000300001353025 ], [ 363531.485299997031689, 257491.267799999564886 ], [ 363533.873700000345707, 257494.875900000333786 ], [ 363537.416000001132488, 257503.543000001460314 ], [ 363560.060099996626377, 257495.785500001162291 ], [ 363559.282499998807907, 257494.081799998879433 ], [ 363552.954199999570847, 257479.675599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90747778, "LATITUDE": 18.34629711, "OBJECTID_1": 19848, "PARCEL_NO_": "105502020100", "Tax_Legal_": "WINTBERG ESTATE 1K GREAT NORTHSIDE QTR", "Name": "NELSON, JAMES & WUBNESH", "Address": "PO Box 8739", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 168200, "Improved_V": 460300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.914172382, "SHAPE_Area": 6057.5945517099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361309.94879999756813, 257490.184099998325109 ], [ 361310.687899999320507, 257403.430700000375509 ], [ 361295.367899999022484, 257403.305399999022484 ], [ 361279.214699998497963, 257406.339600000530481 ], [ 361266.304700002074242, 257407.28940000012517 ], [ 361253.4037000015378, 257407.183800000697374 ], [ 361238.902699999511242, 257405.587400000542402 ], [ 361236.63910000026226, 257481.9847999997437 ], [ 361251.109600000083447, 257487.16950000077486 ], [ 361267.210600003600121, 257490.256499998271465 ], [ 361285.750399999320507, 257491.041600000113249 ], [ 361309.94879999756813, 257490.184099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602032900", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-335", "ACRE": ".172", "LONGITUDE": -64.88788414, "LATITUDE": 18.34650159, "OBJECTID_1": 21127, "PARCEL_NO_": "105602032900", "Tax_Legal_": "394-335 ANNAS RETREAT NEW QTR", "Name": "LEONARD, SHARON", "Address": "PO Box 7756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 116400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.873037556, "SHAPE_Area": 763.54920261200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363362.922799997031689, 257494.9543999992311 ], [ 363350.257399998605251, 257467.197500001639128 ], [ 363336.472800001502037, 257476.161699999123812 ], [ 363327.565600000321865, 257480.521800000220537 ], [ 363341.046300001442432, 257507.229899998754263 ], [ 363348.339100003242493, 257503.067699998617172 ], [ 363362.922799997031689, 257494.9543999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9068544, "LATITUDE": 18.34629316, "OBJECTID_1": 19849, "PARCEL_NO_": "105502020200", "Tax_Legal_": "WINTBERG ESTATE 1L GREAT NORTHSIDE QTR", "Name": "DUKES, MARTIN W. & JULIE E", "Address": "PO Box 301795", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 149900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.64286366800002, "SHAPE_Area": 5218.1288285299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361376.087999999523163, 257488.192299999296665 ], [ 361366.325199998915195, 257403.675000000745058 ], [ 361310.687899999320507, 257403.430700000375509 ], [ 361309.94879999756813, 257490.184099998325109 ], [ 361376.087999999523163, 257488.192299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602082500", "MAP": "C9-272-T81", "PARCEL_NAM": "215-229", "ACRE": ".138", "LONGITUDE": -64.88897829, "LATITUDE": 18.34650067, "OBJECTID_1": 21394, "PARCEL_NO_": "105602082500", "Tax_Legal_": "215-229 ANNAS RETREAT NEW QTR.", "Name": "PARKER, WINSTON", "Address": "215-229 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 102800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.46203158199999, "SHAPE_Area": 777.33763173800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363248.550499998033047, 257479.452899999916553 ], [ 363228.497000001370907, 257467.045299999415874 ], [ 363210.544200003147125, 257492.018500000238419 ], [ 363229.780599996447563, 257505.686000000685453 ], [ 363234.66160000115633, 257500.659699998795986 ], [ 363241.17509999871254, 257493.324700001627207 ], [ 363248.550499998033047, 257479.452899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90631344000001, "LATITUDE": 18.34625556, "OBJECTID_1": 19850, "PARCEL_NO_": "105502020300", "Tax_Legal_": "WINTBERG ESTATE 1M GREAT NORTHSIDE QTR", "Name": "DUKES, MARTIN W. & JULIE E", "Address": "PO Box 301795", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 167300, "Improved_V": 722400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.59745468199998, "SHAPE_Area": 4497.4748743199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361426.825599998235703, 257401.003800000995398 ], [ 361415.510300002992153, 257404.077599998563528 ], [ 361366.325199998915195, 257403.675000000745058 ], [ 361376.087999999523163, 257488.192299999296665 ], [ 361403.509800001978874, 257487.572399999946356 ], [ 361423.683799996972084, 257485.837699998170137 ], [ 361425.968999996781349, 257406.907400000840425 ], [ 361426.825599998235703, 257401.003800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702014500", "MAP": "F9-4057-T73", "PARCEL_NAM": "11AE", "ACRE": null, "LONGITUDE": -64.87309393, "LATITUDE": 18.34653551, "OBJECTID_1": 22298, "PARCEL_NO_": "105702014500", "Tax_Legal_": "FRYDENDAHL 11AE EAST END QTR", "Name": "BELL, PAULETTE", "Address": "3234 Shingler Ter", "City": "Deltona", "State": "Florida", "Zip": 32738, "Country": "United States", "Land_Value": 32400, "Improved_V": 12200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.575020788, "SHAPE_Area": 911.88441237300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364930.358300000429153, 257512.004999998956919 ], [ 364928.104800000786781, 257492.565999999642372 ], [ 364884.538800001144409, 257495.164700001478195 ], [ 364890.811200000345707, 257516.11430000141263 ], [ 364930.333099998533726, 257514.960099998861551 ], [ 364930.358300000429153, 257512.004999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602032500", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-356", "ACRE": ".224", "LONGITUDE": -64.88861218, "LATITUDE": 18.34644542, "OBJECTID_1": 21123, "PARCEL_NO_": "105602032500", "Tax_Legal_": "394-356 ANNAS RETREAT NEW QTR", "Name": "PLASKETT, YVONNE", "Address": "PO Box 8243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 127400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.63635122399999, "SHAPE_Area": 870.52712932400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363288.765500001609325, 257491.603300001472235 ], [ 363264.082699999213219, 257454.671000000089407 ], [ 363259.176500000059605, 257462.652399998158216 ], [ 363250.190099999308586, 257476.299899999052286 ], [ 363270.93129999935627, 257502.645300000905991 ], [ 363288.765500001609325, 257491.603300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601012000", "MAP": "B9-178-T67", "PARCEL_NAM": "207", "ACRE": null, "LONGITUDE": -64.89559589, "LATITUDE": 18.34644796, "OBJECTID_1": 20457, "PARCEL_NO_": "105601012000", "Tax_Legal_": "207 ANNAS RETREAT NEW QTR", "Name": "FRANCIS, LUDRIC & ALINE C.", "Address": "PO Box 304202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34600, "Improved_V": 85000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.22217935399999, "SHAPE_Area": 990.09633593399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362557.553300000727177, 257472.31980000063777 ], [ 362539.927799999713898, 257458.876600001007318 ], [ 362536.740299999713898, 257454.417500000447035 ], [ 362507.536799997091293, 257474.865699999034405 ], [ 362518.648900002241135, 257495.643800001591444 ], [ 362557.553300000727177, 257472.31980000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602013700", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-201", "ACRE": ".218", "LONGITUDE": -64.88522772, "LATITUDE": 18.34649063, "OBJECTID_1": 20952, "PARCEL_NO_": "105602013700", "Tax_Legal_": "ANNAS RETREAT 394-201 NEW QTR", "Name": "MONELL, LUZ G. & DAVID D. DORIVAL,JR.", "Address": "394-201 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32700, "Improved_V": 164200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.404570815, "SHAPE_Area": 956.13169411700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363639.725400000810623, 257469.355599999427795 ], [ 363638.491800002753735, 257467.580299999564886 ], [ 363602.474799998104572, 257491.047200001776218 ], [ 363604.038999997079372, 257493.550400000065565 ], [ 363610.399599999189377, 257504.1570999994874 ], [ 363614.019799999892712, 257510.437800001353025 ], [ 363634.435300000011921, 257496.220300000160933 ], [ 363650.671700000762939, 257484.913199998438358 ], [ 363639.725400000810623, 257469.355599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602088300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89124554, "LATITUDE": 18.3464554, "OBJECTID_1": 21450, "PARCEL_NO_": "105602088300", "Tax_Legal_": "215-152 ANNAS RETREAT NEW QTR.", "Name": "SULLIVAN (LIFE ESTATE), VERONICA", "Address": "PO BOX 10637", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 131300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.697911843, "SHAPE_Area": 651.38364475200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363006.647799998521805, 257478.528499998152256 ], [ 362988.260899998247623, 257459.80180000141263 ], [ 362987.436599999666214, 257461.905999999493361 ], [ 362972.761100001633167, 257480.784299999475479 ], [ 362993.581399999558926, 257497.842199999839067 ], [ 362999.286700002849102, 257490.71169999986887 ], [ 363006.647799998521805, 257478.528499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601056200", "MAP": "G9-3035-T80", "PARCEL_NAM": "404-107", "ACRE": "0.14", "LONGITUDE": -64.89395187, "LATITUDE": 18.34649304, "OBJECTID_1": 20807, "PARCEL_NO_": "105601056200", "Tax_Legal_": "ANNAS RETREAT 404-107 NEW QTR", "Name": "DESILIEN PHILISTIN and GENESE MILHOMME", "Address": "404-107 ESTATE ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 180200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.694641838500004, "SHAPE_Area": 582.19246459600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362718.023900002241135, 257471.944400001317263 ], [ 362695.495700001716614, 257466.060499999672174 ], [ 362692.994099996984005, 257475.750300001353025 ], [ 362692.1283999979496, 257482.709300000220537 ], [ 362692.848399996757507, 257492.847699999809265 ], [ 362712.986400000751019, 257495.334499999880791 ], [ 362717.172600001096725, 257477.214800000190735 ], [ 362718.023900002241135, 257471.944400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010700", "MAP": "A9-85-T68", "PARCEL_NAM": "224", "ACRE": "1.07", "LONGITUDE": -64.90204887, "LATITUDE": 18.34633154, "OBJECTID_1": 19791, "PARCEL_NO_": "105502010700", "Tax_Legal_": "EST. WINTBERG 224 GT. NORTHSIDE", "Name": "CARTY, MILDRED", "Address": "P.O. BOX 3451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 112700, "Improved_V": 325300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.40255648900001, "SHAPE_Area": 4487.6163588500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361886.931500002741814, 257439.811099998652935 ], [ 361853.327200002968311, 257408.927499998360872 ], [ 361804.54559999704361, 257455.813200000673532 ], [ 361807.731299996376038, 257460.483300000429153 ], [ 361810.087300002574921, 257467.890799999237061 ], [ 361809.977600000798702, 257480.766699999570847 ], [ 361809.020099997520447, 257483.818999998271465 ], [ 361875.951999999582767, 257492.758499998599291 ], [ 361876.842200003564358, 257488.280000001192093 ], [ 361886.931500002741814, 257439.811099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601053900", "MAP": "C9-240-T79", "PARCEL_NAM": "215-48", "ACRE": "0.17", "LONGITUDE": -64.89287332000001, "LATITUDE": 18.34641112, "OBJECTID_1": 20784, "PARCEL_NO_": "105601053900", "Tax_Legal_": "215-48&POR 404 ANNAS RET NEW QTR.", "Name": "LEE, NEVILLE & MARY", "Address": "PO Box 7453", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 189900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.226185387, "SHAPE_Area": 798.69662369599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362827.810099996626377, 257457.85530000180006 ], [ 362814.984600000083447, 257448.884399998933077 ], [ 362801.831900000572205, 257478.329799998551607 ], [ 362825.873800002038479, 257495.836300000548363 ], [ 362828.290899999439716, 257496.067200001329184 ], [ 362829.912500001490116, 257495.024999998509884 ], [ 362827.810099996626377, 257457.85530000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602091900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88973131, "LATITUDE": 18.34643681, "OBJECTID_1": 21475, "PARCEL_NO_": "105602091900", "Tax_Legal_": "215-285 ANNAS RETREAT NEW QTR.", "Name": "SCATLIFFE, R. & BLYDEN, D", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 208500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.859277944699997, "SHAPE_Area": 564.15357289400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363155.928900003433228, 257466.451400000602007 ], [ 363143.029700003564358, 257466.134700000286102 ], [ 363130.828900001943111, 257478.489399999380112 ], [ 363140.477700002491474, 257481.7347999997437 ], [ 363148.481499999761581, 257488.766399998217821 ], [ 363152.433899998664856, 257498.086800001561642 ], [ 363163.842799998819828, 257484.036899998784065 ], [ 363162.330899998545647, 257472.203299999237061 ], [ 363155.928900003433228, 257466.451400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602082400", "MAP": "C9-272-T81", "PARCEL_NAM": "215-227", "ACRE": ".142", "LONGITUDE": -64.88933323000001, "LATITUDE": 18.34646438, "OBJECTID_1": 21393, "PARCEL_NO_": "105602082400", "Tax_Legal_": "215-227 ANNAS RETREAT NEW QTR.", "Name": "TODMAN, MISJOE", "Address": "PO Box 6373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20200, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.380802055700002, "SHAPE_Area": 548.58044181699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363209.01969999819994, 257481.662500001490116 ], [ 363188.993100002408028, 257466.088700000196695 ], [ 363175.15089999884367, 257481.807500001043081 ], [ 363196.781099997460842, 257498.449799999594688 ], [ 363209.01969999819994, 257481.662500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602025200", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-175", "ACRE": ".155", "LONGITUDE": -64.88680187, "LATITUDE": 18.34645464, "OBJECTID_1": 21087, "PARCEL_NO_": "105602025200", "Tax_Legal_": "394-175 ANNAS RETREAT NEW QTR C", "Name": "LETTSOME, ALVON", "Address": "PO Box 502822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 22300, "Improved_V": 114500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.173210411100001, "SHAPE_Area": 529.51581162100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363475.961199998855591, 257477.725499998778105 ], [ 363455.078000001609325, 257468.055399999022484 ], [ 363450.159199997782707, 257477.514400001615286 ], [ 363444.446699999272823, 257485.489199999719858 ], [ 363462.05969999730587, 257500.40989999845624 ], [ 363475.961199998855591, 257477.725499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90811104, "LATITUDE": 18.34620042, "OBJECTID_1": 19682, "PARCEL_NO_": "105501012900", "Tax_Legal_": "WINTBERG ESTATE 1-J GREAT NORTHSIDE QTR", "Name": "MONSANTO, LISTON & WILMA", "Address": "P.O.BOX 2763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118200, "Improved_V": 131000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.48625341600001, "SHAPE_Area": 3855.0295654199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361238.902699999511242, 257405.587400000542402 ], [ 361225.202500000596046, 257404.630899999290705 ], [ 361211.491599999368191, 257404.940900001674891 ], [ 361200.178099997341633, 257407.803599998354912 ], [ 361182.4121999964118, 257410.824599999934435 ], [ 361171.883400000631809, 257416.22690000012517 ], [ 361165.382600001990795, 257422.084300000220537 ], [ 361162.93129999935627, 257425.863899998366833 ], [ 361163.649499997496605, 257436.21339999884367 ], [ 361166.043200001120567, 257439.188299998641014 ], [ 361211.756700001657009, 257468.482200000435114 ], [ 361223.790200002491474, 257475.75789999961853 ], [ 361236.63910000026226, 257481.9847999997437 ], [ 361238.902699999511242, 257405.587400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601054000", "MAP": "C9-240-T79", "PARCEL_NAM": "215-47", "ACRE": "0.15", "LONGITUDE": -64.89268962, "LATITUDE": 18.34641975, "OBJECTID_1": 20785, "PARCEL_NO_": "105601054000", "Tax_Legal_": "215-47&POR 404 ANNAS RET NEW QTR.", "Name": "HARVEY, BERNICE-LIFE ESTATE", "Address": "PO Box 308236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22300, "Improved_V": 116900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.62479351, "SHAPE_Area": 569.51540490599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362855.077299997210503, 257475.388099998235703 ], [ 362831.870399996638298, 257454.510999999940395 ], [ 362827.810099996626377, 257457.85530000180006 ], [ 362829.912500001490116, 257495.024999998509884 ], [ 362855.077299997210503, 257475.388099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87267696000001, "LATITUDE": 18.34650973, "OBJECTID_1": 22267, "PARCEL_NO_": "105702011300", "Tax_Legal_": "1BA FRYDENDAHL No.4 EAST END QTR.", "Name": "ASFOUR FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 173200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.254300933, "SHAPE_Area": 896.82358275900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364975.52080000191927, 257511.319200001657009 ], [ 364978.096199996769428, 257492.975099999457598 ], [ 364928.104800000786781, 257492.565999999642372 ], [ 364930.358300000429153, 257512.004999998956919 ], [ 364953.746799997985363, 257511.563200000673532 ], [ 364975.52080000191927, 257511.319200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87551762, "LATITUDE": 18.34633115, "OBJECTID_1": 21915, "PARCEL_NO_": "105701020400", "Tax_Legal_": "5 ESTATE FRYDENDAHL EAST END QUARTE", "Name": "ULYSSES A. PILGRIM JR. (LIFE ESTATE)", "Address": "PO Box 304109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 205800, "Improved_V": 201400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.27544524199999, "SHAPE_Area": 1816.6209105299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364676.821199998259544, 257456.945500001311302 ], [ 364662.329199999570847, 257454.293699998408556 ], [ 364644.635300002992153, 257448.871599998325109 ], [ 364628.854999996721745, 257502.782400000840425 ], [ 364661.051700003445148, 257509.589800000190735 ], [ 364676.821199998259544, 257456.945500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87221634, "LATITUDE": 18.34638771, "OBJECTID_1": 22291, "PARCEL_NO_": "105702013600", "Tax_Legal_": "FRYDENDAHL 11 2 EAST END QTR", "Name": "LEONARD, AENIAS", "Address": "PO Box 7461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.457283627, "SHAPE_Area": 748.31759922599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365016.075599998235703, 257483.575699999928474 ], [ 364990.412000000476837, 257467.111400000751019 ], [ 364986.971000000834465, 257492.414500001817942 ], [ 365011.801299996674061, 257512.03830000013113 ], [ 365016.075599998235703, 257483.575699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601059300", "MAP": "D9-2752-T84", "PARCEL_NAM": "215-131", "ACRE": "0.15", "LONGITUDE": -64.89335098, "LATITUDE": 18.34642823, "OBJECTID_1": 20833, "PARCEL_NO_": "105601059300", "Tax_Legal_": "ANNAS RETREAT 215-131 NEW QTR.", "Name": "SPENCER, HEIDI, LESLIE N.SPENCER-BENOIT&RASHAUN E. LINQUIST", "Address": "PO Box 11326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 137800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.387393942, "SHAPE_Area": 648.34202287699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362750.126599997282028, 257486.970100000500679 ], [ 362754.435000002384186, 257489.143800001591444 ], [ 362787.515399999916553, 257477.637600000947714 ], [ 362791.265000000596046, 257476.126299999654293 ], [ 362784.332900002598763, 257470.728799998760223 ], [ 362774.22580000013113, 257463.74379999935627 ], [ 362767.720600001513958, 257458.920400001108646 ], [ 362766.400200001895428, 257458.709199998527765 ], [ 362764.224600002169609, 257458.61089999973774 ], [ 362759.515000000596046, 257463.796700000762939 ], [ 362752.318300001323223, 257479.989199999719858 ], [ 362749.302000001072884, 257486.392200000584126 ], [ 362750.126599997282028, 257486.970100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89496861000001, "LATITUDE": 18.34641796, "OBJECTID_1": 20540, "PARCEL_NO_": "105601020500", "Tax_Legal_": "ANNAS RETREAT 187 1 NEW QTR", "Name": "BRATHWAITE, INEZ", "Address": "PO Box 305498", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 24600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.05731133399999, "SHAPE_Area": 1086.9432213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362614.641500003635883, 257491.574299998581409 ], [ 362614.06530000269413, 257464.549600001424551 ], [ 362615.785899996757507, 257451.89809999987483 ], [ 362595.56870000064373, 257458.698699999600649 ], [ 362567.263300001621246, 257468.388399999588728 ], [ 362572.842699997127056, 257476.033500000834465 ], [ 362573.629199996590614, 257478.361900001764297 ], [ 362614.641500003635883, 257491.574299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601020400", "MAP": null, "PARCEL_NAM": "201", "ACRE": null, "LONGITUDE": -64.89456155000001, "LATITUDE": 18.34645657, "OBJECTID_1": 20539, "PARCEL_NO_": "105601020400", "Tax_Legal_": "201 ANNAS RETREAT NO.1 NEW QTR", "Name": "STEVENS, EDA & GLENROY", "Address": "PO Box 305822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27300, "Improved_V": 144600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.57282160699999, "SHAPE_Area": 880.48224823099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362655.977399997413158, 257466.792500000447035 ], [ 362623.780699998140335, 257459.985100001096725 ], [ 362622.893399998545647, 257469.477000001817942 ], [ 362623.546899996697903, 257487.425299998372793 ], [ 362658.1824000030756, 257491.930700000375509 ], [ 362657.422799997031689, 257486.436000000685453 ], [ 362655.977399997413158, 257466.792500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105702016800", "MAP": "D9-2915-T85", "PARCEL_NAM": "3A-1", "ACRE": ".27", "LONGITUDE": -64.87432521, "LATITUDE": 18.34623287, "OBJECTID_1": 22318, "PARCEL_NO_": "105702016800", "Tax_Legal_": "FRYDENDAHL 3A-1 EAST END QTR.", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.61929481799999, "SHAPE_Area": 1220.2256685 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364795.4408999979496, 257447.150499999523163 ], [ 364792.219200000166893, 257446.701999999582767 ], [ 364775.265100002288818, 257449.0962999984622 ], [ 364763.832699999213219, 257450.780000001192093 ], [ 364765.906099997460842, 257474.392099998891354 ], [ 364767.953299999237061, 257497.706599999219179 ], [ 364782.900399997830391, 257497.863699998706579 ], [ 364797.006700001657009, 257452.651799999177456 ], [ 364797.042700000107288, 257448.43019999936223 ], [ 364795.4408999979496, 257447.150499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602037400", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-180", "ACRE": ".162", "LONGITUDE": -64.88723037, "LATITUDE": 18.34641917, "OBJECTID_1": 21169, "PARCEL_NO_": "105602037400", "Tax_Legal_": "ANNAS RETREAT 394-180 NEW QTR", "Name": "DAVIS, EMANUEL & IVY", "Address": "Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 184500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.195458198, "SHAPE_Area": 640.82917544899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363434.796099998056889, 257482.454900000244379 ], [ 363402.730599999427795, 257460.238699998706579 ], [ 363396.170500002801418, 257473.061700001358986 ], [ 363420.156599998474121, 257497.111600000411272 ], [ 363428.277300000190735, 257490.423099998384714 ], [ 363434.796099998056889, 257482.454900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601081200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89160362, "LATITUDE": 18.34643031, "OBJECTID_1": 20889, "PARCEL_NO_": "105601081200", "Tax_Legal_": "215-138 ANNAS RETREAT NEW QTR.", "Name": "HAYNES, DOROTHY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 104600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.1697241838, "SHAPE_Area": 586.87429590500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362968.769100002944469, 257476.107500001788139 ], [ 362951.983999997377396, 257458.660500001162291 ], [ 362934.885999999940395, 257477.941199999302626 ], [ 362955.722499996423721, 257493.099300000816584 ], [ 362968.769100002944469, 257476.107500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105702010100", "MAP": "D9-8313-T009", "PARCEL_NAM": "52 REM", "ACRE": ".7382", "LONGITUDE": -64.87383693, "LATITUDE": 18.34627508, "OBJECTID_1": 22257, "PARCEL_NO_": "105702010100", "Tax_Legal_": "FRYDENDAHL 52 EAST END QTR", "Name": "THOMAS, EDWARD E. & LUCIA A. M", "Address": "PO Box 302044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 92400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.21324488800002, "SHAPE_Area": 3640.97596183 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364819.598700001835823, 257500.877399999648333 ], [ 364819.518500000238419, 257497.42960000038147 ], [ 364828.223300002515316, 257495.577500000596046 ], [ 364832.579300001263618, 257498.090599998831749 ], [ 364840.985299997031689, 257496.285900000482798 ], [ 364875.723300002515316, 257488.759700000286102 ], [ 364863.140500001609325, 257451.293200001120567 ], [ 364861.547700002789497, 257448.958099998533726 ], [ 364857.5287000015378, 257447.447599999606609 ], [ 364810.755400002002716, 257447.909099999815226 ], [ 364806.711300000548363, 257449.353700000792742 ], [ 364803.455399997532368, 257452.915600001811981 ], [ 364786.05179999768734, 257508.079700000584126 ], [ 364813.518500000238419, 257502.182799998670816 ], [ 364819.598700001835823, 257500.877399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602092900", "MAP": "C9-272-T81", "PARCEL_NAM": "215-277", "ACRE": ".140", "LONGITUDE": -64.89052851, "LATITUDE": 18.34642161, "OBJECTID_1": 21485, "PARCEL_NO_": "105602092900", "Tax_Legal_": "215-277 ANNAS RETREAT NEW QTR.", "Name": "SMITH, LORRAINE & WELMON", "Address": "PO BOX 6006", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 93600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.390881467100002, "SHAPE_Area": 540.92157962399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363071.833200000226498, 257493.838599998503923 ], [ 363077.538599997758865, 257486.708099998533726 ], [ 363079.190800003707409, 257482.077500000596046 ], [ 363068.911899998784065, 257458.139800000935793 ], [ 363051.862400002777576, 257471.721400000154972 ], [ 363048.615599997341633, 257474.227899998426437 ], [ 363071.833200000226498, 257493.838599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602091800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89007238000001, "LATITUDE": 18.34641939, "OBJECTID_1": 21474, "PARCEL_NO_": "105602091800", "Tax_Legal_": "215-288 ANNAS RETREAT NEW QTR.", "Name": "JACKSON, MURIEL", "Address": "PO Box 10944", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24600, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.602807076299996, "SHAPE_Area": 527.47019553099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363130.828900001943111, 257478.489399999380112 ], [ 363110.021200001239777, 257459.953999999910593 ], [ 363097.802500002086163, 257474.419399999082088 ], [ 363118.610200002789497, 257492.954799998551607 ], [ 363130.828900001943111, 257478.489399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602033100", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-184", "ACRE": ".211", "LONGITUDE": -64.88768627, "LATITUDE": 18.34639756, "OBJECTID_1": 21129, "PARCEL_NO_": "105602033100", "Tax_Legal_": "394-184 ANNAS RETREAT NEW QTR", "Name": "SMITH, EUNEL & VORNET", "Address": "PO Box 9955", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 216900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.1637811, "SHAPE_Area": 684.91541453399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363385.605700001120567, 257482.685600001364946 ], [ 363364.859099999070168, 257456.973400000482798 ], [ 363350.257399998605251, 257467.197500001639128 ], [ 363362.922799997031689, 257494.9543999992311 ], [ 363366.164300002157688, 257493.0810999982059 ], [ 363385.605700001120567, 257482.685600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701022100", "MAP": "A9-318-T85", "PARCEL_NAM": "53-35", "ACRE": ".50", "LONGITUDE": -64.87863248, "LATITUDE": 18.34622061, "OBJECTID_1": 21932, "PARCEL_NO_": "105701022100", "Tax_Legal_": "53-35 ESTATE FRYDENDAHL EASTEND QUARTER", "Name": "GREENAWAY, BRODIE", "Address": "6704 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78400, "Improved_V": 39000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.26646333299999, "SHAPE_Area": 1884.9606073699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364293.253899998962879, 257425.941799998283386 ], [ 364315.325300000607967, 257485.439699999988079 ], [ 364321.716499999165535, 257492.458099998533726 ], [ 364326.4662000015378, 257502.840599998831749 ], [ 364352.532600000500679, 257472.023200001567602 ], [ 364348.553199999034405, 257465.868900001049042 ], [ 364344.514399997889996, 257466.68019999936223 ], [ 364341.298100002110004, 257465.598400000482798 ], [ 364344.606100000441074, 257455.915199998766184 ], [ 364293.253899998962879, 257425.941799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602014100", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-215", "ACRE": ".171", "LONGITUDE": -64.88477503, "LATITUDE": 18.34639272, "OBJECTID_1": 20956, "PARCEL_NO_": "105602014100", "Tax_Legal_": "394-215 ANNAS RETREAT No.1 NEW QTR.", "Name": "LE BLANC, MAGDALENE & TODMAN, J. S", "Address": "PO Box 11011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 235600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.259485001, "SHAPE_Area": 773.42011866400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363684.187600001692772, 257456.209499999880791 ], [ 363682.583999998867512, 257455.140900000929832 ], [ 363655.792300000786781, 257476.453200001269579 ], [ 363669.336000002920628, 257495.773499999195337 ], [ 363674.164800003170967, 257496.868500001728535 ], [ 363686.293700002133846, 257492.956999998539686 ], [ 363684.187600001692772, 257456.209499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602013900", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-195", "ACRE": "0.17", "LONGITUDE": -64.88569213, "LATITUDE": 18.34639656, "OBJECTID_1": 20954, "PARCEL_NO_": "105602013900", "Tax_Legal_": "394-195 ANNAS RETREAT NEW QTR", "Name": "WILSON, SHEILA", "Address": "394-195 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 160600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.73696974400001, "SHAPE_Area": 688.66100950600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363585.75280000269413, 257463.003199998289347 ], [ 363584.848899997770786, 257461.231499999761581 ], [ 363558.453900001943111, 257474.632699999958277 ], [ 363559.82490000128746, 257477.567600000649691 ], [ 363561.4087999984622, 257480.958000000566244 ], [ 363566.871100001037121, 257493.39299999922514 ], [ 363597.130300000309944, 257482.206700000911951 ], [ 363592.908900000154972, 257474.883000001311302 ], [ 363585.75280000269413, 257463.003199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601057800", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-104", "ACRE": ".14", "LONGITUDE": -64.89426893, "LATITUDE": 18.34644148, "OBJECTID_1": 20821, "PARCEL_NO_": "105601057800", "Tax_Legal_": "ANNAS RETREAT 404-104 NEW QTR", "Name": "BROWN, H. & PETERS, A", "Address": "PO Box 308291", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.422177676999993, "SHAPE_Area": 511.38824727399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362684.880599997937679, 257481.594500001519918 ], [ 362687.428999997675419, 257466.416600000113249 ], [ 362655.977399997413158, 257466.792500000447035 ], [ 362657.422799997031689, 257486.436000000685453 ], [ 362684.880599997937679, 257481.594500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602032700", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-357", "ACRE": ".273", "LONGITUDE": -64.8884564, "LATITUDE": 18.34629568, "OBJECTID_1": 21125, "PARCEL_NO_": "105602032700", "Tax_Legal_": "394-357 ANNAS RETREAT NEW QTR", "Name": "MALONE, CHERYL", "Address": "394-357 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37000, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.94328368500001, "SHAPE_Area": 1175.8777783600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363279.539300002157688, 257438.754399999976158 ], [ 363273.886100001633167, 257439.763599999248981 ], [ 363267.351099997758865, 257449.631499998271465 ], [ 363264.082699999213219, 257454.671000000089407 ], [ 363288.765500001609325, 257491.603300001472235 ], [ 363307.407799996435642, 257480.356800001114607 ], [ 363284.384300000965595, 257437.949599999934435 ], [ 363279.539300002157688, 257438.754399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602014000", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-200", "ACRE": ".212", "LONGITUDE": -64.88533202000001, "LATITUDE": 18.34633625, "OBJECTID_1": 20955, "PARCEL_NO_": "105602014000", "Tax_Legal_": "394-200 ANNAS RETREAT NEW QTR", "Name": "HODGE, E & K. & SCATLIFFE, N &", "Address": "PO Box 8527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31200, "Improved_V": 141500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.169777557, "SHAPE_Area": 795.30204313299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363638.491800002753735, 257467.580299999564886 ], [ 363627.776299998164177, 257452.159200001507998 ], [ 363592.908900000154972, 257474.883000001311302 ], [ 363599.265900000929832, 257485.911899998784065 ], [ 363602.474799998104572, 257491.047200001776218 ], [ 363638.491800002753735, 257467.580299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602093000", "MAP": "C9-272-T81", "PARCEL_NAM": "215-275", "ACRE": ".139", "LONGITUDE": -64.8908062, "LATITUDE": 18.34637206, "OBJECTID_1": 21486, "PARCEL_NO_": "105602093000", "Tax_Legal_": "ANNAS RETREAT 215-275 NEW QTR.", "Name": "CORBETT, HILLARY R", "Address": "PO Box 9622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.365251918200002, "SHAPE_Area": 498.28152845199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363051.862400002777576, 257471.721400000154972 ], [ 363035.885399997234344, 257454.06980000063777 ], [ 363031.009800001978874, 257458.462900001555681 ], [ 363022.045100003480911, 257469.577500000596046 ], [ 363038.822999998927116, 257487.868900001049042 ], [ 363048.615599997341633, 257474.227899998426437 ], [ 363051.862400002777576, 257471.721400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602014200", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-214", "ACRE": ".175", "LONGITUDE": -64.88457362, "LATITUDE": 18.34634628, "OBJECTID_1": 20957, "PARCEL_NO_": "105602014200", "Tax_Legal_": "394-214 ANNAS RETREAT NEW QTR", "Name": "SMITH, GWENDOLYN E., REUL B. & BERNICE", "Address": "P.O. BOX 3948", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22600, "Improved_V": 265100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.722741633, "SHAPE_Area": 740.74358852800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363706.485699996352196, 257489.1114999987185 ], [ 363705.965300001204014, 257455.543400000780821 ], [ 363684.187600001692772, 257456.209499999880791 ], [ 363686.293700002133846, 257492.956999998539686 ], [ 363706.485699996352196, 257489.1114999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602025000", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-187", "ACRE": ".137", "LONGITUDE": -64.88609768000001, "LATITUDE": 18.34632465, "OBJECTID_1": 21085, "PARCEL_NO_": "105602025000", "Tax_Legal_": "394-187 ANNAS RETREAT\nNEW QTR", "Name": "AUBIN FAMILY REVOCABLE TRUST", "Address": "PO Box 304865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 223500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.735894520900004, "SHAPE_Area": 559.97007472200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363546.225500002503395, 257464.790600001811981 ], [ 363540.98369999974966, 257454.043600000441074 ], [ 363518.16330000013113, 257465.071600001305342 ], [ 363523.937399998307228, 257476.425900001078844 ], [ 363528.297899998724461, 257485.000300001353025 ], [ 363550.574500001966953, 257474.10020000115037 ], [ 363546.225500002503395, 257464.790600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601052100", "MAP": "C9-240-T79", "PARCEL_NAM": "215-53", "ACRE": "0.14", "LONGITUDE": -64.89367054, "LATITUDE": 18.34638572, "OBJECTID_1": 20766, "PARCEL_NO_": "105601052100", "Tax_Legal_": "215-53&POR 404 ANNAS RET NEW QTR.", "Name": "FRANCIS, O. E. , PAYNE, JR. D. R. & R. G", "Address": "PO Box 1603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20200, "Improved_V": 137800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.123218714, "SHAPE_Area": 640.593591393 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362753.311200000345707, 257465.277399998158216 ], [ 362726.223700001835823, 257455.968400001525879 ], [ 362723.003799997270107, 257455.308699999004602 ], [ 362720.534599997103214, 257461.199200000613928 ], [ 362718.023900002241135, 257471.944400001317263 ], [ 362717.172600001096725, 257477.214800000190735 ], [ 362719.587999999523163, 257477.656700000166893 ], [ 362745.352200001478195, 257482.300500001758337 ], [ 362752.662299998104572, 257467.024599999189377 ], [ 362753.311200000345707, 257465.277399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601012400", "MAP": "B9-178-T67", "PARCEL_NAM": "211", "ACRE": null, "LONGITUDE": -64.89662488, "LATITUDE": 18.34630455, "OBJECTID_1": 20461, "PARCEL_NO_": "105601012400", "Tax_Legal_": "ANNAS RETREAT 211 NEW QTR", "Name": "ARTHURTON, RODNEY & DELIA", "Address": "PO Box 10416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38900, "Improved_V": 81400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.31154434300001, "SHAPE_Area": 1254.51459553 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362434.930900000035763, 257478.7043999992311 ], [ 362438.506800003349781, 257437.57039999961853 ], [ 362427.22919999808073, 257436.211599998176098 ], [ 362416.78490000218153, 257431.69310000166297 ], [ 362400.302599996328354, 257473.354800000786781 ], [ 362418.801100000739098, 257478.994600001722574 ], [ 362422.026299998164177, 257479.021000001579523 ], [ 362428.476800002157688, 257479.073800001293421 ], [ 362434.930900000035763, 257478.7043999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601012300", "MAP": "B9-178-T67", "PARCEL_NAM": "210", "ACRE": null, "LONGITUDE": -64.89632334, "LATITUDE": 18.34630129, "OBJECTID_1": 20460, "PARCEL_NO_": "105601012300", "Tax_Legal_": "210 ANNAS RETREAT 1 NEW QTR", "Name": "JOSE MANUEL VAZQUEZ and IVELISSE GABRIEL MIGA", "Address": "4600 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37500, "Improved_V": 84600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.59037722900001, "SHAPE_Area": 1382.50870401 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362470.426600001752377, 257476.88399999961257 ], [ 362471.571000002324581, 257437.207800000905991 ], [ 362438.506800003349781, 257437.57039999961853 ], [ 362434.930900000035763, 257478.7043999992311 ], [ 362470.426600001752377, 257476.88399999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8843688, "LATITUDE": 18.34632565, "OBJECTID_1": 20958, "PARCEL_NO_": "105602014300", "Tax_Legal_": "394-29 ANNAS RETREAT NEW QTR", "Name": "FRETT, UNA / LIFE INT.", "Address": "394-378 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 122800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.23754442800001, "SHAPE_Area": 720.06120627099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363727.4695999994874, 257486.961199998855591 ], [ 363729.355499997735023, 257454.890399999916553 ], [ 363705.965300001204014, 257455.543400000780821 ], [ 363706.485699996352196, 257489.1114999987185 ], [ 363719.404700003564358, 257487.106300000101328 ], [ 363727.4695999994874, 257486.961199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502023600", "MAP": "D9-8478-T010", "PARCEL_NAM": "1-U-2A", "ACRE": ".58", "LONGITUDE": -64.90384846000001, "LATITUDE": 18.34612868, "OBJECTID_1": 19881, "PARCEL_NO_": "105502023600", "Tax_Legal_": "1-U-2A WINTBERG GT. NORTHSIDE QTR.", "Name": "PHILLIPS, GEORGE E. & ADELINE AGATHA PHILLIPS(Trustees)", "Address": "PO Box 10770", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69800, "Improved_V": 628600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.66751276400001, "SHAPE_Area": 1942.98609083 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361687.580099999904633, 257459.1114999987185 ], [ 361669.493400000035763, 257448.662099998444319 ], [ 361674.716099999845028, 257424.933299999684095 ], [ 361662.5878000035882, 257397.314800001680851 ], [ 361628.311999998986721, 257413.418600000441074 ], [ 361641.819700002670288, 257436.96059999987483 ], [ 361658.58330000191927, 257456.940600000321865 ], [ 361664.983400002121925, 257462.903599999845028 ], [ 361668.993400000035763, 257465.469500001519918 ], [ 361676.219700001180172, 257469.117199998348951 ], [ 361685.063900001347065, 257472.144900001585484 ], [ 361687.580099999904633, 257459.1114999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602092100", "MAP": "C9-272-T81", "PARCEL_NAM": "215-284", "ACRE": ".138", "LONGITUDE": -64.88956646, "LATITUDE": 18.34631297, "OBJECTID_1": 21477, "PARCEL_NO_": "105602092100", "Tax_Legal_": "215-284 ANNAS RETREAT NEW QTR.", "Name": "SHARRY, ROSE (LIFE ESTATE)", "Address": "215-284 ESTATE ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 142700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.901628986099993, "SHAPE_Area": 375.13596410399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363171.410700000822544, 257447.579700000584126 ], [ 363155.928900003433228, 257466.451400000602007 ], [ 363162.330899998545647, 257472.203299999237061 ], [ 363163.842799998819828, 257484.036899998784065 ], [ 363175.248000003397465, 257470.409200001507998 ], [ 363176.079499997198582, 257467.460700001567602 ], [ 363176.950599998235703, 257459.868500001728535 ], [ 363171.410700000822544, 257447.579700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701011800", "MAP": "D9-2923-T85", "PARCEL_NAM": "16-G", "ACRE": ".703", "LONGITUDE": -64.88128972, "LATITUDE": 18.34618281, "OBJECTID_1": 21853, "PARCEL_NO_": "105701011800", "Tax_Legal_": "16F,16G & 16-2 ROW ANNAS RETREAT NO.1 NEW QTR", "Name": "VALLEY VIEW PROPERTIES INCORPORATED", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 114871, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.63838051799999, "SHAPE_Area": 2889.0123722100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364023.126599997282028, 257425.208599999547005 ], [ 364018.312100000679493, 257422.425000000745058 ], [ 364001.063100002706051, 257459.436200000345707 ], [ 364066.918099999427795, 257490.794900000095367 ], [ 364078.332400001585484, 257476.111800000071526 ], [ 364079.156700000166893, 257474.007599998265505 ], [ 364083.226000003516674, 257469.607900001108646 ], [ 364087.31870000064373, 257462.464200001209974 ], [ 364023.126599997282028, 257425.208599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602014400", "MAP": "C9-221-T78", "PARCEL_NAM": "394-424", "ACRE": "0.56", "LONGITUDE": -64.88406883, "LATITUDE": 18.34618703, "OBJECTID_1": 20959, "PARCEL_NO_": "105602014400", "Tax_Legal_": "394-424 ANNAS RETREAT NEW QTR", "Name": "FORBES, DONALD R. & ILEAN", "Address": "PO Box 12086", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69700, "Improved_V": 187000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.55921447399999, "SHAPE_Area": 2540.9381107300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363770.213100001215935, 257486.25560000166297 ], [ 363767.530900001525879, 257422.483399998396635 ], [ 363730.422600001096725, 257424.290600001811981 ], [ 363729.355499997735023, 257454.890399999916553 ], [ 363727.4695999994874, 257486.961199998855591 ], [ 363747.620200000703335, 257487.970499999821186 ], [ 363770.213100001215935, 257486.25560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601012200", "MAP": "B9-178-T67", "PARCEL_NAM": "209", "ACRE": null, "LONGITUDE": -64.89604323, "LATITUDE": 18.34629223, "OBJECTID_1": 20459, "PARCEL_NO_": "105601012200", "Tax_Legal_": "209 ANNAS RETREAT NEW QTR", "Name": "RICHARDSON, JAMES & LORRAINE", "Address": "PO Box 306852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 249100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.77717695199999, "SHAPE_Area": 991.460304006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362499.470100000500679, 257475.221900001168251 ], [ 362490.953100003302097, 257433.777800001204014 ], [ 362471.571000002324581, 257437.207800000905991 ], [ 362470.426600001752377, 257476.88399999961257 ], [ 362499.470100000500679, 257475.221900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90948271000001, "LATITUDE": 18.34622743, "OBJECTID_1": 19685, "PARCEL_NO_": "105501013200", "Tax_Legal_": "1-CB ESTATE WINTBERG GREAT NORTHSIDE QTR", "Name": "MAGARITA C SMITH & KAYREL LAJAMIE SMITH", "Address": "PO Box 9252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 100700, "Improved_V": 341200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.12695505900001, "SHAPE_Area": 3465.08175196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361112.774499997496605, 257444.874000001698732 ], [ 361120.238099999725819, 257420.659299999475479 ], [ 361121.893899999558926, 257415.606600001454353 ], [ 361122.727099999785423, 257412.447000000625849 ], [ 361012.102300003170967, 257430.328999999910593 ], [ 361006.973099999129772, 257464.484099999070168 ], [ 361049.777800001204014, 257456.601799998432398 ], [ 361072.392300002276897, 257452.353999998420477 ], [ 361082.084200002253056, 257450.533399999141693 ], [ 361092.582500003278255, 257448.719500001519918 ], [ 361112.774499997496605, 257444.874000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601053800", "MAP": "D9-1786-T81", "PARCEL_NAM": "215-298", "ACRE": "0.14", "LONGITUDE": -64.89303753, "LATITUDE": 18.34627875, "OBJECTID_1": 20783, "PARCEL_NO_": "105601053800", "Tax_Legal_": "ANNAS RETREAT 215-298 NEW QTR.", "Name": "BERNARD, JUSTINA & BEAUPIERRE", "Address": "PO Box 1316", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20800, "Improved_V": 114600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.874958851, "SHAPE_Area": 573.34365462999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362806.167300000786781, 257442.690499998629093 ], [ 362799.754600003361702, 257438.205099999904633 ], [ 362787.404500000178814, 257468.079300001263618 ], [ 362801.831900000572205, 257478.329799998551607 ], [ 362814.984600000083447, 257448.884399998933077 ], [ 362806.167300000786781, 257442.690499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602082600", "MAP": "C9-272-T81", "PARCEL_NAM": "215-228", "ACRE": ".152", "LONGITUDE": -64.88919108, "LATITUDE": 18.34629244, "OBJECTID_1": 21395, "PARCEL_NO_": "105602082600", "Tax_Legal_": "215-228 ANNAS RETREAT NEW QTR.", "Name": "CLINTON & ALMA HENDRICKSON", "Address": "4200 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022218, "Country": "United States", "Land_Value": 33500, "Improved_V": 44900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.824497288, "SHAPE_Area": 668.49083026999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363225.34009999781847, 257458.997900001704693 ], [ 363207.718099996447563, 257445.132599998265505 ], [ 363188.993100002408028, 257466.088700000196695 ], [ 363209.01969999819994, 257481.662500001490116 ], [ 363225.34009999781847, 257458.997900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602014500", "MAP": "C9-221-T78", "PARCEL_NAM": "394-423", "ACRE": "0.53", "LONGITUDE": -64.88370384, "LATITUDE": 18.34618848, "OBJECTID_1": 20960, "PARCEL_NO_": "105602014500", "Tax_Legal_": "394-423 ANNAS RETREAT NEW QTR", "Name": "BERT A THOMAS REVOCABLE TRUST", "Address": "PO Box 9802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66200, "Improved_V": 103800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.33028541600001, "SHAPE_Area": 2177.2102922200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363820.326800003647804, 257472.3114 ], [ 363784.479699999094009, 257420.722199998795986 ], [ 363782.053599998354912, 257421.546799998730421 ], [ 363767.530900001525879, 257422.483399998396635 ], [ 363770.213100001215935, 257486.25560000166297 ], [ 363790.399700000882149, 257483.043299999088049 ], [ 363808.984499998390675, 257478.551300000399351 ], [ 363816.270000003278255, 257475.233500000089407 ], [ 363820.326800003647804, 257472.3114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702010700", "MAP": "D9-7927-T007", "PARCEL_NAM": "11AA", "ACRE": ".462", "LONGITUDE": -64.87319719, "LATITUDE": 18.34628724, "OBJECTID_1": 22261, "PARCEL_NO_": "105702010700", "Tax_Legal_": "FRYDENDAHL 11AA EAST END QTR", "Name": "REGISTE, JOSEPH & DAVIS", "Address": "1A9-7 Dorothea", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.85425938700001, "SHAPE_Area": 1360.9803405099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364884.959499999880791, 257445.772300001233816 ], [ 364888.87780000269413, 257459.103199999779463 ], [ 364874.317400000989437, 257464.472500000149012 ], [ 364884.538800001144409, 257495.164700001478195 ], [ 364928.104800000786781, 257492.565999999642372 ], [ 364928.137199997901917, 257488.766499999910593 ], [ 364887.378499999642372, 257445.792100001126528 ], [ 364884.959499999880791, 257445.772300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601012100", "MAP": "B9-178-T67", "PARCEL_NAM": "208", "ACRE": null, "LONGITUDE": -64.89578279, "LATITUDE": 18.34623578, "OBJECTID_1": 20458, "PARCEL_NO_": "105601012100", "Tax_Legal_": "208 ANNAS RETREAT NEW QTR", "Name": "PITMAN, SR., GERALD HAMILTON", "Address": "PO Box 8593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34600, "Improved_V": 258100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.71555296899999, "SHAPE_Area": 1306.2561269299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362499.470100000500679, 257475.221900001168251 ], [ 362507.536799997091293, 257474.865699999034405 ], [ 362536.740299999713898, 257454.417500000447035 ], [ 362532.753700003027916, 257449.107599999755621 ], [ 362531.171599999070168, 257445.506000000983477 ], [ 362526.376900002360344, 257440.400600001215935 ], [ 362518.365900002419949, 257434.213300000876188 ], [ 362511.946000002324581, 257430.57209999859333 ], [ 362506.309000000357628, 257429.681600000709295 ], [ 362490.953100003302097, 257433.777800001204014 ], [ 362499.470100000500679, 257475.221900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602033300", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-185", "ACRE": ".24", "LONGITUDE": -64.88750293, "LATITUDE": 18.34624507, "OBJECTID_1": 21131, "PARCEL_NO_": "105602033300", "Tax_Legal_": "ANNAS RETREAT 394-185 NEW QTR", "Name": "BLASH, DENVER,DENVIL & DEVERN & DEBORAH ROBERTS", "Address": "394-185 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27300, "Improved_V": 120300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.972179578, "SHAPE_Area": 977.67205929399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363402.730599999427795, 257460.238699998706579 ], [ 363407.647600002586842, 257450.990800000727177 ], [ 363377.099500000476837, 257439.975000001490116 ], [ 363374.630199998617172, 257445.86540000140667 ], [ 363369.733000002801418, 257452.791499998420477 ], [ 363364.859099999070168, 257456.973400000482798 ], [ 363385.605700001120567, 257482.685600001364946 ], [ 363396.170500002801418, 257473.061700001358986 ], [ 363402.730599999427795, 257460.238699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602037500", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-179", "ACRE": null, "LONGITUDE": -64.88713047, "LATITUDE": 18.3462777, "OBJECTID_1": 21170, "PARCEL_NO_": "105602037500", "Tax_Legal_": "394-179 ANNAS RETREAT NEW QTR", "Name": "TURNBULL, IVAN & AUDREY", "Address": "394-179 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 218700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.324488343, "SHAPE_Area": 817.84902378599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363447.873400002717972, 257461.874699998646975 ], [ 363409.305200003087521, 257445.727099999785423 ], [ 363407.647600002586842, 257450.990800000727177 ], [ 363402.730599999427795, 257460.238699998706579 ], [ 363434.796099998056889, 257482.454900000244379 ], [ 363441.314999997615814, 257474.486699998378754 ], [ 363447.873400002717972, 257461.874699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602088200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89117341, "LATITUDE": 18.34625781, "OBJECTID_1": 21449, "PARCEL_NO_": "105602088200", "Tax_Legal_": "215-136 ANNAS RETREAT NEW QTR.", "Name": "DYER, JAMES (LIFE ESTATE) & MARY", "Address": "PO Box 10824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 111000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.33562375, "SHAPE_Area": 656.83249285500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363018.067500002682209, 257463.212099999189377 ], [ 362988.433499999344349, 257439.538199998438358 ], [ 362970.669399999082088, 257442.348099999129772 ], [ 362976.299199998378754, 257444.083000000566244 ], [ 362985.116499997675419, 257450.276799999177456 ], [ 362988.296800002455711, 257455.580200001597404 ], [ 362988.260899998247623, 257459.80180000141263 ], [ 363006.647799998521805, 257478.528499998152256 ], [ 363018.067500002682209, 257463.212099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602032800", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-358", "ACRE": ".208", "LONGITUDE": -64.88825943000001, "LATITUDE": 18.34621676, "OBJECTID_1": 21126, "PARCEL_NO_": "105602032800", "Tax_Legal_": "394-358 ANNAS RETREAT NEW QTR", "Name": "NEEHALL, N & GHENT, M", "Address": "394-358 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 245400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.45275443599999, "SHAPE_Area": 980.48021269900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363309.401600003242493, 257435.621300000697374 ], [ 363298.921300001442432, 257435.324400000274181 ], [ 363284.384300000965595, 257437.949599999934435 ], [ 363307.407799996435642, 257480.356800001114607 ], [ 363326.033900000154972, 257471.010000001639128 ], [ 363309.401600003242493, 257435.621300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602092000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8899552, "LATITUDE": 18.34627244, "OBJECTID_1": 21476, "PARCEL_NO_": "105602092000", "Tax_Legal_": "ANNAS RETREAT 215-287 NEW QTR.", "Name": "OSBORNE, VERNON E. & VALENCIA", "Address": "394-4 Anna S Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 120400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.751776764, "SHAPE_Area": 663.38291527900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363139.874600000679493, 257457.876299999654293 ], [ 363127.067100003361702, 257446.794599998742342 ], [ 363121.464299999177456, 257441.8935999982059 ], [ 363110.892300002276897, 257452.361699998378754 ], [ 363114.099600002169609, 257454.4989 ], [ 363110.021200001239777, 257459.953999999910593 ], [ 363130.828900001943111, 257478.489399999380112 ], [ 363143.029700003564358, 257466.134700000286102 ], [ 363145.477399997413158, 257462.777300000190735 ], [ 363139.874600000679493, 257457.876299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602082700", "MAP": "C9-272-T81", "PARCEL_NAM": "215-230", "ACRE": ".138", "LONGITUDE": -64.88884644, "LATITUDE": 18.34630875, "OBJECTID_1": 21396, "PARCEL_NO_": "105602082700", "Tax_Legal_": "215-230 ANNAS RETREAT NEW QTR.", "Name": "WOODLEY, CLEONE & CALLWOOD, WA", "Address": "PO Box 3019", "City": "Carolina", "State": "Puerto Rico", "Zip": 984, "Country": "United States", "Land_Value": 20200, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.722613194000004, "SHAPE_Area": 441.26256594900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363259.176500000059605, 257462.652399998158216 ], [ 363239.91669999808073, 257451.728999998420477 ], [ 363228.497000001370907, 257467.045299999415874 ], [ 363248.550499998033047, 257479.452899999916553 ], [ 363250.190099999308586, 257476.299899999052286 ], [ 363259.176500000059605, 257462.652399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87267303, "LATITUDE": 18.34635538, "OBJECTID_1": 22266, "PARCEL_NO_": "105702011200", "Tax_Legal_": "1B ESTATE FRYDENDAHL No.4 EASTEND QTR.", "Name": "MARRERO, ROBERT A.", "Address": "PO Box 7832", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.139176155, "SHAPE_Area": 799.12548272100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364980.644599996507168, 257477.797200001776218 ], [ 364929.850500002503395, 257476.959300000220537 ], [ 364926.625299997627735, 257476.932900000363588 ], [ 364928.137199997901917, 257488.766499999910593 ], [ 364928.104800000786781, 257492.565999999642372 ], [ 364978.096199996769428, 257492.975099999457598 ], [ 364980.644599996507168, 257477.797200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601054100", "MAP": "C9-240-T79", "PARCEL_NAM": "215-46", "ACRE": "0.14", "LONGITUDE": -64.89256214, "LATITUDE": 18.34627707, "OBJECTID_1": 20786, "PARCEL_NO_": "105601054100", "Tax_Legal_": "ANNAS RETREAT 215-46 & POR 404 NEW QTR.", "Name": "CLARK, EULA", "Address": "PO Box 307433", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 140600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.063189116, "SHAPE_Area": 626.87375159099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362870.503300003707409, 257463.059900000691414 ], [ 362848.109899997711182, 257441.344999998807907 ], [ 362845.673000000417233, 257443.436000000685453 ], [ 362831.870399996638298, 257454.510999999940395 ], [ 362855.077299997210503, 257475.388099998235703 ], [ 362870.503300003707409, 257463.059900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601081300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89145972, "LATITUDE": 18.34626335, "OBJECTID_1": 20890, "PARCEL_NO_": "105601081300", "Tax_Legal_": "215-137 CONS. ANNAS RETREAT NEW QTR", "Name": "HENRY, ADRIANA W. & ABAGAIL C.", "Address": "PO Box 10632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 170700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.871594528100005, "SHAPE_Area": 588.72807770300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362960.474600002169609, 257444.487900000065565 ], [ 362958.527999997138977, 257447.737199999392033 ], [ 362951.983999997377396, 257458.660500001162291 ], [ 362968.769100002944469, 257476.107500001788139 ], [ 362981.815800003707409, 257459.115699999034405 ], [ 362982.252371291688178, 257457.849265061580809 ], [ 362982.481822971662041, 257456.529490888904547 ], [ 362982.498305933375377, 257455.190020750276744 ], [ 362982.301399998366833, 257453.864999998360872 ], [ 362981.492160176450852, 257452.116439238830935 ], [ 362980.412594450637698, 257450.52054711751407 ], [ 362979.090731726842932, 257449.118757989781443 ], [ 362977.56089169945335, 257447.947466689714929 ], [ 362975.862793804612011, 257447.037083606148371 ], [ 362974.040525979711674, 257446.411245133902412 ], [ 362972.141400001943111, 257446.086199998855591 ], [ 362968.333320107893087, 257445.045758700784063 ], [ 362964.42219474981539, 257444.509951825282769 ], [ 362960.474600002169609, 257444.487900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701014600", "MAP": "C9-221-T78", "PARCEL_NAM": "394-412", "ACRE": "0.58", "LONGITUDE": -64.88292726, "LATITUDE": 18.34609964, "OBJECTID_1": 21878, "PARCEL_NO_": "105701014600", "Tax_Legal_": "394-412 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, FREDERICK", "Address": "PO Box 302591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77800, "Improved_V": 82800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.60266030299999, "SHAPE_Area": 1815.2600475199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363898.71169999986887, 257452.687899999320507 ], [ 363849.888099998235703, 257409.858500000089407 ], [ 363844.800300002098083, 257439.158900000154972 ], [ 363878.289599999785423, 257483.551500000059605 ], [ 363880.749899998307228, 257478.716499999165535 ], [ 363882.351700000464916, 257479.996199999004602 ], [ 363898.71169999986887, 257452.687899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701022200", "MAP": "A9-318-T85", "PARCEL_NAM": "53-42", "ACRE": ".57", "LONGITUDE": -64.87908328, "LATITUDE": 18.34602717, "OBJECTID_1": 21933, "PARCEL_NO_": "105701022200", "Tax_Legal_": "53-42ESTATE FRYDENDAHL EASTEND QTR.", "Name": "JARVIER, MARGARET ROSE", "Address": "PO Box 502183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 80900, "Improved_V": 35100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.26997534700001, "SHAPE_Area": 2978.4606035900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364233.867299996316433, 257392.525100000202656 ], [ 364265.528099998831749, 257462.234000001102686 ], [ 364269.450000002980232, 257475.142900001257658 ], [ 364271.015900000929832, 257480.644099999219179 ], [ 364283.945699997246265, 257477.372400000691414 ], [ 364295.239399999380112, 257476.831599999219179 ], [ 364305.701700001955032, 257479.239199999719858 ], [ 364312.123400002717972, 257482.669300001114607 ], [ 364315.325300000607967, 257485.439699999988079 ], [ 364293.253899998962879, 257425.941799998283386 ], [ 364233.867299996316433, 257392.525100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602092700", "MAP": "C9-272-T81", "PARCEL_NAM": "215-278", "ACRE": ".139", "LONGITUDE": -64.89030438, "LATITUDE": 18.34626011, "OBJECTID_1": 21483, "PARCEL_NO_": "105602092700", "Tax_Legal_": "215-278 ANNAS RETREAT NEW QTR.", "Name": "GUTLIFFE, RUBENA", "Address": "218-278 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 98800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.128755237899995, "SHAPE_Area": 499.13147993600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363100.482199996709824, 257443.832800000905991 ], [ 363075.396600000560284, 257454.182100001722574 ], [ 363083.290700003504753, 257474.089499998837709 ], [ 363084.894299998879433, 257475.158100001513958 ], [ 363088.123099997639656, 257474.76240000128746 ], [ 363104.421999998390675, 257454.630800001323223 ], [ 363100.482199996709824, 257443.832800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601056100", "MAP": "G9-3035-T80", "PARCEL_NAM": "404-108", "ACRE": "0.14", "LONGITUDE": -64.89390423, "LATITUDE": 18.34628158, "OBJECTID_1": 20806, "PARCEL_NO_": "105601056100", "Tax_Legal_": "404-108 ANNAS RETREAT NEW QTR.", "Name": "ENCARNACION, JOSE & SOCARRO", "Address": "PO Box 502006", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20200, "Improved_V": 83600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.226185380399997, "SHAPE_Area": 548.15350127299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362725.464100003242493, 257450.473700001835823 ], [ 362699.716099999845028, 257443.93019999936223 ], [ 362695.495700001716614, 257466.060499999672174 ], [ 362718.023900002241135, 257471.944400001317263 ], [ 362720.534599997103214, 257461.199200000613928 ], [ 362723.003799997270107, 257455.308699999004602 ], [ 362725.464100003242493, 257450.473700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602025300", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-176", "ACRE": ".151", "LONGITUDE": -64.88669683000001, "LATITUDE": 18.34624834, "OBJECTID_1": 21088, "PARCEL_NO_": "105602025300", "Tax_Legal_": "394-176 ANNAS RETREAT NEW QTR C", "Name": "FRASER, GLANVILLE & E", "Address": "394-176 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 127000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.01870648000001, "SHAPE_Area": 640.48924432399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363487.476199999451637, 257451.221999999135733 ], [ 363464.955200001597404, 257444.49379999935627 ], [ 363455.078000001609325, 257468.055399999022484 ], [ 363475.961199998855591, 257477.725499998778105 ], [ 363478.414300002157688, 257473.7347999997437 ], [ 363487.476199999451637, 257451.221999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87304208, "LATITUDE": 18.34613389, "OBJECTID_1": 22262, "PARCEL_NO_": "105702010800", "Tax_Legal_": "FRYDENDAHL 11C EAST END QTR", "Name": "AKINS, L. & G. , & FLEMING, L", "Address": "2039 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025542, "Country": "United States", "Land_Value": 28600, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.51604366000001, "SHAPE_Area": 879.37470515500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364929.850500002503395, 257476.959300000220537 ], [ 364926.893200002610683, 257445.482200000435114 ], [ 364918.021899998188019, 257445.620700001716614 ], [ 364887.378499999642372, 257445.792100001126528 ], [ 364928.137199997901917, 257488.766499999910593 ], [ 364926.625299997627735, 257476.932900000363588 ], [ 364929.850500002503395, 257476.959300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89525244, "LATITUDE": 18.34623803, "OBJECTID_1": 20543, "PARCEL_NO_": "105601020800", "Tax_Legal_": "186 ANNAS RETREAT NEW QTR", "Name": "SMALL, VEDORA", "Address": "PO Box 302672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 47500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.910574349, "SHAPE_Area": 986.34941335500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362595.56870000064373, 257458.698699999600649 ], [ 362572.376299999654293, 257436.133000001311302 ], [ 362566.679899998009205, 257442.208099998533726 ], [ 362562.677100002765656, 257438.797800000756979 ], [ 362538.473399996757507, 257440.288499999791384 ], [ 362546.432199999690056, 257452.596999999135733 ], [ 362567.263300001621246, 257468.388399999588728 ], [ 362595.56870000064373, 257458.698699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602092800", "MAP": "C9-272-T81", "PARCEL_NAM": "215-276", "ACRE": ".156", "LONGITUDE": -64.89064689, "LATITUDE": 18.34622124, "OBJECTID_1": 21484, "PARCEL_NO_": "105602092800", "Tax_Legal_": "215-276 ANNAS RETREAT NEW QUARTER", "Name": "O'MARROW-HENDRRICKSON, EUGENIE", "Address": "PO Box 6581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24900, "Improved_V": 76400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.363468303800005, "SHAPE_Area": 639.64001513599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363068.911899998784065, 257458.139800000935793 ], [ 363067.328000001609325, 257454.749400001019239 ], [ 363064.2179000005126, 257441.213899999856949 ], [ 363061.017800003290176, 257438.232400000095367 ], [ 363057.796099998056889, 257437.783900000154972 ], [ 363054.560099996626377, 257439.024000000208616 ], [ 363043.20160000026226, 257447.163600001484156 ], [ 363035.885399997234344, 257454.06980000063777 ], [ 363051.862400002777576, 257471.721400000154972 ], [ 363068.911899998784065, 257458.139800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602015600", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-196", "ACRE": "0.14", "LONGITUDE": -64.88579344, "LATITUDE": 18.34622241, "OBJECTID_1": 20971, "PARCEL_NO_": "105602015600", "Tax_Legal_": "ANNAS RETREAT 394-196 NEW QTR", "Name": "CALISTRO, CALMA", "Address": "1660 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 55200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.818455008, "SHAPE_Area": 621.05827623599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363576.228100001811981, 257445.193399999290705 ], [ 363575.225699998438358, 257443.183600001037121 ], [ 363549.200099997222424, 257454.067600000649691 ], [ 363550.327200002968311, 257456.591600000858307 ], [ 363557.449100002646446, 257472.481899999082088 ], [ 363558.453900001943111, 257474.632699999958277 ], [ 363584.848899997770786, 257461.231499999761581 ], [ 363583.373400002717972, 257458.339699998497963 ], [ 363576.228100001811981, 257445.193399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602015300", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-216", "ACRE": ".165", "LONGITUDE": -64.88487048, "LATITUDE": 18.34621736, "OBJECTID_1": 20968, "PARCEL_NO_": "105602015300", "Tax_Legal_": "394-216 ANNAS RETREAT NEW QTR", "Name": "PEETS (LIFE ESTATE), MERLE H.", "Address": "PO Box 7053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 207800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.09502955799999, "SHAPE_Area": 595.72602506299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363680.9966000020504, 257452.172600001096725 ], [ 363674.639600001275539, 257441.143699999898672 ], [ 363645.436099998652935, 257461.591899998486042 ], [ 363655.792300000786781, 257476.453200001269579 ], [ 363682.583999998867512, 257455.140900000929832 ], [ 363680.9966000020504, 257452.172600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701016000", "MAP": "C9-260-T80", "PARCEL_NAM": "7-13", "ACRE": ".50", "LONGITUDE": -64.87971091, "LATITUDE": 18.34609151, "OBJECTID_1": 21889, "PARCEL_NO_": "105701016000", "Tax_Legal_": "TABOR & HARMONY 7-13 EAST END QTR.", "Name": "ALPHONSE, DENNIS E. & ABBIGAIL", "Address": "1712 7th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.39259620399997, "SHAPE_Area": 2588.5998963500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364198.963799998164177, 257419.470499999821186 ], [ 364198.926100000739098, 257423.903200000524521 ], [ 364197.295500002801418, 257426.000799998641014 ], [ 364192.4324000030756, 257428.916299998760223 ], [ 364187.590999998152256, 257429.298900000751019 ], [ 364182.776500001549721, 257426.5152000002563 ], [ 364178.827600002288818, 257416.772599998861551 ], [ 364161.609099999070168, 257450.195599999278784 ], [ 364271.015900000929832, 257480.644099999219179 ], [ 364269.450000002980232, 257475.142900001257658 ], [ 364198.963799998164177, 257419.470499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602015500", "MAP": "A9-167F-T71", "PARCEL_NAM": "314-199", "ACRE": ".191", "LONGITUDE": -64.88543851, "LATITUDE": 18.34618084, "OBJECTID_1": 20970, "PARCEL_NO_": "105602015500", "Tax_Legal_": "394-199 ANNAS RETREAT NEW QTR", "Name": "SERRANO, ROBERTO & GLORIA", "Address": "394-199 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 122600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.143441454, "SHAPE_Area": 914.56100003200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363616.624600000679493, 257436.02479999884963 ], [ 363615.107100002467632, 257433.916400000452995 ], [ 363581.668200001120567, 257455.202399998903275 ], [ 363583.373400002717972, 257458.339699998497963 ], [ 363585.75280000269413, 257463.003199998289347 ], [ 363592.908900000154972, 257474.883000001311302 ], [ 363627.776299998164177, 257452.159200001507998 ], [ 363616.624600000679493, 257436.02479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601053700", "MAP": "D9-1786-T81", "PARCEL_NAM": "215-300", "ACRE": "0.15", "LONGITUDE": -64.89318485, "LATITUDE": 18.34617717, "OBJECTID_1": 20782, "PARCEL_NO_": "105601053700", "Tax_Legal_": "215-300 ANNAS RETREAT NEW QTR.", "Name": "FREEMAN, NATHANIEL & BLONDINA", "Address": "4215 Annas Retreat #272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021791, "Country": "United States", "Land_Value": 22300, "Improved_V": 105900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.927669952, "SHAPE_Area": 630.61877843900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362783.725400000810623, 257426.674800001084805 ], [ 362778.821000002324581, 257434.445099998265505 ], [ 362773.855499997735023, 257449.392099998891354 ], [ 362774.593500003218651, 257457.419700000435114 ], [ 362776.983599998056889, 257460.816799998283386 ], [ 362787.404500000178814, 257468.079300001263618 ], [ 362799.754600003361702, 257438.205099999904633 ], [ 362783.725400000810623, 257426.674800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8945439, "LATITUDE": 18.34619997, "OBJECTID_1": 20541, "PARCEL_NO_": "105601020600", "Tax_Legal_": "ANNAS RETREAT 200 1 NEW QTR", "Name": "LEON BATTISTE and NIETA BATTISTE (LIFE ESTATE)", "Address": "PO Box 7602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.473341799, "SHAPE_Area": 1010.0099116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362660.253499999642372, 257438.11879999935627 ], [ 362629.696400001645088, 257428.158399999141693 ], [ 362626.363200001418591, 257440.796700000762939 ], [ 362623.780699998140335, 257459.985100001096725 ], [ 362655.977399997413158, 257466.792500000447035 ], [ 362659.387900002300739, 257445.077799998223782 ], [ 362660.253499999642372, 257438.11879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601057900", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-103", "ACRE": ".14", "LONGITUDE": -64.89424977, "LATITUDE": 18.34627612, "OBJECTID_1": 20822, "PARCEL_NO_": "105601057900", "Tax_Legal_": "404-103 ANNAS RETREAT NEW QTR.", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.147557144, "SHAPE_Area": 618.70263087800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362691.602600000798702, 257449.774399999529123 ], [ 362659.387900002300739, 257445.077799998223782 ], [ 362655.977399997413158, 257466.792500000447035 ], [ 362687.428999997675419, 257466.416600000113249 ], [ 362691.602600000798702, 257449.774399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602033000", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-359", "ACRE": ".165", "LONGITUDE": -64.88806706, "LATITUDE": 18.34617387, "OBJECTID_1": 21128, "PARCEL_NO_": "105602033000", "Tax_Legal_": "394-359 ANNAS RETREAT NEW QTR", "Name": "TURNBULL, BERNICE A.", "Address": "PO Box 301932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 112700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.444029044, "SHAPE_Area": 651.55299907300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363343.050899997353554, 257461.227899998426437 ], [ 363327.961199998855591, 257434.084399998188019 ], [ 363309.401600003242493, 257435.621300000697374 ], [ 363326.033900000154972, 257471.010000001639128 ], [ 363333.321199998259544, 257467.481100000441074 ], [ 363343.050899997353554, 257461.227899998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601052200", "MAP": "C9-240-T79", "PARCEL_NAM": "215-52", "ACRE": "0.14", "LONGITUDE": -64.89358407, "LATITUDE": 18.34624241, "OBJECTID_1": 20767, "PARCEL_NO_": "105601052200", "Tax_Legal_": "215-52&POR 404 ANNAS RETREAT NEW QTR.", "Name": "JACKSON, MAUREEN", "Address": "PO Box 304378", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20800, "Improved_V": 98800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.926346995599999, "SHAPE_Area": 497.07248822700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362759.508400000631809, 257458.620700001716614 ], [ 362764.167099997401237, 257450.790500000119209 ], [ 362735.993000000715256, 257445.07149999961257 ], [ 362728.748700000345707, 257443.534499999135733 ], [ 362725.464100003242493, 257450.473700001835823 ], [ 362723.003799997270107, 257455.308699999004602 ], [ 362726.223700001835823, 257455.968400001525879 ], [ 362753.311200000345707, 257465.277399998158216 ], [ 362754.726000003516674, 257461.468400001525879 ], [ 362759.508400000631809, 257458.620700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87219052, "LATITUDE": 18.34616275, "OBJECTID_1": 22292, "PARCEL_NO_": "105702013700", "Tax_Legal_": "FRYDENDAHL 11 1 EAST END QTR", "Name": "KNIGHT, CLIFFORD", "Address": "PO Box 1453", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19500, "Improved_V": 167000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.553579271, "SHAPE_Area": 613.25774174900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364990.412000000476837, 257467.111400000751019 ], [ 365016.075599998235703, 257483.575699999928474 ], [ 365017.8158999979496, 257468.602299999445677 ], [ 365017.072499997913837, 257461.207899998873472 ], [ 365013.87780000269413, 257457.593199998140335 ], [ 364993.829700000584126, 257444.552400000393391 ], [ 364990.412000000476837, 257467.111400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90241784, "LATITUDE": 18.34593736, "OBJECTID_1": 19799, "PARCEL_NO_": "105502011400", "Tax_Legal_": "WINTBERG 223 GT. NORTHSIDE QTR", "Name": "BROWNE, BALVIN & SHIRLIN M", "Address": "PO Box 11913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81300, "Improved_V": 278800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.04974718700001, "SHAPE_Area": 3737.5042939700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361803.72240000218153, 257363.136300001293421 ], [ 361771.668399997055531, 257434.223600000143051 ], [ 361798.159800000488758, 257448.161499999463558 ], [ 361804.54559999704361, 257455.813200000673532 ], [ 361853.327200002968311, 257408.927499998360872 ], [ 361803.72240000218153, 257363.136300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602014800", "MAP": "C9-221-T78", "PARCEL_NAM": "394-422", "ACRE": "0.56", "LONGITUDE": -64.88343895, "LATITUDE": 18.34595861, "OBJECTID_1": 20963, "PARCEL_NO_": "105602014800", "Tax_Legal_": "394-422 ANNAS RETREAT NEW QTR", "Name": "MULLEY, O'NEAL", "Address": "PO Box 1121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67400, "Improved_V": 59000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.67416927, "SHAPE_Area": 2289.3739846399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363841.839400000870228, 257408.103900000452995 ], [ 363789.445200003683567, 257405.775199998170137 ], [ 363791.030900001525879, 257408.954599998891354 ], [ 363790.163400001823902, 257416.124699998646975 ], [ 363787.717500001192093, 257419.271099999547005 ], [ 363784.479699999094009, 257420.722199998795986 ], [ 363820.326800003647804, 257472.3114 ], [ 363827.650100000202656, 257464.5608000010252 ], [ 363831.762599997222424, 257455.095300000160933 ], [ 363836.753300003707409, 257437.193199999630451 ], [ 363841.839400000870228, 257408.103900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602092200", "MAP": "C9-272-T81", "PARCEL_NAM": "215-283", "ACRE": ".140", "LONGITUDE": -64.88967388, "LATITUDE": 18.34618727, "OBJECTID_1": 21478, "PARCEL_NO_": "105602092200", "Tax_Legal_": "215-283 ANNAS RETREAT NEW QTR.", "Name": "ALPHONSO FAHIE and DESTINEE OSHANA FAHIE", "Address": "215-283 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 81200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.670828826, "SHAPE_Area": 569.76901911200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363171.410700000822544, 257447.579700000584126 ], [ 363167.465400002896786, 257437.414900001138449 ], [ 363162.679700002074242, 257431.254000000655651 ], [ 363139.874600000679493, 257457.876299999654293 ], [ 363145.477399997413158, 257462.777300000190735 ], [ 363143.029700003564358, 257466.134700000286102 ], [ 363155.928900003433228, 257466.451400000602007 ], [ 363171.410700000822544, 257447.579700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701015900", "MAP": "C9-260-T80", "PARCEL_NAM": "7-14", "ACRE": ".50", "LONGITUDE": -64.87956561, "LATITUDE": 18.3457367, "OBJECTID_1": 21888, "PARCEL_NO_": "105701015900", "Tax_Legal_": "7-14 TABOR & HARMONY No.5&6 EASTEND QUARTER", "Name": "VICTOR, AGNES MADRIE-LIFE INTER", "Address": "712 Sugar Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54000, "Improved_V": 198500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.39339149, "SHAPE_Area": 3752.22393607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364246.879699997603893, 257379.543800000101328 ], [ 364222.072899997234344, 257357.175999999046326 ], [ 364218.833200000226498, 257358.838199999183416 ], [ 364209.877499997615814, 257368.897399999201298 ], [ 364206.594700001180172, 257375.625500001013279 ], [ 364203.338899999856949, 257379.1875 ], [ 364196.794900000095367, 257390.110800001770258 ], [ 364184.550899997353554, 257407.531300000846386 ], [ 364183.730200000107288, 257409.21339999884367 ], [ 364184.507799997925758, 257412.597199998795986 ], [ 364186.912299998104572, 257414.305700000375509 ], [ 364193.368199996650219, 257413.72520000115037 ], [ 364196.582699999213219, 257415.018100000917912 ], [ 364198.963799998164177, 257419.470499999821186 ], [ 364269.450000002980232, 257475.142900001257658 ], [ 364265.528099998831749, 257462.234000001102686 ], [ 364233.867299996316433, 257392.525100000202656 ], [ 364246.879699997603893, 257379.543800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601054200", "MAP": "C9-240-T79", "PARCEL_NAM": "215-45", "ACRE": "0.14", "LONGITUDE": -64.89240992000001, "LATITUDE": 18.34615449, "OBJECTID_1": 20787, "PARCEL_NO_": "105601054200", "Tax_Legal_": "215-45&POR 404 ANNAS RET NEW QTR.", "Name": "FARREL, EDITH, RUDOLPH, JR. & SHAMG", "Address": "PO Box 1192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 125400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.66351349599999, "SHAPE_Area": 673.68243948199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362885.929300002753735, 257450.731600001454353 ], [ 362866.782799996435642, 257426.510200001299381 ], [ 362848.109899997711182, 257441.344999998807907 ], [ 362870.503300003707409, 257463.059900000691414 ], [ 362885.929300002753735, 257450.731600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602088100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89105235, "LATITUDE": 18.34615624, "OBJECTID_1": 21448, "PARCEL_NO_": "105602088100", "Tax_Legal_": "215-135 ANNAS RETREAT NEW QTR.", "Name": "LOWE, MARGARET", "Address": "4215 Annas Retreat NO. 272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 106000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.827536764, "SHAPE_Area": 592.83066142400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363031.096100002527237, 257448.3310999982059 ], [ 363013.45440000295639, 257436.78770000115037 ], [ 363005.421800002455711, 257433.133400000631809 ], [ 362988.433499999344349, 257439.538199998438358 ], [ 363018.067500002682209, 257463.212099999189377 ], [ 363022.962899997830391, 257456.49720000103116 ], [ 363031.096100002527237, 257448.3310999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89496253, "LATITUDE": 18.34613422, "OBJECTID_1": 20542, "PARCEL_NO_": "105601020700", "Tax_Legal_": "ANNAS RETREAT 189 1 NEW QTR", "Name": "CHINNERY, MICHAEL & MARGARET (LIFE ESTATE)", "Address": "PO Box 8695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32600, "Improved_V": 18900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.73679262900001, "SHAPE_Area": 1009.83919171 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362619.194499999284744, 257430.394499998539686 ], [ 362580.527500003576279, 257425.856100000441074 ], [ 362578.065399996936321, 257430.902199998497963 ], [ 362572.376299999654293, 257436.133000001311302 ], [ 362595.56870000064373, 257458.698699999600649 ], [ 362615.785899996757507, 257451.89809999987483 ], [ 362619.194499999284744, 257430.394499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87265158, "LATITUDE": 18.3461374, "OBJECTID_1": 22265, "PARCEL_NO_": "105702011100", "Tax_Legal_": "1A ESTATE FRYDENDAHL EAST END QTR", "Name": "ASFOUR FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 130700, "Improved_V": 17600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.87582499300001, "SHAPE_Area": 1760.4537573099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364960.765500001609325, 257444.91499999910593 ], [ 364955.925800003111362, 257445.086500000208616 ], [ 364932.539200000464916, 257445.317299999296665 ], [ 364926.893200002610683, 257445.482200000435114 ], [ 364929.850500002503395, 257476.959300000220537 ], [ 364980.644599996507168, 257477.797200001776218 ], [ 364984.958499997854233, 257444.690900001674891 ], [ 364960.765500001609325, 257444.91499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602082900", "MAP": "C9-272-T81", "PARCEL_NAM": "215-233", "ACRE": ".138", "LONGITUDE": -64.88875535, "LATITUDE": 18.34616852, "OBJECTID_1": 21398, "PARCEL_NO_": "105602082900", "Tax_Legal_": "215-233 ANNA'S RETREAT NEW QTR.", "Name": "BOYCE, CLEMENTINA, REHENIA, ROBERT, ALFRED & OTHERS", "Address": "1130 NW 18th St", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33311, "Country": "United States", "Land_Value": 17600, "Improved_V": 185200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.061606598899999, "SHAPE_Area": 372.24428233899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363267.351099997758865, 257449.631499998271465 ], [ 363249.725500002503395, 257436.188299998641014 ], [ 363239.91669999808073, 257451.728999998420477 ], [ 363259.176500000059605, 257462.652399998158216 ], [ 363264.082699999213219, 257454.671000000089407 ], [ 363267.351099997758865, 257449.631499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90885624000001, "LATITUDE": 18.3461877, "OBJECTID_1": 19696, "PARCEL_NO_": "105501014300", "Tax_Legal_": "WINTBERG ESTATE 1CC No.3 GREAT NORTHSIDE QTR.", "Name": "DIMOPOULOS, J. F. , K. A. , C. & N. A", "Address": "PO Box 11969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.104309325, "SHAPE_Area": 609.70389102700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361144.3699000030756, 257432.927299998700619 ], [ 361121.893899999558926, 257415.606600001454353 ], [ 361120.238099999725819, 257420.659299999475479 ], [ 361112.774499997496605, 257444.874000001698732 ], [ 361141.808899998664856, 257444.267299998551607 ], [ 361145.842299997806549, 257444.089200001209974 ], [ 361146.152999997138977, 257440.10020000115037 ], [ 361147.740500003099442, 257435.866799999028444 ], [ 361144.3699000030756, 257432.927299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601053400", "MAP": "D9-1786-T81", "PARCEL_NAM": "215-299", "ACRE": "0.14", "LONGITUDE": -64.8927987, "LATITUDE": 18.34613067, "OBJECTID_1": 20779, "PARCEL_NO_": "105601053400", "Tax_Legal_": "215-299 ANAS RETREAT NEW QTR.", "Name": "ROSAS, LYDIA I", "Address": "PO BOX 10968", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 110100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.510462519, "SHAPE_Area": 641.42725300699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362845.673000000417233, 257443.436000000685453 ], [ 362830.479000002145767, 257428.535100001841784 ], [ 362827.280699998140335, 257425.342500001192093 ], [ 362818.348300002515316, 257432.657699998468161 ], [ 362806.167300000786781, 257442.690499998629093 ], [ 362814.984600000083447, 257448.884399998933077 ], [ 362827.810099996626377, 257457.85530000180006 ], [ 362831.870399996638298, 257454.510999999940395 ], [ 362845.673000000417233, 257443.436000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-1", "ACRE": ".75", "LONGITUDE": -64.87593284, "LATITUDE": 18.34622875, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.629586069, "SHAPE_Area": 2355.10210134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364625.334100000560284, 257442.802999999374151 ], [ 364598.795900002121925, 257434.353100001811981 ], [ 364588.029799997806549, 257467.617800001055002 ], [ 364582.73030000180006, 257484.081700000911951 ], [ 364585.301399998366833, 257487.322299998253584 ], [ 364583.449299998581409, 257493.80460000038147 ], [ 364619.697300001978874, 257501.609900001436472 ], [ 364620.094200000166893, 257499.36089999973774 ], [ 364621.549400001764297, 257485.470300000160933 ], [ 364629.22240000218153, 257467.47859999909997 ], [ 364634.646300002932549, 257461.525400001555681 ], [ 364639.291199997067451, 257447.191300000995398 ], [ 364625.334100000560284, 257442.802999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602033200", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-360", "ACRE": ".124", "LONGITUDE": -64.88789846, "LATITUDE": 18.3461021, "OBJECTID_1": 21130, "PARCEL_NO_": "105602033200", "Tax_Legal_": "394-360 ANNAS RETREAT NO.1 NEW QTR", "Name": "D. HARRIGAN & L. HARRIGAN REV. LIV. TRUST", "Address": "394-360 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 216900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.21159159, "SHAPE_Area": 599.21438468899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363363.343599997460842, 257445.561999998986721 ], [ 363332.888999998569489, 257423.570099998265505 ], [ 363332.804399996995926, 257433.490800000727177 ], [ 363327.961199998855591, 257434.084399998188019 ], [ 363343.050899997353554, 257461.227899998426437 ], [ 363352.782399997115135, 257454.763700000941753 ], [ 363361.711199998855591, 257447.870600000023842 ], [ 363363.343599997460842, 257445.561999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602027600", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-178", "ACRE": "0.171", "LONGITUDE": -64.88707123, "LATITUDE": 18.34613579, "OBJECTID_1": 21093, "PARCEL_NO_": "105602027600", "Tax_Legal_": "394-178 ANNAS RETREAT NEW QTR", "Name": "FAHIE, AUBREY SONIA", "Address": "PO Box 11243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 218900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.386798336, "SHAPE_Area": 570.87577855100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363453.636200003325939, 257447.989700000733137 ], [ 363413.433899998664856, 257434.361800000071526 ], [ 363409.305200003087521, 257445.727099999785423 ], [ 363447.873400002717972, 257461.874699998646975 ], [ 363453.636200003325939, 257447.989700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602082800", "MAP": "C9-272-T81", "PARCEL_NAM": "215-231", "ACRE": ".152", "LONGITUDE": -64.88902556, "LATITUDE": 18.34608838, "OBJECTID_1": 21397, "PARCEL_NO_": "105602082800", "Tax_Legal_": "215-231 ANNAS RETREAT NEW QTR.", "Name": "FLORESIA T, ULSTON R and AVERY SPRINGETTE", "Address": "PO Box 9295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 106200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.680841540900005, "SHAPE_Area": 602.617675233 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363241.674900002777576, 257434.644799999892712 ], [ 363228.064699999988079, 257423.134300000965595 ], [ 363220.752199999988079, 257429.618400000035763 ], [ 363219.114399999380112, 257432.560300000011921 ], [ 363207.718099996447563, 257445.132599998265505 ], [ 363225.34009999781847, 257458.997900001704693 ], [ 363241.674900002777576, 257434.644799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602092300", "MAP": "C9-272-T81", "PARCEL_NAM": "215-282", "ACRE": ".154", "LONGITUDE": -64.88978652, "LATITUDE": 18.34608074, "OBJECTID_1": 21479, "PARCEL_NO_": "105602092300", "Tax_Legal_": "215-282 ANNAS RETREAT NEW QTR.", "Name": "WILLETT, JOHN & RUBY", "Address": "215-282 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 122900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.454221452, "SHAPE_Area": 585.34391632999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363162.679700002074242, 257431.254000000655651 ], [ 363156.277800001204014, 257425.502099998295307 ], [ 363149.055100001394749, 257421.432199999690056 ], [ 363127.067100003361702, 257446.794599998742342 ], [ 363139.874600000679493, 257457.876299999654293 ], [ 363162.679700002074242, 257431.254000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602015400", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-217", "ACRE": ".197", "LONGITUDE": -64.88496072, "LATITUDE": 18.34608006, "OBJECTID_1": 20969, "PARCEL_NO_": "105602015400", "Tax_Legal_": "394-217 ANNAS RETREAT NEW QTR", "Name": "FRANCIS, RAYMOND", "Address": "PO BOX 303734", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 210100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.077138224, "SHAPE_Area": 687.21399636599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363674.639600001275539, 257441.143699999898672 ], [ 363665.906800001859665, 257425.029100000858307 ], [ 363634.278999999165535, 257446.090700000524521 ], [ 363645.436099998652935, 257461.591899998486042 ], [ 363674.639600001275539, 257441.143699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602087000", "MAP": "C9-272-T81", "PARCEL_NAM": "215-267", "ACRE": "6,000 sq ft", "LONGITUDE": -64.88936601, "LATITUDE": 18.34605822, "OBJECTID_1": 21437, "PARCEL_NO_": "105602087000", "Tax_Legal_": "ANNAS RETREAT 215-267 NEW QTR.", "Name": "CAMACHO, KENNETH C", "Address": "215-267 EST. ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 95300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.774383353, "SHAPE_Area": 684.91390620899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363191.816600002348423, 257418.615800000727177 ], [ 363173.147399999201298, 257433.028400000184774 ], [ 363176.32769999653101, 257438.331799998879433 ], [ 363182.630699999630451, 257455.69310000166297 ], [ 363185.038900002837181, 257456.979299999773502 ], [ 363187.463200002908707, 257456.365899998694658 ], [ 363207.003499999642372, 257434.361000001430511 ], [ 363191.816600002348423, 257418.615800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90484509, "LATITUDE": 18.34563904, "OBJECTID_1": 19767, "PARCEL_NO_": "105501023100", "Tax_Legal_": "WINTBERG 1 R 2 GREAT NORTHSIDE", "Name": "CLENDINEN, DALE M", "Address": "PO Box 10572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 118900, "Improved_V": 419800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.98306903399998, "SHAPE_Area": 4405.1465461300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361573.24099999666214, 257423.842099998146296 ], [ 361569.424199998378754, 257416.103100001811981 ], [ 361582.286799997091293, 257326.071400001645088 ], [ 361527.374799996614456, 257335.332299999892712 ], [ 361525.623700000345707, 257351.57209999859333 ], [ 361528.004900000989437, 257356.024599999189377 ], [ 361533.496200002729893, 257374.012499999254942 ], [ 361531.745099999010563, 257390.252300001680851 ], [ 361531.644400000572205, 257402.072799999266863 ], [ 361536.284500002861023, 257425.331000000238419 ], [ 361538.681900002062321, 257427.883799999952316 ], [ 361544.311700001358986, 257429.618599999696016 ], [ 361550.731600001454353, 257433.259700000286102 ], [ 361552.335199996829033, 257434.328299999237061 ], [ 361556.88629999756813, 257438.366900000721216 ], [ 361573.24099999666214, 257423.842099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602092500", "MAP": "C9-272-T81", "PARCEL_NAM": "215-280", "ACRE": ".139", "LONGITUDE": -64.89012738, "LATITUDE": 18.34603574, "OBJECTID_1": 21481, "PARCEL_NO_": "105602092500", "Tax_Legal_": "215-280 ANNAS RETREAT NEW QTR.", "Name": "GUMBS, BERECIA, ANTONIO & ANGELA", "Address": "215-280 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 160600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.163613072, "SHAPE_Area": 675.97893651799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363093.380000002682209, 257425.620600000023842 ], [ 363100.482199996709824, 257443.832800000905991 ], [ 363104.421999998390675, 257454.630800001323223 ], [ 363108.493100002408028, 257450.020100001245737 ], [ 363110.892300002276897, 257452.361699998378754 ], [ 363121.464299999177456, 257441.8935999982059 ], [ 363117.653899997472763, 257415.897900000214577 ], [ 363109.578199997544289, 257417.309399999678135 ], [ 363100.662000000476837, 257422.724899999797344 ], [ 363093.380000002682209, 257425.620600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602092600", "MAP": "C9-272-T81", "PARCEL_NAM": "215-279", "ACRE": ".138", "LONGITUDE": -64.89035561, "LATITUDE": 18.34608892, "OBJECTID_1": 21482, "PARCEL_NO_": "105602092600", "Tax_Legal_": "215-279 ANNAS RETREAT NEW QTR.", "Name": "JOHNSON, JENNIFER & CLIFTON C.", "Address": "PO Box 9187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 89000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.138102841999995, "SHAPE_Area": 529.85562339199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363093.380000002682209, 257425.620600000023842 ], [ 363074.780900001525879, 257431.801199998706579 ], [ 363072.347499996423721, 257433.469999998807907 ], [ 363070.707900002598763, 257436.622999999672174 ], [ 363073.045999996364117, 257446.14130000025034 ], [ 363073.022600002586842, 257448.885400000959635 ], [ 363075.396600000560284, 257454.182100001722574 ], [ 363100.482199996709824, 257443.832800000905991 ], [ 363093.380000002682209, 257425.620600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602015700", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-198", "ACRE": ".188", "LONGITUDE": -64.88553771, "LATITUDE": 18.34602152, "OBJECTID_1": 20972, "PARCEL_NO_": "105602015700", "Tax_Legal_": "394-198 ANNAS RETREAT NEW QTR", "Name": "PERCIVAL, AGNES", "Address": "601 Bramhall Ave", "City": "Jersey City", "State": "New Jersey", "Zip": 7304, "Country": "United States", "Land_Value": 22600, "Improved_V": 178100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.24658237200001, "SHAPE_Area": 713.262882139 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363605.467500001192093, 257420.523699998855591 ], [ 363603.360799998044968, 257417.416499998420477 ], [ 363573.720299996435642, 257440.24439999833703 ], [ 363574.642399996519089, 257442.013999998569489 ], [ 363576.228100001811981, 257445.193399999290705 ], [ 363581.668200001120567, 257455.202399998903275 ], [ 363615.107100002467632, 257433.916400000452995 ], [ 363605.467500001192093, 257420.523699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601056000", "MAP": "G9-3035-T80", "PARCEL_NAM": "404-109", "ACRE": "0.14", "LONGITUDE": -64.89385956, "LATITUDE": 18.34610405, "OBJECTID_1": 20805, "PARCEL_NO_": "105601056000", "Tax_Legal_": "ANNAS RETREAT 404-109 NEW QTR.", "Name": "CHRISTIAN, OLSON", "Address": "3224 Mangrove Dr", "City": "Orlando", "State": "Florida", "Zip": 32824, "Country": "United States", "Land_Value": 19200, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.456219737400005, "SHAPE_Area": 498.11147096299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362732.854000002145767, 257434.91330000013113 ], [ 362723.167499996721745, 257436.100600000470877 ], [ 362706.358999997377396, 257421.39750000089407 ], [ 362702.237499997019768, 257431.918499998748302 ], [ 362699.716099999845028, 257443.93019999936223 ], [ 362725.464100003242493, 257450.473700001835823 ], [ 362728.748700000345707, 257443.534499999135733 ], [ 362732.854000002145767, 257434.91330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601052300", "MAP": "C9-240-T79", "PARCEL_NAM": "215-51", "ACRE": "0.16", "LONGITUDE": -64.89352717, "LATITUDE": 18.34610932, "OBJECTID_1": 20768, "PARCEL_NO_": "105601052300", "Tax_Legal_": "215-51 ANNAS RETREAT NO.1 NEW QTR", "Name": "STEPHENS, JANICE", "Address": "PO Box 9144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21200, "Improved_V": 111100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.63239486499999, "SHAPE_Area": 617.85310093800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362749.831500001251698, 257429.774900000542402 ], [ 362737.772799998521805, 257425.454300001263618 ], [ 362732.854000002145767, 257434.91330000013113 ], [ 362728.748700000345707, 257443.534499999135733 ], [ 362735.993000000715256, 257445.07149999961257 ], [ 362764.167099997401237, 257450.790500000119209 ], [ 362765.799500003457069, 257448.481800001114607 ], [ 362767.444499999284744, 257444.695599999278784 ], [ 362769.929999999701977, 257436.905499998480082 ], [ 362749.831500001251698, 257429.774900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601058000", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-102", "ACRE": ".14", "LONGITUDE": -64.89421158, "LATITUDE": 18.34610324, "OBJECTID_1": 20823, "PARCEL_NO_": "105601058000", "Tax_Legal_": "404-102 ANNAS RETREAT NEW QTR.", "Name": "MERRICK, D. & JULIUS, G", "Address": "P.O. BOX 5007", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.262774193, "SHAPE_Area": 640.40608840200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362694.993299998342991, 257430.381499998271465 ], [ 362662.776799999177456, 257425.896000001579523 ], [ 362660.253499999642372, 257438.11879999935627 ], [ 362659.387900002300739, 257445.077799998223782 ], [ 362691.602600000798702, 257449.774399999529123 ], [ 362694.993299998342991, 257430.381499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602016600", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-197", "ACRE": "0.14", "LONGITUDE": -64.88587625, "LATITUDE": 18.34604996, "OBJECTID_1": 20981, "PARCEL_NO_": "105602016600", "Tax_Legal_": "394-197 ANNAS RETREAT NO 1 NEW QTR", "Name": "JOSEPH, MARIE Y. (LIFE ESTATE)", "Address": "PO Box 1403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20800, "Improved_V": 115200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.057948033900004, "SHAPE_Area": 563.79308432599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363575.225699998438358, 257443.183600001037121 ], [ 363574.642399996519089, 257442.013999998569489 ], [ 363565.915100000798702, 257425.266199998557568 ], [ 363564.82490000128746, 257423.423799999058247 ], [ 363541.623199999332428, 257437.099700000137091 ], [ 363549.200099997222424, 257454.067600000649691 ], [ 363575.225699998438358, 257443.183600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601054300", "MAP": "C9-240-T79", "PARCEL_NAM": "215-44", "ACRE": "0.14", "LONGITUDE": -64.89225427, "LATITUDE": 18.34604766, "OBJECTID_1": 20788, "PARCEL_NO_": "105601054300", "Tax_Legal_": "215-44&POR 404 ANNAS RET NEW QTR.", "Name": "EVANGEL ENTERPRISES INC DBA", "Address": "PO Box 11729", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 4300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.969727066800004, "SHAPE_Area": 570.53472424899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362902.165200002491474, 257437.987799998372793 ], [ 362879.770099997520447, 257416.484000001102686 ], [ 362866.782799996435642, 257426.510200001299381 ], [ 362885.929300002753735, 257450.731600001454353 ], [ 362902.165200002491474, 257437.987799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88457207, "LATITUDE": 18.34604211, "OBJECTID_1": 20967, "PARCEL_NO_": "105602015200", "Tax_Legal_": "394-213 ANNAS RETREAT NEW QTR", "Name": "KING, VERNON & BERNICE", "Address": "PO Box 304783", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23800, "Improved_V": 148000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.560734131, "SHAPE_Area": 734.10531528900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363705.965300001204014, 257455.543400000780821 ], [ 363707.847599998116493, 257423.89469999819994 ], [ 363701.411499999463558, 257422.153299998492002 ], [ 363693.393299996852875, 257416.810300000011921 ], [ 363680.9966000020504, 257452.172600001096725 ], [ 363682.583999998867512, 257455.140900000929832 ], [ 363684.187600001692772, 257456.209499999880791 ], [ 363705.965300001204014, 257455.543400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88436075, "LATITUDE": 18.34604295, "OBJECTID_1": 20965, "PARCEL_NO_": "105602015000", "Tax_Legal_": "394-31 ANNAS RETREAT NEW QTR", "Name": "SMITH, B. & D. & RABSATT, E. &", "Address": "394-31 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 128400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.34612548200001, "SHAPE_Area": 708.48784997300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363730.422600001096725, 257424.290600001811981 ], [ 363712.680100001394749, 257424.567600000649691 ], [ 363707.847599998116493, 257423.89469999819994 ], [ 363705.965300001204014, 257455.543400000780821 ], [ 363729.355499997735023, 257454.890399999916553 ], [ 363730.422600001096725, 257424.290600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87338049, "LATITUDE": 18.34608075, "OBJECTID_1": 22260, "PARCEL_NO_": "105702010600", "Tax_Legal_": "FRYDENDAHL 11AB EAST END QTR", "Name": "REGISTE, DAVIS & JOSEPH", "Address": "1A9-7 Dorothea", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 183600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.756660737900006, "SHAPE_Area": 256.84248865900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364884.959499999880791, 257445.772300001233816 ], [ 364868.829700000584126, 257446.062399998307228 ], [ 364874.317400000989437, 257464.472500000149012 ], [ 364888.87780000269413, 257459.103199999779463 ], [ 364884.959499999880791, 257445.772300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013000", "MAP": "D9-754-T010", "PARCEL_NAM": "1D", "ACRE": ".8370", "LONGITUDE": -64.90845953, "LATITUDE": 18.34565345, "OBJECTID_1": 19683, "PARCEL_NO_": "105501013000", "Tax_Legal_": "WINTBERG 1D GREAT NORTHSIDE QTR", "Name": "SALEM, JAWAHER", "Address": "PO Box 10606", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 152500, "Improved_V": 668200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.97114063700002, "SHAPE_Area": 2573.3177663400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361179.950800001621246, 257402.011399999260902 ], [ 361199.732500001788139, 257370.360700000077486 ], [ 361183.301899999380112, 257353.691899999976158 ], [ 361191.802799999713898, 257338.927099999040365 ], [ 361168.643100000917912, 257323.319200001657009 ], [ 361157.731200002133846, 257373.681200001388788 ], [ 361145.170800000429153, 257428.2516999989748 ], [ 361148.379900000989437, 257430.177799999713898 ], [ 361150.771899998188019, 257433.363800000399351 ], [ 361153.189000003039837, 257433.5945999994874 ], [ 361154.068999998271465, 257424.947000000625849 ], [ 361155.719400003552437, 257420.527499999850988 ], [ 361159.803099997341633, 257414.4391999989748 ], [ 361167.112099997699261, 257408.377399999648333 ], [ 361179.26070000231266, 257402.144000001251698 ], [ 361179.950800001621246, 257402.011399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602088000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89090973, "LATITUDE": 18.34603683, "OBJECTID_1": 21447, "PARCEL_NO_": "105602088000", "Tax_Legal_": "ANNAS RETREAT 215-134 NEW QTR.", "Name": "MADURO, MILTON", "Address": "PO Box 502474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 106000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.453021298, "SHAPE_Area": 589.68273679799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363046.522200003266335, 257436.002900000661612 ], [ 363022.483800001442432, 257418.074299998581409 ], [ 363019.235200002789497, 257420.791900001466274 ], [ 363005.421800002455711, 257433.133400000631809 ], [ 363013.45440000295639, 257436.78770000115037 ], [ 363031.096100002527237, 257448.3310999982059 ], [ 363036.787100002169609, 257442.889299999922514 ], [ 363046.522200003266335, 257436.002900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88740075, "LATITUDE": 18.34599289, "OBJECTID_1": 21133, "PARCEL_NO_": "105602033500", "Tax_Legal_": "ANNAS RETREAT 394-247 NEW QTR", "Name": "ATTIDORE, ROMA & HAROLD", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 156700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.313213874, "SHAPE_Area": 968.99162021999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363380.511699996888638, 257418.049199998378754 ], [ 363378.769599996507168, 257433.23369999974966 ], [ 363377.099500000476837, 257439.975000001490116 ], [ 363407.647600002586842, 257450.990800000727177 ], [ 363409.305200003087521, 257445.727099999785423 ], [ 363413.433899998664856, 257434.361800000071526 ], [ 363415.165200002491474, 257420.443799998611212 ], [ 363416.000299997627735, 257417.073100000619888 ], [ 363380.511699996888638, 257418.049199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602083000", "MAP": "C9-272-T81", "PARCEL_NAM": "215-234", "ACRE": ".164", "LONGITUDE": -64.8886482, "LATITUDE": 18.34598507, "OBJECTID_1": 21399, "PARCEL_NO_": "105602083000", "Tax_Legal_": "ANNAS RETREAT 215-234 NEW QTR.", "Name": "DAWSON, VIVIAN & CHRISTOPHER, Y", "Address": "4200 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022218, "Country": "United States", "Land_Value": 23800, "Improved_V": 118700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.993409511, "SHAPE_Area": 725.00012291600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363279.539300002157688, 257438.754399999976158 ], [ 363275.723499998450279, 257413.3918999992311 ], [ 363264.41889999806881, 257415.199200000613928 ], [ 363251.516099996864796, 257415.304699998348951 ], [ 363253.866700001060963, 257423.345499999821186 ], [ 363252.169600002467632, 257433.252999998629093 ], [ 363249.725500002503395, 257436.188299998641014 ], [ 363267.351099997758865, 257449.631499998271465 ], [ 363273.886100001633167, 257439.763599999248981 ], [ 363279.539300002157688, 257438.754399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602025400", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-177", "ACRE": ".167", "LONGITUDE": -64.88663285, "LATITUDE": 18.34599888, "OBJECTID_1": 21089, "PARCEL_NO_": "105602025400", "Tax_Legal_": "394-177 ANNAS RETREAT NEW QTR", "Name": "Calvin E ,Deborah A, Melvina P, Dian S, & Calvin J", "Address": "PO Box 502243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23300, "Improved_V": 222700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.90369918499999, "SHAPE_Area": 711.89269480500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363466.790799997746944, 257418.333200000226498 ], [ 363464.955200001597404, 257444.49379999935627 ], [ 363487.476199999451637, 257451.221999999135733 ], [ 363491.78830000013113, 257418.326699998229742 ], [ 363466.790799997746944, 257418.333200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9045084, "LATITUDE": 18.34562678, "OBJECTID_1": 19856, "PARCEL_NO_": "105502020900", "Tax_Legal_": "WINTBERG ESTATE 1-R-3 GREAT NORTHSIDE QTR", "Name": "SHARP, ANN MARIE", "Address": "PO Box 502312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 106600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.37575772100001, "SHAPE_Area": 2505.8640251500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361613.220799997448921, 257403.923000000417233 ], [ 361607.515100002288818, 257393.616700001060963 ], [ 361601.206699997186661, 257376.888700000941753 ], [ 361600.6216000020504, 257350.919399999082088 ], [ 361603.990699999034405, 257334.059500001370907 ], [ 361607.278800003230572, 257326.698100000619888 ], [ 361582.286799997091293, 257326.071400001645088 ], [ 361569.424199998378754, 257416.103100001811981 ], [ 361573.24099999666214, 257423.842099998146296 ], [ 361577.804099999368191, 257419.789500001817942 ], [ 361613.220799997448921, 257403.923000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9095956, "LATITUDE": 18.34597653, "OBJECTID_1": 19686, "PARCEL_NO_": "105501013300", "Tax_Legal_": "1CD-1 WINTBERG GR NORTHSIDE QTR", "Name": "DONOHOO, APRIL D. & JOSEPH T.", "Address": "6878 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 106600, "Improved_V": 525500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.89753610700001, "SHAPE_Area": 2297.8858670999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361062.372400000691414, 257398.020899999886751 ], [ 361018.916000001132488, 257387.74379999935627 ], [ 361012.102300003170967, 257430.328999999910593 ], [ 361122.727099999785423, 257412.447000000625849 ], [ 361062.372400000691414, 257398.020899999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602016000", "MAP": "A9-167G-T71", "PARCEL_NAM": "394-218", "ACRE": "0.17", "LONGITUDE": -64.88474798, "LATITUDE": 18.34589305, "OBJECTID_1": 20975, "PARCEL_NO_": "105602016000", "Tax_Legal_": "ANNAS RETREAT 394-218 NEW QTR", "Name": "CROMARTIE, DEENECE", "Address": "PO Box 11585", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 135700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.68013004299999, "SHAPE_Area": 862.26873344399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363657.965899996459484, 257410.6097999997437 ], [ 363665.906800001859665, 257425.029100000858307 ], [ 363674.639600001275539, 257441.143699999898672 ], [ 363680.9966000020504, 257452.172600001096725 ], [ 363693.393299996852875, 257416.810300000011921 ], [ 363687.795900002121925, 257411.276099998503923 ], [ 363684.635399997234344, 257403.65089999884367 ], [ 363657.965899996459484, 257410.6097999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602092400", "MAP": "C9-272-T81", "PARCEL_NAM": "215-281", "ACRE": ".138", "LONGITUDE": -64.88992507, "LATITUDE": 18.34598239, "OBJECTID_1": 21480, "PARCEL_NO_": "105602092400", "Tax_Legal_": "215-281 ANNA'S RETREAT NEW QTR.", "Name": "BRATHWAITE, CHARLES & HODGE, M", "Address": "PO Box 9100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 153900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.440398647699993, "SHAPE_Area": 555.38670090799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363149.055100001394749, 257421.432199999690056 ], [ 363131.359399996697903, 257416.221099998801947 ], [ 363117.653899997472763, 257415.897900000214577 ], [ 363121.464299999177456, 257441.8935999982059 ], [ 363127.067100003361702, 257446.794599998742342 ], [ 363149.055100001394749, 257421.432199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701014700", "MAP": "C9-221-T78", "PARCEL_NAM": "394-413", "ACRE": "0.58", "LONGITUDE": -64.8828323, "LATITUDE": 18.34579251, "OBJECTID_1": 21879, "PARCEL_NO_": "105701014700", "Tax_Legal_": "394-413 ANNAS RETREAT NEW QTR", "Name": "MAHONEY, ANA", "Address": "PO BOX 9173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79100, "Improved_V": 81800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.3175854, "SHAPE_Area": 2352.6870822699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363909.520999997854233, 257414.357400000095367 ], [ 363857.452399998903275, 257373.823399998247623 ], [ 363854.122900001704693, 257386.039599999785423 ], [ 363849.888099998235703, 257409.858500000089407 ], [ 363898.71169999986887, 257452.687899999320507 ], [ 363905.257500000298023, 257441.55350000038743 ], [ 363908.604999996721745, 257427.226599998772144 ], [ 363909.520999997854233, 257414.357400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601053300", "MAP": "D9-1786-T81", "PARCEL_NAM": "215-232", "ACRE": "0.14", "LONGITUDE": -64.89260178000001, "LATITUDE": 18.34601747, "OBJECTID_1": 20778, "PARCEL_NO_": "105601053300", "Tax_Legal_": "215-232 ANNAS RETREAT NEW QTR.", "Name": "TODMAN, MARIE & CLINTON & S", "Address": "PO Box 10223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 240200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.399121083400004, "SHAPE_Area": 453.26134488500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362866.782799996435642, 257426.510200001299381 ], [ 362843.466300003230572, 257418.508900001645088 ], [ 362830.479000002145767, 257428.535100001841784 ], [ 362845.673000000417233, 257443.436000000685453 ], [ 362848.109899997711182, 257441.344999998807907 ], [ 362866.782799996435642, 257426.510200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702024200", "MAP": "G9-503-T59", "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.86762722, "LATITUDE": 18.34596073, "OBJECTID_1": 22440, "PARCEL_NO_": "105702024200", "Tax_Legal_": "FRYDENDAHL 54A & 54 REM EAST END QTR", "Name": "MARGARITAVILLE VACATION CLUB BY WYNDHAM,INC.", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 121300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.30627857499999, "SHAPE_Area": 1376.2944922199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365526.901100002229214, 257437.30519999936223 ], [ 365501.912699997425079, 257436.256299998611212 ], [ 365430.955399997532368, 257435.886599998921156 ], [ 365503.280699998140335, 257464.976199999451637 ], [ 365523.643500000238419, 257441.078200001269579 ], [ 365526.901100002229214, 257437.30519999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90286365, "LATITUDE": 18.34566713, "OBJECTID_1": 19800, "PARCEL_NO_": "105502011500", "Tax_Legal_": "222 EST. WINBERG GT. NORTHSIDE", "Name": "TOMEAU, JOHN & PAULETTE", "Address": "3160 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113600, "Improved_V": 411400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.18234568700001, "SHAPE_Area": 5094.5624751699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361760.354099996387959, 257342.516399998217821 ], [ 361741.70830000191927, 257354.184999998658895 ], [ 361717.076499998569489, 257405.912500001490116 ], [ 361771.668399997055531, 257434.223600000143051 ], [ 361803.72240000218153, 257363.136300001293421 ], [ 361798.123199999332428, 257357.813200000673532 ], [ 361785.482900001108646, 257327.101199999451637 ], [ 361760.354099996387959, 257342.516399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601053500", "MAP": "D9-1786-T81", "PARCEL_NAM": "215-301", "ACRE": "0.14", "LONGITUDE": -64.89304041, "LATITUDE": 18.34599563, "OBJECTID_1": 20780, "PARCEL_NO_": "105601053500", "Tax_Legal_": "215-301 ANNAS RETREAT NEW QTR.", "Name": "TRUST AGREEMENT OF BEATRICE & EMELEO JEPPESEN", "Address": "PO Box 11238", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 103300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.056228189300001, "SHAPE_Area": 571.89606527499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362818.348300002515316, 257432.657699998468161 ], [ 362799.194600000977516, 257409.280699998140335 ], [ 362785.368600003421307, 257423.099700000137091 ], [ 362783.725400000810623, 257426.674800001084805 ], [ 362799.754600003361702, 257438.205099999904633 ], [ 362806.167300000786781, 257442.690499998629093 ], [ 362818.348300002515316, 257432.657699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602037700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88702322, "LATITUDE": 18.34599691, "OBJECTID_1": 21171, "PARCEL_NO_": "105602037700", "Tax_Legal_": "394-231 ANNAS RETREAT NEW QTR", "Name": "HYACINTH HODGE FAMILY TRUST", "Address": "7820 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.66039428099999, "SHAPE_Area": 797.76149824300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363457.862000003457069, 257425.226199999451637 ], [ 363415.165200002491474, 257420.443799998611212 ], [ 363413.433899998664856, 257434.361800000071526 ], [ 363453.636200003325939, 257447.989700000733137 ], [ 363456.128899998962879, 257439.35530000180006 ], [ 363457.862000003457069, 257425.226199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90871795, "LATITUDE": 18.34587261, "OBJECTID_1": 19684, "PARCEL_NO_": "105501013100", "Tax_Legal_": "WINTBERG ESTATE 1C No.3 GREAT NORTHSIDE QTR.", "Name": "LABEDA, SLAWOMIR&MARTHA", "Address": "C/O TAVERN ON THE WATERFRONT 30 DRONINGENS GADE", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31300, "Improved_V": 363600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.47852359699999, "SHAPE_Area": 798.78209839 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361145.170800000429153, 257428.2516999989748 ], [ 361157.731200002133846, 257373.681200001388788 ], [ 361145.649099998176098, 257372.104699999094009 ], [ 361144.007700003683567, 257375.468800000846386 ], [ 361136.580099999904633, 257395.461899999529123 ], [ 361130.763300001621246, 257415.679200001060963 ], [ 361131.535400003194809, 257419.696299999952316 ], [ 361145.170800000429153, 257428.2516999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601083900", "MAP": "D9-2753-T84", "PARCEL_NAM": "215-43", "ACRE": "0.17", "LONGITUDE": -64.89149727, "LATITUDE": 18.34601605, "OBJECTID_1": 20914, "PARCEL_NO_": "105601083900", "Tax_Legal_": "215-43&POR.404 ANNA'S RETREAT NEW QTR.", "Name": "DIAZ, PAULINE", "Address": "PO Box 8865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 186700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.743376068, "SHAPE_Area": 780.74148620300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362967.683399997651577, 257414.248199999332428 ], [ 362943.404100000858307, 257424.604200001806021 ], [ 362943.378899998962879, 257427.559300001710653 ], [ 362948.134099997580051, 257437.308499999344349 ], [ 362951.335900001227856, 257440.078999999910593 ], [ 362954.550399996340275, 257441.371800001710653 ], [ 362970.669399999082088, 257442.348099999129772 ], [ 362988.433499999344349, 257439.538199998438358 ], [ 362967.683399997651577, 257414.248199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602033400", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-361", "ACRE": ".125", "LONGITUDE": -64.88779599, "LATITUDE": 18.34598515, "OBJECTID_1": 21132, "PARCEL_NO_": "105602033400", "Tax_Legal_": "394-361 ANNAS RETREAT NEW QTR", "Name": "MORRIS, WETT A. & GLORIA V", "Address": "PO Box 6392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16400, "Improved_V": 99900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.93584597900001, "SHAPE_Area": 493.599308855 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363370.785599999129772, 257423.880300000309944 ], [ 363332.912299998104572, 257420.826099999248981 ], [ 363332.888999998569489, 257423.570099998265505 ], [ 363363.343599997460842, 257445.561999998986721 ], [ 363366.603000000119209, 257441.577899999916553 ], [ 363367.436300002038479, 257438.418299999088049 ], [ 363369.066899999976158, 257436.320700000971556 ], [ 363370.785599999129772, 257423.880300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89449514, "LATITUDE": 18.34596889, "OBJECTID_1": 20561, "PARCEL_NO_": "105601022800", "Tax_Legal_": "ANNAS RETREAT 199 NEW QTR", "Name": "KEAN, NATHALIE A. & PLUNKETT, A. L", "Address": "PO Box 9562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26200, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.313680676, "SHAPE_Area": 682.27788079300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362663.665799997746944, 257416.192999999970198 ], [ 362635.516800001263618, 257407.518800001591444 ], [ 362631.382700003683567, 257419.517299998551607 ], [ 362629.696400001645088, 257428.158399999141693 ], [ 362660.253499999642372, 257438.11879999935627 ], [ 362662.776799999177456, 257425.896000001579523 ], [ 362663.665799997746944, 257416.192999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88505621, "LATITUDE": 18.34593257, "OBJECTID_1": 20973, "PARCEL_NO_": "105602015800", "Tax_Legal_": "394-219 ANNAS RETREAT NEW QTR", "Name": "SIMMONDS, SIMEON & REID, RHEA MAE", "Address": "36939 Harper Ave", "City": "Clinton Township", "State": "Michigan", "Zip": 48035, "Country": "United States", "Land_Value": 28200, "Improved_V": 125500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.999173195, "SHAPE_Area": 770.357168022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363657.965899996459484, 257410.6097999997437 ], [ 363656.382100000977516, 257407.219300001859665 ], [ 363623.123700000345707, 257430.378499999642372 ], [ 363634.278999999165535, 257446.090700000524521 ], [ 363665.906800001859665, 257425.029100000858307 ], [ 363657.965899996459484, 257410.6097999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701016100", "MAP": "C9-260-T80", "PARCEL_NAM": "7-12", "ACRE": ".53", "LONGITUDE": -64.88031404, "LATITUDE": 18.34586975, "OBJECTID_1": 21890, "PARCEL_NO_": "105701016100", "Tax_Legal_": "TABOR & HARMONY 7-12 EAST END QTR.", "Name": "BRUNN, TERRENCE A., JR. & ITALIA E. (TRUSTEES)", "Address": "PO Box 11262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.091462818, "SHAPE_Area": 2186.0586043600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364177.270700000226498, 257410.215999998152256 ], [ 364133.825199998915195, 257398.672400001436472 ], [ 364115.042599998414516, 257426.383099999278784 ], [ 364110.123800002038479, 257435.842000000178814 ], [ 364161.609099999070168, 257450.195599999278784 ], [ 364178.827600002288818, 257416.772599998861551 ], [ 364177.240199998021126, 257413.804299999028444 ], [ 364177.270700000226498, 257410.215999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601022600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-119", "ACRE": ".125", "LONGITUDE": -64.89532758, "LATITUDE": 18.3459606, "OBJECTID_1": 20559, "PARCEL_NO_": "105601022600", "Tax_Legal_": "ANNAS RETREAT 146-119 1 NEW QTR", "Name": "CECIL FORBES SR LYNNETTE PENN FORBES JOINT LIV TRU", "Address": "PO Box 303682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 93900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.158577691800005, "SHAPE_Area": 521.51526680200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362560.285199999809265, 257435.611800000071526 ], [ 362571.67059999704361, 257424.306000001728535 ], [ 362575.77589999884367, 257415.68470000103116 ], [ 362554.079199999570847, 257406.852299999445677 ], [ 362543.437100000679493, 257425.552499998360872 ], [ 362560.285199999809265, 257435.611800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601052400", "MAP": "D9-1899-T81", "PARCEL_NAM": "404-117", "ACRE": "0.17", "LONGITUDE": -64.89344943, "LATITUDE": 18.34595805, "OBJECTID_1": 20769, "PARCEL_NO_": "105601052400", "Tax_Legal_": "404-117 ANNAS RETREAT NEW QTR.", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.21635281, "SHAPE_Area": 659.12901200700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362763.670100003480911, 257414.478300001472235 ], [ 362745.988799996674061, 257407.578600000590086 ], [ 362741.062799997627735, 257417.881900001317263 ], [ 362737.772799998521805, 257425.454300001263618 ], [ 362749.831500001251698, 257429.774900000542402 ], [ 362769.929999999701977, 257436.905499998480082 ], [ 362774.861400000751019, 257425.969000000506639 ], [ 362778.943300001323223, 257420.09180000051856 ], [ 362763.670100003480911, 257414.478300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601054400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89208418, "LATITUDE": 18.34592942, "OBJECTID_1": 20789, "PARCEL_NO_": "105601054400", "Tax_Legal_": "215-309 ANNAS RETREAT NEW QTR.", "Name": "HODGE, BRIAN O. & RENA C.", "Address": "4215 Annas Retreat 309", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 202800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.95680495000001, "SHAPE_Area": 687.29818461499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362902.165200002491474, 257437.987799998372793 ], [ 362915.969700001180172, 257426.701699998229742 ], [ 362917.763899996876717, 257405.395899999886751 ], [ 362899.98369999974966, 257410.105599999427795 ], [ 362883.011600002646446, 257414.610700000077486 ], [ 362879.770099997520447, 257416.484000001102686 ], [ 362902.165200002491474, 257437.987799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601055900", "MAP": "G9-3035-T80", "PARCEL_NAM": "404-110", "ACRE": "0.14", "LONGITUDE": -64.89377707, "LATITUDE": 18.34595667, "OBJECTID_1": 20804, "PARCEL_NO_": "105601055900", "Tax_Legal_": "ANNAS RETREAT 404-110 NEW QTR.", "Name": "BENJAMIN, EVELYN R", "Address": "PO Box 503233", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 92600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.530699113799997, "SHAPE_Area": 601.34158691699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362741.062799997627735, 257417.881900001317263 ], [ 362711.317299999296665, 257407.294900000095367 ], [ 362706.358999997377396, 257421.39750000089407 ], [ 362723.167499996721745, 257436.100600000470877 ], [ 362732.854000002145767, 257434.91330000013113 ], [ 362737.772799998521805, 257425.454300001263618 ], [ 362741.062799997627735, 257417.881900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601012800", "MAP": "D9-627-T67", "PARCEL_NAM": "169", "ACRE": "0.15", "LONGITUDE": -64.89848612, "LATITUDE": 18.345922, "OBJECTID_1": 20465, "PARCEL_NO_": "105601012800", "Tax_Legal_": "169 ANNAS RETREAT NEW QTR", "Name": "THOMPSON, DESTIN L", "Address": "4500 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 160600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.89982069, "SHAPE_Area": 676.57261630799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362234.829800002276897, 257398.32880000025034 ], [ 362221.106299996376038, 257400.116300001740456 ], [ 362208.97749999910593, 257404.027800001204014 ], [ 362220.037500001490116, 257430.927200000733137 ], [ 362239.430299997329712, 257426.230799999088049 ], [ 362234.829800002276897, 257398.32880000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602016500", "MAP": "A9-167G-T71", "PARCEL_NAM": "394-227", "ACRE": "0.19", "LONGITUDE": -64.88564805, "LATITUDE": 18.34586158, "OBJECTID_1": 20980, "PARCEL_NO_": "105602016500", "Tax_Legal_": "ANNAS RETREAT 394-227 NEW QTR", "Name": "CLARKE, ROBERT & DORCAS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 137500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.62638520599999, "SHAPE_Area": 854.463109046 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363603.360799998044968, 257417.416499998420477 ], [ 363593.522100001573563, 257402.905099999159575 ], [ 363591.104900002479553, 257402.674300000071526 ], [ 363587.892300002276897, 257401.170299999415874 ], [ 363585.496699996292591, 257398.406500000506639 ], [ 363563.000699996948242, 257420.245700001716614 ], [ 363563.530299998819828, 257421.23589999973774 ], [ 363565.915100000798702, 257425.266199998557568 ], [ 363573.720299996435642, 257440.24439999833703 ], [ 363603.360799998044968, 257417.416499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602083100", "MAP": "C9-272-T81", "PARCEL_NAM": "215-235", "ACRE": ".138", "LONGITUDE": -64.88844318, "LATITUDE": 18.34593778, "OBJECTID_1": 21400, "PARCEL_NO_": "105602083100", "Tax_Legal_": "215-235 ANNAS RETREAT NEW QTR.", "Name": "CHRISTIAN, MARSHA", "Address": "PO Box 303810", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.134463960299996, "SHAPE_Area": 485.17469089000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363298.921300001442432, 257435.324400000274181 ], [ 363293.491099998354912, 257410.159800000488758 ], [ 363275.723499998450279, 257413.3918999992311 ], [ 363279.539300002157688, 257438.754399999976158 ], [ 363284.384300000965595, 257437.949599999934435 ], [ 363298.921300001442432, 257435.324400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602087900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89077191, "LATITUDE": 18.34592007, "OBJECTID_1": 21446, "PARCEL_NO_": "105602087900", "Tax_Legal_": "215-133 ANNAS RETREAT NEW QTR.", "Name": "PATRICIA CID HOWARD HODGE FAMILY TRUST", "Address": "PO BOX 10706-3706", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.853860939100002, "SHAPE_Area": 540.750605694 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363058.670800000429153, 257429.769499998539686 ], [ 363039.542300000786781, 257403.437300000339746 ], [ 363034.668399997055531, 257407.619300000369549 ], [ 363022.483800001442432, 257418.074299998581409 ], [ 363046.522200003266335, 257436.002900000661612 ], [ 363053.012199997901917, 257431.411899998784065 ], [ 363058.670800000429153, 257429.769499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601053600", "MAP": "D9-1786-T81", "PARCEL_NAM": "215-302", "ACRE": "0.14", "LONGITUDE": -64.89287796000001, "LATITUDE": 18.34588242, "OBJECTID_1": 20781, "PARCEL_NO_": "105601053600", "Tax_Legal_": "215-302 ANNAS RETREAT NEW QTR.", "Name": "REED, IRIS & DIENA D", "Address": "PO Box 11634", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014634, "Country": "United States", "Land_Value": 19200, "Improved_V": 105400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.898452513, "SHAPE_Area": 660.31922133099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362827.280699998140335, 257425.342500001192093 ], [ 362835.395999997854233, 257419.287200000137091 ], [ 362835.417499996721745, 257416.754299998283386 ], [ 362820.259400002658367, 257397.631799999624491 ], [ 362799.194600000977516, 257409.280699998140335 ], [ 362818.348300002515316, 257432.657699998468161 ], [ 362827.280699998140335, 257425.342500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701031200", "MAP": "F9-333-T58", "PARCEL_NAM": "31", "ACRE": ".50", "LONGITUDE": -64.87508223, "LATITUDE": 18.34579258, "OBJECTID_1": 21959, "PARCEL_NO_": "105701031200", "Tax_Legal_": "31 ESTATE FRYDENDAHL EAST END QTR", "Name": "FRETT, INA", "Address": "4461 NW 201 Ter", "City": "MIAMI GARDEN", "State": "Florida", "Zip": 33055, "Country": "United States", "Land_Value": 70400, "Improved_V": 136900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.856866096, "SHAPE_Area": 2553.0990716000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364715.728100001811981, 257398.378499999642372 ], [ 364671.418300002813339, 257385.902199998497963 ], [ 364674.125399999320507, 257403.152499999850988 ], [ 364680.966600000858307, 257446.744800001382828 ], [ 364686.577899999916553, 257447.526099998503923 ], [ 364701.087899997830391, 257448.06700000166893 ], [ 364713.996100001037121, 257447.328299999237061 ], [ 364731.891500003635883, 257444.667500000447035 ], [ 364715.728100001811981, 257398.378499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89491533, "LATITUDE": 18.3458984, "OBJECTID_1": 20560, "PARCEL_NO_": "105601022700", "Tax_Legal_": "ANNAS RETREAT 190 NEW QTR", "Name": "CLENDINEN, VINCEN & CELIA", "Address": "PO Box 8611", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30800, "Improved_V": 11900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.961135442, "SHAPE_Area": 1066.1812238099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362625.846400000154972, 257406.806400001049042 ], [ 362587.236900001764297, 257395.5135000012815 ], [ 362585.483999997377396, 257411.964499998837709 ], [ 362580.527500003576279, 257425.856100000441074 ], [ 362619.194499999284744, 257430.394499998539686 ], [ 362625.846400000154972, 257406.806400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602085600", "MAP": "D9-2753-T84", "PARCEL_NAM": "215-42", "ACRE": ".158", "LONGITUDE": -64.89113102, "LATITUDE": 18.34587488, "OBJECTID_1": 21423, "PARCEL_NO_": "105602085600", "Tax_Legal_": "ANNAS RET 215-41 & POR. 404 NEW QTR.", "Name": "BENJAMIN, CALVIN & CAROL", "Address": "PO Box 8641", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 87600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.028504171099996, "SHAPE_Area": 537.17462756099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363019.235200002789497, 257420.791900001466274 ], [ 363000.076099999248981, 257398.048099998384714 ], [ 362991.958999998867512, 257404.314399998635054 ], [ 362986.287900000810623, 257407.434399999678135 ], [ 363005.421800002455711, 257433.133400000631809 ], [ 363019.235200002789497, 257420.791900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602083200", "MAP": "C9-272-T81", "PARCEL_NAM": "215-236", "ACRE": ".138", "LONGITUDE": -64.88828463, "LATITUDE": 18.34590023, "OBJECTID_1": 21401, "PARCEL_NO_": "105602083200", "Tax_Legal_": "215-236 ANNAS RETREAT NEW QUARTER", "Name": "PINNEY, EARL & GLORIA", "Address": "PO Box 6523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15900, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.010791424000004, "SHAPE_Area": 405.09454710699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363309.401600003242493, 257435.621300000697374 ], [ 363312.873199999332428, 257406.729899998754263 ], [ 363293.491099998354912, 257410.159800000488758 ], [ 363298.921300001442432, 257435.324400000274181 ], [ 363309.401600003242493, 257435.621300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602083300", "MAP": "C9-272-T81", "PARCEL_NAM": "215-237", "ACRE": ".145", "LONGITUDE": -64.88810835, "LATITUDE": 18.34588208, "OBJECTID_1": 21402, "PARCEL_NO_": "105602083300", "Tax_Legal_": "215-237 ANNAS RETREAT NEW QTR.", "Name": "HENNEMAN, AUDIE and ADELIA", "Address": "215-237 Annas Retreat", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 174200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.650377535, "SHAPE_Area": 698.02007644800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363318.5658999979496, 257401.076900001615286 ], [ 363319.336300000548363, 257405.305100001394749 ], [ 363312.873199999332428, 257406.729899998754263 ], [ 363309.401600003242493, 257435.621300000697374 ], [ 363327.961199998855591, 257434.084399998188019 ], [ 363332.804399996995926, 257433.490800000727177 ], [ 363332.888999998569489, 257423.570099998265505 ], [ 363332.912299998104572, 257420.826099999248981 ], [ 363333.03999999910593, 257405.839499998837709 ], [ 363333.090400002896786, 257399.929299999028444 ], [ 363318.5658999979496, 257401.076900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601058100", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-101", "ACRE": ".14", "LONGITUDE": -64.89419535, "LATITUDE": 18.3459562, "OBJECTID_1": 20824, "PARCEL_NO_": "105601058100", "Tax_Legal_": "404-101 ANNAS RETREAT NEW QTR", "Name": "FULLER, MORTELL & GLENDOUR", "Address": "P.O. BOX 5007", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18600, "Improved_V": 113000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.546334268300001, "SHAPE_Area": 433.94397162299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362698.301299996674061, 257420.698300000280142 ], [ 362664.520700000226498, 257410.500399999320507 ], [ 362663.665799997746944, 257416.192999999970198 ], [ 362662.776799999177456, 257425.896000001579523 ], [ 362694.993299998342991, 257430.381499998271465 ], [ 362698.301299996674061, 257420.698300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601021400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-103", "ACRE": ".130", "LONGITUDE": -64.89647387, "LATITUDE": 18.34592493, "OBJECTID_1": 20548, "PARCEL_NO_": "105601021400", "Tax_Legal_": "ANNAS RETREAT 146-103 1 NEW QTR", "Name": "BENJAMIN, ROCHELLE D", "Address": "PO Box 304372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16300, "Improved_V": 90700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.927180739799994, "SHAPE_Area": 541.00610071200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362445.262999996542931, 257401.739799998700619 ], [ 362435.590800002217293, 257401.238499999046326 ], [ 362421.6875, 257424.133900001645088 ], [ 362432.943499997258186, 257428.025699999183416 ], [ 362449.069799996912479, 257428.157699998468161 ], [ 362448.48650000244379, 257401.977299999445677 ], [ 362445.262999996542931, 257401.739799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601021300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-102", "ACRE": ".118", "LONGITUDE": -64.89628841, "LATITUDE": 18.34591545, "OBJECTID_1": 20547, "PARCEL_NO_": "105601021300", "Tax_Legal_": "146-102 ANNAS RETREAT 1 NEW QTR", "Name": "GILPIN, JUNE", "Address": "146-102 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 95600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.814449592499997, "SHAPE_Area": 467.13385870600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362467.026199996471405, 257402.762299999594688 ], [ 362448.48650000244379, 257401.977299999445677 ], [ 362449.069799996912479, 257428.157699998468161 ], [ 362466.810500003397465, 257428.09180000051856 ], [ 362467.026199996471405, 257402.762299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602086900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88916064, "LATITUDE": 18.34588115, "OBJECTID_1": 21436, "PARCEL_NO_": "105602086900", "Tax_Legal_": "215-266 ANNAS RETREAT NO.1 NEW QTR.", "Name": "ORINE CHRISTOPHER and ORISA SERAPHIN", "Address": "PO Box 9708", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 138300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.50708081499999, "SHAPE_Area": 539.30335220799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363227.411300003528595, 257405.186000000685453 ], [ 363203.171499997377396, 257410.898299999535084 ], [ 363191.816600002348423, 257418.615800000727177 ], [ 363207.003499999642372, 257434.361000001430511 ], [ 363215.151199996471405, 257424.506299998611212 ], [ 363230.580799996852875, 257411.755899999290705 ], [ 363230.616700001060963, 257407.534299999475479 ], [ 363227.411300003528595, 257405.186000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602016700", "MAP": "A9-167G-T71", "PARCEL_NAM": "394-228", "ACRE": "0.14", "LONGITUDE": -64.88597208, "LATITUDE": 18.34588067, "OBJECTID_1": 20982, "PARCEL_NO_": "105602016700", "Tax_Legal_": "394-228 ANNAS RETREAT NEW QUARTER", "Name": "BRADY, VALENCIA", "Address": "PO Box 502974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 113100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.918943525800003, "SHAPE_Area": 579.25578478099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363564.82490000128746, 257423.423799999058247 ], [ 363563.530299998819828, 257421.23589999973774 ], [ 363557.974200002849102, 257410.846799999475479 ], [ 363554.80290000140667, 257404.488099999725819 ], [ 363536.575300000607967, 257413.893100000917912 ], [ 363532.057700000703335, 257416.22410000115633 ], [ 363541.623199999332428, 257437.099700000137091 ], [ 363564.82490000128746, 257423.423799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601012700", "MAP": "D9-627-T67", "PARCEL_NAM": "170", "ACRE": "0.14", "LONGITUDE": -64.8982749, "LATITUDE": 18.34589429, "OBJECTID_1": 20464, "PARCEL_NO_": "105601012700", "Tax_Legal_": "170 ANNAS RETREAT NEW QTR", "Name": "HOLDER, VIOLET", "Address": "170 Estate Tutu", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 175200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.4104246343, "SHAPE_Area": 573.85469495899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362261.245700001716614, 257421.131999999284744 ], [ 362257.408399999141693, 257398.302499998360872 ], [ 362234.829800002276897, 257398.32880000025034 ], [ 362239.430299997329712, 257426.230799999088049 ], [ 362261.245700001716614, 257421.131999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601021200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-101", "ACRE": ".120", "LONGITUDE": -64.89608905, "LATITUDE": 18.34590414, "OBJECTID_1": 20546, "PARCEL_NO_": "105601021200", "Tax_Legal_": "ANNAS RETREAT 146-101 1 NEW QTR", "Name": "CLARKE, BARNETT H", "Address": "8500 Mjk Ter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 1300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.8577258065, "SHAPE_Area": 615.81001162999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362492.648400001227856, 257424.081399999558926 ], [ 362488.829000003635883, 257399.141100000590086 ], [ 362467.026199996471405, 257402.762299999594688 ], [ 362466.810500003397465, 257428.09180000051856 ], [ 362478.107799999415874, 257427.128800000995398 ], [ 362492.648400001227856, 257424.081399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601021000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-99", "ACRE": ".127", "LONGITUDE": -64.89565811, "LATITUDE": 18.34583245, "OBJECTID_1": 20544, "PARCEL_NO_": "105601021000", "Tax_Legal_": "146-99 ANNAS RETREAT 1 NEW QTR", "Name": "TAYLOR, GRACIELLA M. & ROBERT A. & REV DIEN ASHLEY", "Address": "114-70 224th St", "City": "Cambria Heights", "State": "New York", "Zip": 11411, "Country": "United States", "Land_Value": 16400, "Improved_V": 39300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.88867211900001, "SHAPE_Area": 551.13280724000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362532.43469999730587, 257391.898600000888109 ], [ 362513.862499997019768, 257394.912999998778105 ], [ 362509.825499996542931, 257395.513300001621246 ], [ 362517.703500002622604, 257417.32039999961853 ], [ 362520.133199997246265, 257416.073699999600649 ], [ 362525.730599999427795, 257421.607900001108646 ], [ 362522.464000001549721, 257426.4364 ], [ 362524.868600003421307, 257428.144799999892712 ], [ 362536.286399997770786, 257413.039500001817942 ], [ 362532.43469999730587, 257391.898600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701031100", "MAP": "F9-331-T58", "PARCEL_NAM": "32", "ACRE": ".97", "LONGITUDE": -64.87564282, "LATITUDE": 18.34567325, "OBJECTID_1": 21958, "PARCEL_NO_": "105701031100", "Tax_Legal_": "32A ESTATE FRYDENDAHL EAST END QTR.", "Name": "CROWN HOLDING LLC", "Address": "PO Box 502038", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 128100, "Improved_V": 162300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.817380512, "SHAPE_Area": 4438.8956017199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364623.5337999984622, 257370.172100000083447 ], [ 364608.781599998474121, 257365.662300001829863 ], [ 364598.891199998557568, 257423.165899999439716 ], [ 364659.204599998891354, 257442.446899998933077 ], [ 364673.691299997270107, 257445.731899999082088 ], [ 364680.966600000858307, 257446.744800001382828 ], [ 364674.125399999320507, 257403.152499999850988 ], [ 364670.9983000010252, 257383.226100001484156 ], [ 364668.327500000596046, 257382.491599999368191 ], [ 364623.5337999984622, 257370.172100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602087100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88950958, "LATITUDE": 18.3458633, "OBJECTID_1": 21438, "PARCEL_NO_": "105602087100", "Tax_Legal_": "215-268 ANNAS RETREAT NEW QTR.", "Name": "LEERDAM, RITA & JUDE, BERNARD", "Address": "GERS COMPLEX", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 95100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.885487954, "SHAPE_Area": 582.53430572499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363179.820900000631809, 257406.907499998807907 ], [ 363166.225000001490116, 257393.708399999886751 ], [ 363162.760600000619888, 257421.755499999970198 ], [ 363173.147399999201298, 257433.028400000184774 ], [ 363191.816600002348423, 257418.615800000727177 ], [ 363179.820900000631809, 257406.907499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105702014100", "MAP": "G9-2493-T75", "PARCEL_NAM": "60", "ACRE": null, "LONGITUDE": -64.8733376, "LATITUDE": 18.34595509, "OBJECTID_1": 22294, "PARCEL_NO_": "105702014100", "Tax_Legal_": "SMITH BAY 60 EAST END QTR", "Name": "MELFORD BROOKS EDUCATIONAL TRUST", "Address": "PO Box 10739", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32700, "Improved_V": 7300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.003908874800004, "SHAPE_Area": 310.543262879 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364868.829700000584126, 257446.062399998307228 ], [ 364884.959499999880791, 257445.772300001233816 ], [ 364887.378499999642372, 257445.792100001126528 ], [ 364896.465599998831749, 257445.741300001740456 ], [ 364896.455700002610683, 257445.728799998760223 ], [ 364895.634999997913837, 257432.264899998903275 ], [ 364886.676500000059605, 257433.542899999767542 ], [ 364874.567400000989437, 257435.132500000298023 ], [ 364871.32599999755621, 257437.005800001323223 ], [ 364868.878200002014637, 257440.363299999386072 ], [ 364868.829700000584126, 257446.062399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105702010900", "MAP": "G9-2493-T75", "PARCEL_NAM": "61", "ACRE": null, "LONGITUDE": -64.87311094, "LATITUDE": 18.34593433, "OBJECTID_1": 22263, "PARCEL_NO_": "105702010900", "Tax_Legal_": "SMITH BAY 61 EAST END QTR", "Name": "MELFORD BROOKS EDUCATIONAL TRUST", "Address": "PO Box 10739", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26100, "Improved_V": 239000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.523061632600005, "SHAPE_Area": 334.50975918300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364918.021899998188019, 257445.620700001716614 ], [ 364917.768299996852875, 257427.792300000786781 ], [ 364915.748700000345707, 257428.503499999642372 ], [ 364907.667599998414516, 257430.548300001770258 ], [ 364895.634999997913837, 257432.264899998903275 ], [ 364896.455700002610683, 257445.728799998760223 ], [ 364896.465599998831749, 257445.741300001740456 ], [ 364918.021899998188019, 257445.620700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701031300", "MAP": "F9-342-T58", "PARCEL_NAM": "29", "ACRE": null, "LONGITUDE": -64.87459085, "LATITUDE": 18.34581857, "OBJECTID_1": 21961, "PARCEL_NO_": "105701031300", "Tax_Legal_": "29 ESTATE FRYDENDAHL EAST END QTR", "Name": "PADILLA, EMILE V. & ALTAGRACIA", "Address": "PO Box 216", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58500, "Improved_V": 19200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.560715961, "SHAPE_Area": 2006.8180169 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364755.874099999666214, 257409.682399999350309 ], [ 364715.728100001811981, 257398.378499999642372 ], [ 364731.891500003635883, 257444.667500000447035 ], [ 364736.42790000140667, 257443.993000000715256 ], [ 364738.2179000005126, 257443.72690000012517 ], [ 364768.089199997484684, 257439.538400001823902 ], [ 364789.080300003290176, 257436.543800000101328 ], [ 364787.059900000691414, 257423.114999998360872 ], [ 364786.790799997746944, 257421.326299998909235 ], [ 364786.210500001907349, 257418.224199999123812 ], [ 364755.874099999666214, 257409.682399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602087800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89060914, "LATITUDE": 18.34583419, "OBJECTID_1": 21445, "PARCEL_NO_": "105602087800", "Tax_Legal_": "215-132 ANNA'S RETREAT NEW QTR.", "Name": "CLAXTON FONTENELLE FAMILY TRUST", "Address": "PO Box 321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 129100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.98817593299999, "SHAPE_Area": 720.14658751499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363076.461800001561642, 257423.793400000780821 ], [ 363058.198899999260902, 257390.502199999988079 ], [ 363047.653899997472763, 257397.804200001060963 ], [ 363039.542300000786781, 257403.437300000339746 ], [ 363058.670800000429153, 257429.769499998539686 ], [ 363076.461800001561642, 257423.793400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601021500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-104", "ACRE": ".122", "LONGITUDE": -64.89663912, "LATITUDE": 18.34584895, "OBJECTID_1": 20549, "PARCEL_NO_": "105601021500", "Tax_Legal_": "146-104 ANNAS RETREAT NEW QUARTER", "Name": "HARRIS, WINSTON & SHIRLEY", "Address": "PO BOX 10751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 72900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.960895070500001, "SHAPE_Area": 483.302496475 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362435.590800002217293, 257401.238499999046326 ], [ 362420.346400000154972, 257392.247800000011921 ], [ 362405.674599997699261, 257410.703899998217821 ], [ 362421.6875, 257424.133900001645088 ], [ 362435.590800002217293, 257401.238499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105702011000", "MAP": "D9-553-T66", "PARCEL_NAM": "102", "ACRE": ".308", "LONGITUDE": -64.87269321, "LATITUDE": 18.34589134, "OBJECTID_1": 22264, "PARCEL_NO_": "105702011000", "Tax_Legal_": "102 ESTATE SMITH BAY EAST END QTR", "Name": "ASFOUR FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81000, "Improved_V": 527800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.79943746699999, "SHAPE_Area": 1226.4686183399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364924.936999998986721, 257425.1114999987185 ], [ 364927.794399999082088, 257445.455899998545647 ], [ 364932.539200000464916, 257445.317299999296665 ], [ 364955.925800003111362, 257445.086500000208616 ], [ 364960.765500001609325, 257444.91499999910593 ], [ 364984.958499997854233, 257444.690900001674891 ], [ 364985.813299998641014, 257438.9983000010252 ], [ 364958.549800001084805, 257421.043299999088049 ], [ 364955.082000002264977, 257418.18019999936223 ], [ 364953.071099996566772, 257416.804400000721216 ], [ 364950.954499997198582, 257416.169399999082088 ], [ 364947.144500002264977, 257417.121899999678135 ], [ 364940.476899996399879, 257419.238600000739098 ], [ 364932.116099998354912, 257422.201900001615286 ], [ 364925.871899999678135, 257424.741900000721216 ], [ 364924.936999998986721, 257425.1114999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105702020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87207422, "LATITUDE": 18.34586963, "OBJECTID_1": 22326, "PARCEL_NO_": "105702020100", "Tax_Legal_": "SMITH BAY 97 EAST END QTR", "Name": "MERICA NATAL LLC", "Address": "6014 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 160900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.56635269, "SHAPE_Area": 687.805874281 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365036.589400000870228, 257441.947000000625849 ], [ 365018.310400001704693, 257410.555599998682737 ], [ 365004.455600000917912, 257427.751899998635054 ], [ 364997.933200001716614, 257436.142200000584126 ], [ 365010.760499998927116, 257444.901999998837709 ], [ 365036.589400000870228, 257441.947000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601012500", "MAP": "D9-627-T67", "PARCEL_NAM": "172", "ACRE": "0.15", "LONGITUDE": -64.89787608, "LATITUDE": 18.34589497, "OBJECTID_1": 20462, "PARCEL_NO_": "105601012500", "Tax_Legal_": "172 ANNAS RETREAT NEW QTR", "Name": "SAMUEL, H & I & FAHIE, K", "Address": "PO Box 8432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19900, "Improved_V": 191100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.838109117900004, "SHAPE_Area": 491.702167057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362281.585199996829033, 257399.978000000119209 ], [ 362278.49379999935627, 257399.763799998909235 ], [ 362278.488200001418591, 257421.634300000965595 ], [ 362281.399999998509884, 257421.719099998474121 ], [ 362301.584600001573563, 257422.450699999928474 ], [ 362302.19539999961853, 257402.461399998515844 ], [ 362281.585199996829033, 257399.978000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601021100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-100", "ACRE": ".112", "LONGITUDE": -64.89586756, "LATITUDE": 18.34586171, "OBJECTID_1": 20545, "PARCEL_NO_": "105601021100", "Tax_Legal_": "146-100 ANNAS RETREAT 1 NEW QTR", "Name": "SIMON, ELMORE & ENA", "Address": "146-100 ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13800, "Improved_V": 90600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.057429383599995, "SHAPE_Area": 577.76881774599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362509.825499996542931, 257395.513300001621246 ], [ 362492.05969999730587, 257398.534299999475479 ], [ 362488.829000003635883, 257399.141100000590086 ], [ 362492.648400001227856, 257424.081399999558926 ], [ 362503.965599998831749, 257420.796500001102686 ], [ 362510.41610000282526, 257420.849300000816584 ], [ 362517.703500002622604, 257417.32039999961853 ], [ 362509.825499996542931, 257395.513300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90905608, "LATITUDE": 18.34574979, "OBJECTID_1": 19687, "PARCEL_NO_": "105501013400", "Tax_Legal_": "1CD3 ESTATE WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "BOB ANTHONY BELLE REVOC LIV TR", "Address": "4505 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59900, "Improved_V": 507000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.706367099, "SHAPE_Area": 2211.50215351 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361085.143299996852875, 257375.409200001507998 ], [ 361062.372400000691414, 257398.020899999886751 ], [ 361122.727099999785423, 257412.447000000625849 ], [ 361131.038400001823902, 257383.384199999272823 ], [ 361132.668999999761581, 257381.28660000115633 ], [ 361133.51129999756813, 257377.071600001305342 ], [ 361137.623800002038479, 257367.605999998748302 ], [ 361139.252599999308586, 257365.719500001519918 ], [ 361145.814599998295307, 257352.685400001704693 ], [ 361147.472199998795986, 257347.421700000762939 ], [ 361145.056800000369549, 257346.979699999094009 ], [ 361130.4712999984622, 257355.304099999368191 ], [ 361117.483900003135204, 257365.330299999564886 ], [ 361111.785800002515316, 257371.616399999707937 ], [ 361104.489399999380112, 257376.200800001621246 ], [ 361095.607400000095367, 257377.605700001120567 ], [ 361093.192100003361702, 257377.163800001144409 ], [ 361089.165899999439716, 257376.497600000351667 ], [ 361085.143299996852875, 257375.409200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601012600", "MAP": "D9-627-T67", "PARCEL_NAM": "171", "ACRE": "0.14", "LONGITUDE": -64.89807668, "LATITUDE": 18.34588176, "OBJECTID_1": 20463, "PARCEL_NO_": "105601012600", "Tax_Legal_": "171 ANNA'S RETREAT No.1 NEW QTR.", "Name": "MICHAEL, WENFORD & MARILYN", "Address": "146-90 ESTATE ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 164200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.406042124300001, "SHAPE_Area": 426.43330099299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362278.49379999935627, 257399.763799998909235 ], [ 362257.408399999141693, 257398.302499998360872 ], [ 362261.245700001716614, 257421.131999999284744 ], [ 362278.488200001418591, 257421.634300000965595 ], [ 362278.49379999935627, 257399.763799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601053200", "MAP": "D9-1888-T81", "PARCEL_NAM": "215-312", "ACRE": "0.31", "LONGITUDE": -64.89252641, "LATITUDE": 18.3457844, "OBJECTID_1": 20777, "PARCEL_NO_": "105601053200", "Tax_Legal_": "215-312 ANNAS RETREAT NEW QTR.", "Name": "EVANGEL ENTP. INC.", "Address": "PO Box 11729", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67500, "Improved_V": 343600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.37312144000001, "SHAPE_Area": 1325.6591659000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362879.770099997520447, 257416.484000001102686 ], [ 362861.523400001227856, 257381.293200001120567 ], [ 362859.912600003182888, 257381.068900000303984 ], [ 362846.972000002861023, 257385.60700000077486 ], [ 362828.358499996364117, 257393.476199999451637 ], [ 362845.089699998497963, 257417.255699999630451 ], [ 362843.466300003230572, 257418.508900001645088 ], [ 362866.782799996435642, 257426.510200001299381 ], [ 362879.770099997520447, 257416.484000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602015900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88515788, "LATITUDE": 18.34577898, "OBJECTID_1": 20974, "PARCEL_NO_": "105602015900", "Tax_Legal_": "ANNAS RETREAT 394-220 NEW QTR", "Name": "BURNETT, JULIAN & MYRTLE", "Address": "394-220 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 145800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.19901484899999, "SHAPE_Area": 860.05990904400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363656.382100000977516, 257407.219300001859665 ], [ 363647.665500000119209, 257389.204999998211861 ], [ 363611.176399998366833, 257412.971000000834465 ], [ 363623.123700000345707, 257430.378499999642372 ], [ 363656.382100000977516, 257407.219300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105702020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87176868, "LATITUDE": 18.34544478, "OBJECTID_1": 22329, "PARCEL_NO_": "105702020400", "Tax_Legal_": "SMITH BAY 87 EAST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 367000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.12393941200003, "SHAPE_Area": 7588.0170468300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364994.462700001895428, 257370.252599999308586 ], [ 365018.310400001704693, 257410.555599998682737 ], [ 365036.589400000870228, 257441.947000000625849 ], [ 365048.696699999272823, 257440.568500000983477 ], [ 365085.034699998795986, 257434.533100001513958 ], [ 365090.822800002992153, 257417.692999999970198 ], [ 365087.94820000231266, 257376.50620000064373 ], [ 365070.689400002360344, 257320.002999998629093 ], [ 365049.637199997901917, 257330.174199998378754 ], [ 365029.375100001692772, 257342.251800000667572 ], [ 365012.336400002241135, 257354.566899999976158 ], [ 364994.462700001895428, 257370.252599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502020800", "MAP": "C9-43-T62", "PARCEL_NAM": "1-U-1", "ACRE": null, "LONGITUDE": -64.90399388, "LATITUDE": 18.34558807, "OBJECTID_1": 19855, "PARCEL_NO_": "105502020800", "Tax_Legal_": "WINTBERG ESTATE 1U-1 GR NORTHSIDE QTR", "Name": "MORGAN, TRUSTEES, VERNON & URSULA", "Address": "PO BOX 502362", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 98000, "Improved_V": 483200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.036269901, "SHAPE_Area": 3845.4944885599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361681.746200002729893, 257388.3136 ], [ 361680.151600003242493, 257386.189599998295307 ], [ 361675.461199998855591, 257368.841600000858307 ], [ 361674.805900000035763, 257351.104400001466274 ], [ 361677.314699999988079, 257340.570199999958277 ], [ 361611.163000002503395, 257344.039599999785423 ], [ 361609.462200000882149, 257354.369199998676777 ], [ 361610.103100001811981, 257373.795099999755621 ], [ 361616.418700002133846, 257389.678800001740456 ], [ 361628.311999998986721, 257413.418600000441074 ], [ 361681.746200002729893, 257388.3136 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8698365, "LATITUDE": 18.34557514, "OBJECTID_1": 22337, "PARCEL_NO_": "105702021100", "Tax_Legal_": "SMITH BAY 39 EAST END QTR", "Name": "MARGARITAVILLE VACATION CLUB BY WYNDHAM,INC.", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 1045000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 828.90217704999998, "SHAPE_Area": 12578.1461248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365184.480899997055531, 257403.68299999833107 ], [ 365183.652999997138977, 257406.209300000220537 ], [ 365178.708999998867512, 257418.623399998992682 ], [ 365091.494199998676777, 257433.530499998480082 ], [ 365085.034699998795986, 257434.533100001513958 ], [ 365048.696699999272823, 257440.568500000983477 ], [ 365084.210400000214577, 257436.637299999594688 ], [ 365150.347800001502037, 257434.856499999761581 ], [ 365392.250600002706051, 257435.780900001525879 ], [ 365404.345200002193451, 257435.879900000989437 ], [ 365373.915799997746944, 257410.932900000363588 ], [ 365365.888599999248981, 257406.645300000905991 ], [ 365298.215899996459484, 257399.336500000208616 ], [ 365289.3716000020504, 257396.308800000697374 ], [ 365282.951700001955032, 257392.667700000107288 ], [ 365274.150600001215935, 257384.574099998921156 ], [ 365269.372100003063679, 257377.568900000303984 ], [ 365268.592699997127056, 257374.396099999547005 ], [ 365266.998099997639656, 257372.272100001573563 ], [ 365264.796700000762939, 257346.711800001561642 ], [ 365263.255999997258186, 257338.255399998277426 ], [ 365256.103500001132488, 257325.953400000929832 ], [ 365212.461900003254414, 257337.417500000447035 ], [ 365184.480899997055531, 257403.68299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88065657, "LATITUDE": 18.3454027, "OBJECTID_1": 21863, "PARCEL_NO_": "105701013000", "Tax_Legal_": "ANNAS RETREAT ESTATE 3B REM. NEW QUARTER", "Name": "COTTON, RICALDO R. & SONIA M", "Address": "PO Box 9323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.37016952, "SHAPE_Area": 3455.5492700599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364134.404200002551079, 257330.704999998211861 ], [ 364079.425700001418591, 257347.775800000876188 ], [ 364089.576899997889996, 257386.700100000947714 ], [ 364101.268799997866154, 257434.080800000578165 ], [ 364107.834399998188019, 257420.624499998986721 ], [ 364112.728000000119209, 257414.120700001716614 ], [ 364113.555900000035763, 257411.594300001859665 ], [ 364115.179300002753735, 257410.341099999845028 ], [ 364118.456699997186661, 257404.246199999004602 ], [ 364120.080099999904633, 257402.992899999022484 ], [ 364122.538599997758865, 257398.368999999016523 ], [ 364124.160199999809265, 257397.326799999922514 ], [ 364129.068199999630451, 257389.134300000965595 ], [ 364135.585199996829033, 257381.377199999988079 ], [ 364137.638400003314018, 257329.675999999046326 ], [ 364134.404200002551079, 257330.704999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601058200", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-100", "ACRE": ".14", "LONGITUDE": -64.89414057, "LATITUDE": 18.34582269, "OBJECTID_1": 20825, "PARCEL_NO_": "105601058200", "Tax_Legal_": "404-100 ESTATE ANNAS RETREAT No.1 NEW QTR.", "Name": "HENRY, ALICIA M. & ANDRE J. & CHASTIE S. NATTA", "Address": "2054 Woodmarsh Cir", "City": "Auburn", "State": "Georgia", "Zip": 30011, "Country": "United States", "Land_Value": 15900, "Improved_V": 180300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.22546069000001, "SHAPE_Area": 656.23233714599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362704.891999997198582, 257404.287000000476837 ], [ 362673.548299998044968, 257391.998100001364946 ], [ 362664.520700000226498, 257410.500399999320507 ], [ 362698.301299996674061, 257420.698300000280142 ], [ 362704.891999997198582, 257404.287000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602087700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89047418, "LATITUDE": 18.34575975, "OBJECTID_1": 21444, "PARCEL_NO_": "105602087700", "Tax_Legal_": "ANNAS RETREAT 215-274 NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 19200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.921934335, "SHAPE_Area": 498.19799186900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363086.166299998760223, 257420.495299998670816 ], [ 363071.166500002145767, 257382.797899998724461 ], [ 363065.49889999628067, 257385.495700001716614 ], [ 363058.198899999260902, 257390.502199999988079 ], [ 363076.461800001561642, 257423.793400000780821 ], [ 363086.166299998760223, 257420.495299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602037800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88701726, "LATITUDE": 18.34580178, "OBJECTID_1": 21172, "PARCEL_NO_": "105602037800", "Tax_Legal_": "ANNAS RETREAT 394-232 NEW QTR", "Name": "FARRELL (LIFE ESTATE), OLIVINE", "Address": "394-232 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22600, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.51132378200001, "SHAPE_Area": 1006.5191760599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363457.862000003457069, 257425.226199999451637 ], [ 363456.499300003051758, 257395.873100001364946 ], [ 363414.517099998891354, 257401.862300001084805 ], [ 363416.000299997627735, 257417.073100000619888 ], [ 363415.165200002491474, 257420.443799998611212 ], [ 363457.862000003457069, 257425.226199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602033600", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-362", "ACRE": "0.16", "LONGITUDE": -64.88781441, "LATITUDE": 18.34582543, "OBJECTID_1": 21134, "PARCEL_NO_": "105602033600", "Tax_Legal_": "394-362 ANNAS RETREAT NEW QTR", "Name": "MERCER, MERL", "Address": "394-362 EST. TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24900, "Improved_V": 145700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.584995693, "SHAPE_Area": 733.33909033999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363370.785599999129772, 257423.880300000309944 ], [ 363371.750200003385544, 257405.311900001019239 ], [ 363370.983400002121925, 257400.66160000115633 ], [ 363333.03999999910593, 257405.839499998837709 ], [ 363332.912299998104572, 257420.826099999248981 ], [ 363370.785599999129772, 257423.880300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602085700", "MAP": "D9-2753-T84", "PARCEL_NAM": "215-41", "ACRE": ".138", "LONGITUDE": -64.89099648, "LATITUDE": 18.34576336, "OBJECTID_1": 21424, "PARCEL_NO_": "105602085700", "Tax_Legal_": "215-40 EST. ANNA'S RETREAT NEW QTR.", "Name": "MARSHAM, ZELDA", "Address": "7014 Saints Annes Ave", "City": "Lanham", "State": "Maryland", "Zip": 20706, "Country": "United States", "Land_Value": 19200, "Improved_V": 103800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.389713454599999, "SHAPE_Area": 592.74798900400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363034.668399997055531, 257407.619300000369549 ], [ 363014.699400000274181, 257385.291000001132488 ], [ 363000.076099999248981, 257398.048099998384714 ], [ 363019.235200002789497, 257420.791900001466274 ], [ 363022.483800001442432, 257418.074299998581409 ], [ 363034.668399997055531, 257407.619300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602087200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88969374, "LATITUDE": 18.34571781, "OBJECTID_1": 21439, "PARCEL_NO_": "105602087200", "Tax_Legal_": "215-269 ANNAS RETREAT NO. 1 NEW QTR.", "Name": "MOOVING (LIFE ESTATE), EVELYN", "Address": "4215 Anna S Retreat 269", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 114400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.42046595399999, "SHAPE_Area": 613.341688288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363155.823899999260902, 257384.124099999666214 ], [ 363144.619999997317791, 257374.111000001430511 ], [ 363147.510799996554852, 257413.397999998182058 ], [ 363152.336099997162819, 257414.915199998766184 ], [ 363158.757799997925758, 257418.345199998468161 ], [ 363162.760600000619888, 257421.755499999970198 ], [ 363166.225000001490116, 257393.708399999886751 ], [ 363155.823899999260902, 257384.124099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601055800", "MAP": "G9-3035-T80", "PARCEL_NAM": "404-111", "ACRE": "0.17", "LONGITUDE": -64.89371627, "LATITUDE": 18.34579835, "OBJECTID_1": 20803, "PARCEL_NO_": "105601055800", "Tax_Legal_": "ANNAS RETREAT 404-111 NEW QTR.", "Name": "CREQUE, IRENE", "Address": "6336 Rooks TassSE", "City": "Mableton", "State": "Georgia", "Zip": 30126, "Country": "United States", "Land_Value": 23300, "Improved_V": 102200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.9227609223, "SHAPE_Area": 560.91966337099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362748.45269999653101, 257402.32149999961257 ], [ 362718.7162000015378, 257390.679000001400709 ], [ 362711.317299999296665, 257407.294900000095367 ], [ 362741.062799997627735, 257417.881900001317263 ], [ 362745.988799996674061, 257407.578600000590086 ], [ 362748.45269999653101, 257402.32149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602087600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89034062, "LATITUDE": 18.34571613, "OBJECTID_1": 21443, "PARCEL_NO_": "105602087600", "Tax_Legal_": "ANNAS RETREAT 215-73 NEW QTR.", "Name": "AYMER, ISABELLA, JOHN & ALOMAR, M", "Address": "PO Box 8356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 88900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.161851015, "SHAPE_Area": 698.27570440399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363102.355499997735023, 257413.239500001072884 ], [ 363087.337700001895428, 257377.652899999171495 ], [ 363080.073700003325939, 257378.437800001353025 ], [ 363071.166500002145767, 257382.797899998724461 ], [ 363086.166299998760223, 257420.495299998670816 ], [ 363102.355499997735023, 257413.239500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105702020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87241245, "LATITUDE": 18.34568745, "OBJECTID_1": 22327, "PARCEL_NO_": "105702020200", "Tax_Legal_": "96 SMITH BAY EAST END QUARTER", "Name": "DE TOY, OLGA", "Address": "6625 Smith Bay--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.94702250399999, "SHAPE_Area": 1041.0726986699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364978.208700001239777, 257385.107200000435114 ], [ 364961.954800002276897, 257399.961800001561642 ], [ 364961.126900002360344, 257402.488200001418591 ], [ 364961.080200001597404, 257407.976199999451637 ], [ 364961.866700001060963, 257410.304699998348951 ], [ 364965.856899999082088, 257415.192499998956919 ], [ 364997.933200001716614, 257436.142200000584126 ], [ 365004.455600000917912, 257427.751899998635054 ], [ 364978.208700001239777, 257385.107200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601063500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89168798, "LATITUDE": 18.34573408, "OBJECTID_1": 20870, "PARCEL_NO_": "105601063500", "Tax_Legal_": "215-314 ANNAS RETREAT NEW QTR", "Name": "NORFORD, CECIL", "Address": "PO Box 7942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.000376445, "SHAPE_Area": 1276.5706665499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362975.829199999570847, 257404.604600001126528 ], [ 362969.777900002896786, 257389.934000000357628 ], [ 362953.20160000026226, 257395.656899999827147 ], [ 362945.42230000346899, 257398.342700000852346 ], [ 362945.652400001883507, 257380.798900000751019 ], [ 362945.394299998879433, 257380.290899999439716 ], [ 362945.662299998104572, 257380.041200000792742 ], [ 362945.746399998664856, 257373.629000000655651 ], [ 362942.219400003552437, 257374.354200001806021 ], [ 362927.680600002408028, 257377.190600000321865 ], [ 362926.701700001955032, 257397.447500001639128 ], [ 362924.11370000243187, 257417.269099999219179 ], [ 362926.518299996852875, 257418.977600000798702 ], [ 362940.234600000083447, 257418.034400001168251 ], [ 362965.320200003683567, 257407.684999998658895 ], [ 362975.829199999570847, 257404.604600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601023000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-118", "ACRE": ".115", "LONGITUDE": -64.89526208, "LATITUDE": 18.34576525, "OBJECTID_1": 20563, "PARCEL_NO_": "105601023000", "Tax_Legal_": "146-118 ANNAS RETREAT 1 NEW QTR", "Name": "PHILLIP, PEARLINE", "Address": "146-118 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 123500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.4884667882, "SHAPE_Area": 544.49208822799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362578.42679999768734, 257388.475400000810623 ], [ 362555.058200001716614, 257386.595300000160933 ], [ 362554.079199999570847, 257406.852299999445677 ], [ 362575.77589999884367, 257415.68470000103116 ], [ 362578.42679999768734, 257388.475400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601023700", "MAP": "B9-178-T67", "PARCEL_NAM": "198", "ACRE": "0.25", "LONGITUDE": -64.89442201, "LATITUDE": 18.34571702, "OBJECTID_1": 20570, "PARCEL_NO_": "105601023700", "Tax_Legal_": "ANNAS RETREAT 198 NEW QTR", "Name": "DUNCAN, LETICIA", "Address": "PO Box 8906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 137500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.81734759899999, "SHAPE_Area": 1051.87907866 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362673.548299998044968, 257391.998100001364946 ], [ 362676.015799999237061, 257386.318799998611212 ], [ 362647.918999999761581, 257371.523400001227856 ], [ 362635.516800001263618, 257407.518800001591444 ], [ 362663.665799997746944, 257416.192999999970198 ], [ 362664.520700000226498, 257410.500399999320507 ], [ 362673.548299998044968, 257391.998100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021400", "MAP": "A9-826-T016", "PARCEL_NAM": "REM 64 (incl. 24 THRU 30)", "ACRE": "8.23", "LONGITUDE": -64.86862705, "LATITUDE": 18.34489815, "OBJECTID_1": 22379, "PARCEL_NO_": "105702021400", "Tax_Legal_": "SMITH BAY 64 REM & 64-30 EAST END QUARTER", "Name": "WYNDHAM ST THOMAS DEVELOPMENT COMPANY LLC", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 2429629, "Improved_V": 6483060, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 931.93469714599996, "SHAPE_Area": 41971.222296100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365385.981499999761581, 257205.403900001198053 ], [ 365351.003899998962879, 257226.840399999171495 ], [ 365324.95830000191927, 257191.228000000119209 ], [ 365274.660599999129772, 257230.057799998670816 ], [ 365240.590400002896786, 257253.843600001186132 ], [ 365238.142700001597404, 257257.2010000012815 ], [ 365238.891500003635883, 257263.962200000882149 ], [ 365273.0253000035882, 257327.358500000089407 ], [ 365274.524599999189377, 257340.669700000435114 ], [ 365273.630199998617172, 257351.005899999290705 ], [ 365275.116899996995926, 257365.794599998742342 ], [ 365278.264899998903275, 257374.897399999201298 ], [ 365284.650600001215935, 257382.549100000411272 ], [ 365292.668799996376038, 257387.892000000923872 ], [ 365300.710400000214577, 257390.49100000038743 ], [ 365364.35869999974966, 257396.922499999403954 ], [ 365369.1858000010252, 257398.22859999909997 ], [ 365377.216499999165535, 257402.094000000506639 ], [ 365410.855099998414516, 257428.967099998146296 ], [ 365404.345200002193451, 257435.879900000989437 ], [ 365430.955399997532368, 257435.886599998921156 ], [ 365501.912699997425079, 257436.256299998611212 ], [ 365526.901100002229214, 257437.30519999936223 ], [ 365535.766999997198582, 257437.799899999052286 ], [ 365563.174400001764297, 257438.868599999696016 ], [ 365556.793999999761581, 257430.583700001239777 ], [ 365542.438699997961521, 257411.890000000596046 ], [ 365516.922600001096725, 257378.117300000041723 ], [ 365504.9628000035882, 257362.187399998307228 ], [ 365479.444899998605251, 257328.625799998641014 ], [ 365454.729699999094009, 257295.492899999022484 ], [ 365448.347499996423721, 257287.419100001454353 ], [ 365446.574199996888638, 257285.110500000417233 ], [ 365404.489500001072884, 257229.642700001597404 ], [ 365385.981499999761581, 257205.403900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601053100", "MAP": "D9-1888-T81", "PARCEL_NAM": "215-310", "ACRE": "0.15", "LONGITUDE": -64.89228276, "LATITUDE": 18.34574455, "OBJECTID_1": 20776, "PARCEL_NO_": "105601053100", "Tax_Legal_": "215-310 ANNAS RETREAT NEW QUARTER", "Name": "HENLEY (LIFE ESTATE), LIONEL & MARGUERITA", "Address": "PO Box 725", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 20500, "Improved_V": 128100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.964791189, "SHAPE_Area": 598.70551093300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362887.258900001645088, 257389.314300000667572 ], [ 362884.831000000238419, 257390.349800001829863 ], [ 362861.523400001227856, 257381.293200001120567 ], [ 362879.770099997520447, 257416.484000001102686 ], [ 362883.011600002646446, 257414.610700000077486 ], [ 362899.98369999974966, 257410.105599999427795 ], [ 362887.258900001645088, 257389.314300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90666227, "LATITUDE": 18.34549704, "OBJECTID_1": 19859, "PARCEL_NO_": "105502021200", "Tax_Legal_": "WINTBERG ESTATE 1-H-1&1-H-2 GREAT NORTHSIDE QTR", "Name": "COMMISSIONG, SIDNEY & THELMA", "Address": "PO Box 306813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 241200, "Improved_V": 168600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 487.65185436600001, "SHAPE_Area": 12278.079117 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361349.402699999511242, 257307.699999999254942 ], [ 361346.175700001418591, 257307.884700000286102 ], [ 361255.095399998128414, 257397.909499999135733 ], [ 361274.450499996542931, 257397.645700000226498 ], [ 361293.830799996852875, 257394.42680000141263 ], [ 361295.367899999022484, 257403.305399999022484 ], [ 361310.687899999320507, 257403.430700000375509 ], [ 361366.325199998915195, 257403.675000000745058 ], [ 361415.510300002992153, 257404.077599998563528 ], [ 361426.825599998235703, 257401.003800000995398 ], [ 361425.260799996554852, 257300.721500001847744 ], [ 361349.402699999511242, 257307.699999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602086800", "MAP": "C9-272-T81", "PARCEL_NAM": "215-265", "ACRE": ".137", "LONGITUDE": -64.88925772, "LATITUDE": 18.34573709, "OBJECTID_1": 21435, "PARCEL_NO_": "105602086800", "Tax_Legal_": "215-265 ANNA'S RETREAT NEW QTR.", "Name": "KUNTZ, GERMAINE & KELVIN", "Address": "215-265 ANNA RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 239900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.202877839, "SHAPE_Area": 783.97463521300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363227.411300003528595, 257405.186000000685453 ], [ 363200.185500003397465, 257382.79839999973774 ], [ 363179.820900000631809, 257406.907499998807907 ], [ 363191.816600002348423, 257418.615800000727177 ], [ 363203.171499997377396, 257410.898299999535084 ], [ 363227.411300003528595, 257405.186000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602016800", "MAP": "A9-167G-T71", "PARCEL_NAM": "394-226", "ACRE": "0.14", "LONGITUDE": -64.88579213, "LATITUDE": 18.34570255, "OBJECTID_1": 20983, "PARCEL_NO_": "105602016800", "Tax_Legal_": "394-226 ANNAS RETREAT NEW QTR", "Name": "HENLEY, ALICE & OTHERS", "Address": "PO Box 502355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17600, "Improved_V": 218200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.83228612400001, "SHAPE_Area": 622.71829272299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363585.496699996292591, 257398.406500000506639 ], [ 363584.740800000727177, 257392.489700000733137 ], [ 363553.334100000560284, 257387.588599998503923 ], [ 363554.80290000140667, 257404.488099999725819 ], [ 363557.974200002849102, 257410.846799999475479 ], [ 363563.000699996948242, 257420.245700001716614 ], [ 363585.496699996292591, 257398.406500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011600", "MAP": "D9-8064-T007", "PARCEL_NAM": "221-1", "ACRE": ".339", "LONGITUDE": -64.90332725, "LATITUDE": 18.34565562, "OBJECTID_1": 19801, "PARCEL_NO_": "105502011600", "Tax_Legal_": "221-1,221-2& 221 REM WINTBERG GT. NORTHSIDE QTR.", "Name": "PINNEY, LYNDON S.", "Address": "3843 Pierce Ave", "City": "Auburn Hills", "State": "Michigan", "Zip": 48326, "Country": "United States", "Land_Value": 125200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.36493355499999, "SHAPE_Area": 1236.8963370399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361741.70830000191927, 257354.184999998658895 ], [ 361687.814499996602535, 257376.633499998599291 ], [ 361688.279399998486042, 257378.656800001859665 ], [ 361693.840899996459484, 257388.412599999457598 ], [ 361698.631999999284744, 257393.94029999896884 ], [ 361704.236699998378754, 257398.630199998617172 ], [ 361717.076499998569489, 257405.912500001490116 ], [ 361741.70830000191927, 257354.184999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601052500", "MAP": "D9-1899-T81", "PARCEL_NAM": "404-50", "ACRE": "0.17", "LONGITUDE": -64.89335985, "LATITUDE": 18.34578149, "OBJECTID_1": 20770, "PARCEL_NO_": "105601052500", "Tax_Legal_": "404-50&POR 215 ANNAS RET NEW QTR.", "Name": "ENRIQUE, BEREDITH & LOUISET", "Address": "270 River Rd", "City": "MCDONOUGH", "State": "Georgia", "Zip": 30252, "Country": "United States", "Land_Value": 23300, "Improved_V": 219700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.599748615, "SHAPE_Area": 870.60947330800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362776.758100003004074, 257392.631700001657009 ], [ 362758.286700002849102, 257383.825699999928474 ], [ 362755.831799998879433, 257388.027499999850988 ], [ 362748.45269999653101, 257402.32149999961257 ], [ 362745.988799996674061, 257407.578600000590086 ], [ 362763.670100003480911, 257414.478300001472235 ], [ 362778.943300001323223, 257420.09180000051856 ], [ 362783.838699996471405, 257413.376800000667572 ], [ 362789.529700003564358, 257407.934999998658895 ], [ 362779.947400003671646, 257396.879700001329184 ], [ 362776.758100003004074, 257392.631700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87094978, "LATITUDE": 18.34574912, "OBJECTID_1": 22443, "PARCEL_NO_": "105702024500", "Tax_Legal_": "SMITH BAY 94-1 EAST END QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.828945019, "SHAPE_Area": 1135.1147617 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365183.652999997138977, 257406.209300000220537 ], [ 365096.461599998176098, 257418.372400000691414 ], [ 365091.494199998676777, 257433.530499998480082 ], [ 365178.708999998867512, 257418.623399998992682 ], [ 365183.652999997138977, 257406.209300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601021600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-105", "ACRE": ".130", "LONGITUDE": -64.89680087000001, "LATITUDE": 18.345726, "OBJECTID_1": 20550, "PARCEL_NO_": "105601021600", "Tax_Legal_": "146-105 ANNAS RETREAT 1 NEW QTR", "Name": "FRANCIS, GERALDINE & CYNTHIA C.", "Address": "PO BOX 8193", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 39500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.040920602400007, "SHAPE_Area": 564.23748493799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362420.346400000154972, 257392.247800000011921 ], [ 362401.930699996650219, 257376.898299999535084 ], [ 362387.26240000128746, 257394.932300001382828 ], [ 362405.674599997699261, 257410.703899998217821 ], [ 362420.346400000154972, 257392.247800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88739268, "LATITUDE": 18.34576448, "OBJECTID_1": 21135, "PARCEL_NO_": "105602033700", "Tax_Legal_": "394-246 ANNAS RETREAT NEW QTR", "Name": "ISMAY V POGSON REVOCABLE TRUST", "Address": "PO Box 502262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20100, "Improved_V": 136300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.870213349, "SHAPE_Area": 776.65498173100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363414.517099998891354, 257401.862300001084805 ], [ 363413.788099996745586, 257392.77930000051856 ], [ 363379.881599999964237, 257397.356899999082088 ], [ 363380.650200001895428, 257401.79619999974966 ], [ 363380.511699996888638, 257418.049199998378754 ], [ 363416.000299997627735, 257417.073100000619888 ], [ 363414.517099998891354, 257401.862300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90965159, "LATITUDE": 18.34564394, "OBJECTID_1": 19688, "PARCEL_NO_": "105501013500", "Tax_Legal_": "WINTBERG 1CD-2 GREAT NORTHSIDE", "Name": "ANDREW, TOYA C & ASHANA D C ANDREW a/k/a ASHANNA O'CONNELL", "Address": "306 N Argonne Ave", "City": "Sterling", "State": "Virginia", "Zip": 20164, "Country": "United States", "Land_Value": 34300, "Improved_V": 180500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.70581813699999, "SHAPE_Area": 2028.2772771499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361041.870399996638298, 257343.602099999785423 ], [ 361027.401699997484684, 257338.206300001591444 ], [ 361018.916000001132488, 257387.74379999935627 ], [ 361062.372400000691414, 257398.020899999886751 ], [ 361085.143299996852875, 257375.409200001507998 ], [ 361074.68469999730587, 257372.579300001263618 ], [ 361061.031300000846386, 257366.134799998253584 ], [ 361047.408500000834465, 257356.10190000012517 ], [ 361042.603000000119209, 257352.262899998575449 ], [ 361041.013700000941753, 257349.505699999630451 ], [ 361041.047899998724461, 257345.495200000703335 ], [ 361041.870399996638298, 257343.602099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90586776000001, "LATITUDE": 18.34533738, "OBJECTID_1": 19858, "PARCEL_NO_": "105502021100", "Tax_Legal_": "WINTBERG ESTATE 1-N GREAT NORTHSIDE QTR", "Name": "BURNETT, MARIE-LOUISE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 136500, "Improved_V": 564600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 328.31053947599997, "SHAPE_Area": 3715.6262267799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361434.137500002980232, 257299.949799999594688 ], [ 361425.260799996554852, 257300.721500001847744 ], [ 361426.825599998235703, 257401.003800000995398 ], [ 361464.810400001704693, 257390.971099998801947 ], [ 361460.825599998235703, 257385.449999999254942 ], [ 361463.339800000190735, 257374.282699998468161 ], [ 361456.092000000178814, 257373.167899999767542 ], [ 361463.019000001251698, 257317.284800000488758 ], [ 361466.29280000180006, 257311.611999999731779 ], [ 361469.530699998140335, 257310.160900000482798 ], [ 361472.764899998903275, 257309.131900001317263 ], [ 361480.041500002145767, 257306.86939999833703 ], [ 361481.052799999713898, 257282.813000001013279 ], [ 361465.608800001442432, 257297.252099998295307 ], [ 361434.137500002980232, 257299.949799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602087500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89019047, "LATITUDE": 18.34567086, "OBJECTID_1": 21442, "PARCEL_NO_": "105602087500", "Tax_Legal_": "215-272 ANNAS RETREAT NEW QTR.", "Name": "WILLIAMS, GRETTA L. & FENTON", "Address": "4215 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 150700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.978641747, "SHAPE_Area": 572.57652280100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363116.908699996769428, 257408.714600000530481 ], [ 363105.085500001907349, 257376.74269999936223 ], [ 363092.985500000417233, 257377.276900000870228 ], [ 363087.337700001895428, 257377.652899999171495 ], [ 363102.355499997735023, 257413.239500001072884 ], [ 363107.218599997460842, 257410.324000000953674 ], [ 363116.908699996769428, 257408.714600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90747441000001, "LATITUDE": 18.34543634, "OBJECTID_1": 19860, "PARCEL_NO_": "105502021300", "Tax_Legal_": "WINTBERG ESTATE 1I GREAT NORTHSIDE QTR", "Name": "COMMISSIONG, SIDNEY & THELMA", "Address": "PO Box 306813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.44455650200001, "SHAPE_Area": 4327.8603408700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361346.175700001418591, 257307.884700000286102 ], [ 361297.7466000020504, 257313.399000000208616 ], [ 361290.471799999475479, 257315.450399998575449 ], [ 361283.180799998342991, 257319.401500001549721 ], [ 361265.301700003445148, 257335.720400001853704 ], [ 361243.392800003290176, 257351.795299999415874 ], [ 361231.974899999797344, 257366.900600001215935 ], [ 361224.55629999935627, 257385.838300000876188 ], [ 361222.925700001418591, 257387.935899998992682 ], [ 361223.688799999654293, 257393.008400000631809 ], [ 361226.089800000190735, 257395.138999998569489 ], [ 361255.095399998128414, 257397.909499999135733 ], [ 361346.175700001418591, 257307.884700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602087300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88986263, "LATITUDE": 18.34565744, "OBJECTID_1": 21440, "PARCEL_NO_": "105602087300", "Tax_Legal_": "ANNAS RETREAT 215-270 NEW QTR.", "Name": "ADAMS, DEBORAH", "Address": "PO Box 9393", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 106700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.178877481, "SHAPE_Area": 645.85219102999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363144.619999997317791, 257374.111000001430511 ], [ 363129.289300002157688, 257375.252000000327826 ], [ 363125.255900003015995, 257375.430100001394749 ], [ 363130.61599999666214, 257408.826799999922514 ], [ 363136.252999998629093, 257409.717300001531839 ], [ 363147.510799996554852, 257413.397999998182058 ], [ 363144.619999997317791, 257374.111000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702042800", "MAP": "G9-2461-T75", "PARCEL_NAM": "56E", "ACRE": null, "LONGITUDE": -64.87360541, "LATITUDE": 18.34499876, "OBJECTID_1": 22592, "PARCEL_NO_": "105702042800", "Tax_Legal_": "SMITH BAY 56E EAST END QTR", "Name": "FRANCIS, LEONARD BERNARD", "Address": "P O BOX 4368", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 92400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 387.14623800700002, "SHAPE_Area": 1680.4533765900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364838.276500001549721, 257246.328999999910593 ], [ 364843.062200002372265, 257252.489799998700619 ], [ 364845.416400000452995, 257260.108500000089407 ], [ 364846.906800001859665, 257274.475000001490116 ], [ 364851.33110000193119, 257323.062800001353025 ], [ 364858.51129999756813, 257426.768500000238419 ], [ 364867.393299996852875, 257425.363499999046326 ], [ 364863.805900000035763, 257373.193999998271465 ], [ 364861.676500000059605, 257339.190499998629093 ], [ 364860.981600001454353, 257326.097100000828505 ], [ 364858.778499998152256, 257300.747800000011921 ], [ 364854.3074000030756, 257257.64809999987483 ], [ 364851.954999998211861, 257249.818399999290705 ], [ 364847.180100001394749, 257242.390999998897314 ], [ 364844.743199996650219, 257244.48200000077486 ], [ 364838.276500001549721, 257246.328999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105702020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87225108, "LATITUDE": 18.34556968, "OBJECTID_1": 22328, "PARCEL_NO_": "105702020300", "Tax_Legal_": "SMITH BAY 95 EAST END QTR", "Name": "ROUSE, WENDE & ORVILLE", "Address": "6625 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62700, "Improved_V": 79100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.00715892400001, "SHAPE_Area": 1025.75818125 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364994.462700001895428, 257370.252599999308586 ], [ 364978.208700001239777, 257385.107200000435114 ], [ 365004.455600000917912, 257427.751899998635054 ], [ 365018.310400001704693, 257410.555599998682737 ], [ 364994.462700001895428, 257370.252599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601054500", "MAP": "D9-1888-T81", "PARCEL_NAM": "215-308", "ACRE": "0.14", "LONGITUDE": -64.89205428, "LATITUDE": 18.34569995, "OBJECTID_1": 20790, "PARCEL_NO_": "105601054500", "Tax_Legal_": "215-308ANNAS RETREAT NEW QTR.", "Name": "SIMON, JENNIFER", "Address": "143A-2ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.653270316, "SHAPE_Area": 630.70338778099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362917.763899996876717, 257405.395899999886751 ], [ 362920.378799997270107, 257382.408100001513958 ], [ 362890.512900002300739, 257385.96339999884367 ], [ 362887.258900001645088, 257389.314300000667572 ], [ 362899.98369999974966, 257410.105599999427795 ], [ 362917.763899996876717, 257405.395899999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88448026, "LATITUDE": 18.34569309, "OBJECTID_1": 20966, "PARCEL_NO_": "105602015100", "Tax_Legal_": "394-33 ANNAS RETREAT NEW QTR", "Name": "Joseph Powell & Joan Powell (Life Estate)", "Address": "394-33 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 128700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.994249384400007, "SHAPE_Area": 627.89444655099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363718.615599997341633, 257390.418999999761581 ], [ 363708.943400003015995, 257389.917599998414516 ], [ 363696.868500001728535, 257387.496800001710653 ], [ 363693.637900002300739, 257388.10359999909997 ], [ 363691.20099999755621, 257390.194600000977516 ], [ 363690.382100000977516, 257391.665600001811981 ], [ 363691.928199999034405, 257399.488699998706579 ], [ 363694.296800002455711, 257405.418699998408556 ], [ 363697.489600002765656, 257409.244500000029802 ], [ 363702.296899996697903, 257412.872400000691414 ], [ 363707.116800002753735, 257415.022799998521805 ], [ 363713.556599996984005, 257416.342099998146296 ], [ 363718.396200001239777, 257416.1706000007689 ], [ 363718.615599997341633, 257390.418999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602017000", "MAP": "A9-167G-T71", "PARCEL_NAM": "394-229", "ACRE": "0.14", "LONGITUDE": -64.88604677, "LATITUDE": 18.34570371, "OBJECTID_1": 20985, "PARCEL_NO_": "105602017000", "Tax_Legal_": "394-229 ANNAS RETREAT NEW QTR", "Name": "FAHIE, EDWARD & ARONA F", "Address": "PO Box 6664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046664, "Country": "United States", "Land_Value": 19200, "Improved_V": 62000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.502996139900006, "SHAPE_Area": 545.07147936700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363553.334100000560284, 257387.588599998503923 ], [ 363551.730499997735023, 257386.519999999552965 ], [ 363523.414300002157688, 257397.476199999451637 ], [ 363525.795400001108646, 257401.928599998354912 ], [ 363531.331699997186661, 257414.639600001275539 ], [ 363532.057700000703335, 257416.22410000115633 ], [ 363536.575300000607967, 257413.893100000917912 ], [ 363554.80290000140667, 257404.488099999725819 ], [ 363553.334100000560284, 257387.588599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88426774, "LATITUDE": 18.34570988, "OBJECTID_1": 20964, "PARCEL_NO_": "105602014900", "Tax_Legal_": "394-34 ANNAS RETREAT NEW QTR", "Name": "ROGERS, SHARLINE L.", "Address": "394-34 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 102400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.471200142900003, "SHAPE_Area": 522.53663179499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363739.363899998366833, 257415.920000001788139 ], [ 363737.175200000405312, 257388.882100000977516 ], [ 363718.615599997341633, 257390.418999999761581 ], [ 363718.396200001239777, 257416.1706000007689 ], [ 363739.363899998366833, 257415.920000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701031000", "MAP": "D9-3646-T86", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87606864, "LATITUDE": 18.34557849, "OBJECTID_1": 21957, "PARCEL_NO_": "105701031000", "Tax_Legal_": "ESTATE FRYDENDAHL 33A,33B,33C & 33REM. EAST END QTR", "Name": "COOPER, LESLIE & EVA", "Address": "6363 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021408, "Country": "United States", "Land_Value": 186900, "Improved_V": 667800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.237978693, "SHAPE_Area": 818.77376232699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364608.781599998474121, 257365.662300001829863 ], [ 364597.550599999725819, 257362.228999998420477 ], [ 364591.175200000405312, 257382.361699998378754 ], [ 364600.017599999904633, 257385.600499998778105 ], [ 364595.052100002765656, 257400.547499999403954 ], [ 364582.982600003480911, 257397.493400000035763 ], [ 364577.178300000727177, 257416.233199998736382 ], [ 364598.891199998557568, 257423.165899999439716 ], [ 364608.781599998474121, 257365.662300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87335933, "LATITUDE": 18.34557496, "OBJECTID_1": 22572, "PARCEL_NO_": "105702040700", "Tax_Legal_": "SMITH BAY 56A 1,2&3 EAST END QTR", "Name": "FRANCIS, LEONARD BERNARD", "Address": "P O BOX 4368", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.11518819700001, "SHAPE_Area": 1673.8197680599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364891.261900000274181, 257368.5636 ], [ 364863.805900000035763, 257373.193999998271465 ], [ 364867.393299996852875, 257425.363499999046326 ], [ 364902.916000001132488, 257420.376899998635054 ], [ 364891.261900000274181, 257368.5636 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601022900", "MAP": "B9-178-T67", "PARCEL_NAM": "191", "ACRE": "0.28", "LONGITUDE": -64.89485988, "LATITUDE": 18.34566583, "OBJECTID_1": 20562, "PARCEL_NO_": "105601022900", "Tax_Legal_": "ANNAS RETREAT 191 NEW QTR", "Name": "FLEMING, GEOFFREY R., JR. & RENEE J.", "Address": "7073 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33900, "Improved_V": 161900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.47917691399999, "SHAPE_Area": 1079.7933028899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362634.100199997425079, 257384.498100001364946 ], [ 362597.117700003087521, 257371.529800001531839 ], [ 362587.404200002551079, 257375.883200000971556 ], [ 362587.236900001764297, 257395.5135000012815 ], [ 362625.846400000154972, 257406.806400001049042 ], [ 362634.100199997425079, 257384.498100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88407732, "LATITUDE": 18.34569319, "OBJECTID_1": 20962, "PARCEL_NO_": "105602014700", "Tax_Legal_": "394-35 ANNAS RETREAT NEW QTR", "Name": "MCFARLANE, MARISSA C. & JAVIER H. JOSEPH", "Address": "PO Box 11036", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 114500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.774048611300003, "SHAPE_Area": 572.40662247600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363759.532499998807907, 257414.818500000983477 ], [ 363758.160899996757507, 257386.520799998193979 ], [ 363737.175200000405312, 257388.882100000977516 ], [ 363739.363899998366833, 257415.920000001788139 ], [ 363759.532499998807907, 257414.818500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601013300", "MAP": "D9-627-T67", "PARCEL_NAM": "166", "ACRE": "0.17", "LONGITUDE": -64.89878784, "LATITUDE": 18.3456359, "OBJECTID_1": 20470, "PARCEL_NO_": "105601013300", "Tax_Legal_": "166 ANNAS RETREAT NEW QTR", "Name": "MORRIS, FLAVIA", "Address": "PO Box 8912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 118100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.832277914, "SHAPE_Area": 793.67560599199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362205.140100002288818, 257381.198300000280142 ], [ 362201.282999999821186, 257360.690699998289347 ], [ 362178.627099998295307, 257369.793400000780821 ], [ 362188.020599998533726, 257403.011900000274181 ], [ 362207.427799999713898, 257396.626899998635054 ], [ 362205.140100002288818, 257381.198300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701012100", "MAP": "D9-8586-T010", "PARCEL_NAM": "17A", "ACRE": "1.382", "LONGITUDE": -64.88186307, "LATITUDE": 18.34541915, "OBJECTID_1": 21854, "PARCEL_NO_": "105701012100", "Tax_Legal_": "17A & 19A ANNAS RETREAT NEW QTR", "Name": "FOSTER, RUPERT & GASTELE", "Address": "P.O. BOX 4092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 184100, "Improved_V": 171800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.135661384, "SHAPE_Area": 4614.1223314400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364020.161200001835823, 257400.174699999392033 ], [ 364021.020199999213219, 257389.839499998837709 ], [ 364020.031099997460842, 257375.498700000345707 ], [ 364009.387999996542931, 257334.114799998700619 ], [ 363921.273400001227856, 257359.991399999707937 ], [ 363920.414899997413158, 257366.106100000441074 ], [ 363946.092799998819828, 257380.881700001657009 ], [ 363958.930900000035763, 257388.375100001692772 ], [ 363965.35080000013113, 257392.016199998557568 ], [ 364009.483999997377396, 257417.497600000351667 ], [ 364014.619099996984005, 257420.363800000399351 ], [ 364020.161200001835823, 257400.174699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87844175, "LATITUDE": 18.34750858, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.99764493000001, "SHAPE_Area": 1019.3723371900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364334.222599998116493, 257633.570999998599291 ], [ 364356.131499998271465, 257617.496100001037121 ], [ 364359.38910000026226, 257613.723099999129772 ], [ 364362.691699996590614, 257604.673099998384714 ], [ 364353.093299999833107, 257595.517499998211861 ], [ 364349.108400002121925, 257589.996399998664856 ], [ 364325.743400000035763, 257587.694299999624491 ], [ 364334.222599998116493, 257633.570999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601057100", "MAP": null, "PARCEL_NAM": "215-125", "ACRE": null, "LONGITUDE": -64.89355153, "LATITUDE": 18.34754536, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.136152481500005, "SHAPE_Area": 409.92243997899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362754.098300002515316, 257591.507500000298023 ], [ 362753.465000003576279, 257588.515099998563528 ], [ 362745.527500003576279, 257587.589000001549721 ], [ 362739.177500002086163, 257587.456700000911951 ], [ 362734.944200001657009, 257588.647399999201298 ], [ 362733.489000000059605, 257591.160900000482798 ], [ 362733.489000000059605, 257596.849500000476837 ], [ 362733.753499999642372, 257599.892200000584126 ], [ 362737.174300000071526, 257602.835099998861551 ], [ 362738.251500003039837, 257603.86089999973774 ], [ 362744.072300001978874, 257606.9037000015378 ], [ 362753.414399996399879, 257613.482599999755621 ], [ 362756.463299997150898, 257597.859700001776218 ], [ 362754.098300002515316, 257591.507500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021200", "MAP": "D9-1918-T81", "PARCEL_NAM": "49-1", "ACRE": null, "LONGITUDE": -64.87014142, "LATITUDE": 18.34635535, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 983.77831336400004, "SHAPE_Area": 34909.415531300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365392.250600002706051, 257435.780900001525879 ], [ 365150.488899998366833, 257434.890500001609325 ], [ 365084.351499997079372, 257436.671300001442432 ], [ 365048.8378000035882, 257440.60249999910593 ], [ 365036.730499997735023, 257441.980999998748302 ], [ 365010.901600003242493, 257444.936000000685453 ], [ 365022.130599997937679, 257451.993999999016523 ], [ 365038.955300003290176, 257464.7972999997437 ], [ 365058.159299999475479, 257482.264199998229742 ], [ 365059.766500003635883, 257482.910599999129772 ], [ 365066.958599999547005, 257490.568900000303984 ], [ 365068.5658999979496, 257491.215300001204014 ], [ 365080.541900001466274, 257505.24549999833107 ], [ 365081.330200001597404, 257507.362900000065565 ], [ 365137.822300001978874, 257579.986400000751019 ], [ 365136.531499996781349, 257542.190099999308586 ], [ 365160.724500000476837, 257541.965900000184774 ], [ 365160.668799996376038, 257548.509300000965595 ], [ 365202.745300002396107, 257548.042199999094009 ], [ 365202.623999997973442, 257545.686299998313189 ], [ 365252.627999998629093, 257544.617899999022484 ], [ 365252.73309999704361, 257548.873500000685453 ], [ 365300.981499999761581, 257547.969000000506639 ], [ 365301.847199998795986, 257541.010000001639128 ], [ 365350.23309999704361, 257540.561599999666214 ], [ 365351.117700003087521, 257514.782600000500679 ], [ 365391.588799998164177, 257513.457899998873472 ], [ 365392.250600002706051, 257435.780900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602031800", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-340", "ACRE": ".145", "LONGITUDE": -64.88862856, "LATITUDE": 18.34705345, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.987462062700004, "SHAPE_Area": 545.85565187899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363283.407899998128414, 257552.565499998629093 ], [ 363261.021799996495247, 257530.006299998611212 ], [ 363249.589500002563, 257546.800200000405312 ], [ 363272.825199998915195, 257564.30009999871254 ], [ 363283.407899998128414, 257552.565499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701020100", "MAP": "D9-8292-T09", "PARCEL_NAM": "53-1B", "ACRE": "1.724", "LONGITUDE": -64.87877528, "LATITUDE": 18.34560789, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 376.33018753900001, "SHAPE_Area": 8108.3626638899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364350.274499997496605, 257459.173300001770258 ], [ 364368.677100002765656, 257385.06529999896884 ], [ 364367.280000001192093, 257384.187100000679493 ], [ 364284.8733000010252, 257342.165199998766184 ], [ 364246.879699997603893, 257379.543800000101328 ], [ 364233.867299996316433, 257392.525100000202656 ], [ 364293.253899998962879, 257425.941799998283386 ], [ 364344.606100000441074, 257455.915199998766184 ], [ 364350.274499997496605, 257459.173300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "B9-178-T67", "PARCEL_NAM": "185", "ACRE": ".32", "LONGITUDE": -64.89547647000001, "LATITUDE": 18.34586772, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.658212096, "SHAPE_Area": 1154.09109119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362554.079199999570847, 257406.852299999445677 ], [ 362555.058200001716614, 257386.595300000160933 ], [ 362555.216399997472763, 257368.020399998873472 ], [ 362550.295800000429153, 257377.690400000661612 ], [ 362537.304899998009205, 257388.138799998909235 ], [ 362532.43469999730587, 257391.898600000888109 ], [ 362536.286399997770786, 257413.039500001817942 ], [ 362524.868600003421307, 257428.144799999892712 ], [ 362531.281300000846386, 257432.630199998617172 ], [ 362538.473399996757507, 257440.288499999791384 ], [ 362562.677100002765656, 257438.797800000756979 ], [ 362560.285199999809265, 257435.611800000071526 ], [ 362543.437100000679493, 257425.552499998360872 ], [ 362554.079199999570847, 257406.852299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8838947, "LATITUDE": 18.34564784, "OBJECTID_1": 20961, "PARCEL_NO_": "105602014600", "Tax_Legal_": "394-36 ANNAS RETREAT NEW QTR", "Name": "JNOFINN, LINDA", "Address": "394 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 102100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.149088541, "SHAPE_Area": 530.19673112800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363777.379299998283386, 257402.2989999987185 ], [ 363778.399599999189377, 257377.187199998646975 ], [ 363769.481600001454353, 257382.813700001686811 ], [ 363758.160899996757507, 257386.520799998193979 ], [ 363759.532499998807907, 257414.818500000983477 ], [ 363765.986599996685982, 257414.449200000613928 ], [ 363769.222699999809265, 257413.209100000560284 ], [ 363772.512699998915195, 257405.636700000613928 ], [ 363775.763099998235703, 257402.707899998873472 ], [ 363777.379299998283386, 257402.2989999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88524438, "LATITUDE": 18.34561568, "OBJECTID_1": 20977, "PARCEL_NO_": "105602016200", "Tax_Legal_": "ANNAS RETREAT 394-222 NEW QTR", "Name": "PETERS-JOHN, KELVIN and ALEXANDRA DESCARTES", "Address": "394-222 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 257100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.562735223, "SHAPE_Area": 873.07757743900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363647.665500000119209, 257389.204999998211861 ], [ 363637.350699998438358, 257369.488899998366833 ], [ 363603.25, 257396.863000001758337 ], [ 363607.196999996900558, 257406.816700000315905 ], [ 363611.176399998366833, 257412.971000000834465 ], [ 363647.665500000119209, 257389.204999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602087400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89003267, "LATITUDE": 18.34565001, "OBJECTID_1": 21441, "PARCEL_NO_": "105602087400", "Tax_Legal_": "ANNAS RETREAT 215-271 NEW QTR.", "Name": "MILLS, SHERLINE A", "Address": "#215-271 ANNAS RETREAT HEIGHTS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 107800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.83292032600001, "SHAPE_Area": 558.87654743899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363125.255900003015995, 257375.430100001394749 ], [ 363110.733300000429153, 257376.366700001060963 ], [ 363105.085500001907349, 257376.74269999936223 ], [ 363116.908699996769428, 257408.714600000530481 ], [ 363130.61599999666214, 257408.826799999922514 ], [ 363125.255900003015995, 257375.430100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602085800", "MAP": "D9-2753-T84", "PARCEL_NAM": "215-39", "ACRE": ".139", "LONGITUDE": -64.8908604, "LATITUDE": 18.34564917, "OBJECTID_1": 21425, "PARCEL_NO_": "105602085800", "Tax_Legal_": "215-39 ESTATE ANNAS RETREAT NEW QUARTER", "Name": "HODGE, CAROL", "Address": "PO Box 12012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 93500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.167978859000002, "SHAPE_Area": 542.28125638899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363047.653899997472763, 257397.804200001060963 ], [ 363031.734499998390675, 257373.39809999987483 ], [ 363014.699400000274181, 257385.291000001132488 ], [ 363034.668399997055531, 257407.619300000369549 ], [ 363039.542300000786781, 257403.437300000339746 ], [ 363047.653899997472763, 257397.804200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601022200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-111", "ACRE": ".116", "LONGITUDE": -64.89628666, "LATITUDE": 18.34569751, "OBJECTID_1": 20556, "PARCEL_NO_": "105601022200", "Tax_Legal_": "146-111 ANNAS RETREAT NEW QTR", "Name": "GREAUX, CHRISTIAN J.", "Address": "PO Box 305417", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 184300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.404962137699997, "SHAPE_Area": 443.146620316 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362451.034500002861023, 257377.245600000023842 ], [ 362446.824299998581409, 257401.854800000786781 ], [ 362448.48650000244379, 257401.977299999445677 ], [ 362467.026199996471405, 257402.762299999594688 ], [ 362468.825900003314018, 257380.823300000280142 ], [ 362457.55009999871254, 257379.253400001674891 ], [ 362451.034500002861023, 257377.245600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601022300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-112", "ACRE": ".120", "LONGITUDE": -64.89608658, "LATITUDE": 18.3456954, "OBJECTID_1": 20557, "PARCEL_NO_": "105601022300", "Tax_Legal_": "146-112 ANNAS RETREAT 1 NEW QTR", "Name": "LEWIS, EDRIS & OTHERS", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17300, "Improved_V": 144800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.896070430899996, "SHAPE_Area": 466.368371207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362492.05969999730587, 257398.534299999475479 ], [ 362490.60530000180006, 257379.946100000292063 ], [ 362480.112499997019768, 257381.126800000667572 ], [ 362468.825900003314018, 257380.823300000280142 ], [ 362467.026199996471405, 257402.762299999594688 ], [ 362488.829000003635883, 257399.141100000590086 ], [ 362492.05969999730587, 257398.534299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701014800", "MAP": "C9-221-T78", "PARCEL_NAM": "394-414", "ACRE": "0.59", "LONGITUDE": -64.88277433, "LATITUDE": 18.34544821, "OBJECTID_1": 21880, "PARCEL_NO_": "105701014800", "Tax_Legal_": "394-414 ANNAS RETREAT NO.1 NEW QTR", "Name": "FOY, CECELIE & L. PICKERING-INNIS", "Address": "PO Box 12212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72000, "Improved_V": 92200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.33850001600001, "SHAPE_Area": 2069.7215350900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363912.308600001037121, 257371.105999998748302 ], [ 363865.804999999701977, 257339.905699998140335 ], [ 363864.950199998915195, 257345.598299998790026 ], [ 363857.452399998903275, 257373.823399998247623 ], [ 363909.520999997854233, 257414.357400000095367 ], [ 363909.679300002753735, 257395.782400000840425 ], [ 363912.308600001037121, 257371.105999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601058300", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-99", "ACRE": ".14", "LONGITUDE": -64.8940652, "LATITUDE": 18.3456645, "OBJECTID_1": 20826, "PARCEL_NO_": "105601058300", "Tax_Legal_": "404-99 ANNAS RETREAT NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.109141532, "SHAPE_Area": 641.68261166100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362712.298100002110004, 257386.826799999922514 ], [ 362681.762500002980232, 257374.333500001579523 ], [ 362676.015799999237061, 257386.318799998611212 ], [ 362673.548299998044968, 257391.998100001364946 ], [ 362704.891999997198582, 257404.287000000476837 ], [ 362712.298100002110004, 257386.826799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601022100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-110", "ACRE": ".159", "LONGITUDE": -64.89648966, "LATITUDE": 18.34565869, "OBJECTID_1": 20555, "PARCEL_NO_": "105601022100", "Tax_Legal_": "146-110 ANNAS RETREAT 1 NEW QTR", "Name": "RHYMER, C & G. & MALONE, J & H", "Address": "PO Box 307183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52300, "Improved_V": 110500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.918837737, "SHAPE_Area": 663.71204580100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362438.252499997615814, 257372.762600000947714 ], [ 362431.031700000166893, 257368.481699999421835 ], [ 362420.346400000154972, 257392.247800000011921 ], [ 362435.590800002217293, 257401.238499999046326 ], [ 362445.262999996542931, 257401.739799998700619 ], [ 362446.824299998581409, 257401.854800000786781 ], [ 362451.034500002861023, 257377.245600000023842 ], [ 362446.290500000119209, 257375.783700000494719 ], [ 362438.252499997615814, 257372.762600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601013900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-91", "ACRE": ".124", "LONGITUDE": -64.89745075, "LATITUDE": 18.34566007, "OBJECTID_1": 20476, "PARCEL_NO_": "105601013900", "Tax_Legal_": "146-91 ANNAS RETREAT NEW QTR", "Name": "RONEY C. GEORGE", "Address": "PO Box 1465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 92500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.82406450400001, "SHAPE_Area": 638.72839424899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362319.834200002253056, 257395.090500000864267 ], [ 362335.374799996614456, 257396.754399999976158 ], [ 362344.82039999961853, 257398.103799998760223 ], [ 362350.535400003194809, 257398.97690000012517 ], [ 362352.798199996352196, 257399.096700001507998 ], [ 362345.487000003457069, 257376.64750000089407 ], [ 362332.32660000026226, 257372.077799998223782 ], [ 362324.84570000320673, 257370.152899999171495 ], [ 362324.035999998450279, 257369.944600000977516 ], [ 362323.754900000989437, 257372.989000000059605 ], [ 362323.745399996638298, 257373.092000000178814 ], [ 362319.834200002253056, 257395.090500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601014000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-92", "ACRE": ".132", "LONGITUDE": -64.89723597, "LATITUDE": 18.34566677, "OBJECTID_1": 20477, "PARCEL_NO_": "105601014000", "Tax_Legal_": "146-92 ANNAS RETREAT NEW QTR", "Name": "FRANCIS, ALFRED E. & BERNICE (LIFE ESTATE)", "Address": "PO Box 502754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17800, "Improved_V": 142600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.2363746865, "SHAPE_Area": 426.66270608100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362345.487000003457069, 257376.64750000089407 ], [ 362352.798199996352196, 257399.096700001507998 ], [ 362355.77419999986887, 257399.05629999935627 ], [ 362360.060400001704693, 257398.738800000399351 ], [ 362363.79110000282526, 257398.341899998486042 ], [ 362366.410499997437, 257397.389400001615286 ], [ 362367.998000003397465, 257396.03999999910593 ], [ 362369.217699997127056, 257395.410500001162291 ], [ 362370.458599999547005, 257394.769999999552965 ], [ 362371.331699997186661, 257392.468100000172853 ], [ 362368.077299997210503, 257387.229400001466274 ], [ 362360.933600001037121, 257376.275600001215935 ], [ 362358.39360000193119, 257372.386199999600649 ], [ 362356.806000001728535, 257373.151500001549721 ], [ 362345.487000003457069, 257376.64750000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602083700", "MAP": "C9-272-T81", "PARCEL_NAM": "215-241", "ACRE": ".137", "LONGITUDE": -64.88875099000001, "LATITUDE": 18.34565075, "OBJECTID_1": 21406, "PARCEL_NO_": "105602083700", "Tax_Legal_": "215-241 ANNAS RETREAT NEW QTR.", "Name": "POTTER, AUSTIN", "Address": "Annas Retreat 215/241", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 100700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.281905303200006, "SHAPE_Area": 556.74785053300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363263.941699996590614, 257376.565200001001358 ], [ 363250.254199996590614, 257374.131099998950958 ], [ 363242.715000003576279, 257407.211100000888109 ], [ 363253.996200002729893, 257408.147799998521805 ], [ 363262.869199998676777, 257407.798300001770258 ], [ 363263.941699996590614, 257376.565200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602083600", "MAP": "C9-272-T81", "PARCEL_NAM": "215-240", "ACRE": ".138", "LONGITUDE": -64.88856089, "LATITUDE": 18.34563193, "OBJECTID_1": 21405, "PARCEL_NO_": "105602083600", "Tax_Legal_": "215-240 ANNAS RETREAT NEW QTR.", "Name": "SULLIVAN, MARJORIE & SWAN, GLEN", "Address": "215-240 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 111600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.953101343, "SHAPE_Area": 714.95817555099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363287.90089999884367, 257403.781300000846386 ], [ 363284.137299999594688, 257372.297499999403954 ], [ 363269.596699997782707, 257375.344900000840425 ], [ 363263.941699996590614, 257376.565200001001358 ], [ 363262.869199998676777, 257407.798300001770258 ], [ 363287.90089999884367, 257403.781300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602086700", "MAP": "C9-272-T81", "PARCEL_NAM": "215-264", "ACRE": ".138", "LONGITUDE": -64.88942791, "LATITUDE": 18.34561992, "OBJECTID_1": 21434, "PARCEL_NO_": "105602086700", "Tax_Legal_": "215-264 ANNAS RETREAT NEW QTR.", "Name": "HARRIGAN, GLADYS", "Address": "2212 Turnbull Ave", "City": "Bronx", "State": "New York", "Zip": 10473, "Country": "United States", "Land_Value": 24600, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.798133512600003, "SHAPE_Area": 582.28215550200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363200.185500003397465, 257382.79839999973774 ], [ 363186.582400001585484, 257370.443599998950958 ], [ 363166.225000001490116, 257393.708399999886751 ], [ 363179.820900000631809, 257406.907499998807907 ], [ 363200.185500003397465, 257382.79839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602083800", "MAP": "C9-272-T81", "PARCEL_NAM": "215-242", "ACRE": ".137", "LONGITUDE": -64.88891269, "LATITUDE": 18.34560277, "OBJECTID_1": 21407, "PARCEL_NO_": "105602083800", "Tax_Legal_": "215-242 ANNAS RETREAT NEW QTR.", "Name": "NEWTON, DARWIN", "Address": "215-242 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 182300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.25489298799999, "SHAPE_Area": 645.25490050300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363245.450400002300739, 257370.0810999982059 ], [ 363240.648500002920628, 257365.819899998605251 ], [ 363221.072300001978874, 257392.046399999409914 ], [ 363238.688900001347065, 257406.544900000095367 ], [ 363242.715000003576279, 257407.211100000888109 ], [ 363250.254199996590614, 257374.131099998950958 ], [ 363245.450400002300739, 257370.0810999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602016100", "MAP": "A9-167G-T71", "PARCEL_NAM": "394-221", "ACRE": "0.21", "LONGITUDE": -64.88488757, "LATITUDE": 18.34561132, "OBJECTID_1": 20976, "PARCEL_NO_": "105602016100", "Tax_Legal_": "394-221 ANNAS RETREAT NEW QTR", "Name": "HOWELL, MARCELLI & WILLIAMS", "Address": "394-221 ESTATE ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 160300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.75858571399999, "SHAPE_Area": 966.26737955600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363684.635399997234344, 257403.65089999884367 ], [ 363683.069499999284744, 257398.149599999189377 ], [ 363682.347699999809265, 257388.222300000488758 ], [ 363681.555799998342991, 257386.527100000530481 ], [ 363679.154799997806549, 257384.396499998867512 ], [ 363667.087099999189377, 257381.131299998611212 ], [ 363637.350699998438358, 257369.488899998366833 ], [ 363647.665500000119209, 257389.204999998211861 ], [ 363656.382100000977516, 257407.219300001859665 ], [ 363657.965899996459484, 257410.6097999997437 ], [ 363684.635399997234344, 257403.65089999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601052700", "MAP": "D9-1899-T81", "PARCEL_NAM": "404-116", "ACRE": "0.16", "LONGITUDE": -64.89311724, "LATITUDE": 18.3455783, "OBJECTID_1": 20772, "PARCEL_NO_": "105601052700", "Tax_Legal_": "404-116&POR 215 ANNAS RT NEW QTR.", "Name": "FOUNDATION FOR THE UVI", "Address": "CHARLOTTE AMALIE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34900, "Improved_V": 34200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.300234242, "SHAPE_Area": 689.16978925399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362800.295800000429153, 257374.670299999415874 ], [ 362794.757700003683567, 257362.170499999076128 ], [ 362787.493699997663498, 257362.955400001257658 ], [ 362774.578299999237061, 257364.538400001823902 ], [ 362788.086099997162819, 257388.080400001257658 ], [ 362796.023299999535084, 257402.921900000423193 ], [ 362809.79900000244379, 257395.013099998235703 ], [ 362800.295800000429153, 257374.670299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502012400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-31", "ACRE": "0.22", "LONGITUDE": -64.90073175000001, "LATITUDE": 18.34544223, "OBJECTID_1": 19823, "PARCEL_NO_": "105502012400", "Tax_Legal_": "146-31 ANNAS RETREAT 1 NEW QTR", "Name": "WELLS, NORVELL O", "Address": "146-31 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81700, "Improved_V": 74500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.99087682499999, "SHAPE_Area": 1068.1044824099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361991.830600000917912, 257336.811599999666214 ], [ 361991.45099999755621, 257336.535799998790026 ], [ 361976.167000003159046, 257349.401999998837709 ], [ 361964.310199998319149, 257361.084399998188019 ], [ 361997.230800002813339, 257384.517200000584126 ], [ 361997.899800002574921, 257381.613099999725819 ], [ 362006.281199999153614, 257344.31810000166297 ], [ 361991.830600000917912, 257336.811599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601055700", "MAP": "G9-3035-T80", "PARCEL_NAM": "404-112", "ACRE": "0.16", "LONGITUDE": -64.89364861, "LATITUDE": 18.34565198, "OBJECTID_1": 20802, "PARCEL_NO_": "105601055700", "Tax_Legal_": "404-112 ANNA'S RETREAT NEW QTR.", "Name": "SMITH, URDLEY & MARGARITA", "Address": "404112 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21200, "Improved_V": 210400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.782781484699996, "SHAPE_Area": 568.49332436600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362755.831799998879433, 257388.027499999850988 ], [ 362726.928599998354912, 257373.225499998778105 ], [ 362718.7162000015378, 257390.679000001400709 ], [ 362748.45269999653101, 257402.32149999961257 ], [ 362755.831799998879433, 257388.027499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90544945000001, "LATITUDE": 18.34545765, "OBJECTID_1": 19857, "PARCEL_NO_": "105502021000", "Tax_Legal_": "WINTBERG ESTATE 1NA 3 GR NORTHSIDE QTR", "Name": "NILES, DOUGAL D. & FELICIA", "Address": "3649 ALTONA & WELGUNST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113600, "Improved_V": 379600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.233507906, "SHAPE_Area": 3059.6484003400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361522.162900000810623, 257379.19709999859333 ], [ 361523.024999998509884, 257372.660199999809265 ], [ 361518.327299997210503, 257356.156500000506639 ], [ 361514.373099997639656, 257347.047100000083447 ], [ 361508.800800003111362, 257338.557700000703335 ], [ 361505.611599996685982, 257334.309799998998642 ], [ 361496.835600003600121, 257323.261100001633167 ], [ 361490.428300000727177, 257318.142400000244379 ], [ 361484.800300002098083, 257316.19649999961257 ], [ 361473.499300003051758, 257317.581599999219179 ], [ 361471.87049999833107, 257319.468100000172853 ], [ 361464.950699999928474, 257374.506900001317263 ], [ 361463.339800000190735, 257374.282699998468161 ], [ 361460.825599998235703, 257385.449999999254942 ], [ 361464.810400001704693, 257390.971099998801947 ], [ 361480.166299998760223, 257386.874899998307228 ], [ 361522.162900000810623, 257379.19709999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702041100", "MAP": "G9-1358-T69", "PARCEL_NAM": "56B-B", "ACRE": "0.22", "LONGITUDE": -64.87300072, "LATITUDE": 18.34559039, "OBJECTID_1": 22576, "PARCEL_NO_": "105702041100", "Tax_Legal_": "SMITH BAY 56BB EAST END QTR", "Name": "LEONARD, CAVELL VERONICA", "Address": "143 Van Pelt Ave", "City": "Staten Island", "State": "New York", "Zip": 10303, "Country": "United States", "Land_Value": 28600, "Improved_V": 216600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.111574498, "SHAPE_Area": 847.71684656000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364929.056100003421307, 257380.905299998819828 ], [ 364902.363200001418591, 257390.608199998736382 ], [ 364909.377300001680851, 257419.163199998438358 ], [ 364922.3141999989748, 257415.047200001776218 ], [ 364929.601599998772144, 257411.518300000578165 ], [ 364936.901600003242493, 257406.511799998581409 ], [ 364929.056100003421307, 257380.905299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701031000", "MAP": "D9-3626-T86", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87618902, "LATITUDE": 18.34547975, "OBJECTID_1": 21957, "PARCEL_NO_": "105701031000", "Tax_Legal_": "ESTATE FRYDENDAHL 33A,33B,33C & 33REM. EAST END QTR", "Name": "COOPER, LESLIE & EVA", "Address": "6363 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021408, "Country": "United States", "Land_Value": 186900, "Improved_V": 667800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.271553232, "SHAPE_Area": 1006.30121449 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364597.550599999725819, 257362.228999998420477 ], [ 364576.788000002503395, 257355.881799999624491 ], [ 364571.0658999979496, 257376.497600000351667 ], [ 364582.330899998545647, 257379.333999998867512 ], [ 364578.157300002872944, 257395.976300001144409 ], [ 364557.085299998521805, 257408.469399999827147 ], [ 364577.178300000727177, 257416.233199998736382 ], [ 364582.982600003480911, 257397.493400000035763 ], [ 364595.052100002765656, 257400.547499999403954 ], [ 364600.017599999904633, 257385.600499998778105 ], [ 364591.175200000405312, 257382.361699998378754 ], [ 364597.550599999725819, 257362.228999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601013400", "MAP": "D9-627-T67", "PARCEL_NAM": "168", "ACRE": ".13", "LONGITUDE": -64.89851643, "LATITUDE": 18.34562922, "OBJECTID_1": 20471, "PARCEL_NO_": "105601013400", "Tax_Legal_": "ANNAS RETREAT 168 NEW QTR", "Name": "CREQUE, MARION & JOHANN", "Address": "PO Box 503023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16400, "Improved_V": 136300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.44224141399999, "SHAPE_Area": 698.98479693499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362236.717600002884865, 257366.046900000423193 ], [ 362236.148500002920628, 257364.024999998509884 ], [ 362204.604800000786781, 257378.352000001817942 ], [ 362205.140100002288818, 257381.198300000280142 ], [ 362207.427799999713898, 257396.626899998635054 ], [ 362220.364799998700619, 257392.510899998247623 ], [ 362230.861199997365475, 257390.907999999821186 ], [ 362238.119800001382828, 257390.756299998611212 ], [ 362236.717600002884865, 257366.046900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602033800", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-363", "ACRE": "0.15", "LONGITUDE": -64.88782046, "LATITUDE": 18.3456577, "OBJECTID_1": 21136, "PARCEL_NO_": "105602033800", "Tax_Legal_": "394-363 ANNAS RETREAT NEW QTR", "Name": "FREEMAN, ALCEDO SR. & ETHLYN", "Address": "PO Box 7652", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 164100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.090602925, "SHAPE_Area": 649.17093248200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363370.983400002121925, 257400.66160000115633 ], [ 363370.241899996995926, 257393.056099999696016 ], [ 363367.140699997544289, 257378.465300001204014 ], [ 363355.812799997627735, 257383.016699999570847 ], [ 363354.183899998664856, 257384.903200000524521 ], [ 363333.151500001549721, 257392.752599999308586 ], [ 363333.090400002896786, 257399.929299999028444 ], [ 363333.03999999910593, 257405.839499998837709 ], [ 363370.983400002121925, 257400.66160000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601022400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-113", "ACRE": ".117", "LONGITUDE": -64.89587916000001, "LATITUDE": 18.34566336, "OBJECTID_1": 20558, "PARCEL_NO_": "105601022400", "Tax_Legal_": "146-113 ANNAS RETREAT 1 NEW QTR", "Name": "MEYERS, JULIA and PATRICIA", "Address": "PO Box 7722", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 92300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.077128052099994, "SHAPE_Area": 380.58460297300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362513.862499997019768, 257394.912999998778105 ], [ 362507.579199999570847, 257375.229899998754263 ], [ 362501.107199996709824, 257377.71000000089407 ], [ 362490.60530000180006, 257379.946100000292063 ], [ 362492.05969999730587, 257398.534299999475479 ], [ 362509.825499996542931, 257395.513300001621246 ], [ 362513.862499997019768, 257394.912999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601013800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-90", "ACRE": ".126", "LONGITUDE": -64.89768599, "LATITUDE": 18.34561247, "OBJECTID_1": 20475, "PARCEL_NO_": "105601013800", "Tax_Legal_": "146-90 ANNAS RETREAT NEW QTR", "Name": "MICHAEL, MARILYN", "Address": "146-90 ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 209200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.479523741700007, "SHAPE_Area": 634.85754435399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362298.079700000584126, 257392.940499998629093 ], [ 362306.323499999940395, 257394.055599998682737 ], [ 362319.834200002253056, 257395.090500000864267 ], [ 362323.745399996638298, 257373.092000000178814 ], [ 362323.754900000989437, 257372.989000000059605 ], [ 362324.035999998450279, 257369.944600000977516 ], [ 362308.845100000500679, 257366.035799998790026 ], [ 362299.644400000572205, 257365.76969999819994 ], [ 362298.079700000584126, 257392.940499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602085400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89126466, "LATITUDE": 18.3456055, "OBJECTID_1": 21421, "PARCEL_NO_": "105602085400", "Tax_Legal_": "215-313 ANNAS RETREAT NEW QTR", "Name": "NORFORD, CECIL", "Address": "PO Box 7942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 202700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.114484002, "SHAPE_Area": 729.99634559100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363009.096600003540516, 257380.390000000596046 ], [ 362997.939499996602535, 257364.888900000602007 ], [ 362991.034999996423721, 257371.029399998486042 ], [ 362976.278800003230572, 257384.152499999850988 ], [ 362969.777900002896786, 257389.934000000357628 ], [ 362975.829199999570847, 257404.604600001126528 ], [ 362982.308499999344349, 257401.280099999159575 ], [ 362987.16610000282526, 257398.997900001704693 ], [ 362995.279600001871586, 257393.1537000015378 ], [ 363009.096600003540516, 257380.390000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602083500", "MAP": "C9-272-T81", "PARCEL_NAM": "215-239", "ACRE": ".137", "LONGITUDE": -64.8883659, "LATITUDE": 18.34559588, "OBJECTID_1": 21404, "PARCEL_NO_": "105602083500", "Tax_Legal_": "215-239 ANNAS RETREAT No.1 NEW QTR", "Name": "PRENTICE, ALFRED & OTHERS", "Address": "PO Box 11886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15900, "Improved_V": 92300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.026871688400007, "SHAPE_Area": 595.89656988000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363303.488799996674061, 257372.455899998545647 ], [ 363292.214800000190735, 257370.674899999052286 ], [ 363284.137299999594688, 257372.297499999403954 ], [ 363287.90089999884367, 257403.781300000846386 ], [ 363307.284800000488758, 257400.1402000002563 ], [ 363303.488799996674061, 257372.455899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602070200", "MAP": "C9-221-T78", "PARCEL_NAM": "394-421", "ACRE": "0.54", "LONGITUDE": -64.88347636, "LATITUDE": 18.34557259, "OBJECTID_1": 21316, "PARCEL_NO_": "105602070200", "Tax_Legal_": "394-421 ANNAS RETREAT NEW QTR", "Name": "PHIPPS FAMILY REVOCABLE TRUST", "Address": "7422 Newcastle Golf Club Rd", "City": "Newcastle", "State": "Washington", "Zip": 98059, "Country": "United States", "Land_Value": 74400, "Improved_V": 71100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.113485838, "SHAPE_Area": 2340.9481638699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363841.839400000870228, 257408.103900000452995 ], [ 363848.584799997508526, 257373.539799999445677 ], [ 363786.532899998128414, 257369.021099999547005 ], [ 363783.271600000560284, 257373.216299999505281 ], [ 363778.399599999189377, 257377.187199998646975 ], [ 363777.379299998283386, 257402.2989999987185 ], [ 363782.224399998784065, 257401.494300000369549 ], [ 363785.442400000989437, 257402.364999998360872 ], [ 363789.445200003683567, 257405.775199998170137 ], [ 363841.839400000870228, 257408.103900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87088513, "LATITUDE": 18.34551283, "OBJECTID_1": 22441, "PARCEL_NO_": "105702024300", "Tax_Legal_": "SMITH BAY 94-2 EAST END QTR.", "Name": "FAREED SOOKRAM and LATOYAH SWEENEY", "Address": "PO BOX 502536", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 113400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.47066859700001, "SHAPE_Area": 2893.6120483300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365140.406999997794628, 257371.236000001430511 ], [ 365095.77929999679327, 257403.801399998366833 ], [ 365096.461599998176098, 257418.372400000691414 ], [ 365183.652999997138977, 257406.209300000220537 ], [ 365184.480899997055531, 257403.68299999833107 ], [ 365165.517800003290176, 257357.931499999016523 ], [ 365140.406999997794628, 257371.236000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701016200", "MAP": "C9-260-T80", "PARCEL_NAM": "7-11", "ACRE": ".50", "LONGITUDE": -64.88012653, "LATITUDE": 18.345536, "OBJECTID_1": 21891, "PARCEL_NO_": "105701016200", "Tax_Legal_": "7-11 TABOR & HARMONY EAST END QTR.", "Name": "JOSEPH, HYACINTH", "Address": "PO Box 111206", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.694562701, "SHAPE_Area": 1637.3093079499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364197.714500002563, 257376.819400001317263 ], [ 364156.695000000298023, 257364.451400000602007 ], [ 364148.504199996590614, 257379.372000001370907 ], [ 364146.065499998629093, 257381.6739999987185 ], [ 364145.241200000047684, 257383.778200000524521 ], [ 364133.825199998915195, 257398.672400001436472 ], [ 364177.270700000226498, 257410.215999998152256 ], [ 364178.105800002813339, 257406.845300000160933 ], [ 364181.381399996578693, 257400.961500000208616 ], [ 364186.27139999717474, 257394.879799999296665 ], [ 364187.097499996423721, 257392.564500000327826 ], [ 364193.621799997985363, 257383.963100001215935 ], [ 364197.714500002563, 257376.819400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601013700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-89", "ACRE": ".120", "LONGITUDE": -64.8978892, "LATITUDE": 18.3455932, "OBJECTID_1": 20474, "PARCEL_NO_": "105601013700", "Tax_Legal_": "146-89 ANNAS RETREAT NEW QTR", "Name": "FRETT, CYRIL J. -TRUSTEE", "Address": "PO Box 9365", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 125700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.6481899793, "SHAPE_Area": 527.89239130399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362278.404100000858307, 257389.453099999576807 ], [ 362285.130300000309944, 257390.483800001442432 ], [ 362298.079700000584126, 257392.940499998629093 ], [ 362299.644400000572205, 257365.76969999819994 ], [ 362297.934900000691414, 257365.720300000160933 ], [ 362288.64580000191927, 257364.954599998891354 ], [ 362281.020000003278255, 257365.089200001209974 ], [ 362278.71000000089407, 257364.978199999779463 ], [ 362278.683399997651577, 257367.291700001806021 ], [ 362278.404100000858307, 257389.453099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601021700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-106", "ACRE": ".125", "LONGITUDE": -64.89696247000001, "LATITUDE": 18.34559847, "OBJECTID_1": 20551, "PARCEL_NO_": "105601021700", "Tax_Legal_": "146-106 ANNAS RETREAT 1 NEW QTR", "Name": "GIFFT, BERNICE & ALMESTICA, PHYLLI", "Address": "PO Box 11017", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 95700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.193550752899995, "SHAPE_Area": 460.219174786 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362389.11599999666214, 257366.660999998450279 ], [ 362386.987199999392033, 257364.781899999827147 ], [ 362380.847800001502037, 257370.724500000476837 ], [ 362372.070900000631809, 257379.220100000500679 ], [ 362378.457699999213219, 257387.260899998247623 ], [ 362387.26240000128746, 257394.932300001382828 ], [ 362401.930699996650219, 257376.898299999535084 ], [ 362389.11599999666214, 257366.660999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601023200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-114", "ACRE": ".127", "LONGITUDE": -64.89568764000001, "LATITUDE": 18.34561437, "OBJECTID_1": 20565, "PARCEL_NO_": "105601023200", "Tax_Legal_": "146-114 ANNAS RETREAT 1 NEW QTR", "Name": "HENDRICKS, ELOISE V S, & KURT I. & NEAL FRANCIS", "Address": "PO Box 8807", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 120000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.089188823399994, "SHAPE_Area": 500.83501947899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362537.304899998009205, 257388.138799998909235 ], [ 362523.777400001883507, 257366.918699998408556 ], [ 362520.530599996447563, 257369.425299998372793 ], [ 362507.579199999570847, 257375.229899998754263 ], [ 362513.862499997019768, 257394.912999998778105 ], [ 362532.43469999730587, 257391.898600000888109 ], [ 362537.304899998009205, 257388.138799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601052600", "MAP": "D9-1899-T81", "PARCEL_NAM": "404-49", "ACRE": "0.18", "LONGITUDE": -64.89327233, "LATITUDE": 18.34561557, "OBJECTID_1": 20771, "PARCEL_NO_": "105601052600", "Tax_Legal_": "404-49&POR 215 ANNAS RET NEW QTR.", "Name": "FRANCIS, JOYCE", "Address": "PO Box 502963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24700, "Improved_V": 74300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.31757356, "SHAPE_Area": 664.31986996700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362788.086099997162819, 257388.080400001257658 ], [ 362774.578299999237061, 257364.538400001823902 ], [ 362771.349500000476837, 257364.934200000017881 ], [ 362767.3125, 257365.534400001168251 ], [ 362765.674699999392033, 257368.476300001144409 ], [ 362758.286700002849102, 257383.825699999928474 ], [ 362776.758100003004074, 257392.631700001657009 ], [ 362779.947400003671646, 257396.879700001329184 ], [ 362789.529700003564358, 257407.934999998658895 ], [ 362796.023299999535084, 257402.921900000423193 ], [ 362788.086099997162819, 257388.080400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602083400", "MAP": "C9-272-T81", "PARCEL_NAM": "215-238", "ACRE": ".137", "LONGITUDE": -64.88816252, "LATITUDE": 18.34561199, "OBJECTID_1": 21403, "PARCEL_NO_": "105602083400", "Tax_Legal_": "215-238 ANNAS RETREAT NEW QTR.", "Name": "GEORGE, FREDRICK & BROWN, V. &", "Address": "215-238 ESTATE ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 81600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.491352135, "SHAPE_Area": 542.70415072000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363321.155699998140335, 257381.044300001114607 ], [ 363311.54110000282526, 257373.788400001823902 ], [ 363303.488799996674061, 257372.455899998545647 ], [ 363307.284800000488758, 257400.1402000002563 ], [ 363317.784800000488758, 257398.115200001746416 ], [ 363318.5658999979496, 257401.076900001615286 ], [ 363333.090400002896786, 257399.929299999028444 ], [ 363333.151500001549721, 257392.752599999308586 ], [ 363325.962999999523163, 257384.672200001776218 ], [ 363321.155699998140335, 257381.044300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602027900", "MAP": null, "PARCEL_NAM": "394-233", "ACRE": "0.21", "LONGITUDE": -64.88704511, "LATITUDE": 18.34562908, "OBJECTID_1": 21094, "PARCEL_NO_": "105602027900", "Tax_Legal_": "394-233 ANNAS RETREAT NEW QTR", "Name": "BERTHA SAMUEL FAMILY REVOCBLE TRUST", "Address": "394-233 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 178200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.066008669, "SHAPE_Area": 604.06693625000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363456.499300003051758, 257395.873100001364946 ], [ 363454.207999996840954, 257380.866700001060963 ], [ 363413.019599996507168, 257388.339999999850988 ], [ 363413.788099996745586, 257392.77930000051856 ], [ 363414.517099998891354, 257401.862300001084805 ], [ 363456.499300003051758, 257395.873100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601013600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-88", "ACRE": ".116", "LONGITUDE": -64.89808028, "LATITUDE": 18.34558515, "OBJECTID_1": 20473, "PARCEL_NO_": "105601013600", "Tax_Legal_": "ANNAS RETREAT 146-88 NEW QTR", "Name": "CALLWOOD, GOLDIE", "Address": "7058 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 97000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.026056807700002, "SHAPE_Area": 488.484711017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362278.404100000858307, 257389.453099999576807 ], [ 362278.683399997651577, 257367.291700001806021 ], [ 362278.71000000089407, 257364.978199999779463 ], [ 362259.21509999781847, 257364.041499998420477 ], [ 362258.798199996352196, 257389.463300000876188 ], [ 362267.42960000038147, 257389.531300000846386 ], [ 362274.176500000059605, 257389.451900001615286 ], [ 362278.404100000858307, 257389.453099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601063400", "MAP": "C9-239-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89158037, "LATITUDE": 18.34558929, "OBJECTID_1": 20869, "PARCEL_NO_": "105601063400", "Tax_Legal_": "215-36&POR 404 ANNAS RET NEW QTR.", "Name": "LEE, THOMAS & OREL", "Address": "215-36 EST TUTU ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 228200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.572352363299999, "SHAPE_Area": 493.080846829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362960.135300002992153, 257366.556600000709295 ], [ 362959.97580000013113, 257366.170099999755621 ], [ 362951.104999996721745, 257372.527100000530481 ], [ 362945.746399998664856, 257373.629000000655651 ], [ 362945.662299998104572, 257380.041200000792742 ], [ 362945.652400001883507, 257380.798900000751019 ], [ 362945.42230000346899, 257398.342700000852346 ], [ 362953.20160000026226, 257395.656899999827147 ], [ 362969.777900002896786, 257389.934000000357628 ], [ 362960.135300002992153, 257366.556600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602017100", "MAP": "A9-167G-T71", "PARCEL_NAM": "394-230", "ACRE": "0.15", "LONGITUDE": -64.8860913, "LATITUDE": 18.34555266, "OBJECTID_1": 20986, "PARCEL_NO_": "105602017100", "Tax_Legal_": "ANNAS RETREAT 394-230 NEW QTR", "Name": "CASSIA REALTY CORP.", "Address": "PO Box 4092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.509697302000006, "SHAPE_Area": 448.15715915200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363551.730499997735023, 257386.519999999552965 ], [ 363542.207599997520447, 257368.499099999666214 ], [ 363533.269799999892712, 257376.447500001639128 ], [ 363525.167099997401237, 257381.025199998170137 ], [ 363522.719400003552437, 257384.382699999958277 ], [ 363521.893299996852875, 257386.697999998927116 ], [ 363523.414300002157688, 257397.476199999451637 ], [ 363551.730499997735023, 257386.519999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502013000", "MAP": "D9-627-T67", "PARCEL_NAM": "160", "ACRE": "0.16", "LONGITUDE": -64.89981947, "LATITUDE": 18.34554027, "OBJECTID_1": 19829, "PARCEL_NO_": "105502013000", "Tax_Legal_": "160 ANNAS RETREAT NEW QTR", "Name": "GABRIEL (LIFE ESTATE), LEONA A", "Address": "160 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15900, "Improved_V": 188600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.710093403, "SHAPE_Area": 803.86410305699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362097.737700000405312, 257376.742499999701977 ], [ 362100.596093695785385, 257378.234000071592163 ], [ 362103.593999996781349, 257379.420400001108646 ], [ 362100.297499999403954, 257365.639299999922514 ], [ 362098.103799998760223, 257356.468699999153614 ], [ 362097.064400002360344, 257352.123399998992682 ], [ 362074.816799998283386, 257358.920699998736382 ], [ 362076.270400002598763, 257363.678300000727177 ], [ 362070.592000000178814, 257367.642599999904633 ], [ 362065.603100001811981, 257385.333599999547005 ], [ 362090.607799999415874, 257384.482799999415874 ], [ 362091.905100002884865, 257384.438700001686811 ], [ 362091.558067079866305, 257383.004804337193491 ], [ 362091.439300000667572, 257381.534299999475479 ], [ 362091.276946605416015, 257380.862619178165914 ], [ 362091.227377850271296, 257380.173375615122495 ], [ 362091.291946204379201, 257379.48537512216717 ], [ 362091.46888993884204, 257378.817389594245469 ], [ 362091.753381194896065, 257378.187644823803566 ], [ 362092.137657710700296, 257377.613323215220589 ], [ 362092.611234612355474, 257377.110094967938494 ], [ 362093.161190490762237, 257376.691690519481199 ], [ 362093.772519958380144, 257376.369525914546102 ], [ 362094.428543067071587, 257376.152391321433242 ], [ 362095.111360415583476, 257376.046211194887292 ], [ 362095.802341529459227, 257376.053882628999418 ], [ 362096.482633188425098, 257376.175196310941828 ], [ 362097.13367383077275, 257376.406842231896007 ], [ 362097.737700000405312, 257376.742499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602085900", "MAP": "D9-2753-T84", "PARCEL_NAM": "215-38", "ACRE": ".143", "LONGITUDE": -64.8907339, "LATITUDE": 18.34556589, "OBJECTID_1": 21426, "PARCEL_NO_": "105602085900", "Tax_Legal_": "215-38 & POR.404 ANNAS R NEW QTR.", "Name": "HANSEN, PHILMORE & JUNE", "Address": "PO Box 9276", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 92900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.908112011100002, "SHAPE_Area": 401.26306325000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363058.198899999260902, 257390.502199999988079 ], [ 363043.901100002229214, 257365.054000001400709 ], [ 363031.734499998390675, 257373.39809999987483 ], [ 363047.653899997472763, 257397.804200001060963 ], [ 363058.198899999260902, 257390.502199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601013500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-87", "ACRE": ".124", "LONGITUDE": -64.89827493, "LATITUDE": 18.34558274, "OBJECTID_1": 20472, "PARCEL_NO_": "105601013500", "Tax_Legal_": "146-87 ANNAS RETREAT NEW QTR", "Name": "RIVERA, EDDIE & ANTONIA", "Address": "PO Box 307872", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 90100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.850313699599994, "SHAPE_Area": 552.23881783599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362258.798199996352196, 257389.463300000876188 ], [ 362259.21509999781847, 257364.041499998420477 ], [ 362236.148500002920628, 257364.024999998509884 ], [ 362236.717600002884865, 257366.046900000423193 ], [ 362238.049599997699261, 257389.518399998545647 ], [ 362257.348999999463558, 257389.451900001615286 ], [ 362258.798199996352196, 257389.463300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601022000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-109", "ACRE": ".128", "LONGITUDE": -64.89667479000001, "LATITUDE": 18.34555507, "OBJECTID_1": 20554, "PARCEL_NO_": "105601022000", "Tax_Legal_": "ANNAS RETREAT 146-109 NEW QTR", "Name": "CALLWOOD, RICHARD J & C", "Address": "PO Box 7836", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 43400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.526273275999998, "SHAPE_Area": 492.41100494099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362431.031700000166893, 257368.481699999421835 ], [ 362426.215400002896786, 257365.909099999815226 ], [ 362417.405299998819828, 257358.870900001376867 ], [ 362401.930699996650219, 257376.898299999535084 ], [ 362420.346400000154972, 257392.247800000011921 ], [ 362431.031700000166893, 257368.481699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601052800", "MAP": "D9-1899-T81", "PARCEL_NAM": "215-316", "ACRE": "0.14", "LONGITUDE": -64.89293516, "LATITUDE": 18.34553523, "OBJECTID_1": 20773, "PARCEL_NO_": "105601052800", "Tax_Legal_": "215-316 ANNAS RETREAT NEW QTR.", "Name": "WILSON, MAVIS", "Address": "PO Box 643", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 110800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.213991701, "SHAPE_Area": 703.552727753 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362831.664700001478195, 257384.004099998623133 ], [ 362814.132600001990795, 257359.584800001233816 ], [ 362810.09570000320673, 257360.185100000351667 ], [ 362794.757700003683567, 257362.170499999076128 ], [ 362800.295800000429153, 257374.670299999415874 ], [ 362809.79900000244379, 257395.013099998235703 ], [ 362831.664700001478195, 257384.004099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701031000", "MAP": "D9-3626-T86", "PARCEL_NAM": "33B", "ACRE": ".23", "LONGITUDE": -64.87635342, "LATITUDE": 18.34542585, "OBJECTID_1": 21957, "PARCEL_NO_": "105701031000", "Tax_Legal_": "ESTATE FRYDENDAHL 33A,33B,33C & 33REM. EAST END QTR", "Name": "COOPER, LESLIE & EVA", "Address": "6363 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021408, "Country": "United States", "Land_Value": 186900, "Improved_V": 667800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.915296076, "SHAPE_Area": 983.69046211499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364576.788000002503395, 257355.881799999624491 ], [ 364556.709399998188019, 257349.74379999935627 ], [ 364550.1503000035882, 257370.626899998635054 ], [ 364567.835299998521805, 257377.104499999433756 ], [ 364563.67059999704361, 257392.691300000995398 ], [ 364543.428300000727177, 257402.447000000625849 ], [ 364557.085299998521805, 257408.469399999827147 ], [ 364578.157300002872944, 257395.976300001144409 ], [ 364582.330899998545647, 257379.333999998867512 ], [ 364571.0658999979496, 257376.497600000351667 ], [ 364576.788000002503395, 257355.881799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88742534, "LATITUDE": 18.34555487, "OBJECTID_1": 21137, "PARCEL_NO_": "105602033900", "Tax_Legal_": "ANNAS RETREAT 394-245 NEW QTR", "Name": "CHRISTOPHER, YOLANDE", "Address": "PO BOX 4465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25100, "Improved_V": 82400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.995730671, "SHAPE_Area": 820.56985454999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363413.019599996507168, 257388.339999999850988 ], [ 363408.357900001108646, 257367.614700000733137 ], [ 363376.042499996721745, 257374.738499999046326 ], [ 363379.881599999964237, 257397.356899999082088 ], [ 363413.788099996745586, 257392.77930000051856 ], [ 363413.019599996507168, 257388.339999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052000", "MAP": "F9-212-T57", "PARCEL_NAM": "21", "ACRE": ".7", "LONGITUDE": -64.87410033, "LATITUDE": 18.34523801, "OBJECTID_1": 22122, "PARCEL_NO_": "105701052000", "Tax_Legal_": "SMITH BAY 21 EAST END", "Name": "BRATHWAITE, EVELYN W", "Address": "BOX 3556", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 135200, "Improved_V": 96400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.07759469699999, "SHAPE_Area": 2724.64617748 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364820.725199997425079, 257320.231100000441074 ], [ 364796.188900001347065, 257324.899099998176098 ], [ 364792.813100002706051, 257309.014899998903275 ], [ 364778.82769999653101, 257314.870000001043081 ], [ 364781.115299999713898, 257330.298500001430511 ], [ 364798.940600000321865, 257331.037399999797344 ], [ 364797.67059999704361, 257355.590799998492002 ], [ 364781.440999999642372, 257354.540100000798702 ], [ 364781.608800001442432, 257367.032900001853704 ], [ 364783.147699996829033, 257375.700300000607967 ], [ 364786.282999999821186, 257386.280600000172853 ], [ 364791.054300002753735, 257394.130100000649691 ], [ 364792.629199996590614, 257398.5760000012815 ], [ 364792.982199996709824, 257400.995799999684095 ], [ 364822.911899998784065, 257398.933299999684095 ], [ 364820.725199997425079, 257320.231100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602086600", "MAP": "C9-272-T81", "PARCEL_NAM": "215-263", "ACRE": ".138", "LONGITUDE": -64.88954318, "LATITUDE": 18.34551848, "OBJECTID_1": 21433, "PARCEL_NO_": "105602086600", "Tax_Legal_": "215-263 ANNAS RETREAT NEW QTR.", "Name": "MORRISHAW, ALPHONSO & MARGARET", "Address": "PO BOX 10425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 110200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.202706604900001, "SHAPE_Area": 442.70773678699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363186.582400001585484, 257370.443599998950958 ], [ 363175.375, 257360.852699998766184 ], [ 363155.823899999260902, 257384.124099999666214 ], [ 363166.225000001490116, 257393.708399999886751 ], [ 363186.582400001585484, 257370.443599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601023300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-115", "ACRE": ".143", "LONGITUDE": -64.8955158, "LATITUDE": 18.34550426, "OBJECTID_1": 20566, "PARCEL_NO_": "105601023300", "Tax_Legal_": "ANNAS RETREAT 146-115 1 NEW QTR", "Name": "CAINES, GERTRUDE", "Address": "146-115 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 74200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.778556140199996, "SHAPE_Area": 571.89638162200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362555.216399997472763, 257368.020399998873472 ], [ 362548.807300001382828, 257363.112799998372793 ], [ 362542.446699999272823, 257352.506099998950958 ], [ 362530.262100003659725, 257362.960999999195337 ], [ 362523.777400001883507, 257366.918699998408556 ], [ 362537.304899998009205, 257388.138799998909235 ], [ 362550.295800000429153, 257377.690400000661612 ], [ 362555.216399997472763, 257368.020399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601023100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-117", "ACRE": ".113", "LONGITUDE": -64.89525811, "LATITUDE": 18.34556953, "OBJECTID_1": 20564, "PARCEL_NO_": "105601023100", "Tax_Legal_": "146-117 ANNAS RETREAT 1 NEW QTR", "Name": "ROBERTS (LIFE ESTATE), DAPHNE", "Address": "PO Box 10158", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13800, "Improved_V": 123700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.880034461299999, "SHAPE_Area": 456.58110718299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362578.42679999768734, 257388.475400000810623 ], [ 362578.601300001144409, 257368.000700000673532 ], [ 362555.216399997472763, 257368.020399998873472 ], [ 362555.058200001716614, 257386.595300000160933 ], [ 362578.42679999768734, 257388.475400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8853679, "LATITUDE": 18.34546494, "OBJECTID_1": 20978, "PARCEL_NO_": "105602016300", "Tax_Legal_": "394-223 ANNAS RETREAT NEW QTR", "Name": "SMITH, MILLICENT", "Address": "PO Box 8204", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17100, "Improved_V": 119400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.760907582, "SHAPE_Area": 816.59677017800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363606.807899996638298, 257357.839899998158216 ], [ 363604.086999997496605, 257356.469500001519918 ], [ 363595.284000001847744, 257385.398800000548363 ], [ 363599.299300000071526, 257387.331500001251698 ], [ 363601.694899998605251, 257390.095300000160933 ], [ 363603.25, 257396.863000001758337 ], [ 363637.350699998438358, 257369.488899998366833 ], [ 363606.807899996638298, 257357.839899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502012500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-32", "ACRE": ".121", "LONGITUDE": -64.90048389, "LATITUDE": 18.34545145, "OBJECTID_1": 19824, "PARCEL_NO_": "105502012500", "Tax_Legal_": "146-32 ANNAS RETREAT 1 NEW QTR", "Name": "EDDY, LIONEL A & CHERYL", "Address": "PO Box 11473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.189068434800006, "SHAPE_Area": 595.47263081300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362015.928199999034405, 257347.774599999189377 ], [ 362006.281199999153614, 257344.31810000166297 ], [ 362000.406300000846386, 257370.459899999201298 ], [ 362026.398199997842312, 257373.713899999856949 ], [ 362027.205799996852875, 257349.133400000631809 ], [ 362015.928199999034405, 257347.774599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87278157, "LATITUDE": 18.34541212, "OBJECTID_1": 22580, "PARCEL_NO_": "105702041600", "Tax_Legal_": "56CA SMITH BAY EAST END QTR", "Name": "STEWART, PAUL", "Address": "9009 Estate Cottage", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 28600, "Improved_V": 255900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.043902269, "SHAPE_Area": 980.64814062400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364960.462700001895428, 257385.806400001049042 ], [ 364950.218000002205372, 257357.858199998736382 ], [ 364925.126999996602535, 257368.840799998492002 ], [ 364929.056100003421307, 257380.905299998819828 ], [ 364936.901600003242493, 257406.511799998581409 ], [ 364941.768200002610683, 257403.174100000411272 ], [ 364960.462700001895428, 257385.806400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502012600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-33", "ACRE": ".124", "LONGITUDE": -64.90025289, "LATITUDE": 18.34544079, "OBJECTID_1": 19825, "PARCEL_NO_": "105502012600", "Tax_Legal_": "146-33 ANNAS RETREAT 1 NEW QTR", "Name": "HARRIGAN, KSHAWN J", "Address": "146-33 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 141400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.642477243800002, "SHAPE_Area": 563.40331520400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362055.049099996685982, 257364.960200000554323 ], [ 362049.012199997901917, 257345.089999999850988 ], [ 362039.309500001370907, 257348.177000001072884 ], [ 362027.205799996852875, 257349.133400000631809 ], [ 362026.398199997842312, 257373.713899999856949 ], [ 362055.049099996685982, 257364.960200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602083900", "MAP": "C9-272-T81", "PARCEL_NAM": "215-243", "ACRE": ".138", "LONGITUDE": -64.88904405, "LATITUDE": 18.34547822, "OBJECTID_1": 21408, "PARCEL_NO_": "105602083900", "Tax_Legal_": "215-243 ANNAS RETREAT NEW QTR.", "Name": "HARVEY, BEVERLY & BARTLEY, H. & C", "Address": "PO Box 10144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 186500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.00219450500001, "SHAPE_Area": 593.51497391299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363240.648500002920628, 257365.819899998605251 ], [ 363227.8445999994874, 257354.315999999642372 ], [ 363206.661100000143051, 257379.896099999547005 ], [ 363221.072300001978874, 257392.046399999409914 ], [ 363240.648500002920628, 257365.819899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601055600", "MAP": "G9-3035-T80", "PARCEL_NAM": "404-113", "ACRE": "0.15", "LONGITUDE": -64.89356125, "LATITUDE": 18.34550315, "OBJECTID_1": 20801, "PARCEL_NO_": "105601055600", "Tax_Legal_": "ANNAS RETREAT 404-113 NEW QTR.", "Name": "DONOVAN-GEORGE, DARLENE", "Address": "PO Box 9917", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 59300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.136353027, "SHAPE_Area": 652.83057493599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362765.674699999392033, 257368.476300001144409 ], [ 362735.130199998617172, 257357.038400001823902 ], [ 362726.928599998354912, 257373.225499998778105 ], [ 362755.831799998879433, 257388.027499999850988 ], [ 362758.286700002849102, 257383.825699999928474 ], [ 362765.674699999392033, 257368.476300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602086000", "MAP": "D9-2753-T84", "PARCEL_NAM": "215-37", "ACRE": ".141", "LONGITUDE": -64.89057123000001, "LATITUDE": 18.34545967, "OBJECTID_1": 21427, "PARCEL_NO_": "105602086000", "Tax_Legal_": "215-37&POR.404 ANNAS RET NEW QTR.", "Name": "WOODS, CARLOS", "Address": "PO Box 10945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23100, "Improved_V": 100500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.090252487, "SHAPE_Area": 827.37795757599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363080.073700003325939, 257378.437800001353025 ], [ 363068.234300002455711, 257348.365600001066923 ], [ 363061.751500003039837, 257352.112300001084805 ], [ 363043.901100002229214, 257365.054000001400709 ], [ 363058.198899999260902, 257390.502199999988079 ], [ 363065.49889999628067, 257385.495700001716614 ], [ 363071.166500002145767, 257382.797899998724461 ], [ 363080.073700003325939, 257378.437800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602034000", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-364", "ACRE": "0.14", "LONGITUDE": -64.88786569, "LATITUDE": 18.34550599, "OBJECTID_1": 21138, "PARCEL_NO_": "105602034000", "Tax_Legal_": "ANNAS RETREAT 394-364 NEW QTR", "Name": "BEST, RUDOLPH & CHRISZILEAR", "Address": "4404 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021901, "Country": "United States", "Land_Value": 20200, "Improved_V": 129800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.466068463, "SHAPE_Area": 650.70350789899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363367.140699997544289, 257378.465300001204014 ], [ 363366.37389999628067, 257373.815000001341105 ], [ 363362.426899999380112, 257363.861299999058247 ], [ 363357.626800000667572, 257359.388999998569489 ], [ 363325.962999999523163, 257384.672200001776218 ], [ 363333.151500001549721, 257392.752599999308586 ], [ 363354.183899998664856, 257384.903200000524521 ], [ 363355.812799997627735, 257383.016699999570847 ], [ 363367.140699997544289, 257378.465300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701031000", "MAP": "D9-3626-T86", "PARCEL_NAM": "33A", "ACRE": ".242", "LONGITUDE": -64.87651968, "LATITUDE": 18.34543929, "OBJECTID_1": 21957, "PARCEL_NO_": "105701031000", "Tax_Legal_": "ESTATE FRYDENDAHL 33A,33B,33C & 33REM. EAST END QTR", "Name": "COOPER, LESLIE & EVA", "Address": "6363 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021408, "Country": "United States", "Land_Value": 186900, "Improved_V": 667800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.972940225, "SHAPE_Area": 1108.87811046 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364556.709399998188019, 257349.74379999935627 ], [ 364548.214000001549721, 257347.146699998527765 ], [ 364542.168099999427795, 257361.062399998307228 ], [ 364527.366800002753735, 257394.7162000015378 ], [ 364543.428300000727177, 257402.447000000625849 ], [ 364563.67059999704361, 257392.691300000995398 ], [ 364567.835299998521805, 257377.104499999433756 ], [ 364550.1503000035882, 257370.626899998635054 ], [ 364556.709399998188019, 257349.74379999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601058400", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-98", "ACRE": ".14", "LONGITUDE": -64.89399372, "LATITUDE": 18.34550131, "OBJECTID_1": 20827, "PARCEL_NO_": "105601058400", "Tax_Legal_": "404-98 ANNAS RETREAT NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.48752656000001, "SHAPE_Area": 652.23583405 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362719.696999996900558, 257370.210999999195337 ], [ 362690.799199998378754, 257354.775699999183416 ], [ 362681.762500002980232, 257374.333500001579523 ], [ 362712.298100002110004, 257386.826799999922514 ], [ 362719.696999996900558, 257370.210999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89429387, "LATITUDE": 18.34544163, "OBJECTID_1": 20571, "PARCEL_NO_": "105601023900", "Tax_Legal_": "ANNAS RETREAT 197 1 NEW QTR", "Name": "SELKRIDGE, IDETHA S.", "Address": "173-226 ESTATE TUTU", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26200, "Improved_V": 148000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.59119091900001, "SHAPE_Area": 1030.8625898299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362690.799199998378754, 257354.775699999183416 ], [ 362659.435699999332428, 257344.808699999004602 ], [ 362647.918999999761581, 257371.523400001227856 ], [ 362676.015799999237061, 257386.318799998611212 ], [ 362681.762500002980232, 257374.333500001579523 ], [ 362690.799199998378754, 257354.775699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90868707, "LATITUDE": 18.34523626, "OBJECTID_1": 19690, "PARCEL_NO_": "105501013700", "Tax_Legal_": "WINTBERG 1CD-5 GR NORTHSIDE QTR", "Name": "AMARO, JOHN & CHAMERLAIN, TAMMY", "Address": "1CD-5 WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49200, "Improved_V": 264300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.99629541799999, "SHAPE_Area": 1974.1528263 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361168.643100000917912, 257323.319200001657009 ], [ 361176.169600002467632, 257291.716699998825788 ], [ 361110.525600001215935, 257330.231800001114607 ], [ 361124.071099996566772, 257349.341099999845028 ], [ 361137.045800000429153, 257340.792399998754263 ], [ 361144.327799998223782, 257337.896699998527765 ], [ 361149.964800000190735, 257338.787200000137091 ], [ 361154.773900002241135, 257342.204100001603365 ], [ 361156.365000002086163, 257344.750199999660254 ], [ 361156.300200000405312, 257352.34910000115633 ], [ 361154.67679999768734, 257353.602299999445677 ], [ 361148.100400000810623, 257368.325100000947714 ], [ 361145.649099998176098, 257372.104699999094009 ], [ 361157.731200002133846, 257373.681200001388788 ], [ 361168.643100000917912, 257323.319200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601014600", "MAP": "D9-627-T67", "PARCEL_NAM": "159", "ACRE": ".16", "LONGITUDE": -64.89956234, "LATITUDE": 18.34548848, "OBJECTID_1": 20483, "PARCEL_NO_": "105601014600", "Tax_Legal_": "159 ANNAS RETREAT NO.1 NEW QTR", "Name": "ROPER, ANSELMO M. & JOYCELYN", "Address": "PO Box 672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21900, "Improved_V": 110700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.262683533, "SHAPE_Area": 696.79943635500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362117.48759999871254, 257352.8277000002563 ], [ 362114.157700002193451, 257346.901000000536442 ], [ 362097.102700002491474, 257352.111699998378754 ], [ 362097.064400002360344, 257352.123399998992682 ], [ 362098.103799998760223, 257356.468699999153614 ], [ 362100.297499999403954, 257365.639299999922514 ], [ 362103.593999996781349, 257379.420400001108646 ], [ 362110.452772281074431, 257379.520199482300086 ], [ 362117.296352787641808, 257379.053163044416578 ], [ 362124.077976053638849, 257378.022482171101728 ], [ 362130.751299999654293, 257376.435199998319149 ], [ 362117.48759999871254, 257352.8277000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601014100", "MAP": "D9-627-T67", "PARCEL_NAM": "167", "ACRE": "0.14", "LONGITUDE": -64.89855614, "LATITUDE": 18.34546019, "OBJECTID_1": 20478, "PARCEL_NO_": "105601014100", "Tax_Legal_": "ANNAS RETREAT 167 NEW QTR", "Name": "DAWSON, VICTOR & ROSALIND", "Address": "PO Box 502066", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 84100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.973377787, "SHAPE_Area": 575.58848491000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362236.148500002920628, 257364.024999998509884 ], [ 362231.238799996674061, 257346.581500001251698 ], [ 362212.353900000452995, 257356.98930000141263 ], [ 362201.282999999821186, 257360.690699998289347 ], [ 362204.604800000786781, 257378.352000001817942 ], [ 362236.148500002920628, 257364.024999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602016900", "MAP": "A9-167G-T71", "PARCEL_NAM": "394-225", "ACRE": "0.26", "LONGITUDE": -64.88581698, "LATITUDE": 18.34545941, "OBJECTID_1": 20984, "PARCEL_NO_": "105602016900", "Tax_Legal_": "ANNAS RETREAT 394-225 NEW QTR", "Name": "HODGE, THERCIA T", "Address": "O.H.C. B-23 #250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32600, "Improved_V": 119000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.89472965, "SHAPE_Area": 1116.0520565100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363551.730499997735023, 257386.519999999552965 ], [ 363553.334100000560284, 257387.588599998503923 ], [ 363584.740800000727177, 257392.489700000733137 ], [ 363586.385799996554852, 257388.703499998897314 ], [ 363588.819099999964237, 257387.034600000828505 ], [ 363566.555200003087521, 257350.122099999338388 ], [ 363557.640799999237061, 257355.326499998569489 ], [ 363542.207599997520447, 257368.499099999666214 ], [ 363551.730499997735023, 257386.519999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601023600", "MAP": "B9-178-T67", "PARCEL_NAM": "192", "ACRE": "0.23", "LONGITUDE": -64.89472837, "LATITUDE": 18.3454088, "OBJECTID_1": 20569, "PARCEL_NO_": "105601023600", "Tax_Legal_": "ANNAS RETREAT 192 NEW QTR", "Name": "NOEL, IVOR W.", "Address": "PO Box 34231", "City": "N. Chesterfield", "State": "Virginia", "Zip": 23234, "Country": "United States", "Land_Value": 28900, "Improved_V": 213900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.93260987400001, "SHAPE_Area": 1200.2189469800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362644.833999998867512, 257355.032800000160933 ], [ 362609.543200001120567, 257332.790199998766184 ], [ 362604.678400002419949, 257335.916799999773502 ], [ 362615.73480000346899, 257363.238400001078844 ], [ 362597.117700003087521, 257371.529800001531839 ], [ 362634.100199997425079, 257384.498100001364946 ], [ 362639.897200003266335, 257366.60249999910593 ], [ 362644.833999998867512, 257355.032800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601054600", "MAP": "D9-1888-T81", "PARCEL_NAM": "215-306", "ACRE": "0.14", "LONGITUDE": -64.89206558, "LATITUDE": 18.34551936, "OBJECTID_1": 20791, "PARCEL_NO_": "105601054600", "Tax_Legal_": "215-307ANNAS RETREAT NEW QTR.", "Name": "HOOD, SANDRA", "Address": "PO Box 8173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 83200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.445108991400005, "SHAPE_Area": 554.36635689599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362920.378799997270107, 257382.408100001513958 ], [ 362918.919100001454353, 257364.453200001269579 ], [ 362888.250399999320507, 257367.579700000584126 ], [ 362889.771300002932549, 257378.357900001108646 ], [ 362890.512900002300739, 257385.96339999884367 ], [ 362920.378799997270107, 257382.408100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87116042, "LATITUDE": 18.34534539, "OBJECTID_1": 22330, "PARCEL_NO_": "105702020500", "Tax_Legal_": "SMITH BAY 111 EAST END QTR", "Name": "SOOKRAM, SIEWDATH", "Address": "PO Box 10237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 6000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.95152217200001, "SHAPE_Area": 1319.7872316600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365140.406999997794628, 257371.236000001430511 ], [ 365130.914700001478195, 257349.626800000667572 ], [ 365092.037299998104572, 257369.784699998795986 ], [ 365093.601300001144409, 257375.497000001370907 ], [ 365095.77929999679327, 257403.801399998366833 ], [ 365140.406999997794628, 257371.236000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602088400", "MAP": "C9-239-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89141271, "LATITUDE": 18.3454844, "OBJECTID_1": 21451, "PARCEL_NO_": "105602088400", "Tax_Legal_": "215-35 ANNAS RETREAT NEW QTR.", "Name": "MATTHEW FAMILY TRUST", "Address": "100 Alcott Pl", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 17800, "Improved_V": 85400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.630368491400006, "SHAPE_Area": 512.34308922299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362988.377099998295307, 257373.393199998885393 ], [ 362975.83049999922514, 257355.450599998235703 ], [ 362962.463500000536442, 257364.38740000128746 ], [ 362959.97580000013113, 257366.170099999755621 ], [ 362960.135300002992153, 257366.556600000709295 ], [ 362969.777900002896786, 257389.934000000357628 ], [ 362976.278800003230572, 257384.152499999850988 ], [ 362988.377099998295307, 257373.393199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601053000", "MAP": "D9-1888-T81", "PARCEL_NAM": "215-311", "ACRE": "0.21", "LONGITUDE": -64.89236207, "LATITUDE": 18.34543116, "OBJECTID_1": 20775, "PARCEL_NO_": "105601053000", "Tax_Legal_": "ANNAS RETREAT 215-311 NEW QTR.", "Name": "CLARKE, BERNARD & IMELDA", "Address": "PO Box 503273", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28800, "Improved_V": 209500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.42487815, "SHAPE_Area": 931.03346214800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362888.250399999320507, 257367.579700000584126 ], [ 362885.982500001788139, 257349.829300001263618 ], [ 362866.625600002706051, 257350.304200001060963 ], [ 362852.106600001454353, 257350.818599998950958 ], [ 362853.663500003516674, 257357.375300001353025 ], [ 362864.773900002241135, 257378.364500001072884 ], [ 362884.877700001001358, 257384.861800000071526 ], [ 362889.771300002932549, 257378.357900001108646 ], [ 362888.250399999320507, 257367.579700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87040542, "LATITUDE": 18.34486925, "OBJECTID_1": 22336, "PARCEL_NO_": "105702021000", "Tax_Legal_": "SMITH BAY 41 EAST END QTR", "Name": "MARGARITAVILLE VACATION CLUB BY WYNDHAM,INC.", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 392000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 383.57374438400001, "SHAPE_Area": 6975.6885571700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365140.235500000417233, 257296.718600001186132 ], [ 365151.291900001466274, 257324.040100000798702 ], [ 365165.517800003290176, 257357.931499999016523 ], [ 365184.480899997055531, 257403.68299999833107 ], [ 365212.461900003254414, 257337.417500000447035 ], [ 365256.103500001132488, 257325.953400000929832 ], [ 365227.502400003373623, 257275.690200001001358 ], [ 365222.696900002658367, 257271.851199999451637 ], [ 365217.86259999871254, 257271.389400001615286 ], [ 365215.438299998641014, 257272.002900000661612 ], [ 365206.527500003576279, 257276.785100001841784 ], [ 365191.1554000005126, 257282.780999999493361 ], [ 365164.489600002765656, 257289.317699998617172 ], [ 365140.235500000417233, 257296.718600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601014700", "MAP": "D9-627-T67", "PARCEL_NAM": "158", "ACRE": "0.15", "LONGITUDE": -64.89936726000001, "LATITUDE": 18.34544408, "OBJECTID_1": 20484, "PARCEL_NO_": "105601014700", "Tax_Legal_": "158 ANNAS RETREAT NEW QTR", "Name": "GABRIEL, KYLE D", "Address": "PO Box 8663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 67400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.2496316, "SHAPE_Area": 625.093364275 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362138.929700002074242, 257347.965599998831749 ], [ 362116.755599997937679, 257346.107200000435114 ], [ 362114.157700002193451, 257346.901000000536442 ], [ 362117.48759999871254, 257352.8277000002563 ], [ 362130.751299999654293, 257376.435199998319149 ], [ 362140.528557974437717, 257373.78242919780314 ], [ 362150.390000000596046, 257371.462099999189377 ], [ 362140.879699997603893, 257351.963599998503923 ], [ 362138.929700002074242, 257347.965599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601052900", "MAP": "D9-1899-T81", "PARCEL_NAM": "215-317", "ACRE": "0.14", "LONGITUDE": -64.8927127, "LATITUDE": 18.34546425, "OBJECTID_1": 20774, "PARCEL_NO_": "105601052900", "Tax_Legal_": "215-317 ANNAS RETREAT NEW QTR.", "Name": "GEORGE, PEDRITO & VENETTA", "Address": "215-317 EST. TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 213500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.575982459, "SHAPE_Area": 699.89276142599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362831.664700001478195, 257384.004099998623133 ], [ 362855.936800003051758, 257374.492400001734495 ], [ 362846.419299997389317, 257355.838300000876188 ], [ 362825.433600001037121, 257358.199700001627207 ], [ 362814.132600001990795, 257359.584800001233816 ], [ 362831.664700001478195, 257384.004099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602038000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88708328, "LATITUDE": 18.34546877, "OBJECTID_1": 21173, "PARCEL_NO_": "105602038000", "Tax_Legal_": "394-234 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, GERALDINE, TRUSTEE", "Address": "6455 Woodcrest Ave", "City": "Philadelphia", "State": "Pennsylvania", "Zip": 19151, "Country": "United States", "Land_Value": 23900, "Improved_V": 131300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.526308426, "SHAPE_Area": 909.07657032999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363454.207999996840954, 257380.866700001060963 ], [ 363447.944600000977516, 257358.861699998378754 ], [ 363424.516500003635883, 257363.947299998253584 ], [ 363408.357900001108646, 257367.614700000733137 ], [ 363413.019599996507168, 257388.339999999850988 ], [ 363454.207999996840954, 257380.866700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90916238, "LATITUDE": 18.34544414, "OBJECTID_1": 19689, "PARCEL_NO_": "105501013600", "Tax_Legal_": "1CD-4 WINTBERG NORTHSIDE QUARTER", "Name": "MARTYN J. & BETTY JO CRAWFORD", "Address": "PO BOX 600201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48200, "Improved_V": 149400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.12283660099999, "SHAPE_Area": 1126.8567106099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361124.071099996566772, 257349.341099999845028 ], [ 361110.525600001215935, 257330.231800001114607 ], [ 361106.54619999974966, 257324.077500000596046 ], [ 361102.4408999979496, 257332.698699999600649 ], [ 361100.801299996674061, 257335.851700000464916 ], [ 361098.350000001490116, 257339.631400000303984 ], [ 361095.905900001525879, 257342.566700000315905 ], [ 361093.467200003564358, 257344.868700001388788 ], [ 361089.408699996769428, 257348.001899998635054 ], [ 361085.362700000405312, 257349.657499998807907 ], [ 361080.508699998259544, 257351.517700001597404 ], [ 361077.276199996471405, 257352.33559999987483 ], [ 361067.593299999833107, 257353.100699998438358 ], [ 361057.915700003504753, 257353.232599999755621 ], [ 361073.962899997830391, 257362.651999998837709 ], [ 361082.000799998641014, 257365.673099998384714 ], [ 361094.880199998617172, 257368.311700001358986 ], [ 361100.527999997138977, 257367.935699999332428 ], [ 361105.391099996864796, 257365.020199999213219 ], [ 361114.3378000035882, 257356.016399998217821 ], [ 361124.071099996566772, 257349.341099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602086500", "MAP": "C9-272-T81", "PARCEL_NAM": "215-262", "ACRE": ".140", "LONGITUDE": -64.88966647, "LATITUDE": 18.34539544, "OBJECTID_1": 21432, "PARCEL_NO_": "105602086500", "Tax_Legal_": "215-262 ANNAS RETREAT NEW QTR.", "Name": "JOSEPH, BERNARD & JEROME", "Address": "215-262 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 101900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.535526592, "SHAPE_Area": 668.06496518599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363175.375, 257360.852699998766184 ], [ 363158.568300001323223, 257345.9386 ], [ 363152.150200001895428, 257342.086399998515844 ], [ 363146.250600002706051, 257372.013399999588728 ], [ 363144.619999997317791, 257374.111000001430511 ], [ 363155.823899999260902, 257384.124099999666214 ], [ 363175.375, 257360.852699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88560822, "LATITUDE": 18.34536393, "OBJECTID_1": 20979, "PARCEL_NO_": "105602016400", "Tax_Legal_": "ANNAS RETREAT 394-224 NEW QTR", "Name": "AMEY, GEORGE", "Address": "PO Box 303768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 149200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.48679294900001, "SHAPE_Area": 833.22175857900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363595.284000001847744, 257385.398800000548363 ], [ 363604.086999997496605, 257356.469500001519918 ], [ 363585.931900002062321, 257347.325399998575449 ], [ 363569.796599999070168, 257348.248799998313189 ], [ 363566.555200003087521, 257350.122099999338388 ], [ 363588.819099999964237, 257387.034600000828505 ], [ 363590.442500002682209, 257385.781399998813868 ], [ 363595.284000001847744, 257385.398800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601010200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-93", "ACRE": ".115", "LONGITUDE": -64.8973708, "LATITUDE": 18.34546685, "OBJECTID_1": 20439, "PARCEL_NO_": "105601010200", "Tax_Legal_": "146-93 ANNAS RETREAT NEW QTR", "Name": "NISBETT, RUDOLPH", "Address": "PO Box 7744", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17300, "Improved_V": 167800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.190935657599994, "SHAPE_Area": 443.33398180699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362332.32660000026226, 257372.077799998223782 ], [ 362345.487000003457069, 257376.64750000089407 ], [ 362356.806000001728535, 257373.151500001549721 ], [ 362358.39360000193119, 257372.386199999600649 ], [ 362354.742299996316433, 257366.512499999254942 ], [ 362352.202299997210503, 257361.035599999129772 ], [ 362349.344800002872944, 257356.03489999845624 ], [ 362348.789200000464916, 257353.971200000494719 ], [ 362346.884199999272823, 257352.780600000172853 ], [ 362343.947300001978874, 257351.431200001388788 ], [ 362341.804200001060963, 257351.113699998706579 ], [ 362336.168499998748302, 257350.002399999648333 ], [ 362336.0253000035882, 257351.44990000128746 ], [ 362332.32660000026226, 257372.077799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602034200", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-365", "ACRE": "0.14", "LONGITUDE": -64.88796415, "LATITUDE": 18.34539427, "OBJECTID_1": 21140, "PARCEL_NO_": "105602034200", "Tax_Legal_": "394-365 ANNAS RETREAT NEW QTR", "Name": "TODMAN, JONATHAN & CLARIS", "Address": "PO Box 11532", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 85000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.275146873, "SHAPE_Area": 573.08696212999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363357.626800000667572, 257359.388999998569489 ], [ 363345.602200001478195, 257351.05799999833107 ], [ 363337.575099997222424, 257346.770399998873472 ], [ 363321.155699998140335, 257381.044300001114607 ], [ 363325.962999999523163, 257384.672200001776218 ], [ 363357.626800000667572, 257359.388999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601021900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-108", "ACRE": ".183", "LONGITUDE": -64.8968502, "LATITUDE": 18.34539726, "OBJECTID_1": 20553, "PARCEL_NO_": "105601021900", "Tax_Legal_": "146-108 ANNAS RETREAT NEW QTR", "Name": "NATHANIEL, GERDA", "Address": "PO Box 10717", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.193656402, "SHAPE_Area": 740.86541979599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362400.627400003373623, 257340.579599998891354 ], [ 362397.405699998140335, 257340.131000000983477 ], [ 362390.926500000059605, 257343.45549999922514 ], [ 362382.840000003576279, 257346.133499998599291 ], [ 362386.987199999392033, 257364.781899999827147 ], [ 362389.11599999666214, 257366.660999998450279 ], [ 362401.930699996650219, 257376.898299999535084 ], [ 362417.405299998819828, 257358.870900001376867 ], [ 362410.206000000238419, 257352.057000000029802 ], [ 362403.033699996769428, 257342.076900001615286 ], [ 362400.627400003373623, 257340.579599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601021800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-107", "ACRE": ".127", "LONGITUDE": -64.89709346, "LATITUDE": 18.34543078, "OBJECTID_1": 20552, "PARCEL_NO_": "105601021800", "Tax_Legal_": "146-107 ANNAS RETREAT 1 NEW QTR", "Name": "HANSEN, AUDREY L", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.371834898900005, "SHAPE_Area": 592.81519779799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362386.987199999392033, 257364.781899999827147 ], [ 362382.840000003576279, 257346.133499998599291 ], [ 362373.140799999237061, 257348.798300001770258 ], [ 362362.648000001907349, 257349.978999998420477 ], [ 362360.214699998497963, 257351.647900000214577 ], [ 362358.576899997889996, 257354.589800000190735 ], [ 362359.336400002241135, 257360.084399998188019 ], [ 362360.927500002086163, 257362.63060000166297 ], [ 362364.10419999808073, 257368.356100000441074 ], [ 362369.681800000369549, 257376.212200000882149 ], [ 362372.070900000631809, 257379.220100000500679 ], [ 362380.847800001502037, 257370.724500000476837 ], [ 362386.987199999392033, 257364.781899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601014500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-94", "ACRE": ".118", "LONGITUDE": -64.89756547, "LATITUDE": 18.34541628, "OBJECTID_1": 20482, "PARCEL_NO_": "105601014500", "Tax_Legal_": "ANNAS RETREAT 146-94 NEW QTR", "Name": "DENNIS, HUGO & OPHELIA", "Address": "146-94 EST TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 59000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.636360535500003, "SHAPE_Area": 495.31195026 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362308.845100000500679, 257366.035799998790026 ], [ 362332.32660000026226, 257372.077799998223782 ], [ 362336.0253000035882, 257351.44990000128746 ], [ 362336.168499998748302, 257350.002399999648333 ], [ 362331.167900003492832, 257348.732400000095367 ], [ 362322.198499999940395, 257347.303700000047684 ], [ 362315.10249999910593, 257346.423500001430511 ], [ 362308.845100000500679, 257366.035799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602085300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89104453, "LATITUDE": 18.34541575, "OBJECTID_1": 21420, "PARCEL_NO_": "105602085300", "Tax_Legal_": "215-255&215-315 ANNAS RETREAT", "Name": "HERBERT, CECIL & NAOMI", "Address": "PO Box 8856", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 126700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.352066772800001, "SHAPE_Area": 515.64323634699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363028.563199996948242, 257367.03940000012517 ], [ 363012.605999998748302, 257347.065999999642372 ], [ 363006.904200002551079, 257353.774300001561642 ], [ 362997.939499996602535, 257364.888900000602007 ], [ 363009.096600003540516, 257380.390000000596046 ], [ 363028.563199996948242, 257367.03940000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601023500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-120", "ACRE": ".129", "LONGITUDE": -64.89495589000001, "LATITUDE": 18.34537179, "OBJECTID_1": 20568, "PARCEL_NO_": "105601023500", "Tax_Legal_": "146-120 ANNAS RETREAT 1 NEW QTR", "Name": "WILKINS, BERNICE", "Address": "46120 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 185600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.48167301300001, "SHAPE_Area": 719.04124473299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362604.678400002419949, 257335.916799999773502 ], [ 362586.041500002145767, 257346.530099999159575 ], [ 362587.598399996757507, 257353.08669999986887 ], [ 362587.404200002551079, 257375.883200000971556 ], [ 362597.117700003087521, 257371.529800001531839 ], [ 362615.73480000346899, 257363.238400001078844 ], [ 362604.678400002419949, 257335.916799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502012300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-30", "ACRE": "0.21", "LONGITUDE": -64.90095764, "LATITUDE": 18.34528041, "OBJECTID_1": 19822, "PARCEL_NO_": "105502012300", "Tax_Legal_": "146-30 ANNAS RETREAT 1 NEW QTR", "Name": "HANSEN, DORIS", "Address": "PO Box 11441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28800, "Improved_V": 160300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.36890223399999, "SHAPE_Area": 1035.4073492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361979.82940000295639, 257325.7364999987185 ], [ 361979.843000002205372, 257324.144499998539686 ], [ 361941.450800001621246, 257333.231300000101328 ], [ 361943.846500001847744, 257346.518300000578165 ], [ 361964.310199998319149, 257361.084399998188019 ], [ 361976.167000003159046, 257349.401999998837709 ], [ 361991.45099999755621, 257336.535799998790026 ], [ 361983.015100002288818, 257330.406599998474121 ], [ 361979.82940000295639, 257325.7364999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502012700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-34", "ACRE": ".120", "LONGITUDE": -64.90004078, "LATITUDE": 18.34537303, "OBJECTID_1": 19826, "PARCEL_NO_": "105502012700", "Tax_Legal_": "146-34 ANNAS RETREAT 1 NEW QTR", "Name": "MORRIS, HERBERT, MARY, PAULETT", "Address": "PO Box 305314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 120100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.237743374900006, "SHAPE_Area": 432.32699461300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362074.677699998021126, 257358.963199999183416 ], [ 362067.618500001728535, 257338.065099999308586 ], [ 362049.012199997901917, 257345.089999999850988 ], [ 362055.049099996685982, 257364.960200000554323 ], [ 362074.677699998021126, 257358.963199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601014800", "MAP": "D9-627-T67", "PARCEL_NAM": "157", "ACRE": "0.14", "LONGITUDE": -64.89916933000001, "LATITUDE": 18.34541755, "OBJECTID_1": 20485, "PARCEL_NO_": "105601014800", "Tax_Legal_": "157 ANNAS RETREAT NEW QTR", "Name": "HAMM, SINCLAIR", "Address": "PO Box 11584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 132200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.0020885542, "SHAPE_Area": 445.13557321500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362166.566600002348423, 257365.683899998664856 ], [ 362161.089599996805191, 257346.00730000063777 ], [ 362139.66330000013113, 257348.027100000530481 ], [ 362138.929700002074242, 257347.965599998831749 ], [ 362140.879699997603893, 257351.963599998503923 ], [ 362150.390000000596046, 257371.462099999189377 ], [ 362166.566600002348423, 257365.683899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602034400", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-366", "ACRE": "0.14", "LONGITUDE": -64.88811043, "LATITUDE": 18.34533183, "OBJECTID_1": 21142, "PARCEL_NO_": "105602034400", "Tax_Legal_": "394-366 ANNAS RETREAT NEW QTR", "Name": "JACKSON, BERNICE", "Address": "PO Box 303626", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 104500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.665999652, "SHAPE_Area": 621.17289185499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363337.575099997222424, 257346.770399998873472 ], [ 363323.122599996626377, 257339.474899999797344 ], [ 363317.492799997329712, 257337.740100000053644 ], [ 363311.54110000282526, 257373.788400001823902 ], [ 363321.155699998140335, 257381.044300001114607 ], [ 363337.575099997222424, 257346.770399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602084000", "MAP": "C9-272-T81", "PARCEL_NAM": "215-244", "ACRE": ".138", "LONGITUDE": -64.88918341, "LATITUDE": 18.34536349, "OBJECTID_1": 21409, "PARCEL_NO_": "105602084000", "Tax_Legal_": "ANNAS RETREAT 215-244 NEW QTR.", "Name": "HARVEY, JOSEPH & CECILY", "Address": "215-244 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 176200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.224312739, "SHAPE_Area": 694.785270674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363224.642800003290176, 257351.5456000007689 ], [ 363211.831699997186661, 257340.886100001633167 ], [ 363190.648199997842312, 257366.466099999845028 ], [ 363206.661100000143051, 257379.896099999547005 ], [ 363227.8445999994874, 257354.315999999642372 ], [ 363224.642800003290176, 257351.5456000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602086100", "MAP": "C9-272-T81", "PARCEL_NAM": "215-258", "ACRE": ".141", "LONGITUDE": -64.89038025000001, "LATITUDE": 18.34536397, "OBJECTID_1": 21428, "PARCEL_NO_": "105602086100", "Tax_Legal_": "215-258 ANNAS RETREAT NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.056097541, "SHAPE_Area": 627.38531801399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363092.985500000417233, 257377.276900000870228 ], [ 363090.87219999730587, 257341.373700000345707 ], [ 363077.137900002300739, 257344.427700001746416 ], [ 363068.234300002455711, 257348.365600001066923 ], [ 363080.073700003325939, 257378.437800001353025 ], [ 363087.337700001895428, 257377.652899999171495 ], [ 363092.985500000417233, 257377.276900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013200", "MAP": "D9-2923-T85", "PARCEL_NAM": "18-B", "ACRE": ".753", "LONGITUDE": -64.88118686, "LATITUDE": 18.34526437, "OBJECTID_1": 21865, "PARCEL_NO_": "105701013200", "Tax_Legal_": "18-B ANNAS RETREAT NO.1 NEW QUARTER", "Name": "VALLEY VIEW PROPERTIES, INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 215100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.54559064099999, "SHAPE_Area": 3137.1317626499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364019.192199997603893, 257337.83729999884963 ], [ 364027.308799996972084, 257376.191799998283386 ], [ 364027.567199997603893, 257379.809300001710653 ], [ 364089.576899997889996, 257386.700100000947714 ], [ 364079.425700001418591, 257347.775800000876188 ], [ 364073.196400001645088, 257321.760299999266863 ], [ 364019.192199997603893, 257337.83729999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602086200", "MAP": "C9-272-T81", "PARCEL_NAM": "215-259", "ACRE": ".138", "LONGITUDE": -64.89020816, "LATITUDE": 18.34535961, "OBJECTID_1": 21429, "PARCEL_NO_": "105602086200", "Tax_Legal_": "ANNAS RETREAT 215-259 NEW QTR.", "Name": "LIMA, JOSE & HODGE, JULIO", "Address": "PO Box 11512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.14929253, "SHAPE_Area": 643.298076337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363110.733300000429153, 257376.366700001060963 ], [ 363109.417400002479553, 257341.525499999523163 ], [ 363090.87219999730587, 257341.373700000345707 ], [ 363092.985500000417233, 257377.276900000870228 ], [ 363105.085500001907349, 257376.74269999936223 ], [ 363110.733300000429153, 257376.366700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601026900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-128", "ACRE": ".115", "LONGITUDE": -64.8962409, "LATITUDE": 18.34541775, "OBJECTID_1": 20598, "PARCEL_NO_": "105601026900", "Tax_Legal_": "ANNAS RETREAT 146-128 No.1 NEW QTR.", "Name": "NICHOLLS, ELAINE", "Address": "146-128 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 129800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.8253080713, "SHAPE_Area": 443.39000743600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362464.259499996900558, 257348.910799998790026 ], [ 362455.404500000178814, 257347.149599999189377 ], [ 362451.194899998605251, 257368.013399999588728 ], [ 362461.653599999845028, 257370.843199998140335 ], [ 362473.73929999768734, 257371.997600000351667 ], [ 362473.116400003433228, 257350.460999999195337 ], [ 362464.259499996900558, 257348.910799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601026700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-127", "ACRE": ".117", "LONGITUDE": -64.89604445000001, "LATITUDE": 18.3454196, "OBJECTID_1": 20596, "PARCEL_NO_": "105601026700", "Tax_Legal_": "146-127 ANNAS RETREAT 1 NEW QTR", "Name": "LIONEL S GEORGE & CARMEN C GEORGE (LIFE ESTATE)", "Address": "146-127 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.227548714500003, "SHAPE_Area": 471.21738934500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362497.14750000089407, 257369.233899999409914 ], [ 362491.686700001358986, 257347.657699998468161 ], [ 362489.264200001955032, 257348.059999998658895 ], [ 362473.116400003433228, 257350.460999999195337 ], [ 362473.73929999768734, 257371.997600000351667 ], [ 362482.610500000417233, 257371.859099999070168 ], [ 362497.14750000089407, 257369.233899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601014400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-95", "ACRE": ".121", "LONGITUDE": -64.89778041, "LATITUDE": 18.34536678, "OBJECTID_1": 20481, "PARCEL_NO_": "105601014400", "Tax_Legal_": "146-95 ANNAS RETREAT NEW QTR", "Name": "HENDRICKS, VIDA & SHAWN E.", "Address": "46095 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17300, "Improved_V": 98600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.166512983499999, "SHAPE_Area": 545.485388038 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362288.64580000191927, 257364.954599998891354 ], [ 362297.934900000691414, 257365.720300000160933 ], [ 362308.845100000500679, 257366.035799998790026 ], [ 362315.10249999910593, 257346.423500001430511 ], [ 362291.798600003123283, 257336.944600000977516 ], [ 362288.64580000191927, 257364.954599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602086300", "MAP": "C9-272-T81", "PARCEL_NAM": "215-260", "ACRE": ".138", "LONGITUDE": -64.89003641, "LATITUDE": 18.34535584, "OBJECTID_1": 21430, "PARCEL_NO_": "105602086300", "Tax_Legal_": "ANNAS RETREAT 215-260 NEW QTR.", "Name": "PASCAL, WENDY", "Address": "9160 Est. Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023641, "Country": "United States", "Land_Value": 19200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.05650203499999, "SHAPE_Area": 623.21510517800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363129.289300002157688, 257375.252000000327826 ], [ 363127.158100001513958, 257341.459600001573563 ], [ 363109.417400002479553, 257341.525499999523163 ], [ 363110.733300000429153, 257376.366700001060963 ], [ 363125.255900003015995, 257375.430100001394749 ], [ 363129.289300002157688, 257375.252000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602017200", "MAP": "B9-406-T73", "PARCEL_NAM": "388-C", "ACRE": "2.825", "LONGITUDE": -64.88404826, "LATITUDE": 18.34502431, "OBJECTID_1": 20987, "PARCEL_NO_": "105602017200", "Tax_Legal_": "388 EST ANNAS RETREAT NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 840700, "Improved_V": 700100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 394.86307365, "SHAPE_Area": 8872.5714295800008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363782.739699997007847, 257246.344700001180172 ], [ 363693.191200003027916, 257345.881299998611212 ], [ 363683.260099999606609, 257375.775299999862909 ], [ 363692.928700000047684, 257376.698800001293421 ], [ 363708.216300003230572, 257380.623599998652935 ], [ 363725.145199999213219, 257381.184300001710653 ], [ 363754.201200000941753, 257378.044599998742342 ], [ 363761.474200002849102, 257376.204300001263618 ], [ 363768.759800001978874, 257372.886399999260902 ], [ 363776.876900002360344, 257366.620099999010563 ], [ 363798.092799998819828, 257337.240600001066923 ], [ 363799.779100000858307, 257328.599599998444319 ], [ 363798.628600001335144, 257274.339099999517202 ], [ 363797.854699999094009, 257270.533100001513958 ], [ 363793.115699999034405, 257258.884199999272823 ], [ 363782.739699997007847, 257246.344700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702041200", "MAP": "F9-2509-T69", "PARCEL_NAM": "56B-E", "ACRE": "0.20", "LONGITUDE": -64.87309916, "LATITUDE": 18.34524834, "OBJECTID_1": 22577, "PARCEL_NO_": "105702041200", "Tax_Legal_": "SMITH BAY 56BC EAST END QTR", "Name": "RICHARDSON, G & R. C/O", "Address": "PO Box 11231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34500, "Improved_V": 122400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.61225442099999, "SHAPE_Area": 1310.7697028699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364891.497400000691414, 257340.912300001829863 ], [ 364902.363200001418591, 257390.608199998736382 ], [ 364929.056100003421307, 257380.905299998819828 ], [ 364925.126999996602535, 257368.840799998492002 ], [ 364919.628499999642372, 257351.697200000286102 ], [ 364914.144299998879433, 257332.864999998360872 ], [ 364891.497400000691414, 257340.912300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602086400", "MAP": "C9-272-T81", "PARCEL_NAM": "215-261", "ACRE": ".138", "LONGITUDE": -64.88985187, "LATITUDE": 18.34533632, "OBJECTID_1": 21431, "PARCEL_NO_": "105602086400", "Tax_Legal_": "215-261 ANNAS RETREAT NEW QTR.", "Name": "ROGERS, CYNTHIA (LIFE ESTATE)", "Address": "Po Box 1145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24600, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.512566724, "SHAPE_Area": 693.16917056900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363129.289300002157688, 257375.252000000327826 ], [ 363144.619999997317791, 257374.111000001430511 ], [ 363146.250600002706051, 257372.013399999588728 ], [ 363152.150200001895428, 257342.086399998515844 ], [ 363147.321299999952316, 257340.991399999707937 ], [ 363127.158100001513958, 257341.459600001573563 ], [ 363129.289300002157688, 257375.252000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602035600", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-369", "ACRE": "0.25", "LONGITUDE": -64.88870032, "LATITUDE": 18.34527844, "OBJECTID_1": 21154, "PARCEL_NO_": "105602035600", "Tax_Legal_": "394-369 ANNAS RETREAT NEW QTR", "Name": "THOMAS, L. & HODGE, J", "Address": "PO Box 7082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34200, "Improved_V": 182200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.576012276, "SHAPE_Area": 1187.2841414300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363269.596699997782707, 257375.344900000840425 ], [ 363276.42119999974966, 257331.493299998342991 ], [ 363250.667700000107288, 257325.583000000566244 ], [ 363245.450400002300739, 257370.0810999982059 ], [ 363250.254199996590614, 257374.131099998950958 ], [ 363263.941699996590614, 257376.565200001001358 ], [ 363269.596699997782707, 257375.344900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601014300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-96", "ACRE": ".151", "LONGITUDE": -64.89800013, "LATITUDE": 18.34538898, "OBJECTID_1": 20480, "PARCEL_NO_": "105601014300", "Tax_Legal_": "146-96 ANNAS RETREAT No.1 NEW QTR", "Name": "Robles, B, Hodge, M, Michel-Robles, G & Others", "Address": "46096 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 103000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.10010375500001, "SHAPE_Area": 501.41519035900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362288.64580000191927, 257364.954599998891354 ], [ 362291.798600003123283, 257336.944600000977516 ], [ 362286.174199998378754, 257334.57660000026226 ], [ 362286.86540000140667, 257348.092199999839067 ], [ 362274.770700000226498, 257347.993200000375509 ], [ 362256.941899999976158, 257358.401999998837709 ], [ 362259.21509999781847, 257364.041499998420477 ], [ 362281.020000003278255, 257365.089200001209974 ], [ 362288.64580000191927, 257364.954599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601026500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-126", "ACRE": ".134", "LONGITUDE": -64.89583985, "LATITUDE": 18.34535496, "OBJECTID_1": 20594, "PARCEL_NO_": "105601026500", "Tax_Legal_": "146-126 ANNAS RETREAT NEW QTR", "Name": "BROOKS, CEDRIC L. & CANTON, KEIYA", "Address": "14-125 Annas Retreat", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.192351115999998, "SHAPE_Area": 573.77049923699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362522.245700001716614, 257357.407000001519918 ], [ 362509.519100002944469, 257336.826699998229742 ], [ 362491.686700001358986, 257347.657699998468161 ], [ 362497.14750000089407, 257369.233899999409914 ], [ 362512.517800003290176, 257363.449099998921156 ], [ 362522.245700001716614, 257357.407000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602034900", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-368", "ACRE": "0.22", "LONGITUDE": -64.88848091, "LATITUDE": 18.3452905, "OBJECTID_1": 21147, "PARCEL_NO_": "105602034900", "Tax_Legal_": "394-368 ANNAS RETREAT NEW QTR", "Name": "THE LAURIEL A JOHN LIVING TRUST", "Address": "PO Box 7644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 119200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.802114495, "SHAPE_Area": 871.80103107100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363297.367299996316433, 257333.775699999183416 ], [ 363276.42119999974966, 257331.493299998342991 ], [ 363269.596699997782707, 257375.344900000840425 ], [ 363284.137299999594688, 257372.297499999403954 ], [ 363292.214800000190735, 257370.674899999052286 ], [ 363297.367299996316433, 257333.775699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601014900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-59", "ACRE": ".126", "LONGITUDE": -64.89896441, "LATITUDE": 18.3453668, "OBJECTID_1": 20486, "PARCEL_NO_": "105601014900", "Tax_Legal_": "146-59 ANNAS RETREAT NEW QTR", "Name": "JEFFERS, WENDELL A. & LORENZA", "Address": "46059 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 193900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.114296922700007, "SHAPE_Area": 489.26334694799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362190.83330000191927, 257356.805500000715256 ], [ 362183.72749999910593, 257339.015399999916553 ], [ 362161.089599996805191, 257346.00730000063777 ], [ 362166.566600002348423, 257365.683899998664856 ], [ 362190.83330000191927, 257356.805500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601027000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-129", "ACRE": ".114", "LONGITUDE": -64.89643791, "LATITUDE": 18.34535702, "OBJECTID_1": 20599, "PARCEL_NO_": "105601027000", "Tax_Legal_": "146-129 ANNAS RETREAT 1 NEW QTR", "Name": "SACKEY, WINIFRED N", "Address": "733 Brisbane St NE", "City": "Palm Bay", "State": "Florida", "Zip": 32907, "Country": "United States", "Land_Value": 15100, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.989909998599998, "SHAPE_Area": 486.53707084199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362455.404500000178814, 257347.149599999189377 ], [ 362440.948399998247623, 257340.276299998164177 ], [ 362439.351999998092651, 257338.363400001078844 ], [ 362426.3125, 257354.510899998247623 ], [ 362436.733400002121925, 257361.773299999535084 ], [ 362451.194899998605251, 257368.013399999588728 ], [ 362455.404500000178814, 257347.149599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601058500", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-97", "ACRE": ".14", "LONGITUDE": -64.89391896, "LATITUDE": 18.34534908, "OBJECTID_1": 20828, "PARCEL_NO_": "105601058500", "Tax_Legal_": "404-97 ANNAS RETREAT NO.1 NEW QTR.", "Name": "TAYLOR, ETHLEEN", "Address": "PO Box 11501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 8600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.952471653, "SHAPE_Area": 571.556492961 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362727.086800001561642, 257354.650499999523163 ], [ 362697.38629999756813, 257338.786499999463558 ], [ 362690.799199998378754, 257354.775699999183416 ], [ 362719.696999996900558, 257370.210999999195337 ], [ 362727.086800001561642, 257354.650499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701050300", "MAP": "F9-235-T57", "PARCEL_NAM": "22", "ACRE": "0.20", "LONGITUDE": -64.87491818, "LATITUDE": 18.34528284, "OBJECTID_1": 22105, "PARCEL_NO_": "105701050300", "Tax_Legal_": "SMITH BAY 22 EAST END QUARTER", "Name": "WILLIAMS FAMILY REVOCABLE TRUST", "Address": "PO Box 304563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.357328499, "SHAPE_Area": 1275.18292744 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364707.627599999308586, 257342.995999999344349 ], [ 364702.947899997234344, 257342.682399999350309 ], [ 364702.738399997353554, 257346.945500001311302 ], [ 364702.327799998223782, 257355.303300000727177 ], [ 364701.692800000309944, 257363.135000001639128 ], [ 364700.848399996757507, 257383.344300001859665 ], [ 364704.858000002801418, 257384.136500000953674 ], [ 364716.940099999308586, 257385.713100001215935 ], [ 364723.388800002634525, 257385.977000001817942 ], [ 364730.64019999653101, 257386.669599998742342 ], [ 364733.425999999046326, 257343.629299998283386 ], [ 364707.627599999308586, 257342.995999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701050400", "MAP": "G9-1476-T70", "PARCEL_NAM": "23", "ACRE": "0.26", "LONGITUDE": -64.87458992000001, "LATITUDE": 18.34528973, "OBJECTID_1": 22106, "PARCEL_NO_": "105701050400", "Tax_Legal_": "SMITH BAY 23 EAST END QTR", "Name": "LUDVIG, ANN LOUISE", "Address": "P.O. BOX 2911", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30900, "Improved_V": 171200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.18604095200001, "SHAPE_Area": 1657.2248849699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364730.64019999653101, 257386.669599998742342 ], [ 364750.801700003445148, 257386.412399999797344 ], [ 364762.104400001466274, 257384.816199999302626 ], [ 364771.807099997997284, 257381.729200001806021 ], [ 364773.482699997723103, 257374.354600001126528 ], [ 364772.715899996459484, 257369.704300001263618 ], [ 364772.116400003433228, 257345.423599999397993 ], [ 364733.425999999046326, 257343.629299998283386 ], [ 364730.64019999653101, 257386.669599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601014200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-98", "ACRE": ".130", "LONGITUDE": -64.89831142, "LATITUDE": 18.34537023, "OBJECTID_1": 20479, "PARCEL_NO_": "105601014200", "Tax_Legal_": "ANNAS RETREAT 146-98 NEW QTR", "Name": "JUDITH GEORGE", "Address": "146-98 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 99800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.148454490500001, "SHAPE_Area": 479.06858517400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362236.148500002920628, 257364.024999998509884 ], [ 362259.21509999781847, 257364.041499998420477 ], [ 362256.941899999976158, 257358.401999998837709 ], [ 362247.451399996876717, 257336.581700000911951 ], [ 362241.771200001239777, 257340.757100000977516 ], [ 362231.238799996674061, 257346.581500001251698 ], [ 362236.148500002920628, 257364.024999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013400", "MAP": "D9-1219-T74", "PARCEL_NAM": "3AA", "ACRE": ".30", "LONGITUDE": -64.88029997, "LATITUDE": 18.34507904, "OBJECTID_1": 21867, "PARCEL_NO_": "105701013400", "Tax_Legal_": "ANNAS RETREAT 3AA NEW QTR", "Name": "CROSSFIELD, CHRISTOPHER & HILARINE CHARLES", "Address": "PO Box 6142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49300, "Improved_V": 165300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.15556297399999, "SHAPE_Area": 1268.30290199 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364169.980800002813339, 257319.386100001633167 ], [ 364138.637100003659725, 257307.097199998795986 ], [ 364137.638400003314018, 257329.675999999046326 ], [ 364135.585199996829033, 257381.377199999988079 ], [ 364144.564400002360344, 257368.573899999260902 ], [ 364146.214800000190735, 257364.154500000178814 ], [ 364159.302799999713898, 257342.307900000363588 ], [ 364168.326800003647804, 257324.227699998766184 ], [ 364169.980800002813339, 257319.386100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601023400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-116", "ACRE": ".211", "LONGITUDE": -64.89529915, "LATITUDE": 18.34535166, "OBJECTID_1": 20567, "PARCEL_NO_": "105601023400", "Tax_Legal_": "146-116 ANNAS RETREAT 1 NEW QTR", "Name": "GUMBS, JULIAN J. & ILMA ST LOUIS GUMBS", "Address": "PO BOX 455", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 19900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.973998872, "SHAPE_Area": 856.65374316600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362578.601300001144409, 257368.000700000673532 ], [ 362578.709200002253056, 257355.335999999195337 ], [ 362577.152300000190735, 257348.77930000051856 ], [ 362572.393500000238419, 257339.452300000935793 ], [ 362567.595200002193451, 257334.768899999558926 ], [ 362562.753700003027916, 257335.151500001549721 ], [ 362542.446699999272823, 257352.506099998950958 ], [ 362548.807300001382828, 257363.112799998372793 ], [ 362555.216399997472763, 257368.020399998873472 ], [ 362578.601300001144409, 257368.000700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602088500", "MAP": "C9-239-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89124676, "LATITUDE": 18.34535375, "OBJECTID_1": 21452, "PARCEL_NO_": "105602088500", "Tax_Legal_": "215-34&POR 404 ANNAS RET NEW QTR.", "Name": "JONES, FRANKLIN", "Address": "215-34 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.904872558099996, "SHAPE_Area": 471.71715105099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363006.904200002551079, 257353.774300001561642 ], [ 362993.281400002539158, 257343.741399999707937 ], [ 362991.659800000488758, 257344.783599998801947 ], [ 362989.226499997079372, 257346.452399998903275 ], [ 362978.683300003409386, 257353.543299999088049 ], [ 362975.83049999922514, 257355.450599998235703 ], [ 362988.377099998295307, 257373.393199998885393 ], [ 362991.034999996423721, 257371.029399998486042 ], [ 362997.939499996602535, 257364.888900000602007 ], [ 363006.904200002551079, 257353.774300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88740815, "LATITUDE": 18.34531788, "OBJECTID_1": 21139, "PARCEL_NO_": "105602034100", "Tax_Legal_": "394-244 ANNAS RETREAT NEW QTR", "Name": "FRASER, JAMES A", "Address": "PO Box 8476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 131000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.14691684499999, "SHAPE_Area": 1254.7680441800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363424.516500003635883, 257363.947299998253584 ], [ 363412.660999998450279, 257335.77479999884963 ], [ 363368.956500001251698, 257354.626600001007318 ], [ 363376.042499996721745, 257374.738499999046326 ], [ 363408.357900001108646, 257367.614700000733137 ], [ 363424.516500003635883, 257363.947299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701050200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87520707, "LATITUDE": 18.34525737, "OBJECTID_1": 22104, "PARCEL_NO_": "105701050200", "Tax_Legal_": "SMITH BAY 37 EAST END QUARTER", "Name": "JOHNSON, IVAN JR. & INA", "Address": "PO Box 11952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 103000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.21447024, "SHAPE_Area": 745.89515246400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364697.521799996495247, 257343.570000000298023 ], [ 364677.811999998986721, 257340.640999998897314 ], [ 364675.877499997615814, 257378.410900000482798 ], [ 364695.228500001132488, 257382.234000001102686 ], [ 364695.766099996864796, 257366.627500001341105 ], [ 364696.295299999415874, 257360.912500001490116 ], [ 364696.506899997591972, 257355.938299998641014 ], [ 364697.521799996495247, 257343.570000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602017200", "MAP": "A9-211-T73", "PARCEL_NAM": "388-B", "ACRE": null, "LONGITUDE": -64.88648523000001, "LATITUDE": 18.34499447, "OBJECTID_1": 20987, "PARCEL_NO_": "105602017200", "Tax_Legal_": "388 EST ANNAS RETREAT NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 840700, "Improved_V": 700100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 362.30152919900002, "SHAPE_Area": 8815.3811762500009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363552.865900002419949, 257347.89919999986887 ], [ 363564.220799997448921, 257340.181600000709295 ], [ 363565.095399998128414, 257332.167199999094009 ], [ 363564.301700003445148, 257330.683100000023842 ], [ 363527.430699996650219, 257304.627900000661612 ], [ 363521.829700000584126, 257299.515799999237061 ], [ 363515.44030000269413, 257292.286299999803305 ], [ 363501.120899997651577, 257269.370999999344349 ], [ 363497.918999999761581, 257266.600600000470877 ], [ 363493.903599999845028, 257264.667899999767542 ], [ 363486.650399997830391, 257264.1864 ], [ 363464.026900000870228, 257269.489599999040365 ], [ 363456.7449000030756, 257272.385299999266863 ], [ 363450.262100003659725, 257276.131999999284744 ], [ 363443.766599997878075, 257281.356100000441074 ], [ 363438.881999999284744, 257286.80460000038147 ], [ 363438.057700000703335, 257288.9087999984622 ], [ 363438.747100003063679, 257302.635499998927116 ], [ 363441.871699996292591, 257314.482299998402596 ], [ 363446.60530000180006, 257326.764499999582767 ], [ 363462.506700001657009, 257353.281300000846386 ], [ 363470.490699999034405, 257362.634799998253584 ], [ 363477.700800001621246, 257368.182199999690056 ], [ 363484.927000001072884, 257371.829999998211861 ], [ 363494.57940000295639, 257374.653200000524521 ], [ 363503.441699996590614, 257375.570099998265505 ], [ 363511.510200001299381, 257375.00279999896884 ], [ 363518.781400002539158, 257373.373599998652935 ], [ 363526.06700000166893, 257370.055700000375509 ], [ 363531.743500001728535, 257366.302499998360872 ], [ 363539.880400002002716, 257357.714299999177456 ], [ 363552.865900002419949, 257347.89919999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502012800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-35", "ACRE": ".122", "LONGITUDE": -64.89984119, "LATITUDE": 18.34530301, "OBJECTID_1": 19827, "PARCEL_NO_": "105502012800", "Tax_Legal_": "ANNAS RETREAT 146-35 1 NEW QTR", "Name": "CORNEIRO, BARBARA", "Address": "PO Box 7584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 97500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.670869338299994, "SHAPE_Area": 566.90825812499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362097.102700002491474, 257352.111699998378754 ], [ 362091.883400000631809, 257329.397799998521805 ], [ 362087.846500001847744, 257329.998100001364946 ], [ 362067.618500001728535, 257338.065099999308586 ], [ 362074.677699998021126, 257358.963199999183416 ], [ 362097.064400002360344, 257352.123399998992682 ], [ 362097.102700002491474, 257352.111699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602034600", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-367", "ACRE": "0.17", "LONGITUDE": -64.8882815, "LATITUDE": 18.34529715, "OBJECTID_1": 21144, "PARCEL_NO_": "105602034600", "Tax_Legal_": "394-367 ANNAS RETREAT NEW QTR", "Name": "BRATHWAITE, HAROLD & LOIS", "Address": "P.O. BOX 4422", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26000, "Improved_V": 119300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.88138485899999, "SHAPE_Area": 738.78542013399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363317.492799997329712, 257337.740100000053644 ], [ 363297.367299996316433, 257333.775699999183416 ], [ 363292.214800000190735, 257370.674899999052286 ], [ 363303.488799996674061, 257372.455899998545647 ], [ 363311.54110000282526, 257373.788400001823902 ], [ 363317.492799997329712, 257337.740100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601055500", "MAP": "D9-1899-81", "PARCEL_NAM": "404-114", "ACRE": "0.18", "LONGITUDE": -64.89347894, "LATITUDE": 18.3453359, "OBJECTID_1": 20800, "PARCEL_NO_": "105601055500", "Tax_Legal_": "404-114 ANNA'S RETREAT NEW QTR.", "Name": "LAGUERRE, YVES MAX", "Address": "PO BOX 502041", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24700, "Improved_V": 142700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.634537478, "SHAPE_Area": 640.82957727999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362771.349500000476837, 257364.934200000017881 ], [ 362769.825000002980232, 257354.578099999576807 ], [ 362757.884900003671646, 257336.326400000602007 ], [ 362751.405699998140335, 257339.650800000876188 ], [ 362744.100299999117851, 257345.290600001811981 ], [ 362735.130199998617172, 257357.038400001823902 ], [ 362765.674699999392033, 257368.476300001144409 ], [ 362767.3125, 257365.534400001168251 ], [ 362771.349500000476837, 257364.934200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702042700", "MAP": "G9-1845-T71", "PARCEL_NAM": "57-118", "ACRE": ".775", "LONGITUDE": -64.87250836, "LATITUDE": 18.34504555, "OBJECTID_1": 22591, "PARCEL_NO_": "105702042700", "Tax_Legal_": "SMITH BAY 57-118 EAST END QTR", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 207500, "Improved_V": 76600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.125476316, "SHAPE_Area": 3325.0011457300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364959.46679999679327, 257313.393100000917912 ], [ 364934.449600003659725, 257315.721500001847744 ], [ 364937.602899998426437, 257324.190999999642372 ], [ 364943.909500002861023, 257341.130100000649691 ], [ 364950.218000002205372, 257357.858199998736382 ], [ 364960.462700001895428, 257385.806400001049042 ], [ 364997.025499999523163, 257353.386100001633167 ], [ 365010.824500001966953, 257342.733300000429153 ], [ 364994.975100003182888, 257310.095199998468161 ], [ 364959.46679999679327, 257313.393100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701015800", "MAP": "C9-260-T80", "PARCEL_NAM": "7-15", "ACRE": ".50", "LONGITUDE": -64.87926944, "LATITUDE": 18.34514261, "OBJECTID_1": 21887, "PARCEL_NO_": "105701015800", "Tax_Legal_": "7-15 TABOR&HARMONY EAST END QTR", "Name": "ELOI, PETER B. & KATHLEEN M.", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.977824736, "SHAPE_Area": 2237.80000152 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364292.418099999427795, 257334.742499999701977 ], [ 364263.622800000011921, 257307.275800000876188 ], [ 364257.049999997019768, 257321.576400000602007 ], [ 364250.541900001466274, 257328.278099998831749 ], [ 364240.801500000059605, 257335.797699999064207 ], [ 364229.387199997901917, 257350.480900000780821 ], [ 364222.072899997234344, 257357.175999999046326 ], [ 364246.879699997603893, 257379.543800000101328 ], [ 364292.418099999427795, 257334.742499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601054700", "MAP": "D9-1888-T81", "PARCEL_NAM": "215-306", "ACRE": "0.14", "LONGITUDE": -64.89209347000001, "LATITUDE": 18.34536721, "OBJECTID_1": 20792, "PARCEL_NO_": "105601054700", "Tax_Legal_": "215-306 EST. ANNA'S RETREAT NEW QTR.", "Name": "GREEN, GERALD & DANITA R. PENN-GREEN", "Address": "PO Box 301994", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.360977112, "SHAPE_Area": 483.30442766300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362915.00620000064373, 257350.489000000059605 ], [ 362885.982500001788139, 257349.829300001263618 ], [ 362888.250399999320507, 257367.579700000584126 ], [ 362918.919100001454353, 257364.453200001269579 ], [ 362917.380199998617172, 257355.785799998790026 ], [ 362915.00620000064373, 257350.489000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601063200", "MAP": "C9-239-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89167179, "LATITUDE": 18.34531904, "OBJECTID_1": 20867, "PARCEL_NO_": "105601063200", "Tax_Legal_": "404-31&POR 215 ANNAS RET NEW QTR.", "Name": "JULES, MARCIA & JOSEPH", "Address": "PO Box 7774", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 61400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.335009007500005, "SHAPE_Area": 582.87486196500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362964.142700001597404, 257356.590700000524521 ], [ 362949.781900003552437, 257338.530200000852346 ], [ 362927.930600002408028, 257347.850600000470877 ], [ 362943.079700000584126, 257368.028499998152256 ], [ 362948.734600000083447, 257366.808200001716614 ], [ 362964.142700001597404, 257356.590700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602035700", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-370", "ACRE": "0.20", "LONGITUDE": -64.88889886, "LATITUDE": 18.34521924, "OBJECTID_1": 21155, "PARCEL_NO_": "105602035700", "Tax_Legal_": "ANNAS RETREAT 394-370 NEW QTR", "Name": "ALLEN, DAISY", "Address": "394-370 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 229900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.284384976, "SHAPE_Area": 714.359174392 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363250.667700000107288, 257325.583000000566244 ], [ 363245.844200000166893, 257323.854800000786781 ], [ 363244.222599998116493, 257324.896999999880791 ], [ 363240.1875, 257325.286100000143051 ], [ 363236.978399999439716, 257323.359999999403954 ], [ 363224.642800003290176, 257351.5456000007689 ], [ 363227.8445999994874, 257354.315999999642372 ], [ 363240.648500002920628, 257365.819899998605251 ], [ 363245.450400002300739, 257370.0810999982059 ], [ 363250.667700000107288, 257325.583000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701016300", "MAP": "C9-260-T80", "PARCEL_NAM": "7-10", "ACRE": ".50", "LONGITUDE": -64.87988189, "LATITUDE": 18.34515811, "OBJECTID_1": 21892, "PARCEL_NO_": "105701016300", "Tax_Legal_": "TABOR & HARMONY 7-10 EAST END QTR.", "Name": "DIPNARINE, TRUSTEES, SONNY RAM & RITA", "Address": "7746 Est Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.43982521000001, "SHAPE_Area": 2601.6193611799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364231.923000000417233, 257336.780499998480082 ], [ 364185.36370000243187, 257312.123700000345707 ], [ 364177.1908999979496, 257324.933499999344349 ], [ 364156.695000000298023, 257364.451400000602007 ], [ 364197.714500002563, 257376.819400001317263 ], [ 364201.789200000464916, 257371.786499999463558 ], [ 364207.517899997532368, 257361.912000000476837 ], [ 364213.215999998152256, 257355.625799998641014 ], [ 364223.766400001943111, 257347.690600000321865 ], [ 364231.923000000417233, 257336.780499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601055400", "MAP": "D9-3705-T86", "PARCEL_NAM": "404-115", "ACRE": "0.14", "LONGITUDE": -64.89328987, "LATITUDE": 18.34527642, "OBJECTID_1": 20799, "PARCEL_NO_": "105601055400", "Tax_Legal_": "ANNAS RETREAT 404-115 NEW QTR.", "Name": "DAVIS, DENVOR J., JAMES, FRANKLYN & DIANNA V. CASTRO", "Address": "404-115 ESTATE ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 87500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.02465479200001, "SHAPE_Area": 625.08606384699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362787.493699997663498, 257362.955400001257658 ], [ 362783.7246999964118, 257332.104899998754263 ], [ 362770.012000001966953, 257332.625900000333786 ], [ 362757.884900003671646, 257336.326400000602007 ], [ 362769.825000002980232, 257354.578099999576807 ], [ 362771.349500000476837, 257364.934200000017881 ], [ 362774.578299999237061, 257364.538400001823902 ], [ 362787.493699997663498, 257362.955400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602070300", "MAP": "C9-221-T78", "PARCEL_NAM": "394-420", "ACRE": "0.56", "LONGITUDE": -64.88333133, "LATITUDE": 18.34519346, "OBJECTID_1": 21317, "PARCEL_NO_": "105602070300", "Tax_Legal_": "394-420 ANNAS RETREAT NEW QTR", "Name": "FRANCIS, NEWMAN B. & NAOMI M. (CO-TRUSTEES)", "Address": "PO Box 11865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63900, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.03666408000001, "SHAPE_Area": 2804.76216359 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363848.584799997508526, 257373.539799999445677 ], [ 363856.905000001192093, 257343.421500001102686 ], [ 363857.846199996769428, 257327.597199998795986 ], [ 363855.495600000023842, 257319.556400001049042 ], [ 363809.535800002515316, 257319.18019999936223 ], [ 363808.635999999940395, 257330.149700000882149 ], [ 363806.121699996292591, 257341.317099999636412 ], [ 363786.532899998128414, 257369.021099999547005 ], [ 363848.584799997508526, 257373.539799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105701030500", "MAP": "D9-4840-T89", "PARCEL_NAM": "14-2", "ACRE": ".2296", "LONGITUDE": -64.8770327, "LATITUDE": 18.34516191, "OBJECTID_1": 21952, "PARCEL_NO_": "105701030500", "Tax_Legal_": "14-2 EST FRYDENDAHL EAST END QTR", "Name": "CASSI LAND CO LLC", "Address": "6812 Est Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60100, "Improved_V": 361200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.24153333000001, "SHAPE_Area": 1452.37535538 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364511.44539999961853, 257346.983199998736382 ], [ 364518.617399998009205, 257332.622900001704693 ], [ 364516.278800003230572, 257330.96169999986887 ], [ 364506.979000002145767, 257324.347600001841784 ], [ 364504.713500000536442, 257322.734600000083447 ], [ 364502.776500001549721, 257324.963500000536442 ], [ 364498.093199998140335, 257330.35249999910593 ], [ 364494.612000003457069, 257327.607700001448393 ], [ 364492.589800000190735, 257326.013300001621246 ], [ 364480.418999999761581, 257340.247900001704693 ], [ 364479.598800003528595, 257339.586500000208616 ], [ 364466.401699997484684, 257357.27589999884367 ], [ 364493.131099998950958, 257375.459699999541044 ], [ 364496.185599997639656, 257377.537599999457598 ], [ 364511.44539999961853, 257346.983199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602084100", "MAP": "C9-272-T81", "PARCEL_NAM": "215-245", "ACRE": ".138", "LONGITUDE": -64.88932499000001, "LATITUDE": 18.34525156, "OBJECTID_1": 21410, "PARCEL_NO_": "105602084100", "Tax_Legal_": "215-245 ANNA'S RETREAT NEW QTR.", "Name": "HAYNES, MARILYN A. & HARRIET K", "Address": "PO Box 9994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 183000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.68037286000001, "SHAPE_Area": 591.38494454600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363211.831699997186661, 257340.886100001633167 ], [ 363198.219700001180172, 257329.58669999986887 ], [ 363177.045199997723103, 257354.111400000751019 ], [ 363190.648199997842312, 257366.466099999845028 ], [ 363211.831699997186661, 257340.886100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601055300", "MAP": "D9-3705-T86", "PARCEL_NAM": "404-118", "ACRE": "0.14", "LONGITUDE": -64.89309673, "LATITUDE": 18.34527766, "OBJECTID_1": 20798, "PARCEL_NO_": "105601055300", "Tax_Legal_": "ANNAS RETREAT 404-118 NEW QTR.", "Name": "RHYMER, IVAN C.,IVAN R.,REBA Y.,REA L.& BREWSTER, SHERRILL", "Address": "404118 Anna's Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 80100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.44551645, "SHAPE_Area": 610.62129464899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362810.09570000320673, 257360.185100000351667 ], [ 362801.468999996781349, 257331.616799999028444 ], [ 362783.7246999964118, 257332.104899998754263 ], [ 362787.493699997663498, 257362.955400001257658 ], [ 362794.757700003683567, 257362.170499999076128 ], [ 362810.09570000320673, 257360.185100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701050100", "MAP": "D9-263-T60", "PARCEL_NAM": "38", "ACRE": "0.27", "LONGITUDE": -64.87552469000001, "LATITUDE": 18.3452086, "OBJECTID_1": 22103, "PARCEL_NO_": "105701050100", "Tax_Legal_": "SMITH BAY 38 EAST END QUARTER", "Name": "PACQUETTE, CLARRODA", "Address": "PO Box 305494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30900, "Improved_V": 191700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.878073992, "SHAPE_Area": 1654.4142076000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364677.811999998986721, 257340.640999998897314 ], [ 364628.653899997472763, 257337.072299998253584 ], [ 364626.085799999535084, 257354.572000000625849 ], [ 364624.392200000584126, 257364.057399999350309 ], [ 364675.877499997615814, 257378.410900000482798 ], [ 364677.811999998986721, 257340.640999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601010100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-97", "ACRE": ".164", "LONGITUDE": -64.89809924, "LATITUDE": 18.34526083, "OBJECTID_1": 20438, "PARCEL_NO_": "105601010100", "Tax_Legal_": "146-97 ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "PRT ENTERPRISES INC", "Address": "PO Box 11848", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.09100891200001, "SHAPE_Area": 748.82709991599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362286.174199998378754, 257334.57660000026226 ], [ 362274.122599996626377, 257329.411699999123812 ], [ 362267.682899996638298, 257328.092399999499321 ], [ 362259.608999997377396, 257329.292899999767542 ], [ 362247.451399996876717, 257336.581700000911951 ], [ 362256.941899999976158, 257358.401999998837709 ], [ 362274.770700000226498, 257347.993200000375509 ], [ 362286.86540000140667, 257348.092199999839067 ], [ 362286.174199998378754, 257334.57660000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502013100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-36", "ACRE": ".120", "LONGITUDE": -64.89963401, "LATITUDE": 18.34524587, "OBJECTID_1": 19830, "PARCEL_NO_": "105502013100", "Tax_Legal_": "ANNAS RETREAT 146-36 No.1 NEW QTR.", "Name": "HODGE, COURY C.", "Address": "PO Box 11721", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 120300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.694628753100005, "SHAPE_Area": 477.99101918100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362116.755599997937679, 257346.107200000435114 ], [ 362114.496100001037121, 257325.361000001430511 ], [ 362091.883400000631809, 257329.397799998521805 ], [ 362097.102700002491474, 257352.111699998378754 ], [ 362116.755599997937679, 257346.107200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90526564, "LATITUDE": 18.34486558, "OBJECTID_1": 19866, "PARCEL_NO_": "105502022000", "Tax_Legal_": "WINTBERG ESTATE 1-NB 3 GR NORTHSIDE QTR", "Name": "GEORGE, ESTLYN O'CONNOR", "Address": "PO Box 10903", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 114500, "Improved_V": 269100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.530215543, "SHAPE_Area": 2895.8262178800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361527.374799996614456, 257335.332299999892712 ], [ 361528.209200002253056, 257237.391699999570847 ], [ 361481.052799999713898, 257282.813000001013279 ], [ 361480.041500002145767, 257306.86939999833703 ], [ 361487.294699996709824, 257307.350999999791384 ], [ 361495.332699999213219, 257310.372099999338388 ], [ 361504.929300002753735, 257319.738699998706579 ], [ 361511.324100002646446, 257326.33500000089407 ], [ 361520.0945999994874, 257338.0168999992311 ], [ 361525.623700000345707, 257351.57209999859333 ], [ 361527.374799996614456, 257335.332299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701014900", "MAP": "C9-221-T78", "PARCEL_NAM": "394-415", "ACRE": "0.58", "LONGITUDE": -64.88273832, "LATITUDE": 18.34508938, "OBJECTID_1": 21881, "PARCEL_NO_": "105701014900", "Tax_Legal_": "ANNAS RETREAT 394-415 NEW QTR", "Name": "PEMBERTON, ERMA L", "Address": "PO Box 7291", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73100, "Improved_V": 27200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.25667770699999, "SHAPE_Area": 2066.9982419900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363906.289700001478195, 257320.394299998879433 ], [ 363860.471900001168251, 257303.3429000005126 ], [ 363865.923699997365475, 257325.974500000476837 ], [ 363865.804999999701977, 257339.905699998140335 ], [ 363912.308600001037121, 257371.105999998748302 ], [ 363918.154200002551079, 257347.511399999260902 ], [ 363916.600900001823902, 257340.532600000500679 ], [ 363912.619699999690056, 257334.589400000870228 ], [ 363911.034100003540516, 257331.410000000149012 ], [ 363906.289700001478195, 257320.394299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601015000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-58", "ACRE": ".119", "LONGITUDE": -64.89875462000001, "LATITUDE": 18.34528768, "OBJECTID_1": 20487, "PARCEL_NO_": "105601015000", "Tax_Legal_": "146-58 ANNAS RETREAT NEW QTR", "Name": "SAMUEL, M.C & CLARKE, L.F.", "Address": "P.O. BOX 2881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 98700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.489341541000002, "SHAPE_Area": 444.15669354800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362211.869300000369549, 257348.533900000154972 ], [ 362203.966300003230572, 257329.68189999833703 ], [ 362183.72749999910593, 257339.015399999916553 ], [ 362190.83330000191927, 257356.805500000715256 ], [ 362211.869300000369549, 257348.533900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601055200", "MAP": "D9-3705-T86", "PARCEL_NAM": "404-119", "ACRE": "0.14", "LONGITUDE": -64.89292233, "LATITUDE": 18.34524809, "OBJECTID_1": 20797, "PARCEL_NO_": "105601055200", "Tax_Legal_": "404-119 ANNAS RETREAT NO.1 NEW QTR.", "Name": "HANLEY (LIFE ESTATE), RONALD", "Address": "404-119 Anna S Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 100600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.729343562599993, "SHAPE_Area": 507.04708652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362823.898299999535084, 257349.110100001096725 ], [ 362820.037500001490116, 257329.024599999189377 ], [ 362801.468999996781349, 257331.616799999028444 ], [ 362810.09570000320673, 257360.185100000351667 ], [ 362814.132600001990795, 257359.584800001233816 ], [ 362825.433600001037121, 257358.199700001627207 ], [ 362823.898299999535084, 257349.110100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601026300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-125", "ACRE": ".124", "LONGITUDE": -64.89564412, "LATITUDE": 18.34521608, "OBJECTID_1": 20592, "PARCEL_NO_": "105601026300", "Tax_Legal_": "ANNAS RETREAT 146-125 1 NEW QTR", "Name": "BROOKS, PRESTON H. & DORITA (LIFE ESTATE)", "Address": "146-25 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.806856986, "SHAPE_Area": 666.36292856199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362544.172600001096725, 257339.2212999984622 ], [ 362529.826200000941753, 257319.472199998795986 ], [ 362509.519100002944469, 257336.826699998229742 ], [ 362522.245700001716614, 257357.407000001519918 ], [ 362544.172600001096725, 257339.2212999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601017200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-37", "ACRE": ".115", "LONGITUDE": -64.89943258, "LATITUDE": 18.34522814, "OBJECTID_1": 20509, "PARCEL_NO_": "105601017200", "Tax_Legal_": "ANNAS RETREAT 146-37 1 NEW QTR", "Name": "LAKE, ANNETTA & ALVA S. LAKE", "Address": "PO Box 305475", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 92800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.776459686099997, "SHAPE_Area": 453.39968905900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362139.66330000013113, 257348.027100000530481 ], [ 362132.247599996626377, 257324.028599999845028 ], [ 362114.496100001037121, 257325.361000001430511 ], [ 362116.755599997937679, 257346.107200000435114 ], [ 362138.929700002074242, 257347.965599998831749 ], [ 362139.66330000013113, 257348.027100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602038100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88708763, "LATITUDE": 18.34521102, "OBJECTID_1": 21174, "PARCEL_NO_": "105602038100", "Tax_Legal_": "394-235 ANNAS RETREAT NEW QTR", "Name": "ONEAL, GEORGE & STEVENS", "Address": "PO Box 141753", "City": "Anchorage", "State": "Alaska", "Zip": 99514, "Country": "United States", "Land_Value": 38900, "Improved_V": 14100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.76715245600001, "SHAPE_Area": 855.46434526899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363447.944600000977516, 257358.861699998378754 ], [ 363443.272100001573563, 257339.402800001204014 ], [ 363440.082800000905991, 257335.154800001531839 ], [ 363435.334899999201298, 257324.561299998313189 ], [ 363412.660999998450279, 257335.77479999884963 ], [ 363424.516500003635883, 257363.947299998253584 ], [ 363447.944600000977516, 257358.861699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9095121, "LATITUDE": 18.34507152, "OBJECTID_1": 19693, "PARCEL_NO_": "105501014000", "Tax_Legal_": "1CD-9 WINTBERG GR NORTHSIDE", "Name": "ASCENDANCY USVI LLC", "Address": "5334 Yacht Haven Grande Building H Ste 102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025030, "Country": "United States", "Land_Value": 92700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.536689185, "SHAPE_Area": 3926.6842246400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361100.165799997746944, 257315.792599998414516 ], [ 361063.501599997282028, 257265.46339999884367 ], [ 361037.615099996328354, 257275.172899998724461 ], [ 361027.401699997484684, 257338.206300001591444 ], [ 361041.870399996638298, 257343.602099999785423 ], [ 361043.499200001358986, 257341.715500000864267 ], [ 361046.731600001454353, 257340.897599998861551 ], [ 361048.347900003194809, 257340.488699998706579 ], [ 361058.007399998605251, 257342.467599999159575 ], [ 361067.668799996376038, 257344.235399998724461 ], [ 361075.737300001084805, 257343.668099999427795 ], [ 361078.163400001823902, 257342.843600001186132 ], [ 361083.82379999756813, 257340.990100000053644 ], [ 361087.882399998605251, 257337.856899999082088 ], [ 361092.772399999201298, 257331.775199998170137 ], [ 361100.165799997746944, 257315.792599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601055100", "MAP": "D9-1966-T82", "PARCEL_NAM": "215-318", "ACRE": "0.14", "LONGITUDE": -64.89274734, "LATITUDE": 18.34523011, "OBJECTID_1": 20796, "PARCEL_NO_": "105601055100", "Tax_Legal_": "215-318 INCL.PORTION OF 404 ANNAS RETREAT", "Name": "SMITH, SHERISE M", "Address": "PO Box 503092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 87600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.09533587599999, "SHAPE_Area": 595.04497903399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362842.49379999935627, 257343.351700000464916 ], [ 362839.416000001132488, 257326.016800001263618 ], [ 362820.037500001490116, 257329.024599999189377 ], [ 362823.898299999535084, 257349.110100001096725 ], [ 362825.433600001037121, 257358.199700001627207 ], [ 362846.419299997389317, 257355.838300000876188 ], [ 362842.49379999935627, 257343.351700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602085100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89082318, "LATITUDE": 18.34522043, "OBJECTID_1": 21419, "PARCEL_NO_": "105602085100", "Tax_Legal_": "215-255 ANNAS RETREAT NEW QTR.", "Name": "KEAN, ELISE", "Address": "PO Box 9873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13300, "Improved_V": 106000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.499827100999994, "SHAPE_Area": 411.56153299 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363048.839699998497963, 257353.273200001567602 ], [ 363034.565200001001358, 257325.080899998545647 ], [ 363032.126500003039837, 257327.383000001311302 ], [ 363023.16889999806881, 257337.653200000524521 ], [ 363039.108199998736382, 257359.737399999052286 ], [ 363048.839699998497963, 257353.273200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601027200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-130", "ACRE": ".116", "LONGITUDE": -64.89661258, "LATITUDE": 18.34521234, "OBJECTID_1": 20601, "PARCEL_NO_": "105601027200", "Tax_Legal_": "146-130 ANNAS RETREAT NEW QTR", "Name": "HANSEN, RUDOLPH", "Address": "PO Box 8575", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 105800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.2477085278, "SHAPE_Area": 541.77003495999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362423.382200002670288, 257319.867499999701977 ], [ 362411.193999998271465, 257330.744699999690056 ], [ 362410.369699999690056, 257332.848799999803305 ], [ 362412.729299999773502, 257339.834199998527765 ], [ 362419.9087999984622, 257348.969999998807907 ], [ 362426.3125, 257354.510899998247623 ], [ 362439.351999998092651, 257338.363400001078844 ], [ 362423.382200002670288, 257319.867499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601017300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-38", "ACRE": ".114", "LONGITUDE": -64.89923505, "LATITUDE": 18.34521394, "OBJECTID_1": 20510, "PARCEL_NO_": "105601017300", "Tax_Legal_": "146-38 ANNAS RETREAT 1 NEW QTR", "Name": "RHYMER, JAMES & BERNICE", "Address": "PO Box 723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 103400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.732770609599996, "SHAPE_Area": 543.55707633999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362161.089599996805191, 257346.00730000063777 ], [ 362154.847699999809265, 257321.469399999827147 ], [ 362140.314300000667572, 257323.672499999403954 ], [ 362132.247599996626377, 257324.028599999845028 ], [ 362139.66330000013113, 257348.027100000530481 ], [ 362161.089599996805191, 257346.00730000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601025000", "MAP": "B9-178-T67", "PARCEL_NAM": "193", "ACRE": "0.25", "LONGITUDE": -64.89463114, "LATITUDE": 18.34519352, "OBJECTID_1": 20579, "PARCEL_NO_": "105601025000", "Tax_Legal_": "193 ANNAS RETREAT NEW QTR", "Name": "BOYD, CHARLES A. & JANET I.", "Address": "3614 E 146th St", "City": "Cleveland", "State": "Ohio", "Zip": 44120, "Country": "United States", "Land_Value": 31400, "Improved_V": 168100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.561825329, "SHAPE_Area": 713.84978831399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362653.0625, 257335.679499998688698 ], [ 362628.189099997282028, 257321.121599998325109 ], [ 362609.543200001120567, 257332.790199998766184 ], [ 362644.833999998867512, 257355.032800000160933 ], [ 362653.0625, 257335.679499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87342268, "LATITUDE": 18.34518798, "OBJECTID_1": 22573, "PARCEL_NO_": "105702040800", "Tax_Legal_": "SMITH BAY 56AC EAST END QTR", "Name": "FRANCIS, LEONARD BERNARD", "Address": "P O BOX 4368", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 90100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.887010992, "SHAPE_Area": 835.20666186899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364891.261900000274181, 257368.5636 ], [ 364884.273000001907349, 257337.05350000038743 ], [ 364861.676500000059605, 257339.190499998629093 ], [ 364863.805900000035763, 257373.193999998271465 ], [ 364891.261900000274181, 257368.5636 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601027800", "MAP": "D9-1739-T81", "PARCEL_NAM": null, "ACRE": ".15", "LONGITUDE": -64.89418221, "LATITUDE": 18.34523313, "OBJECTID_1": 20607, "PARCEL_NO_": "105601027800", "Tax_Legal_": "ANNAS RETREAT 404-86 NEW QTR.", "Name": "CALLWOOD, M. & LEONARD, C", "Address": "PO Box 7485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.652408642, "SHAPE_Area": 591.89572978700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362697.38629999756813, 257338.786499999463558 ], [ 362694.247400000691414, 257328.628299999982119 ], [ 362663.5337999984622, 257337.031800001859665 ], [ 362661.091499999165535, 257339.756000000983477 ], [ 362659.435699999332428, 257344.808699999004602 ], [ 362690.799199998378754, 257354.775699999183416 ], [ 362697.38629999756813, 257338.786499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502012200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-29", "ACRE": "0.22", "LONGITUDE": -64.90099367000001, "LATITUDE": 18.34506345, "OBJECTID_1": 19821, "PARCEL_NO_": "105502012200", "Tax_Legal_": "146-29 ANNAS RETREAT 1 NEW QTR", "Name": "PHILLIP MULRAIN JR", "Address": "PO Box 10465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013465, "Country": "United States", "Land_Value": 28900, "Improved_V": 109000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.303261639, "SHAPE_Area": 862.07131679400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361979.843000002205372, 257324.144499998539686 ], [ 361979.883299998939037, 257319.404100000858307 ], [ 361983.140900000929832, 257315.631099998950958 ], [ 361963.148599997162819, 257296.046900000423193 ], [ 361950.947800002992153, 257308.401500001549721 ], [ 361940.307499997317791, 257326.890700001269579 ], [ 361941.450800001621246, 257333.231300000101328 ], [ 361979.843000002205372, 257324.144499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601028600", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-96", "ACRE": ".15", "LONGITUDE": -64.89383959, "LATITUDE": 18.34518817, "OBJECTID_1": 20611, "PARCEL_NO_": "105601028600", "Tax_Legal_": "404-96 ANNAS RETREAT NEW QTR.", "Name": "CALLWOOD, VERNON R. & TINA M.P.", "Address": "PO BOX 8785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 237400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.886265071, "SHAPE_Area": 837.42101840700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362740.938000001013279, 257337.876400001347065 ], [ 362716.885300002992153, 257321.636399999260902 ], [ 362694.247400000691414, 257328.628299999982119 ], [ 362697.38629999756813, 257338.786499999463558 ], [ 362727.086800001561642, 257354.650499999523163 ], [ 362733.619999997317791, 257344.993700001388788 ], [ 362740.938000001013279, 257337.876400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601063300", "MAP": "C9-239-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89146711, "LATITUDE": 18.34521228, "OBJECTID_1": 20868, "PARCEL_NO_": "105601063300", "Tax_Legal_": "ANNAS RETREAT 404-32&POR 215 NEW QTR.", "Name": "BLYDEN, ETHLYN", "Address": "PO Box 303901", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18600, "Improved_V": 88500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.782139322999996, "SHAPE_Area": 513.32323586200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362984.424599997699261, 257342.191300000995398 ], [ 362977.151500001549721, 257328.35249999910593 ], [ 362970.814400002360344, 257330.680799998342991 ], [ 362949.781900003552437, 257338.530200000852346 ], [ 362964.142700001597404, 257356.590700000524521 ], [ 362984.424599997699261, 257342.191300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90396425, "LATITUDE": 18.3450433, "OBJECTID_1": 19869, "PARCEL_NO_": "105502022300", "Tax_Legal_": "WINTBERG ESTATE 1V-2 GT NORTHSIDE", "Name": "GREEN, NOEL & CYNETHELIA", "Address": "IV-2 Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 122400, "Improved_V": 719000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.53038626, "SHAPE_Area": 3552.3965198400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361685.534299999475479, 257322.272399999201298 ], [ 361637.734600000083447, 257253.909000001847744 ], [ 361629.365800000727177, 257289.726399999111891 ], [ 361623.56870000064373, 257307.621899999678135 ], [ 361621.938100002706051, 257309.719500001519918 ], [ 361616.121299996972084, 257329.936900001019239 ], [ 361613.668200001120567, 257333.927600000053644 ], [ 361611.163000002503395, 257344.039599999785423 ], [ 361677.314699999988079, 257340.570199999958277 ], [ 361681.44879999756813, 257328.571699999272823 ], [ 361683.075800001621246, 257326.896299999207258 ], [ 361683.909100003540516, 257323.736699998378754 ], [ 361685.534299999475479, 257322.272399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601015100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-57", "ACRE": ".114", "LONGITUDE": -64.8985582, "LATITUDE": 18.34518806, "OBJECTID_1": 20488, "PARCEL_NO_": "105601015100", "Tax_Legal_": "146-57 ANNAS RETREAT NEW QTR", "Name": "EDWARDS, VERTILLEY & BENJAMIN, A", "Address": "146-57 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 83800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.186211125699998, "SHAPE_Area": 524.66431163499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362234.557599999010563, 257335.631799999624491 ], [ 362222.626500003039837, 257316.324599999934435 ], [ 362203.966300003230572, 257329.68189999833703 ], [ 362211.869300000369549, 257348.533900000154972 ], [ 362234.557599999010563, 257335.631799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601026800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-133", "ACRE": ".115", "LONGITUDE": -64.89611956, "LATITUDE": 18.34522097, "OBJECTID_1": 20597, "PARCEL_NO_": "105601026800", "Tax_Legal_": "146-133 ANNAS RETREAT NEW QTR", "Name": "GEORGE NORFORD, LORI", "Address": "#146-133 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 129100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.943945164499993, "SHAPE_Area": 503.899379254 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362489.264200001955032, 257348.059999998658895 ], [ 362484.622299998998642, 257325.012800000607967 ], [ 362475.736699998378754, 257326.839899998158216 ], [ 362466.874499998986721, 257325.923000000417233 ], [ 362464.259499996900558, 257348.910799998790026 ], [ 362473.116400003433228, 257350.460999999195337 ], [ 362489.264200001955032, 257348.059999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87086533, "LATITUDE": 18.34509904, "OBJECTID_1": 22333, "PARCEL_NO_": "105702020800", "Tax_Legal_": "SMITH BAY 99 EAST END QTR", "Name": "LUTHER BENJAMIN", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.47974818899999, "SHAPE_Area": 1059.9674710700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365151.291900001466274, 257324.040100000798702 ], [ 365125.376599997282028, 257337.126899998635054 ], [ 365130.914700001478195, 257349.626800000667572 ], [ 365140.406999997794628, 257371.236000001430511 ], [ 365165.517800003290176, 257357.931499999016523 ], [ 365151.291900001466274, 257324.040100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601027100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-132", "ACRE": ".118", "LONGITUDE": -64.89631953, "LATITUDE": 18.34519391, "OBJECTID_1": 20600, "PARCEL_NO_": "105601027100", "Tax_Legal_": "146-132ANNAS RETREAT NEW QTR", "Name": "HODGE, ELMA B. & OTHERS", "Address": "146-132 ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 104100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.053712501899994, "SHAPE_Area": 485.430532239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362466.874499998986721, 257325.923000000417233 ], [ 362460.436599999666214, 257324.392700001597404 ], [ 362453.212099999189377, 257320.533900000154972 ], [ 362439.351999998092651, 257338.363400001078844 ], [ 362440.948399998247623, 257340.276299998164177 ], [ 362455.404500000178814, 257347.149599999189377 ], [ 362464.259499996900558, 257348.910799998790026 ], [ 362466.874499998986721, 257325.923000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87285965, "LATITUDE": 18.34518212, "OBJECTID_1": 22581, "PARCEL_NO_": "105702041700", "Tax_Legal_": "SMITH BAY 56CBA EAST END QTR", "Name": "ROSALYN D BROWN and MONICA JOANN PETERSEN", "Address": "6213 Estate Frydendal", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16900, "Improved_V": 144400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.7519885034, "SHAPE_Area": 481.687720082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364943.909500002861023, 257341.130100000649691 ], [ 364919.628499999642372, 257351.697200000286102 ], [ 364925.126999996602535, 257368.840799998492002 ], [ 364950.218000002205372, 257357.858199998736382 ], [ 364943.909500002861023, 257341.130100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601017400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-39", "ACRE": ".115", "LONGITUDE": -64.89903183, "LATITUDE": 18.34517763, "OBJECTID_1": 20511, "PARCEL_NO_": "105601017400", "Tax_Legal_": "146-39 ANNAS RETREAT 1 NEW QTR", "Name": "RHYMER, SR., JULIO", "Address": "PO Box 1560", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16300, "Improved_V": 92200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.641554220200007, "SHAPE_Area": 543.64220016399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362183.72749999910593, 257339.015399999916553 ], [ 362174.244199998676777, 257316.35080000013113 ], [ 362154.847699999809265, 257321.469399999827147 ], [ 362161.089599996805191, 257346.00730000063777 ], [ 362183.72749999910593, 257339.015399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90290347, "LATITUDE": 18.34500961, "OBJECTID_1": 19802, "PARCEL_NO_": "105502011700", "Tax_Legal_": "220 WINTBERG GT. NORTHSIDE", "Name": "GONZALEZ, VALMY", "Address": "PO Box 8827", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 87200, "Improved_V": 53800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.0194496, "SHAPE_Area": 1867.51470193 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361785.482900001108646, 257327.101199999451637 ], [ 361763.341300003230572, 257275.835299998521805 ], [ 361730.927000001072884, 257294.568399999290705 ], [ 361760.354099996387959, 257342.516399998217821 ], [ 361785.482900001108646, 257327.101199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602084200", "MAP": "C9-272-T81", "PARCEL_NAM": "215-246", "ACRE": ".138", "LONGITUDE": -64.8894574, "LATITUDE": 18.34514686, "OBJECTID_1": 21411, "PARCEL_NO_": "105602084200", "Tax_Legal_": "215-246 ANNAS RETREAT NEW QUARTER", "Name": "DALEY, MARTHA", "Address": "PO Box 306152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 94400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.93353885499999, "SHAPE_Area": 587.64318431200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363198.219700001180172, 257329.58669999986887 ], [ 363184.605899997055531, 257318.498399998992682 ], [ 363162.635799996554852, 257341.75 ], [ 363177.045199997723103, 257354.111400000751019 ], [ 363198.219700001180172, 257329.58669999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87122708, "LATITUDE": 18.34511378, "OBJECTID_1": 22331, "PARCEL_NO_": "105702020600", "Tax_Legal_": "SMITH BAY 66 EAST END QTR", "Name": "SOOKRAM, S & PACQUETTE, J & J", "Address": "PO Box 10237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62100, "Improved_V": 298100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.79878789700001, "SHAPE_Area": 990.01105450399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365125.376599997282028, 257337.126899998635054 ], [ 365121.418799996376038, 257328.439699999988079 ], [ 365084.9746999964118, 257346.928800001740456 ], [ 365092.037299998104572, 257369.784699998795986 ], [ 365130.914700001478195, 257349.626800000667572 ], [ 365125.376599997282028, 257337.126899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701012100", "MAP": "D9-2923-T85", "PARCEL_NAM": "19A", "ACRE": ".283", "LONGITUDE": -64.8820441, "LATITUDE": 18.34512916, "OBJECTID_1": 21854, "PARCEL_NO_": "105701012100", "Tax_Legal_": "17A & 19A ANNAS RETREAT NEW QTR", "Name": "FOSTER, RUPERT & GASTELE", "Address": "P.O. BOX 4092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 184100, "Improved_V": 171800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.26984123899999, "SHAPE_Area": 1125.75100653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364006.25620000064373, 257323.112300001084805 ], [ 363967.46509999781847, 257333.138399999588728 ], [ 363923.823600001633167, 257344.60249999910593 ], [ 363923.7533999979496, 257352.834499999880791 ], [ 363921.273400001227856, 257359.991399999707937 ], [ 364009.387999996542931, 257334.114799998700619 ], [ 364006.25620000064373, 257323.112300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601026600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-134", "ACRE": ".121", "LONGITUDE": -64.89593525, "LATITUDE": 18.34517286, "OBJECTID_1": 20595, "PARCEL_NO_": "105601026600", "Tax_Legal_": "ANNAS RETREAT 146-134 1 NEW QTR", "Name": "OVESEN, VIVIAN", "Address": "PO Box 502604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17800, "Improved_V": 90000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.526378656899993, "SHAPE_Area": 426.28453900099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362509.519100002944469, 257336.826699998229742 ], [ 362499.189900003373623, 257318.799199998378754 ], [ 362494.326899997889996, 257321.714800000190735 ], [ 362484.622299998998642, 257325.012800000607967 ], [ 362489.264200001955032, 257348.059999998658895 ], [ 362491.686700001358986, 257347.657699998468161 ], [ 362509.519100002944469, 257336.826699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601055000", "MAP": "D9-1966-T82", "PARCEL_NAM": "404-303", "ACRE": "0.14", "LONGITUDE": -64.89254826, "LATITUDE": 18.34517591, "OBJECTID_1": 20795, "PARCEL_NO_": "105601055000", "Tax_Legal_": "ANNAS RETREAT 404-303 NEW QTR.", "Name": "ELIZEE, LUCY ANN", "Address": "PO Box 6522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.563013812199998, "SHAPE_Area": 535.55647656199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362866.625600002706051, 257350.304200001060963 ], [ 362862.016099996864796, 257323.457600001245737 ], [ 362839.416000001132488, 257326.016800001263618 ], [ 362842.49379999935627, 257343.351700000464916 ], [ 362849.754199996590614, 257342.988899998366833 ], [ 362852.106600001454353, 257350.818599998950958 ], [ 362866.625600002706051, 257350.304200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88751191, "LATITUDE": 18.34511178, "OBJECTID_1": 21141, "PARCEL_NO_": "105602034300", "Tax_Legal_": "ANNAS RETREAT 394-243 NEW QTR", "Name": "DAVID, BERNALD", "Address": "PO Box 8447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32900, "Improved_V": 181400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.41572800700001, "SHAPE_Area": 1145.15528612 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363412.660999998450279, 257335.77479999884963 ], [ 363399.965000003576279, 257311.606199998408556 ], [ 363359.440800003707409, 257335.761399999260902 ], [ 363361.816600002348423, 257340.847100000828505 ], [ 363363.416599996387959, 257342.337799999862909 ], [ 363366.569899998605251, 257350.807399999350309 ], [ 363368.956500001251698, 257354.626600001007318 ], [ 363412.660999998450279, 257335.77479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601054900", "MAP": "D9-1966-T82", "PARCEL_NAM": "404-304", "ACRE": "0.14", "LONGITUDE": -64.89235267, "LATITUDE": 18.34516879, "OBJECTID_1": 20794, "PARCEL_NO_": "105601054900", "Tax_Legal_": "ANNAS RETREAT 215-304 NEW QTR.", "Name": "ABRAHAM, ALBERT & NICAISE", "Address": "7576 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 233800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.373471413700003, "SHAPE_Area": 563.38603435200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362885.982500001788139, 257349.829300001263618 ], [ 362883.0, 257321.307300001382828 ], [ 362862.016099996864796, 257323.457600001245737 ], [ 362866.625600002706051, 257350.304200001060963 ], [ 362885.982500001788139, 257349.829300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601054800", "MAP": "D9-1888-T81", "PARCEL_NAM": "215-305", "ACRE": "0.14", "LONGITUDE": -64.89215186, "LATITUDE": 18.34518993, "OBJECTID_1": 20793, "PARCEL_NO_": "105601054800", "Tax_Legal_": "215-305ANNAS RETREAT NEW QTR.", "Name": "GREEN, GERALD & DANITA", "Address": "PO Box 301994", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 255700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.07278761400001, "SHAPE_Area": 558.28078322500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362885.982500001788139, 257349.829300001263618 ], [ 362915.00620000064373, 257350.489000000059605 ], [ 362907.848300002515316, 257338.820300001651049 ], [ 362893.458700001239777, 257324.137099999934435 ], [ 362889.446900002658367, 257321.782200001180172 ], [ 362883.0, 257321.307300001382828 ], [ 362885.982500001788139, 257349.829300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601025500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-121", "ACRE": ".122", "LONGITUDE": -64.89503073, "LATITUDE": 18.34516438, "OBJECTID_1": 20584, "PARCEL_NO_": "105601025500", "Tax_Legal_": "146-121 ANNAS RETREAT 1 NEW QTR", "Name": "PETERS, DEBORAH E", "Address": "4196 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022219, "Country": "United States", "Land_Value": 16400, "Improved_V": 57800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.251715961499997, "SHAPE_Area": 392.49815829099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362604.678400002419949, 257335.916799999773502 ], [ 362598.36089999973774, 257320.244199998676777 ], [ 362576.500600002706051, 257330.620000001043081 ], [ 362580.494400002062321, 257335.08559999987483 ], [ 362586.041500002145767, 257346.530099999159575 ], [ 362604.678400002419949, 257335.916799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602035800", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-371", "ACRE": "0.27", "LONGITUDE": -64.88915169000001, "LATITUDE": 18.34506401, "OBJECTID_1": 21156, "PARCEL_NO_": "105602035800", "Tax_Legal_": "394-371 ANNAS RETREAT NEW QTR", "Name": "PETERS, CAROLEE", "Address": "162 Odyssey Turn", "City": "Conyers", "State": "Georgia", "Zip": 30012, "Country": "United States", "Land_Value": 38900, "Improved_V": 149400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.246487374, "SHAPE_Area": 1071.96467813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363236.978399999439716, 257323.359999999403954 ], [ 363235.376599997282028, 257322.080400001257658 ], [ 363234.602600000798702, 257318.274300001561642 ], [ 363175.797600001096725, 257311.249200001358986 ], [ 363184.605899997055531, 257318.498399998992682 ], [ 363198.219700001180172, 257329.58669999986887 ], [ 363211.831699997186661, 257340.886100001633167 ], [ 363224.642800003290176, 257351.5456000007689 ], [ 363236.978399999439716, 257323.359999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601015600", "MAP": "A9-38-T65", "PARCEL_NAM": "145-52", "ACRE": ".132", "LONGITUDE": -64.8974722, "LATITUDE": 18.34515595, "OBJECTID_1": 20493, "PARCEL_NO_": "105601015600", "Tax_Legal_": "ANNAS RETREAT 146-52 1 NEW QTR", "Name": "CLAXTON, IRA & VERNA", "Address": "146-52 ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.198396240999998, "SHAPE_Area": 512.83523920300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362343.568000003695488, 257317.947700001299381 ], [ 362321.795800000429153, 257317.980599999427795 ], [ 362324.015100002288818, 257341.43019999936223 ], [ 362336.090000003576279, 257343.850999999791384 ], [ 362340.942299999296665, 257342.201999999582767 ], [ 362343.380999997258186, 257339.899900000542402 ], [ 362344.212499998509884, 257336.951400000602007 ], [ 362343.568000003695488, 257317.947700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601063000", "MAP": "C9-239-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89180097000001, "LATITUDE": 18.34510498, "OBJECTID_1": 20866, "PARCEL_NO_": "105601063000", "Tax_Legal_": "ANNAS RET 404-30 & POR 215 NEW QTR.", "Name": "CONSTANTINE, MARILYN & PETE", "Address": "7706 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 92400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.916761271, "SHAPE_Area": 753.33705820600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362949.781900003552437, 257338.530200000852346 ], [ 362941.938199996948242, 257312.712600000202656 ], [ 362940.314800001680851, 257313.965900000184774 ], [ 362933.848099999129772, 257315.812800001353025 ], [ 362913.670500002801418, 257317.969700001180172 ], [ 362927.930600002408028, 257347.850600000470877 ], [ 362949.781900003552437, 257338.530200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502013600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-26", "ACRE": "0.16", "LONGITUDE": -64.90039269, "LATITUDE": 18.34512079, "OBJECTID_1": 19835, "PARCEL_NO_": "105502013600", "Tax_Legal_": "146-26 ANNAS RETREAT 1 NEW QTR", "Name": "LEONARD, MARY", "Address": "46026 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 120200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.873814872, "SHAPE_Area": 656.32122874799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362026.874200001358986, 257293.401999998837709 ], [ 362011.223399996757507, 257332.115100000053644 ], [ 362010.381099998950958, 257336.330099999904633 ], [ 362024.05969999730587, 257339.819600000977516 ], [ 362037.77419999986887, 257339.087400000542402 ], [ 362026.874200001358986, 257293.401999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90483705, "LATITUDE": 18.34481327, "OBJECTID_1": 19867, "PARCEL_NO_": "105502022100", "Tax_Legal_": "WINTBERG ESTATE 1-S-2 GREAT NORTHSIDE QTR", "Name": "THOMPSON, CHRISTOPHER & CHRISTINE", "Address": "PO Box 302571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 112700, "Improved_V": 460100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.35116942299999, "SHAPE_Area": 5062.1368583399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361587.001599997282028, 257245.894400000572205 ], [ 361528.209200002253056, 257237.391699999570847 ], [ 361527.374799996614456, 257335.332299999892712 ], [ 361582.286799997091293, 257326.071400001645088 ], [ 361587.001599997282028, 257245.894400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601015700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-62", "ACRE": ".138", "LONGITUDE": -64.89716077, "LATITUDE": 18.34516543, "OBJECTID_1": 20494, "PARCEL_NO_": "105601015700", "Tax_Legal_": "146-62 ANNAS RETREAT NEW QTR", "Name": "JOSEPH, KENNETH M.", "Address": "PO Box 11656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 123500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.514084446499993, "SHAPE_Area": 508.58022312000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362374.998000003397465, 257320.104800000786781 ], [ 362349.966399997472763, 257324.121800001710653 ], [ 362353.089100003242493, 257336.179699998348951 ], [ 362358.697300001978874, 257340.447500001639128 ], [ 362365.135200001299381, 257341.977800000458956 ], [ 362374.823600001633167, 257340.579500000923872 ], [ 362382.906499996781349, 257338.323600001633167 ], [ 362374.998000003397465, 257320.104800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502013500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-25", "ACRE": "0.16", "LONGITUDE": -64.90022916, "LATITUDE": 18.34504497, "OBJECTID_1": 19834, "PARCEL_NO_": "105502013500", "Tax_Legal_": "ANNAS RETREAT 146-25 1 NEW QTR", "Name": "RHYMER (LIFE ESTATE), ULRIC", "Address": "PO Box 502162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20100, "Improved_V": 120500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.58170144, "SHAPE_Area": 844.48374170700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362048.633900001645088, 257294.846700001507998 ], [ 362043.781599998474121, 257296.495700001716614 ], [ 362026.874200001358986, 257293.401999998837709 ], [ 362037.77419999986887, 257339.087400000542402 ], [ 362056.375100001692772, 257332.695799998939037 ], [ 362048.633900001645088, 257294.846700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601015500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-53", "ACRE": ".137", "LONGITUDE": -64.89768972, "LATITUDE": 18.3451067, "OBJECTID_1": 20492, "PARCEL_NO_": "105601015500", "Tax_Legal_": "146-53 ANNAS RETREAT 1 NEW QTR", "Name": "YEARWOOD, IONE", "Address": "46053 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 151700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.940212824, "SHAPE_Area": 624.74797231900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362321.795800000429153, 257317.980599999427795 ], [ 362305.777400001883507, 257305.183899998664856 ], [ 362293.477700002491474, 257329.147900000214577 ], [ 362317.580799996852875, 257339.477699998766184 ], [ 362324.015100002288818, 257341.43019999936223 ], [ 362321.795800000429153, 257317.980599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602084900", "MAP": "C9-272-T81", "PARCEL_NAM": "215-253", "ACRE": ".137", "LONGITUDE": -64.89058068, "LATITUDE": 18.34507567, "OBJECTID_1": 21418, "PARCEL_NO_": "105602084900", "Tax_Legal_": "215-253 ANNAS RETREAT NEW QTR.", "Name": "MASON, LEO R.& TAMIKAH B.", "Address": "PO Box 307401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.566790983399997, "SHAPE_Area": 512.409722526 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363071.536899998784065, 257339.315699998289347 ], [ 363070.15259999781847, 257312.495400000363588 ], [ 363053.200300000607967, 257314.678700000047684 ], [ 363049.165100000798702, 257315.067899998277426 ], [ 363058.574799999594688, 257346.386700000613928 ], [ 363062.633299998939037, 257343.253600001335144 ], [ 363071.536899998784065, 257339.315699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90869105, "LATITUDE": 18.34489053, "OBJECTID_1": 19692, "PARCEL_NO_": "105501013900", "Tax_Legal_": "1CD-6 WINTBERG GREAT NORTHSIDE QUARTER", "Name": "MARTYN JAMES & BETTY JO CRAWFORD REVOC TRUST", "Address": "PO BOX 600201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37400, "Improved_V": 369000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.49924962, "SHAPE_Area": 2381.5388471000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361185.378899998962879, 257251.895399998873472 ], [ 361137.623099997639656, 257273.036100000143051 ], [ 361141.586300000548363, 257281.09010000154376 ], [ 361135.91330000013113, 257284.42119999974966 ], [ 361135.092600002884865, 257286.103199999779463 ], [ 361135.862999998033047, 257290.331399999558926 ], [ 361128.57379999756813, 257294.071400001645088 ], [ 361125.368299998342991, 257291.723200000822544 ], [ 361122.139499999582767, 257292.118900001049042 ], [ 361118.872900001704693, 257296.947299998253584 ], [ 361116.430600002408028, 257299.671599999070168 ], [ 361106.54619999974966, 257324.077500000596046 ], [ 361110.525600001215935, 257330.231800001114607 ], [ 361176.169600002467632, 257291.716699998825788 ], [ 361185.378899998962879, 257251.895399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601017500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-40", "ACRE": ".116", "LONGITUDE": -64.89883598, "LATITUDE": 18.34510528, "OBJECTID_1": 20512, "PARCEL_NO_": "105601017500", "Tax_Legal_": "146-40 ANNAS RETREAT 1 NEW QTR", "Name": "SPENCER (LIFE ESTATE), GEORGE W.", "Address": "460 40 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 119600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.601131252000002, "SHAPE_Area": 539.89738367300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362203.966300003230572, 257329.68189999833703 ], [ 362195.285599999129772, 257307.445999998599291 ], [ 362183.950499996542931, 257312.841699998825788 ], [ 362174.244199998676777, 257316.35080000013113 ], [ 362183.72749999910593, 257339.015399999916553 ], [ 362203.966300003230572, 257329.68189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502013700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-27", "ACRE": "0.12", "LONGITUDE": -64.90051814, "LATITUDE": 18.34499276, "OBJECTID_1": 19836, "PARCEL_NO_": "105502013700", "Tax_Legal_": "ANNAS RETREAT 146-27 1 NEW QTR", "Name": "CLAXTON, MYRTLE", "Address": "PO Box 7522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 103700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.617495925, "SHAPE_Area": 648.14902258500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362026.874200001358986, 257293.401999998837709 ], [ 362010.771300002932549, 257290.526000000536442 ], [ 361996.869800001382828, 257313.210299998521805 ], [ 361999.277999997138977, 257314.496599998325109 ], [ 362002.463699996471405, 257319.166700001806021 ], [ 362008.777500003576279, 257335.261500000953674 ], [ 362010.381099998950958, 257336.330099999904633 ], [ 362011.223399996757507, 257332.115100000053644 ], [ 362026.874200001358986, 257293.401999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601015800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-63", "ACRE": ".114", "LONGITUDE": -64.89695276, "LATITUDE": 18.34510206, "OBJECTID_1": 20495, "PARCEL_NO_": "105601015800", "Tax_Legal_": "ANNAS RETREAT 146-63 1 NEW QTR", "Name": "BRADSHAW, ST CLAIR R. (TRUSTEE) & AUDREY", "Address": "231 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 132200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.730260340300006, "SHAPE_Area": 445.09171662799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362403.150600001215935, 257328.356800001114607 ], [ 362390.407899998128414, 257309.676300000399351 ], [ 362374.998000003397465, 257320.104800000786781 ], [ 362382.906499996781349, 257338.323600001633167 ], [ 362391.804700002074242, 257335.018899999558926 ], [ 362403.150600001215935, 257328.356800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602089000", "MAP": "C9-239-T79", "PARCEL_NAM": "404-28", "ACRE": null, "LONGITUDE": -64.89134582, "LATITUDE": 18.34503006, "OBJECTID_1": 21456, "PARCEL_NO_": "105602089000", "Tax_Legal_": "404-28 ANNAS RETREAT NEW QTR.", "Name": "CASTILLO, YUKLAN & LLOYD", "Address": "PO Box 8266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24500, "Improved_V": 105800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.227742365, "SHAPE_Area": 528.28608575199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362964.998700000345707, 257305.228700000792742 ], [ 362984.424599997699261, 257342.191300000995398 ], [ 362986.028200000524521, 257343.259899999946356 ], [ 362993.342600002884865, 257336.564699999988079 ], [ 362990.250399999320507, 257320.918499998748302 ], [ 362982.280799999833107, 257309.876400001347065 ], [ 362982.329300001263618, 257304.177299998700619 ], [ 362964.998700000345707, 257305.228700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601027300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-131", "ACRE": ".113", "LONGITUDE": -64.89647754000001, "LATITUDE": 18.34507602, "OBJECTID_1": 20602, "PARCEL_NO_": "105601027300", "Tax_Legal_": "ANNAS RETREAT 146-131 NEW QTR", "Name": "VAN HEYNINGEN, CLEMENCIA", "Address": "PO BOX 1431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16300, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.164534674500004, "SHAPE_Area": 456.66560713400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362453.212099999189377, 257320.533900000154972 ], [ 362447.605700001120567, 257316.054999999701977 ], [ 362444.420000001788139, 257311.384899999946356 ], [ 362439.600100003182888, 257309.234499998390675 ], [ 362436.373099997639656, 257309.419199999421835 ], [ 362433.943300001323223, 257310.665899999439716 ], [ 362428.248800002038479, 257316.529899999499321 ], [ 362423.382200002670288, 257319.867499999701977 ], [ 362439.351999998092651, 257338.363400001078844 ], [ 362453.212099999189377, 257320.533900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601026100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-124", "ACRE": ".129", "LONGITUDE": -64.89548263, "LATITUDE": 18.34506067, "OBJECTID_1": 20590, "PARCEL_NO_": "105601026100", "Tax_Legal_": "146-124 ANNAS RETREAT NO.1 NEW QTR", "Name": "CASIMIR, EARLYN P. & MICHAEL", "Address": "PO Box 12082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 122600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.924832853500007, "SHAPE_Area": 534.47700919299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362542.954199999570847, 257300.864900000393391 ], [ 362540.287500001490116, 257304.707400001585484 ], [ 362529.826200000941753, 257319.472199998795986 ], [ 362544.172600001096725, 257339.2212999984622 ], [ 362557.978799998760223, 257327.72410000115633 ], [ 362542.954199999570847, 257300.864900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105701030600", "MAP": "D9-5189-T91", "PARCEL_NAM": "14 REM", "ACRE": ".40", "LONGITUDE": -64.87726658, "LATITUDE": 18.34498197, "OBJECTID_1": 21953, "PARCEL_NO_": "105701030600", "Tax_Legal_": "13AB&14REM FRYDHL/SMITH BY 20-37 EAST END QUARTER", "Name": "CASSI LAND CO LLC", "Address": "6812 Est Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125500, "Improved_V": 393200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.20432440499999, "SHAPE_Area": 1533.9121453299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364492.589800000190735, 257326.013300001621246 ], [ 364494.612000003457069, 257327.607700001448393 ], [ 364498.093199998140335, 257330.35249999910593 ], [ 364502.776500001549721, 257324.963500000536442 ], [ 364504.713500000536442, 257322.734600000083447 ], [ 364500.714000001549721, 257319.886999998241663 ], [ 364493.329371965606697, 257315.534704909834545 ], [ 364485.649800002574921, 257311.72690000012517 ], [ 364464.407200001180172, 257307.441500000655651 ], [ 364460.350400000810623, 257310.363600000739098 ], [ 364457.034299999475479, 257313.837200000882149 ], [ 364440.577799998223782, 257337.964299999177456 ], [ 364446.369800001382828, 257342.335400000214577 ], [ 364463.196299999952316, 257354.927600000053644 ], [ 364464.711999997496605, 257356.037999998778105 ], [ 364490.631899997591972, 257324.558100000023842 ], [ 364492.589800000190735, 257326.013300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601015200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-56", "ACRE": ".120", "LONGITUDE": -64.89837254, "LATITUDE": 18.34506612, "OBJECTID_1": 20489, "PARCEL_NO_": "105601015200", "Tax_Legal_": "146-56 ANNAS RETREAT NEW QTR", "Name": "GEORGE, BURNETT & OTHERS", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15900, "Improved_V": 54200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.654274677199993, "SHAPE_Area": 544.83548973400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362253.201700001955032, 257324.174199998378754 ], [ 362242.906599998474121, 257302.136199999600649 ], [ 362222.626500003039837, 257316.324599999934435 ], [ 362234.557599999010563, 257335.631799999624491 ], [ 362253.201700001955032, 257324.174199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701037700", "MAP": "D9-5705-T94", "PARCEL_NAM": "20B-3", "ACRE": ".29", "LONGITUDE": -64.8758343, "LATITUDE": 18.34503517, "OBJECTID_1": 22022, "PARCEL_NO_": "105701037700", "Tax_Legal_": "20B-3 ESTATE SMITH BAY EAST END QUARTER", "Name": "FRAZER, DELREASE", "Address": "PO Box 502791", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 36500, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.559180715, "SHAPE_Area": 1127.68204451 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364632.912100002169609, 257310.509300000965595 ], [ 364636.306400001049042, 257290.694299999624491 ], [ 364626.522699996829033, 257303.279899999499321 ], [ 364623.245300002396107, 257309.374699998646975 ], [ 364620.806599996984005, 257311.67680000141263 ], [ 364618.3462999984622, 257316.511799998581409 ], [ 364611.823899999260902, 257324.902199998497963 ], [ 364608.064900003373623, 257328.531199999153614 ], [ 364608.439400002360344, 257347.936299998313189 ], [ 364608.781599998474121, 257365.662300001829863 ], [ 364623.5337999984622, 257370.172100000083447 ], [ 364624.392200000584126, 257364.057399999350309 ], [ 364626.085799999535084, 257354.572000000625849 ], [ 364628.653899997472763, 257337.072299998253584 ], [ 364632.912100002169609, 257310.509300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601026400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-135", "ACRE": ".126", "LONGITUDE": -64.89576602, "LATITUDE": 18.34505343, "OBJECTID_1": 20593, "PARCEL_NO_": "105601026400", "Tax_Legal_": "146-135 ANNAS RETREAT 1 NEW QTR", "Name": "HARRIGAN, JAMES A & JANICE", "Address": "PO Box 8465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24400, "Improved_V": 136400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.799589991700003, "SHAPE_Area": 491.98398701000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362529.826200000941753, 257319.472199998795986 ], [ 362514.637500002980232, 257303.938000001013279 ], [ 362507.305200003087521, 257312.743999999016523 ], [ 362499.189900003373623, 257318.799199998378754 ], [ 362509.519100002944469, 257336.826699998229742 ], [ 362529.826200000941753, 257319.472199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502013400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-24", "ACRE": "0.16", "LONGITUDE": -64.90003464, "LATITUDE": 18.3450009, "OBJECTID_1": 19833, "PARCEL_NO_": "105502013400", "Tax_Legal_": "146-24 ANNAS RETREAT NEW QTR", "Name": "TESTAMARK CHRISTIAN & V", "Address": "PO Box 302367", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20100, "Improved_V": 120900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.75295377099999, "SHAPE_Area": 809.67680983599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362078.221100002527237, 257324.008699998259544 ], [ 362067.233000002801418, 257288.66609999909997 ], [ 362048.633900001645088, 257294.846700001507998 ], [ 362056.375100001692772, 257332.695799998939037 ], [ 362078.221100002527237, 257324.008699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602084300", "MAP": "C9-272-T81", "PARCEL_NAM": "215-247", "ACRE": ".138", "LONGITUDE": -64.88957821, "LATITUDE": 18.34502104, "OBJECTID_1": 21412, "PARCEL_NO_": "105602084300", "Tax_Legal_": "ANNAS RETREAT 215-247 NEW QTR.", "Name": "CROOKE, JANET", "Address": "PO Box 503212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17600, "Improved_V": 133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.00547403, "SHAPE_Area": 578.02399387499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363175.797600001096725, 257311.249200001358986 ], [ 363163.785599999129772, 257301.440499998629093 ], [ 363155.420400001108646, 257336.835799999535084 ], [ 363162.635799996554852, 257341.75 ], [ 363184.605899997055531, 257318.498399998992682 ], [ 363175.797600001096725, 257311.249200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601058700", "MAP": "D9-1739-T81", "PARCEL_NAM": null, "ACRE": ".15", "LONGITUDE": -64.89362725, "LATITUDE": 18.34505565, "OBJECTID_1": 20829, "PARCEL_NO_": "105601058700", "Tax_Legal_": "404-95 ANNAS RETREAT NEW QTR", "Name": "WILKINS, BERNICE", "Address": "46120 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49000, "Improved_V": 95700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.939576882, "SHAPE_Area": 636.23382111599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362750.872699998319149, 257307.560300000011921 ], [ 362750.892499998211861, 257305.238400001078844 ], [ 362743.612300001084805, 257307.923000000417233 ], [ 362741.985299997031689, 257309.598499998450279 ], [ 362729.021300002932549, 257316.88060000166297 ], [ 362716.885300002992153, 257321.636399999260902 ], [ 362740.938000001013279, 257337.876400001347065 ], [ 362748.239799998700619, 257332.6587999984622 ], [ 362754.715400002896786, 257329.756499998271465 ], [ 362750.872699998319149, 257307.560300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601025400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89484826, "LATITUDE": 18.34497684, "OBJECTID_1": 20583, "PARCEL_NO_": "105601025400", "Tax_Legal_": "194 ANNAS RETREAT NEW QTR", "Name": "E CARIB CON OF 7 DAY ADV", "Address": "PO Box 580", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 50100, "Improved_V": 47000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.239812419, "SHAPE_Area": 983.71333660499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362597.720100000500679, 257300.818300001323223 ], [ 362591.242600001394749, 257303.931699998676777 ], [ 362598.36089999973774, 257320.244199998676777 ], [ 362604.678400002419949, 257335.916799999773502 ], [ 362609.543200001120567, 257332.790199998766184 ], [ 362628.189099997282028, 257321.121599998325109 ], [ 362628.262800000607967, 257312.467399999499321 ], [ 362623.489699997007847, 257304.828899998217821 ], [ 362618.77589999884367, 257290.224899999797344 ], [ 362597.720100000500679, 257300.818300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88081797, "LATITUDE": 18.34482308, "OBJECTID_1": 21866, "PARCEL_NO_": "105701013300", "Tax_Legal_": "3B-1 & EASEMENT A ANNAS RETREAT NEW QTR", "Name": "GEORGE GOODWIN", "Address": "PO Box 301951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8031951, "Country": "United States", "Land_Value": 145900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.00410604000001, "SHAPE_Area": 3497.3800683899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364074.55349999666214, 257270.716600000858307 ], [ 364051.338899999856949, 257237.144000001251698 ], [ 364059.146700002253056, 257267.183200001716614 ], [ 364073.196400001645088, 257321.760299999266863 ], [ 364079.425700001418591, 257347.775800000876188 ], [ 364134.404200002551079, 257330.704999998211861 ], [ 364134.580399997532368, 257310.019299998879433 ], [ 364132.281937202322297, 257305.741825925069861 ], [ 364129.475000001490116, 257301.779399998486042 ], [ 364126.755199998617172, 257298.738600000739098 ], [ 364119.97026663942961, 257296.642078864737414 ], [ 364113.065399996936321, 257294.982700001448393 ], [ 364102.678099997341633, 257294.902100000530481 ], [ 364096.24187458580127, 257291.097333817248 ], [ 364090.165707004314754, 257286.740565430052811 ], [ 364084.496808576572221, 257281.865646571852267 ], [ 364079.279226178303361, 257276.510454962291988 ], [ 364074.55349999666214, 257270.716600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601062900", "MAP": "C9-239-T79", "PARCEL_NAM": "404-29", "ACRE": ".14", "LONGITUDE": -64.89156153, "LATITUDE": 18.34502568, "OBJECTID_1": 20865, "PARCEL_NO_": "105601062900", "Tax_Legal_": "404-29&POR 215 ANNAS RET NEW QTR.", "Name": "TODMAN, IRA E", "Address": "PO Box 8797", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 189400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.460485694, "SHAPE_Area": 745.482594554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362977.151500001549721, 257328.35249999910593 ], [ 362964.998700000345707, 257305.228700000792742 ], [ 362951.671499997377396, 257306.037300001829863 ], [ 362941.938199996948242, 257312.712600000202656 ], [ 362949.781900003552437, 257338.530200000852346 ], [ 362970.814400002360344, 257330.680799998342991 ], [ 362977.151500001549721, 257328.35249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602084800", "MAP": "C9-272-T81", "PARCEL_NAM": "215.252", "ACRE": ".139", "LONGITUDE": -64.89041884, "LATITUDE": 18.34504523, "OBJECTID_1": 21417, "PARCEL_NO_": "105602084800", "Tax_Legal_": "ANNAS RETREAT 215-252 NEW QTR", "Name": "FORBES, RAWLEIGH & JOYCELYN", "Address": "PO Box 8476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.050342939800004, "SHAPE_Area": 420.66919098599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363087.70269999653101, 257334.803899999707937 ], [ 363087.103200003504753, 257310.523200001567602 ], [ 363070.15259999781847, 257312.495400000363588 ], [ 363071.536899998784065, 257339.315699998289347 ], [ 363077.200900003314018, 257337.03999999910593 ], [ 363087.70269999653101, 257334.803899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89451837, "LATITUDE": 18.34499402, "OBJECTID_1": 20580, "PARCEL_NO_": "105601025100", "Tax_Legal_": "ANNAS RETREAT 195 NEW QTR", "Name": "THE ELAINE FAHIE TRUST", "Address": "PO Box 51", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28500, "Improved_V": 44700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.229492579, "SHAPE_Area": 789.93286300099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362653.0625, 257335.679499998688698 ], [ 362657.2128000035882, 257321.781300000846386 ], [ 362658.996200002729893, 257301.741999998688698 ], [ 362657.421400003135204, 257297.29619999974966 ], [ 362654.212300002574921, 257295.370099999010563 ], [ 362649.369000002741814, 257295.963700000196695 ], [ 362628.262800000607967, 257312.467399999499321 ], [ 362628.189099997282028, 257321.121599998325109 ], [ 362653.0625, 257335.679499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90439385000001, "LATITUDE": 18.34479783, "OBJECTID_1": 19868, "PARCEL_NO_": "105502022200", "Tax_Legal_": "WINTBERG ESTATE 1-S-3 GR NORTHSIDE QTR", "Name": "CHANDLER, EARL & MARILYN", "Address": "PO Box 303954", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 115400, "Improved_V": 439900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.612955422, "SHAPE_Area": 2683.2341098900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361628.075000002980232, 257251.930100001394749 ], [ 361587.001599997282028, 257245.894400000572205 ], [ 361582.286799997091293, 257326.071400001645088 ], [ 361607.278800003230572, 257326.698100000619888 ], [ 361613.090300001204014, 257307.114000000059605 ], [ 361622.177299998700619, 257281.646000001579523 ], [ 361625.523000001907349, 257267.530099999159575 ], [ 361628.075000002980232, 257251.930100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602034700", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-376", "ACRE": "0.12", "LONGITUDE": -64.88804582, "LATITUDE": 18.34501619, "OBJECTID_1": 21145, "PARCEL_NO_": "105602034700", "Tax_Legal_": "ANNAS RETREAT 394-376 NEW QTR", "Name": "KIRT BONNE and NELLIESER BONNE", "Address": "PO BOX 1042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 142600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.72022764099999, "SHAPE_Area": 641.76574117300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363322.623700000345707, 257303.373799998313189 ], [ 363313.639200001955032, 257316.810300000011921 ], [ 363315.160099998116493, 257327.588500000536442 ], [ 363329.634199999272823, 257332.350999999791384 ], [ 363344.885799996554852, 257340.497400000691414 ], [ 363347.304799996316433, 257340.517200000584126 ], [ 363348.926399998366833, 257339.475000001490116 ], [ 363348.956900000572205, 257335.886700000613928 ], [ 363338.616899996995926, 257319.125700000673532 ], [ 363331.430200003087521, 257310.834199998527765 ], [ 363322.623700000345707, 257303.373799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9025117, "LATITUDE": 18.344805, "OBJECTID_1": 19803, "PARCEL_NO_": "105502011800", "Tax_Legal_": "219 WINTBERG GT. NORTHSIDE", "Name": "HANLEY, WINGROVE & DOREEN", "Address": "PO Box 10356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 178400, "Improved_V": 89500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.29082567399999, "SHAPE_Area": 3424.4892781399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361838.134199999272823, 257299.245600000023842 ], [ 361817.621399998664856, 257246.093199998140335 ], [ 361779.550300002098083, 257266.257699999958277 ], [ 361763.341300003230572, 257275.835299998521805 ], [ 361785.482900001108646, 257327.101199999451637 ], [ 361838.134199999272823, 257299.245600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701012300", "MAP": "D9-2923-T85", "PARCEL_NAM": "19-B-1", "ACRE": ".546", "LONGITUDE": -64.88229556, "LATITUDE": 18.34490747, "OBJECTID_1": 21856, "PARCEL_NO_": "105701012300", "Tax_Legal_": "19-B-1 ESTATE ANNA'S RETREAT NEW QUARTER", "Name": "TODMAN, HENRY E. & ROCHELLE E", "Address": "PO Box 303545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88000, "Improved_V": 193600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.960240852, "SHAPE_Area": 2265.9663084700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363967.46509999781847, 257333.138399999588728 ], [ 363954.948899999260902, 257287.861999999731779 ], [ 363905.650600001215935, 257300.757399998605251 ], [ 363905.632600001990795, 257302.868099998682737 ], [ 363907.227300003170967, 257304.99210000038147 ], [ 363912.740199998021126, 257320.44709999859333 ], [ 363922.264899998903275, 257338.256900001317263 ], [ 363923.823600001633167, 257344.60249999910593 ], [ 363967.46509999781847, 257333.138399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602088800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8912022, "LATITUDE": 18.34497351, "OBJECTID_1": 21454, "PARCEL_NO_": "105602088800", "Tax_Legal_": "404-27 ANNAS RETREAT NEW QTR.", "Name": "NICHOLAS, ETHEL & CHARLES", "Address": "P.O. BOX 4189", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 140500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.738578158, "SHAPE_Area": 562.02477502800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363008.779399998486042, 257322.969999998807907 ], [ 363002.533900000154972, 257298.854200001806021 ], [ 362996.060000002384186, 257301.545400001108646 ], [ 362982.329300001263618, 257304.177299998700619 ], [ 362982.280799999833107, 257309.876400001347065 ], [ 362990.250399999320507, 257320.918499998748302 ], [ 362993.342600002884865, 257336.564699999988079 ], [ 363008.779399998486042, 257322.969999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601017600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-41", "ACRE": ".115", "LONGITUDE": -64.89865737, "LATITUDE": 18.34501389, "OBJECTID_1": 20513, "PARCEL_NO_": "105601017600", "Tax_Legal_": "146-41 ANNAS RETREAT 1 NEW QTR", "Name": "MULRAIN, MARIA & HENRY", "Address": "TUTU 146-41", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 55600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.945858785599995, "SHAPE_Area": 464.83606066800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362222.626500003039837, 257316.324599999934435 ], [ 362210.688299998641014, 257297.861800000071526 ], [ 362195.285599999129772, 257307.445999998599291 ], [ 362203.966300003230572, 257329.68189999833703 ], [ 362222.626500003039837, 257316.324599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602040100", "MAP": "B9-166-T67", "PARCEL_NAM": "143-A-12", "ACRE": "0.23", "LONGITUDE": -64.89099079, "LATITUDE": 18.34494498, "OBJECTID_1": 21180, "PARCEL_NO_": "105602040100", "Tax_Legal_": "ANNAS RETREAT 143A-12 NEW QTR", "Name": "VINCENT & SHIRLEY JEFFERS & ARLETTE V VIOLENES", "Address": "PO Box 503231", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30500, "Improved_V": 708200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.7311907, "SHAPE_Area": 929.67349307200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363032.126500003039837, 257327.383000001311302 ], [ 363026.813199996948242, 257288.498199999332428 ], [ 363002.533900000154972, 257298.854200001806021 ], [ 363008.779399998486042, 257322.969999998807907 ], [ 363011.106600001454353, 257333.754799999296665 ], [ 363017.593099996447563, 257329.585999999195337 ], [ 363023.16889999806881, 257337.653200000524521 ], [ 363032.126500003039837, 257327.383000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702041800", "MAP": "F9-", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87291816, "LATITUDE": 18.34502612, "OBJECTID_1": 22582, "PARCEL_NO_": "105702041800", "Tax_Legal_": "SMITH BAY 56C-B EAST END QTR", "Name": "SHARPE, LAWRENCE, DERICK, ROGER, TIMOTHY, DEBRA & TREVOR", "Address": "PO Box 8735", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15600, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.181148520999997, "SHAPE_Area": 483.64387892000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364937.602899998426437, 257324.190999999642372 ], [ 364914.144299998879433, 257332.864999998360872 ], [ 364919.628499999642372, 257351.697200000286102 ], [ 364943.909500002861023, 257341.130100000649691 ], [ 364937.602899998426437, 257324.190999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602084400", "MAP": "C9-272-T81", "PARCEL_NAM": "215-248", "ACRE": ".141", "LONGITUDE": -64.88972759000001, "LATITUDE": 18.34498177, "OBJECTID_1": 21413, "PARCEL_NO_": "105602084400", "Tax_Legal_": "215-248 ANNAS RETREAT NEW QTR.", "Name": "FREEMAN, ELAINE E", "Address": "PO Box 11604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 105900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.251818143099996, "SHAPE_Area": 517.0055768 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363163.785599999129772, 257301.440499998629093 ], [ 363147.641400001943111, 257303.419300001114607 ], [ 363143.606200002133846, 257303.808499999344349 ], [ 363144.148199997842312, 257334.843699999153614 ], [ 363150.595100000500679, 257335.318599998950958 ], [ 363155.420400001108646, 257336.835799999535084 ], [ 363163.785599999129772, 257301.440499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601015400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-54", "ACRE": ".156", "LONGITUDE": -64.89789643, "LATITUDE": 18.34500363, "OBJECTID_1": 20491, "PARCEL_NO_": "105601015400", "Tax_Legal_": "146-54 ANNAS RETREAT NEW QTR", "Name": "FRAZER, SINCLAIR & EMELDA", "Address": "PO Box 302892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 139800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.69290034700001, "SHAPE_Area": 629.08594228499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362305.777400001883507, 257305.183899998664856 ], [ 362282.466300003230572, 257296.549400001764297 ], [ 362272.580099999904633, 257321.166400000452995 ], [ 362293.477700002491474, 257329.147900000214577 ], [ 362305.777400001883507, 257305.183899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601025800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-123", "ACRE": ".154", "LONGITUDE": -64.89531912, "LATITUDE": 18.34498005, "OBJECTID_1": 20587, "PARCEL_NO_": "105601025800", "Tax_Legal_": "ANNAS RETREAT 146-123 1 NEW QTR", "Name": "MURPHY, JOSEPHINE H. & MERVIN", "Address": "PO Box 5416", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 20500, "Improved_V": 91600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.92190368, "SHAPE_Area": 628.02361554100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362545.334899999201298, 257297.434300001710653 ], [ 362542.954199999570847, 257300.864900000393391 ], [ 362557.978799998760223, 257327.72410000115633 ], [ 362561.220200002193451, 257325.85080000013113 ], [ 362568.480599999427795, 257325.488099999725819 ], [ 362574.104999996721745, 257327.856100000441074 ], [ 362576.500600002706051, 257330.620000001043081 ], [ 362572.697400003671646, 257303.779899999499321 ], [ 362545.334899999201298, 257297.434300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601025600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-122", "ACRE": ".148", "LONGITUDE": -64.89510029, "LATITUDE": 18.34500825, "OBJECTID_1": 20585, "PARCEL_NO_": "105601025600", "Tax_Legal_": "146-122 ANNAS RETREAT\n1 NEW QTR", "Name": "Shawn C Browne & Shaneka N Zakers-Browne", "Address": "Po Box 502861", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.125030265600003, "SHAPE_Area": 444.24198278199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362591.242600001394749, 257303.931699998676777 ], [ 362581.548900000751019, 257305.963300000876188 ], [ 362572.697400003671646, 257303.779899999499321 ], [ 362576.500600002706051, 257330.620000001043081 ], [ 362598.36089999973774, 257320.244199998676777 ], [ 362591.242600001394749, 257303.931699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602084700", "MAP": "C9-272-T81", "PARCEL_NAM": "215-251", "ACRE": ".139", "LONGITUDE": -64.89025214, "LATITUDE": 18.34502521, "OBJECTID_1": 21416, "PARCEL_NO_": "105602084700", "Tax_Legal_": "215-251 ANNAS RETREAT NEW QTR.", "Name": "BROOKS, PETRA & JOHN", "Address": "PO Box 6101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18600, "Improved_V": 1100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.226640825000004, "SHAPE_Area": 454.02766707799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363106.249700002372265, 257334.744600001722574 ], [ 363104.861800000071526, 257308.346599999815226 ], [ 363087.103200003504753, 257310.523200001567602 ], [ 363087.70269999653101, 257334.803899999707937 ], [ 363094.966700002551079, 257334.019000001251698 ], [ 363106.249700002372265, 257334.744600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602084600", "MAP": "C9-272-T81", "PARCEL_NAM": "215-250", "ACRE": ".139", "LONGITUDE": -64.89008437, "LATITUDE": 18.34501693, "OBJECTID_1": 21415, "PARCEL_NO_": "105602084600", "Tax_Legal_": "215-250 ANNAS RETREAT NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 34700, "Improved_V": 62000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.048761186999997, "SHAPE_Area": 479.474609773 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363123.986800000071526, 257335.100900001823902 ], [ 363121.812399998307228, 257306.374400001019239 ], [ 363104.861800000071526, 257308.346599999815226 ], [ 363106.249700002372265, 257334.744600001722574 ], [ 363123.986800000071526, 257335.100900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602084500", "MAP": "C9-272-T81", "PARCEL_NAM": "215-249", "ACRE": ".139", "LONGITUDE": -64.8899033, "LATITUDE": 18.34500281, "OBJECTID_1": 21414, "PARCEL_NO_": "105602084500", "Tax_Legal_": "ANNAS RETREAT 215-249 NEW QTR.", "Name": "HUGGINS, ELSA L", "Address": "6259 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.95597765, "SHAPE_Area": 628.74568620100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363143.606200002133846, 257303.808499999344349 ], [ 363121.812399998307228, 257306.374400001019239 ], [ 363123.986800000071526, 257335.100900001823902 ], [ 363144.148199997842312, 257334.843699999153614 ], [ 363143.606200002133846, 257303.808499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601015900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-64", "ACRE": ".128", "LONGITUDE": -64.89678056, "LATITUDE": 18.34499004, "OBJECTID_1": 20496, "PARCEL_NO_": "105601015900", "Tax_Legal_": "146-64 ANNAS RETREAT NO.1 NEW QTR", "Name": "NASH (LIFE ESTATE), EUNICE E.", "Address": "PO Box 6421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17800, "Improved_V": 144900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.667656740599995, "SHAPE_Area": 523.21682095000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362423.455899998545647, 257311.213300000876188 ], [ 362408.258199997246265, 257296.734600000083447 ], [ 362407.433899998664856, 257298.838799998164177 ], [ 362390.407899998128414, 257309.676300000399351 ], [ 362403.150600001215935, 257328.356800001114607 ], [ 362411.26410000026226, 257322.512600000947714 ], [ 362423.455899998545647, 257311.213300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502022400", "MAP": "D9-2322-T83", "PARCEL_NAM": "1-V-1 REM", "ACRE": "0.57", "LONGITUDE": -64.90379744000001, "LATITUDE": 18.34463489, "OBJECTID_1": 19870, "PARCEL_NO_": "105502022400", "Tax_Legal_": "WINTBERG ESTATE 1V-1 GT. NORTHSIDE", "Name": "WEBSTER, PATRICK & VERNICE", "Address": "PO Box 7511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73100, "Improved_V": 377100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.73098955699999, "SHAPE_Area": 1880.30510602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361654.79839999973774, 257238.638799998909235 ], [ 361649.962300002574921, 257238.388199999928474 ], [ 361646.729900002479553, 257239.2060999982059 ], [ 361641.026399999856949, 257246.125500001013279 ], [ 361637.734600000083447, 257253.909000001847744 ], [ 361679.259499996900558, 257313.298300001770258 ], [ 361680.743500001728535, 257299.7972999997437 ], [ 361681.80179999768734, 257263.549400001764297 ], [ 361686.683600001037121, 257256.636700000613928 ], [ 361692.61599999666214, 257248.2364999987185 ], [ 361674.070799998939037, 257248.084699999541044 ], [ 361669.259900003671646, 257244.878899998962879 ], [ 361654.79839999973774, 257238.638799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88765172, "LATITUDE": 18.34494157, "OBJECTID_1": 21143, "PARCEL_NO_": "105602034500", "Tax_Legal_": "394-242 ANNAS RETREAT NO.1 NEW QTR", "Name": "JACKSON, KENNETH L JR., DARLENE L. & YVETTE T.", "Address": "PO Box 1202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26300, "Improved_V": 253000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.67101811000001, "SHAPE_Area": 986.00982280400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363371.859200000762939, 257297.866200000047684 ], [ 363348.305299997329712, 257317.727299999445677 ], [ 363359.440800003707409, 257335.761399999260902 ], [ 363399.965000003576279, 257311.606199998408556 ], [ 363395.141500003635883, 257309.877999998629093 ], [ 363382.321400001645088, 257300.273800000548363 ], [ 363375.109600000083447, 257294.9375 ], [ 363371.859200000762939, 257297.866200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602038200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88720632, "LATITUDE": 18.34490318, "OBJECTID_1": 21175, "PARCEL_NO_": "105602038200", "Tax_Legal_": "ANNAS RETREAT 394-236 NEW QTR", "Name": "ARROYO, ROGER AND JULIE ARROYO", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38900, "Improved_V": 160900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.586428431, "SHAPE_Area": 1063.7125051200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363435.334899999201298, 257324.561299998313189 ], [ 363431.421999998390675, 257310.597100000828505 ], [ 363428.362199999392033, 257291.151500001549721 ], [ 363425.165700003504753, 257287.747800000011921 ], [ 363417.140299998223782, 257283.249099999666214 ], [ 363404.828100003302097, 257308.690699998289347 ], [ 363399.965000003576279, 257311.606199998408556 ], [ 363412.660999998450279, 257335.77479999884963 ], [ 363435.334899999201298, 257324.561299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601024100", "MAP": "B9-178-T67", "PARCEL_NAM": "196", "ACRE": "0.22", "LONGITUDE": -64.89419416, "LATITUDE": 18.34491307, "OBJECTID_1": 20573, "PARCEL_NO_": "105601024100", "Tax_Legal_": "ANNAS RETREAT 196 NEW QTR", "Name": "ABRAHAM, RUPERT & YVETTE", "Address": "4386 Luxembourg Dr", "City": "Decatur", "State": "Georgia", "Zip": 30034, "Country": "United States", "Land_Value": 27600, "Improved_V": 120200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.614335751, "SHAPE_Area": 1090.604732 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362692.200699999928474, 257284.915199998766184 ], [ 362668.01129999756813, 257284.717300001531839 ], [ 362666.915500000119209, 257318.694299999624491 ], [ 362666.0641999989748, 257323.964699998497963 ], [ 362666.832800000905991, 257328.403999999165535 ], [ 362670.052599996328354, 257329.0636 ], [ 362695.109499998390675, 257322.091499999165535 ], [ 362692.200699999928474, 257284.915199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601028800", "MAP": "404-94", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.89334012, "LATITUDE": 18.34499874, "OBJECTID_1": 20612, "PARCEL_NO_": "105601028800", "Tax_Legal_": "404-94 ANNAS RETREAT NEW QTR.", "Name": "HENRY, DAWN Y", "Address": "PO Box 895", "City": "Cruz Bay", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 20200, "Improved_V": 253200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.203469075, "SHAPE_Area": 702.61562919300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362790.239900000393391, 257324.558800000697374 ], [ 362787.174699999392033, 257305.746399998664856 ], [ 362750.872699998319149, 257307.560300000011921 ], [ 362754.715400002896786, 257329.756499998271465 ], [ 362760.38120000064373, 257327.269799999892712 ], [ 362768.460500001907349, 257325.436099998652935 ], [ 362790.239900000393391, 257324.558800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502013300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-33", "ACRE": "0.14", "LONGITUDE": -64.89984647, "LATITUDE": 18.34492566, "OBJECTID_1": 19832, "PARCEL_NO_": "105502013300", "Tax_Legal_": "146-23 ANNAS RETREAT 1 NEW QTR", "Name": "O'NEAL, BERYL", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17600, "Improved_V": 120800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.10023964, "SHAPE_Area": 786.18818497300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362096.003100000321865, 257319.087900001555681 ], [ 362089.870899997651577, 257281.674199998378754 ], [ 362082.596100002527237, 257283.725600000470877 ], [ 362074.511399999260902, 257286.192499998956919 ], [ 362067.233000002801418, 257288.66609999909997 ], [ 362078.221100002527237, 257324.008699998259544 ], [ 362080.648999996483326, 257322.973099999129772 ], [ 362096.003100000321865, 257319.087900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501014100", "MAP": "G9-1287-T69", "PARCEL_NAM": "1CD-8", "ACRE": null, "LONGITUDE": -64.90918601, "LATITUDE": 18.34477768, "OBJECTID_1": 19694, "PARCEL_NO_": "105501014100", "Tax_Legal_": "WINTBERG ESTATE 1CD-8 GR NORTHSIDE QTR", "Name": "FLORENCE V RICHARDSON REVOCABLE TRUST", "Address": "PO Box 1327", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47600, "Improved_V": 323600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.95038946099999, "SHAPE_Area": 1890.3247453500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361123.04110000282526, 257280.938299998641014 ], [ 361106.376500003039837, 257249.348999999463558 ], [ 361100.710699997842312, 257251.835799999535084 ], [ 361077.2449000030756, 257261.353999998420477 ], [ 361063.501599997282028, 257265.46339999884367 ], [ 361100.165799997746944, 257315.792599998414516 ], [ 361106.745800003409386, 257300.647799998521805 ], [ 361107.586300000548363, 257296.643899999558926 ], [ 361111.677199997007847, 257289.711300000548363 ], [ 361116.556400001049042, 257284.896000001579523 ], [ 361118.989799998700619, 257283.227200001478195 ], [ 361123.04110000282526, 257280.938299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86272663, "LATITUDE": 18.34485296, "OBJECTID_1": 23736, "PARCEL_NO_": "105801011400", "Tax_Legal_": "2A ESTATE SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "SUGAR BAY CLUB & RESORT CORP.", "Address": "6500 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 147700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.54033524600001, "SHAPE_Area": 1723.0936243399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365994.540100000798702, 257349.095800001174212 ], [ 366011.433100000023842, 257353.878100000321865 ], [ 366031.574699997901917, 257355.942800000309944 ], [ 366011.10869999974966, 257297.302400000393391 ], [ 365982.828400000929832, 257304.037000000476837 ], [ 365994.540100000798702, 257349.095800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86242402000001, "LATITUDE": 18.34481364, "OBJECTID_1": 23737, "PARCEL_NO_": "105801011500", "Tax_Legal_": "SMITH BAY 2B EASTEND QTR.", "Name": "SUGAR BAY CLUB & RESORT CORP.", "Address": "6500 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 147700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.49504793899999, "SHAPE_Area": 2159.16713734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366065.481200002133846, 257351.365100000053644 ], [ 366041.838500000536442, 257286.999200001358986 ], [ 366021.612300001084805, 257294.855200000107288 ], [ 366011.10869999974966, 257297.302400000393391 ], [ 366031.574699997901917, 257355.942800000309944 ], [ 366051.745099999010563, 257354.630199998617172 ], [ 366065.481200002133846, 257351.365100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701050500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87458533, "LATITUDE": 18.34503596, "OBJECTID_1": 22107, "PARCEL_NO_": "105701050500", "Tax_Legal_": "SMITH BAY 25 EAST END QTR", "Name": "HATCHETTE, CLAIRE", "Address": "PO Box 8242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15600, "Improved_V": 112300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.56056998, "SHAPE_Area": 560.74684223199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364771.425200000405312, 257331.907999999821186 ], [ 364734.367200002074242, 257327.804999999701977 ], [ 364733.425999999046326, 257343.629299998283386 ], [ 364772.116400003433228, 257345.423599999397993 ], [ 364772.217100001871586, 257333.603199999779463 ], [ 364771.425200000405312, 257331.907999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601015300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-55", "ACRE": ".229", "LONGITUDE": -64.89814448, "LATITUDE": 18.34494839, "OBJECTID_1": 20490, "PARCEL_NO_": "105601015300", "Tax_Legal_": "146-55 ANNAS RETREAT NEW QTR", "Name": "TAYLOR,P.,JR, G. LLOYD,G. JOHNSON,G. GEORGE,G. SPRAUVE&T. CONNOR", "Address": "4215 Annas Retreat NO. 272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 145200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.024857161, "SHAPE_Area": 856.56870951999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362282.466300003230572, 257296.549400001764297 ], [ 362259.941699996590614, 257290.243299998342991 ], [ 362242.906599998474121, 257302.136199999600649 ], [ 362253.201700001955032, 257324.174199998378754 ], [ 362262.907999999821186, 257320.665100000798702 ], [ 362272.580099999904633, 257321.166400000452995 ], [ 362282.466300003230572, 257296.549400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88132946, "LATITUDE": 18.34480136, "OBJECTID_1": 21864, "PARCEL_NO_": "105701013100", "Tax_Legal_": "20-C ANNAS RETREAT NEW QTR", "Name": "GARVEY, ROY & FALLICETA", "Address": "PO BOX 8682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 83600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.009808518, "SHAPE_Area": 2963.6536286800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364059.146700002253056, 257267.183200001716614 ], [ 364006.500799998641014, 257294.405600000172853 ], [ 364016.60700000077486, 257338.606899999082088 ], [ 364073.196400001645088, 257321.760299999266863 ], [ 364059.146700002253056, 257267.183200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87131807, "LATITUDE": 18.34490093, "OBJECTID_1": 22332, "PARCEL_NO_": "105702020700", "Tax_Legal_": "SMITH BAY 67 EAST END QTR", "Name": "CHESTERFIELD, ALETA & TONIKA WILLIAMS", "Address": "4500 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022015, "Country": "United States", "Land_Value": 26000, "Improved_V": 143000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.857078599, "SHAPE_Area": 1065.4981475899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365121.418799996376038, 257328.439699999988079 ], [ 365111.127300001680851, 257305.979600001126528 ], [ 365076.355200000107288, 257317.516199998557568 ], [ 365084.9746999964118, 257346.928800001740456 ], [ 365121.418799996376038, 257328.439699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601018300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-61", "ACRE": ".118", "LONGITUDE": -64.8972224, "LATITUDE": 18.34496414, "OBJECTID_1": 20520, "PARCEL_NO_": "105601018300", "Tax_Legal_": "146-61 ANNAS RETREAT NEW QTR", "Name": "LEE, EDITH M", "Address": "146-61 Annas RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 81300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.953966076, "SHAPE_Area": 640.40367181500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362370.345299996435642, 257298.324099998921156 ], [ 362348.623499996960163, 257292.446800000965595 ], [ 362347.757799997925758, 257299.405799999833107 ], [ 362349.966399997472763, 257324.121800001710653 ], [ 362374.998000003397465, 257320.104800000786781 ], [ 362370.345299996435642, 257298.324099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701051400", "MAP": "F9-2649-T70", "PARCEL_NAM": "24", "ACRE": "0.23", "LONGITUDE": -64.87491154, "LATITUDE": 18.34495085, "OBJECTID_1": 22117, "PARCEL_NO_": "105701051400", "Tax_Legal_": "SMITH BAY ESTATE 24 1,2&3 EASTEND QTR.", "Name": "HUGHES, VIRGIL (LIFE ESTATE)", "Address": "4920 Prince Georges Ave", "City": "Beltsville", "State": "Maryland", "Zip": 20705, "Country": "United States", "Land_Value": 35900, "Improved_V": 217600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.873961063, "SHAPE_Area": 987.14317525700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364734.48589999973774, 257313.873799998313189 ], [ 364703.873000003397465, 257310.456799998879433 ], [ 364701.383900001645088, 257318.669100001454353 ], [ 364702.096699997782707, 257329.651799999177456 ], [ 364703.353900000452995, 257334.418400000780821 ], [ 364702.947899997234344, 257342.682399999350309 ], [ 364707.627599999308586, 257342.995999999344349 ], [ 364733.425999999046326, 257343.629299998283386 ], [ 364734.367200002074242, 257327.804999999701977 ], [ 364734.48589999973774, 257313.873799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701051500", "MAP": "D9-263-T60", "PARCEL_NAM": "36", "ACRE": "0.43", "LONGITUDE": -64.87542637, "LATITUDE": 18.34494841, "OBJECTID_1": 22118, "PARCEL_NO_": "105701051500", "Tax_Legal_": "SMITH BAY 36 EAST END QUARTER", "Name": "COLYAR, ALISON GILHAM", "Address": "34 Belknap Ave", "City": "Yonkers", "State": "New York", "Zip": 10710, "Country": "United States", "Land_Value": 55900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.367133819, "SHAPE_Area": 1753.1699519700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364698.136900000274181, 257336.072500001639128 ], [ 364695.666000001132488, 257327.277100000530481 ], [ 364694.911799997091293, 257321.149300001561642 ], [ 364695.763099998235703, 257315.878899998962879 ], [ 364632.912100002169609, 257310.509300000965595 ], [ 364628.653899997472763, 257337.072299998253584 ], [ 364677.811999998986721, 257340.640999998897314 ], [ 364697.521799996495247, 257343.570000000298023 ], [ 364698.136900000274181, 257336.072500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602040200", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-11", "ACRE": "0.23", "LONGITUDE": -64.89077211, "LATITUDE": 18.34482812, "OBJECTID_1": 21181, "PARCEL_NO_": "105602040200", "Tax_Legal_": "ANNAS RETREAT 143A-11 NEW QTR", "Name": "RICHARDS, PAUL", "Address": "PO Box 4910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 220100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.92528762200001, "SHAPE_Area": 959.03154713799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363032.126500003039837, 257327.383000001311302 ], [ 363034.565200001001358, 257325.080899998545647 ], [ 363044.321900002658367, 257315.661499999463558 ], [ 363049.165100000798702, 257315.067899998277426 ], [ 363053.200300000607967, 257314.678700000047684 ], [ 363056.745600000023842, 257277.133099999278784 ], [ 363044.62219999730587, 257280.411400001496077 ], [ 363026.813199996948242, 257288.498199999332428 ], [ 363032.126500003039837, 257327.383000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701016400", "MAP": "C9-260-T80", "PARCEL_NAM": "7-9", "ACRE": ".50", "LONGITUDE": -64.87955211000001, "LATITUDE": 18.34475366, "OBJECTID_1": 21893, "PARCEL_NO_": "105701016400", "Tax_Legal_": "7-9 TABOR & HARMONY EAST END QTR.", "Name": "FAHIE, ALFREDO & JENIFA", "Address": "6718 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62900, "Improved_V": 113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.383589247, "SHAPE_Area": 3274.1938933800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364231.923000000417233, 257336.780499998480082 ], [ 364238.43469999730587, 257329.656599998474121 ], [ 364247.361699998378754, 257322.974700000137091 ], [ 364251.429200001060963, 257318.786100000143051 ], [ 364256.340800002217293, 257310.171500001102686 ], [ 364264.592699997127056, 257288.074200000613928 ], [ 364270.3412000015378, 257275.87779999896884 ], [ 364238.079700000584126, 257276.669300001114607 ], [ 364199.364100001752377, 257277.829999998211861 ], [ 364198.444499999284744, 257291.121399998664856 ], [ 364185.36370000243187, 257312.123700000345707 ], [ 364231.923000000417233, 257336.780499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502013200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-22", "ACRE": "0.17", "LONGITUDE": -64.89964208000001, "LATITUDE": 18.34487634, "OBJECTID_1": 19831, "PARCEL_NO_": "105502013200", "Tax_Legal_": "146-22 ANNAS RETREAT 1 NEW QTR", "Name": "TURNBULL, NORWELL & JOYCE", "Address": "146-22 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 103900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.463633634, "SHAPE_Area": 906.863217491 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362116.187899999320507, 257316.08669999986887 ], [ 362114.925899997353554, 257274.913199998438358 ], [ 362089.870899997651577, 257281.674199998378754 ], [ 362096.003100000321865, 257319.087900001555681 ], [ 362116.187899999320507, 257316.08669999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601058900", "MAP": "D9-1739-T81", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.89309431, "LATITUDE": 18.34489261, "OBJECTID_1": 20830, "PARCEL_NO_": "105601058900", "Tax_Legal_": "ANNAS RETREAT 404-85 NEW QTR.", "Name": "BETSY BRATHWAITE", "Address": "PO Box 11431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014431, "Country": "United States", "Land_Value": 17600, "Improved_V": 81400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.63397378800001, "SHAPE_Area": 718.95597364800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362804.265500001609325, 257287.310100000351667 ], [ 362783.314000003039837, 257285.660900000482798 ], [ 362787.174699999392033, 257305.746399998664856 ], [ 362790.239900000393391, 257324.558800000697374 ], [ 362807.989600002765656, 257323.437600001692772 ], [ 362804.265500001609325, 257287.310100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8619957, "LATITUDE": 18.34463616, "OBJECTID_1": 23738, "PARCEL_NO_": "105801011600", "Tax_Legal_": "2C ESTATE SMITH BAY No.1,2&3 EASTWND QTR.", "Name": "SUGAR BAY CLUB & RESORT CORP.", "Address": "6500 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 147700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.79391470600001, "SHAPE_Area": 4400.9640670999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366118.184600003063679, 257317.388199999928474 ], [ 366113.03490000218153, 257259.295400001108646 ], [ 366041.838500000536442, 257286.999200001358986 ], [ 366065.481200002133846, 257351.365100000053644 ], [ 366077.611800000071526, 257347.242600001394749 ], [ 366085.709100000560284, 257343.298099998384714 ], [ 366114.111699998378754, 257322.210099998861551 ], [ 366118.184600003063679, 257317.388199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702041400", "MAP": "F9-2509-T69", "PARCEL_NAM": "56B-E", "ACRE": "0.20", "LONGITUDE": -64.87320877000001, "LATITUDE": 18.34486301, "OBJECTID_1": 22578, "PARCEL_NO_": "105702041400", "Tax_Legal_": "56BE SMITH BAY NOS 1,2&3 EAST END QTR", "Name": "HANLEY, MITCHELL, ANGELA, MARVIN & OTHERS", "Address": "P O BOX 2327", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 126600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.234378503, "SHAPE_Area": 828.57021138699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364914.144299998879433, 257332.864999998360872 ], [ 364901.565200001001358, 257294.976300001144409 ], [ 364883.722000002861023, 257307.073699999600649 ], [ 364891.497400000691414, 257340.912300001829863 ], [ 364914.144299998879433, 257332.864999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601018400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-86", "ACRE": "0.14", "LONGITUDE": -64.89701559, "LATITUDE": 18.34487361, "OBJECTID_1": 20521, "PARCEL_NO_": "105601018400", "Tax_Legal_": "146-86 ANNAS RETREAT NO.1 NEW QTR", "Name": "BROWN (LIFE ESTATE), ALVIN W.", "Address": "821 NW 196 Ter", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 20800, "Improved_V": 213900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.09112202700001, "SHAPE_Area": 673.25722337399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362407.433899998664856, 257298.838799998164177 ], [ 362392.902300000190735, 257300.830800000578165 ], [ 362385.794799998402596, 257283.251800000667572 ], [ 362380.940700002014637, 257285.111900001764297 ], [ 362377.767599999904633, 257278.964200001209974 ], [ 362373.764799997210503, 257275.554000001400709 ], [ 362370.345299996435642, 257298.324099998921156 ], [ 362374.998000003397465, 257320.104800000786781 ], [ 362390.407899998128414, 257309.676300000399351 ], [ 362407.433899998664856, 257298.838799998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701017900", "MAP": "D9-2923-T85", "PARCEL_NAM": "19-B-2", "ACRE": ".540", "LONGITUDE": -64.88188254000001, "LATITUDE": 18.3448043, "OBJECTID_1": 21907, "PARCEL_NO_": "105701017900", "Tax_Legal_": "EST. ANNA'S RETREAT 19-B-2 NEW QTR.", "Name": "KING, SHIRLEY LAKE", "Address": "PO Box 502911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 86800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.94192284799999, "SHAPE_Area": 1972.10930493 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363996.166199997067451, 257277.011300001293421 ], [ 363970.304799996316433, 257283.765799999237061 ], [ 363954.948899999260902, 257287.861999999731779 ], [ 363967.46509999781847, 257333.138399999588728 ], [ 364006.25620000064373, 257323.112300001084805 ], [ 364006.281400002539158, 257320.157200001180172 ], [ 364001.628799997270107, 257298.376499999314547 ], [ 363996.166199997067451, 257277.011300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601029000", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-84", "ACRE": ".14", "LONGITUDE": -64.89289393, "LATITUDE": 18.34489256, "OBJECTID_1": 20613, "PARCEL_NO_": "105601029000", "Tax_Legal_": "404-84 ANNAS RETREAT NEW QTR.", "Name": "PARRIS, CHARLES V., KENLYN K. C.,GLANVILLEA. & STEVELYN A.", "Address": "PO Box 8586", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15900, "Improved_V": 215400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.521742893, "SHAPE_Area": 788.14514888199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362809.101599998772144, 257287.5608000010252 ], [ 362804.265500001609325, 257287.310100000351667 ], [ 362807.989600002765656, 257323.437600001692772 ], [ 362831.405000001192093, 257319.829500000923872 ], [ 362827.635999999940395, 257288.978999998420477 ], [ 362809.101599998772144, 257287.5608000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602035000", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-375", "ACRE": "0.13", "LONGITUDE": -64.88835869, "LATITUDE": 18.34496689, "OBJECTID_1": 21148, "PARCEL_NO_": "105602035000", "Tax_Legal_": "394-375 ANNAS RETREAT NEW QTR", "Name": "BENJAMIN, SR., VINCENT E & NELLERINE O PETERSEN-BENJAMIN", "Address": "PO Box 8966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26200, "Improved_V": 194600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.922006925600002, "SHAPE_Area": 468.32431478900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363313.639200001955032, 257316.810300000011921 ], [ 363283.915399998426437, 257303.69029999896884 ], [ 363281.332800000905991, 257322.878699999302626 ], [ 363298.25280000269413, 257324.494800001382828 ], [ 363315.160099998116493, 257327.588500000536442 ], [ 363313.639200001955032, 257316.810300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601028100", "MAP": "D9-1739-T81", "PARCEL_NAM": null, "ACRE": ".15", "LONGITUDE": -64.8939698, "LATITUDE": 18.34487528, "OBJECTID_1": 20610, "PARCEL_NO_": "105601028100", "Tax_Legal_": "404-87 ANNAS RETREAT NEW QTR.", "Name": "PROSPER, DENNIS & KENDRA", "Address": "PO Box 9961", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 151900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.99499663500001, "SHAPE_Area": 720.82667389100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362716.129299998283386, 257315.7195999994874 ], [ 362713.164800003170967, 257285.086800001561642 ], [ 362692.200699999928474, 257284.915199998766184 ], [ 362695.109499998390675, 257322.091499999165535 ], [ 362716.129299998283386, 257315.7195999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701015700", "MAP": "C9-260-T80", "PARCEL_NAM": "7-16", "ACRE": ".50", "LONGITUDE": -64.87894142, "LATITUDE": 18.344747, "OBJECTID_1": 21886, "PARCEL_NO_": "105701015700", "Tax_Legal_": "7-16 TABOR & HARMONY EAST END QTR.", "Name": "BACHAN, GANGADEEN", "Address": "PO Box 502577", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 59500, "Improved_V": 52000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.4420942, "SHAPE_Area": 2222.90633759 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364325.744800001382828, 257303.562399998307228 ], [ 364285.758199997246265, 257264.605000000447035 ], [ 364273.478299997746944, 257286.247099999338388 ], [ 364270.209899999201298, 257291.28660000115633 ], [ 364263.622800000011921, 257307.275800000876188 ], [ 364292.418099999427795, 257334.742499999701977 ], [ 364325.744800001382828, 257303.562399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601018200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-51", "ACRE": ".181", "LONGITUDE": -64.89751844, "LATITUDE": 18.34491423, "OBJECTID_1": 20519, "PARCEL_NO_": "105601018200", "Tax_Legal_": "ANNAS RETREAT 146-51 NEW QTR", "Name": "BLAKE, MIRIAM", "Address": "PO Box 22-2857", "City": "CHRISTIANSTED", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 24700, "Improved_V": 108800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.052035069, "SHAPE_Area": 831.12002933700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362343.568000003695488, 257317.947700001299381 ], [ 362341.318099997937679, 257298.086500000208616 ], [ 362343.009800001978874, 257288.812300000339746 ], [ 362336.613300003111362, 257282.427099999040365 ], [ 362313.081000000238419, 257299.755300000309944 ], [ 362305.777400001883507, 257305.183899998664856 ], [ 362321.795800000429153, 257317.980599999427795 ], [ 362343.568000003695488, 257317.947700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601040100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-21", "ACRE": "0.20", "LONGITUDE": -64.89944329, "LATITUDE": 18.3448578, "OBJECTID_1": 20697, "PARCEL_NO_": "105601040100", "Tax_Legal_": "146-21 ANNAS RETREAT 1 NEW QTR", "Name": "LEERDAM, LUISA & MELISA & SAUNDERS, NICHOLE &NATASHA", "Address": "146-21 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 153900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.57427022100001, "SHAPE_Area": 822.01513048200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362138.778999999165535, 257314.582899998873472 ], [ 362130.283600002527237, 257270.605900000780821 ], [ 362114.925899997353554, 257274.913199998438358 ], [ 362116.187899999320507, 257316.08669999986887 ], [ 362138.778999999165535, 257314.582899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601026200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-136", "ACRE": ".143", "LONGITUDE": -64.89562605, "LATITUDE": 18.34488136, "OBJECTID_1": 20591, "PARCEL_NO_": "105601026200", "Tax_Legal_": "146-136 ANNAS RETREAT 1 NEW QTR", "Name": "GOMEZ, BERNICE", "Address": "PO Box 951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.523897218100004, "SHAPE_Area": 556.25286307500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362539.710500001907349, 257295.066199999302626 ], [ 362523.67960000038147, 257283.747099999338388 ], [ 362514.637500002980232, 257303.938000001013279 ], [ 362529.826200000941753, 257319.472199998795986 ], [ 362540.287500001490116, 257304.707400001585484 ], [ 362542.954199999570847, 257300.864900000393391 ], [ 362545.334899999201298, 257297.434300001710653 ], [ 362539.710500001907349, 257295.066199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601017700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-42", "ACRE": ".125", "LONGITUDE": -64.89847864, "LATITUDE": 18.3448826, "OBJECTID_1": 20514, "PARCEL_NO_": "105601017700", "Tax_Legal_": "146-42 ANNAS RETREAT 1 NEW QTR", "Name": "MATTHEW J NELSON REVOCABLE TRUST", "Address": "PO Box 8221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 154200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.758442369600004, "SHAPE_Area": 595.04391043400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362242.906599998474121, 257302.136199999600649 ], [ 362231.808899998664856, 257279.66950000077486 ], [ 362219.611699998378754, 257291.602000001817942 ], [ 362210.688299998641014, 257297.861800000071526 ], [ 362222.626500003039837, 257316.324599999934435 ], [ 362242.906599998474121, 257302.136199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601030200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-149", "ACRE": ".138", "LONGITUDE": -64.89612982, "LATITUDE": 18.34493261, "OBJECTID_1": 20615, "PARCEL_NO_": "105601030200", "Tax_Legal_": "146-149 ANNAS RETREAT 1 NEW QTR", "Name": "GREENE (LIFE ESTATE), DOROTHY", "Address": "46149 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 57200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.267492242900005, "SHAPE_Area": 553.43029148799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362494.420400001108646, 257310.738699998706579 ], [ 362472.838699996471405, 257288.397199999541044 ], [ 362472.010799996554852, 257290.923500001430511 ], [ 362458.116499997675419, 257312.763599999248981 ], [ 362466.951800003647804, 257316.846599999815226 ], [ 362476.62219999730587, 257317.559099998325109 ], [ 362485.50959999859333, 257315.520899999886751 ], [ 362494.420400001108646, 257310.738699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502013800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-28", "ACRE": "0.20", "LONGITUDE": -64.90073836000001, "LATITUDE": 18.34488762, "OBJECTID_1": 19837, "PARCEL_NO_": "105502013800", "Tax_Legal_": "ANNAS RETREAT 146-28 NEW QTR. 1", "Name": "DAVID, SANDRA A.", "Address": "PO Box 10508", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 166700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.81023827200001, "SHAPE_Area": 778.95130251 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362010.771300002932549, 257290.526000000536442 ], [ 361974.541199997067451, 257283.896699998527765 ], [ 361966.40259999781847, 257292.695999998599291 ], [ 361986.385999999940395, 257313.33559999987483 ], [ 361991.232799999415874, 257312.31980000063777 ], [ 361996.869800001382828, 257313.210299998521805 ], [ 362010.771300002932549, 257290.526000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601040200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-20", "ACRE": "0.21", "LONGITUDE": -64.89925484, "LATITUDE": 18.34482413, "OBJECTID_1": 20698, "PARCEL_NO_": "105601040200", "Tax_Legal_": "146-20 ANNAS RETREAT 1 NEW QTR", "Name": "THOMAS, A. E. , R. K. , A. O. , E. A. & A", "Address": "146-20 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 121000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.789329485, "SHAPE_Area": 968.99108773800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362163.008000001311302, 257310.137099999934435 ], [ 362147.255699999630451, 257266.10080000013113 ], [ 362130.283600002527237, 257270.605900000780821 ], [ 362138.778999999165535, 257314.582899998873472 ], [ 362153.310599997639656, 257312.590900000184774 ], [ 362163.008000001311302, 257310.137099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601059100", "MAP": "D9-3748-T86", "PARCEL_NAM": "404-83", "ACRE": ".14", "LONGITUDE": -64.89266347, "LATITUDE": 18.3448838, "OBJECTID_1": 20831, "PARCEL_NO_": "105601059100", "Tax_Legal_": "404-83 ANNAS RETREAT NEW QTR.", "Name": "FRANCIS, ERMINE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15900, "Improved_V": 123300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.55261874, "SHAPE_Area": 725.33921814200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362852.619099996984005, 257290.661100000143051 ], [ 362827.635999999940395, 257288.978999998420477 ], [ 362831.405000001192093, 257319.829500000923872 ], [ 362857.235799998044968, 257316.663400001823902 ], [ 362852.619099996984005, 257290.661100000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701031800", "MAP": "F9-2335-T68", "PARCEL_NAM": "20B-2", "ACRE": ".30", "LONGITUDE": -64.87624988, "LATITUDE": 18.34487791, "OBJECTID_1": 21966, "PARCEL_NO_": "105701031800", "Tax_Legal_": "SMITH BAY ESTATE 20B-2&20B-4 EAST END QTR", "Name": "WILLIAMS, JR., HENRY H.", "Address": "PO Box 8494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45500, "Improved_V": 23600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.489228303, "SHAPE_Area": 1639.91968176 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364615.993900001049042, 257308.682100001722574 ], [ 364550.74549999833107, 257300.759799998253584 ], [ 364550.665799997746944, 257310.12220000103116 ], [ 364550.723999999463558, 257317.872400000691414 ], [ 364550.729299999773502, 257318.590199999511242 ], [ 364550.79730000346899, 257327.651000000536442 ], [ 364550.797799997031689, 257327.705200001597404 ], [ 364550.897299997508526, 257340.97069999948144 ], [ 364554.49578915379243, 257339.410450020892313 ], [ 364557.955300003290176, 257337.562399998307228 ], [ 364560.885600000619888, 257336.447500001639128 ], [ 364569.820100001990795, 257333.424300000071526 ], [ 364575.480499997735023, 257331.570799998939037 ], [ 364589.997699998319149, 257331.267499998211861 ], [ 364598.894100002944469, 257328.173900000751019 ], [ 364606.197700001299381, 257322.745200000703335 ], [ 364615.993900001049042, 257308.682100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602035400", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-374", "ACRE": "0.14", "LONGITUDE": -64.88860213, "LATITUDE": 18.34489937, "OBJECTID_1": 21152, "PARCEL_NO_": "105602035400", "Tax_Legal_": "ANNAS RETREAT 394-374 NEW QTR", "Name": "DORBECK, LUTHER & FERNELLA", "Address": "374 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 145200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.0335238511, "SHAPE_Area": 502.28257425100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363282.308100000023842, 257303.0439000017941 ], [ 363261.421300001442432, 257293.795899998396635 ], [ 363259.596500001847744, 257318.690000001341105 ], [ 363281.332800000905991, 257322.878699999302626 ], [ 363283.915399998426437, 257303.69029999896884 ], [ 363282.308100000023842, 257303.0439000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702060100", "MAP": "F9-1994-T67", "PARCEL_NAM": "57-1", "ACRE": "0.37", "LONGITUDE": -64.87195717, "LATITUDE": 18.34477405, "OBJECTID_1": 22623, "PARCEL_NO_": "105702060100", "Tax_Legal_": "SMITH BAY 57-1 EAST END", "Name": "APOSTOLIC FAITH MISSION INC", "Address": "PO Box 305101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035101, "Country": "United States", "Land_Value": 128900, "Improved_V": 715900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.256132648, "SHAPE_Area": 1628.8844540600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365056.396999999880791, 257293.921500001102686 ], [ 365001.540700003504753, 257296.638900000602007 ], [ 365004.649099998176098, 257310.385400000959635 ], [ 365018.129799999296665, 257337.093499999493361 ], [ 365040.830700002610683, 257322.713899999856949 ], [ 365062.694600000977516, 257311.916000001132488 ], [ 365056.396999999880791, 257293.921500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87100009, "LATITUDE": 18.34481512, "OBJECTID_1": 22334, "PARCEL_NO_": "105702020900", "Tax_Legal_": "SMITH BAY 42 EAST END QTR", "Name": "ALETA CHESTERFIELD and TONIKA WILLIAMS", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 32500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.303933015, "SHAPE_Area": 945.41531731299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365140.235500000417233, 257296.718600001186132 ], [ 365111.127300001680851, 257305.979600001126528 ], [ 365121.418799996376038, 257328.439699999988079 ], [ 365125.376599997282028, 257337.126899998635054 ], [ 365151.291900001466274, 257324.040100000798702 ], [ 365140.235500000417233, 257296.718600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701038300", "MAP": "D9-528-T65", "PARCEL_NAM": "13AA", "ACRE": ".23", "LONGITUDE": -64.87767368, "LATITUDE": 18.34484306, "OBJECTID_1": 22024, "PARCEL_NO_": "105701038300", "Tax_Legal_": "13A & 13AA FRYDENDAHL NO.4 EAST END QTR", "Name": "SMITH BAY PLAZA LLC", "Address": "PO Box 7395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.698078674, "SHAPE_Area": 793.03463475800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364450.168200001120567, 257312.156599998474121 ], [ 364412.594899997115135, 257295.735800001770258 ], [ 364411.947700001299381, 257297.27760000154376 ], [ 364405.678900003433228, 257312.211800001561642 ], [ 364411.912299998104572, 257316.933200001716614 ], [ 364431.949699997901917, 257331.240499999374151 ], [ 364450.168200001120567, 257312.156599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601028000", "MAP": "D9-1739-T81", "PARCEL_NAM": null, "ACRE": ".20", "LONGITUDE": -64.89372689, "LATITUDE": 18.34482665, "OBJECTID_1": 20609, "PARCEL_NO_": "105601028000", "Tax_Legal_": "404-88 ANNAS RETREAT NEW QTR", "Name": "BRINN, JAVAITE", "Address": "6212 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 137400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.37938513100001, "SHAPE_Area": 779.80396842599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362750.138300001621246, 257299.110500000417233 ], [ 362747.836199998855591, 257285.370600000023842 ], [ 362737.35419999808073, 257285.284800000488758 ], [ 362713.164800003170967, 257285.086800001561642 ], [ 362716.129299998283386, 257315.7195999994874 ], [ 362733.130199998617172, 257307.837200000882149 ], [ 362743.669799998402596, 257301.168499998748302 ], [ 362750.138300001621246, 257299.110500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601060200", "MAP": "D9-9233-T018", "PARCEL_NAM": "404-82", "ACRE": "0.14", "LONGITUDE": -64.89240783, "LATITUDE": 18.34486512, "OBJECTID_1": 20838, "PARCEL_NO_": "105601060200", "Tax_Legal_": "404-82 ANNAS RETREAT NEW QTR.", "Name": "GRETA HART HYNDMAN REVOCABLE TRUST", "Address": "PO BOX 10389", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 104800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.228656739, "SHAPE_Area": 729.16754470299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362884.677400000393391, 257313.721599999815226 ], [ 362881.664300002157688, 257288.787900000810623 ], [ 362875.210199996829033, 257289.157299999147654 ], [ 362852.619099996984005, 257290.661100000143051 ], [ 362857.235799998044968, 257316.663400001823902 ], [ 362884.677400000393391, 257313.721599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701050600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87457782, "LATITUDE": 18.34489948, "OBJECTID_1": 22108, "PARCEL_NO_": "105701050600", "Tax_Legal_": "SMITH BAY 25A 1 2&3 EAST END QTR", "Name": "STEPHENS, MARIE LINDO", "Address": "25A SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.333131779, "SHAPE_Area": 574.27994065300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364769.961800001561642, 257314.375199999660254 ], [ 364734.48589999973774, 257313.873799998313189 ], [ 364734.367200002074242, 257327.804999999701977 ], [ 364771.425200000405312, 257331.907999999821186 ], [ 364771.480899997055531, 257325.364500001072884 ], [ 364769.961800001561642, 257314.375199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601030100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-150", "ACRE": ".119", "LONGITUDE": -64.89628959, "LATITUDE": 18.34483703, "OBJECTID_1": 20614, "PARCEL_NO_": "105601030100", "Tax_Legal_": "146-150 ANNAS RETREAT NEW QTR", "Name": "MOLYNEAUX, BERYL", "Address": "146-150 No Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 52800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.2834775221, "SHAPE_Area": 438.70815189299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362472.010799996554852, 257290.923500001430511 ], [ 362468.036799997091293, 257284.135999999940395 ], [ 362448.665500000119209, 257286.299499999731779 ], [ 362447.843099996447563, 257288.192600000649691 ], [ 362448.557700000703335, 257298.964200001209974 ], [ 362452.513700000941753, 257307.862500000745058 ], [ 362458.116499997675419, 257312.763599999248981 ], [ 362472.010799996554852, 257290.923500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702041900", "MAP": "G9-1014-T68", "PARCEL_NAM": "56C-2", "ACRE": "0.25", "LONGITUDE": -64.87304832, "LATITUDE": 18.34470538, "OBJECTID_1": 22583, "PARCEL_NO_": "105702041900", "Tax_Legal_": "SMITH BAY 56C-2 EAST END QTR", "Name": "SUTTON, BRENDA L. & SMITH, & KHANA S.", "Address": "PO Box 8281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32500, "Improved_V": 129900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.22025325000001, "SHAPE_Area": 1286.9389319899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364919.388599999248981, 257285.200800001621246 ], [ 364920.290200002491474, 257274.020199999213219 ], [ 364909.813500002026558, 257273.301100000739098 ], [ 364893.694499999284744, 257272.324799999594688 ], [ 364901.565200001001358, 257294.976300001144409 ], [ 364914.144299998879433, 257332.864999998360872 ], [ 364937.602899998426437, 257324.190999999642372 ], [ 364934.449600003659725, 257315.721500001847744 ], [ 364928.1266999989748, 257300.682100001722574 ], [ 364917.662699997425079, 257298.485500000417233 ], [ 364919.388599999248981, 257285.200800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601040300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-19", "ACRE": "0.22", "LONGITUDE": -64.89907098, "LATITUDE": 18.34477408, "OBJECTID_1": 20699, "PARCEL_NO_": "105601040300", "Tax_Legal_": "146-19 ANNAS RETREAT 1 NEW QTR", "Name": "HELEN PAGE REVOCABLE TRUST", "Address": "46019 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 139300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.07207744300001, "SHAPE_Area": 896.39510278399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362184.036799997091293, 257302.709899999201298 ], [ 362161.82150000333786, 257260.098299998790026 ], [ 362156.146700002253056, 257263.640399999916553 ], [ 362147.255699999630451, 257266.10080000013113 ], [ 362163.008000001311302, 257310.137099999934435 ], [ 362173.516999997198582, 257307.056699998676777 ], [ 362184.036799997091293, 257302.709899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602035500", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-373", "ACRE": "0.12", "LONGITUDE": -64.88879541, "LATITUDE": 18.34483297, "OBJECTID_1": 21153, "PARCEL_NO_": "105602035500", "Tax_Legal_": "394-373 ANNAS RETREAT NEW QTR", "Name": "Fleming, Laurie, W. Pinney & K. Rogers", "Address": "PO Box 395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16400, "Improved_V": 124400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.987070835699996, "SHAPE_Area": 516.66333995399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363261.421300001442432, 257293.795899998396635 ], [ 363240.536300003528595, 257284.336899999529123 ], [ 363241.909800000488758, 257312.423500001430511 ], [ 363244.325099997222424, 257312.865499999374151 ], [ 363246.727899998426437, 257314.785000000149012 ], [ 363259.596500001847744, 257318.690000001341105 ], [ 363261.421300001442432, 257293.795899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602035900", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-372", "ACRE": "0.30", "LONGITUDE": -64.88916001, "LATITUDE": 18.34485258, "OBJECTID_1": 21157, "PARCEL_NO_": "105602035900", "Tax_Legal_": "394-372 ANNAS RETREAT NEW QTR", "Name": "ROGERS, AGNES", "Address": "177 Meridian Dr", "City": "Stockbridge", "State": "Georgia", "Zip": 30281, "Country": "United States", "Land_Value": 46700, "Improved_V": 248600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.18281807400001, "SHAPE_Area": 1433.9973042900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363238.918300002813339, 257284.956900000572205 ], [ 363213.848899997770786, 257293.406500000506639 ], [ 363190.419100001454353, 257298.703200001269579 ], [ 363169.435199998319149, 257300.853500001132488 ], [ 363163.785599999129772, 257301.440499998629093 ], [ 363175.797600001096725, 257311.249200001358986 ], [ 363234.602600000798702, 257318.274300001561642 ], [ 363235.432300001382828, 257315.536899998784065 ], [ 363238.680900000035763, 257312.819299999624491 ], [ 363241.909800000488758, 257312.423500001430511 ], [ 363240.536300003528595, 257284.336899999529123 ], [ 363238.918300002813339, 257284.956900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601016000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-65", "ACRE": ".139", "LONGITUDE": -64.89661801, "LATITUDE": 18.34481922, "OBJECTID_1": 20497, "PARCEL_NO_": "105601016000", "Tax_Legal_": "146-65 ANNAS RETREAT NEW QTR", "Name": "PETERSEN, ELLEN & LOUIS", "Address": "5386 W Sweetwater Dr", "City": "Tucson", "State": "Arizona", "Zip": 85745, "Country": "United States", "Land_Value": 19200, "Improved_V": 134600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.646760326999996, "SHAPE_Area": 597.51131370500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362440.615000002086163, 257284.756000000983477 ], [ 362416.467000000178814, 257279.703200001269579 ], [ 362408.258199997246265, 257296.734600000083447 ], [ 362423.455899998545647, 257311.213300000876188 ], [ 362434.857500001788139, 257298.007699999958277 ], [ 362438.944799996912479, 257291.497299998998642 ], [ 362440.615000002086163, 257284.756000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601030300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-148", "ACRE": ".131", "LONGITUDE": -64.8959758, "LATITUDE": 18.3448172, "OBJECTID_1": 20616, "PARCEL_NO_": "105601030300", "Tax_Legal_": "146-148 ANNAS RETREAT 1 NEW QTR", "Name": "VAZQUEZ, JOSE & PETRA", "Address": "146-148 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 129100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.888195374000006, "SHAPE_Area": 602.8767555 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362509.884199999272823, 257293.977699998766184 ], [ 362486.635999999940395, 257277.955400001257658 ], [ 362485.817100003361702, 257279.426399998366833 ], [ 362472.838699996471405, 257288.397199999541044 ], [ 362494.420400001108646, 257310.738699998706579 ], [ 362499.285199999809265, 257307.612100001424551 ], [ 362503.350900001823902, 257303.63459999859333 ], [ 362509.884199999272823, 257293.977699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8878416, "LATITUDE": 18.34480256, "OBJECTID_1": 21146, "PARCEL_NO_": "105602034800", "Tax_Legal_": "394-387 ANNAS RETREAT NEW QTR", "Name": "SCATLIFFE, NOEL, GENEVIEVE, & SHURN E.", "Address": "PO Box 8527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 289700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.25673580199999, "SHAPE_Area": 667.12918786 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363367.05009999871254, 257294.449299998581409 ], [ 363350.218199998140335, 257282.490299999713898 ], [ 363333.13459999859333, 257300.082400001585484 ], [ 363341.932099997997284, 257308.598099999129772 ], [ 363348.305299997329712, 257317.727299999445677 ], [ 363371.859200000762939, 257297.866200000047684 ], [ 363367.05009999871254, 257294.449299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601060200", "MAP": "D9-3748-T86", "PARCEL_NAM": "404-81", "ACRE": ".14", "LONGITUDE": -64.89217131, "LATITUDE": 18.34484677, "OBJECTID_1": 20838, "PARCEL_NO_": "105601060200", "Tax_Legal_": "404-82 ANNAS RETREAT NEW QTR.", "Name": "GRETA HART HYNDMAN REVOCABLE TRUST", "Address": "PO BOX 10389", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 104800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.263242900999998, "SHAPE_Area": 529.34575119800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362906.469400003552437, 257311.366900000721216 ], [ 362903.44200000166893, 257288.121800001710653 ], [ 362881.664300002157688, 257288.787900000810623 ], [ 362884.677400000393391, 257313.721599999815226 ], [ 362906.469400003552437, 257311.366900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602040300", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-10", "ACRE": "0.25", "LONGITUDE": -64.89049956, "LATITUDE": 18.34477315, "OBJECTID_1": 21182, "PARCEL_NO_": "105602040300", "Tax_Legal_": "143A-10 ANNAS RETREAT NEW QTR", "Name": "FORBES, RAWLEIGH & JOYCELYN", "Address": "PO Box 8476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 328200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.34197345300001, "SHAPE_Area": 1191.9614541799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363087.103200003504753, 257310.523200001567602 ], [ 363085.020499996840954, 257271.031700000166893 ], [ 363056.745600000023842, 257277.133099999278784 ], [ 363053.200300000607967, 257314.678700000047684 ], [ 363070.15259999781847, 257312.495400000363588 ], [ 363087.103200003504753, 257310.523200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602035100", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-377", "ACRE": "0.14", "LONGITUDE": -64.88830379, "LATITUDE": 18.34482645, "OBJECTID_1": 21149, "PARCEL_NO_": "105602035100", "Tax_Legal_": "ANNAS RETREAT 394-377 NEW QTR", "Name": "SEZILEE B CALLWOOD AND ALVIN CALLWOOD REVOC LIVING", "Address": "PO Box 502056", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17600, "Improved_V": 200000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.249089639, "SHAPE_Area": 633.08489450800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363322.623700000345707, 257303.373799998313189 ], [ 363295.362000003457069, 257285.207800000905991 ], [ 363282.308100000023842, 257303.0439000017941 ], [ 363283.915399998426437, 257303.69029999896884 ], [ 363313.639200001955032, 257316.810300000011921 ], [ 363322.623700000345707, 257303.373799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701015000", "MAP": "C9-221-T78", "PARCEL_NAM": "394-416", "ACRE": "0.63", "LONGITUDE": -64.88287306, "LATITUDE": 18.34461477, "OBJECTID_1": 21882, "PARCEL_NO_": "105701015000", "Tax_Legal_": "394-416 ANNAS RETREAT NEW QTR", "Name": "LIBURD, JULIET", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77800, "Improved_V": 60900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.35785715599999, "SHAPE_Area": 2222.6528886299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363906.289700001478195, 257320.394299998879433 ], [ 363894.484499998390675, 257286.311599999666214 ], [ 363889.795900002121925, 257268.752500001341105 ], [ 363889.127999998629093, 257252.492800001055002 ], [ 363879.466700002551079, 257250.725000001490116 ], [ 363851.188199996948242, 257257.248500000685453 ], [ 363854.264200001955032, 257274.79450000077486 ], [ 363860.497100003063679, 257300.387800000607967 ], [ 363860.471900001168251, 257303.3429000005126 ], [ 363906.289700001478195, 257320.394299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021600", "MAP": "D9-8796-T013", "PARCEL_NAM": "1G-2-1", "ACRE": ".005", "LONGITUDE": -64.90616859, "LATITUDE": 18.34456183, "OBJECTID_1": 19863, "PARCEL_NO_": "105502021600", "Tax_Legal_": "WINTBERG ESTATE 1G-1 GR NORTHSIDE", "Name": "COMMISSIONG, SIDNEY & THELMA", "Address": "PO Box 306813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 140000, "Improved_V": 780800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 20.497404192099999, "SHAPE_Area": 13.5095819979 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361418.431999996304512, 257257.257199998944998 ], [ 361418.307700000703335, 257255.087000001221895 ], [ 361411.735600002110004, 257256.206999998539686 ], [ 361409.499600000679493, 257257.740499999374151 ], [ 361418.431999996304512, 257257.257199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602070400", "MAP": "C9-221-T78", "PARCEL_NAM": "394-419", "ACRE": "0.54", "LONGITUDE": -64.88330677, "LATITUDE": 18.34474466, "OBJECTID_1": 21318, "PARCEL_NO_": "105602070400", "Tax_Legal_": "394-419 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, IRVIN JASMIN", "Address": "43 Carbone Ln", "City": "Clayton", "State": "North Carolina", "Zip": 27527, "Country": "United States", "Land_Value": 71000, "Improved_V": 72200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.12391326599999, "SHAPE_Area": 1920.3650008699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363855.495600000023842, 257319.556400001049042 ], [ 363852.419600002467632, 257302.010400000959635 ], [ 363843.857600003480911, 257265.843400001525879 ], [ 363808.237800002098083, 257282.228199999779463 ], [ 363809.535800002515316, 257319.18019999936223 ], [ 363855.495600000023842, 257319.556400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89194954, "LATITUDE": 18.34482674, "OBJECTID_1": 20839, "PARCEL_NO_": "105601060300", "Tax_Legal_": "404-5&POR.215 ANNAS RETR NEW QTR.", "Name": "FREEMAN, TERRY A", "Address": "PO Box 8986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 94300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.89124889, "SHAPE_Area": 604.66185442200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362941.200199998915195, 257304.684999998658895 ], [ 362928.315399996936321, 257302.679699998348951 ], [ 362922.845600001513958, 257282.158900000154972 ], [ 362903.44200000166893, 257288.121800001710653 ], [ 362906.469400003552437, 257311.366900000721216 ], [ 362933.102899998426437, 257308.62950000166893 ], [ 362937.955200001597404, 257306.980500001460314 ], [ 362941.200199998915195, 257304.684999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601018100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-46", "ACRE": ".118", "LONGITUDE": -64.89779536, "LATITUDE": 18.34480834, "OBJECTID_1": 20518, "PARCEL_NO_": "105601018100", "Tax_Legal_": "146 46 ANNAS RETREAT NEW QTR", "Name": "MACK, FLORENCE", "Address": "PO Box 7184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 88000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.799438211999998, "SHAPE_Area": 540.74909944299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362313.081000000238419, 257299.755300000309944 ], [ 362306.826499998569489, 257276.694899998605251 ], [ 362302.785899996757507, 257277.717300001531839 ], [ 362295.534500002861023, 257277.024599999189377 ], [ 362282.466300003230572, 257296.549400001764297 ], [ 362305.777400001883507, 257305.183899998664856 ], [ 362313.081000000238419, 257299.755300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602040400", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-9", "ACRE": "0.28", "LONGITUDE": -64.89021682000001, "LATITUDE": 18.34473683, "OBJECTID_1": 21183, "PARCEL_NO_": "105602040400", "Tax_Legal_": "ANNAS RETREAT 143A-9 No.1 NEW QTR.", "Name": "Nora Fahie", "Address": "PO Box 6503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046503, "Country": "United States", "Land_Value": 31900, "Improved_V": 162900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.05947273199999, "SHAPE_Area": 1152.3898605899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363121.812399998307228, 257306.374400001019239 ], [ 363106.828699998557568, 257266.777199998497963 ], [ 363085.020499996840954, 257271.031700000166893 ], [ 363087.103200003504753, 257310.523200001567602 ], [ 363104.861800000071526, 257308.346599999815226 ], [ 363121.812399998307228, 257306.374400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013500", "MAP": "D9-1219-T74", "PARCEL_NAM": "3AB", "ACRE": ".31", "LONGITUDE": -64.88022686, "LATITUDE": 18.34475848, "OBJECTID_1": 21868, "PARCEL_NO_": "105701013500", "Tax_Legal_": "3AB ANNAS RETREAT NEW QTR", "Name": "MCBEAN, MELVIN", "Address": "5 SILKE GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51000, "Improved_V": 118700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.995676059, "SHAPE_Area": 963.698075077 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364182.338600002229214, 257300.045400001108646 ], [ 364139.648400001227856, 257283.040800001472235 ], [ 364133.71000000089407, 257297.306099999696016 ], [ 364136.373720452771522, 257302.100919761869591 ], [ 364138.637100003659725, 257307.097199998795986 ], [ 364169.980800002813339, 257319.386100001633167 ], [ 364182.338600002229214, 257300.045400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601027900", "MAP": "D9-1739-T81", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.89337125, "LATITUDE": 18.34481668, "OBJECTID_1": 20608, "PARCEL_NO_": "105601027900", "Tax_Legal_": "ANNAS RETREAT 404-93 NEW QTR.", "Name": "DONOVAN, SUSAN", "Address": "PO Box 11752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 127300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.706994669, "SHAPE_Area": 755.63571254800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362761.543600000441074, 257285.482799999415874 ], [ 362747.836199998855591, 257285.370600000023842 ], [ 362750.138300001621246, 257299.110500000417233 ], [ 362750.892499998211861, 257305.238400001078844 ], [ 362750.872699998319149, 257307.560300000011921 ], [ 362787.174699999392033, 257305.746399998664856 ], [ 362783.314000003039837, 257285.660900000482798 ], [ 362761.543600000441074, 257285.482799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601040400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-18", "ACRE": "0.22", "LONGITUDE": -64.89890892, "LATITUDE": 18.34468544, "OBJECTID_1": 20700, "PARCEL_NO_": "105601040400", "Tax_Legal_": "146-18 ANNAS RETREAT 1 NEW QTR", "Name": "SMITH, MERCEDES", "Address": "412 N Broadway", "City": "Yonkers", "State": "New York", "Zip": 10701, "Country": "United States", "Land_Value": 30100, "Improved_V": 101900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.95433703699999, "SHAPE_Area": 993.67234101899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362202.671899996697903, 257292.307700000703335 ], [ 362178.037699997425079, 257249.676300000399351 ], [ 362161.82150000333786, 257260.098299998790026 ], [ 362184.036799997091293, 257302.709899999201298 ], [ 362196.183700002729893, 257296.687600001692772 ], [ 362202.671899996697903, 257292.307700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601025700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-139", "ACRE": ".132", "LONGITUDE": -64.89509776, "LATITUDE": 18.34481245, "OBJECTID_1": 20586, "PARCEL_NO_": "105601025700", "Tax_Legal_": "146-139 ANNAS RETREAT 1 NEW QTR", "Name": "JOYCE L PETERSEN REVOCABLE LIVING TRUST", "Address": "PO Box 8225", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.189024266600001, "SHAPE_Area": 444.83743807000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362597.720100000500679, 257300.818300001323223 ], [ 362589.833200000226498, 257280.066599998623133 ], [ 362584.176399998366833, 257281.497999999672174 ], [ 362577.722300000488758, 257281.867300000041723 ], [ 362572.697400003671646, 257303.779899999499321 ], [ 362581.548900000751019, 257305.963300000876188 ], [ 362591.242600001394749, 257303.931699998676777 ], [ 362597.720100000500679, 257300.818300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90202743, "LATITUDE": 18.34455597, "OBJECTID_1": 19804, "PARCEL_NO_": "105502011900", "Tax_Legal_": "218 WINTBERG GT. NORTHSIDE", "Name": "PAUL, ELWIN", "Address": "NO218 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77700, "Improved_V": 315900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.56222038000001, "SHAPE_Area": 3162.2807646199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361885.101700000464916, 257275.987500000745058 ], [ 361869.457299999892712, 257219.286400001496077 ], [ 361817.621399998664856, 257246.093199998140335 ], [ 361838.134199999272823, 257299.245600000023842 ], [ 361847.043200001120567, 257294.674400001764297 ], [ 361885.101700000464916, 257275.987500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601017800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-43", "ACRE": ".163", "LONGITUDE": -64.89830931, "LATITUDE": 18.34475412, "OBJECTID_1": 20515, "PARCEL_NO_": "105601017800", "Tax_Legal_": "146-43 ANNAS RETREAT 1 NEW QTR", "Name": "HICKSON, ELVISE", "Address": "46043 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 117800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.899954535500001, "SHAPE_Area": 509.25978634699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362259.941699996590614, 257290.243299998342991 ], [ 362244.82490000128746, 257266.265999998897314 ], [ 362237.496200002729893, 257274.64979999884963 ], [ 362231.808899998664856, 257279.66950000077486 ], [ 362242.906599998474121, 257302.136199999600649 ], [ 362259.941699996590614, 257290.243299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602038300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88738473, "LATITUDE": 18.34474057, "OBJECTID_1": 21176, "PARCEL_NO_": "105602038300", "Tax_Legal_": "394-237 ANNAS RETREAT NEW QTR", "Name": "FRANCIS, ZORA", "Address": "PO Box 502352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23800, "Improved_V": 108000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.200115591, "SHAPE_Area": 728.65899164500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363417.140299998223782, 257283.249099999666214 ], [ 363398.676100000739098, 257273.598799999803305 ], [ 363382.321400001645088, 257300.273800000548363 ], [ 363395.141500003635883, 257309.877999998629093 ], [ 363399.965000003576279, 257311.606199998408556 ], [ 363404.828100003302097, 257308.690699998289347 ], [ 363417.140299998223782, 257283.249099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601025300", "MAP": "G9-887-T66", "PARCEL_NAM": "146-156", "ACRE": "0.21", "LONGITUDE": -64.89471267, "LATITUDE": 18.3446781, "OBJECTID_1": 20582, "PARCEL_NO_": "105601025300", "Tax_Legal_": "146-156 ANNAS RETREAT NO 1 NEW QTR", "Name": "CHARLESWELL, SR., JUNIEL", "Address": "146-156 Estate Anna S Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31200, "Improved_V": 135800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.712613623, "SHAPE_Area": 809.75951985699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362639.723800003528595, 257292.29619999974966 ], [ 362630.351999998092651, 257256.544700000435114 ], [ 362621.448399998247623, 257260.482599999755621 ], [ 362609.281800001859665, 257268.826699998229742 ], [ 362618.77589999884367, 257290.224899999797344 ], [ 362623.489699997007847, 257304.828899998217821 ], [ 362639.723800003528595, 257292.29619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601025900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-138", "ACRE": ".121", "LONGITUDE": -64.89531052, "LATITUDE": 18.34478089, "OBJECTID_1": 20588, "PARCEL_NO_": "105601025900", "Tax_Legal_": "146-138 ANNAS RETREAT\nNEW QTR", "Name": "JUDITH VANTERPOOL GREENE-SMITH (LIFE ESTATE)", "Address": "46138 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 118400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.828040773200001, "SHAPE_Area": 570.44969407899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362577.722300000488758, 257281.867300000041723 ], [ 362568.051899999380112, 257281.154899999499321 ], [ 362560.811300002038479, 257279.195799998939037 ], [ 362554.391400001943111, 257275.554699998348951 ], [ 362545.334899999201298, 257297.434300001710653 ], [ 362572.697400003671646, 257303.779899999499321 ], [ 362577.722300000488758, 257281.867300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601019400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-85", "ACRE": ".114", "LONGITUDE": -64.89684241, "LATITUDE": 18.3447651, "OBJECTID_1": 20531, "PARCEL_NO_": "105601019400", "Tax_Legal_": "146-85 ANNAS RETREAT NEW QTR", "Name": "ELRED CALLWOOD", "Address": "146-85 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 91500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.153967905200005, "SHAPE_Area": 519.13329512400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362416.467000000178814, 257279.703200001269579 ], [ 362389.09910000115633, 257273.990699999034405 ], [ 362391.487499997019768, 257277.598900001496077 ], [ 362392.26860000193119, 257280.560600001364946 ], [ 362385.794799998402596, 257283.251800000667572 ], [ 362392.902300000190735, 257300.830800000578165 ], [ 362407.433899998664856, 257298.838799998164177 ], [ 362408.258199997246265, 257296.734600000083447 ], [ 362416.467000000178814, 257279.703200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601018600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-47", "ACRE": ".116", "LONGITUDE": -64.89760321, "LATITUDE": 18.34472519, "OBJECTID_1": 20523, "PARCEL_NO_": "105601018600", "Tax_Legal_": "146-47 ANNAS RETREAT 1 NEW QTR", "Name": "ESDAILLE, EUSTACE", "Address": "46047 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 90400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.899546176200005, "SHAPE_Area": 512.49516865400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362336.613300003111362, 257282.427099999040365 ], [ 362320.625500001013279, 257266.041999999433756 ], [ 362314.93639999628067, 257271.272799998521805 ], [ 362314.113899998366833, 257273.165899999439716 ], [ 362306.826499998569489, 257276.694899998605251 ], [ 362313.081000000238419, 257299.755300000309944 ], [ 362336.613300003111362, 257282.427099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602040500", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-8", "ACRE": "0.23", "LONGITUDE": -64.88996602, "LATITUDE": 18.34468099, "OBJECTID_1": 21184, "PARCEL_NO_": "105602040500", "Tax_Legal_": "143A-8 ANNAS RETREAT NEW QTR", "Name": "VANTERPOOL, LEO & MARY (LIFE ESTATE)", "Address": "2005 Gamble Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40500, "Improved_V": 326900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.95615223900001, "SHAPE_Area": 1120.90104238 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363147.641400001943111, 257303.419300001114607 ], [ 363131.8800999969244, 257260.438400000333786 ], [ 363106.828699998557568, 257266.777199998497963 ], [ 363121.812399998307228, 257306.374400001019239 ], [ 363143.606200002133846, 257303.808499999344349 ], [ 363147.641400001943111, 257303.419300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701038300", "MAP": "D9-528-T65", "PARCEL_NAM": "13A", "ACRE": ".06", "LONGITUDE": -64.87796657, "LATITUDE": 18.34469518, "OBJECTID_1": 22024, "PARCEL_NO_": "105701038300", "Tax_Legal_": "13A & 13AA FRYDENDAHL NO.4 EAST END QTR", "Name": "SMITH BAY PLAZA LLC", "Address": "PO Box 7395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.326550717, "SHAPE_Area": 440.185779196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364412.594899997115135, 257295.735800001770258 ], [ 364371.090700000524521, 257281.346500001847744 ], [ 364379.877400003373623, 257291.128699999302626 ], [ 364386.273999996483326, 257297.513900000602007 ], [ 364405.678900003433228, 257312.211800001561642 ], [ 364411.947700001299381, 257297.27760000154376 ], [ 364412.594899997115135, 257295.735800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89178464, "LATITUDE": 18.34476412, "OBJECTID_1": 20840, "PARCEL_NO_": "105601060400", "Tax_Legal_": "ANNAS RET 404-6 & POR. 215 NEW QTR.", "Name": "MATTHEW, MOSES", "Address": "PO Box 7485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 94400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.846354586000004, "SHAPE_Area": 434.6244873 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362936.588899999856949, 257278.049499999731779 ], [ 362922.845600001513958, 257282.158900000154972 ], [ 362928.315399996936321, 257302.679699998348951 ], [ 362941.200199998915195, 257304.684999998658895 ], [ 362944.44879999756813, 257301.967399999499321 ], [ 362946.129799999296665, 257293.959600001573563 ], [ 362942.9746999964118, 257285.701099999248981 ], [ 362936.588899999856949, 257278.049499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601024000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-140", "ACRE": "0.12", "LONGITUDE": -64.89491375, "LATITUDE": 18.34473302, "OBJECTID_1": 20572, "PARCEL_NO_": "105601024000", "Tax_Legal_": "146-140 ANNAS RETREAT 1 NEW QTR", "Name": "FREEMAN, WARREN & AVNA", "Address": "146-140 ESTATE ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 132200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.990811995399994, "SHAPE_Area": 499.21793455800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362609.281800001859665, 257268.826699998229742 ], [ 362607.651199996471405, 257270.924300000071526 ], [ 362600.351199999451637, 257275.930799998342991 ], [ 362589.833200000226498, 257280.066599998623133 ], [ 362597.720100000500679, 257300.818300001323223 ], [ 362618.77589999884367, 257290.224899999797344 ], [ 362609.281800001859665, 257268.826699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601018500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-60", "ACRE": ".113", "LONGITUDE": -64.89719417000001, "LATITUDE": 18.34475526, "OBJECTID_1": 20522, "PARCEL_NO_": "105601018500", "Tax_Legal_": "146-60 ANNAS RETREAT NEW QTR", "Name": "DUROI LUNDI and LUCIA DUPONT", "Address": "PO BOX 1152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 156500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.760835233799995, "SHAPE_Area": 398.54003177099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362373.764799997210503, 257275.554000001400709 ], [ 362368.14580000191927, 257272.552700001746416 ], [ 362360.048500001430511, 257276.49720000103116 ], [ 362351.092699997127056, 257286.556400001049042 ], [ 362348.623499996960163, 257292.446800000965595 ], [ 362370.345299996435642, 257298.324099998921156 ], [ 362373.764799997210503, 257275.554000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601018000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-45", "ACRE": ".133", "LONGITUDE": -64.8979948, "LATITUDE": 18.34473312, "OBJECTID_1": 20517, "PARCEL_NO_": "105601018000", "Tax_Legal_": "146-45 ANNAS RETREAT 1 NEW QTR", "Name": "MARION YVONNE & LESLIE ATHILL HEDRINGTON REVOCABL", "Address": "PO Box 11026", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 169500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.566721651400002, "SHAPE_Area": 546.70617822700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362295.534500002861023, 257277.024599999189377 ], [ 362289.105599999427795, 257274.438900001347065 ], [ 362279.5, 257266.127599999308586 ], [ 362259.941699996590614, 257290.243299998342991 ], [ 362282.466300003230572, 257296.549400001764297 ], [ 362295.534500002861023, 257277.024599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602040600", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-7", "ACRE": "0.26", "LONGITUDE": -64.88974086, "LATITUDE": 18.34463897, "OBJECTID_1": 21185, "PARCEL_NO_": "105602040600", "Tax_Legal_": "143A-7 ANNAS RETREAT NEW QTR", "Name": "LETTSOME, MURIEL & NORRIS", "Address": "PO Box 11264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.58817808000001, "SHAPE_Area": 1067.8790273899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363169.435199998319149, 257300.853500001132488 ], [ 363169.471100002527237, 257296.631900001317263 ], [ 363152.899999998509884, 257254.066500000655651 ], [ 363131.8800999969244, 257260.438400000333786 ], [ 363147.641400001943111, 257303.419300001114607 ], [ 363163.785599999129772, 257301.440499998629093 ], [ 363169.435199998319149, 257300.853500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701051600", "MAP": "D9-263-T60", "PARCEL_NAM": "35", "ACRE": "0.40", "LONGITUDE": -64.87539967, "LATITUDE": 18.34468362, "OBJECTID_1": 22119, "PARCEL_NO_": "105701051600", "Tax_Legal_": "SMITH BAY 35 EAST END QUARTER", "Name": "STEVENS, PAGETT", "Address": "PO Box 10344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66700, "Improved_V": 182300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.51894334599999, "SHAPE_Area": 1996.1893414900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364696.041799999773502, 257283.161699999123812 ], [ 364638.017899997532368, 257279.098200000822544 ], [ 364637.971100002527237, 257284.586199998855591 ], [ 364636.306400001049042, 257290.694299999624491 ], [ 364632.912100002169609, 257310.509300000965595 ], [ 364695.763099998235703, 257315.878899998962879 ], [ 364699.135799996554852, 257298.596799999475479 ], [ 364696.041799999773502, 257283.161699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601026000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-137", "ACRE": ".148", "LONGITUDE": -64.89553151, "LATITUDE": 18.34468922, "OBJECTID_1": 20589, "PARCEL_NO_": "105601026000", "Tax_Legal_": "146-137 ANNAS RETREAT NEW QTR", "Name": "Abraham James and Kishma Coral James", "Address": "46-137 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 70300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.901198469899995, "SHAPE_Area": 603.47054979699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362554.391400001943111, 257275.554699998348951 ], [ 362545.563299998641014, 257270.627300001680851 ], [ 362539.157799996435642, 257265.297499999403954 ], [ 362534.328900001943111, 257264.202500000596046 ], [ 362532.712700001895428, 257264.6114999987185 ], [ 362530.273900002241135, 257266.913499999791384 ], [ 362523.67960000038147, 257283.747099999338388 ], [ 362539.710500001907349, 257295.066199999302626 ], [ 362545.334899999201298, 257297.434300001710653 ], [ 362554.391400001943111, 257275.554699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602035300", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-378", "ACRE": "0.25", "LONGITUDE": -64.88860755, "LATITUDE": 18.34467081, "OBJECTID_1": 21151, "PARCEL_NO_": "105602035300", "Tax_Legal_": "394-378 ANNAS RETREAT NEW QTR", "Name": "TODMAN, DIANA", "Address": "394-378 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31400, "Improved_V": 246700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.05608026799999, "SHAPE_Area": 1026.60706035 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363269.714599996805191, 257266.843800000846386 ], [ 363240.536300003528595, 257284.336899999529123 ], [ 363261.421300001442432, 257293.795899998396635 ], [ 363282.308100000023842, 257303.0439000017941 ], [ 363295.362000003457069, 257285.207800000905991 ], [ 363280.932899996638298, 257275.168299999088049 ], [ 363278.540899999439716, 257271.982299998402596 ], [ 363277.000200003385544, 257263.52589999884367 ], [ 363269.714599996805191, 257266.843800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702040300", "MAP": "F9-314-T58", "PARCEL_NAM": "43", "ACRE": null, "LONGITUDE": -64.87422708, "LATITUDE": 18.34470749, "OBJECTID_1": 22568, "PARCEL_NO_": "105702040300", "Tax_Legal_": "SMITH BAY 43 EAST END QTR", "Name": "GLENCIA JOSEPH TRUST", "Address": "6711 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 155800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.955088922499996, "SHAPE_Area": 463.47590796899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364803.243600003421307, 257288.471999999135733 ], [ 364775.749899998307228, 257297.535100001841784 ], [ 364778.852799996733665, 257311.914900001138449 ], [ 364778.82769999653101, 257314.870000001043081 ], [ 364805.533100001513958, 257303.689500000327826 ], [ 364803.243600003421307, 257288.471999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701050700", "MAP": "F9-243-T57", "PARCEL_NAM": "27", "ACRE": "0.23", "LONGITUDE": -64.87460499, "LATITUDE": 18.3446889, "OBJECTID_1": 22110, "PARCEL_NO_": "105701050700", "Tax_Legal_": "SMITH BAY 27 EAST END QTR", "Name": "BROTHERSON, FRANCES AND PATRICIA", "Address": "ESTATE SMITH BAY #60-57", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29900, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.10213005, "SHAPE_Area": 1032.47529336 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364769.961800001561642, 257314.375199999660254 ], [ 364763.786399997770786, 257282.027399998158216 ], [ 364733.942100003361702, 257283.049699999392033 ], [ 364734.48589999973774, 257313.873799998313189 ], [ 364769.961800001561642, 257314.375199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701051300", "MAP": "F9-2532-T70", "PARCEL_NAM": "26", "ACRE": "0.24", "LONGITUDE": -64.87490725000001, "LATITUDE": 18.34467011, "OBJECTID_1": 22116, "PARCEL_NO_": "105701051300", "Tax_Legal_": "SMITH BAY ESTATE 26 No.1,2&3 EAST END QTR.", "Name": "THOMAS, RENA L. & JOSEPH, COREY E", "Address": "PO Box 11041", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 210500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.821101927, "SHAPE_Area": 950.86197859799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364733.942100003361702, 257283.049699999392033 ], [ 364700.915700003504753, 257278.979699999094009 ], [ 364704.790799997746944, 257297.376499999314547 ], [ 364703.873000003397465, 257310.456799998879433 ], [ 364734.48589999973774, 257313.873799998313189 ], [ 364733.942100003361702, 257283.049699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602040700", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-6", "ACRE": "0.26", "LONGITUDE": -64.8895407, "LATITUDE": 18.34459683, "OBJECTID_1": 21186, "PARCEL_NO_": "105602040700", "Tax_Legal_": "143A-6 ANNAS RETREAT NEW QTR", "Name": "LETTSOME, NORRIS & MURIEL", "Address": "PO Box 11264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33900, "Improved_V": 610900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.42552442799999, "SHAPE_Area": 1052.4777562199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363190.419100001454353, 257298.703200001269579 ], [ 363175.509099997580051, 257250.451900001615286 ], [ 363164.21000000089407, 257251.625900000333786 ], [ 363152.899999998509884, 257254.066500000655651 ], [ 363169.471100002527237, 257296.631900001317263 ], [ 363169.435199998319149, 257300.853500001132488 ], [ 363190.419100001454353, 257298.703200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601040500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-17", "ACRE": "0.26", "LONGITUDE": -64.89874244000001, "LATITUDE": 18.344581, "OBJECTID_1": 20701, "PARCEL_NO_": "105601040500", "Tax_Legal_": "ANNAS RETREAT 146-17 1 NEW QTR", "Name": "CALLWOOD, ELFRED & ESMIE F", "Address": "146-17 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 143700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.34274506200001, "SHAPE_Area": 1066.6891938000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362221.344800002872944, 257277.472899999469519 ], [ 362195.065499998629093, 257238.627700001001358 ], [ 362178.037699997425079, 257249.676300000399351 ], [ 362202.671899996697903, 257292.307700000703335 ], [ 362213.216899998486042, 257285.005800001323223 ], [ 362221.344800002872944, 257277.472899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601031300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-147", "ACRE": ".115", "LONGITUDE": -64.89587485, "LATITUDE": 18.3446677, "OBJECTID_1": 20626, "PARCEL_NO_": "105601031300", "Tax_Legal_": "146-147 ANNAS RETREAT 1 NEW QTR", "Name": "HOLT, BOBSIE & DOROTHY", "Address": "46147 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 26600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.160679694899997, "SHAPE_Area": 513.85431014000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362517.300999999046326, 257275.2511 ], [ 362497.258299998939037, 257261.577100001275539 ], [ 362486.635999999940395, 257277.955400001257658 ], [ 362509.884199999272823, 257293.977699998766184 ], [ 362517.300999999046326, 257275.2511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602035200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88805843, "LATITUDE": 18.34466783, "OBJECTID_1": 21150, "PARCEL_NO_": "105602035200", "Tax_Legal_": "394-386 ANNAS RETREAT No.1 NEW QTR", "Name": "JACKSON, ELEANOR", "Address": "376 SW 122 Ave", "City": "Pembroke Pines", "State": "Florida", "Zip": 33025, "Country": "United States", "Land_Value": 21900, "Improved_V": 167800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.240816123, "SHAPE_Area": 630.10580710600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363347.81360000371933, 257280.781899999827147 ], [ 363345.407300002872944, 257279.284600000828505 ], [ 363315.640299998223782, 257271.230500001460314 ], [ 363309.085500001907349, 257283.420200001448393 ], [ 363333.13459999859333, 257300.082400001585484 ], [ 363350.218199998140335, 257282.490299999713898 ], [ 363347.81360000371933, 257280.781899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602028400", "MAP": null, "PARCEL_NAM": "394-238", "ACRE": "0.17", "LONGITUDE": -64.88755247, "LATITUDE": 18.34464938, "OBJECTID_1": 21095, "PARCEL_NO_": "105602028400", "Tax_Legal_": "394-238 ANNAS RETREAT NEW QTR", "Name": "SMITH, LILLIAN A.(LIFE ESTATE)& EDWARD W. & MARCIA NICKEO", "Address": "4300 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.326466486, "SHAPE_Area": 562.70516504600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363398.676100000739098, 257273.598799999803305 ], [ 363380.197400003671646, 257265.637099999934435 ], [ 363367.05009999871254, 257294.449299998581409 ], [ 363371.859200000762939, 257297.866200000047684 ], [ 363375.109600000083447, 257294.9375 ], [ 363382.321400001645088, 257300.273800000548363 ], [ 363398.676100000739098, 257273.598799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601062800", "MAP": "C9-239-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89150437000001, "LATITUDE": 18.34468093, "OBJECTID_1": 20864, "PARCEL_NO_": "105601062800", "Tax_Legal_": "404-25&POR 215 ANNAS RET NEW QTR.", "Name": "FREEMAN, YVONNE S", "Address": "PO Box 9799", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15900, "Improved_V": 149100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.83284478500001, "SHAPE_Area": 605.76758040599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362970.583499997854233, 257263.129000000655651 ], [ 362947.882700003683567, 257277.508699998259544 ], [ 362951.061200000345707, 257283.02309999987483 ], [ 362954.236100003123283, 257288.959699999541044 ], [ 362954.212700001895428, 257291.703699998557568 ], [ 362955.810900002717972, 257293.405600000172853 ], [ 362973.520999997854233, 257296.927999999374151 ], [ 362983.200400002300739, 257296.58500000089407 ], [ 362972.835199996829033, 257282.779100000858307 ], [ 362970.583499997854233, 257263.129000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602040800", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-5", "ACRE": "0.29", "LONGITUDE": -64.88933106, "LATITUDE": 18.34458317, "OBJECTID_1": 21187, "PARCEL_NO_": "105602040800", "Tax_Legal_": "143A-5 ANNAS RETREAT NEW QTR", "Name": "VIDAL, ILANIE C", "Address": "PO BOX 1391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 94700, "Improved_V": 410800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.29237279200001, "SHAPE_Area": 1077.9232289 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363198.082299999892712, 257251.058800000697374 ], [ 363175.509099997580051, 257250.451900001615286 ], [ 363190.419100001454353, 257298.703200001269579 ], [ 363213.848899997770786, 257293.406500000506639 ], [ 363198.082299999892712, 257251.058800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602088900", "MAP": "C9-239-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89134368000001, "LATITUDE": 18.34462846, "OBJECTID_1": 21455, "PARCEL_NO_": "105602088900", "Tax_Legal_": "EST,ANNAS RETREAT 404-26 NEW QTR.", "Name": "JUSTINO COLON II AND SHIRLEY COLON (LIFE ESTATE)", "Address": "PO Box 8595", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 106000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.136166598, "SHAPE_Area": 555.89644389600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362992.084200002253056, 257294.969000000506639 ], [ 362986.752899996936321, 257258.195099998265505 ], [ 362973.817699998617172, 257262.100000001490116 ], [ 362970.583499997854233, 257263.129000000655651 ], [ 362972.835199996829033, 257282.779100000858307 ], [ 362983.200400002300739, 257296.58500000089407 ], [ 362992.084200002253056, 257294.969000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601017900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-44", "ACRE": ".148", "LONGITUDE": -64.89815815, "LATITUDE": 18.34460708, "OBJECTID_1": 20516, "PARCEL_NO_": "105601017900", "Tax_Legal_": "ANNAS RETREAT 146-44\n1 NEW QTR", "Name": "Wislon Brown Sr Family Revoc Trust & Olive Brown", "Address": "14752 Crenshaw Blvd", "City": "Gardena", "State": "California", "Zip": 90249, "Country": "United States", "Land_Value": 22300, "Improved_V": 153400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.719496245, "SHAPE_Area": 707.04218580199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362279.5, 257266.127599999308586 ], [ 362263.490599997341633, 257252.275499999523163 ], [ 362259.464400000870228, 257251.609299998730421 ], [ 362256.228399999439716, 257252.849399998784065 ], [ 362244.82490000128746, 257266.265999998897314 ], [ 362259.941699996590614, 257290.243299998342991 ], [ 362279.5, 257266.127599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501014200", "MAP": "G9-1287-T69", "PARCEL_NAM": "1CD-7", "ACRE": null, "LONGITUDE": -64.90867104, "LATITUDE": 18.34451063, "OBJECTID_1": 19695, "PARCEL_NO_": "105501014200", "Tax_Legal_": "WINTBERG ESTATE 1CD-7 GR NORTHSIDE", "Name": "BRADDELL, MARK J & KATRIN", "Address": "PO BOX 308662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42500, "Improved_V": 373000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.87423858899999, "SHAPE_Area": 2667.1457841400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361192.927000001072884, 257217.760099999606609 ], [ 361187.273800000548363, 257218.769299998879433 ], [ 361163.813500002026558, 257227.65430000051856 ], [ 361143.607100002467632, 257233.188400000333786 ], [ 361133.090899996459484, 257237.113099999725819 ], [ 361106.376500003039837, 257249.348999999463558 ], [ 361123.04110000282526, 257280.938299998641014 ], [ 361137.623099997639656, 257273.036100000143051 ], [ 361185.378899998962879, 257251.895399998873472 ], [ 361192.927000001072884, 257217.760099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701039500", "MAP": "D9-1482-T779", "PARCEL_NAM": "20b-6", "ACRE": "0.29", "LONGITUDE": -64.87629488, "LATITUDE": 18.34459554, "OBJECTID_1": 22030, "PARCEL_NO_": "105701039500", "Tax_Legal_": "20B-6 SMITH BAY EAST END QTR", "Name": "GRIGG, DAVID", "Address": "1429 Taureau Ct", "City": "Virginia Beach", "State": "Virginia", "Zip": 23451, "Country": "United States", "Land_Value": 36500, "Improved_V": 55300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.548144081, "SHAPE_Area": 1010.9380988 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364593.479900002479553, 257279.105200000107288 ], [ 364590.398699998855591, 257279.220400001853704 ], [ 364576.104599997401237, 257277.222300000488758 ], [ 364551.825199998915195, 257268.682399999350309 ], [ 364551.762199997901917, 257276.070199999958277 ], [ 364550.943599998950958, 257295.94990000128746 ], [ 364596.228100001811981, 257301.341299999505281 ], [ 364593.479900002479553, 257279.105200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90281568, "LATITUDE": 18.34441206, "OBJECTID_1": 19871, "PARCEL_NO_": "105502022500", "Tax_Legal_": "WINTBERG ESTATE 1-Z-2 GT. NORTHSIDE", "Name": "FRANCIS, KENNETH & JOYCE", "Address": "PO Box 10817", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013817, "Country": "United States", "Land_Value": 111000, "Improved_V": 455400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.55497818100002, "SHAPE_Area": 4385.9231380299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361836.339199997484684, 257225.9814000017941 ], [ 361836.556800000369549, 257200.440900001674891 ], [ 361780.744999997317791, 257220.67119999974966 ], [ 361719.270999997854233, 257242.9662000015378 ], [ 361715.226899996399879, 257244.410799998790026 ], [ 361709.003100000321865, 257245.869800001382828 ], [ 361717.882700003683567, 257277.790899999439716 ], [ 361720.393299996852875, 257289.660199999809265 ], [ 361728.589000001549721, 257285.05009999871254 ], [ 361774.778899997472763, 257258.408100001513958 ], [ 361836.339199997484684, 257225.9814000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601031200", "MAP": "B9-156-T67", "PARCEL_NAM": "155-4", "ACRE": ".384", "LONGITUDE": -64.89600925000001, "LATITUDE": 18.34420058, "OBJECTID_1": 20625, "PARCEL_NO_": "105601031200", "Tax_Legal_": "ANNAS RETREAT 155-4 1 NEW QTR", "Name": "CREQUE, MARION", "Address": "155-4B Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56400, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.481944868, "SHAPE_Area": 1343.70435873 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362472.838699996471405, 257288.397199999541044 ], [ 362509.9391999989748, 257192.864399999380112 ], [ 362500.322800002992153, 257185.819600000977516 ], [ 362497.126299999654293, 257182.415899999439716 ], [ 362478.395900003612041, 257204.005300000309944 ], [ 362487.14299999922514, 257218.431200001388788 ], [ 362479.677599996328354, 257242.85700000077486 ], [ 362473.031099997460842, 257265.811799999326468 ], [ 362468.036799997091293, 257284.135999999940395 ], [ 362472.010799996554852, 257290.923500001430511 ], [ 362472.838699996471405, 257288.397199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601038500", "MAP": "B9-156-T67", "PARCEL_NAM": "155-5", "ACRE": ".390", "LONGITUDE": -64.89585342, "LATITUDE": 18.34426789, "OBJECTID_1": 20694, "PARCEL_NO_": "105601038500", "Tax_Legal_": "155-5 ANNAS RETREAT NO 1 NEW QTR", "Name": "LEONARD, GERALDINE", "Address": "155-5 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57900, "Improved_V": 134400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.01478319, "SHAPE_Area": 1732.0316611400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362528.236199997365475, 257222.144999999552965 ], [ 362530.820600003004074, 257202.745600000023842 ], [ 362519.568199999630451, 257198.431600000709295 ], [ 362509.9391999989748, 257192.864399999380112 ], [ 362472.838699996471405, 257288.397199999541044 ], [ 362485.817100003361702, 257279.426399998366833 ], [ 362486.635999999940395, 257277.955400001257658 ], [ 362497.258299998939037, 257261.577100001275539 ], [ 362510.337300002574921, 257240.785900000482798 ], [ 362527.379600003361702, 257228.048599999397993 ], [ 362528.236199997365475, 257222.144999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601025200", "MAP": "G9-887-T66", "PARCEL_NAM": "146-157", "ACRE": "0.20", "LONGITUDE": -64.89451443, "LATITUDE": 18.34456972, "OBJECTID_1": 20581, "PARCEL_NO_": "105601025200", "Tax_Legal_": "146-157 ANNAS RETREAT 1 NEW QUARTER", "Name": "WHEATLEY, JUDITH", "Address": "PO Box 727", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28800, "Improved_V": 136100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.172571456, "SHAPE_Area": 855.63287061599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362639.723800003528595, 257292.29619999974966 ], [ 362659.210199996829033, 257276.623700000345707 ], [ 362660.984700001776218, 257257.639800000935793 ], [ 362661.809000000357628, 257255.535599999129772 ], [ 362659.424199998378754, 257251.505300000309944 ], [ 362657.014200001955032, 257250.430100001394749 ], [ 362652.982699997723103, 257250.397100001573563 ], [ 362637.63400000333786, 257253.649000000208616 ], [ 362630.351999998092651, 257256.544700000435114 ], [ 362639.723800003528595, 257292.29619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602041900", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-13", "ACRE": null, "LONGITUDE": -64.89115963, "LATITUDE": 18.34455894, "OBJECTID_1": 21198, "PARCEL_NO_": "105602041900", "Tax_Legal_": "ANNAS RETREAT 143A-13 NEW QTR", "Name": "FREEMAN, SIDNEY & GRETHEL", "Address": "PO Box 11343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26200, "Improved_V": 175900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.911190557, "SHAPE_Area": 1100.3068058399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363018.789599999785423, 257283.788499999791384 ], [ 363007.83389999717474, 257244.646499998867512 ], [ 362986.009499996900558, 257250.800700001418591 ], [ 362986.752899996936321, 257258.195099998265505 ], [ 362992.084200002253056, 257294.969000000506639 ], [ 362997.742799997329712, 257293.32660000026226 ], [ 363018.789599999785423, 257283.788499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601018700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-48", "ACRE": ".148", "LONGITUDE": -64.8974043, "LATITUDE": 18.34459435, "OBJECTID_1": 20524, "PARCEL_NO_": "105601018700", "Tax_Legal_": "146-48 ANNAS RETREAT NEW QTR", "Name": "WESSELHOFT, DONNA", "Address": "PO Box 10416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 85500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.50930252400001, "SHAPE_Area": 746.44608813699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362361.729500003159046, 257268.489399999380112 ], [ 362345.74889999628067, 257251.260000001639128 ], [ 362331.991200000047684, 257257.05799999833107 ], [ 362320.625500001013279, 257266.041999999433756 ], [ 362336.613300003111362, 257282.427099999040365 ], [ 362343.009800001978874, 257288.812300000339746 ], [ 362344.662000000476837, 257284.181699998676777 ], [ 362348.749300003051758, 257277.671300001442432 ], [ 362353.628600001335144, 257272.856100000441074 ], [ 362361.729500003159046, 257268.489399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013900", "MAP": "D9-1219-T74", "PARCEL_NAM": "3AD", "ACRE": ".37", "LONGITUDE": -64.88069647, "LATITUDE": 18.34454196, "OBJECTID_1": 21872, "PARCEL_NO_": "105701013900", "Tax_Legal_": "3AD ANNAS RETREAT NEW QTR", "Name": "GEORGE GOODWIN", "Address": "PO Box 301951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8031951, "Country": "United States", "Land_Value": 49100, "Improved_V": 196000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.49576113399999, "SHAPE_Area": 1056.13455899 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364114.23650000244379, 257290.542199999094009 ], [ 364121.582279121270403, 257291.403029627777869 ], [ 364128.871899999678135, 257292.653200000524521 ], [ 364131.440354317135643, 257294.824298923223978 ], [ 364133.71000000089407, 257297.306099999696016 ], [ 364139.648400001227856, 257283.040800001472235 ], [ 364124.414800003170967, 257272.783700000494719 ], [ 364113.941799998283386, 257271.642499998211861 ], [ 364104.287600003182888, 257269.030299998819828 ], [ 364093.035199999809265, 257264.716400001198053 ], [ 364081.795299999415874, 257258.924800001084805 ], [ 364066.56530000269413, 257248.24549999833107 ], [ 364084.883900001645088, 257274.993200000375509 ], [ 364093.670699998736382, 257284.775499999523163 ], [ 364098.479800000786781, 257288.192299999296665 ], [ 364099.321999996900558, 257283.977299999445677 ], [ 364114.598800003528595, 257289.168600000441074 ], [ 364114.23650000244379, 257290.542199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701012400", "MAP": "D9-6012-T95", "PARCEL_NAM": "21REM", "ACRE": "1.00", "LONGITUDE": -64.88237691, "LATITUDE": 18.34440788, "OBJECTID_1": 21857, "PARCEL_NO_": "105701012400", "Tax_Legal_": "21 ANNAS RETREAT NEW QTR", "Name": "HODGE, ANNETTE", "Address": "PO Box 10376", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 207400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.67094504400001, "SHAPE_Area": 4352.5437636099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363903.058300003409386, 257226.431200001388788 ], [ 363897.281099997460842, 257242.004900000989437 ], [ 363894.727300003170967, 257257.815999999642372 ], [ 363896.239200003445148, 257269.649599999189377 ], [ 363905.650600001215935, 257300.757399998605251 ], [ 363954.948899999260902, 257287.861999999731779 ], [ 363970.304799996316433, 257283.765799999237061 ], [ 363963.272799998521805, 257257.32149999961257 ], [ 363953.069499999284744, 257224.518500000238419 ], [ 363903.058300003409386, 257226.431200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701015200", "MAP": "C9-260-T80", "PARCEL_NAM": "7-17", "ACRE": "0.51", "LONGITUDE": -64.8786764, "LATITUDE": 18.34448299, "OBJECTID_1": 21884, "PARCEL_NO_": "105701015200", "Tax_Legal_": "7-17 TABOR&HARMONY EAST END QTR", "Name": "FREDERICKS, SYLVIA E", "Address": "PO Box 306143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66100, "Improved_V": 75000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.415711813, "SHAPE_Area": 2140.1903243000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364355.803099997341633, 257277.421700000762939 ], [ 364347.052400000393391, 257263.417899999767542 ], [ 364343.017200000584126, 257263.807000000029802 ], [ 364338.191899999976158, 257262.289900001138449 ], [ 364320.5591000020504, 257249.691100001335144 ], [ 364314.124799996614456, 257247.738499999046326 ], [ 364307.676100000739098, 257247.474700000137091 ], [ 364301.212999999523163, 257248.899399999529123 ], [ 364297.165299996733665, 257250.766100000590086 ], [ 364290.667999997735023, 257256.201400000602007 ], [ 364285.758199997246265, 257264.605000000447035 ], [ 364325.744800001382828, 257303.562399998307228 ], [ 364355.803099997341633, 257277.421700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601060700", "MAP": "D9-2022-T82", "PARCEL_NAM": "404-80", "ACRE": "0.18", "LONGITUDE": -64.89245182000001, "LATITUDE": 18.34460488, "OBJECTID_1": 20843, "PARCEL_NO_": "105601060700", "Tax_Legal_": "404-80 EST.ANNAS RETREAT NEW QUARTER", "Name": "FREDERICKS, BARBARA HARRIGAN", "Address": "PO Box 502672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28800, "Improved_V": 144100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.00808291, "SHAPE_Area": 737.93336482799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362875.210199996829033, 257289.157299999147654 ], [ 362876.298900000751019, 257256.024500001221895 ], [ 362853.702299997210503, 257258.16160000115633 ], [ 362853.670000001788139, 257261.960999999195337 ], [ 362852.619099996984005, 257290.661100000143051 ], [ 362875.210199996829033, 257289.157299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86204151, "LATITUDE": 18.34224376, "OBJECTID_1": 23734, "PARCEL_NO_": "105801011100", "Tax_Legal_": "SMITH BAY 3 EAST END", "Name": "DOWN ISLAND VIEW DEVELOPERS LLC", "Address": "5212 Wimmelskafts Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 548100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1075.5347105799999, "SHAPE_Area": 33115.4564646 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366182.429200001060963, 257159.171700000762939 ], [ 366060.785300001502037, 256861.378600001335144 ], [ 365949.94650000333786, 256904.378899998962879 ], [ 366102.782300002872944, 257137.621599998325109 ], [ 366113.03490000218153, 257259.295400001108646 ], [ 366118.184600003063679, 257317.388199999928474 ], [ 366119.809799998998642, 257315.923900000751019 ], [ 366124.721400000154972, 257307.309300001710653 ], [ 366126.393399998545647, 257300.356899999082088 ], [ 366127.241099998354912, 257295.508600000292063 ], [ 366127.383100003004074, 257278.833399999886751 ], [ 366129.929700002074242, 257263.866599999368191 ], [ 366134.05120000243187, 257253.34569999948144 ], [ 366138.133100003004074, 257247.468499999493361 ], [ 366148.893899999558926, 257214.837000001221895 ], [ 366169.236900001764297, 257193.260899998247623 ], [ 366175.762900002300739, 257184.448399998247623 ], [ 366179.895199999213219, 257172.660999998450279 ], [ 366182.429200001060963, 257159.171700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602040900", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-4", "ACRE": "0.26", "LONGITUDE": -64.88910128000001, "LATITUDE": 18.3445565, "OBJECTID_1": 21188, "PARCEL_NO_": "105602040900", "Tax_Legal_": "143A-4 ANNAS RETREAT NEW QTR", "Name": "LANG, MYRTLE A. & ARIENNE J.", "Address": "PO Box 6193", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37500, "Improved_V": 255600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.023251297, "SHAPE_Area": 1006.6901736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363224.688799999654293, 257251.48759999871254 ], [ 363218.223899997770786, 257253.123500000685453 ], [ 363210.159000001847744, 257253.2685999982059 ], [ 363198.082299999892712, 257251.058800000697374 ], [ 363213.848899997770786, 257293.406500000506639 ], [ 363238.918300002813339, 257284.956900000572205 ], [ 363224.688799999654293, 257251.48759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702041500", "MAP": "F9-2639-T70", "PARCEL_NAM": "56B-F", "ACRE": "0.30", "LONGITUDE": -64.8733422, "LATITUDE": 18.34444386, "OBJECTID_1": 22579, "PARCEL_NO_": "105702041500", "Tax_Legal_": "SMITH BAY 56BF EAST END QTR", "Name": "Margaret Gordon,Muria Nisbett & ucille Christopher", "Address": "PO Box 304703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39000, "Improved_V": 74400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.451309858, "SHAPE_Area": 1082.62419189 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364883.473099999129772, 257241.632599998265505 ], [ 364883.121699996292591, 257240.646600000560284 ], [ 364866.863300003111362, 257241.207400001585484 ], [ 364868.138800002634525, 257243.195900000631809 ], [ 364872.08049999922514, 257253.782800000160933 ], [ 364872.829199999570847, 257260.5439000017941 ], [ 364883.722000002861023, 257307.073699999600649 ], [ 364901.565200001001358, 257294.976300001144409 ], [ 364893.694499999284744, 257272.324799999594688 ], [ 364883.473099999129772, 257241.632599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602038500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88773144, "LATITUDE": 18.34457718, "OBJECTID_1": 21177, "PARCEL_NO_": "105602038500", "Tax_Legal_": "394-383 ANNAS RETREAT NEW QTR", "Name": "GREEN, NOEL & CYTHELIA", "Address": "PO Box 303934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 172600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.31766742799999, "SHAPE_Area": 678.95658761300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363380.197400003671646, 257265.637099999934435 ], [ 363365.728699997067451, 257260.241399999707937 ], [ 363356.067400000989437, 257258.473499998450279 ], [ 363347.81360000371933, 257280.781899999827147 ], [ 363350.218199998140335, 257282.490299999713898 ], [ 363367.05009999871254, 257294.449299998581409 ], [ 363380.197400003671646, 257265.637099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502040300", "MAP": null, "PARCEL_NAM": "REM of RAPHUNE", "ACRE": null, "LONGITUDE": -64.90796181, "LATITUDE": 18.34254511, "OBJECTID_1": 19909, "PARCEL_NO_": "105502040300", "Tax_Legal_": "REM. ESTATE RAPHUNE NEW QTR", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1053600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1601.33895854, "SHAPE_Area": 120183.737905 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361192.927000001072884, 257217.760099999606609 ], [ 361199.388300001621246, 257216.546399999409914 ], [ 361209.865000002086163, 257217.265399999916553 ], [ 361222.80009999871254, 257213.360500000417233 ], [ 361242.155199997127056, 257213.096700001507998 ], [ 361266.389600001275539, 257208.017700001597404 ], [ 361281.695100001990795, 257209.831799998879433 ], [ 361310.693599998950958, 257213.446600001305342 ], [ 361328.401900000870228, 257217.180100001394749 ], [ 361341.279500000178814, 257220.029699999839067 ], [ 361353.352600000798702, 257222.661699999123812 ], [ 361375.130300000309944, 257221.99549999833107 ], [ 361377.552799999713898, 257221.593199998140335 ], [ 361385.624899998307228, 257220.603799998760223 ], [ 361408.257399998605251, 257214.245099999010563 ], [ 361407.531999997794628, 257204.739999998360872 ], [ 361408.024700000882149, 257146.904399998486042 ], [ 361406.867499999701977, 257030.224500000476837 ], [ 361422.017200000584126, 257018.885099999606609 ], [ 361415.570299997925758, 257018.410100001841784 ], [ 361360.773400001227856, 257014.162000000476837 ], [ 361342.553700000047684, 256975.804900001734495 ], [ 361340.968099996447563, 256972.625500001013279 ], [ 361340.190499998629093, 256969.241700001060963 ], [ 361339.396799996495247, 256967.757500000298023 ], [ 361337.008400000631809, 256964.149399999529123 ], [ 361334.632700003683567, 256959.063700001686811 ], [ 361333.064999997615814, 256953.773499999195337 ], [ 361329.88289999961853, 256948.681200001388788 ], [ 361311.681199997663498, 256908.21339999884367 ], [ 361307.739500001072884, 256897.626400001347065 ], [ 361307.764700002968311, 256894.671300001442432 ], [ 361306.987099997699261, 256891.287500001490116 ], [ 361296.980599999427795, 256853.347300000488758 ], [ 361293.707800000905991, 256840.938499998301268 ], [ 361280.4391999989748, 256789.323100000619888 ], [ 361263.068999998271465, 256745.906800001859665 ], [ 361256.614900000393391, 256746.276099998503923 ], [ 361254.253499999642372, 256739.501800000667572 ], [ 361251.886699996888638, 256733.360700000077486 ], [ 361250.278999999165535, 256728.601399999111891 ], [ 361216.12950000166893, 256737.28940000012517 ], [ 361204.048092876852024, 256739.723839609679999 ], [ 361191.840700000524521, 256741.416900001466274 ], [ 361180.98516523570288, 256742.72881210851483 ], [ 361170.086448923975695, 256743.612967729830416 ], [ 361159.161399997770786, 256744.067999999970198 ], [ 361156.3496999964118, 256744.115499999374151 ], [ 361156.520700000226498, 256758.544700000435114 ], [ 361037.615099996328354, 257275.172899998724461 ], [ 361037.666299998760223, 257275.1537000015378 ], [ 361063.501599997282028, 257265.46339999884367 ], [ 361077.2449000030756, 257261.353999998420477 ], [ 361100.710699997842312, 257251.835799999535084 ], [ 361106.376500003039837, 257249.348999999463558 ], [ 361133.090899996459484, 257237.113099999725819 ], [ 361143.607100002467632, 257233.188400000333786 ], [ 361163.813500002026558, 257227.65430000051856 ], [ 361187.273800000548363, 257218.769299998879433 ], [ 361192.927000001072884, 257217.760099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601030400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-151", "ACRE": ".113", "LONGITUDE": -64.8962743, "LATITUDE": 18.34464505, "OBJECTID_1": 20617, "PARCEL_NO_": "105601030400", "Tax_Legal_": "146-151 ANNAS RETREAT 1 NEW QTR", "Name": "TRUST AGREEMENT OF EDRIS ERMA EVANS", "Address": "PO Box 874", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16300, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.432808169400005, "SHAPE_Area": 410.53941983099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362473.031099997460842, 257265.811799999326468 ], [ 362453.706600002944469, 257262.487199999392033 ], [ 362448.665500000119209, 257286.299499999731779 ], [ 362468.036799997091293, 257284.135999999940395 ], [ 362473.031099997460842, 257265.811799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601060600", "MAP": "D9-2022-T82", "PARCEL_NAM": "404-79", "ACRE": "0.17", "LONGITUDE": -64.89223628000001, "LATITUDE": 18.34460104, "OBJECTID_1": 20842, "PARCEL_NO_": "105601060600", "Tax_Legal_": "404-79 ANNAS RETEAT NEW QTR.", "Name": "Muguette Marie Lloyd & Others", "Address": "PO Box 7182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21200, "Improved_V": 208200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.579125043, "SHAPE_Area": 758.27358321999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362903.44200000166893, 257288.121800001710653 ], [ 362893.245800003409386, 257254.474500000476837 ], [ 362876.298900000751019, 257256.024500001221895 ], [ 362875.210199996829033, 257289.157299999147654 ], [ 362881.664300002157688, 257288.787900000810623 ], [ 362903.44200000166893, 257288.121800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601016100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-66", "ACRE": ".118", "LONGITUDE": -64.89654868, "LATITUDE": 18.34460688, "OBJECTID_1": 20498, "PARCEL_NO_": "105601016100", "Tax_Legal_": "146-66 ANNAS RETREAT NEW QTR", "Name": "SIBILLY, ROSALIE", "Address": "146-66 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 85700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.017660547999995, "SHAPE_Area": 604.57844726999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362440.615000002086163, 257284.756000000983477 ], [ 362445.686700001358986, 257257.35530000180006 ], [ 362421.490099996328354, 257258.001600001007318 ], [ 362416.467000000178814, 257279.703200001269579 ], [ 362440.615000002086163, 257284.756000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601060500", "MAP": "D9-2022-T82", "PARCEL_NAM": "404-78", "ACRE": "0.18", "LONGITUDE": -64.89201149, "LATITUDE": 18.34457604, "OBJECTID_1": 20841, "PARCEL_NO_": "105601060500", "Tax_Legal_": "404-78 ANNAS RETREAT NEW QTR.", "Name": "GUILER, DORA MAE", "Address": "404-78 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 165800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.89817176299999, "SHAPE_Area": 786.35760162600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362936.588899999856949, 257278.049499999731779 ], [ 362914.956900000572205, 257261.618299998342991 ], [ 362910.192800000309944, 257252.924400001764297 ], [ 362893.245800003409386, 257254.474500000476837 ], [ 362903.44200000166893, 257288.121800001710653 ], [ 362922.845600001513958, 257282.158900000154972 ], [ 362936.588899999856949, 257278.049499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601024900", "MAP": "D9-372-63", "PARCEL_NAM": "139", "ACRE": "0.17", "LONGITUDE": -64.8941854, "LATITUDE": 18.34458265, "OBJECTID_1": 20578, "PARCEL_NO_": "105601024900", "Tax_Legal_": "ANNAS RETREAT 139 NEW QTR", "Name": "KING, ALBERTO JR. & ETHELYNE H. DEGOUT", "Address": "PO Box 304582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22600, "Improved_V": 116600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.358758737, "SHAPE_Area": 744.74411327999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362694.875, 257254.961800001561642 ], [ 362679.560400001704693, 257254.203200001269579 ], [ 362674.733300000429153, 257252.897100001573563 ], [ 362671.502700001001358, 257253.504000000655651 ], [ 362669.828900001943111, 257260.667500000447035 ], [ 362668.01129999756813, 257284.717300001531839 ], [ 362692.200699999928474, 257284.915199998766184 ], [ 362694.875, 257254.961800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601024800", "MAP": "D9-372-63", "PARCEL_NAM": "138", "ACRE": "0.17", "LONGITUDE": -64.89396505000001, "LATITUDE": 18.34458544, "OBJECTID_1": 20577, "PARCEL_NO_": "105601024800", "Tax_Legal_": "ANNAS RETREAT 138 NEW QTR", "Name": "DAWSON, BENITO, CAROLINE & BENITO E III", "Address": "PO Box 10275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013275, "Country": "United States", "Land_Value": 25200, "Improved_V": 197200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.76691646499999, "SHAPE_Area": 654.87150509900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362718.248999997973442, 257256.208599999547005 ], [ 362694.875, 257254.961800001561642 ], [ 362692.200699999928474, 257284.915199998766184 ], [ 362713.164800003170967, 257285.086800001561642 ], [ 362718.248999997973442, 257256.208599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601024700", "MAP": "D9-372-63", "PARCEL_NAM": "137", "ACRE": "0.17", "LONGITUDE": -64.89374817, "LATITUDE": 18.34459328, "OBJECTID_1": 20576, "PARCEL_NO_": "105601024700", "Tax_Legal_": "137 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, VERNON & VERNA", "Address": "PO Box 502764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21300, "Improved_V": 164500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.074788846, "SHAPE_Area": 677.68132280700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362741.623099997639656, 257257.455400001257658 ], [ 362718.248999997973442, 257256.208599999547005 ], [ 362713.164800003170967, 257285.086800001561642 ], [ 362737.35419999808073, 257285.284800000488758 ], [ 362741.623099997639656, 257257.455400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601024600", "MAP": "D9-395-T63", "PARCEL_NAM": "143-10", "ACRE": "0.17", "LONGITUDE": -64.89352299, "LATITUDE": 18.34459756, "OBJECTID_1": 20575, "PARCEL_NO_": "105601024600", "Tax_Legal_": "143-10 ANNAS RETREAT NEW QTR", "Name": "WINSTON, CLAUDIA P", "Address": "PO Box 304045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21300, "Improved_V": 138600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.955930459, "SHAPE_Area": 654.27789147700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362764.998999997973442, 257258.491099998354912 ], [ 362741.623099997639656, 257257.455400001257658 ], [ 362737.35419999808073, 257285.284800000488758 ], [ 362747.836199998855591, 257285.370600000023842 ], [ 362761.543600000441074, 257285.482799999415874 ], [ 362764.998999997973442, 257258.491099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601024500", "MAP": "D9-395-T63", "PARCEL_NAM": "143-9", "ACRE": "0.17", "LONGITUDE": -64.89330947000001, "LATITUDE": 18.34460184, "OBJECTID_1": 20574, "PARCEL_NO_": "105601024500", "Tax_Legal_": "143-9 ANNAS RETREAT NEW QTR", "Name": "TOUSSAINT, JOSEPH & BRIDGET", "Address": "PO BOX 9265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27900, "Improved_V": 123300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.050980949000007, "SHAPE_Area": 567.55535751499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362785.954099997878075, 257259.717999998480082 ], [ 362764.998999997973442, 257258.491099998354912 ], [ 362761.543600000441074, 257285.482799999415874 ], [ 362783.314000003039837, 257285.660900000482798 ], [ 362785.954099997878075, 257259.717999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701038400", "MAP": "D9-528-T65", "PARCEL_NAM": "20-22A", "ACRE": ".454", "LONGITUDE": -64.87789471000001, "LATITUDE": 18.3444359, "OBJECTID_1": 22025, "PARCEL_NO_": "105701038400", "Tax_Legal_": "20-22A & 20-22B SMITH BAY 1,2&3 EAST END QTR", "Name": "SMITH BAY PLAZA LLC", "Address": "PO Box 7395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.127472001, "SHAPE_Area": 1857.50418317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364429.827299997210503, 257254.682599999010563 ], [ 364404.748099997639656, 257236.049300000071526 ], [ 364371.090700000524521, 257281.346500001847744 ], [ 364412.594899997115135, 257295.735800001770258 ], [ 364429.827299997210503, 257254.682599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701017800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88144054, "LATITUDE": 18.34441736, "OBJECTID_1": 21906, "PARCEL_NO_": "105701017800", "Tax_Legal_": "20B EST. ANNAS RETREAT NEW QTR", "Name": "KING, JULIO & SHIRLEY L", "Address": "PO Box 10211", "City": "Van Nuys", "State": "California", "Zip": 91410, "Country": "United States", "Land_Value": 68500, "Improved_V": 530000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.57901792000001, "SHAPE_Area": 2129.3789154800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364051.338899999856949, 257237.144000001251698 ], [ 364048.946900002658367, 257233.958000000566244 ], [ 364048.1621999964118, 257231.418499998748302 ], [ 363998.752400003373623, 257257.400800000876188 ], [ 364006.500799998641014, 257294.405600000172853 ], [ 364059.146700002253056, 257267.183200001716614 ], [ 364051.338899999856949, 257237.144000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87355796, "LATITUDE": 18.34441817, "OBJECTID_1": 22575, "PARCEL_NO_": "105702041000", "Tax_Legal_": "SMITH BAY 56AE EAST END QTR", "Name": "VINCENT SAMUEL FAMILY REVOC TRUST", "Address": "169-3 ESTATE FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 74900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.65612262, "SHAPE_Area": 852.65571713999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364874.937100000679493, 257297.080400001257658 ], [ 364865.631800003349781, 257253.518899999558926 ], [ 364860.88740000128746, 257242.503199998289347 ], [ 364857.705300003290176, 257237.410900000482798 ], [ 364853.709700003266335, 257233.156399998813868 ], [ 364849.620600000023842, 257239.877900000661612 ], [ 364847.180100001394749, 257242.390999998897314 ], [ 364851.954999998211861, 257249.818399999290705 ], [ 364854.3074000030756, 257257.64809999987483 ], [ 364858.778499998152256, 257300.747800000011921 ], [ 364874.937100000679493, 257297.080400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702068400", "MAP": "D9-1585-T80", "PARCEL_NAM": "57-117D", "ACRE": ".31", "LONGITUDE": -64.87145653, "LATITUDE": 18.34446318, "OBJECTID_1": 22719, "PARCEL_NO_": "105702068400", "Tax_Legal_": "57-117 SMITH BAY E No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 77000, "Improved_V": 5800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.88334430899999, "SHAPE_Area": 1030.0958655899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365066.392800003290176, 257256.428599998354912 ], [ 365054.33049999922514, 257252.530200000852346 ], [ 365089.391000002622604, 257301.790899999439716 ], [ 365101.518100000917912, 257298.090399999171495 ], [ 365098.557199999690056, 257267.035500001162291 ], [ 365066.392800003290176, 257256.428599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601019500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-84", "ACRE": ".151", "LONGITUDE": -64.89680491, "LATITUDE": 18.34457805, "OBJECTID_1": 20532, "PARCEL_NO_": "105601019500", "Tax_Legal_": "146-84 ANNAS RETREAT NEW QTR", "Name": "DeVOUX, CAROL, VALLEJO, MARIA", "Address": "146-84 EST. TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 148000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.33449526, "SHAPE_Area": 631.13005336499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362421.490099996328354, 257258.001600001007318 ], [ 362395.718699999153614, 257254.202100001275539 ], [ 362395.702500000596046, 257256.101799998432398 ], [ 362384.300800003111362, 257269.307399999350309 ], [ 362389.09910000115633, 257273.990699999034405 ], [ 362416.467000000178814, 257279.703200001269579 ], [ 362421.490099996328354, 257258.001600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601040600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-16", "ACRE": "0.24", "LONGITUDE": -64.89857918, "LATITUDE": 18.34444727, "OBJECTID_1": 20702, "PARCEL_NO_": "105601040600", "Tax_Legal_": "ANNAS RETREAT 146-16 1 NEW QTR", "Name": "WALSKA M CAINES REVOCABLE FAMILY TRUST", "Address": "146-16 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32900, "Improved_V": 116600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.79213767100001, "SHAPE_Area": 1034.9463678300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362237.614900000393391, 257260.718600001186132 ], [ 362215.334799997508526, 257225.705800000578165 ], [ 362195.065499998629093, 257238.627700001001358 ], [ 362221.344800002872944, 257277.472899999469519 ], [ 362237.614900000393391, 257260.718600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602042000", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-14", "ACRE": null, "LONGITUDE": -64.89094723, "LATITUDE": 18.34448031, "OBJECTID_1": 21199, "PARCEL_NO_": "105602042000", "Tax_Legal_": "143A-14 ANNAS RETREAT NEW QTR", "Name": "FAHIE, ERMENIE", "Address": "PO Box 11253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 82500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.790182851, "SHAPE_Area": 843.20610628099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363039.836400002241135, 257274.250500001013279 ], [ 363028.835799999535084, 257240.385499998927116 ], [ 363007.83389999717474, 257244.646499998867512 ], [ 363018.789599999785423, 257283.788499999791384 ], [ 363039.836400002241135, 257274.250500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602041000", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-3", "ACRE": "0.23", "LONGITUDE": -64.888858, "LATITUDE": 18.344488, "OBJECTID_1": 21189, "PARCEL_NO_": "105602041000", "Tax_Legal_": "143A-3 ANNAS RETREAT NEW QTR", "Name": "FRAZER, ELOISE A", "Address": "PO Box 2771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28900, "Improved_V": 54400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.339253898, "SHAPE_Area": 923.03352000100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363269.714599996805191, 257266.843800000846386 ], [ 363237.65990000218153, 257243.361200001090765 ], [ 363231.162699997425079, 257248.796399999409914 ], [ 363224.688799999654293, 257251.48759999871254 ], [ 363238.918300002813339, 257284.956900000572205 ], [ 363240.536300003528595, 257284.336899999529123 ], [ 363269.714599996805191, 257266.843800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87427911, "LATITUDE": 18.34441946, "OBJECTID_1": 22569, "PARCEL_NO_": "105702040400", "Tax_Legal_": "SMITH BAY 44 EAST END QTR", "Name": "ROUMOU, CLAUDIA & OTHERS", "Address": "PO Box 6121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.72036782199999, "SHAPE_Area": 1404.37917057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364797.959100000560284, 257246.210099998861551 ], [ 364782.637299999594688, 257246.295800000429153 ], [ 364769.750699996948242, 257244.501499999314547 ], [ 364767.313799999654293, 257246.592500001192093 ], [ 364775.749899998307228, 257297.535100001841784 ], [ 364803.243600003421307, 257288.471999999135733 ], [ 364797.959100000560284, 257246.210099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013600", "MAP": "D9-1219-T74", "PARCEL_NAM": "3AC", "ACRE": ".33", "LONGITUDE": -64.88014844, "LATITUDE": 18.34457017, "OBJECTID_1": 21869, "PARCEL_NO_": "105701013600", "Tax_Legal_": "3AC ANNAS RETREAT NEW QTR", "Name": "SMITH, MARJORIE E.", "Address": "PO Box 11023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54200, "Improved_V": 227000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.643756115, "SHAPE_Area": 1220.0052876100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364171.234899997711182, 257266.833999998867512 ], [ 364164.784400001168251, 257266.781199999153614 ], [ 364137.321199998259544, 257272.256000000983477 ], [ 364124.414800003170967, 257272.783700000494719 ], [ 364139.648400001227856, 257283.040800001472235 ], [ 364182.338600002229214, 257300.045400001108646 ], [ 364187.960699997842312, 257291.246700000017881 ], [ 364189.612800002098083, 257286.616200000047684 ], [ 364190.474899999797344, 257280.079300001263618 ], [ 364189.69200000166893, 257277.328699998557568 ], [ 364187.303599998354912, 257273.720600001513958 ], [ 364184.101700000464916, 257270.950100000947714 ], [ 364177.674599997699261, 257268.153299998492002 ], [ 364171.234899997711182, 257266.833999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602038700", "MAP": null, "PARCEL_NAM": "394-385", "ACRE": null, "LONGITUDE": -64.88829145, "LATITUDE": 18.34451412, "OBJECTID_1": 21179, "PARCEL_NO_": "105602038700", "Tax_Legal_": "394-385 ANNAS RETREAT NEW QTR", "Name": "FREEMAN, CROMWELL & A", "Address": "394-385ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18700, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.478123759900001, "SHAPE_Area": 570.279377114 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363322.212999999523163, 257256.929900001734495 ], [ 363293.979500003159046, 257258.176500000059605 ], [ 363286.69030000269413, 257261.916499998420477 ], [ 363285.864200003445148, 257264.231800001114607 ], [ 363287.439099997282028, 257268.677600000053644 ], [ 363309.085500001907349, 257283.420200001448393 ], [ 363315.640299998223782, 257271.230500001460314 ], [ 363318.910499997437, 257265.979899998754263 ], [ 363322.212999999523163, 257256.929900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702063300", "MAP": "F9-3223-T74", "PARCEL_NAM": "57-120", "ACRE": "0.20", "LONGITUDE": -64.87114916, "LATITUDE": 18.34448688, "OBJECTID_1": 22679, "PARCEL_NO_": "105702063300", "Tax_Legal_": "57-120 SMITH BAY No.1,2 &3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23800, "Improved_V": 111900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.76272737, "SHAPE_Area": 932.82009878199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365136.28660000115633, 257286.975999999791384 ], [ 365131.639399997889996, 257264.561999998986721 ], [ 365098.557199999690056, 257267.035500001162291 ], [ 365101.518100000917912, 257298.090399999171495 ], [ 365136.28660000115633, 257286.975999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601031400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-146", "ACRE": ".119", "LONGITUDE": -64.89578522, "LATITUDE": 18.34449506, "OBJECTID_1": 20627, "PARCEL_NO_": "105601031400", "Tax_Legal_": "146-146 ANNAS RETREAT 1 NEW QTR", "Name": "GERARD BROWN, DELORES & AUBREY A. LEE", "Address": "146-146 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 82100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.153145523899994, "SHAPE_Area": 510.19583662299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362527.12780000269413, 257257.599700000137091 ], [ 362510.337300002574921, 257240.785900000482798 ], [ 362497.258299998939037, 257261.577100001275539 ], [ 362517.300999999046326, 257275.2511 ], [ 362522.246799997985363, 257262.625999998301268 ], [ 362527.12780000269413, 257257.599700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601062700", "MAP": "C9-239-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89161453, "LATITUDE": 18.34449279, "OBJECTID_1": 20863, "PARCEL_NO_": "105601062700", "Tax_Legal_": "ANNAS RETREAT 404-24 & POR 215 NEW QTR.", "Name": "GRELL, JAZMINE A.", "Address": "PO Box 10165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 161600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.271723298, "SHAPE_Area": 606.86710575699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362965.810300000011921, 257255.490600001066923 ], [ 362962.651600003242493, 257247.654199998825788 ], [ 362946.480400003492832, 257252.799199998378754 ], [ 362943.171800002455711, 257253.9662000015378 ], [ 362936.254199996590614, 257260.569299999624491 ], [ 362934.577200002968311, 257262.141499999910593 ], [ 362935.091300003230572, 257264.527300000190735 ], [ 362942.301399998366833, 257270.074700001627207 ], [ 362947.882700003683567, 257277.508699998259544 ], [ 362970.583499997854233, 257263.129000000655651 ], [ 362973.817699998617172, 257262.100000001490116 ], [ 362965.810300000011921, 257255.490600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602038600", "MAP": null, "PARCEL_NAM": "394-384", "ACRE": null, "LONGITUDE": -64.8879839, "LATITUDE": 18.34450707, "OBJECTID_1": 21178, "PARCEL_NO_": "105602038600", "Tax_Legal_": "394-384 ANNAS RETREAT NEW QTR", "Name": "HEIRS OF JAMES & VALENTINE DON", "Address": "PO Box 12001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24500, "Improved_V": 105700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.24075662200001, "SHAPE_Area": 645.59772464000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363315.640299998223782, 257271.230500001460314 ], [ 363345.407300002872944, 257279.284600000828505 ], [ 363347.81360000371933, 257280.781899999827147 ], [ 363356.067400000989437, 257258.473499998450279 ], [ 363340.761799998581409, 257256.659499999135733 ], [ 363322.212999999523163, 257256.929900001734495 ], [ 363318.910499997437, 257265.979899998754263 ], [ 363315.640299998223782, 257271.230500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": "f9-2056-t67", "PARCEL_NAM": "57X", "ACRE": null, "LONGITUDE": -64.87250656000001, "LATITUDE": 18.34439828, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.76515724800001, "SHAPE_Area": 2006.9656829200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364996.310099996626377, 257248.044599998742342 ], [ 364994.753200002014637, 257241.487900000065565 ], [ 364955.963899999856949, 257251.30290000140667 ], [ 364951.921599999070168, 257252.536400001496077 ], [ 364948.653399996459484, 257252.699700001627207 ], [ 364947.133799999952316, 257286.784200001507998 ], [ 364952.427599996328354, 257287.793200001120567 ], [ 364958.062799997627735, 257288.894799999892712 ], [ 364991.888400003314018, 257293.815699998289347 ], [ 364991.958499997854233, 257285.583599999547005 ], [ 364996.238200001418591, 257256.487700000405312 ], [ 364996.310099996626377, 257248.044599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601031700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-143", "ACRE": ".162", "LONGITUDE": -64.8952263, "LATITUDE": 18.34448007, "OBJECTID_1": 20630, "PARCEL_NO_": "105601031700", "Tax_Legal_": "ANNAS RETREAT 146-143 1 NEW QTR", "Name": "BARTLETTE, INEZ, ELKIN NATHIAN LLOYD & M BROWN", "Address": "146-143 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 91900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.567596251, "SHAPE_Area": 683.12825919900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362584.487499997019768, 257244.981300000101328 ], [ 362568.415200002491474, 257238.517000000923872 ], [ 362554.477700002491474, 257265.422899998724461 ], [ 362565.717500001192093, 257271.214400000870228 ], [ 362573.768100000917912, 257272.758000001311302 ], [ 362581.026699997484684, 257272.606300000101328 ], [ 362584.487499997019768, 257244.981300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601032000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-142", "ACRE": ".123", "LONGITUDE": -64.89503369000001, "LATITUDE": 18.34446818, "OBJECTID_1": 20633, "PARCEL_NO_": "105601032000", "Tax_Legal_": "146-142 ANNAS RETREAT 1 NEW QTR", "Name": "LARCHEVEAUX, SERITA", "Address": "PO Box 8504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 95100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.405339366500002, "SHAPE_Area": 517.59975317600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362605.318499997258186, 257260.772799998521805 ], [ 362592.633299998939037, 257235.337699998170137 ], [ 362584.487499997019768, 257244.981300000101328 ], [ 362581.026699997484684, 257272.606300000101328 ], [ 362592.340199999511242, 257269.743599999696016 ], [ 362597.199699997901917, 257267.250199999660254 ], [ 362605.318499997258186, 257260.772799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602070500", "MAP": "C9-221-T78", "PARCEL_NAM": "394-418", "ACRE": "0.57", "LONGITUDE": -64.88339718, "LATITUDE": 18.34427991, "OBJECTID_1": 21319, "PARCEL_NO_": "105602070500", "Tax_Legal_": "ANNAS RETREAT 394-418 REMAINDER No.1 NEW QTR.", "Name": "DOUGLAS, CYNTHIA & IAN", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 89500, "Improved_V": 122000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.94216085900001, "SHAPE_Area": 2214.2271419 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363843.857600003480911, 257265.843400001525879 ], [ 363837.78660000115633, 257221.252900000661612 ], [ 363835.428800001740456, 257214.056499999016523 ], [ 363833.040399998426437, 257210.448300000280142 ], [ 363831.465499997138977, 257206.002500001341105 ], [ 363823.485100001096725, 257196.226799998432398 ], [ 363825.772799998521805, 257211.6554000005126 ], [ 363817.637699998915195, 257220.032600000500679 ], [ 363793.236199997365475, 257244.741900000721216 ], [ 363801.214800000190735, 257254.72859999909997 ], [ 363804.384300000965595, 257261.29839999973774 ], [ 363807.52139999717474, 257271.667700000107288 ], [ 363808.237800002098083, 257282.228199999779463 ], [ 363843.857600003480911, 257265.843400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702026100", "MAP": "D9-7671-T005", "PARCEL_NAM": "4G-12-1", "ACRE": ".23", "LONGITUDE": -64.86773361, "LATITUDE": 18.34406627, "OBJECTID_1": 22459, "PARCEL_NO_": "105702026100", "Tax_Legal_": "ESTATE SMITH BAY 4G-12-1 EAST END QTR", "Name": "O'GARRO, CARMEN A. NIBBS-", "Address": "PO Box 7752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.048303444, "SHAPE_Area": 970.27327941299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365448.948700003325939, 257246.562800001353025 ], [ 365468.084299996495247, 257248.891699999570847 ], [ 365488.771600000560284, 257251.409400001168251 ], [ 365491.459700003266335, 257243.442299999296665 ], [ 365499.699100002646446, 257222.822599999606609 ], [ 365481.193400003015995, 257218.026999998837709 ], [ 365463.337700001895428, 257231.602000001817942 ], [ 365450.323399998247623, 257244.794399999082088 ], [ 365448.948700003325939, 257246.562800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88710392, "LATITUDE": 18.34436144, "OBJECTID_1": 21197, "PARCEL_NO_": "105602041800", "Tax_Legal_": "394-239 ANNAS RETREAT NEW QTR", "Name": "Eva E Saunders, Delano J King & Carla P King", "Address": "PO Box 305422", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 261200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.539158034, "SHAPE_Area": 1200.4722315700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363449.865800000727177, 257227.999400001019239 ], [ 363425.689000003039837, 257226.323899999260902 ], [ 363410.804899998009205, 257269.687300000339746 ], [ 363426.054700002074242, 257278.044799998402596 ], [ 363431.693499997258186, 257278.724199999123812 ], [ 363433.313299998641014, 257277.893100000917912 ], [ 363449.865800000727177, 257227.999400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601018800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-76", "ACRE": ".129", "LONGITUDE": -64.8978687, "LATITUDE": 18.34448183, "OBJECTID_1": 20525, "PARCEL_NO_": "105601018800", "Tax_Legal_": "146-76 ANNAS RETREAT 1 NEW QTR", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.566749885199997, "SHAPE_Area": 477.26080230299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362299.042099997401237, 257243.911699999123812 ], [ 362270.792400002479553, 257247.05799999833107 ], [ 362294.009999997913837, 257266.668600000441074 ], [ 362297.222699999809265, 257268.172499999403954 ], [ 362301.250600002706051, 257268.627700001001358 ], [ 362305.289399996399879, 257267.816399998962879 ], [ 362306.912799999117851, 257266.563099998980761 ], [ 362299.042099997401237, 257243.911699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601019300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-50", "ACRE": ".146", "LONGITUDE": -64.89699623, "LATITUDE": 18.34444887, "OBJECTID_1": 20530, "PARCEL_NO_": "105601019300", "Tax_Legal_": "146-50 ANNAS RETREAT 1 NEW QTR", "Name": "GRANT, ELLEN (LIFE ESTATE)", "Address": "PO Box 8462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17100, "Improved_V": 108300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.7529762586, "SHAPE_Area": 575.55716622199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362395.718699999153614, 257254.202100001275539 ], [ 362398.261699996888638, 257239.657499998807907 ], [ 362390.995899997651577, 257240.653499998152256 ], [ 362386.980499997735023, 257238.720800001174212 ], [ 362383.758799999952316, 257238.272199999541044 ], [ 362373.249799996614456, 257241.352600000798702 ], [ 362373.847499996423721, 257265.844399999827147 ], [ 362381.091700002551079, 257267.381299998611212 ], [ 362384.300800003111362, 257269.307399999350309 ], [ 362395.702500000596046, 257256.101799998432398 ], [ 362395.718699999153614, 257254.202100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602017200", "MAP": "A9-211-T73", "PARCEL_NAM": "388 B", "ACRE": null, "LONGITUDE": -64.88676788, "LATITUDE": 18.34420276, "OBJECTID_1": 20987, "PARCEL_NO_": "105602017200", "Tax_Legal_": "388 EST ANNAS RETREAT NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 840700, "Improved_V": 700100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.16570101799999, "SHAPE_Area": 2445.62293675 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363484.796099998056889, 257197.887800000607967 ], [ 363459.811200000345707, 257196.416799999773502 ], [ 363450.693599998950958, 257225.473000001162291 ], [ 363449.865800000727177, 257227.999400001019239 ], [ 363433.313299998641014, 257277.893100000917912 ], [ 363436.55120000243187, 257276.441899999976158 ], [ 363438.997100003063679, 257273.295499999076128 ], [ 363444.678999997675419, 257268.909099999815226 ], [ 363453.593400001525879, 257263.704700000584126 ], [ 363459.257399998605251, 257261.429000001400709 ], [ 363484.305200003087521, 257255.512299999594688 ], [ 363487.546700000762939, 257253.638999998569489 ], [ 363489.189800001680851, 257250.063900001347065 ], [ 363490.048299998044968, 257243.949200000613928 ], [ 363485.381300002336502, 257223.857099998742342 ], [ 363483.955600000917912, 257201.891699999570847 ], [ 363484.796099998056889, 257197.887800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602042100", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-15", "ACRE": "0.23", "LONGITUDE": -64.89070731, "LATITUDE": 18.3444115, "OBJECTID_1": 21200, "PARCEL_NO_": "105602042100", "Tax_Legal_": "143A-15 ANNAS RETREAT 1 NEW QTR", "Name": "CAMMIE, JANA", "Address": "PO Box 302593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.50627084499999, "SHAPE_Area": 1056.90294548 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363068.12389999628067, 257266.671500001102686 ], [ 363060.337700001895428, 257234.099399998784065 ], [ 363031.258299998939037, 257239.9831000007689 ], [ 363028.835799999535084, 257240.385499998927116 ], [ 363039.836400002241135, 257274.250500001013279 ], [ 363068.12389999628067, 257266.671500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601019100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-49", "ACRE": ".148", "LONGITUDE": -64.89719615, "LATITUDE": 18.3444769, "OBJECTID_1": 20528, "PARCEL_NO_": "105601019100", "Tax_Legal_": "146-49 ANNAS RETREAT NEW QUARTER", "Name": "GRUEL, WARREN & E", "Address": "146-49 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.7466328565, "SHAPE_Area": 460.06973842799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362373.249799996614456, 257241.352600000798702 ], [ 362345.74889999628067, 257251.260000001639128 ], [ 362361.729500003159046, 257268.489399999380112 ], [ 362368.199699997901917, 257266.220300000160933 ], [ 362373.847499996423721, 257265.844399999827147 ], [ 362373.249799996614456, 257241.352600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601018900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-77", "ACRE": ".113", "LONGITUDE": -64.8976821, "LATITUDE": 18.34442464, "OBJECTID_1": 20526, "PARCEL_NO_": "105601018900", "Tax_Legal_": "146-77 ANNAS RETREAT 1 NEW QTR", "Name": "THOMAS, VERNON & JEANETTE", "Address": "P.O.BOX 3935", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 137700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.631609711099998, "SHAPE_Area": 459.30365317000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362325.592799998819828, 257250.88399999961257 ], [ 362317.675399996340275, 257233.720600001513958 ], [ 362306.333099998533726, 257239.96059999987483 ], [ 362299.042099997401237, 257243.911699999123812 ], [ 362306.912799999117851, 257266.563099998980761 ], [ 362319.108199998736382, 257254.841699998825788 ], [ 362325.592799998819828, 257250.88399999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701031900", "MAP": "F9-2335-T68", "PARCEL_NAM": "20b-1", "ACRE": ".54", "LONGITUDE": -64.87620335, "LATITUDE": 18.34439493, "OBJECTID_1": 21967, "PARCEL_NO_": "105701031900", "Tax_Legal_": "20B-1 SMITH BAY EAST END QTR", "Name": "GRIGG, DAVID & SUZANNE", "Address": "1429 Taureau Ct", "City": "Virginia Beach", "State": "Virginia", "Zip": 23451, "Country": "United States", "Land_Value": 71100, "Improved_V": 136500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.281979033, "SHAPE_Area": 1455.1881204 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364620.313199996948242, 257274.942499998956919 ], [ 364621.187799997627735, 257266.928100001066923 ], [ 364557.670800000429153, 257245.087799999862909 ], [ 364552.847300000488758, 257243.359600000083447 ], [ 364551.825199998915195, 257268.682399999350309 ], [ 364576.104599997401237, 257277.222300000488758 ], [ 364590.398699998855591, 257279.220400001853704 ], [ 364606.844499997794628, 257278.605599999427795 ], [ 364620.313199996948242, 257274.942499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601030500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-152", "ACRE": ".114", "LONGITUDE": -64.89621956000001, "LATITUDE": 18.34444933, "OBJECTID_1": 20618, "PARCEL_NO_": "105601030500", "Tax_Legal_": "146-152 ANNAS RETREAT 1 NEW QTR", "Name": "WHYTE, DONALD & GERTRUDE", "Address": "146-152 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 90800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.607528707900002, "SHAPE_Area": 462.62381926 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362479.677599996328354, 257242.85700000077486 ], [ 362458.727899998426437, 257240.996700000017881 ], [ 362453.706600002944469, 257262.487199999392033 ], [ 362473.031099997460842, 257265.811799999326468 ], [ 362479.677599996328354, 257242.85700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702063500", "MAP": "D9-7934-T006", "PARCEL_NAM": "57T-1-A", "ACRE": ".009", "LONGITUDE": -64.87098814, "LATITUDE": 18.34437912, "OBJECTID_1": 22680, "PARCEL_NO_": "105702063500", "Tax_Legal_": "SMITH BAY 57T-1 EAST END QTR", "Name": "GOVIA, MARGARET", "Address": "PO Box 11825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.258774219199999, "SHAPE_Area": 16.295290272500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365133.395999997854233, 257273.034499999135733 ], [ 365134.41950000077486, 257272.84010000154376 ], [ 365133.985600002110004, 257263.067299999296665 ], [ 365131.639399997889996, 257264.561999998986721 ], [ 365133.395999997854233, 257273.034499999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701051700", "MAP": "D9-263-T60", "PARCEL_NAM": "34", "ACRE": "0.34", "LONGITUDE": -64.87540026000001, "LATITUDE": 18.34443194, "OBJECTID_1": 22120, "PARCEL_NO_": "105701051700", "Tax_Legal_": "SMITH BAY 34 1,2&3 EAST END", "Name": "SWAN, ALVIN", "Address": "7773 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.19653758699999, "SHAPE_Area": 1275.0247529799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364690.613399997353554, 257257.785999998450279 ], [ 364640.623800002038479, 257257.165800001472235 ], [ 364638.892499998211861, 257271.083799999207258 ], [ 364638.017899997532368, 257279.098200000822544 ], [ 364696.041799999773502, 257283.161699999123812 ], [ 364690.613399997353554, 257257.785999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601031800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-144", "ACRE": ".141", "LONGITUDE": -64.89540858, "LATITUDE": 18.34438244, "OBJECTID_1": 20631, "PARCEL_NO_": "105601031800", "Tax_Legal_": "146-144 ANNA'S RETREAT 1 NEW QTR", "Name": "BRICE CAGAN TRUST and LORECIA CAGAN", "Address": "46144 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 113500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.99828086700001, "SHAPE_Area": 615.64003473399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362550.735600002110004, 257231.406199999153614 ], [ 362544.306699998676777, 257228.820500001311302 ], [ 362539.23870000243187, 257255.7989999987185 ], [ 362544.062200002372265, 257257.527199998497963 ], [ 362546.459499999880791, 257260.079900000244379 ], [ 362554.477700002491474, 257265.422899998724461 ], [ 362568.415200002491474, 257238.517000000923872 ], [ 362550.735600002110004, 257231.406199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701039200", "MAP": "F9-3520-T77", "PARCEL_NAM": "20-22D", "ACRE": ".23", "LONGITUDE": -64.87739842000001, "LATITUDE": 18.34435638, "OBJECTID_1": 22027, "PARCEL_NO_": "105701039200", "Tax_Legal_": "20-22D SMITH BAY EAST END QTR", "Name": "KIRT, LIANA and LASHAMA K PARRIS", "Address": "PO Box 503083", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31200, "Improved_V": 104700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.54555625, "SHAPE_Area": 903.66709009399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364475.17339999973774, 257268.050599999725819 ], [ 364473.329599998891354, 257265.250399999320507 ], [ 364469.542080074257683, 257258.607398780266521 ], [ 364466.46722581324866, 257251.605967237410368 ], [ 364464.13849999755621, 257244.322299998253584 ], [ 364458.535700000822544, 257239.421300001442432 ], [ 364435.053700000047684, 257250.839200001209974 ], [ 364441.398100003600121, 257263.34569999948144 ], [ 364458.987700000405312, 257281.010400000959635 ], [ 364475.17339999973774, 257268.050599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701051200", "MAP": "F9-1130-T63", "PARCEL_NAM": "28A", "ACRE": "0.11", "LONGITUDE": -64.87492739, "LATITUDE": 18.34443513, "OBJECTID_1": 22115, "PARCEL_NO_": "105701051200", "Tax_Legal_": "SMITH BAY 28A EAST END QTR", "Name": "SMITH, HARRIETT & SEALES, LEON", "Address": "8215 Demings Dr", "City": "Orlando", "State": "Florida", "Zip": 32825, "Country": "United States", "Land_Value": 13100, "Improved_V": 161800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.27606862099999, "SHAPE_Area": 697.84944131899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364733.942100003361702, 257283.049699999392033 ], [ 364730.928999997675419, 257258.11600000038743 ], [ 364697.837899997830391, 257261.644799999892712 ], [ 364700.915700003504753, 257278.979699999094009 ], [ 364733.942100003361702, 257283.049699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701050800", "MAP": "F9-249-T57", "PARCEL_NAM": "29", "ACRE": "0.23", "LONGITUDE": -64.87464904, "LATITUDE": 18.34439426, "OBJECTID_1": 22111, "PARCEL_NO_": "105701050800", "Tax_Legal_": "SMITH BAY 29 EAST END QTR", "Name": "TODMAN, HENRYO. & ELEANOR D. (CO-TRUSTEES)", "Address": "PO Box 303545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 142700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.127758613, "SHAPE_Area": 967.28933507099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364758.413800001144409, 257250.108300000429153 ], [ 364730.203599996864796, 257248.610800001770258 ], [ 364730.928999997675419, 257258.11600000038743 ], [ 364733.942100003361702, 257283.049699999392033 ], [ 364763.786399997770786, 257282.027399998158216 ], [ 364758.413800001144409, 257250.108300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701016600", "MAP": "C9-260-T80", "PARCEL_NAM": "7-7", "ACRE": ".50", "LONGITUDE": -64.87964718000001, "LATITUDE": 18.34431088, "OBJECTID_1": 21895, "PARCEL_NO_": "105701016600", "Tax_Legal_": "7-7 TABOR & HARMONY EAST END QTR.", "Name": "KING, DONNIE M", "Address": "13-2 Bonne Resoultion", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.16757136300001, "SHAPE_Area": 1926.57786225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364238.079700000584126, 257276.669300001114607 ], [ 364231.414499998092651, 257207.164900001138449 ], [ 364189.002499997615814, 257263.602000001817942 ], [ 364195.406300000846386, 257269.142799999564886 ], [ 364199.364100001752377, 257277.829999998211861 ], [ 364238.079700000584126, 257276.669300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601040700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-15", "ACRE": "0.23", "LONGITUDE": -64.8984118, "LATITUDE": 18.34431707, "OBJECTID_1": 20703, "PARCEL_NO_": "105601040700", "Tax_Legal_": "146-15 ANNAS RETREAT 1 NEW QTR", "Name": "LAKE, SAMUEL & ERMA P", "Address": "PO BOX 7721", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 128600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.866178457, "SHAPE_Area": 843.46539239599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362253.906599998474121, 257241.43129999935627 ], [ 362231.560000002384186, 257214.228399999439716 ], [ 362227.497800000011921, 257217.7837999984622 ], [ 362215.334799997508526, 257225.705800000578165 ], [ 362237.614900000393391, 257260.718600001186132 ], [ 362253.906599998474121, 257241.43129999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701016500", "MAP": "C9-260-T80", "PARCEL_NAM": "7-8", "ACRE": ".51", "LONGITUDE": -64.87934182, "LATITUDE": 18.34422182, "OBJECTID_1": 21894, "PARCEL_NO_": "105701016500", "Tax_Legal_": "7-8 TABOR & HARMONY EAST END QTR.", "Name": "CONNOR, MARGARET & AHEAL", "Address": "40 Mitchell Ave", "City": "New Brunswick", "State": "New Jersey", "Zip": 8901, "Country": "United States", "Land_Value": 67500, "Improved_V": 66900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.19767368199999, "SHAPE_Area": 2229.8911249799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364244.988899998366833, 257194.273699998855591 ], [ 364242.841300003230572, 257191.004200000315905 ], [ 364231.414499998092651, 257207.164900001138449 ], [ 364238.079700000584126, 257276.669300001114607 ], [ 364270.3412000015378, 257275.87779999896884 ], [ 364271.969999998807907, 257273.991300001740456 ], [ 364272.8445999994874, 257265.97690000012517 ], [ 364262.749200001358986, 257220.509199999272823 ], [ 364261.161700002849102, 257217.540899999439716 ], [ 364256.35980000346899, 257213.279699999839067 ], [ 364247.501199997961521, 257211.940600000321865 ], [ 364242.699299998581409, 257207.679499998688698 ], [ 364241.163999997079372, 257198.589899998158216 ], [ 364242.799999997019768, 257195.859099999070168 ], [ 364244.988899998366833, 257194.273699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88729525, "LATITUDE": 18.34430854, "OBJECTID_1": 21196, "PARCEL_NO_": "105602041700", "Tax_Legal_": "ANNAS RETREAT 394-240 NEW QTR", "Name": "BERKELEY, MAGDALENE", "Address": "PO Box 8901", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.649243137, "SHAPE_Area": 769.42384467900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363425.689000003039837, 257226.323899999260902 ], [ 363405.541900001466274, 257224.892400000244379 ], [ 363395.547899998724461, 257262.174199998378754 ], [ 363410.804899998009205, 257269.687300000339746 ], [ 363425.689000003039837, 257226.323899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602042200", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-16", "ACRE": "0.23", "LONGITUDE": -64.89044686, "LATITUDE": 18.34435633, "OBJECTID_1": 21201, "PARCEL_NO_": "105602042200", "Tax_Legal_": "ANNAS RETREAT 143A-16 NEW QTR", "Name": "GREAUX, EDNA", "Address": "PO Box 6803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28900, "Improved_V": 279300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.454526302, "SHAPE_Area": 845.50410930500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363091.546499997377396, 257262.219200000166893 ], [ 363086.987400002777576, 257229.462400000542402 ], [ 363081.334200002253056, 257230.471599999815226 ], [ 363060.337700001895428, 257234.099399998784065 ], [ 363068.12389999628067, 257266.671500001102686 ], [ 363091.546499997377396, 257262.219200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701030300", "MAP": "G9-2247-T73", "PARCEL_NAM": "20-18", "ACRE": ".421", "LONGITUDE": -64.87808194, "LATITUDE": 18.34419736, "OBJECTID_1": 21950, "PARCEL_NO_": "105701030300", "Tax_Legal_": "SMITH BAY ESTATE 20-18 EAST END QTR", "Name": "DESSOUT R, & WEBSTER, DENISE", "Address": "PO Box 306724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51200, "Improved_V": 163400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.923417019, "SHAPE_Area": 1891.4153813800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364398.701399996876717, 257206.844700001180172 ], [ 364394.845100000500679, 257201.441399998962879 ], [ 364374.037399999797344, 257231.081199999898672 ], [ 364369.781800001859665, 257237.143300000578165 ], [ 364355.682499997317791, 257257.227299999445677 ], [ 364365.514799997210503, 257273.27930000051856 ], [ 364368.709499999880791, 257276.894000001251698 ], [ 364371.090700000524521, 257281.346500001847744 ], [ 364404.748099997639656, 257236.049300000071526 ], [ 364408.347199998795986, 257231.138700000941753 ], [ 364412.2449000030756, 257225.820799998939037 ], [ 364398.701399996876717, 257206.844700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602041100", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-2", "ACRE": "0.19", "LONGITUDE": -64.88869897, "LATITUDE": 18.34430527, "OBJECTID_1": 21190, "PARCEL_NO_": "105602041100", "Tax_Legal_": "ANNAS RETREAT 143A-2 NEW QTR", "Name": "SIMON (LIFE ESTATE), KING and RUTHLYN", "Address": "143A-2 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21600, "Improved_V": 334900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.64489190699999, "SHAPE_Area": 1100.22003101 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363269.714599996805191, 257266.843800000846386 ], [ 363277.000200003385544, 257263.52589999884367 ], [ 363277.837099999189377, 257259.944200001657009 ], [ 363280.381899997591972, 257245.188499998301268 ], [ 363257.241599999368191, 257216.501499999314547 ], [ 363249.875100001692772, 257229.317899998277426 ], [ 363237.65990000218153, 257243.361200001090765 ], [ 363269.714599996805191, 257266.843800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601032200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-141", "ACRE": ".160", "LONGITUDE": -64.89487609, "LATITUDE": 18.34432569, "OBJECTID_1": 20635, "PARCEL_NO_": "105601032200", "Tax_Legal_": "146-141 ANNAS RETREAT 1 NEW QTR", "Name": "SMITH, ENA & KING GEORGE", "Address": "PO Box 9201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23800, "Improved_V": 20600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.048966651, "SHAPE_Area": 729.852169495 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362627.198700003325939, 257248.075100000947714 ], [ 362607.292599998414516, 257218.359099999070168 ], [ 362592.633299998939037, 257235.337699998170137 ], [ 362605.318499997258186, 257260.772799998521805 ], [ 362618.296899996697903, 257251.802000001072884 ], [ 362627.198700003325939, 257248.075100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9045111, "LATITUDE": 18.34425411, "OBJECTID_1": 19875, "PARCEL_NO_": "105502022900", "Tax_Legal_": "WINTBERG ESTATE 1S-1 GR NORTHSIDE QTR", "Name": "GREEN, NATHANIEL & MARNA L. (CO-TRUSTEES)", "Address": "PO Box 9279", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 125200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.54369264399998, "SHAPE_Area": 3961.7476770899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361528.209200002253056, 257237.391699999570847 ], [ 361587.001599997282028, 257245.894400000572205 ], [ 361628.075000002980232, 257251.930100001394749 ], [ 361631.363200001418591, 257244.56870000064373 ], [ 361630.94709999859333, 257198.758000001311302 ], [ 361599.499099999666214, 257198.71169999986887 ], [ 361563.202500000596046, 257199.892299998551607 ], [ 361562.360200002789497, 257204.107299998402596 ], [ 361528.209200002253056, 257237.391699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701012400", "MAP": "D9-6012-T95", "PARCEL_NAM": "21A", "ACRE": "1.0080", "LONGITUDE": -64.88211256, "LATITUDE": 18.34408427, "OBJECTID_1": 21857, "PARCEL_NO_": "105701012400", "Tax_Legal_": "21 ANNAS RETREAT NEW QTR", "Name": "HODGE, ANNETTE", "Address": "PO Box 10376", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 207400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.80637458799998, "SHAPE_Area": 3028.5840127000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363994.639899998903275, 257266.866399999707937 ], [ 363982.175800003111362, 257215.468600001186132 ], [ 363979.80009999871254, 257210.38289999961853 ], [ 363974.22240000218153, 257202.526799999177456 ], [ 363969.420500002801418, 257198.265599999576807 ], [ 363966.209600001573563, 257196.550599999725819 ], [ 363954.138300001621246, 257193.707600001245737 ], [ 363946.071599997580051, 257194.063799999654293 ], [ 363939.606700003147125, 257195.699599999934435 ], [ 363931.505800001323223, 257200.066300000995398 ], [ 363925.039099998772144, 257201.913199998438358 ], [ 363920.987800002098083, 257204.201999999582767 ], [ 363914.486900001764297, 257210.059500001370907 ], [ 363906.332099996507168, 257220.758499998599291 ], [ 363903.058300003409386, 257226.431200001388788 ], [ 363953.069499999284744, 257224.518500000238419 ], [ 363963.272799998521805, 257257.32149999961257 ], [ 363972.165600001811981, 257254.650100000202656 ], [ 363976.863200001418591, 257271.153799999505281 ], [ 363994.639899998903275, 257266.866399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601019600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-83", "ACRE": ".122", "LONGITUDE": -64.89675201, "LATITUDE": 18.34438371, "OBJECTID_1": 20533, "PARCEL_NO_": "105601019600", "Tax_Legal_": "146-83 ANNAS RETREAT 1 NEW QUARTER", "Name": "BUNTIN, OSCAR and CLAUDETTE", "Address": "PO Box 302301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032301, "Country": "United States", "Land_Value": 16400, "Improved_V": 142700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.664032224300001, "SHAPE_Area": 557.17236406100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362423.302299998700619, 257234.585099998861551 ], [ 362401.542700000107288, 257233.140399999916553 ], [ 362398.277900002896786, 257237.757800001651049 ], [ 362398.261699996888638, 257239.657499998807907 ], [ 362395.718699999153614, 257254.202100001275539 ], [ 362421.490099996328354, 257258.001600001007318 ], [ 362423.302299998700619, 257234.585099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601016200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-67", "ACRE": ".139", "LONGITUDE": -64.8965175, "LATITUDE": 18.34438988, "OBJECTID_1": 20499, "PARCEL_NO_": "105601016200", "Tax_Legal_": "146-67 ANNAS RETREAT 1 NEW QTR", "Name": "SKIRVING, WILLIAM & NEYSA", "Address": "#146-67 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 104600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.833259516799998, "SHAPE_Area": 578.44951079299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362449.906999997794628, 257235.225000001490116 ], [ 362423.302299998700619, 257234.585099998861551 ], [ 362421.490099996328354, 257258.001600001007318 ], [ 362445.686700001358986, 257257.35530000180006 ], [ 362449.906999997794628, 257235.225000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601062500", "MAP": "C9-312H-T88", "PARCEL_NAM": "404-21", "ACRE": null, "LONGITUDE": -64.89180638000001, "LATITUDE": 18.34433996, "OBJECTID_1": 20861, "PARCEL_NO_": "105601062500", "Tax_Legal_": "404-21&POR 215 ANNAS RET NEW QTR.", "Name": "ROGERS, GLADYS", "Address": "PO Box 502511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 15900, "Improved_V": 220500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.496293435, "SHAPE_Area": 610.25193381700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362955.232299998402596, 257244.651299998164177 ], [ 362955.240599997341633, 257243.225900001823902 ], [ 362950.403800003230572, 257243.694600000977516 ], [ 362944.324699997901917, 257237.196299999952316 ], [ 362941.335600003600121, 257234.625199999660254 ], [ 362939.126299999654293, 257232.724899999797344 ], [ 362936.673500001430511, 257230.383600000292063 ], [ 362918.121799997985363, 257238.349199999123812 ], [ 362916.769100002944469, 257238.201699998229742 ], [ 362917.544900000095367, 257241.796599999070168 ], [ 362920.667599998414516, 257253.854499999433756 ], [ 362928.928300000727177, 257260.285199999809265 ], [ 362943.47749999910593, 257250.63230000063777 ], [ 362947.335299998521805, 257247.106699999421835 ], [ 362955.225100003182888, 257245.895700000226498 ], [ 362955.232299998402596, 257244.651299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601062600", "MAP": "C9-312H-T88", "PARCEL_NAM": "404-23", "ACRE": null, "LONGITUDE": -64.89141219, "LATITUDE": 18.34435245, "OBJECTID_1": 20862, "PARCEL_NO_": "105601062600", "Tax_Legal_": "ANNAS RETREAT 404-23 & POR 215 NEW QTR.", "Name": "CHRISTOPHER, IRVIN & HODGE, S", "Address": "40423 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 69000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.426127346599998, "SHAPE_Area": 572.74808495800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362961.134300000965595, 257236.453899998217821 ], [ 362961.88849999755621, 257242.581799998879433 ], [ 362962.651600003242493, 257247.654199998825788 ], [ 362965.810300000011921, 257255.490600001066923 ], [ 362973.817699998617172, 257262.100000001490116 ], [ 362986.752899996936321, 257258.195099998265505 ], [ 362986.009499996900558, 257250.800700001418591 ], [ 362982.951499998569489, 257231.144000001251698 ], [ 362961.134300000965595, 257236.453899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601031500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-145", "ACRE": ".169", "LONGITUDE": -64.89562093000001, "LATITUDE": 18.3443332, "OBJECTID_1": 20628, "PARCEL_NO_": "105601031500", "Tax_Legal_": "146-145 ANNAS RETREAT NEW QTR", "Name": "CAMERON, CHERRI M.", "Address": "PO BOX 8616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26500, "Improved_V": 78800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.372377681, "SHAPE_Area": 701.595239816 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362544.306699998676777, 257228.820500001311302 ], [ 362528.236199997365475, 257222.144999999552965 ], [ 362527.379600003361702, 257228.048599999397993 ], [ 362510.337300002574921, 257240.785900000482798 ], [ 362527.12780000269413, 257257.599700000137091 ], [ 362533.598099999129772, 257255.330600000917912 ], [ 362539.23870000243187, 257255.7989999987185 ], [ 362544.306699998676777, 257228.820500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602042300", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-17", "ACRE": "0.23", "LONGITUDE": -64.89018342, "LATITUDE": 18.34431405, "OBJECTID_1": 21202, "PARCEL_NO_": "105602042300", "Tax_Legal_": "ANNAS RETREAT 143A-17 NEW QTR", "Name": "FRETT, ELVIN & EDITH", "Address": "4317 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 136300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.74082928, "SHAPE_Area": 999.28798984900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363124.671899996697903, 257254.679800000041723 ], [ 363115.247900001704693, 257225.049600001424551 ], [ 363108.788400001823902, 257226.052200000733137 ], [ 363086.987400002777576, 257229.462400000542402 ], [ 363091.546499997377396, 257262.219200000166893 ], [ 363124.671899996697903, 257254.679800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021800", "MAP": "D9-1099-T72", "PARCEL_NAM": "1G-3", "ACRE": "1.00", "LONGITUDE": -64.90581156, "LATITUDE": 18.34416849, "OBJECTID_1": 19864, "PARCEL_NO_": "105502021800", "Tax_Legal_": "WINTBERG ESTATE 1G-3 GREAT NORTHSIDE QTR", "Name": "LU, YOUNG & JANET", "Address": "PO Box 8887", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.03165939799999, "SHAPE_Area": 2384.0827420700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361410.150200001895428, 257235.874000001698732 ], [ 361431.727600000798702, 257234.723799999803305 ], [ 361436.330899998545647, 257231.784499999135733 ], [ 361439.520199999213219, 257236.032499998807907 ], [ 361516.45610000193119, 257197.187699999660254 ], [ 361504.377599999308586, 257195.188999999314547 ], [ 361487.450499996542931, 257194.417199999094009 ], [ 361460.02139999717474, 257195.881400000303984 ], [ 361449.52139999717474, 257197.906399998813868 ], [ 361439.001599997282028, 257202.253299999982119 ], [ 361420.388099998235703, 257210.122499998658895 ], [ 361408.257399998605251, 257214.245099999010563 ], [ 361410.150200001895428, 257235.874000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702061900", "MAP": "F9-3263-T74", "PARCEL_NAM": "57T-2", "ACRE": "0.23", "LONGITUDE": -64.87059724, "LATITUDE": 18.34429161, "OBJECTID_1": 22639, "PARCEL_NO_": "105702061900", "Tax_Legal_": "57T SMITH BAY No.1,2 & 3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 119700, "Improved_V": 43800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.99908021500001, "SHAPE_Area": 905.50353047299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365195.296700000762939, 257269.938200000673532 ], [ 365176.232900001108646, 257236.007199998944998 ], [ 365155.963600002229214, 257248.929099999368191 ], [ 365168.621799997985363, 257277.530299998819828 ], [ 365183.166000001132488, 257274.0608000010252 ], [ 365195.296700000762939, 257269.938200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601063700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8923369, "LATITUDE": 18.34436429, "OBJECTID_1": 20872, "PARCEL_NO_": "105601063700", "Tax_Legal_": "404-7&POR.OF 215 ANNAS R NEW QTR.", "Name": "HAYNES, EDITH", "Address": "P.O. BOX 4805", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 211400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.19763803500001, "SHAPE_Area": 924.39898391899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362910.192800000309944, 257252.924400001764297 ], [ 362908.6503000035882, 257244.679099999368191 ], [ 362853.916299998760223, 257233.043200001120567 ], [ 362853.732900001108646, 257254.573300000280142 ], [ 362853.702299997210503, 257258.16160000115633 ], [ 362876.298900000751019, 257256.024500001221895 ], [ 362893.245800003409386, 257254.474500000476837 ], [ 362910.192800000309944, 257252.924400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88748336, "LATITUDE": 18.3442738, "OBJECTID_1": 21195, "PARCEL_NO_": "105602041600", "Tax_Legal_": "ANNAS RETREAT 394-241 NEW QTR", "Name": "JOSEPH, S. & Y. , RICHARDSON, A", "Address": "394-241 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 191000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.669734808, "SHAPE_Area": 785.59096611500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363405.541900001466274, 257224.892400000244379 ], [ 363383.784100003540516, 257223.236699998378754 ], [ 363373.849399998784065, 257253.552799999713898 ], [ 363395.547899998724461, 257262.174199998378754 ], [ 363405.541900001466274, 257224.892400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602041200", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-379", "ACRE": "0.18", "LONGITUDE": -64.88841715, "LATITUDE": 18.34421952, "OBJECTID_1": 21191, "PARCEL_NO_": "105602041200", "Tax_Legal_": "394-379 ANNAS RETREAT NEW QTR", "Name": "BRANDON ALEX RHYMER and BRUCE ALLEN RHYMER", "Address": "143A-1 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.79578753200001, "SHAPE_Area": 649.85115197200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363303.196000002324581, 257217.510800000280142 ], [ 363285.466099999845028, 257216.310300000011921 ], [ 363280.381899997591972, 257245.188499998301268 ], [ 363277.837099999189377, 257259.944200001657009 ], [ 363280.29559999704361, 257255.320300001651049 ], [ 363285.975699998438358, 257251.144900001585484 ], [ 363290.828000001609325, 257249.495799999684095 ], [ 363299.704599998891354, 257248.72410000115633 ], [ 363303.196000002324581, 257217.510800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702042000", "MAP": "G9-1014-T68", "PARCEL_NAM": "56C-1", "ACRE": "0.25", "LONGITUDE": -64.87321522000001, "LATITUDE": 18.34428771, "OBJECTID_1": 22584, "PARCEL_NO_": "105702042000", "Tax_Legal_": "SMITH BAY 56C-1 EAST END QTR", "Name": "MOHAMMED, CALVIN", "Address": "PO Box 11148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35200, "Improved_V": 90800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.61655579799999, "SHAPE_Area": 629.49356275000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364905.968199998140335, 257240.305599998682737 ], [ 364893.765799999237061, 257240.279500000178814 ], [ 364892.598099999129772, 257240.31980000063777 ], [ 364883.121699996292591, 257240.646600000560284 ], [ 364883.473099999129772, 257241.632599998265505 ], [ 364893.694499999284744, 257272.324799999594688 ], [ 364909.813500002026558, 257273.301100000739098 ], [ 364906.055299997329712, 257241.184200000017881 ], [ 364905.968199998140335, 257240.305599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601019000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-78", "ACRE": ".116", "LONGITUDE": -64.89746723, "LATITUDE": 18.34430205, "OBJECTID_1": 20527, "PARCEL_NO_": "105601019000", "Tax_Legal_": "146-78 ANNAS RETREAT 1 NEW QTR", "Name": "JACKSON, LEROY & ELAINE", "Address": "Apt 118", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 97500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.630279685600001, "SHAPE_Area": 552.91794254700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362350.683799996972084, 257239.901399999856949 ], [ 362344.404200002551079, 257219.796100001782179 ], [ 362325.774499997496605, 257229.565000001341105 ], [ 362317.675399996340275, 257233.720600001513958 ], [ 362325.592799998819828, 257250.88399999961257 ], [ 362332.889200001955032, 257246.299600001424551 ], [ 362350.683799996972084, 257239.901399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90369728, "LATITUDE": 18.344171, "OBJECTID_1": 19874, "PARCEL_NO_": "105502022800", "Tax_Legal_": "WINTBERG ESTATE 1W-2 GREAT NORTHSIDE QTR", "Name": "SMITH, ARIEL M", "Address": "PO Box 9474", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 114500, "Improved_V": 377400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.030956468, "SHAPE_Area": 3373.7651687900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361716.117700003087521, 257234.496599998325109 ], [ 361715.690800003707409, 257189.952399998903275 ], [ 361679.36540000140667, 257194.510299999266863 ], [ 361664.007700003683567, 257198.817499998956919 ], [ 361630.94709999859333, 257198.758000001311302 ], [ 361631.363200001418591, 257244.56870000064373 ], [ 361637.08110000193119, 257235.960700001567602 ], [ 361638.700900003314018, 257235.129599999636412 ], [ 361641.960400000214577, 257231.145500000566244 ], [ 361649.233300000429153, 257229.30519999936223 ], [ 361654.877499997615814, 257229.351399999111891 ], [ 361660.510899998247623, 257230.664000000804663 ], [ 361677.378799997270107, 257238.401500001549721 ], [ 361683.017599999904633, 257239.080899998545647 ], [ 361701.571699999272823, 257238.177299998700619 ], [ 361716.117700003087521, 257234.496599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601033600", "MAP": "D9-395-T63", "PARCEL_NAM": "143-3", "ACRE": "0.17", "LONGITUDE": -64.89306638, "LATITUDE": 18.34428279, "OBJECTID_1": 20647, "PARCEL_NO_": "105601033600", "Tax_Legal_": "143-3 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, DOROTHY & TUITT J", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24500, "Improved_V": 181600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.035008012399999, "SHAPE_Area": 573.43037577799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362807.234700001776218, 257222.739799998700619 ], [ 362790.305699996650219, 257222.179000001400709 ], [ 362790.053999997675419, 257251.730099998414516 ], [ 362809.400100000202656, 257252.521699998527765 ], [ 362809.6537000015378, 257222.75959999859333 ], [ 362807.234700001776218, 257222.739799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701017000", "MAP": "C9-260-T80", "PARCEL_NAM": "7-3", "ACRE": ".50", "LONGITUDE": -64.8805364, "LATITUDE": 18.34423764, "OBJECTID_1": 21899, "PARCEL_NO_": "105701017000", "Tax_Legal_": "TABOR & HARMONY 7-3 EAST END QTR.", "Name": "DAVID, WATSON & ELENORA", "Address": "PO Box 8292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66300, "Improved_V": 203800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.15557471100001, "SHAPE_Area": 2312.6335399200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364156.442699998617172, 257221.296000000089407 ], [ 364139.297600001096725, 257226.375999998301268 ], [ 364124.6925999969244, 257227.328499998897314 ], [ 364115.129299998283386, 257226.900400001555681 ], [ 364103.884099997580051, 257221.74210000038147 ], [ 364082.693400003015995, 257248.166400000452995 ], [ 364086.699799999594688, 257251.154500000178814 ], [ 364099.546800002455711, 257257.592500001192093 ], [ 364116.436200000345707, 257262.796999998390675 ], [ 364134.171499997377396, 257263.36430000141263 ], [ 364155.979699999094009, 257259.1097999997437 ], [ 364156.442699998617172, 257221.296000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701016900", "MAP": "C9-260-T80", "PARCEL_NAM": "7-4", "ACRE": ".50", "LONGITUDE": -64.87990656, "LATITUDE": 18.34410664, "OBJECTID_1": 21898, "PARCEL_NO_": "105701016900", "Tax_Legal_": "7-4 TABOR & HARMONY EAST END QTR.", "Name": "LEWIS, LEON & NORMA", "Address": "PO Box 303605", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82200, "Improved_V": 151300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.70207888300001, "SHAPE_Area": 2826.8749865099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364242.841300003230572, 257191.004200000315905 ], [ 364240.997599996626377, 257187.785399999469519 ], [ 364238.675300002098083, 257189.545899998396635 ], [ 364221.847800001502037, 257199.547200001776218 ], [ 364207.029399998486042, 257205.240600001066923 ], [ 364191.685199998319149, 257211.135899998247623 ], [ 364156.442699998617172, 257221.296000000089407 ], [ 364155.979699999094009, 257259.1097999997437 ], [ 364166.476099997758865, 257257.506999999284744 ], [ 364174.535700000822544, 257257.995099999010563 ], [ 364182.580799996852875, 257260.171900000423193 ], [ 364189.002499997615814, 257263.602000001817942 ], [ 364231.414499998092651, 257207.164900001138449 ], [ 364242.841300003230572, 257191.004200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602042400", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-18", "ACRE": "0.19", "LONGITUDE": -64.88990325, "LATITUDE": 18.34425219, "OBJECTID_1": 21203, "PARCEL_NO_": "105602042400", "Tax_Legal_": "143A-18 ANNAS RETREAT NEW QTR", "Name": "LEONARD, EDWINE & ADELINE", "Address": "P.O. BOX 4125", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28900, "Improved_V": 186400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.190493811, "SHAPE_Area": 865.50386755399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363153.774700000882149, 257246.052099999040365 ], [ 363144.316500000655651, 257220.432399999350309 ], [ 363139.471400000154972, 257221.237100001424551 ], [ 363115.247900001704693, 257225.049600001424551 ], [ 363124.671899996697903, 257254.679800000041723 ], [ 363153.774700000882149, 257246.052099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601033500", "MAP": "D9-395-T63", "PARCEL_NAM": "143-2", "ACRE": "0.17", "LONGITUDE": -64.8932777, "LATITUDE": 18.34428055, "OBJECTID_1": 20646, "PARCEL_NO_": "105601033500", "Tax_Legal_": "143-2 ANNAS RETREAT NEW QTR", "Name": "BROWNE, SHERMAN & DWYGHT & IRICK & TRACEY", "Address": "PO Box 1125", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 24500, "Improved_V": 85500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.174960551, "SHAPE_Area": 740.40245535099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362790.305699996650219, 257222.179000001400709 ], [ 362769.341600000858307, 257222.007399998605251 ], [ 362766.116400003433228, 257221.980999998748302 ], [ 362763.452899999916553, 257250.668000001460314 ], [ 362790.053999997675419, 257251.730099998414516 ], [ 362790.305699996650219, 257222.179000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601017100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-75", "ACRE": ".160", "LONGITUDE": -64.89791233, "LATITUDE": 18.34430024, "OBJECTID_1": 20508, "PARCEL_NO_": "105601017100", "Tax_Legal_": "146-75 ANNAS RETREAT 1 NEW QTR", "Name": "MATTHEW, PAULA N", "Address": "PO Box 303372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 50600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.33178218899999, "SHAPE_Area": 667.81057858099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362306.333099998533726, 257239.96059999987483 ], [ 362296.041599996387959, 257217.500399999320507 ], [ 362279.020900003612041, 257227.704700000584126 ], [ 362273.335400000214577, 257232.513300001621246 ], [ 362268.443599998950958, 257238.806099999696016 ], [ 362269.210299998521805, 257243.456399999558926 ], [ 362270.792400002479553, 257247.05799999833107 ], [ 362299.042099997401237, 257243.911699999123812 ], [ 362306.333099998533726, 257239.96059999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601033400", "MAP": "D9-395-T63", "PARCEL_NAM": "143-1", "ACRE": "0.17", "LONGITUDE": -64.89351206000001, "LATITUDE": 18.34427185, "OBJECTID_1": 20645, "PARCEL_NO_": "105601033400", "Tax_Legal_": "143-1 EST ANNAS RETREAT NEW QTR", "Name": "MOHAMMED, VICTORIA", "Address": "P.O. BOX 4555", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 261400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.08110271, "SHAPE_Area": 684.57520228600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362766.116400003433228, 257221.980999998748302 ], [ 362745.958599999547005, 257221.816100001335144 ], [ 362740.314400002360344, 257221.769900001585484 ], [ 362740.883299998939037, 257249.638900000602007 ], [ 362763.452899999916553, 257250.668000001460314 ], [ 362766.116400003433228, 257221.980999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601038700", "MAP": "D9-372-63", "PARCEL_NAM": "136", "ACRE": "0.17", "LONGITUDE": -64.89373184, "LATITUDE": 18.34427059, "OBJECTID_1": 20696, "PARCEL_NO_": "105601038700", "Tax_Legal_": "136 ANNAS RETREAT NEW QTR", "Name": "SAVAGE, JUDITH", "Address": "4136 College Hill Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24500, "Improved_V": 183800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.684741369099996, "SHAPE_Area": 613.42795153199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362740.314400002360344, 257221.769900001585484 ], [ 362720.966499999165535, 257221.189300000667572 ], [ 362718.547499999403954, 257221.16950000077486 ], [ 362718.313799999654293, 257248.6097999997437 ], [ 362740.883299998939037, 257249.638900000602007 ], [ 362740.314400002360344, 257221.769900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601032300", "MAP": "G9-887-T66", "PARCEL_NAM": "146-158", "ACRE": "0.24", "LONGITUDE": -64.89469391, "LATITUDE": 18.34420222, "OBJECTID_1": 20636, "PARCEL_NO_": "105601032300", "Tax_Legal_": "146-158&REM 146 ANNAS RT NEW QTR", "Name": "FLEMING, BERTILE & ARLETTE", "Address": "146-158 EST TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52100, "Improved_V": 64700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.430206048, "SHAPE_Area": 959.45683463099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362634.779100000858307, 257210.140299998223782 ], [ 362617.058300003409386, 257207.884399998933077 ], [ 362607.292599998414516, 257218.359099999070168 ], [ 362627.198700003325939, 257248.075100000947714 ], [ 362635.290600001811981, 257244.763900000602007 ], [ 362648.216700002551079, 257241.914299998432398 ], [ 362634.779100000858307, 257210.140299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601033200", "MAP": "D9-372-63", "PARCEL_NAM": "135", "ACRE": "0.17", "LONGITUDE": -64.89395498, "LATITUDE": 18.34426666, "OBJECTID_1": 20644, "PARCEL_NO_": "105601033200", "Tax_Legal_": "135 ANNAS RETREAT NEW QTR", "Name": "DANIEL, WILLIAM & LAURA", "Address": "P.O. BOX 4905", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 223200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.461823943, "SHAPE_Area": 678.10495776599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362701.616800002753735, 257220.819899998605251 ], [ 362695.168099999427795, 257220.556000001728535 ], [ 362691.714500002563, 257247.336599998176098 ], [ 362718.313799999654293, 257248.6097999997437 ], [ 362718.547499999403954, 257221.16950000077486 ], [ 362701.616800002753735, 257220.819899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602041500", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-382", "ACRE": "0.17", "LONGITUDE": -64.88770313000001, "LATITUDE": 18.34422772, "OBJECTID_1": 21194, "PARCEL_NO_": "105602041500", "Tax_Legal_": "394-382 ANNAS RETREAT NEW QTR", "Name": "ROSE MATLIDA MATTHEWS (LIFE ESTATE) & MARIE PAYNE", "Address": "932 Blackthorn Dr", "City": "Apopka", "State": "Florida", "Zip": 32703, "Country": "United States", "Land_Value": 18200, "Improved_V": 150700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.9517142, "SHAPE_Area": 732.99763541200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363383.784100003540516, 257223.236699998378754 ], [ 363355.577500000596046, 257221.317099999636412 ], [ 363352.120300002396107, 257248.519799999892712 ], [ 363365.003300003707409, 257250.736200001090765 ], [ 363373.849399998784065, 257253.552799999713898 ], [ 363383.784100003540516, 257223.236699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701015100", "MAP": "C9-221-T78", "PARCEL_NAM": "394-417", "ACRE": "0.58", "LONGITUDE": -64.88296403, "LATITUDE": 18.34411135, "OBJECTID_1": 21883, "PARCEL_NO_": "105701015100", "Tax_Legal_": "394-417 ANNAS RETREAT NEW QTR", "Name": "JACQUET, CLEHOMME", "Address": "2-22 Estate Madamberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.27404158100001, "SHAPE_Area": 2249.2921351499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363896.616800002753735, 257225.322999998927116 ], [ 363864.63400000333786, 257193.397199999541044 ], [ 363841.924199998378754, 257208.832299999892712 ], [ 363846.641599997878075, 257223.014199998229742 ], [ 363847.35080000013113, 257234.418999999761581 ], [ 363851.188199996948242, 257257.248500000685453 ], [ 363879.466700002551079, 257250.725000001490116 ], [ 363889.127999998629093, 257252.492800001055002 ], [ 363890.825199998915195, 257242.585299998521805 ], [ 363896.616800002753735, 257225.322999998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601033100", "MAP": "D9-372-63", "PARCEL_NAM": "134", "ACRE": "0.17", "LONGITUDE": -64.89416278, "LATITUDE": 18.34425251, "OBJECTID_1": 20643, "PARCEL_NO_": "105601033100", "Tax_Legal_": "ANNAS RETREAT 134 NEW QTR", "Name": "KEAN, GEORGE CHARLES HADDON, JR.", "Address": "PO Box 502545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 25200, "Improved_V": 87600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.968889557799997, "SHAPE_Area": 502.79350815700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362675.013899996876717, 257219.968800000846386 ], [ 362673.217799998819828, 257241.485700000077486 ], [ 362674.8125, 257243.609700001776218 ], [ 362683.653099998831749, 257247.059500001370907 ], [ 362691.714500002563, 257247.336599998176098 ], [ 362695.168099999427795, 257220.556000001728535 ], [ 362675.013899996876717, 257219.968800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702066000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87147425000001, "LATITUDE": 18.34417373, "OBJECTID_1": 22704, "PARCEL_NO_": "105702066000", "Tax_Legal_": "SMITH BAY 57T-4C EAST END QTR", "Name": "ELVIRA GUMBS and ANTHONY THOMAS", "Address": "6574 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.053618976, "SHAPE_Area": 1079.0294893299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365096.456500001251698, 257229.654699999839067 ], [ 365081.152800001204014, 257227.629599999636412 ], [ 365065.870600000023842, 257223.071600001305342 ], [ 365066.392800003290176, 257256.428599998354912 ], [ 365098.557199999690056, 257267.035500001162291 ], [ 365096.456500001251698, 257229.654699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701017700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88157348, "LATITUDE": 18.34409358, "OBJECTID_1": 21905, "PARCEL_NO_": "105701017700", "Tax_Legal_": "20A ANNAS RETREAT NEW QTR.", "Name": "GARVEY, ROY E. & FALLICETA", "Address": "PO BOX 8682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68500, "Improved_V": 291100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.62407701500001, "SHAPE_Area": 2056.4435547399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363998.386600002646446, 257205.679900001734495 ], [ 363985.496399998664856, 257204.307799998670816 ], [ 363998.752400003373623, 257257.400800000876188 ], [ 364048.1621999964118, 257231.418499998748302 ], [ 364045.782799996435642, 257226.754999998956919 ], [ 364044.218699999153614, 257221.042599998414516 ], [ 364043.502300001680851, 257210.482099998742342 ], [ 363998.386600002646446, 257205.679900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701016700", "MAP": "C9-260-T80", "PARCEL_NAM": "7-6", "ACRE": ".50", "LONGITUDE": -64.87889732, "LATITUDE": 18.34405402, "OBJECTID_1": 21896, "PARCEL_NO_": "105701016700", "Tax_Legal_": "7-6 TABOR&HARMONY EAST END QTR.", "Name": "THOMAS, MADELYN, TIMOTHY & AVERLY LAKE & OTHERS", "Address": "PO BOX 10867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66300, "Improved_V": 181500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.18248172099999, "SHAPE_Area": 2635.1627534600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364303.36150000244379, 257186.011100001633167 ], [ 364266.030199997127056, 257213.99210000038147 ], [ 364268.406000003218651, 257219.077799998223782 ], [ 364276.9408999979496, 257258.411100000143051 ], [ 364278.54280000180006, 257259.690799999982119 ], [ 364282.581500001251698, 257258.879399999976158 ], [ 364286.675999999046326, 257251.524700000882149 ], [ 364293.983199998736382, 257245.673900000751019 ], [ 364300.45889999717474, 257242.771499998867512 ], [ 364309.340899996459484, 257241.366599999368191 ], [ 364316.592299997806549, 257242.059200000017881 ], [ 364322.222099997103214, 257243.793999999761581 ], [ 364342.273800000548363, 257256.41270000115037 ], [ 364343.932199999690056, 257256.006299998611212 ], [ 364323.982199996709824, 257226.498799998313189 ], [ 364303.36150000244379, 257186.011100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601031900", "MAP": "B9-156-T67", "PARCEL_NAM": "155-7", "ACRE": ".195", "LONGITUDE": -64.8952737, "LATITUDE": 18.34418344, "OBJECTID_1": 20632, "PARCEL_NO_": "105601031900", "Tax_Legal_": "ANNAS RETREAT 155-7 1 NEW QTR", "Name": "CAINES, CHARLES & VERNA", "Address": "PO Box 502524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28200, "Improved_V": 93300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.08665076, "SHAPE_Area": 796.65659268399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362584.487499997019768, 257244.981300000101328 ], [ 362573.530000001192093, 257206.050400000065565 ], [ 362567.864200003445148, 257208.537200000137091 ], [ 362553.35419999808073, 257207.996300000697374 ], [ 362550.735600002110004, 257231.406199999153614 ], [ 362568.415200002491474, 257238.517000000923872 ], [ 362584.487499997019768, 257244.981300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601032100", "MAP": "B9-156-T67", "PARCEL_NAM": "155-8", "ACRE": ".212", "LONGITUDE": -64.8950643, "LATITUDE": 18.34411431, "OBJECTID_1": 20634, "PARCEL_NO_": "105601032100", "Tax_Legal_": "155-8 ANNAS RETREAT 1 NEW QTR", "Name": "WILLIAMS, JESSE & LEROY S., SR & LEROY S., JR", "Address": "PO Box 9791", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31200, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.793475134, "SHAPE_Area": 904.73626670900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362607.292599998414516, 257218.359099999070168 ], [ 362585.76129999756813, 257190.107400000095367 ], [ 362581.650600001215935, 257199.361900001764297 ], [ 362576.769599996507168, 257204.388199999928474 ], [ 362573.530000001192093, 257206.050400000065565 ], [ 362584.487499997019768, 257244.981300000101328 ], [ 362592.633299998939037, 257235.337699998170137 ], [ 362607.292599998414516, 257218.359099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701051100", "MAP": "F9-248-T57", "PARCEL_NAM": "28", "ACRE": "0.12", "LONGITUDE": -64.87497039, "LATITUDE": 18.34428939, "OBJECTID_1": 22114, "PARCEL_NO_": "105701051100", "Tax_Legal_": "28 SMITH BAY EAST END QTR", "Name": "BAXTER, DELETA L.", "Address": "PO Box 7881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18700, "Improved_V": 110100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.769072364300001, "SHAPE_Area": 391.05185906200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364730.203599996864796, 257248.610800001770258 ], [ 364694.72410000115633, 257248.531500000506639 ], [ 364697.837899997830391, 257261.644799999892712 ], [ 364730.928999997675419, 257258.11600000038743 ], [ 364730.203599996864796, 257248.610800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601040800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-14", "ACRE": "0.21", "LONGITUDE": -64.89825549, "LATITUDE": 18.34415025, "OBJECTID_1": 20704, "PARCEL_NO_": "105601040800", "Tax_Legal_": "ANNAS RETREAT 146-14 NEW QTR.1", "Name": "NANA BABY CHILDRENS HOME INC", "Address": "46014 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68600, "Improved_V": 109800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.90953038000001, "SHAPE_Area": 885.24791184699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362270.185699999332428, 257223.621599998325109 ], [ 362252.691299997270107, 257194.76969999819994 ], [ 362231.560000002384186, 257214.228399999439716 ], [ 362253.906599998474121, 257241.43129999935627 ], [ 362266.940600000321865, 257225.917100001126528 ], [ 362270.185699999332428, 257223.621599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601062400", "MAP": "C9-312H-T88", "PARCEL_NAM": "404-22", "ACRE": null, "LONGITUDE": -64.89169349, "LATITUDE": 18.3442127, "OBJECTID_1": 20860, "PARCEL_NO_": "105601062400", "Tax_Legal_": "ANNAS RETREAT 404-22 & POR 215 NEW QTR.", "Name": "DONOVAN, DENNIS & JANICE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 164000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.838346258, "SHAPE_Area": 586.90405203099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362961.134300000965595, 257236.453899998217821 ], [ 362958.853799998760223, 257220.181000001728535 ], [ 362958.468400001525879, 257217.282200001180172 ], [ 362958.310999996960163, 257217.318500000983477 ], [ 362919.422499999403954, 257229.406700000166893 ], [ 362918.426700003445148, 257232.937899999320507 ], [ 362916.769100002944469, 257238.201699998229742 ], [ 362918.121799997985363, 257238.349199999123812 ], [ 362936.673500001430511, 257230.383600000292063 ], [ 362939.126299999654293, 257232.724899999797344 ], [ 362941.335600003600121, 257234.625199999660254 ], [ 362944.324699997901917, 257237.196299999952316 ], [ 362950.403800003230572, 257243.694600000977516 ], [ 362961.88849999755621, 257242.581799998879433 ], [ 362961.134300000965595, 257236.453899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601030600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-153", "ACRE": ".119", "LONGITUDE": -64.8961713, "LATITUDE": 18.34424522, "OBJECTID_1": 20619, "PARCEL_NO_": "105601030600", "Tax_Legal_": "ANNAS RETREAT 146-153 1 NEW QTR", "Name": "DONOVAN, DELOIS", "Address": "1950 N Congress Ave", "City": "WEST PALM BEACH", "State": "Florida", "Zip": 33401, "Country": "United States", "Land_Value": 17800, "Improved_V": 107200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.384525710899993, "SHAPE_Area": 534.28057774700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362487.14299999922514, 257218.431200001388788 ], [ 362458.086999997496605, 257221.570900000631809 ], [ 362459.616899996995926, 257231.293699998408556 ], [ 362458.727899998426437, 257240.996700000017881 ], [ 362479.677599996328354, 257242.85700000077486 ], [ 362487.14299999922514, 257218.431200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602041300", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-380", "ACRE": "0.18", "LONGITUDE": -64.88819038, "LATITUDE": 18.34420958, "OBJECTID_1": 21192, "PARCEL_NO_": "105602041300", "Tax_Legal_": "ANNAS RETREAT 394-380 NEW QTR", "Name": "BRUMANT, EDMUND, JR. & EDMUND, III", "Address": "PO Box 302007", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 98700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.01620318400001, "SHAPE_Area": 837.16456903100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363329.789899997413158, 257219.417300000786781 ], [ 363303.196000002324581, 257217.510800000280142 ], [ 363299.704599998891354, 257248.72410000115633 ], [ 363329.550800003111362, 257247.490699999034405 ], [ 363329.789899997413158, 257219.417300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601017000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-74", "ACRE": ".117", "LONGITUDE": -64.89769092, "LATITUDE": 18.34419605, "OBJECTID_1": 20507, "PARCEL_NO_": "105601017000", "Tax_Legal_": "146-74 ANNAS RETREAT 1 NEW QTR", "Name": "GRIFFIN, JR., CURTIS ADRAIN & INGER FRANCIS", "Address": "146-74 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 61100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.429793028899994, "SHAPE_Area": 542.025841292 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362325.774499997496605, 257229.565000001341105 ], [ 362317.090199999511242, 257207.751299999654293 ], [ 362296.041599996387959, 257217.500399999320507 ], [ 362306.333099998533726, 257239.96059999987483 ], [ 362317.675399996340275, 257233.720600001513958 ], [ 362325.774499997496605, 257229.565000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602041400", "MAP": "A9-167K-T71", "PARCEL_NAM": "394-381", "ACRE": "0.16", "LONGITUDE": -64.88794022, "LATITUDE": 18.34421048, "OBJECTID_1": 21193, "PARCEL_NO_": "105602041400", "Tax_Legal_": "394-381 ANNAS RETREAT NEW QTR", "Name": "KING, LEAYLE G. & HODGE, ELSIE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18200, "Improved_V": 224700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.946361686, "SHAPE_Area": 670.95449710499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363355.577500000596046, 257221.317099999636412 ], [ 363329.789899997413158, 257219.417300000786781 ], [ 363329.550800003111362, 257247.490699999034405 ], [ 363352.120300002396107, 257248.519799999892712 ], [ 363355.577500000596046, 257221.317099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601060900", "MAP": null, "PARCEL_NAM": "404-8", "ACRE": null, "LONGITUDE": -64.89226754000001, "LATITUDE": 18.34423494, "OBJECTID_1": 20845, "PARCEL_NO_": "105601060900", "Tax_Legal_": "404-8&POR 215 ANNAS RET. NEW QTR.", "Name": "EDNEY, DONNA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 109400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.327040345, "SHAPE_Area": 701.08282148800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362853.916299998760223, 257233.043200001120567 ], [ 362908.6503000035882, 257244.679099999368191 ], [ 362907.917700000107288, 257236.018300000578165 ], [ 362909.578900001943111, 257230.332400001585484 ], [ 362900.716600000858307, 257229.415500000119209 ], [ 362898.340800002217293, 257224.329799998551607 ], [ 362866.07209999859333, 257225.965500000864267 ], [ 362853.982900001108646, 257225.233300000429153 ], [ 362853.916299998760223, 257233.043200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601019200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-79", "ACRE": ".113", "LONGITUDE": -64.89726275, "LATITUDE": 18.34421104, "OBJECTID_1": 20529, "PARCEL_NO_": "105601019200", "Tax_Legal_": "ANNAS RETREAT 146-79 1 NEW QTR", "Name": "BARRY, CINDY", "Address": "146-79 EST. TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 107600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.908528548000007, "SHAPE_Area": 429.09218262600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362367.668499998748302, 257233.918699998408556 ], [ 362362.227600000798702, 257210.020599998533726 ], [ 362344.404200002551079, 257219.796100001782179 ], [ 362350.683799996972084, 257239.901399999856949 ], [ 362367.668499998748302, 257233.918699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90304817000001, "LATITUDE": 18.34405996, "OBJECTID_1": 19878, "PARCEL_NO_": "105502023300", "Tax_Legal_": "WINTBERG ESTATE 1-W-1A GT. NORTHSIDE QTR.", "Name": "DAVID, JOHN", "Address": "PO Box 8832", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67800, "Improved_V": 306500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.557612269, "SHAPE_Area": 2450.5590160800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361779.209700003266335, 257211.581599999219179 ], [ 361773.043300002813339, 257178.178399998694658 ], [ 361751.254900000989437, 257180.111000001430511 ], [ 361725.377400003373623, 257188.765099998563528 ], [ 361715.690800003707409, 257189.952399998903275 ], [ 361716.117700003087521, 257234.496599998325109 ], [ 361779.209700003266335, 257211.581599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601032300", "MAP": "G9--887-T66", "PARCEL_NAM": "146 REM", "ACRE": null, "LONGITUDE": -64.89445984, "LATITUDE": 18.34418142, "OBJECTID_1": 20636, "PARCEL_NO_": "105601032300", "Tax_Legal_": "146-158&REM 146 ANNAS RT NEW QTR", "Name": "FLEMING, BERTILE & ARLETTE", "Address": "146-158 EST TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52100, "Improved_V": 64700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.62039333, "SHAPE_Area": 678.87309133500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362648.216700002551079, 257241.914299998432398 ], [ 362658.707800000905991, 257240.944699998944998 ], [ 362661.132100000977516, 257240.331300001591444 ], [ 362663.570799998939037, 257238.029199998825788 ], [ 362667.00110000371933, 257213.992600001394749 ], [ 362634.779100000858307, 257210.140299998223782 ], [ 362648.216700002551079, 257241.914299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602042500", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-19", "ACRE": "0.23", "LONGITUDE": -64.88957947, "LATITUDE": 18.34419464, "OBJECTID_1": 21204, "PARCEL_NO_": "105602042500", "Tax_Legal_": "143A-19 ANNAS RETREAT NEW QTR", "Name": "TODMAN, SINCLAIR", "Address": "PO Box 10223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.12691012900001, "SHAPE_Area": 1026.85892666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363187.670299999415874, 257242.740899998694658 ], [ 363189.313500002026558, 257239.165800001472235 ], [ 363190.161200001835823, 257234.317600000649691 ], [ 363184.673500001430511, 257215.907499998807907 ], [ 363144.316500000655651, 257220.432399999350309 ], [ 363153.774700000882149, 257246.052099999040365 ], [ 363166.697200000286102, 257243.624699998646975 ], [ 363187.670299999415874, 257242.740899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701051900", "MAP": "D9-263-T60", "PARCEL_NAM": "32", "ACRE": "0.34", "LONGITUDE": -64.87541905, "LATITUDE": 18.34415827, "OBJECTID_1": 22121, "PARCEL_NO_": "105701051900", "Tax_Legal_": "SMITH BAY 32 EAST END QTR", "Name": "JOSEPH, SANDRA", "Address": "6577 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40500, "Improved_V": 125900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.43091757400001, "SHAPE_Area": 1636.79910513 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364690.613399997353554, 257257.785999998450279 ], [ 364685.973300002515316, 257234.527699999511242 ], [ 364678.851400002837181, 257218.63740000128746 ], [ 364675.636900000274181, 257217.3445999994874 ], [ 364647.398000001907349, 257219.224399998784065 ], [ 364640.623800002038479, 257257.165800001472235 ], [ 364690.613399997353554, 257257.785999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602042600", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-20", "ACRE": "0.19", "LONGITUDE": -64.88912207, "LATITUDE": 18.34418264, "OBJECTID_1": 21205, "PARCEL_NO_": "105602042600", "Tax_Legal_": "ANNAS RETREAT 143A-20 NEW QTR", "Name": "REV. IVES & GLORIA ROBERTS", "Address": "73 Leighton Rd", "City": "Hyde Park", "State": "Massachusetts", "Zip": 2136, "Country": "United States", "Land_Value": 62100, "Improved_V": 169800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.29894543, "SHAPE_Area": 999.79695912199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363242.650600001215935, 257225.459100000560284 ], [ 363212.122299998998642, 257212.121399998664856 ], [ 363203.999799996614456, 257219.021000001579523 ], [ 363195.096199996769428, 257222.95890000090003 ], [ 363199.010899998247623, 257236.712000001221895 ], [ 363202.198399998247623, 257241.171100001782179 ], [ 363206.201099999248981, 257244.581300001591444 ], [ 363210.225500002503395, 257245.458700001239777 ], [ 363218.290399998426437, 257245.3136 ], [ 363227.186800003051758, 257242.219999998807907 ], [ 363234.495800003409386, 257236.158100001513958 ], [ 363242.650600001215935, 257225.459100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043500", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-21", "ACRE": "0.19", "LONGITUDE": -64.88854756000001, "LATITUDE": 18.34394934, "OBJECTID_1": 21213, "PARCEL_NO_": "105602043500", "Tax_Legal_": "ANNAS RETREAT 143A-21 NEW QTR", "Name": "GHENT, BEZZLE M. & NEEHALL, M. A. G", "Address": "394-358 HIDDEN VALLEY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 260400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.29834242199999, "SHAPE_Area": 1326.4277353099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363286.322800002992153, 257210.406700000166893 ], [ 363296.541599996387959, 257146.739999998360872 ], [ 363294.084899999201298, 257151.152899999171495 ], [ 363291.597599998116493, 257159.154100000858307 ], [ 363289.95440000295639, 257162.729200001806021 ], [ 363287.506700001657009, 257166.08669999986887 ], [ 363283.401399999856949, 257174.707899998873472 ], [ 363279.330300003290176, 257179.31870000064373 ], [ 363277.687100000679493, 257182.893800001591444 ], [ 363266.256700001657009, 257199.476700000464916 ], [ 363260.517200000584126, 257210.617600001394749 ], [ 363258.071299999952316, 257213.763999998569489 ], [ 363257.241599999368191, 257216.501499999314547 ], [ 363280.381899997591972, 257245.188499998301268 ], [ 363285.466099999845028, 257216.310300000011921 ], [ 363286.322800002992153, 257210.406700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601016300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-68", "ACRE": ".143", "LONGITUDE": -64.89649839, "LATITUDE": 18.34419508, "OBJECTID_1": 20500, "PARCEL_NO_": "105601016300", "Tax_Legal_": "146-68 ANNAS RETREAT NEW QTR", "Name": "DONOVAN INDUSTRIOUS, KARIISE", "Address": "146-68 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 115000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.666571416599993, "SHAPE_Area": 528.66282644600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362449.906999997794628, 257235.225000001490116 ], [ 362449.987899996340275, 257225.726500000804663 ], [ 362449.214000001549721, 257221.920499999076128 ], [ 362447.646300002932549, 257216.630300000309944 ], [ 362444.473200000822544, 257210.482599999755621 ], [ 362425.065999999642372, 257216.86769999936223 ], [ 362423.302299998700619, 257234.585099998861551 ], [ 362449.906999997794628, 257235.225000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89075963000001, "LATITUDE": 18.344123, "OBJECTID_1": 21208, "PARCEL_NO_": "105602043000", "Tax_Legal_": "143A-36&35A ANNAS RETREAT NO.1 NEW QTR", "Name": "TURNBULL, SONIA P, SUZETTE A, SELVIN J & EVELYN", "Address": "PO Box 9229", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51200, "Improved_V": 272700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.46345492899999, "SHAPE_Area": 919.62926816900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363060.337700001895428, 257234.099399998784065 ], [ 363057.358800001442432, 257205.155200000852346 ], [ 363027.503700003027916, 257207.443999998271465 ], [ 363031.258299998939037, 257239.9831000007689 ], [ 363060.337700001895428, 257234.099399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702064400", "MAP": "F9-3508-T77", "PARCEL_NAM": "57T-4B", "ACRE": "0.23", "LONGITUDE": -64.87174283, "LATITUDE": 18.34409823, "OBJECTID_1": 22689, "PARCEL_NO_": "105702064400", "Tax_Legal_": "57T-4B SMITH BAY EAST END QUARTER", "Name": "BARRY, DENNIS", "Address": "PO Box 10551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 239400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.320868973, "SHAPE_Area": 825.50493244699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365065.870600000023842, 257223.071600001305342 ], [ 365043.362199999392033, 257214.865800000727177 ], [ 365039.85639999806881, 257247.767700001597404 ], [ 365054.33049999922514, 257252.530200000852346 ], [ 365066.392800003290176, 257256.428599998354912 ], [ 365065.870600000023842, 257223.071600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601019700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-82", "ACRE": ".146", "LONGITUDE": -64.89674419000001, "LATITUDE": 18.3441506, "OBJECTID_1": 20534, "PARCEL_NO_": "105601019700", "Tax_Legal_": "ANNAS RETREAT 146-82 1 NEW QTR", "Name": "PETER, HESKETH S. JR. & DANIELLA D. ELLINGTON", "Address": "PO BOX 306291", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 147100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.929073336, "SHAPE_Area": 654.27609968399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362401.83219999819994, 257199.156700000166893 ], [ 362399.953400000929832, 257230.383200000971556 ], [ 362401.542700000107288, 257233.140399999916553 ], [ 362423.302299998700619, 257234.585099998861551 ], [ 362425.065999999642372, 257216.86769999936223 ], [ 362413.862099997699261, 257206.854600001126528 ], [ 362402.660099998116493, 257196.630399998277426 ], [ 362401.83219999819994, 257199.156700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601019900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-80", "ACRE": ".115", "LONGITUDE": -64.89710057000001, "LATITUDE": 18.34415264, "OBJECTID_1": 20536, "PARCEL_NO_": "105601019900", "Tax_Legal_": "146-80 ANNAS RETREAT 1 NEW QTR", "Name": "Testamark, Conrad Jr.,Rita,Richard&Shaun Sr", "Address": "46080 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 94800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.425505618700001, "SHAPE_Area": 442.36926425000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362383.832599997520447, 257229.618000000715256 ], [ 362380.817699998617172, 257204.895399998873472 ], [ 362362.227600000798702, 257210.020599998533726 ], [ 362367.668499998748302, 257233.918699998408556 ], [ 362383.832599997520447, 257229.618000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701039800", "MAP": "F9-3833-T80", "PARCEL_NAM": "20-22G", "ACRE": ".23", "LONGITUDE": -64.87771376000001, "LATITUDE": 18.34367171, "OBJECTID_1": 22032, "PARCEL_NO_": "105701039800", "Tax_Legal_": "SMITH BAY 20-22G EAST END QTR.", "Name": "BURROUGHS, EUGENT & PAULETTE", "Address": "20-22 EST SMITH BAY", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 298400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.84662404100001, "SHAPE_Area": 1280.81118932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364409.214100003242493, 257203.515900000929832 ], [ 364437.486299999058247, 257190.617499999701977 ], [ 364450.449199996888638, 257196.456300001591444 ], [ 364446.876199997961521, 257188.241200000047684 ], [ 364442.903899997472763, 257181.242600001394749 ], [ 364439.281400002539158, 257163.280999999493361 ], [ 364426.49719999730587, 257156.353900000452995 ], [ 364397.385600000619888, 257197.822599999606609 ], [ 364394.845100000500679, 257201.441399998962879 ], [ 364398.701399996876717, 257206.844700001180172 ], [ 364399.425499998033047, 257207.859200000762939 ], [ 364401.286100000143051, 257207.132800001651049 ], [ 364409.214100003242493, 257203.515900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602074800", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-30", "ACRE": "0.14", "LONGITUDE": -64.88452505, "LATITUDE": 18.34412502, "OBJECTID_1": 21357, "PARCEL_NO_": "105602074800", "Tax_Legal_": "394A-30 ANNA'S RETREAT No.1 NEW QTR.", "Name": "MILLINER, ERTHA D", "Address": "PO Box 306753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.854513243, "SHAPE_Area": 711.80847525399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363712.898000001907349, 257209.676100000739098 ], [ 363696.780799999833107, 257208.488699998706579 ], [ 363688.431699998676777, 257241.984299998730421 ], [ 363713.405900001525879, 257244.721799999475479 ], [ 363712.898000001907349, 257209.676100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602074900", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-31", "ACRE": "0.14", "LONGITUDE": -64.88434915000001, "LATITUDE": 18.34412284, "OBJECTID_1": 21358, "PARCEL_NO_": "105602074900", "Tax_Legal_": "394A-31 ANNAS RETREAT NEW QTR.", "Name": "GALLOWAY, ALFRED", "Address": "P..O, BOX 2163", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.456716095, "SHAPE_Area": 572.49182422299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363732.782499998807907, 257241.92509999871254 ], [ 363725.815200001001358, 257207.881999999284744 ], [ 363712.898000001907349, 257209.676100000739098 ], [ 363713.405900001525879, 257244.721799999475479 ], [ 363723.088799998164177, 257243.956700000911951 ], [ 363732.782499998807907, 257241.92509999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602075300", "MAP": "D9--1956-T82", "PARCEL_NAM": "394A-48", "ACRE": ".13", "LONGITUDE": -64.88361146, "LATITUDE": 18.34410432, "OBJECTID_1": 21362, "PARCEL_NO_": "105602075300", "Tax_Legal_": "394A-48 ANNAS RETREAT NEW QTR.", "Name": "VANTERPOOL, YVONNE", "Address": "P.O.BOX 2344", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 154100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.852950142799997, "SHAPE_Area": 565.08867453000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363798.379699997603893, 257208.89809999987483 ], [ 363785.29169999808073, 257230.744699999690056 ], [ 363787.647699996829033, 257238.152199998497963 ], [ 363793.236199997365475, 257244.741900000721216 ], [ 363817.637699998915195, 257220.032600000500679 ], [ 363798.379699997603893, 257208.89809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601061900", "MAP": "D9-9014-T015", "PARCEL_NAM": "404-33", "ACRE": ".33", "LONGITUDE": -64.89153578, "LATITUDE": 18.34398049, "OBJECTID_1": 20855, "PARCEL_NO_": "105601061900", "Tax_Legal_": "404-33 ANNAS RETREAT NEW QTR.", "Name": "GEMS INVESTMENTS LLC", "Address": "PO BOX 9800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 101300, "Improved_V": 279100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.63469499000001, "SHAPE_Area": 1490.2227770300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362927.533699996769428, 257207.789299998432398 ], [ 362956.377999998629093, 257201.560400001704693 ], [ 362958.853799998760223, 257220.181000001728535 ], [ 362961.134300000965595, 257236.453899998217821 ], [ 362982.951499998569489, 257231.144000001251698 ], [ 362979.875500001013279, 257213.598099999129772 ], [ 362978.324000000953674, 257206.40819999948144 ], [ 362970.519799999892712, 257175.946800000965595 ], [ 362934.891000002622604, 257193.387099999934435 ], [ 362927.533699996769428, 257207.789299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602074700", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-29", "ACRE": "0.14", "LONGITUDE": -64.88471057, "LATITUDE": 18.34408768, "OBJECTID_1": 21356, "PARCEL_NO_": "105602074700", "Tax_Legal_": "394A-29 ANNAS RETREAT NEW QTR.", "Name": "WILLIAMS, H. & PAUL, C", "Address": "PO Box 502812", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18600, "Improved_V": 229400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.10272922199999, "SHAPE_Area": 661.08550160899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363696.780799999833107, 257208.488699998706579 ], [ 363677.459899999201298, 257204.741999998688698 ], [ 363669.920699998736382, 257237.822000000625849 ], [ 363688.431699998676777, 257241.984299998730421 ], [ 363696.780799999833107, 257208.488699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602075000", "MAP": "C9-254-T80", "PARCEL_NAM": "394-A-32", "ACRE": "0.14", "LONGITUDE": -64.8841844, "LATITUDE": 18.34408246, "OBJECTID_1": 21359, "PARCEL_NO_": "105602075000", "Tax_Legal_": "394-A-32EST.ANNAS RET. NEW QUARTER", "Name": "LUKE, LEROY & ELZAR", "Address": "PO Box 307491", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 182600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.08186104399999, "SHAPE_Area": 661.25745853900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363752.999700002372265, 257235.124499998986721 ], [ 363743.582900002598763, 257204.649900000542402 ], [ 363725.815200001001358, 257207.881999999284744 ], [ 363732.782499998807907, 257241.92509999871254 ], [ 363741.671700000762939, 257239.675799999386072 ], [ 363752.999700002372265, 257235.124499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701050900", "MAP": "D9-6202-T97", "PARCEL_NAM": "31", "ACRE": "0.14", "LONGITUDE": -64.87472086, "LATITUDE": 18.34416251, "OBJECTID_1": 22112, "PARCEL_NO_": "105701050900", "Tax_Legal_": "31 SMITH BAY EAST END QUARTER", "Name": "DASILVA, FESTINA", "Address": "PO Box 307744", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18200, "Improved_V": 46200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.269154259, "SHAPE_Area": 491.64405223799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364719.109499998390675, 257225.721900001168251 ], [ 364730.203599996864796, 257248.610800001770258 ], [ 364758.413800001144409, 257250.108300000429153 ], [ 364757.657799996435642, 257244.191500000655651 ], [ 364756.068599998950958, 257241.434300001710653 ], [ 364752.065800003707409, 257238.024000000208616 ], [ 364719.109499998390675, 257225.721900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90182222, "LATITUDE": 18.34386712, "OBJECTID_1": 19872, "PARCEL_NO_": "105502022600", "Tax_Legal_": "WINTBERG ESTATE 1Z-1 GR NORTHSIDE QTR", "Name": "HUNT, JAMES", "Address": "PO Box 8013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 101500, "Improved_V": 331700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.42048697500002, "SHAPE_Area": 3662.5255606599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361836.339199997484684, 257225.9814000017941 ], [ 361875.212999999523163, 257206.245700001716614 ], [ 361894.668799996376038, 257194.161499999463558 ], [ 361922.254299998283386, 257174.333399999886751 ], [ 361932.817299999296665, 257164.9206000007689 ], [ 361934.435300000011921, 257164.300599999725819 ], [ 361935.254199996590614, 257162.829599998891354 ], [ 361936.87219999730587, 257162.209600001573563 ], [ 361937.691100001335144, 257160.738600000739098 ], [ 361946.612700000405312, 257154.689899999648333 ], [ 361835.230099998414516, 257166.866099998354912 ], [ 361836.556800000369549, 257200.440900001674891 ], [ 361836.339199997484684, 257225.9814000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601019800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-81", "ACRE": ".133", "LONGITUDE": -64.89692789, "LATITUDE": 18.34410893, "OBJECTID_1": 20535, "PARCEL_NO_": "105601019800", "Tax_Legal_": "146-81 ANNAS RETREAT 1 NEW QTR", "Name": "FRETT, HARRY K.& CYNTHIA V.(LIFE ESTATE)", "Address": "1555 Unionport Rd Number 7F", "City": "Bronx", "State": "New York", "Zip": 10462, "Country": "United States", "Land_Value": 19300, "Improved_V": 125500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.258869468599997, "SHAPE_Area": 494.11154505500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362401.83219999819994, 257199.156700000166893 ], [ 362384.05009999871254, 257204.077500000596046 ], [ 362380.817699998617172, 257204.895399998873472 ], [ 362383.832599997520447, 257229.618000000715256 ], [ 362391.915500000119209, 257227.362100001424551 ], [ 362395.140699997544289, 257227.3885000012815 ], [ 362399.953400000929832, 257230.383200000971556 ], [ 362401.83219999819994, 257199.156700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87255933, "LATITUDE": 18.34401637, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.5004897, "SHAPE_Area": 1647.4433189399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364958.895400002598763, 257191.165300000458956 ], [ 364954.074500001966953, 257189.284000001847744 ], [ 364953.517700001597404, 257197.672699999064207 ], [ 364954.31139999628067, 257206.668499998748302 ], [ 364954.57599999755621, 257211.431000001728535 ], [ 364954.44370000064373, 257214.738299999386072 ], [ 364954.046800002455711, 257218.971700001507998 ], [ 364952.021300002932549, 257228.367499999701977 ], [ 364949.315399996936321, 257240.919199999421835 ], [ 364946.755400002002716, 257252.794599998742342 ], [ 364951.921599999070168, 257252.536400001496077 ], [ 364955.963899999856949, 257251.30290000140667 ], [ 364994.753200002014637, 257241.487900000065565 ], [ 364986.839400000870228, 257223.902399998158216 ], [ 364975.687700003385544, 257207.76799999922514 ], [ 364966.899099998176098, 257198.196899998933077 ], [ 364958.895400002598763, 257191.165300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601016900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-73", "ACRE": ".115", "LONGITUDE": -64.89750823, "LATITUDE": 18.34410921, "OBJECTID_1": 20506, "PARCEL_NO_": "105601016900", "Tax_Legal_": "146-73 ANNAS RETREAT 1 NEW QTR", "Name": "RABSATT, EILEEN", "Address": "PO Box 502194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16300, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.183262802900003, "SHAPE_Area": 471.98522095200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362344.404200002551079, 257219.796100001782179 ], [ 362334.904600001871586, 257199.031199999153614 ], [ 362317.090199999511242, 257207.751299999654293 ], [ 362325.774499997496605, 257229.565000001341105 ], [ 362344.404200002551079, 257219.796100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601031600", "MAP": "B9-156-T67", "PARCEL_NAM": "155-6", "ACRE": ".132", "LONGITUDE": -64.89551613, "LATITUDE": 18.34411351, "OBJECTID_1": 20629, "PARCEL_NO_": "105601031600", "Tax_Legal_": "155-6 ANNAS RETREAT NO.1 NEW QTR", "Name": "FRASER, AUSTIN & IRENE", "Address": "PO Box 9458", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 127000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.635712326800004, "SHAPE_Area": 493.68634283599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362553.35419999808073, 257207.996300000697374 ], [ 362543.690999999642372, 257206.439500000327826 ], [ 362530.820600003004074, 257202.745600000023842 ], [ 362528.236199997365475, 257222.144999999552965 ], [ 362544.306699998676777, 257228.820500001311302 ], [ 362550.735600002110004, 257231.406199999153614 ], [ 362553.35419999808073, 257207.996300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702066200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87077361, "LATITUDE": 18.34404185, "OBJECTID_1": 22705, "PARCEL_NO_": "105702066200", "Tax_Legal_": "SMITH BAY 57-4E EAST END QTR", "Name": "GILBERT, ROY", "Address": "PO Box 8392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011392, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.18245400800001, "SHAPE_Area": 912.824120505 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365158.762000001966953, 257204.411200001835823 ], [ 365160.31700000166893, 257211.179000001400709 ], [ 365146.548600003123283, 257218.243400000035763 ], [ 365136.838699996471405, 257222.174800001084805 ], [ 365150.287000000476837, 257252.682300001382828 ], [ 365155.963600002229214, 257248.929099999368191 ], [ 365176.232900001108646, 257236.007199998944998 ], [ 365158.762000001966953, 257204.411200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701051000", "MAP": "G9-2159-T72", "PARCEL_NAM": "30", "ACRE": "0.20", "LONGITUDE": -64.87502455000001, "LATITUDE": 18.34411585, "OBJECTID_1": 22113, "PARCEL_NO_": "105701051000", "Tax_Legal_": "SMITH BAY 30 EAST END QUARTER", "Name": "TESHA MELISSIA BLYDEN and BYRON MADURO", "Address": "PO Box 306223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036223, "Country": "United States", "Land_Value": 27400, "Improved_V": 215000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.513729861, "SHAPE_Area": 889.67302284100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364719.109499998390675, 257225.721900001168251 ], [ 364703.832699999213219, 257220.530699998140335 ], [ 364689.342399999499321, 257217.66780000180006 ], [ 364686.912699997425079, 257218.914500001817942 ], [ 364686.88570000231266, 257222.080699998885393 ], [ 364691.637299999594688, 257232.252099998295307 ], [ 364694.72410000115633, 257248.531500000506639 ], [ 364730.203599996864796, 257248.610800001770258 ], [ 364719.109499998390675, 257225.721900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601062300", "MAP": "C9-312K-T88", "PARCEL_NAM": "404-20", "ACRE": null, "LONGITUDE": -64.89174655, "LATITUDE": 18.34406747, "OBJECTID_1": 20859, "PARCEL_NO_": "105601062300", "Tax_Legal_": "404-20&POR 215 ANNAS RET NEW QTR.", "Name": "ZAKERS, WILBERT & IRMA", "Address": "PO Box 9558", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.42879116500001, "SHAPE_Area": 617.76148942600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362958.468400001525879, 257217.282200001180172 ], [ 362956.377999998629093, 257201.560400001704693 ], [ 362927.533699996769428, 257207.789299998432398 ], [ 362925.87049999833107, 257211.045099999755621 ], [ 362922.584200002253056, 257218.19539999961853 ], [ 362919.422499999403954, 257229.406700000166893 ], [ 362958.310999996960163, 257217.318500000983477 ], [ 362958.468400001525879, 257217.282200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043100", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-37", "ACRE": "0.19", "LONGITUDE": -64.89051964, "LATITUDE": 18.34409131, "OBJECTID_1": 21209, "PARCEL_NO_": "105602043100", "Tax_Legal_": "143A-37 ANNAS RETREAT NEW QTR", "Name": "TURNBULL, ERNEST", "Address": "P.O. BOX 1723", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28900, "Improved_V": 292300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.438205107599998, "SHAPE_Area": 593.00226395799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363081.334200002253056, 257230.471599999815226 ], [ 363078.337300002574921, 257203.638199999928474 ], [ 363057.358800001442432, 257205.155200000852346 ], [ 363060.337700001895428, 257234.099399998784065 ], [ 363081.334200002253056, 257230.471599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602074600", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-28", "ACRE": "0.14", "LONGITUDE": -64.88488416, "LATITUDE": 18.34404998, "OBJECTID_1": 21355, "PARCEL_NO_": "105602074600", "Tax_Legal_": "394A-28 ANNAS RETREAT NEW QTR.", "Name": "FRETT, ALTERA", "Address": "PO Box 12294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.42134694799999, "SHAPE_Area": 611.89761530500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363677.459899999201298, 257204.741999998688698 ], [ 363659.756899997591972, 257200.375199999660254 ], [ 363652.22860000282526, 257232.188799999654293 ], [ 363669.920699998736382, 257237.822000000625849 ], [ 363677.459899999201298, 257204.741999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702065900", "MAP": null, "PARCEL_NAM": "57T-4A", "ACRE": null, "LONGITUDE": -64.87200587, "LATITUDE": 18.34399984, "OBJECTID_1": 22703, "PARCEL_NO_": "105702065900", "Tax_Legal_": "SMITH BAY 57T-4A EAST END QTR", "Name": "TRUST AGREEMENT OF LEONARD WARNER SR", "Address": "1644 Callaway Loop", "City": "Conyers", "State": "Georgia", "Zip": 300123671, "Country": "United States", "Land_Value": 29800, "Improved_V": 192000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.0856369, "SHAPE_Area": 1118.68774418 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365043.362199999392033, 257214.865800000727177 ], [ 365024.890699997544289, 257206.059799998998642 ], [ 365012.86429999768734, 257197.939800001680851 ], [ 365011.844099998474121, 257223.051600001752377 ], [ 365008.494699999690056, 257237.589600000530481 ], [ 365039.85639999806881, 257247.767700001597404 ], [ 365043.362199999392033, 257214.865800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90248068, "LATITUDE": 18.34394692, "OBJECTID_1": 19873, "PARCEL_NO_": "105502022700", "Tax_Legal_": "WINTBERG ESTATE 1-W-1B GT. NORTHSIDE", "Name": "ROOSEVELT ST C & LEOTA I DAVID LIVING TRUST", "Address": "PO BOX 7109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67800, "Improved_V": 386600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.395754917, "SHAPE_Area": 2288.3545516999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361835.230099998414516, 257166.866099998354912 ], [ 361782.728000000119209, 257177.202199999243021 ], [ 361773.043300002813339, 257178.178399998694658 ], [ 361779.209700003266335, 257211.581599999219179 ], [ 361780.744999997317791, 257220.67119999974966 ], [ 361836.556800000369549, 257200.440900001674891 ], [ 361835.230099998414516, 257166.866099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043200", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-38", "ACRE": "0.19", "LONGITUDE": -64.89028781, "LATITUDE": 18.34406131, "OBJECTID_1": 21210, "PARCEL_NO_": "105602043200", "Tax_Legal_": "143A-38 ANNAS RETREAT NEW QTR", "Name": "HODGE, CARMELIA", "Address": "PO Box 304136", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 348100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.697425137, "SHAPE_Area": 734.10413087699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363108.788400001823902, 257226.052200000733137 ], [ 363107.386100001633167, 257201.342799998819828 ], [ 363078.337300002574921, 257203.638199999928474 ], [ 363081.334200002253056, 257230.471599999815226 ], [ 363086.987400002777576, 257229.462400000542402 ], [ 363108.788400001823902, 257226.052200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701040900", "MAP": "C3-59-T47", "PARCEL_NAM": "20A", "ACRE": "12", "LONGITUDE": -64.87724776, "LATITUDE": 18.34113864, "OBJECTID_1": 22042, "PARCEL_NO_": "105701040900", "Tax_Legal_": "20-20A SMITH BAY Nos. 1,2& 3 EAST END QUARTER", "Name": "FRANCIS-ESTRILL, CECILE , TROTMAN & OTHERS", "Address": "PO Box 8955", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 746900, "Improved_V": 71100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1398.9083240499999, "SHAPE_Area": 47604.576554599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364403.740900002419949, 257138.878400001674891 ], [ 364428.143700003623962, 257087.460299998521805 ], [ 364442.344999998807907, 257057.537200000137091 ], [ 364457.097800001502037, 257029.582499999552965 ], [ 364465.299400001764297, 257013.395399998873472 ], [ 364475.955899998545647, 256993.006599999964237 ], [ 364497.274300001561642, 256951.595600001513958 ], [ 364504.653399996459484, 256937.301699999719858 ], [ 364520.230400003492832, 256907.242800001055002 ], [ 364529.24549999833107, 256890.217999998480082 ], [ 364538.260600000619888, 256873.193199999630451 ], [ 364552.201700001955032, 256845.865100000053644 ], [ 364565.329300001263618, 256819.374800000339746 ], [ 364570.231899999082088, 256811.815499998629093 ], [ 364575.861699998378754, 256813.550400000065565 ], [ 364586.501999996602535, 256795.061200000345707 ], [ 364588.125399999320507, 256793.807900000363588 ], [ 364589.772200003266335, 256789.810600001364946 ], [ 364591.395599998533726, 256788.557399999350309 ], [ 364593.042400002479553, 256784.560100000351667 ], [ 364597.120700001716614, 256779.105000000447035 ], [ 364599.588200002908707, 256773.425700001418591 ], [ 364604.479999996721745, 256767.13289999961853 ], [ 364606.097999997437, 256766.512899998575449 ], [ 364633.163099996745586, 256713.116599999368191 ], [ 364633.985600002110004, 256711.223499998450279 ], [ 364650.381599999964237, 256679.69370000064373 ], [ 364623.719300001859665, 256685.808299999684095 ], [ 364583.276000000536442, 256700.464899998158216 ], [ 364543.640799999237061, 256714.916999999433756 ], [ 364512.093900002539158, 256726.480099998414516 ], [ 364482.107500001788139, 256744.177600000053644 ], [ 364476.537100002169609, 256735.477200001478195 ], [ 364450.575000002980232, 256754.052000001072884 ], [ 364448.95160000026226, 256755.305300001055002 ], [ 364443.079099997878075, 256782.066100001335144 ], [ 364433.027500003576279, 256826.102400001138449 ], [ 364422.155199997127056, 256871.820700000971556 ], [ 364411.275799997150898, 256918.383400000631809 ], [ 364397.89639999717474, 256974.424699999392033 ], [ 364392.023900002241135, 257001.185600001364946 ], [ 364385.343199998140335, 257028.15089999884367 ], [ 364376.96000000089407, 257065.656899999827147 ], [ 364366.894100002944469, 257111.381799999624491 ], [ 364340.074299998581409, 257230.64130000025034 ], [ 364341.647299997508526, 257235.298200000077486 ], [ 364345.632200002670288, 257240.819200001657009 ], [ 364351.322899997234344, 257250.109700001776218 ], [ 364353.700499996542931, 257253.991399999707937 ], [ 364355.682499997317791, 257257.227299999445677 ], [ 364359.413999997079372, 257248.005499999970198 ], [ 364362.274999998509884, 257240.934799998998642 ], [ 364375.552199997007847, 257208.122299998998642 ], [ 364383.956399999558926, 257187.35249999910593 ], [ 364399.624300003051758, 257148.631499998271465 ], [ 364400.592100001871586, 257145.513199999928474 ], [ 364403.740900002419949, 257138.878400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601040900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-13", "ACRE": "0.22", "LONGITUDE": -64.89806919, "LATITUDE": 18.34400538, "OBJECTID_1": 20705, "PARCEL_NO_": "105601040900", "Tax_Legal_": "146-13 ANNAS RETREAT 1 NEW QTR", "Name": "MEDINA, BEULAH", "Address": "PO Box 302074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 174200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.067440648, "SHAPE_Area": 783.08796518300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362288.023199997842312, 257211.359499998390675 ], [ 362277.636500000953674, 257182.519299998879433 ], [ 362252.160099998116493, 257194.611400000751019 ], [ 362269.915600001811981, 257223.093400001525879 ], [ 362275.685999996960163, 257218.346400000154972 ], [ 362288.023199997842312, 257211.359499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602075100", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-33", "ACRE": "0.14", "LONGITUDE": -64.88401426, "LATITUDE": 18.34403557, "OBJECTID_1": 21360, "PARCEL_NO_": "105602075100", "Tax_Legal_": "ANNAS RETREAT 394A-33 NEW QTR", "Name": "BROWN, CHARLES", "Address": "PO Box 603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040603, "Country": "United States", "Land_Value": 20200, "Improved_V": 180300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.925122769799998, "SHAPE_Area": 556.32189284499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363768.337600000202656, 257233.138999998569489 ], [ 363762.961300000548363, 257201.642099998891354 ], [ 363743.582900002598763, 257204.649900000542402 ], [ 363752.999700002372265, 257235.124499998986721 ], [ 363768.337600000202656, 257233.138999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702042400", "MAP": "F9-993-T62", "PARCEL_NAM": "89", "ACRE": ".14", "LONGITUDE": -64.87340946, "LATITUDE": 18.34406987, "OBJECTID_1": 22589, "PARCEL_NO_": "105702042400", "Tax_Legal_": "SMITH BAY 89 1 2 & 3 EASTEND", "Name": "CHESTERFIELD, OLAN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19700, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.128312605, "SHAPE_Area": 598.34881766599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364887.546899996697903, 257223.540699999779463 ], [ 364862.09570000320673, 257221.622600000351667 ], [ 364861.05460000038147, 257222.872900001704693 ], [ 364857.793399997055531, 257227.06810000166297 ], [ 364866.863300003111362, 257241.207400001585484 ], [ 364892.598099999129772, 257240.31980000063777 ], [ 364893.765799999237061, 257240.279500000178814 ], [ 364896.200000002980232, 257224.192800000309944 ], [ 364887.546899996697903, 257223.540699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502040800", "MAP": "D9-7826-T006", "PARCEL_NAM": "11 REM", "ACRE": ".95", "LONGITUDE": -64.90608651, "LATITUDE": 18.34296582, "OBJECTID_1": 19914, "PARCEL_NO_": "105502040800", "Tax_Legal_": "RAPHUNE ESTATE 11 5BA NEW QTR.", "Name": "GAREE, DALE & JULIETTE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 116000, "Improved_V": 268700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 311.50734604399997, "SHAPE_Area": 4293.1268796599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361407.994199998676777, 257150.487399999052286 ], [ 361439.569200001657009, 257135.625500001013279 ], [ 361439.675899997353554, 257123.098700001835823 ], [ 361440.361100003123283, 257117.200599998235703 ], [ 361442.47410000115633, 257095.754700001329184 ], [ 361444.040100000798702, 257084.082100000232458 ], [ 361443.695900000631809, 257029.828299999237061 ], [ 361440.597800001502037, 257019.125100001692772 ], [ 361432.703199997544289, 257015.062199998646975 ], [ 361422.017200000584126, 257018.885099999606609 ], [ 361406.867499999701977, 257030.224500000476837 ], [ 361408.024700000882149, 257146.904399998486042 ], [ 361407.994199998676777, 257150.487399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601034600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-70", "ACRE": ".217", "LONGITUDE": -64.89257693, "LATITUDE": 18.34402291, "OBJECTID_1": 20655, "PARCEL_NO_": "105601034600", "Tax_Legal_": "129 70 ANNAS RETREAT NEW QTR", "Name": "J.M.&M.A. JARVIS JOINT LIV TRUST,L JARVIS TRUSTEE", "Address": "4812 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 220100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.951145134, "SHAPE_Area": 921.58587326899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362830.837200000882149, 257197.179499998688698 ], [ 362845.116999998688698, 257224.738600000739098 ], [ 362853.982900001108646, 257225.233300000429153 ], [ 362866.07209999859333, 257225.965500000864267 ], [ 362869.353100001811981, 257219.448499999940395 ], [ 362868.697899997234344, 257201.711300000548363 ], [ 362837.350599996745586, 257189.8445999994874 ], [ 362834.886699996888638, 257195.101700000464916 ], [ 362830.837200000882149, 257197.179499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601061000", "MAP": "C9-239-T79", "PARCEL_NAM": "404-9", "ACRE": null, "LONGITUDE": -64.89229616, "LATITUDE": 18.34406996, "OBJECTID_1": 20846, "PARCEL_NO_": "105601061000", "Tax_Legal_": "ANNAS RETREAT 404-9 NEW QTR", "Name": "GEORGES, ADDISON & RUTHLYN", "Address": "PO Box 10146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 92300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.04638033400001, "SHAPE_Area": 585.17345092100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362892.871100001037121, 257203.808899998664856 ], [ 362868.697899997234344, 257201.711300000548363 ], [ 362869.353100001811981, 257219.448499999940395 ], [ 362866.07209999859333, 257225.965500000864267 ], [ 362898.340800002217293, 257224.329799998551607 ], [ 362894.388400003314018, 257215.009300000965595 ], [ 362892.871100001037121, 257203.808899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602074500", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-27", "ACRE": "0.14", "LONGITUDE": -64.88505067, "LATITUDE": 18.34400455, "OBJECTID_1": 21354, "PARCEL_NO_": "105602074500", "Tax_Legal_": "394A-27 ANNAS RETREAT NEW QTR.", "Name": "WATKINS, SAMUEL & SARAH", "Address": "6120 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 140700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.26315263799999, "SHAPE_Area": 588.32120644500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363659.756899997591972, 257200.375199999660254 ], [ 363642.867499999701977, 257195.170800000429153 ], [ 363634.53830000013113, 257226.344399999827147 ], [ 363652.22860000282526, 257232.188799999654293 ], [ 363659.756899997591972, 257200.375199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602075200", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-34", "ACRE": "0.14", "LONGITUDE": -64.88384739, "LATITUDE": 18.3439945, "OBJECTID_1": 21361, "PARCEL_NO_": "105602075200", "Tax_Legal_": "394A-34 ANNAS ARETREAT NEW QTR", "Name": "PARKER, EARL", "Address": "PO Box 12336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 210000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.798714021699993, "SHAPE_Area": 515.72879648699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363768.337600000202656, 257233.138999998569489 ], [ 363773.195299997925758, 257230.856800001114607 ], [ 363777.257399998605251, 257227.301399998366833 ], [ 363790.365199998021126, 257203.133000001311302 ], [ 363767.806400001049042, 257200.837400000542402 ], [ 363762.961300000548363, 257201.642099998891354 ], [ 363768.337600000202656, 257233.138999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702042500", "MAP": "G9-2800-T78", "PARCEL_NAM": "90", "ACRE": ".191", "LONGITUDE": -64.87312907, "LATITUDE": 18.34398061, "OBJECTID_1": 22590, "PARCEL_NO_": "105702042500", "Tax_Legal_": "SMITH BAY 90 EAST END QTR", "Name": "HERMAN, KENNETH & ALMA M", "Address": "PO Box 8334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 125400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.30385863199999, "SHAPE_Area": 772.97110160199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364900.610399998724461, 257197.150800000876188 ], [ 364903.079199999570847, 257214.985300000756979 ], [ 364900.962499998509884, 257217.41950000077486 ], [ 364896.200000002980232, 257224.192800000309944 ], [ 364893.765799999237061, 257240.279500000178814 ], [ 364905.968199998140335, 257240.305599998682737 ], [ 364920.277099996805191, 257240.693999998271465 ], [ 364918.857199996709824, 257235.905099999159575 ], [ 364917.554099999368191, 257227.380699999630451 ], [ 364912.539399996399879, 257194.576699998229742 ], [ 364900.610399998724461, 257197.150800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105702030200", "MAP": "D9-7468-T004", "PARCEL_NAM": "40A", "ACRE": ".297", "LONGITUDE": -64.86987401, "LATITUDE": 18.34393862, "OBJECTID_1": 22466, "PARCEL_NO_": "105702030200", "Tax_Legal_": "SMITH BAY 40A No.1,2&3 EASTEND QUARTER", "Name": "COURTYARD LAND CO. , LLC", "Address": "6812 Est Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73200, "Improved_V": 1337200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.53034324800001, "SHAPE_Area": 1237.8078232099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365263.991300001740456, 257194.632199998944998 ], [ 365224.183399997651577, 257226.294700000435114 ], [ 365236.634400002658367, 257244.945300001651049 ], [ 365273.134199999272823, 257219.912799999117851 ], [ 365276.397299997508526, 257215.506499998271465 ], [ 365277.23589999973774, 257211.713700000196695 ], [ 365263.991300001740456, 257194.632199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601030700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-154", "ACRE": ".142", "LONGITUDE": -64.89619708, "LATITUDE": 18.34405998, "OBJECTID_1": 20620, "PARCEL_NO_": "105601030700", "Tax_Legal_": "ANNAS RETREAT 146-154 1 NEW QTR", "Name": "TURNBULL, MOLETO & LYNDLEY", "Address": "PO Box 12064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 99000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.441617975200003, "SHAPE_Area": 551.55664771500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362478.395900003612041, 257204.005300000309944 ], [ 362472.038900002837181, 257192.976399999111891 ], [ 362453.369599997997284, 257207.388999998569489 ], [ 362456.535499997437, 257214.381000000983477 ], [ 362458.086999997496605, 257221.570900000631809 ], [ 362487.14299999922514, 257218.431200001388788 ], [ 362478.395900003612041, 257204.005300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601034500", "MAP": "A9-15-T62", "PARCEL_NAM": "129-71", "ACRE": ".165", "LONGITUDE": -64.89284605, "LATITUDE": 18.34403817, "OBJECTID_1": 20654, "PARCEL_NO_": "105601034500", "Tax_Legal_": "ANNAS RETREAT 129-71 NEW QTR", "Name": "CONSORCIA M. CRUZ, M.D. LIVING TRUST", "Address": "PO Box 12066", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 118800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.234753857, "SHAPE_Area": 816.06028846100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362830.837200000882149, 257197.179499998688698 ], [ 362825.191200003027916, 257197.344399999827147 ], [ 362821.98030000180006, 257195.629399999976158 ], [ 362820.391099996864796, 257192.872099999338388 ], [ 362817.984700001776218, 257191.374800000339746 ], [ 362809.928800001740456, 257190.464499998837709 ], [ 362811.498199999332428, 257195.543600000441074 ], [ 362807.234700001776218, 257222.739799998700619 ], [ 362809.6537000015378, 257222.75959999859333 ], [ 362830.610600002110004, 257223.775400001555681 ], [ 362845.116999998688698, 257224.738600000739098 ], [ 362830.837200000882149, 257197.179499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601061200", "MAP": "C9-239-T79", "PARCEL_NAM": "404-10", "ACRE": null, "LONGITUDE": -64.89204366, "LATITUDE": 18.34402142, "OBJECTID_1": 20848, "PARCEL_NO_": "105601061200", "Tax_Legal_": "404-10 ANNAS RETREAT NEW QTR", "Name": "ORTIZ, MIGUEL", "Address": "PO Box 11382", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 86200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.957226641299997, "SHAPE_Area": 423.9006985 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362911.236400000751019, 257225.068599998950958 ], [ 362914.548000000417233, 257214.963199999183416 ], [ 362921.943300001323223, 257198.769600000232458 ], [ 362897.752099998295307, 257198.782699998468161 ], [ 362897.728699997067451, 257201.526700001209974 ], [ 362898.445100001990795, 257212.087200000882149 ], [ 362904.794900000095367, 257223.960400000214577 ], [ 362911.236400000751019, 257225.068599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702023700", "MAP": "F9-2121-T67", "PARCEL_NAM": "4G-11", "ACRE": "4,770 sq ft", "LONGITUDE": -64.86797818, "LATITUDE": 18.343954, "OBJECTID_1": 22401, "PARCEL_NO_": "105702023700", "Tax_Legal_": "SMITH BAY 4G-11 EAST END", "Name": "HODGE, DEADRIC G", "Address": "PO Box 9638", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 119400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.103304315, "SHAPE_Area": 628.75092780900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365466.712200000882149, 257214.108800001442432 ], [ 365444.490000002086163, 257206.314800001680851 ], [ 365444.182199999690056, 257208.436000000685453 ], [ 365439.95099999755621, 257231.832800000905991 ], [ 365439.835900001227856, 257245.34180000051856 ], [ 365441.445000000298023, 257245.777199998497963 ], [ 365443.064800001680851, 257244.946100000292063 ], [ 365444.700800001621246, 257242.215199999511242 ], [ 365473.148299999535084, 257215.850299999117851 ], [ 365466.712200000882149, 257214.108800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601016800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-72", "ACRE": ".121", "LONGITUDE": -64.89733581, "LATITUDE": 18.34402059, "OBJECTID_1": 20505, "PARCEL_NO_": "105601016800", "Tax_Legal_": "146-72 ANNAS RETREAT 1 NEW QTR", "Name": "PICKERING, EMANUEL & EMELDA", "Address": "P.O BOX 3515", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 111000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.820855051699994, "SHAPE_Area": 468.75296239699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362362.227600000798702, 257210.020599998533726 ], [ 362354.338899999856949, 257189.479899998754263 ], [ 362334.904600001871586, 257199.031199999153614 ], [ 362344.404200002551079, 257219.796100001782179 ], [ 362362.227600000798702, 257210.020599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043300", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-39", "ACRE": "0.19", "LONGITUDE": -64.89000989, "LATITUDE": 18.34402924, "OBJECTID_1": 21211, "PARCEL_NO_": "105602043300", "Tax_Legal_": "ANNAS RETREAT 143A-39 NEW QTR", "Name": "TURNBULL, VERDELL E. & MAXINE D. E", "Address": "P.O. BOX 1723", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.776167632, "SHAPE_Area": 724.23262435499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363139.471400000154972, 257221.237100001424551 ], [ 363138.047600001096725, 257199.060600001364946 ], [ 363107.386100001633167, 257201.342799998819828 ], [ 363108.788400001823902, 257226.052200000733137 ], [ 363115.247900001704693, 257225.049600001424551 ], [ 363139.471400000154972, 257221.237100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601034400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-72", "ACRE": ".165", "LONGITUDE": -64.89306179, "LATITUDE": 18.34399965, "OBJECTID_1": 20653, "PARCEL_NO_": "105601034400", "Tax_Legal_": "129 72 ANNAS RETREAT NEW QTR", "Name": "FENTON, KADMIEL & BERNICE", "Address": "PO Box 9525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23100, "Improved_V": 185600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.767390096400007, "SHAPE_Area": 586.19467895299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362809.928800001740456, 257190.464499998837709 ], [ 362793.005199998617172, 257189.270500000566244 ], [ 362790.305699996650219, 257222.179000001400709 ], [ 362807.234700001776218, 257222.739799998700619 ], [ 362811.498199999332428, 257195.543600000441074 ], [ 362809.928800001740456, 257190.464499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601034100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-39", "ACRE": ".165", "LONGITUDE": -64.89368913, "LATITUDE": 18.34397725, "OBJECTID_1": 20650, "PARCEL_NO_": "105601034100", "Tax_Legal_": "129A 39 ANNAS RETREAT NEW QTR", "Name": "STERLING, AUSTIN & OTHERS", "Address": "P.O. BOX 5385", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23100, "Improved_V": 142600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.712067977, "SHAPE_Area": 912.14232783 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362747.077799998223782, 257185.094900000840425 ], [ 362723.712700001895428, 257182.79280000180006 ], [ 362720.966499999165535, 257221.189300000667572 ], [ 362740.314400002360344, 257221.769900001585484 ], [ 362745.958599999547005, 257221.816100001335144 ], [ 362747.077799998223782, 257185.094900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601034200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-40", "ACRE": ".165", "LONGITUDE": -64.89346422, "LATITUDE": 18.34398562, "OBJECTID_1": 20651, "PARCEL_NO_": "105601034200", "Tax_Legal_": "129A 40 ANNAS RETREAT NEW QTR", "Name": "TOUZE, MARIE", "Address": "129 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 100000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.227994509, "SHAPE_Area": 835.03521715600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362770.442800000309944, 257187.397100001573563 ], [ 362747.077799998223782, 257185.094900000840425 ], [ 362745.958599999547005, 257221.816100001335144 ], [ 362766.116400003433228, 257221.980999998748302 ], [ 362769.341600000858307, 257222.007399998605251 ], [ 362770.442800000309944, 257187.397100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601034300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-41", "ACRE": ".165", "LONGITUDE": -64.89325025, "LATITUDE": 18.34399225, "OBJECTID_1": 20652, "PARCEL_NO_": "105601034300", "Tax_Legal_": "129A 41 ANNAS RETREAT NEW QTR", "Name": "VAN HOLTEN, NICO", "Address": "PO Box 10266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 143600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.25169379800001, "SHAPE_Area": 736.65736980500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362793.005199998617172, 257189.270500000566244 ], [ 362770.442800000309944, 257187.397100001573563 ], [ 362769.341600000858307, 257222.007399998605251 ], [ 362790.305699996650219, 257222.179000001400709 ], [ 362793.005199998617172, 257189.270500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702050200", "MAP": "F9-417-T59", "PARCEL_NAM": "51", "ACRE": ".21", "LONGITUDE": -64.87425294000001, "LATITUDE": 18.34406149, "OBJECTID_1": 22598, "PARCEL_NO_": "105702050200", "Tax_Legal_": "SMITH BAY 51 EAST END QTR", "Name": "JONES, HOWARD & SHARMAIN", "Address": "PO Box 368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.48117440199999, "SHAPE_Area": 631.89373065200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364784.535899996757507, 257212.747400000691414 ], [ 364768.237000003457069, 257232.879000000655651 ], [ 364768.220799997448921, 257234.7787000015378 ], [ 364769.818999998271465, 257236.480500001460314 ], [ 364780.28490000218153, 257238.465999998152256 ], [ 364814.956399999558926, 257238.749800000339746 ], [ 364810.953599996864796, 257235.339600000530481 ], [ 364784.535899996757507, 257212.747400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702050400", "MAP": null, "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.87394488, "LATITUDE": 18.34406027, "OBJECTID_1": 22600, "PARCEL_NO_": "105702050400", "Tax_Legal_": "SMITH BAY 54 EAST END QTR", "Name": "JONES, CHARLES", "Address": "PO Box 368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.988680505800005, "SHAPE_Area": 187.73751648699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364823.827600002288818, 257238.611299999058247 ], [ 364829.687600001692772, 257213.328099999576807 ], [ 364810.953599996864796, 257235.339600000530481 ], [ 364814.956399999558926, 257238.749800000339746 ], [ 364823.827600002288818, 257238.611299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702050500", "MAP": "F9-1289-T63", "PARCEL_NAM": "54A", "ACRE": ".12", "LONGITUDE": -64.87380447, "LATITUDE": 18.34403193, "OBJECTID_1": 22601, "PARCEL_NO_": "105702050500", "Tax_Legal_": "SMITH BAY 54A EAST END QTR", "Name": "MALONE, JERRY B.", "Address": "PO BOX 308368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15500, "Improved_V": 67100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.725506986200003, "SHAPE_Area": 462.62272236400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364850.558200001716614, 257224.475699998438358 ], [ 364832.131700001657009, 257210.392799999564886 ], [ 364829.687600001692772, 257213.328099999576807 ], [ 364823.827600002288818, 257238.611299999058247 ], [ 364838.3412000015378, 257238.730099998414516 ], [ 364840.767300002276897, 257237.905600000172853 ], [ 364844.02139999717474, 257234.554699998348951 ], [ 364850.558200001716614, 257224.475699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601034000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-38", "ACRE": ".165", "LONGITUDE": -64.89389104, "LATITUDE": 18.34396821, "OBJECTID_1": 20649, "PARCEL_NO_": "105601034000", "Tax_Legal_": "129A 38 ANNAS RETREAT NEW QTR", "Name": "KNIGHT, WINIFRED", "Address": "PO Box 7294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010294, "Country": "United States", "Land_Value": 21900, "Improved_V": 112900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.53834685699999, "SHAPE_Area": 727.21133297999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362723.712700001895428, 257182.79280000180006 ], [ 362705.986400000751019, 257181.170000001788139 ], [ 362701.616800002753735, 257220.819899998605251 ], [ 362718.547499999403954, 257221.16950000077486 ], [ 362720.966499999165535, 257221.189300000667572 ], [ 362723.712700001895428, 257182.79280000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602042700", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-1", "ACRE": "0.23", "LONGITUDE": -64.88895549, "LATITUDE": 18.34398208, "OBJECTID_1": 21206, "PARCEL_NO_": "105602042700", "Tax_Legal_": "143-A-1 ANNAS RETREAT NEW QTR", "Name": "LLOYD, LEE", "Address": "PO Box 305465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21600, "Improved_V": 290500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.483234911, "SHAPE_Area": 882.44007851100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363257.378200002014637, 257200.459499999880791 ], [ 363224.387800000607967, 257192.167899999767542 ], [ 363221.146300002932549, 257194.041200000792742 ], [ 363216.209600001573563, 257205.61089999973774 ], [ 363212.122299998998642, 257212.121399998664856 ], [ 363242.650600001215935, 257225.459100000560284 ], [ 363247.546099998056889, 257218.744100000709295 ], [ 363249.194600000977516, 257214.535700000822544 ], [ 363251.642399996519089, 257211.178300000727177 ], [ 363253.281999997794628, 257208.025299999862909 ], [ 363257.378200002014637, 257200.459499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601033900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-37", "ACRE": ".165", "LONGITUDE": -64.89408801, "LATITUDE": 18.34398069, "OBJECTID_1": 20648, "PARCEL_NO_": "105601033900", "Tax_Legal_": "ANNAS RETREAT 129A-37 NEW QTR", "Name": "BAYNES, VIRGINIA I.", "Address": "PO Box 8403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011403, "Country": "United States", "Land_Value": 21900, "Improved_V": 156900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.09673177499999, "SHAPE_Area": 867.54700552400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362705.986400000751019, 257181.170000001788139 ], [ 362697.930500000715256, 257180.259700000286102 ], [ 362692.266500003635883, 257182.535399999469519 ], [ 362680.825300000607967, 257200.384700000286102 ], [ 362679.198299996554852, 257202.060100000351667 ], [ 362679.182099997997284, 257203.959800001233816 ], [ 362677.553300000727177, 257205.846400000154972 ], [ 362675.901100002229214, 257210.47690000012517 ], [ 362675.013899996876717, 257219.968800000846386 ], [ 362695.168099999427795, 257220.556000001728535 ], [ 362701.616800002753735, 257220.819899998605251 ], [ 362705.986400000751019, 257181.170000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105602069900", "MAP": "D9-8646-T012", "PARCEL_NAM": "142-A", "ACRE": ".16", "LONGITUDE": -64.88791739, "LATITUDE": 18.34142801, "OBJECTID_1": 21312, "PARCEL_NO_": "105602069900", "Tax_Legal_": "142-A ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 222200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.229767534, "SHAPE_Area": 703.61171430700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363353.640299998223782, 256943.977299999445677 ], [ 363367.189499996602535, 256923.490800000727177 ], [ 363336.459399998188019, 256909.797600001096725 ], [ 363326.645000003278255, 256924.737799998372793 ], [ 363353.640299998223782, 256943.977299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601016400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-69", "ACRE": ".115", "LONGITUDE": -64.896579, "LATITUDE": 18.34401582, "OBJECTID_1": 20501, "PARCEL_NO_": "105601016400", "Tax_Legal_": "146-69 ANNAS RETREAT 1 NEW QTR", "Name": "GORDON, GEORGE & CARMEN", "Address": "ANNAS RETREAT #155-9", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 133600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.414354858899998, "SHAPE_Area": 446.11346159099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362444.473200000822544, 257210.482599999755621 ], [ 362436.507200002670288, 257199.018399998545647 ], [ 362430.152000002563, 257187.778400000184774 ], [ 362413.862099997699261, 257206.854600001126528 ], [ 362425.065999999642372, 257216.86769999936223 ], [ 362444.473200000822544, 257210.482599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601032400", "MAP": "B9-156-T67", "PARCEL_NAM": "155-9", "ACRE": ".189", "LONGITUDE": -64.89494291, "LATITUDE": 18.34391955, "OBJECTID_1": 20637, "PARCEL_NO_": "105601032400", "Tax_Legal_": "155-9 ANNAS RETREAT 1 NEW QTR", "Name": "MADURO, RUDOLPH", "Address": "55009 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 94800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.11312438, "SHAPE_Area": 752.74256432100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362617.167900003492832, 257195.008499998599291 ], [ 362589.144799999892712, 257171.558899998664856 ], [ 362585.76129999756813, 257190.107400000095367 ], [ 362607.292599998414516, 257218.359099999070168 ], [ 362617.058300003409386, 257207.884399998933077 ], [ 362617.167900003492832, 257195.008499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602074400", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-26", "ACRE": "0.14", "LONGITUDE": -64.88522211, "LATITUDE": 18.34394819, "OBJECTID_1": 21353, "PARCEL_NO_": "105602074400", "Tax_Legal_": "394A-26 ESTATE ANNA'S RETREAT NEW QUARTER", "Name": "MONSANTO, UMILTA L", "Address": "PO Box 12166", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.258640669, "SHAPE_Area": 650.10625214200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363642.867499999701977, 257195.170800000429153 ], [ 363623.575400002300739, 257188.046799998730421 ], [ 363616.045199997723103, 257220.071400001645088 ], [ 363634.53830000013113, 257226.344399999827147 ], [ 363642.867499999701977, 257195.170800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701032200", "MAP": "B9-144-T66", "PARCEL_NAM": "20-24", "ACRE": "0.29", "LONGITUDE": -64.87677192, "LATITUDE": 18.34390737, "OBJECTID_1": 21970, "PARCEL_NO_": "105701032200", "Tax_Legal_": "20-24 SMITH BAY EAST END QUARTER", "Name": "MELFORD BROOKS EDUCATIONAL TRUST", "Address": "PO Box 10739", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.795410272, "SHAPE_Area": 1213.580633 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364547.555500000715256, 257201.941899999976158 ], [ 364536.270700000226498, 257201.427400000393391 ], [ 364524.998599998652935, 257199.435300000011921 ], [ 364510.524499997496605, 257194.672800000756979 ], [ 364500.092799998819828, 257188.67680000141263 ], [ 364495.244099996984005, 257189.903599999845028 ], [ 364495.218900002539158, 257192.85869999974966 ], [ 364517.450400002300739, 257233.570700000971556 ], [ 364549.866599999368191, 257214.626499999314547 ], [ 364547.555500000715256, 257201.941899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702056000", "MAP": "G9-2801-T78", "PARCEL_NAM": "57-110", "ACRE": ".39", "LONGITUDE": -64.87289337, "LATITUDE": 18.34387009, "OBJECTID_1": 22617, "PARCEL_NO_": "105702056000", "Tax_Legal_": "SMITH BAY 57-110 EAST END QTR", "Name": "HERMON, JR. KENNETH & PERCELL & BECK", "Address": "PO Box 304910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 146500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.00431449499999, "SHAPE_Area": 1376.76155748 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364950.55799999833107, 257218.319699998944998 ], [ 364950.054700002074242, 257187.715399999171495 ], [ 364943.602399997413158, 257187.873700000345707 ], [ 364918.865199998021126, 257193.21169999986887 ], [ 364912.539399996399879, 257194.576699998229742 ], [ 364917.554099999368191, 257227.380699999630451 ], [ 364918.857199996709824, 257235.905099999159575 ], [ 364922.258000001311302, 257234.67119999974966 ], [ 364945.703000001609325, 257224.769600000232458 ], [ 364949.914899997413158, 257222.990800000727177 ], [ 364950.55799999833107, 257218.319699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702050300", "MAP": "F9-418-T59", "PARCEL_NAM": "52", "ACRE": ".22", "LONGITUDE": -64.87407047000001, "LATITUDE": 18.34390032, "OBJECTID_1": 22599, "PARCEL_NO_": "105702050300", "Tax_Legal_": "SMITH BAY 52 EAST END QTR", "Name": "JONES, CHARLES", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 264500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.58995063699999, "SHAPE_Area": 1110.9443044499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364832.131700001657009, 257210.392799999564886 ], [ 364828.92620000243187, 257208.04450000077486 ], [ 364803.284199997782707, 257189.0472999997437 ], [ 364784.535899996757507, 257212.747400000691414 ], [ 364810.953599996864796, 257235.339600000530481 ], [ 364829.687600001692772, 257213.328099999576807 ], [ 364832.131700001657009, 257210.392799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043400", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-40", "ACRE": "0.23", "LONGITUDE": -64.88967677, "LATITUDE": 18.3439995, "OBJECTID_1": 21212, "PARCEL_NO_": "105602043400", "Tax_Legal_": "ANNAS RETREAT 143A-40 NEW QTR", "Name": "ABBOTT, JOYCE & LISTON", "Address": "130 HOUSINGTON PLACE", "City": "East Windsor", "State": "New Jersey", "Zip": 8561, "Country": "United States", "Land_Value": 26200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.906309874, "SHAPE_Area": 830.953384422 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363139.471400000154972, 257221.237100001424551 ], [ 363144.316500000655651, 257220.432399999350309 ], [ 363184.673500001430511, 257215.907499998807907 ], [ 363183.102200001478195, 257211.039500001817942 ], [ 363180.711999997496605, 257207.642400000244379 ], [ 363175.111000001430511, 257202.5304000005126 ], [ 363168.691100001335144, 257198.889199998229742 ], [ 363161.448600001633167, 257197.141199998557568 ], [ 363138.047600001096725, 257199.060600001364946 ], [ 363139.471400000154972, 257221.237100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88265362, "LATITUDE": 18.34377471, "OBJECTID_1": 21858, "PARCEL_NO_": "105701012500", "Tax_Legal_": "ANNAS RETREAT 24A NEW QUARTER", "Name": "WILLIAMS, NEVILLE N. & JOANNA B.", "Address": "PO Box 307634", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66200, "Improved_V": 91500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.498927995, "SHAPE_Area": 2122.3176803400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363937.367600001394749, 257174.571899998933077 ], [ 363905.23200000077486, 257160.587799999862909 ], [ 363897.892399996519089, 257170.238000001758337 ], [ 363891.389799997210503, 257176.306499999016523 ], [ 363864.63400000333786, 257193.397199999541044 ], [ 363896.616800002753735, 257225.322999998927116 ], [ 363904.793200001120567, 257212.090999998152256 ], [ 363906.414800003170967, 257211.048900000751019 ], [ 363909.681400001049042, 257206.220400001853704 ], [ 363911.301299996674061, 257205.389299999922514 ], [ 363937.367600001394749, 257174.571899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601041000", "MAP": "A9-38-T65", "PARCEL_NAM": "146-12", "ACRE": "0.20", "LONGITUDE": -64.89785277, "LATITUDE": 18.3439094, "OBJECTID_1": 20706, "PARCEL_NO_": "105601041000", "Tax_Legal_": "146-12 ANNAS RETREAT NO 1 NEW QTR", "Name": "JUDY PENHA ROHAN", "Address": "PO BOX 9296", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 141500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.40464649899999, "SHAPE_Area": 778.019110576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362311.50900000333786, 257200.317299999296665 ], [ 362299.6570999994874, 257171.722699999809265 ], [ 362277.793099999427795, 257182.520599998533726 ], [ 362288.027000002563, 257211.735300000756979 ], [ 362311.50900000333786, 257200.317299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601032700", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-19", "ACRE": ".190", "LONGITUDE": -64.89451996, "LATITUDE": 18.34395836, "OBJECTID_1": 20640, "PARCEL_NO_": "105601032700", "Tax_Legal_": "129A-19 ANNAS RETREAT NEW QTR", "Name": "WILKES, RANDOLPH & DIANA", "Address": "PO Box 8184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26000, "Improved_V": 177800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.6892231, "SHAPE_Area": 1025.4956609000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362636.609399996697903, 257184.613000001758337 ], [ 362617.058300003409386, 257207.884399998933077 ], [ 362634.779100000858307, 257210.140299998223782 ], [ 362667.00110000371933, 257213.992600001394749 ], [ 362667.051399998366833, 257208.082400001585484 ], [ 362671.171099998056889, 257197.772599998861551 ], [ 362672.799900002777576, 257195.886100001633167 ], [ 362638.238200001418591, 257182.726500000804663 ], [ 362636.609399996697903, 257184.613000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701055200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87481223, "LATITUDE": 18.34389793, "OBJECTID_1": 22150, "PARCEL_NO_": "105701055200", "Tax_Legal_": "SMITH BAY 50 EAST END QTRC", "Name": "RYLAND HUYGHUE a/k/a RYLAND A HUYGHE FAMILY REVOCABLE TRUST", "Address": "6752 ESTATE SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021343, "Country": "United States", "Land_Value": 26000, "Improved_V": 200700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.01107112400001, "SHAPE_Area": 1107.7948327900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364715.405199997127056, 257187.272599998861551 ], [ 364702.33330000191927, 257207.219500001519918 ], [ 364702.299199998378754, 257211.230000000447035 ], [ 364703.89919999986887, 257212.72069999948144 ], [ 364731.238300003111362, 257221.810400001704693 ], [ 364751.329599998891354, 257229.785300001502037 ], [ 364756.972000002861023, 257230.042599998414516 ], [ 364761.014300003647804, 257228.809099998325109 ], [ 364764.266599997878075, 257225.669300001114607 ], [ 364740.237199999392033, 257206.685300000011921 ], [ 364715.405199997127056, 257187.272599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601016700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-71", "ACRE": ".122", "LONGITUDE": -64.89714156, "LATITUDE": 18.34394005, "OBJECTID_1": 20504, "PARCEL_NO_": "105601016700", "Tax_Legal_": "146-71 ANNAS RETREAT 1 NEW QTR", "Name": "HODGE, BRIDGET", "Address": "46071 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.979640246399995, "SHAPE_Area": 547.64052681800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362384.05009999871254, 257204.077500000596046 ], [ 362376.98929999768734, 257181.010499998927116 ], [ 362366.48030000180006, 257184.090900000184774 ], [ 362354.338899999856949, 257189.479899998754263 ], [ 362362.227600000798702, 257210.020599998533726 ], [ 362380.817699998617172, 257204.895399998873472 ], [ 362384.05009999871254, 257204.077500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602074300", "MAP": "C9-254-T80", "PARCEL_NAM": "394-A-25", "ACRE": "0.14", "LONGITUDE": -64.88538844, "LATITUDE": 18.34389459, "OBJECTID_1": 21352, "PARCEL_NO_": "105602074300", "Tax_Legal_": "394-A-25 ANNAS RETREAT NEW QTR.", "Name": "RICHARDSON, ATCHLEY N", "Address": "PO Box 8464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 133800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.120323841, "SHAPE_Area": 567.47234794799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363623.575400002300739, 257188.046799998730421 ], [ 363607.501299999654293, 257181.793499998748302 ], [ 363599.960299998521805, 257215.084600001573563 ], [ 363616.045199997723103, 257220.071400001645088 ], [ 363623.575400002300739, 257188.046799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044400", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-25", "ACRE": "0.23", "LONGITUDE": -64.88930732, "LATITUDE": 18.34377849, "OBJECTID_1": 21222, "PARCEL_NO_": "105602044400", "Tax_Legal_": "143A-25 ANNAS RETREAT NEW QTR", "Name": "HARRIGAN, CECIL & BERNICE", "Address": "PO Box 502326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.92913692100001, "SHAPE_Area": 1095.9656052 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363211.420199997723103, 257199.87220000103116 ], [ 363200.540100000798702, 257151.864900000393391 ], [ 363188.43639999628067, 257152.821299999952316 ], [ 363187.986800000071526, 257205.590999998152256 ], [ 363191.174300000071526, 257210.05009999871254 ], [ 363192.73480000346899, 257216.184599999338388 ], [ 363198.400600001215935, 257213.697799999266863 ], [ 363204.068099997937679, 257211.0 ], [ 363208.135600000619888, 257206.8114 ], [ 363211.420199997723103, 257199.87220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602085200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89091977, "LATITUDE": 18.34530774, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.7752403028, "SHAPE_Area": 355.22280831299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363039.108199998736382, 257359.737399999052286 ], [ 363023.16889999806881, 257337.653200000524521 ], [ 363012.605999998748302, 257347.065999999642372 ], [ 363028.563199996948242, 257367.03940000012517 ], [ 363039.108199998736382, 257359.737399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602085000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89071927000001, "LATITUDE": 18.34513062, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.743578465799999, "SHAPE_Area": 478.70829336499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363058.574799999594688, 257346.386700000613928 ], [ 363049.165100000798702, 257315.067899998277426 ], [ 363044.321900002658367, 257315.661499999463558 ], [ 363034.565200001001358, 257325.080899998545647 ], [ 363048.839699998497963, 257353.273200001567602 ], [ 363056.146799996495247, 257347.4222999997437 ], [ 363058.574799999594688, 257346.386700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702068000", "MAP": "D9-1585-T80", "PARCEL_NAM": "57-117C", "ACRE": ".23", "LONGITUDE": -64.87164913, "LATITUDE": 18.3445193, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.37723744900001, "SHAPE_Area": 1233.40762163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365089.391000002622604, 257301.790899999439716 ], [ 365054.33049999922514, 257252.530200000852346 ], [ 365039.85639999806881, 257247.767700001597404 ], [ 365050.09570000320673, 257276.34910000115633 ], [ 365056.396999999880791, 257293.921500001102686 ], [ 365062.694600000977516, 257311.916000001132488 ], [ 365082.924300000071526, 257303.637800000607967 ], [ 365089.391000002622604, 257301.790899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-395-T63", "PARCEL_NAM": "143-7", "ACRE": ".17", "LONGITUDE": -64.89289248, "LATITUDE": 18.34461965, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.851533898499994, "SHAPE_Area": 493.00516873399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362826.258900001645088, 257261.314500000327826 ], [ 362808.523699998855591, 257260.747099999338388 ], [ 362809.101599998772144, 257287.5608000010252 ], [ 362827.635999999940395, 257288.978999998420477 ], [ 362826.258900001645088, 257261.314500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502012000", "MAP": "D9-3628-T86", "PARCEL_NAM": "217", "ACRE": "1.84", "LONGITUDE": -64.90120916, "LATITUDE": 18.34411705, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 404.62288133300001, "SHAPE_Area": 8762.5300048000008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362009.008699998259544, 257213.462400000542402 ], [ 361982.966899998486042, 257146.754799999296665 ], [ 361965.16330000013113, 257154.208500001579523 ], [ 361953.820900000631809, 257160.448499999940395 ], [ 361944.085799999535084, 257167.334899999201298 ], [ 361929.464299999177456, 257179.880800001323223 ], [ 361912.418499998748302, 257193.040199998766184 ], [ 361896.196900002658367, 257204.095400001853704 ], [ 361879.174500003457069, 257214.51069999858737 ], [ 361869.457299999892712, 257219.286400001496077 ], [ 361885.101700000464916, 257275.987500000745058 ], [ 361957.189000003039837, 257238.369500000029802 ], [ 362009.008699998259544, 257213.462400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702040500", "MAP": "F9-799-T61", "PARCEL_NAM": "82", "ACRE": null, "LONGITUDE": -64.87399546, "LATITUDE": 18.34437728, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.16597944, "SHAPE_Area": 1184.0467792500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364832.351800002157688, 257279.211100000888109 ], [ 364831.01969999819994, 257246.269600000232458 ], [ 364797.959100000560284, 257246.210099998861551 ], [ 364803.243600003421307, 257288.471999999135733 ], [ 364832.351800002157688, 257279.211100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-395-T63", "PARCEL_NAM": "143-4", "ACRE": ".17", "LONGITUDE": -64.89287762, "LATITUDE": 18.34428795, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.69501629, "SHAPE_Area": 612.32095540700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362830.610600002110004, 257223.775400001555681 ], [ 362809.6537000015378, 257222.75959999859333 ], [ 362809.400100000202656, 257252.521699998527765 ], [ 362829.550700001418591, 257253.530999999493361 ], [ 362830.610600002110004, 257223.775400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87040341, "LATITUDE": 18.34396498, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.06456797499999, "SHAPE_Area": 3863.3648626999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365192.052699998021126, 257177.452599998563528 ], [ 365185.692100003361702, 257166.845899999141693 ], [ 365158.762000001966953, 257204.411200001835823 ], [ 365176.232900001108646, 257236.007199998944998 ], [ 365195.296700000762939, 257269.938200000673532 ], [ 365217.1587999984622, 257259.351300001144409 ], [ 365226.88849999755621, 257253.098200000822544 ], [ 365236.634400002658367, 257244.945300001651049 ], [ 365219.913999997079372, 257219.899399999529123 ], [ 365205.587399996817112, 257197.828400000929832 ], [ 365192.052699998021126, 257177.452599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701017100", "MAP": "G9-2938-T79", "PARCEL_NAM": "7-2", "ACRE": ".50", "LONGITUDE": -64.8810085, "LATITUDE": 18.34390323, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.568673483, "SHAPE_Area": 2665.5322269500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364103.884099997580051, 257221.74210000038147 ], [ 364097.4712999984622, 257217.256599999964237 ], [ 364090.297200001776218, 257207.48759999871254 ], [ 364087.966399997472763, 257197.124899998307228 ], [ 364088.259499996900558, 257162.719099998474121 ], [ 364059.154899999499321, 257171.557900000363588 ], [ 364056.680299997329712, 257178.081500001251698 ], [ 364052.361000001430511, 257211.821199998259544 ], [ 364054.661200001835823, 257225.772199999541044 ], [ 364057.846900001168251, 257230.442299999296665 ], [ 364082.693400003015995, 257248.166400000452995 ], [ 364103.884099997580051, 257221.74210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702063100", "MAP": "D9-1113-T73", "PARCEL_NAM": "57X-1", "ACRE": ".57", "LONGITUDE": -64.87233605, "LATITUDE": 18.3435847, "OBJECTID_1": 22677, "PARCEL_NO_": "105702063100", "Tax_Legal_": "57X-1 ESTATE SMITH BAY 1,2&3 EASTEND QTR.", "Name": "FRANCIS, LOUISE", "Address": "274 Upper Depew Ave", "City": "Nyack", "State": "New York", "Zip": 10960, "Country": "United States", "Land_Value": 72700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.82110609099999, "SHAPE_Area": 2046.8263255300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365008.009900003671646, 257143.339999999850988 ], [ 364987.701399996876717, 257135.224800001829863 ], [ 364986.743299998342991, 257140.51969999819994 ], [ 364985.998400002717972, 257142.811299998313189 ], [ 364978.462600000202656, 257165.994199998676777 ], [ 364976.821199998259544, 257169.358300000429153 ], [ 364971.906000003218651, 257178.395100001245737 ], [ 364966.998000003397465, 257186.587499998509884 ], [ 364974.204499997198582, 257192.557100001722574 ], [ 364987.76799999922514, 257209.555599998682737 ], [ 364994.927699998021126, 257221.013300001621246 ], [ 364996.527699999511242, 257222.504000000655651 ], [ 364997.308799996972084, 257225.465700000524521 ], [ 365000.490900002419949, 257230.55799999833107 ], [ 365002.114399999380112, 257229.304800000041723 ], [ 365003.010600000619888, 257218.757399998605251 ], [ 365005.117700003087521, 257160.723900001496077 ], [ 365006.471100002527237, 257151.868900001049042 ], [ 365006.825599998235703, 257149.549899999052286 ], [ 365007.8716000020504, 257144.065000001341105 ], [ 365008.009900003671646, 257143.339999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602075400", "MAP": "D9--1956-T82", "PARCEL_NAM": "394A-47", "ACRE": ".14", "LONGITUDE": -64.88347635, "LATITUDE": 18.3439054, "OBJECTID_1": 21363, "PARCEL_NO_": "105602075400", "Tax_Legal_": "394A-47 ANNAS RETREAT NEW QTR.", "Name": "GEORGE, MILDRED M & IVOR ( LIFE ESTATE)", "Address": "PO Box 304205", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21800, "Improved_V": 134200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.620536578599996, "SHAPE_Area": 538.792204932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363823.485100001096725, 257196.226799998432398 ], [ 363813.096600003540516, 257185.16499999910593 ], [ 363798.379699997603893, 257208.89809999987483 ], [ 363817.637699998915195, 257220.032600000500679 ], [ 363825.772799998521805, 257211.6554000005126 ], [ 363823.485100001096725, 257196.226799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601030800", "MAP": "A9-38-T65", "PARCEL_NAM": "146-155", "ACRE": ".136", "LONGITUDE": -64.89631348, "LATITUDE": 18.34389507, "OBJECTID_1": 20621, "PARCEL_NO_": "105601030800", "Tax_Legal_": "ANNAS RETREAT 146-155 1 NEW QTR", "Name": "FERRELL, ROBERT & MONIQUE", "Address": "6622 Dublee Ct", "City": "Lorton", "State": "Virginia", "Zip": 22079, "Country": "United States", "Land_Value": 20800, "Improved_V": 160200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.063396470599997, "SHAPE_Area": 492.57997997299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362467.272900000214577, 257184.493599999696016 ], [ 362462.501599997282028, 257176.644099999219179 ], [ 362441.433200001716614, 257188.71510000154376 ], [ 362443.8108000010252, 257193.589699998497963 ], [ 362447.007200002670288, 257196.993400000035763 ], [ 362453.369599997997284, 257207.388999998569489 ], [ 362472.038900002837181, 257192.976399999111891 ], [ 362467.272900000214577, 257184.493599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601016500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-5", "ACRE": ".144", "LONGITUDE": -64.89671763, "LATITUDE": 18.34385698, "OBJECTID_1": 20502, "PARCEL_NO_": "105601016500", "Tax_Legal_": "146-5 ANNAS RETREAT NEW QUARTER", "Name": "DICKENSON, JACQUELINE", "Address": "PO Box 307245", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.92059105, "SHAPE_Area": 689.50916819600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362401.227300003170967, 257175.509300000965595 ], [ 362402.660099998116493, 257196.630399998277426 ], [ 362413.862099997699261, 257206.854600001126528 ], [ 362430.152000002563, 257187.778400000184774 ], [ 362423.022900000214577, 257172.732400000095367 ], [ 362420.616499997675419, 257171.234999999403954 ], [ 362417.393100000917912, 257170.997600000351667 ], [ 362401.227300003170967, 257175.509300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702050100", "MAP": null, "PARCEL_NAM": "45", "ACRE": null, "LONGITUDE": -64.87452032, "LATITUDE": 18.34384968, "OBJECTID_1": 22597, "PARCEL_NO_": "105702050100", "Tax_Legal_": "SMITH BAY 45 EAST END QTR", "Name": "PIERRE, WISNER & DENISE", "Address": "3G-1 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 110700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.51835301600001, "SHAPE_Area": 806.86814403899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364780.560000002384186, 257206.171000000089407 ], [ 364757.349600002169609, 257185.715999998152256 ], [ 364740.237199999392033, 257206.685300000011921 ], [ 364764.266599997878075, 257225.669300001114607 ], [ 364769.964699998497963, 257219.383200000971556 ], [ 364773.23309999704361, 257214.343699999153614 ], [ 364774.854699999094009, 257213.301500000059605 ], [ 364775.677199997007847, 257211.408399999141693 ], [ 364777.298799999058247, 257210.366200000047684 ], [ 364778.938400000333786, 257207.213199999183416 ], [ 364780.560000002384186, 257206.171000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601032600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-18", "ACRE": ".183", "LONGITUDE": -64.89472526, "LATITUDE": 18.3437582, "OBJECTID_1": 20639, "PARCEL_NO_": "105601032600", "Tax_Legal_": "129A-18 ANNAS RETREAT NEW QTR", "Name": "HERBERT, VIDA", "Address": "5232 Prestwick St", "City": "Virginia Beach", "State": "Virginia", "Zip": 23464, "Country": "United States", "Land_Value": 24700, "Improved_V": 52300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.631378732, "SHAPE_Area": 672.06717378799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362636.609399996697903, 257184.613000001758337 ], [ 362628.022200003266335, 257151.401000000536442 ], [ 362623.168200001120567, 257153.261100001633167 ], [ 362619.136600002646446, 257153.228100001811981 ], [ 362617.167900003492832, 257195.008499998599291 ], [ 362617.058300003409386, 257207.884399998933077 ], [ 362636.609399996697903, 257184.613000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602074200", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-24", "ACRE": "0.14", "LONGITUDE": -64.88555047, "LATITUDE": 18.34385502, "OBJECTID_1": 21351, "PARCEL_NO_": "105602074200", "Tax_Legal_": "394A-24 ANNAS RETREAT NEW QTR.", "Name": "WILLIAMS, REGINALD", "Address": "8218 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.86361561, "SHAPE_Area": 617.342577549 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363607.501299999654293, 257181.793499998748302 ], [ 363600.255300000309944, 257180.467599999159575 ], [ 363588.970499999821186, 257179.953099999576807 ], [ 363581.45830000191927, 257209.866900000721216 ], [ 363599.960299998521805, 257215.084600001573563 ], [ 363607.501299999654293, 257181.793499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601016600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-70", "ACRE": ".120", "LONGITUDE": -64.89693754, "LATITUDE": 18.34388092, "OBJECTID_1": 20503, "PARCEL_NO_": "105601016600", "Tax_Legal_": "146-70 ANNAS RETREAT 1 NEW QTR", "Name": "ST LOUIS, MARGARET J", "Address": "46070 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 99600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.2564576929, "SHAPE_Area": 521.26184192200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362401.227300003170967, 257175.509300000965595 ], [ 362376.98929999768734, 257181.010499998927116 ], [ 362384.05009999871254, 257204.077500000596046 ], [ 362401.83219999819994, 257199.156700000166893 ], [ 362402.660099998116493, 257196.630399998277426 ], [ 362401.227300003170967, 257175.509300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701068000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88043805, "LATITUDE": 18.34388237, "OBJECTID_1": 22239, "PARCEL_NO_": "105701068000", "Tax_Legal_": "ANNAS RETREAT 173D NEW QTR.", "Name": "CASTOR, GERALD", "Address": "PO Box 9435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.112938038, "SHAPE_Area": 735.63611848799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364151.5337999984622, 257213.054999999701977 ], [ 364142.120600000023842, 257182.158300001174212 ], [ 364131.570200003683567, 257190.093499999493361 ], [ 364114.421899996697903, 257215.284400001168251 ], [ 364122.465199999511242, 257217.6722999997437 ], [ 364130.524700000882149, 257218.160399999469519 ], [ 364138.598700001835823, 257216.959899999201298 ], [ 364151.5337999984622, 257213.054999999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601031100", "MAP": "B9-156-T67", "PARCEL_NAM": "155-3", "ACRE": ".143", "LONGITUDE": -64.89608063, "LATITUDE": 18.34382941, "OBJECTID_1": 20624, "PARCEL_NO_": "105601031100", "Tax_Legal_": "155-3 ANNAS RETREAT NEW QTR", "Name": "GLORIA H. DAVIS (LIFE ESTATE)", "Address": "PO Box 10946", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 104800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.980776195100006, "SHAPE_Area": 560.83579091900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362497.126299999654293, 257182.415899999439716 ], [ 362491.532499998807907, 257176.459499999880791 ], [ 362484.369099996984005, 257165.4239999987185 ], [ 362467.272900000214577, 257184.493599999696016 ], [ 362472.038900002837181, 257192.976399999111891 ], [ 362478.395900003612041, 257204.005300000309944 ], [ 362497.126299999654293, 257182.415899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702063800", "MAP": "F9-3708-T79", "PARCEL_NAM": "57T-8", "ACRE": "0.26", "LONGITUDE": -64.87119429000001, "LATITUDE": 18.3437977, "OBJECTID_1": 22682, "PARCEL_NO_": "105702063800", "Tax_Legal_": "SMITH BAY 57T-8 EAST END QTR", "Name": "TRUST AGREEMENT OF DOROTHY M SEWER", "Address": "PO Box 303297", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40500, "Improved_V": 99500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.179855992, "SHAPE_Area": 1205.6642558599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365131.232199996709824, 257217.695900000631809 ], [ 365121.885600000619888, 257178.98930000141263 ], [ 365098.452200002968311, 257184.708099998533726 ], [ 365095.702299997210503, 257223.526799999177456 ], [ 365101.3429000005126, 257223.995200000703335 ], [ 365111.02589999884367, 257223.230099998414516 ], [ 365131.232199996709824, 257217.695900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043600", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-33", "ACRE": "0.23", "LONGITUDE": -64.89131318, "LATITUDE": 18.34382283, "OBJECTID_1": 21214, "PARCEL_NO_": "105602043600", "Tax_Legal_": "143A-33 ANNAS RETREAT NEW QTR", "Name": "GEMS INVESTMENTS LLC", "Address": "PO BOX 9800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 212600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.345845602, "SHAPE_Area": 767.55254150300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362998.506999999284744, 257203.618099998682737 ], [ 362995.5658999979496, 257170.241200000047684 ], [ 362976.190999999642372, 257172.826799999922514 ], [ 362970.519799999892712, 257175.946800000965595 ], [ 362978.324000000953674, 257206.40819999948144 ], [ 362998.506999999284744, 257203.618099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702063900", "MAP": "F9-3497-T77", "PARCEL_NAM": "57T-7", "ACRE": "0.23", "LONGITUDE": -64.87146691, "LATITUDE": 18.34378609, "OBJECTID_1": 22683, "PARCEL_NO_": "105702063900", "Tax_Legal_": "SMITH BAY 57T-7 EAST END QTR", "Name": "ROBINSON, HENRY & FLORENCE", "Address": "509 Santa Fe Dr", "City": "Fayetteville", "State": "North Carolina", "Zip": 28303, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.36745295099999, "SHAPE_Area": 1106.1775656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365098.452200002968311, 257184.708099998533726 ], [ 365073.508599996566772, 257178.38230000063777 ], [ 365065.924500003457069, 257216.739199999719858 ], [ 365082.011200003325939, 257221.514899998903275 ], [ 365095.702299997210503, 257223.526799999177456 ], [ 365098.452200002968311, 257184.708099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701067900", "MAP": "C9-273-T81", "PARCEL_NAM": "173B-99", "ACRE": "0.26", "LONGITUDE": -64.88064791, "LATITUDE": 18.34379149, "OBJECTID_1": 22238, "PARCEL_NO_": "105701067900", "Tax_Legal_": "ANNAS RETREAT 173B-99 NEW QTR", "Name": "CASTOR, RUFUS", "Address": "PO Box 9435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.008880805, "SHAPE_Area": 835.54658564 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364128.38629999756813, 257185.21229999884963 ], [ 364126.0050999969244, 257180.759899999946356 ], [ 364098.610299997031689, 257178.213599998503923 ], [ 364098.462899997830391, 257195.522100001573563 ], [ 364101.601800002157688, 257205.680300001055002 ], [ 364105.595600001513958, 257210.145899999886751 ], [ 364114.421899996697903, 257215.284400001168251 ], [ 364131.570200003683567, 257190.093499999493361 ], [ 364128.38629999756813, 257185.21229999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601041100", "MAP": "A9-38-T65", "PARCEL_NAM": "146-11", "ACRE": "0.16", "LONGITUDE": -64.89766035, "LATITUDE": 18.34381624, "OBJECTID_1": 20707, "PARCEL_NO_": "105601041100", "Tax_Legal_": "ANNAS RETREAT 146-11 1 NEW QTR", "Name": "DUNCAN, ANOLA & RIVIERE, BRIAN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 115900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.712226098, "SHAPE_Area": 629.85154982200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362330.133299998939037, 257191.181699998676777 ], [ 362317.473300002515316, 257162.791499998420477 ], [ 362299.6570999994874, 257171.722699999809265 ], [ 362311.50900000333786, 257200.317299999296665 ], [ 362330.133299998939037, 257191.181699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602074100", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-23", "ACRE": "0.14", "LONGITUDE": -64.88572993, "LATITUDE": 18.3438294, "OBJECTID_1": 21350, "PARCEL_NO_": "105602074100", "Tax_Legal_": "ANNAS RETREAT 394A-23 NEW QTR", "Name": "CASTOR, JOSEPHINE & JULIET ANN", "Address": "PO Box 503281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.10783910400001, "SHAPE_Area": 574.62185861800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363588.970499999821186, 257179.953099999576807 ], [ 363581.726199999451637, 257178.41609999909997 ], [ 363576.107199996709824, 257175.414799999445677 ], [ 363558.931900002062321, 257203.771899998188019 ], [ 363581.45830000191927, 257209.866900000721216 ], [ 363588.970499999821186, 257179.953099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601061100", "MAP": "D9-7491-T004", "PARCEL_NAM": "404-11", "ACRE": ".13", "LONGITUDE": -64.89228469, "LATITUDE": 18.34387136, "OBJECTID_1": 20847, "PARCEL_NO_": "105601061100", "Tax_Legal_": "404-11 ANNAS RETREAT NEW QTR", "Name": "PEREIRA, ASHAKY L. & BEVERLY CARR", "Address": "PO Box 11551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 90800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.635219350300005, "SHAPE_Area": 577.25866982699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362897.752099998295307, 257198.782699998468161 ], [ 362897.068099997937679, 257184.422699999064207 ], [ 362869.689400002360344, 257179.976700000464916 ], [ 362868.697899997234344, 257201.711300000548363 ], [ 362892.871100001037121, 257203.808899998664856 ], [ 362892.887299999594688, 257201.909200001507998 ], [ 362897.728699997067451, 257201.526700001209974 ], [ 362897.752099998295307, 257198.782699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044300", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-26", "ACRE": "0.34", "LONGITUDE": -64.88955481000001, "LATITUDE": 18.34368345, "OBJECTID_1": 21221, "PARCEL_NO_": "105602044300", "Tax_Legal_": "143 A 26 ANNAS RETREAT NEW QTR", "Name": "HARRIGAN, CECIL & B", "Address": "PO Box 502326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 52900, "Improved_V": 283500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.539981402, "SHAPE_Area": 1413.06332236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363188.43639999628067, 257152.821299999952316 ], [ 363159.387500002980232, 257155.116700001060963 ], [ 363152.125299997627735, 257155.690600000321865 ], [ 363152.63849999755621, 257190.103000000119209 ], [ 363160.707099996507168, 257189.535799998790026 ], [ 363171.973899997770786, 257192.161100000143051 ], [ 363181.601099997758865, 257197.939399998635054 ], [ 363185.600299999117851, 257201.771800000220537 ], [ 363187.986800000071526, 257205.590999998152256 ], [ 363188.43639999628067, 257152.821299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701068100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88021104000001, "LATITUDE": 18.34378347, "OBJECTID_1": 22240, "PARCEL_NO_": "105701068100", "Tax_Legal_": "ANNAS RETREAT 173D-2 NEW QTR.", "Name": "LUKE, MAXIMEA (LIFE ESTATE)", "Address": "PO Box 502953", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 35100, "Improved_V": 386800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.38280573, "SHAPE_Area": 883.88816839799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364178.206900000572205, 257205.6739999987185 ], [ 364163.966600000858307, 257173.471200000494719 ], [ 364160.726899996399879, 257175.133400000631809 ], [ 364154.274599999189377, 257175.291700001806021 ], [ 364150.232299998402596, 257176.525199998170137 ], [ 364142.120600000023842, 257182.158300001174212 ], [ 364151.5337999984622, 257213.054999999701977 ], [ 364178.206900000572205, 257205.6739999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701016800", "MAP": "C9-260-T80", "PARCEL_NAM": "7-5", "ACRE": ".51", "LONGITUDE": -64.87911881, "LATITUDE": 18.3436913, "OBJECTID_1": 21897, "PARCEL_NO_": "105701016800", "Tax_Legal_": "7-5 TABOR&HARMONY EAST END QTR", "Name": "SAMUEL, GLORIA A. (LIFE ESTATE)", "Address": "PO Box 12356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73300, "Improved_V": 343800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.77978780199999, "SHAPE_Area": 1716.2066324100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364303.36150000244379, 257186.011100001633167 ], [ 364296.232299998402596, 257170.96510000154376 ], [ 364291.441299997270107, 257165.437600001692772 ], [ 364285.04900000244379, 257160.765900000929832 ], [ 364279.733000002801418, 257160.030699998140335 ], [ 364272.171599999070168, 257162.082100000232458 ], [ 364253.686899997293949, 257177.71339999884367 ], [ 364249.152099996805191, 257181.548200000077486 ], [ 364240.997599996626377, 257187.785399999469519 ], [ 364242.841300003230572, 257191.004200000315905 ], [ 364244.988899998366833, 257194.273699998855591 ], [ 364249.038400001823902, 257192.195900000631809 ], [ 364253.070000000298023, 257192.228900000452995 ], [ 364257.089000001549721, 257193.739500001072884 ], [ 364260.290899999439716, 257196.509899999946356 ], [ 364262.670199997723103, 257201.17339999973774 ], [ 364262.616300001740456, 257207.505800001323223 ], [ 364266.030199997127056, 257213.99210000038147 ], [ 364303.36150000244379, 257186.011100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043700", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-32", "ACRE": "0.19", "LONGITUDE": -64.89108643, "LATITUDE": 18.34379664, "OBJECTID_1": 21215, "PARCEL_NO_": "105602043700", "Tax_Legal_": "ANNAS RETREAT 143A-32 NEW QTR", "Name": "RAWLINS, CASPER & FRANCES A.", "Address": "PO Box 7452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 284400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.32859335099999, "SHAPE_Area": 852.22703054199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363022.7179000005126, 257201.283100001513958 ], [ 363021.398400001227856, 257166.864000000059605 ], [ 362995.5658999979496, 257170.241200000047684 ], [ 362998.506999999284744, 257203.618099998682737 ], [ 363013.034999996423721, 257202.048200000077486 ], [ 363022.7179000005126, 257201.283100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601045000", "MAP": "B9-156-T67", "PARCEL_NAM": "155-1", "ACRE": "3.0", "LONGITUDE": -64.89529903, "LATITUDE": 18.34330014, "OBJECTID_1": 20744, "PARCEL_NO_": "105601045000", "Tax_Legal_": "155-1 ANNAS RETREAT 1 NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 476.98118566599999, "SHAPE_Area": 11783.7101502 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362619.004600003361702, 257074.06700000166893 ], [ 362618.566899999976158, 257030.789200000464916 ], [ 362612.111000001430511, 257031.369699999690056 ], [ 362603.218199998140335, 257034.04109999909997 ], [ 362591.866899996995926, 257041.336500000208616 ], [ 362589.426399998366833, 257043.849599998444319 ], [ 362564.92230000346899, 257080.590399999171495 ], [ 362564.0962999984622, 257082.905699998140335 ], [ 362561.659299999475479, 257084.996700000017881 ], [ 362560.83500000089407, 257087.100900001823902 ], [ 362555.948600001633167, 257092.760400000959635 ], [ 362545.381999999284744, 257102.595300000160933 ], [ 362517.810999996960163, 257120.7347999997437 ], [ 362508.06870000064373, 257128.465500000864267 ], [ 362491.859700001776218, 257138.043200001120567 ], [ 362487.797600001096725, 257141.598499998450279 ], [ 362486.975100003182888, 257143.491599999368191 ], [ 362489.311300002038479, 257153.221000000834465 ], [ 362494.055699996650219, 257164.236699998378754 ], [ 362503.628899998962879, 257176.34739999845624 ], [ 362514.039099998772144, 257184.876400001347065 ], [ 362523.669900000095367, 257190.232500001788139 ], [ 362536.529500000178814, 257195.192899998277426 ], [ 362551.016199998557568, 257198.477899998426437 ], [ 362566.328900001943111, 257199.447599999606609 ], [ 362572.811800003051758, 257195.7010000012815 ], [ 362576.07660000026226, 257191.083599999547005 ], [ 362581.119400002062321, 257167.060300000011921 ], [ 362585.203199997544289, 257160.971999999135733 ], [ 362591.707599997520447, 257154.692400000989437 ], [ 362610.349899999797344, 257143.445900000631809 ], [ 362615.24889999628067, 257136.308800000697374 ], [ 362620.115599997341633, 257132.971200000494719 ], [ 362618.983000002801418, 257076.599899999797344 ], [ 362619.004600003361702, 257074.06700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601035600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-69", "ACRE": ".177", "LONGITUDE": -64.89252135, "LATITUDE": 18.34378061, "OBJECTID_1": 20665, "PARCEL_NO_": "105601035600", "Tax_Legal_": "129-69 ANNAS RETREAT NEW QTR", "Name": "HODGE, REGINALD & BERNICE", "Address": "PO Box 302141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26000, "Improved_V": 216000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.35376201, "SHAPE_Area": 795.97733433799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362869.689400002360344, 257179.976700000464916 ], [ 362870.634199999272823, 257163.73030000180006 ], [ 362870.693499997258186, 257156.764699999243021 ], [ 362836.57660000026226, 257186.038499999791384 ], [ 362837.350599996745586, 257189.8445999994874 ], [ 362868.697899997234344, 257201.711300000548363 ], [ 362869.689400002360344, 257179.976700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88145795, "LATITUDE": 18.34368842, "OBJECTID_1": 21863, "PARCEL_NO_": "105701013000", "Tax_Legal_": "ANNAS RETREAT ESTATE 3B REM. NEW QUARTER", "Name": "COTTON, RICALDO R. & SONIA M", "Address": "PO Box 9323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.524753551, "SHAPE_Area": 2177.4603858199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364051.987999998033047, 257160.944600000977516 ], [ 364021.472199998795986, 257146.129399999976158 ], [ 363998.386600002646446, 257205.679900001734495 ], [ 364043.502300001680851, 257210.482099998742342 ], [ 364046.981100000441074, 257180.746399998664856 ], [ 364051.987999998033047, 257160.944600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043800", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-31", "ACRE": "0.19", "LONGITUDE": -64.89085943000001, "LATITUDE": 18.34377231, "OBJECTID_1": 21216, "PARCEL_NO_": "105602043800", "Tax_Legal_": "143A-31 ANNAS RETREAT NEW QTR", "Name": "RICHARDSON, DOROTHY", "Address": "P.O. BOX 1723", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28200, "Improved_V": 181100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.952816387, "SHAPE_Area": 804.23302730099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363045.312700003385544, 257199.357099998742342 ], [ 363044.806699998676777, 257164.100299999117851 ], [ 363035.928199999034405, 257165.083099998533726 ], [ 363021.398400001227856, 257166.864000000059605 ], [ 363022.7179000005126, 257201.283100001513958 ], [ 363045.312700003385544, 257199.357099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702063700", "MAP": "F9-3708-T79", "PARCEL_NAM": "57T-9", "ACRE": "0.26", "LONGITUDE": -64.87092373, "LATITUDE": 18.34370878, "OBJECTID_1": 22681, "PARCEL_NO_": "105702063700", "Tax_Legal_": "SMITH BAY 57T-9 EAST END QTR", "Name": "SALEM, TAHIEH", "Address": "6100 Red Hook Quarter", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84900, "Improved_V": 309600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.80891974799999, "SHAPE_Area": 1137.49497342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365158.762000001966953, 257204.411200001835823 ], [ 365158.020400002598763, 257196.805799998342991 ], [ 365156.477899998426437, 257188.560499999672174 ], [ 365150.973899997770786, 257172.050200000405312 ], [ 365121.885600000619888, 257178.98930000141263 ], [ 365131.232199996709824, 257217.695900000631809 ], [ 365144.986299999058247, 257212.320000000298023 ], [ 365158.762000001966953, 257204.411200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701068900", "MAP": "C9-273-T81", "PARCEL_NAM": "173B-109", "ACRE": "0.23", "LONGITUDE": -64.87863707, "LATITUDE": 18.343608, "OBJECTID_1": 22247, "PARCEL_NO_": "105701068900", "Tax_Legal_": "ANNAS RETREAT 173B-109 NEW QTR.", "Name": "BACHAN, D., R., C. & S. & GONZALEZ, C.D., E.D. & S", "Address": "6109 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 221800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.047704025, "SHAPE_Area": 1166.6559317799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364335.876199997961521, 257146.875199999660254 ], [ 364332.707099996507168, 257148.887800000607967 ], [ 364305.141400001943111, 257166.394000001251698 ], [ 364320.218599997460842, 257195.015000000596046 ], [ 364324.962899997830391, 257206.030699998140335 ], [ 364327.344099998474121, 257210.483199998736382 ], [ 364330.388199999928474, 257215.211800001561642 ], [ 364330.792526607518084, 257214.940153673844179 ], [ 364331.147047316655517, 257214.606107569677988 ], [ 364331.442237847135402, 257214.21863591435249 ], [ 364331.670167837524787, 257213.788148222956806 ], [ 364331.82471389620332, 257213.326209646213101 ], [ 364331.901724107854534, 257212.845230270089814 ], [ 364331.899129575467668, 257212.358131716027856 ], [ 364331.81700000166893, 257211.877999998629093 ], [ 364331.522299432603177, 257206.156396314152516 ], [ 364331.681398875021841, 257200.4294176591211 ], [ 364332.293300002813339, 257194.732999999076128 ], [ 364335.125915856275242, 257184.938425549713429 ], [ 364337.561402246996295, 257175.037627235520631 ], [ 364339.595799997448921, 257165.046700000762939 ], [ 364339.929273915942758, 257161.241692025912926 ], [ 364339.6907814789447, 257157.429551957611693 ], [ 364338.885671394877136, 257153.69577527770889 ], [ 364337.531999997794628, 257150.124099999666214 ], [ 364335.876199997961521, 257146.875199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702064000", "MAP": "F9-3497-T77", "PARCEL_NAM": "57T-6", "ACRE": "0.23", "LONGITUDE": -64.87171553, "LATITUDE": 18.34371297, "OBJECTID_1": 22684, "PARCEL_NO_": "105702064000", "Tax_Legal_": "SMITH BAY 57T-6 EAST END QTR", "Name": "RYAN, RICHARD & CAROLINE", "Address": "PO Box 304123", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 1100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.54165475600001, "SHAPE_Area": 1010.77460647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365069.486000001430511, 257177.2939000017941 ], [ 365046.957800000905991, 257171.410000000149012 ], [ 365041.008000001311302, 257207.24720000103116 ], [ 365065.924500003457069, 257216.739199999719858 ], [ 365073.508599996566772, 257178.38230000063777 ], [ 365069.486000001430511, 257177.2939000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601061300", "MAP": "C9-312K-88", "PARCEL_NAM": "404-12", "ACRE": null, "LONGITUDE": -64.89201305, "LATITUDE": 18.34385858, "OBJECTID_1": 20849, "PARCEL_NO_": "105601061300", "Tax_Legal_": "404-12&POR.215 ANNAS RET NEW QTR.", "Name": "JACKSON, INA", "Address": "PO Box 11604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 81900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.90870888000001, "SHAPE_Area": 402.88193487199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362921.943300001323223, 257198.769600000232458 ], [ 362929.322400003671646, 257184.475600000470877 ], [ 362911.581699997186661, 257184.541499998420477 ], [ 362897.068099997937679, 257184.422699999064207 ], [ 362897.752099998295307, 257198.782699998468161 ], [ 362921.943300001323223, 257198.769600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602074000", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-22", "ACRE": "0.14", "LONGITUDE": -64.88589729, "LATITUDE": 18.34376679, "OBJECTID_1": 21349, "PARCEL_NO_": "105602074000", "Tax_Legal_": "394A-22 ANNAS RETREAT NEW QTR.", "Name": "JOSEPH, CHARLESWORTH", "Address": "PO Box 7314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.330855554, "SHAPE_Area": 640.74313966099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363576.107199996709824, 257175.414799999445677 ], [ 363573.697300001978874, 257174.339699998497963 ], [ 363567.297100000083447, 257168.3766999989748 ], [ 363538.89639999717474, 257189.253600001335144 ], [ 363543.67849999666214, 257195.836599998176098 ], [ 363547.683100000023842, 257199.035799998790026 ], [ 363554.104800000786781, 257202.465799998492002 ], [ 363558.931900002062321, 257203.771899998188019 ], [ 363576.107199996709824, 257175.414799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043900", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-30", "ACRE": "0.19", "LONGITUDE": -64.89062902000001, "LATITUDE": 18.34375147, "OBJECTID_1": 21217, "PARCEL_NO_": "105602043900", "Tax_Legal_": "ANNAS RETREAT 143A-30 NEW QTR", "Name": "AMARO, ANTONIO SERRANO", "Address": "Est. Thomas 14-29", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62100, "Improved_V": 158100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.33660693, "SHAPE_Area": 911.46039500200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363071.134499996900558, 257197.246399998664856 ], [ 363070.6283999979496, 257161.989599999040365 ], [ 363044.806699998676777, 257164.100299999117851 ], [ 363045.312700003385544, 257199.357099998742342 ], [ 363071.134499996900558, 257197.246399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044500", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-22", "ACRE": "0.23", "LONGITUDE": -64.88881792, "LATITUDE": 18.34376968, "OBJECTID_1": 21223, "PARCEL_NO_": "105602044500", "Tax_Legal_": "143A-22 ANNAS RETREAT 1 NEW QTR", "Name": "MORTON, GEORGE", "Address": "PO Box 306871", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 200000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.34860262399999, "SHAPE_Area": 942.60992721000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363257.378200002014637, 257200.459499999880791 ], [ 363260.657399997115135, 257194.153499998152256 ], [ 363277.805799998342991, 257168.962600000202656 ], [ 363231.775799997150898, 257176.818500000983477 ], [ 363225.316399998962879, 257177.821100000292063 ], [ 363227.701099999248981, 257181.851399999111891 ], [ 363224.387800000607967, 257192.167899999767542 ], [ 363257.378200002014637, 257200.459499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601032500", "MAP": "B9-156-T67", "PARCEL_NAM": "155-10", "ACRE": ".177", "LONGITUDE": -64.89488846, "LATITUDE": 18.34370119, "OBJECTID_1": 20638, "PARCEL_NO_": "105601032500", "Tax_Legal_": "155-10 ANNAS RETREAT No.1 NEW QTR.", "Name": "MORTON-TURNBULL, JANICE", "Address": "PO Box 9544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26700, "Improved_V": 59700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.50700947199999, "SHAPE_Area": 716.65760496600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362619.136600002646446, 257153.228100001811981 ], [ 362613.497800000011921, 257152.548700001090765 ], [ 362611.071699999272823, 257153.373199999332428 ], [ 362595.665399998426437, 257163.379599999636412 ], [ 362590.782600000500679, 257168.616999998688698 ], [ 362589.144799999892712, 257171.558899998664856 ], [ 362617.167900003492832, 257195.008499998599291 ], [ 362619.136600002646446, 257153.228100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602047800", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-24", "ACRE": "0.23", "LONGITUDE": -64.88912148, "LATITUDE": 18.34361349, "OBJECTID_1": 21254, "PARCEL_NO_": "105602047800", "Tax_Legal_": "143A-24 ANNAS RETREAT NEW QTR", "Name": "SMITH, NEVILLE & BLANDINA", "Address": "P.O. BOX 3264", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.95549357, "SHAPE_Area": 939.54327334899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363231.775799997150898, 257176.818500000983477 ], [ 363234.428599998354912, 257149.39809999987483 ], [ 363200.540100000798702, 257151.864900000393391 ], [ 363211.420199997723103, 257199.87220000103116 ], [ 363214.711999997496605, 257192.088700000196695 ], [ 363215.539899997413158, 257189.562399998307228 ], [ 363218.880199998617172, 257176.079700000584126 ], [ 363225.316399998962879, 257177.821100000292063 ], [ 363231.775799997150898, 257176.818500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87536791, "LATITUDE": 18.34374679, "OBJECTID_1": 22124, "PARCEL_NO_": "105701052100", "Tax_Legal_": "SMITH BAY 82 EAST END QTR", "Name": "FRETT, GERALD&LETTSOME,A.E.&J.&J.I.&J.E.", "Address": "PO Box 7712", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.70231753900001, "SHAPE_Area": 1491.4435992000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364648.547799997031689, 257178.914900001138449 ], [ 364648.524400003254414, 257181.659000001847744 ], [ 364648.479400001466274, 257186.935899998992682 ], [ 364647.464500002563, 257211.414500001817942 ], [ 364678.928700000047684, 257209.561099998652935 ], [ 364689.409000001847744, 257209.857900001108646 ], [ 364693.454899996519089, 257208.202300000935793 ], [ 364693.731799997389317, 257175.696100000292063 ], [ 364655.001900002360344, 257178.5456000007689 ], [ 364648.547799997031689, 257178.914900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8818825, "LATITUDE": 18.34353932, "OBJECTID_1": 21861, "PARCEL_NO_": "105701012800", "Tax_Legal_": "22 ANNAS RETREAT NEW QUARTER", "Name": "LAKE, TERRENCE W. & CATHERINE Y.", "Address": "PO Box 10666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 162300, "Improved_V": 212600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.42766078599999, "SHAPE_Area": 3778.3458249800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363983.724799998104572, 257128.299600001424551 ], [ 363960.433399997651577, 257117.343199998140335 ], [ 363964.405699998140335, 257124.34180000051856 ], [ 363966.002099998295307, 257126.254799999296665 ], [ 363966.784999996423721, 257129.005399998277426 ], [ 363966.711300000548363, 257137.659600000828505 ], [ 363965.869000002741814, 257141.874600000679493 ], [ 363960.910700000822544, 257155.977299999445677 ], [ 363955.196400001645088, 257164.163199998438358 ], [ 363929.155199997127056, 257192.025499999523163 ], [ 363929.138999998569489, 257193.925200000405312 ], [ 363939.662500001490116, 257189.156100001186132 ], [ 363950.162500001490116, 257187.131099998950958 ], [ 363960.641000002622604, 257187.63910000026226 ], [ 363970.293300002813339, 257190.46229999884963 ], [ 363978.316899999976158, 257195.171999998390675 ], [ 363982.314300000667572, 257199.215500000864267 ], [ 363985.496399998664856, 257204.307799998670816 ], [ 363998.386600002646446, 257205.679900001734495 ], [ 364021.472199998795986, 257146.129399999976158 ], [ 363983.724799998104572, 257128.299600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601033000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-20", "ACRE": ".178", "LONGITUDE": -64.89439615000001, "LATITUDE": 18.34379151, "OBJECTID_1": 20642, "PARCEL_NO_": "105601033000", "Tax_Legal_": "ANNAS RETREAT 129A 20 NEW QTR", "Name": "CREQUE, RICHARD & ANDREA", "Address": "PO Box 10353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 118100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.390357253, "SHAPE_Area": 596.320748063 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362679.34570000320673, 257184.7516999989748 ], [ 362654.508299998939037, 257165.972199998795986 ], [ 362638.238200001418591, 257182.726500000804663 ], [ 362672.799900002777576, 257195.886100001633167 ], [ 362679.34570000320673, 257184.7516999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601041200", "MAP": "A9-38-T65", "PARCEL_NAM": "146-10", "ACRE": "0.13", "LONGITUDE": -64.89747576000001, "LATITUDE": 18.34373505, "OBJECTID_1": 20708, "PARCEL_NO_": "105601041200", "Tax_Legal_": "146-10 ANNAS RETREAT 1 NEW QTR", "Name": "FLEMING, ANTHONY A. & TRACEY E.", "Address": "146-7 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 139100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.544981843, "SHAPE_Area": 670.95777120100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362349.565700002014637, 257181.841499999165535 ], [ 362341.720200002193451, 257156.234999999403954 ], [ 362329.596699997782707, 257159.513199999928474 ], [ 362319.089500002563, 257162.382500000298023 ], [ 362317.473300002515316, 257162.791499998420477 ], [ 362330.133299998939037, 257191.181699998676777 ], [ 362349.565700002014637, 257181.841499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044000", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-29", "ACRE": "0.15", "LONGITUDE": -64.89040591, "LATITUDE": 18.34373288, "OBJECTID_1": 21218, "PARCEL_NO_": "105602044000", "Tax_Legal_": "ANNAS RETREAT 143A-29 NEW QTR.", "Name": "BARTLETT, WINGROVE", "Address": "PO Box 9776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 166000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.262651026, "SHAPE_Area": 753.42309438799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363092.922899998724461, 257195.313799999654293 ], [ 363091.60869999974966, 257160.261500000953674 ], [ 363070.6283999979496, 257161.989599999040365 ], [ 363071.134499996900558, 257197.246399998664856 ], [ 363092.922899998724461, 257195.313799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701068200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8800252, "LATITUDE": 18.34370738, "OBJECTID_1": 22241, "PARCEL_NO_": "105701068200", "Tax_Legal_": "ANNAS RETREAT 173D-3 NEW QTR.", "Name": "GURLEY, CHARLES & HYCYNTIA", "Address": "PO Box 302191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43800, "Improved_V": 60800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.850866262, "SHAPE_Area": 661.59571880199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364194.372699998319149, 257201.162200000137091 ], [ 364177.774599999189377, 257161.763000000268221 ], [ 364163.966600000858307, 257173.471200000494719 ], [ 364178.206900000572205, 257205.6739999987185 ], [ 364194.372699998319149, 257201.162200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602070800", "MAP": "A9-665-T006", "PARCEL_NAM": "394A-1 REM", "ACRE": ".925", "LONGITUDE": -64.8842159, "LATITUDE": 18.34360323, "OBJECTID_1": 21321, "PARCEL_NO_": "105602070800", "Tax_Legal_": "394A-1 ANNAS RETREAT NEW QTR", "Name": "MORALES, SR , SILLCOTT & THOMPSON - TRUSTEES", "Address": "PO Box 8089", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011089, "Country": "United States", "Land_Value": 84900, "Improved_V": 1300400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.92831450699998, "SHAPE_Area": 3351.9403991499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363758.125299997627735, 257193.211899999529123 ], [ 363776.00280000269413, 257130.242400001734495 ], [ 363753.162299998104572, 257117.758600000292063 ], [ 363746.725900001823902, 257152.398499999195337 ], [ 363714.07599999755621, 257168.441300000995398 ], [ 363684.726199999451637, 257174.912599999457598 ], [ 363691.342000000178814, 257198.102000001817942 ], [ 363699.275200001895428, 257199.643199998885393 ], [ 363714.587999999523163, 257200.612900000065565 ], [ 363722.661899998784065, 257199.412399999797344 ], [ 363727.514200001955032, 257197.763399999588728 ], [ 363758.125299997627735, 257193.211899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87516939, "LATITUDE": 18.34351485, "OBJECTID_1": 22125, "PARCEL_NO_": "105701052200", "Tax_Legal_": "SMITH BAY 81 EAST END QTR", "Name": "CHINNERY, AARTHUR & ANNETTE H", "Address": "BOX 2328", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42900, "Improved_V": 229600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.31595837699999, "SHAPE_Area": 1598.4163559900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364720.401299998164177, 257168.737199999392033 ], [ 364690.8158999979496, 257139.364199999719858 ], [ 364676.163800001144409, 257155.498500000685453 ], [ 364655.001900002360344, 257178.5456000007689 ], [ 364693.731799997389317, 257175.696100000292063 ], [ 364693.454899996519089, 257208.202300000935793 ], [ 364695.917000003159046, 257203.156199999153614 ], [ 364701.62950000166893, 257195.181400001049042 ], [ 364702.457400001585484, 257192.655000001192093 ], [ 364704.080799996852875, 257191.401799999177456 ], [ 364704.908699996769428, 257188.875399999320507 ], [ 364720.401299998164177, 257168.737199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601062200", "MAP": "C9-312K-T88", "PARCEL_NAM": "404-19", "ACRE": null, "LONGITUDE": -64.89160963, "LATITUDE": 18.34371897, "OBJECTID_1": 20858, "PARCEL_NO_": "105601062200", "Tax_Legal_": "ANNAS RETREAT 404-19 NEW QTR.", "Name": "BRADY, VERA", "Address": "PO Box 9187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15900, "Improved_V": 73800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.912234509, "SHAPE_Area": 511.55817001700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362970.519799999892712, 257175.946800000965595 ], [ 362970.656499996781349, 257159.904800001531839 ], [ 362939.881700001657009, 257175.484999999403954 ], [ 362939.016099996864796, 257182.443999998271465 ], [ 362934.891000002622604, 257193.387099999934435 ], [ 362970.519799999892712, 257175.946800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044100", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-28&29", "ACRE": "0.23", "LONGITUDE": -64.89015819, "LATITUDE": 18.34370929, "OBJECTID_1": 21219, "PARCEL_NO_": "105602044100", "Tax_Legal_": "143A-28&29A ANNAS RETREAT NO 1 NEW QTR", "Name": "IVA IONA PARRY FAMILY REVOCABLE TRUST", "Address": "PO Box 10994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34200, "Improved_V": 323500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.062700953, "SHAPE_Area": 944.22787035500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363123.587899997830391, 257192.609499998390675 ], [ 363119.043200001120567, 257158.164000000804663 ], [ 363097.256499998271465, 257159.885499998927116 ], [ 363091.60869999974966, 257160.261500000953674 ], [ 363096.957999996840954, 257194.924600001424551 ], [ 363123.587899997830391, 257192.609499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702022300", "MAP": "G9-2124-T72", "PARCEL_NAM": "4G-7", "ACRE": "4,703 sq ft", "LONGITUDE": -64.86792848, "LATITUDE": 18.34377314, "OBJECTID_1": 22387, "PARCEL_NO_": "105702022300", "Tax_Legal_": "SMITH BAY 4G 7 EAST END", "Name": "SWEENY, JERMAL & LAVERNE M. GEORGE-TONGE", "Address": "PO Box 10754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 87500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.928892348900007, "SHAPE_Area": 334.71587652300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365444.490000002086163, 257206.314800001680851 ], [ 365466.712200000882149, 257214.108800001442432 ], [ 365470.844099998474121, 257201.646499998867512 ], [ 365447.994699999690056, 257192.232700001448393 ], [ 365445.038800001144409, 257202.532400000840425 ], [ 365444.490000002086163, 257206.314800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601030900", "MAP": "A9-38-T65", "PARCEL_NAM": "146-4", "ACRE": ".118", "LONGITUDE": -64.89641764, "LATITUDE": 18.34372288, "OBJECTID_1": 20622, "PARCEL_NO_": "105601030900", "Tax_Legal_": "146-4 ANNAS RETREAT 1 NEW QTR", "Name": "SUTTON, ADRIANE C", "Address": "146-4 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 55400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.297988900199996, "SHAPE_Area": 570.19448545900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362450.57769999653101, 257156.492600001394749 ], [ 362434.386799998581409, 257163.959499999880791 ], [ 362431.939099997282028, 257167.316899999976158 ], [ 362432.714800000190735, 257170.911899998784065 ], [ 362439.039399996399879, 257185.740200001746416 ], [ 362441.433200001716614, 257188.71510000154376 ], [ 362462.501599997282028, 257176.644099999219179 ], [ 362450.57769999653101, 257156.492600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87474906, "LATITUDE": 18.34366937, "OBJECTID_1": 22126, "PARCEL_NO_": "105701052300", "Tax_Legal_": "SMITH BAY 48 EAST END QTR", "Name": "FRETT, JOAN V.", "Address": "7785 Lerkenlund 8-67", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 137100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.04920629599999, "SHAPE_Area": 896.39569576300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364757.349600002169609, 257185.715999998152256 ], [ 364733.341899998486042, 257164.199099998921156 ], [ 364715.405199997127056, 257187.272599998861551 ], [ 364740.237199999392033, 257206.685300000011921 ], [ 364757.349600002169609, 257185.715999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044200", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-27", "ACRE": "0.23", "LONGITUDE": -64.88988384, "LATITUDE": 18.34368314, "OBJECTID_1": 21220, "PARCEL_NO_": "105602044200", "Tax_Legal_": "ANNAS RETREAT 143A-27 NEW QTR", "Name": "ROMNEY (LIFE ESTATE), ADINA", "Address": "PO Box 10466", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35800, "Improved_V": 259400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.493208428, "SHAPE_Area": 1075.87876977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363152.125299997627735, 257155.690600000321865 ], [ 363119.043200001120567, 257158.164000000804663 ], [ 363123.587899997830391, 257192.609499998390675 ], [ 363152.63849999755621, 257190.103000000119209 ], [ 363152.125299997627735, 257155.690600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702050900", "MAP": "F9-3148-T73", "PARCEL_NAM": "46", "ACRE": "0.22", "LONGITUDE": -64.87435639, "LATITUDE": 18.34365062, "OBJECTID_1": 22603, "PARCEL_NO_": "105702050900", "Tax_Legal_": "SMITH BAY ESTATE 46 EAST END QUARTER", "Name": "PIERRE, WISNER and DENISE", "Address": "46 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27700, "Improved_V": 700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.903781976, "SHAPE_Area": 906.60921343099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364797.690399996936321, 257183.090900000184774 ], [ 364776.907899998128414, 257161.600400000810623 ], [ 364757.349600002169609, 257185.715999998152256 ], [ 364780.560000002384186, 257206.171000000089407 ], [ 364784.643799997866154, 257200.082699999213219 ], [ 364791.972499996423721, 257191.698899999260902 ], [ 364792.796800002455711, 257189.594700001180172 ], [ 364794.418399997055531, 257188.552499998360872 ], [ 364797.690399996936321, 257183.090900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701068300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87986521000001, "LATITUDE": 18.34361031, "OBJECTID_1": 22242, "PARCEL_NO_": "105701068300", "Tax_Legal_": "ANNAS RETREAT 173D-4 NEW QTR", "Name": "JEAN-BAPTISTE, JUSTIN & LUCILL", "Address": "PO Box 502344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 107800, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.45398673899999, "SHAPE_Area": 1039.9648170299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364212.980800002813339, 257193.926199998706579 ], [ 364198.072599999606609, 257145.463799998164177 ], [ 364177.774599999189377, 257161.763000000268221 ], [ 364194.372699998319149, 257201.162200000137091 ], [ 364212.980800002813339, 257193.926199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702064100", "MAP": "F9-3497-T77", "PARCEL_NAM": "57T-5", "ACRE": "0.23", "LONGITUDE": -64.87197687, "LATITUDE": 18.34362457, "OBJECTID_1": 22685, "PARCEL_NO_": "105702064100", "Tax_Legal_": "SMITH BAY 57T-5 EAST END QTR", "Name": "BRAMBLE GUMBS, HILDA V.", "Address": "PO Box 12194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29900, "Improved_V": 25600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.28360151800001, "SHAPE_Area": 1031.71079826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365027.647699996829033, 257166.396800000220537 ], [ 365014.775499999523163, 257162.913899999111891 ], [ 365013.933200001716614, 257167.128899998962879 ], [ 365012.923699997365475, 257190.974199999123812 ], [ 365028.160899996757507, 257200.809200000017881 ], [ 365041.008000001311302, 257207.24720000103116 ], [ 365046.957800000905991, 257171.410000000149012 ], [ 365027.647699996829033, 257166.396800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601031000", "MAP": "B9-156-T67", "PARCEL_NAM": "155-2", "ACRE": ".154", "LONGITUDE": -64.89620691, "LATITUDE": 18.34364013, "OBJECTID_1": 20623, "PARCEL_NO_": "105601031000", "Tax_Legal_": "ANNAS RETRET 155-2 1 NEW QTR", "Name": "BLYDEN, EMELDA F", "Address": "155-2 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 90000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.164390153, "SHAPE_Area": 691.55218753500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362462.501599997282028, 257176.644099999219179 ], [ 362467.272900000214577, 257184.493599999696016 ], [ 362484.369099996984005, 257165.4239999987185 ], [ 362481.987999998033047, 257160.971599999815226 ], [ 362478.847199998795986, 257151.024500001221895 ], [ 362475.648999996483326, 257147.831900000572205 ], [ 362470.812899999320507, 257147.581199999898672 ], [ 362450.57769999653101, 257156.492600001394749 ], [ 362462.501599997282028, 257176.644099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601032900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-17", "ACRE": ".177", "LONGITUDE": -64.89454512, "LATITUDE": 18.34357613, "OBJECTID_1": 20641, "PARCEL_NO_": "105601032900", "Tax_Legal_": "129A-17 ANNAS RETREAT NEW QTR", "Name": "JACOB, M. & WELCH, D", "Address": "23-E ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 104400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.80118412799999, "SHAPE_Area": 926.44007414700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362636.609399996697903, 257184.613000001758337 ], [ 362638.238200001418591, 257182.726500000804663 ], [ 362654.508299998939037, 257165.972199998795986 ], [ 362665.897299997508526, 257154.244100000709295 ], [ 362640.262599997222424, 257134.40260000154376 ], [ 362637.813100002706051, 257137.971200000494719 ], [ 362636.14469999819994, 257144.501400001347065 ], [ 362632.885300002992153, 257148.485500000417233 ], [ 362628.022200003266335, 257151.401000000536442 ], [ 362636.609399996697903, 257184.613000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601034700", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-2", "ACRE": ".176", "LONGITUDE": -64.89423803, "LATITUDE": 18.34362459, "OBJECTID_1": 20656, "PARCEL_NO_": "105601034700", "Tax_Legal_": "129A 21 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, DORIS & HILDA W", "Address": "4903 E-3 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021768, "Country": "United States", "Land_Value": 24700, "Improved_V": 77000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.82881765099999, "SHAPE_Area": 920.56658560699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362678.099899999797344, 257141.678399998694658 ], [ 362665.897299997508526, 257154.244100000709295 ], [ 362654.508299998939037, 257165.972199998795986 ], [ 362679.34570000320673, 257184.7516999989748 ], [ 362685.873499996960163, 257175.728100001811981 ], [ 362696.43469999730587, 257166.526399999856949 ], [ 362679.726899996399879, 257140.002999998629093 ], [ 362678.099899999797344, 257141.678399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601035700", "MAP": "A9-15-T62", "PARCEL_NAM": "129-67", "ACRE": ".274", "LONGITUDE": -64.89261839, "LATITUDE": 18.34358834, "OBJECTID_1": 20666, "PARCEL_NO_": "105601035700", "Tax_Legal_": "129 67 ANNAS RETREAT NEW QTR", "Name": "LETTSOME, ANTONIO & INGRID", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 123300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.50705201599999, "SHAPE_Area": 1047.8799535799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362851.433700002729893, 257145.841299999505281 ], [ 362832.886699996888638, 257145.900600001215935 ], [ 362830.980999998748302, 257180.293200001120567 ], [ 362834.992799997329712, 257182.64809999987483 ], [ 362836.57660000026226, 257186.038499999791384 ], [ 362870.693499997258186, 257156.764699999243021 ], [ 362871.593299999833107, 257145.795200001448393 ], [ 362851.433700002729893, 257145.841299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702030500", "MAP": "D9-411-T63 (2)", "PARCEL_NAM": "40P", "ACRE": "0.31", "LONGITUDE": -64.87068127000001, "LATITUDE": 18.34350249, "OBJECTID_1": 22469, "PARCEL_NO_": "105702030500", "Tax_Legal_": "SMITH BAY 40P EAST END QTR", "Name": "FARRELL, STAFFORD", "Address": "PO Box 306265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.944389508, "SHAPE_Area": 1099.8807877900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365185.692100003361702, 257166.845899999141693 ], [ 365183.296599999070168, 257164.082100000232458 ], [ 365181.815200001001358, 257148.660100001841784 ], [ 365151.105200000107288, 257156.641399998217821 ], [ 365150.973899997770786, 257172.050200000405312 ], [ 365156.477899998426437, 257188.560499999672174 ], [ 365158.020400002598763, 257196.805799998342991 ], [ 365158.762000001966953, 257204.411200001835823 ], [ 365185.692100003361702, 257166.845899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601061600", "MAP": "C9-312K-T88", "PARCEL_NAM": "404-13", "ACRE": null, "LONGITUDE": -64.89221127, "LATITUDE": 18.34370353, "OBJECTID_1": 20852, "PARCEL_NO_": "105601061600", "Tax_Legal_": "404-13&POR 215 ANNAS RET NEW QTR.", "Name": "LEWIS, JR., JAMES E. T.", "Address": "PO Box 10227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 126400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.592443246, "SHAPE_Area": 736.23137196000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362869.689400002360344, 257179.976700000464916 ], [ 362897.068099997937679, 257184.422699999064207 ], [ 362911.581699997186661, 257184.541499998420477 ], [ 362910.868900001049042, 257173.558800000697374 ], [ 362904.484899997711182, 257165.696100000292063 ], [ 362894.044200003147125, 257160.755499999970198 ], [ 362891.576700001955032, 257166.434799998998642 ], [ 362885.945100001990795, 257164.910999998450279 ], [ 362870.634199999272823, 257163.73030000180006 ], [ 362869.689400002360344, 257179.976700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601061400", "MAP": "C9-312K-T88", "PARCEL_NAM": "404-14", "ACRE": null, "LONGITUDE": -64.89193735000001, "LATITUDE": 18.34368289, "OBJECTID_1": 20850, "PARCEL_NO_": "105601061400", "Tax_Legal_": "404-14&POR 215 ANNAS RET NEW QTR.", "Name": "GEORGE, CLARISSA", "Address": "Po Box 901", "City": "Sanford", "State": "Florida", "Zip": 32772, "Country": "United States", "Land_Value": 19200, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.444275406499997, "SHAPE_Area": 492.325074245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362929.322400003671646, 257184.475600000470877 ], [ 362931.006899997591972, 257176.0456000007689 ], [ 362926.336300000548363, 257156.375700000673532 ], [ 362904.484899997711182, 257165.696100000292063 ], [ 362910.868900001049042, 257173.558800000697374 ], [ 362911.581699997186661, 257184.541499998420477 ], [ 362929.322400003671646, 257184.475600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602073900", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-21", "ACRE": "0.14", "LONGITUDE": -64.88599409, "LATITUDE": 18.34363125, "OBJECTID_1": 21348, "PARCEL_NO_": "105602073900", "Tax_Legal_": "ANNAS RETREAT 394A-21 NEW QTR.", "Name": "CALLWOOD, LEANA B.", "Address": "1556 Iris Walk", "City": "Jonesboro", "State": "Georgia", "Zip": 30238, "Country": "United States", "Land_Value": 20200, "Improved_V": 208600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.57342567800001, "SHAPE_Area": 622.10945397 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363567.297100000083447, 257168.3766999989748 ], [ 363563.314099997282028, 257162.644499998539686 ], [ 363561.766199998557568, 257155.032499998807907 ], [ 363530.192400000989437, 257169.761700000613928 ], [ 363530.172600001096725, 257172.083599999547005 ], [ 363531.767200000584126, 257174.207600001245737 ], [ 363534.125, 257181.404100000858307 ], [ 363538.89639999717474, 257189.253600001335144 ], [ 363567.297100000083447, 257168.3766999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701068400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87969444, "LATITUDE": 18.34349646, "OBJECTID_1": 22243, "PARCEL_NO_": "105701068400", "Tax_Legal_": "ANNAS RETREAT 173b-82A&B NEW QUARTER", "Name": "SMITH, LENECIA & DOROTHY", "Address": "PO Box 10638", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.944682185, "SHAPE_Area": 1063.01774826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364217.541000001132488, 257131.902100000530481 ], [ 364216.962999999523163, 257129.036299999803305 ], [ 364198.072599999606609, 257145.463799998164177 ], [ 364212.980800002813339, 257193.926199998706579 ], [ 364228.372699998319149, 257185.608500000089407 ], [ 364217.541000001132488, 257131.902100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601035500", "MAP": "A9-15-T62", "PARCEL_NAM": "129-68", "ACRE": "1.78", "LONGITUDE": -64.89287941000001, "LATITUDE": 18.34361943, "OBJECTID_1": 20664, "PARCEL_NO_": "105601035500", "Tax_Legal_": "129-68 ANNAS RETREAT NEW QTR", "Name": "MADURO, BERRIS AUSTIN", "Address": "4809 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 187800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.207574744, "SHAPE_Area": 800.22784203200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362832.886699996888638, 257145.900600001215935 ], [ 362828.851599998772144, 257146.289700001478195 ], [ 362809.485699996352196, 257147.820000000298023 ], [ 362807.589000001549721, 257181.157200001180172 ], [ 362821.289099998772144, 257182.113699998706579 ], [ 362826.953000001609325, 257179.838100001215935 ], [ 362830.980999998748302, 257180.293200001120567 ], [ 362832.886699996888638, 257145.900600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702022700", "MAP": "F9-1041-T62", "PARCEL_NAM": "4G-10", "ACRE": "0.11", "LONGITUDE": -64.86765345000001, "LATITUDE": 18.34372339, "OBJECTID_1": 22391, "PARCEL_NO_": "105702022700", "Tax_Legal_": "SMITH BAY 4G 10\n1 2 & 3 EAST END QTR", "Name": "LISTON and ALMA DAVIS (LIFE ESTATE)", "Address": "PO Box 301912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15000, "Improved_V": 120200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.604946035899999, "SHAPE_Area": 494.34784687500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365502.30799999833107, 257195.663600001484156 ], [ 365477.456299997866154, 257183.997999999672174 ], [ 365472.505599997937679, 257196.635499998927116 ], [ 365471.541400000452995, 257199.543499998748302 ], [ 365470.844099998474121, 257201.646499998867512 ], [ 365495.606899999082088, 257211.848700001835823 ], [ 365496.820900000631809, 257208.916499998420477 ], [ 365499.404600001871586, 257202.676199998706579 ], [ 365502.30799999833107, 257195.663600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701032900", "MAP": "F9-3972-T80", "PARCEL_NAM": "20-15A", "ACRE": "0.17", "LONGITUDE": -64.87675441, "LATITUDE": 18.34366213, "OBJECTID_1": 21976, "PARCEL_NO_": "105701032900", "Tax_Legal_": "20-15A SMITH BAY EAST END QTR", "Name": "DONNA STRIDIRON JULIEN", "Address": "PO Box 302943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032943, "Country": "United States", "Land_Value": 23300, "Improved_V": 900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.87610611, "SHAPE_Area": 705.27295771599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364547.184000000357628, 257175.462999999523163 ], [ 364546.458200000226498, 257175.622400000691414 ], [ 364546.166500002145767, 257175.6864 ], [ 364538.204300001263618, 257177.435199998319149 ], [ 364523.91669999808073, 257176.87950000166893 ], [ 364502.679999999701977, 257168.940999999642372 ], [ 364502.655599996447563, 257171.810199998319149 ], [ 364502.554899998009205, 257183.630699999630451 ], [ 364508.172100000083447, 257186.842999998480082 ], [ 364520.225400000810623, 257191.796799998730421 ], [ 364528.270599998533726, 257193.973600000143051 ], [ 364541.582699999213219, 257195.411299999803305 ], [ 364543.556645719392691, 257190.686607472365722 ], [ 364545.089443059812766, 257185.800943392852787 ], [ 364546.168200001120567, 257180.795400001108646 ], [ 364547.184000000357628, 257175.462999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601035400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-42", "ACRE": ".169", "LONGITUDE": -64.89309132, "LATITUDE": 18.34362688, "OBJECTID_1": 20663, "PARCEL_NO_": "105601035400", "Tax_Legal_": "129A-42 ANNAS RETREAT NEW QTR", "Name": "FRANCIS, LAUREL AND JAIME ANTONIO FRANCIS, SR.", "Address": "PO Box 502104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21900, "Improved_V": 146100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.02126814899999, "SHAPE_Area": 686.27609296200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362809.485699996352196, 257147.820000000298023 ], [ 362803.029799997806549, 257148.400400001555681 ], [ 362788.505400002002716, 257149.548099998384714 ], [ 362785.026600003242493, 257179.2837999984622 ], [ 362807.589000001549721, 257181.157200001180172 ], [ 362809.485699996352196, 257147.820000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601035300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-43", "ACRE": ".166", "LONGITUDE": -64.89333438, "LATITUDE": 18.34364796, "OBJECTID_1": 20662, "PARCEL_NO_": "105601035300", "Tax_Legal_": "129A 43 ANNAS RETREAT NEW QTR", "Name": "RAVALIER, SR., LENROY LENOX", "Address": "PO Box 503120", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21900, "Improved_V": 4700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.364013007, "SHAPE_Area": 708.23308398500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362788.505400002002716, 257149.548099998384714 ], [ 362754.523400001227856, 257162.99100000038743 ], [ 362751.989399999380112, 257176.48030000180006 ], [ 362785.026600003242493, 257179.2837999984622 ], [ 362788.505400002002716, 257149.548099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601035200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-44", "ACRE": ".189", "LONGITUDE": -64.89368071, "LATITUDE": 18.34362539, "OBJECTID_1": 20661, "PARCEL_NO_": "105601035200", "Tax_Legal_": "129A-44 ANNAS RETREAT NEW QTR", "Name": "SPRAUVE, NEAL", "Address": "129A-1-44 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 83800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.986869211, "SHAPE_Area": 820.82410391099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362744.194200001657009, 257144.963599998503923 ], [ 362707.699699997901917, 257169.362799998372793 ], [ 362708.482699997723103, 257172.113400001078844 ], [ 362751.989399999380112, 257176.48030000180006 ], [ 362754.523400001227856, 257162.99100000038743 ], [ 362744.194200001657009, 257144.963599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601041400", "MAP": "A9-38-T65", "PARCEL_NAM": "146-8", "ACRE": "0.12", "LONGITUDE": -64.89707089, "LATITUDE": 18.34357774, "OBJECTID_1": 20710, "PARCEL_NO_": "105601041400", "Tax_Legal_": "146-8 ANNAS RETREAT 1 NEW QTR", "Name": "ROMU, YVONNE", "Address": "46008 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 98600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.930754115, "SHAPE_Area": 657.33981988000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362391.610799998044968, 257168.464499998837709 ], [ 362382.211999997496605, 257135.879200000315905 ], [ 362362.770599998533726, 257146.27479999884963 ], [ 362371.411700002849102, 257173.154399998486042 ], [ 362391.610799998044968, 257168.464499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702023500", "MAP": null, "PARCEL_NAM": "4G-6", "ACRE": "0.11", "LONGITUDE": -64.86788226, "LATITUDE": 18.34362869, "OBJECTID_1": 22398, "PARCEL_NO_": "105702023500", "Tax_Legal_": "SMITH BAY 4G 6 12& 3 EAST END QTR", "Name": "ROUSE, WENDE & ORVILLE", "Address": "6625 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15500, "Improved_V": 214000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.946785430199995, "SHAPE_Area": 496.50500118600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365460.887199997901917, 257176.220300000160933 ], [ 365453.79619999974966, 257172.891800001263618 ], [ 365453.339299999177456, 257174.736000001430511 ], [ 365450.869999997317791, 257180.626400001347065 ], [ 365448.362999998033047, 257190.949499998241663 ], [ 365447.994699999690056, 257192.232700001448393 ], [ 365470.844099998474121, 257201.646499998867512 ], [ 365471.541400000452995, 257199.543499998748302 ], [ 365472.505599997937679, 257196.635499998927116 ], [ 365477.456299997866154, 257183.997999999672174 ], [ 365460.887199997901917, 257176.220300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044600", "MAP": null, "PARCEL_NAM": "117", "ACRE": null, "LONGITUDE": -64.89114643000001, "LATITUDE": 18.3433725, "OBJECTID_1": 21224, "PARCEL_NO_": "105602044600", "Tax_Legal_": "117 EST ANNAS RETREAT NEW QTR", "Name": "FRETT, DEAN J. & CHERYL M", "Address": "PO Box 681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 121800, "Improved_V": 63000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.47739604, "SHAPE_Area": 4113.1421408400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362983.989000000059605, 257109.351500000804663 ], [ 362971.077899999916553, 257110.433600001037121 ], [ 362970.904600001871586, 257130.776000000536442 ], [ 362970.803900003433228, 257142.596400000154972 ], [ 362970.656499996781349, 257159.904800001531839 ], [ 362970.519799999892712, 257175.946800000965595 ], [ 362976.190999999642372, 257172.826799999922514 ], [ 362995.5658999979496, 257170.241200000047684 ], [ 363021.398400001227856, 257166.864000000059605 ], [ 363035.928199999034405, 257165.083099998533726 ], [ 363038.787699997425079, 257113.388599999248981 ], [ 363026.773999996483326, 257103.79109999909997 ], [ 363023.545100003480911, 257104.186799999326468 ], [ 363014.664899997413158, 257105.380699999630451 ], [ 362983.989000000059605, 257109.351500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701067800", "MAP": "C9-273-T81", "PARCEL_NAM": "178B-98", "ACRE": "0.27", "LONGITUDE": -64.88058588, "LATITUDE": 18.34353982, "OBJECTID_1": 22237, "PARCEL_NO_": "105701067800", "Tax_Legal_": "ANNAS RETREAT 173B-98 NEW QTR.", "Name": "LINDEMANN, RUPPERT A.J. & MAYRA M.", "Address": "2691 RESERVOIR AVE., APT. 5F", "City": "BRONX", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 33900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.737510998, "SHAPE_Area": 1191.62115034 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364127.066799998283386, 257150.793299999088049 ], [ 364099.661200001835823, 257149.5135000012815 ], [ 364098.610299997031689, 257178.213599998503923 ], [ 364126.0050999969244, 257180.759899999946356 ], [ 364128.38629999756813, 257185.21229999884963 ], [ 364144.616899996995926, 257173.101700000464916 ], [ 364147.068199999630451, 257169.32209999859333 ], [ 364127.066799998283386, 257150.793299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601062100", "MAP": "D9-8545-T011", "PARCEL_NAM": "404-18", "ACRE": ".11", "LONGITUDE": -64.89161223000001, "LATITUDE": 18.34356607, "OBJECTID_1": 20857, "PARCEL_NO_": "105601062100", "Tax_Legal_": "404-18 ESTATE ANNAS RETREAT NO. 1 NEW QUARTER", "Name": "TRUST AGREEMENT OF JACQUELINE SIMEON", "Address": "PO Box 1312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041312, "Country": "United States", "Land_Value": 13800, "Improved_V": 80400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.896600292, "SHAPE_Area": 574.53486147199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362970.803900003433228, 257142.596400000154972 ], [ 362935.984999999403954, 257159.621100001037121 ], [ 362939.881700001657009, 257175.484999999403954 ], [ 362970.656499996781349, 257159.904800001531839 ], [ 362970.803900003433228, 257142.596400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701068600", "MAP": "C9-273-T81", "PARCEL_NAM": "173B-106", "ACRE": "0.23", "LONGITUDE": -64.87950188000001, "LATITUDE": 18.3433898, "OBJECTID_1": 22244, "PARCEL_NO_": "105701068600", "Tax_Legal_": "ANNAS RETREAT 173B-106 NEW QTR.", "Name": "BAPTISTE, ANASTACIA & PETER", "Address": "PO Box 10284", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 350900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.01158805599999, "SHAPE_Area": 1436.70500709 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364243.441899999976158, 257120.503899998962879 ], [ 364243.174400001764297, 257118.551300000399351 ], [ 364217.358000002801418, 257128.692800000309944 ], [ 364216.962999999523163, 257129.036299999803305 ], [ 364217.541000001132488, 257131.902100000530481 ], [ 364228.372699998319149, 257185.608500000089407 ], [ 364239.720399998128414, 257178.735300000756979 ], [ 364250.274400003254414, 257170.377900000661612 ], [ 364243.441899999976158, 257120.503899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602047900", "MAP": "B9-166-T67", "PARCEL_NAM": "143A-23", "ACRE": "0.23", "LONGITUDE": -64.88874359, "LATITUDE": 18.34354788, "OBJECTID_1": 21255, "PARCEL_NO_": "105602047900", "Tax_Legal_": "143A-23 ANNAS RETREAT NEW QUARTER", "Name": "WHEATLEY, GWENDOLYN", "Address": "PO Box 502472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 75100, "Improved_V": 166800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.52744220299999, "SHAPE_Area": 1237.9163099699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363277.805799998342991, 257168.962600000202656 ], [ 363288.49099999666214, 257145.19649999961257 ], [ 363265.090000003576279, 257147.115899998694658 ], [ 363234.428599998354912, 257149.39809999987483 ], [ 363231.775799997150898, 257176.818500000983477 ], [ 363277.805799998342991, 257168.962600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601041500", "MAP": "A9-38-T65", "PARCEL_NAM": "146-3", "ACRE": "0.17", "LONGITUDE": -64.89688664000001, "LATITUDE": 18.34352086, "OBJECTID_1": 20711, "PARCEL_NO_": "105601041500", "Tax_Legal_": "146-3 ANNAS RETREAT NEW QTR", "Name": "ESTRADA, WARREN", "Address": "146-2 ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 48200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.599469715, "SHAPE_Area": 717.42378192199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362414.239699997007847, 257162.528000000864267 ], [ 362396.793999999761581, 257127.977000001817942 ], [ 362382.211999997496605, 257135.879200000315905 ], [ 362391.610799998044968, 257168.464499998837709 ], [ 362414.239699997007847, 257162.528000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601034900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-2", "ACRE": ".167", "LONGITUDE": -64.89405426, "LATITUDE": 18.34348366, "OBJECTID_1": 20658, "PARCEL_NO_": "105601034900", "Tax_Legal_": "ANNAS RETREAT 129A 22 NEW QTR", "Name": "CANTOIS, AMANDA", "Address": "PO Box 9873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 74400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.724683352, "SHAPE_Area": 601.08836358300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362712.658100001513958, 257155.260099999606609 ], [ 362695.941299997270107, 257129.792100001126528 ], [ 362679.726899996399879, 257140.002999998629093 ], [ 362696.43469999730587, 257166.526399999856949 ], [ 362712.658100001513958, 257155.260099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702052200", "MAP": "F9-422-T59", "PARCEL_NAM": "58", "ACRE": "0.22", "LONGITUDE": -64.87418788, "LATITUDE": 18.34344613, "OBJECTID_1": 22612, "PARCEL_NO_": "105702052200", "Tax_Legal_": "SMITH BAY 58 EAST END QTR", "Name": "RODRIGUEZ, ALICIA", "Address": "PO Box 7032", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23800, "Improved_V": 43100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.765992758, "SHAPE_Area": 824.91008519000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364794.023900002241135, 257140.20890000090003 ], [ 364776.907899998128414, 257161.600400000810623 ], [ 364797.690399996936321, 257183.090900000184774 ], [ 364800.9425999969244, 257179.951099999248981 ], [ 364814.817199997603893, 257160.43299999833107 ], [ 364794.023900002241135, 257140.20890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702064700", "MAP": "F9-3554-T78", "PARCEL_NAM": "57T-11", "ACRE": "0.27", "LONGITUDE": -64.87134353, "LATITUDE": 18.34347692, "OBJECTID_1": 22691, "PARCEL_NO_": "105702064700", "Tax_Legal_": "SMITH BAY 57T-11 EAST END QTR", "Name": "EUNICE JONES BEST TRUST", "Address": "PO Box 9311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88200, "Improved_V": 236000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.87173511099999, "SHAPE_Area": 1375.78866412 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365076.962200000882149, 257151.601599998772144 ], [ 365069.486000001430511, 257177.2939000017941 ], [ 365073.508599996566772, 257178.38230000063777 ], [ 365098.452200002968311, 257184.708099998533726 ], [ 365121.885600000619888, 257178.98930000141263 ], [ 365117.286799997091293, 257150.876200001686811 ], [ 365114.858900003135204, 257151.911800000816584 ], [ 365108.402999997138977, 257152.492199998348951 ], [ 365095.498400002717972, 257152.808800000697374 ], [ 365076.962200000882149, 257151.601599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601041600", "MAP": "A9-38-T65", "PARCEL_NAM": "146-7", "ACRE": "0.19", "LONGITUDE": -64.89670986, "LATITUDE": 18.34343613, "OBJECTID_1": 20712, "PARCEL_NO_": "105601041600", "Tax_Legal_": "146-7 ANNAS RETREAT 1 NEW QTR", "Name": "MARTIN, REGINALD & OTHERS", "Address": "PO Box 305034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26000, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.66788308300001, "SHAPE_Area": 891.03613292 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362408.947999998927116, 257121.110399998724461 ], [ 362396.793999999761581, 257127.977000001817942 ], [ 362414.239699997007847, 257162.528000000864267 ], [ 362419.090199999511242, 257161.09010000154376 ], [ 362434.4712999984622, 257154.038800001144409 ], [ 362423.373499996960163, 257131.572000000625849 ], [ 362416.242600001394749, 257116.737100001424551 ], [ 362408.947999998927116, 257121.110399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88232811, "LATITUDE": 18.34334693, "OBJECTID_1": 21859, "PARCEL_NO_": "105701012600", "Tax_Legal_": "24-B ANNAS RETREAT NO.1 NEW QTR", "Name": "RICHARDSON, DENNIS A. & PETERS, MYRTLE", "Address": "PO Box 302493", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 92900, "Improved_V": 114000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.104978958, "SHAPE_Area": 2173.3769004300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363937.367600001394749, 257174.571899998933077 ], [ 363947.945000000298023, 257163.470499999821186 ], [ 363955.286300003528595, 257153.609200000762939 ], [ 363959.413099996745586, 257142.454999998211861 ], [ 363961.121100001037121, 257131.280999999493361 ], [ 363957.163199998438358, 257122.593800000846386 ], [ 363953.169399999082088, 257118.128199998289347 ], [ 363945.144100002944469, 257113.62950000166893 ], [ 363937.896300002932549, 257112.514699999243021 ], [ 363935.473700001835823, 257112.917100001126528 ], [ 363930.610699996352196, 257115.832600001245737 ], [ 363925.733199998736382, 257120.436700001358986 ], [ 363923.278300002217293, 257124.6385000012815 ], [ 363921.654899999499321, 257125.891800001263618 ], [ 363915.071400001645088, 257141.458799999207258 ], [ 363905.23200000077486, 257160.587799999862909 ], [ 363937.367600001394749, 257174.571899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701039600", "MAP": "F9-3972-T80", "PARCEL_NAM": "20-15B", "ACRE": "0.28", "LONGITUDE": -64.87673133, "LATITUDE": 18.34348672, "OBJECTID_1": 22031, "PARCEL_NO_": "105701039600", "Tax_Legal_": "20-15B SMITH BAY EAST END QTR", "Name": "STRIDIRON, ANDRE", "Address": "PO Box 302943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33300, "Improved_V": 115400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.09415710499999, "SHAPE_Area": 1028.3962747 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364547.957800000905991, 257151.164599999785423 ], [ 364502.810199998319149, 257153.657499998807907 ], [ 364502.679999999701977, 257168.940999999642372 ], [ 364523.91669999808073, 257176.87950000166893 ], [ 364538.204300001263618, 257177.435199998319149 ], [ 364546.166500002145767, 257175.6864 ], [ 364546.458200000226498, 257175.622400000691414 ], [ 364547.184000000357628, 257175.462999999523163 ], [ 364548.056510172726121, 257169.730039777932689 ], [ 364548.708200000226498, 257163.967799998819828 ], [ 364548.500035184493754, 257157.556410009157844 ], [ 364547.957800000905991, 257151.164599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601061500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89202161, "LATITUDE": 18.34350273, "OBJECTID_1": 20851, "PARCEL_NO_": "105601061500", "Tax_Legal_": "ANNAS RET 404-16 & POR 215 NEW QTR.", "Name": "DREW, JANET", "Address": "11227 Carabelee Cir", "City": "Orlando", "State": "Florida", "Zip": 32825, "Country": "United States", "Land_Value": 19200, "Improved_V": 92300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.633950099700002, "SHAPE_Area": 583.13231171200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362926.336300000548363, 257156.375700000673532 ], [ 362923.267499998211861, 257137.985399998724461 ], [ 362902.265600003302097, 257142.246500000357628 ], [ 362894.044200003147125, 257160.755499999970198 ], [ 362904.484899997711182, 257165.696100000292063 ], [ 362926.336300000548363, 257156.375700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602073500", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-50", "ACRE": "6,200 sq ft", "LONGITUDE": -64.88563779, "LATITUDE": 18.34348726, "OBJECTID_1": 21345, "PARCEL_NO_": "105602073500", "Tax_Legal_": "394A-50 ANNAS RETREAT NEW QTR.", "Name": "LIBURD, JEROME", "Address": "PO Box 307763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21800, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.750442438799993, "SHAPE_Area": 661.937681494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363580.462499998509884, 257137.453699998557568 ], [ 363576.393100000917912, 257141.853300001472235 ], [ 363570.671599999070168, 257150.883499998599291 ], [ 363572.205099999904633, 257160.184200000017881 ], [ 363573.808799996972084, 257161.25279999896884 ], [ 363574.598899997770786, 257163.159099999815226 ], [ 363581.008000001311302, 257168.066700000315905 ], [ 363589.047799997031689, 257170.8766999989748 ], [ 363593.077600002288818, 257171.120799999684095 ], [ 363604.480999998748302, 257157.704100001603365 ], [ 363580.462499998509884, 257137.453699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601061700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89229605, "LATITUDE": 18.34347878, "OBJECTID_1": 20853, "PARCEL_NO_": "105601061700", "Tax_Legal_": "404-15&POR 215 ANNAS RET NEW QTR.", "Name": "POGSON, THEOPHILIS & B", "Address": "P.O. BOX 4055", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 268100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.555572119, "SHAPE_Area": 597.51356572899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362898.278999999165535, 257136.936599999666214 ], [ 362886.995999999344349, 257136.210900001227856 ], [ 362872.491400003433228, 257135.036699999123812 ], [ 362871.593299999833107, 257145.795200001448393 ], [ 362870.693499997258186, 257156.764699999243021 ], [ 362870.634199999272823, 257163.73030000180006 ], [ 362885.945100001990795, 257164.910999998450279 ], [ 362898.278999999165535, 257136.936599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602076000", "MAP": "C9-354-T80", "PARCEL_NAM": "394-A-49", "ACRE": null, "LONGITUDE": -64.88604886, "LATITUDE": 18.34347858, "OBJECTID_1": 21369, "PARCEL_NO_": "105602076000", "Tax_Legal_": "394-A-49 ANNAS RETREAT NEW QTR.", "Name": "HARRY, FITZROY", "Address": "PO Box 10286", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 103100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.954680227, "SHAPE_Area": 582.27950363699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363561.766199998557568, 257155.032499998807907 ], [ 363561.820200003683567, 257148.700100000947714 ], [ 363562.651699997484684, 257145.751600001007318 ], [ 363526.365800000727177, 257145.665699999779463 ], [ 363527.863399997353554, 257159.188000001013279 ], [ 363530.192400000989437, 257169.761700000613928 ], [ 363561.766199998557568, 257155.032499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87549159, "LATITUDE": 18.34341863, "OBJECTID_1": 22128, "PARCEL_NO_": "105701052500", "Tax_Legal_": "SMITH BAY 80A EAST END QTR", "Name": "YARDE, VIVIAN and JEAN L", "Address": "PO BOX 302806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.19827391600001, "SHAPE_Area": 697.59538250499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364676.163800001144409, 257155.498500000685453 ], [ 364649.744300000369549, 257133.117400001734495 ], [ 364648.733000002801418, 257157.173799999058247 ], [ 364648.547799997031689, 257178.914900001138449 ], [ 364655.001900002360344, 257178.5456000007689 ], [ 364676.163800001144409, 257155.498500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601038400", "MAP": "129-A-45", "PARCEL_NAM": "129-A-45", "ACRE": ".166", "LONGITUDE": -64.8933962, "LATITUDE": 18.34345759, "OBJECTID_1": 20693, "PARCEL_NO_": "105601038400", "Tax_Legal_": "129A 45 ANNAS RETREAT NEW QTR", "Name": "FRANCIS, LINDA V. S", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21900, "Improved_V": 237100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.32242442800001, "SHAPE_Area": 851.88624631100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362788.505400002002716, 257149.548099998384714 ], [ 362772.575099997222424, 257126.408500000834465 ], [ 362744.194200001657009, 257144.963599998503923 ], [ 362754.523400001227856, 257162.99100000038743 ], [ 362788.505400002002716, 257149.548099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044800", "MAP": "D9-8611-T010", "PARCEL_NAM": "3A", "ACRE": null, "LONGITUDE": -64.89733813, "LATITUDE": 18.34304721, "OBJECTID_1": 20742, "PARCEL_NO_": "105601044800", "Tax_Legal_": "DONOE 3A,3B-1,2,3&4&3B NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 538800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.279184687, "SHAPE_Area": 9397.9970789399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362315.913900002837181, 257061.875999998301268 ], [ 362309.43639999628067, 257064.989399999380112 ], [ 362281.903099998831749, 257078.696199998259544 ], [ 362329.596699997782707, 257159.513199999928474 ], [ 362341.720200002193451, 257156.234999999403954 ], [ 362345.758900001645088, 257155.423599999397993 ], [ 362362.770599998533726, 257146.27479999884963 ], [ 362382.211999997496605, 257135.879200000315905 ], [ 362396.793999999761581, 257127.977000001817942 ], [ 362408.947999998927116, 257121.110399998724461 ], [ 362379.07769999653101, 257030.517900001257658 ], [ 362354.784100003540516, 257042.562399998307228 ], [ 362350.734499998390675, 257044.6402000002563 ], [ 362315.913900002837181, 257061.875999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044700", "MAP": null, "PARCEL_NAM": "116", "ACRE": null, "LONGITUDE": -64.89050664, "LATITUDE": 18.34333408, "OBJECTID_1": 21225, "PARCEL_NO_": "105602044700", "Tax_Legal_": "ANNAS RETREAT 116 NEW QTR", "Name": "RICHARDS, INGRID L. (LIFE ESTATE)", "Address": "4626 Morning Glory Trl", "City": "Bowie", "State": "Maryland", "Zip": 20720, "Country": "United States", "Land_Value": 241800, "Improved_V": 166800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.35494649399999, "SHAPE_Area": 2822.2897421500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363097.256499998271465, 257159.885499998927116 ], [ 363096.116800002753735, 257104.358600001782179 ], [ 363073.525700002908707, 257105.862500000745058 ], [ 363053.342699997127056, 257108.65260000154376 ], [ 363050.916599996387959, 257109.477099999785423 ], [ 363046.035499997437, 257114.503400001674891 ], [ 363044.806699998676777, 257164.100299999117851 ], [ 363070.6283999979496, 257161.989599999040365 ], [ 363091.60869999974966, 257160.261500000953674 ], [ 363097.256499998271465, 257159.885499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701017200", "MAP": "G9-2938-T79", "PARCEL_NAM": "7-1", "ACRE": ".51", "LONGITUDE": -64.88103251, "LATITUDE": 18.34328373, "OBJECTID_1": 21900, "PARCEL_NO_": "105701017200", "Tax_Legal_": "7-1&7-2 TABOR&HARMONY EAST END QTR", "Name": "GUMBS, A. & E", "Address": "6717 Estate Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 141300, "Improved_V": 251700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.50683035500001, "SHAPE_Area": 1410.93781519 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364088.259499996900558, 257162.719099998474121 ], [ 364088.480700001120567, 257136.756400000303984 ], [ 364089.053599998354912, 257129.737500000745058 ], [ 364083.487800002098083, 257120.944899998605251 ], [ 364071.212999999523163, 257111.235199999064207 ], [ 364046.435400001704693, 257097.777899999171495 ], [ 364044.653300002217293, 257097.629399999976158 ], [ 364044.87610000371933, 257100.005499999970198 ], [ 364063.601899996399879, 257122.831700000911951 ], [ 364066.749799996614456, 257131.934500001370907 ], [ 364065.82660000026226, 257145.647999998182058 ], [ 364059.154899999499321, 257171.557900000363588 ], [ 364088.259499996900558, 257162.719099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702023600", "MAP": "F9-889-T62", "PARCEL_NAM": "4G-5", "ACRE": "0.11", "LONGITUDE": -64.86760156, "LATITUDE": 18.34350258, "OBJECTID_1": 22399, "PARCEL_NO_": "105702023600", "Tax_Legal_": "SMITH BAY 4 G 5 EAST END QTR", "Name": "DE TOY, OLGA", "Address": "6625 Smith Bay--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15000, "Improved_V": 177200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.810274064200001, "SHAPE_Area": 542.228099488 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365486.405299998819828, 257159.168299999088049 ], [ 365484.764799997210503, 257158.307000000029802 ], [ 365477.020499996840954, 257175.6706000007689 ], [ 365476.119199998676777, 257177.691500000655651 ], [ 365481.482199996709824, 257180.260400000959635 ], [ 365499.403599999845028, 257188.844900000840425 ], [ 365503.64019999653101, 257180.1233000010252 ], [ 365508.24889999628067, 257170.635999999940395 ], [ 365504.61710000038147, 257168.729299999773502 ], [ 365486.405299998819828, 257159.168299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702064600", "MAP": "F9-3554-T78", "PARCEL_NAM": "57T-10", "ACRE": "0.27", "LONGITUDE": -64.87097581, "LATITUDE": 18.34339351, "OBJECTID_1": 22690, "PARCEL_NO_": "105702064600", "Tax_Legal_": "SMITH BAY 57T-10 EAST END QTR", "Name": "THE FLEMING FAMILY TRUST", "Address": "PO Box 502322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 88200, "Improved_V": 142600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.383772408, "SHAPE_Area": 1052.4787479500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365151.105200000107288, 257156.641399998217821 ], [ 365151.250900000333786, 257139.543999999761581 ], [ 365131.888599999248981, 257140.652100000530481 ], [ 365126.193999998271465, 257146.516100000590086 ], [ 365117.286799997091293, 257150.876200001686811 ], [ 365121.885600000619888, 257178.98930000141263 ], [ 365150.973899997770786, 257172.050200000405312 ], [ 365151.105200000107288, 257156.641399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702064800", "MAP": "F9-3553-T78", "PARCEL_NAM": "57T-12", "ACRE": "0.29", "LONGITUDE": -64.87173864, "LATITUDE": 18.34337806, "OBJECTID_1": 22692, "PARCEL_NO_": "105702064800", "Tax_Legal_": "SMITH BAY 57T-12 EAST END QTR", "Name": "FLEMING, JASMINE", "Address": "7014 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.07473125199999, "SHAPE_Area": 1273.2371005699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365076.962200000882149, 257151.601599998772144 ], [ 365073.742399998009205, 257150.94200000166893 ], [ 365069.734200000762939, 257148.16499999910593 ], [ 365060.173500001430511, 257134.576699998229742 ], [ 365056.206699997186661, 257126.944899998605251 ], [ 365027.647699996829033, 257166.396800000220537 ], [ 365046.957800000905991, 257171.410000000149012 ], [ 365069.486000001430511, 257177.2939000017941 ], [ 365076.962200000882149, 257151.601599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601062000", "MAP": "D9-6560-T99", "PARCEL_NAM": "404-17", "ACRE": "0.14", "LONGITUDE": -64.8916315, "LATITUDE": 18.34339351, "OBJECTID_1": 20856, "PARCEL_NO_": "105601062000", "Tax_Legal_": "ANNAS RETREAT 404-17 & POR. 215 NEW QTR.", "Name": "BLYDEN, CLARITA M", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 195100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.14445929199999, "SHAPE_Area": 830.38690358500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362970.904600001871586, 257130.776000000536442 ], [ 362970.99379999935627, 257120.301600001752377 ], [ 362932.394400000572205, 257138.552700001746416 ], [ 362932.892899997532368, 257143.974800001829863 ], [ 362935.984999999403954, 257159.621100001037121 ], [ 362970.803900003433228, 257142.596400000154972 ], [ 362970.904600001871586, 257130.776000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701068600", "MAP": "C9-273-T81", "PARCEL_NAM": "107B-106", "ACRE": "0.23", "LONGITUDE": -64.87927142, "LATITUDE": 18.34327795, "OBJECTID_1": 22244, "PARCEL_NO_": "105701068600", "Tax_Legal_": "ANNAS RETREAT 173B-106 NEW QTR.", "Name": "BAPTISTE, ANASTACIA & PETER", "Address": "PO Box 10284", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 350900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.43506401499999, "SHAPE_Area": 1194.61819227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364274.871899999678135, 257122.660999998450279 ], [ 364275.243699997663498, 257118.417399998754263 ], [ 364272.92059999704361, 257118.850299999117851 ], [ 364269.779181625577621, 257119.2065687898139 ], [ 364266.620022116054315, 257119.083491459750803 ], [ 364263.515842948458157, 257118.483901156636421 ], [ 364260.538099996745586, 257117.421599999070168 ], [ 364257.89159645466134, 257116.519965314946603 ], [ 364255.138814713980537, 257116.03096757462481 ], [ 364252.343693833507132, 257115.965964763658121 ], [ 364249.571156286227051, 257116.326466706959764 ], [ 364246.885600000619888, 257117.104100000113249 ], [ 364243.174400001764297, 257118.551300000399351 ], [ 364243.441899999976158, 257120.503899998962879 ], [ 364250.274400003254414, 257170.377900000661612 ], [ 364260.021999999880791, 257162.013900000602007 ], [ 364264.094999998807907, 257157.192099999636412 ], [ 364272.192299999296665, 257153.247600000351667 ], [ 364274.871899999678135, 257122.660999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701067700", "MAP": "C9-273-T81", "PARCEL_NAM": "173B-96", "ACRE": "0.26", "LONGITUDE": -64.88031264, "LATITUDE": 18.34332189, "OBJECTID_1": 22236, "PARCEL_NO_": "105701067700", "Tax_Legal_": "ANNAS RETREAT 173B-96 NEW QTR.", "Name": "BERKELEY, WALTER & MAVIS", "Address": "PO Box 10921", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32600, "Improved_V": 363000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.93529362300001, "SHAPE_Area": 1376.9987311899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364170.367899999022484, 257123.771600000560284 ], [ 364170.364500001072884, 257123.4087999984622 ], [ 364167.618000000715256, 257123.471900001168251 ], [ 364133.743900001049042, 257124.250100001692772 ], [ 364127.066799998283386, 257150.793299999088049 ], [ 364147.068199999630451, 257169.32209999859333 ], [ 364153.796798697963823, 257162.580789831699803 ], [ 364160.089936675387435, 257155.431264140672283 ], [ 364165.922899998724461, 257147.901599999517202 ], [ 364168.009522348002065, 257142.085459725552937 ], [ 364169.455892208847217, 257136.078006459807511 ], [ 364170.245094607933424, 257129.949496030021692 ], [ 364170.367899999022484, 257123.771600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88997104000001, "LATITUDE": 18.34328537, "OBJECTID_1": 21226, "PARCEL_NO_": "105602044800", "Tax_Legal_": "ANNAS RETREAT 115 NEW QTR", "Name": "EMPIRE REALTY", "Address": "6824 Creenoak Dr", "City": "Douglasville", "State": "Georgia", "Zip": 30135, "Country": "United States", "Land_Value": 119500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.49108787500001, "SHAPE_Area": 3474.6143929899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363097.256499998271465, 257159.885499998927116 ], [ 363119.043200001120567, 257158.164000000804663 ], [ 363152.125299997627735, 257155.690600000321865 ], [ 363159.387500002980232, 257155.116700001060963 ], [ 363159.054200001060963, 257099.596400000154972 ], [ 363096.116800002753735, 257104.358600001782179 ], [ 363097.256499998271465, 257159.885499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601035100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-23", "ACRE": ".168", "LONGITUDE": -64.89387904, "LATITUDE": 18.34337092, "OBJECTID_1": 20660, "PARCEL_NO_": "105601035100", "Tax_Legal_": "129A-23 ANNAS RETREAT No.1 NEW QTR", "Name": "SEAC, JEAN KESNOL & DANIELO LEBRUN", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 101300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.932502118, "SHAPE_Area": 763.63644625500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362733.742700003087521, 257141.28940000012517 ], [ 362717.022299997508526, 257116.243500001728535 ], [ 362698.374600000679493, 257128.123199999332428 ], [ 362695.941299997270107, 257129.792100001126528 ], [ 362712.658100001513958, 257155.260099999606609 ], [ 362733.742700003087521, 257141.28940000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601034800", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-16", "ACRE": ".168", "LONGITUDE": -64.89438359, "LATITUDE": 18.34337566, "OBJECTID_1": 20657, "PARCEL_NO_": "105601034800", "Tax_Legal_": "129A-16 ANNAS RETREAT NEW QTR", "Name": "STEVENS, ALCENTA", "Address": "PO Box 11304", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.674252026, "SHAPE_Area": 719.97656016600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362678.099899999797344, 257141.678399998694658 ], [ 362666.221000000834465, 257116.249899998307228 ], [ 362640.262599997222424, 257134.40260000154376 ], [ 362665.897299997508526, 257154.244100000709295 ], [ 362678.099899999797344, 257141.678399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702022800", "MAP": "F9-821-T61", "PARCEL_NAM": "4G-4", "ACRE": "0.11", "LONGITUDE": -64.86781123, "LATITUDE": 18.34340326, "OBJECTID_1": 22392, "PARCEL_NO_": "105702022800", "Tax_Legal_": "SMITH BAY 4G-4 EAST END QTR", "Name": "DE TOY, OLGA", "Address": "6625 Smith Bay--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15500, "Improved_V": 128100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.729735126500003, "SHAPE_Area": 502.11046910699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365478.116700001060963, 257154.816799998283386 ], [ 365463.155900001525879, 257147.300200000405312 ], [ 365461.598499998450279, 257151.794399999082088 ], [ 365455.711499996483326, 257167.313400000333786 ], [ 365468.57940000295639, 257174.079900000244379 ], [ 365476.119199998676777, 257177.691500000655651 ], [ 365477.020499996840954, 257175.6706000007689 ], [ 365484.764799997210503, 257158.307000000029802 ], [ 365478.116700001060963, 257154.816799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701068800", "MAP": "C9-273-T81", "PARCEL_NAM": "173B-108", "ACRE": "0.23", "LONGITUDE": -64.87875467000001, "LATITUDE": 18.34331123, "OBJECTID_1": 22246, "PARCEL_NO_": "105701068800", "Tax_Legal_": "173B-108 ANNAS RETREAT No.1 NEW QTR", "Name": "JAMES, JEROME G. & SHEILA S", "Address": "PO Box 8012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 213500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.324553157, "SHAPE_Area": 1133.9553248899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364308.758500002324581, 257117.643300000578165 ], [ 364307.137000001966953, 257121.447399999946356 ], [ 364293.14919999986887, 257154.2635000012815 ], [ 364299.565499998629093, 257158.326799999922514 ], [ 364305.141400001943111, 257166.394000001251698 ], [ 364332.707099996507168, 257148.887800000607967 ], [ 364335.876199997961521, 257146.875199999660254 ], [ 364330.759027967578731, 257137.85222700459417 ], [ 364325.058538610115647, 257129.185975661443081 ], [ 364318.799500003457069, 257120.914099998772144 ], [ 364313.86861443700036, 257119.003593440545956 ], [ 364308.758500002324581, 257117.643300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602044900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88931629, "LATITUDE": 18.34323267, "OBJECTID_1": 21227, "PARCEL_NO_": "105602044900", "Tax_Legal_": "ANNAS RETREAT 114 NEW QUARTER", "Name": "BRYAN, NORMA A", "Address": "PO Box 682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 124100, "Improved_V": 119000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.94518470100002, "SHAPE_Area": 4206.3336108599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363159.387500002980232, 257155.116700001060963 ], [ 363188.43639999628067, 257152.821299999952316 ], [ 363200.540100000798702, 257151.864900000393391 ], [ 363234.428599998354912, 257149.39809999987483 ], [ 363235.477600000798702, 257120.909000001847744 ], [ 363235.706000000238419, 257094.102000001817942 ], [ 363159.054200001060963, 257099.596400000154972 ], [ 363159.387500002980232, 257155.116700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602073300", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-40", "ACRE": "6,000 sq ft", "LONGITUDE": -64.88551525, "LATITUDE": 18.34334258, "OBJECTID_1": 21343, "PARCEL_NO_": "105602073300", "Tax_Legal_": "ANNAS RETREAT 394A-40 NEW QTR", "Name": "CALLWOOD, MARY ANN SILCOTT", "Address": "PO Box 7651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 277700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.12091311, "SHAPE_Area": 628.32004068799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363617.511500000953674, 257142.611999999731779 ], [ 363592.688400000333786, 257122.143899999558926 ], [ 363580.462499998509884, 257137.453699998557568 ], [ 363604.480999998748302, 257157.704100001603365 ], [ 363617.511500000953674, 257142.611999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88148462, "LATITUDE": 18.34317054, "OBJECTID_1": 21862, "PARCEL_NO_": "105701012900", "Tax_Legal_": "ANNAS RETREAT 23 NEW QUARTER", "Name": "CHRISTIAN, C. & HENDRICKSON", "Address": "40 EG LAGRANGE, FREDERIKSTED", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 128900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.84720702000001, "SHAPE_Area": 2868.25380941 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364051.987999998033047, 257160.944600000977516 ], [ 364056.976999998092651, 257143.253499999642372 ], [ 364057.864200003445148, 257133.761599998921156 ], [ 364056.294699996709824, 257128.682500001043081 ], [ 364053.911700002849102, 257124.441100001335144 ], [ 364023.574000000953674, 257088.729100000113249 ], [ 364017.148599997162819, 257085.721200000494719 ], [ 363983.724799998104572, 257128.299600001424551 ], [ 364021.472199998795986, 257146.129399999976158 ], [ 364051.987999998033047, 257160.944600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601038300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-46", "ACRE": ".196", "LONGITUDE": -64.89316413, "LATITUDE": 18.34333353, "OBJECTID_1": 20692, "PARCEL_NO_": "105601038300", "Tax_Legal_": "ANNAS RETREAT 129A 46 NEW QRR", "Name": "CHRISTIAN, DELMA P. (TRUSTEE)", "Address": "4804 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022229, "Country": "United States", "Land_Value": 27400, "Improved_V": 148400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.105930266, "SHAPE_Area": 692.91379219800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362803.029799997806549, 257148.400400001555681 ], [ 362799.291299998760223, 257113.961599998176098 ], [ 362783.929999999701977, 257118.690999999642372 ], [ 362772.575099997222424, 257126.408500000834465 ], [ 362788.505400002002716, 257149.548099998384714 ], [ 362803.029799997806549, 257148.400400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601037200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-66", "ACRE": ".177", "LONGITUDE": -64.89293846, "LATITUDE": 18.34331142, "OBJECTID_1": 20681, "PARCEL_NO_": "105601037200", "Tax_Legal_": "129-66 ANNAS RETREAT NEW QTR", "Name": "NEVILLE O SR & JANET I MAYNARD LIV TR", "Address": "PO Box 8328", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 171600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.277801928, "SHAPE_Area": 915.716300015 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362828.851599998772144, 257146.289700001478195 ], [ 362825.923000000417233, 257111.435300000011921 ], [ 362799.291299998760223, 257113.961599998176098 ], [ 362803.029799997806549, 257148.400400001555681 ], [ 362809.485699996352196, 257147.820000000298023 ], [ 362828.851599998772144, 257146.289700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702064900", "MAP": "F9-3553-T78", "PARCEL_NAM": "57T-13", "ACRE": "0.35", "LONGITUDE": -64.87193875, "LATITUDE": 18.34315322, "OBJECTID_1": 22693, "PARCEL_NO_": "105702064900", "Tax_Legal_": "SMITH BAY 57T-13 EAST END QTR", "Name": "SCATLIFFE, RUDENCE & ICYLMA", "Address": "PO Box 502153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 44000, "Improved_V": 226900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.46652392199999, "SHAPE_Area": 1635.52264014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365056.206699997186661, 257126.944899998605251 ], [ 365048.274800002574921, 257111.470199998468161 ], [ 365037.988799996674061, 257088.376800000667572 ], [ 365025.671099998056889, 257114.45160000026226 ], [ 365018.207500003278255, 257138.666200000792742 ], [ 365014.83839999884367, 257155.526099998503923 ], [ 365014.775499999523163, 257162.913899999111891 ], [ 365027.647699996829033, 257166.396800000220537 ], [ 365056.206699997186661, 257126.944899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044900", "MAP": "G9-802-T65", "PARCEL_NAM": "146-6", "ACRE": null, "LONGITUDE": -64.8962201, "LATITUDE": 18.34317188, "OBJECTID_1": 20743, "PARCEL_NO_": "105601044900", "Tax_Legal_": "146-6 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 100200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.38406498699999, "SHAPE_Area": 1502.79014714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362499.38740000128746, 257122.771200001239777 ], [ 362464.08110000193119, 257085.886799998581409 ], [ 362455.973099999129772, 257091.097800001502037 ], [ 362439.183700002729893, 257101.932500001043081 ], [ 362453.053099997341633, 257128.339200001209974 ], [ 362468.4679000005126, 257121.486600000411272 ], [ 362475.510999999940395, 257135.656700000166893 ], [ 362484.656900003552437, 257131.651399999856949 ], [ 362499.38740000128746, 257122.771200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87487545, "LATITUDE": 18.34324536, "OBJECTID_1": 22129, "PARCEL_NO_": "105701052600", "Tax_Legal_": "SMITH BAY 74 EAST END QTR", "Name": "CRUSE, FLORENCE", "Address": "PO Box 8384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35100, "Improved_V": 128800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.98557452, "SHAPE_Area": 1074.9435183799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364746.465800002217293, 257138.130899999290705 ], [ 364723.273400001227856, 257115.565200001001358 ], [ 364700.500600002706051, 257138.388000000268221 ], [ 364724.483199998736382, 257162.859999999403954 ], [ 364732.634400002658367, 257152.583200000226498 ], [ 364746.465800002217293, 257138.130899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601037100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-65", "ACRE": ".183", "LONGITUDE": -64.89270414000001, "LATITUDE": 18.34328727, "OBJECTID_1": 20680, "PARCEL_NO_": "105601037100", "Tax_Legal_": "ANNAS RETREAT 129-65 NEW QTR", "Name": "EXCELMAN & DELITA C DELAGARDE JOINT LIVING TRUST", "Address": "4802 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 153500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.083723115, "SHAPE_Area": 847.71969590599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362851.433700002729893, 257145.841299999505281 ], [ 362849.343900002539158, 257107.193999998271465 ], [ 362825.923000000417233, 257111.435300000011921 ], [ 362828.851599998772144, 257146.289700001478195 ], [ 362832.886699996888638, 257145.900600001215935 ], [ 362851.433700002729893, 257145.841299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602049800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88882015, "LATITUDE": 18.34332041, "OBJECTID_1": 21272, "PARCEL_NO_": "105602049800", "Tax_Legal_": "113A ESTATE ANNAS RETREAT NEW QUARTER", "Name": "SMALLS, PAUL A", "Address": "7492 Estate Bovoni Number 5", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 78400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.563188999, "SHAPE_Area": 817.67614593899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363265.090000003576279, 257147.115899998694658 ], [ 363263.707500003278255, 257120.084600001573563 ], [ 363235.477600000798702, 257120.909000001847744 ], [ 363234.428599998354912, 257149.39809999987483 ], [ 363265.090000003576279, 257147.115899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602071100", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-51", "ACRE": "0.14", "LONGITUDE": -64.88334525, "LATITUDE": 18.3432159, "OBJECTID_1": 21322, "PARCEL_NO_": "105602071100", "Tax_Legal_": "394A-51 ANNAS RETREAT NEW QTR.", "Name": "LEONEICE RICHARDS (life estate)", "Address": "394A-2 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 117600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.104792285, "SHAPE_Area": 801.76350199299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363830.717799998819828, 257104.460299998521805 ], [ 363811.058799996972084, 257140.39640000090003 ], [ 363815.85360000282526, 257145.501899998635054 ], [ 363816.638300001621246, 257148.041499998420477 ], [ 363818.238300003111362, 257149.532200001180172 ], [ 363819.01410000026226, 257153.127199999988079 ], [ 363820.619499996304512, 257153.984700001776218 ], [ 363822.237499997019768, 257153.364599999040365 ], [ 363836.93639999628067, 257131.742300000041723 ], [ 363846.782899998128414, 257111.769000001251698 ], [ 363830.717799998819828, 257104.460299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601035800", "MAP": "A9-15-T62", "PARCEL_NAM": "129-64", "ACRE": ".231", "LONGITUDE": -64.89249078, "LATITUDE": 18.34325944, "OBJECTID_1": 20667, "PARCEL_NO_": "105601035800", "Tax_Legal_": "129-64 ANNAS RETREAT NEW QTR", "Name": "THOMAS, CLIFFORD A", "Address": "P.O. BOX 4314", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 117000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.94473650899999, "SHAPE_Area": 921.50376992600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362851.433700002729893, 257145.841299999505281 ], [ 362871.593299999833107, 257145.795200001448393 ], [ 362872.491400003433228, 257135.036699999123812 ], [ 362872.617200002074242, 257120.261199999600649 ], [ 362873.554799996316433, 257104.859099999070168 ], [ 362868.731299996376038, 257103.130800001323223 ], [ 362863.893399998545647, 257103.0912000015378 ], [ 362849.343900002539158, 257107.193999998271465 ], [ 362851.433700002729893, 257145.841299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702052300", "MAP": "F9-423-T59", "PARCEL_NAM": "59", "ACRE": "0.22", "LONGITUDE": -64.87438853, "LATITUDE": 18.34325596, "OBJECTID_1": 22613, "PARCEL_NO_": "105702052300", "Tax_Legal_": "59 SMITH BAY NO.1 EAST END QTR", "Name": "RICHWORTH PHILIP LIV TR", "Address": "PO Box 12396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32800, "Improved_V": 161800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.362377327, "SHAPE_Area": 812.57029684199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364794.023900002241135, 257140.20890000090003 ], [ 364774.040500000119209, 257119.569299999624491 ], [ 364755.322700001299381, 257139.681099999696016 ], [ 364776.907899998128414, 257161.600400000810623 ], [ 364794.023900002241135, 257140.20890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602045000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88864035, "LATITUDE": 18.34313709, "OBJECTID_1": 21228, "PARCEL_NO_": "105602045000", "Tax_Legal_": "REM. 113 ANNAS RETREAT NEW QUARTER", "Name": "SMALLS, DORIS", "Address": "7492 Estate Bovoni Number 5", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 96300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.66869504, "SHAPE_Area": 2282.989125 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363235.477600000798702, 257120.909000001847744 ], [ 363263.707500003278255, 257120.084600001573563 ], [ 363265.090000003576279, 257147.115899998694658 ], [ 363288.49099999666214, 257145.19649999961257 ], [ 363289.309900000691414, 257143.725499998778105 ], [ 363294.45889999717474, 257107.248500000685453 ], [ 363294.536200001835823, 257098.172100000083447 ], [ 363293.7550999969244, 257095.210400000214577 ], [ 363292.160400003194809, 257093.086399998515844 ], [ 363288.946000002324581, 257091.793600000441074 ], [ 363235.706000000238419, 257094.102000001817942 ], [ 363235.477600000798702, 257120.909000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601063800", "MAP": null, "PARCEL_NAM": "404-34", "ACRE": "0.44", "LONGITUDE": -64.8916189, "LATITUDE": 18.34310375, "OBJECTID_1": 20873, "PARCEL_NO_": "105601063800", "Tax_Legal_": "404-34 ANNAS RETREAT NEW QTR.", "Name": "PRINCE, IVY", "Address": "PO Box 9489", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.91132105200001, "SHAPE_Area": 1837.6988809500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362983.989000000059605, 257109.351500000804663 ], [ 362971.352399997413158, 257078.217300001531839 ], [ 362940.565099999308586, 257095.274999998509884 ], [ 362933.281300000846386, 257098.381799999624491 ], [ 362929.203000001609325, 257103.836899999529123 ], [ 362932.394400000572205, 257138.552700001746416 ], [ 362970.99379999935627, 257120.301600001752377 ], [ 362971.077899999916553, 257110.433600001037121 ], [ 362983.989000000059605, 257109.351500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601035000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-15", "ACRE": ".166", "LONGITUDE": -64.89419234, "LATITUDE": 18.34325682, "OBJECTID_1": 20659, "PARCEL_NO_": "105601035000", "Tax_Legal_": "ANNAS RETREAT 129A 15 NEW QTR", "Name": "BUCHANAN, RUPERT AND CHRISTINE", "Address": "PO Box 9966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 145800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.689551764, "SHAPE_Area": 630.44990580399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362678.099899999797344, 257141.678399998694658 ], [ 362679.726899996399879, 257140.002999998629093 ], [ 362695.941299997270107, 257129.792100001126528 ], [ 362698.374600000679493, 257128.123199999332428 ], [ 362684.062399998307228, 257104.363600000739098 ], [ 362666.221000000834465, 257116.249899998307228 ], [ 362678.099899999797344, 257141.678399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701068700", "MAP": "C9-273-T81", "PARCEL_NAM": "173B-107", "ACRE": "0.23", "LONGITUDE": -64.87899492, "LATITUDE": 18.3432313, "OBJECTID_1": 22245, "PARCEL_NO_": "105701068700", "Tax_Legal_": "ANNAS RETREAT 173B-107 NEW QUARTER", "Name": "BIGBY, NIGEL", "Address": "PO Box 307362", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28900, "Improved_V": 76500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.99933257500001, "SHAPE_Area": 978.41390766799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364293.14919999986887, 257154.2635000012815 ], [ 364307.137000001966953, 257121.447399999946356 ], [ 364308.758500002324581, 257117.643300000578165 ], [ 364303.961987543851137, 257116.893022557138465 ], [ 364299.114399999380112, 257116.62779999896884 ], [ 364291.123712958826218, 257116.695139557326911 ], [ 364283.155104925739579, 257117.292550648475299 ], [ 364275.243699997663498, 257118.417399998754263 ], [ 364274.871899999678135, 257122.660999998450279 ], [ 364272.192299999296665, 257153.247600000351667 ], [ 364278.6570999994874, 257151.611800000071526 ], [ 364284.301299996674061, 257151.657999999821186 ], [ 364293.14919999986887, 257154.2635000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87578022, "LATITUDE": 18.343256, "OBJECTID_1": 21980, "PARCEL_NO_": "105701033300", "Tax_Legal_": "SMITH BAY 3 20 EAST END QUARTER", "Name": "BLYDEN, MARY I", "Address": "PO Box 9436", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56700, "Improved_V": 232900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.40725427300001, "SHAPE_Area": 1481.31606824 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364650.636900000274181, 257122.992199998348951 ], [ 364607.108599998056889, 257121.158300001174212 ], [ 364605.206500001251698, 257155.128800000995398 ], [ 364648.733000002801418, 257157.173799999058247 ], [ 364649.744300000369549, 257133.117400001734495 ], [ 364650.636900000274181, 257122.992199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601038100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-24", "ACRE": ".166", "LONGITUDE": -64.89368582, "LATITUDE": 18.34325275, "OBJECTID_1": 20690, "PARCEL_NO_": "105601038100", "Tax_Legal_": "129A-24 ANNAS RETREAT NO.1 NEW QTR", "Name": "MILLINER, CEDRIC, LORRIANE, LUTHER, MAUREEN & SHARLEEN", "Address": "4906 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 92800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.724580471, "SHAPE_Area": 697.25405228900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362754.827299997210503, 257127.31870000064373 ], [ 362734.860100001096725, 257104.779399998486042 ], [ 362719.455600000917912, 257114.574700001627207 ], [ 362717.022299997508526, 257116.243500001728535 ], [ 362733.742700003087521, 257141.28940000012517 ], [ 362754.827299997210503, 257127.31870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701055100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87540997000001, "LATITUDE": 18.34317891, "OBJECTID_1": 22149, "PARCEL_NO_": "105701055100", "Tax_Legal_": "SMITH BAY 80B EAST END QTR", "Name": "YARDE, VIVIAN and JEAN L", "Address": "PO BOX 302806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36700, "Improved_V": 315900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.432288089, "SHAPE_Area": 1049.5843168199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364651.635600000619888, 257100.413400001823902 ], [ 364650.636900000274181, 257122.992199998348951 ], [ 364649.744300000369549, 257133.117400001734495 ], [ 364676.163800001144409, 257155.498500000685453 ], [ 364690.8158999979496, 257139.364199999719858 ], [ 364651.635600000619888, 257100.413400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701067600", "MAP": "C9-273-T81", "PARCEL_NAM": "173B-97", "ACRE": "0.26", "LONGITUDE": -64.88063836000001, "LATITUDE": 18.34327236, "OBJECTID_1": 22235, "PARCEL_NO_": "105701067600", "Tax_Legal_": "ANNAS RETREAT 173B-97 NEW QUARTER", "Name": "THOMAS, LOUIS & JANICE", "Address": "PO Box 11334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.48316147599999, "SHAPE_Area": 827.80350218199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364129.710500001907349, 257124.428199999034405 ], [ 364099.869800001382828, 257125.028400000184774 ], [ 364093.473200000822544, 257118.643199998885393 ], [ 364098.199600003659725, 257131.76969999819994 ], [ 364099.661200001835823, 257149.5135000012815 ], [ 364127.066799998283386, 257150.793299999088049 ], [ 364133.743900001049042, 257124.250100001692772 ], [ 364129.710500001907349, 257124.428199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602073700", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-20", "ACRE": "0.14", "LONGITUDE": -64.88600605000001, "LATITUDE": 18.34330673, "OBJECTID_1": 21347, "PARCEL_NO_": "105602073700", "Tax_Legal_": "ANNAS RETREAT 394A-20 NEW QTR.", "Name": "CALLWOOD, WINIFRED", "Address": "CRUZ BAY", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 77600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.846537509, "SHAPE_Area": 777.25137661300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363571.625399999320507, 257133.581599999219179 ], [ 363540.290700003504753, 257120.237399999052286 ], [ 363528.084499999880791, 257133.225299999117851 ], [ 363526.365800000727177, 257145.665699999779463 ], [ 363562.651699997484684, 257145.751600001007318 ], [ 363571.625399999320507, 257133.581599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87304717000001, "LATITUDE": 18.34247648, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.48746726900001, "SHAPE_Area": 559.41616268200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364900.609399996697903, 257057.981699999421835 ], [ 364914.033600002527237, 257074.069600000977516 ], [ 364932.767399996519089, 257049.232900001108646 ], [ 364933.502599999308586, 257048.258200000971556 ], [ 364935.961099997162819, 257043.634300000965595 ], [ 364917.430299997329712, 257041.7939000017941 ], [ 364900.609399996697903, 257057.981699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702056500", "MAP": "D9-4434-T88", "PARCEL_NAM": "123", "ACRE": ".23", "LONGITUDE": -64.87422278, "LATITUDE": 18.34292926, "OBJECTID_1": 22619, "PARCEL_NO_": "105702056500", "Tax_Legal_": "SMITH BAY ESTATE 123 EAST END QTR.", "Name": "RICHARDSON, CALDWELL E", "Address": "6510 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.62011224699999, "SHAPE_Area": 949.81121709499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364794.950599998235703, 257078.708599999547005 ], [ 364773.079000003635883, 257107.300500001758337 ], [ 364794.336099997162819, 257129.142400000244379 ], [ 364809.94879999756813, 257104.527199998497963 ], [ 364808.862999998033047, 257102.122400000691414 ], [ 364807.275499999523163, 257099.154100000858307 ], [ 364804.905100002884865, 257093.435199998319149 ], [ 364798.541000001132488, 257083.250599998980761 ], [ 364794.950599998235703, 257078.708599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702030600", "MAP": "D9-411-T63 (2)", "PARCEL_NAM": "40 O", "ACRE": "0.30", "LONGITUDE": -64.87068247000001, "LATITUDE": 18.34323774, "OBJECTID_1": 22470, "PARCEL_NO_": "105702030600", "Tax_Legal_": "SMITH BAY 40 O EAST END QTR", "Name": "EMERIC, EDGARDO & GLENDA E", "Address": "PO Box 11747", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35700, "Improved_V": 126800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.492849818, "SHAPE_Area": 656.91395227299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365181.815200001001358, 257148.660100001841784 ], [ 365180.405799999833107, 257124.795000001788139 ], [ 365150.462499998509884, 257137.426699999719858 ], [ 365151.250900000333786, 257139.543999999761581 ], [ 365151.105200000107288, 257156.641399998217821 ], [ 365181.815200001001358, 257148.660100001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601061800", "MAP": null, "PARCEL_NAM": "404-320", "ACRE": null, "LONGITUDE": -64.89205696000001, "LATITUDE": 18.34325208, "OBJECTID_1": 20854, "PARCEL_NO_": "105601061800", "Tax_Legal_": "ANNAS RETREAT 404-320 NEW QTR", "Name": "ARCHIBALD, NAOMI", "Address": "404-320 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 129400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.925384718, "SHAPE_Area": 659.63940127299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362904.155100002884865, 257109.753600001335144 ], [ 362886.995999999344349, 257136.210900001227856 ], [ 362898.278999999165535, 257136.936599999666214 ], [ 362922.506099998950958, 257132.701900001615286 ], [ 362921.031900003552437, 257116.435600001364946 ], [ 362919.455300003290176, 257112.200800001621246 ], [ 362917.056100003421307, 257109.859200000762939 ], [ 362913.037100002169609, 257108.348600000143051 ], [ 362904.155100002884865, 257109.753600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602073100", "MAP": null, "PARCEL_NAM": "394A-39 REM", "ACRE": "2,966 sq ft", "LONGITUDE": -64.88543368000001, "LATITUDE": 18.34324801, "OBJECTID_1": 21341, "PARCEL_NO_": "105602073100", "Tax_Legal_": "ANNAS RETREAT 394A-39 NEW QTR.", "Name": "CALLWOOD, MARY ANN S", "Address": "PO Box 7651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.454835634700004, "SHAPE_Area": 239.87964450699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363622.452299997210503, 257136.889499999582767 ], [ 363597.269100002944469, 257116.464699998497963 ], [ 363592.688400000333786, 257122.143899999558926 ], [ 363617.511500000953674, 257142.611999999731779 ], [ 363622.452299997210503, 257136.889499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032200", "MAP": "D9-619-T66", "PARCEL_NAM": "105", "ACRE": "0.20", "LONGITUDE": -64.86880997, "LATITUDE": 18.34316918, "OBJECTID_1": 22488, "PARCEL_NO_": "105702032200", "Tax_Legal_": "SMITH BAY ESTATE 105 1,2&3 EASTEND QTR.", "Name": "EMANUEL, ANTHON O. & VENZEN, EDNA", "Address": "PO Box 306873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65300, "Improved_V": 67000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.80020679699999, "SHAPE_Area": 957.76571167700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365383.661300003528595, 257118.859200000762939 ], [ 365382.95889999717474, 257116.696899998933077 ], [ 365340.718500003218651, 257133.27309999987483 ], [ 365342.39190000295639, 257135.8310999982059 ], [ 365348.738099999725819, 257148.126499999314547 ], [ 365350.291400000452995, 257155.10530000180006 ], [ 365351.891400001943111, 257156.596000000834465 ], [ 365353.502199999988079, 257156.820300001651049 ], [ 365355.118500001728535, 257156.411299999803305 ], [ 365372.162500001490116, 257143.462999999523163 ], [ 365388.378700003027916, 257133.04109999909997 ], [ 365383.661300003528595, 257118.859200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601063600", "MAP": "D9-2080-T82", "PARCEL_NAM": "404-321", "ACRE": ".09", "LONGITUDE": -64.89227629, "LATITUDE": 18.34322282, "OBJECTID_1": 20871, "PARCEL_NO_": "105601063600", "Tax_Legal_": "ANNAS RETREAT 404-321 NEW QTR.", "Name": "DEMETREE, W & J. BOX 47050", "Address": "3740 Beach Blvd", "City": "Jacksonville", "State": "Florida", "Zip": 32207, "Country": "United States", "Land_Value": 11300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.918089971, "SHAPE_Area": 619.554360191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362886.995999999344349, 257136.210900001227856 ], [ 362904.155100002884865, 257109.753600001335144 ], [ 362892.053199999034405, 257110.4989 ], [ 362879.978299997746944, 257108.078000001609325 ], [ 362873.554799996316433, 257104.859099999070168 ], [ 362872.617200002074242, 257120.261199999600649 ], [ 362872.491400003433228, 257135.036699999123812 ], [ 362886.995999999344349, 257136.210900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601041900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-28", "ACRE": ".202", "LONGITUDE": -64.89468369, "LATITUDE": 18.34313984, "OBJECTID_1": 20715, "PARCEL_NO_": "105601041900", "Tax_Legal_": "129A-28 ANNAS RETREAT NEW QTR", "Name": "RICHARDS, ALFORD & ENID", "Address": "P.O. BOX 4817", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 171800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.76161760100001, "SHAPE_Area": 886.86476613499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362620.115599997341633, 257132.971200000494719 ], [ 362624.168700002133846, 257130.471200000494719 ], [ 362633.864200003445148, 257128.228500001132488 ], [ 362650.089400000870228, 257116.751200001686811 ], [ 362618.983000002801418, 257076.599899999797344 ], [ 362620.115599997341633, 257132.971200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044700", "MAP": "G9-802-T65", "PARCEL_NAM": "146-1", "ACRE": null, "LONGITUDE": -64.89585823, "LATITUDE": 18.34295327, "OBJECTID_1": 20741, "PARCEL_NO_": "105601044700", "Tax_Legal_": "146-1 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.1161885, "SHAPE_Area": 2908.9539579000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362544.274300001561642, 257091.046700000762939 ], [ 362519.185300000011921, 257052.828699998557568 ], [ 362518.397200003266335, 257051.923099998384714 ], [ 362464.08110000193119, 257085.886799998581409 ], [ 362499.38740000128746, 257122.771200001239777 ], [ 362505.730700001120567, 257118.947200000286102 ], [ 362512.227899998426437, 257113.511900000274181 ], [ 362540.612499997019768, 257094.534699998795986 ], [ 362544.274300001561642, 257091.046700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702023000", "MAP": "G9-583-T61", "PARCEL_NAM": "4G-3", "ACRE": "0.21", "LONGITUDE": -64.86759381, "LATITUDE": 18.34324995, "OBJECTID_1": 22394, "PARCEL_NO_": "105702023000", "Tax_Legal_": "SMITH BAY 4G 3 EAST END QTR", "Name": "ROUSE, ORVILLE & WENDE", "Address": "6625 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27300, "Improved_V": 94800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.44234334800001, "SHAPE_Area": 816.48538964800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365519.886399999260902, 257147.751499999314547 ], [ 365514.324199996888638, 257136.284000001847744 ], [ 365465.732699997723103, 257139.864100001752377 ], [ 365463.155900001525879, 257147.300200000405312 ], [ 365478.116700001060963, 257154.816799998283386 ], [ 365485.615599997341633, 257154.416999999433756 ], [ 365521.706399999558926, 257152.492400001734495 ], [ 365522.173799999058247, 257152.467399999499321 ], [ 365521.202799998223782, 257150.465599998831749 ], [ 365519.886399999260902, 257147.751499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602071200", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-2", "ACRE": "0.14", "LONGITUDE": -64.88348885000001, "LATITUDE": 18.34312381, "OBJECTID_1": 21323, "PARCEL_NO_": "105602071200", "Tax_Legal_": "394A-2 ANNAS RETREAT NEW QTR.", "Name": "FLORENT, LEONEICE (LIFE ESTATE)", "Address": "394A-2 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 424300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.896207609, "SHAPE_Area": 713.84922106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363830.717799998819828, 257104.460299998521805 ], [ 363813.045500002801418, 257096.505199998617172 ], [ 363796.624300003051758, 257130.990200001746416 ], [ 363807.860600002110004, 257137.203899998217821 ], [ 363811.058799996972084, 257140.39640000090003 ], [ 363830.717799998819828, 257104.460299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064900", "MAP": "C9-274-T81", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87869966, "LATITUDE": 18.34299934, "OBJECTID_1": 22209, "PARCEL_NO_": "105701064900", "Tax_Legal_": "REMAINDER 173B-82 ANNAS RETREAT NEW QTR", "Name": "HYPPOLITE, VIERGENITH & CASTEL, JULNER", "Address": "PO Box 502743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 43100, "Improved_V": 322400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.38746384299998, "SHAPE_Area": 1942.9310682400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364339.195299997925758, 257144.50789999961853 ], [ 364349.182099997997284, 257108.07039999961853 ], [ 364356.663699999451637, 257081.745000001043081 ], [ 364357.714400000870228, 257078.047699999064207 ], [ 364352.670183117152192, 257083.037894272303674 ], [ 364347.23480000346899, 257087.598900001496077 ], [ 364340.744182190333959, 257090.609530787565745 ], [ 364333.997107558534481, 257092.990497238148237 ], [ 364327.054499998688698, 257094.720300000160933 ], [ 364318.445238908461761, 257096.365781305677956 ], [ 364309.757954270404298, 257097.53114428097615 ], [ 364301.019400000572205, 257098.212799999862909 ], [ 364293.906610367354006, 257097.972135851247003 ], [ 364286.796882213617209, 257098.290665565786185 ], [ 364279.73411042947555, 257099.166422566631809 ], [ 364272.761900000274181, 257100.594000000506639 ], [ 364268.987971364113037, 257102.499579376162728 ], [ 364265.4299673254136, 257104.783080496941693 ], [ 364262.125600002706051, 257107.420299999415874 ], [ 364261.786245544150006, 257107.716741991898743 ], [ 364261.498912696202751, 257108.063843040494248 ], [ 364261.271063007821795, 257108.452589516906301 ], [ 364261.108613350661471, 257108.872886331460904 ], [ 364261.015782268135808, 257109.313819085480645 ], [ 364260.994980426738039, 257109.763937499723397 ], [ 364261.046748015156481, 257110.211552758875769 ], [ 364261.169740716461092, 257110.645041050360305 ], [ 364261.360764617973473, 257111.053145415062318 ], [ 364261.614859151304699, 257111.425268071674509 ], [ 364261.925425910507329, 257111.751745622983435 ], [ 364262.284400001168251, 257112.024099998176098 ], [ 364272.724145038344432, 257111.71165836873115 ], [ 364283.167327533883508, 257111.87239286507247 ], [ 364293.592512026603799, 257112.505973566847388 ], [ 364303.978299997746944, 257113.611099999397993 ], [ 364310.425200000405312, 257114.085999999195337 ], [ 364315.250500001013279, 257115.603199999779463 ], [ 364320.07039999961853, 257117.753600001335144 ], [ 364327.275100000202656, 257123.934300001710653 ], [ 364339.195299997925758, 257144.50789999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702063000", "MAP": "D9-6923-T001", "PARCEL_NAM": "57X-2", "ACRE": ".28", "LONGITUDE": -64.87223397, "LATITUDE": 18.34305101, "OBJECTID_1": 22675, "PARCEL_NO_": "105702063000", "Tax_Legal_": "SMITH BAY 57X-2 REM. 1,2&3 EASTEND QTR.", "Name": "SIMON, ROSITA & CLAVE", "Address": "6230 SW 18th Ct", "City": "NORTH LAUDERDALE", "State": "Florida", "Zip": 33068, "Country": "United States", "Land_Value": 36400, "Improved_V": 82200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.641164215, "SHAPE_Area": 915.53688028500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364987.701399996876717, 257135.224800001829863 ], [ 365008.009900003671646, 257143.339999999850988 ], [ 365009.357900001108646, 257136.271800000220537 ], [ 365017.647600002586842, 257109.741799999028444 ], [ 365020.10249999910593, 257105.540100000798702 ], [ 365021.101300001144409, 257102.368099998682737 ], [ 364994.008400000631809, 257100.368500001728535 ], [ 364987.701399996876717, 257135.224800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105801011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86134985, "LATITUDE": 18.34166282, "OBJECTID_1": 23735, "PARCEL_NO_": "105801011300", "Tax_Legal_": "SMITH BAY ESTATE 13 EAST END", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 1649100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 809.05414379000001, "SHAPE_Area": 25630.266210599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366253.547600001096725, 257045.974300000816584 ], [ 366211.174500003457069, 257003.197700001299381 ], [ 366136.164399996399879, 256815.977099999785423 ], [ 366083.4628000035882, 256849.742899999022484 ], [ 366075.358300000429153, 256854.531700000166893 ], [ 366060.785300001502037, 256861.378600001335144 ], [ 366182.429200001060963, 257159.171700000762939 ], [ 366180.929899998009205, 257145.860500000417233 ], [ 366182.576700001955032, 257141.863200001418591 ], [ 366185.015399999916553, 257139.561200000345707 ], [ 366219.312100000679493, 257089.179400000721216 ], [ 366235.628899998962879, 257066.936999998986721 ], [ 366237.250500001013279, 257065.894799999892712 ], [ 366242.963100001215935, 257057.920000001788139 ], [ 366245.398199997842312, 257056.040100000798702 ], [ 366253.547600001096725, 257045.974300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601038200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-14", "ACRE": ".168", "LONGITUDE": -64.89400145, "LATITUDE": 18.34313106, "OBJECTID_1": 20691, "PARCEL_NO_": "105601038200", "Tax_Legal_": "ANNAS RETREAT 129-A-14 NEW QTR", "Name": "WILLIAM DANIEL & ROSITA DANIEL (LIFE ESTATE)", "Address": "PO Box 502364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23300, "Improved_V": 48300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.948621389, "SHAPE_Area": 726.35867186300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362719.455600000917912, 257114.574700001627207 ], [ 362706.766800001263618, 257089.561799999326468 ], [ 362684.062399998307228, 257104.363600000739098 ], [ 362698.374600000679493, 257128.123199999332428 ], [ 362717.022299997508526, 257116.243500001728535 ], [ 362719.455600000917912, 257114.574700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702065000", "MAP": "F9-3531-T77", "PARCEL_NAM": "57T-14", "ACRE": "0.25", "LONGITUDE": -64.87125392, "LATITUDE": 18.34317508, "OBJECTID_1": 22694, "PARCEL_NO_": "105702065000", "Tax_Legal_": "SMITH BAY 57T-14 EAST END QTR", "Name": "BUTLER, ROOSEVELT", "Address": "6439 NE 36th Ave", "City": "Portland", "State": "Oregon", "Zip": 97211, "Country": "United States", "Land_Value": 41700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.685020287, "SHAPE_Area": 805.59009971399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365103.888800002634525, 257114.458500001579523 ], [ 365083.457699999213219, 257146.377500001341105 ], [ 365095.548799999058247, 257146.898600000888109 ], [ 365113.296599999070168, 257145.988400001078844 ], [ 365122.20380000025034, 257141.628299999982119 ], [ 365127.084899999201298, 257136.602000001817942 ], [ 365124.721699997782707, 257130.038800001144409 ], [ 365103.888800002634525, 257114.458500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601037800", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-25", "ACRE": ".167", "LONGITUDE": -64.89350691, "LATITUDE": 18.34312882, "OBJECTID_1": 20687, "PARCEL_NO_": "105601037800", "Tax_Legal_": "ANNAS RETREAT 129A- 25 NEW QTR", "Name": "RITA E DAWSON LIVING TRUST", "Address": "4907 Estate Tutu E-7", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 174200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.18057858500001, "SHAPE_Area": 696.82789680200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362772.672200001776218, 257115.010299999266863 ], [ 362755.948299996554852, 257090.386500000953674 ], [ 362754.319499999284744, 257092.272999998182058 ], [ 362742.15820000320673, 257099.984000001102686 ], [ 362734.860100001096725, 257104.779399998486042 ], [ 362754.827299997210503, 257127.31870000064373 ], [ 362772.672200001776218, 257115.010299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701032700", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-1", "ACRE": "0.23", "LONGITUDE": -64.87763757, "LATITUDE": 18.34307062, "OBJECTID_1": 21975, "PARCEL_NO_": "105701032700", "Tax_Legal_": "20-21-1 SMITH BAY EAST END QTR", "Name": "FLEMING, LAWRENCE & ESULAR (TRUSTEES)", "Address": "PO Box 11025", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28600, "Improved_V": 231300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.847221467, "SHAPE_Area": 1667.5242099699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364428.143700003623962, 257087.460299998521805 ], [ 364403.740900002419949, 257138.878400001674891 ], [ 364430.3445999994874, 257141.032000001519918 ], [ 364435.999600000679493, 257139.811799999326468 ], [ 364439.239200003445148, 257138.149500001221895 ], [ 364459.697300001978874, 257103.064300000667572 ], [ 364428.143700003623962, 257087.460299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702065100", "MAP": "F9-3553-T78", "PARCEL_NAM": "57T-15", "ACRE": "0.25", "LONGITUDE": -64.87150867, "LATITUDE": 18.34303486, "OBJECTID_1": 22695, "PARCEL_NO_": "105702065100", "Tax_Legal_": "SMITH BAY 57T-15 EAST END QTR", "Name": "ROGERS, HERMIA", "Address": "PO Box 8804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29700, "Improved_V": 189300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.33439014699999, "SHAPE_Area": 1485.4874786800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365103.888800002634525, 257114.458500001579523 ], [ 365097.483300000429153, 257109.128699999302626 ], [ 365089.513700000941753, 257098.086599998176098 ], [ 365086.349500000476837, 257090.883499998599291 ], [ 365054.734300002455711, 257110.467599999159575 ], [ 365060.281400002539158, 257121.912000000476837 ], [ 365071.415100000798702, 257140.157200001180172 ], [ 365076.209899999201298, 257145.262699998915195 ], [ 365083.457699999213219, 257146.377500001341105 ], [ 365103.888800002634525, 257114.458500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602073600", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-19", "ACRE": "0.14", "LONGITUDE": -64.88589013000001, "LATITUDE": 18.34316878, "OBJECTID_1": 21346, "PARCEL_NO_": "105602073600", "Tax_Legal_": "394-A-19 ANNAS RETREAT NEW QTR.", "Name": "HENDRICKSON, RUPERT & J. E", "Address": "1338 Fernwood Ct", "City": "New Brunswick", "State": "New Jersey", "Zip": 8901, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.880999626399998, "SHAPE_Area": 481.00450066600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363578.144199997186661, 257125.613400001078844 ], [ 363553.3175999969244, 257105.567499998956919 ], [ 363540.290700003504753, 257120.237399999052286 ], [ 363571.625399999320507, 257133.581599999219179 ], [ 363578.144199997186661, 257125.613400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601086000", "MAP": "A9-388-T91", "PARCEL_NAM": "3D", "ACRE": "3.867", "LONGITUDE": -64.89715495, "LATITUDE": 18.3424841, "OBJECTID_1": 20915, "PARCEL_NO_": "105601086000", "Tax_Legal_": "3D ESTATE DONOE NEW QTR", "Name": "V. I. H. A. HOUSING AUTHORITY", "Address": "4100 Estate Donoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022204, "Country": "United States", "Land_Value": 269400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 801.48340435, "SHAPE_Area": 17990.586691299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362455.973099999129772, 257091.097800001502037 ], [ 362440.356799997389317, 256936.449499998241663 ], [ 362327.723700001835823, 257000.755499999970198 ], [ 362323.672399997711182, 257003.044399999082088 ], [ 362288.018399998545647, 257023.439800001680851 ], [ 362282.345399998128414, 257026.770799998193979 ], [ 362250.742799997329712, 257044.877300001680851 ], [ 362249.936999998986721, 257044.213500000536442 ], [ 362236.945699997246265, 257067.309200000017881 ], [ 362237.52759999781847, 257067.701299998909235 ], [ 362253.480400003492832, 257087.545000001788139 ], [ 362267.487800002098083, 257102.330600000917912 ], [ 362288.498800002038479, 257117.505199998617172 ], [ 362306.919699996709824, 257121.087000001221895 ], [ 362281.903099998831749, 257078.696199998259544 ], [ 362309.43639999628067, 257064.989399999380112 ], [ 362315.913900002837181, 257061.875999998301268 ], [ 362350.734499998390675, 257044.6402000002563 ], [ 362354.784100003540516, 257042.562399998307228 ], [ 362379.07769999653101, 257030.517900001257658 ], [ 362408.947999998927116, 257121.110399998724461 ], [ 362416.242600001394749, 257116.737100001424551 ], [ 362455.973099999129772, 257091.097800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602072900", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-38", "ACRE": "0.14", "LONGITUDE": -64.88533099, "LATITUDE": 18.34312217, "OBJECTID_1": 21339, "PARCEL_NO_": "105602072900", "Tax_Legal_": "394A-38 ANNAS RETREAT NEW QTR.", "Name": "KINGSTON, JAMES & SARA", "Address": "PO Box 11073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 134400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.930448005499997, "SHAPE_Area": 443.05013293000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363635.430200003087521, 257121.649300001561642 ], [ 363611.42059999704361, 257100.343499999493361 ], [ 363606.545000001788139, 257104.7364999987185 ], [ 363601.653200000524521, 257111.02930000051856 ], [ 363627.284299999475479, 257131.293000001460314 ], [ 363635.430200003087521, 257121.649300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602071300", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-3", "ACRE": "0.14", "LONGITUDE": -64.88364744, "LATITUDE": 18.34305171, "OBJECTID_1": 21324, "PARCEL_NO_": "105602071300", "Tax_Legal_": "ANNAS RETREAT 394A-3 NEW QTR.", "Name": "HENDERSON, AGATHA", "Address": "PO Box 10494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 275900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.735343259, "SHAPE_Area": 705.33960931599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363813.045500002801418, 257096.505199998617172 ], [ 363795.373199999332428, 257088.55009999871254 ], [ 363780.570000000298023, 257122.41499999910593 ], [ 363796.624300003051758, 257130.990200001746416 ], [ 363813.045500002801418, 257096.505199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87509306, "LATITUDE": 18.3430426, "OBJECTID_1": 22130, "PARCEL_NO_": "105701052700", "Tax_Legal_": "SMITH BAY 75 EAST END QUARTER", "Name": "SMITH, ELRIC", "Address": "123-25 82nd Ave", "City": "Kew Gardens", "State": "New York", "Zip": 11415, "Country": "United States", "Land_Value": 35100, "Improved_V": 143600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.274782325, "SHAPE_Area": 996.05419602500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364723.273400001227856, 257115.565200001001358 ], [ 364700.876400001347065, 257094.27250000089407 ], [ 364678.114500001072884, 257115.82880000025034 ], [ 364700.500600002706051, 257138.388000000268221 ], [ 364723.273400001227856, 257115.565200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701057600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8746607, "LATITUDE": 18.34302515, "OBJECTID_1": 22153, "PARCEL_NO_": "105701057600", "Tax_Legal_": "SMITH BAY 73 1 2&3 EAST END QTR", "Name": "INDUSTRIOUS, WILLIAM(life estate)", "Address": "PO Box 307667", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35100, "Improved_V": 386700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.32512660200001, "SHAPE_Area": 1081.24067629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364747.676700003445148, 257090.644799999892712 ], [ 364723.273400001227856, 257115.565200001001358 ], [ 364746.465800002217293, 257138.130899999290705 ], [ 364769.251199997961521, 257113.83049999922514 ], [ 364767.645700000226498, 257112.973000001162291 ], [ 364747.676700003445148, 257090.644799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602073400", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-18", "ACRE": "0.14", "LONGITUDE": -64.8857748, "LATITUDE": 18.34305794, "OBJECTID_1": 21344, "PARCEL_NO_": "105602073400", "Tax_Legal_": "394-A-18 ANNAS RETREAT NEW QUARTER", "Name": "Agnes Canning, V. St. Jean, T. Joseph & T. Peters", "Address": "Po Box 502741", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20200, "Improved_V": 266000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.75853587500001, "SHAPE_Area": 596.15131197000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363589.556699998676777, 257111.141399998217821 ], [ 363566.344499997794628, 257090.89750000089407 ], [ 363553.3175999969244, 257105.567499998956919 ], [ 363578.144199997186661, 257125.613400001078844 ], [ 363589.556699998676777, 257111.141399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88190954, "LATITUDE": 18.34291952, "OBJECTID_1": 21880, "PARCEL_NO_": "105701014800", "Tax_Legal_": "394-414 ANNAS RETREAT NO.1 NEW QTR", "Name": "FOY, CECELIE & L. PICKERING-INNIS", "Address": "PO Box 12212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72000, "Improved_V": 92200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.67910526099999, "SHAPE_Area": 2426.9835892400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364017.148599997162819, 257085.721200000494719 ], [ 363979.410199999809265, 257066.836100000888109 ], [ 363975.39299999922514, 257065.114500001072884 ], [ 363971.329099997878075, 257068.880899999290705 ], [ 363950.115000002086163, 257098.049300000071526 ], [ 363950.062899999320507, 257104.1706000007689 ], [ 363952.402699999511242, 257113.477800000458956 ], [ 363960.433399997651577, 257117.343199998140335 ], [ 363983.724799998104572, 257128.299600001424551 ], [ 364017.148599997162819, 257085.721200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702030700", "MAP": "D9-411-T63", "PARCEL_NAM": "40N", "ACRE": "0.29", "LONGITUDE": -64.87071087, "LATITUDE": 18.34304488, "OBJECTID_1": 22471, "PARCEL_NO_": "105702030700", "Tax_Legal_": "SMITH BAY 40N EAST END QTR", "Name": "POOLE, SHALLAMAR & DAVIS, CHAR", "Address": "PO BOX 307214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.67660700899999, "SHAPE_Area": 701.25530969099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365180.405799999833107, 257124.795000001788139 ], [ 365179.70380000025034, 257112.545800000429153 ], [ 365177.360399998724461, 257103.660700000822544 ], [ 365145.804499998688698, 257116.279199998825788 ], [ 365147.384700000286102, 257120.09180000051856 ], [ 365149.697599999606609, 257132.565200001001358 ], [ 365150.462499998509884, 257137.426699999719858 ], [ 365180.405799999833107, 257124.795000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601042000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-29", "ACRE": ".195", "LONGITUDE": -64.89457019, "LATITUDE": 18.34297336, "OBJECTID_1": 20716, "PARCEL_NO_": "105601042000", "Tax_Legal_": "129A-29 ANNAS RETREAT NEW QTR", "Name": "ROACH, VICTOR, IONA, & TREGENZ", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26000, "Improved_V": 129600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.763302495, "SHAPE_Area": 941.24660287799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362634.347900003194809, 257071.448300000280142 ], [ 362619.004600003361702, 257074.06700000166893 ], [ 362618.983000002801418, 257076.599899999797344 ], [ 362650.089400000870228, 257116.751200001686811 ], [ 362663.071299999952316, 257107.358199998736382 ], [ 362642.423600003123283, 257070.036800000816584 ], [ 362634.347900003194809, 257071.448300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702023100", "MAP": "G9-583-T61", "PARCEL_NAM": "4G-2", "ACRE": "0.11", "LONGITUDE": -64.86761642, "LATITUDE": 18.34312488, "OBJECTID_1": 22395, "PARCEL_NO_": "105702023100", "Tax_Legal_": "SMITH BAY 4G-2 EAST END QTR", "Name": "DRAGIN, JEAN A.", "Address": "101 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.38319418899999, "SHAPE_Area": 540.43928684900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365514.324199996888638, 257136.284000001847744 ], [ 365507.322400003671646, 257121.848600000143051 ], [ 365469.042300000786781, 257129.901599999517202 ], [ 365466.558600001037121, 257137.480599999427795 ], [ 365465.732699997723103, 257139.864100001752377 ], [ 365514.324199996888638, 257136.284000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601038000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-13", "ACRE": ".172", "LONGITUDE": -64.89379047, "LATITUDE": 18.34299919, "OBJECTID_1": 20689, "PARCEL_NO_": "105601038000", "Tax_Legal_": "129A-13 ANNAS RETREAT NO.1 NEW QTR", "Name": "DEWINDT, TAVIS & TIANT, VANTERPOOL-DEWINDT, T.", "Address": "PO Box 7002", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010002, "Country": "United States", "Land_Value": 23300, "Improved_V": 151400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.394766463, "SHAPE_Area": 761.67816518300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362742.15820000320673, 257099.984000001102686 ], [ 362728.677500002086163, 257073.275800000876188 ], [ 362721.359600000083447, 257080.393100000917912 ], [ 362706.766800001263618, 257089.561799999326468 ], [ 362719.455600000917912, 257114.574700001627207 ], [ 362734.860100001096725, 257104.779399998486042 ], [ 362742.15820000320673, 257099.984000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601037700", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-26", "ACRE": ".182", "LONGITUDE": -64.8933298, "LATITUDE": 18.3429892, "OBJECTID_1": 20686, "PARCEL_NO_": "105601037700", "Tax_Legal_": "ANNAS RETREAT 129A-26 NEW QTR", "Name": "CUFFY, ISMAY", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24700, "Improved_V": 113300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.534321635, "SHAPE_Area": 810.527088639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362773.031900003552437, 257072.79450000077486 ], [ 362768.9949000030756, 257073.39469999819994 ], [ 362755.948299996554852, 257090.386500000953674 ], [ 362772.672200001776218, 257115.010299999266863 ], [ 362781.586599998176098, 257109.805900000035763 ], [ 362790.481200002133846, 257106.92339999973774 ], [ 362776.26070000231266, 257072.398699998855591 ], [ 362773.031900003552437, 257072.79450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032300", "MAP": "D9-619-T66", "PARCEL_NAM": "105A", "ACRE": "0.20", "LONGITUDE": -64.86888, "LATITUDE": 18.34300417, "OBJECTID_1": 22489, "PARCEL_NO_": "105702032300", "Tax_Legal_": "SMITH BAY 105A EAST END", "Name": "SEWER, SR. (LIFE ESTATE), JEFFREY", "Address": "PO Box 11055", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65300, "Improved_V": 168900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.871258383, "SHAPE_Area": 806.43469270200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365382.95889999717474, 257116.696899998933077 ], [ 365378.160899996757507, 257101.926699999719858 ], [ 365330.451800003647804, 257117.579300001263618 ], [ 365340.718500003218651, 257133.27309999987483 ], [ 365382.95889999717474, 257116.696899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602072700", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-37", "ACRE": "0.14", "LONGITUDE": -64.88522968, "LATITUDE": 18.34302247, "OBJECTID_1": 21337, "PARCEL_NO_": "105602072700", "Tax_Legal_": "394A-37 ANNAS RETREAT NEW QTR.", "Name": "PINNEY, E. W. , G. P. , G. R. & E. E. , JR", "Address": "PO Box 6523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20200, "Improved_V": 276200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.2723807072, "SHAPE_Area": 540.66205268700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363646.831799998879433, 257108.443799998611212 ], [ 363623.617799997329712, 257088.410999998450279 ], [ 363611.42059999704361, 257100.343499999493361 ], [ 363635.430200003087521, 257121.649300001561642 ], [ 363646.831799998879433, 257108.443799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602071400", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-4", "ACRE": "0.14", "LONGITUDE": -64.88381007, "LATITUDE": 18.3429783, "OBJECTID_1": 21325, "PARCEL_NO_": "105602071400", "Tax_Legal_": "ANNAS RETREAT 394A-4 NEW QTR.", "Name": "BRANBLE, HILDA V. OGARRO", "Address": "PO Box 12194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 138100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.027175204, "SHAPE_Area": 697.34003397399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363795.373199999332428, 257088.55009999871254 ], [ 363777.700800001621246, 257080.594999998807907 ], [ 363763.714800000190735, 257113.200100000947714 ], [ 363780.570000000298023, 257122.41499999910593 ], [ 363795.373199999332428, 257088.55009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701067400", "MAP": "C9-273-T81", "PARCEL_NAM": "107B-94", "ACRE": "0.24", "LONGITUDE": -64.88068953, "LATITUDE": 18.34300535, "OBJECTID_1": 22233, "PARCEL_NO_": "105701067400", "Tax_Legal_": "ANNAS RETREAT 173B-94 NEW QTR", "Name": "THOMAS, LOUIS & JANICE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32900, "Improved_V": 228600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.27551252399999, "SHAPE_Area": 1287.7788845099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364127.557700000703335, 257093.168800000101328 ], [ 364127.378300003707409, 257090.563099998980761 ], [ 364125.124099999666214, 257090.751499999314547 ], [ 364117.098435767402407, 257091.517146633152151 ], [ 364109.03703079384286, 257091.623217311309418 ], [ 364100.994000002741814, 257091.068999998271465 ], [ 364096.554367228935007, 257089.603521003358765 ], [ 364092.421499997377396, 257087.41780000180006 ], [ 364091.502483861695509, 257087.438279518857598 ], [ 364090.596834721625783, 257087.595790481223958 ], [ 364089.724869200086687, 257087.886799411353422 ], [ 364088.90614828816615, 257088.304778043093393 ], [ 364088.159038529091049, 257088.840349771344336 ], [ 364087.500299997627735, 257089.481499999761581 ], [ 364087.422673283494078, 257094.753008209925611 ], [ 364088.064944004814606, 257099.98581940823351 ], [ 364089.415102009952534, 257105.082082556647947 ], [ 364091.447899997234344, 257109.94649999961257 ], [ 364091.896499998867512, 257114.408399999141693 ], [ 364093.473200000822544, 257118.643199998885393 ], [ 364099.869800001382828, 257125.028400000184774 ], [ 364129.710500001907349, 257124.428199999034405 ], [ 364127.557700000703335, 257093.168800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701067500", "MAP": "C9-273-T81", "PARCEL_NAM": "173B-95", "ACRE": "0.24", "LONGITUDE": -64.88034125, "LATITUDE": 18.34302456, "OBJECTID_1": 22234, "PARCEL_NO_": "105701067500", "Tax_Legal_": "ANNAS RETREAT 173B-95 NEW QTR.", "Name": "MALONE, D. & CHINNERY, S", "Address": "PO Box 8071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32900, "Improved_V": 24800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.61353665300001, "SHAPE_Area": 1098.2678134099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364127.378300003707409, 257090.563099998980761 ], [ 364127.557700000703335, 257093.168800000101328 ], [ 364129.710500001907349, 257124.428199999034405 ], [ 364133.743900001049042, 257124.250100001692772 ], [ 364167.618000000715256, 257123.471900001168251 ], [ 364170.364500001072884, 257123.4087999984622 ], [ 364169.99196437158389, 257119.442516813491238 ], [ 364169.013932961097453, 257115.58069863304263 ], [ 364167.453672297182493, 257111.915214796055807 ], [ 364165.348299641394988, 257108.533264015975874 ], [ 364162.747900001704693, 257105.515299998223782 ], [ 364158.852988504106179, 257101.583546151901828 ], [ 364154.589606193301734, 257098.054722671717172 ], [ 364149.999250146560371, 257094.963176902063424 ], [ 364145.126599997282028, 257092.339000001549721 ], [ 364139.286405472201295, 257091.105705446534557 ], [ 364133.347070068877656, 257090.511413837637519 ], [ 364127.378300003707409, 257090.563099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702065800", "MAP": "F9-3531-T77", "PARCEL_NAM": "57T-22", "ACRE": "0.25", "LONGITUDE": -64.87110222, "LATITUDE": 18.34288143, "OBJECTID_1": 22702, "PARCEL_NO_": "105702065800", "Tax_Legal_": "SMITH BAY 57T-22 EAST END QTR", "Name": "CHARLES, JEAN A", "Address": "217 - 71 Hempstead Ave", "City": "Queens Village", "State": "New York", "Zip": 11429, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.073742896, "SHAPE_Area": 1848.02750436 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365135.58500000089407, 257085.375900000333786 ], [ 365132.436999998986721, 257076.27309999987483 ], [ 365091.255800001323223, 257082.902100000530481 ], [ 365091.210799999535084, 257088.179099999368191 ], [ 365094.3766999989748, 257095.171100001782179 ], [ 365102.357100002467632, 257104.946699999272823 ], [ 365107.157200001180172, 257109.418999999761581 ], [ 365129.593699999153614, 257126.067899998277426 ], [ 365131.9712999984622, 257130.942499998956919 ], [ 365140.021799996495247, 257132.486000001430511 ], [ 365149.697599999606609, 257132.565200001001358 ], [ 365147.384700000286102, 257120.09180000051856 ], [ 365145.804499998688698, 257116.279199998825788 ], [ 365135.58500000089407, 257085.375900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601042100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89438713, "LATITUDE": 18.34292278, "OBJECTID_1": 20717, "PARCEL_NO_": "105601042100", "Tax_Legal_": "129A-30 ANNAS RETREAT NEW QTR", "Name": "GRAHAM, DUANE A. & AVRIL L", "Address": "PO Box 502463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24700, "Improved_V": 140900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.743815774, "SHAPE_Area": 725.16790173000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362679.29280000180006, 257096.302999999374151 ], [ 362662.603000000119209, 257067.668800000101328 ], [ 362656.145300000905991, 257068.460299998521805 ], [ 362642.423600003123283, 257070.036800000816584 ], [ 362663.071299999952316, 257107.358199998736382 ], [ 362679.29280000180006, 257096.302999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702023200", "MAP": "G9-583-T61", "PARCEL_NAM": "4G-1", "ACRE": "0.10", "LONGITUDE": -64.86765636, "LATITUDE": 18.34298963, "OBJECTID_1": 22396, "PARCEL_NO_": "105702023200", "Tax_Legal_": "SMITH BAY 4G 1 EAST END QTR", "Name": "GEORGE, JULIANA", "Address": "PO Box 502493", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 14800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.691999868, "SHAPE_Area": 645.75924639899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365507.322400003671646, 257121.848600000143051 ], [ 365498.210400000214577, 257103.062600001692772 ], [ 365496.681699998676777, 257103.741099998354912 ], [ 365474.049199998378754, 257110.099800001829863 ], [ 365471.615900002419949, 257111.7685999982059 ], [ 365469.976300001144409, 257114.921599999070168 ], [ 365469.042300000786781, 257129.901599999517202 ], [ 365507.322400003671646, 257121.848600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701033400", "MAP": "D9-2297-T83", "PARCEL_NAM": "20-4, & 20-5", "ACRE": "0.43", "LONGITUDE": -64.87576356, "LATITUDE": 18.34293729, "OBJECTID_1": 21981, "PARCEL_NO_": "105701033400", "Tax_Legal_": "20-4,& 20-5 SMITH BAY EAST END QUARTER", "Name": "MILLINER, HOYT E.", "Address": "1918 Harmony Trce", "City": "Lithonia", "State": "Georgia", "Zip": 30058, "Country": "United States", "Land_Value": 71800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.36422699299999, "SHAPE_Area": 1576.4594292300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364651.730899997055531, 257089.226199999451637 ], [ 364651.756099998950958, 257086.271099999547005 ], [ 364610.646799996495247, 257084.456999998539686 ], [ 364608.946000002324581, 257094.786699999123812 ], [ 364607.108599998056889, 257121.158300001174212 ], [ 364650.636900000274181, 257122.992199998348951 ], [ 364651.635600000619888, 257100.413400001823902 ], [ 364651.730899997055531, 257089.226199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601037600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-27", "ACRE": ".174", "LONGITUDE": -64.89314904, "LATITUDE": 18.34292172, "OBJECTID_1": 20685, "PARCEL_NO_": "105601037600", "Tax_Legal_": "ANNAS RETREAT 129A-27 NEW QTR", "Name": "WILSON-MILLS, RAZALIN E., BROWN, CATHERINE & BRADSHAW, AUDREY E.", "Address": "4031 Tiffany Dr", "City": "Decatur", "State": "Georgia", "Zip": 30035, "Country": "United States", "Land_Value": 25200, "Improved_V": 88400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.68549436399999, "SHAPE_Area": 683.81061354099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362804.215499997138977, 257103.86939999833703 ], [ 362800.478900000452995, 257069.219399999827147 ], [ 362793.213100001215935, 257070.215399999171495 ], [ 362776.26070000231266, 257072.398699998855591 ], [ 362790.481200002133846, 257106.92339999973774 ], [ 362804.215499997138977, 257103.86939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602071500", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-5", "ACRE": "0.14", "LONGITUDE": -64.88397024, "LATITUDE": 18.34290361, "OBJECTID_1": 21326, "PARCEL_NO_": "105602071500", "Tax_Legal_": "ANNAS RETREAT 394A-5 NEW QTR", "Name": "WILKINS, PEPSY & ALTHA FAUSTIN", "Address": "394-324 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 71900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.154907186, "SHAPE_Area": 636.74513724999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363777.700800001621246, 257080.594999998807907 ], [ 363760.831200003623962, 257073.06870000064373 ], [ 363747.664099998772144, 257104.202799998223782 ], [ 363763.714800000190735, 257113.200100000947714 ], [ 363777.700800001621246, 257080.594999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602073200", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-17", "ACRE": "0.14", "LONGITUDE": -64.88565542000001, "LATITUDE": 18.34292729, "OBJECTID_1": 21342, "PARCEL_NO_": "105602073200", "Tax_Legal_": "ANNAS RETREAT 394A-17 NEW QTR.", "Name": "DONOVAN, EVA R MEDINA", "Address": "PO Box 9236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 249600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.847257373299996, "SHAPE_Area": 590.36447067899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363602.589000001549721, 257095.838199999183416 ], [ 363578.557800002396107, 257077.06529999896884 ], [ 363566.344499997794628, 257090.89750000089407 ], [ 363589.556699998676777, 257111.141399998217821 ], [ 363602.589000001549721, 257095.838199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702031600", "MAP": "D9-411-T63", "PARCEL_NAM": "40E", "ACRE": "0.24", "LONGITUDE": -64.87035445, "LATITUDE": 18.34289558, "OBJECTID_1": 22481, "PARCEL_NO_": "105702031600", "Tax_Legal_": "SMITH BAY 40E EAST END QTR", "Name": "SPRAUVE, LEOPOLD & MARION", "Address": "PO Box 7295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 131100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.09441158199999, "SHAPE_Area": 940.651020819 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365213.687600001692772, 257098.891800001263618 ], [ 365212.936999998986721, 257092.34180000051856 ], [ 365212.249399997293949, 257078.403999999165535 ], [ 365185.488200001418591, 257096.127900000661612 ], [ 365188.596600003540516, 257109.874400001019239 ], [ 365189.282399997115135, 257124.023299999535084 ], [ 365215.926700003445148, 257120.019499998539686 ], [ 365213.687600001692772, 257098.891800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601037300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-63", "ACRE": ".169", "LONGITUDE": -64.89295522, "LATITUDE": 18.34291028, "OBJECTID_1": 20682, "PARCEL_NO_": "105601037300", "Tax_Legal_": "129 63 ANNAS RETREAT NEW QTR", "Name": "FLEMING, ANTHONY. O & KATHLEEN", "Address": "PO Box 625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19400, "Improved_V": 107900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.92808773500001, "SHAPE_Area": 745.76420381599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362825.193999998271465, 257102.352299999445677 ], [ 362821.466399997472763, 257066.646999999880791 ], [ 362816.623099997639656, 257067.240600001066923 ], [ 362800.478900000452995, 257069.219399999827147 ], [ 362804.215499997138977, 257103.86939999833703 ], [ 362825.193999998271465, 257102.352299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602045200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-17", "ACRE": ".174", "LONGITUDE": -64.89095124000001, "LATITUDE": 18.3428909, "OBJECTID_1": 21229, "PARCEL_NO_": "105602045200", "Tax_Legal_": "129-17 ANNAS RETREAT NEW QTR", "Name": "RICHARDS, ELTON", "Address": "PO Box 15872", "City": "Arlington", "State": "Virginia", "Zip": 22215, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.78315426, "SHAPE_Area": 519.21855281700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363019.835400000214577, 257066.370700001716614 ], [ 363016.351199999451637, 257096.739700000733137 ], [ 363014.664899997413158, 257105.380699999630451 ], [ 363023.545100003480911, 257104.186799999326468 ], [ 363038.258299998939037, 257080.875900000333786 ], [ 363034.23759999871254, 257079.576400000602007 ], [ 363030.247400000691414, 257074.6886 ], [ 363030.304899998009205, 257067.934099998325109 ], [ 363031.933700002729893, 257066.047499999403954 ], [ 363019.835400000214577, 257066.370700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602045300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-16", "ACRE": ".172", "LONGITUDE": -64.89078253, "LATITUDE": 18.3429475, "OBJECTID_1": 21230, "PARCEL_NO_": "105602045300", "Tax_Legal_": "129 16 ANNAS RETREAT NEW QTR", "Name": "RICHARDS, JAMES L.", "Address": "PO Box 15872", "City": "Arlington", "State": "Virginia", "Zip": 22215, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.04033390399999, "SHAPE_Area": 524.32515517900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363054.219200000166893, 257100.427099999040365 ], [ 363053.635799996554852, 257074.246700000017881 ], [ 363048.783600002527237, 257075.895799998193979 ], [ 363046.3412000015378, 257078.620000001043081 ], [ 363043.099799998104572, 257080.493299998342991 ], [ 363038.258299998939037, 257080.875900000333786 ], [ 363023.545100003480911, 257104.186799999326468 ], [ 363026.773999996483326, 257103.79109999909997 ], [ 363054.219200000166893, 257100.427099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601037000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-62", "ACRE": ".166", "LONGITUDE": -64.89275951, "LATITUDE": 18.34288594, "OBJECTID_1": 20679, "PARCEL_NO_": "105601037000", "Tax_Legal_": "ANNAS RETREAT 129-62 NEW QTR", "Name": "TROTMAN, LEANDER & VIVIAN", "Address": "PO Box 5102", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 18200, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.573601469, "SHAPE_Area": 738.103884827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362846.192299999296665, 257098.513399999588728 ], [ 362841.649400003254414, 257063.856899999082088 ], [ 362821.466399997472763, 257066.646999999880791 ], [ 362825.193999998271465, 257102.352299999445677 ], [ 362846.192299999296665, 257098.513399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602072500", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-36", "ACRE": "0.14", "LONGITUDE": -64.88511693, "LATITUDE": 18.34290599, "OBJECTID_1": 21335, "PARCEL_NO_": "105602072500", "Tax_Legal_": "394A-36 ANNAS RETREAT NEW QTR.", "Name": "TODMAN, RAYMOND & JULIAN", "Address": "PO Box 307035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.1177240807, "SHAPE_Area": 537.26053944600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363659.050599999725819, 257093.978300001472235 ], [ 363635.010499998927116, 257076.260800000280142 ], [ 363623.617799997329712, 257088.410999998450279 ], [ 363646.831799998879433, 257108.443799998611212 ], [ 363659.050599999725819, 257093.978300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601035900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-55", "ACRE": ".178", "LONGITUDE": -64.89223364, "LATITUDE": 18.34290602, "OBJECTID_1": 20668, "PARCEL_NO_": "105601035900", "Tax_Legal_": "ANNAS RETREAT 129 55 NEW QTR", "Name": "CAMERON, ESME E. & RAYNETTE A.", "Address": "PO Box 6163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26700, "Improved_V": 71800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.175859778, "SHAPE_Area": 812.05875861699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362894.027300000190735, 257068.085299998521805 ], [ 362873.851499997079372, 257070.031100001186132 ], [ 362876.074400000274181, 257093.058499999344349 ], [ 362879.263700000941753, 257097.306400001049042 ], [ 362884.884499996900558, 257100.096599999815226 ], [ 362892.130599997937679, 257101.422499999403954 ], [ 362899.38740000128746, 257101.481899999082088 ], [ 362908.274800002574921, 257099.44370000064373 ], [ 362894.027300000190735, 257068.085299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601037900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-12", "ACRE": ".032", "LONGITUDE": -64.89358078, "LATITUDE": 18.34285483, "OBJECTID_1": 20688, "PARCEL_NO_": "105601037900", "Tax_Legal_": "ANNAS RETREAT 129A-12 NEW QTR", "Name": "GIBSON, MELINDA", "Address": "PO Box 502273", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23300, "Improved_V": 190900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.29102297599999, "SHAPE_Area": 846.86818897399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362768.9949000030756, 257073.39469999819994 ], [ 362736.850299999117851, 257060.465999998152256 ], [ 362735.196299999952316, 257065.307599999010563 ], [ 362728.677500002086163, 257073.275800000876188 ], [ 362742.15820000320673, 257099.984000001102686 ], [ 362754.319499999284744, 257092.272999998182058 ], [ 362755.948299996554852, 257090.386500000953674 ], [ 362768.9949000030756, 257073.39469999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701053000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87486768, "LATITUDE": 18.34282559, "OBJECTID_1": 22134, "PARCEL_NO_": "105701053000", "Tax_Legal_": "SMITH BAY 76 EAST END QTR", "Name": "THOMAS, BERNICE", "Address": "PO Box 9287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.464373198, "SHAPE_Area": 1085.24221797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364747.676700003445148, 257090.644799999892712 ], [ 364727.704099997878075, 257068.738699998706579 ], [ 364706.565600000321865, 257089.041700001806021 ], [ 364700.876400001347065, 257094.27250000089407 ], [ 364723.273400001227856, 257115.565200001001358 ], [ 364747.676700003445148, 257090.644799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701065700", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-87", "ACRE": null, "LONGITUDE": -64.87921472, "LATITUDE": 18.34279738, "OBJECTID_1": 22216, "PARCEL_NO_": "105701065700", "Tax_Legal_": "ANNAS RETREAT 173B-87 NEW QTR.", "Name": "SEWER, KAREN", "Address": "PO Box 1205", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.6442424, "SHAPE_Area": 1135.1111092599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364283.976899996399879, 257095.082299999892712 ], [ 364285.016999997198582, 257067.648600000888109 ], [ 364249.517700001597404, 257069.891199998557568 ], [ 364248.36429999768734, 257110.622800000011921 ], [ 364255.649899996817112, 257107.304900001734495 ], [ 364269.443499997258186, 257097.285300001502037 ], [ 364276.718299999833107, 257095.233899999409914 ], [ 364283.976899996399879, 257095.082299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601036000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-56", "ACRE": ".171", "LONGITUDE": -64.89201862, "LATITUDE": 18.34285128, "OBJECTID_1": 20669, "PARCEL_NO_": "105601036000", "Tax_Legal_": "ANNAS RETREAT 129-56 NEW QUARTER", "Name": "BRYAN, HOWARD H", "Address": "4706 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 71000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.784882724, "SHAPE_Area": 771.46491289799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362930.127899996936321, 257089.912300001829863 ], [ 362915.05799999833107, 257060.446899998933077 ], [ 362905.346199996769428, 257064.589299999177456 ], [ 362894.027300000190735, 257068.085299998521805 ], [ 362908.274800002574921, 257099.44370000064373 ], [ 362930.127899996936321, 257089.912300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064900", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-83", "ACRE": "0.25", "LONGITUDE": -64.87828386, "LATITUDE": 18.34282495, "OBJECTID_1": 22209, "PARCEL_NO_": "105701064900", "Tax_Legal_": "REMAINDER 173B-82 ANNAS RETREAT NEW QTR", "Name": "HYPPOLITE, VIERGENITH & CASTEL, JULNER", "Address": "PO Box 502743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 43100, "Improved_V": 322400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.572947619, "SHAPE_Area": 719.81748652099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364368.904100000858307, 257064.746599998325109 ], [ 364367.112199999392033, 257064.544100001454353 ], [ 364366.617368165694643, 257066.170199799380498 ], [ 364365.948299996554852, 257067.732700001448393 ], [ 364362.027919197804295, 257073.047110434388742 ], [ 364357.714400000870228, 257078.047699999064207 ], [ 364356.663699999451637, 257081.745000001043081 ], [ 364349.182099997997284, 257108.07039999961853 ], [ 364366.894100002944469, 257111.381799999624491 ], [ 364376.96000000089407, 257065.656899999827147 ], [ 364368.904100000858307, 257064.746599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602045400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-15", "ACRE": ".168", "LONGITUDE": -64.89053127, "LATITUDE": 18.34289973, "OBJECTID_1": 21231, "PARCEL_NO_": "105602045400", "Tax_Legal_": "129 15 ANNAS RETREAT NEW QTR", "Name": "RICHARDS, RAYMOND", "Address": "PO Box 15872", "City": "Arlington", "State": "Virginia", "Zip": 22215, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.336435614, "SHAPE_Area": 770.18891508000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363085.694099999964237, 257097.307199999690056 ], [ 363083.483800001442432, 257072.802299998700619 ], [ 363072.990900002419949, 257073.982900001108646 ], [ 363053.635799996554852, 257074.246700000017881 ], [ 363054.219200000166893, 257100.427099999040365 ], [ 363085.694099999964237, 257097.307199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601036700", "MAP": "A9-15-T62", "PARCEL_NAM": "129-61", "ACRE": ".165", "LONGITUDE": -64.89256659, "LATITUDE": 18.34284176, "OBJECTID_1": 20676, "PARCEL_NO_": "105601036700", "Tax_Legal_": "129 61 ANNAS RETREAT NEW QTR", "Name": "GREAUX, SR., CHRISTIAN J. & ROSE", "Address": "PO Box 305417", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23800, "Improved_V": 122500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.874841045, "SHAPE_Area": 697.934118377 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362865.059399999678135, 257060.882100000977516 ], [ 362841.649400003254414, 257063.856899999082088 ], [ 362846.192299999296665, 257098.513399999588728 ], [ 362857.507700003683567, 257095.439599998295307 ], [ 362862.379699997603893, 257091.468699999153614 ], [ 362864.831000000238419, 257087.689100001007318 ], [ 362865.059399999678135, 257060.882100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069500", "MAP": "D9-5430-T92", "PARCEL_NAM": "57X-53", "ACRE": ".26", "LONGITUDE": -64.87297511, "LATITUDE": 18.34268181, "OBJECTID_1": 22729, "PARCEL_NO_": "105702069500", "Tax_Legal_": "57X-53 SMITH BAY NO. 1,2,3 EAST END QTR", "Name": "NICHOLAS, OLIVER, CLARE & MITCHELL", "Address": "PO Box 10171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35100, "Improved_V": 210600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.414794898, "SHAPE_Area": 1250.0898958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364929.842200003564358, 257099.312899999320507 ], [ 364923.483400002121925, 257088.495099999010563 ], [ 364932.45719999819994, 257076.325100000947714 ], [ 364948.727300003170967, 257059.570799998939037 ], [ 364951.979500003159046, 257056.431000001728535 ], [ 364935.961099997162819, 257043.634300000965595 ], [ 364933.502599999308586, 257048.258200000971556 ], [ 364901.695000000298023, 257090.427700001746416 ], [ 364903.296800002455711, 257091.707400001585484 ], [ 364918.418999999761581, 257115.051399998366833 ], [ 364929.842200003564358, 257099.312899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601042200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-31", "ACRE": ".202", "LONGITUDE": -64.89416812, "LATITUDE": 18.34283198, "OBJECTID_1": 20718, "PARCEL_NO_": "105601042200", "Tax_Legal_": "129A 31 ANNAS RETREAT NEW QTR", "Name": "GRAHAM, RUFUS", "Address": "PO Box 502463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27400, "Improved_V": 198600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.61548539100001, "SHAPE_Area": 884.99353761099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362702.807199999690056, 257081.085700001567602 ], [ 362698.968000002205372, 257058.467199999839067 ], [ 362682.802199997007847, 257062.978999998420477 ], [ 362678.761699996888638, 257064.001400001347065 ], [ 362662.603000000119209, 257067.668800000101328 ], [ 362679.29280000180006, 257096.302999999374151 ], [ 362697.130599997937679, 257084.838899999856949 ], [ 362702.807199999690056, 257081.085700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702030800", "MAP": "D9-411-T63", "PARCEL_NAM": "40M", "ACRE": "0.27", "LONGITUDE": -64.87077949, "LATITUDE": 18.34281177, "OBJECTID_1": 22472, "PARCEL_NO_": "105702030800", "Tax_Legal_": "SMITH BAY 40M EAST END QTR", "Name": "LUTHER BENJAMIN", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.27603297600001, "SHAPE_Area": 1127.1981595300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365177.360399998724461, 257103.660700000822544 ], [ 365177.387299999594688, 257100.494600001722574 ], [ 365175.82150000333786, 257094.993299998342991 ], [ 365167.140799999237061, 257072.757399998605251 ], [ 365135.58500000089407, 257085.375900000333786 ], [ 365145.804499998688698, 257116.279199998825788 ], [ 365177.360399998724461, 257103.660700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032400", "MAP": "D9-619-T66", "PARCEL_NAM": "105B", "ACRE": "0.20", "LONGITUDE": -64.86894177000001, "LATITUDE": 18.34285756, "OBJECTID_1": 22490, "PARCEL_NO_": "105702032400", "Tax_Legal_": "SMITH BAY 105B EAST END", "Name": "EMANUEL, W. , & C. & ELLEN", "Address": "PO Box 1274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29500, "Improved_V": 134200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.89783831700001, "SHAPE_Area": 947.61408273100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365373.44709999859333, 257087.322700001299381 ], [ 365372.067900002002716, 257083.571100000292063 ], [ 365321.515500001609325, 257102.853999998420477 ], [ 365323.290299996733665, 257106.332800000905991 ], [ 365330.451800003647804, 257117.579300001263618 ], [ 365378.160899996757507, 257101.926699999719858 ], [ 365373.44709999859333, 257087.322700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701060100", "MAP": "D9-2501-T83", "PARCEL_NAM": "173B-27", "ACRE": "0.23", "LONGITUDE": -64.88106649, "LATITUDE": 18.34280908, "OBJECTID_1": 22163, "PARCEL_NO_": "105701060100", "Tax_Legal_": "ANNAS RETREAT 173B-27 NEW QTR.", "Name": "BROWNE, SAMUEL I. & STEPHANIE A", "Address": "PO Box 9822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 255700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.57889528600001, "SHAPE_Area": 916.22580027399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364069.747800000011921, 257063.986900001764297 ], [ 364058.373099997639656, 257074.026299998164177 ], [ 364048.557099997997284, 257090.411200001835823 ], [ 364076.6503000035882, 257105.628800000995398 ], [ 364079.875600002706051, 257105.655200000852346 ], [ 364080.694499999284744, 257104.184300001710653 ], [ 364080.818599998950958, 257089.619800001382828 ], [ 364088.976999998092651, 257078.498599998652935 ], [ 364069.747800000011921, 257063.986900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602045600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-13", "ACRE": ".173", "LONGITUDE": -64.88998309, "LATITUDE": 18.34280392, "OBJECTID_1": 21232, "PARCEL_NO_": "105602045600", "Tax_Legal_": "129-13 ANNAS RETREAT NEW QTR", "Name": "CLEM, CHRISTOPHER", "Address": "PO BOX 305933", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 169200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.168841727, "SHAPE_Area": 776.57214021300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363139.752999998629093, 257093.527800001204014 ], [ 363136.034299999475479, 257056.767099998891354 ], [ 363123.919900000095367, 257058.989900000393391 ], [ 363112.582900002598763, 257064.596700001507998 ], [ 363119.582599997520447, 257094.840399999171495 ], [ 363139.752999998629093, 257093.527800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702065200", "MAP": "G9-2719-T78", "PARCEL_NAM": "57T-16", "ACRE": "0.25", "LONGITUDE": -64.87164256, "LATITUDE": 18.34274549, "OBJECTID_1": 22696, "PARCEL_NO_": "105702065200", "Tax_Legal_": "SMITH BAY 57T-16 EAST END QTR", "Name": "PINDER, CARMEN", "Address": "PO Box 10883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29700, "Improved_V": 51400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.95110508600001, "SHAPE_Area": 1208.47093163 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365086.349500000476837, 257090.883499998599291 ], [ 365084.828599996864796, 257080.10530000180006 ], [ 365086.58330000191927, 257063.443300001323223 ], [ 365041.278800003230572, 257080.804299999028444 ], [ 365050.763899996876717, 257103.25789999961853 ], [ 365054.734300002455711, 257110.467599999159575 ], [ 365086.349500000476837, 257090.883499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602045700", "MAP": "A9-15-T62", "PARCEL_NAM": "129-12", "ACRE": ".178", "LONGITUDE": -64.88979587, "LATITUDE": 18.3427892, "OBJECTID_1": 21233, "PARCEL_NO_": "105602045700", "Tax_Legal_": "129 12 ANNAS RETREAT NEW QTR", "Name": "SEWER, VICTOR, LORNA & KHYAM & SHANA E. JOHNSON", "Address": "4512 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 152800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.892490266, "SHAPE_Area": 657.17108323000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363158.312600001692772, 257091.990899998694658 ], [ 363153.774999998509884, 257056.701200000941753 ], [ 363136.034299999475479, 257056.767099998891354 ], [ 363139.752999998629093, 257093.527800001204014 ], [ 363158.312600001692772, 257091.990899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701037100", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-2", "ACRE": "0.23", "LONGITUDE": -64.87744309, "LATITUDE": 18.34274207, "OBJECTID_1": 22017, "PARCEL_NO_": "105701037100", "Tax_Legal_": "20-21-2 SMITH BAY EAST END QTR", "Name": "MATTHEW, ROSALIND", "Address": "PO Box 8884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 274000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.874851992, "SHAPE_Area": 1257.25104214 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364442.344999998807907, 257057.537200000137091 ], [ 364428.143700003623962, 257087.460299998521805 ], [ 364459.697300001978874, 257103.064300000667572 ], [ 364466.232299998402596, 257093.196400001645088 ], [ 364473.552100002765656, 257085.868099998682737 ], [ 364479.273599997162819, 257076.837900001555681 ], [ 364442.344999998807907, 257057.537200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602072000", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-16", "ACRE": "0.14", "LONGITUDE": -64.88553268, "LATITUDE": 18.34278911, "OBJECTID_1": 21330, "PARCEL_NO_": "105602072000", "Tax_Legal_": "394-A-16 ANNAS RETREAT NEW QTR", "Name": "HARRIS FAHIE, SR. & HARRIS FAHIE, JR.", "Address": "PO BOX 10301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 339400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.20356465, "SHAPE_Area": 638.53249916599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363616.41669999808073, 257081.808100000023842 ], [ 363593.209899999201298, 257060.931000001728535 ], [ 363578.557800002396107, 257077.06529999896884 ], [ 363602.589000001549721, 257095.838199999183416 ], [ 363616.41669999808073, 257081.808100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602045800", "MAP": "A9-15-T62", "PARCEL_NAM": "129-11", "ACRE": ".165", "LONGITUDE": -64.88960115, "LATITUDE": 18.34277878, "OBJECTID_1": 21234, "PARCEL_NO_": "105602045800", "Tax_Legal_": "129-11 ANNAS RETREAT NEW QTR", "Name": "PEETS, ALFREDO", "Address": "4911 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 102100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.13049602700001, "SHAPE_Area": 819.12122735800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363183.324400000274181, 257090.295800000429153 ], [ 363173.95440000295639, 257054.333200000226498 ], [ 363153.774999998509884, 257056.701200000941753 ], [ 363158.312600001692772, 257091.990899998694658 ], [ 363183.324400000274181, 257090.295800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601036100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-27", "ACRE": ".172", "LONGITUDE": -64.8918107, "LATITUDE": 18.34276154, "OBJECTID_1": 20670, "PARCEL_NO_": "105601036100", "Tax_Legal_": "ANNAS RETREAT 129-57 NEW QTR", "Name": "ELMA E BLYDEN FAMILY TRUST", "Address": "PO Box 304151", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 173100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.420491105, "SHAPE_Area": 794.10268706 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362951.999099999666214, 257078.269999999552965 ], [ 362940.129199996590614, 257051.786200001835823 ], [ 362916.675999999046326, 257059.826900001615286 ], [ 362915.05799999833107, 257060.446899998933077 ], [ 362930.127899996936321, 257089.912300001829863 ], [ 362951.999099999666214, 257078.269999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602071700", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-7", "ACRE": "0.14", "LONGITUDE": -64.88428186, "LATITUDE": 18.34276617, "OBJECTID_1": 21327, "PARCEL_NO_": "105602071700", "Tax_Legal_": "394A-7 ANNAS RETREAT NEW QTR.", "Name": "SKELTON, HAZIL", "Address": "842 Jackson Ave", "City": "Bronx", "State": "New York", "Zip": 10456, "Country": "United States", "Land_Value": 20200, "Improved_V": 244500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.643369174399993, "SHAPE_Area": 553.089783485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363743.961599998176098, 257065.542399998754263 ], [ 363728.699199996888638, 257058.662399999797344 ], [ 363715.537399999797344, 257089.16330000013113 ], [ 363730.801600001752377, 257095.832100000232458 ], [ 363743.961599998176098, 257065.542399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602045900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-10", "ACRE": ".169", "LONGITUDE": -64.88942189, "LATITUDE": 18.34275392, "OBJECTID_1": 21235, "PARCEL_NO_": "105602045900", "Tax_Legal_": "129-10 ANNAS RETREAT NEW QTR", "Name": "JOSEPH GERDA PARSON", "Address": "4510 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021770, "Country": "United States", "Land_Value": 23300, "Improved_V": 137700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.58342821, "SHAPE_Area": 586.53536908299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363198.655199997127056, 257089.154699999839067 ], [ 363190.098600000143051, 257052.354400001466274 ], [ 363173.95440000295639, 257054.333200000226498 ], [ 363183.324400000274181, 257090.295800000429153 ], [ 363198.655199997127056, 257089.154699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602072300", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-35", "ACRE": "0.14", "LONGITUDE": -64.88498989, "LATITUDE": 18.34279607, "OBJECTID_1": 21333, "PARCEL_NO_": "105602072300", "Tax_Legal_": "394A-35 ANNAS RETREAT NO.1 NEW QTR", "Name": "LEONARD, MALCOLM & OLIVE", "Address": "PO Box 10590", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 598800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.814948180499997, "SHAPE_Area": 475.47453104099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363672.894599996507168, 257078.048500001430511 ], [ 363660.851999998092651, 257071.828200001269579 ], [ 363652.801500000059605, 257070.284699998795986 ], [ 363643.113200001418591, 257071.68299999833107 ], [ 363635.010499998927116, 257076.260800000280142 ], [ 363659.050599999725819, 257093.978300001472235 ], [ 363672.894599996507168, 257078.048500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032900", "MAP": "D9-482-T65", "PARCEL_NAM": "101", "ACRE": "1.00", "LONGITUDE": -64.86814262, "LATITUDE": 18.34245758, "OBJECTID_1": 22495, "PARCEL_NO_": "105702032900", "Tax_Legal_": "SMITH BAY 101 EAST END", "Name": "DRAGIN, JEAN", "Address": "6803 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 245000, "Improved_V": 235800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.00468923699998, "SHAPE_Area": 4276.9401418400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365459.38740000128746, 257032.719500001519918 ], [ 365448.4425999969244, 257013.770100001245737 ], [ 365398.127400003373623, 257029.896099999547005 ], [ 365395.688699997961521, 257032.19819999858737 ], [ 365393.217600002884865, 257038.299699999392033 ], [ 365394.738499999046326, 257049.077899999916553 ], [ 365398.726899996399879, 257054.17680000141263 ], [ 365434.698100000619888, 257091.201499998569489 ], [ 365437.876599997282028, 257096.715900000184774 ], [ 365439.420900002121925, 257104.750100001692772 ], [ 365441.017300002276897, 257106.662999998778105 ], [ 365443.427299998700619, 257107.738200001418591 ], [ 365446.652500003576279, 257107.764600001275539 ], [ 365468.473300002515316, 257102.032600000500679 ], [ 365459.38740000128746, 257032.719500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602046000", "MAP": "A9-15-T62", "PARCEL_NAM": "129.9", "ACRE": ".172", "LONGITUDE": -64.88927019, "LATITUDE": 18.34273229, "OBJECTID_1": 21236, "PARCEL_NO_": "105602046000", "Tax_Legal_": "129 9 ANNAS RETREAT NEW QTR", "Name": "JENNINGS, FREDERICK & C", "Address": "3033 Bent Bow Ln", "City": "Middleburg", "State": "Florida", "Zip": 32068, "Country": "United States", "Land_Value": 21300, "Improved_V": 184100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.37127596800001, "SHAPE_Area": 630.61892901600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363213.17960000038147, 257088.006999999284744 ], [ 363208.665399998426437, 257049.973200000822544 ], [ 363190.098600000143051, 257052.354400001466274 ], [ 363198.655199997127056, 257089.154699999839067 ], [ 363213.17960000038147, 257088.006999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032500", "MAP": "D9-619-T66", "PARCEL_NAM": "105C", "ACRE": "0.20", "LONGITUDE": -64.86900036, "LATITUDE": 18.34270454, "OBJECTID_1": 22491, "PARCEL_NO_": "105702032500", "Tax_Legal_": "SMITH BAY 105C EAST END", "Name": "EMANUEL, WARREN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 209600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.687305431, "SHAPE_Area": 963.80568557000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365367.142300002276897, 257070.172499999403954 ], [ 365365.442199997603893, 257065.0614 ], [ 365319.688400000333786, 257085.183499999344349 ], [ 365319.38459999859333, 257091.52419999986887 ], [ 365320.910999998450279, 257101.669199999421835 ], [ 365321.515500001609325, 257102.853999998420477 ], [ 365372.067900002002716, 257083.571100000292063 ], [ 365367.142300002276897, 257070.172499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602046100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-8", "ACRE": ".174", "LONGITUDE": -64.88911414, "LATITUDE": 18.34271577, "OBJECTID_1": 21237, "PARCEL_NO_": "105602046100", "Tax_Legal_": "129-8 ANNAS RETREAT NO.1 NEW QTR", "Name": "TODMAN, BEVERLY & LEBONY A.", "Address": "4508 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 68000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.13726444, "SHAPE_Area": 646.78703265199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363228.508500002324581, 257087.076999999582767 ], [ 363225.632100000977516, 257046.101300001144409 ], [ 363208.665399998426437, 257049.973200000822544 ], [ 363213.17960000038147, 257088.006999999284744 ], [ 363228.508500002324581, 257087.076999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602046200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-7", "ACRE": ".171", "LONGITUDE": -64.88894158, "LATITUDE": 18.34270244, "OBJECTID_1": 21238, "PARCEL_NO_": "105602046200", "Tax_Legal_": "129-7 ANNAS RETREAT NEW QTR", "Name": "GARFIELD LEWIS (LIFE ESTATE) & CLYNA JACOBS", "Address": "4507 ESTATE ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 173800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.55387379699999, "SHAPE_Area": 856.65427153899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363251.101400002837181, 257085.362100001424551 ], [ 363243.396200001239777, 257043.291400000452995 ], [ 363233.713200002908707, 257044.056499999016523 ], [ 363225.632100000977516, 257046.101300001144409 ], [ 363228.508500002324581, 257087.076999999582767 ], [ 363251.101400002837181, 257085.362100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701065500", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-85", "ACRE": "0.24", "LONGITUDE": -64.87889915, "LATITUDE": 18.34267976, "OBJECTID_1": 22214, "PARCEL_NO_": "105701065500", "Tax_Legal_": "173B-85 ANNAS RETREAT \nNEW QUARTER", "Name": "Christiana,Christine,Peter M M,&Delcan A Cannonier", "Address": "PO Box 9682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012682, "Country": "United States", "Land_Value": 30100, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.98356329699999, "SHAPE_Area": 1286.66666646 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364286.129299998283386, 257043.265799999237061 ], [ 364286.008500002324581, 257045.914099998772144 ], [ 364285.016999997198582, 257067.648600000888109 ], [ 364283.976899996399879, 257095.082299999892712 ], [ 364297.687799997627735, 257094.772300001233816 ], [ 364313.023999996483326, 257092.997999999672174 ], [ 364316.50280000269413, 257063.262200001627207 ], [ 364316.786700002849102, 257060.835200000554323 ], [ 364314.195699997246265, 257059.477699998766184 ], [ 364308.905148465477396, 257057.139357587002451 ], [ 364303.879580043023452, 257054.275541465729475 ], [ 364299.171016969019547, 257050.915896466060076 ], [ 364294.828199997544289, 257047.095199998468161 ], [ 364290.553564104717225, 257045.010551590792602 ], [ 364286.129299998283386, 257043.265799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601042300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-32", "ACRE": ".171", "LONGITUDE": -64.89390455, "LATITUDE": 18.34264012, "OBJECTID_1": 20719, "PARCEL_NO_": "105601042300", "Tax_Legal_": "ANNAS RETREAT 129A-32 NEW QTR. 3", "Name": "ALEJANDRO, EVELYN & BEULAH (LIFE ESTATE)", "Address": "PO Box 503084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23300, "Improved_V": 170300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.80945633, "SHAPE_Area": 1064.98676404 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362695.92620000243187, 257036.910799998790026 ], [ 362698.968000002205372, 257058.467199999839067 ], [ 362702.807199999690056, 257081.085700001567602 ], [ 362716.588200002908707, 257072.543600000441074 ], [ 362725.536799997091293, 257063.328699998557568 ], [ 362727.988099999725819, 257059.549100000411272 ], [ 362732.129299998283386, 257046.706300001591444 ], [ 362732.170699998736382, 257041.851500000804663 ], [ 362728.162500001490116, 257039.074499998241663 ], [ 362695.92620000243187, 257036.910799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602046300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-6", "ACRE": ".226", "LONGITUDE": -64.88870876, "LATITUDE": 18.34272685, "OBJECTID_1": 21239, "PARCEL_NO_": "105602046300", "Tax_Legal_": "129 6 ANNAS RETREAT NEW QTR", "Name": "SCOTT, WINIFRED (LIFE INTEREST)", "Address": "PO Box 502653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31500, "Improved_V": 107600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.188095694, "SHAPE_Area": 981.16081830600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363291.481799997389317, 257078.093199998140335 ], [ 363283.42230000346899, 257077.605099998414516 ], [ 363250.652999997138977, 257043.35080000013113 ], [ 363243.396200001239777, 257043.291400000452995 ], [ 363251.101400002837181, 257085.362100001424551 ], [ 363285.785499997437, 257084.168299999088049 ], [ 363289.833200000226498, 257082.301600001752377 ], [ 363291.481799997389317, 257078.093199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602071800", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-8", "ACRE": "0.14", "LONGITUDE": -64.88443579, "LATITUDE": 18.34270019, "OBJECTID_1": 21328, "PARCEL_NO_": "105602071800", "Tax_Legal_": "ANNAS RETREAT 394A-8 NEW QTR", "Name": "DONOVAN, DARVIN & MELANNE", "Address": "PO Box 10519", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 175900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.159484491, "SHAPE_Area": 628.23696601100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363728.699199996888638, 257058.662399999797344 ], [ 363711.026799999177456, 257050.707299999892712 ], [ 363698.671400003135204, 257081.214800000190735 ], [ 363715.537399999797344, 257089.16330000013113 ], [ 363728.699199996888638, 257058.662399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701065300", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-84", "ACRE": "0.23", "LONGITUDE": -64.87855976, "LATITUDE": 18.34269446, "OBJECTID_1": 22212, "PARCEL_NO_": "105701065300", "Tax_Legal_": "ANNAS RETREAT 173B-84 NEW QTR.", "Name": "ENGLAND, FLORETTE", "Address": "PO Box 8646", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.24635068699999, "SHAPE_Area": 1020.6687583200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364362.773299999535084, 257058.684000000357628 ], [ 364361.930542176298331, 257058.135422470630147 ], [ 364361.014088406227529, 257057.721549854846671 ], [ 364360.045306615706068, 257057.452031957363943 ], [ 364359.046784804901108, 257057.333152825158322 ], [ 364358.041804388747551, 257057.367684229859151 ], [ 364357.053797370288521, 257057.554821041383548 ], [ 364356.105800002813339, 257057.8902000002563 ], [ 364349.723917524854187, 257060.663562547269976 ], [ 364343.149550304631703, 257062.943400136427954 ], [ 364336.420800000429153, 257064.716499999165535 ], [ 364331.367748104035854, 257064.682005723880138 ], [ 364326.358794667117763, 257064.014990889292676 ], [ 364321.47280288831098, 257062.725957274669781 ], [ 364316.786700002849102, 257060.835200000554323 ], [ 364316.50280000269413, 257063.262200001627207 ], [ 364313.023999996483326, 257092.997999999672174 ], [ 364333.215899996459484, 257089.152399998158216 ], [ 364342.123099997639656, 257084.792399998754263 ], [ 364347.806900002062321, 257080.19480000063777 ], [ 364360.014899998903275, 257066.995900001376867 ], [ 364361.038092153612524, 257065.528926759987371 ], [ 364361.839691043074708, 257063.930060944258003 ], [ 364362.403033076203428, 257062.232539683725918 ], [ 364362.716407531697769, 257060.471650951600168 ], [ 364362.773299999535084, 257058.684000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702033000", "MAP": "G9-2486-T75", "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.86768084000001, "LATITUDE": 18.34246464, "OBJECTID_1": 22496, "PARCEL_NO_": "105702033000", "Tax_Legal_": "SMITH BAY 7 REM EAST END QTR", "Name": "JENSEN, JENS GEORG", "Address": "PO Box 10032", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53300, "Improved_V": 163400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.86007770500001, "SHAPE_Area": 3184.24009325 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365503.596100002527237, 257049.33559999987483 ], [ 365498.297200001776218, 257008.762200001627207 ], [ 365486.123400002717972, 257017.950699999928474 ], [ 365459.38740000128746, 257032.719500001519918 ], [ 365468.473300002515316, 257102.032600000500679 ], [ 365491.912100002169609, 257095.680500000715256 ], [ 365511.335600003600121, 257087.395700000226498 ], [ 365503.596100002527237, 257049.33559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701067200", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-92", "ACRE": "0.24", "LONGITUDE": -64.88036713, "LATITUDE": 18.34273087, "OBJECTID_1": 22231, "PARCEL_NO_": "105701067200", "Tax_Legal_": "173B-92 ANNA'S RETREAT NEW QTR.", "Name": "HENDERSON, VALERIAN R", "Address": "PO Box 308012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.046616212, "SHAPE_Area": 703.29881207300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364164.809900000691414, 257074.47520000115037 ], [ 364139.932899996638298, 257060.339400000870228 ], [ 364119.548500001430511, 257086.770399998873472 ], [ 364126.816100001335144, 257085.563299998641014 ], [ 364134.877499997615814, 257085.840399999171495 ], [ 364145.341499999165535, 257088.037000000476837 ], [ 364151.768700003623962, 257090.833799999207258 ], [ 364164.809900000691414, 257074.47520000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701047400", "MAP": "D9-5541-T93", "PARCEL_NAM": "1-1B-A", "ACRE": ".24", "LONGITUDE": -64.88128057, "LATITUDE": 18.34264591, "OBJECTID_1": 22101, "PARCEL_NO_": "105701047400", "Tax_Legal_": "1-1B-A ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "SEA SHELLS HOLDINGS INC", "Address": "PO Box 12287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.26536132000001, "SHAPE_Area": 1029.4616334499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364076.688799999654293, 257038.984900001436472 ], [ 364054.611000001430511, 257066.651399999856949 ], [ 364031.850900001823902, 257054.333099998533726 ], [ 364018.885300002992153, 257071.170000001788139 ], [ 364020.460199996829033, 257075.615800000727177 ], [ 364040.533500000834465, 257085.701499998569489 ], [ 364046.150700002908707, 257088.913899999111891 ], [ 364058.407200001180172, 257070.015799999237061 ], [ 364066.538699999451637, 257062.0608000010252 ], [ 364072.215300001204014, 257058.307599999010563 ], [ 364076.281000003218651, 257054.330099999904633 ], [ 364084.441200003027916, 257042.997800000011921 ], [ 364076.688799999654293, 257038.984900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601036200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-58", "ACRE": ".167", "LONGITUDE": -64.89157894, "LATITUDE": 18.34265504, "OBJECTID_1": 20671, "PARCEL_NO_": "105601036200", "Tax_Legal_": "ANNAS RETREAT 129-58 NEW QTR", "Name": "DAWSON, DIANE", "Address": "PO Box 31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25200, "Improved_V": 171300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.817897722, "SHAPE_Area": 768.05967997899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362972.484200000762939, 257040.018699999898672 ], [ 362940.129199996590614, 257051.786200001835823 ], [ 362951.999099999666214, 257078.269999999552965 ], [ 362968.200900003314018, 257069.536699999123812 ], [ 362972.275600001215935, 257064.503800000995398 ], [ 362972.484200000762939, 257040.018699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701067100", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-93", "ACRE": "0.29", "LONGITUDE": -64.88059962, "LATITUDE": 18.34268139, "OBJECTID_1": 22230, "PARCEL_NO_": "105701067100", "Tax_Legal_": "ANNAS RETREAT 173B-93 NEW QTR.", "Name": "MATTHEWS, RAYMOND", "Address": "PO Box 12416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.55329042, "SHAPE_Area": 743.63613476099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364123.882200002670288, 257051.342099998146296 ], [ 364096.185199998319149, 257084.257199998944998 ], [ 364108.254799999296665, 257087.311200000345707 ], [ 364119.548500001430511, 257086.770399998873472 ], [ 364139.932899996638298, 257060.339400000870228 ], [ 364123.882200002670288, 257051.342099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702031700", "MAP": "D9-411-T63", "PARCEL_NAM": "40F", "ACRE": "0.24", "LONGITUDE": -64.87041617, "LATITUDE": 18.34259188, "OBJECTID_1": 22482, "PARCEL_NO_": "105702031700", "Tax_Legal_": "SMITH BAY 40F EAST END QTR", "Name": "CHRISTOPHER, ALFRED & M", "Address": "PO Box 12011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28600, "Improved_V": 204200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.94809562, "SHAPE_Area": 1109.32917335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365208.521700002253056, 257042.698600001633167 ], [ 365175.247100003063679, 257067.757500000298023 ], [ 365180.756399996578693, 257083.63459999859333 ], [ 365182.351099997758865, 257085.758600000292063 ], [ 365185.488200001418591, 257096.127900000661612 ], [ 365212.249399997293949, 257078.403999999165535 ], [ 365208.521700002253056, 257042.698600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601042400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-36", "ACRE": ".169", "LONGITUDE": -64.89470734, "LATITUDE": 18.34261219, "OBJECTID_1": 20720, "PARCEL_NO_": "105601042400", "Tax_Legal_": "129A-36 ANNAS RETREAT NEW QTR", "Name": "RICHARDSON, LEROY & BOYD, CHERYL R", "Address": "7917 Estate Lilliendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 113300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.12468072, "SHAPE_Area": 761.84925197300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362640.324799999594688, 257032.444899998605251 ], [ 362618.566899999976158, 257030.789200000464916 ], [ 362619.004600003361702, 257074.06700000166893 ], [ 362634.347900003194809, 257071.448300000280142 ], [ 362640.324799999594688, 257032.444899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069900", "MAP": "D9-2599-T84", "PARCEL_NAM": "57X-43", "ACRE": ".22", "LONGITUDE": -64.87338261, "LATITUDE": 18.34255806, "OBJECTID_1": 22733, "PARCEL_NO_": "105702069900", "Tax_Legal_": "SMITH BAY 57X-64 EAST END QTR.", "Name": "WHEATLEY, IDA", "Address": "5936 Eagle Pt", "City": "Portsmouth", "State": "Virginia", "Zip": 23703, "Country": "United States", "Land_Value": 7100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.72686080099999, "SHAPE_Area": 1042.0119167099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364917.430299997329712, 257041.7939000017941 ], [ 364894.052699998021126, 257040.969200000166893 ], [ 364889.977899998426437, 257046.002099998295307 ], [ 364868.833999998867512, 257066.938400000333786 ], [ 364855.042199999094009, 257076.747000001370907 ], [ 364846.955700002610683, 257079.425000000745058 ], [ 364848.552100002765656, 257081.337900001555681 ], [ 364862.972199998795986, 257092.432799998670816 ], [ 364869.525200001895428, 257080.454100001603365 ], [ 364883.282899998128414, 257074.656100001186132 ], [ 364917.430299997329712, 257041.7939000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602072800", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-15", "ACRE": "0.14", "LONGITUDE": -64.88540965, "LATITUDE": 18.34267129, "OBJECTID_1": 21338, "PARCEL_NO_": "105602072800", "Tax_Legal_": "394A-15 ANNA'S RETREAT NEW QTR.", "Name": "WILLIAMS, ALBAN & AMY", "Address": "PO Box 502944", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20200, "Improved_V": 120700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.638771937800001, "SHAPE_Area": 507.55868383400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363628.615699999034405, 257069.664500001817942 ], [ 363602.980999998748302, 257049.822999998927116 ], [ 363593.209899999201298, 257060.931000001728535 ], [ 363616.41669999808073, 257081.808100000023842 ], [ 363628.615699999034405, 257069.664500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602047200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-5", "ACRE": ".260", "LONGITUDE": -64.88856895000001, "LATITUDE": 18.34257213, "OBJECTID_1": 21248, "PARCEL_NO_": "105602047200", "Tax_Legal_": "ANNAS RETREAT 129-5 NEW QTR", "Name": "BELLE, BERTRAM & VIVIAN", "Address": "Est Tutu #5A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 57900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.16503958800001, "SHAPE_Area": 1205.4935393200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363299.886600002646446, 257038.054200001060963 ], [ 363258.775399997830391, 257036.451200000941753 ], [ 363253.185199998319149, 257030.072599999606609 ], [ 363250.652999997138977, 257043.35080000013113 ], [ 363283.42230000346899, 257077.605099998414516 ], [ 363291.481799997389317, 257078.093199998140335 ], [ 363291.613099999725819, 257062.684500001370907 ], [ 363292.45889999717474, 257058.0472999997437 ], [ 363295.78490000218153, 257046.253299999982119 ], [ 363299.886600002646446, 257038.054200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602071900", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-9", "ACRE": "0.14", "LONGITUDE": -64.88459066, "LATITUDE": 18.34263359, "OBJECTID_1": 21329, "PARCEL_NO_": "105602071900", "Tax_Legal_": "ANNAS RETREAT 394A-9 NEW QTR.", "Name": "BYRD, G. & SOLOMON, R", "Address": "183-31 ARCADE AVE.", "City": "ST. ALBANS", "State": "New York", "Zip": 11412, "Country": "United States", "Land_Value": 20200, "Improved_V": 210800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.785158435300005, "SHAPE_Area": 548.91931736399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363711.026799999177456, 257050.707299999892712 ], [ 363695.764399997889996, 257043.827399998903275 ], [ 363683.417999997735023, 257073.279500000178814 ], [ 363698.671400003135204, 257081.214800000190735 ], [ 363711.026799999177456, 257050.707299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601038600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-11", "ACRE": ".181", "LONGITUDE": -64.89348258, "LATITUDE": 18.34263787, "OBJECTID_1": 20695, "PARCEL_NO_": "105601038600", "Tax_Legal_": "ANNAS RETREAT 129A-11 NEW QTR", "Name": "FRANCIS, HOWARD", "Address": "PO Box 8955", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 133100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.397544482, "SHAPE_Area": 873.84336200400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362773.031900003552437, 257072.79450000077486 ], [ 362770.094300001859665, 257038.99549999833107 ], [ 362750.735699996352196, 257039.681400001049042 ], [ 362743.444700002670288, 257043.632500000298023 ], [ 362736.850299999117851, 257060.465999998152256 ], [ 362768.9949000030756, 257073.39469999819994 ], [ 362773.031900003552437, 257072.79450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87505118, "LATITUDE": 18.34258227, "OBJECTID_1": 22133, "PARCEL_NO_": "105701052900", "Tax_Legal_": "SMITH BAY 77 EAST END QUARTER", "Name": "DOUGLAS, JR & SR , HUGO", "Address": "PO Box 11300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.733725292, "SHAPE_Area": 1074.8591147300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364727.704099997878075, 257068.738699998706579 ], [ 364698.950199998915195, 257036.417100001126528 ], [ 364687.356100000441074, 257072.208099998533726 ], [ 364706.565600000321865, 257089.041700001806021 ], [ 364727.704099997878075, 257068.738699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601037500", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-10", "ACRE": ".165", "LONGITUDE": -64.89324656, "LATITUDE": 18.3426329, "OBJECTID_1": 20684, "PARCEL_NO_": "105601037500", "Tax_Legal_": "129A 10 ANNAS RETREAT NEW QTR", "Name": "MCBEAN, ALVIN O. & SARINA M. (CO-TRUSTEES)", "Address": "P.O. BOX 4475", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 163700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.21011089700001, "SHAPE_Area": 725.08361849799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362793.213100001215935, 257070.215399999171495 ], [ 362793.490000002086163, 257037.709300000220537 ], [ 362770.094300001859665, 257038.99549999833107 ], [ 362773.031900003552437, 257072.79450000077486 ], [ 362776.26070000231266, 257072.398699998855591 ], [ 362793.213100001215935, 257070.215399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601042500", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-35", "ACRE": ".170", "LONGITUDE": -64.89452758, "LATITUDE": 18.342621, "OBJECTID_1": 20721, "PARCEL_NO_": "105601042500", "Tax_Legal_": "ANNAS RETREAT 129A 35 O NEW QTR", "Name": "CLAXTON, WARREN, ALEXANDER JOSEPH & LAWRENCE SEWER", "Address": "PO Box 751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25200, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.714575045, "SHAPE_Area": 719.21158654700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362658.051100000739098, 257034.067699998617172 ], [ 362640.324799999594688, 257032.444899998605251 ], [ 362634.347900003194809, 257071.448300000280142 ], [ 362642.423600003123283, 257070.036800000816584 ], [ 362656.145300000905991, 257068.460299998521805 ], [ 362658.051100000739098, 257034.067699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701037000", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-30", "ACRE": "0.23", "LONGITUDE": -64.87690383, "LATITUDE": 18.34258982, "OBJECTID_1": 22016, "PARCEL_NO_": "105701037000", "Tax_Legal_": "20-21-30 SMITH BAY EAST END QTR.", "Name": "LETTSOME, JANET & ULYSSES", "Address": "GERS COMPLEX", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38400, "Improved_V": 150200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.83825578299999, "SHAPE_Area": 927.46172449200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364524.63570000231266, 257052.722300000488758 ], [ 364510.231700003147125, 257039.727699998766184 ], [ 364488.985299997031689, 257072.695500001311302 ], [ 364519.506499998271465, 257086.877500001341105 ], [ 364519.526299998164177, 257084.555599998682737 ], [ 364524.63570000231266, 257052.722300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701033500", "MAP": "D9-2297-T83", "PARCEL_NAM": "20-5A", "ACRE": "0.25", "LONGITUDE": -64.87574776, "LATITUDE": 18.34264365, "OBJECTID_1": 21982, "PARCEL_NO_": "105701033500", "Tax_Legal_": "20-5A SMITH BAY EAST END QUARTER", "Name": "DENZIEL B & HELEN I. GEORGE TRUST", "Address": "PO Box 8344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 147100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.717788974, "SHAPE_Area": 1145.2396220799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364652.799800001084805, 257058.415300000458956 ], [ 364612.500399999320507, 257056.185600001364946 ], [ 364610.646799996495247, 257084.456999998539686 ], [ 364651.756099998950958, 257086.271099999547005 ], [ 364652.799800001084805, 257058.415300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032600", "MAP": "D9-619-T66", "PARCEL_NAM": "105D", "ACRE": "0.20", "LONGITUDE": -64.86904266000001, "LATITUDE": 18.34253365, "OBJECTID_1": 22492, "PARCEL_NO_": "105702032600", "Tax_Legal_": "SMITH BAY 105D EAST END", "Name": "BENJAMIN, EDNA", "Address": "PO Box 1274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28200, "Improved_V": 66300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.50337479300001, "SHAPE_Area": 924.58446714700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365362.424900002777576, 257055.990600001066923 ], [ 365359.59009999781847, 257047.932399999350309 ], [ 365321.069700002670288, 257060.244199998676777 ], [ 365320.36540000140667, 257071.056200001388788 ], [ 365319.688400000333786, 257085.183499999344349 ], [ 365365.442199997603893, 257065.0614 ], [ 365362.424900002777576, 257055.990600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701036700", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-28", "ACRE": "0.24", "LONGITUDE": -64.876651, "LATITUDE": 18.34262314, "OBJECTID_1": 22013, "PARCEL_NO_": "105701036700", "Tax_Legal_": "ESTATE SMITH BAY 20-21-28 EAST END QUARTER", "Name": "CHRISTOPHER, GLENRIDGE S", "Address": "PO Box 302152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32800, "Improved_V": 9200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.095568744, "SHAPE_Area": 912.76838037499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364547.74719999730587, 257084.78660000115633 ], [ 364546.070100001990795, 257080.834199998527765 ], [ 364547.743900001049042, 257073.670699998736382 ], [ 364550.171800002455711, 257072.635099999606609 ], [ 364552.619499996304512, 257069.27760000154376 ], [ 364552.862000003457069, 257052.320000000298023 ], [ 364524.63570000231266, 257052.722300000488758 ], [ 364519.526299998164177, 257084.555599998682737 ], [ 364547.74719999730587, 257084.78660000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601037400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-9", "ACRE": ".165", "LONGITUDE": -64.8930381, "LATITUDE": 18.34261792, "OBJECTID_1": 20683, "PARCEL_NO_": "105601037400", "Tax_Legal_": "129A 9 ANNAS RETREAT NEW QTR", "Name": "GUMBS, RUSSELL K. & ANNA A", "Address": "PO Box 8211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23800, "Improved_V": 84500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.490839069, "SHAPE_Area": 708.99693198299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362816.623099997639656, 257067.240600001066923 ], [ 362814.470299996435642, 257035.981199998408556 ], [ 362793.490000002086163, 257037.709300000220537 ], [ 362793.213100001215935, 257070.215399999171495 ], [ 362800.478900000452995, 257069.219399999827147 ], [ 362816.623099997639656, 257067.240600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601042600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-34", "ACRE": ".171", "LONGITUDE": -64.89433047, "LATITUDE": 18.34260761, "OBJECTID_1": 20722, "PARCEL_NO_": "105601042600", "Tax_Legal_": "129A-34 ANNAS RETREAT O NEW QTR.", "Name": "HANSEN, LAWRENCE", "Address": "PO Box 8575", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 120100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.63913022600001, "SHAPE_Area": 698.61665111900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362679.808899998664856, 257035.723400000482798 ], [ 362658.051100000739098, 257034.067699998617172 ], [ 362656.145300000905991, 257068.460299998521805 ], [ 362662.603000000119209, 257067.668800000101328 ], [ 362678.761699996888638, 257064.001400001347065 ], [ 362679.808899998664856, 257035.723400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601036600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-54", "ACRE": ".169", "LONGITUDE": -64.89229097, "LATITUDE": 18.34258635, "OBJECTID_1": 20675, "PARCEL_NO_": "105601036600", "Tax_Legal_": "129 54 ANNAS RETREAT NEW QTR", "Name": "PETERSEN, PAULINE", "Address": "PO Box 8064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 97400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.884940163, "SHAPE_Area": 742.444985363 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362891.937399998307228, 257029.438000001013279 ], [ 362878.215700000524521, 257031.014499999582767 ], [ 362875.782399997115135, 257032.683299999684095 ], [ 362873.334700003266335, 257036.040800001472235 ], [ 362873.851499997079372, 257070.031100001186132 ], [ 362894.027300000190735, 257068.085299998521805 ], [ 362891.937399998307228, 257029.438000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701060200", "MAP": "D9-2501-T83", "PARCEL_NAM": "173B-28", "ACRE": "0.23", "LONGITUDE": -64.88086961, "LATITUDE": 18.34256884, "OBJECTID_1": 22164, "PARCEL_NO_": "105701060200", "Tax_Legal_": "ANNAS RETREAT 173B-28 NEW QTR.", "Name": "PAYNE, I. & CHALON, C", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 212200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.58029824499999, "SHAPE_Area": 775.29388714799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364110.160499997437, 257052.918600000441074 ], [ 364091.748400002717972, 257037.146999999880791 ], [ 364088.467399999499321, 257043.664000000804663 ], [ 364080.314300000667572, 257054.151999998837709 ], [ 364078.685500003397465, 257056.038499999791384 ], [ 364069.747800000011921, 257063.986900001764297 ], [ 364088.976999998092651, 257078.498599998652935 ], [ 364110.160499997437, 257052.918600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601036500", "MAP": "A9-15-T62", "PARCEL_NAM": "129-53", "ACRE": ".169", "LONGITUDE": -64.89209976, "LATITUDE": 18.34255255, "OBJECTID_1": 20674, "PARCEL_NO_": "105601036500", "Tax_Legal_": "129 53 ANNAS RETREAT NEW QTR", "Name": "TURNBULL JR, KENNETH C.", "Address": "4703 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 138800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.690223045, "SHAPE_Area": 798.52922263100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362916.675999999046326, 257059.826900001615286 ], [ 362912.921300001442432, 257027.28770000115037 ], [ 362891.937399998307228, 257029.438000001013279 ], [ 362894.027300000190735, 257068.085299998521805 ], [ 362905.346199996769428, 257064.589299999177456 ], [ 362915.05799999833107, 257060.446899998933077 ], [ 362916.675999999046326, 257059.826900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601036900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-60", "ACRE": ".165", "LONGITUDE": -64.8928208, "LATITUDE": 18.34259421, "OBJECTID_1": 20678, "PARCEL_NO_": "105601036900", "Tax_Legal_": "ANNAS RETREAT 129-60 NEW QTR", "Name": "HORSFORD, EUNICE & DEBRA S. WATLINGTON", "Address": "PO Box 304115", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.189814485, "SHAPE_Area": 733.76463670199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362841.649400003254414, 257063.856899999082088 ], [ 362837.063199996948242, 257034.266199998557568 ], [ 362814.470299996435642, 257035.981199998408556 ], [ 362816.623099997639656, 257067.240600001066923 ], [ 362821.466399997472763, 257066.646999999880791 ], [ 362841.649400003254414, 257063.856899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702030900", "MAP": "D9-411-T63", "PARCEL_NAM": "40L", "ACRE": "0.25", "LONGITUDE": -64.87089356, "LATITUDE": 18.3425165, "OBJECTID_1": 22473, "PARCEL_NO_": "105702030900", "Tax_Legal_": "SMITH BAY 40L EAST END QTR", "Name": "RICHARDS, EYON & ELESE", "Address": "PO Box 6466", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 39000, "Improved_V": 124400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.81444371399999, "SHAPE_Area": 1251.95896335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365167.140799999237061, 257072.757399998605251 ], [ 365154.532899998128414, 257038.245999999344349 ], [ 365122.982500001788139, 257050.231199998408556 ], [ 365132.436999998986721, 257076.27309999987483 ], [ 365135.58500000089407, 257085.375900000333786 ], [ 365167.140799999237061, 257072.757399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602073000", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-10", "ACRE": "0.14", "LONGITUDE": -64.88475074, "LATITUDE": 18.3425611, "OBJECTID_1": 21340, "PARCEL_NO_": "105602073000", "Tax_Legal_": "394A-10 ANNAS RETREAT NEW QTR", "Name": "GUMBS, CALVIN", "Address": "PO Box 12013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 253600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.92325117199999, "SHAPE_Area": 644.23455744900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363695.764399997889996, 257043.827399998903275 ], [ 363677.289399996399879, 257035.443599998950958 ], [ 363664.951899997889996, 257063.840199999511242 ], [ 363683.417999997735023, 257073.279500000178814 ], [ 363695.764399997889996, 257043.827399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702033100", "MAP": "G9-1686-T70", "PARCEL_NAM": "5", "ACRE": "0.50", "LONGITUDE": -64.86728464, "LATITUDE": 18.34242733, "OBJECTID_1": 22497, "PARCEL_NO_": "105702033100", "Tax_Legal_": "SMITH BAY 5 EAST END QTR", "Name": "JOHNSON, SR. AUBREY & EDITH", "Address": "5300", "City": "Fpo", "State": null, "Zip": 96351, "Country": "United States", "Land_Value": 70400, "Improved_V": 191200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.00285632000001, "SHAPE_Area": 1716.7105528500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365546.589599996805191, 257019.28999999910593 ], [ 365503.596100002527237, 257049.33559999987483 ], [ 365511.335600003600121, 257087.395700000226498 ], [ 365542.122900001704693, 257070.338100001215935 ], [ 365542.941799998283386, 257068.86710000038147 ], [ 365543.764300003647804, 257066.973999999463558 ], [ 365546.589599996805191, 257019.28999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601042700", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-33", "ACRE": ".175", "LONGITUDE": -64.89413955000001, "LATITUDE": 18.34259308, "OBJECTID_1": 20723, "PARCEL_NO_": "105601042700", "Tax_Legal_": "129A 33 ANNAS RETREAT NEW QTR", "Name": "FOSTER, DAVID P", "Address": "PO Box 302901", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 145700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.179770475699996, "SHAPE_Area": 455.55974187100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362695.92620000243187, 257036.910799998790026 ], [ 362679.808899998664856, 257035.723400000482798 ], [ 362678.761699996888638, 257064.001400001347065 ], [ 362682.802199997007847, 257062.978999998420477 ], [ 362698.968000002205372, 257058.467199999839067 ], [ 362695.92620000243187, 257036.910799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602046400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-24", "ACRE": ".168", "LONGITUDE": -64.89118072, "LATITUDE": 18.34262176, "OBJECTID_1": 21240, "PARCEL_NO_": "105602046400", "Tax_Legal_": "129-24 & 25 ANNA'S RETREAT NEW QTR", "Name": "SAMUEL, PATRICIA A", "Address": "PO Box 7782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54800, "Improved_V": 57700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.07761189199999, "SHAPE_Area": 690.44718926500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363019.835400000214577, 257066.370700001716614 ], [ 363015.191799998283386, 257043.534600000828505 ], [ 362981.292499996721745, 257047.267900001257658 ], [ 362981.965700000524521, 257062.894400000572205 ], [ 363019.835400000214577, 257066.370700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602046500", "MAP": "A9-15-T62", "PARCEL_NAM": "129-18", "ACRE": ".181", "LONGITUDE": -64.89091915, "LATITUDE": 18.34260516, "OBJECTID_1": 21241, "PARCEL_NO_": "105602046500", "Tax_Legal_": "129-18 ANNAS RETREAT NEW QTR", "Name": "RICHARDS, CHARLENE A.", "Address": "120 Long Pond Ln", "City": "Staten Island", "State": "New York", "Zip": 10304, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.587576940899993, "SHAPE_Area": 509.77066392 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363041.645400002598763, 257061.905200000852346 ], [ 363037.790100000798702, 257041.1864 ], [ 363015.191799998283386, 257043.534600000828505 ], [ 363019.835400000214577, 257066.370700001716614 ], [ 363031.933700002729893, 257066.047499999403954 ], [ 363032.754399999976158, 257064.365499999374151 ], [ 363035.997599996626377, 257062.281100001186132 ], [ 363041.645400002598763, 257061.905200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602046600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-19", "ACRE": ".165", "LONGITUDE": -64.89065772, "LATITUDE": 18.34259746, "OBJECTID_1": 21242, "PARCEL_NO_": "105602046600", "Tax_Legal_": "129 19 ANNAS RETREAT NEW QTR", "Name": "RICHARDS, STEPHEN A.", "Address": "120 Long Pond Ln", "City": "Staten Island", "State": "New York", "Zip": 10304, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.5301282, "SHAPE_Area": 814.27376762899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363076.286300003528595, 257065.777300000190735 ], [ 363064.432599999010563, 257037.393699999898672 ], [ 363037.790100000798702, 257041.1864 ], [ 363041.645400002598763, 257061.905200000852346 ], [ 363044.059000000357628, 257062.558200001716614 ], [ 363048.067199997603893, 257065.335200000554323 ], [ 363052.894199997186661, 257066.64130000025034 ], [ 363076.286300003528595, 257065.777300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702065700", "MAP": "F9-3547-T78", "PARCEL_NAM": "57T-21", "ACRE": "0.33", "LONGITUDE": -64.87122224, "LATITUDE": 18.34251661, "OBJECTID_1": 22701, "PARCEL_NO_": "105702065700", "Tax_Legal_": "SMITH BAY 57T-21 EAST END QTR", "Name": "REY, ANGELA", "Address": "PO Box 12232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.95503924299999, "SHAPE_Area": 1300.21488763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365122.982500001788139, 257050.231199998408556 ], [ 365115.115299999713898, 257027.157600000500679 ], [ 365114.2837999984622, 257030.106100000441074 ], [ 365110.201899997889996, 257035.983300000429153 ], [ 365094.725599996745586, 257054.221799999475479 ], [ 365091.359999999403954, 257070.659499999135733 ], [ 365091.255800001323223, 257082.902100000530481 ], [ 365132.436999998986721, 257076.27309999987483 ], [ 365122.982500001788139, 257050.231199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701036400", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-24", "ACRE": ".23", "LONGITUDE": -64.87611601, "LATITUDE": 18.34250451, "OBJECTID_1": 22010, "PARCEL_NO_": "105701036400", "Tax_Legal_": "20-21-24 SMITH BAY EAST END QTR.", "Name": "Cydrenia Ferness, Bjorn J Kadoo & Zoey G Prosper", "Address": "PO Box 503334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053334, "Country": "United States", "Land_Value": 37400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.79551252900001, "SHAPE_Area": 1103.23737747 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364607.032399997115135, 257035.453699998557568 ], [ 364579.625, 257034.385000001639128 ], [ 364580.082400001585484, 257075.340900000184774 ], [ 364605.041400000452995, 257078.640500001609325 ], [ 364607.032399997115135, 257035.453699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044400", "MAP": "D9-1328-T77", "PARCEL_NAM": "3C", "ACRE": null, "LONGITUDE": -64.89919592, "LATITUDE": 18.34223054, "OBJECTID_1": 20740, "PARCEL_NO_": "105601044400", "Tax_Legal_": "REM 3(3C) ESTATE DONOE NEW QTR", "Name": "V. I. H. A. HOUSING AUTHORITY", "Address": "4100 Estate Donoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022204, "Country": "United States", "Land_Value": 517500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 405.44938447800001, "SHAPE_Area": 7132.2801611599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362225.11879999935627, 257023.769299998879433 ], [ 362185.88459999859333, 256991.15089999884367 ], [ 362177.310099996626377, 256956.461399998515844 ], [ 362149.215000003576279, 256941.454900000244379 ], [ 362130.364200003445148, 256977.186500001698732 ], [ 362122.335199996829033, 256973.109999999403954 ], [ 362118.30179999768734, 256973.288100000470877 ], [ 362114.243299998342991, 256976.421300001442432 ], [ 362113.422600001096725, 256978.103300001472235 ], [ 362111.739799998700619, 256986.322200000286102 ], [ 362112.382500000298023, 257005.537000000476837 ], [ 362116.277400001883507, 257021.611999999731779 ], [ 362117.87389999628067, 257023.524900000542402 ], [ 362117.004600003361702, 257030.905999999493361 ], [ 362115.359600000083447, 257034.692299999296665 ], [ 362111.306500002741814, 257037.192200001329184 ], [ 362105.656900003552437, 257037.779199998825788 ], [ 362102.438799999654293, 257036.908500000834465 ], [ 362100.838799998164177, 257035.41780000180006 ], [ 362099.9695999994874, 257042.798900000751019 ], [ 362099.841899998486042, 257057.785500001162291 ], [ 362225.11879999935627, 257023.769299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601036800", "MAP": "A9-15-T62", "PARCEL_NAM": "129-59", "ACRE": ".166", "LONGITUDE": -64.89259402, "LATITUDE": 18.34256775, "OBJECTID_1": 20677, "PARCEL_NO_": "105601036800", "Tax_Legal_": "ANNAS RETREAT 129 59 NEW QTR", "Name": "BLONDMENVILLE, HAZEL", "Address": "4315 Worrell Dr", "City": "Houston", "State": "Texas", "Zip": 77045, "Country": "United States", "Land_Value": 21900, "Improved_V": 105400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.65307033400001, "SHAPE_Area": 711.042092787 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362865.059399999678135, 257060.882100000977516 ], [ 362863.635600000619888, 257038.705600000917912 ], [ 362859.64360000193119, 257034.028900001198053 ], [ 362854.008400000631809, 257032.927299998700619 ], [ 362837.063199996948242, 257034.266199998557568 ], [ 362841.649400003254414, 257063.856899999082088 ], [ 362865.059399999678135, 257060.882100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602046700", "MAP": "A9-15-T62", "PARCEL_NAM": "129-20", "ACRE": ".179", "LONGITUDE": -64.89036532, "LATITUDE": 18.34253947, "OBJECTID_1": 21243, "PARCEL_NO_": "105602046700", "Tax_Legal_": "129 20 ANNAS RETREAT NEW QTR", "Name": "WELLS, LLOYD", "Address": "PO Box 9775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 172200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.63438238800001, "SHAPE_Area": 1280.72575037 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363075.040500000119209, 257022.703999999910593 ], [ 363064.432599999010563, 257037.393699999898672 ], [ 363076.286300003528595, 257065.777300000190735 ], [ 363085.157499998807907, 257065.638799998909235 ], [ 363095.657600000500679, 257063.613800000399351 ], [ 363106.173799999058247, 257059.689100001007318 ], [ 363115.09179999679327, 257054.0625 ], [ 363115.120600000023842, 257050.685300000011921 ], [ 363084.676700003445148, 257027.426899999380112 ], [ 363075.040500000119209, 257022.703999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701067000", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-91", "ACRE": "0.28", "LONGITUDE": -64.88025629000001, "LATITUDE": 18.34252647, "OBJECTID_1": 22229, "PARCEL_NO_": "105701067000", "Tax_Legal_": "ANNAS RETREAT 173B-91 NEW QTR.", "Name": "TITUS, ROSALIND", "Address": "PO Box 12011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.988265885, "SHAPE_Area": 1239.3645302 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364139.932899996638298, 257060.339400000870228 ], [ 364164.809900000691414, 257074.47520000115037 ], [ 364174.593599997460842, 257061.889699999243021 ], [ 364190.655100002884865, 257069.62049999833107 ], [ 364193.113600000739098, 257064.996599998325109 ], [ 364190.70719999819994, 257063.499200001358986 ], [ 364189.91889999806881, 257061.381799999624491 ], [ 364187.512500002980232, 257059.884500000625849 ], [ 364177.883500002324581, 257054.317200001329184 ], [ 364141.781099997460842, 257032.701299998909235 ], [ 364123.882200002670288, 257051.342099998146296 ], [ 364139.932899996638298, 257060.339400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701036900", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-3", "ACRE": "0.23", "LONGITUDE": -64.87728387, "LATITUDE": 18.3424868, "OBJECTID_1": 22015, "PARCEL_NO_": "105701036900", "Tax_Legal_": "20-21-3 SMITH BAY EAST END QTR.", "Name": "DUZANSON (LIFE ESTATE), FERNANDE", "Address": "500 W Airtex Dr", "City": "Houston", "State": "Texas", "Zip": 77090, "Country": "United States", "Land_Value": 27400, "Improved_V": 50300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.361863785, "SHAPE_Area": 1440.5524822299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364498.079499997198582, 257046.383200000971556 ], [ 364457.097800001502037, 257029.582499999552965 ], [ 364442.344999998807907, 257057.537200000137091 ], [ 364479.273599997162819, 257076.837900001555681 ], [ 364498.079499997198582, 257046.383200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602072600", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-14", "ACRE": "0.14", "LONGITUDE": -64.88531805, "LATITUDE": 18.34254817, "OBJECTID_1": 21336, "PARCEL_NO_": "105602072600", "Tax_Legal_": "394A-14 ANNAS RETREAT NEW QTR.", "Name": "STANLEY, NAASON & ADELYN & FIDELIA", "Address": "PO Box 304348", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.99057554300001, "SHAPE_Area": 560.32100502499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363637.530100002884865, 257064.460200000554323 ], [ 363617.647399999201298, 257032.000100001692772 ], [ 363610.306100003421307, 257041.861400000751019 ], [ 363602.980999998748302, 257049.822999998927116 ], [ 363628.615699999034405, 257069.664500001817942 ], [ 363633.484200000762939, 257066.115800000727177 ], [ 363637.530100002884865, 257064.460200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602019200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88441957000001, "LATITUDE": 18.34204635, "OBJECTID_1": 21005, "PARCEL_NO_": "105602019200", "Tax_Legal_": "213 ANNAS RETREAT NEW QTR", "Name": "ST P & P CATHOLIC CHURCH", "Address": "PO Box 502218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 497000, "Improved_V": 1959800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 469.70804364399999, "SHAPE_Area": 13480.675196100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363637.927500002086163, 257017.811700001358986 ], [ 363658.009800001978874, 257026.842000000178814 ], [ 363677.289399996399879, 257035.443599998950958 ], [ 363695.764399997889996, 257043.827399998903275 ], [ 363711.026799999177456, 257050.707299999892712 ], [ 363728.699199996888638, 257058.662399999797344 ], [ 363743.961599998176098, 257065.542399998754263 ], [ 363755.208599999547005, 257070.489599999040365 ], [ 363797.911799997091293, 256979.857700001448393 ], [ 363725.626000002026558, 256946.124400001019239 ], [ 363688.70830000191927, 256925.557300001382828 ], [ 363683.067699998617172, 256925.088899999856949 ], [ 363679.829899996519089, 256926.540100000798702 ], [ 363677.391099996864796, 256928.842199999839067 ], [ 363675.740800000727177, 256933.261599998921156 ], [ 363674.113799996674061, 256934.936999998986721 ], [ 363672.459799997508526, 256939.7787000015378 ], [ 363670.820200003683567, 256942.931600000709295 ], [ 363669.180600002408028, 256946.084600001573563 ], [ 363663.442900002002716, 256957.014499999582767 ], [ 363661.803300000727177, 256960.167500000447035 ], [ 363657.705200001597404, 256967.944400001317263 ], [ 363656.078199997544289, 256969.619899999350309 ], [ 363651.148599997162819, 256980.345300000160933 ], [ 363649.523400001227856, 256981.80970000103116 ], [ 363642.149700000882149, 256995.470400001853704 ], [ 363641.318199999630451, 256998.4189000017941 ], [ 363639.693000003695488, 256999.883200000971556 ], [ 363638.86150000244379, 257002.831700000911951 ], [ 363630.697700001299381, 257014.586199998855591 ], [ 363637.927500002086163, 257017.811700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702065300", "MAP": "G9-2719-T78", "PARCEL_NAM": "57T-17", "ACRE": "0.24", "LONGITUDE": -64.87163779, "LATITUDE": 18.34248585, "OBJECTID_1": 22697, "PARCEL_NO_": "105702065300", "Tax_Legal_": "SMITH BAY 57T-17 EAST END QTR", "Name": "DARROU, F. S. , STEPHEN &", "Address": "PO Box 9191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 3900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.102116669, "SHAPE_Area": 1130.0065897300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365093.177699998021126, 257046.6097999997437 ], [ 365057.770000003278255, 257038.08729999884963 ], [ 365051.175700001418591, 257054.920800000429153 ], [ 365051.157700002193451, 257057.031599998474121 ], [ 365049.527099996805191, 257059.129200000315905 ], [ 365049.509099997580051, 257061.239999998360872 ], [ 365047.878499999642372, 257063.337600000202656 ], [ 365047.860500000417233, 257065.448399998247623 ], [ 365046.229900002479553, 257067.546000000089407 ], [ 365041.278800003230572, 257080.804299999028444 ], [ 365086.58330000191927, 257063.443300001323223 ], [ 365089.106499999761581, 257051.220499999821186 ], [ 365093.177699998021126, 257046.6097999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701036300", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-23", "ACRE": ".23", "LONGITUDE": -64.87633945, "LATITUDE": 18.34248134, "OBJECTID_1": 22009, "PARCEL_NO_": "105701036300", "Tax_Legal_": "20-21-23 EST.SMITH BAY No. 1,2&3 EASTEND QTR.", "Name": "ELOI, DESMON", "Address": "PO Box 10190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44000, "Improved_V": 298600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.19251038199999, "SHAPE_Area": 895.03567598300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364579.646499998867512, 257031.852099999785423 ], [ 364557.073399998247623, 257031.245099999010563 ], [ 364558.624899998307228, 257038.434999998658895 ], [ 364559.982100002467632, 257068.421399999409914 ], [ 364559.127300001680851, 257074.113899998366833 ], [ 364580.082400001585484, 257075.340900000184774 ], [ 364579.625, 257034.385000001639128 ], [ 364579.646499998867512, 257031.852099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701047500", "MAP": "D9-7889-T006", "PARCEL_NAM": "1-1A-1", "ACRE": ".22", "LONGITUDE": -64.88163204, "LATITUDE": 18.34251312, "OBJECTID_1": 22102, "PARCEL_NO_": "105701047500", "Tax_Legal_": "1-1A-1 ANNAS RETREAT NO.1 NEW QTR", "Name": "EDDIE FREEMAN REVOCBLE TRUST", "Address": "PO BOX 3479", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.461395192, "SHAPE_Area": 858.19527438399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364031.215599998831749, 257043.617600001394749 ], [ 364009.604099996387959, 257032.054000001400709 ], [ 364003.021600000560284, 257040.220499999821186 ], [ 363988.342600002884865, 257059.520899999886751 ], [ 364010.023100003600121, 257070.253100000321865 ], [ 364012.44200000166893, 257070.272900000214577 ], [ 364031.215599998831749, 257043.617600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87420733, "LATITUDE": 18.34241236, "OBJECTID_1": 22606, "PARCEL_NO_": "105702051500", "Tax_Legal_": "SMITH BAY 57D 1 2&3 RED HOOK QTR", "Name": "THOMAS, ROBERT JR. & CORINA", "Address": "PO Box 390332", "City": "Snellville", "State": "Georgia", "Zip": 30039, "Country": "United States", "Land_Value": 20500, "Improved_V": 40800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.85013579100001, "SHAPE_Area": 731.29522796000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364807.748400002717972, 257043.640399999916553 ], [ 364782.957800000905991, 257019.372800000011921 ], [ 364784.304200001060963, 257050.625700000673532 ], [ 364802.635399997234344, 257075.895799998193979 ], [ 364807.748400002717972, 257043.640399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601036400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-52", "ACRE": ".171", "LONGITUDE": -64.89188887, "LATITUDE": 18.34250207, "OBJECTID_1": 20673, "PARCEL_NO_": "105601036400", "Tax_Legal_": "129-52 ANNAS RETREAT NEW QTR", "Name": "GEORGE, MILDRED, AVIS & R DAWSON", "Address": "PO Box 502066", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26500, "Improved_V": 114600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.27751135699999, "SHAPE_Area": 702.532434502 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362940.129199996590614, 257051.786200001835823 ], [ 362935.517899997532368, 257025.150699999183416 ], [ 362912.921300001442432, 257027.28770000115037 ], [ 362916.675999999046326, 257059.826900001615286 ], [ 362940.129199996590614, 257051.786200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701065900", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-86", "ACRE": null, "LONGITUDE": -64.87920745, "LATITUDE": 18.34250543, "OBJECTID_1": 22218, "PARCEL_NO_": "105701065900", "Tax_Legal_": "ANNAS RETREAT 173B-86 NEW QTR", "Name": "AUGUSTE, MICHAEL & MAGDALINA", "Address": "PO Box 502743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31500, "Improved_V": 59600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.20615715299999, "SHAPE_Area": 1119.8273701200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364249.848399996757507, 257031.068199999630451 ], [ 364249.826999999582767, 257033.58559999987483 ], [ 364249.517700001597404, 257069.891199998557568 ], [ 364285.016999997198582, 257067.648600000888109 ], [ 364286.008500002324581, 257045.914099998772144 ], [ 364286.129299998283386, 257043.265799999237061 ], [ 364279.588100001215935, 257041.380199998617172 ], [ 364266.932392598246224, 257037.34617204265669 ], [ 364254.188100002706051, 257033.601399999111891 ], [ 364249.848399996757507, 257031.068199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602072400", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-13", "ACRE": "0.14", "LONGITUDE": -64.88520842, "LATITUDE": 18.34241622, "OBJECTID_1": 21334, "PARCEL_NO_": "105602072400", "Tax_Legal_": "394A-13 ANNAS RETREAT NEW QTR", "Name": "STANLEY, NASON & ADELYN & FIDELIA", "Address": "PO Box 304348", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 110500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.951332894, "SHAPE_Area": 667.04390585099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363630.697700001299381, 257014.586199998855591 ], [ 363617.647399999201298, 257032.000100001692772 ], [ 363637.530100002884865, 257064.460200000554323 ], [ 363642.384199999272823, 257062.600099999457598 ], [ 363637.927500002086163, 257017.811700001358986 ], [ 363630.697700001299381, 257014.586199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602072100", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-11", "ACRE": "0.14", "LONGITUDE": -64.8849241, "LATITUDE": 18.34248857, "OBJECTID_1": 21331, "PARCEL_NO_": "105602072100", "Tax_Legal_": "394A-11 ANNAS RETREAT NEW QTR.", "Name": "Allen,Annie Patricia, Allen, Jr. & Anthon Fahie", "Address": "Po Box 10980", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 307600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.45703130699999, "SHAPE_Area": 621.68145122800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363658.009800001978874, 257026.842000000178814 ], [ 363648.037399999797344, 257061.590900000184774 ], [ 363657.713100001215935, 257061.670000001788139 ], [ 363664.951899997889996, 257063.840199999511242 ], [ 363677.289399996399879, 257035.443599998950958 ], [ 363658.009800001978874, 257026.842000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602072200", "MAP": "C9-254-T80", "PARCEL_NAM": "394A-12", "ACRE": "0.14", "LONGITUDE": -64.88507058, "LATITUDE": 18.34242079, "OBJECTID_1": 21332, "PARCEL_NO_": "105602072200", "Tax_Legal_": "394A-12 ANNAS RETREAT NEW QTR.", "Name": "JEAN & SHELIA ( LIFE ESTATE), GERARD", "Address": "PO Box 10776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.92291283599999, "SHAPE_Area": 522.79354135999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363637.927500002086163, 257017.811700001358986 ], [ 363642.384199999272823, 257062.600099999457598 ], [ 363648.037399999797344, 257061.590900000184774 ], [ 363658.009800001978874, 257026.842000000178814 ], [ 363637.927500002086163, 257017.811700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064500", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-80", "ACRE": "0.28", "LONGITUDE": -64.8782185, "LATITUDE": 18.34241813, "OBJECTID_1": 22205, "PARCEL_NO_": "105701064500", "Tax_Legal_": "ANNAS RETREAT 173B-80 NEW QTR.", "Name": "JOSEPH, MARGARET", "Address": "PO Box 10163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38400, "Improved_V": 125300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.909144662, "SHAPE_Area": 728.982616194 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364376.96000000089407, 257065.656899999827147 ], [ 364385.343199998140335, 257028.15089999884367 ], [ 364361.144799999892712, 257029.008299998939037 ], [ 364355.295699998736382, 257053.025100000202656 ], [ 364360.142499998211861, 257052.009300000965595 ], [ 364365.76690000295639, 257054.377300001680851 ], [ 364366.807899996638298, 257056.043299999088049 ], [ 364367.326185500191059, 257058.132161435962189 ], [ 364367.5515872646356, 257060.272524958883878 ], [ 364367.479801922803745, 257062.423526779050007 ], [ 364367.112199999392033, 257064.544100001454353 ], [ 364368.904100000858307, 257064.746599998325109 ], [ 364376.96000000089407, 257065.656899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8720456, "LATITUDE": 18.34241107, "OBJECTID_1": 22638, "PARCEL_NO_": "105702061800", "Tax_Legal_": "SMITH BAY 57-116 1,2&3 EAST END QTR", "Name": "RAYNE, RUPERT & MARGARET", "Address": "6553 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29700, "Improved_V": 100100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.64679068699999, "SHAPE_Area": 1362.6156179 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365048.405299998819828, 257036.812600001692772 ], [ 365009.279700003564358, 257028.147199999541044 ], [ 365006.995700001716614, 257034.927499998360872 ], [ 365003.678800001740456, 257045.666200000792742 ], [ 365000.316899999976158, 257061.681800000369549 ], [ 365035.722699999809265, 257070.415300000458956 ], [ 365039.028899997472763, 257060.94310000166297 ], [ 365040.659500002861023, 257058.845499999821186 ], [ 365041.5016999989748, 257054.63060000166297 ], [ 365043.132299996912479, 257052.532999999821186 ], [ 365043.1503000035882, 257050.422200001776218 ], [ 365047.270000003278255, 257040.112300001084805 ], [ 365048.405299998819828, 257036.812600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601036300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-51", "ACRE": ".186", "LONGITUDE": -64.89163001, "LATITUDE": 18.34244374, "OBJECTID_1": 20672, "PARCEL_NO_": "105601036300", "Tax_Legal_": "ANNAS RETREAT 129-51 NEW QTR", "Name": "WALLACE PROPERTY TRUST", "Address": "PO Box 305037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28200, "Improved_V": 154500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.00391819, "SHAPE_Area": 770.18918947999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362972.484200000762939, 257040.018699999898672 ], [ 362971.778599999845028, 257028.191599998623133 ], [ 362968.587499998509884, 257024.154800001531839 ], [ 362964.570299997925758, 257022.433100000023842 ], [ 362935.517899997532368, 257025.150699999183416 ], [ 362940.129199996590614, 257051.786200001835823 ], [ 362972.484200000762939, 257040.018699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032700", "MAP": "D9-619-T66", "PARCEL_NAM": "105E", "ACRE": "0.20", "LONGITUDE": -64.86906278, "LATITUDE": 18.34232194, "OBJECTID_1": 22493, "PARCEL_NO_": "105702032700", "Tax_Legal_": "SMITH BAY 105E EAST END", "Name": "EMANUEL, MAUREEN", "Address": "PO Box 1274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.112739542, "SHAPE_Area": 897.66327394699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365359.59009999781847, 257047.932399999350309 ], [ 365351.402699999511242, 257024.658500000834465 ], [ 365325.552100002765656, 257030.146499998867512 ], [ 365322.220799997448921, 257042.573699999600649 ], [ 365321.069700002670288, 257060.244199998676777 ], [ 365359.59009999781847, 257047.932399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88187726, "LATITUDE": 18.34242665, "OBJECTID_1": 22038, "PARCEL_NO_": "105701040500", "Tax_Legal_": "13 ANNAS RETREAT NEW QUARTER", "Name": "INDUS VALLEY, INC.", "Address": "PO Box 12287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.18566868800001, "SHAPE_Area": 714.44468663099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363978.178800001740456, 257022.074200000613928 ], [ 363969.13849999755621, 257042.054099999368191 ], [ 363970.684600003063679, 257049.877199999988079 ], [ 363973.083800002932549, 257052.218899998813868 ], [ 363988.342600002884865, 257059.520899999886751 ], [ 364003.021600000560284, 257040.220499999821186 ], [ 363978.178800001740456, 257022.074200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044800", "MAP": "A9-195-T73", "PARCEL_NAM": "3B-1", "ACRE": null, "LONGITUDE": -64.89766709, "LATITUDE": 18.34158496, "OBJECTID_1": 20742, "PARCEL_NO_": "105601044800", "Tax_Legal_": "DONOE 3A,3B-1,2,3&4&3B NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 538800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 767.43619161799995, "SHAPE_Area": 31571.844334699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362436.607500001788139, 256903.277100000530481 ], [ 362426.913099996745586, 256810.738800000399351 ], [ 362388.82940000295639, 256832.380800001323223 ], [ 362386.405000001192093, 256832.994300000369549 ], [ 362386.370899997651577, 256837.004799999296665 ], [ 362353.956500001251698, 256855.737900000065565 ], [ 362346.717699997127056, 256853.567699998617172 ], [ 362298.089000001549721, 256882.511700000613928 ], [ 362271.52929999679327, 256876.594799999147654 ], [ 362177.310099996626377, 256956.461399998515844 ], [ 362185.88459999859333, 256991.15089999884367 ], [ 362225.11879999935627, 257023.769299998879433 ], [ 362250.742799997329712, 257044.877300001680851 ], [ 362282.345399998128414, 257026.770799998193979 ], [ 362288.018399998545647, 257023.439800001680851 ], [ 362323.672399997711182, 257003.044399999082088 ], [ 362327.723700001835823, 257000.755499999970198 ], [ 362440.356799997389317, 256936.449499998241663 ], [ 362436.607500001788139, 256903.277100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702031800", "MAP": "D9-411-T63", "PARCEL_NAM": "40G", "ACRE": "0.26", "LONGITUDE": -64.87048928, "LATITUDE": 18.34231425, "OBJECTID_1": 22483, "PARCEL_NO_": "105702031800", "Tax_Legal_": "SMITH BAY 40G EAST END QTR", "Name": "TURNBULL, SAMUEL E. & BURTON S.", "Address": "PO Box 9464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 137700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.478498054, "SHAPE_Area": 1323.61589718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365205.566200003027916, 257011.010400000959635 ], [ 365164.208700001239777, 257038.325199998915195 ], [ 365175.247100003063679, 257067.757500000298023 ], [ 365208.521700002253056, 257042.698600001633167 ], [ 365205.566200003027916, 257011.010400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064700", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-81", "ACRE": "0.28", "LONGITUDE": -64.87854333, "LATITUDE": 18.34243212, "OBJECTID_1": 22207, "PARCEL_NO_": "105701064700", "Tax_Legal_": "ANNAS RETREAT 173B-81 NEW QTR.", "Name": "FREDERICK, B,N,O & OTHERS", "Address": "PO Box 502254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 38400, "Improved_V": 225400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.35001196299999, "SHAPE_Area": 1089.70978765 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364355.295699998736382, 257053.025100000202656 ], [ 364361.144799999892712, 257029.008299998939037 ], [ 364343.398800000548363, 257029.707400001585484 ], [ 364339.673799999058247, 257029.854100000113249 ], [ 364338.325800001621246, 257031.0614 ], [ 364335.018803611863405, 257034.232669154560426 ], [ 364331.335839766950812, 257036.958279267855687 ], [ 364327.336550394305959, 257039.194091801648028 ], [ 364323.085699997842312, 257040.903900001198053 ], [ 364316.159209427598398, 257041.795997771521797 ], [ 364309.274499997496605, 257042.967700000852346 ], [ 364308.184271872101817, 257043.175020489637973 ], [ 364307.138952651410364, 257043.547695786954137 ], [ 364306.163461196993012, 257044.076841865840834 ], [ 364305.281051779980771, 257044.749844667676371 ], [ 364304.512759733712301, 257045.550660802662605 ], [ 364303.876900002360344, 257046.460200000554323 ], [ 364303.900055199512281, 257046.878120844048681 ], [ 364303.9921658221283, 257047.286421747499844 ], [ 364304.150683287007269, 257047.673805546743097 ], [ 364304.371221618435811, 257048.029553827043856 ], [ 364304.647678802662995, 257048.34382348813233 ], [ 364304.972405622596852, 257048.607919090078212 ], [ 364305.336417302198242, 257048.814533445081906 ], [ 364305.729642103426158, 257048.957949797972105 ], [ 364306.141199998557568, 257049.034200001507998 ], [ 364322.19370000064373, 257057.82039999961853 ], [ 364328.626199997961521, 257059.984000001102686 ], [ 364339.106499999761581, 257060.280799999833107 ], [ 364349.619099996984005, 257056.778299998492002 ], [ 364352.869499996304512, 257053.849599998444319 ], [ 364355.295699998736382, 257053.025100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602049400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-23", "ACRE": ".194", "LONGITUDE": -64.89121455, "LATITUDE": 18.34241905, "OBJECTID_1": 21269, "PARCEL_NO_": "105602049400", "Tax_Legal_": "129 23 ANNAS RETREAT NEW QTR", "Name": "GREEN, PATRICK E.", "Address": "129-23 Estate Annas Retreat", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 241900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.006796921, "SHAPE_Area": 827.97374730800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363010.575099997222424, 257017.532299999147654 ], [ 362988.784800000488758, 257019.675999999046326 ], [ 362983.928999997675419, 257021.74720000103116 ], [ 362981.481299996376038, 257025.104699999094009 ], [ 362981.292499996721745, 257047.267900001257658 ], [ 363015.191799998283386, 257043.534600000828505 ], [ 363010.575099997222424, 257017.532299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702067700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87346193, "LATITUDE": 18.34228868, "OBJECTID_1": 22710, "PARCEL_NO_": "105702067700", "Tax_Legal_": "SMITH BAY 57X-31 EAST END QTR.", "Name": "DUBLIN, ANNABELLE", "Address": "6632 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 67000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.64288761, "SHAPE_Area": 885.12796644599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364870.579700000584126, 257015.816500000655651 ], [ 364860.245700001716614, 257010.936200000345707 ], [ 364861.904399998486042, 257028.462699998170137 ], [ 364862.637000001966953, 257037.123500000685453 ], [ 364864.13459999859333, 257050.645799998193979 ], [ 364865.651900000870228, 257061.846099998801947 ], [ 364879.479699999094009, 257047.816100001335144 ], [ 364894.137199997901917, 257031.048500001430511 ], [ 364893.357799999415874, 257027.875799998641014 ], [ 364870.579700000584126, 257015.816500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602046800", "MAP": "A9-15-T62", "PARCEL_NAM": "129-35", "ACRE": ".170", "LONGITUDE": -64.89000412, "LATITUDE": 18.34235694, "OBJECTID_1": 21244, "PARCEL_NO_": "105602046800", "Tax_Legal_": "129-35 ANNAS RETREAT \nNO.1 NEW QTR", "Name": "BLYDEN, JR., RONALD and BARBARA CONNOR", "Address": "PO Box 11853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 170200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.969984165, "SHAPE_Area": 850.09971698100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363133.242399998009205, 257005.870700001716614 ], [ 363123.597300000488758, 257002.203099999576807 ], [ 363122.733400002121925, 257008.951099999248981 ], [ 363105.604800000786781, 257031.820099998265505 ], [ 363120.035800002515316, 257041.648499999195337 ], [ 363128.071900002658367, 257044.880699999630451 ], [ 363139.342299997806549, 257047.083799999207258 ], [ 363136.314800001680851, 257023.838799998164177 ], [ 363133.242399998009205, 257005.870700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602046900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-34", "ACRE": ".165", "LONGITUDE": -64.88973781, "LATITUDE": 18.34241503, "OBJECTID_1": 21245, "PARCEL_NO_": "105602046900", "Tax_Legal_": "ANNAS RETREAT 129 34 NEW QTR", "Name": "BLYDEN, ELEANOR R.", "Address": "PO Box 7636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23800, "Improved_V": 147100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.523187615, "SHAPE_Area": 749.08213361100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363167.798799999058247, 257019.663499999791384 ], [ 363136.314800001680851, 257023.838799998164177 ], [ 363139.342299997806549, 257047.083799999207258 ], [ 363165.165899999439716, 257044.762099999934435 ], [ 363167.593800000846386, 257043.726500000804663 ], [ 363169.222599998116493, 257041.839999999850988 ], [ 363169.299900002777576, 257032.763599999248981 ], [ 363167.798799999058247, 257019.663499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044800", "MAP": "A9-195-T73", "PARCEL_NAM": "3B", "ACRE": null, "LONGITUDE": -64.89824955, "LATITUDE": 18.34070466, "OBJECTID_1": 20742, "PARCEL_NO_": "105601044800", "Tax_Legal_": "DONOE 3A,3B-1,2,3&4&3B NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 538800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1086.58806938, "SHAPE_Area": 42932.932725899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362334.035400003194809, 256733.140599999576807 ], [ 362235.528599999845028, 256748.377399999648333 ], [ 362230.608000002801418, 256758.047499999403954 ], [ 362224.915299996733665, 256763.700399998575449 ], [ 362186.043200001120567, 256783.225099999457598 ], [ 362174.682899996638298, 256791.575800001621246 ], [ 362167.361400000751019, 256799.115299999713898 ], [ 362160.833599999547005, 256808.138900000602007 ], [ 362152.617600001394749, 256826.014600001275539 ], [ 362150.992399998009205, 256827.478900000452995 ], [ 362144.430399999022484, 256840.513000000268221 ], [ 362134.6216000020504, 256856.053700000047684 ], [ 362132.998199999332428, 256857.30689999833703 ], [ 362132.172100000083447, 256859.62220000103116 ], [ 362112.583200000226498, 256887.326200000941753 ], [ 362104.331299997866154, 256909.423500001430511 ], [ 362099.311800003051758, 256930.702899999916553 ], [ 362095.842000000178814, 256959.383200000971556 ], [ 362095.701700001955032, 256975.84739999845624 ], [ 362100.894599996507168, 257028.874299999326468 ], [ 362100.838799998164177, 257035.41780000180006 ], [ 362102.438799999654293, 257036.908500000834465 ], [ 362105.656900003552437, 257037.779199998825788 ], [ 362111.306500002741814, 257037.192200001329184 ], [ 362115.359600000083447, 257034.692299999296665 ], [ 362117.004600003361702, 257030.905999999493361 ], [ 362117.87389999628067, 257023.524900000542402 ], [ 362116.277400001883507, 257021.611999999731779 ], [ 362112.382500000298023, 257005.537000000476837 ], [ 362111.739799998700619, 256986.322200000286102 ], [ 362113.422600001096725, 256978.103300001472235 ], [ 362114.243299998342991, 256976.421300001442432 ], [ 362118.30179999768734, 256973.288100000470877 ], [ 362122.335199996829033, 256973.109999999403954 ], [ 362130.364200003445148, 256977.186500001698732 ], [ 362149.215000003576279, 256941.454900000244379 ], [ 362177.310099996626377, 256956.461399998515844 ], [ 362271.52929999679327, 256876.594799999147654 ], [ 362298.089000001549721, 256882.511700000613928 ], [ 362346.717699997127056, 256853.567699998617172 ], [ 362353.956500001251698, 256855.737900000065565 ], [ 362386.370899997651577, 256837.004799999296665 ], [ 362386.405000001192093, 256832.994300000369549 ], [ 362388.82940000295639, 256832.380800001323223 ], [ 362426.913099996745586, 256810.738800000399351 ], [ 362418.006899997591972, 256720.317800000309944 ], [ 362334.035400003194809, 256733.140599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066900", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-90", "ACRE": "0.33", "LONGITUDE": -64.88015401, "LATITUDE": 18.34231337, "OBJECTID_1": 22228, "PARCEL_NO_": "105701066900", "Tax_Legal_": "173B-90 ANNAS RETREAT NEW QUARTER", "Name": "MAYNARD, JUDY J.", "Address": "PO Box 301911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41400, "Improved_V": 208000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.0808957, "SHAPE_Area": 1082.2623247500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364186.115699999034405, 257034.541799999773502 ], [ 364167.01410000026226, 257005.043499998748302 ], [ 364141.781099997460842, 257032.701299998909235 ], [ 364177.883500002324581, 257054.317200001329184 ], [ 364186.115699999034405, 257034.541799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701060300", "MAP": "D9-2501-T83", "PARCEL_NAM": "173B-29", "ACRE": "0.23", "LONGITUDE": -64.8806711, "LATITUDE": 18.34234191, "OBJECTID_1": 22165, "PARCEL_NO_": "105701060300", "Tax_Legal_": "ANNAS RETREAT 173B-29 NEW QTR.", "Name": "RICHARDS, CHARLESWORTH F, NICOLE , & JERMIRACLE JOHNSON", "Address": "PO Box 302415", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40500, "Improved_V": 267000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.443281129, "SHAPE_Area": 773.59140183299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364132.130500003695488, 257029.666999999433756 ], [ 364114.517499998211861, 257014.746300000697374 ], [ 364108.82660000026226, 257020.188200000673532 ], [ 364101.524800002574921, 257025.405799999833107 ], [ 364091.748400002717972, 257037.146999999880791 ], [ 364110.160499997437, 257052.918600000441074 ], [ 364132.130500003695488, 257029.666999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702068600", "MAP": "D9-58745-T94", "PARCEL_NAM": "57X-58", "ACRE": ".15", "LONGITUDE": -64.87270432, "LATITUDE": 18.34234974, "OBJECTID_1": 22721, "PARCEL_NO_": "105702068600", "Tax_Legal_": "SMITH BAY (REM) 57X-58 EASTEND QTR.", "Name": "VIDAL, ALTON and ILANIE CYPRE", "Address": "PO BOX 1391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16200, "Improved_V": 195800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.647719669, "SHAPE_Area": 791.37978969899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364935.961099997162819, 257043.634300000965595 ], [ 364951.979500003159046, 257056.431000001728535 ], [ 364948.727300003170967, 257059.570799998939037 ], [ 364964.853500001132488, 257059.702799998223782 ], [ 364965.746100001037121, 257049.577599998563528 ], [ 364969.046899996697903, 257040.738699998706579 ], [ 364964.29169999808073, 257030.989399999380112 ], [ 364949.059900000691414, 257020.521200001239777 ], [ 364945.787900000810623, 257025.982799999415874 ], [ 364935.961099997162819, 257043.634300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602049500", "MAP": "A9-15-T62", "PARCEL_NAM": "129-22", "ACRE": ".166", "LONGITUDE": -64.89096087, "LATITUDE": 18.34238753, "OBJECTID_1": 21270, "PARCEL_NO_": "105602049500", "Tax_Legal_": "129-22 ANNAS RETREAT NEW QTR", "Name": "RAYMOND, VALERIE K", "Address": "PO Box 502474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26000, "Improved_V": 32800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.027735948399993, "SHAPE_Area": 595.55487917899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363037.790100000798702, 257041.1864 ], [ 363033.171599999070168, 257015.395199999213219 ], [ 363010.575099997222424, 257017.532299999147654 ], [ 363015.191799998283386, 257043.534600000828505 ], [ 363037.790100000798702, 257041.1864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602047000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-27", "ACRE": ".167", "LONGITUDE": -64.88934281, "LATITUDE": 18.34237077, "OBJECTID_1": 21246, "PARCEL_NO_": "105602047000", "Tax_Legal_": "129 27 ANNAS RETREAT NEW QTR", "Name": "WARD, ESMAY & HUGGINS, THERESA E. W", "Address": "4632 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 140300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.283544518, "SHAPE_Area": 876.14395348000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363212.192699998617172, 257014.538400001823902 ], [ 363175.052000001072884, 257020.144999999552965 ], [ 363177.316299997270107, 257038.317600000649691 ], [ 363180.510999999940395, 257041.932399999350309 ], [ 363183.730800002813339, 257042.592000000178814 ], [ 363214.404899999499321, 257038.832299999892712 ], [ 363212.192699998617172, 257014.538400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602049600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-21", "ACRE": ".127", "LONGITUDE": -64.89070152, "LATITUDE": 18.34236621, "OBJECTID_1": 21271, "PARCEL_NO_": "105602049600", "Tax_Legal_": "129-21 ANNAS RETREAT 1 NEW QTR", "Name": "STEVENS, CLIFTON", "Address": "21A TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 33700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.19237888000001, "SHAPE_Area": 772.82631619799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363037.790100000798702, 257041.1864 ], [ 363064.432599999010563, 257037.393699999898672 ], [ 363075.040500000119209, 257022.703999999910593 ], [ 363064.592600002884865, 257018.607700001448393 ], [ 363054.934799998998642, 257016.417700000107288 ], [ 363046.074400000274181, 257015.289700001478195 ], [ 363033.171599999070168, 257015.395199999213219 ], [ 363037.790100000798702, 257041.1864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701036200", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-29", "ACRE": ".24", "LONGITUDE": -64.87667782, "LATITUDE": 18.34232208, "OBJECTID_1": 22008, "PARCEL_NO_": "105701036200", "Tax_Legal_": "SMITH BAY 20-21-29 EAST END QTR.", "Name": "CHRISTOPHER, GLENRIDGE", "Address": "PO Box 302152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31200, "Improved_V": 2100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.62166376600001, "SHAPE_Area": 1213.0690860899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364552.862000003457069, 257052.320000000298023 ], [ 364552.188799999654293, 257036.693599998950958 ], [ 364547.462399996817112, 257023.567099999636412 ], [ 364543.481200002133846, 257017.6239 ], [ 364538.68639999628067, 257012.518399998545647 ], [ 364536.278300002217293, 257011.232099998742342 ], [ 364530.626900002360344, 257012.030299998819828 ], [ 364527.381899997591972, 257014.325699999928474 ], [ 364520.022600002586842, 257026.297800000756979 ], [ 364517.583800002932549, 257028.599899999797344 ], [ 364516.757799997925758, 257030.915199998766184 ], [ 364510.231700003147125, 257039.727699998766184 ], [ 364524.63570000231266, 257052.722300000488758 ], [ 364552.862000003457069, 257052.320000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066800", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-36", "ACRE": "0.23", "LONGITUDE": -64.87993823, "LATITUDE": 18.34215545, "OBJECTID_1": 22227, "PARCEL_NO_": "105701066800", "Tax_Legal_": "ANNAS RETREAT 173B-36 NEW QTR.", "Name": "GOODING, JUDITH", "Address": "PO Box 502283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.29779687300001, "SHAPE_Area": 1327.5337701200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364210.457900002598763, 257016.798099998384714 ], [ 364188.163500003516674, 256983.473900001496077 ], [ 364167.01410000026226, 257005.043499998748302 ], [ 364186.115699999034405, 257034.541799999773502 ], [ 364195.667400002479553, 257049.185499999672174 ], [ 364199.000500001013279, 257036.547100000083447 ], [ 364201.455399997532368, 257032.345300000160933 ], [ 364201.471600003540516, 257030.445599999278784 ], [ 364207.207500003278255, 257019.726799998432398 ], [ 364210.457900002598763, 257016.798099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602049900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88910287, "LATITUDE": 18.34215852, "OBJECTID_1": 21273, "PARCEL_NO_": "105602049900", "Tax_Legal_": "93AA&POR OF 93B ANNAS RE NEW QTR", "Name": "RICHARD E THOMAS &AUDREY J THOMAS REVOC LIV TRUST", "Address": "PO Box 8144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27300, "Improved_V": 188300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.519953499, "SHAPE_Area": 863.97331291099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363210.029100000858307, 256984.545400001108646 ], [ 363211.51410000026226, 256999.545200001448393 ], [ 363212.192699998617172, 257014.538400001823902 ], [ 363214.404899999499321, 257038.832299999892712 ], [ 363220.869800001382828, 257037.196400001645088 ], [ 363235.84009999781847, 256983.701200000941753 ], [ 363210.029100000858307, 256984.545400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060500", "MAP": "D9-360-T63", "PARCEL_NAM": "57-O", "ACRE": "0.20", "LONGITUDE": -64.87376949, "LATITUDE": 18.34234371, "OBJECTID_1": 22626, "PARCEL_NO_": "105702060500", "Tax_Legal_": "SMITH BAY 57-O EAST END QTR", "Name": "DORE, EDMUND C", "Address": "BOX 4192", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28200, "Improved_V": 142200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.38794515399999, "SHAPE_Area": 967.20485645799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364864.13459999859333, 257050.645799998193979 ], [ 364862.637000001966953, 257037.123500000685453 ], [ 364861.904399998486042, 257028.462699998170137 ], [ 364819.968999996781349, 257028.963799998164177 ], [ 364819.026000000536442, 257044.999200001358986 ], [ 364820.584700003266335, 257051.344799999147654 ], [ 364864.13459999859333, 257050.645799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702051600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87439636000001, "LATITUDE": 18.34221229, "OBJECTID_1": 22607, "PARCEL_NO_": "105702051600", "Tax_Legal_": "SMITH BAY 57C EAST END QTR", "Name": "MURRAY, BORTHLAND R", "Address": "PO Box 172614", "City": "Tampa", "State": "Florida", "Zip": 33672, "Country": "United States", "Land_Value": 19500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.614400084, "SHAPE_Area": 457.177704705 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364782.957800000905991, 257019.372800000011921 ], [ 364766.163699999451637, 257002.981199998408556 ], [ 364765.177500002086163, 257024.082400001585484 ], [ 364770.764200001955032, 257030.883200000971556 ], [ 364784.304200001060963, 257050.625700000673532 ], [ 364782.957800000905991, 257019.372800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602047300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-4", "ACRE": ".189", "LONGITUDE": -64.88858905, "LATITUDE": 18.3423494, "OBJECTID_1": 21249, "PARCEL_NO_": "105602047300", "Tax_Legal_": "129-4 ANNAS RETREAT 1 NEW QTR", "Name": "SLACK, LAVERN", "Address": "PO Box 304722", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24700, "Improved_V": 193600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.08258702099999, "SHAPE_Area": 778.52644765499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363301.535199999809265, 257033.845899999141693 ], [ 363267.880400002002716, 257008.872499998658895 ], [ 363260.531900003552437, 257019.578099999576807 ], [ 363254.835600003600121, 257025.653200000524521 ], [ 363253.185199998319149, 257030.072599999606609 ], [ 363258.775399997830391, 257036.451200000941753 ], [ 363299.886600002646446, 257038.054200001060963 ], [ 363301.535199999809265, 257033.845899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602048200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88875229, "LATITUDE": 18.341947, "OBJECTID_1": 21257, "PARCEL_NO_": "105602048200", "Tax_Legal_": "93 ANNAS RETREAT NEW QTR", "Name": "FRAZER, J. & G", "Address": "PO Box 8476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81400, "Improved_V": 259800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.16683695900002, "SHAPE_Area": 2577.4542668700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363220.869800001382828, 257037.196400001645088 ], [ 363236.254399999976158, 257029.723000001162291 ], [ 363245.183200001716614, 257022.829999998211861 ], [ 363255.77139999717474, 257010.462099999189377 ], [ 363300.713799998164177, 256940.958000000566244 ], [ 363253.864900000393391, 256950.284800000488758 ], [ 363241.486100003123283, 256983.536299999803305 ], [ 363220.869800001382828, 257037.196400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701036800", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-4", "ACRE": "0.23", "LONGITUDE": -64.87715406, "LATITUDE": 18.34227701, "OBJECTID_1": 22014, "PARCEL_NO_": "105701036800", "Tax_Legal_": "SMITH BAY 20-21-4 EAST END QTR.", "Name": "CABO, UNA LAPSEY", "Address": "PO Box 7964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 109000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.09021059700001, "SHAPE_Area": 910.61010682899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364511.135099999606609, 257028.335999999195337 ], [ 364465.299400001764297, 257013.395399998873472 ], [ 364457.097800001502037, 257029.582499999552965 ], [ 364498.079499997198582, 257046.383200000971556 ], [ 364500.536200001835823, 257041.970400001853704 ], [ 364502.157799996435642, 257040.928199999034405 ], [ 364511.135099999606609, 257028.335999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701046600", "MAP": "D9-3246-T85", "PARCEL_NAM": "1-2A", "ACRE": "0.23", "LONGITUDE": -64.88097634, "LATITUDE": 18.34223509, "OBJECTID_1": 22093, "PARCEL_NO_": "105701046600", "Tax_Legal_": "ANNAS RETREAT 1-2A NEW QTR.", "Name": "WILSON, VALENCIA", "Address": "PO Box 8902", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30500, "Improved_V": 165100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.89284447899999, "SHAPE_Area": 1175.9614268400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364079.941399998962879, 257003.275400001555681 ], [ 364074.318800002336502, 257000.696199998259544 ], [ 364053.131700001657009, 257026.698399998247623 ], [ 364058.750699996948242, 257029.699700001627207 ], [ 364084.441200003027916, 257042.997800000011921 ], [ 364090.151900000870228, 257035.234099999070168 ], [ 364094.235600002110004, 257029.145799998193979 ], [ 364095.864399999380112, 257027.259300000965595 ], [ 364100.747299998998642, 257022.021899998188019 ], [ 364108.052599996328354, 257016.382199998944998 ], [ 364079.941399998962879, 257003.275400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701030900", "MAP": "D9-8227-T008", "PARCEL_NAM": "8-REM", "ACRE": ".39", "LONGITUDE": -64.88159708000001, "LATITUDE": 18.34193808, "OBJECTID_1": 21956, "PARCEL_NO_": "105701030900", "Tax_Legal_": "8 ANNAS RETREAT NEW QUARTER", "Name": "INDUS VALLEY, INC.", "Address": "PO Box 12287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92900, "Improved_V": 268500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.673170658, "SHAPE_Area": 1679.3215948699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363990.850699998438358, 256989.486000001430511 ], [ 364020.089599996805191, 257019.045200001448393 ], [ 364025.841099999845028, 257011.909600000828505 ], [ 364043.754399999976158, 256991.580099999904633 ], [ 364000.515699997544289, 256955.762499999254942 ], [ 363998.888599999248981, 256957.438000001013279 ], [ 363994.772600002586842, 256967.325699999928474 ], [ 363993.872800000011921, 256978.295200001448393 ], [ 363992.191799998283386, 256986.302999999374151 ], [ 363990.850699998438358, 256989.486000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602047400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-3", "ACRE": ".191", "LONGITUDE": -64.8884503, "LATITUDE": 18.34222032, "OBJECTID_1": 21250, "PARCEL_NO_": "105602047400", "Tax_Legal_": "129-3 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, EULALIE P", "Address": "PO Box 9051", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 141300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.156462473, "SHAPE_Area": 784.57371890299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363311.356600001454353, 257016.8277000002563 ], [ 363278.497400000691414, 256993.127300001680851 ], [ 363267.880400002002716, 257008.872499998658895 ], [ 363301.535199999809265, 257033.845899999141693 ], [ 363307.280100002884865, 257022.071600001305342 ], [ 363311.356600001454353, 257016.8277000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701040400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-97", "ACRE": ".14", "LONGITUDE": -64.88215182, "LATITUDE": 18.34228019, "OBJECTID_1": 22037, "PARCEL_NO_": "105701040400", "Tax_Legal_": "148-97 ANNAS RETREAT NO.1 NEW QTR", "Name": "LIBURD, GENEVIEVE & DAVID", "Address": "PO Box 305818", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18600, "Improved_V": 129300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.183899514499998, "SHAPE_Area": 454.35996058299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363970.587399996817112, 257022.785000000149012 ], [ 363944.578100003302097, 257012.129799999296665 ], [ 363941.930699996650219, 257017.555599998682737 ], [ 363942.656099997460842, 257027.0608000010252 ], [ 363946.653499998152256, 257031.104299999773502 ], [ 363963.519500002264977, 257039.052799999713898 ], [ 363966.791500002145767, 257033.591099999845028 ], [ 363966.807700000703335, 257031.691399998962879 ], [ 363968.438299998641014, 257029.593800000846386 ], [ 363968.454499997198582, 257027.694099999964237 ], [ 363970.587399996817112, 257022.785000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701065600", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-39", "ACRE": "0.23", "LONGITUDE": -64.87888982, "LATITUDE": 18.34220862, "OBJECTID_1": 22215, "PARCEL_NO_": "105701065600", "Tax_Legal_": "ANNAS RETREAT 173B-39 NEW QUARTER", "Name": "CONNOR, MICAUD & GLORIA", "Address": "6135 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 350000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.231722327, "SHAPE_Area": 1008.22220111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364310.598899997770786, 256999.041499998420477 ], [ 364290.448299996554852, 256998.032200001180172 ], [ 364286.075099997222424, 257038.104200001806021 ], [ 364292.504000000655651, 257040.689899999648333 ], [ 364298.945500001311302, 257041.798099998384714 ], [ 364314.306800000369549, 257037.06870000064373 ], [ 364310.598899997770786, 256999.041499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602048800", "MAP": "A9-15-T62", "PARCEL_NAM": "129-36", "ACRE": ".188", "LONGITUDE": -64.89015552, "LATITUDE": 18.34221683, "OBJECTID_1": 21263, "PARCEL_NO_": "105602048800", "Tax_Legal_": "129 36 ANNAS RETREAT NEW QTR", "Name": "JACKSON, NORMA", "Address": "PO BOX 303725", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28200, "Improved_V": 34000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.99019675300001, "SHAPE_Area": 658.10796485000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363123.597300000488758, 257002.203099999576807 ], [ 363118.082500003278255, 256986.959300000220537 ], [ 363091.182899996638298, 257020.936299998313189 ], [ 363105.604800000786781, 257031.820099998265505 ], [ 363122.733400002121925, 257008.951099999248981 ], [ 363123.597300000488758, 257002.203099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601043300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-6", "ACRE": ".167", "LONGITUDE": -64.89360416, "LATITUDE": 18.34223167, "OBJECTID_1": 20729, "PARCEL_NO_": "105601043300", "Tax_Legal_": "ANNAS RETREAT 129A 6 NEW QTR", "Name": "BRUTUS, PAUL & OLIVIA", "Address": "PO Box 8243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 128500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.2529723, "SHAPE_Area": 846.694689025 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362735.024800002574921, 256990.790199998766184 ], [ 362732.285800002515316, 257028.342399999499321 ], [ 362754.860699996352196, 257028.738299999386072 ], [ 362757.597900003194809, 256991.397100001573563 ], [ 362735.024800002574921, 256990.790199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601043400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-7", "ACRE": ".179", "LONGITUDE": -64.89339808, "LATITUDE": 18.34224169, "OBJECTID_1": 20730, "PARCEL_NO_": "105601043400", "Tax_Legal_": "129A 7 ANNAS RETREAT NEW QTR", "Name": "GAUNTLETT, ARMEIN", "Address": "289 Decatur St", "City": "Brooklyn", "State": "New York", "Zip": 11233, "Country": "United States", "Land_Value": 23300, "Improved_V": 113900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.53143565400001, "SHAPE_Area": 778.8703812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362757.597900003194809, 256991.397100001573563 ], [ 362754.860699996352196, 257028.738299999386072 ], [ 362779.051899999380112, 257028.72520000115037 ], [ 362775.33500000089407, 256991.753400001674891 ], [ 362757.597900003194809, 256991.397100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601043200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-5", "ACRE": null, "LONGITUDE": -64.89381184, "LATITUDE": 18.3422295, "OBJECTID_1": 20728, "PARCEL_NO_": "105601043200", "Tax_Legal_": "129A-5 ANNAS RETREAT NEW QTR", "Name": "MEYERS, JOANN", "Address": "4605 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 55600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.689939198, "SHAPE_Area": 799.54837674500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362714.0625, 256990.407600000500679 ], [ 362710.520700000226498, 257027.530999999493361 ], [ 362732.285800002515316, 257028.342399999499321 ], [ 362735.024800002574921, 256990.790199998766184 ], [ 362714.0625, 256990.407600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601043500", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-8", "ACRE": ".165", "LONGITUDE": -64.89319405000001, "LATITUDE": 18.34222579, "OBJECTID_1": 20731, "PARCEL_NO_": "105601043500", "Tax_Legal_": "ANNAS RETREAT 129A-8 No.1 NEW QTR.", "Name": "SOLDIEW, CECILIA", "Address": "4608 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 202200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.882725307, "SHAPE_Area": 826.4411813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362800.833099998533726, 257027.636900000274181 ], [ 362797.924300000071526, 256990.46059999987483 ], [ 362775.33500000089407, 256991.753400001674891 ], [ 362779.051899999380112, 257028.72520000115037 ], [ 362800.833099998533726, 257027.636900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601043100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-4", "ACRE": ".165", "LONGITUDE": -64.89401751, "LATITUDE": 18.34222067, "OBJECTID_1": 20727, "PARCEL_NO_": "105601043100", "Tax_Legal_": "129A-4 ANNAS RETREAT 3 NEW QTR", "Name": "WILLIAMS, NORMA", "Address": "129A-4 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 121600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.39918315600001, "SHAPE_Area": 820.39859734300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362690.68299999833107, 256989.793999999761581 ], [ 362689.563799999654293, 257026.515099998563528 ], [ 362710.520700000226498, 257027.530999999493361 ], [ 362714.0625, 256990.407600000500679 ], [ 362690.68299999833107, 256989.793999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702065400", "MAP": "G9-2719-T78", "PARCEL_NAM": "57T-18", "ACRE": "0.25", "LONGITUDE": -64.87150105000001, "LATITUDE": 18.34222792, "OBJECTID_1": 22698, "PARCEL_NO_": "105702065400", "Tax_Legal_": "SMITH BAY 57T-18 EAST END QTR", "Name": "JEAN-BAPTISTE, ANGELA P.", "Address": "PO Box 302483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29700, "Improved_V": 81000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.077166664, "SHAPE_Area": 1117.4132237199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365108.661200001835823, 257027.526999998837709 ], [ 365067.702899999916553, 257007.982200000435114 ], [ 365057.770000003278255, 257038.08729999884963 ], [ 365093.177699998021126, 257046.6097999997437 ], [ 365108.661200001835823, 257027.526999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601043600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-50", "ACRE": ".166", "LONGITUDE": -64.89298429, "LATITUDE": 18.34221403, "OBJECTID_1": 20732, "PARCEL_NO_": "105601043600", "Tax_Legal_": "129-50 ANNAS RETREAT NEW QTR", "Name": "SEWER, LAURIE, ERIC & ELROY", "Address": "9B ESTATE OLD TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 134600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.71793206700001, "SHAPE_Area": 825.25115529599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362823.425999999046326, 257025.921999998390675 ], [ 362819.707400001585484, 256989.161299999803305 ], [ 362797.924300000071526, 256990.46059999987483 ], [ 362800.833099998533726, 257027.636900000274181 ], [ 362823.425999999046326, 257025.921999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601043000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-3", "ACRE": ".165", "LONGITUDE": -64.89422552000001, "LATITUDE": 18.34221912, "OBJECTID_1": 20726, "PARCEL_NO_": "105601043000", "Tax_Legal_": "129A-3 ANNAS RETREAT 3 NEW QTR", "Name": "FENTON, EDWARD, ANN E., YVONNE P. & JACKSON, BRANDON J.", "Address": "PO Box 11565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.286627025, "SHAPE_Area": 791.80458393200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362669.722499996423721, 256989.200300000607967 ], [ 362666.997800000011921, 257025.063900001347065 ], [ 362689.563799999654293, 257026.515099998563528 ], [ 362690.68299999833107, 256989.793999999761581 ], [ 362669.722499996423721, 256989.200300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702051700", "MAP": "D9-360-T63", "PARCEL_NAM": "57F", "ACRE": "0.29", "LONGITUDE": -64.8741893, "LATITUDE": 18.34214839, "OBJECTID_1": 22608, "PARCEL_NO_": "105702051700", "Tax_Legal_": "SMITH BAY 57F 1 2 & 3 EAST END QTR", "Name": "VIALET, ANTHONY A", "Address": "PO Box 1082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.192054168, "SHAPE_Area": 1004.30621229 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364814.529799997806549, 257004.854699999094009 ], [ 364766.163699999451637, 257002.981199998408556 ], [ 364782.957800000905991, 257019.372800000011921 ], [ 364807.748400002717972, 257043.640399999916553 ], [ 364810.979099996387959, 257043.033500000834465 ], [ 364814.529799997806549, 257004.854699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702033200", "MAP": "D9-170-T58", "PARCEL_NAM": "6", "ACRE": "0.34", "LONGITUDE": -64.86730776, "LATITUDE": 18.34203076, "OBJECTID_1": 22498, "PARCEL_NO_": "105702033200", "Tax_Legal_": "SMITH BAY 6 EAST END QTR", "Name": "ELMO, DEXTER, KACY & TISEAN HENDRICKS", "Address": "PO Box 7775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47900, "Improved_V": 30800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.686530073, "SHAPE_Area": 2144.6131433800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365546.589599996805191, 257019.28999999910593 ], [ 365548.619400002062321, 256970.332899998873472 ], [ 365498.297200001776218, 257008.762200001627207 ], [ 365503.596100002527237, 257049.33559999987483 ], [ 365546.589599996805191, 257019.28999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601042900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-2", "ACRE": ".165", "LONGITUDE": -64.89443308, "LATITUDE": 18.3422081, "OBJECTID_1": 20725, "PARCEL_NO_": "105601042900", "Tax_Legal_": "129A-2 ANNAS RETREAT 3 NEW QTR", "Name": "SMITH, MURIEL I. , PAULA P. & MERVN", "Address": "PO Box 10157", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 152200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.236142606, "SHAPE_Area": 785.93249129799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362647.149300001561642, 256988.593299999833107 ], [ 362645.240000002086163, 257023.408100001513958 ], [ 362666.997800000011921, 257025.063900001347065 ], [ 362669.722499996423721, 256989.200300000607967 ], [ 362647.149300001561642, 256988.593299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066000", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-38", "ACRE": "0.23", "LONGITUDE": -64.8791158, "LATITUDE": 18.34217386, "OBJECTID_1": 22219, "PARCEL_NO_": "105701066000", "Tax_Legal_": "ANNAS RETREAT 173B-38 NEW QTR.", "Name": "TAYLOR, BEVERLY S", "Address": "Bovoni Building D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.54416900299999, "SHAPE_Area": 931.97199374599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364268.686800003051758, 256996.798599999397993 ], [ 364267.090400002896786, 256994.88569999858737 ], [ 364261.133299998939037, 257031.567200001329184 ], [ 364286.075099997222424, 257038.104200001806021 ], [ 364290.448299996554852, 256998.032200001180172 ], [ 364268.686800003051758, 256996.798599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601043700", "MAP": "A9-15-T62", "PARCEL_NAM": "129-49", "ACRE": ".167", "LONGITUDE": -64.89277447000001, "LATITUDE": 18.34219777, "OBJECTID_1": 20733, "PARCEL_NO_": "105601043700", "Tax_Legal_": "129-49 ANNAS RETREAT No.1 NEW QTR", "Name": "SEWER ROBERTS, ANDREA", "Address": "PO Box 10845", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.08838943400001, "SHAPE_Area": 818.18802563199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362846.02080000191927, 257023.995999999344349 ], [ 362841.492200002074242, 256987.650800000876188 ], [ 362819.707400001585484, 256989.161299999803305 ], [ 362823.425999999046326, 257025.921999998390675 ], [ 362846.02080000191927, 257023.995999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601042800", "MAP": "A9-15-T62", "PARCEL_NAM": "129-A-1", "ACRE": ".167", "LONGITUDE": -64.89464106, "LATITUDE": 18.34219904, "OBJECTID_1": 20724, "PARCEL_NO_": "105601042800", "Tax_Legal_": "129A-1 ANNAS RETREAT NEW QTR", "Name": "GORDON, GEORGE", "Address": "460-69 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 55600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.435992164, "SHAPE_Area": 749.76361025699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362624.576200000941753, 256987.986400000751019 ], [ 362624.28660000115633, 257021.970100000500679 ], [ 362645.240000002086163, 257023.408100001513958 ], [ 362647.149300001561642, 256988.593299999833107 ], [ 362624.576200000941753, 256987.986400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701065400", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-40", "ACRE": "0.23", "LONGITUDE": -64.87865206, "LATITUDE": 18.34217886, "OBJECTID_1": 22213, "PARCEL_NO_": "105701065400", "Tax_Legal_": "ANNAS RETREAT 173B-40 NEW QTR.", "Name": "RICHARDSON, MARTINE P", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 190600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.562073176, "SHAPE_Area": 897.43372110600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364327.524300001561642, 257000.024399999529123 ], [ 364310.598899997770786, 256999.041499998420477 ], [ 364314.306800000369549, 257037.06870000064373 ], [ 364321.570799998939037, 257036.283700000494719 ], [ 364326.426700003445148, 257034.212600000202656 ], [ 364331.232955887098797, 257031.883178618329111 ], [ 364335.68097385839792, 257028.926586708606919 ], [ 364339.68941038812045, 257025.396893211873248 ], [ 364343.184960832179058, 257021.358647715795087 ], [ 364346.103699997067451, 257016.88569999858737 ], [ 364345.128300003707409, 257016.000500001013279 ], [ 364327.524300001561642, 257000.024399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601043800", "MAP": "A9-15-T62", "PARCEL_NAM": "129-48", "ACRE": ".165", "LONGITUDE": -64.89255961000001, "LATITUDE": 18.34217584, "OBJECTID_1": 20734, "PARCEL_NO_": "105601043800", "Tax_Legal_": "129 48 ANNAS RETREAT NEW QTR", "Name": "LEGER, FERNANDO M.", "Address": "PO BOX 303856", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 123600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.474657087, "SHAPE_Area": 850.18636152500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362867.809199996292591, 257022.063400000333786 ], [ 362866.502300001680851, 256986.166799999773502 ], [ 362841.492200002074242, 256987.650800000876188 ], [ 362846.02080000191927, 257023.995999999344349 ], [ 362867.809199996292591, 257022.063400000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702062000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87195079, "LATITUDE": 18.34215714, "OBJECTID_1": 22666, "PARCEL_NO_": "105702062000", "Tax_Legal_": "SMITH BAY 57-116A EAST END QTR", "Name": "CAINES, DOREEN, WENDELL L & THOMAS", "Address": "6526 Est Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30900, "Improved_V": 94200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.72017434200001, "SHAPE_Area": 977.31143723699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365057.192100003361702, 257011.273699998855591 ], [ 365017.717000000178814, 257006.939800001680851 ], [ 365015.249499998986721, 257012.619199998676777 ], [ 365014.414399996399879, 257015.989799998700619 ], [ 365011.959499999880791, 257020.191599998623133 ], [ 365009.279700003564358, 257028.147199999541044 ], [ 365048.405299998819828, 257036.812600001692772 ], [ 365057.192100003361702, 257011.273699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602048600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-33", "ACRE": ".165", "LONGITUDE": -64.88976182, "LATITUDE": 18.34222204, "OBJECTID_1": 21261, "PARCEL_NO_": "105602048600", "Tax_Legal_": "129 33 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, BERNARD & MAVIS", "Address": "P.O. BOX 3142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23800, "Improved_V": 208000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.040669628, "SHAPE_Area": 621.85296045899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363167.798799999058247, 257019.663499999791384 ], [ 363166.335400000214577, 257002.130699999630451 ], [ 363163.934500001370907, 257000.000199999660254 ], [ 363133.242399998009205, 257005.870700001716614 ], [ 363136.314800001680851, 257023.838799998164177 ], [ 363167.798799999058247, 257019.663499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601043900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-47", "ACRE": ".165", "LONGITUDE": -64.89229668, "LATITUDE": 18.3421623, "OBJECTID_1": 20735, "PARCEL_NO_": "105601043900", "Tax_Legal_": "129-47 ANNAS RETREAT NO 1 NEW QTR", "Name": "LLOYD, DION D.", "Address": "PO Box 6183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21900, "Improved_V": 142200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.09236282000001, "SHAPE_Area": 515.47428008899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362892.826499998569489, 257019.734999999403954 ], [ 362887.489799998700619, 256983.594300001859665 ], [ 362875.380699999630451, 256985.184000000357628 ], [ 362876.6858000010252, 257021.291600000113249 ], [ 362892.826499998569489, 257019.734999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061100", "MAP": "G9-1264-T69", "PARCEL_NAM": "57R", "ACRE": ".927", "LONGITUDE": -64.87352594, "LATITUDE": 18.34130225, "OBJECTID_1": 22632, "PARCEL_NO_": "105702061100", "Tax_Legal_": "SMITH BAY 57R EAST END QTR", "Name": "FRANCIS, LAURIE L.", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 121100, "Improved_V": 164900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 360.51005892699999, "SHAPE_Area": 5671.3534437899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364897.874200001358986, 256876.347500000149012 ], [ 364838.235799998044968, 256872.481899999082088 ], [ 364831.742200002074242, 256877.495000001043081 ], [ 364841.859200000762939, 256920.429800000041723 ], [ 364849.659800000488758, 256951.313299998641014 ], [ 364857.453199997544289, 256983.04109999909997 ], [ 364859.685099996626377, 257005.013099998235703 ], [ 364860.245700001716614, 257010.936200000345707 ], [ 364870.579700000584126, 257015.816500000655651 ], [ 364870.899800002574921, 257013.759799998253584 ], [ 364871.74379999935627, 257009.333700001239777 ], [ 364875.197499997913837, 256982.553100001066923 ], [ 364876.030699998140335, 256979.393500000238419 ], [ 364879.326099999248981, 256971.187800001353025 ], [ 364890.022200003266335, 256946.155200000852346 ], [ 364899.111000001430511, 256920.476199999451637 ], [ 364900.131300002336502, 256895.364399999380112 ], [ 364897.874200001358986, 256876.347500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066200", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-37", "ACRE": "0.33", "LONGITUDE": -64.87935896, "LATITUDE": 18.34207603, "OBJECTID_1": 22221, "PARCEL_NO_": "105701066200", "Tax_Legal_": "ANNAS RETREAT 173B-37 NEW QTR.", "Name": "RICHARDSON, ALLAN", "Address": "BOX 5293", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.65549712000001, "SHAPE_Area": 1102.7726571600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364267.090400002896786, 256994.88569999858737 ], [ 364254.30629999935627, 256981.059999998658895 ], [ 364234.828900001943111, 256995.677099999040365 ], [ 364229.85080000013113, 257012.101700000464916 ], [ 364240.293300002813339, 257016.831199999898672 ], [ 364247.508699998259544, 257021.745400000363588 ], [ 364254.709799997508526, 257028.348200000822544 ], [ 364261.133299998939037, 257031.567200001329184 ], [ 364267.090400002896786, 256994.88569999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-46", "ACRE": ".165", "LONGITUDE": -64.89212207, "LATITUDE": 18.34213397, "OBJECTID_1": 20736, "PARCEL_NO_": "105601044000", "Tax_Legal_": "129 46 ANNAS RETREAT NEW QTR", "Name": "ROYEA, CLEMENCIA & AVIA", "Address": "4613 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 85700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.84541725699999, "SHAPE_Area": 850.610221787 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362915.423000000417233, 257017.597899999469519 ], [ 362910.898000001907349, 256980.830600000917912 ], [ 362887.489799998700619, 256983.594300001859665 ], [ 362892.826499998569489, 257019.734999999403954 ], [ 362915.423000000417233, 257017.597899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701060400", "MAP": "D9-2501-T83", "PARCEL_NAM": "173B-30", "ACRE": "0.23", "LONGITUDE": -64.88046446, "LATITUDE": 18.34212049, "OBJECTID_1": 22166, "PARCEL_NO_": "105701060400", "Tax_Legal_": "ANNAS RETREAT 173-B30 NEW QTR.", "Name": "ISAAC, SILTON & VICTORINE", "Address": "7A Lievkoi Straede", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.287329989, "SHAPE_Area": 811.37900114299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364153.288900002837181, 257007.042100001126528 ], [ 364134.910899996757507, 256987.260000001639128 ], [ 364114.517499998211861, 257014.746300000697374 ], [ 364132.130500003695488, 257029.666999999433756 ], [ 364153.288900002837181, 257007.042100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602048900", "MAP": "A9-15-T62", "PARCEL_NAM": "129-37", "ACRE": ".199", "LONGITUDE": -64.89026318000001, "LATITUDE": 18.3420512, "OBJECTID_1": 21264, "PARCEL_NO_": "105602048900", "Tax_Legal_": "ANNAS RETREAT 129 37 NEW QTR", "Name": "DUBLIN, GLOSTER & IASBELLA", "Address": "PO Box 141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29700, "Improved_V": 231500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.475520311, "SHAPE_Area": 1116.2195621000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363118.082500003278255, 256986.959300000220537 ], [ 363110.179499998688698, 256968.107299998402596 ], [ 363103.721799999475479, 256968.898800000548363 ], [ 363094.846900001168251, 256969.459399998188019 ], [ 363078.337700001895428, 257014.287200000137091 ], [ 363083.963899999856949, 257016.444200001657009 ], [ 363091.182899996638298, 257020.936299998313189 ], [ 363118.082500003278255, 256986.959300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602048300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-28", "ACRE": ".167", "LONGITUDE": -64.88936597, "LATITUDE": 18.34219402, "OBJECTID_1": 21258, "PARCEL_NO_": "105602048300", "Tax_Legal_": "ANNAS RETREAT 129 28 NEW QTR", "Name": "BLYDEN, ELEANOR R.", "Address": "PO Box 7636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 100400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.78503027399999, "SHAPE_Area": 595.12924930199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363211.51410000026226, 256999.545200001448393 ], [ 363174.389600001275539, 257003.252099998295307 ], [ 363175.052000001072884, 257020.144999999552965 ], [ 363212.192699998617172, 257014.538400001823902 ], [ 363211.51410000026226, 256999.545200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064300", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-79", "ACRE": "0.24", "LONGITUDE": -64.87823455, "LATITUDE": 18.34216897, "OBJECTID_1": 22203, "PARCEL_NO_": "105701064300", "Tax_Legal_": "ANNAS RETREAT 173B-79 NEW QUARTER", "Name": "JOSEPH, A. , A. , N. , D. & R", "Address": "PO Box 306076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.261538852, "SHAPE_Area": 965.53507379799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364385.343199998140335, 257028.15089999884367 ], [ 364392.023900002241135, 257001.185600001364946 ], [ 364355.702100001275539, 257005.321199998259544 ], [ 364353.165600001811981, 257015.559200000017881 ], [ 364346.694487782719079, 257022.965999964129878 ], [ 364339.673799999058247, 257029.854100000113249 ], [ 364343.398800000548363, 257029.707400001585484 ], [ 364361.144799999892712, 257029.008299998939037 ], [ 364385.343199998140335, 257028.15089999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-44", "ACRE": ".166", "LONGITUDE": -64.8919142, "LATITUDE": 18.34211208, "OBJECTID_1": 20737, "PARCEL_NO_": "105601044100", "Tax_Legal_": "129-45 ANNAS RETREAT NEW QTR", "Name": "ALPHA G LEONARD LIVING TRUST", "Address": "P O BOX 3102 VETERANS DRIVE", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 137200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.510640753, "SHAPE_Area": 783.97507364000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362936.406900003552437, 257015.447599999606609 ], [ 362931.883699998259544, 256978.469200000166893 ], [ 362910.898000001907349, 256980.830600000917912 ], [ 362915.423000000417233, 257017.597899999469519 ], [ 362936.406900003552437, 257015.447599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-44", "ACRE": ".166", "LONGITUDE": -64.89171011000001, "LATITUDE": 18.34208902, "OBJECTID_1": 20738, "PARCEL_NO_": "105601044200", "Tax_Legal_": "129-44 ANNAS RETREAT NEW QTR", "Name": "JEAN ROBLES WILSHIRE LIVING TRUST", "Address": "PO Box 11831", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.66020483299999, "SHAPE_Area": 836.90846904299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362958.195299997925758, 257013.515000000596046 ], [ 362954.483800001442432, 256975.910000000149012 ], [ 362931.883699998259544, 256978.469200000166893 ], [ 362936.406900003552437, 257015.447599999606609 ], [ 362958.195299997925758, 257013.515000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701036100", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-5", "ACRE": ".23", "LONGITUDE": -64.87706195, "LATITUDE": 18.34210916, "OBJECTID_1": 22007, "PARCEL_NO_": "105701036100", "Tax_Legal_": "20-21-5 SMITH BAY EAST END QTR.", "Name": "ROSADO, MAUREEN, DALE, D, N. CHARL", "Address": "7654 Est Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24900, "Improved_V": 1300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.42148689699999, "SHAPE_Area": 1070.4320544300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364522.579999998211861, 257010.064599998295307 ], [ 364475.955899998545647, 256993.006599999964237 ], [ 364465.299400001764297, 257013.395399998873472 ], [ 364511.135099999606609, 257028.335999999195337 ], [ 364522.579999998211861, 257010.064599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701040800", "MAP": "G9-1564-T70", "PARCEL_NAM": "1-2", "ACRE": "0.23", "LONGITUDE": -64.88128396, "LATITUDE": 18.34209288, "OBJECTID_1": 22041, "PARCEL_NO_": "105701040800", "Tax_Legal_": "ANNAS RETREAT 1-2 NEW QTR", "Name": "PHILIP, STEDROY H. & DIAN LYNCH", "Address": "PO BOX 305311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 122000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.042646889, "SHAPE_Area": 764.913205651 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364068.697999998927116, 256997.905999999493361 ], [ 364046.205700002610683, 256987.800500001758337 ], [ 364043.754399999976158, 256991.580099999904633 ], [ 364025.841099999845028, 257011.909600000828505 ], [ 364047.514499999582767, 257023.486000001430511 ], [ 364068.697999998927116, 256997.905999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602047500", "MAP": "A9-15-T62", "PARCEL_NAM": "129-2", "ACRE": ".184", "LONGITUDE": -64.88834652, "LATITUDE": 18.34206744, "OBJECTID_1": 21251, "PARCEL_NO_": "105602047500", "Tax_Legal_": "129-2 ANNAS RETREAT NEW QTR", "Name": "HARLEY, LAURIS", "Address": "PO Box 9851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 161200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.21523820199999, "SHAPE_Area": 841.419018542 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363322.794200003147125, 256999.400499999523163 ], [ 363290.739500001072884, 256975.917899999767542 ], [ 363278.497400000691414, 256993.127300001680851 ], [ 363311.356600001454353, 257016.8277000002563 ], [ 363322.794200003147125, 256999.400499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060600", "MAP": "D9-360-T63", "PARCEL_NAM": "57N", "ACRE": "0.19", "LONGITUDE": -64.87377433, "LATITUDE": 18.34213661, "OBJECTID_1": 22627, "PARCEL_NO_": "105702060600", "Tax_Legal_": "57N SMITH BAY EAST END QTR", "Name": "DRAGIN, JEAN", "Address": "6803 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49700, "Improved_V": 229500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.980331986, "SHAPE_Area": 942.43766324700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364859.685099996626377, 257005.013099998235703 ], [ 364822.594700001180172, 257004.709600001573563 ], [ 364819.968999996781349, 257028.963799998164177 ], [ 364861.904399998486042, 257028.462699998170137 ], [ 364859.685099996626377, 257005.013099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-43", "ACRE": ".167", "LONGITUDE": -64.8915039, "LATITUDE": 18.34206866, "OBJECTID_1": 20739, "PARCEL_NO_": "105601044300", "Tax_Legal_": "129 43 ANNAS RETREAT NEW QTR", "Name": "RICHARDS, RUPERT M", "Address": "P.O. BOX 3172", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21300, "Improved_V": 115500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.128434904, "SHAPE_Area": 818.61198529499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362979.985500000417233, 257011.371300000697374 ], [ 362975.4712999984622, 256973.337499998509884 ], [ 362954.483800001442432, 256975.910000000149012 ], [ 362958.195299997925758, 257013.515000000596046 ], [ 362979.985500000417233, 257011.371300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602049000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-38", "ACRE": ".171", "LONGITUDE": -64.89046524, "LATITUDE": 18.34201533, "OBJECTID_1": 21265, "PARCEL_NO_": "105602049000", "Tax_Legal_": "129-38 ANNAS RETREAT NEW QUARTER", "Name": "RICHARDSON, R. & M. & WEEKS, C. Y", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 64800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.49951824199999, "SHAPE_Area": 896.22780030800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363094.846900001168251, 256969.459399998188019 ], [ 363066.616999998688698, 256970.2837999984622 ], [ 363064.673500001430511, 257009.109200000762939 ], [ 363078.337700001895428, 257014.287200000137091 ], [ 363094.846900001168251, 256969.459399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701040300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-74", "ACRE": ".18", "LONGITUDE": -64.88241839, "LATITUDE": 18.34208882, "OBJECTID_1": 22036, "PARCEL_NO_": "105701040300", "Tax_Legal_": "148-74 ANNAS RETRT NEW QUARTER", "Name": "THOMAS, CHARLES H. & EUREECE L.", "Address": "PO Box 8374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 102400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.27698449099999, "SHAPE_Area": 673.254127283 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363943.759099997580051, 256992.239399999380112 ], [ 363926.081399999558926, 256984.917500000447035 ], [ 363910.497100003063679, 257015.820700000971556 ], [ 363921.742299996316433, 257020.978999998420477 ], [ 363925.773900002241135, 257021.011999998241663 ], [ 363929.008100003004074, 257019.982999999076128 ], [ 363933.890900000929832, 257014.745600000023842 ], [ 363943.759099997580051, 256992.239399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601048000", "MAP": "A9-15-T62", "PARCEL_NAM": "129-42", "ACRE": ".166", "LONGITUDE": -64.89130066, "LATITUDE": 18.34204923, "OBJECTID_1": 20746, "PARCEL_NO_": "105601048000", "Tax_Legal_": "ANNAS RETREAT 129-42 NEW QTR", "Name": "CALO, JACOB", "Address": "520 Horizon Way", "City": "Martinsburg", "State": "West Virginia", "Zip": 25401, "Country": "United States", "Land_Value": 20100, "Improved_V": 56500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.743228931, "SHAPE_Area": 825.50506903200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362979.985500000417233, 257011.371300000697374 ], [ 363001.775700002908707, 257009.227600000798702 ], [ 362998.037299998104572, 256974.788800001144409 ], [ 362985.157899998128414, 256972.150299999862909 ], [ 362975.4712999984622, 256973.337499998509884 ], [ 362979.985500000417233, 257011.371300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701054800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87502866, "LATITUDE": 18.34197499, "OBJECTID_1": 22146, "PARCEL_NO_": "105701054800", "Tax_Legal_": "SMITH BAY 70D EAST END QTR", "Name": "MARTIN, IROSE", "Address": "6525 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.331302615, "SHAPE_Area": 944.11941409099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364730.035999998450279, 256984.320300001651049 ], [ 364703.470899999141693, 256979.036699999123812 ], [ 364698.532300002872944, 256990.817499998956919 ], [ 364688.667700000107288, 257012.901599999517202 ], [ 364697.401000000536442, 257022.917700000107288 ], [ 364709.543499998748302, 257011.095800001174212 ], [ 364734.562100000679493, 256986.737799998372793 ], [ 364730.035999998450279, 256984.320300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702065500", "MAP": "G9-2719-T78", "PARCEL_NAM": "57T-19", "ACRE": "0.26", "LONGITUDE": -64.87139644, "LATITUDE": 18.34202751, "OBJECTID_1": 22699, "PARCEL_NO_": "105702065500", "Tax_Legal_": "SMITH BAY 57T-19 EAST END QTR.", "Name": "FRANCIS, DELANO", "Address": "7131 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.68622961400001, "SHAPE_Area": 996.39542772699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365109.742700003087521, 256995.238499999046326 ], [ 365071.862199999392033, 256993.028599999845028 ], [ 365067.702899999916553, 257007.982200000435114 ], [ 365108.661200001835823, 257027.526999998837709 ], [ 365111.128700003027916, 257021.847600001841784 ], [ 365109.742700003087521, 256995.238499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702064200", "MAP": "F9-3506-T77", "PARCEL_NAM": "57X-19", "ACRE": ".261", "LONGITUDE": -64.87283748, "LATITUDE": 18.34200774, "OBJECTID_1": 22686, "PARCEL_NO_": "105702064200", "Tax_Legal_": "SMITH BAY 57X-19 EAST END QTR", "Name": "BASS, LETTICIA ANGELICA", "Address": "6514 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 186600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.07606502499999, "SHAPE_Area": 906.01228852700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364945.787900000810623, 257025.982799999415874 ], [ 364949.059900000691414, 257020.521200001239777 ], [ 364959.693000003695488, 257002.876400001347065 ], [ 364960.513700000941753, 257001.194299999624491 ], [ 364931.632100000977516, 256983.859400000423193 ], [ 364928.478799998760223, 256975.389800000935793 ], [ 364926.752899996936321, 256988.674600001424551 ], [ 364922.626000002026558, 256999.82880000025034 ], [ 364937.75, 257022.96169999986887 ], [ 364945.787900000810623, 257025.982799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701058400", "MAP": "G9-3015-T80", "PARCEL_NAM": "57A-1", "ACRE": ".252", "LONGITUDE": -64.87458596, "LATITUDE": 18.34184159, "OBJECTID_1": 22158, "PARCEL_NO_": "105701058400", "Tax_Legal_": "SMITH BAY 57A-1 EAST END QTR", "Name": "BURROUGHS, CAROLYN", "Address": "10214 Deep Creek Pl", "City": "Union City", "State": "Georgia", "Zip": 30291, "Country": "United States", "Land_Value": 32500, "Improved_V": 90200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.310143361, "SHAPE_Area": 1060.7321719399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364768.013599999248981, 256975.131900001317263 ], [ 364768.884700000286102, 256967.539700001478195 ], [ 364747.170000001788139, 256960.81810000166297 ], [ 364739.112300001084805, 256960.118900001049042 ], [ 364738.135099999606609, 256980.164700001478195 ], [ 364745.347000002861023, 256985.5011 ], [ 364750.130900003015995, 256991.873100001364946 ], [ 364753.289599999785423, 256999.709399998188019 ], [ 364753.273400001227856, 257001.609099999070168 ], [ 364762.789200000464916, 257020.474300000816584 ], [ 364765.177500002086163, 257024.082400001585484 ], [ 364766.163699999451637, 257002.981199998408556 ], [ 364768.013599999248981, 256975.131900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602049300", "MAP": "A9-15-T62", "PARCEL_NAM": "129-41", "ACRE": ".167", "LONGITUDE": -64.89107642, "LATITUDE": 18.34203095, "OBJECTID_1": 21268, "PARCEL_NO_": "105602049300", "Tax_Legal_": "129 41 ANNAS RETREAT NEW QTR", "Name": "VIALET, ELEANOR", "Address": "PO Box 503043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23300, "Improved_V": 42400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.93170029300001, "SHAPE_Area": 870.44143118900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363023.565999999642372, 257007.083999998867512 ], [ 363025.480700001120567, 256971.635899998247623 ], [ 363013.382399998605251, 256971.959100000560284 ], [ 363000.452600002288818, 256975.230799999088049 ], [ 362998.037299998104572, 256974.788800001144409 ], [ 363001.775700002908707, 257009.227600000798702 ], [ 363023.565999999642372, 257007.083999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602049100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-39", "ACRE": ".165", "LONGITUDE": -64.8906636, "LATITUDE": 18.34202141, "OBJECTID_1": 21266, "PARCEL_NO_": "105602049100", "Tax_Legal_": "129-39 ANNAS RETREAT NEW QTR", "Name": "LEWIS, EDWARD & CONNIE", "Address": "PO Box 1225", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23800, "Improved_V": 155000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.956188678, "SHAPE_Area": 727.89194723399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363066.616999998688698, 256970.2837999984622 ], [ 363047.258299998939037, 256970.969799999147654 ], [ 363044.539099998772144, 257006.200100000947714 ], [ 363055.013999998569489, 257007.130300000309944 ], [ 363064.673500001430511, 257009.109200000762939 ], [ 363066.616999998688698, 256970.2837999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701040200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-73", "ACRE": ".17", "LONGITUDE": -64.88259191, "LATITUDE": 18.34202185, "OBJECTID_1": 22035, "PARCEL_NO_": "105701040200", "Tax_Legal_": "148-73 ANNAS RETREAT NEW QTR", "Name": "RICHARDSON, R & M. /EDWARDS", "Address": "7179 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 137000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.61340188699999, "SHAPE_Area": 686.957776502 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363926.081399999558926, 256984.917500000447035 ], [ 363907.59910000115633, 256977.377999998629093 ], [ 363892.023800000548363, 257007.22580000013113 ], [ 363910.497100003063679, 257015.820700000971556 ], [ 363926.081399999558926, 256984.917500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701046700", "MAP": "D9-3247-T85", "PARCEL_NAM": "1-2A-1", "ACRE": "0.23", "LONGITUDE": -64.88076987, "LATITUDE": 18.34200388, "OBJECTID_1": 22094, "PARCEL_NO_": "105701046700", "Tax_Legal_": "ANNAS RETREAT 1-2A-1 NEW QTR.", "Name": "HODGE, ROSLIN A. & HUNT, OWEN", "Address": "6119 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 190300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.18532359299999, "SHAPE_Area": 1179.2276219800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364095.828900001943111, 256975.230999998748302 ], [ 364074.318800002336502, 257000.696199998259544 ], [ 364079.941399998962879, 257003.275400001555681 ], [ 364108.052599996328354, 257016.382199998944998 ], [ 364112.114799998700619, 257012.826799999922514 ], [ 364117.008400000631809, 257006.322999998927116 ], [ 364117.827299997210503, 257004.852000001817942 ], [ 364124.347900003194809, 256996.672699999064207 ], [ 364128.422600001096725, 256991.639800000935793 ], [ 364098.714900001883507, 256976.620099999010563 ], [ 364095.828900001943111, 256975.230999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602049200", "MAP": "A9-15-T62", "PARCEL_NAM": "129-40", "ACRE": ".167", "LONGITUDE": -64.89085967, "LATITUDE": 18.34202028, "OBJECTID_1": 21267, "PARCEL_NO_": "105602049200", "Tax_Legal_": "129 40 ANNAS RETREAT NEW QTR", "Name": "SAMUEL, CHARLES & MAUREEN", "Address": "PO Box 715", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25200, "Improved_V": 128900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.614357682, "SHAPE_Area": 753.59213244499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363047.258299998939037, 256970.969799999147654 ], [ 363025.480700001120567, 256971.635899998247623 ], [ 363023.565999999642372, 257007.083999998867512 ], [ 363044.539099998772144, 257006.200100000947714 ], [ 363047.258299998939037, 256970.969799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066700", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-26", "ACRE": "0.24", "LONGITUDE": -64.87972919000001, "LATITUDE": 18.34197317, "OBJECTID_1": 22226, "PARCEL_NO_": "105701066700", "Tax_Legal_": "ANNAS RETREAT 173B-26 NEW QTR.", "Name": "GUMBS, VIOLET & ANNETTE AMANDA", "Address": "6504 ESTATE SMITH BAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 151900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.63440350299999, "SHAPE_Area": 1176.6434305299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364234.828900001943111, 256995.677099999040365 ], [ 364202.80120000243187, 256969.028299998492002 ], [ 364188.163500003516674, 256983.473900001496077 ], [ 364210.457900002598763, 257016.798099998384714 ], [ 364212.898400001227856, 257014.285000000149012 ], [ 364220.180399999022484, 257011.389199998229742 ], [ 364225.021899998188019, 257011.006700001657009 ], [ 364229.85080000013113, 257012.101700000464916 ], [ 364234.828900001943111, 256995.677099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701065200", "MAP": "A9-287-T80", "PARCEL_NAM": "1073B-41", "ACRE": "0.23", "LONGITUDE": -64.87849307, "LATITUDE": 18.34197471, "OBJECTID_1": 22211, "PARCEL_NO_": "105701065200", "Tax_Legal_": "ANNAS RETREAT 173B-41 NEW QTR.", "Name": "SERRANT, FELIX (life estate)", "Address": "PO Box 9767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.841911838, "SHAPE_Area": 667.04454434700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364351.090800002217293, 256978.685699999332428 ], [ 364336.580700002610683, 256978.144799999892712 ], [ 364329.990000002086163, 256994.556099999696016 ], [ 364327.524300001561642, 257000.024399999529123 ], [ 364345.128300003707409, 257016.000500001013279 ], [ 364346.103699997067451, 257016.88569999858737 ], [ 364347.533299997448921, 257014.075100000947714 ], [ 364349.416943588643335, 257009.433828138717217 ], [ 364350.820884807675611, 257004.625661468249746 ], [ 364351.730688452837057, 256999.700037141825305 ], [ 364352.137000001966953, 256994.707600001245737 ], [ 364353.635987794667017, 256986.811806701880414 ], [ 364354.358199998736382, 256978.807500001043081 ], [ 364351.090800002217293, 256978.685699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602048700", "MAP": "A9-15-T62", "PARCEL_NAM": "129-32", "ACRE": ".219", "LONGITUDE": -64.88991146, "LATITUDE": 18.34201598, "OBJECTID_1": 21262, "PARCEL_NO_": "105602048700", "Tax_Legal_": "129 32 ANNAS RETREAT NEW QTR", "Name": "LEERDAM, GODFREY", "Address": "4627 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 58200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.24806794700001, "SHAPE_Area": 1070.7781837699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363118.082500003278255, 256986.959300000220537 ], [ 363123.597300000488758, 257002.203099999576807 ], [ 363133.242399998009205, 257005.870700001716614 ], [ 363163.934500001370907, 257000.000199999660254 ], [ 363163.192900002002716, 256992.39469999819994 ], [ 363116.637199997901917, 256967.315699998289347 ], [ 363110.179499998688698, 256968.107299998402596 ], [ 363118.082500003278255, 256986.959300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702062300", "MAP": "F9-3272-T74", "PARCEL_NAM": "57X-11", "ACRE": "0.26", "LONGITUDE": -64.87330023, "LATITUDE": 18.34200761, "OBJECTID_1": 22669, "PARCEL_NO_": "105702062300", "Tax_Legal_": "SMITH BAY 57X-11 EAST END QTR", "Name": "DUBLIN, ANNABELLE", "Address": "6632 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021359, "Country": "United States", "Land_Value": 43400, "Improved_V": 293700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.732237137, "SHAPE_Area": 1035.11668265 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364871.74379999935627, 257009.333700001239777 ], [ 364886.178300000727177, 257018.739999998360872 ], [ 364891.00900000333786, 257019.6239 ], [ 364901.494699999690056, 257019.287500001490116 ], [ 364904.737899996340275, 257017.203099999576807 ], [ 364912.896300002932549, 257006.081900000572205 ], [ 364916.173699997365475, 256999.986999999731779 ], [ 364875.197499997913837, 256982.553100001066923 ], [ 364871.74379999935627, 257009.333700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602048400", "MAP": "A9-15-T62", "PARCEL_NAM": "129-29", "ACRE": ".170", "LONGITUDE": -64.88933728000001, "LATITUDE": 18.34199419, "OBJECTID_1": 21259, "PARCEL_NO_": "105602048400", "Tax_Legal_": "ANNAS RETREAT 129 29 NEW QTR", "Name": "BENJAMIN, CATHERINE AGNES", "Address": "146-30B Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 125500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.238022938, "SHAPE_Area": 861.92733927300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363210.029100000858307, 256984.545400001108646 ], [ 363208.608900003135204, 256961.946800000965595 ], [ 363176.115500003099442, 256989.967399999499321 ], [ 363178.507399998605251, 256993.153299998492002 ], [ 363177.648999996483326, 256999.26799999922514 ], [ 363174.389600001275539, 257003.252099998295307 ], [ 363211.51410000026226, 256999.545200001448393 ], [ 363210.029100000858307, 256984.545400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701040100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-72", "ACRE": ".17", "LONGITUDE": -64.88277164, "LATITUDE": 18.34194517, "OBJECTID_1": 22034, "PARCEL_NO_": "105701040100", "Tax_Legal_": "ANNAS RETRT 148-72 NEW QTR", "Name": "ERNESTO T VANTERPOOL TRUST", "Address": "PO Box 9305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 70800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.277539289, "SHAPE_Area": 711.296690087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363907.59910000115633, 256977.377999998629093 ], [ 363886.706900000572205, 256968.763199999928474 ], [ 363873.550599999725819, 256998.630899999290705 ], [ 363892.023800000548363, 257007.22580000013113 ], [ 363907.59910000115633, 256977.377999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061600", "MAP": "D9-1033-T72", "PARCEL_NAM": "57-119", "ACRE": ".18", "LONGITUDE": -64.87253562, "LATITUDE": 18.34190635, "OBJECTID_1": 22637, "PARCEL_NO_": "105702061600", "Tax_Legal_": "57-119 SMITH BAY EAST END QTR", "Name": "FAHIE, ALBERT", "Address": "6539 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21400, "Improved_V": 72300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.30610655300001, "SHAPE_Area": 783.72067148799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364985.680200003087521, 256981.346400000154972 ], [ 364959.955600000917912, 256972.058800000697374 ], [ 364960.513700000941753, 257001.194299999624491 ], [ 364959.693000003695488, 257002.876400001347065 ], [ 364978.938400000333786, 257015.488400001078844 ], [ 364981.41669999808073, 257008.542599998414516 ], [ 364984.791199997067451, 256991.049400001764297 ], [ 364985.680200003087521, 256981.346400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701041500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-99", "ACRE": ".13", "LONGITUDE": -64.88203007, "LATITUDE": 18.34198435, "OBJECTID_1": 22048, "PARCEL_NO_": "105701041500", "Tax_Legal_": "148-99&100 ANNAS RETREAT NEW QTR", "Name": "MARY A HENLEY REVOCABLE LIVING TRUST", "Address": "7174 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 171500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.129388761599998, "SHAPE_Area": 412.91264248300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363952.847099997103214, 256994.332100000232458 ], [ 363978.279399998486042, 257004.982700001448393 ], [ 363984.089100003242493, 256990.880699999630451 ], [ 363958.3716000020504, 256980.748799998313189 ], [ 363952.847099997103214, 256994.332100000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701060500", "MAP": "D9-2501-T83", "PARCEL_NAM": "173B-31", "ACRE": "0.23", "LONGITUDE": -64.88027918, "LATITUDE": 18.34191377, "OBJECTID_1": 22167, "PARCEL_NO_": "105701060500", "Tax_Legal_": "ANNAS RETREAT 173B-31 NEW QTR.", "Name": "HERBERT, WINIFRED", "Address": "PO Box 10085", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37800, "Improved_V": 215700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.466013586, "SHAPE_Area": 787.37910889700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364173.635499998927116, 256985.043800000101328 ], [ 364151.215199999511242, 256966.495200000703335 ], [ 364134.910899996757507, 256987.260000001639128 ], [ 364153.288900002837181, 257007.042100001126528 ], [ 364173.635499998927116, 256985.043800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701036000", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-6", "ACRE": ".23", "LONGITUDE": -64.87694169, "LATITUDE": 18.34190833, "OBJECTID_1": 22006, "PARCEL_NO_": "105701036000", "Tax_Legal_": "20-21-6 SMITH BAY EAST END QUARTER", "Name": "DURANT, FREDERICK, JEAN & JUNE", "Address": "PO Box 502774", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27400, "Improved_V": 191400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.60667071200001, "SHAPE_Area": 1437.3691583499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364537.241300001740456, 256984.909400001168251 ], [ 364488.953599996864796, 256967.758499998599291 ], [ 364475.955899998545647, 256993.006599999964237 ], [ 364522.579999998211861, 257010.064599998295307 ], [ 364531.801500000059605, 256994.664200000464916 ], [ 364533.426700003445148, 256993.199799999594688 ], [ 364534.258199997246265, 256990.251299999654293 ], [ 364537.241300001740456, 256984.909400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602060100", "MAP": "D9-8646-T012", "PARCEL_NAM": "142-E", "ACRE": null, "LONGITUDE": -64.88818239, "LATITUDE": 18.34174645, "OBJECTID_1": 21310, "PARCEL_NO_": "105602060100", "Tax_Legal_": "142 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1020200, "Improved_V": 3593500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.367178115, "SHAPE_Area": 650.72708108100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363331.639300003647804, 256982.217000000178814 ], [ 363332.69650000333786, 256972.883799999952316 ], [ 363331.924400001764297, 256968.866700001060963 ], [ 363321.65089999884367, 256944.295699998736382 ], [ 363320.049099996685982, 256943.016100000590086 ], [ 363316.022900000214577, 256942.349800001829863 ], [ 363312.786899998784065, 256943.589899998158216 ], [ 363311.15990000218153, 256945.265299998223782 ], [ 363300.745700001716614, 256960.897700000554323 ], [ 363331.639300003647804, 256982.217000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702062000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87187504000001, "LATITUDE": 18.34194466, "OBJECTID_1": 22666, "PARCEL_NO_": "105702062000", "Tax_Legal_": "SMITH BAY 57-116A EAST END QTR", "Name": "CAINES, DOREEN, WENDELL L & THOMAS", "Address": "6526 Est Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30900, "Improved_V": 94200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.23515766700001, "SHAPE_Area": 933.416685207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365017.717000000178814, 257006.939800001680851 ], [ 365057.192100003361702, 257011.273699998855591 ], [ 365064.662900000810623, 256986.214699998497963 ], [ 365060.631300002336502, 256986.181699998676777 ], [ 365025.967100001871586, 256985.053599998354912 ], [ 365019.362000003457069, 257003.153599999845028 ], [ 365019.345799997448921, 257005.053300000727177 ], [ 365017.717000000178814, 257006.939800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064100", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-78", "ACRE": "0.24", "LONGITUDE": -64.87817389, "LATITUDE": 18.34192419, "OBJECTID_1": 22201, "PARCEL_NO_": "105701064100", "Tax_Legal_": "173B-78 ANNAS RETREAT NEW QTR.", "Name": "BOLAND, HESKETH & JEAN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31800, "Improved_V": 196000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.476858142, "SHAPE_Area": 998.77642720699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364392.023900002241135, 257001.185600001364946 ], [ 364397.89639999717474, 256974.424699999392033 ], [ 364359.161100000143051, 256977.907400000840425 ], [ 364355.702100001275539, 257005.321199998259544 ], [ 364392.023900002241135, 257001.185600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602051300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-71", "ACRE": ".16", "LONGITUDE": -64.88295549, "LATITUDE": 18.34187392, "OBJECTID_1": 21286, "PARCEL_NO_": "105602051300", "Tax_Legal_": "ANNAS RETRT 148-71 NEW QTR", "Name": "ESTRILL, DESHAUN L & JERMAINE M", "Address": "PO Box 7563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 121400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.804991031, "SHAPE_Area": 653.59663096400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363886.706900000572205, 256968.763199999928474 ], [ 363867.416599996387959, 256961.428199999034405 ], [ 363855.077299997210503, 256990.035900000482798 ], [ 363873.550599999725819, 256998.630899999290705 ], [ 363886.706900000572205, 256968.763199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602048500", "MAP": "A9-15-T62", "PARCEL_NAM": "129-31", "ACRE": ".166", "LONGITUDE": -64.88977963000001, "LATITUDE": 18.34187812, "OBJECTID_1": 21260, "PARCEL_NO_": "105602048500", "Tax_Legal_": "129-31 ANNAS RETREAT NEW QTR", "Name": "LEWIS, JR , LAURA & WALTER", "Address": "4628 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 122100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.945272211, "SHAPE_Area": 807.46045814700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363167.260399997234344, 256988.2060999982059 ], [ 363165.071599997580051, 256961.168299999088049 ], [ 363116.637199997901917, 256967.315699998289347 ], [ 363163.192900002002716, 256992.39469999819994 ], [ 363164.017200000584126, 256990.290500000119209 ], [ 363167.260399997234344, 256988.2060999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702051800", "MAP": "D9-360-T63", "PARCEL_NAM": "57G", "ACRE": "0.26", "LONGITUDE": -64.87424607, "LATITUDE": 18.3418906, "OBJECTID_1": 22609, "PARCEL_NO_": "105702051800", "Tax_Legal_": "SMITH BAY 57G EAST END QTR", "Name": "MOLYNEAUX, JANE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 163200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.12833381300001, "SHAPE_Area": 1401.74491457 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364814.529799997806549, 257004.854699999094009 ], [ 364815.465599998831749, 256989.663600001484156 ], [ 364814.722199998795986, 256982.269200000911951 ], [ 364812.375200003385544, 256973.80629999935627 ], [ 364768.013599999248981, 256975.131900001317263 ], [ 364766.163699999451637, 257002.981199998408556 ], [ 364814.529799997806549, 257004.854699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060700", "MAP": "D9-360-T63", "PARCEL_NAM": "57M", "ACRE": "0.19", "LONGITUDE": -64.87377506, "LATITUDE": 18.34193205, "OBJECTID_1": 22628, "PARCEL_NO_": "105702060700", "Tax_Legal_": "57M SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "EDWARDS, JOSEPH ALEXANDER", "Address": "PO Box 8272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62100, "Improved_V": 113200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.51061760899999, "SHAPE_Area": 753.84969448100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364857.453199997544289, 256983.04109999909997 ], [ 364822.769199997186661, 256984.234900001436472 ], [ 364823.555699996650219, 256986.563400000333786 ], [ 364822.594700001180172, 257004.709600001573563 ], [ 364859.685099996626377, 257005.013099998235703 ], [ 364857.453199997544289, 256983.04109999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701046900", "MAP": "D9-3247-T85", "PARCEL_NAM": "1-2D", "ACRE": "0.23", "LONGITUDE": -64.88106259, "LATITUDE": 18.34187433, "OBJECTID_1": 22096, "PARCEL_NO_": "105701046900", "Tax_Legal_": "ANNAS RETREAT 1-2D NEW QTR.", "Name": "MARTIN, JANET", "Address": "PO Box 7442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 213200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.999071458, "SHAPE_Area": 993.896791119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364088.270599998533726, 256972.101700000464916 ], [ 364066.582900002598763, 256962.213899999856949 ], [ 364062.504600003361702, 256967.6689000017941 ], [ 364046.205700002610683, 256987.800500001758337 ], [ 364068.697999998927116, 256997.905999999493361 ], [ 364074.318800002336502, 257000.696199998259544 ], [ 364095.828900001943111, 256975.230999998748302 ], [ 364094.699600003659725, 256974.687399998307228 ], [ 364088.270599998533726, 256972.101700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701065800", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-22", "ACRE": "0.24", "LONGITUDE": -64.8789343, "LATITUDE": 18.34192016, "OBJECTID_1": 22217, "PARCEL_NO_": "105701065800", "Tax_Legal_": "ANNAS RETREAT 173B-22 NEW QTR.", "Name": "DAVID, MURRY", "Address": "PO Box 304091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 275900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.781246858, "SHAPE_Area": 1011.62797612 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364329.990000002086163, 256994.556099999696016 ], [ 364307.515699997544289, 256982.339899998158216 ], [ 364301.882299996912479, 256981.027199998497963 ], [ 364300.289499998092651, 256978.692099999636412 ], [ 364297.883100003004074, 256977.19480000063777 ], [ 364287.433399997651577, 256973.309599999338388 ], [ 364281.027900002896786, 256967.979800000786781 ], [ 364268.686800003051758, 256996.798599999397993 ], [ 364290.448299996554852, 256998.032200001180172 ], [ 364310.598899997770786, 256999.041499998420477 ], [ 364327.524300001561642, 257000.024399999529123 ], [ 364329.990000002086163, 256994.556099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602048100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-30", "ACRE": ".183", "LONGITUDE": -64.88946163, "LATITUDE": 18.34184118, "OBJECTID_1": 21256, "PARCEL_NO_": "105602048100", "Tax_Legal_": "ANNAS RETREAT 129-30 NEW QTR", "Name": "NEWTON, HEATHER R.", "Address": "PO Box 1171", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26700, "Improved_V": 105400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.091538318, "SHAPE_Area": 864.31363256899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363208.608900003135204, 256961.946800000965595 ], [ 363207.854800000786781, 256955.818900000303984 ], [ 363165.071599997580051, 256961.168299999088049 ], [ 363167.260399997234344, 256988.2060999982059 ], [ 363169.686499997973442, 256987.381599999964237 ], [ 363172.909999996423721, 256987.619100000709295 ], [ 363176.115500003099442, 256989.967399999499321 ], [ 363208.608900003135204, 256961.946800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066400", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-23", "ACRE": "0.24", "LONGITUDE": -64.87920915, "LATITUDE": 18.34177576, "OBJECTID_1": 22223, "PARCEL_NO_": "105701066400", "Tax_Legal_": "ANNAS RETREAT 173B-23 NEW QTR.", "Name": "LEWIS, NATASHA", "Address": "PO Box 25702", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.155391693, "SHAPE_Area": 719.80673656299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364281.027900002896786, 256967.979800000786781 ], [ 364270.655500002205372, 256955.018199998885393 ], [ 364261.848999999463558, 256947.557799998670816 ], [ 364254.30629999935627, 256981.059999998658895 ], [ 364267.090400002896786, 256994.88569999858737 ], [ 364268.686800003051758, 256996.798599999397993 ], [ 364281.027900002896786, 256967.979800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066600", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-25", "ACRE": "0.23", "LONGITUDE": -64.87956958, "LATITUDE": 18.34178583, "OBJECTID_1": 22225, "PARCEL_NO_": "105701066600", "Tax_Legal_": "ANNAS RETREAT 173B-25 NEW QTR.", "Name": "THOMAS, F.,F.,E.,D.,M.,A.,O.,P., & F.", "Address": "PO Box 11092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.714063735, "SHAPE_Area": 1148.30397141 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364254.30629999935627, 256981.059999998658895 ], [ 364224.745999999344349, 256948.731800001114607 ], [ 364202.80120000243187, 256969.028299998492002 ], [ 364234.828900001943111, 256995.677099999040365 ], [ 364254.30629999935627, 256981.059999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702067900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87276115, "LATITUDE": 18.34173487, "OBJECTID_1": 22714, "PARCEL_NO_": "105702067900", "Tax_Legal_": "SMITH BAY 57X-36 EAST END QTR", "Name": "FARRELL, WINSTON & F", "Address": "P O BOX 2364", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 39500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.74683234, "SHAPE_Area": 1068.2232479300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364959.955600000917912, 256972.058800000697374 ], [ 364958.621699996292591, 256939.328400000929832 ], [ 364952.905500002205372, 256947.725400000810623 ], [ 364939.077799998223782, 256961.755499999970198 ], [ 364928.478799998760223, 256975.389800000935793 ], [ 364931.632100000977516, 256983.859400000423193 ], [ 364960.513700000941753, 257001.194299999624491 ], [ 364959.955600000917912, 256972.058800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701041100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-75", "ACRE": ".15", "LONGITUDE": -64.88239933, "LATITUDE": 18.34184796, "OBJECTID_1": 22044, "PARCEL_NO_": "105701041100", "Tax_Legal_": "ANNAS RETREAT 148-75 1 NEW QTR", "Name": "MANNING, S. P. , S. N. , N. A. & POTEAT", "Address": "7175 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 146000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.627592073, "SHAPE_Area": 638.78877347299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363950.344499997794628, 256976.461300000548363 ], [ 363916.592600002884865, 256962.886100001633167 ], [ 363907.59910000115633, 256977.377999998629093 ], [ 363926.081399999558926, 256984.917500000447035 ], [ 363943.759099997580051, 256992.239399999380112 ], [ 363950.344499997794628, 256976.461300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702067500", "MAP": "F9-3272-T74", "PARCEL_NAM": "57X-12", "ACRE": "0.25", "LONGITUDE": -64.87320477, "LATITUDE": 18.34182122, "OBJECTID_1": 22708, "PARCEL_NO_": "105702067500", "Tax_Legal_": "57X-12 SMITH BAY 1,2 &3 EAST END QTR", "Name": "FLORIZELLE HODGE REVOCABLE TRUST", "Address": "23 Fela Dr", "City": "Old Bridge", "State": "New Jersey", "Zip": 8857, "Country": "United States", "Land_Value": 39000, "Improved_V": 128100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.919903726, "SHAPE_Area": 872.312581905 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364922.04450000077486, 256973.437300000339746 ], [ 364879.326099999248981, 256971.187800001353025 ], [ 364876.030699998140335, 256979.393500000238419 ], [ 364875.197499997913837, 256982.553100001066923 ], [ 364916.173699997365475, 256999.986999999731779 ], [ 364921.121299996972084, 256987.150800000876188 ], [ 364922.04450000077486, 256973.437300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701065000", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-21", "ACRE": "0.24", "LONGITUDE": -64.87867564, "LATITUDE": 18.3417758, "OBJECTID_1": 22210, "PARCEL_NO_": "105701065000", "Tax_Legal_": "173B-21 ANNAS RETREAT NEW QUARTER", "Name": "PATRICK LIBURD FAMILY REVOCABLE TRUST", "Address": "PO Box 307861", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 243200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.307258507, "SHAPE_Area": 791.80484448899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364336.580700002610683, 256978.144799999892712 ], [ 364328.769299998879433, 256948.527699999511242 ], [ 364303.595600001513958, 256969.219999998807907 ], [ 364309.243400000035763, 256968.844000000506639 ], [ 364311.649800002574921, 256970.341400001198053 ], [ 364312.436300002038479, 256972.669799998402596 ], [ 364313.195900000631809, 256978.164500001817942 ], [ 364309.939999997615814, 256981.726399999111891 ], [ 364307.515699997544289, 256982.339899998158216 ], [ 364329.990000002086163, 256994.556099999696016 ], [ 364336.580700002610683, 256978.144799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602051200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-70", "ACRE": ".15", "LONGITUDE": -64.88314682, "LATITUDE": 18.34179954, "OBJECTID_1": 21285, "PARCEL_NO_": "105602051200", "Tax_Legal_": "ANNAS RETRT 148-70 NEW QTR", "Name": "BRATHWAITE, ELVINA", "Address": "PO Box 305796", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 116900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.174944783, "SHAPE_Area": 703.976855226 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363860.183100000023842, 256958.624800000339746 ], [ 363846.52080000191927, 256953.235599998384714 ], [ 363833.393200002610683, 256979.725900001823902 ], [ 363855.077299997210503, 256990.035900000482798 ], [ 363867.416599996387959, 256961.428199999034405 ], [ 363860.183100000023842, 256958.624800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701042400", "MAP": "D9-48-T54", "PARCEL_NAM": "9", "ACRE": "0.57", "LONGITUDE": -64.88139232, "LATITUDE": 18.34164272, "OBJECTID_1": 22056, "PARCEL_NO_": "105701042400", "Tax_Legal_": "9 ANNAS RETREAT NEW QUARTER", "Name": "SPRAUVE, EUGENIA, GERSHWAIN, K", "Address": "PO Box 1568", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 80200, "Improved_V": 181300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.03242978500001, "SHAPE_Area": 2588.08705835 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364066.582900002598763, 256962.213899999856949 ], [ 364072.286499999463558, 256955.29450000077486 ], [ 364030.649499997496605, 256920.756499998271465 ], [ 364016.830700002610683, 256933.731199998408556 ], [ 364003.782300002872944, 256950.934099998325109 ], [ 364002.160599999129772, 256951.976300001144409 ], [ 364000.515699997544289, 256955.762499999254942 ], [ 364043.754399999976158, 256991.580099999904633 ], [ 364046.205700002610683, 256987.800500001758337 ], [ 364062.504600003361702, 256967.6689000017941 ], [ 364066.582900002598763, 256962.213899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602047100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88905976, "LATITUDE": 18.34183486, "OBJECTID_1": 21247, "PARCEL_NO_": "105602047100", "Tax_Legal_": "ANNAS RETREAT 93A & 93B NEW QTR", "Name": "DORSETT, BERYL", "Address": "177A E Main St", "City": "New Rochelle", "State": "New York", "Zip": 10801, "Country": "United States", "Land_Value": 68500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.254465794, "SHAPE_Area": 813.08038156700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363235.84009999781847, 256983.701200000941753 ], [ 363244.973899997770786, 256952.745200000703335 ], [ 363208.608900003135204, 256961.946800000965595 ], [ 363210.029100000858307, 256984.545400001108646 ], [ 363235.84009999781847, 256983.701200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701041500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-100", "ACRE": ".13", "LONGITUDE": -64.881977, "LATITUDE": 18.34184002, "OBJECTID_1": 22048, "PARCEL_NO_": "105701041500", "Tax_Legal_": "148-99&100 ANNAS RETREAT NEW QTR", "Name": "MARY A HENLEY REVOCABLE LIVING TRUST", "Address": "7174 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 171500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.858153786700001, "SHAPE_Area": 507.89885801399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363988.273500002920628, 256972.971999999135733 ], [ 363966.594800002872944, 256962.028799999505281 ], [ 363958.3716000020504, 256980.748799998313189 ], [ 363984.089100003242493, 256990.880699999630451 ], [ 363987.400700002908707, 256980.775299999862909 ], [ 363988.273500002920628, 256972.971999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701043300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88052257, "LATITUDE": 18.34171229, "OBJECTID_1": 22063, "PARCEL_NO_": "105701043300", "Tax_Legal_": "1-3&1-2B ANNAS RETREAT NEW QTR", "Name": "HERBERT, MERRITT & HARRIET", "Address": "PO Box 10761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65000, "Improved_V": 278100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.80551767200001, "SHAPE_Area": 1743.4891683200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364127.266800001263618, 256938.012600000947714 ], [ 364095.828900001943111, 256975.230999998748302 ], [ 364098.714900001883507, 256976.620099999010563 ], [ 364128.422600001096725, 256991.639800000935793 ], [ 364134.129799999296665, 256984.298300001770258 ], [ 364143.10530000180006, 256971.917199999094009 ], [ 364148.810599997639656, 256964.786699999123812 ], [ 364161.029399998486042, 256950.321299999952316 ], [ 364127.266800001263618, 256938.012600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57-114", "ACRE": null, "LONGITUDE": -64.87222415, "LATITUDE": 18.34180527, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.00079717600001, "SHAPE_Area": 735.12613116700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365022.853299997746944, 256971.94029999896884 ], [ 364990.640399999916553, 256967.032600000500679 ], [ 364991.398199997842312, 256972.738400001078844 ], [ 364990.417400002479553, 256993.206399999558926 ], [ 365015.384300000965595, 256996.78830000013113 ], [ 365022.853299997746944, 256971.94029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702065600", "MAP": "G9-2719-T78", "PARCEL_NAM": "57T-20", "ACRE": "0.31", "LONGITUDE": -64.87140551, "LATITUDE": 18.34167984, "OBJECTID_1": 22700, "PARCEL_NO_": "105702065600", "Tax_Legal_": "SMITH BAY 57T-20 EAST END QTR", "Name": "HERMAN, ANN (LIFE ESTATE)", "Address": "BOX 4925", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 203200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.34645714300001, "SHAPE_Area": 1448.88690023 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365109.742700003087521, 256995.238499999046326 ], [ 365110.602899998426437, 256988.91270000115037 ], [ 365109.047799997031689, 256982.144999999552965 ], [ 365100.369000002741814, 256959.698100000619888 ], [ 365097.274999998509884, 256944.262899998575449 ], [ 365094.139700002968311, 256933.682599999010563 ], [ 365093.396300002932549, 256926.288199998438358 ], [ 365094.249399997293949, 256920.806800000369549 ], [ 365091.877199999988079, 256915.298900000751019 ], [ 365089.456500001251698, 256915.490200001746416 ], [ 365086.854099996387959, 256937.000399999320507 ], [ 365084.321900002658367, 256950.278599999845028 ], [ 365080.970799997448921, 256965.027699999511242 ], [ 365079.332999996840954, 256967.9695999994874 ], [ 365071.862199999392033, 256993.028599999845028 ], [ 365109.742700003087521, 256995.238499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701060600", "MAP": "D9-2501-T83", "PARCEL_NAM": "173B-32", "ACRE": "0.23", "LONGITUDE": -64.88010396, "LATITUDE": 18.34172076, "OBJECTID_1": 22168, "PARCEL_NO_": "105701060600", "Tax_Legal_": "ANNAS RETREAT 173B-32 NEW QTR.", "Name": "ROBINSON, ELROY & SHIRLEEN", "Address": "6144 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37800, "Improved_V": 302400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.982830976, "SHAPE_Area": 852.22718109599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364193.967699997127056, 256964.734099999070168 ], [ 364169.94200000166893, 256945.328000001609325 ], [ 364151.215199999511242, 256966.495200000703335 ], [ 364173.635499998927116, 256985.043800000101328 ], [ 364193.967699997127056, 256964.734099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602051100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-69", "ACRE": ".14", "LONGITUDE": -64.8833218, "LATITUDE": 18.34172695, "OBJECTID_1": 21284, "PARCEL_NO_": "105602051100", "Tax_Legal_": "ANNAS RETREAT 148-69 NEW QTR", "Name": "DRAKES, CYNTHIA S. & SYMISTER, A. J", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 90700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.095060102700003, "SHAPE_Area": 493.26054207099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363839.287299998104572, 256950.432199999690056 ], [ 363830.446699999272823, 256946.982299998402596 ], [ 363818.132600001990795, 256972.635000001639128 ], [ 363833.393200002610683, 256979.725900001823902 ], [ 363846.52080000191927, 256953.235599998384714 ], [ 363839.287299998104572, 256950.432199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066500", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-24", "ACRE": "0.24", "LONGITUDE": -64.87940991000001, "LATITUDE": 18.34161548, "OBJECTID_1": 22224, "PARCEL_NO_": "105701066500", "Tax_Legal_": "ANNAS RETREAT 173B-24 NEW QTR.", "Name": "DAVID, MARJORIE & ONEIMUS", "Address": "PO Box 307802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 192400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.888583563, "SHAPE_Area": 890.78153525899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364261.848999999463558, 256947.557799998670816 ], [ 364250.634400002658367, 256938.811200000345707 ], [ 364245.015299998223782, 256935.809900000691414 ], [ 364240.987400002777576, 256935.354800000786781 ], [ 364235.3108000010252, 256939.107999999076128 ], [ 364224.745999999344349, 256948.731800001114607 ], [ 364254.30629999935627, 256981.059999998658895 ], [ 364261.848999999463558, 256947.557799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701041200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-87", "ACRE": ".23", "LONGITUDE": -64.88270505, "LATITUDE": 18.34164162, "OBJECTID_1": 22045, "PARCEL_NO_": "105701041200", "Tax_Legal_": "148-87 ANNAS RETREAT NEW QTR", "Name": "STAPLETON, MARYLYN (LIFE ESTATE)", "Address": "PO BOX 303739", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.93736830099999, "SHAPE_Area": 965.075301728 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363916.592600002884865, 256962.886100001633167 ], [ 363912.573700003325939, 256961.375599998980761 ], [ 363898.329800002276897, 256929.594999998807907 ], [ 363882.973899997770786, 256933.691199999302626 ], [ 363886.706900000572205, 256968.763199999928474 ], [ 363907.59910000115633, 256977.377999998629093 ], [ 363916.592600002884865, 256962.886100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87382066000001, "LATITUDE": 18.3416927, "OBJECTID_1": 22629, "PARCEL_NO_": "105702060800", "Tax_Legal_": "SMITH BAY 57K-1&57L 1 2&3 EAST END QTR", "Name": "EDRIS A BRATHWAITE TRUST", "Address": "PO Box 9163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32700, "Improved_V": 306600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.010793734, "SHAPE_Area": 1097.6666597799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364849.659800000488758, 256951.313299998641014 ], [ 364816.590199999511242, 256952.309200000017881 ], [ 364818.87610000371933, 256967.948899999260902 ], [ 364822.769199997186661, 256984.234900001436472 ], [ 364857.453199997544289, 256983.04109999909997 ], [ 364849.659800000488758, 256951.313299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87181781, "LATITUDE": 18.34172318, "OBJECTID_1": 22639, "PARCEL_NO_": "105702061900", "Tax_Legal_": "57T SMITH BAY No.1,2 & 3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 119700, "Improved_V": 43800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.994091849, "SHAPE_Area": 1000.30751639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365067.281400002539158, 256962.804800000041723 ], [ 365031.035099998116493, 256958.075100000947714 ], [ 365030.151500001549721, 256967.144900001585484 ], [ 365025.967100001871586, 256985.053599998354912 ], [ 365060.631300002336502, 256986.181699998676777 ], [ 365064.662900000810623, 256986.214699998497963 ], [ 365071.293200001120567, 256965.159600000828505 ], [ 365071.311200000345707, 256963.048799999058247 ], [ 365067.281400002539158, 256962.804800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701041400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-76", "ACRE": ".14", "LONGITUDE": -64.88232321, "LATITUDE": 18.34170498, "OBJECTID_1": 22047, "PARCEL_NO_": "105701041400", "Tax_Legal_": "ANNAS RETREAT 148-76 NEW QTR 1", "Name": "LAKE, FITZROY", "Address": "2819 Norcliff Dr", "City": "Fayetteville", "State": "North Carolina", "Zip": 28304, "Country": "United States", "Land_Value": 19200, "Improved_V": 45500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.033328125, "SHAPE_Area": 644.65982638399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363957.741499997675419, 256960.056499999016523 ], [ 363927.213100001215935, 256946.718899998813868 ], [ 363916.592600002884865, 256962.886100001633167 ], [ 363950.344499997794628, 256976.461300000548363 ], [ 363957.741499997675419, 256960.056499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87849416, "LATITUDE": 18.34165995, "OBJECTID_1": 22208, "PARCEL_NO_": "105701064800", "Tax_Legal_": "ANNAS RETREAT 173B-42 NEW QTR.", "Name": "PHILLIPS, Y. G. & M. M. & OTHERS", "Address": "PO Box 11885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.747818313, "SHAPE_Area": 734.08454842000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364342.855999998748302, 256937.167700000107288 ], [ 364340.948499999940395, 256938.706000000238419 ], [ 364328.769299998879433, 256948.527699999511242 ], [ 364336.580700002610683, 256978.144799999892712 ], [ 364351.090800002217293, 256978.685699999332428 ], [ 364354.358199998736382, 256978.807500001043081 ], [ 364354.393260470125824, 256973.026673908752855 ], [ 364354.022685110976454, 256967.257631228247192 ], [ 364353.2483000010252, 256961.528799999505281 ], [ 364352.861633067252114, 256957.706753695791122 ], [ 364352.008611368946731, 256953.961102450994076 ], [ 364350.70214350882452, 256950.348528438480571 ], [ 364348.961999997496605, 256946.923700001090765 ], [ 364342.855999998748302, 256937.167700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701063900", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-77", "ACRE": "0.43", "LONGITUDE": -64.87809151, "LATITUDE": 18.34161118, "OBJECTID_1": 22199, "PARCEL_NO_": "105701063900", "Tax_Legal_": "173B-77 ANNAS RETREAT NEW QUARTER", "Name": "CALFORD O CHARLESWELL FLASH REVOCABLE TRUST AGREEM", "Address": "173 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57000, "Improved_V": 423900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.520184607, "SHAPE_Area": 1597.2234239700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364411.275799997150898, 256918.383400000631809 ], [ 364358.525600001215935, 256957.848299998790026 ], [ 364359.297700002789497, 256961.86540000140667 ], [ 364359.161100000143051, 256977.907400000840425 ], [ 364397.89639999717474, 256974.424699999392033 ], [ 364411.275799997150898, 256918.383400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602051000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-68", "ACRE": ".13", "LONGITUDE": -64.88348933, "LATITUDE": 18.3416605, "OBJECTID_1": 21283, "PARCEL_NO_": "105602051000", "Tax_Legal_": "ANNAS RETREAT 148-68 NEW QTR", "Name": "FELIX, TITANIA", "Address": "PO Box 11715", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 103500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.246401359800004, "SHAPE_Area": 593.08976356699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363819.998800002038479, 256942.885999999940395 ], [ 363810.35360000282526, 256939.218499999493361 ], [ 363798.856600001454353, 256963.611299999058247 ], [ 363818.132600001990795, 256972.635000001639128 ], [ 363830.446699999272823, 256946.982299998402596 ], [ 363819.998800002038479, 256942.885999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701042300", "MAP": "G9-2749-T78", "PARCEL_NAM": "148-101", "ACRE": ".08", "LONGITUDE": -64.88192188, "LATITUDE": 18.34168341, "OBJECTID_1": 22055, "PARCEL_NO_": "105701042300", "Tax_Legal_": "148-101&102 ANNAS RETREAT NEW QUARTER", "Name": "SYLVESTER PATRICIA MURRELL JOSEPH FAMILY TRUST", "Address": "PO Box 10762", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26000, "Improved_V": 54000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.318556184100004, "SHAPE_Area": 378.62523042200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363993.26240000128746, 256955.280999999493361 ], [ 363973.169399999082088, 256947.517200000584126 ], [ 363966.594800002872944, 256962.028799999505281 ], [ 363988.273500002920628, 256972.971999999135733 ], [ 363989.14639999717474, 256965.168699998408556 ], [ 363993.26240000128746, 256955.280999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701046200", "MAP": "F9-3862-T80", "PARCEL_NAM": "1-2C&1-3A", "ACRE": "0.42", "LONGITUDE": -64.88081859, "LATITUDE": 18.34158774, "OBJECTID_1": 22089, "PARCEL_NO_": "105701046200", "Tax_Legal_": "ANNAS RETREAT 1-2C&1-3A NEW QTR", "Name": "ROGERS, KENNETH & ERNESTINE", "Address": "7760 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.251375193, "SHAPE_Area": 1518.10908393 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364118.431500002741814, 256933.929499998688698 ], [ 364098.354599997401237, 256924.265999998897314 ], [ 364072.286499999463558, 256955.29450000077486 ], [ 364066.582900002598763, 256962.213899999856949 ], [ 364088.270599998533726, 256972.101700000464916 ], [ 364094.699600003659725, 256974.687399998307228 ], [ 364095.828900001943111, 256975.230999998748302 ], [ 364127.266800001263618, 256938.012600000947714 ], [ 364124.052299998700619, 256936.719700001180172 ], [ 364118.431500002741814, 256933.929499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502041300", "MAP": "D9--6153-T95", "PARCEL_NAM": "17-2", "ACRE": ".7450", "LONGITUDE": -64.90696105000001, "LATITUDE": 18.34123868, "OBJECTID_1": 19919, "PARCEL_NO_": "105502041300", "Tax_Legal_": "17-2 ESTATE RAPHUNE No.5B NEW QTR.", "Name": "WILLIAMS, LISA", "Address": "PO Box 7458", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.98581168499999, "SHAPE_Area": 2466.8115996800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361366.834100000560284, 256870.667899999767542 ], [ 361344.386799998581409, 256855.285500001162291 ], [ 361304.386900000274181, 256881.428599998354912 ], [ 361306.987099997699261, 256891.287500001490116 ], [ 361307.764700002968311, 256894.671300001442432 ], [ 361307.739500001072884, 256897.626400001347065 ], [ 361311.681199997663498, 256908.21339999884367 ], [ 361321.015699997544289, 256928.96680000051856 ], [ 361368.195900000631809, 256880.121300000697374 ], [ 361362.766599997878075, 256874.856499999761581 ], [ 361366.834100000560284, 256870.667899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602052200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-88", "ACRE": ".16", "LONGITUDE": -64.88292963000001, "LATITUDE": 18.34159925, "OBJECTID_1": 21295, "PARCEL_NO_": "105602052200", "Tax_Legal_": "148-88 ANNAS RETREAT NEW QTR", "Name": "HODGE, IRA & ELEANOR", "Address": "7017 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 93900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.739552546, "SHAPE_Area": 700.82931820800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363882.973899997770786, 256933.691199999302626 ], [ 363870.879199996590614, 256933.592199999839067 ], [ 363863.640299998223782, 256931.421999998390675 ], [ 363860.183100000023842, 256958.624800000339746 ], [ 363867.416599996387959, 256961.428199999034405 ], [ 363886.706900000572205, 256968.763199999928474 ], [ 363882.973899997770786, 256933.691199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702051900", "MAP": "D9-360-T63", "PARCEL_NAM": "57H", "ACRE": "0.23", "LONGITUDE": -64.87426222000001, "LATITUDE": 18.3416561, "OBJECTID_1": 22610, "PARCEL_NO_": "105702051900", "Tax_Legal_": "SMITH BAY 57H 1 2 3 SMITH BAY", "Name": "ERMA A. & DONALD A. GEORGE REVOCABLE LIVING", "Address": "P O BOX 3251", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.74949046, "SHAPE_Area": 939.79899071099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364769.816899999976158, 256952.770799998193979 ], [ 364768.936800003051758, 256961.418400000780821 ], [ 364768.884700000286102, 256967.539700001478195 ], [ 364768.013599999248981, 256975.131900001317263 ], [ 364812.375200003385544, 256973.80629999935627 ], [ 364808.537900000810623, 256950.976799998432398 ], [ 364769.816899999976158, 256952.770799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064600", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-20", "ACRE": "0.23", "LONGITUDE": -64.87876128000001, "LATITUDE": 18.3415188, "OBJECTID_1": 22206, "PARCEL_NO_": "105701064600", "Tax_Legal_": "ANNAS RETREAT 173B-20 NEW QTR.", "Name": "CARL HENDERSON and DOREEN HENDERSON FAMILY REVOCABLE TRUST", "Address": "173B-20 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.97479473300001, "SHAPE_Area": 1420.2049682899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364324.85080000013113, 256914.111699998378754 ], [ 364323.403899997472763, 256915.764299999922514 ], [ 364284.317900002002716, 256960.407400000840425 ], [ 364285.910700000822544, 256962.742400001734495 ], [ 364293.928900003433228, 256968.085400000214577 ], [ 364299.558700002729893, 256969.820199999958277 ], [ 364303.595600001513958, 256969.219999998807907 ], [ 364328.769299998879433, 256948.527699999511242 ], [ 364340.948499999940395, 256938.706000000238419 ], [ 364342.855999998748302, 256937.167700000107288 ], [ 364336.738300003111362, 256927.714899998158216 ], [ 364324.85080000013113, 256914.111699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061400", "MAP": "F9-4025-T73", "PARCEL_NAM": "57X-6", "ACRE": "0.24", "LONGITUDE": -64.87317587, "LATITUDE": 18.3415981, "OBJECTID_1": 22635, "PARCEL_NO_": "105702061400", "Tax_Legal_": "57X-6 SMITH BAY No.1,2&3 EAST END QTR", "Name": "DALEY, STEPHEN", "Address": "1475 Sheridan Ave Apt 2G", "City": "Bronx", "State": "New York", "Zip": 10457, "Country": "United States", "Land_Value": 30200, "Improved_V": 2900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.72319811, "SHAPE_Area": 1121.41101858 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364922.04450000077486, 256973.437300000339746 ], [ 364923.179899998009205, 256934.816500000655651 ], [ 364918.296999998390675, 256940.053899999707937 ], [ 364890.022200003266335, 256946.155200000852346 ], [ 364879.326099999248981, 256971.187800001353025 ], [ 364922.04450000077486, 256973.437300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602050900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-67", "ACRE": ".13", "LONGITUDE": -64.88367513, "LATITUDE": 18.34158613, "OBJECTID_1": 21282, "PARCEL_NO_": "105602050900", "Tax_Legal_": "ANNAS RETREAT 148-67 NEW QTR", "Name": "ERLA C THOMAS and BEVERLY LESLIE", "Address": "7185 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 145600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.404686188699998, "SHAPE_Area": 558.79305961399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363795.085799999535084, 256932.971799999475479 ], [ 363791.07039999961853, 256931.039099998772144 ], [ 363779.580600000917912, 256954.587600000202656 ], [ 363798.856600001454353, 256963.611299999058247 ], [ 363810.35360000282526, 256939.218499999493361 ], [ 363795.085799999535084, 256932.971799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069400", "MAP": "D9-4926-T90", "PARCEL_NAM": "57X-52", "ACRE": ".25", "LONGITUDE": -64.872535, "LATITUDE": 18.34148527, "OBJECTID_1": 22728, "PARCEL_NO_": "105702069400", "Tax_Legal_": "57X-52 ESTATE SMITH BAY EASTEND QTR.", "Name": "FINCH, MALCOLM", "Address": "EAST SMITH BAY 6508", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30900, "Improved_V": 102800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.11522724299999, "SHAPE_Area": 1036.9862729900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364982.634800001978874, 256960.212099999189377 ], [ 364986.264700002968311, 256912.745799999684095 ], [ 364958.621699996292591, 256939.328400000929832 ], [ 364959.955600000917912, 256972.058800000697374 ], [ 364980.163699999451637, 256966.3136 ], [ 364979.387999996542931, 256962.718699999153614 ], [ 364981.810500003397465, 256962.316300000995398 ], [ 364982.634800001978874, 256960.212099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701041300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-86", "ACRE": null, "LONGITUDE": -64.88252843, "LATITUDE": 18.34150613, "OBJECTID_1": 22046, "PARCEL_NO_": "105701041300", "Tax_Legal_": "148-86 ANNAS RETREAT NEW QUARTER", "Name": "MAGRAS-PARKER, EURITA (LIFE ESTATE)", "Address": "PO Box 303418", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26700, "Improved_V": 128100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.394578086, "SHAPE_Area": 834.52643294100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363936.201300002634525, 256932.860199999064207 ], [ 363911.30629999935627, 256920.835200000554323 ], [ 363906.430600002408028, 256925.228300001472235 ], [ 363898.329800002276897, 256929.594999998807907 ], [ 363912.573700003325939, 256961.375599998980761 ], [ 363916.592600002884865, 256962.886100001633167 ], [ 363927.213100001215935, 256946.718899998813868 ], [ 363936.201300002634525, 256932.860199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702062600", "MAP": "F9-3214-T74", "PARCEL_NAM": "57X-9", "ACRE": ".23", "LONGITUDE": -64.87229006, "LATITUDE": 18.34147485, "OBJECTID_1": 22671, "PARCEL_NO_": "105702062600", "Tax_Legal_": "SMITH BAY 57X-9 EAST END QTR", "Name": "DORE (TRUSTEE), ADINA I.", "Address": "6524 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 137000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.44994703899999, "SHAPE_Area": 1325.1453823500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365024.512699998915195, 256966.465500000864267 ], [ 365014.041400000452995, 256965.113200001418591 ], [ 365006.341499999165535, 256922.409299999475479 ], [ 364986.264700002968311, 256912.745799999684095 ], [ 364982.634800001978874, 256960.212099999189377 ], [ 364989.893399998545647, 256960.060400001704693 ], [ 364990.640399999916553, 256967.032600000500679 ], [ 365022.853299997746944, 256971.94029999896884 ], [ 365023.69200000166893, 256968.14750000089407 ], [ 365024.512699998915195, 256966.465500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701060700", "MAP": "D9-2501-T83", "PARCEL_NAM": "173B-33", "ACRE": "0.23", "LONGITUDE": -64.8799248, "LATITUDE": 18.34153985, "OBJECTID_1": 22169, "PARCEL_NO_": "105701060700", "Tax_Legal_": "ANNAS RETREAT 173B-33 NEW QTR.", "Name": "WEEKES, INGRID", "Address": "820 Colgate Ave", "City": "Bronx", "State": "New York", "Zip": 10473, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.278835535, "SHAPE_Area": 846.78244649500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364213.472099997103214, 256946.950800001621246 ], [ 364187.04900000244379, 256924.991900000721216 ], [ 364180.519299998879433, 256934.226599998772144 ], [ 364169.94200000166893, 256945.328000001609325 ], [ 364193.967699997127056, 256964.734099999070168 ], [ 364213.472099997103214, 256946.950800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105602060200", "MAP": "G9-2748-T78", "PARCEL_NAM": "405", "ACRE": null, "LONGITUDE": -64.88747184, "LATITUDE": 18.34118194, "OBJECTID_1": 21311, "PARCEL_NO_": "105602060200", "Tax_Legal_": "405 ANNAS RETREAT NEW QTR", "Name": "TJJ-VI LLC", "Address": "4005 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 325100, "Improved_V": 630700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.96947482600001, "SHAPE_Area": 5364.3220597400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363366.68860000371933, 256863.604400001466274 ], [ 363336.459399998188019, 256909.797600001096725 ], [ 363408.57320000231266, 256941.931200001388788 ], [ 363446.604900002479553, 256895.418600000441074 ], [ 363440.782999999821186, 256874.343299999833107 ], [ 363366.68860000371933, 256863.604400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701058700", "MAP": "D9-5032-T90", "PARCEL_NAM": "57A-3A", "ACRE": ".0726", "LONGITUDE": -64.87459871, "LATITUDE": 18.34163061, "OBJECTID_1": 22161, "PARCEL_NO_": "105701058700", "Tax_Legal_": "SMITH BAY 57A-3A EASTEND QUARTER", "Name": "FRANCIS, GLENN", "Address": "57A-3A SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.067554825000002, "SHAPE_Area": 174.462242661 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364768.936800003051758, 256961.418400000780821 ], [ 364746.413999997079372, 256954.901299998164177 ], [ 364739.97070000320673, 256954.004200000315905 ], [ 364739.112300001084805, 256960.118900001049042 ], [ 364747.170000001788139, 256960.81810000166297 ], [ 364768.884700000286102, 256967.539700001478195 ], [ 364768.936800003051758, 256961.418400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701042200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-77", "ACRE": null, "LONGITUDE": -64.88224765, "LATITUDE": 18.34156803, "OBJECTID_1": 22054, "PARCEL_NO_": "105701042200", "Tax_Legal_": "ANNAS RET 148-77 NEW QTR", "Name": "TURNBULL, OPHEMA & RECOLDO", "Address": "7172 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 125900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.137622183700003, "SHAPE_Area": 497.09204903300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363963.502599999308586, 256946.382599998265505 ], [ 363936.201300002634525, 256932.860199999064207 ], [ 363927.213100001215935, 256946.718899998813868 ], [ 363957.741499997675419, 256960.056499999016523 ], [ 363963.502599999308586, 256946.382599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105602060200", "MAP": "B9-418-T73", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.88733151, "LATITUDE": 18.34087047, "OBJECTID_1": 21311, "PARCEL_NO_": "105602060200", "Tax_Legal_": "405 ANNAS RETREAT NEW QTR", "Name": "TJJ-VI LLC", "Address": "4005 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 325100, "Improved_V": 630700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.86590269600001, "SHAPE_Area": 688.99459058599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363440.782999999821186, 256874.343299999833107 ], [ 363445.784500002861023, 256855.174800001084805 ], [ 363432.80799999833107, 256863.934500001370907 ], [ 363371.589400000870228, 256856.256299998611212 ], [ 363366.68860000371933, 256863.604400001466274 ], [ 363440.782999999821186, 256874.343299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602052100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-89", "ACRE": ".14", "LONGITUDE": -64.88313026, "LATITUDE": 18.34153765, "OBJECTID_1": 21294, "PARCEL_NO_": "105602052100", "Tax_Legal_": "ANNAS RETREAT 148-89 NEW QTR", "Name": "THOMAS, DANIEL & PEARLINE", "Address": "5A Goldthwaite Rd", "City": "Worcester", "State": "Massachusetts", "Zip": 1605, "Country": "United States", "Land_Value": 19200, "Improved_V": 148400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.087779604100007, "SHAPE_Area": 511.64327249500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363863.640299998223782, 256931.421999998390675 ], [ 363847.555399999022484, 256926.435199998319149 ], [ 363839.287299998104572, 256950.432199999690056 ], [ 363846.52080000191927, 256953.235599998384714 ], [ 363860.183100000023842, 256958.624800000339746 ], [ 363863.640299998223782, 256931.421999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064400", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-19", "ACRE": "0.24", "LONGITUDE": -64.87893171, "LATITUDE": 18.34138591, "OBJECTID_1": 22204, "PARCEL_NO_": "105701064400", "Tax_Legal_": "ANNAS RETREAT 173B-19 No.1 NEW QUARTER", "Name": "JOSEPH, VELMA", "Address": "1705 Walker Ave", "City": "Union", "State": "New Jersey", "Zip": 7083, "Country": "United States", "Land_Value": 31800, "Improved_V": 174200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.57446557599999, "SHAPE_Area": 1341.71486338 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364301.249399997293949, 256903.067299999296665 ], [ 364299.29900000244379, 256905.645599998533726 ], [ 364269.939099997282028, 256944.457699999213219 ], [ 364276.3429000005126, 256949.998500000685453 ], [ 364284.317900002002716, 256960.407400000840425 ], [ 364323.403899997472763, 256915.764299999922514 ], [ 364324.85080000013113, 256914.111699998378754 ], [ 364323.403200000524521, 256912.474899999797344 ], [ 364320.152047060313635, 256909.975072514032945 ], [ 364316.626766698260326, 256907.879474444605876 ], [ 364312.877358280762564, 256906.21782784620882 ], [ 364308.957000002264977, 256905.013700000941753 ], [ 364305.053901826962829, 256904.235717117175227 ], [ 364301.249399997293949, 256903.067299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602050800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-66", "ACRE": ".13", "LONGITUDE": -64.88384938, "LATITUDE": 18.34151132, "OBJECTID_1": 21281, "PARCEL_NO_": "105602050800", "Tax_Legal_": "ANNAS RETREAT 148-66 NEW QTR", "Name": "Sylvanie Victoria Dawson & Tiffany M Challenger", "Address": "PO Box 5733", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 17800, "Improved_V": 164400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.864894249000002, "SHAPE_Area": 502.02598655700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363776.61429999768734, 256924.165800001472235 ], [ 363774.206200003623962, 256922.879599999636412 ], [ 363761.911899998784065, 256946.210299998521805 ], [ 363779.580600000917912, 256954.587600000202656 ], [ 363791.07039999961853, 256931.039099998772144 ], [ 363776.61429999768734, 256924.165800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701042300", "MAP": "G9-2749-T78", "PARCEL_NAM": "148-102", "ACRE": ".09", "LONGITUDE": -64.88185487, "LATITUDE": 18.34153822, "OBJECTID_1": 22055, "PARCEL_NO_": "105701042300", "Tax_Legal_": "148-101&102 ANNAS RETREAT NEW QUARTER", "Name": "SYLVESTER PATRICIA MURRELL JOSEPH FAMILY TRUST", "Address": "PO Box 10762", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26000, "Improved_V": 54000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.564937139400001, "SHAPE_Area": 393.859864206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364003.060500003397465, 256941.006799999624491 ], [ 363981.369199998676777, 256931.541200000792742 ], [ 363978.100699998438358, 256936.580699998885393 ], [ 363973.169399999082088, 256947.517200000584126 ], [ 363993.26240000128746, 256955.280999999493361 ], [ 363998.170400001108646, 256947.088500000536442 ], [ 364003.060500003397465, 256941.006799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701063700", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-76", "ACRE": "0.39", "LONGITUDE": -64.87817928, "LATITUDE": 18.34137598, "OBJECTID_1": 22197, "PARCEL_NO_": "105701063700", "Tax_Legal_": "ANNAS RETREAT 173B-76 NEW QTR.", "Name": "BELLE, JOHN", "Address": "PO Box 10103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51700, "Improved_V": 322300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.45148309300001, "SHAPE_Area": 1478.84881208 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364390.392499998211861, 256908.713199999183416 ], [ 364383.164499998092651, 256905.276599999517202 ], [ 364346.635899998247623, 256933.686299998313189 ], [ 364354.600100003182888, 256945.361699998378754 ], [ 364356.972300000488758, 256950.869500000029802 ], [ 364358.525600001215935, 256957.848299998790026 ], [ 364411.275799997150898, 256918.383400000631809 ], [ 364390.392499998211861, 256908.713199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701043200", "MAP": "D9-48-T54", "PARCEL_NAM": "10", "ACRE": "0.53", "LONGITUDE": -64.88110039, "LATITUDE": 18.34134707, "OBJECTID_1": 22062, "PARCEL_NO_": "105701043200", "Tax_Legal_": "1O ANNAS RETREAT NEW QUARTER", "Name": "ROGERS, K. & TODMAN, E", "Address": "7760 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85700, "Improved_V": 130700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.84024549599999, "SHAPE_Area": 2197.7169034 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364101.612199999392033, 256920.493000000715256 ], [ 364063.961900003254414, 256891.265000000596046 ], [ 364060.675499998033047, 256898.415300000458956 ], [ 364055.792700000107288, 256903.652699999511242 ], [ 364039.585500001907349, 256913.019200000911951 ], [ 364030.649499997496605, 256920.756499998271465 ], [ 364072.286499999463558, 256955.29450000077486 ], [ 364098.354599997401237, 256924.265999998897314 ], [ 364101.612199999392033, 256920.493000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035100", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-17", "ACRE": ".23", "LONGITUDE": -64.87611675, "LATITUDE": 18.34148644, "OBJECTID_1": 21997, "PARCEL_NO_": "105701035100", "Tax_Legal_": "20-21-17 SMITH BAY EAST END QTR.", "Name": "GRAHAM, AVRIL J.", "Address": "PO Box 502463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 35900, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.52530079900001, "SHAPE_Area": 1348.29668373 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364615.741099998354912, 256959.742400001734495 ], [ 364616.595899999141693, 256954.049899999052286 ], [ 364616.791900001466274, 256931.042300000786781 ], [ 364617.623400002717972, 256928.093800000846386 ], [ 364572.462700001895428, 256928.568500000983477 ], [ 364569.923299998044968, 256942.690999999642372 ], [ 364565.796400003135204, 256953.845199998468161 ], [ 364579.491200000047684, 256955.434900000691414 ], [ 364615.741099998354912, 256959.742400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87177417, "LATITUDE": 18.34149687, "OBJECTID_1": 22638, "PARCEL_NO_": "105702061800", "Tax_Legal_": "SMITH BAY 57-116 1,2&3 EAST END QTR", "Name": "RAYNE, RUPERT & MARGARET", "Address": "6553 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29700, "Improved_V": 100100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.66401625899999, "SHAPE_Area": 1080.6474140600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365073.135999999940395, 256938.154699999839067 ], [ 365032.055399999022484, 256932.96339999884367 ], [ 365031.035099998116493, 256958.075100000947714 ], [ 365067.281400002539158, 256962.804800000041723 ], [ 365071.311200000345707, 256963.048799999058247 ], [ 365077.156800001859665, 256939.454199999570847 ], [ 365073.135999999940395, 256938.154699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035300", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-8", "ACRE": ".50", "LONGITUDE": -64.87666776, "LATITUDE": 18.34142585, "OBJECTID_1": 21999, "PARCEL_NO_": "105701035300", "Tax_Legal_": "SMITH BAY 20-21-8 EAST END QTR.", "Name": "CHRISTOPHER, ANTONIO & LILLIAN", "Address": "6758 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 223700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.489486629, "SHAPE_Area": 2246.0048569599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364566.044600002467632, 256924.716299999505281 ], [ 364520.230400003492832, 256907.242800001055002 ], [ 364504.653399996459484, 256937.301699999719858 ], [ 364501.036399997770786, 256944.308100000023842 ], [ 364551.665700003504753, 256963.707100000232458 ], [ 364556.901799999177456, 256956.727699998766184 ], [ 364561.815200001001358, 256947.901999998837709 ], [ 364564.300700001418591, 256940.111900001764297 ], [ 364566.044600002467632, 256924.716299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602052000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-90", "ACRE": ".13", "LONGITUDE": -64.8833102, "LATITUDE": 18.34147142, "OBJECTID_1": 21293, "PARCEL_NO_": "105602052000", "Tax_Legal_": "148-90 ANNAS RETREAT NEW QTR", "Name": "JOSEPH, SR. , ALBERT & OTHERS", "Address": "P.O. BOX 5187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 57300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.614766331699997, "SHAPE_Area": 520.491543611 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363847.555399999022484, 256926.435199998319149 ], [ 363827.453400000929832, 256919.726799998432398 ], [ 363819.998800002038479, 256942.885999999940395 ], [ 363830.446699999272823, 256946.982299998402596 ], [ 363839.287299998104572, 256950.432199999690056 ], [ 363847.555399999022484, 256926.435199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701047300", "MAP": "D9-2341-T83", "PARCEL_NAM": "1-3B", "ACRE": ".094", "LONGITUDE": -64.88034153, "LATITUDE": 18.34148797, "OBJECTID_1": 22100, "PARCEL_NO_": "105701047300", "Tax_Legal_": "ANNAS RETREAT 1-4 & 1-3B NEW QTR.", "Name": "MATTHEW, CHARLES E. & WESTON C.", "Address": "Bovoni Bldg D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.910236953699993, "SHAPE_Area": 407.986994756 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364168.354500003159046, 256942.359700001776218 ], [ 364135.417999997735023, 256927.735700000077486 ], [ 364127.266800001263618, 256938.012600000947714 ], [ 364161.029399998486042, 256950.321299999952316 ], [ 364166.72749999910593, 256944.035100001841784 ], [ 364168.354500003159046, 256942.359700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602050700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-65", "ACRE": ".14", "LONGITUDE": -64.88403403, "LATITUDE": 18.34142599, "OBJECTID_1": 21280, "PARCEL_NO_": "105602050700", "Tax_Legal_": "EST ANNAS RETRT 148-65 NEW QTR", "Name": "LANCLOS, HENRY U", "Address": "7187 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 4900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.60293877, "SHAPE_Area": 644.14940123700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363757.345600001513958, 256914.297800000756979 ], [ 363752.527500003576279, 256911.936299998313189 ], [ 363740.227799996733665, 256935.900299999862909 ], [ 363761.911899998784065, 256946.210299998521805 ], [ 363774.206200003623962, 256922.879599999636412 ], [ 363757.345600001513958, 256914.297800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105602047700", "MAP": null, "PARCEL_NAM": "147", "ACRE": null, "LONGITUDE": -64.88845249000001, "LATITUDE": 18.34121356, "OBJECTID_1": 21253, "PARCEL_NO_": "105602047700", "Tax_Legal_": "147 ANNAS RETREAT NEW QTR", "Name": "METH MISS TRST ASSN", "Address": "PO Box 1045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 328900, "Improved_V": 1281900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.38855929499999, "SHAPE_Area": 4049.66122 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363264.420699998736382, 256941.716400001198053 ], [ 363305.614600002765656, 256933.6097999997437 ], [ 363321.137699998915195, 256909.883299998939037 ], [ 363340.721199996769428, 256882.8125 ], [ 363255.392300002276897, 256865.648800000548363 ], [ 363264.420699998736382, 256941.716400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701041700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-78", "ACRE": ".13", "LONGITUDE": -64.88217232, "LATITUDE": 18.3414381, "OBJECTID_1": 22049, "PARCEL_NO_": "105701041700", "Tax_Legal_": "ANNAS RETRT 148-78 NEW QTR", "Name": "ALEJANDRO, TOMAS M.", "Address": "PO Box 503084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17800, "Improved_V": 30000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.272505690900005, "SHAPE_Area": 505.34570337700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363970.887100003659725, 256931.455400001257658 ], [ 363946.004699997603893, 256917.952799998223782 ], [ 363936.201300002634525, 256932.860199999064207 ], [ 363963.502599999308586, 256946.382599998265505 ], [ 363970.887100003659725, 256931.455400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060900", "MAP": "D9-360-T63", "PARCEL_NAM": "57K", "ACRE": "0.26", "LONGITUDE": -64.87387743, "LATITUDE": 18.34141194, "OBJECTID_1": 22630, "PARCEL_NO_": "105702060900", "Tax_Legal_": "SMITH BAY 57K REMAINDER EASTEND QTR.", "Name": "BRATHWAITE, YVONNE", "Address": "PO Box 502704", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.24674222599999, "SHAPE_Area": 939.37444384200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364841.859200000762939, 256920.429800000041723 ], [ 364812.821199998259544, 256921.458700001239777 ], [ 364815.942100003361702, 256933.727699998766184 ], [ 364816.590199999511242, 256952.309200000017881 ], [ 364849.659800000488758, 256951.313299998641014 ], [ 364841.859200000762939, 256920.429800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701060800", "MAP": "D9-2501-T83", "PARCEL_NAM": "173B-34", "ACRE": "0.23", "LONGITUDE": -64.87978651, "LATITUDE": 18.34140743, "OBJECTID_1": 22170, "PARCEL_NO_": "105701060800", "Tax_Legal_": "ANNAS RETREAT 173B-34 NEW QTR.", "Name": "HODGE, ETHEL & OTHERS", "Address": "3263 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.58006815900001, "SHAPE_Area": 537.85559150699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364226.473800003528595, 256935.236000001430511 ], [ 364194.393899999558926, 256914.708399999886751 ], [ 364187.04900000244379, 256924.991900000721216 ], [ 364213.472099997103214, 256946.950800001621246 ], [ 364226.473800003528595, 256935.236000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602051900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-91", "ACRE": ".13", "LONGITUDE": -64.88351168, "LATITUDE": 18.34140508, "OBJECTID_1": 21292, "PARCEL_NO_": "105602051900", "Tax_Legal_": "148-91 ANNAS RETREAT NEW QTR", "Name": "RALPH, DAWN & OTHERS", "Address": "PO Box 70033", "City": "Richmond", "State": "Virginia", "Zip": 23255, "Country": "United States", "Land_Value": 19200, "Improved_V": 102000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.934018746299998, "SHAPE_Area": 584.23606574099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363827.453400000929832, 256919.726799998432398 ], [ 363808.168399997055531, 256911.758499998599291 ], [ 363795.085799999535084, 256932.971799999475479 ], [ 363810.35360000282526, 256939.218499999493361 ], [ 363819.998800002038479, 256942.885999999940395 ], [ 363827.453400000929832, 256919.726799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064200", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-18", "ACRE": "0.24", "LONGITUDE": -64.87912164, "LATITUDE": 18.34129088, "OBJECTID_1": 22202, "PARCEL_NO_": "105701064200", "Tax_Legal_": "ANNAS RETREAT 173B-18 NEW QTR.", "Name": "CAESER, BENEDICT & CECELIA", "Address": "Est Thomasville", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34600, "Improved_V": 269700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.67977589500001, "SHAPE_Area": 1038.3346268800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364286.925599999725819, 256892.16609999909997 ], [ 364285.694200001657009, 256893.502000000327826 ], [ 364251.510799996554852, 256930.585700001567602 ], [ 364258.729900002479553, 256935.077799998223782 ], [ 364269.939099997282028, 256944.457699999213219 ], [ 364299.29900000244379, 256905.645599998533726 ], [ 364301.249399997293949, 256903.067299999296665 ], [ 364296.188425535568967, 256900.81296321877744 ], [ 364291.494400002062321, 256897.869899999350309 ], [ 364289.066958235460334, 256895.132577862794278 ], [ 364286.925599999725819, 256892.16609999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701013700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-103", "ACRE": ".14", "LONGITUDE": -64.88176453, "LATITUDE": 18.34139698, "OBJECTID_1": 21870, "PARCEL_NO_": "105701013700", "Tax_Legal_": "148-103&104 ANNAS RETREAT NEW QTR", "Name": "LINDO, ALBERT, OLIVE, PHILLIP, CA", "Address": "PO Box 304522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35100, "Improved_V": 224600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.995491627899995, "SHAPE_Area": 481.63900435099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364014.108300000429153, 256928.106199998408556 ], [ 363991.331799998879433, 256913.118500001728535 ], [ 363986.291500002145767, 256921.660100001841784 ], [ 363981.369199998676777, 256931.541200000792742 ], [ 364003.060500003397465, 256941.006799999624491 ], [ 364004.682099997997284, 256939.964600000530481 ], [ 364009.579300001263618, 256933.038600001484156 ], [ 364014.108300000429153, 256928.106199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701047300", "MAP": "D9-2341-T83", "PARCEL_NAM": "1-4", "ACRE": ".192", "LONGITUDE": -64.88022016, "LATITUDE": 18.34137223, "OBJECTID_1": 22100, "PARCEL_NO_": "105701047300", "Tax_Legal_": "ANNAS RETREAT 1-4 & 1-3B NEW QTR.", "Name": "MATTHEW, CHARLES E. & WESTON C.", "Address": "Bovoni Bldg D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.785548194, "SHAPE_Area": 802.86711831399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364184.642599999904633, 256923.494600001722574 ], [ 364154.096199996769428, 256912.267700001597404 ], [ 364145.172899998724461, 256918.527499999850988 ], [ 364144.382700003683567, 256916.621199999004602 ], [ 364135.417999997735023, 256927.735700000077486 ], [ 364168.354500003159046, 256942.359700001776218 ], [ 364176.489600002765656, 256933.982500001788139 ], [ 364184.642599999904633, 256923.494600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702064300", "MAP": "F9-3513-T77", "PARCEL_NAM": "57X-24", "ACRE": "0.25", "LONGITUDE": -64.87313127, "LATITUDE": 18.34131897, "OBJECTID_1": 22688, "PARCEL_NO_": "105702064300", "Tax_Legal_": "SMITH BAY 57X-24 EAST END QTR", "Name": "HOLDER FOWLER, JULIETTE", "Address": "PO Box 502813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39000, "Improved_V": 96400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.16783078700001, "SHAPE_Area": 866.45307708899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364924.959700003266335, 256915.199299998581409 ], [ 364925.6503000035882, 256904.393800001591444 ], [ 364920.896899998188019, 256909.741300001740456 ], [ 364899.412299998104572, 256913.060100000351667 ], [ 364899.111000001430511, 256920.476199999451637 ], [ 364890.022200003266335, 256946.155200000852346 ], [ 364918.296999998390675, 256940.053899999707937 ], [ 364923.179899998009205, 256934.816500000655651 ], [ 364924.959700003266335, 256915.199299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602050600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-64", "ACRE": ".14", "LONGITUDE": -64.88422316, "LATITUDE": 18.34133912, "OBJECTID_1": 21279, "PARCEL_NO_": "105602050600", "Tax_Legal_": "ANNAS RETREAT 148-64 NEW QTR", "Name": "TODMAN, MABEL & RONALD", "Address": "PO Box 502665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 98900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.351943681600005, "SHAPE_Area": 545.7701206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363738.075000002980232, 256904.640900000929832 ], [ 363734.864100001752377, 256902.925900001078844 ], [ 363721.76349999755621, 256926.25 ], [ 363729.790700003504753, 256930.537599999457598 ], [ 363740.227799996733665, 256935.900299999862909 ], [ 363752.527500003576279, 256911.936299998313189 ], [ 363738.075000002980232, 256904.640900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602051800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-92", "ACRE": ".13", "LONGITUDE": -64.88370196, "LATITUDE": 18.34132197, "OBJECTID_1": 21291, "PARCEL_NO_": "105602051800", "Tax_Legal_": "ANNAS RETREAT 148-92 NEW QTR", "Name": "CHALLENGER, LLEWELLYN & A", "Address": "P.O. BOX 2276", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.772604365999996, "SHAPE_Area": 506.877676076 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363808.168399997055531, 256911.758499998599291 ], [ 363789.696999996900558, 256902.952399998903275 ], [ 363776.61429999768734, 256924.165800001472235 ], [ 363791.07039999961853, 256931.039099998772144 ], [ 363795.085799999535084, 256932.971799999475479 ], [ 363808.168399997055531, 256911.758499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701041800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-85", "ACRE": ".13", "LONGITUDE": -64.88240603, "LATITUDE": 18.3413254, "OBJECTID_1": 22050, "PARCEL_NO_": "105701041800", "Tax_Legal_": "ANNAS RETREAT 148-85 NEW QTR", "Name": "BRATHWAITE, LIONEL & ELMINA", "Address": "PO Box 502234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20500, "Improved_V": 143400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.667738014199998, "SHAPE_Area": 476.57958564900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363946.004699997603893, 256917.952799998223782 ], [ 363923.5304000005126, 256905.736600000411272 ], [ 363916.993600003421307, 256915.815499998629093 ], [ 363911.30629999935627, 256920.835200000554323 ], [ 363936.201300002634525, 256932.860199999064207 ], [ 363946.004699997603893, 256917.952799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701060900", "MAP": "D9-2501-T83", "PARCEL_NAM": "173B-35", "ACRE": "0.23", "LONGITUDE": -64.87969549, "LATITUDE": 18.34122475, "OBJECTID_1": 22171, "PARCEL_NO_": "105701060900", "Tax_Legal_": "ANNAS RETREAT 173B-35 NEW QTR.", "Name": "BUCKLEY, MARCIA T. & JOHNELA A. DICKENSON", "Address": "PO Box 302693", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37800, "Improved_V": 263200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.86667806400001, "SHAPE_Area": 1150.09003785 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364226.473800003528595, 256935.236000001430511 ], [ 364233.789899997413158, 256928.329799998551607 ], [ 364234.671700000762939, 256919.471099998801947 ], [ 364231.523800000548363, 256910.368299998342991 ], [ 364220.38289999961853, 256892.967399999499321 ], [ 364214.03490000218153, 256880.883099999278784 ], [ 364199.334299996495247, 256902.716499999165535 ], [ 364195.252300001680851, 256908.593800000846386 ], [ 364196.859600000083447, 256909.240200001746416 ], [ 364196.829000003635883, 256912.828499998897314 ], [ 364194.393899999558926, 256914.708399999886751 ], [ 364226.473800003528595, 256935.236000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701013700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-104", "ACRE": ".15", "LONGITUDE": -64.88166254, "LATITUDE": 18.34126135, "OBJECTID_1": 21870, "PARCEL_NO_": "105701013700", "Tax_Legal_": "148-103&104 ANNAS RETREAT NEW QTR", "Name": "LINDO, ALBERT, OLIVE, PHILLIP, CA", "Address": "PO Box 304522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35100, "Improved_V": 224600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.296788359299995, "SHAPE_Area": 521.90402092199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363991.331799998879433, 256913.118500001728535 ], [ 364014.108300000429153, 256928.106199998408556 ], [ 364020.160300001502037, 256921.515099998563528 ], [ 364025.845799997448921, 256916.706500001251698 ], [ 364002.631800003349781, 256896.673700001090765 ], [ 363994.473300002515316, 256907.794799998402596 ], [ 363991.331799998879433, 256913.118500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701042600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-79", "ACRE": ".13", "LONGITUDE": -64.88208296000001, "LATITUDE": 18.34129007, "OBJECTID_1": 22057, "PARCEL_NO_": "105701042600", "Tax_Legal_": "ANNAS RETREAT ESTATE 148-79 NEW QTR.", "Name": "WILTSHIRE, BERNICE", "Address": "7168 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 90100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.418016117799993, "SHAPE_Area": 560.06700777499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363980.715700000524521, 256913.5929000005126 ], [ 363957.442299999296665, 256900.525699999183416 ], [ 363946.004699997603893, 256917.952799998223782 ], [ 363970.887100003659725, 256931.455400001257658 ], [ 363973.354599997401237, 256925.776000000536442 ], [ 363975.800499998033047, 256922.629700001329184 ], [ 363976.631999999284744, 256919.681200001388788 ], [ 363980.715700000524521, 256913.5929000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069100", "MAP": "D9-4926-T90", "PARCEL_NAM": "57X-51", "ACRE": ".22", "LONGITUDE": -64.87250804, "LATITUDE": 18.34114001, "OBJECTID_1": 22725, "PARCEL_NO_": "105702069100", "Tax_Legal_": "57X-48 SMITH BAY EAST END QTR.", "Name": "HENRY, SAMUEL A", "Address": "57X-48 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 1300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.81405608099999, "SHAPE_Area": 668.06375208300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364986.500200003385544, 256885.094500001519918 ], [ 364972.771300002932549, 256887.5152000002563 ], [ 364971.077799998223782, 256897.000599998980761 ], [ 364961.906300000846386, 256932.389199998229742 ], [ 364958.621699996292591, 256939.328400000929832 ], [ 364986.264700002968311, 256912.745799999684095 ], [ 364986.500200003385544, 256885.094500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701063500", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-75", "ACRE": "0.23", "LONGITUDE": -64.87836921, "LATITUDE": 18.34122944, "OBJECTID_1": 22195, "PARCEL_NO_": "105701063500", "Tax_Legal_": "ANNAS RETREAT 173B-75 NEW QTR.", "Name": "ROGERS, HORACE & JENNY", "Address": "229 Arlington Ave", "City": "Jersey City", "State": "New Jersey", "Zip": 73054436, "Country": "United States", "Land_Value": 30500, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.09925396400001, "SHAPE_Area": 923.97113969199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364365.494000002741814, 256897.110399998724461 ], [ 364359.068599998950958, 256894.10249999910593 ], [ 364333.077799998223782, 256916.05460000038147 ], [ 364346.635899998247623, 256933.686299998313189 ], [ 364383.164499998092651, 256905.276599999517202 ], [ 364365.494000002741814, 256897.110399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90702706, "LATITUDE": 18.34087744, "OBJECTID_1": 19911, "PARCEL_NO_": "105502040500", "Tax_Legal_": "RAPHUNE ESTATE 2A 5B NEW QTR", "Name": "WILLIAMS, IRENE & LLOYD L.", "Address": "PO Box 7458", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.92329488499999, "SHAPE_Area": 1874.60743411 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361352.226999998092651, 256851.361999999731779 ], [ 361353.738200001418591, 256810.9222999997437 ], [ 361348.258299998939037, 256815.018399998545647 ], [ 361318.187799997627735, 256837.495400000363588 ], [ 361296.980599999427795, 256853.347300000488758 ], [ 361304.386900000274181, 256881.428599998354912 ], [ 361344.386799998581409, 256855.285500001162291 ], [ 361352.226999998092651, 256851.361999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702081700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87177689000001, "LATITUDE": 18.3413145, "OBJECTID_1": 22759, "PARCEL_NO_": "105702081700", "Tax_Legal_": "SMITH BAY 57Y-5 EASTEND QTR.", "Name": "HUGHES, RICHARD & ERNESTINE", "Address": "6502 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27000, "Improved_V": 40300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.85665528000001, "SHAPE_Area": 810.10345729200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365074.894299998879433, 256921.070500001311302 ], [ 365018.457800000905991, 256919.975400000810623 ], [ 365018.438000001013279, 256922.297200001776218 ], [ 365032.055399999022484, 256932.96339999884367 ], [ 365073.135999999940395, 256938.154699999839067 ], [ 365077.156800001859665, 256939.454199999570847 ], [ 365079.730400003492832, 256921.321199998259544 ], [ 365074.894299998879433, 256921.070500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602050500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-63", "ACRE": ".14", "LONGITUDE": -64.88438851, "LATITUDE": 18.34125676, "OBJECTID_1": 21278, "PARCEL_NO_": "105602050500", "Tax_Legal_": "ANNAS RETREAT 148-63 NEW QTR", "Name": "JULIUS AMILCA and FLEURETTE PAYOUTE", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021736, "Country": "United States", "Land_Value": 19200, "Improved_V": 121300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.357953711899995, "SHAPE_Area": 507.13226815100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363722.018899999558926, 256896.276799999177456 ], [ 363718.005300000309944, 256894.133000001311302 ], [ 363704.908299997448921, 256917.035000000149012 ], [ 363721.76349999755621, 256926.25 ], [ 363734.864100001752377, 256902.925900001078844 ], [ 363722.018899999558926, 256896.276799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701064000", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-17", "ACRE": "0.28", "LONGITUDE": -64.87925302, "LATITUDE": 18.34115118, "OBJECTID_1": 22200, "PARCEL_NO_": "105701064000", "Tax_Legal_": "173B-17 ANNAS RETREAT NEW QUARTER", "Name": "LEWIS (LIFE ESTATE), MARY A", "Address": "6128 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34600, "Improved_V": 179800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.30109819200001, "SHAPE_Area": 1117.1568055099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364274.706699997186661, 256880.854400001466274 ], [ 364271.035099998116493, 256878.002099998295307 ], [ 364241.206799998879433, 256909.603199999779463 ], [ 364245.890000000596046, 256927.795499999076128 ], [ 364251.510799996554852, 256930.585700001567602 ], [ 364285.694200001657009, 256893.502000000327826 ], [ 364286.925599999725819, 256892.16609999909997 ], [ 364285.027021978108678, 256888.873596614168491 ], [ 364283.480939478671644, 256885.401593453338137 ], [ 364282.304099999368191, 256881.78770000115037 ], [ 364282.248400002717972, 256880.854400001466274 ], [ 364274.706699997186661, 256880.854400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602052700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-57", "ACRE": ".17", "LONGITUDE": -64.88291002, "LATITUDE": 18.34122248, "OBJECTID_1": 21300, "PARCEL_NO_": "105602052700", "Tax_Legal_": "148-57 ANNAS RETREAT NEW QTR", "Name": "GEORGE, AURELIA", "Address": "7018 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 163000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.67780663800001, "SHAPE_Area": 893.84484183300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363888.986699998378754, 256890.4662000015378 ], [ 363871.298100002110004, 256884.410799998790026 ], [ 363859.684299997985363, 256922.523699998855591 ], [ 363872.55290000140667, 256926.428700000047684 ], [ 363881.422399997711182, 256926.501299999654293 ], [ 363887.075499996542931, 256925.49210000038147 ], [ 363888.986699998378754, 256890.4662000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701046800", "MAP": "D9-2341-T83", "PARCEL_NAM": "1-6", "ACRE": ".19", "LONGITUDE": -64.88052206, "LATITUDE": 18.3412264, "OBJECTID_1": 22095, "PARCEL_NO_": "105701046800", "Tax_Legal_": "ANNAS RETREAT 1-6 & 1-3C NEW QTR.", "Name": "CAMPBELL R & JANICE MALONE REVOCABLE LIVING TRUST", "Address": "1-6 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44400, "Improved_V": 308200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.29087154699999, "SHAPE_Area": 835.29378759700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364144.382700003683567, 256916.621199999004602 ], [ 364140.401500001549721, 256910.67790000140667 ], [ 364149.326700001955032, 256904.207100000232458 ], [ 364150.951899997889996, 256902.74269999936223 ], [ 364124.424500003457069, 256893.026399999856949 ], [ 364105.686899997293949, 256915.460099998861551 ], [ 364126.579099997878075, 256924.074799999594688 ], [ 364132.203500002622604, 256926.442899998277426 ], [ 364135.417999997735023, 256927.735700000077486 ], [ 364144.382700003683567, 256916.621199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701041900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-56", "ACRE": ".15", "LONGITUDE": -64.88270511, "LATITUDE": 18.34122889, "OBJECTID_1": 22051, "PARCEL_NO_": "105701041900", "Tax_Legal_": "148-56 ANNAS RETREAT NEW QTR", "Name": "MACK, WALTER & JANET", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 41300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.168393544, "SHAPE_Area": 556.23694347399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363887.075499996542931, 256925.49210000038147 ], [ 363892.732299998402596, 256924.060699999332428 ], [ 363902.451200000941753, 256919.074000000953674 ], [ 363910.573700003325939, 256912.174400001764297 ], [ 363915.467299997806549, 256905.6706000007689 ], [ 363888.986699998378754, 256890.4662000015378 ], [ 363887.075499996542931, 256925.49210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602051700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-93", "ACRE": ".12", "LONGITUDE": -64.88387721, "LATITUDE": 18.34124024, "OBJECTID_1": 21290, "PARCEL_NO_": "105602051700", "Tax_Legal_": "148-93 ANNAS RETREAT NEW QTR", "Name": "MATTIAS, DENIS J & VERNA", "Address": "7009 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 98100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.346703534499994, "SHAPE_Area": 523.30318287600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363789.696999996900558, 256902.952399998903275 ], [ 363772.847099997103214, 256893.104200001806021 ], [ 363757.345600001513958, 256914.297800000756979 ], [ 363774.206200003623962, 256922.879599999636412 ], [ 363776.61429999768734, 256924.165800001472235 ], [ 363789.696999996900558, 256902.952399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035000", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-16", "ACRE": ".23", "LONGITUDE": -64.87609131000001, "LATITUDE": 18.34126342, "OBJECTID_1": 21996, "PARCEL_NO_": "105701035000", "Tax_Legal_": "20-21-16 SMITH BAY EAST END QTR", "Name": "LASHLEY, THEODORE S. JR", "Address": "PO Box 7097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 1000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.34453304100001, "SHAPE_Area": 889.84453193900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364617.623400002717972, 256928.093800000846386 ], [ 364619.415899999439716, 256906.999099999666214 ], [ 364578.27589999884367, 256908.773299999535084 ], [ 364572.498700000345707, 256924.346999999135733 ], [ 364572.462700001895428, 256928.568500000983477 ], [ 364617.623400002717972, 256928.093800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602052600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-58", "ACRE": ".14", "LONGITUDE": -64.88310556, "LATITUDE": 18.34115867, "OBJECTID_1": 21299, "PARCEL_NO_": "105602052600", "Tax_Legal_": "148-58 ANNAS RETREAT NEW QTR", "Name": "MARSHALL, DANIEL N. & ONNESTINE", "Address": "PO Box 10192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 138800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.690121283, "SHAPE_Area": 830.52612596500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363871.298100002110004, 256884.410799998790026 ], [ 363852.000600002706051, 256877.920099999755621 ], [ 363839.576800003647804, 256916.448499999940395 ], [ 363859.684299997985363, 256922.523699998855591 ], [ 363871.298100002110004, 256884.410799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701046500", "MAP": "D9-2341-T83", "PARCEL_NAM": "1-5", "ACRE": ".23", "LONGITUDE": -64.88005152, "LATITUDE": 18.34118454, "OBJECTID_1": 22092, "PARCEL_NO_": "105701046500", "Tax_Legal_": "ANNAS RETREAT 1-5 NEW QTR.", "Name": "LAURENT, PAUL & YVETTE", "Address": "PO Box 10392", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.380528351, "SHAPE_Area": 859.29294469499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364199.334299996495247, 256902.716499999165535 ], [ 364177.707699999213219, 256885.652100000530481 ], [ 364164.662799999117851, 256902.432799998670816 ], [ 364154.096199996769428, 256912.267700001597404 ], [ 364184.642599999904633, 256923.494600001722574 ], [ 364191.98929999768734, 256913.0 ], [ 364192.01630000025034, 256909.833799999207258 ], [ 364195.252300001680851, 256908.593800000846386 ], [ 364199.334299996495247, 256902.716499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035200", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-9", "ACRE": ".24", "LONGITUDE": -64.87655726, "LATITUDE": 18.34116404, "OBJECTID_1": 21998, "PARCEL_NO_": "105701035200", "Tax_Legal_": "20-21-9 SMITH BAY EAST END QTR", "Name": "JACKSON, PETER & WRIGHT, LAURA", "Address": "PO Box 502096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.441537646, "SHAPE_Area": 972.56384762599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364573.47580000013113, 256904.301100000739098 ], [ 364529.24549999833107, 256890.217999998480082 ], [ 364520.230400003492832, 256907.242800001055002 ], [ 364566.044600002467632, 256924.716299999505281 ], [ 364573.47580000013113, 256904.301100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701044300", "MAP": "D9-48-T54", "PARCEL_NAM": "11", "ACRE": "0.57", "LONGITUDE": -64.88083766, "LATITUDE": 18.34100247, "OBJECTID_1": 22072, "PARCEL_NO_": "105701044300", "Tax_Legal_": "ANNAS RETREAT 11 NEW QUARTER", "Name": "WEBSTER, PAMELA & ERIC", "Address": "PO Box 11496", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74400, "Improved_V": 110700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.41475363699999, "SHAPE_Area": 2535.1536677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364124.424500003457069, 256893.026399999856949 ], [ 364131.756899997591972, 256884.220499999821186 ], [ 364082.87389999628067, 256848.356699999421835 ], [ 364077.141599997878075, 256858.653400000184774 ], [ 364063.961900003254414, 256891.265000000596046 ], [ 364101.612199999392033, 256920.493000000715256 ], [ 364105.686899997293949, 256915.460099998861551 ], [ 364124.424500003457069, 256893.026399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602050400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-62", "ACRE": ".17", "LONGITUDE": -64.88457278, "LATITUDE": 18.34116516, "OBJECTID_1": 21277, "PARCEL_NO_": "105602050400", "Tax_Legal_": "148-62 ANNAS RETREAT NEW QTR", "Name": "POTTER, JR. , ALFRED & OTHERS", "Address": "PO Box 1531", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23300, "Improved_V": 129200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.63626887, "SHAPE_Area": 646.78916044000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363718.005300000309944, 256894.133000001311302 ], [ 363697.13289999961853, 256883.196400001645088 ], [ 363691.420299999415874, 256891.17119999974966 ], [ 363689.798699997365475, 256892.21339999884367 ], [ 363685.707800000905991, 256899.146000001579523 ], [ 363684.887100003659725, 256900.828099999576807 ], [ 363683.243900001049042, 256904.403200000524521 ], [ 363687.252099998295307, 256907.18019999936223 ], [ 363704.908299997448921, 256917.035000000149012 ], [ 363718.005300000309944, 256894.133000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701042100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-84", "ACRE": ".23", "LONGITUDE": -64.88230883, "LATITUDE": 18.34117043, "OBJECTID_1": 22053, "PARCEL_NO_": "105701042100", "Tax_Legal_": "ANNAS RETREAT 148-84 NEW QTR", "Name": "BARNES, LORNA", "Address": "PO Box 566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040566, "Country": "United States", "Land_Value": 19300, "Improved_V": 47800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.774660424100006, "SHAPE_Area": 572.40732255199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363957.442299999296665, 256900.525699999183416 ], [ 363931.75900000333786, 256886.383299998939037 ], [ 363923.5304000005126, 256905.736600000411272 ], [ 363946.004699997603893, 256917.952799998223782 ], [ 363957.442299999296665, 256900.525699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602052500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-59", "ACRE": ".15", "LONGITUDE": -64.88328189000001, "LATITUDE": 18.34110682, "OBJECTID_1": 21298, "PARCEL_NO_": "105602052500", "Tax_Legal_": "ANNAS RETREAT 148-59 NEW QTR", "Name": "THOMAS, HYACINTH", "Address": "2702 Pile Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 106100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.337774303, "SHAPE_Area": 740.14642712499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363852.000600002706051, 256877.920099999755621 ], [ 363835.921099998056889, 256872.300000000745058 ], [ 363821.089199997484684, 256909.542199999094009 ], [ 363839.576800003647804, 256916.448499999940395 ], [ 363852.000600002706051, 256877.920099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502041100", "MAP": "D9-6153-T95", "PARCEL_NAM": "12-2", "ACRE": ".7507", "LONGITUDE": -64.90626066, "LATITUDE": 18.34101249, "OBJECTID_1": 19917, "PARCEL_NO_": "105502041100", "Tax_Legal_": "RAPHUNE ESTATE 12-2 5B NEW QTR.", "Name": "McDONALD, MICHAEL A. & LISA", "Address": "PO Box 1984", "City": "KINGSHILL", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 69200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.24092870800001, "SHAPE_Area": 2955.47929707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361438.865599997341633, 256839.593499999493361 ], [ 361428.367399998009205, 256841.407400000840425 ], [ 361416.281700000166893, 256840.252999998629093 ], [ 361405.031099997460842, 256835.727899998426437 ], [ 361398.623700000345707, 256830.609299998730421 ], [ 361369.276399999856949, 256867.94370000064373 ], [ 361386.075900003314018, 256883.702100001275539 ], [ 361395.663500003516674, 256894.124200001358986 ], [ 361398.073499999940395, 256895.199400000274181 ], [ 361405.339299999177456, 256894.203400000929832 ], [ 361413.456299997866154, 256887.936999998986721 ], [ 361421.553599998354912, 256883.992499999701977 ], [ 361431.251000002026558, 256881.538800001144409 ], [ 361441.736599996685982, 256881.202399998903275 ], [ 361438.865599997341633, 256839.593499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701043800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-105", "ACRE": ".14", "LONGITUDE": -64.88152626, "LATITUDE": 18.3411333, "OBJECTID_1": 22067, "PARCEL_NO_": "105701043800", "Tax_Legal_": "148-105 ANNAS RETREAT NEW QTR", "Name": "HOBSON, YVETTE & GREGORY & WINSTON, ANTHONY", "Address": "20050 NW 15 Ave", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 17600, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.85083678300001, "SHAPE_Area": 730.36179694299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364046.12950000166893, 256902.095899999141693 ], [ 364013.248700000345707, 256880.92850000038743 ], [ 364002.631800003349781, 256896.673700001090765 ], [ 364025.845799997448921, 256916.706500001251698 ], [ 364035.593500003218651, 256908.342500001192093 ], [ 364046.12950000166893, 256902.095899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602051600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-94", "ACRE": ".12", "LONGITUDE": -64.88405481, "LATITUDE": 18.34114461, "OBJECTID_1": 21289, "PARCEL_NO_": "105602051600", "Tax_Legal_": "ANNAS RETREAT 148-94 NEW QTR", "Name": "DAVID, EULALIE & BASSANIO", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022703, "Country": "United States", "Land_Value": 16300, "Improved_V": 102500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.211183860199995, "SHAPE_Area": 607.298315613 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363772.847099997103214, 256893.104200001806021 ], [ 363752.791799999773502, 256880.907800000160933 ], [ 363738.075000002980232, 256904.640900000929832 ], [ 363752.527500003576279, 256911.936299998313189 ], [ 363757.345600001513958, 256914.297800000756979 ], [ 363772.847099997103214, 256893.104200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701062500", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-72", "ACRE": "0.23", "LONGITUDE": -64.87789815, "LATITUDE": 18.34105263, "OBJECTID_1": 22185, "PARCEL_NO_": "105701062500", "Tax_Legal_": "ANNAS RETREAT 173B-72 NEW QTR", "Name": "SMITH, WILBERT O. & CALLWOOD, C. A", "Address": "PO Box 531", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 33200, "Improved_V": 147400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.643361701, "SHAPE_Area": 923.71676532699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364418.130800001323223, 256870.943399999290705 ], [ 364417.297600001096725, 256874.103000000119209 ], [ 364414.864200003445148, 256875.771800000220537 ], [ 364411.635399997234344, 256876.167599998414516 ], [ 364408.419100001454353, 256875.085799999535084 ], [ 364405.237000003457069, 256869.993500001728535 ], [ 364401.223499998450279, 256867.849700000137091 ], [ 364390.392499998211861, 256908.713199999183416 ], [ 364411.275799997150898, 256918.383400000631809 ], [ 364422.155199997127056, 256871.820700000971556 ], [ 364418.130800001323223, 256870.943399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061000", "MAP": "F9-1301-T63", "PARCEL_NAM": "57Q", "ACRE": "0.27", "LONGITUDE": -64.87398862000001, "LATITUDE": 18.34109132, "OBJECTID_1": 22631, "PARCEL_NO_": "105702061000", "Tax_Legal_": "SMITH BAY 57Q EAST END QTR", "Name": "BURNER, DAWN, KEITH, DENISE, KELLY", "Address": "271 Fostertown Rd", "City": "Newburgh", "State": "New York", "Zip": 12550, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.92641493400001, "SHAPE_Area": 1362.5956889900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364831.742200002074242, 256877.495000001043081 ], [ 364822.829599998891354, 256882.488299999386072 ], [ 364813.935000002384186, 256885.370799999684095 ], [ 364802.632200002670288, 256886.967099998146296 ], [ 364788.113200001418591, 256887.481499999761581 ], [ 364808.854299999773502, 256913.826900001615286 ], [ 364810.452600002288818, 256915.5287000015378 ], [ 364812.821199998259544, 256921.458700001239777 ], [ 364841.859200000762939, 256920.429800000041723 ], [ 364831.742200002074242, 256877.495000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701043000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-80", "ACRE": ".13", "LONGITUDE": -64.88198517, "LATITUDE": 18.34113513, "OBJECTID_1": 22061, "PARCEL_NO_": "105701043000", "Tax_Legal_": "148-80 ANNAS RETRRAT NO.1 NEW QTR", "Name": "VIVIAN R. FAULKNER LIV. TRUST", "Address": "P O BOX 3102 VETERANS DRIVE", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 117900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.876645227200001, "SHAPE_Area": 513.17600812299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363990.524499997496605, 256898.052200000733137 ], [ 363968.070000000298023, 256883.51410000026226 ], [ 363957.442299999296665, 256900.525699999183416 ], [ 363980.715700000524521, 256913.5929000005126 ], [ 363990.524499997496605, 256898.052200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701063300", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-74", "ACRE": "0.23", "LONGITUDE": -64.87860409, "LATITUDE": 18.34108458, "OBJECTID_1": 22193, "PARCEL_NO_": "105701063300", "Tax_Legal_": "ANNAS RETREAT 173B-74 NEW QTR.", "Name": "ERSKINE, GEORGE", "Address": "PO Box 6085", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046085, "Country": "United States", "Land_Value": 31800, "Improved_V": 236300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.40387439599999, "SHAPE_Area": 978.18106444299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364343.80799999833107, 256887.011500000953674 ], [ 364326.94200000166893, 256879.063000001013279 ], [ 364301.779100000858307, 256898.488800000399351 ], [ 364313.850400000810623, 256901.331799998879433 ], [ 364322.685699999332428, 256905.414900001138449 ], [ 364327.493000000715256, 256909.04280000180006 ], [ 364333.077799998223782, 256916.05460000038147 ], [ 364359.068599998950958, 256894.10249999910593 ], [ 364343.80799999833107, 256887.011500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702068900", "MAP": "D9-2039-T82", "PARCEL_NAM": "57X-41", "ACRE": "0.25", "LONGITUDE": -64.87307502, "LATITUDE": 18.3410196, "OBJECTID_1": 22723, "PARCEL_NO_": "105702068900", "Tax_Legal_": "SMITH BAY 57X-41 EAST END QTR.", "Name": "PARSONS, ELROY", "Address": "4523 BEAU POINT COURT", "City": "SMELLVILLE", "State": "Georgia", "Zip": 30039, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.385348475, "SHAPE_Area": 813.74718325599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364925.6503000035882, 256904.393800001591444 ], [ 364925.890100002288818, 256900.641499999910593 ], [ 364930.092500001192093, 256880.622000001370907 ], [ 364930.216600000858307, 256866.057599999010563 ], [ 364900.131300002336502, 256895.364399999380112 ], [ 364899.412299998104572, 256913.060100000351667 ], [ 364920.896899998188019, 256909.741300001740456 ], [ 364925.6503000035882, 256904.393800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87182035, "LATITUDE": 18.34114105, "OBJECTID_1": 22637, "PARCEL_NO_": "105702061600", "Tax_Legal_": "57-119 SMITH BAY EAST END QTR", "Name": "FAHIE, ALBERT", "Address": "6539 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21400, "Improved_V": 72300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.44414487500001, "SHAPE_Area": 1498.4190366299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365076.711900003254414, 256897.020799998193979 ], [ 365014.624099999666214, 256896.723700001835823 ], [ 365018.457800000905991, 256919.975400000810623 ], [ 365074.894299998879433, 256921.070500001311302 ], [ 365079.730400003492832, 256921.321199998259544 ], [ 365079.937200002372265, 256897.047200001776218 ], [ 365076.711900003254414, 256897.020799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602052400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-60", "ACRE": ".14", "LONGITUDE": -64.88344025000001, "LATITUDE": 18.34105496, "OBJECTID_1": 21297, "PARCEL_NO_": "105602052400", "Tax_Legal_": "ANNAS RETREAT 148-60 NEW QTR", "Name": "CHINNERY, ALPHONSO", "Address": "PO Box 1274", "City": "Tucker", "State": "Georgia", "Zip": 30085, "Country": "United States", "Land_Value": 19200, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.845594596, "SHAPE_Area": 665.51076425500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363835.921099998056889, 256872.300000000745058 ], [ 363822.253300003707409, 256867.544100001454353 ], [ 363803.416900001466274, 256901.587099999189377 ], [ 363821.089199997484684, 256909.542199999094009 ], [ 363835.921099998056889, 256872.300000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701063800", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-16", "ACRE": "0.23", "LONGITUDE": -64.87938877000001, "LATITUDE": 18.34098837, "OBJECTID_1": 22198, "PARCEL_NO_": "105701063800", "Tax_Legal_": "ANNAS RETREAT 173B-16 NEW QTR.", "Name": "Lyra Hodge, Gloria Bonelli,Glen & Glencia Richards", "Address": "PO Box 303172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 163000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.5423018, "SHAPE_Area": 932.83517466000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364271.035099998116493, 256878.002099998295307 ], [ 364251.281900003552437, 256862.656500000506639 ], [ 364228.476599998772144, 256889.445099998265505 ], [ 364238.035499997437, 256903.24439999833703 ], [ 364241.206799998879433, 256909.603199999779463 ], [ 364271.035099998116493, 256878.002099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602051500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-95", "ACRE": ".13", "LONGITUDE": -64.88422543, "LATITUDE": 18.34105394, "OBJECTID_1": 21288, "PARCEL_NO_": "105602051500", "Tax_Legal_": "148-95 ANNAS RETREAT NEW QTR", "Name": "MONSANTO, SHIRLEY G", "Address": "PO Box 966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17800, "Improved_V": 115300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.693829480100007, "SHAPE_Area": 541.68535199899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363752.791799999773502, 256880.907800000160933 ], [ 363739.960900001227856, 256872.570099998265505 ], [ 363735.94370000064373, 256870.848499998450279 ], [ 363722.018899999558926, 256896.276799999177456 ], [ 363734.864100001752377, 256902.925900001078844 ], [ 363738.075000002980232, 256904.640900000929832 ], [ 363752.791799999773502, 256880.907800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502040900", "MAP": "D9-6153-T95", "PARCEL_NAM": "12-1", "ACRE": ".5468", "LONGITUDE": -64.9057612, "LATITUDE": 18.34096914, "OBJECTID_1": 19915, "PARCEL_NO_": "105502040900", "Tax_Legal_": "RAPHUNE ESTATE 12 5BA NEW QTR.", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.67137325900001, "SHAPE_Area": 1933.72509655 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361441.736599996685982, 256881.202399998903275 ], [ 361457.853900000452995, 256882.389800000935793 ], [ 361476.370300002396107, 256885.918800000101328 ], [ 361479.59910000115633, 256885.522999998182058 ], [ 361481.222599998116493, 256884.269799999892712 ], [ 361482.055799998342991, 256881.110199999064207 ], [ 361479.18299999833107, 256839.71229999884963 ], [ 361476.000900000333786, 256834.620099999010563 ], [ 361471.989200003445148, 256832.2652000002563 ], [ 361467.154899999499321, 256831.803399998694658 ], [ 361448.559299997985363, 256837.561900001019239 ], [ 361438.865599997341633, 256839.593499999493361 ], [ 361441.736599996685982, 256881.202399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701042000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-55", "ACRE": ".14", "LONGITUDE": -64.88262342, "LATITUDE": 18.34106017, "OBJECTID_1": 22052, "PARCEL_NO_": "105701042000", "Tax_Legal_": "ANNAS RETREAT 148-55 NEW QTR", "Name": "KING, MARLENE B., KING, COREY H. & ROBERTS, FAY N.", "Address": "7025 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 61000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.914700239400005, "SHAPE_Area": 554.62133263099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363923.686899997293949, 256887.372699998319149 ], [ 363897.179300002753735, 256875.334499999880791 ], [ 363888.986699998378754, 256890.4662000015378 ], [ 363915.467299997806549, 256905.6706000007689 ], [ 363923.686899997293949, 256887.372699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701062600", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-71", "ACRE": "0.23", "LONGITUDE": -64.87810815, "LATITUDE": 18.34095887, "OBJECTID_1": 22186, "PARCEL_NO_": "105701062600", "Tax_Legal_": "ANNAS RETREAT 173B-71 NEW QTR.", "Name": "BERRY, PRISCILLA & RASHAWN ABRAHAM", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28900, "Improved_V": 109700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.80272063699999, "SHAPE_Area": 1098.348151 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364401.223499998450279, 256867.849700000137091 ], [ 364379.551899999380112, 256856.062199998646975 ], [ 364365.494000002741814, 256897.110399998724461 ], [ 364383.164499998092651, 256905.276599999517202 ], [ 364390.392499998211861, 256908.713199999183416 ], [ 364401.223499998450279, 256867.849700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701034800", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-15", "ACRE": ".23", "LONGITUDE": -64.87606099, "LATITUDE": 18.34105836, "OBJECTID_1": 21995, "PARCEL_NO_": "105701034800", "Tax_Legal_": "SMITH BAY 20-21-15 EAST END QTR.", "Name": "FRANCIS, MAXINE", "Address": "6471 NW 21st Ct", "City": "SUNRISE", "State": "Florida", "Zip": 33313, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.959924171, "SHAPE_Area": 962.26763309499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364621.210100002586842, 256885.693300001323223 ], [ 364587.389899998903275, 256880.139199998229742 ], [ 364582.449600003659725, 256892.131099998950958 ], [ 364578.27589999884367, 256908.773299999535084 ], [ 364619.415899999439716, 256906.999099999666214 ], [ 364621.210100002586842, 256885.693300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602052300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-61", "ACRE": ".13", "LONGITUDE": -64.88360298000001, "LATITUDE": 18.34098188, "OBJECTID_1": 21296, "PARCEL_NO_": "105602052300", "Tax_Legal_": "ANNAS RETREAT 148-61 NEW QTR", "Name": "BENJAMIN, KATHERINE", "Address": "7013 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 175600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.19678468799999, "SHAPE_Area": 792.48579999699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363822.253300003707409, 256867.544100001454353 ], [ 363819.841600000858307, 256866.679999999701977 ], [ 363818.225400000810623, 256867.088899999856949 ], [ 363803.778300002217293, 256859.160199999809265 ], [ 363784.149899996817112, 256891.508000001311302 ], [ 363803.416900001466274, 256901.587099999189377 ], [ 363822.253300003707409, 256867.544100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701044200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-106", "ACRE": ".14", "LONGITUDE": -64.88141272, "LATITUDE": 18.34098494, "OBJECTID_1": 22071, "PARCEL_NO_": "105701044200", "Tax_Legal_": "148-106 ANNA'S RETREAT No.1 NEW QTR", "Name": "JEFFERSON, ROSEMARIE", "Address": "PO BOX 502292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 79800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.128842932, "SHAPE_Area": 774.95493053099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364055.153599999845028, 256884.015700001269579 ], [ 364025.489000000059605, 256863.930100001394749 ], [ 364018.154899999499321, 256872.94709999859333 ], [ 364013.248700000345707, 256880.92850000038743 ], [ 364046.12950000166893, 256902.095899999141693 ], [ 364055.153599999845028, 256884.015700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701045300", "MAP": "G9-660-T62", "PARCEL_NAM": "130", "ACRE": "0.37", "LONGITUDE": -64.88049183, "LATITUDE": 18.34049796, "OBJECTID_1": 22081, "PARCEL_NO_": "105701045300", "Tax_Legal_": "ANNAS RETREAT 130 1 NEW QTR", "Name": "HAWLEY, CECILIA(life estate)", "Address": "PO Box 502326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 53300, "Improved_V": 153200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 429.41454572100002, "SHAPE_Area": 2599.8314415999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364074.834100000560284, 256845.546700000762939 ], [ 364083.780900001525879, 256836.542899999767542 ], [ 364091.91780000180006, 256827.954599998891354 ], [ 364100.040200002491474, 256821.054999999701977 ], [ 364104.087999999523163, 256819.188299998641014 ], [ 364108.93299999833107, 256818.383600000292063 ], [ 364115.376299999654293, 256819.280699998140335 ], [ 364121.798100002110004, 256822.710799999535084 ], [ 364117.725100003182888, 256827.532600000500679 ], [ 364114.516099996864796, 256825.606499999761581 ], [ 364108.879100002348423, 256824.715999998152256 ], [ 364153.757500000298023, 256857.38060000166297 ], [ 364177.386900000274181, 256828.654199998825788 ], [ 364168.578599996864796, 256821.404899999499321 ], [ 364137.348200000822544, 256795.81810000166297 ], [ 364120.341899998486042, 256804.333700001239777 ], [ 364101.715800002217293, 256813.680500000715256 ], [ 364091.147399999201298, 256823.726500000804663 ], [ 364080.555699996650219, 256836.516499999910593 ], [ 364074.834100000560284, 256845.546700000762939 ] ] ], [ [ [ 364046.12950000166893, 256902.095899999141693 ], [ 364050.177199997007847, 256900.229200001806021 ], [ 364055.869999997317791, 256894.576299998909235 ], [ 364060.806800000369549, 256883.006499998271465 ], [ 364062.435599997639656, 256881.120000001043081 ], [ 364063.272399999201298, 256877.53830000013113 ], [ 364064.902999997138977, 256875.440699998289347 ], [ 364068.221799999475479, 256864.49100000038743 ], [ 364069.852399997413158, 256862.393399998545647 ], [ 364069.870399996638298, 256860.282600000500679 ], [ 364074.834100000560284, 256845.546700000762939 ], [ 364069.107199996709824, 256855.210099998861551 ], [ 364062.536300003528595, 256869.299600001424551 ], [ 364055.153599999845028, 256884.015700001269579 ], [ 364046.12950000166893, 256902.095899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701047100", "MAP": "D9-2341-T83", "PARCEL_NAM": "1-7", "ACRE": ".23", "LONGITUDE": -64.88034961, "LATITUDE": 18.34101094, "OBJECTID_1": 22098, "PARCEL_NO_": "105701047100", "Tax_Legal_": "ANNAS RETREAT 1-7 NEW QTR.", "Name": "WALTERS, THEODORE E. & CARMEN A. (TRUSTEES)", "Address": "PO Box 304456", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.816935421, "SHAPE_Area": 795.37730842600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364168.874200001358986, 256881.357900001108646 ], [ 364143.980999998748302, 256869.121800001710653 ], [ 364131.756899997591972, 256884.220499999821186 ], [ 364124.424500003457069, 256893.026399999856949 ], [ 364150.951899997889996, 256902.74269999936223 ], [ 364155.83110000193119, 256897.927499998360872 ], [ 364168.874200001358986, 256881.357900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602050200", "MAP": "G9-1302-T69", "PARCEL_NAM": "389", "ACRE": "0.50", "LONGITUDE": -64.88501617, "LATITUDE": 18.34075497, "OBJECTID_1": 21275, "PARCEL_NO_": "105602050200", "Tax_Legal_": "ANNAS RETREAT 389 NEW QTR", "Name": "EAST CARIBBEAN CONF OF SEVENTH DAY ADVENTISTS", "Address": "PO Box 886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.40120496100002, "SHAPE_Area": 4163.4483850400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363657.295500002801418, 256826.719500001519918 ], [ 363638.971500001847744, 256800.605000000447035 ], [ 363622.394400000572205, 256828.6097999997437 ], [ 363606.750299997627735, 256855.03830000013113 ], [ 363613.163900002837181, 256858.0760000012815 ], [ 363634.364600002765656, 256868.117199998348951 ], [ 363644.781900003552437, 256875.801899999380112 ], [ 363648.775700002908707, 256880.267499998211861 ], [ 363669.596000000834465, 256897.325399998575449 ], [ 363672.810400001704693, 256898.618299998342991 ], [ 363676.84740000218153, 256898.01799999922514 ], [ 363678.470799997448921, 256896.764800000935793 ], [ 363683.378799997270107, 256888.572299998253584 ], [ 363699.668700002133846, 256869.496100001037121 ], [ 363700.512699998915195, 256865.070099998265505 ], [ 363698.927100002765656, 256861.890700001269579 ], [ 363664.491200000047684, 256833.955600000917912 ], [ 363657.295500002801418, 256826.719500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701047200", "MAP": "D9-2341-T83", "PARCEL_NAM": "1-9", "ACRE": ".23", "LONGITUDE": -64.87987029, "LATITUDE": 18.340925, "OBJECTID_1": 22099, "PARCEL_NO_": "105701047200", "Tax_Legal_": "1-9 ANNAS RETREAT NO.1 NEW QTR.", "Name": "SPENCER, FREESTON & CYNTHIA M.", "Address": "PO Box 10336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.60603920400001, "SHAPE_Area": 1024.64758209 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364209.382200002670288, 256859.102400001138449 ], [ 364190.097300000488758, 256851.134100001305342 ], [ 364190.801100000739098, 256863.172200001776218 ], [ 364189.139899998903275, 256868.8581000007689 ], [ 364187.489500001072884, 256873.27760000154376 ], [ 364177.707699999213219, 256885.652100000530481 ], [ 364199.334299996495247, 256902.716499999165535 ], [ 364214.03490000218153, 256880.883099999278784 ], [ 364210.120200000703335, 256867.129999998956919 ], [ 364210.15259999781847, 256863.330600000917912 ], [ 364209.382200002670288, 256859.102400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701042900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-83", "ACRE": ".14", "LONGITUDE": -64.88222023, "LATITUDE": 18.34100084, "OBJECTID_1": 22060, "PARCEL_NO_": "105701042900", "Tax_Legal_": "148-83 ANNAS RETREAT NEW QTR", "Name": "JOSEPH (LIFE ESTATE), LORRAINE", "Address": "PO Box 7781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 51600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.571403385, "SHAPE_Area": 658.19147951599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363968.070000000298023, 256883.51410000026226 ], [ 363941.607400000095367, 256866.198899999260902 ], [ 363936.704800002276897, 256873.758200000971556 ], [ 363931.75900000333786, 256886.383299998939037 ], [ 363957.442299999296665, 256900.525699999183416 ], [ 363968.070000000298023, 256883.51410000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602051400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-96", "ACRE": ".12", "LONGITUDE": -64.88441478, "LATITUDE": 18.34098647, "OBJECTID_1": 21287, "PARCEL_NO_": "105602051400", "Tax_Legal_": "148-96 ANNAS RETREAT NEW QTR", "Name": "FRETT, MARILYN", "Address": "PO Box 11805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 106600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.84143276099999, "SHAPE_Area": 620.57468797499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363735.94370000064373, 256870.848499998450279 ], [ 363725.483300000429153, 256868.229699999094009 ], [ 363714.995800003409386, 256868.777199998497963 ], [ 363705.2787000015378, 256873.552799999713898 ], [ 363697.13289999961853, 256883.196400001645088 ], [ 363718.005300000309944, 256894.133000001311302 ], [ 363722.018899999558926, 256896.276799999177456 ], [ 363735.94370000064373, 256870.848499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701043600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-81", "ACRE": ".17", "LONGITUDE": -64.88188955, "LATITUDE": 18.3409409, "OBJECTID_1": 22066, "PARCEL_NO_": "105701043600", "Tax_Legal_": "148-81 ANNAS RETREAT NEW QTR", "Name": "IRENE ZEPHINE MORRIS & ALPHONSO BOYCE, SR.", "Address": "PO Box 306474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036474, "Country": "United States", "Land_Value": 23300, "Improved_V": 217000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.71505313599999, "SHAPE_Area": 785.76356787400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363978.803800001740456, 256854.048799999058247 ], [ 363968.070000000298023, 256883.51410000026226 ], [ 363990.524499997496605, 256898.052200000733137 ], [ 363999.514399997889996, 256883.982500001788139 ], [ 363999.557599999010563, 256878.916600000113249 ], [ 363993.195200003683567, 256868.521000001579523 ], [ 363985.214800000190735, 256858.745400000363588 ], [ 363981.213799998164177, 256855.124000001698732 ], [ 363978.803800001740456, 256854.048799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701063100", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-73", "ACRE": "0.23", "LONGITUDE": -64.87883269, "LATITUDE": 18.34094096, "OBJECTID_1": 22191, "PARCEL_NO_": "105701063100", "Tax_Legal_": "ANNAS RETREAT 173B-73 NEW QTR", "Name": "PICKERING, MARVA L", "Address": "PO BOX 11941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 101300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.383160602, "SHAPE_Area": 753.84785819800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364315.804700002074242, 256861.239999998360872 ], [ 364306.078599996864796, 256867.070999998599291 ], [ 364291.471500001847744, 256877.928300000727177 ], [ 364289.840899996459484, 256880.02589999884367 ], [ 364291.376199997961521, 256889.115499999374151 ], [ 364296.165500000119209, 256894.854200001806021 ], [ 364301.779100000858307, 256898.488800000399351 ], [ 364326.94200000166893, 256879.063000001013279 ], [ 364315.804700002074242, 256861.239999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701062700", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-70", "ACRE": "0.23", "LONGITUDE": -64.87832059, "LATITUDE": 18.34085615, "OBJECTID_1": 22187, "PARCEL_NO_": "105701062700", "Tax_Legal_": "ANNAS RETREAT 173B-70 NEW QUARTER", "Name": "PATRICK, ELSIE", "Address": "6140 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26200, "Improved_V": 96600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.927082009, "SHAPE_Area": 1054.4360475599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364379.551899999380112, 256856.062199998646975 ], [ 364366.708499997854233, 256849.202100001275539 ], [ 364357.057899996638298, 256846.16780000180006 ], [ 364343.80799999833107, 256887.011500000953674 ], [ 364359.068599998950958, 256894.10249999910593 ], [ 364365.494000002741814, 256897.110399998724461 ], [ 364379.551899999380112, 256856.062199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602052900", "MAP": "A9-102-T68", "PARCEL_NAM": "173-225", "ACRE": "0.10", "LONGITUDE": -64.88374261, "LATITUDE": 18.34089629, "OBJECTID_1": 21301, "PARCEL_NO_": "105602052900", "Tax_Legal_": "173-225 ANNAS RETREAT NEW QTR", "Name": "David, Jr. Desha & Genesis Selkridge", "Address": "173-255 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 80, "Country": "United States", "Land_Value": 14900, "Improved_V": 122200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.91830152599999, "SHAPE_Area": 521.34558626700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363803.778300002217293, 256859.160199999809265 ], [ 363789.331200003623962, 256851.231499999761581 ], [ 363774.526299998164177, 256885.307500001043081 ], [ 363784.149899996817112, 256891.508000001311302 ], [ 363803.778300002217293, 256859.160199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502041200", "MAP": "D9-6153-T95", "PARCEL_NAM": "17-1", "ACRE": ".7615", "LONGITUDE": -64.90663766, "LATITUDE": 18.3407287, "OBJECTID_1": 19918, "PARCEL_NO_": "105502041200", "Tax_Legal_": "17-1 ESTATE RAPHUNE No.5B NEW QTR.", "Name": "SMITH, STANLEY D. & DENISE A.", "Address": "PO Box 306052", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.647446806, "SHAPE_Area": 2199.3793074300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361354.648800000548363, 256786.552999999374151 ], [ 361352.226999998092651, 256851.361999999731779 ], [ 361344.386799998581409, 256855.285500001162291 ], [ 361366.834100000560284, 256870.667899999767542 ], [ 361369.276399999856949, 256867.94370000064373 ], [ 361398.623700000345707, 256830.609299998730421 ], [ 361397.016500003635883, 256829.962799999862909 ], [ 361381.822400003671646, 256815.061900001019239 ], [ 361373.05009999871254, 256803.591099999845028 ], [ 361363.464199997484684, 256792.957899998873472 ], [ 361354.648800000548363, 256786.552999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602070100", "MAP": "A9-174-T72", "PARCEL_NAM": "387-A", "ACRE": "3.4", "LONGITUDE": -64.88341668, "LATITUDE": 18.34050608, "OBJECTID_1": 21315, "PARCEL_NO_": "105602070100", "Tax_Legal_": "388 & 387 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 0, "Improved_V": 2032600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 791.54223099700005, "SHAPE_Area": 11842.5093041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363964.595899999141693, 256818.046599999070168 ], [ 363994.341399997472763, 256828.633699998259544 ], [ 364011.475299999117851, 256805.131400000303984 ], [ 363995.453400000929832, 256792.756900001317263 ], [ 363989.816399998962879, 256791.866399999707937 ], [ 363984.969499997794628, 256792.882199998944998 ], [ 363906.376000002026558, 256836.990800000727177 ], [ 363895.058799996972084, 256840.275600001215935 ], [ 363885.377700001001358, 256840.829700000584126 ], [ 363876.517200000584126, 256839.701699998229742 ], [ 363870.082900002598763, 256837.749200001358986 ], [ 363865.266599997878075, 256835.176600001752377 ], [ 363853.245700001716614, 256826.42339999973774 ], [ 363837.193099997937679, 256817.637200001627207 ], [ 363825.141599997878075, 256812.472300000488758 ], [ 363796.998000003397465, 256803.16499999910593 ], [ 363759.995700001716614, 256792.518500000238419 ], [ 363726.198899999260902, 256784.220400001853704 ], [ 363719.780799999833107, 256780.368099998682737 ], [ 363714.194200001657009, 256773.567400000989437 ], [ 363713.432800002396107, 256768.283900000154972 ], [ 363716.667000003159046, 256767.254900000989437 ], [ 363709.435400001704693, 256764.24040000140667 ], [ 363707.014700002968311, 256764.431600000709295 ], [ 363684.313799999654293, 256778.811299998313189 ], [ 363682.616700001060963, 256788.718800000846386 ], [ 363690.615099996328354, 256796.383600000292063 ], [ 363697.812600001692772, 256803.408599998801947 ], [ 363703.415399998426437, 256808.309599999338388 ], [ 363707.418200001120567, 256811.719900000840425 ], [ 363716.228299997746944, 256818.758099999278784 ], [ 363725.848300002515316, 256825.380699999630451 ], [ 363735.466499999165535, 256832.214400000870228 ], [ 363753.187399998307228, 256834.470400001853704 ], [ 363765.253300003707409, 256837.946699999272823 ], [ 363778.897699996829033, 256845.446600001305342 ], [ 363789.331200003623962, 256851.231499999761581 ], [ 363803.778300002217293, 256859.160199999809265 ], [ 363818.225400000810623, 256867.088899999856949 ], [ 363819.841600000858307, 256866.679999999701977 ], [ 363822.253300003707409, 256867.544100001454353 ], [ 363835.921099998056889, 256872.300000000745058 ], [ 363852.000600002706051, 256877.920099999755621 ], [ 363871.298100002110004, 256884.410799998790026 ], [ 363888.986699998378754, 256890.4662000015378 ], [ 363897.179300002753735, 256875.334499999880791 ], [ 363905.377300001680851, 256859.569600000977516 ], [ 363916.033699996769428, 256839.180700000375509 ], [ 363940.352600000798702, 256824.181000001728535 ], [ 363964.595899999141693, 256818.046599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702081500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87183835, "LATITUDE": 18.34093028, "OBJECTID_1": 22757, "PARCEL_NO_": "105702081500", "Tax_Legal_": "57Y-7&57Y-7-F SMITH BAY EAST END QUARTER", "Name": "GORDON, HARRIET", "Address": "PO Box 9625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42900, "Improved_V": 186400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.15274678500001, "SHAPE_Area": 1554.33507229 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365079.937200002372265, 256897.047200001776218 ], [ 365080.941299997270107, 256873.835099998861551 ], [ 365075.295299999415874, 256874.0 ], [ 365011.594800002872944, 256873.689699999988079 ], [ 365013.844700001180172, 256893.550900001078844 ], [ 365014.624099999666214, 256896.723700001835823 ], [ 365076.711900003254414, 256897.020799998193979 ], [ 365079.937200002372265, 256897.047200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701042700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-54", "ACRE": ".11", "LONGITUDE": -64.88255535, "LATITUDE": 18.34091164, "OBJECTID_1": 22058, "PARCEL_NO_": "105701042700", "Tax_Legal_": "148-54 ANNAS RETREAT NEW QTR", "Name": "Sandra Donovan and Jovan Michael Henry", "Address": "7023 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 77000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.419146204200004, "SHAPE_Area": 490.36635379500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363930.26860000193119, 256872.016699999570847 ], [ 363905.377300001680851, 256859.569600000977516 ], [ 363897.179300002753735, 256875.334499999880791 ], [ 363923.686899997293949, 256887.372699998319149 ], [ 363930.26860000193119, 256872.016699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069300", "MAP": "D9-3914-T87", "PARCEL_NAM": "57X-44", "ACRE": ".27", "LONGITUDE": -64.87313872, "LATITUDE": 18.34076158, "OBJECTID_1": 22727, "PARCEL_NO_": "105702069300", "Tax_Legal_": "SMITH BAY 57X-44 EAST END QUARTER", "Name": "FRANCIS, SONIA V.W.", "Address": "PO Box 9182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42100, "Improved_V": 258300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.03720059099999, "SHAPE_Area": 1181.6635568500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364892.427799999713898, 256853.082699999213219 ], [ 364889.886600002646446, 256867.416200000792742 ], [ 364893.882200002670288, 256871.670800000429153 ], [ 364897.874200001358986, 256876.347500000149012 ], [ 364900.131300002336502, 256895.364399999380112 ], [ 364930.216600000858307, 256866.057599999010563 ], [ 364929.453400000929832, 256860.985100001096725 ], [ 364923.929700002074242, 256846.796599999070168 ], [ 364911.037699997425079, 256845.635600000619888 ], [ 364892.427799999713898, 256853.082699999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602053000", "MAP": "A9-102-T68", "PARCEL_NAM": "173-226", "ACRE": "0.11", "LONGITUDE": -64.88387374, "LATITUDE": 18.34085074, "OBJECTID_1": 21302, "PARCEL_NO_": "105602053000", "Tax_Legal_": "173-226 ANNAS RETREAT NEW QTR", "Name": "SELKRIDGE, BEATRICE & DAVID", "Address": "7006 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 127700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.345771219, "SHAPE_Area": 561.00430598499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363778.897699996829033, 256845.446600001305342 ], [ 363758.479099996387959, 256875.888099998235703 ], [ 363774.526299998164177, 256885.307500001043081 ], [ 363789.331200003623962, 256851.231499999761581 ], [ 363778.897699996829033, 256845.446600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701062800", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-69", "ACRE": "0.23", "LONGITUDE": -64.8785475, "LATITUDE": 18.34079051, "OBJECTID_1": 22188, "PARCEL_NO_": "105701062800", "Tax_Legal_": "ANNAS RETREAT 173B-69 NEW QTR", "Name": "JAMES, AVENEL", "Address": "PO Box 502161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26200, "Improved_V": 101300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.09409663900001, "SHAPE_Area": 991.71165660700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364357.222000002861023, 256845.883499998599291 ], [ 364346.743500001728535, 256845.375599998980761 ], [ 364337.857900001108646, 256847.2027000002563 ], [ 364329.760600000619888, 256851.147199999541044 ], [ 364315.968800000846386, 256860.955699998885393 ], [ 364327.106100000441074, 256878.7787000015378 ], [ 364343.972099997103214, 256886.727200001478195 ], [ 364357.222000002861023, 256845.883499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701043500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-82", "ACRE": ".15", "LONGITUDE": -64.88210096, "LATITUDE": 18.340828, "OBJECTID_1": 22065, "PARCEL_NO_": "105701043500", "Tax_Legal_": "148-82 ANNAS RETREAT NEW QTR", "Name": "HODGE, LOUCETA", "Address": "BOX 3651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 126300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.00780265900001, "SHAPE_Area": 680.06345425899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363978.803800001740456, 256854.048799999058247 ], [ 363970.765900000929832, 256851.027699999511242 ], [ 363964.315399996936321, 256850.974899999797344 ], [ 363958.660400003194809, 256852.195199999958277 ], [ 363948.117200002074242, 256859.286100000143051 ], [ 363941.607400000095367, 256866.198899999260902 ], [ 363968.070000000298023, 256883.51410000026226 ], [ 363978.803800001740456, 256854.048799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701044500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-107", "ACRE": ".14", "LONGITUDE": -64.88132106, "LATITUDE": 18.34084163, "OBJECTID_1": 22074, "PARCEL_NO_": "105701044500", "Tax_Legal_": "ANNAS RETREAT 148-107 NEW QTR", "Name": "SEMPER, EILET L.", "Address": "PO BOX 503172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 122200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.310616964, "SHAPE_Area": 571.38679827399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364062.536300003528595, 256869.299600001424551 ], [ 364035.281700000166893, 256850.289200000464916 ], [ 364025.489000000059605, 256863.930100001394749 ], [ 364055.153599999845028, 256884.015700001269579 ], [ 364062.536300003528595, 256869.299600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701045200", "MAP": "D9-660-T62", "PARCEL_NAM": "12A", "ACRE": "0.50", "LONGITUDE": -64.88065096, "LATITUDE": 18.34074323, "OBJECTID_1": 22080, "PARCEL_NO_": "105701045200", "Tax_Legal_": "ANNAS RETREAT 12A 1 NEW QTR", "Name": "WALTERS, THEODORE E. & CARMEN A. (TRUSTEES)", "Address": "PO Box 304456", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82200, "Improved_V": 427500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.09829694300001, "SHAPE_Area": 1526.8429307900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364148.053900003433228, 256864.300000000745058 ], [ 364099.160199999809265, 256829.7027000002563 ], [ 364092.657499998807907, 256835.771200001239777 ], [ 364082.87389999628067, 256848.356699999421835 ], [ 364131.756899997591972, 256884.220499999821186 ], [ 364143.980999998748302, 256869.121800001710653 ], [ 364148.053900003433228, 256864.300000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701034700", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-14", "ACRE": ".23", "LONGITUDE": -64.8760122, "LATITUDE": 18.34083595, "OBJECTID_1": 21994, "PARCEL_NO_": "105701034700", "Tax_Legal_": "20-21-14 SMITH BAY EAST END QTR.", "Name": "JOHNSON-HARRIGAN, DAMALI", "Address": "474 Psc", "City": "Fpo", "State": null, "Zip": 96351, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.10742816200001, "SHAPE_Area": 833.67535562499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364624.640299998223782, 256861.656700000166893 ], [ 364588.392200000584126, 256857.138199999928474 ], [ 364588.361699998378754, 256860.726500000804663 ], [ 364587.389899998903275, 256880.139199998229742 ], [ 364621.210100002586842, 256885.693300001323223 ], [ 364624.640299998223782, 256861.656700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701046400", "MAP": "D9-2341-T83", "PARCEL_NAM": "1-8", "ACRE": ".24", "LONGITUDE": -64.88015514, "LATITUDE": 18.3407499, "OBJECTID_1": 22091, "PARCEL_NO_": "105701046400", "Tax_Legal_": "ANNAS RETREAT 1-8 NEW QTR.", "Name": "STAPLETON, JAMES & CYNTHIA", "Address": "PO Box 306055", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41100, "Improved_V": 291600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.70938268699999, "SHAPE_Area": 1048.5623713099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364153.757500000298023, 256857.38060000166297 ], [ 364148.053900003433228, 256864.300000000745058 ], [ 364143.980999998748302, 256869.121800001710653 ], [ 364168.874200001358986, 256881.357900001108646 ], [ 364181.100199997425079, 256866.048099998384714 ], [ 364181.461599998176098, 256823.621300000697374 ], [ 364177.386900000274181, 256828.654199998825788 ], [ 364153.757500000298023, 256857.38060000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701034600", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-11", "ACRE": ".23", "LONGITUDE": -64.8763985, "LATITUDE": 18.34079512, "OBJECTID_1": 21993, "PARCEL_NO_": "105701034600", "Tax_Legal_": "20-21-11 ESTATE SMITH BAY EAST END QUARTER", "Name": "HARRIS, SAMUEL A", "Address": "PO Box 1062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32400, "Improved_V": 150100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.08345835200001, "SHAPE_Area": 1188.21979947 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364588.262199997901917, 256860.623100001364946 ], [ 364552.102200001478195, 256845.761700000613928 ], [ 364538.161100000143051, 256873.089800000190735 ], [ 364578.386799998581409, 256883.973700001835823 ], [ 364580.038999997079372, 256879.343199998140335 ], [ 364587.290399998426437, 256880.035799998790026 ], [ 364588.262199997901917, 256860.623100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602053100", "MAP": "A9-102-T68", "PARCEL_NAM": "173-227", "ACRE": "0.11", "LONGITUDE": -64.88398985000001, "LATITUDE": 18.34076724, "OBJECTID_1": 21303, "PARCEL_NO_": "105602053100", "Tax_Legal_": "173-227 ANNAS RETREAT NEW QTR", "Name": "MAUREEN RICHARDSON TRUST", "Address": "PO Box 11311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 70600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.425617629, "SHAPE_Area": 548.80087926399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363764.079599998891354, 256837.608500000089407 ], [ 363746.967200003564358, 256868.457600001245737 ], [ 363758.479099996387959, 256875.888099998235703 ], [ 363778.897699996829033, 256845.446600001305342 ], [ 363765.253300003707409, 256837.946699999272823 ], [ 363764.079599998891354, 256837.608500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701042800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-53", "ACRE": ".17", "LONGITUDE": -64.88248156, "LATITUDE": 18.3407577, "OBJECTID_1": 22059, "PARCEL_NO_": "105701042800", "Tax_Legal_": "148-53 ANNAS RETREAT NEW QTR", "Name": "JN-BAPTISTE, URELCA", "Address": "PO Box 302593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 112900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.477720560700007, "SHAPE_Area": 555.13100615799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363939.255000002682209, 256858.369199998676777 ], [ 363916.033699996769428, 256839.180700000375509 ], [ 363905.377300001680851, 256859.569600000977516 ], [ 363930.26860000193119, 256872.016699999570847 ], [ 363932.737899996340275, 256866.126299999654293 ], [ 363939.255000002682209, 256858.369199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701044100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-49", "ACRE": ".18", "LONGITUDE": -64.88172058000001, "LATITUDE": 18.34070961, "OBJECTID_1": 22070, "PARCEL_NO_": "105701044100", "Tax_Legal_": "148-49 ANNAS RETREAT NEW QTR", "Name": "SAMUEL, BERYL & SIMMONS, RONALD & ELDRA", "Address": "28 Poinsettia Ln", "City": "Palm Coast", "State": "Florida", "Zip": 32164, "Country": "United States", "Land_Value": 26700, "Improved_V": 41800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.459412062, "SHAPE_Area": 748.91318682099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364006.326399996876717, 256841.608500000089407 ], [ 363991.895400002598763, 256831.780099999159575 ], [ 363983.688500002026558, 256848.600400000810623 ], [ 363986.098399996757507, 256849.675599999725819 ], [ 363990.898500002920628, 256854.147799998521805 ], [ 363999.679799996316433, 256864.563299998641014 ], [ 364003.652099996805191, 256871.561900001019239 ], [ 364005.257500000298023, 256872.419399999082088 ], [ 364008.488099999725819, 256871.812600001692772 ], [ 364011.760200001299381, 256866.350900001823902 ], [ 364014.198899999260902, 256864.048799999058247 ], [ 364015.024999998509884, 256861.733600001782179 ], [ 364022.359099999070168, 256852.716600000858307 ], [ 364006.326399996876717, 256841.608500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061300", "MAP": "D9-4479-T88", "PARCEL_NAM": "57X-3", "ACRE": "0.50", "LONGITUDE": -64.87428535, "LATITUDE": 18.34065213, "OBJECTID_1": 22634, "PARCEL_NO_": "105702061300", "Tax_Legal_": "57X-3 SMITH BAY EAST END QTR", "Name": "SHACHOVE, DIANE C, A. FRANCIS, KEEZI, KAIDI, & KAIISA PINNEY", "Address": "PO Box 305646", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59500, "Improved_V": 152200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.29647884400001, "SHAPE_Area": 2291.7555302300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364807.179799996316433, 256826.420499999076128 ], [ 364766.86599999666214, 256825.879399999976158 ], [ 364765.994999997317791, 256833.471599999815226 ], [ 364764.076700001955032, 256869.341899998486042 ], [ 364768.092000000178814, 256871.274599999189377 ], [ 364776.907499998807907, 256877.679499998688698 ], [ 364795.449100002646446, 256878.253499999642372 ], [ 364808.36089999973774, 256877.092599999159575 ], [ 364814.017700001597404, 256875.661200001835823 ], [ 364807.179799996316433, 256826.420499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061200", "MAP": "B9-374-T73", "PARCEL_NAM": "57X-4", "ACRE": "0.50", "LONGITUDE": -64.87393541, "LATITUDE": 18.34059795, "OBJECTID_1": 22633, "PARCEL_NO_": "105702061200", "Tax_Legal_": "57X-4 SMITH BAY EAST END QTR", "Name": "FRANCIS, CLAYTON & OTHERS", "Address": "PO Box 7993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010993, "Country": "United States", "Land_Value": 59500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.285094238, "SHAPE_Area": 1344.0413731000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364814.017700001597404, 256875.661200001835823 ], [ 364818.868100002408028, 256874.223299998790026 ], [ 364826.968999996781349, 256869.856600001454353 ], [ 364831.841099999845028, 256865.88569999858737 ], [ 364837.541000001132488, 256859.388399999588728 ], [ 364841.633699998259544, 256852.244800001382828 ], [ 364845.879199996590614, 256827.159400001168251 ], [ 364807.179799996316433, 256826.420499999076128 ], [ 364814.017700001597404, 256875.661200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701044900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-018", "ACRE": ".14", "LONGITUDE": -64.88124328000001, "LATITUDE": 18.34071273, "OBJECTID_1": 22077, "PARCEL_NO_": "105701044900", "Tax_Legal_": "148-108 ANNAS RETREAT NEW QUARTER", "Name": "SMITH, ROPHOUS D & RITA C", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 168400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.072732189600003, "SHAPE_Area": 514.70584318700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364069.107199996709824, 256855.210099998861551 ], [ 364045.882399998605251, 256836.443799998611212 ], [ 364035.281700000166893, 256850.289200000464916 ], [ 364062.536300003528595, 256869.299600001424551 ], [ 364069.107199996709824, 256855.210099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105602018700", "MAP": "G9-1028-T68", "PARCEL_NAM": "214", "ACRE": ".34", "LONGITUDE": -64.88735386, "LATITUDE": 18.34070917, "OBJECTID_1": 21000, "PARCEL_NO_": "105602018700", "Tax_Legal_": "214 ANNAS RETREAT NO.1 NEW QTR", "Name": "TJJ-VI LLC", "Address": "2393 Church St", "City": "Conway", "State": "South Carolina", "Zip": 29526, "Country": "United States", "Land_Value": 111100, "Improved_V": 67100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.853025661, "SHAPE_Area": 1583.77857053 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363437.075099997222424, 256836.316199999302626 ], [ 363386.33500000089407, 256829.145899999886751 ], [ 363382.217100001871586, 256839.244699999690056 ], [ 363371.589400000870228, 256856.256299998611212 ], [ 363432.80799999833107, 256863.934500001370907 ], [ 363437.075099997222424, 256836.316199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105602018900", "MAP": "D9-857-T69", "PARCEL_NAM": "390", "ACRE": null, "LONGITUDE": -64.88682573, "LATITUDE": 18.34044145, "OBJECTID_1": 21002, "PARCEL_NO_": "105602018900", "Tax_Legal_": "390 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 237400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.19270752400001, "SHAPE_Area": 2358.2248058499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363445.784500002861023, 256855.174800001084805 ], [ 363453.978900000452995, 256839.831999998539686 ], [ 363468.467399999499321, 256842.905900001525879 ], [ 363475.994699999690056, 256833.758600000292063 ], [ 363497.800300002098083, 256807.260099999606609 ], [ 363491.385799996554852, 256802.985700000077486 ], [ 363475.372800000011921, 256789.555700000375509 ], [ 363469.755599997937679, 256786.343400001525879 ], [ 363461.714100003242493, 256783.74439999833703 ], [ 363452.041900001466274, 256783.243099998682737 ], [ 363442.715700000524521, 256836.784499999135733 ], [ 363437.075099997222424, 256836.316199999302626 ], [ 363432.80799999833107, 256863.934500001370907 ], [ 363445.784500002861023, 256855.174800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701061700", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-64", "ACRE": "0.24", "LONGITUDE": -64.87780469, "LATITUDE": 18.34061499, "OBJECTID_1": 22177, "PARCEL_NO_": "105701061700", "Tax_Legal_": "ANNAS RETREAT 173B-64 NEW QTR", "Name": "EUSEBE, MAYNOR M. & WELLINGTON W.", "Address": "PO Box 12082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 171100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.08821684599999, "SHAPE_Area": 982.77606788900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364433.027500003576279, 256826.102400001138449 ], [ 364427.392300002276897, 256825.000799998641014 ], [ 364425.758100003004074, 256827.520599998533726 ], [ 364421.721100002527237, 256828.120799999684095 ], [ 364419.309399999678135, 256827.256700001657009 ], [ 364417.718299999833107, 256824.710499998182058 ], [ 364409.6858000010252, 256821.056200001388788 ], [ 364399.689999997615814, 256858.549100000411272 ], [ 364407.717100001871586, 256862.836599998176098 ], [ 364413.355899997055531, 256863.516100000590086 ], [ 364416.57039999961853, 256864.808899998664856 ], [ 364418.166799999773502, 256866.721799999475479 ], [ 364418.130800001323223, 256870.943399999290705 ], [ 364422.155199997127056, 256871.820700000971556 ], [ 364433.027500003576279, 256826.102400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701062400", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-68", "ACRE": "0.24", "LONGITUDE": -64.87880533000001, "LATITUDE": 18.34058259, "OBJECTID_1": 22184, "PARCEL_NO_": "105701062400", "Tax_Legal_": "ANNAS RETREAT 173B-68 NEW QTR", "Name": "HARRIGAN, WARREN & VERONICA", "Address": "7276 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.269355534, "SHAPE_Area": 880.82372560700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364313.833499997854233, 256808.66160000115633 ], [ 364290.767599999904633, 256865.8902000002563 ], [ 364290.751500003039837, 256867.789900001138449 ], [ 364293.170400001108646, 256867.80970000103116 ], [ 364303.724399998784065, 256859.452399998903275 ], [ 364314.256800003349781, 256853.627999998629093 ], [ 364323.999099999666214, 256845.897199999541044 ], [ 364328.858499996364117, 256843.403900001198053 ], [ 364313.833499997854233, 256808.66160000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702081400", "MAP": "A9-324-T85", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87185356000001, "LATITUDE": 18.34070212, "OBJECTID_1": 22756, "PARCEL_NO_": "105702081400", "Tax_Legal_": "SMITH BAY 57Y-8&57Y-8G EAST END QTR.", "Name": "CHURCH OF GOD SEVENTH DAY, INC", "Address": "PO Box 11818", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 115000, "Improved_V": 262200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.63074852700001, "SHAPE_Area": 1949.79070647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365074.717299997806549, 256847.1864 ], [ 365008.610500000417233, 256845.378699999302626 ], [ 365009.362899996340275, 256851.717700000852346 ], [ 365011.594800002872944, 256873.689699999988079 ], [ 365075.295299999415874, 256874.0 ], [ 365080.941299997270107, 256873.835099998861551 ], [ 365081.101300001144409, 256855.049100000411272 ], [ 365082.002300001680851, 256847.500100001692772 ], [ 365074.717299997806549, 256847.1864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602053300", "MAP": "A9-102-T68", "PARCEL_NAM": "173-229", "ACRE": "0.12", "LONGITUDE": -64.88427335, "LATITUDE": 18.34069012, "OBJECTID_1": 21305, "PARCEL_NO_": "105602053300", "Tax_Legal_": "173-229 ANNAS RETREAT NEW QTR", "Name": "GEORGES, EVELYN", "Address": "7001 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 81800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.027231278, "SHAPE_Area": 721.90623197000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363736.010300002992153, 256863.038600001484156 ], [ 363753.187399998307228, 256834.470400001853704 ], [ 363735.466499999165535, 256832.214400000870228 ], [ 363732.720899999141693, 256830.263700000941753 ], [ 363710.716899998486042, 256859.692600000649691 ], [ 363714.255999997258186, 256860.960700001567602 ], [ 363723.933600001037121, 256860.82880000025034 ], [ 363736.010300002992153, 256863.038600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702081300", "MAP": "A9-324-T85", "PARCEL_NAM": "57Y-9", "ACRE": "0.29", "LONGITUDE": -64.87191888, "LATITUDE": 18.34043978, "OBJECTID_1": 22755, "PARCEL_NO_": "105702081300", "Tax_Legal_": "SMITH BAY 57Y-9 EASTEND QTR.", "Name": "HANLEY, DORIS & CHARLESWELL, PAT", "Address": "P.O.BOX 2981", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48400, "Improved_V": 238700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.17118001200001, "SHAPE_Area": 2070.7640782399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365074.717299997806549, 256847.1864 ], [ 365082.002300001680851, 256847.500100001692772 ], [ 365082.837999999523163, 256840.497800000011921 ], [ 365078.854999996721745, 256834.765700001269579 ], [ 365067.606200002133846, 256830.029599998146296 ], [ 365059.580799996852875, 256825.530900001525879 ], [ 365038.748000003397465, 256809.950599998235703 ], [ 365034.750600002706051, 256805.9070999994874 ], [ 365008.054099999368191, 256816.032200001180172 ], [ 365004.837899997830391, 256814.950399998575449 ], [ 365007.868900001049042, 256837.773299999535084 ], [ 365008.610500000417233, 256845.378699999302626 ], [ 365074.717299997806549, 256847.1864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "F9-532-T60", "PARCEL_NAM": "4G REM", "ACRE": null, "LONGITUDE": -64.86730689, "LATITUDE": 18.3438546, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.37625753600003, "SHAPE_Area": 2293.2474047000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365555.002400003373623, 257218.136100001633167 ], [ 365551.525600001215935, 257209.928899999707937 ], [ 365549.19879999756813, 257205.475699998438358 ], [ 365548.957000002264977, 257205.012899998575449 ], [ 365539.592799998819828, 257187.091299999505281 ], [ 365538.123800002038479, 257186.320000000298023 ], [ 365533.328199997544289, 257183.802400000393391 ], [ 365529.769799999892712, 257181.934200000017881 ], [ 365520.769000001251698, 257199.343499999493361 ], [ 365501.66330000013113, 257203.183400001376867 ], [ 365502.30799999833107, 257195.663600001484156 ], [ 365499.404600001871586, 257202.676199998706579 ], [ 365496.820900000631809, 257208.916499998420477 ], [ 365495.606899999082088, 257211.848700001835823 ], [ 365470.844099998474121, 257201.646499998867512 ], [ 365466.712200000882149, 257214.108800001442432 ], [ 365473.148299999535084, 257215.850299999117851 ], [ 365481.193400003015995, 257218.026999998837709 ], [ 365499.699100002646446, 257222.822599999606609 ], [ 365499.973700001835823, 257222.891800001263618 ], [ 365530.017499998211861, 257230.460200000554323 ], [ 365540.942299999296665, 257233.21229999884963 ], [ 365564.586000002920628, 257237.734299998730421 ], [ 365564.022799998521805, 257236.582699999213219 ], [ 365555.002400003373623, 257218.136100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601041300", "MAP": "A9-38-T65", "PARCEL_NAM": "146-9", "ACRE": "0.11", "LONGITUDE": -64.89726632, "LATITUDE": 18.34365754, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.022212233, "SHAPE_Area": 618.19367735599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362371.411700002849102, 257173.154399998486042 ], [ 362362.770599998533726, 257146.27479999884963 ], [ 362345.758900001645088, 257155.423599999397993 ], [ 362341.720200002193451, 257156.234999999403954 ], [ 362349.565700002014637, 257181.841499999165535 ], [ 362359.282799996435642, 257177.065900001674891 ], [ 362371.411700002849102, 257173.154399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "G9-367-T56", "PARCEL_NAM": "REM 20-14", "ACRE": "0.47", "LONGITUDE": -64.87631503, "LATITUDE": 18.34354741, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.194089639, "SHAPE_Area": 1665.26762044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364551.331799998879433, 257151.922100000083447 ], [ 364551.618699997663498, 257155.765700001269579 ], [ 364551.606805682065897, 257164.356075355928624 ], [ 364550.82490000128746, 257172.910799998790026 ], [ 364549.297382975928485, 257184.27916850024485 ], [ 364548.490699999034405, 257195.7212999984622 ], [ 364558.100500002503395, 257194.640000000596046 ], [ 364569.414099998772144, 257191.777199998497963 ], [ 364578.312299996614456, 257188.472600001841784 ], [ 364585.608599998056889, 257183.888199999928474 ], [ 364590.491499997675419, 257178.65089999884367 ], [ 364594.602200001478195, 257169.39640000090003 ], [ 364597.087600000202656, 257161.606300000101328 ], [ 364598.782999999821186, 257151.909800000488758 ], [ 364551.331799998879433, 257151.922100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602045100", "MAP": "A9-15-T62", "PARCEL_NAM": "129-26", "ACRE": null, "LONGITUDE": -64.89125805, "LATITUDE": 18.34296565, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.70555298299999, "SHAPE_Area": 927.37346675200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363016.351199999451637, 257096.739700000733137 ], [ 362978.66669999808073, 257071.522199999541044 ], [ 362975.407300002872944, 257075.506299998611212 ], [ 362971.352399997413158, 257078.217300001531839 ], [ 362983.989000000059605, 257109.351500000804663 ], [ 363014.664899997413158, 257105.380699999630451 ], [ 363016.351199999451637, 257096.739700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602069200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88340715, "LATITUDE": 18.34247817, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 401.20692427400002, "SHAPE_Area": 10054.3118232 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363755.208599999547005, 257070.489599999040365 ], [ 363760.831200003623962, 257073.06870000064373 ], [ 363777.700800001621246, 257080.594999998807907 ], [ 363795.373199999332428, 257088.55009999871254 ], [ 363813.045500002801418, 257096.505199998617172 ], [ 363830.717799998819828, 257104.460299998521805 ], [ 363846.782899998128414, 257111.769000001251698 ], [ 363890.272699996829033, 257023.465700000524521 ], [ 363797.911799997091293, 256979.857700001448393 ], [ 363755.208599999547005, 257070.489599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602071600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88412907, "LATITUDE": 18.34283201, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.127655468, "SHAPE_Area": 623.21442369399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363755.208599999547005, 257070.489599999040365 ], [ 363743.961599998176098, 257065.542399998754263 ], [ 363730.801600001752377, 257095.832100000232458 ], [ 363747.664099998772144, 257104.202799998223782 ], [ 363760.831200003623962, 257073.06870000064373 ], [ 363755.208599999547005, 257070.489599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602049700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89116233, "LATITUDE": 18.34280806, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.17776540200001, "SHAPE_Area": 785.25195267900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363019.835400000214577, 257066.370700001716614 ], [ 362981.965700000524521, 257062.894400000572205 ], [ 362978.66669999808073, 257071.522199999541044 ], [ 363016.351199999451637, 257096.739700000733137 ], [ 363019.835400000214577, 257066.370700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602045500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89022947, "LATITUDE": 18.34286411, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.943405291, "SHAPE_Area": 870.01324150899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363119.582599997520447, 257094.840399999171495 ], [ 363112.582900002598763, 257064.596700001507998 ], [ 363101.256800003349781, 257068.936999998986721 ], [ 363083.483800001442432, 257072.802299998700619 ], [ 363085.694099999964237, 257097.307199999690056 ], [ 363119.582599997520447, 257094.840399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105801011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86050272, "LATITUDE": 18.34103684, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 737.84529041300004, "SHAPE_Area": 31525.8106878 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366370.586300000548363, 256937.796900000423193 ], [ 366205.88849999755621, 256771.795899998396635 ], [ 366136.164399996399879, 256815.977099999785423 ], [ 366211.174500003457069, 257003.197700001299381 ], [ 366253.547600001096725, 257045.974300000816584 ], [ 366282.833800002932549, 257015.816599998623133 ], [ 366300.707500003278255, 257000.130800001323223 ], [ 366310.446199998259544, 256992.822299998253584 ], [ 366355.129699997603893, 256953.713500000536442 ], [ 366370.586300000548363, 256937.796900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701034900", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-10", "ACRE": ".23", "LONGITUDE": -64.87648691, "LATITUDE": 18.34099506, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.26883578499999, "SHAPE_Area": 880.14359171800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364578.486299999058247, 256884.077100001275539 ], [ 364538.260600000619888, 256873.193199999630451 ], [ 364529.24549999833107, 256890.217999998480082 ], [ 364573.47580000013113, 256904.301100000739098 ], [ 364578.464800000190735, 256886.609999999403954 ], [ 364578.486299999058247, 256884.077100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602053400", "MAP": "A9-102-T68", "PARCEL_NAM": "173-230", "ACRE": "0.11", "LONGITUDE": -64.88442552, "LATITUDE": 18.34063623, "OBJECTID_1": 21306, "PARCEL_NO_": "105602053400", "Tax_Legal_": "ANNAS RETREAT 173-230 NEW QTR", "Name": "BERRY, LOUIS & EULA", "Address": "PO Box 72", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12500, "Improved_V": 63200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.055797999800006, "SHAPE_Area": 460.91582686499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363725.848300002515316, 256825.380699999630451 ], [ 363722.67509999871254, 256823.196199998259544 ], [ 363700.595299996435642, 256851.661699999123812 ], [ 363703.829700000584126, 256854.331399999558926 ], [ 363709.432499997317791, 256859.232400000095367 ], [ 363710.716899998486042, 256859.692600000649691 ], [ 363732.720899999141693, 256830.263700000941753 ], [ 363725.848300002515316, 256825.380699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701045100", "MAP": "G9-660-T62", "PARCEL_NAM": "12", "ACRE": "0.13", "LONGITUDE": -64.88054441, "LATITUDE": 18.34062467, "OBJECTID_1": 22079, "PARCEL_NO_": "105701045100", "Tax_Legal_": "ANNAS RETREAT 12 NEW QUARTER", "Name": "HAWLEY, CECILIA(life estate)", "Address": "PO Box 502326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 9400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.61639082299999, "SHAPE_Area": 545.60049142299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364108.879100002348423, 256824.715999998152256 ], [ 364102.412399999797344, 256826.562899999320507 ], [ 364099.160199999809265, 256829.7027000002563 ], [ 364148.053900003433228, 256864.300000000745058 ], [ 364153.757500000298023, 256857.38060000166297 ], [ 364108.879100002348423, 256824.715999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87275213, "LATITUDE": 18.34060723, "OBJECTID_1": 22731, "PARCEL_NO_": "105702069700", "Tax_Legal_": "57X-60 SMITH BAY EAST END QUARTER", "Name": "COKER, CALVIN & JASINTH", "Address": "PO Box 9596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 106600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.177237717, "SHAPE_Area": 1217.663661 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364964.407200001180172, 256828.12950000166893 ], [ 364945.059299997985363, 256827.548900000751019 ], [ 364947.422499999403954, 256834.112199999392033 ], [ 364928.01519999653101, 256840.49720000103116 ], [ 364935.112000003457069, 256859.342599999159575 ], [ 364936.65990000218153, 256866.954700000584126 ], [ 364936.625699996948242, 256870.965199999511242 ], [ 364968.960900001227856, 256861.519499998539686 ], [ 364969.031099997460842, 256853.287399999797344 ], [ 364964.407200001180172, 256828.12950000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90720154, "LATITUDE": 18.34040639, "OBJECTID_1": 19910, "PARCEL_NO_": "105502040400", "Tax_Legal_": "RAPHUNE ESTATE 2 (Consolidated) 5B NEW QTR.", "Name": "WILLIAMS, LLOYD L & IRENE CREQUE", "Address": "PO Box 7458", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88100, "Improved_V": 562600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.275623263, "SHAPE_Area": 5038.2092776 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361341.805299997329712, 256779.692899998277426 ], [ 361276.787100002169609, 256744.752500001341105 ], [ 361263.068999998271465, 256745.906800001859665 ], [ 361280.4391999989748, 256789.323100000619888 ], [ 361293.707800000905991, 256840.938499998301268 ], [ 361296.980599999427795, 256853.347300000488758 ], [ 361318.187799997627735, 256837.495400000363588 ], [ 361348.258299998939037, 256815.018399998545647 ], [ 361353.738200001418591, 256810.9222999997437 ], [ 361354.648800000548363, 256786.552999999374151 ], [ 361341.805299997329712, 256779.692899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701058200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87468046, "LATITUDE": 18.34060067, "OBJECTID_1": 22156, "PARCEL_NO_": "105701058200", "Tax_Legal_": "SMITH BAY 113-2-E EAST END QTR", "Name": "ANDREW, JEAN DRAGIN", "Address": "6538 SMITH BAY 113-2E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38000, "Improved_V": 94400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.954858298, "SHAPE_Area": 1152.73102939 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364720.060300000011921, 256830.140399999916553 ], [ 364728.755400002002716, 256850.687600001692772 ], [ 364731.946400001645088, 256854.724500000476837 ], [ 364736.755500003695488, 256858.141399998217821 ], [ 364750.426899999380112, 256862.475099999457598 ], [ 364764.076700001955032, 256869.341899998486042 ], [ 364765.994999997317791, 256833.471599999815226 ], [ 364720.060300000011921, 256830.140399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702068800", "MAP": "D9-3914-T87", "PARCEL_NAM": "57X-46", "ACRE": ".25", "LONGITUDE": -64.87345715, "LATITUDE": 18.34054738, "OBJECTID_1": 22722, "PARCEL_NO_": "105702068800", "Tax_Legal_": "SMITH BAY 57X-46 EAST END QTR.", "Name": "GERARD, JAMES ALPHONSO (TRUSTEE)", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 40500, "Improved_V": 71600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.49148451, "SHAPE_Area": 962.26639101299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364892.427799999713898, 256853.082699999213219 ], [ 364876.605400003492832, 256817.278400000184774 ], [ 364855.578400000929832, 256824.494500000029802 ], [ 364865.878799997270107, 256845.899300001561642 ], [ 364871.452899999916553, 256854.177600000053644 ], [ 364884.240599997341633, 256867.5810999982059 ], [ 364887.455099999904633, 256868.874000001698732 ], [ 364889.886600002646446, 256867.416200000792742 ], [ 364892.427799999713898, 256853.082699999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701043400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-52", "ACRE": ".18", "LONGITUDE": -64.88235252, "LATITUDE": 18.34062, "OBJECTID_1": 22064, "PARCEL_NO_": "105701043400", "Tax_Legal_": "148-52 ANNAS RETREAT NEW QTR", "Name": "LYNCH, CHARLES S. & HYACINTH (Life Estate)", "Address": "PO Box 503113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 22600, "Improved_V": 120500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.233112151, "SHAPE_Area": 602.70600136600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363951.434199996292591, 256848.547499999403954 ], [ 363940.352600000798702, 256824.181000001728535 ], [ 363916.033699996769428, 256839.180700000375509 ], [ 363939.255000002682209, 256858.369199998676777 ], [ 363945.761200003325939, 256851.878600001335144 ], [ 363951.434199996292591, 256848.547499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701044400", "MAP": "D9-2341-T83", "PARCEL_NAM": "1", "ACRE": ".24", "LONGITUDE": -64.87984503, "LATITUDE": 18.34057822, "OBJECTID_1": 22073, "PARCEL_NO_": "105701044400", "Tax_Legal_": "ANNAS RETREAT 1 NEW QUARTER", "Name": "MALONE, CAMPBELL & OTHERS", "Address": "PO Box 6513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.601169164, "SHAPE_Area": 670.36051169899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364214.453900001943111, 256831.701799999922514 ], [ 364189.564300000667572, 256819.043499998748302 ], [ 364190.097300000488758, 256851.134100001305342 ], [ 364209.382200002670288, 256859.102400001138449 ], [ 364208.635300002992153, 256852.130199998617172 ], [ 364210.30179999768734, 256845.811000000685453 ], [ 364211.950400002300739, 256841.602699998766184 ], [ 364213.588200002908707, 256838.660799998790026 ], [ 364217.664700001478195, 256833.416799999773502 ], [ 364214.453900001943111, 256831.701799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701034400", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-13", "ACRE": ".23", "LONGITUDE": -64.87597261000001, "LATITUDE": 18.34054318, "OBJECTID_1": 21991, "PARCEL_NO_": "105701034400", "Tax_Legal_": "20-21-13 SMITH BAY EAST END QTR", "Name": "JOHNSON, AUBREY E", "Address": "5300 Psc", "City": "Fpo", "State": null, "Zip": 96351, "Country": "United States", "Land_Value": 28900, "Improved_V": 187000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.48236695400001, "SHAPE_Area": 1563.3537045200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364624.640299998223782, 256861.656700000166893 ], [ 364625.459200002253056, 256860.1858000010252 ], [ 364630.647799998521805, 256819.065000001341105 ], [ 364629.868400000035763, 256815.892200000584126 ], [ 364627.456699997186661, 256815.028099998831749 ], [ 364623.421499997377396, 256815.417300000786781 ], [ 364606.453000001609325, 256819.500300001353025 ], [ 364591.921400003135204, 256821.492300000041723 ], [ 364588.392200000584126, 256857.138199999928474 ], [ 364624.640299998223782, 256861.656700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701034500", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-12", "ACRE": ".23", "LONGITUDE": -64.87630638, "LATITUDE": 18.34054548, "OBJECTID_1": 21992, "PARCEL_NO_": "105701034500", "Tax_Legal_": "20-21-12 SMITH BAY NO. 1,2 &3 EAST END QTR", "Name": "AHMEN, JUDY & XINA EMANUEL-DAWKINS", "Address": "PO Box 306873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38400, "Improved_V": 161400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.70912044900001, "SHAPE_Area": 1057.2408671400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364552.201700001955032, 256845.865100000053644 ], [ 364588.361699998378754, 256860.726500000804663 ], [ 364588.392200000584126, 256857.138199999928474 ], [ 364591.921400003135204, 256821.492300000041723 ], [ 364583.055500000715256, 256820.997499998658895 ], [ 364580.629399999976158, 256821.822000000625849 ], [ 364578.991599999368191, 256824.763900000602007 ], [ 364572.537500001490116, 256825.133299998939037 ], [ 364572.562700003385544, 256822.178199999034405 ], [ 364570.966300003230572, 256820.265299998223782 ], [ 364567.751800000667572, 256818.97239999845624 ], [ 364565.329300001263618, 256819.374800000339746 ], [ 364552.201700001955032, 256845.865100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701061900", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-65", "ACRE": "0.24", "LONGITUDE": -64.87804812, "LATITUDE": 18.3405071, "OBJECTID_1": 22179, "PARCEL_NO_": "105701061900", "Tax_Legal_": "ANNAS RETREAT 173B-65 NEW QUARTER", "Name": "FORD, RICK & RAWLINS, SARAH", "Address": "PO Box 11728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.531322921, "SHAPE_Area": 1165.4126152399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364409.6858000010252, 256821.056200001388788 ], [ 364381.574500001966953, 256807.949400000274181 ], [ 364371.596699997782707, 256843.331500001251698 ], [ 364399.689999997615814, 256858.549100000411272 ], [ 364409.6858000010252, 256821.056200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701045000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-109", "ACRE": ".14", "LONGITUDE": -64.88114543, "LATITUDE": 18.3405727, "OBJECTID_1": 22078, "PARCEL_NO_": "105701045000", "Tax_Legal_": "148-109 ANNAS RETREAT NEW QTR", "Name": "WEBSTER, JETHROE", "Address": "PO Box 302481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 147600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.047889051, "SHAPE_Area": 603.38647316699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364080.555699996650219, 256836.516499999910593 ], [ 364057.309299997985363, 256820.283100001513958 ], [ 364050.776000000536442, 256829.939899999648333 ], [ 364046.706699997186661, 256834.339600000530481 ], [ 364045.882399998605251, 256836.443799998611212 ], [ 364069.107199996709824, 256855.210099998861551 ], [ 364074.834100000560284, 256845.546700000762939 ], [ 364080.555699996650219, 256836.516499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701044700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-47", "ACRE": ".18", "LONGITUDE": -64.88152679, "LATITUDE": 18.34055348, "OBJECTID_1": 22075, "PARCEL_NO_": "105701044700", "Tax_Legal_": "ANNAS RETREAT 148-47 NEW QTR", "Name": "MAC FARLANE, A & RODGERS-REED, C", "Address": "PO Box 303912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24700, "Improved_V": 132500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.235140327099998, "SHAPE_Area": 583.81139767599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364025.089100003242493, 256816.219700001180172 ], [ 364006.326399996876717, 256841.608500000089407 ], [ 364022.359099999070168, 256852.716600000858307 ], [ 364036.228200003504753, 256833.831700000911951 ], [ 364036.292999997735023, 256826.232799999415874 ], [ 364033.901000000536442, 256823.046799998730421 ], [ 364025.089100003242493, 256816.219700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602053500", "MAP": "A9-102-T68", "PARCEL_NAM": "173-231", "ACRE": "0.10", "LONGITUDE": -64.88452515, "LATITUDE": 18.34056015, "OBJECTID_1": 21307, "PARCEL_NO_": "105602053500", "Tax_Legal_": "ANNAS RETREAT 173-231 NEW QTR", "Name": "DEMORIZI, LUZ", "Address": "7192 Estate Tutu", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11400, "Improved_V": 76600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.02127412, "SHAPE_Area": 509.27690226 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363716.228299997746944, 256818.758099999278784 ], [ 363710.692500002682209, 256814.335700001567602 ], [ 363689.951999999582767, 256842.890700001269579 ], [ 363695.822300001978874, 256847.721999999135733 ], [ 363700.595299996435642, 256851.661699999123812 ], [ 363722.67509999871254, 256823.196199998259544 ], [ 363716.228299997746944, 256818.758099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701043900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-51", "ACRE": ".15", "LONGITUDE": -64.88216244, "LATITUDE": 18.34053755, "OBJECTID_1": 22068, "PARCEL_NO_": "105701043900", "Tax_Legal_": "ANNAS RETREAT 148-51 NEW QTR", "Name": "DEGRAFF, MARCIA MIRANDA", "Address": "148-51 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18800, "Improved_V": 168700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.70691935000001, "SHAPE_Area": 539.72772254699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363968.40990000218153, 256843.620200000703335 ], [ 363964.595899999141693, 256818.046599999070168 ], [ 363940.352600000798702, 256824.181000001728535 ], [ 363951.434199996292591, 256848.547499999403954 ], [ 363957.108900003135204, 256845.005300000309944 ], [ 363968.40990000218153, 256843.620200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701044000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-50", "ACRE": ".15", "LONGITUDE": -64.88195526, "LATITUDE": 18.34054195, "OBJECTID_1": 22069, "PARCEL_NO_": "105701044000", "Tax_Legal_": "ANNAS RETREAT 148-50 NEW QTR", "Name": "DAWSON, DEBORAH ANN", "Address": "PO BOX 303845", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 114100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.423524041799993, "SHAPE_Area": 521.005576937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363964.595899999141693, 256818.046599999070168 ], [ 363968.40990000218153, 256843.620200000703335 ], [ 363978.071199998259544, 256845.388000000268221 ], [ 363983.688500002026558, 256848.600400000810623 ], [ 363991.895400002598763, 256831.780099999159575 ], [ 363994.341399997472763, 256828.633699998259544 ], [ 363964.595899999141693, 256818.046599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069200", "MAP": "D9-3914-T87", "PARCEL_NAM": "57X-45", "ACRE": ".26", "LONGITUDE": -64.87322522, "LATITUDE": 18.34043566, "OBJECTID_1": 22726, "PARCEL_NO_": "105702069200", "Tax_Legal_": "SMITH BAY 57X-45 EASTEND QTR.", "Name": "FRANCIS, RAY", "Address": "PO Box 10093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42100, "Improved_V": 167000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.328456757, "SHAPE_Area": 1324.98016183 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364923.929700002074242, 256846.796599999070168 ], [ 364923.153999999165535, 256843.201699998229742 ], [ 364919.977300003170967, 256837.476100001484156 ], [ 364913.699400000274181, 256817.159800000488758 ], [ 364912.997400000691414, 256804.910599999129772 ], [ 364910.571299999952316, 256805.735100001096725 ], [ 364876.605400003492832, 256817.278400000184774 ], [ 364892.427799999713898, 256853.082699999213219 ], [ 364911.037699997425079, 256845.635600000619888 ], [ 364923.929700002074242, 256846.796599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102-T68", "PARCEL_NAM": "173-232", "ACRE": "0.10", "LONGITUDE": -64.88464027000001, "LATITUDE": 18.34047393, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.070578357, "SHAPE_Area": 582.98063185399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363703.415399998426437, 256808.309599999338388 ], [ 363697.812600001692772, 256803.408599998801947 ], [ 363677.402999997138977, 256832.794700000435114 ], [ 363687.013999998569489, 256840.472699999809265 ], [ 363689.951999999582767, 256842.890700001269579 ], [ 363710.692500002682209, 256814.335700001567602 ], [ 363707.418200001120567, 256811.719900000840425 ], [ 363703.415399998426437, 256808.309599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702034500", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-26", "ACRE": "0.20", "LONGITUDE": -64.86807407000001, "LATITUDE": 18.34048751, "OBJECTID_1": 22512, "PARCEL_NO_": "105702034500", "Tax_Legal_": "SMITH BAY 100-26 EAST END QTR.", "Name": "WILKINSON, LEONARD & CARMEL", "Address": "8298 Dora St", "City": "Spring Hill", "State": "Florida", "Zip": 34608, "Country": "United States", "Land_Value": 26000, "Improved_V": 189600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.48187737799999, "SHAPE_Area": 925.58807254299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365425.662900000810623, 256826.627300001680851 ], [ 365426.269599996507168, 256850.0636 ], [ 365456.878899998962879, 256853.902800001204014 ], [ 365461.72580000013113, 256852.886999998241663 ], [ 365465.159599997103214, 256828.428199999034405 ], [ 365425.662900000810623, 256826.627300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701044800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-48", "ACRE": ".18", "LONGITUDE": -64.88166333, "LATITUDE": 18.3404533, "OBJECTID_1": 22076, "PARCEL_NO_": "105701044800", "Tax_Legal_": "ANNAS RETREAT 148-48 NEW QTR", "Name": "ADAMS, ALPHEUS", "Address": "PO Box 202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24700, "Improved_V": 106000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.657679787399999, "SHAPE_Area": 563.55722400399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364025.089100003242493, 256816.219700001180172 ], [ 364011.475299999117851, 256805.131400000303984 ], [ 363994.341399997472763, 256828.633699998259544 ], [ 363991.895400002598763, 256831.780099999159575 ], [ 364006.326399996876717, 256841.608500000089407 ], [ 364025.089100003242493, 256816.219700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105602018800", "MAP": "F9-1913-T66", "PARCEL_NAM": "145A", "ACRE": ".039", "LONGITUDE": -64.88700136, "LATITUDE": 18.34037338, "OBJECTID_1": 21001, "PARCEL_NO_": "105602018800", "Tax_Legal_": "145&145A ANNAS RETREAT NEW QTR", "Name": "CHEVRON PUERTO RICO LLC", "Address": "PO BOX 11961", "City": "San Juan", "State": "Puerto Rico", "Zip": 922, "Country": "United States", "Land_Value": 169900, "Improved_V": 19500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.378940789, "SHAPE_Area": 301.77788881499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363452.041900001466274, 256783.243099998682737 ], [ 363446.395900003612041, 256783.407999999821186 ], [ 363437.075099997222424, 256836.316199999302626 ], [ 363442.715700000524521, 256836.784499999135733 ], [ 363452.041900001466274, 256783.243099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105602018800", "MAP": "D9-614-T66", "PARCEL_NAM": "145", "ACRE": ".50", "LONGITUDE": -64.88725854, "LATITUDE": 18.3403604, "OBJECTID_1": 21001, "PARCEL_NO_": "105602018800", "Tax_Legal_": "145&145A ANNAS RETREAT NEW QTR", "Name": "CHEVRON PUERTO RICO LLC", "Address": "PO BOX 11961", "City": "San Juan", "State": "Puerto Rico", "Zip": 922, "Country": "United States", "Land_Value": 169900, "Improved_V": 19500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.084600682, "SHAPE_Area": 2506.4737083099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363446.395900003612041, 256783.407999999821186 ], [ 363409.310900002717972, 256782.471200000494719 ], [ 363405.270400002598763, 256783.493500001728535 ], [ 363400.409100003540516, 256786.197999998927116 ], [ 363396.345200002193451, 256789.964400000870228 ], [ 363393.071400001645088, 256795.637099999934435 ], [ 363389.677100002765656, 256815.452100001275539 ], [ 363386.33500000089407, 256829.145899999886751 ], [ 363437.075099997222424, 256836.316199999302626 ], [ 363446.395900003612041, 256783.407999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701062300", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-67", "ACRE": "0.24", "LONGITUDE": -64.87858824, "LATITUDE": 18.34034658, "OBJECTID_1": 22183, "PARCEL_NO_": "105701062300", "Tax_Legal_": "ANNAS RETREAT 173B-67 NEW QTR.", "Name": "ROLAND HENDERSON", "Address": "173B-67 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 132900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.55824410700001, "SHAPE_Area": 1314.93638627 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364345.029700003564358, 256838.258900001645088 ], [ 364350.250600002706051, 256793.338700000196695 ], [ 364345.432499997317791, 256790.977200001478195 ], [ 364338.182899996638298, 256790.073499999940395 ], [ 364326.854999996721745, 256794.624899998307228 ], [ 364317.92620000243187, 256801.517900001257658 ], [ 364313.833499997854233, 256808.66160000115633 ], [ 364328.858499996364117, 256843.403900001198053 ], [ 364335.336000002920628, 256840.290500000119209 ], [ 364345.029700003564358, 256838.258900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701062100", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-66", "ACRE": "0.23", "LONGITUDE": -64.87832198, "LATITUDE": 18.34038695, "OBJECTID_1": 22181, "PARCEL_NO_": "105701062100", "Tax_Legal_": "ANNAS RETREAT 173B-66 NEW QTR", "Name": "SMITH, BEVERLY I", "Address": "PO Box 11474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 168800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.99297362499999, "SHAPE_Area": 1203.19633535 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364381.574500001966953, 256807.949400000274181 ], [ 364350.250600002706051, 256793.338700000196695 ], [ 364345.029700003564358, 256838.258900001645088 ], [ 364350.677500002086163, 256837.88289999961853 ], [ 364360.344300001859665, 256839.017499998211861 ], [ 364371.596699997782707, 256843.331500001251698 ], [ 364381.574500001966953, 256807.949400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702034600", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-25", "ACRE": "0.21", "LONGITUDE": -64.86839275, "LATITUDE": 18.34043506, "OBJECTID_1": 22513, "PARCEL_NO_": "105702034600", "Tax_Legal_": "SMITH BAY 100-25 EASTEND QUARTER", "Name": "THOMAS-MATTHIAS, VERNA J", "Address": "PO Box 12539", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018539, "Country": "United States", "Land_Value": 25000, "Improved_V": 108600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.59701173800001, "SHAPE_Area": 939.63152342399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365425.662900000810623, 256826.627300001680851 ], [ 365425.777999997138977, 256813.118200000375509 ], [ 365408.001299999654293, 256817.405699998140335 ], [ 365387.645700000226498, 256840.459399998188019 ], [ 365392.451200000941753, 256844.29839999973774 ], [ 365398.881899997591972, 256846.673099998384714 ], [ 365426.269599996507168, 256850.0636 ], [ 365425.662900000810623, 256826.627300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701045400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-110", "ACRE": ".14", "LONGITUDE": -64.88104226, "LATITUDE": 18.34042617, "OBJECTID_1": 22082, "PARCEL_NO_": "105701045400", "Tax_Legal_": "ANNAS RETREAT 148-110 NEW QTR", "Name": "PROCTOR, SHALYN", "Address": "PO Box 10836", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 191000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.864107468300006, "SHAPE_Area": 511.13227262599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364091.147399999201298, 256823.726500000804663 ], [ 364069.533399999141693, 256805.184399999678135 ], [ 364057.309299997985363, 256820.283100001513958 ], [ 364080.555699996650219, 256836.516499999910593 ], [ 364091.147399999201298, 256823.726500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102-T68", "PARCEL_NAM": "173-233", "ACRE": "0.10", "LONGITUDE": -64.88474194, "LATITUDE": 18.34039851, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.750268464800001, "SHAPE_Area": 387.05289886899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363690.615099996328354, 256796.383600000292063 ], [ 363668.596500001847744, 256825.334300000220537 ], [ 363677.402999997138977, 256832.794700000435114 ], [ 363697.812600001692772, 256803.408599998801947 ], [ 363690.615099996328354, 256796.383600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069100", "MAP": "D9-4514-T88", "PARCEL_NAM": "57X-48", "ACRE": ".23", "LONGITUDE": -64.87292559, "LATITUDE": 18.34037273, "OBJECTID_1": 22725, "PARCEL_NO_": "105702069100", "Tax_Legal_": "57X-48 SMITH BAY EAST END QTR.", "Name": "HENRY, SAMUEL A", "Address": "57X-48 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 1300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.971348588, "SHAPE_Area": 637.513045444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364919.440700002014637, 256805.807700000703335 ], [ 364920.158900000154972, 256816.157200001180172 ], [ 364925.641199998557568, 256835.200500000268221 ], [ 364928.01519999653101, 256840.49720000103116 ], [ 364947.422499999403954, 256834.112199999392033 ], [ 364945.059299997985363, 256827.548900000751019 ], [ 364937.969700001180172, 256807.859200000762939 ], [ 364919.440700002014637, 256805.807700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602070100", "MAP": "B9-432-T74", "PARCEL_NAM": "REM 387", "ACRE": "2.47", "LONGITUDE": -64.8826435, "LATITUDE": 18.33966737, "OBJECTID_1": 21315, "PARCEL_NO_": "105602070100", "Tax_Legal_": "388 & 387 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 0, "Improved_V": 2032600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 416.15450053900003, "SHAPE_Area": 10424.0647245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363965.086800001561642, 256760.422100000083447 ], [ 363972.428099997341633, 256750.5608000010252 ], [ 363978.950599998235703, 256742.170499999076128 ], [ 363978.973899997770786, 256739.426399998366833 ], [ 363982.290899999439716, 256728.687800001353025 ], [ 363983.126000002026558, 256725.317099999636412 ], [ 363979.146600000560284, 256719.162900000810623 ], [ 363971.985100001096725, 256707.916299998760223 ], [ 363970.39580000191927, 256705.159099999815226 ], [ 363965.624499998986721, 256697.309599999338388 ], [ 363931.80969999730587, 256691.12220000103116 ], [ 363919.684399999678135, 256694.6114999987185 ], [ 363909.200599998235703, 256694.736800000071526 ], [ 363896.297799997031689, 256694.842300001531839 ], [ 363874.512999996542931, 256696.352800000458956 ], [ 363849.499300003051758, 256698.25899999961257 ], [ 363832.305399999022484, 256759.859099999070168 ], [ 363862.400700002908707, 256766.747099999338388 ], [ 363872.322599999606609, 256786.590900000184774 ], [ 363885.037500001490116, 256797.141499999910593 ], [ 363948.972499996423721, 256757.080899998545647 ], [ 363965.086800001561642, 256760.422100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87240249, "LATITUDE": 18.34038554, "OBJECTID_1": 22732, "PARCEL_NO_": "105702069800", "Tax_Legal_": "SMITH BAY 57X61 EAST END", "Name": "INDUSTRIOUS, JENE & REHENIA", "Address": "PO Box 10827", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 73700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.98012831099999, "SHAPE_Area": 1018.52076735 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365004.837899997830391, 256814.950399998575449 ], [ 364976.690700002014637, 256806.065200001001358 ], [ 364971.86540000140667, 256804.548000000417233 ], [ 364970.855899997055531, 256828.393300000578165 ], [ 364972.367799997329712, 256840.227000001817942 ], [ 365007.868900001049042, 256837.773299999535084 ], [ 365004.837899997830391, 256814.950399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702034300", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-28", "ACRE": ".20", "LONGITUDE": -64.86765269, "LATITUDE": 18.34028114, "OBJECTID_1": 22510, "PARCEL_NO_": "105702034300", "Tax_Legal_": "SMITH BAY 100-28 EAST END QTR.", "Name": "CHARLES, PAUL", "Address": "PO BOX 1691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.17527124899999, "SHAPE_Area": 1200.7138376099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365472.757399998605251, 256835.59010000154376 ], [ 365501.756999999284744, 256837.760899998247623 ], [ 365504.288000002503395, 256823.895599998533726 ], [ 365507.551700003445148, 256795.636100001633167 ], [ 365473.451099999248981, 256801.687199998646975 ], [ 365473.220899999141693, 256828.705299999564886 ], [ 365472.757399998605251, 256835.59010000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702034700", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-24", "ACRE": "0.21", "LONGITUDE": -64.86859183, "LATITUDE": 18.34029487, "OBJECTID_1": 22514, "PARCEL_NO_": "105702034700", "Tax_Legal_": "SMITH BAY 100-24 EASTEND QTR.", "Name": "JOSEPH, YVONNE & KEITHLEY", "Address": "6551 EAST 83-4 EST. SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22700, "Improved_V": 280800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.116577795, "SHAPE_Area": 814.27223606200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365408.001299999654293, 256817.405699998140335 ], [ 365406.507399998605251, 256803.461300000548363 ], [ 365370.1908999979496, 256806.963799998164177 ], [ 365384.456399999558926, 256836.211399998515844 ], [ 365387.645700000226498, 256840.459399998188019 ], [ 365408.001299999654293, 256817.405699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102-T68", "PARCEL_NAM": "173-234", "ACRE": "0.12", "LONGITUDE": -64.8848207, "LATITUDE": 18.34032675, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.806417865699999, "SHAPE_Area": 433.94256259700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363682.616700001060963, 256788.718800000846386 ], [ 363659.815200001001358, 256814.9189000017941 ], [ 363668.596500001847744, 256825.334300000220537 ], [ 363690.615099996328354, 256796.383600000292063 ], [ 363682.616700001060963, 256788.718800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701061000", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-50", "ACRE": "0.23", "LONGITUDE": -64.88019028, "LATITUDE": 18.34024503, "OBJECTID_1": 22172, "PARCEL_NO_": "105701061000", "Tax_Legal_": "ANNAS RETREAT 173B-50 NEW QTR.", "Name": "SMITH, RICHARD & GWENETH", "Address": "PO Box 302082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26200, "Improved_V": 45600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.132006133, "SHAPE_Area": 1184.36593221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364178.560199998319149, 256795.61939999833703 ], [ 364160.08500000089407, 256777.21680000051856 ], [ 364140.5878000035882, 256794.155799999833107 ], [ 364137.348200000822544, 256795.81810000166297 ], [ 364160.248000003397465, 256814.579700000584126 ], [ 364177.386900000274181, 256828.654199998825788 ], [ 364181.009800001978874, 256824.179299999028444 ], [ 364183.436899997293949, 256818.656899999827147 ], [ 364183.965999998152256, 256815.151200000196695 ], [ 364183.289800003170967, 256812.707899998873472 ], [ 364181.51860000193119, 256812.108500000089407 ], [ 364180.261900000274181, 256808.139699999243021 ], [ 364181.452500000596046, 256806.1554000005126 ], [ 364186.281099997460842, 256803.641800001263618 ], [ 364184.872100003063679, 256801.906599998474121 ], [ 364178.560199998319149, 256795.61939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701058300", "MAP": "F9-3354-T75", "PARCEL_NAM": "113-2F", "ACRE": "0.28", "LONGITUDE": -64.87474184, "LATITUDE": 18.3403444, "OBJECTID_1": 22157, "PARCEL_NO_": "105701058300", "Tax_Legal_": "113-2F SMITH BAY EAST END QTR", "Name": "HERMON, LIONEL, PERKINS, MONIQUE H.", "Address": "PO Box 8334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.65306276699999, "SHAPE_Area": 1311.87272042 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364767.780199997127056, 256813.2212999984622 ], [ 364715.504799999296665, 256796.961399998515844 ], [ 364716.982500001788139, 256812.805500000715256 ], [ 364720.060300000011921, 256830.140399999916553 ], [ 364765.994999997317791, 256833.471599999815226 ], [ 364766.86599999666214, 256825.879399999976158 ], [ 364767.780199997127056, 256813.2212999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701061200", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-49", "ACRE": "0.23", "LONGITUDE": -64.87971851, "LATITUDE": 18.34030569, "OBJECTID_1": 22174, "PARCEL_NO_": "105701061200", "Tax_Legal_": "ANNAS RETREAT 173B-49 NEW QTR.", "Name": "GEORGE, KOTNIE", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37800, "Improved_V": 249100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.470605135, "SHAPE_Area": 1052.3075157000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364239.638400003314018, 256809.743099998682737 ], [ 364211.598999999463558, 256788.19310000166297 ], [ 364190.458700001239777, 256808.707299999892712 ], [ 364190.424500003457069, 256812.717799998819828 ], [ 364216.905199997127056, 256827.922100000083447 ], [ 364218.537600003182888, 256825.613499999046326 ], [ 364221.782600000500679, 256823.317999999970198 ], [ 364230.677199997007847, 256820.435499999672174 ], [ 364239.638400003314018, 256809.743099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701045700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-111", "ACRE": ".14", "LONGITUDE": -64.88093159, "LATITUDE": 18.34030499, "OBJECTID_1": 22085, "PARCEL_NO_": "105701045700", "Tax_Legal_": "ANNAS RETREAT 148-111 NEW QTR", "Name": "WELLS,TRUSTEE, ALMA C.", "Address": "PO Box 7034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 125800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.380930146400004, "SHAPE_Area": 496.75007052900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364101.715800002217293, 256813.680500000715256 ], [ 364084.970200002193451, 256791.589699998497963 ], [ 364076.039700001478195, 256798.693799998611212 ], [ 364069.533399999141693, 256805.184399999678135 ], [ 364091.147399999201298, 256823.726500000804663 ], [ 364101.715800002217293, 256813.680500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701061600", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-2", "ACRE": "0.23", "LONGITUDE": -64.87771678, "LATITUDE": 18.34020631, "OBJECTID_1": 22176, "PARCEL_NO_": "105701061600", "Tax_Legal_": "ANNAS RETREAT 173B-2 NEW QTR.", "Name": "KING, ZAMBIA T L", "Address": "244 Fifth Ave", "City": "New York", "State": "New York", "Zip": 10001, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.32842606899999, "SHAPE_Area": 1027.28741294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364443.079099997878075, 256782.066100001335144 ], [ 364439.868199996650219, 256780.351100001484156 ], [ 364436.61599999666214, 256783.490899998694658 ], [ 364431.772699996829033, 256784.084499999880791 ], [ 364428.55460000038147, 256783.213799998164177 ], [ 364426.151900000870228, 256781.294300001114607 ], [ 364423.776100002229214, 256776.208599999547005 ], [ 364418.976000003516674, 256771.736400000751019 ], [ 364409.743299998342991, 256814.301699999719858 ], [ 364419.381300002336502, 256818.813499998301268 ], [ 364423.421899996697903, 256817.79109999909997 ], [ 364426.63629999756813, 256819.083999998867512 ], [ 364427.392300002276897, 256825.000799998641014 ], [ 364433.027500003576279, 256826.102400001138449 ], [ 364443.079099997878075, 256782.066100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105603019900", "MAP": "D9-7573-T005", "PARCEL_NAM": "26", "ACRE": "26.534", "LONGITUDE": -64.89031995000001, "LATITUDE": 18.33812984, "OBJECTID_1": 21542, "PARCEL_NO_": "105603019900", "Tax_Legal_": "26 REM ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 2314700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1526.6053104499999, "SHAPE_Area": 104238.249157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363104.513300001621246, 256833.954199999570847 ], [ 363200.197999998927116, 256779.603700000792742 ], [ 363214.346100002527237, 256781.049100000411272 ], [ 363243.231499999761581, 256764.618599999696016 ], [ 363242.165799997746944, 256755.765299998223782 ], [ 363238.071699999272823, 256721.752300001680851 ], [ 363223.76410000026226, 256602.789599999785423 ], [ 363222.254000000655651, 256590.744899999350309 ], [ 363158.373700000345707, 256611.542500000447035 ], [ 363137.992200002074242, 256542.9814000017941 ], [ 363216.387900002300739, 256522.091499999165535 ], [ 363201.633699998259544, 256360.906300000846386 ], [ 363128.904799997806549, 256284.528499998152256 ], [ 363039.510899998247623, 256365.912200000137091 ], [ 362899.690499998629093, 256497.9679000005126 ], [ 362907.654700003564358, 256509.643199998885393 ], [ 362935.791599996387959, 256550.890999998897314 ], [ 363104.513300001621246, 256833.954199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702068200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87268634, "LATITUDE": 18.34029192, "OBJECTID_1": 22717, "PARCEL_NO_": "105702068200", "Tax_Legal_": "SMITH BAY 57X-42 EAST END QTR.", "Name": "GRELL, JESSICA P.", "Address": "PO Box 306922", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30200, "Improved_V": 174400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.53000439, "SHAPE_Area": 730.95563485299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364971.86540000140667, 256804.548000000417233 ], [ 364961.412100002169609, 256801.08500000089407 ], [ 364945.330799996852875, 256795.675999999046326 ], [ 364945.059299997985363, 256827.548900000751019 ], [ 364964.407200001180172, 256828.12950000166893 ], [ 364970.855899997055531, 256828.393300000578165 ], [ 364971.86540000140667, 256804.548000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87431121, "LATITUDE": 18.34031039, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.30638714600001, "SHAPE_Area": 872.99563657099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364799.336099997162819, 256800.602800000458956 ], [ 364768.676399998366833, 256802.673900000751019 ], [ 364767.780199997127056, 256813.2212999984622 ], [ 364766.86599999666214, 256825.879399999976158 ], [ 364807.179799996316433, 256826.420499999076128 ], [ 364799.336099997162819, 256800.602800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102-T68", "PARCEL_NAM": "173-235", "ACRE": "0.10", "LONGITUDE": -64.88490213, "LATITUDE": 18.34024835, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.504512854300003, "SHAPE_Area": 400.40394780299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363677.825599998235703, 256783.191199999302626 ], [ 363677.030599996447563, 256782.132199998944998 ], [ 363651.185500003397465, 256802.010999999940395 ], [ 363653.445600003004074, 256805.367499999701977 ], [ 363659.815200001001358, 256814.9189000017941 ], [ 363682.616700001060963, 256788.718800000846386 ], [ 363677.825599998235703, 256783.191199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704015800", "MAP": "D9-1765-T81", "PARCEL_NAM": "57Z-1", "ACRE": "0.85", "LONGITUDE": -64.87350525, "LATITUDE": 18.340013, "OBJECTID_1": 23503, "PARCEL_NO_": "105704015800", "Tax_Legal_": "57Z-1 SMITH BAY NO. 2&3 EAST END QTR", "Name": "FRANCIS, VELMA", "Address": "462 Champlain Ave", "City": "West Hempstead", "State": "New York", "Zip": 11552, "Country": "United States", "Land_Value": 116400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.69908524100001, "SHAPE_Area": 3335.8112795299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364879.558399997651577, 256754.607700001448393 ], [ 364864.448899999260902, 256729.786100000143051 ], [ 364862.805699996650219, 256733.361299999058247 ], [ 364850.586900003254414, 256747.826699998229742 ], [ 364846.479800000786781, 256756.659000001847744 ], [ 364843.220399998128414, 256760.643100000917912 ], [ 364842.397900000214577, 256762.536299999803305 ], [ 364843.144900001585484, 256769.508499998599291 ], [ 364850.24889999628067, 256787.509500000625849 ], [ 364852.599500000476837, 256795.550299998372793 ], [ 364854.914099998772144, 256807.812699999660254 ], [ 364855.578400000929832, 256824.494500000029802 ], [ 364876.605400003492832, 256817.278400000184774 ], [ 364910.571299999952316, 256805.735100001096725 ], [ 364879.558399997651577, 256754.607700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704062700", "MAP": "D9-7389-T004", "PARCEL_NAM": "57W-1-1", "ACRE": ".25", "LONGITUDE": -64.87187798, "LATITUDE": 18.33930983, "OBJECTID_1": 23687, "PARCEL_NO_": "105704062700", "Tax_Legal_": "57W-1-1 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "HYACINTH, SIMON & ROMA", "Address": "PO Box 502612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27000, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.170292735, "SHAPE_Area": 1579.58373456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365035.900700002908707, 256731.920099999755621 ], [ 365067.479500003159046, 256720.674699999392033 ], [ 365062.204000003635883, 256706.91780000180006 ], [ 365058.305500000715256, 256691.265000000596046 ], [ 365057.643100000917912, 256674.372099999338388 ], [ 365029.263899996876717, 256692.715999998152256 ], [ 365017.910800002515316, 256700.222500000149012 ], [ 365021.078500002622604, 256707.003400001674891 ], [ 365035.900700002908707, 256731.920099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702034400", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-27", "ACRE": "0.21", "LONGITUDE": -64.86800772, "LATITUDE": 18.34028499, "OBJECTID_1": 22511, "PARCEL_NO_": "105702034400", "Tax_Legal_": "SMITH 100-27 EASTEND QTR.", "Name": "EDWARDS, JUSTIN", "Address": "PO Box 307772", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 197000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.15687228799999, "SHAPE_Area": 965.84159110200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365473.451099999248981, 256801.687199998646975 ], [ 365425.777999997138977, 256813.118200000375509 ], [ 365425.662900000810623, 256826.627300001680851 ], [ 365465.159599997103214, 256828.428199999034405 ], [ 365473.220899999141693, 256828.705299999564886 ], [ 365473.451099999248981, 256801.687199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701045800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-112", "ACRE": ".14", "LONGITUDE": -64.88077338, "LATITUDE": 18.34020642, "OBJECTID_1": 22086, "PARCEL_NO_": "105701045800", "Tax_Legal_": "ANNAS RETREAT 148-112 NEW QTR", "Name": "DONOVAN, LEONARD & ERICA", "Address": "PO Box 9917", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 210400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.633057275, "SHAPE_Area": 619.21442996200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364120.341899998486042, 256804.333700001239777 ], [ 364105.228699997067451, 256779.934300001710653 ], [ 364084.970200002193451, 256791.589699998497963 ], [ 364101.715800002217293, 256813.680500000715256 ], [ 364120.341899998486042, 256804.333700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701061800", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-4", "ACRE": "0.23", "LONGITUDE": -64.87791196000001, "LATITUDE": 18.34011599, "OBJECTID_1": 22178, "PARCEL_NO_": "105701061800", "Tax_Legal_": "173B-4 ANNAS RETREAT NO.1 NEW QTR", "Name": "CHRISTOPHER, BRYAN, BRENT & BRYCE", "Address": "1427 Londra Ln", "City": "Kissimmee", "State": "Florida", "Zip": 34744, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.985812018, "SHAPE_Area": 814.86879706900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364418.976000003516674, 256771.736400000751019 ], [ 364403.718999996781349, 256764.223200000822544 ], [ 364390.467299997806549, 256805.278000000864267 ], [ 364409.743299998342991, 256814.301699999719858 ], [ 364418.976000003516674, 256771.736400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704061200", "MAP": "A9-324-T85", "PARCEL_NAM": "57Y-16", "ACRE": "0.44", "LONGITUDE": -64.87194794, "LATITUDE": 18.33992548, "OBJECTID_1": 23676, "PARCEL_NO_": "105704061200", "Tax_Legal_": "SMITH BAY 57Y-16 1,2&3 EAST END QTR.", "Name": "JACOBS, ANN MARIE", "Address": "PO Box 10541", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.152668847, "SHAPE_Area": 1690.9265685400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365025.69879999756813, 256732.583500001579523 ], [ 365006.163900002837181, 256753.955200001597404 ], [ 365014.160499997437, 256761.8310999982059 ], [ 365023.710299998521805, 256776.6858000010252 ], [ 365039.656800001859665, 256797.925700001418591 ], [ 365044.453299999237061, 256802.820099998265505 ], [ 365064.483400002121925, 256817.971700001507998 ], [ 365067.703299999237061, 256818.631299998611212 ], [ 365067.7212999984622, 256816.520500000566244 ], [ 365063.74549999833107, 256809.944099999964237 ], [ 365052.714199997484684, 256779.667399998754263 ], [ 365046.357199996709824, 256768.6385000012815 ], [ 365040.770599998533726, 256761.837799999862909 ], [ 365035.203699998557568, 256752.715199999511242 ], [ 365025.69879999756813, 256732.583500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102-T68", "PARCEL_NAM": "173-236", "ACRE": "0.10", "LONGITUDE": -64.88497038, "LATITUDE": 18.34014699, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.469406744400004, "SHAPE_Area": 453.42772597499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363677.030599996447563, 256782.132199998944998 ], [ 363673.839000001549721, 256777.88120000064373 ], [ 363671.283699996769428, 256772.411200001835823 ], [ 363642.304700002074242, 256787.966699998825788 ], [ 363647.871500000357628, 256797.089299999177456 ], [ 363651.185500003397465, 256802.010999999940395 ], [ 363677.030599996447563, 256782.132199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701061300", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-48", "ACRE": "0.23", "LONGITUDE": -64.87952388, "LATITUDE": 18.34012443, "OBJECTID_1": 22175, "PARCEL_NO_": "105701061300", "Tax_Legal_": "ANNAS RETREAT 173B-48 NEW QTR.", "Name": "JOSEPH, JAMES & OLIVE", "Address": "PO Box 9622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 246400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.846410105, "SHAPE_Area": 936.9931567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364258.372400000691414, 256787.731600001454353 ], [ 364230.302500002086163, 256769.769999999552965 ], [ 364211.598999999463558, 256788.19310000166297 ], [ 364239.638400003314018, 256809.743099998682737 ], [ 364258.372400000691414, 256787.731600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701058100", "MAP": "F9-3354-T75", "PARCEL_NAM": "113-2G", "ACRE": "0.25", "LONGITUDE": -64.87468056, "LATITUDE": 18.34012106, "OBJECTID_1": 22155, "PARCEL_NO_": "105701058100", "Tax_Legal_": "SMITH BAY 113-2G EAST END QTR", "Name": "ETIENNE, JOHNNY & EUGENE", "Address": "PO Box 9619", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 151000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.19608892799999, "SHAPE_Area": 1314.8524962199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364768.676399998366833, 256802.673900000751019 ], [ 364770.508500002324581, 256776.935499999672174 ], [ 364722.075800001621246, 256782.871899999678135 ], [ 364719.640600003302097, 256784.751800000667572 ], [ 364717.189300000667572, 256788.531500000506639 ], [ 364715.531800001859665, 256793.795200001448393 ], [ 364715.504799999296665, 256796.961399998515844 ], [ 364767.780199997127056, 256813.2212999984622 ], [ 364768.676399998366833, 256802.673900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701045900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-113", "ACRE": ".14", "LONGITUDE": -64.88058803, "LATITUDE": 18.34011117, "OBJECTID_1": 22087, "PARCEL_NO_": "105701045900", "Tax_Legal_": "ANNAS RETREAT 148-113 1 NEW QTR", "Name": "DELYN H WILLETT, LETISHMA O & LECHEEA D SMITH", "Address": "PO Box 8657", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 51100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.884513075, "SHAPE_Area": 659.38418903499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364140.5878000035882, 256794.155799999833107 ], [ 364123.872800000011921, 256768.476700000464916 ], [ 364105.228699997067451, 256779.934300001710653 ], [ 364120.341899998486042, 256804.333700001239777 ], [ 364137.348200000822544, 256795.81810000166297 ], [ 364140.5878000035882, 256794.155799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701062000", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-6", "ACRE": "0.23", "LONGITUDE": -64.87812476000001, "LATITUDE": 18.3400202, "OBJECTID_1": 22180, "PARCEL_NO_": "105701062000", "Tax_Legal_": "ANNAS RETREAT 173B-6 NEW QTR.", "Name": "ALEXANDER, DOMINIQUE & PAULETT", "Address": "PO Box 10469", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.987753505, "SHAPE_Area": 1267.36348385 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364403.718999996781349, 256764.223200000822544 ], [ 364392.462999999523163, 256760.331399999558926 ], [ 364371.542000003159046, 256755.093899998813868 ], [ 364364.762500002980232, 256793.668600000441074 ], [ 364390.467299997806549, 256805.278000000864267 ], [ 364403.718999996781349, 256764.223200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87388754, "LATITUDE": 18.34011149, "OBJECTID_1": 22626, "PARCEL_NO_": "105702060500", "Tax_Legal_": "SMITH BAY 57-O EAST END QTR", "Name": "DORE, EDMUND C", "Address": "BOX 4192", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28200, "Improved_V": 142200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.430800535, "SHAPE_Area": 606.61963235999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364845.247400000691414, 256806.678100001066923 ], [ 364842.146200001239777, 256792.08729999884963 ], [ 364836.620700001716614, 256778.109900001436472 ], [ 364835.02419999986887, 256776.197000000625849 ], [ 364833.417000003159046, 256775.550500001758337 ], [ 364829.3800999969244, 256776.150800000876188 ], [ 364821.234200000762939, 256785.794399999082088 ], [ 364817.989200003445148, 256788.089899998158216 ], [ 364813.945000000298023, 256789.534400001168251 ], [ 364813.092000000178814, 256795.015900000929832 ], [ 364837.169900000095367, 256808.300799999386072 ], [ 364845.247400000691414, 256806.678100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701061100", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-51", "ACRE": "0.23", "LONGITUDE": -64.88002543, "LATITUDE": 18.34004115, "OBJECTID_1": 22173, "PARCEL_NO_": "105701061100", "Tax_Legal_": "ANNAS RETREAT 173B-51 NEW QTR.", "Name": "LOUISE MCSWEEN TRUST", "Address": "PO Box 11484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30500, "Improved_V": 126100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.322318619, "SHAPE_Area": 981.15987688200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364173.102799996733665, 256763.602299999445677 ], [ 364160.08500000089407, 256777.21680000051856 ], [ 364184.872100003063679, 256801.906599998474121 ], [ 364187.314400002360344, 256799.182300001382828 ], [ 364204.390799999237061, 256782.434599999338388 ], [ 364179.61089999973774, 256756.900600001215935 ], [ 364173.102799996733665, 256763.602299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704060400", "MAP": "A9-324-T85", "PARCEL_NAM": "57Z-2-19", "ACRE": "0.34", "LONGITUDE": -64.8731901, "LATITUDE": 18.33979452, "OBJECTID_1": 23668, "PARCEL_NO_": "105704060400", "Tax_Legal_": "57Z-2-19 SMITH BAY NO.1,2& EAST END QTR", "Name": "KEEZI J. PINNEY & GREGORY GARBUTT", "Address": "PO BOX 306706", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.12961703900001, "SHAPE_Area": 1571.3559508599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364931.232600003480911, 256746.798000000417233 ], [ 364917.708700001239777, 256725.155799999833107 ], [ 364879.558399997651577, 256754.607700001448393 ], [ 364910.571299999952316, 256805.735100001096725 ], [ 364912.997400000691414, 256804.910599999129772 ], [ 364908.407700002193451, 256775.74210000038147 ], [ 364908.461599998176098, 256769.409800000488758 ], [ 364911.746200002729893, 256762.470600001513958 ], [ 364918.26860000193119, 256754.080200001597404 ], [ 364927.994699999690056, 256748.249200001358986 ], [ 364931.232600003480911, 256746.798000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87431851, "LATITUDE": 18.34009505, "OBJECTID_1": 22624, "PARCEL_NO_": "105702060200", "Tax_Legal_": "SMITH BAY 57-117B & 57T-3 EAST END QTR", "Name": "APOSTOLIC FAITH MISSION INC", "Address": "PO Box 305101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035101, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.84750010900001, "SHAPE_Area": 760.65528763299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364768.676399998366833, 256802.673900000751019 ], [ 364799.336099997162819, 256800.602800000458956 ], [ 364813.092000000178814, 256795.015900000929832 ], [ 364813.945000000298023, 256789.534400001168251 ], [ 364805.871100001037121, 256790.734900001436472 ], [ 364795.414200000464916, 256787.693999998271465 ], [ 364776.982299998402596, 256774.244300000369549 ], [ 364770.580399997532368, 256768.492400001734495 ], [ 364770.508500002324581, 256776.935499999672174 ], [ 364768.676399998366833, 256802.673900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703096400", "MAP": "D9-4071-T87", "PARCEL_NAM": "20-35B-4", "ACRE": "0.23", "LONGITUDE": -64.8754744, "LATITUDE": 18.33994794, "OBJECTID_1": 23398, "PARCEL_NO_": "105703096400", "Tax_Legal_": "SMITH BAY 20-35B-4 EAST END QTR.", "Name": "FINLEY, LENNARD E", "Address": "PO Box 306492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.85635741900001, "SHAPE_Area": 1226.08746066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364681.95610000193119, 256759.534400001168251 ], [ 364668.317199997603893, 256751.401200000196695 ], [ 364645.628899998962879, 256764.303300000727177 ], [ 364639.965000003576279, 256766.578999999910593 ], [ 364631.885600000619888, 256768.41270000115037 ], [ 364675.959499999880791, 256800.859600000083447 ], [ 364681.95610000193119, 256759.534400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704060700", "MAP": "A9-324-T85", "PARCEL_NAM": "57Y-13", "ACRE": "0.25", "LONGITUDE": -64.87262582, "LATITUDE": 18.33992406, "OBJECTID_1": 23671, "PARCEL_NO_": "105704060700", "Tax_Legal_": "SMITH BAY 57Y-13 EASTEND QTR.", "Name": "JOSEPH, PETER A. & JEREMIAH", "Address": "PO Box 10974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41700, "Improved_V": 137500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.77326895499999, "SHAPE_Area": 1170.6002396 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364987.62049999833107, 256753.592300001531839 ], [ 364974.755500003695488, 256749.2652000002563 ], [ 364962.666199997067451, 256748.532900001853704 ], [ 364942.919100001454353, 256794.811900001019239 ], [ 364945.330799996852875, 256795.675999999046326 ], [ 364961.412100002169609, 256801.08500000089407 ], [ 364987.62049999833107, 256753.592300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703030100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-114", "ACRE": ".14", "LONGITUDE": -64.88040902, "LATITUDE": 18.33999619, "OBJECTID_1": 22971, "PARCEL_NO_": "105703030100", "Tax_Legal_": "ANNAS RETREAT 148-114 NEW QTR", "Name": "WHYTE, JUANITA WILLIAMS", "Address": "160 Smith St", "City": "Central Islip", "State": "New York", "Zip": 11722, "Country": "United States", "Land_Value": 19200, "Improved_V": 2400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.214434833, "SHAPE_Area": 708.06388546799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364160.08500000089407, 256777.21680000051856 ], [ 364141.725000001490116, 256755.323899999260902 ], [ 364123.872800000011921, 256768.476700000464916 ], [ 364140.5878000035882, 256794.155799999833107 ], [ 364160.08500000089407, 256777.21680000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701062200", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-8", "ACRE": "0.23", "LONGITUDE": -64.87841393, "LATITUDE": 18.33996925, "OBJECTID_1": 22182, "PARCEL_NO_": "105701062200", "Tax_Legal_": "ANNAS RETREAT 173B-8 NEW QTR.", "Name": "CONNOR, DEREK M", "Address": "PO Box 502432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24800, "Improved_V": 234100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.52673028699999, "SHAPE_Area": 1046.68947527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364371.542000003159046, 256755.093899998813868 ], [ 364367.519400000572205, 256754.005499999970198 ], [ 364358.644599996507168, 256754.566199999302626 ], [ 364350.558100000023842, 256757.244199998676777 ], [ 364344.885200001299381, 256760.575300000607967 ], [ 364338.380699999630451, 256766.854899998754263 ], [ 364331.858300000429153, 256775.245200000703335 ], [ 364331.032200001180172, 256777.560499999672174 ], [ 364325.32150000333786, 256785.324200000613928 ], [ 364325.30349999666214, 256787.434999998658895 ], [ 364326.912500001490116, 256787.870299998670816 ], [ 364336.620600000023842, 256784.150100000202656 ], [ 364343.072899997234344, 256783.991799999028444 ], [ 364347.095499999821186, 256785.080200001597404 ], [ 364364.762500002980232, 256793.668600000441074 ], [ 364371.542000003159046, 256755.093899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095200", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-47", "ACRE": "0.23", "LONGITUDE": -64.87934913, "LATITUDE": 18.33993434, "OBJECTID_1": 23388, "PARCEL_NO_": "105703095200", "Tax_Legal_": "ANNAS RETREAT 173B-47 NEW QTR.", "Name": "BROOKS, BARBARA", "Address": "PO Box 11324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37800, "Improved_V": 149200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.505002961, "SHAPE_Area": 910.60811459399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364276.283900000154972, 256767.613200001418591 ], [ 364252.25450000166893, 256748.629200000315905 ], [ 364244.943800002336502, 256754.902199998497963 ], [ 364230.302500002086163, 256769.769999999552965 ], [ 364258.372400000691414, 256787.731600001454353 ], [ 364269.770400002598763, 256774.948100000619888 ], [ 364271.40820000320673, 256772.00620000064373 ], [ 364276.283900000154972, 256767.613200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702035400", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-10", "ACRE": "0.23", "LONGITUDE": -64.86907031, "LATITUDE": 18.33998249, "OBJECTID_1": 22521, "PARCEL_NO_": "105702035400", "Tax_Legal_": "SMITH BAY 100-10 EASTEND QUARTER", "Name": "BROOKES, GLENDORA", "Address": "6115 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021324, "Country": "United States", "Land_Value": 28900, "Improved_V": 57100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.69639735200001, "SHAPE_Area": 843.88769758399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365360.007399998605251, 256771.838899999856949 ], [ 365320.496299996972084, 256771.726599998772144 ], [ 365322.722800001502037, 256794.331799998879433 ], [ 365340.458099998533726, 256794.89919999986887 ], [ 365352.561800003051758, 256793.942800000309944 ], [ 365358.218500003218651, 256792.511399999260902 ], [ 365360.007399998605251, 256771.838899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702035000", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-9", "ACRE": "0.23", "LONGITUDE": -64.86937614, "LATITUDE": 18.33994963, "OBJECTID_1": 22517, "PARCEL_NO_": "105702035000", "Tax_Legal_": "SMITH BAY 100-9 EAST END QTR.", "Name": "JUDE, CARLTON F. D", "Address": "PO Box 8884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.684373862, "SHAPE_Area": 758.444785583 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365320.496299996972084, 256771.726599998772144 ], [ 365319.790700003504753, 256759.899599999189377 ], [ 365287.403300002217293, 256775.466499999165535 ], [ 365292.941399998962879, 256787.966400001198053 ], [ 365306.616300001740456, 256791.877999998629093 ], [ 365322.722800001502037, 256794.331799998879433 ], [ 365320.496299996972084, 256771.726599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095100", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-52", "ACRE": "0.23", "LONGITUDE": -64.87983453, "LATITUDE": 18.33984982, "OBJECTID_1": 23387, "PARCEL_NO_": "105703095100", "Tax_Legal_": "ANNAS RETREAT 173B-52 NEW QTR.", "Name": "MARTIN, MALCOLM & KERENA", "Address": "PO Box 8372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26200, "Improved_V": 235300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.42636775099999, "SHAPE_Area": 1098.8816914700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364224.719400003552437, 256762.547100000083447 ], [ 364202.339199997484684, 256733.423500001430511 ], [ 364199.948499999940395, 256735.957699999213219 ], [ 364186.9324000030756, 256749.361099999397993 ], [ 364179.61089999973774, 256756.900600001215935 ], [ 364204.390799999237061, 256782.434599999338388 ], [ 364224.719400003552437, 256762.547100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703094200", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-1", "ACRE": "0.28", "LONGITUDE": -64.87765039, "LATITUDE": 18.33977163, "OBJECTID_1": 23378, "PARCEL_NO_": "105703094200", "Tax_Legal_": "ANNAS RETREAT 173B-1 NEW QTR", "Name": "FRASER, REYMOND", "Address": "PO Box 8632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46000, "Improved_V": 219200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.83189712699999, "SHAPE_Area": 1040.81702602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364417.701399996876717, 256732.040300000458956 ], [ 364422.240800000727177, 256767.118999999016523 ], [ 364427.0625, 256769.058299999684095 ], [ 364433.514799997210503, 256768.899999998509884 ], [ 364436.729299999773502, 256770.192899998277426 ], [ 364439.130199998617172, 256772.323499999940395 ], [ 364439.868199996650219, 256780.351100001484156 ], [ 364443.079099997878075, 256782.066100001335144 ], [ 364448.95160000026226, 256755.305300001055002 ], [ 364450.575000002980232, 256754.052000001072884 ], [ 364433.872599996626377, 256726.895399998873472 ], [ 364424.968999996781349, 256730.833299998193979 ], [ 364417.701399996876717, 256732.040300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704015700", "MAP": "A9-324-T85", "PARCEL_NAM": "57Z-3-28", "ACRE": ".27", "LONGITUDE": -64.87406856, "LATITUDE": 18.33983015, "OBJECTID_1": 23502, "PARCEL_NO_": "105704015700", "Tax_Legal_": "57Z Rem. Smith Bay 1, 2, & 3 EastEnd Quarter", "Name": "FRANCIS, HENRY", "Address": "PO Box 1243", "City": "Great Neck", "State": "New York", "Zip": 11023, "Country": "United States", "Land_Value": 89200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.611631647, "SHAPE_Area": 1190.68680915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364836.013999998569489, 256754.673500001430511 ], [ 364816.012599997222424, 256736.14469999819994 ], [ 364810.352200001478195, 256737.998199999332428 ], [ 364789.068000003695488, 256775.398699998855591 ], [ 364799.487099997699261, 256782.87220000103116 ], [ 364804.3141999989748, 256784.178300000727177 ], [ 364809.157499998807907, 256783.584600001573563 ], [ 364813.210600003600121, 256781.084699999541044 ], [ 364836.013999998569489, 256754.673500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703096100", "MAP": "D9-4075-T87", "PARCEL_NAM": "20-35B-1", "ACRE": "0.232", "LONGITUDE": -64.87468108, "LATITUDE": 18.33990269, "OBJECTID_1": 23396, "PARCEL_NO_": "105703096100", "Tax_Legal_": "SMITH BAY 20-35B-1 EAST END QTR.", "Name": "CONNOR, ALICE", "Address": "PO Box 7643", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 298500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.61046591100001, "SHAPE_Area": 980.64905517299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364770.580399997532368, 256768.492400001734495 ], [ 364763.393700003623962, 256760.200899999588728 ], [ 364757.051100000739098, 256747.483399998396635 ], [ 364718.101700000464916, 256776.084399998188019 ], [ 364722.075800001621246, 256782.871899999678135 ], [ 364770.508500002324581, 256776.935499999672174 ], [ 364770.580399997532368, 256768.492400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703030200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-115", "ACRE": ".14", "LONGITUDE": -64.88026147, "LATITUDE": 18.33987289, "OBJECTID_1": 22972, "PARCEL_NO_": "105703030200", "Tax_Legal_": "ANNAS RETREAT 148-115 NEW QTR", "Name": "SPRAUVE (LIFE ESTATE), EDWIN", "Address": "PO Box 11871", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 86900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.000748775999995, "SHAPE_Area": 478.62237522100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364173.102799996733665, 256763.602299999445677 ], [ 364153.907799996435642, 256745.079999998211861 ], [ 364141.725000001490116, 256755.323899999260902 ], [ 364160.08500000089407, 256777.21680000051856 ], [ 364173.102799996733665, 256763.602299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804020400", "MAP": "C9-28-T58", "PARCEL_NAM": "11B-11", "ACRE": "0.712", "LONGITUDE": -64.85159511000001, "LATITUDE": 18.33953176, "OBJECTID_1": 24014, "PARCEL_NO_": "105804020400", "Tax_Legal_": "SMITH BAY 11B 11 EAST END QTR", "Name": "CARIBBEAN CASTAWAY LLC", "Address": "4120 Piney Grove Rd", "City": "Glyndon", "State": "Maryland", "Zip": 21071, "Country": "United States", "Land_Value": 517000, "Improved_V": 1118100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.31883399200001, "SHAPE_Area": 2730.0434805199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367201.506399996578693, 256800.8429000005126 ], [ 367207.844700001180172, 256719.412599999457598 ], [ 367199.803099997341633, 256716.813700001686811 ], [ 367191.779600001871586, 256712.103999998420477 ], [ 367182.976700000464916, 256704.221400000154972 ], [ 367155.331900000572205, 256731.0152000002563 ], [ 367180.89469999819994, 256759.299800001084805 ], [ 367188.029200002551079, 256773.712600000202656 ], [ 367179.843800000846386, 256787.999899998307228 ], [ 367174.116899996995926, 256797.663400001823902 ], [ 367186.996399998664856, 256800.301899999380112 ], [ 367201.506399996578693, 256800.8429000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804020200", "MAP": "C3-92-T57", "PARCEL_NAM": "11B-7", "ACRE": null, "LONGITUDE": -64.85116172, "LATITUDE": 18.3396313, "OBJECTID_1": 24012, "PARCEL_NO_": "105804020200", "Tax_Legal_": "SMITH BAY 11B-7\nEAST END QTR", "Name": "CARIBBEAN CASTAWAY LLC", "Address": "4120 Piney Grove Rd", "City": "REISTERSTOWN", "State": "Maryland", "Zip": 21136, "Country": "United States", "Land_Value": 635200, "Improved_V": 2214800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.07323943099999, "SHAPE_Area": 4406.4978781999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367265.865000002086163, 256723.898299999535084 ], [ 367227.971900001168251, 256723.165899999439716 ], [ 367214.278999999165535, 256721.365100000053644 ], [ 367207.844700001180172, 256719.412599999457598 ], [ 367201.506399996578693, 256800.8429000005126 ], [ 367221.674999997019768, 256799.741399999707937 ], [ 367239.435400001704693, 256797.35359999909997 ], [ 367252.374200001358986, 256793.026500001549721 ], [ 367262.910199999809265, 256786.780000001192093 ], [ 367265.865000002086163, 256723.898299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85192366, "LATITUDE": 18.33964315, "OBJECTID_1": 24016, "PARCEL_NO_": "105804020600", "Tax_Legal_": "SMITH BAY 12D-1 EAST END QTR", "Name": "MERMAID COVE LLC", "Address": "3614 California Avenia SW", "City": "Seattle", "State": "Washington", "Zip": 98116, "Country": "United States", "Land_Value": 538100, "Improved_V": 420300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.28238648799999, "SHAPE_Area": 2617.7879662199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367155.331900000572205, 256731.0152000002563 ], [ 367138.505400002002716, 256718.422899998724461 ], [ 367122.6891999989748, 256776.555300001055002 ], [ 367131.554999999701977, 256777.050000000745058 ], [ 367139.600100003182888, 256779.226799998432398 ], [ 367146.826399996876717, 256782.874600000679493 ], [ 367149.218299999833107, 256786.060499999672174 ], [ 367154.027400001883507, 256789.477400001138449 ], [ 367162.056400001049042, 256793.553899999707937 ], [ 367174.116899996995926, 256797.663400001823902 ], [ 367180.89469999819994, 256759.299800001084805 ], [ 367155.331900000572205, 256731.0152000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804022200", "MAP": "G9-502-T59", "PARCEL_NAM": "11B-13", "ACRE": "0.061", "LONGITUDE": -64.85168092000001, "LATITUDE": 18.339829, "OBJECTID_1": 24031, "PARCEL_NO_": "105804022200", "Tax_Legal_": "SMITH BAY 11B 13 EAST END QUARTER", "Name": "CARIBBEAN CASTAWAY LLC", "Address": "4120 Piney Grove Rd", "City": "Glyndon", "State": "Maryland", "Zip": 21071, "Country": "United States", "Land_Value": 56800, "Improved_V": 208900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.910073819600001, "SHAPE_Area": 77.103615328199993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367174.116899996995926, 256797.663400001823902 ], [ 367179.843800000846386, 256787.999899998307228 ], [ 367180.89469999819994, 256759.299800001084805 ], [ 367174.116899996995926, 256797.663400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703097100", "MAP": "D9-4075-T87", "PARCEL_NAM": "20-35B-2", "ACRE": "0.23", "LONGITUDE": -64.87486127, "LATITUDE": 18.33976856, "OBJECTID_1": 23405, "PARCEL_NO_": "105703097100", "Tax_Legal_": "20-35B-2 ESTATE SMITH BAY EASTEND QTR.", "Name": "BROWN, ELPERT", "Address": "PO Box 307655", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 258800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.12739330299999, "SHAPE_Area": 1144.6469606600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364757.051100000739098, 256747.483399998396635 ], [ 364752.261799998581409, 256741.744600001722574 ], [ 364745.030100002884865, 256738.730099998414516 ], [ 364716.823600001633167, 256736.810499999672174 ], [ 364706.02139999717474, 256774.296799998730421 ], [ 364718.101700000464916, 256776.084399998188019 ], [ 364757.051100000739098, 256747.483399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702080100", "MAP": "D9-2695-T84", "PARCEL_NAM": "57Z-3-29", "ACRE": "0.23", "LONGITUDE": -64.87430247, "LATITUDE": 18.33966546, "OBJECTID_1": 22747, "PARCEL_NO_": "105702080100", "Tax_Legal_": "SMITH BAY 57Z-3-29 EAST END QTR.", "Name": "BELGRAVE, JOSEPH", "Address": "6523 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.701033091, "SHAPE_Area": 1425.03378492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364810.352200001478195, 256737.998199999332428 ], [ 364807.145000003278255, 256735.861000001430511 ], [ 364804.726000003516674, 256735.8412000015378 ], [ 364802.29450000077486, 256737.2989999987185 ], [ 364797.524999998509884, 256729.238400001078844 ], [ 364784.002199999988079, 256706.455800000578165 ], [ 364781.590999998152256, 256706.527399998158216 ], [ 364780.076399996876717, 256706.572399999946356 ], [ 364771.496399998664856, 256755.623199999332428 ], [ 364771.456799998879433, 256760.2668999992311 ], [ 364776.247900001704693, 256765.79450000077486 ], [ 364789.068000003695488, 256775.398699998855591 ], [ 364810.352200001478195, 256737.998199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703096300", "MAP": "D9-4075-T87", "PARCEL_NAM": "20-35B-3", "ACRE": "0.234", "LONGITUDE": -64.87516222000001, "LATITUDE": 18.33975461, "OBJECTID_1": 23397, "PARCEL_NO_": "105703096300", "Tax_Legal_": "SMITH BAY 20-35B-3 EAST END QTR.", "Name": "FARQUHAR, ROMANITA P.(TRUSTEE)", "Address": "P.O. BOX 3131", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 207500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.074908249, "SHAPE_Area": 987.71469366999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364716.823600001633167, 256736.810499999672174 ], [ 364705.538800001144409, 256736.296000000089407 ], [ 364694.234200000762939, 256738.103300001472235 ], [ 364686.954099997878075, 256740.787900000810623 ], [ 364668.317199997603893, 256751.401200000196695 ], [ 364681.95610000193119, 256759.534400001168251 ], [ 364706.02139999717474, 256774.296799998730421 ], [ 364716.823600001633167, 256736.810499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604010200", "MAP": "D9-3725-T86", "PARCEL_NAM": "4B", "ACRE": ".50", "LONGITUDE": -64.88603968, "LATITUDE": 18.33974177, "OBJECTID_1": 21578, "PARCEL_NO_": "105604010200", "Tax_Legal_": "4 ESTATE ANNAS RETREAT NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 451300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.556203888, "SHAPE_Area": 1957.21180327 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363524.343199998140335, 256720.506799999624491 ], [ 363525.589000001549721, 256763.579999998211861 ], [ 363543.329599998891354, 256763.51410000026226 ], [ 363569.127999998629093, 256764.14750000089407 ], [ 363566.316399998962879, 256715.572900000959635 ], [ 363524.343199998140335, 256720.506799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503041600", "MAP": "B9-27-T57", "PARCEL_NAM": "39", "ACRE": null, "LONGITUDE": -64.90811304, "LATITUDE": 18.33967549, "OBJECTID_1": 20140, "PARCEL_NO_": "105503041600", "Tax_Legal_": "ESTATE THOMAS 39 NEW QUARTER", "Name": "WEDDINGS & EVENTS INTERNATIONAL", "Address": "2307 Douglas Rd", "City": "CORAL GABLES", "State": "Florida", "Zip": 33145, "Country": "United States", "Land_Value": 181300, "Improved_V": 410700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.11180037299999, "SHAPE_Area": 2234.5721937200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361248.740599997341633, 256724.046900000423193 ], [ 361234.563199996948242, 256684.456300001591444 ], [ 361202.982199996709824, 256700.029899999499321 ], [ 361175.364799998700619, 256713.675700001418591 ], [ 361171.681000001728535, 256715.495900001376867 ], [ 361192.044799998402596, 256737.065400000661612 ], [ 361197.079499997198582, 256735.940000001341105 ], [ 361208.952871910762042, 256733.092935928201769 ], [ 361220.971400000154972, 256730.939399998635054 ], [ 361228.062488807598129, 256729.874398304556962 ], [ 361235.07274535408942, 256728.366395574179478 ], [ 361241.974522266245913, 256726.421339138323674 ], [ 361248.740599997341633, 256724.046900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095000", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-46", "ACRE": "0.23", "LONGITUDE": -64.87914256000001, "LATITUDE": 18.33975582, "OBJECTID_1": 23386, "PARCEL_NO_": "105703095000", "Tax_Legal_": "ANNAS RETREAT 173B-46 NEW QTR.", "Name": "TYSON, EUGENE", "Address": "912 Estate St Georges", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 840, "Country": "United States", "Land_Value": 33200, "Improved_V": 141500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.17109981500001, "SHAPE_Area": 901.75996547 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364299.823399998247623, 256749.440699998289347 ], [ 364272.583200000226498, 256728.741700001060963 ], [ 364264.433700002729893, 256738.807500001043081 ], [ 364252.25450000166893, 256748.629200000315905 ], [ 364276.283900000154972, 256767.613200001418591 ], [ 364299.823399998247623, 256749.440699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703094600", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-9", "ACRE": "0.23", "LONGITUDE": -64.878724, "LATITUDE": 18.33986031, "OBJECTID_1": 23382, "PARCEL_NO_": "105703094600", "Tax_Legal_": "ANNAS RETREAT 173B-9 NEW QTR.", "Name": "LEBLANC, MAGDALENE & TODMAN, JULIE", "Address": "PO Box 11011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.81104308099999, "SHAPE_Area": 798.653042067 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364340.353000000119209, 256756.525199998170137 ], [ 364323.87950000166893, 256741.804099999368191 ], [ 364311.090199999511242, 256752.065999999642372 ], [ 364297.449199996888638, 256762.932399999350309 ], [ 364321.561099998652935, 256780.129799999296665 ], [ 364330.308600001037121, 256767.844300001859665 ], [ 364338.456200003623962, 256757.989500001072884 ], [ 364340.353000000119209, 256756.525199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704022200", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-8", "ACRE": "0.23", "LONGITUDE": -64.8694511, "LATITUDE": 18.33976443, "OBJECTID_1": 23525, "PARCEL_NO_": "105704022200", "Tax_Legal_": "SMITH BAY 100-8 EASTEND QUARTER", "Name": "TESTAMARK, GLANFIELD", "Address": "PO Box 6191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.83771233, "SHAPE_Area": 712.48728693600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365316.635499998927116, 256751.641100000590086 ], [ 365312.693899996578693, 256741.054200001060963 ], [ 365280.301100000739098, 256757.254399999976158 ], [ 365287.403300002217293, 256775.466499999165535 ], [ 365319.790700003504753, 256759.899599999189377 ], [ 365316.635499998927116, 256751.641100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604017400", "MAP": "A9-102-T68", "PARCEL_NAM": "173-239", "ACRE": "0.14", "LONGITUDE": -64.88513792000001, "LATITUDE": 18.33976944, "OBJECTID_1": 21652, "PARCEL_NO_": "105604017400", "Tax_Legal_": "173-239 ANNAS RETREAT NEW QTR", "Name": "CELESTINE, CORREEN & VERONICA", "Address": "7199 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 86200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.47414120099999, "SHAPE_Area": 601.65075845299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363660.361800000071526, 256750.750900000333786 ], [ 363659.656199999153614, 256738.923900000751019 ], [ 363629.8783999979496, 256732.136300001293421 ], [ 363627.401900000870228, 256738.870999999344349 ], [ 363628.084200002253056, 256753.44200000166893 ], [ 363628.859999999403954, 256757.478000000119209 ], [ 363660.361800000071526, 256750.750900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703094300", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-3", "ACRE": "0.23", "LONGITUDE": -64.87791344, "LATITUDE": 18.33970901, "OBJECTID_1": 23379, "PARCEL_NO_": "105703094300", "Tax_Legal_": "ANNAS RETREAT 173B-3 NEW QTR.", "Name": "FRASER, REYNOLD", "Address": "PO Box 8632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30500, "Improved_V": 235100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.833756514, "SHAPE_Area": 842.44160722499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364417.701399996876717, 256732.040300000458956 ], [ 364408.833800002932549, 256731.756700001657009 ], [ 364387.925399996340275, 256725.041600000113249 ], [ 364393.319600000977516, 256754.427799999713898 ], [ 364401.364799998700619, 256756.604600001126528 ], [ 364410.203699998557568, 256760.265500001609325 ], [ 364422.240800000727177, 256767.118999999016523 ], [ 364417.701399996876717, 256732.040300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89837923, "LATITUDE": 18.33921206, "OBJECTID_1": 21509, "PARCEL_NO_": "105603011300", "Tax_Legal_": "LOT A ESTATE DONOE NEW QTR", "Name": "NORTH CARIBBEAN CONFERENCE OF", "Address": "P.O. BOX 580, CHRISTIANSTED", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 115200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 521.47344110300003, "SHAPE_Area": 15072.718839900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362334.035400003194809, 256733.140599999576807 ], [ 362264.162399999797344, 256605.49040000140667 ], [ 362225.452200002968311, 256606.017900001257658 ], [ 362156.902999997138977, 256606.934500001370907 ], [ 362159.068400003015995, 256636.716400001198053 ], [ 362162.201999999582767, 256647.50789999961853 ], [ 362230.886699996888638, 256725.330299999564886 ], [ 362233.273299999535084, 256729.149500001221895 ], [ 362235.631099998950958, 256736.346000000834465 ], [ 362235.528599999845028, 256748.377399999648333 ], [ 362334.035400003194809, 256733.140599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703030300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-116", "ACRE": ".14", "LONGITUDE": -64.88013427, "LATITUDE": 18.33974967, "OBJECTID_1": 22973, "PARCEL_NO_": "105703030300", "Tax_Legal_": "ANNAS RETREAT 148-116 NEW QTR", "Name": "PENN, SHENITA", "Address": "1409 Health Center Dr", "City": "Bowie", "State": "Maryland", "Zip": 20716, "Country": "United States", "Land_Value": 19200, "Improved_V": 105800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.065686557700005, "SHAPE_Area": 547.49528419199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364188.188100002706051, 256748.067999999970198 ], [ 364167.553999997675419, 256730.796000000089407 ], [ 364166.110399998724461, 256732.514299999922514 ], [ 364164.476199999451637, 256735.034099999815226 ], [ 364153.907799996435642, 256745.079999998211861 ], [ 364173.102799996733665, 256763.602299999445677 ], [ 364179.61089999973774, 256756.900600001215935 ], [ 364186.9324000030756, 256749.361099999397993 ], [ 364188.188100002706051, 256748.067999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804020500", "MAP": "G9-502-T59", "PARCEL_NAM": "11B-12", "ACRE": "0.017", "LONGITUDE": -64.8516377, "LATITUDE": 18.33975651, "OBJECTID_1": 24015, "PARCEL_NO_": "105804020500", "Tax_Legal_": "SMITH BAY 11B 12 EAST END QTR", "Name": "CARIBBEAN CASTAWAY LLC", "Address": "4120 Piney Grove Rd", "City": "Glyndon", "State": "Maryland", "Zip": 21071, "Country": "United States", "Land_Value": 18200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.267264167500002, "SHAPE_Area": 109.95363751799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367179.843800000846386, 256787.999899998307228 ], [ 367188.029200002551079, 256773.712600000202656 ], [ 367180.89469999819994, 256759.299800001084805 ], [ 367179.843800000846386, 256787.999899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703096600", "MAP": "D9-4163-T87", "PARCEL_NAM": "20-35A-1", "ACRE": "0.28", "LONGITUDE": -64.87575481, "LATITUDE": 18.339686, "OBJECTID_1": 23400, "PARCEL_NO_": "105703096600", "Tax_Legal_": "SMITH BAY 20-35A-1 EAST END QTR.", "Name": "PETERS, ERWIN & ARAMINTA", "Address": "PO Box 503121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 35200, "Improved_V": 247000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.83870495799999, "SHAPE_Area": 1343.5332637 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364606.097999997437, 256766.512899998575449 ], [ 364613.381800003349781, 256763.406100001186132 ], [ 364629.515299998223782, 256762.693799998611212 ], [ 364635.976499997079372, 256761.480099998414516 ], [ 364645.690099999308586, 256757.126600001007318 ], [ 364661.085500001907349, 256748.386700000613928 ], [ 364633.163099996745586, 256713.116599999368191 ], [ 364606.097999997437, 256766.512899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704023400", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-11", "ACRE": "0.23", "LONGITUDE": -64.86906775, "LATITUDE": 18.33977773, "OBJECTID_1": 23537, "PARCEL_NO_": "105704023400", "Tax_Legal_": "SMITH BAY 100-11 EASTEND QTR.", "Name": "MONSANTO, TREVORE T", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.99586530900001, "SHAPE_Area": 935.71578601600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365360.007399998605251, 256771.838899999856949 ], [ 365361.027699999511242, 256746.727099999785423 ], [ 365316.635499998927116, 256751.641100000590086 ], [ 365319.790700003504753, 256759.899599999189377 ], [ 365320.496299996972084, 256771.726599998772144 ], [ 365360.007399998605251, 256771.838899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095300", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-53", "ACRE": "0.24", "LONGITUDE": -64.87964479, "LATITUDE": 18.33968382, "OBJECTID_1": 23389, "PARCEL_NO_": "105703095300", "Tax_Legal_": "ANNAS RETREAT 173B-53 NEW QTR.", "Name": "G & V BAPTISTE LIVING REVOCABLE TRUST", "Address": "1613 Sixth St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 156600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.615907462, "SHAPE_Area": 872.49527603900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364245.427500002086163, 256742.677299998700619 ], [ 364215.136799998581409, 256719.444400001317263 ], [ 364213.781700000166893, 256721.294300001114607 ], [ 364202.339199997484684, 256733.423500001430511 ], [ 364224.719400003552437, 256762.547100000083447 ], [ 364238.54900000244379, 256748.305900000035763 ], [ 364242.607500001788139, 256745.172699999064207 ], [ 364245.427500002086163, 256742.677299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804020100", "MAP": "D9-7369-T004", "PARCEL_NAM": "11A-1 REM", "ACRE": ".64", "LONGITUDE": -64.8506361, "LATITUDE": 18.33944171, "OBJECTID_1": 24011, "PARCEL_NO_": "105804020100", "Tax_Legal_": "11A-1 REM. SMITH BAY NO.1,2 & 3 EAST END QUARTER", "Name": "WILLYNESS, LLC", "Address": "PO BOX 150365", "City": "Grand Rapids", "State": "Michigan", "Zip": 49515, "Country": "United States", "Land_Value": 626500, "Improved_V": 2133500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.54148574199999, "SHAPE_Area": 2100.33422535 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367263.843599997460842, 256766.916600000113249 ], [ 367263.857900001108646, 256766.922800000756979 ], [ 367275.922899998724461, 256771.844000000506639 ], [ 367275.956399999558926, 256771.869100000709295 ], [ 367278.393799997866154, 256767.697200000286102 ], [ 367307.595399998128414, 256747.460099998861551 ], [ 367327.043999999761581, 256736.220199998468161 ], [ 367312.627499997615814, 256724.703200001269579 ], [ 367307.089400000870228, 256712.203299999237061 ], [ 367297.411899998784065, 256712.335200000554323 ], [ 367285.230899997055531, 256722.368000000715256 ], [ 367281.991200000047684, 256724.030299998819828 ], [ 367276.343500003218651, 256724.406199999153614 ], [ 367271.528999999165535, 256721.622600000351667 ], [ 367265.893799997866154, 256720.521000001579523 ], [ 367265.865000002086163, 256723.898299999535084 ], [ 367263.843599997460842, 256766.916600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85309841, "LATITUDE": 18.33916175, "OBJECTID_1": 24019, "PARCEL_NO_": "105804020900", "Tax_Legal_": "12 E SMITH BAY 1,2 &3 EAST END QUARTER", "Name": "ST. THOMAS INVESTMENTS LLC", "Address": "PO Box 310", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 614200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 485.62347379400001, "SHAPE_Area": 14180.7464239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367097.640600003302097, 256687.902100000530481 ], [ 367084.052000001072884, 256673.85869999974966 ], [ 367031.837700001895428, 256650.422100000083447 ], [ 367029.461900003254414, 256645.336500000208616 ], [ 367001.219400003552437, 256647.638399999588728 ], [ 366994.776199996471405, 256647.079300001263618 ], [ 366986.117200002074242, 256643.173599999397993 ], [ 366984.989500001072884, 256644.337099999189377 ], [ 366984.315600000321865, 256644.122600000351667 ], [ 366976.302799999713898, 256638.14640000090003 ], [ 366974.702799998223782, 256636.655600000172853 ], [ 366938.129199996590614, 256670.342399999499321 ], [ 366951.753799997270107, 256680.164200000464916 ], [ 366959.750399999320507, 256688.040100000798702 ], [ 366970.905699998140335, 256703.752300001680851 ], [ 366974.870700001716614, 256711.595199998468161 ], [ 366978.025799997150898, 256719.853700000792742 ], [ 366981.935099996626377, 256734.239999998360872 ], [ 366983.533399999141693, 256735.941899999976158 ], [ 366985.108199998736382, 256740.387699998915195 ], [ 366992.298500001430511, 256748.256999999284744 ], [ 367001.110399998724461, 256755.084199998527765 ], [ 367006.722199998795986, 256758.929800000041723 ], [ 367020.375600002706051, 256765.374299999326468 ], [ 367030.834299996495247, 256768.204100001603365 ], [ 367036.482100002467632, 256767.828200001269579 ], [ 367043.729900002479553, 256768.942999999970198 ], [ 367050.959700003266335, 256772.168499998748302 ], [ 367054.95889999717474, 256776.000999998301268 ], [ 367056.567900002002716, 256776.436299998313189 ], [ 367073.486100003123283, 256778.2635000012815 ], [ 367090.415100000798702, 256778.824299998581409 ], [ 367097.640600003302097, 256687.902100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85231619, "LATITUDE": 18.33943799, "OBJECTID_1": 24018, "PARCEL_NO_": "105804020800", "Tax_Legal_": "SMITH BAY 12D-2 EAST END QTR", "Name": "MARSHALL, ROBERT D", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 545800, "Improved_V": 681900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.81259910200001, "SHAPE_Area": 2888.1647459300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367138.505400002002716, 256718.422899998724461 ], [ 367097.640600003302097, 256687.902100000530481 ], [ 367090.415100000798702, 256778.824299998581409 ], [ 367122.6891999989748, 256776.555300001055002 ], [ 367138.505400002002716, 256718.422899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703094400", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-5", "ACRE": "0.23", "LONGITUDE": -64.87821368, "LATITUDE": 18.33963099, "OBJECTID_1": 23380, "PARCEL_NO_": "105703094400", "Tax_Legal_": "ANNAS RETREAT 173B-5 NEW QTR.", "Name": "OSBORNE, SELWYN & AVRIL", "Address": "P.O. BOX 2343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 184300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.267126901, "SHAPE_Area": 942.01128628200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364354.895400002598763, 256721.393800001591444 ], [ 364360.311200000345707, 256748.247000001370907 ], [ 364369.1824000030756, 256748.108500000089407 ], [ 364393.319600000977516, 256754.427799999713898 ], [ 364387.925399996340275, 256725.041600000113249 ], [ 364371.039599999785423, 256719.41499999910593 ], [ 364362.168399997055531, 256719.55350000038743 ], [ 364354.895400002598763, 256721.393800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703090900", "MAP": "D9-1562-T80", "PARCEL_NAM": "173A-1", "ACRE": "0.24", "LONGITUDE": -64.87744416, "LATITUDE": 18.33959554, "OBJECTID_1": 23345, "PARCEL_NO_": "105703090900", "Tax_Legal_": "ANNAS RETREAT 173A-1 NEW QTR.", "Name": "VICTOR E SYDNEY LIV TR", "Address": "PO Box 308850", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.588909332, "SHAPE_Area": 935.03441819600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364476.537100002169609, 256735.477200001478195 ], [ 364462.217600002884865, 256712.561900001019239 ], [ 364433.872599996626377, 256726.895399998873472 ], [ 364450.575000002980232, 256754.052000001072884 ], [ 364476.537100002169609, 256735.477200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703094500", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-7", "ACRE": "0.23", "LONGITUDE": -64.87849567000001, "LATITUDE": 18.33966824, "OBJECTID_1": 23381, "PARCEL_NO_": "105703094500", "Tax_Legal_": "ANNAS RETREAT 173B-7 NEW QUARTER", "Name": "GEORGE, MOHAMMED W.", "Address": "PO Box 303666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.060608321, "SHAPE_Area": 730.80335015599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364360.311200000345707, 256748.247000001370907 ], [ 364354.895400002598763, 256721.393800001591444 ], [ 364350.044900000095367, 256722.831799998879433 ], [ 364340.327799998223782, 256727.607400000095367 ], [ 364329.775600001215935, 256735.753699999302626 ], [ 364324.892800003290176, 256740.99100000038743 ], [ 364323.87950000166893, 256741.804099999368191 ], [ 364340.353000000119209, 256756.525199998170137 ], [ 364343.326499998569489, 256754.229699999094009 ], [ 364347.374200001358986, 256752.363000001758337 ], [ 364353.041799999773502, 256749.665199998766184 ], [ 364360.311200000345707, 256748.247000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703030400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-117", "ACRE": ".13", "LONGITUDE": -64.88000454, "LATITUDE": 18.33959805, "OBJECTID_1": 22974, "PARCEL_NO_": "105703030400", "Tax_Legal_": "148-117 ANNAS RETREAT NO.1 NEW QTR", "Name": "Rudolph K, Carol V, Jacinth C, Henry D Chapman, & Monica A Chapman-Lib", "Address": "PO Box 502155", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052155, "Country": "United States", "Land_Value": 17200, "Improved_V": 161200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.872879106, "SHAPE_Area": 629.39944569 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364202.339199997484684, 256733.423500001430511 ], [ 364180.810999996960163, 256710.680900000035763 ], [ 364179.166000001132488, 256714.467099998146296 ], [ 364173.453500002622604, 256722.441899999976158 ], [ 364172.627400003373623, 256724.757199998944998 ], [ 364167.553999997675419, 256730.796000000089407 ], [ 364188.188100002706051, 256748.067999999970198 ], [ 364199.948499999940395, 256735.957699999213219 ], [ 364202.339199997484684, 256733.423500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704060100", "MAP": "A9-324-T85", "PARCEL_NAM": "57Z-3-30", "ACRE": ".32", "LONGITUDE": -64.87379733, "LATITUDE": 18.33952605, "OBJECTID_1": 23666, "PARCEL_NO_": "105704060100", "Tax_Legal_": "SMITH BAY 57Z-3-30 EASTEND QTR.", "Name": "ASTREL PINDER REOVCABLE TRUST", "Address": "PO Box 10883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.18902455599999, "SHAPE_Area": 1127.8774764 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364868.631499998271465, 256712.088500000536442 ], [ 364861.4628000035882, 256701.686299998313189 ], [ 364841.990800000727177, 256715.670200001448393 ], [ 364816.878200002014637, 256729.185699999332428 ], [ 364815.251199997961521, 256730.861099999397993 ], [ 364816.012599997222424, 256736.14469999819994 ], [ 364836.013999998569489, 256754.673500001430511 ], [ 364842.559799998998642, 256743.539200000464916 ], [ 364854.780299998819828, 256728.86259999871254 ], [ 364859.691899999976158, 256720.247999999672174 ], [ 364864.57660000026226, 256714.799499999731779 ], [ 364868.631499998271465, 256712.088500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604019500", "MAP": null, "PARCEL_NAM": "126B-2", "ACRE": null, "LONGITUDE": -64.88747005, "LATITUDE": 18.33958775, "OBJECTID_1": 21671, "PARCEL_NO_": "105604019500", "Tax_Legal_": "ANNAS RETREAT 126B-2 NEW QTR.", "Name": "TOTAL VISION, INC.", "Address": "4126 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55500, "Improved_V": 56900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.44434456099999, "SHAPE_Area": 391.73199422200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363413.908900000154972, 256716.014299999922514 ], [ 363413.160199999809265, 256709.253199998289347 ], [ 363392.977200001478195, 256712.043299999088049 ], [ 363384.876299999654293, 256716.410000000149012 ], [ 363389.493000000715256, 256742.412300001829863 ], [ 363396.760600000619888, 256741.205200001597404 ], [ 363396.132299996912479, 256720.30180000141263 ], [ 363400.167499996721745, 256719.912599999457598 ], [ 363400.189000003039837, 256717.379700001329184 ], [ 363406.644900001585484, 256716.799199998378754 ], [ 363413.908900000154972, 256716.014299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704060300", "MAP": "A9-324-T85", "PARCEL_NAM": "57Z-2-20", "ACRE": "0.27", "LONGITUDE": -64.87333829000001, "LATITUDE": 18.33953412, "OBJECTID_1": 23667, "PARCEL_NO_": "105704060300", "Tax_Legal_": "SMITH BAY 57Z-2-20 EAST END QTR.", "Name": "BELGRAVE, MARIE S.", "Address": "PO Box 11633", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42100, "Improved_V": 327800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.68911570200001, "SHAPE_Area": 1291.61828911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364917.708700001239777, 256725.155799999833107 ], [ 364910.552599996328354, 256713.276000000536442 ], [ 364892.014600001275539, 256712.279899999499321 ], [ 364883.128899998962879, 256714.10700000077486 ], [ 364875.031599998474121, 256718.051500000059605 ], [ 364867.717299997806549, 256724.746599998325109 ], [ 364864.448899999260902, 256729.786100000143051 ], [ 364879.558399997651577, 256754.607700001448393 ], [ 364917.708700001239777, 256725.155799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89734217, "LATITUDE": 18.33911482, "OBJECTID_1": 21510, "PARCEL_NO_": "105603011400", "Tax_Legal_": "LOT B ESTATE DONOE NEW QTR", "Name": "LANCLOS, DONALD", "Address": "PO Box 218", "City": "Greensburg", "State": "Louisiana", "Zip": 70441, "Country": "United States", "Land_Value": 112900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 502.198773797, "SHAPE_Area": 13939.7927483 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362376.263199999928474, 256603.663600001484156 ], [ 362374.600199997425079, 256609.560699999332428 ], [ 362370.543499998748302, 256612.482799999415874 ], [ 362368.923699997365475, 256613.313900001347065 ], [ 362362.458800002932549, 256614.949700001627207 ], [ 362356.832599997520447, 256612.792700000107288 ], [ 362352.838799998164177, 256608.327100001275539 ], [ 362352.068400003015995, 256604.098900001496077 ], [ 362306.099600002169609, 256604.778099998831749 ], [ 362264.162399999797344, 256605.49040000140667 ], [ 362334.035400003194809, 256733.140599999576807 ], [ 362418.006899997591972, 256720.317800000309944 ], [ 362406.057800002396107, 256602.84569999948144 ], [ 362376.263199999928474, 256603.663600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703094900", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-45", "ACRE": "0.23", "LONGITUDE": -64.87894263, "LATITUDE": 18.33957031, "OBJECTID_1": 23385, "PARCEL_NO_": "105703094900", "Tax_Legal_": "ANNAS RETREAT 173B-45 NEW QTR.", "Name": "CORNELIUS, FELECIA", "Address": "7275 Bovoni Homes # 5-43", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022529, "Country": "United States", "Land_Value": 33200, "Improved_V": 74100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.28543569499999, "SHAPE_Area": 1070.77382736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364320.942100003361702, 256731.459499999880791 ], [ 364295.361299999058247, 256705.285599999129772 ], [ 364272.583200000226498, 256728.741700001060963 ], [ 364299.823399998247623, 256749.440699998289347 ], [ 364316.061099998652935, 256736.485800001770258 ], [ 364320.942100003361702, 256731.459499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704061100", "MAP": "A9-324-T85", "PARCEL_NAM": "57Y-15", "ACRE": "0.25", "LONGITUDE": -64.87224092, "LATITUDE": 18.33956105, "OBJECTID_1": 23675, "PARCEL_NO_": "105704061100", "Tax_Legal_": "SMITH BAY 57Y-15 EAST END QTR.", "Name": "JAMES,CO-TRUSTEES, PERCIVAL S.&LORETTA E.", "Address": "PO Box 10624", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 179000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.15565963500001, "SHAPE_Area": 981.32947141700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365025.69879999756813, 256732.583500001579523 ], [ 365020.941799998283386, 256723.045400001108646 ], [ 365017.748999997973442, 256719.2195999994874 ], [ 365012.189300000667572, 256709.252700001001358 ], [ 364979.663500003516674, 256741.072700001299381 ], [ 364986.902300000190735, 256743.242899999022484 ], [ 364994.934799998998642, 256746.897199999541044 ], [ 365006.163900002837181, 256753.955200001597404 ], [ 365025.69879999756813, 256732.583500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095400", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-54", "ACRE": "0.23", "LONGITUDE": -64.87950316, "LATITUDE": 18.339544, "OBJECTID_1": 23390, "PARCEL_NO_": "105703095400", "Tax_Legal_": "ANNAS RETREAT 173B-54 NEW QTR.", "Name": "DAVIS, WARREN", "Address": "4228 Stonefield Dr", "City": "Orlando", "State": "Florida", "Zip": 32826, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.065287881, "SHAPE_Area": 720.61269926299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364229.220299996435642, 256707.488499999046326 ], [ 364215.136799998581409, 256719.444400001317263 ], [ 364245.427500002086163, 256742.677299998700619 ], [ 364255.607400000095367, 256733.668999999761581 ], [ 364257.225500002503395, 256733.048900000751019 ], [ 364260.48309999704361, 256729.27589999884367 ], [ 364229.220299996435642, 256707.488499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703096700", "MAP": "D9-4163-T87", "PARCEL_NAM": "20-35A-2", "ACRE": "0.23", "LONGITUDE": -64.87551802, "LATITUDE": 18.33952021, "OBJECTID_1": 23401, "PARCEL_NO_": "105703096700", "Tax_Legal_": "SMITH BAY 20-35A-2 EASTEND QTR.", "Name": "HESKEY, ALLISON & DIANE", "Address": "PO Box 14506", "City": "Des Moines", "State": "Iowa", "Zip": 50306, "Country": "United States", "Land_Value": 31500, "Improved_V": 220500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.689246717, "SHAPE_Area": 1061.75249274 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364682.1503000035882, 256736.737900000065565 ], [ 364665.458700001239777, 256708.314699999988079 ], [ 364633.985600002110004, 256711.223499998450279 ], [ 364633.163099996745586, 256713.116599999368191 ], [ 364661.085500001907349, 256748.386700000613928 ], [ 364682.1503000035882, 256736.737900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703096900", "MAP": "D9-4185-T87", "PARCEL_NAM": "20-35A-5", "ACRE": "0.24", "LONGITUDE": -64.87453585, "LATITUDE": 18.33950321, "OBJECTID_1": 23403, "PARCEL_NO_": "105703096900", "Tax_Legal_": "SMITH BAY 20-35A-5 EAST END QTR.", "Name": "MILLER, ROY A. & AMELDA", "Address": "PO Box 6852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.993225948, "SHAPE_Area": 1097.18735793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364771.496399998664856, 256755.623199999332428 ], [ 364780.076399996876717, 256706.572399999946356 ], [ 364774.868900001049042, 256706.72690000012517 ], [ 364750.371399998664856, 256707.453899998217821 ], [ 364742.799999997019768, 256716.547100000083447 ], [ 364748.300300002098083, 256733.479600001126528 ], [ 364753.123800002038479, 256735.207800000905991 ], [ 364757.932899996638298, 256738.624699998646975 ], [ 364765.101599998772144, 256749.026900000870228 ], [ 364771.496399998664856, 256755.623199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604017500", "MAP": "A9-102-T68", "PARCEL_NAM": "173-240", "ACRE": "0.12", "LONGITUDE": -64.88508926, "LATITUDE": 18.33961332, "OBJECTID_1": 21653, "PARCEL_NO_": "105604017500", "Tax_Legal_": "173-240 ANNAS RETREAT NEW QTR", "Name": "MOLYNEAUX, CAROL", "Address": "7200 Estate Tutu", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 77200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.399478997499997, "SHAPE_Area": 498.791528411 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363665.390299998223782, 256728.416200000792742 ], [ 363640.522299997508526, 256713.225000001490116 ], [ 363632.345899999141693, 256726.456999998539686 ], [ 363629.8783999979496, 256732.136300001293421 ], [ 363659.656199999153614, 256738.923900000751019 ], [ 363665.390299998223782, 256728.416200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704023300", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-12", "ACRE": "0.26", "LONGITUDE": -64.86910647000001, "LATITUDE": 18.33957319, "OBJECTID_1": 23536, "PARCEL_NO_": "105704023300", "Tax_Legal_": "SMITH BAY 100-12 EASTEND QTR.", "Name": "GEORGE, JENNER & HEATHER", "Address": "PO Box 306023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.458414291, "SHAPE_Area": 1123.0273476699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365361.027699999511242, 256746.727099999785423 ], [ 365361.17509999871254, 256729.418600000441074 ], [ 365360.417400002479553, 256723.712900001555681 ], [ 365308.762999996542931, 256729.200800001621246 ], [ 365312.693899996578693, 256741.054200001060963 ], [ 365316.635499998927116, 256751.641100000590086 ], [ 365361.027699999511242, 256746.727099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703090800", "MAP": "D9-1562-T80", "PARCEL_NAM": "173A-2", "ACRE": "0.25", "LONGITUDE": -64.87713971, "LATITUDE": 18.33949277, "OBJECTID_1": 23344, "PARCEL_NO_": "105703090800", "Tax_Legal_": "ANNAS RETREAT 173A-2 NEW QTR", "Name": "TAYLOR, D & MATTHEW, M", "Address": "PO Box 8665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 251600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.718394614, "SHAPE_Area": 1180.4717804700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364512.093900002539158, 256726.480099998414516 ], [ 364498.591600000858307, 256702.304900001734495 ], [ 364475.159999996423721, 256707.812699999660254 ], [ 364462.217600002884865, 256712.561900001019239 ], [ 364476.537100002169609, 256735.477200001478195 ], [ 364482.107500001788139, 256744.177600000053644 ], [ 364512.093900002539158, 256726.480099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704060600", "MAP": "A9-324-T85", "PARCEL_NAM": "57Z-2-21", "ACRE": "0.24", "LONGITUDE": -64.87287385, "LATITUDE": 18.3394996, "OBJECTID_1": 23670, "PARCEL_NO_": "105704060600", "Tax_Legal_": "57Z-2-21 ESTATE SMITH BAY 1,2 & 3 EASTEND QTR", "Name": "SMITH, WILFORD & BRENDA", "Address": "PO Box 6611", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37400, "Improved_V": 280400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.791909546, "SHAPE_Area": 1235.5331781100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364961.937200002372265, 256739.449999999254942 ], [ 364948.555299997329712, 256701.132500000298023 ], [ 364942.049099996685982, 256707.623199999332428 ], [ 364933.138300001621246, 256712.4054000005126 ], [ 364923.446400001645088, 256714.225900001823902 ], [ 364910.552599996328354, 256713.276000000536442 ], [ 364917.708700001239777, 256725.155799999833107 ], [ 364931.232600003480911, 256746.798000000417233 ], [ 364937.70099999755621, 256744.739999998360872 ], [ 364946.590300001204014, 256742.490800000727177 ], [ 364959.520000003278255, 256739.219099998474121 ], [ 364961.937200002372265, 256739.449999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703034500", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-56", "ACRE": "0.21", "LONGITUDE": -64.87982639000001, "LATITUDE": 18.33942942, "OBJECTID_1": 22999, "PARCEL_NO_": "105703034500", "Tax_Legal_": "ANNAS RETREAT 173B-56 NEW QTR.", "Name": "WEHNER, C & M", "Address": "2438 Castlecomer Dr", "City": "Charlotte", "State": "North Carolina", "Zip": 28262, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.60457468600001, "SHAPE_Area": 960.60891584399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364225.937200002372265, 256702.557000000029802 ], [ 364190.915500000119209, 256697.287799999117851 ], [ 364187.342399999499321, 256701.235100001096725 ], [ 364184.883900001645088, 256705.859099999070168 ], [ 364180.810999996960163, 256710.680900000035763 ], [ 364202.339199997484684, 256733.423500001430511 ], [ 364213.781700000166893, 256721.294300001114607 ], [ 364215.136799998581409, 256719.444400001317263 ], [ 364229.220299996435642, 256707.488499999046326 ], [ 364231.6554000005126, 256705.608600001782179 ], [ 364225.937200002372265, 256702.557000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704061000", "MAP": "A9-324-T85", "PARCEL_NAM": "57Y-14", "ACRE": "0.24", "LONGITUDE": -64.87239696, "LATITUDE": 18.33940987, "OBJECTID_1": 23674, "PARCEL_NO_": "105704061000", "Tax_Legal_": "57Y-14 SMITH BAY EAST END QUARTER", "Name": "DONOVAN, DRENA", "Address": "PO Box 473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30200, "Improved_V": 34200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.194418367, "SHAPE_Area": 1058.1811297300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365012.189300000667572, 256709.252700001001358 ], [ 365009.01799999922514, 256702.893899999558926 ], [ 365001.80969999730587, 256697.135400000959635 ], [ 364986.516800001263618, 256693.843800000846386 ], [ 364966.774999998509884, 256739.489599999040365 ], [ 364979.663500003516674, 256741.072700001299381 ], [ 365012.189300000667572, 256709.252700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703021700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-118", "ACRE": ".14", "LONGITUDE": -64.8803008, "LATITUDE": 18.33947415, "OBJECTID_1": 22919, "PARCEL_NO_": "105703021700", "Tax_Legal_": "ANNAS RETREAT 148-118 NEW QTR", "Name": "AZILLE, ROMUALD CLEM & ALEXIA", "Address": "PO Box 11042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 216200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.988837855, "SHAPE_Area": 662.78613295299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364168.791799999773502, 256701.716600000858307 ], [ 364138.092600002884865, 256708.431400001049042 ], [ 364141.947999998927116, 256729.150100000202656 ], [ 364144.347099997103214, 256731.491799999028444 ], [ 364147.561599999666214, 256732.784699998795986 ], [ 364153.211199998855591, 256732.197599999606609 ], [ 364156.45440000295639, 256730.113200001418591 ], [ 364163.786700002849102, 256721.307300001382828 ], [ 364170.321699999272823, 256711.439399998635054 ], [ 364168.791799999773502, 256701.716600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704060800", "MAP": "A9-324-T85", "PARCEL_NAM": "57Z-2-22", "ACRE": "0.26", "LONGITUDE": -64.87261303, "LATITUDE": 18.33935489, "OBJECTID_1": 23672, "PARCEL_NO_": "105704060800", "Tax_Legal_": "SMITH BAY 57Z-2-22 EAST END QTR.", "Name": "WALDRON, ADASTIN & YVONNE", "Address": "PO Box 600191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84900, "Improved_V": 298600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.01115569000001, "SHAPE_Area": 1055.2878012900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364986.516800001263618, 256693.843800000846386 ], [ 364969.609399996697903, 256690.750100001692772 ], [ 364963.965199999511242, 256690.703899998217821 ], [ 364955.875100001692772, 256693.804099999368191 ], [ 364948.555299997329712, 256701.132500000298023 ], [ 364961.937200002372265, 256739.449999999254942 ], [ 364966.774999998509884, 256739.489599999040365 ], [ 364986.516800001263618, 256693.843800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604017600", "MAP": "A9-102-T68", "PARCEL_NAM": "173-241", "ACRE": "0.10", "LONGITUDE": -64.8850035, "LATITUDE": 18.33949512, "OBJECTID_1": 21654, "PARCEL_NO_": "105604017600", "Tax_Legal_": "173-241 ANNAS RETREAT NEW QTR", "Name": "MERCER, MAJORIE L", "Address": "7201 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 47800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.497363972200006, "SHAPE_Area": 421.00913188599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363672.755000002682209, 256715.8108000010252 ], [ 363647.078900001943111, 256700.824099998921156 ], [ 363640.522299997508526, 256713.225000001490116 ], [ 363665.390299998223782, 256728.416200000792742 ], [ 363672.755000002682209, 256715.8108000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703094800", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-44", "ACRE": "0.24", "LONGITUDE": -64.87875975, "LATITUDE": 18.33940258, "OBJECTID_1": 23384, "PARCEL_NO_": "105703094800", "Tax_Legal_": "ANNAS RETREAT 173B-44 NEW QTR", "Name": "SARGENT, ANELDA", "Address": "PO Box 11485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37800, "Improved_V": 295000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.734372881, "SHAPE_Area": 898.86546485199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364338.794299997389317, 256718.306699998676777 ], [ 364314.048600003123283, 256688.762200001627207 ], [ 364310.000799998641014, 256690.628899998962879 ], [ 364303.50900000333786, 256695.430900000035763 ], [ 364295.361299999058247, 256705.285599999129772 ], [ 364320.942100003361702, 256731.459499999880791 ], [ 364329.068199999630451, 256724.137699998915195 ], [ 364338.794299997389317, 256718.306699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703096800", "MAP": "D9-4185-T87", "PARCEL_NAM": "20-35A-4", "ACRE": "0.24", "LONGITUDE": -64.87490566, "LATITUDE": 18.33945378, "OBJECTID_1": 23402, "PARCEL_NO_": "105703096800", "Tax_Legal_": "SMITH BAY 20-35A-4 EAST END QTR.", "Name": "SMITH, IRA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 113500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.176846587, "SHAPE_Area": 1058.94055301 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364750.371399998664856, 256707.453899998217821 ], [ 364731.583599999547005, 256708.011500000953674 ], [ 364700.153499998152256, 256705.854400001466274 ], [ 364703.168399997055531, 256730.577100001275539 ], [ 364710.428800001740456, 256730.214299999177456 ], [ 364743.471400000154972, 256732.38459999859333 ], [ 364748.300300002098083, 256733.479600001126528 ], [ 364742.799999997019768, 256716.547100000083447 ], [ 364750.371399998664856, 256707.453899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095500", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-55", "ACRE": "0.23", "LONGITUDE": -64.87934123, "LATITUDE": 18.33939275, "OBJECTID_1": 23391, "PARCEL_NO_": "105703095500", "Tax_Legal_": "ANNAS RETREAT 173B-55 NEW QTR", "Name": "RICHARDS, CARL & PHILOMEN", "Address": "PO Box 583", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.735777676, "SHAPE_Area": 922.43813562100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364231.6554000005126, 256705.608600001782179 ], [ 364260.48309999704361, 256729.27589999884367 ], [ 364268.623499996960163, 256720.265500001609325 ], [ 364269.446000002324581, 256718.372400000691414 ], [ 364277.575699999928474, 256710.628499999642372 ], [ 364268.772799998521805, 256702.745999999344349 ], [ 364257.568899996578693, 256692.732900001108646 ], [ 364251.964299999177456, 256688.043000001460314 ], [ 364250.339100003242493, 256689.50730000063777 ], [ 364231.6554000005126, 256705.608600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604017200", "MAP": "A9-102-T68", "PARCEL_NAM": "173-299", "ACRE": "0.13", "LONGITUDE": -64.88540103, "LATITUDE": 18.33939325, "OBJECTID_1": 21650, "PARCEL_NO_": "105604017200", "Tax_Legal_": "173-299 ANNAS RETREAT NEW QTR", "Name": "NEILLE, MALISSA", "Address": "7253 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 97000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.43098424900001, "SHAPE_Area": 506.837286801 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363621.579000003635883, 256719.91330000013113 ], [ 363619.652099996805191, 256682.535300001502037 ], [ 363607.079000003635883, 256683.226500000804663 ], [ 363607.905000001192093, 256700.80180000141263 ], [ 363608.726800002157688, 256718.289900001138449 ], [ 363610.674599997699261, 256719.673799999058247 ], [ 363621.956699997186661, 256727.239399999380112 ], [ 363621.579000003635883, 256719.91330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503041700", "MAP": "G9-696-T63", "PARCEL_NAM": "40B", "ACRE": "0.45", "LONGITUDE": -64.90815137, "LATITUDE": 18.33925789, "OBJECTID_1": 20141, "PARCEL_NO_": "105503041700", "Tax_Legal_": "EST THOMAS 40 B NEW QTR C", "Name": "SHARP, GWEN S. (TRUSTEE)", "Address": "7727 Nelson St", "City": "New Orleans", "State": "Louisiana", "Zip": 70125, "Country": "United States", "Land_Value": 38200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.41753219500001, "SHAPE_Area": 1820.27438059 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361216.433399997651577, 256635.545299999415874 ], [ 361215.663099996745586, 256631.317099999636412 ], [ 361187.231700003147125, 256655.782400000840425 ], [ 361186.040899999439716, 256656.238699998706579 ], [ 361187.98589999973774, 256661.910300001502037 ], [ 361195.881800003349781, 256681.606600001454353 ], [ 361198.250399999320507, 256687.53660000115633 ], [ 361202.982199996709824, 256700.029899999499321 ], [ 361234.563199996948242, 256684.456300001591444 ], [ 361216.433399997651577, 256635.545299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604017100", "MAP": "A9-102-T68", "PARCEL_NAM": "173-298", "ACRE": "0.14", "LONGITUDE": -64.88556681, "LATITUDE": 18.33934225, "OBJECTID_1": 21649, "PARCEL_NO_": "105604017100", "Tax_Legal_": "173-298 ANNAS RETREAT NEW QTR", "Name": "MONELL, A. & ORTIZ, O", "Address": "PO Box 305575", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 143400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.057451802, "SHAPE_Area": 616.37243507300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363607.861599996685982, 256700.863299999386072 ], [ 363607.035599999129772, 256683.287999998778105 ], [ 363605.296300001442432, 256683.383600000292063 ], [ 363582.708800002932549, 256684.465300001204014 ], [ 363584.181100003421307, 256700.942600000649691 ], [ 363608.683399997651577, 256718.351399999111891 ], [ 363607.861599996685982, 256700.863299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704010200", "MAP": "F9-2501-T69", "PARCEL_NAM": "57V-1", "ACRE": "0.24", "LONGITUDE": -64.8741265, "LATITUDE": 18.33935194, "OBJECTID_1": 23448, "PARCEL_NO_": "105704010200", "Tax_Legal_": "SMITH BAY 57V-1 EAST END QTR", "Name": "James Tamar&Veronica Jocelyn Tamar Fam Revoc Trust", "Address": "PO Box 307432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31200, "Improved_V": 193600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.4639234, "SHAPE_Area": 996.48121957199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364784.002199999988079, 256706.455800000578165 ], [ 364797.524999998509884, 256729.238400001078844 ], [ 364827.495200000703335, 256713.440600000321865 ], [ 364815.630699999630451, 256686.323499999940395 ], [ 364784.002199999988079, 256706.455800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703090700", "MAP": "D9-1562-T80", "PARCEL_NAM": "173A-3", "ACRE": "0.25", "LONGITUDE": -64.87681568000001, "LATITUDE": 18.33937622, "OBJECTID_1": 23343, "PARCEL_NO_": "105703090700", "Tax_Legal_": "ANNAS RETREAT 173A-3 NEW QTR.", "Name": "SMITH, ANTON & CHRISTINE", "Address": "P.O. BOX 2241", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42200, "Improved_V": 221200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.33738171, "SHAPE_Area": 921.84283044200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364543.640799999237061, 256714.916999999433756 ], [ 364534.971000000834465, 256691.414700001478195 ], [ 364513.137599997222424, 256698.624299999326468 ], [ 364498.591600000858307, 256702.304900001734495 ], [ 364512.093900002539158, 256726.480099998414516 ], [ 364543.640799999237061, 256714.916999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604019400", "MAP": null, "PARCEL_NAM": "126B-1", "ACRE": null, "LONGITUDE": -64.8874167, "LATITUDE": 18.33937358, "OBJECTID_1": 21670, "PARCEL_NO_": "105604019400", "Tax_Legal_": "126B-1 ANNAS RETREAT NEW QTR.", "Name": "INDUSTRIOUS AUTO REPAIR INCORPORATED", "Address": "PO Box 304985", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35900, "Improved_V": 278700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.976683126, "SHAPE_Area": 831.89048396600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363420.535700000822544, 256695.381400000303984 ], [ 363422.236400000751019, 256685.051699999719858 ], [ 363383.488399997353554, 256690.011900000274181 ], [ 363384.876299999654293, 256716.410000000149012 ], [ 363392.977200001478195, 256712.043299999088049 ], [ 363413.160199999809265, 256709.253199998289347 ], [ 363417.243900001049042, 256703.164900001138449 ], [ 363419.664599999785423, 256702.973600000143051 ], [ 363419.691600002348423, 256699.807399999350309 ], [ 363420.535700000822544, 256695.381400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703093800", "MAP": "A9-287-T80", "PARCEL_NAM": "173A-61&173B-58", "ACRE": "0.24", "LONGITUDE": -64.87792012, "LATITUDE": 18.33932479, "OBJECTID_1": 23374, "PARCEL_NO_": "105703093800", "Tax_Legal_": "173A-61&173B-58 ANNAS RETREAT", "Name": "RHYMER, ERIA", "Address": "PO Box 8183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 221500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.511449782, "SHAPE_Area": 1040.56358252 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364425.861699998378754, 256720.708099998533726 ], [ 364407.676100000739098, 256678.340500000864267 ], [ 364397.167099997401237, 256681.420899998396635 ], [ 364386.67059999704361, 256683.023800000548363 ], [ 364396.852399997413158, 256718.359700001776218 ], [ 364407.303900003433228, 256722.0337999984622 ], [ 364413.745399996638298, 256723.142000000923872 ], [ 364419.393200002610683, 256722.766100000590086 ], [ 364425.861699998378754, 256720.708099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604017700", "MAP": "A9-102-T68", "PARCEL_NAM": "173-242", "ACRE": "0.11", "LONGITUDE": -64.88496101, "LATITUDE": 18.33936034, "OBJECTID_1": 21655, "PARCEL_NO_": "105604017700", "Tax_Legal_": "173-242 ANNAS RETREAT NEW QTR", "Name": "SPRINGETTE, LYDIA EVELYN (TRUSTEE)", "Address": "7202 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 99300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.956375670100002, "SHAPE_Area": 420.92260748899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363675.213500000536442, 256711.186900001019239 ], [ 363658.539899997413158, 256680.652899999171495 ], [ 363647.078900001943111, 256700.824099998921156 ], [ 363672.755000002682209, 256715.8108000010252 ], [ 363675.213500000536442, 256711.186900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704023200", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-13", "ACRE": "0.29", "LONGITUDE": -64.86913774, "LATITUDE": 18.33937978, "OBJECTID_1": 23535, "PARCEL_NO_": "105704023200", "Tax_Legal_": "SMITH BAY 100-13 EAST END QTR.", "Name": "FRASER, CARLTON & CAROLYN G.", "Address": "PO Box 10645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48400, "Improved_V": 207800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.562670172, "SHAPE_Area": 1103.28462408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365360.417400002479553, 256723.712900001555681 ], [ 365359.789099998772144, 256702.809500001370907 ], [ 365304.902300000190735, 256709.115299999713898 ], [ 365307.998099997639656, 256724.339400000870228 ], [ 365308.762999996542931, 256729.200800001621246 ], [ 365360.417400002479553, 256723.712900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703091000", "MAP": "A9-287-T80", "PARCEL_NAM": "173A-43", "ACRE": "0.27", "LONGITUDE": -64.87771979, "LATITUDE": 18.3392658, "OBJECTID_1": 23346, "PARCEL_NO_": "105703091000", "Tax_Legal_": "ANNAS RETREAT 173A-43 NEW QTR", "Name": "SMITH SR., RICHARD, RICHARD JR., RONALD & HAYNES, LISA", "Address": "6516 King George Way", "City": "Morrow", "State": "Georgia", "Zip": 30260, "Country": "United States", "Land_Value": 30800, "Improved_V": 124300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.242478893, "SHAPE_Area": 951.79966789800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364446.109399996697903, 256710.319099999964237 ], [ 364426.280599996447563, 256671.526700001209974 ], [ 364407.676100000739098, 256678.340500000864267 ], [ 364425.861699998378754, 256720.708099998533726 ], [ 364446.109399996697903, 256710.319099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703094700", "MAP": "D9-7636-T005", "PARCEL_NAM": "173B-43", "ACRE": ".24", "LONGITUDE": -64.87855964000001, "LATITUDE": 18.33931052, "OBJECTID_1": 23383, "PARCEL_NO_": "105703094700", "Tax_Legal_": "ANNAS RETREAT 173B-43 NEW QTR.", "Name": "DOWAY, NORMAN & ANELDA", "Address": "173B-43 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39400, "Improved_V": 16000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.400417244, "SHAPE_Area": 837.75899061300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364338.794299997389317, 256718.306699998676777 ], [ 364350.127599999308586, 256713.122099999338388 ], [ 364358.206900000572205, 256711.288400001823902 ], [ 364360.643899999558926, 256709.197399999946356 ], [ 364360.659999996423721, 256707.297699999064207 ], [ 364359.060000002384186, 256705.807000000029802 ], [ 364358.273500002920628, 256703.478500001132488 ], [ 364339.863099999725819, 256687.495799999684095 ], [ 364334.249499998986721, 256683.861299999058247 ], [ 364326.996299996972084, 256683.379700001329184 ], [ 364314.048600003123283, 256688.762200001627207 ], [ 364338.794299997389317, 256718.306699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703093900", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-57", "ACRE": "0.23", "LONGITUDE": -64.87823281, "LATITUDE": 18.33926887, "OBJECTID_1": 23375, "PARCEL_NO_": "105703093900", "Tax_Legal_": "ANNAS RETREAT 173B-57 NEW QTR.", "Name": "REY, KAREN EMELDA", "Address": "173B-57 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 225000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.69019224600001, "SHAPE_Area": 1018.77457309 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364386.67059999704361, 256683.023800000548363 ], [ 364372.950699999928474, 256684.38910000026226 ], [ 364361.665899999439716, 256683.874600000679493 ], [ 364350.404500000178814, 256680.61600000038743 ], [ 364340.775499999523163, 256675.048799999058247 ], [ 364334.330399997532368, 256674.362700000405312 ], [ 364332.708800002932549, 256675.404899999499321 ], [ 364333.498999997973442, 256677.311200000345707 ], [ 364337.51969999819994, 256678.610700000077486 ], [ 364343.133299998939037, 256682.245200000703335 ], [ 364363.14190000295639, 256699.929800000041723 ], [ 364367.117700003087521, 256706.50620000064373 ], [ 364370.321400001645088, 256709.065499998629093 ], [ 364396.852399997413158, 256718.359700001776218 ], [ 364386.67059999704361, 256683.023800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604017800", "MAP": "A9-102-T68", "PARCEL_NAM": "173-243", "ACRE": "0.11", "LONGITUDE": -64.88484169, "LATITUDE": 18.33929932, "OBJECTID_1": 21656, "PARCEL_NO_": "105604017800", "Tax_Legal_": "173-243 ANNAS RETREAT NO.1 NEW QTR", "Name": "CHRISTIAN (LIFE ESTATE), VALENCIA", "Address": "7203 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 172000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.689598618700003, "SHAPE_Area": 481.93807922600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363683.303199999034405, 256710.579700000584126 ], [ 363681.240299999713898, 256679.586599998176098 ], [ 363673.060699999332428, 256679.927400000393391 ], [ 363658.539899997413158, 256680.652899999171495 ], [ 363675.213500000536442, 256711.186900001019239 ], [ 363683.303199999034405, 256710.579700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604017900", "MAP": "A9-102-T68", "PARCEL_NAM": "173-244", "ACRE": "0.10", "LONGITUDE": -64.88469086000001, "LATITUDE": 18.33931098, "OBJECTID_1": 21657, "PARCEL_NO_": "105604017900", "Tax_Legal_": "ANNAS RETREAT 173-244 NEW QTR", "Name": "DEWINDT, HERNANDO E", "Address": "PO Box 8484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14900, "Improved_V": 77300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.7415617363, "SHAPE_Area": 463.58283702 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363697.881899997591972, 256709.465999998152256 ], [ 363696.695699997246265, 256678.901000000536442 ], [ 363690.000500001013279, 256679.221700001507998 ], [ 363681.240299999713898, 256679.586599998176098 ], [ 363683.303199999034405, 256710.579700000584126 ], [ 363692.965000003576279, 256709.854499999433756 ], [ 363697.881899997591972, 256709.465999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604018000", "MAP": "A9-102-T68", "PARCEL_NAM": "173-245", "ACRE": "0.11", "LONGITUDE": -64.88455013, "LATITUDE": 18.33930236, "OBJECTID_1": 21658, "PARCEL_NO_": "105604018000", "Tax_Legal_": "173-245 ANNAS RETREAT NEW QTR", "Name": "JEPPESSEN, LISETTE & BLAIR & HELGE III", "Address": "PO Box 8862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 98000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.289150343299994, "SHAPE_Area": 448.09664359700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363712.435900002717972, 256708.371800001710653 ], [ 363711.605200000107288, 256678.203099999576807 ], [ 363701.294200003147125, 256678.680799998342991 ], [ 363696.695699997246265, 256678.901000000536442 ], [ 363697.881899997591972, 256709.465999998152256 ], [ 363705.06870000064373, 256708.89809999987483 ], [ 363712.435900002717972, 256708.371800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604018100", "MAP": "A9-102-T68", "PARCEL_NAM": "173-246", "ACRE": "0.14", "LONGITUDE": -64.88440385, "LATITUDE": 18.33929311, "OBJECTID_1": 21659, "PARCEL_NO_": "105604018100", "Tax_Legal_": "ANNAS RETREAT 173-246 NEW QTR", "Name": "BATTISTE, ELEANOR", "Address": "7206 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 79700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.429883135400004, "SHAPE_Area": 486.51882916 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363728.543799996376038, 256707.183800000697374 ], [ 363727.915100000798702, 256677.421100001782179 ], [ 363720.654700003564358, 256677.7837999984622 ], [ 363711.605200000107288, 256678.203099999576807 ], [ 363712.435900002717972, 256708.371800001710653 ], [ 363723.626400001347065, 256707.572299998253584 ], [ 363728.543799996376038, 256707.183800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703090600", "MAP": "D9-1562-T80", "PARCEL_NAM": "173A-4", "ACRE": "0.25", "LONGITUDE": -64.87646854, "LATITUDE": 18.33927095, "OBJECTID_1": 23342, "PARCEL_NO_": "105703090600", "Tax_Legal_": "173A-4 ANNAS RETREAT NEW QUARTER", "Name": "TROY RAYMOND and KESIA KING", "Address": "PO Box 8183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31400, "Improved_V": 90200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.743169661, "SHAPE_Area": 944.73550353400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364583.276000000536442, 256700.464899998158216 ], [ 364576.981899999082088, 256682.048200000077486 ], [ 364534.971000000834465, 256691.414700001478195 ], [ 364543.640799999237061, 256714.916999999433756 ], [ 364583.276000000536442, 256700.464899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88008075, "LATITUDE": 18.33895015, "OBJECTID_1": 22970, "PARCEL_NO_": "105703026800", "Tax_Legal_": "ANNAS RETREAT 173-339 NEW QUARTER", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 133900, "Improved_V": 70300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.60446893299999, "SHAPE_Area": 2466.1335813400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364158.14360000193119, 256626.480099998414516 ], [ 364157.251000002026558, 256636.60530000180006 ], [ 364159.542300000786781, 256651.611699998378754 ], [ 364162.623700000345707, 256668.524399999529123 ], [ 364165.701399996876717, 256685.859299998730421 ], [ 364168.791799999773502, 256701.716600000858307 ], [ 364170.321699999272823, 256711.439399998635054 ], [ 364176.869300000369549, 256700.094000000506639 ], [ 364207.008599996566772, 256664.454700000584126 ], [ 364191.855899997055531, 256644.699000000953674 ], [ 364179.122100003063679, 256624.963100001215935 ], [ 364167.952399998903275, 256610.939500000327826 ], [ 364158.14360000193119, 256626.480099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604018300", "MAP": "A9-102-T68", "PARCEL_NAM": "173-248", "ACRE": "0.12", "LONGITUDE": -64.8842376, "LATITUDE": 18.33928478, "OBJECTID_1": 21661, "PARCEL_NO_": "105604018300", "Tax_Legal_": "173-248 ANNAS RETREAT NEW QTR", "Name": "LINDESAY, CHARLENE & IVAH", "Address": "PO Box 764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16400, "Improved_V": 113500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.000912898699994, "SHAPE_Area": 559.53125765000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363748.640100002288818, 256705.66609999909997 ], [ 363745.663000002503395, 256676.510899998247623 ], [ 363727.915100000798702, 256677.421100001782179 ], [ 363728.543799996376038, 256707.183800000697374 ], [ 363730.888599999248981, 256706.998500000685453 ], [ 363748.640100002288818, 256705.66609999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804022500", "MAP": "D9-7369-T004", "PARCEL_NAM": "11A-2", "ACRE": ".82", "LONGITUDE": -64.85019471, "LATITUDE": 18.33911491, "OBJECTID_1": 24032, "PARCEL_NO_": "105804022500", "Tax_Legal_": "11A-2&11A-1A SMITH BAY EAST END QUARTER", "Name": "HOFFMAN FAMILY TRUST OF 2012", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 574900, "Improved_V": 30800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.91517073, "SHAPE_Area": 3343.38384653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367327.043999999761581, 256736.220199998468161 ], [ 367330.289099998772144, 256733.924800001084805 ], [ 367336.748599998652935, 256732.922200001776218 ], [ 367347.261200003325939, 256729.419599998742342 ], [ 367358.60530000180006, 256722.968600001186132 ], [ 367368.309799998998642, 256719.670499999076128 ], [ 367376.410700000822544, 256715.303800001740456 ], [ 367377.314099997282028, 256703.912200000137091 ], [ 367374.954499997198582, 256696.92680000141263 ], [ 367370.17059999704361, 256690.554800000041723 ], [ 367366.164200000464916, 256687.566700000315905 ], [ 367358.133500002324581, 256683.701299998909235 ], [ 367348.47749999910593, 256681.300200000405312 ], [ 367341.224299997091293, 256680.81870000064373 ], [ 367338.018799997866154, 256678.470400001853704 ], [ 367325.965499997138977, 256673.516600001603365 ], [ 367298.419600002467632, 256688.7010000012815 ], [ 367297.465800002217293, 256706.002900000661612 ], [ 367297.411899998784065, 256712.335200000554323 ], [ 367307.089400000870228, 256712.203299999237061 ], [ 367312.627499997615814, 256724.703200001269579 ], [ 367327.043999999761581, 256736.220199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095600", "MAP": "D9-2425-T83", "PARCEL_NAM": "173B-60&61A", "ACRE": "0.23", "LONGITUDE": -64.87914649, "LATITUDE": 18.33921551, "OBJECTID_1": 23392, "PARCEL_NO_": "105703095600", "Tax_Legal_": "ANNAS RETREAT 173B-60&61A NEW QTR.", "Name": "HARRIGAN, ALLAN E", "Address": "PO BOX 600139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 504400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.34507499899999, "SHAPE_Area": 921.92717957100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364251.964299999177456, 256688.043000001460314 ], [ 364257.568899996578693, 256692.732900001108646 ], [ 364263.234700001776218, 256690.246100001037121 ], [ 364268.772799998521805, 256702.745999999344349 ], [ 364277.575699999928474, 256710.628499999642372 ], [ 364288.145900003612041, 256700.371399998664856 ], [ 364293.860200002789497, 256692.185499999672174 ], [ 364297.108800001442432, 256689.4679000005126 ], [ 364275.520000003278255, 256667.970800001174212 ], [ 364251.964299999177456, 256688.043000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604018400", "MAP": "A9-102-T68", "PARCEL_NAM": "173-249", "ACRE": "0.14", "LONGITUDE": -64.88407786, "LATITUDE": 18.33926991, "OBJECTID_1": 21662, "PARCEL_NO_": "105604018400", "Tax_Legal_": "173-249 ANNAS RETREAT NEW QTR", "Name": "PETERS, JOSE & HULDA (LIFE ESTATE)", "Address": "7209 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 156600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.029110297200006, "SHAPE_Area": 434.36796798199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363763.164499998092651, 256704.518399998545647 ], [ 363760.990099996328354, 256675.791900001466274 ], [ 363745.663000002503395, 256676.510899998247623 ], [ 363748.640100002288818, 256705.66609999909997 ], [ 363763.164499998092651, 256704.518399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703021800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-119", "ACRE": ".12", "LONGITUDE": -64.88031573000001, "LATITUDE": 18.33930056, "OBJECTID_1": 22920, "PARCEL_NO_": "105703021800", "Tax_Legal_": "ANNAS RETREAT 148-119 NEW QTR", "Name": "DAVIS, BERIS D", "Address": "PO Box 305046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18700, "Improved_V": 176800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.915804113299998, "SHAPE_Area": 492.57807443600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364165.701399996876717, 256685.859299998730421 ], [ 364135.804999999701977, 256693.002900000661612 ], [ 364138.092600002884865, 256708.431400001049042 ], [ 364168.791799999773502, 256701.716600000858307 ], [ 364165.701399996876717, 256685.859299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703016000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-230", "ACRE": ".133", "LONGITUDE": -64.88065619, "LATITUDE": 18.33928919, "OBJECTID_1": 22881, "PARCEL_NO_": "105703016000", "Tax_Legal_": "148-230 ANNAS RETREAT NO.1 NEW QTR", "Name": "WHITE, DION F. & LEEANN GREAUX", "Address": "PO BOX 10610", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 98100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.508640464500004, "SHAPE_Area": 466.45420957200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364123.789399996399879, 256683.616399999707937 ], [ 364105.237000003457069, 256684.308899998664856 ], [ 364106.666199997067451, 256705.852200001478195 ], [ 364116.327600002288818, 256707.620000001043081 ], [ 364122.778099998831749, 256707.672800000756979 ], [ 364126.82940000295639, 256705.383900001645088 ], [ 364127.648299999535084, 256703.912999998778105 ], [ 364127.678900003433228, 256700.324599999934435 ], [ 364123.789399996399879, 256683.616399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703091100", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-42", "ACRE": "0.25", "LONGITUDE": -64.87754068, "LATITUDE": 18.33917892, "OBJECTID_1": 23347, "PARCEL_NO_": "105703091100", "Tax_Legal_": "173A-42 ANNAS RETREAT \nNEW QUARTER", "Name": "Ivan R Caesar (Life Estate) & Rosabelle Caesar", "Address": "PO Box 9580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 155800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.143706143, "SHAPE_Area": 888.99449189200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364463.108499996364117, 256702.647799998521805 ], [ 364448.922100000083447, 256664.11259999871254 ], [ 364426.280599996447563, 256671.526700001209974 ], [ 364446.109399996697903, 256710.319099999964237 ], [ 364453.400399997830391, 256706.368000000715256 ], [ 364463.108499996364117, 256702.647799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704010400", "MAP": "F9-2502-T69", "PARCEL_NAM": "57V-2", "ACRE": "0.23", "LONGITUDE": -64.87384307000001, "LATITUDE": 18.33918845, "OBJECTID_1": 23450, "PARCEL_NO_": "105704010400", "Tax_Legal_": "SMITH BAY 57V-2 EAST END QTR", "Name": "SMITH, WARREN & MAJORIE W", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.31573052499999, "SHAPE_Area": 1026.28539972 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364857.831600002944469, 256692.940999999642372 ], [ 364844.673000000417233, 256668.340199999511242 ], [ 364839.951300002634525, 256671.112700000405312 ], [ 364831.033299997448921, 256676.73930000141263 ], [ 364815.630699999630451, 256686.323499999940395 ], [ 364827.495200000703335, 256713.440600000321865 ], [ 364840.462700001895428, 256705.736200001090765 ], [ 364851.822999998927116, 256697.385499998927116 ], [ 364857.831600002944469, 256692.940999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604018500", "MAP": "A9-102-T68", "PARCEL_NAM": "173-250", "ACRE": "0.12", "LONGITUDE": -64.88392328, "LATITUDE": 18.33926053, "OBJECTID_1": 21663, "PARCEL_NO_": "105604018500", "Tax_Legal_": "ANNAS RETREAT 173-250 NEW QTR", "Name": "DEGOUT, RITZA L. (LIFE ESTATE)", "Address": "PO Box 1512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17800, "Improved_V": 91200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.769400716999996, "SHAPE_Area": 508.580747132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363780.916000001132488, 256703.186099998652935 ], [ 363778.737999998033047, 256674.881700001657009 ], [ 363760.990099996328354, 256675.791900001466274 ], [ 363763.164499998092651, 256704.518399998545647 ], [ 363780.916000001132488, 256703.186099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804020700", "MAP": "A9-629-T004", "PARCEL_NAM": "11B-10", "ACRE": ".780", "LONGITUDE": -64.85201752, "LATITUDE": 18.3390401, "OBJECTID_1": 24017, "PARCEL_NO_": "105804020700", "Tax_Legal_": "SMITH BAY 11B-10 EAST END QUARTER", "Name": "ISLAND ESCAPE ACT LLC", "Address": "14645 Scenic Hwy", "City": "Lookout Mountain", "State": "Georgia", "Zip": 30750, "Country": "United States", "Land_Value": 341300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.00016001899999, "SHAPE_Area": 3123.4750783700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367182.976700000464916, 256704.221400000154972 ], [ 367178.212499998509884, 256695.52760000154376 ], [ 367170.237499997019768, 256685.11879999935627 ], [ 367149.436999998986721, 256665.739000000059605 ], [ 367138.206200003623962, 256658.892099998891354 ], [ 367097.640600003302097, 256687.902100000530481 ], [ 367138.505400002002716, 256718.422899998724461 ], [ 367155.331900000572205, 256731.0152000002563 ], [ 367182.976700000464916, 256704.221400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604018600", "MAP": "A9-102-T68", "PARCEL_NAM": "173-251", "ACRE": "0.14", "LONGITUDE": -64.88376306000001, "LATITUDE": 18.33925, "OBJECTID_1": 21664, "PARCEL_NO_": "105604018600", "Tax_Legal_": "173-251 ANNAS RETREAT NEW QTR", "Name": "OLIVER OTTLEY", "Address": "7211 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021741, "Country": "United States", "Land_Value": 20800, "Improved_V": 97600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.681439248900006, "SHAPE_Area": 455.30384151700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363797.053000003099442, 256702.051600001752377 ], [ 363794.871399998664856, 256674.169399999082088 ], [ 363778.737999998033047, 256674.881700001657009 ], [ 363780.916000001132488, 256703.186099998652935 ], [ 363797.053000003099442, 256702.051600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703015900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-231", "ACRE": ".124", "LONGITUDE": -64.88086524000001, "LATITUDE": 18.33920631, "OBJECTID_1": 22880, "PARCEL_NO_": "105703015900", "Tax_Legal_": "ANNAS RETREAT 148-231 NEW QTR", "Name": "ROBERTS, CAROL", "Address": "7301 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 106800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.292293343, "SHAPE_Area": 645.000018963 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364105.237000003457069, 256684.308899998664856 ], [ 364096.523999996483326, 256665.872499998658895 ], [ 364077.026900000870228, 256682.811500001698732 ], [ 364081.803599998354912, 256690.027800001204014 ], [ 364089.803800001740456, 256697.481499999761581 ], [ 364096.220100000500679, 256701.544799998402596 ], [ 364106.666199997067451, 256705.852200001478195 ], [ 364105.237000003457069, 256684.308899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704062300", "MAP": "D9-6270-T97", "PARCEL_NAM": "57W-4-1", "ACRE": "0.32", "LONGITUDE": -64.87320058, "LATITUDE": 18.33921782, "OBJECTID_1": 23684, "PARCEL_NO_": "105704062300", "Tax_Legal_": "57W-4-1 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "SABLON, KENNETH K. & JACINTA M.", "Address": "215-131 Anna's Retreat-", "City": "ST.THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49900, "Improved_V": 244600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.10209562599999, "SHAPE_Area": 1310.5860160300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364887.250399999320507, 256703.586100000888109 ], [ 364896.931599996984005, 256703.032000001519918 ], [ 364921.911100000143051, 256705.136300001293421 ], [ 364929.986800000071526, 256703.724700000137091 ], [ 364934.844400003552437, 256701.442499998956919 ], [ 364937.938299998641014, 256698.495400000363588 ], [ 364920.207999996840954, 256672.092399999499321 ], [ 364917.341099999845028, 256673.646000001579523 ], [ 364911.652000002563, 256678.8766999989748 ], [ 364908.410499997437, 256680.75 ], [ 364898.686200000345707, 256686.370000001043081 ], [ 364872.805100001394749, 256695.446299999952316 ], [ 364861.4628000035882, 256701.686299998313189 ], [ 364868.631499998271465, 256712.088500000536442 ], [ 364871.8800999969244, 256709.370900001376867 ], [ 364877.549500003457069, 256706.462000001221895 ], [ 364887.250399999320507, 256703.586100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604018700", "MAP": "A9-102-T68", "PARCEL_NAM": "173-252", "ACRE": "0.11", "LONGITUDE": -64.88360278, "LATITUDE": 18.33923896, "OBJECTID_1": 21665, "PARCEL_NO_": "105604018700", "Tax_Legal_": "173-252 ANNAS RETREAT NEW QTR", "Name": "RICHARDS, JAMES A & MYRTLE", "Address": "7212 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 80100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.311041467099997, "SHAPE_Area": 495.72980363 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363814.804499998688698, 256700.719200000166893 ], [ 363812.621100001037121, 256673.048099998384714 ], [ 363794.871399998664856, 256674.169399999082088 ], [ 363797.053000003099442, 256702.051600001752377 ], [ 363814.804499998688698, 256700.719200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604019200", "MAP": "A9-102-T68", "PARCEL_NAM": "173-253", "ACRE": "0.12", "LONGITUDE": -64.88343866, "LATITUDE": 18.33922697, "OBJECTID_1": 21668, "PARCEL_NO_": "105604019200", "Tax_Legal_": "173-253 ANNAS RETREAT NEW QUARTER", "Name": "DONOVAN, DEBORAH", "Address": "PO Box 9312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 120600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.475906968299995, "SHAPE_Area": 471.303732604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363831.747800000011921, 256699.591299999505281 ], [ 363829.564499996602535, 256671.920200001448393 ], [ 363812.621100001037121, 256673.048099998384714 ], [ 363814.804499998688698, 256700.719200000166893 ], [ 363831.747800000011921, 256699.591299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704010300", "MAP": "F9-1048-T62", "PARCEL_NAM": "57B-1", "ACRE": ".46", "LONGITUDE": -64.87414424000001, "LATITUDE": 18.33902083, "OBJECTID_1": 23449, "PARCEL_NO_": "105704010300", "Tax_Legal_": "SMITH BAY 57B-1 EAST END QTR", "Name": "SWAN, THANE K. & SONYA C", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88100, "Improved_V": 126900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.71325376, "SHAPE_Area": 1707.8440932200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364804.692900002002716, 256645.070700000971556 ], [ 364805.894299998879433, 256644.020399998873472 ], [ 364788.900799997150898, 256656.837400000542402 ], [ 364787.803000003099442, 256667.957600001245737 ], [ 364784.002199999988079, 256706.455800000578165 ], [ 364815.630699999630451, 256686.323499999940395 ], [ 364831.033299997448921, 256676.73930000141263 ], [ 364812.810000002384186, 256638.804400000721216 ], [ 364804.692900002002716, 256645.070700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88327274, "LATITUDE": 18.33921311, "OBJECTID_1": 21616, "PARCEL_NO_": "105604013800", "Tax_Legal_": "173-254 ANNAS RETREAT NEW QTR", "Name": "HECTOR, JOSEPHINE", "Address": "PO Box 5416", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 16400, "Improved_V": 67900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.091049622699998, "SHAPE_Area": 506.79155078100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363849.499300003051758, 256698.25899999961257 ], [ 363848.123999997973442, 256670.383400000631809 ], [ 363829.564499996602535, 256671.920200001448393 ], [ 363831.747800000011921, 256699.591299999505281 ], [ 363849.499300003051758, 256698.25899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88710987, "LATITUDE": 18.33915417, "OBJECTID_1": 21577, "PARCEL_NO_": "105604010100", "Tax_Legal_": "126 ANNAS RETREAT NEW QTR", "Name": "JIM TILLET CARIB. INC", "Address": "4126 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 328700, "Improved_V": 1666500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.983529487, "SHAPE_Area": 852.569489374 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363448.281199999153614, 256656.767200000584126 ], [ 363425.715199999511242, 256655.315999999642372 ], [ 363422.236400000751019, 256685.051699999719858 ], [ 363420.535700000822544, 256695.381400000303984 ], [ 363440.698899999260902, 256694.913100000470877 ], [ 363441.602300003170967, 256683.521499998867512 ], [ 363445.651799999177456, 256681.44370000064373 ], [ 363448.281199999153614, 256656.767200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88307492, "LATITUDE": 18.33919712, "OBJECTID_1": 21617, "PARCEL_NO_": "105604013900", "Tax_Legal_": "173-255 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, PETER", "Address": "7215 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 66400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.55582666399999, "SHAPE_Area": 675.21334334100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363874.512999996542931, 256696.352800000458956 ], [ 363869.923199996352196, 256667.184300001710653 ], [ 363848.123999997973442, 256670.383400000631809 ], [ 363849.499300003051758, 256698.25899999961257 ], [ 363874.512999996542931, 256696.352800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703091200", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-41", "ACRE": "0.24", "LONGITUDE": -64.87733722, "LATITUDE": 18.3391174, "OBJECTID_1": 23348, "PARCEL_NO_": "105703091200", "Tax_Legal_": "173A-41 ANNAS RETREAT NEW QUARTER", "Name": "DAINEL, T.E.,A.A.,K.A.,C.I.D.POLEON & MAURICE L.M. CAINES", "Address": "PO Box 8636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27300, "Improved_V": 182500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.03048728600001, "SHAPE_Area": 955.54594716199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364484.936499997973442, 256696.071400001645088 ], [ 364472.364500001072884, 256657.33839999884367 ], [ 364448.922100000083447, 256664.11259999871254 ], [ 364463.108499996364117, 256702.647799998521805 ], [ 364473.624700002372265, 256698.723099999129772 ], [ 364484.936499997973442, 256696.071400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704023100", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-14", "ACRE": "0.30", "LONGITUDE": -64.86916981, "LATITUDE": 18.33916301, "OBJECTID_1": 23534, "PARCEL_NO_": "105704023100", "Tax_Legal_": "SMITH BAY 100-14 EASTEND QUARTER", "Name": "CHARLES, STEADROY", "Address": "PO Box 10645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46800, "Improved_V": 173200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.90935491799999, "SHAPE_Area": 1588.1189779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365313.211800001561642, 256680.2635000012815 ], [ 365299.490099996328354, 256681.839899998158216 ], [ 365304.115800000727177, 256706.786800000816584 ], [ 365304.902300000190735, 256709.115299999713898 ], [ 365359.789099998772144, 256702.809500001370907 ], [ 365358.352700002491474, 256682.110599998384714 ], [ 365356.80120000243187, 256674.920699998736382 ], [ 365313.211800001561642, 256680.2635000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704062200", "MAP": "D9-6270-T97", "PARCEL_NAM": "57W-4-2", "ACRE": "0.29", "LONGITUDE": -64.87282282, "LATITUDE": 18.33905132, "OBJECTID_1": 23683, "PARCEL_NO_": "105704062200", "Tax_Legal_": "57W-4-2 ESTATE SMITH BAY 1,2 & 3 EAST END QTR", "Name": "SERRANT, MATTHEW", "Address": "PO Box 302271", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45200, "Improved_V": 163400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.69497281400001, "SHAPE_Area": 991.37587653100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364961.619999997317791, 256682.029899999499321 ], [ 364968.882200002670288, 256681.4560999982059 ], [ 364969.308600001037121, 256681.534099999815226 ], [ 364956.460400000214577, 256658.072200000286102 ], [ 364952.134800001978874, 256659.576400000602007 ], [ 364924.632100000977516, 256669.694899998605251 ], [ 364920.207999996840954, 256672.092399999499321 ], [ 364937.938299998641014, 256698.495400000363588 ], [ 364951.103699997067451, 256685.954599998891354 ], [ 364956.773100003600121, 256683.045699998736382 ], [ 364961.619999997317791, 256682.029899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804020100", "MAP": "D9-5145-T91", "PARCEL_NAM": "11A REM", "ACRE": null, "LONGITUDE": -64.85069968000001, "LATITUDE": 18.33923993, "OBJECTID_1": 24011, "PARCEL_NO_": "105804020100", "Tax_Legal_": "11A-1 REM. SMITH BAY NO.1,2 & 3 EAST END QUARTER", "Name": "WILLYNESS, LLC", "Address": "PO BOX 150365", "City": "Grand Rapids", "State": "Michigan", "Zip": 49515, "Country": "United States", "Land_Value": 626500, "Improved_V": 2133500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.636707143500004, "SHAPE_Area": 198.63109172700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367297.465800002217293, 256706.002900000661612 ], [ 367279.617299996316433, 256718.733500000089407 ], [ 367274.781199999153614, 256718.482799999415874 ], [ 367272.374799996614456, 256716.985500000417233 ], [ 367271.58110000193119, 256715.501299999654293 ], [ 367266.748599998652935, 256714.828499998897314 ], [ 367265.893799997866154, 256720.521000001579523 ], [ 367271.528999999165535, 256721.622600000351667 ], [ 367276.343500003218651, 256724.406199999153614 ], [ 367281.991200000047684, 256724.030299998819828 ], [ 367285.230899997055531, 256722.368000000715256 ], [ 367297.411899998784065, 256712.335200000554323 ], [ 367297.465800002217293, 256706.002900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88287016, "LATITUDE": 18.33917447, "OBJECTID_1": 21618, "PARCEL_NO_": "105604014000", "Tax_Legal_": "173-256 ANNAS RETREAT NEW QTR", "Name": "MARY L MARDENBOROUGH REVOCABLE TRUST", "Address": "PO Box 1112", "City": "Havre De Grace", "State": "Maryland", "Zip": 21078, "Country": "United States", "Land_Value": 20800, "Improved_V": 85100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.490549083, "SHAPE_Area": 609.51361152499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363896.297799997031689, 256694.842300001531839 ], [ 363887.6908999979496, 256663.952199999243021 ], [ 363869.923199996352196, 256667.184300001710653 ], [ 363874.512999996542931, 256696.352800000458956 ], [ 363896.297799997031689, 256694.842300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88267901, "LATITUDE": 18.33912836, "OBJECTID_1": 22831, "PARCEL_NO_": "105703011000", "Tax_Legal_": "ANNAS RETREAT 173-257 NEW QTR", "Name": "MAYNARD, JACQUELYN", "Address": "7217 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15900, "Improved_V": 71900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.47590643300001, "SHAPE_Area": 699.12635992599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363909.200599998235703, 256694.736800000071526 ], [ 363916.750500001013279, 256660.390399999916553 ], [ 363904.650399997830391, 256660.924600001424551 ], [ 363887.6908999979496, 256663.952199999243021 ], [ 363896.297799997031689, 256694.842300001531839 ], [ 363909.200599998235703, 256694.736800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703090500", "MAP": "D9-1562-T80", "PARCEL_NAM": "173A-5", "ACRE": "0.24", "LONGITUDE": -64.8760783, "LATITUDE": 18.33914696, "OBJECTID_1": 23341, "PARCEL_NO_": "105703090500", "Tax_Legal_": "ANNAS RETREAT 173A-5 NEW QUARTE", "Name": "TURNBULL, LEROY & CLARICE", "Address": "14-91 Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.94875111899999, "SHAPE_Area": 821.42161653799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364623.719300001859665, 256685.808299999684095 ], [ 364615.818000003695488, 256666.745200000703335 ], [ 364602.051399998366833, 256673.598600000143051 ], [ 364576.981899999082088, 256682.048200000077486 ], [ 364583.276000000536442, 256700.464899998158216 ], [ 364623.719300001859665, 256685.808299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88248304, "LATITUDE": 18.33914071, "OBJECTID_1": 22830, "PARCEL_NO_": "105703010900", "Tax_Legal_": "173-258 ANNAS RETREAT NO.1 NEW QTR", "Name": "JOAN M RICHARDS and HERMAN RICHARDS", "Address": "7218 Estate Tutu 173-258", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14800, "Improved_V": 90300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.204963353, "SHAPE_Area": 690.955491306 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363936.89750000089407, 256661.821800000965595 ], [ 363916.750500001013279, 256660.390399999916553 ], [ 363909.200599998235703, 256694.736800000071526 ], [ 363919.684399999678135, 256694.6114999987185 ], [ 363931.80969999730587, 256691.12220000103116 ], [ 363936.89750000089407, 256661.821800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604010700", "MAP": null, "PARCEL_NAM": "126A", "ACRE": null, "LONGITUDE": -64.88740431, "LATITUDE": 18.33877828, "OBJECTID_1": 21583, "PARCEL_NO_": "105604010700", "Tax_Legal_": "126A ANNAS RETREAT NEW QTR", "Name": "Virgin Islands Telephone Company", "Address": "PO Box 6100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 276100, "Improved_V": 209800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.71629238600002, "SHAPE_Area": 5248.7731105399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363448.281199999153614, 256656.767200000584126 ], [ 363436.414800003170967, 256629.861200001090765 ], [ 363428.457800000905991, 256617.341600000858307 ], [ 363427.673100002110004, 256614.802099999040365 ], [ 363425.273900002241135, 256612.460400000214577 ], [ 363423.691899999976158, 256608.858899999409914 ], [ 363422.088200002908707, 256607.790300000458956 ], [ 363421.301700003445148, 256605.461800001561642 ], [ 363419.698100000619888, 256604.393199998885393 ], [ 363410.131999999284744, 256591.438200000673532 ], [ 363378.964500002563, 256558.463599998503923 ], [ 363376.532999999821186, 256559.921399999409914 ], [ 363379.177400000393391, 256628.126200001686811 ], [ 363383.488399997353554, 256690.011900000274181 ], [ 363422.236400000751019, 256685.051699999719858 ], [ 363425.715199999511242, 256655.315999999642372 ], [ 363448.281199999153614, 256656.767200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703091300", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-40", "ACRE": "0.25", "LONGITUDE": -64.87711873000001, "LATITUDE": 18.33906597, "OBJECTID_1": 23349, "PARCEL_NO_": "105703091300", "Tax_Legal_": "ANNAS RETREAT 173A-40 NEW QTR.", "Name": "STAPLETON, KAREN", "Address": "PO Box 813", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 28900, "Improved_V": 120800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.45003353600001, "SHAPE_Area": 960.39402247099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364508.3699000030756, 256690.352600000798702 ], [ 364495.788900002837181, 256652.675000000745058 ], [ 364472.364500001072884, 256657.33839999884367 ], [ 364484.936499997973442, 256696.071400001645088 ], [ 364508.3699000030756, 256690.352600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703021900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-120", "ACRE": ".12", "LONGITUDE": -64.88034752, "LATITUDE": 18.33915147, "OBJECTID_1": 22921, "PARCEL_NO_": "105703021900", "Tax_Legal_": "ANNAS RETREAT 148-120 NEW QTR", "Name": "KNIGHT, IVY", "Address": "PO Box 7294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 138900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.636683418600001, "SHAPE_Area": 550.19641885700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364162.623700000345707, 256668.524399999529123 ], [ 364131.920800000429153, 256675.661400001496077 ], [ 364135.804999999701977, 256693.002900000661612 ], [ 364165.701399996876717, 256685.859299998730421 ], [ 364162.623700000345707, 256668.524399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804022600", "MAP": "D9-5145-T91", "PARCEL_NAM": "11A-3", "ACRE": null, "LONGITUDE": -64.85067223, "LATITUDE": 18.3389368, "OBJECTID_1": 24033, "PARCEL_NO_": "105804022600", "Tax_Legal_": "SMITH BAY 11A-3 EAST END QUARTER", "Name": "HOFFMAN FAMILY TRUST OF 2012", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 455700, "Improved_V": 97700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.60621367100001, "SHAPE_Area": 2068.7881666600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367325.965499997138977, 256673.516600001603365 ], [ 367312.281499996781349, 256670.660399999469519 ], [ 367304.241800002753735, 256667.850400000810623 ], [ 367297.015600003302097, 256664.202599998563528 ], [ 367288.209100000560284, 256656.742300000041723 ], [ 367269.732199996709824, 256648.569499999284744 ], [ 367266.748599998652935, 256714.828499998897314 ], [ 367271.58110000193119, 256715.501299999654293 ], [ 367272.374799996614456, 256716.985500000417233 ], [ 367274.781199999153614, 256718.482799999415874 ], [ 367279.617299996316433, 256718.733500000089407 ], [ 367297.465800002217293, 256706.002900000661612 ], [ 367298.419600002467632, 256688.7010000012815 ], [ 367325.965499997138977, 256673.516600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704010600", "MAP": "F9-2503-T69", "PARCEL_NAM": "57V-3", "ACRE": "0.23", "LONGITUDE": -64.87350359, "LATITUDE": 18.33900487, "OBJECTID_1": 23452, "PARCEL_NO_": "105704010600", "Tax_Legal_": "SMITH BAY 57V-3 EAST END QTR", "Name": "PICKERIMG, MARLENE & OTHERS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38400, "Improved_V": 446300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.06201722099999, "SHAPE_Area": 1340.2011870399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364885.390799999237061, 256647.565900001674891 ], [ 364844.673000000417233, 256668.340199999511242 ], [ 364857.831600002944469, 256692.940999999642372 ], [ 364858.314900003373623, 256692.583500001579523 ], [ 364868.843699999153614, 256687.181200001388788 ], [ 364896.342799998819828, 256677.484900001436472 ], [ 364900.153399996459484, 256675.419900000095367 ], [ 364885.390799999237061, 256647.565900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095700", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-61", "ACRE": "0.24", "LONGITUDE": -64.87898086, "LATITUDE": 18.33906347, "OBJECTID_1": 23393, "PARCEL_NO_": "105703095700", "Tax_Legal_": "ANNAS RETREAT 173B-61 NEW QUARTER", "Name": "HARRIGAN, ALLAN E", "Address": "PO BOX 600139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.45489475, "SHAPE_Area": 594.95795988299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364310.906000003218651, 256679.026200000196695 ], [ 364291.764899998903275, 256654.171599999070168 ], [ 364275.520000003278255, 256667.970800001174212 ], [ 364297.108800001442432, 256689.4679000005126 ], [ 364310.906000003218651, 256679.026200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703012200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-36", "ACRE": ".13", "LONGITUDE": -64.88135807, "LATITUDE": 18.33907274, "OBJECTID_1": 22843, "PARCEL_NO_": "105703012200", "Tax_Legal_": "148-36 ANNAS RETREAT NEW QTR", "Name": "CORBETT, TERRANCE & KISHA", "Address": "PO Box 8946", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 192000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.754360715600001, "SHAPE_Area": 542.02663319700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364060.200400002300739, 256670.219300001859665 ], [ 364059.412100002169609, 256668.10190000012517 ], [ 364057.009300000965595, 256666.182399999350309 ], [ 364055.420100003480911, 256663.42509999871254 ], [ 364046.624300003051758, 256654.698300000280142 ], [ 364024.674099996685982, 256675.627999998629093 ], [ 364033.450000002980232, 256686.676699999719858 ], [ 364060.200400002300739, 256670.219300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703091400", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-39", "ACRE": "0.25", "LONGITUDE": -64.87688875000001, "LATITUDE": 18.3390102, "OBJECTID_1": 23350, "PARCEL_NO_": "105703091400", "Tax_Legal_": "ANNAS RETREAT 173A-39 NEW QTR.", "Name": "JACOB MOORE and THELMA MOORE LIVING TRUST", "Address": "101 Bilton Drive", "City": "Harvest", "State": "Alabama", "Zip": 357499674, "Country": "United States", "Land_Value": 28900, "Improved_V": 210600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.05083652299999, "SHAPE_Area": 1015.96777553 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364533.432099997997284, 256682.747299998998642 ], [ 364521.64130000025034, 256646.975999999791384 ], [ 364495.788900002837181, 256652.675000000745058 ], [ 364508.3699000030756, 256690.352600000798702 ], [ 364533.432099997997284, 256682.747299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-68", "PARCEL_NAM": "173-78", "ACRE": ".02", "LONGITUDE": -64.87954675, "LATITUDE": 18.33906607, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.875922343200003, "SHAPE_Area": 437.850815883 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364249.395000003278255, 256677.787999998778105 ], [ 364229.404799997806549, 256656.520700000226498 ], [ 364228.030299998819828, 256657.871800001710653 ], [ 364217.562799997627735, 256667.134500000625849 ], [ 364238.269599996507168, 256686.453200001269579 ], [ 364241.501999996602535, 256685.635299999266863 ], [ 364248.008299998939037, 256679.14469999819994 ], [ 364249.395000003278255, 256677.787999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703016100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-229", "ACRE": ".128", "LONGITUDE": -64.88070445, "LATITUDE": 18.33908711, "OBJECTID_1": 22882, "PARCEL_NO_": "105703016100", "Tax_Legal_": "ANNAS RETREAT 148-229 NEW QTR", "Name": "ILLARRAZA, JESUS & ANA", "Address": "PO Box 502385", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17800, "Improved_V": 109500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.942712912600001, "SHAPE_Area": 438.36797116399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364123.789399996399879, 256683.616399999707937 ], [ 364119.142099998891354, 256661.202500000596046 ], [ 364096.523999996483326, 256665.872499998658895 ], [ 364105.237000003457069, 256684.308899998664856 ], [ 364123.789399996399879, 256683.616399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703015800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-231", "ACRE": ".137", "LONGITUDE": -64.88098491, "LATITUDE": 18.33902038, "OBJECTID_1": 22879, "PARCEL_NO_": "105703015800", "Tax_Legal_": "ANNAS RETREAT 148-232 NEW QTR", "Name": "PEMBERTON, CARMEN, ELVIN, KEVIN & NORMAN", "Address": "PO BOX 1694", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.514375269300004, "SHAPE_Area": 508.580577334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364096.523999996483326, 256665.872499998658895 ], [ 364087.792999997735023, 256649.546799998730421 ], [ 364066.708400003612041, 256663.517499998211861 ], [ 364077.026900000870228, 256682.811500001698732 ], [ 364096.523999996483326, 256665.872499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503041400", "MAP": "G9-696-T63", "PARCEL_NAM": "REM 40", "ACRE": "0.41", "LONGITUDE": -64.90834856, "LATITUDE": 18.33895784, "OBJECTID_1": 20138, "PARCEL_NO_": "105503041400", "Tax_Legal_": "40 ESTATE THOMAS NEW QUARTER", "Name": "HODGE, LAWRENCE & MARIA TANKEN", "Address": "P.O. BOX 4511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 130700, "Improved_V": 155000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.31593147500001, "SHAPE_Area": 1695.6770814 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361155.275200001895428, 256678.467099998146296 ], [ 361171.070900000631809, 256662.671500001102686 ], [ 361174.801500000059605, 256664.020799998193979 ], [ 361178.992799997329712, 256659.397999998182058 ], [ 361179.137999996542931, 256659.304699998348951 ], [ 361179.235100001096725, 256658.846799999475479 ], [ 361186.040899999439716, 256656.238699998706579 ], [ 361187.231700003147125, 256655.782400000840425 ], [ 361215.663099996745586, 256631.317099999636412 ], [ 361206.887199997901917, 256607.872400000691414 ], [ 361200.68299999833107, 256591.297899998724461 ], [ 361196.259300000965595, 256595.334899999201298 ], [ 361191.369029279099777, 256607.371511366189225 ], [ 361185.929861211392563, 256619.170249081071233 ], [ 361179.95332771318499, 256630.706097913207486 ], [ 361173.452100001275539, 256641.954599998891354 ], [ 361162.884430710866582, 256659.076663372281473 ], [ 361152.655799999833107, 256676.403400000184774 ], [ 361152.508100534440018, 256676.646260002860799 ], [ 361152.403770524717402, 256676.910667570889927 ], [ 361152.345838278357405, 256677.188947947142879 ], [ 361152.335985350597184, 256677.47302369895624 ], [ 361152.374497734883334, 256677.754649175854865 ], [ 361152.460257561528124, 256678.025649849470938 ], [ 361152.590775545337237, 256678.278159589593997 ], [ 361152.762263240234461, 256678.504848988290178 ], [ 361152.96974300337024, 256678.699138104944723 ], [ 361153.207192477711942, 256678.855387457297184 ], [ 361153.467719398089685, 256678.969061714364216 ], [ 361153.743761647958308, 256679.036861340049654 ], [ 361154.027306759147905, 256679.056818366225343 ], [ 361154.310124483541586, 256679.028353515488561 ], [ 361154.584005686454475, 256678.952293015405303 ], [ 361154.841000626620371, 256678.830844616168179 ], [ 361155.073649707715958, 256678.667533508036286 ], [ 361155.275200001895428, 256678.467099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703090400", "MAP": "D9-1562-T80", "PARCEL_NAM": "173A-6", "ACRE": "0.23", "LONGITUDE": -64.87572278, "LATITUDE": 18.33902087, "OBJECTID_1": 23340, "PARCEL_NO_": "105703090400", "Tax_Legal_": "ANNAS RETREAT 173-A-6 NEW QTR", "Name": "JAMES, DENIS & MAGDALENA", "Address": "6136 Anna's Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 126300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.81949512600001, "SHAPE_Area": 866.18708377899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364659.269000001251698, 256677.655499998480082 ], [ 364650.602700002491474, 256653.730999998748302 ], [ 364643.33330000191927, 256655.149099998176098 ], [ 364615.818000003695488, 256666.745200000703335 ], [ 364623.719300001859665, 256685.808299999684095 ], [ 364650.381599999964237, 256679.69370000064373 ], [ 364659.269000001251698, 256677.655499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604016600", "MAP": "A9-102-T68", "PARCEL_NAM": "173-293", "ACRE": "0.13", "LONGITUDE": -64.88574292, "LATITUDE": 18.33899383, "OBJECTID_1": 21644, "PARCEL_NO_": "105604016600", "Tax_Legal_": "173-293 ANNAS RETREAT NEW QTR", "Name": "BELL, SYDNEY A.", "Address": "7256 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 83100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.993274349, "SHAPE_Area": 628.40720617399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363582.271099999547005, 256641.1875 ], [ 363572.600699998438358, 256640.475099999457598 ], [ 363566.683200001716614, 256672.512899998575449 ], [ 363577.143700003623962, 256675.131599999964237 ], [ 363587.627599999308586, 256675.006299998611212 ], [ 363588.723399996757507, 256641.029199998825788 ], [ 363582.271099999547005, 256641.1875 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604016500", "MAP": "A9-102-T68", "PARCEL_NAM": "173-292", "ACRE": "0.13", "LONGITUDE": -64.88558399, "LATITUDE": 18.3389924, "OBJECTID_1": 21643, "PARCEL_NO_": "105604016500", "Tax_Legal_": "173-292 ANNAS RETREAT NEW QTR", "Name": "EDWARD C GEORGE", "Address": "12 Warren Ave", "City": "Milton", "State": "Massachusetts", "Zip": 2186, "Country": "United States", "Land_Value": 17800, "Improved_V": 114100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.596657503200007, "SHAPE_Area": 504.23813865599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363604.569099999964237, 256674.089499998837709 ], [ 363601.629799999296665, 256640.501600001007318 ], [ 363599.208999998867512, 256640.692899998277426 ], [ 363588.723399996757507, 256641.029199998825788 ], [ 363587.627599999308586, 256675.006299998611212 ], [ 363604.569099999964237, 256674.089499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703091500", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-38", "ACRE": "0.25", "LONGITUDE": -64.87665551000001, "LATITUDE": 18.3389503, "OBJECTID_1": 23351, "PARCEL_NO_": "105703091500", "Tax_Legal_": "173A-38 ANNAS RETREAT NO.1 NEW QTR.", "Name": "BROWNE, NICOLE AND LOUISA BROWNE", "Address": "6132 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37800, "Improved_V": 177500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.69437456599999, "SHAPE_Area": 916.22435702999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364556.861900001764297, 256677.450599998235703 ], [ 364545.882799997925758, 256641.052700001746416 ], [ 364521.64130000025034, 256646.975999999791384 ], [ 364533.432099997997284, 256682.747299998998642 ], [ 364542.32490000128746, 256680.075800001621246 ], [ 364556.861900001764297, 256677.450599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604016400", "MAP": "A9-102-T68", "PARCEL_NAM": "1073-291", "ACRE": "0.13", "LONGITUDE": -64.88544137, "LATITUDE": 18.33897501, "OBJECTID_1": 21642, "PARCEL_NO_": "105604016400", "Tax_Legal_": "173-291 ANNAS RETREAT NEW QTR", "Name": "HEYLIGER, EVERETTE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 95600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.005300392699993, "SHAPE_Area": 516.23822995800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363619.089900001883507, 256673.364000000059605 ], [ 363617.763199999928474, 256639.789200000464916 ], [ 363601.629799999296665, 256640.501600001007318 ], [ 363604.569099999964237, 256674.089499998837709 ], [ 363619.089900001883507, 256673.364000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-68", "PARCEL_NAM": "173-79", "ACRE": ".02", "LONGITUDE": -64.87944597000001, "LATITUDE": 18.33897954, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.746689480699999, "SHAPE_Area": 399.53443426600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364259.603000000119209, 256667.846099998801947 ], [ 364238.804300002753735, 256647.366799999028444 ], [ 364236.975199997425079, 256649.079100001603365 ], [ 364229.404799997806549, 256656.520700000226498 ], [ 364249.395000003278255, 256677.787999998778105 ], [ 364256.139700002968311, 256671.189599998295307 ], [ 364259.603000000119209, 256667.846099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604016300", "MAP": "A9-102-T68", "PARCEL_NAM": "173-290", "ACRE": "0.13", "LONGITUDE": -64.88530157, "LATITUDE": 18.33897481, "OBJECTID_1": 21641, "PARCEL_NO_": "105604016300", "Tax_Legal_": "173-290 ANNAS RETREAT NEW QTR", "Name": "FONTENELLE, FELIX & ALICIA C.", "Address": "PO Box 321", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14800, "Improved_V": 163700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.455318056799996, "SHAPE_Area": 474.199133281 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363634.417099997401237, 256672.644999999552965 ], [ 363630.669600002467632, 256639.261599998921156 ], [ 363617.763199999928474, 256639.789200000464916 ], [ 363619.089900001883507, 256673.364000000059605 ], [ 363634.417099997401237, 256672.644999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095800", "MAP": "D9-1794-T81", "PARCEL_NAM": "173B-62", "ACRE": "0.23", "LONGITUDE": -64.87881134, "LATITUDE": 18.33893253, "OBJECTID_1": 23394, "PARCEL_NO_": "105703095800", "Tax_Legal_": "ANNAS RETREAT 173B-62 NEW QTR", "Name": "MASSICOT, MARIA", "Address": "6124 Annas Retreat--", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 217400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.641878119, "SHAPE_Area": 840.05841030700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364331.985200002789497, 256665.688700001686811 ], [ 364312.883699998259544, 256636.190400000661612 ], [ 364291.764899998903275, 256654.171599999070168 ], [ 364310.906000003218651, 256679.026200000196695 ], [ 364315.787100002169609, 256673.999899998307228 ], [ 364320.655500002205372, 256670.451099999248981 ], [ 364327.944700002670288, 256666.711100000888109 ], [ 364331.985200002789497, 256665.688700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88591399000001, "LATITUDE": 18.33896083, "OBJECTID_1": 21645, "PARCEL_NO_": "105604016700", "Tax_Legal_": "173-294 ANNAS RETREAT NEW QTR", "Name": "LLOYD, KIMA & BARRY, FRANCILLE", "Address": "7257 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 109900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.6393311482, "SHAPE_Area": 547.641902491 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363572.600699998438358, 256640.475099999457598 ], [ 363555.677199997007847, 256639.281100001186132 ], [ 363547.403599999845028, 256663.911299999803305 ], [ 363566.683200001716614, 256672.512899998575449 ], [ 363572.600699998438358, 256640.475099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704061500", "MAP": "D9-6270-T97", "PARCEL_NAM": "57W-4-REM.", "ACRE": "0.28", "LONGITUDE": -64.8725286, "LATITUDE": 18.338956, "OBJECTID_1": 23677, "PARCEL_NO_": "105704061500", "Tax_Legal_": "SMITH BAY 57W-4 REM. EAST END QUARTER", "Name": "JACKSON, JENIFER & JnoBAPTISTE, V", "Address": "215-131 Anna's Retreat, APT. 4", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.10528702400001, "SHAPE_Area": 770.27939995300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364956.460400000214577, 256658.072200000286102 ], [ 364969.308600001037121, 256681.534099999815226 ], [ 364983.374200001358986, 256684.107799999415874 ], [ 364991.599200002849102, 256665.176699999719858 ], [ 364981.266400001943111, 256647.571400001645088 ], [ 364969.927599996328354, 256653.389199998229742 ], [ 364956.460400000214577, 256658.072200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604016200", "MAP": "A9-102-T68", "PARCEL_NAM": "173-289", "ACRE": "0.13", "LONGITUDE": -64.88515919, "LATITUDE": 18.33896065, "OBJECTID_1": 21640, "PARCEL_NO_": "105604016200", "Tax_Legal_": "173-289 ANNAS RETREAT NEW QTR", "Name": "GUMBS, JAMES & JANETTE", "Address": "PO BOX 304393", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 87500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.330378238500003, "SHAPE_Area": 541.088962606 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363649.744199998676777, 256671.926100000739098 ], [ 363647.609399996697903, 256638.555900000035763 ], [ 363637.929999999701977, 256638.898800000548363 ], [ 363630.669600002467632, 256639.261599998921156 ], [ 363634.417099997401237, 256672.644999999552965 ], [ 363649.744199998676777, 256671.926100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703012300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-35", "ACRE": ".13", "LONGITUDE": -64.88149183, "LATITUDE": 18.33896552, "OBJECTID_1": 22844, "PARCEL_NO_": "105703012300", "Tax_Legal_": "ANNAS RETREAT 148-35 1 NEW QTR", "Name": "TURNBULL, GERALDINE", "Address": "39 E 58th St", "City": "Brooklyn", "State": "New York", "Zip": 11203, "Country": "United States", "Land_Value": 17800, "Improved_V": 147400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.667382093, "SHAPE_Area": 601.34146284799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364046.624300003051758, 256654.698300000280142 ], [ 364041.0287000015378, 256648.953000001609325 ], [ 364032.218599997460842, 256641.914799999445677 ], [ 364009.445900000631809, 256664.73759999871254 ], [ 364012.644100002944469, 256667.93019999936223 ], [ 364024.674099996685982, 256675.627999998629093 ], [ 364046.624300003051758, 256654.698300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604016100", "MAP": "A9-102-T68", "PARCEL_NAM": "173-288", "ACRE": "0.13", "LONGITUDE": -64.88501029, "LATITUDE": 18.33895298, "OBJECTID_1": 21639, "PARCEL_NO_": "105604016100", "Tax_Legal_": "173-288 ANNAS RETREAT NEW QTR", "Name": "SMALLS, MITCHELL, VERNON, MILTON CLARENCE & CARTY, ELAINE", "Address": "8414 Geyser Ave", "City": "Northridge", "State": "California", "Zip": 91324, "Country": "United States", "Land_Value": 16300, "Improved_V": 42200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.487636270799996, "SHAPE_Area": 512.32312501599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363664.265000000596046, 256671.200599998235703 ], [ 363663.742799997329712, 256637.843499999493361 ], [ 363655.676100000739098, 256638.199700001627207 ], [ 363647.609399996697903, 256638.555900000035763 ], [ 363649.744199998676777, 256671.926100000739098 ], [ 363664.265000000596046, 256671.200599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703022000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-121", "ACRE": ".12", "LONGITUDE": -64.88038268, "LATITUDE": 18.33899582, "OBJECTID_1": 22922, "PARCEL_NO_": "105703022000", "Tax_Legal_": "ANNAS RETREAT 148-121 NEW QTR", "Name": "Vessup, Helen E.", "Address": "PO Box 7804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 100000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.856134702099993, "SHAPE_Area": 559.72770886399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364159.542300000786781, 256651.611699998378754 ], [ 364128.038500003516674, 256658.108899999409914 ], [ 364131.920800000429153, 256675.661400001496077 ], [ 364162.623700000345707, 256668.524399999529123 ], [ 364159.542300000786781, 256651.611699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604016000", "MAP": "A9-102-T68", "PARCEL_NAM": "173-287", "ACRE": "0.13", "LONGITUDE": -64.88487087, "LATITUDE": 18.33894699, "OBJECTID_1": 21638, "PARCEL_NO_": "105604016000", "Tax_Legal_": "173-287 ANNAS RETREAT NEW QTR", "Name": "O, NEAL BERNICE", "Address": "PO Box 307106", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 96600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.185415324999994, "SHAPE_Area": 472.41021621300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363677.977700002491474, 256670.679499998688698 ], [ 363678.263599999248981, 256637.118000000715256 ], [ 363663.742799997329712, 256637.843499999493361 ], [ 363664.265000000596046, 256671.200599998235703 ], [ 363677.977700002491474, 256670.679499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703094100", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-60", "ACRE": "0.26", "LONGITUDE": -64.87833554, "LATITUDE": 18.33890454, "OBJECTID_1": 23377, "PARCEL_NO_": "105703094100", "Tax_Legal_": "ANNAS RETREAT 173A-60 NEW QTR", "Name": "LETTSOME, ALVON", "Address": "PO Box 502822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.273203319, "SHAPE_Area": 1181.5797712799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364332.317900002002716, 256626.63910000026226 ], [ 364351.352899998426437, 256663.947399999946356 ], [ 364358.519799999892712, 256674.560699999332428 ], [ 364367.373099997639656, 256676.532999999821186 ], [ 364385.122699998319149, 256675.411699999123812 ], [ 364368.5371999964118, 256634.53489999845624 ], [ 364346.723600000143051, 256639.422600001096725 ], [ 364332.317900002002716, 256626.63910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015900", "MAP": "A9-102-T68", "PARCEL_NAM": "173-286", "ACRE": "0.11", "LONGITUDE": -64.88472785, "LATITUDE": 18.33894329, "OBJECTID_1": 21637, "PARCEL_NO_": "105604015900", "Tax_Legal_": "173-286 ANNAS RETREAT NO 1 NEW QTR.", "Name": "HENRY, VERE R.", "Address": "PO BOX 303383", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 79200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.263195454300003, "SHAPE_Area": 540.32451187900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363694.919299997389317, 256669.762699998915195 ], [ 363693.590800002217293, 256636.399099998176098 ], [ 363678.263599999248981, 256637.118000000715256 ], [ 363677.977700002491474, 256670.679499998688698 ], [ 363694.919299997389317, 256669.762699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703091600", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-37", "ACRE": "0.24", "LONGITUDE": -64.87642651, "LATITUDE": 18.33890035, "OBJECTID_1": 23352, "PARCEL_NO_": "105703091600", "Tax_Legal_": "ANNAS RETREAT 173A-37 NEW QTR.", "Name": "EDWARD, JOSEPH & CASTOR, JOSEP", "Address": "PO Box 503281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.84735425700001, "SHAPE_Area": 957.58525678199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364582.721400000154972, 256670.907299999147654 ], [ 364568.51349999755621, 256634.905099999159575 ], [ 364545.882799997925758, 256641.052700001746416 ], [ 364556.861900001764297, 256677.450599998235703 ], [ 364582.721400000154972, 256670.907299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015800", "MAP": "A9-102-T68", "PARCEL_NAM": "173-285", "ACRE": "0.11", "LONGITUDE": -64.88458456, "LATITUDE": 18.33893504, "OBJECTID_1": 21636, "PARCEL_NO_": "105604015800", "Tax_Legal_": "ANNAS RETREAT 173-285 No.2 NEW QTR.", "Name": "PHILLIPS, PATRICIA M", "Address": "PO Box 9283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 83400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.034644739399994, "SHAPE_Area": 472.408185962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363709.564800001680851, 256669.116099998354912 ], [ 363707.258900001645088, 256635.888799998909235 ], [ 363693.590800002217293, 256636.399099998176098 ], [ 363694.919299997389317, 256669.762699998915195 ], [ 363709.564800001680851, 256669.116099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703094000", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-59", "ACRE": "0.24", "LONGITUDE": -64.87809268, "LATITUDE": 18.33887968, "OBJECTID_1": 23376, "PARCEL_NO_": "105703094000", "Tax_Legal_": "ANNAS RETREAT 173A-59 NEW QTR.", "Name": "MOISE, CORNELIUS & MARTHA", "Address": "PO Box 9924", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 5300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.20434253100001, "SHAPE_Area": 963.79975083900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364406.126400001347065, 256670.939599998295307 ], [ 364390.35080000013113, 256629.647199999541044 ], [ 364368.5371999964118, 256634.53489999845624 ], [ 364385.122699998319149, 256675.411699999123812 ], [ 364396.425499998033047, 256673.815499998629093 ], [ 364406.126400001347065, 256670.939599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703090300", "MAP": "D9-1562-T80", "PARCEL_NAM": "173A-7", "ACRE": "0.23", "LONGITUDE": -64.87541282, "LATITUDE": 18.33894529, "OBJECTID_1": 23339, "PARCEL_NO_": "105703090300", "Tax_Legal_": "ANNAS RETREAT 173A-7 NEW QTR.", "Name": "BENJAMIN, CARMEN & JUDITH", "Address": "P.O. BOX 5331", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.93688355800001, "SHAPE_Area": 793.42076260800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364690.778099998831749, 256670.525100000202656 ], [ 364680.513599999248981, 256644.898800000548363 ], [ 364675.650600001215935, 256647.814300000667572 ], [ 364667.560500003397465, 256650.914500001817942 ], [ 364659.479400001466274, 256652.959300000220537 ], [ 364650.602700002491474, 256653.730999998748302 ], [ 364659.269000001251698, 256677.655499998480082 ], [ 364690.778099998831749, 256670.525100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095900", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-63", "ACRE": "0.26", "LONGITUDE": -64.87861009, "LATITUDE": 18.33883903, "OBJECTID_1": 23395, "PARCEL_NO_": "105703095900", "Tax_Legal_": "ANNAS RETREAT 173B-63 NEW QTR", "Name": "CHRISTOPHER, ANDY & LAURIE", "Address": "6122 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 59800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.33148047200001, "SHAPE_Area": 871.03539435100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364332.317900002002716, 256626.63910000026226 ], [ 364328.316899999976158, 256623.017799999564886 ], [ 364312.883699998259544, 256636.190400000661612 ], [ 364331.985200002789497, 256665.688700001686811 ], [ 364337.634800001978874, 256665.101700000464916 ], [ 364343.270000003278255, 256666.203200001269579 ], [ 364358.519799999892712, 256674.560699999332428 ], [ 364351.352899998426437, 256663.947399999946356 ], [ 364332.317900002002716, 256626.63910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015600", "MAP": "A9-102-T68", "PARCEL_NAM": "173-283", "ACRE": "0.11", "LONGITUDE": -64.88420111000001, "LATITUDE": 18.33891392, "OBJECTID_1": 21634, "PARCEL_NO_": "105604015600", "Tax_Legal_": "ANNAS RETREAT 173-283 NEW QTR", "Name": "BARRY, SHELIA", "Address": "PO Box 10545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 65200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.70127125, "SHAPE_Area": 453.09761460800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363733.949500001966953, 256634.799199998378754 ], [ 363736.19709999859333, 256667.898899998515844 ], [ 363749.773699998855591, 256667.256400000303984 ], [ 363747.637100003659725, 256634.097199998795986 ], [ 363733.949500001966953, 256634.799199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704010800", "MAP": "F9-2699-T70", "PARCEL_NAM": "57V-4", "ACRE": "0.25", "LONGITUDE": -64.87315681, "LATITUDE": 18.33883178, "OBJECTID_1": 23454, "PARCEL_NO_": "105704010800", "Tax_Legal_": "SMITH BAY 57V-4 EAST END QTR", "Name": "RICHARDSON, EVA E", "Address": "PO BOX 305433", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41700, "Improved_V": 227300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.365005819, "SHAPE_Area": 1142.27230203 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364920.833200000226498, 256629.4831000007689 ], [ 364885.390799999237061, 256647.565900001674891 ], [ 364900.153399996459484, 256675.419900000095367 ], [ 364903.633799999952316, 256673.5337999984622 ], [ 364908.512999996542931, 256668.718600001186132 ], [ 364915.001299999654293, 256664.338700000196695 ], [ 364927.949000000953674, 256658.956199999898672 ], [ 364932.840999998152256, 256657.172499999403954 ], [ 364920.833200000226498, 256629.4831000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704010500", "MAP": "F9-960-T62", "PARCEL_NAM": "57B-2", "ACRE": "0.38", "LONGITUDE": -64.87383534, "LATITUDE": 18.33880561, "OBJECTID_1": 23451, "PARCEL_NO_": "105704010500", "Tax_Legal_": "SMITH BAY 57B 2 EAST END", "Name": "SMITH, DR. WARREN & MAJORIE", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 63400, "Improved_V": 209800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.61835483499999, "SHAPE_Area": 1553.7785248600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364862.643100000917912, 256657.788499999791384 ], [ 364843.611699998378754, 256620.05799999833107 ], [ 364823.354999996721745, 256631.502399999648333 ], [ 364812.810000002384186, 256638.804400000721216 ], [ 364831.033299997448921, 256676.73930000141263 ], [ 364839.951300002634525, 256671.112700000405312 ], [ 364844.673000000417233, 256668.340199999511242 ], [ 364863.31139999628067, 256658.830800000578165 ], [ 364862.643100000917912, 256657.788499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704023000", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-15", "ACRE": "0.26", "LONGITUDE": -64.86911642, "LATITUDE": 18.33888576, "OBJECTID_1": 23533, "PARCEL_NO_": "105704023000", "Tax_Legal_": "SMITH BAY 100-15 EAST END QTR.", "Name": "BERKELEY, FREDERICK", "Address": "PO Box 306325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 150800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.65250307700001, "SHAPE_Area": 1206.1756672900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365356.80120000243187, 256674.920699998736382 ], [ 365354.488300003111362, 256662.447299998253584 ], [ 365349.002400003373623, 256643.826099999248981 ], [ 365345.834700003266335, 256637.045200001448393 ], [ 365344.231100000441074, 256635.976599998772144 ], [ 365340.203100003302097, 256635.521499998867512 ], [ 365336.151699997484684, 256637.810300000011921 ], [ 365314.10980000346899, 256669.504999998956919 ], [ 365313.285499997437, 256671.609200000762939 ], [ 365313.211800001561642, 256680.2635000012815 ], [ 365356.80120000243187, 256674.920699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015400", "MAP": "A9-102-T68", "PARCEL_NAM": "173-281", "ACRE": "0.11", "LONGITUDE": -64.88393396, "LATITUDE": 18.33890327, "OBJECTID_1": 21632, "PARCEL_NO_": "105604015400", "Tax_Legal_": "ANNAS RETREAT 173-281 NEW QTR", "Name": "BLYDEN, ALPHONSE & JUNE", "Address": "7241 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 46900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.405025230700005, "SHAPE_Area": 472.40135525900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363761.945699997246265, 256633.746199999004602 ], [ 363763.886799998581409, 256666.551199998706579 ], [ 363778.81530000269413, 256665.805300001055002 ], [ 363775.866999998688698, 256633.272799998521805 ], [ 363766.994000002741814, 256633.622299998998642 ], [ 363761.945699997246265, 256633.746199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-68", "PARCEL_NAM": "173-80", "ACRE": ".04", "LONGITUDE": -64.87935838, "LATITUDE": 18.3388936, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.872572238000004, "SHAPE_Area": 374.39699120300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364268.601700000464916, 256659.174300000071526 ], [ 364248.53490000218153, 256638.349399998784065 ], [ 364245.916599996387959, 256640.708500001579523 ], [ 364238.804300002753735, 256647.366799999028444 ], [ 364259.603000000119209, 256667.846099998801947 ], [ 364265.89639999717474, 256661.770300000905991 ], [ 364268.601700000464916, 256659.174300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88608148, "LATITUDE": 18.33891381, "OBJECTID_1": 21646, "PARCEL_NO_": "105604016800", "Tax_Legal_": "173-295 ANNAS RETREAT NO.1 NEW QTR", "Name": "CHINNERY, ELIZA L.", "Address": "PO Box 9364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 109400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.735808161400001, "SHAPE_Area": 426.11332227600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363555.677199997007847, 256639.281100001186132 ], [ 363537.959899999201298, 256636.603000000119209 ], [ 363530.5304000005126, 256656.807100001722574 ], [ 363547.403599999845028, 256663.911299999803305 ], [ 363555.677199997007847, 256639.281100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015300", "MAP": "A9-102-T68", "PARCEL_NAM": "173-280", "ACRE": "0.11", "LONGITUDE": -64.88380906, "LATITUDE": 18.33889357, "OBJECTID_1": 21631, "PARCEL_NO_": "105604015300", "Tax_Legal_": "173-280 ANNAS RETREAT NEW QTR.", "Name": "ESTRILL, JULIAN", "Address": "7240 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 68700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.159279717999993, "SHAPE_Area": 392.186671773 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363790.434500001370907, 256665.166499998420477 ], [ 363788.367600001394749, 256632.882599998265505 ], [ 363786.352600000798702, 256632.9364 ], [ 363775.866999998688698, 256633.272799998521805 ], [ 363778.81530000269413, 256665.805300001055002 ], [ 363790.434500001370907, 256665.166499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703093700", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-58", "ACRE": "0.23", "LONGITUDE": -64.87787907000001, "LATITUDE": 18.33882422, "OBJECTID_1": 23373, "PARCEL_NO_": "105703093700", "Tax_Legal_": "ANNAS RETREAT 173A-58 NEW QTR.", "Name": "SCOTLAND, LINDY & ENA", "Address": "24E Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.89125095200001, "SHAPE_Area": 1074.09510742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364429.583200000226498, 256662.476700000464916 ], [ 364415.396899998188019, 256623.941599998623133 ], [ 364390.35080000013113, 256629.647199999541044 ], [ 364406.126400001347065, 256670.939599998295307 ], [ 364429.583200000226498, 256662.476700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015100", "MAP": "A9-102-T68", "PARCEL_NAM": "173-278", "ACRE": "0.11", "LONGITUDE": -64.88356316, "LATITUDE": 18.33888398, "OBJECTID_1": 21629, "PARCEL_NO_": "105604015100", "Tax_Legal_": "173-278 ANNAS RETREAT NEW QTR", "Name": "GEORGE, LILLY BELLE", "Address": "PO Box 7491", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 99500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.395062551400002, "SHAPE_Area": 514.41794564600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363800.477300003170967, 256632.453099999576807 ], [ 363802.211000002920628, 256664.519099999219179 ], [ 363819.15429999679327, 256663.39130000025034 ], [ 363815.396099999547005, 256631.274300001561642 ], [ 363803.292400002479553, 256632.230700001120567 ], [ 363800.477300003170967, 256632.453099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703091700", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-36", "ACRE": "0.24", "LONGITUDE": -64.87620289, "LATITUDE": 18.33882819, "OBJECTID_1": 23353, "PARCEL_NO_": "105703091700", "Tax_Legal_": "ANNAS RETREAT 173A-36 NEW QTR.", "Name": "Elvan and Kerry Webbe", "Address": "PO Box 9224", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 10200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.63665677900001, "SHAPE_Area": 946.94924216899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364605.375500001013279, 256662.015599999576807 ], [ 364593.573899999260902, 256627.510800000280142 ], [ 364568.51349999755621, 256634.905099999159575 ], [ 364582.721400000154972, 256670.907299999147654 ], [ 364605.375500001013279, 256662.015599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703016200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-228", "ACRE": ".133", "LONGITUDE": -64.88077116, "LATITUDE": 18.33890916, "OBJECTID_1": 22883, "PARCEL_NO_": "105703016200", "Tax_Legal_": "148-228 ANNAS RETREAT NEW QTR", "Name": "AUBREY ANTHONY & LYRA HODGE ANTHONY (LIFE ESTATE)", "Address": "148-228 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 111200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.624594222200002, "SHAPE_Area": 513.43077687200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364119.142099998891354, 256661.202500000596046 ], [ 364112.878600001335144, 256639.197500001639128 ], [ 364087.792999997735023, 256649.546799998730421 ], [ 364096.523999996483326, 256665.872499998658895 ], [ 364119.142099998891354, 256661.202500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015000", "MAP": "A9-102-T68", "PARCEL_NAM": "173-277", "ACRE": "0.11", "LONGITUDE": -64.88342111, "LATITUDE": 18.33887078, "OBJECTID_1": 21628, "PARCEL_NO_": "105604015000", "Tax_Legal_": "173-277 ANNAS RETREAT NEW QTR", "Name": "GEORGE CAGAN, ANNIE MARIAN", "Address": "146-144 Estate Tutu", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 93500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.540959801200003, "SHAPE_Area": 460.92218235199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363833.676899999380112, 256662.454700000584126 ], [ 363829.11599999666214, 256629.908900000154972 ], [ 363821.851999998092651, 256630.693799998611212 ], [ 363815.396099999547005, 256631.274300001561642 ], [ 363819.15429999679327, 256663.39130000025034 ], [ 363833.676899999380112, 256662.454700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703090200", "MAP": "D9-1562-T80", "PARCEL_NAM": "173A-8", "ACRE": "0.23", "LONGITUDE": -64.87507254000001, "LATITUDE": 18.33885553, "OBJECTID_1": 23338, "PARCEL_NO_": "105703090200", "Tax_Legal_": "ANNAS RETREAT 173A-8 NEW QTR", "Name": "DONASTORG, ANTHONY A. & ALFINO A.", "Address": "7725 NW 87th Ave", "City": "TAMARAC", "State": "Florida", "Zip": 33321, "Country": "United States", "Land_Value": 27400, "Improved_V": 131800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.37376281, "SHAPE_Area": 1222.77009135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364733.598999999463558, 256660.743099998682737 ], [ 364725.733599998056889, 256637.458399999886751 ], [ 364695.072200000286102, 256639.740600001066923 ], [ 364689.417199999094009, 256640.960900001227856 ], [ 364680.513599999248981, 256644.898800000548363 ], [ 364690.778099998831749, 256670.525100000202656 ], [ 364733.598999999463558, 256660.743099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703012400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-34", "ACRE": ".13", "LONGITUDE": -64.88160963, "LATITUDE": 18.33886559, "OBJECTID_1": 22845, "PARCEL_NO_": "105703012400", "Tax_Legal_": "ANNAS RETREAT 148-34 NEW QTR", "Name": "DEAZA, JOHN", "Address": "6120 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.238830383299998, "SHAPE_Area": 459.81662321800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364032.218599997460842, 256641.914799999445677 ], [ 364018.599399998784065, 256631.459699999541044 ], [ 364000.648299999535084, 256656.221900001168251 ], [ 364009.445900000631809, 256664.73759999871254 ], [ 364032.218599997460842, 256641.914799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604014900", "MAP": "A9-102-T68", "PARCEL_NAM": "173-276", "ACRE": "0.12", "LONGITUDE": -64.88328152, "LATITUDE": 18.33885796, "OBJECTID_1": 21627, "PARCEL_NO_": "105604014900", "Tax_Legal_": "173-276 ANNAS RETREAT NEW QTR", "Name": "WILLY & KETLIE CANDY", "Address": "PO Box 304834", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034834, "Country": "United States", "Land_Value": 15100, "Improved_V": 93800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.487047964499993, "SHAPE_Area": 512.66588571 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363849.815800003707409, 256661.109099999070168 ], [ 363843.647600002586842, 256627.916900001466274 ], [ 363839.610600002110004, 256628.517200000584126 ], [ 363829.11599999666214, 256629.908900000154972 ], [ 363833.676899999380112, 256662.454700000584126 ], [ 363849.815800003707409, 256661.109099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704061900", "MAP": "D9-4451-T88", "PARCEL_NAM": "57W-3", "ACRE": "0.87", "LONGITUDE": -64.87159285, "LATITUDE": 18.33848402, "OBJECTID_1": 23681, "PARCEL_NO_": "105704061900", "Tax_Legal_": "SMITH BAY 57W-3 EAST END QUARTER", "Name": "FRANCIS, EMMETT", "Address": "856 Bauer St", "City": "Elmont", "State": "New York", "Zip": 11003, "Country": "United States", "Land_Value": 118600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.71092204899998, "SHAPE_Area": 4252.1184007700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365057.664700001478195, 256671.839099999517202 ], [ 365059.352799996733665, 256662.986999999731779 ], [ 365062.666199997067451, 256652.6706000007689 ], [ 365067.588600002229214, 256642.78940000012517 ], [ 365078.20549999922514, 256627.044300001114607 ], [ 365083.899999998509884, 256621.180300001055002 ], [ 365089.582000002264977, 256616.793800000101328 ], [ 365097.686499997973442, 256612.004999998956919 ], [ 365112.254000000655651, 256605.791400000452995 ], [ 365126.855800002813339, 256595.567400000989437 ], [ 365134.173699997365475, 256588.450100000947714 ], [ 365140.692500002682209, 256580.481899999082088 ], [ 365146.413999997079372, 256571.451699998229742 ], [ 365148.066200003027916, 256566.821199998259544 ], [ 365149.696800000965595, 256564.723600000143051 ], [ 365154.673199996352196, 256548.510099999606609 ], [ 365140.019299998879433, 256564.855500001460314 ], [ 365127.847300000488758, 256573.832899998873472 ], [ 365118.133799999952316, 256578.186299998313189 ], [ 365108.434600003063679, 256580.851100001484156 ], [ 365086.590499997138977, 256589.327199999243021 ], [ 365018.563500002026558, 256623.600900001823902 ], [ 365011.265399999916553, 256628.396299999207258 ], [ 365027.265699997544289, 256643.303800001740456 ], [ 365057.664700001478195, 256671.839099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604011300", "MAP": null, "PARCEL_NAM": "128B", "ACRE": null, "LONGITUDE": -64.88660693, "LATITUDE": 18.3386169, "OBJECTID_1": 21590, "PARCEL_NO_": "105604011300", "Tax_Legal_": "ESTATE ANNAS RETREAT 128B NEW QUARTER", "Name": "ASFOUR FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49000, "Improved_V": 1069500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.979217839, "SHAPE_Area": 358.19846931400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363484.63459999859333, 256648.916200000792742 ], [ 363493.718199998140335, 256647.830899998545647 ], [ 363493.515600003302097, 256647.638300001621246 ], [ 363490.333499997854233, 256642.546000000089407 ], [ 363488.794600002467632, 256633.878499999642372 ], [ 363492.397399999201298, 256589.578400000929832 ], [ 363490.808200001716614, 256586.821199998259544 ], [ 363485.997299998998642, 256583.61540000140667 ], [ 363485.074100002646446, 256597.328899998217821 ], [ 363485.036300003528595, 256601.761599998921156 ], [ 363484.63459999859333, 256648.916200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703015700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-233", "ACRE": ".127", "LONGITUDE": -64.88107845, "LATITUDE": 18.33886168, "OBJECTID_1": 22878, "PARCEL_NO_": "105703015700", "Tax_Legal_": "ANNAS RETREAT 148-233 NEW QTR", "Name": "SAMUEL, RANDOLPH & RITA", "Address": "PO Box 252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17800, "Improved_V": 141200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.420176660099997, "SHAPE_Area": 531.89793858200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364080.653099998831749, 256635.767299998551607 ], [ 364076.657499998807907, 256631.512699998915195 ], [ 364054.725199997425079, 256650.331700000911951 ], [ 364063.520900003612041, 256659.058499999344349 ], [ 364066.708400003612041, 256663.517499998211861 ], [ 364087.792999997735023, 256649.546799998730421 ], [ 364080.653099998831749, 256635.767299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703070100", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-76", "ACRE": ".12", "LONGITUDE": -64.87980249, "LATITUDE": 18.3388421, "OBJECTID_1": 23217, "PARCEL_NO_": "105703070100", "Tax_Legal_": "ANNAS RETREAT 173-76 NEW QTR", "Name": "HARRIGAN, CLAUDIUS & SYLVIA HODGE", "Address": "7839 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.243481434200007, "SHAPE_Area": 542.10985132300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364222.449000000953674, 256650.437800001353025 ], [ 364205.69990000128746, 256628.769200000911951 ], [ 364191.855899997055531, 256644.699000000953674 ], [ 364207.008599996566772, 256664.454700000584126 ], [ 364222.449000000953674, 256650.437800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804021000", "MAP": "A9-629-T004", "PARCEL_NAM": "11B-9", "ACRE": ".597", "LONGITUDE": -64.85255144, "LATITUDE": 18.33873382, "OBJECTID_1": 24020, "PARCEL_NO_": "105804021000", "Tax_Legal_": "SMITH BAY 11B-9 EAST END QTR", "Name": "PELICAN BEACH PROPERTIES LTD", "Address": "792 Route 10 W", "City": "RANDOLPH", "State": "New Jersey", "Zip": 7869, "Country": "United States", "Land_Value": 299000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.933026528, "SHAPE_Area": 2338.9892433499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367029.461900003254414, 256645.336500000208616 ], [ 367031.837700001895428, 256650.422100000083447 ], [ 367084.052000001072884, 256673.85869999974966 ], [ 367097.640600003302097, 256687.902100000530481 ], [ 367138.206200003623962, 256658.892099998891354 ], [ 367122.943800002336502, 256652.012200001627207 ], [ 367112.483300000429153, 256649.393399998545647 ], [ 367099.589500002563, 256648.443500000983477 ], [ 367076.262199997901917, 256641.708700001239777 ], [ 367029.461900003254414, 256645.336500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604014100", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-275", "ACRE": "0.12", "LONGITUDE": -64.88314991, "LATITUDE": 18.33883521, "OBJECTID_1": 21619, "PARCEL_NO_": "105604014100", "Tax_Legal_": "173-275 ANNAS RETREAT NEW QTR", "Name": "KNIGHT, IDALIA", "Address": "7235 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 93800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.2622785091, "SHAPE_Area": 445.60251309199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363862.733000002801418, 256659.315000001341105 ], [ 363855.774599999189377, 256624.216499999165535 ], [ 363843.647600002586842, 256627.916900001466274 ], [ 363849.815800003707409, 256661.109099999070168 ], [ 363862.733000002801418, 256659.315000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.886878, "LATITUDE": 18.33879914, "OBJECTID_1": 21580, "PARCEL_NO_": "105604010400", "Tax_Legal_": "ESTATE ANNAS RETREAT 128-A NEW QTR.", "Name": "EMD LLC", "Address": "4132 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65300, "Improved_V": 222700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.383921828, "SHAPE_Area": 712.83372221000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363452.364900000393391, 256650.679000001400709 ], [ 363455.49040000140667, 256652.398400001227856 ], [ 363472.676399998366833, 256650.344999998807907 ], [ 363469.55460000038147, 256620.633299998939037 ], [ 363451.799500003457069, 256622.387800000607967 ], [ 363441.294100001454353, 256625.046000000089407 ], [ 363450.005300000309944, 256643.693599998950958 ], [ 363452.364900000393391, 256650.679000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88624437, "LATITUDE": 18.33886968, "OBJECTID_1": 21647, "PARCEL_NO_": "105604016900", "Tax_Legal_": "173-296 ANNAS RETREAT NEW QTR.", "Name": "POWEL, LEON & VILLETTE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13700, "Improved_V": 88900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.715786895999997, "SHAPE_Area": 345.26510824399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363537.959899999201298, 256636.603000000119209 ], [ 363519.438000001013279, 256633.70719999819994 ], [ 363514.46169999986887, 256649.9206000007689 ], [ 363530.5304000005126, 256656.807100001722574 ], [ 363537.959899999201298, 256636.603000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88669268, "LATITUDE": 18.3387269, "OBJECTID_1": 21590, "PARCEL_NO_": "105604011300", "Tax_Legal_": "ESTATE ANNAS RETREAT 128B NEW QUARTER", "Name": "ASFOUR FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49000, "Improved_V": 1069500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.37380362499999, "SHAPE_Area": 548.76523484699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363472.676399998366833, 256650.344999998807907 ], [ 363484.63459999859333, 256648.916200000792742 ], [ 363485.036300003528595, 256601.761599998921156 ], [ 363477.790299996733665, 256600.435699999332428 ], [ 363476.816799998283386, 256620.059399999678135 ], [ 363469.55460000038147, 256620.633299998939037 ], [ 363472.676399998366833, 256650.344999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604014200", "MAP": "A9-102-T68", "PARCEL_NAM": "173-274", "ACRE": "0.14", "LONGITUDE": -64.88301954000001, "LATITUDE": 18.33880846, "OBJECTID_1": 21620, "PARCEL_NO_": "105604014200", "Tax_Legal_": "ANNAS RETREAT 173-274 NEW QTR", "Name": "DONOVAN, ARONA, CARLITA and LISA", "Address": "7234 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 52600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.92896276899999, "SHAPE_Area": 561.85518538400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363878.886200003325939, 256656.280799999833107 ], [ 363869.517899997532368, 256620.107099998742342 ], [ 363855.774599999189377, 256624.216499999165535 ], [ 363862.733000002801418, 256659.315000001341105 ], [ 363878.886200003325939, 256656.280799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-68", "PARCEL_NAM": "173-81", "ACRE": ".04", "LONGITUDE": -64.87926775, "LATITUDE": 18.33881226, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.283250042600002, "SHAPE_Area": 385.18172489400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364278.145199999213219, 256649.99720000103116 ], [ 364258.604099996387959, 256629.213700000196695 ], [ 364255.667900003492832, 256631.922400001436472 ], [ 364248.53490000218153, 256638.349399998784065 ], [ 364268.601700000464916, 256659.174300000071526 ], [ 364274.839500002563, 256653.188700001686811 ], [ 364278.145199999213219, 256649.99720000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703093600", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-57", "ACRE": "0.23", "LONGITUDE": -64.8776575, "LATITUDE": 18.33876233, "OBJECTID_1": 23372, "PARCEL_NO_": "105703093600", "Tax_Legal_": "ANNAS RETREAT 173A-57 NEW QUARTER", "Name": "FERDINAND, BREEZIE", "Address": "PO Box 503281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.06930696000001, "SHAPE_Area": 936.055178576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364451.413000002503395, 256655.689300000667572 ], [ 364438.826700001955032, 256618.644900001585484 ], [ 364415.396899998188019, 256623.941599998623133 ], [ 364429.583200000226498, 256662.476700000464916 ], [ 364451.413000002503395, 256655.689300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604014300", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-273", "ACRE": "0.12", "LONGITUDE": -64.88287442, "LATITUDE": 18.33876558, "OBJECTID_1": 21621, "PARCEL_NO_": "105604014300", "Tax_Legal_": "173-273 ANNAS RETREAT NEW QTR", "Name": "RICHARDS, GEORGE & MINERA", "Address": "7233 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17100, "Improved_V": 89800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.79621005, "SHAPE_Area": 636.32075605700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363894.23309999704361, 256653.239999998360872 ], [ 363886.495399996638298, 256614.968699999153614 ], [ 363874.368400000035763, 256618.669100001454353 ], [ 363869.517899997532368, 256620.107099998742342 ], [ 363878.886200003325939, 256656.280799999833107 ], [ 363894.23309999704361, 256653.239999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703022100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-122", "ACRE": ".12", "LONGITUDE": -64.88041364, "LATITUDE": 18.3388486, "OBJECTID_1": 22923, "PARCEL_NO_": "105703022100", "Tax_Legal_": "ANNAS RETREAT 148-122 NEW QTR", "Name": "RHYMER, ROSALIA & CHARRYSE M. JOSEPH", "Address": "PO Box 8342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 117100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.295406580199995, "SHAPE_Area": 508.6658801 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364157.251000002026558, 256636.60530000180006 ], [ 364124.948100000619888, 256642.251600001007318 ], [ 364128.038500003516674, 256658.108899999409914 ], [ 364159.542300000786781, 256651.611699998378754 ], [ 364157.251000002026558, 256636.60530000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703091800", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-35", "ACRE": "0.23", "LONGITUDE": -64.87597165, "LATITUDE": 18.33875128, "OBJECTID_1": 23354, "PARCEL_NO_": "105703091800", "Tax_Legal_": "ANNAS RETREAT 173A-35 NEW QTR", "Name": "THE HOOD TRUST", "Address": "PO Box 8173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 1400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.88430487799999, "SHAPE_Area": 915.71494158999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364631.278200000524521, 256650.406399998813868 ], [ 364617.824400000274181, 256620.5320999994874 ], [ 364593.573899999260902, 256627.510800000280142 ], [ 364605.375500001013279, 256662.015599999576807 ], [ 364612.666500002145767, 256658.064500000327826 ], [ 364631.278200000524521, 256650.406399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704061800", "MAP": "D9-6284-T97", "PARCEL_NAM": "57W-2-2", "ACRE": "0.26", "LONGITUDE": -64.87226746, "LATITUDE": 18.33877741, "OBJECTID_1": 23680, "PARCEL_NO_": "105704061800", "Tax_Legal_": "SMITH BAY 57W-2-2 No.1,2&3 EASTEND QUARTER", "Name": "McCLEAN, JERMAINE E", "Address": "PO Box 12267", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.83010966000001, "SHAPE_Area": 789.50590746199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365011.265399999916553, 256628.396299999207258 ], [ 364995.03660000115633, 256640.295800000429153 ], [ 364981.266400001943111, 256647.571400001645088 ], [ 364991.599200002849102, 256665.176699999719858 ], [ 365000.511799998581409, 256660.183400001376867 ], [ 365027.265699997544289, 256643.303800001740456 ], [ 365011.265399999916553, 256628.396299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703012500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-33", "ACRE": ".13", "LONGITUDE": -64.88174263000001, "LATITUDE": 18.33878259, "OBJECTID_1": 22846, "PARCEL_NO_": "105703012500", "Tax_Legal_": "ANNAS RETREAT 148-33 NEW QTR", "Name": "GEORGES, MAVIS", "Address": "PO Box 10316", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 110800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.397705701899994, "SHAPE_Area": 577.00344045400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364018.599399998784065, 256631.459699999541044 ], [ 364004.175700001418591, 256620.787000000476837 ], [ 363984.610200002789497, 256645.747000001370907 ], [ 364000.648299999535084, 256656.221900001168251 ], [ 364018.599399998784065, 256631.459699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703090100", "MAP": "D9-1562-T80", "PARCEL_NAM": "173A-9", "ACRE": "0.23", "LONGITUDE": -64.87468384, "LATITUDE": 18.33876226, "OBJECTID_1": 23337, "PARCEL_NO_": "105703090100", "Tax_Legal_": "ANNAS RETREAT 173A-9 NEW QTR.", "Name": "THOMPSON, DULCINA O", "Address": "PO Box 6151", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24900, "Improved_V": 148700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.050746651, "SHAPE_Area": 959.62932323999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364769.171999998390675, 256649.8462999984622 ], [ 364758.945299997925758, 256619.787300001829863 ], [ 364754.0625, 256625.024599999189377 ], [ 364745.13910000026226, 256631.284400001168251 ], [ 364737.853500001132488, 256634.602299999445677 ], [ 364725.733599998056889, 256637.458399999886751 ], [ 364733.598999999463558, 256660.743099998682737 ], [ 364761.087300002574921, 256652.313200000673532 ], [ 364769.171999998390675, 256649.8462999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703018000", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-272", "ACRE": "0.16", "LONGITUDE": -64.88273143000001, "LATITUDE": 18.33872924, "OBJECTID_1": 22901, "PARCEL_NO_": "105703018000", "Tax_Legal_": "173-272 ANNAS RETREAT No.1 NEW QTR", "Name": "TROTMAN, JOHN WILLIAM", "Address": "173-272 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 137100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.88609870800001, "SHAPE_Area": 583.13076771099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363907.148500002920628, 256651.656899999827147 ], [ 363901.856700003147125, 256610.23930000141263 ], [ 363892.153999999165535, 256613.326299998909235 ], [ 363886.495399996638298, 256614.968699999153614 ], [ 363894.23309999704361, 256653.239999998360872 ], [ 363907.148500002920628, 256651.656899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8864097, "LATITUDE": 18.33882182, "OBJECTID_1": 21648, "PARCEL_NO_": "105604017000", "Tax_Legal_": "ANNAS RETREAT 173-297 NEW QTR", "Name": "DE GRAFF, CONSTANCIA", "Address": "7260 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 152900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.663031675200003, "SHAPE_Area": 272.75714477700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363503.335199996829033, 256630.8310999982059 ], [ 363497.69820000231266, 256629.940600000321865 ], [ 363498.450499996542931, 256636.279599998146296 ], [ 363500.819099999964237, 256642.209600001573563 ], [ 363504.820100001990795, 256645.830899998545647 ], [ 363514.46169999986887, 256649.9206000007689 ], [ 363519.438000001013279, 256633.70719999819994 ], [ 363503.335199996829033, 256630.8310999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703017900", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-271", "ACRE": "0.16", "LONGITUDE": -64.88257686, "LATITUDE": 18.33872309, "OBJECTID_1": 22900, "PARCEL_NO_": "105703017900", "Tax_Legal_": "ANNAS RETREAT 173-271 NEW QTR", "Name": "SEALEY, THEODORE JR.", "Address": "PO Box 302354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.84232263299999, "SHAPE_Area": 733.50796521799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363917.956000000238419, 256613.537500001490116 ], [ 363905.881099998950958, 256611.116599999368191 ], [ 363901.856700003147125, 256610.23930000141263 ], [ 363907.148500002920628, 256651.656899999827147 ], [ 363924.084600001573563, 256651.373399998992682 ], [ 363922.78490000218153, 256614.632399998605251 ], [ 363917.956000000238419, 256613.537500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703093500", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-56", "ACRE": "0.23", "LONGITUDE": -64.87744357, "LATITUDE": 18.33870683, "OBJECTID_1": 23371, "PARCEL_NO_": "105703093500", "Tax_Legal_": "ANNAS RETREAT 173-A-56 NEW QTR.", "Name": "FRANCIS, DEBORAH J", "Address": "PO Box 306213", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.03119005400001, "SHAPE_Area": 900.99282128000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364473.235600002110004, 256649.746199999004602 ], [ 364462.258299998939037, 256613.137200001627207 ], [ 364451.754600003361702, 256615.584300000220537 ], [ 364438.826700001955032, 256618.644900001585484 ], [ 364451.413000002503395, 256655.689300000667572 ], [ 364473.235600002110004, 256649.746199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704011000", "MAP": "F9-2700-T70", "PARCEL_NAM": "57V-5", "ACRE": "0.25", "LONGITUDE": -64.87284045, "LATITUDE": 18.33868784, "OBJECTID_1": 23456, "PARCEL_NO_": "105704011000", "Tax_Legal_": "57V-5 SMITH BAY NO.1,2& 3 EAST END QTR", "Name": "C. CHARLES, EDMONDE, CLAUDETTE C. CLERMOND & S. CADET", "Address": "PO BOX 9805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.33943971299999, "SHAPE_Area": 1110.1505600400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364952.284500002861023, 256613.436599999666214 ], [ 364920.833200000226498, 256629.4831000007689 ], [ 364932.840999998152256, 256657.172499999403954 ], [ 364956.259900003671646, 256648.633299998939037 ], [ 364964.378499999642372, 256645.416600000113249 ], [ 364952.284500002861023, 256613.436599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-68", "PARCEL_NAM": "173-82", "ACRE": ".04", "LONGITUDE": -64.8791725, "LATITUDE": 18.33872836, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.823542232400001, "SHAPE_Area": 396.12932837099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364288.615000002086163, 256639.926399998366833 ], [ 364268.337700001895428, 256620.046700000762939 ], [ 364265.420900002121925, 256622.925200000405312 ], [ 364258.604099996387959, 256629.213700000196695 ], [ 364278.145199999213219, 256649.99720000103116 ], [ 364284.596199996769428, 256643.769299998879433 ], [ 364288.615000002086163, 256639.926399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704010700", "MAP": "F9-961-T62", "PARCEL_NAM": "57B-3", "ACRE": "0.40", "LONGITUDE": -64.87354049, "LATITUDE": 18.3386455, "OBJECTID_1": 23453, "PARCEL_NO_": "105704010700", "Tax_Legal_": "SMITH BAY 57B 3 EAST END", "Name": "GUMBS, CHARLES L. & HAZRA", "Address": "PO BOX 304252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62400, "Improved_V": 297100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.653327262, "SHAPE_Area": 1568.7766211400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364892.631300002336502, 256639.879799999296665 ], [ 364874.407999999821186, 256601.945000000298023 ], [ 364843.611699998378754, 256620.05799999833107 ], [ 364862.643100000917912, 256657.788499999791384 ], [ 364863.31139999628067, 256658.830800000578165 ], [ 364885.390799999237061, 256647.565900001674891 ], [ 364894.298699997365475, 256643.021000001579523 ], [ 364892.631300002336502, 256639.879799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703015600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-234", "ACRE": ".132", "LONGITUDE": -64.88120313, "LATITUDE": 18.3387365, "OBJECTID_1": 22877, "PARCEL_NO_": "105703015600", "Tax_Legal_": "148-234 ANNAS RETREAT NEW QUARTER", "Name": "JACQUELYN D CLENDINEN (LIFE ESTATE)", "Address": "7304 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 99400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.851462763699999, "SHAPE_Area": 560.32393687399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364076.657499998807907, 256631.512699998915195 ], [ 364063.068899996578693, 256617.469300001859665 ], [ 364041.129399999976158, 256637.132599998265505 ], [ 364054.725199997425079, 256650.331700000911951 ], [ 364076.657499998807907, 256631.512699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703016300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-227", "ACRE": ".128", "LONGITUDE": -64.8808479, "LATITUDE": 18.3387485, "OBJECTID_1": 22884, "PARCEL_NO_": "105703016300", "Tax_Legal_": "ANNAS RETREAT 148-227 NEW QTR", "Name": "LIMA WALLACE, LOURDES & LESETTE LIMA-HERMON", "Address": "PO Box 8334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.728376438799998, "SHAPE_Area": 513.17572758100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364112.878600001335144, 256639.197500001639128 ], [ 364108.920800000429153, 256630.510200001299381 ], [ 364104.9324000030756, 256625.411299999803305 ], [ 364098.519599996507168, 256620.925900001078844 ], [ 364080.653099998831749, 256635.767299998551607 ], [ 364087.792999997735023, 256649.546799998730421 ], [ 364112.878600001335144, 256639.197500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703070200", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-75", "ACRE": ".10", "LONGITUDE": -64.87967961, "LATITUDE": 18.33872796, "OBJECTID_1": 23218, "PARCEL_NO_": "105703070200", "Tax_Legal_": "ANNAS RETREAT 173-75 NEW QTR", "Name": "POTTER, INGER", "Address": "7838 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 75400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.046504764399998, "SHAPE_Area": 427.559866392 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364234.642599999904633, 256638.927499998360872 ], [ 364216.268200002610683, 256618.723200000822544 ], [ 364205.69990000128746, 256628.769200000911951 ], [ 364222.449000000953674, 256650.437800001353025 ], [ 364234.642599999904633, 256638.927499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85436002, "LATITUDE": 18.3372979, "OBJECTID_1": 24010, "PARCEL_NO_": "105804010300", "Tax_Legal_": "SMITH BAY 14A EAST END QTR", "Name": "14A PROPERTY LLC", "Address": "5328 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025003, "Country": "United States", "Land_Value": 1621500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1024.84036468, "SHAPE_Area": 26570.735628800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366755.588600002229214, 256327.087900001555681 ], [ 366914.164899997413158, 256454.408599998801947 ], [ 366890.395300000905991, 256499.599199999123812 ], [ 366839.522799998521805, 256602.618700001388788 ], [ 366851.592299997806549, 256605.672699999064207 ], [ 366866.865500003099442, 256611.286200001835823 ], [ 366888.533399999141693, 256623.495900001376867 ], [ 366900.54900000244379, 256632.88230000063777 ], [ 366906.947300001978874, 256639.056400001049042 ], [ 366909.337499998509884, 256642.453499998897314 ], [ 366912.541199997067451, 256645.012800000607967 ], [ 366918.91610000282526, 256653.930900000035763 ], [ 366928.510999999940395, 256663.508600000292063 ], [ 366938.129199996590614, 256670.342399999499321 ], [ 366974.702799998223782, 256636.655600000172853 ], [ 366971.506300002336502, 256633.252000000327826 ], [ 366969.1233000010252, 256629.010600000619888 ], [ 366966.796099998056889, 256618.22580000013113 ], [ 366967.89190000295639, 256584.248700000345707 ], [ 366967.943999998271465, 256578.127399999648333 ], [ 366967.389499999582767, 256548.56980000063777 ], [ 366977.590300001204014, 256487.013900000602007 ], [ 366976.805600002408028, 256484.474399998784065 ], [ 366846.592200003564358, 256340.709399998188019 ], [ 366800.284599997103214, 256286.501499999314547 ], [ 366789.638899996876717, 256305.6239 ], [ 366783.127300001680851, 256312.747800000011921 ], [ 366778.2533999979496, 256316.929800000041723 ], [ 366770.147200003266335, 256321.929699998348951 ], [ 366755.588600002229214, 256327.087900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703012600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-32", "ACRE": ".13", "LONGITUDE": -64.8818682, "LATITUDE": 18.33869271, "OBJECTID_1": 22847, "PARCEL_NO_": "105703012600", "Tax_Legal_": "ANNAS RETREAT 148-32 NEW QTR", "Name": "PARSON, ELECIA", "Address": "PO Box 304331", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 173700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.546224606600006, "SHAPE_Area": 465.34742364700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364004.175700001418591, 256620.787000000476837 ], [ 363992.158299997448921, 256611.611600000411272 ], [ 363973.39919999986887, 256636.578200001269579 ], [ 363976.602799996733665, 256639.137600000947714 ], [ 363984.610200002789497, 256645.747000001370907 ], [ 364004.175700001418591, 256620.787000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703093400", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-55", "ACRE": "0.23", "LONGITUDE": -64.8772231, "LATITUDE": 18.33865386, "OBJECTID_1": 23370, "PARCEL_NO_": "105703093400", "Tax_Legal_": "173A-55 ANNA'S RETREAT NEW QTR", "Name": "MATTHEW,LIFE INTEREST, ADOLPHUS E.", "Address": "5301 HICKORY RIDGE COURT", "City": "VIRGINIA BEACH", "State": "Virginia", "Zip": 23455, "Country": "United States", "Land_Value": 30500, "Improved_V": 187100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.62128125300001, "SHAPE_Area": 949.927565276 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364479.230400003492832, 256608.631999999284744 ], [ 364464.682599999010563, 256612.523699998855591 ], [ 364462.258299998939037, 256613.137200001627207 ], [ 364473.235600002110004, 256649.746199999004602 ], [ 364496.661799997091293, 256644.871700000017881 ], [ 364486.5033999979496, 256606.791700001806021 ], [ 364479.230400003492832, 256608.631999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703091900", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-34", "ACRE": "0.23", "LONGITUDE": -64.87573085, "LATITUDE": 18.33867464, "OBJECTID_1": 23355, "PARCEL_NO_": "105703091900", "Tax_Legal_": "ANNAS RETREAT 173A-34 NEW QTR.", "Name": "FRASER, NAOMI, WINSTED & CINDY E", "Address": "PO Box 266623", "City": "WESTON", "State": "Florida", "Zip": 33326, "Country": "United States", "Land_Value": 28900, "Improved_V": 138200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.497844671, "SHAPE_Area": 827.03606086100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364657.135899998247623, 256644.074099998921156 ], [ 364644.481299996376038, 256615.050799999386072 ], [ 364617.824400000274181, 256620.5320999994874 ], [ 364631.278200000524521, 256650.406399998813868 ], [ 364645.838600002229214, 256645.037099998444319 ], [ 364657.135899998247623, 256644.074099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88582112, "LATITUDE": 18.3387067, "OBJECTID_1": 21601, "PARCEL_NO_": "105604012300", "Tax_Legal_": "148-8 ANNAS RETREAT NEW QTR", "Name": "HODGE, ANGELINA L", "Address": "PO Box 7563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 117200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.569590654, "SHAPE_Area": 666.10715626499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363582.520999997854233, 256611.847500000149012 ], [ 363563.174900002777576, 256611.055900000035763 ], [ 363555.677199997007847, 256639.281100001186132 ], [ 363572.600699998438358, 256640.475099999457598 ], [ 363582.271099999547005, 256641.1875 ], [ 363582.520999997854233, 256611.847500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88562974, "LATITUDE": 18.33870021, "OBJECTID_1": 21602, "PARCEL_NO_": "105604012400", "Tax_Legal_": "148-9 ANNAS RETREAT NEW QTR", "Name": "GUISHARD, GERALD & ELLEN", "Address": "7266 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 109300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.831992789200001, "SHAPE_Area": 512.23955785600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363599.208999998867512, 256640.692899998277426 ], [ 363600.268899999558926, 256610.937300000339746 ], [ 363582.520999997854233, 256611.847500000149012 ], [ 363582.271099999547005, 256641.1875 ], [ 363588.723399996757507, 256641.029199998825788 ], [ 363599.208999998867512, 256640.692899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88546206, "LATITUDE": 18.33869338, "OBJECTID_1": 21603, "PARCEL_NO_": "105604012500", "Tax_Legal_": "148-10 ANNAS RETREAT NEW QTR", "Name": "SWIFT (LIFE ESTATE), UTAH", "Address": "7267 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 93100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.886343653300003, "SHAPE_Area": 538.87786417400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363617.763199999928474, 256639.789200000464916 ], [ 363618.016800001263618, 256610.027100000530481 ], [ 363600.268899999558926, 256610.937300000339746 ], [ 363599.208999998867512, 256640.692899998277426 ], [ 363601.629799999296665, 256640.501600001007318 ], [ 363617.763199999928474, 256639.789200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704036200", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173A-10", "ACRE": "0.23", "LONGITUDE": -64.87440539000001, "LATITUDE": 18.33861164, "OBJECTID_1": 23612, "PARCEL_NO_": "105704036200", "Tax_Legal_": "ANNAS RETREAT 173A-10\nNEW QTR.", "Name": "Felix Nicholas (Life Estate) & Pamela Nicholas", "Address": "PO Box 9512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012512, "Country": "United States", "Land_Value": 28900, "Improved_V": 157800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.27621644499999, "SHAPE_Area": 1097.5895874299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364797.437799997627735, 256637.586800001561642 ], [ 364782.501000002026558, 256599.71510000154376 ], [ 364772.76410000026226, 256606.812600001692772 ], [ 364758.945299997925758, 256619.787300001829863 ], [ 364769.171999998390675, 256649.8462999984622 ], [ 364797.437799997627735, 256637.586800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703070400", "MAP": "A9-102B-T68", "PARCEL_NAM": "174-73", "ACRE": ".16", "LONGITUDE": -64.87986292, "LATITUDE": 18.33861515, "OBJECTID_1": 23220, "PARCEL_NO_": "105703070400", "Tax_Legal_": "ANNAS RETREAT 173-73 NEW QTR", "Name": "TORRES, NITZA, RAFAEL & JOSE R. GOMEZ", "Address": "914 S. EVERGREEN AVE.", "City": "CLEARWATER", "State": "Florida", "Zip": 33756, "Country": "United States", "Land_Value": 20100, "Improved_V": 53200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.406248455, "SHAPE_Area": 790.52864851799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364216.268200002610683, 256618.723200000822544 ], [ 364225.213200002908707, 256609.930500000715256 ], [ 364217.983400002121925, 256606.704900000244379 ], [ 364213.185000002384186, 256602.021600000560284 ], [ 364179.122100003063679, 256624.963100001215935 ], [ 364191.855899997055531, 256644.699000000953674 ], [ 364205.69990000128746, 256628.769200000911951 ], [ 364216.268200002610683, 256618.723200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88601334000001, "LATITUDE": 18.33868261, "OBJECTID_1": 21600, "PARCEL_NO_": "105604012200", "Tax_Legal_": "148-7 ANNAS RETREAT NEW QTR", "Name": "JUNE GLORIA GIFFT (LIFE ESTATE)", "Address": "PO Box 1082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20500, "Improved_V": 101900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.480779586899999, "SHAPE_Area": 522.79237722300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363563.174900002777576, 256611.055900000035763 ], [ 363545.459399998188019, 256608.166700001806021 ], [ 363537.959899999201298, 256636.603000000119209 ], [ 363555.677199997007847, 256639.281100001186132 ], [ 363563.174900002777576, 256611.055900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88528463, "LATITUDE": 18.33868493, "OBJECTID_1": 21604, "PARCEL_NO_": "105604012600", "Tax_Legal_": "148-11 ANNAS RETREAT NO.1 NEW QTR", "Name": "WARNER, JUNE", "Address": "7268 Annas Retreat 148-11", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 112300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.332210714799999, "SHAPE_Area": 577.25717207399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363637.929999999701977, 256638.898800000548363 ], [ 363636.570900000631809, 256609.123500000685453 ], [ 363618.016800001263618, 256610.027100000530481 ], [ 363617.763199999928474, 256639.789200000464916 ], [ 363630.669600002467632, 256639.261599998921156 ], [ 363637.929999999701977, 256638.898800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88510917000001, "LATITUDE": 18.33867394, "OBJECTID_1": 21605, "PARCEL_NO_": "105604012700", "Tax_Legal_": "148-12 ANNAS RETREAT NEW QTR", "Name": "JOSEPH GRIFFIN LIVING TRUST", "Address": "PO Box 11202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 115700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.35466146, "SHAPE_Area": 531.72918603899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363655.676100000739098, 256638.199700001627207 ], [ 363654.318800002336502, 256608.213300000876188 ], [ 363636.570900000631809, 256609.123500000685453 ], [ 363637.929999999701977, 256638.898800000548363 ], [ 363647.609399996697903, 256638.555900000035763 ], [ 363655.676100000739098, 256638.199700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-68", "PARCEL_NAM": "173-83", "ACRE": ".04", "LONGITUDE": -64.87908282, "LATITUDE": 18.33863662, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.334700720800001, "SHAPE_Area": 392.098849863 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364297.655900001525879, 256631.265799999237061 ], [ 364279.232799999415874, 256609.682799998670816 ], [ 364275.179399996995926, 256613.294799998402596 ], [ 364268.337700001895428, 256620.046700000762939 ], [ 364288.615000002086163, 256639.926399998366833 ], [ 364295.978100001811981, 256632.885600000619888 ], [ 364297.655900001525879, 256631.265799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703022200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-123", "ACRE": ".137", "LONGITUDE": -64.88043495, "LATITUDE": 18.33869771, "OBJECTID_1": 22924, "PARCEL_NO_": "105703022200", "Tax_Legal_": "ANNAS RETREAT 148-123 NEW QTR", "Name": "BARON, GERALDINE", "Address": "PO Box 502903", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 120900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.111932723199999, "SHAPE_Area": 562.025486032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364158.14360000193119, 256626.480099998414516 ], [ 364131.618000000715256, 256616.552700001746416 ], [ 364126.675899997353554, 256628.755699999630451 ], [ 364124.993100002408028, 256636.974599998444319 ], [ 364124.948100000619888, 256642.251600001007318 ], [ 364157.251000002026558, 256636.60530000180006 ], [ 364158.14360000193119, 256626.480099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88492582000001, "LATITUDE": 18.33866782, "OBJECTID_1": 21606, "PARCEL_NO_": "105604012800", "Tax_Legal_": "148-13 ANNAS RETREAT NEW QTR", "Name": "MATTHIAS, HERBERT", "Address": "4338 Creekview Dr", "City": "Hephzibah", "State": "Georgia", "Zip": 30815, "Country": "United States", "Land_Value": 19200, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.164076904, "SHAPE_Area": 630.27700659100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363678.263599999248981, 256637.118000000715256 ], [ 363673.679300002753735, 256607.316300000995398 ], [ 363654.318800002336502, 256608.213300000876188 ], [ 363655.676100000739098, 256638.199700001627207 ], [ 363663.742799997329712, 256637.843499999493361 ], [ 363678.263599999248981, 256637.118000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703093300", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-54", "ACRE": "0.23", "LONGITUDE": -64.87700968, "LATITUDE": 18.33860872, "OBJECTID_1": 23369, "PARCEL_NO_": "105703093300", "Tax_Legal_": "ANNAS RETREAT 173A-54 NEW QTR.", "Name": "PETERSON, GLEN", "Address": "PMP GARDENS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.71320205799999, "SHAPE_Area": 867.54756505600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364519.281700000166893, 256639.990600001066923 ], [ 364505.903399996459484, 256601.250900000333786 ], [ 364495.394400000572205, 256604.331300001591444 ], [ 364486.5033999979496, 256606.791700001806021 ], [ 364496.661799997091293, 256644.871700000017881 ], [ 364519.281700000166893, 256639.990600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704011200", "MAP": "F9-2701-T70", "PARCEL_NAM": "57V-6", "ACRE": "0.24", "LONGITUDE": -64.87255196, "LATITUDE": 18.3385573, "OBJECTID_1": 23458, "PARCEL_NO_": "105704011200", "Tax_Legal_": "SMITH BAY 57V-6 EAST END QTR", "Name": "PHILLIPS, ALVARA", "Address": "PO Box 305545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37400, "Improved_V": 212500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.95488708799999, "SHAPE_Area": 1164.42842159 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364981.937600001692772, 256598.307599999010563 ], [ 364952.284500002861023, 256613.436599999666214 ], [ 364964.378499999642372, 256645.416600000113249 ], [ 364972.441899999976158, 256642.221799999475479 ], [ 364995.1300999969244, 256629.319699998944998 ], [ 364981.937600001692772, 256598.307599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88618777000001, "LATITUDE": 18.33865284, "OBJECTID_1": 21599, "PARCEL_NO_": "105604012100", "Tax_Legal_": "148-6 ANNAS RETREAT NEW QTR", "Name": "ROGERS, V & STEVENS", "Address": "80 NE 185th Ter", "City": "Miami", "State": "Florida", "Zip": 33179, "Country": "United States", "Land_Value": 19200, "Improved_V": 137000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.685175423299995, "SHAPE_Area": 582.62107195099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363545.459399998188019, 256608.166700001806021 ], [ 363534.190800003707409, 256605.752500001341105 ], [ 363526.151100002229214, 256602.942400000989437 ], [ 363519.438000001013279, 256633.70719999819994 ], [ 363537.959899999201298, 256636.603000000119209 ], [ 363545.459399998188019, 256608.166700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88474723, "LATITUDE": 18.33864937, "OBJECTID_1": 21607, "PARCEL_NO_": "105604012900", "Tax_Legal_": "148-14 ANNAS RETREAT NEW QTR", "Name": "CLARENCE TODMAN", "Address": "7271 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021921, "Country": "United States", "Land_Value": 17600, "Improved_V": 117100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.540097615999997, "SHAPE_Area": 513.09186098800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363693.590800002217293, 256636.399099998176098 ], [ 363692.237099997699261, 256605.990499999374151 ], [ 363673.679300002753735, 256607.316300000995398 ], [ 363678.263599999248981, 256637.118000000715256 ], [ 363693.590800002217293, 256636.399099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604010800", "MAP": "F9-2508-T69", "PARCEL_NAM": "391", "ACRE": "0.17", "LONGITUDE": -64.88800141, "LATITUDE": 18.33862877, "OBJECTID_1": 21584, "PARCEL_NO_": "105604010800", "Tax_Legal_": "ANNAS RETREAT 391 NEW QTR", "Name": "TOTAL PETROLEUM PUERTO RICO CORP", "Address": "PO Box 362916", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 55500, "Improved_V": 273200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.223747745, "SHAPE_Area": 870.88098368299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363370.19650000333786, 256627.493299998342991 ], [ 363368.666000001132488, 256613.557300001382828 ], [ 363327.886100001633167, 256616.748700000345707 ], [ 363326.964900001883507, 256604.47859999909997 ], [ 363326.18469999730587, 256590.760999999940395 ], [ 363325.453500002622604, 256577.903099998831749 ], [ 363321.449400000274181, 256578.182399999350309 ], [ 363319.831900000572205, 256578.295299999415874 ], [ 363321.317100003361702, 256604.854600001126528 ], [ 363323.141000002622604, 256630.760299999266863 ], [ 363328.917700000107288, 256630.488299999386072 ], [ 363370.19650000333786, 256627.493299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88458062, "LATITUDE": 18.33864417, "OBJECTID_1": 21608, "PARCEL_NO_": "105604013000", "Tax_Legal_": "ANNAS RETREAT 148-15 NEW QTR", "Name": "DAWSON, LOUANA", "Address": "148-15 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.928236159799994, "SHAPE_Area": 559.55420430599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363712.143100000917912, 256635.706500001251698 ], [ 363709.988499999046326, 256604.65819999948144 ], [ 363692.237099997699261, 256605.990499999374151 ], [ 363693.590800002217293, 256636.399099998176098 ], [ 363712.143100000917912, 256635.706500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703092000", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-33", "ACRE": "0.23", "LONGITUDE": -64.87546966, "LATITUDE": 18.33861337, "OBJECTID_1": 23356, "PARCEL_NO_": "105703092000", "Tax_Legal_": "ANNAS RETREAT 173A-33 NEW QTR", "Name": "PELL-JOSEPH, MARISOL", "Address": "PO Box 9125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 161400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.881161359, "SHAPE_Area": 889.41762673599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364683.836000002920628, 256633.526900000870228 ], [ 364676.787699997425079, 256608.982400000095367 ], [ 364644.481299996376038, 256615.050799999386072 ], [ 364657.135899998247623, 256644.074099998921156 ], [ 364669.261200003325939, 256640.584800001233816 ], [ 364683.836000002920628, 256633.526900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88440926, "LATITUDE": 18.33863207, "OBJECTID_1": 21609, "PARCEL_NO_": "105604013100", "Tax_Legal_": "148-16 ANNAS RETREAT NEW QTR", "Name": "SOLOMON, KATHLEEN", "Address": "PO Box 503192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.964907389199993, "SHAPE_Area": 568.91825268900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363729.889200001955032, 256635.007399998605251 ], [ 363728.54450000077486, 256603.543499998748302 ], [ 363709.988499999046326, 256604.65819999948144 ], [ 363712.143100000917912, 256635.706500001251698 ], [ 363721.016199998557568, 256635.35700000077486 ], [ 363729.889200001955032, 256635.007399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8863667, "LATITUDE": 18.33860328, "OBJECTID_1": 21598, "PARCEL_NO_": "105604012000", "Tax_Legal_": "148-5 ANNAS RETREAT NEW QTR", "Name": "MONSANTO, GHISLAINE", "Address": "PO Box 502653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20500, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.00216624399999, "SHAPE_Area": 651.12765838099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363526.151100002229214, 256602.942400000989437 ], [ 363515.699600003659725, 256599.268300000578165 ], [ 363509.276100002229214, 256596.049300000071526 ], [ 363504.439999997615814, 256595.798700001090765 ], [ 363503.335199996829033, 256630.8310999982059 ], [ 363519.438000001013279, 256633.70719999819994 ], [ 363526.151100002229214, 256602.942400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88424134, "LATITUDE": 18.33862418, "OBJECTID_1": 21610, "PARCEL_NO_": "105604013200", "Tax_Legal_": "148-17 ANNAS RETREAT NEW QTR", "Name": "HODGE, OLONZO & CORDELIA", "Address": "7275 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 139300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.999160540600002, "SHAPE_Area": 549.43010036600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363747.637100003659725, 256634.097199998795986 ], [ 363745.487899996340275, 256602.415600001811981 ], [ 363728.54450000077486, 256603.543499998748302 ], [ 363729.889200001955032, 256635.007399998605251 ], [ 363747.637100003659725, 256634.097199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703070300", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-74", "ACRE": ".15", "LONGITUDE": -64.8795374, "LATITUDE": 18.33861753, "OBJECTID_1": 23219, "PARCEL_NO_": "105703070300", "Tax_Legal_": "ANNAS RETREAT 173-74 NEW QTR", "Name": "RITA CALLWOOD TRUST", "Address": "7837 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 111500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.633855184, "SHAPE_Area": 589.34300044700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364216.268200002610683, 256618.723200000822544 ], [ 364234.642599999904633, 256638.927499998360872 ], [ 364254.154100000858307, 256620.299899999052286 ], [ 364254.994599997997284, 256616.296000000089407 ], [ 364252.584700003266335, 256615.220800001174212 ], [ 364238.88459999859333, 256614.264299999922514 ], [ 364225.213200002908707, 256609.930500000715256 ], [ 364216.268200002610683, 256618.723200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703012700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-31", "ACRE": ".13", "LONGITUDE": -64.88198954000001, "LATITUDE": 18.33860477, "OBJECTID_1": 22848, "PARCEL_NO_": "105703012700", "Tax_Legal_": "ANNAS RETREAT 148-31 NEW QTR", "Name": "LAMBERT, ALPHONSE", "Address": "PO Box 10451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 156800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.643597100999997, "SHAPE_Area": 538.96009332000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363992.158299997448921, 256611.611600000411272 ], [ 363978.539099998772144, 256601.156599998474121 ], [ 363959.7871999964118, 256625.278900001198053 ], [ 363962.989000000059605, 256628.049300000071526 ], [ 363973.39919999986887, 256636.578200001269579 ], [ 363992.158299997448921, 256611.611600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703015500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-235", "ACRE": ".138", "LONGITUDE": -64.88134163, "LATITUDE": 18.33863488, "OBJECTID_1": 22876, "PARCEL_NO_": "105703015500", "Tax_Legal_": "ANNAS RETREAT 148-235 NEW QTR", "Name": "DANIEL, MARIE L", "Address": "3333 Glynn Mill Dr", "City": "SNELLVILLE", "State": "Georgia", "Zip": 30039, "Country": "United States", "Land_Value": 19200, "Improved_V": 109900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.517196375899999, "SHAPE_Area": 505.51576805299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364063.068899996578693, 256617.469300001859665 ], [ 364055.074100002646446, 256609.382399998605251 ], [ 364025.935300000011921, 256622.231699999421835 ], [ 364026.718299999833107, 256624.982299998402596 ], [ 364029.110200002789497, 256628.168299999088049 ], [ 364041.129399999976158, 256637.132599998265505 ], [ 364063.068899996578693, 256617.469300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88406575, "LATITUDE": 18.33861198, "OBJECTID_1": 21611, "PARCEL_NO_": "105604013300", "Tax_Legal_": "ANNAS RETREAT 148-18 NEW QTR. #1", "Name": "ASHTIAN, HENRY & VALACIA", "Address": "7276 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 141500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.8769229, "SHAPE_Area": 635.97937329900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363766.994000002741814, 256633.622299998998642 ], [ 363765.658299997448921, 256601.103000000119209 ], [ 363745.487899996340275, 256602.415600001811981 ], [ 363747.637100003659725, 256634.097199998795986 ], [ 363766.994000002741814, 256633.622299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703093200", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-53", "ACRE": "0.23", "LONGITUDE": -64.87680553, "LATITUDE": 18.33855322, "OBJECTID_1": 23368, "PARCEL_NO_": "105703093200", "Tax_Legal_": "ANNAS RETREAT 173A-53 NEW QTR.", "Name": "GLASFORD, J. & DANIEL, F", "Address": "7757 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.903495604, "SHAPE_Area": 956.82185310600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364526.108000002801418, 256595.92790000140667 ], [ 364509.943999998271465, 256600.228500001132488 ], [ 364505.903399996459484, 256601.250900000333786 ], [ 364519.281700000166893, 256639.990600001066923 ], [ 364541.9087999984622, 256634.265099998563528 ], [ 364528.532300002872944, 256595.314399998635054 ], [ 364526.108000002801418, 256595.92790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604013400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-19", "ACRE": ".137", "LONGITUDE": -64.88388451, "LATITUDE": 18.33860546, "OBJECTID_1": 21612, "PARCEL_NO_": "105604013400", "Tax_Legal_": "148-19 ANNAS RETREAT NO 1 NEW QTR", "Name": "SPRAUVE, JOSEPH", "Address": "7277 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 219400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.788579708, "SHAPE_Area": 608.99953638700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363786.352600000798702, 256632.9364 ], [ 363783.407899998128414, 256599.981699999421835 ], [ 363765.658299997448921, 256601.103000000119209 ], [ 363766.994000002741814, 256633.622299998998642 ], [ 363775.866999998688698, 256633.272799998521805 ], [ 363786.352600000798702, 256632.9364 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703016400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-226", "ACRE": ".134", "LONGITUDE": -64.88099092, "LATITUDE": 18.33860492, "OBJECTID_1": 22885, "PARCEL_NO_": "105703016400", "Tax_Legal_": "ANNAS RETREAT 148-226 NEW QTR", "Name": "ISAAC, KAREN A. KLINE", "Address": "PO Box 304684", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 161000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.022636698100001, "SHAPE_Area": 563.55470594999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364098.519599996507168, 256620.925900001078844 ], [ 364093.728500001132488, 256615.398299999535084 ], [ 364085.76070000231266, 256604.145100001245737 ], [ 364063.068899996578693, 256617.469300001859665 ], [ 364076.657499998807907, 256631.512699998915195 ], [ 364080.653099998831749, 256635.767299998551607 ], [ 364098.519599996507168, 256620.925900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604013500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-20", "ACRE": ".13", "LONGITUDE": -64.88371675, "LATITUDE": 18.3385937, "OBJECTID_1": 21613, "PARCEL_NO_": "105604013500", "Tax_Legal_": "148-20 ANNAS RETREAT NO.1 NEW QTR", "Name": "DUBERRY, ROSE, HUBERT B & L. MATTHEWS", "Address": "PO Box 306115", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19300, "Improved_V": 216500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.759482207, "SHAPE_Area": 568.23802043800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363803.292400002479553, 256632.230700001120567 ], [ 363800.353100001811981, 256598.642799999564886 ], [ 363783.407899998128414, 256599.981699999421835 ], [ 363786.352600000798702, 256632.9364 ], [ 363798.450900003314018, 256632.613200001418591 ], [ 363803.292400002479553, 256632.230700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604013600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-21", "ACRE": ".134", "LONGITUDE": -64.88355923, "LATITUDE": 18.33858856, "OBJECTID_1": 21614, "PARCEL_NO_": "105604013600", "Tax_Legal_": "148-21 ANNAS RETREAT NEW QTR", "Name": "SMITH, EUONA & CAREY O. (LIFE ESTATE)", "Address": "PO Box 10996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 95800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.43720389400001, "SHAPE_Area": 548.91914345400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363821.851999998092651, 256630.693799998611212 ], [ 363814.072999998927116, 256597.277399998158216 ], [ 363800.353100001811981, 256598.642799999564886 ], [ 363803.292400002479553, 256632.230700001120567 ], [ 363815.396099999547005, 256631.274300001561642 ], [ 363821.851999998092651, 256630.693799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704035900", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173A-11", "ACRE": "0.31", "LONGITUDE": -64.87415734, "LATITUDE": 18.33845242, "OBJECTID_1": 23609, "PARCEL_NO_": "105704035900", "Tax_Legal_": "ANNAS RETREAT 173A-11 NEW QUARTER", "Name": "HERBERT, JOSEPH & SONIA", "Address": "PO Box 502356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39000, "Improved_V": 319200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.96575884699999, "SHAPE_Area": 1363.8246091799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364824.252999998629093, 256620.743999999016523 ], [ 364812.5, 256580.53999999910593 ], [ 364797.106299996376038, 256589.068799998611212 ], [ 364782.501000002026558, 256599.71510000154376 ], [ 364797.437799997627735, 256637.586800001561642 ], [ 364806.417000003159046, 256631.997000001370907 ], [ 364816.961999997496605, 256624.695099998265505 ], [ 364824.252999998629093, 256620.743999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704010900", "MAP": "F9-962-T62", "PARCEL_NAM": "57B-4", "ACRE": "0.41", "LONGITUDE": -64.87326961, "LATITUDE": 18.3385012, "OBJECTID_1": 23455, "PARCEL_NO_": "105704010900", "Tax_Legal_": "SMITH BAY 57B-4 1 2 & 3 EAST END", "Name": "MARIE MATTHEW and MONELLE K. JENKENS", "Address": "PO Box 11633", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 78500, "Improved_V": 158700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.52764456099999, "SHAPE_Area": 1411.11036988 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364918.568199999630451, 256624.260099999606609 ], [ 364901.149400003254414, 256586.542899999767542 ], [ 364874.407999999821186, 256601.945000000298023 ], [ 364892.631300002336502, 256639.879799999296665 ], [ 364894.298699997365475, 256643.021000001579523 ], [ 364920.833200000226498, 256629.4831000007689 ], [ 364918.568199999630451, 256624.260099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604013700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-22", "ACRE": ".141", "LONGITUDE": -64.88339698, "LATITUDE": 18.33855974, "OBJECTID_1": 21615, "PARCEL_NO_": "105604013700", "Tax_Legal_": "ANNAS RETREAT 148-22 NEW QTR", "Name": "DALEY, ALFRED, JR. , RICHARD, GEORGE & BERNARD", "Address": "7280 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 225800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.36964977700001, "SHAPE_Area": 644.48723227999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363839.610600002110004, 256628.517200000584126 ], [ 363833.449600003659725, 256594.480700001120567 ], [ 363814.072999998927116, 256597.277399998158216 ], [ 363821.851999998092651, 256630.693799998611212 ], [ 363829.11599999666214, 256629.908900000154972 ], [ 363839.610600002110004, 256628.517200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-68", "PARCEL_NAM": "173-84", "ACRE": ".04", "LONGITUDE": -64.87898033, "LATITUDE": 18.33855316, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.673354137100006, "SHAPE_Area": 412.85856741600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364309.049400001764297, 256620.285599999129772 ], [ 364289.322400003671646, 256600.5793999992311 ], [ 364285.742399998009205, 256603.881999999284744 ], [ 364279.232799999415874, 256609.682799998670816 ], [ 364297.655900001525879, 256631.265799999237061 ], [ 364305.73480000346899, 256623.4662000015378 ], [ 364309.049400001764297, 256620.285599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604014400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-23", "ACRE": ".141", "LONGITUDE": -64.88323121000001, "LATITUDE": 18.33853194, "OBJECTID_1": 21622, "PARCEL_NO_": "105604014400", "Tax_Legal_": "148-23 ANNAS RETREAT NEW QTR", "Name": "MARRISHOW, JAMES R. & PHYLLIS N", "Address": "312 Mirasol Ln", "City": "Orlando", "State": "Florida", "Zip": 32828, "Country": "United States", "Land_Value": 20800, "Improved_V": 98600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.276402928, "SHAPE_Area": 582.87619134299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363855.774599999189377, 256624.216499999165535 ], [ 363850.412799999117851, 256591.030900001525879 ], [ 363833.449600003659725, 256594.480700001120567 ], [ 363839.610600002110004, 256628.517200000584126 ], [ 363843.647600002586842, 256627.916900001466274 ], [ 363855.774599999189377, 256624.216499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703093100", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-52", "ACRE": "0.24", "LONGITUDE": -64.87659197000001, "LATITUDE": 18.33849782, "OBJECTID_1": 23367, "PARCEL_NO_": "105703093100", "Tax_Legal_": "ANNAS RETREAT 173A-52 NEW QTR.", "Name": "CLARKE, IVAN & SHILLA", "Address": "7652 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 275200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.41165370799999, "SHAPE_Area": 964.64978193800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364564.537699997425079, 256628.328600000590086 ], [ 364551.163000002503395, 256589.166900001466274 ], [ 364539.847699999809265, 256592.240600001066923 ], [ 364528.532300002872944, 256595.314399998635054 ], [ 364541.9087999984622, 256634.265099998563528 ], [ 364564.537699997425079, 256628.328600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703092100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87505595, "LATITUDE": 18.33855476, "OBJECTID_1": 23357, "PARCEL_NO_": "105703092100", "Tax_Legal_": "ANNAS RETREAT 173A-32 NEW QTR.", "Name": "ARTHUR, JONATHAN L, SEANEICE C, & JAMELA L", "Address": "PO Box 10099", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40400, "Improved_V": 285000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.294773091, "SHAPE_Area": 1206.05745839 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364746.494000002741814, 256619.244199998676777 ], [ 364745.486699998378754, 256610.008200000971556 ], [ 364732.399899996817112, 256612.181699998676777 ], [ 364712.249300003051758, 256611.172400001436472 ], [ 364688.086900003254414, 256607.808299999684095 ], [ 364676.787699997425079, 256608.982400000095367 ], [ 364683.836000002920628, 256633.526900000870228 ], [ 364695.151299998164177, 256630.453099999576807 ], [ 364724.19650000333786, 256628.579900000244379 ], [ 364734.701999999582767, 256625.921700000762939 ], [ 364742.799300000071526, 256621.977200001478195 ], [ 364746.494000002741814, 256619.244199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703012800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-30", "ACRE": ".153", "LONGITUDE": -64.88212906, "LATITUDE": 18.33850622, "OBJECTID_1": 22849, "PARCEL_NO_": "105703012800", "Tax_Legal_": "148-30 ANNAS RETREAT NEW QTR", "Name": "FAULKNER, DOREEN", "Address": "PO Box 303572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 140400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.099730779, "SHAPE_Area": 614.10862293499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363978.539099998772144, 256601.156599998474121 ], [ 363960.10360000282526, 256588.129000000655651 ], [ 363945.311300002038479, 256620.727400001138449 ], [ 363959.7871999964118, 256625.278900001198053 ], [ 363978.539099998772144, 256601.156599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604014500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-24", "ACRE": ".136", "LONGITUDE": -64.88306998, "LATITUDE": 18.33849434, "OBJECTID_1": 21623, "PARCEL_NO_": "105604014500", "Tax_Legal_": "ANNAS RETREAT 148-24 NEW QTR", "Name": "BONELLI, IRVIN J. & SARAH", "Address": "287 Hopewell Rd", "City": "Medford", "State": "New Jersey", "Zip": 8055, "Country": "United States", "Land_Value": 19200, "Improved_V": 215800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.62157200599999, "SHAPE_Area": 598.19519655099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363874.368400000035763, 256618.669100001454353 ], [ 363866.576800003647804, 256586.730200000107288 ], [ 363850.412799999117851, 256591.030900001525879 ], [ 363855.774599999189377, 256624.216499999165535 ], [ 363869.517899997532368, 256620.107099998742342 ], [ 363874.368400000035763, 256618.669100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703022300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-124", "ACRE": ".136", "LONGITUDE": -64.88035098, "LATITUDE": 18.3385368, "OBJECTID_1": 22925, "PARCEL_NO_": "105703022300", "Tax_Legal_": "ANNAS RETREAT 148-124 NEW QTR", "Name": "CHRISTOPHER, BARBARA BOAL", "Address": "7050 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 128600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.162752068800003, "SHAPE_Area": 571.81056109400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364167.952399998903275, 256610.939500000327826 ], [ 364139.8412000015378, 256597.832699999213219 ], [ 364131.618000000715256, 256616.552700001746416 ], [ 364158.14360000193119, 256626.480099998414516 ], [ 364167.952399998903275, 256610.939500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703021600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-158", "ACRE": ".140", "LONGITUDE": -64.88067947, "LATITUDE": 18.33848948, "OBJECTID_1": 22918, "PARCEL_NO_": "105703021600", "Tax_Legal_": "148-158 ANNAS RETREAT \nNO.1 NEW QUARTER", "Name": "George, Margaret and Syhania Reid", "Address": "148-158 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 104900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.9941322743, "SHAPE_Area": 542.79028453499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364119.719300001859665, 256593.446199998259544 ], [ 364096.244599997997284, 256604.019799999892712 ], [ 364101.82940000295639, 256611.031599998474121 ], [ 364109.838600002229214, 256617.429900001734495 ], [ 364114.631499998271465, 256622.746500000357628 ], [ 364116.218999996781349, 256625.714800000190735 ], [ 364117.829800002276897, 256625.939100001007318 ], [ 364122.779200002551079, 256612.891800001263618 ], [ 364130.161799997091293, 256598.175700001418591 ], [ 364119.719300001859665, 256593.446199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703093000", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-51", "ACRE": "0.24", "LONGITUDE": -64.87639887, "LATITUDE": 18.33844716, "OBJECTID_1": 23366, "PARCEL_NO_": "105703093000", "Tax_Legal_": "ANNAS RETREAT 173A-51 NEW QTR.", "Name": "PRENTICE, HAROLD & EDRIS", "Address": "PMP GARDENS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.301426385, "SHAPE_Area": 777.84826703600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364583.131399996578693, 256622.781300000846386 ], [ 364568.945100001990795, 256584.246100001037121 ], [ 364555.203599996864796, 256588.144499998539686 ], [ 364551.163000002503395, 256589.166900001466274 ], [ 364564.537699997425079, 256628.328600000590086 ], [ 364583.131399996578693, 256622.781300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703070500", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-72", "ACRE": ".20", "LONGITUDE": -64.87997717, "LATITUDE": 18.33847852, "OBJECTID_1": 23221, "PARCEL_NO_": "105703070500", "Tax_Legal_": "173-72 ANNAS RETREAT NO 1 NEW QTR", "Name": "ENID DECASTRO FAMILY REVOC T RUST", "Address": "7502 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25100, "Improved_V": 118900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.373774384, "SHAPE_Area": 795.54857279400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364213.185000002384186, 256602.021600000560284 ], [ 364209.194799996912479, 256597.133799999952316 ], [ 364207.634400002658367, 256590.999299999326468 ], [ 364169.642399996519089, 256601.876299999654293 ], [ 364167.952399998903275, 256610.939500000327826 ], [ 364179.122100003063679, 256624.963100001215935 ], [ 364213.185000002384186, 256602.021600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603011500", "MAP": "C9-215-T76", "PARCEL_NAM": "C", "ACRE": null, "LONGITUDE": -64.89889801, "LATITUDE": 18.33838375, "OBJECTID_1": 21511, "PARCEL_NO_": "105603011500", "Tax_Legal_": "LOT C ESTATE DONOE NEW QTR", "Name": "AQUARIAM SYSTEM INC", "Address": "PO Box 10682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013682, "Country": "United States", "Land_Value": 54300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.349108081, "SHAPE_Area": 3694.8621094300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362154.983999997377396, 256548.2347999997437 ], [ 362156.902999997138977, 256606.934500001370907 ], [ 362225.452200002968311, 256606.017900001257658 ], [ 362221.852200001478195, 256555.3260000012815 ], [ 362154.983999997377396, 256548.2347999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703015400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-236", "ACRE": ".136", "LONGITUDE": -64.88140281, "LATITUDE": 18.33848653, "OBJECTID_1": 22875, "PARCEL_NO_": "105703015400", "Tax_Legal_": "148-236 ANNAS RETREAT NEW QUARTER", "Name": "ANTHONY, GESELLE L", "Address": "#148-236 EST. ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 217700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.572543822, "SHAPE_Area": 601.77005723399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364052.725299999117851, 256601.130499999970198 ], [ 364049.579099997878075, 256591.816599998623133 ], [ 364022.898900002241135, 256600.041999999433756 ], [ 364025.935300000011921, 256622.231699999421835 ], [ 364055.074100002646446, 256609.382399998605251 ], [ 364052.725299999117851, 256601.130499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703012900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-29", "ACRE": ".144", "LONGITUDE": -64.88228822000001, "LATITUDE": 18.33843626, "OBJECTID_1": 22850, "PARCEL_NO_": "105703012900", "Tax_Legal_": "ANNAS RETREAT 148-29 NEW QTR", "Name": "WILLIAMS, JEAN LUC & YWANDE SHERIDAN", "Address": "PO BOX 303883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 100200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.32040722799999, "SHAPE_Area": 680.48917681900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363960.109499998390675, 256587.96000000089407 ], [ 363950.476899996399879, 256582.814899999648333 ], [ 363942.437200002372265, 256580.004900000989437 ], [ 363936.712099999189377, 256589.45719999819994 ], [ 363931.640399999916553, 256616.857900001108646 ], [ 363940.490099996328354, 256619.252399999648333 ], [ 363945.317199997603893, 256620.558400001376867 ], [ 363960.109499998390675, 256587.96000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-68", "PARCEL_NAM": "173-84", "ACRE": ".04", "LONGITUDE": -64.87889087000001, "LATITUDE": 18.33846238, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.128719186200001, "SHAPE_Area": 355.57772976299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364317.500900000333786, 256612.081399999558926 ], [ 364299.496899999678135, 256591.160500001162291 ], [ 364295.49549999833107, 256594.884799998253584 ], [ 364289.322400003671646, 256600.5793999992311 ], [ 364309.049400001764297, 256620.285599999129772 ], [ 364314.67790000140667, 256614.88459999859333 ], [ 364317.500900000333786, 256612.081399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704011400", "MAP": "F9-2680-T70", "PARCEL_NAM": "57V-7", "ACRE": "0.24", "LONGITUDE": -64.87226447, "LATITUDE": 18.33839806, "OBJECTID_1": 23460, "PARCEL_NO_": "105704011400", "Tax_Legal_": "SMITH BAY 57V-7 EAST END QTR", "Name": "ROGERS, ROSLYN", "Address": "PO Box 10179", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37400, "Improved_V": 321100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.30713923799999, "SHAPE_Area": 1137.2965215900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365013.984600000083447, 256581.957100000232458 ], [ 364981.937600001692772, 256598.307599999010563 ], [ 364995.1300999969244, 256629.319699998944998 ], [ 365010.54900000244379, 256617.835700001567602 ], [ 365026.750699996948242, 256609.102400001138449 ], [ 365013.984600000083447, 256581.957100000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603011600", "MAP": "C9-215-T76", "PARCEL_NAM": "D", "ACRE": null, "LONGITUDE": -64.89839128, "LATITUDE": 18.33840137, "OBJECTID_1": 21512, "PARCEL_NO_": "105603011600", "Tax_Legal_": "LOT D ESTATE DONOE NEW QTR", "Name": "BRYAN, ARTHUR", "Address": "PO Box 11146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.07847036199999, "SHAPE_Area": 1849.38822966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362221.852200001478195, 256555.3260000012815 ], [ 362225.452200002968311, 256606.017900001257658 ], [ 362264.162399999797344, 256605.49040000140667 ], [ 362259.718299999833107, 256559.224500000476837 ], [ 362221.852200001478195, 256555.3260000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603011700", "MAP": "C9-215-T76", "PARCEL_NAM": "E", "ACRE": null, "LONGITUDE": -64.89801106, "LATITUDE": 18.33841275, "OBJECTID_1": 21513, "PARCEL_NO_": "105603011700", "Tax_Legal_": "LOT E ESTATE DONOE No.2A NEW QTR.", "Name": "BINGHAM, II & KIM & BRIAN ROBERTS, ROBERT W", "Address": "4520 Don Timoteo Dr", "City": "Los Angeles", "State": "California", "Zip": 90008, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.701974818, "SHAPE_Area": 1843.17419655 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362259.718299999833107, 256559.224500000476837 ], [ 362264.162399999797344, 256605.49040000140667 ], [ 362306.099600002169609, 256604.778099998831749 ], [ 362302.418700002133846, 256563.584800001233816 ], [ 362259.718299999833107, 256559.224500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604014600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-25", "ACRE": ".134", "LONGITUDE": -64.88290935000001, "LATITUDE": 18.33844831, "OBJECTID_1": 21624, "PARCEL_NO_": "105604014600", "Tax_Legal_": "148-25 ESTATE ANNAS RETREAT NEW QTR", "Name": "SMITH, PEDRO & MARJORIE (LIFE ESTATE)", "Address": "PO Box 7462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 142000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.20613718, "SHAPE_Area": 566.36401114800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363892.153999999165535, 256613.326299998909235 ], [ 363881.936300002038479, 256582.211899999529123 ], [ 363866.576800003647804, 256586.730200000107288 ], [ 363874.368400000035763, 256618.669100001454353 ], [ 363886.495399996638298, 256614.968699999153614 ], [ 363892.153999999165535, 256613.326299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603011800", "MAP": "C-215-T76", "PARCEL_NAM": "F", "ACRE": null, "LONGITUDE": -64.89757398, "LATITUDE": 18.33843026, "OBJECTID_1": 21514, "PARCEL_NO_": "105603011800", "Tax_Legal_": "LOT F DONOE NEW QTR", "Name": "ROBERTS, B & GALIBER, O", "Address": "4520 Don Timoteo Dr", "City": "Los Angeles", "State": "California", "Zip": 90008, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.14293804600001, "SHAPE_Area": 1905.8107673699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362306.099600002169609, 256604.778099998831749 ], [ 362352.068400003015995, 256604.098900001496077 ], [ 362352.088200002908707, 256601.776999998837709 ], [ 362353.727799996733665, 256598.624099999666214 ], [ 362355.356600001454353, 256596.737500000745058 ], [ 362359.420500002801418, 256592.971099998801947 ], [ 362358.675399996340275, 256585.787799999117851 ], [ 362357.098700001835823, 256581.553100001066923 ], [ 362351.515699997544289, 256574.330200001597404 ], [ 362343.493900001049042, 256569.409400001168251 ], [ 362337.06139999628067, 256567.245799999684095 ], [ 362302.418700002133846, 256563.584800001233816 ], [ 362306.099600002169609, 256604.778099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604010900", "MAP": null, "PARCEL_NAM": "14", "ACRE": null, "LONGITUDE": -64.88949331000001, "LATITUDE": 18.33818722, "OBJECTID_1": 21585, "PARCEL_NO_": "105604010900", "Tax_Legal_": "14 REM CHARLOTTE AMALIE NO.3 NEW QTR", "Name": "ALLIED HOLDING COMPANY, LLC", "Address": "PO Box 302824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 263000, "Improved_V": 541300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.74179959100002, "SHAPE_Area": 5154.1317567200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363222.254000000655651, 256590.744899999350309 ], [ 363216.387900002300739, 256522.091499999165535 ], [ 363137.992200002074242, 256542.9814000017941 ], [ 363158.373700000345707, 256611.542500000447035 ], [ 363222.254000000655651, 256590.744899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-90", "ACRE": "0.10", "LONGITUDE": -64.87818158, "LATITUDE": 18.3384754, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.667045513000005, "SHAPE_Area": 468.66249491500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364369.327899999916553, 256592.010899998247623 ], [ 364370.50110000371933, 256619.83049999922514 ], [ 364380.745200000703335, 256621.335900001227856 ], [ 364390.420900002121925, 256621.415100000798702 ], [ 364383.399700000882149, 256593.7043999992311 ], [ 364375.340199999511242, 256593.216299999505281 ], [ 364369.327899999916553, 256592.010899998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703031800", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-91", "ACRE": "0.10", "LONGITUDE": -64.87803375, "LATITUDE": 18.33846204, "OBJECTID_1": 22975, "PARCEL_NO_": "105703031800", "Tax_Legal_": "ANNAS RETREAT 173-91 NEW QTR", "Name": "LUZUNARIS, CARMEN & CARMEN B", "Address": "PO Box 7222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14900, "Improved_V": 77600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.730615964999998, "SHAPE_Area": 408.242136329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364404.961499996483326, 256618.36769999936223 ], [ 364397.93129999935627, 256591.712400000542402 ], [ 364390.660099998116493, 256593.341600000858307 ], [ 364383.399700000882149, 256593.7043999992311 ], [ 364390.420900002121925, 256621.415100000798702 ], [ 364404.961499996483326, 256618.36769999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703092900", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-50", "ACRE": "0.24", "LONGITUDE": -64.87620855, "LATITUDE": 18.33839467, "OBJECTID_1": 23365, "PARCEL_NO_": "105703092900", "Tax_Legal_": "ANNAS RETREAT 173A-50 NEW QTR.", "Name": "PROCTOR, SHIRLEY & SHETTON", "Address": "PO Box 6183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 78400, "Improved_V": 386900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.133853712, "SHAPE_Area": 928.39598036300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364605.767499998211861, 256616.000500001013279 ], [ 364590.762299999594688, 256578.936299998313189 ], [ 364583.048900000751019, 256580.8136 ], [ 364568.945100001990795, 256584.246100001037121 ], [ 364583.131399996578693, 256622.781300000846386 ], [ 364605.767499998211861, 256616.000500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703013000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-28", "ACRE": ".144", "LONGITUDE": -64.88244496, "LATITUDE": 18.33839579, "OBJECTID_1": 22851, "PARCEL_NO_": "105703013000", "Tax_Legal_": "ANNAS RETREAT 148-28 NEW QTR", "Name": "STOUT, GLORIA", "Address": "394-362 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 102700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.899224023, "SHAPE_Area": 621.42648409499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363942.43129999935627, 256580.173900000751019 ], [ 363932.777099996805191, 256577.561799999326468 ], [ 363921.499499998986721, 256576.202899999916553 ], [ 363917.956000000238419, 256613.537500001490116 ], [ 363922.78490000218153, 256614.632399998605251 ], [ 363931.634499996900558, 256617.026900000870228 ], [ 363936.706200003623962, 256589.626200001686811 ], [ 363942.43129999935627, 256580.173900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603011900", "MAP": "C9-215-T76", "PARCEL_NAM": "K", "ACRE": null, "LONGITUDE": -64.89718407, "LATITUDE": 18.33820305, "OBJECTID_1": 21515, "PARCEL_NO_": "105603011900", "Tax_Legal_": "LOT K DONOE NEW QTR", "Name": "BRYAN, NORMA A. & LAURENCE E., JR.", "Address": "PO Box 10682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013682, "Country": "United States", "Land_Value": 56500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.13787383699997, "SHAPE_Area": 3593.9876718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362400.142599999904633, 256545.597300000488758 ], [ 362327.790200002491474, 256519.673900000751019 ], [ 362326.669200003147125, 256556.606100000441074 ], [ 362346.00450000166893, 256558.664200000464916 ], [ 362350.824400000274181, 256560.814500000327826 ], [ 362354.829000003635883, 256564.013700000941753 ], [ 362357.229999996721745, 256566.144299998879433 ], [ 362362.821999996900558, 256572.311799999326468 ], [ 362367.593400001525879, 256580.161299999803305 ], [ 362369.170000001788139, 256584.396099999547005 ], [ 362369.907999999821186, 256592.423700001090765 ], [ 362374.709899999201298, 256596.684799998998642 ], [ 362376.299199998378754, 256599.442099999636412 ], [ 362376.263199999928474, 256603.663600001484156 ], [ 362406.057800002396107, 256602.84569999948144 ], [ 362400.142599999904633, 256545.597300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703016500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-225", "ACRE": ".150", "LONGITUDE": -64.8811094, "LATITUDE": 18.33846159, "OBJECTID_1": 22886, "PARCEL_NO_": "105703016500", "Tax_Legal_": "ANNAS RETREAT 148-225 NEW QTR", "Name": "DONOVAN, JR. , DANIEL & HARRIET", "Address": "GERS COMPLEX-3rd FLOOR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 113200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.212835336599994, "SHAPE_Area": 495.727373258 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364085.76070000231266, 256604.145100001245737 ], [ 364079.427100002765656, 256590.37220000103116 ], [ 364052.725299999117851, 256601.130499999970198 ], [ 364055.074100002646446, 256609.382399998605251 ], [ 364063.068899996578693, 256617.469300001859665 ], [ 364085.76070000231266, 256604.145100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704011100", "MAP": "F9-963-T62", "PARCEL_NAM": "57B-5", "ACRE": "0.40", "LONGITUDE": -64.87299239, "LATITUDE": 18.33836368, "OBJECTID_1": 23457, "PARCEL_NO_": "105704011100", "Tax_Legal_": "SMITH BAY 57B-5 1 2 & 3 EAST END QTR", "Name": "MELCHOIR, GRACIANO & MABEL", "Address": "PO Box 10841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66700, "Improved_V": 230000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.059246586, "SHAPE_Area": 1672.0936565899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364949.368100002408028, 256605.724899999797344 ], [ 364935.138599999248981, 256572.25560000166297 ], [ 364914.104299999773502, 256580.316100001335144 ], [ 364901.149400003254414, 256586.542899999767542 ], [ 364918.568199999630451, 256624.260099999606609 ], [ 364920.833200000226498, 256629.4831000007689 ], [ 364952.284500002861023, 256613.436599999666214 ], [ 364949.368100002408028, 256605.724899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-89", "ACRE": "0.10", "LONGITUDE": -64.87833184, "LATITUDE": 18.33845365, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.124217816599995, "SHAPE_Area": 398.51233945600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364363.265299998223782, 256590.795400001108646 ], [ 364357.260499998927116, 256589.820300001651049 ], [ 364353.707900002598763, 256616.464600000530481 ], [ 364367.054099999368191, 256619.324000000953674 ], [ 364370.50110000371933, 256619.83049999922514 ], [ 364369.327899999916553, 256592.010899998247623 ], [ 364363.265299998223782, 256590.795400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032000", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-92", "ACRE": "0.10", "LONGITUDE": -64.87789469000001, "LATITUDE": 18.33842687, "OBJECTID_1": 22976, "PARCEL_NO_": "105703032000", "Tax_Legal_": "ANNAS RETREAT 173-92 NEW QTR", "Name": "L. & C. SCARBOROUGH - LIFE INT", "Address": "7762 Estate Tut Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 72000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.886102342000001, "SHAPE_Area": 433.43244232699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364419.509300000965595, 256614.475999999791384 ], [ 364413.292599998414516, 256586.982999999076128 ], [ 364397.93129999935627, 256591.712400000542402 ], [ 364404.961499996483326, 256618.36769999936223 ], [ 364419.509300000965595, 256614.475999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604014700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-26", "ACRE": ".131", "LONGITUDE": -64.88275473, "LATITUDE": 18.33838986, "OBJECTID_1": 21625, "PARCEL_NO_": "105604014700", "Tax_Legal_": "148-26 ANNAS RETREAT NEW QUARTER", "Name": "WILLIAMS, JUANITA", "Address": "PO Box 302993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 131000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.429395922, "SHAPE_Area": 577.08791495499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363905.881099998950958, 256611.116599999368191 ], [ 363902.140799999237061, 256576.888799998909235 ], [ 363896.489500001072884, 256577.686900001019239 ], [ 363881.936300002038479, 256582.211899999529123 ], [ 363892.153999999165535, 256613.326299998909235 ], [ 363901.856700003147125, 256610.23930000141263 ], [ 363905.881099998950958, 256611.116599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703013100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-27", "ACRE": ".134", "LONGITUDE": -64.88259656, "LATITUDE": 18.33837583, "OBJECTID_1": 22852, "PARCEL_NO_": "105703013100", "Tax_Legal_": "ANNAS RETREAT 148-27 NEW QTR", "Name": "WILKINSON, DAVID & BLANCHE", "Address": "7285 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 125900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.666267343, "SHAPE_Area": 568.74858579800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363921.499499998986721, 256576.202899999916553 ], [ 363911.019299998879433, 256575.905999999493361 ], [ 363902.140799999237061, 256576.888799998909235 ], [ 363905.881099998950958, 256611.116599999368191 ], [ 363917.956000000238419, 256613.537500001490116 ], [ 363921.499499998986721, 256576.202899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704035700", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173A-12", "ACRE": "0.34", "LONGITUDE": -64.87387304000001, "LATITUDE": 18.33830193, "OBJECTID_1": 23607, "PARCEL_NO_": "105704035700", "Tax_Legal_": "ANNAS RETREAT 173A-12 NEW QTR.", "Name": "RICHARDSON, OTTWELL & V", "Address": "6510 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.477618009, "SHAPE_Area": 1419.78844854 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364856.670999996364117, 256601.588700000196695 ], [ 364844.068499997258186, 256566.443999998271465 ], [ 364827.076499998569489, 256573.271000001579523 ], [ 364812.5, 256580.53999999910593 ], [ 364824.252999998629093, 256620.743999999016523 ], [ 364856.670999996364117, 256601.588700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85348175, "LATITUDE": 18.33833949, "OBJECTID_1": 24035, "PARCEL_NO_": "105804024500", "Tax_Legal_": "12B-1 ESTATE SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "SMITH, HENRY & MURIEL", "Address": "PO Box 302231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 199400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.213188621, "SHAPE_Area": 1171.9627650299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367007.75620000064373, 256637.559399999678135 ], [ 366999.125900000333786, 256609.413400001823902 ], [ 367003.292300000786781, 256593.61540000140667 ], [ 366979.106499999761581, 256592.995299998670816 ], [ 366975.868699997663498, 256594.44649999961257 ], [ 366974.238099999725819, 256596.544100001454353 ], [ 366974.045699998736382, 256619.12950000166893 ], [ 366976.401699997484684, 256626.537000000476837 ], [ 366979.590999998152256, 256630.785000000149012 ], [ 366984.39469999819994, 256634.835099998861551 ], [ 366990.017300002276897, 256637.414299998432398 ], [ 366994.846199996769428, 256638.509199999272823 ], [ 367007.75620000064373, 256637.559399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85318969, "LATITUDE": 18.33833805, "OBJECTID_1": 24023, "PARCEL_NO_": "105804021300", "Tax_Legal_": "SMITH BAY 12B EAST END QTR", "Name": "SMITH, HENRY & MURIEL", "Address": "PO Box 302231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 356000, "Improved_V": 401000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.059777207, "SHAPE_Area": 1520.2918286399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367003.292300000786781, 256593.61540000140667 ], [ 366999.125900000333786, 256609.413400001823902 ], [ 367007.75620000064373, 256637.559399999678135 ], [ 367041.64469999819994, 256635.092599999159575 ], [ 367038.570500001311302, 256617.33559999987483 ], [ 367035.539399996399879, 256594.512699998915195 ], [ 367003.292300000786781, 256593.61540000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-68", "PARCEL_NAM": "173-85", "ACRE": ".04", "LONGITUDE": -64.87878607, "LATITUDE": 18.33835845, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.223718025500006, "SHAPE_Area": 468.97128900600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364327.571999996900558, 256584.757599998265505 ], [ 364315.759400002658367, 256582.596099998801947 ], [ 364312.532300002872944, 256582.780799999833107 ], [ 364306.061999998986721, 256585.049899999052286 ], [ 364299.496899999678135, 256591.160500001162291 ], [ 364317.500900000333786, 256612.081399999558926 ], [ 364320.370700001716614, 256609.231699999421835 ], [ 364322.332699999213219, 256602.563700001686811 ], [ 364327.571999996900558, 256584.757599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-87", "ACRE": "0.10", "LONGITUDE": -64.87860646, "LATITUDE": 18.33839139, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.296876427499996, "SHAPE_Area": 472.24074444600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364339.567500002682209, 256612.461399998515844 ], [ 364346.834499999880791, 256588.130800001323223 ], [ 364339.912799999117851, 256587.015700001269579 ], [ 364327.571999996900558, 256584.757599998265505 ], [ 364322.332699999213219, 256602.563700001686811 ], [ 364320.370700001716614, 256609.231699999421835 ], [ 364328.437399998307228, 256608.875500001013279 ], [ 364332.463600002229214, 256609.541700001806021 ], [ 364339.567500002682209, 256612.461399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032100", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-93", "ACRE": "0.10", "LONGITUDE": -64.87775517, "LATITUDE": 18.33838835, "OBJECTID_1": 22977, "PARCEL_NO_": "105703032100", "Tax_Legal_": "173-93 ANNAS RETREAT NEW QTR.", "Name": "TODMAN, EUNICE", "Address": "7760 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 103600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.290862955500003, "SHAPE_Area": 430.794999174 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364434.057099997997284, 256610.584300000220537 ], [ 364427.845799997448921, 256582.458000000566244 ], [ 364413.292599998414516, 256586.982999999076128 ], [ 364419.509300000965595, 256614.475999999791384 ], [ 364434.057099997997284, 256610.584300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703092800", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-49", "ACRE": "0.23", "LONGITUDE": -64.87598402, "LATITUDE": 18.33833475, "OBJECTID_1": 23364, "PARCEL_NO_": "105703092800", "Tax_Legal_": "ANNAS RETREAT 173A-49 NEW QTR.", "Name": "CALLWOOD, ALLEGRA", "Address": "PO Box 502516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26200, "Improved_V": 153100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.27762149599999, "SHAPE_Area": 1036.98772042 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364630.817100003361702, 256609.872699998319149 ], [ 364616.619999997317791, 256572.603999998420477 ], [ 364614.25900000333786, 256573.182199999690056 ], [ 364598.974500000476837, 256576.925200000405312 ], [ 364590.762299999594688, 256578.936299998313189 ], [ 364605.767499998211861, 256616.000500001013279 ], [ 364630.817100003361702, 256609.872699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703013700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-2580", "ACRE": ".128", "LONGITUDE": -64.88173813, "LATITUDE": 18.33837899, "OBJECTID_1": 22858, "PARCEL_NO_": "105703013700", "Tax_Legal_": "ANNAS RETREAT 148-280 NEW QTR", "Name": "STAPLETON, JAMES & CYNTHIA", "Address": "PO Box 306055", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 99100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.767175365, "SHAPE_Area": 584.57566314300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364008.613600000739098, 256573.116200000047684 ], [ 363985.043600000441074, 256594.877000000327826 ], [ 364004.270999997854233, 256609.599800001829863 ], [ 364007.487300001084805, 256610.681600000709295 ], [ 364011.527800001204014, 256609.659200001507998 ], [ 364013.971900001168251, 256606.723900001496077 ], [ 364011.725599996745586, 256586.440600000321865 ], [ 364008.613600000739098, 256573.116200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703022400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-125", "ACRE": ".143", "LONGITUDE": -64.8802768, "LATITUDE": 18.33837345, "OBJECTID_1": 22926, "PARCEL_NO_": "105703022400", "Tax_Legal_": "148-125 ANNAS RETREAT NEW QUARTER", "Name": "FRANKLIN, HUGO E. & JOYCE", "Address": "7051 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 351800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.166122441, "SHAPE_Area": 603.04458458500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364172.196199998259544, 256586.065200001001358 ], [ 364144.007600001990795, 256582.034800000488758 ], [ 364142.310500003397465, 256591.942299999296665 ], [ 364139.8412000015378, 256597.832699999213219 ], [ 364167.952399998903275, 256610.939500000327826 ], [ 364169.642399996519089, 256601.876299999654293 ], [ 364172.196199998259544, 256586.065200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032200", "MAP": "D9-936-T70", "PARCEL_NAM": "173-94", "ACRE": null, "LONGITUDE": -64.87761578, "LATITUDE": 18.33835005, "OBJECTID_1": 22978, "PARCEL_NO_": "105703032200", "Tax_Legal_": "173-94 ANNAS RETREAT NEW QTR", "Name": "DANIEL, F & GLASFORD, V", "Address": "7757 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 90000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.926468535799998, "SHAPE_Area": 449.176679541 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364449.414800003170967, 256606.276999998837709 ], [ 364442.397200003266335, 256578.144200000911951 ], [ 364427.845799997448921, 256582.458000000566244 ], [ 364434.057099997997284, 256610.584300000220537 ], [ 364449.414800003170967, 256606.276999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88592953, "LATITUDE": 18.33830006, "OBJECTID_1": 21686, "PARCEL_NO_": "105604021100", "Tax_Legal_": "ANNAS RETREAT 148-310 NEW QTR", "Name": "BROWNE, SHAWAMBI", "Address": "7380 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18800, "Improved_V": 99300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.86418490299999, "SHAPE_Area": 658.87394227799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363555.740000002086163, 256559.5472999997437 ], [ 363550.487000003457069, 256585.938200000673532 ], [ 363547.819300003349781, 256599.340599998831749 ], [ 363550.367399998009205, 256599.974199999123812 ], [ 363564.978399999439716, 256601.925200000405312 ], [ 363566.938100002706051, 256589.669700000435114 ], [ 363571.141699999570847, 256563.381999999284744 ], [ 363568.79110000282526, 256562.9989 ], [ 363562.644299998879433, 256561.599800001829863 ], [ 363555.740000002086163, 256559.5472999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88576718, "LATITUDE": 18.33832246, "OBJECTID_1": 21687, "PARCEL_NO_": "105604021200", "Tax_Legal_": "148-309 ANNAS RETREAT NEW QTR", "Name": "HOBSON, LUCILLE R", "Address": "PO Box 7582", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 17600, "Improved_V": 102200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.95407099099999, "SHAPE_Area": 692.64367982099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363571.141699999570847, 256563.381999999284744 ], [ 363566.938100002706051, 256589.669700000435114 ], [ 363564.978399999439716, 256601.925200000405312 ], [ 363568.892800003290176, 256602.447900000959635 ], [ 363585.225000001490116, 256602.581599999219179 ], [ 363585.734899997711182, 256591.203099999576807 ], [ 363586.916500002145767, 256564.831199999898672 ], [ 363583.647200003266335, 256564.689699999988079 ], [ 363577.37863527162699, 256564.187085836369079 ], [ 363571.141699999570847, 256563.381999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88558747, "LATITUDE": 18.33831706, "OBJECTID_1": 21688, "PARCEL_NO_": "105604021300", "Tax_Legal_": "ANNAS RETREAT 148-308 NEW QTR", "Name": "BUKLE, MERCELINA, E. L. & C", "Address": "7378 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 108600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.713012737, "SHAPE_Area": 736.09567582700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363595.104000002145767, 256564.824599999934435 ], [ 363586.916500002145767, 256564.831199999898672 ], [ 363585.734899997711182, 256591.203099999576807 ], [ 363585.225000001490116, 256602.581599999219179 ], [ 363586.631700001657009, 256602.593100000172853 ], [ 363605.499300003051758, 256601.562699999660254 ], [ 363605.726499997079372, 256593.406399998813868 ], [ 363606.24040000140667, 256565.282999999821186 ], [ 363601.966700002551079, 256565.096500001847744 ], [ 363595.104000002145767, 256564.824599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88541276, "LATITUDE": 18.33831623, "OBJECTID_1": 21689, "PARCEL_NO_": "105604021400", "Tax_Legal_": "148-307 ANNAS RETREAT NEW QTR", "Name": "LATIFF, ANGELA", "Address": "PO Box 11146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 76200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.10144675700001, "SHAPE_Area": 605.17081511699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363606.24040000140667, 256565.282999999821186 ], [ 363605.726499997079372, 256593.406399998813868 ], [ 363605.499300003051758, 256601.562699999660254 ], [ 363606.800300002098083, 256601.491599999368191 ], [ 363623.741899996995926, 256600.574799999594688 ], [ 363622.395400002598763, 256569.321899998933077 ], [ 363622.256599999964237, 256566.099300000816584 ], [ 363606.24040000140667, 256565.282999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703092700", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-48", "ACRE": "0.23", "LONGITUDE": -64.87574773, "LATITUDE": 18.3382787, "OBJECTID_1": 23363, "PARCEL_NO_": "105703092700", "Tax_Legal_": "ANNAS RETREAT 173-A-48 NEW QTR.", "Name": "HAZELWOOD, LULETTA & DENISE D", "Address": "405 Windmont Dr", "City": "Atlanta", "State": "Georgia", "Zip": 30329, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.13104948, "SHAPE_Area": 1008.65053734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364654.237999998033047, 256605.631400000303984 ], [ 364642.475900001823902, 256566.482799999415874 ], [ 364628.51349999755621, 256569.78830000013113 ], [ 364616.619999997317791, 256572.603999998420477 ], [ 364630.817100003361702, 256609.872699998319149 ], [ 364654.237999998033047, 256605.631400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-2", "ACRE": "0.13", "LONGITUDE": -64.87940306, "LATITUDE": 18.33838823, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.977456358, "SHAPE_Area": 591.04348845899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364271.582000002264977, 256602.495400000363588 ], [ 364252.876999996602535, 256581.652699999511242 ], [ 364246.362499997019768, 256588.361000001430511 ], [ 364223.692299999296665, 256599.152300000190735 ], [ 364233.332099996507168, 256603.453000001609325 ], [ 364247.824100002646446, 256606.104800000786781 ], [ 364256.69539999961853, 256605.966299999505281 ], [ 364265.577399998903275, 256604.561299998313189 ], [ 364271.237700000405312, 256602.707800000905991 ], [ 364271.582000002264977, 256602.495400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88609333, "LATITUDE": 18.3382711, "OBJECTID_1": 21685, "PARCEL_NO_": "105604021000", "Tax_Legal_": "ANNAS RETREAT 148-311 NEW QTR", "Name": "BOYNES, LORI", "Address": "P O BOX 4106", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18800, "Improved_V": 185800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.06355090700001, "SHAPE_Area": 759.693000418 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363541.456600002944469, 256555.342999998480082 ], [ 363531.481899999082088, 256580.276799999177456 ], [ 363526.937299996614456, 256593.537399999797344 ], [ 363531.055500000715256, 256595.172100000083447 ], [ 363547.819300003349781, 256599.340599998831749 ], [ 363550.487000003457069, 256585.938200000673532 ], [ 363555.740000002086163, 256559.5472999997437 ], [ 363553.564900003373623, 256558.790399998426437 ], [ 363553.023699998855591, 256558.593899998813868 ], [ 363553.008699998259544, 256558.588300000876188 ], [ 363550.727099999785423, 256557.75899999961257 ], [ 363546.137682070722803, 256556.37513650621986 ], [ 363541.456600002944469, 256555.342999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88524675, "LATITUDE": 18.33830625, "OBJECTID_1": 21690, "PARCEL_NO_": "105604021500", "Tax_Legal_": "148-306 ANNAS RETREAT NEW QTR", "Name": "GEORGE, CAROL & ELTON & ELLIA SIMON", "Address": "PO Box 502482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20200, "Improved_V": 186900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.415396712, "SHAPE_Area": 617.57691474199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363640.164800003170967, 256565.878699999302626 ], [ 363640.11089999973774, 256564.504000000655651 ], [ 363638.879399999976158, 256564.586399998515844 ], [ 363630.602702304953709, 256565.724137245444581 ], [ 363622.256599999964237, 256566.099300000816584 ], [ 363622.395400002598763, 256569.321899998933077 ], [ 363623.741899996995926, 256600.574799999594688 ], [ 363641.489699997007847, 256599.664599999785423 ], [ 363640.164800003170967, 256565.878699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88507384, "LATITUDE": 18.33830065, "OBJECTID_1": 21691, "PARCEL_NO_": "105604021600", "Tax_Legal_": "ANNAS RETREAT 148-305 NEW QTR", "Name": "MAHONEY, EULALIE & R & BOYNES, J", "Address": "PO Box 1206", "City": "ST. JOHN", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 20200, "Improved_V": 95600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.171727426, "SHAPE_Area": 646.16292569899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363658.768399998545647, 256565.758600000292063 ], [ 363640.116999998688698, 256564.659299999475479 ], [ 363640.164800003170967, 256565.878699999302626 ], [ 363641.489699997007847, 256599.664599999785423 ], [ 363660.850199997425079, 256598.767499998211861 ], [ 363658.768399998545647, 256565.758600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032300", "MAP": "D9-936-T70", "PARCEL_NAM": "173-95", "ACRE": null, "LONGITUDE": -64.87748141, "LATITUDE": 18.33830891, "OBJECTID_1": 22979, "PARCEL_NO_": "105703032300", "Tax_Legal_": "ANNAS RETREAT 173-95 NEW QTR", "Name": "CODRINGTON, JUANITA", "Address": "7756 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 83900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.346072898100005, "SHAPE_Area": 411.47567854800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364462.348200000822544, 256602.583200000226498 ], [ 364456.945000000298023, 256574.252500001341105 ], [ 364442.397200003266335, 256578.144200000911951 ], [ 364449.414800003170967, 256606.276999998837709 ], [ 364462.348200000822544, 256602.583200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604011700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-3", "ACRE": "0.13", "LONGITUDE": -64.88677566, "LATITUDE": 18.33833593, "OBJECTID_1": 21595, "PARCEL_NO_": "105604011700", "Tax_Legal_": "148-3 ANNAS RETREAT NEW QTR", "Name": "HODGE, EDWIN & LELONA", "Address": "PO Box 11721", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 160600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.451351047499998, "SHAPE_Area": 558.02511599000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363485.997299998998642, 256583.61540000140667 ], [ 363477.178199999034405, 256577.632599998265505 ], [ 363457.903999999165535, 256568.397799998521805 ], [ 363456.892700001597404, 256592.454199999570847 ], [ 363485.074100002646446, 256597.328899998217821 ], [ 363485.997299998998642, 256583.61540000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604021700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-304", "ACRE": null, "LONGITUDE": -64.88484974000001, "LATITUDE": 18.33827673, "OBJECTID_1": 21692, "PARCEL_NO_": "105604021700", "Tax_Legal_": "148-304 ANNAS RETREAT NEW QTR", "Name": "THOMAS, ELOUISE", "Address": "17201 NW 32 Ct", "City": "Miami Gardens", "State": "Florida", "Zip": 33056, "Country": "United States", "Land_Value": 26300, "Improved_V": 110600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.241316521, "SHAPE_Area": 947.03396763399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363692.600299999117851, 256563.352600000798702 ], [ 363658.718999996781349, 256564.975099999457598 ], [ 363660.850199997425079, 256598.767499998211861 ], [ 363679.404399998486042, 256597.863899998366833 ], [ 363681.834100000560284, 256596.617300000041723 ], [ 363683.464699998497963, 256594.51969999819994 ], [ 363688.430299997329712, 256579.572700001299381 ], [ 363692.600299999117851, 256563.352600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703016600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-224", "ACRE": ".135", "LONGITUDE": -64.88116035, "LATITUDE": 18.33833996, "OBJECTID_1": 22887, "PARCEL_NO_": "105703016600", "Tax_Legal_": "ANNAS RETREAT 148-224 NEW QTR", "Name": "WILLIAMS, BERNARD", "Address": "7000 Bovoni Housing", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 47300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.113083792099999, "SHAPE_Area": 348.41497568099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364079.427100002765656, 256590.37220000103116 ], [ 364077.094499997794628, 256580.220600001513958 ], [ 364048.803400002419949, 256588.221700001507998 ], [ 364049.579099997878075, 256591.816599998623133 ], [ 364052.725299999117851, 256601.130499999970198 ], [ 364079.427100002765656, 256590.37220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703021500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-172", "ACRE": ".143", "LONGITUDE": -64.88079203, "LATITUDE": 18.33830326, "OBJECTID_1": 22917, "PARCEL_NO_": "105703021500", "Tax_Legal_": "ANNAS RETREAT 148-172 NEW QTR", "Name": "MITCHAM, CHERYL", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20800, "Improved_V": 142600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.84161973499999, "SHAPE_Area": 642.87176368400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364111.844999998807907, 256571.216899998486042 ], [ 364085.971100002527237, 256579.448899999260902 ], [ 364091.473200000822544, 256596.170299999415874 ], [ 364094.653499998152256, 256601.473600000143051 ], [ 364119.719300001859665, 256593.446199998259544 ], [ 364111.844999998807907, 256571.216899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704011600", "MAP": "F9-2702-T70", "PARCEL_NAM": "57V-8", "ACRE": "0.24", "LONGITUDE": -64.8719982, "LATITUDE": 18.33825849, "OBJECTID_1": 23462, "PARCEL_NO_": "105704011600", "Tax_Legal_": "SMITH BAY 57V-8 EAST END QTR", "Name": "HALLIDAY, JOSEPH A", "Address": "47 Passaic Ave", "City": "Hasbrouck Heights", "State": "New Jersey", "Zip": 7604, "Country": "United States", "Land_Value": 37400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.958283639, "SHAPE_Area": 807.77415149900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365038.377199999988079, 256569.511999998241663 ], [ 365013.984600000083447, 256581.957100000232458 ], [ 365026.750699996948242, 256609.102400001138449 ], [ 365050.234499998390675, 256597.473400000482798 ], [ 365038.377199999988079, 256569.511999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703070600", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-71", "ACRE": ".15", "LONGITUDE": -64.88000142, "LATITUDE": 18.33831913, "OBJECTID_1": 23222, "PARCEL_NO_": "105703070600", "Tax_Legal_": "173-71 ANNAS RETREAT NEW QUARTER", "Name": "STEVENS (LIFE ESTATE), HATTIE", "Address": "173-71 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18800, "Improved_V": 101400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.479276035, "SHAPE_Area": 557.25814926400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364206.892800003290176, 256583.393899999558926 ], [ 364173.070799998939037, 256578.050799999386072 ], [ 364172.196199998259544, 256586.065200001001358 ], [ 364169.642399996519089, 256601.876299999654293 ], [ 364207.634400002658367, 256590.999299999326468 ], [ 364206.892800003290176, 256583.393899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703092600", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-47", "ACRE": "0.23", "LONGITUDE": -64.87552537000001, "LATITUDE": 18.33823775, "OBJECTID_1": 23362, "PARCEL_NO_": "105703092600", "Tax_Legal_": "ANNAS RETREAT 173A-47 NEW QTR.", "Name": "LAWRENCE, CHARLES & JULIETTE", "Address": "501 Glen Crst", "City": "Stockbridge", "State": "Georgia", "Zip": 30281, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.71930039599999, "SHAPE_Area": 927.88582212100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364676.85249999910593, 256601.383499998599291 ], [ 364664.287699997425079, 256561.806200001388788 ], [ 364657.016500003635883, 256563.435400001704693 ], [ 364642.475900001823902, 256566.482799999415874 ], [ 364654.237999998033047, 256605.631400000303984 ], [ 364676.85249999910593, 256601.383499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703015300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-237", "ACRE": ".132", "LONGITUDE": -64.88143782, "LATITUDE": 18.33832555, "OBJECTID_1": 22874, "PARCEL_NO_": "105703015300", "Tax_Legal_": "148-237 ESTATE ANNA'S RETREAT NEW QTR", "Name": "LIBURD, BERNARD & ROSALIND V", "Address": "7372 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 124500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.669916773599994, "SHAPE_Area": 430.79464534099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364048.803400002419949, 256588.221700001507998 ], [ 364045.675300002098083, 256576.796999998390675 ], [ 364020.614799998700619, 256584.191300000995398 ], [ 364020.571699999272823, 256589.257199998944998 ], [ 364022.898900002241135, 256600.041999999433756 ], [ 364049.579099997878075, 256591.816599998623133 ], [ 364048.803400002419949, 256588.221700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88625128, "LATITUDE": 18.33822275, "OBJECTID_1": 21684, "PARCEL_NO_": "105604020900", "Tax_Legal_": "ANNAS RETREAT 148-312 NEW QTR", "Name": "BENJAMIN, BRENDA", "Address": "7382 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18800, "Improved_V": 89000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.140482377, "SHAPE_Area": 649.8042426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363526.809900000691414, 256551.943799998611212 ], [ 363512.683600001037121, 256580.524599999189377 ], [ 363509.709200002253056, 256586.542599998414516 ], [ 363510.964199997484684, 256587.197200000286102 ], [ 363526.937299996614456, 256593.537399999797344 ], [ 363531.481899999082088, 256580.276799999177456 ], [ 363541.456600002944469, 256555.342999998480082 ], [ 363540.420100003480911, 256555.164599999785423 ], [ 363540.402699999511242, 256555.161800000816584 ], [ 363537.848099999129772, 256554.796799998730421 ], [ 363535.158500000834465, 256554.350400000810623 ], [ 363535.146200001239777, 256554.347899999469519 ], [ 363532.243100002408028, 256553.690900001674891 ], [ 363526.809900000691414, 256551.943799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032400", "MAP": "D9-936-T70", "PARCEL_NAM": "173-96", "ACRE": null, "LONGITUDE": -64.87734343, "LATITUDE": 18.33827455, "OBJECTID_1": 22980, "PARCEL_NO_": "105703032400", "Tax_Legal_": "ANNAS RETREAT 173-96&173A-90 NEW QTR", "Name": "HODGE, LEONA", "Address": "7754 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 71100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.468378119500002, "SHAPE_Area": 457.175983874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364477.704099997878075, 256598.486999999731779 ], [ 364472.300899997353554, 256570.156300000846386 ], [ 364456.945000000298023, 256574.252500001341105 ], [ 364462.348200000822544, 256602.583200000226498 ], [ 364477.704099997878075, 256598.486999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703092300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87490541, "LATITUDE": 18.33819952, "OBJECTID_1": 23359, "PARCEL_NO_": "105703092300", "Tax_Legal_": "ANNAS RETREAT 173A-44 NEW QTR.", "Name": "BURKE, SHEILA", "Address": "PO Box 11035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30500, "Improved_V": 315200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.37122963799999, "SHAPE_Area": 944.05626229200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364739.730499997735023, 256603.586899999529123 ], [ 364729.658399999141693, 256555.375100001692772 ], [ 364716.7466000020504, 256556.535999998450279 ], [ 364710.290700003504753, 256557.116500001400709 ], [ 364720.371799997985363, 256604.272799998521805 ], [ 364730.850199997425079, 256604.780799999833107 ], [ 364739.730499997735023, 256603.586899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604021800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-265", "ACRE": ".163", "LONGITUDE": -64.88449268, "LATITUDE": 18.33831566, "OBJECTID_1": 21693, "PARCEL_NO_": "105604021800", "Tax_Legal_": "148-265 ANNAS RETREAT NEW QTR", "Name": "DESIRE, CHRISFORD and HUGUETE", "Address": "PO BOX 9309", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 241900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.28469598300001, "SHAPE_Area": 647.72299566000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363727.187200002372265, 256573.557100001722574 ], [ 363699.772600002586842, 256573.332699999213219 ], [ 363694.798100002110004, 256589.335099998861551 ], [ 363697.170199997723103, 256594.8429000005126 ], [ 363701.999099999666214, 256595.937899999320507 ], [ 363726.202899999916553, 256594.447299998253584 ], [ 363727.187200002372265, 256573.557100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703092400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87511446000001, "LATITUDE": 18.33820589, "OBJECTID_1": 23360, "PARCEL_NO_": "105703092400", "Tax_Legal_": "ANNAS RETREAT 173A-45 NEW QTR.", "Name": "MCTAVIOUS, ALEXANDER & LOENA", "Address": "PO Box 503153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053153, "Country": "United States", "Land_Value": 26200, "Improved_V": 188000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.214023897, "SHAPE_Area": 1118.26199073 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364710.290700003504753, 256557.116500001400709 ], [ 364702.220399998128414, 256557.894799999892712 ], [ 364686.887900002300739, 256559.246899999678135 ], [ 364692.98589999973774, 256600.67119999974966 ], [ 364720.371799997985363, 256604.272799998521805 ], [ 364710.290700003504753, 256557.116500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-1", "ACRE": "0.09", "LONGITUDE": -64.87922073, "LATITUDE": 18.3382918, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.813014305600007, "SHAPE_Area": 501.00600007999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364285.040399998426437, 256591.632800001651049 ], [ 364265.065999999642372, 256569.937800001353025 ], [ 364255.311099998652935, 256579.146099999547005 ], [ 364252.876999996602535, 256581.652699999511242 ], [ 364271.582000002264977, 256602.495400000363588 ], [ 364275.290899999439716, 256600.207899998873472 ], [ 364279.345799997448921, 256597.496800001710653 ], [ 364285.040399998426437, 256591.632800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704011300", "MAP": "F9-964-T62", "PARCEL_NAM": "57B-6", "ACRE": "0.38", "LONGITUDE": -64.87269283000001, "LATITUDE": 18.33824094, "OBJECTID_1": 23459, "PARCEL_NO_": "105704011300", "Tax_Legal_": "57B-6 ESTATE SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "WILLETT, K. & K. & GEORGE, H", "Address": "PO Box 11701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014701, "Country": "United States", "Land_Value": 63400, "Improved_V": 174700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.758306858, "SHAPE_Area": 1370.30854795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364977.738300003111362, 256588.436299998313189 ], [ 364967.47919999808073, 256562.176699999719858 ], [ 364956.151299998164177, 256566.728100001811981 ], [ 364935.138599999248981, 256572.25560000166297 ], [ 364949.368100002408028, 256605.724899999797344 ], [ 364952.284500002861023, 256613.436599999666214 ], [ 364981.937600001692772, 256598.307599999010563 ], [ 364977.738300003111362, 256588.436299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703092200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87470275, "LATITUDE": 18.33817625, "OBJECTID_1": 23358, "PARCEL_NO_": "105703092200", "Tax_Legal_": "ANNAS RETREAT 173A-31 NEW QTR", "Name": "PROCTOR, HURBERT & LYNETTE", "Address": "PO Box 502814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30500, "Improved_V": 182900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.71701291799999, "SHAPE_Area": 1123.5399447100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364766.426899999380112, 256593.461800001561642 ], [ 364749.836000002920628, 256553.218199998140335 ], [ 364747.415200002491474, 256553.409499999135733 ], [ 364729.658399999141693, 256555.375100001692772 ], [ 364739.730499997735023, 256603.586899999529123 ], [ 364746.19539999961853, 256601.951099999248981 ], [ 364757.530500002205372, 256596.555399999022484 ], [ 364766.426899999380112, 256593.461800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703058300", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-3", "ACRE": "0.15", "LONGITUDE": -64.87960048, "LATITUDE": 18.33828533, "OBJECTID_1": 23139, "PARCEL_NO_": "105703058300", "Tax_Legal_": "ANNAS RETREAT 173-3 NEW QTR", "Name": "WESSELHOFT, JAMES & LEANDER", "Address": "7505 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 115200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.817754908200001, "SHAPE_Area": 489.68756900400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364227.973800003528595, 256569.845300000160933 ], [ 364219.028800003230572, 256578.638000000268221 ], [ 364216.577500000596046, 256582.417700000107288 ], [ 364217.29389999806881, 256592.978199999779463 ], [ 364219.685900002717972, 256596.164200000464916 ], [ 364223.692299999296665, 256599.152300000190735 ], [ 364246.362499997019768, 256588.361000001430511 ], [ 364227.973800003528595, 256569.845300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703022500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-159", "ACRE": ".139", "LONGITUDE": -64.88057972, "LATITUDE": 18.33824399, "OBJECTID_1": 22927, "PARCEL_NO_": "105703022500", "Tax_Legal_": "148-159 ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "FLEMING (LIFE ESTATE), ILENE", "Address": "6210 Orange Blossom Lane", "City": "Rosenberg", "State": "Texas", "Zip": 774716682, "Country": "United States", "Land_Value": 19200, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.511105298199993, "SHAPE_Area": 515.303868513 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364130.161799997091293, 256598.175700001418591 ], [ 364134.303099997341633, 256585.332899998873472 ], [ 364135.229900002479553, 256571.197200000286102 ], [ 364133.674800001084805, 256564.429499998688698 ], [ 364111.844999998807907, 256571.216899998486042 ], [ 364119.719300001859665, 256593.446199998259544 ], [ 364130.161799997091293, 256598.175700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604011600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-2", "ACRE": "0.12", "LONGITUDE": -64.88700619, "LATITUDE": 18.33826987, "OBJECTID_1": 21594, "PARCEL_NO_": "105604011600", "Tax_Legal_": "148-2 ANNAS RETREAT NEW QTR", "Name": "JEANETTE I C SMITH REVOC TR", "Address": "PO Box 503183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20500, "Improved_V": 147800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.339998801899995, "SHAPE_Area": 592.15042645200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363457.903999999165535, 256568.397799998521805 ], [ 363435.39919999986887, 256559.769900001585484 ], [ 363435.151100002229214, 256588.898800000548363 ], [ 363456.892700001597404, 256592.454199999570847 ], [ 363457.903999999165535, 256568.397799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604021900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-266", "ACRE": ".206", "LONGITUDE": -64.88426295, "LATITUDE": 18.3381704, "OBJECTID_1": 21694, "PARCEL_NO_": "105604021900", "Tax_Legal_": "ANNAS RETREAT 148-266 NEW QTR", "Name": "VERONA E BROWNE REVOCABLE TRUST & JOS. I.", "Address": "PO Box 9822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31200, "Improved_V": 140900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.281419718, "SHAPE_Area": 892.65407004300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363745.56700000166893, 256593.128100000321865 ], [ 363743.581399999558926, 256542.238299999386072 ], [ 363729.902900002896786, 256538.7489 ], [ 363728.997599996626377, 256550.351599998772144 ], [ 363727.187200002372265, 256573.557100001722574 ], [ 363726.202899999916553, 256594.447299998253584 ], [ 363745.56700000166893, 256593.128100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703092500", "MAP": "D9-1606-T80", "PARCEL_NAM": "173A-46", "ACRE": "0.23", "LONGITUDE": -64.87533206000001, "LATITUDE": 18.33819553, "OBJECTID_1": 23361, "PARCEL_NO_": "105703092500", "Tax_Legal_": "ANNAS RETREAT 173A-46 NEW QTR.", "Name": "CLARK, MONIQUE L", "Address": "PO Box 305645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035645, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.368722908, "SHAPE_Area": 792.74111864099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364686.887900002300739, 256559.246899999678135 ], [ 364671.551700003445148, 256561.021299999207258 ], [ 364664.287699997425079, 256561.806200001388788 ], [ 364676.85249999910593, 256601.383499998599291 ], [ 364685.732699997723103, 256600.189599998295307 ], [ 364692.98589999973774, 256600.67119999974966 ], [ 364686.887900002300739, 256559.246899999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604022000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-267", "ACRE": ".194", "LONGITUDE": -64.88409981, "LATITUDE": 18.33817188, "OBJECTID_1": 21695, "PARCEL_NO_": "105604022000", "Tax_Legal_": "ANNAS RETREAT 148-267 NEW QTR", "Name": "FLANDERS, ZELDA", "Address": "7319 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 169300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.529925625, "SHAPE_Area": 848.22864131699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363750.821999996900558, 256544.197399999946356 ], [ 363743.581399999558926, 256542.238299999386072 ], [ 363745.56700000166893, 256593.128100000321865 ], [ 363764.123000003397465, 256592.013399999588728 ], [ 363760.478000000119209, 256546.598499998450279 ], [ 363750.821999996900558, 256544.197399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703013600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-279", "ACRE": ".138", "LONGITUDE": -64.88187243, "LATITUDE": 18.33824667, "OBJECTID_1": 22857, "PARCEL_NO_": "105703013600", "Tax_Legal_": "ANNAS RETREAT 148-279 NEW QTR", "Name": "GARVEY, DORIS & ROY", "Address": "7307 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.50344283299999, "SHAPE_Area": 576.152267198 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364008.613600000739098, 256573.116200000047684 ], [ 364005.451300002634525, 256565.701999999582767 ], [ 363990.088200002908707, 256570.642499998211861 ], [ 363982.021499998867512, 256570.998700000345707 ], [ 363967.416199997067451, 256581.644900001585484 ], [ 363973.832500003278255, 256585.708200000226498 ], [ 363985.043600000441074, 256594.877000000327826 ], [ 364008.613600000739098, 256573.116200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032500", "MAP": "D9-936-T70", "PARCEL_NAM": "173-97", "ACRE": ".10", "LONGITUDE": -64.8772018, "LATITUDE": 18.33824022, "OBJECTID_1": 22981, "PARCEL_NO_": "105703032500", "Tax_Legal_": "ANNAS RETREAT 173-97&173A-89 NEW QTR.", "Name": "DIXON, VIVIAN SCHNEIDER", "Address": "43182 Maple Cross St", "City": "SOUTH RIDING", "State": "Virginia", "Zip": 20152, "Country": "United States", "Land_Value": 17600, "Improved_V": 145100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.491360392999994, "SHAPE_Area": 431.13374082000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364493.060000002384186, 256594.390799999237061 ], [ 364486.038699999451637, 256566.680100001394749 ], [ 364472.300899997353554, 256570.156300000846386 ], [ 364477.704099997878075, 256598.486999999731779 ], [ 364493.060000002384186, 256594.390799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704035300", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173A-13", "ACRE": "0.34", "LONGITUDE": -64.87356571, "LATITUDE": 18.33814559, "OBJECTID_1": 23604, "PARCEL_NO_": "105704035300", "Tax_Legal_": "ANNAS RETREAT 173-A-13 NEW QTR.", "Name": "TODMAN, CLINTON, JR.", "Address": "PO Box 308429", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49000, "Improved_V": 73600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.103732151, "SHAPE_Area": 1327.4460290699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364889.895199999213219, 256582.440000001341105 ], [ 364876.462999999523163, 256550.032800000160933 ], [ 364857.829700000584126, 256560.223799999803305 ], [ 364844.068499997258186, 256566.443999998271465 ], [ 364856.670999996364117, 256601.588700000196695 ], [ 364889.895199999213219, 256582.440000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604022100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-268", "ACRE": ".172", "LONGITUDE": -64.88394182, "LATITUDE": 18.33817612, "OBJECTID_1": 21696, "PARCEL_NO_": "105604022100", "Tax_Legal_": "148-268 ANNAS RETREAT NEW QTR", "Name": "Monique Hamm & A. James", "Address": "7017 Sarvis St", "City": "Tampa", "State": "Florida", "Zip": 33637, "Country": "United States", "Land_Value": 24500, "Improved_V": 116900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.02675816199999, "SHAPE_Area": 671.55224524699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363777.378200002014637, 256550.536499999463558 ], [ 363760.478000000119209, 256546.598499998450279 ], [ 363764.123000003397465, 256592.013399999588728 ], [ 363778.645599998533726, 256591.076799999922514 ], [ 363777.378200002014637, 256550.536499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604011500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-1", "ACRE": "0.12", "LONGITUDE": -64.88719272, "LATITUDE": 18.33822348, "OBJECTID_1": 21593, "PARCEL_NO_": "105604011500", "Tax_Legal_": "148-1 ESTATE ANNAS RETREAT #1 NEW QTR", "Name": "MARTINEZ, ORLANDO", "Address": "3118 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 123700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.843644831899994, "SHAPE_Area": 529.34417537800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363435.39919999986887, 256559.769900001585484 ], [ 363416.089100003242493, 256554.756700001657009 ], [ 363419.048199996352196, 256586.022700000554323 ], [ 363435.151100002229214, 256588.898800000548363 ], [ 363435.39919999986887, 256559.769900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604022200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-269", "ACRE": ".150", "LONGITUDE": -64.88378684, "LATITUDE": 18.338193, "OBJECTID_1": 21697, "PARCEL_NO_": "105604022200", "Tax_Legal_": "148-269 ANNAS RETREAT NEW QTR", "Name": "Frank Odlum, Roy F & Rory R Reid", "Address": "PO Box 11777", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 115700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.10280087, "SHAPE_Area": 647.12658619599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363795.084700003266335, 256554.481100000441074 ], [ 363777.378200002014637, 256550.536499999463558 ], [ 363778.645599998533726, 256591.076799999922514 ], [ 363796.395199999213219, 256589.95549999922514 ], [ 363794.166900001466274, 256567.5614 ], [ 363795.084700003266335, 256554.481100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604022300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-270", "ACRE": ".144", "LONGITUDE": -64.8836136, "LATITUDE": 18.33820138, "OBJECTID_1": 21698, "PARCEL_NO_": "105604022300", "Tax_Legal_": "148-270 ANNAS RETREAT NEW QTR", "Name": "MARKS, ALVIN & EVELYN", "Address": "PO Box 7283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21800, "Improved_V": 132300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.88217751000001, "SHAPE_Area": 651.89422737500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363797.5, 256554.923000000417233 ], [ 363795.084700003266335, 256554.481100000441074 ], [ 363794.166900001466274, 256567.5614 ], [ 363796.395199999213219, 256589.95549999922514 ], [ 363816.572800002992153, 256587.798599999397993 ], [ 363812.803800001740456, 256556.948100000619888 ], [ 363797.5, 256554.923000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88640654, "LATITUDE": 18.33815976, "OBJECTID_1": 21683, "PARCEL_NO_": "105604020800", "Tax_Legal_": "148-313 ANNAS RETREAT NEW QTR", "Name": "WALTERS, GEORGIANA", "Address": "PO Box 303576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.495006629, "SHAPE_Area": 721.80158030200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363526.809900000691414, 256551.943799998611212 ], [ 363510.225500002503395, 256545.060100000351667 ], [ 363498.684000000357628, 256565.001800000667572 ], [ 363491.906300000846386, 256576.712400000542402 ], [ 363494.105400003492832, 256578.404399998486042 ], [ 363509.709200002253056, 256586.542599998414516 ], [ 363512.683600001037121, 256580.524599999189377 ], [ 363526.809900000691414, 256551.943799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105604011400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-323", "ACRE": "0.11", "LONGITUDE": -64.88738572, "LATITUDE": 18.33816156, "OBJECTID_1": 21591, "PARCEL_NO_": "105604011400", "Tax_Legal_": "148-323 ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "RHYMER (TRUSTEE), BRYCE W.", "Address": "PO Box 653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42500, "Improved_V": 114800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.451294014, "SHAPE_Area": 601.34212793899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363416.089100003242493, 256554.756700001657009 ], [ 363389.520300000905991, 256549.895199999213219 ], [ 363386.284299999475479, 256551.135200001299381 ], [ 363387.061800003051758, 256554.519099999219179 ], [ 363413.411200001835823, 256585.132199998944998 ], [ 363419.048199996352196, 256586.022700000554323 ], [ 363416.089100003242493, 256554.756700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032600", "MAP": "D9-936-T70", "PARCEL_NAM": "173-98", "ACRE": null, "LONGITUDE": -64.87706357, "LATITUDE": 18.33820115, "OBJECTID_1": 22982, "PARCEL_NO_": "105703032600", "Tax_Legal_": "ANNAS RETREAT 173-98 NEW QTR", "Name": "EVELYN A HODGE REVOC FAM TRUST & DEREK HODGE", "Address": "4624 Eagles Wing Ct", "City": "Lithonia", "State": "Georgia", "Zip": 30038, "Country": "United States", "Land_Value": 13700, "Improved_V": 93600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.470844859799996, "SHAPE_Area": 436.83682007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364507.609600000083447, 256590.287999998778105 ], [ 364501.391000002622604, 256563.006099998950958 ], [ 364486.038699999451637, 256566.680100001394749 ], [ 364493.060000002384186, 256594.390799999237061 ], [ 364507.609600000083447, 256590.287999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604022400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-271", "ACRE": ".127", "LONGITUDE": -64.88343174000001, "LATITUDE": 18.33819251, "OBJECTID_1": 21699, "PARCEL_NO_": "105604022400", "Tax_Legal_": "ANNAS RETREAT 148-271 NEW QTR", "Name": "DE FOE, VERONIQUE", "Address": "7315 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 95800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.1589373053, "SHAPE_Area": 545.34480932899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363835.145000003278255, 256584.784200001507998 ], [ 363831.354400001466274, 256556.466699998825788 ], [ 363820.859700001776218, 256557.858399998396635 ], [ 363812.803800001740456, 256556.948100000619888 ], [ 363816.572800002992153, 256587.798599999397993 ], [ 363835.145000003278255, 256584.784200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703050300", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-224", "ACRE": "0.09", "LONGITUDE": -64.87912151, "LATITUDE": 18.33819694, "OBJECTID_1": 23059, "PARCEL_NO_": "105703050300", "Tax_Legal_": "ANNAS RETREAT 173-224 NEW QTR", "Name": "SMITH, LEROY & MARILYN", "Address": "7836 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 71800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.458302790299996, "SHAPE_Area": 380.26497375299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364294.148500002920628, 256583.308800000697374 ], [ 364273.836300000548363, 256560.363499999046326 ], [ 364266.694799996912479, 256568.051300000399351 ], [ 364265.065999999642372, 256569.937800001353025 ], [ 364285.040399998426437, 256591.632800001651049 ], [ 364294.148500002920628, 256583.308800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704011800", "MAP": "F9-2703-T70", "PARCEL_NAM": "57V-9", "ACRE": "0.25", "LONGITUDE": -64.87171035, "LATITUDE": 18.33813644, "OBJECTID_1": 23464, "PARCEL_NO_": "105704011800", "Tax_Legal_": "SMITH BAY 57V-9 EAST END QTR", "Name": "SYLVESTER, GERALD & SHEQUEEDA A.", "Address": "PO Box 306076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.95733208199999, "SHAPE_Area": 1099.6252361700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365087.481299996376038, 256579.413100000470877 ], [ 365078.800700001418591, 256557.177200000733137 ], [ 365062.625900000333786, 256562.74439999833703 ], [ 365058.583499997854233, 256563.977800000458956 ], [ 365038.377199999988079, 256569.511999998241663 ], [ 365050.234499998390675, 256597.473400000482798 ], [ 365075.343500003218651, 256584.379999998956919 ], [ 365087.481299996376038, 256579.413100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703016700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-223", "ACRE": ".133", "LONGITUDE": -64.88120224, "LATITUDE": 18.338174, "OBJECTID_1": 22888, "PARCEL_NO_": "105703016700", "Tax_Legal_": "ANNAS RETREAT 148-223 NEW QTR", "Name": "LEONARD, MURCIA M. & MUREIL M.", "Address": "64-28 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 117900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.453153239, "SHAPE_Area": 753.76350043399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364077.094499997794628, 256580.220600001513958 ], [ 364069.252499997615814, 256554.191899999976158 ], [ 364041.744400002062321, 256564.943599998950958 ], [ 364045.675300002098083, 256576.796999998390675 ], [ 364048.803400002419949, 256588.221700001507998 ], [ 364077.094499997794628, 256580.220600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704036100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87449556, "LATITUDE": 18.33811055, "OBJECTID_1": 23611, "PARCEL_NO_": "105704036100", "Tax_Legal_": "ANNAS RETREAT 173A-30 NEW QTR.", "Name": "OSBORNE (LIFE ESTATE), AUDLEY & VENETTA", "Address": "BOX 4402", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28900, "Improved_V": 67600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.220033911, "SHAPE_Area": 887.71509987000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364785.031400002539158, 256586.647999998182058 ], [ 364774.046899996697903, 256550.883299998939037 ], [ 364759.520700000226498, 256552.241999998688698 ], [ 364749.836000002920628, 256553.218199998140335 ], [ 364766.426899999380112, 256593.461800001561642 ], [ 364780.168399997055531, 256589.563499998301268 ], [ 364785.031400002539158, 256586.647999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703058200", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-4", "ACRE": "0.10", "LONGITUDE": -64.87947754, "LATITUDE": 18.33818103, "OBJECTID_1": 23138, "PARCEL_NO_": "105703058200", "Tax_Legal_": "173-4 ANNAS RETREAT NEW QUARTER", "Name": "POPE, KENT & CARABALLO, ELVI", "Address": "PO BOX 11718", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19100, "Improved_V": 81000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.124312378599996, "SHAPE_Area": 354.03235754600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364255.311099998652935, 256579.146099999547005 ], [ 364238.542199999094009, 256559.799300000071526 ], [ 364227.973800003528595, 256569.845300000160933 ], [ 364246.362499997019768, 256588.361000001430511 ], [ 364255.311099998652935, 256579.146099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604022500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-272", "ACRE": ".126", "LONGITUDE": -64.88324524, "LATITUDE": 18.33816513, "OBJECTID_1": 21700, "PARCEL_NO_": "105604022500", "Tax_Legal_": "148-272 ANNAS RETREAT NEW QTR", "Name": "LEADER, WYCLIFFE & ZORA & JACINTH", "Address": "P. O. BOX 3341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 168000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.837043413299995, "SHAPE_Area": 595.04360260099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363857.764899998903275, 256579.903099998831749 ], [ 363849.931900002062321, 256552.818999998271465 ], [ 363841.854400001466274, 256554.441700000315905 ], [ 363831.354400001466274, 256556.466699998825788 ], [ 363835.145000003278255, 256584.784200001507998 ], [ 363857.764899998903275, 256579.903099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032700", "MAP": "D9-936-T70", "PARCEL_NAM": "173-99", "ACRE": "0.10", "LONGITUDE": -64.87691944, "LATITUDE": 18.33816786, "OBJECTID_1": 22983, "PARCEL_NO_": "105703032700", "Tax_Legal_": "ANNAS RETREAT 173-99 NEW QTR", "Name": "BRUNN, D. & MERRIT, D., R. LINZY, C. DAVIS, JR. & D. DAVIS", "Address": "1300 Hoe Ave", "City": "Bronx", "State": "New York", "Zip": 10459, "Country": "United States", "Land_Value": 13300, "Improved_V": 74800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.649584965800003, "SHAPE_Area": 443.05007481899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364523.771799996495247, 256586.198499999940395 ], [ 364515.936999998986721, 256559.325399998575449 ], [ 364501.391000002622604, 256563.006099998950958 ], [ 364507.609600000083447, 256590.287999998778105 ], [ 364523.771799996495247, 256586.198499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703022600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-126", "ACRE": ".148", "LONGITUDE": -64.8802518, "LATITUDE": 18.33818586, "OBJECTID_1": 22928, "PARCEL_NO_": "105703022600", "Tax_Legal_": "ANNAS RETREAT 148-126 NEW QTR", "Name": "GEORGES, MARILYN", "Address": "PO Box 364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20500, "Improved_V": 167600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.52190658000001, "SHAPE_Area": 586.10842750699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364173.070799998939037, 256578.050799999386072 ], [ 364174.827299997210503, 256561.177700001746416 ], [ 364143.327200002968311, 256567.252700001001358 ], [ 364144.117299996316433, 256569.159000001847744 ], [ 364144.007600001990795, 256582.034800000488758 ], [ 364172.196199998259544, 256586.065200001001358 ], [ 364173.070799998939037, 256578.050799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703015200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-238", "ACRE": ".130", "LONGITUDE": -64.88147561, "LATITUDE": 18.33816811, "OBJECTID_1": 22873, "PARCEL_NO_": "105703015200", "Tax_Legal_": "ANNAS RETREAT 148-238 NEW QTR", "Name": "DUNLOP, HELEN", "Address": "PO Box 152", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 17800, "Improved_V": 136000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.552573986900001, "SHAPE_Area": 509.601104711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364041.744400002062321, 256564.943599998950958 ], [ 364039.39919999986887, 256556.269600000232458 ], [ 364015.928000003099442, 256566.421100001782179 ], [ 364020.614799998700619, 256584.191300000995398 ], [ 364045.675300002098083, 256576.796999998390675 ], [ 364041.744400002062321, 256564.943599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88655966, "LATITUDE": 18.33807022, "OBJECTID_1": 21682, "PARCEL_NO_": "105604020700", "Tax_Legal_": "148-314 ANNAS RETREAT NEW QTR", "Name": "THOMAS, LEAH", "Address": "PO BOX 9072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18800, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.331713724, "SHAPE_Area": 688.15870406500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363510.225500002503395, 256545.060100000351667 ], [ 363495.457900002598763, 256533.859400000423193 ], [ 363480.478299997746944, 256559.386500000953674 ], [ 363475.954000003635883, 256567.096500001847744 ], [ 363478.065399996936321, 256568.140599999576807 ], [ 363486.895300000905991, 256572.85700000077486 ], [ 363491.906300000846386, 256576.712400000542402 ], [ 363498.684000000357628, 256565.001800000667572 ], [ 363510.225500002503395, 256545.060100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703013500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-278", "ACRE": ".119", "LONGITUDE": -64.88208759, "LATITUDE": 18.3381439, "OBJECTID_1": 22856, "PARCEL_NO_": "105703013500", "Tax_Legal_": "148-278 ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "LIBURD, MERYL", "Address": "PO Box 304231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 110400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.553940492600006, "SHAPE_Area": 522.10980756399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363974.051899999380112, 256559.956599999219179 ], [ 363970.851800002157688, 256556.975099999457598 ], [ 363960.414700001478195, 256551.612399999052286 ], [ 363951.358300000429153, 256573.491999998688698 ], [ 363967.416199997067451, 256581.644900001585484 ], [ 363982.021499998867512, 256570.998700000345707 ], [ 363976.451099999248981, 256562.298300001770258 ], [ 363974.051899999380112, 256559.956599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032800", "MAP": "G9-1681-T70", "PARCEL_NAM": "173-100", "ACRE": "0.10", "LONGITUDE": -64.87678123000001, "LATITUDE": 18.33812934, "OBJECTID_1": 22984, "PARCEL_NO_": "105703032800", "Tax_Legal_": "173-100 ANNAS RETREAT NEW QUARTER", "Name": "RUSSELL, DEBORAH ALICIA", "Address": "173-100 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 164800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.9927728766, "SHAPE_Area": 407.39267091200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364537.511500000953674, 256582.511199999600649 ], [ 364530.483000002801418, 256555.644799999892712 ], [ 364515.936999998986721, 256559.325399998575449 ], [ 364523.771799996495247, 256586.198499999940395 ], [ 364537.511500000953674, 256582.511199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703070700", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-70", "ACRE": ".14", "LONGITUDE": -64.87996667, "LATITUDE": 18.33816363, "OBJECTID_1": 23223, "PARCEL_NO_": "105703070700", "Tax_Legal_": "ANNAS RETREAT 173-70 NEW QTR", "Name": "JACOBS, ANNETTE M., JACQUELINE B., ALUWYN R., & LEAH O.", "Address": "PO Box 10767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 137800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.331970314, "SHAPE_Area": 608.06606222799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364210.188199996948242, 256575.188200000673532 ], [ 364191.776000000536442, 256559.416600000113249 ], [ 364174.827299997210503, 256561.177700001746416 ], [ 364173.070799998939037, 256578.050799999386072 ], [ 364206.892800003290176, 256583.393899999558926 ], [ 364210.188199996948242, 256575.188200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-150", "ACRE": "0.10", "LONGITUDE": -64.87828609, "LATITUDE": 18.33815007, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.023418837099996, "SHAPE_Area": 286.522176393 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364371.126800000667572, 256560.018399998545647 ], [ 364355.3800999969244, 256565.294799998402596 ], [ 364355.044600002467632, 256565.457899998873472 ], [ 364354.854699999094009, 256565.470800001174212 ], [ 364354.891099996864796, 256565.611400000751019 ], [ 364358.116400003433228, 256569.602099999785423 ], [ 364365.978799998760223, 256579.330099999904633 ], [ 364368.568499997258186, 256582.534299999475479 ], [ 364378.111299999058247, 256584.2804000005126 ], [ 364371.126800000667572, 256560.018399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604022600", "MAP": "148-273", "PARCEL_NAM": "A9-60-T66", "ACRE": ".126", "LONGITUDE": -64.88305808, "LATITUDE": 18.33811899, "OBJECTID_1": 21701, "PARCEL_NO_": "105604022600", "Tax_Legal_": "ANNAS RETREAT 148-273 NEW QTR", "Name": "BAIRD, GORDON J.&GERMAINE J.", "Address": "PO Box 10185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 55200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.437301765599997, "SHAPE_Area": 542.36552391199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363877.168499998748302, 256573.940200001001358 ], [ 363869.3175999969244, 256548.966899998486042 ], [ 363863.662600003182888, 256550.187199998646975 ], [ 363849.931900002062321, 256552.818999998271465 ], [ 363857.764899998903275, 256579.903099998831749 ], [ 363877.168499998748302, 256573.940200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704011500", "MAP": "F9-965-T62", "PARCEL_NAM": "57B-7", "ACRE": "0.34", "LONGITUDE": -64.87237228, "LATITUDE": 18.33810247, "OBJECTID_1": 23461, "PARCEL_NO_": "105704011500", "Tax_Legal_": "SMITH BAY 57B 7 1 2 & 3 EAST END QTR", "Name": "MILLS, IVAN A.", "Address": "PO Box 502038", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 65100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.99373830299999, "SHAPE_Area": 1538.7533583899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365017.36089999973774, 256575.46169999986887 ], [ 365004.700900003314018, 256547.07149999961257 ], [ 364987.716099999845028, 256553.054200001060963 ], [ 364967.47919999808073, 256562.176699999719858 ], [ 364977.738300003111362, 256588.436299998313189 ], [ 364981.937600001692772, 256598.307599999010563 ], [ 365013.984600000083447, 256581.957100000232458 ], [ 365018.913500003516674, 256579.442400000989437 ], [ 365017.36089999973774, 256575.46169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704036000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87428521, "LATITUDE": 18.33805243, "OBJECTID_1": 23610, "PARCEL_NO_": "105704036000", "Tax_Legal_": "ANNAS RETREAT 173A-29 NEW QTR.", "Name": "LETTSOME, DUNCAN", "Address": "PO Box 10908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 299100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.328141149, "SHAPE_Area": 805.42187855700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364807.726800002157688, 256572.901599999517202 ], [ 364799.075000002980232, 256547.288400001823902 ], [ 364789.386699996888638, 256548.686799999326468 ], [ 364774.046899996697903, 256550.883299998939037 ], [ 364785.031400002539158, 256586.647999998182058 ], [ 364796.388099998235703, 256578.719399999827147 ], [ 364807.726800002157688, 256572.901599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703040500", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-148", "ACRE": "0.10", "LONGITUDE": -64.8780043, "LATITUDE": 18.33810912, "OBJECTID_1": 23004, "PARCEL_NO_": "105703040500", "Tax_Legal_": "ANNAS RETREAT 173-148 NEW QTR", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "66 Boetzberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 143000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.104841244699998, "SHAPE_Area": 433.28974832500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364402.28830000013113, 256553.540100000798702 ], [ 364402.107699997723103, 256552.796399999409914 ], [ 364395.350699998438358, 256553.836399998515844 ], [ 364386.307800002396107, 256555.228300001472235 ], [ 364386.935999996960163, 256557.214200001209974 ], [ 364393.971699997782707, 256583.236299999058247 ], [ 364408.523100003600121, 256578.922400001436472 ], [ 364402.28830000013113, 256553.540100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703021400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-171", "ACRE": ".142", "LONGITUDE": -64.88085806, "LATITUDE": 18.33811344, "OBJECTID_1": 22916, "PARCEL_NO_": "105703021400", "Tax_Legal_": "148-171 ANNA'S RETREAT No.1 NEW QTR.", "Name": "JOSEPH, BETTY & MILTON N", "Address": "7731 NW 31st St", "City": "Hollywood", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 20800, "Improved_V": 135100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.164772865900005, "SHAPE_Area": 557.08937446100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364111.844999998807907, 256571.216899998486042 ], [ 364105.56360000371933, 256551.322700001299381 ], [ 364080.497699998319149, 256559.35020000115037 ], [ 364085.971100002527237, 256579.448899999260902 ], [ 364111.844999998807907, 256571.216899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703032900", "MAP": "G9-1681-T70", "PARCEL_NAM": "173-101", "ACRE": "0.10", "LONGITUDE": -64.87664401000001, "LATITUDE": 18.33809332, "OBJECTID_1": 22985, "PARCEL_NO_": "105703032900", "Tax_Legal_": "ANNAS RETREAT 173-101 NEW QTR.", "Name": "VANTERPOOL, PATRICIA VENTURA-", "Address": "7744 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 98300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.946771085999998, "SHAPE_Area": 425.68911062400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364552.062899999320507, 256578.197399999946356 ], [ 364545.837099999189377, 256551.759700000286102 ], [ 364530.483000002801418, 256555.644799999892712 ], [ 364537.511500000953674, 256582.511199999600649 ], [ 364552.062899999320507, 256578.197399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703058100", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-5", "ACRE": "0.09", "LONGITUDE": -64.87937697, "LATITUDE": 18.3380909, "OBJECTID_1": 23137, "PARCEL_NO_": "105703058100", "Tax_Legal_": "ANNAS RETREAT 173-5 NEW QTR", "Name": "Janet Smith, Keith H Smith & Kevin A David", "Address": "11887 Wynnfield Lakes Cir", "City": "Jacksonville", "State": "Florida", "Zip": 32246, "Country": "United States", "Land_Value": 13400, "Improved_V": 110900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.068460114999993, "SHAPE_Area": 395.81672476900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364266.694799996912479, 256568.051300000399351 ], [ 364249.114100001752377, 256549.331199999898672 ], [ 364238.542199999094009, 256559.799300000071526 ], [ 364255.311099998652935, 256579.146099999547005 ], [ 364265.065999999642372, 256569.937800001353025 ], [ 364266.694799996912479, 256568.051300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604022900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-264", "ACRE": ".149", "LONGITUDE": -64.88446254, "LATITUDE": 18.33811321, "OBJECTID_1": 21704, "PARCEL_NO_": "105604022900", "Tax_Legal_": "148-264 ANNAS RETREAT NEW QTR", "Name": "MOORE, LEONA", "Address": "5911 Circa Fishawk Blvd", "City": "Lithia", "State": "Florida", "Zip": 33547, "Country": "United States", "Land_Value": 20500, "Improved_V": 183300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.844093277900001, "SHAPE_Area": 602.36275452400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363728.997599996626377, 256550.351599998772144 ], [ 363703.998400002717972, 256550.569200001657009 ], [ 363699.772600002586842, 256573.332699999213219 ], [ 363727.187200002372265, 256573.557100001722574 ], [ 363728.997599996626377, 256550.351599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-152", "ACRE": "0.10", "LONGITUDE": -64.87859612, "LATITUDE": 18.33810029, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.363724285900005, "SHAPE_Area": 335.658247926 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364348.14469999819994, 256565.71229999884963 ], [ 364338.769100002944469, 256552.452599998563528 ], [ 364329.6537000015378, 256560.756099998950958 ], [ 364323.959100000560284, 256566.620099999010563 ], [ 364323.134900003671646, 256568.724300000816584 ], [ 364323.905199997127056, 256572.952500000596046 ], [ 364327.107100002467632, 256575.722899999469519 ], [ 364333.345499999821186, 256576.740299999713898 ], [ 364344.664599999785423, 256568.490800000727177 ], [ 364347.983499996364117, 256566.072000000625849 ], [ 364348.14469999819994, 256565.71229999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703040600", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-147", "ACRE": "0.10", "LONGITUDE": -64.8778628, "LATITUDE": 18.33807682, "OBJECTID_1": 23005, "PARCEL_NO_": "105703040600", "Tax_Legal_": "ANNAS RETREAT 173-147 NEW QTR", "Name": "DONASTORG, ALBERTO & NOEL", "Address": "7761 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 93000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.003467644699995, "SHAPE_Area": 395.77133273200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364423.076200000941753, 256574.397399999201298 ], [ 364416.837899997830391, 256549.437300000339746 ], [ 364407.946900002658367, 256551.897700000554323 ], [ 364402.107699997723103, 256552.796399999409914 ], [ 364402.28830000013113, 256553.540100000798702 ], [ 364408.523100003600121, 256578.922400001436472 ], [ 364423.076200000941753, 256574.397399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704035100", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173A-14", "ACRE": "0.36", "LONGITUDE": -64.87323679000001, "LATITUDE": 18.33797034, "OBJECTID_1": 23602, "PARCEL_NO_": "105704035100", "Tax_Legal_": "173A-14 ANNAS RETREAT NEW QTR.", "Name": "EDWARDS, JOSEPH & OLIVE", "Address": "7624 Estate Tutu Valley", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47800, "Improved_V": 427800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.67694525300001, "SHAPE_Area": 1500.208026 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364927.13120000064373, 256565.646200001239777 ], [ 364912.120600000023842, 256529.215199999511242 ], [ 364876.462999999523163, 256550.032800000160933 ], [ 364889.895199999213219, 256582.440000001341105 ], [ 364905.285300001502037, 256574.333299998193979 ], [ 364927.13120000064373, 256565.646200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604022700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-274", "ACRE": ".131", "LONGITUDE": -64.88286833, "LATITUDE": 18.33806961, "OBJECTID_1": 21702, "PARCEL_NO_": "105604022700", "Tax_Legal_": "148-274 ANNAS RETREAT NO.1 NEW QTR", "Name": "DONASTORG, DEVERELLE M", "Address": "EMANCIPATION GARDEN", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17800, "Improved_V": 86000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.167567769300007, "SHAPE_Area": 545.599727347 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363896.568599998950958, 256568.399500001221895 ], [ 363894.262900002300739, 256555.081700000911951 ], [ 363891.127599999308586, 256544.501400001347065 ], [ 363887.088799998164177, 256545.312699999660254 ], [ 363869.3175999969244, 256548.966899998486042 ], [ 363877.168499998748302, 256573.940200001001358 ], [ 363896.568599998950958, 256568.399500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703050400", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-223", "ACRE": "0.09", "LONGITUDE": -64.8790275, "LATITUDE": 18.33811366, "OBJECTID_1": 23060, "PARCEL_NO_": "105703050400", "Tax_Legal_": "ANNAS RETREAT 173-223 NEW QTR", "Name": "HODGE, LERA A", "Address": "37 Stone St", "City": "Elmont", "State": "New York", "Zip": 11003, "Country": "United States", "Land_Value": 12300, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.246296246, "SHAPE_Area": 449.06858477700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364305.361800000071526, 256572.589600000530481 ], [ 364283.773000001907349, 256551.092500001192093 ], [ 364278.901000000536442, 256555.063400000333786 ], [ 364275.646899998188019, 256558.414299998432398 ], [ 364273.836300000548363, 256560.363499999046326 ], [ 364294.148500002920628, 256583.308800000697374 ], [ 364301.294299997389317, 256576.778200000524521 ], [ 364305.361800000071526, 256572.589600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703013400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-277", "ACRE": ".130", "LONGITUDE": -64.88228028, "LATITUDE": 18.33806097, "OBJECTID_1": 22855, "PARCEL_NO_": "105703013400", "Tax_Legal_": "ANNAS RETREAT 148-277 NEW QTR", "Name": "THOMAS, WILBURN ASHFORD & SYLVINA I", "Address": "7309 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 99200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.690238105999995, "SHAPE_Area": 546.02664944900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363945.958599999547005, 256544.739000000059605 ], [ 363937.908100001513958, 256543.195500001311302 ], [ 363932.856200002133846, 256568.274300001561642 ], [ 363951.358300000429153, 256573.491999998688698 ], [ 363960.414700001478195, 256551.612399999052286 ], [ 363945.958599999547005, 256544.739000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033000", "MAP": "G9-1681-T70", "PARCEL_NAM": "173-102", "ACRE": "0.10", "LONGITUDE": -64.87650429, "LATITUDE": 18.33805784, "OBJECTID_1": 22986, "PARCEL_NO_": "105703033000", "Tax_Legal_": "173-102&173A-84 ANNAS RETREAT NO.1 NEW QTR", "Name": "FREDERICKS, BERNICE-LIFE ESTAT\\", "Address": "7743 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15900, "Improved_V": 94200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.330397419099995, "SHAPE_Area": 407.47554181100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364566.608800001442432, 256574.516699999570847 ], [ 364560.383100003004074, 256548.079100001603365 ], [ 364545.837099999189377, 256551.759700000286102 ], [ 364552.062899999320507, 256578.197399999946356 ], [ 364566.608800001442432, 256574.516699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703070800", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-69", "ACRE": ".11", "LONGITUDE": -64.87982304000001, "LATITUDE": 18.33807278, "OBJECTID_1": 23224, "PARCEL_NO_": "105703070800", "Tax_Legal_": "173-69 ANNAS RETREAT NEW QUARTER", "Name": "PRINCE, KEISHA & JULIO A. RHYMER, SR.", "Address": "PO Box 1560", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13800, "Improved_V": 89000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.744227472899993, "SHAPE_Area": 347.13899476900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364219.134900003671646, 256566.184399999678135 ], [ 364201.552500002086163, 256547.675299998372793 ], [ 364191.776000000536442, 256559.416600000113249 ], [ 364210.188199996948242, 256575.188200000673532 ], [ 364219.134900003671646, 256566.184399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88671239, "LATITUDE": 18.33797736, "OBJECTID_1": 21681, "PARCEL_NO_": "105604020600", "Tax_Legal_": "148-315 ANNAS RETREAT NEW QTR", "Name": "CREQUE, GLANVILLE, GREGORY, GLENISE, & GLORIA BISKE LOBERG", "Address": "7386 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18800, "Improved_V": 100600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.43963653599999, "SHAPE_Area": 775.55061071499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363495.457900002598763, 256533.859400000423193 ], [ 363476.897299997508526, 256522.605900000780821 ], [ 363464.862000003457069, 256548.796500001102686 ], [ 363459.999600000679493, 256559.377900000661612 ], [ 363462.005699999630451, 256560.198699999600649 ], [ 363475.954000003635883, 256567.096500001847744 ], [ 363480.478299997746944, 256559.386500000953674 ], [ 363495.457900002598763, 256533.859400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703014300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-281", "ACRE": ".118", "LONGITUDE": -64.88185902, "LATITUDE": 18.33807221, "OBJECTID_1": 22864, "PARCEL_NO_": "105703014300", "Tax_Legal_": "148-281 ANNAS RETREAT NO. 1 NEW QTR", "Name": "MITCHELL, EULALIE (LIFE ESTATE)", "Address": "7305 Deerwood Dr", "City": "Riverdale", "State": "Georgia", "Zip": 30296, "Country": "United States", "Land_Value": 16400, "Improved_V": 122600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.894533090099998, "SHAPE_Area": 473.17587181300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364005.451300002634525, 256565.701999999582767 ], [ 364001.49889999628067, 256556.381599999964237 ], [ 363993.534699998795986, 256544.706199999898672 ], [ 363974.051899999380112, 256559.956599999219179 ], [ 363976.451099999248981, 256562.298300001770258 ], [ 363982.021499998867512, 256570.998700000345707 ], [ 363990.088200002908707, 256570.642499998211861 ], [ 364005.451300002634525, 256565.701999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703040700", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-146", "ACRE": "0.12", "LONGITUDE": -64.87771645, "LATITUDE": 18.33803527, "OBJECTID_1": 23006, "PARCEL_NO_": "105703040700", "Tax_Legal_": "ANNAS RETREAT 173-146 NEW QTR", "Name": "SIMON, JOSEPH & MARIEL", "Address": "7759 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17300, "Improved_V": 141800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.990041874699997, "SHAPE_Area": 441.60297390599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364440.052000001072884, 256569.470100000500679 ], [ 364432.202799998223782, 256544.285799998790026 ], [ 364420.882100000977516, 256547.992800001055002 ], [ 364416.837899997830391, 256549.437300000339746 ], [ 364423.076200000941753, 256574.397399999201298 ], [ 364440.052000001072884, 256569.470100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704012000", "MAP": "F9-2703-T70", "PARCEL_NAM": "57V-10", "ACRE": "0.27", "LONGITUDE": -64.87135186, "LATITUDE": 18.33799236, "OBJECTID_1": 23466, "PARCEL_NO_": "105704012000", "Tax_Legal_": "SMITH BAY 57V-10 EAST END QTR", "Name": "GOTTLIEB, GERDA & SHANDA", "Address": "3001 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.918777163, "SHAPE_Area": 969.66985324400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365123.075900003314018, 256565.983300000429153 ], [ 365111.206000000238419, 256539.499499998986721 ], [ 365098.238499999046326, 256547.20380000025034 ], [ 365087.702500000596046, 256553.450399998575449 ], [ 365078.800700001418591, 256557.177200000733137 ], [ 365087.481299996376038, 256579.413100000470877 ], [ 365123.075900003314018, 256565.983300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603012000", "MAP": "C9-215-T76", "PARCEL_NAM": "I", "ACRE": null, "LONGITUDE": -64.8979954, "LATITUDE": 18.33791544, "OBJECTID_1": 21516, "PARCEL_NO_": "105603012000", "Tax_Legal_": "LOT I DONOE NEW QTR", "Name": "BRYAN, CLARICE A", "Address": "PO Box 9885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.888215317, "SHAPE_Area": 3737.4999584900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362327.790200002491474, 256519.673900000751019 ], [ 362248.202600002288818, 256491.158100001513958 ], [ 362247.717100001871586, 256548.149399999529123 ], [ 362326.669200003147125, 256556.606100000441074 ], [ 362327.790200002491474, 256519.673900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703022700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-160", "ACRE": ".137", "LONGITUDE": -64.88063482, "LATITUDE": 18.33804265, "OBJECTID_1": 22929, "PARCEL_NO_": "105703022700", "Tax_Legal_": "ANNAS RETREAT 148-160 NEW QTR", "Name": "FLEMING, VIOLET & FAHIE, LIONEL", "Address": "148-60 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 110900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.980032366000003, "SHAPE_Area": 482.87799266299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364133.674800001084805, 256564.429499998688698 ], [ 364127.396899998188019, 256544.113099999725819 ], [ 364105.56360000371933, 256551.322700001299381 ], [ 364111.844999998807907, 256571.216899998486042 ], [ 364133.674800001084805, 256564.429499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703050500", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-222", "ACRE": "0.09", "LONGITUDE": -64.87893283, "LATITUDE": 18.33803134, "OBJECTID_1": 23061, "PARCEL_NO_": "105703050500", "Tax_Legal_": "ANNAS RETREAT 173-222 NEW QTR", "Name": "BUFFONG, GLORIA", "Address": "7834 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11300, "Improved_V": 84600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.049693620900001, "SHAPE_Area": 376.27058694 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364314.926399998366833, 256563.34910000115633 ], [ 364292.926299996674061, 256543.710700001567602 ], [ 364286.208099998533726, 256549.212600000202656 ], [ 364283.773000001907349, 256551.092500001192093 ], [ 364305.361800000071526, 256572.589600000530481 ], [ 364311.86089999973774, 256566.943300001323223 ], [ 364314.926399998366833, 256563.34910000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033100", "MAP": "G9-1681-T70", "PARCEL_NAM": "173-103", "ACRE": "0.10", "LONGITUDE": -64.8763669, "LATITUDE": 18.33802386, "OBJECTID_1": 22987, "PARCEL_NO_": "105703033100", "Tax_Legal_": "ANNAS RETREAT 173-103 NEW QTR", "Name": "BLYDEN, CECILE", "Address": "161 NE 38th", "City": "Oakland Park", "State": "Florida", "Zip": 33334, "Country": "United States", "Land_Value": 13300, "Improved_V": 66600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.483450878599996, "SHAPE_Area": 408.32739566700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364581.152999997138977, 256571.047200001776218 ], [ 364574.929099999368191, 256544.398400001227856 ], [ 364560.383100003004074, 256548.079100001603365 ], [ 364566.608800001442432, 256574.516699999570847 ], [ 364580.616200000047684, 256571.175200000405312 ], [ 364581.152999997138977, 256571.047200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-153", "ACRE": "0.12", "LONGITUDE": -64.87838123, "LATITUDE": 18.33797476, "OBJECTID_1": 23055, "PARCEL_NO_": "105703045900", "Tax_Legal_": "173-153 ANNAS RETREAT NEW QUARTER", "Name": "FAULKNER, ESTHER REBECCA", "Address": "PO Box 7802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 102300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.223831043, "SHAPE_Area": 664.83767704499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364374.495899997651577, 256555.998700000345707 ], [ 364366.162500001490116, 256534.668200001120567 ], [ 364349.145400002598763, 256544.450300000607967 ], [ 364340.218500003218651, 256551.13230000063777 ], [ 364338.769100002944469, 256552.452599998563528 ], [ 364348.290500000119209, 256565.918499998748302 ], [ 364354.854699999094009, 256565.470800001174212 ], [ 364355.3800999969244, 256565.294799998402596 ], [ 364375.494599997997284, 256558.554900001734495 ], [ 364374.495899997651577, 256555.998700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703013200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-275", "ACRE": ".126", "LONGITUDE": -64.88267745, "LATITUDE": 18.33803045, "OBJECTID_1": 22853, "PARCEL_NO_": "105703013200", "Tax_Legal_": "ANNAS RETREAT 148-275 NEW QTR", "Name": "FREEMAN, ERNESTA & A", "Address": "7311 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 61200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.0651324735, "SHAPE_Area": 488.06937869000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363914.323600001633167, 256566.644999999552965 ], [ 363912.127700001001358, 256540.451400000602007 ], [ 363905.666400000452995, 256541.665100000798702 ], [ 363891.127599999308586, 256544.501400001347065 ], [ 363894.262900002300739, 256555.081700000911951 ], [ 363896.568599998950958, 256568.399500001221895 ], [ 363914.323600001633167, 256566.644999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703013300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-276", "ACRE": ".131", "LONGITUDE": -64.88248296, "LATITUDE": 18.33802007, "OBJECTID_1": 22854, "PARCEL_NO_": "105703013300", "Tax_Legal_": "ANNAS RETREAT 148-276 NEW QTR", "Name": "WOODLEY, LOUVINA M., JEAN V. & LYNDA L.E.", "Address": "PO Box 7145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 107500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.520869465700002, "SHAPE_Area": 587.13042011799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363914.323600001633167, 256566.644999999552965 ], [ 363932.856200002133846, 256568.274300001561642 ], [ 363937.908100001513958, 256543.195500001311302 ], [ 363932.272900000214577, 256542.093899998813868 ], [ 363925.0287000015378, 256540.557000000029802 ], [ 363919.384499996900558, 256540.510800000280142 ], [ 363912.127700001001358, 256540.451400000602007 ], [ 363914.323600001633167, 256566.644999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704011700", "MAP": "F9-966-T62", "PARCEL_NAM": "57B-8", "ACRE": "0.32", "LONGITUDE": -64.87200158, "LATITUDE": 18.33795117, "OBJECTID_1": 23463, "PARCEL_NO_": "105704011700", "Tax_Legal_": "SMITH BAY 57B-8 EAST END QTR", "Name": "Jean Frantz Remy & Anthonine Pierre", "Address": "Bergs Home Bldg 2B Apt 8", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49900, "Improved_V": 133600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.54493298200001, "SHAPE_Area": 1443.7650770499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365058.583499997854233, 256563.977800000458956 ], [ 365049.16669999808073, 256533.503299999982119 ], [ 365004.700900003314018, 256547.07149999961257 ], [ 365017.36089999973774, 256575.46169999986887 ], [ 365018.913500003516674, 256579.442400000989437 ], [ 365038.377199999988079, 256569.511999998241663 ], [ 365058.583499997854233, 256563.977800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703015100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-239", "ACRE": ".142", "LONGITUDE": -64.88153878, "LATITUDE": 18.33799316, "OBJECTID_1": 22872, "PARCEL_NO_": "105703015100", "Tax_Legal_": "ANNAS RETREAT 148-239 NEW QTR", "Name": "MONSANTO, VANCE & JOYCELYN", "Address": "PO Box 11004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 158900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.381760680100001, "SHAPE_Area": 562.45170422900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364037.066600002348423, 256546.118000000715256 ], [ 364032.314999997615814, 256535.946600001305342 ], [ 364007.209600001573563, 256548.617899999022484 ], [ 364012.769299998879433, 256558.584800001233816 ], [ 364012.753100000321865, 256560.484499998390675 ], [ 364015.928000003099442, 256566.421100001782179 ], [ 364039.39919999986887, 256556.269600000232458 ], [ 364037.066600002348423, 256546.118000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704035800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87407471, "LATITUDE": 18.33795727, "OBJECTID_1": 23608, "PARCEL_NO_": "105704035800", "Tax_Legal_": "173A-28 ANNAS RETREAT NO.1 NEW QTR", "Name": "O'NEIL, ETHELBERT & PETRONELLA", "Address": "PO Box 10390", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 127600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.223740573, "SHAPE_Area": 589.85336924199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364824.731299996376038, 256564.596999999135733 ], [ 364819.364100001752377, 256532.044700000435114 ], [ 364804.726400002837181, 256546.490299999713898 ], [ 364799.075000002980232, 256547.288400001823902 ], [ 364807.726800002157688, 256572.901599999517202 ], [ 364824.731299996376038, 256564.596999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703022800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-127", "ACRE": ".142", "LONGITUDE": -64.88027876, "LATITUDE": 18.33801454, "OBJECTID_1": 22930, "PARCEL_NO_": "105703022800", "Tax_Legal_": "ANNAS RETREAT 148-127 NEW QTR", "Name": "TYSON, ELEANOR", "Address": "7054 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 161500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.77118575199999, "SHAPE_Area": 584.83294714800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364174.827299997210503, 256561.177700001746416 ], [ 364168.547600001096725, 256541.072399999946356 ], [ 364139.4341000020504, 256550.966600000858307 ], [ 364143.357699997723103, 256563.664299998432398 ], [ 364143.327200002968311, 256567.252700001001358 ], [ 364174.827299997210503, 256561.177700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033200", "MAP": null, "PARCEL_NAM": "173-104", "ACRE": null, "LONGITUDE": -64.87622902, "LATITUDE": 18.33799226, "OBJECTID_1": 22988, "PARCEL_NO_": "105703033200", "Tax_Legal_": "ANNAS RETREAT 173-104 NEW QTR", "Name": "THOMAS, SYLVANITA R", "Address": "PO BOX 9072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 88800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.760838782099995, "SHAPE_Area": 410.54044237400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364596.507100000977516, 256567.162099998444319 ], [ 364588.667000003159046, 256540.9222999997437 ], [ 364574.929099999368191, 256544.398400001227856 ], [ 364581.152999997138977, 256571.047200001776218 ], [ 364596.105800002813339, 256567.263599999248981 ], [ 364596.507100000977516, 256567.162099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703058000", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-6", "ACRE": "0.09", "LONGITUDE": -64.87928374000001, "LATITUDE": 18.33799623, "OBJECTID_1": 23136, "PARCEL_NO_": "105703058000", "Tax_Legal_": "ANNAS RETREAT 173-6 NEW QTR", "Name": "BAYNES, ERIC & KEISHA", "Address": "PO Box 6555", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13400, "Improved_V": 105000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.676147637100001, "SHAPE_Area": 340.58548739000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364275.646899998188019, 256558.414299998432398 ], [ 364258.872599996626377, 256539.700699999928474 ], [ 364249.114100001752377, 256549.331199999898672 ], [ 364266.694799996912479, 256568.051300000399351 ], [ 364275.646899998188019, 256558.414299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703040800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-145", "ACRE": "0.10", "LONGITUDE": -64.87757073, "LATITUDE": 18.33798985, "OBJECTID_1": 23007, "PARCEL_NO_": "105703040800", "Tax_Legal_": "ANNAS RETREAT 173-145 NEW QTR", "Name": "FORBES, SR. DEO & JANET", "Address": "7758 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 93000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.793515595299993, "SHAPE_Area": 409.68779933500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364454.601499997079372, 256565.367300000041723 ], [ 364447.560500003397465, 256539.978500001132488 ], [ 364438.66950000077486, 256542.438799999654293 ], [ 364432.202799998223782, 256544.285799998790026 ], [ 364440.052000001072884, 256569.470100000500679 ], [ 364454.601499997079372, 256565.367300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88686964, "LATITUDE": 18.33790706, "OBJECTID_1": 21680, "PARCEL_NO_": "105604020500", "Tax_Legal_": "148-316 ANNAS RETREAT NEW QTR", "Name": "FLEMING, MEREDITH& MARJORIE GERARD & MARY HENDRICKS", "Address": "PO Box 7934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18800, "Improved_V": 100600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.27416844699999, "SHAPE_Area": 680.89979448199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363473.242299996316433, 256521.111600000411272 ], [ 363457.396600000560284, 256517.25 ], [ 363456.706799998879433, 256519.625399999320507 ], [ 363446.737899996340275, 256553.952100001275539 ], [ 363459.999600000679493, 256559.377900000661612 ], [ 363464.862000003457069, 256548.796500001102686 ], [ 363476.897299997508526, 256522.605900000780821 ], [ 363473.242299996316433, 256521.111600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703016800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-222", "ACRE": ".131", "LONGITUDE": -64.8812681, "LATITUDE": 18.33798421, "OBJECTID_1": 22889, "PARCEL_NO_": "105703016800", "Tax_Legal_": "ANNAS RETREAT 148-222 NEW QTR", "Name": "DAVIS, EDWIN A. & ELDRA", "Address": "PO Box 502733", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17800, "Improved_V": 170900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.126478079400002, "SHAPE_Area": 539.55660271299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364069.252499997615814, 256554.191899999976158 ], [ 364063.754000000655651, 256537.048300001770258 ], [ 364037.066600002348423, 256546.118000000715256 ], [ 364039.39919999986887, 256556.269600000232458 ], [ 364041.744400002062321, 256564.943599998950958 ], [ 364069.252499997615814, 256554.191899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803030100", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-171", "ACRE": ".25", "LONGITUDE": -64.85870227, "LATITUDE": 18.33791066, "OBJECTID_1": 23920, "PARCEL_NO_": "105803030100", "Tax_Legal_": "19-2-171 & 19F-B SMITH BAY EAST END QUARTER", "Name": "LUGO, YUDELKIS", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52300, "Improved_V": 152600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.81664545199999, "SHAPE_Area": 1056.06600755 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366463.499700002372265, 256569.545800000429153 ], [ 366432.042999997735023, 256538.910900000482798 ], [ 366410.870200000703335, 256563.224399998784065 ], [ 366423.521600000560284, 256559.232200000435114 ], [ 366426.154200002551079, 256567.571400001645088 ], [ 366430.848200000822544, 256584.497299998998642 ], [ 366453.709799997508526, 256575.743299998342991 ], [ 366461.329800002276897, 256571.298300001770258 ], [ 366463.499700002372265, 256569.545800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703070900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-68", "ACRE": ".09", "LONGITUDE": -64.87973145, "LATITUDE": 18.33798241, "OBJECTID_1": 23225, "PARCEL_NO_": "105703070900", "Tax_Legal_": "173-68 ANNAS RETREAT NEW QUARTER", "Name": "MARTIN, MICHELLE A", "Address": "7507 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11300, "Improved_V": 137200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.393309308300005, "SHAPE_Area": 358.62708959600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364228.893399998545647, 256556.553899999707937 ], [ 364211.316399998962879, 256537.411699999123812 ], [ 364201.552500002086163, 256547.675299998372793 ], [ 364219.134900003671646, 256566.184399999678135 ], [ 364228.893399998545647, 256556.553899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603012100", "MAP": "C9-215-T76", "PARCEL_NAM": "H", "ACRE": null, "LONGITUDE": -64.89851249, "LATITUDE": 18.33780297, "OBJECTID_1": 21517, "PARCEL_NO_": "105603012100", "Tax_Legal_": "LOT H DONOE NEW QTR", "Name": "HEIRS OF ROSAMOND MILLIN", "Address": "PO Box 9885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.43263445400001, "SHAPE_Area": 2123.50406062 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362248.202600002288818, 256491.158100001513958 ], [ 362212.829199999570847, 256478.625199999660254 ], [ 362213.880800001323223, 256544.495000001043081 ], [ 362247.717100001871586, 256548.149399999529123 ], [ 362248.202600002288818, 256491.158100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033300", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-105", "ACRE": "4,512 sq ft", "LONGITUDE": -64.87609235, "LATITUDE": 18.33795664, "OBJECTID_1": 22989, "PARCEL_NO_": "105703033300", "Tax_Legal_": "ANNAS RETREAT 173-105&173A-81 NEW QTR", "Name": "ROBERTS, CATHERINE", "Address": "7736 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 139600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.676686880999995, "SHAPE_Area": 408.83953785099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364611.051299996674061, 256563.692499998956919 ], [ 364610.947400003671646, 256563.3445999994874 ], [ 364603.211199998855591, 256537.4527000002563 ], [ 364588.667000003159046, 256540.9222999997437 ], [ 364596.507100000977516, 256567.162099998444319 ], [ 364611.051299996674061, 256563.692499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703040900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-144", "ACRE": "0.10", "LONGITUDE": -64.87742754, "LATITUDE": 18.33795323, "OBJECTID_1": 23008, "PARCEL_NO_": "105703040900", "Tax_Legal_": "ANNAS RETREAT 173-144 NEW QTR", "Name": "FRANCIS, D & M & L & A & F. A. & REOVAN, R", "Address": "PO Box 306773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14900, "Improved_V": 99400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.968148598300004, "SHAPE_Area": 414.62394629699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364469.957400001585484, 256561.271200001239777 ], [ 364462.912799999117851, 256536.304499998688698 ], [ 364454.025399997830391, 256538.342700000852346 ], [ 364447.560500003397465, 256539.978500001132488 ], [ 364454.601499997079372, 256565.367300000041723 ], [ 364469.957400001585484, 256561.271200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85284991, "LATITUDE": 18.33768915, "OBJECTID_1": 24025, "PARCEL_NO_": "105804021500", "Tax_Legal_": "SMITH BAY ESTATE 11B-1 EAST END QTR", "Name": "FKS HOLDINGS FL LLC", "Address": "341 Wes Laurel River Dr", "City": "Shepherdsville", "State": "Kentucky", "Zip": 40165, "Country": "United States", "Land_Value": 531900, "Improved_V": 473800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.75432864800001, "SHAPE_Area": 4380.8833797899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367083.892300002276897, 256503.293800000101328 ], [ 367024.133400000631809, 256513.570500001311302 ], [ 367019.239799998700619, 256520.074299998581409 ], [ 367038.035700000822544, 256585.4560999982059 ], [ 367051.739399999380112, 256585.99040000140667 ], [ 367063.844899997115135, 256584.822900000959635 ], [ 367071.117899999022484, 256582.982599999755621 ], [ 367080.035899996757507, 256577.356100000441074 ], [ 367082.487199999392033, 256573.576400000602007 ], [ 367084.943899996578693, 256569.163600001484156 ], [ 367086.631999999284744, 256560.311500001698732 ], [ 367086.259099997580051, 256509.434900000691414 ], [ 367083.892300002276897, 256503.293800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85337651, "LATITUDE": 18.33773609, "OBJECTID_1": 24024, "PARCEL_NO_": "105804021400", "Tax_Legal_": "12A ESTATE SMITH BAY EAST END QTR", "Name": "JAMES, DENIS & MAGDALENA K.", "Address": "6136 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 576900, "Improved_V": 372600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.130925854, "SHAPE_Area": 3915.7946960499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367038.035700000822544, 256585.4560999982059 ], [ 367019.239799998700619, 256520.074299998581409 ], [ 367003.993600003421307, 256511.294700000435114 ], [ 366998.387199997901917, 256506.815799999982119 ], [ 366989.600500002503395, 256497.033599998801947 ], [ 366986.429200001060963, 256490.674899999052286 ], [ 366984.006599999964237, 256491.077199999243021 ], [ 366974.689400002360344, 256543.563299998641014 ], [ 366973.780599996447563, 256555.588199999183416 ], [ 366973.750100001692772, 256559.176500000059605 ], [ 366974.376599997282028, 256580.291000001132488 ], [ 366976.777500003576279, 256582.421599999070168 ], [ 367038.035700000822544, 256585.4560999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703014200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-282", "ACRE": ".129", "LONGITUDE": -64.88198834000001, "LATITUDE": 18.33793437, "OBJECTID_1": 22863, "PARCEL_NO_": "105703014200", "Tax_Legal_": "ANNAS RETREAT 148-282 NEW QTR", "Name": "CRUSE, ANN CECELIA", "Address": "PO Box 502544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19300, "Improved_V": 123400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.521120701900003, "SHAPE_Area": 549.51458037700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363993.534699998795986, 256544.706199999898672 ], [ 363987.152500003576279, 256536.632500000298023 ], [ 363976.749600000679493, 256527.259199999272823 ], [ 363965.328100003302097, 256542.78660000115633 ], [ 363960.414700001478195, 256551.612399999052286 ], [ 363970.851800002157688, 256556.975099999457598 ], [ 363974.051899999380112, 256559.956599999219179 ], [ 363993.534699998795986, 256544.706199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604024500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-291", "ACRE": ".145", "LONGITUDE": -64.88354277000001, "LATITUDE": 18.33792911, "OBJECTID_1": 21720, "PARCEL_NO_": "105604024500", "Tax_Legal_": "148-291 ANNAS RETREAT NEW QTR", "Name": "PARILLON, MARTIN & EUNICE", "Address": "7347 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 115200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.42034372000001, "SHAPE_Area": 587.980945582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363823.534000001847744, 256527.905000001192093 ], [ 363809.043799996376038, 256525.042199999094009 ], [ 363797.5, 256554.923000000417233 ], [ 363812.803800001740456, 256556.948100000619888 ], [ 363820.859700001776218, 256557.858399998396635 ], [ 363823.534000001847744, 256527.905000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604024600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-290", "ACRE": ".138", "LONGITUDE": -64.88336243000001, "LATITUDE": 18.33792926, "OBJECTID_1": 21721, "PARCEL_NO_": "105604024600", "Tax_Legal_": "ANNAS RETREAT 148-290 NEW QTR", "Name": "BEAZER, INGRID J", "Address": "PO Box 302411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 109900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.304030671899994, "SHAPE_Area": 532.66499877399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363840.462999999523163, 256528.465799998492002 ], [ 363823.534000001847744, 256527.905000001192093 ], [ 363820.859700001776218, 256557.858399998396635 ], [ 363831.354400001466274, 256556.466699998825788 ], [ 363841.854400001466274, 256554.441700000315905 ], [ 363840.462999999523163, 256528.465799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603012200", "MAP": "C9-215-T76", "PARCEL_NAM": "G", "ACRE": null, "LONGITUDE": -64.89893829, "LATITUDE": 18.33772237, "OBJECTID_1": 21518, "PARCEL_NO_": "105603012200", "Tax_Legal_": "LOT G DONOE NEW QTR", "Name": "AQUARIAM SYSTEM INC", "Address": "PO Box 10682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013682, "Country": "United States", "Land_Value": 57700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.918738042, "SHAPE_Area": 3930.0916946100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362212.829199999570847, 256478.625199999660254 ], [ 362162.182499997317791, 256460.478799998760223 ], [ 362155.876599997282028, 256538.109600000083447 ], [ 362213.880800001323223, 256544.495000001043081 ], [ 362212.829199999570847, 256478.625199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010200", "MAP": null, "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.89669715, "LATITUDE": 18.33753238, "OBJECTID_1": 21500, "PARCEL_NO_": "105603010200", "Tax_Legal_": "5 ESTATE CHARLOTTE AMALIE NEW QUARTER", "Name": "BOUGH, JAMES A", "Address": "PO Box 6096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 147000, "Improved_V": 332200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.05287965799999, "SHAPE_Area": 5654.96877365 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362394.61089999973774, 256437.683200001716614 ], [ 362396.079700000584126, 256454.582699999213219 ], [ 362391.234600000083447, 256455.38740000128746 ], [ 362400.142599999904633, 256545.597300000488758 ], [ 362454.307499997317791, 256529.364199999719858 ], [ 362451.362800002098083, 256496.409499999135733 ], [ 362447.685500003397465, 256454.793999999761581 ], [ 362446.261699996888638, 256432.617499999701977 ], [ 362394.61089999973774, 256437.683200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703021300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-170", "ACRE": ".138", "LONGITUDE": -64.88092468000001, "LATITUDE": 18.33791853, "OBJECTID_1": 22915, "PARCEL_NO_": "105703021300", "Tax_Legal_": "ANNAS RETREAT 148-170 NEW QTR", "Name": "GREGORY, DALE A", "Address": "3600 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 159400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.21868334, "SHAPE_Area": 632.15270589500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364105.56360000371933, 256551.322700001299381 ], [ 364096.893700003623962, 256527.820300001651049 ], [ 364072.626999996602535, 256536.698699999600649 ], [ 364077.364200003445148, 256548.558800000697374 ], [ 364080.497699998319149, 256559.35020000115037 ], [ 364105.56360000371933, 256551.322700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-106", "ACRE": "4,568 sq ft", "LONGITUDE": -64.87594916, "LATITUDE": 18.33791674, "OBJECTID_1": 22990, "PARCEL_NO_": "105703033400", "Tax_Legal_": "173-106 ANNAS RETREAT No.1 NEW QTR", "Name": "MARIE E HONORE REVOCABLE FAMILY TRUST", "Address": "PO BOX 11904", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14600, "Improved_V": 76300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.120676569400004, "SHAPE_Area": 462.027058603 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364626.4054000005126, 256559.807399999350309 ], [ 364619.385999999940395, 256531.885600000619888 ], [ 364603.211199998855591, 256537.4527000002563 ], [ 364610.947400003671646, 256563.3445999994874 ], [ 364611.051299996674061, 256563.692499998956919 ], [ 364611.274999998509884, 256563.635899998247623 ], [ 364626.4054000005126, 256559.807399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88703691000001, "LATITUDE": 18.33786769, "OBJECTID_1": 21679, "PARCEL_NO_": "105604020400", "Tax_Legal_": "ANNAS RETREAT 148-317 NEW QTR", "Name": "NORMIL (LIFE ESTATE), KAREN", "Address": "PO BOX 303352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 163400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.78572986, "SHAPE_Area": 707.90262670300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363457.396600000560284, 256517.25 ], [ 363437.917199999094009, 256512.502900000661612 ], [ 363437.394799999892712, 256514.823300000280142 ], [ 363429.852099999785423, 256548.325399998575449 ], [ 363446.737899996340275, 256553.952100001275539 ], [ 363456.706799998879433, 256519.625399999320507 ], [ 363457.396600000560284, 256517.25 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704034900", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173A-15", "ACRE": "0.34", "LONGITUDE": -64.87290981, "LATITUDE": 18.33782368, "OBJECTID_1": 23600, "PARCEL_NO_": "105704034900", "Tax_Legal_": "ANNAS RETREAT 173A-15 NEW QTR.", "Name": "GREEN, ROLAND", "Address": "7625 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46600, "Improved_V": 136200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.42994295299999, "SHAPE_Area": 1524.03964464 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364961.896200001239777, 256554.953899998217821 ], [ 364942.101599998772144, 256512.15089999884367 ], [ 364912.120600000023842, 256529.215199999511242 ], [ 364927.13120000064373, 256565.646200001239777 ], [ 364961.896200001239777, 256554.953899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045800", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-154", "ACRE": "0.11", "LONGITUDE": -64.87816578, "LATITUDE": 18.3378888, "OBJECTID_1": 23054, "PARCEL_NO_": "105703045800", "Tax_Legal_": "ANNAS RETREAT 173-154 NEW QTR", "Name": "VELAZQUEZ, DOLORES", "Address": "7770 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.666234507599995, "SHAPE_Area": 560.45041842199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364395.350699998438358, 256553.836399998515844 ], [ 364385.587700001895428, 256526.172400001436472 ], [ 364366.162500001490116, 256534.668200001120567 ], [ 364375.494599997997284, 256558.554900001734495 ], [ 364384.67059999704361, 256555.48030000180006 ], [ 364395.350699998438358, 256553.836399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704035600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87388076000001, "LATITUDE": 18.33785338, "OBJECTID_1": 23606, "PARCEL_NO_": "105704035600", "Tax_Legal_": "ANNAS RETREAT 173A-27 NEW QTR.", "Name": "WILLIAMS (LIFE ESTATE), FLORA & ANDREW", "Address": "PO Box 10349", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 207800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.071004383, "SHAPE_Area": 835.88814991900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364848.200699999928474, 256554.656599998474121 ], [ 364842.043300002813339, 256520.197900000959635 ], [ 364819.364100001752377, 256532.044700000435114 ], [ 364824.731299996376038, 256564.596999999135733 ], [ 364848.200699999928474, 256554.656599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704041000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-143", "ACRE": "0.10", "LONGITUDE": -64.87728614, "LATITUDE": 18.33791828, "OBJECTID_1": 23626, "PARCEL_NO_": "105704041000", "Tax_Legal_": "ANNAS RETREAT 173-143 NEW QTR", "Name": "JOSEPH, CHARLESWORTH", "Address": "PO Box 7314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 113800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.042561841999998, "SHAPE_Area": 389.86060621500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364484.501599997282028, 256557.801600001752377 ], [ 364477.458800002932549, 256532.623799998313189 ], [ 364467.761500000953674, 256535.077599998563528 ], [ 364462.912799999117851, 256536.304499998688698 ], [ 364469.957400001585484, 256561.271200001239777 ], [ 364484.501599997282028, 256557.801600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604024400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-292", "ACRE": ".160", "LONGITUDE": -64.8837186, "LATITUDE": 18.33788819, "OBJECTID_1": 21719, "PARCEL_NO_": "105604024400", "Tax_Legal_": "148-292 ANNAS RETREAT NEW QTR", "Name": "LAMBERT, SR , ALPHONSE A & MARY", "Address": "PO Box 10451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 172200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.02238286399999, "SHAPE_Area": 622.61827546999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363809.043799996376038, 256525.042199999094009 ], [ 363803.4121999964118, 256523.518500000238419 ], [ 363792.9679000005126, 256519.0 ], [ 363777.378200002014637, 256550.536499999463558 ], [ 363795.084700003266335, 256554.481100000441074 ], [ 363797.5, 256554.923000000417233 ], [ 363809.043799996376038, 256525.042199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704012200", "MAP": "D9-4459-T88", "PARCEL_NAM": "57V-11", "ACRE": "0.35", "LONGITUDE": -64.87100136, "LATITUDE": 18.33776555, "OBJECTID_1": 23468, "PARCEL_NO_": "105704012200", "Tax_Legal_": "SMITH BAY 57V-11 EAST END QTR", "Name": "MALONE, WALTER & SONIA", "Address": "PO Box 503272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 58400, "Improved_V": 193400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.19090669600001, "SHAPE_Area": 1342.5124578299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365123.075900003314018, 256565.983300000429153 ], [ 365132.810999996960163, 256559.096900001168251 ], [ 365136.072200000286102, 256554.901700001209974 ], [ 365141.75959999859333, 256549.882100000977516 ], [ 365142.582099996507168, 256547.988899998366833 ], [ 365155.610799998044968, 256533.107900001108646 ], [ 365156.436800003051758, 256530.792700000107288 ], [ 365158.058499999344349, 256529.750500001013279 ], [ 365159.701700001955032, 256526.175299998372793 ], [ 365161.325099997222424, 256524.922100000083447 ], [ 365167.15990000218153, 256502.593899998813868 ], [ 365143.643700003623962, 256518.022300001233816 ], [ 365135.528499998152256, 256524.077599998563528 ], [ 365133.095100000500679, 256525.746500000357628 ], [ 365111.206000000238419, 256539.499499998986721 ], [ 365123.075900003314018, 256565.983300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703057900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-7", "ACRE": "0.09", "LONGITUDE": -64.87919039000001, "LATITUDE": 18.33790812, "OBJECTID_1": 23135, "PARCEL_NO_": "105703057900", "Tax_Legal_": "ANNAS RETREAT 173-7 NEW QTR", "Name": "THOMAS, ELDRED I & JUDITH M", "Address": "7513 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 76100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.201635015600004, "SHAPE_Area": 357.69178063800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364275.646899998188019, 256558.414299998432398 ], [ 364278.901000000536442, 256555.063400000333786 ], [ 364283.773000001907349, 256551.092500001192093 ], [ 364286.208099998533726, 256549.212600000202656 ], [ 364269.4391999989748, 256529.865800000727177 ], [ 364258.872599996626377, 256539.700699999928474 ], [ 364275.646899998188019, 256558.414299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604024700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-289", "ACRE": ".131", "LONGITUDE": -64.88317345, "LATITUDE": 18.33790298, "OBJECTID_1": 21722, "PARCEL_NO_": "105604024700", "Tax_Legal_": "148-289 ANNAS RETREAT NEW QTR", "Name": "MC CLEAN, F. & MOLYNEAUX, T", "Address": "PO Box 2953", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 20200, "Improved_V": 115700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.168800995200002, "SHAPE_Area": 526.02436101900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363863.662600003182888, 256550.187199998646975 ], [ 363859.843199998140335, 256525.246899999678135 ], [ 363850.954000003635883, 256527.496199999004602 ], [ 363840.462999999523163, 256528.465799998492002 ], [ 363841.854400001466274, 256554.441700000315905 ], [ 363849.931900002062321, 256552.818999998271465 ], [ 363863.662600003182888, 256550.187199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703050600", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-221", "ACRE": "0.09", "LONGITUDE": -64.87884525, "LATITUDE": 18.3379423, "OBJECTID_1": 23062, "PARCEL_NO_": "105703050600", "Tax_Legal_": "ANNAS RETREAT 173-221 NEW QTR", "Name": "YEARWOOD, ALMINA R", "Address": "281 Valley Lake Dr", "City": "Stone Mountain", "State": "Georgia", "Zip": 30087, "Country": "United States", "Land_Value": 11300, "Improved_V": 127200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.415697942700007, "SHAPE_Area": 414.85375725900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364324.06700000166893, 256553.955400001257658 ], [ 364305.694499999284744, 256533.53999999910593 ], [ 364300.824199996888638, 256537.299899999052286 ], [ 364295.140500001609325, 256541.897399999201298 ], [ 364292.926299996674061, 256543.710700001567602 ], [ 364314.926399998366833, 256563.34910000115633 ], [ 364319.191399998962879, 256558.348499998450279 ], [ 364324.06700000166893, 256553.955400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-110", "ACRE": "0.10", "LONGITUDE": -64.87534341, "LATITUDE": 18.33783393, "OBJECTID_1": 22994, "PARCEL_NO_": "105703033800", "Tax_Legal_": "ANNAS RETREAT 173-110 & 173A-76 NEW QTR", "Name": "CALLWOOD, ALVARA & CLAUSE, SHERRI-LYNN", "Address": "7726 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15900, "Improved_V": 140500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.823749355900006, "SHAPE_Area": 380.15798485300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364686.956200003623962, 256551.225900001823902 ], [ 364687.157600000500679, 256527.585099998861551 ], [ 364671.033100001513958, 256527.24210000038147 ], [ 364671.629100002348423, 256551.944899998605251 ], [ 364686.956200003623962, 256551.225900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704011900", "MAP": "F9-967-T62", "PARCEL_NAM": "57B-9", "ACRE": "0.26", "LONGITUDE": -64.87161158000001, "LATITUDE": 18.33782238, "OBJECTID_1": 23465, "PARCEL_NO_": "105704011900", "Tax_Legal_": "57B-9 SMITH BAY EAST END QUARTER", "Name": "VERONICA ROSS and JOHN ALVIN MORRIS", "Address": "2671 Marion Ave", "City": "Bronx", "State": "New York", "Zip": 10458, "Country": "United States", "Land_Value": 40500, "Improved_V": 197800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.27575999800001, "SHAPE_Area": 1343.3622535300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365098.238499999046326, 256547.20380000025034 ], [ 365085.605400003492832, 256515.64750000089407 ], [ 365079.104599997401237, 256521.504900000989437 ], [ 365071.000100001692772, 256526.293699998408556 ], [ 365049.16669999808073, 256533.503299999982119 ], [ 365058.583499997854233, 256563.977800000458956 ], [ 365062.625900000333786, 256562.74439999833703 ], [ 365078.800700001418591, 256557.177200000733137 ], [ 365087.702500000596046, 256553.450399998575449 ], [ 365098.238499999046326, 256547.20380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703071000", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-67", "ACRE": ".09", "LONGITUDE": -64.87963835, "LATITUDE": 18.33789496, "OBJECTID_1": 23226, "PARCEL_NO_": "105703071000", "Tax_Legal_": "ANNAS RETREAT 173-67 NEW QTR", "Name": "JOSEPH, BEVERLY, BEATRICE, BERNARD, BYRON, BERTRAND & BERT", "Address": "7504 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11300, "Improved_V": 111600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.844540398899994, "SHAPE_Area": 353.26438265899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364238.650100000202656, 256547.13459999859333 ], [ 364221.877499997615814, 256528.21000000089407 ], [ 364211.316399998962879, 256537.411699999123812 ], [ 364228.893399998545647, 256556.553899999707937 ], [ 364238.650100000202656, 256547.13459999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033500", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-107", "ACRE": "4,568 sq ft", "LONGITUDE": -64.87579974000001, "LATITUDE": 18.33787576, "OBJECTID_1": 22991, "PARCEL_NO_": "105703033500", "Tax_Legal_": "ANNAS RETREAT 173-107 NEW QTR", "Name": "FELICIANO, EASTEBAN & M", "Address": "7732 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13800, "Improved_V": 131800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.247032488000002, "SHAPE_Area": 471.898660355 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364640.949600003659725, 256556.337799999862909 ], [ 364637.157200001180172, 256528.2314000017941 ], [ 364619.385999999940395, 256531.885600000619888 ], [ 364626.4054000005126, 256559.807399999350309 ], [ 364626.414599999785423, 256559.80519999936223 ], [ 364640.949600003659725, 256556.337799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703041100", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-142", "ACRE": "0.10", "LONGITUDE": -64.87714484, "LATITUDE": 18.33788262, "OBJECTID_1": 23009, "PARCEL_NO_": "105703041100", "Tax_Legal_": "ANNAS RETREAT 173-142 NEW QTR", "Name": "FALERO, JORGE & ISIDRA", "Address": "7752 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 89200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.484434925599999, "SHAPE_Area": 417.858653995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364499.855700001120567, 256553.916499998420477 ], [ 364492.816500000655651, 256528.316599998623133 ], [ 364481.499399997293949, 256531.601399999111891 ], [ 364477.458800002932549, 256532.623799998313189 ], [ 364484.501599997282028, 256557.801600001752377 ], [ 364499.855700001120567, 256553.916499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88720491, "LATITUDE": 18.33782816, "OBJECTID_1": 21678, "PARCEL_NO_": "105604020300", "Tax_Legal_": "148-318 ANNAS RETREAT NEW QTR", "Name": "GEORGE, GABRIELLE", "Address": "7392 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.09327170100001, "SHAPE_Area": 646.770259162 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363420.157600000500679, 256508.174899999052286 ], [ 363419.952899999916553, 256508.10080000013113 ], [ 363419.699100002646446, 256509.612199999392033 ], [ 363413.75280000269413, 256545.027300000190735 ], [ 363429.852099999785423, 256548.325399998575449 ], [ 363437.394799999892712, 256514.823300000280142 ], [ 363437.917199999094009, 256512.502900000661612 ], [ 363420.157600000500679, 256508.174899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604023100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-263", "ACRE": ".15", "LONGITUDE": -64.88444623, "LATITUDE": 18.33791212, "OBJECTID_1": 21706, "PARCEL_NO_": "105604023100", "Tax_Legal_": "148-263 ANNAS RETREAT NEW QTR", "Name": "COGGINS, MICHAEL & NORMA", "Address": "PO Box 304113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 160900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.331576800600004, "SHAPE_Area": 536.40875409700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363729.902900002896786, 256538.7489 ], [ 363729.182899996638298, 256528.610500000417233 ], [ 363704.172799997031689, 256530.094500001519918 ], [ 363703.998400002717972, 256550.569200001657009 ], [ 363728.997599996626377, 256550.351599998772144 ], [ 363729.902900002896786, 256538.7489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803030700", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-167", "ACRE": ".287", "LONGITUDE": -64.85936591, "LATITUDE": 18.33778401, "OBJECTID_1": 23924, "PARCEL_NO_": "105803030700", "Tax_Legal_": "SMITH BAY 19-2-167 EAST END QUARTER", "Name": "BRYAN, MARJORIE & ENCARNACION, M", "Address": "PO Box 306932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32300, "Improved_V": 173000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.499473099, "SHAPE_Area": 1274.76729142 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366375.70719999819994, 256525.995299998670816 ], [ 366352.088799998164177, 256522.300500001758337 ], [ 366352.170400001108646, 256524.033900000154972 ], [ 366352.313299998641014, 256527.07039999961853 ], [ 366356.768200002610683, 256572.069699998944998 ], [ 366362.412399999797344, 256572.115899998694658 ], [ 366388.262900002300739, 256566.627999998629093 ], [ 366375.70719999819994, 256525.995299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604024300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-293", "ACRE": ".187", "LONGITUDE": -64.88390805, "LATITUDE": 18.3378374, "OBJECTID_1": 21718, "PARCEL_NO_": "105604024300", "Tax_Legal_": "ANNAS RETREAT 148-293 NEW QTR", "Name": "Waukesha Warner-Harrison & Waukebo Warner", "Address": "6050 Estate Lovenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8024801, "Country": "United States", "Land_Value": 24700, "Improved_V": 110700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.942989654, "SHAPE_Area": 831.80514192099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363792.9679000005126, 256519.0 ], [ 363778.526199996471405, 256510.438099998980761 ], [ 363750.821999996900558, 256544.197399999946356 ], [ 363760.478000000119209, 256546.598499998450279 ], [ 363777.378200002014637, 256550.536499999463558 ], [ 363792.9679000005126, 256519.0 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703034000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-112", "ACRE": "0.09", "LONGITUDE": -64.87505479, "LATITUDE": 18.3378526, "OBJECTID_1": 22996, "PARCEL_NO_": "105703034000", "Tax_Legal_": "ANNAS RETREAT 173-112 NEW QTR", "Name": "PERCEL, B. & JOSEPH, F. C/O", "Address": "4717 Avenue K", "City": "BROOKLYN", "State": "New York", "Zip": 11234, "Country": "United States", "Land_Value": 13300, "Improved_V": 78500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.546797200200004, "SHAPE_Area": 462.539894355 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364701.676600001752377, 256527.070700000971556 ], [ 364702.283299997448921, 256550.506999999284744 ], [ 364702.220399998128414, 256557.894799999892712 ], [ 364710.290700003504753, 256557.116500001400709 ], [ 364716.7466000020504, 256556.535999998450279 ], [ 364717.808300003409386, 256526.569400001317263 ], [ 364701.676600001752377, 256527.070700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703014100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-283", "ACRE": ".126", "LONGITUDE": -64.8821433, "LATITUDE": 18.33783848, "OBJECTID_1": 22862, "PARCEL_NO_": "105703014100", "Tax_Legal_": "148-283 ANNAS RETREAT NEW QUARTER", "Name": "GEORGE & RUTH SMITH FAMILY TRUST", "Address": "7363 Estate Tutu 148-283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 113200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.822727042300002, "SHAPE_Area": 570.45097774500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363976.749600000679493, 256527.259199999272823 ], [ 363967.930500000715256, 256521.276399999856949 ], [ 363957.493400000035763, 256515.913600001484156 ], [ 363945.958599999547005, 256544.739000000059605 ], [ 363960.414700001478195, 256551.612399999052286 ], [ 363965.328100003302097, 256542.78660000115633 ], [ 363976.749600000679493, 256527.259199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045700", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-155", "ACRE": "0.10", "LONGITUDE": -64.87801083, "LATITUDE": 18.33784337, "OBJECTID_1": 23053, "PARCEL_NO_": "105703045700", "Tax_Legal_": "ANNAS RETREAT 173-155 NEW QTR", "Name": "PETERSEN, HUGO E", "Address": "PO Box 12333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14900, "Improved_V": 192700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.031243888500001, "SHAPE_Area": 416.70847776699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364407.946900002658367, 256551.897700000554323 ], [ 364400.137299999594688, 256522.069600000977516 ], [ 364385.587700001895428, 256526.172400001436472 ], [ 364395.350699998438358, 256553.836399998515844 ], [ 364407.946900002658367, 256551.897700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803030500", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-169", "ACRE": ".289", "LONGITUDE": -64.85985496000001, "LATITUDE": 18.33773195, "OBJECTID_1": 23923, "PARCEL_NO_": "105803030500", "Tax_Legal_": "19-2-169 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "MARTIN, SHELDON & COLEEN", "Address": "6797 ESTATE SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021382, "Country": "United States", "Land_Value": 32300, "Improved_V": 100600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.23402162599999, "SHAPE_Area": 1206.5223822099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366328.252999998629093, 256519.677000001072884 ], [ 366307.95160000026226, 256512.983300000429153 ], [ 366307.224600002169609, 256519.102000001817942 ], [ 366300.454000003635883, 256556.621199999004602 ], [ 366309.269500002264977, 256563.026200000196695 ], [ 366314.88849999755621, 256566.027499999850988 ], [ 366328.55799999833107, 256570.572299998253584 ], [ 366328.138300001621246, 256525.183699999004602 ], [ 366328.252999998629093, 256519.677000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604024800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-288", "ACRE": ".13", "LONGITUDE": -64.88297485, "LATITUDE": 18.33786065, "OBJECTID_1": 21723, "PARCEL_NO_": "105604024800", "Tax_Legal_": "148-288 ANNAS RETREAT NEW QTR", "Name": "HARRIET MONSANTO, STEVE ASKEW & JAMES ASKEW", "Address": "4105 Sherman Drive", "City": "Riverside", "State": "California", "Zip": 925034049, "Country": "United States", "Land_Value": 17800, "Improved_V": 96200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.597768544399997, "SHAPE_Area": 563.045707784 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363887.088799998164177, 256545.312699999660254 ], [ 363878.436999998986721, 256519.699599999934435 ], [ 363859.843199998140335, 256525.246899999678135 ], [ 363863.662600003182888, 256550.187199998646975 ], [ 363869.3175999969244, 256548.966899998486042 ], [ 363887.088799998164177, 256545.312699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703050700", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-220", "ACRE": "0.09", "LONGITUDE": -64.87874563, "LATITUDE": 18.33785783, "OBJECTID_1": 23063, "PARCEL_NO_": "105703050700", "Tax_Legal_": "173-220 ANNAS RETREAT NEW QUARTER", "Name": "LESLIE, JEANIL", "Address": "PO Box 9020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11300, "Improved_V": 156800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.072068864599999, "SHAPE_Area": 359.00865835100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364332.945100001990795, 256545.684799998998642 ], [ 364316.58219999819994, 256524.131000000983477 ], [ 364305.694499999284744, 256533.53999999910593 ], [ 364324.06700000166893, 256553.955400001257658 ], [ 364330.573299996554852, 256547.464699998497963 ], [ 364332.945100001990795, 256545.684799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033600", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-108", "ACRE": "0.10", "LONGITUDE": -64.87564177, "LATITUDE": 18.33784778, "OBJECTID_1": 22992, "PARCEL_NO_": "105703033600", "Tax_Legal_": "173-108&173A-78 ANNAS RETREAT NEW QUARTER", "Name": "PEREZ, KAREL (LIFE ESTATE)", "Address": "PO Box 10154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18600, "Improved_V": 146900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.798128605499997, "SHAPE_Area": 478.28385534300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364657.108300000429153, 256552.670400001108646 ], [ 364655.718599997460842, 256526.483399998396635 ], [ 364637.157200001180172, 256528.2314000017941 ], [ 364640.949600003659725, 256556.337799999862909 ], [ 364657.108300000429153, 256552.670400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703034100", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-113", "ACRE": "0.09", "LONGITUDE": -64.87491775, "LATITUDE": 18.33784394, "OBJECTID_1": 22997, "PARCEL_NO_": "105703034100", "Tax_Legal_": "ANNAS RETREAT 173-113 NEW QTR.", "Name": "HAZEL, JAHREEM N", "Address": "7719 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13300, "Improved_V": 79800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.700685290600006, "SHAPE_Area": 403.73182322100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364729.658399999141693, 256555.375100001692772 ], [ 364732.325499996542931, 256526.265999998897314 ], [ 364717.808300003409386, 256526.569400001317263 ], [ 364716.7466000020504, 256556.535999998450279 ], [ 364729.658399999141693, 256555.375100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803030200", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-172", "ACRE": ".25", "LONGITUDE": -64.85852686, "LATITUDE": 18.33773417, "OBJECTID_1": 23921, "PARCEL_NO_": "105803030200", "Tax_Legal_": "SMITH BAY 19-2-172 EAST END QUARTER", "Name": "CASTRO, VICTOR", "Address": "PO Box 595", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 81700, "Improved_V": 105800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.88009674700001, "SHAPE_Area": 1204.18739652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366479.168099999427795, 256547.085900001227856 ], [ 366452.384199999272823, 256517.545800000429153 ], [ 366432.042999997735023, 256538.910900000482798 ], [ 366463.499700002372265, 256569.545800000429153 ], [ 366465.457299999892712, 256567.964600000530481 ], [ 366470.061099998652935, 256562.567099999636412 ], [ 366473.077399998903275, 256558.280799999833107 ], [ 366476.252400003373623, 256552.407000001519918 ], [ 366479.168099999427795, 256547.085900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703022900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-161", "ACRE": ".137", "LONGITUDE": -64.88070607, "LATITUDE": 18.33784591, "OBJECTID_1": 22931, "PARCEL_NO_": "105703022900", "Tax_Legal_": "ANNAS RETREAT 148-161 NEW QTR", "Name": "RICOTT DAVIS FAMILY TRUST", "Address": "7058 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 153900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.577954769200005, "SHAPE_Area": 582.10853205900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364127.396899998188019, 256544.113099999725819 ], [ 364119.533399999141693, 256520.617400001734495 ], [ 364096.893700003623962, 256527.820300001651049 ], [ 364105.56360000371933, 256551.322700001299381 ], [ 364127.396899998188019, 256544.113099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88737126, "LATITUDE": 18.33779562, "OBJECTID_1": 21677, "PARCEL_NO_": "105604020200", "Tax_Legal_": "ANNAS RETREAT 148-319 NEW QTR", "Name": "DORSETTE, GEORGE & ICILDA", "Address": "PO Box 303704", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 86200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.623462186, "SHAPE_Area": 710.22356814600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363403.158100001513958, 256502.023400001227856 ], [ 363403.124899998307228, 256502.013999998569489 ], [ 363402.816899999976158, 256503.563400000333786 ], [ 363395.234600000083447, 256541.709300000220537 ], [ 363413.75280000269413, 256545.027300000190735 ], [ 363419.699100002646446, 256509.612199999392033 ], [ 363419.952899999916553, 256508.10080000013113 ], [ 363403.158100001513958, 256502.023400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703023000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-128", "ACRE": ".126", "LONGITUDE": -64.88033972, "LATITUDE": 18.33785506, "OBJECTID_1": 22932, "PARCEL_NO_": "105703023000", "Tax_Legal_": "148-128 ANNAS RETREAT NEW QUARTER", "Name": "Catherine M. Percel", "Address": "7055 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021798, "Country": "United States", "Land_Value": 16400, "Improved_V": 99300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.2038526276, "SHAPE_Area": 574.44819029600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364163.052699998021126, 256523.506700001657009 ], [ 364133.130999997258186, 256533.605399999767542 ], [ 364139.4341000020504, 256550.966600000858307 ], [ 364168.547600001096725, 256541.072399999946356 ], [ 364163.052699998021126, 256523.506700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703041200", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-141", "ACRE": "0.10", "LONGITUDE": -64.87700606, "LATITUDE": 18.3378452, "OBJECTID_1": 23010, "PARCEL_NO_": "105703041200", "Tax_Legal_": "ANNAS RETREAT 173-141 NEW QTR", "Name": "PROSPER, CASSANDRA", "Address": "PO Box 1212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14900, "Improved_V": 89200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.531589403799998, "SHAPE_Area": 389.09493528299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364513.593599997460842, 256550.44029999896884 ], [ 364507.36429999768734, 256524.424800001084805 ], [ 364496.04900000244379, 256527.498599998652935 ], [ 364492.816500000655651, 256528.316599998623133 ], [ 364499.855700001120567, 256553.916499998420477 ], [ 364513.593599997460842, 256550.44029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604023000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-302", "ACRE": "0.16", "LONGITUDE": -64.8848193, "LATITUDE": 18.33788034, "OBJECTID_1": 21705, "PARCEL_NO_": "105604023000", "Tax_Legal_": "148-302 ANNAS RETREAT No 1 NEW QTR", "Name": "VIVIAN REBECCA FAULKNER LIVING TRUST", "Address": "P O BOX 3102 VETERANS DRIVE", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.37029432, "SHAPE_Area": 607.31723302900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363658.337700001895428, 256543.981199998408556 ], [ 363695.177500002086163, 256544.797499999403954 ], [ 363695.288999997079372, 256531.71059999987483 ], [ 363694.523999996483326, 256526.849199999123812 ], [ 363659.838200002908707, 256528.254000000655651 ], [ 363658.337700001895428, 256543.981199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703034200", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-114", "ACRE": "0.09", "LONGITUDE": -64.87477535, "LATITUDE": 18.33784012, "OBJECTID_1": 22998, "PARCEL_NO_": "105703034200", "Tax_Legal_": "ANNAS RETREAT 173-114 NEW QTR", "Name": "PHILLIPS (LIFE ESTATE), PERCY", "Address": "173-144 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 78000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.863858748599995, "SHAPE_Area": 466.02627573199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364747.415200002491474, 256553.409499999135733 ], [ 364747.648999996483326, 256525.969300001859665 ], [ 364732.325499996542931, 256526.265999998897314 ], [ 364729.658399999141693, 256555.375100001692772 ], [ 364747.415200002491474, 256553.409499999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045600", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-156", "ACRE": "0.10", "LONGITUDE": -64.87788526, "LATITUDE": 18.33782083, "OBJECTID_1": 23052, "PARCEL_NO_": "105703045600", "Tax_Legal_": "ANNAS RETREAT 173-156 NEW QTR", "Name": "CALLWOOD, ANGELA", "Address": "PO Box 8029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011029, "Country": "United States", "Land_Value": 14900, "Improved_V": 76500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.430900084399994, "SHAPE_Area": 397.86006985799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364420.882100000977516, 256547.992800001055002 ], [ 364413.05629999935627, 256520.064399998635054 ], [ 364400.137299999594688, 256522.069600000977516 ], [ 364407.946900002658367, 256551.897700000554323 ], [ 364416.837899997830391, 256549.437300000339746 ], [ 364420.882100000977516, 256547.992800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703015000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-240", "ACRE": ".149", "LONGITUDE": -64.88162238, "LATITUDE": 18.3378307, "OBJECTID_1": 22871, "PARCEL_NO_": "105703015000", "Tax_Legal_": "ANNAS RETREAT 148-240 NEW QTR", "Name": "DAVIS, GLORIA", "Address": "7368 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 116500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.746605015200004, "SHAPE_Area": 573.17230379900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364030.734700001776218, 256532.13399999961257 ], [ 364023.593000002205372, 256518.565600000321865 ], [ 364022.000200003385544, 256516.230500001460314 ], [ 363997.647200003266335, 256535.240699999034405 ], [ 364007.209600001573563, 256548.617899999022484 ], [ 364032.314999997615814, 256535.946600001305342 ], [ 364030.734700001776218, 256532.13399999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703035500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.873697, "LATITUDE": 18.33776423, "OBJECTID_1": 23002, "PARCEL_NO_": "105703035500", "Tax_Legal_": "ANNAS RETREAT 173A-26 NEW QTR.", "Name": "JAMES, GEORGE & CHRISTINE", "Address": "BOX 5318", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.61868374399999, "SHAPE_Area": 610.70503209900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364864.400700002908707, 256546.134300000965595 ], [ 364858.243299998342991, 256511.675700001418591 ], [ 364842.043300002813339, 256520.197900000959635 ], [ 364848.200699999928474, 256554.656599998474121 ], [ 364864.400700002908707, 256546.134300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033700", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-109", "ACRE": "0.10", "LONGITUDE": -64.87548852, "LATITUDE": 18.33783584, "OBJECTID_1": 22993, "PARCEL_NO_": "105703033700", "Tax_Legal_": "173-109 ANNAS RETREAT NEW QUARTER", "Name": "LEONARD, EMRIC DENWITTE & PERSIA VANCIA (TRUSTEES)", "Address": "PO Box 502833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 13300, "Improved_V": 163700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.806032030200001, "SHAPE_Area": 379.56163125799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364671.033100001513958, 256527.24210000038147 ], [ 364655.718599997460842, 256526.483399998396635 ], [ 364657.108300000429153, 256552.670400001108646 ], [ 364671.629100002348423, 256551.944899998605251 ], [ 364671.033100001513958, 256527.24210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87464316000001, "LATITUDE": 18.337831, "OBJECTID_1": 22998, "PARCEL_NO_": "105703034200", "Tax_Legal_": "ANNAS RETREAT 173-114 NEW QTR", "Name": "PHILLIPS (LIFE ESTATE), PERCY", "Address": "173-144 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 78000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.522421481400002, "SHAPE_Area": 304.67138247899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364759.520700000226498, 256552.241999998688698 ], [ 364758.13289999961853, 256525.844000000506639 ], [ 364747.648999996483326, 256525.969300001859665 ], [ 364747.415200002491474, 256553.409499999135733 ], [ 364749.836000002920628, 256553.218199998140335 ], [ 364759.520700000226498, 256552.241999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704034700", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173A-16", "ACRE": "0.35", "LONGITUDE": -64.87259423, "LATITUDE": 18.33762456, "OBJECTID_1": 23598, "PARCEL_NO_": "105704034700", "Tax_Legal_": "ANNAS RETREAT 173A-16 NEW QTR.", "Name": "Isaac Williams, Esther Williams, & Simon Williams", "Address": "173A Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 114300, "Improved_V": 105600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.94657766700001, "SHAPE_Area": 1853.5934930599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364996.027400001883507, 256523.991399999707937 ], [ 364982.638400003314018, 256486.518199998885393 ], [ 364963.170000001788139, 256500.079999998211861 ], [ 364942.101599998772144, 256512.15089999884367 ], [ 364960.195900000631809, 256551.277199998497963 ], [ 364996.027400001883507, 256523.991399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704012300", "MAP": null, "PARCEL_NAM": "57B-11", "ACRE": null, "LONGITUDE": -64.87235775000001, "LATITUDE": 18.33776364, "OBJECTID_1": 23469, "PARCEL_NO_": "105704012300", "Tax_Legal_": "SMITH BAY 57B-11 & 57-12B EAST END", "Name": "WILLIAMS, JULES L", "Address": "BOX 2854", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.90222222599999, "SHAPE_Area": 752.10981501000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365021.759300000965595, 256532.434599999338388 ], [ 365011.422899998724461, 256515.251400001347065 ], [ 364996.027400001883507, 256523.991399999707937 ], [ 364960.195900000631809, 256551.277199998497963 ], [ 364961.896200001239777, 256554.953899998217821 ], [ 364992.652900002896786, 256541.484499998390675 ], [ 365021.759300000965595, 256532.434599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803030800", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-166", "ACRE": ".322", "LONGITUDE": -64.85910514, "LATITUDE": 18.33770073, "OBJECTID_1": 23925, "PARCEL_NO_": "105803030800", "Tax_Legal_": "SMITH BAY 19-2-166 EAST END QUARTER", "Name": "CHALWELL, DESIREE", "Address": "Po Box 305632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.16342967599999, "SHAPE_Area": 1293.9148634600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366416.692400000989437, 256542.373799998313189 ], [ 366400.816100001335144, 256512.901900000870228 ], [ 366375.70719999819994, 256525.995299998670816 ], [ 366388.262900002300739, 256566.627999998629093 ], [ 366394.720600001513958, 256565.836500000208616 ], [ 366400.398999996483326, 256561.87220000103116 ], [ 366416.692400000989437, 256542.373799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703057800", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-8", "ACRE": "0.09", "LONGITUDE": -64.87909965, "LATITUDE": 18.33782982, "OBJECTID_1": 23134, "PARCEL_NO_": "105703057800", "Tax_Legal_": "ANNAS RETREAT 173-8 NEW QTR.", "Name": "WELLINGTON, C.", "Address": "7512 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 108500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.752755555299998, "SHAPE_Area": 304.33031996699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364295.140500001609325, 256541.897399999201298 ], [ 364277.574199996888638, 256521.488699998706579 ], [ 364269.4391999989748, 256529.865800000727177 ], [ 364286.208099998533726, 256549.212600000202656 ], [ 364295.140500001609325, 256541.897399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88760858000001, "LATITUDE": 18.33772264, "OBJECTID_1": 21676, "PARCEL_NO_": "105604020100", "Tax_Legal_": "148-320,321&322 ANNAS RETREAT NEW QTR", "Name": "GRACE GOSPEL CHAPEL INC", "Address": "PO Box 7094", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 200400, "Improved_V": 198200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.502704972, "SHAPE_Area": 1371.5874191299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363403.124899998307228, 256502.013999998569489 ], [ 363366.89639999717474, 256491.747000001370907 ], [ 363366.622800000011921, 256492.712499998509884 ], [ 363364.738600000739098, 256524.572200000286102 ], [ 363364.693000003695488, 256524.722500000149012 ], [ 363371.368400000035763, 256532.252099998295307 ], [ 363372.18809887196403, 256533.45270305473241 ], [ 363373.185080460621975, 256534.510711396753322 ], [ 363374.334925678791478, 256535.400211207917891 ], [ 363375.609471347881481, 256536.099415954085998 ], [ 363376.97749999910593, 256536.5912000015378 ], [ 363395.234600000083447, 256541.709300000220537 ], [ 363402.816899999976158, 256503.563400000333786 ], [ 363403.124899998307228, 256502.013999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604024200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-294", "ACRE": ".241", "LONGITUDE": -64.88408176, "LATITUDE": 18.33775953, "OBJECTID_1": 21717, "PARCEL_NO_": "105604024200", "Tax_Legal_": "148-294 ANNAS RETREAT NEW QTR", "Name": "THOMAS, VERNON", "Address": "PO Box 303935", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 114800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.400659123, "SHAPE_Area": 888.47973759900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363778.526199996471405, 256510.438099998980761 ], [ 363771.317900002002716, 256504.67960000038147 ], [ 363765.72410000115633, 256498.723200000822544 ], [ 363729.902900002896786, 256538.7489 ], [ 363743.581399999558926, 256542.238299999386072 ], [ 363750.821999996900558, 256544.197399999946356 ], [ 363778.526199996471405, 256510.438099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604024900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-287", "ACRE": ".123", "LONGITUDE": -64.88278604, "LATITUDE": 18.33780777, "OBJECTID_1": 21724, "PARCEL_NO_": "105604024900", "Tax_Legal_": "148-287 ANNAS RETREAT NEW QTR", "Name": "MACTAVIOUS FAMILY TRUST", "Address": "148-287 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17300, "Improved_V": 123400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.827212238000001, "SHAPE_Area": 556.57759301600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363905.666400000452995, 256541.665100000798702 ], [ 363898.646899998188019, 256513.743299998342991 ], [ 363878.436999998986721, 256519.699599999934435 ], [ 363887.088799998164177, 256545.312699999660254 ], [ 363891.127599999308586, 256544.501400001347065 ], [ 363905.666400000452995, 256541.665100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703041300", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-140", "ACRE": "0.10", "LONGITUDE": -64.87686812, "LATITUDE": 18.33781226, "OBJECTID_1": 23011, "PARCEL_NO_": "105703041300", "Tax_Legal_": "173-140 ANNAS RETREAT NEW QUARTER", "Name": "HODGE, M.,F.,E,K. & M. & CALLWOOD,R. & L. PENN", "Address": "PO Box 10904", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.756117556299998, "SHAPE_Area": 415.90128421100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364528.945900000631809, 256546.76630000025034 ], [ 364521.912100002169609, 256520.533100001513958 ], [ 364519.487800002098083, 256521.146600000560284 ], [ 364507.36429999768734, 256524.424800001084805 ], [ 364513.593599997460842, 256550.44029999896884 ], [ 364528.945900000631809, 256546.76630000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703016900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-221", "ACRE": ".132", "LONGITUDE": -64.88131806, "LATITUDE": 18.33782696, "OBJECTID_1": 22890, "PARCEL_NO_": "105703016900", "Tax_Legal_": "ANNAS RETREAT 148-221 NEW QTR", "Name": "LETTSOME, HEUROY & ELLEN R", "Address": "7142 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 42600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.9834824247, "SHAPE_Area": 501.34650061500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364063.754000000655651, 256537.048300001770258 ], [ 364058.241099998354912, 256521.593400001525879 ], [ 364056.649999998509884, 256519.047200001776218 ], [ 364030.734700001776218, 256532.13399999961257 ], [ 364032.314999997615814, 256535.946600001305342 ], [ 364037.066600002348423, 256546.118000000715256 ], [ 364063.754000000655651, 256537.048300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-111", "ACRE": "0.09", "LONGITUDE": -64.87519773, "LATITUDE": 18.33786624, "OBJECTID_1": 22995, "PARCEL_NO_": "105703033900", "Tax_Legal_": "ANNAS RETREAT 173-111 NEW QTR", "Name": "WILLIAMS, JAMMA S", "Address": "7724 Estate Tutu Vly", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 106100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.4152797335, "SHAPE_Area": 469.430904919 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364702.283299997448921, 256550.506999999284744 ], [ 364701.676600001752377, 256527.070700000971556 ], [ 364687.157600000500679, 256527.585099998861551 ], [ 364686.956200003623962, 256551.225900001823902 ], [ 364686.887900002300739, 256559.246899999678135 ], [ 364702.220399998128414, 256557.894799999892712 ], [ 364702.283299997448921, 256550.506999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703014000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-284", "ACRE": ".121", "LONGITUDE": -64.88230144000001, "LATITUDE": 18.3377811, "OBJECTID_1": 22861, "PARCEL_NO_": "105703014000", "Tax_Legal_": "ANNAS RETREAT 148-284 NEW QTR", "Name": "GOMEZ, ALICE", "Address": "7362 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 106400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.741233549300006, "SHAPE_Area": 535.89833280699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363957.493400000035763, 256515.913600001484156 ], [ 363946.235600002110004, 256512.232900001108646 ], [ 363938.183200001716614, 256510.900400001555681 ], [ 363932.272900000214577, 256542.093899998813868 ], [ 363937.908100001513958, 256543.195500001311302 ], [ 363945.958599999547005, 256544.739000000059605 ], [ 363957.493400000035763, 256515.913600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703071100", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-66", "ACRE": "0.09", "LONGITUDE": -64.87954583, "LATITUDE": 18.3378101, "OBJECTID_1": 23227, "PARCEL_NO_": "105703071100", "Tax_Legal_": "ANNAS RETREAT 173-66 NEW QTR", "Name": "CRABBE, MELTA", "Address": "7510 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11300, "Improved_V": 111000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.389647108299997, "SHAPE_Area": 330.883345244 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364247.596799999475479, 256538.130800001323223 ], [ 364232.438699997961521, 256519.008299998939037 ], [ 364221.877499997615814, 256528.21000000089407 ], [ 364238.650100000202656, 256547.13459999859333 ], [ 364247.596799999475479, 256538.130800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045500", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-157", "ACRE": "0.10", "LONGITUDE": -64.87773736, "LATITUDE": 18.33777951, "OBJECTID_1": 23051, "PARCEL_NO_": "105703045500", "Tax_Legal_": "ANNAS RETREAT 173-157 NEW QTR", "Name": "VAN HOLTEN, JENNIFER P", "Address": "7773 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 89100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.629175506400003, "SHAPE_Area": 548.408473007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364438.66950000077486, 256542.438799999654293 ], [ 364432.45099999755621, 256515.156899999827147 ], [ 364413.05629999935627, 256520.064399998635054 ], [ 364420.882100000977516, 256547.992800001055002 ], [ 364432.202799998223782, 256544.285799998790026 ], [ 364438.66950000077486, 256542.438799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703013900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-285", "ACRE": ".121", "LONGITUDE": -64.8824589, "LATITUDE": 18.33775642, "OBJECTID_1": 22860, "PARCEL_NO_": "105703013900", "Tax_Legal_": "ANNAS RETREAT 148-285 NEW QTR", "Name": "PERCIVAL, D. & M", "Address": "7359 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 109500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.657756650099998, "SHAPE_Area": 515.21720591799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363918.032600000500679, 256509.891100000590086 ], [ 363919.384499996900558, 256540.510800000280142 ], [ 363925.0287000015378, 256540.557000000029802 ], [ 363932.272900000214577, 256542.093899998813868 ], [ 363938.183200001716614, 256510.900400001555681 ], [ 363926.903800003230572, 256509.752700001001358 ], [ 363918.032600000500679, 256509.891100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703013800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-286", "ACRE": ".130", "LONGITUDE": -64.8826177, "LATITUDE": 18.33776379, "OBJECTID_1": 22859, "PARCEL_NO_": "105703013800", "Tax_Legal_": "ANNAS RETREAT 148-286 NEW QTR", "Name": "WILLIAMS, HERNANDO & MYRNA", "Address": "PO Box 1323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18700, "Improved_V": 89500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.166630880300005, "SHAPE_Area": 501.601955621 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363918.032600000500679, 256509.891100000590086 ], [ 363908.3496999964118, 256510.656300000846386 ], [ 363898.646899998188019, 256513.743299998342991 ], [ 363905.666400000452995, 256541.665100000798702 ], [ 363912.127700001001358, 256540.451400000602007 ], [ 363919.384499996900558, 256540.510800000280142 ], [ 363918.032600000500679, 256509.891100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704041400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-139", "ACRE": "0.10", "LONGITUDE": -64.87672767, "LATITUDE": 18.33777421, "OBJECTID_1": 23630, "PARCEL_NO_": "105704041400", "Tax_Legal_": "ANNAS RETREAT 173-139 NEW QTR", "Name": "GEORGE, GLADYS & ONEL", "Address": "7745 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 88000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.273185233299998, "SHAPE_Area": 419.902104877 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364543.493699997663498, 256542.874600000679493 ], [ 364537.26799999922514, 256516.436900001019239 ], [ 364525.144500002264977, 256519.715199999511242 ], [ 364521.912100002169609, 256520.533100001513958 ], [ 364528.945900000631809, 256546.76630000025034 ], [ 364543.493699997663498, 256542.874600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604024100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-295", "ACRE": ".184", "LONGITUDE": -64.88419138, "LATITUDE": 18.33763893, "OBJECTID_1": 21716, "PARCEL_NO_": "105604024100", "Tax_Legal_": "148-295 ANNAS RETREAT NEW QTR", "Name": "Leonard Lawrence & Derrick Andrew Lawrence", "Address": "7119 S Durango Dr", "City": "Las Vegas", "State": "Nevada", "Zip": 891132059, "Country": "United States", "Land_Value": 24700, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.81236492599999, "SHAPE_Area": 835.208392086 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363765.72410000115633, 256498.723200000822544 ], [ 363754.536399997770786, 256486.810400001704693 ], [ 363728.538400001823902, 256509.606800001114607 ], [ 363729.182899996638298, 256528.610500000417233 ], [ 363729.902900002896786, 256538.7489 ], [ 363765.72410000115633, 256498.723200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604030100", "MAP": "D9-356-T63", "PARCEL_NAM": "6-2", "ACRE": "1.39", "LONGITUDE": -64.88537574, "LATITUDE": 18.33742732, "OBJECTID_1": 21768, "PARCEL_NO_": "105604030100", "Tax_Legal_": "ANNAS RETREAT 6-2 NEW QTR", "Name": "EMMANUEL BAPTIST CHURCH INC", "Address": "P.O.BOX 3539", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 160100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.92738286999997, "SHAPE_Area": 6627.6645612299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363663.602899998426437, 256464.956799998879433 ], [ 363608.361100003123283, 256418.275100000202656 ], [ 363591.835699997842312, 256465.002700001001358 ], [ 363571.106100000441074, 256531.960799999535084 ], [ 363579.151199996471405, 256534.137499999254942 ], [ 363589.609899997711182, 256536.967300001531839 ], [ 363594.177500002086163, 256537.853799998760223 ], [ 363661.605499997735023, 256510.114399999380112 ], [ 363661.635999999940395, 256506.526099998503923 ], [ 363662.564599998295307, 256492.179299999028444 ], [ 363663.532799996435642, 256473.188799999654293 ], [ 363663.602899998426437, 256464.956799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703057700", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-9", "ACRE": "0.09", "LONGITUDE": -64.87901023000001, "LATITUDE": 18.33774631, "OBJECTID_1": 23133, "PARCEL_NO_": "105703057700", "Tax_Legal_": "ANNAS RETREAT 173-9 NEW QTR", "Name": "NEILLE, ROSAURA J. & MALISSA", "Address": "7253 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 96200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.169449428799993, "SHAPE_Area": 408.15816539899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364305.694499999284744, 256533.53999999910593 ], [ 364288.959700003266335, 256510.182799998670816 ], [ 364277.574199996888638, 256521.488699998706579 ], [ 364295.140500001609325, 256541.897399999201298 ], [ 364300.824199996888638, 256537.299899999052286 ], [ 364305.694499999284744, 256533.53999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704035400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87351646, "LATITUDE": 18.33766977, "OBJECTID_1": 23605, "PARCEL_NO_": "105704035400", "Tax_Legal_": "ANNAS RETREAT 173A-25 NEW QTR.", "Name": "ROBERTS, SALOME & DOMINIQUE", "Address": "7635 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 186100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.818239134, "SHAPE_Area": 829.33309202099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364886.277199998497963, 256533.858899999409914 ], [ 364880.920699998736382, 256500.040100000798702 ], [ 364863.102700002491474, 256509.182399999350309 ], [ 364858.243299998342991, 256511.675700001418591 ], [ 364864.400700002908707, 256546.134300000965595 ], [ 364886.277199998497963, 256533.858899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-158", "ACRE": "0.10", "LONGITUDE": -64.87757782, "LATITUDE": 18.33773972, "OBJECTID_1": 23050, "PARCEL_NO_": "105703045400", "Tax_Legal_": "ANNAS RETREAT 173-158 NEW QTR", "Name": "FALERO, JULIE", "Address": "173-158 EST. TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 120900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.650473943600005, "SHAPE_Area": 429.858785668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364454.025399997830391, 256538.342700000852346 ], [ 364446.997000001370907, 256511.476199999451637 ], [ 364432.45099999755621, 256515.156899999827147 ], [ 364438.66950000077486, 256542.438799999654293 ], [ 364447.560500003397465, 256539.978500001132488 ], [ 364454.025399997830391, 256538.342700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703041500", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-138", "ACRE": "0.10", "LONGITUDE": -64.87658581, "LATITUDE": 18.33773994, "OBJECTID_1": 23012, "PARCEL_NO_": "105703041500", "Tax_Legal_": "173-138 ANNAS RETREAT NEW QUARTER", "Name": "HARVEY, IRA & GLENDORA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13700, "Improved_V": 110300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.573573455499996, "SHAPE_Area": 421.43356819899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364558.846000000834465, 256539.200599998235703 ], [ 364551.815800003707409, 256512.545200001448393 ], [ 364542.116700001060963, 256515.210099998861551 ], [ 364537.26799999922514, 256516.436900001019239 ], [ 364543.493699997663498, 256542.874600000679493 ], [ 364558.846000000834465, 256539.200599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704012100", "MAP": "F9-698-T62", "PARCEL_NAM": "57B-10", "ACRE": "0.32", "LONGITUDE": -64.87128511, "LATITUDE": 18.33757585, "OBJECTID_1": 23467, "PARCEL_NO_": "105704012100", "Tax_Legal_": "SMITH BAY 57B-10 EAST END QTR", "Name": "STOUT, ROSEMARIE", "Address": "BOX 2877", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53400, "Improved_V": 215900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.72808840600001, "SHAPE_Area": 1812.3699883300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365135.528499998152256, 256524.077599998563528 ], [ 365102.922799997031689, 256470.615200001746416 ], [ 365099.535700000822544, 256489.585900001227856 ], [ 365097.04839999973774, 256497.587099999189377 ], [ 365092.120700001716614, 256508.101399999111891 ], [ 365085.605400003492832, 256515.64750000089407 ], [ 365098.238499999046326, 256547.20380000025034 ], [ 365111.206000000238419, 256539.499499998986721 ], [ 365133.095100000500679, 256525.746500000357628 ], [ 365135.528499998152256, 256524.077599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803030400", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-170", "ACRE": ".335", "LONGITUDE": -64.86014406, "LATITUDE": 18.33760128, "OBJECTID_1": 23922, "PARCEL_NO_": "105803030400", "Tax_Legal_": "19-2-170 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "MATTHIAS, ALFRED & CLIO", "Address": "6520 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36700, "Improved_V": 195500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.55144492900001, "SHAPE_Area": 1609.19136435 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366300.454000003635883, 256556.621199999004602 ], [ 366307.224600002169609, 256519.102000001817942 ], [ 366307.95160000026226, 256512.983300000429153 ], [ 366270.429200001060963, 256500.6114999987185 ], [ 366269.421400003135204, 256507.815699998289347 ], [ 366264.240099996328354, 256548.092199999839067 ], [ 366274.74549999833107, 256545.433899998664856 ], [ 366283.609499998390675, 256546.139800000935793 ], [ 366292.450199998915195, 256549.589600000530481 ], [ 366300.454000003635883, 256556.621199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703021200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-169", "ACRE": ".138", "LONGITUDE": -64.88099764, "LATITUDE": 18.33773075, "OBJECTID_1": 22914, "PARCEL_NO_": "105703021200", "Tax_Legal_": "ANNAS RETREAT 148-169 NEW QTR", "Name": "GAUTIER, VANNESA", "Address": "7143 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 72400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.129239043699997, "SHAPE_Area": 509.76992911799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364096.893700003623962, 256527.820300001651049 ], [ 364090.601499997079372, 256509.192600000649691 ], [ 364066.336599998176098, 256517.859900001436472 ], [ 364072.626999996602535, 256536.698699999600649 ], [ 364096.893700003623962, 256527.820300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703071200", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-65", "ACRE": "0.09", "LONGITUDE": -64.87944858, "LATITUDE": 18.33772538, "OBJECTID_1": 23228, "PARCEL_NO_": "105703071200", "Tax_Legal_": "ANNAS RETREAT 173-65 NEW QTR", "Name": "ARNOLD (LIFE ESTATE), ANITA", "Address": "PO Box 10396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11300, "Improved_V": 136600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.017149942399996, "SHAPE_Area": 347.22308776699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364258.168799996376038, 256527.662599999457598 ], [ 364243.0016999989748, 256509.595600001513958 ], [ 364232.438699997961521, 256519.008299998939037 ], [ 364247.596799999475479, 256538.130800001323223 ], [ 364258.168799996376038, 256527.662599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604031500", "MAP": "D9-356-T63", "PARCEL_NAM": "6-1", "ACRE": "1.17", "LONGITUDE": -64.8858534, "LATITUDE": 18.33724087, "OBJECTID_1": 21786, "PARCEL_NO_": "105604031500", "Tax_Legal_": "EST. ANNAS RETREAT 6-1 NEW QUARTER", "Name": "EMMANUEL BAPTIST CHURCH INC", "Address": "P.O.BOX 3539", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 153100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.06897380300001, "SHAPE_Area": 4221.3158439299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363608.361100003123283, 256418.275100000202656 ], [ 363529.976199999451637, 256437.898600000888109 ], [ 363566.278999999165535, 256530.654699999839067 ], [ 363571.106100000441074, 256531.960799999535084 ], [ 363591.835699997842312, 256465.002700001001358 ], [ 363608.361100003123283, 256418.275100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703014900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-241", "ACRE": ".154", "LONGITUDE": -64.88173793, "LATITUDE": 18.33768965, "OBJECTID_1": 22870, "PARCEL_NO_": "105703014900", "Tax_Legal_": "ANNAS RETREAT 148-241 NEW QTR", "Name": "SMITH, ALFE & MARLENE", "Address": "203 Heron Dr", "City": "Newport News", "State": "Virginia", "Zip": 23608, "Country": "United States", "Land_Value": 20500, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.293831497, "SHAPE_Area": 640.57602470500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364014.019799999892712, 256506.454900000244379 ], [ 364006.014200001955032, 256499.634399998933077 ], [ 363984.852200001478195, 256522.681499999016523 ], [ 363992.056900002062321, 256528.862100001424551 ], [ 363997.647200003266335, 256535.240699999034405 ], [ 364022.000200003385544, 256516.230500001460314 ], [ 364014.019799999892712, 256506.454900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045300", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-159", "ACRE": "0.10", "LONGITUDE": -64.87744242, "LATITUDE": 18.33770431, "OBJECTID_1": 23049, "PARCEL_NO_": "105703045300", "Tax_Legal_": "ANNAS RETREAT 173-159 NEW QTR", "Name": "CALLWOOD LIFE ESTATE, HAZEL IOLA", "Address": "7775 Est Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 122800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.294315577700004, "SHAPE_Area": 396.92367499699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364467.761500000953674, 256535.077599998563528 ], [ 364460.736599996685982, 256507.789000000804663 ], [ 364446.997000001370907, 256511.476199999451637 ], [ 364454.025399997830391, 256538.342700000852346 ], [ 364462.912799999117851, 256536.304499998688698 ], [ 364467.761500000953674, 256535.077599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87396507, "LATITUDE": 18.34029846, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.83489976600001, "SHAPE_Area": 1068.4787221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364845.247400000691414, 256806.678100001066923 ], [ 364837.169900000095367, 256808.300799999386072 ], [ 364813.092000000178814, 256795.015900000929832 ], [ 364799.336099997162819, 256800.602800000458956 ], [ 364807.179799996316433, 256826.420499999076128 ], [ 364845.879199996590614, 256827.159400001168251 ], [ 364846.021300002932549, 256810.484099999070168 ], [ 364845.247400000691414, 256806.678100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "173A-84", "ACRE": null, "LONGITUDE": -64.87646099, "LATITUDE": 18.33822112, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.725256840199997, "SHAPE_Area": 149.52693923000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364568.945100001990795, 256584.246100001037121 ], [ 364566.608800001442432, 256574.516699999570847 ], [ 364552.062899999320507, 256578.197399999946356 ], [ 364555.203599996864796, 256588.144499998539686 ], [ 364568.945100001990795, 256584.246100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2191-T82", "PARCEL_NAM": "173A-79", "ACRE": "1574 sq ft", "LONGITUDE": -64.8757632, "LATITUDE": 18.3380512, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.784472004199998, "SHAPE_Area": 150.04228722299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364626.414599999785423, 256559.80519999936223 ], [ 364626.34570000320673, 256559.958099998533726 ], [ 364628.51349999755621, 256569.78830000013113 ], [ 364642.475900001823902, 256566.482799999415874 ], [ 364640.949600003659725, 256556.337799999862909 ], [ 364626.414599999785423, 256559.80519999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803030600", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-168", "ACRE": ".286", "LONGITUDE": -64.85961842, "LATITUDE": 18.33778256, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.592580279, "SHAPE_Area": 1267.6516200599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366352.313299998641014, 256527.07039999961853 ], [ 366352.170400001108646, 256524.033900000154972 ], [ 366352.088799998164177, 256522.300500001758337 ], [ 366345.436300002038479, 256525.342599999159575 ], [ 366328.252999998629093, 256519.677000001072884 ], [ 366328.138300001621246, 256525.183699999004602 ], [ 366328.55799999833107, 256570.572299998253584 ], [ 366336.612199999392033, 256571.69370000064373 ], [ 366356.768200002610683, 256572.069699998944998 ], [ 366352.313299998641014, 256527.07039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87451757, "LATITUDE": 18.3378178, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.704973061800004, "SHAPE_Area": 398.62494569400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364774.046899996697903, 256550.883299998939037 ], [ 364774.264499999582767, 256525.342700000852346 ], [ 364758.13289999961853, 256525.844000000506639 ], [ 364759.520700000226498, 256552.241999998688698 ], [ 364774.046899996697903, 256550.883299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87438391000001, "LATITUDE": 18.3378136, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.4847546795, "SHAPE_Area": 324.33132919500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364789.386699996888638, 256548.686799999326468 ], [ 364783.961800001561642, 256522.888999998569489 ], [ 364780.723999999463558, 256524.34010000154376 ], [ 364774.264499999582767, 256525.342700000852346 ], [ 364774.046899996697903, 256550.883299998939037 ], [ 364789.386699996888638, 256548.686799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87426781000001, "LATITUDE": 18.33779179, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.225148176399998, "SHAPE_Area": 323.22430476800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364804.726400002837181, 256546.490299999713898 ], [ 364790.450099997222424, 256518.509100001305342 ], [ 364788.821299999952316, 256520.395599998533726 ], [ 364783.961800001561642, 256522.888999998569489 ], [ 364789.386699996888638, 256548.686799999326468 ], [ 364799.075000002980232, 256547.288400001823902 ], [ 364804.726400002837181, 256546.490299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87416196, "LATITUDE": 18.33772875, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.626049251599994, "SHAPE_Area": 445.43239269700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364819.364100001752377, 256532.044700000435114 ], [ 364796.958099998533726, 256511.807399999350309 ], [ 364794.508599996566772, 256515.375900000333786 ], [ 364790.450099997222424, 256518.509100001305342 ], [ 364804.726400002837181, 256546.490299999713898 ], [ 364819.364100001752377, 256532.044700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703041600", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-137", "ACRE": "0.10", "LONGITUDE": -64.87644851, "LATITUDE": 18.33770527, "OBJECTID_1": 23013, "PARCEL_NO_": "105703041600", "Tax_Legal_": "173-137 ANNAS RETREAT NO.1 NEW QTR", "Name": "LENA S. WILLIAMS & OTHERS", "Address": "BOX 1943", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14900, "Improved_V": 79300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.587930311500003, "SHAPE_Area": 403.817317624 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364573.391999997198582, 256535.519900001585484 ], [ 364565.555500000715256, 256508.857999999076128 ], [ 364557.472599998116493, 256511.113899998366833 ], [ 364551.815800003707409, 256512.545200001448393 ], [ 364558.846000000834465, 256539.200599998235703 ], [ 364573.391999997198582, 256535.519900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604030200", "MAP": "D9-747-T68", "PARCEL_NAM": "6A", "ACRE": "2.18", "LONGITUDE": -64.88662451, "LATITUDE": 18.3372656, "OBJECTID_1": 21769, "PARCEL_NO_": "105604030200", "Tax_Legal_": "6A ESTATE ANNAS RETREAT NEW QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 232600, "Improved_V": 1027900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 436.47207930299999, "SHAPE_Area": 10002.444752 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363529.976199999451637, 256437.898600000888109 ], [ 363481.229000002145767, 256414.304999999701977 ], [ 363402.309900000691414, 256431.879799999296665 ], [ 363404.012299999594688, 256434.447399999946356 ], [ 363419.986199997365475, 256459.518300000578165 ], [ 363442.04900000244379, 256491.072299998253584 ], [ 363464.9712999984622, 256496.050599999725819 ], [ 363477.030000001192093, 256500.371100001037121 ], [ 363482.657999999821186, 256502.31700000166893 ], [ 363509.187200002372265, 256511.822299998253584 ], [ 363534.109200000762939, 256520.681099999696016 ], [ 363545.365199998021126, 256524.572900000959635 ], [ 363555.015799999237061, 256527.607200000435114 ], [ 363566.278999999165535, 256530.654699999839067 ], [ 363529.976199999451637, 256437.898600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703050900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-218", "ACRE": "0.10", "LONGITUDE": -64.87855419, "LATITUDE": 18.33771024, "OBJECTID_1": 23065, "PARCEL_NO_": "105703050900", "Tax_Legal_": "ANNAS RETREAT 173-218 NEW QTR", "Name": "MARSHALL, FLETCHER and ANGELA", "Address": "7176 Estate Bolongo", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 45300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.995563945499995, "SHAPE_Area": 375.984857616 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364352.927199997007847, 256531.962999999523163 ], [ 364338.801100000739098, 256507.539500001817942 ], [ 364337.35639999806881, 256508.467999998480082 ], [ 364328.438500002026558, 256514.094500001519918 ], [ 364326.269900001585484, 256515.7685999982059 ], [ 364342.944200001657009, 256538.237500000745058 ], [ 364345.180399999022484, 256536.607400000095367 ], [ 364352.927199997007847, 256531.962999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604023300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-262", "ACRE": ".14", "LONGITUDE": -64.88445999, "LATITUDE": 18.33771645, "OBJECTID_1": 21708, "PARCEL_NO_": "105604023300", "Tax_Legal_": "148-262 ANNAS RETREAT NEW QTR", "Name": "DONOVAN, GENEVIEVE L. H.", "Address": "PO BOX 1364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 119500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.964738590600007, "SHAPE_Area": 576.57716146899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363728.538400001823902, 256509.606800001114607 ], [ 363727.755400002002716, 256506.856199998408556 ], [ 363701.13629999756813, 256507.904899999499321 ], [ 363704.172799997031689, 256530.094500001519918 ], [ 363729.182899996638298, 256528.610500000417233 ], [ 363728.538400001823902, 256509.606800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703023200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-129", "ACRE": ".126", "LONGITUDE": -64.88038767, "LATITUDE": 18.33771209, "OBJECTID_1": 22934, "PARCEL_NO_": "105703023200", "Tax_Legal_": "ANNAS RETREAT 148-129 1 NEW QTR", "Name": "JEFFREY D CARTY, SR. & LINDA L CARTY", "Address": "7507 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 175400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.465678642699999, "SHAPE_Area": 466.62524719800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364158.338899999856949, 256508.90260000154376 ], [ 364129.218099996447563, 256519.641199998557568 ], [ 364133.130999997258186, 256533.605399999767542 ], [ 364163.052699998021126, 256523.506700001657009 ], [ 364158.338899999856949, 256508.90260000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703017000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-220", "ACRE": ".132", "LONGITUDE": -64.88138995, "LATITUDE": 18.33768864, "OBJECTID_1": 22891, "PARCEL_NO_": "105703017000", "Tax_Legal_": "ANNAS RETREAT 148-220 NEW QTR", "Name": "DONOVAN, IRIS & WILLIAM", "Address": "P.O. BIX 304375", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 94200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.055128431200004, "SHAPE_Area": 491.81249802299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364056.649999998509884, 256519.047200001776218 ], [ 364055.86710000038147, 256516.296599999070168 ], [ 364054.268799997866154, 256514.594799999147654 ], [ 364047.918999999761581, 256502.721599999815226 ], [ 364023.593000002205372, 256518.565600000321865 ], [ 364030.734700001776218, 256532.13399999961257 ], [ 364056.649999998509884, 256519.047200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045200", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-160", "ACRE": "0.10", "LONGITUDE": -64.8773129, "LATITUDE": 18.33767189, "OBJECTID_1": 23048, "PARCEL_NO_": "105703045200", "Tax_Legal_": "ANNAS RETREAT 173-160 NEW QTR", "Name": "FRANCIS, GLORIA V", "Address": "PO Box 1114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14900, "Improved_V": 114700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.698251563400007, "SHAPE_Area": 399.30682479400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364481.499399997293949, 256531.601399999111891 ], [ 364474.474500000476837, 256504.312899999320507 ], [ 364460.736599996685982, 256507.789000000804663 ], [ 364467.761500000953674, 256535.077599998563528 ], [ 364477.458800002932549, 256532.623799998313189 ], [ 364481.499399997293949, 256531.601399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604023200", "MAP": "A9-60-T99", "PARCEL_NAM": "148-301", "ACRE": "0.14", "LONGITUDE": -64.88482418, "LATITUDE": 18.33771302, "OBJECTID_1": 21707, "PARCEL_NO_": "105604023200", "Tax_Legal_": "148-301 ANNAS RETREAT NEW QTR", "Name": "WOODBURNE, AGATHA (TRUSTEE)", "Address": "PO Box 502182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17600, "Improved_V": 144600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.28179473, "SHAPE_Area": 667.01974525100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363692.268700003623962, 256507.621199999004602 ], [ 363691.829599998891354, 256506.078299999237061 ], [ 363661.623400002717972, 256508.003899998962879 ], [ 363661.605499997735023, 256510.114399999380112 ], [ 363659.838200002908707, 256528.254000000655651 ], [ 363694.523999996483326, 256526.849199999123812 ], [ 363692.268700003623962, 256507.621199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703057600", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-10", "ACRE": "0.09", "LONGITUDE": -64.87890443000001, "LATITUDE": 18.33766193, "OBJECTID_1": 23132, "PARCEL_NO_": "105703057600", "Tax_Legal_": "173-10 ANNAS RETREAT NEW QUARTER", "Name": "BERYL HAWLEY", "Address": "PO Box 9049", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012049, "Country": "United States", "Land_Value": 13400, "Improved_V": 125200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.794584183799998, "SHAPE_Area": 418.79583192600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364317.067400000989437, 256523.71169999986887 ], [ 364299.522699996829033, 256500.769999999552965 ], [ 364288.959700003266335, 256510.182799998670816 ], [ 364305.694499999284744, 256533.53999999910593 ], [ 364317.067400000989437, 256523.71169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703041700", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-136", "ACRE": "0.10", "LONGITUDE": -64.87631279, "LATITUDE": 18.33767189, "OBJECTID_1": 23014, "PARCEL_NO_": "105703041700", "Tax_Legal_": "ANNAS RETREAT 173-136 NEW QTR", "Name": "HORACUIS, MARIE R. & ERICK DORCE", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 155700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.701338399899996, "SHAPE_Area": 416.66551737999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364588.746100001037121, 256531.634799998253584 ], [ 364579.293300002813339, 256505.381900001317263 ], [ 364572.020300000905991, 256507.222199998795986 ], [ 364565.555500000715256, 256508.857999999076128 ], [ 364573.391999997198582, 256535.519900001585484 ], [ 364588.746100001037121, 256531.634799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045100", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-161", "ACRE": "0.10", "LONGITUDE": -64.877178, "LATITUDE": 18.33763594, "OBJECTID_1": 23047, "PARCEL_NO_": "105703045100", "Tax_Legal_": "ANNAS RETREAT 173-161 NEW QTR", "Name": "WHITE, LOUISA I. & CLAYTON A", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14900, "Improved_V": 114800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.911054410700004, "SHAPE_Area": 432.15621873399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364496.04900000244379, 256527.498599998652935 ], [ 364489.828599996864796, 256500.427799999713898 ], [ 364474.474500000476837, 256504.312899999320507 ], [ 364481.499399997293949, 256531.601399999111891 ], [ 364492.816500000655651, 256528.316599998623133 ], [ 364496.04900000244379, 256527.498599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703023100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-162", "ACRE": ".137", "LONGITUDE": -64.8807851, "LATITUDE": 18.33763374, "OBJECTID_1": 22933, "PARCEL_NO_": "105703023100", "Tax_Legal_": "ANNAS RETREAT 148-162 NEW QTR", "Name": "THOMPSON, DOREEN", "Address": "7059 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 86800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.2723539948, "SHAPE_Area": 596.40634607100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364119.533399999141693, 256520.617400001734495 ], [ 364111.669900000095367, 256497.121599998325109 ], [ 364088.225699998438358, 256504.106899999082088 ], [ 364090.601499997079372, 256509.192600000649691 ], [ 364096.893700003623962, 256527.820300001651049 ], [ 364119.533399999141693, 256520.617400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703041800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-135", "ACRE": "0.10", "LONGITUDE": -64.87616995, "LATITUDE": 18.33763017, "OBJECTID_1": 23015, "PARCEL_NO_": "105703041800", "Tax_Legal_": "ANNAS RETREAT 173-135 NEW QTR", "Name": "BELL, EVA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14900, "Improved_V": 142300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.918610714300002, "SHAPE_Area": 461.943683319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364603.290299996733665, 256528.165300000458956 ], [ 364597.070000000298023, 256501.094399999827147 ], [ 364585.758199997246265, 256503.745999999344349 ], [ 364579.293300002813339, 256505.381900001317263 ], [ 364588.746100001037121, 256531.634799998253584 ], [ 364603.290299996733665, 256528.165300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704035200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87331731, "LATITUDE": 18.3375647, "OBJECTID_1": 23603, "PARCEL_NO_": "105704035200", "Tax_Legal_": "173A-24 ESTATE ANNA'S RETREAT NEW QTR.", "Name": "RALPH, SAMUEL & VARNARINE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 176400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.730124168, "SHAPE_Area": 729.50855427700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364906.535700000822544, 256522.203400000929832 ], [ 364900.367499999701977, 256489.011300001293421 ], [ 364890.643200002610683, 256494.63120000064373 ], [ 364880.920699998736382, 256500.040100000798702 ], [ 364886.277199998497963, 256533.858899999409914 ], [ 364906.535700000822544, 256522.203400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703071300", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-64", "ACRE": "0.09", "LONGITUDE": -64.87936439000001, "LATITUDE": 18.33763796, "OBJECTID_1": 23229, "PARCEL_NO_": "105703071300", "Tax_Legal_": "ANNAS RETREAT 173-64 NEW QTR", "Name": "BARNES, HELEN G", "Address": "7514 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12300, "Improved_V": 40300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.881603653200003, "SHAPE_Area": 281.77929796199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364266.300300002098083, 256519.707600001245737 ], [ 364249.536700002849102, 256499.727600000798702 ], [ 364243.0016999989748, 256509.595600001513958 ], [ 364258.168799996376038, 256527.662599999457598 ], [ 364266.300300002098083, 256519.707600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051000", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-217", "ACRE": "0.10", "LONGITUDE": -64.87843751, "LATITUDE": 18.3376439, "OBJECTID_1": 23066, "PARCEL_NO_": "105703051000", "Tax_Legal_": "ANNAS RETREAT 173-217 NEW QTR.", "Name": "HENDRICKSON, LEONE", "Address": "PO Box 6323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12500, "Improved_V": 92400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.112501850900003, "SHAPE_Area": 432.87190436200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364365.438900001347065, 256524.951999999582767 ], [ 364352.753700003027916, 256499.517000000923872 ], [ 364347.086099997162819, 256502.214800000190735 ], [ 364338.801100000739098, 256507.539500001817942 ], [ 364352.927199997007847, 256531.962999999523163 ], [ 364359.769599996507168, 256527.86089999973774 ], [ 364365.438900001347065, 256524.951999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-162", "ACRE": "0.10", "LONGITUDE": -64.87703865, "LATITUDE": 18.33760142, "OBJECTID_1": 23046, "PARCEL_NO_": "105703045000", "Tax_Legal_": "173-162 ANNAS RETREAT NEW QTR.", "Name": "BLYDEN, MAUREEN", "Address": "PO Box 502912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 13700, "Improved_V": 167100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.275526315799993, "SHAPE_Area": 413.53800076900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364510.79280000180006, 256523.497699998319149 ], [ 364503.938299998641014, 256496.726199999451637 ], [ 364489.828599996864796, 256500.427799999713898 ], [ 364496.04900000244379, 256527.498599998652935 ], [ 364507.36429999768734, 256524.424800001084805 ], [ 364510.79280000180006, 256523.497699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703041900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-134", "ACRE": "0.11", "LONGITUDE": -64.87602102, "LATITUDE": 18.33759374, "OBJECTID_1": 23016, "PARCEL_NO_": "105703041900", "Tax_Legal_": "ANNAS RETREAT 173-134 NEW QTR", "Name": "EDDIE, MILTON", "Address": "PO Box 11542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 93700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.042724248699997, "SHAPE_Area": 430.71033742700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364617.848899997770786, 256523.007100000977516 ], [ 364613.230400003492832, 256497.215900000184774 ], [ 364599.494300000369549, 256500.480900000780821 ], [ 364597.070000000298023, 256501.094399999827147 ], [ 364603.290299996733665, 256528.165300000458956 ], [ 364617.848899997770786, 256523.007100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703014800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-242", "ACRE": ".157", "LONGITUDE": -64.88187807, "LATITUDE": 18.33758673, "OBJECTID_1": 22869, "PARCEL_NO_": "105703014800", "Tax_Legal_": "ANNAS RETREAT 148-242 NEW QTR", "Name": "HODGE, OLA M.", "Address": "7365 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 109600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.182548942799997, "SHAPE_Area": 522.19860903999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364001.210500001907349, 256495.584300000220537 ], [ 363994.002199999988079, 256489.825699999928474 ], [ 363970.426700003445148, 256512.219799999147654 ], [ 363980.050300002098083, 256518.420299999415874 ], [ 363984.852200001478195, 256522.681499999016523 ], [ 364006.014200001955032, 256499.634399998933077 ], [ 364001.210500001907349, 256495.584300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803030900", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".262", "LONGITUDE": -64.85886501, "LATITUDE": 18.33749313, "OBJECTID_1": 23926, "PARCEL_NO_": "105803030900", "Tax_Legal_": "19-2-165 SMITH BAY EAST END QUARTER", "Name": "JACKSON CLEANING SERVICES LLC", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.86291229899999, "SHAPE_Area": 1031.7983109899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366441.108400002121925, 256515.975900001823902 ], [ 366426.792599998414516, 256492.638399999588728 ], [ 366400.816100001335144, 256512.901900000870228 ], [ 366416.692400000989437, 256542.373799998313189 ], [ 366439.470600001513958, 256518.91780000180006 ], [ 366441.108400002121925, 256515.975900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051100", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-216", "ACRE": "0.09", "LONGITUDE": -64.87831301, "LATITUDE": 18.33758107, "OBJECTID_1": 23067, "PARCEL_NO_": "105703051100", "Tax_Legal_": "ANNAS RETREAT 173-216 NEW QTR", "Name": "WILLIAMS, LISTON E", "Address": "7828 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021960, "Country": "United States", "Land_Value": 12300, "Improved_V": 80800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.561116615900005, "SHAPE_Area": 414.32040444699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364377.735299997031689, 256519.580400001257658 ], [ 364366.699600003659725, 256492.618200000375509 ], [ 364366.520400002598763, 256492.663499999791384 ], [ 364352.753700003027916, 256499.517000000923872 ], [ 364365.438900001347065, 256524.951999999582767 ], [ 364373.536200001835823, 256521.007500000298023 ], [ 364377.735299997031689, 256519.580400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703057500", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-11", "ACRE": "0.10", "LONGITUDE": -64.87880071, "LATITUDE": 18.33756984, "OBJECTID_1": 23131, "PARCEL_NO_": "105703057500", "Tax_Legal_": "ANNAS RETREAT 173-11 NEW QTR", "Name": "SARAUW, BERNICE", "Address": "PO Box 343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14900, "Improved_V": 102900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.352940883700001, "SHAPE_Area": 443.30510593399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364328.438500002026558, 256514.094500001519918 ], [ 364311.703699998557568, 256490.737199999392033 ], [ 364301.965000003576279, 256498.045800000429153 ], [ 364299.522699996829033, 256500.769999999552965 ], [ 364317.067400000989437, 256523.71169999986887 ], [ 364323.568199999630451, 256517.854299999773502 ], [ 364328.438500002026558, 256514.094500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604030300", "MAP": "A9-425-T93", "PARCEL_NAM": "175A-1", "ACRE": "0.47", "LONGITUDE": -64.88718502, "LATITUDE": 18.33745228, "OBJECTID_1": 21770, "PARCEL_NO_": "105604030300", "Tax_Legal_": "175A-1 & 175B EST. ANNAS RETREAT 1 NEW QTR", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 211800, "Improved_V": 152000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.94247961299999, "SHAPE_Area": 2269.3253111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363388.257799997925758, 256457.913699999451637 ], [ 363394.582599997520447, 256470.276000000536442 ], [ 363401.726400002837181, 256483.134799998253584 ], [ 363405.695200003683567, 256491.072299998253584 ], [ 363405.218900002539158, 256494.88230000063777 ], [ 363402.353500001132488, 256496.076200000941753 ], [ 363419.758500002324581, 256502.646600000560284 ], [ 363442.274099998176098, 256510.008099999278784 ], [ 363469.634800001978874, 256516.564800001680851 ], [ 363477.030000001192093, 256500.371100001037121 ], [ 363464.9712999984622, 256496.050599999725819 ], [ 363442.04900000244379, 256491.072299998253584 ], [ 363419.986199997365475, 256459.518300000578165 ], [ 363415.167000003159046, 256451.954599998891354 ], [ 363388.257799997925758, 256457.913699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604025800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-251", "ACRE": ".147", "LONGITUDE": -64.88345385, "LATITUDE": 18.33757761, "OBJECTID_1": 21733, "PARCEL_NO_": "105604025800", "Tax_Legal_": "148-251 ANNAS RETREAT NEW QTR", "Name": "FOY, ENOLA", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23400, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.042403447, "SHAPE_Area": 626.70294374800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363834.345100000500679, 256489.363400001078844 ], [ 363830.311800003051758, 256489.541499998420477 ], [ 363816.62780000269413, 256486.685300000011921 ], [ 363807.515600003302097, 256515.108300000429153 ], [ 363817.974299997091293, 256517.938099998980761 ], [ 363830.862700000405312, 256519.521299999207258 ], [ 363834.345100000500679, 256489.363400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604025900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-250", "ACRE": ".146", "LONGITUDE": -64.88327453, "LATITUDE": 18.3375901, "OBJECTID_1": 21734, "PARCEL_NO_": "105604025900", "Tax_Legal_": "148-250 ANNAS RETREAT NEW QTR", "Name": "BRUNN, ITALIA E.", "Address": "PO Box 11262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 113000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.8783125259, "SHAPE_Area": 509.94262829000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363851.841300003230572, 256518.004200000315905 ], [ 363847.251500003039837, 256488.835799999535084 ], [ 363834.345100000500679, 256489.363400001078844 ], [ 363830.862700000405312, 256519.521299999207258 ], [ 363838.925899997353554, 256519.58729999884963 ], [ 363851.841300003230572, 256518.004200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604026000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-249", "ACRE": ".146", "LONGITUDE": -64.88310719, "LATITUDE": 18.33755177, "OBJECTID_1": 21735, "PARCEL_NO_": "105604026000", "Tax_Legal_": "148-249 ANNAS RETREAT NEW QTR", "Name": "GREENAWAY, FLORA & FLOUSTINA", "Address": "160 Remsen Rd", "City": "Yonkers", "State": "New York", "Zip": 10710, "Country": "United States", "Land_Value": 22300, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.348445922799996, "SHAPE_Area": 561.08685514800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363872.049400001764297, 256512.25899999961257 ], [ 363863.422700002789497, 256483.690799999982119 ], [ 363847.251500003039837, 256488.835799999535084 ], [ 363851.841300003230572, 256518.004200000315905 ], [ 363872.049400001764297, 256512.25899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703023400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-130", "ACRE": ".126", "LONGITUDE": -64.88043753, "LATITUDE": 18.33757542, "OBJECTID_1": 22936, "PARCEL_NO_": "105703023400", "Tax_Legal_": "148-130 ANNAS RETREAT NEW QUARTER", "Name": "BODILL NIRESTA GEORGE SAMUEL REVOCABLE LIVING TRUS", "Address": "PO Box 10239", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 40900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.066323676400003, "SHAPE_Area": 528.92074176999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364152.829599998891354, 256493.025499999523163 ], [ 364123.714199997484684, 256503.130800001323223 ], [ 364129.218099996447563, 256519.641199998557568 ], [ 364158.338899999856949, 256508.90260000154376 ], [ 364152.829599998891354, 256493.025499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703042000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-133", "ACRE": "0.11", "LONGITUDE": -64.87587882, "LATITUDE": 18.33756044, "OBJECTID_1": 23017, "PARCEL_NO_": "105703042000", "Tax_Legal_": "ANNAS RETREAT 173-133 NEW QTR", "Name": "TODMAN, CLARENCE", "Address": "PO Box 306808", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 122600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.864970456199998, "SHAPE_Area": 387.05218507799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364632.389499999582767, 256519.959699999541044 ], [ 364627.769199997186661, 256494.37950000166893 ], [ 364613.230400003492832, 256497.215900000184774 ], [ 364617.848899997770786, 256523.007100000977516 ], [ 364632.389499999582767, 256519.959699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105903010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84465748, "LATITUDE": 18.33730241, "OBJECTID_1": 24750, "PARCEL_NO_": "105903010100", "Tax_Legal_": "SHARK ISLAND EAST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 460300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 390.87864321799998, "SHAPE_Area": 4399.5020806000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367937.502099998295307, 256542.577500000596046 ], [ 367940.696699999272823, 256546.192200001329184 ], [ 367943.905799999833107, 256548.118299998342991 ], [ 367953.56360000371933, 256550.308299999684095 ], [ 367975.142599999904633, 256548.425999999046326 ], [ 367990.686899997293949, 256539.165500000119209 ], [ 367983.410800002515316, 256536.850400000810623 ], [ 367972.496699996292591, 256533.543099999427795 ], [ 367967.205099999904633, 256528.251400001347065 ], [ 367975.142599999904633, 256527.920699998736382 ], [ 367989.03320000320673, 256527.259300000965595 ], [ 367979.111299999058247, 256517.668099999427795 ], [ 367964.559199996292591, 256519.652499999850988 ], [ 367965.22070000320673, 256511.05350000038743 ], [ 367945.04619999974966, 256496.832100000232458 ], [ 367932.147699996829033, 256489.225299999117851 ], [ 367921.026199996471405, 256488.82490000128746 ], [ 367912.19820000231266, 256483.89750000089407 ], [ 367903.357500001788139, 256480.447599999606609 ], [ 367868.023599997162819, 256463.271000001579523 ], [ 367862.373999997973442, 256463.857999999076128 ], [ 367859.940700002014637, 256465.526799999177456 ], [ 367857.48759999871254, 256469.517499998211861 ], [ 367859.035499997437, 256477.129599999636412 ], [ 367866.241899996995926, 256483.099199999123812 ], [ 367867.827600002288818, 256486.278499998152256 ], [ 367869.429399996995926, 256487.558200001716614 ], [ 367871.805200003087521, 256492.643899999558926 ], [ 367874.917199999094009, 256505.968299999833107 ], [ 367878.108300000429153, 256510.005199998617172 ], [ 367884.524599999189377, 256514.068500000983477 ], [ 367888.547200001776218, 256515.156800001859665 ], [ 367894.191399998962879, 256515.203000001609325 ], [ 367902.276100002229214, 256512.736099999397993 ], [ 367909.534699998795986, 256512.584399998188019 ], [ 367918.377099998295307, 256515.82319999858737 ], [ 367929.586400002241135, 256525.203000001609325 ], [ 367934.37389999628067, 256531.152800001204014 ], [ 367934.327200002968311, 256536.640900000929832 ], [ 367937.502099998295307, 256542.577500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703071400", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-63", "ACRE": "0.09", "LONGITUDE": -64.87927885000001, "LATITUDE": 18.33755365, "OBJECTID_1": 23230, "PARCEL_NO_": "105703071400", "Tax_Legal_": "ANNAS RETREAT 173-63 NEW QTR", "Name": "ARROYO, S & LAWARE J", "Address": "PO Box 6012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12300, "Improved_V": 85400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.485876184999995, "SHAPE_Area": 382.62513448700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364277.683899998664856, 256508.612799998372793 ], [ 364259.293399997055531, 256490.308299999684095 ], [ 364249.536700002849102, 256499.727600000798702 ], [ 364266.300300002098083, 256519.707600001245737 ], [ 364277.683899998664856, 256508.612799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703021100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-168", "ACRE": ".144", "LONGITUDE": -64.88107687, "LATITUDE": 18.33753418, "OBJECTID_1": 22913, "PARCEL_NO_": "105703021100", "Tax_Legal_": "ANNAS RETREAT 148-168 NEW QTR", "Name": "HOWELL, CAROL D.", "Address": "PO Box 303576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17300, "Improved_V": 86400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.42065972, "SHAPE_Area": 683.89281326900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364088.11370000243187, 256503.827799998223782 ], [ 364081.011500000953674, 256485.615600001066923 ], [ 364079.427699998021126, 256482.22520000115037 ], [ 364055.91330000013113, 256497.442600000649691 ], [ 364058.287299998104572, 256502.73930000141263 ], [ 364060.670299999415874, 256506.980700001120567 ], [ 364063.064000003039837, 256509.955600000917912 ], [ 364066.224600002169609, 256517.580800000578165 ], [ 364090.489500001072884, 256508.913499999791384 ], [ 364088.11370000243187, 256503.827799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703044900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-163", "ACRE": "0.10", "LONGITUDE": -64.87690345, "LATITUDE": 18.33756525, "OBJECTID_1": 23045, "PARCEL_NO_": "105703044900", "Tax_Legal_": "ANNAS RETREAT 173-163 NEW QTR", "Name": "CHINNERY, IANTHA C", "Address": "7779 ANNA'S RETREAT 173-163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14400, "Improved_V": 112700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.686695919599998, "SHAPE_Area": 406.68988403899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364525.144500002264977, 256519.715199999511242 ], [ 364518.11429999768734, 256493.059900000691414 ], [ 364512.457500003278255, 256494.491200000047684 ], [ 364503.938299998641014, 256496.726199999451637 ], [ 364510.79280000180006, 256523.497699998319149 ], [ 364519.487800002098083, 256521.146600000560284 ], [ 364521.912100002169609, 256520.533100001513958 ], [ 364525.144500002264977, 256519.715199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604025700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-252", "ACRE": ".147", "LONGITUDE": -64.88363627, "LATITUDE": 18.33752568, "OBJECTID_1": 21732, "PARCEL_NO_": "105604025700", "Tax_Legal_": "ANNAS RETREAT 148-252 NEW QTR", "Name": "SASSO, EVONNE (TRUSTEE)", "Address": "8620 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23400, "Improved_V": 99600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.139658839399999, "SHAPE_Area": 577.17307086599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363816.62780000269413, 256486.685300000011921 ], [ 363802.976300001144409, 256480.029599998146296 ], [ 363786.635999999940395, 256505.015999998897314 ], [ 363796.265000000596046, 256510.583299998193979 ], [ 363807.515600003302097, 256515.108300000429153 ], [ 363816.62780000269413, 256486.685300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704034500", "MAP": "D9-1563-T80", "PARCEL_NAM": "173A-17", "ACRE": "0.38", "LONGITUDE": -64.87224856, "LATITUDE": 18.33741429, "OBJECTID_1": 23596, "PARCEL_NO_": "105704034500", "Tax_Legal_": "ANNAS RETREAT 173A-17 NEW QTR.", "Name": "WILLIAMS, JULES L", "Address": "P.O. BOX 2854", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.83276144600001, "SHAPE_Area": 1590.0773001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365034.915600001811981, 256502.56700000166893 ], [ 365010.218400001525879, 256467.323300000280142 ], [ 364982.638400003314018, 256486.518199998885393 ], [ 364996.027400001883507, 256523.991399999707937 ], [ 365011.422899998724461, 256515.251400001347065 ], [ 365034.915600001811981, 256502.56700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703044800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-164", "ACRE": "0.10", "LONGITUDE": -64.87675768, "LATITUDE": 18.33752811, "OBJECTID_1": 23044, "PARCEL_NO_": "105703044800", "Tax_Legal_": "173-164 ANNAS RETREAT NEW QTR.", "Name": "ANDERSON, UNA", "Address": "3018 Crest Ridge Cir SW", "City": "Marietta", "State": "Georgia", "Zip": 30060, "Country": "United States", "Land_Value": 14900, "Improved_V": 95500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.441443822899998, "SHAPE_Area": 472.15570393299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364542.116700001060963, 256515.210099998861551 ], [ 364534.278300002217293, 256488.759199999272823 ], [ 364518.11429999768734, 256493.059900000691414 ], [ 364525.144500002264977, 256519.715199999511242 ], [ 364537.26799999922514, 256516.436900001019239 ], [ 364542.116700001060963, 256515.210099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704012600", "MAP": "F9-1052-T62", "PARCEL_NAM": "57B-14", "ACRE": "0.93", "LONGITUDE": -64.87100869, "LATITUDE": 18.33714587, "OBJECTID_1": 23471, "PARCEL_NO_": "105704012600", "Tax_Legal_": "57B-14 SMITH BAY EAST END QTR", "Name": "SMITH, HENRY & MURIEL", "Address": "PO Box 302231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 125200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.483813849, "SHAPE_Area": 5418.8869520400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365182.8412000015378, 256460.292399998754263 ], [ 365110.713699996471405, 256407.984200000762939 ], [ 365101.527800001204014, 256445.061500001698732 ], [ 365103.012699998915195, 256460.061299998313189 ], [ 365102.922799997031689, 256470.615200001746416 ], [ 365135.528499998152256, 256524.077599998563528 ], [ 365143.643700003623962, 256518.022300001233816 ], [ 365167.15990000218153, 256502.593899998813868 ], [ 365168.831799998879433, 256495.641499999910593 ], [ 365172.123599998652935, 256487.857999999076128 ], [ 365179.47749999910593, 256476.519099999219179 ], [ 365182.8412000015378, 256460.292399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703042100", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-132", "ACRE": "0.11", "LONGITUDE": -64.87574012, "LATITUDE": 18.33753492, "OBJECTID_1": 23018, "PARCEL_NO_": "105703042100", "Tax_Legal_": "ANNAS RETREAT 173-132 No.1 NEW QTR", "Name": "ENRICA THOMAS FAMILY TRUST", "Address": "7731 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 111200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.727605798, "SHAPE_Area": 387.73273532399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364646.112999998033047, 256518.172200001776218 ], [ 364643.91160000115633, 256492.611800000071526 ], [ 364642.297200001776218, 256492.80970000103116 ], [ 364627.769199997186661, 256494.37950000166893 ], [ 364632.389499999582767, 256519.959699999541044 ], [ 364646.112999998033047, 256518.172200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704035000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87311947000001, "LATITUDE": 18.33745266, "OBJECTID_1": 23601, "PARCEL_NO_": "105704035000", "Tax_Legal_": "173A-23 ANNAS RETREAT NEW QUARTER", "Name": "KING, VIOLA & OTHERS", "Address": "PO Box 9366", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 145000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.669622831, "SHAPE_Area": 811.721373707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364928.415899999439716, 256509.505800001323223 ], [ 364923.053999997675419, 256476.320199999958277 ], [ 364906.848600000143051, 256485.475699998438358 ], [ 364900.367499999701977, 256489.011300001293421 ], [ 364906.535700000822544, 256522.203400000929832 ], [ 364928.415899999439716, 256509.505800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051200", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-215", "ACRE": "0.10", "LONGITUDE": -64.87818135000001, "LATITUDE": 18.33753339, "OBJECTID_1": 23068, "PARCEL_NO_": "105703051200", "Tax_Legal_": "ANNAS RETREAT 173-215 NEW QTR", "Name": "LAKE, OVILDA & DANIEL", "Address": "PO Box 7894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 107100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.044234014799997, "SHAPE_Area": 439.69481817100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364391.327200002968311, 256515.031399998813868 ], [ 364382.684399999678135, 256488.362900000065565 ], [ 364377.02759999781847, 256489.794199999421835 ], [ 364371.369000002741814, 256491.436700001358986 ], [ 364366.699600003659725, 256492.618200000375509 ], [ 364377.735299997031689, 256519.580400001257658 ], [ 364385.666900001466274, 256516.884899999946356 ], [ 364391.327200002968311, 256515.031399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604026100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-248", "ACRE": ".137", "LONGITUDE": -64.88294271, "LATITUDE": 18.33749709, "OBJECTID_1": 21736, "PARCEL_NO_": "105604026100", "Tax_Legal_": "148-248 ANNAS RETREAT NEW QTR", "Name": "OLIVER, BASIL & VERONICA", "Address": "606 Limestone Flt", "City": "San Antonio", "State": "Texas", "Zip": 78251, "Country": "United States", "Land_Value": 17600, "Improved_V": 64800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.288715639299994, "SHAPE_Area": 531.21656989600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363889.0287000015378, 256506.909499999135733 ], [ 363880.402000002563, 256478.341299999505281 ], [ 363863.422700002789497, 256483.690799999982119 ], [ 363872.049400001764297, 256512.25899999961257 ], [ 363889.0287000015378, 256506.909499999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703043000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-130", "ACRE": "0.10", "LONGITUDE": -64.87544117, "LATITUDE": 18.33752539, "OBJECTID_1": 23026, "PARCEL_NO_": "105703043000", "Tax_Legal_": "ANNAS RETREAT 173-130 NEW QTR", "Name": "BUNCOME, DASSILDA", "Address": "7728 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 86900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.482475493699994, "SHAPE_Area": 407.98647546299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364677.5574000030756, 256518.640599999576807 ], [ 364676.173100002110004, 256491.82039999961853 ], [ 364660.847800001502037, 256492.328299999237061 ], [ 364661.440099999308586, 256517.453200001269579 ], [ 364677.5574000030756, 256518.640599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703042400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-129", "ACRE": "0.10", "LONGITUDE": -64.8752934, "LATITUDE": 18.33752179, "OBJECTID_1": 23021, "PARCEL_NO_": "105703042400", "Tax_Legal_": "ANNAS RETREAT 173-129 NEW QTR", "Name": "ROSADO, JOSE MANWEL", "Address": "7725 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 82200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.932418109099999, "SHAPE_Area": 421.17893837399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364692.882700003683567, 256518.132800001651049 ], [ 364692.303000003099442, 256491.530200000852346 ], [ 364689.07769999653101, 256491.503800000995398 ], [ 364676.173100002110004, 256491.82039999961853 ], [ 364677.5574000030756, 256518.640599999576807 ], [ 364692.882700003683567, 256518.132800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604023400", "MAP": "A9-60-T99", "PARCEL_NAM": "148-300", "ACRE": "0.13", "LONGITUDE": -64.88483455, "LATITUDE": 18.33754189, "OBJECTID_1": 21709, "PARCEL_NO_": "105604023400", "Tax_Legal_": "ANNAS RETREAT 148-300 NEW QTR", "Name": "BURTON (LIFE ESTATE), MARION", "Address": "7328 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 155200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.800193373900001, "SHAPE_Area": 498.47489156300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363690.801700003445148, 256490.510600000619888 ], [ 363662.713799998164177, 256489.253100000321865 ], [ 363662.564599998295307, 256492.179299999028444 ], [ 363661.635999999940395, 256506.526099998503923 ], [ 363661.623400002717972, 256508.003899998962879 ], [ 363691.829599998891354, 256506.078299999237061 ], [ 363691.485799998044968, 256504.870600000023842 ], [ 363690.801700003445148, 256490.510600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703042200", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-131", "ACRE": "0.11", "LONGITUDE": -64.87559303, "LATITUDE": 18.33752443, "OBJECTID_1": 23019, "PARCEL_NO_": "105703042200", "Tax_Legal_": "ANNAS RETREAT 173-131 NEW QTR", "Name": "JEFFERS, ELROY & KARLEEN", "Address": "PO BOX 8742", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 187000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.070307678600003, "SHAPE_Area": 410.02949261499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364660.847800001502037, 256492.328299999237061 ], [ 364658.428800001740456, 256492.308499999344349 ], [ 364643.91160000115633, 256492.611800000071526 ], [ 364646.112999998033047, 256518.172200001776218 ], [ 364661.440099999308586, 256517.453200001269579 ], [ 364660.847800001502037, 256492.328299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703014700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-243", "ACRE": ".155", "LONGITUDE": -64.88203058000001, "LATITUDE": 18.33747989, "OBJECTID_1": 22868, "PARCEL_NO_": "105703014700", "Tax_Legal_": "ANNAS RETREAT 148-243 NEW QTR", "Name": "DONASTORG, ADLAH & J", "Address": "7364 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 113000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.549230771, "SHAPE_Area": 733.08200047599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363991.595799997448921, 256488.328400000929832 ], [ 363976.344200000166893, 256480.182000000029802 ], [ 363964.272900000214577, 256477.339000001549721 ], [ 363956.773400001227856, 256505.775299999862909 ], [ 363970.426700003445148, 256512.219799999147654 ], [ 363994.002199999988079, 256489.825699999928474 ], [ 363991.595799997448921, 256488.328400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87514651, "LATITUDE": 18.33751837, "OBJECTID_1": 23022, "PARCEL_NO_": "105703042500", "Tax_Legal_": "ANNAS RETREAT 173-128 NEW QTR", "Name": "KING L., WALTER (Life Estate)", "Address": "4021 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 98000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.667717732, "SHAPE_Area": 405.688947633 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364708.207999996840954, 256517.624899998307228 ], [ 364707.626500003039837, 256491.233500000089407 ], [ 364702.786799997091293, 256491.404899999499321 ], [ 364692.303000003099442, 256491.530200000852346 ], [ 364692.882700003683567, 256518.132800001651049 ], [ 364708.207999996840954, 256517.624899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604024000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-296", "ACRE": ".144", "LONGITUDE": -64.88425351, "LATITUDE": 18.33744092, "OBJECTID_1": 21715, "PARCEL_NO_": "105604024000", "Tax_Legal_": "148-296 ANNAS RETREAT No.1 NEW QTR", "Name": "RITTER, CARLA A & COLEEN A", "Address": "7339 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21800, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.673475306, "SHAPE_Area": 617.25874674099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363754.536399997770786, 256486.810400001704693 ], [ 363752.149800002574921, 256482.991099998354912 ], [ 363750.54619999974966, 256481.922600001096725 ], [ 363749.75789999961853, 256479.80519999936223 ], [ 363737.756700001657009, 256468.730099998414516 ], [ 363726.347800001502037, 256482.780000001192093 ], [ 363727.755400002002716, 256506.856199998408556 ], [ 363728.538400001823902, 256509.606800001114607 ], [ 363754.536399997770786, 256486.810400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051300", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-214", "ACRE": "0.09", "LONGITUDE": -64.87805153, "LATITUDE": 18.33749877, "OBJECTID_1": 23069, "PARCEL_NO_": "105703051300", "Tax_Legal_": "ANNAS RETREAT 173-214 NEW QTR", "Name": "HILAIRE, VIRGINIA & PAUL", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12300, "Improved_V": 65800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.642143403199995, "SHAPE_Area": 360.346599502 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364402.983900003135204, 256512.081799998879433 ], [ 364396.244000002741814, 256485.244899999350309 ], [ 364389.955600000917912, 256486.733600001782179 ], [ 364382.684399999678135, 256488.362900000065565 ], [ 364391.327200002968311, 256515.031399998813868 ], [ 364402.983900003135204, 256512.081799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87500332, "LATITUDE": 18.33751513, "OBJECTID_1": 23023, "PARCEL_NO_": "105703042600", "Tax_Legal_": "173-127 ANNAS RETREAT NEW QUARTER", "Name": "FLECHA, LOREL", "Address": "7721 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 88900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.680618529, "SHAPE_Area": 393.43408531699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364723.531599998474121, 256517.328099999576807 ], [ 364722.143700003623962, 256490.930100001394749 ], [ 364718.110399998724461, 256491.108199998736382 ], [ 364707.626500003039837, 256491.233500000089407 ], [ 364708.207999996840954, 256517.624899998307228 ], [ 364723.531599998474121, 256517.328099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703057400", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-12", "ACRE": "0.10", "LONGITUDE": -64.87869616, "LATITUDE": 18.33748779, "OBJECTID_1": 23130, "PARCEL_NO_": "105703057400", "Tax_Legal_": "ANNAS RETREAT 173-12 NEW QTR", "Name": "BRYAN, DEAN, GEORGE & OTHERS", "Address": "7524 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021959, "Country": "United States", "Land_Value": 14900, "Improved_V": 114000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.993497510500006, "SHAPE_Area": 375.901449942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364337.35639999806881, 256508.467999998480082 ], [ 364324.678400002419949, 256482.1886 ], [ 364311.703699998557568, 256490.737199999392033 ], [ 364328.438500002026558, 256514.094500001519918 ], [ 364337.35639999806881, 256508.467999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87486408, "LATITUDE": 18.33750974, "OBJECTID_1": 23024, "PARCEL_NO_": "105703042700", "Tax_Legal_": "173-126 ANNAS RETREAT NEW QUARTER", "Name": "VANTERPOOL, RUTH E. & ROY A", "Address": "7720 Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 106600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.130968537800001, "SHAPE_Area": 384.583042095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364738.048799999058247, 256517.02479999884963 ], [ 364736.662699997425079, 256490.415600001811981 ], [ 364734.241999998688698, 256490.606899999082088 ], [ 364722.143700003623962, 256490.930100001394749 ], [ 364723.531599998474121, 256517.328099999576807 ], [ 364738.048799999058247, 256517.02479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803031200", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".278", "LONGITUDE": -64.85974042, "LATITUDE": 18.33739394, "OBJECTID_1": 23929, "PARCEL_NO_": "105803031200", "Tax_Legal_": "SMITH BAY 19-2-159 EASTEND QTR.", "Name": "BENJAMIN, VERONICA V.", "Address": "PO Box 9667", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.47636912600001, "SHAPE_Area": 1030.86504943 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366307.95160000026226, 256512.983300000429153 ], [ 366345.436300002038479, 256525.342599999159575 ], [ 366342.923500001430511, 256493.42960000038147 ], [ 366348.637800000607967, 256485.24379999935627 ], [ 366309.859300002455711, 256493.792300000786781 ], [ 366309.83049999922514, 256497.169599998742342 ], [ 366307.95160000026226, 256512.983300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803031300", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".290", "LONGITUDE": -64.85945211000001, "LATITUDE": 18.33737889, "OBJECTID_1": 23930, "PARCEL_NO_": "105803031300", "Tax_Legal_": "19-2-160 ESTATE SMITH BAY NOS. 1, 2 & 3 EAST END QTR.", "Name": "BEDMINSTER, MARCIA", "Address": "PO BOX 502654", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.549045826, "SHAPE_Area": 1180.34211972 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366345.436300002038479, 256525.342599999159575 ], [ 366352.088799998164177, 256522.300500001758337 ], [ 366375.70719999819994, 256525.995299998670816 ], [ 366369.5641999989748, 256489.848000001162291 ], [ 366377.738799996674061, 256476.827100001275539 ], [ 366348.637800000607967, 256485.24379999935627 ], [ 366342.923500001430511, 256493.42960000038147 ], [ 366345.436300002038479, 256525.342599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703044700", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-165", "ACRE": "0.10", "LONGITUDE": -64.87660415000001, "LATITUDE": 18.33748511, "OBJECTID_1": 23043, "PARCEL_NO_": "105703044700", "Tax_Legal_": "ANNAS RETREAT 173-165 NEW QTR.", "Name": "PHILLIPS, ESTHER", "Address": "7781 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.352608419800006, "SHAPE_Area": 458.02857687599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364557.472599998116493, 256511.113899998366833 ], [ 364551.248599998652935, 256484.46510000154376 ], [ 364534.278300002217293, 256488.759199999272823 ], [ 364542.116700001060963, 256515.210099998861551 ], [ 364551.815800003707409, 256512.545200001448393 ], [ 364557.472599998116493, 256511.113899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703042900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87456439, "LATITUDE": 18.33750378, "OBJECTID_1": 23025, "PARCEL_NO_": "105703042900", "Tax_Legal_": "ANNAS RETREAT 173-124 NEW QTR", "Name": "JONES (life estate), LLOYD S.", "Address": "173-124 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 85700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.21968902, "SHAPE_Area": 460.66523539000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364772.72919999808073, 256516.253100000321865 ], [ 364768.116099998354912, 256489.828699998557568 ], [ 364762.470100000500679, 256489.993599999696016 ], [ 364751.986299999058247, 256490.118900001049042 ], [ 364754.178599998354912, 256516.734600000083447 ], [ 364772.72919999808073, 256516.253100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604023500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-261", "ACRE": ".15", "LONGITUDE": -64.88447969000001, "LATITUDE": 18.33751102, "OBJECTID_1": 21710, "PARCEL_NO_": "105604023500", "Tax_Legal_": "148-261 ANNAS RETREAT NEW QTR", "Name": "HARVEY (LIFE ESTATE), MAISIE", "Address": "7320 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 165900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.421656318, "SHAPE_Area": 637.68331382300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363726.347800001502037, 256482.780000001192093 ], [ 363700.531400002539158, 256484.257399998605251 ], [ 363699.698100000619888, 256487.416999999433756 ], [ 363701.13629999756813, 256507.904899999499321 ], [ 363727.755400002002716, 256506.856199998408556 ], [ 363726.347800001502037, 256482.780000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87438471, "LATITUDE": 18.33747395, "OBJECTID_1": 23020, "PARCEL_NO_": "105703042300", "Tax_Legal_": "ANNAS RETREAT 173-123 NEW QTR", "Name": "NIBBS, LUNA, JONELLE & WENDELL", "Address": "PO Box 9184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 177600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.1828275007, "SHAPE_Area": 519.21792812599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364772.72919999808073, 256516.253100000321865 ], [ 364781.616599999368191, 256514.214999999850988 ], [ 364788.929200001060963, 256507.730900000780821 ], [ 364790.559799998998642, 256505.633299998939037 ], [ 364792.211999997496605, 256501.00279999896884 ], [ 364795.539700001478195, 256488.997699998319149 ], [ 364774.568400003015995, 256489.670400001108646 ], [ 364768.116099998354912, 256489.828699998557568 ], [ 364772.72919999808073, 256516.253100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704012500", "MAP": "F9-971-T62", "PARCEL_NAM": "57B-13", "ACRE": ".32", "LONGITUDE": -64.87160852, "LATITUDE": 18.33735741, "OBJECTID_1": 23470, "PARCEL_NO_": "105704012500", "Tax_Legal_": "57-13&57-12B ESTATE SMITH BAY EASTEND QTR.", "Name": "POTTER, MILTON E. & VENZEN, P. M", "Address": "7630 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89100, "Improved_V": 199100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.039377629, "SHAPE_Area": 1316.64049112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365065.42059999704361, 256518.648699998855591 ], [ 365070.278300002217293, 256516.366399999707937 ], [ 365077.581900000572205, 256510.937800001353025 ], [ 365083.278200000524521, 256504.862700000405312 ], [ 365086.546599999070168, 256499.82319999858737 ], [ 365090.686099998652935, 256487.191399998962879 ], [ 365093.248800002038479, 256470.32490000128746 ], [ 365090.867700003087521, 256465.872499998658895 ], [ 365088.463100001215935, 256464.164000000804663 ], [ 365082.019799999892712, 256463.2668999992311 ], [ 365077.972099997103214, 256465.133699998259544 ], [ 365056.001999996602535, 256488.385200001299381 ], [ 365055.984099999070168, 256490.495999999344349 ], [ 365051.932700000703335, 256492.78489999845624 ], [ 365065.42059999704361, 256518.648699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010300", "MAP": "F9-828-T61", "PARCEL_NAM": "13", "ACRE": null, "LONGITUDE": -64.89628309, "LATITUDE": 18.33741284, "OBJECTID_1": 21501, "PARCEL_NO_": "105603010300", "Tax_Legal_": "13 CHARLOTTE AMALIE NEW QUARTER", "Name": "ALBERT E. HARTHMAN ROSA L. HARTHMAN REVOCABLE TRUS", "Address": "PO Box 7068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34600, "Improved_V": 341400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.68321611799999, "SHAPE_Area": 1419.9803070400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362485.263899996876717, 256492.994300000369549 ], [ 362480.776699997484684, 256451.265099998563528 ], [ 362447.685500003397465, 256454.793999999761581 ], [ 362451.362800002098083, 256496.938700001686811 ], [ 362485.263899996876717, 256492.994300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604026200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-247", "ACRE": ".145", "LONGITUDE": -64.88277607000001, "LATITUDE": 18.33743916, "OBJECTID_1": 21737, "PARCEL_NO_": "105604026200", "Tax_Legal_": "148-247 ANNAS RETREAT NEW QTR", "Name": "JOHN EVAN GUMBS REVOCABLE FAMILY TRUST", "Address": "PO Box 454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040454, "Country": "United States", "Land_Value": 17600, "Improved_V": 103700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.502998657199996, "SHAPE_Area": 584.91716875300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363905.198100000619888, 256501.975600000470877 ], [ 363901.425499998033047, 256471.5472999997437 ], [ 363880.402000002563, 256478.341299999505281 ], [ 363889.0287000015378, 256506.909499999135733 ], [ 363905.198100000619888, 256501.975600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051400", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-213", "ACRE": "0.10", "LONGITUDE": -64.87792581, "LATITUDE": 18.33747707, "OBJECTID_1": 23070, "PARCEL_NO_": "105703051400", "Tax_Legal_": "ANNAS RETREAT 173-213 NEW QTR", "Name": "HENRY,SR, ALSON S.", "Address": "PO BOX 8596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 135400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.036734172600006, "SHAPE_Area": 390.60780838199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364417.174199998378754, 256509.965599998831749 ], [ 364409.344800002872944, 256482.459399998188019 ], [ 364405.306100003421307, 256483.270700000226498 ], [ 364402.883500002324581, 256483.673000000417233 ], [ 364396.244000002741814, 256485.244899999350309 ], [ 364402.983900003135204, 256512.081799998879433 ], [ 364404.256999999284744, 256511.759700000286102 ], [ 364410.712899997830391, 256511.179299999028444 ], [ 364417.174199998378754, 256509.965599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604025600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-253", "ACRE": ".147", "LONGITUDE": -64.88378494, "LATITUDE": 18.33743064, "OBJECTID_1": 21731, "PARCEL_NO_": "105604025600", "Tax_Legal_": "ANNAS RETREAT 148-253 NEW QTR", "Name": "BARON, HENRY L. & MICHELLE DAVIS", "Address": "148-253 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21600, "Improved_V": 100200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.330465663699997, "SHAPE_Area": 551.47073545800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363802.976300001144409, 256480.029599998146296 ], [ 363790.9679000005126, 256469.798900000751019 ], [ 363770.6266999989748, 256491.163899999111891 ], [ 363778.625100001692772, 256498.82880000025034 ], [ 363786.635999999940395, 256505.015999998897314 ], [ 363802.976300001144409, 256480.029599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051500", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-212", "ACRE": "0.10", "LONGITUDE": -64.87779084, "LATITUDE": 18.33744441, "OBJECTID_1": 23071, "PARCEL_NO_": "105703051500", "Tax_Legal_": "ANNAS RETREAT 173-212 NEW QTR.", "Name": "RICHARDS, LINDA", "Address": "135 Springside Path", "City": "Harvest", "State": "Alabama", "Zip": 35749, "Country": "United States", "Land_Value": 13700, "Improved_V": 89100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.1187043531, "SHAPE_Area": 445.04059446600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364431.748400002717972, 256505.89809999987483 ], [ 364425.264499999582767, 256478.641800001263618 ], [ 364419.040399998426437, 256480.216699998825788 ], [ 364409.344800002872944, 256482.459399998188019 ], [ 364417.174199998378754, 256509.965599998831749 ], [ 364431.748400002717972, 256505.89809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803031400", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".286", "LONGITUDE": -64.85920859, "LATITUDE": 18.33732553, "OBJECTID_1": 23931, "PARCEL_NO_": "105803031400", "Tax_Legal_": "SMITH BAY 19-2-161 EAST END QUARTER", "Name": "PACHECO, RUBY", "Address": "4392 ANNA'S RETREAT Ste #3", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.238622502, "SHAPE_Area": 1152.0473320200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366400.816100001335144, 256512.901900000870228 ], [ 366393.816500000655651, 256482.65819999948144 ], [ 366402.80460000038147, 256468.799600001424551 ], [ 366377.738799996674061, 256476.827100001275539 ], [ 366369.5641999989748, 256489.848000001162291 ], [ 366375.70719999819994, 256525.995299998670816 ], [ 366400.816100001335144, 256512.901900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703017200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-218", "ACRE": ".134", "LONGITUDE": -64.88159689, "LATITUDE": 18.33744376, "OBJECTID_1": 22893, "PARCEL_NO_": "105703017200", "Tax_Legal_": "ANNAS RETREAT 148-218 NEW QTR", "Name": "ROBINSON, ELIZA ALBERTHA", "Address": "PO Box 7991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 102200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.546382226700004, "SHAPE_Area": 518.62145449800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364035.961000002920628, 256486.580600000917912 ], [ 364022.356200002133846, 256474.436900001019239 ], [ 364001.210500001907349, 256495.584300000220537 ], [ 364006.014200001955032, 256499.634399998933077 ], [ 364014.019799999892712, 256506.454900000244379 ], [ 364035.961000002920628, 256486.580600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703071500", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-62", "ACRE": "0.10", "LONGITUDE": -64.87918747000001, "LATITUDE": 18.33746324, "OBJECTID_1": 23231, "PARCEL_NO_": "105703071500", "Tax_Legal_": "ANNAS RETREAT 173-62 NEW QTR", "Name": "CAMPBELL-MARRERO, SOPHIA L.", "Address": "9200 Vitraco Park", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022608, "Country": "United States", "Land_Value": 13700, "Improved_V": 112200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.341372540999998, "SHAPE_Area": 334.96753634599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364286.627099998295307, 256500.031199999153614 ], [ 364269.852799996733665, 256481.317699998617172 ], [ 364259.293399997055531, 256490.308299999684095 ], [ 364277.683899998664856, 256508.612799998372793 ], [ 364286.627099998295307, 256500.031199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703044600", "MAP": "A9-102C-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87645863, "LATITUDE": 18.33744982, "OBJECTID_1": 23042, "PARCEL_NO_": "105703044600", "Tax_Legal_": "ANNAS RETREAT 173-166 1 NEW QTR.", "Name": "CALLWOOD (LIFE ESTATE), WAYNE", "Address": "7782 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 97900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.5915965943, "SHAPE_Area": 409.00792491 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364572.020300000905991, 256507.222199998795986 ], [ 364565.794600002467632, 256480.784499999135733 ], [ 364551.248599998652935, 256484.46510000154376 ], [ 364557.472599998116493, 256511.113899998366833 ], [ 364565.555500000715256, 256508.857999999076128 ], [ 364572.020300000905991, 256507.222199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703014600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-244", "ACRE": ".144", "LONGITUDE": -64.88222675, "LATITUDE": 18.33743725, "OBJECTID_1": 22867, "PARCEL_NO_": "105703014600", "Tax_Legal_": "148-244 ANNAS RETREAT NEW QUARTER", "Name": "LEWIS, OLIVE", "Address": "PO Box 1075", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 126800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.972577816599994, "SHAPE_Area": 518.19658078299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363964.272900000214577, 256477.339000001549721 ], [ 363945.760099999606609, 256473.387800000607967 ], [ 363940.677699998021126, 256502.054900001734495 ], [ 363956.773400001227856, 256505.775299999862909 ], [ 363964.272900000214577, 256477.339000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703057300", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-13", "ACRE": "0.10", "LONGITUDE": -64.87856571, "LATITUDE": 18.33742034, "OBJECTID_1": 23129, "PARCEL_NO_": "105703057300", "Tax_Legal_": "173-13 ANNAS RETREAT NEW QUARTER", "Name": "GEORGE, BRENDA-LIFE", "Address": "PO Box 10238", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14900, "Improved_V": 91400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.154519979699998, "SHAPE_Area": 521.346752348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364352.753700003027916, 256499.517000000923872 ], [ 364341.68469999730587, 256473.672899998724461 ], [ 364324.678400002419949, 256482.1886 ], [ 364337.35639999806881, 256508.467999998480082 ], [ 364338.801100000739098, 256507.539500001817942 ], [ 364347.086099997162819, 256502.214800000190735 ], [ 364352.753700003027916, 256499.517000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703023300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-163", "ACRE": ".145", "LONGITUDE": -64.8808568, "LATITUDE": 18.33743925, "OBJECTID_1": 22935, "PARCEL_NO_": "105703023300", "Tax_Legal_": "148-163 ANNAS RETREAT NEW QUARTER", "Name": "STEPHANIE SCOTT WILLIAMS REVOCABLE TRUST", "Address": "PO Box 502883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19200, "Improved_V": 131300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.467441967699997, "SHAPE_Area": 516.57924060899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364111.669900000095367, 256497.121599998325109 ], [ 364105.393799997866154, 256476.594200000166893 ], [ 364081.123499996960163, 256485.89469999819994 ], [ 364088.225699998438358, 256504.106899999082088 ], [ 364111.669900000095367, 256497.121599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703014400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-246", "ACRE": ".162", "LONGITUDE": -64.88259292, "LATITUDE": 18.33740311, "OBJECTID_1": 22865, "PARCEL_NO_": "105703014400", "Tax_Legal_": "ANNAS RETREAT 148-246 NEW QTR", "Name": "ORTIZ, RAMON L & OTHERS", "Address": "PO Box 7871", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 105000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.526771802, "SHAPE_Area": 632.660891236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363923.754100002348423, 256500.86089999973774 ], [ 363922.421999998390675, 256467.919399999082088 ], [ 363901.425499998033047, 256471.5472999997437 ], [ 363905.198100000619888, 256501.975600000470877 ], [ 363923.754100002348423, 256500.86089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703014500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-245", "ACRE": ".149", "LONGITUDE": -64.88240613000001, "LATITUDE": 18.33740073, "OBJECTID_1": 22866, "PARCEL_NO_": "105703014500", "Tax_Legal_": "ANNAS RETREAT 148-245 NEW QTR", "Name": "GEORGE, GAYNELLE & OTHERS", "Address": "PO Box 8184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18800, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.02409024799999, "SHAPE_Area": 629.25721139400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363944.151100002229214, 256472.952399998903275 ], [ 363928.057199999690056, 256469.021000001579523 ], [ 363922.421999998390675, 256467.919399999082088 ], [ 363923.754100002348423, 256500.86089999973774 ], [ 363940.677699998021126, 256502.054900001734495 ], [ 363945.760099999606609, 256473.387800000607967 ], [ 363944.151100002229214, 256472.952399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703044500", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-167", "ACRE": "0.10", "LONGITUDE": -64.87632331, "LATITUDE": 18.33741386, "OBJECTID_1": 23041, "PARCEL_NO_": "105703044500", "Tax_Legal_": "173-167 ANNAS RETREAT NEW QTR", "Name": "MARTIN, PICCOLA LEONA", "Address": "7783 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 134600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.784956126599994, "SHAPE_Area": 398.28622703000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364585.758199997246265, 256503.745999999344349 ], [ 364580.342399999499321, 256476.892799999564886 ], [ 364565.794600002467632, 256480.784499999135733 ], [ 364572.020300000905991, 256507.222199998795986 ], [ 364579.293300002813339, 256505.381900001317263 ], [ 364585.758199997246265, 256503.745999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703023600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-131", "ACRE": ".126", "LONGITUDE": -64.88049067, "LATITUDE": 18.33742989, "OBJECTID_1": 22938, "PARCEL_NO_": "105703023600", "Tax_Legal_": "ANNAS RETREAT 148-131 NEW QTR", "Name": "GARVEY, EVERTON A. & COLEEN A. RITTER", "Address": "PO BOX 502701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16400, "Improved_V": 95500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.508956292799994, "SHAPE_Area": 522.87741633400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364147.320200003683567, 256477.148400001227856 ], [ 364118.208499997854233, 256486.831500001251698 ], [ 364123.714199997484684, 256503.130800001323223 ], [ 364152.829599998891354, 256493.025499999523163 ], [ 364147.320200003683567, 256477.148400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704034800", "MAP": "D9-1605-T80", "PARCEL_NAM": "173A-22", "ACRE": ".22", "LONGITUDE": -64.87290754, "LATITUDE": 18.33732786, "OBJECTID_1": 23599, "PARCEL_NO_": "105704034800", "Tax_Legal_": "ANNAS RETREAT 173A-22 NEW QTR.", "Name": "SMITH, JAMES A. & ELLENA A.", "Address": "7636 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.26546361600001, "SHAPE_Area": 852.55909315899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364951.105400003492832, 256496.2043999992311 ], [ 364945.125299997627735, 256460.506000000983477 ], [ 364937.657499998807907, 256465.885099999606609 ], [ 364925.487300001084805, 256474.651399999856949 ], [ 364923.053999997675419, 256476.320199999958277 ], [ 364928.415899999439716, 256509.505800001323223 ], [ 364951.105400003492832, 256496.2043999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051700", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-210", "ACRE": "0.10", "LONGITUDE": -64.87751588, "LATITUDE": 18.33736894, "OBJECTID_1": 23073, "PARCEL_NO_": "105703051700", "Tax_Legal_": "ANNAS RETREAT 173-210 NEW QTR", "Name": "AUDAIN, DARREL & MELINDA", "Address": "PO Box 307451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14900, "Improved_V": 104900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.4019701621, "SHAPE_Area": 452.859872193 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364460.291199997067451, 256498.440600000321865 ], [ 364454.611599996685982, 256469.530999999493361 ], [ 364439.250299997627735, 256474.260400000959635 ], [ 364445.637900002300739, 256502.26410000026226 ], [ 364460.291199997067451, 256498.440600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803031100", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".471", "LONGITUDE": -64.86009787, "LATITUDE": 18.33721365, "OBJECTID_1": 23928, "PARCEL_NO_": "105803031100", "Tax_Legal_": "SMITH BAY ESTATE 19-2-158 No.1,2&3 EASTEND QTR.", "Name": "DOORNICK, ELLE JILL", "Address": "393 Rye Beach Ave", "City": "Rye", "State": "New York", "Zip": 10580, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.047691106, "SHAPE_Area": 1682.7907136599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366270.429200001060963, 256500.6114999987185 ], [ 366307.95160000026226, 256512.983300000429153 ], [ 366309.83049999922514, 256497.169599998742342 ], [ 366309.859300002455711, 256493.792300000786781 ], [ 366310.031900003552437, 256473.5287000015378 ], [ 366310.057099997997284, 256470.573600001633167 ], [ 366277.149300001561642, 256452.572399999946356 ], [ 366270.429200001060963, 256500.6114999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703044400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-168", "ACRE": "0.10", "LONGITUDE": -64.87619304, "LATITUDE": 18.33738385, "OBJECTID_1": 23040, "PARCEL_NO_": "105703044400", "Tax_Legal_": "ANNAS RETREAT 173-168 NEW QTR", "Name": "GERARD, GLORIA M", "Address": "PO Box 561", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14900, "Improved_V": 114000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.421405398299996, "SHAPE_Area": 377.35078563299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364599.494300000369549, 256500.480900000780821 ], [ 364593.272200003266335, 256473.621100001037121 ], [ 364580.342399999499321, 256476.892799999564886 ], [ 364585.758199997246265, 256503.745999999344349 ], [ 364597.070000000298023, 256501.094399999827147 ], [ 364599.494300000369549, 256500.480900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703071600", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-61", "ACRE": "0.09", "LONGITUDE": -64.87909193, "LATITUDE": 18.33738031, "OBJECTID_1": 23232, "PARCEL_NO_": "105703071600", "Tax_Legal_": "173-61 ANNAS RETREAT NEW QUARTER", "Name": "BENJAMIN (LIFE ESTATE), BEVERLY", "Address": "PO Box 8561", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12300, "Improved_V": 117800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.840038053499995, "SHAPE_Area": 350.11748139500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364296.381999999284744, 256490.822900000959635 ], [ 364281.223899997770786, 256471.700399998575449 ], [ 364269.852799996733665, 256481.317699998617172 ], [ 364286.627099998295307, 256500.031199999153614 ], [ 364296.381999999284744, 256490.822900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703021000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-167", "ACRE": ".138", "LONGITUDE": -64.88120047, "LATITUDE": 18.33735995, "OBJECTID_1": 22912, "PARCEL_NO_": "105703021000", "Tax_Legal_": "ANNAS RETREAT 148-167 NEW QTR", "Name": "McCLEAN, HENERITA F", "Address": "7351 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 91800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.114464971, "SHAPE_Area": 628.32309149900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364079.539700001478195, 256482.504299998283386 ], [ 364074.798900000751019, 256471.066399998962879 ], [ 364043.338299997150898, 256472.497699998319149 ], [ 364044.855599999427795, 256483.698100000619888 ], [ 364056.0253000035882, 256497.721700001507998 ], [ 364079.539700001478195, 256482.504299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603012600", "MAP": "D9-7573-T005", "PARCEL_NAM": "25B", "ACRE": "3.050", "LONGITUDE": -64.89183056, "LATITUDE": 18.33667444, "OBJECTID_1": 21523, "PARCEL_NO_": "105603012600", "Tax_Legal_": "25B ESTATE CHARLOTTE AMALIE 3 NEW QUARTER", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 377300, "Improved_V": 814700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 466.13532524800002, "SHAPE_Area": 12290.884105 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363023.363099999725819, 256368.313200000673532 ], [ 362967.663699999451637, 256319.156399998813868 ], [ 362959.128300003707409, 256322.798900000751019 ], [ 362943.73030000180006, 256329.369899999350309 ], [ 362885.191200003027916, 256387.909099999815226 ], [ 362873.946299999952316, 256421.974300000816584 ], [ 362872.75959999859333, 256440.963300000876188 ], [ 362878.218599997460842, 256462.750599998980761 ], [ 362890.135300002992153, 256483.746399998664856 ], [ 362892.521799996495247, 256487.565600000321865 ], [ 363023.363099999725819, 256368.313200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703057200", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-14", "ACRE": "0.10", "LONGITUDE": -64.87843864, "LATITUDE": 18.3373582, "OBJECTID_1": 23128, "PARCEL_NO_": "105703057200", "Tax_Legal_": "ANNAS RETREAT 173-14 NEW QTR", "Name": "KENNINGS, LINDLEY & LYNETTE (LIFE ESTATE)", "Address": "PO Box 5817", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14900, "Improved_V": 100400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.077870118199996, "SHAPE_Area": 324.94352445099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364362.818199999630451, 256494.506599999964237 ], [ 364352.788199998438358, 256468.799499999731779 ], [ 364341.68469999730587, 256473.672899998724461 ], [ 364352.753700003027916, 256499.517000000923872 ], [ 364362.818199999630451, 256494.506599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803031000", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".286", "LONGITUDE": -64.85855819, "LATITUDE": 18.33726059, "OBJECTID_1": 23927, "PARCEL_NO_": "105803031000", "Tax_Legal_": "SMITH BAY 19-2-164 1,2&3 EASTEND QTR.", "Name": "ADAMS, RITA A", "Address": "PO Box 503214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29600, "Improved_V": 142200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.93592881699999, "SHAPE_Area": 1183.7087408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366473.772699996829033, 256467.902800001204014 ], [ 366433.280799999833107, 256488.258499998599291 ], [ 366426.792599998414516, 256492.638399999588728 ], [ 366441.108400002121925, 256515.975900001823902 ], [ 366450.86150000244379, 256506.978700000792742 ], [ 366475.991999998688698, 256491.352299999445677 ], [ 366477.622599996626377, 256489.254700001329184 ], [ 366477.685599997639656, 256481.866999998688698 ], [ 366473.772699996829033, 256467.902800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703017300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-217", "ACRE": ".133", "LONGITUDE": -64.88171643, "LATITUDE": 18.3373419, "OBJECTID_1": 22894, "PARCEL_NO_": "105703017300", "Tax_Legal_": "ANNAS RETREAT 148-217 NEW QTR", "Name": "CALLWOOD, DWANE & LAVERNE CALLWOOD-FRETT", "Address": "7136 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021910, "Country": "United States", "Land_Value": 17800, "Improved_V": 89000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.671336026600002, "SHAPE_Area": 474.453965423 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364022.356200002133846, 256474.436900001019239 ], [ 364005.52250000089407, 256462.688999999314547 ], [ 363991.595799997448921, 256488.328400000929832 ], [ 363994.002199999988079, 256489.825699999928474 ], [ 364001.210500001907349, 256495.584300000220537 ], [ 364022.356200002133846, 256474.436900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703044300", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-169", "ACRE": "0.11", "LONGITUDE": -64.87606863000001, "LATITUDE": 18.33735439, "OBJECTID_1": 23039, "PARCEL_NO_": "105703044300", "Tax_Legal_": "ANNAS RETREAT 173-169 NEW QTR", "Name": "ANDREW, THERESA C & JOSETTE C. FENTON", "Address": "PO BOX 304185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16300, "Improved_V": 128100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.240488898400002, "SHAPE_Area": 370.37011240200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364613.230400003492832, 256497.215900000184774 ], [ 364605.395599998533726, 256470.3429000005126 ], [ 364593.272200003266335, 256473.621100001037121 ], [ 364599.494300000369549, 256500.480900000780821 ], [ 364613.230400003492832, 256497.215900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604023600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-299", "ACRE": "0.12", "LONGITUDE": -64.88482394, "LATITUDE": 18.3373804, "OBJECTID_1": 21711, "PARCEL_NO_": "105604023600", "Tax_Legal_": "148-299 ANNAS RETREAT NEW QTR", "Name": "QUETEL, SHIRLEY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.465081537900005, "SHAPE_Area": 516.59025671699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363662.713799998164177, 256489.253100000321865 ], [ 363690.801700003445148, 256490.510600000619888 ], [ 363690.862899996340275, 256483.33390000090003 ], [ 363692.560000002384186, 256473.426399998366833 ], [ 363693.193899996578693, 256471.669599998742342 ], [ 363663.545699998736382, 256471.669599998742342 ], [ 363663.532799996435642, 256473.188799999654293 ], [ 363662.713799998164177, 256489.253100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-209", "ACRE": "0.10", "LONGITUDE": -64.87737856, "LATITUDE": 18.33733646, "OBJECTID_1": 23074, "PARCEL_NO_": "105703051800", "Tax_Legal_": "ANNAS RETREAT 173-209 NEW QTR", "Name": "NAJOCKI BOYD and KIT-ALIA FREEMAN", "Address": "PO BOX 502934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 13700, "Improved_V": 75400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.014045052900002, "SHAPE_Area": 425.275926137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364475.390799999237061, 256494.602899998426437 ], [ 364467.226999998092651, 256465.897700000554323 ], [ 364465.928800001740456, 256466.246100001037121 ], [ 364459.462099999189377, 256468.092999998480082 ], [ 364454.611599996685982, 256469.530999999493361 ], [ 364460.291199997067451, 256498.440600000321865 ], [ 364462.433799996972084, 256497.881499998271465 ], [ 364475.390799999237061, 256494.602899998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704034300", "MAP": "D9-1563-T80", "PARCEL_NAM": "173A-18", "ACRE": "0.44", "LONGITUDE": -64.87195912, "LATITUDE": 18.33719934, "OBJECTID_1": 23594, "PARCEL_NO_": "105704034300", "Tax_Legal_": "ANNAS RETREAT 173A-18 NEW QTR", "Name": "FLEMING, BERTILE & ARLETTE", "Address": "146-158 EST TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52400, "Improved_V": 1400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.72260770700001, "SHAPE_Area": 1673.70957329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365052.375399999320507, 256445.166600000113249 ], [ 365048.307499997317791, 256445.048099998384714 ], [ 365034.594800002872944, 256445.569099999964237 ], [ 365029.695799998939037, 256452.706199999898672 ], [ 365025.628300003707409, 256456.894799999892712 ], [ 365010.218400001525879, 256467.323300000280142 ], [ 365034.915600001811981, 256502.56700000166893 ], [ 365051.932700000703335, 256492.78489999845624 ], [ 365055.984099999070168, 256490.495999999344349 ], [ 365056.001999996602535, 256488.385200001299381 ], [ 365055.265799999237061, 256480.146499998867512 ], [ 365055.316200003027916, 256474.236400000751019 ], [ 365052.375399999320507, 256445.166600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803031500", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".249", "LONGITUDE": -64.85896985, "LATITUDE": 18.3372134, "OBJECTID_1": 23932, "PARCEL_NO_": "105803031500", "Tax_Legal_": "SMITH BAY 19-2-162 EAST END QUARTER", "Name": "PACHECO, RUBY", "Address": "4392 ANNA'S RETREAT Ste #3", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.72298729400001, "SHAPE_Area": 1048.6485141799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366426.792599998414516, 256492.638399999588728 ], [ 366421.349799998104572, 256468.951400000602007 ], [ 366430.298299998044968, 256459.7364999987185 ], [ 366421.410899996757507, 256461.774700000882149 ], [ 366418.16950000077486, 256463.647999998182058 ], [ 366402.80460000038147, 256468.799600001424551 ], [ 366393.816500000655651, 256482.65819999948144 ], [ 366400.816100001335144, 256512.901900000870228 ], [ 366426.792599998414516, 256492.638399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604025500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-254", "ACRE": ".139", "LONGITUDE": -64.88390621000001, "LATITUDE": 18.33731083, "OBJECTID_1": 21730, "PARCEL_NO_": "105604025500", "Tax_Legal_": "148-254 ANNAS RETREAT NEW QTR", "Name": "MERCER, JAMES & LILLIAN", "Address": "7341 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 95700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.254199593199999, "SHAPE_Area": 535.30368068899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363790.9679000005126, 256469.798900000751019 ], [ 363779.787399999797344, 256457.041700001806021 ], [ 363757.851499997079372, 256476.282800000160933 ], [ 363770.6266999989748, 256491.163899999111891 ], [ 363790.9679000005126, 256469.798900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703044200", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-170", "ACRE": "0.11", "LONGITUDE": -64.87593131, "LATITUDE": 18.33731595, "OBJECTID_1": 23038, "PARCEL_NO_": "105703044200", "Tax_Legal_": "ANNAS RETREAT 173-170 NEW QTR", "Name": "WILLIAMS, HERCULES & F. L", "Address": "PO Box 7851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 88500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.932862678199996, "SHAPE_Area": 472.92232639399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364627.769199997186661, 256494.37950000166893 ], [ 364623.975000001490116, 256466.484099999070168 ], [ 364605.395599998533726, 256470.3429000005126 ], [ 364613.230400003492832, 256497.215900000184774 ], [ 364627.769199997186661, 256494.37950000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704030700", "MAP": "A9-150-T70", "PARCEL_NAM": "173-301", "ACRE": "0.15", "LONGITUDE": -64.87381092, "LATITUDE": 18.33724877, "OBJECTID_1": 23561, "PARCEL_NO_": "105704030700", "Tax_Legal_": "ANNAS RETREAT 173-301 NEW QTR", "Name": "BLACKMAN, CORAL", "Address": "7708 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 146000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.328953216, "SHAPE_Area": 687.04071334499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364830.464699998497963, 256459.519299998879433 ], [ 364831.931699998676777, 256476.629900000989437 ], [ 364835.871500000357628, 256487.42790000140667 ], [ 364830.166199997067451, 256494.558400001376867 ], [ 364830.131999999284744, 256498.568900000303984 ], [ 364856.041900001466274, 256486.11540000140667 ], [ 364846.619699999690056, 256456.274099998176098 ], [ 364830.464699998497963, 256459.519299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604026300", "MAP": "C3-120-T78", "PARCEL_NAM": "REM 148-324", "ACRE": "7.50", "LONGITUDE": -64.88397111, "LATITUDE": 18.33594787, "OBJECTID_1": 21738, "PARCEL_NO_": "105604026300", "Tax_Legal_": "148-324 ANNAS RETREAT NEW QTR.", "Name": "RIZZOLO, BART", "Address": "3140 S Bronco St", "City": "Las Vegas", "State": "Nevada", "Zip": 89146, "Country": "United States", "Land_Value": 405100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1115.33449636, "SHAPE_Area": 32465.6050135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363847.51690000295639, 256363.026200000196695 ], [ 363851.579099997878075, 256359.470800001174212 ], [ 363848.377199999988079, 256356.700399998575449 ], [ 363837.214699998497963, 256341.832499999552965 ], [ 363826.894500002264977, 256322.749600000679493 ], [ 363818.993199996650219, 256303.686500001698732 ], [ 363814.317100003361702, 256284.64979999884963 ], [ 363811.244699999690056, 256266.681699998676777 ], [ 363812.088799998164177, 256262.255699999630451 ], [ 363817.902000002563, 256242.460499998182058 ], [ 363826.132399998605251, 256222.896099999547005 ], [ 363790.116300001740456, 256191.148400001227856 ], [ 363630.473600000143051, 256188.997400000691414 ], [ 363741.50450000166893, 256312.762600000947714 ], [ 363696.44879999756813, 256395.564699999988079 ], [ 363714.927500002086163, 256403.526399999856949 ], [ 363731.798900000751019, 256410.841699998825788 ], [ 363748.643299996852875, 256421.323100000619888 ], [ 363765.442800000309944, 256437.081599999219179 ], [ 363767.04110000282526, 256438.783399999141693 ], [ 363778.190999999642372, 256455.128800000995398 ], [ 363779.787399999797344, 256457.041700001806021 ], [ 363790.9679000005126, 256469.798900000751019 ], [ 363802.976300001144409, 256480.029599998146296 ], [ 363816.62780000269413, 256486.685300000011921 ], [ 363830.311800003051758, 256489.541499998420477 ], [ 363834.345100000500679, 256489.363400001078844 ], [ 363847.251500003039837, 256488.835799999535084 ], [ 363863.422700002789497, 256483.690799999982119 ], [ 363880.402000002563, 256478.341299999505281 ], [ 363901.425499998033047, 256471.5472999997437 ], [ 363922.421999998390675, 256467.919399999082088 ], [ 363911.153399996459484, 256465.505199998617172 ], [ 363909.544399999082088, 256465.06980000063777 ], [ 363887.016199998557568, 256459.185899998992682 ], [ 363878.166500002145767, 256456.791499998420477 ], [ 363870.943899996578693, 256452.721599999815226 ], [ 363850.084100000560284, 256440.307399999350309 ], [ 363836.470200002193451, 256429.219099998474121 ], [ 363821.258199997246265, 256416.429000001400709 ], [ 363812.45889999717474, 256408.124400001019239 ], [ 363804.464100003242493, 256400.037399999797344 ], [ 363791.676399998366833, 256386.633799999952316 ], [ 363816.821299999952316, 256369.318799998611212 ], [ 363840.346400000154972, 256352.83500000089407 ], [ 363847.51690000295639, 256363.026200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87402839000001, "LATITUDE": 18.3373467, "OBJECTID_1": 23559, "PARCEL_NO_": "105704030500", "Tax_Legal_": "ANNAS RETREAT 173-121 NEW QTR", "Name": "FREDERIKSEN, CRISTINA", "Address": "7714 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 99900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.656175767799994, "SHAPE_Area": 547.64130781400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364831.931699998676777, 256476.629900000989437 ], [ 364805.3108000010252, 256477.889699999243021 ], [ 364802.724600002169609, 256497.500199999660254 ], [ 364830.166199997067451, 256494.558400001376867 ], [ 364835.871500000357628, 256487.42790000140667 ], [ 364831.931699998676777, 256476.629900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703044100", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-171", "ACRE": "0.11", "LONGITUDE": -64.87577975000001, "LATITUDE": 18.33729441, "OBJECTID_1": 23037, "PARCEL_NO_": "105703044100", "Tax_Legal_": "173-171 ANNAS RETREAT NO.1 NEW QTR", "Name": "CLENDINEN, LINDA M.", "Address": "7787 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 88600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.417910011800004, "SHAPE_Area": 436.24111366800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364642.297200001776218, 256492.80970000103116 ], [ 364640.119199998676777, 256464.505300000309944 ], [ 364623.975000001490116, 256466.484099999070168 ], [ 364627.769199997186661, 256494.37950000166893 ], [ 364642.297200001776218, 256492.80970000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85308082, "LATITUDE": 18.33712126, "OBJECTID_1": 24028, "PARCEL_NO_": "105804021900", "Tax_Legal_": "SMITH BAY ESTATE 11B-2 No.1,2&3 EASTEND QTR.", "Name": "PELICAN BEACH SANDCASTLE INC", "Address": "6345 Smith Bay Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 576900, "Improved_V": 447100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.42789647500001, "SHAPE_Area": 4402.4157048300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367024.133400000631809, 256513.570500001311302 ], [ 367083.892300002276897, 256503.293800000101328 ], [ 367079.138899996876717, 256493.333500001579523 ], [ 367068.798900000751019, 256476.572500001639128 ], [ 367039.258500002324581, 256441.922400001436472 ], [ 367032.833099998533726, 256438.914500001817942 ], [ 367025.574500001966953, 256439.066199999302626 ], [ 367020.709700003266335, 256442.192800000309944 ], [ 366993.043300002813339, 256471.519499998539686 ], [ 366988.952399998903275, 256478.452100001275539 ], [ 366989.711999997496605, 256483.946699999272823 ], [ 366992.084100000560284, 256489.454599998891354 ], [ 366995.257200002670288, 256495.602299999445677 ], [ 367000.050200000405312, 256500.918800000101328 ], [ 367006.459299996495247, 256505.826400000602007 ], [ 367012.880999997258186, 256509.256499998271465 ], [ 367024.133400000631809, 256513.570500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703071700", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-60", "ACRE": "0.10", "LONGITUDE": -64.87899003, "LATITUDE": 18.33730308, "OBJECTID_1": 23233, "PARCEL_NO_": "105703071700", "Tax_Legal_": "ANNAS RETREAT 173-60 NEW QTR", "Name": "MULRAIN, J & RICHARDS, E", "Address": "7522 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 81500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.151911902999998, "SHAPE_Area": 322.88313285300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364306.928800001740456, 256483.309900000691414 ], [ 364292.57880000025034, 256463.982900001108646 ], [ 364281.223899997770786, 256471.700399998575449 ], [ 364296.381999999284744, 256490.822900000959635 ], [ 364306.928800001740456, 256483.309900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703057100", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-15", "ACRE": "0.10", "LONGITUDE": -64.87832694, "LATITUDE": 18.33731586, "OBJECTID_1": 23127, "PARCEL_NO_": "105703057100", "Tax_Legal_": "ANNAS RETREAT 173-15 NEW QTR.", "Name": "HARLEY, GRACE & DENFIELD", "Address": "1833 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026746, "Country": "United States", "Land_Value": 14900, "Improved_V": 52900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.708638974600007, "SHAPE_Area": 370.75320177899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364375.36710000038147, 256490.276200000196695 ], [ 364366.772100001573563, 256465.325199998915195 ], [ 364364.277099996805191, 256465.7939000017941 ], [ 364361.907300002872944, 256466.239100001752377 ], [ 364353.016199998557568, 256468.699400000274181 ], [ 364352.788199998438358, 256468.799499999731779 ], [ 364362.818199999630451, 256494.506599999964237 ], [ 364366.520400002598763, 256492.663499999791384 ], [ 364371.369000002741814, 256491.436700001358986 ], [ 364373.193499997258186, 256490.9070999994874 ], [ 364375.36710000038147, 256490.276200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703017400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-216", "ACRE": ".131", "LONGITUDE": -64.88186109, "LATITUDE": 18.33727111, "OBJECTID_1": 22895, "PARCEL_NO_": "105703017400", "Tax_Legal_": "148-216 ANNAS RETREAT NO.1 NEW QTR", "Name": "ROGERS, YELEXZA & JAHLANI & ALEZA D. HANSEN", "Address": "6155 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17300, "Improved_V": 154500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.92886864, "SHAPE_Area": 518.53675508399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364005.52250000089407, 256462.688999999314547 ], [ 363995.891699999570847, 256457.332800000905991 ], [ 363988.652900002896786, 256455.162599999457598 ], [ 363976.344200000166893, 256480.182000000029802 ], [ 363991.595799997448921, 256488.328400000929832 ], [ 364005.52250000089407, 256462.688999999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703044000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-172", "ACRE": "0.11", "LONGITUDE": -64.87563061, "LATITUDE": 18.33728385, "OBJECTID_1": 23036, "PARCEL_NO_": "105703044000", "Tax_Legal_": "ANNAS RETREAT 173-172 NEW QTR", "Name": "ST. JUSTE, CASIMIR", "Address": "2002 Gamble Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 95400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.505395521300002, "SHAPE_Area": 460.41181197399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364658.428800001740456, 256492.308499999344349 ], [ 364656.25450000166893, 256463.581900000572205 ], [ 364640.119199998676777, 256464.505300000309944 ], [ 364642.297200001776218, 256492.80970000103116 ], [ 364643.91160000115633, 256492.611800000071526 ], [ 364658.428800001740456, 256492.308499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-208", "ACRE": "0.10", "LONGITUDE": -64.87723966, "LATITUDE": 18.33729609, "OBJECTID_1": 23075, "PARCEL_NO_": "105703051900", "Tax_Legal_": "ANNAS RETREAT 173-208 NEW QTR", "Name": "WARNER, WINSTON & MILLICENT", "Address": "7820 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 154400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.548325944599995, "SHAPE_Area": 489.03385987199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364491.152400001883507, 256490.465799998492002 ], [ 364482.991599999368191, 256461.544799998402596 ], [ 364481.380400002002716, 256462.036400001496077 ], [ 364479.668399997055531, 256462.558800000697374 ], [ 364467.226999998092651, 256465.897700000554323 ], [ 364475.390799999237061, 256494.602899998426437 ], [ 364488.009499996900558, 256491.410000000149012 ], [ 364488.293300002813339, 256491.338199999183416 ], [ 364491.152400001883507, 256490.465799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703043900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-173", "ACRE": "0.10", "LONGITUDE": -64.87547447, "LATITUDE": 18.33728128, "OBJECTID_1": 23035, "PARCEL_NO_": "105703043900", "Tax_Legal_": "ANNAS RETREAT 173-173 NEW QTR", "Name": "PRATT, RANA & KENNETH", "Address": "7789 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 92000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.0495029776, "SHAPE_Area": 482.53858933800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364676.173100002110004, 256491.82039999961853 ], [ 364672.380699999630451, 256463.713899999856949 ], [ 364656.25450000166893, 256463.581900000572205 ], [ 364658.428800001740456, 256492.308499999344349 ], [ 364660.847800001502037, 256492.328299999237061 ], [ 364676.173100002110004, 256491.82039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604023700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-260", "ACRE": ".187", "LONGITUDE": -64.8844479, "LATITUDE": 18.3372913, "OBJECTID_1": 21712, "PARCEL_NO_": "105604023700", "Tax_Legal_": "ANNAS RETREAT 148-260 NEW QTR", "Name": "BROWN, EDWARD J", "Address": "PO Box 7271", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 248700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.810197859, "SHAPE_Area": 718.19072554700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363737.756700001657009, 256468.730099998414516 ], [ 363727.337499998509884, 256461.256499998271465 ], [ 363718.509499996900558, 256456.329100001603365 ], [ 363712.059000000357628, 256456.276299998164177 ], [ 363707.188699997961521, 256460.036200001835823 ], [ 363705.54730000346899, 256463.400199998170137 ], [ 363701.409699998795986, 256475.820900000631809 ], [ 363700.531400002539158, 256484.257399998605251 ], [ 363726.347800001502037, 256482.780000001192093 ], [ 363737.756700001657009, 256468.730099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703057000", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-16", "ACRE": "0.10", "LONGITUDE": -64.87819142, "LATITUDE": 18.33728749, "OBJECTID_1": 23126, "PARCEL_NO_": "105703057000", "Tax_Legal_": "ANNAS RETREAT 173-16 NEW QTR", "Name": "DOREEN JAMES & JOSE A JAMES REVOCABLE TRUST", "Address": "7530 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 101900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.254721955600004, "SHAPE_Area": 388.95201829899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364389.955600000917912, 256486.733600001782179 ], [ 364382.898400001227856, 256463.244500000029802 ], [ 364378.049699999392033, 256464.471400000154972 ], [ 364368.368500001728535, 256465.025400001555681 ], [ 364366.772100001573563, 256465.325199998915195 ], [ 364375.36710000038147, 256490.276200000196695 ], [ 364377.02759999781847, 256489.794199999421835 ], [ 364382.684399999678135, 256488.362900000065565 ], [ 364389.955600000917912, 256486.733600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703043800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-174", "ACRE": "0.10", "LONGITUDE": -64.87532814, "LATITUDE": 18.33727299, "OBJECTID_1": 23034, "PARCEL_NO_": "105703043800", "Tax_Legal_": "ANNAS RETREAT 173-174 NEW QTR", "Name": "JOSEPH, NATALIE M. & ALSTON DORE", "Address": "PO BOX 305723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14900, "Improved_V": 104600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.288849741299998, "SHAPE_Area": 393.77424938799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364689.07769999653101, 256491.503800000995398 ], [ 364687.700599998235703, 256463.839299999177456 ], [ 364672.380699999630451, 256463.713899999856949 ], [ 364676.173100002110004, 256491.82039999961853 ], [ 364689.07769999653101, 256491.503800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703052000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-207", "ACRE": "0.10", "LONGITUDE": -64.87710104, "LATITUDE": 18.33725718, "OBJECTID_1": 23076, "PARCEL_NO_": "105703052000", "Tax_Legal_": "ANNAS RETREAT 173-207 NEW QTR", "Name": "BELL, WARREN J", "Address": "7819 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 75400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.819059633899997, "SHAPE_Area": 428.53261526400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364482.991599999368191, 256461.544799998402596 ], [ 364491.152400001883507, 256490.465799998492002 ], [ 364492.335699997842312, 256490.104699999094009 ], [ 364504.437799997627735, 256487.042500000447035 ], [ 364497.170500002801418, 256457.597300000488758 ], [ 364495.026100002229214, 256458.251600001007318 ], [ 364483.710799999535084, 256461.325399998575449 ], [ 364482.991599999368191, 256461.544799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703023700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-132", "ACRE": ".126", "LONGITUDE": -64.88054355, "LATITUDE": 18.33728283, "OBJECTID_1": 22939, "PARCEL_NO_": "105703023700", "Tax_Legal_": "ANNAS RETREAT 148-132 NEW QTR", "Name": "HOWARD, ROY & RITA", "Address": "7062 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 129300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.166773726599999, "SHAPE_Area": 533.93771474799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364141.816299997270107, 256460.638099998235703 ], [ 364112.704599998891354, 256470.321199998259544 ], [ 364118.208499997854233, 256486.831500001251698 ], [ 364147.320200003683567, 256477.148400001227856 ], [ 364141.816299997270107, 256460.638099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703043700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87519235000001, "LATITUDE": 18.33727286, "OBJECTID_1": 23033, "PARCEL_NO_": "105703043700", "Tax_Legal_": "ANNAS RETREAT 173-175 NEW QTR", "Name": "MILLINER, P & CONNELL, C", "Address": "PO Box 8625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14900, "Improved_V": 90400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.170419871099995, "SHAPE_Area": 400.24283857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364702.786799997091293, 256491.404899999499321 ], [ 364703.020599998533726, 256463.964699998497963 ], [ 364687.700599998235703, 256463.839299999177456 ], [ 364689.07769999653101, 256491.503800000995398 ], [ 364692.303000003099442, 256491.530200000852346 ], [ 364702.786799997091293, 256491.404899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703043600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87505311, "LATITUDE": 18.33727451, "OBJECTID_1": 23032, "PARCEL_NO_": "105703043600", "Tax_Legal_": "ANNAS RETREAT 173-176 NEW QTR", "Name": "POTTER, UNA", "Address": "7792 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 59700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.313507060700005, "SHAPE_Area": 405.68999379000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364718.110399998724461, 256491.108199998736382 ], [ 364717.534199997782707, 256464.083500001579523 ], [ 364703.020599998533726, 256463.964699998497963 ], [ 364702.786799997091293, 256491.404899999499321 ], [ 364707.626500003039837, 256491.233500000089407 ], [ 364718.110399998724461, 256491.108199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8749062, "LATITUDE": 18.33727008, "OBJECTID_1": 23031, "PARCEL_NO_": "105703043500", "Tax_Legal_": "173-177 ANNAS RETREAT NEW QUARTER", "Name": "PROVIDENCIA MORALES & OTHERS", "Address": "7793 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.123025757700006, "SHAPE_Area": 434.028874078 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364734.241999998688698, 256490.606899999082088 ], [ 364733.664099998772144, 256463.793299999088049 ], [ 364717.534199997782707, 256464.083500001579523 ], [ 364718.110399998724461, 256491.108199998736382 ], [ 364722.143700003623962, 256490.930100001394749 ], [ 364734.241999998688698, 256490.606899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703023500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-164", "ACRE": ".132", "LONGITUDE": -64.88091842, "LATITUDE": 18.33726469, "OBJECTID_1": 22937, "PARCEL_NO_": "105703023500", "Tax_Legal_": "ANNAS RETREAT 148-164 1 NEW QTR", "Name": "DELAUBANQUE, VERONICA & YVETTE", "Address": "7065 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 110500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.548450336499997, "SHAPE_Area": 535.13204563800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364105.393799997866154, 256476.594200000166893 ], [ 364097.523100003600121, 256453.942699998617172 ], [ 364074.798900000751019, 256471.066399998962879 ], [ 364079.539700001478195, 256482.504299998283386 ], [ 364081.123499996960163, 256485.89469999819994 ], [ 364105.393799997866154, 256476.594200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703043400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87475742, "LATITUDE": 18.33726513, "OBJECTID_1": 23030, "PARCEL_NO_": "105703043400", "Tax_Legal_": "ANNAS RETREAT 173-178 NEW QTR", "Name": "ALLICK PRATT, RANA", "Address": "7789 Estate Tutu 173-173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 90400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.091844174299993, "SHAPE_Area": 408.66720969599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364749.567299999296665, 256490.09910000115633 ], [ 364748.98759999871254, 256463.496500000357628 ], [ 364733.664099998772144, 256463.793299999088049 ], [ 364734.241999998688698, 256490.606899999082088 ], [ 364736.662699997425079, 256490.415600001811981 ], [ 364749.567299999296665, 256490.09910000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703043300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8746237, "LATITUDE": 18.33726111, "OBJECTID_1": 23029, "PARCEL_NO_": "105703043300", "Tax_Legal_": "ANNAS RETREAT 173-179 NEW QTR", "Name": "LAMBERT, JR. JOSEPH & GLORIA", "Address": "PO BOX 10051", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 142900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.460564373599993, "SHAPE_Area": 346.457702068 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364762.470100000500679, 256489.993599999696016 ], [ 364761.894000001251698, 256462.968899998813868 ], [ 364748.98759999871254, 256463.496500000357628 ], [ 364749.567299999296665, 256490.09910000115633 ], [ 364751.986299999058247, 256490.118900001049042 ], [ 364762.470100000500679, 256489.993599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703043200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87450561, "LATITUDE": 18.33725716, "OBJECTID_1": 23028, "PARCEL_NO_": "105703043200", "Tax_Legal_": "173-180 ANNAS RETREAT NEW QUARTER", "Name": "RICHARDSON, LORNA & ROBERT", "Address": "PO Box 1272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13400, "Improved_V": 132100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.266945058600001, "SHAPE_Area": 327.05401226200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364774.568400003015995, 256489.670400001108646 ], [ 364773.992299996316433, 256462.645700000226498 ], [ 364761.894000001251698, 256462.968899998813868 ], [ 364762.470100000500679, 256489.993599999696016 ], [ 364768.116099998354912, 256489.828699998557568 ], [ 364774.568400003015995, 256489.670400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703056900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-17", "ACRE": "0.10", "LONGITUDE": -64.87804632, "LATITUDE": 18.33725422, "OBJECTID_1": 23125, "PARCEL_NO_": "105703056900", "Tax_Legal_": "ANNAS RETREAT 173-17 NEW QTR", "Name": "JAMES, LYRA & BENJAMIN, ROY", "Address": "SUGAR ESTATE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 89200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.091899233000007, "SHAPE_Area": 394.964461481 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364405.306100003421307, 256483.270700000226498 ], [ 364397.456900000572205, 256458.086300000548363 ], [ 364382.898400001227856, 256463.244500000029802 ], [ 364389.955600000917912, 256486.733600001782179 ], [ 364402.883500002324581, 256483.673000000417233 ], [ 364405.306100003421307, 256483.270700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703043100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87435077000001, "LATITUDE": 18.33725432, "OBJECTID_1": 23027, "PARCEL_NO_": "105703043100", "Tax_Legal_": "ANNAS RETREAT 173-181 NEW QTR", "Name": "BAPTISTE, ALETHIA", "Address": "PO Box 8584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 116000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.685911948599994, "SHAPE_Area": 556.06685649500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364795.539700001478195, 256488.997699998319149 ], [ 364795.674599997699261, 256473.166799999773502 ], [ 364793.324000000953674, 256465.125999998301268 ], [ 364791.72749999910593, 256463.213100001215935 ], [ 364789.3175999969244, 256462.137899998575449 ], [ 364773.992299996316433, 256462.645700000226498 ], [ 364774.568400003015995, 256489.670400001108646 ], [ 364795.539700001478195, 256488.997699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704034400", "MAP": "D9-1605-T80", "PARCEL_NAM": "173A-20", "ACRE": ".22", "LONGITUDE": -64.8725595, "LATITUDE": 18.3371024, "OBJECTID_1": 23595, "PARCEL_NO_": "105704034400", "Tax_Legal_": "ANNAS RETREAT 173A-20 NEW QUARTER", "Name": "ANTOINE, ST. HILAIRE, & MARY", "Address": "PO Box 502818", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31500, "Improved_V": 174900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.77599071399999, "SHAPE_Area": 849.15175600099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364962.506499998271465, 256447.886999998241663 ], [ 364965.238499999046326, 256487.431800000369549 ], [ 364982.731899999082088, 256475.542100001126528 ], [ 364986.841099999845028, 256472.682199999690056 ], [ 364981.9121999964118, 256437.973900001496077 ], [ 364981.303199999034405, 256433.6858000010252 ], [ 364979.543799996376038, 256435.498399998992682 ], [ 364962.506499998271465, 256447.886999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703052100", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-206", "ACRE": "0.10", "LONGITUDE": -64.87695548000001, "LATITUDE": 18.33722214, "OBJECTID_1": 23077, "PARCEL_NO_": "105703052100", "Tax_Legal_": "ANNAS RETREAT 173-206 NEW QTR.", "Name": "LEONARD, DEAN", "Address": "PO Box 11249", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 95600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.341122712100002, "SHAPE_Area": 530.42519998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364521.427699998021126, 256482.743400000035763 ], [ 364514.417199999094009, 256453.766199998557568 ], [ 364499.068499997258186, 256457.018100000917912 ], [ 364497.170500002801418, 256457.597300000488758 ], [ 364504.437799997627735, 256487.042500000447035 ], [ 364507.689800001680851, 256486.2195999994874 ], [ 364521.427699998021126, 256482.743400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703071800", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-59", "ACRE": "0.09", "LONGITUDE": -64.8788884, "LATITUDE": 18.33723193, "OBJECTID_1": 23234, "PARCEL_NO_": "105703071800", "Tax_Legal_": "ANNAS RETREAT 173-59 NEW QTR", "Name": "FAULKNER, YVONNE P", "Address": "7523 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12300, "Improved_V": 109100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.4088788392, "SHAPE_Area": 316.32946026899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364316.663800001144409, 256476.423500001430511 ], [ 364304.743600003421307, 256455.849800001829863 ], [ 364301.498599998652935, 256458.145300000905991 ], [ 364292.57880000025034, 256463.982900001108646 ], [ 364306.928800001740456, 256483.309900000691414 ], [ 364316.663800001144409, 256476.423500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703017500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-215", "ACRE": ".133", "LONGITUDE": -64.88201299000001, "LATITUDE": 18.33720931, "OBJECTID_1": 22896, "PARCEL_NO_": "105703017500", "Tax_Legal_": "ANNAS RETREAT 148-215 NEW QTR", "Name": "RIVERA, CECILIA", "Address": "6323 Mallard View Ln", "City": "Charlotte", "State": "North Carolina", "Zip": 28269, "Country": "United States", "Land_Value": 17800, "Improved_V": 102000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.862785941799999, "SHAPE_Area": 465.51671935399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363988.652900002896786, 256455.162599999457598 ], [ 363968.545500002801418, 256449.087400000542402 ], [ 363964.272900000214577, 256477.339000001549721 ], [ 363976.344200000166893, 256480.182000000029802 ], [ 363988.652900002896786, 256455.162599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703056800", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-18", "ACRE": "0.10", "LONGITUDE": -64.87790994, "LATITUDE": 18.33721696, "OBJECTID_1": 23124, "PARCEL_NO_": "105703056800", "Tax_Legal_": "173-18 ANNAS RETREAT NEW QUARTER", "Name": "HILL(life estate), EDRIS", "Address": "7560 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.466019445699999, "SHAPE_Area": 388.499126881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364419.040399998426437, 256480.216699998825788 ], [ 364412.004699997603893, 256454.194600000977516 ], [ 364397.456900000572205, 256458.086300000548363 ], [ 364405.306100003421307, 256483.270700000226498 ], [ 364409.344800002872944, 256482.459399998188019 ], [ 364419.040399998426437, 256480.216699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704030800", "MAP": "A9-150-T70", "PARCEL_NAM": "173-302", "ACRE": "0.15", "LONGITUDE": -64.87362031000001, "LATITUDE": 18.33716844, "OBJECTID_1": 23562, "PARCEL_NO_": "105704030800", "Tax_Legal_": "ANNAS RETREAT 173-302 NEW QTR", "Name": "MONSANTO, YVONNE I", "Address": "7709 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 113000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.701258366, "SHAPE_Area": 689.93726875100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364879.520300000905991, 256475.119600001722574 ], [ 364863.624200001358986, 256447.969500001519918 ], [ 364854.707999996840954, 256453.384899999946356 ], [ 364846.619699999690056, 256456.274099998176098 ], [ 364856.041900001466274, 256486.11540000140667 ], [ 364879.520300000905991, 256475.119600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703052200", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-205", "ACRE": "0.10", "LONGITUDE": -64.87681379, "LATITUDE": 18.33719088, "OBJECTID_1": 23078, "PARCEL_NO_": "105703052200", "Tax_Legal_": "ANNAS RETREAT 173-205 NEW QTR", "Name": "TROTMAN, ALVARIS & CLAIRE", "Address": "7817 Est Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 93100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.334953957600007, "SHAPE_Area": 387.28666319400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364534.454599998891354, 256479.447200000286102 ], [ 364526.951499998569489, 256451.146000001579523 ], [ 364518.455899998545647, 256452.954900000244379 ], [ 364514.417199999094009, 256453.766199998557568 ], [ 364521.427699998021126, 256482.743400000035763 ], [ 364534.454599998891354, 256479.447200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604025400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-255", "ACRE": ".163", "LONGITUDE": -64.88401931, "LATITUDE": 18.33717104, "OBJECTID_1": 21729, "PARCEL_NO_": "105604025400", "Tax_Legal_": "148-255 ANNAS RETREAT NEW QTR", "Name": "GUMBS, LENNISE", "Address": "PO Box 9972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 89600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.706202944, "SHAPE_Area": 612.15018972899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363767.04110000282526, 256438.783399999141693 ], [ 363745.060199998319149, 256463.301399998366833 ], [ 363754.664099998772144, 256471.823800001293421 ], [ 363757.851499997079372, 256476.282800000160933 ], [ 363779.787399999797344, 256457.041700001806021 ], [ 363778.190999999642372, 256455.128800000995398 ], [ 363767.04110000282526, 256438.783399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703056700", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-19", "ACRE": "0.10", "LONGITUDE": -64.87777434, "LATITUDE": 18.33718456, "OBJECTID_1": 23123, "PARCEL_NO_": "105703056700", "Tax_Legal_": "ANNAS RETREAT 173-19 NEW QTR", "Name": "PENNYFEATHER, ROSE-LIFE INTERES", "Address": "7561 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 97800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.636628908299997, "SHAPE_Area": 404.83689972100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364419.040399998426437, 256480.216699998825788 ], [ 364427.92960000038147, 256477.967399999499321 ], [ 364431.163800001144409, 256476.938400000333786 ], [ 364433.589900001883507, 256476.113899998366833 ], [ 364426.550700001418591, 256450.513999998569489 ], [ 364412.004699997603893, 256454.194600000977516 ], [ 364419.040399998426437, 256480.216699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703017600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-214", "ACRE": ".137", "LONGITUDE": -64.88218261, "LATITUDE": 18.33718399, "OBJECTID_1": 22897, "PARCEL_NO_": "105703017600", "Tax_Legal_": "148-214 ANNAS RETREAT No.1 NEW QTR", "Name": "ZEPHIR, LAVERNE MARIS", "Address": "PO BOX 932035", "City": "Norcross", "State": "Georgia", "Zip": 30003, "Country": "United States", "Land_Value": 19200, "Improved_V": 100000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.416939146700003, "SHAPE_Area": 558.96167295199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363968.545500002801418, 256449.087400000542402 ], [ 363950.842500001192093, 256444.72069999948144 ], [ 363944.151100002229214, 256472.952399998903275 ], [ 363945.760099999606609, 256473.387800000607967 ], [ 363964.272900000214577, 256477.339000001549721 ], [ 363968.545500002801418, 256449.087400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604023900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-298", "ACRE": "0.12", "LONGITUDE": -64.88480043, "LATITUDE": 18.33721341, "OBJECTID_1": 21714, "PARCEL_NO_": "105604023900", "Tax_Legal_": "ANNAS RETREAT 148-298 NEW QTR", "Name": "DANIEL, MELVINA", "Address": "PO Box 6442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17300, "Improved_V": 187000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.716529192, "SHAPE_Area": 599.29441489800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363664.031099997460842, 256453.310199998319149 ], [ 363663.602899998426437, 256464.956799998879433 ], [ 363663.545699998736382, 256471.669599998742342 ], [ 363693.193899996578693, 256471.669599998742342 ], [ 363699.167000003159046, 256455.115299999713898 ], [ 363699.428999997675419, 256453.431800000369549 ], [ 363679.030500002205372, 256453.361699998378754 ], [ 363664.031099997460842, 256453.310199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703052300", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-204", "ACRE": "0.10", "LONGITUDE": -64.87668569, "LATITUDE": 18.33715857, "OBJECTID_1": 23079, "PARCEL_NO_": "105703052300", "Tax_Legal_": "ANNAS RETREAT 173-204 NEW QTR", "Name": "DIAZ, LORENZO & BELEN", "Address": "1114 Calle Bogota", "City": "San Juan", "State": "Puerto Rico", "Zip": 920, "Country": "United States", "Land_Value": 13700, "Improved_V": 8200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.727056497899994, "SHAPE_Area": 431.71031927199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364548.507399998605251, 256475.711599998176098 ], [ 364541.88400000333786, 256447.869300000369549 ], [ 364528.957800000905991, 256450.718800000846386 ], [ 364526.951499998569489, 256451.146000001579523 ], [ 364534.454599998891354, 256479.447200000286102 ], [ 364536.781800001859665, 256478.858300000429153 ], [ 364548.507399998605251, 256475.711599998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604030300", "MAP": "A9-425-T93", "PARCEL_NAM": "175B (Rev.)", "ACRE": "0.14", "LONGITUDE": -64.88748643, "LATITUDE": 18.33708791, "OBJECTID_1": 21770, "PARCEL_NO_": "105604030300", "Tax_Legal_": "175A-1 & 175B EST. ANNAS RETREAT 1 NEW QTR", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 211800, "Improved_V": 152000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.652415973499998, "SHAPE_Area": 580.07739650200006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363404.012299999594688, 256434.447399999946356 ], [ 363402.309900000691414, 256431.879799999296665 ], [ 363386.010099999606609, 256435.509700000286102 ], [ 363385.761799998581409, 256435.624299999326468 ], [ 363384.816600002348423, 256439.454700000584126 ], [ 363381.370099999010563, 256459.438999999314547 ], [ 363415.167000003159046, 256451.954599998891354 ], [ 363404.012299999594688, 256434.447399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703071900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-58", "ACRE": "0.09", "LONGITUDE": -64.87877035, "LATITUDE": 18.33716804, "OBJECTID_1": 23235, "PARCEL_NO_": "105703071900", "Tax_Legal_": "ANNAS RETREAT 173-58 NEW QTR", "Name": "GREAUX, EVELYN", "Address": "7528 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 92200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.575661367899997, "SHAPE_Area": 361.18015435799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364329.626000002026558, 256469.352400001138449 ], [ 364320.916599996387959, 256450.49379999935627 ], [ 364307.988600000739098, 256453.554400000721216 ], [ 364304.743600003421307, 256455.849800001829863 ], [ 364316.663800001144409, 256476.423500001430511 ], [ 364329.626000002026558, 256469.352400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703017700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-213", "ACRE": "A9-60-T66", "LONGITUDE": -64.88235276, "LATITUDE": 18.33714116, "OBJECTID_1": 22898, "PARCEL_NO_": "105703017700", "Tax_Legal_": "ANNAS RETREAT 148-213 NEW QTR", "Name": "TURNBULL, BRIAN &CARMEN & HODGE,KAREN&GEORGIA& CLEON PROCOPE", "Address": "2126 Daisywood Lane", "City": "Marietta", "State": "Georgia", "Zip": 300643801, "Country": "United States", "Land_Value": 17800, "Improved_V": 174700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.590631094000003, "SHAPE_Area": 515.04653520800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363950.842500001192093, 256444.72069999948144 ], [ 363932.33330000191927, 256440.347300000488758 ], [ 363928.057199999690056, 256469.021000001579523 ], [ 363944.151100002229214, 256472.952399998903275 ], [ 363950.842500001192093, 256444.72069999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803031600", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".247", "LONGITUDE": -64.85865642, "LATITUDE": 18.33708168, "OBJECTID_1": 23933, "PARCEL_NO_": "105803031600", "Tax_Legal_": "SMITH BAY 19-2-163 EAST END QUARTER", "Name": "PACHECO, RUBY", "Address": "4392 ANNA'S RETREAT Ste #3", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81700, "Improved_V": 304300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.78988209, "SHAPE_Area": 1018.26403501 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366473.772699996829033, 256467.902800001204014 ], [ 366469.787900000810623, 256462.381700001657009 ], [ 366467.385099999606609, 256460.462200000882149 ], [ 366461.76070000231266, 256458.094200000166893 ], [ 366430.298299998044968, 256459.7364999987185 ], [ 366421.349799998104572, 256468.951400000602007 ], [ 366426.792599998414516, 256492.638399999588728 ], [ 366433.280799999833107, 256488.258499998599291 ], [ 366473.772699996829033, 256467.902800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703056600", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-20", "ACRE": "0.10", "LONGITUDE": -64.87763458000001, "LATITUDE": 18.33714439, "OBJECTID_1": 23122, "PARCEL_NO_": "105703056600", "Tax_Legal_": "173-20 ANNAS RETREAT NO.1 NEW QTR", "Name": "CASTRO, WILFREDO JR., ERIC W., & JORGE A.", "Address": "PO Box 114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14900, "Improved_V": 95500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.1472996798, "SHAPE_Area": 415.47351872199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364448.580399997532368, 256471.387899998575449 ], [ 364441.929200001060963, 256446.318199999630451 ], [ 364432.209299996495247, 256448.871500000357628 ], [ 364426.550700001418591, 256450.513999998569489 ], [ 364433.589900001883507, 256476.113899998366833 ], [ 364439.250299997627735, 256474.260400000959635 ], [ 364448.580399997532368, 256471.387899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703020800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-193", "ACRE": ".142", "LONGITUDE": -64.88152319, "LATITUDE": 18.33710297, "OBJECTID_1": 22910, "PARCEL_NO_": "105703020800", "Tax_Legal_": "ANNAS RETREAT 148-193 NEW QTR", "Name": "RICHARDSON, CATHERINE", "Address": "7112 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 106000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.48544321599999, "SHAPE_Area": 556.833515605 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364021.070799998939037, 256436.00730000063777 ], [ 364011.227899998426437, 256455.558499999344349 ], [ 364018.446900002658367, 256460.050500001758337 ], [ 364034.468900002539158, 256472.42509999871254 ], [ 364034.533600002527237, 256464.826299998909235 ], [ 364035.368699997663498, 256461.455600000917912 ], [ 364037.841600000858307, 256455.14299999922514 ], [ 364041.927100002765656, 256448.843699999153614 ], [ 364021.070799998939037, 256436.00730000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88121663, "LATITUDE": 18.33717134, "OBJECTID_1": 22911, "PARCEL_NO_": "105703020900", "Tax_Legal_": "ANNAS RETREAT 148-166 NEW QTR", "Name": "CAINES, GERTRUDE", "Address": "PO Box 9280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.721747646, "SHAPE_Area": 596.06675262199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364065.362300001084805, 256442.913699999451637 ], [ 364057.266800001263618, 256446.647199999541044 ], [ 364047.506499998271465, 256456.488699998706579 ], [ 364043.381499998271465, 256467.431800000369549 ], [ 364043.338299997150898, 256472.497699998319149 ], [ 364074.798900000751019, 256471.066399998962879 ], [ 364065.362300001084805, 256442.913699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704012800", "MAP": "F9-1478-T64", "PARCEL_NAM": "57B-17A", "ACRE": ".14", "LONGITUDE": -64.8716941, "LATITUDE": 18.33706009, "OBJECTID_1": 23473, "PARCEL_NO_": "105704012800", "Tax_Legal_": "SMITH BAY 57B-17 EAST END QTR", "Name": "SMITH, HENRY H", "Address": "P O BOX 2231", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54700, "Improved_V": 103400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.956376027, "SHAPE_Area": 622.897814197 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365052.375399999320507, 256445.166600000113249 ], [ 365055.316200003027916, 256474.236400000751019 ], [ 365055.265799999237061, 256480.146499998867512 ], [ 365088.61599999666214, 256446.222300000488758 ], [ 365052.375399999320507, 256445.166600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87403488, "LATITUDE": 18.33718809, "OBJECTID_1": 23560, "PARCEL_NO_": "105704030600", "Tax_Legal_": "ANNAS RETREAT 173-122 NEW QTR", "Name": "MATTHIAS, DALE, B.L,T.M.T,D,N,S & OTHERS", "Address": "7707 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.114344825900005, "SHAPE_Area": 437.85839103199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364830.464699998497963, 256459.519299998879433 ], [ 364819.970100000500679, 256460.911100000143051 ], [ 364808.678099997341633, 256461.240899998694658 ], [ 364806.251999996602535, 256462.065400000661612 ], [ 364803.809600003063679, 256464.789599999785423 ], [ 364805.3108000010252, 256477.889699999243021 ], [ 364831.931699998676777, 256476.629900000989437 ], [ 364830.464699998497963, 256459.519299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703056500", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-21", "ACRE": "0.10", "LONGITUDE": -64.87749604, "LATITUDE": 18.33710467, "OBJECTID_1": 23121, "PARCEL_NO_": "105703056500", "Tax_Legal_": "ANNAS RETREAT 173-21 NEW QTR", "Name": "CHARLES, ROLAND & DELOISE R", "Address": "PO Box 6373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14900, "Improved_V": 76400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.926381079500004, "SHAPE_Area": 377.95160071599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364462.349299997091293, 256467.268399998545647 ], [ 364456.50789999961853, 256442.420299999415874 ], [ 364454.030100002884865, 256443.139499999582767 ], [ 364441.929200001060963, 256446.318199999630451 ], [ 364448.580399997532368, 256471.387899998575449 ], [ 364454.611599996685982, 256469.530999999493361 ], [ 364459.462099999189377, 256468.092999998480082 ], [ 364462.349299997091293, 256467.268399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703052500", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-202", "ACRE": "0.10", "LONGITUDE": -64.87641689, "LATITUDE": 18.33709366, "OBJECTID_1": 23081, "PARCEL_NO_": "105703052500", "Tax_Legal_": "ANNAS RETREAT 173-202 NEW QTR", "Name": "DAVID & JOSEPHINE ANGELINA ARNOLD (LIFE ESTATE)", "Address": "7812 Annass Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 102100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.970739296100007, "SHAPE_Area": 411.53379432999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364556.091399997472763, 256444.201999999582767 ], [ 364562.599200002849102, 256472.019600000232458 ], [ 364577.1908999979496, 256468.212200000882149 ], [ 364569.36150000244379, 256440.705899998545647 ], [ 364556.091399997472763, 256444.201999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703023900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-165", "ACRE": ".133", "LONGITUDE": -64.88100558, "LATITUDE": 18.33710061, "OBJECTID_1": 22941, "PARCEL_NO_": "105703023900", "Tax_Legal_": "148-165 ANNAS RETREAT NEW QUARTER", "Name": "HENRY C CHRISTOPHER NORMA T CHRISTOPHER REVO TRUST", "Address": "148-165 Estate Anna S Rereat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 115400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.033101330600005, "SHAPE_Area": 537.59895196100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364098.69709999859333, 256453.55689999833703 ], [ 364094.717699997127056, 256447.402699999511242 ], [ 364088.297700002789497, 256443.761500000953674 ], [ 364081.863399997353554, 256441.809000000357628 ], [ 364072.997599996626377, 256441.314300000667572 ], [ 364066.536300003528595, 256442.527899999171495 ], [ 364075.972900003194809, 256470.680599998682737 ], [ 364098.69709999859333, 256453.55689999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703017800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-212", "ACRE": ".137", "LONGITUDE": -64.88251931000001, "LATITUDE": 18.33711428, "OBJECTID_1": 22899, "PARCEL_NO_": "105703017800", "Tax_Legal_": "ANNAS RETREAT 148-212 NO 1 NEW QTR", "Name": "CUELLO,JR., GUARIONEX", "Address": "PO Box 1455", "City": "Henryville", "State": "Pennsylvania", "Zip": 18332, "Country": "United States", "Land_Value": 17800, "Improved_V": 49700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.062061317599998, "SHAPE_Area": 514.79147296199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363932.33330000191927, 256440.347300000488758 ], [ 363915.42230000346899, 256437.675799999386072 ], [ 363909.544399999082088, 256465.06980000063777 ], [ 363911.153399996459484, 256465.505199998617172 ], [ 363922.421999998390675, 256467.919399999082088 ], [ 363928.057199999690056, 256469.021000001579523 ], [ 363932.33330000191927, 256440.347300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703023800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-133", "ACRE": ".131", "LONGITUDE": -64.88059196, "LATITUDE": 18.33713587, "OBJECTID_1": 22940, "PARCEL_NO_": "105703023800", "Tax_Legal_": "ANNAS RETREAT 148-133 NEW QTR", "Name": "MOSES, VIVA MARIE", "Address": "7064 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 122200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.713022914899994, "SHAPE_Area": 510.70588715399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364136.315999999642372, 256443.705600000917912 ], [ 364107.992600001394749, 256455.506099998950958 ], [ 364112.704599998891354, 256470.321199998259544 ], [ 364141.816299997270107, 256460.638099998235703 ], [ 364136.315999999642372, 256443.705600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105503043000", "MAP": "G9-706-T63", "PARCEL_NAM": "43", "ACRE": "0.78", "LONGITUDE": -64.90876848000001, "LATITUDE": 18.33647788, "OBJECTID_1": 20154, "PARCEL_NO_": "105503043000", "Tax_Legal_": "43 EST THOMAS 2ND SUB 6A NEW QTR", "Name": "PERCELL, KARL R. & CAROLYN P. HERMON-PERCELL (Co-Trustees)", "Address": "P.O. BOX 4910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 209100, "Improved_V": 71400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.50699436500003, "SHAPE_Area": 2831.9939884599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361138.789700001478195, 256378.853399999439716 ], [ 361138.640399999916553, 256396.372900001704693 ], [ 361139.381999999284744, 256403.978300001472235 ], [ 361142.49040000140667, 256417.724899999797344 ], [ 361145.631099998950958, 256427.671999998390675 ], [ 361147.229400001466274, 256429.373799998313189 ], [ 361151.187200002372265, 256438.061000000685453 ], [ 361153.586300000548363, 256440.402699999511242 ], [ 361155.967500001192093, 256444.855099998414516 ], [ 361158.38289999961853, 256445.297100000083447 ], [ 361157.029200002551079, 256414.8885000012815 ], [ 361164.031700000166893, 256350.140099998563528 ], [ 361164.163000002503395, 256334.7314000017941 ], [ 361162.60249999910593, 256328.596900001168251 ], [ 361157.057199999690056, 256316.941399998962879 ], [ 361148.270499996840954, 256307.159200001507998 ], [ 361137.041500002145767, 256300.101199999451637 ], [ 361127.428700000047684, 256292.634199999272823 ], [ 361119.396099999547005, 256288.979899998754263 ], [ 361104.907700002193451, 256285.905999999493361 ], [ 361104.891500003635883, 256287.805700000375509 ], [ 361108.100500002503395, 256289.731800001114607 ], [ 361120.906199999153614, 256301.024599999189377 ], [ 361132.891199998557568, 256313.999400001019239 ], [ 361137.671599999070168, 256320.793499998748302 ], [ 361138.45269999653101, 256323.755199998617172 ], [ 361141.63120000064373, 256329.269600000232458 ], [ 361144.748599998652935, 256341.960799999535084 ], [ 361143.823600001633167, 256355.885400000959635 ], [ 361138.789700001478195, 256378.853399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704030900", "MAP": "173-303", "PARCEL_NAM": "A9-150-T70", "ACRE": "0.12", "LONGITUDE": -64.87345355, "LATITUDE": 18.33707175, "OBJECTID_1": 23563, "PARCEL_NO_": "105704030900", "Tax_Legal_": "ANNAS RETREAT 173-303 NEW QTR", "Name": "RODGES-REED, COREEN", "Address": "PO BOX 9467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 100700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.234284097, "SHAPE_Area": 600.83375748699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364895.729299999773502, 256465.541900001466274 ], [ 364879.032300002872944, 256437.752000000327826 ], [ 364863.624200001358986, 256447.969500001519918 ], [ 364879.520300000905991, 256475.119600001722574 ], [ 364885.187899999320507, 256472.421700000762939 ], [ 364895.729299999773502, 256465.541900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604031600", "MAP": "A9-183-T72", "PARCEL_NAM": "REM 148-235", "ACRE": "13.6", "LONGITUDE": -64.88598566, "LATITUDE": 18.33593805, "OBJECTID_1": 21787, "PARCEL_NO_": "105604031600", "Tax_Legal_": "148-325 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 542300, "Improved_V": 3353800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1178.6200815300001, "SHAPE_Area": 46812.839590600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363668.821999996900558, 256420.247600000351667 ], [ 363696.44879999756813, 256395.564699999988079 ], [ 363639.58110000193119, 256290.6266999989748 ], [ 363635.319399997591972, 256282.762600000947714 ], [ 363630.473600000143051, 256188.997400000691414 ], [ 363468.541400000452995, 256205.090900000184774 ], [ 363468.298500001430511, 256216.679800000041723 ], [ 363471.561899997293949, 256223.206500001251698 ], [ 363472.540899999439716, 256236.912500001490116 ], [ 363479.0675999969244, 256250.618500001728535 ], [ 363484.941600002348423, 256257.145199999213219 ], [ 363488.531300000846386, 256259.755899999290705 ], [ 363488.857600003480911, 256268.240600001066923 ], [ 363482.330899998545647, 256266.935300000011921 ], [ 363474.825199998915195, 256259.42960000038147 ], [ 363468.951200000941753, 256250.292199999094009 ], [ 363466.340499997138977, 256238.87049999833107 ], [ 363465.035199999809265, 256230.385800000280142 ], [ 363462.750900000333786, 256227.775100000202656 ], [ 363454.592500001192093, 256233.64919999986887 ], [ 363448.065800003707409, 256243.765500001609325 ], [ 363445.455099999904633, 256249.965900000184774 ], [ 363444.802500002086163, 256257.797899998724461 ], [ 363439.907499998807907, 256268.240600001066923 ], [ 363433.054399996995926, 256275.420000001788139 ], [ 363420.641699999570847, 256286.123500000685453 ], [ 363411.842699997127056, 256293.368299998342991 ], [ 363401.726400002837181, 256298.916000001132488 ], [ 363400.420999996364117, 256303.811000000685453 ], [ 363406.947700001299381, 256311.643100000917912 ], [ 363424.569799996912479, 256326.654399998486042 ], [ 363439.254799999296665, 256342.318500000983477 ], [ 363445.781499996781349, 256351.782200001180172 ], [ 363452.634499996900558, 256364.835499998182058 ], [ 363457.203199997544289, 256375.604600001126528 ], [ 363461.771899998188019, 256383.762899998575449 ], [ 363470.909199997782707, 256392.574000000953674 ], [ 363481.025600001215935, 256401.385000001639128 ], [ 363489.836599998176098, 256406.280000001192093 ], [ 363503.869000002741814, 256411.501400001347065 ], [ 363518.880400002002716, 256415.743700001388788 ], [ 363518.227700002491474, 256419.659699998795986 ], [ 363518.32150000333786, 256432.257699999958277 ], [ 363529.976199999451637, 256437.898600000888109 ], [ 363608.361100003123283, 256418.275100000202656 ], [ 363663.602899998426437, 256464.956799998879433 ], [ 363664.031099997460842, 256453.310199998319149 ], [ 363664.941699996590614, 256428.545000001788139 ], [ 363663.917599998414516, 256428.01799999922514 ], [ 363668.821999996900558, 256420.247600000351667 ] ], [ [ 363492.7820999994874, 256266.117600001394749 ], [ 363494.405299998819828, 256234.628199998289347 ], [ 363503.216300003230572, 256235.280799999833107 ], [ 363505.174300000071526, 256223.206500001251698 ], [ 363519.974500000476837, 256225.119199998676777 ], [ 363520.398699998855591, 256225.156399998813868 ], [ 363520.034100003540516, 256227.477400001138449 ], [ 363518.077799998223782, 256244.153599999845028 ], [ 363519.665299996733665, 256244.285900000482798 ], [ 363515.167400002479553, 256267.172400001436472 ], [ 363492.7820999994874, 256266.117600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703072000", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-57", "ACRE": "0.12", "LONGITUDE": -64.87860294, "LATITUDE": 18.33711287, "OBJECTID_1": 23236, "PARCEL_NO_": "105703072000", "Tax_Legal_": "ANNAS RETREAT 173-57 NEW QTR", "Name": "SMITH, CAROL A", "Address": "PO Box 7894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.277183835599999, "SHAPE_Area": 403.90155492100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364340.307599999010563, 256446.008400000631809 ], [ 364320.916599996387959, 256450.49379999935627 ], [ 364329.626000002026558, 256469.352400001138449 ], [ 364346.625100001692772, 256461.681000001728535 ], [ 364349.067400000989437, 256458.956799998879433 ], [ 364348.302400000393391, 256454.095400001853704 ], [ 364340.307599999010563, 256446.008400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604027000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-211", "ACRE": ".151", "LONGITUDE": -64.88270165, "LATITUDE": 18.33707811, "OBJECTID_1": 21745, "PARCEL_NO_": "105604027000", "Tax_Legal_": "ANNAS RETREAT 148-211 NEW QTR", "Name": "MADURO, CONRAD & EVALINE", "Address": "PO Box 11419", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 44200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.5252841131, "SHAPE_Area": 593.00062295199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363915.42230000346899, 256437.675799999386072 ], [ 363896.91669999808073, 256432.880300000309944 ], [ 363887.016199998557568, 256459.185899998992682 ], [ 363909.544399999082088, 256465.06980000063777 ], [ 363915.42230000346899, 256437.675799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604025300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-256", "ACRE": ".163", "LONGITUDE": -64.88416133, "LATITUDE": 18.33703467, "OBJECTID_1": 21728, "PARCEL_NO_": "105604025300", "Tax_Legal_": "148-256 ANNAS RETREAT NO 1 NEW QTR", "Name": "SPENCER, SYLVIA a/k/a SILVIA SPENCER (LIFE ESTATE)", "Address": "PO Box 9528", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23100, "Improved_V": 152200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.35524474100001, "SHAPE_Area": 769.93282018299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363748.643299996852875, 256421.323100000619888 ], [ 363729.02929999679327, 256451.982299998402596 ], [ 363737.051100000739098, 256456.903099998831749 ], [ 363745.060199998319149, 256463.301399998366833 ], [ 363767.04110000282526, 256438.783399999141693 ], [ 363765.442800000309944, 256437.081599999219179 ], [ 363748.643299996852875, 256421.323100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703056400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-23", "ACRE": "0.10", "LONGITUDE": -64.87721566, "LATITUDE": 18.3370323, "OBJECTID_1": 23120, "PARCEL_NO_": "105703056400", "Tax_Legal_": "ANNAS RETREAT 173-23 NEW QTR", "Name": "BAPTISTE, EDMOND & JEANNE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13700, "Improved_V": 99100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.044739306599993, "SHAPE_Area": 374.708275259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364492.26630000025034, 256459.001299999654293 ], [ 364486.24040000140667, 256434.976300001144409 ], [ 364472.039800003170967, 256438.463799998164177 ], [ 364477.461099997162819, 256463.151200000196695 ], [ 364479.668399997055531, 256462.558800000697374 ], [ 364483.710799999535084, 256461.325399998575449 ], [ 364492.26630000025034, 256459.001299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803031700", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-156", "ACRE": ".336", "LONGITUDE": -64.85986654, "LATITUDE": 18.3369797, "OBJECTID_1": 23934, "PARCEL_NO_": "105803031700", "Tax_Legal_": "SMITH BAY 19-2-156 EAST END QUARTER", "Name": "WILLIAM R BREDENBECK REVOCABLE TRUST", "Address": "4545 Tiedeman Rd", "City": "Brooklyn", "State": "Ohio", "Zip": 44144, "Country": "United States", "Land_Value": 34700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.612766725, "SHAPE_Area": 1365.65700814 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366339.824100002646446, 256478.627700001001358 ], [ 366330.491800002753735, 256438.232500001788139 ], [ 366277.149300001561642, 256452.572399999946356 ], [ 366310.057099997997284, 256470.573600001633167 ], [ 366310.031900003552437, 256473.5287000015378 ], [ 366319.714800000190735, 256472.763599999248981 ], [ 366321.291500002145767, 256476.998399998992682 ], [ 366326.098800003528595, 256480.626299999654293 ], [ 366331.73759999871254, 256481.305700000375509 ], [ 366339.824100002646446, 256478.627700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703052700", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-200", "ACRE": "0.10", "LONGITUDE": -64.87612553, "LATITUDE": 18.33701215, "OBJECTID_1": 23083, "PARCEL_NO_": "105703052700", "Tax_Legal_": "ANNAS RETREAT 173-200 NEW QTR", "Name": "LAMBERT, ALPHONSE & MARY", "Address": "PO Box 10451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 164400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.598809827699995, "SHAPE_Area": 484.74060916899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364608.061899997293949, 256460.467000000178814 ], [ 364602.555200003087521, 256431.556600000709295 ], [ 364600.076899997889996, 256432.091400001198053 ], [ 364596.036399997770786, 256433.113800000399351 ], [ 364585.653800003230572, 256436.079100001603365 ], [ 364592.931599996984005, 256464.229200001806021 ], [ 364606.282899998128414, 256460.850900001823902 ], [ 364608.061899997293949, 256460.467000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604026900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-210", "ACRE": ".139", "LONGITUDE": -64.88287342, "LATITUDE": 18.33702714, "OBJECTID_1": 21744, "PARCEL_NO_": "105604026900", "Tax_Legal_": "148-210 ANNAS RETREAT NEW QTR", "Name": "RHYMER, JOSEPH & EDITH", "Address": "7129 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 109800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.717265484099997, "SHAPE_Area": 479.90024861900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363896.91669999808073, 256432.880300000309944 ], [ 363881.645300000905991, 256427.055700000375509 ], [ 363870.943899996578693, 256452.721599999815226 ], [ 363878.166500002145767, 256456.791499998420477 ], [ 363887.016199998557568, 256459.185899998992682 ], [ 363896.91669999808073, 256432.880300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803031800", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-155", "ACRE": ".288", "LONGITUDE": -64.85955088, "LATITUDE": 18.3369296, "OBJECTID_1": 23935, "PARCEL_NO_": "105803031800", "Tax_Legal_": "SMITH BAY 19-2-155 EAST END QUARTER", "Name": "BREDENBECK, WILLIAM R", "Address": "4545 Tiedeman Rd", "City": "Brooklyn", "State": "Ohio", "Zip": 44144, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.321617043, "SHAPE_Area": 1228.83470085 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366358.77929999679327, 256430.653499998152256 ], [ 366358.98480000346899, 256428.93019999936223 ], [ 366330.491800002753735, 256438.232500001788139 ], [ 366339.824100002646446, 256478.627700001001358 ], [ 366364.078199997544289, 256471.22690000012517 ], [ 366365.854500003159046, 256452.031899999827147 ], [ 366358.77929999679327, 256430.653499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704034100", "MAP": "A9-150-T70", "PARCEL_NAM": "173-304", "ACRE": "0.12", "LONGITUDE": -64.873299, "LATITUDE": 18.33697894, "OBJECTID_1": 23592, "PARCEL_NO_": "105704034100", "Tax_Legal_": "ANNAS RETREAT 173-304 NEW QTR", "Name": "FRANCIS, WILLIAM", "Address": "PO Box 11193", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 47900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.275980906, "SHAPE_Area": 651.89230735199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364913.559799998998642, 256454.922100000083447 ], [ 364895.2466000020504, 256427.54109999909997 ], [ 364879.032300002872944, 256437.752000000327826 ], [ 364895.729299999773502, 256465.541900001466274 ], [ 364913.559799998998642, 256454.922100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604023800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-297", "ACRE": "0.15", "LONGITUDE": -64.88481573, "LATITUDE": 18.33705403, "OBJECTID_1": 21713, "PARCEL_NO_": "105604023800", "Tax_Legal_": "148-297 ANNA'S RETREAT NEW QTR", "Name": "ABRAHAM, OSWIN & M. A", "Address": "PO Box 502811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20500, "Improved_V": 100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.524907742, "SHAPE_Area": 559.87303041200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363685.594499997794628, 256439.172200001776218 ], [ 363664.941699996590614, 256428.545000001788139 ], [ 363664.031099997460842, 256453.310199998319149 ], [ 363679.030500002205372, 256453.361699998378754 ], [ 363699.428999997675419, 256453.431800000369549 ], [ 363700.020000003278255, 256449.633900001645088 ], [ 363699.228100001811981, 256447.938700001686811 ], [ 363696.031599998474121, 256444.535000000149012 ], [ 363685.594499997794628, 256439.172200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704034200", "MAP": "D9-1605-T80", "PARCEL_NAM": "173A-19", "ACRE": ".27", "LONGITUDE": -64.87221113, "LATITUDE": 18.33686699, "OBJECTID_1": 23593, "PARCEL_NO_": "105704034200", "Tax_Legal_": "ANNAS RETREAT 173A-19 NEW QTR", "Name": "RICHARDSON, ELVIN & ELENOE", "Address": "PO Box 302231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37000, "Improved_V": 75000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.11926191500001, "SHAPE_Area": 2090.2145396000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365030.962499998509884, 256398.676600001752377 ], [ 365026.130000002682209, 256398.003800000995398 ], [ 365019.670500002801418, 256399.006400000303984 ], [ 365012.749200001358986, 256399.807199999690056 ], [ 365014.984499998390675, 256423.463100001215935 ], [ 365015.313799999654293, 256426.342599999159575 ], [ 365007.887199997901917, 256427.946100000292063 ], [ 364988.418499998748302, 256432.149500001221895 ], [ 364981.303199999034405, 256433.6858000010252 ], [ 364981.9121999964118, 256437.973900001496077 ], [ 364986.841099999845028, 256472.682199999690056 ], [ 364996.521899998188019, 256465.944699998944998 ], [ 365021.956500001251698, 256451.240899998694658 ], [ 365031.322800002992153, 256441.557199999690056 ], [ 365036.085299998521805, 256429.65089999884367 ], [ 365037.35530000180006, 256415.680900000035763 ], [ 365034.148199997842312, 256403.346700001507998 ], [ 365030.962499998509884, 256398.676600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032300", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".243", "LONGITUDE": -64.85820446, "LATITUDE": 18.3368774, "OBJECTID_1": 23940, "PARCEL_NO_": "105803032300", "Tax_Legal_": "SMITH BAY 19-2-150 EAST END QUARTER", "Name": "CHRISTOPHER (LIFE ESTATE), DORIS", "Address": "PO Box 306705", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28100, "Improved_V": 325000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.70481225899999, "SHAPE_Area": 1042.85938629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366483.061099998652935, 256418.793999999761581 ], [ 366477.888800002634525, 256458.015099998563528 ], [ 366483.451999999582767, 256467.559799998998642 ], [ 366485.793600000441074, 256476.655999999493361 ], [ 366501.205300003290176, 256466.016399998217821 ], [ 366509.455399997532368, 256444.130199998617172 ], [ 366483.061099998652935, 256418.793999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703080100", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-46", "ACRE": "0.23", "LONGITUDE": -64.87896508, "LATITUDE": 18.33694813, "OBJECTID_1": 23261, "PARCEL_NO_": "105703080100", "Tax_Legal_": "ANNAS RETREAT 173C-46 NEW QTR.", "Name": "NORTH CARIBBEAN CONFERENCE OF", "Address": "P.O. BOX 580, CHRISTIANSTED", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 25100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.49894401700001, "SHAPE_Area": 1131.28403942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364301.498599998652935, 256458.145300000905991 ], [ 364304.743600003421307, 256455.849800001829863 ], [ 364307.988600000739098, 256453.554400000721216 ], [ 364320.916599996387959, 256450.49379999935627 ], [ 364340.307599999010563, 256446.008400000631809 ], [ 364332.275100000202656, 256442.354100000113249 ], [ 364311.348700001835823, 256437.749800000339746 ], [ 364300.103500001132488, 256432.591600000858307 ], [ 364288.887100003659725, 256424.056000001728535 ], [ 364280.109300002455711, 256413.218400001525879 ], [ 364265.484200000762939, 256426.186500001698732 ], [ 364301.498599998652935, 256458.145300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703020700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-194", "ACRE": ".147", "LONGITUDE": -64.88168466, "LATITUDE": 18.33696407, "OBJECTID_1": 22909, "PARCEL_NO_": "105703020700", "Tax_Legal_": "ANNAS RETREAT 148-194 NO 1 NEW QTR", "Name": "BATTISTE, MARIANA & OTHERS", "Address": "PO Box 7602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 105700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.4996693585, "SHAPE_Area": 558.53552078200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364021.968900002539158, 256425.2489 ], [ 364007.500200003385544, 256419.853199999779463 ], [ 363995.168099999427795, 256447.616599999368191 ], [ 363998.386200003325939, 256448.487300001084805 ], [ 364011.227899998426437, 256455.558499999344349 ], [ 364021.070799998939037, 256436.00730000063777 ], [ 364021.968900002539158, 256425.2489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703024000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-134", "ACRE": ".148", "LONGITUDE": -64.88064522000001, "LATITUDE": 18.33698376, "OBJECTID_1": 22942, "PARCEL_NO_": "105703024000", "Tax_Legal_": "ANNAS RETREAT 148-134 NEW QTR", "Name": "PEETS, DONALD & SHIRLEY", "Address": "PO Box 9813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 132100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.077927475, "SHAPE_Area": 587.98211888100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364130.038099996745586, 256423.389199998229742 ], [ 364100.852600000798702, 256441.726599998772144 ], [ 364104.040100000798702, 256446.185600001364946 ], [ 364105.609600000083447, 256451.264699999243021 ], [ 364107.992600001394749, 256455.506099998950958 ], [ 364136.315999999642372, 256443.705600000917912 ], [ 364130.038099996745586, 256423.389199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703052900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-198", "ACRE": "0.10", "LONGITUDE": -64.87582945, "LATITUDE": 18.3369622, "OBJECTID_1": 23085, "PARCEL_NO_": "105703052900", "Tax_Legal_": "173-198 ANNAS RETREAT NEW QUARTER", "Name": "GRANT, JUANCITO & LUCIANA", "Address": "7810 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 137700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.750812541100004, "SHAPE_Area": 455.82665694100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364638.060099996626377, 256455.5304000005126 ], [ 364635.268500000238419, 256427.880199998617172 ], [ 364631.5591000020504, 256428.127199999988079 ], [ 364629.138300001621246, 256428.318500000983477 ], [ 364622.680600002408028, 256429.109999999403954 ], [ 364618.629900000989437, 256429.530900001525879 ], [ 364622.643399998545647, 256457.88459999859333 ], [ 364635.355099998414516, 256455.811500001698732 ], [ 364638.060099996626377, 256455.5304000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604025200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-257", "ACRE": ".146", "LONGITUDE": -64.88431921, "LATITUDE": 18.33693212, "OBJECTID_1": 21727, "PARCEL_NO_": "105604025200", "Tax_Legal_": "148-257 ANNAS RETREAT NEW QTR", "Name": "WESTON, MARILYN P", "Address": "PO Box 306793", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 123000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.124491969, "SHAPE_Area": 669.16984885299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363731.798900000751019, 256410.841699998825788 ], [ 363714.58219999819994, 256444.053599998354912 ], [ 363729.02929999679327, 256451.982299998402596 ], [ 363748.643299996852875, 256421.323100000619888 ], [ 363731.798900000751019, 256410.841699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604026800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-209", "ACRE": ".136", "LONGITUDE": -64.88303661, "LATITUDE": 18.33695517, "OBJECTID_1": 21743, "PARCEL_NO_": "105604026800", "Tax_Legal_": "148-209 ANNAS RETREAT NEW QTR", "Name": "MONROSE, WILLIAM & TIFFANY V.", "Address": "12407 Whitehall Drive", "City": "Bowie", "State": "Maryland", "Zip": 207151225, "Country": "United States", "Land_Value": 16300, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.057254966599999, "SHAPE_Area": 575.81103706399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363881.645300000905991, 256427.055700000375509 ], [ 363865.590999998152256, 256418.480599999427795 ], [ 363850.084100000560284, 256440.307399999350309 ], [ 363870.943899996578693, 256452.721599999815226 ], [ 363881.645300000905991, 256427.055700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703056200", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-24", "ACRE": "0.09", "LONGITUDE": -64.87708768, "LATITUDE": 18.33699756, "OBJECTID_1": 23118, "PARCEL_NO_": "105703056200", "Tax_Legal_": "ANNAS RETREAT 173-24 NEW QTR", "Name": "BURLEY, CARL T", "Address": "7571 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021959, "Country": "United States", "Land_Value": 12300, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.756252565599993, "SHAPE_Area": 322.56426984000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364504.772699996829033, 256455.809599999338388 ], [ 364499.03660000115633, 256431.635999999940395 ], [ 364487.97070000320673, 256434.551399998366833 ], [ 364486.24040000140667, 256434.976300001144409 ], [ 364492.26630000025034, 256459.001299999654293 ], [ 364495.026100002229214, 256458.251600001007318 ], [ 364499.068499997258186, 256457.018100000917912 ], [ 364504.772699996829033, 256455.809599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703072100", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-56", "ACRE": "0.17", "LONGITUDE": -64.87831372, "LATITUDE": 18.33697041, "OBJECTID_1": 23237, "PARCEL_NO_": "105703072100", "Tax_Legal_": "ANNAS RETREAT 173-56 NEW QTR", "Name": "HODGE, MILDRED F. & GLORIA GUMBS", "Address": "PO Box 10198", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 105600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.85659866500001, "SHAPE_Area": 776.06158697599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364382.97749999910593, 256453.956999998539686 ], [ 364375.968800000846386, 256424.768699999898672 ], [ 364370.311999998986721, 256426.200100000947714 ], [ 364354.959700003266335, 256429.874099999666214 ], [ 364348.476899996399879, 256433.620799999684095 ], [ 364342.803900003433228, 256436.951799999922514 ], [ 364350.823899999260902, 256442.083700001239777 ], [ 364355.618600003421307, 256447.1891999989748 ], [ 364358.786300003528595, 256453.970100000500679 ], [ 364361.991800002753735, 256456.318399999290705 ], [ 364374.899999998509884, 256455.579700000584126 ], [ 364382.97749999910593, 256453.956999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803031900", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-154", "ACRE": ".276", "LONGITUDE": -64.85929066, "LATITUDE": 18.33684923, "OBJECTID_1": 23936, "PARCEL_NO_": "105803031900", "Tax_Legal_": "SMITH BAY 19-2-154 EAST END QUARTER", "Name": "BREDENBECK, WILLIAMS R", "Address": "4545 Tiedeman Rd", "City": "Brooklyn", "State": "Ohio", "Zip": 44144, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.00133163199999, "SHAPE_Area": 1183.09043916 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366386.258599996566772, 256423.279100000858307 ], [ 366385.220799997448921, 256420.364799998700619 ], [ 366358.98480000346899, 256428.93019999936223 ], [ 366358.77929999679327, 256430.653499998152256 ], [ 366365.854500003159046, 256452.031899999827147 ], [ 366364.078199997544289, 256471.22690000012517 ], [ 366385.909800000488758, 256464.228399999439716 ], [ 366394.906900003552437, 256449.314300000667572 ], [ 366386.258599996566772, 256423.279100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804022000", "MAP": "D9-9053-T016", "PARCEL_NAM": "11B-3A", "ACRE": ".75", "LONGITUDE": -64.85280479, "LATITUDE": 18.33673852, "OBJECTID_1": 24029, "PARCEL_NO_": "105804022000", "Tax_Legal_": "SMITH BAY 11B 3A&11B-3B 1,2&3 EAST END QTR", "Name": "GRAULICH, DEBRA J", "Address": "6692 Estate Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 377400, "Improved_V": 6700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.778894409, "SHAPE_Area": 2200.9070456200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367090.430399999022484, 256459.418800000101328 ], [ 367065.969300001859665, 256430.10869999974966 ], [ 367083.891599997878075, 256408.723900001496077 ], [ 367067.054300002753735, 256397.39809999987483 ], [ 367049.956299997866154, 256416.678800001740456 ], [ 367036.132100000977516, 256430.286699999123812 ], [ 367025.574500001966953, 256439.066199999302626 ], [ 367032.833099998533726, 256438.914500001817942 ], [ 367039.258500002324581, 256441.922400001436472 ], [ 367068.798900000751019, 256476.572500001639128 ], [ 367068.939599998295307, 256476.800400000065565 ], [ 367070.589299999177456, 256479.474599998444319 ], [ 367090.430399999022484, 256459.418800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010200", "MAP": "G9-1773-T71", "PARCEL_NAM": "5F", "ACRE": "0.31", "LONGITUDE": -64.89672945, "LATITUDE": 18.3369494, "OBJECTID_1": 21500, "PARCEL_NO_": "105603010200", "Tax_Legal_": "5 ESTATE CHARLOTTE AMALIE NEW QUARTER", "Name": "BOUGH, JAMES A", "Address": "PO Box 6096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 147000, "Improved_V": 332200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.019566707, "SHAPE_Area": 1327.1921228000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362446.261699996888638, 256432.617499999701977 ], [ 362444.063900001347065, 256406.635000001639128 ], [ 362392.404200002551079, 256412.756099998950958 ], [ 362394.61089999973774, 256437.683200001716614 ], [ 362446.261699996888638, 256432.617499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703072200", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-55", "ACRE": "0.09", "LONGITUDE": -64.8781264, "LATITUDE": 18.33693553, "OBJECTID_1": 23238, "PARCEL_NO_": "105703072200", "Tax_Legal_": "ANNAS RETREAT 173-55 NEW QTR", "Name": "BELLE, PEARL INEZ", "Address": "7557 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12300, "Improved_V": 66800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.669411246300001, "SHAPE_Area": 382.85709857500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364395.918600000441074, 256448.900299999862909 ], [ 364388.4391999989748, 256421.791400000452995 ], [ 364376.043399997055531, 256424.679400000721216 ], [ 364383.052100002765656, 256453.86769999936223 ], [ 364394.380000002682209, 256449.316399998962879 ], [ 364395.918600000441074, 256448.900299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704015600", "MAP": "F9-1053-T62", "PARCEL_NAM": "57B-15", "ACRE": "0.90", "LONGITUDE": -64.87093316000001, "LATITUDE": 18.33663696, "OBJECTID_1": 23501, "PARCEL_NO_": "105704015600", "Tax_Legal_": "SMITH BAY 57B-15 EAST END QTR", "Name": "SMITH, CRAIG A", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 121900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.03925340200001, "SHAPE_Area": 3030.2864387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365168.87610000371933, 256395.794599998742342 ], [ 365124.717699997127056, 256373.268399998545647 ], [ 365116.609600000083447, 256378.479299999773502 ], [ 365114.165500000119209, 256381.414599999785423 ], [ 365112.511500000953674, 256386.256299998611212 ], [ 365110.713699996471405, 256407.984200000762939 ], [ 365182.8412000015378, 256460.292399998754263 ], [ 365168.87610000371933, 256395.794599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703053000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-197", "ACRE": "0.11", "LONGITUDE": -64.87567809, "LATITUDE": 18.33694663, "OBJECTID_1": 23086, "PARCEL_NO_": "105703053000", "Tax_Legal_": "ANNAS RETREAT 173-197 NEW QTR", "Name": "PRENTICE (LIFE ESTATE), ORILDA D", "Address": "PO Box 9793", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 125600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.312646099000006, "SHAPE_Area": 440.73406473599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364652.647200003266335, 256454.79450000077486 ], [ 364652.506099998950958, 256427.1385000012815 ], [ 364649.306900002062321, 256427.217000000178814 ], [ 364637.206900000572205, 256427.751200001686811 ], [ 364635.268500000238419, 256427.880199998617172 ], [ 364638.060099996626377, 256455.5304000005126 ], [ 364641.004699997603893, 256455.224500000476837 ], [ 364652.647200003266335, 256454.79450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85331203, "LATITUDE": 18.33662687, "OBJECTID_1": 24069, "PARCEL_NO_": "105804031300", "Tax_Legal_": "SMITH BAY 15C&15Q No.1,2&3 EASTEND QTR.", "Name": "SPRINGHOUSE LLC", "Address": "6346 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 429900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.90770557000002, "SHAPE_Area": 3389.5058954400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367031.751000002026558, 256376.633099999278784 ], [ 366960.922100000083447, 256455.846799999475479 ], [ 366976.100000001490116, 256472.647399999201298 ], [ 366979.314400002360344, 256473.940200001001358 ], [ 366984.157700002193451, 256473.346599999815226 ], [ 366985.782899998128414, 256471.882199998944998 ], [ 367058.183100000023842, 256397.53660000115633 ], [ 367031.751000002026558, 256376.633099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703053400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-193", "ACRE": "0.10", "LONGITUDE": -64.87513679, "LATITUDE": 18.33693462, "OBJECTID_1": 23090, "PARCEL_NO_": "105703053400", "Tax_Legal_": "ANNAS RETREAT 173-193 NEW QTR.", "Name": "TRUST AGREEMENT OF KIT ALIA FREEMAN", "Address": "PO BOX 502934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 13400, "Improved_V": 154500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.630126712399999, "SHAPE_Area": 395.53145917199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364694.945699997246265, 256425.733399998396635 ], [ 364695.190200001001358, 256454.823600001633167 ], [ 364696.647399999201298, 256454.835499998182058 ], [ 364708.394599996507168, 256454.825599998235703 ], [ 364708.676500000059605, 256425.232999999076128 ], [ 364704.156000003218651, 256425.343899998813868 ], [ 364696.089199997484684, 256425.699999999254942 ], [ 364694.945699997246265, 256425.733399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703053700", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-190", "ACRE": "0.09", "LONGITUDE": -64.87474939000001, "LATITUDE": 18.33693007, "OBJECTID_1": 23093, "PARCEL_NO_": "105703053700", "Tax_Legal_": "173-190 ANNAS RETREAT No.1 NEW QTR.", "Name": "JACKSON SMITH, GWENEVERE & JAMILYA CHRISTOPHER", "Address": "PO Box 9334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 188800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.688190433000003, "SHAPE_Area": 378.61072903899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364736.317199997603893, 256424.940000001341105 ], [ 364736.403399996459484, 256454.575500000268221 ], [ 364749.873000003397465, 256454.215700000524521 ], [ 364748.510300002992153, 256424.862500000745058 ], [ 364736.317199997603893, 256424.940000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703056000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-26", "ACRE": "0.09", "LONGITUDE": -64.87683851, "LATITUDE": 18.33693859, "OBJECTID_1": 23116, "PARCEL_NO_": "105703056000", "Tax_Legal_": "ANNAS RETREAT 173-26 NEW QTR", "Name": "THOMAS, ADELLE", "Address": "PO Box 304126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13400, "Improved_V": 96700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.371079994900001, "SHAPE_Area": 396.781898388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364511.35530000180006, 256428.417500000447035 ], [ 364517.555600002408028, 256453.13569999858737 ], [ 364518.455899998545647, 256452.954900000244379 ], [ 364528.957800000905991, 256450.718800000846386 ], [ 364532.428400002419949, 256449.953699998557568 ], [ 364526.361000001430511, 256424.4983000010252 ], [ 364511.35530000180006, 256428.417500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703025300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-192", "ACRE": ".151", "LONGITUDE": -64.88143062, "LATITUDE": 18.33692652, "OBJECTID_1": 22955, "PARCEL_NO_": "105703025300", "Tax_Legal_": "ANNAS RETREAT 148-192 NEW QTR", "Name": "FARRELL, JAMES & ETTA", "Address": "7110 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 108800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.553401949800005, "SHAPE_Area": 594.19418618600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364056.545000001788139, 256436.719900000840425 ], [ 364042.940200001001358, 256424.576200000941753 ], [ 364024.439999997615814, 256419.147399999201298 ], [ 364021.968900002539158, 256425.2489 ], [ 364021.070799998939037, 256436.00730000063777 ], [ 364041.927100002765656, 256448.843699999153614 ], [ 364049.250399999320507, 256441.093100000172853 ], [ 364056.545000001788139, 256436.719900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604030700", "MAP": null, "PARCEL_NAM": "2-2", "ACRE": null, "LONGITUDE": -64.88833032, "LATITUDE": 18.33670139, "OBJECTID_1": 21777, "PARCEL_NO_": "105604030700", "Tax_Legal_": "2-1&2-2 ANNAS RETREAT NEW QTR", "Name": "TURN COW CORPORATION", "Address": "PO Box 306912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 222200, "Improved_V": 203700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.30162395, "SHAPE_Area": 2302.81944694 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363324.745899997651577, 256391.678100001066923 ], [ 363322.679399996995926, 256350.286899998784065 ], [ 363313.741700001060963, 256358.235300000756979 ], [ 363299.026699997484684, 256381.75730000063777 ], [ 363288.294600002467632, 256411.011500000953674 ], [ 363278.466099999845028, 256428.874000001698732 ], [ 363289.641099996864796, 256442.264400001615286 ], [ 363296.159999996423721, 256434.29619999974966 ], [ 363330.932099997997284, 256422.759500000625849 ], [ 363327.75900000333786, 256416.611800000071526 ], [ 363326.177000001072884, 256413.010299999266863 ], [ 363324.745899997651577, 256391.678100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703053800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-189", "ACRE": "0.10", "LONGITUDE": -64.87462456, "LATITUDE": 18.33692448, "OBJECTID_1": 23094, "PARCEL_NO_": "105703053800", "Tax_Legal_": "ANNAS RETREAT 173-189 NEW QTR", "Name": "MONSANTO, BRENDA", "Address": "7801 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 89000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.142977409599993, "SHAPE_Area": 394.49819611499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364763.100500002503395, 256453.765599999576807 ], [ 364762.560900002717972, 256425.305500000715256 ], [ 364758.990599997341633, 256425.159400001168251 ], [ 364748.510300002992153, 256424.862500000745058 ], [ 364749.873000003397465, 256454.215700000524521 ], [ 364763.100500002503395, 256453.765599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703020600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-195", "ACRE": ".137", "LONGITUDE": -64.88184794, "LATITUDE": 18.33690511, "OBJECTID_1": 22908, "PARCEL_NO_": "105703020600", "Tax_Legal_": "148-195 ANNA'S RETREAT NEW QTR", "Name": "RUAN, KENO", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 55900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.3585642826, "SHAPE_Area": 557.93943875499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363990.60360000282526, 256415.493000000715256 ], [ 363987.385499998927116, 256414.622299998998642 ], [ 363979.081500001251698, 256442.840900000184774 ], [ 363995.168099999427795, 256447.616599999368191 ], [ 364007.500200003385544, 256419.853199999779463 ], [ 363990.60360000282526, 256415.493000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031100", "MAP": "A9-150-T70", "PARCEL_NAM": "173-305", "ACRE": "0.12", "LONGITUDE": -64.87315054, "LATITUDE": 18.3368801, "OBJECTID_1": 23565, "PARCEL_NO_": "105704031100", "Tax_Legal_": "ANNAS RETREAT 173-305&173A-67 NEW QTR", "Name": "THOMAS, MICHAEL A", "Address": "7614 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 121500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.475031871, "SHAPE_Area": 601.51466382599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364927.344499997794628, 256445.957899998873472 ], [ 364912.272699996829033, 256416.703600000590086 ], [ 364895.2466000020504, 256427.54109999909997 ], [ 364913.559799998998642, 256454.922100000083447 ], [ 364927.344499997794628, 256445.957899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703054000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-187", "ACRE": "0.10", "LONGITUDE": -64.87435974, "LATITUDE": 18.33692577, "OBJECTID_1": 23096, "PARCEL_NO_": "105703054000", "Tax_Legal_": "173-187 ANNAS RETREAT No.1 NEW QTR", "Name": "FRANCIS, SHARICE ALAINE", "Address": "PO BOX 10273", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 82300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.625318130099998, "SHAPE_Area": 377.02864146299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364776.72410000115633, 256425.937800001353025 ], [ 364776.386600002646446, 256425.905600000172853 ], [ 364777.500200003385544, 256453.300599999725819 ], [ 364781.329999998211861, 256453.206599999219179 ], [ 364791.817500002682209, 256452.659099999815226 ], [ 364790.424199998378754, 256426.894299998879433 ], [ 364779.947499997913837, 256426.175299998372793 ], [ 364776.72410000115633, 256425.937800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604025100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-258", "ACRE": "0.14", "LONGITUDE": -64.884476, "LATITUDE": 18.33686147, "OBJECTID_1": 21726, "PARCEL_NO_": "105604025100", "Tax_Legal_": "148-258 ANNAS RETREAT NEW QTR", "Name": "HENDRICK, JOCELIN", "Address": "PO Box 7852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 247500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.001501387, "SHAPE_Area": 686.27638938500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363714.927500002086163, 256403.526399999856949 ], [ 363697.721600003540516, 256435.471799999475479 ], [ 363714.58219999819994, 256444.053599998354912 ], [ 363731.798900000751019, 256410.841699998825788 ], [ 363714.927500002086163, 256403.526399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-186", "ACRE": "0.10", "LONGITUDE": -64.87422734, "LATITUDE": 18.33692216, "OBJECTID_1": 23589, "PARCEL_NO_": "105704033800", "Tax_Legal_": "ANNAS RETREAT 173-186 NEW QTR", "Name": "SERRANO, LINDA", "Address": "173-186 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.5302100153, "SHAPE_Area": 355.70428842699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364805.670000001788139, 256452.240200001746416 ], [ 364803.803199999034405, 256425.857099998742342 ], [ 364800.913500003516674, 256426.135800000280142 ], [ 364790.424199998378754, 256426.894299998879433 ], [ 364791.817500002682209, 256452.659099999815226 ], [ 364802.303099997341633, 256452.322799999266863 ], [ 364805.670000001788139, 256452.240200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031700", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-185", "ACRE": "0.10", "LONGITUDE": -64.87409279000001, "LATITUDE": 18.33691234, "OBJECTID_1": 23571, "PARCEL_NO_": "105704031700", "Tax_Legal_": "ANNAS RETREAT 173-185 NEW QTR", "Name": "JOHN, SHERYL & IASIA", "Address": "7710 Estate Anna S Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 101400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.207259170399993, "SHAPE_Area": 399.06869829099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364820.831699997186661, 256451.1739999987185 ], [ 364818.346000000834465, 256424.354499999433756 ], [ 364816.247800000011921, 256424.572500001639128 ], [ 364806.563000001013279, 256425.548700001090765 ], [ 364804.948600001633167, 256425.746599998325109 ], [ 364803.803199999034405, 256425.857099998742342 ], [ 364805.670000001788139, 256452.240200001746416 ], [ 364808.755400002002716, 256452.164500001817942 ], [ 364820.831699997186661, 256451.1739999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032000", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-153", "ACRE": ".282", "LONGITUDE": -64.85903143, "LATITUDE": 18.33677133, "OBJECTID_1": 23937, "PARCEL_NO_": "105803032000", "Tax_Legal_": "SMITH BAY 19-2-153 EASTEND QUARTER", "Name": "BRANNICK, LAUREL A. & DENISE M.", "Address": "1300 Cruz Bay Crk", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.160238994, "SHAPE_Area": 1244.9590359599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366414.293799996376038, 256415.767700001597404 ], [ 366412.515900000929832, 256411.453699998557568 ], [ 366386.718999996781349, 256419.875700000673532 ], [ 366385.220799997448921, 256420.364799998700619 ], [ 366386.258599996566772, 256423.279100000858307 ], [ 366394.906900003552437, 256449.314300000667572 ], [ 366385.909800000488758, 256464.228399999439716 ], [ 366415.01799999922514, 256454.967399999499321 ], [ 366423.190800003707409, 256442.157600000500679 ], [ 366414.546099998056889, 256415.700100000947714 ], [ 366414.293799996376038, 256415.767700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703020500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-196", "ACRE": ".124", "LONGITUDE": -64.88201194, "LATITUDE": 18.33686806, "OBJECTID_1": 22907, "PARCEL_NO_": "105703020500", "Tax_Legal_": "ANNAS RETREAT 148-196 1 NEW QTR", "Name": "BROWN, E & OLIVER, K", "Address": "7115 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 43100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.019495871299995, "SHAPE_Area": 489.34576615999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363974.513300001621246, 256411.139400001615286 ], [ 363971.295299999415874, 256410.268699999898672 ], [ 363962.993000000715256, 256438.276200000196695 ], [ 363979.081500001251698, 256442.840900000184774 ], [ 363987.385499998927116, 256414.622299998998642 ], [ 363974.513300001621246, 256411.139400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703072400", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-53", "ACRE": "0.09", "LONGITUDE": -64.87789943, "LATITUDE": 18.33687368, "OBJECTID_1": 23240, "PARCEL_NO_": "105703072400", "Tax_Legal_": "ANNAS RETREAT 173-53 NEW QTR.", "Name": "SADDLER, JOSEPH", "Address": "PO Box 6433", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12300, "Improved_V": 60200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.626660029000007, "SHAPE_Area": 420.77725608399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364420.546899996697903, 256442.473299998790026 ], [ 364414.23200000077486, 256415.984499998390675 ], [ 364405.055399999022484, 256418.040699999779463 ], [ 364398.592299997806549, 256419.465500000864267 ], [ 364406.428900003433228, 256446.127399999648333 ], [ 364412.085600003600121, 256444.695999998599291 ], [ 364420.546899996697903, 256442.473299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-183", "ACRE": "0.12", "LONGITUDE": -64.87377446000001, "LATITUDE": 18.33686807, "OBJECTID_1": 23564, "PARCEL_NO_": "105704031000", "Tax_Legal_": "ANNAS RETREAT 173-183 NEW QTR", "Name": "FREEMAN, ALMOND", "Address": "7706 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 117900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.59027910499999, "SHAPE_Area": 695.63233906699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364863.723099999129772, 256436.360199999064207 ], [ 364858.211999997496605, 256420.694099999964237 ], [ 364843.6858000010252, 256422.05290000140667 ], [ 364832.388400003314018, 256423.015900000929832 ], [ 364830.675200000405312, 256423.169900000095367 ], [ 364833.7466000020504, 256449.901999998837709 ], [ 364837.81139999628067, 256449.02479999884963 ], [ 364850.7466000020504, 256445.119899999350309 ], [ 364859.659199997782707, 256440.126600001007318 ], [ 364863.723099999129772, 256436.360199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604026700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-208", "ACRE": ".135", "LONGITUDE": -64.88318582, "LATITUDE": 18.33686043, "OBJECTID_1": 21742, "PARCEL_NO_": "105604026700", "Tax_Legal_": "148-208 ANNAS RETREAT NEW QTR", "Name": "NICHOLAS, CLETUS E. & JUDITH S.", "Address": "PO Box 9512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 162200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.557541264199997, "SHAPE_Area": 434.02972405000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363865.590999998152256, 256418.480599999427795 ], [ 363852.765500001609325, 256409.509700000286102 ], [ 363836.470200002193451, 256429.219099998474121 ], [ 363850.084100000560284, 256440.307399999350309 ], [ 363865.590999998152256, 256418.480599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703072500", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-52", "ACRE": "0.09", "LONGITUDE": -64.87776693000001, "LATITUDE": 18.33684521, "OBJECTID_1": 23241, "PARCEL_NO_": "105703072500", "Tax_Legal_": "173-52 ANNAS RETREAT NEW QUARTER", "Name": "BRESSENDORFF, JR., HANS", "Address": "PO Box 9644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 50600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.747373737499998, "SHAPE_Area": 361.06900372000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364414.23200000077486, 256415.984499998390675 ], [ 364420.546899996697903, 256442.473299998790026 ], [ 364433.906400002539158, 256438.964000001549721 ], [ 364426.869000002741814, 256413.153000000864267 ], [ 364414.23200000077486, 256415.984499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703024100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-135", "ACRE": ".147", "LONGITUDE": -64.8807343, "LATITUDE": 18.3368394, "OBJECTID_1": 22943, "PARCEL_NO_": "105703024100", "Tax_Legal_": "ANNAS RETREAT 148-135 NEW QTR", "Name": "ROBERTS, W & M. & KNIGHT, J", "Address": "PO Box 304366", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20500, "Improved_V": 135800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.325321192, "SHAPE_Area": 626.78930927700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364114.856600001454353, 256407.01069999858737 ], [ 364092.105499997735023, 256427.300599999725819 ], [ 364096.083099998533726, 256433.666000001132488 ], [ 364097.684900000691414, 256434.945599999278784 ], [ 364100.852600000798702, 256441.726599998772144 ], [ 364130.038099996745586, 256423.389199998229742 ], [ 364114.856600001454353, 256407.01069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88726529, "LATITUDE": 18.33667427, "OBJECTID_1": 21784, "PARCEL_NO_": "105604031400", "Tax_Legal_": "ANNAS RETREAT 2&2H No.1 NEW QTR.", "Name": "Professional Des and 2-H & Rem 2 Annas Retreat,LLC", "Address": "PO Box 304062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 235200, "Improved_V": 81800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.773104918, "SHAPE_Area": 3800.03355212 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363402.309900000691414, 256431.879799999296665 ], [ 363481.229000002145767, 256414.304999999701977 ], [ 363466.534699998795986, 256407.192999999970198 ], [ 363401.676500000059605, 256353.466600000858307 ], [ 363398.404500000178814, 256358.928199999034405 ], [ 363395.134300000965595, 256364.178800001740456 ], [ 363391.867700003087521, 256369.007199998944998 ], [ 363391.304099999368191, 256387.651999998837709 ], [ 363390.987899996340275, 256391.144000001251698 ], [ 363388.933499999344349, 256413.836199998855591 ], [ 363387.655799999833107, 256427.949299998581409 ], [ 363385.761799998581409, 256435.624299999326468 ], [ 363386.010099999606609, 256435.509700000286102 ], [ 363402.309900000691414, 256431.879799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703020400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-197", "ACRE": ".119", "LONGITUDE": -64.88216783, "LATITUDE": 18.33682812, "OBJECTID_1": 22906, "PARCEL_NO_": "105703020400", "Tax_Legal_": "ANNAS RETREAT 148-197 NEW QTR", "Name": "THOMAS, MAVIS & NOEL & ROHAN J.", "Address": "7116 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17300, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.233272407699999, "SHAPE_Area": 508.75103070099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363959.225699998438358, 256407.214600000530481 ], [ 363953.592299997806549, 256405.901999998837709 ], [ 363946.899099998176098, 256434.344799999147654 ], [ 363962.993000000715256, 256438.276200000196695 ], [ 363971.295299999415874, 256410.268699999898672 ], [ 363959.225699998438358, 256407.214600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031200", "MAP": "D9-4573-T88", "PARCEL_NAM": "173-306", "ACRE": ".15", "LONGITUDE": -64.87297748, "LATITUDE": 18.33678711, "OBJECTID_1": 23566, "PARCEL_NO_": "105704031200", "Tax_Legal_": "ANNAS RETREAT 173-306 NEW QTR", "Name": "DONOVAN, CLAUDETTE A", "Address": "173-306 ANNAS RETRT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 12900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.38754516500001, "SHAPE_Area": 747.20974973 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364944.35080000013113, 256437.442200001329184 ], [ 364939.760999999940395, 256408.273800000548363 ], [ 364924.412299998104572, 256411.525600001215935 ], [ 364912.272699996829033, 256416.703600000590086 ], [ 364927.344499997794628, 256445.957899998873472 ], [ 364933.019199997186661, 256442.415699999779463 ], [ 364944.35080000013113, 256437.442200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604025000", "MAP": null, "PARCEL_NAM": "148-259", "ACRE": null, "LONGITUDE": -64.88467618, "LATITUDE": 18.33678482, "OBJECTID_1": 21725, "PARCEL_NO_": "105604025000", "Tax_Legal_": "ANNAS RETREAT 148-259 NEW QTR", "Name": "Minerva,S, & C Bernier, A&S Daniel, &T Jahnke", "Address": "7732 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021956, "Country": "United States", "Land_Value": 24500, "Improved_V": 104600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.116700868, "SHAPE_Area": 930.60977134699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363696.44879999756813, 256395.564699999988079 ], [ 363668.821999996900558, 256420.247600000351667 ], [ 363697.721600003540516, 256435.471799999475479 ], [ 363714.927500002086163, 256403.526399999856949 ], [ 363696.44879999756813, 256395.564699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032200", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".281", "LONGITUDE": -64.85845954, "LATITUDE": 18.33671852, "OBJECTID_1": 23939, "PARCEL_NO_": "105803032200", "Tax_Legal_": "SMITH BAY 19-2-151 EASTEND QUARTER", "Name": "LANS, JR, OWEN I", "Address": "PO Box 306527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.47045191500001, "SHAPE_Area": 1221.23825756 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366447.682199999690056, 256406.894299998879433 ], [ 366450.546099998056889, 256449.347500000149012 ], [ 366460.227200001478195, 256448.793499998748302 ], [ 366466.665100000798702, 256450.323800001293421 ], [ 366474.690499998629093, 256454.822500001639128 ], [ 366477.888800002634525, 256458.015099998563528 ], [ 366483.061099998652935, 256418.793999999761581 ], [ 366447.682199999690056, 256406.894299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704012800", "MAP": "F9-1478-T64", "PARCEL_NAM": "57B-17", "ACRE": ".26", "LONGITUDE": -64.87163493, "LATITUDE": 18.33685239, "OBJECTID_1": 23473, "PARCEL_NO_": "105704012800", "Tax_Legal_": "SMITH BAY 57B-17 EAST END QTR", "Name": "SMITH, HENRY H", "Address": "P O BOX 2231", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54700, "Improved_V": 103400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.84926833, "SHAPE_Area": 950.62262057500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365049.999799996614456, 256421.397599998861551 ], [ 365052.375399999320507, 256445.166600000113249 ], [ 365088.61599999666214, 256446.222300000488758 ], [ 365091.877199999988079, 256442.027199998497963 ], [ 365096.857100002467632, 256425.391499999910593 ], [ 365049.999799996614456, 256421.397599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87016893000001, "LATITUDE": 18.33680013, "OBJECTID_1": 23479, "PARCEL_NO_": "105704013400", "Tax_Legal_": "SMITH BAY 57B-38 EAST END QTR", "Name": "SUCKOW, HOWARD & VIRGINIA", "Address": "169 Stephens State Park Rd", "City": "Hackettstown", "State": "New Jersey", "Zip": 7840, "Country": "United States", "Land_Value": 80200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.82111282400001, "SHAPE_Area": 2017.7146292800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365265.305900000035763, 256436.696800000965595 ], [ 365270.433600001037121, 256412.905299998819828 ], [ 365259.905799999833107, 256413.846400000154972 ], [ 365253.385999999940395, 256414.429200001060963 ], [ 365183.161300003528595, 256422.720400001853704 ], [ 365188.605899997055531, 256446.196299999952316 ], [ 365249.943199999630451, 256439.943399999290705 ], [ 365254.217699997127056, 256439.737100001424551 ], [ 365257.803199999034405, 256439.564100001007318 ], [ 365265.305900000035763, 256436.696800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703025400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-191", "ACRE": ".167", "LONGITUDE": -64.88120218, "LATITUDE": 18.33682846, "OBJECTID_1": 22956, "PARCEL_NO_": "105703025400", "Tax_Legal_": "ANNAS RETREAT 148-191 NEW QTR", "Name": "LEVYS, LINCOLN D. & MORVETTE M", "Address": "7108 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 157500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.759081099, "SHAPE_Area": 667.041686486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364054.397600002586842, 256404.827199999243021 ], [ 364042.940200001001358, 256424.576200000941753 ], [ 364056.545000001788139, 256436.719900000840425 ], [ 364068.673900000751019, 256432.808400001376867 ], [ 364079.965800002217293, 256432.47859999909997 ], [ 364081.589199997484684, 256431.225299999117851 ], [ 364080.808100000023842, 256428.263599999248981 ], [ 364078.414300002157688, 256425.288699999451637 ], [ 364066.423900000751019, 256412.947200000286102 ], [ 364054.397600002586842, 256404.827199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703072600", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-51", "ACRE": "0.10", "LONGITUDE": -64.87762421, "LATITUDE": 18.33680614, "OBJECTID_1": 23242, "PARCEL_NO_": "105703072600", "Tax_Legal_": "ANNAS RETREAT 173-51 NEW QTR", "Name": "TESTAMARK, U", "Address": "7566 ESTATE TUTU VALLEY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 100800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.579646051799998, "SHAPE_Area": 481.547443499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364444.676899999380112, 256408.263900000602007 ], [ 364426.869000002741814, 256413.153000000864267 ], [ 364433.906400002539158, 256438.964000001549721 ], [ 364450.746699996292591, 256434.511999998241663 ], [ 364444.676899999380112, 256408.263900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032100", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".294", "LONGITUDE": -64.85875486, "LATITUDE": 18.33669067, "OBJECTID_1": 23938, "PARCEL_NO_": "105803032100", "Tax_Legal_": "SMITH BAY 19-2-152 EAST END QUARTER", "Name": "MAHON, SELWYN E. & MARY E", "Address": "6603 Evanston St", "City": "FORESTVILLE", "State": "Maryland", "Zip": 20747, "Country": "United States", "Land_Value": 32300, "Improved_V": 460900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.99491872300001, "SHAPE_Area": 1379.3070008699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366450.546099998056889, 256449.347500000149012 ], [ 366447.682199999690056, 256406.894299998879433 ], [ 366438.104099996387959, 256403.099800001829863 ], [ 366414.917499996721745, 256410.669599998742342 ], [ 366412.515900000929832, 256411.453699998557568 ], [ 366414.293799996376038, 256415.767700001597404 ], [ 366414.546099998056889, 256415.700100000947714 ], [ 366423.190800003707409, 256442.157600000500679 ], [ 366415.01799999922514, 256454.967399999499321 ], [ 366427.956699997186661, 256450.640299998223782 ], [ 366450.546099998056889, 256449.347500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703020300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-198", "ACRE": ".119", "LONGITUDE": -64.88232885, "LATITUDE": 18.33679454, "OBJECTID_1": 22905, "PARCEL_NO_": "105703020300", "Tax_Legal_": "148-198 ANNAS RETREAT NEW QTR", "Name": "PENN, CHERISE A", "Address": "148-198 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 115700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.816184749200005, "SHAPE_Area": 512.49455620499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363942.327299997210503, 256403.065499998629093 ], [ 363936.695699997246265, 256401.541799999773502 ], [ 363929.997100003063679, 256430.617899999022484 ], [ 363946.899099998176098, 256434.344799999147654 ], [ 363953.592299997806549, 256405.901999998837709 ], [ 363942.327299997210503, 256403.065499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703080200", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-100", "ACRE": "0.24", "LONGITUDE": -64.87870367, "LATITUDE": 18.33678725, "OBJECTID_1": 23262, "PARCEL_NO_": "105703080200", "Tax_Legal_": "ANNAS RETREAT 173C-100 NEW QTR.", "Name": "RICHARDSON & STEVENS", "Address": "7406 Tremendo Dr", "City": "Houston", "State": "Texas", "Zip": 77083, "Country": "United States", "Land_Value": 56400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.033565411, "SHAPE_Area": 790.35797248400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364322.962600000202656, 256399.636999998241663 ], [ 364317.273400001227856, 256404.86769999936223 ], [ 364302.605200000107288, 256422.901700001209974 ], [ 364304.205200001597404, 256424.392499998211861 ], [ 364313.843199998140335, 256428.90430000051856 ], [ 364333.160499997437, 256433.07319999858737 ], [ 364342.803900003433228, 256436.951799999922514 ], [ 364348.476899996399879, 256433.620799999684095 ], [ 364322.962600000202656, 256399.636999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703055600", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-30", "ACRE": "0.09", "LONGITUDE": -64.87632527, "LATITUDE": 18.33681113, "OBJECTID_1": 23112, "PARCEL_NO_": "105703055600", "Tax_Legal_": "ANNAS RETREAT 173-30 NEW QTR", "Name": "CHRISTIAN, INA M", "Address": "Po Box 9006", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 72900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.035886603600005, "SHAPE_Area": 365.582257261 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364586.273199997842312, 256435.902199998497963 ], [ 364580.018500000238419, 256411.048000000417233 ], [ 364569.593500003218651, 256413.476799998432398 ], [ 364566.525700002908707, 256414.252999998629093 ], [ 364572.50620000064373, 256439.793200001120567 ], [ 364575.020099997520447, 256439.063499998301268 ], [ 364576.63629999756813, 256438.654500000178814 ], [ 364586.273199997842312, 256435.902199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703020200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-199", "ACRE": ".129", "LONGITUDE": -64.88249162, "LATITUDE": 18.33676118, "OBJECTID_1": 22904, "PARCEL_NO_": "105703020200", "Tax_Legal_": "ANNAS RETREAT 148-199 NEW QTR", "Name": "KING, CHRISTOPHINE S.", "Address": "PO Box 502893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19300, "Improved_V": 162700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.953452030199998, "SHAPE_Area": 544.23798996899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363925.432499997317791, 256398.494300000369549 ], [ 363919.800899997353554, 256396.970600001513958 ], [ 363912.281599998474121, 256427.728700000792742 ], [ 363929.997100003063679, 256430.617899999022484 ], [ 363936.695699997246265, 256401.541799999773502 ], [ 363925.432499997317791, 256398.494300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604026600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-207", "ACRE": ".05", "LONGITUDE": -64.8833167, "LATITUDE": 18.3367597, "OBJECTID_1": 21741, "PARCEL_NO_": "105604026600", "Tax_Legal_": "ANNAS RETREAT 148-207 NEW QTR", "Name": "ALFRED, LOUISE & SHARLENE HARRIS", "Address": "PO Box 304220", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6300, "Improved_V": 106500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.496492551700001, "SHAPE_Area": 486.28154249300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363852.765500001609325, 256409.509700000286102 ], [ 363839.965199999511242, 256397.583700001239777 ], [ 363821.258199997246265, 256416.429000001400709 ], [ 363836.470200002193451, 256429.219099998474121 ], [ 363852.765500001609325, 256409.509700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703080300", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-99", "ACRE": "0.24", "LONGITUDE": -64.87850006, "LATITUDE": 18.33670253, "OBJECTID_1": 23263, "PARCEL_NO_": "105703080300", "Tax_Legal_": "ANNAS RETREAT 173C-99 NEW QTR.", "Name": "HODGE (TRUSTEES), MALORIA & BERRIS", "Address": "PO Box 10338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 253000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.67654835900001, "SHAPE_Area": 1015.6261165 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364370.311999998986721, 256426.200100000947714 ], [ 364347.232900001108646, 256390.336399998515844 ], [ 364333.496799997985363, 256393.601500000804663 ], [ 364322.962600000202656, 256399.636999998241663 ], [ 364348.476899996399879, 256433.620799999684095 ], [ 364354.959700003266335, 256429.874099999666214 ], [ 364370.311999998986721, 256426.200100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703073900", "MAP": "D9-1018-T70", "PARCEL_NAM": "173-334", "ACRE": ".16", "LONGITUDE": -64.87745542, "LATITUDE": 18.33672102, "OBJECTID_1": 23253, "PARCEL_NO_": "105703073900", "Tax_Legal_": "ANNAS RETREAT 173-334 NEW QTR", "Name": "MADURO, DEREESE", "Address": "PO Box 7635", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 85100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.001083702, "SHAPE_Area": 767.64157228900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364463.812899999320507, 256398.135600000619888 ], [ 364462.728200003504753, 256393.689699999988079 ], [ 364450.606100000441074, 256397.170699998736382 ], [ 364442.640600003302097, 256399.458099998533726 ], [ 364443.518200002610683, 256403.253299999982119 ], [ 364450.746699996292591, 256434.511999998241663 ], [ 364452.494800001382828, 256434.049899999052286 ], [ 364470.27139999717474, 256429.76240000128746 ], [ 364471.451800003647804, 256429.447500001639128 ], [ 364463.812899999320507, 256398.135600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031300", "MAP": "A9-150-T70", "PARCEL_NAM": "173-307", "ACRE": "0.12", "LONGITUDE": -64.87278227, "LATITUDE": 18.33674127, "OBJECTID_1": 23567, "PARCEL_NO_": "105704031300", "Tax_Legal_": "ANNAS RETREAT 173-307 NEW QTR", "Name": "BATTISTE, LAVORN C", "Address": "PO Box 11515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.287709631599995, "SHAPE_Area": 507.57934720999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364961.37219999730587, 256432.904800001531839 ], [ 364958.750799998641014, 256406.111600000411272 ], [ 364939.760999999940395, 256408.273800000548363 ], [ 364944.35080000013113, 256437.442200001329184 ], [ 364950.016500003635883, 256434.95549999922514 ], [ 364961.37219999730587, 256432.904800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704032300", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-182", "ACRE": "0.15", "LONGITUDE": -64.87353478, "LATITUDE": 18.33672334, "OBJECTID_1": 23576, "PARCEL_NO_": "105704032300", "Tax_Legal_": "173-182 ANNAS RETREAT NEW QUARTER", "Name": "WILLIAMS, LINDA M. & RONALD A", "Address": "7703 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 122300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.227124601699998, "SHAPE_Area": 598.61940495600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364867.255900003015995, 256400.292100001126528 ], [ 364858.211999997496605, 256420.694099999964237 ], [ 364863.723099999129772, 256436.360199999064207 ], [ 364876.696000002324581, 256428.022599998861551 ], [ 364883.173500001430511, 256424.909200001507998 ], [ 364885.615800000727177, 256422.184999998658895 ], [ 364885.660800002515316, 256416.907999999821186 ], [ 364882.489500001072884, 256410.549199998378754 ], [ 364875.290200002491474, 256403.735300000756979 ], [ 364867.255900003015995, 256400.292100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703020100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-200", "ACRE": ".118", "LONGITUDE": -64.88264749, "LATITUDE": 18.33673289, "OBJECTID_1": 22903, "PARCEL_NO_": "105703020100", "Tax_Legal_": "ANNAS RETREAT 148-200 NEW QTR", "Name": "SAMUELS, GLORIA P", "Address": "PO Box 1415", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 16400, "Improved_V": 122600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.990867714000004, "SHAPE_Area": 500.06867556399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363919.800899997353554, 256396.970600001513958 ], [ 363906.928700000047684, 256393.487700000405312 ], [ 363894.585900001227856, 256422.517599999904633 ], [ 363912.281599998474121, 256427.728700000792742 ], [ 363919.800899997353554, 256396.970600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703055500", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-31", "ACRE": "0.10", "LONGITUDE": -64.87619567, "LATITUDE": 18.33677525, "OBJECTID_1": 23111, "PARCEL_NO_": "105703055500", "Tax_Legal_": "ANNAS RETREAT 173-31 NEW QTR.", "Name": "FERRIS, JUANITA & VERNON", "Address": "173-31 ANNA'S RETREAT", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 96600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.752196030199997, "SHAPE_Area": 364.79094828900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364599.437600001692772, 256432.253199998289347 ], [ 364594.737999998033047, 256407.40089999884367 ], [ 364590.60080000013113, 256408.582499999552965 ], [ 364580.018500000238419, 256411.048000000417233 ], [ 364586.273199997842312, 256435.902199998497963 ], [ 364596.036399997770786, 256433.113800000399351 ], [ 364599.437600001692772, 256432.253199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703055400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-32", "ACRE": "0.10", "LONGITUDE": -64.87606554, "LATITUDE": 18.336745, "OBJECTID_1": 23110, "PARCEL_NO_": "105703055400", "Tax_Legal_": "ANNAS RETREAT 173-32 NEW QTR", "Name": "GOVIA, VALENTINE", "Address": "46 Rowan Dr", "City": "Clayton", "State": "North Carolina", "Zip": 27520, "Country": "United States", "Land_Value": 13700, "Improved_V": 84900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.900033330900001, "SHAPE_Area": 351.99431700999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364612.413199998438358, 256430.176899999380112 ], [ 364608.853500001132488, 256404.411800000816584 ], [ 364597.067500002682209, 256406.735500000417233 ], [ 364594.737999998033047, 256407.40089999884367 ], [ 364599.437600001692772, 256432.253199998289347 ], [ 364600.076899997889996, 256432.091400001198053 ], [ 364605.731899999082088, 256430.871100001037121 ], [ 364612.413199998438358, 256430.176899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703024200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-136", "ACRE": ".140", "LONGITUDE": -64.88085404, "LATITUDE": 18.33671221, "OBJECTID_1": 22944, "PARCEL_NO_": "105703024200", "Tax_Legal_": "148-136 ANNAS RETREAT NEW QUARTER", "Name": "KAREN LOUISE FREDERIKSEN LIVING REVOC TRUST AGREEM", "Address": "PO Box 215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 61200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.311497183399993, "SHAPE_Area": 532.06802335199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364100.459899999201298, 256393.171799998730421 ], [ 364081.727700002491474, 256414.972199998795986 ], [ 364092.105499997735023, 256427.300599999725819 ], [ 364114.856600001454353, 256407.01069999858737 ], [ 364100.459899999201298, 256393.171799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010200", "MAP": "G9-1773-T71", "PARCEL_NAM": "5E", "ACRE": "0.31", "LONGITUDE": -64.89675807, "LATITUDE": 18.33670271, "OBJECTID_1": 21500, "PARCEL_NO_": "105603010200", "Tax_Legal_": "5 ESTATE CHARLOTTE AMALIE NEW QUARTER", "Name": "BOUGH, JAMES A", "Address": "PO Box 6096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 147000, "Improved_V": 332200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.83959231, "SHAPE_Area": 1529.4838779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362444.063900001347065, 256406.635000001639128 ], [ 362441.086800001561642, 256377.479699999094009 ], [ 362389.428900003433228, 256383.389699999243021 ], [ 362392.404200002551079, 256412.756099998950958 ], [ 362444.063900001347065, 256406.635000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703074000", "MAP": "D9-1018-T70", "PARCEL_NAM": "173-335", "ACRE": null, "LONGITUDE": -64.87728203, "LATITUDE": 18.33667721, "OBJECTID_1": 23254, "PARCEL_NO_": "105703074000", "Tax_Legal_": "ANNAS RETREAT 173-335 NEW QTR", "Name": "MARVA C BENJAMIN", "Address": "7792 Old Thyme Rd", "City": "Union City", "State": "Georgia", "Zip": 302913457, "Country": "United States", "Land_Value": 20100, "Improved_V": 106000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.676050115, "SHAPE_Area": 623.31669163100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364479.58669999986887, 256394.337400000542402 ], [ 364478.092000000178814, 256389.277800001204014 ], [ 364462.728200003504753, 256393.689699999988079 ], [ 364463.812899999320507, 256398.135600000619888 ], [ 364471.451800003647804, 256429.447500001639128 ], [ 364485.627300001680851, 256425.666200000792742 ], [ 364488.611100003123283, 256424.886100001633167 ], [ 364479.58669999986887, 256394.337400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703025600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-189", "ACRE": ".122", "LONGITUDE": -64.88159525, "LATITUDE": 18.33669186, "OBJECTID_1": 22958, "PARCEL_NO_": "105703025600", "Tax_Legal_": "ANNAS RETREAT 148-189 NEW QTR", "Name": "GEORGE NORFORD, LORI", "Address": "146-133 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 92200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.011318097399993, "SHAPE_Area": 532.23958259400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364032.708099998533726, 256395.150400001555681 ], [ 364014.196999996900558, 256390.988200001418591 ], [ 364007.500200003385544, 256419.853199999779463 ], [ 364021.968900002539158, 256425.2489 ], [ 364024.439999997615814, 256419.147399999201298 ], [ 364032.708099998533726, 256395.150400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703025500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-190", "ACRE": ".147", "LONGITUDE": -64.88141251, "LATITUDE": 18.33671628, "OBJECTID_1": 22957, "PARCEL_NO_": "105703025500", "Tax_Legal_": "148-190 ANNA'S RETREAT NEW QTR", "Name": "BRATHWAITE, ALVIN & LIBURD, M", "Address": "PO Box 6255", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20500, "Improved_V": 150300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.303004173100007, "SHAPE_Area": 523.98342885199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364054.397600002586842, 256404.827199999243021 ], [ 364043.962300002574921, 256399.253299999982119 ], [ 364032.708099998533726, 256395.150400001555681 ], [ 364024.439999997615814, 256419.147399999201298 ], [ 364042.940200001001358, 256424.576200000941753 ], [ 364054.397600002586842, 256404.827199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703087300", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-45", "ACRE": "0.26", "LONGITUDE": -64.87934392, "LATITUDE": 18.33661169, "OBJECTID_1": 23333, "PARCEL_NO_": "105703087300", "Tax_Legal_": "ANNAS RETREAT 173C-45 NEW QTR.", "Name": "VANTERPOOL, ELIZABETH", "Address": "PO Box 10881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35600, "Improved_V": 179000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.25021787399999, "SHAPE_Area": 1272.81144223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364280.109300002455711, 256413.218400001525879 ], [ 364275.347000002861023, 256404.313499998301268 ], [ 364271.398100003600121, 256394.570900000631809 ], [ 364268.313100002706051, 256378.080299999564886 ], [ 364229.505900003015995, 256390.006099998950958 ], [ 364231.870800003409386, 256396.358300000429153 ], [ 364265.484200000762939, 256426.186500001698732 ], [ 364280.109300002455711, 256413.218400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703055300", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-33", "ACRE": "0.09", "LONGITUDE": -64.87593161, "LATITUDE": 18.33672427, "OBJECTID_1": 23109, "PARCEL_NO_": "105703055300", "Tax_Legal_": "ANNAS RETREAT 173-33 NEW QTR", "Name": "ROY A HOWARD SR TRUST", "Address": "7058 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12300, "Improved_V": 130200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.848502785400001, "SHAPE_Area": 395.469650742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364626.736000001430511, 256428.612900000065565 ], [ 364623.88629999756813, 256401.624299999326468 ], [ 364619.683799996972084, 256402.276599999517202 ], [ 364608.853500001132488, 256404.411800000816584 ], [ 364612.413199998438358, 256430.176899999380112 ], [ 364622.680600002408028, 256429.109999999403954 ], [ 364626.736000001430511, 256428.612900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604027400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-201", "ACRE": ".125", "LONGITUDE": -64.88280341, "LATITUDE": 18.33667657, "OBJECTID_1": 21749, "PARCEL_NO_": "105604027400", "Tax_Legal_": "148-201 ANNAS RETREAT NEW QTR", "Name": "MERCER (TRUSTEES), ALBERT E. & DOROTHY E.", "Address": "7120 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 150500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.208197734, "SHAPE_Area": 602.02315338799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363905.32150000333786, 256392.841299999505281 ], [ 363890.858199998736382, 256386.812300000339746 ], [ 363875.308100000023842, 256413.704999998211861 ], [ 363894.585900001227856, 256422.517599999904633 ], [ 363906.928700000047684, 256393.487700000405312 ], [ 363905.32150000333786, 256392.841299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703080400", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-98", "ACRE": "0.24", "LONGITUDE": -64.87825781, "LATITUDE": 18.33664834, "OBJECTID_1": 23264, "PARCEL_NO_": "105703080400", "Tax_Legal_": "ANNAS RETREAT 173C-98 NEW QTR.", "Name": "REGISTE, HYACINTHE & ANDRINE A.", "Address": "PO Box 89486", "City": "Cleveland", "State": "Ohio", "Zip": 44101, "Country": "United States", "Land_Value": 30100, "Improved_V": 152800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.69128238900001, "SHAPE_Area": 1070.60360715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364396.976099997758865, 256419.874400001019239 ], [ 364374.688900001347065, 256385.706000000238419 ], [ 364347.232900001108646, 256390.336399998515844 ], [ 364370.311999998986721, 256426.200100000947714 ], [ 364375.968800000846386, 256424.768699999898672 ], [ 364396.976099997758865, 256419.874400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703074100", "MAP": null, "PARCEL_NAM": "173C-94", "ACRE": null, "LONGITUDE": -64.87707538, "LATITUDE": 18.33662256, "OBJECTID_1": 23255, "PARCEL_NO_": "105703074100", "Tax_Legal_": "ANNAS RETREAT 173C-94 NEW QTR.", "Name": "WALTERS, ESMON N. & CHRISTOLYN", "Address": "PO Box 7792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.74331451500001, "SHAPE_Area": 1037.04265134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364508.247699998319149, 256387.085200000554323 ], [ 364507.475900001823902, 256383.768100000917912 ], [ 364478.092000000178814, 256389.277800001204014 ], [ 364479.58669999986887, 256394.337400000542402 ], [ 364488.611100003123283, 256424.886100001633167 ], [ 364510.680500000715256, 256419.116300001740456 ], [ 364515.411399997770786, 256417.871800001710653 ], [ 364508.247699998319149, 256387.085200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703054900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-37", "ACRE": "0.09", "LONGITUDE": -64.87542373, "LATITUDE": 18.33668984, "OBJECTID_1": 23105, "PARCEL_NO_": "105703054900", "Tax_Legal_": "ANNAS RETREAT 173-37 NEW QTR.", "Name": "TYSON, LOUISE", "Address": "PO Box 10255", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12300, "Improved_V": 90000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.19471217, "SHAPE_Area": 423.54273929499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364679.110799998044968, 256398.54109999909997 ], [ 364675.35530000180006, 256398.510400000959635 ], [ 364664.470399998128414, 256398.64919999986887 ], [ 364663.844400003552437, 256426.740100000053644 ], [ 364664.632299996912479, 256426.709100000560284 ], [ 364670.278300002217293, 256426.544199999421835 ], [ 364676.730599999427795, 256426.385999999940395 ], [ 364679.514499999582767, 256426.317699998617172 ], [ 364679.110799998044968, 256398.54109999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-46", "ACRE": "0.10", "LONGITUDE": -64.87424028, "LATITUDE": 18.33667456, "OBJECTID_1": 23075, "PARCEL_NO_": "105703051900", "Tax_Legal_": "ANNAS RETREAT 173-208 NEW QTR", "Name": "WARNER, WINSTON & MILLICENT", "Address": "7820 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 154400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.011163698600001, "SHAPE_Area": 395.95477056300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364804.429700002074242, 256425.796700000762939 ], [ 364803.560199998319149, 256407.703400000929832 ], [ 364802.770599998533726, 256397.442299999296665 ], [ 364789.613200001418591, 256397.506700001657009 ], [ 364790.424199998378754, 256426.894299998879433 ], [ 364800.913500003516674, 256426.135800000280142 ], [ 364804.429700002074242, 256425.796700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031500", "MAP": "A9-150-T70", "PARCEL_NAM": "173-309", "ACRE": "0.12", "LONGITUDE": -64.872444, "LATITUDE": 18.33669171, "OBJECTID_1": 23569, "PARCEL_NO_": "105704031500", "Tax_Legal_": "ANNAS RETREAT 173-309 NEW QTR.", "Name": "SHIRLEY STAPLETON (LIFE ESTATE)", "Address": "173-309 Esatate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 102900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.692556631299993, "SHAPE_Area": 470.2852741 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364996.83389999717474, 256426.8462999984622 ], [ 364994.887100003659725, 256401.889299999922514 ], [ 364984.155000001192093, 256403.148699998855591 ], [ 364976.082900002598763, 256404.138099998235703 ], [ 364979.090499997138977, 256429.704999998211861 ], [ 364987.970799997448921, 256428.511100001633167 ], [ 364996.83389999717474, 256426.8462999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703025700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-188", "ACRE": ".119", "LONGITUDE": -64.88175797, "LATITUDE": 18.33665534, "OBJECTID_1": 22959, "PARCEL_NO_": "105703025700", "Tax_Legal_": "ANNAS RETREAT 148-188 NEW QTR", "Name": "SHARON, GRACE", "Address": "7105 Estate Tutu", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 123400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.526858993000005, "SHAPE_Area": 524.408485638 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364014.196999996900558, 256390.988200001418591 ], [ 363996.492299996316433, 256386.832499999552965 ], [ 363990.60360000282526, 256415.493000000715256 ], [ 364007.500200003385544, 256419.853199999779463 ], [ 364014.196999996900558, 256390.988200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703054200", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-44", "ACRE": "0.10", "LONGITUDE": -64.87450103, "LATITUDE": 18.33667258, "OBJECTID_1": 23098, "PARCEL_NO_": "105703054200", "Tax_Legal_": "ANNAS RETREAT 173-44 NEW QTR", "Name": "DECASTRO (LIFE ESTATE), CAROL", "Address": "PO Box 7572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12300, "Improved_V": 89300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.889721250199997, "SHAPE_Area": 383.66179328499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364764.0675999969244, 256397.125500001013279 ], [ 364762.385799996554852, 256397.111699998378754 ], [ 364762.560900002717972, 256425.305500000715256 ], [ 364765.439300000667572, 256425.423300001770258 ], [ 364774.306999996304512, 256425.706900000572205 ], [ 364776.72410000115633, 256425.937800001353025 ], [ 364775.35419999808073, 256397.429000001400709 ], [ 364764.0675999969244, 256397.125500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703054500", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-41", "ACRE": "0.10", "LONGITUDE": -64.87489428000001, "LATITUDE": 18.33667568, "OBJECTID_1": 23101, "PARCEL_NO_": "105703054500", "Tax_Legal_": "ANNAS RETREAT 173-41 NEW QTR", "Name": "GAILLARD, BERNADETTE", "Address": "PO Box 9243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 82000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.830555296900002, "SHAPE_Area": 351.48936011799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364734.329499997198582, 256424.9527000002563 ], [ 364734.250100001692772, 256398.2652000002563 ], [ 364732.608900003135204, 256398.34569999948144 ], [ 364721.238799996674061, 256398.0472999997437 ], [ 364721.006399996578693, 256424.848499998450279 ], [ 364725.125500001013279, 256424.882199998944998 ], [ 364733.9949000030756, 256424.954799998551607 ], [ 364734.329499997198582, 256424.9527000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703054300", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-43", "ACRE": "0.10", "LONGITUDE": -64.87463251, "LATITUDE": 18.33666888, "OBJECTID_1": 23099, "PARCEL_NO_": "105703054300", "Tax_Legal_": "ANNAS RETREAT 173-43 NEW QTR", "Name": "MICHAEL, WENFORD & MARILYN", "Address": "146-90 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 91200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.052243035900005, "SHAPE_Area": 397.01695546600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364762.385799996554852, 256397.111699998378754 ], [ 364758.423500001430511, 256397.079300001263618 ], [ 364747.871500000357628, 256397.596999999135733 ], [ 364748.510300002992153, 256424.862500000745058 ], [ 364758.990599997341633, 256425.159400001168251 ], [ 364762.560900002717972, 256425.305500000715256 ], [ 364762.385799996554852, 256397.111699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704032000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-47", "ACRE": "0.10", "LONGITUDE": -64.87410951, "LATITUDE": 18.33666351, "OBJECTID_1": 23574, "PARCEL_NO_": "105704032000", "Tax_Legal_": "ANNAS RETREAT 173-47 NEW QTR", "Name": "BURLEY, GLORIANA A", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14000, "Improved_V": 147700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.243999220999996, "SHAPE_Area": 392.80745255400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364818.087700001895428, 256424.381299998611212 ], [ 364817.320900000631809, 256396.847899999469519 ], [ 364814.870700001716614, 256396.907999999821186 ], [ 364802.770599998533726, 256397.442299999296665 ], [ 364803.560199998319149, 256407.703400000929832 ], [ 364804.429700002074242, 256425.796700000762939 ], [ 364804.948600001633167, 256425.746599998325109 ], [ 364806.563000001013279, 256425.548700001090765 ], [ 364816.247800000011921, 256424.572500001639128 ], [ 364818.087700001895428, 256424.381299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703054400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-42", "ACRE": "0.10", "LONGITUDE": -64.87476592, "LATITUDE": 18.33667373, "OBJECTID_1": 23100, "PARCEL_NO_": "105703054400", "Tax_Legal_": "ANNAS RETREAT 173-42 NEW QTR", "Name": "JOSEPH, GLENORA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11300, "Improved_V": 183200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.779466624299999, "SHAPE_Area": 375.13901466700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364748.510300002992153, 256424.862500000745058 ], [ 364747.871500000357628, 256397.596999999135733 ], [ 364746.593199998140335, 256397.659699998795986 ], [ 364734.250100001692772, 256398.2652000002563 ], [ 364734.329499997198582, 256424.9527000002563 ], [ 364747.326099999248981, 256424.870000001043081 ], [ 364748.510300002992153, 256424.862500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604031100", "MAP": "D9-1878-T81", "PARCEL_NAM": "5B", "ACRE": "0.87", "LONGITUDE": -64.8885801, "LATITUDE": 18.33638413, "OBJECTID_1": 21781, "PARCEL_NO_": "105604031100", "Tax_Legal_": "5B ANNAS RETREAT NEW QTR", "Name": "CYRIL V. FRANCOIS ASSOC.", "Address": "PO Box 6050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 223800, "Improved_V": 405000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.37174886899999, "SHAPE_Area": 4593.5171159199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363287.521799996495247, 256312.424499999731779 ], [ 363283.476899996399879, 256308.39809999987483 ], [ 363272.106499999761581, 256323.486299999058247 ], [ 363244.908399999141693, 256392.502399999648333 ], [ 363262.48369999974966, 256411.855700001120567 ], [ 363273.66950000077486, 256423.979600001126528 ], [ 363278.466099999845028, 256428.874000001698732 ], [ 363288.294600002467632, 256411.011500000953674 ], [ 363299.026699997484684, 256381.75730000063777 ], [ 363313.741700001060963, 256358.235300000756979 ], [ 363319.54280000180006, 256353.076299998909235 ], [ 363322.679399996995926, 256350.286899998784065 ], [ 363319.365299999713898, 256345.478000000119209 ], [ 363315.51070000231266, 256339.88459999859333 ], [ 363287.521799996495247, 256312.424499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604026500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-206", "ACRE": ".134", "LONGITUDE": -64.88345622, "LATITUDE": 18.33663901, "OBJECTID_1": 21740, "PARCEL_NO_": "105604026500", "Tax_Legal_": "148-206 ANNA'S RETREAT No.1 NEW QTR.", "Name": "RITA E DAWSON LIVING TRUST", "Address": "4907 Estate Tutu E-7", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 203700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.969518377, "SHAPE_Area": 567.55642915299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363839.965199999511242, 256397.583700001239777 ], [ 363832.769599996507168, 256390.347600001841784 ], [ 363827.987400002777576, 256383.764600001275539 ], [ 363804.464100003242493, 256400.037399999797344 ], [ 363812.45889999717474, 256408.124400001019239 ], [ 363821.258199997246265, 256416.429000001400709 ], [ 363839.965199999511242, 256397.583700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704032200", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-48", "ACRE": "0.10", "LONGITUDE": -64.87398072000001, "LATITUDE": 18.33665304, "OBJECTID_1": 23575, "PARCEL_NO_": "105704032200", "Tax_Legal_": "ANNAS RETREAT 173-48 NEW QTR", "Name": "SCHNEIDER, LECIA", "Address": "7756 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11300, "Improved_V": 90700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.646146084700007, "SHAPE_Area": 357.87330047900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364830.367200002074242, 256423.197599999606609 ], [ 364831.517399996519089, 256396.655200000852346 ], [ 364821.322999998927116, 256396.749699998646975 ], [ 364817.320900000631809, 256396.847899999469519 ], [ 364818.087700001895428, 256424.381299998611212 ], [ 364821.897399999201298, 256423.985500000417233 ], [ 364825.932499997317791, 256423.5962999984622 ], [ 364830.367200002074242, 256423.197599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703080500", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-97", "ACRE": "0.24", "LONGITUDE": -64.87798656, "LATITUDE": 18.33658953, "OBJECTID_1": 23265, "PARCEL_NO_": "105703080500", "Tax_Legal_": "173C-97 ANNAS RETREAT No.1 NEW QTR.", "Name": "PHAROAH, PLACID & ISIDORA", "Address": "293 Woodgreen Ln", "City": "Winter Springs", "State": "Florida", "Zip": 32708, "Country": "United States", "Land_Value": 78400, "Improved_V": 140500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.439064065, "SHAPE_Area": 1187.19392432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364426.869000002741814, 256413.153000000864267 ], [ 364405.389899998903275, 256378.780099999159575 ], [ 364374.688900001347065, 256385.706000000238419 ], [ 364396.976099997758865, 256419.874400001019239 ], [ 364398.592299997806549, 256419.465500000864267 ], [ 364405.055399999022484, 256418.040699999779463 ], [ 364426.869000002741814, 256413.153000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031600", "MAP": "D9-3674-T86", "PARCEL_NAM": "173-310", "ACRE": ".12", "LONGITUDE": -64.8722728, "LATITUDE": 18.3366674, "OBJECTID_1": 23570, "PARCEL_NO_": "105704031600", "Tax_Legal_": "ANNAS RETREAT 173-310 NEW QTR.", "Name": "STEELE, KENNETH", "Address": "7620 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 81000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.240377602400002, "SHAPE_Area": 443.31261234599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365014.984499998390675, 256423.463100001215935 ], [ 365012.749200001358986, 256399.807199999690056 ], [ 365004.334399998188019, 256400.780699998140335 ], [ 364994.887100003659725, 256401.889299999922514 ], [ 364996.83389999717474, 256426.8462999984622 ], [ 365007.354599997401237, 256424.870099999010563 ], [ 365014.984499998390675, 256423.463100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704013100", "MAP": null, "PARCEL_NAM": "57B-18", "ACRE": null, "LONGITUDE": -64.87161397, "LATITUDE": 18.33663559, "OBJECTID_1": 23476, "PARCEL_NO_": "105704013100", "Tax_Legal_": "SMITH BAY 57B-18 EASTEND QTR.", "Name": "ADAMS, HERBERT & GLORIA INT", "Address": "70 Misty Marsh Dr", "City": "Savannah", "State": "Georgia", "Zip": 31419, "Country": "United States", "Land_Value": 46800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.187838699, "SHAPE_Area": 1329.6098055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365102.797899998724461, 256399.466600000858307 ], [ 365047.266699999570847, 256395.653599999845028 ], [ 365047.551700003445148, 256398.279599998146296 ], [ 365048.23759999871254, 256403.766600001603365 ], [ 365049.999799996614456, 256421.397599998861551 ], [ 365096.857100002467632, 256425.391499999910593 ], [ 365102.713500000536442, 256400.5304000005126 ], [ 365102.797899998724461, 256399.466600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704032400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-49", "ACRE": "0.10", "LONGITUDE": -64.87385415, "LATITUDE": 18.33665086, "OBJECTID_1": 23577, "PARCEL_NO_": "105704032400", "Tax_Legal_": "ANNAS RETREAT 173-49 NEW QTR", "Name": "HUTCHINS, ABIGAIL", "Address": "7609 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12300, "Improved_V": 83600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.116404512399995, "SHAPE_Area": 346.852546389 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364845.5033999979496, 256398.003100000321865 ], [ 364833.41950000077486, 256396.637600000947714 ], [ 364831.517399996519089, 256396.655200000852346 ], [ 364830.367200002074242, 256423.197599999606609 ], [ 364832.388400003314018, 256423.015900000929832 ], [ 364843.6858000010252, 256422.05290000140667 ], [ 364845.5033999979496, 256398.003100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703083400", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-47", "ACRE": "0.24", "LONGITUDE": -64.87899179, "LATITUDE": 18.33652297, "OBJECTID_1": 23294, "PARCEL_NO_": "105703083400", "Tax_Legal_": "ANNAS RETREAT 173C-47 NEW QTR.", "Name": "HENRY, JOSEPH & JANET", "Address": "P.O. BOX 4516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 218900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.45635457, "SHAPE_Area": 1083.03106817 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364277.240099996328354, 256371.398400001227856 ], [ 364277.954700000584126, 256382.170000001788139 ], [ 364281.851400002837181, 256398.033900000154972 ], [ 364290.600400000810623, 256412.248799998313189 ], [ 364296.194200001657009, 256418.205200001597404 ], [ 364304.336499996483326, 256408.98369999974966 ], [ 364308.443599998950958, 256400.151399999856949 ], [ 364310.968599997460842, 256387.717599999159575 ], [ 364310.268399998545647, 256375.25730000063777 ], [ 364277.240099996328354, 256371.398400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703025800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-187", "ACRE": ".119", "LONGITUDE": -64.88191475000001, "LATITUDE": 18.33662182, "OBJECTID_1": 22960, "PARCEL_NO_": "105703025800", "Tax_Legal_": "ANNAS RETREAT 148-187 NEW QTR", "Name": "ELSA D OBRYAN REVOCABLE LIVING TRUST", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 60400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.217714321800003, "SHAPE_Area": 467.72933261899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363996.492299996316433, 256386.832499999552965 ], [ 363981.201200000941753, 256383.329799998551607 ], [ 363974.513300001621246, 256411.139400001615286 ], [ 363987.385499998927116, 256414.622299998998642 ], [ 363990.60360000282526, 256415.493000000715256 ], [ 363996.492299996316433, 256386.832499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-50", "ACRE": null, "LONGITUDE": -64.87370309000001, "LATITUDE": 18.33664632, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.897272407499997, "SHAPE_Area": 405.68922100499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364867.255900003015995, 256400.292100001126528 ], [ 364845.5033999979496, 256398.003100000321865 ], [ 364843.6858000010252, 256422.05290000140667 ], [ 364858.211999997496605, 256420.694099999964237 ], [ 364867.255900003015995, 256400.292100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703074200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87680805, "LATITUDE": 18.33656612, "OBJECTID_1": 23256, "PARCEL_NO_": "105703074200", "Tax_Legal_": "ANNAS RETREAT 173C-108 NEW QTR.", "Name": "JOHN-LEWIS, FELIX & VERONICA", "Address": "7576 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 93500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.180325767, "SHAPE_Area": 988.71196233499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364536.01070000231266, 256380.060199998319149 ], [ 364535.470600001513958, 256378.518899999558926 ], [ 364507.475900001823902, 256383.768100000917912 ], [ 364508.247699998319149, 256387.085200000554323 ], [ 364515.411399997770786, 256417.871800001710653 ], [ 364531.693199999630451, 256413.588799998164177 ], [ 364544.070100001990795, 256410.456999998539686 ], [ 364536.01070000231266, 256380.060199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604027300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-202", "ACRE": ".123", "LONGITUDE": -64.88296309, "LATITUDE": 18.33659833, "OBJECTID_1": 21748, "PARCEL_NO_": "105604027300", "Tax_Legal_": "ANNAS RETREAT 148-202 NEW QTR", "Name": "DANIEL DONOVAN & END DONOVAN (LIFE ESTATE)", "Address": "PO Box 306354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 115000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.160434544599994, "SHAPE_Area": 570.87606080600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363887.647299997508526, 256385.097300000488758 ], [ 363876.416500002145767, 256378.250300001353025 ], [ 363858.474399998784065, 256401.957100000232458 ], [ 363864.079099997878075, 256406.646999999880791 ], [ 363875.308100000023842, 256413.704999998211861 ], [ 363890.858199998736382, 256386.812300000339746 ], [ 363887.647299997508526, 256385.097300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703024300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-137", "ACRE": ".137", "LONGITUDE": -64.88097802, "LATITUDE": 18.33659962, "OBJECTID_1": 22945, "PARCEL_NO_": "105703024300", "Tax_Legal_": "148-137 ANNAS RETREAT NEW QUARTER", "Name": "WALTERS, RAYMOND R. & MONICA", "Address": "PO Box 9582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 155500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.311037603599999, "SHAPE_Area": 514.45219302800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364086.862300001084805, 256380.183800000697374 ], [ 364068.918399997055531, 256404.101599998772144 ], [ 364075.33110000193119, 256408.587099999189377 ], [ 364081.727700002491474, 256414.972199998795986 ], [ 364100.459899999201298, 256393.171799998730421 ], [ 364086.862300001084805, 256380.183800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87017154, "LATITUDE": 18.33658063, "OBJECTID_1": 23480, "PARCEL_NO_": "105704013500", "Tax_Legal_": "SMITH BAY 57B-37 EAST END QTR", "Name": "HAZEL, GLADSTONE & SONIA", "Address": "PO Box 12394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.13711744899999, "SHAPE_Area": 2222.6442378800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365270.433600001037121, 256412.905299998819828 ], [ 365275.769000001251698, 256388.150199998170137 ], [ 365265.330899998545647, 256389.152899999171495 ], [ 365256.819899998605251, 256389.970499999821186 ], [ 365239.061200000345707, 256392.147199999541044 ], [ 365211.617799997329712, 256395.300000000745058 ], [ 365178.524800002574921, 256399.03999999910593 ], [ 365183.161300003528595, 256422.720400001853704 ], [ 365253.385999999940395, 256414.429200001060963 ], [ 365259.905799999833107, 256413.846400000154972 ], [ 365270.433600001037121, 256412.905299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703025900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-186", "ACRE": ".119", "LONGITUDE": -64.88206308, "LATITUDE": 18.33658566, "OBJECTID_1": 22961, "PARCEL_NO_": "105703025900", "Tax_Legal_": "ANNAS RETREAT 148-186 NEW QTR", "Name": "MARRISHOW, C. N. B. , BUCHANAN, C & R", "Address": "7103 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 97200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.130602040599996, "SHAPE_Area": 458.453916107 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363981.201200000941753, 256383.329799998551607 ], [ 363965.105499997735023, 256379.609499998390675 ], [ 363959.225699998438358, 256407.214600000530481 ], [ 363971.295299999415874, 256410.268699999898672 ], [ 363974.513300001621246, 256411.139400001615286 ], [ 363981.201200000941753, 256383.329799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703026000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-185", "ACRE": ".119", "LONGITUDE": -64.88221789000001, "LATITUDE": 18.33655262, "OBJECTID_1": 22962, "PARCEL_NO_": "105703026000", "Tax_Legal_": "ANNAS RETREAT 148-185 NEW QTR", "Name": "EMMA TRUDE SMITH REVOCABLE FAMILY TRUST", "Address": "PO Box 502763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16400, "Improved_V": 150700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.995741715600005, "SHAPE_Area": 489.09112139799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363965.105499997735023, 256379.609499998390675 ], [ 363948.205300003290176, 256375.671500001102686 ], [ 363942.327299997210503, 256403.065499998629093 ], [ 363953.592299997806549, 256405.901999998837709 ], [ 363959.225699998438358, 256407.214600000530481 ], [ 363965.105499997735023, 256379.609499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033200", "MAP": "A9-150-T70", "PARCEL_NAM": "173-315", "ACRE": "0.16", "LONGITUDE": -64.87319835, "LATITUDE": 18.33652379, "OBJECTID_1": 23583, "PARCEL_NO_": "105704033200", "Tax_Legal_": "173-315 ANNAS RETREAT NEW QUARTER", "Name": "TODMAN, ESTON & GLADYS", "Address": "7702 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23800, "Improved_V": 148400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.00941887899999, "SHAPE_Area": 664.48731762199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364920.449100002646446, 256403.471599999815226 ], [ 364917.454000003635883, 256376.427200000733137 ], [ 364906.966600000858307, 256376.974599998444319 ], [ 364906.10809999704361, 256383.089299999177456 ], [ 364889.791299998760223, 256405.331700000911951 ], [ 364893.76349999755621, 256412.330299999564886 ], [ 364898.588799998164177, 256413.84739999845624 ], [ 364901.822999998927116, 256412.818399999290705 ], [ 364904.261699996888638, 256410.51630000025034 ], [ 364911.550899997353554, 256406.776299998164177 ], [ 364920.449100002646446, 256403.471599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703089800", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-81,96", "ACRE": "0.24", "LONGITUDE": -64.87774287000001, "LATITUDE": 18.33652231, "OBJECTID_1": 23335, "PARCEL_NO_": "105703089800", "Tax_Legal_": "ANNAS RETREAT 173C-81,96 NEW QUARTER", "Name": "CARIBBEAN R. & INV CO. #134", "Address": "6501 Red Hook Plz Ste 201 PMB 473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.16680101599999, "SHAPE_Area": 889.25912853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364442.640600003302097, 256399.458099998533726 ], [ 364430.70889999717474, 256372.0168999992311 ], [ 364405.389899998903275, 256378.780099999159575 ], [ 364426.869000002741814, 256413.153000000864267 ], [ 364444.676899999380112, 256408.263900000602007 ], [ 364443.518200002610683, 256403.253299999982119 ], [ 364442.640600003302097, 256399.458099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703026100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-184", "ACRE": ".119", "LONGITUDE": -64.88237485000001, "LATITUDE": 18.33651777, "OBJECTID_1": 22963, "PARCEL_NO_": "105703026100", "Tax_Legal_": "ANNAS RETREAT 148-184 1 NEW QTR", "Name": "BURTON, JONES JOHN and JOAN LETTSOME", "Address": "PO BOX 884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16400, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.334307766400002, "SHAPE_Area": 466.36850390900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363948.205300003290176, 256375.671500001102686 ], [ 363932.91950000077486, 256371.535599999129772 ], [ 363925.432499997317791, 256398.494300000369549 ], [ 363936.695699997246265, 256401.541799999773502 ], [ 363942.327299997210503, 256403.065499998629093 ], [ 363948.205300003290176, 256375.671500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703024400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-138", "ACRE": ".137", "LONGITUDE": -64.88111154000001, "LATITUDE": 18.33647985, "OBJECTID_1": 22946, "PARCEL_NO_": "105703024400", "Tax_Legal_": "148-138 ANNAS RETREAT No.1 NEW QTR", "Name": "ISAAC, ANTHONY DOUGLAS & OTHERS", "Address": "PO Box 9023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 159700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.20216007800001, "SHAPE_Area": 650.27771687100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364071.693400003015995, 256362.327799998223782 ], [ 364054.485699996352196, 256394.484299998730421 ], [ 364062.511100001633167, 256398.982999999076128 ], [ 364068.918399997055531, 256404.101599998772144 ], [ 364086.862300001084805, 256380.183800000697374 ], [ 364071.693400003015995, 256362.327799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604027200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-203", "ACRE": ".123", "LONGITUDE": -64.88310377000001, "LATITUDE": 18.3365027, "OBJECTID_1": 21747, "PARCEL_NO_": "105604027200", "Tax_Legal_": "148-203 ANNAS RETREAT NEW QTR", "Name": "HOPKINS, CAROL T. & PETERSON, DALE", "Address": "PO Box 38", "City": "ROAD TOWN", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 17800, "Improved_V": 107900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.654570237599998, "SHAPE_Area": 514.36677982699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363870.001999996602535, 256373.975999999791384 ], [ 363862.784699998795986, 256369.272799998521805 ], [ 363844.074100002646446, 256388.540300000458956 ], [ 363850.465300001204014, 256395.558699999004602 ], [ 363858.474399998784065, 256401.957100000232458 ], [ 363876.416500002145767, 256378.250300001353025 ], [ 363870.001999996602535, 256373.975999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604026400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-205", "ACRE": ".162", "LONGITUDE": -64.8835765, "LATITUDE": 18.33650445, "OBJECTID_1": 21739, "PARCEL_NO_": "105604026400", "Tax_Legal_": "ANNAS RETREAT 148-205 NEW QTR", "Name": "DONOVAN, CARL E & IRENE A", "Address": "6020 Bur Trl", "City": "Raleigh", "State": "North Carolina", "Zip": 27616, "Country": "United States", "Land_Value": 20100, "Improved_V": 116900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.916617309200007, "SHAPE_Area": 539.98390328200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363804.464100003242493, 256400.037399999797344 ], [ 363827.987400002777576, 256383.764600001275539 ], [ 363816.821299999952316, 256369.318799998611212 ], [ 363791.676399998366833, 256386.633799999952316 ], [ 363804.464100003242493, 256400.037399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703026200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-183", "ACRE": ".129", "LONGITUDE": -64.8825385, "LATITUDE": 18.33647795, "OBJECTID_1": 22964, "PARCEL_NO_": "105703026200", "Tax_Legal_": "ANNAS RETREAT 148-183 NEW QTR", "Name": "CANTON, DELMINA & ANNETTE P. CANTON-BERTRAND", "Address": "7100 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 102000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.423447679600002, "SHAPE_Area": 534.36568212700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363932.91950000077486, 256371.535599999129772 ], [ 363916.834600001573563, 256366.548799999058247 ], [ 363905.32150000333786, 256392.841299999505281 ], [ 363906.928700000047684, 256393.487700000405312 ], [ 363919.800899997353554, 256396.970600001513958 ], [ 363925.432499997317791, 256398.494300000369549 ], [ 363932.91950000077486, 256371.535599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87631952, "LATITUDE": 18.33645709, "OBJECTID_1": 23322, "PARCEL_NO_": "105703086200", "Tax_Legal_": "ANNAS RETREAT 173C-33 NEW QTR.", "Name": "GARVEY, CALVIN", "Address": "P.O. BOX 4243", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.032435783099999, "SHAPE_Area": 565.07731336899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364564.29280000180006, 256373.114500001072884 ], [ 364572.9324000030756, 256403.58500000089407 ], [ 364589.871799997985363, 256399.499499998986721 ], [ 364582.069399997591972, 256368.826999999582767 ], [ 364564.29280000180006, 256373.114500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604036400", "MAP": "C3-120-T78", "PARCEL_NAM": "148-324A", "ACRE": "2.20", "LONGITUDE": -64.88481233, "LATITUDE": 18.33571611, "OBJECTID_1": 21826, "PARCEL_NO_": "105604036400", "Tax_Legal_": "148-324A ANNAS RETREAT NEW QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 233000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 482.727799361, "SHAPE_Area": 9977.5567040400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363696.44879999756813, 256395.564699999988079 ], [ 363741.50450000166893, 256312.762600000947714 ], [ 363630.473600000143051, 256188.997400000691414 ], [ 363635.319399997591972, 256282.762600000947714 ], [ 363696.44879999756813, 256395.564699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033100", "MAP": "C9-275-T82", "PARCEL_NAM": "173-316", "ACRE": "0.18", "LONGITUDE": -64.87334225, "LATITUDE": 18.33643052, "OBJECTID_1": 23582, "PARCEL_NO_": "105704033100", "Tax_Legal_": "ANNAS RETREAT 173-316 NEW QTR", "Name": "DECASTRO, ENA E", "Address": "PO Box 600207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 63600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.285490014, "SHAPE_Area": 597.00472529499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364906.966600000858307, 256376.974599998444319 ], [ 364890.917599998414516, 256367.766199998557568 ], [ 364876.179200001060963, 256394.032299999147654 ], [ 364885.001900002360344, 256399.5929000005126 ], [ 364889.791299998760223, 256405.331700000911951 ], [ 364906.10809999704361, 256383.089299999177456 ], [ 364906.966600000858307, 256376.974599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703080700", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-95", "ACRE": "0.25", "LONGITUDE": -64.87749118000001, "LATITUDE": 18.33641983, "OBJECTID_1": 23267, "PARCEL_NO_": "105703080700", "Tax_Legal_": "ANNAS RETREAT 173C-95 NEW QTR.", "Name": "ROGERS, BERNICE", "Address": "7000 Bovoni Project", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 65100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.52700293500001, "SHAPE_Area": 1043.4389475099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364478.092000000178814, 256389.277800001204014 ], [ 364460.372000001370907, 256361.287099998444319 ], [ 364443.378300003707409, 256368.325199998915195 ], [ 364435.293600000441074, 256370.792199999094009 ], [ 364430.70889999717474, 256372.0168999992311 ], [ 364442.640600003302097, 256399.458099998533726 ], [ 364450.606100000441074, 256397.170699998736382 ], [ 364478.092000000178814, 256389.277800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010200", "MAP": "G9-1773-T71", "PARCEL_NAM": "Portion of 5", "ACRE": null, "LONGITUDE": -64.89680648, "LATITUDE": 18.33624368, "OBJECTID_1": 21500, "PARCEL_NO_": "105603010200", "Tax_Legal_": "5 ESTATE CHARLOTTE AMALIE NEW QUARTER", "Name": "BOUGH, JAMES A", "Address": "PO Box 6096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 147000, "Improved_V": 332200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.64342305299999, "SHAPE_Area": 3794.9406717699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362441.086800001561642, 256377.479699999094009 ], [ 362435.244099996984005, 256306.082299999892712 ], [ 362410.230400003492832, 256307.988499999046326 ], [ 362382.794200003147125, 256310.297100000083447 ], [ 362389.428900003433228, 256383.389699999243021 ], [ 362441.086800001561642, 256377.479699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033300", "MAP": "A9-150-T70", "PARCEL_NAM": "173-314", "ACRE": "0.13", "LONGITUDE": -64.87300267000001, "LATITUDE": 18.33645191, "OBJECTID_1": 23584, "PARCEL_NO_": "105704033300", "Tax_Legal_": "ANNAS RETREAT 173-314 NEW QTR", "Name": "KEITH HANSEN (LIFE ESTATE)", "Address": "7701 ESTATE ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 116200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.287098908700003, "SHAPE_Area": 470.79333759299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364938.225699998438358, 256399.184200000017881 ], [ 364936.011799998581409, 256375.101399999111891 ], [ 364931.976599998772144, 256375.490499999374151 ], [ 364917.454000003635883, 256376.427200000733137 ], [ 364920.449100002646446, 256403.471599999815226 ], [ 364938.225699998438358, 256399.184200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703072800", "MAP": "A9-150-T70", "PARCEL_NAM": "173-332", "ACRE": "0.17", "LONGITUDE": -64.8761449, "LATITUDE": 18.33641438, "OBJECTID_1": 23243, "PARCEL_NO_": "105703072800", "Tax_Legal_": "ANNAS RETREAT 173-332 NEW QTR", "Name": "TESTAMARK, JACQUELINE & CHARLE", "Address": "BOX 3756", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21300, "Improved_V": 136900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.992439315, "SHAPE_Area": 643.55390992499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364610.071000002324581, 256394.809599999338388 ], [ 364600.664899997413158, 256363.068599998950958 ], [ 364586.919900000095367, 256367.38910000026226 ], [ 364582.069399997591972, 256368.826999999582767 ], [ 364589.871799997985363, 256399.499499998986721 ], [ 364598.764600001275539, 256396.828000001609325 ], [ 364610.071000002324581, 256394.809599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703024500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-139", "ACRE": ".141", "LONGITUDE": -64.88126414, "LATITUDE": 18.33637864, "OBJECTID_1": 22947, "PARCEL_NO_": "105703024500", "Tax_Legal_": "ANNAS RETREAT 148-139 NEW QTR", "Name": "FAHIE, BERYL & EBENEZER", "Address": "7071 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 145600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.70338565, "SHAPE_Area": 793.76192941099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364066.949000000953674, 256351.312100000679493 ], [ 364045.887800000607967, 256362.538800001144409 ], [ 364037.61429999768734, 256387.168999999761581 ], [ 364054.485699996352196, 256394.484299998730421 ], [ 364071.693400003015995, 256362.327799998223782 ], [ 364066.949000000953674, 256351.312100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604028400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-182", "ACRE": ".134", "LONGITUDE": -64.88270334000001, "LATITUDE": 18.33642375, "OBJECTID_1": 21759, "PARCEL_NO_": "105604028400", "Tax_Legal_": "148-182 ANNAS RETREAT 1 NEW QTR", "Name": "NIBBS, BERYL B", "Address": "189-06 Nashville Blvd", "City": "Springfield Gardens", "State": "New York", "Zip": 11413, "Country": "United States", "Land_Value": 17800, "Improved_V": 98500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.540064336100002, "SHAPE_Area": 510.79281262000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363916.834600001573563, 256366.548799999058247 ], [ 363900.7550999969244, 256360.928800001740456 ], [ 363887.647299997508526, 256385.097300000488758 ], [ 363890.858199998736382, 256386.812300000339746 ], [ 363905.32150000333786, 256392.841299999505281 ], [ 363916.834600001573563, 256366.548799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85123036, "LATITUDE": 18.33590144, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.80416521299998, "SHAPE_Area": 1980.10786121 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367261.380300000309944, 256303.785399999469519 ], [ 367243.787100002169609, 256286.54280000180006 ], [ 367218.354400001466274, 256337.630399998277426 ], [ 367208.825000002980232, 256415.023699998855591 ], [ 367224.908100001513958, 256420.221599999815226 ], [ 367222.764300003647804, 256387.906800001859665 ], [ 367225.337899997830391, 256369.773800000548363 ], [ 367228.670999996364117, 256357.135400000959635 ], [ 367231.975400000810623, 256347.874400001019239 ], [ 367234.430299997329712, 256343.672600001096725 ], [ 367236.071699999272823, 256340.308499999344349 ], [ 367238.546400003135204, 256333.78489999845624 ], [ 367240.171599999070168, 256332.320500001311302 ], [ 367241.003100000321865, 256329.372000001370907 ], [ 367247.538099996745586, 256319.504099998623133 ], [ 367261.380300000309944, 256303.785399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033400", "MAP": "A9-150-T70", "PARCEL_NAM": "173-313", "ACRE": "0.12", "LONGITUDE": -64.87283292, "LATITUDE": 18.3364298, "OBJECTID_1": 23585, "PARCEL_NO_": "105704033400", "Tax_Legal_": "ANNAS RETREAT 173-313 NEW QTR", "Name": "GATON, JAMES & LORNA", "Address": "500 Davis St", "City": "Winter Springs", "State": "Florida", "Zip": 32708, "Country": "United States", "Land_Value": 17800, "Improved_V": 99800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.392556245099996, "SHAPE_Area": 423.135761882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364955.982600003480911, 256397.218600001186132 ], [ 364952.962300002574921, 256373.129200000315905 ], [ 364936.011799998581409, 256375.101399999111891 ], [ 364938.225699998438358, 256399.184200000017881 ], [ 364955.982600003480911, 256397.218600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704016000", "MAP": "D9-5848-T94", "PARCEL_NAM": "57B-19-2", "ACRE": ".06", "LONGITUDE": -64.87153379, "LATITUDE": 18.33647243, "OBJECTID_1": 23504, "PARCEL_NO_": "105704016000", "Tax_Legal_": "SMITH BAY 57B-19-2 EAST END", "Name": "GLENBERT M DAVID", "Address": "12156 Bottlebrush Pl", "City": "Charlotte", "State": "North Carolina", "Zip": 282771793, "Country": "United States", "Land_Value": 7800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.50445560599999, "SHAPE_Area": 538.91442260600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365047.266699999570847, 256395.653599999845028 ], [ 365102.797899998724461, 256399.466600000858307 ], [ 365103.616899996995926, 256389.138799998909235 ], [ 365103.800200000405312, 256385.986600000411272 ], [ 365100.625200003385544, 256383.60530000180006 ], [ 365096.973999999463558, 256382.652800001204014 ], [ 365051.975100003182888, 256393.149099998176098 ], [ 365047.927400000393391, 256395.015799999237061 ], [ 365047.266699999570847, 256395.653599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703080800", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-93", "ACRE": "0.25", "LONGITUDE": -64.87718816, "LATITUDE": 18.33631747, "OBJECTID_1": 23268, "PARCEL_NO_": "105703080800", "Tax_Legal_": "173C-93 ANNA'S RETREAT NEW QTR.", "Name": "WILLIAMS, JERELYN", "Address": "PO Box 502494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 33200, "Improved_V": 240900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.95321780899999, "SHAPE_Area": 1161.47683766 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364507.475900001823902, 256383.768100000917912 ], [ 364495.961199998855591, 256348.490600001066923 ], [ 364460.372000001370907, 256361.287099998444319 ], [ 364478.092000000178814, 256389.277800001204014 ], [ 364507.475900001823902, 256383.768100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604027100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-204", "ACRE": ".124", "LONGITUDE": -64.88322119, "LATITUDE": 18.33639869, "OBJECTID_1": 21746, "PARCEL_NO_": "105604027100", "Tax_Legal_": "ANNAS RETREAT 148-204 NEW QTR", "Name": "DELEMOS, JOYCE", "Address": "PO Box 502881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16400, "Improved_V": 127600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.628472336599998, "SHAPE_Area": 408.41246408400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363862.784699998795986, 256369.272799998521805 ], [ 363851.579099997878075, 256359.470800001174212 ], [ 363847.51690000295639, 256363.026200000196695 ], [ 363835.337700001895428, 256372.847899999469519 ], [ 363836.084700003266335, 256379.820099998265505 ], [ 363844.074100002646446, 256388.540300000458956 ], [ 363862.784699998795986, 256369.272799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703072900", "MAP": "A9-150-T70", "PARCEL_NAM": "173-331", "ACRE": "0.18", "LONGITUDE": -64.87596356, "LATITUDE": 18.33636389, "OBJECTID_1": 23244, "PARCEL_NO_": "105703072900", "Tax_Legal_": "ANNAS RETREAT 173-331 NEW QTR", "Name": "GEORGES, YVONNE A", "Address": "7084 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22600, "Improved_V": 107900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.28518585499999, "SHAPE_Area": 668.91400944300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364627.0287000015378, 256391.993099998682737 ], [ 364622.482100002467632, 256357.758699998259544 ], [ 364610.362300001084805, 256360.614900000393391 ], [ 364600.664899997413158, 256363.068599998950958 ], [ 364610.071000002324581, 256394.809599999338388 ], [ 364627.0287000015378, 256391.993099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033500", "MAP": "A9-150-T70", "PARCEL_NAM": "173-312", "ACRE": "0.12", "LONGITUDE": -64.87266528000001, "LATITUDE": 18.33640761, "OBJECTID_1": 23586, "PARCEL_NO_": "105704033500", "Tax_Legal_": "ANNAS RETREAT 173-312 NEW QTR", "Name": "WADE, ALPHONSO & BERYL", "Address": "PO Box 502213", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17800, "Improved_V": 99400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.282918609399999, "SHAPE_Area": 445.26415512699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364973.741300001740456, 256395.041900001466274 ], [ 364971.529100000858307, 256370.747999999672174 ], [ 364954.576800003647804, 256372.93129999935627 ], [ 364952.962300002574921, 256373.129200000315905 ], [ 364955.982600003480911, 256397.218600001186132 ], [ 364973.741300001740456, 256395.041900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704013600", "MAP": "G9-767-T64", "PARCEL_NAM": "57B-35", "ACRE": "0.44", "LONGITUDE": -64.87040174000001, "LATITUDE": 18.33635051, "OBJECTID_1": 23481, "PARCEL_NO_": "105704013600", "Tax_Legal_": "SMITH BAY 57B-36 EAST END QTR.", "Name": "WOODLEY, DOLORES", "Address": "521 Lafayette Ave", "City": "Rockville Centre", "State": "New York", "Zip": 11570, "Country": "United States", "Land_Value": 51500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.888959747, "SHAPE_Area": 1467.11097713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365225.274400003254414, 256393.731100000441074 ], [ 365220.044200003147125, 256352.728100001811981 ], [ 365207.083800002932549, 256359.588100001215935 ], [ 365197.364900000393391, 256364.574799999594688 ], [ 365186.846900001168251, 256368.71059999987483 ], [ 365184.402800001204014, 256371.645899999886751 ], [ 365178.65429999679327, 256383.842300001531839 ], [ 365177.815600000321865, 256387.635099999606609 ], [ 365178.524800002574921, 256399.03999999910593 ], [ 365211.617799997329712, 256395.300000000745058 ], [ 365225.274400003254414, 256393.731100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703087200", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-44", "ACRE": "0.24", "LONGITUDE": -64.87945099, "LATITUDE": 18.33635165, "OBJECTID_1": 23332, "PARCEL_NO_": "105703087200", "Tax_Legal_": "ANNAS RETREAT 173C-44 NEW QTR.", "Name": "HODGE, L. & RICHARDSON, A", "Address": "BOX 3651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.832404811, "SHAPE_Area": 1076.2200226099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364268.313100002706051, 256378.080299999564886 ], [ 364267.526600003242493, 256375.751899998635054 ], [ 364268.518100000917912, 256354.017299998551607 ], [ 364221.651299998164177, 256365.454999998211861 ], [ 364229.505900003015995, 256390.006099998950958 ], [ 364268.313100002706051, 256378.080299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033600", "MAP": "A9-150-T70", "PARCEL_NAM": "173-311", "ACRE": "0.12", "LONGITUDE": -64.8724955, "LATITUDE": 18.33638794, "OBJECTID_1": 23587, "PARCEL_NO_": "105704033600", "Tax_Legal_": "ANNAS RETREAT 173-311 NEW QTR", "Name": "WALTERS, CHARLES,JR.,CLEMENT,CLARENCE & CASWELL", "Address": "7698 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.519625813700003, "SHAPE_Area": 435.390563461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364991.498099997639656, 256393.076299998909235 ], [ 364989.285999998450279, 256368.782400000840425 ], [ 364977.178700000047684, 256370.160999998450279 ], [ 364971.529100000858307, 256370.747999999672174 ], [ 364973.741300001740456, 256395.041900001466274 ], [ 364991.498099997639656, 256393.076299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703024600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-140", "ACRE": ".158", "LONGITUDE": -64.88149503, "LATITUDE": 18.33636878, "OBJECTID_1": 22948, "PARCEL_NO_": "105703024600", "Tax_Legal_": "ANNAS RETREAT 148-140 NEW QTR", "Name": "BRYAN, ADINA, E. JR. , G. , B. , & R", "Address": "PO Box 26683", "City": "Indianapolis", "State": "Indiana", "Zip": 46226, "Country": "United States", "Land_Value": 23800, "Improved_V": 118500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.461140591000003, "SHAPE_Area": 611.80921469199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364022.549699999392033, 256357.070500001311302 ], [ 364020.116400003433228, 256358.73930000141263 ], [ 364016.700499996542931, 256381.087200000882149 ], [ 364018.302299998700619, 256382.366900000721216 ], [ 364037.61429999768734, 256387.168999999761581 ], [ 364045.887800000607967, 256362.538800001144409 ], [ 364022.549699999392033, 256357.070500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703073000", "MAP": "A9-150-T70", "PARCEL_NAM": "173-330", "ACRE": "0.17", "LONGITUDE": -64.87579471, "LATITUDE": 18.33633803, "OBJECTID_1": 23245, "PARCEL_NO_": "105703073000", "Tax_Legal_": "ANNAS RETREAT 173-330 NEW QTR", "Name": "GUMBS, J & SMITH, M", "Address": "7587 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 93000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.995877476, "SHAPE_Area": 572.40827624899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364642.362999998033047, 256390.429900001734495 ], [ 364639.441699996590614, 256354.731100000441074 ], [ 364635.402900002896786, 256355.542500000447035 ], [ 364622.482100002467632, 256357.758699998259544 ], [ 364627.0287000015378, 256391.993099998682737 ], [ 364642.362999998033047, 256390.429900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033000", "MAP": "A9-150-T70", "PARCEL_NAM": "173-317", "ACRE": "0.18", "LONGITUDE": -64.87350025000001, "LATITUDE": 18.33634543, "OBJECTID_1": 23581, "PARCEL_NO_": "105704033000", "Tax_Legal_": "173-317 ANNAS RETREAT No.1 NEW QTR", "Name": "SMITH-FRETT, EVE M", "Address": "7610 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 56800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.110895824, "SHAPE_Area": 579.80900392199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364881.288599997758865, 256362.199000000953674 ], [ 364870.833599999547005, 256358.947000000625849 ], [ 364861.694399997591972, 256390.536200001835823 ], [ 364871.359399996697903, 256391.881900001317263 ], [ 364876.179200001060963, 256394.032299999147654 ], [ 364890.917599998414516, 256367.766199998557568 ], [ 364881.288599997758865, 256362.199000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604028300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-181", "ACRE": ".127", "LONGITUDE": -64.88286351000001, "LATITUDE": 18.33635086, "OBJECTID_1": 21758, "PARCEL_NO_": "105604028300", "Tax_Legal_": "ANNAS RETREAT 148-181 NW QTR", "Name": "RIVIERE AND ADRIANA CASIMIR REVOC FAMILY TRUST", "Address": "7098 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 143700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.084640046600001, "SHAPE_Area": 518.96078732900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363900.7550999969244, 256360.928800001740456 ], [ 363895.933399997651577, 256358.989500001072884 ], [ 363885.51070000231266, 256351.938099998980761 ], [ 363870.001999996602535, 256373.975999999791384 ], [ 363876.416500002145767, 256378.250300001353025 ], [ 363887.647299997508526, 256385.097300000488758 ], [ 363900.7550999969244, 256360.928800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704013300", "MAP": "F9-1054-T62", "PARCEL_NAM": "57B-16", "ACRE": "0.71", "LONGITUDE": -64.87078066, "LATITUDE": 18.336221, "OBJECTID_1": 23478, "PARCEL_NO_": "105704013300", "Tax_Legal_": "SMITH BAY 57B 16 EAST END QTR", "Name": "JONES, DALTON R. & ALETHEA", "Address": "PO Box 1053", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 62900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.63076935399999, "SHAPE_Area": 1680.7132406400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365168.87610000371933, 256395.794599998742342 ], [ 365168.971400000154972, 256384.607400000095367 ], [ 365172.284699998795986, 256374.291000001132488 ], [ 365182.910599999129772, 256357.49040000140667 ], [ 365193.493400000035763, 256345.755800001323223 ], [ 365195.924900002777576, 256344.298099998384714 ], [ 365197.578900001943111, 256339.456399999558926 ], [ 365197.618500001728535, 256334.812699999660254 ], [ 365196.014799997210503, 256333.744100000709295 ], [ 365193.594099998474121, 256333.935400001704693 ], [ 365179.021099999547005, 256340.782200001180172 ], [ 365147.420299999415874, 256358.677600000053644 ], [ 365124.717699997127056, 256373.268399998545647 ], [ 365168.87610000371933, 256395.794599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704014400", "MAP": null, "PARCEL_NAM": "57B-40", "ACRE": null, "LONGITUDE": -64.8700303, "LATITUDE": 18.33616571, "OBJECTID_1": 23489, "PARCEL_NO_": "105704014400", "Tax_Legal_": "SMITH BAY 57B-40 EAST END QTR.", "Name": "JULIEN, N & J & MORAIN, S", "Address": "PO Box 16", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52000, "Improved_V": 167000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.65021023899999, "SHAPE_Area": 2224.2663387500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365255.796999998390675, 256320.723400000482798 ], [ 365253.378100000321865, 256320.703600000590086 ], [ 365247.717699997127056, 256322.557100001722574 ], [ 365238.790799997746944, 256329.239100001752377 ], [ 365234.725000001490116, 256333.216600000858307 ], [ 365232.261100001633167, 256338.473700001835823 ], [ 365228.98369999974966, 256344.568599998950958 ], [ 365224.914399996399879, 256348.968299999833107 ], [ 365220.044200003147125, 256352.728100001811981 ], [ 365225.274400003254414, 256393.731100000441074 ], [ 365239.061200000345707, 256392.147199999541044 ], [ 365256.819899998605251, 256389.970499999821186 ], [ 365261.410700000822544, 256324.357999999076128 ], [ 365255.796999998390675, 256320.723400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703073100", "MAP": "A9-150-T70", "PARCEL_NAM": "173-329", "ACRE": "0.17", "LONGITUDE": -64.87562476, "LATITUDE": 18.3363206, "OBJECTID_1": 23246, "PARCEL_NO_": "105703073100", "Tax_Legal_": "ANNAS RETREAT 173-329 NEW QTR", "Name": "BESS, NYDIA", "Address": "7588 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 93500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.31350478900001, "SHAPE_Area": 719.21017304400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364661.725299999117851, 256389.321800000965595 ], [ 364659.619199998676777, 256352.574299998581409 ], [ 364653.16160000115633, 256353.365800000727177 ], [ 364639.441699996590614, 256354.731100000441074 ], [ 364642.362999998033047, 256390.429900001734495 ], [ 364661.725299999117851, 256389.321800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87232388, "LATITUDE": 18.33636778, "OBJECTID_1": 23588, "PARCEL_NO_": "105704033700", "Tax_Legal_": "ANNAS RETREAT 173-321 NEW QTR", "Name": "SMITH, KAYREL L.", "Address": "PO Box 9252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 110700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.171525140400007, "SHAPE_Area": 455.81562558600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365010.063100002706051, 256390.906199999153614 ], [ 365007.850900001823902, 256366.612300001084805 ], [ 364989.285999998450279, 256368.782400000840425 ], [ 364991.498099997639656, 256393.076299998909235 ], [ 365010.063100002706051, 256390.906199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703053200", "MAP": "A9-150-T70", "PARCEL_NAM": "173-328", "ACRE": "0.16", "LONGITUDE": -64.8754437, "LATITUDE": 18.33630906, "OBJECTID_1": 23088, "PARCEL_NO_": "105703053200", "Tax_Legal_": "ANNAS RETREAT 173-328 NEW QTR", "Name": "GUMBS(LIFE ESTATE), BERNICE", "Address": "7591 Estate Tutu", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21900, "Improved_V": 102500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.499995211, "SHAPE_Area": 689.68140173200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364679.464199997484684, 256389.467000000178814 ], [ 364678.977899998426437, 256351.888300001621246 ], [ 364659.619199998676777, 256352.574299998581409 ], [ 364661.725299999117851, 256389.321800000965595 ], [ 364679.464199997484684, 256389.467000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703073300", "MAP": "A9-150-T70", "PARCEL_NAM": "173-327", "ACRE": "0.17", "LONGITUDE": -64.87526665, "LATITUDE": 18.33630506, "OBJECTID_1": 23247, "PARCEL_NO_": "105703073300", "Tax_Legal_": "ANNAS RETREAT 173-327 NEW QTR.", "Name": "TILLER, ANTORI", "Address": "PO Box 5532", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 105400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.872147297, "SHAPE_Area": 710.27600452900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364698.016599997878075, 256388.774399999529123 ], [ 364698.334799997508526, 256351.413499999791384 ], [ 364678.977899998426437, 256351.888300001621246 ], [ 364679.464199997484684, 256389.467000000178814 ], [ 364698.016599997878075, 256388.774399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704032900", "MAP": "A9-150-T70", "PARCEL_NAM": "173-318", "ACRE": "0.20", "LONGITUDE": -64.87367499, "LATITUDE": 18.33630897, "OBJECTID_1": 23580, "PARCEL_NO_": "105704032900", "Tax_Legal_": "ANNAS RETREAT 173-318 NEW QTR", "Name": "MACTRAVIOUS, ELLENORE", "Address": "7612 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22800, "Improved_V": 68500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.10669320300001, "SHAPE_Area": 653.25558206200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364870.833599999547005, 256358.947000000625849 ], [ 364862.790200002491474, 256356.559200000017881 ], [ 364849.100900001823902, 256354.336199998855591 ], [ 364845.580700002610683, 256388.926699999719858 ], [ 364861.694399997591972, 256390.536200001835823 ], [ 364870.833599999547005, 256358.947000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703073500", "MAP": "A9-150-T70", "PARCEL_NAM": "173-325", "ACRE": "0.17", "LONGITUDE": -64.87491382, "LATITUDE": 18.33630507, "OBJECTID_1": 23249, "PARCEL_NO_": "105703073500", "Tax_Legal_": "ANNAS RETREAT 173-325 NEW QTR", "Name": "LEONARD, VITALIA", "Address": "7596 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18200, "Improved_V": 145800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.483221472, "SHAPE_Area": 746.87154216600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364728.164800003170967, 256352.079799998551607 ], [ 364715.265600003302097, 256351.763099998235703 ], [ 364716.561700001358986, 256388.926199998706579 ], [ 364736.717799998819828, 256389.302299998700619 ], [ 364735.419799998402596, 256352.350299999117851 ], [ 364728.164800003170967, 256352.079799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703073600", "MAP": "A9-150-T70", "PARCEL_NAM": "173-324", "ACRE": "0.17", "LONGITUDE": -64.87473897, "LATITUDE": 18.33630215, "OBJECTID_1": 23250, "PARCEL_NO_": "105703073600", "Tax_Legal_": "ANNAS RETREAT 173-324 NEW QTR", "Name": "DONOVAN, VIOLA", "Address": "PO Box 10473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 103900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.147471045, "SHAPE_Area": 611.55511876599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364753.155100002884865, 256352.917599998414516 ], [ 364735.419799998402596, 256352.350299999117851 ], [ 364736.717799998819828, 256389.302299998700619 ], [ 364752.854800000786781, 256388.16780000180006 ], [ 364753.155100002884865, 256352.917599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703073400", "MAP": "A9-150-T70", "PARCEL_NAM": "173-326", "ACRE": "0.17", "LONGITUDE": -64.87509303, "LATITUDE": 18.33630581, "OBJECTID_1": 23248, "PARCEL_NO_": "105703073400", "Tax_Legal_": "ANNAS RETREAT 173-326 NEW QTR", "Name": "NAJOCKI BOYD & KIT-ALIA FREEMAN", "Address": "PO Box 502934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052934, "Country": "United States", "Land_Value": 20100, "Improved_V": 48500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.02838914, "SHAPE_Area": 661.16920918899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364715.265600003302097, 256351.763099998235703 ], [ 364701.560099996626377, 256351.439899999648333 ], [ 364698.334799997508526, 256351.413499999791384 ], [ 364698.016599997878075, 256388.774399999529123 ], [ 364716.561700001358986, 256388.926199998706579 ], [ 364715.265600003302097, 256351.763099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703080900", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-92", "ACRE": "0.23", "LONGITUDE": -64.87690579, "LATITUDE": 18.33625079, "OBJECTID_1": 23269, "PARCEL_NO_": "105703080900", "Tax_Legal_": "ANNAS RETREAT 173C-92 NEW QTR", "Name": "PINNEY, NORTON & GYNIS", "Address": "PO Box 10127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 132600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.189807495, "SHAPE_Area": 1079.78332204 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364535.470600001513958, 256378.518899999558926 ], [ 364521.840499997138977, 256339.625399999320507 ], [ 364514.556699998676777, 256342.732200000435114 ], [ 364495.961199998855591, 256348.490600001066923 ], [ 364507.475900001823902, 256383.768100000917912 ], [ 364535.470600001513958, 256378.518899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8721224, "LATITUDE": 18.33634708, "OBJECTID_1": 23589, "PARCEL_NO_": "105704033800", "Tax_Legal_": "ANNAS RETREAT 173-186 NEW QTR", "Name": "SERRANO, LINDA", "Address": "173-186 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.807402276999994, "SHAPE_Area": 585.76871366199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365028.030299998819828, 256364.24439999833703 ], [ 365007.850900001823902, 256366.612300001084805 ], [ 365010.063100002706051, 256390.906199999153614 ], [ 365030.242499999701977, 256388.538199998438358 ], [ 365033.478500001132488, 256387.298200000077486 ], [ 365035.109099999070168, 256385.200599998235703 ], [ 365035.161300003528595, 256379.079300001263618 ], [ 365033.588200002908707, 256374.4222999997437 ], [ 365030.406099997460842, 256369.330099999904633 ], [ 365028.030299998819828, 256364.24439999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703073700", "MAP": "A9-150-T70", "PARCEL_NAM": "173-322", "ACRE": "0.17", "LONGITUDE": -64.87456658000001, "LATITUDE": 18.33629961, "OBJECTID_1": 23251, "PARCEL_NO_": "105703073700", "Tax_Legal_": "ANNAS RETREAT 173-323 NEW QTR", "Name": "WILLIAMS, MERCEDES C", "Address": "5624 Monte Carlo Ln", "City": "MARGATE", "State": "Florida", "Zip": 33068, "Country": "United States", "Land_Value": 20100, "Improved_V": 80900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.247321462, "SHAPE_Area": 681.68119843500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364771.401799999177456, 256388.108500000089407 ], [ 364773.314699999988079, 256352.871500000357628 ], [ 364756.380300000309944, 256352.943999998271465 ], [ 364753.155100002884865, 256352.917599998414516 ], [ 364752.854800000786781, 256388.16780000180006 ], [ 364771.401799999177456, 256388.108500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703073800", "MAP": "A9-150-T70", "PARCEL_NAM": "173-322", "ACRE": "0.17", "LONGITUDE": -64.87438725, "LATITUDE": 18.33630307, "OBJECTID_1": 23252, "PARCEL_NO_": "105703073800", "Tax_Legal_": "ANNAS RETREAT 173-322 NEW QTR.", "Name": "FELIX, LOIS & GLEN B", "Address": "7603 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21200, "Improved_V": 49800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.056628819, "SHAPE_Area": 657.68275762099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364790.751500003039837, 256388.478000000119209 ], [ 364791.055399999022484, 256352.805599998682737 ], [ 364773.314699999988079, 256352.871500000357628 ], [ 364771.401799999177456, 256388.108500000089407 ], [ 364790.751500003039837, 256388.478000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704033700", "MAP": "A9-150-T70", "PARCEL_NAM": "173-321", "ACRE": "0.17", "LONGITUDE": -64.87421025, "LATITUDE": 18.3363004, "OBJECTID_1": 23588, "PARCEL_NO_": "105704033700", "Tax_Legal_": "ANNAS RETREAT 173-321 NEW QTR", "Name": "SMITH, KAYREL L.", "Address": "PO Box 9252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 110700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.631619151, "SHAPE_Area": 670.10759415300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364810.108400002121925, 256388.003100000321865 ], [ 364809.600599996745586, 256352.957400001585484 ], [ 364797.505900003015995, 256352.858399998396635 ], [ 364791.055399999022484, 256352.805599998682737 ], [ 364790.751500003039837, 256388.478000000119209 ], [ 364810.108400002121925, 256388.003100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704032800", "MAP": "A9-150-T70", "PARCEL_NAM": "173-319", "ACRE": "0.17", "LONGITUDE": -64.87386596, "LATITUDE": 18.33629261, "OBJECTID_1": 23579, "PARCEL_NO_": "105704032800", "Tax_Legal_": "ANNAS RETREAT 173-319 NEW QTR", "Name": "NIBBS, AUDREY I.", "Address": "7611 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19400, "Improved_V": 78200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.852693203, "SHAPE_Area": 735.12694366899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364841.849500000476837, 256353.643500000238419 ], [ 364825.726800002157688, 256353.089400000870228 ], [ 364826.241800002753735, 256387.290800001472235 ], [ 364834.304899998009205, 256387.356800001114607 ], [ 364845.580700002610683, 256388.926699999719858 ], [ 364849.100900001823902, 256354.336199998855591 ], [ 364844.268399998545647, 256353.66330000013113 ], [ 364841.849500000476837, 256353.643500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704032700", "MAP": "A9-150-T70", "PARCEL_NAM": "173-320", "ACRE": "0.17", "LONGITUDE": -64.8740444, "LATITUDE": 18.3362959, "OBJECTID_1": 23578, "PARCEL_NO_": "105704032700", "Tax_Legal_": "ANNAS RETREAT 173-320 NEW QTR", "Name": "ANDERSON, AUREA", "Address": "PO Box 7713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 112300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.530512741, "SHAPE_Area": 558.6193196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364825.726800002157688, 256353.089400000870228 ], [ 364809.600599996745586, 256352.957400001585484 ], [ 364810.108400002121925, 256388.003100000321865 ], [ 364826.241800002753735, 256387.290800001472235 ], [ 364825.726800002157688, 256353.089400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": null, "PARCEL_NAM": "11-H", "ACRE": null, "LONGITUDE": -64.85243853, "LATITUDE": 18.33554177, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 741.42436648099999, "SHAPE_Area": 33634.073613699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367183.894100002944469, 256407.220300000160933 ], [ 367193.031400002539158, 256375.842199999839067 ], [ 367202.215599998831749, 256338.975999999791384 ], [ 367203.867799997329712, 256334.345400001853704 ], [ 367205.498400002717972, 256332.247800000011921 ], [ 367207.159500002861023, 256326.561900001019239 ], [ 367213.703500002622604, 256315.638599999248981 ], [ 367218.010200001299381, 256283.376499999314547 ], [ 367218.942400000989437, 256268.607599999755621 ], [ 367219.123999997973442, 256247.288600001484156 ], [ 367216.744699999690056, 256242.625100001692772 ], [ 367211.937299996614456, 256238.99720000103116 ], [ 367128.080799996852875, 256238.310899998992682 ], [ 367104.773299999535084, 256229.254200000315905 ], [ 367083.089199997484684, 256218.944200001657009 ], [ 367069.443000003695488, 256211.655299998819828 ], [ 367059.839199997484684, 256203.133000001311302 ], [ 367004.646700002253056, 256245.322200000286102 ], [ 366975.684900000691414, 256332.055700000375509 ], [ 367031.751000002026558, 256376.633099999278784 ], [ 367058.183100000023842, 256397.53660000115633 ], [ 367072.012599997222424, 256383.295400001108646 ], [ 367079.299999997019768, 256379.766499999910593 ], [ 367083.340599998831749, 256378.744100000709295 ], [ 367093.826200000941753, 256378.407699998468161 ], [ 367183.894100002944469, 256407.220300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703083300", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-101", "ACRE": "0.26", "LONGITUDE": -64.87864523, "LATITUDE": 18.3362779, "OBJECTID_1": 23293, "PARCEL_NO_": "105703083300", "Tax_Legal_": "ANNAS RETREAT 173C-101 NEW QTR.", "Name": "LABORDE, MIKAILIN & SONANTE", "Address": "PO Box 9309", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012309, "Country": "United States", "Land_Value": 34500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.880932078, "SHAPE_Area": 908.99168347900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364343.589699998497963, 256344.710400000214577 ], [ 364320.183300003409386, 256347.263000000268221 ], [ 364317.678000003099442, 256357.375 ], [ 364319.141400001943111, 256374.907699998468161 ], [ 364321.519000001251698, 256379.782400000840425 ], [ 364323.918099999427795, 256382.124000001698732 ], [ 364327.132600001990795, 256383.416900001466274 ], [ 364335.195699997246265, 256383.482900001108646 ], [ 364344.081299997866154, 256381.655799999833107 ], [ 364343.589699998497963, 256344.710400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703024700", "MAP": null, "PARCEL_NAM": "148-145", "ACRE": null, "LONGITUDE": -64.88178252, "LATITUDE": 18.33629156, "OBJECTID_1": 22949, "PARCEL_NO_": "105703024700", "Tax_Legal_": "ANNAS RETREAT 148-145 NEW QTR", "Name": "DALEY, CATHERINE", "Address": "PO Box 7654", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 229700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.604426108599995, "SHAPE_Area": 600.23606757599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363994.429399996995926, 256345.019099999219179 ], [ 363986.913699999451637, 256375.355000000447035 ], [ 364004.620200000703335, 256379.299600001424551 ], [ 364007.858000002801418, 256377.848499998450279 ], [ 364011.263099998235703, 256356.767000000923872 ], [ 364011.282899998128414, 256354.445099998265505 ], [ 364008.10980000346899, 256348.297400001436472 ], [ 363994.429399996995926, 256345.019099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703083200", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-102", "ACRE": "0.26", "LONGITUDE": -64.87839741000001, "LATITUDE": 18.33625067, "OBJECTID_1": 23292, "PARCEL_NO_": "105703083200", "Tax_Legal_": "ANNAS RETREAT 173C-102 NEW QTR", "Name": "PINNEY, GLYNIS T", "Address": "PO Box 10127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.78093427300001, "SHAPE_Area": 1015.79732811 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364372.343599997460842, 256377.031899999827147 ], [ 364371.833999998867512, 256342.197299998253584 ], [ 364343.589699998497963, 256344.710400000214577 ], [ 364344.081299997866154, 256381.655799999833107 ], [ 364372.343599997460842, 256377.031899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603012500", "MAP": "D9-7573-T005", "PARCEL_NAM": "25A", "ACRE": "1.957", "LONGITUDE": -64.89086633, "LATITUDE": 18.3358804, "OBJECTID_1": 21521, "PARCEL_NO_": "105603012500", "Tax_Legal_": "25A ESTATE CHARLOTTE AMALIE 3 NEW QUARTER", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 342100, "Improved_V": 934200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 410.45033093299998, "SHAPE_Area": 7522.7145352899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363015.723499998450279, 256271.888900000602007 ], [ 362967.663699999451637, 256319.156399998813868 ], [ 363023.363099999725819, 256368.313200000673532 ], [ 363120.105499997735023, 256276.223799999803305 ], [ 363096.913000002503395, 256253.658100001513958 ], [ 363039.315999999642372, 256294.138799998909235 ], [ 363015.723499998450279, 256271.888900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081000", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-91", "ACRE": "0.25", "LONGITUDE": -64.87664676, "LATITUDE": 18.33617729, "OBJECTID_1": 23270, "PARCEL_NO_": "105703081000", "Tax_Legal_": "ANNAS RETREAT 173C-91&107 NEW QTR.", "Name": "PINNEY, NORTON & GLYNIS", "Address": "PO Box 10127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 166600, "Improved_V": 146400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.45085101699999, "SHAPE_Area": 1280.88324358 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364564.29280000180006, 256373.114500001072884 ], [ 364548.549500003457069, 256328.022700000554323 ], [ 364536.402699999511242, 256334.045000001788139 ], [ 364521.840499997138977, 256339.625399999320507 ], [ 364535.470600001513958, 256378.518899999558926 ], [ 364564.29280000180006, 256373.114500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703024800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-146", "ACRE": ".126", "LONGITUDE": -64.8819472, "LATITUDE": 18.33625091, "OBJECTID_1": 22950, "PARCEL_NO_": "105703024800", "Tax_Legal_": "ANNAS RETREAT 148-146 NEW QTR", "Name": "JOYCE BRADY REVOCABLE LIVING TRUST", "Address": "PO Box 10160", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 128400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.798560989400002, "SHAPE_Area": 518.70510265099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363994.429399996995926, 256345.019099999219179 ], [ 363978.335600003600121, 256341.087699998170137 ], [ 363970.818000003695488, 256371.634700000286102 ], [ 363986.913699999451637, 256375.355000000447035 ], [ 363994.429399996995926, 256345.019099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604028200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-180", "ACRE": ".134", "LONGITUDE": -64.88303265, "LATITUDE": 18.33624091, "OBJECTID_1": 21757, "PARCEL_NO_": "105604028200", "Tax_Legal_": "148-180 ANNAS RETREAT 1 NEW QTR", "Name": "LEWIS, CHRISTOPHER & IDOLLIA", "Address": "4100 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 82300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.965834996, "SHAPE_Area": 653.169956093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363885.51070000231266, 256351.938099998980761 ], [ 363877.501500003039837, 256345.539700001478195 ], [ 363871.106799997389317, 256338.943500000983477 ], [ 363848.377199999988079, 256356.700399998575449 ], [ 363851.579099997878075, 256359.470800001174212 ], [ 363862.784699998795986, 256369.272799998521805 ], [ 363870.001999996602535, 256373.975999999791384 ], [ 363885.51070000231266, 256351.938099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703083100", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-103", "ACRE": "0.23", "LONGITUDE": -64.87814004000001, "LATITUDE": 18.33621158, "OBJECTID_1": 23291, "PARCEL_NO_": "105703083100", "Tax_Legal_": "ANNAS RETREAT 173C-103 NEW QTR.", "Name": "DOWE, TAMEKA", "Address": "PO BOX 305346", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.611538341, "SHAPE_Area": 884.99273428100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364399.005900003015995, 256370.917300000786781 ], [ 364397.668399997055531, 256338.609099999070168 ], [ 364375.062899999320507, 256341.801600001752377 ], [ 364371.833999998867512, 256342.197299998253584 ], [ 364372.343599997460842, 256377.031899999827147 ], [ 364399.005900003015995, 256370.917300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703083500", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-48", "ACRE": "0.23", "LONGITUDE": -64.87900624, "LATITUDE": 18.336255, "OBJECTID_1": 23295, "PARCEL_NO_": "105703083500", "Tax_Legal_": "ANNAS RETREAT 173C-48 NEW QTR.", "Name": "THEOPHILLE, AVANDALE & ANN L.", "Address": "PO Box 11964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52700, "Improved_V": 23400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.07778213900001, "SHAPE_Area": 751.72072598299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364310.484200000762939, 256349.92790000140667 ], [ 364278.238799996674061, 256348.819600000977516 ], [ 364277.369599997997284, 256356.200699999928474 ], [ 364277.240099996328354, 256371.398400001227856 ], [ 364310.268399998545647, 256375.25730000063777 ], [ 364307.928599998354912, 256365.949999999254942 ], [ 364308.830200001597404, 256354.769499998539686 ], [ 364310.484200000762939, 256349.92790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703024900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-147", "ACRE": ".126", "LONGITUDE": -64.88209934, "LATITUDE": 18.33621543, "OBJECTID_1": 22951, "PARCEL_NO_": "105703024900", "Tax_Legal_": "ANNAS RETREAT 148-147 NEW QTR", "Name": "ST. LOUIS, REYNOLD", "Address": "PO Box 502062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19300, "Improved_V": 130900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.295574349399999, "SHAPE_Area": 521.77133620699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363961.437200002372265, 256336.9386 ], [ 363955.526799999177456, 256368.132100000977516 ], [ 363970.818000003695488, 256371.634700000286102 ], [ 363978.335600003600121, 256341.087699998170137 ], [ 363973.506700001657009, 256339.99269999936223 ], [ 363961.437200002372265, 256336.9386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703025000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-148", "ACRE": ".126", "LONGITUDE": -64.88225821, "LATITUDE": 18.33618256, "OBJECTID_1": 22952, "PARCEL_NO_": "105703025000", "Tax_Legal_": "NEW QTR", "Name": "GRIFFIN, DAVID & KATHY M", "Address": "7080 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22500, "Improved_V": 271400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.177374725799993, "SHAPE_Area": 565.94024615000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363944.540600001811981, 256332.578400000929832 ], [ 363937.825699999928474, 256363.554200001060963 ], [ 363955.526799999177456, 256368.132100000977516 ], [ 363961.437200002372265, 256336.9386 ], [ 363944.540600001811981, 256332.578400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081100", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-90", "ACRE": "0.26", "LONGITUDE": -64.87641613, "LATITUDE": 18.33610223, "OBJECTID_1": 23271, "PARCEL_NO_": "105703081100", "Tax_Legal_": "ANNAS RETREAT 173C-90 NEW QTR.", "Name": "LEWIS, REBECCA F. (LIFE ESTATE)", "Address": "PO Box 10675", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32600, "Improved_V": 250600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.22900831800001, "SHAPE_Area": 1147.28262636 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364586.919900000095367, 256367.38910000026226 ], [ 364568.793600000441074, 256318.055900000035763 ], [ 364548.549500003457069, 256328.022700000554323 ], [ 364564.29280000180006, 256373.114500001072884 ], [ 364582.069399997591972, 256368.826999999582767 ], [ 364586.919900000095367, 256367.38910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703083000", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-104", "ACRE": "0.24", "LONGITUDE": -64.87786541, "LATITUDE": 18.33615936, "OBJECTID_1": 23290, "PARCEL_NO_": "105703083000", "Tax_Legal_": "ANNAS RETREAT 173C-104 NEW QUARTER", "Name": "DOWE JR., JAMES & DOWE CAMETA", "Address": "PO Box 502393", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30100, "Improved_V": 137700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.374668113, "SHAPE_Area": 986.26428581699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364432.14019999653101, 256362.322599999606609 ], [ 364429.152300000190735, 256334.433800000697374 ], [ 364397.668399997055531, 256338.609099999070168 ], [ 364399.005900003015995, 256370.917300000786781 ], [ 364432.14019999653101, 256362.322599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604036700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88977076, "LATITUDE": 18.33539548, "OBJECTID_1": 21829, "PARCEL_NO_": "105604036700", "Tax_Legal_": "10-2-A ESTATE CHARLOTTE AMALIE NEW QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 320200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 615.49057219500003, "SHAPE_Area": 3263.5602992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363153.317100003361702, 256258.552700001746416 ], [ 363163.890900000929832, 256247.873500000685453 ], [ 363168.847499996423721, 256233.981899999082088 ], [ 363169.680799998342991, 256230.822299998253584 ], [ 363170.650700002908707, 256211.620700001716614 ], [ 363178.1233000010252, 256186.350600000470877 ], [ 363167.025499999523163, 256163.883900001645088 ], [ 363156.040200002491474, 256170.090199999511242 ], [ 363158.791599996387959, 256170.440400000661612 ], [ 363162.012100003659725, 256171.973999999463558 ], [ 363165.232600003480911, 256173.660900000482798 ], [ 363167.072800002992153, 256176.267900001257658 ], [ 363167.379600003361702, 256178.721599999815226 ], [ 363163.699000000953674, 256186.54280000180006 ], [ 363160.631899997591972, 256196.971000000834465 ], [ 363156.798000000417233, 256209.546100001782179 ], [ 363154.344300001859665, 256216.600499998778105 ], [ 363148.516800001263618, 256232.856199998408556 ], [ 363141.615800000727177, 256247.271600000560284 ], [ 363136.555100001394749, 256253.252500001341105 ], [ 363132.376400001347065, 256255.637099999934435 ], [ 363127.813799999654293, 256254.632699999958277 ], [ 363121.526199996471405, 256250.645399998873472 ], [ 363114.625200003385544, 256245.584699999541044 ], [ 363106.497400000691414, 256238.683699999004602 ], [ 363099.903099998831749, 256232.856199998408556 ], [ 363091.008500002324581, 256225.341699998825788 ], [ 363084.260799996554852, 256220.434399999678135 ], [ 363077.065099999308586, 256217.122000001370907 ], [ 363077.048299998044968, 256219.08729999884963 ], [ 363078.644799999892712, 256221.000199999660254 ], [ 363081.036700002849102, 256224.186099998652935 ], [ 363082.644000001251698, 256224.832600001245737 ], [ 363114.633900001645088, 256255.914099998772144 ], [ 363142.626500003039837, 256282.951999999582767 ], [ 363214.550899997353554, 256359.112199999392033 ], [ 363212.29559999704361, 256339.884199999272823 ], [ 363151.508500002324581, 256281.547100000083447 ], [ 363149.100400000810623, 256280.260800000280142 ], [ 363146.708400003612041, 256277.074799999594688 ], [ 363145.961400002241135, 256270.102600000798702 ], [ 363153.317100003361702, 256258.552700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703025100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-149", "ACRE": ".129", "LONGITUDE": -64.8824153, "LATITUDE": 18.33614594, "OBJECTID_1": 22953, "PARCEL_NO_": "105703025100", "Tax_Legal_": "ANNAS RETREAT 148-149 NEW QTR", "Name": "CHARLES, LAWRENCE & OTHERS", "Address": "PO Box 7224", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 101700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.840999629099997, "SHAPE_Area": 513.85652921999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363930.061099998652935, 256328.449099998921156 ], [ 363920.934500001370907, 256358.5608000010252 ], [ 363937.825699999928474, 256363.554200001060963 ], [ 363944.540600001811981, 256332.578400000929832 ], [ 363931.668300002813339, 256329.095600001513958 ], [ 363930.061099998652935, 256328.449099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703087100", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-43", "ACRE": "0.28", "LONGITUDE": -64.87948012, "LATITUDE": 18.33612149, "OBJECTID_1": 23331, "PARCEL_NO_": "105703087100", "Tax_Legal_": "173C-43 ANNAS RETREAT 1 NEW QTR.", "Name": "TIVERN H. & TARIQUE H. TURNBULL", "Address": "PO Box 10589", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38400, "Improved_V": 137000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.45868862899999, "SHAPE_Area": 1428.2070440299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364268.518100000917912, 256354.017299998551607 ], [ 364271.924999997019768, 256332.724800001829863 ], [ 364269.549199998378754, 256327.63910000026226 ], [ 364213.001299999654293, 256339.630800001323223 ], [ 364221.651299998164177, 256365.454999998211861 ], [ 364268.518100000917912, 256354.017299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081200", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-89", "ACRE": "0.30", "LONGITUDE": -64.87619955, "LATITUDE": 18.33601407, "OBJECTID_1": 23272, "PARCEL_NO_": "105703081200", "Tax_Legal_": "ANNAS RETREAT 173C-89 NEW QTR.", "Name": "ABRAHAM, VIDA (LIFE ESTATE)", "Address": "PO Box 935", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37600, "Improved_V": 101400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.69206227199999, "SHAPE_Area": 1456.9771442399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364610.362300001084805, 256360.614900000393391 ], [ 364596.30179999768734, 256307.304200001060963 ], [ 364586.600900001823902, 256310.180100001394749 ], [ 364568.793600000441074, 256318.055900000035763 ], [ 364586.919900000095367, 256367.38910000026226 ], [ 364600.664899997413158, 256363.068599998950958 ], [ 364610.362300001084805, 256360.614900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703026600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-141", "ACRE": ".176", "LONGITUDE": -64.88134311, "LATITUDE": 18.33616066, "OBJECTID_1": 22968, "PARCEL_NO_": "105703026600", "Tax_Legal_": "ANNAS RETREAT 148-141 NEW QTR", "Name": "FLEMING, GODFREY R", "Address": "148-141 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 324500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.17993484900001, "SHAPE_Area": 752.99788669400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364059.038699999451637, 256333.304400000721216 ], [ 364029.930600002408028, 256342.565400000661612 ], [ 364029.862199999392033, 256350.586399998515844 ], [ 364025.785700000822544, 256355.830400001257658 ], [ 364022.549699999392033, 256357.070500001311302 ], [ 364045.887800000607967, 256362.538800001144409 ], [ 364066.949000000953674, 256351.312100000679493 ], [ 364059.038699999451637, 256333.304400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704042300", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-79", "ACRE": "0.25", "LONGITUDE": -64.87237847, "LATITUDE": 18.33613276, "OBJECTID_1": 23639, "PARCEL_NO_": "105704042300", "Tax_Legal_": "ANNAS RETREAT 173C-79 NEW QTR.", "Name": "DAVIS, AVRIL, HARRIET,MARK anD CRAIG", "Address": "PO Box 11725", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34200, "Improved_V": 220300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.15962129, "SHAPE_Area": 1181.49202926 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365028.030299998819828, 256364.24439999833703 ], [ 365023.233800001442432, 256359.350000001490116 ], [ 365006.412699997425079, 256346.124499998986721 ], [ 364992.770199999213219, 256338.413499999791384 ], [ 364973.487000003457069, 256330.234099999070168 ], [ 364977.178700000047684, 256370.160999998450279 ], [ 364989.285999998450279, 256368.782400000840425 ], [ 365007.850900001823902, 256366.612300001084805 ], [ 365028.030299998819828, 256364.24439999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703025200", "MAP": "A9-60-T66", "PARCEL_NAM": "148-150", "ACRE": ".130", "LONGITUDE": -64.8825701, "LATITUDE": 18.33610709, "OBJECTID_1": 22954, "PARCEL_NO_": "105703025200", "Tax_Legal_": "ANNAS RETREAT 148-150 NEW QTR", "Name": "BROWNE, CLEONE", "Address": "151 Estate Tutu", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 101700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.739868900800005, "SHAPE_Area": 536.49149200600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363918.002400003373623, 256324.128600001335144 ], [ 363900.837899997830391, 256351.219099998474121 ], [ 363920.934500001370907, 256358.5608000010252 ], [ 363930.061099998652935, 256328.449099998921156 ], [ 363918.002400003373623, 256324.128600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703082900", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-105", "ACRE": "0.25", "LONGITUDE": -64.87753116, "LATITUDE": 18.33609118, "OBJECTID_1": 23289, "PARCEL_NO_": "105703082900", "Tax_Legal_": "ANNAS RETREAT 173C-105 NEW QTR.", "Name": "JENNINGS, FRANCISCO & A", "Address": "PO Box 303805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31400, "Improved_V": 108500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.87558475200001, "SHAPE_Area": 909.248309447 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364474.205099999904633, 256346.623799998313189 ], [ 364471.904899999499321, 256332.672800000756979 ], [ 364455.77139999717474, 256333.385099999606609 ], [ 364429.152300000190735, 256334.433800000697374 ], [ 364432.14019999653101, 256362.322599999606609 ], [ 364474.205099999904633, 256346.623799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604028100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-179", "ACRE": null, "LONGITUDE": -64.883164, "LATITUDE": 18.33610583, "OBJECTID_1": 21756, "PARCEL_NO_": "105604028100", "Tax_Legal_": "ANNAS RETREAT 148-179 NEW QTR", "Name": "ENGLAND, EUGENIE A", "Address": "PO Box 7321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 93900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.116298253599993, "SHAPE_Area": 499.13255043300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363871.106799997389317, 256338.943500000983477 ], [ 363860.732600003480911, 256326.192999999970198 ], [ 363837.214699998497963, 256341.832499999552965 ], [ 363848.377199999988079, 256356.700399998575449 ], [ 363871.106799997389317, 256338.943500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704042200", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-8", "ACRE": "0.23", "LONGITUDE": -64.8719272, "LATITUDE": 18.33594569, "OBJECTID_1": 23638, "PARCEL_NO_": "105704042200", "Tax_Legal_": "ANNAS RETREAT 173C-8&109 NEW QTR.", "Name": "GLENBERT M DAVID", "Address": "12156 Bottlebrush Pl", "City": "Charlotte", "State": "North Carolina", "Zip": 282771793, "Country": "United States", "Land_Value": 43300, "Improved_V": 204600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.108501803, "SHAPE_Area": 2149.9757907500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365064.785499997437, 256309.238699998706579 ], [ 365035.799599997699261, 256304.146299999207258 ], [ 365031.777000002563, 256303.057900000363588 ], [ 365013.718099996447563, 256340.4847999997437 ], [ 365028.140000000596046, 256351.368599999696016 ], [ 365036.12219999730587, 256360.933100000023842 ], [ 365038.506999999284744, 256364.96339999884367 ], [ 365057.053999997675419, 256364.904100000858307 ], [ 365064.785499997437, 256309.238699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87142483, "LATITUDE": 18.33600903, "OBJECTID_1": 23485, "PARCEL_NO_": "105704014000", "Tax_Legal_": "SMITH BAY 57B-20 1 2&3 EAST END QTR", "Name": "KING, ERIC F. & EUGENE A", "Address": "12501 Circuza Panorama", "City": "SANTA ANA", "State": "California", "Zip": 92705, "Country": "United States", "Land_Value": 77200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.13961903000001, "SHAPE_Area": 3538.5268655 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365113.902199998497963, 256317.662200000137091 ], [ 365064.785499997437, 256309.238699998706579 ], [ 365057.053999997675419, 256364.904100000858307 ], [ 365119.948100000619888, 256365.207800000905991 ], [ 365145.078699998557568, 256349.581399999558926 ], [ 365113.902199998497963, 256317.662200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081300", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-88", "ACRE": "0.35", "LONGITUDE": -64.87594564, "LATITUDE": 18.3359352, "OBJECTID_1": 23273, "PARCEL_NO_": "105703081300", "Tax_Legal_": "ANNAS RETREAT 173C-88 NEW QTR.", "Name": "SKEETE, ERROL & VERNICE", "Address": "PO Box 10102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43900, "Improved_V": 219200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.908967332, "SHAPE_Area": 1665.8172458399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364635.402900002896786, 256355.542500000447035 ], [ 364627.830700002610683, 256297.852000001817942 ], [ 364610.865800000727177, 256301.512800000607967 ], [ 364596.30179999768734, 256307.304200001060963 ], [ 364610.362300001084805, 256360.614900000393391 ], [ 364622.482100002467632, 256357.758699998259544 ], [ 364635.402900002896786, 256355.542500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604029100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-151", "ACRE": ".130", "LONGITUDE": -64.88270909000001, "LATITUDE": 18.33603638, "OBJECTID_1": 21766, "PARCEL_NO_": "105604029100", "Tax_Legal_": "ANNAS RETREAT 148-151 NEW QTR", "Name": "HENLEY, CYNTHIA A", "Address": "7083 ESTATE TUTU 148-151", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 106100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.493631808100005, "SHAPE_Area": 519.30170708599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363907.586900003254414, 256316.232900001108646 ], [ 363885.611400000751019, 256340.11769999936223 ], [ 363892.01519999653101, 256345.658500000834465 ], [ 363900.837899997830391, 256351.219099998474121 ], [ 363918.002400003373623, 256324.128600001335144 ], [ 363907.586900003254414, 256316.232900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081400", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-87", "ACRE": "0.38", "LONGITUDE": -64.87570483, "LATITUDE": 18.33588475, "OBJECTID_1": 23274, "PARCEL_NO_": "105703081400", "Tax_Legal_": "173C-87 ANNAS RETREAT NEW QUARTER", "Name": "JONES, CUTHWYN & PAMELA", "Address": "PO Box 11701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47700, "Improved_V": 193500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.08014450499999, "SHAPE_Area": 1314.5981412399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364653.16160000115633, 256353.365800000727177 ], [ 364655.263300001621246, 256295.965500000864267 ], [ 364641.554200001060963, 256296.064399998635054 ], [ 364627.830700002610683, 256297.852000001817942 ], [ 364635.402900002896786, 256355.542500000447035 ], [ 364639.441699996590614, 256354.731100000441074 ], [ 364653.16160000115633, 256353.365800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703026300", "MAP": "A9-60-T66", "PARCEL_NAM": "148-144", "ACRE": ".172", "LONGITUDE": -64.88183401000001, "LATITUDE": 18.33602979, "OBJECTID_1": 22965, "PARCEL_NO_": "105703026300", "Tax_Legal_": "ANNAS RETREAT 148-144 NEW QTR", "Name": "ROUSE, LAUDRICK & OREILLA", "Address": "PO Box 306154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25200, "Improved_V": 135100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.09349832300001, "SHAPE_Area": 660.15077822199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364008.10980000346899, 256348.297400001436472 ], [ 364008.160099998116493, 256342.387200001627207 ], [ 364012.234899997711182, 256337.354299999773502 ], [ 363995.496500000357628, 256314.419199999421835 ], [ 363973.506700001657009, 256339.99269999936223 ], [ 363978.335600003600121, 256341.087699998170137 ], [ 363994.429399996995926, 256345.019099999219179 ], [ 364008.10980000346899, 256348.297400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081500", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-86", "ACRE": "0.36", "LONGITUDE": -64.87547636, "LATITUDE": 18.33589807, "OBJECTID_1": 23275, "PARCEL_NO_": "105703081500", "Tax_Legal_": "173C-86 ANNAS RETREAT NO.1 NEW QTR.", "Name": "HOLDER, BRENDA&CEDRIC,MERVIN, JACLYN&MALCOLM TAYLOR&OTHERS", "Address": "PO Box 1414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34500, "Improved_V": 49200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.20953137399999, "SHAPE_Area": 1413.9098816400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364681.031099997460842, 256300.187199998646975 ], [ 364668.153499998152256, 256297.337600000202656 ], [ 364655.263300001621246, 256295.965500000864267 ], [ 364653.16160000115633, 256353.365800000727177 ], [ 364659.619199998676777, 256352.574299998581409 ], [ 364678.977899998426437, 256351.888300001621246 ], [ 364681.031099997460842, 256300.187199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703083600", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-49", "ACRE": "0.24", "LONGITUDE": -64.87898129, "LATITUDE": 18.33600051, "OBJECTID_1": 23296, "PARCEL_NO_": "105703083600", "Tax_Legal_": "173C-49 ANNAS RETREAT No.1 NEW QTR.", "Name": "GUMBS, JOHN", "Address": "PO Box 307866", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 219700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.749194655, "SHAPE_Area": 1049.33064612 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364314.781800001859665, 256318.721200000494719 ], [ 364282.554499998688698, 256315.502099998295307 ], [ 364278.238799996674061, 256348.819600000977516 ], [ 364310.484200000762939, 256349.92790000140667 ], [ 364314.781800001859665, 256318.721200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081800", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-83", "ACRE": "0.25", "LONGITUDE": -64.87476667, "LATITUDE": 18.33597827, "OBJECTID_1": 23278, "PARCEL_NO_": "105703081800", "Tax_Legal_": "ANNAS RETREAT 173C-83 NEW QTR.", "Name": "JEAN BAPTISTE, MARY", "Address": "3168 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31400, "Improved_V": 59300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.480659847, "SHAPE_Area": 1030.7765712099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364756.380300000309944, 256352.943999998271465 ], [ 364757.45099999755621, 256321.921999998390675 ], [ 364727.698299996554852, 256312.179299999028444 ], [ 364728.164800003170967, 256352.079799998551607 ], [ 364735.419799998402596, 256352.350299999117851 ], [ 364753.155100002884865, 256352.917599998414516 ], [ 364756.380300000309944, 256352.943999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704036400", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-82", "ACRE": "0.26", "LONGITUDE": -64.87445244, "LATITUDE": 18.3360276, "OBJECTID_1": 23614, "PARCEL_NO_": "105704036400", "Tax_Legal_": "173C-82 ANNA'S RETREAT No1 NEW QTR.", "Name": "GEORGE, LUCIEN S. & VAPLE J", "Address": "PO Box 10005", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32600, "Improved_V": 291800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.79935213600001, "SHAPE_Area": 979.79939262100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364797.505900003015995, 256352.858399998396635 ], [ 364793.659500002861023, 256331.084300000220537 ], [ 364777.551299996674061, 256328.841499999165535 ], [ 364757.45099999755621, 256321.921999998390675 ], [ 364756.380300000309944, 256352.943999998271465 ], [ 364773.314699999988079, 256352.871500000357628 ], [ 364791.055399999022484, 256352.805599998682737 ], [ 364797.505900003015995, 256352.858399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081600", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-85", "ACRE": "0.30", "LONGITUDE": -64.87524966, "LATITUDE": 18.33591739, "OBJECTID_1": 23276, "PARCEL_NO_": "105703081600", "Tax_Legal_": "ANNAS RETREAT 173C-85 NEW QTR.", "Name": "FREELAND, SAYDIS & ROLLINS, CI", "Address": "PO Box 303484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.543033775, "SHAPE_Area": 1083.0311320400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364702.756599999964237, 256305.642400000244379 ], [ 364681.031099997460842, 256300.187199998646975 ], [ 364678.977899998426437, 256351.888300001621246 ], [ 364698.334799997508526, 256351.413499999791384 ], [ 364701.560099996626377, 256351.439899999648333 ], [ 364702.756599999964237, 256305.642400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704043200", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-81", "ACRE": "0.25", "LONGITUDE": -64.8740656, "LATITUDE": 18.33603404, "OBJECTID_1": 23648, "PARCEL_NO_": "105704043200", "Tax_Legal_": "ANNAS RETREAT 173C-81 NEW QTR.", "Name": "GEORGE, LUCIEN S. & VAPLE J.", "Address": "PO Box 10005", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.152753217, "SHAPE_Area": 963.28867753400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364800.925300002098083, 256330.088300000876188 ], [ 364793.659500002861023, 256331.084300000220537 ], [ 364797.505900003015995, 256352.858399998396635 ], [ 364809.600599996745586, 256352.957400001585484 ], [ 364825.726800002157688, 256353.089400000870228 ], [ 364841.849500000476837, 256353.643500000238419 ], [ 364826.761500000953674, 256326.289000000804663 ], [ 364800.925300002098083, 256330.088300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081700", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-84", "ACRE": "0.27", "LONGITUDE": -64.87502343, "LATITUDE": 18.33594404, "OBJECTID_1": 23277, "PARCEL_NO_": "105703081700", "Tax_Legal_": "ANNAS RETREAT 173C-84 NEW QTR.", "Name": "BRADSHAW, LIVINGSTON & L", "Address": "PO Box 306495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33900, "Improved_V": 72900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.11284477500001, "SHAPE_Area": 1105.5798576300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364727.698299996554852, 256312.179299999028444 ], [ 364702.756599999964237, 256305.642400000244379 ], [ 364701.560099996626377, 256351.439899999648333 ], [ 364715.265600003302097, 256351.763099998235703 ], [ 364728.164800003170967, 256352.079799998551607 ], [ 364727.698299996554852, 256312.179299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604031300", "MAP": "G9-787-T64", "PARCEL_NAM": "5C", "ACRE": null, "LONGITUDE": -64.8882738, "LATITUDE": 18.33594382, "OBJECTID_1": 21783, "PARCEL_NO_": "105604031300", "Tax_Legal_": "5C ANNAS RETREAT 1 NEW QTR", "Name": "FRANCIS, ALMA A.", "Address": "PO Box 264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38600, "Improved_V": 212900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.22228351300001, "SHAPE_Area": 1607.8639723199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363322.740599997341633, 256343.110199999064207 ], [ 363334.876599997282028, 256338.354400001466274 ], [ 363340.685500003397465, 256338.592099998146296 ], [ 363342.126500003039837, 256328.819899998605251 ], [ 363343.076399996876717, 256322.378400001674891 ], [ 363307.8091000020504, 256297.391800001263618 ], [ 363297.389899998903275, 256289.9358000010252 ], [ 363283.476899996399879, 256308.39809999987483 ], [ 363287.521799996495247, 256312.424499999731779 ], [ 363315.51070000231266, 256339.88459999859333 ], [ 363319.365299999713898, 256345.478000000119209 ], [ 363322.740599997341633, 256343.110199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703083800", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-51", "ACRE": "0.23", "LONGITUDE": -64.87861091000001, "LATITUDE": 18.33591464, "OBJECTID_1": 23298, "PARCEL_NO_": "105703083800", "Tax_Legal_": "ANNAS RETREAT 173C-51 NEW QTR.", "Name": "THOMAS, MYRON", "Address": "PO Box 10992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 93200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.71322703499999, "SHAPE_Area": 982.60714875199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364349.645700000226498, 256296.41950000077486 ], [ 364343.994300000369549, 256297.217599999159575 ], [ 364339.946599997580051, 256299.084300000220537 ], [ 364332.639399997889996, 256304.935199998319149 ], [ 364326.108000002801418, 256314.380899999290705 ], [ 364323.618900001049042, 256322.593199998140335 ], [ 364320.183300003409386, 256347.263000000268221 ], [ 364343.589699998497963, 256344.710400000214577 ], [ 364349.645700000226498, 256296.41950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604028000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-178", "ACRE": ".137", "LONGITUDE": -64.88326432, "LATITUDE": 18.33596838, "OBJECTID_1": 21755, "PARCEL_NO_": "105604028000", "Tax_Legal_": "148-178 ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "HUNTLEY, NORMA I. & RIVERA, JUANA", "Address": "PO Box 7262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 130300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.043302482000001, "SHAPE_Area": 539.89721334199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363860.732600003480911, 256326.192999999970198 ], [ 363856.749600000679493, 256320.460799999535084 ], [ 363851.990900002419949, 256311.133799999952316 ], [ 363826.894500002264977, 256322.749600000679493 ], [ 363837.214699998497963, 256341.832499999552965 ], [ 363860.732600003480911, 256326.192999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703082800", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-57", "ACRE": "0.26", "LONGITUDE": -64.87716675, "LATITUDE": 18.3358586, "OBJECTID_1": 23288, "PARCEL_NO_": "105703082800", "Tax_Legal_": "ANNAS RETREAT 173C-57 NEW QTR.", "Name": "ANTHONY, LOUVIE", "Address": "6442 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32600, "Improved_V": 151900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.9370723, "SHAPE_Area": 1594.93001546 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364509.7871999964118, 256334.671599999070168 ], [ 364504.468500003218651, 256296.420099999755621 ], [ 364492.362999998033047, 256297.587600000202656 ], [ 364468.171800002455711, 256297.600699998438358 ], [ 364471.904899999499321, 256332.672800000756979 ], [ 364474.205099999904633, 256346.623799998313189 ], [ 364487.149300001561642, 256341.663499999791384 ], [ 364509.7871999964118, 256334.671599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703026500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-142", "ACRE": ".167", "LONGITUDE": -64.88142312, "LATITUDE": 18.33595042, "OBJECTID_1": 22967, "PARCEL_NO_": "105703026500", "Tax_Legal_": "ANNAS RETREAT 148-142 NEW QTR", "Name": "FAULKNER, MONIQUE", "Address": "PO Box 111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21300, "Improved_V": 172700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.116740675, "SHAPE_Area": 769.59208761399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364034.321800000965595, 256300.382599998265505 ], [ 364021.924999997019768, 256335.744899999350309 ], [ 364026.7449000030756, 256337.895300000905991 ], [ 364029.930600002408028, 256342.565400000661612 ], [ 364059.038699999451637, 256333.304400000721216 ], [ 364034.321800000965595, 256300.382599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703083900", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-52", "ACRE": "0.25", "LONGITUDE": -64.87837831, "LATITUDE": 18.33589028, "OBJECTID_1": 23299, "PARCEL_NO_": "105703083900", "Tax_Legal_": "ANNAS RETREAT 173C-52 NEW QTR.", "Name": "ALCINDOR, F. & ST. LUCE, P", "Address": "PO Box 11993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37100, "Improved_V": 164000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.08105239400001, "SHAPE_Area": 1263.6208041299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364373.811700001358986, 256299.3614999987185 ], [ 364349.645700000226498, 256296.41950000077486 ], [ 364343.589699998497963, 256344.710400000214577 ], [ 364371.833999998867512, 256342.197299998253584 ], [ 364375.062899999320507, 256341.801600001752377 ], [ 364373.811700001358986, 256299.3614999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604029000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-152", "ACRE": ".130", "LONGITUDE": -64.88282449, "LATITUDE": 18.33593604, "OBJECTID_1": 21765, "PARCEL_NO_": "105604029000", "Tax_Legal_": "148-152 ANNAS RETREAT NEW QTR", "Name": "GEORGES LAKE, EVIS", "Address": "7084 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 107400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.34004711599999, "SHAPE_Area": 562.70611568599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363899.617200002074242, 256305.190799999982119 ], [ 363872.024599999189377, 256325.863200001418591 ], [ 363876.009400002658367, 256331.384199999272823 ], [ 363885.611400000751019, 256340.11769999936223 ], [ 363907.586900003254414, 256316.232900001108646 ], [ 363899.617200002074242, 256305.190799999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704014100", "MAP": "B9-94-T63", "PARCEL_NAM": "57B-21", "ACRE": "0.39", "LONGITUDE": -64.87094083, "LATITUDE": 18.33583569, "OBJECTID_1": 23486, "PARCEL_NO_": "105704014100", "Tax_Legal_": "SMITH BAY 57B 21 EAST END QTR", "Name": "DORIS I DANIEL (LIFE ESTATE)", "Address": "PO Box 11701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014701, "Country": "United States", "Land_Value": 53300, "Improved_V": 219700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.170795295, "SHAPE_Area": 1708.0341787299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365170.196699999272823, 256335.432599999010563 ], [ 365160.876999996602535, 256293.559799998998642 ], [ 365113.902199998497963, 256317.662200000137091 ], [ 365145.078699998557568, 256349.581399999558926 ], [ 365155.618299998342991, 256342.91270000115037 ], [ 365170.196699999272823, 256335.432599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703084000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87813927000001, "LATITUDE": 18.33587839, "OBJECTID_1": 23300, "PARCEL_NO_": "105703084000", "Tax_Legal_": "ANNAS RETREAT 173C-53 NEW QTR.", "Name": "RICHARDSON, LOMA", "Address": "PO Box 12425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32900, "Improved_V": 119600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.748094968, "SHAPE_Area": 894.44032983199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364396.368699997663498, 256301.868200000375509 ], [ 364373.811700001358986, 256299.3614999987185 ], [ 364375.062899999320507, 256341.801600001752377 ], [ 364397.668399997055531, 256338.609099999070168 ], [ 364396.368699997663498, 256301.868200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703087000", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-42", "ACRE": "0.29", "LONGITUDE": -64.87954623, "LATITUDE": 18.33592572, "OBJECTID_1": 23330, "PARCEL_NO_": "105703087000", "Tax_Legal_": "ANNAS RETREAT 173C-42 NEW QTR.", "Name": "ROGER B. MINKOFF FAMILY TRUST & GLORIA HODGE", "Address": "PO Box 503145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 36400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.148291984, "SHAPE_Area": 1122.6032121400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364269.549199998378754, 256327.63910000026226 ], [ 364269.574400000274181, 256324.684000000357628 ], [ 364267.983400002121925, 256322.137800000607967 ], [ 364259.976000003516674, 256315.528400000184774 ], [ 364255.184900000691414, 256310.000799998641014 ], [ 364207.529700003564358, 256319.320999998599291 ], [ 364207.509900003671646, 256321.642900001257658 ], [ 364213.001299999654293, 256339.630800001323223 ], [ 364269.549199998378754, 256327.63910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703026400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-143", "ACRE": ".167", "LONGITUDE": -64.8816294, "LATITUDE": 18.33587315, "OBJECTID_1": 22966, "PARCEL_NO_": "105703026400", "Tax_Legal_": "ANNAS RETREAT 148-143 NEW QTR", "Name": "CLAXTON, LEROY & JOYCELYN", "Address": "148-143 EST ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 140400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.905137349, "SHAPE_Area": 830.95219816300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364034.321800000965595, 256300.382599998265505 ], [ 364031.136100001633167, 256295.712499998509884 ], [ 363995.496500000357628, 256314.419199999421835 ], [ 364012.234899997711182, 256337.354299999773502 ], [ 364017.090700000524521, 256335.283100001513958 ], [ 364021.924999997019768, 256335.744899999350309 ], [ 364034.321800000965595, 256300.382599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703084100", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-54", "ACRE": "0.23", "LONGITUDE": -64.87789058, "LATITUDE": 18.3358698, "OBJECTID_1": 23301, "PARCEL_NO_": "105703084100", "Tax_Legal_": "ANNAS RETREAT 173C-54 NEW QTR.", "Name": "TECHERIA, PEARL", "Address": "3871 Mountain Way Cv", "City": "Snellville", "State": "Georgia", "Zip": 30039, "Country": "United States", "Land_Value": 28900, "Improved_V": 100000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.375251373, "SHAPE_Area": 1032.0507220100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364429.152300000190735, 256334.433800000697374 ], [ 364424.596799999475479, 256301.254799999296665 ], [ 364412.487700000405312, 256302.844500001519918 ], [ 364396.368699997663498, 256301.868200000375509 ], [ 364397.668399997055531, 256338.609099999070168 ], [ 364429.152300000190735, 256334.433800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704042100", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-106", "ACRE": "0.25", "LONGITUDE": -64.87225925, "LATITUDE": 18.33577301, "OBJECTID_1": 23637, "PARCEL_NO_": "105704042100", "Tax_Legal_": "ANNAS RETREAT 173C-106 NEW QTR.", "Name": "WILLIAMS, LOUISA & OTHERS", "Address": "Purcell Est", "City": "TORTOLA", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.94848083799999, "SHAPE_Area": 1324.2119735000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365011.666000001132488, 256297.404899999499321 ], [ 364989.945900000631809, 256291.316500000655651 ], [ 364988.837499998509884, 256326.771099999547005 ], [ 365002.490900002419949, 256333.215700000524521 ], [ 365013.718099996447563, 256340.4847999997437 ], [ 365031.777000002563, 256303.057900000363588 ], [ 365011.666000001132488, 256297.404899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703084200", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-55", "ACRE": "0.23", "LONGITUDE": -64.87761708, "LATITUDE": 18.33583623, "OBJECTID_1": 23302, "PARCEL_NO_": "105703084200", "Tax_Legal_": "ANNAS RETREAT 173C-55 NEW QTR.", "Name": "BROWNE, SOPHINA", "Address": "PO Box 9392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 78900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.483228471, "SHAPE_Area": 966.26658909499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364455.77139999717474, 256333.385099999606609 ], [ 364452.850100003182888, 256297.6864 ], [ 364436.712999999523163, 256298.820900000631809 ], [ 364424.596799999475479, 256301.254799999296665 ], [ 364429.152300000190735, 256334.433800000697374 ], [ 364455.77139999717474, 256333.385099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703082700", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-58", "ACRE": "0.23", "LONGITUDE": -64.87689658, "LATITUDE": 18.33580374, "OBJECTID_1": 23287, "PARCEL_NO_": "105703082700", "Tax_Legal_": "ANNAS RETREAT 173C-58 NEW QTR.", "Name": "ARESTIL, DANIEL", "Address": "PO Box 1146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041146, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.488973163, "SHAPE_Area": 744.31513903400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364531.633100003004074, 256325.984400000423193 ], [ 364521.435199998319149, 256292.548200000077486 ], [ 364504.468500003218651, 256296.420099999755621 ], [ 364509.7871999964118, 256334.671599999070168 ], [ 364531.633100003004074, 256325.984400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703084300", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-56", "ACRE": "0.24", "LONGITUDE": -64.87741399, "LATITUDE": 18.33582779, "OBJECTID_1": 23303, "PARCEL_NO_": "105703084300", "Tax_Legal_": "ANNAS RETREAT 173C-56 NEW QTR.", "Name": "MOSES, NOELITA-BLDG #21", "Address": "104 George St", "City": "Gaithersburg", "State": "Maryland", "Zip": 20877, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.55940219199999, "SHAPE_Area": 557.85496988199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364468.171800002455711, 256297.600699998438358 ], [ 364452.850100003182888, 256297.6864 ], [ 364455.77139999717474, 256333.385099999606609 ], [ 364471.904899999499321, 256332.672800000756979 ], [ 364468.171800002455711, 256297.600699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604031200", "MAP": "F9-1326-T64", "PARCEL_NAM": "5A", "ACRE": null, "LONGITUDE": -64.88838958, "LATITUDE": 18.33537248, "OBJECTID_1": 21782, "PARCEL_NO_": "105604031200", "Tax_Legal_": "5A ANNAS RETREAT NEW QTR", "Name": "STEELE ANNA'S RETREAT, LLC", "Address": "4026 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 343400, "Improved_V": 466300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 413.32005535799999, "SHAPE_Area": 7589.6254207499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363337.524999998509884, 256216.786200001835823 ], [ 363291.527400001883507, 256220.842700000852346 ], [ 363245.529899999499321, 256224.89919999986887 ], [ 363210.829700000584126, 256227.992600001394749 ], [ 363307.8091000020504, 256297.391800001263618 ], [ 363343.076399996876717, 256322.378400001674891 ], [ 363353.663900002837181, 256215.440600000321865 ], [ 363337.524999998509884, 256216.786200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604028900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-153", "ACRE": ".130", "LONGITUDE": -64.8829231, "LATITUDE": 18.33581832, "OBJECTID_1": 21764, "PARCEL_NO_": "105604028900", "Tax_Legal_": "148-153 ANNAS RETREAT NEW QTR", "Name": "WILLIAMS, WILFRED & MILLICENT", "Address": "7085 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 123000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.08105211500001, "SHAPE_Area": 573.68425212900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363892.448499999940395, 256294.788499999791384 ], [ 363860.8800999969244, 256308.884500000625849 ], [ 363866.437899999320507, 256319.0625 ], [ 363872.024599999189377, 256325.863200001418591 ], [ 363899.617200002074242, 256305.190799999982119 ], [ 363892.448499999940395, 256294.788499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704014200", "MAP": "B9-94-T63", "PARCEL_NAM": "57B-22", "ACRE": "0.42", "LONGITUDE": -64.87061787, "LATITUDE": 18.33568541, "OBJECTID_1": 23487, "PARCEL_NO_": "105704014200", "Tax_Legal_": "SMITH BAY 57B 22 EAST END QTR", "Name": "ALEXANDER, HELEN", "Address": "1155 Warbuton Ave", "City": "Yonkers", "State": "New York", "Zip": 10701, "Country": "United States", "Land_Value": 65500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.31841781700001, "SHAPE_Area": 1421.7394021800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365193.271499998867512, 256277.148600000888109 ], [ 365160.876999996602535, 256293.559799998998642 ], [ 365170.196699999272823, 256335.432599999010563 ], [ 365191.24889999628067, 256325.261399999260902 ], [ 365195.310999996960163, 256321.706000000238419 ], [ 365196.140699997544289, 256318.968600001186132 ], [ 365196.433799996972084, 256284.562699999660254 ], [ 365193.271499998867512, 256277.148600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604027900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-177", "ACRE": ".137", "LONGITUDE": -64.88334317, "LATITUDE": 18.33581119, "OBJECTID_1": 21754, "PARCEL_NO_": "105604027900", "Tax_Legal_": "148-177 ANNAS RETREAT NEW QTR", "Name": "BERYL I STEPHENS REVOCABLE LIVING TRUS", "Address": "PO Box 6585", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20800, "Improved_V": 151300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.367161458400005, "SHAPE_Area": 523.64287916900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363851.990900002419949, 256311.133799999952316 ], [ 363845.675200000405312, 256295.250100001692772 ], [ 363818.993199996650219, 256303.686500001698732 ], [ 363826.894500002264977, 256322.749600000679493 ], [ 363851.990900002419949, 256311.133799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010800", "MAP": null, "PARCEL_NAM": "5A", "ACRE": null, "LONGITUDE": -64.8969853, "LATITUDE": 18.33577057, "OBJECTID_1": 21504, "PARCEL_NO_": "105603010800", "Tax_Legal_": "5A ESTATE CHARLOTTE AMALIE 3 NEW QTR", "Name": "GEORGE, JASON ALLAN & SHAUNA GOULD", "Address": "PO Box 11781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16900, "Improved_V": 120200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.906837655, "SHAPE_Area": 1045.32949592 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362406.49379999935627, 256273.338599998503923 ], [ 362377.453900001943111, 256274.578499998897314 ], [ 362380.373499996960163, 256310.488299999386072 ], [ 362382.794200003147125, 256310.297100000083447 ], [ 362410.230400003492832, 256307.988499999046326 ], [ 362406.49379999935627, 256273.338599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703082600", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-59", "ACRE": "0.23", "LONGITUDE": -64.87668293, "LATITUDE": 18.3357175, "OBJECTID_1": 23286, "PARCEL_NO_": "105703082600", "Tax_Legal_": "ANNAS RETREAT 173C-59 NEW QTR.", "Name": "ALLEN A WALTERS TRUST", "Address": "PO Box 502782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28900, "Improved_V": 247500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.925394545, "SHAPE_Area": 948.22461927899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364558.352899998426437, 256313.115299999713898 ], [ 364546.52080000191927, 256282.198800001293421 ], [ 364531.946000002324581, 256289.256700001657009 ], [ 364521.435199998319149, 256292.548200000077486 ], [ 364531.633100003004074, 256325.984400000423193 ], [ 364558.352899998426437, 256313.115299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010900", "MAP": "F9-1641-T65", "PARCEL_NAM": "5B", "ACRE": "0.25", "LONGITUDE": -64.89672548, "LATITUDE": 18.33575022, "OBJECTID_1": 21505, "PARCEL_NO_": "105603010900", "Tax_Legal_": "5B ESTATE CHARLOTTE AMALIE 3 NEW QTR", "Name": "GEORGE, JASON & SHAUNA GOULD", "Address": "PO Box 11781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16900, "Improved_V": 113500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.367297638, "SHAPE_Area": 883.88803114100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362435.244099996984005, 256306.082299999892712 ], [ 362432.311999998986721, 256271.649999998509884 ], [ 362406.49379999935627, 256273.338599998503923 ], [ 362410.230400003492832, 256307.988499999046326 ], [ 362435.244099996984005, 256306.082299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804041500", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-105", "ACRE": "0.29", "LONGITUDE": -64.8566608, "LATITUDE": 18.33571936, "OBJECTID_1": 24693, "PARCEL_NO_": "105804041500", "Tax_Legal_": "SMITH BAY ESTATE 19-2-105 No.1,2&3 EASTEND QTR.", "Name": "FORBES, ALBERT P. & JANICE", "Address": "758 E 213th St", "City": "Bronx", "State": "New York", "Zip": 10467, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.743195458, "SHAPE_Area": 1273.3230673600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366667.921700000762939, 256300.405900001525879 ], [ 366654.991899996995926, 256303.677499998360872 ], [ 366634.016999997198582, 256304.772399999201298 ], [ 366643.383500002324581, 256341.157200001180172 ], [ 366677.259400002658367, 256340.167899999767542 ], [ 366678.875600002706051, 256339.758900001645088 ], [ 366667.847999997437, 256309.060100000351667 ], [ 366667.921700000762939, 256300.405900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704042000", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-11", "ACRE": "0.33", "LONGITUDE": -64.87253359, "LATITUDE": 18.33558072, "OBJECTID_1": 23636, "PARCEL_NO_": "105704042000", "Tax_Legal_": "ANNAS RETREAT 173C-11 NEW QTR.", "Name": "VICTORINE, CAROL WINSTON", "Address": "PO Box 502771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 54200, "Improved_V": 341600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.984675681, "SHAPE_Area": 1426.1682035700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364989.945900000631809, 256291.316500000655651 ], [ 364991.004000000655651, 256261.771999999880791 ], [ 364978.092200003564358, 256262.932900000363588 ], [ 364965.972300000488758, 256265.789000000804663 ], [ 364965.522799998521805, 256318.558800000697374 ], [ 364977.588699996471405, 256322.035000000149012 ], [ 364988.837499998509884, 256326.771099999547005 ], [ 364989.945900000631809, 256291.316500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704043400", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-72", "ACRE": "0.29", "LONGITUDE": -64.87423633, "LATITUDE": 18.33562165, "OBJECTID_1": 23650, "PARCEL_NO_": "105704043400", "Tax_Legal_": "ANNAS RETREAT 173C-72 NEW QTR.", "Name": "ROBINSON, LUDRIC & SHIRLEY", "Address": "1022 Nelson Ave", "City": "Bronx", "State": "New York", "Zip": 10452, "Country": "United States", "Land_Value": 38500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.765292956, "SHAPE_Area": 1383.7870649900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364816.30460000038147, 256323.248100001364946 ], [ 364812.645300000905991, 256279.521800000220537 ], [ 364806.209200002253056, 256277.7804000005126 ], [ 364796.572999998927116, 256273.057399999350309 ], [ 364788.563799999654293, 256266.659099999815226 ], [ 364784.580799996852875, 256260.926899999380112 ], [ 364782.719999998807907, 256290.042599998414516 ], [ 364780.862800002098083, 256318.736099999397993 ], [ 364784.910599999129772, 256316.86939999833703 ], [ 364785.736699998378754, 256314.554200001060963 ], [ 364788.987099997699261, 256311.625500001013279 ], [ 364793.029399998486042, 256310.392000000923872 ], [ 364796.254699997603893, 256310.418400000780821 ], [ 364801.076399996876717, 256312.357700001448393 ], [ 364803.473700001835823, 256314.910399999469519 ], [ 364805.055799998342991, 256318.511999998241663 ], [ 364805.016199998557568, 256323.155699998140335 ], [ 364804.19370000064373, 256325.048799999058247 ], [ 364816.30460000038147, 256323.248100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086900", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-41", "ACRE": "0.23", "LONGITUDE": -64.87965896, "LATITUDE": 18.3357153, "OBJECTID_1": 23329, "PARCEL_NO_": "105703086900", "Tax_Legal_": "ANNAS RETREAT 173C-41 NEW QTR.", "Name": "HAZEL, FRANKLIN & VERONICA", "Address": "PO Box 8653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48800, "Improved_V": 45900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.86790041500001, "SHAPE_Area": 1243.2808481699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364241.669900000095367, 256287.303100001066923 ], [ 364202.99210000038147, 256284.031300000846386 ], [ 364207.529700003564358, 256319.320999998599291 ], [ 364255.184900000691414, 256310.000799998641014 ], [ 364251.98480000346899, 256307.019299998879433 ], [ 364244.018799997866154, 256295.554999999701977 ], [ 364241.669900000095367, 256287.303100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704043100", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-73", "ACRE": "0.29", "LONGITUDE": -64.87392502, "LATITUDE": 18.33568255, "OBJECTID_1": 23647, "PARCEL_NO_": "105704043100", "Tax_Legal_": "ANNAS RETREAT 173C-73 NEW QUARTER", "Name": "LAFOND, GLENDA", "Address": "PO Box 8101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33000, "Improved_V": 36400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.39831423000001, "SHAPE_Area": 1277.91497239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364849.64750000089407, 256290.168200001120567 ], [ 364812.645300000905991, 256279.521800000220537 ], [ 364816.30460000038147, 256323.248100001364946 ], [ 364825.992899999022484, 256321.849700000137091 ], [ 364851.022799998521805, 256318.043800000101328 ], [ 364849.64750000089407, 256290.168200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703083700", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-50", "ACRE": "0.24", "LONGITUDE": -64.87889148, "LATITUDE": 18.33572047, "OBJECTID_1": 23297, "PARCEL_NO_": "105703083700", "Tax_Legal_": "ANNAS RETREAT 173C-50 NEW QTR.", "Name": "BRATHWAITE, LYDIA", "Address": "PO Box 12053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 183300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.83855702100001, "SHAPE_Area": 1076.1355949399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364314.781800001859665, 256318.721200000494719 ], [ 364319.720399998128414, 256306.940400000661612 ], [ 364322.987000003457069, 256302.111900001764297 ], [ 364332.738300003111362, 256293.325800001621246 ], [ 364332.76349999755621, 256290.370700001716614 ], [ 364331.163400001823902, 256288.879999998956919 ], [ 364324.725500002503395, 256287.349599998444319 ], [ 364313.440700002014637, 256286.835099998861551 ], [ 364307.789399996399879, 256287.633200000971556 ], [ 364298.086599998176098, 256290.720199998468161 ], [ 364289.17230000346899, 256295.924600001424551 ], [ 364285.101099997758865, 256300.535300001502037 ], [ 364283.450699999928474, 256304.954799998551607 ], [ 364282.554499998688698, 256315.502099998295307 ], [ 364314.781800001859665, 256318.721200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081900", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-71", "ACRE": "0.27", "LONGITUDE": -64.87458015, "LATITUDE": 18.33565027, "OBJECTID_1": 23279, "PARCEL_NO_": "105703081900", "Tax_Legal_": "ANNAS RETREAT 173C-71 NEW QTR.", "Name": "RIVERA, RAUL", "Address": "102 BOLONGO BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.754440743, "SHAPE_Area": 1226.25980523 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364782.719999998807907, 256290.042599998414516 ], [ 364740.905000001192093, 256276.401500001549721 ], [ 364743.057800002396107, 256307.660999998450279 ], [ 364772.000600002706051, 256317.819200001657009 ], [ 364776.023100003600121, 256318.907600000500679 ], [ 364780.862800002098083, 256318.736099999397993 ], [ 364782.719999998807907, 256290.042599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704041900", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-12", "ACRE": "0.29", "LONGITUDE": -64.87277075, "LATITUDE": 18.33555794, "OBJECTID_1": 23635, "PARCEL_NO_": "105704041900", "Tax_Legal_": "173C-12 ANNAS RETREAT NEW QUARTER", "Name": "MASSICOTTE, NATHAN", "Address": "622 Wynfield Ter", "City": "Norcross", "State": "Georgia", "Zip": 30092, "Country": "United States", "Land_Value": 38500, "Improved_V": 169800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.85504126699999, "SHAPE_Area": 1245.23780867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364965.972300000488758, 256265.789000000804663 ], [ 364950.645199999213219, 256266.508000001311302 ], [ 364939.376599997282028, 256264.093699999153614 ], [ 364940.598999999463558, 256309.910999998450279 ], [ 364965.522799998521805, 256318.558800000697374 ], [ 364965.972300000488758, 256265.789000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604028800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-154", "ACRE": ".130", "LONGITUDE": -64.88299063, "LATITUDE": 18.33568492, "OBJECTID_1": 21763, "PARCEL_NO_": "105604028800", "Tax_Legal_": "ANNAS RETREAT 148-154 NEW QTR", "Name": "BUKLE, KENRICK & BEVERLY", "Address": "PO Box 502551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16400, "Improved_V": 127300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.034586124, "SHAPE_Area": 546.28018402099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363886.105899997055531, 256282.070999998599291 ], [ 363854.575199998915195, 256291.734299998730421 ], [ 363860.8800999969244, 256308.884500000625849 ], [ 363892.448499999940395, 256294.788499999791384 ], [ 363886.105899997055531, 256282.070999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703082500", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-60", "ACRE": "0.23", "LONGITUDE": -64.87642844, "LATITUDE": 18.33559982, "OBJECTID_1": 23285, "PARCEL_NO_": "105703082500", "Tax_Legal_": "ANNAS RETREAT 173C-60 NEW QTR.", "Name": "CHALWELL, ANONIA", "Address": "PO Box 11461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 169300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.80533814500001, "SHAPE_Area": 1024.3067701299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364587.488099999725819, 256300.688200000673532 ], [ 364574.043300002813339, 256269.758499998599291 ], [ 364563.5253000035882, 256273.894299998879433 ], [ 364546.52080000191927, 256282.198800001293421 ], [ 364558.352899998426437, 256313.115299999713898 ], [ 364572.121399998664856, 256306.050799999386072 ], [ 364587.488099999725819, 256300.688200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704014600", "MAP": "B9-94-T63", "PARCEL_NAM": "57B-25", "ACRE": "0.49", "LONGITUDE": -64.87144502, "LATITUDE": 18.33560989, "OBJECTID_1": 23491, "PARCEL_NO_": "105704014600", "Tax_Legal_": "SMITH BAY 57B-25 EAST END QTR", "Name": "HOLLAND, MARY ANN", "Address": "PO Box 7351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61700, "Improved_V": 225300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.99869303, "SHAPE_Area": 1611.6097711800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365113.902199998497963, 256317.662200000137091 ], [ 365116.678999997675419, 256275.677299998700619 ], [ 365109.404200002551079, 256277.728700000792742 ], [ 365096.485200002789497, 256279.733899999409914 ], [ 365073.906700000166893, 256279.760200001299381 ], [ 365068.118600003421307, 256296.600299999117851 ], [ 365064.785499997437, 256309.238699998706579 ], [ 365113.902199998497963, 256317.662200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704014700", "MAP": "B9--94-T63", "PARCEL_NAM": "57B-24", "ACRE": "0.48", "LONGITUDE": -64.87105354000001, "LATITUDE": 18.33553677, "OBJECTID_1": 23492, "PARCEL_NO_": "105704014700", "Tax_Legal_": "SMITH BAY 57B-24 EAST END QTR", "Name": "GEORGE, JACQUELINE", "Address": "PO Box 1073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60400, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.69735823100001, "SHAPE_Area": 1500.12393843 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365160.876999996602535, 256293.559799998998642 ], [ 365147.4358000010252, 256262.208000000566244 ], [ 365131.233999997377396, 256270.941300000995398 ], [ 365116.678999997675419, 256275.677299998700619 ], [ 365113.902199998497963, 256317.662200000137091 ], [ 365160.876999996602535, 256293.559799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804041600", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-104", "ACRE": "0.32", "LONGITUDE": -64.85625996, "LATITUDE": 18.3356148, "OBJECTID_1": 24694, "PARCEL_NO_": "105804041600", "Tax_Legal_": "SMITH BAY 19-2-104 EASTEND QUARTER", "Name": "CHRISTOPHER, CARL", "Address": "4735 Woolsey St", "City": "Norfolk", "State": "Virginia", "Zip": 23513, "Country": "United States", "Land_Value": 104500, "Improved_V": 260500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.9747871, "SHAPE_Area": 1296.29862841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366682.262699998915195, 256320.788199998438358 ], [ 366684.679799996316433, 256321.019099999219179 ], [ 366687.831399999558926, 256329.699700001627207 ], [ 366703.144100002944469, 256330.669399999082088 ], [ 366723.364900000393391, 256323.446600001305342 ], [ 366703.514499999582767, 256287.187199998646975 ], [ 366680.856899999082088, 256296.500900000333786 ], [ 366679.220899999141693, 256299.231800001114607 ], [ 366676.776799999177456, 256302.167100001126528 ], [ 366676.739000000059605, 256306.599700000137091 ], [ 366682.262699998915195, 256320.788199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704014500", "MAP": "G9-767-T64", "PARCEL_NAM": "57B-33", "ACRE": null, "LONGITUDE": -64.86973569, "LATITUDE": 18.33551214, "OBJECTID_1": 23490, "PARCEL_NO_": "105704014500", "Tax_Legal_": "SMITH BAY 57B-33 EAST END QTR", "Name": "LEONARD (TRUSTEE), VERONICA", "Address": "PO Box 8543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.45603276200001, "SHAPE_Area": 2210.6950285299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365289.594200000166893, 256324.004000000655651 ], [ 365293.629600003361702, 256305.2804000005126 ], [ 365299.237499997019768, 256279.260499998927116 ], [ 365290.797899998724461, 256273.233300000429153 ], [ 365275.646600000560284, 256262.412999998778105 ], [ 365255.602099999785423, 256248.949999999254942 ], [ 365249.914800003170967, 256253.969700001180172 ], [ 365262.276299998164177, 256317.398899998515844 ], [ 365266.304300002753735, 256317.854100000113249 ], [ 365273.089599996805191, 256316.136700000613928 ], [ 365280.53999999910593, 256319.924899999052286 ], [ 365289.594200000166893, 256324.004000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804031900", "MAP": "C9-225-T78", "PARCEL_NAM": "11F", "ACRE": null, "LONGITUDE": -64.85349697, "LATITUDE": 18.33517238, "OBJECTID_1": 24071, "PARCEL_NO_": "105804031900", "Tax_Legal_": "SMITH BAY 11-F 1,2 & 3 EAST END QTR", "Name": "SPRINGHOUSE LLC", "Address": "6346 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 376.631765229, "SHAPE_Area": 3750.9500959400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366975.684900000691414, 256332.055700000375509 ], [ 367004.646700002253056, 256245.322200000286102 ], [ 367059.839199997484684, 256203.133000001311302 ], [ 367056.635499998927116, 256200.573600001633167 ], [ 367049.454199999570847, 256191.648899998515844 ], [ 366982.095100000500679, 256242.182300001382828 ], [ 366943.64639999717474, 256306.673300001770258 ], [ 366975.684900000691414, 256332.055700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086700", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-39", "ACRE": "0.35", "LONGITUDE": -64.87931054000001, "LATITUDE": 18.33545994, "OBJECTID_1": 23327, "PARCEL_NO_": "105703086700", "Tax_Legal_": "ANNAS RETREAT 173C-39 NEW QTR.", "Name": "FORD, BERNADINA J. & MERVIN L", "Address": "PO Box 9484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.85250937699999, "SHAPE_Area": 1605.01254827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364277.889300003647804, 256295.198899999260902 ], [ 364272.00110000371933, 256241.545899998396635 ], [ 364243.721500001847744, 256248.203499998897314 ], [ 364246.579700000584126, 256278.899599999189377 ], [ 364252.214900001883507, 256280.001200001686811 ], [ 364250.573499999940395, 256283.365200001746416 ], [ 364251.325900003314018, 256289.704199999570847 ], [ 364254.50620000064373, 256295.007599998265505 ], [ 364264.083099998533726, 256306.696100000292063 ], [ 364265.684900000691414, 256307.97580000013113 ], [ 364269.711099997162819, 256308.642000000923872 ], [ 364273.760600000619888, 256306.5641999989748 ], [ 364275.427199997007847, 256300.245000001043081 ], [ 364277.889300003647804, 256295.198899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604027800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-176", "ACRE": ".139", "LONGITUDE": -64.88339778, "LATITUDE": 18.33565484, "OBJECTID_1": 21753, "PARCEL_NO_": "105604027800", "Tax_Legal_": "148-176 ANNAS RETREAT 1 NEW QTR", "Name": "MILLINER-EMANUEL, CECILIA HELENA", "Address": "148-176 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 131600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.760268794500007, "SHAPE_Area": 495.98456050499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363845.675200000405312, 256295.250100001692772 ], [ 363842.57940000295639, 256280.026000000536442 ], [ 363814.317100003361702, 256284.64979999884963 ], [ 363818.993199996650219, 256303.686500001698732 ], [ 363845.675200000405312, 256295.250100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704041800", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-13", "ACRE": "0.26", "LONGITUDE": -64.87300654000001, "LATITUDE": 18.33548888, "OBJECTID_1": 23634, "PARCEL_NO_": "105704041800", "Tax_Legal_": "ANNAS RETREAT 173C-13 NEW QTR.", "Name": "DABOIS, VINAL & FERNANDE LAPAIX", "Address": "PO Box 8481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.17726258900001, "SHAPE_Area": 1059.9663635500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364939.376599997282028, 256264.093699999153614 ], [ 364930.532300002872944, 256261.065999999642372 ], [ 364916.097800001502037, 256251.659800000488758 ], [ 364916.733300000429153, 256271.718899998813868 ], [ 364918.094200000166893, 256301.283100001513958 ], [ 364940.598999999463558, 256309.910999998450279 ], [ 364939.376599997282028, 256264.093699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105604011200", "MAP": null, "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.89083076, "LATITUDE": 18.33535167, "OBJECTID_1": 21588, "PARCEL_NO_": "105604011200", "Tax_Legal_": "7 EST CHARLOTTE AMALIE NEW QTR", "Name": "E. S. & A. COOPERATION", "Address": "P.O. BOX 2576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 245000, "Improved_V": 2083500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.61999898599998, "SHAPE_Area": 4574.6624211600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363011.318000003695488, 256267.734099999070168 ], [ 363039.315999999642372, 256294.138799998909235 ], [ 363096.913000002503395, 256253.658100001513958 ], [ 363066.51410000026226, 256225.122699998319149 ], [ 363056.129199996590614, 256213.638700000941753 ], [ 363049.750600002706051, 256205.142799999564886 ], [ 362992.920299999415874, 256250.273800000548363 ], [ 363011.318000003695488, 256267.734099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703082000", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-70", "ACRE": "0.27", "LONGITUDE": -64.87492367, "LATITUDE": 18.33550802, "OBJECTID_1": 23280, "PARCEL_NO_": "105703082000", "Tax_Legal_": "ANNAS RETREAT 173C-70 NEW QTR.", "Name": "SMITH, ERNEST & SCHERILETTE", "Address": "PO Box 7842", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37000, "Improved_V": 148300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.76230232399999, "SHAPE_Area": 1363.95553748 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364732.982199996709824, 256259.871399998664856 ], [ 364706.325300000607967, 256265.352699998766184 ], [ 364709.273599997162819, 256297.885200001299381 ], [ 364743.057800002396107, 256307.660999998450279 ], [ 364740.905000001192093, 256276.401500001549721 ], [ 364739.443499997258186, 256258.657699998468161 ], [ 364732.982199996709824, 256259.871399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804041700", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-103", "ACRE": "0.31", "LONGITUDE": -64.85598536000001, "LATITUDE": 18.33549829, "OBJECTID_1": 24695, "PARCEL_NO_": "105804041700", "Tax_Legal_": "SMITH BAY 19-2-103 EAST END QUARTER", "Name": "JONES, ADLEAN & EDDY TEWANNA", "Address": "PO Box 306431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44300, "Improved_V": 176000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.288658742, "SHAPE_Area": 1266.0032187899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366752.535999998450279, 256306.797899998724461 ], [ 366729.431599996984005, 256273.889299999922514 ], [ 366721.327100001275539, 256278.678100001066923 ], [ 366703.514499999582767, 256287.187199998646975 ], [ 366723.364900000393391, 256323.446600001305342 ], [ 366752.535999998450279, 256306.797899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704040300", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-7", "ACRE": "0.24", "LONGITUDE": -64.87181893, "LATITUDE": 18.33556489, "OBJECTID_1": 23619, "PARCEL_NO_": "105704040300", "Tax_Legal_": "ANNAS RETREAT 173C-7 NEW QTR.", "Name": "TITRE, JOHN", "Address": "PO BOX 6364", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.30798000599999, "SHAPE_Area": 947.79993011199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365073.906700000166893, 256279.760200001299381 ], [ 365057.79839999973774, 256277.517499998211861 ], [ 365041.71169999986887, 256272.741700001060963 ], [ 365035.799599997699261, 256304.146299999207258 ], [ 365064.785499997437, 256309.238699998706579 ], [ 365068.118600003421307, 256296.600299999117851 ], [ 365073.906700000166893, 256279.760200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703082400", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-61", "ACRE": "0.23", "LONGITUDE": -64.87617395, "LATITUDE": 18.33550094, "OBJECTID_1": 23284, "PARCEL_NO_": "105703082400", "Tax_Legal_": "ANNAS RETREAT 173C-61 NEW QTR.", "Name": "HENRY, JOSHUA & MERLISE", "Address": "PO Box 8656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.850025997, "SHAPE_Area": 906.779445399 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364612.561099998652935, 256291.816399998962879 ], [ 364600.730700001120567, 256260.688799999654293 ], [ 364574.043300002813339, 256269.758499998599291 ], [ 364587.488099999725819, 256300.688200000673532 ], [ 364602.862000003457069, 256294.481199998408556 ], [ 364612.561099998652935, 256291.816399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704040400", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-9", "ACRE": "0.25", "LONGITUDE": -64.87207654, "LATITUDE": 18.33550239, "OBJECTID_1": 23620, "PARCEL_NO_": "105704040400", "Tax_Legal_": "ANNAS RETREAT 173C-9 NEW QTR.", "Name": "BENJAMIN, SANDRA", "Address": "PO BOX 306781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.53787159700001, "SHAPE_Area": 839.29152830700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365041.71169999986887, 256272.741700001060963 ], [ 365029.662000000476837, 256267.365800000727177 ], [ 365017.594300001859665, 256264.100600000470877 ], [ 365011.666000001132488, 256297.404899999499321 ], [ 365031.777000002563, 256303.057900000363588 ], [ 365035.799599997699261, 256304.146299999207258 ], [ 365041.71169999986887, 256272.741700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704041700", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-15", "ACRE": "0.23", "LONGITUDE": -64.87328741, "LATITUDE": 18.3354783, "OBJECTID_1": 23633, "PARCEL_NO_": "105704041700", "Tax_Legal_": "173C-15 ANNAS RETREAT NEW QUARTER", "Name": "HENRY, RAYMOND", "Address": "PO Box 8381", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 33200, "Improved_V": 244800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.927949684, "SHAPE_Area": 1097.83680316 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364916.733300000429153, 256271.718899998813868 ], [ 364879.743600003421307, 256259.594900000840425 ], [ 364880.296400003135204, 256289.363600000739098 ], [ 364918.094200000166893, 256301.283100001513958 ], [ 364916.733300000429153, 256271.718899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604028700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-155", "ACRE": ".017", "LONGITUDE": -64.88303863, "LATITUDE": 18.33553805, "OBJECTID_1": 21762, "PARCEL_NO_": "105604028700", "Tax_Legal_": "148-155 ANNAS RETREAT NEW QTR", "Name": "HOWARD, LORNA JACQUELINE (LIFE ESTATE)", "Address": "7087 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021798, "Country": "United States", "Land_Value": 17800, "Improved_V": 126100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.65172224, "SHAPE_Area": 577.51267862899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363882.207400001585484, 256266.418200001120567 ], [ 363850.70549999922514, 256272.704199999570847 ], [ 363854.575199998915195, 256291.734299998730421 ], [ 363886.105899997055531, 256282.070999998599291 ], [ 363882.207400001585484, 256266.418200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086600", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-38", "ACRE": "0.26", "LONGITUDE": -64.87907494, "LATITUDE": 18.33535843, "OBJECTID_1": 23326, "PARCEL_NO_": "105703086600", "Tax_Legal_": "173C-38 ANNAS RETREAT No.1 NEW QTR.", "Name": "ROUSE (Life Estate), VIDA", "Address": "PO Box 10799", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42700, "Improved_V": 213200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.27292318100001, "SHAPE_Area": 1231.98866565 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364301.403599999845028, 256279.981600001454353 ], [ 364299.159999996423721, 256236.088500000536442 ], [ 364272.00110000371933, 256241.545899998396635 ], [ 364277.889300003647804, 256295.198899999260902 ], [ 364281.965800002217293, 256289.954999998211861 ], [ 364286.02250000089407, 256287.032900001853704 ], [ 364294.935099996626377, 256282.039599999785423 ], [ 364301.403599999845028, 256279.981600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90629257000001, "LATITUDE": 18.33540101, "OBJECTID_1": 20396, "PARCEL_NO_": "105504011700", "Tax_Legal_": "RAPHUNE 5-2 5BA NEW QTR", "Name": "FOUR WINDS WATER COMPANY INC", "Address": "4392 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81700, "Improved_V": 247000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.76916440599999, "SHAPE_Area": 1398.7642556400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361426.301899999380112, 256231.96339999884367 ], [ 361398.226599998772144, 256214.635000001639128 ], [ 361396.854999996721745, 256186.337200000882149 ], [ 361394.4324000030756, 256186.739599999040365 ], [ 361397.805900000035763, 256264.027499999850988 ], [ 361413.890799999237061, 256269.014299999922514 ], [ 361425.965700000524521, 256271.435100000351667 ], [ 361426.301899999380112, 256231.96339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703082100", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-69", "ACRE": "0.26", "LONGITUDE": -64.87528402, "LATITUDE": 18.33550344, "OBJECTID_1": 23281, "PARCEL_NO_": "105703082100", "Tax_Legal_": "ANNAS RETREAT 173C-69 NEW QTR.", "Name": "WILLETT, DELYN", "Address": "PO Box 8657", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34500, "Improved_V": 313100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.32648810699999, "SHAPE_Area": 1041.1596016799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364703.094700001180172, 256265.959499999880791 ], [ 364674.01349999755621, 256272.054299999028444 ], [ 364654.564900003373623, 256283.294199999421835 ], [ 364648.893700003623962, 256286.414200000464916 ], [ 364660.180299997329712, 256286.717700000852346 ], [ 364673.066899999976158, 256288.511900000274181 ], [ 364693.980700001120567, 256294.593699999153614 ], [ 364709.273599997162819, 256297.885200001299381 ], [ 364706.325300000607967, 256265.352699998766184 ], [ 364703.094700001180172, 256265.959499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703084500", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-32", "ACRE": "0.27", "LONGITUDE": -64.87787652, "LATITUDE": 18.33547848, "OBJECTID_1": 23305, "PARCEL_NO_": "105703084500", "Tax_Legal_": "ANNAS RETREAT 173C-32 NEW QTR.", "Name": "RICHARDSON, JULIE L. , JUNE I", "Address": "PO Box 10472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37000, "Improved_V": 166100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.29325600300001, "SHAPE_Area": 1346.42592251 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364435.389899998903275, 256264.824000000953674 ], [ 364419.276299998164177, 256263.214400000870228 ], [ 364412.037399999797344, 256261.044300001114607 ], [ 364402.408399999141693, 256255.477000001817942 ], [ 364394.357900001108646, 256253.933499999344349 ], [ 364394.030599996447563, 256292.349800001829863 ], [ 364406.114500001072884, 256293.715300001204014 ], [ 364414.179499998688698, 256293.570199999958277 ], [ 364437.598499998450279, 256289.53999999910593 ], [ 364435.389899998903275, 256264.824000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704040600", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-10", "ACRE": "0.24", "LONGITUDE": -64.87230141000001, "LATITUDE": 18.33544737, "OBJECTID_1": 23622, "PARCEL_NO_": "105704040600", "Tax_Legal_": "ANNAS RETREAT 173C-10 NEW QTR.", "Name": "BYERS, ETHELEEN", "Address": "PO Box 503141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39400, "Improved_V": 131200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.69777227100001, "SHAPE_Area": 785.42279075900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365017.594300001859665, 256264.100600000470877 ], [ 365004.709499999880791, 256262.095300000160933 ], [ 364991.004000000655651, 256261.771999999880791 ], [ 364989.945900000631809, 256291.316500000655651 ], [ 365011.666000001132488, 256297.404899999499321 ], [ 365017.594300001859665, 256264.100600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703084400", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-34", "ACRE": "0.26", "LONGITUDE": -64.8782388, "LATITUDE": 18.33546772, "OBJECTID_1": 23304, "PARCEL_NO_": "105703084400", "Tax_Legal_": "ANNAS RETREAT 173C-34 NEW QTR.", "Name": "HODGE, WITHFIELD", "Address": "6235 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38600, "Improved_V": 6800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.70514318100001, "SHAPE_Area": 1286.0003417099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364394.357900001108646, 256253.933499999344349 ], [ 364388.715499997138977, 256253.676199998706579 ], [ 364379.831699997186661, 256255.292199999094009 ], [ 364371.736199997365475, 256259.025699999183416 ], [ 364369.297499999403954, 256261.3277000002563 ], [ 364366.059600003063679, 256262.778900001198053 ], [ 364355.491300001740456, 256272.82490000128746 ], [ 364345.748999997973442, 256280.555599998682737 ], [ 364344.917499996721745, 256283.504099998623133 ], [ 364345.711199998855591, 256284.988299999386072 ], [ 364347.318499997258186, 256285.634700000286102 ], [ 364357.777099996805191, 256288.464499998837709 ], [ 364394.030599996447563, 256292.349800001829863 ], [ 364394.357900001108646, 256253.933499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504013000", "MAP": "D9-4855-T90", "PARCEL_NAM": "2A", "ACRE": "2.1637", "LONGITUDE": -64.9023891, "LATITUDE": 18.33456842, "OBJECTID_1": 20409, "PARCEL_NO_": "105504013000", "Tax_Legal_": "2A DONOE 2A NEW QUARTER", "Name": "TWO CITY PROPERTIES, LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 348300, "Improved_V": 26900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 397.98731541699999, "SHAPE_Area": 9705.2264542899993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361865.073100000619888, 256117.52309999987483 ], [ 361755.339400000870228, 256114.379200000315905 ], [ 361757.816100001335144, 256127.212799999862909 ], [ 361764.695299997925758, 256158.962900001555681 ], [ 361771.433799996972084, 256187.895899999886751 ], [ 361775.335600003600121, 256199.097800001502037 ], [ 361778.558799996972084, 256201.854899998754263 ], [ 361785.028800003230572, 256203.9560999982059 ], [ 361785.375299997627735, 256203.871500000357628 ], [ 361865.345899999141693, 256187.427400000393391 ], [ 361869.39360000193119, 256185.560699999332428 ], [ 361872.647699996829033, 256182.209800001233816 ], [ 361880.076999999582767, 256173.605099998414516 ], [ 361890.564599998295307, 256161.458200000226498 ], [ 361893.373800002038479, 256159.168600000441074 ], [ 361897.885399997234344, 256155.491399999707937 ], [ 361888.030500002205372, 256117.663499999791384 ], [ 361875.736599996685982, 256117.636999998241663 ], [ 361865.073100000619888, 256117.52309999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703082300", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-62", "ACRE": "0.23", "LONGITUDE": -64.8759413, "LATITUDE": 18.3354309, "OBJECTID_1": 23283, "PARCEL_NO_": "105703082300", "Tax_Legal_": "ANNAS RETREAT 173C-62 NEW QTR.", "Name": "ROSADO, MAUREEN", "Address": "7654 Est Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 122700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.470461774, "SHAPE_Area": 835.37963874299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364635.98369999974966, 256287.364000000059605 ], [ 364622.576700001955032, 256252.001600001007318 ], [ 364600.730700001120567, 256260.688799999654293 ], [ 364612.561099998652935, 256291.816399998962879 ], [ 364635.98369999974966, 256287.364000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604027700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-175", "ACRE": ".141", "LONGITUDE": -64.88343266, "LATITUDE": 18.33548857, "OBJECTID_1": 21752, "PARCEL_NO_": "105604027700", "Tax_Legal_": "148-175 ANNAS RETREAT NEW QTR", "Name": "ROBERTS, SYLVIA V.", "Address": "PO Box 7481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 97200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.660008074399997, "SHAPE_Area": 573.513500862 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363840.304399996995926, 256263.119899999350309 ], [ 363812.088799998164177, 256262.255699999630451 ], [ 363811.244699999690056, 256266.681699998676777 ], [ 363814.317100003361702, 256284.64979999884963 ], [ 363842.57940000295639, 256280.026000000536442 ], [ 363840.304399996995926, 256263.119899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703084600", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-30", "ACRE": "0.27", "LONGITUDE": -64.87751399, "LATITUDE": 18.33549992, "OBJECTID_1": 23306, "PARCEL_NO_": "105703084600", "Tax_Legal_": "ANNAS RETREAT 173C-30 NEW QTR.", "Name": "SCATLIFFE, VALENCIA", "Address": "PO Box 1452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34200, "Improved_V": 157700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.528853721, "SHAPE_Area": 653.59661132099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364437.598499998450279, 256289.53999999910593 ], [ 364448.089500002563, 256288.57039999961853 ], [ 364477.120399996638298, 256288.385800000280142 ], [ 364477.94650000333786, 256286.070500001311302 ], [ 364462.718199998140335, 256275.180100001394749 ], [ 364448.276500001549721, 256266.618200000375509 ], [ 364441.842200003564358, 256264.665699999779463 ], [ 364435.389899998903275, 256264.824000000953674 ], [ 364437.598499998450279, 256289.53999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086800", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-40", "ACRE": "0.26", "LONGITUDE": -64.87966574, "LATITUDE": 18.33542128, "OBJECTID_1": 23328, "PARCEL_NO_": "105703086800", "Tax_Legal_": "ANNAS RETREAT 173C-40 NEW QTR.", "Name": "FORDE, IAN L. & NERESSA L.", "Address": "PO Box 7781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32600, "Improved_V": 468200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.43778173600001, "SHAPE_Area": 1434.5251373799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364243.721500001847744, 256248.203499998897314 ], [ 364228.721000000834465, 256250.252199999988079 ], [ 364201.108000002801418, 256256.874899998307228 ], [ 364202.99210000038147, 256284.031300000846386 ], [ 364241.669900000095367, 256287.303100001066923 ], [ 364241.722099997103214, 256281.181800000369549 ], [ 364242.55179999768734, 256278.444400001317263 ], [ 364246.579700000584126, 256278.899599999189377 ], [ 364243.721500001847744, 256248.203499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703085900", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-28", "ACRE": "0.24", "LONGITUDE": -64.87711873000001, "LATITUDE": 18.33534469, "OBJECTID_1": 23319, "PARCEL_NO_": "105703085900", "Tax_Legal_": "ANNAS RETREAT 173C-28 NEW QTR.", "Name": "MARTIN, HOPHNI & DORSETT,DORSETT E BAILEY, LEON O WILLIAMS", "Address": "PO Box 9925", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31400, "Improved_V": 149500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.31926355600001, "SHAPE_Area": 1428.5524022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364512.6233000010252, 256285.721099998801947 ], [ 364501.780900001525879, 256233.281100001186132 ], [ 364475.914099998772144, 256240.668800000101328 ], [ 364482.012199997901917, 256282.092999998480082 ], [ 364486.823100000619888, 256285.298799999058247 ], [ 364487.616800002753735, 256286.782999999821186 ], [ 364490.829499997198582, 256288.286899998784065 ], [ 364501.316899999976158, 256287.739500001072884 ], [ 364512.6233000010252, 256285.721099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804041800", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-102", "ACRE": "0.28", "LONGITUDE": -64.85573771, "LATITUDE": 18.33534345, "OBJECTID_1": 24696, "PARCEL_NO_": "105804041800", "Tax_Legal_": "SMITH BAY 19-2-102 EASTEND QRT", "Name": "DALE L. LEFEBVRE", "Address": "6795 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021364, "Country": "United States", "Land_Value": 45900, "Improved_V": 193000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.83017899000001, "SHAPE_Area": 1191.02642872 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366780.159199997782707, 256282.537099998444319 ], [ 366766.527400001883507, 256273.559599999338388 ], [ 366752.960299998521805, 256256.983300000429153 ], [ 366749.706299997866154, 256260.334199998527765 ], [ 366744.022600002586842, 256264.931699998676777 ], [ 366740.777500003576279, 256267.227200001478195 ], [ 366729.431599996984005, 256273.889299999922514 ], [ 366752.535999998450279, 256306.797899998724461 ], [ 366780.159199997782707, 256282.537099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704014800", "MAP": "B9-94-T63", "PARCEL_NAM": "57B-23", "ACRE": "0.49", "LONGITUDE": -64.87067157, "LATITUDE": 18.3353093, "OBJECTID_1": 23493, "PARCEL_NO_": "105704014800", "Tax_Legal_": "SMITH BAY 57B-23 EAST END QTR", "Name": "HANCOCK, DONALD & SARAH", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61700, "Improved_V": 122200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.01319271700001, "SHAPE_Area": 1663.6897643100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365193.271499998867512, 256277.148600000888109 ], [ 365191.79730000346899, 256260.88230000063777 ], [ 365192.635999999940395, 256257.089499998837709 ], [ 365194.288199998438358, 256252.458999998867512 ], [ 365200.013300001621246, 256243.006599999964237 ], [ 365204.982500001788139, 256227.637499999254942 ], [ 365196.051899999380112, 256234.741500001400709 ], [ 365147.4358000010252, 256262.208000000566244 ], [ 365160.876999996602535, 256293.559799998998642 ], [ 365193.271499998867512, 256277.148600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804042400", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-106", "ACRE": "0.38", "LONGITUDE": -64.85674408, "LATITUDE": 18.33536477, "OBJECTID_1": 24702, "PARCEL_NO_": "105804042400", "Tax_Legal_": "SMITH BAY 19-2-106 EAST END QUARTER", "Name": "BUSSUE, KEITH R. & BEAVALIE I", "Address": "PO Box 306572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.32251039400001, "SHAPE_Area": 1545.2278306200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366640.830799996852875, 256262.187300000339746 ], [ 366623.871200002729893, 256265.214899998158216 ], [ 366634.016999997198582, 256304.772399999201298 ], [ 366654.991899996995926, 256303.677499998360872 ], [ 366667.921700000762939, 256300.405900001525879 ], [ 366669.573899999260902, 256295.775299999862909 ], [ 366672.019799999892712, 256292.628899998962879 ], [ 366674.462099999189377, 256289.904699999839067 ], [ 366667.230499997735023, 256286.8902000002563 ], [ 366657.790299996733665, 256259.159699998795986 ], [ 366640.830799996852875, 256262.187300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703082200", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-63", "ACRE": "0.24", "LONGITUDE": -64.87575217, "LATITUDE": 18.33538232, "OBJECTID_1": 23282, "PARCEL_NO_": "105703082200", "Tax_Legal_": "ANNAS RETREAT 173C-63 NEW QTR.", "Name": "MARY LINDQUIST", "Address": "8241 BOURNEFIELD", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026020, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.660990963, "SHAPE_Area": 723.29814929700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364654.564900003373623, 256283.294199999421835 ], [ 364637.956000000238419, 256245.161400001496077 ], [ 364622.576700001955032, 256252.001600001007318 ], [ 364635.98369999974966, 256287.364000000059605 ], [ 364648.893700003623962, 256286.414200000464916 ], [ 364654.564900003373623, 256283.294199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704041500", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-16", "ACRE": "0.24", "LONGITUDE": -64.87364685, "LATITUDE": 18.33539127, "OBJECTID_1": 23631, "PARCEL_NO_": "105704041500", "Tax_Legal_": "ANNAS RETREAT 173C-16 NEW QTR.", "Name": "NEWTON, VIVIANNE", "Address": "BOX 2233", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.19133833800001, "SHAPE_Area": 1057.49700282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364879.743600003421307, 256259.594900000840425 ], [ 364839.465800002217293, 256254.83219999819994 ], [ 364840.076099999248981, 256277.846400000154972 ], [ 364880.296400003135204, 256289.363600000739098 ], [ 364879.743600003421307, 256259.594900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703085800", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-27", "ACRE": "0.27", "LONGITUDE": -64.87692146000001, "LATITUDE": 18.33529954, "OBJECTID_1": 23318, "PARCEL_NO_": "105703085800", "Tax_Legal_": "ANNAS RETREAT 173C-27 NEW QTR.", "Name": "ANTHONY, HEZEKIAH & PETRENELLA", "Address": "6216 Estate Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35800, "Improved_V": 363600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.56852473699999, "SHAPE_Area": 828.57083938599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364527.988200001418591, 256280.569499999284744 ], [ 364516.33049999922514, 256229.178300000727177 ], [ 364501.780900001525879, 256233.281100001186132 ], [ 364512.6233000010252, 256285.721099998801947 ], [ 364527.988200001418591, 256280.569499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086000", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-29", "ACRE": "0.23", "LONGITUDE": -64.8773924, "LATITUDE": 18.33529505, "OBJECTID_1": 23320, "PARCEL_NO_": "105703086000", "Tax_Legal_": "ANNAS RETREAT 173C-29 NEW QTR.", "Name": "EDWARD, MARY & ST. AIMEE", "Address": "PO Box 304791", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 217000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.77547947599999, "SHAPE_Area": 893.41809138500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364475.914099998772144, 256240.668800000101328 ], [ 364447.684199996292591, 256241.493200000375509 ], [ 364445.920500002801418, 256259.21059999987483 ], [ 364460.373000003397465, 256266.506099998950958 ], [ 364482.012199997901917, 256282.092999998480082 ], [ 364475.914099998772144, 256240.668800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703084700", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-64", "ACRE": "0.27", "LONGITUDE": -64.8755783, "LATITUDE": 18.3352979, "OBJECTID_1": 23307, "PARCEL_NO_": "105703084700", "Tax_Legal_": "ANNAS RETREAT 173C-64 NEW QTR.", "Name": "WADE, DEBORAH A.", "Address": "PO BOX 308626", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.75243686300001, "SHAPE_Area": 962.77914729199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364674.01349999755621, 256272.054299999028444 ], [ 364661.427199997007847, 256235.009899999946356 ], [ 364637.956000000238419, 256245.161400001496077 ], [ 364654.564900003373623, 256283.294199999421835 ], [ 364674.01349999755621, 256272.054299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086500", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-37", "ACRE": "0.26", "LONGITUDE": -64.87882857, "LATITUDE": 18.33530752, "OBJECTID_1": 23325, "PARCEL_NO_": "105703086500", "Tax_Legal_": "ANNAS RETREAT 173C-37 NEW QTR.", "Name": "FRANCIS, DONALD", "Address": "1537 Smithson Dr", "City": "Lithonia", "State": "Georgia", "Zip": 30058, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.74661013799999, "SHAPE_Area": 1117.8311683300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364327.218199998140335, 256278.715199999511242 ], [ 364324.679700002074242, 256233.746800001710653 ], [ 364299.159999996423721, 256236.088500000536442 ], [ 364301.403599999845028, 256279.981600001454353 ], [ 364311.9054000005126, 256277.74549999833107 ], [ 364319.164099998772144, 256277.593800000846386 ], [ 364327.218199998140335, 256278.715199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086400", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-36", "ACRE": "0.27", "LONGITUDE": -64.87859212, "LATITUDE": 18.33528136, "OBJECTID_1": 23324, "PARCEL_NO_": "105703086400", "Tax_Legal_": "ANNAS RETREAT 173C-36 NEW QTR.", "Name": "GUMBS, BLONDELL", "Address": "PO Box 6152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.027800273, "SHAPE_Area": 1129.3564368100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364351.50110000371933, 256267.937100000679493 ], [ 364350.518100000917912, 256229.699000000953674 ], [ 364324.679700002074242, 256233.746800001710653 ], [ 364327.218199998140335, 256278.715199999511242 ], [ 364332.851599998772144, 256280.027899999171495 ], [ 364337.696699999272823, 256279.223099999129772 ], [ 364341.749799996614456, 256276.723200000822544 ], [ 364351.50110000371933, 256267.937100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85032343, "LATITUDE": 18.33506741, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 443.34739530500002, "SHAPE_Area": 3662.9456222099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367261.380300000309944, 256303.785399999469519 ], [ 367273.573899999260902, 256292.274999998509884 ], [ 367286.550399996340275, 256283.515299998223782 ], [ 367290.617899999022484, 256279.326699998229742 ], [ 367293.071000002324581, 256275.335999999195337 ], [ 367298.747599996626377, 256271.582800000905991 ], [ 367306.839500002563, 256268.271499998867512 ], [ 367322.199000000953674, 256263.753199998289347 ], [ 367331.919699996709824, 256258.555399999022484 ], [ 367336.79169999808073, 256254.584499999880791 ], [ 367341.647600002586842, 256252.513300001621246 ], [ 367350.534999996423721, 256250.475099999457598 ], [ 367358.601700000464916, 256250.118999999016523 ], [ 367368.266699999570847, 256251.464600000530481 ], [ 367372.309000000357628, 256250.231100000441074 ], [ 367373.939599998295307, 256248.133600000292063 ], [ 367377.179300002753735, 256246.4712999984622 ], [ 367382.01349999755621, 256246.933100000023842 ], [ 367384.419900000095367, 256248.430399999022484 ], [ 367385.211800001561642, 256250.125700000673532 ], [ 367388.435300000011921, 256250.363099999725819 ], [ 367390.873999997973442, 256248.061099998652935 ], [ 367390.90990000218153, 256243.839499998837709 ], [ 367393.359399996697903, 256240.270899999886751 ], [ 367398.20269999653101, 256239.677299998700619 ], [ 367400.634199999272823, 256238.219500001519918 ], [ 367402.268399998545647, 256235.699799999594688 ], [ 367413.587399996817112, 256232.20380000025034 ], [ 367434.564099997282028, 256230.897900000214577 ], [ 367429.026000000536442, 256218.397999998182058 ], [ 367324.819300003349781, 256240.132199998944998 ], [ 367319.153499998152256, 256242.618900001049042 ], [ 367260.0625, 256269.155299998819828 ], [ 367249.526500001549721, 256275.401799999177456 ], [ 367243.787100002169609, 256286.54280000180006 ], [ 367261.380300000309944, 256303.785399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703085700", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-26", "ACRE": "0.25", "LONGITUDE": -64.87677268, "LATITUDE": 18.33525129, "OBJECTID_1": 23317, "PARCEL_NO_": "105703085700", "Tax_Legal_": "173C-26 ESTATE ANNA'S RETREAT No.1 NEW QTR.", "Name": "ARCHER, PAULINE P.", "Address": "935 E 231st St", "City": "BRONX", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 41100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.15403951100001, "SHAPE_Area": 907.63071643399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364544.989100001752377, 256272.687100000679493 ], [ 364532.498099997639656, 256224.45549999922514 ], [ 364516.33049999922514, 256229.178300000727177 ], [ 364527.988200001418591, 256280.569499999284744 ], [ 364532.030500002205372, 256279.335999999195337 ], [ 364544.989100001752377, 256272.687100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604028600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-156", "ACRE": ".022", "LONGITUDE": -64.88306537, "LATITUDE": 18.335378, "OBJECTID_1": 21761, "PARCEL_NO_": "105604028600", "Tax_Legal_": "148-156 ANNAS RETREAT NEW QTR", "Name": "JENSEN, LINDA", "Address": "PO Box 9676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 135300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.765134419800006, "SHAPE_Area": 575.89788864000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363880.729699999094009, 256250.574000000953674 ], [ 363849.263700000941753, 256252.6385000012815 ], [ 363850.70549999922514, 256272.704199999570847 ], [ 363882.207400001585484, 256266.418200001120567 ], [ 363881.516199998557568, 256252.902499999850988 ], [ 363880.729699999094009, 256250.574000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105504012200", "MAP": "D9-6179-T79", "PARCEL_NAM": "6A", "ACRE": "1.00", "LONGITUDE": -64.90716736, "LATITUDE": 18.33506307, "OBJECTID_1": 20400, "PARCEL_NO_": "105504012200", "Tax_Legal_": "6A RAPHUNE NEW QTR", "Name": "ST. THOMAS LIQUOR LTD.", "Address": "PO Box 23", "City": "Ivy", "State": "Virginia", "Zip": 22945, "Country": "United States", "Land_Value": 245000, "Improved_V": 2642100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.25412346000002, "SHAPE_Area": 4509.8970214800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361345.405599996447563, 256167.762099999934435 ], [ 361271.165500000119209, 256174.120600000023842 ], [ 361281.555900000035763, 256184.971400000154972 ], [ 361284.428700000047684, 256226.369199998676777 ], [ 361301.319899998605251, 256231.36259999871254 ], [ 361353.571999996900558, 256250.366500001400709 ], [ 361345.405599996447563, 256167.762099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704041300", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-18", "ACRE": "0.25", "LONGITUDE": -64.87397551, "LATITUDE": 18.33524576, "OBJECTID_1": 23629, "PARCEL_NO_": "105704041300", "Tax_Legal_": "ANNAS RETREAT 173C-18 NEW QTR.", "Name": "JOHNSON, LENNOX", "Address": "PO Box 502574", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 33200, "Improved_V": 111900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.10484144399999, "SHAPE_Area": 1079.3691533199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364838.828500002622604, 256234.984200000762939 ], [ 364811.422899998724461, 256233.704500000923872 ], [ 364812.726199999451637, 256270.023200001567602 ], [ 364840.076099999248981, 256277.846400000154972 ], [ 364839.465800002217293, 256254.83219999819994 ], [ 364838.828500002622604, 256234.984200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703085600", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-25", "ACRE": "0.23", "LONGITUDE": -64.8765738, "LATITUDE": 18.33517661, "OBJECTID_1": 23316, "PARCEL_NO_": "105703085600", "Tax_Legal_": "ANNAS RETREAT 173C-25 NEW QTR.", "Name": "DANIEL, ROBERT & EGLANTINE", "Address": "PO Box 8456", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 277500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.07403023099999, "SHAPE_Area": 1307.7030111399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364571.698100000619888, 256261.084399998188019 ], [ 364557.556699998676777, 256217.272300001233816 ], [ 364532.498099997639656, 256224.45549999922514 ], [ 364544.989100001752377, 256272.687100000679493 ], [ 364561.181900002062321, 256265.009100001305342 ], [ 364571.698100000619888, 256261.084399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604031700", "MAP": null, "PARCEL_NAM": "10-2", "ACRE": null, "LONGITUDE": -64.89004384, "LATITUDE": 18.33500342, "OBJECTID_1": 21788, "PARCEL_NO_": "105604031700", "Tax_Legal_": "10-2 REMAINDER ESTATE CHARLOTTE AMALIE NO.3 NEW QTR.", "Name": "FORT MYLNER PROPERTIES, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 222200, "Improved_V": 1125700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.58400746699999, "SHAPE_Area": 3836.21441813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363158.791599996387959, 256170.440400000661612 ], [ 363156.040200002491474, 256170.090199999511242 ], [ 363138.66610000282526, 256179.905999999493361 ], [ 363079.523000001907349, 256212.5636 ], [ 363077.075300000607967, 256215.921100001782179 ], [ 363077.065099999308586, 256217.122000001370907 ], [ 363084.260799996554852, 256220.434399999678135 ], [ 363091.008500002324581, 256225.341699998825788 ], [ 363099.903099998831749, 256232.856199998408556 ], [ 363106.497400000691414, 256238.683699999004602 ], [ 363114.625200003385544, 256245.584699999541044 ], [ 363121.526199996471405, 256250.645399998873472 ], [ 363127.813799999654293, 256254.632699999958277 ], [ 363132.376400001347065, 256255.637099999934435 ], [ 363136.555100001394749, 256253.252500001341105 ], [ 363141.615800000727177, 256247.271600000560284 ], [ 363148.516800001263618, 256232.856199998408556 ], [ 363154.344300001859665, 256216.600499998778105 ], [ 363156.798000000417233, 256209.546100001782179 ], [ 363160.631899997591972, 256196.971000000834465 ], [ 363163.699000000953674, 256186.54280000180006 ], [ 363167.379600003361702, 256178.721599999815226 ], [ 363167.072800002992153, 256176.267900001257658 ], [ 363165.232600003480911, 256173.660900000482798 ], [ 363162.012100003659725, 256171.973999999463558 ], [ 363158.791599996387959, 256170.440400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703084800", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-65", "ACRE": "0.24", "LONGITUDE": -64.87533712, "LATITUDE": 18.33521446, "OBJECTID_1": 23308, "PARCEL_NO_": "105703084800", "Tax_Legal_": "ANNAS RETREAT 173C-65 NEW QTR.", "Name": "STAPLETON, GRASALIA & ANTONIA", "Address": "PO Box 302754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 132800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.53483722199999, "SHAPE_Area": 1216.89648472 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364703.094700001180172, 256265.959499999880791 ], [ 364689.732600003480911, 256225.320199999958277 ], [ 364661.427199997007847, 256235.009899999946356 ], [ 364674.01349999755621, 256272.054299999028444 ], [ 364703.094700001180172, 256265.959499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086300", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-35", "ACRE": "0.24", "LONGITUDE": -64.8783514, "LATITUDE": 18.33517503, "OBJECTID_1": 23323, "PARCEL_NO_": "105703086300", "Tax_Legal_": "173C-35 ANNAS RETREAT NEW QTR.", "Name": "HENRY, ELGIN & ROMANELLA", "Address": "PO Box 10813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31400, "Improved_V": 175000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.303212745, "SHAPE_Area": 844.37932138199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364379.883799999952316, 256249.170899998396635 ], [ 364376.480800002813339, 256223.521000001579523 ], [ 364350.518100000917912, 256229.699000000953674 ], [ 364351.50110000371933, 256267.937100000679493 ], [ 364362.0675999969244, 256258.102200001478195 ], [ 364373.415399998426437, 256251.228900000452995 ], [ 364379.883799999952316, 256249.170899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604027600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-174", "ACRE": ".140", "LONGITUDE": -64.88342286, "LATITUDE": 18.33531478, "OBJECTID_1": 21751, "PARCEL_NO_": "105604027600", "Tax_Legal_": "ANNAS RETREAT 148-174 NEW QTR. 1", "Name": "A. RICHARD & CAROLIE T. BLAKE", "Address": "PO Box 502751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20800, "Improved_V": 69800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.483091291500003, "SHAPE_Area": 496.24026825700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363840.4662000015378, 256244.122800000011921 ], [ 363817.902000002563, 256242.460499998182058 ], [ 363812.088799998164177, 256262.255699999630451 ], [ 363840.304399996995926, 256263.119899999350309 ], [ 363840.4662000015378, 256244.122800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704041100", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-14", "ACRE": "0.25", "LONGITUDE": -64.87330854, "LATITUDE": 18.33521611, "OBJECTID_1": 23627, "PARCEL_NO_": "105704041100", "Tax_Legal_": "ANNAS RETREAT 173C-14 NEW QTR.", "Name": "WILKINSON, EMILY M", "Address": "PO Box 8222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41100, "Improved_V": 260600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.59269928000001, "SHAPE_Area": 990.35342240399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364879.174699999392033, 256231.725900001823902 ], [ 364879.743600003421307, 256259.594900000840425 ], [ 364916.733300000429153, 256271.718899998813868 ], [ 364916.097800001502037, 256251.659800000488758 ], [ 364906.479599997401237, 256244.8260000012815 ], [ 364896.883000001311302, 256235.459399998188019 ], [ 364892.066699996590614, 256232.886799998581409 ], [ 364884.016099996864796, 256231.343299999833107 ], [ 364879.174699999392033, 256231.725900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704043300", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-19", "ACRE": "0.24", "LONGITUDE": -64.87424627, "LATITUDE": 18.33517457, "OBJECTID_1": 23649, "PARCEL_NO_": "105704043300", "Tax_Legal_": "ANNAS RETREAT 173C-19 NEW QTR.", "Name": "WEBSTER, JEFFREY L", "Address": "BOX 2481", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51200, "Improved_V": 358300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.59145796799999, "SHAPE_Area": 902.18566738100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364811.422899998724461, 256233.704500000923872 ], [ 364776.787399999797344, 256229.199099998921156 ], [ 364773.549500003457069, 256230.650299999862909 ], [ 364773.522600002586842, 256233.816500000655651 ], [ 364779.125399999320507, 256238.717500001192093 ], [ 364794.270900003612041, 256259.317499998956919 ], [ 364803.081000000238419, 256266.355700001120567 ], [ 364812.726199999451637, 256270.023200001567602 ], [ 364811.422899998724461, 256233.704500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704040100", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-1", "ACRE": "0.23", "LONGITUDE": -64.87166154000001, "LATITUDE": 18.33522025, "OBJECTID_1": 23617, "PARCEL_NO_": "105704040100", "Tax_Legal_": "ANNAS RETREAT 173C-1 NEW QTR.", "Name": "MOSES, PATRICK & AMIE", "Address": "7218 Castleview Ln", "City": "Missouri City", "State": "Texas", "Zip": 77489, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.475862509, "SHAPE_Area": 865.166319413 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365063.805799998342991, 256234.925700001418591 ], [ 365052.247699998319149, 256266.495200000703335 ], [ 365067.538900002837181, 256269.997800000011921 ], [ 365078.013800002634525, 256270.92790000140667 ], [ 365089.559299997985363, 256240.835999999195337 ], [ 365063.805799998342991, 256234.925700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704015100", "MAP": "B9-94-T63", "PARCEL_NAM": "57B-26", "ACRE": "0.43", "LONGITUDE": -64.87130383, "LATITUDE": 18.33518838, "OBJECTID_1": 23496, "PARCEL_NO_": "105704015100", "Tax_Legal_": "SMITH BAY 57B-26 1,2&3 EAST END QTR", "Name": "ELLIOTT, CLARINA M. & SELENA N.", "Address": "33-29 ESTATE NADIR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 573000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.63238925300001, "SHAPE_Area": 1702.5665195900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365135.481100000441074, 256258.403200000524521 ], [ 365124.999300003051758, 256221.437800001353025 ], [ 365089.559299997985363, 256240.835999999195337 ], [ 365078.013800002634525, 256270.92790000140667 ], [ 365097.370700001716614, 256270.453099999576807 ], [ 365116.758100003004074, 256266.389899998903275 ], [ 365130.510399997234344, 256261.225099999457598 ], [ 365135.481100000441074, 256258.403200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703084900", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-66", "ACRE": "0.28", "LONGITUDE": -64.87505839000001, "LATITUDE": 18.33514284, "OBJECTID_1": 23309, "PARCEL_NO_": "105703084900", "Tax_Legal_": "ANNAS RETREAT 173C-66 NEW QTR.", "Name": "HODGE, DAPHNE I", "Address": "7637 Est Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38400, "Improved_V": 195100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.92250200300001, "SHAPE_Area": 1375.87054736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364732.982199996709824, 256259.871399998664856 ], [ 364722.042599998414516, 256218.829700000584126 ], [ 364711.556999996304512, 256219.166000001132488 ], [ 364689.732600003480911, 256225.320199999958277 ], [ 364703.094700001180172, 256265.959499999880791 ], [ 364706.325300000607967, 256265.352699998766184 ], [ 364732.982199996709824, 256259.871399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804041900", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-101", "ACRE": "0.34", "LONGITUDE": -64.85550737, "LATITUDE": 18.33511275, "OBJECTID_1": 24697, "PARCEL_NO_": "105804041900", "Tax_Legal_": "SMITH BAY 19-2-101 EASTEND QRT", "Name": "DALE L. LEFEBVRE", "Address": "6795 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021364, "Country": "United States", "Land_Value": 48600, "Improved_V": 532200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.312082414, "SHAPE_Area": 1421.4874957899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366804.614699997007847, 256251.49549999833107 ], [ 366790.205399997532368, 256239.134100001305342 ], [ 366773.335699997842312, 256231.607700001448393 ], [ 366763.543099999427795, 256245.248700000345707 ], [ 366752.960299998521805, 256256.983300000429153 ], [ 366766.527400001883507, 256273.559599999338388 ], [ 366780.159199997782707, 256282.537099998444319 ], [ 366804.614699997007847, 256251.49549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704040200", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-2", "ACRE": "0.23", "LONGITUDE": -64.87190321, "LATITUDE": 18.33516073, "OBJECTID_1": 23618, "PARCEL_NO_": "105704040200", "Tax_Legal_": "ANNAS RETREAT 173-C-2 NEW QTR", "Name": "REYNOLDS, LEONARD & ALVYN S", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30500, "Improved_V": 150800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.456796536, "SHAPE_Area": 868.82257977699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365035.638899996876717, 256228.362399999052286 ], [ 365028.132100000977516, 256257.64299999922514 ], [ 365052.247699998319149, 256266.495200000703335 ], [ 365063.805799998342991, 256234.925700001418591 ], [ 365035.638899996876717, 256228.362399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704014900", "MAP": "B9-94-T63", "PARCEL_NAM": "57B-32", "ACRE": "0.43", "LONGITUDE": -64.87013964, "LATITUDE": 18.33504466, "OBJECTID_1": 23494, "PARCEL_NO_": "105704014900", "Tax_Legal_": "SMITH BAY 57B-32 EAST END QTR.", "Name": "DIEHL, RITA", "Address": "159 Rainbow Dr", "City": "Livingston", "State": "Texas", "Zip": 77399, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.65317377100001, "SHAPE_Area": 1252.46991774 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365253.528399996459484, 256208.403099998831749 ], [ 365213.007799997925758, 256232.136100001633167 ], [ 365208.040500000119209, 256247.294199999421835 ], [ 365202.315399996936321, 256256.746500000357628 ], [ 365200.645199999213219, 256263.487900000065565 ], [ 365200.616400003433228, 256266.865100000053644 ], [ 365207.956000000238419, 256257.214899998158216 ], [ 365216.065800003707409, 256251.79280000180006 ], [ 365224.150499999523163, 256249.325899999588728 ], [ 365238.669600002467632, 256248.8114 ], [ 365246.765100002288818, 256245.078000001609325 ], [ 365251.655100002884865, 256238.996300000697374 ], [ 365252.500900000333786, 256234.359200000762939 ], [ 365254.259199999272823, 256217.274999998509884 ], [ 365253.528399996459484, 256208.403099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703085500", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-24", "ACRE": "0.23", "LONGITUDE": -64.87634198000001, "LATITUDE": 18.33509833, "OBJECTID_1": 23315, "PARCEL_NO_": "105703085500", "Tax_Legal_": "ANNAS RETREAT 173C-24 NEW QTR.", "Name": "JOYCE M. MAXWELL", "Address": "4215 Annas Retreat 215-267", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021785, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.30586046400001, "SHAPE_Area": 1098.94327062 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364595.151299998164177, 256253.043699998408556 ], [ 364580.190999999642372, 256210.702599998563528 ], [ 364557.556699998676777, 256217.272300001233816 ], [ 364571.698100000619888, 256261.084399998188019 ], [ 364595.151299998164177, 256253.043699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086100", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-31", "ACRE": "0.24", "LONGITUDE": -64.87774967, "LATITUDE": 18.33520029, "OBJECTID_1": 23321, "PARCEL_NO_": "105703086100", "Tax_Legal_": "ANNAS RETREAT 173C-31 NEW QTR.", "Name": "LEONARD & CATHERINE STEPHEN REVOC TRUST", "Address": "PO Box 1003", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.382629581, "SHAPE_Area": 866.94949844999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364412.321599997580051, 256227.693799998611212 ], [ 364408.08500000089407, 256251.723799999803305 ], [ 364413.700400002300739, 256255.147199999541044 ], [ 364420.9391999989748, 256257.317400000989437 ], [ 364428.187100000679493, 256258.432199999690056 ], [ 364445.920500002801418, 256259.21059999987483 ], [ 364447.684199996292591, 256241.493200000375509 ], [ 364412.321599997580051, 256227.693799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603011000", "MAP": "F9-2396-T69", "PARCEL_NAM": "5C", "ACRE": null, "LONGITUDE": -64.89690329, "LATITUDE": 18.33517189, "OBJECTID_1": 21506, "PARCEL_NO_": "105603011000", "Tax_Legal_": "5C ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "FLORENCE HYACINTH AMARO REVOCABLE LIVING TRUST", "Address": "4005 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16900, "Improved_V": 189000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.99244662500001, "SHAPE_Area": 1405.2334549899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362429.379799999296665, 256237.217799998819828 ], [ 362427.17849999666214, 256211.657400000840425 ], [ 362400.579099997878075, 256210.384300000965595 ], [ 362382.825900003314018, 256211.927700001746416 ], [ 362379.573700003325939, 256215.067499998956919 ], [ 362377.894500002264977, 256222.864199999719858 ], [ 362377.736299999058247, 256241.4391999989748 ], [ 362429.379799999296665, 256237.217799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604028500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-157", "ACRE": ".176", "LONGITUDE": -64.88307244000001, "LATITUDE": 18.33521232, "OBJECTID_1": 21760, "PARCEL_NO_": "105604028500", "Tax_Legal_": "148-157 ANNAS RETREAT NEW QTR", "Name": "Carol A Quetel Revoc Trust & Henry Quetel, Trustee", "Address": "PO Box 402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24700, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.14890919699999, "SHAPE_Area": 538.705002294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363854.290399998426437, 256230.514899998903275 ], [ 363854.259800001978874, 256234.103199999779463 ], [ 363856.67339999973774, 256234.75620000064373 ], [ 363856.642800003290176, 256238.3445999994874 ], [ 363853.412100002169609, 256238.951400000602007 ], [ 363850.170699998736382, 256240.824700001627207 ], [ 363849.332000002264977, 256244.617499999701977 ], [ 363849.263700000941753, 256252.6385000012815 ], [ 363880.729699999094009, 256250.574000000953674 ], [ 363876.049999997019768, 256231.959499999880791 ], [ 363854.290399998426437, 256230.514899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703085000", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-67", "ACRE": "0.27", "LONGITUDE": -64.87482871, "LATITUDE": 18.33511117, "OBJECTID_1": 23310, "PARCEL_NO_": "105703085000", "Tax_Legal_": "ANNAS RETREAT 173C-67 NEW QTR.", "Name": "STUART (LIFE ESTATE), JULIAN J and INGRID", "Address": "PO Box 11591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.118370177, "SHAPE_Area": 672.48928941899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364746.169100001454353, 256226.415399998426437 ], [ 364733.314800001680851, 256220.821800000965595 ], [ 364722.042599998414516, 256218.829700000584126 ], [ 364732.982199996709824, 256259.871399998664856 ], [ 364739.443499997258186, 256258.657699998468161 ], [ 364745.904700003564358, 256257.443999998271465 ], [ 364746.169100001454353, 256226.415399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90626701, "LATITUDE": 18.33505099, "OBJECTID_1": 20397, "PARCEL_NO_": "105504011800", "Tax_Legal_": "RAPHUNE 5-1 5BA NEW QTR", "Name": "FOUR WINDS WATER COMPANY INC", "Address": "4392 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 194200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.755980032, "SHAPE_Area": 1113.3276037000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361425.921800002455711, 256181.931099999696016 ], [ 361396.854999996721745, 256186.337200000882149 ], [ 361398.226599998772144, 256214.635000001639128 ], [ 361426.301899999380112, 256231.96339999884367 ], [ 361425.921800002455711, 256181.931099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704041200", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-17", "ACRE": "0.24", "LONGITUDE": -64.87365188, "LATITUDE": 18.33516522, "OBJECTID_1": 23628, "PARCEL_NO_": "105704041200", "Tax_Legal_": "ANNAS RETREAT 173C-17 NEW QTR.", "Name": "LETTSOME, FREDERICK", "Address": "PO Box 423", "City": "Plymouth", "State": "Florida", "Zip": 32768, "Country": "United States", "Land_Value": 39400, "Improved_V": 130000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.82182282900001, "SHAPE_Area": 940.65068169899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364879.174699999392033, 256231.725900001823902 ], [ 364862.220499999821186, 256234.120200000703335 ], [ 364838.828500002622604, 256234.984200000762939 ], [ 364839.465800002217293, 256254.83219999819994 ], [ 364879.743600003421307, 256259.594900000840425 ], [ 364879.174699999392033, 256231.725900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86960945, "LATITUDE": 18.33498184, "OBJECTID_1": 23495, "PARCEL_NO_": "105704015000", "Tax_Legal_": "SMITH BAY 57B-31 1,2&3 EAST END", "Name": "JONES, TYRE K. & BETTE A", "Address": "335 S River Rd", "City": "Bay City", "State": "Michigan", "Zip": 48708, "Country": "United States", "Land_Value": 62900, "Improved_V": 152700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.49845908200001, "SHAPE_Area": 3444.1084699399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365308.541900001466274, 256236.089699998497963 ], [ 365316.211000002920628, 256182.433499999344349 ], [ 365285.899599999189377, 256194.735800001770258 ], [ 365264.048299998044968, 256204.056200001388788 ], [ 365261.350599996745586, 256236.753600001335144 ], [ 365259.682199999690056, 256243.283900000154972 ], [ 365255.602099999785423, 256248.949999999254942 ], [ 365275.646600000560284, 256262.412999998778105 ], [ 365290.797899998724461, 256273.233300000429153 ], [ 365299.237499997019768, 256279.260499998927116 ], [ 365308.541900001466274, 256236.089699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704040500", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-5", "ACRE": "0.23", "LONGITUDE": -64.87268314000001, "LATITUDE": 18.3351044, "OBJECTID_1": 23621, "PARCEL_NO_": "105704040500", "Tax_Legal_": "ANNAS RETREAT 173C-5 NEW QTR", "Name": "PERCIVAL, ANNETTE", "Address": "P.O. BOX 4073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.614791252, "SHAPE_Area": 897.07742070899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364975.747000001370907, 256254.258900001645088 ], [ 364976.830200001597404, 256221.759399998933077 ], [ 364951.012000001966953, 256223.447900000959635 ], [ 364948.309000000357628, 256256.778499998152256 ], [ 364962.012699998915195, 256257.312899999320507 ], [ 364975.747000001370907, 256254.258900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704040800", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-3", "ACRE": "0.23", "LONGITUDE": -64.87216775, "LATITUDE": 18.33509862, "OBJECTID_1": 23624, "PARCEL_NO_": "105704040800", "Tax_Legal_": "ANNAS RETREAT 173C-3 NEW QUARTER", "Name": "TUITT, CHERYL", "Address": "7627 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 93200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.366980054, "SHAPE_Area": 902.86686700099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365005.056500002741814, 256221.357099998742342 ], [ 365000.755199998617172, 256252.98589999973774 ], [ 365013.647200003266335, 256254.146899998188019 ], [ 365028.132100000977516, 256257.64299999922514 ], [ 365035.638899996876717, 256228.362399999052286 ], [ 365005.056500002741814, 256221.357099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704040900", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-6", "ACRE": "0.30", "LONGITUDE": -64.87298791000001, "LATITUDE": 18.33507394, "OBJECTID_1": 23625, "PARCEL_NO_": "105704040900", "Tax_Legal_": "ANNAS RETREAT 173C-6 NEW QTR.", "Name": "DURANT, OCINTO & LEAH", "Address": "PO Box 10518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49300, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.03144007099999, "SHAPE_Area": 1082.00829196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364896.177400000393391, 256223.632399998605251 ], [ 364901.787399999797344, 256227.689100001007318 ], [ 364908.182099997997284, 256234.285300001502037 ], [ 364916.99040000140667, 256241.534600000828505 ], [ 364931.423100002110004, 256251.151900000870228 ], [ 364939.455700002610683, 256254.806200001388788 ], [ 364948.309000000357628, 256256.778499998152256 ], [ 364951.012000001966953, 256223.447900000959635 ], [ 364896.177400000393391, 256223.632399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105503050900", "MAP": "D9-6179-T97", "PARCEL_NAM": "6 REM", "ACRE": ".822", "LONGITUDE": -64.90784176, "LATITUDE": 18.33492176, "OBJECTID_1": 20206, "PARCEL_NO_": "105503050900", "Tax_Legal_": "REM OF 6&10 EST.RAPHUNE 5BA NEW QTR.", "Name": "ST THOMAS LIQUOR CO LTD", "Address": "6862 E Tawa St", "City": "Tucson", "State": "Arizona", "Zip": 85715, "Country": "United States", "Land_Value": 261400, "Improved_V": 1837700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.09349261099999, "SHAPE_Area": 3863.3661328799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361271.165500000119209, 256174.120600000023842 ], [ 361251.173199996352196, 256154.536299999803305 ], [ 361197.10530000180006, 256159.371199999004602 ], [ 361200.280199997127056, 256165.307799998670816 ], [ 361201.883799999952316, 256166.376400001347065 ], [ 361233.728100001811981, 256214.55519999936223 ], [ 361238.533600002527237, 256218.394200000911951 ], [ 361244.16160000115633, 256220.34010000154376 ], [ 361267.526699997484684, 256222.642299998551607 ], [ 361284.428700000047684, 256226.369199998676777 ], [ 361281.555900000035763, 256184.971400000154972 ], [ 361271.165500000119209, 256174.120600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804042600", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-108", "ACRE": "0.37", "LONGITUDE": -64.85611511, "LATITUDE": 18.33504748, "OBJECTID_1": 24703, "PARCEL_NO_": "105804042600", "Tax_Legal_": "SMITH BAY 19-2-108 EAST END QTR.", "Name": "DONADELLE, LAVERNE", "Address": "PO Box 11973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37700, "Improved_V": 176600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.95347622200001, "SHAPE_Area": 1477.56859274 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366744.119699999690056, 256253.533500000834465 ], [ 366716.145099997520447, 256224.384700000286102 ], [ 366684.540700003504753, 256242.702199999243021 ], [ 366701.300599999725819, 256263.104400001466274 ], [ 366715.749499998986721, 256270.822000000625849 ], [ 366727.903499998152256, 256263.955400001257658 ], [ 366736.009800001978874, 256258.95549999922514 ], [ 366744.119699999690056, 256253.533500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703086200", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-33", "ACRE": "0.24", "LONGITUDE": -64.87806262, "LATITUDE": 18.33511421, "OBJECTID_1": 23322, "PARCEL_NO_": "105703086200", "Tax_Legal_": "ANNAS RETREAT 173C-33 NEW QTR.", "Name": "GARVEY, CALVIN", "Address": "P.O. BOX 4243", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.97178246199999, "SHAPE_Area": 796.75292650999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364412.321599997580051, 256227.693799998611212 ], [ 364401.873700000345707, 256223.597500000149012 ], [ 364376.480800002813339, 256223.521000001579523 ], [ 364379.883799999952316, 256249.170899998396635 ], [ 364386.346900001168251, 256247.746199999004602 ], [ 364393.605499997735023, 256247.594500001519918 ], [ 364404.071400001645088, 256249.579999998211861 ], [ 364408.08500000089407, 256251.723799999803305 ], [ 364412.321599997580051, 256227.693799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703085400", "MAP": "C9-275A-T82", "PARCEL_NAM": "173C-23", "ACRE": "0.23", "LONGITUDE": -64.87611366, "LATITUDE": 18.33502465, "OBJECTID_1": 23314, "PARCEL_NO_": "105703085400", "Tax_Legal_": "ANNAS RETREAT 173C-23 NEW QTR.", "Name": "VANBEVERHOUDT, SEDALIA", "Address": "PO Box 8443", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.10032857900001, "SHAPE_Area": 1173.1530256399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364621.043200001120567, 256242.7010000012815 ], [ 364605.249600000679493, 256203.519400000572205 ], [ 364580.190999999642372, 256210.702599998563528 ], [ 364595.151299998164177, 256253.043699998408556 ], [ 364621.043200001120567, 256242.7010000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704040700", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-4", "ACRE": "0.23", "LONGITUDE": -64.87243012, "LATITUDE": 18.33507588, "OBJECTID_1": 23623, "PARCEL_NO_": "105704040700", "Tax_Legal_": "ANNAS RETREAT 173C-4 NEW QTR", "Name": "EMANUEL, PATRICIA & JUSTIN", "Address": "96 Centre St", "City": "Roxbury", "State": "Massachusetts", "Zip": 2119, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.92747291800001, "SHAPE_Area": 857.50190938799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365005.056500002741814, 256221.357099998742342 ], [ 365000.227600000798702, 256220.262099999934435 ], [ 364976.830200001597404, 256221.759399998933077 ], [ 364975.747000001370907, 256254.258900001645088 ], [ 364987.047899998724461, 256252.873700000345707 ], [ 365000.755199998617172, 256252.98589999973774 ], [ 365005.056500002741814, 256221.357099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804043100", "MAP": "D9-5267-T92", "PARCEL_NAM": "19-2-118", "ACRE": "0.31", "LONGITUDE": -64.85695402, "LATITUDE": 18.33495995, "OBJECTID_1": 24708, "PARCEL_NO_": "105804043100", "Tax_Legal_": "19-2-118 ESTATE SMITH BAY 1,2,&3 EASTEND QTR.", "Name": "PILLBURY HEIGHTS 118 LLC.", "Address": "614 W Lake St", "City": "Minneapolis", "State": "Minnesota", "Zip": 55408, "Country": "United States", "Land_Value": 36300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.402165271, "SHAPE_Area": 1324.21532824 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366634.790200002491474, 256214.008499998599291 ], [ 366630.726300001144409, 256217.774900000542402 ], [ 366626.6858000010252, 256218.7972999997437 ], [ 366622.663199998438358, 256217.708999998867512 ], [ 366620.255000002682209, 256216.422699999064207 ], [ 366609.02419999986887, 256209.575800001621246 ], [ 366609.559000000357628, 256241.455299999564886 ], [ 366623.871200002729893, 256265.214899998158216 ], [ 366640.830799996852875, 256262.187300000339746 ], [ 366639.574199996888638, 256220.380499999970198 ], [ 366634.790200002491474, 256214.008499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704015200", "MAP": "B9-94-T63", "PARCEL_NAM": "57B-27", "ACRE": "0.35", "LONGITUDE": -64.87090349, "LATITUDE": 18.33498893, "OBJECTID_1": 23497, "PARCEL_NO_": "105704015200", "Tax_Legal_": "SMITH BAY 57B-27 1,2&3 EAST END QTR", "Name": "TIRSCHEK, SPENCER JOSEPH and MICHELE R.", "Address": "8592 WOODVIEW DRIVE", "City": "Cincinnati", "State": "Ohio", "Zip": 452315027, "Country": "United States", "Land_Value": 66800, "Improved_V": 258500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.14470691099999, "SHAPE_Area": 1769.58143651 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365178.316600002348423, 256234.174199998378754 ], [ 365165.712300002574921, 256199.240600001066923 ], [ 365132.497000001370907, 256217.33390000090003 ], [ 365124.999300003051758, 256221.437800001353025 ], [ 365135.481100000441074, 256258.403200000524521 ], [ 365145.905900001525879, 256252.485199999064207 ], [ 365178.316600002348423, 256234.174199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804043200", "MAP": "D9-5267-T92", "PARCEL_NAM": "19-2-117", "ACRE": "0.38", "LONGITUDE": -64.85665319, "LATITUDE": 18.33492995, "OBJECTID_1": 24709, "PARCEL_NO_": "105804043200", "Tax_Legal_": "SMITH BAY 19-2-117 EASTEND QUARTER", "Name": "CROOKE, CLIFFORD", "Address": "PO Box 503271", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 50800, "Improved_V": 230000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.397995804, "SHAPE_Area": 1596.28987459 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366684.540700003504753, 256242.702199999243021 ], [ 366660.674999997019768, 256204.510099999606609 ], [ 366656.625399999320507, 256206.587900001555681 ], [ 366655.005599997937679, 256207.418999999761581 ], [ 366650.135399997234344, 256211.178800001740456 ], [ 366639.574199996888638, 256220.380499999970198 ], [ 366640.830799996852875, 256262.187300000339746 ], [ 366657.790299996733665, 256259.159699998795986 ], [ 366669.163199998438358, 256249.331399999558926 ], [ 366684.540700003504753, 256242.702199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703085300", "MAP": "C9-275A-T82-2", "PARCEL_NAM": "173C-22", "ACRE": "0.23", "LONGITUDE": -64.8758759, "LATITUDE": 18.33494172, "OBJECTID_1": 23313, "PARCEL_NO_": "105703085300", "Tax_Legal_": "ANNAS RETREAT 173C-22 NEW QTR.", "Name": "SMITH, HENRY", "Address": "9329 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.46243441600001, "SHAPE_Area": 1078.43501857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364646.134199999272823, 256231.718400001525879 ], [ 364630.308200001716614, 256196.336199998855591 ], [ 364605.249600000679493, 256203.519400000572205 ], [ 364621.043200001120567, 256242.7010000012815 ], [ 364646.134199999272823, 256231.718400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604031900", "MAP": "D9-6130-T96", "PARCEL_NAM": "10 REM", "ACRE": null, "LONGITUDE": -64.88918299, "LATITUDE": 18.33472711, "OBJECTID_1": 21791, "PARCEL_NO_": "105604031900", "Tax_Legal_": "10 CHARLOTTE AMALIE No.3 NEW QTR.", "Name": "TJ OCEAN AUTO IV LLC", "Address": "4523 Estate Charlotte Amaile", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 274400, "Improved_V": 992500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.30620545099998, "SHAPE_Area": 5078.9034838899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363215.641599997878075, 256136.417399998754263 ], [ 363192.836499996483326, 256163.039700001478195 ], [ 363184.656499996781349, 256176.693799998611212 ], [ 363183.031300000846386, 256178.158100001513958 ], [ 363179.755699999630451, 256184.041999999433756 ], [ 363178.1233000010252, 256186.350600000470877 ], [ 363199.532300002872944, 256228.955699998885393 ], [ 363201.146700002253056, 256228.757800001651049 ], [ 363210.829700000584126, 256227.992600001394749 ], [ 363245.529899999499321, 256224.89919999986887 ], [ 363242.428700000047684, 256210.308299999684095 ], [ 363249.868900001049042, 256188.837699998170137 ], [ 363255.642599999904633, 256173.686200000345707 ], [ 363246.159199997782707, 256151.021600000560284 ], [ 363241.423900000751019, 256138.950500000268221 ], [ 363228.600199997425079, 256129.768500000238419 ], [ 363215.641599997878075, 256136.417399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804042700", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-109", "ACRE": "0.39", "LONGITUDE": -64.85583312, "LATITUDE": 18.33482514, "OBJECTID_1": 24704, "PARCEL_NO_": "105804042700", "Tax_Legal_": "19-2-109 ESTATE SMITH BAY 1,2,& 3 EAST END QTR.", "Name": "XAVIER, PHILLIP", "Address": "6197 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.49347535699999, "SHAPE_Area": 1646.0761238 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366775.934500001370907, 256210.51969999819994 ], [ 366763.820000000298023, 256212.742499999701977 ], [ 366738.142099998891354, 256197.966899998486042 ], [ 366716.145099997520447, 256224.384700000286102 ], [ 366744.119699999690056, 256253.533500000834465 ], [ 366745.7449000030756, 256252.069099999964237 ], [ 366751.443000003695488, 256245.782900001853704 ], [ 366755.517700001597404, 256240.75 ], [ 366764.489699997007847, 256228.79109999909997 ], [ 366767.765299998223782, 256222.907299999147654 ], [ 366771.836400002241135, 256218.296599999070168 ], [ 366775.934500001370907, 256210.51969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804042000", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-100", "ACRE": "0.30", "LONGITUDE": -64.85531143, "LATITUDE": 18.33486067, "OBJECTID_1": 24698, "PARCEL_NO_": "105804042000", "Tax_Legal_": "19-2-100 ESTATE SMITH BAY 1, 2, & 3 EAST END", "Name": "HENRY SR., ALSON", "Address": "PO BOX 8596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.347211246, "SHAPE_Area": 1147.20054265 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366825.011699996888638, 256223.586899999529123 ], [ 366788.052599996328354, 256207.874600000679493 ], [ 366779.861800000071526, 256222.795200001448393 ], [ 366773.335699997842312, 256231.607700001448393 ], [ 366790.205399997532368, 256239.134100001305342 ], [ 366804.614699997007847, 256251.49549999833107 ], [ 366824.181999996304512, 256226.324400000274181 ], [ 366825.011699996888638, 256223.586899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032100", "MAP": null, "PARCEL_NAM": "10-1-5", "ACRE": null, "LONGITUDE": -64.88837578, "LATITUDE": 18.33488696, "OBJECTID_1": 21793, "PARCEL_NO_": "105604032100", "Tax_Legal_": "CHARLOTTE AMALIE 10-1-5 No.3 NEW QTR.", "Name": "MAGRAS, HENRY & ANGELINA-TRUSTEES", "Address": "PO Box 302053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 189800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.72296291399999, "SHAPE_Area": 1479.6290393100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363337.524999998509884, 256216.786200001835823 ], [ 363304.779100000858307, 256179.787900000810623 ], [ 363300.769100002944469, 256177.221900001168251 ], [ 363298.586499996483326, 256173.984600000083447 ], [ 363296.108800001442432, 256166.77250000089407 ], [ 363293.51070000231266, 256173.810899998992682 ], [ 363286.848399996757507, 256189.768899999558926 ], [ 363283.219700001180172, 256194.107599999755621 ], [ 363287.700099997222424, 256221.285399999469519 ], [ 363337.524999998509884, 256216.786200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703085200", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-21", "ACRE": "0.23", "LONGITUDE": -64.87563059, "LATITUDE": 18.33483756, "OBJECTID_1": 23312, "PARCEL_NO_": "105703085200", "Tax_Legal_": "ANNAS RETREAT 173C-21 NEW QTR.", "Name": "MASSICOTT, CHARMAINE", "Address": "PO Box 8161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.14969463, "SHAPE_Area": 1131.2841044700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364668.78830000013113, 256222.826799999922514 ], [ 364662.668600000441074, 256183.935499999672174 ], [ 364630.308200001716614, 256196.336199998855591 ], [ 364646.134199999272823, 256231.718400001525879 ], [ 364658.275600001215935, 256226.329300001263618 ], [ 364668.78830000013113, 256222.826799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704015300", "MAP": "B9-94-T63", "PARCEL_NAM": "57B-28", "ACRE": "0.34", "LONGITUDE": -64.87057331, "LATITUDE": 18.33479683, "OBJECTID_1": 23498, "PARCEL_NO_": "105704015300", "Tax_Legal_": "SMITH BAY 57B-28 EAST END QTR", "Name": "HANCOCK, DONALD & SARAH", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.196467536, "SHAPE_Area": 1196.8990891000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365202.70380000025034, 256211.153499998152256 ], [ 365198.927599996328354, 256181.147300001233816 ], [ 365165.712300002574921, 256199.240600001066923 ], [ 365178.316600002348423, 256234.174199998378754 ], [ 365192.902199998497963, 256225.849800001829863 ], [ 365200.216499999165535, 256219.154699999839067 ], [ 365201.856100000441074, 256216.0016999989748 ], [ 365203.479500003159046, 256214.748399998992682 ], [ 365202.70380000025034, 256211.153499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88801779000001, "LATITUDE": 18.3348447, "OBJECTID_1": 21795, "PARCEL_NO_": "105604032300", "Tax_Legal_": "10 1 6 CHARLOTTE AMALIE NEW QTR", "Name": "SMITH, HENRY & MARION L", "Address": "PO BOX 502053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21200, "Improved_V": 307100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.14286177899999, "SHAPE_Area": 1527.5285623499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363373.031499996781349, 256213.699299998581409 ], [ 363366.717699997127056, 256197.604499999433756 ], [ 363344.322599999606609, 256176.100699998438358 ], [ 363328.964900001883507, 256180.407999999821186 ], [ 363314.433300003409386, 256182.399999998509884 ], [ 363310.403499998152256, 256182.155900001525879 ], [ 363304.779100000858307, 256179.787900000810623 ], [ 363337.524999998509884, 256216.786200001835823 ], [ 363353.663900002837181, 256215.440600000321865 ], [ 363373.031499996781349, 256213.699299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704015400", "MAP": "B9-94-63", "PARCEL_NAM": "57B-29", "ACRE": "0.54", "LONGITUDE": -64.87017943, "LATITUDE": 18.33465925, "OBJECTID_1": 23499, "PARCEL_NO_": "105704015400", "Tax_Legal_": "SMITH BAY 57B-29 EAST END QTR", "Name": "TURNBULL, SHELDON & MATTHEW, DIANE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82400, "Improved_V": 162700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.41207238300001, "SHAPE_Area": 2563.2359196100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365253.528399996459484, 256208.403099998831749 ], [ 365247.536499999463558, 256154.525199998170137 ], [ 365198.927599996328354, 256181.147300001233816 ], [ 365202.70380000025034, 256211.153499998152256 ], [ 365211.603799998760223, 256207.637800000607967 ], [ 365214.7246999964118, 256219.906700000166893 ], [ 365213.007799997925758, 256232.136100001633167 ], [ 365253.528399996459484, 256208.403099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804043300", "MAP": "D9-5267-T92", "PARCEL_NAM": "19-2-116", "ACRE": "0.31", "LONGITUDE": -64.85636609, "LATITUDE": 18.33477773, "OBJECTID_1": 24710, "PARCEL_NO_": "105804043300", "Tax_Legal_": "SMITH BAY 19-2-116 EASTEND QTR.", "Name": "PETERSEN, ABIGAIL M. NIBBS", "Address": "115-93 224th St", "City": "Cambria Heights", "State": "New York", "Zip": 11411, "Country": "United States", "Land_Value": 41400, "Improved_V": 229900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.315144094, "SHAPE_Area": 1307.27508814 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366716.145099997520447, 256224.384700000286102 ], [ 366690.569700002670288, 256197.577599998563528 ], [ 366687.335400000214577, 256198.606600001454353 ], [ 366660.674999997019768, 256204.510099999606609 ], [ 366684.540700003504753, 256242.702199999243021 ], [ 366716.145099997520447, 256224.384700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105603030200", "MAP": null, "PARCEL_NAM": "C-5", "ACRE": null, "LONGITUDE": -64.89889809, "LATITUDE": 18.33436292, "OBJECTID_1": 21569, "PARCEL_NO_": "105603030200", "Tax_Legal_": "HOFFMAN C-5 NEW QTR", "Name": "CHURCH OF GOD PROPHECY", "Address": "PO Box 7434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 457800, "Improved_V": 497600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.215388835, "SHAPE_Area": 8851.1185277700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362163.571800000965595, 256202.744899999350309 ], [ 362177.264700002968311, 256204.545800000429153 ], [ 362199.832500003278255, 256205.785900000482798 ], [ 362219.200199998915195, 256204.044599998742342 ], [ 362224.056000001728535, 256201.973400000482798 ], [ 362226.501999996602535, 256198.826999999582767 ], [ 362227.346000000834465, 256194.401000000536442 ], [ 362220.369000002741814, 256066.843400001525879 ], [ 362214.757200002670288, 256062.997800000011921 ], [ 362210.734600000083447, 256061.909400001168251 ], [ 362159.11259999871254, 256063.597800001502037 ], [ 362161.040700003504753, 256121.24210000038147 ], [ 362163.571800000965595, 256202.744899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603020100", "MAP": null, "PARCEL_NAM": "4", "ACRE": null, "LONGITUDE": -64.89628161, "LATITUDE": 18.33486194, "OBJECTID_1": 21548, "PARCEL_NO_": "105603020100", "Tax_Legal_": "4 ESTATE CHARLOTTE AMALIE NEW QUARTER", "Name": "BOSTIC, RAPHAEL W", "Address": "2193 Azalea Cir", "City": "Decatur", "State": "Georgia", "Zip": 30033, "Country": "United States", "Land_Value": 179700, "Improved_V": 29800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.468878856, "SHAPE_Area": 2582.4358432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362506.960600003600121, 256169.242499999701977 ], [ 362366.791299998760223, 256201.030699998140335 ], [ 362395.843800000846386, 256198.313200000673532 ], [ 362412.778099998831749, 256198.240699999034405 ], [ 362427.282799996435642, 256199.414900001138449 ], [ 362446.605499997735023, 256202.950500000268221 ], [ 362469.160700000822544, 256205.668200001120567 ], [ 362487.696800000965595, 256206.875399999320507 ], [ 362509.467299997806549, 256207.053599998354912 ], [ 362516.72410000115633, 256207.113000001758337 ], [ 362506.960600003600121, 256169.242499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89536985, "LATITUDE": 18.33472554, "OBJECTID_1": 21549, "PARCEL_NO_": "105603020200", "Tax_Legal_": "ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 398600, "Improved_V": 1300200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.10905864, "SHAPE_Area": 5592.2815696199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362608.448499999940395, 256165.871399998664856 ], [ 362605.137000001966953, 256132.355399999767542 ], [ 362595.411899998784065, 256136.009399998933077 ], [ 362506.960600003600121, 256169.242499999701977 ], [ 362516.72410000115633, 256207.113000001758337 ], [ 362612.269100002944469, 256206.537799999117851 ], [ 362612.430600002408028, 256206.174499999731779 ], [ 362609.397200003266335, 256175.472899999469519 ], [ 362608.448499999940395, 256165.871399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88771971, "LATITUDE": 18.33476448, "OBJECTID_1": 21800, "PARCEL_NO_": "105604032800", "Tax_Legal_": "10 1 7 CHARLOTTE AMALIE NEW QTR", "Name": "SCATLIFFE, EDWARD & MEDINA", "Address": "PO Box 502102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21600, "Improved_V": 132000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.071413382, "SHAPE_Area": 1341.23419661 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363392.39919999986887, 256211.957899998873472 ], [ 363394.186300002038479, 256191.496500000357628 ], [ 363373.466700002551079, 256162.618200000375509 ], [ 363358.88289999961853, 256170.731499999761581 ], [ 363344.322599999606609, 256176.100699998438358 ], [ 363366.717699997127056, 256197.604499999433756 ], [ 363373.031499996781349, 256213.699299998581409 ], [ 363392.39919999986887, 256211.957899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105603030100", "MAP": null, "PARCEL_NAM": "C-4", "ACRE": null, "LONGITUDE": -64.89942459, "LATITUDE": 18.3345853, "OBJECTID_1": 21568, "PARCEL_NO_": "105603030100", "Tax_Legal_": "HOFFMAN C-4 2B NEW QTR", "Name": "CHURCH/LATTER DAY SAINTS", "Address": "PO Box 4372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 459100, "Improved_V": 277400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.90348224799999, "SHAPE_Area": 3994.93693652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362161.040700003504753, 256121.24210000038147 ], [ 362106.227600000798702, 256118.893699999898672 ], [ 362106.909800000488758, 256133.464699998497963 ], [ 362110.136900000274181, 256133.280000001192093 ], [ 362112.075699999928474, 256189.657900001853704 ], [ 362124.132600001990795, 256194.189500000327826 ], [ 362138.613899998366833, 256198.107700001448393 ], [ 362163.571800000965595, 256202.744899999350309 ], [ 362161.040700003504753, 256121.24210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603021000", "MAP": "G9-2427-T74", "PARCEL_NAM": "3C", "ACRE": null, "LONGITUDE": -64.89477073, "LATITUDE": 18.3348002, "OBJECTID_1": 21556, "PARCEL_NO_": "105603021000", "Tax_Legal_": "3C EST CHARLOTTE AMALIE NEW QTR", "Name": "ERIK & TARA MILES REVOCABLE TRUST", "Address": "PO Box 502666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19900, "Improved_V": 237600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.02944168400001, "SHAPE_Area": 1435.2451069000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362643.70610000193119, 256167.0337999984622 ], [ 362608.448499999940395, 256165.871399998664856 ], [ 362609.397200003266335, 256175.472899999469519 ], [ 362612.430600002408028, 256206.174499999731779 ], [ 362612.269100002944469, 256206.537799999117851 ], [ 362620.751000002026558, 256206.486699998378754 ], [ 362650.609700001776218, 256203.775800000876188 ], [ 362645.983999997377396, 256178.828899998217821 ], [ 362644.430799998342991, 256171.850099999457598 ], [ 362643.70610000193119, 256167.0337999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88744576000001, "LATITUDE": 18.33472571, "OBJECTID_1": 21801, "PARCEL_NO_": "105604032900", "Tax_Legal_": "10-1-8 CHARLOTTE AMALIE NEW QTR", "Name": "GIBBONS, YVONNE B. & STEVE S", "Address": "3C-115 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.90925445900001, "SHAPE_Area": 1751.9441046100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363435.167900003492832, 256208.297200001776218 ], [ 363396.948700003325939, 256151.200199998915195 ], [ 363378.33330000191927, 256159.280499998480082 ], [ 363373.466700002551079, 256162.618200000375509 ], [ 363394.186300002038479, 256191.496500000357628 ], [ 363392.39919999986887, 256211.957899998873472 ], [ 363435.167900003492832, 256208.297200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105603031100", "MAP": null, "PARCEL_NAM": "C-12-2", "ACRE": null, "LONGITUDE": -64.89825013, "LATITUDE": 18.33426123, "OBJECTID_1": 21576, "PARCEL_NO_": "105603031100", "Tax_Legal_": "C-12-2 ESTATE HOFFMAN NEW QTR.", "Name": "THE EST. HOFFMAN/NULLYBERG DEVP", "Address": "PO Box 642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 187600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 389.938425763, "SHAPE_Area": 6214.5227568700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362227.668999999761581, 256061.836899999529123 ], [ 362228.45549999922514, 256064.165300000458956 ], [ 362235.402000002563, 256195.311299998313189 ], [ 362236.193899996578693, 256197.006499998271465 ], [ 362238.589500002563, 256199.770300000905991 ], [ 362240.997599996626377, 256201.056600000709295 ], [ 362245.025600001215935, 256201.511799998581409 ], [ 362241.829099997878075, 256198.1081000007689 ], [ 362240.322599999606609, 256185.64130000025034 ], [ 362244.42960000038147, 256176.808899998664856 ], [ 362250.935900002717972, 256170.318300001323223 ], [ 362261.453900001943111, 256166.182500001043081 ], [ 362307.519799999892712, 256154.105000000447035 ], [ 362306.272200003266335, 256111.242800001055002 ], [ 362282.088200002908707, 256110.41160000115633 ], [ 362281.359300002455711, 256101.328600000590086 ], [ 362278.205899998545647, 256092.859099999070168 ], [ 362274.231899999082088, 256086.07149999961257 ], [ 362263.056800000369549, 256072.681200001388788 ], [ 362255.844999998807907, 256067.344799999147654 ], [ 362248.616899996995926, 256063.90819999948144 ], [ 362238.961000002920628, 256061.507100000977516 ], [ 362227.668999999761581, 256061.836899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107501020400", "MAP": "A9-492-T96", "PARCEL_NAM": "C-12-1", "ACRE": ".509", "LONGITUDE": -64.89808376000001, "LATITUDE": 18.33478703, "OBJECTID_1": 37475, "PARCEL_NO_": "107501020400", "Tax_Legal_": "C-12-1 ESTATE HOFFMAN 2B NEW QTR", "Name": "AYAH PLAZA LLC", "Address": "PO Box 305198", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035198, "Country": "United States", "Land_Value": 165000, "Improved_V": 357800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.62013280100001, "SHAPE_Area": 2524.0071400400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362245.025600001215935, 256201.511799998581409 ], [ 362268.419399999082088, 256200.436700001358986 ], [ 362309.530599996447563, 256202.039700001478195 ], [ 362307.519799999892712, 256154.105000000447035 ], [ 362261.453900001943111, 256166.182500001043081 ], [ 362250.935900002717972, 256170.318300001323223 ], [ 362244.42960000038147, 256176.808899998664856 ], [ 362240.322599999606609, 256185.64130000025034 ], [ 362241.829099997878075, 256198.1081000007689 ], [ 362245.025600001215935, 256201.511799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603020400", "MAP": "G9-1102-T68", "PARCEL_NAM": "3A", "ACRE": null, "LONGITUDE": -64.89436786, "LATITUDE": 18.33483994, "OBJECTID_1": 21551, "PARCEL_NO_": "105603020400", "Tax_Legal_": "3A CHARLOTTE AMALIE NEW QTR", "Name": "MILES, DONNA LEE", "Address": "PO Box 502666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.121406971, "SHAPE_Area": 918.27081352599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362650.609700001776218, 256203.775800000876188 ], [ 362681.29280000180006, 256198.960700001567602 ], [ 362707.150499999523163, 256192.628400001674891 ], [ 362702.354000002145767, 256187.734000001102686 ], [ 362696.727799996733665, 256185.576999999582767 ], [ 362645.983999997377396, 256178.828899998217821 ], [ 362650.609700001776218, 256203.775800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604035100", "MAP": "D9-343-T62", "PARCEL_NAM": "2-1-A", "ACRE": ".22", "LONGITUDE": -64.89057651, "LATITUDE": 18.33477898, "OBJECTID_1": 21823, "PARCEL_NO_": "105604035100", "Tax_Legal_": "2-1,-2,-3,-5,-6,-7 CHARLOTTE AM. NEW QUARTER", "Name": "FORT MYLNER PROPERTIES, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 359400, "Improved_V": 141600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.04790455599999, "SHAPE_Area": 1152.41935954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363110.405599996447563, 256184.31870000064373 ], [ 363039.986000001430511, 256170.594900000840425 ], [ 363042.752700001001358, 256174.688000001013279 ], [ 363059.469499997794628, 256200.155999999493361 ], [ 363063.459700003266335, 256205.0439000017941 ], [ 363065.869599997997284, 256206.119100000709295 ], [ 363069.902999997138977, 256205.940999999642372 ], [ 363110.405599996447563, 256184.31870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88719257, "LATITUDE": 18.33458225, "OBJECTID_1": 21802, "PARCEL_NO_": "105604033000", "Tax_Legal_": "10-1-19 CHARLOTTE AMALIE NEW QTR", "Name": "EVERGREEN INVESTMENTS LLC", "Address": "399-8168 Pmb Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.58034970400001, "SHAPE_Area": 2244.2701439000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363454.970799997448921, 256155.474800001829863 ], [ 363418.846799999475479, 256136.391800001263618 ], [ 363416.397299997508526, 256139.960400000214577 ], [ 363410.713500000536442, 256144.557900000363588 ], [ 363396.948700003325939, 256151.200199998915195 ], [ 363435.167900003492832, 256208.297200001776218 ], [ 363444.044600002467632, 256207.525499999523163 ], [ 363454.970799997448921, 256155.474800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90630348000001, "LATITUDE": 18.33465057, "OBJECTID_1": 20382, "PARCEL_NO_": "105504010300", "Tax_Legal_": "5 RAPHUNE NO.5BA NEW QTR", "Name": "SHILLINGFORD LEWIS, LYDIA & ANTHONY I. SHILLINGFORD", "Address": "PO Box 303642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57200, "Improved_V": 124900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.12484451099999, "SHAPE_Area": 1607.4399672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361426.333599999547005, 256133.594000000506639 ], [ 361392.437899999320507, 256136.905200000852346 ], [ 361394.4324000030756, 256186.739599999040365 ], [ 361396.854999996721745, 256186.337200000882149 ], [ 361425.921800002455711, 256181.931099999696016 ], [ 361426.333599999547005, 256133.594000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032400", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-75", "ACRE": ".31", "LONGITUDE": -64.85970897, "LATITUDE": 18.33466028, "OBJECTID_1": 23941, "PARCEL_NO_": "105803032400", "Tax_Legal_": "19-2-75 ESTATE SMITH BAY NOS. 1 2 & 3 EAST END QTR.", "Name": "MADISON, JULIETTE B.", "Address": "5220 Kansas Ave NW", "City": "Washington", "State": "District of Columbia", "Zip": 20011, "Country": "United States", "Land_Value": 37500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.483302224, "SHAPE_Area": 1496.9897886700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366359.798100002110004, 256216.401900000870228 ], [ 366342.390100002288818, 256177.418200001120567 ], [ 366335.973800003528595, 256173.354899998754263 ], [ 366320.572899997234344, 256182.728100001811981 ], [ 366319.544799998402596, 256192.176300000399351 ], [ 366314.551100000739098, 256227.008400000631809 ], [ 366359.798100002110004, 256216.401900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89968373000001, "LATITUDE": 18.3346095, "OBJECTID_1": 20399, "PARCEL_NO_": "105504012100", "Tax_Legal_": "C-3 HOFFMAN 2B NEW QTR", "Name": "SHINNERY, ULRIC (LIFE ESTATE)", "Address": "9154 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.050195153, "SHAPE_Area": 185.7802262 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362106.909800000488758, 256133.464699998497963 ], [ 362106.855899997055531, 256139.797100000083447 ], [ 362108.861299999058247, 256188.364999998360872 ], [ 362112.075699999928474, 256189.657900001853704 ], [ 362110.136900000274181, 256133.280000001192093 ], [ 362106.909800000488758, 256133.464699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504011500", "MAP": null, "PARCEL_NAM": "1A", "ACRE": null, "LONGITUDE": -64.89990181, "LATITUDE": 18.3345811, "OBJECTID_1": 20395, "PARCEL_NO_": "105504011500", "Tax_Legal_": "1A NEW HERHUT NEW QTR", "Name": "THOMAS, CHERYL J. W. & VIRGIL A. SHINNERY, SR", "Address": "9154 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33700, "Improved_V": 154500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.01736499899999, "SHAPE_Area": 2081.1329561299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362106.855899997055531, 256139.797100000083447 ], [ 362106.909800000488758, 256133.464699998497963 ], [ 362062.302199997007847, 256134.828499998897314 ], [ 362062.512299999594688, 256139.011900000274181 ], [ 362061.438100002706051, 256170.4560999982059 ], [ 362063.039899997413158, 256171.735800001770258 ], [ 362108.861299999058247, 256188.364999998360872 ], [ 362106.855899997055531, 256139.797100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804043400", "MAP": "D9-5267-T92", "PARCEL_NAM": "19-2-115", "ACRE": "0.24", "LONGITUDE": -64.85610733, "LATITUDE": 18.33461343, "OBJECTID_1": 24711, "PARCEL_NO_": "105804043400", "Tax_Legal_": "SMITH BAY 19-2-115 EAST END QUARTER", "Name": "WILLIAMS, ARTHUR E. & MARLINE E. A", "Address": "PO Box 502866", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 34300, "Improved_V": 476900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.77098875799999, "SHAPE_Area": 1062.68366339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366738.142099998891354, 256197.966899998486042 ], [ 366713.438100002706051, 256176.369199998676777 ], [ 366712.492899999022484, 256179.813999999314547 ], [ 366705.155199997127056, 256189.253199998289347 ], [ 366703.530000001192093, 256190.717599999159575 ], [ 366695.420100003480911, 256196.139600001275539 ], [ 366690.569700002670288, 256197.577599998563528 ], [ 366716.145099997520447, 256224.384700000286102 ], [ 366738.142099998891354, 256197.966899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105603021600", "MAP": "D9-4954-T90", "PARCEL_NAM": "3B-2", "ACRE": "0.26", "LONGITUDE": -64.89374779000001, "LATITUDE": 18.33458916, "OBJECTID_1": 21560, "PARCEL_NO_": "105603021600", "Tax_Legal_": "CHARLOTTE AMALIE 3B-2 NEW QUARTER", "Name": "MILES, DONNA LEE", "Address": "PO Box 502174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18500, "Improved_V": 184400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.05952950299999, "SHAPE_Area": 1504.6833687799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362754.98870000243187, 256144.845499999821186 ], [ 362730.512699998915195, 256133.771299999207258 ], [ 362727.790200002491474, 256136.224300000816584 ], [ 362716.844200000166893, 256190.596799999475479 ], [ 362719.261399999260902, 256190.8277000002563 ], [ 362731.384800001978874, 256187.549400001764297 ], [ 362751.571400001645088, 256184.337200000882149 ], [ 362754.98870000243187, 256144.845499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804042100", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-99", "ACRE": "0.38", "LONGITUDE": -64.85513764, "LATITUDE": 18.33463842, "OBJECTID_1": 24699, "PARCEL_NO_": "105804042100", "Tax_Legal_": "19-2-99 SMITH BAY EAST END QUARTER", "Name": "GEORGE, JEREMIAH & ELIZABETH", "Address": "PO Box 7792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38700, "Improved_V": 205500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.70226866, "SHAPE_Area": 1485.48061622 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366853.394400000572205, 256204.820799998939037 ], [ 366798.759400002658367, 256181.575599998235703 ], [ 366797.935099996626377, 256183.679800000041723 ], [ 366795.485600002110004, 256187.2483000010252 ], [ 366788.052599996328354, 256207.874600000679493 ], [ 366825.011699996888638, 256223.586899999529123 ], [ 366854.168399997055531, 256208.626800000667572 ], [ 366853.394400000572205, 256204.820799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504010600", "MAP": "D9-365-T63", "PARCEL_NAM": "REM of NEW HERNHUT", "ACRE": null, "LONGITUDE": -64.90137595, "LATITUDE": 18.32890059, "OBJECTID_1": 20386, "PARCEL_NO_": "105504010600", "Tax_Legal_": "ESTATE NEW HERNHUT NEW QUARTER", "Name": "MEM. MORAVIAN CHURCH", "Address": "PO Box 8330", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 785100, "Improved_V": 287800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1587.6224326199999, "SHAPE_Area": 139780.66020799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362079.04559999704361, 255239.466499999165535 ], [ 362076.973700001835823, 255198.708500001579523 ], [ 362051.01349999755621, 255217.072299998253584 ], [ 362042.08110000193119, 255224.38740000128746 ], [ 362035.569499999284744, 255231.511300001293421 ], [ 362020.973200000822544, 255241.102200001478195 ], [ 362008.829899996519089, 255246.702300000935793 ], [ 361936.593400001525879, 255301.839800000190735 ], [ 361898.479099996387959, 255327.070199999958277 ], [ 361883.882799997925758, 255336.660999998450279 ], [ 361765.251400001347065, 255465.311700001358986 ], [ 361751.299400001764297, 255761.74439999833703 ], [ 361751.828400000929832, 255780.547200001776218 ], [ 362028.862400002777576, 255718.139899998903275 ], [ 362028.887800000607967, 255718.134199999272823 ], [ 362038.337899997830391, 255716.005399998277426 ], [ 362098.027999997138977, 255702.559000000357628 ], [ 362097.859600000083447, 255697.470300000160933 ], [ 362095.826399996876717, 255636.037599999457598 ], [ 362079.679300002753735, 255259.736699998378754 ], [ 362079.04559999704361, 255239.466499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804040200", "MAP": "D9-3786-T86", "PARCEL_NAM": "19-C-B", "ACRE": "2.56", "LONGITUDE": -64.85433096, "LATITUDE": 18.33374794, "OBJECTID_1": 24691, "PARCEL_NO_": "105804040200", "Tax_Legal_": "SMITH BAY 19-C-B EASTEND QUARTER", "Name": "SNYDER, MAXINE", "Address": "7280 Romero Drive", "City": "La Jolla", "State": "California", "Zip": 92037, "Country": "United States", "Land_Value": 193700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 455.360092028, "SHAPE_Area": 10205.9377098 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366855.131599999964237, 256013.916600000113249 ], [ 366840.887800000607967, 256065.978100001811981 ], [ 366915.639499999582767, 256189.655699998140335 ], [ 366928.602700002491474, 256179.471900001168251 ], [ 366958.666400000452995, 256152.697900000959635 ], [ 366978.993199996650219, 256133.021499998867512 ], [ 366935.804799996316433, 256091.293699998408556 ], [ 366920.608900003135204, 256076.603900000452995 ], [ 366901.413900002837181, 256058.081599999219179 ], [ 366876.621399998664856, 256034.025100000202656 ], [ 366855.131599999964237, 256013.916600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105804043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85622139, "LATITUDE": 18.33428084, "OBJECTID_1": 24712, "PARCEL_NO_": "105804043500", "Tax_Legal_": "SMITH BAY 19-2-114 EAST END QUARTER", "Name": "THOMAS, BERNARD", "Address": "PO Box 223821", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 402.46235421400002, "SHAPE_Area": 1732.9659948799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366740.491999998688698, 256111.437800001353025 ], [ 366733.992899999022484, 256117.084100000560284 ], [ 366724.209299996495247, 256129.669700000435114 ], [ 366719.306699998676777, 256137.228900000452995 ], [ 366716.858999997377396, 256140.586399998515844 ], [ 366712.755500003695488, 256148.996500000357628 ], [ 366712.73929999768734, 256150.896200001239777 ], [ 366711.10869999974966, 256152.99379999935627 ], [ 366701.213600002229214, 256178.666299998760223 ], [ 366695.513599999248981, 256185.163499999791384 ], [ 366684.972199998795986, 256192.043299999088049 ], [ 366677.697400003671646, 256194.094700001180172 ], [ 366675.29110000282526, 256192.59739999845624 ], [ 366673.705399997532368, 256189.418000001460314 ], [ 366659.175599999725819, 256191.198899999260902 ], [ 366663.97749999910593, 256195.460099998861551 ], [ 366655.09910000115633, 256196.442899998277426 ], [ 366647.811700001358986, 256199.971799999475479 ], [ 366639.689300000667572, 256206.871399998664856 ], [ 366634.790200002491474, 256214.008499998599291 ], [ 366639.574199996888638, 256220.380499999970198 ], [ 366650.135399997234344, 256211.178800001740456 ], [ 366655.005599997937679, 256207.418999999761581 ], [ 366656.625399999320507, 256206.587900001555681 ], [ 366660.674999997019768, 256204.510099999606609 ], [ 366687.335400000214577, 256198.606600001454353 ], [ 366690.569700002670288, 256197.577599998563528 ], [ 366695.420100003480911, 256196.139600001275539 ], [ 366703.530000001192093, 256190.717599999159575 ], [ 366705.155199997127056, 256189.253199998289347 ], [ 366712.492899999022484, 256179.813999999314547 ], [ 366716.653999999165535, 256164.649399999529123 ], [ 366717.481899999082088, 256162.122999999672174 ], [ 366720.780799999833107, 256153.495200000703335 ], [ 366722.422200001776218, 256150.131099998950958 ], [ 366725.703199997544289, 256143.614100001752377 ], [ 366728.976999998092651, 256137.941300000995398 ], [ 366731.426500000059605, 256134.372800000011921 ], [ 366735.501299999654293, 256129.339899998158216 ], [ 366742.828199997544289, 256121.167199999094009 ], [ 366752.574100002646446, 256113.014299999922514 ], [ 366767.195600003004074, 256100.468400001525879 ], [ 366761.616099998354912, 256092.823399998247623 ], [ 366751.866700001060963, 256101.398400001227856 ], [ 366740.491999998688698, 256111.437800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804041400", "MAP": "D9-5267-T92", "PARCEL_NAM": "19E", "ACRE": "0.72", "LONGITUDE": -64.85702912000001, "LATITUDE": 18.33448875, "OBJECTID_1": 24692, "PARCEL_NO_": "105804041400", "Tax_Legal_": "SMITH BAY 19E EAST END QTR", "Name": "LINDQUIST, BETSY M", "Address": "PO Box 297", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 102700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.94346412600001, "SHAPE_Area": 2999.0525257600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366659.175599999725819, 256191.198899999260902 ], [ 366607.956399999558926, 256145.605700001120567 ], [ 366589.969400003552437, 256174.589400000870228 ], [ 366583.441600002348423, 256183.613000001758337 ], [ 366579.343500003218651, 256191.389899998903275 ], [ 366609.02419999986887, 256209.575800001621246 ], [ 366620.255000002682209, 256216.422699999064207 ], [ 366622.663199998438358, 256217.708999998867512 ], [ 366626.6858000010252, 256218.7972999997437 ], [ 366630.726300001144409, 256217.774900000542402 ], [ 366634.790200002491474, 256214.008499998599291 ], [ 366639.689300000667572, 256206.871399998664856 ], [ 366647.811700001358986, 256199.971799999475479 ], [ 366655.09910000115633, 256196.442899998277426 ], [ 366663.97749999910593, 256195.460099998861551 ], [ 366659.175599999725819, 256191.198899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105504010100", "MAP": "D9-6179-T79", "PARCEL_NAM": "6B", "ACRE": ".422", "LONGITUDE": -64.90730718, "LATITUDE": 18.33465371, "OBJECTID_1": 20375, "PARCEL_NO_": "105504010100", "Tax_Legal_": "6B RAPHUNE 5A NEW QTR", "Name": "ST THOMAS CO. //TREETOPS", "Address": "6862 E Tawa St", "City": "Tucson", "State": "Arizona", "Zip": 85715, "Country": "United States", "Land_Value": 137200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.77730042600001, "SHAPE_Area": 1995.17319692 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361342.401600003242493, 256141.772999998182058 ], [ 361251.173199996352196, 256154.536299999803305 ], [ 361271.165500000119209, 256174.120600000023842 ], [ 361345.405599996447563, 256167.762099999934435 ], [ 361342.401600003242493, 256141.772999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704015500", "MAP": "B9-94-T63", "PARCEL_NAM": "57B-30", "ACRE": "0.55", "LONGITUDE": -64.8696241, "LATITUDE": 18.33438083, "OBJECTID_1": 23500, "PARCEL_NO_": "105704015500", "Tax_Legal_": "SMITH BAY 57B-30 EAST END QTR", "Name": "WRIGHT, JULIE A", "Address": "6513 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68400, "Improved_V": 197200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.05257325000002, "SHAPE_Area": 4360.9334772000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365316.211000002920628, 256182.433499999344349 ], [ 365326.386399999260902, 256111.242899999022484 ], [ 365325.316500000655651, 256111.254299998283386 ], [ 365296.147200003266335, 256127.69200000166893 ], [ 365247.536499999463558, 256154.525199998170137 ], [ 365253.528399996459484, 256208.403099998831749 ], [ 365264.048299998044968, 256204.056200001388788 ], [ 365285.899599999189377, 256194.735800001770258 ], [ 365316.211000002920628, 256182.433499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603021700", "MAP": "D9-4954-T90", "PARCEL_NAM": "3B-1", "ACRE": "0.26", "LONGITUDE": -64.89405311, "LATITUDE": 18.33449759, "OBJECTID_1": 21561, "PARCEL_NO_": "105603021700", "Tax_Legal_": "CHARLOTTE AMALIE 3B-1,3B-3& 3REM. No.3 NEW QUARTER", "Name": "MILES, DONNA LEE", "Address": "PO Box 502174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.90113296499999, "SHAPE_Area": 1424.1840175100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362722.58110000193119, 256130.182700000703335 ], [ 362701.170699998736382, 256120.495600000023842 ], [ 362684.699600003659725, 256177.668099999427795 ], [ 362704.027699999511242, 256180.570500001311302 ], [ 362708.046700000762939, 256182.0810999982059 ], [ 362711.248599998652935, 256184.851500000804663 ], [ 362722.58110000193119, 256130.182700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032200", "MAP": null, "PARCEL_NAM": "10-1-3", "ACRE": null, "LONGITUDE": -64.88869236, "LATITUDE": 18.33452804, "OBJECTID_1": 21794, "PARCEL_NO_": "105604032200", "Tax_Legal_": "10 1 3 CHARLOTTE AMALIE NEW QTR", "Name": "JACKSON, EDRIS O", "Address": "PO Box 9377", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35800, "Improved_V": 166400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.84652938100001, "SHAPE_Area": 1831.6889066799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363297.876500003039837, 256138.145899999886751 ], [ 363272.087099999189377, 256136.45719999819994 ], [ 363246.159199997782707, 256151.021600000560284 ], [ 363255.642599999904633, 256173.686200000345707 ], [ 363249.868900001049042, 256188.837699998170137 ], [ 363280.517800003290176, 256188.033100001513958 ], [ 363297.876500003039837, 256138.145899999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603020300", "MAP": "D9-1210-T74", "PARCEL_NAM": "3E", "ACRE": "0.21", "LONGITUDE": -64.89332341, "LATITUDE": 18.33463125, "OBJECTID_1": 21550, "PARCEL_NO_": "105603020300", "Tax_Legal_": "3E ESTATE CHARLOTTE AMALIE NO.3 NEW QUARTER", "Name": "ERIK & TARA MILES REVOCABLE TRUST", "Address": "PO Box 502666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 34100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.966951639, "SHAPE_Area": 1806.0316946200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362819.453000001609325, 256167.126600001007318 ], [ 362755.840999998152256, 256145.231100000441074 ], [ 362754.98870000243187, 256144.845499999821186 ], [ 362751.571400001645088, 256184.337200000882149 ], [ 362775.778800003230572, 256182.424300000071526 ], [ 362819.3141999989748, 256183.413899999111891 ], [ 362819.453000001609325, 256167.126600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604035100", "MAP": null, "PARCEL_NAM": "2-1", "ACRE": null, "LONGITUDE": -64.89039784000001, "LATITUDE": 18.33444679, "OBJECTID_1": 21823, "PARCEL_NO_": "105604035100", "Tax_Legal_": "2-1,-2,-3,-5,-6,-7 CHARLOTTE AM. NEW QUARTER", "Name": "FORT MYLNER PROPERTIES, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 359400, "Improved_V": 141600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.06881875599998, "SHAPE_Area": 5763.9499857800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363039.986000001430511, 256170.594900000840425 ], [ 363110.405599996447563, 256184.31870000064373 ], [ 363133.083099998533726, 256172.683100000023842 ], [ 363162.254199996590614, 256156.034400001168251 ], [ 363123.804700002074242, 256125.95549999922514 ], [ 363050.478900000452995, 256119.655799999833107 ], [ 363043.064000003039837, 256120.19200000166893 ], [ 363034.786899998784065, 256155.114999998360872 ], [ 363031.527900002896786, 256158.082100000232458 ], [ 363039.986000001430511, 256170.594900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804042800", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-110", "ACRE": "0.37", "LONGITUDE": -64.85564465, "LATITUDE": 18.33450877, "OBJECTID_1": 24705, "PARCEL_NO_": "105804042800", "Tax_Legal_": "19-2-110 ESTATE SMITH BAY EASTEND QTR.", "Name": "SKINNER, RYAN", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60700, "Improved_V": 498600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.38728145, "SHAPE_Area": 1549.1429437500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366793.214100003242493, 256169.920000001788139 ], [ 366778.648299999535084, 256175.922499999403954 ], [ 366753.749700002372265, 256164.319699998944998 ], [ 366738.142099998891354, 256197.966899998486042 ], [ 366763.820000000298023, 256212.742499999701977 ], [ 366775.934500001370907, 256210.51969999819994 ], [ 366780.041599996387959, 256201.687300000339746 ], [ 366793.214100003242493, 256169.920000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603020900", "MAP": "D9-1210-T74", "PARCEL_NAM": "3D", "ACRE": "0.49", "LONGITUDE": -64.89431841, "LATITUDE": 18.33439721, "OBJECTID_1": 21555, "PARCEL_NO_": "105603020900", "Tax_Legal_": "3D CHARLOTTE AMALIE NEW QTR", "Name": "SHARP, DAVID L & ANN M", "Address": "PO Box 502312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 41600, "Improved_V": 217000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.19551955399999, "SHAPE_Area": 2167.51711656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362701.170699998736382, 256120.495600000023842 ], [ 362671.922899998724461, 256107.26240000128746 ], [ 362662.463600002229214, 256110.816500000655651 ], [ 362657.346100002527237, 256170.267099998891354 ], [ 362665.369699999690056, 256174.976799998432398 ], [ 362684.699600003659725, 256177.668099999427795 ], [ 362701.170699998736382, 256120.495600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603021100", "MAP": "F9-3423-T74", "PARCEL_NAM": "3F", "ACRE": null, "LONGITUDE": -64.89484146, "LATITUDE": 18.33447503, "OBJECTID_1": 21557, "PARCEL_NO_": "105603021100", "Tax_Legal_": "3F CHARLOTTE AMALIE NEW QTR", "Name": "ERIK & TARA MILES REVOCABLE TRUST", "Address": "PO Box 502666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18300, "Improved_V": 42400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.02850978800001, "SHAPE_Area": 987.37490985099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362625.767700001597404, 256145.418999999761581 ], [ 362624.549800001084805, 256125.061599999666214 ], [ 362616.305699996650219, 256128.159099999815226 ], [ 362605.137000001966953, 256132.355399999767542 ], [ 362608.448499999940395, 256165.871399998664856 ], [ 362643.70610000193119, 256167.0337999984622 ], [ 362642.904399998486042, 256161.705099999904633 ], [ 362642.180799998342991, 256151.988899998366833 ], [ 362629.295999996364117, 256149.983600001782179 ], [ 362625.767700001597404, 256145.418999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604035100", "MAP": "D9-343-T62", "PARCEL_NAM": "2-1-B", "ACRE": null, "LONGITUDE": -64.89096469, "LATITUDE": 18.33426933, "OBJECTID_1": 21823, "PARCEL_NO_": "105604035100", "Tax_Legal_": "2-1,-2,-3,-5,-6,-7 CHARLOTTE AM. NEW QUARTER", "Name": "FORT MYLNER PROPERTIES, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 359400, "Improved_V": 141600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.20417108300001, "SHAPE_Area": 785.40154463099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363043.064000003039837, 256120.19200000166893 ], [ 363045.370200000703335, 256110.400299999862909 ], [ 363034.936599999666214, 256110.773400001227856 ], [ 363026.134999997913837, 256111.088199999183416 ], [ 363017.857900001108646, 256138.002700001001358 ], [ 363018.858199998736382, 256139.873100001364946 ], [ 363022.038500003516674, 256145.176500000059605 ], [ 363023.626000002026558, 256148.144799999892712 ], [ 363026.826099999248981, 256151.126299999654293 ], [ 363031.527900002896786, 256158.082100000232458 ], [ 363034.786899998784065, 256155.114999998360872 ], [ 363043.064000003039837, 256120.19200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105503050900", "MAP": "D9-6179-T97", "PARCEL_NAM": "10 REM", "ACRE": ".349", "LONGITUDE": -64.90815147000001, "LATITUDE": 18.33453616, "OBJECTID_1": 20206, "PARCEL_NO_": "105503050900", "Tax_Legal_": "REM OF 6&10 EST.RAPHUNE 5BA NEW QTR.", "Name": "ST THOMAS LIQUOR CO LTD", "Address": "6862 E Tawa St", "City": "Tucson", "State": "Arizona", "Zip": 85715, "Country": "United States", "Land_Value": 261400, "Improved_V": 1837700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.43852112, "SHAPE_Area": 1297.74872491 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361251.173199996352196, 256154.536299999803305 ], [ 361227.185199998319149, 256130.697500001639128 ], [ 361181.1858000010252, 256134.96510000154376 ], [ 361197.10530000180006, 256159.371199999004602 ], [ 361251.173199996352196, 256154.536299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804042201", "MAP": "D9-5267-T92", "PARCEL_NAM": "19-2-98", "ACRE": "0.36", "LONGITUDE": -64.85506426000001, "LATITUDE": 18.33440156, "OBJECTID_1": 24700, "PARCEL_NO_": "105804042201", "Tax_Legal_": "SMITH BAY 19-2-98 EAST END QUARTER", "Name": "BARTLEY, MICHAEL & CECILIA", "Address": "PO Box 8899", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 56600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.831910964, "SHAPE_Area": 1466.42087268 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366845.557899996638298, 256178.158900000154972 ], [ 366842.435099996626377, 256166.100999999791384 ], [ 366807.868000000715256, 256153.574700001627207 ], [ 366801.2449000030756, 256173.785399999469519 ], [ 366798.759400002658367, 256181.575599998235703 ], [ 366853.394400000572205, 256204.820799998939037 ], [ 366845.557899996638298, 256178.158900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603021500", "MAP": "D9-5590-T93", "PARCEL_NAM": "3G", "ACRE": "0.33", "LONGITUDE": -64.89461245, "LATITUDE": 18.33437404, "OBJECTID_1": 21559, "PARCEL_NO_": "105603021500", "Tax_Legal_": "CHARLOTTE AMALIE 3G No.3 NEW QUARTER", "Name": "MILES, DONNA LEE", "Address": "PO Box 502174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 22300, "Improved_V": 179700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.46820618300001, "SHAPE_Area": 1452.22830176 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362624.549800001084805, 256125.061599999666214 ], [ 362625.767700001597404, 256145.418999999761581 ], [ 362629.295999996364117, 256149.983600001782179 ], [ 362642.180799998342991, 256151.988899998366833 ], [ 362642.904399998486042, 256161.705099999904633 ], [ 362644.430799998342991, 256171.850099999457598 ], [ 362647.66499999910593, 256170.821100000292063 ], [ 362657.346100002527237, 256170.267099998891354 ], [ 362662.463600002229214, 256110.816500000655651 ], [ 362624.549800001084805, 256125.061599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88819142, "LATITUDE": 18.33449569, "OBJECTID_1": 21798, "PARCEL_NO_": "105604032600", "Tax_Legal_": "CHARLOTTE AMALIE 10-1-16 NEW QTR", "Name": "McBEAN, BERNARD & RAYMOND, LULA P", "Address": "PO Box 11776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88200, "Improved_V": 242500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.856193803, "SHAPE_Area": 1148.81503527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363305.896499998867512, 256143.277800001204014 ], [ 363304.859999999403954, 256170.289299998432398 ], [ 363308.056500002741814, 256173.692999999970198 ], [ 363311.270900003612041, 256174.98589999973774 ], [ 363320.144000001251698, 256174.636300001293421 ], [ 363331.446699999272823, 256173.03999999910593 ], [ 363343.568400003015995, 256169.972899999469519 ], [ 363344.597699999809265, 256143.805700000375509 ], [ 363305.896499998867512, 256143.277800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105504012300", "MAP": "D9-6179-T79", "PARCEL_NAM": "10A", "ACRE": ".679", "LONGITUDE": -64.90743312, "LATITUDE": 18.3344198, "OBJECTID_1": 20401, "PARCEL_NO_": "105504012300", "Tax_Legal_": "10A RAPHUNE 5BA NEW QTR.", "Name": "ST. THOMAS LIQUOR LTD.", "Address": "PO Box 23", "City": "Ivy", "State": "Virginia", "Zip": 22945, "Country": "United States", "Land_Value": 196000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.91175431900001, "SHAPE_Area": 3163.5572363000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361342.401600003242493, 256141.772999998182058 ], [ 361339.426299996674061, 256112.406700000166893 ], [ 361257.929399996995926, 256118.705699998885393 ], [ 361258.658299997448921, 256127.788699999451637 ], [ 361227.185199998319149, 256130.697500001639128 ], [ 361251.173199996352196, 256154.536299999803305 ], [ 361342.401600003242493, 256141.772999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8878511, "LATITUDE": 18.3343162, "OBJECTID_1": 21799, "PARCEL_NO_": "105604032700", "Tax_Legal_": "CHARLOTTE AMALIE 10-1-17 NEW QTR", "Name": "Wayne and Verda J Bastain", "Address": "PO Box 502522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052522, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.55954963, "SHAPE_Area": 1582.50134198 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363379.199000000953674, 256152.32149999961257 ], [ 363375.510899998247623, 256111.972500000149012 ], [ 363346.454899996519089, 256115.112199999392033 ], [ 363344.597699999809265, 256143.805700000375509 ], [ 363343.568400003015995, 256169.972899999469519 ], [ 363358.130599997937679, 256164.392499998211861 ], [ 363379.199000000953674, 256152.32149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032700", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-76A", "ACRE": ".34", "LONGITUDE": -64.85925707, "LATITUDE": 18.33424829, "OBJECTID_1": 23944, "PARCEL_NO_": "105803032700", "Tax_Legal_": "SMITH BAY 19-2-76A EAST END QUARTER", "Name": "SEALEY, THEODORE,JR. & SYLVANIE SAMUEL SEALEY", "Address": "PO Box 302354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.01072973399999, "SHAPE_Area": 1579.09923742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366402.375500001013279, 256140.5456000007689 ], [ 366358.089500002563, 256133.006000000983477 ], [ 366358.861599996685982, 256137.02309999987483 ], [ 366358.750100001692772, 256150.109900001436472 ], [ 366357.931199997663498, 256151.580899998545647 ], [ 366397.881800003349781, 256194.759899999946356 ], [ 366402.375500001013279, 256140.5456000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803030300", "MAP": "D9-5271-T92", "PARCEL_NAM": null, "ACRE": ".25", "LONGITUDE": -64.85833418, "LATITUDE": 18.33750723, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.08087642800001, "SHAPE_Area": 1163.3593234800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366498.393399998545647, 256505.991900000721216 ], [ 366496.860799998044968, 256502.711100000888109 ], [ 366491.254399999976158, 256498.232200000435114 ], [ 366488.038199998438358, 256497.150400001555681 ], [ 366484.004799999296665, 256497.328499998897314 ], [ 366481.576899997889996, 256498.364100001752377 ], [ 366456.444499999284744, 256514.201499998569489 ], [ 366452.384199999272823, 256517.545800000429153 ], [ 366479.168099999427795, 256547.085900001227856 ], [ 366495.6199000030756, 256511.449499998241663 ], [ 366498.393399998545647, 256505.991900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87406967, "LATITUDE": 18.33759563, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.365324177000005, "SHAPE_Area": 556.06671158400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364830.848399996757507, 256509.12950000166893 ], [ 364802.701200000941753, 256500.244300000369549 ], [ 364799.404100000858307, 256508.660999998450279 ], [ 364796.958099998533726, 256511.807399999350309 ], [ 364819.364100001752377, 256532.044700000435114 ], [ 364830.848399996757507, 256509.12950000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87472102, "LATITUDE": 18.33750606, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.811085083500004, "SHAPE_Area": 419.56162042599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364754.178599998354912, 256516.734600000083447 ], [ 364751.986299999058247, 256490.118900001049042 ], [ 364749.567299999296665, 256490.09910000115633 ], [ 364736.662699997425079, 256490.415600001811981 ], [ 364738.048799999058247, 256517.02479999884963 ], [ 364754.178599998354912, 256516.734600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87401679, "LATITUDE": 18.33747351, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.454844790099997, "SHAPE_Area": 238.036772093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364830.131999999284744, 256498.568900000303984 ], [ 364830.166199997067451, 256494.558400001376867 ], [ 364802.724600002169609, 256497.500199999660254 ], [ 364802.701200000941753, 256500.244300000369549 ], [ 364830.848399996757507, 256509.12950000166893 ], [ 364830.131999999284744, 256498.568900000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703058400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-195", "ACRE": "0.11", "LONGITUDE": -64.87539455, "LATITUDE": 18.33694148, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.296672567100003, "SHAPE_Area": 395.187169536 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364681.233199998736382, 256426.275499999523163 ], [ 364676.730599999427795, 256426.385999999940395 ], [ 364667.443199999630451, 256426.632699999958277 ], [ 364667.560699999332428, 256454.386399999260902 ], [ 364681.935300000011921, 256454.638099998235703 ], [ 364681.233199998736382, 256426.275499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804030300", "MAP": "A9-228-T74", "PARCEL_NAM": "15R", "ACRE": null, "LONGITUDE": -64.85440026000001, "LATITUDE": 18.3359907, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.45184854299998, "SHAPE_Area": 4200.3750808900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366853.256700001657009, 256315.643800001591444 ], [ 366850.819799996912479, 256317.7347999997437 ], [ 366848.42059999704361, 256315.393100000917912 ], [ 366841.113499999046326, 256321.243999999016523 ], [ 366893.041900001466274, 256378.241999998688698 ], [ 366924.178700000047684, 256414.804999999701977 ], [ 366930.695799998939037, 256407.047899998724461 ], [ 366940.463200002908707, 256396.361999999731779 ], [ 366944.532600000500679, 256391.962400000542402 ], [ 366875.178199999034405, 256298.091400001198053 ], [ 366853.256700001657009, 256315.643800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604036800", "MAP": "D9-6124-T96", "PARCEL_NAM": "10-2-B", "ACRE": null, "LONGITUDE": -64.88951424, "LATITUDE": 18.33548228, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.286570826, "SHAPE_Area": 4735.4234478500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363201.146700002253056, 256228.757800001651049 ], [ 363199.532300002872944, 256228.955699998885393 ], [ 363178.1233000010252, 256186.350600000470877 ], [ 363170.650700002908707, 256211.620700001716614 ], [ 363169.680799998342991, 256230.822299998253584 ], [ 363168.847499996423721, 256233.981899999082088 ], [ 363163.890900000929832, 256247.873500000685453 ], [ 363153.317100003361702, 256258.552700001746416 ], [ 363145.961400002241135, 256270.102600000798702 ], [ 363146.708400003612041, 256277.074799999594688 ], [ 363149.100400000810623, 256280.260800000280142 ], [ 363151.508500002324581, 256281.547100000083447 ], [ 363212.29559999704361, 256339.884199999272823 ], [ 363204.858199998736382, 256266.362799998372793 ], [ 363201.146700002253056, 256228.757800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504011600", "MAP": "F9-3224-T74", "PARCEL_NAM": "5B", "ACRE": "1.02", "LONGITUDE": -64.90597081, "LATITUDE": 18.33505905, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.68903933199999, "SHAPE_Area": 5126.6432565699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361426.333599999547005, 256133.594000000506639 ], [ 361425.921800002455711, 256181.931099999696016 ], [ 361426.301899999380112, 256231.96339999884367 ], [ 361425.965700000524521, 256271.435100000351667 ], [ 361444.492899999022484, 256273.697700001299381 ], [ 361466.268700003623962, 256273.242600001394749 ], [ 361458.614799998700619, 256130.480700001120567 ], [ 361426.333599999547005, 256133.594000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504011600", "MAP": "F9-3224-T74", "PARCEL_NAM": "5C", "ACRE": "1.03", "LONGITUDE": -64.90563427, "LATITUDE": 18.33500681, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 357.18574338299999, "SHAPE_Area": 5058.2279181599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361503.409400001168251, 256267.635999999940395 ], [ 361499.568499997258186, 256245.22859999909997 ], [ 361498.083499997854233, 256230.228799998760223 ], [ 361497.620700001716614, 256189.906199999153614 ], [ 361495.61710000038147, 256141.127199999988079 ], [ 361494.123199999332428, 256127.182799998670816 ], [ 361458.614799998700619, 256130.480700001120567 ], [ 361466.268700003623962, 256273.242600001394749 ], [ 361479.182300001382828, 256271.870700001716614 ], [ 361503.409400001168251, 256267.635999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105504010200", "MAP": "D9-6371-T98", "PARCEL_NAM": "5A REM", "ACRE": "0.717", "LONGITUDE": -64.90668199, "LATITUDE": 18.33474715, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.76612098300001, "SHAPE_Area": 2984.2908179900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361394.919799998402596, 256197.905999999493361 ], [ 361394.4324000030756, 256186.739599999040365 ], [ 361392.437899999320507, 256136.905200000852346 ], [ 361342.401600003242493, 256141.772999998182058 ], [ 361345.405599996447563, 256167.762099999934435 ], [ 361349.038400001823902, 256204.50899999961257 ], [ 361394.919799998402596, 256197.905999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804042501", "MAP": "D9-5266-T92", "PARCEL_NAM": "19-2-107", "ACRE": "0.36", "LONGITUDE": -64.85641935, "LATITUDE": 18.33521851, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.17324161600001, "SHAPE_Area": 1467.8677535700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366715.749499998986721, 256270.822000000625849 ], [ 366701.300599999725819, 256263.104400001466274 ], [ 366684.540700003504753, 256242.702199999243021 ], [ 366669.163199998438358, 256249.331399999558926 ], [ 366657.790299996733665, 256259.159699998795986 ], [ 366667.230499997735023, 256286.8902000002563 ], [ 366674.462099999189377, 256289.904699999839067 ], [ 366715.749499998986721, 256270.822000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10560402750", "MAP": "A9-60-T66", "PARCEL_NAM": "148-173", "ACRE": ".138", "LONGITUDE": -64.88338971, "LATITUDE": 18.33514665, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.363192050099997, "SHAPE_Area": 360.159761656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363826.132399998605251, 256222.896099999547005 ], [ 363817.902000002563, 256242.460499998182058 ], [ 363840.4662000015378, 256244.122800000011921 ], [ 363841.349799998104572, 256235.052999999374151 ], [ 363843.016400001943111, 256228.733800001442432 ], [ 363826.132399998605251, 256222.896099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804043700", "MAP": "D9-5268-T92", "PARCEL_NAM": "19-2-122", "ACRE": "1.67", "LONGITUDE": -64.85657805, "LATITUDE": 18.33410182, "OBJECTID_1": 24714, "PARCEL_NO_": "105804043700", "Tax_Legal_": "SMITH BAY 19-2-122 EASTEND QUARTER", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 183400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.26681232, "SHAPE_Area": 7026.9304902800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366719.306699998676777, 256137.228900000452995 ], [ 366680.968699999153614, 256094.063099998980761 ], [ 366638.957699999213219, 256103.42960000038147 ], [ 366624.303900003433228, 256119.774999998509884 ], [ 366607.956399999558926, 256145.605700001120567 ], [ 366659.175599999725819, 256191.198899999260902 ], [ 366673.705399997532368, 256189.418000001460314 ], [ 366675.29110000282526, 256192.59739999845624 ], [ 366677.697400003671646, 256194.094700001180172 ], [ 366684.972199998795986, 256192.043299999088049 ], [ 366695.513599999248981, 256185.163499999791384 ], [ 366701.213600002229214, 256178.666299998760223 ], [ 366711.10869999974966, 256152.99379999935627 ], [ 366712.73929999768734, 256150.896200001239777 ], [ 366712.755500003695488, 256148.996500000357628 ], [ 366716.858999997377396, 256140.586399998515844 ], [ 366719.306699998676777, 256137.228900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604035100", "MAP": null, "PARCEL_NAM": "2-2", "ACRE": null, "LONGITUDE": -64.89034183, "LATITUDE": 18.33411781, "OBJECTID_1": 21823, "PARCEL_NO_": "105604035100", "Tax_Legal_": "2-1,-2,-3,-5,-6,-7 CHARLOTTE AM. NEW QUARTER", "Name": "FORT MYLNER PROPERTIES, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 359400, "Improved_V": 141600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.3979439, "SHAPE_Area": 2043.5096059 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363066.880199998617172, 256087.49269999936223 ], [ 363050.478900000452995, 256119.655799999833107 ], [ 363123.804700002074242, 256125.95549999922514 ], [ 363162.254199996590614, 256156.034400001168251 ], [ 363138.36150000244379, 256121.008400000631809 ], [ 363104.672600001096725, 256100.045499999076128 ], [ 363102.212300002574921, 256104.880499999970198 ], [ 363066.880199998617172, 256087.49269999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604031800", "MAP": null, "PARCEL_NAM": "2 REM", "ACRE": null, "LONGITUDE": -64.88986475, "LATITUDE": 18.33327445, "OBJECTID_1": 21789, "PARCEL_NO_": "105604031800", "Tax_Legal_": "2 REM.CHARLOTTE AMAILIE No.3 NEW QTR.", "Name": "PLESSEN ENTERPRISES INC", "Address": "PO Box 503358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 303000, "Improved_V": 151200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 859.10957398999994, "SHAPE_Area": 38199.060288400011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363162.254199996590614, 256156.034400001168251 ], [ 363222.218000002205372, 256121.694699998944998 ], [ 363228.736800000071526, 256113.726500000804663 ], [ 363233.785099998116493, 256089.069899998605251 ], [ 363237.587600000202656, 256021.339999999850988 ], [ 363239.255900003015995, 256014.80970000103116 ], [ 363241.721600003540516, 256009.341499999165535 ], [ 363247.428800001740456, 256001.999899998307228 ], [ 363261.209100000560284, 255898.887899998575449 ], [ 362996.811200000345707, 255982.850099999457598 ], [ 362999.178000003099442, 255988.991200000047684 ], [ 363000.763700000941753, 255992.1706000007689 ], [ 363003.157399997115135, 255995.145500000566244 ], [ 363021.41669999808073, 256028.858800001442432 ], [ 363029.375500001013279, 256041.167399998754263 ], [ 363033.381899997591972, 256044.155499998480082 ], [ 363039.751500003039837, 256053.706799998879433 ], [ 363041.321000002324581, 256058.785900000482798 ], [ 363042.062600001692772, 256066.391399998217821 ], [ 363048.518500000238419, 256065.810899998992682 ], [ 363059.05629999935627, 256059.353300001472235 ], [ 363071.005300000309944, 256076.549600001424551 ], [ 363060.467500001192093, 256083.00730000063777 ], [ 363066.880199998617172, 256087.49269999936223 ], [ 363102.212300002574921, 256104.880499999970198 ], [ 363104.672600001096725, 256100.045499999076128 ], [ 363138.36150000244379, 256121.008400000631809 ], [ 363162.254199996590614, 256156.034400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88707658, "LATITUDE": 18.33423241, "OBJECTID_1": 21812, "PARCEL_NO_": "105604034000", "Tax_Legal_": "10-1-10 CHARLOTTE AMALIE NEW QTR", "Name": "PENN, GIBSON & PAULINE", "Address": "PO Box 9786", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 191100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.83032701100001, "SHAPE_Area": 1240.13096268 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363462.544100001454353, 256118.384300000965595 ], [ 363428.767099998891354, 256107.764299999922514 ], [ 363426.240199998021126, 256120.409200001507998 ], [ 363422.926899999380112, 256130.725699998438358 ], [ 363418.846799999475479, 256136.391800001263618 ], [ 363454.970799997448921, 256155.474800001829863 ], [ 363462.544100001454353, 256118.384300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88751196, "LATITUDE": 18.33419936, "OBJECTID_1": 21803, "PARCEL_NO_": "105604033100", "Tax_Legal_": "10 1 18 CHARLOTTE AMALIE NEW QTR", "Name": "VICARS, LOLA MARIA", "Address": "PO Box 11512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.809960628, "SHAPE_Area": 1401.65671662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363421.519199997186661, 256106.649500001221895 ], [ 363375.510899998247623, 256111.972500000149012 ], [ 363379.199000000953674, 256152.32149999961257 ], [ 363405.099899999797344, 256140.92339999973774 ], [ 363414.032300002872944, 256133.608199998736382 ], [ 363419.807700000703335, 256118.245600000023842 ], [ 363421.519199997186661, 256106.649500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032400", "MAP": "D9-455-T64", "PARCEL_NAM": "10-1-1", "ACRE": null, "LONGITUDE": -64.88888161, "LATITUDE": 18.33419857, "OBJECTID_1": 21796, "PARCEL_NO_": "105604032400", "Tax_Legal_": "10-1-1 CHARLOTTE AMALIE NEW QTR", "Name": "SMITH, CHARLES & HEIRS OF ILVA SMITH", "Address": "2325 Hill St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24900, "Improved_V": 125700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.1157555, "SHAPE_Area": 1278.7678627600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363272.087099999189377, 256136.45719999819994 ], [ 363260.296300001442432, 256100.685899998992682 ], [ 363243.347599998116493, 256102.447000000625849 ], [ 363241.727799996733665, 256103.278099998831749 ], [ 363236.749600000679493, 256119.7027000002563 ], [ 363228.600199997425079, 256129.768500000238419 ], [ 363241.423900000751019, 256138.950500000268221 ], [ 363246.159199997782707, 256151.021600000560284 ], [ 363272.087099999189377, 256136.45719999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804032500", "MAP": "D9-4165-T87", "PARCEL_NAM": "16-1-3", "ACRE": ".514", "LONGITUDE": -64.85274066, "LATITUDE": 18.33413407, "OBJECTID_1": 24184, "PARCEL_NO_": "105804032500", "Tax_Legal_": "SMITH BAY 16-1-3 SAPPHIRE HOUSE COND", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 0, "Improved_V": 113100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.83097909200001, "SHAPE_Area": 1894.6616029100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367092.026199996471405, 256116.425900001078844 ], [ 367040.073399998247623, 256156.952799998223782 ], [ 367044.855499997735023, 256163.535900000482798 ], [ 367040.791599996387959, 256167.302299998700619 ], [ 367047.168399997055531, 256176.009300000965595 ], [ 367049.599899999797344, 256174.551600001752377 ], [ 367054.376599997282028, 256181.767799999564886 ], [ 367098.997100003063679, 256150.046799998730421 ], [ 367095.008699998259544, 256144.947900000959635 ], [ 367099.879000000655651, 256141.188099998980761 ], [ 367096.689699999988079, 256136.940099999308586 ], [ 367100.744599997997284, 256134.229100000113249 ], [ 367095.962499998509884, 256127.646000001579523 ], [ 367098.404799997806549, 256124.921799998730421 ], [ 367092.026199996471405, 256116.425900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504010700", "MAP": null, "PARCEL_NAM": "2A", "ACRE": null, "LONGITUDE": -64.89993123000001, "LATITUDE": 18.33429917, "OBJECTID_1": 20387, "PARCEL_NO_": "105504010700", "Tax_Legal_": "2A NEW HERNHUT NEW QUARTER", "Name": "FRANCIS, BROW,ROBINS & TROTMAN HEIRS", "Address": "4002 New Hernhut", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021973, "Country": "United States", "Land_Value": 34900, "Improved_V": 132100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.078506827, "SHAPE_Area": 708.21234079299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362106.227600000798702, 256118.893699999898672 ], [ 362060.485799998044968, 256117.850400000810623 ], [ 362061.822899997234344, 256125.285199999809265 ], [ 362062.302199997007847, 256134.828499998897314 ], [ 362106.909800000488758, 256133.464699998497963 ], [ 362106.227600000798702, 256118.893699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804042900", "MAP": "D9-5267-T92", "PARCEL_NAM": "19-2-111", "ACRE": "0.34", "LONGITUDE": -64.8555053, "LATITUDE": 18.33418491, "OBJECTID_1": 24706, "PARCEL_NO_": "105804042900", "Tax_Legal_": "SMITH BAY 19-2-111 EASTEND QTR", "Name": "CLENDINEN, VINCEN MELROY", "Address": "PO Box 88611", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34700, "Improved_V": 251000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.66291978199999, "SHAPE_Area": 1398.508087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366793.214100003242493, 256169.920000001788139 ], [ 366796.505900003015995, 256162.136500000953674 ], [ 366798.213799998164177, 256150.962499998509884 ], [ 366798.30009999871254, 256140.830699998885393 ], [ 366799.205300003290176, 256129.228000000119209 ], [ 366766.063799999654293, 256138.667100001126528 ], [ 366753.749700002372265, 256164.319699998944998 ], [ 366778.648299999535084, 256175.922499999403954 ], [ 366793.214100003242493, 256169.920000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88817211, "LATITUDE": 18.33417739, "OBJECTID_1": 21804, "PARCEL_NO_": "105604033200", "Tax_Legal_": "10 1 15 CHARLOTTE AMALIE NEW QTR", "Name": "JAMES, E BARNES, VAL", "Address": "21 E 48th St", "City": "Minneapolis", "State": "Minnesota", "Zip": 55419, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.22732478899999, "SHAPE_Area": 1549.1423323700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363346.454899996519089, 256115.112199999392033 ], [ 363336.125699996948242, 256097.084699999541044 ], [ 363307.006700001657009, 256107.612100001424551 ], [ 363308.550999999046326, 256115.646299999207258 ], [ 363307.633199997246265, 256128.726599998772144 ], [ 363305.955799996852875, 256136.312199998646975 ], [ 363305.896499998867512, 256143.277800001204014 ], [ 363344.597699999809265, 256143.805700000375509 ], [ 363346.454899996519089, 256115.112199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603021400", "MAP": "D9-7044-T002", "PARCEL_NAM": "2-4 REM", "ACRE": ".536", "LONGITUDE": -64.89105239, "LATITUDE": 18.33383507, "OBJECTID_1": 21558, "PARCEL_NO_": "105603021400", "Tax_Legal_": "CHARLOTTE AMALIE 2-4 NEW QTR.", "Name": "UNITED CORPORATION", "Address": "Po Box 763", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 168300, "Improved_V": 46700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.206520181, "SHAPE_Area": 2435.1061539000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363017.857900001108646, 256138.002700001001358 ], [ 363026.134999997913837, 256111.088199999183416 ], [ 363034.936599999666214, 256110.773400001227856 ], [ 363036.053300000727177, 256109.194200001657009 ], [ 363041.009900003671646, 256095.302600000053644 ], [ 363042.796899996697903, 256074.841099999845028 ], [ 363042.062600001692772, 256066.391399998217821 ], [ 363041.321000002324581, 256058.785900000482798 ], [ 363039.751500003039837, 256053.706799998879433 ], [ 363034.554899998009205, 256045.91440000012517 ], [ 363000.848600000143051, 256054.708999998867512 ], [ 362999.812799997627735, 256054.979699999094009 ], [ 363013.490599997341633, 256129.313200000673532 ], [ 363017.27080000191927, 256136.904800001531839 ], [ 363017.857900001108646, 256138.002700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032500", "MAP": null, "PARCEL_NAM": "10-1-2", "ACRE": null, "LONGITUDE": -64.8885931, "LATITUDE": 18.33412672, "OBJECTID_1": 21797, "PARCEL_NO_": "105604032500", "Tax_Legal_": "10-1-2 CHARLOTTE AMALIE NEW QTR", "Name": "JACKSON-ROBLES, SANDRA C", "Address": "PO Box 9377", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 168000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.70289338800001, "SHAPE_Area": 1238.34248112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363297.876500003039837, 256138.145899999886751 ], [ 363300.448299996554852, 256120.223999999463558 ], [ 363297.332699999213219, 256107.321800000965595 ], [ 363293.351499997079372, 256101.378600001335144 ], [ 363287.741499997675419, 256097.321899998933077 ], [ 363282.9054000005126, 256097.071299999952316 ], [ 363260.296300001442432, 256100.685899998992682 ], [ 363272.087099999189377, 256136.45719999819994 ], [ 363297.876500003039837, 256138.145899999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804042300", "MAP": "D9-5267-T92", "PARCEL_NAM": "19-2-97", "ACRE": "0.28", "LONGITUDE": -64.85509758000001, "LATITUDE": 18.33404156, "OBJECTID_1": 24701, "PARCEL_NO_": "105804042300", "Tax_Legal_": "SMITH BAY 19-2-97 EAST END QUARTER", "Name": "HENNIS, JOSEPH & ILEEN", "Address": "PO Box 502753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28500, "Improved_V": 190200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.81733055300001, "SHAPE_Area": 1252.04331417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366828.380000002682209, 256112.1570999994874 ], [ 366817.912399999797344, 256110.382699999958277 ], [ 366812.250200003385544, 256112.447299998253584 ], [ 366809.001599997282028, 256115.164900001138449 ], [ 366807.868000000715256, 256153.574700001627207 ], [ 366842.435099996626377, 256166.100999999791384 ], [ 366828.380000002682209, 256112.1570999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804043600", "MAP": "D9-5267-T92", "PARCEL_NAM": "19-2-113", "ACRE": "0.30", "LONGITUDE": -64.85581944, "LATITUDE": 18.3340708, "OBJECTID_1": 24713, "PARCEL_NO_": "105804043600", "Tax_Legal_": "SMITH BAY 19-2-113 EAST END QUARTER", "Name": "WENTWORTH, AARON P. & AMANDA L.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42900, "Improved_V": 254100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.16187211799999, "SHAPE_Area": 1220.9833449400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366766.063799999654293, 256138.667100001126528 ], [ 366752.574100002646446, 256113.014299999922514 ], [ 366742.828199997544289, 256121.167199999094009 ], [ 366735.501299999654293, 256129.339899998158216 ], [ 366731.426500000059605, 256134.372800000011921 ], [ 366728.976999998092651, 256137.941300000995398 ], [ 366725.703199997544289, 256143.614100001752377 ], [ 366722.422200001776218, 256150.131099998950958 ], [ 366753.749700002372265, 256164.319699998944998 ], [ 366766.063799999654293, 256138.667100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105504012400", "MAP": "D9-2500-T83", "PARCEL_NAM": "11", "ACRE": null, "LONGITUDE": -64.90737589, "LATITUDE": 18.33409537, "OBJECTID_1": 20402, "PARCEL_NO_": "105504012400", "Tax_Legal_": "RAPHUNE ESTATE PARCEL 11 REM. 5BA NEW QTR.", "Name": "SALEM, NAEL", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 245000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.48588782300001, "SHAPE_Area": 3027.4785431800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361257.929399996995926, 256118.705699998885393 ], [ 361339.426299996674061, 256112.406700000166893 ], [ 361336.506700001657009, 256076.496899999678135 ], [ 361255.027800001204014, 256080.685100000351667 ], [ 361257.929399996995926, 256118.705699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105603030300", "MAP": null, "PARCEL_NAM": "C4-8", "ACRE": null, "LONGITUDE": -64.8994638, "LATITUDE": 18.33394148, "OBJECTID_1": 21570, "PARCEL_NO_": "105603030300", "Tax_Legal_": "HOFFMAN C4-B FRENCHMAN BAY QTR.", "Name": "CHURCH OF GOD & PROPH. INC.", "Address": "PO Box 7434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 326700, "Improved_V": 13600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.17092502400001, "SHAPE_Area": 3563.121149 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362105.971500001847744, 256054.296900000423193 ], [ 362105.867200002074242, 256066.539500001817942 ], [ 362106.477600000798702, 256089.553700000047684 ], [ 362106.313900001347065, 256108.761900000274181 ], [ 362106.227600000798702, 256118.893699999898672 ], [ 362161.040700003504753, 256121.24210000038147 ], [ 362159.11259999871254, 256063.597800001502037 ], [ 362158.396200001239777, 256053.037300001829863 ], [ 362105.971500001847744, 256054.296900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604035100", "MAP": "D9-4269-T88", "PARCEL_NAM": "2-5", "ACRE": ".283", "LONGITUDE": -64.89078985, "LATITUDE": 18.33392845, "OBJECTID_1": 21823, "PARCEL_NO_": "105604035100", "Tax_Legal_": "2-1,-2,-3,-5,-6,-7 CHARLOTTE AM. NEW QUARTER", "Name": "FORT MYLNER PROPERTIES, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 359400, "Improved_V": 141600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.99008638199999, "SHAPE_Area": 883.56641196400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363034.936599999666214, 256110.773400001227856 ], [ 363045.370200000703335, 256110.400299999862909 ], [ 363043.064000003039837, 256120.19200000166893 ], [ 363050.478900000452995, 256119.655799999833107 ], [ 363066.880199998617172, 256087.49269999936223 ], [ 363060.467500001192093, 256083.00730000063777 ], [ 363048.518500000238419, 256065.810899998992682 ], [ 363042.062600001692772, 256066.391399998217821 ], [ 363042.796899996697903, 256074.841099999845028 ], [ 363041.009900003671646, 256095.302600000053644 ], [ 363036.053300000727177, 256109.194200001657009 ], [ 363034.936599999666214, 256110.773400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107501029900", "MAP": null, "PARCEL_NAM": "C", "ACRE": null, "LONGITUDE": -64.89874457000001, "LATITUDE": 18.33148637, "OBJECTID_1": 37477, "PARCEL_NO_": "107501029900", "Tax_Legal_": "C-12 REM. HOFFMAN & NULLYBERG 3 2B NEW QTR.", "Name": "HOUSING AUTHORITY", "Address": "PO Box 7668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 964400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1337.9167355300001, "SHAPE_Area": 66587.316207099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362104.16330000013113, 255887.940400000661612 ], [ 362150.887999996542931, 255893.177999999374151 ], [ 362153.035400003194809, 255925.070700000971556 ], [ 362166.742799997329712, 255925.182900000363588 ], [ 362226.40990000218153, 255925.67119999974966 ], [ 362228.372100003063679, 255979.304999999701977 ], [ 362230.980499997735023, 256051.731499999761581 ], [ 362218.07599999755621, 256052.048099998384714 ], [ 362222.084100000560284, 256054.825100000947714 ], [ 362227.668999999761581, 256061.836899999529123 ], [ 362238.961000002920628, 256061.507100000977516 ], [ 362248.616899996995926, 256063.90819999948144 ], [ 362255.844999998807907, 256067.344799999147654 ], [ 362263.056800000369549, 256072.681200001388788 ], [ 362274.231899999082088, 256086.07149999961257 ], [ 362278.205899998545647, 256092.859099999070168 ], [ 362281.359300002455711, 256101.328600000590086 ], [ 362282.088200002908707, 256110.41160000115633 ], [ 362306.272200003266335, 256111.242800001055002 ], [ 362287.802500002086163, 255628.953999999910593 ], [ 362095.826399996876717, 255636.037599999457598 ], [ 362104.16330000013113, 255887.940400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504010800", "MAP": null, "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.89993401, "LATITUDE": 18.33412433, "OBJECTID_1": 20388, "PARCEL_NO_": "105504010800", "Tax_Legal_": "3 NEW HERRNHUT No.5 NEW QTR.", "Name": "THOMAS, LINDA", "Address": "PO Box 306681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16200, "Improved_V": 152800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.98248953199999, "SHAPE_Area": 1076.98578808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362106.313900001347065, 256108.761900000274181 ], [ 362106.440399996936321, 256093.91499999910593 ], [ 362057.9425999969244, 256097.410000000149012 ], [ 362058.743299998342991, 256108.161400001496077 ], [ 362060.485799998044968, 256117.850400000810623 ], [ 362106.227600000798702, 256118.893699999898672 ], [ 362106.313900001347065, 256108.761900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87741445, "LATITUDE": 18.33382668, "OBJECTID_1": 23142, "PARCEL_NO_": "105703060300", "Tax_Legal_": "LONGMATH 11-36", "Name": "SMITH, ELMIRA", "Address": "13 Arnold Ave", "City": "Neptune", "State": "New Jersey", "Zip": 7753, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.71878, "SHAPE_Area": 2068.70162424 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364494.697800002992153, 256118.177200000733137 ], [ 364463.769500002264977, 256057.129099998623133 ], [ 364454.030799999833107, 256064.437699999660254 ], [ 364441.817400000989437, 256078.269900001585484 ], [ 364437.740900002419949, 256083.513900000602007 ], [ 364435.280599996447563, 256088.348900001496077 ], [ 364433.617600001394749, 256094.245900001376867 ], [ 364480.101400002837181, 256127.76799999922514 ], [ 364482.55629999935627, 256123.566199999302626 ], [ 364494.697800002992153, 256118.177200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034100", "MAP": "D9-455-T64", "PARCEL_NAM": "10-1-11", "ACRE": null, "LONGITUDE": -64.88699923, "LATITUDE": 18.33388492, "OBJECTID_1": 21813, "PARCEL_NO_": "105604034100", "Tax_Legal_": "10 1 11 CHARLOTTE AMALIE NEW QTR", "Name": "BROWN, ALVIN", "Address": "6105 Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.40743926, "SHAPE_Area": 1537.8240034400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363470.959700003266335, 256077.078899998217821 ], [ 363454.970100000500679, 256060.904899999499321 ], [ 363427.271300002932549, 256094.030999999493361 ], [ 363428.829999998211861, 256100.376499999314547 ], [ 363428.767099998891354, 256107.764299999922514 ], [ 363462.544100001454353, 256118.384300000965595 ], [ 363470.959700003266335, 256077.078899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032800", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-73", "ACRE": "0.26", "LONGITUDE": -64.85976951000001, "LATITUDE": 18.33391346, "OBJECTID_1": 23945, "PARCEL_NO_": "105803032800", "Tax_Legal_": "SMITH BAY 19-2-73 EAST END QUARTER", "Name": "MORTON, KELRICK", "Address": "P.O. BOX 4016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42700, "Improved_V": 405900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.396695596, "SHAPE_Area": 1301.3207068700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366340.663500003516674, 256096.133099999278784 ], [ 366309.960699997842312, 256103.269999999552965 ], [ 366315.282999999821186, 256141.099399998784065 ], [ 366349.187700003385544, 256136.732799999415874 ], [ 366342.978100001811981, 256108.395399998873472 ], [ 366340.663500003516674, 256096.133099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032900", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-77", "ACRE": "0.32", "LONGITUDE": -64.8592781, "LATITUDE": 18.33392009, "OBJECTID_1": 23946, "PARCEL_NO_": "105803032900", "Tax_Legal_": "SMITH BAY 19-2-77 EAST END QRT", "Name": "HODGE, EDWIN & CLAUDETTE", "Address": "PO Box 305383", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.36754045800001, "SHAPE_Area": 1520.4607761699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366405.902900002896786, 256105.110800001770258 ], [ 366352.675499998033047, 256105.941700000315905 ], [ 366358.089500002563, 256133.006000000983477 ], [ 366402.375500001013279, 256140.5456000007689 ], [ 366405.902900002896786, 256105.110800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88795355000001, "LATITUDE": 18.33387042, "OBJECTID_1": 21810, "PARCEL_NO_": "105604033800", "Tax_Legal_": "10-1-20 CHARLOTTE AMALIE NEW QTR", "Name": "FLEMING, HILARIA & BASTIAN, WAYNE", "Address": "PO Box 502522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.053527414, "SHAPE_Area": 1722.75342671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363366.97410000115633, 256072.850299999117851 ], [ 363334.762999996542931, 256067.731499999761581 ], [ 363316.255599997937679, 256063.147100001573563 ], [ 363336.125699996948242, 256097.084699999541044 ], [ 363346.454899996519089, 256115.112199999392033 ], [ 363375.510899998247623, 256111.972500000149012 ], [ 363366.97410000115633, 256072.850299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88755081, "LATITUDE": 18.33390493, "OBJECTID_1": 21811, "PARCEL_NO_": "105604033900", "Tax_Legal_": "10 -1 -19 CHARLOTTE AMALIE NEW QTR", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 118100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.890202389, "SHAPE_Area": 1462.4213038299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363375.510899998247623, 256111.972500000149012 ], [ 363421.519199997186661, 256106.649500001221895 ], [ 363420.795699998736382, 256096.933299999684095 ], [ 363419.213600002229214, 256093.331700000911951 ], [ 363415.226999998092651, 256088.021800000220537 ], [ 363407.207000002264977, 256082.889899998903275 ], [ 363388.717600002884865, 256076.194699998944998 ], [ 363378.253499999642372, 256073.998100001364946 ], [ 363366.97410000115633, 256072.850299999117851 ], [ 363375.510899998247623, 256111.972500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804043000", "MAP": "D9-5267-T92", "PARCEL_NAM": "19-2-112", "ACRE": "0.36", "LONGITUDE": -64.85551553000001, "LATITUDE": 18.33384276, "OBJECTID_1": 24707, "PARCEL_NO_": "105804043000", "Tax_Legal_": "SMITH BAY 19-2-112 EAST END QUARTER", "Name": "BROWN, GLENVILLE & CELESTINE", "Address": "782 E Sacramento St", "City": "Altadena", "State": "California", "Zip": 91001, "Country": "United States", "Land_Value": 59100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.56433589100001, "SHAPE_Area": 1503.1875287400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366752.574100002646446, 256113.014299999922514 ], [ 366766.063799999654293, 256138.667100001126528 ], [ 366799.205300003290176, 256129.228000000119209 ], [ 366800.105200000107288, 256118.258499998599291 ], [ 366799.367200002074242, 256110.230900000780821 ], [ 366798.594999998807907, 256106.213799998164177 ], [ 366797.029200002551079, 256100.712600000202656 ], [ 366795.44709999859333, 256097.111000001430511 ], [ 366791.442500002682209, 256093.911899998784065 ], [ 366785.805500000715256, 256093.021299999207258 ], [ 366780.152300000190735, 256094.030499998480082 ], [ 366769.625299997627735, 256099.221700001507998 ], [ 366767.195600003004074, 256100.468400001525879 ], [ 366752.574100002646446, 256113.014299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804043800", "MAP": "G9-5268-T92", "PARCEL_NAM": "19-2-123", "ACRE": "0.39", "LONGITUDE": -64.8561541, "LATITUDE": 18.33374889, "OBJECTID_1": 24715, "PARCEL_NO_": "105804043800", "Tax_Legal_": "19-2-123 ESTATE SMITH BAY EASTEND QRT 1,2,3", "Name": "STOUT, LESTON", "Address": "PO Box 9127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.58517932000001, "SHAPE_Area": 1699.35041993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366740.491999998688698, 256111.437800001353025 ], [ 366706.126199997961521, 256075.270599998533726 ], [ 366680.968699999153614, 256094.063099998980761 ], [ 366719.306699998676777, 256137.228900000452995 ], [ 366724.209299996495247, 256129.669700000435114 ], [ 366733.992899999022484, 256117.084100000560284 ], [ 366740.491999998688698, 256111.437800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87706619, "LATITUDE": 18.33367644, "OBJECTID_1": 23143, "PARCEL_NO_": "105703060400", "Tax_Legal_": "LANGMATH ESTATE 11-34 No.5 RED HOOK QTR", "Name": "ARLENE CHALWELL", "Address": "PO Box 9982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012982, "Country": "United States", "Land_Value": 79100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.12134386299999, "SHAPE_Area": 3302.1914286199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364538.409500002861023, 256098.480999998748302 ], [ 364509.075800001621246, 256039.557000000029802 ], [ 364484.827100001275539, 256046.324599999934435 ], [ 364475.927100002765656, 256049.840300001204014 ], [ 364463.769500002264977, 256057.129099998623133 ], [ 364494.697800002992153, 256118.177200000733137 ], [ 364538.409500002861023, 256098.480999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88832532000001, "LATITUDE": 18.33382083, "OBJECTID_1": 21805, "PARCEL_NO_": "105604033300", "Tax_Legal_": "10-1-14 CHARLOTTE AMALIE 3 NEW QTR", "Name": "FRANCIS, CHARLES", "Address": "236 NW Whitlock Dr", "City": "Lees Summit", "State": "Missouri", "Zip": 64081, "Country": "United States", "Land_Value": 23600, "Improved_V": 211000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.414325703, "SHAPE_Area": 1316.98081632 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363316.255599997937679, 256063.147100001573563 ], [ 363300.147299997508526, 256060.90430000051856 ], [ 363297.7246999964118, 256061.306699998676777 ], [ 363293.667999997735023, 256064.228799998760223 ], [ 363292.028399996459484, 256067.381700001657009 ], [ 363291.852200001478195, 256088.067499998956919 ], [ 363300.655100002884865, 256095.949999999254942 ], [ 363303.842600002884865, 256100.409000001847744 ], [ 363307.006700001657009, 256107.612100001424551 ], [ 363336.125699996948242, 256097.084699999541044 ], [ 363316.255599997937679, 256063.147100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504010900", "MAP": null, "PARCEL_NAM": "3A", "ACRE": null, "LONGITUDE": -64.89995714, "LATITUDE": 18.3338892, "OBJECTID_1": 20389, "PARCEL_NO_": "105504010900", "Tax_Legal_": "NEW HERNHUT 3A NEW QTR", "Name": "CHINNERY, HAROLD", "Address": "PO Box 7082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.53041172, "SHAPE_Area": 1451.37324457 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362105.867200002074242, 256066.539500001817942 ], [ 362057.495700001716614, 256065.299199998378754 ], [ 362057.296099998056889, 256088.728999998420477 ], [ 362057.9425999969244, 256097.410000000149012 ], [ 362106.440399996936321, 256093.91499999910593 ], [ 362106.477600000798702, 256089.553700000047684 ], [ 362105.867200002074242, 256066.539500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604033400", "MAP": null, "PARCEL_NAM": "10-1-13A", "ACRE": null, "LONGITUDE": -64.88877808, "LATITUDE": 18.3337772, "OBJECTID_1": 21806, "PARCEL_NO_": "105604033400", "Tax_Legal_": "10-1-13A CHARLOTTE AMALE 3 NEW QTR", "Name": "Zedekiah Sr, Zedekiah Jr, Janet & Denise Jennings", "Address": "PO Box 7232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010232, "Country": "United States", "Land_Value": 39200, "Improved_V": 200000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.745475089, "SHAPE_Area": 974.69468795800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363245.305399999022484, 256061.933100000023842 ], [ 363244.328299999237061, 256081.978999998420477 ], [ 363245.044699996709824, 256092.539500001817942 ], [ 363247.460100002586842, 256092.981499999761581 ], [ 363259.567299999296665, 256091.602899998426437 ], [ 363284.602600000798702, 256087.163800001144409 ], [ 363286.350100003182888, 256071.346000000834465 ], [ 363245.305399999022484, 256061.933100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034200", "MAP": "D9-455-T64", "PARCEL_NAM": "10-1-12", "ACRE": null, "LONGITUDE": -64.88719771, "LATITUDE": 18.33364839, "OBJECTID_1": 21814, "PARCEL_NO_": "105604034200", "Tax_Legal_": "CHARLOTTE AMALIE 10-1-12 NEW QTR", "Name": "BULLARD, MYRA M & OTHERS", "Address": "PO Box 581", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.94302009699999, "SHAPE_Area": 1308.7239426399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363454.970100000500679, 256060.904899999499321 ], [ 363442.977899998426437, 256048.774399999529123 ], [ 363420.455099999904633, 256042.25730000063777 ], [ 363408.072700001299381, 256075.930900000035763 ], [ 363413.698899999260902, 256078.087900001555681 ], [ 363418.509800001978874, 256081.293600000441074 ], [ 363423.302699998021126, 256086.610199999064207 ], [ 363427.271300002932549, 256094.030999999493361 ], [ 363454.970100000500679, 256060.904899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87659808, "LATITUDE": 18.33350797, "OBJECTID_1": 23144, "PARCEL_NO_": "105703060500", "Tax_Legal_": "11-32 ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "HODGE, TYRONE ROY", "Address": "394-281 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86100, "Improved_V": 135900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.37730329600001, "SHAPE_Area": 3559.205932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364588.051299996674061, 256045.269600000232458 ], [ 364542.260499998927116, 256025.052000001072884 ], [ 364535.766800001263618, 256030.065099999308586 ], [ 364527.667700000107288, 256034.22069999948144 ], [ 364509.075800001621246, 256039.557000000029802 ], [ 364538.409500002861023, 256098.480999998748302 ], [ 364583.739200003445148, 256078.164900001138449 ], [ 364588.051299996674061, 256045.269600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604035100", "MAP": "D9-4269-T88", "PARCEL_NAM": "2-3", "ACRE": ".041", "LONGITUDE": -64.8907005, "LATITUDE": 18.3337277, "OBJECTID_1": 21823, "PARCEL_NO_": "105604035100", "Tax_Legal_": "2-1,-2,-3,-5,-6,-7 CHARLOTTE AM. NEW QUARTER", "Name": "FORT MYLNER PROPERTIES, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 359400, "Improved_V": 141600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.598580253899996, "SHAPE_Area": 258.37415686000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363048.518500000238419, 256065.810899998992682 ], [ 363060.467500001192093, 256083.00730000063777 ], [ 363071.005300000309944, 256076.549600001424551 ], [ 363059.05629999935627, 256059.353300001472235 ], [ 363048.518500000238419, 256065.810899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804043900", "MAP": "D9-5268-T92", "PARCEL_NAM": "19-2-124", "ACRE": null, "LONGITUDE": -64.85591018, "LATITUDE": 18.33353719, "OBJECTID_1": 24716, "PARCEL_NO_": "105804043900", "Tax_Legal_": "SMITH BAY ESTATE 19-2-124 No.1,2&3 EASTEND QTR.", "Name": "ALLEN, MALGARITA", "Address": "PO Box 502962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 49200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.436640732, "SHAPE_Area": 1757.81885642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366764.855800002813339, 256091.161100000143051 ], [ 366741.809000000357628, 256051.497999999672174 ], [ 366706.126199997961521, 256075.270599998533726 ], [ 366740.491999998688698, 256111.437800001353025 ], [ 366751.866700001060963, 256101.398400001227856 ], [ 366761.616099998354912, 256092.823399998247623 ], [ 366764.855800002813339, 256091.161100000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803025700", "MAP": "A9-764-T011", "PARCEL_NAM": null, "ACRE": ".026", "LONGITUDE": -64.86335327, "LATITUDE": 18.33200155, "OBJECTID_1": 23916, "PARCEL_NO_": "105803025700", "Tax_Legal_": "FRYDENHOJ 110D-A RED HOOK QTR. 3", "Name": "SEBASTIEN, SHINIKO & YASMINE HAYNES", "Address": "PO Box 9771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.143379888699997, "SHAPE_Area": 388.49165975400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365948.290200002491474, 255924.569200001657009 ], [ 365958.302699998021126, 255923.49549999833107 ], [ 365955.419100001454353, 255883.364100001752377 ], [ 365945.709200002253056, 255887.295400001108646 ], [ 365948.290200002491474, 255924.569200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803033100", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-78", "ACRE": null, "LONGITUDE": -64.85932435, "LATITUDE": 18.33365226, "OBJECTID_1": 23948, "PARCEL_NO_": "105803033100", "Tax_Legal_": "19-2-78 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "CHARLES J & BELINDA C SCHWEICKERT REVOC FAM TRUST", "Address": "6484 Est. Nazareth #1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021101, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.06863218199999, "SHAPE_Area": 1400.3839392899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366406.791900001466274, 256095.407699998468161 ], [ 366366.728000000119209, 256065.526700001209974 ], [ 366359.392099998891354, 256074.754799999296665 ], [ 366356.082299999892712, 256084.649099998176098 ], [ 366353.614799998700619, 256090.328400000929832 ], [ 366352.772600002586842, 256094.543400000780821 ], [ 366352.675499998033047, 256105.941700000315905 ], [ 366405.902900002896786, 256105.110800001770258 ], [ 366406.791900001466274, 256095.407699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803033000", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-96", "ACRE": "0.28", "LONGITUDE": -64.85985025, "LATITUDE": 18.33350592, "OBJECTID_1": 23947, "PARCEL_NO_": "105803033000", "Tax_Legal_": "19-2-96 ESTATE SMITH BAY No. 1,2,& 3 EAST END QTR.", "Name": "CUFFY, ROSEANNIE", "Address": "PO Box 307843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.56041225600001, "SHAPE_Area": 1417.31602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366307.190399996936321, 256049.840700000524521 ], [ 366307.055500000715256, 256065.671599999070168 ], [ 366309.201099999248981, 256097.775400001555681 ], [ 366309.960699997842312, 256103.269999999552965 ], [ 366340.663500003516674, 256096.133099999278784 ], [ 366332.031400002539158, 256068.198100000619888 ], [ 366330.436800003051758, 256066.074099998921156 ], [ 366328.104099996387959, 256055.922499999403954 ], [ 366327.443499997258186, 256038.818500000983477 ], [ 366307.190399996936321, 256049.840700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503050600", "MAP": "D9-3367-T86", "PARCEL_NAM": "4B", "ACRE": null, "LONGITUDE": -64.90929732, "LATITUDE": 18.33358982, "OBJECTID_1": 20170, "PARCEL_NO_": "105503050600", "Tax_Legal_": "4A EST. RAPHUNE 5B NEW QTR.", "Name": "SANTANA, HECTOR", "Address": "PO BOX 306151", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65000, "Improved_V": 104800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.49053337199999, "SHAPE_Area": 1173.83295808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361122.255900003015995, 256047.934399999678135 ], [ 361112.025600001215935, 256018.297600001096725 ], [ 361112.043600000441074, 256016.186799999326468 ], [ 361110.452600002288818, 256013.640700001269579 ], [ 361097.429300002753735, 256027.888399999588728 ], [ 361063.450900003314018, 256040.909200001507998 ], [ 361070.554799996316433, 256058.910300001502037 ], [ 361101.29900000244379, 256046.918499998748302 ], [ 361122.255900003015995, 256047.934399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89995517, "LATITUDE": 18.33356191, "OBJECTID_1": 20390, "PARCEL_NO_": "105504011000", "Tax_Legal_": "NEW HERNHUT NEW QTR", "Name": "FRANCIS, E", "Address": "921 Mace Ave", "City": "Bronx", "State": "New York", "Zip": 10469, "Country": "United States", "Land_Value": 24700, "Improved_V": 139400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.47326220299999, "SHAPE_Area": 2055.3380178500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362105.424199998378754, 256023.894999999552965 ], [ 362057.860699996352196, 256022.450199998915195 ], [ 362057.495700001716614, 256065.299199998378754 ], [ 362105.867200002074242, 256066.539500001817942 ], [ 362105.971500001847744, 256054.296900000423193 ], [ 362105.424199998378754, 256023.894999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034300", "MAP": "D9-9138-T016", "PARCEL_NAM": "10-1", "ACRE": "0.59", "LONGITUDE": -64.88697205, "LATITUDE": 18.33342198, "OBJECTID_1": 21815, "PARCEL_NO_": "105604034300", "Tax_Legal_": "PAR 10-1 REM CHARLOTTE AMALIE 3 NEW QTR", "Name": "CANDACE LINDQVIST-WALLACE", "Address": "14915 NOTLEY RD", "City": "Silver Spring", "State": "Maryland", "Zip": 209055821, "Country": "United States", "Land_Value": 40300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.738657069, "SHAPE_Area": 1883.7262873300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363479.475000001490116, 256034.225299999117851 ], [ 363461.193300001323223, 256016.634500000625849 ], [ 363458.563900001347065, 256017.660100001841784 ], [ 363444.021499998867512, 256020.918600000441074 ], [ 363427.884499996900558, 256022.053100001066923 ], [ 363420.455099999904633, 256042.25730000063777 ], [ 363442.977899998426437, 256048.774399999529123 ], [ 363454.970100000500679, 256060.904899999499321 ], [ 363470.959700003266335, 256077.078899998217821 ], [ 363479.475000001490116, 256034.225299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034400", "MAP": "F9-2820-T71", "PARCEL_NAM": "10-1-22-1A", "ACRE": "0.19", "LONGITUDE": -64.88743731, "LATITUDE": 18.33334659, "OBJECTID_1": 21816, "PARCEL_NO_": "105604034400", "Tax_Legal_": "CHARLOTTE AMALIE 10-1-22-1A No.3 NEW QTR.", "Name": "MATTHIAS, JR. AUSTIN A. & ELEANOR", "Address": "3680 Olive St", "City": "Denver", "State": "Colorado", "Zip": 80207, "Country": "United States", "Land_Value": 13900, "Improved_V": 98000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.455551418, "SHAPE_Area": 933.00004990599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363384.993199996650219, 256041.850699998438358 ], [ 363418.6283999979496, 256047.225000001490116 ], [ 363420.455099999904633, 256042.25730000063777 ], [ 363427.884499996900558, 256022.053100001066923 ], [ 363410.154600001871586, 256020.85249999910593 ], [ 363388.420199997723103, 256016.4527000002563 ], [ 363384.993199996650219, 256041.850699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604033500", "MAP": null, "PARCEL_NAM": "10-1-13", "ACRE": null, "LONGITUDE": -64.88876389000001, "LATITUDE": 18.33354781, "OBJECTID_1": 21807, "PARCEL_NO_": "105604033500", "Tax_Legal_": "10-1-13 CHARLOTTE AMALIE NEW QTR", "Name": "SMITH, VIOLA", "Address": "PO Box 7552", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8800, "Improved_V": 192800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.82283131899999, "SHAPE_Area": 1070.6890707800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363291.311999998986721, 256056.821199998259544 ], [ 363247.205799996852875, 256028.173700001090765 ], [ 363245.305399999022484, 256061.933100000023842 ], [ 363286.350100003182888, 256071.346000000834465 ], [ 363286.420199997723103, 256063.114000000059605 ], [ 363288.059799998998642, 256059.960999999195337 ], [ 363291.311999998986721, 256056.821199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803033200", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-79", "ACRE": "0.33", "LONGITUDE": -64.85909949000001, "LATITUDE": 18.33348111, "OBJECTID_1": 23949, "PARCEL_NO_": "105803033200", "Tax_Legal_": "19-2-79 ESTATE SMITH BAY 1,2 & 3 EASTEND QTR", "Name": "LEWIS, LEOPOLD", "Address": "PO Box 649", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 44100, "Improved_V": 113600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.87418250299999, "SHAPE_Area": 1453.57098821 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366431.085600003600121, 256083.363099999725819 ], [ 366400.737000003457069, 256048.917599998414516 ], [ 366377.260399997234344, 256059.702300000935793 ], [ 366366.728000000119209, 256065.526700001209974 ], [ 366406.791900001466274, 256095.407699998468161 ], [ 366431.085600003600121, 256083.363099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034500", "MAP": "D9-545-T65", "PARCEL_NAM": "10-1-22-2", "ACRE": "0.40", "LONGITUDE": -64.88775992, "LATITUDE": 18.33340871, "OBJECTID_1": 21817, "PARCEL_NO_": "105604034500", "Tax_Legal_": "10-1-22-2 CHARLOTTE AMLE 3 NEW QTR", "Name": "PIERRE, ABRAHAM", "Address": "6103 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29300, "Improved_V": 80900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.32527597199999, "SHAPE_Area": 1490.73135417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363360.245999999344349, 256010.73369999974966 ], [ 363357.622599996626377, 256010.19990000128746 ], [ 363357.165299996733665, 256024.012200001627207 ], [ 363356.80799999833107, 256034.804299999028444 ], [ 363356.190099999308586, 256053.464000001549721 ], [ 363355.854400001466274, 256063.599899999797344 ], [ 363358.180200003087521, 256063.912399999797344 ], [ 363377.513700000941753, 256066.181600000709295 ], [ 363381.577799998223782, 256067.162500001490116 ], [ 363381.847199998795986, 256067.22749999910593 ], [ 363384.993199996650219, 256041.850699998438358 ], [ 363388.420199997723103, 256016.4527000002563 ], [ 363360.245999999344349, 256010.73369999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804044200", "MAP": "D9-5268-T92", "PARCEL_NAM": "19-2-132", "ACRE": "0.38", "LONGITUDE": -64.85680163000001, "LATITUDE": 18.33344629, "OBJECTID_1": 24719, "PARCEL_NO_": "105804044200", "Tax_Legal_": "19-2-132 ESTATE SMITH BAY 1,2,&3 EAST END QTR", "Name": "FRETT, ROSEMOND E. & ALLEN, FERDIN", "Address": "PO Box 6233", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 50800, "Improved_V": 135400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.530641565, "SHAPE_Area": 1788.11461697 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366673.009900003671646, 256081.754599999636412 ], [ 366654.766800001263618, 256046.141499999910593 ], [ 366635.364900000393391, 256051.893399998545647 ], [ 366615.183799996972084, 256054.47239999845624 ], [ 366625.36370000243187, 256090.019499998539686 ], [ 366648.728799998760223, 256092.321600001305342 ], [ 366673.009900003671646, 256081.754599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105603030500", "MAP": null, "PARCEL_NAM": "C-7", "ACRE": null, "LONGITUDE": -64.89949382, "LATITUDE": 18.33306856, "OBJECTID_1": 21572, "PARCEL_NO_": "105603030500", "Tax_Legal_": "C-7 HOFFMAN FRENCHMAN BAY", "Name": "ST THOMAS CHURCH OF CHRIST INC", "Address": "PO Box 502908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 435600, "Improved_V": 219000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.25622620199999, "SHAPE_Area": 6365.9180362500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362104.448100000619888, 255949.15989999845624 ], [ 362105.207699999213219, 255954.654500000178814 ], [ 362109.001900002360344, 255982.549899999052286 ], [ 362108.845399998128414, 256000.913800001144409 ], [ 362105.618400000035763, 256001.098499998450279 ], [ 362105.582400001585484, 256005.320000000298023 ], [ 362105.424199998378754, 256023.894999999552965 ], [ 362105.971500001847744, 256054.296900000423193 ], [ 362158.396200001239777, 256053.037300001829863 ], [ 362153.035400003194809, 255925.070700000971556 ], [ 362104.651299998164177, 255925.30799999833107 ], [ 362104.448100000619888, 255949.15989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703061200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87776151, "LATITUDE": 18.33338199, "OBJECTID_1": 23150, "PARCEL_NO_": "105703061200", "Tax_Legal_": "LONGMATH 11-35 No.5 RED HOOK QTR", "Name": "BROWNE, OCLEVIA M.", "Address": "PO Box 12125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45200, "Improved_V": 78500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.68404574600001, "SHAPE_Area": 1543.5245835600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364457.374700002372265, 256050.532900001853704 ], [ 364426.182099997997284, 256020.513399999588728 ], [ 364401.931599996984005, 256027.49210000038147 ], [ 364405.801299996674061, 256046.522199999541044 ], [ 364434.609099999070168, 256072.511399999260902 ], [ 364436.246899999678135, 256069.569400001317263 ], [ 364444.374799996614456, 256062.03660000115633 ], [ 364446.00900000333786, 256059.5168999992311 ], [ 364457.374700002372265, 256050.532900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804044100", "MAP": "D9-5268-T92", "PARCEL_NAM": "19-2-133", "ACRE": "0.30", "LONGITUDE": -64.85715987, "LATITUDE": 18.33344875, "OBJECTID_1": 24718, "PARCEL_NO_": "105804044100", "Tax_Legal_": "SMITH BAY 19-2-133 EAST END QUARTER", "Name": "Petronilla Benjamin", "Address": "8001 ORANGE SPRING DRIVE", "City": "Ruskin", "State": "Florida", "Zip": 335730169, "Country": "United States", "Land_Value": 27800, "Improved_V": 259200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.931170584, "SHAPE_Area": 1060.2231553700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366592.64299999922514, 256050.066100001335144 ], [ 366587.007799997925758, 256048.964499998837709 ], [ 366593.9408999979496, 256087.018100000917912 ], [ 366625.36370000243187, 256090.019499998539686 ], [ 366615.183799996972084, 256054.47239999845624 ], [ 366592.64299999922514, 256050.066100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804044000", "MAP": "D9-5268-T92", "PARCEL_NAM": "19-2-125", "ACRE": null, "LONGITUDE": -64.8555781, "LATITUDE": 18.33337595, "OBJECTID_1": 24717, "PARCEL_NO_": "105804044000", "Tax_Legal_": "SMITH BAY 19-2-125 EASTEND QTR.", "Name": "PEETS, CLIFFORD & SHARON", "Address": "PO Box 10886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54500, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.463953522, "SHAPE_Area": 1916.78966578 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366741.809000000357628, 256051.497999999672174 ], [ 366764.855800002813339, 256091.161100000143051 ], [ 366774.574699997901917, 256086.174400001764297 ], [ 366781.842299997806549, 256084.967300001531839 ], [ 366785.069300003349781, 256084.782699998468161 ], [ 366791.521600000560284, 256084.624400001019239 ], [ 366794.759499996900558, 256083.173200000077486 ], [ 366796.402699999511242, 256079.598099999129772 ], [ 366797.271899998188019, 256072.216899998486042 ], [ 366798.234700001776218, 256053.859700001776218 ], [ 366795.041799999773502, 256050.0337999984622 ], [ 366789.412000000476837, 256048.2989999987185 ], [ 366759.6503000035882, 256039.611699998378754 ], [ 366758.0287000015378, 256040.653900001198053 ], [ 366741.809000000357628, 256051.497999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105603030400", "MAP": null, "PARCEL_NAM": "C-6", "ACRE": null, "LONGITUDE": -64.89883719, "LATITUDE": 18.33329059, "OBJECTID_1": 21571, "PARCEL_NO_": "105603030400", "Tax_Legal_": "C-6 EST. HOFFMAN FRENCHMANS BAY QTR.", "Name": "FIRST PENTECOSTAL CHURCH", "Address": "PO Box 7607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 331100, "Improved_V": 1624200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.59128481599998, "SHAPE_Area": 4322.3348480799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362228.372100003063679, 255979.304999999701977 ], [ 362169.514899998903275, 255978.401099998503923 ], [ 362172.107100002467632, 256052.727299999445677 ], [ 362218.07599999755621, 256052.048099998384714 ], [ 362230.980499997735023, 256051.731499999761581 ], [ 362228.372100003063679, 255979.304999999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604033700", "MAP": "D9-545-T65", "PARCEL_NAM": "10-1-21-2", "ACRE": "0.40", "LONGITUDE": -64.88835033, "LATITUDE": 18.33330234, "OBJECTID_1": 21809, "PARCEL_NO_": "105604033700", "Tax_Legal_": "10-1-21-2 CHARLOTTE AMLE 3 NEW QTR", "Name": "OTTLEY, DENISE", "Address": "6102 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25600, "Improved_V": 240500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.04580192099999, "SHAPE_Area": 1887.8743962799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363295.042599998414516, 255997.534400001168251 ], [ 363283.757799997925758, 255997.019900001585484 ], [ 363282.546999998390675, 255997.100499998778105 ], [ 363296.830600000917912, 256040.745000001043081 ], [ 363301.130199998617172, 256053.882699999958277 ], [ 363305.848999999463558, 256054.195999998599291 ], [ 363329.998800002038479, 256059.03770000115037 ], [ 363326.965999998152256, 256036.425799999386072 ], [ 363322.4121999964118, 256003.035799998790026 ], [ 363295.042599998414516, 255997.534400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803033300", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-80", "ACRE": "0.33", "LONGITUDE": -64.85883211, "LATITUDE": 18.33334163, "OBJECTID_1": 23950, "PARCEL_NO_": "105803033300", "Tax_Legal_": "SMITH BAY 19-2-80 EAST END QUARTER", "Name": "HANSEN, ELLEN", "Address": "86-198 Moelua St", "City": "Waianae", "State": "Hawaii", "Zip": 96792, "Country": "United States", "Land_Value": 54100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.28247897400001, "SHAPE_Area": 1358.7674578799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366454.632299996912479, 256064.3462999984622 ], [ 366427.503600001335144, 256030.560400001704693 ], [ 366412.880199998617172, 256043.317400000989437 ], [ 366400.737000003457069, 256048.917599998414516 ], [ 366431.085600003600121, 256083.363099999725819 ], [ 366454.632299996912479, 256064.3462999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604033600", "MAP": null, "PARCEL_NAM": "10-1-21-1", "ACRE": null, "LONGITUDE": -64.88867425, "LATITUDE": 18.33329768, "OBJECTID_1": 21808, "PARCEL_NO_": "105604033600", "Tax_Legal_": "CHARLOTTE AMALIE 10-1-21-1 3 NEW QTR", "Name": "DAILY, MURIEL & JOHN", "Address": "8918 208th St", "City": "Queens Village", "State": "New York", "Zip": 11427, "Country": "United States", "Land_Value": 30400, "Improved_V": 201500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.18480839700001, "SHAPE_Area": 1838.0522029700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363296.169699996709824, 256054.538899999111891 ], [ 363298.595799997448921, 256053.714400000870228 ], [ 363301.130199998617172, 256053.882699999958277 ], [ 363296.830600000917912, 256040.745000001043081 ], [ 363282.546999998390675, 255997.100499998778105 ], [ 363272.462200000882149, 255997.771800000220537 ], [ 363264.377499997615814, 256000.238800000399351 ], [ 363259.51630000025034, 256002.943199999630451 ], [ 363254.640600003302097, 256007.336300000548363 ], [ 363249.739799998700619, 256014.684399999678135 ], [ 363247.250699996948242, 256022.896699998527765 ], [ 363247.205799996852875, 256028.173700001090765 ], [ 363291.311999998986721, 256056.821199998259544 ], [ 363296.169699996709824, 256054.538899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804044300", "MAP": "D9-5268-T92", "PARCEL_NAM": "19-2-131", "ACRE": "0.41", "LONGITUDE": -64.85642805000001, "LATITUDE": 18.33325863, "OBJECTID_1": 24720, "PARCEL_NO_": "105804044300", "Tax_Legal_": "19-2-131 ESTATE SMITH BAY 1,2&3 EASTEND QTR", "Name": "LEATHAM, JOHN & MARINA F.", "Address": "PO Box 1286", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.11212150099999, "SHAPE_Area": 1745.0479359799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366707.189699999988079, 256045.092999998480082 ], [ 366699.967000000178814, 256041.02309999987483 ], [ 366699.353100001811981, 256018.431000001728535 ], [ 366696.136900000274181, 256017.349199999123812 ], [ 366689.634199999272823, 256023.417700000107288 ], [ 366675.835199996829033, 256034.070599999278784 ], [ 366654.766800001263618, 256046.141499999910593 ], [ 366673.009900003671646, 256081.754599999636412 ], [ 366674.627899996936321, 256081.134500000625849 ], [ 366711.993400000035763, 256049.14299999922514 ], [ 366707.189699999988079, 256045.092999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803033700", "MAP": "D9-5262-T92", "PARCEL_NAM": "19-2-72", "ACRE": "0.37", "LONGITUDE": -64.85950703, "LATITUDE": 18.33324749, "OBJECTID_1": 23954, "PARCEL_NO_": "105803033700", "Tax_Legal_": "19-2-72 SMITH BAY EAST END QUARTER", "Name": "GREENAWAY, DAGMAR", "Address": "6540 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39900, "Improved_V": 188800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.08410777, "SHAPE_Area": 1432.63725636 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366392.751199997961521, 256039.775199998170137 ], [ 366344.4983000010252, 256024.603700000792742 ], [ 366337.137199997901917, 256036.786899998784065 ], [ 366336.289499998092651, 256041.635099999606609 ], [ 366336.204999998211861, 256051.555799998342991 ], [ 366336.991599999368191, 256053.884300000965595 ], [ 366343.2837999984622, 256072.511999998241663 ], [ 366347.306400001049042, 256073.600400000810623 ], [ 366350.542400002479553, 256072.360300000756979 ], [ 366352.988300003111362, 256069.214000001549721 ], [ 366356.274700000882149, 256062.063700001686811 ], [ 366359.530599996447563, 256058.5016999989748 ], [ 366368.439599998295307, 256053.930599998682737 ], [ 366391.09179999679327, 256045.250100001692772 ], [ 366392.751199997961521, 256039.775199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703061300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87745814, "LATITUDE": 18.33321203, "OBJECTID_1": 23151, "PARCEL_NO_": "105703061300", "Tax_Legal_": "LONGMATH 11-33 No.5 RED HOOK QTR", "Name": "BROWNE, TROY", "Address": "PO Box 304260", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.84595003800001, "SHAPE_Area": 1699.43532738 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364497.839599996805191, 256033.343299999833107 ], [ 364457.793700002133846, 256001.351500000804663 ], [ 364426.182099997997284, 256020.513399999588728 ], [ 364457.374700002372265, 256050.532900001853704 ], [ 364465.486400000751019, 256044.899700000882149 ], [ 364475.203500002622604, 256040.124099999666214 ], [ 364497.839599996805191, 256033.343299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803033400", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-81", "ACRE": "0.38", "LONGITUDE": -64.85860904, "LATITUDE": 18.33314661, "OBJECTID_1": 23951, "PARCEL_NO_": "105803033400", "Tax_Legal_": "SMITH BAY 19-2-81 EAST END QUARTER", "Name": "HANSEN, ELLEN", "Address": "86-198 Moelua St", "City": "Waianae", "State": "Hawaii", "Zip": 96792, "Country": "United States", "Land_Value": 62300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.814638333, "SHAPE_Area": 1488.1220181599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366478.177199997007847, 256045.540600001811981 ], [ 366456.674699999392033, 256013.911699999123812 ], [ 366449.464599996805191, 256008.36430000141263 ], [ 366443.800599999725819, 256010.639899998903275 ], [ 366438.928599998354912, 256014.610800001770258 ], [ 366427.503600001335144, 256030.560400001704693 ], [ 366454.632299996912479, 256064.3462999984622 ], [ 366478.177199997007847, 256045.540600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703061000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87639178000001, "LATITUDE": 18.33308798, "OBJECTID_1": 23149, "PARCEL_NO_": "105703061000", "Tax_Legal_": "LONGMATH 11-30 No.5 RED HOOK QTR", "Name": "NISBETT, IVOR J.", "Address": "PO BOX 307656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61700, "Improved_V": 116600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.20449671, "SHAPE_Area": 1976.4469600699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364592.366899996995926, 256011.952100001275539 ], [ 364593.250600002706051, 256002.88230000063777 ], [ 364590.185400001704693, 255984.069899998605251 ], [ 364554.641099996864796, 255991.589499998837709 ], [ 364552.834299996495247, 256014.372800000011921 ], [ 364551.212600000202656, 256015.41499999910593 ], [ 364546.318999998271465, 256021.918800000101328 ], [ 364542.260499998927116, 256025.052000001072884 ], [ 364588.051299996674061, 256045.269600000232458 ], [ 364592.366899996995926, 256011.952100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89995654000001, "LATITUDE": 18.33328522, "OBJECTID_1": 20391, "PARCEL_NO_": "105504011100", "Tax_Legal_": "5 ESTATE NEW HERNHUT NEW QUARTER", "Name": "CHINNERY, IONE E., TRUSTEE", "Address": "PO Box 302051", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75100, "Improved_V": 322400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.89246956299999, "SHAPE_Area": 874.01522949299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362074.946099996566772, 256004.647100001573563 ], [ 362058.015399999916553, 256004.297499999403954 ], [ 362057.860699996352196, 256022.450199998915195 ], [ 362105.424199998378754, 256023.894999999552965 ], [ 362105.582400001585484, 256005.320000000298023 ], [ 362074.946099996566772, 256004.647100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703062100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87842535, "LATITUDE": 18.33305584, "OBJECTID_1": 23156, "PARCEL_NO_": "105703062100", "Tax_Legal_": "LONGMATH 11-15 No.5 RED HOOK QTR", "Name": "FARRELL, BERNADINE", "Address": "PO Box 600307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8016307, "Country": "United States", "Land_Value": 37800, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.89224817900001, "SHAPE_Area": 1579.5247688300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364378.0658999979496, 255989.299899999052286 ], [ 364371.618900001049042, 255988.82490000128746 ], [ 364362.767499998211861, 255986.641600001603365 ], [ 364355.535899996757507, 255983.627099998295307 ], [ 364349.119499996304512, 255979.563799999654293 ], [ 364332.656999997794628, 256018.903499998152256 ], [ 364372.832400001585484, 256035.697599999606609 ], [ 364378.0658999979496, 255989.299899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703062000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87805315, "LATITUDE": 18.33306784, "OBJECTID_1": 23155, "PARCEL_NO_": "105703062000", "Tax_Legal_": "LANGMATH ESTATE 11-17 No.5 RED HOOK QTR.", "Name": "BATTISTE, CYRIL A. & WILLIAMS, H. P", "Address": "PO Box 600111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51000, "Improved_V": 253800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.560813228, "SHAPE_Area": 1832.0267969900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364426.182099997997284, 256020.513399999588728 ], [ 364412.785800002515316, 255983.884500000625849 ], [ 364396.619999997317791, 255988.396299999207258 ], [ 364388.547899998724461, 255989.38569999858737 ], [ 364378.0658999979496, 255989.299899999052286 ], [ 364372.832400001585484, 256035.697599999606609 ], [ 364401.931599996984005, 256027.49210000038147 ], [ 364426.182099997997284, 256020.513399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803036900", "MAP": "D9-5262-T92", "PARCEL_NAM": "19-2-68", "ACRE": "0.27", "LONGITUDE": -64.85986256, "LATITUDE": 18.33303032, "OBJECTID_1": 23985, "PARCEL_NO_": "105803036900", "Tax_Legal_": "SMITH BAY 19-2-68 EASTEND QUARTER", "Name": "HENRY, JULIAN, E. & RACHEL", "Address": "ESTATE NADIR 33-61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38600, "Improved_V": 297400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.56324413199999, "SHAPE_Area": 1093.6676760600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366342.196299999952316, 256010.863800000399351 ], [ 366307.638099998235703, 255997.2820999994874 ], [ 366307.190399996936321, 256049.840700000524521 ], [ 366327.443499997258186, 256038.818500000983477 ], [ 366328.285800002515316, 256034.603500001132488 ], [ 366342.196299999952316, 256010.863800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8590101, "LATITUDE": 18.33299789, "OBJECTID_1": 23955, "PARCEL_NO_": "105803033800", "Tax_Legal_": "SMITH BAY 19-2-82 EASTEND QTR.", "Name": "LAKE, PATRICIA", "Address": "PO Box 10463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.79596115000001, "SHAPE_Area": 974.35311370600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366431.713100001215935, 256009.696600001305342 ], [ 366405.232500001788139, 255994.492199998348951 ], [ 366401.910099998116493, 256005.864100001752377 ], [ 366392.751199997961521, 256039.775199998170137 ], [ 366391.09179999679327, 256045.250100001692772 ], [ 366410.526000000536442, 256035.698800001293421 ], [ 366412.147699996829033, 256034.656599998474121 ], [ 366416.209799997508526, 256031.101300001144409 ], [ 366421.087200000882149, 256026.497099999338388 ], [ 366431.713100001215935, 256009.696600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804045300", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-134", "ACRE": "0.39", "LONGITUDE": -64.85697476, "LATITUDE": 18.33305633, "OBJECTID_1": 24730, "PARCEL_NO_": "105804045300", "Tax_Legal_": "SMITH BAY 19-2-134 EASTEND QUARTER", "Name": "FERREIRA, CULSON & GAIL", "Address": "PO BOX 503062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 55800, "Improved_V": 278400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.11995458000001, "SHAPE_Area": 1651.3515589799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366654.219400003552437, 256015.739599999040365 ], [ 366622.087399996817112, 256001.333299998193979 ], [ 366618.815399996936321, 256006.795000001788139 ], [ 366618.799199998378754, 256008.694699998944998 ], [ 366611.441699996590614, 256020.455699998885393 ], [ 366609.821900002658367, 256021.286800000816584 ], [ 366609.001199997961521, 256022.968899998813868 ], [ 366591.163400001823902, 256034.43299999833107 ], [ 366591.122100003063679, 256039.287799999117851 ], [ 366593.528399996459484, 256040.785199999809265 ], [ 366595.133799999952316, 256041.642700001597404 ], [ 366607.206900000572205, 256044.274599999189377 ], [ 366616.875500001013279, 256045.198100000619888 ], [ 366622.514300003647804, 256045.877599999308586 ], [ 366631.394500002264977, 256044.683699999004602 ], [ 366645.139600001275539, 256040.363200001418591 ], [ 366654.219400003552437, 256015.739599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504011200", "MAP": null, "PARCEL_NAM": "5A", "ACRE": null, "LONGITUDE": -64.89990625, "LATITUDE": 18.3330967, "OBJECTID_1": 20392, "PARCEL_NO_": "105504011200", "Tax_Legal_": "5A ESTATE NEW HURNHUT NEW QTR", "Name": "FAHIE, ALMIRA & RALPH D,SR. & MARSHA JOHN & JUDITH OGARRO", "Address": "PO Box 304803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.05710904, "SHAPE_Area": 758.18755430700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362058.186200000345707, 255984.245000001043081 ], [ 362058.141199998557568, 255989.521899998188019 ], [ 362075.871100001037121, 255990.722500000149012 ], [ 362074.946099996566772, 256004.647100001573563 ], [ 362105.582400001585484, 256005.320000000298023 ], [ 362105.618400000035763, 256001.098499998450279 ], [ 362104.968500003218651, 255982.728000000119209 ], [ 362058.186200000345707, 255984.245000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046500", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-126", "ACRE": "0.29", "LONGITUDE": -64.85540302, "LATITUDE": 18.33294516, "OBJECTID_1": 24743, "PARCEL_NO_": "105804046500", "Tax_Legal_": "19-2-126 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "LAWRENCE, LEWIS & MARGARET & OTHERS", "Address": "27E Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 63300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.56227176, "SHAPE_Area": 1392.4681808800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366810.778899997472763, 256001.188900001347065 ], [ 366776.229699999094009, 255986.55180000141263 ], [ 366779.302100002765656, 256004.519900001585484 ], [ 366774.194499999284744, 256036.142099998891354 ], [ 366785.455899998545647, 256039.400699999183416 ], [ 366791.085699997842312, 256041.135499998927116 ], [ 366796.710199996829033, 256043.503600001335144 ], [ 366799.130900003015995, 256043.312300000339746 ], [ 366801.560599997639656, 256042.065600000321865 ], [ 366810.778899997472763, 256001.188900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504011900", "MAP": null, "PARCEL_NAM": "5AA", "ACRE": null, "LONGITUDE": -64.90010116000001, "LATITUDE": 18.33313502, "OBJECTID_1": 20398, "PARCEL_NO_": "105504011900", "Tax_Legal_": "5AA NEW HERNHUT NEW QTR", "Name": "FAHIE, ANNIE P", "Address": "PO Box 7644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33700, "Improved_V": 169900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.436237741200003, "SHAPE_Area": 249.09877558900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362058.141199998557568, 255989.521899998188019 ], [ 362058.015399999916553, 256004.297499999403954 ], [ 362074.946099996566772, 256004.647100001573563 ], [ 362075.871100001037121, 255990.722500000149012 ], [ 362058.141199998557568, 255989.521899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803033900", "MAP": "D9-5262-T92", "PARCEL_NAM": "19-2-71", "ACRE": "0.32", "LONGITUDE": -64.85933795, "LATITUDE": 18.33300107, "OBJECTID_1": 23956, "PARCEL_NO_": "105803033900", "Tax_Legal_": "SMITH BAY 19-2-71 1,2,3 EASTEND QRT", "Name": "FOY, LISTON & JEWEL", "Address": "PO Box 306953", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52500, "Improved_V": 78600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.23591202200001, "SHAPE_Area": 1391.10438082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366401.910099998116493, 256005.864100001752377 ], [ 366356.780000001192093, 256002.750500001013279 ], [ 366355.943099997937679, 256006.332299999892712 ], [ 366355.122400000691414, 256008.014299999922514 ], [ 366348.5945999994874, 256017.037900000810623 ], [ 366344.4983000010252, 256024.603700000792742 ], [ 366392.751199997961521, 256039.775199998170137 ], [ 366401.910099998116493, 256005.864100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804045900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85653949, "LATITUDE": 18.3328063, "OBJECTID_1": 24737, "PARCEL_NO_": "105804045900", "Tax_Legal_": "SMITH BAY 19-2-136", "Name": "EMANUS MICHEL and ROSELENE JEAN", "Address": "PO Box 9716", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.430484952, "SHAPE_Area": 1833.0465276299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366692.997900001704693, 256007.191100001335144 ], [ 366693.82940000295639, 256004.242499999701977 ], [ 366690.733599998056889, 255989.018500000238419 ], [ 366674.03660000115633, 255961.22859999909997 ], [ 366672.436599999666214, 255959.737799998372793 ], [ 366663.574400000274181, 255958.820900000631809 ], [ 366663.315399996936321, 255989.216299999505281 ], [ 366654.219400003552437, 256015.739599999040365 ], [ 366645.139600001275539, 256040.363200001418591 ], [ 366656.4746999964118, 256034.967599999159575 ], [ 366670.255800001323223, 256026.425500001758337 ], [ 366671.877400003373623, 256025.383299998939037 ], [ 366680.802599996328354, 256018.912500001490116 ], [ 366689.745700001716614, 256010.330800000578165 ], [ 366692.997900001704693, 256007.191100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803033500", "MAP": "D9-5261-T92", "PARCEL_NAM": "19-2-37", "ACRE": "0.29", "LONGITUDE": -64.85822899, "LATITUDE": 18.33297629, "OBJECTID_1": 23952, "PARCEL_NO_": "105803033500", "Tax_Legal_": "SMITH BAY 19-2-37 EASTEND QTR.", "Name": "WATSON, YVONNE P. & REGINALD", "Address": "PO BOX 5025502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 47600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.399495839, "SHAPE_Area": 1119.88005445 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366491.142899997532368, 256038.047400001436472 ], [ 366520.272600002586842, 256026.253499999642372 ], [ 366493.10080000013113, 255997.533399999141693 ], [ 366489.054799996316433, 255999.189100001007318 ], [ 366465.623199999332428, 256004.696800000965595 ], [ 366491.142899997532368, 256038.047400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703061900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87768664, "LATITUDE": 18.33290889, "OBJECTID_1": 23154, "PARCEL_NO_": "105703061900", "Tax_Legal_": "LONGMATH 11-19 No.5 RED HOOK QTR", "Name": "LEO (LIFE ESTATE), MARIE T", "Address": "PO Box 306792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47800, "Improved_V": 22400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.338232901, "SHAPE_Area": 1449.57293452 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364457.793700002133846, 256001.351500000804663 ], [ 364446.837999999523163, 255962.209499999880791 ], [ 364442.78660000115633, 255964.498399998992682 ], [ 364435.468699999153614, 255971.615699999034405 ], [ 364428.168700002133846, 255976.62220000103116 ], [ 364412.785800002515316, 255983.884500000625849 ], [ 364426.182099997997284, 256020.513399999588728 ], [ 364457.793700002133846, 256001.351500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703062200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87875423, "LATITUDE": 18.33288415, "OBJECTID_1": 23157, "PARCEL_NO_": "105703062200", "Tax_Legal_": "11-13 ESTATE LANGMATH No.5 RED HOOK QTR.", "Name": "AL-AREFI, CYNTHIA", "Address": "PO Box 502962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 42800, "Improved_V": 135100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.851404645, "SHAPE_Area": 1949.72526664 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364349.119499996304512, 255979.563799999654293 ], [ 364344.310400001704693, 255976.146899998188019 ], [ 364336.317400000989437, 255967.848900001496077 ], [ 364333.133500002324581, 255962.967599999159575 ], [ 364333.153300002217293, 255960.645799998193979 ], [ 364330.777500003576279, 255955.560100000351667 ], [ 364326.789099998772144, 255950.461199998855591 ], [ 364292.481600001454353, 256002.109400000423193 ], [ 364332.656999997794628, 256018.903499998152256 ], [ 364349.119499996304512, 255979.563799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703065600", "MAP": "A9-451-T94", "PARCEL_NAM": "11-29", "ACRE": null, "LONGITUDE": -64.87687555, "LATITUDE": 18.33291731, "OBJECTID_1": 23189, "PARCEL_NO_": "105703065600", "Tax_Legal_": "11-29 LANGMATH NO.5 RED HOOK QUARTER", "Name": "JOSEPH, JAMES, SIMONE, MATHIAS, AND LINDRA JAMES-GORDON", "Address": "6433 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42800, "Improved_V": 88100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.50831245699999, "SHAPE_Area": 1580.80288795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364534.240500003099442, 256019.920099999755621 ], [ 364543.995399996638298, 256010.711800001561642 ], [ 364545.771700002253056, 255991.5168999992311 ], [ 364543.471400000154972, 255977.565900001674891 ], [ 364495.078299999237061, 255978.858500000089407 ], [ 364483.732299998402596, 255985.520700000226498 ], [ 364534.240500003099442, 256019.920099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046000", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-130", "ACRE": "0.35", "LONGITUDE": -64.85591175, "LATITUDE": 18.33297114, "OBJECTID_1": 24738, "PARCEL_NO_": "105804046000", "Tax_Legal_": "SMITH BAY 19-2-130 #1,2&3 EASTEND QTR", "Name": "VIDAL, FREDERICK", "Address": "PO Box 502531", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 42200, "Improved_V": 140800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.17185884899999, "SHAPE_Area": 1652.1207996799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366764.540399998426437, 256033.530000001192093 ], [ 366768.836300000548363, 256002.534400001168251 ], [ 366705.898900002241135, 256007.296599999070168 ], [ 366706.687299996614456, 256009.414000000804663 ], [ 366709.039700001478195, 256017.243700001388788 ], [ 366708.094899997115135, 256033.490200001746416 ], [ 366711.298600003123283, 256036.049600001424551 ], [ 366715.328299999237061, 256036.293600000441074 ], [ 366717.758100003004074, 256035.046999998390675 ], [ 366727.451800003647804, 256033.015399999916553 ], [ 366741.171700000762939, 256031.649999998509884 ], [ 366751.653800003230572, 256031.735800001770258 ], [ 366764.540399998426437, 256033.530000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87603722, "LATITUDE": 18.33284452, "OBJECTID_1": 23146, "PARCEL_NO_": "105703060700", "Tax_Legal_": "11-40 LONGMATH RED HOOK QUARTER", "Name": "MAYNARD, ADOLPHUS", "Address": "7061 Estate Brookman", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50400, "Improved_V": 76300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.47509613899999, "SHAPE_Area": 1613.3088900400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364636.821999996900558, 255999.650299999862909 ], [ 364632.066899999976158, 255989.901099998503923 ], [ 364622.641099996864796, 255960.48200000077486 ], [ 364588.680600002408028, 255971.392000000923872 ], [ 364590.185400001704693, 255984.069899998605251 ], [ 364593.250600002706051, 256002.88230000063777 ], [ 364592.366899996995926, 256011.952100001275539 ], [ 364636.821999996900558, 255999.650299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803033600", "MAP": "D9-5261-T92", "PARCEL_NAM": "19-2-36", "ACRE": "0.26", "LONGITUDE": -64.85800413, "LATITUDE": 18.33288522, "OBJECTID_1": 23953, "PARCEL_NO_": "105803033600", "Tax_Legal_": "SMITH BAY 19-2-36 EAST END QUARTER", "Name": "FINLEY, HERBERT L & JEANNE M", "Address": "11 Blue Meadow Ct", "City": "BOURNE", "State": "Massachusetts", "Zip": 2532, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.78283119, "SHAPE_Area": 817.88182717100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366538.430799998342991, 256012.131900001317263 ], [ 366508.614600002765656, 255987.643300000578165 ], [ 366506.876400001347065, 255989.624600000679493 ], [ 366500.386399999260902, 255994.215599998831749 ], [ 366493.10080000013113, 255997.533399999141693 ], [ 366520.272600002586842, 256026.253499999642372 ], [ 366532.410499997437, 256021.286499999463558 ], [ 366538.430799998342991, 256012.131900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803025600", "MAP": "D9-8494-T010", "PARCEL_NAM": "160-B", "ACRE": ".298", "LONGITUDE": -64.86439694000001, "LATITUDE": 18.33222303, "OBJECTID_1": 23915, "PARCEL_NO_": "105803025600", "Tax_Legal_": "160-B ESTATE FRYDENHOJ NO.3 RED HOOK QTR", "Name": "JOSEPH, FRANCIS", "Address": "PO BOX 6773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.35423063499999, "SHAPE_Area": 1353.95098607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365875.602700002491474, 255942.26630000025034 ], [ 365856.655100002884865, 255930.94029999896884 ], [ 365851.651699997484684, 255907.176100000739098 ], [ 365839.911399997770786, 255906.483399998396635 ], [ 365826.999600000679493, 255907.644299998879433 ], [ 365823.262299999594688, 255909.833299998193979 ], [ 365824.036300003528595, 255947.891699999570847 ], [ 365875.602700002491474, 255942.26630000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504011300", "MAP": null, "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.89996396, "LATITUDE": 18.33285318, "OBJECTID_1": 20393, "PARCEL_NO_": "105504011300", "Tax_Legal_": "6 NEW HERNHUT 5A NEW QTR", "Name": "FRANCIS, LYDIA", "Address": "PO Box 502906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 44500, "Improved_V": 58600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.27641685, "SHAPE_Area": 1620.20355561 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362097.997599996626377, 255949.107099998742342 ], [ 362058.491899996995926, 255948.361600000411272 ], [ 362058.186200000345707, 255984.245000001043081 ], [ 362104.968500003218651, 255982.728000000119209 ], [ 362105.207699999213219, 255954.654500000178814 ], [ 362104.448100000619888, 255949.15989999845624 ], [ 362097.997599996626377, 255949.107099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703062300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87903859, "LATITUDE": 18.33268125, "OBJECTID_1": 23158, "PARCEL_NO_": "105703062300", "Tax_Legal_": "11-11 ESTATE LANGMATH No.5 RED HOOK QTR.", "Name": "HARRIS L., SAMUEL", "Address": "PO Box 305582", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65000, "Improved_V": 45600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.906701642, "SHAPE_Area": 2283.16066284 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364282.556999996304512, 255936.589200001209974 ], [ 364281.729099996387959, 255939.115499999374151 ], [ 364279.292199999094009, 255941.206500001251698 ], [ 364268.522399999201298, 255974.893399998545647 ], [ 364270.12610000371933, 255975.961899999529123 ], [ 364271.618199996650219, 255990.117400001734495 ], [ 364292.481600001454353, 256002.109400000423193 ], [ 364326.789099998772144, 255950.461199998855591 ], [ 364320.358400002121925, 255948.086500000208616 ], [ 364288.226400002837181, 255933.680300001055002 ], [ 364282.556999996304512, 255936.589200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804045400", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-135", "ACRE": "0.25", "LONGITUDE": -64.85681638, "LATITUDE": 18.33277835, "OBJECTID_1": 24731, "PARCEL_NO_": "105804045400", "Tax_Legal_": "19-2-135 ESTATE SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "VARLACK, PAUL & PATRICIA", "Address": "2811 Polson Dr", "City": "Kissimmee", "State": "Florida", "Zip": 34758, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.79025088, "SHAPE_Area": 907.03359197199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366663.315399996936321, 255989.216299999505281 ], [ 366624.689699999988079, 255979.823100000619888 ], [ 366624.603399999439716, 255989.954900000244379 ], [ 366622.087399996817112, 256001.333299998193979 ], [ 366654.219400003552437, 256015.739599999040365 ], [ 366663.315399996936321, 255989.216299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105603030800", "MAP": null, "PARCEL_NAM": "C-10", "ACRE": null, "LONGITUDE": -64.89886421, "LATITUDE": 18.33271711, "OBJECTID_1": 21573, "PARCEL_NO_": "105603030800", "Tax_Legal_": "C-10 HOFFMAN FRENCHMAN BAY", "Name": "PENTECOSTAL CHURCH OF GOD", "Address": "PO Box 304543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 326700, "Improved_V": 185700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.493269626, "SHAPE_Area": 3164.4918529699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362166.742799997329712, 255925.182900000363588 ], [ 362169.514899998903275, 255978.401099998503923 ], [ 362228.372100003063679, 255979.304999999701977 ], [ 362226.40990000218153, 255925.67119999974966 ], [ 362166.742799997329712, 255925.182900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8666838, "LATITUDE": 18.33273515, "OBJECTID_1": 23516, "PARCEL_NO_": "105704021200", "Tax_Legal_": "FRYDENHOJ 145 RED HOOK QTR", "Name": "CHINNERY, DAVID WINSTON", "Address": "PO Box 11083", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.601300748, "SHAPE_Area": 884.482122731 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365611.241300001740456, 255961.396000001579523 ], [ 365588.639399997889996, 255964.166299998760223 ], [ 365587.518399998545647, 256001.098499998450279 ], [ 365598.783399999141693, 256003.934999998658895 ], [ 365608.451899997889996, 256004.858500000089407 ], [ 365611.241300001740456, 255961.396000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803037000", "MAP": "D9-5262-T92", "PARCEL_NAM": "19-2-67", "ACRE": "0.23", "LONGITUDE": -64.85974399, "LATITUDE": 18.33276076, "OBJECTID_1": 23986, "PARCEL_NO_": "105803037000", "Tax_Legal_": "SMITH BAY 19-2-67 EAST END QUARTER", "Name": "ROBB, MICHAEL C. & PATRICIA", "Address": "PO Box 9475", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.23070986799999, "SHAPE_Area": 983.116958565 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366344.955099999904633, 255970.989700000733137 ], [ 366307.688500002026558, 255991.371899999678135 ], [ 366307.638099998235703, 255997.2820999994874 ], [ 366342.196299999952316, 256010.863800000399351 ], [ 366344.654799997806549, 256006.239900000393391 ], [ 366347.104299999773502, 256002.671300001442432 ], [ 366348.754699997603893, 255998.251899998635054 ], [ 366349.593299999833107, 255994.459100000560284 ], [ 366350.468000002205372, 255986.444699998944998 ], [ 366349.693999998271465, 255982.638599999248981 ], [ 366346.526299998164177, 255975.857700001448393 ], [ 366344.955099999904633, 255970.989700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86614625, "LATITUDE": 18.33274191, "OBJECTID_1": 23895, "PARCEL_NO_": "105803023600", "Tax_Legal_": "FRYDENHOJ 146 & 147 RED HOOK", "Name": "CLENDINEN, PEARLE & ULYSSES", "Address": "4442 Mandolin Blvd", "City": "Winter Haven", "State": "Florida", "Zip": 33884, "Country": "United States", "Land_Value": 50700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.13880901, "SHAPE_Area": 1529.3978066100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365632.652099996805191, 256003.78999999910593 ], [ 365659.294600002467632, 255999.99720000103116 ], [ 365677.071199998259544, 255995.709800001233816 ], [ 365679.500900000333786, 255994.463100001215935 ], [ 365681.959399998188019, 255989.839200001209974 ], [ 365682.808899998664856, 255984.779899999499321 ], [ 365679.723899997770786, 255968.289299998432398 ], [ 365633.765900000929832, 255967.702100001275539 ], [ 365632.652099996805191, 256003.78999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87642739, "LATITUDE": 18.33264085, "OBJECTID_1": 23148, "PARCEL_NO_": "105703060900", "Tax_Legal_": "11-28 ESTATE LANGMATH No.5 RED HOOK QTR.", "Name": "WILLIAMS, JEAN-LOUIS", "Address": "PO Box 12255", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52900, "Improved_V": 159000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.78652495700001, "SHAPE_Area": 1631.1804100899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364588.680600002408028, 255971.392000000923872 ], [ 364572.933799996972084, 255926.72239999845624 ], [ 364564.827500000596046, 255931.722300000488758 ], [ 364562.381599999964237, 255934.868599999696016 ], [ 364561.551899999380112, 255937.606100000441074 ], [ 364558.283500000834465, 255942.645599998533726 ], [ 364554.156700000166893, 255953.799699999392033 ], [ 364552.470299996435642, 255962.440799999982119 ], [ 364553.136399999260902, 255978.911499999463558 ], [ 364554.641099996864796, 255991.589499998837709 ], [ 364590.185400001704693, 255984.069899998605251 ], [ 364588.680600002408028, 255971.392000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502040600", "MAP": "D9-3254-T85", "PARCEL_NAM": "8", "ACRE": "1.0", "LONGITUDE": -64.90995276, "LATITUDE": 18.3324699, "OBJECTID_1": 19912, "PARCEL_NO_": "105502040600", "Tax_Legal_": "RAPHUNE ESTATE 8 5B NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.989024906, "SHAPE_Area": 4815.3352500399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361063.230099998414516, 255877.521000001579523 ], [ 360997.164599999785423, 255870.858600001782179 ], [ 360998.169399999082088, 255942.216400001198053 ], [ 361001.223800003528595, 255962.295299999415874 ], [ 361056.14299999922514, 255952.190099999308586 ], [ 361054.631099998950958, 255940.356499999761581 ], [ 361054.056699998676777, 255913.120799999684095 ], [ 361057.522900000214577, 255884.86259999871254 ], [ 361059.164300002157688, 255881.498500000685453 ], [ 361063.230099998414516, 255877.521000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803034000", "MAP": "D9-5262-T92", "PARCEL_NAM": "19-2-70", "ACRE": null, "LONGITUDE": -64.85930061000001, "LATITUDE": 18.33271535, "OBJECTID_1": 23957, "PARCEL_NO_": "105803034000", "Tax_Legal_": "19-2-70 ESTATE SMITH BAY NO.1,2,& 3 EAST END QTR.", "Name": "LAND RUNNER LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60700, "Improved_V": 716000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.77279184400001, "SHAPE_Area": 1503.27068762 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366386.955200001597404, 255962.889699999243021 ], [ 366356.209299996495247, 255975.092599999159575 ], [ 366357.784100003540516, 255979.538400001823902 ], [ 366358.55629999935627, 255983.555500000715256 ], [ 366356.8141999989748, 255998.739999998360872 ], [ 366356.780000001192093, 256002.750500001013279 ], [ 366401.910099998116493, 256005.864100001752377 ], [ 366405.232500001788139, 255994.492199998348951 ], [ 366386.955200001597404, 255962.889699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046100", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-129", "ACRE": "0.37", "LONGITUDE": -64.85594003, "LATITUDE": 18.33271174, "OBJECTID_1": 24739, "PARCEL_NO_": "105804046100", "Tax_Legal_": "19-2-129 ESTATE SMITH BAY NO.1,2&3 EASTEND QTR.", "Name": "PERPIE, NATHANIEL", "Address": "PO Box 10060", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37700, "Improved_V": 130700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.148188774, "SHAPE_Area": 1977.09034782 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366766.661899998784065, 255973.807900000363588 ], [ 366765.234899997711182, 255971.443500000983477 ], [ 366695.199299998581409, 255980.603799998760223 ], [ 366696.431800000369549, 255982.732299998402596 ], [ 366698.020999997854233, 255985.489500001072884 ], [ 366705.898900002241135, 256007.296599999070168 ], [ 366768.836300000548363, 256002.534400001168251 ], [ 366766.661899998784065, 255973.807900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703061700", "MAP": "A9-451-T94", "PARCEL_NAM": "11-23", "ACRE": "0.30", "LONGITUDE": -64.87714508000001, "LATITUDE": 18.33255916, "OBJECTID_1": 23153, "PARCEL_NO_": "105703061700", "Tax_Legal_": "11-23 ESTATE LANGMATH No.5 RED HOOK QT.", "Name": "NICHOLAS, JOSEPH", "Address": "218 Estate Wintberg", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.643117832, "SHAPE_Area": 1211.9627745299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364495.078299999237061, 255978.858500000089407 ], [ 364516.446999996900558, 255931.537399999797344 ], [ 364510.820799998939037, 255929.380399998277426 ], [ 364503.556800000369549, 255930.165300000458956 ], [ 364475.204599998891354, 255945.343100000172853 ], [ 364483.732299998402596, 255985.520700000226498 ], [ 364495.078299999237061, 255978.858500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8583932, "LATITUDE": 18.33264373, "OBJECTID_1": 23959, "PARCEL_NO_": "105803034200", "Tax_Legal_": "19-2-38 ESTATE SMITH BAY EAST END QUARTER", "Name": "GUMBS, AUSTIN & JUDITH", "Address": "6100 Red Hook Qtrs", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39900, "Improved_V": 168800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.844090282, "SHAPE_Area": 1469.1467887700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366517.651600003242493, 255955.30460000038147 ], [ 366484.461499996483326, 255970.442699998617172 ], [ 366444.10809999704361, 255974.545400001108646 ], [ 366443.263999998569489, 255978.971500001847744 ], [ 366442.373199999332428, 255988.885600000619888 ], [ 366446.313100002706051, 255999.683600001037121 ], [ 366485.903300002217293, 255990.508400000631809 ], [ 366495.616800002753735, 255986.155000001192093 ], [ 366500.485299997031689, 255982.606199998408556 ], [ 366502.92400000244379, 255980.304200001060963 ], [ 366506.993299998342991, 255975.904500000178814 ], [ 366517.651600003242493, 255955.30460000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105803020500", "MAP": "D9-3216-T85", "PARCEL_NAM": "ROW", "ACRE": ".54", "LONGITUDE": -64.86302612, "LATITUDE": 18.33239197, "OBJECTID_1": 23865, "PARCEL_NO_": "105803020500", "Tax_Legal_": "110 REM & 110 ROW FRYDENHOJ RED HOOK QUARTER", "Name": "MARK D WENNER REVOCABLE LIVING TRUST", "Address": "PO BOX 11910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 324600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 454.43395200600003, "SHAPE_Area": 2052.6955755499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365958.302699998021126, 255923.49549999833107 ], [ 366006.472900003194809, 255948.376600001007318 ], [ 365961.19709999859333, 255962.360399998724461 ], [ 365961.897299997508526, 255974.820599999278784 ], [ 366026.236900001764297, 255994.767799999564886 ], [ 366025.513300001621246, 255985.051600001752377 ], [ 365974.051299996674061, 255967.953999999910593 ], [ 366022.561300002038479, 255952.941199999302626 ], [ 366021.8108000010252, 255946.391199998557568 ], [ 365967.22070000320673, 255917.868999999016523 ], [ 365964.331699997186661, 255878.370799999684095 ], [ 365955.419100001454353, 255883.364100001752377 ], [ 365958.302699998021126, 255923.49549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046600", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-127", "ACRE": null, "LONGITUDE": -64.85537771, "LATITUDE": 18.33258545, "OBJECTID_1": 24744, "PARCEL_NO_": "105804046600", "Tax_Legal_": "SMITH BAY 19-2-127 EASTEND QTR.", "Name": "SMITH, WADE M. & NATALIE R. JOSEPH", "Address": "PO Box 503044", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31600, "Improved_V": 116000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.93417566599999, "SHAPE_Area": 1276.38463613 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366784.630900003015995, 255946.934999998658895 ], [ 366774.717799998819828, 255974.718199998140335 ], [ 366776.229699999094009, 255986.55180000141263 ], [ 366810.778899997472763, 256001.188900001347065 ], [ 366815.821800000965595, 255977.165600001811981 ], [ 366784.630900003015995, 255946.934999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703062500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87837911, "LATITUDE": 18.33257459, "OBJECTID_1": 23160, "PARCEL_NO_": "105703062500", "Tax_Legal_": "11-14 ESTATE LANGMATH RED HOOK QTR. #5", "Name": "ESTE, DUKE & BERNADETTE", "Address": "PO Box 600133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48600, "Improved_V": 125900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.69896879199999, "SHAPE_Area": 1610.75918043 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364384.910199999809265, 255943.126400001347065 ], [ 364357.619599997997284, 255928.337600000202656 ], [ 364342.173799999058247, 255942.987700000405312 ], [ 364338.100900001823902, 255947.809599999338388 ], [ 364338.07209999859333, 255951.186799999326468 ], [ 364340.464100003242493, 255954.372800000011921 ], [ 364342.825499996542931, 255961.147100001573563 ], [ 364350.015699997544289, 255969.016399998217821 ], [ 364354.822999998927116, 255972.644400000572205 ], [ 364366.066500000655651, 255978.013700000941753 ], [ 364373.308899998664856, 255979.761799998581409 ], [ 364379.755800001323223, 255980.236699998378754 ], [ 364384.910199999809265, 255943.126400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703062600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87795223000001, "LATITUDE": 18.33259497, "OBJECTID_1": 23161, "PARCEL_NO_": "105703062600", "Tax_Legal_": "LANGMATH ESTATE 11-16 No.5 REDHOOK QTR", "Name": "CHARLES, RENIX", "Address": "394-353 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.31885368, "SHAPE_Area": 1897.72470436 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364399.488499999046326, 255935.64640000090003 ], [ 364384.910199999809265, 255943.126400001347065 ], [ 364379.755800001323223, 255980.236699998378754 ], [ 364396.699100002646446, 255979.108800001442432 ], [ 364414.486599996685982, 255973.554900001734495 ], [ 364427.452299997210503, 255966.061599999666214 ], [ 364434.759499996900558, 255960.210799999535084 ], [ 364437.203599996864796, 255957.275499999523163 ], [ 364449.364799998700619, 255949.564599998295307 ], [ 364449.397200003266335, 255945.7652000002563 ], [ 364399.472300000488758, 255937.546100001782179 ], [ 364399.488499999046326, 255935.64640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804044900", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-147", "ACRE": "0.41", "LONGITUDE": -64.85727972, "LATITUDE": 18.33251124, "OBJECTID_1": 24726, "PARCEL_NO_": "105804044900", "Tax_Legal_": "SMITH BAY 19-2-147 EASTEND QTR.", "Name": "CHRISTOPHER, KAJ & ANN", "Address": "PO Box 301944", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.26099329600001, "SHAPE_Area": 1879.51441974 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366615.244199998676777, 255952.72580000013113 ], [ 366577.460799999535084, 255939.11769999936223 ], [ 366570.882600001990795, 255954.051500000059605 ], [ 366563.485500000417233, 255970.456199999898672 ], [ 366613.250299997627735, 255997.461300000548363 ], [ 366615.755599997937679, 255987.349300000816584 ], [ 366616.63740000128746, 255978.490600001066923 ], [ 366615.139899998903275, 255964.968400001525879 ], [ 366615.244199998676777, 255952.72580000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86570174000001, "LATITUDE": 18.33258596, "OBJECTID_1": 23885, "PARCEL_NO_": "105803022500", "Tax_Legal_": "FRYDENHOJ 148 RED HOOK", "Name": "TARIQ CANNONIER and ELIAS YOHANNES", "Address": "PO Box 8773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.97584599699999, "SHAPE_Area": 1069.07329327 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365712.159800000488758, 255947.023200001567602 ], [ 365687.158699996769428, 255947.451900001615286 ], [ 365688.733599998056889, 255951.897799998521805 ], [ 365690.137599997222424, 255976.396099999547005 ], [ 365692.488200001418591, 255984.436900001019239 ], [ 365694.077500000596046, 255987.194099999964237 ], [ 365698.89919999986887, 255989.133400000631809 ], [ 365704.548799999058247, 255988.546399999409914 ], [ 365711.024400003254414, 255985.644099999219179 ], [ 365716.715400002896786, 255980.202199999243021 ], [ 365721.564000003039837, 255978.975299999117851 ], [ 365712.159800000488758, 255947.023200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703061600", "MAP": "A9-451-T94", "PARCEL_NAM": "11-27", "ACRE": "0.45", "LONGITUDE": -64.87687799, "LATITUDE": 18.33261846, "OBJECTID_1": 23152, "PARCEL_NO_": "105703061600", "Tax_Legal_": "LONGMATH 11-27 No.5 RED HOOK QTR", "Name": "WEBBE, WILSTON A. & ALLEN, OLGA", "Address": "PO Box 600156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35000, "Improved_V": 179700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.46209267099999, "SHAPE_Area": 1451.86768089 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364495.078299999237061, 255978.858500000089407 ], [ 364543.471400000154972, 255977.565900001674891 ], [ 364543.649400003254414, 255956.669100001454353 ], [ 364534.8699000030756, 255946.042500000447035 ], [ 364516.446999996900558, 255931.537399999797344 ], [ 364495.078299999237061, 255978.858500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703100800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87936213, "LATITUDE": 18.33254128, "OBJECTID_1": 23419, "PARCEL_NO_": "105703100800", "Tax_Legal_": "MARIENDAHL 7-30 No.4 RED HOOK QTR.", "Name": "FRANCIS, VALERIE M. & JOSEPH H", "Address": "PO Box 625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23900, "Improved_V": 106700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.60873125800001, "SHAPE_Area": 1064.30812285 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364279.292199999094009, 255941.206500001251698 ], [ 364273.640799999237061, 255942.004599999636412 ], [ 364271.230899997055531, 255940.929499998688698 ], [ 364268.833499997854233, 255938.3766999989748 ], [ 364268.052400000393391, 255935.41499999910593 ], [ 364256.844899997115135, 255925.824099998921156 ], [ 364236.462300002574921, 255952.0439000017941 ], [ 364268.522399999201298, 255974.893399998545647 ], [ 364279.292199999094009, 255941.206500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803023000", "MAP": "D9-3195-T85", "PARCEL_NAM": "110-2", "ACRE": ".23", "LONGITUDE": -64.8628235, "LATITUDE": 18.332575, "OBJECTID_1": 23889, "PARCEL_NO_": "105803023000", "Tax_Legal_": "FRYDENHOJ 111A-1 RED HOOK QTR", "Name": "JOHNSON, HUBERT & ANN BRAMBLE", "Address": "PO BOX 11091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.25648196399999, "SHAPE_Area": 804.40117927100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366025.513300001621246, 255985.051600001752377 ], [ 366024.055299997329712, 255966.885600000619888 ], [ 366022.561300002038479, 255952.941199999302626 ], [ 365974.051299996674061, 255967.953999999910593 ], [ 366025.513300001621246, 255985.051600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804045500", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-137", "ACRE": "0.27", "LONGITUDE": -64.85679459000001, "LATITUDE": 18.33254451, "OBJECTID_1": 24732, "PARCEL_NO_": "105804045500", "Tax_Legal_": "19-2-137 SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "PINNEY, JR. , CALVIN & CRYSTAL", "Address": "7786 UPPER LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.15640605600001, "SHAPE_Area": 1074.35170907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366663.574400000274181, 255958.820900000631809 ], [ 366624.9037000015378, 255954.704700000584126 ], [ 366624.689699999988079, 255979.823100000619888 ], [ 366663.315399996936321, 255989.216299999505281 ], [ 366663.574400000274181, 255958.820900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87615556, "LATITUDE": 18.33247676, "OBJECTID_1": 23147, "PARCEL_NO_": "105703060800", "Tax_Legal_": "LONGMATH 11-41 RED HOOK QUARTER", "Name": "ST LAURENCE & WILLIAMS, HERME", "Address": "PO Box 307653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52900, "Improved_V": 307100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.695691149, "SHAPE_Area": 1580.2916691400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364622.641099996864796, 255960.48200000077486 ], [ 364617.99379999935627, 255938.067999999970198 ], [ 364614.818899996578693, 255932.131400000303984 ], [ 364610.817900002002716, 255928.510099999606609 ], [ 364602.780000001192093, 255925.489000000059605 ], [ 364594.722199998795986, 255924.789799999445677 ], [ 364584.240199998021126, 255924.703999999910593 ], [ 364572.933799996972084, 255926.72239999845624 ], [ 364588.680600002408028, 255971.392000000923872 ], [ 364622.641099996864796, 255960.48200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8654196, "LATITUDE": 18.33253262, "OBJECTID_1": 23882, "PARCEL_NO_": "105803022200", "Tax_Legal_": "FRYDENHOJ 136 RED HOOK", "Name": "NESBITT, D.L. S", "Address": "PO Box 1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34000, "Improved_V": 356700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.591135634, "SHAPE_Area": 1064.9038262 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365750.871799997985363, 255946.284600000828505 ], [ 365712.159800000488758, 255947.023200001567602 ], [ 365721.564000003039837, 255978.975299999117851 ], [ 365728.806500002741814, 255980.723400000482798 ], [ 365733.646099999547005, 255980.551899999380112 ], [ 365740.924500003457069, 255978.078299999237061 ], [ 365746.608300000429153, 255973.480799999088049 ], [ 365749.880300000309944, 255968.019099999219179 ], [ 365751.571999996900558, 255958.744899999350309 ], [ 365750.871799997985363, 255946.284600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804044400", "MAP": "D9-5261-T92", "PARCEL_NAM": "19-2-34", "ACRE": "0.30", "LONGITUDE": -64.8577215, "LATITUDE": 18.33245102, "OBJECTID_1": 24721, "PARCEL_NO_": "105804044400", "Tax_Legal_": "SMITH BAY 19-2-34 EAST END QUARTER", "Name": "JRM FAMILY LIMITED PARTNERSHIP", "Address": "5529 FM 359 Rd", "City": "Richmond", "State": "Texas", "Zip": 77406, "Country": "United States", "Land_Value": 49200, "Improved_V": 245900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.32831563, "SHAPE_Area": 1638.60620563 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366572.530900001525879, 255950.309399999678135 ], [ 366543.667599998414516, 255930.397399999201298 ], [ 366540.401000000536442, 255935.22580000013113 ], [ 366529.776799999177456, 255951.815200001001358 ], [ 366526.481499999761581, 255960.020899999886751 ], [ 366524.845499999821186, 255962.7516999989748 ], [ 366521.582500003278255, 255967.157999999821186 ], [ 366520.749200001358986, 255970.317600000649691 ], [ 366519.12219999730587, 255971.993000000715256 ], [ 366524.703100003302097, 255974.892900001257658 ], [ 366555.601400002837181, 255985.163600001484156 ], [ 366563.485500000417233, 255970.456199999898672 ], [ 366570.882600001990795, 255954.051500000059605 ], [ 366572.530900001525879, 255950.309399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033100", "MAP": "D9-6060-T96", "PARCEL_NAM": "16-1-4", "ACRE": "1.32", "LONGITUDE": -64.84780149, "LATITUDE": 18.33230191, "OBJECTID_1": 24220, "PARCEL_NO_": "105804033100", "Tax_Legal_": "SMITH BAY 16-1 1,2&3 SMITH BAY", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 530200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.08164087900002, "SHAPE_Area": 5877.0963900300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367541.08330000191927, 255937.716400001198053 ], [ 367545.05009999871254, 255945.348200000822544 ], [ 367547.433100000023842, 255949.589600000530481 ], [ 367541.765500001609325, 255952.287399999797344 ], [ 367550.503700003027916, 255967.768699999898672 ], [ 367553.682199999690056, 255973.28319999948144 ], [ 367556.06700000166893, 255977.313499998301268 ], [ 367556.858900003135204, 255979.008699998259544 ], [ 367564.137299999594688, 255976.535199999809265 ], [ 367647.167700000107288, 255979.536800000816584 ], [ 367654.329199999570847, 255990.783300001174212 ], [ 367659.996799997985363, 255988.085499998182058 ], [ 367665.174500003457069, 255948.231199998408556 ], [ 367519.555600002408028, 255909.042500000447035 ], [ 367529.854299999773502, 255930.658399999141693 ], [ 367536.324500001966953, 255928.389299999922514 ], [ 367541.08330000191927, 255937.716400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046200", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-128", "ACRE": "0.39", "LONGITUDE": -64.85603785000001, "LATITUDE": 18.33245755, "OBJECTID_1": 24740, "PARCEL_NO_": "105804046200", "Tax_Legal_": "19-2-128 SMITH BAY Eastend Quarter", "Name": "ALEXANDER, TESSA J", "Address": "PO Box 502211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 42000, "Improved_V": 253400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.07880187800001, "SHAPE_Area": 2231.6830105 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366765.234899997711182, 255971.443500000983477 ], [ 366764.253200002014637, 255944.83219999819994 ], [ 366749.908500000834465, 255945.980599999427795 ], [ 366679.769500002264977, 255951.595800001174212 ], [ 366680.535700000822544, 255955.58219999819994 ], [ 366682.92230000346899, 255959.401399999856949 ], [ 366695.199299998581409, 255980.603799998760223 ], [ 366765.234899997711182, 255971.443500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803035500", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-57", "ACRE": "0.27", "LONGITUDE": -64.85879602, "LATITUDE": 18.33240933, "OBJECTID_1": 23972, "PARCEL_NO_": "105803035500", "Tax_Legal_": "SMITH BAY 19-2-57 EAST END QTR.", "Name": "MARTIN, AGNOLA & EVERETTE & EDMUND", "Address": "PO Box 10227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.14552468700001, "SHAPE_Area": 1114.2608962700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366423.528800003230572, 255929.203000001609325 ], [ 366416.740299999713898, 255968.833000000566244 ], [ 366443.263999998569489, 255978.971500001847744 ], [ 366444.10809999704361, 255974.545400001108646 ], [ 366449.267899997532368, 255936.801899999380112 ], [ 366433.974899999797344, 255933.510400000959635 ], [ 366423.528800003230572, 255929.203000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803034100", "MAP": "D9-5262-T92", "PARCEL_NAM": "19-2-69", "ACRE": "0.32", "LONGITUDE": -64.85948436, "LATITUDE": 18.33240721, "OBJECTID_1": 23958, "PARCEL_NO_": "105803034100", "Tax_Legal_": "SMITH BAY 19-2-69 EASTEND QTR.", "Name": "CLAXTON, CLEM", "Address": "2357 Albaster Ave", "City": "ORLANDO", "State": "Florida", "Zip": 32833, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.45004670099999, "SHAPE_Area": 1171.3669946499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366356.209299996495247, 255975.092599999159575 ], [ 366386.955200001597404, 255962.889699999243021 ], [ 366375.038599997758865, 255941.893899999558926 ], [ 366330.761500000953674, 255933.298900000751019 ], [ 366337.127499997615814, 255943.272399999201298 ], [ 366341.110500000417233, 255949.00450000166893 ], [ 366348.282799996435642, 255958.984600000083447 ], [ 366353.846100002527237, 255968.52930000051856 ], [ 366356.209299996495247, 255975.092599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86616145000001, "LATITUDE": 18.33246269, "OBJECTID_1": 23894, "PARCEL_NO_": "105803023500", "Tax_Legal_": "FRYDENHOJ 151 & 154 3 RED HOOK", "Name": "MAIGNAN, NAQUET", "Address": "PO Box 302456", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 34700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.28302377700001, "SHAPE_Area": 1384.2117100800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365630.794200003147125, 255937.913600001484156 ], [ 365630.643100000917912, 255955.644200000911951 ], [ 365632.230599999427795, 255958.612500000745058 ], [ 365633.816200003027916, 255961.791900001466274 ], [ 365633.765900000929832, 255967.702100001275539 ], [ 365679.723899997770786, 255968.289299998432398 ], [ 365679.844400003552437, 255954.146999999880791 ], [ 365679.06139999628067, 255951.39640000090003 ], [ 365675.888300001621246, 255945.248700000345707 ], [ 365671.090000003576279, 255940.565400000661612 ], [ 365665.469200000166893, 255937.775199998170137 ], [ 365660.640299998223782, 255936.68019999936223 ], [ 365640.468099996447563, 255938.20380000025034 ], [ 365630.794200003147125, 255937.913600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803035600", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-56", "ACRE": "0.30", "LONGITUDE": -64.85851467000001, "LATITUDE": 18.33242218, "OBJECTID_1": 23973, "PARCEL_NO_": "105803035600", "Tax_Legal_": "SMITH BAY 19-2-56 EAST END QUARTER", "Name": "CONOW, BRIDGET M", "Address": "PO Box 503241", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 49200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.63150440800001, "SHAPE_Area": 1198.9387277200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366484.461499996483326, 255970.442699998617172 ], [ 366473.486000001430511, 255933.622600000351667 ], [ 366461.366200000047684, 255936.478799998760223 ], [ 366449.267899997532368, 255936.801899999380112 ], [ 366444.10809999704361, 255974.545400001108646 ], [ 366484.461499996483326, 255970.442699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86503054000001, "LATITUDE": 18.33240581, "OBJECTID_1": 23878, "PARCEL_NO_": "105803021800", "Tax_Legal_": "FRYDENHOJ 128 RED HOOK QUARTER", "Name": "CHRISTOPHER, CALVIN & M", "Address": "PO Box 8885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.685998516, "SHAPE_Area": 952.65140151900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365789.704300001263618, 255931.4037000015378 ], [ 365759.868900001049042, 255931.370600000023842 ], [ 365760.441500000655651, 255958.817499998956919 ], [ 365762.012699998915195, 255963.685499999672174 ], [ 365766.022699996829033, 255966.251400001347065 ], [ 365770.052500002086163, 255966.49549999833107 ], [ 365781.351599998772144, 255965.321400001645088 ], [ 365785.404799997806549, 255962.82149999961257 ], [ 365787.848899997770786, 255959.886199999600649 ], [ 365789.704300001263618, 255931.4037000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86665102000001, "LATITUDE": 18.3324189, "OBJECTID_1": 23517, "PARCEL_NO_": "105704021300", "Tax_Legal_": "FRYDENHOJ 150 3 RED HOOK QTR", "Name": "PENN, REGINALD & BERCIA", "Address": "PO Box 10999", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.798858939, "SHAPE_Area": 848.65364983100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365618.507100000977516, 255960.399999998509884 ], [ 365618.708499997854233, 255936.759199999272823 ], [ 365607.438100002706051, 255934.556000001728535 ], [ 365594.573100000619888, 255930.228799998760223 ], [ 365590.528899997472763, 255931.67339999973774 ], [ 365589.708200000226498, 255933.355399999767542 ], [ 365588.639399997889996, 255964.166299998760223 ], [ 365611.241300001740456, 255961.396000001579523 ], [ 365618.507100000977516, 255960.399999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703100700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8796009, "LATITUDE": 18.33235711, "OBJECTID_1": 23418, "PARCEL_NO_": "105703100700", "Tax_Legal_": "MARIENDAHL 7-29 RED HOOK QTR.", "Name": "GUMBS, JOSEPH O. & NESTOR (LIFE ESTATE)", "Address": "PO Box 632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22900, "Improved_V": 147200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.345046763, "SHAPE_Area": 1083.0255211599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364256.844899997115135, 255925.824099998921156 ], [ 364250.448399998247623, 255919.438900001347065 ], [ 364248.841099999845028, 255918.792500000447035 ], [ 364237.660700000822544, 255906.035399999469519 ], [ 364209.211400002241135, 255932.611400000751019 ], [ 364236.462300002574921, 255952.0439000017941 ], [ 364256.844899997115135, 255925.824099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803035700", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-55", "ACRE": "0.30", "LONGITUDE": -64.85821186, "LATITUDE": 18.33232925, "OBJECTID_1": 23974, "PARCEL_NO_": "105803035700", "Tax_Legal_": "SMITH BAY 19-2-55 EAST END QUARTER", "Name": "WESCOTT, DIANE", "Address": "PO Box 12416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49200, "Improved_V": 604200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.36173316200001, "SHAPE_Area": 1307.9588179499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366519.291199997067451, 255952.151599999517202 ], [ 366498.609399996697903, 255918.840599998831749 ], [ 366495.35360000282526, 255922.40260000154376 ], [ 366488.05179999768734, 255927.620099999010563 ], [ 366479.141000002622604, 255932.402399998158216 ], [ 366473.486000001430511, 255933.622600000351667 ], [ 366484.461499996483326, 255970.442699998617172 ], [ 366517.651600003242493, 255955.30460000038147 ], [ 366519.291199997067451, 255952.151599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803035400", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-58", "ACRE": ".290", "LONGITUDE": -64.85904043, "LATITUDE": 18.33229268, "OBJECTID_1": 23971, "PARCEL_NO_": "105803035400", "Tax_Legal_": "19-2-58 EAST SMITH BAY 1,2&3 EASTEND QTR.", "Name": "JOSEPHAT, LAURINA", "Address": "4756 S Rio Grande Ave", "City": "Orlando", "State": "Florida", "Zip": 32839, "Country": "United States", "Land_Value": 39700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.72206130199999, "SHAPE_Area": 1146.4321015 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366408.365299999713898, 255910.713700000196695 ], [ 366387.144100002944469, 255940.726399999111891 ], [ 366409.495999999344349, 255967.296100001782179 ], [ 366416.740299999713898, 255968.833000000566244 ], [ 366423.528800003230572, 255929.203000001609325 ], [ 366420.317900002002716, 255927.488000001758337 ], [ 366412.32320000231266, 255919.401000000536442 ], [ 366409.936599999666214, 255915.581799998879433 ], [ 366408.365299999713898, 255910.713700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803024300", "MAP": "D9-3195-T85", "PARCEL_NAM": "110-1", "ACRE": ".23", "LONGITUDE": -64.86312931000001, "LATITUDE": 18.33236154, "OBJECTID_1": 23902, "PARCEL_NO_": "105803024300", "Tax_Legal_": "FRYDENHOJ 110-1 RED HOOK QTR.", "Name": "KENT AND JULIE MAGEE REVOCABLE TRUST", "Address": "7350 Estate Bovoni Ste B108", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022713, "Country": "United States", "Land_Value": 30700, "Improved_V": 394300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.575230404, "SHAPE_Area": 900.05707516899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365961.19709999859333, 255962.360399998724461 ], [ 366006.472900003194809, 255948.376600001007318 ], [ 365958.302699998021126, 255923.49549999833107 ], [ 365961.19709999859333, 255962.360399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703062400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87871391, "LATITUDE": 18.33233523, "OBJECTID_1": 23159, "PARCEL_NO_": "105703062400", "Tax_Legal_": "LANGMATH ESTATE 11-12 No.5 RED HOOK QTR", "Name": "BLANC, JAMES", "Address": "14N-28 ESTATE THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47700, "Improved_V": 175000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.41460797299999, "SHAPE_Area": 1503.35495474 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364335.204700000584126, 255909.155699998140335 ], [ 364313.335400000214577, 255920.586899999529123 ], [ 364288.226400002837181, 255933.680300001055002 ], [ 364320.358400002121925, 255948.086500000208616 ], [ 364323.657399997115135, 255939.458700001239777 ], [ 364330.888999998569489, 255942.473200000822544 ], [ 364333.31870000064373, 255941.226500000804663 ], [ 364334.954700000584126, 255938.495700001716614 ], [ 364342.173799999058247, 255942.987700000405312 ], [ 364357.619599997997284, 255928.337600000202656 ], [ 364345.735299997031689, 255903.542399998754263 ], [ 364335.204700000584126, 255909.155699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105603031000", "MAP": null, "PARCEL_NAM": "C-11", "ACRE": null, "LONGITUDE": -64.89953224, "LATITUDE": 18.3323238, "OBJECTID_1": 21575, "PARCEL_NO_": "105603031000", "Tax_Legal_": "EST.HOFFMAN C-11 NEW QTR.", "Name": "CONNOR, MEDELICE", "Address": "PO Box 8933", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30900, "Improved_V": 65000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.73771861899999, "SHAPE_Area": 1643.5215575100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362104.651299998164177, 255925.30799999833107 ], [ 362153.035400003194809, 255925.070700000971556 ], [ 362150.887999996542931, 255893.177999999374151 ], [ 362104.16330000013113, 255887.940400000661612 ], [ 362104.651299998164177, 255925.30799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703062700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8782194, "LATITUDE": 18.33223505, "OBJECTID_1": 23162, "PARCEL_NO_": "105703062700", "Tax_Legal_": "11-18 ESTATE LANGMATH No.4 RED HOOK QTR.", "Name": "ELLIOT, ELVETTE & VERNA", "Address": "PO Box 302622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67500, "Improved_V": 197100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.708212667, "SHAPE_Area": 1951.51102242 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364374.796700000762939, 255899.769499998539686 ], [ 364345.735299997031689, 255903.542399998754263 ], [ 364357.619599997997284, 255928.337600000202656 ], [ 364384.910199999809265, 255943.126400001347065 ], [ 364399.488499999046326, 255935.64640000090003 ], [ 364401.162299998104572, 255928.482900001108646 ], [ 364404.38570000231266, 255928.720400001853704 ], [ 364406.045100003480911, 255923.24549999833107 ], [ 364406.278899997472763, 255895.805300001055002 ], [ 364374.796700000762939, 255899.769499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85676247000001, "LATITUDE": 18.33238196, "OBJECTID_1": 24746, "PARCEL_NO_": "105804046800", "Tax_Legal_": "SMITH BAY ESTATE 19-2-149-2 No.1,2&3 EASTEND QTR.", "Name": "EDWARDS, EARLYN O", "Address": "PO Box 8512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68500, "Improved_V": 301000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.45443202600001, "SHAPE_Area": 407.900234152 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366670.098600000143051, 255950.219500001519918 ], [ 366624.975699998438358, 255946.261599998921156 ], [ 366624.9037000015378, 255954.704700000584126 ], [ 366663.574400000274181, 255958.820900000631809 ], [ 366672.436599999666214, 255959.737799998372793 ], [ 366670.852799996733665, 255956.347300000488758 ], [ 366670.098600000143051, 255950.219500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87676701, "LATITUDE": 18.33221773, "OBJECTID_1": 23166, "PARCEL_NO_": "105703063100", "Tax_Legal_": "LONGMATH 11-25 RED HOOK QUARTER", "Name": "Matthew& Vanessa Carty-Richards on Fam Revoc TrusT", "Address": "11-25 Estate Langmath", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46100, "Improved_V": 249600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.012203441, "SHAPE_Area": 1269.74840316 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364517.647100001573563, 255885.317699998617172 ], [ 364513.315200001001358, 255920.53489999845624 ], [ 364521.351400002837181, 255923.767099998891354 ], [ 364541.372500002384186, 255939.973999999463558 ], [ 364544.588799998164177, 255941.055799998342991 ], [ 364547.8175999969244, 255940.660100001841784 ], [ 364550.251000002026558, 255938.991200000047684 ], [ 364555.98870000243187, 255928.061299998313189 ], [ 364560.05799999833107, 255923.661699999123812 ], [ 364517.647100001573563, 255885.317699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703062900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87744369000001, "LATITUDE": 18.33219124, "OBJECTID_1": 23164, "PARCEL_NO_": "105703062900", "Tax_Legal_": "LANGMATH 11-22", "Name": "MAYNARD, LYNIS P", "Address": "P. O. BOX 5951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52900, "Improved_V": 72400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.781288034, "SHAPE_Area": 1506.5051237600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364480.963799998164177, 255931.880199998617172 ], [ 364474.894599996507168, 255887.078699998557568 ], [ 364445.026799999177456, 255890.845100000500679 ], [ 364447.872699998319149, 255935.409099999815226 ], [ 364468.007100000977516, 255938.31810000166297 ], [ 364480.963799998164177, 255931.880199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703100900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87912355, "LATITUDE": 18.33221289, "OBJECTID_1": 23420, "PARCEL_NO_": "105703100900", "Tax_Legal_": "MARIENDAHL 7-31 RED HOOK QUARTER", "Name": "BUNCOME (TRUSTEE), AVRIL Q.", "Address": "PO Box 305297", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.56537736600001, "SHAPE_Area": 1322.51203392 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364313.335400000214577, 255920.586899999529123 ], [ 364302.154899999499321, 255907.829799998551607 ], [ 364286.183300003409386, 255889.545000001788139 ], [ 364256.148299999535084, 255912.941700000315905 ], [ 364272.152300000190735, 255927.427000001072884 ], [ 364276.990199998021126, 255927.466600000858307 ], [ 364281.005500003695488, 255929.399300001561642 ], [ 364282.598399996757507, 255931.734400000423193 ], [ 364282.556999996304512, 255936.589200001209974 ], [ 364288.226400002837181, 255933.680300001055002 ], [ 364313.335400000214577, 255920.586899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86577254, "LATITUDE": 18.33232249, "OBJECTID_1": 23885, "PARCEL_NO_": "105803022500", "Tax_Legal_": "FRYDENHOJ 148 RED HOOK", "Name": "TARIQ CANNONIER and ELIAS YOHANNES", "Address": "PO Box 8773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.88310294199999, "SHAPE_Area": 534.79202203600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365713.101000003516674, 255931.198899999260902 ], [ 365668.766400001943111, 255929.358399998396635 ], [ 365676.795400001108646, 255933.434900000691414 ], [ 365683.989200003445148, 255940.882100000977516 ], [ 365687.158699996769428, 255947.451900001615286 ], [ 365712.159800000488758, 255947.023200001567602 ], [ 365713.101000003516674, 255931.198899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86543895, "LATITUDE": 18.33233206, "OBJECTID_1": 23884, "PARCEL_NO_": "105803022400", "Tax_Legal_": "FRYDENHOJ 137 3 RED HOOK QTR", "Name": "LEONARD, LEON", "Address": "1311 Monahans Dr", "City": "Allen", "State": "Texas", "Zip": 75013, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.79595457000001, "SHAPE_Area": 557.93833126100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365750.985100001096725, 255932.986699998378754 ], [ 365713.101000003516674, 255931.198899999260902 ], [ 365712.159800000488758, 255947.023200001567602 ], [ 365750.871799997985363, 255946.284600000828505 ], [ 365750.985100001096725, 255932.986699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804044500", "MAP": "D9-5261-T92", "PARCEL_NAM": "19-2-33", "ACRE": null, "LONGITUDE": -64.85756499, "LATITUDE": 18.33215995, "OBJECTID_1": 24722, "PARCEL_NO_": "105804044500", "Tax_Legal_": "SMITH BAY 19-2-33 EAST END QUARTER", "Name": "MADSEN, JAMES", "Address": "6241 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52500, "Improved_V": 251800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.899647832, "SHAPE_Area": 952.64813344000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366581.724500000476837, 255919.764699999243021 ], [ 366552.987000003457069, 255906.295099999755621 ], [ 366551.068199999630451, 255913.57039999961853 ], [ 366549.410700000822544, 255918.834199998527765 ], [ 366547.781900003552437, 255920.72069999948144 ], [ 366543.667599998414516, 255930.397399999201298 ], [ 366572.530900001525879, 255950.309399999678135 ], [ 366577.460799999535084, 255939.11769999936223 ], [ 366580.817299999296665, 255923.735300000756979 ], [ 366581.724500000476837, 255919.764699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703062800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87777168, "LATITUDE": 18.3321911, "OBJECTID_1": 23163, "PARCEL_NO_": "105703062800", "Tax_Legal_": "11-20 ESTATE LANGMATH No.4 RED HOOK QTR.", "Name": "TONGE, LEASEA D", "Address": "PO Box 303282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.385220952, "SHAPE_Area": 1526.2474816399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364445.026799999177456, 255890.845100000500679 ], [ 364414.351000003516674, 255894.815900001674891 ], [ 364406.278899997472763, 255895.805300001055002 ], [ 364406.045100003480911, 255923.24549999833107 ], [ 364414.89299999922514, 255925.851100001484156 ], [ 364414.061499997973442, 255928.799600001424551 ], [ 364416.462399996817112, 255930.930100001394749 ], [ 364447.872699998319149, 255935.409099999815226 ], [ 364445.026799999177456, 255890.845100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803035800", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-54", "ACRE": "0.28", "LONGITUDE": -64.85797738, "LATITUDE": 18.33211311, "OBJECTID_1": 23975, "PARCEL_NO_": "105803035800", "Tax_Legal_": "SMITH BAY 19-2-54 EAST END", "Name": "ROMNEY, MICHAEL & PETRA", "Address": "8242 Durelee Ln", "City": "Douglasville", "State": "Georgia", "Zip": 30134, "Country": "United States", "Land_Value": 40000, "Improved_V": 246400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.32262008800001, "SHAPE_Area": 1197.91873818 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366542.220399998128414, 255910.964899998158216 ], [ 366529.367899999022484, 255905.160199999809265 ], [ 366518.138899996876717, 255898.102200001478195 ], [ 366498.609399996697903, 255918.840599998831749 ], [ 366519.291199997067451, 255952.151599999517202 ], [ 366522.566799998283386, 255946.267799999564886 ], [ 366529.107199996709824, 255935.766600001603365 ], [ 366534.004399999976158, 255928.840599998831749 ], [ 366542.220399998128414, 255910.964899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804045000", "MAP": "D9-5270-T92", "PARCEL_NAM": "19-2-146", "ACRE": "0.30", "LONGITUDE": -64.85722244, "LATITUDE": 18.332169, "OBJECTID_1": 24727, "PARCEL_NO_": "105804045000", "Tax_Legal_": "SMITH BAY 19-2-146 EASTEND QUARTER", "Name": "ALLEN, JANA", "Address": "PO Box 6217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58700, "Improved_V": 295100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.215861131, "SHAPE_Area": 1364.89091207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366621.989600002765656, 255918.161699999123812 ], [ 366585.005300000309944, 255905.404500000178814 ], [ 366580.817299999296665, 255923.735300000756979 ], [ 366577.460799999535084, 255939.11769999936223 ], [ 366615.244199998676777, 255952.72580000013113 ], [ 366615.272900000214577, 255949.348600000143051 ], [ 366616.12780000269413, 255943.655999999493361 ], [ 366616.968299999833107, 255939.652100000530481 ], [ 366621.114900000393391, 255926.176100000739098 ], [ 366621.989600002765656, 255918.161699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703100600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87980323, "LATITUDE": 18.33218877, "OBJECTID_1": 23417, "PARCEL_NO_": "105703100600", "Tax_Legal_": "MARIENDAHL 7-28 REDHOOK QTR.", "Name": "RENNIX, HILTON & DOROTHY", "Address": "3978 Loufield Dr.", "City": "Fayetteville", "State": "North Carolina", "Zip": 28311, "Country": "United States", "Land_Value": 26300, "Improved_V": 63100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.820425129, "SHAPE_Area": 1100.39172162 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364237.660700000822544, 255906.035399999469519 ], [ 364229.676700003445148, 255896.68189999833703 ], [ 364224.070200003683567, 255892.203000001609325 ], [ 364217.648500002920628, 255888.772999998182058 ], [ 364186.769500002264977, 255916.59569999948144 ], [ 364209.211400002241135, 255932.611400000751019 ], [ 364237.660700000822544, 255906.035399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803024400", "MAP": "D9-3216-T85", "PARCEL_NAM": "110-3", "ACRE": ".23", "LONGITUDE": -64.86288541, "LATITUDE": 18.33214169, "OBJECTID_1": 23903, "PARCEL_NO_": "105803024400", "Tax_Legal_": "FRYDENHOJ 110-3 RED HOOK QUARTER", "Name": "BEDMINSTER, ETHELBERT & LAURA", "Address": "PO Box 502535", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.23707225800001, "SHAPE_Area": 1295.5330356100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366018.155000001192093, 255902.24269999936223 ], [ 365992.331500001251698, 255904.564500000327826 ], [ 365967.22070000320673, 255917.868999999016523 ], [ 366021.8108000010252, 255946.391199998557568 ], [ 366018.155000001192093, 255902.24269999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804045600", "MAP": "D9-5270-T92", "PARCEL_NAM": "19-2-138", "ACRE": "0.37", "LONGITUDE": -64.85674446, "LATITUDE": 18.33217814, "OBJECTID_1": 24733, "PARCEL_NO_": "105804045600", "Tax_Legal_": "SMITH BAY 19-2-138 EASTEND QUARTER", "Name": "WILLIAMS, ARTHUR J. & MELVINA M. C", "Address": "8241 NW 45th St", "City": "Lauderhill", "State": "Florida", "Zip": 33351, "Country": "United States", "Land_Value": 49400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.5082065, "SHAPE_Area": 1564.6329109400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366669.608800001442432, 255913.063000001013279 ], [ 366632.541799999773502, 255910.015399999916553 ], [ 366629.969999998807907, 255927.937300000339746 ], [ 366625.817900002002716, 255942.046599999070168 ], [ 366624.975699998438358, 255946.261599998921156 ], [ 366670.098600000143051, 255950.219500001519918 ], [ 366670.215499997138977, 255936.499299999326468 ], [ 366674.410700000822544, 255917.324200000613928 ], [ 366673.616899996995926, 255915.839999999850988 ], [ 366669.608800001442432, 255913.063000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8771305, "LATITUDE": 18.3321093, "OBJECTID_1": 23165, "PARCEL_NO_": "105703063000", "Tax_Legal_": "LONGMATH 11-24 RED HOOK QUARTER", "Name": "MARTIN, TREVOR & ORNETTE", "Address": "PO Box 11884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45300, "Improved_V": 107800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.74788686900001, "SHAPE_Area": 1477.0568044300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364517.647100001573563, 255885.317699998617172 ], [ 364498.297399997711182, 255884.948300000280142 ], [ 364491.040600001811981, 255884.888900000602007 ], [ 364474.894599996507168, 255887.078699998557568 ], [ 364480.963799998164177, 255931.880199998617172 ], [ 364500.405199997127056, 255921.484700001776218 ], [ 364506.061999998986721, 255920.053300000727177 ], [ 364513.315200001001358, 255920.53489999845624 ], [ 364517.647100001573563, 255885.317699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046300", "MAP": "D9-5270-T92", "PARCEL_NAM": "19-2-139", "ACRE": "0.49", "LONGITUDE": -64.85611924, "LATITUDE": 18.33210525, "OBJECTID_1": 24741, "PARCEL_NO_": "105804046300", "Tax_Legal_": "19-2-139 ESTATE SMITH BAY 1,2 &3 EAST END QTR.", "Name": "BLYDEN JR., JOSEPH", "Address": "PO Box 11676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.845873385, "SHAPE_Area": 1722.1584535300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366759.035700000822544, 255922.449700001627207 ], [ 366684.214100003242493, 255902.416799999773502 ], [ 366682.418099999427795, 255923.933600001037121 ], [ 366680.1266999989748, 255934.1570999994874 ], [ 366742.992600001394749, 255933.798300001770258 ], [ 366763.269400000572205, 255933.682599999010563 ], [ 366770.531999997794628, 255933.447500001639128 ], [ 366762.577200002968311, 255925.837600000202656 ], [ 366759.035700000822544, 255922.449700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803035300", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-59", "ACRE": ".275", "LONGITUDE": -64.85917961, "LATITUDE": 18.3319932, "OBJECTID_1": 23970, "PARCEL_NO_": "105803035300", "Tax_Legal_": "19-2-59 ESTATE SMITH BAY NO. 1,2,&3 EAST END QUARTER", "Name": "THOMAS, ANGELA, CORLIE & SONIA", "Address": "Ste 133-183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 335200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.97134149199999, "SHAPE_Area": 1089.6671050699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366402.163000002503395, 255881.5320999994874 ], [ 366377.865699999034405, 255893.998799998313189 ], [ 366384.001500003039837, 255930.99040000140667 ], [ 366387.144100002944469, 255940.726399999111891 ], [ 366408.365299999713898, 255910.713700000196695 ], [ 366406.88400000333786, 255895.291799999773502 ], [ 366406.109999999403954, 255891.485800001770258 ], [ 366403.755800001323223, 255883.86710000038147 ], [ 366402.163000002503395, 255881.5320999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803022700", "MAP": "G9-1077-T68", "PARCEL_NAM": "116", "ACRE": ".86", "LONGITUDE": -64.86564101, "LATITUDE": 18.33208373, "OBJECTID_1": 23886, "PARCEL_NO_": "105803022700", "Tax_Legal_": "FRYDENHOJ 116 3 RED HOOK QTR", "Name": "HODGE, ARTHUR & DELMA", "Address": "PO Box 302021", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 94400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.26425099799999, "SHAPE_Area": 3190.5360197999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365709.4003000035882, 255892.327399998903275 ], [ 365678.769400000572205, 255891.021299999207258 ], [ 365669.095499999821186, 255890.730999998748302 ], [ 365668.766400001943111, 255929.358399998396635 ], [ 365713.101000003516674, 255931.198899999260902 ], [ 365750.985100001096725, 255932.986699998378754 ], [ 365751.317800000309944, 255893.937100000679493 ], [ 365709.4003000035882, 255892.327399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87653784, "LATITUDE": 18.33201812, "OBJECTID_1": 23167, "PARCEL_NO_": "105703063200", "Tax_Legal_": "LONGMATH 11-26", "Name": "REUBEN F FORBES SR", "Address": "1 Apt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69100, "Improved_V": 186400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.869800037, "SHAPE_Area": 2186.1479115799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364566.144500002264977, 255871.782499998807907 ], [ 364553.230899997055531, 255873.154399998486042 ], [ 364543.526399999856949, 255876.452500000596046 ], [ 364517.647100001573563, 255885.317699998617172 ], [ 364560.05799999833107, 255923.661699999123812 ], [ 364568.16610000282526, 255918.450699999928474 ], [ 364577.861599996685982, 255916.208000000566244 ], [ 364585.162000000476837, 255915.818300001323223 ], [ 364581.690399996936321, 255873.385999999940395 ], [ 364578.229400001466274, 255873.028999999165535 ], [ 364566.144500002264977, 255871.782499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703102000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87875397000001, "LATITUDE": 18.33201682, "OBJECTID_1": 23431, "PARCEL_NO_": "105703102000", "Tax_Legal_": "MARIENDAHL 7-58 RED HOOK QTR.", "Name": "HOWE, ANTOINETTE & F", "Address": "PO Box 10351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46100, "Improved_V": 196300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.68549830200001, "SHAPE_Area": 1400.03928965 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364345.223899997770786, 255868.9189000017941 ], [ 364334.743600003421307, 255868.622000001370907 ], [ 364321.05969999730587, 255865.765799999237061 ], [ 364302.154899999499321, 255907.829799998551607 ], [ 364313.335400000214577, 255920.586899999529123 ], [ 364335.204700000584126, 255909.155699998140335 ], [ 364345.223899997770786, 255868.9189000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86502043, "LATITUDE": 18.33211929, "OBJECTID_1": 23879, "PARCEL_NO_": "105803021900", "Tax_Legal_": "FRYDENHOJ 129 RED HOOK QTR", "Name": "TAYLOR (LIFE ESTATE), GLORIA T", "Address": "PO Box 502843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29100, "Improved_V": 161300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.83432729899999, "SHAPE_Area": 943.11690904 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365791.379799999296665, 255924.029100000858307 ], [ 365791.575800001621246, 255901.021600000560284 ], [ 365760.124300003051758, 255901.397399999201298 ], [ 365759.868900001049042, 255931.370600000023842 ], [ 365789.704300001263618, 255931.4037000015378 ], [ 365791.379799999296665, 255924.029100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703100500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88003744, "LATITUDE": 18.33204595, "OBJECTID_1": 23416, "PARCEL_NO_": "105703100500", "Tax_Legal_": "MARIENDAHL 7-27 RED HOOK QTR.", "Name": "OTHNEIL T SOMERSALL REVOCABLE FAMILY TRUST", "Address": "PO BOX 9384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27800, "Improved_V": 147700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.726909603, "SHAPE_Area": 1164.8995040100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364217.648500002920628, 255888.772999998182058 ], [ 364198.352799996733665, 255882.071199998259544 ], [ 364182.3074000030756, 255872.440600000321865 ], [ 364164.325800001621246, 255900.79109999909997 ], [ 364186.769500002264977, 255916.59569999948144 ], [ 364217.648500002920628, 255888.772999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86660214, "LATITUDE": 18.33204234, "OBJECTID_1": 23518, "PARCEL_NO_": "105704021400", "Tax_Legal_": "FRYDENHOJ 116A 3 RED HOOK QTR", "Name": "JACOB, MARY & PAUL, MAXIMUS & ILLIS, JOECIPHASE", "Address": "PO Box 306203", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27000, "Improved_V": 310100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.88631730700001, "SHAPE_Area": 1175.1974914899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365591.709200002253056, 255887.775600001215935 ], [ 365591.468299999833107, 255916.060199998319149 ], [ 365593.061099998652935, 255918.395199999213219 ], [ 365596.262999996542931, 255921.165600001811981 ], [ 365601.084700003266335, 255923.105000000447035 ], [ 365610.737099997699261, 255925.928199999034405 ], [ 365622.813799999654293, 255928.137899998575449 ], [ 365625.565399996936321, 255889.108199998736382 ], [ 365591.709200002253056, 255887.775600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87613007, "LATITUDE": 18.33197077, "OBJECTID_1": 23168, "PARCEL_NO_": "105703063300", "Tax_Legal_": "LANGMATH 11-45", "Name": "SYLVIE SYLVESTER-WARRELL & PAT PETERS", "Address": "PO Box 9699", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.200878249, "SHAPE_Area": 1603.1209277400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364581.690399996936321, 255873.385999999940395 ], [ 364585.162000000476837, 255915.818300001323223 ], [ 364591.576099999248981, 255915.475900001823902 ], [ 364606.078900001943111, 255916.861099999397993 ], [ 364611.746500000357628, 255914.16330000013113 ], [ 364614.988300003111362, 255909.920800000429153 ], [ 364613.559500001370907, 255894.045699998736382 ], [ 364617.523699998855591, 255883.179900001734495 ], [ 364620.862000003457069, 255876.106899999082088 ], [ 364623.402000002563, 255867.216899998486042 ], [ 364622.131999999284744, 255860.549400001764297 ], [ 364617.369499996304512, 255858.009399998933077 ], [ 364614.646280351036694, 255861.20894213381689 ], [ 364611.530437055160291, 255864.027543855365366 ], [ 364608.074792594648898, 255866.417421775229741 ], [ 364604.337930060573854, 255868.338060603942722 ], [ 364600.383199997246265, 255869.756900001317263 ], [ 364592.780207690084353, 255872.11516192209092 ], [ 364584.984499998390675, 255873.725699998438358 ], [ 364581.690399996936321, 255873.385999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703101000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8793516, "LATITUDE": 18.33200168, "OBJECTID_1": 23421, "PARCEL_NO_": "105703101000", "Tax_Legal_": "MARIENDAHL 7-32 RED HOOK QTR.", "Name": "PAYNE, JOHN", "Address": "6038 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.039664402, "SHAPE_Area": 1121.75331097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364277.398299999535084, 255879.551699999719858 ], [ 364260.557499997317791, 255868.64809999987483 ], [ 364236.978399999439716, 255891.464299999177456 ], [ 364256.148299999535084, 255912.941700000315905 ], [ 364286.183300003409386, 255889.545000001788139 ], [ 364277.398299999535084, 255879.551699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86474174, "LATITUDE": 18.33189183, "OBJECTID_1": 23876, "PARCEL_NO_": "105803021600", "Tax_Legal_": "139 FRYDENHOJ RED HOOK QUARTER", "Name": "MONSANTO, NAOMI LIFE INT.", "Address": "PO Box 1673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35200, "Improved_V": 187800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.18457459699999, "SHAPE_Area": 1134.944643 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365821.661100000143051, 255871.714699998497963 ], [ 365792.63570000231266, 255871.265999998897314 ], [ 365791.575800001621246, 255901.021600000560284 ], [ 365791.379799999296665, 255924.029100000858307 ], [ 365793.836499996483326, 255919.616300001740456 ], [ 365799.534699998795986, 255913.330099999904633 ], [ 365820.604900002479553, 255901.048099998384714 ], [ 365821.43639999628067, 255898.099500000476837 ], [ 365821.661100000143051, 255871.714699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803036100", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-51", "ACRE": ".299", "LONGITUDE": -64.8583373, "LATITUDE": 18.3319356, "OBJECTID_1": 23978, "PARCEL_NO_": "105803036100", "Tax_Legal_": "SMITH BAY ESTATE 19-2-51 No.1,2&3 EASTEND QTR.", "Name": "HUGGINS, REYNOLD", "Address": "PO Box 11341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42900, "Improved_V": 302100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.23485267500001, "SHAPE_Area": 1310.50979547 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366509.314400002360344, 255892.752599999308586 ], [ 366486.856299996376038, 255878.636700000613928 ], [ 366468.2212999984622, 255889.038800001144409 ], [ 366460.640799999237061, 255926.973600000143051 ], [ 366471.138999998569489, 255925.159699998795986 ], [ 366484.090400002896786, 255919.355099998414516 ], [ 366489.770499996840954, 255915.179699998348951 ], [ 366499.532600000500679, 255905.127099998295307 ], [ 366509.314400002360344, 255892.752599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703102200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87844761, "LATITUDE": 18.33196215, "OBJECTID_1": 23433, "PARCEL_NO_": "105703102200", "Tax_Legal_": "MARIENDAHL 7-60\nRED HOOK QTR.", "Name": "VIOLA JOHN MERCHANT and RYAN T JOHN", "Address": "6060 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31100, "Improved_V": 235300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.676837592, "SHAPE_Area": 1119.96391683 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364374.796700000762939, 255899.769499998539686 ], [ 364372.645700000226498, 255868.298900000751019 ], [ 364345.223899997770786, 255868.9189000017941 ], [ 364335.204700000584126, 255909.155699998140335 ], [ 364345.735299997031689, 255903.542399998754263 ], [ 364374.796700000762939, 255899.769499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803034700", "MAP": "D9-5262-T92", "PARCEL_NAM": "19-2-65", "ACRE": "0.36", "LONGITUDE": -64.8596596, "LATITUDE": 18.33195338, "OBJECTID_1": 23964, "PARCEL_NO_": "105803034700", "Tax_Legal_": "19-2-65 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HECTOR-MURPHY, JOSEPHINE", "Address": "PO Box 5416", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 42200, "Improved_V": 451500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.34202179, "SHAPE_Area": 1443.2712505300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366318.029600001871586, 255913.35190000012517 ], [ 366364.693199999630451, 255925.766100000590086 ], [ 366361.751999996602535, 255892.389299999922514 ], [ 366324.803700000047684, 255875.410500001162291 ], [ 366325.590300001204014, 255877.739000000059605 ], [ 366326.367799997329712, 255881.122800000011921 ], [ 366325.469800002872944, 255891.88120000064373 ], [ 366322.151000000536442, 255902.830899998545647 ], [ 366318.889799997210503, 255907.026099998503923 ], [ 366318.045699998736382, 255911.452199999243021 ], [ 366318.029600001871586, 255913.35190000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703101800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87899076, "LATITUDE": 18.33188896, "OBJECTID_1": 23429, "PARCEL_NO_": "105703101800", "Tax_Legal_": "MARIENDAHL 7-56 RED HOOK QTR.", "Name": "Boswell Lescott & Ulanda L Lescott Revocable Trust", "Address": "7-56 Estate Mariendal", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 187300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.56717637099999, "SHAPE_Area": 1212.8137420099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364321.05969999730587, 255865.765799999237061 ], [ 364308.19650000333786, 255861.22749999910593 ], [ 364300.169299997389317, 255856.940000001341105 ], [ 364295.363799996674061, 255853.100999999791384 ], [ 364277.398299999535084, 255879.551699999719858 ], [ 364286.183300003409386, 255889.545000001788139 ], [ 364302.154899999499321, 255907.829799998551607 ], [ 364321.05969999730587, 255865.765799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804044600", "MAP": "D9-5261-T92", "PARCEL_NAM": "19-2-32", "ACRE": "0.27", "LONGITUDE": -64.85749529, "LATITUDE": 18.33192016, "OBJECTID_1": 24723, "PARCEL_NO_": "105804044600", "Tax_Legal_": "SMITH BAY 19-2-32 EASTEND QTR", "Name": "BOWEN, DEWEY L. & SUSAN B. MCMILLAN", "Address": "9155 Wister Dr", "City": "La Mesa", "State": "California", "Zip": 91941, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.279873051, "SHAPE_Area": 780.20065405299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366552.987000003457069, 255906.295099999755621 ], [ 366581.724500000476837, 255919.764699999243021 ], [ 366585.005300000309944, 255905.404500000178814 ], [ 366588.361800000071526, 255890.022100001573563 ], [ 366557.74889999628067, 255886.605099998414516 ], [ 366556.904799997806549, 255891.031199999153614 ], [ 366554.401399999856949, 255900.932100001722574 ], [ 366552.987000003457069, 255906.295099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803024600", "MAP": "D9-3216-T85", "PARCEL_NAM": "110-4", "ACRE": ".23", "LONGITUDE": -64.86311776, "LATITUDE": 18.33189363, "OBJECTID_1": 23905, "PARCEL_NO_": "105803024600", "Tax_Legal_": "110-4 ESTATE FRYDENHOJ 3 RED HOOK QTR", "Name": "PETERS, FELIX T. & GERTUDE C. FRANCIS-PETERS (LIFE ESTATE)", "Address": "PO Box 503121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37700, "Improved_V": 343600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.814994215, "SHAPE_Area": 915.88704203500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365992.331500001251698, 255904.564500000327826 ], [ 365983.767700001597404, 255868.608500000089407 ], [ 365977.297399997711182, 255870.877599999308586 ], [ 365964.331699997186661, 255878.370799999684095 ], [ 365967.22070000320673, 255917.868999999016523 ], [ 365992.331500001251698, 255904.564500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90874325, "LATITUDE": 18.33000791, "OBJECTID_1": 20383, "PARCEL_NO_": "105504010400", "Tax_Legal_": "ESTATE RAPHUNE NEW QTR 5BA", "Name": "RAPHUNE DEV CORP", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5385600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1415.65947538, "SHAPE_Area": 88454.891464400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361245.043399997055531, 255738.209699999541044 ], [ 361206.3091000020504, 255646.911299999803305 ], [ 361309.47580000013113, 255652.61089999973774 ], [ 361308.14190000295639, 255619.880399998277426 ], [ 361306.644299998879433, 255606.358199998736382 ], [ 361307.526199996471405, 255597.499499998986721 ], [ 361317.610100001096725, 255549.663800001144409 ], [ 361317.777300000190735, 255530.033399999141693 ], [ 361319.602200001478195, 255505.139299999922514 ], [ 361332.938299998641014, 255454.163800001144409 ], [ 361332.151799999177456, 255451.835400000214577 ], [ 361328.939099997282028, 255450.331399999558926 ], [ 361315.217399999499321, 255451.907900001853704 ], [ 361307.15429999679327, 255451.841899998486042 ], [ 361299.906499996781349, 255450.727099999785423 ], [ 361289.453199997544289, 255447.263999998569489 ], [ 361277.3800999969244, 255444.632100000977516 ], [ 361262.873599998652935, 255443.668999999761581 ], [ 361256.414200000464916, 255444.671599999070168 ], [ 361249.157300002872944, 255444.612199999392033 ], [ 361241.103200003504753, 255443.490800000727177 ], [ 361233.059900000691414, 255441.103000000119209 ], [ 361222.622800000011921, 255435.740200001746416 ], [ 361215.412699997425079, 255430.192800000309944 ], [ 361205.01519999653101, 255420.186299998313189 ], [ 361192.961800001561642, 255415.232500001788139 ], [ 361174.396899998188019, 255417.402499999850988 ], [ 361154.991400003433228, 255423.576499998569489 ], [ 361143.654500000178814, 255429.183299999684095 ], [ 361137.954599998891354, 255435.680500000715256 ], [ 361133.860100001096725, 255443.035300001502037 ], [ 361130.453199997544289, 255464.327799998223782 ], [ 361123.77250000089407, 255491.293099999427795 ], [ 361123.750900000333786, 255493.826099999248981 ], [ 361122.113099999725819, 255496.76799999922514 ], [ 361096.425200000405312, 255577.82880000025034 ], [ 361090.714400000870228, 255585.592500001192093 ], [ 361082.59740000218153, 255591.858899999409914 ], [ 361074.458700001239777, 255600.65819999948144 ], [ 361068.739000000059605, 255609.477299999445677 ], [ 361064.626500003039837, 255618.942800000309944 ], [ 361057.303199999034405, 255626.693399999290705 ], [ 361050.816699996590614, 255630.862199999392033 ], [ 361041.913099996745586, 255634.80009999871254 ], [ 361031.418499998748302, 255636.191799998283386 ], [ 361024.174199998378754, 255634.654899999499321 ], [ 361015.342600002884865, 255630.149599999189377 ], [ 361008.09740000218153, 255724.91270000115037 ], [ 361001.802100002765656, 255799.758000001311302 ], [ 360999.124300003051758, 255830.133600000292063 ], [ 360997.30120000243187, 255854.816599998623133 ], [ 360997.164599999785423, 255870.858600001782179 ], [ 361063.230099998414516, 255877.521000001579523 ], [ 361068.89580000191927, 255875.034299999475479 ], [ 361077.768899999558926, 255874.68470000103116 ], [ 361085.8445999994874, 255873.273200001567602 ], [ 361099.598600000143051, 255867.897300001233816 ], [ 361106.08330000191927, 255863.939599998295307 ], [ 361112.58049999922514, 255858.504299998283386 ], [ 361132.110100001096725, 255837.765900000929832 ], [ 361137.001900002360344, 255831.473099999129772 ], [ 361150.012599997222424, 255818.702899999916553 ], [ 361190.605099998414516, 255786.526700001209974 ], [ 361191.42400000244379, 255785.055799998342991 ], [ 361198.731200002133846, 255779.204999998211861 ], [ 361217.443599998950958, 255759.726399999111891 ], [ 361222.340800002217293, 255752.800400000065565 ], [ 361233.711900003254414, 255743.183200001716614 ], [ 361245.043399997055531, 255738.209699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046400", "MAP": "D9-5270-T92", "PARCEL_NAM": "19-2-140", "ACRE": "0.49", "LONGITUDE": -64.85618921, "LATITUDE": 18.33182162, "OBJECTID_1": 24742, "PARCEL_NO_": "105804046400", "Tax_Legal_": "19-2-140 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "SMITH, HUGH A. & MARIA C", "Address": "PO Box 848553", "City": "Hollywood", "State": "Florida", "Zip": 33084, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.11408724200001, "SHAPE_Area": 2296.6922666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366695.932199999690056, 255852.061299998313189 ], [ 366681.982199996709824, 255880.44480000063777 ], [ 366681.161499999463558, 255882.126800000667572 ], [ 366676.210299998521805, 255895.385200001299381 ], [ 366675.348300002515316, 255901.921999998390675 ], [ 366684.214100003242493, 255902.416799999773502 ], [ 366759.035700000822544, 255922.449700001627207 ], [ 366695.932199999690056, 255852.061299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703100400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88029712, "LATITUDE": 18.33188741, "OBJECTID_1": 23415, "PARCEL_NO_": "105703100400", "Tax_Legal_": "MARIENDAHL 7-26 RED HOOK QUARTER", "Name": "GORDON, ARNOLD, C., J. & DRIGO, P.", "Address": "P.O. BOX 5521", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30200, "Improved_V": 167300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.270324163, "SHAPE_Area": 1076.98575366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364182.3074000030756, 255872.440600000321865 ], [ 364171.899099998176098, 255863.700599998235703 ], [ 364159.912299998104572, 255850.936900001019239 ], [ 364139.479400001466274, 255883.06700000166893 ], [ 364164.325800001621246, 255900.79109999909997 ], [ 364182.3074000030756, 255872.440600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86123037, "LATITUDE": 18.33191686, "OBJECTID_1": 23960, "PARCEL_NO_": "105803034300", "Tax_Legal_": "SMITH BAY 19-2-92 EAST END QUARTER", "Name": "VAUGHN, ANN L", "Address": "PO Box 8162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 396300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.839049574, "SHAPE_Area": 1674.70967118 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366153.829499997198582, 255878.232999999076128 ], [ 366156.22070000320673, 255916.690200001001358 ], [ 366197.845799997448921, 255917.434500001370907 ], [ 366197.38120000064373, 255877.322900000959635 ], [ 366187.703599996864796, 255877.454799998551607 ], [ 366153.829499997198582, 255878.232999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86087145, "LATITUDE": 18.33189925, "OBJECTID_1": 23961, "PARCEL_NO_": "105803034400", "Tax_Legal_": "SMITH BAY 19-2-91 EASTEND QUARTER", "Name": "SHELFORD, VALDEZ D. & DELROY E. MILLER, JR.", "Address": "PO Box 302344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.53107520500001, "SHAPE_Area": 1311.78994496 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366227.708200000226498, 255914.301399998366833 ], [ 366235.286899998784065, 255876.5777000002563 ], [ 366197.38120000064373, 255877.322900000959635 ], [ 366197.845799997448921, 255917.434500001370907 ], [ 366227.708200000226498, 255914.301399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703102400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87809918000001, "LATITUDE": 18.33192124, "OBJECTID_1": 23435, "PARCEL_NO_": "105703102400", "Tax_Legal_": "MARIENDAHL 7-61 RED HOOK QTR.", "Name": "BROWN, GWENDOLYN E. & KURT A.", "Address": "PO Box 304380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.00341788599999, "SHAPE_Area": 1192.0496907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364414.351000003516674, 255894.815900001674891 ], [ 364413.778399996459484, 255867.368999999016523 ], [ 364372.645700000226498, 255868.298900000751019 ], [ 364374.796700000762939, 255899.769499998539686 ], [ 364406.278899997472763, 255895.805300001055002 ], [ 364414.351000003516674, 255894.815900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804045100", "MAP": "D9-5270-T92", "PARCEL_NAM": "19-2-145", "ACRE": "0.30", "LONGITUDE": -64.85714605, "LATITUDE": 18.33185218, "OBJECTID_1": 24728, "PARCEL_NO_": "105804045100", "Tax_Legal_": "19-2-145 ESTATE SMITH BAY EAST END QTR", "Name": "SMITH, RUPERT & ANDREA", "Address": "PO Box 9674", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49200, "Improved_V": 366300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.443792264, "SHAPE_Area": 1471.5305219100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366634.38459999859333, 255883.010499998927116 ], [ 366591.752499997615814, 255870.629200000315905 ], [ 366588.361800000071526, 255890.022100001573563 ], [ 366585.005300000309944, 255905.404500000178814 ], [ 366621.989600002765656, 255918.161699999123812 ], [ 366623.69030000269413, 255907.831999998539686 ], [ 366634.38459999859333, 255883.010499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86052004, "LATITUDE": 18.33187413, "OBJECTID_1": 23962, "PARCEL_NO_": "105803034500", "Tax_Legal_": "SMITH BAY 19-2-84 EAST END QUARTER", "Name": "THERAPY WORKS LLC", "Address": "PO Box 302178", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.23361489199999, "SHAPE_Area": 1484.6309078300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366270.802400000393391, 255872.435400001704693 ], [ 366235.286899998784065, 255876.5777000002563 ], [ 366227.708200000226498, 255914.301399998366833 ], [ 366267.256999999284744, 255909.980999998748302 ], [ 366275.615099996328354, 255875.430100001394749 ], [ 366270.802400000393391, 255872.435400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703102600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87775285, "LATITUDE": 18.33189267, "OBJECTID_1": 23437, "PARCEL_NO_": "105703102600", "Tax_Legal_": "MARIENDAHL 7-63 RED HOOK QTR.", "Name": "BROWN, AQUANETTE T. & KURT A.", "Address": "PO Box 304380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034380, "Country": "United States", "Land_Value": 28700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.563076188, "SHAPE_Area": 841.25172333499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364445.026799999177456, 255890.845100000500679 ], [ 364448.45889999717474, 255866.59739999845624 ], [ 364413.778399996459484, 255867.368999999016523 ], [ 364414.351000003516674, 255894.815900001674891 ], [ 364445.026799999177456, 255890.845100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804045700", "MAP": "D9-5270-T92", "PARCEL_NAM": "19-2-142", "ACRE": null, "LONGITUDE": -64.85667833, "LATITUDE": 18.33186091, "OBJECTID_1": 24734, "PARCEL_NO_": "105804045700", "Tax_Legal_": "SMITH BAY ESTATE 19-2-142 1,2&3 REDHOOK QTR", "Name": "VAN HOLTEN, GEORGE, NICO & NICOLE", "Address": "PO Box 303888", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42700, "Improved_V": 233000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.064336217, "SHAPE_Area": 1242.4292531900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366681.982199996709824, 255880.44480000063777 ], [ 366645.726899996399879, 255876.770500000566244 ], [ 366643.239600002765656, 255884.771699998527765 ], [ 366641.589199997484684, 255889.191199999302626 ], [ 366632.541799999773502, 255910.015399999916553 ], [ 366669.608800001442432, 255913.063000001013279 ], [ 366670.463600002229214, 255907.37049999833107 ], [ 366674.50959999859333, 255905.714800000190735 ], [ 366675.348300002515316, 255901.921999998390675 ], [ 366676.210299998521805, 255895.385200001299381 ], [ 366681.161499999463558, 255882.126800000667572 ], [ 366681.982199996709824, 255880.44480000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803036300", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-53", "ACRE": "0.30", "LONGITUDE": -64.85784377, "LATITUDE": 18.33177181, "OBJECTID_1": 23980, "PARCEL_NO_": "105803036300", "Tax_Legal_": "19-2-53 SMITH BAY EAST END QUARTER", "Name": "DAVIS, DIANE(TRUSTEE)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49200, "Improved_V": 346300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.67176710800001, "SHAPE_Area": 1227.70486839 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366548.055200003087521, 255888.636700000613928 ], [ 366548.901000000536442, 255883.999600000679493 ], [ 366549.786499999463558, 255874.718699999153614 ], [ 366550.691699996590614, 255863.11600000038743 ], [ 366534.604999996721745, 255858.340300001204014 ], [ 366527.281700000166893, 255866.090799998492002 ], [ 366526.432199999690056, 255871.150100000202656 ], [ 366522.355700001120567, 255876.394099999219179 ], [ 366512.523500002920628, 255894.678700000047684 ], [ 366518.138899996876717, 255898.102200001478195 ], [ 366529.367899999022484, 255905.160199999809265 ], [ 366542.220399998128414, 255910.964899998158216 ], [ 366545.551700003445148, 255898.53770000115037 ], [ 366548.055200003087521, 255888.636700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703101100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87957154, "LATITUDE": 18.3318272, "OBJECTID_1": 23422, "PARCEL_NO_": "105703101100", "Tax_Legal_": "MARIENDAHL 7-33 RED HOOK QTR.", "Name": "ANTHONY, SYLVIA & OTHERS", "Address": "PO Box 1204", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 28500, "Improved_V": 119400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.66328122, "SHAPE_Area": 891.46014888499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364252.539300002157688, 255863.305100001394749 ], [ 364230.889399997889996, 255848.984700001776218 ], [ 364219.338500000536442, 255879.709800001233816 ], [ 364226.568300001323223, 255882.935400001704693 ], [ 364233.781900003552437, 255888.060699999332428 ], [ 364236.978399999439716, 255891.464299999177456 ], [ 364260.557499997317791, 255868.64809999987483 ], [ 364252.539300002157688, 255863.305100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803024700", "MAP": "D9-3216-T85", "PARCEL_NAM": "110-5", "ACRE": ".26", "LONGITUDE": -64.86288107, "LATITUDE": 18.33180855, "OBJECTID_1": 23906, "PARCEL_NO_": "105803024700", "Tax_Legal_": "110-5 FRYDENHOJ RED HOOK QTR.", "Name": "PETERS, SR., CAROLYN & EGENE L.", "Address": "PO Box 304079", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.32954424799999, "SHAPE_Area": 1107.5393782399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366015.235500000417233, 255866.332899998873472 ], [ 366011.214699998497963, 255865.033399999141693 ], [ 365999.933499999344349, 255864.096700001507998 ], [ 365991.049699999392033, 255865.712799999862909 ], [ 365983.767700001597404, 255868.608500000089407 ], [ 365992.331500001251698, 255904.564500000327826 ], [ 366018.155000001192093, 255902.24269999936223 ], [ 366015.235500000417233, 255866.332899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703102800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87738309, "LATITUDE": 18.33186795, "OBJECTID_1": 23439, "PARCEL_NO_": "105703102800", "Tax_Legal_": "MARIENDAHL 7-67 RED HOOK QTR", "Name": "FRANCIS, ROGER & JENELLE", "Address": "PO Box 123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.916115238, "SHAPE_Area": 1015.03039768 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364498.297399997711182, 255884.948300000280142 ], [ 364487.179799996316433, 255864.803399998694658 ], [ 364448.45889999717474, 255866.59739999845624 ], [ 364445.026799999177456, 255890.845100000500679 ], [ 364474.894599996507168, 255887.078699998557568 ], [ 364491.040600001811981, 255884.888900000602007 ], [ 364498.297399997711182, 255884.948300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86501884, "LATITUDE": 18.33184625, "OBJECTID_1": 23880, "PARCEL_NO_": "105803022000", "Tax_Legal_": "FRYDENHOJ 130 3 RED HOOK QTR", "Name": "ROACH, CLIFFORD & CHRISTOPHER", "Address": "7846 MAIRENDAHL # 7-5", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25600, "Improved_V": 139000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.303031555, "SHAPE_Area": 964.73526003400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365792.63570000231266, 255871.265999998897314 ], [ 365760.386799998581409, 255870.579900000244379 ], [ 365760.124300003051758, 255901.397399999201298 ], [ 365791.575800001621246, 255901.021600000560284 ], [ 365792.63570000231266, 255871.265999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86395248, "LATITUDE": 18.33185295, "OBJECTID_1": 23871, "PARCEL_NO_": "105803021100", "Tax_Legal_": "FRYDENHOJ 157 RED HOOK QTR", "Name": "KATHERINE AND KENNETH HUTTEL REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25600, "Improved_V": 182500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.776625064, "SHAPE_Area": 874.78193806499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365911.125900000333786, 255876.668800000101328 ], [ 365870.002099998295307, 255876.543299999088049 ], [ 365869.807899996638298, 255899.339800000190735 ], [ 365890.76129999756813, 255900.777899999171495 ], [ 365898.032499998807907, 255899.148600000888109 ], [ 365904.52250000089407, 255894.557700000703335 ], [ 365907.758599996566772, 255893.317600000649691 ], [ 365911.125900000333786, 255876.668800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86435361, "LATITUDE": 18.33180684, "OBJECTID_1": 23874, "PARCEL_NO_": "105803021400", "Tax_Legal_": "FRYDENHOJ 141A RED HOOK QTR", "Name": "HENRY, JUNIOR & SHARIBA", "Address": "PO Box 11954", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27000, "Improved_V": 502900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.45367149, "SHAPE_Area": 924.65347373899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365861.217200003564358, 255866.550000000745058 ], [ 365830.570100001990795, 255867.143500000238419 ], [ 365831.949000000953674, 255894.596999999135733 ], [ 365835.955399997532368, 255897.585099998861551 ], [ 365860.942100003361702, 255898.845100000500679 ], [ 365861.217200003564358, 255866.550000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703100300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88052252, "LATITUDE": 18.33172716, "OBJECTID_1": 23414, "PARCEL_NO_": "105703100300", "Tax_Legal_": "MARIENDAHL 7-25 RED HOOK QTR.", "Name": "WEEKES, DALTON & MARLENE", "Address": "PO Box 8712", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27800, "Improved_V": 98200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.47315505399999, "SHAPE_Area": 1112.1365626 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364159.912299998104572, 255850.936900001019239 ], [ 364151.096799999475479, 255844.531899999827147 ], [ 364135.042499996721745, 255835.956799998879433 ], [ 364114.63289999961853, 255865.342799998819828 ], [ 364139.479400001466274, 255883.06700000166893 ], [ 364159.912299998104572, 255850.936900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703103000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87695398, "LATITUDE": 18.33182744, "OBJECTID_1": 23441, "PARCEL_NO_": "105703103000", "Tax_Legal_": "MARIENDAHL 7-69 RED HOOK QTR", "Name": "JACOBS, JACQUELINE", "Address": "PO Box 575", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 32700, "Improved_V": 189000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.08428222200001, "SHAPE_Area": 934.69365749600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364543.526399999856949, 255876.452500000596046 ], [ 364526.739500001072884, 255859.216499999165535 ], [ 364517.031400002539158, 255862.936799999326468 ], [ 364487.179799996316433, 255864.803399998694658 ], [ 364498.297399997711182, 255884.948300000280142 ], [ 364517.647100001573563, 255885.317699998617172 ], [ 364543.526399999856949, 255876.452500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803023000", "MAP": "G9--853-T66", "PARCEL_NAM": "111A-1", "ACRE": ".22", "LONGITUDE": -64.86539752, "LATITUDE": 18.33179222, "OBJECTID_1": 23889, "PARCEL_NO_": "105803023000", "Tax_Legal_": "FRYDENHOJ 111A-1 RED HOOK QTR", "Name": "JOHNSON, HUBERT & ANN BRAMBLE", "Address": "PO BOX 11091", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.406583031, "SHAPE_Area": 816.982567797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365721.222199998795986, 255865.526999998837709 ], [ 365721.223800003528595, 255892.781399998813868 ], [ 365751.317800000309944, 255893.937100000679493 ], [ 365750.721799999475479, 255869.234200000762939 ], [ 365749.935300000011921, 255866.905799999833107 ], [ 365747.523599997162819, 255866.041700001806021 ], [ 365721.222199998795986, 255865.526999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803022900", "MAP": "G9--853-T66", "PARCEL_NAM": "111A", "ACRE": ".22", "LONGITUDE": -64.86570138, "LATITUDE": 18.33178546, "OBJECTID_1": 23888, "PARCEL_NO_": "105803022900", "Tax_Legal_": "FRYDENHOJ 111A RED HOOK QTR", "Name": "CASEY, OSBORNE P. & ROSEMONDE", "Address": "PO Box 502973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26800, "Improved_V": 128500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.952626141, "SHAPE_Area": 930.20736932199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365710.436800003051758, 255865.315900001674891 ], [ 365686.570699997246265, 255864.956199999898672 ], [ 365686.610799998044968, 255891.355700001120567 ], [ 365709.4003000035882, 255892.327399998903275 ], [ 365721.223800003528595, 255892.781399998813868 ], [ 365721.222199998795986, 255865.526999998837709 ], [ 365710.436800003051758, 255865.315900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703101200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87981491, "LATITUDE": 18.33170946, "OBJECTID_1": 23423, "PARCEL_NO_": "105703101200", "Tax_Legal_": "MARIENDAHL 7-34 RED HOOK QTR.", "Name": "HARRIS, YVETTE & OTHERS", "Address": "6034 Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 108100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.11863476400001, "SHAPE_Area": 1024.2230748100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364230.889399997889996, 255848.984700001776218 ], [ 364207.64299999922514, 255832.751299999654293 ], [ 364206.014200001955032, 255834.637800000607967 ], [ 364193.626400001347065, 255868.944699998944998 ], [ 364206.471600003540516, 255875.593699999153614 ], [ 364219.338500000536442, 255879.709800001233816 ], [ 364230.889399997889996, 255848.984700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703101700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8792315, "LATITUDE": 18.33170972, "OBJECTID_1": 23428, "PARCEL_NO_": "105703101700", "Tax_Legal_": "MARIENDAHL 7-54 RED HOOK QTR.", "Name": "WILLIAMS, DEBRA", "Address": "PO Box 305934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 119500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.92704825600001, "SHAPE_Area": 959.71470251200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364295.363799996674061, 255853.100999999791384 ], [ 364270.508400000631809, 255836.432199999690056 ], [ 364252.539300002157688, 255863.305100001394749 ], [ 364260.557499997317791, 255868.64809999987483 ], [ 364277.398299999535084, 255879.551699999719858 ], [ 364295.363799996674061, 255853.100999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803024200", "MAP": "D9-3380-T86", "PARCEL_NAM": "111-C", "ACRE": ".30", "LONGITUDE": -64.86652381, "LATITUDE": 18.33177551, "OBJECTID_1": 23901, "PARCEL_NO_": "105803024200", "Tax_Legal_": "111C ESTATE FRYDENHOJ RED HOOK QTR.", "Name": "EARL DEWINDT", "Address": "6535 Est. Nazareth 111C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021135, "Country": "United States", "Land_Value": 30600, "Improved_V": 274000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.11664462499999, "SHAPE_Area": 1173.59331539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365642.024499997496605, 255864.879000000655651 ], [ 365592.600199997425079, 255864.911499999463558 ], [ 365591.709200002253056, 255887.775600001215935 ], [ 365625.565399996936321, 255889.108199998736382 ], [ 365631.207800000905991, 255889.36540000140667 ], [ 365640.612000003457069, 255889.708599999547005 ], [ 365642.024499997496605, 255864.879000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803025100", "MAP": "D9-1046-T72", "PARCEL_NAM": "110-R", "ACRE": ".28", "LONGITUDE": -64.86244143, "LATITUDE": 18.33165989, "OBJECTID_1": 23910, "PARCEL_NO_": "105803025100", "Tax_Legal_": "FRYDENHOJ 110-R #3RED HOOK QTR.", "Name": "CARBON, RALPH & SHANI F.", "Address": "PO Box 156", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.332578063, "SHAPE_Area": 1083.29492149 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366065.158500000834465, 255890.415399998426437 ], [ 366067.770599998533726, 255853.698300000280142 ], [ 366009.959899999201298, 255855.720600001513958 ], [ 366013.709200002253056, 255856.187899999320507 ], [ 366021.745300002396107, 255859.420099999755621 ], [ 366025.749899998307228, 255862.619300000369549 ], [ 366027.339199997484684, 255865.376499999314547 ], [ 366035.33219999819994, 255873.674600001424551 ], [ 366042.542199999094009, 255879.221999999135733 ], [ 366053.774800002574921, 255885.857900001108646 ], [ 366065.025499999523163, 255890.38289999961853 ], [ 366065.158500000834465, 255890.415399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803035200", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-60", "ACRE": "0.31", "LONGITUDE": -64.85935578, "LATITUDE": 18.33164654, "OBJECTID_1": 23969, "PARCEL_NO_": "105803035200", "Tax_Legal_": "SMITH BAY 19-2-60 EASTEND QUARTER", "Name": "XAVIER, BENOIT & KATHERINE", "Address": "PO Box 9502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31600, "Improved_V": 166200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.37402544099999, "SHAPE_Area": 1349.23466988 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366375.068400003015995, 255843.735700000077486 ], [ 366341.010899998247623, 255866.0439000017941 ], [ 366365.128300003707409, 255874.685100000351667 ], [ 366377.865699999034405, 255893.998799998313189 ], [ 366402.163000002503395, 255881.5320999994874 ], [ 366398.988099999725819, 255875.595499999821186 ], [ 366386.227300003170967, 255859.025699999183416 ], [ 366378.252300001680851, 255848.616900000721216 ], [ 366376.657700002193451, 255846.492899999022484 ], [ 366375.068400003015995, 255843.735700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803036200", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-52", "ACRE": "0.25", "LONGITUDE": -64.85807278, "LATITUDE": 18.33165775, "OBJECTID_1": 23979, "PARCEL_NO_": "105803036200", "Tax_Legal_": "SMITH BAY 19-2-52 EAST END QTR.", "Name": "MATURINE, JONA & VERA", "Address": "747 E 92nd St", "City": "Brooklyn", "State": "New York", "Zip": 11236, "Country": "United States", "Land_Value": 33400, "Improved_V": 110700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.11577989400001, "SHAPE_Area": 1034.946663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366534.604999996721745, 255858.340300001204014 ], [ 366509.668700002133846, 255851.170099999755621 ], [ 366486.856299996376038, 255878.636700000613928 ], [ 366509.314400002360344, 255892.752599999308586 ], [ 366512.523500002920628, 255894.678700000047684 ], [ 366522.355700001120567, 255876.394099999219179 ], [ 366526.432199999690056, 255871.150100000202656 ], [ 366527.281700000166893, 255866.090799998492002 ], [ 366534.604999996721745, 255858.340300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86350905, "LATITUDE": 18.33161791, "OBJECTID_1": 23870, "PARCEL_NO_": "105803021000", "Tax_Legal_": "FRYDENHOJ 152 & 165 RED HOOK QTR", "Name": "CARMEN V. RUAN LIVING TRUST", "Address": "PO Box 10298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 338900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.75274200699999, "SHAPE_Area": 1100.3910935599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365925.89299999922514, 255847.025499999523163 ], [ 365917.472099997103214, 255888.964200001209974 ], [ 365945.791900001466274, 255877.585799999535084 ], [ 365954.220100000500679, 255834.802799999713898 ], [ 365925.89299999922514, 255847.025499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703103200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87661597, "LATITUDE": 18.33167557, "OBJECTID_1": 23443, "PARCEL_NO_": "105703103200", "Tax_Legal_": "MARIENDAHL 7-71 RED HOOK QTR.", "Name": "BLYDEN, CAROLYN", "Address": "PO Box 7281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34000, "Improved_V": 162400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.31974883300001, "SHAPE_Area": 1090.17737644 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364566.144500002264977, 255871.782499998807907 ], [ 364567.202600002288818, 255842.238000001758337 ], [ 364553.540200002491474, 255836.848900001496077 ], [ 364547.091499999165535, 255836.58500000089407 ], [ 364543.850100003182888, 255838.458299998193979 ], [ 364541.404200002551079, 255841.604699999094009 ], [ 364537.297100000083447, 255850.436999998986721 ], [ 364532.414300002157688, 255855.674400001764297 ], [ 364526.739500001072884, 255859.216499999165535 ], [ 364543.526399999856949, 255876.452500000596046 ], [ 364553.230899997055531, 255873.154399998486042 ], [ 364566.144500002264977, 255871.782499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703101300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88003248, "LATITUDE": 18.33157683, "OBJECTID_1": 23424, "PARCEL_NO_": "105703101300", "Tax_Legal_": "MARIENDAHL 7-35 REDHOOK QTR.", "Name": "MORCIGLIO, RAFAEL", "Address": "PO Box 7282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.83612129599999, "SHAPE_Area": 994.94703930499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364207.64299999922514, 255832.751299999654293 ], [ 364183.584899999201298, 255817.144600000232458 ], [ 364172.811499997973442, 255851.253600001335144 ], [ 364184.006399996578693, 255862.322000000625849 ], [ 364193.626400001347065, 255868.944699998944998 ], [ 364206.014200001955032, 255834.637800000607967 ], [ 364207.64299999922514, 255832.751299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703103400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87628194, "LATITUDE": 18.33170671, "OBJECTID_1": 23445, "PARCEL_NO_": "105703103400", "Tax_Legal_": "MARIENDAHL 7-72 RED HOOK QTR.", "Name": "SKEETE, BLONDELL & ORVILLE", "Address": "6056 MARIENDAHL 7-56", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.207504255, "SHAPE_Area": 961.51018513500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364600.96339999884367, 255854.757800001651049 ], [ 364567.202600002288818, 255842.238000001758337 ], [ 364566.144500002264977, 255871.782499998807907 ], [ 364578.229400001466274, 255873.028999999165535 ], [ 364584.984499998390675, 255873.725699998438358 ], [ 364592.780207690084353, 255872.11516192209092 ], [ 364600.383199997246265, 255869.756900001317263 ], [ 364604.337930060573854, 255868.338060603913618 ], [ 364608.074792594648898, 255866.417421775171533 ], [ 364611.530437055160291, 255864.027543855336262 ], [ 364614.646280351036694, 255861.20894213381689 ], [ 364617.369499996304512, 255858.009399998933077 ], [ 364609.814900003373623, 255856.941199999302626 ], [ 364600.96339999884367, 255854.757800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703100200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88077463, "LATITUDE": 18.33157972, "OBJECTID_1": 23413, "PARCEL_NO_": "105703100200", "Tax_Legal_": "7-24 MARIENDAHL NO 4 RED HOOK QTR.", "Name": "BROWN, JR., MARIO E., JAHMIL, SHARIMA T., & KAREEM J. & MARIO", "Address": "6050 Estate Lovenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8024801, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.887538654, "SHAPE_Area": 1112.3045634299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364135.042499996721745, 255835.956799998879433 ], [ 364106.947400003671646, 255820.950300000607967 ], [ 364086.579199999570847, 255845.481499999761581 ], [ 364114.63289999961853, 255865.342799998819828 ], [ 364135.042499996721745, 255835.956799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703101600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87945383, "LATITUDE": 18.33157161, "OBJECTID_1": 23427, "PARCEL_NO_": "105703101600", "Tax_Legal_": "MARIENDAHL 7-52 REDHOOK QTR.", "Name": "OCTAVIA BROOKS, IVAN C BROOKS,& HARELLA CARTY", "Address": "PO Box 9313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.105131087, "SHAPE_Area": 848.482696347 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364270.508400000631809, 255836.432199999690056 ], [ 364248.053900003433228, 255821.894099999219179 ], [ 364230.889399997889996, 255848.984700001776218 ], [ 364252.539300002157688, 255863.305100001394749 ], [ 364270.508400000631809, 255836.432199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804045200", "MAP": "D9-5270-T92", "PARCEL_NAM": "19-2-144", "ACRE": "0.32", "LONGITUDE": -64.85704969, "LATITUDE": 18.33156163, "OBJECTID_1": 24729, "PARCEL_NO_": "105804045200", "Tax_Legal_": "19-2-144 ESTATE SMITH BAY EAST END QTR.", "Name": "BENJAMIN, CYNTHIA A. & AVON", "Address": "PO Box 306881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52500, "Improved_V": 312300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.94861323000001, "SHAPE_Area": 1415.18896419 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366639.5658999979496, 255842.734000001102686 ], [ 366595.153999999165535, 255849.969900000840425 ], [ 366591.752499997615814, 255870.629200000315905 ], [ 366634.38459999859333, 255883.010499998927116 ], [ 366642.710199996829033, 255852.25899999961257 ], [ 366641.923699997365475, 255849.930500000715256 ], [ 366638.711000002920628, 255848.426600001752377 ], [ 366639.5658999979496, 255842.734000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8639264, "LATITUDE": 18.3316518, "OBJECTID_1": 23872, "PARCEL_NO_": "105803021200", "Tax_Legal_": "FRYDENHOJ 158 RED HOOK QTR", "Name": "JARVIS, CELESTINA O", "Address": "PO BOX 310903", "City": "Tampa", "State": "Florida", "Zip": 33680, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.554667147, "SHAPE_Area": 946.18350116600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365911.125900000333786, 255876.668800000101328 ], [ 365915.346199996769428, 255854.538499999791384 ], [ 365870.187299996614456, 255854.802200000733137 ], [ 365870.002099998295307, 255876.543299999088049 ], [ 365911.125900000333786, 255876.668800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86126543, "LATITUDE": 18.33158247, "OBJECTID_1": 23965, "PARCEL_NO_": "105803034800", "Tax_Legal_": "SMITH BAY 19-2-93 EAST END QTR", "Name": "WILLIAMS, DEONDRE & JOYCELYN", "Address": "159-20 Harlem Dr", "City": "New York", "State": "New York", "Zip": 10039, "Country": "United States", "Land_Value": 32300, "Improved_V": 237000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.50744490299999, "SHAPE_Area": 1272.38316986 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366187.703599996864796, 255877.454799998551607 ], [ 366187.743199996650219, 255872.811099998652935 ], [ 366185.342200003564358, 255870.680500000715256 ], [ 366187.816899999976158, 255864.156800001859665 ], [ 366191.853900000452995, 255863.556600000709295 ], [ 366195.098899997770786, 255861.261100001633167 ], [ 366195.255300000309944, 255842.897300001233816 ], [ 366153.298299998044968, 255845.931400001049042 ], [ 366153.829499997198582, 255878.232999999076128 ], [ 366187.703599996864796, 255877.454799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86322019000001, "LATITUDE": 18.33149688, "OBJECTID_1": 23869, "PARCEL_NO_": "105803020900", "Tax_Legal_": "FRYDENHOJ ESTATE 168 No.3 RED HOOK QTR.", "Name": "HODGE, ELENDA & LOUISE I", "Address": "PO Box 9654", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.25282461699999, "SHAPE_Area": 882.35602827599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365977.380199998617172, 255861.167899999767542 ], [ 365980.103000000119209, 255825.515399999916553 ], [ 365975.263300001621246, 255825.686900001019239 ], [ 365959.075900003314018, 255832.731600001454353 ], [ 365950.647799998521805, 255875.514600001275539 ], [ 365973.336000002920628, 255862.612500000745058 ], [ 365977.380199998617172, 255861.167899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803034900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86083349, "LATITUDE": 18.33155111, "OBJECTID_1": 23966, "PARCEL_NO_": "105803034900", "Tax_Legal_": "SMITH BAY 19-2-90\nEAST END QUARTER", "Name": "BOWRY, AUDREY", "Address": "PO BOX 1442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.946774471, "SHAPE_Area": 1288.7270044100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366235.286899998784065, 255876.5777000002563 ], [ 366234.019500002264977, 255836.037300001829863 ], [ 366204.180500000715256, 255836.426399998366833 ], [ 366203.12610000371933, 255865.548700001090765 ], [ 366202.278399996459484, 255870.396899998188019 ], [ 366200.637000001966953, 255873.760999999940395 ], [ 366197.38120000064373, 255877.322900000959635 ], [ 366235.286899998784065, 255876.5777000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804045800", "MAP": "D9-5270-T92", "PARCEL_NAM": "19-2-141", "ACRE": "0.43", "LONGITUDE": -64.85657882, "LATITUDE": 18.33147501, "OBJECTID_1": 24736, "PARCEL_NO_": "105804045800", "Tax_Legal_": "SMITH BAY 19-2-141 EAST END QTR.", "Name": "GERRITSEN TRUST", "Address": "1450 Hermosita Dr", "City": "San Marcos", "State": "California", "Zip": 92078, "Country": "United States", "Land_Value": 70500, "Improved_V": 193400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.03274116200001, "SHAPE_Area": 2020.2770521299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366658.346600003540516, 255815.234499998390675 ], [ 366651.822400003671646, 255823.835900001227856 ], [ 366647.697300001978874, 255834.778999999165535 ], [ 366654.880400002002716, 255843.49269999936223 ], [ 366645.726899996399879, 255876.770500000566244 ], [ 366681.982199996709824, 255880.44480000063777 ], [ 366695.932199999690056, 255852.061299998313189 ], [ 366683.149899996817112, 255838.024500001221895 ], [ 366658.346600003540516, 255815.234499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803035000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8604951, "LATITUDE": 18.33152233, "OBJECTID_1": 23967, "PARCEL_NO_": "105803035000", "Tax_Legal_": "SMITH BAY 19-2-85 EASTEND QTR.", "Name": "FARRELL, VERNICE P", "Address": "PO Box 10486", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44100, "Improved_V": 238200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.715127913, "SHAPE_Area": 1562.1634986500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366279.183799996972084, 255835.140399999916553 ], [ 366239.665500000119209, 255835.872499998658895 ], [ 366234.019500002264977, 255836.037300001829863 ], [ 366235.286899998784065, 255876.5777000002563 ], [ 366270.802400000393391, 255872.435400001704693 ], [ 366279.183799996972084, 255835.140399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803036700", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-44", "ACRE": ".27", "LONGITUDE": -64.8582822, "LATITUDE": 18.33149507, "OBJECTID_1": 23983, "PARCEL_NO_": "105803036700", "Tax_Legal_": "19-2-44 SMITH BAY NOS. 1,2&3 EAST END QTR.", "Name": "BAILEY, TESS M. & KELVIN S. JR.", "Address": "6521 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29100, "Improved_V": 223500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.04351440400001, "SHAPE_Area": 1059.28785002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366509.668700002133846, 255851.170099999755621 ], [ 366508.964800000190735, 255839.131999999284744 ], [ 366470.258199997246265, 255839.237399999052286 ], [ 366468.615099996328354, 255842.8125 ], [ 366465.362800002098083, 255845.952300000935793 ], [ 366486.856299996376038, 255878.636700000613928 ], [ 366509.668700002133846, 255851.170099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703102100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87857848, "LATITUDE": 18.33153193, "OBJECTID_1": 23432, "PARCEL_NO_": "105703102100", "Tax_Legal_": "MARIENDAHL ESTATE 7-59 No.4 RED HOOK QTR.", "Name": "EVANS, KENROY & JANE", "Address": "PO Box 8106", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 210200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.48197438299999, "SHAPE_Area": 978.268175466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364350.502300001680851, 255817.244100000709295 ], [ 364344.863499999046326, 255816.564699999988079 ], [ 364340.047200001776218, 255813.992199998348951 ], [ 364325.161399997770786, 255857.566700000315905 ], [ 364335.627300001680851, 255859.552200000733137 ], [ 364350.947200000286102, 255859.677600000053644 ], [ 364358.558300003409386, 255818.154500000178814 ], [ 364350.502300001680851, 255817.244100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703102300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87832248, "LATITUDE": 18.33153663, "OBJECTID_1": 23434, "PARCEL_NO_": "105703102300", "Tax_Legal_": "MARIENDAHL 7-62 REDHOOK QTR.", "Name": "JEFFERS, E. & JOSHUA, S", "Address": "7497 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.25178579300001, "SHAPE_Area": 1252.7237303 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364388.368400000035763, 255821.142700001597404 ], [ 364358.558300003409386, 255818.154500000178814 ], [ 364350.947200000286102, 255859.677600000053644 ], [ 364384.015000000596046, 255858.892799999564886 ], [ 364388.368400000035763, 255821.142700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8647206, "LATITUDE": 18.33153858, "OBJECTID_1": 23877, "PARCEL_NO_": "105803021700", "Tax_Legal_": "FRYDENHOJ 140 RED HOOK QTR", "Name": "PAUL, JOSEPH & ALCA", "Address": "BOX 4324", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 231600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.463658866, "SHAPE_Area": 1093.15631422 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365821.661100000143051, 255871.714699998497963 ], [ 365821.225299999117851, 255828.225900001823902 ], [ 365793.731499999761581, 255837.288899999111891 ], [ 365792.63570000231266, 255871.265999998897314 ], [ 365821.661100000143051, 255871.714699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86500971, "LATITUDE": 18.33155303, "OBJECTID_1": 23881, "PARCEL_NO_": "105803022100", "Tax_Legal_": "FRYDENHOJ 131 RED HOOK QTR", "Name": "YOHANNES, LASIL & PINKARD, HARRY T", "Address": "PO Box 8773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25600, "Improved_V": 514600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.85209151500001, "SHAPE_Area": 1115.96426275 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365793.731499999761581, 255837.288899999111891 ], [ 365767.960100002586842, 255833.489399999380112 ], [ 365764.684500001370907, 255839.373199999332428 ], [ 365761.374700002372265, 255849.267499998211861 ], [ 365760.5253000035882, 255854.326799999922514 ], [ 365760.386799998581409, 255870.579900000244379 ], [ 365792.63570000231266, 255871.265999998897314 ], [ 365793.731499999761581, 255837.288899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703102500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87802825, "LATITUDE": 18.33154069, "OBJECTID_1": 23436, "PARCEL_NO_": "105703102500", "Tax_Legal_": "MARIENDAHL 7-64 RED HOOK QTR.", "Name": "OTTLEY, IMOGENE", "Address": "PO Box 11996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.884338055, "SHAPE_Area": 1104.6476362200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364419.789499998092651, 255824.355099998414516 ], [ 364388.368400000035763, 255821.142700001597404 ], [ 364384.015000000596046, 255858.892799999564886 ], [ 364413.855800002813339, 255858.292599998414516 ], [ 364419.789499998092651, 255824.355099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703101900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87879978, "LATITUDE": 18.331461, "OBJECTID_1": 23430, "PARCEL_NO_": "105703101900", "Tax_Legal_": "MARIENDAHL 7-57 RED HOOK QTR.", "Name": "William, Rosetta, & Devon Daniel & Debbie Spencer", "Address": "PO Box 502364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 46100, "Improved_V": 443100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.85807720700001, "SHAPE_Area": 1282.17018143 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364325.594800002872944, 255806.696699999272823 ], [ 364318.368500001728535, 255803.0489999987185 ], [ 364297.860100001096725, 255844.044399999082088 ], [ 364304.270999997854233, 255848.740899998694658 ], [ 364312.298199996352196, 255853.028499998152256 ], [ 364325.161399997770786, 255857.566700000315905 ], [ 364340.047200001776218, 255813.992199998348951 ], [ 364325.594800002872944, 255806.696699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703102700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87777525, "LATITUDE": 18.3315483, "OBJECTID_1": 23438, "PARCEL_NO_": "105703102700", "Tax_Legal_": "MARIENDAHL 7-65 #4 RED HOOK QTR", "Name": "THOMAS, EVAN", "Address": "PO Box 302267", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.786016637, "SHAPE_Area": 741.08165444600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364443.154500000178814, 255826.657299999147654 ], [ 364419.789499998092651, 255824.355099998414516 ], [ 364413.855800002813339, 255858.292599998414516 ], [ 364435.631599999964237, 255857.837600000202656 ], [ 364443.154500000178814, 255826.657299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703102900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87752004, "LATITUDE": 18.33155728, "OBJECTID_1": 23440, "PARCEL_NO_": "105703102900", "Tax_Legal_": "MARIENDAHL 7-66 RED HOOK QTR.", "Name": "MICHAEL, MARILYN & WENFORD", "Address": "146-90 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.147153426, "SHAPE_Area": 935.88728489599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364475.3800999969244, 255830.087499998509884 ], [ 364443.154500000178814, 255826.657299999147654 ], [ 364435.631599999964237, 255857.837600000202656 ], [ 364467.086800001561642, 255857.039599999785423 ], [ 364475.3800999969244, 255830.087499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703103100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87720495000001, "LATITUDE": 18.33148154, "OBJECTID_1": 23442, "PARCEL_NO_": "105703103100", "Tax_Legal_": "MARIENDAHL 7-68\nRED HOOK QTR.", "Name": "WATTS (LIFE ESTATE), ANGELA JACQUELINE", "Address": "205 Shore Pkwy", "City": "Tampa", "State": "Florida", "Zip": 33615, "Country": "United States", "Land_Value": 32700, "Improved_V": 310900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.884184159, "SHAPE_Area": 1284.72581225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364509.340499997138977, 255819.177400000393391 ], [ 364482.017599999904633, 255808.188000001013279 ], [ 364475.3800999969244, 255830.087499998509884 ], [ 364467.086800001561642, 255857.039599999785423 ], [ 364497.746399998664856, 255854.968499999493361 ], [ 364509.340499997138977, 255819.177400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86436028, "LATITUDE": 18.33153169, "OBJECTID_1": 23875, "PARCEL_NO_": "105803021500", "Tax_Legal_": "141B FRYDENHOJ RED HOOK QUARTER", "Name": "LIBURD, JOYCELYN", "Address": "PO Box 304514", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 161900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.19910137700001, "SHAPE_Area": 931.28932850900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365861.217200003564358, 255866.550000000745058 ], [ 365861.481499999761581, 255835.52140000090003 ], [ 365830.010200001299381, 255838.219099998474121 ], [ 365830.570100001990795, 255867.143500000238419 ], [ 365861.217200003564358, 255866.550000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703103300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87694482000001, "LATITUDE": 18.33151659, "OBJECTID_1": 23444, "PARCEL_NO_": "105703103300", "Tax_Legal_": "MARIENDAHL 7-70\nRED HOOK QTR.", "Name": "MELTON (LIFE ESTATE), KAY MARGUERITE", "Address": "10024 N 52nd St", "City": "Temple Terrace", "State": "Florida", "Zip": 33617, "Country": "United States", "Land_Value": 31500, "Improved_V": 107800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.814412522, "SHAPE_Area": 815.20889647599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364497.746399998664856, 255854.968499999493361 ], [ 364514.688000001013279, 255854.051600001752377 ], [ 364524.396099999547005, 255850.331399999558926 ], [ 364530.086999997496605, 255844.889600001275539 ], [ 364532.55629999935627, 255838.999200001358986 ], [ 364532.628200002014637, 255830.556000001728535 ], [ 364528.625500001013279, 255827.145700000226498 ], [ 364509.340499997138977, 255819.177400000393391 ], [ 364497.746399998664856, 255854.968499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703101400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88025454, "LATITUDE": 18.33142155, "OBJECTID_1": 23425, "PARCEL_NO_": "105703101400", "Tax_Legal_": "7-36 MARIENDAHL NO.4 RED HOOK QTR.", "Name": "TURNER- PERCIVAL, LESLIE E.", "Address": "28 Millpond Ct", "City": "Owings Mills", "State": "Maryland", "Zip": 21117, "Country": "United States", "Land_Value": 30200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.49082419199999, "SHAPE_Area": 959.54768906200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364183.584899999201298, 255817.144600000232458 ], [ 364158.720399998128414, 255801.531199999153614 ], [ 364147.970399998128414, 255832.896200001239777 ], [ 364159.208499997854233, 255838.898800000548363 ], [ 364166.420299999415874, 255844.235199999064207 ], [ 364172.811499997973442, 255851.253600001335144 ], [ 364183.584899999201298, 255817.144600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703101500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87966821000001, "LATITUDE": 18.33144068, "OBJECTID_1": 23426, "PARCEL_NO_": "105703101500", "Tax_Legal_": "MARIENDAHL 7-50 #4 RED HOOK QTR.", "Name": "BURTON, CHARLESON", "Address": "PO Box 502074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30200, "Improved_V": 165600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.27642678399999, "SHAPE_Area": 869.84593106399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364248.053900003433228, 255821.894099999219179 ], [ 364225.599399998784065, 255807.355900000780821 ], [ 364207.64299999922514, 255832.751299999654293 ], [ 364230.889399997889996, 255848.984700001776218 ], [ 364248.053900003433228, 255821.894099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803035100", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-61", "ACRE": "0.27", "LONGITUDE": -64.85959038, "LATITUDE": 18.33142475, "OBJECTID_1": 23968, "PARCEL_NO_": "105803035100", "Tax_Legal_": "SMITH BAY 19-2-61 EAST END QUARTER", "Name": "TALBERT, JOSEPH & JOANNA M", "Address": "P.O.NOX 502874", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31600, "Improved_V": 209400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.68811653700001, "SHAPE_Area": 1138.7710995800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366363.992200002074242, 255818.736000001430511 ], [ 366322.600599996745586, 255850.061200000345707 ], [ 366341.010899998247623, 255866.0439000017941 ], [ 366375.068400003015995, 255843.735700000077486 ], [ 366367.903300002217293, 255832.911200001835823 ], [ 366363.992200002074242, 255818.736000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803023200", "MAP": "G9--853-T66", "PARCEL_NAM": "111A-3", "ACRE": ".22", "LONGITUDE": -64.86568627, "LATITUDE": 18.33149318, "OBJECTID_1": 23891, "PARCEL_NO_": "105803023200", "Tax_Legal_": "FRYDENHOJ 111A-3 RED HOOK QTR. 3", "Name": "ADAMS, WILBUR", "Address": "PO Box 202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21300, "Improved_V": 133300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.80438641800001, "SHAPE_Area": 865.64336028100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365721.483599998056889, 255859.613800000399351 ], [ 365723.362800002098083, 255833.046599999070168 ], [ 365696.192900002002716, 255833.535300001502037 ], [ 365693.773900002241135, 255833.515500001609325 ], [ 365690.020300000905991, 255833.54619999974966 ], [ 365688.135499998927116, 255858.945199999958277 ], [ 365691.94370000064373, 255859.042899999767542 ], [ 365721.483599998056889, 255859.613800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803023100", "MAP": "G9--853-T66", "PARCEL_NAM": "111A-2", "ACRE": ".22", "LONGITUDE": -64.86538557, "LATITUDE": 18.33148966, "OBJECTID_1": 23890, "PARCEL_NO_": "105803023100", "Tax_Legal_": "FRYDENHOJ 111A-2 RED HOOK QTR", "Name": "SHOY, DOROTHY A", "Address": "217 Old Haverstraw Rd", "City": "Congers", "State": "New York", "Zip": 10920, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.48811675499999, "SHAPE_Area": 812.34714794299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365755.86540000140667, 255833.390399999916553 ], [ 365728.452600002288818, 255832.954999998211861 ], [ 365723.362800002098083, 255833.046599999070168 ], [ 365721.483599998056889, 255859.613800000399351 ], [ 365729.836800001561642, 255859.775199998170137 ], [ 365748.381999999284744, 255859.927000001072884 ], [ 365750.813500002026558, 255858.469200000166893 ], [ 365752.525100000202656, 255846.873100001364946 ], [ 365755.86540000140667, 255833.390399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86295982, "LATITUDE": 18.33141207, "OBJECTID_1": 23868, "PARCEL_NO_": "105803020800", "Tax_Legal_": "FRYDENHOJ 167 RED HOOK QTR", "Name": "DUNCAN, IMA ADELAIDE", "Address": "1203 Bjerge Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25600, "Improved_V": 162300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.52800664899999, "SHAPE_Area": 1019.53968237 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365980.103000000119209, 255825.515399999916553 ], [ 365977.380199998617172, 255861.167899999767542 ], [ 365992.746799997985363, 255855.805300001055002 ], [ 366006.459499999880791, 255855.284200001507998 ], [ 366012.405799999833107, 255819.869199998676777 ], [ 365985.748999997973442, 255825.350499998778105 ], [ 365980.103000000119209, 255825.515399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703100100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8810617, "LATITUDE": 18.3314047, "OBJECTID_1": 23412, "PARCEL_NO_": "105703100100", "Tax_Legal_": "MAREINDAL 7-23 REDHOOK QTR.", "Name": "TODMAN, JOEL", "Address": "PO Box 307035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.31101925499999, "SHAPE_Area": 1162.3457612100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364106.947400003671646, 255820.950300000607967 ], [ 364095.705799996852875, 255815.369899999350309 ], [ 364074.872900001704693, 255799.789500001817942 ], [ 364055.321800000965595, 255823.060899998992682 ], [ 364086.579199999570847, 255845.481499999761581 ], [ 364106.947400003671646, 255820.950300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703103500", "MAP": "C9-278A-T82", "PARCEL_NAM": "7-73", "ACRE": null, "LONGITUDE": -64.87582195, "LATITUDE": 18.33146585, "OBJECTID_1": 23446, "PARCEL_NO_": "105703103500", "Tax_Legal_": "7-73 ESTATE MARIENDAHL RED HOOK QTR.", "Name": "MELENDEZ, BERNADETTE V. M", "Address": "#7-73 EST. MARIENDAHL", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 178600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.27235188399999, "SHAPE_Area": 1511.4266869 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364638.384700000286102, 255816.222800001502037 ], [ 364622.518299996852875, 255810.494500000029802 ], [ 364612.419100001454353, 255835.34180000051856 ], [ 364607.989600002765656, 255846.239900000393391 ], [ 364620.35809999704361, 255849.850299999117851 ], [ 364628.748400002717972, 255853.869699999690056 ], [ 364636.359300002455711, 255854.975400000810623 ], [ 364642.663699999451637, 255853.564399998635054 ], [ 364648.049500003457069, 255848.260800000280142 ], [ 364656.527900002896786, 255839.911899998784065 ], [ 364659.279600001871586, 255836.10190000012517 ], [ 364661.819600000977516, 255833.24439999833703 ], [ 364663.046400003135204, 255830.013300001621246 ], [ 364658.710299998521805, 255824.304499998688698 ], [ 364638.384700000286102, 255816.222800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803036800", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-43", "ACRE": ".277", "LONGITUDE": -64.85793228, "LATITUDE": 18.33139083, "OBJECTID_1": 23984, "PARCEL_NO_": "105803036800", "Tax_Legal_": "19-2-43 SMITH BAY EAST END QUARTER", "Name": "WILLIAMS, ROGER V. & YVETTE A", "Address": "6516 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45900, "Improved_V": 200400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.52461657500001, "SHAPE_Area": 1016.3926383100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366507.566200003027916, 255814.000399999320507 ], [ 366508.964800000190735, 255839.131999999284744 ], [ 366509.668700002133846, 255851.170099999755621 ], [ 366534.604999996721745, 255858.340300001204014 ], [ 366550.691699996590614, 255863.11600000038743 ], [ 366549.13120000064373, 255856.981499999761581 ], [ 366548.373499996960163, 255851.275800000876188 ], [ 366540.391199998557568, 255841.711300000548363 ], [ 366527.594499997794628, 255829.363099999725819 ], [ 366507.566200003027916, 255814.000399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86389331, "LATITUDE": 18.33140105, "OBJECTID_1": 23873, "PARCEL_NO_": "105803021300", "Tax_Legal_": "FRYDENHOJ 159 3 RED HOOK QTR", "Name": "TURNER, ALFRED A", "Address": "PO Box 7423", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35200, "Improved_V": 260800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.04781752100001, "SHAPE_Area": 1588.0347875099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365915.346199996769428, 255854.538499999791384 ], [ 365922.098800003528595, 255819.130100000649691 ], [ 365903.548299998044968, 255819.6114999987185 ], [ 365870.430100001394749, 255826.306499999016523 ], [ 365870.187299996614456, 255854.802200000733137 ], [ 365915.346199996769428, 255854.538499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703103600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87614195, "LATITUDE": 18.33137169, "OBJECTID_1": 23447, "PARCEL_NO_": "105703103600", "Tax_Legal_": "MARIENDAHL 7-74 RED HOOK QTR.", "Name": "GRACIA, JOSE A", "Address": "PO Box 308321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28700, "Improved_V": 34200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.95504620599999, "SHAPE_Area": 1193.6788003900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364612.659999996423721, 255806.935300000011921 ], [ 364593.655900001525879, 255799.940900001674891 ], [ 364579.479999996721745, 255836.950399998575449 ], [ 364590.596400000154972, 255841.162900000810623 ], [ 364607.989600002765656, 255846.239900000393391 ], [ 364612.419100001454353, 255835.34180000051856 ], [ 364622.518299996852875, 255810.494500000029802 ], [ 364612.659999996423721, 255806.935300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803011900", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-39", "ACRE": "0.29", "LONGITUDE": -64.85902261, "LATITUDE": 18.33097124, "OBJECTID_1": 23842, "PARCEL_NO_": "105803011900", "Tax_Legal_": "19-2-39 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "LEWIS, RICHARDSON", "Address": "15-19 Ross Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.934452268, "SHAPE_Area": 1305.0644571299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366391.520099997520447, 255805.662399999797344 ], [ 366413.236599996685982, 255812.172899998724461 ], [ 366428.531400002539158, 255815.253400001674891 ], [ 366428.880199998617172, 255774.304099999368191 ], [ 366412.744999997317791, 255775.22749999910593 ], [ 366401.417099997401237, 255779.778900001198053 ], [ 366395.735100001096725, 255784.165300000458956 ], [ 366388.406400002539158, 255792.549100000411272 ], [ 366385.951499998569489, 255796.750900000333786 ], [ 366382.704700000584126, 255799.257399998605251 ], [ 366383.482199996709824, 255802.64130000025034 ], [ 366391.520099997520447, 255805.662399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401020300", "MAP": "G9-1083-T68", "PARCEL_NAM": "7", "ACRE": "2", "LONGITUDE": -64.90767627, "LATITUDE": 18.33042696, "OBJECTID_1": 33007, "PARCEL_NO_": "107401020300", "Tax_Legal_": "RAPHUNE 7 NEW QTR 5BA", "Name": "THOMPSON, PEARL", "Address": "6815 Niumalu Loop", "City": "Honolulu", "State": "Hawaii", "Zip": 96825, "Country": "United States", "Land_Value": 366500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.811887689, "SHAPE_Area": 7562.6915193799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361245.043399997055531, 255738.209699999541044 ], [ 361253.124499998986721, 255736.164900001138449 ], [ 361269.263400003314018, 255734.819299999624491 ], [ 361288.611299999058247, 255735.399900000542402 ], [ 361301.499700002372265, 255736.982999999076128 ], [ 361310.475599996745586, 255737.702300000935793 ], [ 361317.942199997603893, 255736.142799999564886 ], [ 361321.110500000417233, 255731.388900000602007 ], [ 361318.552699998021126, 255722.979299999773502 ], [ 361316.1824000030756, 255717.260400000959635 ], [ 361313.077600002288818, 255703.091699998825788 ], [ 361309.47580000013113, 255652.61089999973774 ], [ 361206.3091000020504, 255646.911299999803305 ], [ 361245.043399997055531, 255738.209699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87866899, "LATITUDE": 18.33005458, "OBJECTID_1": 37913, "PARCEL_NO_": "107601012400", "Tax_Legal_": "MARIENDAHL 10-7 RED HOOK QTR.", "Name": "KRIGGER, SR., AARON E", "Address": "PO Box 11988", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.44710697299999, "SHAPE_Area": 1413.05964918 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364317.226300001144409, 255653.163199998438358 ], [ 364323.273999996483326, 255700.497699998319149 ], [ 364336.938100002706051, 255705.675700001418591 ], [ 364357.42679999768734, 255667.002199999988079 ], [ 364347.835600003600121, 255657.002300001680851 ], [ 364341.410300001502037, 255653.99439999833703 ], [ 364333.36150000244379, 255652.239799998700619 ], [ 364317.226300001144409, 255653.163199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803012100", "MAP": "D9-5264-T92", "PARCEL_NAM": "19-2-20", "ACRE": ".264", "LONGITUDE": -64.86014573, "LATITUDE": 18.33015433, "OBJECTID_1": 23844, "PARCEL_NO_": "105803012100", "Tax_Legal_": "19-2-20 SMITH BAY NO.1,2,3 EAST END QTR", "Name": "NIBBS, DOLORES,HUDSON,TANYA D.", "Address": "29 Davey Dr", "City": "West Orange", "State": "New Jersey", "Zip": 7052, "Country": "United States", "Land_Value": 52600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.456965653, "SHAPE_Area": 835.32317078300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366314.479699999094009, 255688.531700000166893 ], [ 366311.07880000025034, 255688.058200001716614 ], [ 366286.826499998569489, 255695.247900001704693 ], [ 366264.203000001609325, 255700.551199998706579 ], [ 366265.761600002646446, 255706.896800000220537 ], [ 366305.934799998998642, 255718.482799999415874 ], [ 366314.479699999094009, 255688.531700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87895246, "LATITUDE": 18.3300494, "OBJECTID_1": 37912, "PARCEL_NO_": "107601012300", "Tax_Legal_": "10-8 ESTATE MARIENDAHL RED HOOK QTR.", "Name": "GWENETH CONNOR PELLE (LIFE ESTATE)", "Address": "PO Box 307534", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34700, "Improved_V": 211800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.02406443699999, "SHAPE_Area": 1236.47108022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364317.226300001144409, 255653.163199998438358 ], [ 364290.580200001597404, 255657.378100000321865 ], [ 364286.5253000035882, 255660.089099999517202 ], [ 364283.260499998927116, 255664.706399999558926 ], [ 364283.231700003147125, 255668.083700001239777 ], [ 364284.795800000429153, 255673.796000000089407 ], [ 364289.576099999248981, 255680.590199999511242 ], [ 364299.962899997830391, 255691.863099999725819 ], [ 364323.273999996483326, 255700.497699998319149 ], [ 364317.226300001144409, 255653.163199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87939537, "LATITUDE": 18.32995367, "OBJECTID_1": 37911, "PARCEL_NO_": "107601012200", "Tax_Legal_": "MARIENDAHL 10-37 RED HOOK QTR.", "Name": "ADRIEN, ROLAND & DIANE", "Address": "PO Box 306076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.96382497, "SHAPE_Area": 1234.51225105 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364272.918700002133846, 255648.156500000506639 ], [ 364241.533600002527237, 255640.722500000149012 ], [ 364238.839599996805191, 255672.997699998319149 ], [ 364286.269900001585484, 255690.062300000339746 ], [ 364278.285899996757507, 255680.708799999207258 ], [ 364275.114600002765656, 255674.350099999457598 ], [ 364272.799999997019768, 255662.087699998170137 ], [ 364272.071000002324581, 255653.004700001329184 ], [ 364272.918700002133846, 255648.156500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87814462, "LATITUDE": 18.32993029, "OBJECTID_1": 37914, "PARCEL_NO_": "107601012700", "Tax_Legal_": "10-10 MARIENDAHL RED HOOK QTR", "Name": "FARRELL, KEITH", "Address": "PO Box 11435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36900, "Improved_V": 263000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.767931072, "SHAPE_Area": 928.82071260800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364414.026900000870228, 255648.889199998229742 ], [ 364410.008000001311302, 255647.378699999302626 ], [ 364383.401500001549721, 255646.949799999594688 ], [ 364369.530500002205372, 255666.045800000429153 ], [ 364378.317199997603893, 255675.828000001609325 ], [ 364390.34179999679327, 255684.159099999815226 ], [ 364414.026900000870228, 255648.889199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107502010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88237019, "LATITUDE": 18.32970822, "OBJECTID_1": 37481, "PARCEL_NO_": "107502010300", "Tax_Legal_": "MARIENDAHL 7-12 RED HOOK QTR.", "Name": "SCOTLAND, CORAL H.", "Address": "PO Box 12437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36500, "Improved_V": 123200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.52131387599999, "SHAPE_Area": 1214.28063793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363964.253799997270107, 255627.687300000339746 ], [ 363958.67620000243187, 255619.831199999898672 ], [ 363914.314599998295307, 255621.156800001859665 ], [ 363932.611599996685982, 255650.4375 ], [ 363934.020000003278255, 255652.708500001579523 ], [ 363975.982100002467632, 255638.638000000268221 ], [ 363973.054899998009205, 255635.780900001525879 ], [ 363964.253799997270107, 255627.687300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010300", "MAP": "F9-2929-T70", "PARCEL_NAM": "6 REM", "ACRE": "6.598", "LONGITUDE": -64.88137997, "LATITUDE": 18.32908194, "OBJECTID_1": 37895, "PARCEL_NO_": "107601010300", "Tax_Legal_": "MARIENDAHL ESTATE 6&PORTION OF 7 WESTERN SECTION No.4 RED HOOK QTR", "Name": "HEAVY MATERIALS LLC", "Address": "29 CLINTON STREET", "City": "NEW BEDFORD", "State": "Massachusetts", "Zip": 2740, "Country": "United States", "Land_Value": 642900, "Improved_V": 698900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 695.03265805499996, "SHAPE_Area": 28039.993556000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364162.866599999368191, 255563.244600001722574 ], [ 364006.28490000218153, 255426.647999998182058 ], [ 364002.13289999961853, 255440.75730000063777 ], [ 363995.486400000751019, 255463.712099999189377 ], [ 363989.664200000464916, 255484.562699999660254 ], [ 363988.839900001883507, 255486.666900001466274 ], [ 363978.890799999237061, 255518.671700000762939 ], [ 363967.269799999892712, 255557.628899998962879 ], [ 363959.811599999666214, 255581.210299998521805 ], [ 364046.697999998927116, 255699.500599998980761 ], [ 364061.359099999070168, 255682.310899998992682 ], [ 364074.389600001275539, 255667.218800000846386 ], [ 364102.08110000193119, 255634.936999998986721 ], [ 364106.967500001192093, 255629.277499999850988 ], [ 364162.866599999368191, 255563.244600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87889741, "LATITUDE": 18.32964714, "OBJECTID_1": 37910, "PARCEL_NO_": "107601012000", "Tax_Legal_": "MARIENDAHL 10-26 RED HOOD QTR.", "Name": "BENJAMIN, CHERRILL", "Address": "PO Box 7724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41700, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.58180731499999, "SHAPE_Area": 1387.46999312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364341.568499997258186, 255635.41950000077486 ], [ 364313.391800001263618, 255604.878699999302626 ], [ 364306.297600001096725, 255610.855000000447035 ], [ 364297.363399997353554, 255618.381299998611212 ], [ 364289.206699997186661, 255629.291400000452995 ], [ 364285.090700000524521, 255639.179099999368191 ], [ 364286.642200000584126, 255646.368999999016523 ], [ 364292.275600001215935, 255647.681699998676777 ], [ 364304.390000000596046, 255645.458799999207258 ], [ 364324.565800003707409, 255643.513000000268221 ], [ 364330.222599998116493, 255642.081599999219179 ], [ 364338.323499999940395, 255637.714899998158216 ], [ 364341.568499997258186, 255635.41950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87859731, "LATITUDE": 18.32948326, "OBJECTID_1": 37908, "PARCEL_NO_": "107601011800", "Tax_Legal_": "10-27 MARIENDAHL RED HOOK QTR.", "Name": "GREENAWAY, JOSEPHINE & E", "Address": "P.O. BOX 3326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.30677087000001, "SHAPE_Area": 1282.23139414 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364363.075499996542931, 255605.379399999976158 ], [ 364326.601000003516674, 255593.922600001096725 ], [ 364315.231700003147125, 255603.32880000025034 ], [ 364313.391800001263618, 255604.878699999302626 ], [ 364341.568499997258186, 255635.41950000077486 ], [ 364346.454899996519089, 255629.759899999946356 ], [ 364352.135099999606609, 255625.584600001573563 ], [ 364365.908900000154972, 255617.886799998581409 ], [ 364374.002599999308586, 255614.364500001072884 ], [ 364382.969700001180172, 255611.628299999982119 ], [ 364363.075499996542931, 255605.379399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107502010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88253066, "LATITUDE": 18.32946198, "OBJECTID_1": 37482, "PARCEL_NO_": "107502010400", "Tax_Legal_": "7-10 ESTATE MARIENDAHL RED HOOK QTR.", "Name": "WALWYN, LEROY", "Address": "PO Box 303241", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.98368608300001, "SHAPE_Area": 1297.5740956300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363948.397299997508526, 255595.893500000238419 ], [ 363894.421099998056889, 255589.963300000876188 ], [ 363914.314599998295307, 255621.156800001859665 ], [ 363958.67620000243187, 255619.831199999898672 ], [ 363953.103900000452995, 255611.34180000051856 ], [ 363948.397299997508526, 255595.893500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87919221, "LATITUDE": 18.32940125, "OBJECTID_1": 37909, "PARCEL_NO_": "107601011900", "Tax_Legal_": "10-39 EST. MARIENDAHL RED HOOK QTR.", "Name": "WILLIAMS, GERALDINE & CHISTIAN", "Address": "PO Box 7083", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.08625280699999, "SHAPE_Area": 1032.90414618 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364306.398199997842312, 255599.034600000828505 ], [ 364279.125699996948242, 255582.135000001639128 ], [ 364254.711499996483326, 255608.321899998933077 ], [ 364282.811999998986721, 255622.695199999958277 ], [ 364291.7820999994874, 255610.947299998253584 ], [ 364306.398199997842312, 255599.034600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87823765, "LATITUDE": 18.32928856, "OBJECTID_1": 37916, "PARCEL_NO_": "107601012900", "Tax_Legal_": "MARIENDAHL 10-29 RED HOOK QTR.", "Name": "DONOVAN, R & Y , FLOYD D. & G, LAURA", "Address": "PO Box 12226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 136100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.12076269400001, "SHAPE_Area": 1183.22502874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364404.910599999129772, 255577.136100001633167 ], [ 364368.385200001299381, 255572.517000000923872 ], [ 364360.120200000703335, 255604.451099999248981 ], [ 364363.075499996542931, 255605.379399999976158 ], [ 364382.969700001180172, 255611.628299999982119 ], [ 364386.129699997603893, 255610.664099998772144 ], [ 364389.376500003039837, 255608.157499998807907 ], [ 364402.464500002563, 255586.310899998992682 ], [ 364404.910599999129772, 255577.136100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.878545, "LATITUDE": 18.32923891, "OBJECTID_1": 37906, "PARCEL_NO_": "107601011600", "Tax_Legal_": "10-28 MARIENDAHL RED HOOK QTR.", "Name": "GORING, KAUMIE", "Address": "PO Box 7594", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.849212325, "SHAPE_Area": 979.02458522300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364368.385200001299381, 255572.517000000923872 ], [ 364335.536200001835823, 255568.362799998372793 ], [ 364334.824199996888638, 255575.202599998563528 ], [ 364330.677500002086163, 255588.678700000047684 ], [ 364326.601000003516674, 255593.922600001096725 ], [ 364360.120200000703335, 255604.451099999248981 ], [ 364368.385200001299381, 255572.517000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87896124, "LATITUDE": 18.32918883, "OBJECTID_1": 37907, "PARCEL_NO_": "107601011700", "Tax_Legal_": "10-40 ESTATE MARIENDAHL RED HOOK QUARTER", "Name": "ETIENNE, ANTHONY", "Address": "PO Box 11010", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 64200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.673849508, "SHAPE_Area": 1040.2221647399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364326.825800001621246, 255567.537799999117851 ], [ 364297.026399999856949, 255563.283100001513958 ], [ 364279.125699996948242, 255582.135000001639128 ], [ 364306.398199997842312, 255599.034600000828505 ], [ 364321.83330000191927, 255585.651000000536442 ], [ 364324.284599997103214, 255581.871300000697374 ], [ 364326.825800001621246, 255567.537799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107502010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88263171, "LATITUDE": 18.32923331, "OBJECTID_1": 37483, "PARCEL_NO_": "107502010500", "Tax_Legal_": "MARIENDHL 7-9 RED HOOK QTR.", "Name": "7-9 MARIENDAHL LAND TRUST", "Address": "PO Box 303241", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49100, "Improved_V": 241800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.83559258299999, "SHAPE_Area": 1349.83265061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363947.772600002586842, 255574.567899998277426 ], [ 363878.503499999642372, 255565.346099998801947 ], [ 363891.240800000727177, 255584.65989999845624 ], [ 363894.421099998056889, 255589.963300000876188 ], [ 363948.397299997508526, 255595.893500000238419 ], [ 363947.772600002586842, 255574.567899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87818707, "LATITUDE": 18.32899915, "OBJECTID_1": 37917, "PARCEL_NO_": "107601013000", "Tax_Legal_": "10-31 MARIENDAHL NO.4 RED HOOK QTR", "Name": "ANDREW, PAULA & WELLS, PHILIP", "Address": "PO Box 503322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37100, "Improved_V": 21400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.190081249, "SHAPE_Area": 1266.1566023400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364368.385200001299381, 255572.517000000923872 ], [ 364404.910599999129772, 255577.136100001633167 ], [ 364407.462399996817112, 255567.564500000327826 ], [ 364408.435999996960163, 255547.940699998289347 ], [ 364407.642200000584126, 255546.456599999219179 ], [ 364364.140900000929832, 255541.456500001251698 ], [ 364368.385200001299381, 255572.517000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601013500", "MAP": "D9-1473-T78", "PARCEL_NAM": "10-30", "ACRE": ".26", "LONGITUDE": -64.87855717, "LATITUDE": 18.32895626, "OBJECTID_1": 37918, "PARCEL_NO_": "107601013500", "Tax_Legal_": "10-30 MARIENDAHL RED HOOK QTR.", "Name": "WILLIAMS, ROBERT & ELIZA", "Address": "P.O. BOX 5016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30100, "Improved_V": 125200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.79208882399999, "SHAPE_Area": 1108.7279462199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364335.536200001835823, 255568.362799998372793 ], [ 364368.385200001299381, 255572.517000000923872 ], [ 364364.140900000929832, 255541.456500001251698 ], [ 364322.252199999988079, 255536.4695999994874 ], [ 364326.195699997246265, 255546.845499999821186 ], [ 364331.777000002563, 255554.279399998486042 ], [ 364334.149099998176098, 255559.787300001829863 ], [ 364335.702399998903275, 255566.766100000590086 ], [ 364335.536200001835823, 255568.362799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107502010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88268313, "LATITUDE": 18.32903006, "OBJECTID_1": 37484, "PARCEL_NO_": "107502010600", "Tax_Legal_": "MARIENDAHL 7-8 RED HOOK QTR.", "Name": "BURTON, WADE L", "Address": "Lindberg Bay - 60-18 4 Ab", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56200, "Improved_V": 109400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.07085053899999, "SHAPE_Area": 1605.39670183 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363948.735399998724461, 255556.21059999987483 ], [ 363889.206699997186661, 255539.469200000166893 ], [ 363884.313100002706051, 255545.973099999129772 ], [ 363872.925800003111362, 255557.489999998360872 ], [ 363878.503499999642372, 255565.346099998801947 ], [ 363947.772600002586842, 255574.567899998277426 ], [ 363948.735399998724461, 255556.21059999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87895127, "LATITUDE": 18.32891285, "OBJECTID_1": 37905, "PARCEL_NO_": "107601011500", "Tax_Legal_": "10-41 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "BROWNE, LAVINGTON & HENDERSON, JOAN", "Address": "P.O.BOX 4066", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.64400516699999, "SHAPE_Area": 849.503724369 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364312.601700000464916, 255533.435300000011921 ], [ 364289.27080000191927, 255527.122600000351667 ], [ 364297.026399999856949, 255563.283100001513958 ], [ 364326.825800001621246, 255567.537799999117851 ], [ 364326.05179999768734, 255563.731800001114607 ], [ 364315.717200003564358, 255546.337499998509884 ], [ 364312.601700000464916, 255533.435300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107502010700", "MAP": "C9-278-T82", "PARCEL_NAM": "7-7", "ACRE": "0.32", "LONGITUDE": -64.88255091000001, "LATITUDE": 18.32877391, "OBJECTID_1": 37485, "PARCEL_NO_": "107502010700", "Tax_Legal_": "EST. MARIENDAHL 7-6&7-7 RED HOOK QUARTER", "Name": "GOETZ, DON L. & SUSAN M.", "Address": "6096 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120900, "Improved_V": 3400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.84015402200001, "SHAPE_Area": 1985.0422093499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363949.093199998140335, 255514.206000000238419 ], [ 363918.548600003123283, 255502.76799999922514 ], [ 363904.68129999935627, 255521.441799998283386 ], [ 363903.05969999730587, 255522.484000001102686 ], [ 363899.791299998760223, 255527.523499999195337 ], [ 363897.356100000441074, 255529.403400000184774 ], [ 363893.272399999201298, 255535.491700001060963 ], [ 363889.206699997186661, 255539.469200000166893 ], [ 363948.735399998724461, 255556.21059999987483 ], [ 363949.730499997735023, 255534.054000001400709 ], [ 363949.863600000739098, 255518.434099998325109 ], [ 363949.093199998140335, 255514.206000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87785638, "LATITUDE": 18.32866487, "OBJECTID_1": 37898, "PARCEL_NO_": "107601010700", "Tax_Legal_": "10-25 MARIENDAHL RED HOOK QTR", "Name": "PARSONS, KENNETH & MARY", "Address": "PO Box 9041", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 121300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.576409351, "SHAPE_Area": 1332.9871651200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364407.185400001704693, 255482.173300001770258 ], [ 364401.787900000810623, 255481.697000000625849 ], [ 364403.216700002551079, 255489.793299999088049 ], [ 364409.566699996590614, 255516.30460000038147 ], [ 364414.805500000715256, 255541.704700000584126 ], [ 364417.276600003242493, 255551.390599999576807 ], [ 364448.805500000715256, 255541.938299998641014 ], [ 364407.185400001704693, 255482.173300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401033300", "MAP": "D9-8687-T012", "PARCEL_NAM": "16-13", "ACRE": null, "LONGITUDE": -64.91197345, "LATITUDE": 18.32861537, "OBJECTID_1": 33040, "PARCEL_NO_": "107401033300", "Tax_Legal_": "16-13 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR.", "Name": "KRCMARIK, THOMAS G. & KAREN L.", "Address": "7486 Frenchman Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82900, "Improved_V": 194600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.52768494, "SHAPE_Area": 2530.7274232 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360851.18860000371933, 255494.972800001502037 ], [ 360831.376000002026558, 255454.280699998140335 ], [ 360779.556199997663498, 255479.187800001353025 ], [ 360801.800300002098083, 255518.422100000083447 ], [ 360851.18860000371933, 255494.972800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107502010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88256818000001, "LATITUDE": 18.32808846, "OBJECTID_1": 37486, "PARCEL_NO_": "107502010900", "Tax_Legal_": "EST MARIENDAHL 9B RED HOOK QUARTER", "Name": "TUGLIFE MARINE LLC", "Address": "PO Box 1255", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 251600, "Improved_V": 122400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 356.05605404599999, "SHAPE_Area": 3235.2270545599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363967.837600000202656, 255413.072200000286102 ], [ 363939.076800003647804, 255392.824700001627207 ], [ 363938.925899997353554, 255392.830800000578165 ], [ 363938.838799998164177, 255392.743200000375509 ], [ 363873.073299996554852, 255540.181600000709295 ], [ 363891.767700001597404, 255522.813799999654293 ], [ 363903.178400002419949, 255508.552799999713898 ], [ 363917.873599998652935, 255487.352600000798702 ], [ 363922.790600001811981, 255478.104800000786781 ], [ 363964.423199996352196, 255418.494899999350309 ], [ 363967.837600000202656, 255413.072200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87860877, "LATITUDE": 18.32868427, "OBJECTID_1": 37902, "PARCEL_NO_": "107601011200", "Tax_Legal_": "MARIENDAHL 10-32 RED HOOD QTR.", "Name": "ANTOINE (LIFE ESTATE), CHRISTIANA", "Address": "PO Box 9424", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 435400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.51488025099999, "SHAPE_Area": 1223.79043613 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364360.373700000345707, 255510.394900001585484 ], [ 364327.359899997711182, 255504.84739999845624 ], [ 364321.564599998295307, 255522.531800001859665 ], [ 364322.252199999988079, 255536.4695999994874 ], [ 364364.140900000929832, 255541.456500001251698 ], [ 364360.373700000345707, 255510.394900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.878987, "LATITUDE": 18.32860849, "OBJECTID_1": 37903, "PARCEL_NO_": "107601011300", "Tax_Legal_": "10-42 EST. MARIENDAHL RED HOOK QTR.", "Name": "HENDERSON, JOAN", "Address": "PO Box 304066", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 134600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.84945159199999, "SHAPE_Area": 721.98164901300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364318.761900000274181, 255502.004900000989437 ], [ 364291.593000002205372, 255499.301500000059605 ], [ 364289.27080000191927, 255527.122600000351667 ], [ 364312.601700000464916, 255533.435300000011921 ], [ 364312.715000003576279, 255520.137299999594688 ], [ 364313.553599998354912, 255516.344500001519918 ], [ 364317.689499996602535, 255504.134899999946356 ], [ 364318.761900000274181, 255502.004900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91149437, "LATITUDE": 18.32839475, "OBJECTID_1": 33039, "PARCEL_NO_": "107401033200", "Tax_Legal_": "FRENCHMAN BAY 16-12 FRENCHMAN BAY QTR.", "Name": "YOUNGBLOOD, TERRY", "Address": "610 88th Pl", "City": "Lubbock", "State": "Texas", "Zip": 79424, "Country": "United States", "Land_Value": 73400, "Improved_V": 371600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.22177700200001, "SHAPE_Area": 2551.2358805099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360902.196599997580051, 255470.692299999296665 ], [ 360882.382299996912479, 255430.211300000548363 ], [ 360843.520999997854233, 255448.469500001519918 ], [ 360831.376000002026558, 255454.280699998140335 ], [ 360851.18860000371933, 255494.972800001502037 ], [ 360902.196599997580051, 255470.692299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107502010700", "MAP": "C9-278-T82", "PARCEL_NAM": "7-6", "ACRE": "0.29", "LONGITUDE": -64.88245132, "LATITUDE": 18.32844867, "OBJECTID_1": 37485, "PARCEL_NO_": "107502010700", "Tax_Legal_": "EST. MARIENDAHL 7-6&7-7 RED HOOK QUARTER", "Name": "GOETZ, DON L. & SUSAN M.", "Address": "6096 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120900, "Improved_V": 3400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.878811824, "SHAPE_Area": 716.82908553200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363949.093199998140335, 255514.206000000238419 ], [ 363943.808700002729893, 255471.943999998271465 ], [ 363943.014899998903275, 255470.459800001233816 ], [ 363940.597800001502037, 255470.228999998420477 ], [ 363938.978000000119209, 255471.060100000351667 ], [ 363929.99889999628067, 255483.863299999386072 ], [ 363918.548600003123283, 255502.76799999922514 ], [ 363949.093199998140335, 255514.206000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87824298, "LATITUDE": 18.32845025, "OBJECTID_1": 37899, "PARCEL_NO_": "107601010800", "Tax_Legal_": "MAREINDAHL 10-35 RED HOOK QTR", "Name": "LITAS DEVELOPMENT COMPANY LTD", "Address": "PO BOX 3336", "City": "ROADTOWN, TORTOLA", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 26900, "Improved_V": 178600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.124867658, "SHAPE_Area": 1155.76941005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364395.582400001585484, 255484.4391999989748 ], [ 364369.538000002503395, 255475.850600000470877 ], [ 364360.373700000345707, 255510.394900001585484 ], [ 364402.246200002729893, 255517.281500000506639 ], [ 364401.107199996709824, 255510.208099998533726 ], [ 364397.184199996292591, 255493.127099998295307 ], [ 364396.549199998378754, 255489.158300001174212 ], [ 364395.582400001585484, 255484.4391999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87855001, "LATITUDE": 18.32838291, "OBJECTID_1": 37900, "PARCEL_NO_": "107601011000", "Tax_Legal_": "EST. MARIENDAHL 10-34 RED HOOK QTR.", "Name": "CONNOR, CURTIS & CLARE MARTIN", "Address": "P.O. BOX 4872", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 196200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.59825038, "SHAPE_Area": 1149.3244531400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364369.538000002503395, 255475.850600000470877 ], [ 364338.138599999248981, 255470.105099998414516 ], [ 364333.956000000238419, 255487.802799999713898 ], [ 364327.359899997711182, 255504.84739999845624 ], [ 364360.373700000345707, 255510.394900001585484 ], [ 364369.538000002503395, 255475.850600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401035200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91238767, "LATITUDE": 18.32824051, "OBJECTID_1": 33058, "PARCEL_NO_": "107401035200", "Tax_Legal_": "FRENCHMAN BAY 16-20 FRENCHMAN BAY QTR.", "Name": "JORDAN, MICHAEL R. & CHRISTINE A.", "Address": "4127 ESTATE LA GRANDE PRINCESS", "City": "CHRISTIANSTED", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 87900, "Improved_V": 488100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.38669417900002, "SHAPE_Area": 4008.3385772299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360730.094800002872944, 255456.862199999392033 ], [ 360752.256700001657009, 255465.4543999992311 ], [ 360779.556199997663498, 255479.187800001353025 ], [ 360831.376000002026558, 255454.280699998140335 ], [ 360843.520999997854233, 255448.469500001519918 ], [ 360841.933600001037121, 255445.5011 ], [ 360835.46509999781847, 255447.559099998325109 ], [ 360825.784000001847744, 255448.113200001418591 ], [ 360816.127999998629093, 255445.712099999189377 ], [ 360813.718000002205372, 255444.636900000274181 ], [ 360777.58500000089407, 255426.609299998730421 ], [ 360766.39019999653101, 255415.540899999439716 ], [ 360763.195500001311302, 255411.926100000739098 ], [ 360760.002599999308586, 255408.100299999117851 ], [ 360759.210699997842312, 255406.405099999159575 ], [ 360753.65820000320673, 255395.593899998813868 ], [ 360742.279899999499321, 255406.055399999022484 ], [ 360730.094800002872944, 255456.862199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107401019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90851355, "LATITUDE": 18.32761628, "OBJECTID_1": 33004, "PARCEL_NO_": "107401019900", "Tax_Legal_": "16-A thru 16-F,16-H,16-I,16-64-A,16-63-A,B,C,D ROW'S FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SCOTT, CURTIS E", "Address": "2525 Laguna Dr", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33316, "Country": "United States", "Land_Value": 343900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1155.2008152000001, "SHAPE_Area": 5158.8174189800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361394.420500002801418, 255336.243599999696016 ], [ 361398.500699996948242, 255330.577399998903275 ], [ 361405.842000000178814, 255320.716099999845028 ], [ 361384.019400000572205, 255326.659200001507998 ], [ 361384.804099999368191, 255329.198800001293421 ], [ 361368.602399997413158, 255337.932100001722574 ], [ 361360.517700001597404, 255340.399099998176098 ], [ 361355.683399997651577, 255339.937300000339746 ], [ 361352.382600001990795, 255348.776200000196695 ], [ 361353.971799999475479, 255351.533399999141693 ], [ 361352.335799999535084, 255354.264299999922514 ], [ 361301.534599997103214, 255354.270700000226498 ], [ 361298.309299997985363, 255354.244300000369549 ], [ 361286.247000001370907, 255350.345899999141693 ], [ 361262.9628000035882, 255338.545099999755621 ], [ 361242.099399998784065, 255326.553100001066923 ], [ 361227.643299996852875, 255319.679800000041723 ], [ 361217.179200001060963, 255317.483300000429153 ], [ 361214.760300002992153, 255317.463500000536442 ], [ 361205.894500002264977, 255316.968699999153614 ], [ 361196.195299997925758, 255319.633499998599291 ], [ 361176.741300001740456, 255331.506700001657009 ], [ 361171.878300003707409, 255334.422200001776218 ], [ 361163.773800000548363, 255339.210999999195337 ], [ 361137.853100001811981, 255352.931000001728535 ], [ 361132.183799996972084, 255355.839899998158216 ], [ 361128.130599997937679, 255358.339899998158216 ], [ 361094.868600003421307, 255381.92119999974966 ], [ 361072.187600001692772, 255393.978999998420477 ], [ 361051.113799996674061, 255406.683200001716614 ], [ 361043.831799998879433, 255409.578899998217821 ], [ 361038.977700002491474, 255411.439100001007318 ], [ 361033.313799999654293, 255413.714699998497963 ], [ 361027.653399996459484, 255415.568199999630451 ], [ 361009.064999997615814, 255420.482299998402596 ], [ 361001.781300000846386, 255423.589099999517202 ], [ 360994.495700001716614, 255426.907000001519918 ], [ 360946.727200001478195, 255449.525199998170137 ], [ 360902.196599997580051, 255470.692299999296665 ], [ 360906.158100001513958, 255478.957400001585484 ], [ 361005.746299996972084, 255431.432000000029802 ], [ 361014.644500002264977, 255428.127399999648333 ], [ 361031.611199997365475, 255424.255499999970198 ], [ 361050.221100002527237, 255416.808400001376867 ], [ 361053.460799999535084, 255415.146200001239777 ], [ 361077.766999997198582, 255401.624000001698732 ], [ 361076.989500001072884, 255398.240200001746416 ], [ 361100.483999997377396, 255385.344700001180172 ], [ 361132.122599996626377, 255363.016600001603365 ], [ 361173.433399997651577, 255341.189899999648333 ], [ 361192.082900002598763, 255329.09910000115633 ], [ 361201.80179999768734, 255324.112399999052286 ], [ 361217.933399997651577, 255323.611099999397993 ], [ 361224.371299996972084, 255325.141499999910593 ], [ 361293.415700003504753, 255360.748100001364946 ], [ 361315.119599997997284, 255368.736200001090765 ], [ 361369.137100003659725, 255369.811599999666214 ], [ 361394.420500002801418, 255336.243599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91104132, "LATITUDE": 18.32818632, "OBJECTID_1": 33038, "PARCEL_NO_": "107401033100", "Tax_Legal_": "FRENCHMAN BAY 16-11 FRENCHMAN BAY QTR.", "Name": "WHITAKER, MOSE & JOYCE", "Address": "PO Box 10524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66600, "Improved_V": 414700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.22840367399999, "SHAPE_Area": 2230.3936227499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360946.727200001478195, 255449.525199998170137 ], [ 360928.523699998855591, 255409.268500000238419 ], [ 360882.382299996912479, 255430.211300000548363 ], [ 360902.196599997580051, 255470.692299999296665 ], [ 360946.727200001478195, 255449.525199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601014700", "MAP": "D9-1473-T78", "PARCEL_NAM": "10-36", "ACRE": ".45", "LONGITUDE": -64.87837485, "LATITUDE": 18.32810515, "OBJECTID_1": 37921, "PARCEL_NO_": "107601014700", "Tax_Legal_": "10-36 MARIENDAHL NO.4 RED HOOK QTR", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 56700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.099108989, "SHAPE_Area": 1771.79452537 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364339.103200003504753, 255451.536800000816584 ], [ 364338.138599999248981, 255470.105099998414516 ], [ 364369.538000002503395, 255475.850600000470877 ], [ 364395.582400001585484, 255484.4391999989748 ], [ 364394.80290000140667, 255477.569499999284744 ], [ 364395.120399996638298, 255472.489500001072884 ], [ 364397.177500002086163, 255467.975299999117851 ], [ 364372.32379999756813, 255432.810300000011921 ], [ 364339.103200003504753, 255451.536800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91060363, "LATITUDE": 18.32798934, "OBJECTID_1": 33037, "PARCEL_NO_": "107401033000", "Tax_Legal_": "FRENCHMANS BAY 16-10 FRENCHMAN BAY QTR.", "Name": "CALLENDER, JANIS P.", "Address": "PO Box 7995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68200, "Improved_V": 351000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.28166008900001, "SHAPE_Area": 2292.9489430200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360994.495700001716614, 255426.907000001519918 ], [ 360975.476800002157688, 255387.699000000953674 ], [ 360928.523699998855591, 255409.268500000238419 ], [ 360946.727200001478195, 255449.525199998170137 ], [ 360994.495700001716614, 255426.907000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91106552, "LATITUDE": 18.32787027, "OBJECTID_1": 33054, "PARCEL_NO_": "107401034800", "Tax_Legal_": "FRENCHMAN BAY 16-25 FRENCHMAN BAY QTR.", "Name": "CARTY, MARMION & YVONNE", "Address": "PO Box 4258", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65700, "Improved_V": 34900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.906527025, "SHAPE_Area": 2268.6974705500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360975.476800002157688, 255387.699000000953674 ], [ 360915.069899998605251, 255379.394200000911951 ], [ 360901.245700001716614, 255393.002099998295307 ], [ 360896.348499998450279, 255399.928100001066923 ], [ 360882.517099998891354, 255414.380399998277426 ], [ 360877.639700002968311, 255418.984499998390675 ], [ 360868.703699998557568, 255426.721799999475479 ], [ 360850.840800002217293, 255441.141100000590086 ], [ 360843.553400002419949, 255444.670000001788139 ], [ 360841.933600001037121, 255445.5011 ], [ 360843.520999997854233, 255448.469500001519918 ], [ 360882.382299996912479, 255430.211300000548363 ], [ 360928.523699998855591, 255409.268500000238419 ], [ 360975.476800002157688, 255387.699000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401035400", "MAP": "D9-8311-T009", "PARCEL_NAM": "16-19", "ACRE": ".521", "LONGITUDE": -64.91279421, "LATITUDE": 18.3277575, "OBJECTID_1": 33060, "PARCEL_NO_": "107401035400", "Tax_Legal_": "16-19 REM FRENCHMAN'S BAY 4 FRENCHMAN'S BAY QTR", "Name": "BROWNE, DAVID M and ROBYN T", "Address": "PO BOX 600138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62300, "Improved_V": 651700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.49344693699999, "SHAPE_Area": 2379.8781463700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360722.249499998986721, 255336.287099998444319 ], [ 360720.507100000977516, 255343.165800001472235 ], [ 360723.240800000727177, 255351.822000000625849 ], [ 360719.287100002169609, 255360.059900000691414 ], [ 360710.192800000309944, 255386.37220000103116 ], [ 360710.952399998903275, 255391.866799999028444 ], [ 360721.981799997389317, 255422.354600001126528 ], [ 360725.11540000140667, 255433.146000001579523 ], [ 360730.094800002872944, 255456.862199999392033 ], [ 360742.279899999499321, 255406.055399999022484 ], [ 360753.65820000320673, 255395.593899998813868 ], [ 360747.310199998319149, 255383.50959999859333 ], [ 360746.538000002503395, 255379.492499999701977 ], [ 360738.656499996781349, 255358.107500001788139 ], [ 360737.074500001966953, 255354.506000000983477 ], [ 360735.490599997341633, 255351.115499999374151 ], [ 360733.102300003170967, 255347.507399998605251 ], [ 360725.915600001811981, 255339.215900000184774 ], [ 360722.249499998986721, 255336.287099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401035300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91206987, "LATITUDE": 18.3279514, "OBJECTID_1": 33059, "PARCEL_NO_": "107401035300", "Tax_Legal_": "FRENCHMAN'S BAY 16-24 FRENCHMAN'S BAY QTR", "Name": "CROOKE, KIMO J", "Address": "7167 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.62396910300001, "SHAPE_Area": 1597.6510089200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360814.252099998295307, 255381.94649999961257 ], [ 360774.48929999768734, 255411.385299999266863 ], [ 360783.290399998426437, 255419.478900000452995 ], [ 360816.205300003290176, 255436.63569999858737 ], [ 360824.250500001013279, 255438.8125 ], [ 360831.507299996912479, 255438.871899999678135 ], [ 360814.252099998295307, 255381.94649999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401035100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91177673, "LATITUDE": 18.32785685, "OBJECTID_1": 33057, "PARCEL_NO_": "107401035100", "Tax_Legal_": "FRENCHMAN'S BAY 16-33 FRENCHMAN'S BAY QTR.", "Name": "BATEAU, GERARD J", "Address": "PO Box 6722", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 66600, "Improved_V": 137400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.955235, "SHAPE_Area": 1994.23521319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360863.11710000038147, 255419.921100001782179 ], [ 360837.791599996387959, 255363.774000000208616 ], [ 360814.252099998295307, 255381.94649999961257 ], [ 360831.507299996912479, 255438.871899999678135 ], [ 360837.975699998438358, 255436.813900001347065 ], [ 360841.213600002229214, 255435.362799998372793 ], [ 360844.456799998879433, 255433.278400000184774 ], [ 360863.11710000038147, 255419.921100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91017281000001, "LATITUDE": 18.32780446, "OBJECTID_1": 33034, "PARCEL_NO_": "107401032700", "Tax_Legal_": "FRENCHMAN BAY 16-7\nFRENCHMAN BAY QTR.", "Name": "CINDY LYNN LIVESAY REVOCABLE LIVING TRUST", "Address": "5550 Roxbury Rd", "City": "Providence Forge", "State": "Virginia", "Zip": 23140, "Country": "United States", "Land_Value": 65700, "Improved_V": 207400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.87268229200001, "SHAPE_Area": 2104.1881394799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361038.977700002491474, 255411.439100001007318 ], [ 361017.570500001311302, 255368.622900001704693 ], [ 360995.713799998164177, 255378.576499998569489 ], [ 360975.476800002157688, 255387.699000000953674 ], [ 360994.495700001716614, 255426.907000001519918 ], [ 361001.781300000846386, 255423.589099999517202 ], [ 361009.064999997615814, 255420.482299998402596 ], [ 361027.653399996459484, 255415.568199999630451 ], [ 361033.313799999654293, 255413.714699998497963 ], [ 361038.977700002491474, 255411.439100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401035000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91149646, "LATITUDE": 18.32763395, "OBJECTID_1": 33056, "PARCEL_NO_": "107401035000", "Tax_Legal_": "16-34 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "DAHLIA ENGLAND CHARLES", "Address": "PO Box 10572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52300, "Improved_V": 177000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.06291399899999, "SHAPE_Area": 2516.0035865300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360898.902300000190735, 255384.116999998688698 ], [ 360867.027400001883507, 255339.526500001549721 ], [ 360837.791599996387959, 255363.774000000208616 ], [ 360863.11710000038147, 255419.921100001782179 ], [ 360880.998000003397465, 255403.391100000590086 ], [ 360890.769100002944469, 255392.283100001513958 ], [ 360892.394299998879433, 255390.81870000064373 ], [ 360898.902300000190735, 255384.116999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401035500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91230886, "LATITUDE": 18.32762614, "OBJECTID_1": 33061, "PARCEL_NO_": "107401035500", "Tax_Legal_": "FRENCHMAN'S BAY 16-23 FRENCHMAN'S BAY", "Name": "HENDRICKS, MARICA", "Address": "PO Box 307115", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63100, "Improved_V": 284600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.479403082, "SHAPE_Area": 2349.3710911600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360793.557700000703335, 255350.113099999725819 ], [ 360789.580099999904633, 255343.747800000011921 ], [ 360750.688299998641014, 255365.594300001859665 ], [ 360757.786899998784065, 255384.22859999909997 ], [ 360766.517800003290176, 255400.554299999028444 ], [ 360772.891000002622604, 255409.683400001376867 ], [ 360774.48929999768734, 255411.385299999266863 ], [ 360814.252099998295307, 255381.94649999961257 ], [ 360793.557700000703335, 255350.113099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90970904, "LATITUDE": 18.32758782, "OBJECTID_1": 33033, "PARCEL_NO_": "107401032600", "Tax_Legal_": "FRENCHMAN BAY 16-6C FRENCHMAN BAY QTR.", "Name": "ANTOINE, TREVOR", "Address": "PO BOX 307083", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82800, "Improved_V": 235200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.14867114800001, "SHAPE_Area": 3142.0295610600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361094.868600003421307, 255381.92119999974966 ], [ 361072.674900002777576, 255336.776599999517202 ], [ 361035.399300001561642, 255358.214200001209974 ], [ 361017.570500001311302, 255368.622900001704693 ], [ 361038.977700002491474, 255411.439100001007318 ], [ 361043.831799998879433, 255409.578899998217821 ], [ 361051.113799996674061, 255406.683200001716614 ], [ 361072.187600001692772, 255393.978999998420477 ], [ 361094.868600003421307, 255381.92119999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401032100", "MAP": "D9-2431-T83", "PARCEL_NAM": "16-3-A", "ACRE": null, "LONGITUDE": -64.9086631, "LATITUDE": 18.32744333, "OBJECTID_1": 33029, "PARCEL_NO_": "107401032100", "Tax_Legal_": "16-3-A FRENCHMAN BAY FRENCHMAN BAY QTR.", "Name": "GREGORY-FRETT, DONNA A", "Address": "PO Box 9124", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64800, "Improved_V": 412800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.20838098500002, "SHAPE_Area": 2527.2020798399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361153.822899997234344, 255371.426899999380112 ], [ 361183.73200000077486, 255362.805700000375509 ], [ 361222.422399997711182, 255364.600000001490116 ], [ 361229.843699999153614, 255364.931099999696016 ], [ 361194.668700002133846, 255327.772300001233816 ], [ 361192.082900002598763, 255329.09910000115633 ], [ 361173.433399997651577, 255341.189899999648333 ], [ 361132.122599996626377, 255363.016600001603365 ], [ 361100.483999997377396, 255385.344700001180172 ], [ 361076.989500001072884, 255398.240200001746416 ], [ 361077.766999997198582, 255401.624000001698732 ], [ 361122.28320000320673, 255382.145599998533726 ], [ 361153.822899997234344, 255371.426899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401031900", "MAP": "D9-8311-T009", "PARCEL_NAM": "16-18", "ACRE": ".344", "LONGITUDE": -64.913092, "LATITUDE": 18.32733611, "OBJECTID_1": 33027, "PARCEL_NO_": "107401031900", "Tax_Legal_": "3A-1-B & 16-18 REM BAKKERO 4 FRENCHMAN'S BAY QTR", "Name": "ADVANI, ARUN S. & MUKTA A", "Address": "9001 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64800, "Improved_V": 487400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.51083642, "SHAPE_Area": 1688.38598546 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360716.214800000190735, 255368.948899999260902 ], [ 360710.858300000429153, 255368.861200001090765 ], [ 360710.540799997746944, 255362.299499999731779 ], [ 360718.509300000965595, 255362.310199998319149 ], [ 360719.287100002169609, 255360.059900000691414 ], [ 360723.240800000727177, 255351.822000000625849 ], [ 360717.103699997067451, 255332.388799998909235 ], [ 360709.071099996566772, 255328.734499998390675 ], [ 360688.175300002098083, 255320.541900001466274 ], [ 360669.667900003492832, 255315.957400001585484 ], [ 360661.613799996674061, 255314.836100000888109 ], [ 360691.928199999034405, 255353.292100001126528 ], [ 360695.882399998605251, 255362.401500001549721 ], [ 360710.192800000309944, 255386.37220000103116 ], [ 360716.214800000190735, 255368.948899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9106269, "LATITUDE": 18.32755145, "OBJECTID_1": 33052, "PARCEL_NO_": "107401034600", "Tax_Legal_": "16-26 ESTATE FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "CHARLES, DONALD & KELLIE", "Address": "PO Box 600151", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60600, "Improved_V": 105800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.345451924, "SHAPE_Area": 1887.51520906 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360915.069899998605251, 255379.394200000911951 ], [ 360975.476800002157688, 255387.699000000953674 ], [ 360995.713799998164177, 255378.576499998569489 ], [ 360975.003200002014637, 255348.642900001257658 ], [ 360949.978699997067451, 255351.815499998629093 ], [ 360924.01129999756813, 255371.023600000888109 ], [ 360915.069899998605251, 255379.394200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601030200", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-27", "ACRE": "0.22", "LONGITUDE": -64.8745807, "LATITUDE": 18.32748915, "OBJECTID_1": 37957, "PARCEL_NO_": "107601030200", "Tax_Legal_": "2B 27&2B-50 MARIENDAHL EAST END QTR", "Name": "THOMAS, LUDRICK", "Address": "6127 Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 263400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.45099220200001, "SHAPE_Area": 1658.79689639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364795.938199996948242, 255401.024700000882149 ], [ 364764.819200001657009, 255362.350999999791384 ], [ 364759.153499998152256, 255364.837799999862909 ], [ 364754.259900003671646, 255371.341600000858307 ], [ 364752.593299999833107, 255377.660799998790026 ], [ 364751.695299997925758, 255388.419199999421835 ], [ 364750.890299998223782, 255406.201799999922514 ], [ 364769.935300000011921, 255424.187800001353025 ], [ 364773.059600003063679, 255427.138399999588728 ], [ 364773.960900001227856, 255425.120600000023842 ], [ 364781.295100003480911, 255416.10359999909997 ], [ 364786.993199996650219, 255409.817499998956919 ], [ 364795.938199996948242, 255401.024700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401034900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91118999, "LATITUDE": 18.32733973, "OBJECTID_1": 33055, "PARCEL_NO_": "107401034900", "Tax_Legal_": "FRENCHMAN BAY 16-35 FRENCHMAN BAY QTR.", "Name": "PASCAL, UNA R. & LOUIS", "Address": "PO Box 307246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.774801045, "SHAPE_Area": 2437.5397370599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360932.223700001835823, 255353.570099998265505 ], [ 360903.574000000953674, 255309.005899999290705 ], [ 360880.021999999880791, 255328.655999999493361 ], [ 360867.027400001883507, 255339.526500001549721 ], [ 360898.902300000190735, 255384.116999998688698 ], [ 360912.740900002419949, 255368.82039999961853 ], [ 360926.54169999808073, 255357.956500001251698 ], [ 360932.223700001835823, 255353.570099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401035800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91169295, "LATITUDE": 18.32730785, "OBJECTID_1": 33064, "PARCEL_NO_": "107401035800", "Tax_Legal_": "FRENCHMAN BAY 16-45 FRENCHMAN BAY QTR.", "Name": "ROMNEY, ROY K", "Address": "PO Box 302283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.14336896099999, "SHAPE_Area": 1401.05928337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360880.021999999880791, 255328.655999999493361 ], [ 360848.687299996614456, 255315.311700001358986 ], [ 360840.543200001120567, 255324.744300000369549 ], [ 360824.104099996387959, 255361.339999999850988 ], [ 360817.533100001513958, 255375.429499998688698 ], [ 360814.252099998295307, 255381.94649999961257 ], [ 360837.791599996387959, 255363.774000000208616 ], [ 360867.027400001883507, 255339.526500001549721 ], [ 360880.021999999880791, 255328.655999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401032500", "MAP": "D9-2628-T84", "PARCEL_NAM": "16-6B", "ACRE": "0.55", "LONGITUDE": -64.90925194, "LATITUDE": 18.32732327, "OBJECTID_1": 33032, "PARCEL_NO_": "107401032500", "Tax_Legal_": "FRENCHMANS BAY 16-6B FRENCHMANS BAY QTR.", "Name": "16-6BRLB LLC and 16-6BIGB LLC", "Address": "2 Dow Rd", "City": "Windham", "State": "New Hampshire", "Zip": 3087, "Country": "United States", "Land_Value": 93000, "Improved_V": 376100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.649371492, "SHAPE_Area": 2427.6656881700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361137.853100001811981, 255352.931000001728535 ], [ 361114.820699997246265, 255311.579300001263618 ], [ 361072.674900002777576, 255336.776599999517202 ], [ 361094.868600003421307, 255381.92119999974966 ], [ 361128.130599997937679, 255358.339899998158216 ], [ 361132.183799996972084, 255355.839899998158216 ], [ 361137.853100001811981, 255352.931000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9102304, "LATITUDE": 18.32736016, "OBJECTID_1": 33050, "PARCEL_NO_": "107401034400", "Tax_Legal_": "FRENCHMANS BAY 16-27 FRENCHMANS BAY QTR.", "Name": "DIETER, JUDITH CHRISTINE (TRUSTEE)", "Address": "342 Ann Marie Dr", "City": "Milan", "State": "Michigan", "Zip": 48160, "Country": "United States", "Land_Value": 63100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.924973454, "SHAPE_Area": 2248.5216719499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361035.399300001561642, 255358.214200001209974 ], [ 361013.954300001263618, 255319.830699998885393 ], [ 361007.473300002515316, 255323.366300001740456 ], [ 360981.577799998223782, 255334.13120000064373 ], [ 360967.001199997961521, 255341.400199998170137 ], [ 360949.978699997067451, 255351.815499998629093 ], [ 360975.003200002014637, 255348.642900001257658 ], [ 360995.713799998164177, 255378.576499998569489 ], [ 361017.570500001311302, 255368.622900001704693 ], [ 361035.399300001561642, 255358.214200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401039200", "MAP": "D9-5606-T93", "PARCEL_NAM": "16-51-REM", "ACRE": ".520", "LONGITUDE": -64.91203767, "LATITUDE": 18.3270088, "OBJECTID_1": 33093, "PARCEL_NO_": "107401039200", "Tax_Legal_": "16-51-REM FRENCHMANS BAY NO 4 FRENCHMANS BAY QTR", "Name": "CALLWOOD, LOUISE & KISMA, TYRONE GUMBS & ANDREW ZEPHYR", "Address": "PO Box 10768", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47900, "Improved_V": 77100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.24422586200001, "SHAPE_Area": 2066.9172591699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360824.104099996387959, 255361.339999999850988 ], [ 360825.300599999725819, 255315.542500000447035 ], [ 360812.788000002503395, 255269.843899998813868 ], [ 360806.461599998176098, 255255.226599998772144 ], [ 360788.594999998807907, 255270.067999999970198 ], [ 360794.116899996995926, 255284.467599999159575 ], [ 360817.533100001513958, 255375.429499998688698 ], [ 360824.104099996387959, 255361.339999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601030300", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-26", "ACRE": "0.27", "LONGITUDE": -64.87438708000001, "LATITUDE": 18.32729811, "OBJECTID_1": 37958, "PARCEL_NO_": "107601030300", "Tax_Legal_": "MARIENDAHL ESTATE 2B-26 No.4 RED HOOK QTR.", "Name": "SMITH, IRENE", "Address": "4608 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26900, "Improved_V": 117600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.95665587900001, "SHAPE_Area": 1175.1964192200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364805.045000001788139, 255373.234900001436472 ], [ 364786.713799998164177, 255347.964800000190735 ], [ 364772.104800000786781, 255359.03319999948144 ], [ 364764.819200001657009, 255362.350999999791384 ], [ 364795.938199996948242, 255401.024700000882149 ], [ 364807.314599998295307, 255390.774300001561642 ], [ 364813.810099996626377, 255385.55009999871254 ], [ 364805.045000001788139, 255373.234900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90575664000001, "LATITUDE": 18.32729028, "OBJECTID_1": 33127, "PARCEL_NO_": "107402020300", "Tax_Legal_": "14-28 FRENCHMAN'S BAY & 2-A DONOE NOS 4 FRENCHMAN'S BAY QTR & 2A NEW QTR", "Name": "LINEHAM, STEPHEN E.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60900, "Improved_V": 432600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.832713837, "SHAPE_Area": 3010.46029443 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361473.7449000030756, 255301.006900001317263 ], [ 361469.72410000115633, 255299.707400001585484 ], [ 361465.683499999344349, 255300.729800000786781 ], [ 361464.049300000071526, 255303.249600000679493 ], [ 361459.082000002264977, 255318.407600000500679 ], [ 361457.451399996876717, 255320.505199998617172 ], [ 361452.493000000715256, 255334.607900001108646 ], [ 361450.038099996745586, 255338.80970000103116 ], [ 361437.693499997258186, 255368.050700001418591 ], [ 361492.486800000071526, 255372.721000000834465 ], [ 361515.076099999248981, 255371.428199999034405 ], [ 361473.7449000030756, 255301.006900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401035600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91251229, "LATITUDE": 18.32725211, "OBJECTID_1": 33062, "PARCEL_NO_": "107401035600", "Tax_Legal_": "FRENCHMAN BAY 16-22 FRENCHMANS BAY QTR.", "Name": "HOWELL, ALFORD R. & CARMEN D", "Address": "PO Box 7154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61400, "Improved_V": 369600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.445286772, "SHAPE_Area": 1833.5601172700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360789.580099999904633, 255343.747800000011921 ], [ 360762.51969999819994, 255301.940799999982119 ], [ 360732.421800002455711, 255332.725299999117851 ], [ 360737.202200002968311, 255339.519400000572205 ], [ 360741.986100003123283, 255345.89130000025034 ], [ 360745.173600003123283, 255350.350400000810623 ], [ 360747.545800000429153, 255355.858199998736382 ], [ 360750.688299998641014, 255365.594300001859665 ], [ 360789.580099999904633, 255343.747800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90631098, "LATITUDE": 18.32731231, "OBJECTID_1": 33126, "PARCEL_NO_": "107402020200", "Tax_Legal_": "FRENCHMAN'S BAY 14-27 FRENCHMAN BAY QTR", "Name": "PARSONS WILKES, DAISY", "Address": "PO Box 9543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54500, "Improved_V": 437800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.86971220699999, "SHAPE_Area": 2285.97294225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361430.434900000691414, 255368.202399998903275 ], [ 361433.723099999129772, 255360.840999998152256 ], [ 361435.351899996399879, 255358.954500000923872 ], [ 361440.299400001764297, 255346.118299998342991 ], [ 361441.928199999034405, 255344.231800001114607 ], [ 361452.651299998164177, 255316.032999999821186 ], [ 361454.281900003552437, 255313.935400001704693 ], [ 361456.01860000193119, 255299.384199999272823 ], [ 361452.753799997270107, 255304.001499999314547 ], [ 361432.403499998152256, 255326.421900000423193 ], [ 361425.913500003516674, 255331.012899998575449 ], [ 361418.629699997603893, 255334.119699999690056 ], [ 361409.742299996316433, 255336.157900001853704 ], [ 361394.420500002801418, 255336.243599999696016 ], [ 361369.137100003659725, 255369.811599999666214 ], [ 361430.434900000691414, 255368.202399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401032000", "MAP": "D9-8960-T015", "PARCEL_NAM": "16-3-B", "ACRE": ".503", "LONGITUDE": -64.90794059, "LATITUDE": 18.32733724, "OBJECTID_1": 33028, "PARCEL_NO_": "107401032000", "Tax_Legal_": "FRENCHMAN BAY 16-3-B FRENCHMAN BAY QTR.", "Name": "BARROWS, JR., THOMAS S.,JEAN H.,THOMAS,THOMAS S.III, & IAN M", "Address": "PO BOX 11758", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64800, "Improved_V": 205500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.11385826499998, "SHAPE_Area": 2232.5558381599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361194.668700002133846, 255327.772300001233816 ], [ 361229.843699999153614, 255364.931099999696016 ], [ 361315.119599997997284, 255368.736200001090765 ], [ 361293.415700003504753, 255360.748100001364946 ], [ 361224.371299996972084, 255325.141499999910593 ], [ 361217.933399997651577, 255323.611099999397993 ], [ 361201.80179999768734, 255324.112399999052286 ], [ 361194.668700002133846, 255327.772300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90488113000001, "LATITUDE": 18.32716896, "OBJECTID_1": 33129, "PARCEL_NO_": "107402020500", "Tax_Legal_": "FRENCHMAN'S BAY 14-30 FRENCHMAN BAY QTR", "Name": "MAYNARD, PAUL", "Address": "PO Box 11125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.552146752, "SHAPE_Area": 2619.6605763699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361598.17119999974966, 255366.831000000238419 ], [ 361579.373599998652935, 255301.660300001502037 ], [ 361570.507700003683567, 255301.165600001811981 ], [ 361566.470799997448921, 255301.765799999237061 ], [ 361550.297799997031689, 255307.121899999678135 ], [ 361534.956299997866154, 255309.529399998486042 ], [ 361515.601199999451637, 255309.793200001120567 ], [ 361509.962399996817112, 255309.113800000399351 ], [ 361545.305299997329712, 255325.235100001096725 ], [ 361567.51519999653101, 255368.479899998754263 ], [ 361598.17119999974966, 255366.831000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401037500", "MAP": "D9-5606-T93", "PARCEL_NAM": "16-51-A", "ACRE": ".563", "LONGITUDE": -64.91184164000001, "LATITUDE": 18.32683722, "OBJECTID_1": 33078, "PARCEL_NO_": "107401037500", "Tax_Legal_": "FRENCHMAN'S BAY 16-51-A No.4 FRENCHMAN'S BAY QTR.", "Name": "MERCER WILLIAMS, MAJORIE & MAUREEN BOYD", "Address": "1997 Marbut Forest Dr", "City": "Lithonia", "State": "Georgia", "Zip": 30058, "Country": "United States", "Land_Value": 65700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.17211825200002, "SHAPE_Area": 2575.4076653400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360834.856899999082088, 255234.982999999076128 ], [ 360806.461599998176098, 255255.226599998772144 ], [ 360812.788000002503395, 255269.843899998813868 ], [ 360825.300599999725819, 255315.542500000447035 ], [ 360824.104099996387959, 255361.339999999850988 ], [ 360840.543200001120567, 255324.744300000369549 ], [ 360848.687299996614456, 255315.311700001358986 ], [ 360856.834899999201298, 255305.456999998539686 ], [ 360858.531999997794628, 255295.549499999731779 ], [ 360855.3175999969244, 255294.256599999964237 ], [ 360852.907600000500679, 255293.181400001049042 ], [ 360848.912000000476837, 255288.92680000141263 ], [ 360847.317400000989437, 255286.80290000140667 ], [ 360841.750500001013279, 255277.680300001055002 ], [ 360837.839400000870228, 255263.504999998956919 ], [ 360836.284400001168251, 255256.737300001084805 ], [ 360835.519400000572205, 255251.875900000333786 ], [ 360834.856899999082088, 255234.982999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90441042, "LATITUDE": 18.32720398, "OBJECTID_1": 33130, "PARCEL_NO_": "107402020600", "Tax_Legal_": "FRENCHMAN'S BAY 14-31 FRENCHMAN BAY QTR", "Name": "HODGE, JOSEPH E & ZULMA HODGE", "Address": "PO Box 5048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56400, "Improved_V": 481100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.60142517700001, "SHAPE_Area": 3253.0917379299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361633.342600002884865, 255308.434799998998642 ], [ 361606.732500001788139, 255308.428100001066923 ], [ 361597.069300003349781, 255306.871399998664856 ], [ 361579.373599998652935, 255301.660300001502037 ], [ 361598.17119999974966, 255366.831000000238419 ], [ 361656.247299998998642, 255364.773200001567602 ], [ 361633.342600002884865, 255308.434799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90394415, "LATITUDE": 18.32721278, "OBJECTID_1": 33131, "PARCEL_NO_": "107402020700", "Tax_Legal_": "FRENCHMAN'S BAY 14-32 FRENCHMAN BAY QTR", "Name": "HODGE, LAUDI ANTONELLE", "Address": "BOX 5048", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.63978318400001, "SHAPE_Area": 2137.71783942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361684.053900003433228, 255318.982400000095367 ], [ 361679.20889999717474, 255319.787099998444319 ], [ 361669.540299996733665, 255318.863600000739098 ], [ 361651.058100000023842, 255311.324000000953674 ], [ 361633.342600002884865, 255308.434799998998642 ], [ 361656.247299998998642, 255364.773200001567602 ], [ 361694.966499999165535, 255363.190200001001358 ], [ 361691.856299996376038, 255349.654800001531839 ], [ 361684.053900003433228, 255318.982400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90981692, "LATITUDE": 18.32715131, "OBJECTID_1": 33048, "PARCEL_NO_": "107401034200", "Tax_Legal_": "FRENCHMAN BAY 16-28 FRENCHMAN BAY QTR.", "Name": "VENZEN, PAULETTE, GLANVILLE, MAU", "Address": "7630 Estate Tutu", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.391570288, "SHAPE_Area": 2088.8713467399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361072.674900002777576, 255336.776599999517202 ], [ 361060.889499999582767, 255300.372099999338388 ], [ 361065.820900000631809, 255289.435600001364946 ], [ 361046.359700001776218, 255302.153000000864267 ], [ 361013.954300001263618, 255319.830699998885393 ], [ 361035.399300001561642, 255358.214200001209974 ], [ 361072.674900002777576, 255336.776599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90288684, "LATITUDE": 18.32724519, "OBJECTID_1": 33271, "PARCEL_NO_": "107402029200", "Tax_Legal_": "14-60D FRENCHMANS BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "CATHERINEBERG LLC", "Address": "4940 Littlewood Dr", "City": "Beaumont", "State": "Texas", "Zip": 77706, "Country": "United States", "Land_Value": 88000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.853012401, "SHAPE_Area": 3170.0269467899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361805.090700000524521, 255309.418299999088049 ], [ 361775.986199997365475, 255318.257100000977516 ], [ 361766.269000001251698, 255323.032800000160933 ], [ 361718.358599998056889, 255362.326200000941753 ], [ 361769.950000002980232, 255364.226100001484156 ], [ 361793.34740000218153, 255362.728900000452995 ], [ 361818.377300001680851, 255358.923000000417233 ], [ 361805.090700000524521, 255309.418299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87412849, "LATITUDE": 18.32722987, "OBJECTID_1": 37959, "PARCEL_NO_": "107601030400", "Tax_Legal_": "2B-25A MARIENDAL RED HOOK", "Name": "GORDON, JENNIFER & OTHERS", "Address": "2B-25A Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 50100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.816178329, "SHAPE_Area": 477.51717135400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364832.48480000346899, 255370.504200000315905 ], [ 364806.970499999821186, 255336.520399998873472 ], [ 364803.729000002145767, 255338.393699999898672 ], [ 364819.680900000035763, 255359.000399999320507 ], [ 364805.045000001788139, 255373.234900001436472 ], [ 364813.810099996626377, 255385.55009999871254 ], [ 364826.799199998378754, 255375.312800001353025 ], [ 364832.48480000346899, 255370.504200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91084773, "LATITUDE": 18.32708168, "OBJECTID_1": 33053, "PARCEL_NO_": "107401034700", "Tax_Legal_": "FRENCHMAN'S BAY 16-36 FRENCHMAN'S BAY QTR.", "Name": "FREEMAN, BERNICE F.", "Address": "PO Box 305986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.441897944, "SHAPE_Area": 2336.6952867800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360963.032600000500679, 255333.979400001466274 ], [ 360949.771200001239777, 255281.51969999819994 ], [ 360912.488399997353554, 255303.801500000059605 ], [ 360903.574000000953674, 255309.005899999290705 ], [ 360932.223700001835823, 255353.570099998265505 ], [ 360942.77589999884367, 255345.423799999058247 ], [ 360963.032600000500679, 255333.979400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029600", "MAP": "D9-2628-T84", "PARCEL_NAM": "16-8", "ACRE": "0.65", "LONGITUDE": -64.90731503000001, "LATITUDE": 18.32715606, "OBJECTID_1": 33274, "PARCEL_NO_": "107402029600", "Tax_Legal_": "FRENCHMANS BAY EST. 16-8 FRENCHMAN BAY QTR.", "Name": "FRAHM, ANTHONY E. & VICTORIA M.", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73400, "Improved_V": 227300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.16786568200001, "SHAPE_Area": 2548.6867499199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361283.464100003242493, 255298.394099999219179 ], [ 361284.229099996387959, 255303.255499999970198 ], [ 361273.707400001585484, 255307.813400000333786 ], [ 361298.309299997985363, 255354.244300000369549 ], [ 361301.534599997103214, 255354.270700000226498 ], [ 361352.335799999535084, 255354.264299999922514 ], [ 361353.971799999475479, 255351.533399999141693 ], [ 361352.382600001990795, 255348.776200000196695 ], [ 361346.761799998581409, 255345.986000001430511 ], [ 361339.5625, 255339.172100000083447 ], [ 361337.18129999935627, 255334.7195999994874 ], [ 361335.590300001204014, 255332.173500001430511 ], [ 361322.840300001204014, 255314.33729999884963 ], [ 361321.24210000038147, 255312.635400000959635 ], [ 361314.046400003135204, 255305.399399999529123 ], [ 361302.806599996984005, 255299.607799999415874 ], [ 361294.756099998950958, 255298.064300000667572 ], [ 361283.464100003242493, 255298.394099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9023823, "LATITUDE": 18.3270958, "OBJECTID_1": 33270, "PARCEL_NO_": "107402029100", "Tax_Legal_": "14-60C FRENCHMANS BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "CATHERINEBERG LLC", "Address": "4940 Littlewood Dr", "City": "Beaumont", "State": "Texas", "Zip": 77706, "Country": "United States", "Land_Value": 61700, "Improved_V": 425300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.09397791000001, "SHAPE_Area": 2124.6980769500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361856.381800003349781, 255346.568399999290705 ], [ 361843.934000000357628, 255293.270899999886751 ], [ 361823.695299997925758, 255302.604499999433756 ], [ 361805.090700000524521, 255309.418299999088049 ], [ 361818.377300001680851, 255358.923000000417233 ], [ 361827.279100000858307, 255355.196100000292063 ], [ 361856.381800003349781, 255346.568399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401035900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91241192, "LATITUDE": 18.32686842, "OBJECTID_1": 33065, "PARCEL_NO_": "107401035900", "Tax_Legal_": "FRENCHMAN'S BAY 16-50 FRENCHMAN'S BAY QTR.", "Name": "CHARLES, CANDITO", "Address": "3847 Turtle Run Blvd", "City": "CORAL SPRINGS", "State": "Florida", "Zip": 33067, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.50368465600002, "SHAPE_Area": 2746.21223538 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360762.240299999713898, 255240.088100001215935 ], [ 360735.994099996984005, 255292.013399999588728 ], [ 360762.51969999819994, 255301.940799999982119 ], [ 360789.580099999904633, 255343.747800000011921 ], [ 360793.557700000703335, 255350.113099999725819 ], [ 360802.441500000655651, 255348.497099999338388 ], [ 360786.840400002896786, 255286.730099998414516 ], [ 360776.565099999308586, 255262.370200000703335 ], [ 360773.39019999653101, 255256.433600001037121 ], [ 360762.240299999713898, 255240.088100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401032200", "MAP": "D9-2628-T84", "PARCEL_NAM": "16-4", "ACRE": "0.66", "LONGITUDE": -64.90789062, "LATITUDE": 18.32703541, "OBJECTID_1": 33030, "PARCEL_NO_": "107401032200", "Tax_Legal_": "FRENCHMAN BAY 16-4 FRENCHMAN BAY QTR.", "Name": "MATHEWS, ROY D.", "Address": "9555 Trulock Ct", "City": "Orlando", "State": "Florida", "Zip": 32817, "Country": "United States", "Land_Value": 74200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.96608465600002, "SHAPE_Area": 2608.68204853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361221.478699997067451, 255286.065499998629093 ], [ 361205.40820000320673, 255279.390099998563528 ], [ 361211.583599999547005, 255311.737900000065565 ], [ 361214.760300002992153, 255317.463500000536442 ], [ 361217.179200001060963, 255317.483300000429153 ], [ 361227.643299996852875, 255319.679800000041723 ], [ 361242.099399998784065, 255326.553100001066923 ], [ 361262.9628000035882, 255338.545099999755621 ], [ 361286.247000001370907, 255350.345899999141693 ], [ 361298.309299997985363, 255354.244300000369549 ], [ 361273.707400001585484, 255307.813400000333786 ], [ 361221.478699997067451, 255286.065499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401032400", "MAP": "D9-2628-T84", "PARCEL_NAM": "16-6A", "ACRE": "0.54", "LONGITUDE": -64.90886281, "LATITUDE": 18.32710201, "OBJECTID_1": 33031, "PARCEL_NO_": "107401032400", "Tax_Legal_": "FRENCHMAN BAY 16-6A FRENCHMAN BAY QTR.", "Name": "MARFATIA, NOSHIRWAN & ROSARIO", "Address": "PO Box 9895", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92200, "Improved_V": 432900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.25940943099999, "SHAPE_Area": 2108.6149827099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361176.741300001740456, 255331.506700001657009 ], [ 361155.316200003027916, 255290.801300000399351 ], [ 361114.820699997246265, 255311.579300001263618 ], [ 361137.853100001811981, 255352.931000001728535 ], [ 361163.773800000548363, 255339.210999999195337 ], [ 361171.878300003707409, 255334.422200001776218 ], [ 361176.741300001740456, 255331.506700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601030900", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-10", "ACRE": "0.51", "LONGITUDE": -64.87520719, "LATITUDE": 18.32709363, "OBJECTID_1": 37964, "PARCEL_NO_": "107601030900", "Tax_Legal_": "2B 10 MARIENDAHL RED HOOK", "Name": "JURGEN, THECLA M", "Address": "PO Box 866", "City": "ST. JOHN", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 58900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.953571802, "SHAPE_Area": 1530.0804304799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364709.534299999475479, 255320.735300000756979 ], [ 364677.087600000202656, 255343.267799999564886 ], [ 364702.582099996507168, 255379.573499999940395 ], [ 364730.981100000441074, 255358.907699998468161 ], [ 364725.369300000369549, 255355.062100000679493 ], [ 364718.988899998366833, 255346.777199998497963 ], [ 364709.534299999475479, 255320.735300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87426117, "LATITUDE": 18.3271232, "OBJECTID_1": 37960, "PARCEL_NO_": "107601030500", "Tax_Legal_": "2B-25 MARIENDAHL NO.4 RED HOOK QTR", "Name": "OLGA GORDON REVOCABLE LIVING TRUST", "Address": "3190 Contant 6-20", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26900, "Improved_V": 195400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.217089849800004, "SHAPE_Area": 567.04523752 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364786.713799998164177, 255347.964800000190735 ], [ 364805.045000001788139, 255373.234900001436472 ], [ 364819.680900000035763, 255359.000399999320507 ], [ 364803.729000002145767, 255338.393699999898672 ], [ 364786.713799998164177, 255347.964800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90202655, "LATITUDE": 18.32697074, "OBJECTID_1": 33269, "PARCEL_NO_": "107402029000", "Tax_Legal_": "FRENCHMANS BAY EST. 14-60B FRENCHMAN BAY QTR", "Name": "PONGNON, MIOULY E.", "Address": "2005 Fifth Ave", "City": "New York", "State": "New York", "Zip": 10035, "Country": "United States", "Land_Value": 97300, "Improved_V": 441900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.30617380800001, "SHAPE_Area": 2209.4634950300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361898.479099996387959, 255327.070199999958277 ], [ 361872.293399997055531, 255277.248799998313189 ], [ 361860.943899996578693, 255284.333099998533726 ], [ 361843.934000000357628, 255293.270899999886751 ], [ 361856.381800003349781, 255346.568399999290705 ], [ 361883.882799997925758, 255336.660999998450279 ], [ 361898.479099996387959, 255327.070199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601030600", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-24", "ACRE": "0.29", "LONGITUDE": -64.87399569, "LATITUDE": 18.32704481, "OBJECTID_1": 37961, "PARCEL_NO_": "107601030600", "Tax_Legal_": "2B-24 ESTATE MARIENDAHL NO 4 RED HOOK QTR", "Name": "DEWINDT, ETHLYN-LIFE ESTATE", "Address": "3984 Emerald North Dr", "City": "Decatur", "State": "Georgia", "Zip": 30035, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.27222178400001, "SHAPE_Area": 1127.36756666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364859.310599997639656, 255345.181400001049042 ], [ 364817.547799997031689, 255325.418999999761581 ], [ 364811.028999999165535, 255333.387200001627207 ], [ 364806.970499999821186, 255336.520399998873472 ], [ 364832.48480000346899, 255370.504200000315905 ], [ 364843.042300000786781, 255361.724700000137091 ], [ 364843.861199997365475, 255360.253699999302626 ], [ 364845.479299999773502, 255359.633699998259544 ], [ 364859.310599997639656, 255345.181400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90689943, "LATITUDE": 18.32698419, "OBJECTID_1": 33273, "PARCEL_NO_": "107402029500", "Tax_Legal_": "FRENCHMANS BAY EST. 16-44 FRENCHMANS BAY QTR.", "Name": "RAMOS MICHAEL, ANGELA", "Address": "PO Box 10464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.68104560500001, "SHAPE_Area": 2185.8027212799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361384.019400000572205, 255326.659200001507998 ], [ 361357.021999999880791, 255277.464600000530481 ], [ 361318.148100003600121, 255297.200300000607967 ], [ 361327.7483000010252, 255306.144799999892712 ], [ 361331.738600000739098, 255311.032600000500679 ], [ 361346.867899999022484, 255333.532299999147654 ], [ 361350.865299999713898, 255337.575800001621246 ], [ 361355.683399997651577, 255339.937300000339746 ], [ 361360.517700001597404, 255340.399099998176098 ], [ 361368.602399997413158, 255337.932100001722574 ], [ 361384.804099999368191, 255329.198800001293421 ], [ 361384.019400000572205, 255326.659200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90940882, "LATITUDE": 18.32691132, "OBJECTID_1": 33046, "PARCEL_NO_": "107401034000", "Tax_Legal_": "FRENCHMAN BAY 16-29 FRENCHMANS BAY QTR.", "Name": "HARRICHARAN, EDRIC", "Address": "18 Hazael St", "City": "Providence", "State": "Rhode Island", "Zip": 2908, "Country": "United States", "Land_Value": 66600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.26935468100001, "SHAPE_Area": 2377.1995307399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361114.820699997246265, 255311.579300001263618 ], [ 361107.104599997401237, 255270.774999998509884 ], [ 361111.226099997758865, 255260.254099998623133 ], [ 361102.317100003361702, 255264.825199998915195 ], [ 361094.214400000870228, 255269.403000000864267 ], [ 361091.782899998128414, 255270.860700000077486 ], [ 361065.820900000631809, 255289.435600001364946 ], [ 361060.889499999582767, 255300.372099999338388 ], [ 361072.674900002777576, 255336.776599999517202 ], [ 361114.820699997246265, 255311.579300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401035700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91284448, "LATITUDE": 18.32698894, "OBJECTID_1": 33063, "PARCEL_NO_": "107401035700", "Tax_Legal_": "FRENCHMAN BAY 16-21 FRENCHMAN BAY QTR.", "Name": "ASFOUR FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66500, "Improved_V": 512400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.53299137799999, "SHAPE_Area": 1863.0921085099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360735.994099996984005, 255292.013399999588728 ], [ 360706.252300001680851, 255281.004200000315905 ], [ 360703.037799999117851, 255279.711399998515844 ], [ 360697.102300003170967, 255313.859999999403954 ], [ 360721.205399997532368, 255324.189699999988079 ], [ 360732.421800002455711, 255332.725299999117851 ], [ 360762.51969999819994, 255301.940799999982119 ], [ 360735.994099996984005, 255292.013399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91046501, "LATITUDE": 18.32690474, "OBJECTID_1": 33051, "PARCEL_NO_": "107401034500", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 16-37 No. FRENCHMAN'S BAY QTR.", "Name": "MERCHANT PARSONS, DISTA", "Address": "PO Box 6502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62300, "Improved_V": 210400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.7527709, "SHAPE_Area": 2392.3512011600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361008.371299996972084, 255312.607900001108646 ], [ 360984.602700002491474, 255263.017400000244379 ], [ 360965.161300003528595, 255273.412999998778105 ], [ 360949.771200001239777, 255281.51969999819994 ], [ 360963.032600000500679, 255333.979400001466274 ], [ 360980.046099998056889, 255324.619500000029802 ], [ 360993.798299998044968, 255319.454700000584126 ], [ 361008.371299996972084, 255312.607900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401037300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91134828, "LATITUDE": 18.32695344, "OBJECTID_1": 33076, "PARCEL_NO_": "107401037300", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 16-66 No.4 FRENCHMAN'S BAY QTR", "Name": "GUMBS, FELICIEN & ALTHEA", "Address": "PO Box 8012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61400, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.24222157400001, "SHAPE_Area": 1795.092137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360848.687299996614456, 255315.311700001358986 ], [ 360880.021999999880791, 255328.655999999493361 ], [ 360903.574000000953674, 255309.005899999290705 ], [ 360912.488399997353554, 255303.801500000059605 ], [ 360901.478799998760223, 255270.991900000721216 ], [ 360894.178800001740456, 255275.998399998992682 ], [ 360883.601400002837181, 255287.099800001829863 ], [ 360878.73480000346899, 255290.4375 ], [ 360875.493400000035763, 255292.3108000010252 ], [ 360868.206000000238419, 255295.839800000190735 ], [ 360861.750100001692772, 255296.420200001448393 ], [ 360858.531999997794628, 255295.549499999731779 ], [ 360856.834899999201298, 255305.456999998539686 ], [ 360848.687299996614456, 255315.311700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90617843, "LATITUDE": 18.32691807, "OBJECTID_1": 33125, "PARCEL_NO_": "107402020100", "Tax_Legal_": "FRENCHMAN'S BAY 14-27-1 FRENCHMANS BAY QTR", "Name": "HEIDEMAN, GLENN", "Address": "2720 N Fritz Dr", "City": "Tucson", "State": "Arizona", "Zip": 85705, "Country": "United States", "Land_Value": 88100, "Improved_V": 39500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.218180015, "SHAPE_Area": 1213.5781867200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361453.678700000047684, 255290.076900001615286 ], [ 361449.731700003147125, 255280.123199999332428 ], [ 361443.358499996364117, 255270.993999999016523 ], [ 361405.842000000178814, 255320.716099999845028 ], [ 361398.500699996948242, 255330.577399998903275 ], [ 361411.406999997794628, 255330.049800001084805 ], [ 361421.10980000346899, 255326.962799999862909 ], [ 361425.978200003504753, 255323.414000000804663 ], [ 361429.230400003492832, 255320.274300001561642 ], [ 361447.131099998950958, 255301.422400001436472 ], [ 361451.213100001215935, 255295.545099999755621 ], [ 361453.678700000047684, 255290.076900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88188352, "LATITUDE": 18.32691459, "OBJECTID_1": 38059, "PARCEL_NO_": "107601050100", "Tax_Legal_": "9 REM MARIENDAHL NO.4 RED HOOK QTR", "Name": "SANCHEZ, CLAUDIA", "Address": "PO Box 306054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.693959138, "SHAPE_Area": 1036.4611536 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363974.098200000822544, 255324.004299998283386 ], [ 364011.027800001204014, 255346.789099998772144 ], [ 364016.714100003242493, 255338.285199999809265 ], [ 364022.827399998903275, 255328.750500001013279 ], [ 363986.024400003254414, 255301.851100001484156 ], [ 363981.471900001168251, 255310.343499999493361 ], [ 363974.098200000822544, 255324.004299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601030800", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-35", "ACRE": "0.37", "LONGITUDE": -64.87475764, "LATITUDE": 18.32696603, "OBJECTID_1": 37963, "PARCEL_NO_": "107601030800", "Tax_Legal_": "MARIENDAHL ESTATE 2B-35 RED HOOK", "Name": "HODGE, IRVINE", "Address": "PO Box 306043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 120900, "Improved_V": 201800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.52082068000001, "SHAPE_Area": 1493.6563672299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364765.193300001323223, 255318.446600001305342 ], [ 364762.018399998545647, 255312.510000001639128 ], [ 364723.148100003600121, 255331.823600001633167 ], [ 364727.087999999523163, 255342.621599998325109 ], [ 364732.674599997699261, 255349.4222999997437 ], [ 364739.085600003600121, 255354.118900001049042 ], [ 364747.92620000243187, 255357.56870000064373 ], [ 364760.85419999808073, 255354.508099999278784 ], [ 364771.386600002646446, 255348.683699999004602 ], [ 364777.883900001645088, 255343.248399998992682 ], [ 364765.193300001323223, 255318.446600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030300", "MAP": "B9-195-T68", "PARCEL_NAM": "16-1", "ACRE": null, "LONGITUDE": -64.90938415, "LATITUDE": 18.32468434, "OBJECTID_1": 33011, "PARCEL_NO_": "107401030300", "Tax_Legal_": "16-1 ESTATE FRENCHMAN'S BAY FRENCHMANS BAY QTR", "Name": "ANTILLES SCHOOL INC", "Address": "7280 Frenchman Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 768800, "Improved_V": 7561900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2382.3411658800001, "SHAPE_Area": 110644.65391199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361188.959700003266335, 255033.120400000363588 ], [ 361144.610799998044968, 255032.968499999493361 ], [ 361110.244999997317791, 254996.801300000399351 ], [ 361073.481899999082088, 254958.081399999558926 ], [ 361048.79730000346899, 254921.360199999064207 ], [ 361051.406900003552437, 254899.00560000166297 ], [ 361081.61259999871254, 254855.556499999016523 ], [ 361101.019900001585484, 254849.171399999409914 ], [ 361133.365900002419949, 254838.459300000220537 ], [ 361140.608300000429153, 254840.207299999892712 ], [ 361140.649700000882149, 254835.35249999910593 ], [ 361139.005800001323223, 254744.357700001448393 ], [ 361131.723800003528595, 254747.253400001674891 ], [ 361109.800499998033047, 254765.0168999992311 ], [ 361104.107699997723103, 254770.669900000095367 ], [ 361086.257399998605251, 254783.611600000411272 ], [ 361041.707000002264977, 254807.100499998778105 ], [ 361028.73589999973774, 254815.227000001817942 ], [ 361017.370200000703335, 254824.210999999195337 ], [ 360994.604599997401237, 254846.189500000327826 ], [ 360985.67400000244379, 254853.293600000441074 ], [ 360952.271799996495247, 254893.339099999517202 ], [ 360951.445699997246265, 254895.654399998486042 ], [ 360946.553900003433228, 254901.94709999859333 ], [ 360943.271099999547005, 254908.675299998372793 ], [ 360940.82880000025034, 254911.399500001221895 ], [ 360938.359499998390675, 254917.289900001138449 ], [ 360932.632600001990795, 254926.953299999237061 ], [ 360930.159699998795986, 254933.265900000929832 ], [ 360917.888800002634525, 254953.852600000798702 ], [ 360902.414200000464916, 254971.879999998956919 ], [ 360840.70830000191927, 255021.404199998825788 ], [ 360826.119099996984005, 255030.150699999183416 ], [ 360804.273199997842312, 255038.837799999862909 ], [ 360796.192100003361702, 255040.882599998265505 ], [ 360789.739799998700619, 255041.040899999439716 ], [ 360782.508100003004074, 255038.026399999856949 ], [ 360753.896999999880791, 255083.599500000476837 ], [ 360766.000699996948242, 255082.643100000917912 ], [ 360820.873099997639656, 255078.026000000536442 ], [ 360840.240699999034405, 255076.284699998795986 ], [ 360869.951999999582767, 255090.882199998944998 ], [ 360869.752400003373623, 255114.311900001019239 ], [ 360868.32209999859333, 255187.549699999392033 ], [ 360892.454000003635883, 255194.502199999988079 ], [ 360910.902099996805191, 255206.052200000733137 ], [ 360912.523699998855591, 255205.010099999606609 ], [ 360935.339599996805191, 255177.121300000697374 ], [ 360967.931900002062321, 255137.491399999707937 ], [ 360989.928999997675419, 255111.073699999600649 ], [ 361051.201499998569489, 255112.41950000077486 ], [ 361055.676100000739098, 255155.096999999135733 ], [ 361100.91780000180006, 255145.123700000345707 ], [ 361185.747800000011921, 255126.186299998313189 ], [ 361238.791799999773502, 255146.885499998927116 ], [ 361298.264700002968311, 255170.170299999415874 ], [ 361326.844200000166893, 255222.966499999165535 ], [ 361334.788699999451637, 255236.963700000196695 ], [ 361357.021999999880791, 255277.464600000530481 ], [ 361384.019400000572205, 255326.659200001507998 ], [ 361405.842000000178814, 255320.716099999845028 ], [ 361443.358499996364117, 255270.993999999016523 ], [ 361433.009499996900558, 255255.288400001823902 ], [ 361428.290299996733665, 255241.317600000649691 ], [ 361401.548199996352196, 255162.149700000882149 ], [ 361391.049999997019768, 255163.963599998503923 ], [ 361385.463299997150898, 255157.162900000810623 ], [ 361378.253300003707409, 255151.615499999374151 ], [ 361355.913900002837181, 255123.568300001323223 ], [ 361332.714199997484684, 255101.846900001168251 ], [ 361331.11599999666214, 255100.144999999552965 ], [ 361325.54730000346899, 255091.233500000089407 ], [ 361323.990500003099442, 255084.676899999380112 ], [ 361323.306400001049042, 255070.316899999976158 ], [ 361325.869199998676777, 255053.450399998575449 ], [ 361325.959100000560284, 255042.896499998867512 ], [ 361322.802199997007847, 255034.84910000115633 ], [ 361313.128300003707409, 255034.558800000697374 ], [ 361272.01349999755621, 255033.377900000661612 ], [ 361266.369300000369549, 255033.331700000911951 ], [ 361222.020300000905991, 255033.179900001734495 ], [ 361188.959700003266335, 255033.120400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90169338, "LATITUDE": 18.32675783, "OBJECTID_1": 33144, "PARCEL_NO_": "107402020900", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-60A FRENCHMAN BAY QTR", "Name": "STURDIVANT, DEVERITA C", "Address": "P O BOX 3825", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 87200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.89224352700001, "SHAPE_Area": 2509.0298039300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361936.593400001525879, 255301.839800000190735 ], [ 361909.590499997138977, 255253.278299998492002 ], [ 361872.293399997055531, 255277.248799998313189 ], [ 361898.479099996387959, 255327.070199999958277 ], [ 361936.593400001525879, 255301.839800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9133097, "LATITUDE": 18.32684913, "OBJECTID_1": 33026, "PARCEL_NO_": "107401031800", "Tax_Legal_": "16-17 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR.", "Name": "ROGERS, GEORGE D. & COLETTE R. ANTHONY", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.83661878699999, "SHAPE_Area": 1785.1349985500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360703.037799999117851, 255279.711399998515844 ], [ 360660.432700000703335, 255264.163899999111891 ], [ 360653.01410000026226, 255283.101599998772144 ], [ 360648.885399997234344, 255294.466899998486042 ], [ 360655.244199998676777, 255305.284699998795986 ], [ 360672.966899998486042, 255307.329599998891354 ], [ 360697.102300003170967, 255313.859999999403954 ], [ 360703.037799999117851, 255279.711399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031800", "MAP": "F9-1594-T65", "PARCEL_NAM": "2B-9A", "ACRE": "0.31", "LONGITUDE": -64.87540384, "LATITUDE": 18.32674825, "OBJECTID_1": 37971, "PARCEL_NO_": "107601031800", "Tax_Legal_": "2B-9A MARIENDAHL EAST END QTR", "Name": "RHYMER, EDITH P. & MELVIN E. HODGE", "Address": "7129 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 174100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.52791710299999, "SHAPE_Area": 1923.0846585100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364676.458499997854233, 255342.429900001734495 ], [ 364677.756800003349781, 255342.803100001066923 ], [ 364709.534299999475479, 255320.735300000756979 ], [ 364708.747800000011921, 255318.406800001859665 ], [ 364706.427799999713898, 255306.777699999511242 ], [ 364702.462700001895428, 255298.934799998998642 ], [ 364690.522699996829033, 255280.68299999833107 ], [ 364653.187799997627735, 255309.086199998855591 ], [ 364674.695699997246265, 255340.081900000572205 ], [ 364676.458499997854233, 255342.429900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401034300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91008154, "LATITUDE": 18.32670247, "OBJECTID_1": 33049, "PARCEL_NO_": "107401034300", "Tax_Legal_": "FRENCHMAN'S BAY 16-38 FRENCHMANS'BAY QTR.", "Name": "MARLENE PLASKET & KEVIN WENNER", "Address": "12811 Stella Belle Dr", "City": "Huntersville", "State": "North Carolina", "Zip": 280786099, "Country": "United States", "Land_Value": 68300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.83204999099999, "SHAPE_Area": 2595.74813206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361048.886500000953674, 255289.508099999278784 ], [ 361029.945000000298023, 255241.223700001835823 ], [ 361019.419799998402596, 255246.20380000025034 ], [ 360984.602700002491474, 255263.017400000244379 ], [ 361008.371299996972084, 255312.607900001108646 ], [ 361042.398299999535084, 255293.887899998575449 ], [ 361048.886500000953674, 255289.508099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90900888, "LATITUDE": 18.32669865, "OBJECTID_1": 33045, "PARCEL_NO_": "107401033800", "Tax_Legal_": "FRENCHMAN'S BAY 16-30 FRENCHMAN'S BAY QTR.", "Name": "WEBBE, ORSON D. & LINDA C.", "Address": "PO BOX 306916", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64900, "Improved_V": 257900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.494370973, "SHAPE_Area": 2136.61525919 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361155.316200003027916, 255290.801300000399351 ], [ 361148.375799998641014, 255253.592099998146296 ], [ 361156.523500002920628, 255243.737399999052286 ], [ 361149.257700003683567, 255244.733399998396635 ], [ 361137.132399998605251, 255248.222699999809265 ], [ 361111.226099997758865, 255260.254099998623133 ], [ 361107.104599997401237, 255270.774999998509884 ], [ 361114.820699997246265, 255311.579300001263618 ], [ 361155.316200003027916, 255290.801300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90795767, "LATITUDE": 18.3266514, "OBJECTID_1": 33041, "PARCEL_NO_": "107401033400", "Tax_Legal_": "FRENCHMANS BAY 16-32 FRENCHMANS BAY QTR.", "Name": "TRI, TERRY O. & ADRIENE L.", "Address": "220 Terrace Ln", "City": "Red Wing", "State": "Minnesota", "Zip": 55066, "Country": "United States", "Land_Value": 81900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.42528675400001, "SHAPE_Area": 2747.7424478200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361221.062600001692772, 255240.254799999296665 ], [ 361204.763800002634525, 255260.386399999260902 ], [ 361221.478699997067451, 255286.065499998629093 ], [ 361273.707400001585484, 255307.813400000333786 ], [ 361284.229099996387959, 255303.255499999970198 ], [ 361283.464100003242493, 255298.394099999219179 ], [ 361277.031599998474121, 255296.230500001460314 ], [ 361274.630599997937679, 255294.099899999797344 ], [ 361272.247699998319149, 255289.858500000089407 ], [ 361267.553599998354912, 255272.932599999010563 ], [ 361266.761699996888638, 255271.237399999052286 ], [ 361260.399300001561642, 255260.841699998825788 ], [ 361252.415299996733665, 255251.488299999386072 ], [ 361241.189900003373623, 255244.008099999278784 ], [ 361228.319399997591972, 255240.3141999989748 ], [ 361221.062600001692772, 255240.254799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90408369, "LATITUDE": 18.32672021, "OBJECTID_1": 33190, "PARCEL_NO_": "107402022300", "Tax_Legal_": "FRENCHMAN BAY 14-105 FRENCHMAN BAY QTR", "Name": "RICHARDSON-SMITH, GENELLE", "Address": "PO Box 9266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.45479503199999, "SHAPE_Area": 3232.4073207500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361684.928599998354912, 255310.967999998480082 ], [ 361689.377300001680851, 255262.030699998140335 ], [ 361612.768700003623962, 255262.459100000560284 ], [ 361610.826999999582767, 255301.073399998247623 ], [ 361633.407300002872944, 255300.835999999195337 ], [ 361641.465000003576279, 255301.535199999809265 ], [ 361655.147200003266335, 255304.60249999910593 ], [ 361668.804099999368191, 255310.624899998307228 ], [ 361673.63120000064373, 255311.931000001728535 ], [ 361680.887999996542931, 255311.99040000140667 ], [ 361684.928599998354912, 255310.967999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90345836, "LATITUDE": 18.32653157, "OBJECTID_1": 33188, "PARCEL_NO_": "107402022100", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-106 FRENCHMANS BAY QTR", "Name": "JANE, HOCK", "Address": "2735 ST. MARTIN LANE", "City": "Ramrod Key", "State": "Florida", "Zip": 33042, "Country": "United States", "Land_Value": 70000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.85252025700001, "SHAPE_Area": 2992.9276640799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361757.224500000476837, 255248.864900000393391 ], [ 361739.737300001084805, 255219.168699998408556 ], [ 361689.377300001680851, 255262.030699998140335 ], [ 361684.928599998354912, 255310.967999998480082 ], [ 361690.596199996769428, 255308.270100001245737 ], [ 361723.863600000739098, 255284.055599998682737 ], [ 361736.064300000667572, 255271.700899999588728 ], [ 361745.036300003528595, 255259.741999998688698 ], [ 361752.355999998748302, 255252.413600001484156 ], [ 361757.224500000476837, 255248.864900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401037700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91090824, "LATITUDE": 18.32668786, "OBJECTID_1": 33080, "PARCEL_NO_": "107401037700", "Tax_Legal_": "FRENCHMAN'S BAY 16-67-1 FRENCHMAN'S BAY", "Name": "ROBERTS, DOMINIQUE", "Address": "7635 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.099657361, "SHAPE_Area": 1843.9411969800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360901.478799998760223, 255270.991900000721216 ], [ 360912.488399997353554, 255303.801500000059605 ], [ 360949.771200001239777, 255281.51969999819994 ], [ 360965.161300003528595, 255273.412999998778105 ], [ 360949.988799996674061, 255255.979100000113249 ], [ 360935.54169999808073, 255248.050400000065565 ], [ 360925.808399997651577, 255254.72580000013113 ], [ 360921.7516999989748, 255257.647900000214577 ], [ 360901.478799998760223, 255270.991900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90506532000001, "LATITUDE": 18.32661349, "OBJECTID_1": 33192, "PARCEL_NO_": "107402022500", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-102 FRENCHMAN'S BAY QTR.", "Name": "MORANCIE, MAGDALENE A.", "Address": "PO Box 11245", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.04707751400002, "SHAPE_Area": 2965.3507482199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361575.287399999797344, 255213.389800000935793 ], [ 361501.168499998748302, 255300.175900001078844 ], [ 361515.665899999439716, 255302.194400001317263 ], [ 361534.214699998497963, 255301.9239999987185 ], [ 361545.517499998211861, 255300.327799998223782 ], [ 361560.072400003671646, 255295.591699998825788 ], [ 361570.572499997913837, 255293.566700000315905 ], [ 361575.287399999797344, 255213.389800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90552313000001, "LATITUDE": 18.32622019, "OBJECTID_1": 33193, "PARCEL_NO_": "107402022600", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-78 FRENCHMAN BAY QTR.", "Name": "FRENCHMANS BAY PROP. INC.", "Address": "PO Box 8888", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011888, "Country": "United States", "Land_Value": 181700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 448.80231044, "SHAPE_Area": 12626.5793791 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361592.392499998211861, 255193.264800000935793 ], [ 361533.635999999940395, 255180.540500000119209 ], [ 361465.221699997782707, 255165.626200001686811 ], [ 361439.887999996542931, 255205.104400001466274 ], [ 361435.746699996292591, 255217.947200000286102 ], [ 361435.619099996984005, 255232.933800000697374 ], [ 361437.935500003397465, 255244.985100001096725 ], [ 361441.886200003325939, 255254.516699999570847 ], [ 361449.038699999451637, 255266.818599998950958 ], [ 361453.829800002276897, 255272.3462999984622 ], [ 361460.168799996376038, 255285.48589999973774 ], [ 361465.782399997115135, 255289.12049999833107 ], [ 361469.792400002479553, 255291.6864 ], [ 361477.025799997150898, 255294.489799998700619 ], [ 361501.168499998748302, 255300.175900001078844 ], [ 361575.287399999797344, 255213.389800000935793 ], [ 361592.392499998211861, 255193.264800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90466668000001, "LATITUDE": 18.32656374, "OBJECTID_1": 33191, "PARCEL_NO_": "107402022400", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-103 FRENCHMAN BAY QTR", "Name": "CALVIN TODMAN (LIFE ESTATE)", "Address": "PO Box 301912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8031912, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.89992748200001, "SHAPE_Area": 2392.0116665300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361612.768700003623962, 255262.459100000560284 ], [ 361575.287399999797344, 255213.389800000935793 ], [ 361570.572499997913837, 255293.566700000315905 ], [ 361581.050899997353554, 255294.074700001627207 ], [ 361597.94030000269413, 255299.279199998825788 ], [ 361610.826999999582767, 255301.073399998247623 ], [ 361612.768700003623962, 255262.459100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90734028, "LATITUDE": 18.32665488, "OBJECTID_1": 33275, "PARCEL_NO_": "107402029700", "Tax_Legal_": "FRENCHMANS BAY EST. 16-43 FRENCHMAN BAY QTR.", "Name": "LOUIS, CEDRIC D.", "Address": "PO Box 8101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.63657737299999, "SHAPE_Area": 2260.7801486200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361357.021999999880791, 255277.464600000530481 ], [ 361279.88570000231266, 255245.169199999421835 ], [ 361279.007399998605251, 255253.605799999088049 ], [ 361271.680500000715256, 255261.778400000184774 ], [ 361273.26799999922514, 255264.746700000017881 ], [ 361274.866200000047684, 255266.448600001633167 ], [ 361277.229400001466274, 255273.011799998581409 ], [ 361280.336000002920628, 255286.969399999827147 ], [ 361283.543200001120567, 255289.106600001454353 ], [ 361295.639700002968311, 255288.994500000029802 ], [ 361300.46679999679327, 255290.300599999725819 ], [ 361306.901100002229214, 255292.253100000321865 ], [ 361310.117399998009205, 255293.334899999201298 ], [ 361318.148100003600121, 255297.200300000607967 ], [ 361357.021999999880791, 255277.464600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401036000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91277564000001, "LATITUDE": 18.32653637, "OBJECTID_1": 33066, "PARCEL_NO_": "107401036000", "Tax_Legal_": "FRENCHMAN'S BAY 16-49 FRENCHMAN'S BAY QTR.", "Name": "MAGNUSON FAMILY TRUST", "Address": "PO Box 502968", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 60600, "Improved_V": 463800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.10271608900001, "SHAPE_Area": 2337.3702319200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360725.335100002586842, 255218.043499998748302 ], [ 360706.252300001680851, 255281.004200000315905 ], [ 360735.994099996984005, 255292.013399999588728 ], [ 360762.240299999713898, 255240.088100001215935 ], [ 360757.44200000166893, 255235.404800001531839 ], [ 360747.020999997854233, 255228.142299998551607 ], [ 360730.948700003325939, 255221.677999999374151 ], [ 360725.335100002586842, 255218.043499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401037400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91126816000001, "LATITUDE": 18.32646515, "OBJECTID_1": 33077, "PARCEL_NO_": "107401037400", "Tax_Legal_": "FRENCHMAN'S BAY 16-62 FRENCHMAN'S BAY QUARTER", "Name": "WHITE, ALVIN R", "Address": "PO Box 305993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52300, "Improved_V": 194200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.353592499, "SHAPE_Area": 2236.7826154099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360910.902099996805191, 255206.052200000733137 ], [ 360879.996100001037121, 255237.04109999909997 ], [ 360856.993100002408028, 255286.881999999284744 ], [ 360864.235600002110004, 255288.630100000649691 ], [ 360866.661700002849102, 255287.805599998682737 ], [ 360875.563500002026558, 255284.078699998557568 ], [ 360891.014700002968311, 255268.795400001108646 ], [ 360896.694899998605251, 255264.620000001043081 ], [ 360908.0371999964118, 255258.379999998956919 ], [ 360921.020900003612041, 255248.776000000536442 ], [ 360921.082000002264977, 255241.599300000816584 ], [ 360910.902099996805191, 255206.052200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90853552, "LATITUDE": 18.32655592, "OBJECTID_1": 33043, "PARCEL_NO_": "107401033600", "Tax_Legal_": "FRENCHMANS BAY 16-31 FRENCHMAN BAY QTR.", "Name": "CHERYL GERMAIN", "Address": "PO Box 267", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 8310267, "Country": "United States", "Land_Value": 70000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.94318656, "SHAPE_Area": 2343.3277605200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361221.062600001692772, 255240.254799999296665 ], [ 361216.224799998104572, 255240.215199999511242 ], [ 361156.523500002920628, 255243.737399999052286 ], [ 361148.375799998641014, 255253.592099998146296 ], [ 361155.316200003027916, 255290.801300000399351 ], [ 361190.142200000584126, 255272.932300001382828 ], [ 361205.40820000320673, 255279.390099998563528 ], [ 361221.478699997067451, 255286.065499998629093 ], [ 361204.763800002634525, 255260.386399999260902 ], [ 361221.062600001692772, 255240.254799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9096664, "LATITUDE": 18.32647532, "OBJECTID_1": 33047, "PARCEL_NO_": "107401034100", "Tax_Legal_": "FRENCHMAN BAY 16-39 FRENCHMAN'S BAY QTR.", "Name": "REY, BERNARD A & THELMA", "Address": "PO Box 307171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72500, "Improved_V": 257900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.11741233399999, "SHAPE_Area": 2526.89848119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361090.254799999296665, 255260.92680000141263 ], [ 361081.764799997210503, 255216.316599998623133 ], [ 361063.952200002968311, 255224.825699999928474 ], [ 361029.945000000298023, 255241.223700001835823 ], [ 361048.886500000953674, 255289.508099999278784 ], [ 361064.294600002467632, 255279.290600001811981 ], [ 361068.353100001811981, 255276.157400000840425 ], [ 361081.340400002896786, 255266.13120000064373 ], [ 361090.254799999296665, 255260.92680000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401037200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91149631, "LATITUDE": 18.3263571, "OBJECTID_1": 33075, "PARCEL_NO_": "107401037200", "Tax_Legal_": "FRENCHMAN'S BAY 16-61 FRENCHMAN'S BAY QTR.", "Name": "JONES, EDRIC & JOYCE", "Address": "PO Box 10123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53100, "Improved_V": 159800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.00507786700001, "SHAPE_Area": 2354.47746237 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360892.454000003635883, 255194.502199999988079 ], [ 360867.20830000191927, 255223.637600000947714 ], [ 360842.201899997889996, 255224.699499998241663 ], [ 360841.951899997889996, 255254.03940000012517 ], [ 360847.439699999988079, 255272.449499998241663 ], [ 360851.420900002121925, 255278.392700001597404 ], [ 360852.205600000917912, 255280.932199999690056 ], [ 360856.993100002408028, 255286.881999999284744 ], [ 360879.996100001037121, 255237.04109999909997 ], [ 360910.902099996805191, 255206.052200000733137 ], [ 360892.454000003635883, 255194.502199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031100", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-34", "ACRE": null, "LONGITUDE": -64.87451344, "LATITUDE": 18.32649383, "OBJECTID_1": 37966, "PARCEL_NO_": "107601031100", "Tax_Legal_": "2B-34, 2B-36A & 2B-36B MARIENDAL RED HOOK QTR", "Name": "FRANCIS, MARIE", "Address": "P.O. BOX 4173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41900, "Improved_V": 106100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.47017760599999, "SHAPE_Area": 1631.07384467 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364761.978399999439716, 255312.431600000709295 ], [ 364809.459399998188019, 255282.740499999374151 ], [ 364808.2550999969244, 255280.379999998956919 ], [ 364791.500600002706051, 255259.3445999994874 ], [ 364746.9358000010252, 255284.522199999541044 ], [ 364750.121500000357628, 255289.192400000989437 ], [ 364761.978399999439716, 255312.431600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401036100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91314461, "LATITUDE": 18.32640423, "OBJECTID_1": 33067, "PARCEL_NO_": "107401036100", "Tax_Legal_": "FRENCHMAN'S BAY 16-48 FRENCHMAN'S BAY QTR.", "Name": "MAGNUSON, RUTH (TRUSTEE)", "Address": "PO Box 502968", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 68300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.97074142599999, "SHAPE_Area": 3160.9219254899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360725.335100002586842, 255218.043499998748302 ], [ 360714.905199997127056, 255211.836399998515844 ], [ 360704.473499998450279, 255205.840399999171495 ], [ 360685.165100000798702, 255200.616099998354912 ], [ 360665.382100000977516, 255251.116599999368191 ], [ 360660.432700000703335, 255264.163899999111891 ], [ 360703.037799999117851, 255279.711399998515844 ], [ 360706.252300001680851, 255281.004200000315905 ], [ 360725.335100002586842, 255218.043499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031900", "MAP": "F9-1594-T65", "PARCEL_NAM": "2B-9", "ACRE": "0.24", "LONGITUDE": -64.87558228, "LATITUDE": 18.32648907, "OBJECTID_1": 37972, "PARCEL_NO_": "107601031900", "Tax_Legal_": "2B-9 MARIENDAHL RED HOOK QTR", "Name": "HOBSON, IRA & DORA", "Address": "PO Box 10397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27800, "Improved_V": 154400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.441568475, "SHAPE_Area": 1267.8748513200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364677.821299999952316, 255257.147700000554323 ], [ 364638.053000003099442, 255287.219700001180172 ], [ 364653.187799997627735, 255309.086199998855591 ], [ 364690.522699996829033, 255280.68299999833107 ], [ 364684.935999996960163, 255273.88230000063777 ], [ 364681.793499998748302, 255264.146299999207258 ], [ 364677.821299999952316, 255257.147700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401037800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91050749, "LATITUDE": 18.32643963, "OBJECTID_1": 33081, "PARCEL_NO_": "107401037800", "Tax_Legal_": "FRENCHMAN'S BAY 16-67-2 FRENCHMAN'S BAY", "Name": "JONES, HOWARD O. & SHARMAIN S", "Address": "PO Box 368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53900, "Improved_V": 386400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.67205053399999, "SHAPE_Area": 1983.1690953 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361019.419799998402596, 255246.20380000025034 ], [ 361015.460100002586842, 255237.727699998766184 ], [ 360993.612400002777576, 255246.625900000333786 ], [ 360968.863099999725819, 255217.503499999642372 ], [ 360944.479500003159046, 255240.102000001817942 ], [ 360935.54169999808073, 255248.050400000065565 ], [ 360949.988799996674061, 255255.979100000113249 ], [ 360965.161300003528595, 255273.412999998778105 ], [ 360984.602700002491474, 255263.017400000244379 ], [ 361019.419799998402596, 255246.20380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402036300", "MAP": "D9-4301-T88", "PARCEL_NAM": "16-52", "ACRE": ".544", "LONGITUDE": -64.91218033, "LATITUDE": 18.32634889, "OBJECTID_1": 33278, "PARCEL_NO_": "107402036300", "Tax_Legal_": "FRENCHMAN'S BAY EST. 16-52 FRENCHMAN'S BAY QTR.", "Name": "NEWTON, FRANKLIN J", "Address": "1908 Thornhill Rd", "City": "Wesley Chapel", "State": "Florida", "Zip": 33544, "Country": "United States", "Land_Value": 56600, "Improved_V": 537100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.15687286400001, "SHAPE_Area": 2298.3065850399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360788.594999998807907, 255270.067999999970198 ], [ 360806.461599998176098, 255255.226599998772144 ], [ 360834.856899999082088, 255234.982999999076128 ], [ 360834.88570000231266, 255231.605700001120567 ], [ 360786.722699999809265, 255205.880300000309944 ], [ 360771.24099999666214, 255224.752000000327826 ], [ 360756.716600000858307, 255225.899700000882149 ], [ 360765.523100003600121, 255233.359999999403954 ], [ 360773.499899998307228, 255243.557799998670816 ], [ 360779.874799996614456, 255252.475900001823902 ], [ 360786.222900003194809, 255264.560199998319149 ], [ 360788.594999998807907, 255270.067999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9019986, "LATITUDE": 18.32643557, "OBJECTID_1": 33184, "PARCEL_NO_": "107402021700", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-37C FRENCHMAN BAY QTR", "Name": "WARDEN, BARBARA G.", "Address": "4003 RAPHUNE HILL STE. 606", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37600, "Improved_V": 316300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.072712416, "SHAPE_Area": 936.05493291499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361895.069700002670288, 255254.003899998962879 ], [ 361887.141500003635883, 255238.10700000077486 ], [ 361854.035899996757507, 255243.324400000274181 ], [ 361859.397799998521805, 255276.510000001639128 ], [ 361895.069700002670288, 255254.003899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90791079, "LATITUDE": 18.32620425, "OBJECTID_1": 33042, "PARCEL_NO_": "107401033500", "Tax_Legal_": "FRENCHMAN BAY 16-42 FRENCHMAN BAY QTR.", "Name": "CHENER, ELY", "Address": "2869 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.585670327, "SHAPE_Area": 2065.8080815500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361260.040799997746944, 255208.276500001549721 ], [ 361240.779200002551079, 255197.5641999989748 ], [ 361223.101400002837181, 255190.242300000041723 ], [ 361217.113799996674061, 255230.512200001627207 ], [ 361226.791299998760223, 255230.380300000309944 ], [ 361236.450900003314018, 255232.359200000762939 ], [ 361250.10249999910593, 255239.014800000935793 ], [ 361264.511799998581409, 255251.376200001686811 ], [ 361266.903800003230572, 255254.562199998646975 ], [ 361271.680500000715256, 255261.778400000184774 ], [ 361279.007399998605251, 255253.605799999088049 ], [ 361279.88570000231266, 255245.169199999421835 ], [ 361260.040799997746944, 255208.276500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402016100", "MAP": "A9-176-T76", "PARCEL_NAM": "14-104", "ACRE": ".68", "LONGITUDE": -64.90423234, "LATITUDE": 18.32632599, "OBJECTID_1": 33124, "PARCEL_NO_": "107402016100", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-104 FRENCHMAN BAY QTR", "Name": "JOYCELYN W BRADSHAW", "Address": "PO Box 306536", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036536, "Country": "United States", "Land_Value": 181800, "Improved_V": 61100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.92689060399999, "SHAPE_Area": 3631.7956397600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361659.125900000333786, 255216.186900001019239 ], [ 361626.018500000238419, 255221.61540000140667 ], [ 361575.287399999797344, 255213.389800000935793 ], [ 361612.768700003623962, 255262.459100000560284 ], [ 361689.377300001680851, 255262.030699998140335 ], [ 361674.368500001728535, 255225.388700000941753 ], [ 361658.244000002741814, 255225.0456000007689 ], [ 361659.125900000333786, 255216.186900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87570827, "LATITUDE": 18.32630707, "OBJECTID_1": 37982, "PARCEL_NO_": "107601032900", "Tax_Legal_": "2B-8 MARIENDAHL ESTATE 4 RED HOOK QUARTER", "Name": "HODGE, ENA GOMEZ-LIFE ESTATE", "Address": "PO Box 511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27800, "Improved_V": 182900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.023806001, "SHAPE_Area": 1112.39114797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364667.484899997711182, 255239.964499998837709 ], [ 364624.512999996542931, 255267.477099999785423 ], [ 364638.053000003099442, 255287.219700001180172 ], [ 364677.821299999952316, 255257.147700000554323 ], [ 364672.266999997198582, 255246.547499999403954 ], [ 364670.665200002491474, 255245.267900001257658 ], [ 364667.484899997711182, 255239.964499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90354973, "LATITUDE": 18.32615516, "OBJECTID_1": 33189, "PARCEL_NO_": "107402022200", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-107 FRENCHMAN'S BAY QTR.", "Name": "JOYCELYN W. BRADSHAW", "Address": "PO Box 306536", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036536, "Country": "United States", "Land_Value": 70000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.23612133, "SHAPE_Area": 2623.32088922 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361739.737300001084805, 255219.168699998408556 ], [ 361743.194600000977516, 255191.965900000184774 ], [ 361735.925200000405312, 255193.384100001305342 ], [ 361720.61599999666214, 255191.992199998348951 ], [ 361709.302500002086163, 255194.854899998754263 ], [ 361702.004299998283386, 255199.650299999862909 ], [ 361697.11429999768734, 255205.73200000077486 ], [ 361688.998999997973442, 255211.787300001829863 ], [ 361674.368500001728535, 255225.388700000941753 ], [ 361689.377300001680851, 255262.030699998140335 ], [ 361739.737300001084805, 255219.168699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401013400", "MAP": "D9-7011-T002", "PARCEL_NAM": "3H-2", "ACRE": ".547", "LONGITUDE": -64.91337377000001, "LATITUDE": 18.32604964, "OBJECTID_1": 32974, "PARCEL_NO_": "107401013400", "Tax_Legal_": "3H REM.&3H-2 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "DRUE, KERRY E", "Address": "PO Box 9566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 113500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.85455528899999, "SHAPE_Area": 1813.8653931599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360644.547100000083447, 255193.657999999821186 ], [ 360667.031300000846386, 255246.906599998474121 ], [ 360685.165100000798702, 255200.616099998354912 ], [ 360687.643399998545647, 255193.670299999415874 ], [ 360693.406300000846386, 255179.785300001502037 ], [ 360695.045900002121925, 255176.63230000063777 ], [ 360698.316100001335144, 255171.381700001657009 ], [ 360684.648299999535084, 255166.625799998641014 ], [ 360682.992600001394749, 255171.67850000038743 ], [ 360680.553800001740456, 255173.980599999427795 ], [ 360648.961999997496605, 255190.820599999278784 ], [ 360644.547100000083447, 255193.657999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87468829, "LATITUDE": 18.32626855, "OBJECTID_1": 37968, "PARCEL_NO_": "107601031500", "Tax_Legal_": "2B-32 MARIENDAHL RED HOOK QTR", "Name": "LAKE, LESLIE L", "Address": "PO BOX 303454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48800, "Improved_V": 136600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.19534635, "SHAPE_Area": 1436.7181090900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364763.457599997520447, 255238.216899998486042 ], [ 364731.864000000059605, 255255.26799999922514 ], [ 364746.9358000010252, 255284.522199999541044 ], [ 364791.500600002706051, 255259.3445999994874 ], [ 364776.290299996733665, 255246.343499999493361 ], [ 364773.082999996840954, 255244.206300001591444 ], [ 364763.457599997520447, 255238.216899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401038400", "MAP": "D9-6070-T96", "PARCEL_NAM": "16-63-1", "ACRE": null, "LONGITUDE": -64.91087119, "LATITUDE": 18.32611402, "OBJECTID_1": 33086, "PARCEL_NO_": "107401038400", "Tax_Legal_": "16-63-2 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "LOCKHART, HYACINTH", "Address": "PO Box 1077", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57400, "Improved_V": 166000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.90925100800001, "SHAPE_Area": 1966.49245511 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360963.364500001072884, 255200.359900001436472 ], [ 360935.339599996805191, 255177.121300000697374 ], [ 360912.523699998855591, 255205.010099999606609 ], [ 360910.902099996805191, 255206.052200000733137 ], [ 360921.082000002264977, 255241.599300000816584 ], [ 360921.020900003612041, 255248.776000000536442 ], [ 360929.134400002658367, 255242.931800000369549 ], [ 360946.196400001645088, 255227.872699998319149 ], [ 360952.726000003516674, 255218.638000000268221 ], [ 360953.561099998652935, 255215.267299998551607 ], [ 360956.833099998533726, 255209.805700000375509 ], [ 360963.364500001072884, 255200.359900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401037900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91015466, "LATITUDE": 18.32622976, "OBJECTID_1": 33082, "PARCEL_NO_": "107401037900", "Tax_Legal_": "FRENCHMAN'S BAY 16-67-3 FRENCHMAN'S BAY QTR", "Name": "FERGUSON, DWIGHT, BRIAN & ELIZ", "Address": "7457 Frenchmans Bay Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57300, "Improved_V": 212800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.956140086, "SHAPE_Area": 2306.5664327899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361063.952200002968311, 255224.825699999928474 ], [ 361060.797100000083447, 255216.567200001329184 ], [ 361048.704199999570847, 255216.257100000977516 ], [ 361026.869000002741814, 255223.677799999713898 ], [ 361000.485500000417233, 255197.075100000947714 ], [ 360987.534100003540516, 255202.879799999296665 ], [ 360982.667499996721745, 255206.217399999499321 ], [ 360978.608900003135204, 255209.350600000470877 ], [ 360968.863099999725819, 255217.503499999642372 ], [ 360993.612400002777576, 255246.625900000333786 ], [ 361015.460100002586842, 255237.727699998766184 ], [ 361019.419799998402596, 255246.20380000025034 ], [ 361029.945000000298023, 255241.223700001835823 ], [ 361063.952200002968311, 255224.825699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9017944, "LATITUDE": 18.32616216, "OBJECTID_1": 33183, "PARCEL_NO_": "107402021600", "Tax_Legal_": "FRENCHMAN'S BAY 14-37B FRENCHMAN BAY QTR.", "Name": "MORTON, KEVEN", "Address": "PO Box 8114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.700207807, "SHAPE_Area": 1269.15022273 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361916.152500003576279, 255240.244300000369549 ], [ 361896.345399998128414, 255198.9189000017941 ], [ 361871.324500001966953, 255201.669399999082088 ], [ 361887.141500003635883, 255238.10700000077486 ], [ 361895.069700002670288, 255254.003899998962879 ], [ 361905.618299998342991, 255246.279699999839067 ], [ 361916.152500003576279, 255240.244300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87525274, "LATITUDE": 18.32616802, "OBJECTID_1": 37973, "PARCEL_NO_": "107601032000", "Tax_Legal_": "2B-29 MARIENDAHL RED HOOK QTR", "Name": "FRETT, LEROY & NORA", "Address": "PO Box 503322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 47500, "Improved_V": 116100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.317082532, "SHAPE_Area": 1337.23748402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364696.226199999451637, 255273.763599999248981 ], [ 364708.376599997282028, 255267.319200001657009 ], [ 364731.864000000059605, 255255.26799999922514 ], [ 364711.015000000596046, 255241.58729999884963 ], [ 364688.607199996709824, 255221.561099998652935 ], [ 364673.987499997019768, 255233.896000001579523 ], [ 364676.374099999666214, 255237.715199999511242 ], [ 364681.957099996507168, 255244.938099998980761 ], [ 364682.738300003111362, 255247.89979999884963 ], [ 364685.925800003111362, 255252.358899999409914 ], [ 364688.306900002062321, 255256.811299998313189 ], [ 364693.844999998807907, 255269.311200000345707 ], [ 364694.629799999296665, 255271.850699998438358 ], [ 364696.226199999451637, 255273.763599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9030431, "LATITUDE": 18.32606855, "OBJECTID_1": 33187, "PARCEL_NO_": "107402022000", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-108\nFRENCHMANS BAY QTR.", "Name": "YANIQUE JONES & AMOI LEAVENE", "Address": "1784 STEPHENS POND VIEW", "City": "Loganville", "State": "Georgia", "Zip": 300528751, "Country": "United States", "Land_Value": 66600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.26189415499999, "SHAPE_Area": 2097.9763015399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361790.615900002419949, 255210.085900001227856 ], [ 361768.197400003671646, 255191.326200000941753 ], [ 361770.828599996864796, 255166.438700001686811 ], [ 361765.920500002801418, 255174.631099998950958 ], [ 361759.408900000154972, 255181.754999998956919 ], [ 361748.856700003147125, 255189.901299998164177 ], [ 361743.194600000977516, 255191.965900000184774 ], [ 361739.737300001084805, 255219.168699998408556 ], [ 361757.224500000476837, 255248.864900000393391 ], [ 361780.771200001239777, 255229.848099999129772 ], [ 361784.082699999213219, 255219.74269999936223 ], [ 361790.615900002419949, 255210.085900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021200", "MAP": "A9-400-T92", "PARCEL_NAM": "2-5-4", "ACRE": "9.06", "LONGITUDE": -64.88676711, "LATITUDE": 18.32498332, "OBJECTID_1": 37501, "PARCEL_NO_": "107502021200", "Tax_Legal_": "EST. BOVONI 2-5-4 FRENCHMAN BAY QTR.", "Name": "RAD HOLDING COMPANY INC", "Address": "PO Box 7068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 445900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 786.3657139, "SHAPE_Area": 34320.265436399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363591.85360000282526, 255043.07660000026226 ], [ 363397.3445999994874, 254968.868500001728535 ], [ 363405.541500002145767, 255047.884500000625849 ], [ 363405.521700002253056, 255050.206399999558926 ], [ 363407.717699997127056, 255076.399999998509884 ], [ 363421.105599999427795, 255208.654100000858307 ], [ 363447.607799999415874, 255221.325500000268221 ], [ 363466.8783999979496, 255230.982500001788139 ], [ 363498.168200001120567, 255249.603700000792742 ], [ 363513.39639999717474, 255260.494100000709295 ], [ 363591.85360000282526, 255043.07660000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90624334, "LATITUDE": 18.32574377, "OBJECTID_1": 33194, "PARCEL_NO_": "107402022700", "Tax_Legal_": "14-26 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR", "Name": "BIDDLE, GARDINER S. & VIRGINIA", "Address": "4158 Fair Hope Rd NE", "City": "Townsend", "State": "Georgia", "Zip": 31331, "Country": "United States", "Land_Value": 115200, "Improved_V": 340600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.41242026099999, "SHAPE_Area": 2498.1370057300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361428.290299996733665, 255241.317600000649691 ], [ 361427.667400002479553, 255219.780900001525879 ], [ 361430.178099997341633, 255209.035700000822544 ], [ 361434.292400002479553, 255199.359099999070168 ], [ 361447.375, 255178.145700000226498 ], [ 361449.070299997925758, 255168.449299998581409 ], [ 361446.696299999952316, 255163.152499999850988 ], [ 361437.911399997770786, 255153.159200001507998 ], [ 361430.766099996864796, 255140.012899998575449 ], [ 361429.164300002157688, 255138.733300000429153 ], [ 361427.580399997532368, 255135.342799998819828 ], [ 361421.999099999666214, 255127.9087999984622 ], [ 361399.976999998092651, 255157.281700000166893 ], [ 361401.548199996352196, 255162.149700000882149 ], [ 361428.290299996733665, 255241.317600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601033000", "MAP": null, "PARCEL_NAM": "2B-7", "ACRE": null, "LONGITUDE": -64.87580756, "LATITUDE": 18.32615298, "OBJECTID_1": 37983, "PARCEL_NO_": "107601033000", "Tax_Legal_": "2B-7 MARIENDAHL RED HOOK QTR", "Name": "SMITH, LLOYD", "Address": "2B-7 MARIENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23900, "Improved_V": 199000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.49203361299999, "SHAPE_Area": 915.71485426900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364654.709799997508526, 255225.083399999886751 ], [ 364614.955899998545647, 255253.466699998825788 ], [ 364624.512999996542931, 255267.477099999785423 ], [ 364667.484899997711182, 255239.964499998837709 ], [ 364664.299199998378754, 255235.294399999082088 ], [ 364654.709799997508526, 255225.083399999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401013200", "MAP": "D9-9405-T019", "PARCEL_NAM": "CONS 3b, 3c, & 3f", "ACRE": "0.32", "LONGITUDE": -64.91397157, "LATITUDE": 18.32606993, "OBJECTID_1": 32972, "PARCEL_NO_": "107401013200", "Tax_Legal_": "FRENCHMAN BAY 3F FRENCHMAN BAY QTR", "Name": "KHIANI, ROHIT", "Address": "P.O. BOX 4395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.57008016399999, "SHAPE_Area": 1565.26891916 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360625.715599998831749, 255174.587200000882149 ], [ 360623.284199997782707, 255172.306499999016523 ], [ 360605.898400001227856, 255188.322000000625849 ], [ 360587.895300000905991, 255204.906199999153614 ], [ 360572.925899997353554, 255218.695900000631809 ], [ 360592.963200002908707, 255233.003199998289347 ], [ 360606.787399999797344, 255219.395199999213219 ], [ 360623.044900000095367, 255204.118500001728535 ], [ 360631.991700001060963, 255195.114700000733137 ], [ 360640.915100000798702, 255188.854899998754263 ], [ 360625.715599998831749, 255174.587200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90206936, "LATITUDE": 18.32615314, "OBJECTID_1": 33185, "PARCEL_NO_": "107402021800", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-37 FRENCHMAN BAY QTR.", "Name": "MORTON, KEVEN & JANE R", "Address": "PO Box 8114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40200, "Improved_V": 198400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.859391905, "SHAPE_Area": 1132.0488370600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361871.324500001966953, 255201.669399999082088 ], [ 361847.117200002074242, 255203.58219999819994 ], [ 361854.035899996757507, 255243.324400000274181 ], [ 361887.141500003635883, 255238.10700000077486 ], [ 361871.324500001966953, 255201.669399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90849554, "LATITUDE": 18.32610362, "OBJECTID_1": 33044, "PARCEL_NO_": "107401033700", "Tax_Legal_": "16-41 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QUARTER", "Name": "MARKS, JANEAL", "Address": "PO BOX 9634", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.971084131, "SHAPE_Area": 2775.91242779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361223.101400002837181, 255190.242300000041723 ], [ 361205.366200000047684, 255189.675000000745058 ], [ 361179.533600002527237, 255193.052099999040365 ], [ 361146.449600003659725, 255195.736699998378754 ], [ 361155.796300001442432, 255234.443300001323223 ], [ 361214.694899998605251, 255230.492400001734495 ], [ 361217.113799996674061, 255230.512200001627207 ], [ 361223.101400002837181, 255190.242300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401036600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9122446, "LATITUDE": 18.32582834, "OBJECTID_1": 33070, "PARCEL_NO_": "107401036600", "Tax_Legal_": "FRENCHMAN'S BAY 16-54\nFRENCHMAN'S BAY QTR", "Name": "MALA, KELLEY & ELEUTHERE", "Address": "PO Box 6493", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.19568878500002, "SHAPE_Area": 2701.7848055899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360834.167499996721745, 255221.25620000064373 ], [ 360786.834200002253056, 255192.793400000780821 ], [ 360811.277199998497963, 255163.229200001806021 ], [ 360816.195900000631809, 255153.770300000905991 ], [ 360810.68299999833107, 255138.31529999896884 ], [ 360808.292900003492832, 255134.918299999088049 ], [ 360789.650600001215935, 255146.164799999445677 ], [ 360745.856200002133846, 255175.570500001311302 ], [ 360786.722699999809265, 255205.880300000309944 ], [ 360834.88570000231266, 255231.605700001120567 ], [ 360834.167499996721745, 255221.25620000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90158257, "LATITUDE": 18.3260697, "OBJECTID_1": 33182, "PARCEL_NO_": "107402021500", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-37A FRENCHMAN BAY QTR.", "Name": "FRITH, JOSEPH S. & OLGA T", "Address": "PO Box 12132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.19082605299999, "SHAPE_Area": 974.94876836200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361928.299400001764297, 255234.221999999135733 ], [ 361929.449100002646446, 255193.912500001490116 ], [ 361896.345399998128414, 255198.9189000017941 ], [ 361916.152500003576279, 255240.244300000369549 ], [ 361928.299400001764297, 255234.221999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802022000", "MAP": "A9-406-T92", "PARCEL_NAM": "6M-7", "ACRE": null, "LONGITUDE": -64.8368988, "LATITUDE": 18.32594533, "OBJECTID_1": 40155, "PARCEL_NO_": "107802022000", "Tax_Legal_": "6M-7 ESTATE NAZARETH No.1 RED HOOK QUARTER", "Name": "CABRITA GRAND ESTATES LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 239500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.8584929, "SHAPE_Area": 2387.4991073199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368722.622699998319149, 255250.566899999976158 ], [ 368736.807199999690056, 255289.313099998980761 ], [ 368747.368400000035763, 255280.111400000751019 ], [ 368757.062200002372265, 255278.079799998551607 ], [ 368767.511900000274181, 255281.964999999850988 ], [ 368775.513800002634525, 255289.207699999213219 ], [ 368781.100500002503395, 255296.008400000631809 ], [ 368776.588100001215935, 255257.7635000012815 ], [ 368775.040200002491474, 255250.151500001549721 ], [ 368774.32379999756813, 255239.590999998152256 ], [ 368772.01630000025034, 255226.484299998730421 ], [ 368759.900100000202656, 255228.918200001120567 ], [ 368746.957699999213219, 255233.667500000447035 ], [ 368722.622699998319149, 255250.566899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401036400", "MAP": "D9-4301-T88", "PARCEL_NAM": "16-53", "ACRE": ".545", "LONGITUDE": -64.91262272, "LATITUDE": 18.32604999, "OBJECTID_1": 33068, "PARCEL_NO_": "107401036400", "Tax_Legal_": "FRENCHMANS BAY 16-53 FRENCHMANS BAY QTR.", "Name": "NEWTON, FRANKLIN J.", "Address": "1908 Thornhill Rd", "City": "Wesley Chapel", "State": "Florida", "Zip": 33544, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.44671532000001, "SHAPE_Area": 2099.1675804299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360756.716600000858307, 255225.899700000882149 ], [ 360771.24099999666214, 255224.752000000327826 ], [ 360786.722699999809265, 255205.880300000309944 ], [ 360745.856200002133846, 255175.570500001311302 ], [ 360738.55799999833107, 255180.365899998694658 ], [ 360734.504799999296665, 255182.865899998694658 ], [ 360715.902099996805191, 255189.468600001186132 ], [ 360712.6570999994874, 255191.76410000026226 ], [ 360712.626500003039837, 255195.352400001138449 ], [ 360714.215800002217293, 255198.109700001776218 ], [ 360724.60249999910593, 255209.382599998265505 ], [ 360733.428800001740456, 255214.521099999547005 ], [ 360746.290200002491474, 255219.270399998873472 ], [ 360752.706600002944469, 255223.333700001239777 ], [ 360756.716600000858307, 255225.899700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90133635, "LATITUDE": 18.32605445, "OBJECTID_1": 33181, "PARCEL_NO_": "107402021400", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-35 4 FRENCHMAN BAY QTR", "Name": "WILLIAMS, KAREN YVONNE", "Address": "PO Box 43070", "City": "Jacksonville", "State": "Florida", "Zip": 32203, "Country": "United States", "Land_Value": 38900, "Improved_V": 228000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.523593147, "SHAPE_Area": 947.46075531099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361928.299400001764297, 255234.221999999135733 ], [ 361963.917400002479553, 255218.048200000077486 ], [ 361965.548000000417233, 255215.950599998235703 ], [ 361964.765000000596046, 255213.199999999254942 ], [ 361959.970299996435642, 255208.094500001519918 ], [ 361944.756499998271465, 255195.515399999916553 ], [ 361937.521200001239777, 255192.923099998384714 ], [ 361929.449100002646446, 255193.912500001490116 ], [ 361928.299400001764297, 255234.221999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401039000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91159135, "LATITUDE": 18.32585781, "OBJECTID_1": 33092, "PARCEL_NO_": "107401039000", "Tax_Legal_": "16-60 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "KUNTZ, CHERYL MITCHAM", "Address": "PO Box 9603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.60573125299999, "SHAPE_Area": 2887.9105394799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360869.752400003373623, 255114.311900001019239 ], [ 360840.36370000243187, 255156.501200001686811 ], [ 360840.785199999809265, 255201.678700000047684 ], [ 360842.201899997889996, 255224.699499998241663 ], [ 360867.20830000191927, 255223.637600000947714 ], [ 360892.454000003635883, 255194.502199999988079 ], [ 360868.32209999859333, 255187.549699999392033 ], [ 360869.752400003373623, 255114.311900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87490591, "LATITUDE": 18.32608872, "OBJECTID_1": 37974, "PARCEL_NO_": "107601032100", "Tax_Legal_": "MARIENDAHL ESTATE 2B-30A RED HOOK QTR", "Name": "FORBES, CLARENCE E. & VALERIE", "Address": "PO Box 10997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 133900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.70786615599999, "SHAPE_Area": 796.91213995500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364737.770700000226498, 255224.496599998325109 ], [ 364711.015000000596046, 255241.58729999884963 ], [ 364731.864000000059605, 255255.26799999922514 ], [ 364763.457599997520447, 255238.216899998486042 ], [ 364737.770700000226498, 255224.496599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401038000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90972807, "LATITUDE": 18.3260635, "OBJECTID_1": 33083, "PARCEL_NO_": "107401038000", "Tax_Legal_": "FRENCHMAN'S BAY 16-67 FRENCHMAN'S BAY QTR.", "Name": "WEBSTER, FREIDA S", "Address": "PO Box 1346", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53900, "Improved_V": 390200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.388766788, "SHAPE_Area": 2231.4183047800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361063.952200002968311, 255224.825699999928474 ], [ 361081.764799997210503, 255216.316599998623133 ], [ 361129.479299999773502, 255200.030699998140335 ], [ 361123.842299997806549, 255199.1402000002563 ], [ 361114.162900000810623, 255199.483199998736382 ], [ 361081.120300002396107, 255197.312899999320507 ], [ 361050.509199999272823, 255193.684900000691414 ], [ 361028.742399998009205, 255193.084499999880791 ], [ 361014.221500001847744, 255193.810100000351667 ], [ 361000.485500000417233, 255197.075100000947714 ], [ 361026.869000002741814, 255223.677799999713898 ], [ 361048.704199999570847, 255216.257100000977516 ], [ 361060.797100000083447, 255216.567200001329184 ], [ 361063.952200002968311, 255224.825699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601033100", "MAP": null, "PARCEL_NAM": "2B-6", "ACRE": null, "LONGITUDE": -64.87591783000001, "LATITUDE": 18.32603189, "OBJECTID_1": 37984, "PARCEL_NO_": "107601033100", "Tax_Legal_": "2B-6 MARIENDAHL RED HOOK QTR", "Name": "SLACK, RUDOLPH", "Address": "PO Box 7673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.36291213199999, "SHAPE_Area": 814.01768953500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364641.103100001811981, 255213.150800000876188 ], [ 364605.396999999880791, 255239.667399998754263 ], [ 364614.955899998545647, 255253.466699998825788 ], [ 364654.709799997508526, 255225.083399999886751 ], [ 364647.519500002264977, 255217.214099999517202 ], [ 364641.103100001811981, 255213.150800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401036800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91198158, "LATITUDE": 18.3258344, "OBJECTID_1": 33072, "PARCEL_NO_": "107401036800", "Tax_Legal_": "FRENCHMAN'S BAY 16-55 FRENCHMAN'S BAY QTR", "Name": "HENRY, LEROY G.", "Address": "PO BOX 9235", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.11241156400001, "SHAPE_Area": 2205.1218084900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360808.292900003492832, 255134.918299999088049 ], [ 360810.68299999833107, 255138.31529999896884 ], [ 360816.195900000631809, 255153.770300000905991 ], [ 360811.277199998497963, 255163.229200001806021 ], [ 360786.834200002253056, 255192.793400000780821 ], [ 360834.167499996721745, 255221.25620000064373 ], [ 360832.309600003063679, 255155.379799999296665 ], [ 360829.962600000202656, 255146.916900001466274 ], [ 360826.839800000190735, 255134.859000001102686 ], [ 360823.641599997878075, 255131.666400000452995 ], [ 360815.587399996817112, 255130.545000001788139 ], [ 360808.292900003492832, 255134.918299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91433756000001, "LATITUDE": 18.32605855, "OBJECTID_1": 32971, "PARCEL_NO_": "107401013100", "Tax_Legal_": "3E FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "NIRMAL & BASANT BHAGWANDAS DADLANI", "Address": "5126 Drakes Psge", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 258600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.87759882100001, "SHAPE_Area": 758.674858567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360587.895300000905991, 255204.906199999153614 ], [ 360577.237899996340275, 255185.800599999725819 ], [ 360562.672200001776218, 255191.803100001066923 ], [ 360544.904500000178814, 255195.035199999809265 ], [ 360544.067699998617172, 255198.616900000721216 ], [ 360572.925899997353554, 255218.695900000631809 ], [ 360587.895300000905991, 255204.906199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87431726, "LATITUDE": 18.32593576, "OBJECTID_1": 37967, "PARCEL_NO_": "107601031400", "Tax_Legal_": "MARIENDAL 2B-18 RED HOOK QTR", "Name": "JOSEPH, ISAAC D", "Address": "745 NW 127 St.", "City": "North Miami", "State": "Florida", "Zip": 331682733, "Country": "United States", "Land_Value": 30100, "Improved_V": 106800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.19705897399999, "SHAPE_Area": 1140.81292497 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364821.742299996316433, 255211.673900000751019 ], [ 364800.092399999499321, 255197.353500001132488 ], [ 364776.381999999284744, 255235.578400000929832 ], [ 364781.198299996554852, 255238.151000000536442 ], [ 364795.607600003480911, 255250.512299999594688 ], [ 364821.742299996316433, 255211.673900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90431304000001, "LATITUDE": 18.32596976, "OBJECTID_1": 33227, "PARCEL_NO_": "107402026200", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-101 FRENCHMAN'S BAY", "Name": "RALPH C. EVERT III TRUST", "Address": "104 W North Ln", "City": "Conshohocken", "State": "Pennsylvania", "Zip": 19428, "Country": "United States", "Land_Value": 82100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.33765950899999, "SHAPE_Area": 3064.41393883 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361685.113099999725819, 255194.656899999827147 ], [ 361608.6824000030756, 255174.1886 ], [ 361592.392499998211861, 255193.264800000935793 ], [ 361575.287399999797344, 255213.389800000935793 ], [ 361626.018500000238419, 255221.61540000140667 ], [ 361659.125900000333786, 255216.186900001019239 ], [ 361670.487999998033047, 255207.625 ], [ 361685.113099999725819, 255194.656899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601045700", "MAP": "D9-5063-T91", "PARCEL_NAM": "2-K", "ACRE": "0.35", "LONGITUDE": -64.87399791, "LATITUDE": 18.32574584, "OBJECTID_1": 38057, "PARCEL_NO_": "107601045700", "Tax_Legal_": "2K MARIENDAHL RED HOOK QTR.", "Name": "HENDRICKSON, WESTON M. & ELLIOTT, ALICE", "Address": "670 E 85th St", "City": "Brooklyn", "State": "New York", "Zip": 11236, "Country": "United States", "Land_Value": 34800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.21326428500001, "SHAPE_Area": 2152.5261023799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364793.677799999713898, 255193.079100001603365 ], [ 364800.092399999499321, 255197.353500001132488 ], [ 364821.742299996316433, 255211.673900000751019 ], [ 364841.790399998426437, 255224.714699998497963 ], [ 364858.62950000166893, 255235.8293999992311 ], [ 364872.26129999756813, 255244.80689999833703 ], [ 364864.388800002634525, 255222.366500001400709 ], [ 364862.792300000786781, 255220.453600000590086 ], [ 364859.630000002682209, 255213.039500001817942 ], [ 364852.472099997103214, 255201.370799999684095 ], [ 364838.910400003194809, 255184.161200001835823 ], [ 364830.917400002479553, 255175.863099999725819 ], [ 364807.545199997723103, 255174.405299998819828 ], [ 364793.677799999713898, 255193.079100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87513972000001, "LATITUDE": 18.32594512, "OBJECTID_1": 37977, "PARCEL_NO_": "107601032400", "Tax_Legal_": "ESTATE MARIENDAHL 2B-30 RED HOOK QTR", "Name": "FAIKA MANAGEMENT LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 163900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.42006466700001, "SHAPE_Area": 860.48187957699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364707.283699996769428, 255206.304200001060963 ], [ 364688.607199996709824, 255221.561099998652935 ], [ 364711.015000000596046, 255241.58729999884963 ], [ 364737.770700000226498, 255224.496599998325109 ], [ 364732.956200003623962, 255221.712999999523163 ], [ 364707.283699996769428, 255206.304200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601033700", "MAP": "F9-3616-T78", "PARCEL_NAM": "2B-5", "ACRE": ".22", "LONGITUDE": -64.87606742, "LATITUDE": 18.32589535, "OBJECTID_1": 37989, "PARCEL_NO_": "107601033700", "Tax_Legal_": "2B-5 MARIENDAHL NO. 4 RED HOOK QUARTER", "Name": "ANGOL, LESTER & BENOIT, AGNES", "Address": "PO Box 307967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 158900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.57695476699999, "SHAPE_Area": 1050.00728129 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364605.224600002169609, 255239.420699998736382 ], [ 364605.396999999880791, 255239.667399998754263 ], [ 364605.561999998986721, 255239.544900000095367 ], [ 364641.103100001811981, 255213.150800000876188 ], [ 364616.240500003099442, 255197.326400000602007 ], [ 364590.260499998927116, 255218.011999998241663 ], [ 364605.224600002169609, 255239.420699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91412365, "LATITUDE": 18.32594749, "OBJECTID_1": 32976, "PARCEL_NO_": "107401013600", "Tax_Legal_": "3D ESTATE FRENCHMAN'S BAY FRENCHMAN BAY QTR", "Name": "GRIFFITH, HUGH & LEONTINE", "Address": "PO Box 10076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013076, "Country": "United States", "Land_Value": 14300, "Improved_V": 137400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.315668248799994, "SHAPE_Area": 417.77100782700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360605.898400001227856, 255188.322000000625849 ], [ 360592.645999997854233, 255175.583099998533726 ], [ 360584.527099996805191, 255182.060600001364946 ], [ 360577.237899996340275, 255185.800599999725819 ], [ 360587.895300000905991, 255204.906199999153614 ], [ 360605.898400001227856, 255188.322000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401012700", "MAP": "C9-104-T70", "PARCEL_NAM": "102", "ACRE": ".501", "LONGITUDE": -64.91477802, "LATITUDE": 18.32540274, "OBJECTID_1": 32968, "PARCEL_NO_": "107401012700", "Tax_Legal_": "FRENCHMAN BAY 102 FRENCHMAN BAY QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 248000, "Improved_V": 60500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.46940216900001, "SHAPE_Area": 1855.12510677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360497.903599999845028, 255098.590599998831749 ], [ 360500.343000002205372, 255102.822599999606609 ], [ 360516.279799997806549, 255144.564800001680851 ], [ 360530.827399998903275, 255181.99100000038743 ], [ 360531.70719999819994, 255183.076900001615286 ], [ 360533.747400000691414, 255179.534000001847744 ], [ 360536.218500003218651, 255173.432500001043081 ], [ 360537.892300002276897, 255166.269099999219179 ], [ 360538.819099999964237, 255152.133400000631809 ], [ 360528.012599997222424, 255095.471900001168251 ], [ 360528.082699999213219, 255087.239799998700619 ], [ 360497.903599999845028, 255098.590599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87451936, "LATITUDE": 18.3258157, "OBJECTID_1": 37975, "PARCEL_NO_": "107601032200", "Tax_Legal_": "2B-17 MARIENDAHL RED HOOK QTR", "Name": "Alice Rogers (Life Estate),David Jr&Daniel Hodge,J Ahimbisibwe", "Address": "7054 Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84900, "Improved_V": 45800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.53208126600001, "SHAPE_Area": 1140.90059053 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364793.677799999713898, 255193.079100001603365 ], [ 364779.243299998342991, 255183.672800000756979 ], [ 364754.712300002574921, 255223.579799998551607 ], [ 364776.381999999284744, 255235.578400000929832 ], [ 364800.092399999499321, 255197.353500001132488 ], [ 364793.677799999713898, 255193.079100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401038100", "MAP": "D9-6046-T96", "PARCEL_NAM": "16-63-4", "ACRE": null, "LONGITUDE": -64.91006044, "LATITUDE": 18.32577793, "OBJECTID_1": 33084, "PARCEL_NO_": "107401038100", "Tax_Legal_": "16-63-4 ESTATE FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "McBRIDE, JR. , ROBERT J", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.55133351399999, "SHAPE_Area": 2229.6322137400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361060.238899998366833, 255187.431699998676777 ], [ 361055.676100000739098, 255155.096999999135733 ], [ 361015.353299997746944, 255155.611400000751019 ], [ 361007.239900000393391, 255161.455600000917912 ], [ 361001.570500001311302, 255164.364500001072884 ], [ 360998.368600003421307, 255161.594099998474121 ], [ 360992.708200000226498, 255163.447599999606609 ], [ 360987.802000001072884, 255171.429000001400709 ], [ 360982.035599999129772, 255185.736200001090765 ], [ 360972.22860000282526, 255201.065699998289347 ], [ 360973.00789999961853, 255204.238499999046326 ], [ 360977.064599998295307, 255201.316399998962879 ], [ 360989.229500003159046, 255193.183299999684095 ], [ 361001.360100001096725, 255189.060699999332428 ], [ 361015.900700002908707, 255186.013399999588728 ], [ 361044.933300003409386, 255185.61769999936223 ], [ 361060.238899998366833, 255187.431699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87560673, "LATITUDE": 18.32582667, "OBJECTID_1": 37981, "PARCEL_NO_": "107601032800", "Tax_Legal_": "EST MARIENDAHL 2B-28 & 2B-28-A-1 RED HOOK QTR", "Name": "CONNOR, MICHAEL", "Address": "PO Box 6454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24300, "Improved_V": 145200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.792173983, "SHAPE_Area": 699.55277410899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364671.798799999058247, 255206.8581000007689 ], [ 364649.380199998617172, 255188.098400000482798 ], [ 364645.321699999272823, 255191.231600001454353 ], [ 364643.671300001442432, 255195.651000000536442 ], [ 364643.606600001454353, 255203.249899998307228 ], [ 364645.203000001609325, 255205.162799999117851 ], [ 364653.224799998104572, 255210.083599999547005 ], [ 364658.021300002932549, 255214.978000000119209 ], [ 364670.008100003004074, 255227.741700001060963 ], [ 364673.987499997019768, 255233.896000001579523 ], [ 364688.607199996709824, 255221.561099998652935 ], [ 364678.91889999806881, 255222.959499999880791 ], [ 364671.798799999058247, 255206.8581000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90274367000001, "LATITUDE": 18.32570641, "OBJECTID_1": 33186, "PARCEL_NO_": "107402021900", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-109 FRENCHMAN BAY QTR", "Name": "BALKARRAN, P", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 68200, "Improved_V": 249200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.20018360200001, "SHAPE_Area": 2444.1787119199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361790.615900002419949, 255210.085900001227856 ], [ 361801.225699998438358, 255195.185100000351667 ], [ 361811.786899998784065, 255185.983399998396635 ], [ 361822.322899997234344, 255179.736800000071526 ], [ 361824.001999996602535, 255171.940099999308586 ], [ 361810.512299999594688, 255146.287399999797344 ], [ 361806.51129999756813, 255142.666000001132488 ], [ 361800.082400001585484, 255140.080299999564886 ], [ 361791.205700002610683, 255140.852000001817942 ], [ 361786.342699997127056, 255143.767499998211861 ], [ 361783.086900003254414, 255147.329500000923872 ], [ 361770.828599996864796, 255166.438700001686811 ], [ 361768.197400003671646, 255191.326200000941753 ], [ 361790.615900002419949, 255210.085900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401038400", "MAP": "D9-6155-T96", "PARCEL_NAM": "16-63-2", "ACRE": ".54", "LONGITUDE": -64.91055315, "LATITUDE": 18.32567013, "OBJECTID_1": 33086, "PARCEL_NO_": "107401038400", "Tax_Legal_": "16-63-2 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "LOCKHART, HYACINTH", "Address": "PO Box 1077", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57400, "Improved_V": 166000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.40031994200001, "SHAPE_Area": 2148.9535363199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361000.90259999781847, 255148.104899998754263 ], [ 360993.847199998795986, 255124.404599998146296 ], [ 360967.931900002062321, 255137.491399999707937 ], [ 360935.339599996805191, 255177.121300000697374 ], [ 360963.364500001072884, 255200.359900001436472 ], [ 360967.440999999642372, 255195.115899998694658 ], [ 360973.999399997293949, 255182.504000000655651 ], [ 360975.624600000679493, 255181.039700001478195 ], [ 360981.405500002205372, 255165.0439000017941 ], [ 360984.679300002753735, 255159.371100001037121 ], [ 360987.935099996626377, 255155.809200000017881 ], [ 360993.62610000371933, 255150.367300000041723 ], [ 361000.90259999781847, 255148.104899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401036500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91287003, "LATITUDE": 18.32565134, "OBJECTID_1": 33069, "PARCEL_NO_": "107401036500", "Tax_Legal_": "FRENCHMAN'S BAY 16-56 FRENCHMAN'S BAY QTR.", "Name": "JEFFREY, ROLSTON & HEATHER", "Address": "PO Box 11391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.596380831, "SHAPE_Area": 2083.33540696 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360727.742499999701977, 255124.759799998253584 ], [ 360706.488899998366833, 255158.571899998933077 ], [ 360698.316100001335144, 255171.381700001657009 ], [ 360695.045900002121925, 255176.63230000063777 ], [ 360693.406300000846386, 255179.785300001502037 ], [ 360687.643399998545647, 255193.670299999415874 ], [ 360699.76690000295639, 255190.392000000923872 ], [ 360706.249700002372265, 255186.645399998873472 ], [ 360709.493000000715256, 255184.561000000685453 ], [ 360716.785800002515316, 255180.398800000548363 ], [ 360730.528999999165535, 255176.28940000012517 ], [ 360742.690200001001358, 255168.578499998897314 ], [ 360752.520599998533726, 255150.504900000989437 ], [ 360733.467600002884865, 255115.307500001043081 ], [ 360727.742499999701977, 255124.759799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87472053, "LATITUDE": 18.32570374, "OBJECTID_1": 37976, "PARCEL_NO_": "107601032300", "Tax_Legal_": "2B-16 MARIENDAHL RED HOOK QTR", "Name": "IVOR PENHA", "Address": "PO Box 8163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.412932799, "SHAPE_Area": 1166.8562571 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364779.243299998342991, 255183.672800000756979 ], [ 364759.196999996900558, 255170.421000000089407 ], [ 364733.042499996721745, 255211.581199999898672 ], [ 364737.054300002753735, 255213.936099998652935 ], [ 364754.712300002574921, 255223.579799998551607 ], [ 364779.243299998342991, 255183.672800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91396487, "LATITUDE": 18.32580629, "OBJECTID_1": 32978, "PARCEL_NO_": "107401013900", "Tax_Legal_": "FRENCHMAN BAY 3A FRENCHMAN BAY QTR", "Name": "MURRAY, GEORGE A. & ELLENOR", "Address": "399 Grand Ave", "City": "Brooklyn", "State": "New York", "Zip": 11238, "Country": "United States", "Land_Value": 14300, "Improved_V": 157000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.191890389500003, "SHAPE_Area": 433.24818182000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360623.284199997782707, 255172.306499999016523 ], [ 360608.91610000282526, 255158.82880000025034 ], [ 360602.393700003623962, 255167.219200000166893 ], [ 360592.645999997854233, 255175.583099998533726 ], [ 360605.898400001227856, 255188.322000000625849 ], [ 360623.284199997782707, 255172.306499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91364693, "LATITUDE": 18.32569065, "OBJECTID_1": 32980, "PARCEL_NO_": "107401014100", "Tax_Legal_": "3 FRENCHMANS BAY FRENCHMANS BAY QTR", "Name": "ESQUERDO (LIFE ESTATE), ANGELICA Q.", "Address": "PO Box 11084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81900, "Improved_V": 146600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.856580041, "SHAPE_Area": 2073.4646917300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360640.915100000798702, 255188.854899998754263 ], [ 360677.371699996292591, 255168.888300001621246 ], [ 360679.027500003576279, 255163.83559999987483 ], [ 360677.43469999730587, 255161.500500001013279 ], [ 360641.328599996864796, 255140.306800000369549 ], [ 360633.292499996721745, 255137.074599999934435 ], [ 360624.437399998307228, 255135.313400000333786 ], [ 360621.197800002992153, 255136.975600000470877 ], [ 360608.91610000282526, 255158.82880000025034 ], [ 360625.715599998831749, 255174.587200000882149 ], [ 360640.915100000798702, 255188.854899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87543162, "LATITUDE": 18.32574355, "OBJECTID_1": 37980, "PARCEL_NO_": "107601032700", "Tax_Legal_": "EST. MARIENDAHL 2B-28A & 2B-28-1 RED HOOK QTR", "Name": "CONNOR, HARVEY", "Address": "BOX 4872", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23000, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.976867226, "SHAPE_Area": 834.69552041999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364649.380199998617172, 255188.098400000482798 ], [ 364665.477700002491474, 255191.607599999755621 ], [ 364671.798799999058247, 255206.8581000007689 ], [ 364688.607199996709824, 255221.561099998652935 ], [ 364707.283699996769428, 255206.304200001060963 ], [ 364669.575800001621246, 255183.830699998885393 ], [ 364658.294600002467632, 255182.894000001251698 ], [ 364652.623499996960163, 255186.013999998569489 ], [ 364649.380199998617172, 255188.098400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90329046, "LATITUDE": 18.32534001, "OBJECTID_1": 33246, "PARCEL_NO_": "107402028100", "Tax_Legal_": "14-112A&113 ESTATE FRENCHMAN'S No.4 FRENCHMAN'S BAY QTR.", "Name": "SAKRANI, VEERA K. , TRUSTEE", "Address": "PO Box 6108", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65100, "Improved_V": 344000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.20868101100001, "SHAPE_Area": 3043.8121801699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361751.435000002384186, 255076.565200001001358 ], [ 361744.10980000346899, 255084.526799999177456 ], [ 361740.821599997580051, 255091.888099998235703 ], [ 361738.377499997615814, 255094.823399998247623 ], [ 361734.27759999781847, 255102.8114 ], [ 361730.165200002491474, 255112.276999998837709 ], [ 361712.833400003612041, 255158.997900001704693 ], [ 361707.909199997782707, 255169.09010000154376 ], [ 361703.024599999189377, 255174.538600001484156 ], [ 361693.221199996769428, 255189.445999998599291 ], [ 361692.355499997735023, 255196.405000001192093 ], [ 361693.964500002563, 255196.840300001204014 ], [ 361699.651900000870228, 255191.820599999278784 ], [ 361704.514899998903275, 255188.905099999159575 ], [ 361711.798699997365475, 255185.798300001770258 ], [ 361719.066299997270107, 255184.5912000015378 ], [ 361772.165299996733665, 255104.177000001072884 ], [ 361755.500699996948242, 255072.587699998170137 ], [ 361751.435000002384186, 255076.565200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401038600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9094596, "LATITUDE": 18.32573781, "OBJECTID_1": 33088, "PARCEL_NO_": "107401038600", "Tax_Legal_": "FRENCHMANS BAY 16-63-5 FRENCHMANS BAY QTR", "Name": "WILLIAMS, EDWARD", "Address": "7167 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.363140348, "SHAPE_Area": 1991.68557835 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361107.957000002264977, 255170.723700001835823 ], [ 361100.91780000180006, 255145.123700000345707 ], [ 361055.676100000739098, 255155.096999999135733 ], [ 361060.238899998366833, 255187.431699998676777 ], [ 361081.185000002384186, 255189.714099999517202 ], [ 361107.782600000500679, 255191.198300000280142 ], [ 361114.231299996376038, 255191.462200000882149 ], [ 361107.957000002264977, 255170.723700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402038300", "MAP": "D9-5049-T91", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90002535000001, "LATITUDE": 18.32566314, "OBJECTID_1": 33288, "PARCEL_NO_": "107402038300", "Tax_Legal_": "ESTATE BOLONGO 60V FRENCHMAN'S BAY QTR.", "Name": "HILL, E. & G. & CALLWOOD, P", "Address": "PO Box 8029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.681831563, "SHAPE_Area": 1698.9234471100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362081.469200000166893, 255144.28319999948144 ], [ 362053.095499999821186, 255161.993900001049042 ], [ 362072.996100001037121, 255192.343100000172853 ], [ 362076.973700001835823, 255198.708500001579523 ], [ 362109.391699999570847, 255179.553199999034405 ], [ 362089.532399997115135, 255144.349199999123812 ], [ 362083.862999998033047, 255147.258099999278784 ], [ 362083.072899997234344, 255145.351799998432398 ], [ 362081.469200000166893, 255144.28319999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402026300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9040409, "LATITUDE": 18.3256371, "OBJECTID_1": 33228, "PARCEL_NO_": "107402026300", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-100 FRENCHMAN BAY QTR.", "Name": "SILVERBACK SOLUTIONS INC", "Address": "3225 Mc Leod", "City": "Las Vegas", "State": "Nevada", "Zip": 89121, "Country": "United States", "Land_Value": 66000, "Improved_V": 268700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.107708624, "SHAPE_Area": 3345.0023475200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361704.772100001573563, 255158.720800001174212 ], [ 361634.057499997317791, 255129.855500001460314 ], [ 361621.712899997830391, 255159.096500001847744 ], [ 361608.6824000030756, 255174.1886 ], [ 361685.113099999725819, 255194.656899999827147 ], [ 361685.157999999821186, 255189.379999998956919 ], [ 361687.629100002348423, 255183.278499998152256 ], [ 361697.423500001430511, 255169.426500000059605 ], [ 361701.492899999022484, 255165.026799999177456 ], [ 361704.772100001573563, 255158.720800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601033800", "MAP": "G9-1123-T68", "PARCEL_NAM": "2B-5A", "ACRE": "0.12", "LONGITUDE": -64.87625446, "LATITUDE": 18.32573327, "OBJECTID_1": 37990, "PARCEL_NO_": "107601033800", "Tax_Legal_": "2B-5A MARIENDAHL RED HOOK QTR", "Name": "SMITH (LIFE ESTATE), EARLINE", "Address": "7845 Mariendahl 2B-5A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.300752536, "SHAPE_Area": 721.50849573999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364592.977899998426437, 255182.99269999936223 ], [ 364575.125799998641014, 255196.145500000566244 ], [ 364590.260499998927116, 255218.011999998241663 ], [ 364616.240500003099442, 255197.326400000602007 ], [ 364592.977899998426437, 255182.99269999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9046421, "LATITUDE": 18.32542545, "OBJECTID_1": 33215, "PARCEL_NO_": "107402024800", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-80 FRENCHMAN BAY QTR.", "Name": "CARTY, ROSALYN", "Address": "41 Old Pump Rd", "City": "Sebasco Estates", "State": "Maine", "Zip": 4565, "Country": "United States", "Land_Value": 146400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 354.13732294099998, "SHAPE_Area": 6751.6173689699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361634.057499997317791, 255129.855500001460314 ], [ 361650.525399997830391, 255089.882500000298023 ], [ 361590.059199996292591, 255088.543299999088049 ], [ 361586.66669999808073, 255108.147199999541044 ], [ 361578.605400003492832, 255107.870099999010563 ], [ 361557.384099997580051, 255137.882800001651049 ], [ 361533.635999999940395, 255180.540500000119209 ], [ 361592.392499998211861, 255193.264800000935793 ], [ 361608.6824000030756, 255174.1886 ], [ 361621.712899997830391, 255159.096500001847744 ], [ 361634.057499997317791, 255129.855500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021500", "MAP": "A9-400-T92", "PARCEL_NAM": "2-5-2A", "ACRE": "2.77", "LONGITUDE": -64.89247532, "LATITUDE": 18.32560072, "OBJECTID_1": 37504, "PARCEL_NO_": "107502021500", "Tax_Legal_": "EST. BOVONI 2-5-2A FRENCHMAN BAY QTR.", "Name": "RAD HOLDING COMPANY INC", "Address": "PO Box 7068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 207600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 747.33346192299996, "SHAPE_Area": 14201.594270199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363020.80349999666214, 255154.293200001120567 ], [ 363007.049400001764297, 255159.669100001454353 ], [ 362996.542199999094009, 255162.538400001823902 ], [ 362987.663800001144409, 255163.521200001239777 ], [ 362973.1537000015378, 255162.980200000107288 ], [ 362959.473399996757507, 255159.701900001615286 ], [ 362950.63629999756813, 255155.829799998551607 ], [ 362937.805500000715256, 255147.492199998348951 ], [ 362935.402699999511242, 255145.572700001299381 ], [ 362923.405100002884865, 255134.075399998575449 ], [ 362915.372599996626377, 255130.421100001782179 ], [ 362897.628300003707409, 255130.909099999815226 ], [ 362875.830899998545647, 255133.897199999541044 ], [ 362871.77589999884367, 255136.608199998736382 ], [ 362871.740000002086163, 255140.829799998551607 ], [ 362864.476000003516674, 255141.614700000733137 ], [ 362862.899300001561642, 255137.379900000989437 ], [ 362858.878499999642372, 255136.080400001257658 ], [ 362857.343199998140335, 255126.990800000727177 ], [ 362711.773599997162819, 255176.673000000417233 ], [ 362702.823299996554852, 255186.098900001496077 ], [ 362760.814800001680851, 255193.961800001561642 ], [ 362820.456799998879433, 255197.405299998819828 ], [ 362831.757700003683567, 255196.020100001245737 ], [ 362857.610100001096725, 255190.321100000292063 ], [ 362889.911100000143051, 255184.885899998247623 ], [ 362897.171499997377396, 255184.523200001567602 ], [ 362943.075599998235703, 255191.442800000309944 ], [ 362979.285899996757507, 255200.394000001251698 ], [ 363000.215899996459484, 255204.576099999248981 ], [ 363016.358300000429153, 255202.808299999684095 ], [ 363025.252999998629093, 255199.925799999386072 ], [ 363030.108800001442432, 255197.854600001126528 ], [ 363043.067400000989437, 255191.205699998885393 ], [ 363020.80349999666214, 255154.293200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021400", "MAP": "A9-400-T92", "PARCEL_NAM": "2-5-3", "ACRE": "9.06", "LONGITUDE": -64.88868502, "LATITUDE": 18.32486695, "OBJECTID_1": 37503, "PARCEL_NO_": "107502021400", "Tax_Legal_": "EST BOVONI 2-5-3 FRENCHMAN BAY QTR.", "Name": "LIMA, LOUIS G", "Address": "PO Box 665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 445900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 823.90555679099998, "SHAPE_Area": 31315.2606084 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363296.750399999320507, 255039.81700000166893 ], [ 363270.214100003242493, 255031.155999999493361 ], [ 363151.207099996507168, 254991.763000000268221 ], [ 363126.614900000393391, 255038.846700001507998 ], [ 363127.392499998211861, 255042.230500001460314 ], [ 363130.601499997079372, 255044.156599998474121 ], [ 363128.949299998581409, 255048.787200000137091 ], [ 363126.537600003182888, 255047.923099998384714 ], [ 363123.308700002729893, 255048.318799998611212 ], [ 363120.875399999320507, 255049.98759999871254 ], [ 363120.045699998736382, 255052.725099999457598 ], [ 363206.505300000309944, 255126.471099998801947 ], [ 363212.945000000298023, 255127.790300000458956 ], [ 363255.582500003278255, 255139.538400001823902 ], [ 363305.428199999034405, 255157.044900000095367 ], [ 363356.053300000727177, 255177.724199999123812 ], [ 363421.105599999427795, 255208.654100000858307 ], [ 363407.717699997127056, 255076.399999998509884 ], [ 363392.439099997282028, 255071.419799998402596 ], [ 363296.750399999320507, 255039.81700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032600", "MAP": "F9-1300-T63", "PARCEL_NAM": "2B-15B", "ACRE": "0.13", "LONGITUDE": -64.8748707, "LATITUDE": 18.32561699, "OBJECTID_1": 37979, "PARCEL_NO_": "107601032600", "Tax_Legal_": "2 B 15A MARIENDAHL RED HOOK QTR", "Name": "ROGERS, CLARENCE", "Address": "PO Box 11566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.8815982, "SHAPE_Area": 631.72327133700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364756.792400002479553, 255168.712499998509884 ], [ 364748.774300001561642, 255163.369600001722574 ], [ 364721.811700001358986, 255204.734299998730421 ], [ 364733.042499996721745, 255211.581199999898672 ], [ 364759.196999996900558, 255170.421000000089407 ], [ 364756.792400002479553, 255168.712499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90310238000001, "LATITUDE": 18.32550233, "OBJECTID_1": 33247, "PARCEL_NO_": "107402028200", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-111\nFRENCHMAN BAY QTR.", "Name": "SCOTT, CHRISTOPHER & HOLLY ROSENCRANTZ", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77800, "Improved_V": 309300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.00187421499999, "SHAPE_Area": 2093.6373312000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361719.066299997270107, 255184.5912000015378 ], [ 361737.604299999773502, 255185.58729999884963 ], [ 361744.071000002324581, 255183.74040000140667 ], [ 361748.124099999666214, 255181.240499999374151 ], [ 361755.434900000691414, 255174.967500001192093 ], [ 361761.136600002646446, 255168.259199999272823 ], [ 361779.116499997675419, 255140.119800001382828 ], [ 361783.990299999713898, 255135.937800001353025 ], [ 361788.846100002527237, 255133.866599999368191 ], [ 361772.165299996733665, 255104.177000001072884 ], [ 361719.066299997270107, 255184.5912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90543789, "LATITUDE": 18.32554381, "OBJECTID_1": 33214, "PARCEL_NO_": "107402024700", "Tax_Legal_": "14-77 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "Robert, Joseph, & Anthony Csignay & M yra Martinez", "Address": "953 32 St", "City": "West Palm Beach", "State": "Florida", "Zip": 33407, "Country": "United States", "Land_Value": 120300, "Improved_V": 259900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.198617074, "SHAPE_Area": 3256.1542953500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361557.384099997580051, 255137.882800001651049 ], [ 361486.509499996900558, 255127.803599998354912 ], [ 361484.135600000619888, 255122.506799999624491 ], [ 361482.512100003659725, 255123.760099999606609 ], [ 361480.868900001049042, 255127.335200000554323 ], [ 361478.431999996304512, 255129.426199998706579 ], [ 361474.341099999845028, 255136.358800001442432 ], [ 361469.339599996805191, 255155.527399998158216 ], [ 361465.221699997782707, 255165.626200001686811 ], [ 361533.635999999940395, 255180.540500000119209 ], [ 361557.384099997580051, 255137.882800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401013800", "MAP": null, "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.9141396, "LATITUDE": 18.32563448, "OBJECTID_1": 32977, "PARCEL_NO_": "107401013800", "Tax_Legal_": "10 FRENCHMAN BAY FRENCHMAN BAY QTR", "Name": "ROGERS, JIMMY & JUDITH", "Address": "PO Box 304190", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25900, "Improved_V": 276100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.770899828, "SHAPE_Area": 683.21962540499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360609.265900000929832, 255146.715500000864267 ], [ 360583.855200000107288, 255138.582800000905991 ], [ 360582.453400000929832, 255141.513599999248981 ], [ 360572.596100002527237, 255162.753400001674891 ], [ 360587.836900003254414, 255172.166299998760223 ], [ 360598.401699997484684, 255162.542399998754263 ], [ 360607.377199999988079, 255150.161400001496077 ], [ 360609.265900000929832, 255146.715500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021600", "MAP": "A9-400-T92", "PARCEL_NAM": "2-5-2B", "ACRE": "2.77", "LONGITUDE": -64.89032236, "LATITUDE": 18.32518, "OBJECTID_1": 37505, "PARCEL_NO_": "107502021600", "Tax_Legal_": "EST. BOVONI 2-5-2B FRENCHMAN BAY QTR.", "Name": "RAD HOLDING COMPANY INC", "Address": "PO Box 7068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 207600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 481.0706762, "SHAPE_Area": 9361.9948384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363120.045699998736382, 255052.725099999457598 ], [ 363111.840499997138977, 255069.334300000220537 ], [ 363109.39639999717474, 255072.269600000232458 ], [ 363107.742499999701977, 255077.111200001090765 ], [ 363102.837999999523163, 255084.881499998271465 ], [ 363090.610299997031689, 255100.402399998158216 ], [ 363084.908600002527237, 255107.110700000077486 ], [ 363072.707800000905991, 255119.465399999171495 ], [ 363058.899800002574921, 255131.173599999397993 ], [ 363037.813400000333786, 255145.355399999767542 ], [ 363020.80349999666214, 255154.293200001120567 ], [ 363043.067400000989437, 255191.205699998885393 ], [ 363133.7753000035882, 255144.874200001358986 ], [ 363171.01860000193119, 255127.236099999397993 ], [ 363181.51860000193119, 255125.211100000888109 ], [ 363196.847499996423721, 255124.281100001186132 ], [ 363206.505300000309944, 255126.471099998801947 ], [ 363120.045699998736382, 255052.725099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601032500", "MAP": "F9-1300-T63", "PARCEL_NAM": "2B-15", "ACRE": "0.13", "LONGITUDE": -64.87498118000001, "LATITUDE": 18.32555043, "OBJECTID_1": 37978, "PARCEL_NO_": "107601032500", "Tax_Legal_": "2B-15 MARIENDAHL RED HOOK QTR", "Name": "ESTATE OF H. TURNBULL", "Address": "BOX 2162", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.02698269800001, "SHAPE_Area": 733.33982697600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364748.774300001561642, 255163.369600001722574 ], [ 364736.747900001704693, 255155.249600000679493 ], [ 364708.975400000810623, 255197.029899999499321 ], [ 364721.811700001358986, 255204.734299998730421 ], [ 364748.774300001561642, 255163.369600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015400", "MAP": "D9-2101-T82", "PARCEL_NAM": "3H-1", "ACRE": ".036", "LONGITUDE": -64.91312847, "LATITUDE": 18.32572419, "OBJECTID_1": 32992, "PARCEL_NO_": "107401015400", "Tax_Legal_": "FRENCHMAN BAY 3H-1 FRENCHMAN BAY QTR.", "Name": "PERKINS SOUTHSIDE VIEW LLC", "Address": "PO Box 298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.944780146, "SHAPE_Area": 106.975402015 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360706.488899998366833, 255158.571899998933077 ], [ 360684.648299999535084, 255166.625799998641014 ], [ 360698.316100001335144, 255171.381700001657009 ], [ 360706.488899998366833, 255158.571899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503020100", "MAP": "A9-196-T73", "PARCEL_NAM": "12", "ACRE": "125.0", "LONGITUDE": -64.89305311, "LATITUDE": 18.31955707, "OBJECTID_1": 37595, "PARCEL_NO_": "107503020100", "Tax_Legal_": "PORTION OF 12 & 12 REM BOVONI WESTERN PORTION FRENCHMAN'S BAY QUARTER", "Name": "VIALET, FREDERICK", "Address": "PO Box 546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3799200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4339.5772534500002, "SHAPE_Area": 462403.00414500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362974.347000002861023, 254454.982200000435114 ], [ 363029.946900002658367, 254270.308200001716614 ], [ 363165.101700000464916, 254307.300299998372793 ], [ 363162.6199000030756, 254314.668299999088049 ], [ 363229.617499999701977, 254338.161699999123812 ], [ 363211.923000000417233, 254396.382500000298023 ], [ 363212.059600003063679, 254396.831700000911951 ], [ 363211.110799998044968, 254396.547200001776218 ], [ 363187.875900000333786, 254473.617300000041723 ], [ 363178.946400001645088, 254500.549300000071526 ], [ 363219.066699996590614, 254517.032800000160933 ], [ 363240.894900001585484, 254526.160900000482798 ], [ 363247.584700003266335, 254523.358500000089407 ], [ 363314.588500000536442, 254365.730099998414516 ], [ 363370.581200003623962, 254229.61089999973774 ], [ 363068.933300003409386, 254142.704599998891354 ], [ 363044.792499996721745, 254136.807500001043081 ], [ 362977.173699997365475, 254123.166299998760223 ], [ 362942.570600003004074, 254114.8614999987185 ], [ 362928.904700003564358, 254109.894499998539686 ], [ 362919.277500003576279, 254104.116200000047684 ], [ 362910.465599998831749, 254097.289099998772144 ], [ 362894.414899997413158, 254088.291799999773502 ], [ 362859.059399999678135, 254073.647999998182058 ], [ 362844.614100001752377, 254065.508299998939037 ], [ 362838.204999998211861, 254060.600600000470877 ], [ 362830.219099998474121, 254051.458299998193979 ], [ 362827.037100002169609, 254046.36600000038743 ], [ 362823.102600000798702, 254034.93470000103116 ], [ 362816.869699999690056, 254009.341400001198053 ], [ 362809.281300000846386, 253953.550599999725819 ], [ 362806.144100002944469, 253943.18129999935627 ], [ 362799.013199999928474, 253928.346400000154972 ], [ 362782.256899997591972, 253907.522100001573563 ], [ 362767.843900002539158, 253895.582899998873472 ], [ 362742.173199996352196, 253879.962999999523163 ], [ 362726.102700002491474, 253873.287500001490116 ], [ 362702.646600000560284, 253976.320300001651049 ], [ 362582.807800002396107, 254129.226700000464916 ], [ 362581.081900000572205, 254142.511500000953674 ], [ 362576.049800001084805, 254165.268399998545647 ], [ 362576.708700001239777, 254182.583399999886751 ], [ 362574.966600000858307, 254197.767900001257658 ], [ 362573.291000001132488, 254205.142499998211861 ], [ 362565.028300002217293, 254228.50620000064373 ], [ 362559.978200003504753, 254253.3739 ], [ 362559.031700000166893, 254269.831500001251698 ], [ 362566.295699998736382, 254269.046599999070168 ], [ 362564.285700000822544, 254315.681800000369549 ], [ 362564.199299998581409, 254325.8136 ], [ 362556.938900001347065, 254326.176300000399351 ], [ 362559.955600000917912, 254350.687899999320507 ], [ 362559.901600003242493, 254357.020300000905991 ], [ 362566.969700001180172, 254378.820799998939037 ], [ 362568.539099998772144, 254384.322000000625849 ], [ 362575.679099999368191, 254398.101500000804663 ], [ 362595.570699997246265, 254429.50620000064373 ], [ 362597.129399999976158, 254435.851700000464916 ], [ 362601.880999997258186, 254446.02309999987483 ], [ 362602.638700000941753, 254451.728900000452995 ], [ 362604.13629999756813, 254465.2511 ], [ 362608.002400003373623, 254484.703299999237061 ], [ 362610.209200002253056, 254509.630399998277426 ], [ 362609.377700001001358, 254512.578999999910593 ], [ 362600.412900000810623, 254523.693500000983477 ], [ 362583.300499998033047, 254544.662799999117851 ], [ 362580.026699997484684, 254550.33559999987483 ], [ 362577.571800000965595, 254554.537399999797344 ], [ 362577.498099997639656, 254563.191599998623133 ], [ 362580.624499998986721, 254574.827300000935793 ], [ 362580.601099997758865, 254577.571299999952316 ], [ 362596.416299998760223, 254614.219999998807907 ], [ 362591.526199996471405, 254620.301699999719858 ], [ 362586.652400001883507, 254624.483600001782179 ], [ 362583.290500000119209, 254640.499200001358986 ], [ 362580.833800002932549, 254644.912099998444319 ], [ 362580.749300003051758, 254654.832800000905991 ], [ 362579.057499997317791, 254664.107099998742342 ], [ 362574.158500000834465, 254671.244199998676777 ], [ 362573.289300002157688, 254678.625300001353025 ], [ 362573.960699997842312, 254694.462799999862909 ], [ 362576.262800000607967, 254708.2027000002563 ], [ 362580.105499997735023, 254730.399000000208616 ], [ 362578.437100000679493, 254736.929299999028444 ], [ 362578.372400000691414, 254744.528099998831749 ], [ 362576.709399998188019, 254750.42509999871254 ], [ 362577.456399999558926, 254757.397300001233816 ], [ 362578.962899997830391, 254769.864199999719858 ], [ 362583.41780000180006, 254814.863600000739098 ], [ 362589.686700001358986, 254836.235300000756979 ], [ 362590.440800003707409, 254842.363200001418591 ], [ 362587.145499996840954, 254850.568900000303984 ], [ 362601.641800001263618, 254947.368400000035763 ], [ 362616.828699998557568, 254963.113600000739098 ], [ 362622.303900003433228, 254983.001200001686811 ], [ 362619.712300002574921, 255003.245000001043081 ], [ 362604.090300001204014, 255038.580800000578165 ], [ 362601.572400003671646, 255050.170400001108646 ], [ 362599.799800001084805, 255068.943199999630451 ], [ 362619.339000001549721, 255141.719300001859665 ], [ 362618.300700001418591, 255168.941899999976158 ], [ 362679.465400002896786, 255182.952399998903275 ], [ 362702.823299996554852, 255186.098900001496077 ], [ 362711.773599997162819, 255176.673000000417233 ], [ 362737.825599998235703, 255147.544199999421835 ], [ 362817.423199996352196, 255080.223499998450279 ], [ 362985.552699998021126, 254938.056000001728535 ], [ 363036.722599998116493, 254894.778400000184774 ], [ 363041.601800002157688, 254889.963199999183416 ], [ 363047.749099999666214, 254884.137899998575449 ], [ 363041.6587999984622, 254883.26799999922514 ], [ 363017.763400003314018, 254879.854899998754263 ], [ 363008.955399997532368, 254878.596799999475479 ], [ 362945.212300002574921, 254869.491900000721216 ], [ 362935.113300003111362, 254868.049400001764297 ], [ 362907.964299999177456, 254864.171500001102686 ], [ 362886.237000003457069, 254858.927400000393391 ], [ 362877.385600000619888, 254856.743999999016523 ], [ 362848.414099998772144, 254849.962999999523163 ], [ 362855.87950000166893, 254825.537300001829863 ], [ 362864.174599997699261, 254798.374099999666214 ], [ 362871.636399999260902, 254774.37049999833107 ], [ 362876.596500001847744, 254760.056699998676777 ], [ 362884.056500002741814, 254736.264199998229742 ], [ 362898.951399996876717, 254691.634300000965595 ], [ 362900.61259999871254, 254685.948399998247623 ], [ 362909.731899999082088, 254656.681000001728535 ], [ 362915.528999999165535, 254638.785500001162291 ], [ 362918.021600000560284, 254630.151000000536442 ], [ 362927.954499997198582, 254600.046000000089407 ], [ 362935.405500002205372, 254577.308800000697374 ], [ 362958.575699999928474, 254507.837600000202656 ], [ 362974.347000002861023, 254454.982200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401036700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91252706, "LATITUDE": 18.32532654, "OBJECTID_1": 33071, "PARCEL_NO_": "107401036700", "Tax_Legal_": "16-57 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR", "Name": "BROOKS, CONROY M. & LINDA", "Address": "7466 Frenchman Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54900, "Improved_V": 286500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.77784269599999, "SHAPE_Area": 2493.6276692299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360788.914399996399879, 255137.926100000739098 ], [ 360766.000699996948242, 255082.643100000917912 ], [ 360753.896999999880791, 255083.599500000476837 ], [ 360733.467600002884865, 255115.307500001043081 ], [ 360752.520599998533726, 255150.504900000989437 ], [ 360742.690200001001358, 255168.578499998897314 ], [ 360766.202799998223782, 255153.572200000286102 ], [ 360774.316299997270107, 255147.728000000119209 ], [ 360788.914399996399879, 255137.926100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402038400", "MAP": "D9-5049-T91", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89973125, "LATITUDE": 18.32540401, "OBJECTID_1": 33289, "PARCEL_NO_": "107402038400", "Tax_Legal_": "ESTATE BOLONGO 60W FRENCHMAN'S BAY QTR", "Name": "CALLWOOD, CLIFFORD", "Address": "PO Box 8029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61600, "Improved_V": 224900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.954894282, "SHAPE_Area": 2230.1413840099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362140.189800001680851, 255161.229100000113249 ], [ 362106.957599997520447, 255086.652100000530481 ], [ 362106.880300000309944, 255095.728500001132488 ], [ 362103.547200001776218, 255108.366900000721216 ], [ 362102.695900000631809, 255113.637200001627207 ], [ 362101.04730000346899, 255117.845600001513958 ], [ 362096.115900002419949, 255128.7820999994874 ], [ 362088.774599999189377, 255138.643399998545647 ], [ 362089.532399997115135, 255144.349199999123812 ], [ 362109.391699999570847, 255179.553199999034405 ], [ 362140.189800001680851, 255161.229100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401014700", "MAP": "D9-948-T71", "PARCEL_NAM": "3I", "ACRE": ".066", "LONGITUDE": -64.91330072, "LATITUDE": 18.32556919, "OBJECTID_1": 32986, "PARCEL_NO_": "107401014700", "Tax_Legal_": "FRENCHMAN BAY 3I FRENCHMAN BAY QTR", "Name": "PERKINS SOUTHSIDE VIEW LLC", "Address": "PO Box 298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9100, "Improved_V": 93000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.94811177099999, "SHAPE_Area": 652.18688664499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360665.584499999880791, 255132.69480000063777 ], [ 360657.60700000077486, 255127.599399998784065 ], [ 360655.843999996781349, 255141.805599998682737 ], [ 360660.644199997186661, 255144.686700001358986 ], [ 360681.505800001323223, 255156.889800000935793 ], [ 360684.691500000655651, 255161.559900000691414 ], [ 360684.648299999535084, 255166.625799998641014 ], [ 360706.488899998366833, 255158.571899998933077 ], [ 360687.239900000393391, 255146.381999999284744 ], [ 360665.584499999880791, 255132.69480000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87650935000001, "LATITUDE": 18.32548185, "OBJECTID_1": 37999, "PARCEL_NO_": "107601034600", "Tax_Legal_": "2B-37 MARIENDAL RED HOOK QTR", "Name": "REHENIA LATORTUE MONSANTO (LIFE ESTATE)", "Address": "PO Box 9728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 108300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.80589178299999, "SHAPE_Area": 782.86788889699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364539.327200002968311, 255138.857200000435114 ], [ 364567.16160000115633, 255184.470199998468161 ], [ 364575.125799998641014, 255196.145500000566244 ], [ 364592.977899998426437, 255182.99269999936223 ], [ 364580.15429999679327, 255173.810699999332428 ], [ 364566.545800000429153, 255162.089200001209974 ], [ 364561.747500002384186, 255157.405900001525879 ], [ 364543.364200003445148, 255138.256999999284744 ], [ 364539.327200002968311, 255138.857200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601033200", "MAP": "G9-1274-T69", "PARCEL_NAM": "2B-14", "ACRE": "0.27", "LONGITUDE": -64.87512806, "LATITUDE": 18.32545883, "OBJECTID_1": 37985, "PARCEL_NO_": "107601033200", "Tax_Legal_": "MARIENDAHL 2B-14 RED HOOK QTR", "Name": "DONOVAN, AURELIA N. R", "Address": "PO Box 11361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26900, "Improved_V": 88700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.64107680399999, "SHAPE_Area": 1127.79126574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364736.747900001704693, 255155.249600000679493 ], [ 364717.502499997615814, 255142.637600000947714 ], [ 364705.240599997341633, 255162.1689000017941 ], [ 364690.525600001215935, 255185.690900001674891 ], [ 364708.975400000810623, 255197.029899999499321 ], [ 364736.747900001704693, 255155.249600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601035200", "MAP": "D9-8882-T014", "PARCEL_NAM": "2B-12A", "ACRE": ".32", "LONGITUDE": -64.87577254, "LATITUDE": 18.32544251, "OBJECTID_1": 38004, "PARCEL_NO_": "107601035200", "Tax_Legal_": "2B-12A MARIENDAHL No.4 RED HOOK QUARTER", "Name": "LOUIMAIRE, ROSENIE & EUPHENE HYACINTHE", "Address": "4650 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.85284798500001, "SHAPE_Area": 1194.0426871899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364671.914800003170967, 255156.600900001823902 ], [ 364648.694899998605251, 255141.059900000691414 ], [ 364618.736800000071526, 255188.269799999892712 ], [ 364627.559500001370907, 255193.830400001257658 ], [ 364634.013599999248981, 255193.461100000888109 ], [ 364634.834299996495247, 255191.778999999165535 ], [ 364636.47749999910593, 255188.203899998217821 ], [ 364638.111699998378754, 255185.684099998325109 ], [ 364642.173799999058247, 255182.128800000995398 ], [ 364645.418799996376038, 255179.833299998193979 ], [ 364654.333200000226498, 255174.628899998962879 ], [ 364660.796300001442432, 255173.204199999570847 ], [ 364671.914800003170967, 255156.600900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021700", "MAP": "A9-400-T92", "PARCEL_NAM": "2-5-2C", "ACRE": "2.77", "LONGITUDE": -64.89210913, "LATITUDE": 18.32510282, "OBJECTID_1": 37506, "PARCEL_NO_": "107502021700", "Tax_Legal_": "EST. BOVONI 2-5-2C FRENCHMAN BAY QTR.", "Name": "RAD HOLDING COMPANY INC", "Address": "PO Box 7068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 207600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 914.92658238700005, "SHAPE_Area": 15991.9169969 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362857.343199998140335, 255126.990800000727177 ], [ 362903.362400002777576, 255120.401399999856949 ], [ 362914.645400002598763, 255121.127000000327826 ], [ 362921.08330000191927, 255122.657400000840425 ], [ 362927.508599996566772, 255125.665300000458956 ], [ 362945.101800002157688, 255142.907800000160933 ], [ 362954.729000002145767, 255148.686200000345707 ], [ 362962.76519999653101, 255151.918299999088049 ], [ 362977.25900000333786, 255154.359000001102686 ], [ 362986.124899998307228, 255154.853700000792742 ], [ 362999.853699997067451, 255152.43299999833107 ], [ 363018.460100002586842, 255145.408100001513958 ], [ 363033.850100003182888, 255137.301399998366833 ], [ 363054.94370000064373, 255122.275299999862909 ], [ 363065.501299999654293, 255113.495799999684095 ], [ 363079.325499996542931, 255099.887800000607967 ], [ 363091.542499996721745, 255085.633499998599291 ], [ 363100.537799999117851, 255070.930500000715256 ], [ 363101.369300000369549, 255067.98200000077486 ], [ 363103.813400000333786, 255065.046700000762939 ], [ 363108.750200003385544, 255053.477000001817942 ], [ 363112.016800001263618, 255048.648600000888109 ], [ 363043.968199998140335, 255085.455200001597404 ], [ 362985.791500002145767, 255099.333399999886751 ], [ 362817.423199996352196, 255080.223499998450279 ], [ 362737.825599998235703, 255147.544199999421835 ], [ 362711.773599997162819, 255176.673000000417233 ], [ 362857.343199998140335, 255126.990800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601045600", "MAP": "D9-5063-T91", "PARCEL_NAM": "2-J", "ACRE": "0.37", "LONGITUDE": -64.87442301, "LATITUDE": 18.32541003, "OBJECTID_1": 38056, "PARCEL_NO_": "107601045600", "Tax_Legal_": "2-J MARIENDAHL RED HOOK QTR.", "Name": "WILLIAMS, PETRONILLA", "Address": "6615 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36800, "Improved_V": 135800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.07741801200001, "SHAPE_Area": 1941.30085983 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364830.917400002479553, 255175.863099999725819 ], [ 364822.114500001072884, 255167.980599999427795 ], [ 364814.096400000154972, 255162.637600000947714 ], [ 364806.891699999570847, 255156.456999998539686 ], [ 364800.505900003015995, 255148.805300001055002 ], [ 364798.938299998641014, 255143.5152000002563 ], [ 364768.300200000405312, 255143.053300000727177 ], [ 364756.792400002479553, 255168.712499998509884 ], [ 364759.196999996900558, 255170.421000000089407 ], [ 364779.243299998342991, 255183.672800000756979 ], [ 364793.677799999713898, 255193.079100001603365 ], [ 364807.545199997723103, 255174.405299998819828 ], [ 364830.917400002479553, 255175.863099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401038200", "MAP": "D9-6155-T96", "PARCEL_NAM": "16-63-3", "ACRE": ".535", "LONGITUDE": -64.90999777, "LATITUDE": 18.3254341, "OBJECTID_1": 33085, "PARCEL_NO_": "107401038200", "Tax_Legal_": "FRENCHMAN'S BAY 16-63-3 No.4 FRENCHMANS BAY QTR.", "Name": "TURNBULL, MELVIN", "Address": "PO Box 308364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64000, "Improved_V": 234900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.29758180499999, "SHAPE_Area": 2036.95789984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361051.201499998569489, 255112.41950000077486 ], [ 360993.847199998795986, 255124.404599998146296 ], [ 361000.90259999781847, 255148.104899998754263 ], [ 361008.179200001060963, 255145.842399999499321 ], [ 361009.714500002563, 255154.932000000029802 ], [ 361007.282999999821186, 255156.389699999243021 ], [ 361007.239900000393391, 255161.455600000917912 ], [ 361015.353299997746944, 255155.611400000751019 ], [ 361055.676100000739098, 255155.096999999135733 ], [ 361051.201499998569489, 255112.41950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401014800", "MAP": "F9-1808-T66", "PARCEL_NAM": "8A", "ACRE": ".50", "LONGITUDE": -64.91308396, "LATITUDE": 18.3254195, "OBJECTID_1": 32987, "PARCEL_NO_": "107401014800", "Tax_Legal_": "FRENCHMAN BAY 8A FRENCHMAN BAY QTR", "Name": "FRAZER, VINCENT & ANN", "Address": "PO Box 304982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64800, "Improved_V": 227500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.28440949, "SHAPE_Area": 1437.56731674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360726.162399999797344, 255127.273499999195337 ], [ 360698.948899999260902, 255103.288100000470877 ], [ 360675.767899997532368, 255139.13120000064373 ], [ 360687.239900000393391, 255146.381999999284744 ], [ 360706.488899998366833, 255158.571899998933077 ], [ 360726.162399999797344, 255127.273499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029800", "MAP": "D9-4047-T87", "PARCEL_NAM": "16-46", "ACRE": ".545", "LONGITUDE": -64.90674492, "LATITUDE": 18.32530902, "OBJECTID_1": 33276, "PARCEL_NO_": "107402029800", "Tax_Legal_": "FRENCHMANS BAY EST. 16-46&47 FRENCHMAN BAY QTR.", "Name": "VILLA JASH LLC", "Address": "PO Box 301826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 125600, "Improved_V": 886200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.86972823100001, "SHAPE_Area": 1865.56056057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361380.317299999296665, 255098.647900000214577 ], [ 361358.485699996352196, 255105.64640000090003 ], [ 361325.54730000346899, 255091.233500000089407 ], [ 361331.11599999666214, 255100.144999999552965 ], [ 361332.714199997484684, 255101.846900001168251 ], [ 361355.913900002837181, 255123.568300001323223 ], [ 361378.253300003707409, 255151.615499999374151 ], [ 361385.463299997150898, 255157.162900000810623 ], [ 361391.049999997019768, 255163.963599998503923 ], [ 361401.548199996352196, 255162.149700000882149 ], [ 361399.976999998092651, 255157.281700000166893 ], [ 361380.317299999296665, 255098.647900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90254331, "LATITUDE": 18.32528163, "OBJECTID_1": 33248, "PARCEL_NO_": "107402028300", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-110 FRENCHMAN BAY QTR", "Name": "DASWANI, PREM & HIRU (TRUSTEES)", "Address": "PO Box 1511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65100, "Improved_V": 288100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.654090392, "SHAPE_Area": 2641.0235314400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361848.317299999296665, 255157.36259999871254 ], [ 361831.085500001907349, 255097.693199999630451 ], [ 361772.165299996733665, 255104.177000001072884 ], [ 361788.846100002527237, 255133.866599999368191 ], [ 361792.88849999755621, 255132.633200000971556 ], [ 361798.536300003528595, 255132.257199998944998 ], [ 361805.780500002205372, 255133.794100001454353 ], [ 361810.598600000143051, 255136.155600000172853 ], [ 361816.199600003659725, 255141.267700001597404 ], [ 361826.509099997580051, 255161.616999998688698 ], [ 361829.707299999892712, 255164.809599999338388 ], [ 361832.923600003123283, 255165.891399998217821 ], [ 361838.57320000231266, 255165.304400000721216 ], [ 361848.317299999296665, 255157.36259999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87592973, "LATITUDE": 18.32519881, "OBJECTID_1": 37991, "PARCEL_NO_": "107601033900", "Tax_Legal_": "2B-4 MARIENDAHL RED HOOK QTR", "Name": "THOMAS, HILDA MAY", "Address": "P.O.BOX 5684", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 187900, "Improved_V": 40400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.06412890300001, "SHAPE_Area": 3093.4313032300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364667.777300000190735, 255110.988699998706579 ], [ 364638.902900002896786, 255092.809500001370907 ], [ 364590.67230000346899, 255169.675000000745058 ], [ 364599.489600002765656, 255175.86879999935627 ], [ 364618.736800000071526, 255188.269799999892712 ], [ 364667.777300000190735, 255110.988699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401037000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91172637, "LATITUDE": 18.32519641, "OBJECTID_1": 33074, "PARCEL_NO_": "107401037000", "Tax_Legal_": "FRENCHMAN'S BAY 16-59 N0.4 FRENCHMAN'S BAY QTR.", "Name": "ORVILLE D. WEBSTER LIV. TRUST", "Address": "PO Box 306114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.83487424500001, "SHAPE_Area": 2427.0660274500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360820.873099997639656, 255078.026000000536442 ], [ 360827.728900000452995, 255125.155999999493361 ], [ 360830.934299997985363, 255127.504200000315905 ], [ 360834.913800001144409, 255133.658500000834465 ], [ 360838.04730000346899, 255144.44990000128746 ], [ 360838.822999998927116, 255148.044900000095367 ], [ 360840.36370000243187, 255156.501200001686811 ], [ 360869.752400003373623, 255114.311900001019239 ], [ 360869.951999999582767, 255090.882199998944998 ], [ 360840.240699999034405, 255076.284699998795986 ], [ 360820.873099997639656, 255078.026000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90596922, "LATITUDE": 18.32543507, "OBJECTID_1": 33196, "PARCEL_NO_": "107402022900", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-21 FRENCHMANS BAY QTR", "Name": "PLASKETT, CORBIN A. & CHARLOTTE S.", "Address": "PO Box 6411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.232380823, "SHAPE_Area": 731.80784430599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361472.829199999570847, 255124.525199998170137 ], [ 361455.06700000166893, 255127.124000001698732 ], [ 361433.267700001597404, 255130.323100000619888 ], [ 361446.788000002503395, 255152.387499999254942 ], [ 361451.581000000238419, 255157.704100001603365 ], [ 361456.406300000846386, 255159.221200000494719 ], [ 361459.640500001609325, 255158.192200001329184 ], [ 361462.086400002241135, 255155.045800000429153 ], [ 361465.453699998557568, 255138.396999999880791 ], [ 361467.926600001752377, 255132.084399998188019 ], [ 361472.829199999570847, 255124.525199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601033300", "MAP": "F9-1386-T64", "PARCEL_NAM": "2B-13", "ACRE": "0.18", "LONGITUDE": -64.87540945000001, "LATITUDE": 18.32543019, "OBJECTID_1": 37986, "PARCEL_NO_": "107601033300", "Tax_Legal_": "2B-13 MARIENDAHL RED HOOK QTR", "Name": "ALLYSON SPENCER a/k/a ALLISON SPENCER", "Address": "2B-13 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35800, "Improved_V": 64700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.363308449, "SHAPE_Area": 867.20544671000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364705.240599997341633, 255162.1689000017941 ], [ 364677.94820000231266, 255147.5912000015378 ], [ 364660.796300001442432, 255173.204199999570847 ], [ 364672.876599997282028, 255174.991799999028444 ], [ 364690.525600001215935, 255185.690900001674891 ], [ 364705.240599997341633, 255162.1689000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90648373000001, "LATITUDE": 18.32525588, "OBJECTID_1": 33195, "PARCEL_NO_": "107402022800", "Tax_Legal_": "FRENCHMAN BAY 14-25 FRENCHMAN BAY QTR", "Name": "MONSANTO, SHIRLEY & TESS M", "Address": "PO Box 966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.94496886499999, "SHAPE_Area": 1404.6327633799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361421.999099999666214, 255127.9087999984622 ], [ 361417.217000000178814, 255121.325800001621246 ], [ 361414.814300000667572, 255119.406300000846386 ], [ 361410.836599998176098, 255113.040899999439716 ], [ 361409.233000002801418, 255111.972300000488758 ], [ 361406.855400003492832, 255107.097699999809265 ], [ 361404.458099998533726, 255104.545000001788139 ], [ 361403.67509999871254, 255101.794399999082088 ], [ 361402.075099997222424, 255100.303599998354912 ], [ 361396.529799997806549, 255088.64809999987483 ], [ 361377.964800000190735, 255090.818199999630451 ], [ 361380.317299999296665, 255098.647900000214577 ], [ 361399.976999998092651, 255157.281700000166893 ], [ 361421.999099999666214, 255127.9087999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401014200", "MAP": null, "PARCEL_NAM": "13", "ACRE": "0.23", "LONGITUDE": -64.91422851, "LATITUDE": 18.32545476, "OBJECTID_1": 32981, "PARCEL_NO_": "107401014200", "Tax_Legal_": "FRENCHMAN BAY 13 FRENCHMAN BAY QTR", "Name": "HODGE, RHYS", "Address": "PO Box 6520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.06612916899999, "SHAPE_Area": 1001.55600658 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360546.657499998807907, 255144.674499999731779 ], [ 360583.855200000107288, 255138.582800000905991 ], [ 360609.265900000929832, 255146.715500000864267 ], [ 360614.749099999666214, 255136.71169999986887 ], [ 360614.777900002896786, 255133.334499999880791 ], [ 360601.923600003123283, 255127.740800000727177 ], [ 360593.88570000231266, 255124.719700001180172 ], [ 360591.983000002801418, 255123.300599999725819 ], [ 360544.348499998450279, 255131.234099999070168 ], [ 360544.628700003027916, 255132.760299999266863 ], [ 360546.657499998807907, 255144.674499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402038200", "MAP": "D9-5049-T91", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90029044000001, "LATITUDE": 18.32534288, "OBJECTID_1": 33287, "PARCEL_NO_": "107402038200", "Tax_Legal_": "ESTATE BOLONGO 60-U FRENCHMAN'S BAY QTR.", "Name": "MEJIA, DINORAH M.", "Address": "9718 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58200, "Improved_V": 268200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.97932845099999, "SHAPE_Area": 1524.46047965 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362087.232100002467632, 255130.398200001567602 ], [ 362018.873599998652935, 255108.940400000661612 ], [ 362053.095499999821186, 255161.993900001049042 ], [ 362081.469200000166893, 255144.28319999948144 ], [ 362075.819700002670288, 255144.870200000703335 ], [ 362074.255599997937679, 255139.157900001853704 ], [ 362084.780799999833107, 255134.177799999713898 ], [ 362087.232100002467632, 255130.398200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402026400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90386531, "LATITUDE": 18.32528545, "OBJECTID_1": 33229, "PARCEL_NO_": "107402026400", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-99 FRENCHMAN'S BAY QTR.", "Name": "ROUSE, ALTON R.", "Address": "100 Alcott Pl", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 62500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.76141030900001, "SHAPE_Area": 3070.20227621 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361717.976999998092651, 255123.154100000858307 ], [ 361650.525399997830391, 255089.882500000298023 ], [ 361634.057499997317791, 255129.855500001460314 ], [ 361704.772100001573563, 255158.720800001174212 ], [ 361717.976999998092651, 255123.154100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015000", "MAP": "F9-1808-T66", "PARCEL_NAM": "8B", "ACRE": ".494", "LONGITUDE": -64.91333075, "LATITUDE": 18.32521527, "OBJECTID_1": 32988, "PARCEL_NO_": "107401015000", "Tax_Legal_": "FRENCHMANS BAY 8 FRENCHMANS BAY QTR", "Name": "RYGEKA ENTERPRISE INC", "Address": "9 CONTANT GILMORE PLAZA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 185200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.154946029, "SHAPE_Area": 1415.76106162 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360667.463299997150898, 255075.537500001490116 ], [ 360657.60700000077486, 255127.599399998784065 ], [ 360665.584499999880791, 255132.69480000063777 ], [ 360675.767899997532368, 255139.13120000064373 ], [ 360698.948899999260902, 255103.288100000470877 ], [ 360667.463299997150898, 255075.537500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401014600", "MAP": "D9-8198-T008", "PARCEL_NAM": "1", "ACRE": "1.00", "LONGITUDE": -64.91365168, "LATITUDE": 18.32501984, "OBJECTID_1": 32985, "PARCEL_NO_": "107401014600", "Tax_Legal_": "FRENCHMANS BAY 1 FRENCHMANS BAY QTR", "Name": "PERKINS SOUTHSIDE VIEW LLC & VIGGO E. PERKINS", "Address": "PO Box 298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 245000, "Improved_V": 165600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.81067446100002, "SHAPE_Area": 4255.5815150199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360672.632299996912479, 255048.234600000083447 ], [ 360628.150499999523163, 255035.565799999982119 ], [ 360626.116700001060963, 255045.969000000506639 ], [ 360625.499499998986721, 255049.126200001686811 ], [ 360619.380000002682209, 255080.428800001740456 ], [ 360610.720100000500679, 255124.726100001484156 ], [ 360618.856200002133846, 255127.879399999976158 ], [ 360637.367200002074242, 255132.041700001806021 ], [ 360647.807899996638298, 255136.982299998402596 ], [ 360655.843999996781349, 255141.805599998682737 ], [ 360657.60700000077486, 255127.599399998784065 ], [ 360667.463299997150898, 255075.537500001490116 ], [ 360672.632299996912479, 255048.234600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8761871, "LATITUDE": 18.3250387, "OBJECTID_1": 37993, "PARCEL_NO_": "107601034000", "Tax_Legal_": "MARIENDAHL 2B-3 RED HOOK QTR", "Name": "DAVID, MARY", "Address": "PO Box 6649", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 73100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.95819563800001, "SHAPE_Area": 2774.8098609899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364638.902900002896786, 255092.809500001370907 ], [ 364626.872900001704693, 255085.111600000411272 ], [ 364613.237499997019768, 255076.55629999935627 ], [ 364596.080200001597404, 255102.802600000053644 ], [ 364565.852799996733665, 255148.784600000828505 ], [ 364578.658500000834465, 255160.077399998903275 ], [ 364590.67230000346899, 255169.675000000745058 ], [ 364638.902900002896786, 255092.809500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401036900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91216255000001, "LATITUDE": 18.32515638, "OBJECTID_1": 33073, "PARCEL_NO_": "107401036900", "Tax_Legal_": "FRENCHMAN'S BAY 16-58 No.4FRENCHMAN'S BAY QTR.", "Name": "FERRELL, ROBERT S. & MONIQUE Y", "Address": "6622 Dublee Ct", "City": "Lorton", "State": "Virginia", "Zip": 22079, "Country": "United States", "Land_Value": 63100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.659483494, "SHAPE_Area": 2389.20147791 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360820.873099997639656, 255078.026000000536442 ], [ 360766.000699996948242, 255082.643100000917912 ], [ 360788.914399996399879, 255137.926100000739098 ], [ 360798.642300002276897, 255131.88399999961257 ], [ 360811.60980000346899, 255124.179699998348951 ], [ 360819.685500003397465, 255122.768100000917912 ], [ 360827.728900000452995, 255125.155999999493361 ], [ 360820.873099997639656, 255078.026000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601044400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87485925, "LATITUDE": 18.32521204, "OBJECTID_1": 38046, "PARCEL_NO_": "107601044400", "Tax_Legal_": "MARIENDAHL ESTATE 2-23 RED HOOK QTR.", "Name": "WILKINS, ARTHUR", "Address": "PO BOX 1372", "City": "ST JOHN", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 28800, "Improved_V": 126100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.59964310399999, "SHAPE_Area": 1333.2345094699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364713.492499999701977, 255140.071600001305342 ], [ 364717.502499997615814, 255142.637600000947714 ], [ 364736.747900001704693, 255155.249600000679493 ], [ 364748.774300001561642, 255163.369600001722574 ], [ 364756.792400002479553, 255168.712499998509884 ], [ 364768.300200000405312, 255143.053300000727177 ], [ 364730.610299997031689, 255118.469099998474121 ], [ 364713.492499999701977, 255140.071600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401014300", "MAP": null, "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.91438584, "LATITUDE": 18.32528213, "OBJECTID_1": 32982, "PARCEL_NO_": "107401014300", "Tax_Legal_": "FRENCHMAN BAY 12 FRENCHMAN BAY QTR", "Name": "DENISE NAOMI GEORGE", "Address": "3C-1 ESTATE BAKKERO", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 290800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.204128661, "SHAPE_Area": 1116.6142881599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360591.983000002801418, 255123.300599999725819 ], [ 360589.879299998283386, 255121.731600001454353 ], [ 360587.487300001084805, 255118.5456000007689 ], [ 360584.806500002741814, 255101.117899999022484 ], [ 360539.605599999427795, 255105.396299999207258 ], [ 360544.348499998450279, 255131.234099999070168 ], [ 360591.983000002801418, 255123.300599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402024900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90522434, "LATITUDE": 18.32514904, "OBJECTID_1": 33216, "PARCEL_NO_": "107402024900", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-76 FRENCHMAN BAY QTR", "Name": "STAR PROPERTIES CO.", "Address": "1202 Gallows Pt", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 92200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.63291562799998, "SHAPE_Area": 4022.0865423800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361583.619499996304512, 255087.223999999463558 ], [ 361544.113799996674061, 255086.478500001132488 ], [ 361505.412600003182888, 255085.950599998235703 ], [ 361501.501500003039837, 255071.775400001555681 ], [ 361499.867299996316433, 255074.295099999755621 ], [ 361488.255199998617172, 255112.196899998933077 ], [ 361484.135600000619888, 255122.506799999624491 ], [ 361486.509499996900558, 255127.803599998354912 ], [ 361557.384099997580051, 255137.882800001651049 ], [ 361578.605400003492832, 255107.870099999010563 ], [ 361578.628799997270107, 255105.1261 ], [ 361576.218800000846386, 255104.050900001078844 ], [ 361576.269199997186661, 255098.140700001269579 ], [ 361579.494400002062321, 255098.167100001126528 ], [ 361581.929499998688698, 255096.287200000137091 ], [ 361583.619499996304512, 255087.223999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601033400", "MAP": "F9-1386-T64", "PARCEL_NAM": "2B-13-1", "ACRE": "0.18", "LONGITUDE": -64.87527804, "LATITUDE": 18.32523125, "OBJECTID_1": 37987, "PARCEL_NO_": "107601033400", "Tax_Legal_": "MARIENDAL 2B-13-1 RED HOOK QTR", "Name": "SMITH, JONELLE O. & IRIS A. & GEORGE H.", "Address": "6025 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21500, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.732086842, "SHAPE_Area": 741.25387916700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364713.492499999701977, 255140.071600001305342 ], [ 364691.837200000882149, 255126.384399998933077 ], [ 364677.94820000231266, 255147.5912000015378 ], [ 364705.240599997341633, 255162.1689000017941 ], [ 364717.502499997615814, 255142.637600000947714 ], [ 364713.492499999701977, 255140.071600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401014500", "MAP": "D9-4581-T88", "PARCEL_NAM": "107", "ACRE": ".24", "LONGITUDE": -64.91401167, "LATITUDE": 18.32512076, "OBJECTID_1": 32984, "PARCEL_NO_": "107401014500", "Tax_Legal_": "FRENCHMAN BAY 107 FRENCHMAN BAY QTR", "Name": "SWAN, IVE A", "Address": "PO Box 8522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 258100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.453079661, "SHAPE_Area": 1046.27239321 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360619.380000002682209, 255080.428800001740456 ], [ 360593.505500003695488, 255074.687399998307228 ], [ 360590.9679000005126, 255088.598799999803305 ], [ 360590.861800000071526, 255101.052499998360872 ], [ 360592.357600003480911, 255114.785799998790026 ], [ 360593.948600001633167, 255117.331999998539686 ], [ 360597.155900001525879, 255119.469099998474121 ], [ 360610.720100000500679, 255124.726100001484156 ], [ 360619.380000002682209, 255080.428800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015000", "MAP": "F9-1822-T66", "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.91285124, "LATITUDE": 18.3245311, "OBJECTID_1": 32988, "PARCEL_NO_": "107401015000", "Tax_Legal_": "FRENCHMANS BAY 8 FRENCHMANS BAY QTR", "Name": "RYGEKA ENTERPRISE INC", "Address": "9 CONTANT GILMORE PLAZA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 185200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 456.07723343399999, "SHAPE_Area": 12697.248301199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360672.632299996912479, 255048.234600000083447 ], [ 360667.463299997150898, 255075.537500001490116 ], [ 360698.948899999260902, 255103.288100000470877 ], [ 360726.162399999797344, 255127.273499999195337 ], [ 360727.742499999701977, 255124.759799998253584 ], [ 360733.467600002884865, 255115.307500001043081 ], [ 360753.896999999880791, 255083.599500000476837 ], [ 360782.508100003004074, 255038.026399999856949 ], [ 360776.9070999994874, 255032.914299998432398 ], [ 360775.339400000870228, 255027.624099999666214 ], [ 360771.827500000596046, 254966.589400000870228 ], [ 360770.234700001776218, 254964.254299998283386 ], [ 360769.455399997532368, 254961.081500001251698 ], [ 360767.063400000333786, 254957.895500000566244 ], [ 360762.252499997615814, 254954.689800001680851 ], [ 360758.229900002479553, 254953.601399999111891 ], [ 360742.904600001871586, 254954.109200000762939 ], [ 360735.645999997854233, 254954.260899998247623 ], [ 360722.755800001323223, 254952.888799998909235 ], [ 360714.257700003683567, 254950.824700001627207 ], [ 360693.120200000703335, 255000.289799999445677 ], [ 360677.774599999189377, 255036.200800001621246 ], [ 360672.632299996912479, 255048.234600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9061936, "LATITUDE": 18.32509018, "OBJECTID_1": 33197, "PARCEL_NO_": "107402023000", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-20 FRENCHMAN BAY QTR", "Name": "PLASKETT, CHRISTIAN A", "Address": "P.O. BOX 3128", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81700, "Improved_V": 340100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.94211189399999, "SHAPE_Area": 1804.4571415600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361450.53660000115633, 255090.989900000393391 ], [ 361398.306100003421307, 255069.453099999576807 ], [ 361404.594700001180172, 255088.502999998629093 ], [ 361406.984899997711182, 255091.900100000202656 ], [ 361408.559799998998642, 255096.345899999141693 ], [ 361417.312299996614456, 255110.138599999248981 ], [ 361433.267700001597404, 255130.323100000619888 ], [ 361455.06700000166893, 255127.124000001698732 ], [ 361450.53660000115633, 255090.989900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90580937, "LATITUDE": 18.32498922, "OBJECTID_1": 33200, "PARCEL_NO_": "107402023300", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-22 FRENCHMAN BAY QTR", "Name": "BACOT, BRIAN C.", "Address": "PO Box 11567", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.06589476100001, "SHAPE_Area": 2036.1892663000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361466.943300001323223, 255058.193599998950958 ], [ 361450.53660000115633, 255090.989900000393391 ], [ 361455.06700000166893, 255127.124000001698732 ], [ 361472.829199999570847, 255124.525199998170137 ], [ 361477.721000000834465, 255118.232400000095367 ], [ 361481.003799997270107, 255111.504299998283386 ], [ 361495.131899997591972, 255062.223999999463558 ], [ 361474.20549999922514, 255057.619800001382828 ], [ 361467.767599999904633, 255056.089400000870228 ], [ 361466.943300001323223, 255058.193599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402038100", "MAP": "D9-5049-T91", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90014216, "LATITUDE": 18.32513796, "OBJECTID_1": 33286, "PARCEL_NO_": "107402038100", "Tax_Legal_": "ESTATE BOLONGO 60-T FRENCHMANS BAY QTR.", "Name": "BENJAMIN, LLOYD", "Address": "PO Box 11732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.91379484500001, "SHAPE_Area": 1342.59890922 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362101.228900000452995, 255096.526599999517202 ], [ 362018.873599998652935, 255108.940400000661612 ], [ 362087.232100002467632, 255130.398200001567602 ], [ 362089.681599996984005, 255126.829599998891354 ], [ 362092.946400001645088, 255122.21229999884963 ], [ 362095.4408999979496, 255113.366799999028444 ], [ 362101.228900000452995, 255096.526599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87649661, "LATITUDE": 18.32498072, "OBJECTID_1": 37994, "PARCEL_NO_": "107601034100", "Tax_Legal_": "2B-2 MARIENDAHL No. 4 RED HOOK QTR", "Name": "HENLEY, LORN", "Address": "PO BOX 503041", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37800, "Improved_V": 84600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.389067582, "SHAPE_Area": 1605.5658596400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364596.080200001597404, 255102.802600000053644 ], [ 364569.621100001037121, 255085.065200001001358 ], [ 364564.713100001215935, 255093.257699999958277 ], [ 364544.276600003242493, 255125.809999998658895 ], [ 364563.453699998557568, 255146.442999999970198 ], [ 364565.852799996733665, 255148.784600000828505 ], [ 364596.080200001597404, 255102.802600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029300", "MAP": "A9-176-t76", "PARCEL_NAM": "14-98", "ACRE": ".518", "LONGITUDE": -64.90359912, "LATITUDE": 18.32499017, "OBJECTID_1": 33272, "PARCEL_NO_": "107402029300", "Tax_Legal_": "FRENCHMANS BAY EST. 14-98 FRENCHMAN BAY QTR", "Name": "APEX CONST. CO. INC.", "Address": "P O BOX 5048", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.907235418, "SHAPE_Area": 2359.40050625 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361748.274499997496605, 255068.939899999648333 ], [ 361745.882500000298023, 255065.754000000655651 ], [ 361650.525399997830391, 255089.882500000298023 ], [ 361717.976999998092651, 255123.154100000858307 ], [ 361722.103799998760223, 255111.999899998307228 ], [ 361727.040600001811981, 255100.43019999936223 ], [ 361729.488300003111362, 255097.072700001299381 ], [ 361731.129699997603893, 255093.708700001239777 ], [ 361735.81360000371933, 255084.642099998891354 ], [ 361741.789800003170967, 255072.897599998861551 ], [ 361748.274499997496605, 255068.939899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601045500", "MAP": "D9-5063-T91", "PARCEL_NAM": "2-I", "ACRE": "0.43", "LONGITUDE": -64.87436635, "LATITUDE": 18.32500332, "OBJECTID_1": 38055, "PARCEL_NO_": "107601045500", "Tax_Legal_": "2-I MARIENDAHL RED HOOK QTR.", "Name": "ROGERS, ANNIE L", "Address": "P.O. BOX 5611", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42800, "Improved_V": 69700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.77191753100001, "SHAPE_Area": 1398.9360074000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364829.061300002038479, 255109.775600001215935 ], [ 364789.674300000071526, 255095.098900001496077 ], [ 364778.992600001394749, 255118.442899998277426 ], [ 364768.300200000405312, 255143.053300000727177 ], [ 364798.938299998641014, 255143.5152000002563 ], [ 364798.205700002610683, 255134.854299999773502 ], [ 364799.856100000441074, 255130.434900000691414 ], [ 364802.305600002408028, 255126.866300001740456 ], [ 364806.369499996304512, 255123.099899999797344 ], [ 364829.061300002038479, 255109.775600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601044500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87473736, "LATITUDE": 18.32499724, "OBJECTID_1": 38047, "PARCEL_NO_": "107601044500", "Tax_Legal_": "2-22 MARIENDAHL RED HOOK QTR.", "Name": "TITUS, JOHN", "Address": "ESTATE BROOKMAN 7053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24900, "Improved_V": 156600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.595272787, "SHAPE_Area": 1126.26153092 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364778.992600001394749, 255118.442899998277426 ], [ 364739.681100003421307, 255094.900800000876188 ], [ 364737.976800002157688, 255105.652699999511242 ], [ 364736.315600000321865, 255111.338599998503923 ], [ 364730.610299997031689, 255118.469099998474121 ], [ 364768.300200000405312, 255143.053300000727177 ], [ 364778.992600001394749, 255118.442899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401012800", "MAP": "C9-104-T70", "PARCEL_NAM": "105", "ACRE": "0.11", "LONGITUDE": -64.91495292, "LATITUDE": 18.32501747, "OBJECTID_1": 32969, "PARCEL_NO_": "107401012800", "Tax_Legal_": "FRENCHMAN BAY 105 FRENCHMAN BAY QTR", "Name": "PADRON, FREDERICA", "Address": "PO Box 403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.376816456, "SHAPE_Area": 524.26732695500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360484.931199997663498, 255075.671799998730421 ], [ 360497.659299999475479, 255098.166799999773502 ], [ 360497.903599999845028, 255098.590599998831749 ], [ 360528.082699999213219, 255087.239799998700619 ], [ 360524.868299998342991, 255085.946899998933077 ], [ 360523.262800000607967, 255085.089400000870228 ], [ 360520.052000001072884, 255083.374400001019239 ], [ 360509.622100003063679, 255077.167300000786781 ], [ 360484.931199997663498, 255075.671799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401014400", "MAP": "C9-104-T70", "PARCEL_NAM": "106", "ACRE": ".25", "LONGITUDE": -64.91444311, "LATITUDE": 18.32505067, "OBJECTID_1": 32983, "PARCEL_NO_": "107401014400", "Tax_Legal_": "FRENCHMAN BAY 106 FRENCHMAN BAY QTR", "Name": "JASWA, CHRISTOPHER", "Address": "8124 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 217000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.857314221, "SHAPE_Area": 1172.4635657 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360584.499399997293949, 255090.656800001859665 ], [ 360550.906400002539158, 255068.083000000566244 ], [ 360542.698899999260902, 255075.327100001275539 ], [ 360537.789099998772144, 255083.730599999427795 ], [ 360537.709899999201298, 255093.018100000917912 ], [ 360539.234399996697903, 255103.374200001358986 ], [ 360539.605599999427795, 255105.396299999207258 ], [ 360584.806500002741814, 255101.117899999022484 ], [ 360584.431100003421307, 255098.677799999713898 ], [ 360584.499399997293949, 255090.656800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402037800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90088775, "LATITUDE": 18.32447775, "OBJECTID_1": 33283, "PARCEL_NO_": "107402037800", "Tax_Legal_": "ESTATE BOLONGO 60-Q FRENCHMAN'S BAY QTR", "Name": "HOWARD, MAUDLYN & LESMORE", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 58200, "Improved_V": 196700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.67411879399998, "SHAPE_Area": 3361.7656813100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362017.161300003528595, 255025.966600000858307 ], [ 362014.749600000679493, 255025.10249999910593 ], [ 362001.889899998903275, 255020.142099998891354 ], [ 361992.2753000035882, 255012.886199999600649 ], [ 361989.874399997293949, 255010.755699999630451 ], [ 361983.479599997401237, 255004.159400001168251 ], [ 361977.127999998629093, 254992.497299998998642 ], [ 361976.336099997162819, 254990.802099999040365 ], [ 361974.757600001990795, 254986.778400000184774 ], [ 361973.996299996972084, 254981.494800001382828 ], [ 361972.392599999904633, 254980.426199998706579 ], [ 361970.776399999856949, 254980.835200000554323 ], [ 361953.584899999201298, 255011.091899998486042 ], [ 361966.315099999308586, 255031.25 ], [ 361993.413199998438358, 255068.624299999326468 ], [ 361995.798000000417233, 255072.654500000178814 ], [ 362018.873599998652935, 255108.940400000661612 ], [ 362017.161300003528595, 255025.966600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402037900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90041121, "LATITUDE": 18.32468095, "OBJECTID_1": 33284, "PARCEL_NO_": "107402037900", "Tax_Legal_": "60-R ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "MRBOLONGO TRUST", "Address": "5700 Pmp", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.26557639200001, "SHAPE_Area": 3081.9455520900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362018.873599998652935, 255108.940400000661612 ], [ 362086.265000000596046, 255054.607700001448393 ], [ 362083.860500000417233, 255052.89919999986887 ], [ 362078.250500001013279, 255048.842500001192093 ], [ 362074.23870000243187, 255046.487700000405312 ], [ 362055.781599998474121, 255035.993000000715256 ], [ 362042.916599996387959, 255031.665899999439716 ], [ 362017.161300003528595, 255025.966600000858307 ], [ 362018.873599998652935, 255108.940400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402038000", "MAP": "D9-5049-T91", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90014813000001, "LATITUDE": 18.32490789, "OBJECTID_1": 33285, "PARCEL_NO_": "107402038000", "Tax_Legal_": "60-S ESTATE BOLONGO\nNo.3 FRENCHMAN'S BAY QTR.", "Name": "SMITH, IAN V and ADELINA C", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.177895914, "SHAPE_Area": 1853.72379955 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362087.868699997663498, 255055.676199998706579 ], [ 362086.265000000596046, 255054.607700001448393 ], [ 362018.873599998652935, 255108.940400000661612 ], [ 362101.228900000452995, 255096.526599999517202 ], [ 362100.5016999989748, 255087.232599999755621 ], [ 362090.188699997961521, 255067.305399999022484 ], [ 362088.628200002014637, 255061.170899998396635 ], [ 362089.468699999153614, 255057.166999999433756 ], [ 362087.035400003194809, 255058.835799999535084 ], [ 362087.868699997663498, 255055.676199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90276021, "LATITUDE": 18.32484977, "OBJECTID_1": 33245, "PARCEL_NO_": "107402028000", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-114 FRENCHMAN BAY QTR", "Name": "LACHU D NANDWANI REVOCABLE TRUST", "Address": "PO Box 600178", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73600, "Improved_V": 219900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.32253051399999, "SHAPE_Area": 2800.42432525 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361831.085500001907349, 255097.693199999630451 ], [ 361804.959100000560284, 255040.906199999153614 ], [ 361784.682599999010563, 255054.672499999403954 ], [ 361762.806100003421307, 255066.947900000959635 ], [ 361755.500699996948242, 255072.587699998170137 ], [ 361772.165299996733665, 255104.177000001072884 ], [ 361831.085500001907349, 255097.693199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028600", "MAP": "F9-3427-T76", "PARCEL_NAM": "14-64-1", "ACRE": ".69", "LONGITUDE": -64.90149458, "LATITUDE": 18.32479407, "OBJECTID_1": 33265, "PARCEL_NO_": "107402028600", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-64-1 FRENCHMAN BAY QTR", "Name": "SIMMONDS, RHETT V", "Address": "PO Box 7755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70200, "Improved_V": 356300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.864811253, "SHAPE_Area": 2443.58563276 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361982.808899998664856, 255082.891800001263618 ], [ 361897.704800002276897, 255039.343299999833107 ], [ 361893.590499997138977, 255049.019900001585484 ], [ 361910.064499996602535, 255102.983600001782179 ], [ 361921.412299998104572, 255096.110399998724461 ], [ 361930.310500003397465, 255092.805700000375509 ], [ 361943.231200002133846, 255090.589499998837709 ], [ 361959.395300000905991, 255086.288800001144409 ], [ 361977.1503000035882, 255084.534299999475479 ], [ 361982.808899998664856, 255082.891800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402027900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90225421, "LATITUDE": 18.32465161, "OBJECTID_1": 33244, "PARCEL_NO_": "107402027900", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-117 FRENCHMAN BAY QTR", "Name": "SHERIDAN, ROY ANA", "Address": "PO Box 10537", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 76800, "Improved_V": 296400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.57774359300001, "SHAPE_Area": 3327.8067619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361897.704800002276897, 255039.343299999833107 ], [ 361863.112499997019768, 255029.772100001573563 ], [ 361859.835100002586842, 255035.866900000721216 ], [ 361853.361199997365475, 255038.558200001716614 ], [ 361849.329599998891354, 255038.525199998170137 ], [ 361832.44200000166893, 255033.109600000083447 ], [ 361821.965400002896786, 255032.390599999576807 ], [ 361814.690600000321865, 255034.44200000166893 ], [ 361804.959100000560284, 255040.906199999153614 ], [ 361831.085500001907349, 255097.693199999630451 ], [ 361865.988899998366833, 255070.747699998319149 ], [ 361893.590499997138977, 255049.019900001585484 ], [ 361897.704800002276897, 255039.343299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015100", "MAP": "D9-4757-T89", "PARCEL_NAM": "101A", "ACRE": ".500", "LONGITUDE": -64.91410976, "LATITUDE": 18.32476383, "OBJECTID_1": 32989, "PARCEL_NO_": "107401015100", "Tax_Legal_": "FRENCHMAN BAY 101A FRENCHMAN BAY QTR", "Name": "HOHEB, FRANKE A. & CHANTEL", "Address": "PO Box 313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 78700, "Improved_V": 381000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.1340313, "SHAPE_Area": 2553.1885113500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360585.338100001215935, 255086.864000000059605 ], [ 360587.872100003063679, 255073.374800000339746 ], [ 360593.505500003695488, 255074.687399998307228 ], [ 360619.380000002682209, 255080.428800001740456 ], [ 360625.499499998986721, 255049.126200001686811 ], [ 360622.780900001525879, 255045.796100001782179 ], [ 360601.231700003147125, 255019.655299998819828 ], [ 360598.766000002622604, 255025.123500000685453 ], [ 360594.6841000020504, 255031.000700000673532 ], [ 360587.357100002467632, 255039.17339999973774 ], [ 360576.799500003457069, 255047.952899999916553 ], [ 360563.819399997591972, 255057.134799998253584 ], [ 360554.073499999940395, 255065.28770000115037 ], [ 360550.906400002539158, 255068.083000000566244 ], [ 360584.499399997293949, 255090.656800001859665 ], [ 360585.338100001215935, 255086.864000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601044300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87515897, "LATITUDE": 18.32486335, "OBJECTID_1": 38045, "PARCEL_NO_": "107601044300", "Tax_Legal_": "2-14 MARIENDAHL RED HOOK QTR.", "Name": "WILLIAMS, VENDEL & OLIVIA", "Address": "PO Box 10382", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 185000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.537487414, "SHAPE_Area": 932.752766941 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364721.209700003266335, 255086.094799999147654 ], [ 364719.510499998927116, 255083.896499998867512 ], [ 364685.279600001871586, 255106.476300001144409 ], [ 364685.552100002765656, 255106.912300001829863 ], [ 364691.153099998831749, 255112.024399999529123 ], [ 364697.567699998617172, 255116.298799999058247 ], [ 364708.827299997210503, 255119.768399998545647 ], [ 364712.858800001442432, 255119.801399998366833 ], [ 364717.712899997830391, 255117.941300000995398 ], [ 364719.332699999213219, 255117.110199999064207 ], [ 364720.952500000596046, 255116.279100000858307 ], [ 364729.926299996674061, 255104.109099999070168 ], [ 364729.989200003445148, 255096.721400000154972 ], [ 364721.209700003266335, 255086.094799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91508949, "LATITUDE": 18.32471448, "OBJECTID_1": 33120, "PARCEL_NO_": "107401051500", "Tax_Legal_": "FRENCHMAN'S BAY EST. 17-73 FRENCHMANS BAY QTR.", "Name": "MAYNARD, DAPHNE E. & JOY A", "Address": "PO Box 12354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.84176825, "SHAPE_Area": 1848.7951913100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360457.689900003373623, 255028.1064000017941 ], [ 360484.928999997675419, 255075.667899999767542 ], [ 360484.931199997663498, 255075.671799998730421 ], [ 360509.622100003063679, 255077.167300000786781 ], [ 360520.052000001072884, 255083.374400001019239 ], [ 360515.401100002229214, 255061.382599998265505 ], [ 360513.014499999582767, 255057.563400000333786 ], [ 360512.233400002121925, 255054.601700000464916 ], [ 360505.052100002765656, 255045.677000001072884 ], [ 360494.633000001311302, 255038.203400000929832 ], [ 360493.898599997162819, 255029.753600001335144 ], [ 360497.148999996483326, 255026.82490000128746 ], [ 360500.395900003612041, 255024.318399999290705 ], [ 360457.689900003373623, 255028.1064000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90668345, "LATITUDE": 18.3247011, "OBJECTID_1": 33198, "PARCEL_NO_": "107402023100", "Tax_Legal_": "FRENCHMAN BAY 14-24 FRENCHMAN BAY QTR", "Name": "AUBIN FAMILY REVOCABLE TRUST", "Address": "PO Box 304865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62100, "Improved_V": 737900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.34085313, "SHAPE_Area": 1333.3218436699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361396.529799997806549, 255088.64809999987483 ], [ 361391.02589999884367, 255072.137699998915195 ], [ 361389.479800000786781, 255064.314599998295307 ], [ 361388.730999998748302, 255057.55350000038743 ], [ 361388.964800000190735, 255030.113299999386072 ], [ 361358.299699999392033, 255032.817600000649691 ], [ 361377.964800000190735, 255090.818199999630451 ], [ 361396.529799997806549, 255088.64809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601045400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8746661, "LATITUDE": 18.32478083, "OBJECTID_1": 38054, "PARCEL_NO_": "107601045400", "Tax_Legal_": "MARIENDAHL 2-21 RED HOOK QTR.", "Name": "CORNELIUS, WALTON & ALLISON", "Address": "PO Box 10079", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 236700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.27269775900001, "SHAPE_Area": 1150.6862861499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364781.63629999756813, 255092.077799998223782 ], [ 364746.313199996948242, 255073.634700000286102 ], [ 364738.167400002479553, 255083.278299998492002 ], [ 364739.681100003421307, 255094.900800000876188 ], [ 364778.992600001394749, 255118.442899998277426 ], [ 364789.674300000071526, 255095.098900001496077 ], [ 364781.63629999756813, 255092.077799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90617108, "LATITUDE": 18.32470761, "OBJECTID_1": 33199, "PARCEL_NO_": "107402023200", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-19 FRENCHMAN BAY", "Name": "BACOT, BRIAN C.", "Address": "PO Box 11597", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96400, "Improved_V": 487000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.54587912700001, "SHAPE_Area": 2671.4000048799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361466.943300001323223, 255058.193599998950958 ], [ 361458.962899997830391, 255048.418000001460314 ], [ 361446.965300001204014, 255036.920800000429153 ], [ 361437.341700002551079, 255030.720300000160933 ], [ 361432.512900002300739, 255029.625300001353025 ], [ 361423.632600001990795, 255030.819200001657009 ], [ 361415.526299998164177, 255035.819099999964237 ], [ 361408.208400003612041, 255042.9364 ], [ 361400.856299996376038, 255054.0641999989748 ], [ 361399.204099997878075, 255058.694699998944998 ], [ 361398.306100003421307, 255069.453099999576807 ], [ 361450.53660000115633, 255090.989900000393391 ], [ 361466.943300001323223, 255058.193599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90435641000001, "LATITUDE": 18.32470709, "OBJECTID_1": 33219, "PARCEL_NO_": "107402025200", "Tax_Legal_": "FRENCHMAN BAY 14-81 FRENCHMAN BAY QTR.", "Name": "PATTISON, CONSTANCE", "Address": "PO Box 8989", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 91600, "Improved_V": 254000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.23558065500001, "SHAPE_Area": 3554.9527637199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361650.525399997830391, 255089.882500000298023 ], [ 361660.711900003254414, 255030.015299998223782 ], [ 361595.350199997425079, 255035.390999998897314 ], [ 361590.113099999725819, 255082.210900001227856 ], [ 361590.059199996292591, 255088.543299999088049 ], [ 361650.525399997830391, 255089.882500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402026600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90374066, "LATITUDE": 18.32467975, "OBJECTID_1": 33231, "PARCEL_NO_": "107402026600", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-97 FRENCHMAN BAY QTR.", "Name": "FREDERICKS, JACQUIEL T", "Address": "PO Box 6643", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 73600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.60820010399999, "SHAPE_Area": 3418.4461419700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361719.524099998176098, 255036.196199998259544 ], [ 361660.711900003254414, 255030.015299998223782 ], [ 361650.525399997830391, 255089.882500000298023 ], [ 361745.882500000298023, 255065.754000000655651 ], [ 361720.267499998211861, 255043.590599998831749 ], [ 361716.273699998855591, 255039.124899998307228 ], [ 361717.092600002884865, 255037.653999999165535 ], [ 361719.524099998176098, 255036.196199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601043600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87576903, "LATITUDE": 18.32467636, "OBJECTID_1": 38039, "PARCEL_NO_": "107601043600", "Tax_Legal_": "EST. MARIENDAHL 2-5 RED HOOK QTR.", "Name": "BROWN, ASHLEY N. & EDITH V", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 182500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.69688979599999, "SHAPE_Area": 1267.37314356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364629.584899999201298, 255050.725600000470877 ], [ 364627.347300000488758, 255048.839099999517202 ], [ 364626.872900001704693, 255085.111600000411272 ], [ 364638.902900002896786, 255092.809500001370907 ], [ 364667.777300000190735, 255110.988699998706579 ], [ 364670.183600001037121, 255112.486099999397993 ], [ 364675.071800000965595, 255106.615499999374151 ], [ 364659.161399997770786, 255081.153999999165535 ], [ 364641.596900001168251, 255060.534200001507998 ], [ 364629.584899999201298, 255050.725600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90494063, "LATITUDE": 18.32468379, "OBJECTID_1": 33218, "PARCEL_NO_": "107402025100", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-74 FRENCHMANS BAY QTR.", "Name": "D'ABREAU, PETER & LA'TISHA", "Address": "PO BOX 306353", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.412946081, "SHAPE_Area": 2681.27648692 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361583.619499996304512, 255087.223999999463558 ], [ 361587.100100003182888, 255057.277199998497963 ], [ 361588.964400000870228, 255027.739399999380112 ], [ 361532.450599998235703, 255035.720600001513958 ], [ 361544.113799996674061, 255086.478500001132488 ], [ 361583.619499996304512, 255087.223999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90533543, "LATITUDE": 18.32473796, "OBJECTID_1": 33217, "PARCEL_NO_": "107402025000", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-75 FRENCHMANS BAY QTR", "Name": "STAMPER, BILL", "Address": "7460 Woodmont Ter", "City": "Tamarac", "State": "Florida", "Zip": 33321, "Country": "United States", "Land_Value": 65700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.79829736, "SHAPE_Area": 1713.3052934 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361532.450599998235703, 255035.720600001513958 ], [ 361502.579300001263618, 255039.909099999815226 ], [ 361504.114600002765656, 255048.998700000345707 ], [ 361501.501500003039837, 255071.775400001555681 ], [ 361505.412600003182888, 255085.950599998235703 ], [ 361544.113799996674061, 255086.478500001132488 ], [ 361532.450599998235703, 255035.720600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403041600", "MAP": "D9-4672-T89", "PARCEL_NAM": "17-109", "ACRE": "1.23", "LONGITUDE": -64.91393949, "LATITUDE": 18.32414062, "OBJECTID_1": 37286, "PARCEL_NO_": "107403041600", "Tax_Legal_": "17-109 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "Virgin Islands Telephone Company", "Address": "PO Box 6100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 284200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 690.46852860199999, "SHAPE_Area": 5072.0085611799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360664.092799998819828, 254929.188400000333786 ], [ 360629.345799997448921, 254937.769999999552965 ], [ 360607.334399998188019, 254965.876299999654293 ], [ 360609.731799997389317, 254968.429099999368191 ], [ 360608.110100001096725, 254969.4712999984622 ], [ 360607.271499998867512, 254973.26410000026226 ], [ 360610.464299999177456, 254977.089899998158216 ], [ 360605.581500001251698, 254982.327300000935793 ], [ 360603.985100001096725, 254980.41440000012517 ], [ 360602.376000002026558, 254979.978999998420477 ], [ 360596.710299998521805, 254982.465799998492002 ], [ 360595.070699997246265, 254985.61879999935627 ], [ 360584.477099999785423, 254998.619899999350309 ], [ 360544.608199998736382, 255040.512299999594688 ], [ 360540.562200002372265, 255042.167899999767542 ], [ 360534.916199997067451, 255042.332800000905991 ], [ 360520.456600002944469, 255035.881599999964237 ], [ 360506.772600002586842, 255033.025400001555681 ], [ 360504.332099996507168, 255035.538600001484156 ], [ 360509.938500002026558, 255040.017400000244379 ], [ 360519.511799998581409, 255052.128100000321865 ], [ 360521.887599997222424, 255057.213799998164177 ], [ 360523.462399996817112, 255061.659600000828505 ], [ 360526.578000001609325, 255074.561900001019239 ], [ 360528.982600003480911, 255076.270300000905991 ], [ 360532.218599997460842, 255075.030200000852346 ], [ 360533.859999999403954, 255071.66609999909997 ], [ 360537.929300002753735, 255067.266499999910593 ], [ 360553.367899999022484, 255053.460700001567602 ], [ 360574.463299997150898, 255038.223499998450279 ], [ 360585.029899999499321, 255028.388599999248981 ], [ 360591.557700000703335, 255019.364999998360872 ], [ 360593.206299997866154, 255015.156599998474121 ], [ 360598.925999999046326, 255006.337499998509884 ], [ 360607.070100001990795, 254996.904899999499321 ], [ 360617.627599999308586, 254988.125399999320507 ], [ 360626.543799996376038, 254982.71000000089407 ], [ 360633.042900003492832, 254977.0636 ], [ 360640.357199996709824, 254970.368500001728535 ], [ 360662.356100000441074, 254943.739700000733137 ], [ 360672.085699997842312, 254937.4864999987185 ], [ 360680.170400001108646, 254935.019499998539686 ], [ 360692.26690000295639, 254934.907400000840425 ], [ 360716.395199999213219, 254942.2820999994874 ], [ 360728.471900001168251, 254944.491900000721216 ], [ 360739.754900000989437, 254945.217500001192093 ], [ 360757.502700001001358, 254944.307300001382828 ], [ 360765.547899998724461, 254946.484099999070168 ], [ 360769.564999997615814, 254948.205699998885393 ], [ 360770.401900000870228, 254944.624000001698732 ], [ 360769.629799999296665, 254940.606899999082088 ], [ 360764.003600001335144, 254938.44990000128746 ], [ 360761.588200002908707, 254938.00789999961853 ], [ 360757.562100000679493, 254937.341699998825788 ], [ 360752.726000003516674, 254937.090999998152256 ], [ 360726.124899998307228, 254936.028900001198053 ], [ 360695.549699999392033, 254928.179299999028444 ], [ 360693.132600001990795, 254927.948399998247623 ], [ 360689.102799996733665, 254927.7043999992311 ], [ 360664.092799998819828, 254929.188400000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87410056, "LATITUDE": 18.32454622, "OBJECTID_1": 38006, "PARCEL_NO_": "107601040200", "Tax_Legal_": "2E MARIENDAHL RED HOOK QTR", "Name": "ROBINSON, CLAUDETTE", "Address": "PO Box 25374", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 100300, "Improved_V": 110400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.50368917399999, "SHAPE_Area": 4111.5294278299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364829.061300002038479, 255109.775600001215935 ], [ 364841.222599998116493, 255102.064699999988079 ], [ 364845.293700002133846, 255097.453999999910593 ], [ 364848.581900000572205, 255090.092599999159575 ], [ 364862.657799996435642, 255046.933600001037121 ], [ 364809.603000000119209, 255027.500999998301268 ], [ 364796.444899998605251, 255057.579700000584126 ], [ 364781.63629999756813, 255092.077799998223782 ], [ 364789.674300000071526, 255095.098900001496077 ], [ 364829.061300002038479, 255109.775600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601044200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87531454000001, "LATITUDE": 18.3246882, "OBJECTID_1": 38044, "PARCEL_NO_": "107601044200", "Tax_Legal_": "2-13 MARIENDAHL RED HOOK QTR.", "Name": "PHIPPS, MARTHA", "Address": "PO Box 503022", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32700, "Improved_V": 193000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.75421303900001, "SHAPE_Area": 1064.54880278 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364706.859700001776218, 255066.767900001257658 ], [ 364704.8496999964118, 255063.551199998706579 ], [ 364670.355499997735023, 255082.371899999678135 ], [ 364672.823700003325939, 255086.543200001120567 ], [ 364685.279600001871586, 255106.476300001144409 ], [ 364719.510499998927116, 255083.896499998867512 ], [ 364710.043600000441074, 255071.649099998176098 ], [ 364706.859700001776218, 255066.767900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90134326, "LATITUDE": 18.32454507, "OBJECTID_1": 33266, "PARCEL_NO_": "107402028700", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-65 FRENCHMAN BAY QTR", "Name": "WINSTON, VALINE A", "Address": "PO Box 15102", "City": "Beverly Hills", "State": "California", "Zip": 90209, "Country": "United States", "Land_Value": 68500, "Improved_V": 221900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.076707443, "SHAPE_Area": 2699.7412069400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361982.808899998664856, 255082.891800001263618 ], [ 361986.044900000095367, 255081.651700001209974 ], [ 361987.673699997365475, 255079.7652000002563 ], [ 361986.928599998354912, 255072.581999998539686 ], [ 361959.033100001513958, 255034.145700000226498 ], [ 361958.2466000020504, 255031.817200001329184 ], [ 361956.64469999819994, 255030.537599999457598 ], [ 361947.098399996757507, 255015.26069999858737 ], [ 361903.473099999129772, 255024.825100000947714 ], [ 361897.704800002276897, 255039.343299999833107 ], [ 361982.808899998664856, 255082.891800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87629172, "LATITUDE": 18.324665, "OBJECTID_1": 37995, "PARCEL_NO_": "107601034200", "Tax_Legal_": "2B-2A MARIENDAHL RED HOOK QTR", "Name": "DE LA CRUZ, ALCEDO & CARMEN COLON", "Address": "PO Box 502487", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18900, "Improved_V": 84400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.795972663, "SHAPE_Area": 986.692910891 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364600.403099998831749, 255068.640799999237061 ], [ 364585.96679999679327, 255059.445599999278784 ], [ 364569.621100001037121, 255085.065200001001358 ], [ 364596.080200001597404, 255102.802600000053644 ], [ 364613.237499997019768, 255076.55629999935627 ], [ 364600.403099998831749, 255068.640799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034700", "MAP": null, "PARCEL_NAM": "2B-1A", "ACRE": null, "LONGITUDE": -64.87699074, "LATITUDE": 18.3246097, "OBJECTID_1": 38000, "PARCEL_NO_": "107601034700", "Tax_Legal_": "MARIENDAHL 2B-1A RED HOOK QTR", "Name": "CHARLES, MICHEL L. & MARK, CLA", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28700, "Improved_V": 64000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.56743693300001, "SHAPE_Area": 982.12445970900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364540.615500003099442, 255082.294700000435114 ], [ 364533.454999998211861, 255067.087999999523163 ], [ 364531.637599997222424, 255063.151399999856949 ], [ 364504.648299999535084, 255059.814800001680851 ], [ 364498.907700002193451, 255059.105099998414516 ], [ 364494.760999999940395, 255058.592399999499321 ], [ 364491.763800002634525, 255061.348099999129772 ], [ 364497.186099998652935, 255068.851500000804663 ], [ 364515.793799996376038, 255094.169900000095367 ], [ 364540.615500003099442, 255082.294700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015500", "MAP": "D9-4757-T89", "PARCEL_NAM": "101B", "ACRE": ".5003", "LONGITUDE": -64.91375417, "LATITUDE": 18.3244534, "OBJECTID_1": 32993, "PARCEL_NO_": "107401015500", "Tax_Legal_": "FRENCHMAN BAY 101B FRENCHMAN BAY QTR.", "Name": "HOHEB, FRANKE A. & CHANTEL", "Address": "PO Box 313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 64800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.02000982499999, "SHAPE_Area": 1681.73065331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360626.116700001060963, 255045.969000000506639 ], [ 360628.150499999523163, 255035.565799999982119 ], [ 360672.632299996912479, 255048.234600000083447 ], [ 360673.580700002610683, 255046.015099998563528 ], [ 360623.151600003242493, 254995.431400001049042 ], [ 360614.278300002217293, 255002.663499999791384 ], [ 360606.951399996876717, 255010.836100000888109 ], [ 360601.231700003147125, 255019.655299998819828 ], [ 360622.780900001525879, 255045.796100001782179 ], [ 360625.499499998986721, 255049.126200001686811 ], [ 360626.116700001060963, 255045.969000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034800", "MAP": "D9-4698-T89", "PARCEL_NAM": "2B-1B", "ACRE": ".23", "LONGITUDE": -64.87660453, "LATITUDE": 18.32460808, "OBJECTID_1": 38001, "PARCEL_NO_": "107601034800", "Tax_Legal_": "2B-1B ESTATE MARIENDAHL RED HOOK QTR.", "Name": "PHILLIPS, ZULA & BARBARA", "Address": "PO Box 1164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22900, "Improved_V": 148800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.63355757900001, "SHAPE_Area": 947.786315984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364569.621100001037121, 255085.065200001001358 ], [ 364585.96679999679327, 255059.445599999278784 ], [ 364552.546099998056889, 255065.736200001090765 ], [ 364531.637599997222424, 255063.151399999856949 ], [ 364533.454999998211861, 255067.087999999523163 ], [ 364540.615500003099442, 255082.294700000435114 ], [ 364564.713100001215935, 255093.257699999958277 ], [ 364569.621100001037121, 255085.065200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90308497, "LATITUDE": 18.32449024, "OBJECTID_1": 33233, "PARCEL_NO_": "107402026800", "Tax_Legal_": "FRENCHMAN BAY 14-115 FRENCHMAN BAY QTR", "Name": "JAMES, BRIAN DAVIS", "Address": "PO BOX 502815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 58300, "Improved_V": 261500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.966522927, "SHAPE_Area": 2245.7175633000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361794.493199996650219, 255038.920699998736382 ], [ 361770.582599997520447, 255006.005499999970198 ], [ 361752.753799997270107, 255016.414299998432398 ], [ 361735.70610000193119, 255029.784800000488758 ], [ 361734.887199997901917, 255031.255699999630451 ], [ 361734.858499996364117, 255034.633000001311302 ], [ 361736.440499998629093, 255038.234499998390675 ], [ 361729.937899999320507, 255044.302999999374151 ], [ 361725.11259999871254, 255042.785900000482798 ], [ 361720.267499998211861, 255043.590599998831749 ], [ 361745.882500000298023, 255065.754000000655651 ], [ 361748.274499997496605, 255068.939899999648333 ], [ 361757.208599999547005, 255061.413699999451637 ], [ 361775.031999997794628, 255051.638199999928474 ], [ 361794.493199996650219, 255038.920699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015600", "MAP": "D9-4757-T89", "PARCEL_NAM": "101C", "ACRE": ".500", "LONGITUDE": -64.91349714, "LATITUDE": 18.32429334, "OBJECTID_1": 32994, "PARCEL_NO_": "107401015600", "Tax_Legal_": "FRENCHMAN BAY 101C FRENCHMAN BAY QTR.", "Name": "HUNT, ANN M. & ANTOINETTE", "Address": "PO Box 306191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.32396111400001, "SHAPE_Area": 2224.6327218299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360688.430699996650219, 255011.263900000602007 ], [ 360651.537000000476837, 254971.169900000095367 ], [ 360646.751999996602535, 254976.964699998497963 ], [ 360636.99889999628067, 254985.961899999529123 ], [ 360634.560199998319149, 254988.263999998569489 ], [ 360624.022399999201298, 254994.721700001507998 ], [ 360623.151600003242493, 254995.431400001049042 ], [ 360673.580700002610683, 255046.015099998563528 ], [ 360677.774599999189377, 255036.200800001621246 ], [ 360688.430699996650219, 255011.263900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601045300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87457928000001, "LATITUDE": 18.32452501, "OBJECTID_1": 38053, "PARCEL_NO_": "107601045300", "Tax_Legal_": "2-20 EST. MARIENDAHL RED HOOK QTR.", "Name": "PONDT, CHARLES A. & DAWN M", "Address": "6216 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78400, "Improved_V": 145000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.618690601, "SHAPE_Area": 1356.8948839699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364796.444899998605251, 255057.579700000584126 ], [ 364765.927299998700619, 255042.975499998778105 ], [ 364746.313199996948242, 255073.634700000286102 ], [ 364781.63629999756813, 255092.077799998223782 ], [ 364796.444899998605251, 255057.579700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90582095000001, "LATITUDE": 18.3243256, "OBJECTID_1": 33201, "PARCEL_NO_": "107402023400", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-23 FRENCHMAN BAY QTR", "Name": "JONES, URA M", "Address": "PO Box 10873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 118600, "Improved_V": 492200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.70477620899999, "SHAPE_Area": 2800.67734595 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361491.002499997615814, 254979.019400000572205 ], [ 361465.286799997091293, 254968.676399998366833 ], [ 361460.330300003290176, 254982.567999999970198 ], [ 361458.705099999904633, 254984.032400000840425 ], [ 361442.325300000607967, 255013.662500001490116 ], [ 361437.436999998986721, 255019.533100001513958 ], [ 361439.026299998164177, 255022.290300000458956 ], [ 361451.85360000282526, 255031.050200000405312 ], [ 361461.455600000917912, 255039.783599998801947 ], [ 361470.235100001096725, 255050.410100001841784 ], [ 361474.20549999922514, 255057.619800001382828 ], [ 361495.131899997591972, 255062.223999999463558 ], [ 361496.078500002622604, 255045.766499999910593 ], [ 361494.528800003230572, 255038.365499999374151 ], [ 361491.373700000345707, 255030.10700000077486 ], [ 361481.019299998879433, 255015.034699998795986 ], [ 361478.744199998676777, 254998.128600001335144 ], [ 361482.050399996340275, 254988.656399998813868 ], [ 361491.002499997615814, 254979.019400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601044100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87544788, "LATITUDE": 18.32448624, "OBJECTID_1": 38043, "PARCEL_NO_": "107601044100", "Tax_Legal_": "2-12 ESTATE MARIENDAHL RED HOOK QUARTER", "Name": "WILLIAMS, ROXANNE", "Address": "8149 Sheldon Rd", "City": "Elk Grove", "State": "California", "Zip": 95758, "Country": "United States", "Land_Value": 34000, "Improved_V": 21800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.445709962, "SHAPE_Area": 1024.8497178600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364693.344800002872944, 255044.070199999958277 ], [ 364691.234600000083447, 255041.353700000792742 ], [ 364655.15259999781847, 255061.975900001823902 ], [ 364656.090800002217293, 255062.974800001829863 ], [ 364665.669399999082088, 255074.452300000935793 ], [ 364670.355499997735023, 255082.371899999678135 ], [ 364704.8496999964118, 255063.551199998706579 ], [ 364699.700000002980232, 255055.310199998319149 ], [ 364693.344800002872944, 255044.070199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601043400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87608609, "LATITUDE": 18.32444485, "OBJECTID_1": 38037, "PARCEL_NO_": "107601043400", "Tax_Legal_": "ESTATE MARIENDAHL 2-4 RED HOOK QUARTER", "Name": "CHARLES, MICHEL L.", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.10912988499999, "SHAPE_Area": 1066.0073861000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364604.756499998271465, 255030.890700001269579 ], [ 364599.286899998784065, 255027.370799999684095 ], [ 364600.403099998831749, 255068.640799999237061 ], [ 364613.237499997019768, 255076.55629999935627 ], [ 364626.872900001704693, 255085.111600000411272 ], [ 364627.347300000488758, 255048.839099999517202 ], [ 364615.173799999058247, 255038.575300000607967 ], [ 364611.968400001525879, 255036.227000001817942 ], [ 364604.756499998271465, 255030.890700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88806484, "LATITUDE": 18.32435943, "OBJECTID_1": 37498, "PARCEL_NO_": "107502020900", "Tax_Legal_": "EST. BOVONI 2-5-7 FRENCHMAN BAY QTR.", "Name": "WRIGHT, CARMEN", "Address": "419 Victor Ct", "City": "PICKERING", "State": "Ontario", "Zip": 0, "Country": "Canada", "Land_Value": 99200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.818578376, "SHAPE_Area": 3451.89117162 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363326.153499998152256, 254995.939100001007318 ], [ 363296.750399999320507, 255039.81700000166893 ], [ 363392.439099997282028, 255071.419799998402596 ], [ 363392.494800001382828, 255064.876299999654293 ], [ 363395.732699997723103, 255063.425200000405312 ], [ 363397.366899996995926, 255060.9054000005126 ], [ 363396.632500000298023, 255052.455699998885393 ], [ 363392.649499997496605, 255046.723600000143051 ], [ 363326.153499998152256, 254995.939100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85205106, "LATITUDE": 18.32334086, "OBJECTID_1": 39512, "PARCEL_NO_": "107702014800", "Tax_Legal_": "NAZARETH ESTATE 10 RED HOOK QUARTER", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 191700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1768.27647817, "SHAPE_Area": 28896.611670800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367528.015699997544289, 255105.267499998211861 ], [ 367553.187600001692772, 255084.786400001496077 ], [ 367556.432700000703335, 255082.490899998694658 ], [ 367534.924800001084805, 255051.495200000703335 ], [ 367518.048000000417233, 255044.813200000673532 ], [ 367500.397200003266335, 255034.325100000947714 ], [ 367489.987099997699261, 255025.79619999974966 ], [ 367485.998700000345707, 255020.697299998253584 ], [ 367476.398400001227856, 255011.75279999896884 ], [ 367462.779200002551079, 255001.297699999064207 ], [ 367452.349299997091293, 254995.090700000524521 ], [ 367444.31139999628067, 254992.069600000977516 ], [ 367432.241899996995926, 254989.015500001609325 ], [ 367420.157999999821186, 254987.649999998509884 ], [ 367406.445200003683567, 254988.171100001782179 ], [ 367395.94879999756813, 254989.773899998515844 ], [ 367375.738799996674061, 254995.730200000107288 ], [ 367365.244199998676777, 254997.122000001370907 ], [ 367349.119699999690056, 254996.778900001198053 ], [ 367333.022299997508526, 254993.26969999819994 ], [ 367324.181599996984005, 254989.81980000063777 ], [ 367310.551600001752377, 254980.63120000064373 ], [ 367284.927599996328354, 254959.523200001567602 ], [ 367279.337399996817112, 254953.14469999819994 ], [ 367272.928199999034405, 254948.237100001424551 ], [ 367263.297399997711182, 254942.880899999290705 ], [ 367250.428800001740456, 254938.975900001823902 ], [ 367230.299800001084805, 254935.433699999004602 ], [ 367211.765399999916553, 254934.015399999916553 ], [ 367135.946800000965595, 254936.35020000115037 ], [ 367112.569200001657009, 254935.525600001215935 ], [ 367094.848300002515316, 254933.269600000232458 ], [ 367078.748999997973442, 254929.971400000154972 ], [ 367064.269500002264977, 254925.842099998146296 ], [ 367052.2162000015378, 254920.888300001621246 ], [ 367037.767300002276897, 254913.170699998736382 ], [ 367029.749099999666214, 254907.8277000002563 ], [ 367019.339000001549721, 254899.298799999058247 ], [ 366987.408399999141693, 254861.2516999989748 ], [ 366982.604699999094009, 254857.20160000026226 ], [ 366972.174800001084805, 254850.994500000029802 ], [ 366960.110600002110004, 254847.307199999690056 ], [ 366948.825900003314018, 254846.792700000107288 ], [ 366927.0320999994874, 254849.358500000089407 ], [ 366887.439999997615814, 254858.744800001382828 ], [ 366859.983999997377396, 254863.375199999660254 ], [ 366831.734300002455711, 254866.521499998867512 ], [ 366796.233199998736382, 254868.975099999457598 ], [ 366792.982799999415874, 254871.903900001198053 ], [ 366792.948600001633167, 254875.91440000012517 ], [ 366799.960900001227856, 254904.680500000715256 ], [ 366802.347499996423721, 254908.499699998646975 ], [ 366803.952899999916553, 254909.357200000435114 ], [ 366828.687799997627735, 254940.168200001120567 ], [ 366848.653200000524521, 254962.918600000441074 ], [ 366890.818899996578693, 254935.399399999529123 ], [ 366892.514200001955032, 254925.703000001609325 ], [ 366899.895099997520447, 254911.197900000959635 ], [ 366907.227399997413158, 254902.392000000923872 ], [ 366919.402999997138977, 254892.992400001734495 ], [ 366933.162500001490116, 254886.983300000429153 ], [ 366946.891400001943111, 254884.562600001692772 ], [ 366963.010399997234344, 254885.538899999111891 ], [ 366972.664599999785423, 254888.151000000536442 ], [ 366982.302599996328354, 254892.662900000810623 ], [ 366996.699299998581409, 254906.501800000667572 ], [ 367010.320299997925758, 254916.745700001716614 ], [ 367026.362099997699261, 254926.79839999973774 ], [ 367045.632600001990795, 254936.455400001257658 ], [ 367069.750100001692772, 254945.096500001847744 ], [ 367089.868299998342991, 254949.905200000852346 ], [ 367112.421700000762939, 254952.833999998867512 ], [ 367132.57769999653101, 254953.210099998861551 ], [ 367172.117600001394749, 254949.945099998265505 ], [ 367190.659199997782707, 254950.519000001251698 ], [ 367209.182800002396107, 254953.20380000025034 ], [ 367226.882100000977516, 254957.99269999936223 ], [ 367245.364399999380112, 254965.532200001180172 ], [ 367258.207800000905991, 254972.392299998551607 ], [ 367275.039700001478195, 254984.351300001144409 ], [ 367283.043499998748302, 254991.38289999961853 ], [ 367297.478000000119209, 255000.789200000464916 ], [ 367329.667499996721745, 255008.440900001674891 ], [ 367340.122599996626377, 255011.692899998277426 ], [ 367362.586099997162819, 255025.175700001418591 ], [ 367377.866499997675419, 255029.94480000063777 ], [ 367384.281000003218651, 255034.219099998474121 ], [ 367392.311800003051758, 255038.084600001573563 ], [ 367408.394900001585484, 255043.282400000840425 ], [ 367425.309399999678135, 255045.531800001859665 ], [ 367443.795299999415874, 255052.64919999986887 ], [ 367467.081200003623962, 255064.238800000399351 ], [ 367479.125600002706051, 255070.247999999672174 ], [ 367500.780900001525879, 255083.935300000011921 ], [ 367528.015699997544289, 255105.267499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601045000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87498387, "LATITUDE": 18.32440001, "OBJECTID_1": 38050, "PARCEL_NO_": "107601045000", "Tax_Legal_": "2-17 EST. MARIENDAHL RED HOOK QTR.", "Name": "TONGE, ROSLYN, CECILE, & KEVIN", "Address": "PO Box 303192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84900, "Improved_V": 90900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.25403689699999, "SHAPE_Area": 1163.1735472600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364741.612000003457069, 255057.553100001066923 ], [ 364747.333499997854233, 255048.522900000214577 ], [ 364752.162399999797344, 255049.617899999022484 ], [ 364755.511900000274181, 255044.026900000870228 ], [ 364752.63120000064373, 255045.155699998140335 ], [ 364749.350400000810623, 255044.626499999314547 ], [ 364730.568300001323223, 255030.956000000238419 ], [ 364725.720399998128414, 255027.504000000655651 ], [ 364718.341099999845028, 255039.123199999332428 ], [ 364709.962399996817112, 255054.056200001388788 ], [ 364714.958800002932549, 255062.612300001084805 ], [ 364724.528399996459484, 255075.145100001245737 ], [ 364726.133900001645088, 255076.002599999308586 ], [ 364728.550999999046326, 255076.233500000089407 ], [ 364733.385300002992153, 255076.695300001651049 ], [ 364743.978799998760223, 255063.694200001657009 ], [ 364743.215700000524521, 255058.621700000017881 ], [ 364741.612000003457069, 255057.553100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601040400", "MAP": "D9-6702-T000", "PARCEL_NAM": "3A", "ACRE": ".91", "LONGITUDE": -64.87870663, "LATITUDE": 18.32425296, "OBJECTID_1": 38008, "PARCEL_NO_": "107601040400", "Tax_Legal_": "3A ESTATE NADIR RED HOOK QTR", "Name": "ESTRILL, GEORGE", "Address": "PO Box 2752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.93597556700001, "SHAPE_Area": 3676.6501541799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364371.97919999808073, 255057.283399999141693 ], [ 364355.084299996495247, 254994.280699998140335 ], [ 364330.193099997937679, 255002.622499998658895 ], [ 364313.680200003087521, 255008.156500000506639 ], [ 364291.7753000035882, 255017.54450000077486 ], [ 364332.475900001823902, 255073.760600000619888 ], [ 364342.356100000441074, 255069.695199999958277 ], [ 364353.687600001692772, 255064.721700001507998 ], [ 364371.97919999808073, 255057.283399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87673237, "LATITUDE": 18.32433516, "OBJECTID_1": 37997, "PARCEL_NO_": "107601034400", "Tax_Legal_": "2A MARIENDAHL RED HOOK QTR", "Name": "LARCHIVEAUX, ARCHIBALD", "Address": "6142 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.744470925, "SHAPE_Area": 2985.1185954900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364585.96679999679327, 255059.445599999278784 ], [ 364569.441299997270107, 255008.940600000321865 ], [ 364499.312899999320507, 255047.18470000103116 ], [ 364492.377899996936321, 255050.966699998825788 ], [ 364486.556000001728535, 255054.141600001603365 ], [ 364491.763800002634525, 255061.348099999129772 ], [ 364494.760999999940395, 255058.592399999499321 ], [ 364498.907700002193451, 255059.105099998414516 ], [ 364504.648299999535084, 255059.814800001680851 ], [ 364552.546099998056889, 255065.736200001090765 ], [ 364585.96679999679327, 255059.445599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601043200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87632646, "LATITUDE": 18.32427469, "OBJECTID_1": 38035, "PARCEL_NO_": "107601043200", "Tax_Legal_": "2-3 EST. MARIENDAHL RED HOOK QTR.", "Name": "INDUSTRIOUS, ELMA & EUNICE", "Address": "3286 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34700, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.170589893, "SHAPE_Area": 917.45985368100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364599.286899998784065, 255027.370799999684095 ], [ 364581.499300003051758, 255015.923799999058247 ], [ 364571.860399998724461, 255007.621399998664856 ], [ 364569.441299997270107, 255008.940600000321865 ], [ 364585.96679999679327, 255059.445599999278784 ], [ 364600.403099998831749, 255068.640799999237061 ], [ 364599.286899998784065, 255027.370799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402037200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90029924, "LATITUDE": 18.32418895, "OBJECTID_1": 33280, "PARCEL_NO_": "107402037200", "Tax_Legal_": "60L ESTATE BOLONGO FRENCHMAN'S BAY QUARTER", "Name": "CHERNYK, PATRICIA & MAX", "Address": "Fletcher Marshall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64900, "Improved_V": 123500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.35080445700001, "SHAPE_Area": 2356.5230271199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362059.54450000077486, 254972.906800001859665 ], [ 362027.225500002503395, 254980.452799998223782 ], [ 362031.700099997222424, 255023.130300000309944 ], [ 362048.603900000452995, 255026.646200001239777 ], [ 362057.440999999642372, 255030.518199998885393 ], [ 362064.668999999761581, 255033.954799998551607 ], [ 362074.299800001084805, 255039.311000000685453 ], [ 362079.112499997019768, 255042.305700000375509 ], [ 362086.324400000274181, 255047.642099998891354 ], [ 362088.743299998342991, 255047.661800000816584 ], [ 362059.54450000077486, 254972.906800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91449669, "LATITUDE": 18.32418562, "OBJECTID_1": 33113, "PARCEL_NO_": "107401050800", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 17-87 FRENCHMAN'S BAY QTR", "Name": "WEBSTER, JEAN M.", "Address": "PO Box 10027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.36744494199999, "SHAPE_Area": 2063.76471296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360582.140900000929832, 254988.890399999916553 ], [ 360547.001199997961521, 254948.917300000786781 ], [ 360544.456399999558926, 254963.673000000417233 ], [ 360538.553300000727177, 254994.022100001573563 ], [ 360530.974600002169609, 255031.745799999684095 ], [ 360534.187299996614456, 255033.249800000339746 ], [ 360536.597199998795986, 255034.324999999254942 ], [ 360538.211599998176098, 255034.127099998295307 ], [ 360541.438699997961521, 255033.942400000989437 ], [ 360573.993299998342991, 254998.745200000703335 ], [ 360582.140900000929832, 254988.890399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90635895, "LATITUDE": 18.32424876, "OBJECTID_1": 33202, "PARCEL_NO_": "107402023500", "Tax_Legal_": "14-18 FRENCHMAN'S BAY FRENCHMAN'S BAY QUARTER", "Name": "DANIEL F. PEREZ & CHRISTY PARKINS", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95600, "Improved_V": 317600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.79462185899999, "SHAPE_Area": 1481.8268167700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361403.11089999973774, 254978.722199998795986 ], [ 361400.632600001990795, 254985.668000001460314 ], [ 361398.931800000369549, 254995.997699998319149 ], [ 361396.164099998772144, 255036.927200000733137 ], [ 361396.950599998235703, 255039.25560000166297 ], [ 361398.556000001728535, 255040.113200001418591 ], [ 361401.786700002849102, 255039.506299998611212 ], [ 361408.301899999380112, 255031.960299998521805 ], [ 361428.580200001597404, 255017.982999999076128 ], [ 361435.908900000154972, 255009.599199999123812 ], [ 361440.81870000064373, 255001.195599999278784 ], [ 361403.11089999973774, 254978.722199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90545113, "LATITUDE": 18.32425105, "OBJECTID_1": 37538, "PARCEL_NO_": "107503012200", "Tax_Legal_": "BOLONGO 14 FRENCHMAN BAY QTR", "Name": "RAWLINS, VERNA V. (TRUSTEE)", "Address": "PO Box 9154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38300, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.10090279600001, "SHAPE_Area": 1978.5756257099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361532.450599998235703, 255035.720600001513958 ], [ 361520.035199999809265, 254978.623700000345707 ], [ 361503.9070999994874, 254978.702799998223782 ], [ 361494.981899999082088, 254985.173700001090765 ], [ 361490.916199997067451, 254989.151200000196695 ], [ 361487.645999997854233, 254994.401700001209974 ], [ 361486.818099997937679, 254996.928100001066923 ], [ 361487.527300000190735, 255008.332899998873472 ], [ 361489.093199998140335, 255013.834199998527765 ], [ 361498.652099996805191, 255027.633499998599291 ], [ 361502.579300001263618, 255039.909099999815226 ], [ 361532.450599998235703, 255035.720600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91476195, "LATITUDE": 18.3241046, "OBJECTID_1": 33114, "PARCEL_NO_": "107401050900", "Tax_Legal_": "FRENCHMAN'S BAY EST. 17-86 FRENCHMAN'S BAY QTR.", "Name": "JOSEPH, LEROY & HELENA", "Address": "PO Box 11884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 241500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.07733504300001, "SHAPE_Area": 2004.7371597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360544.456399999558926, 254963.673000000417233 ], [ 360547.001199997961521, 254948.917300000786781 ], [ 360502.925700001418591, 254965.587999999523163 ], [ 360504.846400000154972, 254975.170000001788139 ], [ 360506.343900002539158, 254988.692299999296665 ], [ 360510.273000001907349, 255000.756799999624491 ], [ 360526.971799999475479, 255028.33559999987483 ], [ 360529.370999999344349, 255030.677299998700619 ], [ 360530.974600002169609, 255031.745799999684095 ], [ 360538.553300000727177, 254994.022100001573563 ], [ 360544.456399999558926, 254963.673000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601044000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87560035, "LATITUDE": 18.32431726, "OBJECTID_1": 38042, "PARCEL_NO_": "107601044000", "Tax_Legal_": "2-11 ESTATE MARIENDAHL RED HOOK QUARTER", "Name": "WILLIAMS, SUSANNE and KEVANNA WHITNEY BROWNE", "Address": "6615 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29900, "Improved_V": 116900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.18478063200001, "SHAPE_Area": 974.23287935600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364691.234600000083447, 255041.353700000792742 ], [ 364688.559000000357628, 255037.909400001168251 ], [ 364675.769500002264977, 255024.716899998486042 ], [ 364636.893899999558926, 255044.663699999451637 ], [ 364644.100400000810623, 255050.633299998939037 ], [ 364652.894299998879433, 255059.571199998259544 ], [ 364655.15259999781847, 255061.975900001823902 ], [ 364691.234600000083447, 255041.353700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401051400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91521925000001, "LATITUDE": 18.32430151, "OBJECTID_1": 33119, "PARCEL_NO_": "107401051400", "Tax_Legal_": "FRENCHMAN'S BAY EST. 17-74 FRENCHMAN'S BAY QTR", "Name": "RITZA PRINCE HODGE FAMILY TRUST & STEDMAN HODGE", "Address": "PO Box 9910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.26691216699999, "SHAPE_Area": 2236.3954012899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360456.037900000810623, 255025.221900001168251 ], [ 360457.689900003373623, 255028.1064000017941 ], [ 360500.395900003612041, 255024.318399999290705 ], [ 360512.48870000243187, 255024.628499999642372 ], [ 360514.1300999969244, 255021.264400001615286 ], [ 360503.78830000013113, 255004.714499998837709 ], [ 360499.826899997889996, 254996.449400000274181 ], [ 360498.298799999058247, 254986.515500001609325 ], [ 360441.860500000417233, 254985.631400000303984 ], [ 360456.037900000810623, 255025.221900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90752154, "LATITUDE": 18.32434068, "OBJECTID_1": 33012, "PARCEL_NO_": "107401030400", "Tax_Legal_": "FRENCHMAN BAY 14-39A FRENCHMAN BAY QTR", "Name": "MENARD, LOUISE", "Address": "355 N Main St", "City": "Fall River", "State": "Massachusetts", "Zip": 2720, "Country": "United States", "Land_Value": 48500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.72411685599999, "SHAPE_Area": 1283.8736038100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361304.553700000047684, 254999.869300000369549 ], [ 361271.502099998295307, 254998.754399999976158 ], [ 361272.01349999755621, 255033.377900000661612 ], [ 361313.128300003707409, 255034.558800000697374 ], [ 361313.1587999984622, 255030.970499999821186 ], [ 361309.224399998784065, 255019.539200000464916 ], [ 361304.553700000047684, 254999.869300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402026900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90256666000001, "LATITUDE": 18.32427083, "OBJECTID_1": 33234, "PARCEL_NO_": "107402026900", "Tax_Legal_": "FRENCHMAN'S BAY 14-116 FRENCHMAN BAY QTR", "Name": "HAYWOOD 2015 FAMILY TRUST", "Address": "PO Box 8505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.019446071, "SHAPE_Area": 2309.9678043399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361794.493199996650219, 255038.920699998736382 ], [ 361813.142700001597404, 255026.829999998211861 ], [ 361821.223800003528595, 255024.785199999809265 ], [ 361833.313100002706051, 255025.517400000244379 ], [ 361850.200699999928474, 255030.932900000363588 ], [ 361855.047600001096725, 255029.917100001126528 ], [ 361856.710500001907349, 255024.020100001245737 ], [ 361855.93299999833107, 255020.636300001293421 ], [ 361852.776100002229214, 255012.588899999856949 ], [ 361844.806500002741814, 255001.546799998730421 ], [ 361838.390100002288818, 254997.483500000089407 ], [ 361828.725199997425079, 254996.137800000607967 ], [ 361788.384400002658367, 254998.763000000268221 ], [ 361781.111400000751019, 255000.603300001472235 ], [ 361770.582599997520447, 255006.005499999970198 ], [ 361794.493199996650219, 255038.920699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87753186, "LATITUDE": 18.33419088, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.797632529, "SHAPE_Area": 2300.4338317199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364433.617600001394749, 256094.245900001376867 ], [ 364431.126800000667572, 256102.669199999421835 ], [ 364431.789200000464916, 256119.562100000679493 ], [ 364435.007299996912479, 256120.432799998670816 ], [ 364435.741700001060963, 256128.882599998265505 ], [ 364431.711900003254414, 256128.6385000012815 ], [ 364427.664099998772144, 256130.505199998617172 ], [ 364425.218199998140335, 256133.651599999517202 ], [ 364425.158900000154972, 256140.617199998348951 ], [ 364460.350699998438358, 256174.469099998474121 ], [ 364480.101400002837181, 256127.76799999922514 ], [ 364433.617600001394749, 256094.245900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503050700", "MAP": "D9-3367-T86", "PARCEL_NAM": "4A", "ACRE": null, "LONGITUDE": -64.90933506, "LATITUDE": 18.33371561, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 512.28688071299996, "SHAPE_Area": 7859.4606386100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361122.255900003015995, 256047.934399999678135 ], [ 361101.29900000244379, 256046.918499998748302 ], [ 361070.554799996316433, 256058.910300001502037 ], [ 361063.450900003314018, 256040.909200001507998 ], [ 361097.429300002753735, 256027.888399999588728 ], [ 361110.452600002288818, 256013.640700001269579 ], [ 361110.470499999821186, 256011.529899999499321 ], [ 361107.299199998378754, 256005.171100001782179 ], [ 361099.32599999755621, 255994.551199998706579 ], [ 361093.726800002157688, 255989.228000000119209 ], [ 361074.45440000295639, 255979.782200001180172 ], [ 361067.249799996614456, 255973.601500000804663 ], [ 361065.658699996769428, 255971.055300001055002 ], [ 361060.81360000371933, 255971.860100001096725 ], [ 361055.124499998986721, 255977.090799998492002 ], [ 361047.77419999986887, 255988.007599998265505 ], [ 361045.265299998223782, 255998.541700001806021 ], [ 361047.558399997651577, 256013.337000001221895 ], [ 361051.581000000238419, 256014.425400000065565 ], [ 361054.646200001239777, 256033.237799998372793 ], [ 361053.796700000762939, 256038.297100000083447 ], [ 361049.75620000064373, 256039.319499999284744 ], [ 361053.514399997889996, 256071.436500001698732 ], [ 361057.46679999679327, 256080.756999999284744 ], [ 361064.642700001597404, 256090.314899999648333 ], [ 361069.31700000166893, 256109.562699999660254 ], [ 361125.737000003457069, 256109.948499999940395 ], [ 361136.79619999974966, 256113.042399998754263 ], [ 361158.020300000905991, 256109.233199998736382 ], [ 361154.84179999679327, 256103.718699999153614 ], [ 361144.473099999129772, 256090.33500000089407 ], [ 361141.308899998664856, 256083.131900001317263 ], [ 361129.379699997603893, 256063.613699998706579 ], [ 361127.792199999094009, 256060.645399998873472 ], [ 361122.255900003015995, 256047.934399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503050700", "MAP": "D9-3367-T86", "PARCEL_NAM": "4C", "ACRE": null, "LONGITUDE": -64.9098738, "LATITUDE": 18.33350633, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 431.58382969100001, "SHAPE_Area": 6659.5390222799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361065.658699996769428, 255971.055300001055002 ], [ 361062.462200000882149, 255967.651700001209974 ], [ 361059.281900003552437, 255962.348299998790026 ], [ 361058.504399999976158, 255958.964499998837709 ], [ 361056.909699998795986, 255956.840500000864267 ], [ 361056.14299999922514, 255952.190099999308586 ], [ 361001.223800003528595, 255962.295299999415874 ], [ 361013.351599998772144, 256053.164799999445677 ], [ 361014.863499999046326, 256064.998399998992682 ], [ 361021.049699999392033, 256096.079799998551607 ], [ 361022.547200001776218, 256109.602099999785423 ], [ 361058.034000001847744, 256108.837000001221895 ], [ 361069.31700000166893, 256109.562699999660254 ], [ 361064.642700001597404, 256090.314899999648333 ], [ 361057.46679999679327, 256080.756999999284744 ], [ 361053.514399997889996, 256071.436500001698732 ], [ 361049.75620000064373, 256039.319499999284744 ], [ 361053.796700000762939, 256038.297100000083447 ], [ 361054.646200001239777, 256033.237799998372793 ], [ 361051.581000000238419, 256014.425400000065565 ], [ 361047.558399997651577, 256013.337000001221895 ], [ 361045.265299998223782, 255998.541700001806021 ], [ 361047.77419999986887, 255988.007599998265505 ], [ 361055.124499998986721, 255977.090799998492002 ], [ 361060.81360000371933, 255971.860100001096725 ], [ 361065.658699996769428, 255971.055300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703061100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87785446, "LATITUDE": 18.33418171, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.15267189817, "SHAPE_Area": 0.00085424485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364417.171899996697903, 256132.885299999266863 ], [ 364417.141800001263618, 256132.912599999457598 ], [ 364417.160499997437, 256132.952399998903275 ], [ 364417.171899996697903, 256132.885299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703061400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87712952, "LATITUDE": 18.3330709, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.795060323, "SHAPE_Area": 1736.11344274 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364534.240500003099442, 256019.920099999755621 ], [ 364483.732299998402596, 255985.520700000226498 ], [ 364457.793700002133846, 256001.351500000804663 ], [ 364497.839599996805191, 256033.343299999833107 ], [ 364523.706299997866154, 256025.955600000917912 ], [ 364534.240500003099442, 256019.920099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703061800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87740763, "LATITUDE": 18.33273355, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.189086438, "SHAPE_Area": 1254.2575496699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364483.732299998402596, 255985.520700000226498 ], [ 364475.204599998891354, 255945.343100000172853 ], [ 364464.679300002753735, 255950.32319999858737 ], [ 364446.837999999523163, 255962.209499999880791 ], [ 364457.793700002133846, 256001.351500000804663 ], [ 364483.732299998402596, 255985.520700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063500", "MAP": "A9-451-T94", "PARCEL_NAM": "11-43", "ACRE": null, "LONGITUDE": -64.87542793, "LATITUDE": 18.33178653, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.27750135299999, "SHAPE_Area": 2141.34295965 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364694.89919999986887, 255902.811500001698732 ], [ 364707.283399999141693, 255868.92680000141263 ], [ 364667.566799998283386, 255839.173599999397993 ], [ 364663.50450000166893, 255846.197200000286102 ], [ 364652.092600002884865, 255855.254599999636412 ], [ 364642.091399997472763, 255860.652199998497963 ], [ 364632.350299999117851, 255861.980700001120567 ], [ 364694.89919999986887, 255902.811500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87844715, "LATITUDE": 18.33020189, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.399094985, "SHAPE_Area": 962.52458516299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364382.228299997746944, 255690.003299999982119 ], [ 364373.412799999117851, 255683.598299998790026 ], [ 364357.42679999768734, 255667.002199999988079 ], [ 364336.938100002706051, 255705.675700001418591 ], [ 364344.17339999973774, 255708.268100000917912 ], [ 364353.82039999961853, 255711.724500000476837 ], [ 364382.228299997746944, 255690.003299999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87834077, "LATITUDE": 18.32976698, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.08677605600001, "SHAPE_Area": 748.99809809500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364379.569499999284744, 255623.487100001424551 ], [ 364372.289300002157688, 255626.171700000762939 ], [ 364361.758699998259544, 255631.785000000149012 ], [ 364358.504699997603893, 255635.135899998247623 ], [ 364356.033600002527237, 255641.237399999052286 ], [ 364357.540100000798702, 255653.704199999570847 ], [ 364369.530500002205372, 255666.045800000429153 ], [ 364383.401500001549721, 255646.949799999594688 ], [ 364379.569499999284744, 255623.487100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87936171, "LATITUDE": 18.32964742, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.22825415299999, "SHAPE_Area": 969.41662847299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364282.811999998986721, 255622.695199999958277 ], [ 364254.711499996483326, 255608.321899998933077 ], [ 364241.533600002527237, 255640.722500000149012 ], [ 364272.918700002133846, 255648.156500000506639 ], [ 364277.895000003278255, 255631.942999999970198 ], [ 364282.811999998986721, 255622.695199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8780601, "LATITUDE": 18.32966361, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.59932819399999, "SHAPE_Area": 991.20223635900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364419.122000001370907, 255618.744500000029802 ], [ 364413.484999999403954, 255617.853999998420477 ], [ 364400.580399997532368, 255618.1706000007689 ], [ 364389.273999996483326, 255620.188999999314547 ], [ 364379.569499999284744, 255623.487100001424551 ], [ 364383.401500001549721, 255646.949799999594688 ], [ 364410.008000001311302, 255647.378699999302626 ], [ 364414.026900000870228, 255648.889199998229742 ], [ 364419.122000001370907, 255618.744500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87774141, "LATITUDE": 18.32927286, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.06494232399999, "SHAPE_Area": 1503.0167526800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364469.530500002205372, 255570.183400001376867 ], [ 364415.453599996864796, 255576.073600001633167 ], [ 364408.031400002539158, 255595.433499999344349 ], [ 364408.771200001239777, 255603.25 ], [ 364413.57490000128746, 255607.30009999871254 ], [ 364425.651600003242493, 255609.509899999946356 ], [ 364434.486800000071526, 255613.592999998480082 ], [ 364469.530500002205372, 255570.183400001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87769087, "LATITUDE": 18.3290109, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.334759289, "SHAPE_Area": 1193.74922393 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364469.530500002205372, 255570.183400001376867 ], [ 364448.805500000715256, 255541.938299998641014 ], [ 364417.276600003242493, 255551.390599999576807 ], [ 364418.066799998283386, 255553.296900000423193 ], [ 364415.453599996864796, 255576.073600001633167 ], [ 364469.530500002205372, 255570.183400001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87822098, "LATITUDE": 18.32872852, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.25630910500001, "SHAPE_Area": 1268.5565546400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364402.246200002729893, 255517.281500000506639 ], [ 364360.373700000345707, 255510.394900001585484 ], [ 364364.140900000929832, 255541.456500001251698 ], [ 364407.642200000584126, 255546.456599999219179 ], [ 364407.672799997031689, 255542.868299998342991 ], [ 364402.246200002729893, 255517.281500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87892394000001, "LATITUDE": 18.32829938, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.09107355699999, "SHAPE_Area": 1247.74123308 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364325.937799997627735, 255482.459800001233816 ], [ 364330.138400003314018, 255462.651399999856949 ], [ 364326.121299996972084, 255460.929800000041723 ], [ 364322.089699998497963, 255460.896800000220537 ], [ 364314.813100002706051, 255463.159200001507998 ], [ 364308.355400003492832, 255463.950800001621246 ], [ 364293.85080000013113, 255462.776599999517202 ], [ 364291.964800000190735, 255494.84739999845624 ], [ 364291.593000002205372, 255499.301500000059605 ], [ 364318.761900000274181, 255502.004900000989437 ], [ 364320.970499999821186, 255497.617899999022484 ], [ 364325.937799997627735, 255482.459800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107502030300", "MAP": "D9-5338-T92", "PARCEL_NAM": "3F-2", "ACRE": "5.00", "LONGITUDE": -64.88502729, "LATITUDE": 18.32647978, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 569.42105638500004, "SHAPE_Area": 17469.817235300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363634.53999999910593, 255362.931499999016523 ], [ 363718.101599998772144, 255302.738899998366833 ], [ 363776.555900000035763, 255200.416900001466274 ], [ 363733.917099997401237, 255215.647300001233816 ], [ 363653.408100001513958, 255200.63399999961257 ], [ 363569.471400000154972, 255304.016199998557568 ], [ 363595.8783999979496, 255327.874800000339746 ], [ 363611.06700000166893, 255343.408900000154972 ], [ 363614.256300002336502, 255347.656899999827147 ], [ 363615.861699998378754, 255348.514400001615286 ], [ 363617.452799998223782, 255351.060499999672174 ], [ 363634.53999999910593, 255362.931499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90285526, "LATITUDE": 18.32666495, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 497.446389012, "SHAPE_Area": 10885.701169100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361854.035899996757507, 255243.324400000274181 ], [ 361847.117200002074242, 255203.58219999819994 ], [ 361833.400799997150898, 255204.525400001555681 ], [ 361824.509800001978874, 255206.985800001770258 ], [ 361811.545900002121925, 255214.26799999922514 ], [ 361798.535199999809265, 255227.038199998438358 ], [ 361785.562299996614456, 255235.375799998641014 ], [ 361756.329999998211861, 255259.201200000941753 ], [ 361744.933799996972084, 255271.773499999195337 ], [ 361742.478900000452995, 255275.975299999117851 ], [ 361729.4628000035882, 255289.378699999302626 ], [ 361695.385499998927116, 255314.008900001645088 ], [ 361688.90259999781847, 255317.755499999970198 ], [ 361684.053900003433228, 255318.982400000095367 ], [ 361691.856299996376038, 255349.654800001531839 ], [ 361705.55290000140667, 255351.033500000834465 ], [ 361716.844800002872944, 255350.703699998557568 ], [ 361724.126800000667572, 255347.80799999833107 ], [ 361763.103100001811981, 255316.040800001472235 ], [ 361775.246399998664856, 255310.440600000321865 ], [ 361791.410400003194809, 255306.140000000596046 ], [ 361819.719400003552437, 255296.028099998831749 ], [ 361835.098700001835823, 255289.187899999320507 ], [ 361859.397799998521805, 255276.510000001639128 ], [ 361854.035899996757507, 255243.324400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403039400", "MAP": "D9-2628-T84", "PARCEL_NAM": "16-5", "ACRE": "0.51", "LONGITUDE": -64.90848791000001, "LATITUDE": 18.32690674, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.92706332200001, "SHAPE_Area": 2042.9987939299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361205.40820000320673, 255279.390099998563528 ], [ 361190.142200000584126, 255272.932300001382828 ], [ 361155.316200003027916, 255290.801300000399351 ], [ 361176.741300001740456, 255331.506700001657009 ], [ 361196.195299997925758, 255319.633499998599291 ], [ 361205.894500002264977, 255316.968699999153614 ], [ 361214.760300002992153, 255317.463500000536442 ], [ 361211.583599999547005, 255311.737900000065565 ], [ 361205.40820000320673, 255279.390099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90122139, "LATITUDE": 18.32646887, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.72018658100001, "SHAPE_Area": 3760.6492593399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362008.829899996519089, 255246.702300000935793 ], [ 362003.17849999666214, 255247.500399999320507 ], [ 361998.353200003504753, 255245.983300000429153 ], [ 361990.363799996674061, 255237.263000000268221 ], [ 361977.542000003159046, 255227.870000001043081 ], [ 361974.347300000488758, 255224.255300000309944 ], [ 361969.516599997878075, 255223.371300000697374 ], [ 361955.75, 255230.224800001829863 ], [ 361936.328299999237061, 255238.29839999973774 ], [ 361909.590499997138977, 255253.278299998492002 ], [ 361936.593400001525879, 255301.839800000190735 ], [ 362008.829899996519089, 255246.702300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90914036, "LATITUDE": 18.32624037, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.15955862199999, "SHAPE_Area": 2838.97459888 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361155.796300001442432, 255234.443300001323223 ], [ 361146.449600003659725, 255195.736699998378754 ], [ 361134.327899999916553, 255198.803899999707937 ], [ 361129.479299999773502, 255200.030699998140335 ], [ 361081.764799997210503, 255216.316599998623133 ], [ 361090.254799999296665, 255260.92680000141263 ], [ 361127.5033999979496, 255242.655499998480082 ], [ 361141.253899998962879, 255237.701799999922514 ], [ 361155.796300001442432, 255234.443300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87397324, "LATITUDE": 18.32621331, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.56210163399999, "SHAPE_Area": 1093.83916847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364858.62950000166893, 255235.8293999992311 ], [ 364841.790399998426437, 255224.714699998497963 ], [ 364813.983800001442432, 255270.505499999970198 ], [ 364817.94879999756813, 255278.348400000482798 ], [ 364820.317400000989437, 255284.278400000184774 ], [ 364822.700400002300739, 255288.519799999892712 ], [ 364858.62950000166893, 255235.8293999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87413174, "LATITUDE": 18.32608255, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.45694022199999, "SHAPE_Area": 1258.1734347700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364841.790399998426437, 255224.714699998497963 ], [ 364821.742299996316433, 255211.673900000751019 ], [ 364795.607600003480911, 255250.512299999594688 ], [ 364805.994400002062321, 255261.785300001502037 ], [ 364813.983800001442432, 255270.505499999970198 ], [ 364841.790399998426437, 255224.714699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-715-T68", "PARCEL_NAM": "14-40", "ACRE": "2.52", "LONGITUDE": -64.900688, "LATITUDE": 18.32576038, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 368.44956298099999, "SHAPE_Area": 8364.7550026600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362053.095499999821186, 255161.993900001049042 ], [ 362018.873599998652935, 255108.940400000661612 ], [ 361965.144500002264977, 255168.662300001829863 ], [ 361947.23480000346899, 255188.569600000977516 ], [ 361964.858599998056889, 255202.223900001496077 ], [ 361972.048799999058247, 255210.093199998140335 ], [ 361973.634499996900558, 255213.272599998861551 ], [ 361982.430200003087521, 255221.999400001019239 ], [ 361994.451200000941753, 255230.752599999308586 ], [ 362000.048600003123283, 255236.286800000816584 ], [ 362001.637800000607967, 255239.044100001454353 ], [ 362004.049599997699261, 255239.90819999948144 ], [ 362007.278399996459484, 255239.51240000128746 ], [ 362024.28830000013113, 255230.574599999934435 ], [ 362033.22070000320673, 255223.259399998933077 ], [ 362042.167400002479553, 255214.255699999630451 ], [ 362072.996100001037121, 255192.343100000172853 ], [ 362053.095499999821186, 255161.993900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030200", "MAP": "D9-6332-T97", "PARCEL_NAM": "16-64-2", "ACRE": ".503", "LONGITUDE": -64.90749375, "LATITUDE": 18.3259832, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.90574180499999, "SHAPE_Area": 1939.6852202499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361298.264700002968311, 255170.170299999415874 ], [ 361252.090899996459484, 255194.912500001490116 ], [ 361261.721699997782707, 255200.268699999898672 ], [ 361283.364500001072884, 255215.433499999344349 ], [ 361290.587099999189377, 255219.503400001674891 ], [ 361300.246699996292591, 255221.482299998402596 ], [ 361308.318800002336502, 255220.492899999022484 ], [ 361317.99099999666214, 255220.994199998676777 ], [ 361326.844200000166893, 255222.966499999165535 ], [ 361298.264700002968311, 255170.170299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90180307, "LATITUDE": 18.32565082, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 405.80505469899998, "SHAPE_Area": 5940.9204826799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361965.144500002264977, 255168.662300001829863 ], [ 361902.667499996721745, 255119.388399999588728 ], [ 361832.795900002121925, 255180.877999998629093 ], [ 361810.078900001943111, 255197.157400000840425 ], [ 361804.382600001990795, 255203.232500001788139 ], [ 361797.82599999755621, 255215.633299998939037 ], [ 361805.134999997913837, 255209.571400001645088 ], [ 361814.056500002741814, 255203.522700000554323 ], [ 361824.578199997544289, 255198.964800000190735 ], [ 361832.659299999475479, 255196.920000001788139 ], [ 361889.952399998903275, 255192.111600000411272 ], [ 361935.167000003159046, 255185.304499998688698 ], [ 361940.003100000321865, 255185.555100001394749 ], [ 361945.63289999961853, 255187.28999999910593 ], [ 361947.23480000346899, 255188.569600000977516 ], [ 361965.144500002264977, 255168.662300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "C9-104-T70", "PARCEL_NAM": "103", "ACRE": ".27", "LONGITUDE": -64.91442332, "LATITUDE": 18.32568456, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.63659098599999, "SHAPE_Area": 1008.99201153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360582.453400000929832, 255141.513599999248981 ], [ 360583.855200000107288, 255138.582800000905991 ], [ 360546.657499998807907, 255144.674499999731779 ], [ 360546.932499997317791, 255146.289200000464916 ], [ 360547.710100002586842, 255149.673000000417233 ], [ 360546.741899996995926, 255168.663499999791384 ], [ 360543.419600002467632, 255180.035399999469519 ], [ 360543.385399997234344, 255184.045899998396635 ], [ 360545.777400001883507, 255187.231899999082088 ], [ 360548.189099997282028, 255188.096000000834465 ], [ 360558.685599997639656, 255186.493099998682737 ], [ 360558.842000000178814, 255168.129299998283386 ], [ 360572.596100002527237, 255162.753400001674891 ], [ 360582.453400000929832, 255141.513599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030200", "MAP": "D9-6046-T96", "PARCEL_NAM": "16-63-6", "ACRE": ".526", "LONGITUDE": -64.9088376, "LATITUDE": 18.32580118, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.80180209700001, "SHAPE_Area": 1723.0070052799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361214.307499997317791, 255181.304400000721216 ], [ 361202.234399996697903, 255178.672499999403954 ], [ 361190.18469999730587, 255173.296500001102686 ], [ 361184.526100002229214, 255174.938900001347065 ], [ 361182.082000002264977, 255177.874299999326468 ], [ 361177.262100003659725, 255175.723900001496077 ], [ 361178.111599996685982, 255170.664599999785423 ], [ 361175.7195999994874, 255167.47859999909997 ], [ 361156.402300000190735, 255163.30970000103116 ], [ 361107.957000002264977, 255170.723700001835823 ], [ 361114.231299996376038, 255191.462200000882149 ], [ 361127.940399996936321, 255191.363299999386072 ], [ 361148.128799997270107, 255187.939899999648333 ], [ 361181.212700001895428, 255185.255399998277426 ], [ 361204.620999999344349, 255182.491700001060963 ], [ 361214.307499997317791, 255181.304400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "C9-104-T70", "PARCEL_NAM": "104", "ACRE": null, "LONGITUDE": -64.9143922, "LATITUDE": 18.32585592, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.782732704799997, "SHAPE_Area": 111.059568867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360558.685599997639656, 255186.493099998682737 ], [ 360570.816200003027916, 255182.37049999833107 ], [ 360558.842000000178814, 255168.129299998283386 ], [ 360558.685599997639656, 255186.493099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "11", "ACRE": null, "LONGITUDE": -64.91429753, "LATITUDE": 18.32579139, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.168611870099994, "SHAPE_Area": 293.94831319000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360587.836900003254414, 255172.166299998760223 ], [ 360572.596100002527237, 255162.753400001674891 ], [ 360558.842000000178814, 255168.129299998283386 ], [ 360570.816200003027916, 255182.37049999833107 ], [ 360578.915299996733665, 255178.214999999850988 ], [ 360587.836900003254414, 255172.166299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030200", "MAP": "D9-6396-T98", "PARCEL_NAM": "16-63-7", "ACRE": ".518", "LONGITUDE": -64.90890875, "LATITUDE": 18.32554494, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.60014436399999, "SHAPE_Area": 2152.13422743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361176.204000003635883, 255158.183100000023842 ], [ 361185.747800000011921, 255126.186299998313189 ], [ 361100.91780000180006, 255145.123700000345707 ], [ 361107.957000002264977, 255170.723700001835823 ], [ 361156.402300000190735, 255163.30970000103116 ], [ 361159.336800001561642, 255153.55290000140667 ], [ 361167.605099998414516, 255156.529500000178814 ], [ 361176.204000003635883, 255158.183100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90113694, "LATITUDE": 18.32522671, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.01812572699998, "SHAPE_Area": 5211.4950851399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362018.873599998652935, 255108.940400000661612 ], [ 361995.798000000417233, 255072.654500000178814 ], [ 361994.09009999781847, 255083.828499998897314 ], [ 361989.210799999535084, 255088.643699999898672 ], [ 361980.314400002360344, 255091.737300001084805 ], [ 361963.367499999701977, 255093.287399999797344 ], [ 361948.819700002670288, 255097.179099999368191 ], [ 361930.24210000038147, 255100.826699998229742 ], [ 361916.477300003170967, 255107.469099998474121 ], [ 361902.667499996721745, 255119.388399999588728 ], [ 361965.144500002264977, 255168.662300001829863 ], [ 362018.873599998652935, 255108.940400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028400", "MAP": "F9-2817-T71", "PARCEL_NAM": "14-63-A", "ACRE": ".502", "LONGITUDE": -64.90217673, "LATITUDE": 18.32519368, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.71219363399999, "SHAPE_Area": 2107.3349292600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361882.441299997270107, 255127.24439999833703 ], [ 361858.557599999010563, 255091.162999998778105 ], [ 361865.988899998366833, 255070.747699998319149 ], [ 361831.085500001907349, 255097.693199999630451 ], [ 361848.317299999296665, 255157.36259999871254 ], [ 361882.441299997270107, 255127.24439999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028400", "MAP": "F9-2817-T71", "PARCEL_NAM": "14-63-B", "ACRE": ".508", "LONGITUDE": -64.90190892, "LATITUDE": 18.32494662, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.263817639, "SHAPE_Area": 2087.00015863 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361904.377199999988079, 255108.003299999982119 ], [ 361893.590499997138977, 255049.019900001585484 ], [ 361865.988899998366833, 255070.747699998319149 ], [ 361858.557599999010563, 255091.162999998778105 ], [ 361882.441299997270107, 255127.24439999833703 ], [ 361904.377199999988079, 255108.003299999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403049900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91206056, "LATITUDE": 18.32429185, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.42764740600001, "SHAPE_Area": 1242.4279416100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360791.083700001239777, 254977.934900000691414 ], [ 360791.101700000464916, 254975.824099998921156 ], [ 360789.507100000977516, 254973.700100000947714 ], [ 360784.672799997031689, 254973.238400001078844 ], [ 360782.237700000405312, 254975.118299998342991 ], [ 360784.212499998509884, 255027.274599999189377 ], [ 360785.807099997997284, 255029.398600000888109 ], [ 360789.818899996578693, 255031.753400001674891 ], [ 360793.848600000143051, 255031.997499998658895 ], [ 360811.634300000965595, 255026.654599998146296 ], [ 360833.503600001335144, 255015.223499998450279 ], [ 360865.162000000476837, 254990.573600001633167 ], [ 360860.33669999986887, 254989.056400001049042 ], [ 360848.218599997460842, 254991.701400000602007 ], [ 360830.361100003123283, 255005.487500000745058 ], [ 360826.304300002753735, 255008.409600000828505 ], [ 360819.823299996554852, 255011.945099998265505 ], [ 360811.726000003516674, 255015.889600001275539 ], [ 360803.632299996912479, 255019.412000000476837 ], [ 360800.405199997127056, 255019.596599999815226 ], [ 360796.380900003015995, 255018.719300001859665 ], [ 360792.390699997544289, 255013.831500001251698 ], [ 360791.083700001239777, 254977.934900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90717047, "LATITUDE": 18.32425433, "OBJECTID_1": 33204, "PARCEL_NO_": "107402023700", "Tax_Legal_": "FRENCHMAN'S BAY 14-9 FRENCHMAN BAY", "Name": "WILLIAM H ROWLES and ANDREA E GIRARD", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72800, "Improved_V": 287000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.22793077599999, "SHAPE_Area": 1254.77097686 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361343.319700002670288, 254992.798300001770258 ], [ 361311.173299998044968, 254980.080699998885393 ], [ 361312.63120000064373, 254998.246700000017881 ], [ 361314.940499998629093, 255011.142299998551607 ], [ 361319.630900003015995, 255028.490299999713898 ], [ 361322.802199997007847, 255034.84910000115633 ], [ 361339.74379999935627, 255033.932300001382828 ], [ 361343.319700002670288, 254992.798300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601044900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87513445, "LATITUDE": 18.32409898, "OBJECTID_1": 38049, "PARCEL_NO_": "107601044900", "Tax_Legal_": "ESTATE MARIENDAHL 2-16 RED HOOK QUARTER", "Name": "CHARLES, MICHAEL,LASHION M. & NOEL", "Address": "PO Box 6862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 104500, "Improved_V": 177500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.769282769, "SHAPE_Area": 1518.67751929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364730.022600002586842, 254998.140900000929832 ], [ 364715.54619999974966, 254992.838599998503923 ], [ 364688.474600002169609, 255024.438499998301268 ], [ 364694.266199998557568, 255030.567800000309944 ], [ 364705.421499997377396, 255046.280000001192093 ], [ 364709.962399996817112, 255054.056200001388788 ], [ 364718.341099999845028, 255039.123199999332428 ], [ 364741.669399999082088, 255002.391399998217821 ], [ 364741.276799999177456, 255002.24379999935627 ], [ 364730.022600002586842, 254998.140900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402027800", "MAP": "D9-6285-T97", "PARCEL_NAM": "14-118", "ACRE": ".583", "LONGITUDE": -64.90208677, "LATITUDE": 18.32414121, "OBJECTID_1": 33243, "PARCEL_NO_": "107402027800", "Tax_Legal_": "14-118 ESTATE FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "MEERSMAN, JERRY WILLIAM", "Address": "PO Box 9901", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70100, "Improved_V": 75600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.040779579, "SHAPE_Area": 2570.04709383 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361880.363300003111362, 254992.549699999392033 ], [ 361850.803099997341633, 254960.221500001847744 ], [ 361840.270700000226498, 254966.045899998396635 ], [ 361838.652699999511242, 254966.666000001132488 ], [ 361833.760799996554852, 254972.958799999207258 ], [ 361818.342000000178814, 254984.442699998617172 ], [ 361812.670800000429153, 254987.562699999660254 ], [ 361813.459200002253056, 254989.680100001394749 ], [ 361827.983599998056889, 254988.532400000840425 ], [ 361836.849399998784065, 254989.027100000530481 ], [ 361841.674699999392033, 254990.544300001114607 ], [ 361847.291900001466274, 254993.756700001657009 ], [ 361858.468800000846386, 255006.935899998992682 ], [ 361860.054499998688698, 255010.115299999713898 ], [ 361863.990699999034405, 255021.335499998182058 ], [ 361863.933200001716614, 255028.089999999850988 ], [ 361863.112499997019768, 255029.772100001573563 ], [ 361897.704800002276897, 255039.343299999833107 ], [ 361903.473099999129772, 255024.825100000947714 ], [ 361880.363300003111362, 254992.549699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401032800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90908018, "LATITUDE": 18.32382737, "OBJECTID_1": 33035, "PARCEL_NO_": "107401032800", "Tax_Legal_": "16-16 FRENCHMANS BAY FRENCHMAN BAY QUARTER", "Name": "HAMM, SINCLAIR & KATHLEEN", "Address": "PO Box 11584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88100, "Improved_V": 360500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.56426260400002, "SHAPE_Area": 3914.9369283599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361141.647299997508526, 254907.554699998348951 ], [ 361112.688400000333786, 254899.296100001782179 ], [ 361104.418499998748302, 254923.504200000315905 ], [ 361110.244999997317791, 254996.801300000399351 ], [ 361144.610799998044968, 255032.968499999493361 ], [ 361143.501599997282028, 254973.853199999779463 ], [ 361141.647299997508526, 254907.554699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90875375, "LATITUDE": 18.32427349, "OBJECTID_1": 33024, "PARCEL_NO_": "107401031600", "Tax_Legal_": "FRENCHMAN BAY 14-50 FRENCHMAN BAY QTR", "Name": "DAVIS, ZEDNA & MYRTLE", "Address": "50 Sterling St", "City": "Hartford", "State": "Connecticut", "Zip": 6112, "Country": "United States", "Land_Value": 45700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.68561629300001, "SHAPE_Area": 1722.5857217299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361176.310500003397465, 255003.463700000196695 ], [ 361167.440999999642372, 255003.391100000590086 ], [ 361165.076099999248981, 254997.039000000804663 ], [ 361159.640500001609325, 254972.507599998265505 ], [ 361143.501599997282028, 254973.853199999779463 ], [ 361144.610799998044968, 255032.968499999493361 ], [ 361188.959700003266335, 255033.120400000363588 ], [ 361176.310500003397465, 255003.463700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90842513, "LATITUDE": 18.32428877, "OBJECTID_1": 33020, "PARCEL_NO_": "107401031200", "Tax_Legal_": "FRENCHMAN BAY 14-49 FRENCHMAN BAY QTR", "Name": "LEATHAM, GRAYSON & ANTHIA", "Address": "6124 Annas Retrea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40500, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.57175546799999, "SHAPE_Area": 1343.1063163199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361195.006700001657009, 254985.884899999946356 ], [ 361169.229900002479553, 254982.718600001186132 ], [ 361170.016400001943111, 254985.047100000083447 ], [ 361173.207500003278255, 254989.083999998867512 ], [ 361178.821099996566772, 254992.718499999493361 ], [ 361182.039200000464916, 254993.589200001209974 ], [ 361181.988799996674061, 254999.499400001019239 ], [ 361177.944700002670288, 255000.943999998271465 ], [ 361176.310500003397465, 255003.463700000196695 ], [ 361188.959700003266335, 255033.120400000363588 ], [ 361222.020300000905991, 255033.179900001734495 ], [ 361195.006700001657009, 254985.884899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90683705, "LATITUDE": 18.32431455, "OBJECTID_1": 33203, "PARCEL_NO_": "107402023600", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-10 4 FRENCHMAN BAY QTR", "Name": "SILCOTT, GEORGE & LORETTA", "Address": "PO Box 11179", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.76821900100001, "SHAPE_Area": 1622.07513623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361390.732100002467632, 255011.973700001835823 ], [ 361361.056699998676777, 254993.154599998146296 ], [ 361343.319700002670288, 254992.798300001770258 ], [ 361339.74379999935627, 255033.932300001382828 ], [ 361358.299699999392033, 255032.817600000649691 ], [ 361388.964800000190735, 255030.113299999386072 ], [ 361390.732100002467632, 255011.973700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90816091000001, "LATITUDE": 18.32421197, "OBJECTID_1": 33018, "PARCEL_NO_": "107401031000", "Tax_Legal_": "FRENCHMAN BAY 14-45 FRENCHMAN BAY QTR", "Name": "CANNONIER, AVON", "Address": "PO Box 10256", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64000, "Improved_V": 76600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.19357517399999, "SHAPE_Area": 2249.0390598 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361228.02419999986887, 254991.010299999266863 ], [ 361220.774599999189377, 254990.106600001454353 ], [ 361218.58219999819994, 254963.490800000727177 ], [ 361196.014399997889996, 254962.250700000673532 ], [ 361195.006700001657009, 254985.884899999946356 ], [ 361222.020300000905991, 255033.179900001734495 ], [ 361266.369300000369549, 255033.331700000911951 ], [ 361228.02419999986887, 254991.010299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402025400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9050081, "LATITUDE": 18.32420576, "OBJECTID_1": 33220, "PARCEL_NO_": "107402025400", "Tax_Legal_": "FRENCHMANS BAY EST. 14-73&14-71A FRENCHMAN BAY QTR.", "Name": "WILKINSON, URLA E", "Address": "PO Box 2775", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.965529025, "SHAPE_Area": 3315.1302549400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361588.964400000870228, 255027.739399999380112 ], [ 361589.097499996423721, 255012.119500000029802 ], [ 361586.15820000320673, 254978.531599998474121 ], [ 361520.035199999809265, 254978.623700000345707 ], [ 361532.450599998235703, 255035.720600001513958 ], [ 361588.964400000870228, 255027.739399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90787578, "LATITUDE": 18.32413774, "OBJECTID_1": 33017, "PARCEL_NO_": "107401030900", "Tax_Legal_": "FRENCHMAN BAY 14-44 FRENCHMAN BAY QTR", "Name": "ROHAN, ANWAR Z.", "Address": "14-44 Estate Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40400, "Improved_V": 257100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.75053137200001, "SHAPE_Area": 1885.63925851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361271.502099998295307, 254998.754399999976158 ], [ 361270.879199996590614, 254977.217799998819828 ], [ 361226.67230000346899, 254960.390700001269579 ], [ 361228.227399997413158, 254967.158399999141693 ], [ 361229.816600002348423, 254969.915600001811981 ], [ 361233.01129999756813, 254973.530299998819828 ], [ 361236.222199998795986, 254975.245400000363588 ], [ 361235.343900002539158, 254983.68189999833703 ], [ 361232.92679999768734, 254983.4510000012815 ], [ 361229.687100000679493, 254985.113299999386072 ], [ 361228.05290000140667, 254987.633000001311302 ], [ 361228.02419999986887, 254991.010299999266863 ], [ 361266.369300000369549, 255033.331700000911951 ], [ 361272.01349999755621, 255033.377900000661612 ], [ 361271.502099998295307, 254998.754399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90427896, "LATITUDE": 18.32425466, "OBJECTID_1": 33221, "PARCEL_NO_": "107402025500", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-82 FRENCHMAN BAY QTR.", "Name": "MAGRAS, NESTOR & GWENDOLYN", "Address": "PO Box 503154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 69400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.65283986200001, "SHAPE_Area": 2866.1214242400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361669.192199997603893, 254981.111000001430511 ], [ 361667.61370000243187, 254977.087400000542402 ], [ 361594.799199998378754, 255005.411200001835823 ], [ 361595.350199997425079, 255035.390999998897314 ], [ 361660.711900003254414, 255030.015299998223782 ], [ 361669.192199997603893, 254981.111000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402026700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90372316, "LATITUDE": 18.32428633, "OBJECTID_1": 33232, "PARCEL_NO_": "107402026700", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-96 FRENCHMAN BAY QTR.", "Name": "LAMPHEAR, STEVEN", "Address": "PO Box 600176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63400, "Improved_V": 146700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.43281208, "SHAPE_Area": 2279.8397725899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361734.977099999785423, 255020.701799999922514 ], [ 361669.192199997603893, 254981.111000001430511 ], [ 361660.711900003254414, 255030.015299998223782 ], [ 361719.524099998176098, 255036.196199998259544 ], [ 361734.977099999785423, 255020.701799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88782774000001, "LATITUDE": 18.32395755, "OBJECTID_1": 37500, "PARCEL_NO_": "107502021100", "Tax_Legal_": "EST.BOVONI 2-5-10 FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE MANUEL", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.44731154499999, "SHAPE_Area": 3685.4136040799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363388.502099998295307, 254965.629700001329184 ], [ 363353.135799996554852, 254952.252399999648333 ], [ 363328.648000001907349, 254987.093499999493361 ], [ 363400.752199999988079, 255042.145799998193979 ], [ 363405.541500002145767, 255047.884500000625849 ], [ 363397.3445999994874, 254968.868500001728535 ], [ 363388.502099998295307, 254965.629700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601045200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87444799, "LATITUDE": 18.32423632, "OBJECTID_1": 38052, "PARCEL_NO_": "107601045200", "Tax_Legal_": "ESTATE MARIENDAHL 2-19 RED HOOK QTR.", "Name": "LANGUEDO, SHIRLEY", "Address": "60-26 Fresh Meadows Smith Bay", "City": "ST.THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.89983883100001, "SHAPE_Area": 1138.1752133299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364809.603000000119209, 255027.500999998301268 ], [ 364772.625900000333786, 255013.899500001221895 ], [ 364765.927299998700619, 255042.975499998778105 ], [ 364796.444899998605251, 255057.579700000584126 ], [ 364809.603000000119209, 255027.500999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401050100", "MAP": "D9-8852-T014", "PARCEL_NAM": "17-106", "ACRE": "1.477", "LONGITUDE": -64.91186509000001, "LATITUDE": 18.32393874, "OBJECTID_1": 33106, "PARCEL_NO_": "107401050100", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 17-106 FRENCHMAN'S BAY QTR", "Name": "ANTILLES SCHOOL INC", "Address": "7280 Frenchman S Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 129900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.99269716600003, "SHAPE_Area": 5692.7540710599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360887.895199999213219, 254972.394499998539686 ], [ 360859.153800003230572, 254938.595400001853704 ], [ 360838.39469999819994, 254914.360800001770258 ], [ 360794.530199997127056, 254951.998599998652935 ], [ 360799.161200001835823, 254976.312300000339746 ], [ 360791.083700001239777, 254977.934900000691414 ], [ 360792.390699997544289, 255013.831500001251698 ], [ 360796.380900003015995, 255018.719300001859665 ], [ 360800.405199997127056, 255019.596599999815226 ], [ 360803.632299996912479, 255019.412000000476837 ], [ 360811.726000003516674, 255015.889600001275539 ], [ 360819.823299996554852, 255011.945099998265505 ], [ 360826.304300002753735, 255008.409600000828505 ], [ 360830.361100003123283, 255005.487500000745058 ], [ 360848.218599997460842, 254991.701400000602007 ], [ 360860.33669999986887, 254989.056400001049042 ], [ 360865.162000000476837, 254990.573600001633167 ], [ 360887.895199999213219, 254972.394499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88863757, "LATITUDE": 18.32403487, "OBJECTID_1": 37497, "PARCEL_NO_": "107502020800", "Tax_Legal_": "EST. BOVONI 2-5-6 FRENCHMAN BAY QTR.", "Name": "LIMA, RAUL", "Address": "PO Box 11598", "City": "San Juan", "State": "Puerto Rico", "Zip": 920, "Country": "United States", "Land_Value": 99200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.271865894, "SHAPE_Area": 3304.1491286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363252.210100002586842, 254967.469500001519918 ], [ 363270.214100003242493, 255031.155999999493361 ], [ 363296.750399999320507, 255039.81700000166893 ], [ 363326.153499998152256, 254995.939100001007318 ], [ 363303.72240000218153, 254978.656899999827147 ], [ 363294.091600000858307, 254973.300700001418591 ], [ 363278.818400003015995, 254967.687300000339746 ], [ 363269.957999996840954, 254966.559300001710653 ], [ 363259.475900001823902, 254966.473499998450279 ], [ 363252.210100002586842, 254967.469500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87725208000001, "LATITUDE": 18.32420603, "OBJECTID_1": 37998, "PARCEL_NO_": "107601034500", "Tax_Legal_": "2BA MARIENDAHL RED HOOK QTR", "Name": "LARCHIE, INC.", "Address": "6142 MARIENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68600, "Improved_V": 305700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.80089559499999, "SHAPE_Area": 1141.04126793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364507.785999998450279, 255029.208999998867512 ], [ 364493.781199999153614, 254998.850999999791384 ], [ 364492.928999997675419, 255000.633400000631809 ], [ 364489.653399996459484, 255006.517200000584126 ], [ 364484.76519999653101, 255012.387800000607967 ], [ 364480.694099999964237, 255016.998599998652935 ], [ 364473.385099999606609, 255023.060499999672174 ], [ 364470.933799996972084, 255026.84010000154376 ], [ 364472.479900002479553, 255034.663199998438358 ], [ 364486.556000001728535, 255054.141600001603365 ], [ 364492.377899996936321, 255050.966699998825788 ], [ 364499.312899999320507, 255047.18470000103116 ], [ 364505.15089999884367, 255044.000999998301268 ], [ 364502.999799996614456, 255038.979699999094009 ], [ 364502.026199996471405, 255036.707100000232458 ], [ 364509.170000001788139, 255032.209100000560284 ], [ 364507.785999998450279, 255029.208999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601045100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87478975000001, "LATITUDE": 18.32413777, "OBJECTID_1": 38051, "PARCEL_NO_": "107601045100", "Tax_Legal_": "2-18 ESTATE MARIENDAHL RED HOOK QUARTER", "Name": "MOSES, SARVILLE J. & CATHERINE", "Address": "PO Box 6862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.82255358, "SHAPE_Area": 1253.93434028 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364755.511900000274181, 255044.026900000870228 ], [ 364758.706399999558926, 255038.694600000977516 ], [ 364765.927299998700619, 255042.975499998778105 ], [ 364772.625900000333786, 255013.899500001221895 ], [ 364745.295800000429153, 255003.754399999976158 ], [ 364741.669399999082088, 255002.391399998217821 ], [ 364725.720399998128414, 255027.504000000655651 ], [ 364730.568300001323223, 255030.956000000238419 ], [ 364749.350400000810623, 255044.626499999314547 ], [ 364752.63120000064373, 255045.155699998140335 ], [ 364755.511900000274181, 255044.026900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028800", "MAP": "D9-6285-T97", "PARCEL_NAM": "14-66A", "ACRE": ".509", "LONGITUDE": -64.90162648, "LATITUDE": 18.32415649, "OBJECTID_1": 33267, "PARCEL_NO_": "107402028800", "Tax_Legal_": "14-66A ESTATE FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "POLE, HENVILLE A. , JR. & BALY, JOSI", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 54000, "Improved_V": 188100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.023061144, "SHAPE_Area": 1829.56057151 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361942.436800003051758, 254994.535399999469519 ], [ 361936.074400000274181, 254984.139699999243021 ], [ 361881.219999998807907, 254986.646099999547005 ], [ 361880.363300003111362, 254992.549699999392033 ], [ 361903.473099999129772, 255024.825100000947714 ], [ 361947.098399996757507, 255015.26069999858737 ], [ 361944.704700000584126, 255012.285799998790026 ], [ 361941.47580000013113, 255012.681600000709295 ], [ 361939.089299999177456, 255008.862300001084805 ], [ 361939.922600001096725, 255005.702799998223782 ], [ 361935.950300000607967, 254998.704199999570847 ], [ 361942.436800003051758, 254994.535399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042700", "MAP": "D3-196-T50", "PARCEL_NAM": "21 REM", "ACRE": null, "LONGITUDE": -64.87328362, "LATITUDE": 18.32355364, "OBJECTID_1": 38030, "PARCEL_NO_": "107601042700", "Tax_Legal_": "21 ESTATE NADIR RED HOOK QTR", "Name": "HERMAN, HUMPHREY", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 212000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.90003215199999, "SHAPE_Area": 2530.1583169800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364865.02759999781847, 254982.224800001829863 ], [ 364869.626000002026558, 254985.770599998533726 ], [ 364884.701800003647804, 255000.382100000977516 ], [ 364885.649899996817112, 254998.359200000762939 ], [ 364887.273299999535084, 254997.105900000780821 ], [ 364889.733599998056889, 254992.270899999886751 ], [ 364892.987700000405312, 254988.920099999755621 ], [ 364893.813799999654293, 254986.604800000786781 ], [ 364895.435400001704693, 254985.562600001692772 ], [ 364898.705600000917912, 254980.311999998986721 ], [ 364906.833400003612041, 254972.779199998825788 ], [ 364914.937899999320507, 254967.990299999713898 ], [ 364920.600100003182888, 254965.925799999386072 ], [ 364932.716399997472763, 254963.491799999028444 ], [ 364951.346100002527237, 254953.722899999469519 ], [ 364975.659500002861023, 254939.3564000017941 ], [ 364942.598899997770786, 254939.296900000423193 ], [ 364914.376199997961521, 254939.276999998837709 ], [ 364906.313000001013279, 254939.210999999195337 ], [ 364900.268100000917912, 254939.22239999845624 ], [ 364865.02759999781847, 254982.224800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601043900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87576755000001, "LATITUDE": 18.32416605, "OBJECTID_1": 38041, "PARCEL_NO_": "107601043900", "Tax_Legal_": "2-10 MARIENDAHL RED HOOK QTR.", "Name": "HARRIS, GENETH & WILLIAMS, VAL", "Address": "PO Box 502251", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31100, "Improved_V": 123200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.10726314, "SHAPE_Area": 1038.34862331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364659.785300001502037, 255007.909699998795986 ], [ 364617.688100002706051, 255027.407900001853704 ], [ 364631.29110000282526, 255039.762699998915195 ], [ 364634.491200000047684, 255042.744199998676777 ], [ 364636.893899999558926, 255044.663699999451637 ], [ 364675.769500002264977, 255024.716899998486042 ], [ 364659.785300001502037, 255007.909699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90340389000001, "LATITUDE": 18.32402102, "OBJECTID_1": 33235, "PARCEL_NO_": "107402027000", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-95 FRENCHMAN'S BAY QTR.", "Name": "MORTON, BARBARA L.", "Address": "BOX 3661", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 73600, "Improved_V": 257200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.44599903, "SHAPE_Area": 3460.2304805099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361742.811200000345707, 254953.004900000989437 ], [ 361669.192199997603893, 254981.111000001430511 ], [ 361734.977099999785423, 255020.701799999922514 ], [ 361739.845600001513958, 255017.153000000864267 ], [ 361752.041000001132488, 255005.431600000709295 ], [ 361760.156199999153614, 254999.376299999654293 ], [ 361763.424599997699261, 254994.336800001561642 ], [ 361764.331699997186661, 254982.522999998182058 ], [ 361761.963100001215935, 254976.592999998480082 ], [ 361751.610500000417233, 254961.309500001370907 ], [ 361742.811200000345707, 254953.004900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402037300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90075785000001, "LATITUDE": 18.3240142, "OBJECTID_1": 33281, "PARCEL_NO_": "107402037300", "Tax_Legal_": "ESTATE BOLONGO 60M FRENCHMAN'S BAY QUARTER", "Name": "JOSEPH, EDDY", "Address": "PO BOX 503176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.50944885300001, "SHAPE_Area": 2421.2853050899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362027.225500002503395, 254980.452799998223782 ], [ 361998.475199997425079, 254947.709100000560284 ], [ 361987.093299999833107, 254958.592799998819828 ], [ 361981.371799997985363, 254967.622999999672174 ], [ 361979.707000002264977, 254973.731100000441074 ], [ 361979.624300003051758, 254983.440699998289347 ], [ 361981.19370000064373, 254988.519799999892712 ], [ 361982.792000003159046, 254990.221599999815226 ], [ 361986.755199998617172, 254998.275600001215935 ], [ 361991.542700000107288, 255004.225400000810623 ], [ 362002.751999996602535, 255013.60530000180006 ], [ 362015.602600000798702, 255019.621100001037121 ], [ 362031.700099997222424, 255023.130300000309944 ], [ 362027.225500002503395, 254980.452799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502020700", "MAP": "A9-400-T92", "PARCEL_NAM": "2-5-5", "ACRE": null, "LONGITUDE": -64.88922735, "LATITUDE": 18.3240087, "OBJECTID_1": 37496, "PARCEL_NO_": "107502020700", "Tax_Legal_": "EST. BOVONI 2-5-5 FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE MARIA", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.42331220599999, "SHAPE_Area": 3434.95386684 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363151.207099996507168, 254991.763000000268221 ], [ 363270.214100003242493, 255031.155999999493361 ], [ 363252.210100002586842, 254967.469500001519918 ], [ 363151.207099996507168, 254991.763000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90675003, "LATITUDE": 18.3239831, "OBJECTID_1": 33208, "PARCEL_NO_": "107402024100", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-11 FRENCHMAN BAY QTR", "Name": "KHEMANI, AMIT & PRAMILA", "Address": "11-12 MAIN STREET", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69900, "Improved_V": 397300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.91681676499999, "SHAPE_Area": 1927.34331729 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361396.701700001955032, 254973.814599998295307 ], [ 361369.529799997806549, 254945.0945999994874 ], [ 361357.338100001215935, 254956.393800001591444 ], [ 361343.319700002670288, 254992.798300001770258 ], [ 361361.056699998676777, 254993.154599998146296 ], [ 361390.732100002467632, 255011.973700001835823 ], [ 361392.558700002729893, 254986.868500001728535 ], [ 361396.701700001955032, 254973.814599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402025700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90435705, "LATITUDE": 18.32392529, "OBJECTID_1": 33223, "PARCEL_NO_": "107402025700", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-83 FRENCHMAN'S BAY QTR.", "Name": "WILLIAMS, AGNES C.", "Address": "PO BOX 502835", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 66000, "Improved_V": 321400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.479448547, "SHAPE_Area": 2679.5740921800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361667.61370000243187, 254977.087400000542402 ], [ 361659.771799996495247, 254951.058699999004602 ], [ 361591.166900001466274, 254958.518699999898672 ], [ 361591.957000002264977, 254960.425000000745058 ], [ 361592.594300001859665, 254980.272999998182058 ], [ 361594.799199998378754, 255005.411200001835823 ], [ 361667.61370000243187, 254977.087400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601044700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87540415, "LATITUDE": 18.32390714, "OBJECTID_1": 38048, "PARCEL_NO_": "107601044700", "Tax_Legal_": "2-15 ESTATE MARIENDAHL RED HOOK QTR.", "Name": "FREEMAN, URLIN & LAVERNE", "Address": "PO Box 12268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39400, "Improved_V": 274100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.23679731, "SHAPE_Area": 1355.11080296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364715.54619999974966, 254992.838599998503923 ], [ 364712.337700001895428, 254991.663400001823902 ], [ 364689.83110000193119, 254983.246500000357628 ], [ 364670.538900002837181, 254976.122499998658895 ], [ 364664.811999998986721, 254985.785999998450279 ], [ 364661.545400001108646, 254990.614399999380112 ], [ 364661.500500001013279, 254995.891399998217821 ], [ 364688.474600002169609, 255024.438499998301268 ], [ 364715.54619999974966, 254992.838599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601043300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87627447, "LATITUDE": 18.32380216, "OBJECTID_1": 38036, "PARCEL_NO_": "107601043300", "Tax_Legal_": "2-7 MARIENDAHL RED HOOK QTR.", "Name": "MARTIIN, VERNICE N.", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.27417198099999, "SHAPE_Area": 1335.9657266300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364588.49040000140667, 254952.521800000220537 ], [ 364580.898699998855591, 254950.338100001215935 ], [ 364583.085900001227856, 254999.329799998551607 ], [ 364581.600000001490116, 255004.103300001472235 ], [ 364588.009099997580051, 255009.010999999940395 ], [ 364592.017300002276897, 255011.787999998778105 ], [ 364608.621699996292591, 255021.89130000025034 ], [ 364606.580899998545647, 254992.133099999278784 ], [ 364598.674699999392033, 254955.451200000941753 ], [ 364588.49040000140667, 254952.521800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601043700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87594425, "LATITUDE": 18.32399273, "OBJECTID_1": 38040, "PARCEL_NO_": "107601043700", "Tax_Legal_": "MARIENDAHL 2-9 RED HOOK QTR.", "Name": "ADAMS, H. & HARRY, DAWINA & P", "Address": "PO Box 12256", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 234100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.08305565500001, "SHAPE_Area": 1275.01443898 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364659.785300001502037, 255007.909699998795986 ], [ 364642.204700000584126, 254989.189500000327826 ], [ 364634.915500000119209, 254992.92960000038147 ], [ 364615.562200002372265, 254992.982299998402596 ], [ 364606.580899998545647, 254992.133099999278784 ], [ 364608.621699996292591, 255021.89130000025034 ], [ 364617.688100002706051, 255027.407900001853704 ], [ 364659.785300001502037, 255007.909699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90622335, "LATITUDE": 18.32397073, "OBJECTID_1": 33210, "PARCEL_NO_": "107402024300", "Tax_Legal_": "FRENCHMAN'S BAY EST.14-17-1&18-1 FRENCHMAN BAY QTR", "Name": "LEONARD, KAREN MATTHIAS", "Address": "PO Box 503144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 48500, "Improved_V": 186300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.445187248, "SHAPE_Area": 1217.06590332 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361453.098600000143051, 254979.55350000038743 ], [ 361417.849299997091293, 254952.4560999982059 ], [ 361410.484600000083447, 254965.061500001698732 ], [ 361408.846799999475479, 254968.003400001674891 ], [ 361405.581900000572205, 254972.620700001716614 ], [ 361403.11089999973774, 254978.722199998795986 ], [ 361440.81870000064373, 255001.195599999278784 ], [ 361453.098600000143051, 254979.55350000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90755713, "LATITUDE": 18.32400757, "OBJECTID_1": 33013, "PARCEL_NO_": "107401030500", "Tax_Legal_": "FRENCHMAN BAY 14-39B FRENCHMAN BAY QTR", "Name": "HENDRICKSON, HARRY a/k/a HORACE E. AND MONA G.", "Address": "PO Box 9761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.10492708199999, "SHAPE_Area": 1247.1941888700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361304.031499996781349, 254966.512200001627207 ], [ 361270.243699997663498, 254957.158700000494719 ], [ 361270.879199996590614, 254977.217799998819828 ], [ 361271.502099998295307, 254998.754399999976158 ], [ 361304.553700000047684, 254999.869300000369549 ], [ 361304.031499996781349, 254966.512200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403037100", "MAP": "D9-4153-T87", "PARCEL_NAM": "60-G", "ACRE": ".637", "LONGITUDE": -64.90139349, "LATITUDE": 18.32372742, "OBJECTID_1": 37263, "PARCEL_NO_": "107403037100", "Tax_Legal_": "60-G BOLONGO FRENCHMAN'S BAY QTR", "Name": "ALLEN, W. & B. & BRADE, JANE", "Address": "PO Box 305742", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 100700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.52789744200001, "SHAPE_Area": 2872.0786361700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361975.783299997448921, 254961.033300001174212 ], [ 361921.346100002527237, 254914.569400001317263 ], [ 361918.945100001990795, 254912.438799999654293 ], [ 361901.098399996757507, 254924.958399999886751 ], [ 361918.587300002574921, 254954.443500000983477 ], [ 361936.074400000274181, 254984.139699999243021 ], [ 361942.436800003051758, 254994.535399999469519 ], [ 361948.808200001716614, 255003.875599998980761 ], [ 361965.178999997675419, 254975.300900001078844 ], [ 361975.783299997448921, 254961.033300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90944377, "LATITUDE": 18.32369464, "OBJECTID_1": 33036, "PARCEL_NO_": "107401032900", "Tax_Legal_": "FRENCHMAN BAY 16-15 FRENCHMAN BAY QTR.", "Name": "CLINTON E. STAPLETON PH.D. REVOCABLE TRUST", "Address": "7517 Frenchman S Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.560146831, "SHAPE_Area": 2517.6233786900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361112.688400000333786, 254899.296100001782179 ], [ 361105.424400001764297, 254900.081000000238419 ], [ 361101.371299996972084, 254902.581000000238419 ], [ 361098.109999999403954, 254906.776099998503923 ], [ 361097.29110000282526, 254908.247099999338388 ], [ 361098.052500002086163, 254913.530699998140335 ], [ 361098.016500003635883, 254917.752199999988079 ], [ 361098.797700002789497, 254920.713899999856949 ], [ 361101.997699998319149, 254923.69539999961853 ], [ 361097.109499998390675, 254929.566100001335144 ], [ 361092.313000001013279, 254924.671599999070168 ], [ 361089.949799999594688, 254918.108399998396635 ], [ 361048.79730000346899, 254921.360199999064207 ], [ 361073.481899999082088, 254958.081399999558926 ], [ 361110.244999997317791, 254996.801300000399351 ], [ 361104.418499998748302, 254923.504200000315905 ], [ 361112.688400000333786, 254899.296100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87702364, "LATITUDE": 18.32388744, "OBJECTID_1": 38032, "PARCEL_NO_": "107601042900", "Tax_Legal_": "EST. MARIENDAHL 2-1 RED HOOK QTR.", "Name": "JN BAPTISTE, VICTOR & MARLYN J.", "Address": "6207 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.42644221399999, "SHAPE_Area": 1080.315295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364530.212700001895428, 254964.566300000995398 ], [ 364498.114500001072884, 254983.775699999183416 ], [ 364497.854999996721745, 254990.330099999904633 ], [ 364511.285400003194809, 255022.948499999940395 ], [ 364518.549400001764297, 255022.163499999791384 ], [ 364522.615099996328354, 255018.186000000685453 ], [ 364527.814400002360344, 254975.798799999058247 ], [ 364530.212700001895428, 254964.566300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91431896, "LATITUDE": 18.32376723, "OBJECTID_1": 33112, "PARCEL_NO_": "107401050700", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 17-88 FRENCHMAN'S BAY QTR.", "Name": "FARRINGTON, CLAUDETTE", "Address": "7596 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53200, "Improved_V": 55000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.47850747000001, "SHAPE_Area": 2405.02983017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360565.112300001084805, 254905.369100000709295 ], [ 360561.903300002217293, 254903.442999999970198 ], [ 360560.314000003039837, 254900.6858000010252 ], [ 360558.636600002646446, 254908.27140000090003 ], [ 360553.725000001490116, 254916.886100001633167 ], [ 360552.067500002682209, 254922.14979999884963 ], [ 360549.551399998366833, 254933.528299998492002 ], [ 360547.001199997961521, 254948.917300000786781 ], [ 360582.140900000929832, 254988.890399999916553 ], [ 360604.132500000298023, 254963.105900000780821 ], [ 360600.12610000371933, 254960.117800001055002 ], [ 360565.112300001084805, 254905.369100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.876722, "LATITUDE": 18.32396842, "OBJECTID_1": 38033, "PARCEL_NO_": "107601043000", "Tax_Legal_": "2-2 EST. MARIENDAHL RED HOOK QTR.", "Name": "IRISH, BERTRAM L. & EVELYN A", "Address": "PO Box 11815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 82400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.451223664, "SHAPE_Area": 1134.86831652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364542.324500001966953, 254976.339699998497963 ], [ 364538.296499997377396, 254975.88459999859333 ], [ 364536.667700000107288, 254977.771099999547005 ], [ 364531.464800000190735, 255020.58049999922514 ], [ 364528.898800000548363, 255031.050200000405312 ], [ 364569.441299997270107, 255008.940600000321865 ], [ 364571.860399998724461, 255007.621399998664856 ], [ 364567.890900000929832, 255004.202199999243021 ], [ 364563.900700002908707, 254999.314399998635054 ], [ 364542.324500001966953, 254976.339699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401051300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91532805, "LATITUDE": 18.32395689, "OBJECTID_1": 33118, "PARCEL_NO_": "107401051300", "Tax_Legal_": "FRENCHMAN'S BAY EST. 17-75 FRENCHMAN'S BAY QTR.", "Name": "FEDEE, ANTHONY S", "Address": "PO BOX 77502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 66500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.24297811100001, "SHAPE_Area": 2135.59279844 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360492.146799996495247, 254951.423599999397993 ], [ 360429.26519999653101, 254949.642400000244379 ], [ 360441.860500000417233, 254985.631400000303984 ], [ 360498.298799999058247, 254986.515500001609325 ], [ 360496.826399996876717, 254970.038100000470877 ], [ 360492.936899997293949, 254953.329900000244379 ], [ 360492.146799996495247, 254951.423599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90712526, "LATITUDE": 18.32382071, "OBJECTID_1": 33205, "PARCEL_NO_": "107402023800", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-8 FRENCHMAN BAY", "Name": "KAHN, SILVA E. (TRUSTEE)", "Address": "PO Box 10656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64000, "Improved_V": 136500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.503573534, "SHAPE_Area": 2028.6176871299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361357.338100001215935, 254956.393800001591444 ], [ 361342.165600001811981, 254938.96000000089407 ], [ 361337.48589999973774, 254920.345499999821186 ], [ 361324.489600002765656, 254931.427099999040365 ], [ 361317.958200000226498, 254940.872800000011921 ], [ 361312.978299997746944, 254957.508400000631809 ], [ 361311.257799997925758, 254970.160000000149012 ], [ 361311.173299998044968, 254980.080699998885393 ], [ 361343.319700002670288, 254992.798300001770258 ], [ 361357.338100001215935, 254956.393800001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402027500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90283631, "LATITUDE": 18.32381655, "OBJECTID_1": 33240, "PARCEL_NO_": "107402027500", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-122 FRENCHMAN BAY QTR", "Name": "JOSEPH, EDWIN", "Address": "PO BOX 2584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57400, "Improved_V": 223800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.58152209100001, "SHAPE_Area": 2286.3965728399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361771.229900002479553, 254930.017200000584126 ], [ 361754.927400000393391, 254950.570900000631809 ], [ 361756.491499997675419, 254956.28319999948144 ], [ 361759.693400003015995, 254959.053700000047684 ], [ 361766.847699999809265, 254971.144499998539686 ], [ 361768.445900000631809, 254972.846400000154972 ], [ 361772.398400001227856, 254982.166799999773502 ], [ 361773.165100000798702, 254986.817200001329184 ], [ 361776.35980000346899, 254990.43189999833703 ], [ 361780.378799997270107, 254991.942499998956919 ], [ 361792.486100003123283, 254990.563900001347065 ], [ 361813.559900000691414, 254977.859700001776218 ], [ 361825.730099998414516, 254969.093299999833107 ], [ 361807.296400003135204, 254955.854699999094009 ], [ 361771.229900002479553, 254930.017200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90855872, "LATITUDE": 18.32387179, "OBJECTID_1": 33021, "PARCEL_NO_": "107401031300", "Tax_Legal_": "14-48 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR", "Name": "HICKS, CLEMENT A", "Address": "PO Box 10853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24200, "Improved_V": 162700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.541557461, "SHAPE_Area": 1106.7712505699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361196.9358000010252, 254948.748199999332428 ], [ 361165.532799996435642, 254943.425000000745058 ], [ 361166.179099999368191, 254962.217599999159575 ], [ 361169.229900002479553, 254982.718600001186132 ], [ 361195.006700001657009, 254985.884899999946356 ], [ 361196.014399997889996, 254962.250700000673532 ], [ 361196.9358000010252, 254948.748199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601043100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87652112000001, "LATITUDE": 18.32368208, "OBJECTID_1": 38034, "PARCEL_NO_": "107601043100", "Tax_Legal_": "2-6 MARIENDAHL RED HOOK QTR.", "Name": "DYER, WILFRED & EARTHA", "Address": "PO Box 10163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 228500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.78240504300001, "SHAPE_Area": 1170.085114 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364580.898699998855591, 254950.338100001215935 ], [ 364543.43639999628067, 254958.28940000012517 ], [ 364544.854900002479553, 254963.272599998861551 ], [ 364548.024400003254414, 254969.842500001192093 ], [ 364581.600000001490116, 255004.103300001472235 ], [ 364583.085900001227856, 254999.329799998551607 ], [ 364580.898699998855591, 254950.338100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029900", "MAP": "D9-6285-T97", "PARCEL_NAM": "14-66B", "ACRE": ".352", "LONGITUDE": -64.90170029, "LATITUDE": 18.3238838, "OBJECTID_1": 33277, "PARCEL_NO_": "107402029900", "Tax_Legal_": "14-66B ESTATE FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "RYAN, BERYL", "Address": "PO Box 600295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60600, "Improved_V": 200200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.04914437900001, "SHAPE_Area": 1292.7260205699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361918.587300002574921, 254954.443500000983477 ], [ 361887.115900002419949, 254957.141199998557568 ], [ 361881.219999998807907, 254986.646099999547005 ], [ 361936.074400000274181, 254984.139699999243021 ], [ 361918.587300002574921, 254954.443500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91475563, "LATITUDE": 18.32366305, "OBJECTID_1": 33115, "PARCEL_NO_": "107401051000", "Tax_Legal_": "FRENCHMAN'S BAY EST. 17-85 FRENCHMAN'S BAY QTR.", "Name": "WENTWORTH E BRIDGEWATER and YVONNE ROGERS", "Address": "PO Box 502824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.07077385700001, "SHAPE_Area": 2065.8569235300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360547.001199997961521, 254948.917300000786781 ], [ 360549.551399998366833, 254933.528299998492002 ], [ 360552.067500002682209, 254922.14979999884963 ], [ 360553.725000001490116, 254916.886100001633167 ], [ 360558.636600002646446, 254908.27140000090003 ], [ 360560.314000003039837, 254900.6858000010252 ], [ 360493.089800000190735, 254935.388199999928474 ], [ 360499.403599999845028, 254951.482999999076128 ], [ 360500.9712999984622, 254956.773200001567602 ], [ 360501.752400003373623, 254959.734900001436472 ], [ 360502.925700001418591, 254965.587999999523163 ], [ 360547.001199997961521, 254948.917300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9060765, "LATITUDE": 18.32367776, "OBJECTID_1": 33211, "PARCEL_NO_": "107402024400", "Tax_Legal_": "14-17-2 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "#14-17-2 FRENCHMAN'S BAY, LLC", "Address": "3562 HONDURAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025741, "Country": "United States", "Land_Value": 71000, "Improved_V": 105500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.45476889099999, "SHAPE_Area": 1631.6896432799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361458.055200003087521, 254965.661899998784065 ], [ 361458.537100002169609, 254909.092799998819828 ], [ 361444.761500000953674, 254917.001600001007318 ], [ 361432.560699999332428, 254929.356300000101328 ], [ 361421.925800003111362, 254947.212200000882149 ], [ 361417.849299997091293, 254952.4560999982059 ], [ 361453.098600000143051, 254979.55350000038743 ], [ 361458.055200003087521, 254965.661899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402027100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90377306000001, "LATITUDE": 18.32365098, "OBJECTID_1": 33236, "PARCEL_NO_": "107402027100", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-94 FRENCHMAN BAY QTR.", "Name": "IVAN BELLE & LYANTINE BELL TRUST", "Address": "14-94 Estate Frenchman S Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68400, "Improved_V": 344700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.22449199599998, "SHAPE_Area": 3505.4175170899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361647.990000002086163, 254914.23200000077486 ], [ 361659.771799996495247, 254951.058699999004602 ], [ 361667.61370000243187, 254977.087400000542402 ], [ 361669.192199997603893, 254981.111000001430511 ], [ 361742.811200000345707, 254953.004900000989437 ], [ 361733.189400002360344, 254946.593299999833107 ], [ 361729.170400001108646, 254945.082800000905991 ], [ 361709.107900001108646, 254933.730599999427795 ], [ 361705.904200002551079, 254931.171300001442432 ], [ 361702.707699999213219, 254927.767599999904633 ], [ 361699.531000003218651, 254922.042100001126528 ], [ 361697.993900001049042, 254913.163600001484156 ], [ 361647.990000002086163, 254914.23200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90790108, "LATITUDE": 18.32374444, "OBJECTID_1": 33016, "PARCEL_NO_": "107401030800", "Tax_Legal_": "FRENCHMAN BAY 14-43 FRENCHMANS BAY QTR", "Name": "TAI VU and TUYEN NGUYEN", "Address": "9006 Havensight", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40200, "Improved_V": 226700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.19018257100001, "SHAPE_Area": 1522.7611344100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361270.362400002777576, 254943.22749999910593 ], [ 361251.977300003170967, 254924.289700001478195 ], [ 361248.730400003492832, 254926.79619999974966 ], [ 361239.013300001621246, 254931.571800000965595 ], [ 361231.689999997615814, 254939.322399999946356 ], [ 361229.233300000429153, 254943.735199999064207 ], [ 361226.67230000346899, 254960.390700001269579 ], [ 361270.879199996590614, 254977.217799998819828 ], [ 361270.243699997663498, 254957.158700000494719 ], [ 361270.362400002777576, 254943.22749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90566556, "LATITUDE": 18.3236138, "OBJECTID_1": 33212, "PARCEL_NO_": "107402024500", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-16 FRENCHMANS BAY QTR", "Name": "THIERRY, ERIC ANDRE MARIE", "Address": "1024 SUNSET CANYON Dr", "City": "Dripping Springs", "State": "Texas", "Zip": 78620, "Country": "United States", "Land_Value": 134900, "Improved_V": 340400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.60700432600001, "SHAPE_Area": 3840.5587422499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361458.055200003087521, 254965.661899998784065 ], [ 361465.286799997091293, 254968.676399998366833 ], [ 361491.002499997615814, 254979.019400000572205 ], [ 361505.613200001418591, 254967.739900000393391 ], [ 361512.940200001001358, 254959.567200001329184 ], [ 361517.02929999679327, 254952.84569999948144 ], [ 361519.502199999988079, 254946.533100001513958 ], [ 361520.450499996542931, 254929.864500001072884 ], [ 361518.879299998283386, 254924.996500000357628 ], [ 361514.12049999833107, 254915.669399999082088 ], [ 361507.733000002801418, 254908.228900000452995 ], [ 361499.707599997520447, 254903.730200000107288 ], [ 361488.431800000369549, 254902.160300001502037 ], [ 361476.319099999964237, 254904.172100000083447 ], [ 361458.537100002169609, 254909.092799998819828 ], [ 361458.055200003087521, 254965.661899998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90504367, "LATITUDE": 18.3238158, "OBJECTID_1": 33222, "PARCEL_NO_": "107402025600", "Tax_Legal_": "FRENCHMANS BAY EST. 14-71,72&73A FRENCHMAN BAY QTR.", "Name": "HANSCOM, R. & CARRAS, D", "Address": "PO Box 302850", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032850, "Country": "United States", "Land_Value": 101800, "Improved_V": 247900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.54404454900001, "SHAPE_Area": 2386.64754696 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361586.15820000320673, 254978.531599998474121 ], [ 361584.78830000013113, 254950.022799998521805 ], [ 361583.234999999403954, 254943.043999999761581 ], [ 361579.296999998390675, 254932.03489999845624 ], [ 361577.700499996542931, 254930.122000001370907 ], [ 361568.707000002264977, 254944.613800000399351 ], [ 361527.588699996471405, 254943.855099998414516 ], [ 361523.445600003004074, 254956.909000001847744 ], [ 361519.356499999761581, 254963.630499999970198 ], [ 361513.652999997138977, 254970.549899999052286 ], [ 361503.9070999994874, 254978.702799998223782 ], [ 361520.035199999809265, 254978.623700000345707 ], [ 361586.15820000320673, 254978.531599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107401031700", "MAP": "D9-8852-T014", "PARCEL_NAM": "17-1", "ACRE": "1.45", "LONGITUDE": -64.91117122, "LATITUDE": 18.32337553, "OBJECTID_1": 33025, "PARCEL_NO_": "107401031700", "Tax_Legal_": "FRENCHMANS BAY 17-1 FRENCHMANS BAY QTR", "Name": "ANTILLES SCHOOL INC", "Address": "7280 Frenchman S Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 131600, "Improved_V": 247400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.05962410299998, "SHAPE_Area": 6056.9151590600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360887.895199999213219, 254972.394499998539686 ], [ 360901.714000001549721, 254959.419799998402596 ], [ 360913.128200002014637, 254944.736600000411272 ], [ 360916.407399997115135, 254938.430700000375509 ], [ 360918.032600000500679, 254936.966299999505281 ], [ 360925.426100000739098, 254920.98369999974966 ], [ 360928.692699998617172, 254916.155299998819828 ], [ 360944.246399998664856, 254888.840399999171495 ], [ 360965.446099996566772, 254861.360700000077486 ], [ 360967.88120000064373, 254859.480799999088049 ], [ 360967.904600001871586, 254856.736800000071526 ], [ 360964.717100001871586, 254852.277699999511242 ], [ 360962.3108000010252, 254850.7804000005126 ], [ 360957.471100002527237, 254850.951799999922514 ], [ 360889.51070000231266, 254877.415600001811981 ], [ 360887.921400003135204, 254874.658399999141693 ], [ 360878.23309999704361, 254876.056699998676777 ], [ 360859.153800003230572, 254938.595400001853704 ], [ 360887.895199999213219, 254972.394499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90884637000001, "LATITUDE": 18.32365402, "OBJECTID_1": 33023, "PARCEL_NO_": "107401031500", "Tax_Legal_": "FRENCHMAN BAY 14-51 FRENCHMAN BAY QTR", "Name": "TROTMAN,TRUSTEE, ETHEL V.&CHRISTIAN,ELLIS O.&JUDITH", "Address": "PO Box 7190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28700, "Improved_V": 197000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.344620316, "SHAPE_Area": 1084.9011854800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361143.501599997282028, 254973.853199999779463 ], [ 361159.640500001609325, 254972.507599998265505 ], [ 361158.310099996626377, 254939.355099998414516 ], [ 361162.521499998867512, 254918.280200000852346 ], [ 361160.145700000226498, 254913.194499999284744 ], [ 361156.938500002026558, 254911.057300001382828 ], [ 361141.647299997508526, 254907.554699998348951 ], [ 361143.501599997282028, 254973.853199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402037400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90048052, "LATITUDE": 18.3236964, "OBJECTID_1": 33282, "PARCEL_NO_": "107402037400", "Tax_Legal_": "ESTATE BOLONGO 60N FRENCHMAN'S BAY QUARTER", "Name": "CHERNYK, PATRICIA & MAX", "Address": "7176 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70200, "Improved_V": 27900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.387249645, "SHAPE_Area": 2437.02690218 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362066.815700002014637, 254971.27760000154376 ], [ 362050.312899999320507, 254920.691199999302626 ], [ 362048.694899998605251, 254921.311200000345707 ], [ 362030.905699998140335, 254927.076200000941753 ], [ 362021.996699996292591, 254931.647399999201298 ], [ 362009.837300002574921, 254939.147199999541044 ], [ 362007.403899997472763, 254940.816100001335144 ], [ 361998.475199997425079, 254947.709100000560284 ], [ 362027.225500002503395, 254980.452799998223782 ], [ 362059.54450000077486, 254972.906800001859665 ], [ 362066.815700002014637, 254971.27760000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87502584000001, "LATITUDE": 18.32366354, "OBJECTID_1": 38016, "PARCEL_NO_": "107601041300", "Tax_Legal_": "NADIR 3-1A RED HOOK QTR", "Name": "BLACKMAN, ELEANOR", "Address": "PO Box 503173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27500, "Improved_V": 228600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.45427679700001, "SHAPE_Area": 1444.0363998400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364738.515500001609325, 254947.759100001305342 ], [ 364711.144100002944469, 254942.468800000846386 ], [ 364712.337700001895428, 254991.663400001823902 ], [ 364730.022600002586842, 254998.140900000929832 ], [ 364741.276799999177456, 255002.24379999935627 ], [ 364738.515500001609325, 254947.759100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90655941, "LATITUDE": 18.32369737, "OBJECTID_1": 33209, "PARCEL_NO_": "107402024200", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-12 #4FRENCHMAN'S BAY QT", "Name": "SCHOLES, JOSEPH G & HEATHER", "Address": "PO BOX 7013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52100, "Improved_V": 168600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.47754052400001, "SHAPE_Area": 1118.4340792200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361413.878799997270107, 254945.246500000357628 ], [ 361393.913400001823902, 254922.495999999344349 ], [ 361369.529799997806549, 254945.0945999994874 ], [ 361396.701700001955032, 254973.814599998295307 ], [ 361407.354599997401237, 254953.847899999469519 ], [ 361413.878799997270107, 254945.246500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401050600", "MAP": "D9-4672-T89", "PARCEL_NAM": "17-89", "ACRE": "0.54", "LONGITUDE": -64.91405459000001, "LATITUDE": 18.32356051, "OBJECTID_1": 33111, "PARCEL_NO_": "107401050600", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 17-89 FRENCHMAN'S BAY QTR.", "Name": "Christopher & Julia Siegrist & Nicholas Dzubinski", "Address": "PO Box 7061", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.490504832, "SHAPE_Area": 2395.5850984799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360607.334399998188019, 254965.876299999654293 ], [ 360626.111599996685982, 254938.7989999987185 ], [ 360612.812399998307228, 254890.771899998188019 ], [ 360599.861100003123283, 254896.576499998569489 ], [ 360581.261900000274181, 254902.757100000977516 ], [ 360570.75110000371933, 254906.048500001430511 ], [ 360565.112300001084805, 254905.369100000709295 ], [ 360600.12610000371933, 254960.117800001055002 ], [ 360604.132500000298023, 254963.105900000780821 ], [ 360607.334399998188019, 254965.876299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401050500", "MAP": "D9-4672-T89", "PARCEL_NAM": "17-90", "ACRE": "0.59", "LONGITUDE": -64.913683, "LATITUDE": 18.32340075, "OBJECTID_1": 33110, "PARCEL_NO_": "107401050500", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 17-90 FRENCHMANS BAY QTR.", "Name": "ALAIN JEAN BERRY LIVING REVOCABLE TRUST", "Address": "PO Box 11994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014994, "Country": "United States", "Land_Value": 68300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.38718242900001, "SHAPE_Area": 2300.0149179300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360664.092799998819828, 254929.188400000333786 ], [ 360658.10080000013113, 254875.310499999672174 ], [ 360641.125100001692772, 254880.237799998372793 ], [ 360634.656599998474121, 254882.295800000429153 ], [ 360621.714199997484684, 254887.045000001788139 ], [ 360612.812399998307228, 254890.771899998188019 ], [ 360626.111599996685982, 254938.7989999987185 ], [ 360607.334399998188019, 254965.876299999654293 ], [ 360629.345799997448921, 254937.769999999552965 ], [ 360664.092799998819828, 254929.188400000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021000", "MAP": "A9-400-T92", "PARCEL_NAM": "2-5-9", "ACRE": null, "LONGITUDE": -64.88859662, "LATITUDE": 18.32355295, "OBJECTID_1": 37499, "PARCEL_NO_": "107502021000", "Tax_Legal_": "EST. BOVONI 2-5-9 FRENCHMAN BAY QTR.", "Name": "GERICKE, MARGARITA", "Address": "708 Vista Canyon Cir", "City": "Vista", "State": "California", "Zip": 92084, "Country": "United States", "Land_Value": 99200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.85846734199998, "SHAPE_Area": 3887.87639317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363333.04280000180006, 254944.488600000739098 ], [ 363234.179200001060963, 254906.949200000613928 ], [ 363249.866700001060963, 254958.584399998188019 ], [ 363259.553199999034405, 254957.397100001573563 ], [ 363271.646099999547005, 254957.70719999819994 ], [ 363286.939099997282028, 254960.998799998313189 ], [ 363296.582500003278255, 254964.877399999648333 ], [ 363307.017800003290176, 254970.451200000941753 ], [ 363328.648000001907349, 254987.093499999493361 ], [ 363353.135799996554852, 254952.252399999648333 ], [ 363333.04280000180006, 254944.488600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9075275, "LATITUDE": 18.32368607, "OBJECTID_1": 33014, "PARCEL_NO_": "107401030600", "Tax_Legal_": "FRENCHMAN BAY 14-39C 5 FRENCHMAN BAY QTR", "Name": "HENDRICKSON, H. & M. / TRANSAM", "Address": "PO Box 9761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41100, "Improved_V": 198600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.607511695, "SHAPE_Area": 1216.98226198 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361311.540100000798702, 254937.020599998533726 ], [ 361286.68469999730587, 254920.35190000012517 ], [ 361270.362400002777576, 254943.22749999910593 ], [ 361270.243699997663498, 254957.158700000494719 ], [ 361304.031499996781349, 254966.512200001627207 ], [ 361304.895400002598763, 254959.764299999922514 ], [ 361309.076200000941753, 254942.277800001204014 ], [ 361311.540100000798702, 254937.020599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87595349, "LATITUDE": 18.32371977, "OBJECTID_1": 38038, "PARCEL_NO_": "107601043500", "Tax_Legal_": "MARIENDAHL ESTATE 2-8 No.4 RED HOOK QTR.", "Name": "BREWLEY, EDWIN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37100, "Improved_V": 103500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.30427871200001, "SHAPE_Area": 1505.5207765099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364640.608300000429153, 254987.276599999517202 ], [ 364647.114500001072884, 254980.785999998450279 ], [ 364651.106499999761581, 254985.462699998170137 ], [ 364657.562399998307228, 254984.88230000063777 ], [ 364660.011900000274181, 254981.313700001686811 ], [ 364664.811999998986721, 254985.785999998450279 ], [ 364670.538900002837181, 254976.122499998658895 ], [ 364602.71169999986887, 254956.612399999052286 ], [ 364598.674699999392033, 254955.451200000941753 ], [ 364606.580899998545647, 254992.133099999278784 ], [ 364615.562200002372265, 254992.982299998402596 ], [ 364634.915500000119209, 254992.92960000038147 ], [ 364642.204700000584126, 254989.189500000327826 ], [ 364640.608300000429153, 254987.276599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403037500", "MAP": "D9-4153-T87", "PARCEL_NAM": "60-O", "ACRE": ".525", "LONGITUDE": -64.90004859, "LATITUDE": 18.32360252, "OBJECTID_1": 37264, "PARCEL_NO_": "107403037500", "Tax_Legal_": "60-0 BOLONGO FRENCHMAN'S BAY QTR.", "Name": "SAMUEL, MITCHELL & LISA MENDEZ", "Address": "PO Box 1121", "City": "ST. JOHN", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 90500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.84427221000001, "SHAPE_Area": 2390.3064739599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362119.33389999717474, 254959.041799999773502 ], [ 362081.856200002133846, 254909.550299998372793 ], [ 362064.047200001776218, 254917.637200001627207 ], [ 362050.312899999320507, 254920.691199999302626 ], [ 362066.815700002014637, 254971.27760000154376 ], [ 362119.33389999717474, 254959.041799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402027600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90248175000001, "LATITUDE": 18.32348865, "OBJECTID_1": 33241, "PARCEL_NO_": "107402027600", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-121 FRENCHMANS BAY QTR.", "Name": "FLEMING, STANLEY & ROSETTA (TRUSTEES)", "Address": "BOX 1713", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.68317365499999, "SHAPE_Area": 2359.4123338499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361848.713200002908707, 254921.574299998581409 ], [ 361837.617299996316433, 254898.896499998867512 ], [ 361805.433100000023842, 254890.6114999987185 ], [ 361807.296400003135204, 254955.854699999094009 ], [ 361825.730099998414516, 254969.093299999833107 ], [ 361829.793999999761581, 254965.326900001615286 ], [ 361833.071400001645088, 254959.23200000077486 ], [ 361848.713200002908707, 254921.574299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87526874, "LATITUDE": 18.32359649, "OBJECTID_1": 38015, "PARCEL_NO_": "107601041200", "Tax_Legal_": "NADIR 3-1B RED HOOK QTR.", "Name": "BLACKMAN, HUGH", "Address": "PO Box 503174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17900, "Improved_V": 58100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.48427311099999, "SHAPE_Area": 1074.43388297 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364695.849299997091293, 254939.388300001621246 ], [ 364687.798799999058247, 254937.844799999147654 ], [ 364689.83110000193119, 254983.246500000357628 ], [ 364712.337700001895428, 254991.663400001823902 ], [ 364711.144100002944469, 254942.468800000846386 ], [ 364695.849299997091293, 254939.388300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021800", "MAP": "A9-400-T92", "PARCEL_NAM": "2-5-8", "ACRE": ".82", "LONGITUDE": -64.88938121, "LATITUDE": 18.32356101, "OBJECTID_1": 37507, "PARCEL_NO_": "107502021800", "Tax_Legal_": "2-5-8 BOVONI ( EASTERN PART) No. 1 & 2 FRENCHMAN'S BAY QUARTER", "Name": "COLON, MIGUEL AUSTIN", "Address": "116 Breen St", "City": "Saint Paul", "State": "Minnesota", "Zip": 55106, "Country": "United States", "Land_Value": 95300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.63321429800001, "SHAPE_Area": 3346.3596586799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363161.05009999871254, 254972.211800001561642 ], [ 363161.822200000286102, 254976.228900000452995 ], [ 363164.225000001490116, 254978.148400001227856 ], [ 363168.252899996936321, 254978.60359999909997 ], [ 363249.866700001060963, 254958.584399998188019 ], [ 363234.179200001060963, 254906.949200000613928 ], [ 363210.688299998641014, 254919.422499999403954 ], [ 363194.470299996435642, 254930.055599998682737 ], [ 363185.537900000810623, 254937.370700001716614 ], [ 363174.958800002932549, 254948.683200001716614 ], [ 363169.246299996972084, 254956.657999999821186 ], [ 363161.05009999871254, 254972.211800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90827113, "LATITUDE": 18.32364743, "OBJECTID_1": 33019, "PARCEL_NO_": "107401031100", "Tax_Legal_": "14-46 ESTATE FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "RAND, DONALD", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31100, "Improved_V": 218900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.67309822499999, "SHAPE_Area": 1117.15716228 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361218.58219999819994, 254963.490800000727177 ], [ 361219.478399999439716, 254952.943500000983477 ], [ 361221.996200002729893, 254941.353999998420477 ], [ 361227.721400000154972, 254931.901599999517202 ], [ 361235.0320999994874, 254925.628600001335144 ], [ 361235.066299997270107, 254921.618099998682737 ], [ 361233.462600000202656, 254920.549499999731779 ], [ 361214.910300001502037, 254921.24210000038147 ], [ 361201.220899999141693, 254919.019099999219179 ], [ 361196.9358000010252, 254948.748199999332428 ], [ 361196.014399997889996, 254962.250700000673532 ], [ 361218.58219999819994, 254963.490800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402027700", "MAP": "A9-176-T72", "PARCEL_NAM": "14-119", "ACRE": null, "LONGITUDE": -64.90202715, "LATITUDE": 18.32349684, "OBJECTID_1": 33242, "PARCEL_NO_": "107402027700", "Tax_Legal_": "14-119 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR", "Name": "ESTRELLA S HEYLIGER & RAPHAEL GEORGE LIVING TRUST", "Address": "PO BOX 303514", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54000, "Improved_V": 261800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.56747223400001, "SHAPE_Area": 2383.4112995099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361895.531499996781349, 254915.835799999535084 ], [ 361872.472099997103214, 254877.650199998170137 ], [ 361860.062700003385544, 254914.489999998360872 ], [ 361860.039399996399879, 254917.234000001102686 ], [ 361865.652999997138977, 254920.868599999696016 ], [ 361863.183700002729893, 254926.75899999961257 ], [ 361859.971000000834465, 254925.254999998956919 ], [ 361855.930500000715256, 254926.277399998158216 ], [ 361840.292300000786781, 254963.513000000268221 ], [ 361840.270700000226498, 254966.045899998396635 ], [ 361850.803099997341633, 254960.221500001847744 ], [ 361887.115900002419949, 254957.141199998557568 ], [ 361895.531499996781349, 254915.835799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91543827, "LATITUDE": 18.32363865, "OBJECTID_1": 33117, "PARCEL_NO_": "107401051200", "Tax_Legal_": "FRENCHMAN'S BAY EST. 17-76 FRENCHMAN'S BAY QTR.", "Name": "WILLIAM TUITT and MARILYN R JEFFERS", "Address": "PO BOX 306356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.85010486, "SHAPE_Area": 2193.20776342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360474.747800000011921, 254911.384500000625849 ], [ 360453.753100000321865, 254914.801300000399351 ], [ 360416.648299999535084, 254916.186299998313189 ], [ 360418.225000001490116, 254920.421100001782179 ], [ 360429.26519999653101, 254949.642400000244379 ], [ 360492.146799996495247, 254951.423599999397993 ], [ 360489.785400003194809, 254944.649300001561642 ], [ 360488.189000003039837, 254942.736400000751019 ], [ 360475.534299999475479, 254913.712999999523163 ], [ 360474.747800000011921, 254911.384500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401050200", "MAP": "D9-4672-T89", "PARCEL_NAM": "17-105", "ACRE": "0.62", "LONGITUDE": -64.91207318, "LATITUDE": 18.32342127, "OBJECTID_1": 33107, "PARCEL_NO_": "107401050200", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 17-105 FRENCHMAN'S BAY QTR.", "Name": "PRENTICE, ABDU & EDRIS", "Address": "P.M.P. BLDG 15 APT 120", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.85886776699999, "SHAPE_Area": 2303.3326124099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360838.39469999819994, 254914.360800001770258 ], [ 360827.379699997603893, 254882.184399999678135 ], [ 360810.511799998581409, 254874.447000000625849 ], [ 360780.243100002408028, 254925.283900000154972 ], [ 360783.452200002968311, 254927.21000000089407 ], [ 360787.458599999547005, 254930.198100000619888 ], [ 360789.857699997723103, 254932.539799999445677 ], [ 360791.44879999756813, 254935.085900001227856 ], [ 360792.237099997699261, 254937.203299999237061 ], [ 360794.530199997127056, 254951.998599998652935 ], [ 360838.39469999819994, 254914.360800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90440999, "LATITUDE": 18.32357475, "OBJECTID_1": 33225, "PARCEL_NO_": "107402025900", "Tax_Legal_": "14-84 ESTATE FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "HODGE, MALISADE B", "Address": "PO Box 304196", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59100, "Improved_V": 306400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.837820142, "SHAPE_Area": 2660.0863889100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361647.990000002086163, 254914.23200000077486 ], [ 361584.266099996864796, 254916.665699999779463 ], [ 361583.443599998950958, 254918.558800000697374 ], [ 361584.154600001871586, 254929.752599999308586 ], [ 361585.75110000371933, 254931.665500000119209 ], [ 361588.898999996483326, 254940.768300000578165 ], [ 361591.222599998116493, 254951.975299999117851 ], [ 361591.166900001466274, 254958.518699999898672 ], [ 361659.771799996495247, 254951.058699999004602 ], [ 361647.990000002086163, 254914.23200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90678862, "LATITUDE": 18.32344236, "OBJECTID_1": 33207, "PARCEL_NO_": "107402024000", "Tax_Legal_": "14-7 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR", "Name": "HOFFMAN, PHILLIP L. & HELEN R", "Address": "PO Box 8337", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 101600, "Improved_V": 643200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.75388810499999, "SHAPE_Area": 2586.38429283 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361393.913400001823902, 254922.495999999344349 ], [ 361407.730400003492832, 254909.732400000095367 ], [ 361368.454899996519089, 254881.968800000846386 ], [ 361361.910899996757507, 254892.892099998891354 ], [ 361355.393799997866154, 254900.64919999986887 ], [ 361352.938900001347065, 254904.850999999791384 ], [ 361339.919299997389317, 254918.676600001752377 ], [ 361337.48589999973774, 254920.345499999821186 ], [ 361342.165600001811981, 254938.96000000089407 ], [ 361357.338100001215935, 254956.393800001591444 ], [ 361369.529799997806549, 254945.0945999994874 ], [ 361393.913400001823902, 254922.495999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403037000", "MAP": "D9-4153-T87", "PARCEL_NAM": "60-H", "ACRE": ".677", "LONGITUDE": -64.90120898000001, "LATITUDE": 18.32344358, "OBJECTID_1": 37262, "PARCEL_NO_": "107403037000", "Tax_Legal_": "60-H BOLONGO FRENCHMAN'S BAY QTR", "Name": "TITUS, THOMAS & ROSEANN", "Address": "PO Box 503045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 87000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.45545016400001, "SHAPE_Area": 2531.9175065200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361998.554300002753735, 254938.421599999070168 ], [ 361939.354699999094009, 254883.052799999713898 ], [ 361937.725900001823902, 254884.939300000667572 ], [ 361936.906999997794628, 254886.410199999809265 ], [ 361934.421499997377396, 254894.200300000607967 ], [ 361932.778300002217293, 254897.775499999523163 ], [ 361930.323399998247623, 254901.977299999445677 ], [ 361925.429799996316433, 254908.481100000441074 ], [ 361921.346100002527237, 254914.569400001317263 ], [ 361975.783299997448921, 254961.033300001174212 ], [ 361992.062399998307228, 254943.223600000143051 ], [ 361998.554300002753735, 254938.421599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8754674, "LATITUDE": 18.32354677, "OBJECTID_1": 38014, "PARCEL_NO_": "107601041100", "Tax_Legal_": "EST NADIR 3-1C RED HOOK QTR", "Name": "BLACKMAN, PHYLLIS", "Address": "P.O. BOX 3919", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20300, "Improved_V": 121400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.93789491299999, "SHAPE_Area": 817.33722774199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364687.798799999058247, 254937.844799999147654 ], [ 364669.284100003540516, 254934.104699999094009 ], [ 364670.538900002837181, 254976.122499998658895 ], [ 364689.83110000193119, 254983.246500000357628 ], [ 364687.798799999058247, 254937.844799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403037600", "MAP": "D9-4151-T87", "PARCEL_NAM": "26-18", "ACRE": ".528", "LONGITUDE": -64.89966303, "LATITUDE": 18.32349593, "OBJECTID_1": 37265, "PARCEL_NO_": "107403037600", "Tax_Legal_": "26-18 BOLONGO FRENCHMAN'S BAY QTR.", "Name": "GUMBS, MARGARET D.", "Address": "PO Box 303599", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48800, "Improved_V": 255600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.79295791499999, "SHAPE_Area": 2387.7512403000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362171.850299999117851, 254947.017099998891354 ], [ 362142.160599999129772, 254929.886700000613928 ], [ 362120.60419999808073, 254904.59010000154376 ], [ 362111.75450000166893, 254902.195599999278784 ], [ 362105.305799998342991, 254901.931800000369549 ], [ 362089.140000000596046, 254906.443500000983477 ], [ 362081.856200002133846, 254909.550299998372793 ], [ 362119.33389999717474, 254959.041799999773502 ], [ 362171.850299999117851, 254947.017099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402027400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90287289, "LATITUDE": 18.32337844, "OBJECTID_1": 33239, "PARCEL_NO_": "107402027400", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-123 FRENCHMAN'S BAY QTR.", "Name": "WAHEED (LIFE ESTATE), HERMIN R.", "Address": "PO Box 8253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 89800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.830943765, "SHAPE_Area": 2429.5423720099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361805.433100000023842, 254890.6114999987185 ], [ 361741.70380000025034, 254893.67850000038743 ], [ 361761.611699998378754, 254923.183400001376867 ], [ 361771.229900002479553, 254930.017200000584126 ], [ 361807.296400003135204, 254955.854699999094009 ], [ 361805.433100000023842, 254890.6114999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90853569, "LATITUDE": 18.32357478, "OBJECTID_1": 33022, "PARCEL_NO_": "107401031400", "Tax_Legal_": "FRENCHMAN BAY 14-47 FRENCHMAN BAY QTR.", "Name": "DONOVAN, DELITA", "Address": "PO Box 11652", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23200, "Improved_V": 193200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.18705845300001, "SHAPE_Area": 921.67129967599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361201.220899999141693, 254919.019099999219179 ], [ 361182.706299997866154, 254915.278999999165535 ], [ 361179.481100000441074, 254915.252599999308586 ], [ 361173.818899996578693, 254917.317200001329184 ], [ 361170.566699996590614, 254920.456999998539686 ], [ 361168.925300002098083, 254923.820999998599291 ], [ 361165.532799996435642, 254943.425000000745058 ], [ 361196.9358000010252, 254948.748199999332428 ], [ 361201.220899999141693, 254919.019099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107502020200", "MAP": "B9-251-T69", "PARCEL_NAM": "2-3B", "ACRE": null, "LONGITUDE": -64.88776009, "LATITUDE": 18.32335476, "OBJECTID_1": 37491, "PARCEL_NO_": "107502020200", "Tax_Legal_": "EST. BOVONI 2-3B FRENCHMAN BAY QTR", "Name": "LIMA, LYDIA E.", "Address": "1012 10th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.094528422, "SHAPE_Area": 4091.9546465100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363366.536700002849102, 254893.678100001066923 ], [ 363333.04280000180006, 254944.488600000739098 ], [ 363353.135799996554852, 254952.252399999648333 ], [ 363388.502099998295307, 254965.629700001329184 ], [ 363427.708599999547005, 254906.844399999827147 ], [ 363371.441100001335144, 254885.907800000160933 ], [ 363366.536700002849102, 254893.678100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87596898, "LATITUDE": 18.32344256, "OBJECTID_1": 38011, "PARCEL_NO_": "107601040700", "Tax_Legal_": "3-1 NADIR RED HOOK QTR", "Name": "BLACKMAN, ELEANOR D.", "Address": "PO Box 503173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 75000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.03988381200003, "SHAPE_Area": 3224.3529586 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364669.284100003540516, 254934.104699999094009 ], [ 364577.512000001966953, 254921.723299998790026 ], [ 364576.450800001621246, 254951.282200001180172 ], [ 364580.898699998855591, 254950.338100001215935 ], [ 364588.49040000140667, 254952.521800000220537 ], [ 364602.71169999986887, 254956.612399999052286 ], [ 364670.538900002837181, 254976.122499998658895 ], [ 364669.284100003540516, 254934.104699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90632945, "LATITUDE": 18.32343404, "OBJECTID_1": 33213, "PARCEL_NO_": "107402024600", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-13 FRENCHMAN BAY QTR", "Name": "PACHTA, BRUCE A.", "Address": "PO Box 503180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37600, "Improved_V": 204100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.48235421499999, "SHAPE_Area": 1096.9043763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361439.160400003194809, 254911.889499999582767 ], [ 361427.238399997353554, 254891.526900000870228 ], [ 361407.730400003492832, 254909.732400000095367 ], [ 361393.913400001823902, 254922.495999999344349 ], [ 361413.878799997270107, 254945.246500000357628 ], [ 361429.405599996447563, 254921.097800001502037 ], [ 361439.160400003194809, 254911.889499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90765585, "LATITUDE": 18.32338152, "OBJECTID_1": 33015, "PARCEL_NO_": "107401030700", "Tax_Legal_": "FRENCHMANS BAY 14-42 FRENCHMANS BAY QTR", "Name": "BENGOCHEA, CARLOS & OLGA", "Address": "2220 S.W.123 CT", "City": "Miami", "State": "Florida", "Zip": 33175, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.269428116, "SHAPE_Area": 1463.01761981 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361303.818599998950958, 254896.849599998444319 ], [ 361278.961400002241135, 254880.392000000923872 ], [ 361270.754399999976158, 254897.21229999884963 ], [ 361262.603200003504753, 254907.489199999719858 ], [ 361255.229500003159046, 254921.149900000542402 ], [ 361251.977300003170967, 254924.289700001478195 ], [ 361270.362400002777576, 254943.22749999910593 ], [ 361286.68469999730587, 254920.35190000012517 ], [ 361303.818599998950958, 254896.849599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90502453000001, "LATITUDE": 18.32345041, "OBJECTID_1": 33224, "PARCEL_NO_": "107402025800", "Tax_Legal_": "FRENCHMANS BAY EST. 14-70 FRENCHMAN BAY QTR.", "Name": "LIDDLE, RAPHAEL N", "Address": "431 TIMBERLINE DR.", "City": "MT LAVRGE", "State": "New Jersey", "Zip": 8054, "Country": "United States", "Land_Value": 65700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.58055606100001, "SHAPE_Area": 2067.6781741700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361577.700499996542931, 254930.122000001370907 ], [ 361576.962499998509884, 254922.094399999827147 ], [ 361578.819700002670288, 254893.400800000876188 ], [ 361577.345600001513958, 254877.13459999859333 ], [ 361562.598200000822544, 254904.456000000238419 ], [ 361534.382600001990795, 254903.59180000051856 ], [ 361529.379299998283386, 254922.971500001847744 ], [ 361527.588699996471405, 254943.855099998414516 ], [ 361568.707000002264977, 254944.613800000399351 ], [ 361577.700499996542931, 254930.122000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403040100", "MAP": "A9-773-T012", "PARCEL_NAM": "17-111", "ACRE": "16.45", "LONGITUDE": -64.91382244, "LATITUDE": 18.32200227, "OBJECTID_1": 37271, "PARCEL_NO_": "107403040100", "Tax_Legal_": "17-111 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "LIVING HOPE CATHEDRAL INC", "Address": "PO Box 307266", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 586900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1876.54243984, "SHAPE_Area": 60128.039981800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360261.590700000524521, 254565.135200001299381 ], [ 360277.371399998664856, 254591.228900000452995 ], [ 360277.495800003409386, 254591.229899998754263 ], [ 360333.950900003314018, 254684.784200001507998 ], [ 360370.332099996507168, 254673.682900000363588 ], [ 360438.555799998342991, 254710.971599999815226 ], [ 360427.083999998867512, 254732.409299999475479 ], [ 360484.884900003671646, 254762.646499998867512 ], [ 360489.703000001609325, 254765.008000001311302 ], [ 360531.483800001442432, 254782.659600000828505 ], [ 360583.714299999177456, 254804.19649999961257 ], [ 360592.553199999034405, 254807.857400000095367 ], [ 360629.607600003480911, 254812.382500000298023 ], [ 360689.218999996781349, 254819.414299998432398 ], [ 360695.644299998879433, 254822.422200001776218 ], [ 360741.431500002741814, 254843.061900001019239 ], [ 360775.971699997782707, 254858.75450000166893 ], [ 360810.511799998581409, 254874.447000000625849 ], [ 360827.379699997603893, 254882.184399999678135 ], [ 360838.39469999819994, 254914.360800001770258 ], [ 360859.153800003230572, 254938.595400001853704 ], [ 360878.23309999704361, 254876.056699998676777 ], [ 360887.921400003135204, 254874.658399999141693 ], [ 360887.134900003671646, 254872.329900000244379 ], [ 360954.285400003194809, 254846.281700000166893 ], [ 360967.18639999628067, 254846.387299999594688 ], [ 360972.814400002360344, 254848.333200000226498 ], [ 360976.833400003612041, 254849.843800000846386 ], [ 360978.465800002217293, 254847.535100001841784 ], [ 360989.021600000560284, 254838.966699998825788 ], [ 361012.598800003528595, 254816.3614999987185 ], [ 361023.152800001204014, 254808.004099998623133 ], [ 361030.449199996888638, 254803.419799998402596 ], [ 360993.342600002884865, 254805.015900000929832 ], [ 360953.81530000269413, 254806.803399998694658 ], [ 360916.7195999994874, 254807.133000001311302 ], [ 360894.947300001978874, 254807.165899999439716 ], [ 360883.6841000020504, 254804.118500001728535 ], [ 360839.4341000020504, 254792.357200000435114 ], [ 360784.725299999117851, 254777.766199998557568 ], [ 360738.083200000226498, 254762.818999998271465 ], [ 360701.090000003576279, 254751.117199998348951 ], [ 360658.468699999153614, 254737.469399999827147 ], [ 360592.525499999523163, 254716.453699998557568 ], [ 360533.307899996638298, 254663.195599999278784 ], [ 360500.970899999141693, 254672.852299999445677 ], [ 360476.200000002980232, 254646.262899998575449 ], [ 360474.6233000010252, 254642.028099998831749 ], [ 360461.1858000010252, 254610.254099998623133 ], [ 360451.547799997031689, 254605.742300000041723 ], [ 360441.108900003135204, 254600.590599998831749 ], [ 360418.530299998819828, 254600.616900000721216 ], [ 360392.697700001299381, 254603.993999999016523 ], [ 360368.467000000178814, 254608.65089999884367 ], [ 360357.180399999022484, 254608.34739999845624 ], [ 360341.864100001752377, 254607.799899999052286 ], [ 360312.874600000679493, 254603.129599999636412 ], [ 360303.258199997246265, 254596.084800001233816 ], [ 360261.590700000524521, 254565.135200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91491806000001, "LATITUDE": 18.32339904, "OBJECTID_1": 33116, "PARCEL_NO_": "107401051100", "Tax_Legal_": "FRENCHMAN'S BAY 17-84 FRENCHMAN'S BAY QTR.", "Name": "BENJAMIN, JOSEPH", "Address": "PO Box 306016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.48045004299999, "SHAPE_Area": 2130.9083423799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360560.314000003039837, 254900.6858000010252 ], [ 360490.294299997389317, 254884.914000000804663 ], [ 360475.701499998569489, 254894.082699999213219 ], [ 360478.858499996364117, 254902.129999998956919 ], [ 360493.089800000190735, 254935.388199999928474 ], [ 360560.314000003039837, 254900.6858000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401050400", "MAP": "D9-4672-T89", "PARCEL_NAM": "17-91", "ACRE": "0.60", "LONGITUDE": -64.91318274, "LATITUDE": 18.32337874, "OBJECTID_1": 33109, "PARCEL_NO_": "107401050400", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 17-91 FRENCHMAN'S BAY QTR.", "Name": "Elza Isles Woods Family Revocable Trust", "Address": "2W-16 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.06494948800002, "SHAPE_Area": 3308.9988203799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360658.10080000013113, 254875.310499999672174 ], [ 360664.092799998819828, 254929.188400000333786 ], [ 360689.102799996733665, 254927.7043999992311 ], [ 360693.132600001990795, 254927.948399998247623 ], [ 360695.549699999392033, 254928.179299999028444 ], [ 360726.124899998307228, 254936.028900001198053 ], [ 360752.726000003516674, 254937.090999998152256 ], [ 360752.785300001502037, 254930.125399999320507 ], [ 360740.699600003659725, 254928.971000000834465 ], [ 360733.476999998092651, 254924.901099998503923 ], [ 360729.468800000846386, 254922.124099999666214 ], [ 360727.86879999935627, 254920.633400000631809 ], [ 360725.471400000154972, 254918.080600000917912 ], [ 360715.102600000798702, 254904.696899998933077 ], [ 360700.025399997830391, 254876.075800001621246 ], [ 360693.612700000405312, 254871.590399999171495 ], [ 360686.366700001060963, 254870.264499999582767 ], [ 360658.10080000013113, 254875.310499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402027300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90335752, "LATITUDE": 18.32335388, "OBJECTID_1": 33238, "PARCEL_NO_": "107402027300", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-124 FRENCHMAN BAY QTR.", "Name": "MASSAC, CHRISTOPH KEITH", "Address": "PO BOX 11308", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75900, "Improved_V": 181100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.34260658900001, "SHAPE_Area": 2350.5639792699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361727.375399999320507, 254871.818599998950958 ], [ 361715.989900000393391, 254883.124499998986721 ], [ 361707.808100000023842, 254896.989700000733137 ], [ 361705.335299998521805, 254903.302200000733137 ], [ 361706.04450000077486, 254914.707100000232458 ], [ 361708.396899998188019, 254922.536800000816584 ], [ 361712.392499998211861, 254926.791400000452995 ], [ 361745.29839999973774, 254945.003699999302626 ], [ 361750.145300000905991, 254943.987900000065565 ], [ 361755.848800003528595, 254937.068500000983477 ], [ 361755.89919999986887, 254931.15819999948144 ], [ 361761.611699998378754, 254923.183400001376867 ], [ 361741.70380000025034, 254893.67850000038743 ], [ 361727.375399999320507, 254871.818599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402040100", "MAP": "D9-9109-T016", "PARCEL_NAM": "26-A1", "ACRE": "0.50", "LONGITUDE": -64.89924427, "LATITUDE": 18.32343395, "OBJECTID_1": 33290, "PARCEL_NO_": "107402040100", "Tax_Legal_": "ESTATE BOLONGO 26-A1 FRENCHMAN'S BAY", "Name": "EL GISSMO ENTERPRISES INC", "Address": "PO Box 141", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 8310141, "Country": "United States", "Land_Value": 50800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.977397083, "SHAPE_Area": 2090.0227338300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362207.726499997079372, 254938.707899998873472 ], [ 362203.015900000929832, 254922.962099999189377 ], [ 362180.976899996399879, 254916.905499998480082 ], [ 362152.093500003218651, 254899.781599998474121 ], [ 362142.378200002014637, 254904.346099998801947 ], [ 362133.498000003397465, 254905.53999999910593 ], [ 362125.431199997663498, 254905.896200001239777 ], [ 362120.60419999808073, 254904.59010000154376 ], [ 362142.160599999129772, 254929.886700000613928 ], [ 362171.850299999117851, 254947.017099998891354 ], [ 362207.726499997079372, 254938.707899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9072952, "LATITUDE": 18.3233497, "OBJECTID_1": 33206, "PARCEL_NO_": "107402023900", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-38 FRENCHMAN BAY QTR", "Name": "RANDALL, JENNIFER M. & ARNOLD L.", "Address": "6151 S Greenwood", "City": "Berlin", "State": "Connecticut", "Zip": 6037, "Country": "United States", "Land_Value": 143700, "Improved_V": 323700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.82193198900001, "SHAPE_Area": 1644.2028288199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361343.26860000193119, 254904.138599999248981 ], [ 361319.321999996900558, 254875.445000000298023 ], [ 361303.818599998950958, 254896.849599998444319 ], [ 361286.68469999730587, 254920.35190000012517 ], [ 361311.540100000798702, 254937.020599998533726 ], [ 361318.075099997222424, 254927.152699999511242 ], [ 361332.693000003695488, 254915.028900001198053 ], [ 361343.26860000193119, 254904.138599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401050300", "MAP": "D9-4672-T89", "PARCEL_NAM": "17-104", "ACRE": "0.55", "LONGITUDE": -64.91238903, "LATITUDE": 18.32326425, "OBJECTID_1": 33108, "PARCEL_NO_": "107401050300", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 17-104 FRENCHMAN'S BAY QTR.", "Name": "MASSICOTTE, NATHAN", "Address": "622 Wynfield Ter", "City": "Norcross", "State": "Georgia", "Zip": 30092, "Country": "United States", "Land_Value": 50500, "Improved_V": 229800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.20108821700001, "SHAPE_Area": 2348.5159998499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360775.971699997782707, 254858.75450000166893 ], [ 360742.393200002610683, 254919.485700000077486 ], [ 360747.218500003218651, 254921.00279999896884 ], [ 360774.618699997663498, 254922.915800001472235 ], [ 360776.229500003159046, 254923.140099998563528 ], [ 360780.243100002408028, 254925.283900000154972 ], [ 360810.511799998581409, 254874.447000000625849 ], [ 360775.971699997782707, 254858.75450000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504046600", "MAP": "D9-8498-T010", "PARCEL_NAM": "2-3H-1", "ACRE": "0.44", "LONGITUDE": -64.88817897, "LATITUDE": 18.32321471, "OBJECTID_1": 37834, "PARCEL_NO_": "107504046600", "Tax_Legal_": "2-3H-1 BOVONI NOS.1&2 FRENCHMANS BAY QTR", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.07857495799999, "SHAPE_Area": 1907.8436441900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363323.658299997448921, 254879.591699998825788 ], [ 363314.993500001728535, 254937.635099999606609 ], [ 363333.04280000180006, 254944.488600000739098 ], [ 363366.536700002849102, 254893.678100001066923 ], [ 363335.187700003385544, 254882.02250000089407 ], [ 363323.658299997448921, 254879.591699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503032300", "MAP": "A9-474-T95", "PARCEL_NAM": "61-45", "ACRE": ".503", "LONGITUDE": -64.89823247, "LATITUDE": 18.32329424, "OBJECTID_1": 37613, "PARCEL_NO_": "107503032300", "Tax_Legal_": "61-45 ESTATE BOLONGO NO.3 ESTATE FRENCHMAN'S BAY QTR.", "Name": "ABRAHAM, JOYCE & J. E. C. JARVIS", "Address": "6237 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36200, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.844212599, "SHAPE_Area": 2008.7008602200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362266.620399996638298, 254897.130300000309944 ], [ 362258.479999996721745, 254906.140700001269579 ], [ 362248.759300000965595, 254911.338500000536442 ], [ 362240.699799999594688, 254910.850400000810623 ], [ 362235.883500002324581, 254908.277800001204014 ], [ 362233.487899996340275, 254905.513999998569489 ], [ 362230.854999996721745, 254930.61259999871254 ], [ 362230.831600002944469, 254933.356600001454353 ], [ 362261.534400001168251, 254926.2195999994874 ], [ 362308.39580000191927, 254915.415199998766184 ], [ 362304.662799999117851, 254880.343100000172853 ], [ 362287.656499996781349, 254888.858800001442432 ], [ 362266.620399996638298, 254897.130300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403041500", "MAP": "D9-4672-T89", "PARCEL_NAM": "17-103", "ACRE": "0.56", "LONGITUDE": -64.91268978, "LATITUDE": 18.32313369, "OBJECTID_1": 37285, "PARCEL_NO_": "107403041500", "Tax_Legal_": "17-103 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "RAMOS, CHARLOTTE BROWN", "Address": "PO Box 10464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54000, "Improved_V": 336000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.94185761700001, "SHAPE_Area": 2257.5486920399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360741.431500002741814, 254843.061900001019239 ], [ 360719.240299999713898, 254892.276200000196695 ], [ 360724.000799998641014, 254901.392200000584126 ], [ 360733.570500001311302, 254913.925000000745058 ], [ 360739.176899999380112, 254918.403900001198053 ], [ 360742.393200002610683, 254919.485700000077486 ], [ 360775.971699997782707, 254858.75450000166893 ], [ 360741.431500002741814, 254843.061900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91561603, "LATITUDE": 18.32326005, "OBJECTID_1": 37272, "PARCEL_NO_": "107403040200", "Tax_Legal_": "17-77 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "QUANING, JENNIVINE & FELICIA", "Address": "540 Manchester Ct", "City": "Piscataway", "State": "New Jersey", "Zip": 8854, "Country": "United States", "Land_Value": 43700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.142936951, "SHAPE_Area": 2785.1018694700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360438.889899998903275, 254861.061900001019239 ], [ 360400.118600003421307, 254868.766100000590086 ], [ 360416.648299999535084, 254916.186299998313189 ], [ 360453.753100000321865, 254914.801300000399351 ], [ 360474.747800000011921, 254911.384500000625849 ], [ 360471.583700001239777, 254904.181400001049042 ], [ 360468.428599998354912, 254895.923000000417233 ], [ 360457.296599999070168, 254877.466699998825788 ], [ 360453.30460000038147, 254872.78999999910593 ], [ 360438.889899998903275, 254861.061900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90952513000001, "LATITUDE": 18.32319858, "OBJECTID_1": 37192, "PARCEL_NO_": "107403023800", "Tax_Legal_": "FRENCHMAN'S BAY 16-14 FRENCHMAN'S BAY QTR.", "Name": "HARRIGAN (TRUSTEE), ESPERANZA", "Address": "PO Box 7451", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58200, "Improved_V": 280100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.662372893, "SHAPE_Area": 2518.04605567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361107.10530000180006, 254892.07319999858737 ], [ 361101.019900001585484, 254849.171399999409914 ], [ 361081.61259999871254, 254855.556499999016523 ], [ 361051.406900003552437, 254899.00560000166297 ], [ 361048.79730000346899, 254921.360199999064207 ], [ 361089.949799999594688, 254918.108399998396635 ], [ 361089.220799997448921, 254909.025400001555681 ], [ 361092.514399997889996, 254901.030799999833107 ], [ 361101.446800000965595, 254893.715599998831749 ], [ 361107.10530000180006, 254892.07319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404034900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90185609, "LATITUDE": 18.32301486, "OBJECTID_1": 37433, "PARCEL_NO_": "107404034900", "Tax_Legal_": "BOLONGO BAY 60F FRENCHMAN BAY QTR.", "Name": "JOHNSON BUTTLE, DAWN", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55600, "Improved_V": 185100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.744414226, "SHAPE_Area": 3021.77779293 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361854.191200003027916, 254846.469799999147654 ], [ 361866.9087999984622, 254868.105500001460314 ], [ 361872.472099997103214, 254877.650199998170137 ], [ 361895.531499996781349, 254915.835799999535084 ], [ 361901.098399996757507, 254924.958399999886751 ], [ 361918.945100001990795, 254912.438799999654293 ], [ 361916.544200003147125, 254910.308200001716614 ], [ 361920.611699998378754, 254906.119600001722574 ], [ 361925.51969999819994, 254897.927200000733137 ], [ 361877.752300001680851, 254825.764400001615286 ], [ 361854.191200003027916, 254846.469799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601041400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87510996, "LATITUDE": 18.32335743, "OBJECTID_1": 38017, "PARCEL_NO_": "107601041400", "Tax_Legal_": "NADIR 3-2 RED HOOK QTR", "Name": "BLACKMAN, ELEANOR & HUGH", "Address": "PO Box 503173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.69570855800001, "SHAPE_Area": 413.00769813599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364738.515500001609325, 254947.759100001305342 ], [ 364733.729800000786781, 254941.598200000822544 ], [ 364716.939300000667572, 254924.784400001168251 ], [ 364695.849299997091293, 254939.388300001621246 ], [ 364711.144100002944469, 254942.468800000846386 ], [ 364738.515500001609325, 254947.759100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90235333, "LATITUDE": 18.32295502, "OBJECTID_1": 37318, "PARCEL_NO_": "107404013000", "Tax_Legal_": "FRENCHMAN'S BAY 14-120 FRENCHMANS BAY QTR.", "Name": "ANTHONY, PATRICK", "Address": "PO Box 308484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62500, "Improved_V": 14400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.92180193899998, "SHAPE_Area": 3227.1289656200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361854.191200003027916, 254846.469799999147654 ], [ 361833.520199999213219, 254811.892400000244379 ], [ 361805.433100000023842, 254890.6114999987185 ], [ 361837.617299996316433, 254898.896499998867512 ], [ 361848.713200002908707, 254921.574299998581409 ], [ 361866.9087999984622, 254868.105500001460314 ], [ 361854.191200003027916, 254846.469799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042200", "MAP": "D9-310-T62", "PARCEL_NAM": "19A-3", "ACRE": ".17", "LONGITUDE": -64.87482242, "LATITUDE": 18.32324112, "OBJECTID_1": 38025, "PARCEL_NO_": "107601042200", "Tax_Legal_": "19A-3 NADIR 2 RED HOOK QTR", "Name": "PHILLIP, FRANK & MONIQUE WHEATLEY-PHILLIP", "Address": "12 Rock Hollow CT.", "City": "Elkton", "State": "Maryland", "Zip": 21921, "Country": "United States", "Land_Value": 58800, "Improved_V": 133900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.32597534200001, "SHAPE_Area": 822.35803331700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364758.702100001275539, 254944.546799998730421 ], [ 364758.228500001132488, 254905.490600001066923 ], [ 364736.457999996840954, 254905.312399998307228 ], [ 364737.838699996471405, 254932.554800000041723 ], [ 364738.542499996721745, 254944.5929000005126 ], [ 364758.702100001275539, 254944.546799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601040300", "MAP": "F9-1515-T65", "PARCEL_NAM": "3-1D", "ACRE": null, "LONGITUDE": -64.87681533, "LATITUDE": 18.32343823, "OBJECTID_1": 38007, "PARCEL_NO_": "107601040300", "Tax_Legal_": "NADIR 3-1D RED HOOK QTR", "Name": "HASANEIN, YAZAN", "Address": "16202 Spring Gdn", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.83494397300001, "SHAPE_Area": 2345.10128403 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364576.450800001621246, 254951.282200001180172 ], [ 364577.512000001966953, 254921.723299998790026 ], [ 364537.671700000762939, 254930.072399999946356 ], [ 364495.57039999961853, 254938.895300000905991 ], [ 364495.844200000166893, 254942.395399998873472 ], [ 364498.882500000298023, 254964.374000001698732 ], [ 364498.747900001704693, 254967.774500001221895 ], [ 364530.988799996674061, 254960.931400001049042 ], [ 364543.43639999628067, 254958.28940000012517 ], [ 364576.450800001621246, 254951.282200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042000", "MAP": "D9-2748-T84", "PARCEL_NAM": "19A-4A", "ACRE": ".088", "LONGITUDE": -64.8746408, "LATITUDE": 18.32332219, "OBJECTID_1": 38022, "PARCEL_NO_": "107601042000", "Tax_Legal_": "19A-4A NADIR RED HOOK QTR", "Name": "THOMAS, KENDRICK", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9900, "Improved_V": 144600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.40523556, "SHAPE_Area": 360.12464171699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364775.3733000010252, 254922.972500000149012 ], [ 364758.44709999859333, 254923.515999998897314 ], [ 364758.702100001275539, 254944.546799998730421 ], [ 364775.636500000953674, 254944.474300000816584 ], [ 364775.3733000010252, 254922.972500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601041900", "MAP": "D9-310-T62", "PARCEL_NAM": "19A-5", "ACRE": ".16", "LONGITUDE": -64.87447592, "LATITUDE": 18.32324088, "OBJECTID_1": 38021, "PARCEL_NO_": "107601041900", "Tax_Legal_": "NADIR 19A-5 RED HOOK QTR. 2", "Name": "BARRY, CINDY", "Address": "ESTATE TUTU 146-79", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20300, "Improved_V": 50000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.797876634, "SHAPE_Area": 712.99941319599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364793.549800001084805, 254924.144900001585484 ], [ 364793.707999996840954, 254905.569899998605251 ], [ 364775.160999998450279, 254905.629200000315905 ], [ 364775.636500000953674, 254944.474300000816584 ], [ 364794.183499999344349, 254944.41499999910593 ], [ 364793.549800001084805, 254924.144900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042600", "MAP": "D9-310-T62", "PARCEL_NAM": "19A-1", "ACRE": ".13", "LONGITUDE": -64.87425781, "LATITUDE": 18.3233243, "OBJECTID_1": 38029, "PARCEL_NO_": "107601042600", "Tax_Legal_": "19A-1 NADIR NO.2 RED HOOK QTR.", "Name": "KUHNERT, HANNAH & OCTAVIA GEORGE", "Address": "PO Box 985", "City": "West End", "State": "North Carolina", "Zip": 27376, "Country": "United States", "Land_Value": 16900, "Improved_V": 109400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.768085104700006, "SHAPE_Area": 548.66180319600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364806.449000000953674, 254924.461500000208616 ], [ 364793.549800001084805, 254924.144900001585484 ], [ 364794.183499999344349, 254944.41499999910593 ], [ 364821.599899999797344, 254944.428300000727177 ], [ 364821.64299999922514, 254939.362399999052286 ], [ 364820.960799999535084, 254924.791400000452995 ], [ 364806.449000000953674, 254924.461500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90820414, "LATITUDE": 18.32317402, "OBJECTID_1": 37158, "PARCEL_NO_": "107403020300", "Tax_Legal_": "FRENCHMAN'S BAY 14-54 FRENCHMAN BAY QTR", "Name": "Leonard Lawrence & Derrick Andrew Lawrence", "Address": "7119 S Durango Dr", "City": "Las Vegas", "State": "Nevada", "Zip": 891132059, "Country": "United States", "Land_Value": 34200, "Improved_V": 77800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.27406182, "SHAPE_Area": 1739.85983278 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361249.702200002968311, 254907.383600000292063 ], [ 361209.870300002396107, 254850.273400001227856 ], [ 361199.386399999260902, 254850.398699998855591 ], [ 361206.922700002789497, 254912.3108000010252 ], [ 361215.781300000846386, 254913.64979999884963 ], [ 361229.492200002074242, 254913.339899998158216 ], [ 361235.953500002622604, 254912.126200001686811 ], [ 361249.702200002968311, 254907.383600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402026000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90446828, "LATITUDE": 18.32325326, "OBJECTID_1": 33226, "PARCEL_NO_": "107402026000", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-85 FRENCHMANS BAY QTR.", "Name": "GEORGE, FENRICK & DARLENE L.", "Address": "PO Box 9917", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.20667694400001, "SHAPE_Area": 1907.9410696499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361647.990000002086163, 254914.23200000077486 ], [ 361636.992899999022484, 254879.94480000063777 ], [ 361584.526799999177456, 254886.059300001710653 ], [ 361584.266099996864796, 254916.665699999779463 ], [ 361647.990000002086163, 254914.23200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90847998, "LATITUDE": 18.32311611, "OBJECTID_1": 37157, "PARCEL_NO_": "107403020200", "Tax_Legal_": "14-53 FRENCHMAN'S BAY FRENCHMAN BAY QUARTER", "Name": "JUDY-ANN JAMES-FREDERICK and RAY FREDERICK", "Address": "6515 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44400, "Improved_V": 170200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.69237908, "SHAPE_Area": 1548.1220930500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361199.386399999260902, 254850.398699998855591 ], [ 361192.12780000269413, 254850.550400000065565 ], [ 361176.825800001621246, 254848.3141999989748 ], [ 361177.135899998247623, 254906.578600000590086 ], [ 361206.922700002789497, 254912.3108000010252 ], [ 361199.386399999260902, 254850.398699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90548804, "LATITUDE": 18.32313915, "OBJECTID_1": 37294, "PARCEL_NO_": "107404010600", "Tax_Legal_": "FRENCHMAN'S BAY 14-15 FRENCHMAN'S BAY QTR.", "Name": "BAIG, SHAKIL & SEEMA", "Address": "PO Box 10447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.043942698, "SHAPE_Area": 1452.2109754400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361513.724200002849102, 254867.536800000816584 ], [ 361480.615000002086163, 254873.176500000059605 ], [ 361478.000100001692772, 254896.164299998432398 ], [ 361492.528099998831749, 254894.594399999827147 ], [ 361502.187700003385544, 254896.573300000280142 ], [ 361507.810300000011921, 254899.152499999850988 ], [ 361514.221199996769428, 254903.848999999463558 ], [ 361519.01410000026226, 254909.165600001811981 ], [ 361521.389899998903275, 254914.251299999654293 ], [ 361523.808899998664856, 254914.271099999547005 ], [ 361529.667000003159046, 254889.198899999260902 ], [ 361529.735399998724461, 254881.17790000140667 ], [ 361528.153300002217293, 254877.576299998909235 ], [ 361524.960400000214577, 254873.750500001013279 ], [ 361513.724200002849102, 254867.536800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404036700", "MAP": "D9-4153-T87", "PARCEL_NAM": "60-J", "ACRE": null, "LONGITUDE": -64.90061353, "LATITUDE": 18.32306859, "OBJECTID_1": 37448, "PARCEL_NO_": "107404036700", "Tax_Legal_": "BOLONGO 60-J FRENCHMAN BAY QTR.", "Name": "TURNBULL, RANDOLPH R", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77500, "Improved_V": 336500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.041544711, "SHAPE_Area": 2613.9614338599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362060.177500002086163, 254898.607099998742342 ], [ 362017.874499998986721, 254847.598400000482798 ], [ 362004.899800002574921, 254856.147100001573563 ], [ 361984.671800002455711, 254864.214099999517202 ], [ 361978.208700001239777, 254865.638900000602007 ], [ 362032.592000000178814, 254918.435199998319149 ], [ 362052.053199999034405, 254905.717799998819828 ], [ 362060.177500002086163, 254898.607099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87616951, "LATITUDE": 18.32316882, "OBJECTID_1": 38010, "PARCEL_NO_": "107601040600", "Tax_Legal_": "EST NADIR 3 RED HOOK QTR", "Name": "CARTY, FRETT, ESTRILL, SMITH & BRO", "Address": "PO Box 503173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 201700, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 507.39101613899999, "SHAPE_Area": 6357.3852244999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364716.939300000667572, 254924.784400001168251 ], [ 364692.938699997961521, 254902.423099998384714 ], [ 364643.775200001895428, 254899.48759999871254 ], [ 364609.118199996650219, 254897.5152000002563 ], [ 364602.671300001442432, 254897.040300000458956 ], [ 364533.358999997377396, 254892.884399998933077 ], [ 364535.646700002253056, 254908.313000001013279 ], [ 364492.062600001692772, 254913.02250000089407 ], [ 364493.63570000231266, 254917.679400000721216 ], [ 364494.389899998903275, 254923.807300001382828 ], [ 364495.57039999961853, 254938.895300000905991 ], [ 364537.671700000762939, 254930.072399999946356 ], [ 364577.512000001966953, 254921.723299998790026 ], [ 364669.284100003540516, 254934.104699999094009 ], [ 364687.798799999058247, 254937.844799999147654 ], [ 364695.849299997091293, 254939.388300001621246 ], [ 364716.939300000667572, 254924.784400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402027200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90391948, "LATITUDE": 18.32320831, "OBJECTID_1": 33237, "PARCEL_NO_": "107402027200", "Tax_Legal_": "FRENCHMAN'S BAY EST. 14-93 FRENCHMANS BAY QTR", "Name": "ADINA WILLIAMS FAMILY REVOCABLE TRUST", "Address": "3582 Honduras 5B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.032149076, "SHAPE_Area": 2057.2979965200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361697.993900001049042, 254913.163600001484156 ], [ 361698.100000001490116, 254900.709899999201298 ], [ 361703.03320000320673, 254889.562300000339746 ], [ 361711.195200003683567, 254878.019000001251698 ], [ 361686.192299999296665, 254878.658700000494719 ], [ 361636.992899999022484, 254879.94480000063777 ], [ 361647.990000002086163, 254914.23200000077486 ], [ 361697.993900001049042, 254913.163600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90597799, "LATITUDE": 18.32318229, "OBJECTID_1": 37293, "PARCEL_NO_": "107404010500", "Tax_Legal_": "FRENCHMAN'S BAY 14-14 FRENCHMAN'S BAY QTR.", "Name": "BAIG, SHAKIL & SEEMA", "Address": "PO Box 10447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.30378586500001, "SHAPE_Area": 1192.6413822699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361480.615000002086163, 254873.176500000059605 ], [ 361440.23650000244379, 254880.234299998730421 ], [ 361427.238399997353554, 254891.526900000870228 ], [ 361439.160400003194809, 254911.889499999582767 ], [ 361446.462200000882149, 254906.671900000423193 ], [ 361456.179300002753735, 254901.896299999207258 ], [ 361478.000100001692772, 254896.164299998432398 ], [ 361480.615000002086163, 254873.176500000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90654187, "LATITUDE": 18.32309713, "OBJECTID_1": 37291, "PARCEL_NO_": "107404010300", "Tax_Legal_": "FRENCHMAN BAY 14-6 FRENCHMAN BAY QTR", "Name": "M OMAR F ABDUL SAMAD", "Address": "2825 Grand Oak Dr", "City": "Garland", "State": "Texas", "Zip": 75044, "Country": "United States", "Land_Value": 55800, "Improved_V": 246000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.99822385499999, "SHAPE_Area": 1657.3927753099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361427.238399997353554, 254891.526900000870228 ], [ 361398.390900000929832, 254870.181499999016523 ], [ 361392.181400001049042, 254841.844099998474121 ], [ 361384.861599996685982, 254849.172499999403954 ], [ 361378.324799999594688, 254859.251499999314547 ], [ 361377.482600003480911, 254863.466499999165535 ], [ 361375.851999998092651, 254865.564100001007318 ], [ 361368.454899996519089, 254881.968800000846386 ], [ 361407.730400003492832, 254909.732400000095367 ], [ 361427.238399997353554, 254891.526900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90801213, "LATITUDE": 18.32308482, "OBJECTID_1": 37159, "PARCEL_NO_": "107403020400", "Tax_Legal_": "FRENCHMANS BAY 14-55 FRENCHMANS BAY QTR", "Name": "Leonard Lawrence & Derrick Andrew Lawrence", "Address": "7119 S Durango Dr", "City": "Las Vegas", "State": "Nevada", "Zip": 891132059, "Country": "United States", "Land_Value": 42500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.37412483700001, "SHAPE_Area": 1122.7734392899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361235.586000002920628, 254860.616399999707937 ], [ 361225.193800002336502, 254849.976599998772144 ], [ 361209.870300002396107, 254850.273400001227856 ], [ 361249.702200002968311, 254907.383600000292063 ], [ 361252.939999997615814, 254905.932399999350309 ], [ 361258.625600002706051, 254901.123799998313189 ], [ 361263.519199997186661, 254894.619899999350309 ], [ 361265.164200000464916, 254890.833700001239777 ], [ 361235.586000002920628, 254860.616399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90877618, "LATITUDE": 18.32305563, "OBJECTID_1": 37156, "PARCEL_NO_": "107403020100", "Tax_Legal_": "FRENCHMAN BAY 14-52 FRENCHMAN BAY QTR", "Name": "CLENDINEN, BEVERLY", "Address": "7465 Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62400, "Improved_V": 39800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.93281503399999, "SHAPE_Area": 2092.7856930799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361176.825800001621246, 254848.3141999989748 ], [ 361164.743699997663498, 254846.737700000405312 ], [ 361140.608300000429153, 254840.207299999892712 ], [ 361141.715599998831749, 254899.533700000494719 ], [ 361154.589699998497963, 254902.805399999022484 ], [ 361177.135899998247623, 254906.578600000590086 ], [ 361176.825800001621246, 254848.3141999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503032200", "MAP": "A9-474-T95", "PARCEL_NAM": "61-46", "ACRE": ".50", "LONGITUDE": -64.89769838, "LATITUDE": 18.32310113, "OBJECTID_1": 37612, "PARCEL_NO_": "107503032200", "Tax_Legal_": "61-46 ESTATE BOLONGO #3 FRENCHMAN'S BAY QTR", "Name": "LEVIA, CARMEN", "Address": "PO Box 502995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.640155945, "SHAPE_Area": 1920.4492759899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362353.642800003290176, 254904.808699999004602 ], [ 362347.614900000393391, 254855.152300000190735 ], [ 362324.098800003528595, 254870.580800000578165 ], [ 362304.662799999117851, 254880.343100000172853 ], [ 362308.39580000191927, 254915.415199998766184 ], [ 362353.642800003290176, 254904.808699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91486271, "LATITUDE": 18.32298068, "OBJECTID_1": 37276, "PARCEL_NO_": "107403040600", "Tax_Legal_": "17-83 FRENCHMAN'S BAY FRENCHMAN'S BAY", "Name": "HARRIGAN, HUSTON JR. , & JUDITH", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66800, "Improved_V": 256900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.45354427900003, "SHAPE_Area": 3600.2279122 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360485.214699998497963, 254818.589000001549721 ], [ 360490.294299997389317, 254884.914000000804663 ], [ 360560.314000003039837, 254900.6858000010252 ], [ 360545.226000003516674, 254873.331199999898672 ], [ 360543.62780000269413, 254871.629399999976158 ], [ 360537.36429999768734, 254849.624400001019239 ], [ 360535.785800002515316, 254845.600699998438358 ], [ 360533.393899999558926, 254842.414700001478195 ], [ 360527.031499996781349, 254832.019099999219179 ], [ 360523.831399999558926, 254829.037599999457598 ], [ 360521.426899999380112, 254827.329100001603365 ], [ 360515.814999997615814, 254823.483500000089407 ], [ 360507.771700002253056, 254821.09569999948144 ], [ 360485.214699998497963, 254818.589000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90701816000001, "LATITUDE": 18.32305407, "OBJECTID_1": 37290, "PARCEL_NO_": "107404010200", "Tax_Legal_": "FRENCHMAN'S BAY 14-36 FRENCHMAN'S BAY", "Name": "SUID, ZAKARIA A. & KEFAH", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65700, "Improved_V": 207200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.721094671, "SHAPE_Area": 1394.25234482 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361343.26860000193119, 254904.138599999248981 ], [ 361353.862099997699261, 254891.137499999254942 ], [ 361361.2179000005126, 254879.587499998509884 ], [ 361362.049300000071526, 254876.638999998569489 ], [ 361363.674500003457069, 254875.174699999392033 ], [ 361364.507799997925758, 254872.015099998563528 ], [ 361366.957299999892712, 254868.446600001305342 ], [ 361371.093199998140335, 254856.236999999731779 ], [ 361369.484200000762939, 254855.801600001752377 ], [ 361346.075900003314018, 254858.565400000661612 ], [ 361341.239900000393391, 254858.314699999988079 ], [ 361337.226300001144409, 254856.170899998396635 ], [ 361325.853399999439716, 254865.999200001358986 ], [ 361319.321999996900558, 254875.445000000298023 ], [ 361343.26860000193119, 254904.138599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404037700", "MAP": "D9-4151-T87", "PARCEL_NAM": "26-B1", "ACRE": ".573", "LONGITUDE": -64.89971163, "LATITUDE": 18.32302987, "OBJECTID_1": 37450, "PARCEL_NO_": "107404037700", "Tax_Legal_": "EST. BOLONGO 26-B1 FRENCHMANS BAY QTR.", "Name": "MITCHELL, SAMUEL", "Address": "PO Box 1121", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 62900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.90310762399997, "SHAPE_Area": 2561.6222435999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362102.957000002264977, 254893.679900001734495 ], [ 362103.801100000739098, 254889.253800000995398 ], [ 362111.052500002086163, 254889.94649999961257 ], [ 362111.828199997544289, 254893.541400000452995 ], [ 362113.428300000727177, 254895.0320999994874 ], [ 362122.274300001561642, 254897.848799999803305 ], [ 362136.787900000810623, 254897.967599999159575 ], [ 362144.872699998319149, 254895.500599998980761 ], [ 362151.353699997067451, 254891.96510000154376 ], [ 362159.483400002121925, 254884.221099998801947 ], [ 362160.304099999368191, 254882.539099998772144 ], [ 362118.695900000631809, 254844.6239 ], [ 362110.557300001382828, 254853.423200000077486 ], [ 362069.838799998164177, 254900.374899998307228 ], [ 362062.526299998164177, 254906.859000001102686 ], [ 362063.305600002408028, 254910.031700000166893 ], [ 362082.739799998700619, 254900.480500001460314 ], [ 362101.335400000214577, 254894.722100000828505 ], [ 362102.957000002264977, 254893.679900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91417791000001, "LATITUDE": 18.32302265, "OBJECTID_1": 37281, "PARCEL_NO_": "107403041100", "Tax_Legal_": "17-99 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "SPENCELEY, RICHARD", "Address": "PO Box 308790", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.66190629100001, "SHAPE_Area": 1836.1078266699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360590.082099996507168, 254813.95890000090003 ], [ 360589.218299999833107, 254820.706799998879433 ], [ 360564.442699998617172, 254889.320500001311302 ], [ 360567.610399998724461, 254896.101399999111891 ], [ 360570.022100001573563, 254896.965599998831749 ], [ 360592.665399998426437, 254889.340399999171495 ], [ 360611.278899997472763, 254881.471200000494719 ], [ 360590.082099996507168, 254813.95890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90502535, "LATITUDE": 18.32301411, "OBJECTID_1": 37296, "PARCEL_NO_": "107404010800", "Tax_Legal_": "FRENCHMANS BAY 14-69 FRENCHMANS BAY QTR.", "Name": "SAMUEL L. & TRACEY N. THORNTON HUGHES REVOC TR", "Address": "PO Box 2009", "City": "Russellville", "State": "Arkansas", "Zip": 72811, "Country": "United States", "Land_Value": 66500, "Improved_V": 424000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.95431977000001, "SHAPE_Area": 2155.2518753899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361577.345600001513958, 254877.13459999859333 ], [ 361575.056100003421307, 254861.917100001126528 ], [ 361571.134199999272823, 254849.008299998939037 ], [ 361564.789800003170967, 254836.501899998635054 ], [ 361558.402199998497963, 254829.061299998313189 ], [ 361541.990099996328354, 254862.490800000727177 ], [ 361528.262999996542931, 254864.700500000268221 ], [ 361533.842399999499321, 254872.345600001513958 ], [ 361537.794900000095367, 254881.666000001132488 ], [ 361536.900499999523163, 254892.002300001680851 ], [ 361534.382600001990795, 254903.59180000051856 ], [ 361562.598200000822544, 254904.456000000238419 ], [ 361577.345600001513958, 254877.13459999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91526754, "LATITUDE": 18.32294813, "OBJECTID_1": 37275, "PARCEL_NO_": "107403040500", "Tax_Legal_": "17-82 FREENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "SHERIDAN, ROY & ANN L", "Address": "PO Box 10537", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.033721023, "SHAPE_Area": 1891.0027146499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360481.192199997603893, 254817.500599998980761 ], [ 360443.778099998831749, 254855.191300000995398 ], [ 360455.795500002801418, 254864.366599999368191 ], [ 360461.369499996304512, 254872.644900001585484 ], [ 360470.9391999989748, 254885.177700001746416 ], [ 360473.325800001621246, 254888.997000001370907 ], [ 360475.701499998569489, 254894.082699999213219 ], [ 360490.294299997389317, 254884.914000000804663 ], [ 360485.214699998497963, 254818.589000001549721 ], [ 360482.799400001764297, 254818.147100001573563 ], [ 360481.192199997603893, 254817.500599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90911116, "LATITUDE": 18.323006, "OBJECTID_1": 37191, "PARCEL_NO_": "107403023700", "Tax_Legal_": "FRENCHMAN'S BAY 16-9 FRENCHMAN BAY QTR.", "Name": "DANEY & MURIEL CALLWOOD", "Address": "PO Box 423", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 53000, "Improved_V": 297000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.84337608499999, "SHAPE_Area": 1936.3627252700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361140.608300000429153, 254840.207299999892712 ], [ 361133.365900002419949, 254838.459300000220537 ], [ 361101.019900001585484, 254849.171399999409914 ], [ 361107.10530000180006, 254892.07319999858737 ], [ 361114.364000000059605, 254891.921500001102686 ], [ 361141.715599998831749, 254899.533700000494719 ], [ 361140.608300000429153, 254840.207299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403041400", "MAP": "D9-4672-T89", "PARCEL_NAM": "17-102", "ACRE": "0.51", "LONGITUDE": -64.91297642000001, "LATITUDE": 18.3229016, "OBJECTID_1": 37284, "PARCEL_NO_": "107403041400", "Tax_Legal_": "17-102 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "SUTTON, ULRIC S", "Address": "PO Box 306044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.49426635399999, "SHAPE_Area": 1748.88326942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360695.644299998879433, 254822.422200001776218 ], [ 360695.306199997663498, 254862.105000000447035 ], [ 360700.12610000371933, 254864.255399998277426 ], [ 360707.329000003635883, 254870.647199999541044 ], [ 360719.240299999713898, 254892.276200000196695 ], [ 360741.431500002741814, 254843.061900001019239 ], [ 360695.644299998879433, 254822.422200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90743432, "LATITUDE": 18.32304298, "OBJECTID_1": 37289, "PARCEL_NO_": "107404010100", "Tax_Legal_": "FRENCHMAN'S BAY 14-41 FRENCHMAN'S BAY QTR", "Name": "ALLAMBY, LUBEN A. & OTENSIA P", "Address": "PO Box 305606", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24400, "Improved_V": 73200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.38424521300001, "SHAPE_Area": 1078.1793478500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361319.321999996900558, 254875.445000000298023 ], [ 361319.411899998784065, 254864.890999998897314 ], [ 361298.571800000965595, 254850.155000001192093 ], [ 361287.960299998521805, 254865.2668999992311 ], [ 361278.961400002241135, 254880.392000000923872 ], [ 361303.818599998950958, 254896.849599998444319 ], [ 361319.321999996900558, 254875.445000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503032100", "MAP": "A9-474-T95", "PARCEL_NAM": "61-47", "ACRE": ".504", "LONGITUDE": -64.89734319, "LATITUDE": 18.32296363, "OBJECTID_1": 37611, "PARCEL_NO_": "107503032100", "Tax_Legal_": "61-47 ESTATE BOLONGO #3 FRENCHMANS BAY QTR", "Name": "JNOROSE, ANDREW & HETHLINE TOUSSAINT-JNOROSE", "Address": "PO Box 11915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.56081232899999, "SHAPE_Area": 1901.3028786299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362390.002400003373623, 254896.240299999713898 ], [ 362376.787799999117851, 254838.292500000447035 ], [ 362363.021200001239777, 254845.145899999886751 ], [ 362347.614900000393391, 254855.152300000190735 ], [ 362353.642800003290176, 254904.808699999004602 ], [ 362390.002400003373623, 254896.240299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87421265, "LATITUDE": 18.32316023, "OBJECTID_1": 38028, "PARCEL_NO_": "107601042500", "Tax_Legal_": "NADIR 19A-2A RED HOOK QTR", "Name": "DAWSON, EDITH", "Address": "PO Box 8763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9600, "Improved_V": 99700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.221921370700002, "SHAPE_Area": 213.95044215499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364820.960799999535084, 254924.791400000452995 ], [ 364818.628200002014637, 254914.639800000935793 ], [ 364813.854999996721745, 254907.001400001347065 ], [ 364810.640600003302097, 254905.708500001579523 ], [ 364806.608999997377396, 254905.675500001758337 ], [ 364806.449000000953674, 254924.461500000208616 ], [ 364820.960799999535084, 254924.791400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87432997000001, "LATITUDE": 18.32314878, "OBJECTID_1": 38027, "PARCEL_NO_": "107601042400", "Tax_Legal_": "19A-2 NADIR RED HOOK QTR", "Name": "REGISTE, STEVEN", "Address": "6514 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.166871954100003, "SHAPE_Area": 241.013904072 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364806.608999997377396, 254905.675500001758337 ], [ 364793.707999996840954, 254905.569899998605251 ], [ 364793.549800001084805, 254924.144900001585484 ], [ 364806.449000000953674, 254924.461500000208616 ], [ 364806.608999997377396, 254905.675500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91436447, "LATITUDE": 18.32283356, "OBJECTID_1": 37280, "PARCEL_NO_": "107403041000", "Tax_Legal_": "17-98 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "DONOVAN, DELORES", "Address": "PO Box 10547", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49600, "Improved_V": 197300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.203991062, "SHAPE_Area": 1696.7999598599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360583.714299999177456, 254804.19649999961257 ], [ 360546.253499999642372, 254847.375100001692772 ], [ 360546.23369999974966, 254849.697000000625849 ], [ 360554.10809999704361, 254871.926300000399351 ], [ 360564.442699998617172, 254889.320500001311302 ], [ 360589.218299999833107, 254820.706799998879433 ], [ 360590.082099996507168, 254813.95890000090003 ], [ 360592.553199999034405, 254807.857400000095367 ], [ 360583.714299999177456, 254804.19649999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90165969, "LATITUDE": 18.32277998, "OBJECTID_1": 37432, "PARCEL_NO_": "107404034800", "Tax_Legal_": "BOLONGO 60E FRENCHMAN BAY QTR.", "Name": "WINSTON, JR., CYRIL & ERIKA", "Address": "PO BOX 502523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 66200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.31052251700001, "SHAPE_Area": 2428.8604633800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361944.320200003683567, 254868.105799999088049 ], [ 361899.68639999628067, 254806.734400000423193 ], [ 361877.752300001680851, 254825.764400001615286 ], [ 361925.51969999819994, 254897.927200000733137 ], [ 361932.103299997746944, 254882.360100001096725 ], [ 361935.377099998295307, 254876.687399998307228 ], [ 361944.320200003683567, 254868.105799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404036600", "MAP": "D9-4153-T87", "PARCEL_NAM": "60-K", "ACRE": null, "LONGITUDE": -64.90033866, "LATITUDE": 18.32288315, "OBJECTID_1": 37447, "PARCEL_NO_": "107404036600", "Tax_Legal_": "60K ESTATE BOLONGO FRENCHMANS BAY QTR.", "Name": "RYAN, GWENDOLYN & CARL CHARLESWELL(LIFE ESTATE)", "Address": "PO Box 6031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60200, "Improved_V": 218500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.54264974399999, "SHAPE_Area": 2088.5273352899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362083.785300001502037, 254872.413600001484156 ], [ 362039.018399998545647, 254826.662099998444319 ], [ 362035.764399997889996, 254830.013000000268221 ], [ 362028.424900002777576, 254839.663199998438358 ], [ 362022.742899999022484, 254844.049699999392033 ], [ 362017.874499998986721, 254847.598400000482798 ], [ 362060.177500002086163, 254898.607099998742342 ], [ 362064.244999997317791, 254894.418499998748302 ], [ 362083.785300001502037, 254872.413600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90782561, "LATITUDE": 18.32296571, "OBJECTID_1": 37160, "PARCEL_NO_": "107403020500", "Tax_Legal_": "14-56B FRENCHMAN'S BAY FRENCHMANS BAY QUARTER", "Name": "EDDY, LIONEL A.,JR. & JOANN FARLEY EDDY", "Address": "PO BOX 502276", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.62100929600001, "SHAPE_Area": 1080.5612366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361281.534999996423721, 254862.25899999961257 ], [ 361257.509199999272823, 254842.852800000458956 ], [ 361235.586000002920628, 254860.616399999707937 ], [ 361265.164200000464916, 254890.833700001239777 ], [ 361275.003600001335144, 254871.704700000584126 ], [ 361276.626999996602535, 254870.451499998569489 ], [ 361279.909800000488758, 254863.723299998790026 ], [ 361281.534999996423721, 254862.25899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90634347, "LATITUDE": 18.32291072, "OBJECTID_1": 37292, "PARCEL_NO_": "107404010400", "Tax_Legal_": "FRENCHMAN'S BAY 14-5 FRENCHMAN'S BAY QTR", "Name": "BOOLCHANDS", "Address": "PO Box 600178", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45700, "Improved_V": 229100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.804275905, "SHAPE_Area": 1751.2650724099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361440.23650000244379, 254880.234299998730421 ], [ 361423.715700000524521, 254831.758600000292063 ], [ 361404.331799998879433, 254835.399700000882149 ], [ 361392.181400001049042, 254841.844099998474121 ], [ 361398.390900000929832, 254870.181499999016523 ], [ 361427.238399997353554, 254891.526900000870228 ], [ 361440.23650000244379, 254880.234299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90284513, "LATITUDE": 18.32278974, "OBJECTID_1": 37317, "PARCEL_NO_": "107404012900", "Tax_Legal_": "FRENCHMAN'S BAY 14-125 FRENCHMAN BAY QTR.", "Name": "MOORE, THOMAS & OTHERS", "Address": "16851 Round Mountain Rd", "City": "Bakersfield", "State": "California", "Zip": 93306, "Country": "United States", "Land_Value": 138300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 328.58019616199999, "SHAPE_Area": 6038.2746480799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361833.520199999213219, 254811.892400000244379 ], [ 361818.412500001490116, 254786.859700001776218 ], [ 361791.619000002741814, 254808.383099999278784 ], [ 361784.302799999713898, 254815.289299998432398 ], [ 361765.640699997544289, 254828.857599999755621 ], [ 361755.857100002467632, 254841.44310000166297 ], [ 361749.300499998033047, 254853.844000000506639 ], [ 361727.375399999320507, 254871.818599998950958 ], [ 361741.70380000025034, 254893.67850000038743 ], [ 361805.433100000023842, 254890.6114999987185 ], [ 361833.520199999213219, 254811.892400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504040300", "MAP": "B9-251-T69", "PARCEL_NAM": "2-3A", "ACRE": null, "LONGITUDE": -64.88774624, "LATITUDE": 18.32173517, "OBJECTID_1": 37782, "PARCEL_NO_": "107504040300", "Tax_Legal_": "2-1,2-3A & 2-4 ESTATE BOVONI WESTERN PORTION", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 585400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1229.08184835, "SHAPE_Area": 74572.189243500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363308.998700000345707, 254643.272399999201298 ], [ 363294.375399999320507, 254656.029399998486042 ], [ 363281.377300001680851, 254667.32209999859333 ], [ 363267.565700002014637, 254679.452500000596046 ], [ 363253.754000000655651, 254691.582899998873472 ], [ 363234.2550999969244, 254708.732900001108646 ], [ 363208.244499996304512, 254733.006900001317263 ], [ 363186.297799997031689, 254753.514499999582767 ], [ 363170.040299996733665, 254768.791200000792742 ], [ 363155.407999999821186, 254782.60359999909997 ], [ 363143.2162000015378, 254793.902899999171495 ], [ 363330.437899999320507, 254871.640000000596046 ], [ 363367.422200001776218, 254884.397199999541044 ], [ 363371.441100001335144, 254885.907800000160933 ], [ 363427.708599999547005, 254906.844399999827147 ], [ 363490.609200000762939, 254811.733800001442432 ], [ 363603.275799997150898, 254648.847300000488758 ], [ 363485.991099998354912, 254596.591699998825788 ], [ 363419.209899999201298, 254673.9386 ], [ 363351.270400002598763, 254603.299499999731779 ], [ 363348.831699997186661, 254605.601599998772144 ], [ 363335.819200001657009, 254618.582899998873472 ], [ 363322.808499999344349, 254631.353100001811981 ], [ 363308.998700000345707, 254643.272399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503032000", "MAP": "A9-474-T95", "PARCEL_NAM": "61-48", "ACRE": ".519", "LONGITUDE": -64.89704569, "LATITUDE": 18.32286224, "OBJECTID_1": 37610, "PARCEL_NO_": "107503032000", "Tax_Legal_": "61-48 ESTATE BOLONGO No.3 FRENCHMAN'S BAY QUARTER", "Name": "LAKE, GLENDA L. H", "Address": "PO Box 11584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.23496493, "SHAPE_Area": 1979.9398612 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362422.32150000333786, 254888.694400001317263 ], [ 362406.713100001215935, 254827.771699998527765 ], [ 362376.787799999117851, 254838.292500000447035 ], [ 362390.002400003373623, 254896.240299999713898 ], [ 362422.32150000333786, 254888.694400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045400", "MAP": "A9-400-T92", "PARCEL_NAM": "2-3J", "ACRE": "2.44", "LONGITUDE": -64.88955803, "LATITUDE": 18.32269361, "OBJECTID_1": 37823, "PARCEL_NO_": "107504045400", "Tax_Legal_": "2-3J BOVONI FRENCHMAN BAY QTR", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 195600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 547.93902363699999, "SHAPE_Area": 11737.6726397 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363138.338799998164177, 254798.507100000977516 ], [ 363116.390299998223782, 254819.225699998438358 ], [ 363086.314000003039837, 254847.477099999785423 ], [ 363083.875299997627735, 254849.779199998825788 ], [ 363222.92679999768734, 254902.635200001299381 ], [ 363268.292499996721745, 254878.097500000149012 ], [ 363291.738499999046326, 254870.901099998503923 ], [ 363318.357600003480911, 254869.852400001138449 ], [ 363330.437899999320507, 254871.640000000596046 ], [ 363143.2162000015378, 254793.902899999171495 ], [ 363138.338799998164177, 254798.507100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87709003000001, "LATITUDE": 18.32304219, "OBJECTID_1": 38008, "PARCEL_NO_": "107601040400", "Tax_Legal_": "3A ESTATE NADIR RED HOOK QTR", "Name": "ESTRILL, GEORGE", "Address": "PO Box 2752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.10690751300001, "SHAPE_Area": 942.18557975700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364492.062600001692772, 254913.02250000089407 ], [ 364535.646700002253056, 254908.313000001013279 ], [ 364533.358999997377396, 254892.884399998933077 ], [ 364476.940499998629093, 254889.678399998694658 ], [ 364484.132600001990795, 254897.33669999986887 ], [ 364488.905699998140335, 254904.975099999457598 ], [ 364489.697599999606609, 254906.670299999415874 ], [ 364492.062600001692772, 254913.02250000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91388025000001, "LATITUDE": 18.32281499, "OBJECTID_1": 37282, "PARCEL_NO_": "107403041200", "Tax_Legal_": "17-100&17-99-1 FRENCHAMN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "BRIDGES, BRENDA & EVERTON", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55700, "Improved_V": 242200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.841007703, "SHAPE_Area": 2735.4024132700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360592.553199999034405, 254807.857400000095367 ], [ 360590.082099996507168, 254813.95890000090003 ], [ 360611.278899997472763, 254881.471200000494719 ], [ 360628.274400003254414, 254874.221999999135733 ], [ 360652.524899996817112, 254867.243299998342991 ], [ 360629.607600003480911, 254812.382500000298023 ], [ 360592.553199999034405, 254807.857400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90456111, "LATITUDE": 18.32287239, "OBJECTID_1": 37314, "PARCEL_NO_": "107404012600", "Tax_Legal_": "FRENCHMAN'S BAY 14-86 FRENCHMAN'S BAY QTR.", "Name": "JULION, PETER P", "Address": "P.O.BOX 4102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57400, "Improved_V": 277700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.097566196, "SHAPE_Area": 2518.3050844 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361636.992899999022484, 254879.94480000063777 ], [ 361612.51690000295639, 254818.738400001078844 ], [ 361576.013400003314018, 254844.19310000166297 ], [ 361580.723700001835823, 254859.219300001859665 ], [ 361584.526799999177456, 254886.059300001710653 ], [ 361636.992899999022484, 254879.94480000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504071700", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-10", "ACRE": ".21", "LONGITUDE": -64.89102821, "LATITUDE": 18.32286612, "OBJECTID_1": 37876, "PARCEL_NO_": "107504071700", "Tax_Legal_": "ESTATE BOVONI 12B-10 WESTERN PART", "Name": "JEFFERS, ELROY S. & KARLEEN A.", "Address": "PO BOX 8742", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.84789951, "SHAPE_Area": 721.21065912200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363052.111599996685982, 254880.003899998962879 ], [ 363041.9003000035882, 254854.924100000411272 ], [ 363027.04839999973774, 254848.710799999535084 ], [ 363025.799199998378754, 254851.837000001221895 ], [ 363021.645400002598763, 254866.157400000840425 ], [ 363026.47070000320673, 254867.674499999731779 ], [ 363023.978000000119209, 254876.309000000357628 ], [ 363019.15089999884367, 254875.002900000661612 ], [ 363017.763400003314018, 254879.854899998754263 ], [ 363041.6587999984622, 254883.26799999922514 ], [ 363047.749099999666214, 254884.137899998575449 ], [ 363052.111599996685982, 254880.003899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503031900", "MAP": "A9-474-T95", "PARCEL_NAM": "61-49", "ACRE": ".511", "LONGITUDE": -64.89675882, "LATITUDE": 18.32277631, "OBJECTID_1": 37609, "PARCEL_NO_": "107503031900", "Tax_Legal_": "BOLONGO BAY ESTATE 61-49 No.3 FRENCHMAN'S BAY QTR.", "Name": "BROOKS, MARIO M. & DEANNA A.", "Address": "PO BOX 9253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.66498513, "SHAPE_Area": 2013.04417431 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362452.2162000015378, 254881.761900000274181 ], [ 362436.638400003314018, 254817.250799998641014 ], [ 362406.713100001215935, 254827.771699998527765 ], [ 362422.32150000333786, 254888.694400001317263 ], [ 362428.784500002861023, 254887.269600000232458 ], [ 362452.2162000015378, 254881.761900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90593826, "LATITUDE": 18.32285518, "OBJECTID_1": 37295, "PARCEL_NO_": "107404010700", "Tax_Legal_": "FRENCHMAN'S BAY 14-4 FRENCHMAN'S BAY QTR", "Name": "GODFREY, HARRY & MARY A", "Address": "PO Box 12027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92300, "Improved_V": 217600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.37599654499999, "SHAPE_Area": 2581.45032507 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361440.23650000244379, 254880.234299998730421 ], [ 361480.615000002086163, 254873.176500000059605 ], [ 361513.724200002849102, 254867.536800000816584 ], [ 361485.623700000345707, 254853.163600001484156 ], [ 361472.017099998891354, 254841.230999998748302 ], [ 361465.634999997913837, 254833.157200001180172 ], [ 361464.051100000739098, 254829.766699999570847 ], [ 361458.435699999332428, 254826.343299999833107 ], [ 361453.601400002837181, 254825.881499998271465 ], [ 361423.715700000524521, 254831.758600000292063 ], [ 361440.23650000244379, 254880.234299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503030400", "MAP": "A9-474-T95", "PARCEL_NAM": "61-59", "ACRE": ".510", "LONGITUDE": -64.89777178, "LATITUDE": 18.32270587, "OBJECTID_1": 37599, "PARCEL_NO_": "107503030400", "Tax_Legal_": "61-59 ESTATE BOLONGO FRENCHMAN'S BAY QTR.", "Name": "VILLA LOCK & RUN LLC", "Address": "641 Wood Wrd Ave SE", "City": "Atlanta", "State": "Georgia", "Zip": 30312, "Country": "United States", "Land_Value": 48100, "Improved_V": 280200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.388468343, "SHAPE_Area": 2133.0397149400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362359.041799999773502, 254838.991599999368191 ], [ 362335.94820000231266, 254804.816599998623133 ], [ 362334.3175999969244, 254806.914200000464916 ], [ 362321.251199997961521, 254826.227800000458956 ], [ 362317.181800000369549, 254830.627500001341105 ], [ 362313.135899998247623, 254832.283100001513958 ], [ 362311.481899999082088, 254837.124699998646975 ], [ 362302.509999997913837, 254849.083599999547005 ], [ 362294.362300001084805, 254858.938400000333786 ], [ 362276.396899998188019, 254885.38910000026226 ], [ 362295.012199997901917, 254877.308800000697374 ], [ 362313.640100002288818, 254867.750999998301268 ], [ 362359.041799999773502, 254838.991599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404012700", "MAP": "D9-9250-T018", "PARCEL_NAM": "14-91", "ACRE": "0.74", "LONGITUDE": -64.90418351, "LATITUDE": 18.32271147, "OBJECTID_1": 37315, "PARCEL_NO_": "107404012700", "Tax_Legal_": "14-91 ESTATE FRENCHMANS BAY FRENCHMAN BAY QUARTER", "Name": "FRETT, LEATRICE O", "Address": "PO Box 11991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63400, "Improved_V": 35200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.60692536600001, "SHAPE_Area": 3626.9365071100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361676.949699997901917, 254878.900299999862909 ], [ 361667.641500003635883, 254818.714499998837709 ], [ 361667.696000002324581, 254818.696299999952316 ], [ 361656.11710000038147, 254812.129200000315905 ], [ 361614.347099997103214, 254793.211100000888109 ], [ 361612.51690000295639, 254818.738400001078844 ], [ 361636.992899999022484, 254879.94480000063777 ], [ 361676.949699997901917, 254878.900299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91589276000001, "LATITUDE": 18.32281605, "OBJECTID_1": 32938, "PARCEL_NO_": "107304020800", "Tax_Legal_": "FRENCHMAN BAY 17-78 FRENCHMAN BAY QTR", "Name": "NURANJALI LLC", "Address": "5177 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.611048635, "SHAPE_Area": 1729.5618292 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360385.269799999892712, 254813.338100001215935 ], [ 360380.426500000059605, 254813.931699998676777 ], [ 360382.786100000143051, 254820.917100001126528 ], [ 360394.612800002098083, 254852.46680000051856 ], [ 360396.176899999380112, 254858.179200001060963 ], [ 360400.118600003421307, 254868.766100000590086 ], [ 360438.889899998903275, 254861.061900001019239 ], [ 360435.688000001013279, 254858.291400000452995 ], [ 360430.889700002968311, 254853.6081000007689 ], [ 360425.342600002884865, 254842.163699999451637 ], [ 360423.760600000619888, 254838.562100000679493 ], [ 360422.96679999679327, 254837.078000001609325 ], [ 360418.989200003445148, 254830.712600000202656 ], [ 360411.815099999308586, 254820.943599998950958 ], [ 360403.820299997925758, 254812.856600001454353 ], [ 360400.607699997723103, 254811.352699998766184 ], [ 360396.572499997913837, 254811.741799999028444 ], [ 360390.066299997270107, 254818.232500001788139 ], [ 360385.269799999892712, 254813.338100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90359732, "LATITUDE": 18.32281281, "OBJECTID_1": 37316, "PARCEL_NO_": "107404012800", "Tax_Legal_": "FRENCHMAN'S BAY 14-92 FRENCHMAN BAY QTR.", "Name": "GUMBS, JOSEPH O.", "Address": "7478 Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65800, "Improved_V": 338000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.46021230400001, "SHAPE_Area": 2280.3541290399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361686.192299999296665, 254878.658700000494719 ], [ 361711.195200003683567, 254878.019000001251698 ], [ 361712.832999996840954, 254875.077100001275539 ], [ 361720.154600001871586, 254867.537599999457598 ], [ 361743.699500001966953, 254848.731899999082088 ], [ 361744.523800000548363, 254846.627700001001358 ], [ 361746.147200003266335, 254845.374400001019239 ], [ 361746.195699997246265, 254839.675299998372793 ], [ 361744.599299997091293, 254837.76240000128746 ], [ 361741.384800001978874, 254836.469500001519918 ], [ 361726.059500001370907, 254836.977400001138449 ], [ 361713.977399997413158, 254835.40089999884367 ], [ 361692.259099997580051, 254829.101399999111891 ], [ 361676.993100002408028, 254822.6435999982059 ], [ 361686.192299999296665, 254878.658700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404037900", "MAP": "D9-4151-T87", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89938898, "LATITUDE": 18.32269475, "OBJECTID_1": 37451, "PARCEL_NO_": "107404037900", "Tax_Legal_": "EST. BOLONGO BAY 26-B2 & 26-B3 FRENCHMANS BAY QTR.", "Name": "SAMUEL, MITCHELL", "Address": "PO Box 1121", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 96900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.677571779, "SHAPE_Area": 2442.9021383300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362162.757200002670288, 254878.54839999973774 ], [ 362177.563900001347065, 254844.261300001293421 ], [ 362156.167499996721745, 254800.178800001740456 ], [ 362150.48369999974966, 254804.776299998164177 ], [ 362134.165100000798702, 254827.229699999094009 ], [ 362122.763400003314018, 254840.435300000011921 ], [ 362118.695900000631809, 254844.6239 ], [ 362160.304099999368191, 254882.539099998772144 ], [ 362162.757200002670288, 254878.54839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504071800", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".18", "LONGITUDE": -64.89079945, "LATITUDE": 18.32272575, "OBJECTID_1": 37877, "PARCEL_NO_": "107504071800", "Tax_Legal_": "12B-72 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "JOSEPH, ROBERT E. & SKERRITT, E. M", "Address": "PO Box 302062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.203908786, "SHAPE_Area": 955.17346713100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363079.809600003063679, 254853.756700001657009 ], [ 363073.405799999833107, 254848.215900000184774 ], [ 363070.153599999845028, 254851.355700001120567 ], [ 363063.757100000977516, 254844.970499999821186 ], [ 363070.263300001621246, 254838.479899998754263 ], [ 363071.890299998223782, 254836.804400000721216 ], [ 363074.661499999463558, 254832.956000000238419 ], [ 363065.915700003504753, 254825.361000001430511 ], [ 363057.852700002491474, 254835.28660000115633 ], [ 363041.9003000035882, 254854.924100000411272 ], [ 363052.111599996685982, 254880.003899998962879 ], [ 363079.809600003063679, 254853.756700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90727237, "LATITUDE": 18.32281381, "OBJECTID_1": 37302, "PARCEL_NO_": "107404011400", "Tax_Legal_": "EST. FRENCHMAN'S BAY 14-58 FRENCHMAN'S BAY QTR", "Name": "ALLAMBY, LUBEN A. & OTENSIA P", "Address": "PO Box 305606", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.31847996499999, "SHAPE_Area": 856.65332182600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361337.226300001144409, 254856.170899998396635 ], [ 361334.819899998605251, 254854.673500001430511 ], [ 361332.428000003099442, 254851.48759999871254 ], [ 361324.519500002264977, 254833.268800001591444 ], [ 361322.13289999961853, 254829.449599999934435 ], [ 361318.931000001728535, 254826.679200001060963 ], [ 361316.512100003659725, 254826.659400001168251 ], [ 361313.270700000226498, 254828.532699998468161 ], [ 361298.571800000965595, 254850.155000001192093 ], [ 361319.411899998784065, 254864.890999998897314 ], [ 361319.321999996900558, 254875.445000000298023 ], [ 361325.853399999439716, 254865.999200001358986 ], [ 361337.226300001144409, 254856.170899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404037900", "MAP": "D9-4151-T87", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89907392000001, "LATITUDE": 18.32246029, "OBJECTID_1": 37451, "PARCEL_NO_": "107404037900", "Tax_Legal_": "EST. BOLONGO BAY 26-B2 & 26-B3 FRENCHMANS BAY QTR.", "Name": "SAMUEL, MITCHELL", "Address": "PO Box 1121", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 96900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.215964633, "SHAPE_Area": 2354.6492397900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362162.757200002670288, 254878.54839999973774 ], [ 362169.173500001430511, 254882.611699998378754 ], [ 362182.401799999177456, 254844.300900001078844 ], [ 362218.174400001764297, 254809.974399998784065 ], [ 362217.404100000858307, 254805.746199999004602 ], [ 362216.615800000727177, 254803.628800000995398 ], [ 362215.836400002241135, 254800.456000000238419 ], [ 362211.038099996745586, 254795.772700000554323 ], [ 362191.749499998986721, 254788.226500000804663 ], [ 362180.466600000858307, 254787.500900000333786 ], [ 362172.381899997591972, 254789.9679000005126 ], [ 362160.22240000218153, 254797.467700000852346 ], [ 362156.167499996721745, 254800.178800001740456 ], [ 362177.563900001347065, 254844.261300001293421 ], [ 362162.757200002670288, 254878.54839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87563691, "LATITUDE": 18.32292079, "OBJECTID_1": 38013, "PARCEL_NO_": "107601040900", "Tax_Legal_": "NADIR 4AA-1 RED HOOK QTR", "Name": "WEBSTER, LAWRENCE", "Address": "BOX 4043", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31100, "Improved_V": 132800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.574636349, "SHAPE_Area": 925.75746306899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364668.191200003027916, 254873.089699998497963 ], [ 364645.623400002717972, 254871.849500000476837 ], [ 364643.775200001895428, 254899.48759999871254 ], [ 364692.938699997961521, 254902.423099998384714 ], [ 364684.92960000038147, 254896.02479999884963 ], [ 364675.338299997150898, 254886.024900000542402 ], [ 364670.556199997663498, 254879.441799998283386 ], [ 364668.191200003027916, 254873.089699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503040500", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-15", "ACRE": null, "LONGITUDE": -64.89155275, "LATITUDE": 18.32284076, "OBJECTID_1": 37622, "PARCEL_NO_": "107503040500", "Tax_Legal_": "12B-15 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "JEFFERS, ELROY", "Address": "PO BOX 8742", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23000, "Improved_V": 10100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.82155555400001, "SHAPE_Area": 1086.3484598099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363012.820000000298023, 254865.772999998182058 ], [ 362968.517700001597404, 254850.226199999451637 ], [ 362956.406000003218651, 254857.179699998348951 ], [ 362950.73309999704361, 254860.510800000280142 ], [ 362945.212300002574921, 254869.491900000721216 ], [ 363008.955399997532368, 254878.596799999475479 ], [ 363009.45719999819994, 254877.034499999135733 ], [ 363012.820000000298023, 254865.772999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403041300", "MAP": "D9-4672-T89", "PARCEL_NAM": "17-101", "ACRE": "0.56", "LONGITUDE": -64.91343792000001, "LATITUDE": 18.3227723, "OBJECTID_1": 37283, "PARCEL_NO_": "107403041300", "Tax_Legal_": "17-101 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "BROOKS, JOSEPH N", "Address": "PO Box 11994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47100, "Improved_V": 401000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.64606669700001, "SHAPE_Area": 2564.59902014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360629.607600003480911, 254812.382500000298023 ], [ 360652.524899996817112, 254867.243299998342991 ], [ 360684.831399999558926, 254861.174899999052286 ], [ 360695.306199997663498, 254862.105000000447035 ], [ 360695.644299998879433, 254822.422200001776218 ], [ 360689.218999996781349, 254819.414299998432398 ], [ 360629.607600003480911, 254812.382500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503031800", "MAP": "A9-474-T95", "PARCEL_NAM": "61-50", "ACRE": ".531", "LONGITUDE": -64.89647438, "LATITUDE": 18.32269587, "OBJECTID_1": 37608, "PARCEL_NO_": "107503031800", "Tax_Legal_": "61-50 ESTATE BOLONGO No.3 FRENCHMAN'S BAY QUARTER", "Name": "BEDMINSTER, MAURICE & MONA", "Address": "7496 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.44448006900001, "SHAPE_Area": 2147.8452566599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362482.918999999761581, 254874.624899998307228 ], [ 362466.56360000371933, 254806.730000000447035 ], [ 362436.638400003314018, 254817.250799998641014 ], [ 362452.2162000015378, 254881.761900000274181 ], [ 362482.918999999761581, 254874.624899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8759894, "LATITUDE": 18.32288272, "OBJECTID_1": 38012, "PARCEL_NO_": "107601040800", "Tax_Legal_": "4AA-2 NADIR RED HOOK QTR", "Name": "SCATLIFFE, IRIS", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25200, "Improved_V": 124300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.032699772, "SHAPE_Area": 1094.68644417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364628.698100000619888, 254870.866599999368191 ], [ 364602.100500002503395, 254869.382399998605251 ], [ 364605.196299999952316, 254884.6064000017941 ], [ 364609.118199996650219, 254897.5152000002563 ], [ 364643.775200001895428, 254899.48759999871254 ], [ 364645.623400002717972, 254871.849500000476837 ], [ 364628.698100000619888, 254870.866599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87522039, "LATITUDE": 18.32288272, "OBJECTID_1": 38018, "PARCEL_NO_": "107601041600", "Tax_Legal_": "4A EST NADIR RED HOOK QTR", "Name": "HERMON, KENNETH L. & HERMON, JR. K", "Address": "PO Box 8334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.186495839, "SHAPE_Area": 926.183883122 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364725.421400003135204, 254875.668999999761581 ], [ 364702.063500002026558, 254872.52250000089407 ], [ 364689.968800000846386, 254872.423500001430511 ], [ 364680.276900000870228, 254874.244100000709295 ], [ 364680.249899998307228, 254877.410199999809265 ], [ 364683.440999999642372, 254881.44709999859333 ], [ 364690.634900003671646, 254888.894299998879433 ], [ 364702.648599997162819, 254898.491799999028444 ], [ 364726.029899999499321, 254898.894299998879433 ], [ 364725.421400003135204, 254875.668999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87496346, "LATITUDE": 18.32291197, "OBJECTID_1": 38019, "PARCEL_NO_": "107601041700", "Tax_Legal_": "NADIR 4AA-3 RED HOOK QTR", "Name": "HERMON, KENNETH L. & KENNETH L. JR", "Address": "PO Box 8334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.5408101262, "SHAPE_Area": 334.45793921900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364741.515299998223782, 254879.600400000810623 ], [ 364725.421400003135204, 254875.668999999761581 ], [ 364726.029899999499321, 254898.894299998879433 ], [ 364736.512000001966953, 254898.980099998414516 ], [ 364741.349799998104572, 254899.01969999819994 ], [ 364741.515299998223782, 254879.600400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87478067000001, "LATITUDE": 18.32285153, "OBJECTID_1": 38020, "PARCEL_NO_": "107601041800", "Tax_Legal_": "19AA EST NADIR RED HOOK QTR", "Name": "Melissa Tamara Hodge and Da'Qwan Jordan Fredericks", "Address": "PO Box 11266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.86620604, "SHAPE_Area": 856.92922513799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364737.503899998962879, 254865.022599998861551 ], [ 364736.74210000038147, 254871.962000001221895 ], [ 364741.515299998223782, 254879.600400000810623 ], [ 364741.349799998104572, 254899.01969999819994 ], [ 364765.541000001132488, 254899.006599999964237 ], [ 364765.82150000333786, 254866.078299999237061 ], [ 364737.503899998962879, 254865.022599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87454211, "LATITUDE": 18.3228591, "OBJECTID_1": 38024, "PARCEL_NO_": "107601042100", "Tax_Legal_": "19AA-1 ESTATE NADIR No.2 RED HOOK QTR.", "Name": "THOMAS, A. R. 7V. A. & ALLEN, ALISA", "Address": "6403 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.430648666, "SHAPE_Area": 802.18832878499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364790.811800003051758, 254866.91609999909997 ], [ 364765.82150000333786, 254866.078299999237061 ], [ 364765.541000001132488, 254899.006599999964237 ], [ 364789.730400003492832, 254899.204599998891354 ], [ 364790.811800003051758, 254866.91609999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87434678, "LATITUDE": 18.32287929, "OBJECTID_1": 38026, "PARCEL_NO_": "107601042300", "Tax_Legal_": "NADIR 19AA-2 RED HOOK QTR", "Name": "BLYDEN, INA & RAYMOND", "Address": "PO Box 7512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29900, "Improved_V": 410800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.360136638, "SHAPE_Area": 512.94596264200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364789.730400003492832, 254899.204599998891354 ], [ 364805.856600001454353, 254899.336500000208616 ], [ 364810.310599997639656, 254898.425200000405312 ], [ 364812.352700002491474, 254896.656700000166893 ], [ 364807.896099999547005, 254887.964099999517202 ], [ 364804.157799996435642, 254881.480799999088049 ], [ 364802.446999996900558, 254874.937399998307228 ], [ 364803.757299996912479, 254867.338500000536442 ], [ 364790.811800003051758, 254866.91609999909997 ], [ 364789.730400003492832, 254899.204599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8769005, "LATITUDE": 18.32288113, "OBJECTID_1": 38009, "PARCEL_NO_": "107601040500", "Tax_Legal_": "4AA-4 EST NADIR RED HOOK QTR", "Name": "FRETT, DESIREE M. & SMITH, CHRISTINE A.", "Address": "PO Box 8334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75000, "Improved_V": 21300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.10722586100002, "SHAPE_Area": 2615.9016503900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364455.294699996709824, 254870.322900000959635 ], [ 364432.178800001740456, 254868.570199999958277 ], [ 364435.175899997353554, 254870.127099998295307 ], [ 364439.994000002741814, 254872.488600000739098 ], [ 364448.031900003552437, 254875.50959999859333 ], [ 364456.075300000607967, 254877.89750000089407 ], [ 364461.415807151817717, 254879.766348543722415 ], [ 364466.52139999717474, 254882.204900000244379 ], [ 364476.940499998629093, 254889.678399998694658 ], [ 364533.358999997377396, 254892.884399998933077 ], [ 364602.671300001442432, 254897.040300000458956 ], [ 364597.190700002014637, 254877.785900000482798 ], [ 364565.755300000309944, 254876.262099999934435 ], [ 364536.738899998366833, 254874.758000001311302 ], [ 364485.961000002920628, 254872.020399998873472 ], [ 364464.197700001299381, 254870.997900001704693 ], [ 364455.294699996709824, 254870.322900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403036500", "MAP": "D9-4151-T87", "PARCEL_NAM": "26-14", "ACRE": ".55", "LONGITUDE": -64.9001428, "LATITUDE": 18.3226379, "OBJECTID_1": 37260, "PARCEL_NO_": "107403036500", "Tax_Legal_": "26-14 BOLONGO FRENCHMAN'S BAY QTR", "Name": "HENRY, EMMANUEL J. & ELISA", "Address": "PO Box 1585", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041585, "Country": "United States", "Land_Value": 93000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.738296894, "SHAPE_Area": 2253.7147344300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362104.959799997508526, 254847.888999998569489 ], [ 362061.850500002503395, 254796.873700000345707 ], [ 362058.585699997842312, 254801.49100000038743 ], [ 362039.018399998545647, 254826.662099998444319 ], [ 362083.785300001502037, 254872.413600001484156 ], [ 362104.959799997508526, 254847.888999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503031700", "MAP": "A9-474-T95", "PARCEL_NAM": "61-51", "ACRE": ".566", "LONGITUDE": -64.89618668, "LATITUDE": 18.32261282, "OBJECTID_1": 37607, "PARCEL_NO_": "107503031700", "Tax_Legal_": "BOLONGO BAY ESTATE 61-51 No.3 FRENCHMAN'S BAY QTR.", "Name": "BEDMINSTER, MAURICE & MONA", "Address": "7496 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.02754536699999, "SHAPE_Area": 2299.8427717599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362514.429899998009205, 254867.283399999141693 ], [ 362496.487099997699261, 254796.420200001448393 ], [ 362485.983499996364117, 254798.867400001734495 ], [ 362472.227600000798702, 254804.454300001263618 ], [ 362466.56360000371933, 254806.730000000447035 ], [ 362482.918999999761581, 254874.624899998307228 ], [ 362514.429899998009205, 254867.283399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90532093, "LATITUDE": 18.32267142, "OBJECTID_1": 37297, "PARCEL_NO_": "107404010900", "Tax_Legal_": "FRENCHMAN'S BAY 14-68 FRENCHMAN BAY QTR", "Name": "MC BEAN, CLAUDE", "Address": "PO Box 8964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69100, "Improved_V": 209000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.849057948, "SHAPE_Area": 2625.3606569600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361558.402199998497963, 254829.061299998313189 ], [ 361543.98929999768734, 254817.122099999338388 ], [ 361505.444600000977516, 254798.230399999767542 ], [ 361494.215499997138977, 254791.172400001436472 ], [ 361509.337700001895428, 254814.516499999910593 ], [ 361492.117399998009205, 254848.150499999523163 ], [ 361525.840499997138977, 254865.102899998426437 ], [ 361528.262999996542931, 254864.700500000268221 ], [ 361541.990099996328354, 254862.490800000727177 ], [ 361558.402199998497963, 254829.061299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90143061000001, "LATITUDE": 18.32258807, "OBJECTID_1": 37431, "PARCEL_NO_": "107404034700", "Tax_Legal_": "BOLONGO 60D FRENCHMAN BAY QTR.", "Name": "CUEVAS, EVANGELISTA MEDINA", "Address": "PO Box 8316", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.444615263, "SHAPE_Area": 2570.0471149099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361976.648199997842312, 254859.504399999976158 ], [ 361924.0574000030756, 254785.613400001078844 ], [ 361899.68639999628067, 254806.734400000423193 ], [ 361944.320200003683567, 254868.105799999088049 ], [ 361946.751800000667572, 254866.647999998182058 ], [ 361954.852600000798702, 254862.281300000846386 ], [ 361954.881399996578693, 254858.904100000858307 ], [ 361961.337300002574921, 254858.323600001633167 ], [ 361961.319300003349781, 254860.434399999678135 ], [ 361963.731100000441074, 254861.298500001430511 ], [ 361971.803199999034405, 254860.309099998325109 ], [ 361976.648199997842312, 254859.504399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90762276, "LATITUDE": 18.3226559, "OBJECTID_1": 37161, "PARCEL_NO_": "107403020600", "Tax_Legal_": "FRENCHMAN'S BAY 14-57 FRENCHMAN BAY QTR", "Name": "BLAKE, SHAWN C and KARRELYN M", "Address": "PO Box 503371", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053371, "Country": "United States", "Land_Value": 33900, "Improved_V": 192000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.79002037699999, "SHAPE_Area": 1684.7977647099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361271.558200001716614, 254802.859999999403954 ], [ 361257.509199999272823, 254842.852800000458956 ], [ 361281.534999996423721, 254862.25899999961257 ], [ 361293.796899996697903, 254842.727600000798702 ], [ 361295.418499998748302, 254841.685400001704693 ], [ 361305.221900001168251, 254826.778000000864267 ], [ 361306.899300001561642, 254819.192400000989437 ], [ 361306.109200000762939, 254817.286100000143051 ], [ 361301.305399999022484, 254813.236000001430511 ], [ 361287.628700003027916, 254809.535500001162291 ], [ 361271.558200001716614, 254802.859999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91548841, "LATITUDE": 18.32262121, "OBJECTID_1": 37274, "PARCEL_NO_": "107403040400", "Tax_Legal_": "17-81 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR", "Name": "RAMSEY, PAUL A. & LINLIE R", "Address": "3 Scally Cir", "City": "Randolph", "State": "Massachusetts", "Zip": 2368, "Country": "United States", "Land_Value": 42000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.68948837799999, "SHAPE_Area": 2070.8312682800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360446.813799999654293, 254782.811000000685453 ], [ 360423.875600002706051, 254825.053100001066923 ], [ 360428.657799996435642, 254831.636100001633167 ], [ 360435.781499996781349, 254847.31529999896884 ], [ 360440.578000001609325, 254852.209800001233816 ], [ 360443.778099998831749, 254855.191300000995398 ], [ 360481.192199997603893, 254817.500599998980761 ], [ 360478.785800002515316, 254816.003299999982119 ], [ 360474.775799997150898, 254813.437300000339746 ], [ 360472.389300003647804, 254809.618099998682737 ], [ 360471.609899997711182, 254806.445300001651049 ], [ 360469.214400000870228, 254803.681499999016523 ], [ 360455.589800000190735, 254793.859700001776218 ], [ 360446.813799999654293, 254782.811000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90801716, "LATITUDE": 18.32284316, "OBJECTID_1": 37186, "PARCEL_NO_": "107403023200", "Tax_Legal_": "FRENCHMAN'S BAY 14-59A FRENCHMAN'S BAY QTR.", "Name": "ST THOMAS DEVP CORP", "Address": "PO Box 697", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 48500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.180715536899996, "SHAPE_Area": 208.93067363200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361257.509199999272823, 254842.852800000458956 ], [ 361225.193800002336502, 254849.976599998772144 ], [ 361235.586000002920628, 254860.616399999707937 ], [ 361257.509199999272823, 254842.852800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503031600", "MAP": "A9-474-T95", "PARCEL_NAM": "61-52", "ACRE": ".579", "LONGITUDE": -64.89590283, "LATITUDE": 18.3225359, "OBJECTID_1": 37606, "PARCEL_NO_": "107503031600", "Tax_Legal_": "61-52 BOLONGO No.3 FRENCHMAN'S BAY QUARTER", "Name": "FRANCIS, JAIME & LAUREL", "Address": "PO Box 502104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 44200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.40700027299999, "SHAPE_Area": 2261.71331796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362544.324600003659725, 254860.350900001823902 ], [ 362524.801500000059605, 254785.67509999871254 ], [ 362506.990699999034405, 254793.973099999129772 ], [ 362496.487099997699261, 254796.420200001448393 ], [ 362514.429899998009205, 254867.283399999141693 ], [ 362544.324600003659725, 254860.350900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503040600", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-40", "ACRE": ".14", "LONGITUDE": -64.89206126000001, "LATITUDE": 18.32274267, "OBJECTID_1": 37623, "PARCEL_NO_": "107503040600", "Tax_Legal_": "12B-40 ESTATE BOVONI WESTERN PART", "Name": "MADURO, SR , GLEN & BENJAMIN, LA", "Address": "PO Box 11512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.01730772099999, "SHAPE_Area": 735.15468459 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362907.964299999177456, 254864.171500001102686 ], [ 362935.113300003111362, 254868.049400001764297 ], [ 362943.526600003242493, 254854.541200000792742 ], [ 362941.951700001955032, 254850.095300000160933 ], [ 362942.012900002300739, 254842.918600000441074 ], [ 362914.614399999380112, 254840.79450000077486 ], [ 362907.964299999177456, 254864.171500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404035000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90117257, "LATITUDE": 18.32246654, "OBJECTID_1": 37434, "PARCEL_NO_": "107404035000", "Tax_Legal_": "EST. BOLONGO 60-C FRENCHMAN'S BAY QTR.", "Name": "WHEATLEY, DORN B", "Address": "6053 Toulouse Dr", "City": "Pensacola", "State": "Florida", "Zip": 32505, "Country": "United States", "Land_Value": 72200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.646141857, "SHAPE_Area": 2774.12281287 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362004.152800001204014, 254849.174899999052286 ], [ 361948.390600003302097, 254768.92509999871254 ], [ 361932.995200000703335, 254777.66499999910593 ], [ 361924.0574000030756, 254785.613400001078844 ], [ 361976.648199997842312, 254859.504399999976158 ], [ 361983.107699997723103, 254858.501800000667572 ], [ 362000.103200003504753, 254851.252599999308586 ], [ 362004.152800001204014, 254849.174899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91455506, "LATITUDE": 18.32253818, "OBJECTID_1": 37279, "PARCEL_NO_": "107403040900", "Tax_Legal_": "17-97 FRENCHMAN'S BAY FRENCHMANS BAY QTR", "Name": "JENNINGS (TRUSTEE), AZEKAH E.", "Address": "PO Box 4089", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 48900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.10170544499999, "SHAPE_Area": 2027.33726052 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360531.483800001442432, 254782.659600000828505 ], [ 360520.717699997127056, 254815.924300000071526 ], [ 360526.33669999986887, 254818.925599999725819 ], [ 360534.329700000584126, 254827.223700001835823 ], [ 360541.507399998605251, 254836.570500001311302 ], [ 360546.253499999642372, 254847.375100001692772 ], [ 360583.714299999177456, 254804.19649999961257 ], [ 360531.483800001442432, 254782.659600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90828169, "LATITUDE": 18.32246368, "OBJECTID_1": 37189, "PARCEL_NO_": "107403023500", "Tax_Legal_": "FRENCHMAN'S BAY 14-127 FRENCHMAN'S BAY QTR.", "Name": "BROWN, RACHEL", "Address": "PO Box 660016", "City": "Dallas", "State": "Texas", "Zip": 75266, "Country": "United States", "Land_Value": 76800, "Improved_V": 247400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.40075386199999, "SHAPE_Area": 2363.1624929300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361245.084799997508526, 254786.8114 ], [ 361233.099799998104572, 254773.836599998176098 ], [ 361227.495099999010563, 254769.146600000560284 ], [ 361219.471600003540516, 254764.436900001019239 ], [ 361176.825800001621246, 254848.3141999989748 ], [ 361192.12780000269413, 254850.550400000065565 ], [ 361199.386399999260902, 254850.398699998855591 ], [ 361245.084799997508526, 254786.8114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90801362000001, "LATITUDE": 18.3225931, "OBJECTID_1": 37190, "PARCEL_NO_": "107403023600", "Tax_Legal_": "FRENCHMAN'S BAY 14-126 FRENCHMAN'S BAY QTR.", "Name": "BROWNE, SPENCER L", "Address": "PO Box 303885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033885, "Country": "United States", "Land_Value": 69100, "Improved_V": 438500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.71818734300001, "SHAPE_Area": 2381.36657745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361271.558200001716614, 254802.859999999403954 ], [ 361251.488499999046326, 254792.352200001478195 ], [ 361245.084799997508526, 254786.8114 ], [ 361199.386399999260902, 254850.398699998855591 ], [ 361209.870300002396107, 254850.273400001227856 ], [ 361225.193800002336502, 254849.976599998772144 ], [ 361257.509199999272823, 254842.852800000458956 ], [ 361271.558200001716614, 254802.859999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503041600", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-29", "ACRE": ".15", "LONGITUDE": -64.89230886, "LATITUDE": 18.32270255, "OBJECTID_1": 37633, "PARCEL_NO_": "107503041600", "Tax_Legal_": "12B-29 ESTATE BOVONI WESTERN PART", "Name": "ESPRIT, CARLTON D.", "Address": "514 Nisky Mailbox", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.526979108899994, "SHAPE_Area": 569.51497055799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362914.614399999380112, 254840.79450000077486 ], [ 362891.281700000166893, 254834.692899998277426 ], [ 362886.237000003457069, 254858.927400000393391 ], [ 362907.964299999177456, 254864.171500001102686 ], [ 362914.614399999380112, 254840.79450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503031500", "MAP": "D9-8202-T008", "PARCEL_NAM": "61-53A", "ACRE": ".500", "LONGITUDE": -64.89564803, "LATITUDE": 18.32243076, "OBJECTID_1": 37605, "PARCEL_NO_": "107503031500", "Tax_Legal_": "61-53A & 61-53B BOLONGO NO.3 FRENCHMAN'S BAY QTR", "Name": "VAN DONSELAAR, NORMAN", "Address": "PO Box 812", "City": "Portage", "State": "Michigan", "Zip": 49081, "Country": "United States", "Land_Value": 92200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.71699065799999, "SHAPE_Area": 2176.7585180800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362566.614900000393391, 254855.258900001645088 ], [ 362555.640900000929832, 254781.268699999898672 ], [ 362557.316799998283386, 254772.607200000435114 ], [ 362557.167300000786781, 254772.641100000590086 ], [ 362532.083499997854233, 254782.779399998486042 ], [ 362524.801500000059605, 254785.67509999871254 ], [ 362544.324600003659725, 254860.350900001823902 ], [ 362566.614900000393391, 254855.258900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90858976, "LATITUDE": 18.32238722, "OBJECTID_1": 37188, "PARCEL_NO_": "107403023400", "Tax_Legal_": "FRENCHMAN'S BAY14-128 &14-127A FRENCHMAN'S BAY QTR.", "Name": "NICKEO, WILLIAM", "Address": "P O BOX 4834", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 89600, "Improved_V": 506400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.22170879599997, "SHAPE_Area": 3810.6007058499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361219.471600003540516, 254764.436900001019239 ], [ 361196.174800001084805, 254754.113699998706579 ], [ 361182.503499999642372, 254749.780000001192093 ], [ 361140.649700000882149, 254835.35249999910593 ], [ 361140.608300000429153, 254840.207299999892712 ], [ 361164.743699997663498, 254846.737700000405312 ], [ 361176.825800001621246, 254848.3141999989748 ], [ 361219.471600003540516, 254764.436900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404011300", "MAP": "F9-2260-T68", "PARCEL_NAM": "14-33J", "ACRE": "0.34", "LONGITUDE": -64.90702624, "LATITUDE": 18.32258284, "OBJECTID_1": 37301, "PARCEL_NO_": "107404011300", "Tax_Legal_": "FRENCHMAN BAY 14-33J FRENCHMAN'S BAY QTR.", "Name": "GUMBS, ZANDRA E", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34300, "Improved_V": 123300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.51499434900001, "SHAPE_Area": 1430.67785901 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361355.357199996709824, 254810.300900001078844 ], [ 361352.994000002741814, 254803.737700000405312 ], [ 361347.427100002765656, 254794.615100000053644 ], [ 361316.643399998545647, 254811.250599998980761 ], [ 361323.849799998104572, 254817.220199998468161 ], [ 361331.02929999679327, 254826.355999998748302 ], [ 361342.127099998295307, 254848.822700001299381 ], [ 361345.346900001168251, 254849.482400000095367 ], [ 361366.332599997520447, 254847.120999999344349 ], [ 361355.357199996709824, 254810.300900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404011200", "MAP": "F9-2260-T68", "PARCEL_NAM": "14-33I", "ACRE": "0.25", "LONGITUDE": -64.90675621, "LATITUDE": 18.32259181, "OBJECTID_1": 37300, "PARCEL_NO_": "107404011200", "Tax_Legal_": "FRENCHMAN'S BAY 14-33I FRENCHMAN BAY QTR", "Name": "BRYAN, HENVILLE & CECILE", "Address": "PO Box 8994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 175500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.510034621, "SHAPE_Area": 964.22466979199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361387.392099998891354, 254836.105399999767542 ], [ 361384.441899999976158, 254803.783900000154972 ], [ 361355.357199996709824, 254810.300900001078844 ], [ 361366.332599997520447, 254847.120999999344349 ], [ 361377.638999998569489, 254845.102600000798702 ], [ 361382.523599997162819, 254839.654100000858307 ], [ 361387.392099998891354, 254836.105399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90575326, "LATITUDE": 18.32238563, "OBJECTID_1": 37298, "PARCEL_NO_": "107404011000", "Tax_Legal_": "14-67 FRENCHMAN BAY FRENCHMAN'S BAT QTR.", "Name": "TOTWANI, PAHILAD N & TANUJA P", "Address": "5151 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67400, "Improved_V": 263000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.550314681, "SHAPE_Area": 2573.2814203900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361494.215499997138977, 254791.172400001436472 ], [ 361486.21169999986887, 254784.140799999237061 ], [ 361485.419799998402596, 254782.445599999278784 ], [ 361473.427599996328354, 254770.315099999308586 ], [ 361461.417499996721745, 254760.295400001108646 ], [ 361450.237000003457069, 254747.53830000013113 ], [ 361447.818000003695488, 254747.518500000238419 ], [ 361454.06530000269413, 254771.423200000077486 ], [ 361454.043799996376038, 254773.9560999982059 ], [ 361457.19709999859333, 254782.425700001418591 ], [ 361462.641699999570847, 254805.901599999517202 ], [ 361465.782399997115135, 254815.848700001835823 ], [ 361468.939300000667572, 254823.896099999547005 ], [ 361475.308899998664856, 254833.447500001639128 ], [ 361484.102799996733665, 254842.385400000959635 ], [ 361492.117399998009205, 254848.150499999523163 ], [ 361509.337700001895428, 254814.516499999910593 ], [ 361494.215499997138977, 254791.172400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503041700", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-30", "ACRE": ".14", "LONGITUDE": -64.89264742, "LATITUDE": 18.32263806, "OBJECTID_1": 37634, "PARCEL_NO_": "107503041700", "Tax_Legal_": "12B-30 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "HERCULES, CYNTHIA", "Address": "PO Box 11575", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.42672252200001, "SHAPE_Area": 627.12771552599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362877.385600000619888, 254856.743999999016523 ], [ 362879.92679999768734, 254842.410500001162291 ], [ 362872.684399999678135, 254840.662399999797344 ], [ 362874.379699997603893, 254830.965999998152256 ], [ 362855.87950000166893, 254825.537300001829863 ], [ 362848.414099998772144, 254849.962999999523163 ], [ 362877.385600000619888, 254856.743999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404035100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90091783, "LATITUDE": 18.32233892, "OBJECTID_1": 37435, "PARCEL_NO_": "107404035100", "Tax_Legal_": "EST. BOLONGO 60-B FRENCHMANS BAY QTR.", "Name": "PETERSON, LORRIE", "Address": "PO Box 11508", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75600, "Improved_V": 269400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.43757048699999, "SHAPE_Area": 3060.0728034099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362030.94990000128746, 254827.229400001466274 ], [ 361973.512199997901917, 254754.354200001806021 ], [ 361966.219400003552437, 254758.51630000025034 ], [ 361948.390600003302097, 254768.92509999871254 ], [ 362004.152800001204014, 254849.174899999052286 ], [ 362008.205899998545647, 254846.674899999052286 ], [ 362018.749099999666214, 254839.583999998867512 ], [ 362027.688699997961521, 254831.424499999731779 ], [ 362030.94990000128746, 254827.229400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90475285, "LATITUDE": 18.32243335, "OBJECTID_1": 37313, "PARCEL_NO_": "107404012500", "Tax_Legal_": "FRENCHMAN'S BAY 14-87 FRENCHMAN BAY QTR.", "Name": "BROWN, AUDAIN", "Address": "PO Box 10188", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60000, "Improved_V": 283500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.91384728899999, "SHAPE_Area": 2500.5160835199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361614.347099997103214, 254793.211100000888109 ], [ 361582.211499996483326, 254779.227000001817942 ], [ 361574.184299997985363, 254774.939399998635054 ], [ 361553.666900001466274, 254816.990200001746416 ], [ 361558.476000003516674, 254820.4070999994874 ], [ 361566.470799997448921, 254828.494100000709295 ], [ 361572.044799998402596, 254836.772300001233816 ], [ 361574.41160000115633, 254842.913400001823902 ], [ 361576.013400003314018, 254844.19310000166297 ], [ 361612.51690000295639, 254818.738400001078844 ], [ 361614.347099997103214, 254793.211100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404039800", "MAP": "D9-4218-T88", "PARCEL_NAM": "60-P", "ACRE": "2.26", "LONGITUDE": -64.90195289, "LATITUDE": 18.32196468, "OBJECTID_1": 37456, "PARCEL_NO_": "107404039800", "Tax_Legal_": "EST. BOLONGO 60-P FRENCHMANS BAY QTR.", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 148400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 500.15134332700001, "SHAPE_Area": 9926.06715386 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361932.995200000703335, 254777.66499999910593 ], [ 361912.268399998545647, 254749.631000000983477 ], [ 361923.878700003027916, 254711.94029999896884 ], [ 361920.644400000572205, 254712.969300001859665 ], [ 361915.005599997937679, 254712.289900001138449 ], [ 361910.997400000691414, 254709.512899998575449 ], [ 361908.659400001168251, 254699.994500000029802 ], [ 361911.134099997580051, 254693.470899999141693 ], [ 361915.232199996709824, 254685.693900000303984 ], [ 361917.676299996674061, 254682.758600000292063 ], [ 361924.250900000333786, 254668.247000001370907 ], [ 361925.915600001811981, 254662.138900000602007 ], [ 361924.313799999654293, 254660.859200000762939 ], [ 361921.896700002253056, 254660.628400001674891 ], [ 361913.005699999630451, 254663.088700000196695 ], [ 361888.801899999380112, 254664.5793999992311 ], [ 361884.752400003373623, 254666.657200001180172 ], [ 361881.496500000357628, 254670.219099998474121 ], [ 361879.856899999082088, 254673.372099999338388 ], [ 361877.978200003504753, 254704.598600000143051 ], [ 361875.463899999856949, 254715.765900000929832 ], [ 361872.157799996435642, 254725.238099999725819 ], [ 361870.532600000500679, 254726.702399998903275 ], [ 361867.251599997282028, 254733.219500001519918 ], [ 361846.04110000282526, 254761.965700000524521 ], [ 361834.652000002563, 254773.69370000064373 ], [ 361818.412500001490116, 254786.859700001776218 ], [ 361833.520199999213219, 254811.892400000244379 ], [ 361854.191200003027916, 254846.469799999147654 ], [ 361877.752300001680851, 254825.764400001615286 ], [ 361899.68639999628067, 254806.734400000423193 ], [ 361924.0574000030756, 254785.613400001078844 ], [ 361932.995200000703335, 254777.66499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403036400", "MAP": "D9-4151-T87", "PARCEL_NAM": "26-15", "ACRE": ".60", "LONGITUDE": -64.89992561, "LATITUDE": 18.32236575, "OBJECTID_1": 37259, "PARCEL_NO_": "107403036400", "Tax_Legal_": "26-15 BOLONGO FRENCHMAN'S BAY QTR", "Name": "RIVERA, RAUL & CAROL", "Address": "7106 EST. BOLONGO BAY 26-15", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97300, "Improved_V": 399500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.612268857, "SHAPE_Area": 2762.1280114599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362129.388400003314018, 254820.0135000012815 ], [ 362083.94820000231266, 254758.635499998927116 ], [ 362082.297799997031689, 254763.054999999701977 ], [ 362076.576300002634525, 254772.085200000554323 ], [ 362073.286300003528595, 254779.657600000500679 ], [ 362061.850500002503395, 254796.873700000345707 ], [ 362104.959799997508526, 254847.888999998569489 ], [ 362120.418200001120567, 254831.761300001293421 ], [ 362126.125299997627735, 254824.419700000435114 ], [ 362129.388400003314018, 254820.0135000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504071600", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-9", "ACRE": ".14", "LONGITUDE": -64.89096036, "LATITUDE": 18.32259997, "OBJECTID_1": 37875, "PARCEL_NO_": "107504071600", "Tax_Legal_": "ESTATE BOVONI 12B-9 WESTERN PART", "Name": "SMITH, ELVIS, EMMIE & MEREDITH", "Address": "PO Box 11005", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.637688127000004, "SHAPE_Area": 545.89309764200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363061.025399997830391, 254831.381000000983477 ], [ 363040.347900003194809, 254824.791499998420477 ], [ 363036.466499999165535, 254830.181699998676777 ], [ 363033.19990000128746, 254835.010099999606609 ], [ 363029.91889999806881, 254841.527199998497963 ], [ 363027.04839999973774, 254848.710799999535084 ], [ 363041.9003000035882, 254854.924100000411272 ], [ 363057.852700002491474, 254835.28660000115633 ], [ 363061.025399997830391, 254831.381000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90883062, "LATITUDE": 18.32217359, "OBJECTID_1": 37187, "PARCEL_NO_": "107403023300", "Tax_Legal_": "FRENCHMAN'S BAY 14-129 FRENCHMAN'S BAY QTR.", "Name": "GARVEY, JANET", "Address": "Po Box 307158", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 140500, "Improved_V": 273500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.32453640400001, "SHAPE_Area": 1985.8092188799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361182.503499999642372, 254749.780000001192093 ], [ 361174.452899999916553, 254748.236400000751019 ], [ 361159.14019999653101, 254747.266699999570847 ], [ 361144.653499998152256, 254743.981800001114607 ], [ 361139.005800001323223, 254744.357700001448393 ], [ 361140.649700000882149, 254835.35249999910593 ], [ 361182.503499999642372, 254749.780000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90636139, "LATITUDE": 18.32226204, "OBJECTID_1": 37299, "PARCEL_NO_": "107404011100", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 14-3 FRENCHMAN BAY QTR", "Name": "BROWN, HUGH C. & PRINCE, IDETA J", "Address": "PO Box 10257", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 136600, "Improved_V": 386300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.75309501100003, "SHAPE_Area": 5021.3740686199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361381.691399998962879, 254748.032699998468161 ], [ 361381.491800002753735, 254771.462499998509884 ], [ 361384.441899999976158, 254803.783900000154972 ], [ 361387.392099998891354, 254836.105399999767542 ], [ 361391.452399998903275, 254832.761100001633167 ], [ 361401.973999999463558, 254828.203200001269579 ], [ 361451.243600003421307, 254818.684999998658895 ], [ 361454.483199998736382, 254817.022799998521805 ], [ 361456.146200001239777, 254811.125799998641014 ], [ 361454.560599997639656, 254807.946400001645088 ], [ 361454.591099999845028, 254804.3581000007689 ], [ 361449.918700002133846, 254784.89919999986887 ], [ 361448.332999996840954, 254781.719900000840425 ], [ 361448.35639999806881, 254778.97580000013113 ], [ 361441.292000003159046, 254756.331000000238419 ], [ 361424.42960000038147, 254747.960299998521805 ], [ 361381.691399998962879, 254748.032699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043000", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-16", "ACRE": ".14", "LONGITUDE": -64.89166855000001, "LATITUDE": 18.32251647, "OBJECTID_1": 37648, "PARCEL_NO_": "107503043000", "Tax_Legal_": "12B-16 ESTATE BOVONI WESTERN PART FRENCHMAN'S BAY QTR.", "Name": "ROGERS, GEORGE D. & CARVELLE A.", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16200, "Improved_V": 88500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.845786746, "SHAPE_Area": 618.02428601700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362991.399300001561642, 254819.680300001055002 ], [ 362983.343400001525879, 254818.769999999552965 ], [ 362960.78999999910593, 254815.8412000015378 ], [ 362955.799300000071526, 254833.743299998342991 ], [ 362950.885899998247623, 254842.569099999964237 ], [ 362950.839100003242493, 254848.057100001722574 ], [ 362952.444600000977516, 254848.914599999785423 ], [ 362965.410300001502037, 254841.421399999409914 ], [ 362988.138099998235703, 254823.875500001013279 ], [ 362991.399300001561642, 254819.680300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504071900", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".13", "LONGITUDE": -64.89043798, "LATITUDE": 18.32247448, "OBJECTID_1": 37878, "PARCEL_NO_": "107504071900", "Tax_Legal_": "12B-71 ESTATE BOVONI WESTERN PART", "Name": "STEVENS, IOLA V. & ELROY J", "Address": "PO Box 502803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 13900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.505175638, "SHAPE_Area": 596.48876696299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363086.314000003039837, 254847.477099999785423 ], [ 363116.390299998223782, 254819.225699998438358 ], [ 363101.993600003421307, 254805.386799998581409 ], [ 363097.100000001490116, 254811.890599999576807 ], [ 363093.835199996829033, 254816.508000001311302 ], [ 363086.438100002706051, 254832.91270000115037 ], [ 363079.919299997389317, 254840.880899999290705 ], [ 363086.314000003039837, 254847.477099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91580713, "LATITUDE": 18.32232253, "OBJECTID_1": 37273, "PARCEL_NO_": "107403040300", "Tax_Legal_": "17-80 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "SALEM, NOEL", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61400, "Improved_V": 298400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.69319921, "SHAPE_Area": 2116.8667460299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360395.502899996936321, 254747.982799999415874 ], [ 360392.715400002896786, 254791.234200000762939 ], [ 360416.697999998927116, 254815.706199999898672 ], [ 360419.892599999904633, 254819.320999998599291 ], [ 360423.875600002706051, 254825.053100001066923 ], [ 360446.813799999654293, 254782.811000000685453 ], [ 360426.762100003659725, 254770.192400000989437 ], [ 360409.136500000953674, 254756.749200001358986 ], [ 360405.914899997413158, 254756.300700001418591 ], [ 360402.6824000030756, 254757.118599999696016 ], [ 360401.055399999022484, 254758.793999999761581 ], [ 360397.050800003111362, 254755.594799999147654 ], [ 360397.103000000119209, 254749.473600000143051 ], [ 360395.502899996936321, 254747.982799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503016500", "MAP": "D9-4151-T87", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89852415, "LATITUDE": 18.32230953, "OBJECTID_1": 37574, "PARCEL_NO_": "107503016500", "Tax_Legal_": "61-33 BOLONGO FRENCHMAN BAY QTR.", "Name": "PICKERING, VERNE E. -TRUSTEE", "Address": "7109 ESTATE BOLONGO 61-33", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58800, "Improved_V": 282000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.09577499700001, "SHAPE_Area": 2890.80021025 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362281.259199999272823, 254787.9037000015378 ], [ 362237.052299998700619, 254771.07660000026226 ], [ 362220.148500002920628, 254767.560699999332428 ], [ 362207.0929000005126, 254785.607900001108646 ], [ 362212.720899999141693, 254787.553800001740456 ], [ 362219.929099999368191, 254793.312300000339746 ], [ 362223.100400000810623, 254799.671100001782179 ], [ 362225.487000003457069, 254803.490299999713898 ], [ 362226.264499999582767, 254806.874200001358986 ], [ 362224.445100001990795, 254831.135000001639128 ], [ 362224.39299999922514, 254837.256299998611212 ], [ 362223.565099999308586, 254839.782699998468161 ], [ 362265.620999999344349, 254825.139199998229742 ], [ 362265.698299996554852, 254816.062899999320507 ], [ 362267.346900001168251, 254811.854499999433756 ], [ 362270.633299998939037, 254804.704199999570847 ], [ 362272.271099999547005, 254801.762299999594688 ], [ 362281.259199999272823, 254787.9037000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504070100", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-12", "ACRE": ".21", "LONGITUDE": -64.89117961, "LATITUDE": 18.32239831, "OBJECTID_1": 37860, "PARCEL_NO_": "107504070100", "Tax_Legal_": "BOVONI ESTATE 12B-12 WESTERN PART FRENCHMANS BAY QTR", "Name": "WILLIAMS, VALMOND A.", "Address": "PO Box 502251", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.310773200100002, "SHAPE_Area": 610.97427962200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363002.552599996328354, 254819.80009999871254 ], [ 363023.168999999761581, 254834.58559999987483 ], [ 363024.355599999427795, 254831.982400000095367 ], [ 363036.615800000727177, 254812.662099998444319 ], [ 363016.565800003707409, 254799.832400001585484 ], [ 363002.552599996328354, 254819.80009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503030500", "MAP": "A9-474-T95", "PARCEL_NAM": "61-58", "ACRE": ".504", "LONGITUDE": -64.89734814000001, "LATITUDE": 18.32239545, "OBJECTID_1": 37600, "PARCEL_NO_": "107503030500", "Tax_Legal_": "61-58 ESTATE BOLONGO 3 FRENCHMANS BAY QTR", "Name": "MORTON, ANTHONY & LORRAINE", "Address": "PO Box 8800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58200, "Improved_V": 330000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.90573004699999, "SHAPE_Area": 1992.44518285 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362399.497599996626377, 254822.857500001788139 ], [ 362376.46339999884367, 254781.71680000051856 ], [ 362341.637299999594688, 254799.585799999535084 ], [ 362335.94820000231266, 254804.816599998623133 ], [ 362359.041799999773502, 254838.991599999368191 ], [ 362367.952600002288818, 254834.209399998188019 ], [ 362399.497599996626377, 254822.857500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503040700", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-39", "ACRE": ".15", "LONGITUDE": -64.89199489000001, "LATITUDE": 18.32250526, "OBJECTID_1": 37624, "PARCEL_NO_": "107503040700", "Tax_Legal_": "12B-39 ESTATE BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "JOHN, ELVIS A.", "Address": "PO Box 11915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17400, "Improved_V": 21100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.460896148, "SHAPE_Area": 777.848746538 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362951.1233000010252, 254814.706599999219179 ], [ 362924.525700002908707, 254813.22239999845624 ], [ 362923.692400000989437, 254816.381999999284744 ], [ 362914.614399999380112, 254840.79450000077486 ], [ 362942.012900002300739, 254842.918600000441074 ], [ 362943.688400000333786, 254835.544100001454353 ], [ 362947.772100001573563, 254829.455800000578165 ], [ 362950.275600001215935, 254819.554900001734495 ], [ 362951.1233000010252, 254814.706599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503041500", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-28", "ACRE": ".15", "LONGITUDE": -64.89224675, "LATITUDE": 18.32248698, "OBJECTID_1": 37632, "PARCEL_NO_": "107503041500", "Tax_Legal_": "ESTATE BOVONI 12B-28 WESTERN PART", "Name": "THOMAS, OTIS", "Address": "PO Box 304956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 46500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.571141497, "SHAPE_Area": 640.82863472199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362923.692400000989437, 254816.381999999284744 ], [ 362897.929999999701977, 254811.527100000530481 ], [ 362895.457099996507168, 254817.839600000530481 ], [ 362893.803099997341633, 254822.681200001388788 ], [ 362892.138400003314018, 254828.789299998432398 ], [ 362891.281700000166893, 254834.692899998277426 ], [ 362914.614399999380112, 254840.79450000077486 ], [ 362923.692400000989437, 254816.381999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404028400", "MAP": "D9-4975-T90", "PARCEL_NAM": "21", "ACRE": null, "LONGITUDE": -64.90326868, "LATITUDE": 18.32100969, "OBJECTID_1": 37384, "PARCEL_NO_": "107404028400", "Tax_Legal_": "FRENCHMAN'S BAY POR.21 FRENCHMAN'S BAY QTR.", "Name": "FOSTER, J. & MAHAFFEY, W", "Address": "26 Estate Charlotte Amalie", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 535100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 899.18418511599998, "SHAPE_Area": 53232.779709199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361718.242299996316433, 254524.072799999266863 ], [ 361674.546800002455711, 254541.869199998676777 ], [ 361651.777699999511242, 254564.269799999892712 ], [ 361610.559399999678135, 254669.901399999856949 ], [ 361611.275799997150898, 254680.462000001221895 ], [ 361612.861400000751019, 254683.641399998217821 ], [ 361642.452200002968311, 254712.38120000064373 ], [ 361655.202200002968311, 254730.217399999499321 ], [ 361652.768899999558926, 254731.886199999600649 ], [ 361683.128200002014637, 254765.06529999896884 ], [ 361737.428800001740456, 254827.571199998259544 ], [ 361749.543300002813339, 254825.348400000482798 ], [ 361761.679300002753735, 254820.592500001192093 ], [ 361774.659400001168251, 254811.410700000822544 ], [ 361785.224200002849102, 254801.786800000816584 ], [ 361813.641099996864796, 254779.010200001299381 ], [ 361808.875200003385544, 254770.527399998158216 ], [ 361829.718099996447563, 254690.27140000090003 ], [ 361843.038099996745586, 254641.195599999278784 ], [ 361858.829199999570847, 254586.018300000578165 ], [ 361870.475400000810623, 254544.105999998748302 ], [ 361794.181400001049042, 254507.59569999948144 ], [ 361732.782899998128414, 254521.025400001555681 ], [ 361729.552299998700619, 254521.632199998944998 ], [ 361718.242299996316433, 254524.072799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504071500", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-8", "ACRE": ".18", "LONGITUDE": -64.89077243, "LATITUDE": 18.32240115, "OBJECTID_1": 37874, "PARCEL_NO_": "107504071500", "Tax_Legal_": "12B-8 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "ANTHONY, VICTOR", "Address": "7512 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22700, "Improved_V": 169600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.95070678499999, "SHAPE_Area": 860.05100823299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363075.970399998128414, 254831.138300001621246 ], [ 363083.335100002586842, 254818.532999999821186 ], [ 363086.1283999979496, 254811.928100001066923 ], [ 363050.126000002026558, 254801.547100000083447 ], [ 363047.945500001311302, 254807.899700000882149 ], [ 363045.461800001561642, 254815.478799998760223 ], [ 363043.834799997508526, 254817.154199998825788 ], [ 363040.546599999070168, 254824.515599999576807 ], [ 363040.347900003194809, 254824.791499998420477 ], [ 363061.025399997830391, 254831.381000000983477 ], [ 363065.915700003504753, 254825.361000001430511 ], [ 363074.661499999463558, 254832.956000000238419 ], [ 363075.970399998128414, 254831.138300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89800018, "LATITUDE": 18.32236381, "OBJECTID_1": 37598, "PARCEL_NO_": "107503030300", "Tax_Legal_": "61-39 ESTATE BOLONGO FRENCHMANS BAY QTR.", "Name": "WILBUR GEORGE", "Address": "3016 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025736, "Country": "United States", "Land_Value": 43500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.654676169, "SHAPE_Area": 1752.79269385 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362306.728500001132488, 254827.16440000012517 ], [ 362313.227600000798702, 254821.518100000917912 ], [ 362327.919200003147125, 254800.740100000053644 ], [ 362296.688799999654293, 254775.153299998492002 ], [ 362286.032399997115135, 254795.542100001126528 ], [ 362279.506300002336502, 254804.354600001126528 ], [ 362274.58389999717474, 254814.235700000077486 ], [ 362272.933600001037121, 254818.655200000852346 ], [ 362273.67509999871254, 254826.260600000619888 ], [ 362279.281599998474121, 254830.739500001072884 ], [ 362306.728500001132488, 254827.16440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91499679, "LATITUDE": 18.32235492, "OBJECTID_1": 37278, "PARCEL_NO_": "107403040800", "Tax_Legal_": "17-96 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "HODGE, ERIC", "Address": "PO Box 3793", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.6130422, "SHAPE_Area": 1901.98270942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360484.884900003671646, 254762.646499998867512 ], [ 360475.720600001513958, 254797.190900001674891 ], [ 360482.081200003623962, 254807.797600001096725 ], [ 360486.902900002896786, 254809.736900001764297 ], [ 360507.85080000013113, 254811.808200001716614 ], [ 360516.702299997210503, 254813.991599999368191 ], [ 360520.717699997127056, 254815.924300000071526 ], [ 360531.483800001442432, 254782.659600000828505 ], [ 360489.703000001609325, 254765.008000001311302 ], [ 360484.884900003671646, 254762.646499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91614404000001, "LATITUDE": 18.32220701, "OBJECTID_1": 32937, "PARCEL_NO_": "107304020700", "Tax_Legal_": "FRENCHMAN'S BAY 17-79 FRENCHMAN'S BAY QTR.", "Name": "PETERS, CARDINAL A", "Address": "PO BOX 4132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.230155709, "SHAPE_Area": 1426.3383615099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360395.502899996936321, 254747.982799999415874 ], [ 360393.899300001561642, 254746.914200000464916 ], [ 360390.688400000333786, 254745.199200000613928 ], [ 360383.424400001764297, 254745.984099999070168 ], [ 360360.765000000596046, 254755.50899999961257 ], [ 360372.573700003325939, 254789.16950000077486 ], [ 360380.426500000059605, 254813.931699998676777 ], [ 360385.269799999892712, 254813.338100001215935 ], [ 360388.523800000548363, 254809.987199999392033 ], [ 360388.550700001418591, 254806.820999998599291 ], [ 360387.769599996507168, 254803.859299998730421 ], [ 360384.582099996507168, 254799.400199998170137 ], [ 360392.715400002896786, 254791.234200000762939 ], [ 360395.502899996936321, 254747.982799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404035200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90068932, "LATITUDE": 18.32215375, "OBJECTID_1": 37436, "PARCEL_NO_": "107404035200", "Tax_Legal_": "EST. BOLONGO 2609 FRENCHMAN'S BAY QTR.", "Name": "BAPTISTE, ANGELA", "Address": "PO BOX 3742", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.27560632800001, "SHAPE_Area": 2763.65972259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362052.964900001883507, 254798.700800001621246 ], [ 361998.635499998927116, 254739.57209999859333 ], [ 361973.512199997901917, 254754.354200001806021 ], [ 362030.94990000128746, 254827.229400001466274 ], [ 362032.582299999892712, 254824.920699998736382 ], [ 362052.964900001883507, 254798.700800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503041900", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-31", "ACRE": ".158", "LONGITUDE": -64.8925669, "LATITUDE": 18.32239844, "OBJECTID_1": 37636, "PARCEL_NO_": "107503041900", "Tax_Legal_": "12B-31 ESTATE BOVONI No.1&2 FRENCHMAN'S BAY QUR.", "Name": "PINNEY, WENDY L.", "Address": "3E-2 Estate Bovoni", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.84546657600001, "SHAPE_Area": 773.93265738800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362890.725299999117851, 254805.346400000154972 ], [ 362864.174599997699261, 254798.374099999666214 ], [ 362855.87950000166893, 254825.537300001829863 ], [ 362874.379699997603893, 254830.965999998152256 ], [ 362882.423100002110004, 254833.353900000452995 ], [ 362884.951700001955032, 254820.497900001704693 ], [ 362889.080399997532368, 254809.132599998265505 ], [ 362890.725299999117851, 254805.346400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045900", "MAP": "D9-7993-T007", "PARCEL_NAM": "2-3L-2", "ACRE": ".25", "LONGITUDE": -64.88603183, "LATITUDE": 18.32167745, "OBJECTID_1": 37828, "PARCEL_NO_": "107504045900", "Tax_Legal_": "2-3L-2 & 2-3L-3 BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "MARSHALL, FLETCHER & ANGELA", "Address": "7176 Estate Bolongo", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.20697396899999, "SHAPE_Area": 1039.97409442 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363557.172899998724461, 254766.043200001120567 ], [ 363588.066699996590614, 254734.136999998241663 ], [ 363572.832599997520447, 254720.158900000154972 ], [ 363568.003700003027916, 254719.063900001347065 ], [ 363564.767700001597404, 254720.304000001400709 ], [ 363542.142300002276897, 254753.238400001078844 ], [ 363557.172899998724461, 254766.043200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90518094, "LATITUDE": 18.3222043, "OBJECTID_1": 37312, "PARCEL_NO_": "107404012400", "Tax_Legal_": "EST. FRENCHMAN'S BAY 14-88 FRENCHMAN'S BAY QTR.", "Name": "LYNCH, ROBERT A", "Address": "PO Box 8496", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.00231645100001, "SHAPE_Area": 2546.2187863300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361574.184299997985363, 254774.939399998635054 ], [ 361530.853799998760223, 254749.886799998581409 ], [ 361502.294799998402596, 254789.338700000196695 ], [ 361507.910300001502037, 254792.762099999934435 ], [ 361539.232400000095367, 254807.583999998867512 ], [ 361553.666900001466274, 254816.990200001746416 ], [ 361574.184299997985363, 254774.939399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503030600", "MAP": "A9-474-T95", "PARCEL_NAM": "61-57", "ACRE": ".579", "LONGITUDE": -64.89687752, "LATITUDE": 18.32226278, "OBJECTID_1": 37601, "PARCEL_NO_": "107503030600", "Tax_Legal_": "61-57 ESTATE BOLONGO NO 3 FRENCHMANS BAY QTR", "Name": "BREDY, FRITZNOL & MICHELLE SMITH", "Address": "PO Box 503201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 38300, "Improved_V": 126800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.33208344, "SHAPE_Area": 2264.3537075499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362453.691399998962879, 254803.247099999338388 ], [ 362455.503600001335144, 254779.830600000917912 ], [ 362376.46339999884367, 254781.71680000051856 ], [ 362399.497599996626377, 254822.857500001788139 ], [ 362453.691399998962879, 254803.247099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404036300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89972573, "LATITUDE": 18.32203509, "OBJECTID_1": 37446, "PARCEL_NO_": "107404036300", "Tax_Legal_": "26-16 ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "RIVAS, RONALD", "Address": "PO Box 10405", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75600, "Improved_V": 100800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.00183469800001, "SHAPE_Area": 3214.3689150499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362125.233800001442432, 254739.763900000602007 ], [ 362101.211599998176098, 254719.935600001364946 ], [ 362097.136900000274181, 254724.968499999493361 ], [ 362095.481100000441074, 254730.021200001239777 ], [ 362090.5371999964118, 254742.435199998319149 ], [ 362083.94820000231266, 254758.635499998927116 ], [ 362129.388400003314018, 254820.0135000012815 ], [ 362139.990900002419949, 254805.956999998539686 ], [ 362149.754799999296665, 254795.693300001323223 ], [ 362125.233800001442432, 254739.763900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90753964, "LATITUDE": 18.32223692, "OBJECTID_1": 37162, "PARCEL_NO_": "107403020700", "Tax_Legal_": "FRENCHMAN'S BAY 14-33C FRENCHMAN'S BAY QTR.", "Name": "ELVIRIER C MELCHIOR REVOCABLE FAMILY TRUST", "Address": "PO Box 10683", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34300, "Improved_V": 203800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.82984970699999, "SHAPE_Area": 1265.32215987 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361284.802699998021126, 254762.649599999189377 ], [ 361275.175499998033047, 254756.871300000697374 ], [ 361270.035499997437, 254792.292899999767542 ], [ 361286.906900003552437, 254799.608199998736382 ], [ 361307.014399997889996, 254805.683400001376867 ], [ 361316.643399998545647, 254811.250599998980761 ], [ 361302.455200001597404, 254772.926500000059605 ], [ 361284.802699998021126, 254762.649599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90722232, "LATITUDE": 18.32227238, "OBJECTID_1": 37303, "PARCEL_NO_": "107404011500", "Tax_Legal_": "FRENCHMAN'S BAY 14-33D FRENCHMAN'S BAY QTR.", "Name": "NEMETH, DONNA & RICHARD S.", "Address": "PO Box 307314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.9995419, "SHAPE_Area": 1053.5844570300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361347.427100002765656, 254794.615100000053644 ], [ 361333.102300003170967, 254772.333000000566244 ], [ 361302.455200001597404, 254772.926500000059605 ], [ 361316.643399998545647, 254811.250599998980761 ], [ 361347.427100002765656, 254794.615100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403011400", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-22", "ACRE": "0.54", "LONGITUDE": -64.91122066, "LATITUDE": 18.32214761, "OBJECTID_1": 33305, "PARCEL_NO_": "107403011400", "Tax_Legal_": "FRENCHMAN BAY 17-22 FRENCHMAN BAY QTR.", "Name": "THOMAS, PADGETT & KAREN", "Address": "P.O.BOX 5437", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53900, "Improved_V": 175400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.64898218, "SHAPE_Area": 2321.0327493499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360918.925599999725819, 254737.490200001746416 ], [ 360886.700099997222424, 254734.060100000351667 ], [ 360883.6841000020504, 254804.118400000035763 ], [ 360894.947300001978874, 254807.165899999439716 ], [ 360916.7195999994874, 254807.133000001311302 ], [ 360918.925599999725819, 254737.490200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403011200", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-21", "ACRE": "0.56", "LONGITUDE": -64.91089561, "LATITUDE": 18.3221561, "OBJECTID_1": 33303, "PARCEL_NO_": "107403011200", "Tax_Legal_": "FRENCHMAN BAY 17-21 FRENCHMAN BAY QTR.", "Name": "HUGGINS, REYNOLD", "Address": "PO Box 11341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.80424878700001, "SHAPE_Area": 2496.59834142 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360953.81530000269413, 254806.803399998694658 ], [ 360953.607799999415874, 254736.507500000298023 ], [ 360935.05009999871254, 254737.833299998193979 ], [ 360918.925599999725819, 254737.490200001746416 ], [ 360916.7195999994874, 254807.133000001311302 ], [ 360953.81530000269413, 254806.803399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404011600", "MAP": "F9-2260-T68", "PARCEL_NAM": "14-33H", "ACRE": "0.335", "LONGITUDE": -64.90685475, "LATITUDE": 18.32226443, "OBJECTID_1": 37304, "PARCEL_NO_": "107404011600", "Tax_Legal_": "FRENCHMAN'S BAY 14-33H FRENCHMAN'S BAY QTR.", "Name": "GUMBS, DAVIS & NEUVIE", "Address": "PO Box 8358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011358, "Country": "United States", "Land_Value": 42800, "Improved_V": 255900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.81114580600001, "SHAPE_Area": 1376.46489769 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361381.491800002753735, 254771.462499998509884 ], [ 361333.102300003170967, 254772.333000000566244 ], [ 361347.427100002765656, 254794.615100000053644 ], [ 361352.994000002741814, 254803.737700000405312 ], [ 361355.357199996709824, 254810.300900001078844 ], [ 361384.441899999976158, 254803.783900000154972 ], [ 361381.491800002753735, 254771.462499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403011000", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-20", "ACRE": "0.58", "LONGITUDE": -64.91053843, "LATITUDE": 18.32212757, "OBJECTID_1": 33301, "PARCEL_NO_": "107403011000", "Tax_Legal_": "FRENCHMAN BAY 17-20 FRENCHMAN BAY QTR.", "Name": "CHARLES, ALBERT B", "Address": "PO Box 8062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57300, "Improved_V": 263500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.83920349799999, "SHAPE_Area": 2860.3349054800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360993.342600002884865, 254805.015900000929832 ], [ 360993.149499997496605, 254733.031500000506639 ], [ 360985.090000003576279, 254732.543299999088049 ], [ 360977.030500002205372, 254732.05519999936223 ], [ 360953.607799999415874, 254736.507500000298023 ], [ 360953.81530000269413, 254806.803399998694658 ], [ 360993.342600002884865, 254805.015900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403011600", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-23", "ACRE": "0.60", "LONGITUDE": -64.91155722000001, "LATITUDE": 18.32211511, "OBJECTID_1": 33307, "PARCEL_NO_": "107403011600", "Tax_Legal_": "FRENCHMAN BAY 17-23 FRENCHMAN BAY QTR.", "Name": "MORRIS, JOSETTE A. R.", "Address": "PO BOX 10964", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.91146148000001, "SHAPE_Area": 2587.65981001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360886.700099997222424, 254734.060100000351667 ], [ 360862.517899997532368, 254733.017799999564886 ], [ 360852.843900002539158, 254732.72749999910593 ], [ 360839.4341000020504, 254792.357200000435114 ], [ 360883.6841000020504, 254804.118400000035763 ], [ 360886.700099997222424, 254734.060100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403010800", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-19", "ACRE": "0.58", "LONGITUDE": -64.91018883, "LATITUDE": 18.32213572, "OBJECTID_1": 33299, "PARCEL_NO_": "107403010800", "Tax_Legal_": "17-19 FRENCHMAN'S BAY FRENCHMAN BAY QTR.", "Name": "BURLEY, CURT R", "Address": "PO Box 307442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58200, "Improved_V": 129200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.1927078, "SHAPE_Area": 2389.9669181999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361026.946299999952316, 254741.329599998891354 ], [ 361006.034299999475479, 254735.036800000816584 ], [ 360993.149499997496605, 254733.031500000506639 ], [ 360993.342600002884865, 254805.015900000929832 ], [ 361030.449199996888638, 254803.419799998402596 ], [ 361026.946299999952316, 254741.329599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403010600", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-18", "ACRE": "0.70", "LONGITUDE": -64.9097593, "LATITUDE": 18.32206592, "OBJECTID_1": 33297, "PARCEL_NO_": "107403010600", "Tax_Legal_": "FRENCHMAN BAY 17-18 FRENCHMAN BAY QTR.", "Name": "SMITH, JANICE & WYCLIFFEE", "Address": "PO Box 8872", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.35924924899999, "SHAPE_Area": 2947.7353064399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361090.409400001168251, 254769.502300001680851 ], [ 361081.887000001966953, 254728.691500000655651 ], [ 361077.022200003266335, 254731.81810000166297 ], [ 361072.970799997448921, 254734.106899999082088 ], [ 361068.116800002753735, 254735.967099998146296 ], [ 361063.26630000025034, 254737.405000001192093 ], [ 361039.841899998486042, 254742.068500000983477 ], [ 361026.946299999952316, 254741.329599998891354 ], [ 361030.449199996888638, 254803.419799998402596 ], [ 361040.177100002765656, 254797.377700001001358 ], [ 361075.001400001347065, 254779.719799999147654 ], [ 361090.409400001168251, 254769.502300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043100", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-41", "ACRE": ".16", "LONGITUDE": -64.89140795, "LATITUDE": 18.32220773, "OBJECTID_1": 37649, "PARCEL_NO_": "107503043100", "Tax_Legal_": "BOVONI ESTATE 12B-41 No.1&2 FRENCHMAN'S BAY QTR.", "Name": "SMITH-SMITH, ROCHELLE", "Address": "PO Box 101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.855570109, "SHAPE_Area": 785.16562985200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363009.359399996697903, 254793.862799998372793 ], [ 363011.101499997079372, 254778.678399998694658 ], [ 362987.734600000083447, 254776.58729999884963 ], [ 362985.972699999809265, 254794.093600001186132 ], [ 362983.343400001525879, 254818.769999999552965 ], [ 362991.399300001561642, 254819.680300001055002 ], [ 362995.472199998795986, 254814.858500000089407 ], [ 362997.921700000762939, 254811.28999999910593 ], [ 363006.105400003492832, 254797.213700000196695 ], [ 363009.359399996697903, 254793.862799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503042900", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-17", "ACRE": "0.14", "LONGITUDE": -64.89162045, "LATITUDE": 18.3222936, "OBJECTID_1": 37646, "PARCEL_NO_": "107503042900", "Tax_Legal_": "12B-17 ESTATE BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "ANTOINE, MARLENE", "Address": "6514 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16200, "Improved_V": 78900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.088623568399996, "SHAPE_Area": 575.72652265099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362985.972699999809265, 254794.093600001186132 ], [ 362962.614799998700619, 254790.94709999859333 ], [ 362960.78999999910593, 254815.8412000015378 ], [ 362983.343400001525879, 254818.769999999552965 ], [ 362985.972699999809265, 254794.093600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504072000", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.89023651, "LATITUDE": 18.3222508, "OBJECTID_1": 37879, "PARCEL_NO_": "107504072000", "Tax_Legal_": "12B-70 ESTATE BOVONI WESTERN PART", "Name": "JEREMIAH, PETER A. & THERESA P", "Address": "PO Box 503213", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18900, "Improved_V": 116900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.86125934499999, "SHAPE_Area": 643.46902352799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363138.338799998164177, 254798.507100000977516 ], [ 363119.923100002110004, 254783.157600000500679 ], [ 363115.8412000015378, 254789.034800000488758 ], [ 363114.221400000154972, 254789.865899998694658 ], [ 363101.993600003421307, 254805.386799998581409 ], [ 363116.390299998223782, 254819.225699998438358 ], [ 363138.338799998164177, 254798.507100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91545655, "LATITUDE": 18.32209982, "OBJECTID_1": 37277, "PARCEL_NO_": "107403040700", "Tax_Legal_": "17-95 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR", "Name": "FEDEE, ANTHONY S & RONALD W. BELFON", "Address": "PO Box 8552", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.214059424, "SHAPE_Area": 1861.04640907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360427.083999998867512, 254732.409299999475479 ], [ 360417.246399998664856, 254751.327199999243021 ], [ 360436.47919999808073, 254765.416799999773502 ], [ 360452.522799998521805, 254775.258400000631809 ], [ 360464.495200000703335, 254789.710700001567602 ], [ 360475.720600001513958, 254797.190900001674891 ], [ 360484.884900003671646, 254762.646499998867512 ], [ 360427.083999998867512, 254732.409299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504071400", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-7", "ACRE": ".22", "LONGITUDE": -64.89066803, "LATITUDE": 18.32220611, "OBJECTID_1": 37873, "PARCEL_NO_": "107504071400", "Tax_Legal_": "12B-7 ESTATE BOVONI(WESTERN PART 1&2 FRENCHMAN'S BAY QTR.", "Name": "JOHN, DEBRA S", "Address": "PO Box 8828", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29800, "Improved_V": 116500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.577299772, "SHAPE_Area": 945.25653003399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363101.211000002920628, 254791.482099998742342 ], [ 363057.406199999153614, 254780.308699999004602 ], [ 363055.387500002980232, 254786.217999998480082 ], [ 363050.126000002026558, 254801.547100000083447 ], [ 363086.1283999979496, 254811.928100001066923 ], [ 363086.626900002360344, 254810.749400001019239 ], [ 363093.154700003564358, 254801.72580000013113 ], [ 363095.600599996745586, 254798.579500000923872 ], [ 363101.211000002920628, 254791.482099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503041400", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-27", "ACRE": ".15", "LONGITUDE": -64.89216652, "LATITUDE": 18.32227041, "OBJECTID_1": 37631, "PARCEL_NO_": "107503041400", "Tax_Legal_": "ESTATE BOVONI 12B-27 WESTERN PART", "Name": "AARON, ABERDEEN B", "Address": "PO Box 6141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21500, "Improved_V": 55600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.585360362, "SHAPE_Area": 647.043175056 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362931.955200001597404, 254793.018199998885393 ], [ 362910.245899997651577, 254785.663400001823902 ], [ 362899.576800003647804, 254807.529800001531839 ], [ 362897.929999999701977, 254811.527100000530481 ], [ 362923.692400000989437, 254816.381999999284744 ], [ 362924.525700002908707, 254813.22239999845624 ], [ 362931.955200001597404, 254793.018199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503040800", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-38", "ACRE": "0.14", "LONGITUDE": -64.89193025, "LATITUDE": 18.32227216, "OBJECTID_1": 37625, "PARCEL_NO_": "107503040800", "Tax_Legal_": "ESTATE BOVONI 12B-38 WESTERN PART", "Name": "CLENDINEN, CHRISTIAN & CHARLEN", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 17600, "Improved_V": 127900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.540815710800004, "SHAPE_Area": 585.42875742900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362953.738200001418591, 254791.718800000846386 ], [ 362934.424500003457069, 254787.12779999896884 ], [ 362931.955200001597404, 254793.018199998885393 ], [ 362924.525700002908707, 254813.22239999845624 ], [ 362951.1233000010252, 254814.706599999219179 ], [ 362953.738200001418591, 254791.718800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504070200", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-11", "ACRE": ".19", "LONGITUDE": -64.89102642, "LATITUDE": 18.3221354, "OBJECTID_1": 37861, "PARCEL_NO_": "107504070200", "Tax_Legal_": "BOVONI 12B-11 1 & 2 FRENCHMANS' BAY QTR.", "Name": "ANDREWS, KAMESHA T.", "Address": "PO Box 9026", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.21356839800001, "SHAPE_Area": 803.54766904099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363053.157399997115135, 254764.03489999845624 ], [ 363045.117600001394749, 254761.224899999797344 ], [ 363040.220399998128414, 254768.15089999884367 ], [ 363032.893500000238419, 254776.323600001633167 ], [ 363031.253899998962879, 254779.476599998772144 ], [ 363029.632299996912479, 254780.518800001591444 ], [ 363024.724299997091293, 254788.711199998855591 ], [ 363022.274800002574921, 254792.279800001531839 ], [ 363016.565800003707409, 254799.832400001585484 ], [ 363036.615800000727177, 254812.662099998444319 ], [ 363038.273299999535084, 254807.398400001227856 ], [ 363039.903899997472763, 254805.300799999386072 ], [ 363039.920100003480911, 254803.401099998503923 ], [ 363053.157399997115135, 254764.03489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403011800", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-24", "ACRE": "0.60", "LONGITUDE": -64.91196425, "LATITUDE": 18.32205857, "OBJECTID_1": 33309, "PARCEL_NO_": "107403011800", "Tax_Legal_": "FRENCHMAN BAY 17-24 FRENCHMAN'S BAY QTR.", "Name": "BROWNE, CHEFETA & ANTHONY", "Address": "PO Box 9024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59000, "Improved_V": 273000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.49056245, "SHAPE_Area": 2607.2332165799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360852.843900002539158, 254732.72749999910593 ], [ 360814.950900003314018, 254731.995200000703335 ], [ 360784.725299999117851, 254777.766199998557568 ], [ 360839.4341000020504, 254792.357200000435114 ], [ 360852.843900002539158, 254732.72749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503030700", "MAP": "A9-474-T95", "PARCEL_NAM": "61-56", "ACRE": ".504", "LONGITUDE": -64.89634291, "LATITUDE": 18.32203451, "OBJECTID_1": 37602, "PARCEL_NO_": "107503030700", "Tax_Legal_": "61-56 ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "JOSEPH, COLLINS", "Address": "PO Box 204", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.044537701, "SHAPE_Area": 1913.81244713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362502.208599999547005, 254787.390000000596046 ], [ 362480.848200000822544, 254739.085900001227856 ], [ 362459.012999996542931, 254746.506499998271465 ], [ 362455.503600001335144, 254779.830600000917912 ], [ 362453.691399998962879, 254803.247099999338388 ], [ 362469.059900000691414, 254797.67339999973774 ], [ 362483.625699996948242, 254791.670899998396635 ], [ 362502.208599999547005, 254787.390000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90785807, "LATITUDE": 18.32206179, "OBJECTID_1": 37164, "PARCEL_NO_": "107403020900", "Tax_Legal_": "FRENCHMAN'S BAY 14-33B FRENCHMAN'S BAY QTR", "Name": "BROOKES, SHARMANE", "Address": "PO Box 10025", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41200, "Improved_V": 342100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.99038109700001, "SHAPE_Area": 1221.3235233099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361275.175499998033047, 254756.871300000697374 ], [ 361251.936300002038479, 254739.793600000441074 ], [ 361232.394100002944469, 254762.009500000625849 ], [ 361240.406900003552437, 254767.985700000077486 ], [ 361251.587399996817112, 254780.742899999022484 ], [ 361258.799300000071526, 254786.079199999570847 ], [ 361270.035499997437, 254792.292899999767542 ], [ 361275.175499998033047, 254756.871300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404035300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90048363, "LATITUDE": 18.32193432, "OBJECTID_1": 37437, "PARCEL_NO_": "107404035300", "Tax_Legal_": "BOLONGO 26-10 FRENCHMAN BAY QTR.", "Name": "BUNCOME, TROY & MYRTLE", "Address": "PO Box 10043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46300, "Improved_V": 105600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.78262761299999, "SHAPE_Area": 2517.3665173999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362072.580700002610683, 254767.830600000917912 ], [ 362018.97860000282526, 254717.995999999344349 ], [ 361998.635499998927116, 254739.57209999859333 ], [ 362052.964900001883507, 254798.700800001621246 ], [ 362058.671999998390675, 254791.359200000762939 ], [ 362066.036700002849102, 254778.753899998962879 ], [ 362067.676299996674061, 254775.600900001823902 ], [ 362072.580700002610683, 254767.830600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503041800", "MAP": "A9--506-T97", "PARCEL_NAM": "12B-32", "ACRE": "0.16", "LONGITUDE": -64.89248671, "LATITUDE": 18.32216789, "OBJECTID_1": 37635, "PARCEL_NO_": "107503041800", "Tax_Legal_": "12B-32 ESTATE BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "PATRICE, HUBERT & WARNER, ANITA", "Address": "PO Box 302883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23000, "Improved_V": 115700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.930407573, "SHAPE_Area": 706.18945351900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362900.588100001215935, 254783.473400000482798 ], [ 362871.636399999260902, 254774.37049999833107 ], [ 362864.174599997699261, 254798.374099999666214 ], [ 362890.725299999117851, 254805.346400000154972 ], [ 362900.588100001215935, 254783.473400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89773324, "LATITUDE": 18.32200814, "OBJECTID_1": 37597, "PARCEL_NO_": "107503030200", "Tax_Legal_": "BOLONGO ESTATE 61-38 FRENCHMAN'S BAY QTR", "Name": "BAILEY, DESMOND C", "Address": "PO Box 503233", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053233, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.605286608, "SHAPE_Area": 2233.9741277799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362355.49210000038147, 254782.389499999582767 ], [ 362336.57039999961853, 254731.783300001174212 ], [ 362327.663199998438358, 254736.143399998545647 ], [ 362324.423500001430511, 254737.805599998682737 ], [ 362320.368600003421307, 254740.516600001603365 ], [ 362317.118199996650219, 254743.445300001651049 ], [ 362315.489399999380112, 254745.331799998879433 ], [ 362299.968000002205372, 254768.847300000488758 ], [ 362296.688799999654293, 254775.153299998492002 ], [ 362327.919200003147125, 254800.740100000053644 ], [ 362331.995800003409386, 254795.496100001037121 ], [ 362336.054300002753735, 254792.362900000065565 ], [ 362337.674099996685982, 254791.531800001859665 ], [ 362355.49210000038147, 254782.389499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404020200", "MAP": "D9-8440-T010", "PARCEL_NAM": "21-74 REM", "ACRE": "42.447", "LONGITUDE": -64.90600898, "LATITUDE": 18.31860826, "OBJECTID_1": 37320, "PARCEL_NO_": "107404020200", "Tax_Legal_": "21-73,21-74&23 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SANCTUARY HOLDINGS LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4199100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3643.68718442, "SHAPE_Area": 163975.556709 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361542.655799999833107, 254595.040800001472235 ], [ 361551.868699997663498, 254554.7972999997437 ], [ 361571.506099998950958, 254521.394099999219179 ], [ 361580.555299997329712, 254500.358800001442432 ], [ 361587.96679999679327, 254482.265500001609325 ], [ 361581.100199997425079, 254436.401999998837709 ], [ 361579.967699997127056, 254380.030699998140335 ], [ 361606.140100002288818, 254336.75959999859333 ], [ 361646.76860000193119, 254300.361900001764297 ], [ 361611.000600002706051, 254239.485300000756979 ], [ 361605.784400001168251, 254189.202300000935793 ], [ 361601.266599997878075, 254151.590700000524521 ], [ 361601.291799999773502, 254148.635600000619888 ], [ 361596.059399999678135, 254100.252399999648333 ], [ 361591.525399997830391, 254064.540399998426437 ], [ 361575.181599996984005, 254089.949000000953674 ], [ 361568.99719999730587, 254058.656500000506639 ], [ 361399.666900001466274, 254152.473799999803305 ], [ 361277.195500001311302, 254141.127900000661612 ], [ 361110.522600002586842, 254112.321600001305342 ], [ 361112.052500002086163, 254122.044399999082088 ], [ 361115.071000002324581, 254146.344900000840425 ], [ 361167.288900002837181, 254169.359299998730421 ], [ 361213.079700000584126, 254189.576799999922514 ], [ 361256.460500001907349, 254208.719200000166893 ], [ 361285.379900000989437, 254221.621500000357628 ], [ 361301.373000003397465, 254237.3733000010252 ], [ 361328.557499997317791, 254264.615800000727177 ], [ 361336.428199999034405, 254287.267200000584126 ], [ 361352.959799997508526, 254334.476399999111891 ], [ 361363.200900003314018, 254362.846700001507998 ], [ 361353.061200000345707, 254417.225900001823902 ], [ 361342.939499996602535, 254469.494300000369549 ], [ 361330.654200002551079, 254491.769600000232458 ], [ 361325.737199999392033, 254501.017499998211861 ], [ 361282.389499999582767, 254572.645599998533726 ], [ 361276.556500002741814, 254594.762699998915195 ], [ 361272.469200000166893, 254601.273200001567602 ], [ 361266.769199997186661, 254607.770399998873472 ], [ 361260.930200003087521, 254612.780600000172853 ], [ 361236.974299997091293, 254657.85249999910593 ], [ 361239.749099999666214, 254655.889699999243021 ], [ 361253.546400003135204, 254645.447900000959635 ], [ 361273.045299999415874, 254628.297800000756979 ], [ 361290.942400000989437, 254609.868099998682737 ], [ 361291.764899998903275, 254607.975000001490116 ], [ 361301.530599996447563, 254597.500199999660254 ], [ 361302.354900002479553, 254595.396000001579523 ], [ 361306.418799996376038, 254591.629599999636412 ], [ 361313.702600002288818, 254588.522799998521805 ], [ 361336.295500002801418, 254586.807900000363588 ], [ 361360.488499999046326, 254586.583700001239777 ], [ 361379.022900000214577, 254588.002000000327826 ], [ 361384.685099996626377, 254585.937399998307228 ], [ 361388.759800001978874, 254580.904500000178814 ], [ 361388.840700000524521, 254571.405900001525879 ], [ 361383.259400002658367, 254563.971999999135733 ], [ 361376.861100003123283, 254557.797899998724461 ], [ 361368.846500001847744, 254552.032800000160933 ], [ 361355.995899997651577, 254546.017000000923872 ], [ 361349.581299997866154, 254541.742600001394749 ], [ 361343.991099998354912, 254535.364100001752377 ], [ 361340.038599997758865, 254526.043600000441074 ], [ 361339.33839999884367, 254513.583299998193979 ], [ 361342.6283999979496, 254506.010899998247623 ], [ 361347.507600001990795, 254501.195700000971556 ], [ 361355.608499996364117, 254496.828999999910593 ], [ 361371.833700001239777, 254485.351700000464916 ], [ 361377.502999998629093, 254482.442800000309944 ], [ 361383.159800000488758, 254481.011399999260902 ], [ 361391.226499997079372, 254480.655200000852346 ], [ 361413.761900000274181, 254485.69480000063777 ], [ 361434.722499996423721, 254486.288600001484156 ], [ 361444.367600001394749, 254489.9560999982059 ], [ 361452.414599999785423, 254491.921799998730421 ], [ 361463.699400000274181, 254492.436299998313189 ], [ 361475.806599996984005, 254491.057799998670816 ], [ 361490.323899999260902, 254490.754399999976158 ], [ 361496.788699999451637, 254489.118599999696016 ], [ 361500.84009999781847, 254486.829700000584126 ], [ 361505.721100002527237, 254481.803399998694658 ], [ 361513.148800000548363, 254461.810300000011921 ], [ 361514.838699996471405, 254452.747099999338388 ], [ 361514.916000001132488, 254443.670699998736382 ], [ 361498.382700003683567, 254396.672600001096725 ], [ 361494.4662000015378, 254383.13060000166297 ], [ 361492.936300002038479, 254373.407800000160933 ], [ 361493.186200000345707, 254344.067800000309944 ], [ 361494.076999999582767, 254334.1537000015378 ], [ 361496.549900002777576, 254327.841099999845028 ], [ 361499.821900002658367, 254322.37950000166893 ], [ 361503.079499997198582, 254318.606499999761581 ], [ 361505.511100001633167, 254317.148699998855591 ], [ 361514.517200000584126, 254301.179299999028444 ], [ 361520.141599997878075, 254303.547400001436472 ], [ 361514.39130000025034, 254315.954799998551607 ], [ 361508.691399998962879, 254322.452100001275539 ], [ 361507.073299996554852, 254323.07209999859333 ], [ 361501.35360000282526, 254331.891199998557568 ], [ 361498.857400000095367, 254340.947799999266863 ], [ 361497.846100002527237, 254365.004200000315905 ], [ 361500.135499998927116, 254380.221700001507998 ], [ 361504.822400003671646, 254397.991900000721216 ], [ 361521.361100003123283, 254444.356800001114607 ], [ 361520.448700003325939, 254456.803800001740456 ], [ 361518.77139999717474, 254464.389499999582767 ], [ 361511.345499999821186, 254484.171500001102686 ], [ 361508.897799998521805, 254487.528900001198053 ], [ 361503.210500001907349, 254492.548599999397993 ], [ 361496.733000002801418, 254495.662000000476837 ], [ 361490.271700002253056, 254496.875700000673532 ], [ 361475.75450000166893, 254497.179099999368191 ], [ 361463.647200003266335, 254498.557599999010563 ], [ 361456.390399999916553, 254498.498199999332428 ], [ 361448.338100001215935, 254497.165800001472235 ], [ 361433.059500001370907, 254492.185600001364946 ], [ 361412.098999999463558, 254491.59180000051856 ], [ 361391.174400001764297, 254486.776500001549721 ], [ 361384.722099997103214, 254486.934799998998642 ], [ 361379.06530000269413, 254488.366200000047684 ], [ 361375.015799999237061, 254490.443999998271465 ], [ 361373.387000001966953, 254492.33049999922514 ], [ 361361.222099997103214, 254500.463599998503923 ], [ 361351.499600000679493, 254505.872400000691414 ], [ 361346.616800002753735, 254511.1097999997437 ], [ 361345.794299997389317, 254513.002900000661612 ], [ 361347.277500003576279, 254528.213799998164177 ], [ 361349.658699996769428, 254532.666200000792742 ], [ 361353.652500003576279, 254537.131900001317263 ], [ 361359.266099996864796, 254540.766399998217821 ], [ 361372.116700001060963, 254546.782200001180172 ], [ 361380.131300002336502, 254552.5472999997437 ], [ 361391.322599999606609, 254564.037999998778105 ], [ 361395.291199997067451, 254571.458700001239777 ], [ 361394.385999999940395, 254583.061500001698732 ], [ 361391.115800000727177, 254588.311999998986721 ], [ 361387.055399999022484, 254591.656300000846386 ], [ 361378.97070000320673, 254594.1233000010252 ], [ 361359.630000002682209, 254592.698399998247623 ], [ 361358.358000002801418, 254647.361200001090765 ], [ 361376.888800002634525, 254649.20160000026226 ], [ 361402.649400003254414, 254654.267599999904633 ], [ 361414.71169999986887, 254658.166000001132488 ], [ 361431.574199996888638, 254666.536699999123812 ], [ 361491.709600001573563, 254706.714499998837709 ], [ 361513.336099997162819, 254723.778999999165535 ], [ 361524.534599997103214, 254734.425299998372793 ], [ 361539.764600001275539, 254745.104600001126528 ], [ 361586.313199996948242, 254771.027899999171495 ], [ 361635.316600002348423, 254792.749400001019239 ], [ 361638.550899997353554, 254791.720400001853704 ], [ 361643.421099998056889, 254787.96059999987483 ], [ 361645.05349999666214, 254785.651900000870228 ], [ 361645.897600002586842, 254781.225900001823902 ], [ 361645.965899996459484, 254773.204900000244379 ], [ 361640.461999997496605, 254756.694499999284744 ], [ 361638.978799998760223, 254741.48369999974966 ], [ 361637.438100002706051, 254733.027300000190735 ], [ 361633.48929999768734, 254723.284699998795986 ], [ 361623.122299998998642, 254709.689899999648333 ], [ 361611.916599996387959, 254699.887800000607967 ], [ 361603.151500001549721, 254687.572700001299381 ], [ 361601.562299996614456, 254684.815499998629093 ], [ 361599.220600001513958, 254675.719300001859665 ], [ 361598.507799997925758, 254664.736600000411272 ], [ 361603.471600003540516, 254650.000599998980761 ], [ 361604.294100001454353, 254648.107500001788139 ], [ 361599.461599998176098, 254647.43470000103116 ], [ 361538.253799997270107, 254638.489999998360872 ], [ 361542.655799999833107, 254595.040800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404038000", "MAP": "D9-4151-T87", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89936236, "LATITUDE": 18.32191731, "OBJECTID_1": 37452, "PARCEL_NO_": "107404038000", "Tax_Legal_": "EST. BOLONGO 26-17 FRENCHMANS BAY QTR.", "Name": "ROGER DINANG and ANNETTE Y E DINANG", "Address": "8607 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.24777442199999, "SHAPE_Area": 2381.2835862500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362176.488899998366833, 254781.135600000619888 ], [ 362172.975299999117851, 254720.311900001019239 ], [ 362125.233800001442432, 254739.763900000602007 ], [ 362149.754799999296665, 254795.693300001323223 ], [ 362151.380000002682209, 254794.228999998420477 ], [ 362153.813299998641014, 254792.560100000351667 ], [ 362167.594300001859665, 254784.018100000917912 ], [ 362176.488899998366833, 254781.135600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90556655, "LATITUDE": 18.32195395, "OBJECTID_1": 37311, "PARCEL_NO_": "107404012300", "Tax_Legal_": "14-89 FRENCHMAN'S BAY NO 4 FRENCHMAN'S BAY QTR", "Name": "LYNCH, ROBERT A. & ELAINE A.", "Address": "PO Box 7487", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69100, "Improved_V": 389400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.93530711599999, "SHAPE_Area": 2157.37541908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361530.853799998760223, 254749.886799998581409 ], [ 361518.028399996459484, 254740.915899999439716 ], [ 361511.633599996566772, 254734.319699998944998 ], [ 361494.816100001335144, 254720.672100000083447 ], [ 361468.688699997961521, 254758.666200000792742 ], [ 361479.897900000214577, 254768.046000000089407 ], [ 361494.2820999994874, 254783.362500000745058 ], [ 361502.294799998402596, 254789.338700000196695 ], [ 361530.853799998760223, 254749.886799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504071300", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-6", "ACRE": ".24", "LONGITUDE": -64.89058201, "LATITUDE": 18.32203856, "OBJECTID_1": 37872, "PARCEL_NO_": "107504071300", "Tax_Legal_": "12B-6 ESTATE BOVONI WESTERN PART", "Name": "LEON, RUBY V. , DERICK, P. & L", "Address": "PO Box 503001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27400, "Improved_V": 81000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.582618758, "SHAPE_Area": 859.59600979100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363084.368000000715256, 254768.730399999767542 ], [ 363063.657399997115135, 254762.009899999946356 ], [ 363057.406199999153614, 254780.308699999004602 ], [ 363101.211000002920628, 254791.482099998742342 ], [ 363105.382500000298023, 254786.204999998211861 ], [ 363110.261699996888638, 254781.389800000935793 ], [ 363112.443400003015995, 254777.840700000524521 ], [ 363106.148199997842312, 254775.797899998724461 ], [ 363084.368000000715256, 254768.730399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504072100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89007077, "LATITUDE": 18.32207451, "OBJECTID_1": 37880, "PARCEL_NO_": "107504072100", "Tax_Legal_": "12B-69 ESTATE BOVONI WESTERN PART", "Name": "FRANCIS-SMITH, CLEM & ELIZABET", "Address": "PO Box 503324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 14900, "Improved_V": 71100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.983172396599997, "SHAPE_Area": 605.85333854500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363155.407999999821186, 254782.60359999909997 ], [ 363135.399499997496605, 254764.919100001454353 ], [ 363125.635600000619888, 254775.182799998670816 ], [ 363119.923100002110004, 254783.157600000500679 ], [ 363138.338799998164177, 254798.507100000977516 ], [ 363143.2162000015378, 254793.902899999171495 ], [ 363155.407999999821186, 254782.60359999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043600", "MAP": "F9-3947-T57", "PARCEL_NAM": "3-100", "ACRE": "0.22", "LONGITUDE": -64.8826281, "LATITUDE": 18.32205107, "OBJECTID_1": 37812, "PARCEL_NO_": "107504043600", "Tax_Legal_": "3-100 ESTATE BOVONI FRENCHMAN'S BAY QTR", "Name": "LIMA, JOSE RAMON", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.108696092, "SHAPE_Area": 738.27535144000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363942.471500001847744, 254777.013099998235703 ], [ 363918.359399996697903, 254767.738699998706579 ], [ 363906.819300003349781, 254797.197299998253584 ], [ 363917.274400003254414, 254800.449299998581409 ], [ 363927.727700002491474, 254803.912399999797344 ], [ 363942.471500001847744, 254777.013099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403012000", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-25", "ACRE": "0.97", "LONGITUDE": -64.91242073, "LATITUDE": 18.32186391, "OBJECTID_1": 33311, "PARCEL_NO_": "107403012000", "Tax_Legal_": "FRENCHMAN'S BAY 17-25 FRENCHMAN BAY QTR.", "Name": "BRATHWAITE, ERMINIE J", "Address": "161-16 119 ROAD", "City": "JAMAICA", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 90600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.64118269599999, "SHAPE_Area": 3888.3934463300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360814.950900003314018, 254731.995200000703335 ], [ 360802.254900000989437, 254707.82660000026226 ], [ 360749.036399997770786, 254707.602099999785423 ], [ 360738.083200000226498, 254762.818999998271465 ], [ 360784.725299999117851, 254777.766199998557568 ], [ 360814.950900003314018, 254731.995200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503042800", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-18", "ACRE": ".14", "LONGITUDE": -64.89159987, "LATITUDE": 18.32206471, "OBJECTID_1": 37645, "PARCEL_NO_": "107503042800", "Tax_Legal_": "12B-18 ESTATE BOVONI WESTERN PART", "Name": "BRUNO, ATHERLEY & TIRRELL, KIMBE", "Address": "PO Box 11783", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 256100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.824478233199997, "SHAPE_Area": 614.19359150299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362987.810099996626377, 254767.721999999135733 ], [ 362965.254900000989437, 254765.004200000315905 ], [ 362962.614799998700619, 254790.94709999859333 ], [ 362985.972699999809265, 254794.093600001186132 ], [ 362987.734600000083447, 254776.58729999884963 ], [ 362987.810099996626377, 254767.721999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503016400", "MAP": "D9-4151-T87", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89825391, "LATITUDE": 18.32192119, "OBJECTID_1": 37573, "PARCEL_NO_": "107503016400", "Tax_Legal_": "BOLONGO 61-32 FRENCHMAN BAY QTR.", "Name": "V E PICKERING TRUST", "Address": "7109 Bolongo Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.824660198, "SHAPE_Area": 2323.6701284599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362308.252300001680851, 254742.950599998235703 ], [ 362263.215700000524521, 254728.86089999973774 ], [ 362237.052299998700619, 254771.07660000026226 ], [ 362281.259199999272823, 254787.9037000015378 ], [ 362283.712300002574921, 254783.912999998778105 ], [ 362287.821199998259544, 254774.869600001722574 ], [ 362289.455399997532368, 254772.349800001829863 ], [ 362291.901299998164177, 254769.203400000929832 ], [ 362292.732799999415874, 254766.254900000989437 ], [ 362308.252300001680851, 254742.950599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503041300", "MAP": "A9-506-T97", "PARCEL_NAM": "13B-26", "ACRE": ".14", "LONGITUDE": -64.89206249, "LATITUDE": 18.3220357, "OBJECTID_1": 37630, "PARCEL_NO_": "107503041300", "Tax_Legal_": "12B-26 ESTATE BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "MAGO, ANA AMELIA", "Address": "PO Box 1014", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21500, "Improved_V": 138400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.663519376, "SHAPE_Area": 642.16793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362941.074600003659725, 254763.750900000333786 ], [ 362921.771899998188019, 254758.988800000399351 ], [ 362921.760799996554852, 254759.159800000488758 ], [ 362920.099600002169609, 254764.84569999948144 ], [ 362910.245899997651577, 254785.663400001823902 ], [ 362931.955200001597404, 254793.018199998885393 ], [ 362934.424500003457069, 254787.12779999896884 ], [ 362939.390000000596046, 254772.180799998342991 ], [ 362941.074600003659725, 254763.750900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503040900", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-37", "ACRE": ".14", "LONGITUDE": -64.89187183, "LATITUDE": 18.32203183, "OBJECTID_1": 37626, "PARCEL_NO_": "107503040900", "Tax_Legal_": "12B-37 ESTATE BOVONI No.1&2 FRENCHMAN'S BAY QTR.", "Name": "CHARLESWELL, C. L. & SMITH, V. D", "Address": "PO Box 868", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20400, "Improved_V": 244300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.675534224200007, "SHAPE_Area": 496.239140996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362956.428700000047684, 254759.865699999034405 ], [ 362941.101499997079372, 254760.584699999541044 ], [ 362941.074600003659725, 254763.750900000333786 ], [ 362939.390000000596046, 254772.180799998342991 ], [ 362934.424500003457069, 254787.12779999896884 ], [ 362953.738200001418591, 254791.718800000846386 ], [ 362956.428700000047684, 254759.865699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503030800", "MAP": "A9-474-T95", "PARCEL_NAM": "61-55", "ACRE": ".504", "LONGITUDE": -64.89599474000001, "LATITUDE": 18.32188959, "OBJECTID_1": 37603, "PARCEL_NO_": "107503030800", "Tax_Legal_": "61-55 ESTATE BOLONGO FRENCHMAN'S BAY", "Name": "ROGERS, JIMMY & JUDITH", "Address": "P.O. BOX 4190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.782647282, "SHAPE_Area": 2160.0175477799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362541.863600000739098, 254770.61600000038743 ], [ 362520.468999996781349, 254726.322299998253584 ], [ 362499.445500001311302, 254733.116399999707937 ], [ 362480.848200000822544, 254739.085900001227856 ], [ 362502.208599999547005, 254787.390000000596046 ], [ 362507.86540000140667, 254785.958700001239777 ], [ 362524.868100002408028, 254777.865200001746416 ], [ 362535.391500003635883, 254773.096099998801947 ], [ 362541.863600000739098, 254770.61600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603029900", "MAP": "F9-3939-T57", "PARCEL_NAM": "3-101", "ACRE": "0.22", "LONGITUDE": -64.88284178000001, "LATITUDE": 18.32198498, "OBJECTID_1": 38622, "PARCEL_NO_": "107603029900", "Tax_Legal_": "3-7,92,99 & 101 BOVONI NO. 1&2 FRENCHMANS BAY QUARTER", "Name": "A J PROPERTIES LLC", "Address": "PO Box 8355", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 222800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.91964412900001, "SHAPE_Area": 761.76141444699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363918.359399996697903, 254767.738699998706579 ], [ 363896.660899996757507, 254759.117400001734495 ], [ 363884.301899999380112, 254790.046999998390675 ], [ 363906.819300003349781, 254797.197299998253584 ], [ 363918.359399996697903, 254767.738699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404030400", "MAP": "A9-138-T70", "PARCEL_NAM": "104", "ACRE": "0.65", "LONGITUDE": -64.90237115, "LATITUDE": 18.32169358, "OBJECTID_1": 37389, "PARCEL_NO_": "107404030400", "Tax_Legal_": "BOLONGO BAY 104 FRENCHMAN BAY QTR", "Name": "MORRIS, DENNIS O.", "Address": "PO Box 10760", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57400, "Improved_V": 329800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.43283497300001, "SHAPE_Area": 2695.4906778899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361813.641099996864796, 254779.010200001299381 ], [ 361829.882500000298023, 254765.633099999278784 ], [ 361837.202200002968311, 254758.304800000041723 ], [ 361838.024700000882149, 254756.411699999123812 ], [ 361845.351700000464916, 254748.239000000059605 ], [ 361863.311700001358986, 254722.421500001102686 ], [ 361867.443999998271465, 254710.63399999961257 ], [ 361869.954599998891354, 254699.888799998909235 ], [ 361829.718099996447563, 254690.27140000090003 ], [ 361808.875200003385544, 254770.527399998158216 ], [ 361813.641099996864796, 254779.010200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89735912, "LATITUDE": 18.32183074, "OBJECTID_1": 37596, "PARCEL_NO_": "107503030100", "Tax_Legal_": "BOLONGO BAY ESTATE 61-37 No.3 FRENCHMAN'S BAY QTR.", "Name": "LAURENT, DONNA", "Address": "PO Box 10923", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.56207945599999, "SHAPE_Area": 2327.58572331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362396.799300000071526, 254760.984999999403954 ], [ 362383.435400001704693, 254720.556699998676777 ], [ 362362.447899997234344, 254723.129200000315905 ], [ 362336.57039999961853, 254731.783300001174212 ], [ 362355.49210000038147, 254782.389499999582767 ], [ 362396.799300000071526, 254760.984999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90751095, "LATITUDE": 18.32187786, "OBJECTID_1": 37163, "PARCEL_NO_": "107403020800", "Tax_Legal_": "FRENCHMAN'S BAY 14-33K FRENCHMAN BAY QTR", "Name": "Leonard Lawrence & Derrick Andrew Lawrence", "Address": "7119 S Durango Dr", "City": "Las Vegas", "State": "Nevada", "Zip": 891132059, "Country": "United States", "Land_Value": 38900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.029230764, "SHAPE_Area": 891.543768376 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361304.488600000739098, 254723.5472999997437 ], [ 361281.913699999451637, 254723.151399999856949 ], [ 361284.802699998021126, 254762.649599999189377 ], [ 361302.455200001597404, 254772.926500000059605 ], [ 361304.488600000739098, 254723.5472999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90704802, "LATITUDE": 18.32187309, "OBJECTID_1": 37305, "PARCEL_NO_": "107404011700", "Tax_Legal_": "FRENCHMAN'S BAY 7 FRENCHMANS BAY QTR", "Name": "NEMETH, RICHARD S & DONNA", "Address": "PO Box 307314", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 96600, "Improved_V": 419300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.53225884099999, "SHAPE_Area": 4312.2878434300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361352.134800001978874, 254715.282400000840425 ], [ 361304.522799998521805, 254719.536800000816584 ], [ 361304.488600000739098, 254723.5472999997437 ], [ 361302.455200001597404, 254772.926500000059605 ], [ 361333.102300003170967, 254772.333000000566244 ], [ 361381.491800002753735, 254771.462499998509884 ], [ 361381.691399998962879, 254748.032699998468161 ], [ 361381.14580000191927, 254717.419700000435114 ], [ 361358.590700000524521, 254714.701999999582767 ], [ 361352.134800001978874, 254715.282400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404034500", "MAP": "D9-1834-T81", "PARCEL_NAM": "60-A", "ACRE": null, "LONGITUDE": -64.90141415, "LATITUDE": 18.32177003, "OBJECTID_1": 37430, "PARCEL_NO_": "107404034500", "Tax_Legal_": "BOLONGO 60A FRENCHMAN BAY QTR.", "Name": "FRANCIS (life estate), IRA", "Address": "2501 Hassonite St", "City": "Kissimmee", "State": "Florida", "Zip": 34744, "Country": "United States", "Land_Value": 74800, "Improved_V": 433300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.34950176699999, "SHAPE_Area": 2534.0456555699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361966.219400003552437, 254758.51630000025034 ], [ 361948.707099996507168, 254731.775199998170137 ], [ 361961.958800002932549, 254690.720400001853704 ], [ 361923.878700003027916, 254711.94029999896884 ], [ 361912.268399998545647, 254749.631000000983477 ], [ 361932.995200000703335, 254777.66499999910593 ], [ 361948.390600003302097, 254768.92509999871254 ], [ 361966.219400003552437, 254758.51630000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403010400", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-17", "ACRE": "0.69", "LONGITUDE": -64.90926389000001, "LATITUDE": 18.32166228, "OBJECTID_1": 33295, "PARCEL_NO_": "107403010400", "Tax_Legal_": "FRENCHMAN BAY 17-17 FRENCHMAN BAY QTR.", "Name": "ZILLER, KATHLEEN K. & RICHARD D. (TRUSTEES)", "Address": "11815 W Somerset Dr", "City": "Franklin", "State": "Wisconsin", "Zip": 53132, "Country": "United States", "Land_Value": 66700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.514760927, "SHAPE_Area": 3094.87853305 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361129.797499999403954, 254689.397999998182058 ], [ 361123.366800002753735, 254687.023400001227856 ], [ 361116.165700003504753, 254680.420499999076128 ], [ 361106.54389999806881, 254674.00899999961257 ], [ 361100.107799999415874, 254672.267499998211861 ], [ 361096.879000000655651, 254672.66330000013113 ], [ 361094.447499997913837, 254674.121100001037121 ], [ 361094.406099997460842, 254678.975900001823902 ], [ 361096.693800002336502, 254694.404399998486042 ], [ 361094.924699999392033, 254712.755100000649691 ], [ 361091.645499996840954, 254719.061099998652935 ], [ 361083.510499998927116, 254727.438200000673532 ], [ 361081.887000001966953, 254728.691500000655651 ], [ 361090.409400001168251, 254769.502300001680851 ], [ 361126.135300002992153, 254740.663800001144409 ], [ 361131.021700002253056, 254735.004299998283386 ], [ 361134.33330000191927, 254724.898899998515844 ], [ 361135.23309999704361, 254713.929400000721216 ], [ 361129.797499999403954, 254689.397999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503042000", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-33", "ACRE": ".16", "LONGITUDE": -64.89240233, "LATITUDE": 18.3219886, "OBJECTID_1": 37637, "PARCEL_NO_": "107503042000", "Tax_Legal_": "ESTATE BOVONI 12B-33 WESTERN PART", "Name": "BENJAMIN, ANNELESJE V", "Address": "PO Box 6154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.950767969, "SHAPE_Area": 587.216608522 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362910.436499997973442, 254763.289000000804663 ], [ 362876.596500001847744, 254760.056699998676777 ], [ 362871.636399999260902, 254774.37049999833107 ], [ 362900.588100001215935, 254783.473400000482798 ], [ 362910.436499997973442, 254763.289000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403012200", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-26", "ACRE": "0.89", "LONGITUDE": -64.91288562, "LATITUDE": 18.32163865, "OBJECTID_1": 33313, "PARCEL_NO_": "107403012200", "Tax_Legal_": "FRENCHMAN'S BAY 17-26 FRENCHMAN BAY QTR.", "Name": "WEBSTER, PATRICK L. & VERNICE", "Address": "PO Box 7511", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.906445362, "SHAPE_Area": 3738.0913463699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360749.036399997770786, 254707.602099999785423 ], [ 360754.104500003159046, 254680.623599998652935 ], [ 360745.359099999070168, 254665.986600000411272 ], [ 360743.737499997019768, 254667.028799999505281 ], [ 360736.450099997222424, 254670.557700000703335 ], [ 360729.974399998784065, 254673.460099998861551 ], [ 360726.738399997353554, 254674.700100000947714 ], [ 360715.423100002110004, 254677.773899998515844 ], [ 360703.314000003039837, 254679.363600000739098 ], [ 360701.090000003576279, 254751.117199998348951 ], [ 360738.083200000226498, 254762.818999998271465 ], [ 360749.036399997770786, 254707.602099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504072200", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.88991804, "LATITUDE": 18.32192351, "OBJECTID_1": 37881, "PARCEL_NO_": "107504072200", "Tax_Legal_": "12B-68 ESTATE BOVONI(WESTERN PA) No.1&2 FRENCHMAN'S BAY QTR.", "Name": "RAMIREZ, LOURDES CONCEPCION", "Address": "25 ESTATE NADIR", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 53700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.644865972800005, "SHAPE_Area": 616.40478215300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363170.040299996733665, 254768.791200000792742 ], [ 363154.903800003230572, 254747.135800000280142 ], [ 363145.15429999679327, 254755.710799999535084 ], [ 363135.399499997496605, 254764.919100001454353 ], [ 363155.407999999821186, 254782.60359999909997 ], [ 363170.040299996733665, 254768.791200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504073100", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-64", "ACRE": ".18", "LONGITUDE": -64.89017482, "LATITUDE": 18.32180454, "OBJECTID_1": 37890, "PARCEL_NO_": "107504073100", "Tax_Legal_": "12B-64 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "BLANC FRETIL, CHANTAL & OSNER FRETIL", "Address": "PO Box 308331", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.07119001199999, "SHAPE_Area": 699.382703515 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363106.148199997842312, 254775.797899998724461 ], [ 363112.443400003015995, 254777.840700000524521 ], [ 363115.167900003492832, 254773.408399999141693 ], [ 363121.675999999046326, 254766.706599999219179 ], [ 363137.125399999320507, 254751.634399998933077 ], [ 363150.127099998295307, 254739.91950000077486 ], [ 363125.998800002038479, 254732.544900000095367 ], [ 363119.420699998736382, 254747.478700000792742 ], [ 363106.148199997842312, 254775.797899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504070300", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".18", "LONGITUDE": -64.89107936000001, "LATITUDE": 18.32178665, "OBJECTID_1": 37862, "PARCEL_NO_": "107504070300", "Tax_Legal_": "12B-55 ESTATE BOVONI WESTERN PART", "Name": "LAKE, JEROME K.", "Address": "PO BOX 10995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.034956644, "SHAPE_Area": 660.31876853599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363038.879299998283386, 254736.264800000935793 ], [ 363023.649300001561642, 254725.585499998182058 ], [ 363023.523400001227856, 254740.361000001430511 ], [ 363019.967299997806549, 254779.173099998384714 ], [ 363023.237499997019768, 254773.922499999403954 ], [ 363024.859099999070168, 254772.880300000309944 ], [ 363047.6858000010252, 254743.72520000115037 ], [ 363038.879299998283386, 254736.264800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043200", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-42", "ACRE": "0.14", "LONGITUDE": -64.89136765000001, "LATITUDE": 18.32192383, "OBJECTID_1": 37650, "PARCEL_NO_": "107503043200", "Tax_Legal_": "12B-42 ESTATE BOVONI WESTERN PART FRENCHMAN'S BAY QTR.", "Name": "RYLAND HUYGHUE a/k/a RYLAND A HUYGHE FAMILY REVOCABLE TRUST", "Address": "6752 ESTATE SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021343, "Country": "United States", "Land_Value": 16700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.118529405, "SHAPE_Area": 653.08686616800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363013.745200000703335, 254752.313299998641014 ], [ 362988.771099999547005, 254749.575800001621246 ], [ 362987.810099996626377, 254767.721999999135733 ], [ 362987.734600000083447, 254776.58729999884963 ], [ 363011.101499997079372, 254778.678399998694658 ], [ 363013.745200000703335, 254752.313299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504073200", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-3", "ACRE": ".18", "LONGITUDE": -64.89040468, "LATITUDE": 18.32186659, "OBJECTID_1": 37891, "PARCEL_NO_": "107504073200", "Tax_Legal_": "12B-3 BOVONI WESTERN PART", "Name": "FRANCIS, OSHLYN O. & MERIAM F", "Address": "PO Box 6822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23300, "Improved_V": 150800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.339739674, "SHAPE_Area": 687.33230133999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363084.368000000715256, 254768.730399999767542 ], [ 363106.148199997842312, 254775.797899998724461 ], [ 363119.420699998736382, 254747.478700000792742 ], [ 363106.568199999630451, 254741.6739999987185 ], [ 363100.931199997663498, 254740.783399999141693 ], [ 363100.844899997115135, 254750.915199998766184 ], [ 363091.172799997031689, 254750.413899999111891 ], [ 363084.368000000715256, 254768.730399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89850504, "LATITUDE": 18.32167205, "OBJECTID_1": 37570, "PARCEL_NO_": "107503015800", "Tax_Legal_": "BOLONGO BAY 61-23\nFRENCHMAN BAY QTR.", "Name": "GRAHAM, MAVIS L", "Address": "Po Box 305253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46900, "Improved_V": 300400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.64026630800001, "SHAPE_Area": 2439.4977412799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362233.488300003111362, 254716.163100000470877 ], [ 362218.805600002408028, 254735.88569999858737 ], [ 362220.148500002920628, 254767.560699999332428 ], [ 362237.052299998700619, 254771.07660000026226 ], [ 362263.215700000524521, 254728.86089999973774 ], [ 362286.105400003492832, 254692.317999999970198 ], [ 362272.38910000026226, 254693.261199999600649 ], [ 362269.162000000476837, 254693.445799998939037 ], [ 362261.888999998569489, 254695.286200001835823 ], [ 362253.789899997413158, 254699.441700000315905 ], [ 362237.559399999678135, 254711.552299998700619 ], [ 362237.532399997115135, 254714.718499999493361 ], [ 362233.488300003111362, 254716.163100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90816049, "LATITUDE": 18.32184711, "OBJECTID_1": 37167, "PARCEL_NO_": "107403021200", "Tax_Legal_": "FRENCHMAN'S BAY 14-33A 4 FRENCHMAN'S BAY QTR", "Name": "SWAN, CEDRIC L", "Address": "P.O. BOX 2303", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44100, "Improved_V": 58200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.34642155899999, "SHAPE_Area": 1185.66661574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361251.936300002038479, 254739.793600000441074 ], [ 361228.691600002348423, 254723.34910000115633 ], [ 361206.895999997854233, 254726.125999998301268 ], [ 361201.077399998903275, 254746.554499998688698 ], [ 361225.180500000715256, 254756.884300000965595 ], [ 361232.394100002944469, 254762.009500000625849 ], [ 361251.936300002038479, 254739.793600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404035400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90030983, "LATITUDE": 18.32167775, "OBJECTID_1": 37438, "PARCEL_NO_": "107404035400", "Tax_Legal_": "EST. BOLONGO 26-11 FRENCHMAN'S BAY QTR.", "Name": "PETERSEN, LEON", "Address": "P O BOX 2661 F'STED", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 62900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.53127028599999, "SHAPE_Area": 2322.8185131499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362086.586499996483326, 254732.9037000015378 ], [ 362041.767499998211861, 254693.273499999195337 ], [ 362030.373000003397465, 254705.634700000286102 ], [ 362018.97860000282526, 254717.995999999344349 ], [ 362072.580700002610683, 254767.830600000917912 ], [ 362076.669799998402596, 254761.109099999070168 ], [ 362077.506700001657009, 254757.527300000190735 ], [ 362084.909199997782707, 254740.48930000141263 ], [ 362086.586499996483326, 254732.9037000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503030900", "MAP": "A9-474-T95", "PARCEL_NAM": "61-54", "ACRE": ".504", "LONGITUDE": -64.89559012, "LATITUDE": 18.32172786, "OBJECTID_1": 37604, "PARCEL_NO_": "107503030900", "Tax_Legal_": "61-54 ESTATE BOLONGO NO.3 FRENCHMANS BAY QTR", "Name": "PENN, LISA", "Address": "8410 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.82564958399999, "SHAPE_Area": 2378.22010516 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362576.262800000607967, 254708.2027000002563 ], [ 362536.641999997198582, 254720.966299999505281 ], [ 362520.468999996781349, 254726.322299998253584 ], [ 362541.863600000739098, 254770.61600000038743 ], [ 362577.456399999558926, 254757.397300001233816 ], [ 362576.709399998188019, 254750.42509999871254 ], [ 362578.372400000691414, 254744.528099998831749 ], [ 362578.437100000679493, 254736.929299999028444 ], [ 362580.105499997735023, 254730.399000000208616 ], [ 362576.262800000607967, 254708.2027000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91591658, "LATITUDE": 18.32166439, "OBJECTID_1": 32935, "PARCEL_NO_": "107304020500", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 17-94 FRENCHMAN'S BAY QTR.", "Name": "EMMANUEL, EMERY & FRANCINE", "Address": "PO BOX 1475", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.729629832, "SHAPE_Area": 2266.39820005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360370.332099996507168, 254673.68299999833107 ], [ 360395.5945999994874, 254737.217799998819828 ], [ 360401.219099998474121, 254739.585799999535084 ], [ 360417.246399998664856, 254751.327199999243021 ], [ 360427.083999998867512, 254732.409299999475479 ], [ 360438.555799998342991, 254710.971599999815226 ], [ 360370.332099996507168, 254673.68299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90594639, "LATITUDE": 18.32162173, "OBJECTID_1": 37310, "PARCEL_NO_": "107404012200", "Tax_Legal_": "FRENCHMAN'S BAY 14-90 FRENCHMAN'S BAY QTR.", "Name": "LYNCH, ROBERT A", "Address": "PO Box 8496", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.288590132, "SHAPE_Area": 2468.4315351599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361494.816100001335144, 254720.672100000083447 ], [ 361478.790600001811981, 254708.719700001180172 ], [ 361427.47070000320673, 254674.946899998933077 ], [ 361425.05349999666214, 254674.715999998152256 ], [ 361423.430100001394749, 254675.969300001859665 ], [ 361423.4121999964118, 254678.079999998211861 ], [ 361428.196099996566772, 254684.451999999582767 ], [ 361430.570100001990795, 254689.748799998313189 ], [ 361440.771600000560284, 254722.762899998575449 ], [ 361444.731200002133846, 254731.239000000059605 ], [ 361450.314300000667572, 254738.461899999529123 ], [ 361456.69650000333786, 254746.535700000822544 ], [ 361468.688699997961521, 254758.666200000792742 ], [ 361494.816100001335144, 254720.672100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021100", "MAP": "D9-2276-T83", "PARCEL_NAM": "14-33E", "ACRE": null, "LONGITUDE": -64.90793542, "LATITUDE": 18.32140984, "OBJECTID_1": 37166, "PARCEL_NO_": "107403021100", "Tax_Legal_": "14-33E REM.ESTATE FRENCHMANS BAY 4 FRENCHMAN'S BAY QTR", "Name": "VED, BELA & JITENDRA", "Address": "9002IHAVENSIGHT Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70800, "Improved_V": 613700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.390518055, "SHAPE_Area": 1869.3531802 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361250.448299996554852, 254718.524900000542402 ], [ 361263.803700000047684, 254709.355000000447035 ], [ 361266.406999997794628, 254714.986200001090765 ], [ 361272.218199998140335, 254713.697700001299381 ], [ 361270.155199997127056, 254683.580699998885393 ], [ 361267.000100001692772, 254675.322200000286102 ], [ 361264.604599997401237, 254672.558400001376867 ], [ 361258.990900002419949, 254668.923900000751019 ], [ 361252.553000003099442, 254667.393500000238419 ], [ 361246.10249999910593, 254667.340700000524521 ], [ 361237.21509999781847, 254669.378899998962879 ], [ 361222.636799998581409, 254676.859000001102686 ], [ 361221.011500000953674, 254678.323300000280142 ], [ 361239.337300002574921, 254704.226700000464916 ], [ 361228.691600002348423, 254723.34910000115633 ], [ 361250.448299996554852, 254718.524900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403012300", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-27", "ACRE": "0.61", "LONGITUDE": -64.91330419000001, "LATITUDE": 18.3216326, "OBJECTID_1": 33314, "PARCEL_NO_": "107403012300", "Tax_Legal_": "EST. FRENCHMAN BAY 17-27 FRENCHMAN'S BAY QTR.", "Name": "DURAND, SHARREN A", "Address": "3412 Red Rock Dr", "City": "Land O Lakes", "State": "Florida", "Zip": 34639, "Country": "United States", "Land_Value": 59900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.36320467300001, "SHAPE_Area": 2740.34009681 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360703.314000003039837, 254679.363600000739098 ], [ 360682.335500001907349, 254680.88060000166297 ], [ 360660.566799998283386, 254680.491399999707937 ], [ 360658.468699999153614, 254737.469399999827147 ], [ 360701.090000003576279, 254751.117199998348951 ], [ 360703.314000003039837, 254679.363600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504071200", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-5", "ACRE": ".14", "LONGITUDE": -64.89062858, "LATITUDE": 18.32181986, "OBJECTID_1": 37871, "PARCEL_NO_": "107504071200", "Tax_Legal_": "12B-5 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "GEORGE, ROLLAND P. & ALICIA J", "Address": "PO Box 306701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16700, "Improved_V": 203100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.390530059599996, "SHAPE_Area": 565.71886791099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363063.657399997115135, 254762.009899999946356 ], [ 363084.368000000715256, 254768.730399999767542 ], [ 363091.172799997031689, 254750.413899999111891 ], [ 363092.050999999046326, 254741.977299999445677 ], [ 363071.104900002479553, 254739.695000000298023 ], [ 363063.657399997115135, 254762.009899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024600", "MAP": "F9-3936-T57", "PARCEL_NAM": "3-83", "ACRE": "0.22", "LONGITUDE": -64.88251678, "LATITUDE": 18.32179252, "OBJECTID_1": 38614, "PARCEL_NO_": "107603024600", "Tax_Legal_": "3-83 BOVONI NO. 1&2 FRENCHMANS BAY QUARTER", "Name": "ANDREW, BERNABE & INGRID", "Address": "PO Box 11915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3400, "Improved_V": 51200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.352473487, "SHAPE_Area": 801.14198756899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363952.967299997806549, 254746.828699998557568 ], [ 363930.453199997544289, 254737.790800001472235 ], [ 363929.066299997270107, 254741.439599998295307 ], [ 363918.359399996697903, 254767.738699998706579 ], [ 363942.471500001847744, 254777.013099998235703 ], [ 363951.567500002682209, 254750.489700000733137 ], [ 363952.967299997806549, 254746.828699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9064268, "LATITUDE": 18.32173107, "OBJECTID_1": 37308, "PARCEL_NO_": "107404012000", "Tax_Legal_": "FRENCHMAN'S BAY 14-2 FRENCHMAN BAY QTR", "Name": "ISLES, RUPERT", "Address": "PO Box 7575", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46800, "Improved_V": 397100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.69074120400001, "SHAPE_Area": 2141.12343504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361441.292000003159046, 254756.331000000238419 ], [ 361430.36150000244379, 254714.233899999409914 ], [ 361427.994699999690056, 254708.092799998819828 ], [ 361381.2195999994874, 254708.765500001609325 ], [ 361381.14580000191927, 254717.419700000435114 ], [ 361381.691399998962879, 254748.032699998468161 ], [ 361424.42960000038147, 254747.960299998521805 ], [ 361441.292000003159046, 254756.331000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91630176, "LATITUDE": 18.3216304, "OBJECTID_1": 32936, "PARCEL_NO_": "107304020600", "Tax_Legal_": "FRENCHMAN'S BAY 17-93 FRENCHMAN'S BAY QTR.", "Name": "POTTER, EVERARD E. & HENRY, DAWN L.", "Address": "PO Box 8303", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.74584053500001, "SHAPE_Area": 2405.6973426599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360370.332099996507168, 254673.682900000363588 ], [ 360333.950900003314018, 254684.784200001507998 ], [ 360341.989699997007847, 254698.734299998730421 ], [ 360358.419799998402596, 254746.834899999201298 ], [ 360380.272900000214577, 254737.30350000038743 ], [ 360388.348600000143051, 254735.8918999992311 ], [ 360395.5945999994874, 254737.217799998819828 ], [ 360370.332099996507168, 254673.682900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503042700", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-19", "ACRE": ".14", "LONGITUDE": -64.89158429, "LATITUDE": 18.32182782, "OBJECTID_1": 37644, "PARCEL_NO_": "107503042700", "Tax_Legal_": "12B-19 ESTATE BOVONI WESTERN PART FRENCHMAN'S BAY QTR.", "Name": "NILLTAN, JOHN PIERRE", "Address": "6514 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.002976721899998, "SHAPE_Area": 592.91838000500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362988.771099999547005, 254749.575800001621246 ], [ 362988.859200000762939, 254739.232900001108646 ], [ 362964.64639999717474, 254741.778999999165535 ], [ 362966.199699997901917, 254748.757800001651049 ], [ 362965.254900000989437, 254765.004200000315905 ], [ 362987.810099996626377, 254767.721999999135733 ], [ 362988.771099999547005, 254749.575800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504072300", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.88975064, "LATITUDE": 18.32178477, "OBJECTID_1": 37882, "PARCEL_NO_": "107504072300", "Tax_Legal_": "12B-67 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "JACQUELINE MCTAVIOUS LIVING TRUST", "Address": "PO Box 10182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13900, "Improved_V": 114100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.816735586500002, "SHAPE_Area": 599.21402993300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363186.297799997031689, 254753.514499999582767 ], [ 363175.99379999935627, 254732.531899999827147 ], [ 363165.457800000905991, 254738.778400000184774 ], [ 363154.903800003230572, 254747.135800000280142 ], [ 363170.040299996733665, 254768.791200000792742 ], [ 363186.297799997031689, 254753.514499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503015400", "MAP": "D9-5896-T95", "PARCEL_NAM": "61-43", "ACRE": null, "LONGITUDE": -64.89690335, "LATITUDE": 18.32150993, "OBJECTID_1": 37568, "PARCEL_NO_": "107503015400", "Tax_Legal_": "BOLONGO ESTATE 61-43 No.3 FRENCHMAN'S BAY QTR", "Name": "FRETT, SARAH J. J. & N. , K. , & H", "Address": "PO Box 8653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.41863677399999, "SHAPE_Area": 2789.3583675300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362445.703100003302097, 254699.745900001376867 ], [ 362429.114000000059605, 254659.291299998760223 ], [ 362425.865299999713898, 254662.008900001645088 ], [ 362420.154600001871586, 254669.772599998861551 ], [ 362417.692500002682209, 254674.81870000064373 ], [ 362413.547700002789497, 254688.083700001239777 ], [ 362411.904500000178814, 254691.6587999984622 ], [ 362410.266699999570847, 254694.600699998438358 ], [ 362401.27139999717474, 254709.303599998354912 ], [ 362395.576800003647804, 254715.167700000107288 ], [ 362389.095799997448921, 254718.703200001269579 ], [ 362383.435400001704693, 254720.556699998676777 ], [ 362396.799300000071526, 254760.984999999403954 ], [ 362411.386600002646446, 254752.449499998241663 ], [ 362413.009999997913837, 254751.196199998259544 ], [ 362416.265799999237061, 254747.634300000965595 ], [ 362418.715300001204014, 254744.065799999982119 ], [ 362427.707099996507168, 254729.785000000149012 ], [ 362432.659999996423721, 254716.315499998629093 ], [ 362433.482500001788139, 254714.422400001436472 ], [ 362435.9391999989748, 254710.00959999859333 ], [ 362437.573399998247623, 254707.489799998700619 ], [ 362445.703100003302097, 254699.745900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503041200", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-25", "ACRE": ".14", "LONGITUDE": -64.89202911, "LATITUDE": 18.32174437, "OBJECTID_1": 37629, "PARCEL_NO_": "107503041200", "Tax_Legal_": "12B-25 EST. BOVONI(WESTERN PART) No.1&2 FRENCHMANS BAY QTR.", "Name": "SIMMONDS, LAVIDA E", "Address": "7107 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18900, "Improved_V": 130400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.832059652, "SHAPE_Area": 623.15610543000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362921.771899998188019, 254758.988800000399351 ], [ 362941.074600003659725, 254763.750900000333786 ], [ 362941.101499997079372, 254760.584699999541044 ], [ 362939.625600002706051, 254744.529500000178814 ], [ 362932.568400003015995, 254721.040300000458956 ], [ 362920.428700000047684, 254726.218299999833107 ], [ 362922.689400002360344, 254744.813099998980761 ], [ 362921.771899998188019, 254758.988800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88380061, "LATITUDE": 18.3214854, "OBJECTID_1": 37788, "PARCEL_NO_": "107504040900", "Tax_Legal_": "3-122 BOVONI 1 & 2 FRENCHMAN'S BAY QTR", "Name": "SINCLAIR, JOHN LEWIS", "Address": "PO BOX 306733", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24100, "Improved_V": 106500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 13.477716533400001, "SHAPE_Area": 1.41736049953 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363798.436200000345707, 254721.77419999986887 ], [ 363804.591899998486042, 254723.945000000298023 ], [ 363798.605499997735023, 254721.373399998992682 ], [ 363798.436200000345707, 254721.77419999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503042100", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-34", "ACRE": ".14", "LONGITUDE": -64.89235115, "LATITUDE": 18.32180048, "OBJECTID_1": 37638, "PARCEL_NO_": "107503042100", "Tax_Legal_": "12B-34 ESTATE BOVONI No1&2 FRENCHMAN'S BAY", "Name": "ALLEMBERT- RYAN, TIONA T.", "Address": "PO Box 722", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.340748932, "SHAPE_Area": 810.01785785100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362912.275700002908707, 254736.706300001591444 ], [ 362884.056500002741814, 254736.264199998229742 ], [ 362876.596500001847744, 254760.056699998676777 ], [ 362910.436499997973442, 254763.289000000804663 ], [ 362912.06530000269413, 254761.402499999850988 ], [ 362912.106700003147125, 254756.547699999064207 ], [ 362912.178599998354912, 254748.104499999433756 ], [ 362912.275700002908707, 254736.706300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90855293, "LATITUDE": 18.32173784, "OBJECTID_1": 37168, "PARCEL_NO_": "107403021300", "Tax_Legal_": "FRENCHMAN'S BAY 14-33G FRENCHMAN'S BAY QTR", "Name": "SWAN, CEDRIC L", "Address": "PO Box 302303", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44100, "Improved_V": 294600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.74164644699999, "SHAPE_Area": 1144.3878933000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361187.717200003564358, 254705.704100001603365 ], [ 361182.02080000191927, 254711.779199998825788 ], [ 361172.278499998152256, 254719.509899999946356 ], [ 361152.815600000321865, 254732.438400000333786 ], [ 361152.786799997091293, 254735.815699998289347 ], [ 361154.388599999248981, 254737.095300000160933 ], [ 361180.973600000143051, 254740.057100001722574 ], [ 361191.434000000357628, 254742.675900001078844 ], [ 361201.077399998903275, 254746.554499998688698 ], [ 361206.895999997854233, 254726.125999998301268 ], [ 361187.717200003564358, 254705.704100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503041000", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-36", "ACRE": ".15", "LONGITUDE": -64.8918823, "LATITUDE": 18.32170311, "OBJECTID_1": 37627, "PARCEL_NO_": "107503041000", "Tax_Legal_": "ESTATE BOVONI 12B-36 WESTERN PART", "Name": "BROOKS, MICHAEL L. & CATHERINE", "Address": "PO Box 307265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.87743077, "SHAPE_Area": 708.23218984899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362944.706200003623962, 254716.073399998247623 ], [ 362932.568400003015995, 254721.040300000458956 ], [ 362939.625600002706051, 254744.529500000178814 ], [ 362941.101499997079372, 254760.584699999541044 ], [ 362956.428700000047684, 254759.865699999034405 ], [ 362957.279899999499321, 254754.595400001853704 ], [ 362956.563500002026558, 254744.034800000488758 ], [ 362954.241700001060963, 254732.616799999028444 ], [ 362951.07940000295639, 254725.202599998563528 ], [ 362944.706200003623962, 254716.073399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504042900", "MAP": "F9-164-T57", "PARCEL_NAM": "3-82", "ACRE": "0.22", "LONGITUDE": -64.88273097, "LATITUDE": 18.32171063, "OBJECTID_1": 37806, "PARCEL_NO_": "107504042900", "Tax_Legal_": "3-82 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "WESTON, FERNELLA", "Address": "PO Box 7562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 163000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.29904584499999, "SHAPE_Area": 771.47724017899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363930.453199997544289, 254737.790800001472235 ], [ 363907.939099997282028, 254728.75279999896884 ], [ 363906.564999997615814, 254732.389499999582767 ], [ 363896.660899996757507, 254759.117400001734495 ], [ 363918.359399996697903, 254767.738699998706579 ], [ 363929.066299997270107, 254741.439599998295307 ], [ 363930.453199997544289, 254737.790800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403012400", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-28", "ACRE": "0.64", "LONGITUDE": -64.91377559, "LATITUDE": 18.32155884, "OBJECTID_1": 33315, "PARCEL_NO_": "107403012400", "Tax_Legal_": "EST. FRENCHMAN'S BAY 17-28 FRENCHMAN'S BAY QTR.", "Name": "PRESCOD, MARIAN P.", "Address": "4604 Brightwood Rd", "City": "Olney", "State": "Maryland", "Zip": 20832, "Country": "United States", "Land_Value": 76800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.94551889, "SHAPE_Area": 2955.56214817 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360660.566799998283386, 254680.491399999707937 ], [ 360630.765600003302097, 254676.447799999266863 ], [ 360625.943899996578693, 254674.508499998599291 ], [ 360613.0304000005126, 254675.880399998277426 ], [ 360592.525499999523163, 254716.453699998557568 ], [ 360658.468699999153614, 254737.469399999827147 ], [ 360660.566799998283386, 254680.491399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043300", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-43", "ACRE": "0.15", "LONGITUDE": -64.89134959, "LATITUDE": 18.32169211, "OBJECTID_1": 37651, "PARCEL_NO_": "107503043300", "Tax_Legal_": "12B-43 ESTATE BOVONI No.1&2 FRENCHMAN'S BAY QUARTER", "Name": "PREVILUS, VITALENE & MAGDALENA BELLEVUE", "Address": "PO Box 503292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.030136089, "SHAPE_Area": 636.46875559499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362990.939699999988079, 254726.133600000292063 ], [ 362988.859200000762939, 254739.232900001108646 ], [ 362988.771099999547005, 254749.575800001621246 ], [ 363013.745200000703335, 254752.313299998641014 ], [ 363014.628799997270107, 254743.243500001728535 ], [ 363015.584399998188019, 254725.730599999427795 ], [ 362990.939699999988079, 254726.133600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504072400", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.88956512, "LATITUDE": 18.32165536, "OBJECTID_1": 37883, "PARCEL_NO_": "107504072400", "Tax_Legal_": "ESTATE BOVONI 12B-66 WESTERN PART", "Name": "JIMMY DURAND and GABRIELLE DURAND", "Address": "PO Box 10737", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013737, "Country": "United States", "Land_Value": 16200, "Improved_V": 234400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.837709062100004, "SHAPE_Area": 512.40972679100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363208.244499996304512, 254733.006900001317263 ], [ 363193.021700002253056, 254721.483300000429153 ], [ 363187.341499999165535, 254725.658700000494719 ], [ 363185.718099996447563, 254726.911899998784065 ], [ 363175.99379999935627, 254732.531899999827147 ], [ 363186.297799997031689, 254753.514499999582767 ], [ 363208.244499996304512, 254733.006900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504042800", "MAP": "F9-2698-T70", "PARCEL_NAM": "3-81", "ACRE": "0.22", "LONGITUDE": -64.88297974, "LATITUDE": 18.32161405, "OBJECTID_1": 37805, "PARCEL_NO_": "107504042800", "Tax_Legal_": "3-81 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "GARVEY, MYRTLE & JAVAN", "Address": "PO Box 306154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27700, "Improved_V": 201300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.527495108, "SHAPE_Area": 709.83441657000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363879.596500001847744, 254716.260299999266863 ], [ 363880.104099996387959, 254719.281199999153614 ], [ 363874.499499998986721, 254751.752999998629093 ], [ 363890.215800002217293, 254758.43129999935627 ], [ 363902.583800002932549, 254726.446299999952316 ], [ 363879.596500001847744, 254716.260299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403010700", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-15", "ACRE": "0.59", "LONGITUDE": -64.91003889, "LATITUDE": 18.32145699, "OBJECTID_1": 33298, "PARCEL_NO_": "107403010700", "Tax_Legal_": "FRENCHMAN BAY 17-15 FRENCHMAN BAY QTR.", "Name": "GUMBS, E. AMBROSE & PHILLIS", "Address": "PO Box 10631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72500, "Improved_V": 361700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.56507567099999, "SHAPE_Area": 2739.82599729 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361005.864600002765656, 254660.308299999684095 ], [ 361008.523400001227856, 254726.824499998241663 ], [ 361013.352300003170967, 254727.91950000077486 ], [ 361033.468699999153614, 254732.939300000667572 ], [ 361038.308399997651577, 254732.767799999564886 ], [ 361048.806599996984005, 254730.953899998217821 ], [ 361043.755900003015995, 254661.2516999989748 ], [ 361022.800700001418591, 254660.024700000882149 ], [ 361005.864600002765656, 254660.308299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503015900", "MAP": "D9-4151-T87", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89801134, "LATITUDE": 18.32155142, "OBJECTID_1": 37571, "PARCEL_NO_": "107503015900", "Tax_Legal_": "61-30 BOLONGO BAY FRENCHMAN BAY QTR.", "Name": "RIVERA, RAUL F. SR. & CAROL J.", "Address": "7106 Estate Bolongo Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.17756411299999, "SHAPE_Area": 2135.5067148100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362326.930600002408028, 254727.482500001788139 ], [ 362322.328299999237061, 254699.791600000113249 ], [ 362319.131800003349781, 254696.387899998575449 ], [ 362315.111000001430511, 254695.088500000536442 ], [ 362298.991999998688698, 254694.112199999392033 ], [ 362286.105400003492832, 254692.317999999970198 ], [ 362263.215700000524521, 254728.86089999973774 ], [ 362308.252300001680851, 254742.950599998235703 ], [ 362310.705399997532368, 254738.959899999201298 ], [ 362315.586499996483326, 254733.933600001037121 ], [ 362320.449500001966953, 254731.018100000917912 ], [ 362326.930600002408028, 254727.482500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404034300", "MAP": "D9-1834-T81", "PARCEL_NAM": "26-7", "ACRE": ".591", "LONGITUDE": -64.9007292, "LATITUDE": 18.32134642, "OBJECTID_1": 37428, "PARCEL_NO_": "107404034300", "Tax_Legal_": "BOLONGO ESTATE 26-7 No.3 FRENCHMAN'S BAY QTR.", "Name": "ESPRIT, FITZROY & EBONIQUE D.", "Address": "PO Box 304286", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53400, "Improved_V": 178800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.02675037700001, "SHAPE_Area": 2518.7290787500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362030.373000003397465, 254705.634700000286102 ], [ 362021.607900001108646, 254693.319600000977516 ], [ 362043.831500001251698, 254640.305900000035763 ], [ 362024.39190000295639, 254650.49040000140667 ], [ 362003.305500000715256, 254664.672100000083447 ], [ 361984.298100002110004, 254718.767599999904633 ], [ 361998.635499998927116, 254739.57209999859333 ], [ 362018.97860000282526, 254717.995999999344349 ], [ 362030.373000003397465, 254705.634700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403010500", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-16", "ACRE": "0.62", "LONGITUDE": -64.90968768, "LATITUDE": 18.32145178, "OBJECTID_1": 33296, "PARCEL_NO_": "107403010500", "Tax_Legal_": "FRENCHMAN'S BAY 17-16 No.4 FRENCHMAN'S BAY QTR.", "Name": "GUMBS, EDWARD A. & PHILLIS B", "Address": "PO Box 10631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.66867789899999, "SHAPE_Area": 2298.6499813700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361048.806599996984005, 254730.953899998217821 ], [ 361065.766199998557568, 254727.926300000399351 ], [ 361070.622000001370907, 254725.855099998414516 ], [ 361077.112099997699261, 254721.26410000026226 ], [ 361083.623700000345707, 254714.140299998223782 ], [ 361085.256099998950958, 254711.831599999219179 ], [ 361086.076800003647804, 254710.149500001221895 ], [ 361086.922700002789497, 254705.51240000128746 ], [ 361087.804499998688698, 254696.6537000015378 ], [ 361084.674599997699261, 254685.440099999308586 ], [ 361083.906099997460842, 254681.000900000333786 ], [ 361083.114100001752377, 254679.305599998682737 ], [ 361077.532899998128414, 254671.871700000017881 ], [ 361072.727399997413158, 254668.032699998468161 ], [ 361062.277699999511242, 254664.14750000089407 ], [ 361043.755900003015995, 254661.2516999989748 ], [ 361048.806599996984005, 254730.953899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404036200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89950513, "LATITUDE": 18.32151232, "OBJECTID_1": 37445, "PARCEL_NO_": "107404036200", "Tax_Legal_": "61-29 BOLONGO NO 3 FRENCHMANS BAY QTR", "Name": "DENISHA J. ROGERS & MILLARD J. ROGERS", "Address": "6159 Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62200, "Improved_V": 154400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.44674302499999, "SHAPE_Area": 2365.6297126 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362172.975299999117851, 254720.311900001019239 ], [ 362156.447300001978874, 254672.680500000715256 ], [ 362153.205899998545647, 254674.553800001740456 ], [ 362149.12389999628067, 254680.431099999696016 ], [ 362136.924999997019768, 254692.574599999934435 ], [ 362106.099899999797344, 254714.065000001341105 ], [ 362101.211599998176098, 254719.935600001364946 ], [ 362125.233800001442432, 254739.763900000602007 ], [ 362172.975299999117851, 254720.311900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504072900", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-2", "ACRE": ".19", "LONGITUDE": -64.8902727, "LATITUDE": 18.32155497, "OBJECTID_1": 37888, "PARCEL_NO_": "107504072900", "Tax_Legal_": "BOVONI ESTATE 12B-2 1&2 FRENCHMAN'S BAY QTR", "Name": "HODGE, MARGARITA V. & CORNELUS, F", "Address": "7275 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022529, "Country": "United States", "Land_Value": 22700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.43171544, "SHAPE_Area": 846.69549474999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363132.584200002253056, 254716.766800001263618 ], [ 363134.230999998748302, 254712.769499998539686 ], [ 363106.078400000929832, 254704.517499998211861 ], [ 363101.814900003373623, 254731.713700000196695 ], [ 363108.258199997246265, 254732.610800001770258 ], [ 363106.568199999630451, 254741.6739999987185 ], [ 363119.420699998736382, 254747.478700000792742 ], [ 363125.998800002038479, 254732.544900000095367 ], [ 363132.584200002253056, 254716.766800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403011300", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-12", "ACRE": "0.63", "LONGITUDE": -64.91102931, "LATITUDE": 18.32142027, "OBJECTID_1": 33304, "PARCEL_NO_": "107403011300", "Tax_Legal_": "FRENCHMAN'S BAY 17-12 FRENCHMAN'S BAY QTR.", "Name": "FARMER, LAURA E", "Address": "Po Box 369", "City": "Folly Beach", "State": "South Carolina", "Zip": 29439, "Country": "United States", "Land_Value": 75900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.42203405500001, "SHAPE_Area": 2753.1072623800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360942.387800000607967, 254728.394099999219179 ], [ 360938.99099999666214, 254653.850299999117851 ], [ 360932.544100001454353, 254653.375399999320507 ], [ 360922.875500001013279, 254652.451799999922514 ], [ 360901.873599998652935, 254656.712900001555681 ], [ 360905.310000002384186, 254726.613000001758337 ], [ 360926.256099998950958, 254728.895399998873472 ], [ 360942.387800000607967, 254728.394099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403011100", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-13", "ACRE": "0.57", "LONGITUDE": -64.91069933, "LATITUDE": 18.3214219, "OBJECTID_1": 33302, "PARCEL_NO_": "107403011100", "Tax_Legal_": "FRENCHMAN BAY 17-13 FRENCHMAN BAY QTR.", "Name": "RODRIQUEZ, MICHAEL", "Address": "PO Box 9481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.46279727000001, "SHAPE_Area": 2360.60693429 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360938.99099999666214, 254653.850299999117851 ], [ 360942.387800000607967, 254728.394099999219179 ], [ 360957.722099997103214, 254726.830899998545647 ], [ 360976.297899998724461, 254723.394299998879433 ], [ 360972.813000001013279, 254659.193399999290705 ], [ 360938.99099999666214, 254653.850299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403011500", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-11", "ACRE": "0.53", "LONGITUDE": -64.91135806, "LATITUDE": 18.3214253, "OBJECTID_1": 33306, "PARCEL_NO_": "107403011500", "Tax_Legal_": "FRENCHAMN BAY 17-11 FRENCHMAN BAY QTR.", "Name": "FAHIE, THEODORE & B. ANELLA", "Address": "PO Box 10217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.70737110600001, "SHAPE_Area": 2150.0589247900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360901.873599998652935, 254656.712900001555681 ], [ 360891.373599998652935, 254658.737900000065565 ], [ 360872.833800002932549, 254657.952899999916553 ], [ 360869.522200003266335, 254668.058299999684095 ], [ 360871.520400002598763, 254717.470499999821186 ], [ 360877.969099998474121, 254717.734400000423193 ], [ 360877.938500002026558, 254721.322700001299381 ], [ 360882.751199997961521, 254724.317400000989437 ], [ 360905.310000002384186, 254726.613000001758337 ], [ 360901.873599998652935, 254656.712900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504071000", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-56", "ACRE": ".14", "LONGITUDE": -64.89090129, "LATITUDE": 18.32159868, "OBJECTID_1": 37869, "PARCEL_NO_": "107504071000", "Tax_Legal_": "12B-56 ESTATE BOVONI WESTERN PART", "Name": "SPRAUVE, JOSEPH A", "Address": "PO Box 8555", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.229203948800006, "SHAPE_Area": 394.20047479099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363064.79280000180006, 254723.38910000026226 ], [ 363044.706900000572205, 254714.780999999493361 ], [ 363038.879299998283386, 254736.264800000935793 ], [ 363047.6858000010252, 254743.72520000115037 ], [ 363064.79280000180006, 254723.38910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403010900", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-14", "ACRE": "0.52", "LONGITUDE": -64.91037977000001, "LATITUDE": 18.32142513, "OBJECTID_1": 33300, "PARCEL_NO_": "107403010900", "Tax_Legal_": "FRENCHMAN BAY 17-14 FRENCHMANS BAY QTR.", "Name": "LAKE, TIMOTHY L. & ROBIN", "Address": "14101 Schaeffer Rd", "City": "Boyds", "State": "Maryland", "Zip": 20841, "Country": "United States", "Land_Value": 66500, "Improved_V": 239800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.631754935, "SHAPE_Area": 2080.8689709800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360972.813000001013279, 254659.193399999290705 ], [ 360976.297899998724461, 254723.394299998879433 ], [ 360979.523100003600121, 254723.420699998736382 ], [ 360990.008799999952316, 254723.084399998188019 ], [ 361008.523400001227856, 254726.824499998241663 ], [ 361005.864600002765656, 254660.308299999684095 ], [ 360980.865299999713898, 254660.525800000876188 ], [ 360972.813000001013279, 254659.193399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404036100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8989928, "LATITUDE": 18.32140754, "OBJECTID_1": 37444, "PARCEL_NO_": "107404036100", "Tax_Legal_": "BOLONGO 61-28 FRENCHMAN BAY QTR.", "Name": "FRANCIS, ROBERT", "Address": "12A Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80100, "Improved_V": 211500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.106757644, "SHAPE_Area": 3185.4319610900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362172.975299999117851, 254720.311900001019239 ], [ 362218.805600002408028, 254735.88569999858737 ], [ 362233.488300003111362, 254716.163100000470877 ], [ 362230.273800000548363, 254714.870200000703335 ], [ 362227.089900001883507, 254709.989000000059605 ], [ 362201.681699998676777, 254663.551500000059605 ], [ 362197.621399998664856, 254666.895799998193979 ], [ 362192.767300002276897, 254668.755899999290705 ], [ 362187.105099998414516, 254670.820500001311302 ], [ 362183.064599998295307, 254671.8429000005126 ], [ 362176.606899999082088, 254672.634399998933077 ], [ 362163.714900001883507, 254671.473499998450279 ], [ 362156.447300001978874, 254672.680500000715256 ], [ 362172.975299999117851, 254720.311900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503042600", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-20", "ACRE": ".16", "LONGITUDE": -64.89159745000001, "LATITUDE": 18.32157857, "OBJECTID_1": 37643, "PARCEL_NO_": "107503042600", "Tax_Legal_": "12B-20 ESTATE BOVONI WESTERN PART", "Name": "SAMUEL, BEVERLY", "Address": "PO Box 1554", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23900, "Improved_V": 181600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.493449592, "SHAPE_Area": 773.50842546399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362989.777000002563, 254726.15260000154376 ], [ 362985.930600002408028, 254704.378499999642372 ], [ 362959.176700003445148, 254721.258099999278784 ], [ 362960.756899997591972, 254725.070700000971556 ], [ 362963.098499998450279, 254734.166900001466274 ], [ 362963.87610000371933, 254737.550799999386072 ], [ 362964.64639999717474, 254741.778999999165535 ], [ 362988.859200000762939, 254739.232900001108646 ], [ 362989.777000002563, 254726.15260000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504071100", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-4", "ACRE": "0.15", "LONGITUDE": -64.89056111, "LATITUDE": 18.32156557, "OBJECTID_1": 37870, "PARCEL_NO_": "107504071100", "Tax_Legal_": "12B-4 ESTATE BOVONI WESTERN PART", "Name": "EUNICE C. REID & PAULA A. DUKE", "Address": "PO Box 302461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.27561373, "SHAPE_Area": 556.15234743300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363098.076399996876717, 254697.27479999884963 ], [ 363076.892899997532368, 254722.854800000786781 ], [ 363071.104900002479553, 254739.695000000298023 ], [ 363092.050999999046326, 254741.977299999445677 ], [ 363092.121100001037121, 254733.745299998670816 ], [ 363098.076399996876717, 254697.27479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403011700", "MAP": "D9-3479-T86", "PARCEL_NAM": "17-10", "ACRE": "0.52", "LONGITUDE": -64.91167348, "LATITUDE": 18.32141295, "OBJECTID_1": 33308, "PARCEL_NO_": "107403011700", "Tax_Legal_": "ESTATE FRENCHMAN BAY 17-10 FRENCHMANS BAY QTR", "Name": "THOMPSON, DESTIN B 7 BARBARA C", "Address": "PO Box 305078", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.71312280399999, "SHAPE_Area": 2198.7394573800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360839.818099997937679, 254652.616399999707937 ], [ 360836.800399996340275, 254722.885899998247623 ], [ 360865.825900003314018, 254723.334499999880791 ], [ 360869.060099996626377, 254722.305500000715256 ], [ 360871.520400002598763, 254717.470499999821186 ], [ 360869.522200003266335, 254668.058299999684095 ], [ 360872.833800002932549, 254657.952899999916553 ], [ 360839.818099997937679, 254652.616399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90825893, "LATITUDE": 18.32152279, "OBJECTID_1": 37169, "PARCEL_NO_": "107403021400", "Tax_Legal_": "FRENCHMAN BAY 14-33F FRENCHMAN BAY QTR", "Name": "THOMAS HILARION AND EUPHEMIA CASSILDA WEBSTER TRUS", "Address": "PO Box 1346", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42800, "Improved_V": 290400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.99538712, "SHAPE_Area": 1457.9090200200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361221.011500000953674, 254678.323300000280142 ], [ 361196.672899998724461, 254695.644900001585484 ], [ 361192.5945999994874, 254701.100000001490116 ], [ 361187.717200003564358, 254705.704100001603365 ], [ 361206.895999997854233, 254726.125999998301268 ], [ 361228.691600002348423, 254723.34910000115633 ], [ 361239.337300002574921, 254704.226700000464916 ], [ 361221.011500000953674, 254678.323300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91198924, "LATITUDE": 18.32137697, "OBJECTID_1": 33310, "PARCEL_NO_": "107403011900", "Tax_Legal_": "FRENCHMAN'S BAY 17-9 FRENCHMAN'S BAY QTR", "Name": "McLEISH, SOBERS J", "Address": "PO Box 600117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74200, "Improved_V": 267400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.65919466599999, "SHAPE_Area": 2391.408329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360819.654899999499321, 254653.084699999541044 ], [ 360801.923299998044968, 254652.095199998468161 ], [ 360802.254900000989437, 254707.82660000026226 ], [ 360821.480499997735023, 254722.760499998927116 ], [ 360836.800399996340275, 254722.885899998247623 ], [ 360839.818099997937679, 254652.616399999707937 ], [ 360819.654899999499321, 254653.084699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404036000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9001207, "LATITUDE": 18.32138681, "OBJECTID_1": 37443, "PARCEL_NO_": "107404036000", "Tax_Legal_": "BOLONGO 26-12 FRENCHMAN BAY QTR.", "Name": "GRIFFITH, ROSALIE J", "Address": "7217 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.33163804399999, "SHAPE_Area": 2224.2705864700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362107.784400001168251, 254705.635000001639128 ], [ 362071.877999998629093, 254661.011500000953674 ], [ 362041.767499998211861, 254693.273499999195337 ], [ 362086.586499996483326, 254732.9037000015378 ], [ 362093.965599998831749, 254718.609700001776218 ], [ 362101.288999997079372, 254710.859200000762939 ], [ 362105.351099997758865, 254707.303899999707937 ], [ 362107.784400001168251, 254705.635000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504073000", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-63", "ACRE": ".17", "LONGITUDE": -64.88998528, "LATITUDE": 18.32157246, "OBJECTID_1": 37889, "PARCEL_NO_": "107504073000", "Tax_Legal_": "12B-63 ESTATE BOVONI No.1&2 FRENCHMAN'S BAY QTR.", "Name": "ISAAC, MASDEM", "Address": "4001 New Hernhut St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.618986757, "SHAPE_Area": 690.86985173200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363169.598999999463558, 254725.935600001364946 ], [ 363159.203299999237061, 254715.718100000172853 ], [ 363132.584200002253056, 254716.766800001263618 ], [ 363125.998800002038479, 254732.544900000095367 ], [ 363150.127099998295307, 254739.91950000077486 ], [ 363159.874700002372265, 254731.555599998682737 ], [ 363169.598999999463558, 254725.935600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90752172000001, "LATITUDE": 18.32146298, "OBJECTID_1": 37165, "PARCEL_NO_": "107403021000", "Tax_Legal_": "FRENCHMAN'S BAY 14-33L FRENCHMAN'S BAY QTR", "Name": "SHERN JOSEPH", "Address": "PO Box 9662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012662, "Country": "United States", "Land_Value": 42800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.65886954000001, "SHAPE_Area": 1186.9410982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361304.522799998521805, 254719.536800000816584 ], [ 361306.518399998545647, 254674.590199999511242 ], [ 361283.923699997365475, 254676.516199998557568 ], [ 361281.497599996626377, 254677.340700000524521 ], [ 361279.055200003087521, 254680.065000001341105 ], [ 361281.913699999451637, 254723.151399999856949 ], [ 361304.488600000739098, 254723.5472999997437 ], [ 361304.522799998521805, 254719.536800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503042200", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-35", "ACRE": ".14", "LONGITUDE": -64.89232549, "LATITUDE": 18.32153355, "OBJECTID_1": 37639, "PARCEL_NO_": "107503042200", "Tax_Legal_": "12B-35 ESTATE BOVONI WESTERN PART", "Name": "CHARLESWELL, CAMISHA N.", "Address": "PO BOX 304831", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21500, "Improved_V": 478100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.42224692400001, "SHAPE_Area": 726.70230346699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362884.056500002741814, 254736.264199998229742 ], [ 362912.275700002908707, 254736.706300001591444 ], [ 362912.291900001466274, 254734.806600000709295 ], [ 362910.756599999964237, 254725.717000000178814 ], [ 362909.205099999904633, 254718.527100000530481 ], [ 362902.945200003683567, 254696.099899999797344 ], [ 362902.972199998795986, 254692.933800000697374 ], [ 362898.951399996876717, 254691.634300000965595 ], [ 362884.056500002741814, 254736.264199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503032500", "MAP": "D9-6186-T97", "PARCEL_NAM": "61-61", "ACRE": null, "LONGITUDE": -64.89602373, "LATITUDE": 18.3214359, "OBJECTID_1": 37615, "PARCEL_NO_": "107503032500", "Tax_Legal_": "61-61 ESTATE BOLONGO FRENCHMAN'S BAY QTR.", "Name": "ANDREW, CECILIA", "Address": "PO Box 11231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38300, "Improved_V": 133200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.942678527, "SHAPE_Area": 1830.75202838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362536.641999997198582, 254720.966299999505281 ], [ 362518.456399999558926, 254678.598700001835823 ], [ 362490.959100000560284, 254688.083999998867512 ], [ 362479.636500000953674, 254692.002099998295307 ], [ 362499.445500001311302, 254733.116399999707937 ], [ 362520.468999996781349, 254726.322299998253584 ], [ 362536.641999997198582, 254720.966299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403012500", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-29", "ACRE": "0.63", "LONGITUDE": -64.91425038, "LATITUDE": 18.32130336, "OBJECTID_1": 33316, "PARCEL_NO_": "107403012500", "Tax_Legal_": "FRENCHMAN'S BAY 17-29 FRENCHMAN'S BAY QTR.", "Name": "SINGH, RENU & MOKSHINDER", "Address": "24255 Dry Canyon Cold Creek Rd", "City": "Calabasas", "State": "California", "Zip": 91302, "Country": "United States", "Land_Value": 75900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.81801723500001, "SHAPE_Area": 3035.7361314899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360625.943899996578693, 254674.508499998599291 ], [ 360621.930399999022484, 254672.364700000733137 ], [ 360619.525799997150898, 254670.656199999153614 ], [ 360611.516599997878075, 254664.25789999961853 ], [ 360603.568599998950958, 254650.682799998670816 ], [ 360601.203599996864796, 254644.330699998885393 ], [ 360533.307899996638298, 254663.195599999278784 ], [ 360592.525499999523163, 254716.453699998557568 ], [ 360613.0304000005126, 254675.880399998277426 ], [ 360625.943899996578693, 254674.508499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504070400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89104532, "LATITUDE": 18.32146659, "OBJECTID_1": 37863, "PARCEL_NO_": "107504070400", "Tax_Legal_": "12B-54 ESTATE BOVONI WEESTERN PART", "Name": "TOUSSAINT, JAMES", "Address": "77 Winding Wood Dr", "City": "Sayreville", "State": "New Jersey", "Zip": 8872, "Country": "United States", "Land_Value": 17400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.18237718, "SHAPE_Area": 683.97807438500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363023.649300001561642, 254725.585499998182058 ], [ 363038.879299998283386, 254736.264800000935793 ], [ 363044.706900000572205, 254714.780999999493361 ], [ 363048.040100000798702, 254702.142599999904633 ], [ 363047.273299999535084, 254697.492300000041723 ], [ 363023.065999999642372, 254699.405099999159575 ], [ 363023.838100001215935, 254703.422200001776218 ], [ 363023.649300001561642, 254725.585499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043100", "MAP": "F9-147-T57", "PARCEL_NAM": "3-79", "ACRE": "0.22", "LONGITUDE": -64.8826228, "LATITUDE": 18.32143344, "OBJECTID_1": 37808, "PARCEL_NO_": "107504043100", "Tax_Legal_": "3-79 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "NORMAN, RALPH LEROY", "Address": "2804 Pintail Ct", "City": "Hephzibah", "State": "Georgia", "Zip": 30815, "Country": "United States", "Land_Value": 28500, "Improved_V": 123500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.29034304, "SHAPE_Area": 810.00994714000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363907.939099997282028, 254728.75279999896884 ], [ 363930.453199997544289, 254737.790800001472235 ], [ 363942.263999998569489, 254706.717199999839067 ], [ 363919.764499999582767, 254697.456000000238419 ], [ 363907.939099997282028, 254728.75279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90720395, "LATITUDE": 18.3214447, "OBJECTID_1": 37306, "PARCEL_NO_": "107404011800", "Tax_Legal_": "FRENCHMAN'S BAY 7B FRENCHMAN'S BAY", "Name": "DOUMENG, RICHARD K. & INGRID K.", "Address": "7150 Bolongo Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63400, "Improved_V": 278800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.153922626, "SHAPE_Area": 1852.7066639300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361352.134800001978874, 254715.282400000840425 ], [ 361352.226499997079372, 254704.517400000244379 ], [ 361350.678599998354912, 254696.9054000005126 ], [ 361345.937799997627735, 254685.467500001192093 ], [ 361340.354800000786781, 254678.244600001722574 ], [ 361333.940200001001358, 254673.970300000160933 ], [ 361329.111400000751019, 254672.875300001353025 ], [ 361306.518399998545647, 254674.590199999511242 ], [ 361304.522799998521805, 254719.536800000816584 ], [ 361352.134800001978874, 254715.282400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504072500", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.8893751, "LATITUDE": 18.32146191, "OBJECTID_1": 37884, "PARCEL_NO_": "107504072500", "Tax_Legal_": "ESTATE BOVONI 12B-65 1&2 FRENCHMAN'S BAY QTR.", "Name": "MORLA, RAMON & BERNARDA", "Address": "6143 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 266900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.73334762899999, "SHAPE_Area": 705.50852283699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363209.320500001311302, 254701.351700000464916 ], [ 363195.645599998533726, 254697.440099999308586 ], [ 363198.84570000320673, 254700.421599999070168 ], [ 363201.216099999845028, 254706.140500001609325 ], [ 363200.364799998700619, 254711.410900000482798 ], [ 363197.89190000295639, 254717.723400000482798 ], [ 363193.021700002253056, 254721.483300000429153 ], [ 363208.244499996304512, 254733.006900001317263 ], [ 363234.2550999969244, 254708.732900001108646 ], [ 363209.320500001311302, 254701.351700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90681929, "LATITUDE": 18.32132673, "OBJECTID_1": 37307, "PARCEL_NO_": "107404011900", "Tax_Legal_": "FRENCHMAN'S BAY 7A FRENCHMAN'S BAY QTR. 2", "Name": "NAZARIO, JOSE & WILSON, SHIRLEY", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 36100, "Improved_V": 164300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.45137471300001, "SHAPE_Area": 1672.46028677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361381.2195999994874, 254708.765500001609325 ], [ 361383.245800003409386, 254660.230500001460314 ], [ 361369.561800003051758, 254657.374299999326468 ], [ 361351.025600001215935, 254656.167100001126528 ], [ 361348.412500001490116, 254678.943900000303984 ], [ 361352.38289999961853, 254686.153499998152256 ], [ 361353.981200002133846, 254687.855399999767542 ], [ 361356.342600002884865, 254694.629700001329184 ], [ 361358.653599999845028, 254707.3141999989748 ], [ 361358.590700000524521, 254714.701999999582767 ], [ 361381.14580000191927, 254717.419700000435114 ], [ 361381.2195999994874, 254708.765500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403025800", "MAP": "A9-277-T80", "PARCEL_NAM": "15-77", "ACRE": "0.58", "LONGITUDE": -64.90879757, "LATITUDE": 18.3213363, "OBJECTID_1": 37206, "PARCEL_NO_": "107403025800", "Tax_Legal_": "FRENCHMAN'S BAY 15-77 FRENCHMAN'S BAY QTR.", "Name": "LEVI SYLVESTER LIBURD", "Address": "PO Box 493", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 60000, "Improved_V": 426500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.23735097900001, "SHAPE_Area": 2269.4259001800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361178.777400001883507, 254668.187600001692772 ], [ 361132.210600003600121, 254650.725000001490116 ], [ 361127.693300001323223, 254652.439399998635054 ], [ 361132.455600000917912, 254661.344300001859665 ], [ 361134.820600003004074, 254667.69649999961257 ], [ 361142.569099999964237, 254704.701299998909235 ], [ 361148.161100000143051, 254710.86879999935627 ], [ 361154.581000000238419, 254714.509899999946356 ], [ 361157.799099996685982, 254715.38060000166297 ], [ 361163.452299997210503, 254714.371399998664856 ], [ 361178.876500003039837, 254702.254200000315905 ], [ 361182.130500003695488, 254698.903400000184774 ], [ 361185.400700002908707, 254693.652800001204014 ], [ 361188.685300000011921, 254686.713599998503923 ], [ 361182.322899997234344, 254676.317899998277426 ], [ 361178.777400001883507, 254668.187600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503016000", "MAP": "D9-2330-T83", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89735943, "LATITUDE": 18.32136882, "OBJECTID_1": 37572, "PARCEL_NO_": "107503016000", "Tax_Legal_": "BOLONGO 61-22 FRENCHMAN BAY QTR.", "Name": "ROBESON, SCOTT E", "Address": "230 Lille Ln", "City": "Newport Beach", "State": "California", "Zip": 92663, "Country": "United States", "Land_Value": 62900, "Improved_V": 257900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.339630736, "SHAPE_Area": 2332.6062945399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362407.149300001561642, 254681.909600000828505 ], [ 362374.180399999022484, 254671.085099998861551 ], [ 362365.266000002622604, 254676.289500001817942 ], [ 362364.411200001835823, 254681.98200000077486 ], [ 362365.986000001430511, 254686.427799999713898 ], [ 362357.894100002944469, 254689.739100001752377 ], [ 362355.518399998545647, 254684.653400000184774 ], [ 362350.687700003385544, 254683.769499998539686 ], [ 362336.107500001788139, 254691.46059999987483 ], [ 362332.824699997901917, 254698.188799999654293 ], [ 362331.154600001871586, 254704.930100001394749 ], [ 362334.236000001430511, 254721.842799998819828 ], [ 362338.256700001657009, 254723.142299998551607 ], [ 362362.51799999922514, 254714.897100001573563 ], [ 362381.075800001621246, 254713.571299999952316 ], [ 362389.16950000077486, 254710.0489999987185 ], [ 362390.79110000282526, 254709.006799999624491 ], [ 362394.039700001478195, 254706.289099998772144 ], [ 362397.313500002026558, 254700.616399999707937 ], [ 362399.754100002348423, 254698.103300001472235 ], [ 362403.042199999094009, 254690.741900000721216 ], [ 362404.669299997389317, 254689.066500000655651 ], [ 362407.149300001561642, 254681.909600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503041100", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-24", "ACRE": ".14", "LONGITUDE": -64.89207062, "LATITUDE": 18.32145484, "OBJECTID_1": 37628, "PARCEL_NO_": "107503041100", "Tax_Legal_": "12B-24 ESTATE BOVONI FRENCHMAN'S BAY QTR.", "Name": "JAMES, WORDSWWORTH", "Address": "PO Box 11741", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18900, "Improved_V": 113100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.363406625600007, "SHAPE_Area": 462.70962190099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362920.428700000047684, 254726.218299999833107 ], [ 362932.568400003015995, 254721.040300000458956 ], [ 362944.706200003623962, 254716.073399998247623 ], [ 362927.093199998140335, 254701.152699999511242 ], [ 362919.865199998021126, 254697.716099999845028 ], [ 362913.423600003123283, 254696.607900001108646 ], [ 362920.428700000047684, 254726.218299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043400", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-44", "ACRE": "0.19", "LONGITUDE": -64.89135679, "LATITUDE": 18.32145476, "OBJECTID_1": 37652, "PARCEL_NO_": "107503043400", "Tax_Legal_": "BOVONI ESTATE 12B-44 1&2 FRENCHMAN'S BAY QTR.", "Name": "HERCULES, VERNA I. & CORNELIUS, G", "Address": "PO Box 502224", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 22700, "Improved_V": 117000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.790311424, "SHAPE_Area": 728.74345585900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363011.822499997913837, 254694.035700000822544 ], [ 362985.930600002408028, 254704.378499999642372 ], [ 362989.777000002563, 254726.15260000154376 ], [ 363015.584399998188019, 254725.730599999427795 ], [ 363015.609499998390675, 254722.775499999523163 ], [ 363014.142599999904633, 254705.664900001138449 ], [ 363013.368600003421307, 254701.858899999409914 ], [ 363011.822499997913837, 254694.035700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403012100", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-8", "ACRE": "0.64", "LONGITUDE": -64.91240283, "LATITUDE": 18.32133906, "OBJECTID_1": 33312, "PARCEL_NO_": "107403012100", "Tax_Legal_": "FRENCHMANS BAY 17-8 FRENCHMANS BAY QTR.", "Name": "LAKE, GEORGE A. & BERENICE & GEORGE M. & GLENDA L.", "Address": "PO Box 10783", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 100700, "Improved_V": 996800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.130775793, "SHAPE_Area": 2740.9362498300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360801.923299998044968, 254652.095199998468161 ], [ 360791.446599997580051, 254651.376200001686811 ], [ 360774.503200002014637, 254652.504000000655651 ], [ 360762.369000002741814, 254657.048799999058247 ], [ 360757.513099998235703, 254659.120000001043081 ], [ 360745.359099999070168, 254665.986600000411272 ], [ 360754.104500003159046, 254680.623599998652935 ], [ 360749.036399997770786, 254707.602099999785423 ], [ 360802.254900000989437, 254707.82660000026226 ], [ 360801.923299998044968, 254652.095199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503032400", "MAP": "D9-6186-T97", "PARCEL_NAM": "61-60", "ACRE": null, "LONGITUDE": -64.89564169000001, "LATITUDE": 18.32133195, "OBJECTID_1": 37614, "PARCEL_NO_": "107503032400", "Tax_Legal_": "61-60 ESTATE BOLONGO FRENCHMAN'S BAY QTR.", "Name": "WENINGER, MARK & DIANE", "Address": "5620 Linger Longer Rd", "City": "CUMMING", "State": "Georgia", "Zip": 30041, "Country": "United States", "Land_Value": 32900, "Improved_V": 122600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.80320906, "SHAPE_Area": 1878.83493914 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362573.289300002157688, 254678.625300001353025 ], [ 362564.412600003182888, 254679.396999999880791 ], [ 362562.836000002920628, 254675.162300001829863 ], [ 362558.008900001645088, 254673.856199998408556 ], [ 362537.834899999201298, 254675.590900000184774 ], [ 362518.456399999558926, 254678.598700001835823 ], [ 362536.641999997198582, 254720.966299999505281 ], [ 362576.262800000607967, 254708.2027000002563 ], [ 362573.960699997842312, 254694.462799999862909 ], [ 362573.289300002157688, 254678.625300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504072600", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-62", "ACRE": ".15", "LONGITUDE": -64.88972767, "LATITUDE": 18.32143255, "OBJECTID_1": 37885, "PARCEL_NO_": "107504072600", "Tax_Legal_": "ESTATE BOVONI 12B-62 1&2 FRENCHMAN'S BAY QTR.", "Name": "JACKSON, ERROL & AVALEEN", "Address": "7058 Estate Tutu Mahogany Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19500, "Improved_V": 167800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.570523194499998, "SHAPE_Area": 545.94071178000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363165.810199998319149, 254697.407000001519918 ], [ 363159.203299999237061, 254715.718100000172853 ], [ 363169.598999999463558, 254725.935600001364946 ], [ 363180.945000000298023, 254719.273499999195337 ], [ 363190.681900002062321, 254712.175999999046326 ], [ 363191.540299996733665, 254706.061299998313189 ], [ 363165.810199998319149, 254697.407000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504070900", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-57", "ACRE": ".15", "LONGITUDE": -64.89079497, "LATITUDE": 18.32142989, "OBJECTID_1": 37868, "PARCEL_NO_": "107504070900", "Tax_Legal_": "12B-57 ESTATE BOVONI WESTERN PART", "Name": "SPRAUVE, JOSEPH A", "Address": "PO Box 8555", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.353210025899998, "SHAPE_Area": 519.643880911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363077.018799997866154, 254708.079300001263618 ], [ 363076.284400001168251, 254699.629599999636412 ], [ 363048.040100000798702, 254702.142599999904633 ], [ 363044.706900000572205, 254714.780999999493361 ], [ 363064.79280000180006, 254723.38910000026226 ], [ 363077.018799997866154, 254708.079300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90650826, "LATITUDE": 18.32137589, "OBJECTID_1": 37309, "PARCEL_NO_": "107404012100", "Tax_Legal_": "FRENCHMAN'S BAY 14-1 FRENCHMAN'S BAY", "Name": "LEE, MSHIRLENE & STEDWART", "Address": "PO Box 8023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55700, "Improved_V": 155600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.867577337, "SHAPE_Area": 1496.2914498499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361381.2195999994874, 254708.765500001609325 ], [ 361427.994699999690056, 254708.092799998819828 ], [ 361423.288099996745586, 254692.644499998539686 ], [ 361413.720200002193451, 254679.900600001215935 ], [ 361394.489200003445148, 254665.599899999797344 ], [ 361383.245800003409386, 254660.230500001460314 ], [ 361381.2195999994874, 254708.765500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503042500", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-21", "ACRE": ".16", "LONGITUDE": -64.89171135, "LATITUDE": 18.32137756, "OBJECTID_1": 37642, "PARCEL_NO_": "107503042500", "Tax_Legal_": "12B-21 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "STAPLETON, DELTON T", "Address": "PO Box 502202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.408776491, "SHAPE_Area": 726.69975715099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362977.131300002336502, 254696.073800001293421 ], [ 362963.506700001657009, 254686.252000000327826 ], [ 362944.005999997258186, 254703.613200001418591 ], [ 362956.010799996554852, 254714.266100000590086 ], [ 362959.176700003445148, 254721.258099999278784 ], [ 362985.930600002408028, 254704.378499999642372 ], [ 362980.336800001561642, 254698.422100000083447 ], [ 362977.131300002336502, 254696.073800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043000", "MAP": null, "PARCEL_NAM": "3-80", "ACRE": "0.22", "LONGITUDE": -64.88288067000001, "LATITUDE": 18.32129635, "OBJECTID_1": 37807, "PARCEL_NO_": "107504043000", "Tax_Legal_": "3-80 BOVONI-EASTERN SEC FRENCHMAN BAY QTR", "Name": "MORCIGLIO, JUAN A & ONELIA", "Address": "PO Box 7282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 5500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.762100097, "SHAPE_Area": 1029.3163701799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363879.484099999070168, 254715.5912000015378 ], [ 363879.596500001847744, 254716.260299999266863 ], [ 363902.583800002932549, 254726.446299999952316 ], [ 363916.618400000035763, 254688.142200000584126 ], [ 363893.318099997937679, 254678.241200000047684 ], [ 363879.484099999070168, 254715.5912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503018100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89867635, "LATITUDE": 18.32112688, "OBJECTID_1": 37589, "PARCEL_NO_": "107503018100", "Tax_Legal_": "61-12 ESTATE BOLONGO FRENCHMAN'S BAY QTR.", "Name": "SMITH, SIMON G. & IRENE V", "Address": "PO Box 10732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.270179641, "SHAPE_Area": 2512.3431932899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362260.335699997842312, 254688.307399999350309 ], [ 362224.585699997842312, 254625.320000000298023 ], [ 362218.914599999785423, 254628.440000001341105 ], [ 362213.211000002920628, 254635.359400000423193 ], [ 362204.953699998557568, 254658.089899998158216 ], [ 362201.681699998676777, 254663.551500000059605 ], [ 362227.089900001883507, 254709.989000000059605 ], [ 362249.814099997282028, 254692.865299999713898 ], [ 362260.335699997842312, 254688.307399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504072700", "MAP": "A9-506-T97", "PARCEL_NAM": "2B-61", "ACRE": ".14", "LONGITUDE": -64.88995818, "LATITUDE": 18.32137927, "OBJECTID_1": 37886, "PARCEL_NO_": "107504072700", "Tax_Legal_": "ESTATE BOVONI(WESTERN PA) 12B-61 No.1&2 FRENCHMANS BAY QTR.", "Name": "CONNOR, DENNIS R. & LINDA M.", "Address": "PO Box 304311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19000, "Improved_V": 194900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.422503064699995, "SHAPE_Area": 563.98221855099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363144.905500002205372, 254690.269799999892712 ], [ 363134.230999998748302, 254712.769499998539686 ], [ 363132.584200002253056, 254716.766800001263618 ], [ 363159.203299999237061, 254715.718100000172853 ], [ 363165.810199998319149, 254697.407000001519918 ], [ 363144.905500002205372, 254690.269799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404034200", "MAP": "D9-1834-T81", "PARCEL_NAM": "26-6", "ACRE": null, "LONGITUDE": -64.90028777000001, "LATITUDE": 18.32103119, "OBJECTID_1": 37427, "PARCEL_NO_": "107404034200", "Tax_Legal_": "BOLONGO BAY 26-6 FRENCHMAN BAY QTR.", "Name": "ALBERT, VIOLA", "Address": "BOX 4141", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54800, "Improved_V": 146200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.922940461, "SHAPE_Area": 2522.3886154699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362071.877999998629093, 254661.011500000953674 ], [ 362101.990299999713898, 254628.538499999791384 ], [ 362112.569399997591972, 254617.225999999791384 ], [ 362068.917099997401237, 254629.956500001251698 ], [ 362043.831500001251698, 254640.305900000035763 ], [ 362021.607900001108646, 254693.319600000977516 ], [ 362030.373000003397465, 254705.634700000286102 ], [ 362041.767499998211861, 254693.273499999195337 ], [ 362071.877999998629093, 254661.011500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404035600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89984497, "LATITUDE": 18.32113178, "OBJECTID_1": 37439, "PARCEL_NO_": "107404035600", "Tax_Legal_": "BOLONGO 26-13 FRENCHMANS BAY QTR.", "Name": "DE WINDT, ALCENTA", "Address": "PO BOX 12057", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.52268283699999, "SHAPE_Area": 2494.8975655499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362137.808600001037121, 254683.504900000989437 ], [ 362101.990299999713898, 254628.538499999791384 ], [ 362071.877999998629093, 254661.011500000953674 ], [ 362107.784400001168251, 254705.635000001639128 ], [ 362126.4375, 254693.122099999338388 ], [ 362132.123099997639656, 254688.313499998301268 ], [ 362137.808600001037121, 254683.504900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403038400", "MAP": "D9-1834-T81", "PARCEL_NAM": "26-5", "ACRE": null, "LONGITUDE": -64.90126149, "LATITUDE": 18.32104367, "OBJECTID_1": 37267, "PARCEL_NO_": "107403038400", "Tax_Legal_": "26-5 BOLONGO FRENCHMAN'S BAY QTR.", "Name": "HECTOR, JOSEPH & CORDELLA", "Address": "PO Box 7473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42400, "Improved_V": 365800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.496952416, "SHAPE_Area": 3136.7501834700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361990.449400000274181, 254659.289599999785423 ], [ 361953.059799998998642, 254599.455200001597404 ], [ 361946.307199999690056, 254634.863600000739098 ], [ 361943.006499998271465, 254643.702599998563528 ], [ 361935.677699998021126, 254652.086300000548363 ], [ 361934.036300003528595, 254655.450399998575449 ], [ 361933.154500000178814, 254664.309099998325109 ], [ 361931.487899996340275, 254670.628299999982119 ], [ 361924.092600002884865, 254686.821899998933077 ], [ 361918.369300000369549, 254696.063200000673532 ], [ 361919.130699999630451, 254701.346799999475479 ], [ 361922.343299999833107, 254702.850699998438358 ], [ 361925.574000000953674, 254702.243900001049042 ], [ 361971.755000002682209, 254676.657299999147654 ], [ 361992.8378000035882, 254662.897700000554323 ], [ 361990.449400000274181, 254659.289599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504072800", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-1", "ACRE": ".17", "LONGITUDE": -64.89020165, "LATITUDE": 18.32131036, "OBJECTID_1": 37887, "PARCEL_NO_": "107504072800", "Tax_Legal_": "12B-1 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "THOMAS, BRENDA", "Address": "16 Paisley Park", "City": "Boston", "State": "Massachusetts", "Zip": 2124, "Country": "United States", "Land_Value": 23100, "Improved_V": 115700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.547364952, "SHAPE_Area": 752.91359303800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363106.078400000929832, 254704.517499998211861 ], [ 363134.230999998748302, 254712.769499998539686 ], [ 363144.905500002205372, 254690.269799999892712 ], [ 363139.277500003576279, 254688.323899999260902 ], [ 363136.840499997138977, 254690.414900001138449 ], [ 363115.14019999653101, 254682.004599999636412 ], [ 363109.463699996471405, 254685.75789999961853 ], [ 363106.078400000929832, 254704.517499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404030500", "MAP": "A9-138-T70", "PARCEL_NAM": "103", "ACRE": "0.55", "LONGITUDE": -64.9021525, "LATITUDE": 18.32110105, "OBJECTID_1": 37390, "PARCEL_NO_": "107404030500", "Tax_Legal_": "BOLONGO ESTATE 103 No.3 FRENCHMAN'S BAY QTR", "Name": "THE C. E. WEBSTER FAMILY TRUST", "Address": "PO Box 9665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41600, "Improved_V": 243700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.30657667599999, "SHAPE_Area": 2567.57876283 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361869.954599998891354, 254699.888799998909235 ], [ 361870.172200001776218, 254674.348299998790026 ], [ 361871.831600002944469, 254668.873399998992682 ], [ 361875.10360000282526, 254663.411800000816584 ], [ 361879.980999998748302, 254658.807599999010563 ], [ 361886.458499997854233, 254655.694299999624491 ], [ 361893.724299997091293, 254654.698300000280142 ], [ 361896.155799999833107, 254653.240499999374151 ], [ 361896.9746999964118, 254651.769499998539686 ], [ 361896.335600003600121, 254632.132599998265505 ], [ 361843.038099996745586, 254641.195599999278784 ], [ 361829.718099996447563, 254690.27140000090003 ], [ 361869.954599998891354, 254699.888799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504041400", "MAP": "F9-153-T57", "PARCEL_NAM": "3-117", "ACRE": "0.22", "LONGITUDE": -64.88308671, "LATITUDE": 18.32121382, "OBJECTID_1": 37793, "PARCEL_NO_": "107504041400", "Tax_Legal_": "BOVONI ESTATE 3-117 1&2 FRENCHMAN'S BAY QTR", "Name": "ST. CLAIR, S. & F., & STANISLAUS, P. & .P", "Address": "7458 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.22036543, "SHAPE_Area": 878.10102555200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363893.318099997937679, 254678.241200000047684 ], [ 363873.230400003492832, 254669.844099998474121 ], [ 363859.201200000941753, 254707.515000000596046 ], [ 363879.287100002169609, 254716.123199999332428 ], [ 363893.318099997937679, 254678.241200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88927286000001, "LATITUDE": 18.32127484, "OBJECTID_1": 37688, "PARCEL_NO_": "107504013000", "Tax_Legal_": "5-51 BOVONI FRENCHMAN BAY QTR", "Name": "BEDMINISTER, TASHAIA", "Address": "Sfc Leonard B Francis Readiness Ctr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13200, "Improved_V": 84200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.964941625600005, "SHAPE_Area": 456.49545763999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363228.049099996685982, 254679.973400000482798 ], [ 363223.205899998545647, 254680.567099999636412 ], [ 363216.764399997889996, 254679.45890000090003 ], [ 363209.320500001311302, 254701.351700000464916 ], [ 363234.2550999969244, 254708.732900001108646 ], [ 363228.049099996685982, 254679.973400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88911289000001, "LATITUDE": 18.32124053, "OBJECTID_1": 37689, "PARCEL_NO_": "107504013100", "Tax_Legal_": "5-50 EST BOVONI FRENCHMAN BAY QTR", "Name": "CARLYLE A . SMALL & THELMA SMALL (LIFE ESTATE)", "Address": "PO BOX 302041", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13200, "Improved_V": 84200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.6281685557, "SHAPE_Area": 454.45334533900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363253.754000000655651, 254691.582899998873472 ], [ 363239.378899998962879, 254675.210999999195337 ], [ 363234.513999998569489, 254678.337600000202656 ], [ 363228.049099996685982, 254679.973400000482798 ], [ 363234.2550999969244, 254708.732900001108646 ], [ 363253.754000000655651, 254691.582899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043500", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-45", "ACRE": ".14", "LONGITUDE": -64.89142957, "LATITUDE": 18.3212493, "OBJECTID_1": 37653, "PARCEL_NO_": "107503043500", "Tax_Legal_": "12B-45 ESTATE BOVONI NO.1 & 2 FRENCHMANS BAY QTR", "Name": "TURNBULL, KEVIN & CALLWOOD, EDRIS", "Address": "PO Box 7372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17900, "Improved_V": 19900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.230977756, "SHAPE_Area": 608.23529167200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362994.281499996781349, 254670.671900000423193 ], [ 362977.131300002336502, 254696.073800001293421 ], [ 362980.336800001561642, 254698.422100000083447 ], [ 362985.930600002408028, 254704.378499999642372 ], [ 363011.822499997913837, 254694.035700000822544 ], [ 363007.861100003123283, 254685.770700000226498 ], [ 363003.878100000321865, 254680.038499999791384 ], [ 362994.281499996781349, 254670.671900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503035300", "MAP": "D9-5896-T95", "PARCEL_NAM": "61-44", "ACRE": ".30", "LONGITUDE": -64.89650441000001, "LATITUDE": 18.32109055, "OBJECTID_1": 37619, "PARCEL_NO_": "107503035300", "Tax_Legal_": "61-44 ESTATE BOLONGO FRENCHMANS BAY QTR.", "Name": "TODMAN, LEROY A", "Address": "PO Box 12", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36200, "Improved_V": 1700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.17121750300001, "SHAPE_Area": 2123.4203658199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362491.844499997794628, 254678.803100001066923 ], [ 362463.992200002074242, 254635.300999999046326 ], [ 362440.483300000429153, 254649.885099999606609 ], [ 362429.114000000059605, 254659.291299998760223 ], [ 362445.703100003302097, 254699.745900001376867 ], [ 362448.138199999928474, 254697.86600000038743 ], [ 362461.121899999678135, 254688.261999998241663 ], [ 362491.844499997794628, 254678.803100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503042400", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-22", "ACRE": ".14", "LONGITUDE": -64.89189685, "LATITUDE": 18.32123279, "OBJECTID_1": 37641, "PARCEL_NO_": "107503042400", "Tax_Legal_": "12B-22 ESTATE BOVONI(WESTERN PA) No.1&2 FRENCHMAN'S BAY QTR.", "Name": "WILLIAMS, SIMON & LUNA", "Address": "PO Box 10496", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17400, "Improved_V": 155700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.452604048500007, "SHAPE_Area": 593.59742398799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362963.506700001657009, 254686.252000000327826 ], [ 362941.874799996614456, 254669.820799998939037 ], [ 362927.976800002157688, 254692.082899998873472 ], [ 362934.402199998497963, 254695.090799998492002 ], [ 362944.005999997258186, 254703.613200001418591 ], [ 362963.506700001657009, 254686.252000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504070800", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-58", "ACRE": ".17", "LONGITUDE": -64.89080583000001, "LATITUDE": 18.32123778, "OBJECTID_1": 37867, "PARCEL_NO_": "107504070800", "Tax_Legal_": "12B-58 ESTATE BOVONI WESTERN PART", "Name": "EDDY, SHEMIAH E", "Address": "PO Box 305847", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.544245694, "SHAPE_Area": 716.74390814200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363065.222599998116493, 254672.941199999302626 ], [ 363043.389200001955032, 254680.150800000876188 ], [ 363047.273299999535084, 254697.492300000041723 ], [ 363048.040100000798702, 254702.142599999904633 ], [ 363076.284400001168251, 254699.629599999636412 ], [ 363075.600299999117851, 254685.269600000232458 ], [ 363074.036300003528595, 254679.557300001382828 ], [ 363069.993900001049042, 254680.790800001472235 ], [ 363065.222599998116493, 254672.941199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403026200", "MAP": "A9-277-T80", "PARCEL_NAM": "15-76", "ACRE": "1.03", "LONGITUDE": -64.90884937, "LATITUDE": 18.32090033, "OBJECTID_1": 37210, "PARCEL_NO_": "107403026200", "Tax_Legal_": "FRENCHMAN'S BAY 15-76 FRENCHMAN'S BAY QTR.", "Name": "LEE, ANNESTA & RAYMOND", "Address": "2527 HARCOURT Ave", "City": "Los Angeles", "State": "California", "Zip": 90016, "Country": "United States", "Land_Value": 87200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.39554474300002, "SHAPE_Area": 4018.0323787900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361127.693300001323223, 254652.439399998635054 ], [ 361132.210600003600121, 254650.725000001490116 ], [ 361178.777400001883507, 254668.187600001692772 ], [ 361182.322899997234344, 254676.317899998277426 ], [ 361188.685300000011921, 254686.713599998503923 ], [ 361195.283299997448921, 254669.457899998873472 ], [ 361201.087499998509884, 254650.718100000172853 ], [ 361196.382700003683567, 254635.058699999004602 ], [ 361178.749899998307228, 254622.459800001233816 ], [ 361123.240199998021126, 254607.228999998420477 ], [ 361115.347900003194809, 254587.110500000417233 ], [ 361091.883900001645088, 254596.417700000107288 ], [ 361097.488600000739098, 254601.107599999755621 ], [ 361106.271700002253056, 254611.311999998986721 ], [ 361108.661899998784065, 254614.708999998867512 ], [ 361116.611699998378754, 254628.072999998927116 ], [ 361127.693300001323223, 254652.439399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504070500", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-53", "ACRE": ".21", "LONGITUDE": -64.89109773, "LATITUDE": 18.3211723, "OBJECTID_1": 37864, "PARCEL_NO_": "107504070500", "Tax_Legal_": "ESTATE BOVONI 12B-53 WESTERN PART", "Name": "BLYDEN, KEVIN S.", "Address": "3105 Dunkeld Pl", "City": "Tallahassee", "State": "Florida", "Zip": 32303, "Country": "United States", "Land_Value": 23000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.825765043, "SHAPE_Area": 895.54628875100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363043.389200001955032, 254680.150800000876188 ], [ 363028.265299998223782, 254657.017799999564886 ], [ 363010.368199996650219, 254675.447599999606609 ], [ 363016.7449000030756, 254684.154599998146296 ], [ 363019.135099999606609, 254687.551699999719858 ], [ 363021.500100001692772, 254693.903799999505281 ], [ 363023.065999999642372, 254699.405099999159575 ], [ 363047.273299999535084, 254697.492300000041723 ], [ 363043.389200001955032, 254680.150800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88944169, "LATITUDE": 18.32121621, "OBJECTID_1": 37687, "PARCEL_NO_": "107504012900", "Tax_Legal_": "BOVONI 5-52 FRENCHMAN BAY QTR", "Name": "CHARLES (LIFE ESTATE), MERLE", "Address": "PO Box 7224", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 81400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.618517146299993, "SHAPE_Area": 425.09326537499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363216.764399997889996, 254679.45890000090003 ], [ 363199.88400000333786, 254673.199000000953674 ], [ 363192.436499997973442, 254695.513999998569489 ], [ 363195.645599998533726, 254697.440099999308586 ], [ 363209.320500001311302, 254701.351700000464916 ], [ 363216.764399997889996, 254679.45890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504040300", "MAP": "F9-549-T60", "PARCEL_NAM": "3-56", "ACRE": "0.22", "LONGITUDE": -64.8824947, "LATITUDE": 18.32110377, "OBJECTID_1": 37782, "PARCEL_NO_": "107504040300", "Tax_Legal_": "2-1,2-3A & 2-4 ESTATE BOVONI WESTERN PORTION", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 585400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.278227722, "SHAPE_Area": 1101.84054281 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363958.744499996304512, 254665.266699999570847 ], [ 363934.628799997270107, 254656.41440000012517 ], [ 363919.764499999582767, 254697.456000000238419 ], [ 363942.263999998569489, 254706.717199999839067 ], [ 363957.921999998390675, 254667.159800000488758 ], [ 363958.744499996304512, 254665.266699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504073300", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-60", "ACRE": ".14", "LONGITUDE": -64.8905386, "LATITUDE": 18.32109597, "OBJECTID_1": 37892, "PARCEL_NO_": "107504073300", "Tax_Legal_": "12B-60 ESTATE BOVONI WESTERN PART", "Name": "DAVID, HELENA K. & GEORGE S", "Address": "PO Box 10508", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.08538072900001, "SHAPE_Area": 620.06483078999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363099.957000002264977, 254665.83729999884963 ], [ 363066.199699997901917, 254652.895399998873472 ], [ 363079.765000000596046, 254669.682799998670816 ], [ 363081.330799996852875, 254675.184000000357628 ], [ 363084.489600002765656, 254683.020300000905991 ], [ 363085.166400000452995, 254698.224599998444319 ], [ 363095.754600003361702, 254685.856800001114607 ], [ 363100.633799999952316, 254681.041499998420477 ], [ 363104.695900000631809, 254677.486200001090765 ], [ 363102.285999998450279, 254676.410999998450279 ], [ 363103.171400003135204, 254667.130100000649691 ], [ 363099.957000002264977, 254665.83729999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043600", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".16", "LONGITUDE": -64.89158889, "LATITUDE": 18.32113865, "OBJECTID_1": 37654, "PARCEL_NO_": "107503043600", "Tax_Legal_": "12B-46 ESTATE BOVONI WESTERN PART", "Name": "LEADER, TRAVIS", "Address": "PO Box 3341", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.41783749, "SHAPE_Area": 610.79020557900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362973.421599999070168, 254658.257699999958277 ], [ 362963.506700001657009, 254686.252000000327826 ], [ 362977.131300002336502, 254696.073800001293421 ], [ 362994.281499996781349, 254670.671900000423193 ], [ 362973.421599999070168, 254658.257699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503015700", "MAP": "D9-2330-T83", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89836825, "LATITUDE": 18.32095592, "OBJECTID_1": 37569, "PARCEL_NO_": "107503015700", "Tax_Legal_": "BOLONGO 61-13 FRENCHMAN BAY QTR.", "Name": "WILKINSON, SINCLAIR & MARLENE", "Address": "PO Box 10195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56800, "Improved_V": 341400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.94641043, "SHAPE_Area": 2815.9965490700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362295.035899996757507, 254685.213899999856949 ], [ 362267.424599997699261, 254613.427200000733137 ], [ 362245.603799998760223, 254619.159200001507998 ], [ 362224.585699997842312, 254625.320000000298023 ], [ 362260.335699997842312, 254688.307399999350309 ], [ 362264.376299999654293, 254687.285000000149012 ], [ 362275.688000001013279, 254684.633299998939037 ], [ 362278.10700000077486, 254684.653099998831749 ], [ 362295.035899996757507, 254685.213899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88960287, "LATITUDE": 18.32116079, "OBJECTID_1": 37686, "PARCEL_NO_": "107504012800", "Tax_Legal_": "BOVONI 6A-53 FRENCHMAN BAY QTR", "Name": "DEFREITES, DENZIL & MARVA", "Address": "7258 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 93100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.398007004600004, "SHAPE_Area": 436.83798709500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363199.88400000333786, 254673.199000000953674 ], [ 363182.199000000953674, 254666.721500001847744 ], [ 363175.548900000751019, 254690.098400000482798 ], [ 363192.436499997973442, 254695.513999998569489 ], [ 363199.88400000333786, 254673.199000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403016300", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-57", "ACRE": "0.65", "LONGITUDE": -64.91494692000001, "LATITUDE": 18.32100445, "OBJECTID_1": 33369, "PARCEL_NO_": "107403016300", "Tax_Legal_": "FRENCHMAN'S BAY 17-57 FRENCHMAN'S BAY QTR.", "Name": "DAHL, LARRY", "Address": "PO Box 600194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.75101187600001, "SHAPE_Area": 2780.6751996100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360507.92849999666214, 254613.380899999290705 ], [ 360495.891400001943111, 254606.527399998158216 ], [ 360474.6233000010252, 254642.028099998831749 ], [ 360476.200000002980232, 254646.262899998575449 ], [ 360500.970899999141693, 254672.852299999445677 ], [ 360533.307899996638298, 254663.195599999278784 ], [ 360544.043499998748302, 254633.519299998879433 ], [ 360507.92849999666214, 254613.380899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503042300", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".16", "LONGITUDE": -64.89213541, "LATITUDE": 18.32112749, "OBJECTID_1": 37640, "PARCEL_NO_": "107503042300", "Tax_Legal_": "12B-23 ESTATE BOVONI WESTERN PART", "Name": "WILLIAMS, SAMUEL & DECIMA G", "Address": "PO Box 7356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21400, "Improved_V": 177800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.992997359, "SHAPE_Area": 866.95042781100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362941.874799996614456, 254669.820799998939037 ], [ 362909.731899999082088, 254656.681000001728535 ], [ 362900.61259999871254, 254685.948399998247623 ], [ 362906.242399998009205, 254687.683200001716614 ], [ 362908.66669999808073, 254687.069699998944998 ], [ 362916.715400002896786, 254688.824400000274181 ], [ 362922.348800003528595, 254690.136999998241663 ], [ 362927.976800002157688, 254692.082899998873472 ], [ 362941.874799996614456, 254669.820799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021500", "MAP": "A9-73-T67", "PARCEL_NAM": "15-36", "ACRE": "0.34", "LONGITUDE": -64.90813734, "LATITUDE": 18.32099169, "OBJECTID_1": 37170, "PARCEL_NO_": "107403021500", "Tax_Legal_": "FRENCHMANS BAY 15-36 & 21-74-1 FRENCHMANS BAY QTR", "Name": "GRANT, KATHLEEN", "Address": "7503 Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.635027982, "SHAPE_Area": 1339.3683295000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361236.974299997091293, 254657.85249999910593 ], [ 361260.930200003087521, 254612.780600000172853 ], [ 361259.458499997854233, 254614.043400000780821 ], [ 361248.107199996709824, 254621.338700000196695 ], [ 361223.025200001895428, 254631.265900000929832 ], [ 361214.897299997508526, 254638.798799999058247 ], [ 361210.793799996376038, 254647.208999998867512 ], [ 361204.13289999961853, 254671.852400001138449 ], [ 361204.912299998104572, 254675.025199998170137 ], [ 361206.51410000026226, 254676.304800000041723 ], [ 361208.936599999666214, 254675.902499999850988 ], [ 361217.053700000047684, 254669.636100001633167 ], [ 361230.013999998569489, 254662.776099998503923 ], [ 361236.974299997091293, 254657.85249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403012800", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-5", "ACRE": "1.09", "LONGITUDE": -64.91356241, "LATITUDE": 18.32103647, "OBJECTID_1": 33319, "PARCEL_NO_": "107403012800", "Tax_Legal_": "FRENCHMAN BAY 17-5 FRENCHMAN BAY QTR.", "Name": "SUID, ZAKARIA A. & KEFAH", "Address": "PO Box 302278", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.98432179000002, "SHAPE_Area": 4037.5734733700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360729.245399996638298, 254664.377099998295307 ], [ 360728.473300002515316, 254660.359999999403954 ], [ 360704.318099997937679, 254656.151500001549721 ], [ 360693.870200000703335, 254652.05519999936223 ], [ 360685.862800002098083, 254645.445799998939037 ], [ 360674.673299998044968, 254633.743999999016523 ], [ 360673.888599999248981, 254631.204500000923872 ], [ 360672.290399998426437, 254629.502700001001358 ], [ 360672.322700001299381, 254625.703200001269579 ], [ 360620.04730000346899, 254609.443399999290705 ], [ 360618.414899997413158, 254611.752000000327826 ], [ 360612.684399999678135, 254621.837600000202656 ], [ 360610.218699999153614, 254627.305900000035763 ], [ 360610.125200003385544, 254638.282000001519918 ], [ 360610.897299997508526, 254642.299100000411272 ], [ 360615.63629999756813, 254653.947999998927116 ], [ 360618.821999996900558, 254658.618099998682737 ], [ 360625.223899997770786, 254664.370099999010563 ], [ 360630.844800002872944, 254667.160300001502037 ], [ 360645.338600002229214, 254669.600900001823902 ], [ 360665.48200000077486, 254671.454599998891354 ], [ 360685.639799997210503, 254671.619500000029802 ], [ 360710.6570999994874, 254669.291200000792742 ], [ 360729.245399996638298, 254664.377099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404035700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89955984, "LATITUDE": 18.32088959, "OBJECTID_1": 37440, "PARCEL_NO_": "107404035700", "Tax_Legal_": "EST. BOLONGO 27M FRENCHMAN BAY QTR.", "Name": "PETERSEN, LESTER A", "Address": "PO Box 8225", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.19857230100001, "SHAPE_Area": 2583.2396475 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362165.377899996936321, 254665.576400000602007 ], [ 362147.305600002408028, 254609.910900000482798 ], [ 362128.733400002121925, 254612.925299998372793 ], [ 362112.569399997591972, 254617.225999999791384 ], [ 362101.990299999713898, 254628.538499999791384 ], [ 362137.808600001037121, 254683.504900000989437 ], [ 362146.762500002980232, 254673.656700000166893 ], [ 362151.648999996483326, 254667.99720000103116 ], [ 362159.737300001084805, 254665.1081000007689 ], [ 362165.377899996936321, 254665.576400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88898051, "LATITUDE": 18.32111857, "OBJECTID_1": 37690, "PARCEL_NO_": "107504013200", "Tax_Legal_": "5-49 EST BOVONI FRENCHMAN BAY QTR", "Name": "PENN, G. & OGISTE, A", "Address": "PO Box 754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12000, "Improved_V": 53300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.197365397400006, "SHAPE_Area": 407.81772086900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363267.565700002014637, 254679.452500000596046 ], [ 363252.389600001275539, 254662.440799999982119 ], [ 363239.378899998962879, 254675.210999999195337 ], [ 363253.754000000655651, 254691.582899998873472 ], [ 363267.565700002014637, 254679.452500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403014000", "MAP": "D9-3633-T86", "PARCEL_NAM": "17-39", "ACRE": "0.62", "LONGITUDE": -64.90951585000001, "LATITUDE": 18.3209362, "OBJECTID_1": 33333, "PARCEL_NO_": "107403014000", "Tax_Legal_": "FRENCHMAN'S BAY 17-39 FRENCHMAN BAY QTR.", "Name": "MOHAMMED, RASHEED & VERA", "Address": "PO Box 8004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56500, "Improved_V": 200500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.560725547, "SHAPE_Area": 3033.0945697699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361119.599600002169609, 254655.961800001561642 ], [ 361106.131399996578693, 254627.776099998503923 ], [ 361098.167199999094009, 254616.10080000013113 ], [ 361095.773400001227856, 254613.125900000333786 ], [ 361087.7804000005126, 254604.827799998223782 ], [ 361046.4949000030756, 254623.699400000274181 ], [ 361043.83500000089407, 254651.964200001209974 ], [ 361067.189300000667572, 254655.532800000160933 ], [ 361105.015799999237061, 254664.075100000947714 ], [ 361114.657399997115135, 254668.164799999445677 ], [ 361122.671999998390675, 254673.929900001734495 ], [ 361126.716099999845028, 254672.485300000756979 ], [ 361124.354699999094009, 254665.710999999195337 ], [ 361119.599600002169609, 254655.961800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88979196, "LATITUDE": 18.32111678, "OBJECTID_1": 37685, "PARCEL_NO_": "107504012700", "Tax_Legal_": "6A-54 BOVONI FRENCHMAN BAY", "Name": "HANSEN, GWENDOLYN", "Address": "PO Box 303490", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13200, "Improved_V": 86400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.322780214700003, "SHAPE_Area": 540.32189834200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363182.199000000953674, 254666.721500001847744 ], [ 363170.943000003695488, 254662.829700000584126 ], [ 363166.907899998128414, 254663.218800000846386 ], [ 363147.401699997484684, 254681.213199999183416 ], [ 363175.548900000751019, 254690.098400000482798 ], [ 363182.199000000953674, 254666.721500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503019900", "MAP": "D9-2330-T83", "PARCEL_NAM": "61-21", "ACRE": null, "LONGITUDE": -64.89720743, "LATITUDE": 18.32089344, "OBJECTID_1": 37594, "PARCEL_NO_": "107503019900", "Tax_Legal_": "61-14 TO 61-21 EST.BOLONGO No.3 FRENCHMANS BAY QTR.", "Name": "ST. THOMAS NURSING HOME PRIME L", "Address": "419 Belle Air Ln", "City": "Warrenton", "State": "Virginia", "Zip": 20186, "Country": "United States", "Land_Value": 301200, "Improved_V": 4002900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.12295445500001, "SHAPE_Area": 3048.2462078399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362362.913599997758865, 254668.459699999541044 ], [ 362371.012699998915195, 254664.304200001060963 ], [ 362374.180399999022484, 254671.085099998861551 ], [ 362407.149300001561642, 254681.909600000828505 ], [ 362411.285199999809265, 254669.699999999254942 ], [ 362411.304999999701977, 254667.378100000321865 ], [ 362413.124399997293949, 254643.117300000041723 ], [ 362395.633699998259544, 254613.843199998140335 ], [ 362349.643299996852875, 254617.055399999022484 ], [ 362362.913599997758865, 254668.459699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043700", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".15", "LONGITUDE": -64.89177569, "LATITUDE": 18.32104863, "OBJECTID_1": 37655, "PARCEL_NO_": "107503043700", "Tax_Legal_": "12B-47 BOVONI WESTERN PART FRENCHMAN'S BAY QTR.", "Name": "GERALD TRUST", "Address": "55005 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20100, "Improved_V": 205000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.350971605, "SHAPE_Area": 634.95725932899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362946.842100001871586, 254654.66270000115037 ], [ 362941.874799996614456, 254669.820799998939037 ], [ 362963.506700001657009, 254686.252000000327826 ], [ 362973.421599999070168, 254658.257699999958277 ], [ 362955.74210000038147, 254651.146899998188019 ], [ 362954.080899998545647, 254656.832899998873472 ], [ 362946.842100001871586, 254654.66270000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403012600", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-30", "ACRE": "0.72", "LONGITUDE": -64.91434878, "LATITUDE": 18.32084872, "OBJECTID_1": 33317, "PARCEL_NO_": "107403012600", "Tax_Legal_": "FRENCHMAN'S BAY 17-30 FRENCHMANS BAY QTR.", "Name": "PHILLIP, TERRANCE", "Address": "PO Box 11636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 83600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.043930708, "SHAPE_Area": 3345.8528803099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360610.384099997580051, 254607.886599998921156 ], [ 360561.405900001525879, 254583.21000000089407 ], [ 360544.043499998748302, 254633.519299998879433 ], [ 360533.307899996638298, 254663.195599999278784 ], [ 360601.203599996864796, 254644.330699998885393 ], [ 360600.528599999845028, 254628.915300000458956 ], [ 360601.367200002074242, 254625.122499998658895 ], [ 360604.662600003182888, 254616.916799999773502 ], [ 360606.287799999117851, 254615.452500000596046 ], [ 360607.923799999058247, 254612.721599999815226 ], [ 360610.384099997580051, 254607.886599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89614577, "LATITUDE": 18.32090697, "OBJECTID_1": 37567, "PARCEL_NO_": "107503015200", "Tax_Legal_": "EST. BOLONGO 61-40 FRENCHMAN'S QTR.", "Name": "GEORGE, ANTHONY & ROSE", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.792988678, "SHAPE_Area": 2190.65586884 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362526.789300002157688, 254647.002900000661612 ], [ 362493.192100003361702, 254615.274999998509884 ], [ 362481.824600003659725, 254624.469999998807907 ], [ 362463.992200002074242, 254635.300999999046326 ], [ 362491.844499997794628, 254678.803100001066923 ], [ 362514.496799997985363, 254670.122600000351667 ], [ 362526.789300002157688, 254647.002900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043200", "MAP": "F9-3938-T57", "PARCEL_NAM": "3-55", "ACRE": "0.22", "LONGITUDE": -64.88275851, "LATITUDE": 18.32097651, "OBJECTID_1": 37809, "PARCEL_NO_": "107504043200", "Tax_Legal_": "3-55 ESTATE BOVONI FRENCHMAN'S BAY QUARTER", "Name": "MONROSE, ELIZABETH", "Address": "PO Box 6553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28500, "Improved_V": 235100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.972390694, "SHAPE_Area": 876.22643724199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363928.993600003421307, 254655.312899999320507 ], [ 363905.687899999320507, 254646.045099999755621 ], [ 363893.318099997937679, 254678.241200000047684 ], [ 363916.618400000035763, 254688.142200000584126 ], [ 363928.993600003421307, 254655.312899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504070700", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-59", "ACRE": ".20", "LONGITUDE": -64.89093127, "LATITUDE": 18.32100404, "OBJECTID_1": 37866, "PARCEL_NO_": "107504070700", "Tax_Legal_": "12B-59 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "WILLIAMS, MORIS & MAVIS", "Address": "PO Box 9950", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.638664342, "SHAPE_Area": 801.84582362900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363046.909400001168251, 254645.560300000011921 ], [ 363041.28320000320673, 254643.403299998492002 ], [ 363028.265299998223782, 254657.017799999564886 ], [ 363043.389200001955032, 254680.150800000876188 ], [ 363065.222599998116493, 254672.941199999302626 ], [ 363069.27929999679327, 254670.019099999219179 ], [ 363046.909400001168251, 254645.560300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88885455, "LATITUDE": 18.32100765, "OBJECTID_1": 37691, "PARCEL_NO_": "107504013300", "Tax_Legal_": "5-48 BOVONI FRENCHMAN BAY QTR", "Name": "HUSBAND, F. & A.", "Address": "7265 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 88500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.017967602100001, "SHAPE_Area": 414.114677599 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363281.377300001680851, 254667.32209999859333 ], [ 363265.393100000917912, 254650.514899998903275 ], [ 363252.389600001275539, 254662.440799999982119 ], [ 363267.565700002014637, 254679.452500000596046 ], [ 363281.377300001680851, 254667.32209999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89013319, "LATITUDE": 18.32102434, "OBJECTID_1": 37661, "PARCEL_NO_": "107504010300", "Tax_Legal_": "6A-69 ESTATE BOVONI No.1&2 FRENCHMAN'S BAY QTR.", "Name": "THE SAUTER-FRETT FAMILY TRUST", "Address": "PO Box 301738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9900, "Improved_V": 81200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.007194498100006, "SHAPE_Area": 442.369213742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363131.530799999833107, 254651.107999999076128 ], [ 363113.640900000929832, 254668.693500000983477 ], [ 363136.151100002229214, 254676.688200000673532 ], [ 363139.381700001657009, 254676.081300001591444 ], [ 363147.507799997925758, 254668.75959999859333 ], [ 363131.530799999833107, 254651.107999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504070600", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-52", "ACRE": "0.22", "LONGITUDE": -64.89124189, "LATITUDE": 18.32090065, "OBJECTID_1": 37865, "PARCEL_NO_": "107504070600", "Tax_Legal_": "12B-52 ESTATE BOVONI WESTERN PART", "Name": "LEWIS, GARFORD", "Address": "PO Box 9924", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24100, "Improved_V": 51000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.98736529199999, "SHAPE_Area": 1098.2653511000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363041.28320000320673, 254643.403299998492002 ], [ 363006.721400000154972, 254630.243700001388788 ], [ 362992.767700001597404, 254659.049300000071526 ], [ 363000.787699997425079, 254664.181200001388788 ], [ 363006.390500001609325, 254669.08219999819994 ], [ 363010.368199996650219, 254675.447599999606609 ], [ 363028.265299998223782, 254657.017799999564886 ], [ 363041.28320000320673, 254643.403299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503019900", "MAP": "D9-2330-T83", "PARCEL_NAM": "61-20", "ACRE": null, "LONGITUDE": -64.89676929, "LATITUDE": 18.32064525, "OBJECTID_1": 37594, "PARCEL_NO_": "107503019900", "Tax_Legal_": "61-14 TO 61-21 EST.BOLONGO No.3 FRENCHMANS BAY QTR.", "Name": "ST. THOMAS NURSING HOME PRIME L", "Address": "419 Belle Air Ln", "City": "Warrenton", "State": "Virginia", "Zip": 20186, "Country": "United States", "Land_Value": 301200, "Improved_V": 4002900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.26384875500003, "SHAPE_Area": 3229.0896039499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362478.658699996769428, 254617.478000000119209 ], [ 362418.51070000231266, 254578.777800001204014 ], [ 362395.633699998259544, 254613.843199998140335 ], [ 362413.124399997293949, 254643.117300000041723 ], [ 362411.304999999701977, 254667.378100000321865 ], [ 362416.191399998962879, 254661.718600001186132 ], [ 362418.635499998927116, 254658.783300001174212 ], [ 362421.889499999582767, 254655.432399999350309 ], [ 362428.392200000584126, 254649.364000000059605 ], [ 362442.997500002384186, 254638.717700000852346 ], [ 362478.658699996769428, 254617.478000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503032800", "MAP": "D9-6387-T98", "PARCEL_NAM": "61-63", "ACRE": ".835", "LONGITUDE": -64.8955346, "LATITUDE": 18.32073073, "OBJECTID_1": 37618, "PARCEL_NO_": "107503032800", "Tax_Legal_": "61-63 ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "TURNBULL, GLADYS", "Address": "7172 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60900, "Improved_V": 232300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.22869823899998, "SHAPE_Area": 4049.74279462 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362564.474799998104572, 254577.439399998635054 ], [ 362548.908600002527237, 254606.231800001114607 ], [ 362526.789300002157688, 254647.002900000661612 ], [ 362514.496799997985363, 254670.122600000351667 ], [ 362537.104099996387959, 254666.719000000506639 ], [ 362579.057499997317791, 254664.107099998742342 ], [ 362580.749300003051758, 254654.832800000905991 ], [ 362580.833800002932549, 254644.912099998444319 ], [ 362583.290500000119209, 254640.499200001358986 ], [ 362586.652400001883507, 254624.483600001782179 ], [ 362591.526199996471405, 254620.301699999719858 ], [ 362596.416299998760223, 254614.219999998807907 ], [ 362580.601099997758865, 254577.571299999952316 ], [ 362564.474799998104572, 254577.439399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403013000", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-7", "ACRE": "1.18", "LONGITUDE": -64.9128587, "LATITUDE": 18.32073625, "OBJECTID_1": 33321, "PARCEL_NO_": "107403013000", "Tax_Legal_": "FRENCHMAN'S BAY 17-7 FRENCHMAN BAY QTR.", "Name": "SUID, ZAKARIA A. & KEFAH", "Address": "PO Box 302278", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.63991877699999, "SHAPE_Area": 5310.6430428499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360737.453500002622604, 254552.775699999183416 ], [ 360680.454199999570847, 254617.748199999332428 ], [ 360686.089400000870228, 254618.849800001829863 ], [ 360689.291299998760223, 254621.620299998670816 ], [ 360689.262500002980232, 254624.997499998658895 ], [ 360690.036399997770786, 254628.80350000038743 ], [ 360687.574299998581409, 254633.849599998444319 ], [ 360694.775399997830391, 254640.452500000596046 ], [ 360696.377199999988079, 254641.732099998742342 ], [ 360702.791799999773502, 254646.006499998271465 ], [ 360745.449000000953674, 254655.432700000703335 ], [ 360754.366999998688698, 254649.806099999696016 ], [ 360768.117499999701977, 254644.852400001138449 ], [ 360770.550800003111362, 254643.183600001037121 ], [ 360772.192199997603893, 254639.819499999284744 ], [ 360773.052500002086163, 254633.49379999935627 ], [ 360766.74040000140667, 254617.187899999320507 ], [ 360761.162799999117851, 254609.331799998879433 ], [ 360759.589699998497963, 254604.674800001084805 ], [ 360757.991499997675419, 254602.973000001162291 ], [ 360756.407600000500679, 254599.582600001245737 ], [ 360747.755699999630451, 254573.969399999827147 ], [ 360745.387199997901917, 254568.03940000012517 ], [ 360742.235600002110004, 254559.358800001442432 ], [ 360737.453500002622604, 254552.775699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404035800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89917456000001, "LATITUDE": 18.32081652, "OBJECTID_1": 37441, "PARCEL_NO_": "107404035800", "Tax_Legal_": "BOLONGO 61-27 FRENCHMAN BAY QTR.", "Name": "RICHARDS, DARYL R", "Address": "102 Maple N", "City": "Lehigh Arce", "State": "Florida", "Zip": 33936, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.19038776799999, "SHAPE_Area": 2375.2404175199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362201.802199997007847, 254649.409299999475479 ], [ 362197.052400000393391, 254639.026799999177456 ], [ 362194.800700001418591, 254619.3766999989748 ], [ 362183.663400001823902, 254601.553700000047684 ], [ 362166.682300001382828, 254607.114199999719858 ], [ 362147.305600002408028, 254609.910900000482798 ], [ 362165.377899996936321, 254665.576400000602007 ], [ 362180.690600000321865, 254666.546100001782179 ], [ 362192.002400003373623, 254663.894499998539686 ], [ 362194.439300000667572, 254661.80350000038743 ], [ 362198.501400001347065, 254658.248199999332428 ], [ 362201.802199997007847, 254649.409299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404039700", "MAP": "D9-1834-T81", "PARCEL_NAM": "26-4", "ACRE": ".043", "LONGITUDE": -64.90083095, "LATITUDE": 18.32099932, "OBJECTID_1": 37455, "PARCEL_NO_": "107404039700", "Tax_Legal_": "EST. BOLONGO 26-4 FRENCHMAN'S BAY QTR.", "Name": "BOLONGO BAY HOTEL CORP", "Address": "7150 Estate Bolongo", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.991288773799994, "SHAPE_Area": 136.506914798 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362015.563799999654293, 254645.563000001013279 ], [ 362013.995899997651577, 254643.387899998575449 ], [ 361988.906800001859665, 254656.820999998599291 ], [ 361990.449400000274181, 254659.289599999785423 ], [ 361992.8378000035882, 254662.897700000554323 ], [ 362013.943999998271465, 254646.394099999219179 ], [ 362015.563799999654293, 254645.563000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603024500", "MAP": "F9-166-T57", "PARCEL_NAM": "3-115", "ACRE": "0.22", "LONGITUDE": -64.88296463, "LATITUDE": 18.3208972, "OBJECTID_1": 38613, "PARCEL_NO_": "107603024500", "Tax_Legal_": "3-115 BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "MAYNARD, CHARLES & HYACINTH,ABRAMSON,JOY,GEORGE,MARILYN", "Address": "PO Box 306495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25500, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.249003522, "SHAPE_Area": 747.211575466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363905.687899999320507, 254646.045099999755621 ], [ 363885.598399996757507, 254637.859099999070168 ], [ 363873.230400003492832, 254669.844099998474121 ], [ 363893.318099997937679, 254678.241200000047684 ], [ 363905.687899999320507, 254646.045099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88730659, "LATITUDE": 18.32033782, "OBJECTID_1": 37782, "PARCEL_NO_": "107504040300", "Tax_Legal_": "2-1,2-3A & 2-4 ESTATE BOVONI WESTERN PORTION", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 585400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 461.833139647, "SHAPE_Area": 12134.8460928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363416.386799998581409, 254532.060600001364946 ], [ 363407.348300002515316, 254551.829500000923872 ], [ 363390.277300000190735, 254567.943999998271465 ], [ 363376.458499997854233, 254580.918699998408556 ], [ 363362.637900002300739, 254594.104400001466274 ], [ 363351.270400002598763, 254603.299499999731779 ], [ 363419.209899999201298, 254673.9386 ], [ 363485.991099998354912, 254596.591699998825788 ], [ 363516.121399998664856, 254562.007800001651049 ], [ 363422.144199997186661, 254518.808899998664856 ], [ 363416.386799998581409, 254532.060600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043800", "MAP": "A9-506-T97", "PARCEL_NAM": null, "ACRE": ".15", "LONGITUDE": -64.89204952, "LATITUDE": 18.32093212, "OBJECTID_1": 37656, "PARCEL_NO_": "107503043800", "Tax_Legal_": "ESTATE BOVONI 12B-48 WESTERN PART", "Name": "DESTIN, SEMANEISA & SIMEINA, TIMOTHY", "Address": "PO Box 502992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.9250737, "SHAPE_Area": 693.76607163000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362915.528999999165535, 254638.785500001162291 ], [ 362909.731899999082088, 254656.681000001728535 ], [ 362941.874799996614456, 254669.820799998939037 ], [ 362946.842100001871586, 254654.66270000115037 ], [ 362945.23309999704361, 254654.227299999445677 ], [ 362946.894199997186661, 254648.541400000452995 ], [ 362915.528999999165535, 254638.785500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88930133, "LATITUDE": 18.32098384, "OBJECTID_1": 37683, "PARCEL_NO_": "107504012500", "Tax_Legal_": "5-55 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "JACQUES, ZEPHANIAH(TRUSTEE)", "Address": "PO Box 8171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11700, "Improved_V": 110700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.960478339800005, "SHAPE_Area": 394.71082109899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363235.422799997031689, 254666.312699999660254 ], [ 363220.252199999988079, 254648.66780000180006 ], [ 363217.003499999642372, 254651.385400000959635 ], [ 363201.573899999260902, 254664.135800000280142 ], [ 363221.672399997711182, 254671.266399998217821 ], [ 363228.934600003063679, 254670.692600000649691 ], [ 363235.422799997031689, 254666.312699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90751707, "LATITUDE": 18.32087915, "OBJECTID_1": 37173, "PARCEL_NO_": "107403021800", "Tax_Legal_": "15-37 FRENCHMAN'S BAY FRENCHMAN'S BAY QUARTER", "Name": "GERSHATOR, DAVID & PHILLIS (Trustees)", "Address": "P O BOX 3353", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71000, "Improved_V": 155800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.25119038, "SHAPE_Area": 1502.24756454 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361301.433499999344349, 254608.898499999195337 ], [ 361291.6587999984622, 254620.428599998354912 ], [ 361272.955399997532368, 254638.851799998432398 ], [ 361271.332000002264977, 254640.105099998414516 ], [ 361266.46169999986887, 254643.864900000393391 ], [ 361258.344700001180172, 254650.131299998611212 ], [ 361258.3158999979496, 254653.508499998599291 ], [ 361260.723999999463558, 254654.794799998402596 ], [ 361313.177500002086163, 254650.157800000160933 ], [ 361312.838699996471405, 254595.270799998193979 ], [ 361301.433499999344349, 254608.898499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403013800", "MAP": "D9-3633-T86", "PARCEL_NAM": "17-41", "ACRE": "0.57", "LONGITUDE": -64.91064063, "LATITUDE": 18.32079618, "OBJECTID_1": 33331, "PARCEL_NO_": "107403013800", "Tax_Legal_": "ESTATE FRENCHMAN BAY 17-41 FRENCHMAN'S BAY QUARTER", "Name": "LECOINTE, MAURCICE & E", "Address": "PO Box 8723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 83800, "Improved_V": 249700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.29112501500001, "SHAPE_Area": 2378.7286393300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360992.631999999284744, 254604.4712999984622 ], [ 360941.126900002360344, 254592.439599998295307 ], [ 360939.932199999690056, 254638.026000000536442 ], [ 360943.099899999797344, 254644.80689999833703 ], [ 360982.553400002419949, 254651.673700001090765 ], [ 360992.631999999284744, 254604.4712999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403013900", "MAP": "D9-3633-T86", "PARCEL_NAM": "17-40", "ACRE": "0.51", "LONGITUDE": -64.91016844000001, "LATITUDE": 18.32088486, "OBJECTID_1": 33332, "PARCEL_NO_": "107403013900", "Tax_Legal_": "FRENCHMAN BAY 17-40 FRENCHMAN BAY QTR.", "Name": "MOORE, BERNICE E", "Address": "PO Box 308022", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49700, "Improved_V": 362600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.15966275299999, "SHAPE_Area": 2206.0581187600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361046.4949000030756, 254623.699400000274181 ], [ 360992.631999999284744, 254604.4712999984622 ], [ 360982.553400002419949, 254651.673700001090765 ], [ 361018.846500001847744, 254650.915300000458956 ], [ 361043.83500000089407, 254651.964200001209974 ], [ 361046.4949000030756, 254623.699400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404030200", "MAP": null, "PARCEL_NAM": "26-2", "ACRE": null, "LONGITUDE": -64.9010207, "LATITUDE": 18.32069072, "OBJECTID_1": 37387, "PARCEL_NO_": "107404030200", "Tax_Legal_": "BOLONGO 26-2 FRENCHMAN BAY QTR", "Name": "JOHN M LYNCH SR TRUST & ERNA M LYNCH TRUST", "Address": "PO Box 1523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 69500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.24104099199999, "SHAPE_Area": 1977.13277279 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362013.995899997651577, 254643.387899998575449 ], [ 361965.355899997055531, 254575.91330000013113 ], [ 361957.193899996578693, 254587.456700000911951 ], [ 361953.077799998223782, 254597.344399999827147 ], [ 361953.059799998998642, 254599.455200001597404 ], [ 361988.906800001859665, 254656.820999998599291 ], [ 362013.995899997651577, 254643.387899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88999244, "LATITUDE": 18.32091311, "OBJECTID_1": 37662, "PARCEL_NO_": "107504010400", "Tax_Legal_": "BOVONI 6A-70 FRENCHMAN BAY QTR", "Name": "CHARLES, PHILBERT", "Address": "THOMASVILLE APT.12A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15500, "Improved_V": 94400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.610602362400002, "SHAPE_Area": 452.66744411100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363161.322999998927116, 254656.206999998539686 ], [ 363146.155900001525879, 254638.139899998903275 ], [ 363131.530799999833107, 254651.107999999076128 ], [ 363147.507799997925758, 254668.75959999859333 ], [ 363161.322999998927116, 254656.206999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403013700", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-38", "ACRE": "0.58", "LONGITUDE": -64.91171833, "LATITUDE": 18.32083775, "OBJECTID_1": 33329, "PARCEL_NO_": "107403013700", "Tax_Legal_": "FRENCHMAN BAY 17-38 FRENCHMAN BAY QTR.", "Name": "FORDE, JEAN A. & LISA A", "Address": "PO Box 1682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67400, "Improved_V": 382500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.11464515099999, "SHAPE_Area": 2291.7574056600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360833.919699996709824, 254587.76240000128746 ], [ 360830.660300001502037, 254591.746500000357628 ], [ 360819.732299998402596, 254644.008299998939037 ], [ 360844.733300000429153, 254643.579599998891354 ], [ 360877.741800002753735, 254649.760400000959635 ], [ 360888.223899997770786, 254649.846200000494719 ], [ 360890.644599996507168, 254649.654899999499321 ], [ 360889.874300003051758, 254645.42680000141263 ], [ 360879.5253000035882, 254629.721099998801947 ], [ 360833.919699996709824, 254587.76240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504030200", "MAP": "B9-321-T71", "PARCEL_NAM": "9", "ACRE": "10.00", "LONGITUDE": -64.89048573, "LATITUDE": 18.32003186, "OBJECTID_1": 37779, "PARCEL_NO_": "107504030200", "Tax_Legal_": "9-1-12A BOVONI-WEST POR FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 648800, "Improved_V": 22325900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 891.15771138599996, "SHAPE_Area": 40135.6322354 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363241.354000002145767, 254538.016399998217821 ], [ 363247.584700003266335, 254523.358500000089407 ], [ 363240.894900001585484, 254526.160900000482798 ], [ 363219.066699996590614, 254517.032800000160933 ], [ 363178.946400001645088, 254500.549300000071526 ], [ 363187.875900000333786, 254473.617300000041723 ], [ 363121.149800002574921, 254449.850900001823902 ], [ 363121.993900001049042, 254445.424899999052286 ], [ 363076.183300003409386, 254427.529100000858307 ], [ 363068.948100000619888, 254424.936799999326468 ], [ 363065.733599998056889, 254423.643899999558926 ], [ 363031.851199999451637, 254520.047499999403954 ], [ 362935.405500002205372, 254577.308800000697374 ], [ 362927.954499997198582, 254600.046000000089407 ], [ 362959.30179999768734, 254611.91270000115037 ], [ 362983.413900002837181, 254621.186999998986721 ], [ 363006.721400000154972, 254630.243700001388788 ], [ 363041.28320000320673, 254643.403299998492002 ], [ 363046.909400001168251, 254645.560300000011921 ], [ 363066.199699997901917, 254652.895399998873472 ], [ 363099.957000002264977, 254665.83729999884963 ], [ 363103.171400003135204, 254667.130100000649691 ], [ 363103.107400000095367, 254667.800900001078844 ], [ 363107.544600002467632, 254667.845600001513958 ], [ 363113.770700000226498, 254667.889699999243021 ], [ 363113.640900000929832, 254668.693500000983477 ], [ 363131.530799999833107, 254651.107999999076128 ], [ 363146.155900001525879, 254638.139899998903275 ], [ 363159.155799999833107, 254626.636199999600649 ], [ 363172.157499998807907, 254614.921399999409914 ], [ 363185.972699999809265, 254602.36879999935627 ], [ 363199.786100000143051, 254590.027399998158216 ], [ 363212.793200001120567, 254577.679299999028444 ], [ 363226.610200002789497, 254564.915699999779463 ], [ 363239.61370000243187, 254552.989799998700619 ], [ 363251.807300001382828, 254541.479400001466274 ], [ 363241.354000002145767, 254538.016399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403026100", "MAP": "A9-277-T80", "PARCEL_NAM": "15-75", "ACRE": "1.05", "LONGITUDE": -64.90863501, "LATITUDE": 18.32060148, "OBJECTID_1": 37209, "PARCEL_NO_": "107403026100", "Tax_Legal_": "FRENCHMAN'S BAY 15-75 FRENCHMAN'S BAY QTR.", "Name": "JAMES, LINDA G. K. & WILMOTH J. M. E", "Address": "PO Box 8095", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 95900, "Improved_V": 284800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.07420628, "SHAPE_Area": 4328.7983096799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361242.527699999511242, 254613.69370000064373 ], [ 361201.626900002360344, 254587.394400000572205 ], [ 361157.421800002455711, 254570.356300000101328 ], [ 361115.347900003194809, 254587.110500000417233 ], [ 361123.240199998021126, 254607.228999998420477 ], [ 361178.749899998307228, 254622.459800001233816 ], [ 361196.382700003683567, 254635.058699999004602 ], [ 361201.087499998509884, 254650.718100000172853 ], [ 361201.944200001657009, 254644.814500000327826 ], [ 361204.415200002491474, 254638.712999999523163 ], [ 361210.131399996578693, 254630.315999999642372 ], [ 361214.19709999859333, 254626.338500000536442 ], [ 361222.303400002419949, 254621.338599998503923 ], [ 361235.240299999713898, 254617.222699999809265 ], [ 361242.527699999511242, 254613.69370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88873018, "LATITUDE": 18.32089687, "OBJECTID_1": 37692, "PARCEL_NO_": "107504013400", "Tax_Legal_": "5-47 BOVONI FRENCHMAN BAY QTR", "Name": "JN BAPTISTE, AGNITA & WILLIAM", "Address": "7267 Bovoni Homes5-47", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 109700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.668431497499995, "SHAPE_Area": 419.476790494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363294.375399999320507, 254656.029399998486042 ], [ 363279.20830000191927, 254637.96229999884963 ], [ 363265.393100000917912, 254650.514899998903275 ], [ 363281.377300001680851, 254667.32209999859333 ], [ 363294.375399999320507, 254656.029399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88916204, "LATITUDE": 18.32089026, "OBJECTID_1": 37682, "PARCEL_NO_": "107504012400", "Tax_Legal_": "5-56 BOVONI FRENCHMAN BAY QTR", "Name": "JOSEPHINE PENDLETON, J JOHNROSE, D & N BLAIZE", "Address": "6514 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 83100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.610568962100004, "SHAPE_Area": 399.22017589799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363248.431699998676777, 254653.753600001335144 ], [ 363233.248499996960163, 254637.586199998855591 ], [ 363220.252199999988079, 254648.66780000180006 ], [ 363235.422799997031689, 254666.312699999660254 ], [ 363248.431699998676777, 254653.753600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90719448, "LATITUDE": 18.32075738, "OBJECTID_1": 37319, "PARCEL_NO_": "107404020100", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE No.9 FRENCHMAN BAY QTR", "Name": "LEDEE, H & D", "Address": "6578-12C Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45400, "Improved_V": 140000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.967679503, "SHAPE_Area": 1675.18044192 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361343.039800003170967, 254647.02479999884963 ], [ 361344.310099996626377, 254592.572999998927116 ], [ 361312.838699996471405, 254595.270799998193979 ], [ 361313.177500002086163, 254650.157800000160933 ], [ 361343.039800003170967, 254647.02479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90058395, "LATITUDE": 18.31935309, "OBJECTID_1": 37458, "PARCEL_NO_": "107404040100", "Tax_Legal_": "BOLONGO ESTATE 105 FRENCHMAN BAY QTR.", "Name": "V. I. CHRISTIAN MINISTRIES", "Address": "PO Box 10435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 465200, "Improved_V": 416100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 953.92935296400003, "SHAPE_Area": 24017.710647700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361936.618900001049042, 254636.261999998241663 ], [ 361942.563400000333786, 254601.05799999833107 ], [ 361945.056000001728535, 254592.423599999397993 ], [ 361948.347800001502037, 254584.640099998563528 ], [ 361953.257600001990795, 254576.2364999987185 ], [ 361962.220600001513958, 254565.333000000566244 ], [ 361971.154700003564358, 254557.806800000369549 ], [ 361980.070900000631809, 254552.39130000025034 ], [ 361999.510499998927116, 254542.206799998879433 ], [ 362020.550200000405312, 254533.513099998235703 ], [ 362034.325800001621246, 254525.604299999773502 ], [ 362074.104900002479553, 254494.265799999237061 ], [ 362086.273299999535084, 254485.71059999987483 ], [ 362093.596600003540516, 254477.960099998861551 ], [ 362098.511799998581409, 254468.923300001770258 ], [ 362100.169399999082088, 254463.659499999135733 ], [ 362101.843199998140335, 254456.495999999344349 ], [ 362105.424500003457069, 254414.728799998760223 ], [ 362108.739600002765656, 254404.201299998909235 ], [ 362114.468299999833107, 254394.326699998229742 ], [ 362120.166500002145767, 254388.040600001811981 ], [ 362126.663699999451637, 254382.60530000180006 ], [ 362132.334899999201298, 254379.485300000756979 ], [ 362150.948399998247623, 254371.616099998354912 ], [ 362159.843000002205372, 254368.733600001782179 ], [ 362170.369999997317791, 254363.542399998754263 ], [ 362179.289800003170967, 254357.704799998551607 ], [ 362186.600599996745586, 254351.431800000369549 ], [ 362086.016500003635883, 254326.5439000017941 ], [ 362070.473600000143051, 254352.592300001531839 ], [ 362051.662299998104572, 254383.68019999936223 ], [ 362033.662600003182888, 254414.141499999910593 ], [ 362006.743199996650219, 254450.44029999896884 ], [ 362000.07880000025034, 254475.505899999290705 ], [ 361961.156400002539158, 254500.940799999982119 ], [ 361945.060699999332428, 254497.220400001853704 ], [ 361931.270700000226498, 254506.817899998277426 ], [ 361928.837399996817112, 254508.486699998378754 ], [ 361916.411799997091293, 254547.226199999451637 ], [ 361906.327899999916553, 254595.061900001019239 ], [ 361904.623499996960163, 254605.813799999654293 ], [ 361903.698499999940395, 254619.738400001078844 ], [ 361904.477899998426437, 254622.911100000143051 ], [ 361905.046800002455711, 254650.780099999159575 ], [ 361905.833400003612041, 254653.108600001782179 ], [ 361908.243299998342991, 254654.183800000697374 ], [ 361913.084799997508526, 254653.801199998706579 ], [ 361920.359600000083447, 254651.749800000339746 ], [ 361928.465899996459484, 254646.749899998307228 ], [ 361932.533399999141693, 254642.5614 ], [ 361936.618900001049042, 254636.261999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403016400", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-58", "ACRE": "0.54", "LONGITUDE": -64.91525918000001, "LATITUDE": 18.32057164, "OBJECTID_1": 33370, "PARCEL_NO_": "107403016400", "Tax_Legal_": "ESTATE FRENCHMAN'S BAY 17-58 FRENCHMAN'S BAY QTR.", "Name": "MCCLEAN, JAVAR", "Address": "PO BOX 11213", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45400, "Improved_V": 258300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.49524418300001, "SHAPE_Area": 2315.5845854300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360495.891400001943111, 254606.527399998158216 ], [ 360495.169600002467632, 254596.600099999457598 ], [ 360488.976199999451637, 254566.363000001758337 ], [ 360486.618400000035763, 254559.166499998420477 ], [ 360484.231799997389317, 254555.347300000488758 ], [ 360478.637999996542931, 254549.390900000929832 ], [ 360473.015399999916553, 254546.811799999326468 ], [ 360451.547799997031689, 254605.742300000041723 ], [ 360461.1858000010252, 254610.254099998623133 ], [ 360474.6233000010252, 254642.028099998831749 ], [ 360495.891400001943111, 254606.527399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88950527, "LATITUDE": 18.32087703, "OBJECTID_1": 37684, "PARCEL_NO_": "107504012600", "Tax_Legal_": "6A-68 BOVONI FRENCHMAN BAY QTR", "Name": "PALERMO, DORA ( LIFE ESTATE)", "Address": "PO Box 502712", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16700, "Improved_V": 121900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.92524998, "SHAPE_Area": 645.76632030200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363200.230999998748302, 254632.460799999535084 ], [ 363179.101400002837181, 254651.708500001579523 ], [ 363179.067299999296665, 254655.719000000506639 ], [ 363201.573899999260902, 254664.135800000280142 ], [ 363217.003499999642372, 254651.385400000959635 ], [ 363200.230999998748302, 254632.460799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403013600", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-37", "ACRE": "0.54", "LONGITUDE": -64.91212593, "LATITUDE": 18.32072054, "OBJECTID_1": 33327, "PARCEL_NO_": "107403013600", "Tax_Legal_": "FRENCHMAN'BAY 17-37 NO.4 FRENCHMAN'S BAY QTR.", "Name": "BEATRICE, EASTHERS", "Address": "1706 E 174th St", "City": "Bronx", "State": "New York", "Zip": 10472, "Country": "United States", "Land_Value": 52300, "Improved_V": 446900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.469677668, "SHAPE_Area": 2422.819591 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360833.919699996709824, 254587.76240000128746 ], [ 360818.741800002753735, 254570.961800001561642 ], [ 360777.218900002539158, 254617.695799998939037 ], [ 360781.155100002884865, 254628.916000001132488 ], [ 360781.916500002145767, 254634.199599999934435 ], [ 360785.094999998807907, 254639.714000001549721 ], [ 360790.719400003552437, 254642.082100000232458 ], [ 360819.732299998402596, 254644.008299998939037 ], [ 360830.660300001502037, 254591.746500000357628 ], [ 360833.919699996709824, 254587.76240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403014300", "MAP": "D9-3633-T86", "PARCEL_NAM": "17-42", "ACRE": "0.62", "LONGITUDE": -64.91106101, "LATITUDE": 18.32070287, "OBJECTID_1": 33336, "PARCEL_NO_": "107403014300", "Tax_Legal_": "FRENCHMAN BAY 17-42 FRENCHMAN BAY QTR.", "Name": "DANZIGER, MARC S.", "Address": "4132 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.92838904499999, "SHAPE_Area": 2681.1944796799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360941.126900002360344, 254592.439599998295307 ], [ 360942.094999998807907, 254573.449099998921156 ], [ 360927.58500000089407, 254572.908100001513958 ], [ 360882.030500002205372, 254619.609099999070168 ], [ 360892.433499999344349, 254628.982400000095367 ], [ 360903.667900003492832, 254635.407200001180172 ], [ 360922.151900000870228, 254642.735599998384714 ], [ 360924.563699997961521, 254643.599700000137091 ], [ 360934.243000000715256, 254643.256799999624491 ], [ 360943.099899999797344, 254644.80689999833703 ], [ 360939.932199999690056, 254638.026000000536442 ], [ 360941.126900002360344, 254592.439599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90697678, "LATITUDE": 18.32074567, "OBJECTID_1": 37326, "PARCEL_NO_": "107404020800", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 18&19 FRENCHMAN BAY QTR", "Name": "LEDEE, HUBERT & DONICA", "Address": "6578 12C Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.78651959499999, "SHAPE_Area": 836.05951527699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361359.630000002682209, 254592.698399998247623 ], [ 361344.310099996626377, 254592.572999998927116 ], [ 361343.039800003170967, 254647.02479999884963 ], [ 361358.358000002801418, 254647.361200001090765 ], [ 361359.630000002682209, 254592.698399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503044100", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-51", "ACRE": ".15", "LONGITUDE": -64.89148145, "LATITUDE": 18.32079712, "OBJECTID_1": 37659, "PARCEL_NO_": "107503044100", "Tax_Legal_": "12B-51 ESTATE BOVONI 1&2 FRENCHMAN'S BAY QTR.", "Name": "HUGHES, HILTON A", "Address": "PO Box 12425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.796077439, "SHAPE_Area": 718.53031588500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362983.413900002837181, 254621.186999998986721 ], [ 362972.703400000929832, 254647.908300001174212 ], [ 362980.736000001430511, 254651.562600001692772 ], [ 362992.767700001597404, 254659.049300000071526 ], [ 363006.721400000154972, 254630.243700001388788 ], [ 362983.413900002837181, 254621.186999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90490274, "LATITUDE": 18.32075763, "OBJECTID_1": 37327, "PARCEL_NO_": "107404022400", "Tax_Legal_": "EST. FRENCHMAN'S BAY 21-72 FRENCHMAN'S BAY QTR.", "Name": "CHARLES, TYRONE L", "Address": "3700 Royal Tern Ct", "City": "Pflugerville", "State": "Texas", "Zip": 78660, "Country": "United States", "Land_Value": 63100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.59934521, "SHAPE_Area": 2504.7690562399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361597.357299998402596, 254610.476100001484156 ], [ 361542.655799999833107, 254595.040800001472235 ], [ 361538.253799997270107, 254638.489999998360872 ], [ 361599.461599998176098, 254647.43470000103116 ], [ 361606.205200001597404, 254613.081599999219179 ], [ 361597.357299998402596, 254610.476100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404035900", "MAP": "D9-2330-T83", "PARCEL_NAM": "61-11", "ACRE": ".528", "LONGITUDE": -64.89875496000001, "LATITUDE": 18.3205927, "OBJECTID_1": 37442, "PARCEL_NO_": "107404035900", "Tax_Legal_": "BOLONGO 61-11 FRENCHMANS BAY QTR.", "Name": "JOHNSON, EUGENE & LOIS", "Address": "3004 Jameson Dr", "City": "Concord", "State": "North Carolina", "Zip": 28027, "Country": "United States", "Land_Value": 70800, "Improved_V": 263300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.62091326699999, "SHAPE_Area": 1939.51508382 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362276.38570000231266, 254602.734700001776218 ], [ 362238.559199996292591, 254594.192499998956919 ], [ 362228.087899997830391, 254592.840199999511242 ], [ 362213.56530000269413, 254593.776799999177456 ], [ 362183.663400001823902, 254601.553700000047684 ], [ 362194.800700001418591, 254619.3766999989748 ], [ 362197.052400000393391, 254639.026799999177456 ], [ 362201.802199997007847, 254649.409299999475479 ], [ 362208.391099996864796, 254633.208999998867512 ], [ 362210.028899997472763, 254630.267099998891354 ], [ 362211.656000003218651, 254628.591699998825788 ], [ 362216.545999996364117, 254622.510000001639128 ], [ 362223.023400001227856, 254619.396600000560284 ], [ 362239.19650000333786, 254614.040500000119209 ], [ 362276.367700003087521, 254604.845499999821186 ], [ 362276.38570000231266, 254602.734700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88986387, "LATITUDE": 18.32080173, "OBJECTID_1": 37663, "PARCEL_NO_": "107504010500", "Tax_Legal_": "6A-71 BOVONI FRENCHMAN BAY QTR", "Name": "STEPHENS, IVAN & JULIETTE", "Address": "PO Box 8736", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.8371362492, "SHAPE_Area": 410.369599881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363174.330099999904633, 254643.859000001102686 ], [ 363159.155799999833107, 254626.636199999600649 ], [ 363146.155900001525879, 254638.139899998903275 ], [ 363161.322999998927116, 254656.206999998539686 ], [ 363174.330099999904633, 254643.859000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403016100", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-56", "ACRE": "0.62", "LONGITUDE": -64.9147799, "LATITUDE": 18.32049131, "OBJECTID_1": 33367, "PARCEL_NO_": "107403016100", "Tax_Legal_": "FRENCHMAN'S BAY 17-56 FRENCHMANS BAY QTR.", "Name": "HUGHES, ANTHONY & VERA", "Address": "PO Box 9922", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59100, "Improved_V": 284900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.51952896799997, "SHAPE_Area": 3659.3762821800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360561.405900001525879, 254583.21000000089407 ], [ 360519.007600001990795, 254543.3885000012815 ], [ 360518.256999999284744, 254536.838500000536442 ], [ 360505.327200002968311, 254540.110100001096725 ], [ 360499.645300000905991, 254544.496599998325109 ], [ 360496.371500000357628, 254550.169300001114607 ], [ 360497.105899997055531, 254558.619100000709295 ], [ 360503.282999999821186, 254590.755899999290705 ], [ 360503.24889999628067, 254594.766399998217821 ], [ 360504.841700002551079, 254597.101399999111891 ], [ 360507.248099997639656, 254598.598799999803305 ], [ 360511.277800001204014, 254598.842799998819828 ], [ 360512.028399996459484, 254605.392900001257658 ], [ 360507.976999998092651, 254607.681800000369549 ], [ 360507.156400002539158, 254609.363800000399351 ], [ 360507.92849999666214, 254613.380899999290705 ], [ 360544.043499998748302, 254633.519299998879433 ], [ 360561.405900001525879, 254583.21000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88860025, "LATITUDE": 18.32078658, "OBJECTID_1": 37693, "PARCEL_NO_": "107504013500", "Tax_Legal_": "5-46 BOVONI FRENCHMAN BAY QTR", "Name": "JOSEPH, NOVELLE & HILLARY", "Address": "PO Box 9622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12600, "Improved_V": 168900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.591062795, "SHAPE_Area": 450.45324528600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363308.998700000345707, 254643.272399999201298 ], [ 363292.217200003564358, 254625.403200000524521 ], [ 363279.20830000191927, 254637.96229999884963 ], [ 363294.375399999320507, 254656.029399998486042 ], [ 363308.998700000345707, 254643.272399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88903641, "LATITUDE": 18.32077672, "OBJECTID_1": 37680, "PARCEL_NO_": "107504012200", "Tax_Legal_": "5-57 EST BOVONI WEST FRENCHMAN BAY QTR", "Name": "RHYMER, LYDIA", "Address": "7266 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14300, "Improved_V": 115200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.286878634100006, "SHAPE_Area": 420.07111983700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363262.246899999678135, 254641.2010000012815 ], [ 363247.067299999296665, 254624.6114999987185 ], [ 363233.248499996960163, 254637.586199998855591 ], [ 363248.431699998676777, 254653.753600001335144 ], [ 363262.246899999678135, 254641.2010000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404030600", "MAP": "A9-138-T70", "PARCEL_NAM": "102", "ACRE": "0.51", "LONGITUDE": -64.90204695, "LATITUDE": 18.32065288, "OBJECTID_1": 37391, "PARCEL_NO_": "107404030600", "Tax_Legal_": "BOLONGO 102 FRENCHMAN BAY QTR", "Name": "DONOVAN, JAMES & GWENDOLYN", "Address": "7102 Bolongo", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73500, "Improved_V": 405400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.54964958100001, "SHAPE_Area": 2168.1844617800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361899.087200000882149, 254593.102800000458956 ], [ 361858.829199999570847, 254586.018300000578165 ], [ 361843.038099996745586, 254641.195599999278784 ], [ 361896.335600003600121, 254632.132599998265505 ], [ 361896.519000001251698, 254610.602600000798702 ], [ 361899.087200000882149, 254593.102800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89590229, "LATITUDE": 18.32060945, "OBJECTID_1": 37566, "PARCEL_NO_": "107503015100", "Tax_Legal_": "BOLONGO 61-41 FRENCHMAN'S BAY", "Name": "LIBURD, ERMINE B", "Address": "PO Box 12253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38300, "Improved_V": 77100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.426106627, "SHAPE_Area": 1721.9896410599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362548.908600002527237, 254606.231800001114607 ], [ 362517.640399999916553, 254585.077599998563528 ], [ 362514.370200000703335, 254590.328200001269579 ], [ 362509.469400003552437, 254597.676300000399351 ], [ 362507.021700002253056, 254601.0337999984622 ], [ 362499.691100001335144, 254609.628600001335144 ], [ 362493.192100003361702, 254615.274999998509884 ], [ 362526.789300002157688, 254647.002900000661612 ], [ 362548.908600002527237, 254606.231800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88933245, "LATITUDE": 18.32074258, "OBJECTID_1": 37681, "PARCEL_NO_": "107504012300", "Tax_Legal_": "BOVONI 5-67 FRENCHMAN BAY QTR", "Name": "Aurora E. Donovan, Trustee", "Address": "7251 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14400, "Improved_V": 119300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.529721929299996, "SHAPE_Area": 528.32571362299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363233.248499996960163, 254637.586199998855591 ], [ 363214.859700001776218, 254619.070500001311302 ], [ 363200.230999998748302, 254632.460799999535084 ], [ 363217.003499999642372, 254651.385400000959635 ], [ 363220.252199999988079, 254648.66780000180006 ], [ 363233.248499996960163, 254637.586199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503044000", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-50", "ACRE": ".15", "LONGITUDE": -64.89170277, "LATITUDE": 18.32071551, "OBJECTID_1": 37658, "PARCEL_NO_": "107503044000", "Tax_Legal_": "12B-50 ESTATE BOVONI FRENCHMAN'S BAY QTR.", "Name": "KNIGHT, EMERSON A", "Address": "PO Box 502773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.015421066, "SHAPE_Area": 749.42351221399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362959.30179999768734, 254611.91270000115037 ], [ 362948.580600000917912, 254639.900400001555681 ], [ 362966.272699996829033, 254645.533599998801947 ], [ 362972.703400000929832, 254647.908300001174212 ], [ 362983.413900002837181, 254621.186999998986721 ], [ 362959.30179999768734, 254611.91270000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403012900", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-6", "ACRE": "1.08", "LONGITUDE": -64.9133528, "LATITUDE": 18.32049364, "OBJECTID_1": 33320, "PARCEL_NO_": "107403012900", "Tax_Legal_": "FRENCHMAN'S BAY 17-6 FRENCHMAN'S BAY QUARTER", "Name": "SUID, ZAKARIA A. & KEFAH", "Address": "PO Box 302278", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 110100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.04678070799997, "SHAPE_Area": 4149.05754282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360737.453500002622604, 254552.775699999183416 ], [ 360732.633599996566772, 254550.625399999320507 ], [ 360724.575900003314018, 254549.926100000739098 ], [ 360710.861400000751019, 254550.658300001174212 ], [ 360693.89639999717474, 254554.319099999964237 ], [ 360683.383799999952316, 254557.821600001305342 ], [ 360668.812600001692772, 254564.457400001585484 ], [ 360651.779399998486042, 254576.139199998229742 ], [ 360637.138099998235703, 254591.006999999284744 ], [ 360629.017399996519089, 254597.695599999278784 ], [ 360620.04730000346899, 254609.443399999290705 ], [ 360672.322700001299381, 254625.703200001269579 ], [ 360673.163199998438358, 254621.699299998581409 ], [ 360675.600100003182888, 254619.608399998396635 ], [ 360680.454199999570847, 254617.748199999332428 ], [ 360737.453500002622604, 254552.775699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88611672, "LATITUDE": 18.3204437, "OBJECTID_1": 37782, "PARCEL_NO_": "107504040300", "Tax_Legal_": "2-1,2-3A & 2-4 ESTATE BOVONI WESTERN PORTION", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 585400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.87192333299998, "SHAPE_Area": 5296.2568351800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363623.744599997997284, 254612.495700001716614 ], [ 363516.121399998664856, 254562.007800001651049 ], [ 363485.991099998354912, 254596.591699998825788 ], [ 363603.275799997150898, 254648.847300000488758 ], [ 363609.002700001001358, 254639.183899998664856 ], [ 363622.103299997746944, 254615.859700001776218 ], [ 363623.744599997997284, 254612.495700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90046066, "LATITUDE": 18.32057249, "OBJECTID_1": 37421, "PARCEL_NO_": "107404033600", "Tax_Legal_": "26-1A&26-3 BOLONGO FRENCHMAN BAY QTR.", "Name": "HENDRICKS, CLEMENT", "Address": "7171 Estate Bolongo", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75500, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.88011053399998, "SHAPE_Area": 1750.0754748100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362035.816899999976158, 254634.540800001472235 ], [ 362056.052000001072884, 254625.629399999976158 ], [ 362077.095299996435642, 254616.5135000012815 ], [ 362058.789300002157688, 254588.288199998438358 ], [ 362023.965000003576279, 254605.946100000292063 ], [ 361992.131399996578693, 254556.500799998641014 ], [ 361987.273800000548363, 254558.783100001513958 ], [ 362035.816899999976158, 254634.540800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88973931, "LATITUDE": 18.32069288, "OBJECTID_1": 37664, "PARCEL_NO_": "107504010600", "Tax_Legal_": "6A-72 BOVONI FRENCHMAN BAY QTR", "Name": "OSBORNE, ROSE MARY", "Address": "7252 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 132400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.031404187600003, "SHAPE_Area": 413.85931581800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363188.141699999570847, 254631.72859999909997 ], [ 363172.157499998807907, 254614.921399999409914 ], [ 363159.155799999833107, 254626.636199999600649 ], [ 363174.330099999904633, 254643.859000001102686 ], [ 363188.141699999570847, 254631.72859999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88847076, "LATITUDE": 18.32067113, "OBJECTID_1": 37694, "PARCEL_NO_": "107504013600", "Tax_Legal_": "5-45 BOVONI FRENCHMAN BAY QTR", "Name": "HEYLIGER, JUNE", "Address": "7270 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.7570253576, "SHAPE_Area": 462.02709883300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363322.808499999344349, 254631.353100001811981 ], [ 363306.840499997138977, 254612.646200001239777 ], [ 363292.217200003564358, 254625.403200000524521 ], [ 363308.998700000345707, 254643.272399999201298 ], [ 363322.808499999344349, 254631.353100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043900", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-49", "ACRE": ".17", "LONGITUDE": -64.89196453, "LATITUDE": 18.32062945, "OBJECTID_1": 37657, "PARCEL_NO_": "107503043900", "Tax_Legal_": "12B-49 ESTATE BOVONI\nWESTERN PART", "Name": "ELIE, BURNNOEL and MICHELLE CONNOR", "Address": "6135 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.266980946, "SHAPE_Area": 1010.69130126 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362927.954499997198582, 254600.046000000089407 ], [ 362918.021600000560284, 254630.151000000536442 ], [ 362948.580600000917912, 254639.900400001555681 ], [ 362959.30179999768734, 254611.91270000115037 ], [ 362927.954499997198582, 254600.046000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403014100", "MAP": "D9-3633-T86", "PARCEL_NAM": "17-66", "ACRE": "0.61", "LONGITUDE": -64.90994178, "LATITUDE": 18.32056388, "OBJECTID_1": 33334, "PARCEL_NO_": "107403014100", "Tax_Legal_": "FRENCHMAN'S BAY 17-66 FRENCHMAN BAY QTR.", "Name": "BROWNE, SPENCER & GRACITA", "Address": "PO Box 12173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58300, "Improved_V": 376800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.86391100200001, "SHAPE_Area": 2889.6075494699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361027.663099996745586, 254562.539299998432398 ], [ 360992.631999999284744, 254604.4712999984622 ], [ 361046.4949000030756, 254623.699400000274181 ], [ 361087.7804000005126, 254604.827799998223782 ], [ 361086.178599998354912, 254603.548099998384714 ], [ 361076.5675999969244, 254595.870099999010563 ], [ 361042.878700003027916, 254574.907200001180172 ], [ 361027.663099996745586, 254562.539299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88890669, "LATITUDE": 18.32066163, "OBJECTID_1": 37678, "PARCEL_NO_": "107504012000", "Tax_Legal_": "5-58 BOVONI FRENCHMAN BAY QTR", "Name": "HUYGHUE, WILTON & ROSALIE", "Address": "7268 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12600, "Improved_V": 105000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.304947629899999, "SHAPE_Area": 419.730639199 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363276.062100000679493, 254628.648499999195337 ], [ 363260.882500000298023, 254612.058899998664856 ], [ 363247.067299999296665, 254624.6114999987185 ], [ 363262.246899999678135, 254641.2010000012815 ], [ 363276.062100000679493, 254628.648499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504041800", "MAP": null, "PARCEL_NAM": "3-113", "ACRE": "0.22", "LONGITUDE": -64.88285349, "LATITUDE": 18.32059883, "OBJECTID_1": 37796, "PARCEL_NO_": "107504041800", "Tax_Legal_": "3-113 BOVONI NOS. 1&2 FRENCHMAN'S BAY QTR", "Name": "CLAUDETTE MONICA CHARLES REVOCABLE FAMILY TRUST", "Address": "PO Box 8111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 163800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.70610888, "SHAPE_Area": 802.18690630200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363918.059500001370907, 254613.637899998575449 ], [ 363910.034100003540516, 254609.139299999922514 ], [ 363895.55290000140667, 254605.221099998801947 ], [ 363885.598399996757507, 254637.859099999070168 ], [ 363905.687899999320507, 254646.045099999755621 ], [ 363918.059500001370907, 254613.637899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403014500", "MAP": "D9-3633-T86", "PARCEL_NAM": "17-43", "ACRE": "0.55", "LONGITUDE": -64.91134751, "LATITUDE": 18.32049024, "OBJECTID_1": 33351, "PARCEL_NO_": "107403014500", "Tax_Legal_": "FRENCHMAN'S BAY 17-43 FRENCHMAN BAY QTR.", "Name": "FARRELL, CECIL & MARILYN", "Address": "PO Box 11956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64900, "Improved_V": 141400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.23833804700001, "SHAPE_Area": 1979.1692450800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360893.849399998784065, 254557.433299999684095 ], [ 360856.426299996674061, 254596.179299999028444 ], [ 360882.030500002205372, 254619.609099999070168 ], [ 360927.58500000089407, 254572.908100001513958 ], [ 360922.74889999628067, 254572.657400000840425 ], [ 360903.446000002324581, 254566.799899999052286 ], [ 360893.849399998784065, 254557.433299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403013500", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-36", "ACRE": "0.55", "LONGITUDE": -64.91233511, "LATITUDE": 18.32041486, "OBJECTID_1": 33326, "PARCEL_NO_": "107403013500", "Tax_Legal_": "FRENCHMAN'S BAY 17-36 FRENCHMAN BAY QTR.", "Name": "LACHMAN KHIANI FAMILY LIVING TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78700, "Improved_V": 332700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.08390366699999, "SHAPE_Area": 2280.3522250300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360818.741800002753735, 254570.961800001561642 ], [ 360808.320900000631809, 254563.699299998581409 ], [ 360801.123400002717972, 254556.674400001764297 ], [ 360797.138599999248981, 254551.153299998492002 ], [ 360794.755599997937679, 254546.911899998784065 ], [ 360793.967299997806549, 254544.79450000077486 ], [ 360793.178999997675419, 254542.677200000733137 ], [ 360757.451300002634525, 254571.726700000464916 ], [ 360758.237800002098083, 254574.05519999936223 ], [ 360762.157899998128414, 254587.17509999871254 ], [ 360762.139899998903275, 254589.285900000482798 ], [ 360763.734499998390675, 254591.40989999845624 ], [ 360769.263599999248981, 254604.96510000154376 ], [ 360777.218900002539158, 254617.695799998939037 ], [ 360818.741800002753735, 254570.961800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88919414, "LATITUDE": 18.32061837, "OBJECTID_1": 37679, "PARCEL_NO_": "107504012100", "Tax_Legal_": "5-66 BOVONI FRENCHMAN BAY QTR", "Name": "STEVENS, MAJORIE A", "Address": "7246 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.065234541400002, "SHAPE_Area": 508.92094346499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363247.067299999296665, 254624.6114999987185 ], [ 363230.296499997377396, 254605.47580000013113 ], [ 363214.859700001776218, 254619.070500001311302 ], [ 363233.248499996960163, 254637.586199998855591 ], [ 363247.067299999296665, 254624.6114999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304020300", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-60", "ACRE": "0.52", "LONGITUDE": -64.91603562, "LATITUDE": 18.32053778, "OBJECTID_1": 32933, "PARCEL_NO_": "107304020300", "Tax_Legal_": "FRENCHMAN BAY 17-60 FRENCHMAN BAY QTR.", "Name": "QUINTERO, JOHN F", "Address": "1495 NW 164th Ter", "City": "Pembroke Pines", "State": "Florida", "Zip": 33028, "Country": "United States", "Land_Value": 66500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.657026118, "SHAPE_Area": 1592.9695146399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360418.530299998819828, 254600.616900000721216 ], [ 360418.01349999755621, 254566.626600001007318 ], [ 360412.353100001811981, 254568.480099998414516 ], [ 360403.4746999964118, 254569.462900001555681 ], [ 360389.780000001192093, 254567.873199999332428 ], [ 360357.180399999022484, 254608.34739999845624 ], [ 360368.467000000178814, 254608.65089999884367 ], [ 360392.697700001299381, 254603.993999999016523 ], [ 360418.530299998819828, 254600.616900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88961225, "LATITUDE": 18.32058075, "OBJECTID_1": 37665, "PARCEL_NO_": "107504010700", "Tax_Legal_": "6A-73 BOVONI FRENCHMAN BAY QTR", "Name": "HENRY, LEROY Sr.", "Address": "PO BOX 9235", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15500, "Improved_V": 117300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.721072628399995, "SHAPE_Area": 432.83809838299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363201.956900000572205, 254619.175999999046326 ], [ 363185.972699999809265, 254602.36879999935627 ], [ 363172.157499998807907, 254614.921399999409914 ], [ 363188.141699999570847, 254631.72859999909997 ], [ 363201.956900000572205, 254619.175999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304020100", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-61", "ACRE": "0.58", "LONGITUDE": -64.91646374, "LATITUDE": 18.32050127, "OBJECTID_1": 32931, "PARCEL_NO_": "107304020100", "Tax_Legal_": "FRENCHMAN'S BAY 17-61 FRENCHMANS BAY QTR.", "Name": "QUINTERO, JOHN F", "Address": "1495 NW 164th Ter", "City": "Pembroke Pines", "State": "Florida", "Zip": 33028, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.91639549800001, "SHAPE_Area": 2426.0515283200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360389.780000001192093, 254567.873199999332428 ], [ 360382.542999997735023, 254565.491900000721216 ], [ 360371.308499999344349, 254559.067099999636412 ], [ 360369.706699997186661, 254557.787500001490116 ], [ 360353.569600000977516, 254558.921999998390675 ], [ 360303.258199997246265, 254596.084800001233816 ], [ 360312.874600000679493, 254603.129599999636412 ], [ 360341.864100001752377, 254607.799899999052286 ], [ 360357.180399999022484, 254608.34739999845624 ], [ 360389.780000001192093, 254567.873199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88834222, "LATITUDE": 18.32055756, "OBJECTID_1": 37695, "PARCEL_NO_": "107504013700", "Tax_Legal_": "5-44 BOVONI FRENCHMAN BAY QTR", "Name": "TOBAL, FABIOLA & ETANISLAO JOSE", "Address": "PO Box 305114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 122700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.651736400800004, "SHAPE_Area": 447.30441755599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363335.819200001657009, 254618.582899998873472 ], [ 363319.851199999451637, 254599.875999998301268 ], [ 363306.840499997138977, 254612.646200001239777 ], [ 363322.808499999344349, 254631.353100001811981 ], [ 363335.819200001657009, 254618.582899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403026000", "MAP": "A9-277-T80", "PARCEL_NAM": "15-74", "ACRE": "0.73", "LONGITUDE": -64.90820562, "LATITUDE": 18.32041107, "OBJECTID_1": 37208, "PARCEL_NO_": "107403026000", "Tax_Legal_": "FRENCHMAN'S BAY 15-74 FRENCHMAN'S BAY QTR.", "Name": "NATION, MARTHA and FRANCIS", "Address": "PO BOX 600254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.91442227200002, "SHAPE_Area": 2986.1154433400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361271.837300002574921, 254580.791900001466274 ], [ 361193.835400000214577, 254555.455600000917912 ], [ 361157.421800002455711, 254570.356300000101328 ], [ 361201.626900002360344, 254587.394400000572205 ], [ 361242.527699999511242, 254613.69370000064373 ], [ 361251.442100003361702, 254608.48930000141263 ], [ 361261.999700002372265, 254599.709800001233816 ], [ 361266.893299996852875, 254593.206000000238419 ], [ 361271.837300002574921, 254580.791900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403012700", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-31", "ACRE": "0.62", "LONGITUDE": -64.91408101, "LATITUDE": 18.3204166, "OBJECTID_1": 33318, "PARCEL_NO_": "107403012700", "Tax_Legal_": "EST. FRENCHMAN BAY 17-31 FRENCHMANS BAY QTR", "Name": "NICOME, DAMICO S. and MICHELLE C.", "Address": "5302 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84600, "Improved_V": 802400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.02729135199999, "SHAPE_Area": 2451.49715573 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360638.064900003373623, 254576.871300000697374 ], [ 360598.026199996471405, 254544.035199999809265 ], [ 360561.405900001525879, 254583.21000000089407 ], [ 360610.384099997580051, 254607.886599998921156 ], [ 360612.011100001633167, 254606.211199998855591 ], [ 360619.363300003111362, 254595.083399999886751 ], [ 360638.064900003373623, 254576.871300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403016500", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-59", "ACRE": "0.58", "LONGITUDE": -64.91557121, "LATITUDE": 18.32041606, "OBJECTID_1": 33371, "PARCEL_NO_": "107403016500", "Tax_Legal_": "FRENCHMAN'S BAY 17-59 FRENCHMAN BAY QTR.", "Name": "THOMAS LIMA LLC", "Address": "4605 Tutu Park Mall Ste 133 PMB 561", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022005, "Country": "United States", "Land_Value": 55700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.179795721, "SHAPE_Area": 2036.4495193 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360468.197300001978874, 254544.450300000607967 ], [ 360464.961199998855591, 254545.690400000661612 ], [ 360458.489200003445148, 254548.170499999076128 ], [ 360418.01349999755621, 254566.626600001007318 ], [ 360418.530299998819828, 254600.616900000721216 ], [ 360441.108900003135204, 254600.590599998831749 ], [ 360451.547799997031689, 254605.742300000041723 ], [ 360473.015399999916553, 254546.811799999326468 ], [ 360468.197300001978874, 254544.450300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404034100", "MAP": "D9-1833-T81", "PARCEL_NAM": "27-F", "ACRE": null, "LONGITUDE": -64.90004416, "LATITUDE": 18.3204121, "OBJECTID_1": 37426, "PARCEL_NO_": "107404034100", "Tax_Legal_": "BOLONGO 27-F FRENCHMANS BAY QTR.", "Name": "CASEY, JIM & JACQUELINE", "Address": "PO Box 7234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.01233630900001, "SHAPE_Area": 2313.1163514599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362050.036700002849102, 254574.49549999833107 ], [ 362058.789300002157688, 254588.288199998438358 ], [ 362077.095299996435642, 254616.5135000012815 ], [ 362078.686300002038479, 254619.059599999338388 ], [ 362118.29450000077486, 254607.773600000888109 ], [ 362090.5033999979496, 254557.094799999147654 ], [ 362050.036700002849102, 254574.49549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88878079, "LATITUDE": 18.32054877, "OBJECTID_1": 37676, "PARCEL_NO_": "107504011800", "Tax_Legal_": "5-59 ESTATE BOVONI\nNo.1&2 FRENCHMAN'S BAY QTR.", "Name": "MARCUS RILEY", "Address": "PO Box 10308", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013308, "Country": "United States", "Land_Value": 13000, "Improved_V": 86200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.542235080300003, "SHAPE_Area": 400.241472079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363289.069200001657009, 254616.300400000065565 ], [ 363273.887800000607967, 254599.921999998390675 ], [ 363260.882500000298023, 254612.058899998664856 ], [ 363276.062100000679493, 254628.648499999195337 ], [ 363289.069200001657009, 254616.300400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88905923, "LATITUDE": 18.32050147, "OBJECTID_1": 37677, "PARCEL_NO_": "107504011900", "Tax_Legal_": "BOVONI ESTAYTE 5-65 FRENCHMAN BAY QTR", "Name": "WARNER, EDNA & JAMES A", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 88400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.221762256000005, "SHAPE_Area": 474.87913741900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363260.882500000298023, 254612.058899998664856 ], [ 363244.111699998378754, 254592.923300001770258 ], [ 363230.296499997377396, 254605.47580000013113 ], [ 363247.067299999296665, 254624.6114999987185 ], [ 363260.882500000298023, 254612.058899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90485827000001, "LATITUDE": 18.32040494, "OBJECTID_1": 37328, "PARCEL_NO_": "107404022500", "Tax_Legal_": "EST. FRENCHMAN'S BAY 21-71 FRENCHMANS BAY QTR.", "Name": "CHARLES, MICHEL", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.09251102900001, "SHAPE_Area": 2327.9245147199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361612.94879999756813, 254578.72859999909997 ], [ 361551.868699997663498, 254554.7972999997437 ], [ 361542.655799999833107, 254595.040800001472235 ], [ 361597.357299998402596, 254610.476100001484156 ], [ 361612.94879999756813, 254578.72859999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403014200", "MAP": "D9-3633-T86", "PARCEL_NAM": "17-62", "ACRE": "0.59", "LONGITUDE": -64.91047152, "LATITUDE": 18.3204047, "OBJECTID_1": 33335, "PARCEL_NO_": "107403014200", "Tax_Legal_": "FRENCHMAN'S BAY 17-67 FRENCHMAN'S BAY QTR.", "Name": "QUADRANGLE DEVELOPMENT LLC", "Address": "P O BOX 3885", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56600, "Improved_V": 324600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.050069898, "SHAPE_Area": 2558.1363437499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361027.663099996745586, 254562.539299998432398 ], [ 360997.879799999296665, 254556.384899999946356 ], [ 360990.6283999979496, 254555.692200001329184 ], [ 360964.72749999910593, 254567.090399999171495 ], [ 360942.094999998807907, 254573.449099998921156 ], [ 360941.126900002360344, 254592.439599998295307 ], [ 360992.631999999284744, 254604.4712999984622 ], [ 361027.663099996745586, 254562.539299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304020200", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-62", "ACRE": "0.70", "LONGITUDE": -64.91678713, "LATITUDE": 18.3203035, "OBJECTID_1": 32932, "PARCEL_NO_": "107304020200", "Tax_Legal_": "FRENCHMAN BAY 17-62 FRENCHMAN BAY QTR.", "Name": "SU, HUNGHAI & MARTIN, DAVID J.", "Address": "4991 Emerson Ave", "City": "Palatine", "State": "Illinois", "Zip": 60067, "Country": "United States", "Land_Value": 114300, "Improved_V": 275600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.74543896599999, "SHAPE_Area": 3109.7750471499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360369.706699997186661, 254557.787500001490116 ], [ 360338.485299997031689, 254531.145199999213219 ], [ 360261.590700000524521, 254565.135200001299381 ], [ 360303.258199997246265, 254596.084800001233816 ], [ 360353.569600000977516, 254558.921999998390675 ], [ 360369.706699997186661, 254557.787500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88948512, "LATITUDE": 18.32046707, "OBJECTID_1": 37666, "PARCEL_NO_": "107504010800", "Tax_Legal_": "BOVONI 6A-74 FRENCHMAN BAY QTR", "Name": "DENSWORTH, L. & BROWN, S", "Address": "P.O. BOX 2199", "City": "SAN JUAN", "State": "Puerto Rico", "Zip": 919, "Country": "United States", "Land_Value": 12000, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.293953506899996, "SHAPE_Area": 417.687887945 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363214.964000001549721, 254606.828000001609325 ], [ 363199.786100000143051, 254590.027399998158216 ], [ 363185.972699999809265, 254602.36879999935627 ], [ 363201.956900000572205, 254619.175999999046326 ], [ 363214.964000001549721, 254606.828000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88822003, "LATITUDE": 18.32044281, "OBJECTID_1": 37696, "PARCEL_NO_": "107504013800", "Tax_Legal_": "5-43 BOVONI FRENCHMAN BAY QTR", "Name": "HODGE, MAGARITA V", "Address": "7275 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022529, "Country": "United States", "Land_Value": 13200, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.7286502969, "SHAPE_Area": 438.45420435699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363348.831699997186661, 254605.601599998772144 ], [ 363332.856499999761581, 254587.739000000059605 ], [ 363319.851199999451637, 254599.875999998301268 ], [ 363335.819200001657009, 254618.582899998873472 ], [ 363348.831699997186661, 254605.601599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033700", "MAP": "D9-1833-T81", "PARCEL_NAM": "27-G", "ACRE": ".57", "LONGITUDE": -64.8996593, "LATITUDE": 18.3203181, "OBJECTID_1": 37422, "PARCEL_NO_": "107404033700", "Tax_Legal_": "BOLONGO ESTATE 27G No.3 FRENCHMAN'S BAY QTR.", "Name": "AMBROSE, KAREN, LORNA & BARRIERO, J", "Address": "PO Box 7892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74800, "Improved_V": 281400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.73750764, "SHAPE_Area": 2279.75741707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362159.481200002133846, 254600.511399999260902 ], [ 362133.291900001466274, 254551.112199999392033 ], [ 362090.5033999979496, 254557.094799999147654 ], [ 362118.29450000077486, 254607.773600000888109 ], [ 362159.481200002133846, 254600.511399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90060236, "LATITUDE": 18.32026802, "OBJECTID_1": 37388, "PARCEL_NO_": "107404030300", "Tax_Legal_": "BOLONGO 26-1 FRENCHMAN BAY", "Name": "HENDRICKS, EDWIN", "Address": "7114 Bolongo Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36200, "Improved_V": 237100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.63217792399999, "SHAPE_Area": 2263.58743998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362050.036700002849102, 254574.49549999833107 ], [ 362027.753100000321865, 254539.904899999499321 ], [ 361992.131399996578693, 254556.500799998641014 ], [ 362023.965000003576279, 254605.946100000292063 ], [ 362058.789300002157688, 254588.288199998438358 ], [ 362050.036700002849102, 254574.49549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88865495, "LATITUDE": 18.32043558, "OBJECTID_1": 37674, "PARCEL_NO_": "107504011600", "Tax_Legal_": "5-60 BOVONI FRENCHMAN BAY QTR", "Name": "RAYMO, LEONA V", "Address": "PO Box 8914", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13000, "Improved_V": 114600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.996820799899993, "SHAPE_Area": 416.83684506200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363302.884400002658367, 254603.747900001704693 ], [ 363287.703000001609325, 254587.36939999833703 ], [ 363273.887800000607967, 254599.921999998390675 ], [ 363289.069200001657009, 254616.300400000065565 ], [ 363302.884400002658367, 254603.747900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403014700", "MAP": "D9-3633-T86", "PARCEL_NAM": "17-44", "ACRE": "0.55", "LONGITUDE": -64.91161423, "LATITUDE": 18.32024083, "OBJECTID_1": 33353, "PARCEL_NO_": "107403014700", "Tax_Legal_": "FRENCHMAN'S BAY 17-44 FRENCHMAN BAY QTR.", "Name": "WARNER, CLEMENT & VALARIE", "Address": "PO Box 303234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64900, "Improved_V": 382200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.189107294, "SHAPE_Area": 2407.6693530900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360864.325099997222424, 254520.883499998599291 ], [ 360830.04280000180006, 254569.576699998229742 ], [ 360839.621399998664856, 254581.054099999368191 ], [ 360856.426299996674061, 254596.179299999028444 ], [ 360893.849399998784065, 254557.433299999684095 ], [ 360884.274300001561642, 254545.533700000494719 ], [ 360878.7128000035882, 254535.777800001204014 ], [ 360864.325099997222424, 254520.883499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043500", "MAP": "F9-154-T57", "PARCEL_NAM": "3-34", "ACRE": "0.22", "LONGITUDE": -64.88252875000001, "LATITUDE": 18.32036306, "OBJECTID_1": 37811, "PARCEL_NO_": "107504043500", "Tax_Legal_": "3-34 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "ANGEL, J. , APONTE, N. & SANCHEZ, E. I", "Address": "3-35 ESTATE BOVONI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 152800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.24140151500001, "SHAPE_Area": 896.14128766299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363931.266199998557568, 254577.860100001096725 ], [ 363918.059500001370907, 254613.637899998575449 ], [ 363941.390399999916553, 254619.950599998235703 ], [ 363952.946699999272823, 254588.592199999839067 ], [ 363951.368199996650219, 254584.568500000983477 ], [ 363931.266199998557568, 254577.860100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403025400", "MAP": "A9-277-T80", "PARCEL_NAM": "15-69", "ACRE": "1.01", "LONGITUDE": -64.90932097, "LATITUDE": 18.32015188, "OBJECTID_1": 37202, "PARCEL_NO_": "107403025400", "Tax_Legal_": "FRENCHMAN'S BAY 15-69 FRENCHMAN'S BAY QTR.", "Name": "CLINTON E STAPLETON AND LA TONIA GARNETT REVOCABLE", "Address": "7517 Frenchman S Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 92400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.18206571100001, "SHAPE_Area": 3847.4929771500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361096.60419999808073, 254515.607500001788139 ], [ 361063.648699998855591, 254577.596700001507998 ], [ 361081.466600000858307, 254588.732999999076128 ], [ 361086.277500003576279, 254591.938799999654293 ], [ 361091.883900001645088, 254596.417700000107288 ], [ 361115.347900003194809, 254587.110500000417233 ], [ 361145.065700002014637, 254506.293800000101328 ], [ 361125.662000000476837, 254512.256700001657009 ], [ 361106.280000001192093, 254515.686599999666214 ], [ 361096.60419999808073, 254515.607500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89573417, "LATITUDE": 18.32024865, "OBJECTID_1": 37565, "PARCEL_NO_": "107503015000", "Tax_Legal_": "BOLONGO 61-42 FRENCHMAN'S BAY QTR.", "Name": "SUTTON, ARLENE", "Address": "PO Box 502691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 50100, "Improved_V": 222600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.89509976400001, "SHAPE_Area": 1660.5414367599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362564.474799998104572, 254577.439399998635054 ], [ 362530.155799999833107, 254535.784099999815226 ], [ 362528.505500003695488, 254540.203600000590086 ], [ 362527.666799999773502, 254543.996399998664856 ], [ 362527.549900002777576, 254557.716499999165535 ], [ 362526.716600000858307, 254560.8761 ], [ 362518.462899997830391, 254583.184500001370907 ], [ 362517.640399999916553, 254585.077599998563528 ], [ 362548.908600002527237, 254606.231800001114607 ], [ 362564.474799998104572, 254577.439399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88893331, "LATITUDE": 18.32038957, "OBJECTID_1": 37675, "PARCEL_NO_": "107504011700", "Tax_Legal_": "5-64 BOVONI FRENCHMAN BAY QTR", "Name": "HODGE, CHRISTINE F. & NEASHA C.", "Address": "PO Box 6393", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12000, "Improved_V": 99000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.165252255200002, "SHAPE_Area": 449.26206382300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363273.887800000607967, 254599.921999998390675 ], [ 363257.115199998021126, 254580.997400000691414 ], [ 363244.111699998378754, 254592.923300001770258 ], [ 363260.882500000298023, 254612.058899998664856 ], [ 363273.887800000607967, 254599.921999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033800", "MAP": "D9-1833-T81", "PARCEL_NAM": "27-H", "ACRE": ".61", "LONGITUDE": -64.89925911, "LATITUDE": 18.32022064, "OBJECTID_1": 37423, "PARCEL_NO_": "107404033800", "Tax_Legal_": "BOLONOG 27-H FRENCHMAN BAY QTR.", "Name": "AARON (LIFE ESTATE), CHARLES", "Address": "7172 Bolongo Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54800, "Improved_V": 293000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.04493640499999, "SHAPE_Area": 2585.6216190099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362203.124600000679493, 254588.836199998855591 ], [ 362172.950400002300739, 254533.916000001132488 ], [ 362133.291900001466274, 254551.112199999392033 ], [ 362159.481200002133846, 254600.511399999260902 ], [ 362169.981299996376038, 254598.486400000751019 ], [ 362179.687600001692772, 254594.977200001478195 ], [ 362184.536200001835823, 254593.750300001353025 ], [ 362203.124600000679493, 254588.836199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504042000", "MAP": "F9-149-T57", "PARCEL_NAM": "3-111", "ACRE": "0.22", "LONGITUDE": -64.88274804, "LATITUDE": 18.32028988, "OBJECTID_1": 37798, "PARCEL_NO_": "107504042000", "Tax_Legal_": "3-111 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "FARRINGTON, REGINALD", "Address": "7472 Estate Bovoni 3-111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 123600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.939958664, "SHAPE_Area": 939.71603975400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363931.266199998557568, 254577.860100001096725 ], [ 363911.165899999439716, 254570.940600000321865 ], [ 363908.747000001370907, 254570.920800000429153 ], [ 363905.509099997580051, 254572.372000001370907 ], [ 363903.041599996387959, 254578.051300000399351 ], [ 363895.55290000140667, 254605.221099998801947 ], [ 363910.034100003540516, 254609.139299999922514 ], [ 363918.059500001370907, 254613.637899998575449 ], [ 363931.266199998557568, 254577.860100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88935798, "LATITUDE": 18.3203552, "OBJECTID_1": 37667, "PARCEL_NO_": "107504010900", "Tax_Legal_": "BOVONI 6A-75 FRENCHMAN BAY QTR", "Name": "CAMERON, VIOLET & CLYDE", "Address": "7247 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 90600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.304952628500004, "SHAPE_Area": 417.43408429499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363228.775600001215935, 254594.697599999606609 ], [ 363212.793200001120567, 254577.679299999028444 ], [ 363199.786100000143051, 254590.027399998158216 ], [ 363214.964000001549721, 254606.828000001609325 ], [ 363228.775600001215935, 254594.697599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403016600", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-55", "ACRE": "0.73", "LONGITUDE": -64.91447575, "LATITUDE": 18.32014813, "OBJECTID_1": 33372, "PARCEL_NO_": "107403016600", "Tax_Legal_": "FRENCHMAN'S BAY 17-55 FRENNCHMAN BAY QTR.", "Name": "STAPLETON, INGRID", "Address": "PO Box 7011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80200, "Improved_V": 190800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.03655493900001, "SHAPE_Area": 2732.5925760300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360598.026199996471405, 254544.035199999809265 ], [ 360572.396799996495247, 254523.560499999672174 ], [ 360578.145300000905991, 254511.364100001752377 ], [ 360547.366999998688698, 254527.366399999707937 ], [ 360535.229099996387959, 254532.333299998193979 ], [ 360518.256999999284744, 254536.838500000536442 ], [ 360519.007600001990795, 254543.3885000012815 ], [ 360561.405900001525879, 254583.21000000089407 ], [ 360598.026199996471405, 254544.035199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403025500", "MAP": "A9-277-T80", "PARCEL_NAM": "15-70", "ACRE": "0.77", "LONGITUDE": -64.90886306, "LATITUDE": 18.32002741, "OBJECTID_1": 37203, "PARCEL_NO_": "107403025500", "Tax_Legal_": "15-70 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "WOODLEY, NIGEL & OTHERS", "Address": "PO Box 11716", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 83600, "Improved_V": 116500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.58889168100001, "SHAPE_Area": 3045.17180117 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361187.2162000015378, 254500.657699998468161 ], [ 361184.59009999781847, 254498.009500000625849 ], [ 361165.271999999880791, 254500.75959999859333 ], [ 361145.065700002014637, 254506.293800000101328 ], [ 361115.347900003194809, 254587.110500000417233 ], [ 361157.421800002455711, 254570.356300000101328 ], [ 361189.625299997627735, 254503.087200000882149 ], [ 361187.2162000015378, 254500.657699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88809468, "LATITUDE": 18.3203295, "OBJECTID_1": 37697, "PARCEL_NO_": "107504013900", "Tax_Legal_": "5-42 BOVONI FRENCHMAN BAY QTR", "Name": "HECTOR, JOSEPH & CODELLA", "Address": "PO Box 7473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13200, "Improved_V": 88400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.057440871899999, "SHAPE_Area": 441.00731536299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363362.637900002300739, 254594.104400001466274 ], [ 363346.669900000095367, 254575.39750000089407 ], [ 363332.856499999761581, 254587.739000000059605 ], [ 363348.831699997186661, 254605.601599998772144 ], [ 363351.270400002598763, 254603.299499999731779 ], [ 363362.637900002300739, 254594.104400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404030700", "MAP": "A9-138-T70", "PARCEL_NAM": "101", "ACRE": "0.50", "LONGITUDE": -64.90193569, "LATITUDE": 18.3202057, "OBJECTID_1": 37392, "PARCEL_NO_": "107404030700", "Tax_Legal_": "BOLONGO 101 FRENCHMAN BAY QTR", "Name": "SMITH,SR.,CO-TRUSTEES, AUBREY A. & ANN M.", "Address": "PO Box 9983", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72800, "Improved_V": 326300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.238965995, "SHAPE_Area": 2032.7850553599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361909.173000000417233, 254545.056000001728535 ], [ 361873.794100001454353, 254533.156300000846386 ], [ 361870.475400000810623, 254544.105999998748302 ], [ 361858.829199999570847, 254586.018300000578165 ], [ 361899.087200000882149, 254593.102800000458956 ], [ 361909.173000000417233, 254545.056000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88851874, "LATITUDE": 18.32031268, "OBJECTID_1": 37672, "PARCEL_NO_": "107504011400", "Tax_Legal_": "5-61 WEST BOVONI FRENCHMAN BAY QTR", "Name": "SUASAN STANLEY & MERVIN GEORGE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13000, "Improved_V": 95400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.750701621600001, "SHAPE_Area": 461.85755416000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363303.143399998545647, 254573.35249999910593 ], [ 363287.703000001609325, 254587.36939999833703 ], [ 363302.884400002658367, 254603.747900001704693 ], [ 363315.895099997520447, 254590.977600000798702 ], [ 363316.735600002110004, 254586.973700001835823 ], [ 363303.143399998545647, 254573.35249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503013800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89781356, "LATITUDE": 18.3202695, "OBJECTID_1": 37553, "PARCEL_NO_": "107503013800", "Tax_Legal_": "BOLONGO 61-3 FRENCHMAN BAY QTR.", "Name": "CALLWOOD, JUNIOR & VINNETTA", "Address": "PO Box 102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 48800, "Improved_V": 245000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.24205134600001, "SHAPE_Area": 2240.3555692499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362362.108400002121925, 254573.672100000083447 ], [ 362344.55290000140667, 254551.996899999678135 ], [ 362308.992499999701977, 254561.416200000792742 ], [ 362305.759999997913837, 254562.234099999070168 ], [ 362287.117700003087521, 254573.480599999427795 ], [ 362271.734899997711182, 254580.742899999022484 ], [ 362263.652000002563, 254582.998799998313189 ], [ 362309.525499999523163, 254593.506799999624491 ], [ 362321.621899999678135, 254593.39469999819994 ], [ 362331.312100000679493, 254591.785199999809265 ], [ 362345.067900002002716, 254586.198300000280142 ], [ 362346.687799997627735, 254585.367199998348951 ], [ 362353.174199998378754, 254581.198399998247623 ], [ 362358.04450000077486, 254577.4386 ], [ 362362.108400002121925, 254573.672100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88880753, "LATITUDE": 18.32027668, "OBJECTID_1": 37673, "PARCEL_NO_": "107504011500", "Tax_Legal_": "BOVONI 5-63 FRENCHMAN BAY QTR", "Name": "ABRAMSEN, EARL", "Address": "PO Box 8573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 73700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.208654731699994, "SHAPE_Area": 475.22114980700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363287.703000001609325, 254587.36939999833703 ], [ 363270.932199999690056, 254568.23369999974966 ], [ 363257.115199998021126, 254580.997400000691414 ], [ 363273.887800000607967, 254599.921999998390675 ], [ 363287.703000001609325, 254587.36939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403013100", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-32", "ACRE": "0.56", "LONGITUDE": -64.91372366, "LATITUDE": 18.3201102, "OBJECTID_1": 33322, "PARCEL_NO_": "107403013100", "Tax_Legal_": "FRENCHMAN'A BAY 17-32 FRENCHMAN BAY QTR.", "Name": "ASFOUR, DANEAL", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65700, "Improved_V": 312500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.045108699, "SHAPE_Area": 2613.9572755899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360674.559299997985363, 254552.472100000828505 ], [ 360650.73139999806881, 254509.847300000488758 ], [ 360643.454800002276897, 254512.109700001776218 ], [ 360598.026199996471405, 254544.035199999809265 ], [ 360638.064900003373623, 254576.871300000697374 ], [ 360647.009800001978874, 254568.078600000590086 ], [ 360658.364799998700619, 254560.361099999397993 ], [ 360674.559299997985363, 254552.472100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033900", "MAP": "D9-1833-T81", "PARCEL_NAM": "27-I", "ACRE": ".58", "LONGITUDE": -64.89889659000001, "LATITUDE": 18.32007488, "OBJECTID_1": 37424, "PARCEL_NO_": "107404033900", "Tax_Legal_": "BOLONGO BAY 27-I FRENCHMAN BAY QTR.", "Name": "MULLEY, LORNA & MR. O'NEAL", "Address": "394-422 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75500, "Improved_V": 352700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.24229309899999, "SHAPE_Area": 2601.8759674399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362238.013599999248981, 254563.579500000923872 ], [ 362206.171099998056889, 254515.189500000327826 ], [ 362172.950400002300739, 254533.916000001132488 ], [ 362203.124600000679493, 254588.836199998855591 ], [ 362212.821900002658367, 254586.382500000298023 ], [ 362224.121100001037121, 254585.208399999886751 ], [ 362226.604699999094009, 254577.629399999976158 ], [ 362233.949699997901917, 254567.345899999141693 ], [ 362238.013599999248981, 254563.579500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403025900", "MAP": "A9-277-T80", "PARCEL_NAM": "15-73 REM", "ACRE": "0.52", "LONGITUDE": -64.9079815, "LATITUDE": 18.32017079, "OBJECTID_1": 37207, "PARCEL_NO_": "107403025900", "Tax_Legal_": "15-73 REM. FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "GRANT, VERONICA C. & LORNA", "Address": "7505 Frenchman's Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49700, "Improved_V": 339900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.887308249, "SHAPE_Area": 2061.80931629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361271.837300002574921, 254580.791900001466274 ], [ 361273.563199996948242, 254567.507100000977516 ], [ 361273.694499999284744, 254552.098400000482798 ], [ 361269.799599997699261, 254536.023400001227856 ], [ 361268.217500001192093, 254532.421900000423193 ], [ 361264.230899997055531, 254527.111900001764297 ], [ 361252.843599997460842, 254538.628800000995398 ], [ 361225.391199998557568, 254542.837099999189377 ], [ 361193.835400000214577, 254555.455600000917912 ], [ 361271.837300002574921, 254580.791900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88923344, "LATITUDE": 18.32024163, "OBJECTID_1": 37668, "PARCEL_NO_": "107504011000", "Tax_Legal_": "6A-76 BOVONI FRENCHMAN BAY QTR", "Name": "FRETT, TEDDY & JANE", "Address": "7245 Bovoni Homes 6A-76", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14400, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.202992610500004, "SHAPE_Area": 426.624769501 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363241.782700002193451, 254582.349500000476837 ], [ 363226.610200002789497, 254564.915699999779463 ], [ 363212.793200001120567, 254577.679299999028444 ], [ 363228.775600001215935, 254594.697599999606609 ], [ 363241.782700002193451, 254582.349500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88796569, "LATITUDE": 18.32021952, "OBJECTID_1": 37698, "PARCEL_NO_": "107504014000", "Tax_Legal_": "BOVONI 5-41 FRENCHMAN BAY QTR", "Name": "STOUT, ROY H. & NOREEN", "Address": "PO Box 303944", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13200, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.847404332699995, "SHAPE_Area": 451.21947015199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363376.458499997854233, 254580.918699998408556 ], [ 363359.675200000405312, 254563.260499998927116 ], [ 363346.669900000095367, 254575.39750000089407 ], [ 363362.637900002300739, 254594.104400001466274 ], [ 363376.458499997854233, 254580.918699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403013400", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-35", "ACRE": "0.56", "LONGITUDE": -64.9125135, "LATITUDE": 18.32003178, "OBJECTID_1": 33325, "PARCEL_NO_": "107403013400", "Tax_Legal_": "EST. FRENCHMAN'S BAY 17-35 FRENCHMAN'S BAY QTR.", "Name": "MAHIL, RAJINDER & PARVEEN MAHIL", "Address": "24365 Dry Canyon Cold Creek Rd", "City": "Calabasas", "State": "California", "Zip": 91302, "Country": "United States", "Land_Value": 65700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.986438161, "SHAPE_Area": 2032.4461849500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360762.920299999415874, 254497.677700001746416 ], [ 360741.553400002419949, 254544.78770000115037 ], [ 360746.348099999129772, 254549.893199998885393 ], [ 360751.906000003218651, 254560.071199998259544 ], [ 360754.29619999974966, 254563.468299999833107 ], [ 360757.451300002634525, 254571.726700000464916 ], [ 360793.178999997675419, 254542.677200000733137 ], [ 360792.390600003302097, 254540.559799998998642 ], [ 360790.8462999984622, 254532.525600001215935 ], [ 360785.295699998736382, 254521.503299999982119 ], [ 360778.11259999871254, 254512.789700001478195 ], [ 360770.90429999679327, 254507.031100001186132 ], [ 360764.520400002598763, 254499.168400000780821 ], [ 360762.920299999415874, 254497.677700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9047213, "LATITUDE": 18.32010021, "OBJECTID_1": 37329, "PARCEL_NO_": "107404022600", "Tax_Legal_": "EST. FRENCHMAN'S BAY 21-70 FRENCHMANS QTR.", "Name": "MARTIN, NATHALIE", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.48604583900001, "SHAPE_Area": 2328.0981375299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361626.1266999989748, 254546.328000001609325 ], [ 361571.506099998950958, 254521.394099999219179 ], [ 361551.868699997663498, 254554.7972999997437 ], [ 361612.94879999756813, 254578.72859999909997 ], [ 361622.800800003111362, 254558.122099999338388 ], [ 361626.1266999989748, 254546.328000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107403010300", "MAP": null, "PARCEL_NAM": "100-1", "ACRE": null, "LONGITUDE": -64.91544344, "LATITUDE": 18.31881264, "OBJECTID_1": 33294, "PARCEL_NO_": "107403010300", "Tax_Legal_": "100-1, 100-2, 100-3 & EASTMENTS FRENCHMANS BAY No.4 FRENCHMANS BAY QTR", "Name": "WORLDMARK,THE CLUB", "Address": "9805 WILLOWS ROAD", "City": "Redmond", "State": "Washington", "Zip": 980522540, "Country": "United States", "Land_Value": 1024200, "Improved_V": 871400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 776.16694885899994, "SHAPE_Area": 30437.336563000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360544.504199996590614, 254390.132199998944998 ], [ 360505.61710000038147, 254316.775499999523163 ], [ 360476.243900001049042, 254262.495200000703335 ], [ 360468.967299997806549, 254264.757599998265505 ], [ 360462.473600000143051, 254269.770700000226498 ], [ 360463.23139999806881, 254275.476500000804663 ], [ 360462.398100003600121, 254278.635999999940395 ], [ 360461.571999996900558, 254280.951299998909235 ], [ 360459.149499997496605, 254281.353700000792742 ], [ 360457.51349999755621, 254284.084499999880791 ], [ 360457.48650000244379, 254287.250700000673532 ], [ 360455.861299999058247, 254288.714999999850988 ], [ 360445.379199996590614, 254288.629200000315905 ], [ 360440.512599997222424, 254291.966899998486042 ], [ 360438.853200003504753, 254297.441799998283386 ], [ 360436.281400002539158, 254315.363699998706579 ], [ 360428.997599996626377, 254318.470499999821186 ], [ 360420.945299997925758, 254317.138000000268221 ], [ 360417.70380000025034, 254319.011300001293421 ], [ 360414.439000003039837, 254323.628600001335144 ], [ 360409.631700001657009, 254320.000700000673532 ], [ 360404.786700002849102, 254320.805399999022484 ], [ 360403.161399997770786, 254322.269799999892712 ], [ 360404.666199997067451, 254334.947700001299381 ], [ 360399.020199999213219, 254335.11259999871254 ], [ 360395.051600001752377, 254327.691799998283386 ], [ 360393.449699997901917, 254326.412200000137091 ], [ 360391.023599997162819, 254327.236699998378754 ], [ 360388.57769999653101, 254330.383099999278784 ], [ 360385.355999998748302, 254329.934500001370907 ], [ 360382.145199999213219, 254328.219500001519918 ], [ 360375.651500001549721, 254333.232599999755621 ], [ 360376.394900001585484, 254340.626899998635054 ], [ 360373.965199999511242, 254341.873599998652935 ], [ 360364.273199997842312, 254343.694099999964237 ], [ 360361.031800001859665, 254345.567400000989437 ], [ 360357.777800001204014, 254348.918299999088049 ], [ 360353.66889999806881, 254357.96169999986887 ], [ 360379.0320999994874, 254409.676100000739098 ], [ 360380.189400002360344, 254417.915300000458956 ], [ 360392.71679999679327, 254507.102299999445677 ], [ 360433.016199998557568, 254509.331900000572205 ], [ 360463.053000003099442, 254485.724199999123812 ], [ 360464.676399998366833, 254484.470899999141693 ], [ 360541.461300000548363, 254463.356699999421835 ], [ 360577.833499997854233, 254453.3108000010252 ], [ 360548.462099999189377, 254398.819400001317263 ], [ 360544.504199996590614, 254390.132199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403014900", "MAP": "D9-3652-T86", "PARCEL_NAM": "17-45", "ACRE": "0.51", "LONGITUDE": -64.91187864, "LATITUDE": 18.32002048, "OBJECTID_1": 33355, "PARCEL_NO_": "107403014900", "Tax_Legal_": "FRENCHMAN'S BAY 17-45 FRENCHMAN'S BAY QTR.", "Name": "Joanne Winston Meyers & Skyan Mandella Augustus", "Address": "PO Box 307643", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.48725271800001, "SHAPE_Area": 1897.72720949 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360864.325099997222424, 254520.883499998599291 ], [ 360861.117799997329712, 254518.746399998664856 ], [ 360856.288900002837181, 254517.651399999856949 ], [ 360849.872599996626377, 254513.588100001215935 ], [ 360840.284999996423721, 254503.166000001132488 ], [ 360838.701099999248981, 254499.775600001215935 ], [ 360805.241300001740456, 254546.575599998235703 ], [ 360810.822499997913837, 254554.009500000625849 ], [ 360822.845299996435642, 254562.551699999719858 ], [ 360830.04280000180006, 254569.576699998229742 ], [ 360864.325099997222424, 254520.883499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404020300", "MAP": "F9-3523-T77", "PARCEL_NAM": "15-33", "ACRE": "0.60", "LONGITUDE": -64.90752877, "LATITUDE": 18.31988329, "OBJECTID_1": 37321, "PARCEL_NO_": "107404020300", "Tax_Legal_": "FRENCHMAN'S BAY 15-33 FRENCHMAN BAY QTR", "Name": "SHARP MCCRAY, LORETTA", "Address": "PO Box 416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61700, "Improved_V": 278500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.589980809, "SHAPE_Area": 1786.2438009099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361325.737199999392033, 254501.017499998211861 ], [ 361297.48929999768734, 254503.9527000002563 ], [ 361283.843099996447563, 254496.663800001144409 ], [ 361276.51799999922514, 254504.625399999320507 ], [ 361270.823399998247623, 254510.489500001072884 ], [ 361279.477099999785423, 254535.891499999910593 ], [ 361281.81870000064373, 254544.987700000405312 ], [ 361283.321599997580051, 254557.8766999989748 ], [ 361282.389499999582767, 254572.645599998533726 ], [ 361325.737199999392033, 254501.017499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403025600", "MAP": "A9-277-T80", "PARCEL_NAM": "15-71", "ACRE": "0.51", "LONGITUDE": -64.90845938, "LATITUDE": 18.31991296, "OBJECTID_1": 37204, "PARCEL_NO_": "107403025600", "Tax_Legal_": "FRENCHMAN'S BAY 15-71 FRENCHMAN'S BAY QTR.", "Name": "LAKE, EVERET A.", "Address": "P O BOX 4026", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61400, "Improved_V": 317800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.559368947, "SHAPE_Area": 2379.7638960700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361231.450800001621246, 254494.124099999666214 ], [ 361221.785800002515316, 254492.778400000184774 ], [ 361191.914499998092651, 254496.966899998486042 ], [ 361188.591700002551079, 254497.439899999648333 ], [ 361184.59009999781847, 254498.009500000625849 ], [ 361187.2162000015378, 254500.657699998468161 ], [ 361189.625299997627735, 254503.087200000882149 ], [ 361157.421800002455711, 254570.356300000101328 ], [ 361193.835400000214577, 254555.455600000917912 ], [ 361234.025100000202656, 254495.329199999570847 ], [ 361231.450800001621246, 254494.124099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8886708, "LATITUDE": 18.32015967, "OBJECTID_1": 37671, "PARCEL_NO_": "107504011300", "Tax_Legal_": "5-62 BOVONI FRENCHMAN BAY QTR", "Name": "STAPLETON, MELVILLE & ORETHA D. STAPLETON (LIFE ESTATE)", "Address": "7289 No 5-62 Est Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 102900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.0429894655, "SHAPE_Area": 509.34519794099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363303.143399998545647, 254573.35249999910593 ], [ 363289.558300003409386, 254558.886999998241663 ], [ 363287.150200001895428, 254557.600699998438358 ], [ 363282.308700002729893, 254557.983300000429153 ], [ 363270.932199999690056, 254568.23369999974966 ], [ 363287.703000001609325, 254587.36939999833703 ], [ 363303.143399998545647, 254573.35249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503013700", "MAP": "D9-1833-T81", "PARCEL_NAM": "61-2", "ACRE": null, "LONGITUDE": -64.89810374, "LATITUDE": 18.31999248, "OBJECTID_1": 37552, "PARCEL_NO_": "107503013700", "Tax_Legal_": "BOLONGO 61-2 FRENCHMANS BAY QTR.", "Name": "George Christopher, Deverine Christopher, & Lakeysha Murray", "Address": "PO Box 8414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011414, "Country": "United States", "Land_Value": 39600, "Improved_V": 247100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.84582365200001, "SHAPE_Area": 2629.78912722 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362335.886699996888638, 254528.072399999946356 ], [ 362319.897100001573563, 254511.898400001227856 ], [ 362312.584499999880791, 254518.382500000298023 ], [ 362305.381700001657009, 254511.990699999034405 ], [ 362298.916799999773502, 254513.626600001007318 ], [ 362295.650200001895428, 254518.454999998211861 ], [ 362265.586499996483326, 254545.228900000452995 ], [ 362257.449600003659725, 254553.817099999636412 ], [ 362255.811800003051758, 254556.75899999961257 ], [ 362238.733599998056889, 254573.717799998819828 ], [ 362240.335400000214577, 254574.997499998658895 ], [ 362242.741800002753735, 254576.494899999350309 ], [ 362259.681500002741814, 254575.789099998772144 ], [ 362269.380699999630451, 254573.124299999326468 ], [ 362272.618500001728535, 254571.673200000077486 ], [ 362280.715800002217293, 254567.72859999909997 ], [ 362289.6283999979496, 254562.735300000756979 ], [ 362304.215700000524521, 254554.19990000128746 ], [ 362324.506599999964237, 254538.745099999010563 ], [ 362335.886699996888638, 254528.072399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403014400", "MAP": "D9-3633-T86", "PARCEL_NAM": "17-68", "ACRE": "0.70", "LONGITUDE": -64.9106882, "LATITUDE": 18.32002394, "OBJECTID_1": 33337, "PARCEL_NO_": "107403014400", "Tax_Legal_": "17-68 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR", "Name": "SWAN, YANIQUE,KELSEY J & NICKOLAS T", "Address": "3575 Brittany Oak Trce", "City": "Snellville", "State": "Georgia", "Zip": 30039, "Country": "United States", "Land_Value": 74500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.500904647, "SHAPE_Area": 3206.8766228099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360926.560400001704693, 254503.872099999338388 ], [ 360925.241599999368191, 254564.022999998182058 ], [ 360934.100199997425079, 254565.362100001424551 ], [ 360942.976899996399879, 254564.590399999171495 ], [ 360944.593099996447563, 254564.181400001049042 ], [ 360968.046300001442432, 254556.140700001269579 ], [ 360983.432800002396107, 254548.456199999898672 ], [ 360987.473300002515316, 254547.433800000697374 ], [ 361001.187799997627735, 254546.70160000026226 ], [ 361007.65089999884367, 254545.276900000870228 ], [ 361010.903099998831749, 254542.137099999934435 ], [ 361010.944499999284744, 254537.282299999147654 ], [ 361008.554300002753735, 254533.885200001299381 ], [ 361000.554099999368191, 254526.431499999016523 ], [ 360992.535999998450279, 254521.088500000536442 ], [ 360986.110600002110004, 254518.080600000917912 ], [ 360972.423100002110004, 254515.646600000560284 ], [ 360960.319399997591972, 254516.603000000119209 ], [ 360949.844499997794628, 254515.672899998724461 ], [ 360947.431000001728535, 254515.019799999892712 ], [ 360936.975900001823902, 254511.767799999564886 ], [ 360935.372299998998642, 254510.699299998581409 ], [ 360928.961300000548363, 254506.002700001001358 ], [ 360926.560400001704693, 254503.872099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90024433000001, "LATITUDE": 18.31999694, "OBJECTID_1": 37416, "PARCEL_NO_": "107404033100", "Tax_Legal_": "BOLONGO 27C FRENCHMAN BAY QTR", "Name": "GEORGE, G & M", "Address": "PO Box 11816", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44900, "Improved_V": 213300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.97641197799999, "SHAPE_Area": 2504.3451758299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362090.5033999979496, 254557.094799999147654 ], [ 362092.414499998092651, 254522.068900000303984 ], [ 362086.781099997460842, 254520.756299998611212 ], [ 362067.490699999034405, 254513.42119999974966 ], [ 362065.071800000965595, 254513.401399999856949 ], [ 362041.530500002205372, 254531.785000000149012 ], [ 362027.753100000321865, 254539.904899999499321 ], [ 362050.036700002849102, 254574.49549999833107 ], [ 362090.5033999979496, 254557.094799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304020400", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-63", "ACRE": "0.59", "LONGITUDE": -64.91610803, "LATITUDE": 18.32006817, "OBJECTID_1": 32934, "PARCEL_NO_": "107304020400", "Tax_Legal_": "FRENCHMAN'S BAY 17-63 FRENCHMAN'S BAY", "Name": "FORBES, JOYCELYN & RAWLEIGH", "Address": "PO Box 8476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.62385139400001, "SHAPE_Area": 1695.1780307199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360354.674500003457069, 254523.889499999582767 ], [ 360362.672799997031689, 254531.554299999028444 ], [ 360361.042199999094009, 254533.651900000870228 ], [ 360361.009900003671646, 254537.451299998909235 ], [ 360361.803599998354912, 254538.935499999672174 ], [ 360364.21169999986887, 254540.221700001507998 ], [ 360377.814800001680851, 254552.576499998569489 ], [ 360383.435599997639656, 254555.366700001060963 ], [ 360386.649999998509884, 254556.659600000828505 ], [ 360393.087899997830391, 254558.189899999648333 ], [ 360397.918600000441074, 254559.073800001293421 ], [ 360404.36370000243187, 254559.759899999946356 ], [ 360414.055699996650219, 254557.939399998635054 ], [ 360423.770999997854233, 254553.374800000339746 ], [ 360420.594300001859665, 254547.649300001561642 ], [ 360397.286700002849102, 254538.592599999159575 ], [ 360392.71679999679327, 254507.102299999445677 ], [ 360354.674500003457069, 254523.889499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403014600", "MAP": "D9-3633-T86", "PARCEL_NAM": "17-69", "ACRE": "0.59", "LONGITUDE": -64.91120748, "LATITUDE": 18.31989532, "OBJECTID_1": 33352, "PARCEL_NO_": "107403014600", "Tax_Legal_": "FRENCHMAN'S BAY 17-69 FRENCHMANS BAY QTR", "Name": "GRELL, MAUREEN", "Address": "PO Box 305424", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56600, "Improved_V": 128000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.80073770199999, "SHAPE_Area": 2672.0860145500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360923.362099997699261, 254500.67960000038147 ], [ 360912.975400000810623, 254489.406599998474121 ], [ 360908.185999996960163, 254483.667899999767542 ], [ 360870.059199996292591, 254510.375799998641014 ], [ 360868.42679999768734, 254512.684500001370907 ], [ 360875.636799998581409, 254518.231899999082088 ], [ 360880.431500002741814, 254523.337400000542402 ], [ 360882.827100001275539, 254526.101199999451637 ], [ 360887.607400000095367, 254532.895300000905991 ], [ 360893.172499999403954, 254542.228999998420477 ], [ 360906.755699999630451, 254556.905600000172853 ], [ 360911.566600002348423, 254560.111400000751019 ], [ 360925.241599999368191, 254564.022999998182058 ], [ 360926.560400001704693, 254503.872099999338388 ], [ 360923.362099997699261, 254500.67960000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89557223, "LATITUDE": 18.31999283, "OBJECTID_1": 37564, "PARCEL_NO_": "107503014900", "Tax_Legal_": "BOLONGO 61-26 FRENCHMANS BAY QTR.", "Name": "PARKS, JERRY D. & CECELLA J", "Address": "23023 E 1100 Rd", "City": "Allendale", "State": "Illinois", "Zip": 62410, "Country": "United States", "Land_Value": 48100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.828265542, "SHAPE_Area": 1701.39166045 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362580.026699997484684, 254550.33559999987483 ], [ 362548.907799996435642, 254511.661899998784065 ], [ 362538.301700003445148, 254526.140500001609325 ], [ 362535.870200000703335, 254527.598299998790026 ], [ 362531.791900001466274, 254533.053300000727177 ], [ 362530.155799999833107, 254535.784099999815226 ], [ 362564.474799998104572, 254577.439399998635054 ], [ 362580.601099997758865, 254577.571299999952316 ], [ 362580.624499998986721, 254574.827300000935793 ], [ 362577.498099997639656, 254563.191599998623133 ], [ 362577.571800000965595, 254554.537399999797344 ], [ 362580.026699997484684, 254550.33559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88910616, "LATITUDE": 18.32013013, "OBJECTID_1": 37669, "PARCEL_NO_": "107504011100", "Tax_Legal_": "BOVONI 6A-77 FRENCHMAN BAY QTR", "Name": "AMARO, IVY", "Address": "8145 Southgate Blvd", "City": "N Lauderdale", "State": "Florida", "Zip": 33068, "Country": "United States", "Land_Value": 12000, "Improved_V": 107800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.625739800100007, "SHAPE_Area": 419.98595633799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363255.596100002527237, 254570.008099999278784 ], [ 363239.61370000243187, 254552.989799998700619 ], [ 363226.610200002789497, 254564.915699999779463 ], [ 363241.782700002193451, 254582.349500000476837 ], [ 363255.596100002527237, 254570.008099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89742414, "LATITUDE": 18.31995463, "OBJECTID_1": 37554, "PARCEL_NO_": "107503013900", "Tax_Legal_": "BOLONGO 61-4 FRENCHMAN BAY QTR.", "Name": "THOMAS, EDWIN M.,JR. & ELISA M.", "Address": "PO Box 10471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50800, "Improved_V": 149000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.524955312, "SHAPE_Area": 2245.37422939 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362308.992499999701977, 254561.416200000792742 ], [ 362344.55290000140667, 254551.996899999678135 ], [ 362362.108400002121925, 254573.672100000083447 ], [ 362366.175899997353554, 254569.483600001782179 ], [ 362370.275799997150898, 254561.495600000023842 ], [ 362376.799999997019768, 254552.894099999219179 ], [ 362384.1216000020504, 254545.354699999094009 ], [ 362387.370200000703335, 254542.637099999934435 ], [ 362390.616999998688698, 254540.130499999970198 ], [ 362400.352099999785423, 254533.244100000709295 ], [ 362385.980599999427795, 254516.450100000947714 ], [ 362360.977700002491474, 254517.089800000190735 ], [ 362343.116499997675419, 254531.298000000417233 ], [ 362330.924699999392033, 254542.597300000488758 ], [ 362325.237400002777576, 254547.616999998688698 ], [ 362308.992499999701977, 254561.416200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504014900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88831722, "LATITUDE": 18.32012947, "OBJECTID_1": 37707, "PARCEL_NO_": "107504014900", "Tax_Legal_": "5-30 BOVONI FRENCHMAN BAY QTR", "Name": "GRELL, ERROLL & PATRICIA", "Address": "PO Box 10165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13200, "Improved_V": 100500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.183318921400001, "SHAPE_Area": 420.07146837200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363324.276500001549721, 254553.682700000703335 ], [ 363309.649599999189377, 254566.861900001764297 ], [ 363324.039200000464916, 254581.545099999755621 ], [ 363327.26799999922514, 254581.149300001561642 ], [ 363338.651699997484684, 254570.054499998688698 ], [ 363324.276500001549721, 254553.682700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504030200", "MAP": "B9-321-T71", "PARCEL_NAM": "9-1", "ACRE": "10.00", "LONGITUDE": -64.89062514, "LATITUDE": 18.31861564, "OBJECTID_1": 37779, "PARCEL_NO_": "107504030200", "Tax_Legal_": "9-1-12A BOVONI-WEST POR FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 648800, "Improved_V": 22325900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1032.97649654, "SHAPE_Area": 40252.27617930001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363212.059600003063679, 254396.831700000911951 ], [ 363211.923000000417233, 254396.382500000298023 ], [ 363229.617499999701977, 254338.161699999123812 ], [ 363162.6199000030756, 254314.668299999088049 ], [ 363165.101700000464916, 254307.300299998372793 ], [ 363029.946900002658367, 254270.308200001716614 ], [ 362974.347000002861023, 254454.982200000435114 ], [ 362958.575699999928474, 254507.837600000202656 ], [ 362935.405500002205372, 254577.308800000697374 ], [ 363031.851199999451637, 254520.047499999403954 ], [ 363065.733599998056889, 254423.643899999558926 ], [ 363068.948100000619888, 254424.936799999326468 ], [ 363076.183300003409386, 254427.529100000858307 ], [ 363121.993900001049042, 254445.424899999052286 ], [ 363121.149800002574921, 254449.850900001823902 ], [ 363187.875900000333786, 254473.617300000041723 ], [ 363211.110799998044968, 254396.547200001776218 ], [ 363212.059600003063679, 254396.831700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88783991, "LATITUDE": 18.3201031, "OBJECTID_1": 37699, "PARCEL_NO_": "107504014100", "Tax_Legal_": "5-40 BOVONI FRENCHMAN BAY QTR", "Name": "VANHOLTEN, J. & OTHERS", "Address": "7278 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13200, "Improved_V": 90200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.0329206193, "SHAPE_Area": 453.51748276000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363390.277300000190735, 254567.943999998271465 ], [ 363372.684000000357628, 254550.701400000602007 ], [ 363359.675200000405312, 254563.260499998927116 ], [ 363376.458499997854233, 254580.918699998408556 ], [ 363390.277300000190735, 254567.943999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403016200", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-64", "ACRE": "0.70", "LONGITUDE": -64.91566468000001, "LATITUDE": 18.31993902, "OBJECTID_1": 33368, "PARCEL_NO_": "107403016200", "Tax_Legal_": "ESTATE FRENCMHAN'S BAY 17-64 FRENCHMAN'S BAY QTR.", "Name": "ESQUERDO, THOMAS", "Address": "PO Box 11084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.77834255900001, "SHAPE_Area": 2950.6286458999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360470.704300001263618, 254534.127199999988079 ], [ 360463.053000003099442, 254485.724199999123812 ], [ 360433.016199998557568, 254509.331900000572205 ], [ 360392.71679999679327, 254507.102299999445677 ], [ 360397.286700002849102, 254538.592599999159575 ], [ 360420.594300001859665, 254547.649300001561642 ], [ 360423.770999997854233, 254553.374800000339746 ], [ 360454.53490000218153, 254539.061099998652935 ], [ 360470.704300001263618, 254534.127199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403013200", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-33", "ACRE": "0.55", "LONGITUDE": -64.91332047, "LATITUDE": 18.31991413, "OBJECTID_1": 33323, "PARCEL_NO_": "107403013200", "Tax_Legal_": "FRENCHMAN'S BAY 17-33 No.4 FRENCHMAN'S BAY QTR.", "Name": "KNIGHT, MICHOLE M", "Address": "PO Box 6495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 64900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.48256426500001, "SHAPE_Area": 1926.83556841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360701.248599998652935, 254543.191300000995398 ], [ 360702.473899997770786, 254494.016499999910593 ], [ 360650.73139999806881, 254509.847300000488758 ], [ 360674.559299997985363, 254552.472100000828505 ], [ 360682.656599998474121, 254548.52760000154376 ], [ 360701.248599998652935, 254543.191300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403025700", "MAP": "A9-277-T80", "PARCEL_NAM": "15-72", "ACRE": "0.50", "LONGITUDE": -64.90812109, "LATITUDE": 18.31990102, "OBJECTID_1": 37205, "PARCEL_NO_": "107403025700", "Tax_Legal_": "FRENCHMAN'S BAY 15-72 FRENCHMAN'S BAY QTR.", "Name": "CUFFY, ISMAY", "Address": "PO Box 302101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53100, "Improved_V": 241500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.448361388, "SHAPE_Area": 1598.08131516 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361234.025100000202656, 254495.329199999570847 ], [ 361193.835400000214577, 254555.455600000917912 ], [ 361225.391199998557568, 254542.837099999189377 ], [ 361264.230899997055531, 254527.111900001764297 ], [ 361241.079800002276897, 254499.691300000995398 ], [ 361237.87610000371933, 254497.131999999284744 ], [ 361234.025100000202656, 254495.329199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404034000", "MAP": "D9-1833-T81", "PARCEL_NAM": "27-J", "ACRE": ".56", "LONGITUDE": -64.89861108, "LATITUDE": 18.31984526, "OBJECTID_1": 37425, "PARCEL_NO_": "107404034000", "Tax_Legal_": "BOLONGO 27-J FRENCHMAN BAY QTR.", "Name": "PETERSEN, SR, ANTHONY & AUBREY", "Address": "PO Box 305067", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035067, "Country": "United States", "Land_Value": 72800, "Improved_V": 243800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.02579795400001, "SHAPE_Area": 2025.6379247499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362264.861100003123283, 254535.723799999803305 ], [ 362237.802500002086163, 254493.705800000578165 ], [ 362219.944899998605251, 254507.491799999028444 ], [ 362213.463899999856949, 254511.027300000190735 ], [ 362206.171099998056889, 254515.189500000327826 ], [ 362238.013599999248981, 254563.579500000923872 ], [ 362250.208999998867512, 254551.857999999076128 ], [ 362258.360200002789497, 254541.581199999898672 ], [ 362264.861100003123283, 254535.723799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403025300", "MAP": "A9-277-T80", "PARCEL_NAM": "15-68", "ACRE": "1.00", "LONGITUDE": -64.90982156, "LATITUDE": 18.31991773, "OBJECTID_1": 37201, "PARCEL_NO_": "107403025300", "Tax_Legal_": "FRENCHMAN'S BAY 15-68 FRENCHMAN'S BAY QTR.", "Name": "TAVERNIER, LUCIEN & NICA", "Address": "PO Box 6164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 91600, "Improved_V": 365000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.66621989399999, "SHAPE_Area": 4689.68404904 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361054.981700003147125, 254479.380899999290705 ], [ 361049.389600001275539, 254473.21339999884367 ], [ 361005.453100003302097, 254519.294399999082088 ], [ 361011.862300001084805, 254524.201999999582767 ], [ 361018.249799996614456, 254531.642499998211861 ], [ 361026.196099996566772, 254545.428700000047684 ], [ 361027.787100002169609, 254547.974800001829863 ], [ 361032.572899997234344, 254554.13569999858737 ], [ 361036.566699996590614, 254558.601300001144409 ], [ 361055.799500003457069, 254572.690900001674891 ], [ 361063.648699998855591, 254577.596700001507998 ], [ 361096.60419999808073, 254515.607500001788139 ], [ 361086.950000002980232, 254512.995299998670816 ], [ 361078.915700003504753, 254509.552099999040365 ], [ 361071.70380000025034, 254504.215700000524521 ], [ 361066.113600000739098, 254497.837099999189377 ], [ 361058.152999997138977, 254485.739599999040365 ], [ 361054.981700003147125, 254479.380899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88896002, "LATITUDE": 18.32001072, "OBJECTID_1": 37670, "PARCEL_NO_": "107504011200", "Tax_Legal_": "6A-78 BOVONI FRENCHMAN BAY QTR", "Name": "HARRIGAN, JANET E", "Address": "PO Box 304454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 93900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.261497712999997, "SHAPE_Area": 522.19686155399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363239.61370000243187, 254552.989799998700619 ], [ 363255.596100002527237, 254570.008099999278784 ], [ 363273.471600003540516, 254554.111200001090765 ], [ 363273.504000000655651, 254550.311799999326468 ], [ 363251.807300001382828, 254541.479400001466274 ], [ 363239.61370000243187, 254552.989799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8881896, "LATITUDE": 18.32001749, "OBJECTID_1": 37706, "PARCEL_NO_": "107504014800", "Tax_Legal_": "5-31 BOVONI FRENCHMAN BAY QTR", "Name": "TODMAN, GLADYS", "Address": "PO Box 305196", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 95700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.562508506499995, "SHAPE_Area": 381.43407580399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363351.655199997127056, 254558.128600001335144 ], [ 363337.278200000524521, 254541.9679000005126 ], [ 363324.276500001549721, 254553.682700000703335 ], [ 363338.651699997484684, 254570.054499998688698 ], [ 363351.655199997127056, 254558.128600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88770409, "LATITUDE": 18.31998989, "OBJECTID_1": 37700, "PARCEL_NO_": "107504014200", "Tax_Legal_": "5-39 BOVONI/WSTRN PART FRENCHMAN BAY QTR", "Name": "EDWARDS, JOSEPH E. & IONE R", "Address": "PO Box 9938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14400, "Improved_V": 123700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.567359764800003, "SHAPE_Area": 467.22072153200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363407.348300002515316, 254551.829500000923872 ], [ 363383.254199996590614, 254540.444299999624491 ], [ 363379.993000000715256, 254544.639499999582767 ], [ 363372.684000000357628, 254550.701400000602007 ], [ 363390.277300000190735, 254567.943999998271465 ], [ 363407.348300002515316, 254551.829500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403015100", "MAP": "D9-3652-T86", "PARCEL_NAM": "17-46", "ACRE": "0.58", "LONGITUDE": -64.91205948, "LATITUDE": 18.31977361, "OBJECTID_1": 33357, "PARCEL_NO_": "107403015100", "Tax_Legal_": "FRENCHMAN'S BAY 17-46 FRENCHMAN BAY QTR.", "Name": "GIBBS, BERECIA & BASCIL", "Address": "PO Box 4572", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.05371202200001, "SHAPE_Area": 1616.2054925699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360838.701099999248981, 254499.775600001215935 ], [ 360822.014899998903275, 254470.719200000166893 ], [ 360791.792900003492832, 254516.067999999970198 ], [ 360796.558899998664856, 254524.550799999386072 ], [ 360798.947200000286102, 254528.158900000154972 ], [ 360805.241300001740456, 254546.575599998235703 ], [ 360838.701099999248981, 254499.775600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89962167, "LATITUDE": 18.31990579, "OBJECTID_1": 37417, "PARCEL_NO_": "107404033200", "Tax_Legal_": "BOLONGO 27B FRENCHMAN BAY QTR", "Name": "ABBOTT, ROLSTON W. & GAIL J.", "Address": "P.O. BOX 2363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75500, "Improved_V": 134000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.99129250600001, "SHAPE_Area": 2440.1759342099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362172.950400002300739, 254533.916000001132488 ], [ 362155.488499999046326, 254501.264699999243021 ], [ 362140.856200002133846, 254515.077100001275539 ], [ 362127.899400003254414, 254521.515000000596046 ], [ 362110.137199997901917, 254524.113800000399351 ], [ 362098.852399997413158, 254523.599300000816584 ], [ 362092.414499998092651, 254522.068900000303984 ], [ 362090.5033999979496, 254557.094799999147654 ], [ 362133.291900001466274, 254551.112199999392033 ], [ 362172.950400002300739, 254533.916000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504042200", "MAP": "F9-3111-T73", "PARCEL_NAM": "3-109", "ACRE": "0.22", "LONGITUDE": -64.8826045, "LATITUDE": 18.31991275, "OBJECTID_1": 37800, "PARCEL_NO_": "107504042200", "Tax_Legal_": "3-109 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "VARLACK, ELIZABETH M., JACQUENETTE E. & YVONNE", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 36400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.008813221, "SHAPE_Area": 937.63807296000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363946.378700003027916, 254535.222600001841784 ], [ 363923.383299998939037, 254527.386599998921156 ], [ 363922.812100000679493, 254529.028299998492002 ], [ 363912.092699997127056, 254556.804900001734495 ], [ 363914.452299997210503, 254563.790300000458956 ], [ 363917.654200002551079, 254566.5608000010252 ], [ 363932.927400000393391, 254572.174199998378754 ], [ 363945.311599999666214, 254538.289500001817942 ], [ 363946.378700003027916, 254535.222600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88846655, "LATITUDE": 18.31997746, "OBJECTID_1": 37708, "PARCEL_NO_": "107504015000", "Tax_Legal_": "5-29 BOVONI FRENCHMAN BAY QTR", "Name": "STEVENS, V", "Address": "PO Box 6152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12000, "Improved_V": 118900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.843223887999997, "SHAPE_Area": 485.00642426000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363307.498599998652935, 254535.39130000025034 ], [ 363295.304999999701977, 254546.901700001209974 ], [ 363296.059199996292591, 254553.029599998146296 ], [ 363309.649599999189377, 254566.861900001764297 ], [ 363324.276500001549721, 254553.682700000703335 ], [ 363307.498599998652935, 254535.39130000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403015800", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-54", "ACRE": "0.57", "LONGITUDE": -64.91401287, "LATITUDE": 18.31984889, "OBJECTID_1": 33364, "PARCEL_NO_": "107403015800", "Tax_Legal_": "FRENCHMAN BAY 17-54 FRENCHMAN BAY QTR.", "Name": "MALONE, RICHARD", "Address": "PO Box 727", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 66600, "Improved_V": 510300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.22526772099999, "SHAPE_Area": 2178.3983806900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360643.454800002276897, 254512.109700001776218 ], [ 360629.135399997234344, 254489.194400001317263 ], [ 360638.893799997866154, 254479.563999999314547 ], [ 360625.944300003349781, 254485.157499998807907 ], [ 360612.973200000822544, 254493.284000001847744 ], [ 360605.689400002360344, 254496.390799999237061 ], [ 360578.145300000905991, 254511.364100001752377 ], [ 360572.396799996495247, 254523.560499999672174 ], [ 360598.026199996471405, 254544.035199999809265 ], [ 360643.454800002276897, 254512.109700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403013300", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-34", "ACRE": "0.54", "LONGITUDE": -64.91287568, "LATITUDE": 18.31983165, "OBJECTID_1": 33324, "PARCEL_NO_": "107403013300", "Tax_Legal_": "17-34 ESTATE FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "SMITH, PAUL L. & DEBARAH A. L", "Address": "PO Box 10581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.2866202, "SHAPE_Area": 2778.80451584 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360737.238799996674061, 254483.324200000613928 ], [ 360702.473899997770786, 254494.016499999910593 ], [ 360701.248599998652935, 254543.191300000995398 ], [ 360713.357600003480911, 254541.601700000464916 ], [ 360715.778399996459484, 254541.410399999469519 ], [ 360731.105499997735023, 254540.691500000655651 ], [ 360736.738899998366833, 254542.004099998623133 ], [ 360741.553400002419949, 254544.78770000115037 ], [ 360762.920299999415874, 254497.677700001746416 ], [ 360756.516599997878075, 254492.136799998581409 ], [ 360737.238799996674061, 254483.324200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90439121, "LATITUDE": 18.31983368, "OBJECTID_1": 37330, "PARCEL_NO_": "107404022700", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 21-69 FRENCHMANS BAY", "Name": "THOMAS, BERNARD & ROSAMUND", "Address": "PO Box 7861", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 86200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.45133664100001, "SHAPE_Area": 3320.4023443599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361656.84570000320673, 254537.291299998760223 ], [ 361680.387000001966953, 254518.907800000160933 ], [ 361671.616499997675419, 254507.225900001823902 ], [ 361580.555299997329712, 254500.358800001442432 ], [ 361571.506099998950958, 254521.394099999219179 ], [ 361626.1266999989748, 254546.328000001609325 ], [ 361645.481799997389317, 254546.064300000667572 ], [ 361650.352099999785423, 254542.304400000721216 ], [ 361656.84570000320673, 254537.291299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88806118, "LATITUDE": 18.31990441, "OBJECTID_1": 37705, "PARCEL_NO_": "107504014700", "Tax_Legal_": "5-32 BOVONI FRENCHMAN BAY QTR", "Name": "STEPHENS, WILLIAM & H I", "Address": "PO Box 11571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 138000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.997807222800006, "SHAPE_Area": 418.71049456700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363366.283900000154972, 254544.738400001078844 ], [ 363351.095200002193451, 254529.204199999570847 ], [ 363337.278200000524521, 254541.9679000005126 ], [ 363351.655199997127056, 254558.128600001335144 ], [ 363366.283900000154972, 254544.738400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403016000", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-65", "ACRE": "0.73", "LONGITUDE": -64.91508933, "LATITUDE": 18.31971791, "OBJECTID_1": 33366, "PARCEL_NO_": "107403016000", "Tax_Legal_": "FRENCHMNA'S BAY 17-65 FRENCHMANS BAY QTR.", "Name": "NAPARTE LLC", "Address": "P O BOX 3457 F'STED", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 68500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.823322636, "SHAPE_Area": 2819.4858662500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360509.443300001323223, 254530.22239999845624 ], [ 360505.442299999296665, 254526.601100001484156 ], [ 360503.093500003218651, 254518.349199999123812 ], [ 360541.461300000548363, 254463.356699999421835 ], [ 360464.676399998366833, 254484.470899999141693 ], [ 360463.053000003099442, 254485.724199999123812 ], [ 360470.704300001263618, 254534.127199999988079 ], [ 360485.241300001740456, 254531.502000000327826 ], [ 360505.402699999511242, 254531.244800001382828 ], [ 360509.443300001323223, 254530.22239999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404030900", "MAP": "A9-138-T70", "PARCEL_NAM": "100", "ACRE": "0.50", "LONGITUDE": -64.90180572, "LATITUDE": 18.31975304, "OBJECTID_1": 37394, "PARCEL_NO_": "107404030900", "Tax_Legal_": "BOLONGO BAY #100 FRENCHMAN'S BAY QTR.", "Name": "DAVIS, WILLIAM A", "Address": "PO Box 9652", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69500, "Improved_V": 133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.85888192499999, "SHAPE_Area": 1926.91584395 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361925.70380000025034, 254497.695300001651049 ], [ 361887.920400001108646, 254484.087200000882149 ], [ 361873.794100001454353, 254533.156300000846386 ], [ 361909.173000000417233, 254545.056000001728535 ], [ 361912.500699996948242, 254533.050900001078844 ], [ 361919.105899997055531, 254514.9510000012815 ], [ 361920.779600001871586, 254507.787500001490116 ], [ 361925.70380000025034, 254497.695300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89541371, "LATITUDE": 18.31972714, "OBJECTID_1": 37563, "PARCEL_NO_": "107503014800", "Tax_Legal_": "61-25 BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "CLEMENTE, SHERRY", "Address": "54 Beach Dr", "City": "Colonial Beach", "State": "Virginia", "Zip": 22443, "Country": "United States", "Land_Value": 48100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.64460663200001, "SHAPE_Area": 1613.9910539699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362600.412900000810623, 254523.693500000983477 ], [ 362582.067299999296665, 254500.111999999731779 ], [ 362569.288599997758865, 254485.653099998831749 ], [ 362561.96169999986887, 254493.825699999928474 ], [ 362561.142800003290176, 254495.296700000762939 ], [ 362559.517599999904633, 254496.760999999940395 ], [ 362558.693300001323223, 254498.865200001746416 ], [ 362548.907799996435642, 254511.661899998784065 ], [ 362580.026699997484684, 254550.33559999987483 ], [ 362583.300499998033047, 254544.662799999117851 ], [ 362600.412900000810623, 254523.693500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88833835, "LATITUDE": 18.31986241, "OBJECTID_1": 37709, "PARCEL_NO_": "107504015100", "Tax_Legal_": "5-28 BOVONI FRENCHMAN BAY QTR", "Name": "IVO A. & LEONORA C. DONOVAN LIV TR", "Address": "PO Box 304053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.643402156400001, "SHAPE_Area": 434.36903832399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363337.278200000524521, 254541.9679000005126 ], [ 363320.500299997627735, 254523.676500000059605 ], [ 363307.498599998652935, 254535.39130000025034 ], [ 363324.276500001549721, 254553.682700000703335 ], [ 363337.278200000524521, 254541.9679000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403016700", "MAP": "D9-3161-T86", "PARCEL_NAM": "17-52", "ACRE": "0.83", "LONGITUDE": -64.91453016, "LATITUDE": 18.3196268, "OBJECTID_1": 33373, "PARCEL_NO_": "107403016700", "Tax_Legal_": "FRENHCMAN'S BAY 17-52 FRENCHMAN BAY QTR.", "Name": "LAWSON, RICHARD", "Address": "PO Box 11534", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77100, "Improved_V": 159000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.861117799, "SHAPE_Area": 4039.02188733 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360541.461300000548363, 254463.356699999421835 ], [ 360503.093500003218651, 254518.349199999123812 ], [ 360505.442299999296665, 254526.601100001484156 ], [ 360509.443300001323223, 254530.22239999845624 ], [ 360526.417199999094009, 254525.50620000064373 ], [ 360545.023500002920628, 254518.481300000101328 ], [ 360574.185699999332428, 254502.888000000268221 ], [ 360600.104500003159046, 254489.379000000655651 ], [ 360590.766800001263618, 254449.616999998688698 ], [ 360577.833499997854233, 254453.3108000010252 ], [ 360541.461300000548363, 254463.356699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88760895, "LATITUDE": 18.31983403, "OBJECTID_1": 37701, "PARCEL_NO_": "107504014300", "Tax_Legal_": "5-38 BOVONI FRENCHMAN BAY QTR", "Name": "EURICE AGATHA NIBBS REVOCABLE LIVING TRUST", "Address": "PO Box 8434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13200, "Improved_V": 220900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.636015669100004, "SHAPE_Area": 586.19577953600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363416.386799998581409, 254532.060600001364946 ], [ 363390.680100001394749, 254520.662300001829863 ], [ 363383.254199996590614, 254540.444299999624491 ], [ 363407.348300002515316, 254551.829500000923872 ], [ 363416.386799998581409, 254532.060600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503017800", "MAP": "D9-1833-T81", "PARCEL_NAM": "27-K", "ACRE": ".515", "LONGITUDE": -64.89833612, "LATITUDE": 18.31961881, "OBJECTID_1": 37587, "PARCEL_NO_": "107503017800", "Tax_Legal_": "27-K ESTATE BOLONGO FRENCHMAN'S BAY QTR.", "Name": "FAHIE, BERNICE", "Address": "PO Box 503166", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39600, "Improved_V": 170100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.07313993599999, "SHAPE_Area": 1762.8356861499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362288.427500002086163, 254514.385099999606609 ], [ 362278.290700003504753, 254473.772199999541044 ], [ 362256.444799996912479, 254482.459300000220537 ], [ 362249.162799999117851, 254485.355000000447035 ], [ 362237.802500002086163, 254493.705800000578165 ], [ 362264.861100003123283, 254535.723799999803305 ], [ 362288.427500002086163, 254514.385099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88793158, "LATITUDE": 18.31978131, "OBJECTID_1": 37704, "PARCEL_NO_": "107504014600", "Tax_Legal_": "BOVONI ESTATE 5-33 WESTERN PART FRENCHMAN BAY QTR", "Name": "JOSHUA, AUSTIN & ELEANOR", "Address": "PO Box 692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12000, "Improved_V": 86400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.987580618099997, "SHAPE_Area": 409.85890109299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363374.539399996399879, 254522.218899998813868 ], [ 363364.100500002503395, 254517.067299999296665 ], [ 363351.095200002193451, 254529.204199999570847 ], [ 363366.283900000154972, 254544.738400001078844 ], [ 363374.41889999806881, 254536.361200001090765 ], [ 363376.056699998676777, 254533.419300001114607 ], [ 363376.915200002491474, 254527.30460000038147 ], [ 363374.539399996399879, 254522.218899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88867201, "LATITUDE": 18.31976164, "OBJECTID_1": 37735, "PARCEL_NO_": "107504020200", "Tax_Legal_": "BOVONI ESTATE 5-80 FRENCHMAN BAY QTR", "Name": "FREDERICO L. PEREZ & CHIVON C SASSO-PEREZ and CHYNIQUE D PEREZ", "Address": "PO Box 305512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035512, "Country": "United States", "Land_Value": 13200, "Improved_V": 95500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.329441539200005, "SHAPE_Area": 486.96371855799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363301.913800001144409, 254528.37950000166893 ], [ 363285.945799998939037, 254509.672600001096725 ], [ 363277.819700002670288, 254516.99439999833703 ], [ 363279.216499999165535, 254542.337000001221895 ], [ 363282.432800002396107, 254543.418800000101328 ], [ 363286.473300002515316, 254542.39640000090003 ], [ 363301.913800001144409, 254528.37950000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033300", "MAP": null, "PARCEL_NAM": "27-A", "ACRE": null, "LONGITUDE": -64.8991196, "LATITUDE": 18.31960674, "OBJECTID_1": 37418, "PARCEL_NO_": "107404033300", "Tax_Legal_": "BOLONGO 27A FRENCHMAN BAY QUARTER", "Name": "GORDON, ABASI ELROY", "Address": "PO Box 12154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70100, "Improved_V": 30000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.83515308700001, "SHAPE_Area": 2188.9530055099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362213.463899999856949, 254511.027300000190735 ], [ 362188.050300002098083, 254465.223099999129772 ], [ 362178.327799998223782, 254470.631999999284744 ], [ 362170.19990000128746, 254478.164799999445677 ], [ 362163.672100000083447, 254487.188400000333786 ], [ 362159.556000001728535, 254497.076099999248981 ], [ 362155.488499999046326, 254501.264699999243021 ], [ 362172.950400002300739, 254533.916000001132488 ], [ 362206.171099998056889, 254515.189500000327826 ], [ 362213.463899999856949, 254511.027300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88885224000001, "LATITUDE": 18.31975557, "OBJECTID_1": 37734, "PARCEL_NO_": "107504020100", "Tax_Legal_": "5-79 BOVONI FRENCHMAN BAY QTR", "Name": "Gafford Stout, Veronica Chambers & Jasmine Stout", "Address": "7240 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14400, "Improved_V": 39700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.500039133000001, "SHAPE_Area": 514.87521154199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363263.36540000140667, 254509.910000000149012 ], [ 363253.499099999666214, 254532.205099999904633 ], [ 363279.216499999165535, 254542.337000001221895 ], [ 363277.819700002670288, 254516.99439999833703 ], [ 363263.36540000140667, 254509.910000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89600883, "LATITUDE": 18.31960347, "OBJECTID_1": 37557, "PARCEL_NO_": "107503014200", "Tax_Legal_": "61-7 BOLONGO,FRENCHMANS BAY QTR.", "Name": "FRASER, JAMES", "Address": "PO Box 8476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45600, "Improved_V": 347100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.19688422900001, "SHAPE_Area": 2145.2950119699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362541.686999998986721, 254507.380899999290705 ], [ 362488.137000001966953, 254451.425000000745058 ], [ 362499.79110000282526, 254503.238299999386072 ], [ 362490.673500001430511, 254532.294599998742342 ], [ 362514.031400002539158, 254535.441100001335144 ], [ 362521.324199996888638, 254531.278900001198053 ], [ 362523.7449000030756, 254531.087600000202656 ], [ 362531.071900002658367, 254522.914900001138449 ], [ 362541.686999998986721, 254507.380899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88821238, "LATITUDE": 18.31975274, "OBJECTID_1": 37710, "PARCEL_NO_": "107504015200", "Tax_Legal_": "BOVONI 5-27 FRENCHMAN BAY QTR", "Name": "BAPTISTE, THELMA", "Address": "PO Box 9976", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 99400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.374813178500006, "SHAPE_Area": 457.177556197 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363351.095200002193451, 254529.204199999570847 ], [ 363334.311899997293949, 254511.546100001782179 ], [ 363320.500299997627735, 254523.676500000059605 ], [ 363337.278200000524521, 254541.9679000005126 ], [ 363351.095200002193451, 254529.204199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89691546, "LATITUDE": 18.31965397, "OBJECTID_1": 37555, "PARCEL_NO_": "107503014000", "Tax_Legal_": "BOLONGO 61-5 FRENCHMAN BAY QTR.", "Name": "ANDREW, VANIA I", "Address": "PO Box 10263", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49400, "Improved_V": 222200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.95475131500001, "SHAPE_Area": 2555.4938639699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362457.688400000333786, 254523.369800001382828 ], [ 362447.45269999653101, 254494.366200000047684 ], [ 362430.602899998426437, 254484.51799999922514 ], [ 362424.123599998652935, 254487.842399999499321 ], [ 362423.335299998521805, 254485.725099999457598 ], [ 362420.934299997985363, 254483.594500001519918 ], [ 362415.290100000798702, 254483.548300001770258 ], [ 362390.982100002467632, 254497.281500000506639 ], [ 362386.930699996650219, 254499.57039999961853 ], [ 362364.222699999809265, 254514.794300001114607 ], [ 362360.977700002491474, 254517.089800000190735 ], [ 362385.980599999427795, 254516.450100000947714 ], [ 362400.352099999785423, 254533.244100000709295 ], [ 362412.49719999730587, 254527.432900000363588 ], [ 362427.045000001788139, 254523.541200000792742 ], [ 362439.152199998497963, 254522.162599999457598 ], [ 362457.688400000333786, 254523.369800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89639417, "LATITUDE": 18.31951809, "OBJECTID_1": 37556, "PARCEL_NO_": "107503014100", "Tax_Legal_": "BOLONGO 61-6 FRENCHMAN BAY QTR.", "Name": "COOPER, VERNER & LEWIS, CHERYL", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 41500, "Improved_V": 223300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.052373147, "SHAPE_Area": 3155.5621833700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362488.137000001966953, 254451.425000000745058 ], [ 362477.56139999628067, 254462.31529999896884 ], [ 362471.888400003314018, 254465.64640000090003 ], [ 362467.039800003170967, 254466.873199999332428 ], [ 362452.513599999248981, 254468.23200000077486 ], [ 362441.196400001645088, 254471.5168999992311 ], [ 362433.091899998486042, 254476.305700000375509 ], [ 362429.852300003170967, 254477.9679000005126 ], [ 362429.8091000020504, 254483.0337999984622 ], [ 362430.602899998426437, 254484.51799999922514 ], [ 362447.45269999653101, 254494.366200000047684 ], [ 362457.688400000333786, 254523.369800001382828 ], [ 362472.983199998736382, 254526.450300000607967 ], [ 362482.626599997282028, 254530.328899998217821 ], [ 362490.673500001430511, 254532.294599998742342 ], [ 362499.79110000282526, 254503.238299999386072 ], [ 362488.137000001966953, 254451.425000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91030434, "LATITUDE": 18.3195695, "OBJECTID_1": 37200, "PARCEL_NO_": "107403025200", "Tax_Legal_": "FRENHCMAN'S BAY 15-67 FRENCHMAN'S BAY QTR.", "Name": "BENJAMIN, CONCHITA, ACACIA & JOHN", "Address": "PO Box 8815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.52133874499998, "SHAPE_Area": 3345.4269611599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361049.389600001275539, 254473.21339999884367 ], [ 361045.394000001251698, 254468.958799999207258 ], [ 361032.561300002038479, 254460.83219999819994 ], [ 361026.936899997293949, 254458.464200001209974 ], [ 361017.279200002551079, 254456.27419999986887 ], [ 361016.408100001513958, 254463.866399999707937 ], [ 360980.100699998438358, 254466.313499998301268 ], [ 360946.700199998915195, 254506.147900000214577 ], [ 360958.785899996757507, 254507.302299998700619 ], [ 360974.112999998033047, 254506.583399999886751 ], [ 360983.769000001251698, 254508.984400000423193 ], [ 360988.597900003194809, 254510.0793999992311 ], [ 360995.834899999201298, 254512.460700001567602 ], [ 361005.453100003302097, 254519.294399999082088 ], [ 361049.389600001275539, 254473.21339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403015300", "MAP": "D9-3652-T86", "PARCEL_NAM": "17-47", "ACRE": "0.56", "LONGITUDE": -64.91224351, "LATITUDE": 18.31947666, "OBJECTID_1": 33359, "PARCEL_NO_": "107403015300", "Tax_Legal_": "FRENCHMAN'S BAY 17-47 FRENCHMAN BAY QTR.", "Name": "MAYNARD, PAUL V", "Address": "PO Box 11125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 173200, "Improved_V": 423400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.06775744199999, "SHAPE_Area": 2208.5244801099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360802.139399997889996, 254437.414799999445677 ], [ 360797.389600001275539, 254427.032400000840425 ], [ 360770.222099997103214, 254492.460099998861551 ], [ 360776.609600000083447, 254499.900600001215935 ], [ 360788.61259999871254, 254510.764699999243021 ], [ 360791.792900003492832, 254516.067999999970198 ], [ 360822.014899998903275, 254470.719200000166893 ], [ 360807.715199999511242, 254445.48200000077486 ], [ 360805.301700003445148, 254444.828999999910593 ], [ 360803.681900002062321, 254445.660100001841784 ], [ 360802.103399999439716, 254441.636399999260902 ], [ 360803.725000001490116, 254440.594200000166893 ], [ 360802.139399997889996, 254437.414799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89752057, "LATITUDE": 18.3195725, "OBJECTID_1": 37576, "PARCEL_NO_": "107503016700", "Tax_Legal_": "61-31A ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "JELIN LLC", "Address": "309 S Elk St", "City": "Sandusky", "State": "Michigan", "Zip": 48471, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.064510864, "SHAPE_Area": 1624.88305737 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362378.106200002133846, 254494.220800001174212 ], [ 362380.553999997675419, 254490.863299999386072 ], [ 362387.101599998772144, 254479.517900001257658 ], [ 362347.613799996674061, 254476.66160000115633 ], [ 362331.268200002610683, 254502.281199999153614 ], [ 362319.897100001573563, 254511.898400001227856 ], [ 362335.886699996888638, 254528.072399999946356 ], [ 362341.574000000953674, 254523.052700001746416 ], [ 362353.755000002682209, 254513.019900001585484 ], [ 362355.3783999979496, 254511.766699999570847 ], [ 362372.417099997401237, 254499.45160000026226 ], [ 362376.477399997413158, 254496.107299998402596 ], [ 362378.106200002133846, 254494.220800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404025300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90317815, "LATITUDE": 18.31954912, "OBJECTID_1": 37356, "PARCEL_NO_": "107404025300", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#54) 21-1 FRENCHMANS BAY", "Name": "SPRINGETTE, K. & ROLLINS, K. V", "Address": "PO Box 9607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.48962496, "SHAPE_Area": 2488.0081721800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361794.181400001049042, 254507.59569999948144 ], [ 361744.679099999368191, 254449.77309999987483 ], [ 361738.972000002861023, 254457.114700000733137 ], [ 361737.339599996805191, 254459.423300001770258 ], [ 361730.792000003159046, 254470.768800001591444 ], [ 361732.782899998128414, 254521.025400001555681 ], [ 361794.181400001049042, 254507.59569999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403015900", "MAP": "D9-3516-T86", "PARCEL_NAM": "17-53", "ACRE": "0.58", "LONGITUDE": -64.91339306, "LATITUDE": 18.31960761, "OBJECTID_1": 33365, "PARCEL_NO_": "107403015900", "Tax_Legal_": "FRENCHMAN BAY 17-53 FRENCHMAN BAY QTR.", "Name": "NEUBURGER, JACKIE", "Address": "EST DOROTHEA #3C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67400, "Improved_V": 496800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.61716447399999, "SHAPE_Area": 2363.3278137000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360643.454800002276897, 254512.109700001776218 ], [ 360650.73139999806881, 254509.847300000488758 ], [ 360702.473899997770786, 254494.016499999910593 ], [ 360737.238799996674061, 254483.324200000613928 ], [ 360702.6537000015378, 254472.908700000494719 ], [ 360691.377899996936321, 254471.338700000196695 ], [ 360674.434500001370907, 254472.466600000858307 ], [ 360647.786700002849102, 254476.892599999904633 ], [ 360638.893799997866154, 254479.563999999314547 ], [ 360629.135399997234344, 254489.194400001317263 ], [ 360643.454800002276897, 254512.109700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601041500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87503528000001, "LATITUDE": 18.32310976, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.45293313499999, "SHAPE_Area": 561.93932126100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364726.029899999499321, 254898.894299998879433 ], [ 364702.648599997162819, 254898.491799999028444 ], [ 364737.838699996471405, 254932.554800000041723 ], [ 364736.457999996840954, 254905.312399998307228 ], [ 364736.512000001966953, 254898.980099998414516 ], [ 364726.029899999499321, 254898.894299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503037900", "MAP": "D9-4151-T87", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89896424, "LATITUDE": 18.32279838, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.514127401, "SHAPE_Area": 1893.72683977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362218.174400001764297, 254809.974399998784065 ], [ 362182.401799999177456, 254844.300900001078844 ], [ 362169.173500001430511, 254882.611699998378754 ], [ 362168.336599998176098, 254886.193399999290705 ], [ 362184.500600002706051, 254881.892799999564886 ], [ 362204.645900003612041, 254883.535300001502037 ], [ 362203.871899999678135, 254879.729299999773502 ], [ 362212.984099999070168, 254851.306200001388788 ], [ 362214.620099999010563, 254848.575399998575449 ], [ 362217.161300003528595, 254834.241799999028444 ], [ 362218.034199997782707, 254826.438499998301268 ], [ 362218.174400001764297, 254809.974399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107503049900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89168282, "LATITUDE": 18.32199944, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1287.4280544000001, "SHAPE_Area": 5792.9721852100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362935.113300003111362, 254868.049400001764297 ], [ 362945.212300002574921, 254869.491900000721216 ], [ 362950.73309999704361, 254860.510800000280142 ], [ 362956.406000003218651, 254857.179699998348951 ], [ 362970.181699998676777, 254849.270899999886751 ], [ 362978.298699997365475, 254843.00450000166893 ], [ 362990.472499996423721, 254833.815999999642372 ], [ 362996.975199997425079, 254827.747499998658895 ], [ 363016.565800003707409, 254799.832400001585484 ], [ 363022.274800002574921, 254792.279800001531839 ], [ 363024.724299997091293, 254788.711199998855591 ], [ 363029.632299996912479, 254780.518800001591444 ], [ 363031.253899998962879, 254779.476599998772144 ], [ 363032.893500000238419, 254776.323600001633167 ], [ 363040.220399998128414, 254768.15089999884367 ], [ 363045.117600001394749, 254761.224899999797344 ], [ 363047.561800003051758, 254758.289599999785423 ], [ 363059.782300002872944, 254743.613099999725819 ], [ 363076.892899997532368, 254722.854800000786781 ], [ 363098.076399996876717, 254697.27479999884963 ], [ 363102.964599996805191, 254691.404199998825788 ], [ 363104.591600000858307, 254689.728799998760223 ], [ 363109.463699996471405, 254685.75789999961853 ], [ 363115.14019999653101, 254682.004599999636412 ], [ 363104.695900000631809, 254677.486200001090765 ], [ 363100.633799999952316, 254681.041499998420477 ], [ 363095.754600003361702, 254685.856800001114607 ], [ 363085.166400000452995, 254698.224599998444319 ], [ 363077.018799997866154, 254708.079300001263618 ], [ 363064.79280000180006, 254723.38910000026226 ], [ 363047.6858000010252, 254743.72520000115037 ], [ 363024.859099999070168, 254772.880300000309944 ], [ 363023.237499997019768, 254773.922499999403954 ], [ 363019.967299997806549, 254779.173099998384714 ], [ 363014.249399997293949, 254787.781100001186132 ], [ 363009.359399996697903, 254793.862799998372793 ], [ 363006.105400003492832, 254797.213700000196695 ], [ 362997.921700000762939, 254811.28999999910593 ], [ 362995.472199998795986, 254814.858500000089407 ], [ 362991.399300001561642, 254819.680300001055002 ], [ 362988.138099998235703, 254823.875500001013279 ], [ 362965.410300001502037, 254841.421399999409914 ], [ 362952.444600000977516, 254848.914599999785423 ], [ 362950.839100003242493, 254848.057100001722574 ], [ 362950.885899998247623, 254842.569099999964237 ], [ 362955.799300000071526, 254833.743299998342991 ], [ 362960.78999999910593, 254815.8412000015378 ], [ 362962.614799998700619, 254790.94709999859333 ], [ 362965.254900000989437, 254765.004200000315905 ], [ 362966.199699997901917, 254748.757800001651049 ], [ 362964.64639999717474, 254741.778999999165535 ], [ 362963.87610000371933, 254737.550799999386072 ], [ 362963.098499998450279, 254734.166900001466274 ], [ 362960.756899997591972, 254725.070700000971556 ], [ 362959.176700003445148, 254721.258099999278784 ], [ 362956.010799996554852, 254714.266100000590086 ], [ 362944.005999997258186, 254703.613200001418591 ], [ 362934.402199998497963, 254695.090799998492002 ], [ 362927.976800002157688, 254692.082899998873472 ], [ 362922.348800003528595, 254690.136999998241663 ], [ 362916.715400002896786, 254688.824400000274181 ], [ 362908.66669999808073, 254687.069699998944998 ], [ 362906.242399998009205, 254687.683200001716614 ], [ 362900.61259999871254, 254685.948399998247623 ], [ 362898.951399996876717, 254691.634300000965595 ], [ 362902.972199998795986, 254692.933800000697374 ], [ 362902.945200003683567, 254696.099899999797344 ], [ 362909.205099999904633, 254718.527100000530481 ], [ 362910.756599999964237, 254725.717000000178814 ], [ 362912.291900001466274, 254734.806600000709295 ], [ 362912.275700002908707, 254736.706300001591444 ], [ 362912.178599998354912, 254748.104499999433756 ], [ 362912.106700003147125, 254756.547699999064207 ], [ 362912.06530000269413, 254761.402499999850988 ], [ 362910.436499997973442, 254763.289000000804663 ], [ 362900.588100001215935, 254783.473400000482798 ], [ 362890.725299999117851, 254805.346400000154972 ], [ 362889.080399997532368, 254809.132599998265505 ], [ 362884.951700001955032, 254820.497900001704693 ], [ 362882.423100002110004, 254833.353900000452995 ], [ 362874.379699997603893, 254830.965999998152256 ], [ 362872.684399999678135, 254840.662399999797344 ], [ 362879.92679999768734, 254842.410500001162291 ], [ 362877.385600000619888, 254856.743999999016523 ], [ 362886.237000003457069, 254858.927400000393391 ], [ 362891.281700000166893, 254834.692899998277426 ], [ 362892.138400003314018, 254828.789299998432398 ], [ 362893.803099997341633, 254822.681200001388788 ], [ 362895.457099996507168, 254817.839600000530481 ], [ 362897.929999999701977, 254811.527100000530481 ], [ 362899.576800003647804, 254807.529800001531839 ], [ 362910.245899997651577, 254785.663400001823902 ], [ 362920.099600002169609, 254764.84569999948144 ], [ 362921.760799996554852, 254759.159800000488758 ], [ 362922.689400002360344, 254744.813099998980761 ], [ 362920.428700000047684, 254726.218299999833107 ], [ 362913.423600003123283, 254696.607900001108646 ], [ 362919.865199998021126, 254697.716099999845028 ], [ 362927.093199998140335, 254701.152699999511242 ], [ 362944.706200003623962, 254716.073399998247623 ], [ 362951.07940000295639, 254725.202599998563528 ], [ 362954.241700001060963, 254732.616799999028444 ], [ 362956.563500002026558, 254744.034800000488758 ], [ 362957.279899999499321, 254754.595400001853704 ], [ 362956.428700000047684, 254759.865699999034405 ], [ 362953.738200001418591, 254791.718800000846386 ], [ 362951.1233000010252, 254814.706599999219179 ], [ 362950.275600001215935, 254819.554900001734495 ], [ 362947.772100001573563, 254829.455800000578165 ], [ 362943.688400000333786, 254835.544100001454353 ], [ 362942.012900002300739, 254842.918600000441074 ], [ 362941.951700001955032, 254850.095300000160933 ], [ 362943.526600003242493, 254854.541200000792742 ], [ 362935.113300003111362, 254868.049400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404044400", "MAP": "D9-1834-T81", "PARCEL_NAM": "26-8", "ACRE": null, "LONGITUDE": -64.90107235000001, "LATITUDE": 18.32156999, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.167215981, "SHAPE_Area": 2555.4065858399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361998.635499998927116, 254739.57209999859333 ], [ 361984.298100002110004, 254718.767599999904633 ], [ 362003.305500000715256, 254664.672100000083447 ], [ 361977.352399997413158, 254682.191599998623133 ], [ 361961.958800002932549, 254690.720400001853704 ], [ 361948.707099996507168, 254731.775199998170137 ], [ 361966.219400003552437, 254758.51630000025034 ], [ 361973.512199997901917, 254754.354200001806021 ], [ 361998.635499998927116, 254739.57209999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043400", "MAP": "F9-3930-T57", "PARCEL_NAM": "3-54", "ACRE": "0.22", "LONGITUDE": -64.88264326, "LATITUDE": 18.32067677, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.411329366, "SHAPE_Area": 886.61078003600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363941.390399999916553, 254619.950599998235703 ], [ 363918.059500001370907, 254613.637899998575449 ], [ 363905.687899999320507, 254646.045099999755621 ], [ 363928.993600003421307, 254655.312899999320507 ], [ 363941.390399999916553, 254619.950599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404025400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90219871, "LATITUDE": 18.31951471, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 369.73265010900002, "SHAPE_Area": 5752.7537461000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361887.920400001108646, 254484.087200000882149 ], [ 361898.756700001657009, 254442.590399999171495 ], [ 361907.080600000917912, 254412.050000000745058 ], [ 361864.033100001513958, 254448.42790000140667 ], [ 361827.482900001108646, 254479.370600000023842 ], [ 361798.239900000393391, 254504.462499998509884 ], [ 361797.420999996364117, 254505.933499999344349 ], [ 361794.181400001049042, 254507.59569999948144 ], [ 361870.475400000810623, 254544.105999998748302 ], [ 361873.794100001454353, 254533.156300000846386 ], [ 361887.920400001108646, 254484.087200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403014800", "MAP": "D9-3652-T86", "PARCEL_NAM": "17-70", "ACRE": "0.57", "LONGITUDE": -64.9115226, "LATITUDE": 18.31952163, "OBJECTID_1": 33354, "PARCEL_NO_": "107403014800", "Tax_Legal_": "FRENCHMAN'S BAY 17-70 FRENCHMAN BAY QTR.", "Name": "LETTSOME, JASPER E. & BEVERLY", "Address": "PO Box 7712", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52200, "Improved_V": 366600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.66102875300001, "SHAPE_Area": 2617.8717848400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360908.185999996960163, 254483.667899999767542 ], [ 360901.829000003635883, 254472.638999998569489 ], [ 360896.242399998009205, 254465.838300000876188 ], [ 360882.704099997878075, 254445.884700000286102 ], [ 360835.668300002813339, 254477.163699999451637 ], [ 360845.99210000038147, 254495.824499998241663 ], [ 360853.177000001072884, 254504.326999999582767 ], [ 360857.982500001788139, 254508.166000001132488 ], [ 360864.418600000441074, 254509.907400000840425 ], [ 360868.42679999768734, 254512.684500001370907 ], [ 360870.059199996292591, 254510.375799998641014 ], [ 360908.185999996960163, 254483.667899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88751763, "LATITUDE": 18.31966812, "OBJECTID_1": 37702, "PARCEL_NO_": "107504014400", "Tax_Legal_": "BOVONI ESTATE 5-37 No.1&2 FRENCHMAN'S BAY QTR.", "Name": "HODGE, OLENCIA-LIFE ESTATE", "Address": "7281 Bovoni Homes No 5-37", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14400, "Improved_V": 123500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.433433256599997, "SHAPE_Area": 527.47137565100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363425.430600002408028, 254511.658599998801947 ], [ 363410.972699999809265, 254504.996399998664856 ], [ 363390.708800002932549, 254517.285000000149012 ], [ 363390.680100001394749, 254520.662300001829863 ], [ 363416.386799998581409, 254532.060600001364946 ], [ 363422.144199997186661, 254518.808899998664856 ], [ 363425.430600002408028, 254511.658599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89523092, "LATITUDE": 18.31949301, "OBJECTID_1": 37562, "PARCEL_NO_": "107503014700", "Tax_Legal_": "EST. BOLONGO 61-24 FRENCHMAN BAY QTR.", "Name": "OLIVACCE, JULIAN & DELPHINE D.", "Address": "PO Box 11611", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.19328097600001, "SHAPE_Area": 1354.17184604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362569.288599997758865, 254485.653099998831749 ], [ 362582.067299999296665, 254500.111999999731779 ], [ 362600.412900000810623, 254523.693500000983477 ], [ 362609.377700001001358, 254512.578999999910593 ], [ 362610.209200002253056, 254509.630399998277426 ], [ 362608.002400003373623, 254484.703299999237061 ], [ 362604.13629999756813, 254465.2511 ], [ 362600.083099998533726, 254467.750999998301268 ], [ 362598.490299999713898, 254465.416000001132488 ], [ 362595.265000000596046, 254465.389600001275539 ], [ 362577.416500002145767, 254478.120200000703335 ], [ 362569.288599997758865, 254485.653099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88808544, "LATITUDE": 18.31963867, "OBJECTID_1": 37711, "PARCEL_NO_": "107504015300", "Tax_Legal_": "BOVONI 5-26 FRENCHMAN BAY QTR", "Name": "ACOSTA, HONORATA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 93900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.937268954700002, "SHAPE_Area": 441.77200279 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363364.100500002503395, 254517.067299999296665 ], [ 363348.127099998295307, 254498.993599999696016 ], [ 363334.311899997293949, 254511.546100001782179 ], [ 363351.095200002193451, 254529.204199999570847 ], [ 363364.100500002503395, 254517.067299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88854555, "LATITUDE": 18.31963177, "OBJECTID_1": 37736, "PARCEL_NO_": "107504020300", "Tax_Legal_": "5-81 BOVONI FRENCHMAN BAY QTR", "Name": "PAYNE, C. & J. & S. & L", "Address": "7238 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.574618635500002, "SHAPE_Area": 447.98559505600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363315.729000002145767, 254515.826999999582767 ], [ 363298.949299998581409, 254497.746700000017881 ], [ 363296.512299999594688, 254499.837699998170137 ], [ 363285.945799998939037, 254509.672600001096725 ], [ 363301.913800001144409, 254528.37950000166893 ], [ 363315.729000002145767, 254515.826999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404038500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89974295, "LATITUDE": 18.31954005, "OBJECTID_1": 37453, "PARCEL_NO_": "107404038500", "Tax_Legal_": "EST. BOLONGO 3A FRENCHMAN'S BAY QTR", "Name": "MORRELL, LEO", "Address": "PO Box 7266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51500, "Improved_V": 324400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.50404122899999, "SHAPE_Area": 2675.6637475299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362111.562100000679493, 254451.509300000965595 ], [ 362111.529700003564358, 254455.308699999004602 ], [ 362107.35249999910593, 254472.373100001364946 ], [ 362100.806699998676777, 254483.507500000298023 ], [ 362091.044600002467632, 254493.560100000351667 ], [ 362074.8158999979496, 254505.459600001573563 ], [ 362075.584399998188019, 254509.898899998515844 ], [ 362088.444099999964237, 254514.859299998730421 ], [ 362101.321699999272823, 254517.70890000090003 ], [ 362115.030799999833107, 254517.609999999403954 ], [ 362126.337200000882149, 254515.591600000858307 ], [ 362132.810999996960163, 254512.900400001555681 ], [ 362139.299300000071526, 254508.520500000566244 ], [ 362142.556900002062321, 254504.747499998658895 ], [ 362153.116300001740456, 254495.756900001317263 ], [ 362155.583800002932549, 254490.077500000596046 ], [ 362111.562100000679493, 254451.509300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90800381, "LATITUDE": 18.31930582, "OBJECTID_1": 37172, "PARCEL_NO_": "107403021700", "Tax_Legal_": "FRENCHMAN'S BAY 15-34 FRENCHMAN'S BAY QTR", "Name": "BAIRD, GORDON J. & GERMAINE J.", "Address": "PO Box 10185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.61941141299999, "SHAPE_Area": 1846.92347335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361236.077600002288818, 254424.28999999910593 ], [ 361212.592000000178814, 254436.130100000649691 ], [ 361210.957800000905991, 254438.649900000542402 ], [ 361210.914599999785423, 254443.715799998492002 ], [ 361214.102099999785423, 254448.174800001084805 ], [ 361221.301399998366833, 254454.988699998706579 ], [ 361232.528599999845028, 254462.257800001651049 ], [ 361241.336900003254414, 254469.507100000977516 ], [ 361243.728900000452995, 254472.692999999970198 ], [ 361245.336099997162819, 254473.339499998837709 ], [ 361255.717500001192093, 254485.245700001716614 ], [ 361258.100500002503395, 254489.487100001424551 ], [ 361259.704099997878075, 254490.555700000375509 ], [ 361266.849399998784065, 254503.701900001615286 ], [ 361270.823399998247623, 254510.489500001072884 ], [ 361276.51799999922514, 254504.625399999320507 ], [ 361262.358599998056889, 254462.924100000411272 ], [ 361236.077600002288818, 254424.28999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503013600", "MAP": "D9-1833-T81", "PARCEL_NAM": "61-1", "ACRE": null, "LONGITUDE": -64.89788344, "LATITUDE": 18.31943965, "OBJECTID_1": 37551, "PARCEL_NO_": "107503013600", "Tax_Legal_": "BOLONGO 61-1 FRENCHMANS BAY QTR.", "Name": "BROWN, MALCOLM", "Address": "PO BOX 305758", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52200, "Improved_V": 179900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.806198679, "SHAPE_Area": 2753.8698450500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362288.427500002086163, 254514.385099999606609 ], [ 362290.05460000038147, 254512.709699999541044 ], [ 362294.140100002288818, 254506.410300001502037 ], [ 362296.616499997675419, 254499.675599999725819 ], [ 362304.65089999884367, 254503.11879999935627 ], [ 362304.631099998950958, 254505.440699998289347 ], [ 362307.033900000154972, 254507.360199999064207 ], [ 362305.381700001657009, 254511.990699999034405 ], [ 362312.584499999880791, 254518.382500000298023 ], [ 362319.897100001573563, 254511.898400001227856 ], [ 362331.268200002610683, 254502.281199999153614 ], [ 362347.613799996674061, 254476.66160000115633 ], [ 362349.251599997282028, 254473.719700001180172 ], [ 362334.118699997663498, 254451.642099998891354 ], [ 362278.290700003504753, 254473.772199999541044 ], [ 362288.427500002086163, 254514.385099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403026300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.910809, "LATITUDE": 18.31940134, "OBJECTID_1": 37211, "PARCEL_NO_": "107403026300", "Tax_Legal_": "FRENCHMAN'S BAY 15-78 FRENCHMAN'S ABY QTR.", "Name": "ASFOUR FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66800, "Improved_V": 256800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.84229883899999, "SHAPE_Area": 2435.1579130499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360980.100699998438358, 254466.313499998301268 ], [ 360957.666000001132488, 254449.453499998897314 ], [ 360959.39190000295639, 254436.168699998408556 ], [ 360930.393399998545647, 254432.553899999707937 ], [ 360926.909199997782707, 254462.922800000756979 ], [ 360929.105200000107288, 254489.116399999707937 ], [ 360929.071000002324581, 254493.126899998635054 ], [ 360930.663900002837181, 254495.462000001221895 ], [ 360933.858599998056889, 254499.076699998229742 ], [ 360946.700199998915195, 254506.147900000214577 ], [ 360980.100699998438358, 254466.313499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90942514, "LATITUDE": 18.31934487, "OBJECTID_1": 37175, "PARCEL_NO_": "107403022000", "Tax_Legal_": "FRENCHMAN'S BAY 15-39 FRENCHMAN'S BAY QTR.", "Name": "REY, SAMUEL A. and SANDRA K", "Address": "PO Box 11505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.62475957200002, "SHAPE_Area": 3273.0898468700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361107.852300003170967, 254425.773699998855591 ], [ 361062.740199998021126, 254420.549300000071526 ], [ 361060.933300003409386, 254443.332600001245737 ], [ 361097.489600002765656, 254506.32660000026226 ], [ 361105.550999999046326, 254506.603700000792742 ], [ 361111.202299997210503, 254505.805500000715256 ], [ 361135.443899996578693, 254499.882199998944998 ], [ 361103.561800003051758, 254456.135999999940395 ], [ 361107.852300003170967, 254425.773699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90976967, "LATITUDE": 18.31928982, "OBJECTID_1": 37176, "PARCEL_NO_": "107403022100", "Tax_Legal_": "FRENCHMAN'S BAY 15-40A FRENCHMAN'S BAY QTR.", "Name": "WHEATLEY, DARIEN L", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50500, "Improved_V": 145600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.73165962299998, "SHAPE_Area": 1875.76940382 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361062.740199998021126, 254420.549300000071526 ], [ 361023.13910000026226, 254430.990899998694658 ], [ 361021.388099998235703, 254447.230799999088049 ], [ 361025.434000000357628, 254445.575199998915195 ], [ 361027.073600001633167, 254442.422200001776218 ], [ 361035.10980000346899, 254445.654399998486042 ], [ 361035.862099997699261, 254451.993299998342991 ], [ 361050.29839999973774, 254461.188499998301268 ], [ 361058.295000001788139, 254469.064399998635054 ], [ 361063.878100000321865, 254476.287300001829863 ], [ 361066.253799997270107, 254481.372999999672174 ], [ 361076.609999999403954, 254496.234299998730421 ], [ 361081.413699999451637, 254500.284400001168251 ], [ 361087.031000003218651, 254503.496800001710653 ], [ 361097.489600002765656, 254506.32660000026226 ], [ 361060.933300003409386, 254443.332600001245737 ], [ 361062.740199998021126, 254420.549300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88792717, "LATITUDE": 18.3195219, "OBJECTID_1": 37712, "PARCEL_NO_": "107504015400", "Tax_Legal_": "BOVONI ESTATE 5-34 FRENCHMAN BAY QTR", "Name": "HYNDMAN, A. J. , D. J. & A. J", "Address": "PO Box 6461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16700, "Improved_V": 209700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.858638064, "SHAPE_Area": 713.50848999200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363381.079800002276897, 254511.717799998819828 ], [ 363370.858499996364117, 254481.025600001215935 ], [ 363368.446800000965595, 254480.161499999463558 ], [ 363348.127099998295307, 254498.993599999696016 ], [ 363364.100500002503395, 254517.067299999296665 ], [ 363374.539399996399879, 254522.218899998813868 ], [ 363373.769100002944469, 254517.990800000727177 ], [ 363375.408699996769428, 254514.837799999862909 ], [ 363377.035700000822544, 254513.162300001829863 ], [ 363381.079800002276897, 254511.717799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9077001, "LATITUDE": 18.31929381, "OBJECTID_1": 37171, "PARCEL_NO_": "107403021600", "Tax_Legal_": "FRENHCMAN'S BAY 15-35A FRENCHMAN'S BAY QTR", "Name": "BROWN, CAROLYN V", "Address": "PO Box 1371", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 93900, "Improved_V": 129200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 321.017777835, "SHAPE_Area": 3095.3044358100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361276.51799999922514, 254504.625399999320507 ], [ 361283.843099996447563, 254496.663800001144409 ], [ 361297.48929999768734, 254503.9527000002563 ], [ 361325.737199999392033, 254501.017499998211861 ], [ 361330.654200002551079, 254491.769600000232458 ], [ 361302.438699997961521, 254490.9054000005126 ], [ 361291.152099996805191, 254490.60190000012517 ], [ 361297.100199997425079, 254454.97580000013113 ], [ 361277.158100001513958, 254429.4814000017941 ], [ 361262.826099999248981, 254408.043600000441074 ], [ 361236.077600002288818, 254424.28999999910593 ], [ 361262.358599998056889, 254462.924100000411272 ], [ 361276.51799999922514, 254504.625399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90420923000001, "LATITUDE": 18.31951616, "OBJECTID_1": 37331, "PARCEL_NO_": "107404022800", "Tax_Legal_": "21-53 FRENCHMAN'S BAY (LOT #78) FRENCHMAN'S BAY QUARTER", "Name": "GILBERT, GLORIA VERONICA", "Address": "PO Box 1594", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68400, "Improved_V": 192800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.07406474700002, "SHAPE_Area": 3575.2052963599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361704.050599999725819, 254486.170899998396635 ], [ 361699.277500003576279, 254478.532400000840425 ], [ 361684.853699997067451, 254467.859700001776218 ], [ 361676.860799998044968, 254459.561599999666214 ], [ 361587.96679999679327, 254482.265500001609325 ], [ 361580.555299997329712, 254500.358800001442432 ], [ 361671.616499997675419, 254507.225900001823902 ], [ 361696.792000003159046, 254486.322500001639128 ], [ 361704.050599999725819, 254486.170899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90288391, "LATITUDE": 18.3193129, "OBJECTID_1": 37357, "PARCEL_NO_": "107404025500", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#53)21-2 FRENCHMANS BAY", "Name": "JOSEPH S PIERRE AND JERMINA J PIERRE FAMILY REVOC", "Address": "PO Box 7185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69300, "Improved_V": 174700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.369481127, "SHAPE_Area": 3263.8921918400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361827.482900001108646, 254479.370600000023842 ], [ 361773.941899999976158, 254422.359400000423193 ], [ 361767.44650000333786, 254427.583500001579523 ], [ 361754.446599997580051, 254439.08729999884963 ], [ 361752.007799997925758, 254441.389299999922514 ], [ 361744.679099999368191, 254449.77309999987483 ], [ 361794.181400001049042, 254507.59569999948144 ], [ 361797.420999996364117, 254505.933499999344349 ], [ 361798.239900000393391, 254504.462499998509884 ], [ 361827.482900001108646, 254479.370600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033400", "MAP": "F9-3894-T80", "PARCEL_NAM": "27-D", "ACRE": ".54", "LONGITUDE": -64.89875133, "LATITUDE": 18.31937991, "OBJECTID_1": 37419, "PARCEL_NO_": "107404033400", "Tax_Legal_": "EST. BOLONGO 27D FRENCHMAN BAY QTR.", "Name": "HULL, ZELDA", "Address": "PO Box 306186", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.08446196599999, "SHAPE_Area": 2418.5609946499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362256.444799996912479, 254482.459300000220537 ], [ 362230.984399996697903, 254442.143100000917912 ], [ 362222.070000000298023, 254447.347500000149012 ], [ 362214.759300000965595, 254453.62049999833107 ], [ 362208.276399999856949, 254457.36710000038147 ], [ 362188.050300002098083, 254465.223099999129772 ], [ 362213.463899999856949, 254511.027300000190735 ], [ 362219.944899998605251, 254507.491799999028444 ], [ 362237.802500002086163, 254493.705800000578165 ], [ 362249.162799999117851, 254485.355000000447035 ], [ 362256.444799996912479, 254482.459300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90114618, "LATITUDE": 18.31938559, "OBJECTID_1": 37465, "PARCEL_NO_": "107404040800", "Tax_Legal_": "EST. BOLONGO 105-5 FRENCHMAN'S BAY QTR.", "Name": "LEON TODMAN (LIFE ESTATE)", "Address": "PO Box 305117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035117, "Country": "United States", "Land_Value": 33500, "Improved_V": 169800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.356695196, "SHAPE_Area": 2319.7585506199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362006.743199996650219, 254450.44029999896884 ], [ 361980.097199998795986, 254454.655200000852346 ], [ 361961.604099996387959, 254448.382100000977516 ], [ 361950.200699999928474, 254461.798799999058247 ], [ 361930.48589999973774, 254504.278299998492002 ], [ 361931.270700000226498, 254506.817899998277426 ], [ 361945.060699999332428, 254497.220400001853704 ], [ 361961.156400002539158, 254500.940799999982119 ], [ 362000.07880000025034, 254475.505899999290705 ], [ 362006.743199996650219, 254450.44029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90901731, "LATITUDE": 18.31934467, "OBJECTID_1": 37174, "PARCEL_NO_": "107403021900", "Tax_Legal_": "FRENCHMAN'S BAY 15-38 FRENCHMAN'S BAY QTR", "Name": "REY, SAMUEL A. SANDRA K.", "Address": "PO Box 11505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82800, "Improved_V": 318000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.436532457, "SHAPE_Area": 3198.10741237 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361150.54730000346899, 254430.767200000584126 ], [ 361107.852300003170967, 254425.773699998855591 ], [ 361103.561800003051758, 254456.135999999940395 ], [ 361135.443899996578693, 254499.882199998944998 ], [ 361157.273599997162819, 254493.094799999147654 ], [ 361188.762999996542931, 254488.286299999803305 ], [ 361148.69370000064373, 254459.038499999791384 ], [ 361150.54730000346899, 254430.767200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88875031000001, "LATITUDE": 18.31952066, "OBJECTID_1": 37765, "PARCEL_NO_": "107504023300", "Tax_Legal_": "BOVONI 5-109 FRENCHMAN BAY QTR", "Name": "CLAXTON, REGINALD J", "Address": "116 Mermaid Ln", "City": "Bronx", "State": "New York", "Zip": 10473, "Country": "United States", "Land_Value": 19500, "Improved_V": 96200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.259574868499996, "SHAPE_Area": 625.42642977900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363296.512299999594688, 254499.837699998170137 ], [ 363280.538900002837181, 254481.763999998569489 ], [ 363271.597599998116493, 254490.13459999859333 ], [ 363263.36540000140667, 254509.910000000149012 ], [ 363277.819700002670288, 254516.99439999833703 ], [ 363285.945799998939037, 254509.672600001096725 ], [ 363296.512299999594688, 254499.837699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88747717, "LATITUDE": 18.31948536, "OBJECTID_1": 37703, "PARCEL_NO_": "107504014500", "Tax_Legal_": "5-36 BOVONI FRENCHMAN BAY QTR", "Name": "WALTERS, SR. CHARLES &", "Address": "PO Box 9691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25100, "Improved_V": 177000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.708077551, "SHAPE_Area": 819.71980118099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363436.10869999974966, 254488.736800000071526 ], [ 363423.23650000244379, 254485.253899998962879 ], [ 363403.085799999535084, 254484.244600001722574 ], [ 363399.794100001454353, 254492.028200000524521 ], [ 363390.708800002932549, 254517.285000000149012 ], [ 363410.972699999809265, 254504.996399998664856 ], [ 363425.430600002408028, 254511.658599998801947 ], [ 363436.10869999974966, 254488.736800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88841846, "LATITUDE": 18.31951849, "OBJECTID_1": 37737, "PARCEL_NO_": "107504020400", "Tax_Legal_": "5-82 BOVONI FRENCHMAN BAY QTR", "Name": "GEORGE, JUDITH M", "Address": "146-98 TUTU //GEORGE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13600, "Improved_V": 126900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.677379354799996, "SHAPE_Area": 460.15581099399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363329.542400002479553, 254503.485500000417233 ], [ 363312.764499999582767, 254485.194200001657009 ], [ 363311.139200001955032, 254486.658500000834465 ], [ 363298.949299998581409, 254497.746700000017881 ], [ 363315.729000002145767, 254515.826999999582767 ], [ 363329.542400002479553, 254503.485500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504024500", "MAP": "F9-2538-T70", "PARCEL_NAM": "5-35", "ACRE": ".12", "LONGITUDE": -64.88774261, "LATITUDE": 18.31948854, "OBJECTID_1": 37777, "PARCEL_NO_": "107504024500", "Tax_Legal_": "5-35 BOVONI FRENCHMAN BAY QTR", "Name": "KING, DAVID N", "Address": "PO Box 1322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.164935939, "SHAPE_Area": 520.91982963500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363399.794100001454353, 254492.028200000524521 ], [ 363370.858499996364117, 254481.025600001215935 ], [ 363381.079800002276897, 254511.717799998819828 ], [ 363385.914099998772144, 254512.179499998688698 ], [ 363388.320500001311302, 254513.676899999380112 ], [ 363390.708800002932549, 254517.285000000149012 ], [ 363399.794100001454353, 254492.028200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503014400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89587528, "LATITUDE": 18.31927233, "OBJECTID_1": 37559, "PARCEL_NO_": "107503014400", "Tax_Legal_": "EST. BOLONGO 61-9 FRENCHMAN BAY QTR.", "Name": "FELDEAR I WEBSTER REVOCABLE TRUST", "Address": "PO Box 11335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.37332167899999, "SHAPE_Area": 2581.9597269599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362563.684000000357628, 254480.963100001215935 ], [ 362512.533100001513958, 254427.348900001496077 ], [ 362501.154799997806549, 254437.810499999672174 ], [ 362500.334200002253056, 254439.492499999701977 ], [ 362488.137000001966953, 254451.425000000745058 ], [ 362541.686999998986721, 254507.380899999290705 ], [ 362557.177699998021126, 254487.45380000025034 ], [ 362563.684000000357628, 254480.963100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403015400", "MAP": "D9-3652-T86", "PARCEL_NAM": "17-48", "ACRE": "0.65", "LONGITUDE": -64.91253601, "LATITUDE": 18.31923129, "OBJECTID_1": 33360, "PARCEL_NO_": "107403015400", "Tax_Legal_": "FRENCHMAN'S BAY 17-48 FRENCHMAN BAY QTR.", "Name": "SERAPHIN, OCTAVE", "Address": "PO Box 1112", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.215106182, "SHAPE_Area": 3067.3917037599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360797.389600001275539, 254427.032400000840425 ], [ 360758.081699997186661, 254403.068199999630451 ], [ 360733.298900000751019, 254472.526200000196695 ], [ 360734.907999999821186, 254472.961599998176098 ], [ 360760.621899999678135, 254483.515599999576807 ], [ 360765.423799999058247, 254487.776799999177456 ], [ 360770.222099997103214, 254492.460099998861551 ], [ 360797.389600001275539, 254427.032400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107304012900", "MAP": "G9-1063-T49", "PARCEL_NAM": "5", "ACRE": "5.5", "LONGITUDE": -64.91701193, "LATITUDE": 18.31890857, "OBJECTID_1": 31732, "PARCEL_NO_": "107304012900", "Tax_Legal_": "ESTATE FRENCHMANS 5 BA FRENCHMANS BAY QTR", "Name": "SMITH, I & J", "Address": "PO Box 7625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 562700, "Improved_V": 367300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 574.48576946200001, "SHAPE_Area": 5358.2122588599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360240.888400003314018, 254439.576200000941753 ], [ 360247.708200000226498, 254490.927799999713898 ], [ 360248.546899996697903, 254487.135000001639128 ], [ 360252.688199996948242, 254474.292100001126528 ], [ 360253.526799999177456, 254470.499299999326468 ], [ 360257.792199999094009, 254443.092099998146296 ], [ 360261.890299998223782, 254435.315200001001358 ], [ 360269.206399999558926, 254428.408900000154972 ], [ 360271.636100001633167, 254427.162300001829863 ], [ 360288.638800002634525, 254419.068799998611212 ], [ 360303.9983000010252, 254414.550400000065565 ], [ 360306.420900002121925, 254414.14809999987483 ], [ 360318.529899999499321, 254412.558400001376867 ], [ 360342.715700000524521, 254413.178599998354912 ], [ 360355.62389999628067, 254412.439800001680851 ], [ 360379.0320999994874, 254409.676100000739098 ], [ 360353.66889999806881, 254357.96169999986887 ], [ 360351.199600003659725, 254363.852099999785423 ], [ 360349.42339999973774, 254383.047100000083447 ], [ 360346.975599996745586, 254386.404599998146296 ], [ 360345.355800002813339, 254387.235700000077486 ], [ 360341.324299998581409, 254387.2027000002563 ], [ 360330.813400000333786, 254390.494199998676777 ], [ 360321.128700003027916, 254391.470400001853704 ], [ 360319.525100000202656, 254390.401700001209974 ], [ 360321.204199999570847, 254382.605000000447035 ], [ 360317.179799996316433, 254381.727699998766184 ], [ 360308.287000000476837, 254384.39919999986887 ], [ 360305.832099996507168, 254388.600900001823902 ], [ 360305.805100001394749, 254391.767099998891354 ], [ 360301.753799997270107, 254394.056000001728535 ], [ 360292.1554000005126, 254384.900400001555681 ], [ 360289.730999998748302, 254385.513900000602007 ], [ 360289.707699999213219, 254388.25789999961853 ], [ 360292.879000000655651, 254394.616599999368191 ], [ 360292.859200000762939, 254396.938499998301268 ], [ 360290.429499998688698, 254398.185199998319149 ], [ 360286.396099999547005, 254398.363299999386072 ], [ 360282.393299996852875, 254394.953000001609325 ], [ 360282.474200002849102, 254385.454500000923872 ], [ 360277.648900002241135, 254383.937300000339746 ], [ 360275.221000000834465, 254384.972899999469519 ], [ 360275.12389999628067, 254396.371199999004602 ], [ 360273.487899996340275, 254399.102000001817942 ], [ 360270.253700003027916, 254400.131000000983477 ], [ 360265.442800000309944, 254396.925200000405312 ], [ 360265.478799998760223, 254392.703600000590086 ], [ 360262.39019999653101, 254376.635200001299381 ], [ 360255.167499996721745, 254372.56529999896884 ], [ 360251.938699997961521, 254372.961100000888109 ], [ 360250.282899998128414, 254378.013799998909235 ], [ 360248.657700002193451, 254379.478199999779463 ], [ 360238.985500000417233, 254378.976799998432398 ], [ 360235.700900003314018, 254385.916000001132488 ], [ 360237.917599998414516, 254421.642499998211861 ], [ 360240.888400003314018, 254439.576200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403015700", "MAP": "D9-3652-T86", "PARCEL_NAM": "17-51", "ACRE": "0.58", "LONGITUDE": -64.91388454, "LATITUDE": 18.31934494, "OBJECTID_1": 33363, "PARCEL_NO_": "107403015700", "Tax_Legal_": "FRENCHMAN'S BAY 17-51 FRENCHMAN BAY QTR.", "Name": "BIRR TRUST", "Address": "PO Box 302682", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.92932983099999, "SHAPE_Area": 2097.12511885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360651.90089999884367, 254467.215900000184774 ], [ 360652.195799998939037, 254432.598999999463558 ], [ 360590.766800001263618, 254449.616999998688698 ], [ 360600.104500003159046, 254489.379000000655651 ], [ 360607.395499996840954, 254485.42790000140667 ], [ 360622.79280000180006, 254476.47690000012517 ], [ 360630.88289999961853, 254473.3766999989748 ], [ 360643.015299998223782, 254469.043000001460314 ], [ 360645.439699999988079, 254468.42960000038147 ], [ 360651.90089999884367, 254467.215900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031000", "MAP": "A9-138-T70", "PARCEL_NAM": "99", "ACRE": "0.50", "LONGITUDE": -64.9016603, "LATITUDE": 18.3193462, "OBJECTID_1": 37395, "PARCEL_NO_": "107404031000", "Tax_Legal_": "BOLONGO 99 FRENCHMAN BAY QTR", "Name": "KENDALL, GLADYS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38300, "Improved_V": 219700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.16139172499999, "SHAPE_Area": 1930.83283089 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361944.599600002169609, 254456.686700001358986 ], [ 361898.756700001657009, 254442.590399999171495 ], [ 361887.920400001108646, 254484.087200000882149 ], [ 361925.70380000025034, 254497.695300001651049 ], [ 361944.599600002169609, 254456.686700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90853258, "LATITUDE": 18.3193111, "OBJECTID_1": 37173, "PARCEL_NO_": "107403021800", "Tax_Legal_": "15-37 FRENCHMAN'S BAY FRENCHMAN'S BAY QUARTER", "Name": "GERSHATOR, DAVID & PHILLIS (Trustees)", "Address": "P O BOX 3353", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71000, "Improved_V": 155800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.778114002, "SHAPE_Area": 3214.2804064000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361166.671700000762939, 254431.110199999064207 ], [ 361150.54730000346899, 254430.767200000584126 ], [ 361148.69370000064373, 254459.038499999791384 ], [ 361188.762999996542931, 254488.286299999803305 ], [ 361221.056800000369549, 254483.69539999961853 ], [ 361229.922700002789497, 254484.190200001001358 ], [ 361237.962399996817112, 254487.000199999660254 ], [ 361244.378799997270107, 254491.063499998301268 ], [ 361246.801299996674061, 254490.661100000143051 ], [ 361246.817500002682209, 254488.761399999260902 ], [ 361233.230700001120567, 254474.506999999284744 ], [ 361223.617799997329712, 254467.03999999910593 ], [ 361214.795199997723103, 254461.479400001466274 ], [ 361204.404799997806549, 254450.628600001335144 ], [ 361202.831699997186661, 254445.971599999815226 ], [ 361202.10809999704361, 254436.255399998277426 ], [ 361204.563000001013279, 254432.053599998354912 ], [ 361166.671700000762939, 254431.110199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90722092, "LATITUDE": 18.31913818, "OBJECTID_1": 37322, "PARCEL_NO_": "107404020400", "Tax_Legal_": "FRENCHMAN'S BAY 15-32 FRENCHMAN BAY QTR", "Name": "FRANCIS, E ARACELIS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82800, "Improved_V": 186300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.78123717400001, "SHAPE_Area": 3266.9613495600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361347.425999999046326, 254416.124299999326468 ], [ 361338.569200001657009, 254414.574200000613928 ], [ 361339.389799997210503, 254412.892099998891354 ], [ 361339.494099996984005, 254400.649599999189377 ], [ 361338.709399998188019, 254398.109999999403954 ], [ 361335.527300000190735, 254393.017700001597404 ], [ 361329.109200000762939, 254389.165500000119209 ], [ 361299.070600003004074, 254412.984299998730421 ], [ 361319.021600000560284, 254437.42339999973774 ], [ 361302.438699997961521, 254490.9054000005126 ], [ 361330.654200002551079, 254491.769600000232458 ], [ 361342.939499996602535, 254469.494300000369549 ], [ 361353.061200000345707, 254417.225900001823902 ], [ 361347.425999999046326, 254416.124299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403026600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9075119, "LATITUDE": 18.31903562, "OBJECTID_1": 37214, "PARCEL_NO_": "107403026600", "Tax_Legal_": "FRENCHMAN'S BAY 15-35 FRENCHMAN'S BAY QTR.", "Name": "GERSHATOR, DAVID & PHILLIS (Trustees)", "Address": "P O BOX 3353", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 109200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.83788530499999, "SHAPE_Area": 2639.82956655 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361329.109200000762939, 254389.165500000119209 ], [ 361321.857799999415874, 254388.472899999469519 ], [ 361282.280100002884865, 254396.170499999076128 ], [ 361262.826099999248981, 254408.043600000441074 ], [ 361277.158100001513958, 254429.4814000017941 ], [ 361297.100199997425079, 254454.97580000013113 ], [ 361291.152099996805191, 254490.60190000012517 ], [ 361302.438699997961521, 254490.9054000005126 ], [ 361319.021600000560284, 254437.42339999973774 ], [ 361299.070600003004074, 254412.984299998730421 ], [ 361329.109200000762939, 254389.165500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88829255, "LATITUDE": 18.3194066, "OBJECTID_1": 37738, "PARCEL_NO_": "107504020500", "Tax_Legal_": "BOVONI 5-83 FRENCHMAN BAY QTR", "Name": "DANIEL, LINETTA & CLAUDET MAHARAH & OTHERS", "Address": "9359 Cedarview Way", "City": "Elk Grove", "State": "California", "Zip": 95758, "Country": "United States", "Land_Value": 13000, "Improved_V": 100800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.219272039200007, "SHAPE_Area": 441.516908527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363342.547700002789497, 254491.348499998450279 ], [ 363325.76969999819994, 254473.057199999690056 ], [ 363312.764499999582767, 254485.194200001657009 ], [ 363329.542400002479553, 254503.485500000417233 ], [ 363342.547700002789497, 254491.348499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88859374, "LATITUDE": 18.3193725, "OBJECTID_1": 37764, "PARCEL_NO_": "107504023200", "Tax_Legal_": "BOVONI 5-108 FRENCHMAN BAY QTR", "Name": "WILKES, DIANA V.", "Address": "PO Box 8184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 96800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.619551258800001, "SHAPE_Area": 475.645266994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363311.139200001955032, 254486.658500000834465 ], [ 363295.165799997746944, 254468.584800001233816 ], [ 363280.538900002837181, 254481.763999998569489 ], [ 363296.512299999594688, 254499.837699998170137 ], [ 363298.949299998581409, 254497.746700000017881 ], [ 363311.139200001955032, 254486.658500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404038600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89951614, "LATITUDE": 18.31908224, "OBJECTID_1": 37454, "PARCEL_NO_": "107404038600", "Tax_Legal_": "EST. BOLONGO 3B FRENCHMAN'S BAY QTR.", "Name": "SR. , CONNOR, LIONEL A.", "Address": "PO Box 11843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.893633104, "SHAPE_Area": 3607.0287570700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362181.630300000309944, 254461.581999998539686 ], [ 362131.435000002384186, 254390.454799998551607 ], [ 362128.188199996948242, 254392.961399998515844 ], [ 362120.861299999058247, 254401.134100001305342 ], [ 362115.940700002014637, 254410.804099999368191 ], [ 362114.27589999884367, 254416.912200000137091 ], [ 362111.562100000679493, 254451.509300000965595 ], [ 362155.583800002932549, 254490.077500000596046 ], [ 362158.049500003457069, 254484.609299998730421 ], [ 362164.579099997878075, 254475.374600000679493 ], [ 362171.898800000548363, 254468.04619999974966 ], [ 362181.630300000309944, 254461.581999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403015000", "MAP": "D9-3652-T86", "PARCEL_NAM": "17-71", "ACRE": "0.57", "LONGITUDE": -64.91175783, "LATITUDE": 18.31917454, "OBJECTID_1": 33356, "PARCEL_NO_": "107403015000", "Tax_Legal_": "FRENCHMAN'S BAY 17-71 FRENCHMAN BAY QTR.", "Name": "JERMAINE PETTY", "Address": "PO Box 304812", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034812, "Country": "United States", "Land_Value": 59100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.72373623199999, "SHAPE_Area": 2603.8313585599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360877.508900001645088, 254435.9364 ], [ 360863.661899998784065, 254409.420699998736382 ], [ 360837.846699997782707, 254421.119699999690056 ], [ 360811.044799998402596, 254433.265799999237061 ], [ 360835.668300002813339, 254477.163699999451637 ], [ 360882.704099997878075, 254445.884700000286102 ], [ 360877.508900001645088, 254435.9364 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90442563000001, "LATITUDE": 18.31923038, "OBJECTID_1": 37332, "PARCEL_NO_": "107404022900", "Tax_Legal_": "FRENCHMAN'S BAY (LOT#77) 21-52 FRENCHMAN'S BAY", "Name": "HOWELL, CAROL D.", "Address": "PO Box 303576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.19329652299999, "SHAPE_Area": 3072.0722786800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361657.7195999994874, 254434.706999998539686 ], [ 361581.100199997425079, 254436.401999998837709 ], [ 361587.96679999679327, 254482.265500001609325 ], [ 361676.860799998044968, 254459.561599999666214 ], [ 361672.0641999989748, 254454.667199999094009 ], [ 361657.7195999994874, 254434.706999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91129446, "LATITUDE": 18.31897131, "OBJECTID_1": 37249, "PARCEL_NO_": "107403033600", "Tax_Legal_": "15-66 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "Charles M Wentzel and Deena Aly", "Address": "PO Box 600239", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8016239, "Country": "United States", "Land_Value": 97300, "Improved_V": 293400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.336437676, "SHAPE_Area": 2597.7031733600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360923.231899999082088, 254421.307300001382828 ], [ 360900.811599999666214, 254402.758699998259544 ], [ 360879.366599999368191, 254364.375199999660254 ], [ 360878.537000000476837, 254367.112700000405312 ], [ 360876.897399999201298, 254370.265599999576807 ], [ 360875.270300000905991, 254371.941100001335144 ], [ 360872.795699998736382, 254378.464699998497963 ], [ 360871.967799998819828, 254380.991099998354912 ], [ 360870.292199999094009, 254388.365600001066923 ], [ 360870.220299996435642, 254396.808800000697374 ], [ 360870.182499997317791, 254401.241399999707937 ], [ 360872.540299996733665, 254408.437899999320507 ], [ 360874.124200001358986, 254411.828400000929832 ], [ 360883.66330000013113, 254427.949599999934435 ], [ 360890.020300000905991, 254438.978399999439716 ], [ 360893.200599998235703, 254444.281800001859665 ], [ 360902.764799997210503, 254457.447900000959635 ], [ 360905.153200000524521, 254461.056000001728535 ], [ 360908.338899999856949, 254465.726199999451637 ], [ 360911.519199997186661, 254471.029500000178814 ], [ 360913.895000003278255, 254476.115200001746416 ], [ 360916.333700001239777, 254473.813200000673532 ], [ 360917.157999999821186, 254471.708999998867512 ], [ 360920.706900000572205, 254433.741200000047684 ], [ 360923.231899999082088, 254421.307300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503017100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89691808000001, "LATITUDE": 18.31912062, "OBJECTID_1": 37580, "PARCEL_NO_": "107503017100", "Tax_Legal_": "61-31E EST. BOLONGO FRENCHMANS BAY QTR.", "Name": "FAHIE, THEODORE A. & BENET A", "Address": "PO Box 10217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41600, "Improved_V": 244600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.52768199499999, "SHAPE_Area": 2062.4010442600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362448.539499998092651, 254461.444499999284744 ], [ 362427.0945999994874, 254423.061000000685453 ], [ 362423.865699999034405, 254423.456799998879433 ], [ 362381.091600000858307, 254427.750799998641014 ], [ 362381.870999999344349, 254430.923599999397993 ], [ 362393.877499997615814, 254441.36540000140667 ], [ 362397.075800001621246, 254444.55799999833107 ], [ 362402.662500001490116, 254451.35869999974966 ], [ 362404.244499996304512, 254454.960200000554323 ], [ 362405.025600001215935, 254457.921900000423193 ], [ 362403.303300000727177, 254470.784600000828505 ], [ 362393.51969999819994, 254483.370099999010563 ], [ 362394.300800003111362, 254486.331799998879433 ], [ 362431.558399997651577, 254467.004999998956919 ], [ 362442.879199996590614, 254463.298000000417233 ], [ 362448.539499998092651, 254461.444499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403015500", "MAP": "D9-3652-T86", "PARCEL_NAM": "17-49", "ACRE": "0.54", "LONGITUDE": -64.91288006000001, "LATITUDE": 18.31915122, "OBJECTID_1": 33361, "PARCEL_NO_": "107403015500", "Tax_Legal_": "ESTATE FRECNHMAN'S BAY 17-49 FRENCHMAN'S BAY QTR.", "Name": "BRENNAN, NOELLE EDWARDS", "Address": "254 CAMINO TOLUCA", "City": "Camarillo", "State": "California", "Zip": 93010, "Country": "United States", "Land_Value": 64000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.836995903, "SHAPE_Area": 2109.71937398 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360758.081699997186661, 254403.068199999630451 ], [ 360718.475299999117851, 254414.14299999922514 ], [ 360701.118400000035763, 254463.819099999964237 ], [ 360705.142700001597404, 254464.696400001645088 ], [ 360733.298900000751019, 254472.526200000196695 ], [ 360758.081699997186661, 254403.068199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90256231, "LATITUDE": 18.31907237, "OBJECTID_1": 37358, "PARCEL_NO_": "107404025600", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#52)21-3 FRENCHMANS BAY", "Name": "ROGERS, JR, ROCHER and MILLENER F", "Address": "PO BOX 10183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.51674646399999, "SHAPE_Area": 3365.9345999400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361864.033100001513958, 254448.42790000140667 ], [ 361826.447499997913837, 254411.601100001484156 ], [ 361820.00959999859333, 254410.070799998939037 ], [ 361798.280500002205372, 254405.037799999117851 ], [ 361787.735500000417233, 254412.339800000190735 ], [ 361773.941899999976158, 254422.359400000423193 ], [ 361827.482900001108646, 254479.370600000023842 ], [ 361864.033100001513958, 254448.42790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033500", "MAP": "F9-3894-T80", "PARCEL_NAM": "27-E", "ACRE": ".81", "LONGITUDE": -64.8982352, "LATITUDE": 18.31916696, "OBJECTID_1": 37420, "PARCEL_NO_": "107404033500", "Tax_Legal_": "BOLONGO 27E FRENCHMAN BAY QTR", "Name": "SAUNDERS, CHI CHI", "Address": "2150 N Lincoln Park W", "City": "CHICAGO", "State": "Illinois", "Zip": 60614, "Country": "United States", "Land_Value": 60200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.47266047100001, "SHAPE_Area": 2934.7158769299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362334.118699997663498, 254451.642099998891354 ], [ 362310.044399999082088, 254437.935100000351667 ], [ 362286.697300001978874, 254433.522100001573563 ], [ 362281.879199996590614, 254431.160599999129772 ], [ 362250.395300000905991, 254435.335900001227856 ], [ 362237.461900003254414, 254439.029800001531839 ], [ 362230.984399996697903, 254442.143100000917912 ], [ 362256.444799996912479, 254482.459300000220537 ], [ 362278.290700003504753, 254473.772199999541044 ], [ 362334.118699997663498, 254451.642099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88816418, "LATITUDE": 18.31929391, "OBJECTID_1": 37739, "PARCEL_NO_": "107504020600", "Tax_Legal_": "5-84 BOVONI FRENCHMAN BAY QTR", "Name": "MUSSENDEN, PAUL A., ANGELA E. & YANES, YVONNE E. A.", "Address": "3100 Corinth Ave", "City": "Los Angeles", "State": "California", "Zip": 90066, "Country": "United States", "Land_Value": 13600, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.137428615100006, "SHAPE_Area": 467.56065804399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363356.361100003123283, 254479.007100000977516 ], [ 363341.197599999606609, 254460.517799999564886 ], [ 363325.76969999819994, 254473.057199999690056 ], [ 363342.547700002789497, 254491.348499998450279 ], [ 363356.361100003123283, 254479.007100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504015600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88770619, "LATITUDE": 18.31930724, "OBJECTID_1": 37713, "PARCEL_NO_": "107504015600", "Tax_Legal_": "WEST BOVONI 5-25 FRENCHMAN BAY QTR", "Name": "CALLWOOD, KENNETH & BEATRCE", "Address": "7295 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16700, "Improved_V": 151700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.666450443, "SHAPE_Area": 591.98197748099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363403.085799999535084, 254484.244600001722574 ], [ 363407.210900001227856, 254473.301500000059605 ], [ 363383.100699998438358, 254463.816100001335144 ], [ 363374.943999998271465, 254474.726199999451637 ], [ 363368.446800000965595, 254480.161499999463558 ], [ 363370.858499996364117, 254481.025600001215935 ], [ 363399.794100001454353, 254492.028200000524521 ], [ 363403.085799999535084, 254484.244600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403015600", "MAP": "D9-3652-T86", "PARCEL_NAM": "17-50", "ACRE": "0.58", "LONGITUDE": -64.91331596000001, "LATITUDE": 18.31919403, "OBJECTID_1": 33362, "PARCEL_NO_": "107403015600", "Tax_Legal_": "FRENCHMAN'S BAY 17-50 FRENCHMAN BAY QTR.", "Name": "FORD, MERVIN L", "Address": "PO Box 9484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67400, "Improved_V": 144200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.758539429, "SHAPE_Area": 2263.3350615 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360718.475299999117851, 254414.14299999922514 ], [ 360652.195799998939037, 254432.598999999463558 ], [ 360651.90089999884367, 254467.215900000184774 ], [ 360680.973099999129772, 254462.176500000059605 ], [ 360694.671499997377396, 254463.344099998474121 ], [ 360701.118400000035763, 254463.819099999964237 ], [ 360718.475299999117851, 254414.14299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90367055, "LATITUDE": 18.31909382, "OBJECTID_1": 37355, "PARCEL_NO_": "107404025200", "Tax_Legal_": "FRENCHMAN'S BAY(LOT49) 21-47 FRENCHMANS BAY", "Name": "COMMISSIONG, JR. G. K. & NUTTER, M", "Address": "PO Box 9401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.86986133900001, "SHAPE_Area": 3109.1775816600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361741.522200003266335, 254441.725699998438358 ], [ 361707.134900003671646, 254408.091499999165535 ], [ 361661.862700000405312, 254421.653099998831749 ], [ 361660.223099999129772, 254424.806099999696016 ], [ 361675.359600000083447, 254446.461500000208616 ], [ 361677.7533999979496, 254449.4364 ], [ 361684.947300001978874, 254456.883600000292063 ], [ 361690.546499997377396, 254462.206799998879433 ], [ 361697.75110000371933, 254468.38740000128746 ], [ 361706.581000000238419, 254473.103799998760223 ], [ 361708.99099999666214, 254474.179000001400709 ], [ 361713.819899998605251, 254475.274000000208616 ], [ 361720.293700002133846, 254472.582699999213219 ], [ 361723.560300000011921, 254467.754299998283386 ], [ 361730.924999997019768, 254455.149000000208616 ], [ 361741.522200003266335, 254441.725699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504015900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88734203, "LATITUDE": 18.31927538, "OBJECTID_1": 37716, "PARCEL_NO_": "107504015900", "Tax_Legal_": "5A-22 BOVONI 1&2FRENCHMAN BAY QTR", "Name": "EDWARDS, RAPHAEL & NORMA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10800, "Improved_V": 99200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.418020256899993, "SHAPE_Area": 362.88258908099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363440.210400000214577, 254480.53770000115037 ], [ 363421.875600002706051, 254455.689699999988079 ], [ 363418.637699998915195, 254457.140900000929832 ], [ 363423.23650000244379, 254485.253899998962879 ], [ 363436.10869999974966, 254488.736800000071526 ], [ 363440.210400000214577, 254480.53770000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89744063000001, "LATITUDE": 18.31916415, "OBJECTID_1": 37577, "PARCEL_NO_": "107503016800", "Tax_Legal_": "61-31B ESTATE BOLONGO FRENCHMAN'S BAY QTR.", "Name": "PETERSEN, LOUISE & ALGEM D", "Address": "PO Box 305782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42300, "Improved_V": 306900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.900641377, "SHAPE_Area": 2628.8549256800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362374.590800002217293, 254433.608199998736382 ], [ 362345.604900002479553, 254428.515799999237061 ], [ 362310.044399999082088, 254437.935100000351667 ], [ 362334.118699997663498, 254451.642099998891354 ], [ 362349.251599997282028, 254473.719700001180172 ], [ 362347.613799996674061, 254476.66160000115633 ], [ 362387.101599998772144, 254479.517900001257658 ], [ 362395.25280000269413, 254469.24100000038743 ], [ 362397.747299998998642, 254460.395500000566244 ], [ 362396.175999999046326, 254455.527499999850988 ], [ 362392.986699998378754, 254451.279500000178814 ], [ 362389.788400001823902, 254448.086899999529123 ], [ 362378.586400002241135, 254437.862799998372793 ], [ 362374.590800002217293, 254433.608199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503014500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89565203, "LATITUDE": 18.31905144, "OBJECTID_1": 37560, "PARCEL_NO_": "107503014500", "Tax_Legal_": "61-8 BOLONGO NO.3 FRENCHMAN'S BAY QTR.", "Name": "FORBES, KIRIMA, KAMIKA AND KINISHA", "Address": "PO BOX 3003", "City": "ROAD TOWN, BRISTISH VIRGIN ISLANDS", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.90521740299999, "SHAPE_Area": 2475.5809816599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362588.042400002479553, 254461.319699998944998 ], [ 362538.540100000798702, 254403.497099999338388 ], [ 362512.533100001513958, 254427.348900001496077 ], [ 362563.684000000357628, 254480.963100001215935 ], [ 362571.003700003027916, 254473.634799998253584 ], [ 362574.252400003373623, 254470.917100001126528 ], [ 362579.932499997317791, 254466.741799999028444 ], [ 362588.042400002479553, 254461.319699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88845647, "LATITUDE": 18.31925096, "OBJECTID_1": 37763, "PARCEL_NO_": "107504023100", "Tax_Legal_": "5-107 BOVONI FRENCHMAN BAY QTR", "Name": "KRIGGER, ERNEST", "Address": "7213 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 112500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.8929865068, "SHAPE_Area": 478.79338233200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363325.76969999819994, 254473.057199999690056 ], [ 363309.79450000077486, 254455.194600000977516 ], [ 363295.165799997746944, 254468.584800001233816 ], [ 363311.139200001955032, 254486.658500000834465 ], [ 363312.764499999582767, 254485.194200001657009 ], [ 363325.76969999819994, 254473.057199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91040421, "LATITUDE": 18.31913425, "OBJECTID_1": 37177, "PARCEL_NO_": "107403022200", "Tax_Legal_": "15-41 FRENCHAMN'S BAY FRENCHMAN'S BAY QUARTER", "Name": "BROWNE, MARCUS", "Address": "PO Box 8692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 82800, "Improved_V": 203800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.464403586, "SHAPE_Area": 2860.4202152900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361018.164599999785423, 254446.993299998342991 ], [ 361020.8496999964118, 254415.773499999195337 ], [ 360978.959200002253056, 254410.997600000351667 ], [ 360960.306100003421307, 254423.510600000619888 ], [ 360959.39190000295639, 254436.168699998408556 ], [ 360957.666000001132488, 254449.453499998897314 ], [ 360980.100699998438358, 254466.313499998301268 ], [ 361016.408100001513958, 254463.866399999707937 ], [ 361017.279200002551079, 254456.27419999986887 ], [ 361018.164599999785423, 254446.993299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8874738, "LATITUDE": 18.31926794, "OBJECTID_1": 37715, "PARCEL_NO_": "107504015800", "Tax_Legal_": "5A 23 BOVONI FRENCHMAN BAY QTR", "Name": "HARRIGAN, DELIGHT (Life Estate)", "Address": "7297 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8800, "Improved_V": 73300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.095624985100002, "SHAPE_Area": 351.81802655500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363418.637699998915195, 254457.140900000929832 ], [ 363413.80349999666214, 254456.679099999368191 ], [ 363407.210900001227856, 254473.301500000059605 ], [ 363403.085799999535084, 254484.244600001722574 ], [ 363423.23650000244379, 254485.253899998962879 ], [ 363418.637699998915195, 254457.140900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88726763, "LATITUDE": 18.31917737, "OBJECTID_1": 37717, "PARCEL_NO_": "107504016000", "Tax_Legal_": "5A 21 BOVONI FRENCHMAN BAY QTR", "Name": "KUNTZ, RAMONG A., CLARICE I. & DIANE A.", "Address": "7299 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9600, "Improved_V": 98700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.347313832400005, "SHAPE_Area": 363.64708428099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363449.245200000703335, 254461.190999999642372 ], [ 363425.948499999940395, 254450.867899999022484 ], [ 363425.120600000023842, 254453.394200000911951 ], [ 363421.875600002706051, 254455.689699999988079 ], [ 363440.210400000214577, 254480.53770000115037 ], [ 363449.245200000703335, 254461.190999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88803819, "LATITUDE": 18.31916966, "OBJECTID_1": 37740, "PARCEL_NO_": "107504020700", "Tax_Legal_": "5-85 BOVONI FRENCHMAN BAY QTR", "Name": "FLEMING, LAMBERT", "Address": "PO Box 305853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15000, "Improved_V": 102700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.151397402699999, "SHAPE_Area": 419.68726250700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363369.941399998962879, 254462.866599999368191 ], [ 363350.983000002801418, 254447.721200000494719 ], [ 363341.197599999606609, 254460.517799999564886 ], [ 363354.492899999022484, 254476.729200001806021 ], [ 363359.847000002861023, 254472.862300001084805 ], [ 363366.589800000190735, 254466.119500000029802 ], [ 363369.941399998962879, 254462.866599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107503014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89607556, "LATITUDE": 18.31876938, "OBJECTID_1": 37558, "PARCEL_NO_": "107503014300", "Tax_Legal_": "BOLONGO 61-3M & 61-31N(ROW) FRENCHMAN BAY QTR", "Name": "SERAPHIN, OCTAVE", "Address": "PO Box 1112", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 405.575634122, "SHAPE_Area": 1567.9504757899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362483.915899999439716, 254378.985399998724461 ], [ 362487.915100000798702, 254382.817800000309944 ], [ 362493.552100002765656, 254383.708299998193979 ], [ 362500.031300000846386, 254380.383799999952316 ], [ 362504.874600000679493, 254379.790199998766184 ], [ 362537.0929000005126, 254384.064599998295307 ], [ 362539.510099999606609, 254384.295499999076128 ], [ 362541.065200001001358, 254391.063200000673532 ], [ 362502.864600002765656, 254426.425400000065565 ], [ 362497.175399996340275, 254431.656199999153614 ], [ 362489.857500001788139, 254438.773499999195337 ], [ 362471.962200000882149, 254456.99210000038147 ], [ 362466.298199996352196, 254459.267799999564886 ], [ 362455.002599999308586, 254460.01969999819994 ], [ 362448.539499998092651, 254461.444499999284744 ], [ 362452.513599999248981, 254468.23200000077486 ], [ 362467.039800003170967, 254466.873199999332428 ], [ 362471.888400003314018, 254465.64640000090003 ], [ 362477.56139999628067, 254462.31529999896884 ], [ 362488.137000001966953, 254451.425000000745058 ], [ 362500.334200002253056, 254439.492499999701977 ], [ 362501.154799997806549, 254437.810499999672174 ], [ 362512.533100001513958, 254427.348900001496077 ], [ 362538.540100000798702, 254403.497099999338388 ], [ 362548.291400000452995, 254394.710999999195337 ], [ 362548.383100003004074, 254383.945999998599291 ], [ 362546.79389999806881, 254381.188700001686811 ], [ 362541.187399998307228, 254376.709899999201298 ], [ 362535.548600003123283, 254376.0304000005126 ], [ 362506.552000001072884, 254372.204500000923872 ], [ 362492.884199999272823, 254367.448600001633167 ], [ 362489.659000001847744, 254367.422200001776218 ], [ 362486.422899998724461, 254368.662300001829863 ], [ 362483.161700002849102, 254372.857500001788139 ], [ 362483.915899999439716, 254378.985399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90092167, "LATITUDE": 18.31897423, "OBJECTID_1": 37464, "PARCEL_NO_": "107404040700", "Tax_Legal_": "EST. BOLONGO 105-4 FRENCHMANS BAY QTR", "Name": "RICHARDSON, WILLIAM & V", "Address": "7162 Estate Bolongo", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52100, "Improved_V": 224700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.32984976899999, "SHAPE_Area": 2503.1496028199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361974.015299998223782, 254411.331199999898672 ], [ 361965.77419999986887, 254432.162099998444319 ], [ 361958.414899997413158, 254444.134199999272823 ], [ 361950.200699999928474, 254461.798799999058247 ], [ 361961.604099996387959, 254448.382100000977516 ], [ 361980.097199998795986, 254454.655200000852346 ], [ 362006.743199996650219, 254450.44029999896884 ], [ 362033.662600003182888, 254414.141499999910593 ], [ 361989.417999997735023, 254401.747000001370907 ], [ 361974.015299998223782, 254411.331199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88831675, "LATITUDE": 18.31912899, "OBJECTID_1": 37762, "PARCEL_NO_": "107504023000", "Tax_Legal_": "5-106 BOVONI FRENCHMAN BAY QTR", "Name": "MEADE, PHILLIP R. JR. & DAVID S. & PAUL A.", "Address": "PO Box 7982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12000, "Improved_V": 88200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.108983144299998, "SHAPE_Area": 490.45478184799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363341.197599999606609, 254460.517799999564886 ], [ 363324.42509999871254, 254441.593199998140335 ], [ 363309.79450000077486, 254455.194600000977516 ], [ 363325.76969999819994, 254473.057199999690056 ], [ 363341.197599999606609, 254460.517799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88762117, "LATITUDE": 18.31912739, "OBJECTID_1": 37714, "PARCEL_NO_": "107504015700", "Tax_Legal_": "5A 24 BOVONI FRENCHMAN BAY QTR", "Name": "GATEWOOD, KIMBERLY G. & JAMES O.", "Address": "13728 Lagoon Isle Way", "City": "Orlando", "State": "Florida", "Zip": 32824, "Country": "United States", "Land_Value": 10100, "Improved_V": 129100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.180292441700004, "SHAPE_Area": 568.32164282199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363413.80349999666214, 254456.679099999368191 ], [ 363408.990800000727177, 254453.684399999678135 ], [ 363407.415899999439716, 254449.238600000739098 ], [ 363405.020300000905991, 254446.474700000137091 ], [ 363394.574199996888638, 254442.167399998754263 ], [ 363392.144500002264977, 254443.414000000804663 ], [ 363383.100699998438358, 254463.816100001335144 ], [ 363407.210900001227856, 254473.301500000059605 ], [ 363413.80349999666214, 254456.679099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89922503, "LATITUDE": 18.3188644, "OBJECTID_1": 37415, "PARCEL_NO_": "107404033000", "Tax_Legal_": "EST. BOLONGO 3-C FRENCHMAN BAY QTR", "Name": "LAWRENCE A RAMDHANSINGH FAMILY TRUST", "Address": "PO Box 305119", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84800, "Improved_V": 308100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.349135601, "SHAPE_Area": 3033.52302255 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362212.394299998879433, 254447.268300000578165 ], [ 362165.424199998378754, 254376.167599998414516 ], [ 362153.291799999773502, 254380.501200001686811 ], [ 362131.435000002384186, 254390.454799998551607 ], [ 362181.630300000309944, 254461.581999998539686 ], [ 362184.871799997985363, 254459.708700001239777 ], [ 362200.236699998378754, 254454.557100001722574 ], [ 362208.335799999535084, 254450.401500001549721 ], [ 362212.394299998879433, 254447.268300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88856075, "LATITUDE": 18.31899219, "OBJECTID_1": 37766, "PARCEL_NO_": "107504023400", "Tax_Legal_": "5-120 BOVONI FRENCHMAN BAY QTR", "Name": "HODGE, DAISY", "Address": "PO Box 8102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14300, "Improved_V": 155400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.070341188, "SHAPE_Area": 540.06881834199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363302.031700000166893, 254419.878400001674891 ], [ 363280.641400001943111, 254469.732500001788139 ], [ 363316.401500001549721, 254436.883499998599291 ], [ 363302.031700000166893, 254419.878400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503017200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89650643, "LATITUDE": 18.31898638, "OBJECTID_1": 37581, "PARCEL_NO_": "107503017200", "Tax_Legal_": "61-31F EST BOLONGO FRENCHMANS BAY QTR", "Name": "ANDRE, RENEE MARIE", "Address": "7506 Frenchman S Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47400, "Improved_V": 193400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.42030972399999, "SHAPE_Area": 2092.18932249 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362489.857500001788139, 254438.773499999195337 ], [ 362472.39190000295639, 254406.544300001114607 ], [ 362427.0945999994874, 254423.061000000685453 ], [ 362448.539499998092651, 254461.444499999284744 ], [ 362455.002599999308586, 254460.01969999819994 ], [ 362466.298199996352196, 254459.267799999564886 ], [ 362471.962200000882149, 254456.99210000038147 ], [ 362489.857500001788139, 254438.773499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031100", "MAP": "A9-138-T70", "PARCEL_NAM": "98", "ACRE": "0.50", "LONGITUDE": -64.90152471, "LATITUDE": 18.31896179, "OBJECTID_1": 37396, "PARCEL_NO_": "107404031100", "Tax_Legal_": "BOLONGO 98 FRENCHMAN BAY QTR", "Name": "PRINCE, MONICA", "Address": "PO Box 10760", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69500, "Improved_V": 294500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.59507585700001, "SHAPE_Area": 2386.3920651499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361911.234399996697903, 254397.729600001126528 ], [ 361907.080600000917912, 254412.050000000745058 ], [ 361898.756700001657009, 254442.590399999171495 ], [ 361944.599600002169609, 254456.686700001358986 ], [ 361948.721100002527237, 254446.165800001472235 ], [ 361950.348099999129772, 254444.490299999713898 ], [ 361954.457000002264977, 254435.446899998933077 ], [ 361956.901100002229214, 254432.511599998921156 ], [ 361960.191100001335144, 254424.9391999989748 ], [ 361961.819899998605251, 254423.052700001746416 ], [ 361963.475699998438358, 254418.0 ], [ 361912.060500003397465, 254395.414299998432398 ], [ 361911.234399996697903, 254397.729600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8954418, "LATITUDE": 18.31885109, "OBJECTID_1": 37561, "PARCEL_NO_": "107503014600", "Tax_Legal_": "EST. BOLONGO 61-10 FRENCHMAN'S BAY QTR.", "Name": "GOMEZ, CURTIS V", "Address": "PO Box 334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.16457020600001, "SHAPE_Area": 2219.8460784700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362566.973200000822544, 254378.820799998939037 ], [ 362548.291400000452995, 254394.710999999195337 ], [ 362538.540100000798702, 254403.497099999338388 ], [ 362588.042400002479553, 254461.319699998944998 ], [ 362602.638700000941753, 254451.728900000452995 ], [ 362601.880999997258186, 254446.02309999987483 ], [ 362597.129399999976158, 254435.851700000464916 ], [ 362595.570699997246265, 254429.50620000064373 ], [ 362575.679099999368191, 254398.101500000804663 ], [ 362568.539099998772144, 254384.322000000625849 ], [ 362566.973200000822544, 254378.820799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88793537, "LATITUDE": 18.31902722, "OBJECTID_1": 37741, "PARCEL_NO_": "107504020800", "Tax_Legal_": "5-86 BOVONI FRENCHMAN BAY QTR", "Name": "JACKSON, ISHMEL & EILEEN", "Address": "PO Box 8333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13200, "Improved_V": 89500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.903861435099998, "SHAPE_Area": 495.55564651899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363380.508500002324581, 254441.812699999660254 ], [ 363359.179200001060963, 254432.167399998754263 ], [ 363354.263999998569489, 254441.204199999570847 ], [ 363350.983000002801418, 254447.721200000494719 ], [ 363369.941399998962879, 254462.866599999368191 ], [ 363370.835299998521805, 254461.9989 ], [ 363374.456399999558926, 254455.381000000983477 ], [ 363380.508500002324581, 254441.812699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404025700", "MAP": null, "PARCEL_NAM": "21-4", "ACRE": null, "LONGITUDE": -64.90204772, "LATITUDE": 18.31884335, "OBJECTID_1": 37359, "PARCEL_NO_": "107404025700", "Tax_Legal_": "FRENCHMAN'S BAY 21-4(LOT#51) No.4 FRENCHMAN'S BAY QTR.", "Name": "CHESTERFIELD, IRA & IVAN", "Address": "PO Box 307952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.870935266, "SHAPE_Area": 2557.2801925 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361911.234399996697903, 254397.729600001126528 ], [ 361883.162699997425079, 254379.979100000113249 ], [ 361846.553199999034405, 254417.88740000128746 ], [ 361840.102700002491474, 254417.834600001573563 ], [ 361825.704199999570847, 254404.206799998879433 ], [ 361820.00959999859333, 254410.070799998939037 ], [ 361826.447499997913837, 254411.601100001484156 ], [ 361864.033100001513958, 254448.42790000140667 ], [ 361907.080600000917912, 254412.050000000745058 ], [ 361911.234399996697903, 254397.729600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88818327, "LATITUDE": 18.31900596, "OBJECTID_1": 37761, "PARCEL_NO_": "107504022900", "Tax_Legal_": "BOVONI ESTATE 5-105 No.1&2 FRENCHMAN'S BAY QTR.", "Name": "FREDERICKS, HELENA-LIFE ESTATE", "Address": "PO Box 8145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011145, "Country": "United States", "Land_Value": 14400, "Improved_V": 120400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.843247484100004, "SHAPE_Area": 468.66379503399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363354.263999998569489, 254441.204199999570847 ], [ 363335.013199999928474, 254429.225400000810623 ], [ 363330.924099996685982, 254435.946899998933077 ], [ 363324.42509999871254, 254441.593199998140335 ], [ 363341.197599999606609, 254460.517799999564886 ], [ 363350.983000002801418, 254447.721200000494719 ], [ 363354.263999998569489, 254441.204199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504016100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88720923, "LATITUDE": 18.31905634, "OBJECTID_1": 37718, "PARCEL_NO_": "107504016100", "Tax_Legal_": "BOVONI 5A 20 FRENCHMAN BAY QTR", "Name": "GREAUX, MERCEDES", "Address": "PO Box 10806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9600, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.475803254799999, "SHAPE_Area": 331.90300946299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363457.464800000190735, 254442.893199998885393 ], [ 363426.798000000417233, 254445.808600001037121 ], [ 363425.948499999940395, 254450.867899999022484 ], [ 363449.245200000703335, 254461.190999999642372 ], [ 363457.464800000190735, 254442.893199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403015200", "MAP": "D9-3652-T86", "PARCEL_NAM": "17-72", "ACRE": "0.73", "LONGITUDE": -64.91203522000001, "LATITUDE": 18.31884424, "OBJECTID_1": 33358, "PARCEL_NO_": "107403015200", "Tax_Legal_": "FRENCHMAN'S BAY 17-72 FRENCHMAN'S BAY QTR", "Name": "PHOENIX, SELWYN", "Address": "PO Box 302783", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.33043449500002, "SHAPE_Area": 3291.9804393600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360797.389600001275539, 254427.032400000840425 ], [ 360802.139399997889996, 254437.414799999445677 ], [ 360811.044799998402596, 254433.265799999237061 ], [ 360863.661899998784065, 254409.420699998736382 ], [ 360855.784000001847744, 254387.613600000739098 ], [ 360851.890900000929832, 254371.327500000596046 ], [ 360823.553099997341633, 254384.816700000315905 ], [ 360758.081699997186661, 254403.068199999630451 ], [ 360797.389600001275539, 254427.032400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89887034, "LATITUDE": 18.31870144, "OBJECTID_1": 37518, "PARCEL_NO_": "107503010200", "Tax_Legal_": "EST. BOLONGO 4 FRENCHMANS BAY QTR", "Name": "CLARET PARKER, VANZELLE E NIBBS, & JOANN U BROOKS", "Address": "PO BOX 502772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 79500, "Improved_V": 294000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.06806416299997, "SHAPE_Area": 4018.2585087699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362260.135799996554852, 254427.816300000995398 ], [ 362199.505199998617172, 254351.115299999713898 ], [ 362194.62049999833107, 254356.563700001686811 ], [ 362184.872800000011921, 254364.927700001746416 ], [ 362177.572899997234344, 254369.934200000017881 ], [ 362165.424199998378754, 254376.167599998414516 ], [ 362212.394299998879433, 254447.268300000578165 ], [ 362221.321299999952316, 254440.586399998515844 ], [ 362233.471699997782707, 254434.1418999992311 ], [ 362243.986100003123283, 254430.428300000727177 ], [ 362260.135799996554852, 254427.816300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91073774, "LATITUDE": 18.31888603, "OBJECTID_1": 37178, "PARCEL_NO_": "107403022300", "Tax_Legal_": "FRENCHMAN'S BAY 15-42 FRENCHMAN'S BAY QTR.", "Name": "ASFOUR, MICHAEL & CINDY", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69200, "Improved_V": 214900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.300579473, "SHAPE_Area": 1527.5256602100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360978.959200002253056, 254410.997600000351667 ], [ 360972.753200002014637, 254382.238099999725819 ], [ 360966.293700002133846, 254383.240699999034405 ], [ 360958.19650000333786, 254387.185199998319149 ], [ 360956.57660000026226, 254388.016399998217821 ], [ 360951.704599998891354, 254391.987300001084805 ], [ 360938.668700002133846, 254407.712600000202656 ], [ 360936.211999997496605, 254412.125399999320507 ], [ 360933.742799997329712, 254418.015799999237061 ], [ 360932.086999997496605, 254423.068500000983477 ], [ 360930.411399997770786, 254430.44310000166297 ], [ 360930.393399998545647, 254432.553899999707937 ], [ 360959.39190000295639, 254436.168699998408556 ], [ 360960.306100003421307, 254423.510600000619888 ], [ 360978.959200002253056, 254410.997600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90339329, "LATITUDE": 18.31878913, "OBJECTID_1": 37353, "PARCEL_NO_": "107404025000", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#47) 21-45 FRENCHMANS BAY", "Name": "GUMBS, LESSLEY S. & ROSIEMARIE F", "Address": "PO Box 10261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.35504491500001, "SHAPE_Area": 2085.8078197300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361765.094099998474121, 254419.753800000995398 ], [ 361713.964800000190735, 254363.606600001454353 ], [ 361707.134900003671646, 254408.091499999165535 ], [ 361741.522200003266335, 254441.725699998438358 ], [ 361748.037399999797344, 254434.179699998348951 ], [ 361765.094099998474121, 254419.753800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90453639, "LATITUDE": 18.3188679, "OBJECTID_1": 37333, "PARCEL_NO_": "107404023000", "Tax_Legal_": "FRENCHMAN'S BAY 21-51 FRENCHMAN BAY", "Name": "ISLES, GLADYS", "Address": "PO Box 180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 83800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.01821788800001, "SHAPE_Area": 2872.5882155700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361644.260499998927116, 254405.465999998152256 ], [ 361579.967699997127056, 254380.030699998140335 ], [ 361581.100199997425079, 254436.401999998837709 ], [ 361657.7195999994874, 254434.706999998539686 ], [ 361648.157200001180172, 254421.329900000244379 ], [ 361645.793999999761581, 254414.766600001603365 ], [ 361645.016400001943111, 254411.382800001651049 ], [ 361644.260499998927116, 254405.465999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90897252000001, "LATITUDE": 18.31884367, "OBJECTID_1": 37182, "PARCEL_NO_": "107403022700", "Tax_Legal_": "FRENCHMAN'S BAY 15-46 FRENCHMAN'S BAY QTR", "Name": "REY, SAMUEL A. SANDRA K.", "Address": "PO Box 11505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59400, "Improved_V": 136500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.834036016, "SHAPE_Area": 2300.78036084 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361126.762500002980232, 254383.076400000602007 ], [ 361107.852300003170967, 254425.773699998855591 ], [ 361150.54730000346899, 254430.767200000584126 ], [ 361166.671700000762939, 254431.110199999064207 ], [ 361166.72749999910593, 254424.566799998283386 ], [ 361167.078100003302097, 254383.406399998813868 ], [ 361126.762500002980232, 254383.076400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89770781, "LATITUDE": 18.31885392, "OBJECTID_1": 37578, "PARCEL_NO_": "107503016900", "Tax_Legal_": "61-31C EST. BOLONGO FRENCHMANS BAY QTR.", "Name": "JOSEPH, ELFORD & ELOIS", "Address": "6233 Geronimo Cir", "City": "Anchorage", "State": "Alaska", "Zip": 99504, "Country": "United States", "Land_Value": 46300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.002920738, "SHAPE_Area": 2174.3128033200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362305.487099997699261, 254404.967199999839067 ], [ 362302.189900003373623, 254413.383900001645088 ], [ 362299.671999998390675, 254424.973499998450279 ], [ 362294.80179999768734, 254428.733300000429153 ], [ 362281.879199996590614, 254431.160599999129772 ], [ 362286.697300001978874, 254433.522100001573563 ], [ 362310.044399999082088, 254437.935100000351667 ], [ 362345.604900002479553, 254428.515799999237061 ], [ 362374.590800002217293, 254433.608199998736382 ], [ 362372.996100001037121, 254431.484200000762939 ], [ 362371.431999996304512, 254425.771899998188019 ], [ 362370.658100001513958, 254421.965900000184774 ], [ 362369.932700000703335, 254412.460700001567602 ], [ 362356.340499997138977, 254398.839499998837709 ], [ 362305.487099997699261, 254404.967199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503017500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8960933, "LATITUDE": 18.31870457, "OBJECTID_1": 37584, "PARCEL_NO_": "107503017500", "Tax_Legal_": "61-31G EST. BOLONGO FRENCHMANS BAY QTR.", "Name": "LETTSOME, TADIO & DORA", "Address": "PO Box 9127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44900, "Improved_V": 215000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.214228521, "SHAPE_Area": 2089.2126103599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362504.874600000679493, 254379.790199998766184 ], [ 362488.672799997031689, 254388.523499999195337 ], [ 362472.39190000295639, 254406.544300001114607 ], [ 362489.857500001788139, 254438.773499999195337 ], [ 362497.175399996340275, 254431.656199999153614 ], [ 362502.864600002765656, 254426.425400000065565 ], [ 362541.065200001001358, 254391.063200000673532 ], [ 362539.510099999606609, 254384.295499999076128 ], [ 362537.0929000005126, 254384.064599998295307 ], [ 362504.874600000679493, 254379.790199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504016200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88717657, "LATITUDE": 18.31892263, "OBJECTID_1": 37719, "PARCEL_NO_": "107504016200", "Tax_Legal_": "BOVONI 5A 19 FRENCHMAN BAY QTR", "Name": "CLAXTON, URENA & OTHERS", "Address": "7301 Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15600, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.468536008800001, "SHAPE_Area": 511.30239035300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363464.041199997067451, 254428.170499999076128 ], [ 363447.956299997866154, 254423.183699999004602 ], [ 363425.219499997794628, 254441.78489999845624 ], [ 363426.798000000417233, 254445.808600001037121 ], [ 363457.464800000190735, 254442.893199998885393 ], [ 363464.041199997067451, 254428.170499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90941765, "LATITUDE": 18.31880719, "OBJECTID_1": 37181, "PARCEL_NO_": "107403022600", "Tax_Legal_": "FRENCHMAN'S BAY 15-45 FRENCHMAN'S BAY QTR.", "Name": "HODGE, GALE", "Address": "PO Box 7503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49700, "Improved_V": 243800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.55178750900001, "SHAPE_Area": 1870.32407326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361126.762500002980232, 254383.076400000602007 ], [ 361081.608999997377396, 254382.706900000572205 ], [ 361062.740199998021126, 254420.549300000071526 ], [ 361107.852300003170967, 254425.773699998855591 ], [ 361126.762500002980232, 254383.076400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9085144, "LATITUDE": 18.3188054, "OBJECTID_1": 37183, "PARCEL_NO_": "107403022800", "Tax_Legal_": "15-47 FRENCHMAN'S BAY FRENCHMAN'S BAY QUARTER", "Name": "BROWN, FRANCIS C. & MARY A.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47900, "Improved_V": 350000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.43426601, "SHAPE_Area": 1933.1321302900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361214.310699999332428, 254423.689699999988079 ], [ 361214.652400001883507, 254383.584699999541044 ], [ 361167.078100003302097, 254383.406399998813868 ], [ 361166.72749999910593, 254424.566799998283386 ], [ 361214.310699999332428, 254423.689699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88786279, "LATITUDE": 18.31886742, "OBJECTID_1": 37742, "PARCEL_NO_": "107504020900", "Tax_Legal_": "5-87 EST BOVONI 1&2FRENCHMAN BAY QTR", "Name": "SMITH JACKSON, GWENEVERE, & JAMILYA CHRISTOPHER", "Address": "PO Box 9334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012334, "Country": "United States", "Land_Value": 13600, "Improved_V": 61900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.772573391600005, "SHAPE_Area": 409.84601926800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363387.64469999819994, 254425.159200001507998 ], [ 363366.570900000631809, 254416.395799998193979 ], [ 363364.103399999439716, 254422.075199998915195 ], [ 363359.179200001060963, 254432.167399998754263 ], [ 363380.508500002324581, 254441.812699999660254 ], [ 363382.198100000619888, 254438.024500001221895 ], [ 363385.194899998605251, 254431.032000001519918 ], [ 363387.64469999819994, 254425.159200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90809862, "LATITUDE": 18.31871799, "OBJECTID_1": 37184, "PARCEL_NO_": "107403022900", "Tax_Legal_": "FRENCHMAN'S BAY 15-48 FRENCHMAN'S BAY QTR.", "Name": "FIRST REGIONAL BANK", "Address": "1101 Wooded Acres Dr 120 Ste.", "City": "Waco", "State": "Texas", "Zip": 76710, "Country": "United States", "Land_Value": 53300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.882645067, "SHAPE_Area": 1680.0301975299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361263.727700002491474, 254396.863000001758337 ], [ 361243.029799997806549, 254365.451799999922514 ], [ 361214.652400001883507, 254383.584699999541044 ], [ 361214.310699999332428, 254423.689699999988079 ], [ 361220.775600001215935, 254422.053800001740456 ], [ 361229.684600003063679, 254417.482700001448393 ], [ 361263.727700002491474, 254396.863000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88731634, "LATITUDE": 18.31886276, "OBJECTID_1": 37720, "PARCEL_NO_": "107504016300", "Tax_Legal_": "5A-18 BOVONI 1&2 FRENCHMAN BAY QT", "Name": "HENLEY, LOUIS V. & LUCIA", "Address": "443 Beverly Dr", "City": "Richardson", "State": "Texas", "Zip": 75080, "Country": "United States", "Land_Value": 9100, "Improved_V": 62800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.351984620300001, "SHAPE_Area": 329.18180010399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363447.956299997866154, 254423.183699999004602 ], [ 363429.459700003266335, 254417.332699999213219 ], [ 363425.347199998795986, 254426.798300001770258 ], [ 363416.382399998605251, 254437.912900000810623 ], [ 363422.017599999904633, 254439.014499999582767 ], [ 363425.219499997794628, 254441.78489999845624 ], [ 363447.956299997866154, 254423.183699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88809439000001, "LATITUDE": 18.31884827, "OBJECTID_1": 37760, "PARCEL_NO_": "107504022800", "Tax_Legal_": "BOVONI ESTATE 5-104 No.1&2 FRENCHMAN'S BAY QTR", "Name": "LAKE, JOEL W", "Address": "PO Box 502144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 12000, "Improved_V": 112400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.588700087500001, "SHAPE_Area": 451.47606303399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363364.103399999439716, 254422.075199998915195 ], [ 363340.790500000119209, 254413.651700001209974 ], [ 363335.013199999928474, 254429.225400000810623 ], [ 363354.263999998569489, 254441.204199999570847 ], [ 363359.179200001060963, 254432.167399998754263 ], [ 363364.103399999439716, 254422.075199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90984557, "LATITUDE": 18.31878174, "OBJECTID_1": 37180, "PARCEL_NO_": "107403022500", "Tax_Legal_": "15-44 & 15-40-B FRENCHMANS BAY NO. 4 FRENCHMANS BAY QTR", "Name": "RYMER, KEVIN COLIN", "Address": "PO Box 11478", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62300, "Improved_V": 237000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.40467237300001, "SHAPE_Area": 1670.2461183 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361081.608999997377396, 254382.706900000572205 ], [ 361031.615800000727177, 254382.508799999952316 ], [ 361020.8496999964118, 254415.773499999195337 ], [ 361062.740199998021126, 254420.549300000071526 ], [ 361081.608999997377396, 254382.706900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504016400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88752152000001, "LATITUDE": 18.31886979, "OBJECTID_1": 37721, "PARCEL_NO_": "107504016400", "Tax_Legal_": "BOVONI 5A-17 FRENCHMAN BAY", "Name": "CHRISTOPHER, IVAN", "Address": "First Street 1st Ave", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9100, "Improved_V": 36800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.938123297399997, "SHAPE_Area": 381.69052996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363403.654100000858307, 254417.543699998408556 ], [ 363397.081299997866154, 254431.844300001859665 ], [ 363397.05969999730587, 254434.377199999988079 ], [ 363398.659699998795986, 254435.868000000715256 ], [ 363405.891400001943111, 254438.882500000298023 ], [ 363408.304899998009205, 254439.535500001162291 ], [ 363412.34009999781847, 254439.14640000090003 ], [ 363416.382399998605251, 254437.912900000810623 ], [ 363425.347199998795986, 254426.798300001770258 ], [ 363403.654100000858307, 254417.543699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404025100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90383973, "LATITUDE": 18.31866535, "OBJECTID_1": 37354, "PARCEL_NO_": "107404025100", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#48) 21-46 FRENCHMANS BAY", "Name": "BAILEY, KEVIN R", "Address": "PO Box 6226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.83682228200001, "SHAPE_Area": 2410.2229165399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361713.964800000190735, 254363.606600001454353 ], [ 361707.571800000965595, 254356.799300000071526 ], [ 361678.402500003576279, 254373.236999999731779 ], [ 361667.843099996447563, 254382.227600000798702 ], [ 361654.816299997270107, 254396.89750000089407 ], [ 361652.357799999415874, 254401.521499998867512 ], [ 361652.305600002408028, 254407.642700001597404 ], [ 361653.848099999129772, 254415.888000000268221 ], [ 361660.223099999129772, 254424.806099999696016 ], [ 361661.862700000405312, 254421.653099998831749 ], [ 361707.134900003671646, 254408.091499999165535 ], [ 361713.964800000190735, 254363.606600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88841085, "LATITUDE": 18.31879708, "OBJECTID_1": 37758, "PARCEL_NO_": "107504022600", "Tax_Legal_": "5-110 BOVONI FRENCHMAN BAY QTR", "Name": "STEELE, MONROE & JUDITH", "Address": "7209 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18200, "Improved_V": 84500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.875816444099996, "SHAPE_Area": 480.23868577799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363331.089500002563, 254416.52760000154376 ], [ 363307.791000001132488, 254406.415600001811981 ], [ 363302.031700000166893, 254419.878400001674891 ], [ 363316.401500001549721, 254436.883499998599291 ], [ 363324.52929999679327, 254429.350600000470877 ], [ 363329.460699997842312, 254418.414099998772144 ], [ 363331.089500002563, 254416.52760000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503010300", "MAP": "F9-1297-T63", "PARCEL_NAM": "4A", "ACRE": null, "LONGITUDE": -64.89850867, "LATITUDE": 18.31850696, "OBJECTID_1": 37519, "PARCEL_NO_": "107503010300", "Tax_Legal_": "BOLONGO 4A FRENCHMAN BAY QTR", "Name": "MCDONALD, MICHAEL & LISA", "Address": "PO Box 3876", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 79500, "Improved_V": 178600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.29683135900001, "SHAPE_Area": 4531.6823355699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362260.135799996554852, 254427.816300000995398 ], [ 362272.241200000047684, 254426.648800000548363 ], [ 362293.239500001072884, 254422.809900000691414 ], [ 362294.879100002348423, 254419.656899999827147 ], [ 362298.219400003552437, 254406.174199998378754 ], [ 362277.453100003302097, 254382.784000001847744 ], [ 362252.693000003695488, 254354.928100001066923 ], [ 362220.740800000727177, 254319.413899999111891 ], [ 362207.652800001204014, 254341.260600000619888 ], [ 362199.505199998617172, 254351.115299999713898 ], [ 362260.135799996554852, 254427.816300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89710945, "LATITUDE": 18.31876215, "OBJECTID_1": 37579, "PARCEL_NO_": "107503017000", "Tax_Legal_": "BOLONGO 61-31D FRENCHMAN BAY QTR.", "Name": "PANJABI, ARUN ASHOK & MASHELLE NIKOLE", "Address": "5128 Drakes Psge", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72800, "Improved_V": 344400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.945047964, "SHAPE_Area": 1543.61102424 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362374.09910000115633, 254396.662799999117851 ], [ 362356.340499997138977, 254398.839499998837709 ], [ 362369.932700000703335, 254412.460700001567602 ], [ 362369.972300000488758, 254407.81700000166893 ], [ 362372.407399997115135, 254405.937100000679493 ], [ 362377.241700001060963, 254406.398800000548363 ], [ 362379.648000001907349, 254407.896200001239777 ], [ 362380.413000002503395, 254412.757599998265505 ], [ 362377.97070000320673, 254415.481800001114607 ], [ 362378.696099996566772, 254424.986999999731779 ], [ 362381.091600000858307, 254427.750799998641014 ], [ 362423.865699999034405, 254423.456799998879433 ], [ 362417.68860000371933, 254391.320000000298023 ], [ 362374.09910000115633, 254396.662799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91030047, "LATITUDE": 18.31875864, "OBJECTID_1": 37179, "PARCEL_NO_": "107403022400", "Tax_Legal_": "FRENCHMAN'S BAY 15-43 FRENCHMAN'S BAY QTR.", "Name": "BAIG, SHAKIL & SEEMA", "Address": "PO Box 10447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61300, "Improved_V": 496300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.410108708, "SHAPE_Area": 1568.0358563100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361031.615800000727177, 254382.508799999952316 ], [ 360972.753200002014637, 254382.238099999725819 ], [ 360978.959200002253056, 254410.997600000351667 ], [ 361020.8496999964118, 254415.773499999195337 ], [ 361031.615800000727177, 254382.508799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90710544, "LATITUDE": 18.31846838, "OBJECTID_1": 37323, "PARCEL_NO_": "107404020500", "Tax_Legal_": "FRENCHMANS BAY 15-31 FRENCHMAN BAY QTR", "Name": "MEYERS, ISHMAEL A. & GWENDOLYN L. (TRUSTEES)", "Address": "PO Box 7632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64800, "Improved_V": 143700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.47927612300001, "SHAPE_Area": 2226.56872617 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361352.959799997508526, 254334.476399999111891 ], [ 361315.730899997055531, 254350.425900001078844 ], [ 361314.026600003242493, 254361.177700001746416 ], [ 361311.528599999845028, 254370.44539999961853 ], [ 361302.553000003099442, 254382.826400000602007 ], [ 361319.514399997889996, 254379.587799999862909 ], [ 361325.968400001525879, 254379.218400001525879 ], [ 361333.212700001895428, 254380.755399998277426 ], [ 361338.028999999165535, 254383.327899999916553 ], [ 361344.425499998033047, 254389.713100001215935 ], [ 361348.383400000631809, 254398.400299999862909 ], [ 361348.273699998855591, 254411.276099998503923 ], [ 361347.425999999046326, 254416.124299999326468 ], [ 361353.061200000345707, 254417.225900001823902 ], [ 361363.200900003314018, 254362.846700001507998 ], [ 361352.959799997508526, 254334.476399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404024900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90322461, "LATITUDE": 18.31855084, "OBJECTID_1": 37352, "PARCEL_NO_": "107404024900", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#46) 21-44 FRENCHMANS BAY", "Name": "MEADE, ROY & BAXTER, CAROLYN", "Address": "2015 Gamble Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.209136806, "SHAPE_Area": 2567.06621425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361791.05969999730587, 254400.756799999624491 ], [ 361735.91499999910593, 254342.676899999380112 ], [ 361707.571800000965595, 254356.799300000071526 ], [ 361713.964800000190735, 254363.606600001454353 ], [ 361765.094099998474121, 254419.753800000995398 ], [ 361777.267899997532368, 254410.56529999896884 ], [ 361791.05969999730587, 254400.756799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503017300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8965927, "LATITUDE": 18.31865602, "OBJECTID_1": 37582, "PARCEL_NO_": "107503017300", "Tax_Legal_": "61-31H ESTATE BOLONGO FRENCHMAN'S BAY QTR.", "Name": "FORBES, KYRON W. & CLOTILDE", "Address": "PO Box 303973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76800, "Improved_V": 179600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.54781483799999, "SHAPE_Area": 2005.9759714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362504.874600000679493, 254379.790199998766184 ], [ 362500.031300000846386, 254380.383799999952316 ], [ 362493.552100002765656, 254383.708299998193979 ], [ 362487.915100000798702, 254382.817800000309944 ], [ 362483.915899999439716, 254378.985399998724461 ], [ 362425.809199996292591, 254384.631499998271465 ], [ 362426.565200001001358, 254390.548300001770258 ], [ 362420.109300002455711, 254391.128699999302626 ], [ 362417.68860000371933, 254391.320000000298023 ], [ 362423.865699999034405, 254423.456799998879433 ], [ 362427.0945999994874, 254423.061000000685453 ], [ 362472.39190000295639, 254406.544300001114607 ], [ 362488.672799997031689, 254388.523499999195337 ], [ 362504.874600000679493, 254379.790199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031200", "MAP": "A9-138-T70", "PARCEL_NAM": "97", "ACRE": "0.50", "LONGITUDE": -64.90138443, "LATITUDE": 18.31859205, "OBJECTID_1": 37397, "PARCEL_NO_": "107404031200", "Tax_Legal_": "BLONGO 97 FRENCHMAN BAY QTR", "Name": "HANLEY, ELFREDA", "Address": "PO Box 10893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69500, "Improved_V": 149100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.94859447300001, "SHAPE_Area": 2411.66765725 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361978.354400001466274, 254375.269799999892712 ], [ 361922.061700001358986, 254357.28830000013113 ], [ 361912.060500003397465, 254395.414299998432398 ], [ 361963.475699998438358, 254418.0 ], [ 361973.415799997746944, 254387.050599999725819 ], [ 361978.354400001466274, 254375.269799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504016600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88708154, "LATITUDE": 18.31870892, "OBJECTID_1": 37723, "PARCEL_NO_": "107504016600", "Tax_Legal_": "5A-11 BOVONI FRENCHMAN BAY QTR", "Name": "JOSEPH, M & BENJAMIN, G", "Address": "7310 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15600, "Improved_V": 116400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.832988266200005, "SHAPE_Area": 498.11356834999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363469.786100000143051, 254416.396200001239777 ], [ 363449.847599998116493, 254390.479600001126528 ], [ 363447.417900003492832, 254391.726300001144409 ], [ 363447.956299997866154, 254423.183699999004602 ], [ 363464.041199997067451, 254428.170499999076128 ], [ 363469.786100000143051, 254416.396200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504017700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88744502, "LATITUDE": 18.31873166, "OBJECTID_1": 37732, "PARCEL_NO_": "107504017700", "Tax_Legal_": "5A-15 ESTATE BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "FONSECA, CHARLES & RAY FONSECA", "Address": "PO Box 8799", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011799, "Country": "United States", "Land_Value": 12600, "Improved_V": 195800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.209738168599998, "SHAPE_Area": 403.56082788200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363431.934299997985363, 254410.809099998325109 ], [ 363410.23759999871254, 254401.976700000464916 ], [ 363403.654100000858307, 254417.543699998408556 ], [ 363425.347199998795986, 254426.798300001770258 ], [ 363429.459700003266335, 254417.332699999213219 ], [ 363431.934299997985363, 254410.809099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8877966, "LATITUDE": 18.31871366, "OBJECTID_1": 37743, "PARCEL_NO_": "107504021000", "Tax_Legal_": "5-88 BOVONI 1&2 FRENCHMAN BY QTR", "Name": "JAMES, CUTHBERT & LUNA", "Address": "13870 SW 64th Street Rd", "City": "Ocala", "State": "Florida", "Zip": 34481, "Country": "United States", "Land_Value": 13600, "Improved_V": 127800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.470429684300001, "SHAPE_Area": 433.99023942500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363394.946000002324581, 254407.6554000005126 ], [ 363373.976899996399879, 254398.935699999332428 ], [ 363370.690600000321865, 254406.085999999195337 ], [ 363366.570900000631809, 254416.395799998193979 ], [ 363387.64469999819994, 254425.159200001507998 ], [ 363394.946000002324581, 254407.6554000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90073845000001, "LATITUDE": 18.31863294, "OBJECTID_1": 37463, "PARCEL_NO_": "107404040600", "Tax_Legal_": "105-3 ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "NIBBS-EVANS, JANET L", "Address": "4 Elmont St", "City": "Dorchester", "State": "Massachusetts", "Zip": 2121, "Country": "United States", "Land_Value": 39600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.05137598900001, "SHAPE_Area": 2102.14919934 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361987.209399998188019, 254377.030999999493361 ], [ 361985.589599996805191, 254377.862100001424551 ], [ 361979.828500002622604, 254391.535999998450279 ], [ 361974.015299998223782, 254411.331199999898672 ], [ 361989.417999997735023, 254401.747000001370907 ], [ 362033.662600003182888, 254414.141499999910593 ], [ 362051.662299998104572, 254383.68019999936223 ], [ 362000.981499999761581, 254369.544300001114607 ], [ 361987.209399998188019, 254377.030999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88722864, "LATITUDE": 18.31867253, "OBJECTID_1": 37722, "PARCEL_NO_": "107504016500", "Tax_Legal_": "BOVONI 5A-12 FRENCHMAN BAY QTR", "Name": "ASKA, RUPERT & ISHYN", "Address": "7309 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11700, "Improved_V": 118800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.313241482199999, "SHAPE_Area": 394.455300669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363447.417900003492832, 254391.726300001144409 ], [ 363442.574600003659725, 254392.320000000298023 ], [ 363439.360200002789497, 254391.027100000530481 ], [ 363431.934299997985363, 254410.809099998325109 ], [ 363429.459700003266335, 254417.332699999213219 ], [ 363447.956299997866154, 254423.183699999004602 ], [ 363447.417900003492832, 254391.726300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88803217, "LATITUDE": 18.31869416, "OBJECTID_1": 37759, "PARCEL_NO_": "107504022700", "Tax_Legal_": "5-103 BOVONI FRENCHMAN BAY QTR", "Name": "SYLVIA FORBES (LIFE ESTATE) & EDWELL FORBES", "Address": "PO Box 1585", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041585, "Country": "United States", "Land_Value": 12000, "Improved_V": 88800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.796144323799993, "SHAPE_Area": 438.709590241 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363370.690600000321865, 254406.085999999195337 ], [ 363348.191100001335144, 254396.824799999594688 ], [ 363340.790500000119209, 254413.651700001209974 ], [ 363364.103399999439716, 254422.075199998915195 ], [ 363366.570900000631809, 254416.395799998193979 ], [ 363370.690600000321865, 254406.085999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90446084, "LATITUDE": 18.31850219, "OBJECTID_1": 37334, "PARCEL_NO_": "107404023100", "Tax_Legal_": "FRENCHMAN'S BAY (LOT #75) 21-50 FRENCHMAN'S BAY", "Name": "RAYNE-FAHIE, LORELIE", "Address": "3012 Calhoun Ct", "City": "Virginia Beach", "State": "Virginia", "Zip": 23456, "Country": "United States", "Land_Value": 83800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.08692441, "SHAPE_Area": 2677.87394855 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361659.790799997746944, 254380.895100001245737 ], [ 361606.140100002288818, 254336.75959999859333 ], [ 361579.967699997127056, 254380.030699998140335 ], [ 361644.260499998927116, 254405.465999998152256 ], [ 361644.283900000154972, 254402.721900001168251 ], [ 361645.120700001716614, 254399.1402000002563 ], [ 361646.753100000321865, 254396.831500001251698 ], [ 361648.390900000929832, 254393.889600001275539 ], [ 361659.790799997746944, 254380.895100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88834426, "LATITUDE": 18.31863415, "OBJECTID_1": 37768, "PARCEL_NO_": "107504023600", "Tax_Legal_": "BOVONI 5-111 FRENCHMAN BAY QTR", "Name": "DAVID, MAVIS & BASSANIO JR", "Address": "PO Box 7044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13000, "Improved_V": 89300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.808461211099996, "SHAPE_Area": 472.325128592 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363337.691100001335144, 254398.849800001829863 ], [ 363315.19709999859333, 254388.955400001257658 ], [ 363307.791000001132488, 254406.415600001811981 ], [ 363331.089500002563, 254416.52760000154376 ], [ 363337.691100001335144, 254398.849800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504016700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88699635, "LATITUDE": 18.31859918, "OBJECTID_1": 37724, "PARCEL_NO_": "107504016700", "Tax_Legal_": "5A 10 BOVONI 1 & 2 FRENCHMAN BAY", "Name": "WOODS, SHELDON G. & RODRIGUEZ, H", "Address": "PO Box 302811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10400, "Improved_V": 122900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.724888809600003, "SHAPE_Area": 356.243002155 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363478.822700001299381, 254396.838500000536442 ], [ 363452.288199998438358, 254387.966499999165535 ], [ 363449.847599998116493, 254390.479600001126528 ], [ 363469.786100000143051, 254416.396200001239777 ], [ 363478.822700001299381, 254396.838500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503010500", "MAP": "D9-8558-T010", "PARCEL_NAM": "25A", "ACRE": ".53", "LONGITUDE": -64.89796134, "LATITUDE": 18.31834749, "OBJECTID_1": 37521, "PARCEL_NO_": "107503010500", "Tax_Legal_": "BOLONGO 25A FRENCHMAN BAY", "Name": "BARON, GREG J. & SHANELLE L.", "Address": "PO Box 11584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41500, "Improved_V": 104300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.7288833, "SHAPE_Area": 2391.4167524700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362343.140299998223782, 254339.203099999576807 ], [ 362302.108199998736382, 254328.3125 ], [ 362297.999300003051758, 254337.355900000780821 ], [ 362277.453100003302097, 254382.784000001847744 ], [ 362298.219400003552437, 254406.174199998378754 ], [ 362300.683300003409386, 254400.917100001126528 ], [ 362314.581299997866154, 254378.654899999499321 ], [ 362316.204700000584126, 254377.401599999517202 ], [ 362321.931599996984005, 254367.738200001418591 ], [ 362324.370300002396107, 254365.436099998652935 ], [ 362326.01349999755621, 254361.861000001430511 ], [ 362329.267499998211861, 254358.510099999606609 ], [ 362330.093599997460842, 254356.19480000063777 ], [ 362334.978200003504753, 254350.746399998664856 ], [ 362343.140299998223782, 254339.203099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90769465, "LATITUDE": 18.31844239, "OBJECTID_1": 37185, "PARCEL_NO_": "107403023000", "Tax_Legal_": "15-49 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "THOMAS, FELIX", "Address": "2945 Eskridge Rd", "City": "Fairfax", "State": "Virginia", "Zip": 22031, "Country": "United States", "Land_Value": 66600, "Improved_V": 208800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.670884677, "SHAPE_Area": 2201.2036095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361263.727700002491474, 254396.863000001758337 ], [ 361281.558300003409386, 254386.243200000375509 ], [ 361293.732100002467632, 254377.054699998348951 ], [ 361301.05009999871254, 254369.937399998307228 ], [ 361305.178700000047684, 254358.572200000286102 ], [ 361306.048000000417233, 254351.190999999642372 ], [ 361304.485699996352196, 254345.267599999904633 ], [ 361296.544900000095367, 254330.848299998790026 ], [ 361257.624300003051758, 254356.072000000625849 ], [ 361243.029799997806549, 254365.451799999922514 ], [ 361263.727700002491474, 254396.863000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89759849, "LATITUDE": 18.31851128, "OBJECTID_1": 37522, "PARCEL_NO_": "107503010600", "Tax_Legal_": "BOLONGO 24B FRENCHMAN BAY QTR.", "Name": "WILLIAMS, PAULETTE & WADE, PHI", "Address": "8018 Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023500, "Country": "United States", "Land_Value": 40200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.332445718, "SHAPE_Area": 2192.5245968700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362374.09910000115633, 254396.662799999117851 ], [ 362366.39919999986887, 254353.95890000090003 ], [ 362338.973800003528595, 254355.000999998301268 ], [ 362332.442400000989437, 254364.446699999272823 ], [ 362330.003700003027916, 254366.748799998313189 ], [ 362328.360500000417233, 254370.323899999260902 ], [ 362325.921800002455711, 254372.625999998301268 ], [ 362305.487099997699261, 254404.967199999839067 ], [ 362356.340499997138977, 254398.839499998837709 ], [ 362374.09910000115633, 254396.662799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90292804000001, "LATITUDE": 18.31843273, "OBJECTID_1": 37351, "PARCEL_NO_": "107404024800", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#45) 21-43 FRENCHMANS BAY", "Name": "MEADE, ALPHANISE P.", "Address": "PO Box 732", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 70000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.65363775500001, "SHAPE_Area": 2389.4547320900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361813.130400002002716, 254365.684799998998642 ], [ 361750.491599999368191, 254335.407999999821186 ], [ 361735.91499999910593, 254342.676899999380112 ], [ 361791.05969999730587, 254400.756799999624491 ], [ 361795.112800002098083, 254398.256900001317263 ], [ 361813.749700002372265, 254387.6435999982059 ], [ 361821.051500000059605, 254382.426100000739098 ], [ 361813.130400002002716, 254365.684799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107403010300", "MAP": "A9-728-T008", "PARCEL_NAM": "100-REM", "ACRE": "5.26", "LONGITUDE": -64.91318839, "LATITUDE": 18.31809843, "OBJECTID_1": 33294, "PARCEL_NO_": "107403010300", "Tax_Legal_": "100-1, 100-2, 100-3 & EASTMENTS FRENCHMANS BAY No.4 FRENCHMANS BAY QTR", "Name": "WORLDMARK,THE CLUB", "Address": "9805 WILLOWS ROAD", "City": "Redmond", "State": "Washington", "Zip": 980522540, "Country": "United States", "Land_Value": 1024200, "Improved_V": 871400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1227.99010243, "SHAPE_Area": 21599.921661600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360857.498999997973442, 254368.714699998497963 ], [ 360854.0320999994874, 254333.645399998873472 ], [ 360845.102399997413158, 254304.871899999678135 ], [ 360787.555399999022484, 254316.447500001639128 ], [ 360726.039599999785423, 254303.879799999296665 ], [ 360731.992799997329712, 254254.931699998676777 ], [ 360726.701099999248981, 254251.293699998408556 ], [ 360690.982299998402596, 254253.608800001442432 ], [ 360679.659400001168251, 254237.773299999535084 ], [ 360673.11540000140667, 254248.696600001305342 ], [ 360668.241499997675419, 254252.878600001335144 ], [ 360648.796499997377396, 254263.696299999952316 ], [ 360609.983800001442432, 254276.255399998277426 ], [ 360577.195299997925758, 254282.914799999445677 ], [ 360547.445500001311302, 254319.754799999296665 ], [ 360553.067900002002716, 254333.314699999988079 ], [ 360571.588799998164177, 254343.89809999987483 ], [ 360587.133100003004074, 254363.080400001257658 ], [ 360591.101899996399879, 254383.916400000452995 ], [ 360611.607100002467632, 254389.538800001144409 ], [ 360620.867499999701977, 254386.892900001257658 ], [ 360641.042099997401237, 254372.340799998492002 ], [ 360663.862400002777576, 254362.749699998646975 ], [ 360718.763599999248981, 254348.859000001102686 ], [ 360750.182899996638298, 254333.976199999451637 ], [ 360801.989799998700619, 254390.827899999916553 ], [ 360823.553099997341633, 254384.816700000315905 ], [ 360851.890900000929832, 254371.327500000596046 ], [ 360857.498999997973442, 254368.714699998497963 ] ], [ [ 360725.149999998509884, 254332.031399998813868 ], [ 360710.82150000333786, 254337.628499999642372 ], [ 360706.376500003039837, 254337.628499999642372 ], [ 360689.072700001299381, 254343.660999998450279 ], [ 360672.403999999165535, 254350.010999999940395 ], [ 360663.831399999558926, 254350.010999999940395 ], [ 360645.892700001597404, 254356.361000001430511 ], [ 360643.352700002491474, 254356.202300000935793 ], [ 360623.88289999961853, 254363.194899998605251 ], [ 360619.698899999260902, 254348.74100000038743 ], [ 360636.20889999717474, 254342.232200000435114 ], [ 360654.465199999511242, 254335.564699999988079 ], [ 360681.135200001299381, 254329.056000001728535 ], [ 360719.07660000026226, 254316.197200000286102 ], [ 360725.149999998509884, 254332.031399998813868 ] ], [ [ 360584.614100001752377, 254319.955200001597404 ], [ 360573.210699997842312, 254333.371899999678135 ], [ 360561.207699999213219, 254322.507800001651049 ], [ 360572.607500001788139, 254309.513300001621246 ], [ 360584.614100001752377, 254319.955200001597404 ] ], [ [ 360575.598999999463558, 254336.980000000447035 ], [ 360586.196199998259544, 254323.556699998676777 ], [ 360598.20099999755621, 254334.209699999541044 ], [ 360586.799300000071526, 254347.415199998766184 ], [ 360575.598999999463558, 254336.980000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504017800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88737518000001, "LATITUDE": 18.31855199, "OBJECTID_1": 37733, "PARCEL_NO_": "107504017800", "Tax_Legal_": "5A 13 BOVONI FRENCHMAN BAY", "Name": "ROMEO, LLOYD & REHENIA", "Address": "PO Box 503134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 9100, "Improved_V": 78200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.658281793, "SHAPE_Area": 582.87498999299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363439.360200002789497, 254391.027100000530481 ], [ 363436.957400001585484, 254389.107599999755621 ], [ 363432.985200002789497, 254382.109000001102686 ], [ 363426.559900000691414, 254379.101100001484156 ], [ 363421.722000002861023, 254379.061500001698732 ], [ 363418.473399996757507, 254381.779100000858307 ], [ 363410.23759999871254, 254401.976700000464916 ], [ 363431.934299997985363, 254410.809099998325109 ], [ 363439.360200002789497, 254391.027100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404026000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9019062, "LATITUDE": 18.31838069, "OBJECTID_1": 37360, "PARCEL_NO_": "107404026000", "Tax_Legal_": "FRENCHMAN'S BAY 21-5 FRENCHMAN'S BAY QTR.", "Name": "MEDNIS, ALFONS & ANITA", "Address": "1850 Lukens Ave", "City": "Willow Grove", "State": "Pennsylvania", "Zip": 19090, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.73350509, "SHAPE_Area": 2419.41126128 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361922.061700001358986, 254357.28830000013113 ], [ 361877.113200001418591, 254332.855700001120567 ], [ 361874.665500000119209, 254336.213199999183416 ], [ 361872.262800000607967, 254334.293699998408556 ], [ 361849.475599996745586, 254358.805100001394749 ], [ 361883.162699997425079, 254379.979100000113249 ], [ 361911.234399996697903, 254397.729600001126528 ], [ 361912.060500003397465, 254395.414299998432398 ], [ 361922.061700001358986, 254357.28830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88772911, "LATITUDE": 18.31855946, "OBJECTID_1": 37744, "PARCEL_NO_": "107504021100", "Tax_Legal_": "ESTATE BOVONI 5A-89 FRENCHMAN'S BAY QTR.", "Name": "GENE ARTHUR CARTY (LIFE ESTATE) & BENITA CARTY", "Address": "PO Box 7551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 99400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.288327599900001, "SHAPE_Area": 409.34942858 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363402.024499997496605, 254391.208099998533726 ], [ 363381.375799998641014, 254382.319899998605251 ], [ 363378.0912000015378, 254389.259100001305342 ], [ 363373.976899996399879, 254398.935699999332428 ], [ 363394.946000002324581, 254407.6554000005126 ], [ 363402.024499997496605, 254391.208099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88796454, "LATITUDE": 18.31854248, "OBJECTID_1": 37767, "PARCEL_NO_": "107504023500", "Tax_Legal_": "5-102 BOVONI FRENCHMAN BAY QTR", "Name": "JACKSON, JENITA", "Address": "7217 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 95600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.977818468799995, "SHAPE_Area": 454.62405342699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363378.0912000015378, 254389.259100001305342 ], [ 363355.595399998128414, 254379.575699999928474 ], [ 363348.191100001335144, 254396.824799999594688 ], [ 363370.690600000321865, 254406.085999999195337 ], [ 363373.976899996399879, 254398.935699999332428 ], [ 363378.0912000015378, 254389.259100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89713815, "LATITUDE": 18.31844879, "OBJECTID_1": 37523, "PARCEL_NO_": "107503010700", "Tax_Legal_": "24 ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "PUNJABI, MASHELLE & ARUN A", "Address": "5124 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.66014335099999, "SHAPE_Area": 1871.8569019399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362416.372599996626377, 254356.478799998760223 ], [ 362366.39919999986887, 254353.95890000090003 ], [ 362374.09910000115633, 254396.662799999117851 ], [ 362417.68860000371933, 254391.320000000298023 ], [ 362420.109300002455711, 254391.128699999302626 ], [ 362420.148900002241135, 254386.484999999403954 ], [ 362416.372599996626377, 254356.478799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503017700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89573482, "LATITUDE": 18.31825593, "OBJECTID_1": 37586, "PARCEL_NO_": "107503017700", "Tax_Legal_": "61-31L ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "ELCOCK, OLIVER & FATETTE E.", "Address": "217 Bournefield", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40300, "Improved_V": 409300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.55907546500001, "SHAPE_Area": 2153.5486311599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362556.938900001347065, 254326.176300000399351 ], [ 362518.2162000015378, 254328.181400001049042 ], [ 362517.94820000231266, 254359.632199998944998 ], [ 362535.548600003123283, 254376.0304000005126 ], [ 362541.187399998307228, 254376.709899999201298 ], [ 362546.79389999806881, 254381.188700001686811 ], [ 362548.383100003004074, 254383.945999998599291 ], [ 362548.291400000452995, 254394.710999999195337 ], [ 362566.973200000822544, 254378.820799998939037 ], [ 362559.901600003242493, 254357.020300000905991 ], [ 362559.955600000917912, 254350.687899999320507 ], [ 362556.938900001347065, 254326.176300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8882754, "LATITUDE": 18.31847844, "OBJECTID_1": 37769, "PARCEL_NO_": "107504023700", "Tax_Legal_": "5-112 ESTATE BOVONI FRENCHMAN BAY", "Name": "SANDERSON, BELINDA and FAUSTI", "Address": "7207 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 115000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.189609365300001, "SHAPE_Area": 462.19790987900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363345.090000003576279, 254382.234000001102686 ], [ 363322.599500000476837, 254371.917399998754263 ], [ 363315.19709999859333, 254388.955400001257658 ], [ 363337.691100001335144, 254398.849800001829863 ], [ 363342.602700002491474, 254390.235199999064207 ], [ 363345.090000003576279, 254382.234000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504016800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8869341, "LATITUDE": 18.31845424, "OBJECTID_1": 37725, "PARCEL_NO_": "107504016800", "Tax_Legal_": "BOVONI ESTATE 5A-9 FRENCHMAN BAY", "Name": "HENDERSON, JEFFERSON", "Address": "PO Box 7696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11700, "Improved_V": 77400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.34987574900001, "SHAPE_Area": 510.70582255900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363486.2162000015378, 254380.855900000780821 ], [ 363490.51969999819994, 254370.796100001782179 ], [ 363453.956500001251698, 254381.436200000345707 ], [ 363452.288199998438358, 254387.966499999165535 ], [ 363478.822700001299381, 254396.838500000536442 ], [ 363486.2162000015378, 254380.855900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90416456, "LATITUDE": 18.31820781, "OBJECTID_1": 37335, "PARCEL_NO_": "107404023200", "Tax_Legal_": "FRENCHMAN'S BAY 21-49(LOT#74) No.4 FRENCHMAN'S BAY QTR.", "Name": "OBBAGY, CHRISTINE", "Address": "6350 181st St", "City": "TINLEY PARK", "State": "Illinois", "Zip": 60477, "Country": "United States", "Land_Value": 90600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.30477897899999, "SHAPE_Area": 3427.2263392899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361695.920400001108646, 254354.307100001722574 ], [ 361646.76860000193119, 254300.361900001764297 ], [ 361606.140100002288818, 254336.75959999859333 ], [ 361659.790799997746944, 254380.895100001245737 ], [ 361667.121299996972084, 254372.300299998372793 ], [ 361681.723099999129772, 254362.076200000941753 ], [ 361695.920400001108646, 254354.307100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90058127, "LATITUDE": 18.31835131, "OBJECTID_1": 37462, "PARCEL_NO_": "107404040500", "Tax_Legal_": "EST. BOLONGO 105-2 FRENCHMAN'S BAY QTR.", "Name": "ISAAC, PATRICIA HELCA", "Address": "PO Box 11125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 165000, "Improved_V": 44200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.27517165899999, "SHAPE_Area": 2198.2278924900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362002.0, 254344.6435999982059 ], [ 362000.381899997591972, 254345.263700000941753 ], [ 361992.952500000596046, 254365.467799998819828 ], [ 361988.870600000023842, 254371.345100000500679 ], [ 361987.209399998188019, 254377.030999999493361 ], [ 362000.981499999761581, 254369.544300001114607 ], [ 362051.662299998104572, 254383.68019999936223 ], [ 362070.473600000143051, 254352.592300001531839 ], [ 362014.143200002610683, 254339.043499998748302 ], [ 362002.0, 254344.6435999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403026400", "MAP": "G9-2957-T79", "PARCEL_NAM": "15-79", "ACRE": ".56", "LONGITUDE": -64.90996549, "LATITUDE": 18.31827188, "OBJECTID_1": 37212, "PARCEL_NO_": "107403026400", "Tax_Legal_": "FRENCHMAN'S BAY 15-79 FRENCHMAN'S BAY QTR.", "Name": "R JOHNSON VI HOLDINGS LIVING TRUST", "Address": "10064 E Pampa Ave", "City": "Mesa", "State": "Arizona", "Zip": 85212, "Country": "United States", "Land_Value": 99000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.85349424699999, "SHAPE_Area": 2331.9273640299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361001.85419999808073, 254373.82149999961257 ], [ 361042.171599999070168, 254373.940400000661612 ], [ 361051.114799998700619, 254365.35869999974966 ], [ 361056.065999999642372, 254352.100299999117851 ], [ 361060.626199997961521, 254290.076200000941753 ], [ 361016.630400002002716, 254343.122699998319149 ], [ 361014.0945999994874, 254356.823100000619888 ], [ 361001.85419999808073, 254373.82149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90916053, "LATITUDE": 18.31820343, "OBJECTID_1": 37250, "PARCEL_NO_": "107403033700", "Tax_Legal_": "FRENCHMAN'S BAY 15-54 FRENCHMAN'S BAY QTR.", "Name": "BRUNO, THADDEUS & ELAINE", "Address": "PO Box 502542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 92200, "Improved_V": 341800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.33086026399999, "SHAPE_Area": 2941.6099186599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361143.575699999928474, 254302.576299998909235 ], [ 361106.562600001692772, 254293.196299999952316 ], [ 361103.544900000095367, 254363.465799998492002 ], [ 361092.971100002527237, 254374.144999999552965 ], [ 361135.707500003278255, 254374.283700000494719 ], [ 361142.226300001144409, 254366.315499998629093 ], [ 361143.575699999928474, 254302.576299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503017400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89660798, "LATITUDE": 18.31831865, "OBJECTID_1": 37583, "PARCEL_NO_": "107503017400", "Tax_Legal_": "ESTATE BOLONGO 61-31J FRENCHMAN'S BAY QTR.", "Name": "ADAMS, E. , J. , D. , J. , J", "Address": "61-31J EST BOLONGO BAY", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43500, "Improved_V": 337500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.42114786299999, "SHAPE_Area": 2232.0158896500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362483.161700002849102, 254372.857500001788139 ], [ 362471.130000002682209, 254365.370700001716614 ], [ 362469.004100002348423, 254330.945099998265505 ], [ 362422.124700002372265, 254343.860300000756979 ], [ 362422.047399997711182, 254352.936700001358986 ], [ 362424.448299996554852, 254355.067299999296665 ], [ 362426.861900001764297, 254355.720300000160933 ], [ 362426.825900003314018, 254359.941899999976158 ], [ 362423.582699999213219, 254362.026299998164177 ], [ 362425.809199996292591, 254384.631499998271465 ], [ 362483.915899999439716, 254378.985399998724461 ], [ 362483.161700002849102, 254372.857500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403033800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90879236000001, "LATITUDE": 18.31823699, "OBJECTID_1": 37251, "PARCEL_NO_": "107403033800", "Tax_Legal_": "FRENCHMAN'S BAY 15-55 No.4 FRENCHMAN'S BAY QTR.", "Name": "COOPER, JOANN R. & JAHMAL J. WESSELHOFT", "Address": "PO BOX 10189", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 110900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.89810147700001, "SHAPE_Area": 2650.2136926899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361183.810400001704693, 254312.404800001531839 ], [ 361143.575699999928474, 254302.576299998909235 ], [ 361142.226300001144409, 254366.315499998629093 ], [ 361135.707500003278255, 254374.283700000494719 ], [ 361177.639300003647804, 254374.204700000584126 ], [ 361180.936499997973442, 254365.787999998778105 ], [ 361183.810400001704693, 254312.404800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90840887, "LATITUDE": 18.31829354, "OBJECTID_1": 37193, "PARCEL_NO_": "107403023900", "Tax_Legal_": "FRENCHMAN'S BAY 15-56 FRENCHMAN'S BAY QTR.", "Name": "FONSECA, RAY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.74578284899999, "SHAPE_Area": 2339.0742511899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361211.972000002861023, 254319.601399999111891 ], [ 361183.810400001704693, 254312.404800001531839 ], [ 361180.936499997973442, 254365.787999998778105 ], [ 361177.639300003647804, 254374.204700000584126 ], [ 361212.312600001692772, 254374.277399998158216 ], [ 361233.391800001263618, 254360.939899999648333 ], [ 361231.008799999952316, 254356.698600001633167 ], [ 361211.972000002861023, 254319.601399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88766104, "LATITUDE": 18.31840941, "OBJECTID_1": 37745, "PARCEL_NO_": "107504021200", "Tax_Legal_": "BOVONI 5-90 1&2 FRENCHMAN BAY QT", "Name": "GEORGE, LYNETTE", "Address": "PO Box 10555", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 144700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.294911741099995, "SHAPE_Area": 409.02160258599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363409.470499999821186, 254374.807399999350309 ], [ 363388.774700000882149, 254365.703999999910593 ], [ 363385.490099996328354, 254372.643199998885393 ], [ 363381.375799998641014, 254382.319899998605251 ], [ 363402.024499997496605, 254391.208099998533726 ], [ 363403.425499998033047, 254387.953000001609325 ], [ 363409.470499999821186, 254374.807399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503013300", "MAP": "G9-1509-T70", "PARCEL_NAM": "25AB", "ACRE": null, "LONGITUDE": -64.89824389, "LATITUDE": 18.31819442, "OBJECTID_1": 37549, "PARCEL_NO_": "107503013300", "Tax_Legal_": "BOLONGO 25AB FRENCHMAN BAY", "Name": "BARONVILLE, INGRID & SMITH, MARJE", "Address": "PO Box 7462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.88070492099999, "SHAPE_Area": 1717.6453755299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362297.999300003051758, 254337.355900000780821 ], [ 362282.14639999717474, 254305.140000000596046 ], [ 362252.693000003695488, 254354.928100001066923 ], [ 362277.453100003302097, 254382.784000001847744 ], [ 362297.999300003051758, 254337.355900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88789462, "LATITUDE": 18.31839242, "OBJECTID_1": 37757, "PARCEL_NO_": "107504022500", "Tax_Legal_": "BOVONI 5-101 FRENCHMAN BAY", "Name": "Fern,R,&B,C Clarke,S Richards,E Brunson&J Petersen", "Address": "6014 NW 201st Ter", "City": "Hialeah", "State": "Florida", "Zip": 33015, "Country": "United States", "Land_Value": 12000, "Improved_V": 47800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.423443643799999, "SHAPE_Area": 434.28469178099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363385.490099996328354, 254372.643199998885393 ], [ 363362.987099997699261, 254363.804200001060963 ], [ 363361.342100001871586, 254367.590399999171495 ], [ 363359.711499996483326, 254369.688000001013279 ], [ 363357.229599997401237, 254377.056000001728535 ], [ 363355.595399998128414, 254379.575699999928474 ], [ 363378.0912000015378, 254389.259100001305342 ], [ 363381.375799998641014, 254382.319899998605251 ], [ 363385.490099996328354, 254372.643199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031300", "MAP": "A9-138-T70", "PARCEL_NAM": "96", "ACRE": "0.50", "LONGITUDE": -64.90127346, "LATITUDE": 18.31823951, "OBJECTID_1": 37398, "PARCEL_NO_": "107404031300", "Tax_Legal_": "EST. BOLONGO 96 FRENCHMAN BAY QTR", "Name": "WEEKES, WILLIAM & GWENDOLYN (TRUSTEES)", "Address": "PO Box 691923", "City": "Orlando", "State": "Florida", "Zip": 32869, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.22771717000001, "SHAPE_Area": 2461.25201036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361993.837999999523163, 254341.894000001251698 ], [ 361932.678599998354912, 254317.542100001126528 ], [ 361924.57599999755621, 254346.120900001376867 ], [ 361922.061700001358986, 254357.28830000013113 ], [ 361978.354400001466274, 254375.269799999892712 ], [ 361980.803900003433228, 254371.701200000941753 ], [ 361981.637100003659725, 254368.541600000113249 ], [ 361984.079499997198582, 254365.817400000989437 ], [ 361993.125100001692772, 254345.204300001263618 ], [ 361993.837999999523163, 254341.894000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503017600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89616446, "LATITUDE": 18.31822903, "OBJECTID_1": 37585, "PARCEL_NO_": "107503017600", "Tax_Legal_": "61-31K ESTATE BOLONGO FRENCHMAN'S BAY QTR.", "Name": "WILLIAMS, LENNOX & ANETTE", "Address": "PO Box 10593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42300, "Improved_V": 240900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.183382935, "SHAPE_Area": 2068.9541251700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362518.2162000015378, 254328.181400001049042 ], [ 362469.004100002348423, 254330.945099998265505 ], [ 362471.130000002682209, 254365.370700001716614 ], [ 362483.161700002849102, 254372.857500001788139 ], [ 362486.422899998724461, 254368.662300001829863 ], [ 362489.659000001847744, 254367.422200001776218 ], [ 362492.884199999272823, 254367.448600001633167 ], [ 362506.552000001072884, 254372.204500000923872 ], [ 362535.548600003123283, 254376.0304000005126 ], [ 362517.94820000231266, 254359.632199998944998 ], [ 362518.2162000015378, 254328.181400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88821014, "LATITUDE": 18.31832441, "OBJECTID_1": 37770, "PARCEL_NO_": "107504023800", "Tax_Legal_": "5-113 ESTATE BOVONI(WESTERN PART No.1&2 FRENCHMAN'S BAY QTR.", "Name": "HUGHES, LORNE D. & ROBINSON, TRACY", "Address": "One River Pl", "City": "New York", "State": "New York", "Zip": 10036, "Country": "United States", "Land_Value": 12600, "Improved_V": 96300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.968713488700004, "SHAPE_Area": 460.66651329299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363352.490599997341633, 254365.4070999994874 ], [ 363329.195699997246265, 254354.872800000011921 ], [ 363322.599500000476837, 254371.917399998754263 ], [ 363345.090000003576279, 254382.234000001102686 ], [ 363352.490599997341633, 254365.4070999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504016900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88692249, "LATITUDE": 18.3183154, "OBJECTID_1": 37726, "PARCEL_NO_": "107504016900", "Tax_Legal_": "5A 8 BOVONI NOS.1&2 FRENCHMAN'S BAY QTR.", "Name": "ANGEL M. RIVERA & TERECITA M. RIVERA REV. TRUST", "Address": "PO Box 7541", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.926310016, "SHAPE_Area": 509.01649040199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363493.502300001680851, 254363.933699999004602 ], [ 363477.37780000269413, 254355.238499999046326 ], [ 363474.535800002515316, 254357.609299998730421 ], [ 363451.386699996888638, 254376.920899998396635 ], [ 363451.573600001633167, 254377.194899998605251 ], [ 363453.956500001251698, 254381.436200000345707 ], [ 363490.51969999819994, 254370.796100001782179 ], [ 363491.975500002503395, 254367.39299999922514 ], [ 363493.502300001680851, 254363.933699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90280085000001, "LATITUDE": 18.31817251, "OBJECTID_1": 37350, "PARCEL_NO_": "107404024700", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#37)21-42 FRENCHMANS BAY", "Name": "DOWNING, RADMAR", "Address": "12 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65700, "Improved_V": 153800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.14295662399999, "SHAPE_Area": 2097.5502866299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361807.934000000357628, 254313.079999998211861 ], [ 361759.420400001108646, 254328.515000000596046 ], [ 361756.166400000452995, 254331.865800000727177 ], [ 361754.542900003492832, 254333.119100000709295 ], [ 361750.491599999368191, 254335.407999999821186 ], [ 361813.130400002002716, 254365.684799998998642 ], [ 361828.547499999403954, 254354.412000000476837 ], [ 361807.934000000357628, 254313.079999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88704694, "LATITUDE": 18.31823167, "OBJECTID_1": 37727, "PARCEL_NO_": "107504017000", "Tax_Legal_": "5A-7 BOVONI 1 & 2 FRENCHMAN BAY", "Name": "TODMAN MATTHEWS, MONIQUE A., ANIQUA AND NIKYSHA & WILL SMITH", "Address": "23455 Arora Hill Dr", "City": "Clarksburg", "State": "Maryland", "Zip": 20871, "Country": "United States", "Land_Value": 13000, "Improved_V": 116100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.058961792399998, "SHAPE_Area": 437.95493614499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363477.37780000269413, 254355.238499999046326 ], [ 363457.330099999904633, 254344.121700000017881 ], [ 363455.663199998438358, 254345.153499998152256 ], [ 363448.371699996292591, 254374.424400001764297 ], [ 363449.980700001120567, 254374.8597999997437 ], [ 363451.386699996888638, 254376.920899998396635 ], [ 363474.535800002515316, 254357.609299998730421 ], [ 363477.37780000269413, 254355.238499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90369204, "LATITUDE": 18.31805113, "OBJECTID_1": 37336, "PARCEL_NO_": "107404023300", "Tax_Legal_": "FRENCHMAN'S BAY (LOT #73) 21-48 FRENCHMAN'S BAY", "Name": "TURNBULL, ELROY", "Address": "PMP GARDENS APT.21", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84600, "Improved_V": 102100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.92580247000001, "SHAPE_Area": 2651.2175907599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361749.040799997746944, 254316.397700000554323 ], [ 361646.76860000193119, 254300.361900001764297 ], [ 361695.920400001108646, 254354.307100001722574 ], [ 361712.508599996566772, 254345.229600001126528 ], [ 361744.084299996495247, 254330.289299998432398 ], [ 361748.139200001955032, 254327.578299999237061 ], [ 361749.785999998450279, 254323.581000000238419 ], [ 361749.834499999880791, 254317.881799999624491 ], [ 361749.040799997746944, 254316.397700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504017100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88723094, "LATITUDE": 18.31826537, "OBJECTID_1": 37728, "PARCEL_NO_": "107504017100", "Tax_Legal_": "5A-6 BOVONI FRENCHMAN BAY QTR", "Name": "GOTTLIEB, JANICE A.", "Address": "3001 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29400, "Improved_V": 102400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.656326479499995, "SHAPE_Area": 502.60481325799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363425.875799998641014, 254364.741099998354912 ], [ 363426.630000002682209, 254370.868999999016523 ], [ 363435.454499997198582, 254376.218600001186132 ], [ 363437.875200003385544, 254376.027300000190735 ], [ 363439.500399999320507, 254374.562899999320507 ], [ 363442.734700001776218, 254373.533900000154972 ], [ 363446.766199998557568, 254373.566899999976158 ], [ 363448.371699996292591, 254374.424400001764297 ], [ 363455.185300000011921, 254347.072000000625849 ], [ 363455.663199998438358, 254345.153499998152256 ], [ 363450.186300002038479, 254348.487300001084805 ], [ 363442.010600000619888, 254352.535399999469519 ], [ 363433.279399998486042, 254357.059799998998642 ], [ 363428.325400002300739, 254361.172600001096725 ], [ 363425.875799998641014, 254364.741099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88759469, "LATITUDE": 18.31825867, "OBJECTID_1": 37746, "PARCEL_NO_": "107504021300", "Tax_Legal_": "5-91 BOVONI NOS.1&2 FRENCHMAN'S BAY QTR.", "Name": "EMMANUEL, CORINE E., SHERIN A. & OMAR J.", "Address": "PO Box 9462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 139200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.293370646100001, "SHAPE_Area": 409.10845799399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363415.802500002086163, 254357.553300000727177 ], [ 363395.369000002741814, 254348.87049999833107 ], [ 363392.890799999237061, 254355.816300000995398 ], [ 363388.774700000882149, 254365.703999999910593 ], [ 363409.470499999821186, 254374.807399999350309 ], [ 363411.292099997401237, 254370.8462999984622 ], [ 363415.802500002086163, 254357.553300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90793867, "LATITUDE": 18.31810094, "OBJECTID_1": 37252, "PARCEL_NO_": "107403034000", "Tax_Legal_": "15-57 FRENCHMANS BAY FRENCHMAN'S BAY QTR", "Name": "THOMAS, FELIX A", "Address": "2945 Eskridge Rd", "City": "Fairfax", "State": "Virginia", "Zip": 22031, "Country": "United States", "Land_Value": 110100, "Improved_V": 113300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.54806526, "SHAPE_Area": 3036.6699571499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361296.544900000095367, 254330.848299998790026 ], [ 361294.957400001585484, 254327.879999998956919 ], [ 361289.363600000739098, 254321.923599999397993 ], [ 361277.347999997437, 254312.537099998444319 ], [ 361253.322300001978874, 254293.130899999290705 ], [ 361211.972000002861023, 254319.601399999111891 ], [ 361231.008799999952316, 254356.698600001633167 ], [ 361250.466399997472763, 254344.403299998492002 ], [ 361257.624300003051758, 254356.072000000625849 ], [ 361296.544900000095367, 254330.848299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88782909, "LATITUDE": 18.31823931, "OBJECTID_1": 37756, "PARCEL_NO_": "107504022400", "Tax_Legal_": "5-100 BOVONI FRENCHMAN BAY", "Name": "HUGHES, AGNES J. P", "Address": "5-100 Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 148300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.186958150899997, "SHAPE_Area": 465.091307691 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363392.890799999237061, 254355.816300000995398 ], [ 363369.590400002896786, 254345.915300000458956 ], [ 363364.633900001645088, 254359.80689999833703 ], [ 363363.003300003707409, 254361.904500000178814 ], [ 363362.987099997699261, 254363.804200001060963 ], [ 363385.490099996328354, 254372.643199998885393 ], [ 363388.774700000882149, 254365.703999999910593 ], [ 363392.890799999237061, 254355.816300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107403016800", "MAP": "D9-6322-T97", "PARCEL_NAM": "100-B", "ACRE": null, "LONGITUDE": -64.91423152, "LATITUDE": 18.31823363, "OBJECTID_1": 33374, "PARCEL_NO_": "107403016800", "Tax_Legal_": "FRENCHMANS BAY 100A, 100B & 100C #4 FRENCHMANS BAY QTR", "Name": "CLUB WYNDHAM ACCESS", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 0, "Improved_V": 3928900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.906959943399997, "SHAPE_Area": 270.46029244599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360586.196199998259544, 254323.556699998676777 ], [ 360575.598999999463558, 254336.980000000447035 ], [ 360586.799300000071526, 254347.415199998766184 ], [ 360598.20099999755621, 254334.209699999541044 ], [ 360586.196199998259544, 254323.556699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404026100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90171659000001, "LATITUDE": 18.31802711, "OBJECTID_1": 37361, "PARCEL_NO_": "107404026100", "Tax_Legal_": "FRENCHMAN'S BAY 21-6(LOT#1) FRENCHMAN'S BAY QTR.", "Name": "FONTAINE, DOREEN & BAPTISTE, ANTHY", "Address": "PO Box 11223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66500, "Improved_V": 197300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.793286857, "SHAPE_Area": 2160.0180372300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361877.113200001418591, 254332.855700001120567 ], [ 361922.061700001358986, 254357.28830000013113 ], [ 361924.57599999755621, 254346.120900001376867 ], [ 361935.383500002324581, 254308.001400001347065 ], [ 361937.877999998629093, 254299.155900001525879 ], [ 361928.209399998188019, 254298.232400000095367 ], [ 361896.754199996590614, 254299.0304000005126 ], [ 361895.07150000333786, 254307.249299999326468 ], [ 361892.602200001478195, 254313.139699999243021 ], [ 361874.705099999904633, 254331.569400001317263 ], [ 361877.113200001418591, 254332.855700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90720046, "LATITUDE": 18.31802785, "OBJECTID_1": 37324, "PARCEL_NO_": "107404020600", "Tax_Legal_": "FRENCHMAN'S BAY 15-30 FRENCHMAN BAY QTR", "Name": "JOHN-ALEXANDRE I. ATTIAS and ALANAH A A HARTHMAN", "Address": "PO Box 304853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55700, "Improved_V": 164200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.352445652, "SHAPE_Area": 1608.8860551600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361336.428199999034405, 254287.267200000584126 ], [ 361310.527300000190735, 254298.665399998426437 ], [ 361313.671599999070168, 254308.19029999896884 ], [ 361316.735100001096725, 254327.213799998164177 ], [ 361315.730899997055531, 254350.425900001078844 ], [ 361352.959799997508526, 254334.476399999111891 ], [ 361336.428199999034405, 254287.267200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88814495, "LATITUDE": 18.31817015, "OBJECTID_1": 37771, "PARCEL_NO_": "107504023900", "Tax_Legal_": "5-114 BOVONI FRENCHMAN BAY", "Name": "JIMENEZ, R. & V", "Address": "PO Box 414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13000, "Improved_V": 76800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.836948165899997, "SHAPE_Area": 479.389634586 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363359.894900001585484, 254348.157999999821186 ], [ 363335.791799999773502, 254337.828200001269579 ], [ 363329.195699997246265, 254354.872800000011921 ], [ 363352.490599997341633, 254365.4070999994874 ], [ 363359.894900001585484, 254348.157999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90241772, "LATITUDE": 18.31796837, "OBJECTID_1": 37362, "PARCEL_NO_": "107404026200", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#24)21-9 FRENCHMANS BAY", "Name": "ALEXANDER, JAMES", "Address": "PO Box 12202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.97439548899999, "SHAPE_Area": 2173.4611437399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361869.913999997079372, 254326.041799999773502 ], [ 361866.719300001859665, 254322.427099999040365 ], [ 361850.682899996638298, 254311.741099998354912 ], [ 361823.559600003063679, 254277.322000000625849 ], [ 361804.066100001335144, 254293.838799998164177 ], [ 361812.042900003492832, 254304.03660000115633 ], [ 361815.2195999994874, 254309.762099999934435 ], [ 361834.238399997353554, 254348.970100000500679 ], [ 361837.445699997246265, 254351.107299998402596 ], [ 361845.5033999979496, 254351.806499999016523 ], [ 361847.945699997246265, 254349.082299999892712 ], [ 361869.913999997079372, 254326.041799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89722307, "LATITUDE": 18.31813526, "OBJECTID_1": 37525, "PARCEL_NO_": "107503010900", "Tax_Legal_": "BOLONGO 24A FRENCHMAN BAY QTR", "Name": "RICHARDSON, ALITA T", "Address": "PO BOX 308125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.35037255500001, "SHAPE_Area": 2100.6147917600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362416.372599996626377, 254356.478799998760223 ], [ 362415.090899996459484, 254317.627099998295307 ], [ 362360.985200002789497, 254326.894600000232458 ], [ 362360.159100003540516, 254329.209899999201298 ], [ 362358.539300002157688, 254330.041000001132488 ], [ 362357.71679999679327, 254331.934099998325109 ], [ 362351.207000002264977, 254338.846900001168251 ], [ 362338.973800003528595, 254355.000999998301268 ], [ 362366.39919999986887, 254353.95890000090003 ], [ 362416.372599996626377, 254356.478799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89849484, "LATITUDE": 18.31793114, "OBJECTID_1": 37520, "PARCEL_NO_": "107503010400", "Tax_Legal_": "BOLONGO 25 FRENCHMAN BAY QTR", "Name": "GEORGES, ORELIA (LIFE ESTATE)", "Address": "6743 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165000, "Improved_V": 103500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.24272142300001, "SHAPE_Area": 2322.3075143000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362282.14639999717474, 254305.140000000596046 ], [ 362243.64299999922514, 254281.393500000238419 ], [ 362220.740800000727177, 254319.413899999111891 ], [ 362252.693000003695488, 254354.928100001066923 ], [ 362282.14639999717474, 254305.140000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90043137000001, "LATITUDE": 18.31809286, "OBJECTID_1": 37460, "PARCEL_NO_": "107404040300", "Tax_Legal_": "105-1 ESATTE BOLONGO FRENCHMAN BAY QUARTER", "Name": "HOLDER, SR., ROBERT", "Address": "170 Estate Tutu", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33500, "Improved_V": 140100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.339356673, "SHAPE_Area": 1943.5986731800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362086.016500003635883, 254326.5439000017941 ], [ 362024.058100000023842, 254311.049199998378754 ], [ 362020.793300002813339, 254315.666499998420477 ], [ 362019.965400002896786, 254318.192899998277426 ], [ 362002.025100000202656, 254341.688499998301268 ], [ 362002.0, 254344.6435999982059 ], [ 362014.143200002610683, 254339.043499998748302 ], [ 362070.473600000143051, 254352.592300001531839 ], [ 362086.016500003635883, 254326.5439000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89972864000001, "LATITUDE": 18.31776206, "OBJECTID_1": 37461, "PARCEL_NO_": "107404040400", "Tax_Legal_": "BOLONGO ESTATE 107 REMAINDER No.3 FRENCHMAN'S BAY QTR.", "Name": "N. CARIBBEAN CONF. OF 7TH DAY", "Address": "PO Box 502098", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 250500, "Improved_V": 812700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 537.08284821200004, "SHAPE_Area": 13087.155174400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362224.977399997413158, 254295.38399999961257 ], [ 362142.967299997806549, 254267.270599998533726 ], [ 362156.026500001549721, 254248.801199998706579 ], [ 362108.355200000107288, 254260.021200001239777 ], [ 362072.326399996876717, 254229.750999998301268 ], [ 362052.798699997365475, 254250.278400000184774 ], [ 362038.918799996376038, 254270.429800000041723 ], [ 362034.809900000691414, 254279.473200000822544 ], [ 362024.058100000023842, 254311.049199998378754 ], [ 362086.016500003635883, 254326.5439000017941 ], [ 362186.600599996745586, 254351.431800000369549 ], [ 362198.810300000011921, 254338.021800000220537 ], [ 362224.977399997413158, 254295.38399999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88751837, "LATITUDE": 18.31807545, "OBJECTID_1": 37747, "PARCEL_NO_": "107504021400", "Tax_Legal_": "5-92&5A-98&99 BOVONI FRENCHMAN BAY", "Name": "SIMMON, ARISTIDE & OLIVIA", "Address": "PO Box 7194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19000, "Improved_V": 109700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.85520706600001, "SHAPE_Area": 601.77806940400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363410.570699997246265, 254324.343100000172853 ], [ 363407.167199999094009, 254321.248599998652935 ], [ 363406.887599997222424, 254321.94480000063777 ], [ 363401.126500003039837, 254335.618700001388788 ], [ 363399.485100001096725, 254338.982799999415874 ], [ 363395.369000002741814, 254348.87049999833107 ], [ 363415.802500002086163, 254357.553300000727177 ], [ 363417.51630000025034, 254354.904599998146296 ], [ 363421.611199997365475, 254350.323800001293421 ], [ 363425.651799999177456, 254347.907800000160933 ], [ 363427.17790000140667, 254346.995299998670816 ], [ 363415.948100000619888, 254329.983899999409914 ], [ 363414.707099996507168, 254328.103900000452995 ], [ 363410.570699997246265, 254324.343100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504050700", "MAP": "F9-1409-T64", "PARCEL_NAM": "4A-A-1", "ACRE": ".16", "LONGITUDE": -64.88336175000001, "LATITUDE": 18.31807006, "OBJECTID_1": 37847, "PARCEL_NO_": "107504050700", "Tax_Legal_": "4A A 1 BOVONI FRENCHMAN BAY QTR", "Name": "PENN, CALVIN & LORNA", "Address": "PO Box 9786", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21500, "Improved_V": 134100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.510104121, "SHAPE_Area": 761.08097130500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363869.604800000786781, 254338.186500001698732 ], [ 363839.042300000786781, 254328.859299998730421 ], [ 363830.792199999094009, 254350.74549999833107 ], [ 363860.539399996399879, 254361.121500000357628 ], [ 363869.604800000786781, 254338.186500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88776643, "LATITUDE": 18.31808522, "OBJECTID_1": 37755, "PARCEL_NO_": "107504022300", "Tax_Legal_": "5-99 BOVONI FRENCHMAN BAY", "Name": "FREDERICKS, VANITO A", "Address": "103-04 Rockaway Beach Blvd", "City": "Rockaway Park", "State": "New York", "Zip": 11694, "Country": "United States", "Land_Value": 12000, "Improved_V": 79400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.520185254899999, "SHAPE_Area": 452.32500014300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363399.485100001096725, 254338.982799999415874 ], [ 363376.18299999833107, 254329.292899999767542 ], [ 363369.590400002896786, 254345.915300000458956 ], [ 363392.890799999237061, 254355.816300000995398 ], [ 363395.369000002741814, 254348.87049999833107 ], [ 363399.485100001096725, 254338.982799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504017400", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-4", "ACRE": "0.16", "LONGITUDE": -64.8868162, "LATITUDE": 18.31806624, "OBJECTID_1": 37730, "PARCEL_NO_": "107504017400", "Tax_Legal_": "BOVONI 5A 4 FRENCHMAN BAY ST T", "Name": "BOVONI BAPTIST CHURCH", "Address": "PO Box 306299", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34900, "Improved_V": 291500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.10827734599999, "SHAPE_Area": 713.77373880699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363503.495800003409386, 254340.256299998611212 ], [ 363478.640399999916553, 254323.587499998509884 ], [ 363474.560300000011921, 254329.253699999302626 ], [ 363468.869300000369549, 254334.695500001311302 ], [ 363463.165200002491474, 254340.202500000596046 ], [ 363495.488200001418591, 254359.434399999678135 ], [ 363497.731200002133846, 254354.352400001138449 ], [ 363503.495800003409386, 254340.256299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503018300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89663551, "LATITUDE": 18.31788339, "OBJECTID_1": 37591, "PARCEL_NO_": "107503018300", "Tax_Legal_": "61-36A ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "FREEMAN, VELMA", "Address": "215-294 Anna S Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42900, "Improved_V": 166000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.21501119499999, "SHAPE_Area": 2419.8389044099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362472.484700001776218, 254300.9983000010252 ], [ 362475.083499997854233, 254279.910199999809265 ], [ 362421.721199996769428, 254296.572000000625849 ], [ 362422.124700002372265, 254343.860300000756979 ], [ 362469.004100002348423, 254330.945099998265505 ], [ 362472.484700001776218, 254300.9983000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021500", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-93", "ACRE": "0.10", "LONGITUDE": -64.88734146, "LATITUDE": 18.3179895, "OBJECTID_1": 37748, "PARCEL_NO_": "107504021500", "Tax_Legal_": "BOVONI ESTATE 5A-93 FRENCHMAN'S BAY QTR.", "Name": "PICKERING, SR. , E. & C. A. LIFE INTE", "Address": "PO Box 7518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 121700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.849018065400003, "SHAPE_Area": 466.567637752 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363444.029200002551079, 254338.108500000089407 ], [ 363432.091499999165535, 254316.800999999046326 ], [ 363428.427299998700619, 254319.183299999684095 ], [ 363414.707099996507168, 254328.103900000452995 ], [ 363415.948100000619888, 254329.983899999409914 ], [ 363427.17790000140667, 254346.995299998670816 ], [ 363428.343599997460842, 254346.298300001770258 ], [ 363441.785700000822544, 254339.279899999499321 ], [ 363444.029200002551079, 254338.108500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031400", "MAP": "D9-8306-T009", "PARCEL_NAM": "95", "ACRE": null, "LONGITUDE": -64.90117422, "LATITUDE": 18.31793133, "OBJECTID_1": 37399, "PARCEL_NO_": "107404031400", "Tax_Legal_": "BOLONGO 95 FRENCHMAN BAY QTR", "Name": "SMITH, MARCELLA N", "Address": "PO Box 1093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.93486064699999, "SHAPE_Area": 2175.8163756600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362004.476499997079372, 254313.025800000876188 ], [ 361941.771799996495247, 254283.756299998611212 ], [ 361937.877999998629093, 254299.155900001525879 ], [ 361935.383500002324581, 254308.001400001347065 ], [ 361932.678599998354912, 254317.542100001126528 ], [ 361993.837999999523163, 254341.894000001251698 ], [ 361994.804300002753735, 254337.407600000500679 ], [ 361998.950900003314018, 254323.931499999016523 ], [ 362004.476499997079372, 254313.025800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88808373000001, "LATITUDE": 18.31802133, "OBJECTID_1": 37772, "PARCEL_NO_": "107504024000", "Tax_Legal_": "BOVONI 5-115 FRENCHMAN BAY", "Name": "DANIEL, JAMES A. & VIDA", "Address": "7205 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 116700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.580115886300007, "SHAPE_Area": 439.47686810200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363366.4712999984622, 254333.435300000011921 ], [ 363343.187100000679493, 254321.634500000625849 ], [ 363335.791799999773502, 254337.828200001269579 ], [ 363359.894900001585484, 254348.157999999821186 ], [ 363363.193899996578693, 254339.530200000852346 ], [ 363364.824500001966953, 254337.432599999010563 ], [ 363364.840700000524521, 254335.532900001853704 ], [ 363366.4712999984622, 254333.435300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503010800", "MAP": "G9-1509-T70", "PARCEL_NAM": "25B", "ACRE": null, "LONGITUDE": -64.89773686, "LATITUDE": 18.31790087, "OBJECTID_1": 37524, "PARCEL_NO_": "107503010800", "Tax_Legal_": "BOLONGO 25B FRENCHMAN BAY QTR", "Name": "MC GOWEN, WILLIE", "Address": "1751 Indian Way", "City": "Oakland", "State": "California", "Zip": 94611, "Country": "United States", "Land_Value": 163400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.30725622599999, "SHAPE_Area": 2460.9460111499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362343.140299998223782, 254339.203099999576807 ], [ 362377.388400003314018, 254294.520399998873472 ], [ 362287.846400000154972, 254298.642700001597404 ], [ 362302.108199998736382, 254328.3125 ], [ 362343.140299998223782, 254339.203099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90373004, "LATITUDE": 18.31773894, "OBJECTID_1": 37337, "PARCEL_NO_": "107404023400", "Tax_Legal_": "FRENCHMAN'S BAY (LOT #39) 21-68 FRENCHMAN'S BAY", "Name": "KING, ADRIENNE", "Address": "7220 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022505, "Country": "United States", "Land_Value": 94000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.81153045900001, "SHAPE_Area": 2982.20273993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361646.76860000193119, 254300.361900001764297 ], [ 361749.040799997746944, 254316.397700000554323 ], [ 361728.333800002932549, 254286.041799999773502 ], [ 361723.540899999439716, 254280.725299999117851 ], [ 361689.081699997186661, 254255.534200001507998 ], [ 361661.431500002741814, 254282.961100000888109 ], [ 361646.76860000193119, 254300.361900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504050600", "MAP": "F9-1409-T64", "PARCEL_NAM": "4A-A-3", "ACRE": ".16", "LONGITUDE": -64.88370961, "LATITUDE": 18.31793312, "OBJECTID_1": 37846, "PARCEL_NO_": "107504050600", "Tax_Legal_": "BOVONI 4A A 3 FRENCHMAN BAY QTR", "Name": "BOYCE, HUBORN C.", "Address": "8300 Gloria Ave", "City": "North Hills", "State": "California", "Zip": 91343, "Country": "United States", "Land_Value": 20300, "Improved_V": 131900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.667553101, "SHAPE_Area": 687.72353176800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363807.738200001418591, 254311.926699999719858 ], [ 363797.024099998176098, 254339.070099998265505 ], [ 363818.729800000786781, 254346.847100000828505 ], [ 363830.251999996602535, 254319.499200001358986 ], [ 363807.738200001418591, 254311.926699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021600", "MAP": "A9-45-T65", "PARCEL_NAM": "REM 5A", "ACRE": null, "LONGITUDE": -64.88721884, "LATITUDE": 18.31766715, "OBJECTID_1": 37749, "PARCEL_NO_": "107504021600", "Tax_Legal_": "REM 5A,5A-1,5A-95THRU 97 BOVONI", "Name": "V. I. BAPTIST MISSION", "Address": "PO Box 2087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 167700, "Improved_V": 1015300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.63610371800002, "SHAPE_Area": 3230.38807124 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363479.230099998414516, 254295.499899998307228 ], [ 363449.945799998939037, 254284.300400000065565 ], [ 363461.482299998402596, 254255.263900000602007 ], [ 363438.153200000524521, 254248.740100000053644 ], [ 363428.285099998116493, 254271.246399998664856 ], [ 363427.45719999819994, 254273.772700000554323 ], [ 363420.880800001323223, 254288.49549999833107 ], [ 363413.478299997746944, 254305.533500000834465 ], [ 363407.167199999094009, 254321.248599998652935 ], [ 363410.570699997246265, 254324.343100000172853 ], [ 363414.707099996507168, 254328.103900000452995 ], [ 363428.427299998700619, 254319.183299999684095 ], [ 363432.091499999165535, 254316.800999999046326 ], [ 363444.029200002551079, 254338.108500000089407 ], [ 363453.204599998891354, 254332.804200001060963 ], [ 363459.600299999117851, 254326.745099999010563 ], [ 363468.520599998533726, 254316.141600001603365 ], [ 363475.589599996805191, 254304.528400000184774 ], [ 363479.230099998414516, 254295.499899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109502010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87240228, "LATITUDE": 18.31348662, "OBJECTID_1": 42244, "PARCEL_NO_": "109502010200", "Tax_Legal_": "BOVONI CAY FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2037300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4459.87461661, "SHAPE_Area": 213682.424566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365206.318400003015995, 253231.175299998372793 ], [ 365212.066899999976158, 253218.978999998420477 ], [ 365218.578500002622604, 253211.855099998414516 ], [ 365219.444200001657009, 253204.896099999547005 ], [ 365218.675599999725819, 253200.456799998879433 ], [ 365218.821299999952316, 253183.359400000423193 ], [ 365219.656300000846386, 253179.988800000399351 ], [ 365208.375200003385544, 253179.052099999040365 ], [ 365196.235500000417233, 253184.230000000447035 ], [ 365185.739100001752377, 253185.832899998873472 ], [ 365180.055299997329712, 253190.430399999022484 ], [ 365175.982400000095367, 253195.252199999988079 ], [ 365139.475400000810623, 253221.129000000655651 ], [ 365105.56530000269413, 253226.128899998962879 ], [ 365090.214800000190735, 253229.59180000051856 ], [ 365082.119300000369549, 253233.325199998915195 ], [ 365054.652500003576279, 253239.222100000828505 ], [ 365034.478500001132488, 253240.956900000572205 ], [ 365025.605499997735023, 253241.306400001049042 ], [ 365016.761200003325939, 253238.2787000015378 ], [ 364991.745800003409386, 253240.396000001579523 ], [ 364975.623099997639656, 253239.841899998486042 ], [ 364962.729299999773502, 253238.892000000923872 ], [ 364951.473300002515316, 253235.000199999660254 ], [ 364945.020999997854233, 253235.158500000834465 ], [ 364934.492200002074242, 253240.560699999332428 ], [ 364923.108499996364117, 253251.655499998480082 ], [ 364915.776199996471405, 253260.461399998515844 ], [ 364914.12219999730587, 253265.302999999374151 ], [ 364910.851999998092651, 253270.553599998354912 ], [ 364900.353699997067451, 253272.367499999701977 ], [ 364893.077100001275539, 253274.629999998956919 ], [ 364889.83389999717474, 253276.714400000870228 ], [ 364883.383400000631809, 253276.66160000115633 ], [ 364874.54450000077486, 253273.000700000673532 ], [ 364869.710299998521805, 253272.538899999111891 ], [ 364863.248999997973442, 253273.752599999308586 ], [ 364853.542700000107288, 253277.261700000613928 ], [ 364848.699400000274181, 253277.855399999767542 ], [ 364847.068800002336502, 253279.953000001609325 ], [ 364846.235500000417233, 253283.11259999871254 ], [ 364848.625699996948242, 253286.50959999859333 ], [ 364851.841899998486042, 253287.591400001198053 ], [ 364854.998800002038479, 253295.638799998909235 ], [ 364854.926899999380112, 253304.081999998539686 ], [ 364852.446800000965595, 253311.238800000399351 ], [ 364851.56139999628067, 253320.51969999819994 ], [ 364856.336300000548363, 253327.94709999859333 ], [ 364859.44650000333786, 253341.482500001788139 ], [ 364860.159299999475479, 253352.465199999511242 ], [ 364863.3378000035882, 253357.979600001126528 ], [ 364868.16669999808073, 253359.074599999934435 ], [ 364870.590999998152256, 253358.461199998855591 ], [ 364890.838699996471405, 253348.072200000286102 ], [ 364897.291000001132488, 253347.914000000804663 ], [ 364897.274899996817112, 253349.813700001686811 ], [ 364894.033399999141693, 253351.686999998986721 ], [ 364892.402800001204014, 253353.784600000828505 ], [ 364885.943300001323223, 253354.787200000137091 ], [ 364883.508199997246265, 253356.667100001126528 ], [ 364875.360600002110004, 253366.521800000220537 ], [ 364874.523699998855591, 253370.103500001132488 ], [ 364875.284999996423721, 253375.387099999934435 ], [ 364876.861699998378754, 253379.621899999678135 ], [ 364880.841099999845028, 253385.776200000196695 ], [ 364884.86370000243187, 253386.864599999040365 ], [ 364887.268200002610683, 253388.572999998927116 ], [ 364899.251400001347065, 253401.758900001645088 ], [ 364909.65259999781847, 253411.343199998140335 ], [ 364944.952299997210503, 253432.5304000005126 ], [ 364972.35080000013113, 253434.654500000178814 ], [ 364980.419299997389317, 253434.087200000882149 ], [ 364992.540899999439716, 253431.019999999552965 ], [ 364997.380599997937679, 253430.848499998450279 ], [ 365006.23030000180006, 253433.243000000715256 ], [ 365011.851099997758865, 253436.03319999948144 ], [ 365014.196299999952316, 253444.70719999819994 ], [ 365013.336000002920628, 253451.032999999821186 ], [ 365011.694600000977516, 253454.397100001573563 ], [ 365007.630699999630451, 253458.163499999791384 ], [ 365005.987499997019768, 253461.738600000739098 ], [ 365007.484999999403954, 253475.260899998247623 ], [ 364999.301399998366833, 253489.337200000882149 ], [ 364990.275600001215935, 253507.628400001674891 ], [ 364985.268700003623962, 253527.430300001055002 ], [ 364984.402999997138977, 253534.389299999922514 ], [ 364972.096100002527237, 253559.197599999606609 ], [ 364971.192699998617172, 253570.589200001209974 ], [ 364971.864200003445148, 253586.426699999719858 ], [ 364973.385099999606609, 253597.204999998211861 ], [ 364970.806100003421307, 253615.971200000494719 ], [ 364970.703599996864796, 253628.002700001001358 ], [ 364958.279899999499321, 253666.531100001186132 ], [ 364957.430399999022484, 253671.590399999171495 ], [ 364959.660499997437, 253693.773499999195337 ], [ 364959.56700000166893, 253704.749600000679493 ], [ 364956.156499996781349, 253726.464299999177456 ], [ 364939.985299997031689, 253731.609299998730421 ], [ 364931.058399997651577, 253738.291200000792742 ], [ 364931.799900002777576, 253745.896699998527765 ], [ 364933.376599997282028, 253750.131400000303984 ], [ 364932.552299998700619, 253752.235599998384714 ], [ 364926.873999997973442, 253756.19990000128746 ], [ 364907.484700001776218, 253760.474199999123812 ], [ 364895.355800002813339, 253764.38569999858737 ], [ 364873.500900000333786, 253774.128199998289347 ], [ 364871.857699997723103, 253777.703400000929832 ], [ 364870.995600000023842, 253784.240200001746416 ], [ 364871.751599997282028, 253790.157000001519918 ], [ 364875.730999998748302, 253796.311299998313189 ], [ 364907.936800003051758, 253802.063299998641014 ], [ 364919.187399998307228, 253806.58839999884367 ], [ 364947.368699997663498, 253811.463100001215935 ], [ 364951.350000001490116, 253817.406300000846386 ], [ 364951.3175999969244, 253821.205699998885393 ], [ 364949.663599997758865, 253826.0472999997437 ], [ 364945.601499997079372, 253829.602699998766184 ], [ 364932.659100003540516, 253834.35190000012517 ], [ 364928.607799999415874, 253836.640799999237061 ], [ 364926.13849999755621, 253842.531199999153614 ], [ 364921.23589999973774, 253850.090399999171495 ], [ 364904.096500001847744, 253874.225900001823902 ], [ 364902.402999997138977, 253883.711199998855591 ], [ 364902.334700003266335, 253891.732200000435114 ], [ 364903.873599998652935, 253900.399700000882149 ], [ 364903.826800003647804, 253905.887699998915195 ], [ 364899.712499998509884, 253915.564399998635054 ], [ 364898.863099999725819, 253920.623599998652935 ], [ 364897.243199996650219, 253921.454799998551607 ], [ 364892.407200001180172, 253921.204100001603365 ], [ 364886.754000000655651, 253922.213300000876188 ], [ 364881.885499998927116, 253925.761999998241663 ], [ 364873.701899997889996, 253939.838300000876188 ], [ 364870.446099996566772, 253943.400299999862909 ], [ 364869.594800002872944, 253948.6706000007689 ], [ 364870.35980000346899, 253953.532000001519918 ], [ 364886.358400002121925, 253968.650600001215935 ], [ 364891.973800003528595, 253972.074099998921156 ], [ 364896.79730000346899, 253973.802299998700619 ], [ 364941.943599998950958, 253975.016199998557568 ], [ 364942.731899999082088, 253977.133600000292063 ], [ 364918.542499996721745, 253976.935600001364946 ], [ 364904.824400000274181, 253978.089899998158216 ], [ 364889.466700002551079, 253982.397199999541044 ], [ 364868.464900001883507, 253986.65819999948144 ], [ 364860.376599997282028, 253989.5472999997437 ], [ 364840.184600003063679, 253993.392900001257658 ], [ 364832.898999996483326, 253996.710700001567602 ], [ 364825.59179999679327, 254002.561500001698732 ], [ 364822.364799998700619, 254002.746199999004602 ], [ 364816.73139999806881, 254001.433499999344349 ], [ 364808.706000000238419, 253996.934900000691414 ], [ 364803.871699996292591, 253996.473099999129772 ], [ 364793.364500001072884, 253999.342500001192093 ], [ 364783.647399999201298, 254004.118099998682737 ], [ 364772.254699997603893, 254016.268300000578165 ], [ 364749.589900001883507, 254026.426300000399351 ], [ 364732.55120000243187, 254038.741399999707937 ], [ 364726.790200002491474, 254052.415300000458956 ], [ 364725.926299996674061, 254059.16330000013113 ], [ 364712.755599997937679, 254090.719500001519918 ], [ 364711.893500000238419, 254097.256299998611212 ], [ 364712.597300000488758, 254109.294399999082088 ], [ 364714.16499999910593, 254114.584600001573563 ], [ 364718.120999999344349, 254123.482900001108646 ], [ 364719.717500001192093, 254125.395799998193979 ], [ 364724.539200000464916, 254127.335099998861551 ], [ 364744.660999998450279, 254131.721700001507998 ], [ 364751.093500003218651, 254133.885299999266863 ], [ 364759.914399996399879, 254139.657000001519918 ], [ 364767.023800000548363, 254157.024900000542402 ], [ 364772.608599998056889, 254164.036699999123812 ], [ 364790.270199999213219, 254173.258200000971556 ], [ 364826.514700002968311, 254178.198899999260902 ], [ 364859.514200001955032, 254185.435100000351667 ], [ 364884.508000001311302, 254185.85080000013113 ], [ 364916.814499996602535, 254179.782400000840425 ], [ 364921.672100000083447, 254177.500100001692772 ], [ 364936.203699998557568, 254175.508099999278784 ], [ 364953.125500001013279, 254176.913100000470877 ], [ 364958.755300000309944, 254178.647999998182058 ], [ 364969.986199997365475, 254185.494899999350309 ], [ 364974.818599998950958, 254186.167700000107288 ], [ 364990.950300000607967, 254185.666499998420477 ], [ 365000.60980000346899, 254187.645399998873472 ], [ 365026.39750000089407, 254189.545200001448393 ], [ 365040.842699997127056, 254197.684999998658895 ], [ 365056.151900000870228, 254199.076799999922514 ], [ 365063.423100002110004, 254197.447599999606609 ], [ 365069.898800000548363, 254194.545299999415874 ], [ 365073.152800001204014, 254191.194400001317263 ], [ 365075.614900000393391, 254186.148299999535084 ], [ 365088.600400000810623, 254176.333200000226498 ], [ 365095.117399998009205, 254168.576099999248981 ], [ 365101.618299998342991, 254162.718699999153614 ], [ 365108.068800002336502, 254162.771499998867512 ], [ 365110.455399997532368, 254166.590700000524521 ], [ 365111.213100001215935, 254172.296399999409914 ], [ 365110.354699999094009, 254178.411100000143051 ], [ 365108.682700000703335, 254185.363499999046326 ], [ 365101.323399998247623, 254197.33559999987483 ], [ 365095.569499999284744, 254210.165199998766184 ], [ 365093.85080000013113, 254222.605700001120567 ], [ 365093.795000001788139, 254229.149099998176098 ], [ 365099.320500001311302, 254243.126499999314547 ], [ 365103.202899999916553, 254260.679000001400709 ], [ 365101.554300002753735, 254264.88740000128746 ], [ 365096.714599996805191, 254265.058899998664856 ], [ 365094.520400002598763, 254238.654199998825788 ], [ 365091.32039999961853, 254235.672699999064207 ], [ 365080.852700002491474, 254233.898299999535084 ], [ 365075.186899997293949, 254236.385099999606609 ], [ 365069.503200002014637, 254240.982599999755621 ], [ 365066.24379999935627, 254244.966699998825788 ], [ 365064.595200002193451, 254249.17509999871254 ], [ 365063.725900001823902, 254256.55629999935627 ], [ 365062.057499997317791, 254263.086500000208616 ], [ 365061.224299997091293, 254266.246100001037121 ], [ 365061.99099999666214, 254270.89640000090003 ], [ 365064.383000001311302, 254274.082400001585484 ], [ 365077.224600002169609, 254281.153599999845028 ], [ 365081.24719999730587, 254282.241999998688698 ], [ 365086.119199998676777, 254278.271099999547005 ], [ 365087.719300001859665, 254279.761799998581409 ], [ 365087.651000000536442, 254287.782800000160933 ], [ 365085.203199997544289, 254291.140299998223782 ], [ 365084.368199996650219, 254294.510899998247623 ], [ 365085.151100002229214, 254297.261599998921156 ], [ 365093.165700003504753, 254303.026700001209974 ], [ 365105.228000000119209, 254306.92509999871254 ], [ 365108.453199997544289, 254306.951499998569489 ], [ 365111.707299999892712, 254303.600600000470877 ], [ 365115.742399998009205, 254303.211500000208616 ], [ 365121.373999997973442, 254304.735199999064207 ], [ 365127.822700001299381, 254304.999099999666214 ], [ 365136.724500000476837, 254301.272300001233816 ], [ 365143.216399997472763, 254296.470199998468161 ], [ 365149.683100000023842, 254294.6233000010252 ], [ 365162.591300003230572, 254293.88459999859333 ], [ 365165.809299997985363, 254294.755300000309944 ], [ 365173.008599996566772, 254301.569200001657009 ], [ 365181.849299997091293, 254305.019099999219179 ], [ 365189.025100000202656, 254314.576999999582767 ], [ 365195.439699999988079, 254318.851399999111891 ], [ 365201.069499999284744, 254320.586199998855591 ], [ 365206.684900000691414, 254324.009700000286102 ], [ 365209.902999997138977, 254324.880399998277426 ], [ 365214.697700001299381, 254329.98589999973774 ], [ 365215.487800002098083, 254331.892200000584126 ], [ 365222.76799999922514, 254329.207600001245737 ], [ 365226.821099996566772, 254326.707600001245737 ], [ 365234.848300002515316, 254330.995200000703335 ], [ 365240.434900000691414, 254337.795899998396635 ], [ 365244.459299996495247, 254338.673200000077486 ], [ 365249.304399996995926, 254337.868500001728535 ], [ 365259.750500001013279, 254342.175900001078844 ], [ 365263.746100001037121, 254346.430399999022484 ], [ 365266.956900000572205, 254348.145500000566244 ], [ 365270.182199999690056, 254348.171900000423193 ], [ 365275.034500002861023, 254346.522799998521805 ], [ 365286.322800002992153, 254346.615200001746416 ], [ 365291.140900000929832, 254348.976700000464916 ], [ 365299.958200000226498, 254355.1706000007689 ], [ 365303.192500002682209, 254354.141600001603365 ], [ 365304.826700001955032, 254351.621800001710653 ], [ 365306.512999996542931, 254342.980799999088049 ], [ 365303.338100001215935, 254337.044199999421835 ], [ 365307.407399997115135, 254332.644499998539686 ], [ 365312.259700000286102, 254330.99549999833107 ], [ 365312.356799997389317, 254319.597199998795986 ], [ 365314.79730000346899, 254317.084100000560284 ], [ 365319.658600002527237, 254314.379599999636412 ], [ 365321.307099997997284, 254310.171300001442432 ], [ 365315.772600002586842, 254297.249299999326468 ], [ 365316.645499996840954, 254289.445900000631809 ], [ 365318.286899998784065, 254286.081900000572205 ], [ 365323.133799999952316, 254285.066100001335144 ], [ 365326.3445999994874, 254286.781100001186132 ], [ 365329.569899998605251, 254286.807500001043081 ], [ 365320.972000002861023, 254254.861999999731779 ], [ 365310.568999998271465, 254245.488699998706579 ], [ 365310.606799997389317, 254241.056099999696016 ], [ 365313.063500002026558, 254236.643199998885393 ], [ 365311.501199997961521, 254230.719799999147654 ], [ 365302.689300000667572, 254223.892700001597404 ], [ 365268.152699999511242, 254207.778000000864267 ], [ 365253.729000002145767, 254197.10530000180006 ], [ 365234.42790000140667, 254191.036699999123812 ], [ 365228.835799999535084, 254184.869199998676777 ], [ 365224.078900001943111, 254175.3310999982059 ], [ 365220.08330000191927, 254171.076499998569489 ], [ 365205.596600003540516, 254167.791499998420477 ], [ 365195.269199997186661, 254149.552999999374151 ], [ 365192.870099999010563, 254147.211300000548363 ], [ 365175.352399997413158, 254121.103399999439716 ], [ 365164.283399999141693, 254095.259399998933077 ], [ 365149.999899998307228, 254068.122499998658895 ], [ 365146.045699998736382, 254059.013199999928474 ], [ 365140.464400000870228, 254051.579199999570847 ], [ 365133.328100003302097, 254037.377500001341105 ], [ 365116.613099999725819, 254011.698399998247623 ], [ 365111.813000001013279, 254007.226100001484156 ], [ 365098.146999999880791, 254002.259100001305342 ], [ 365069.3733000010252, 253972.259500000625849 ], [ 365049.3108000010252, 253960.907299999147654 ], [ 365042.9070999994874, 253955.366500001400709 ], [ 365038.150100000202656, 253945.828299999237061 ], [ 365027.982699997723103, 253908.803700000047684 ], [ 365026.445600003004074, 253899.925200000405312 ], [ 365020.911100000143051, 253887.003199998289347 ], [ 365019.347099997103214, 253881.290899999439716 ], [ 365023.454099997878075, 253872.458599999547005 ], [ 365023.497299998998642, 253867.392700001597404 ], [ 365017.070200003683567, 253864.595899999141693 ], [ 365013.877300001680851, 253860.769999999552965 ], [ 365013.099799998104572, 253857.386199999600649 ], [ 365013.162699997425079, 253849.998399998992682 ], [ 365010.045299999415874, 253837.307300001382828 ], [ 365005.318999998271465, 253824.180799998342991 ], [ 365002.925200000405312, 253821.205899998545647 ], [ 365002.205200001597404, 253811.067499998956919 ], [ 365007.92849999666214, 253801.826200000941753 ], [ 365007.185099996626377, 253794.43189999833703 ], [ 365005.590499997138977, 253792.307900000363588 ], [ 364999.978699997067451, 253788.46229999884963 ], [ 364991.129000000655651, 253786.067800000309944 ], [ 364988.729800000786781, 253783.726199999451637 ], [ 364988.112300001084805, 253761.55629999935627 ], [ 364989.793300002813339, 253753.548500001430511 ], [ 364989.976700000464916, 253732.018399998545647 ], [ 364992.543099999427795, 253714.729800000786781 ], [ 364995.820500001311302, 253708.634899999946356 ], [ 365001.50959999859333, 253703.404100000858307 ], [ 365003.145599998533726, 253700.673300001770258 ], [ 365003.986100003123283, 253696.669399999082088 ], [ 365010.515699997544289, 253687.43470000103116 ], [ 365018.717299997806549, 253671.247600000351667 ], [ 365026.830799996852875, 253665.403400000184774 ], [ 365034.101999998092651, 253663.77419999986887 ], [ 365042.967799998819828, 253664.268899999558926 ], [ 365063.953500002622604, 253661.907600000500679 ], [ 365087.345600001513958, 253661.043600000441074 ], [ 365099.452899999916553, 253659.66499999910593 ], [ 365102.697899997234344, 253657.369500000029802 ], [ 365105.138400003314018, 253654.8564000017941 ], [ 365105.181599996984005, 253649.790500000119209 ], [ 365104.391400001943111, 253647.884199999272823 ], [ 365100.383299998939037, 253645.107099998742342 ], [ 365100.406599998474121, 253642.363099999725819 ], [ 365106.06700000166893, 253640.50959999859333 ], [ 365109.310199998319149, 253638.425200000405312 ], [ 365110.129100002348423, 253636.954300001263618 ], [ 365108.577600002288818, 253629.764400001615286 ], [ 365103.784699998795986, 253624.447799999266863 ], [ 365100.570299997925758, 253623.155000001192093 ], [ 365095.736000001430511, 253622.693199999630451 ], [ 365077.190800003707409, 253622.541400000452995 ], [ 365067.523999996483326, 253621.406800001859665 ], [ 365065.110500000417233, 253620.753800000995398 ], [ 365064.318599998950958, 253619.058600001037121 ], [ 365072.408699996769428, 253615.958399999886751 ], [ 365088.569099999964237, 253612.079900000244379 ], [ 365095.050200000405312, 253608.544300001114607 ], [ 365101.55460000038147, 253602.264699999243021 ], [ 365107.22580000013113, 253599.144799999892712 ], [ 365117.790500000119209, 253589.520899999886751 ], [ 365121.055299997329712, 253584.903599999845028 ], [ 365121.901199996471405, 253580.266399998217821 ], [ 365122.01630000025034, 253566.757399998605251 ], [ 365119.624300003051758, 253563.571400001645088 ], [ 365109.147699996829033, 253562.852400001138449 ], [ 365104.376299999654293, 253555.002900000661612 ], [ 365105.274400003254414, 253544.244500000029802 ], [ 365106.093299999833107, 253542.773499999195337 ], [ 365111.75900000333786, 253540.286800000816584 ], [ 365113.398599997162819, 253537.133799999952316 ], [ 365112.617499999701977, 253534.172100000083447 ], [ 365109.399400003254414, 253533.301399998366833 ], [ 365100.530000001192093, 253533.228799998760223 ], [ 365098.100299999117851, 253534.475400000810623 ], [ 365097.270599998533726, 253537.212900001555681 ], [ 365094.831799998879433, 253539.514899998903275 ], [ 365089.178700000047684, 253540.524099998176098 ], [ 365083.503899998962879, 253544.066300000995398 ], [ 365075.410199999809265, 253547.588599998503923 ], [ 365071.367899999022484, 253548.82209999859333 ], [ 365066.531800001859665, 253548.571400001645088 ], [ 365064.938900001347065, 253546.236400000751019 ], [ 365065.800999999046326, 253539.699499998241663 ], [ 365062.588299997150898, 253538.195599999278784 ], [ 365057.730700001120567, 253540.477800000458956 ], [ 365055.31530000269413, 253540.035900000482798 ], [ 365052.964699998497963, 253531.995099999010563 ], [ 365051.488799996674061, 253515.939899999648333 ], [ 365049.917499996721745, 253511.071899998933077 ], [ 365044.316500000655651, 253505.959800001233816 ], [ 365038.693899996578693, 253503.380699999630451 ], [ 365031.446000002324581, 253502.265900000929832 ], [ 365031.489200003445148, 253497.199999999254942 ], [ 365034.82769999653101, 253483.928399998694658 ], [ 365033.236699998378754, 253481.38230000063777 ], [ 365038.898900002241135, 253479.317699998617172 ], [ 365050.248400002717972, 253472.233399998396635 ], [ 365055.971699997782707, 253462.99210000038147 ], [ 365057.625699996948242, 253458.150499999523163 ], [ 365061.714800000190735, 253451.429000001400709 ], [ 365064.97240000218153, 253447.655900001525879 ], [ 365069.029100000858307, 253444.733800001442432 ], [ 365072.295699998736382, 253439.9054000005126 ], [ 365075.591099999845028, 253431.699700001627207 ], [ 365082.912699997425079, 253424.160300001502037 ], [ 365085.367600001394749, 253419.958500001579523 ], [ 365089.514200001955032, 253406.482500001788139 ], [ 365092.789800003170967, 253400.598700001835823 ], [ 365094.472599998116493, 253392.379799999296665 ], [ 365093.702200002968311, 253388.151599999517202 ], [ 365090.538099996745586, 253380.948499999940395 ], [ 365090.575900003314018, 253376.515900000929832 ], [ 365094.668600000441074, 253369.37220000103116 ], [ 365109.362000003457069, 253348.383099999278784 ], [ 365117.583400003612041, 253329.874099999666214 ], [ 365121.735399998724461, 253315.764899998903275 ], [ 365125.925200000405312, 253297.222899999469519 ], [ 365126.781900003552437, 253291.319299999624491 ], [ 365129.23139999806881, 253287.750799998641014 ], [ 365154.410499997437, 253266.425299998372793 ], [ 365173.05460000038147, 253254.967799998819828 ], [ 365179.526699997484684, 253252.48759999871254 ], [ 365185.204999998211861, 253248.523299999535084 ], [ 365194.101400002837181, 253245.429699998348951 ], [ 365206.318400003015995, 253231.175299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504017600", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-3", "ACRE": "0.14", "LONGITUDE": -64.88672711, "LATITUDE": 18.31792557, "OBJECTID_1": 37731, "PARCEL_NO_": "107504017600", "Tax_Legal_": "5A-2,3&29 BOVONI FRENCHMAN BAY QTR", "Name": "CHEVRON PUERTO RICO, LLC", "Address": "PO BOX 11961", "City": "San Juan", "State": "Puerto Rico", "Zip": 922, "Country": "United States", "Land_Value": 150300, "Improved_V": 171700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.580981251899999, "SHAPE_Area": 405.94579505199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363509.256899997591972, 254326.582299999892712 ], [ 363485.999700002372265, 254311.61540000140667 ], [ 363484.351099997758865, 254315.823800001293421 ], [ 363478.640399999916553, 254323.587499998509884 ], [ 363503.495800003409386, 254340.256299998611212 ], [ 363505.966899998486042, 254334.154800001531839 ], [ 363509.256899997591972, 254326.582299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88770122, "LATITUDE": 18.31793104, "OBJECTID_1": 37754, "PARCEL_NO_": "107504022200", "Tax_Legal_": "BOVONI 5-98 FRENCHMAN BAY", "Name": "BLYDEN, BERYL OTTLEY", "Address": "7221 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 89600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.645825663699995, "SHAPE_Area": 478.45343392900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363406.887599997222424, 254321.94480000063777 ], [ 363383.590800002217293, 254311.621599998325109 ], [ 363382.752199999988079, 254315.414500001817942 ], [ 363381.1233000010252, 254317.300999999046326 ], [ 363376.18299999833107, 254329.292899999767542 ], [ 363399.485100001096725, 254338.982799999415874 ], [ 363401.126500003039837, 254335.618700001388788 ], [ 363406.887599997222424, 254321.94480000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8960439, "LATITUDE": 18.31789278, "OBJECTID_1": 37548, "PARCEL_NO_": "107503013200", "Tax_Legal_": "EST BOLONGO 18-1 FRENCHMAN BAY QTR", "Name": "EDWARDS, PHILBERT & MEDORA", "Address": "1408 4th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.20339086499999, "SHAPE_Area": 2504.5137744 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362469.004100002348423, 254330.945099998265505 ], [ 362518.2162000015378, 254328.181400001049042 ], [ 362556.938900001347065, 254326.176300000399351 ], [ 362564.199299998581409, 254325.8136 ], [ 362564.285700000822544, 254315.681800000369549 ], [ 362514.425599999725819, 254299.863899998366833 ], [ 362511.308200001716614, 254287.172800000756979 ], [ 362472.484700001776218, 254300.9983000010252 ], [ 362469.004100002348423, 254330.945099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404026300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90220034, "LATITUDE": 18.31772133, "OBJECTID_1": 37363, "PARCEL_NO_": "107404026300", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#23)21-10 FRENCHMANS BAY", "Name": "PENNYFEATHER, ERNIE", "Address": "PO Box 10064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.665732088, "SHAPE_Area": 2529.8772923699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361871.220200002193451, 254267.368500001728535 ], [ 361849.548600003123283, 254255.581000000238419 ], [ 361823.559600003063679, 254277.322000000625849 ], [ 361850.682899996638298, 254311.741099998354912 ], [ 361866.719300001859665, 254322.427099999040365 ], [ 361869.913999997079372, 254326.041799999773502 ], [ 361884.557099997997284, 254310.962900001555681 ], [ 361887.820100001990795, 254306.556699998676777 ], [ 361888.671300001442432, 254301.286299999803305 ], [ 361888.694700002670288, 254298.542300000786781 ], [ 361887.940499998629093, 254292.41440000012517 ], [ 361878.365500003099442, 254280.514800000935793 ], [ 361873.601300001144409, 254271.820900000631809 ], [ 361872.001299999654293, 254270.330200001597404 ], [ 361871.220200002193451, 254267.368500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90829999, "LATITUDE": 18.31778228, "OBJECTID_1": 37194, "PARCEL_NO_": "107403024100", "Tax_Legal_": "FRENCHMAN'S BAY 15-58 FRENCHMAN'S BAY QTR.", "Name": "WHEATLEY, CHERIE A. & RITA", "Address": "PO Box 12321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60000, "Improved_V": 175900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.709965625, "SHAPE_Area": 2414.22123483 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361203.668999999761581, 254253.039000000804663 ], [ 361183.810400001704693, 254312.404800001531839 ], [ 361211.972000002861023, 254319.601399999111891 ], [ 361253.322300001978874, 254293.130899999290705 ], [ 361230.896600000560284, 254275.215500000864267 ], [ 361214.896200001239777, 254260.30799999833107 ], [ 361203.668999999761581, 254253.039000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90304329, "LATITUDE": 18.31776923, "OBJECTID_1": 37349, "PARCEL_NO_": "107404024600", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#36) 21-41 FRENCHMANS BAY", "Name": "FOY, LISTON & JEWEL", "Address": "PO Box 306953", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.85685017899999, "SHAPE_Area": 2221.0331199799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361806.353699997067451, 254309.267400000244379 ], [ 361799.982400000095367, 254299.927099999040365 ], [ 361793.58219999819994, 254293.964099999517202 ], [ 361784.80629999935627, 254282.915399998426437 ], [ 361780.038500003516674, 254274.643800001591444 ], [ 361780.054700002074242, 254272.744100000709295 ], [ 361777.666299998760223, 254269.135899998247623 ], [ 361776.096900001168251, 254264.056800000369549 ], [ 361772.909400001168251, 254259.597800001502037 ], [ 361737.217699997127056, 254284.425799999386072 ], [ 361758.709399998188019, 254317.321199998259544 ], [ 361759.468900002539158, 254322.815799999982119 ], [ 361806.353699997067451, 254309.267400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504050500", "MAP": "F9-1409-T64", "PARCEL_NAM": "4A-A-4", "ACRE": ".16", "LONGITUDE": -64.88389067, "LATITUDE": 18.31784038, "OBJECTID_1": 37845, "PARCEL_NO_": "107504050500", "Tax_Legal_": "BOVONI 4AA-4 FRENCHMAN BAY QTR", "Name": "SMITH, WILFRED E", "Address": "PO Box 10224", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19100, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.595971885, "SHAPE_Area": 661.42790966899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363790.056800000369549, 254305.026999998837709 ], [ 363780.140100002288818, 254333.232400000095367 ], [ 363797.024099998176098, 254339.070099998265505 ], [ 363807.738200001418591, 254311.926699999719858 ], [ 363794.991800002753735, 254293.668299999088049 ], [ 363790.056800000369549, 254305.026999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89712905, "LATITUDE": 18.31782502, "OBJECTID_1": 37528, "PARCEL_NO_": "107503011200", "Tax_Legal_": "BOLONGO 23 FRENCHMAN BAY QTR", "Name": "CHARLERY, BRIAN", "Address": "PO BOX 9820", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.217905653, "SHAPE_Area": 1409.40523805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362415.090899996459484, 254317.627099998295307 ], [ 362416.204700000584126, 254281.539200000464916 ], [ 362391.979299999773502, 254285.562800001353025 ], [ 362360.985200002789497, 254326.894600000232458 ], [ 362415.090899996459484, 254317.627099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504050800", "MAP": "F9-1409-T64", "PARCEL_NAM": "4A-A-2", "ACRE": ".14", "LONGITUDE": -64.88328107, "LATITUDE": 18.3178577, "OBJECTID_1": 37848, "PARCEL_NO_": "107504050800", "Tax_Legal_": "4AA 2 BOVONI FRENCHMAN BAY QTR", "Name": "GEORGE, IRMA & ALICIA", "Address": "PO Box 7893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.99994012499999, "SHAPE_Area": 830.78409605800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363839.042300000786781, 254328.859299998730421 ], [ 363869.604800000786781, 254338.186500001698732 ], [ 363878.682899996638298, 254313.773899998515844 ], [ 363848.120300002396107, 254304.446699999272823 ], [ 363839.042300000786781, 254328.859299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031800", "MAP": "A9-138-T70", "PARCEL_NAM": "79", "ACRE": "0.50", "LONGITUDE": -64.90056141, "LATITUDE": 18.31725368, "OBJECTID_1": 37403, "PARCEL_NO_": "107404031800", "Tax_Legal_": "BOLONGO 79 FRENCHMAN BAY QTR", "Name": "FLEMING, EUNICE & LEONARD", "Address": "PO Box 10906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69500, "Improved_V": 250600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.70995683899997, "SHAPE_Area": 2838.1253482299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362023.459700003266335, 254191.987500000745058 ], [ 362015.994300000369549, 254216.41330000013113 ], [ 362013.471000000834465, 254228.636100001633167 ], [ 362015.589699998497963, 254263.905999999493361 ], [ 362018.681800000369549, 254279.552299998700619 ], [ 362016.894799999892712, 254300.013700000941753 ], [ 362010.314800001680851, 254315.158599998801947 ], [ 362008.657200001180172, 254320.422400001436472 ], [ 362018.430100001394749, 254309.103300001472235 ], [ 362020.084100000560284, 254304.261700000613928 ], [ 362021.712899997830391, 254302.375199999660254 ], [ 362021.730899997055531, 254300.264400001615286 ], [ 362029.185500003397465, 254277.105099998414516 ], [ 362033.294399999082088, 254268.061700001358986 ], [ 362034.919600002467632, 254266.59739999845624 ], [ 362050.437299996614456, 254243.504099998623133 ], [ 362061.005699999630451, 254233.458099998533726 ], [ 362069.151500001549721, 254223.814399998635054 ], [ 362023.459700003266335, 254191.987500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8880091, "LATITUDE": 18.3178733, "OBJECTID_1": 37773, "PARCEL_NO_": "107504024100", "Tax_Legal_": "5-116 BOVONI FRENCHMAN BAY", "Name": "PETERSEN OTTLEY, EUNICE (LIFE ESTATE)", "Address": "7204 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 87000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.5548585433, "SHAPE_Area": 501.09002302800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363374.699799999594688, 254314.081999998539686 ], [ 363350.582400001585484, 254305.440900001674891 ], [ 363343.187100000679493, 254321.634500000625849 ], [ 363366.4712999984622, 254333.435300000011921 ], [ 363374.699799999594688, 254314.081999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90869981, "LATITUDE": 18.31762835, "OBJECTID_1": 37195, "PARCEL_NO_": "107403024200", "Tax_Legal_": "15-59&15-58-1 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "HOLLOWAY, STEVEN D. & MINERVA A. V", "Address": "PO Box 9146", "City": "San Juan", "State": "Puerto Rico", "Zip": 908, "Country": "United States", "Land_Value": 101700, "Improved_V": 345600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.66121751399999, "SHAPE_Area": 3106.3682245599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361157.892599999904633, 254231.132800001651049 ], [ 361143.575699999928474, 254302.576299998909235 ], [ 361183.810400001704693, 254312.404800001531839 ], [ 361203.668999999761581, 254253.039000000804663 ], [ 361186.009199999272823, 254243.606300000101328 ], [ 361157.892599999904633, 254231.132800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504050400", "MAP": "F9-1409-T64", "PARCEL_NAM": "4A-A-5", "ACRE": ".13", "LONGITUDE": -64.88406685, "LATITUDE": 18.31781479, "OBJECTID_1": 37844, "PARCEL_NO_": "107504050400", "Tax_Legal_": "4AA-5 BOVONI FRENCHMAN BAY QTR", "Name": "AUDREY VERONICA EVANSON TRUST", "Address": "893 Deerwood Dr", "City": "Defiance", "State": "Ohio", "Zip": 43512, "Country": "United States", "Land_Value": 16700, "Improved_V": 159900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.387817722400001, "SHAPE_Area": 589.76730203099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363790.056800000369549, 254305.026999998837709 ], [ 363771.567400000989437, 254298.331799998879433 ], [ 363761.647100001573563, 254326.959300000220537 ], [ 363780.140100002288818, 254333.232400000095367 ], [ 363790.056800000369549, 254305.026999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90745952, "LATITUDE": 18.31764026, "OBJECTID_1": 37325, "PARCEL_NO_": "107404020700", "Tax_Legal_": "FRENCHMAN'S BAY 15-29 FRENCHMAN BAY QTR", "Name": "MARY F GREEN (LIFE ESTATE)", "Address": "PO Box 7126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67400, "Improved_V": 283600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.24415145899999, "SHAPE_Area": 2585.45131717 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361336.428199999034405, 254287.267200000584126 ], [ 361328.557499997317791, 254264.615800000727177 ], [ 361301.373000003397465, 254237.3733000010252 ], [ 361281.832699999213219, 254259.378199998289347 ], [ 361276.645999997854233, 254300.287900000810623 ], [ 361287.057899996638298, 254308.605799999088049 ], [ 361302.433600001037121, 254302.187699999660254 ], [ 361310.527300000190735, 254298.665399998426437 ], [ 361336.428199999034405, 254287.267200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504017600", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-2", "ACRE": "0.14", "LONGITUDE": -64.88663945, "LATITUDE": 18.317748, "OBJECTID_1": 37731, "PARCEL_NO_": "107504017600", "Tax_Legal_": "5A-2,3&29 BOVONI FRENCHMAN BAY QTR", "Name": "CHEVRON PUERTO RICO, LLC", "Address": "PO BOX 11961", "City": "San Juan", "State": "Puerto Rico", "Zip": 922, "Country": "United States", "Land_Value": 150300, "Improved_V": 171700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.45793435900001, "SHAPE_Area": 790.52842266100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363522.400700002908707, 254298.192299999296665 ], [ 363495.880500003695488, 254287.631599999964237 ], [ 363490.925700001418591, 254301.312199998646975 ], [ 363485.999700002372265, 254311.61540000140667 ], [ 363509.256899997591972, 254326.582299999892712 ], [ 363522.400700002908707, 254298.192299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504050300", "MAP": "F9-1409-T64", "PARCEL_NAM": "4A-A-6", "ACRE": ".13", "LONGITUDE": -64.8842289, "LATITUDE": 18.31775549, "OBJECTID_1": 37843, "PARCEL_NO_": "107504050300", "Tax_Legal_": "BOVONI ESTATE 4AA-6 No.1&2 FRENCHMAN'S BAY QTR.", "Name": "GUMBS, DULCIE V. & RENEE A. `", "Address": "PO Box 305115", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15300, "Improved_V": 159400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.913656334500004, "SHAPE_Area": 515.04824938100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363755.489699997007847, 254292.500599998980761 ], [ 363750.570900000631809, 254301.959600001573563 ], [ 363748.900700002908707, 254308.700899999588728 ], [ 363749.586599998176098, 254322.849800001829863 ], [ 363761.647100001573563, 254326.959300000220537 ], [ 363771.567400000989437, 254298.331799998879433 ], [ 363755.489699997007847, 254292.500599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503013500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8957643, "LATITUDE": 18.3176179, "OBJECTID_1": 37550, "PARCEL_NO_": "107503013500", "Tax_Legal_": "BOLONGO 18 FRENCHMAN BAY QTR", "Name": "SICKLER, PAUL G. (LIFE ESTATE)", "Address": "PO Box 6217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46300, "Improved_V": 222600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.54646634599999, "SHAPE_Area": 2480.3457199499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362551.078199997544289, 254256.889699999243021 ], [ 362527.732900001108646, 254252.265700001269579 ], [ 362514.722300000488758, 254265.035900000482798 ], [ 362511.308200001716614, 254287.172800000756979 ], [ 362514.425599999725819, 254299.863899998366833 ], [ 362564.285700000822544, 254315.681800000369549 ], [ 362566.295699998736382, 254269.046599999070168 ], [ 362559.031700000166893, 254269.831500001251698 ], [ 362550.155000001192093, 254270.603199999779463 ], [ 362550.250399999320507, 254259.416000001132488 ], [ 362551.078199997544289, 254256.889699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404029900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90316996, "LATITUDE": 18.31712694, "OBJECTID_1": 37385, "PARCEL_NO_": "107404029900", "Tax_Legal_": "FRENCHMAN'S BAY ROADS 21A THRU Y FRENCHMANS BAY QTRS", "Name": "GREN CAY PROPERTY OWNERS ASSOC", "Address": "PO Box 305673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 384600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 416.16800411600002, "SHAPE_Area": 1543.78139958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361728.388899996876717, 254184.92850000038743 ], [ 361731.53320000320673, 254194.453400000929832 ], [ 361733.116999998688698, 254197.843899998813868 ], [ 361743.449799999594688, 254215.449200000613928 ], [ 361746.63910000026226, 254219.697200000286102 ], [ 361772.909400001168251, 254259.597800001502037 ], [ 361776.096900001168251, 254264.056800000369549 ], [ 361777.666299998760223, 254269.135899998247623 ], [ 361780.054700002074242, 254272.744100000709295 ], [ 361780.038500003516674, 254274.643800001591444 ], [ 361784.80629999935627, 254282.915399998426437 ], [ 361793.58219999819994, 254293.964099999517202 ], [ 361799.982400000095367, 254299.927099999040365 ], [ 361806.353699997067451, 254309.267400000244379 ], [ 361812.042900003492832, 254304.03660000115633 ], [ 361804.066100001335144, 254293.838799998164177 ], [ 361792.88740000128746, 254280.870600000023842 ], [ 361791.292700000107288, 254278.746599998325109 ], [ 361789.705300003290176, 254275.778299998492002 ], [ 361785.749200001358986, 254266.879999998956919 ], [ 361784.167199999094009, 254263.278499998152256 ], [ 361780.990500003099442, 254257.552999999374151 ], [ 361763.478200003504753, 254230.811900001019239 ], [ 361749.943499997258186, 254210.436099998652935 ], [ 361748.341700002551079, 254209.156399998813868 ], [ 361739.603500001132488, 254193.67509999871254 ], [ 361738.035800002515316, 254188.384899999946356 ], [ 361735.659999996423721, 254183.299199998378754 ], [ 361730.964199997484684, 254166.584399998188019 ], [ 361724.013099998235703, 254130.641600001603365 ], [ 361715.9391999989748, 254131.842099998146296 ], [ 361717.512299999594688, 254136.499000001698732 ], [ 361723.687600001692772, 254168.846900001168251 ], [ 361724.467000000178814, 254172.01969999819994 ], [ 361728.388899996876717, 254184.92850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021600", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-97", "ACRE": "0.10", "LONGITUDE": -64.88763465, "LATITUDE": 18.31777919, "OBJECTID_1": 37749, "PARCEL_NO_": "107504021600", "Tax_Legal_": "REM 5A,5A-1,5A-95THRU 97 BOVONI", "Name": "V. I. BAPTIST MISSION", "Address": "PO Box 2087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 167700, "Improved_V": 1015300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.350658611599997, "SHAPE_Area": 441.51773905099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363413.478299997746944, 254305.533500000834465 ], [ 363390.984300002455711, 254295.638999998569489 ], [ 363383.590800002217293, 254311.621599998325109 ], [ 363406.887599997222424, 254321.94480000063777 ], [ 363413.478299997746944, 254305.533500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90908677, "LATITUDE": 18.31750478, "OBJECTID_1": 37196, "PARCEL_NO_": "107403024300", "Tax_Legal_": "FRENCHMAN'S BAY 15-60 FRENCHMAN'S BAY QTR.", "Name": "MARION YVONNE & LESLIE ATHILL HEDRINGTON REVOCABL", "Address": "PO Box 11026", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 101700, "Improved_V": 296200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.830894245, "SHAPE_Area": 3082.8836811900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361106.562600001692772, 254293.196299999952316 ], [ 361143.575699999928474, 254302.576299998909235 ], [ 361157.892599999904633, 254231.132800001651049 ], [ 361119.329800002276897, 254214.351799998432398 ], [ 361117.720799997448921, 254213.916499998420477 ], [ 361106.562600001692772, 254293.196299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90779798, "LATITUDE": 18.31741859, "OBJECTID_1": 37219, "PARCEL_NO_": "107403030100", "Tax_Legal_": "FRENCHMAN'S BAY 15-28 FRENCHMAN'S BAY QTR.", "Name": "HEIGEL FARRELL FAMILY TRUST", "Address": "PO Box 10000", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81100, "Improved_V": 226200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.19208021399999, "SHAPE_Area": 2936.5852019499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361256.460500001907349, 254208.719200000166893 ], [ 361239.805600002408028, 254270.644400000572205 ], [ 361276.645999997854233, 254300.287900000810623 ], [ 361281.832699999213219, 254259.378199998289347 ], [ 361301.373000003397465, 254237.3733000010252 ], [ 361285.379900000989437, 254221.621500000357628 ], [ 361256.460500001907349, 254208.719200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90417105, "LATITUDE": 18.31744604, "OBJECTID_1": 37338, "PARCEL_NO_": "107404023500", "Tax_Legal_": "FRENCHMAN'S BAY (LOT #38) 21-67 FRENCHMAN'S BAY", "Name": "ARLENE A. P. STEPHENS", "Address": "PO Box 6873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 86400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.88689126599999, "SHAPE_Area": 2993.18337088 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361670.781000003218651, 254226.675700001418591 ], [ 361611.000600002706051, 254239.485300000756979 ], [ 361646.76860000193119, 254300.361900001764297 ], [ 361661.431500002741814, 254282.961100000888109 ], [ 361689.081699997186661, 254255.534200001507998 ], [ 361677.908399999141693, 254241.932700000703335 ], [ 361670.781000003218651, 254226.675700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88793658, "LATITUDE": 18.31770041, "OBJECTID_1": 37774, "PARCEL_NO_": "107504024200", "Tax_Legal_": "5-117BOVONI FRENCHMAN BAY", "Name": "SMITH, WINIFRED", "Address": "PO Box 304576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14300, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.073180351900007, "SHAPE_Area": 554.11030842299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363374.699799999594688, 254314.081999998539686 ], [ 363378.000600002706051, 254305.243099998682737 ], [ 363379.629399999976158, 254303.356600001454353 ], [ 363380.468099996447563, 254299.563799999654293 ], [ 363382.096900001168251, 254297.677200000733137 ], [ 363382.13289999961853, 254293.455699998885393 ], [ 363362.034400001168251, 254286.325100000947714 ], [ 363359.611800000071526, 254286.727400001138449 ], [ 363357.171300001442432, 254289.240600001066923 ], [ 363354.687700003385544, 254296.819600000977516 ], [ 363353.058899998664856, 254298.7060999982059 ], [ 363350.582400001585484, 254305.440900001674891 ], [ 363374.699799999594688, 254314.081999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404027700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90171804000001, "LATITUDE": 18.31758555, "OBJECTID_1": 37377, "PARCEL_NO_": "107404027700", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#2) 21-7 FRENCHMANS BAY", "Name": "BUNCOME, LESTER H. & SONIA N", "Address": "PO Box 10150", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.300415888, "SHAPE_Area": 2346.4797169 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361896.754199996590614, 254299.0304000005126 ], [ 361928.209399998188019, 254298.232400000095367 ], [ 361937.877999998629093, 254299.155900001525879 ], [ 361942.884900003671646, 254279.354100000113249 ], [ 361944.558600001037121, 254272.190600000321865 ], [ 361891.57039999961853, 254244.947999998927116 ], [ 361885.114500001072884, 254245.528499998152256 ], [ 361878.556100003421307, 254258.140399999916553 ], [ 361879.301299996674061, 254265.323699999600649 ], [ 361880.076999999582767, 254268.918600000441074 ], [ 361884.86089999973774, 254275.290600001811981 ], [ 361885.64750000089407, 254277.619100000709295 ], [ 361894.42339999973774, 254288.667700000107288 ], [ 361895.197400003671646, 254292.473799999803305 ], [ 361895.98030000180006, 254295.224399998784065 ], [ 361896.754199996590614, 254299.0304000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89614971, "LATITUDE": 18.31743404, "OBJECTID_1": 37547, "PARCEL_NO_": "107503013100", "Tax_Legal_": "BOLONGO 17 FRENCHMAN BAY", "Name": "EDWARDS, PHILBERT & MEDORA", "Address": "1408 4th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.02026984400001, "SHAPE_Area": 2245.8022813699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362527.732900001108646, 254252.265700001269579 ], [ 362502.223999999463558, 254217.648600000888109 ], [ 362486.611000001430511, 254251.929099999368191 ], [ 362475.083499997854233, 254279.910199999809265 ], [ 362472.484700001776218, 254300.9983000010252 ], [ 362511.308200001716614, 254287.172800000756979 ], [ 362514.722300000488758, 254265.035900000482798 ], [ 362527.732900001108646, 254252.265700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89820271000001, "LATITUDE": 18.31745135, "OBJECTID_1": 37526, "PARCEL_NO_": "107503011000", "Tax_Legal_": "BOLONGO ESTATE 25C FRENCHMAN BAY QTR", "Name": "SON, SYLVIA", "Address": "PO Box 9127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38600, "Improved_V": 233700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.98269465199999, "SHAPE_Area": 2512.9417242999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362315.701499998569489, 254247.152800001204014 ], [ 362275.531599998474121, 254229.725400000810623 ], [ 362247.73030000180006, 254274.883000001311302 ], [ 362287.846400000154972, 254298.642700001597404 ], [ 362315.701499998569489, 254247.152800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89769195, "LATITUDE": 18.31758614, "OBJECTID_1": 37527, "PARCEL_NO_": "107503011100", "Tax_Legal_": "25BA,25BB&25CA BOLONGO FRENCHMAN BAY QTR", "Name": "MC GOWEN, WILLIE", "Address": "1751 Indian Way", "City": "Oakland", "State": "California", "Zip": 94611, "Country": "United States", "Land_Value": 183000, "Improved_V": 238000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.924614792, "SHAPE_Area": 3025.2613019300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362336.59009999781847, 254256.189699999988079 ], [ 362315.701499998569489, 254247.152800001204014 ], [ 362287.846400000154972, 254298.642700001597404 ], [ 362377.388400003314018, 254294.520399998873472 ], [ 362384.726099997758865, 254285.081300001591444 ], [ 362386.347699999809265, 254284.039099998772144 ], [ 362387.171999998390675, 254281.934900000691414 ], [ 362390.422499999403954, 254279.00620000064373 ], [ 362336.59009999781847, 254256.189699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91135911000001, "LATITUDE": 18.31742238, "OBJECTID_1": 37247, "PARCEL_NO_": "107403033300", "Tax_Legal_": "15-65 FRENCHMANS BAY FRENCHMAN'S BAY QTR.", "Name": "G & J SETZ FAMILY TRUST", "Address": "5934 Stillson Pl", "City": "Youngstown", "State": "Ohio", "Zip": 44512, "Country": "United States", "Land_Value": 115400, "Improved_V": 197400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.51442248299998, "SHAPE_Area": 4164.5480834500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360940.306900002062321, 254215.419799998402596 ], [ 360927.389700002968311, 254217.213899999856949 ], [ 360908.03999999910593, 254216.844399999827147 ], [ 360899.193899996578693, 254214.027800001204014 ], [ 360891.179399996995926, 254208.262699998915195 ], [ 360873.183399997651577, 254238.30180000141263 ], [ 360862.748000003397465, 254232.727899998426437 ], [ 360839.995099999010563, 254253.228900000452995 ], [ 360855.957699999213219, 254272.568999998271465 ], [ 360904.217799998819828, 254286.896200001239777 ], [ 360940.306900002062321, 254215.419799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404026400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90253581, "LATITUDE": 18.31743433, "OBJECTID_1": 37364, "PARCEL_NO_": "107404026400", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#22)21-11 FRENCHMAN'S BAY QTR.", "Name": "SAMUEL, GILBERT L. & NORMA D. P", "Address": "9009th Avenue Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70800, "Improved_V": 434500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.43071489299999, "SHAPE_Area": 2746.2947046899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361862.553900003433228, 254243.443999998271465 ], [ 361854.52139999717474, 254239.789700001478195 ], [ 361845.687899999320507, 254235.49549999833107 ], [ 361839.277000002563, 254230.7989999987185 ], [ 361832.083099998533726, 254223.351799998432398 ], [ 361784.167199999094009, 254263.278499998152256 ], [ 361785.749200001358986, 254266.879999998956919 ], [ 361789.705300003290176, 254275.778299998492002 ], [ 361791.292700000107288, 254278.746599998325109 ], [ 361792.88740000128746, 254280.870600000023842 ], [ 361804.066100001335144, 254293.838799998164177 ], [ 361823.559600003063679, 254277.322000000625849 ], [ 361849.548600003123283, 254255.581000000238419 ], [ 361871.220200002193451, 254267.368500001728535 ], [ 361868.127999998629093, 254251.722300000488758 ], [ 361867.341499999165535, 254249.393800001591444 ], [ 361865.755800001323223, 254246.214400000870228 ], [ 361862.553900003433228, 254243.443999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021600", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-96", "ACRE": "0.10", "LONGITUDE": -64.88756743, "LATITUDE": 18.31762923, "OBJECTID_1": 37749, "PARCEL_NO_": "107504021600", "Tax_Legal_": "REM 5A,5A-1,5A-95THRU 97 BOVONI", "Name": "V. I. BAPTIST MISSION", "Address": "PO Box 2087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 167700, "Improved_V": 1015300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.749672725500005, "SHAPE_Area": 450.19851537800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363420.880800001323223, 254288.49549999833107 ], [ 363398.383199997246265, 254279.023200001567602 ], [ 363390.984300002455711, 254295.638999998569489 ], [ 363413.478299997746944, 254305.533500000834465 ], [ 363420.880800001323223, 254288.49549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404040200", "MAP": "D9-3214-T85", "PARCEL_NAM": "106", "ACRE": null, "LONGITUDE": -64.89874058, "LATITUDE": 18.3170549, "OBJECTID_1": 37459, "PARCEL_NO_": "107404040200", "Tax_Legal_": "BOLONGO ESTATE 106 FRENCHMANS BAY QTR.", "Name": "CHRISTIAN OUTREACH MINST", "Address": "301 Pastor", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 248300, "Improved_V": 212800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 509.066469326, "SHAPE_Area": 11755.5461211 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362244.124200001358986, 254130.254399999976158 ], [ 362242.421700000762939, 254140.795099999755621 ], [ 362227.679700002074242, 254167.483399998396635 ], [ 362225.219400003552437, 254172.318399999290705 ], [ 362196.788099996745586, 254196.783599998801947 ], [ 362184.601700000464916, 254207.449700001627207 ], [ 362173.990099996328354, 254222.561599999666214 ], [ 362156.026500001549721, 254248.801199998706579 ], [ 362142.967299997806549, 254267.270599998533726 ], [ 362224.977399997413158, 254295.38399999961257 ], [ 362294.490299999713898, 254181.329100001603365 ], [ 362295.363200001418591, 254173.525800000876188 ], [ 362292.974799998104572, 254169.917599998414516 ], [ 362276.92230000346899, 254161.131400000303984 ], [ 362271.321299999952316, 254156.019299998879433 ], [ 362265.736400000751019, 254149.007500000298023 ], [ 362260.981299996376038, 254139.258299998939037 ], [ 362260.216300003230572, 254134.396899998188019 ], [ 362257.064800001680851, 254125.716299999505281 ], [ 362247.543700002133846, 254107.484299998730421 ], [ 362244.124200001358986, 254130.254399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503018400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89661859, "LATITUDE": 18.31746694, "OBJECTID_1": 37592, "PARCEL_NO_": "107503018400", "Tax_Legal_": "61-36B ESTATE BOLONGO No.3 FRENCHMAN'S BAY QTR.", "Name": "ANGOL, ANTHONY", "Address": "PO Box 30614", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.53391888499999, "SHAPE_Area": 2422.9016073100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362486.611000001430511, 254251.929099999368191 ], [ 362427.85809999704361, 254238.782600000500679 ], [ 362423.578400000929832, 254267.878499999642372 ], [ 362421.721199996769428, 254296.572000000625849 ], [ 362475.083499997854233, 254279.910199999809265 ], [ 362486.611000001430511, 254251.929099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90337669, "LATITUDE": 18.31738655, "OBJECTID_1": 37348, "PARCEL_NO_": "107404024500", "Tax_Legal_": "21-40 (LOT#35)FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "METHUSELAH ST. LUCE", "Address": "P O BOXC 304309", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72500, "Improved_V": 107100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.05488398200001, "SHAPE_Area": 2733.8706007400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361746.63910000026226, 254219.697200000286102 ], [ 361689.977899998426437, 254244.986800000071526 ], [ 361695.575300000607967, 254250.521099999547005 ], [ 361699.578100003302097, 254253.93129999935627 ], [ 361730.029200002551079, 254276.345400001853704 ], [ 361737.217699997127056, 254284.425799999386072 ], [ 361772.909400001168251, 254259.597800001502037 ], [ 361746.63910000026226, 254219.697200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504017600", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-29", "ACRE": "0.19", "LONGITUDE": -64.88654981000001, "LATITUDE": 18.3175335, "OBJECTID_1": 37731, "PARCEL_NO_": "107504017600", "Tax_Legal_": "5A-2,3&29 BOVONI FRENCHMAN BAY QTR", "Name": "CHEVRON PUERTO RICO, LLC", "Address": "PO BOX 11961", "City": "San Juan", "State": "Puerto Rico", "Zip": 922, "Country": "United States", "Land_Value": 150300, "Improved_V": 171700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.424876646, "SHAPE_Area": 667.722261291 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363532.266999997198582, 254275.897100001573563 ], [ 363507.327100001275539, 254269.149099998176098 ], [ 363501.664899997413158, 254271.213700000196695 ], [ 363499.217200003564358, 254274.571199998259544 ], [ 363498.382100000977516, 254277.941799998283386 ], [ 363495.880500003695488, 254287.631599999964237 ], [ 363522.400700002908707, 254298.192299999296665 ], [ 363526.51129999756813, 254288.937800001353025 ], [ 363532.266999997198582, 254275.897100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89697088, "LATITUDE": 18.31743271, "OBJECTID_1": 37529, "PARCEL_NO_": "107503011300", "Tax_Legal_": "BOLONGO 23A 3 FRENCHMAN BAY", "Name": "ST JOHN, JOSEPH", "Address": "PO Box 503193", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 40200, "Improved_V": 265300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.014378806, "SHAPE_Area": 581.60035284800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362416.204700000584126, 254281.539200000464916 ], [ 362419.701499998569489, 254249.692699998617172 ], [ 362424.773100003600121, 254222.292100001126528 ], [ 362423.162299998104572, 254222.067800000309944 ], [ 362419.890299998223782, 254227.529399998486042 ], [ 362417.415600001811981, 254234.053100001066923 ], [ 362417.39580000191927, 254236.375 ], [ 362414.931900002062321, 254241.632100000977516 ], [ 362414.915700003504753, 254243.531800001859665 ], [ 362413.279700003564358, 254246.262699998915195 ], [ 362405.016999997198582, 254269.626400001347065 ], [ 362391.979299999773502, 254285.562800001353025 ], [ 362416.204700000584126, 254281.539200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90816284, "LATITUDE": 18.31720709, "OBJECTID_1": 37220, "PARCEL_NO_": "107403030200", "Tax_Legal_": "FRENCHMAN'S BAY 15-27 FRENCHMAN'S BAY QTR.", "Name": "COOK, JAMES C.", "Address": "7501 Frenchman Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87200, "Improved_V": 288200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.281050475, "SHAPE_Area": 2542.4726724799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361213.079700000584126, 254189.576799999922514 ], [ 361203.757100000977516, 254242.696100000292063 ], [ 361205.362499997019768, 254243.553599998354912 ], [ 361219.800599999725819, 254252.53770000115037 ], [ 361239.805600002408028, 254270.644400000572205 ], [ 361256.460500001907349, 254208.719200000166893 ], [ 361213.079700000584126, 254189.576799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021600", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-95", "ACRE": "0.10", "LONGITUDE": -64.88749872, "LATITUDE": 18.31747402, "OBJECTID_1": 37749, "PARCEL_NO_": "107504021600", "Tax_Legal_": "REM 5A,5A-1,5A-95THRU 97 BOVONI", "Name": "V. I. BAPTIST MISSION", "Address": "PO Box 2087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 167700, "Improved_V": 1015300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.651022131000005, "SHAPE_Area": 463.55961985099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363428.285099998116493, 254271.246399998664856 ], [ 363405.789200000464916, 254261.563099998980761 ], [ 363398.383199997246265, 254279.023200001567602 ], [ 363420.880800001323223, 254288.49549999833107 ], [ 363427.45719999819994, 254273.772700000554323 ], [ 363428.285099998116493, 254271.246399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89732088, "LATITUDE": 18.3172732, "OBJECTID_1": 37531, "PARCEL_NO_": "107503011500", "Tax_Legal_": "7A BOLONGO BAY FRENCHMAN BAY QTR", "Name": "CARROLL, JAMES & CELIA", "Address": "PO Box 9811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39500, "Improved_V": 159800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.55943036799999, "SHAPE_Area": 3109.34720156 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362403.789200000464916, 254224.442400000989437 ], [ 362360.374200001358986, 254209.310499999672174 ], [ 362336.59009999781847, 254256.189699999988079 ], [ 362390.422499999403954, 254279.00620000064373 ], [ 362392.875600002706051, 254275.015500001609325 ], [ 362399.387199997901917, 254267.891600001603365 ], [ 362399.405199997127056, 254265.780799999833107 ], [ 362401.035800002515316, 254263.683200001716614 ], [ 362406.004900000989437, 254248.314100001007318 ], [ 362406.908299997448921, 254236.922400001436472 ], [ 362403.789200000464916, 254224.442400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88782161, "LATITUDE": 18.31744099, "OBJECTID_1": 37775, "PARCEL_NO_": "107504024300", "Tax_Legal_": "5-118 BOVONI FRENCHMAN BAY", "Name": "FRIDAY, CLEMENT ERSKINE & LILLIAN (TRUSTEES)", "Address": "PO Box 10619", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16900, "Improved_V": 168300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.959452904800003, "SHAPE_Area": 630.36198094700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363371.976300001144409, 254255.164599999785423 ], [ 363362.914399996399879, 254277.677499998360872 ], [ 363364.509099997580051, 254279.801399998366833 ], [ 363386.230899997055531, 254285.678700000047684 ], [ 363388.667900003492832, 254283.587799999862909 ], [ 363388.6841000020504, 254281.688000001013279 ], [ 363393.602799996733665, 254272.229100000113249 ], [ 363396.084700003266335, 254264.861099999397993 ], [ 363371.976300001144409, 254255.164599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404027600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90148612, "LATITUDE": 18.31721285, "OBJECTID_1": 37376, "PARCEL_NO_": "107404027600", "Tax_Legal_": "EST. FRENHCMAN'S BAY 21-8 FRENCHMAN'S BAY QTR.", "Name": "LIMA, DIEGO A.,JR. & SUMAYA C. PEREZ DE LIMA", "Address": "PO Box 9911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.972669322, "SHAPE_Area": 2546.2164330599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361958.710100002586842, 254220.166299998760223 ], [ 361962.860299997031689, 254206.268100000917912 ], [ 361941.17620000243187, 254195.958099998533726 ], [ 361931.498700000345707, 254196.089999999850988 ], [ 361925.660300001502037, 254218.840300001204014 ], [ 361923.201800003647804, 254223.464299999177456 ], [ 361920.752300001680851, 254227.032800000160933 ], [ 361918.306400001049042, 254230.179200001060963 ], [ 361914.235200002789497, 254234.789900001138449 ], [ 361906.125399999320507, 254240.212000001221895 ], [ 361900.461400002241135, 254242.487700000405312 ], [ 361898.035300001502037, 254243.312199998646975 ], [ 361891.57039999961853, 254244.947999998927116 ], [ 361944.558600001037121, 254272.190600000321865 ], [ 361947.879199996590614, 254261.029800001531839 ], [ 361958.710100002586842, 254220.166299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404026500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90279879000001, "LATITUDE": 18.31717698, "OBJECTID_1": 37365, "PARCEL_NO_": "107404026500", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#21)21-28 FRENCHMAN'S BAY QTR.", "Name": "HERBERT, STACY & CLARKE, MICHAEL", "Address": "PO Box 502356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 60600, "Improved_V": 198300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.35259372799999, "SHAPE_Area": 2225.5477260399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361832.083099998533726, 254223.351799998432398 ], [ 361803.285999998450279, 254196.096099998801947 ], [ 361763.478200003504753, 254230.811900001019239 ], [ 361780.990500003099442, 254257.552999999374151 ], [ 361784.167199999094009, 254263.278499998152256 ], [ 361832.083099998533726, 254223.351799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91189149, "LATITUDE": 18.31716311, "OBJECTID_1": 37228, "PARCEL_NO_": "107403031000", "Tax_Legal_": "FRENCHMANS BAY 15-21 No.4 FRENCHMAN'S BAY QTR.", "Name": "GLENN MILLAR TRUST", "Address": "# 27", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54000, "Improved_V": 246500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.65000674500001, "SHAPE_Area": 1764.0294803899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360839.995099999010563, 254253.228900000452995 ], [ 360862.748000003397465, 254232.727899998426437 ], [ 360851.565800003707409, 254220.18189999833703 ], [ 360841.999700002372265, 254207.22690000012517 ], [ 360837.383000001311302, 254181.224599998444319 ], [ 360831.713600002229214, 254184.133499998599291 ], [ 360828.473999999463558, 254185.795699998736382 ], [ 360821.161499999463558, 254192.279800001531839 ], [ 360815.414800003170967, 254204.265099998563528 ], [ 360814.516699999570847, 254215.023499999195337 ], [ 360816.847599998116493, 254225.386199999600649 ], [ 360819.241300001740456, 254228.361099999397993 ], [ 360839.995099999010563, 254253.228900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031700", "MAP": "A9-138-T70", "PARCEL_NAM": "92", "ACRE": "0.50", "LONGITUDE": -64.90103562, "LATITUDE": 18.31713196, "OBJECTID_1": 37402, "PARCEL_NO_": "107404031700", "Tax_Legal_": "BOLONGO 92 FRENCHMAN BAY QTR", "Name": "CANNONIER, DAVID & SHELLY-ANN", "Address": "PO Box 308774", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.29479108800001, "SHAPE_Area": 1457.02518829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361954.427100002765656, 254236.325399998575449 ], [ 362007.70099999755621, 254242.431699998676777 ], [ 362006.97919999808073, 254233.438099998980761 ], [ 362008.679899998009205, 254223.108399998396635 ], [ 362009.53660000115633, 254217.204799998551607 ], [ 362010.100199997425079, 254215.415100000798702 ], [ 361962.860299997031689, 254206.268100000917912 ], [ 361958.710100002586842, 254220.166299998760223 ], [ 361954.427100002765656, 254236.325399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504021600", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-94", "ACRE": "0.12", "LONGITUDE": -64.88741997, "LATITUDE": 18.31730361, "OBJECTID_1": 37749, "PARCEL_NO_": "107504021600", "Tax_Legal_": "REM 5A,5A-1,5A-95THRU 97 BOVONI", "Name": "V. I. BAPTIST MISSION", "Address": "PO Box 2087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 167700, "Improved_V": 1015300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.905752267099999, "SHAPE_Area": 551.64278455099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363438.153200000524521, 254248.740100000053644 ], [ 363419.64580000191927, 254244.155699998140335 ], [ 363413.996200002729893, 254244.742800001055002 ], [ 363411.561099998652935, 254246.622699998319149 ], [ 363405.789200000464916, 254261.563099998980761 ], [ 363428.285099998116493, 254271.246399998664856 ], [ 363438.153200000524521, 254248.740100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404041300", "MAP": "D9-5288-T92", "PARCEL_NAM": "107-F", "ACRE": ".314", "LONGITUDE": -64.89984035000001, "LATITUDE": 18.317217, "OBJECTID_1": 37470, "PARCEL_NO_": "107404041300", "Tax_Legal_": "BOLONGO BAY ESTATE 107-F No.3 FRENCHMAN'S BAY QTR.", "Name": "NORTH CARIBBEAN CONFERENCE OF", "Address": "P.O. BOX 580, CHRISTIANSTED", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.26826577700001, "SHAPE_Area": 2155.4207032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362091.890100002288818, 254205.002099998295307 ], [ 362079.671400003135204, 254219.467599999159575 ], [ 362072.326399996876717, 254229.750999998301268 ], [ 362108.355200000107288, 254260.021200001239777 ], [ 362156.026500001549721, 254248.801199998706579 ], [ 362091.890100002288818, 254205.002099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89785833000001, "LATITUDE": 18.31707469, "OBJECTID_1": 37532, "PARCEL_NO_": "107503011600", "Tax_Legal_": "EST. BOLONGO 7 FRENCHMAN BAY QTR", "Name": "SON, SYLVIA", "Address": "PO Box 9127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46900, "Improved_V": 163700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.585782341, "SHAPE_Area": 3197.85328871 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362360.374200001358986, 254209.310499999672174 ], [ 362300.064400002360344, 254189.607400000095367 ], [ 362275.531599998474121, 254229.725400000810623 ], [ 362315.701499998569489, 254247.152800001204014 ], [ 362336.59009999781847, 254256.189699999988079 ], [ 362360.374200001358986, 254209.310499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88773517, "LATITUDE": 18.31723895, "OBJECTID_1": 37776, "PARCEL_NO_": "107504024400", "Tax_Legal_": "5-119 BOVONI (WESTERN POR) NOS.1&2 FRENCHMAN'S BAY QTR", "Name": "GUNTHORPE SAM, CAROL & ANDREW GUNTHORPE", "Address": "PO Box 9111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16900, "Improved_V": 115700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.624928026099994, "SHAPE_Area": 619.89325583200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363396.084700003266335, 254264.861099999397993 ], [ 363402.680900000035763, 254247.816500000655651 ], [ 363403.528499998152256, 254242.968299999833107 ], [ 363402.736599996685982, 254241.27309999987483 ], [ 363401.138400003314018, 254239.571299999952316 ], [ 363381.029100000858307, 254233.70719999819994 ], [ 363371.976300001144409, 254255.164599999785423 ], [ 363396.084700003266335, 254264.861099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89580396, "LATITUDE": 18.31714611, "OBJECTID_1": 37546, "PARCEL_NO_": "107503013000", "Tax_Legal_": "ESTATE BOLONGO 17-1 FRENCHMAN BAY QTR", "Name": "SCOTT, FRANCIS & JUSTINA", "Address": "PO Box 307836", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38300, "Improved_V": 147300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.13395020799999, "SHAPE_Area": 1584.29208967 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362551.078199997544289, 254256.889699999243021 ], [ 362551.13400000333786, 254250.346200000494719 ], [ 362554.512100003659725, 254232.430900000035763 ], [ 362559.488399997353554, 254216.217500001192093 ], [ 362562.769400000572205, 254209.700399998575449 ], [ 362511.894400000572205, 254218.361099999397993 ], [ 362502.223999999463558, 254217.648600000888109 ], [ 362527.732900001108646, 254252.265700001269579 ], [ 362551.078199997544289, 254256.889699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90857329000001, "LATITUDE": 18.31701685, "OBJECTID_1": 37221, "PARCEL_NO_": "107403030300", "Tax_Legal_": "FRENCHMAN'S BAY 15-26 FRENCHMAN'S BAY QTR.", "Name": "CAPOZZOLI, JAON", "Address": "PO Box 10039", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70000, "Improved_V": 302600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.13429554000001, "SHAPE_Area": 2552.9433177800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361167.288900002837181, 254169.359299998730421 ], [ 361159.580700002610683, 254222.280699998140335 ], [ 361191.710900001227856, 254236.897999998182058 ], [ 361203.757100000977516, 254242.696100000292063 ], [ 361213.079700000584126, 254189.576799999922514 ], [ 361167.288900002837181, 254169.359299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503018500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89647955, "LATITUDE": 18.31714312, "OBJECTID_1": 37593, "PARCEL_NO_": "107503018500", "Tax_Legal_": "REM. ESTATE BOLONGO 61-36 FRENCHMAN'S QTR.", "Name": "ANGOL, A. & HERMAN, GOLDA", "Address": "PO Box 306146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.88328606499999, "SHAPE_Area": 1991.5122602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362469.17960000038147, 254215.689399998635054 ], [ 362432.90990000218153, 254213.70380000025034 ], [ 362427.85809999704361, 254238.782600000500679 ], [ 362486.611000001430511, 254251.929099999368191 ], [ 362502.223999999463558, 254217.648600000888109 ], [ 362469.17960000038147, 254215.689399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9036433, "LATITUDE": 18.31704681, "OBJECTID_1": 37347, "PARCEL_NO_": "107404024400", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 21-39 FRENCHMAN'S BAY QTR.", "Name": "FRANCISCO A MEJIA PILIER and OLGA M FUENTES AMAYA", "Address": "3563 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.61786971500001, "SHAPE_Area": 2675.3161954500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361728.388899996876717, 254184.92850000038743 ], [ 361675.868900001049042, 254197.375300001353025 ], [ 361676.524099998176098, 254215.112500000745058 ], [ 361679.632500000298023, 254228.859099999070168 ], [ 361681.216300003230572, 254232.249499998986721 ], [ 361682.008299998939037, 254233.944699998944998 ], [ 361683.599299997091293, 254236.490899998694658 ], [ 361687.582299999892712, 254242.223000001162291 ], [ 361689.977899998426437, 254244.986800000071526 ], [ 361746.63910000026226, 254219.697200000286102 ], [ 361743.449799999594688, 254215.449200000613928 ], [ 361733.116999998688698, 254197.843899998813868 ], [ 361731.53320000320673, 254194.453400000929832 ], [ 361728.388899996876717, 254184.92850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91162825000001, "LATITUDE": 18.31703668, "OBJECTID_1": 37227, "PARCEL_NO_": "107403030900", "Tax_Legal_": "FRENCHMAN'S BAY 15-20 FRENCHMAN'S BAY QTR.", "Name": "THAKU G. & NISHA T. BAHARANI REVOC. FAMILY TRUST", "Address": "1A Poinsetta Rd", "City": "BETTY'S ESTATE, ST. MAARTEN DC", "State": null, "Zip": 0, "Country": "Netherlands Antilles", "Land_Value": 54000, "Improved_V": 277000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.373342049, "SHAPE_Area": 1908.2810728699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360837.383000001311302, 254181.224599998444319 ], [ 360841.999700002372265, 254207.22690000012517 ], [ 360851.565800003707409, 254220.18189999833703 ], [ 360862.748000003397465, 254232.727899998426437 ], [ 360873.183399997651577, 254238.30180000141263 ], [ 360891.179399996995926, 254208.262699998915195 ], [ 360868.803999997675419, 254184.437100000679493 ], [ 360867.202200002968311, 254183.157400000840425 ], [ 360863.193999998271465, 254180.380399998277426 ], [ 360856.763300001621246, 254178.005699999630451 ], [ 360850.310999996960163, 254178.164000000804663 ], [ 360837.383000001311302, 254181.224599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404041200", "MAP": "D9-5288-T92", "PARCEL_NAM": "107-E", "ACRE": ".556", "LONGITUDE": -64.8996097, "LATITUDE": 18.31702679, "OBJECTID_1": 37469, "PARCEL_NO_": "107404041200", "Tax_Legal_": "BOLONGO BAY ESTATE 107-E No.3 FRENCHMAN'S BAY QTR.", "Name": "GIBSON, CHRISTINE", "Address": "9316 Spring Water Path", "City": "Jessup", "State": "Maryland", "Zip": 20794, "Country": "United States", "Land_Value": 40200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.81325974000001, "SHAPE_Area": 2366.22066103 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362173.990099996328354, 254222.561599999666214 ], [ 362113.849399998784065, 254183.017000000923872 ], [ 362103.300800003111362, 254190.741200000047684 ], [ 362098.417900003492832, 254195.978500001132488 ], [ 362091.890100002288818, 254205.002099998295307 ], [ 362156.026500001549721, 254248.801199998706579 ], [ 362173.990099996328354, 254222.561599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90430576, "LATITUDE": 18.3170324, "OBJECTID_1": 37339, "PARCEL_NO_": "107404023600", "Tax_Legal_": "FRENCHMAN'S BAY (LOT #40) 21-66 FRENCHMAN'S BAY", "Name": "LETTSOME, ROXANNE", "Address": "PO Box 306533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.892918334, "SHAPE_Area": 2673.1087312999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361669.484899997711182, 254189.512600000947714 ], [ 361605.784400001168251, 254189.202300000935793 ], [ 361611.000600002706051, 254239.485300000756979 ], [ 361670.781000003218651, 254226.675700001418591 ], [ 361668.489799998700619, 254211.669300001114607 ], [ 361667.787699997425079, 254199.420099999755621 ], [ 361669.484899997711182, 254189.512600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404027800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90196294, "LATITUDE": 18.31704873, "OBJECTID_1": 37378, "PARCEL_NO_": "107404027800", "Tax_Legal_": "FRENCHMAN'S BAY 21-12 FRENCHMAN'S BAY QTR.", "Name": "SPENCELEY, RICHARD C", "Address": "PO Box 308790", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.19124226700001, "SHAPE_Area": 2536.0914115 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361923.435599997639656, 254196.024000000208616 ], [ 361856.50620000064373, 254196.109499998390675 ], [ 361848.177000001072884, 254227.28319999948144 ], [ 361849.780599996447563, 254228.351799998432398 ], [ 361861.01860000193119, 254234.354400001466274 ], [ 361870.672799997031689, 254236.966499999165535 ], [ 361883.564800001680851, 254238.127500001341105 ], [ 361898.90990000218153, 254235.297800000756979 ], [ 361908.635999999940395, 254229.46680000051856 ], [ 361911.888199999928474, 254226.326999999582767 ], [ 361916.785499997437, 254219.401000000536442 ], [ 361919.245700001716614, 254214.565999999642372 ], [ 361923.435599997639656, 254196.024000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91237235, "LATITUDE": 18.31677911, "OBJECTID_1": 37238, "PARCEL_NO_": "107403032000", "Tax_Legal_": "15-1-A ESTATE FRENCHMANS BAY FRENCHMANS BAY QTR", "Name": "WEISHER (TRUSTEE), DAVID DUANE", "Address": "PO Box 7307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107700, "Improved_V": 423700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.81259978700001, "SHAPE_Area": 2292.7781799600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360762.681900002062321, 254147.049300000071526 ], [ 360762.635099999606609, 254152.537399999797344 ], [ 360761.814400002360344, 254154.219399999827147 ], [ 360752.930600002408028, 254155.835400000214577 ], [ 360755.257799997925758, 254166.620299998670816 ], [ 360803.955600000917912, 254224.22520000115037 ], [ 360803.991499997675419, 254220.003600001335144 ], [ 360804.898500002920628, 254208.189800001680851 ], [ 360809.871299996972084, 254192.398499999195337 ], [ 360802.684600003063679, 254184.10700000077486 ], [ 360806.028499998152256, 254170.202199999243021 ], [ 360786.097300000488758, 254143.441300000995398 ], [ 360762.681900002062321, 254147.049300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404026600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90305636, "LATITUDE": 18.31689446, "OBJECTID_1": 37366, "PARCEL_NO_": "107404026600", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#20) 21-27 FRENCHMANS BAY", "Name": "HILL, ELROY E", "Address": "Cruz Bay", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 78700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.382197628, "SHAPE_Area": 2145.89183594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361803.285999998450279, 254196.096099998801947 ], [ 361788.887500002980232, 254182.468299999833107 ], [ 361777.72860000282526, 254167.178199999034405 ], [ 361738.035800002515316, 254188.384899999946356 ], [ 361739.603500001132488, 254193.67509999871254 ], [ 361748.341700002551079, 254209.156399998813868 ], [ 361749.943499997258186, 254210.436099998652935 ], [ 361763.478200003504753, 254230.811900001019239 ], [ 361803.285999998450279, 254196.096099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90903817, "LATITUDE": 18.31682075, "OBJECTID_1": 37222, "PARCEL_NO_": "107403030400", "Tax_Legal_": "FRENCHMAN'S BAY 15-25 FRENCHMAN'S BAY QTR.", "Name": "NANYAMKA T THOMPSON", "Address": "PO Box 6131", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046131, "Country": "United States", "Land_Value": 75100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.70255506800001, "SHAPE_Area": 2960.2469557600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361115.071000002324581, 254146.344900000840425 ], [ 361106.732699997723103, 254178.573899999260902 ], [ 361113.786300003528595, 254202.485199999064207 ], [ 361115.395400002598763, 254202.9206000007689 ], [ 361123.435099996626377, 254205.730599999427795 ], [ 361159.580700002610683, 254222.280699998140335 ], [ 361167.288900002837181, 254169.359299998730421 ], [ 361115.071000002324581, 254146.344900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404027900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90241443, "LATITUDE": 18.31680524, "OBJECTID_1": 37379, "PARCEL_NO_": "107404027900", "Tax_Legal_": "FRENCHMANS BAY 21-14 FRENCHMANS BAY QTR.", "Name": "GEORGES, KESHANA", "Address": "PO BOX 10637", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.60654249000001, "SHAPE_Area": 2244.3544452299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361826.911799997091293, 254167.791900001466274 ], [ 361800.975000001490116, 254183.41160000115633 ], [ 361838.567699998617172, 254219.394099999219179 ], [ 361841.764200001955032, 254222.797800000756979 ], [ 361848.177000001072884, 254227.28319999948144 ], [ 361856.50620000064373, 254196.109499998390675 ], [ 361857.343099996447563, 254192.527800001204014 ], [ 361860.098300002515316, 254153.075800001621246 ], [ 361826.911799997091293, 254167.791900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89696736, "LATITUDE": 18.31678323, "OBJECTID_1": 37530, "PARCEL_NO_": "107503011400", "Tax_Legal_": "BOLONGO 12 3 FRENCHMAN BAY QTR", "Name": "COULTER, DAVID & CATHERINE", "Address": "PO BOX 10053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40200, "Improved_V": 417500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.84694278800001, "SHAPE_Area": 1177.49207439 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362395.455600000917912, 254161.468299999833107 ], [ 362409.451399996876717, 254222.37779999896884 ], [ 362410.201899997889996, 254228.927799999713898 ], [ 362412.61370000243187, 254229.791900001466274 ], [ 362416.756700001657009, 254216.738000001758337 ], [ 362424.130400002002716, 254203.077300000935793 ], [ 362427.495899997651577, 254186.639499999582767 ], [ 362431.615599997341633, 254176.329700000584126 ], [ 362395.455600000917912, 254161.468299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032000", "MAP": "A9-138-T70", "PARCEL_NAM": "78", "ACRE": "0.60", "LONGITUDE": -64.90038118, "LATITUDE": 18.3167807, "OBJECTID_1": 37405, "PARCEL_NO_": "107404032000", "Tax_Legal_": "BOLONGO 78 FRENCHMAN BAY QTR", "Name": "GEORGE, LOLITA O", "Address": "PO Box 11132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 76100, "Improved_V": 369500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.66117375799999, "SHAPE_Area": 2469.7917070100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362062.337099999189377, 254171.829599998891354 ], [ 362037.598499998450279, 254141.440799999982119 ], [ 362026.823399998247623, 254175.760899998247623 ], [ 362023.459700003266335, 254191.987500000745058 ], [ 362069.151500001549721, 254223.814399998635054 ], [ 362086.274700000882149, 254201.578699998557568 ], [ 362062.337099999189377, 254171.829599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031900", "MAP": "A9-138-T70", "PARCEL_NAM": "91", "ACRE": "0.50", "LONGITUDE": -64.90092549000001, "LATITUDE": 18.31672634, "OBJECTID_1": 37404, "PARCEL_NO_": "107404031900", "Tax_Legal_": "EST. BOLONGO 91 FRENCHMAN BAY QTR", "Name": "MCCLEVERTY, MONIQUE", "Address": "PO Box 726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 69500, "Improved_V": 415000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.61806141, "SHAPE_Area": 3059.4311939300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362027.219899997115135, 254153.700899999588728 ], [ 361978.318999998271465, 254146.270700000226498 ], [ 361977.037000000476837, 254151.288699999451637 ], [ 361969.5337999984622, 254180.147100001573563 ], [ 361962.860299997031689, 254206.268100000917912 ], [ 362010.100199997425079, 254215.415100000798702 ], [ 362014.509300000965595, 254201.413499999791384 ], [ 362018.688299998641014, 254184.138000000268221 ], [ 362022.032200001180172, 254170.233199998736382 ], [ 362027.219899997115135, 254153.700899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404041100", "MAP": "D9-5288-T92", "PARCEL_NAM": "107-D", "ACRE": null, "LONGITUDE": -64.8993852, "LATITUDE": 18.3168236, "OBJECTID_1": 37468, "PARCEL_NO_": "107404041100", "Tax_Legal_": "BOLONGO BAY ESTATE 107-D No.3 FRENCHMAN'S BAY QTR.", "Name": "CAPITOLIN, SHAMARA J", "Address": "PO Box 10261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.52677130399999, "SHAPE_Area": 2104.6169147099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362196.788099996745586, 254196.783599998801947 ], [ 362147.055600002408028, 254165.979100000113249 ], [ 362130.846699997782707, 254175.556800000369549 ], [ 362113.849399998784065, 254183.017000000923872 ], [ 362173.990099996328354, 254222.561599999666214 ], [ 362184.601700000464916, 254207.449700001627207 ], [ 362196.788099996745586, 254196.783599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503011700", "MAP": "G9-558-T60", "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.89751487, "LATITUDE": 18.31669122, "OBJECTID_1": 37533, "PARCEL_NO_": "107503011700", "Tax_Legal_": "BOLONGO 8 FRENCHMAN", "Name": "THE MOUNT ZION CHURCH OF GOD, INC", "Address": "PO Box 6553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 164400, "Improved_V": 174400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.407915151, "SHAPE_Area": 5044.1827952900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362389.030299998819828, 254158.460400000214577 ], [ 362331.170000001788139, 254135.188700001686811 ], [ 362330.33669999986887, 254138.348299998790026 ], [ 362324.613399997353554, 254147.589600000530481 ], [ 362322.144100002944469, 254153.480000000447035 ], [ 362316.428000003099442, 254161.876899998635054 ], [ 362313.964100003242493, 254167.134100001305342 ], [ 362311.523599997162819, 254169.647300001233816 ], [ 362300.064400002360344, 254189.607400000095367 ], [ 362360.374200001358986, 254209.310499999672174 ], [ 362403.789200000464916, 254224.442400000989437 ], [ 362389.030299998819828, 254158.460400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504060200", "MAP": "D9-3999-T87", "PARCEL_NAM": "18-L", "ACRE": null, "LONGITUDE": -64.88808908, "LATITUDE": 18.31635494, "OBJECTID_1": 37855, "PARCEL_NO_": "107504060200", "Tax_Legal_": "BOVONI ESTATE 18L FRENCHMAN BAY QTR.", "Name": "PLAZA WAREHOUSING USVI LLC", "Address": "7350 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 441000, "Improved_V": 6490000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 607.01118538399999, "SHAPE_Area": 20790.9813822 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363422.505300000309944, 254192.461199998855591 ], [ 363424.24099999666214, 254174.164799999445677 ], [ 363426.093099996447563, 254164.90430000051856 ], [ 363429.79730000346899, 254150.087600000202656 ], [ 363430.855599999427795, 254141.885499998927116 ], [ 363433.501500003039837, 254126.804299999028444 ], [ 363437.470200002193451, 254113.045899998396635 ], [ 363441.703599996864796, 254090.027100000530481 ], [ 363445.435400001704693, 254075.015799999237061 ], [ 363264.379199996590614, 254106.940699998289347 ], [ 363242.767700001597404, 254182.757500000298023 ], [ 363415.718500003218651, 254231.880100000649691 ], [ 363418.943800002336502, 254231.906500000506639 ], [ 363423.004100002348423, 254228.562300000339746 ], [ 363423.938100002706051, 254213.582299999892712 ], [ 363422.505300000309944, 254192.461199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91093381, "LATITUDE": 18.316851, "OBJECTID_1": 37226, "PARCEL_NO_": "107403030800", "Tax_Legal_": "EST FRENCHMAN BAY 15-15 FRENCHMAN BAY QTR", "Name": "MANSOUR, FADI & BASHAR", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 171500, "Improved_V": 64400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.07421102800001, "SHAPE_Area": 2182.05917645 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360937.579700000584126, 254156.924499999731779 ], [ 360897.687399998307228, 254201.560899998992682 ], [ 360900.084799997508526, 254204.113699998706579 ], [ 360904.094800002872944, 254206.67960000038147 ], [ 360912.145300000905991, 254208.223200000822544 ], [ 360929.081399999558926, 254207.939599998295307 ], [ 360941.197700001299381, 254205.50560000166297 ], [ 360949.298600003123283, 254201.138999998569489 ], [ 360950.920199997723103, 254200.096799999475479 ], [ 360960.667900003492832, 254191.732799999415874 ], [ 360965.575900003314018, 254183.540300000458956 ], [ 360968.021799996495247, 254180.394000001251698 ], [ 360971.297399997711182, 254174.510200001299381 ], [ 360972.944200001657009, 254170.512899998575449 ], [ 360937.579700000584126, 254156.924499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89582377000001, "LATITUDE": 18.31685441, "OBJECTID_1": 37543, "PARCEL_NO_": "107503012700", "Tax_Legal_": "BOLONGO 16A FRENCHMAN BAY QTR.", "Name": "RAYMOND, KEVIN R", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60200, "Improved_V": 210800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.510470881, "SHAPE_Area": 1921.6422833399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362562.769400000572205, 254209.700399998575449 ], [ 362566.116899996995926, 254195.373500000685453 ], [ 362567.061700001358986, 254179.127000000327826 ], [ 362502.470399998128414, 254188.730799999088049 ], [ 362502.223999999463558, 254217.648600000888109 ], [ 362511.894400000572205, 254218.361099999397993 ], [ 362562.769400000572205, 254209.700399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89625256, "LATITUDE": 18.31675796, "OBJECTID_1": 37544, "PARCEL_NO_": "107503012800", "Tax_Legal_": "ESTATE BOLONGO 20 FRENCHMAN BAY QTR", "Name": "BURGOUNEAU, DERRICK", "Address": "PO Box 7231", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36900, "Improved_V": 86900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.23896314500001, "SHAPE_Area": 1691.0090962100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362502.470399998128414, 254188.730799999088049 ], [ 362502.761699996888638, 254154.536100000143051 ], [ 362480.980499997735023, 254155.624299999326468 ], [ 362469.17960000038147, 254215.689399998635054 ], [ 362502.223999999463558, 254217.648600000888109 ], [ 362502.470399998128414, 254188.730799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91031814, "LATITUDE": 18.31676613, "OBJECTID_1": 37225, "PARCEL_NO_": "107403030700", "Tax_Legal_": "FRENHCMAN'S BAY 15-22 FRENCHMAN'S BAY QTR.", "Name": "HERMAN, JOSEPHINE", "Address": "1522 Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.50539748599999, "SHAPE_Area": 2417.7649359900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361024.57880000025034, 254167.346900001168251 ], [ 361025.562299996614456, 254142.75959999859333 ], [ 361007.831399999558926, 254145.467199999839067 ], [ 360998.134099997580051, 254147.920899998396635 ], [ 360994.894500002264977, 254149.583200000226498 ], [ 360991.640399999916553, 254152.934000000357628 ], [ 360987.522600002586842, 254163.032800000160933 ], [ 360985.879399999976158, 254166.607900001108646 ], [ 360984.252400003373623, 254168.283399999141693 ], [ 360975.242700003087521, 254184.674899999052286 ], [ 360971.954499997198582, 254192.036299999803305 ], [ 360969.512199997901917, 254194.760499998927116 ], [ 360968.666299998760223, 254199.397700000554323 ], [ 360971.056500002741814, 254202.794700000435114 ], [ 360975.881700001657009, 254204.311900001019239 ], [ 360992.022399999201298, 254202.755199998617172 ], [ 361024.321599997580051, 254197.531100001186132 ], [ 361024.57880000025034, 254167.346900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8965475, "LATITUDE": 18.31675457, "OBJECTID_1": 37545, "PARCEL_NO_": "107503012900", "Tax_Legal_": "BOLONGO ESTATE 20A No.3 FRENCHMAN'BAY QTR.", "Name": "STEDMAN, DANA", "Address": "106-128 BUCCANEER MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.528197495, "SHAPE_Area": 1997.12666633 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362480.980499997735023, 254155.624299999326468 ], [ 362459.202899999916553, 254156.290500000119209 ], [ 362442.095899999141693, 254176.626499999314547 ], [ 362437.999600000679493, 254184.192400000989437 ], [ 362435.506899997591972, 254192.826799999922514 ], [ 362432.90990000218153, 254213.70380000025034 ], [ 362469.17960000038147, 254215.689399998635054 ], [ 362480.980499997735023, 254155.624299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91127422, "LATITUDE": 18.31668341, "OBJECTID_1": 37229, "PARCEL_NO_": "107403031100", "Tax_Legal_": "15-16 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "DELIGNY, OLIVER", "Address": "FLAGSHIP PMB 1083801 CROWN BAY", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 126900, "Improved_V": 732100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.32805241700001, "SHAPE_Area": 2367.071087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360897.687399998307228, 254201.560899998992682 ], [ 360937.579700000584126, 254156.924499999731779 ], [ 360905.508900001645088, 254135.341600000858307 ], [ 360900.622400000691414, 254141.0011 ], [ 360892.503600001335144, 254147.47859999909997 ], [ 360867.385600000619888, 254161.627399999648333 ], [ 360865.756800003349781, 254163.513900000602007 ], [ 360865.728000000119209, 254166.891100000590086 ], [ 360866.519900001585484, 254168.586399998515844 ], [ 360897.687399998307228, 254201.560899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90948453, "LATITUDE": 18.31660787, "OBJECTID_1": 37223, "PARCEL_NO_": "107403030500", "Tax_Legal_": "FRENCHMAN'S BAY 15-24 FRENCHMAN'S BAY QTR.", "Name": "WATSON FAMILY TRUST", "Address": "7513 Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87000, "Improved_V": 373900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.24346976000001, "SHAPE_Area": 3089.9435313 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361058.648900002241135, 254143.561099998652935 ], [ 361080.76349999755621, 254197.993099998682737 ], [ 361098.497000001370907, 254198.771499998867512 ], [ 361113.786300003528595, 254202.485199999064207 ], [ 361106.732699997723103, 254178.573899999260902 ], [ 361115.071000002324581, 254146.344900000840425 ], [ 361112.052500002086163, 254122.044399999082088 ], [ 361057.099200002849102, 254136.160100001841784 ], [ 361058.648900002241135, 254143.561099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404027500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90136307, "LATITUDE": 18.31665098, "OBJECTID_1": 37375, "PARCEL_NO_": "107404027500", "Tax_Legal_": "EST. FRENCHMAN'S BAY 21-18 FRENCHMANS BAY QTR.", "Name": "VSLY INC", "Address": "322 Buchanan St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 77800, "Improved_V": 270400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.52133771300001, "SHAPE_Area": 2309.6271766499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361969.5337999984622, 254180.147100001573563 ], [ 361977.037000000476837, 254151.288699999451637 ], [ 361955.30969999730587, 254146.044599998742342 ], [ 361910.060900002717972, 254156.862300001084805 ], [ 361910.042900003492832, 254158.973000001162291 ], [ 361918.870999999344349, 254163.900499999523163 ], [ 361926.856799997389317, 254173.04280000180006 ], [ 361930.803900003433228, 254182.996500000357628 ], [ 361931.498700000345707, 254196.089999999850988 ], [ 361941.17620000243187, 254195.958099998533726 ], [ 361962.860299997031689, 254206.268100000917912 ], [ 361969.5337999984622, 254180.147100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403030600", "MAP": null, "PARCEL_NAM": "15-23", "ACRE": null, "LONGITUDE": -64.90988155, "LATITUDE": 18.31673202, "OBJECTID_1": 37224, "PARCEL_NO_": "107403030600", "Tax_Legal_": "FRENHCMAN'S BAY 15-23 FRENCHMAN'S BAY QTR.", "Name": "WATSON FAMILY TRUST", "Address": "7513 Frenchman S Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.37176073000001, "SHAPE_Area": 2357.966044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361024.321599997580051, 254197.531100001186132 ], [ 361047.713699996471405, 254196.667100001126528 ], [ 361080.76349999755621, 254197.993099998682737 ], [ 361058.648900002241135, 254143.561099998652935 ], [ 361049.78660000115633, 254142.644099999219179 ], [ 361045.746100001037121, 254143.666499998420477 ], [ 361044.900200001895428, 254148.303700000047684 ], [ 361039.255999997258186, 254148.257500000298023 ], [ 361038.487499997019768, 254143.818199999630451 ], [ 361036.891000002622604, 254141.905299998819828 ], [ 361028.824299998581409, 254142.261500000953674 ], [ 361024.57880000025034, 254167.346900001168251 ], [ 361024.321599997580051, 254197.531100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403038500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91213175, "LATITUDE": 18.31648889, "OBJECTID_1": 37268, "PARCEL_NO_": "107403038500", "Tax_Legal_": "15-1-B FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "SALTY SWAY, LLC", "Address": "PO BOX 662", "City": "Greenwood", "State": "Indiana", "Zip": 46143, "Country": "United States", "Land_Value": 110500, "Improved_V": 689500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.51492102399999, "SHAPE_Area": 3111.3927893499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360843.162100002169609, 254165.439899999648333 ], [ 360829.713699996471405, 254134.932300001382828 ], [ 360833.125900000333786, 254113.006499998271465 ], [ 360828.255699999630451, 254116.766399998217821 ], [ 360823.41780000180006, 254116.726799998432398 ], [ 360821.812399998307228, 254115.869199998676777 ], [ 360821.022299997508526, 254113.962900001555681 ], [ 360817.824000000953674, 254110.770399998873472 ], [ 360815.4121999964118, 254109.906199999153614 ], [ 360806.546400003135204, 254109.411499999463558 ], [ 360800.895000003278255, 254110.209600001573563 ], [ 360796.091300003230572, 254106.159499999135733 ], [ 360790.44709999859333, 254106.113299999386072 ], [ 360788.802100002765656, 254109.899500001221895 ], [ 360788.685300000011921, 254123.619699999690056 ], [ 360787.851999998092651, 254126.77930000051856 ], [ 360783.777199998497963, 254131.812100000679493 ], [ 360781.349299997091293, 254132.847699999809265 ], [ 360774.085299998521805, 254133.632699999958277 ], [ 360774.069099999964237, 254135.532400000840425 ], [ 360769.171899996697903, 254142.458399999886751 ], [ 360762.681900002062321, 254147.049300000071526 ], [ 360786.097300000488758, 254143.441300000995398 ], [ 360806.028499998152256, 254170.202199999243021 ], [ 360802.684600003063679, 254184.10700000077486 ], [ 360809.871299996972084, 254192.398499999195337 ], [ 360812.308200001716614, 254190.307500001043081 ], [ 360818.018899999558926, 254182.543800000101328 ], [ 360823.704499997198582, 254177.735100001096725 ], [ 360843.162100002169609, 254165.439899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032300", "MAP": "A9-138-T70", "PARCEL_NAM": "77", "ACRE": "0.54", "LONGITUDE": -64.89996393, "LATITUDE": 18.31659827, "OBJECTID_1": 37408, "PARCEL_NO_": "107404032300", "Tax_Legal_": "BOLONGO 77 FRENCHMAN BAY", "Name": "HUGHES, KEVIN & KARNE", "Address": "PO Box 8163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72100, "Improved_V": 273300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.34315945399999, "SHAPE_Area": 2196.2699757599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362134.957299999892712, 254166.302299998700619 ], [ 362102.971000000834465, 254134.798700001090765 ], [ 362097.283600002527237, 254139.818399999290705 ], [ 362062.337099999189377, 254171.829599998891354 ], [ 362086.274700000882149, 254201.578699998557568 ], [ 362096.054799996316433, 254189.415300000458956 ], [ 362107.427599996328354, 254179.587000001221895 ], [ 362116.340199999511242, 254174.593699999153614 ], [ 362123.618600003421307, 254172.120099999010563 ], [ 362134.957299999892712, 254166.302299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90371749000001, "LATITUDE": 18.31660424, "OBJECTID_1": 37346, "PARCEL_NO_": "107404024300", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#33)21-38 FRENCHMANS BAY", "Name": "BENJAMIN, JR., KENNETH R. & RAQUEL", "Address": "PO Box 10374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67400, "Improved_V": 310200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.28118515, "SHAPE_Area": 2525.2812295200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361715.9391999989748, 254131.842099998146296 ], [ 361675.558799996972084, 254139.111000001430511 ], [ 361677.8699000030756, 254151.795499999076128 ], [ 361678.622299998998642, 254158.134399998933077 ], [ 361678.586300000548363, 254162.355999998748302 ], [ 361677.575000002980232, 254186.412399999797344 ], [ 361675.868900001049042, 254197.375300001353025 ], [ 361728.388899996876717, 254184.92850000038743 ], [ 361724.467000000178814, 254172.01969999819994 ], [ 361723.687600001692772, 254168.846900001168251 ], [ 361717.512299999594688, 254136.499000001698732 ], [ 361715.9391999989748, 254131.842099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404028300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90194988, "LATITUDE": 18.31669846, "OBJECTID_1": 37383, "PARCEL_NO_": "107404028300", "Tax_Legal_": "FRENCHMAN'S BAY 21-13 FRENCHMAN'S BAY QTR.", "Name": "CHAMMAH, EZRA", "Address": "6 E 74th St", "City": "New York", "State": "New York", "Zip": 10021, "Country": "United States", "Land_Value": 78700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.30638064499999, "SHAPE_Area": 2416.94228638 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361869.030699998140335, 254145.76069999858737 ], [ 361860.098300002515316, 254153.075800001621246 ], [ 361857.343099996447563, 254192.527800001204014 ], [ 361856.50620000064373, 254196.109499998390675 ], [ 361923.435599997639656, 254196.024000000208616 ], [ 361923.527300000190735, 254185.25899999961257 ], [ 361921.957800000905991, 254180.179900001734495 ], [ 361920.372100003063679, 254177.000500001013279 ], [ 361911.579999998211861, 254167.851599998772144 ], [ 361901.139300003647804, 254162.910999998450279 ], [ 361890.720200002193451, 254155.437399998307228 ], [ 361872.234300002455711, 254148.320000000298023 ], [ 361869.030699998140335, 254145.76069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404041000", "MAP": "D9-5236-T92", "PARCEL_NAM": "107-C", "ACRE": ".519", "LONGITUDE": -64.89910161, "LATITUDE": 18.31661114, "OBJECTID_1": 37467, "PARCEL_NO_": "107404041000", "Tax_Legal_": "BOLONGO BAY ESTATE 107-C No.3 FRENCHMAN'S BAY QTR.", "Name": "JAMES, RICKY J. & TRISHA D", "Address": "P O BOX 50251", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.21866596699999, "SHAPE_Area": 2156.86604979 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362227.679700002074242, 254167.483399998396635 ], [ 362171.440999999642372, 254143.16950000077486 ], [ 362161.670000001788139, 254154.277499999850988 ], [ 362147.055600002408028, 254165.979100000113249 ], [ 362196.788099996745586, 254196.783599998801947 ], [ 362225.219400003552437, 254172.318399999290705 ], [ 362227.679700002074242, 254167.483399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90429756, "LATITUDE": 18.31663384, "OBJECTID_1": 37340, "PARCEL_NO_": "107404023700", "Tax_Legal_": "FRENCHMAN'S BAY (LOT #31) 21-65 FRENCHMAN'S BAY", "Name": "RIVIERE, KEISHA AND TRESON J DACENT", "Address": "1631 Landau Rd", "City": "Jacksonville", "State": "Florida", "Zip": 32225, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.64700166700001, "SHAPE_Area": 2929.6913708799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361667.486699998378754, 254140.100400000810623 ], [ 361601.266599997878075, 254151.590700000524521 ], [ 361605.784400001168251, 254189.202300000935793 ], [ 361669.484899997711182, 254189.512600000947714 ], [ 361670.357699997723103, 254181.709300000220537 ], [ 361671.325900003314018, 254162.718800000846386 ], [ 361669.824699997901917, 254149.618700001388788 ], [ 361667.486699998378754, 254140.100400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404028000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90279073000001, "LATITUDE": 18.31644404, "OBJECTID_1": 37380, "PARCEL_NO_": "107404028000", "Tax_Legal_": "FRENCHMAN'S BAY 21-15 FRENCHMAN'S BAY QTR.", "Name": "SIXTEEN PLUS CORPORATION", "Address": "PO Box 763", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 88900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.70189513099999, "SHAPE_Area": 2300.8631157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361806.364900000393391, 254118.649999998509884 ], [ 361770.896099999547005, 254117.304200001060963 ], [ 361772.417000003159046, 254128.082499999552965 ], [ 361773.147799998521805, 254136.9543999992311 ], [ 361773.930799998342991, 254139.704999998211861 ], [ 361779.459899999201298, 254153.260200001299381 ], [ 361786.599799998104572, 254167.039700001478195 ], [ 361794.574799999594688, 254177.448600001633167 ], [ 361800.975000001490116, 254183.41160000115633 ], [ 361826.911799997091293, 254167.791900001466274 ], [ 361806.364900000393391, 254118.649999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89582456, "LATITUDE": 18.31657673, "OBJECTID_1": 37542, "PARCEL_NO_": "107503012600", "Tax_Legal_": "BOLONGO 16 FRENCHMAN BAY QTR", "Name": "DALMIDA, ANNETTE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34200, "Improved_V": 102200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.171050428, "SHAPE_Area": 2023.93489675 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362567.061700001358986, 254179.127000000327826 ], [ 362567.20380000025034, 254162.451799999922514 ], [ 362568.886500000953674, 254154.232900001108646 ], [ 362570.527900002896786, 254150.86879999935627 ], [ 362526.157399997115135, 254153.249899998307228 ], [ 362502.761699996888638, 254154.536100000143051 ], [ 362502.470399998128414, 254188.730799999088049 ], [ 362567.061700001358986, 254179.127000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91066466, "LATITUDE": 18.31644719, "OBJECTID_1": 37231, "PARCEL_NO_": "107403031300", "Tax_Legal_": "FRENCHMAN BAY 15-14 FRENCHMAN BAY QTR", "Name": "KHALIL, FARIS M. & AMAL A. (TRUSTEES)", "Address": "PO Box 301800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54000, "Improved_V": 272600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.53118290800001, "SHAPE_Area": 1826.5827275500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360990.121299996972084, 254141.944699998944998 ], [ 360967.889799997210503, 254101.232799999415874 ], [ 360937.579700000584126, 254156.924499999731779 ], [ 360972.944200001657009, 254170.512899998575449 ], [ 360976.223399996757507, 254164.206900000572205 ], [ 360978.672899998724461, 254160.638300001621246 ], [ 360982.79619999974966, 254149.906300000846386 ], [ 360987.688000001013279, 254143.613600000739098 ], [ 360990.121299996972084, 254141.944699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91171428, "LATITUDE": 18.31639359, "OBJECTID_1": 37239, "PARCEL_NO_": "107403032100", "Tax_Legal_": "EST. FRENCHMAN'S BAY 15-2 FRENCHMAN'S BAY QTR.", "Name": "SIESTA MAN REALTY LLC", "Address": "6501 red hook plaza", "City": "st. thomas", "State": "U.S.Virgin Islands", "Zip": 8020000, "Country": "United States", "Land_Value": 85000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.4059071, "SHAPE_Area": 2042.65891829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360888.545699998736382, 254138.791299998760223 ], [ 360858.191799998283386, 254104.978999998420477 ], [ 360849.275600001215935, 254110.394499998539686 ], [ 360833.125900000333786, 254113.006499998271465 ], [ 360829.713699996471405, 254134.932300001382828 ], [ 360843.162100002169609, 254165.439899999648333 ], [ 360852.076399996876717, 254160.235500000417233 ], [ 360886.92230000346899, 254140.044599998742342 ], [ 360888.545699998736382, 254138.791299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503011800", "MAP": "D9-385-T63", "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.89691088, "LATITUDE": 18.3164507, "OBJECTID_1": 37534, "PARCEL_NO_": "107503011800", "Tax_Legal_": "BOLONGO 12A FRENCHMAN BAY QTR", "Name": "MATTHIAS, FRANCISCO", "Address": "P.O.BOX 4333", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33500, "Improved_V": 256900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.84227120099999, "SHAPE_Area": 1560.39486177 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362453.618000000715256, 254149.2787000015378 ], [ 362401.346000000834465, 254132.053399998694658 ], [ 362398.093900002539158, 254135.736400000751019 ], [ 362394.024599999189377, 254140.136100001633167 ], [ 362392.35980000346899, 254146.244199998676777 ], [ 362395.455600000917912, 254161.468299999833107 ], [ 362431.615599997341633, 254176.329700000584126 ], [ 362437.333499997854233, 254167.721599999815226 ], [ 362453.618000000715256, 254149.2787000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032200", "MAP": "A9-138-T70", "PARCEL_NAM": "80", "ACRE": "0.50", "LONGITUDE": -64.90025567000001, "LATITUDE": 18.31634287, "OBJECTID_1": 37407, "PARCEL_NO_": "107404032200", "Tax_Legal_": "BOLONGO 80 FRENCHMAN BAY QTR", "Name": "JOSEPH, GEORGE & CHRISTOBEL", "Address": "PO Box 10932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58200, "Improved_V": 248700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.31608357499999, "SHAPE_Area": 2065.6353816199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362097.283600002527237, 254139.818399999290705 ], [ 362066.134199999272823, 254104.732999999076128 ], [ 362049.048699997365475, 254122.536100000143051 ], [ 362040.062399998307228, 254136.183600001037121 ], [ 362037.598499998450279, 254141.440799999982119 ], [ 362062.337099999189377, 254171.829599998891354 ], [ 362097.283600002527237, 254139.818399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404028200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90243122, "LATITUDE": 18.3163079, "OBJECTID_1": 37382, "PARCEL_NO_": "107404028200", "Tax_Legal_": "FRENCHMAN'S BAY 21-16 GREEN KEY", "Name": "WARREN, ALGER & VELVEN D. SAMUEL", "Address": "7-5 Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.62245742299999, "SHAPE_Area": 2445.9664710299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361841.2449000030756, 254094.448600001633167 ], [ 361806.364900000393391, 254118.649999998509884 ], [ 361826.911799997091293, 254167.791900001466274 ], [ 361860.098300002515316, 254153.075800001621246 ], [ 361869.030699998140335, 254145.76069999858737 ], [ 361863.424300000071526, 254141.281800001859665 ], [ 361860.24040000140667, 254136.400600001215935 ], [ 361841.2449000030756, 254094.448600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91094116, "LATITUDE": 18.31624412, "OBJECTID_1": 37230, "PARCEL_NO_": "107403031200", "Tax_Legal_": "FRENCHMAN BAY 15-17 FRENCHMAN'S BAY QTR.", "Name": "WEBSTER, ROY M and CHERRY", "Address": "PO BOX 9472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61700, "Improved_V": 237200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.047860394, "SHAPE_Area": 2440.7709265100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360967.889799997210503, 254101.232799999415874 ], [ 360931.781999997794628, 254080.250100001692772 ], [ 360910.402500003576279, 254128.837699998170137 ], [ 360907.954800002276897, 254132.195199999958277 ], [ 360905.508900001645088, 254135.341600000858307 ], [ 360937.579700000584126, 254156.924499999731779 ], [ 360967.889799997210503, 254101.232799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404040900", "MAP": "D9-5236-T92", "PARCEL_NAM": "107-B", "ACRE": ".519", "LONGITUDE": -64.89887999, "LATITUDE": 18.31635032, "OBJECTID_1": 37466, "PARCEL_NO_": "107404040900", "Tax_Legal_": "BOLONGO ESTATE 107-B No.3 FRENCHMAN'S BAY QTR.", "Name": "GIBSON, CALVERT W. & CARMINA H", "Address": "PO Box 502025", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.276507718, "SHAPE_Area": 2091.677975 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362244.124200001358986, 254130.254399999976158 ], [ 362198.277699999511242, 254116.580299999564886 ], [ 362193.384099997580051, 254123.084100000560284 ], [ 362181.208499997854233, 254132.48369999974966 ], [ 362171.440999999642372, 254143.16950000077486 ], [ 362227.679700002074242, 254167.483399998396635 ], [ 362242.421700000762939, 254140.795099999755621 ], [ 362244.124200001358986, 254130.254399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032700", "MAP": "A9-138-T70", "PARCEL_NAM": "76", "ACRE": "0.58", "LONGITUDE": -64.89957426, "LATITUDE": 18.31630509, "OBJECTID_1": 37412, "PARCEL_NO_": "107404032700", "Tax_Legal_": "76 ESTATE BOLONGO FRENCHMAN BAY QTR", "Name": "PICKERING, LAVERNE", "Address": "PO Box 11697", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69500, "Improved_V": 316900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.60148366799999, "SHAPE_Area": 2294.6494603199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362173.957000002264977, 254131.79109999909997 ], [ 362133.885999999940395, 254102.754399999976158 ], [ 362125.72749999910593, 254113.875599998980761 ], [ 362102.971000000834465, 254134.798700001090765 ], [ 362134.957299999892712, 254166.302299998700619 ], [ 362146.306900002062321, 254159.217999998480082 ], [ 362154.425700001418591, 254152.740600001066923 ], [ 362163.372500002384186, 254143.736800000071526 ], [ 362169.896700002253056, 254135.135299999266863 ], [ 362173.957000002264977, 254131.79109999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107404020200", "MAP": "D9-4983-T90", "PARCEL_NAM": "23", "ACRE": "77.9", "LONGITUDE": -64.9043428, "LATITUDE": 18.31328918, "OBJECTID_1": 37320, "PARCEL_NO_": "107404020200", "Tax_Legal_": "21-73,21-74&23 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SANCTUARY HOLDINGS LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4199100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3508.8157012500001, "SHAPE_Area": 325447.41815799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361871.724200002849102, 253522.489500001072884 ], [ 361871.728200003504753, 253522.5152000002563 ], [ 361871.042400002479553, 253530.0168999992311 ], [ 361872.696000002324581, 253532.66270000115037 ], [ 361876.003300003707409, 253538.285100001841784 ], [ 361878.979900002479553, 253546.553399998694658 ], [ 361876.99549999833107, 253554.490899998694658 ], [ 361877.326300002634525, 253574.334699999541044 ], [ 361877.656999997794628, 253587.563900001347065 ], [ 361876.99549999833107, 253601.454500000923872 ], [ 361876.664800003170967, 253616.998799998313189 ], [ 361873.235399998724461, 253629.551699999719858 ], [ 361873.155699998140335, 253629.579999998211861 ], [ 361868.245300002396107, 253639.644000001251698 ], [ 361859.282300002872944, 253650.547499999403954 ], [ 361838.991400003433228, 253666.002399999648333 ], [ 361827.656300000846386, 253671.397999998182058 ], [ 361818.767099998891354, 253673.647300001233816 ], [ 361804.240900002419949, 253675.006099998950958 ], [ 361790.535400003194809, 253674.682799998670816 ], [ 361770.395499996840954, 253672.407000001519918 ], [ 361760.743199996650219, 253669.583799999207258 ], [ 361755.943099997937679, 253665.111600000411272 ], [ 361749.526699997484684, 253661.048300001770258 ], [ 361745.500600002706051, 253660.382100000977516 ], [ 361740.700400002300739, 253655.909800000488758 ], [ 361728.66330000013113, 253649.05629999935627 ], [ 361720.695500001311302, 253637.803100001066923 ], [ 361710.233199998736382, 253635.395500000566244 ], [ 361707.00789999961853, 253635.369100000709295 ], [ 361702.960199996829033, 253637.235800001770258 ], [ 361700.541299998760223, 253637.215999998152256 ], [ 361698.161899998784065, 253632.552400000393391 ], [ 361697.414899997413158, 253625.580200001597404 ], [ 361691.817500002682209, 253620.046000000089407 ], [ 361682.960600003600121, 253618.495900001376867 ], [ 361678.137100003659725, 253616.767599999904633 ], [ 361676.544299997389317, 253614.432599999010563 ], [ 361673.401799999177456, 253604.69649999961257 ], [ 361673.432300001382828, 253601.108199998736382 ], [ 361671.880800001323223, 253593.918299999088049 ], [ 361672.856200002133846, 253574.083500001579523 ], [ 361671.295699998736382, 253567.949000000953674 ], [ 361668.905500002205372, 253564.552000001072884 ], [ 361663.302699998021126, 253559.651000000536442 ], [ 361660.885600000619888, 253559.420099999755621 ], [ 361659.260399997234344, 253560.884399998933077 ], [ 361657.656700000166893, 253559.815799999982119 ], [ 361654.461999997496605, 253556.201099999248981 ], [ 361652.881800003349781, 253552.3885000012815 ], [ 361648.887999996542931, 253547.922800000756979 ], [ 361647.314900003373623, 253543.265900000929832 ], [ 361640.119199998676777, 253536.029800001531839 ], [ 361635.310099996626377, 253532.613000001758337 ], [ 361631.291199997067451, 253531.102400001138449 ], [ 361626.455099999904633, 253530.851700000464916 ], [ 361622.412699997425079, 253532.085200000554323 ], [ 361619.968599997460842, 253535.020500000566244 ], [ 361615.107400000095367, 253537.725000001490116 ], [ 361609.414599999785423, 253543.377900000661612 ], [ 361606.993900001049042, 253543.569200001657009 ], [ 361600.597300000488758, 253537.184000000357628 ], [ 361594.967500001192093, 253535.449200000613928 ], [ 361590.131499998271465, 253535.198499999940395 ], [ 361589.309000000357628, 253537.091600000858307 ], [ 361585.322400003671646, 253531.781700000166893 ], [ 361571.678000003099442, 253524.281700000166893 ], [ 361567.64639999717474, 253524.248700000345707 ], [ 361565.999600000679493, 253528.245999999344349 ], [ 361564.379799999296665, 253529.077100001275539 ], [ 361561.968099996447563, 253528.212999999523163 ], [ 361559.570699997246265, 253525.660300001502037 ], [ 361558.803999997675419, 253521.009899999946356 ], [ 361554.8496999964118, 253511.900499999523163 ], [ 361548.458599999547005, 253504.882199998944998 ], [ 361544.455799996852875, 253501.471900001168251 ], [ 361539.637699998915195, 253499.110399998724461 ], [ 361534.004299998283386, 253497.797800000756979 ], [ 361522.708700001239777, 253498.549699999392033 ], [ 361508.968999996781349, 253502.236900001764297 ], [ 361499.291500002145767, 253502.36879999935627 ], [ 361489.63910000026226, 253499.5456000007689 ], [ 361473.530799999833107, 253497.302799999713898 ], [ 361451.165500000119209, 253510.029399998486042 ], [ 361463.071699999272823, 253517.966899998486042 ], [ 361469.024899996817112, 253525.904399998486042 ], [ 361453.811300002038479, 253523.920000001788139 ], [ 361444.550899997353554, 253525.242899999022484 ], [ 361433.631300002336502, 253542.783599998801947 ], [ 361433.550399996340275, 253552.2820999994874 ], [ 361427.792900003492832, 253565.533900000154972 ], [ 361422.800399996340275, 253583.647100001573563 ], [ 361418.711300000548363, 253590.368599999696016 ], [ 361417.85639999806881, 253596.061099998652935 ], [ 361416.90089999884367, 253613.574099998921156 ], [ 361417.59570000320673, 253626.667599998414516 ], [ 361414.957400001585484, 253652.399399999529123 ], [ 361417.241499997675419, 253668.250100001692772 ], [ 361419.430200003087521, 253695.287999998778105 ], [ 361416.80629999935627, 253719.331199999898672 ], [ 361412.531999997794628, 253747.793800000101328 ], [ 361398.357100002467632, 253802.562100000679493 ], [ 361376.209100000560284, 253846.710499998182058 ], [ 361345.207800000905991, 253888.886599998921156 ], [ 361323.230599999427795, 253912.982500001788139 ], [ 361298.022699996829033, 253937.685199998319149 ], [ 361271.310099996626377, 253949.71000000089407 ], [ 361257.57940000295639, 253952.34180000051856 ], [ 361246.291000001132488, 253952.249400001019239 ], [ 361235.020599998533726, 253950.04619999974966 ], [ 361229.414200000464916, 253945.567400000989437 ], [ 361215.087600000202656, 253923.496399998664856 ], [ 361209.488300003111362, 253918.173200000077486 ], [ 361199.121399998664856, 253904.578400000929832 ], [ 361195.109600000083447, 253902.223499998450279 ], [ 361190.282499998807907, 253900.917500000447035 ], [ 361181.41669999808073, 253900.422699999064207 ], [ 361170.124700002372265, 253900.752500001341105 ], [ 361162.849899999797344, 253902.803899999707937 ], [ 361128.618699997663498, 254040.156700000166893 ], [ 361125.289099998772144, 254052.372900001704693 ], [ 361116.101400002837181, 254089.661299999803305 ], [ 361110.262999996542931, 254112.41160000115633 ], [ 361276.935900002717972, 254141.2179000005126 ], [ 361399.407300002872944, 254152.563799999654293 ], [ 361568.99719999730587, 254058.656500000506639 ], [ 361548.989900000393391, 253954.512200001627207 ], [ 361546.752599999308586, 253933.17339999973774 ], [ 361546.779500000178814, 253930.007199998944998 ], [ 361547.643399998545647, 253923.259300000965595 ], [ 361548.469499997794628, 253920.943999998271465 ], [ 361549.108900003135204, 253919.840199999511242 ], [ 361555.026100002229214, 253908.543200001120567 ], [ 361561.534100003540516, 253901.841499999165535 ], [ 361572.883599996566772, 253894.757199998944998 ], [ 361580.160199999809265, 253892.494699999690056 ], [ 361587.42059999704361, 253892.131900001317263 ], [ 361613.9966000020504, 253896.149099998176098 ], [ 361638.976099997758865, 253898.253400001674891 ], [ 361660.435300000011921, 253926.627099998295307 ], [ 361701.47919999808073, 253905.734700001776218 ], [ 361745.133400000631809, 253892.793099999427795 ], [ 361794.343599997460842, 253890.240499999374151 ], [ 361820.14919999986887, 253890.029500000178814 ], [ 361841.088100001215935, 253893.156199999153614 ], [ 361854.752300001680851, 253898.334300000220537 ], [ 362063.401299998164177, 253827.214699998497963 ], [ 362074.223200000822544, 253787.406599998474121 ], [ 362095.055299997329712, 253708.416999999433756 ], [ 362095.130800001323223, 253708.387200001627207 ], [ 362174.687799997627735, 253457.116300001740456 ], [ 362159.414499998092651, 253468.477800000458956 ], [ 362159.340999998152256, 253468.751600001007318 ], [ 362159.184299997985363, 253468.720800001174212 ], [ 362148.712099999189377, 253475.150699999183416 ], [ 362130.51519999653101, 253486.698699999600649 ], [ 362113.368100002408028, 253497.197000000625849 ], [ 362096.920800000429153, 253504.545699998736382 ], [ 362072.597199998795986, 253512.759899999946356 ], [ 362072.531099997460842, 253512.760200001299381 ], [ 362058.789599999785423, 253516.658300001174212 ], [ 362050.715700000524521, 253517.858800001442432 ], [ 362021.697400003671646, 253516.565799999982119 ], [ 362003.193599998950958, 253511.559300001710653 ], [ 361998.38629999756813, 253507.93129999935627 ], [ 361984.797700002789497, 253493.887899998575449 ], [ 361975.19030000269413, 253485.78770000115037 ], [ 361944.697800002992153, 253468.228500001132488 ], [ 361919.774099998176098, 253459.580800000578165 ], [ 361906.059600003063679, 253460.312899999320507 ], [ 361902.816299997270107, 253462.397300001233816 ], [ 361898.712899997830391, 253470.807399999350309 ], [ 361899.404100000858307, 253484.323100000619888 ], [ 361896.931199997663498, 253490.63569999858737 ], [ 361888.758400000631809, 253503.445500001311302 ], [ 361884.631499998271465, 253514.599700000137091 ], [ 361882.181999996304512, 253518.168200001120567 ], [ 361871.724200002849102, 253522.489500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503011900", "MAP": "D9-8047-T007", "PARCEL_NAM": "9", "ACRE": "1.08", "LONGITUDE": -64.89733911, "LATITUDE": 18.31612381, "OBJECTID_1": 37535, "PARCEL_NO_": "107503011900", "Tax_Legal_": "BOLONGO 9 FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78800, "Improved_V": 51000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.370679709, "SHAPE_Area": 3828.7259161500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362419.383500002324581, 254097.702799998223782 ], [ 362353.391800001263618, 254082.386100001633167 ], [ 362341.012999996542931, 254115.637600000947714 ], [ 362334.452799998223782, 254128.46059999987483 ], [ 362333.617700003087521, 254131.831199999898672 ], [ 362331.170000001788139, 254135.188700001686811 ], [ 362389.030299998819828, 254158.460400000214577 ], [ 362386.744400002062321, 254142.820700000971556 ], [ 362388.400200001895428, 254137.76799999922514 ], [ 362391.666799999773502, 254132.939599998295307 ], [ 362401.421700000762939, 254123.731300000101328 ], [ 362411.147799998521805, 254117.900299999862909 ], [ 362418.422600001096725, 254115.848900001496077 ], [ 362420.857699997723103, 254113.969000000506639 ], [ 362420.924199998378754, 254106.159099999815226 ], [ 362419.383500002324581, 254097.702799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89609688, "LATITUDE": 18.31621696, "OBJECTID_1": 37541, "PARCEL_NO_": "107503012500", "Tax_Legal_": "BOLONGO 15A FRENCHMAN BAY QTR", "Name": "RAYMOND, VIVIAN C", "Address": "1611 Pilchard Ct", "City": "Kissimmee", "State": "Florida", "Zip": 34759, "Country": "United States", "Land_Value": 38900, "Improved_V": 53100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.70701511199999, "SHAPE_Area": 3016.1612044100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362541.12950000166893, 254099.543600000441074 ], [ 362538.710600003600121, 254099.523800000548363 ], [ 362495.185900002717972, 254097.267700001597404 ], [ 362489.415799997746944, 254111.997000001370907 ], [ 362487.787000000476837, 254113.883499998599291 ], [ 362484.493400000035763, 254121.878100000321865 ], [ 362482.855599999427795, 254124.820000000298023 ], [ 362481.230400003492832, 254126.284400001168251 ], [ 362479.583599999547005, 254130.281700000166893 ], [ 362468.158600002527237, 254146.231300000101328 ], [ 362459.202899999916553, 254156.290500000119209 ], [ 362480.980499997735023, 254155.624299999326468 ], [ 362502.761699996888638, 254154.536100000143051 ], [ 362526.157399997115135, 254153.249899998307228 ], [ 362541.12950000166893, 254099.543600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90438313, "LATITUDE": 18.31621315, "OBJECTID_1": 37341, "PARCEL_NO_": "107404023800", "Tax_Legal_": "21-64(LOT#42)FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "WASSELL, KAREN", "Address": "206 4th St", "City": "Beach Haven", "State": "New Jersey", "Zip": 8008, "Country": "United States", "Land_Value": 69100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.62887377300001, "SHAPE_Area": 2922.287734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361666.709200002253056, 254136.716499999165535 ], [ 361664.401699997484684, 254123.6097999997437 ], [ 361661.253799997270107, 254114.506999999284744 ], [ 361661.273599997162819, 254112.185199998319149 ], [ 361657.360699996352196, 254098.221000000834465 ], [ 361655.776799999177456, 254094.83049999922514 ], [ 361596.059399999678135, 254100.252399999648333 ], [ 361601.291799999773502, 254148.635600000619888 ], [ 361666.709200002253056, 254136.716499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404027200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9019083, "LATITUDE": 18.31617938, "OBJECTID_1": 37372, "PARCEL_NO_": "107404027200", "Tax_Legal_": "FRENHCMAN'S BAY 21-21 FRENCHMAN'S BAY QTR.", "Name": "DURAN, JOANTHAN &, HEWLETT,BRUCE", "Address": "5000 Estate Enighed", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 76100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.53055043699999, "SHAPE_Area": 2330.1373782800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361906.884199999272823, 254151.136700000613928 ], [ 361906.1587999984622, 254141.631599999964237 ], [ 361913.638599999248981, 254115.517200000584126 ], [ 361920.360600002110004, 254083.69709999859333 ], [ 361890.406599998474121, 254097.595199998468161 ], [ 361857.232699997723103, 254110.833700001239777 ], [ 361866.726800002157688, 254132.231800001114607 ], [ 361869.910700000822544, 254137.113000001758337 ], [ 361875.518899999558926, 254141.380800001323223 ], [ 361891.596600003540516, 254147.211899999529123 ], [ 361896.409299999475479, 254150.206599999219179 ], [ 361906.884199999272823, 254151.136700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404027300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90151535, "LATITUDE": 18.31614339, "OBJECTID_1": 37373, "PARCEL_NO_": "107404027300", "Tax_Legal_": "21-20 ESTATE FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "JAMES, SHARAZAD A. & M. & PAUL V", "Address": "19410 NW 18th Ct", "City": "Opa Locka", "State": "Florida", "Zip": 33056, "Country": "United States", "Land_Value": 77800, "Improved_V": 574600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.92166831899999, "SHAPE_Area": 2596.2577676699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361953.03999999910593, 254128.505300000309944 ], [ 361957.478000000119209, 254080.834499999880791 ], [ 361920.360600002110004, 254083.69709999859333 ], [ 361913.638599999248981, 254115.517200000584126 ], [ 361906.1587999984622, 254141.631599999964237 ], [ 361906.884199999272823, 254151.136700000613928 ], [ 361921.419399999082088, 254148.722600001841784 ], [ 361923.843699999153614, 254148.109099999070168 ], [ 361934.349200002849102, 254145.450899999588728 ], [ 361945.682499997317791, 254140.26630000025034 ], [ 361948.112199999392033, 254139.019600000232458 ], [ 361952.998700000345707, 254133.360100001096725 ], [ 361953.03999999910593, 254128.505300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404027400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90114049, "LATITUDE": 18.31607305, "OBJECTID_1": 37374, "PARCEL_NO_": "107404027400", "Tax_Legal_": "21-19 FRENHCMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "CHANCE, DENNIS H. & CHERYL G", "Address": "PO Box 1503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 76800, "Improved_V": 417000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.04668074099999, "SHAPE_Area": 2383.1560136899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361953.03999999910593, 254128.505300000309944 ], [ 361957.053599998354912, 254130.649099998176098 ], [ 361955.30969999730587, 254146.044599998742342 ], [ 361977.037000000476837, 254151.288699999451637 ], [ 361982.042099997401237, 254131.697999998927116 ], [ 361997.852899998426437, 254074.198800001293421 ], [ 361976.913999997079372, 254071.072200000286102 ], [ 361957.478000000119209, 254080.834499999880791 ], [ 361953.03999999910593, 254128.505300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91029266, "LATITUDE": 18.31619786, "OBJECTID_1": 37232, "PARCEL_NO_": "107403031400", "Tax_Legal_": "FRENCHMAN'S BAY 15-13 FRENCHMAN'S ABY", "Name": "HERMANN, MARIE J", "Address": "PO Box 308145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61700, "Improved_V": 215100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.86148810500001, "SHAPE_Area": 2572.0864624000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360978.452799998223782, 254091.820000000298023 ], [ 360967.889799997210503, 254101.232799999415874 ], [ 360990.121299996972084, 254141.944699998944998 ], [ 360992.55460000038147, 254140.27589999884367 ], [ 361013.567299999296665, 254134.7483000010252 ], [ 361026.479099996387959, 254133.587499998509884 ], [ 361036.156599998474121, 254133.455600000917912 ], [ 361036.478500001132488, 254095.672499999403954 ], [ 360991.357400000095367, 254091.503499999642372 ], [ 360978.452799998223782, 254091.820000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89565103, "LATITUDE": 18.31620662, "OBJECTID_1": 37540, "PARCEL_NO_": "107503012400", "Tax_Legal_": "15 BOLONGO NO.3 FRENCHMAN'S BAY QTR", "Name": "RAYMOND, KEVIN & KATHERINE M. SMOTHERS", "Address": "16A Estate Bolongo", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.54394496800001, "SHAPE_Area": 2020.189421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362572.563100002706051, 254101.278499998152256 ], [ 362541.12950000166893, 254099.543600000441074 ], [ 362526.157399997115135, 254153.249899998307228 ], [ 362570.527900002896786, 254150.86879999935627 ], [ 362573.096100002527237, 254133.369100000709295 ], [ 362574.040899999439716, 254117.122600000351667 ], [ 362572.563100002706051, 254101.278499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403032200", "MAP": "A9-73-T67", "PARCEL_NAM": "15-3", "ACRE": null, "LONGITUDE": -64.91141685, "LATITUDE": 18.31606297, "OBJECTID_1": 37240, "PARCEL_NO_": "107403032200", "Tax_Legal_": "FRENCHMAN'S BAY 15-3 FRENCHMAN'S BAY QTR.", "Name": "THELEN, PATRICK A", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107700, "Improved_V": 215100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.55131219899999, "SHAPE_Area": 2376.6497927199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360878.992299996316433, 254038.233500000089407 ], [ 360873.288000002503395, 254036.708299998193979 ], [ 360869.229500003159046, 254039.841499999165535 ], [ 360868.403399996459484, 254042.156700000166893 ], [ 360869.179099999368191, 254045.7516999989748 ], [ 360874.013400003314018, 254046.21339999884367 ], [ 360874.807099997997284, 254047.697599999606609 ], [ 360872.318099997937679, 254055.909800000488758 ], [ 360871.495600000023842, 254057.802999999374151 ], [ 360873.693300001323223, 254083.785500001162291 ], [ 360872.037500001490116, 254088.838100001215935 ], [ 360867.939400002360344, 254096.615100000053644 ], [ 360861.425999999046326, 254103.949999999254942 ], [ 360858.191799998283386, 254104.978999998420477 ], [ 360888.545699998736382, 254138.791299998760223 ], [ 360895.044799998402596, 254133.144999999552965 ], [ 360897.485299997031689, 254130.631900001317263 ], [ 360902.377099998295307, 254124.339099999517202 ], [ 360917.621299996972084, 254089.937199998646975 ], [ 360904.551100000739098, 254088.874899998307228 ], [ 360892.803599998354912, 254082.842399999499321 ], [ 360890.898599997162819, 254080.778599999845028 ], [ 360885.659800000488758, 254066.332299999892712 ], [ 360879.785999998450279, 254064.1097999997437 ], [ 360879.603900000452995, 254058.171500001102686 ], [ 360878.992299996316433, 254038.233500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012000", "MAP": "D9-9307-T018", "PARCEL_NAM": "13A", "ACRE": "0.51", "LONGITUDE": -64.89669987000001, "LATITUDE": 18.31621288, "OBJECTID_1": 37536, "PARCEL_NO_": "107503012000", "Tax_Legal_": "13A REMAINDER & 13-1 BOLONGO FRENCHMAN BAY QTR", "Name": "MARK AND PATRICIA BORDEN FAMILY TRUST", "Address": "PO Box 503178", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053178, "Country": "United States", "Land_Value": 37500, "Improved_V": 164000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.96174971799999, "SHAPE_Area": 1730.56901148 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362401.346000000834465, 254132.053399998694658 ], [ 362453.618000000715256, 254149.2787000015378 ], [ 362464.209799997508526, 254136.488699998706579 ], [ 362465.851199999451637, 254133.124600000679493 ], [ 362467.472800001502037, 254132.082400001585484 ], [ 362468.300700001418591, 254129.556099999696016 ], [ 362474.013199999928474, 254121.581300001591444 ], [ 362472.458099998533726, 254114.813499998301268 ], [ 362426.563000001013279, 254106.838500000536442 ], [ 362426.500100001692772, 254114.226300001144409 ], [ 362424.847900003194809, 254118.856800001114607 ], [ 362421.602899998426437, 254121.152300000190735 ], [ 362415.946099996566772, 254122.583700001239777 ], [ 362408.658699996769428, 254126.11259999871254 ], [ 362402.165100000798702, 254131.125700000673532 ], [ 362401.346000000834465, 254132.053399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90964641, "LATITUDE": 18.31617377, "OBJECTID_1": 37233, "PARCEL_NO_": "107403031500", "Tax_Legal_": "FRENCHMAN'S BAY 15-12 FRENCHMAN'S BAY QTR.", "Name": "TRISTAN M HERMANN 2005 TRUST", "Address": "PO Box 308145", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64200, "Improved_V": 221300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.861657751, "SHAPE_Area": 2867.48179003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361036.156599998474121, 254133.455600000917912 ], [ 361044.221600003540516, 254133.310499999672174 ], [ 361057.11540000140667, 254134.260400000959635 ], [ 361057.099200002849102, 254136.160100001841784 ], [ 361112.052500002086163, 254122.044399999082088 ], [ 361110.522600002586842, 254112.321600001305342 ], [ 361116.361000001430511, 254089.571299999952316 ], [ 361036.478500001132488, 254095.672499999403954 ], [ 361036.156599998474121, 254133.455600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032400", "MAP": "A9-138-T70", "PARCEL_NAM": "89", "ACRE": "0.50", "LONGITUDE": -64.90066745, "LATITUDE": 18.31597735, "OBJECTID_1": 37409, "PARCEL_NO_": "107404032400", "Tax_Legal_": "89 BOLONGO FRENCHMAN BAY QTR", "Name": "THOMAS, LAUREL", "Address": "PO Box 7071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72800, "Improved_V": 486000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.53159967100001, "SHAPE_Area": 2460.3346983599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361989.0033999979496, 254106.381900001317263 ], [ 362038.83110000193119, 254126.719799999147654 ], [ 362041.795500002801418, 254122.054499998688698 ], [ 362049.127899996936321, 254113.248599998652935 ], [ 362050.747699998319149, 254112.417500000447035 ], [ 362063.767399996519089, 254098.591899998486042 ], [ 362039.694899998605251, 254084.673799999058247 ], [ 362000.345600001513958, 254065.564399998635054 ], [ 361997.852899998426437, 254074.198800001293421 ], [ 361989.0033999979496, 254106.381900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032600", "MAP": "A9-138-T70", "PARCEL_NAM": "81", "ACRE": "0.50", "LONGITUDE": -64.8999485, "LATITUDE": 18.31604774, "OBJECTID_1": 37411, "PARCEL_NO_": "107404032600", "Tax_Legal_": "BOLONGO 81 FRENCHMAN BAY QTR", "Name": "BETTY MANN REVOCABLE LIVING TRUST", "Address": "PO Box 10722", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69500, "Improved_V": 464000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.25706604199999, "SHAPE_Area": 2281.2901038300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362133.885999999940395, 254102.754399999976158 ], [ 362089.783299997448921, 254073.68470000103116 ], [ 362079.166400000452995, 254089.429800000041723 ], [ 362077.544799998402596, 254090.471999999135733 ], [ 362074.276399999856949, 254095.511500000953674 ], [ 362066.134199999272823, 254104.732999999076128 ], [ 362097.283600002527237, 254139.818399999290705 ], [ 362102.971000000834465, 254134.798700001090765 ], [ 362125.72749999910593, 254113.875599998980761 ], [ 362133.885999999940395, 254102.754399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90381933, "LATITUDE": 18.31606296, "OBJECTID_1": 37345, "PARCEL_NO_": "107404024200", "Tax_Legal_": "FRENCHMAN'S BAY 21-37 (LOT#32) FRENCHMAN'S BAY QTR.", "Name": "DANIEL, WILLMOUR & GAYON", "Address": "5290 NW 112th Way", "City": "CORAL SPRINGS", "State": "Florida", "Zip": 33076, "Country": "United States", "Land_Value": 74200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.75073110299999, "SHAPE_Area": 2576.6011438700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361713.134700000286102, 254082.423200000077486 ], [ 361659.181900002062321, 254073.749000001698732 ], [ 361674.781300000846386, 254135.727099999785423 ], [ 361715.955399997532368, 254129.942400000989437 ], [ 361714.48480000346899, 254113.253899998962879 ], [ 361713.781000003218651, 254101.215900000184774 ], [ 361713.134700000286102, 254082.423200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032900", "MAP": "A9-138-T70", "PARCEL_NAM": "75", "ACRE": "0.50", "LONGITUDE": -64.89927925000001, "LATITUDE": 18.3160104, "OBJECTID_1": 37414, "PARCEL_NO_": "107404032900", "Tax_Legal_": "BOLONGO 75 FRENCHMAN BAY QTR", "Name": "DEWINDT, RAYMOND", "Address": "PO Box 302434", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.640042857, "SHAPE_Area": 2123.8475910799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362203.347499996423721, 254089.390700001269579 ], [ 362150.208200000226498, 254079.878800000995398 ], [ 362133.885999999940395, 254102.754399999976158 ], [ 362173.957000002264977, 254131.79109999909997 ], [ 362180.46509999781847, 254125.089299999177456 ], [ 362188.578599996864796, 254119.245099999010563 ], [ 362193.465000003576279, 254113.58559999987483 ], [ 362196.735200002789497, 254108.33500000089407 ], [ 362203.347499996423721, 254089.390700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90332624, "LATITUDE": 18.31597493, "OBJECTID_1": 37368, "PARCEL_NO_": "107404026800", "Tax_Legal_": "FRENCHMAN'S BAY(LOT#18) 21-25 FRENCHMANS BAY", "Name": "ROSSI, SONIA ESTHER", "Address": "2107 Legends Way", "City": "Katy", "State": "Texas", "Zip": 774933008, "Country": "United States", "Land_Value": 85500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.587271888, "SHAPE_Area": 2430.3905591299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361771.963200002908707, 254086.7043999992311 ], [ 361726.2550999969244, 254056.777199998497963 ], [ 361724.619099996984005, 254059.508000001311302 ], [ 361722.952500000596046, 254065.827199999243021 ], [ 361722.104900002479553, 254070.675400000065565 ], [ 361720.378899998962879, 254083.960200000554323 ], [ 361720.973099999129772, 254108.874099999666214 ], [ 361723.24099999666214, 254126.624499998986721 ], [ 361764.427599996328354, 254119.362199999392033 ], [ 361763.695000000298023, 254110.701400000602007 ], [ 361764.539099998772144, 254106.275299999862909 ], [ 361767.035400003194809, 254097.218699999153614 ], [ 361768.689400002360344, 254092.377099998295307 ], [ 361770.330799996852875, 254089.013099998235703 ], [ 361771.963200002908707, 254086.7043999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503018200", "MAP": null, "PARCEL_NAM": "107-A", "ACRE": null, "LONGITUDE": -64.89875651, "LATITUDE": 18.31599113, "OBJECTID_1": 37590, "PARCEL_NO_": "107503018200", "Tax_Legal_": "EST. BOLONGO 107A FRENCHMAN'S BAY QTR.", "Name": "CLAXTON, WENDELL & MYRLA", "Address": "PO Box 306292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.369308843, "SHAPE_Area": 1845.3047176 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362247.543700002133846, 254107.484299998730421 ], [ 362234.043099999427795, 254083.098000001162291 ], [ 362231.64580000191927, 254080.545299999415874 ], [ 362229.273599997162819, 254075.037399999797344 ], [ 362227.675399996340275, 254073.33559999987483 ], [ 362225.299599997699261, 254068.249899998307228 ], [ 362223.740900002419949, 254061.904399998486042 ], [ 362222.140900000929832, 254060.413600001484156 ], [ 362219.723700001835823, 254060.182700000703335 ], [ 362217.284999996423721, 254062.4847999997437 ], [ 362208.971900001168251, 254091.758799999952316 ], [ 362200.719999998807907, 254113.856100000441074 ], [ 362198.277699999511242, 254116.580299999564886 ], [ 362244.124200001358986, 254130.254399999976158 ], [ 362247.543700002133846, 254107.484299998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404028100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90273051, "LATITUDE": 18.31597388, "OBJECTID_1": 37381, "PARCEL_NO_": "107404028100", "Tax_Legal_": "FRENCHMAN'S BAY 21-17 FRENCHMAN'S BAY QTR.", "Name": "SIXTEEN PLUS CORPORATION", "Address": "PO Box 763", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 84600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.15172106899999, "SHAPE_Area": 2299.2440843999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361770.896099999547005, 254117.304200001060963 ], [ 361806.364900000393391, 254118.649999998509884 ], [ 361841.2449000030756, 254094.448600001633167 ], [ 361836.496899999678135, 254083.855099998414516 ], [ 361834.909500002861023, 254080.886799998581409 ], [ 361830.109399996697903, 254076.414500001817942 ], [ 361827.706600002944469, 254074.495000001043081 ], [ 361819.66330000013113, 254072.107200000435114 ], [ 361809.188400000333786, 254071.177099999040365 ], [ 361797.066699996590614, 254074.244300000369549 ], [ 361790.58389999717474, 254077.990899998694658 ], [ 361788.152400001883507, 254079.448600001633167 ], [ 361786.5253000035882, 254081.124099999666214 ], [ 361779.1858000010252, 254090.774300001561642 ], [ 361776.745300002396107, 254093.287399999797344 ], [ 361775.100299999117851, 254097.073699999600649 ], [ 361771.776199996471405, 254108.656599998474121 ], [ 361770.926700003445148, 254113.715900000184774 ], [ 361770.896099999547005, 254117.304200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404027100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90194073000001, "LATITUDE": 18.31579803, "OBJECTID_1": 37371, "PARCEL_NO_": "107404027100", "Tax_Legal_": "FRENHCMAN'S BAY 21-22 FRENCHMAN'S BAY QTR.", "Name": "BENJAMIN, SHANA", "Address": "615 Swann Ave", "City": "Alexandria", "State": "Virginia", "Zip": 22301, "Country": "United States", "Land_Value": 100000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.38097481400001, "SHAPE_Area": 3136.15296042 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361920.360600002110004, 254083.69709999859333 ], [ 361936.056400001049042, 254039.706999998539686 ], [ 361869.717600002884865, 254065.128600001335144 ], [ 361841.390600003302097, 254077.351199999451637 ], [ 361857.232699997723103, 254110.833700001239777 ], [ 361890.406599998474121, 254097.595199998468161 ], [ 361920.360600002110004, 254083.69709999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012100", "MAP": "D9-385-T63", "PARCEL_NAM": "REM 13", "ACRE": null, "LONGITUDE": -64.89659046, "LATITUDE": 18.31587128, "OBJECTID_1": 37537, "PARCEL_NO_": "107503012100", "Tax_Legal_": "REMAINDER 13 & 13-A-1 BOLONGO FRENCHMAN BAY QTR", "Name": "HOSFORD, VALERIE T. & AGNES", "Address": "PO Box 10535", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34900, "Improved_V": 81200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.619852651, "SHAPE_Area": 2525.6740029799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362442.213100001215935, 254109.557900000363588 ], [ 362442.82039999961853, 254106.949999999254942 ], [ 362445.645199999213219, 254106.312100000679493 ], [ 362460.171099998056889, 254112.678399998694658 ], [ 362472.458099998533726, 254114.813499998301268 ], [ 362477.288800001144409, 254115.697399999946356 ], [ 362478.118500001728535, 254112.96000000089407 ], [ 362479.747299998998642, 254111.073499999940395 ], [ 362490.488300003111362, 254080.763999998569489 ], [ 362492.948600001633167, 254075.928899999707937 ], [ 362460.120099999010563, 254072.061200000345707 ], [ 362414.003700003027916, 254066.627999998629093 ], [ 362414.77759999781847, 254070.434000000357628 ], [ 362423.481600001454353, 254089.925799999386072 ], [ 362425.828599996864796, 254098.388799998909235 ], [ 362426.563000001013279, 254106.838500000536442 ], [ 362442.213100001215935, 254109.557900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91068732, "LATITUDE": 18.31580677, "OBJECTID_1": 37237, "PARCEL_NO_": "107403031900", "Tax_Legal_": "FRENCHMAN'S BAY 15-18 & 15-19A FRENCHMAN BAY QTR", "Name": "HAHNFELD, NILS & SHAWN MAYNARD-HAHNFELD", "Address": "PO Box 600153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67700, "Improved_V": 192200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.790442515, "SHAPE_Area": 2153.0376962400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360978.452799998223782, 254091.820000000298023 ], [ 360992.566500000655651, 254044.228399999439716 ], [ 360985.316899999976158, 254043.324700001627207 ], [ 360974.827600002288818, 254044.083200000226498 ], [ 360960.281599998474121, 254047.763900000602007 ], [ 360949.759999997913837, 254052.321800000965595 ], [ 360944.079899996519089, 254056.49720000103116 ], [ 360940.82039999961853, 254060.481300000101328 ], [ 360939.182599999010563, 254063.423200000077486 ], [ 360931.781999997794628, 254080.250100001692772 ], [ 360967.889799997210503, 254101.232799999415874 ], [ 360978.452799998223782, 254091.820000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504060300", "MAP": "D9-2558-T84", "PARCEL_NAM": "18-G", "ACRE": null, "LONGITUDE": -64.89023937, "LATITUDE": 18.31565587, "OBJECTID_1": 37856, "PARCEL_NO_": "107504060300", "Tax_Legal_": "BOVONI ESTATE 18G WESTERN PART FRENCHMAN BAY QTR.", "Name": "RIVERA, RAUL & BALBINA G", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60100, "Improved_V": 163000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.62280053000001, "SHAPE_Area": 2822.2935625199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363099.828500002622604, 254112.982200000435114 ], [ 363159.830099999904633, 254074.209899999201298 ], [ 363164.034299999475479, 254053.979299999773502 ], [ 363102.061499997973442, 254040.173200000077486 ], [ 363101.847599998116493, 254065.291600000113249 ], [ 363099.300899997353554, 254080.258400000631809 ], [ 363099.828500002622604, 254112.982200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91022919, "LATITUDE": 18.31584025, "OBJECTID_1": 37236, "PARCEL_NO_": "107403031800", "Tax_Legal_": "15-19 FRENCHMAN BAY FRENCHMAN'S BAY QTR.", "Name": "HAKIM, SLYMON & MARIA", "Address": "2040 Coral Reef Dr", "City": "Lauderdale By The Sea", "State": "Florida", "Zip": 33062, "Country": "United States", "Land_Value": 50000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.35403655100001, "SHAPE_Area": 1682.92571838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360992.566500000655651, 254044.228399999439716 ], [ 360991.357400000095367, 254091.503499999642372 ], [ 361036.478500001132488, 254095.672499999403954 ], [ 361036.694300003349781, 254070.342999998480082 ], [ 361033.488799996674061, 254067.994699999690056 ], [ 361016.651600003242493, 254056.668999999761581 ], [ 361003.010799996554852, 254048.746899999678135 ], [ 360992.566500000655651, 254044.228399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90960203, "LATITUDE": 18.31582507, "OBJECTID_1": 37234, "PARCEL_NO_": "107403031600", "Tax_Legal_": "FRENCHMAN'S BAY 15-11 FRENCHMAN'S BAY QTR.", "Name": "KABUKA, SOLOMON", "Address": "PO Box 303982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105800, "Improved_V": 369800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.256301662, "SHAPE_Area": 3211.8157170099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361125.548699997365475, 254052.282900001853704 ], [ 361072.301500000059605, 254055.435699999332428 ], [ 361057.847199998795986, 254048.351300001144409 ], [ 361046.445600003004074, 254061.55689999833703 ], [ 361044.850900001823902, 254059.432900000363588 ], [ 361041.640100002288818, 254057.7179000005126 ], [ 361036.809399999678135, 254056.83390000090003 ], [ 361035.185999996960163, 254058.087200000882149 ], [ 361035.95269999653101, 254062.73759999871254 ], [ 361037.538400001823902, 254065.916900001466274 ], [ 361039.941100001335144, 254067.836399998515844 ], [ 361039.095299996435642, 254072.473600000143051 ], [ 361036.694300003349781, 254070.342999998480082 ], [ 361036.478500001132488, 254095.672499999403954 ], [ 361116.361000001430511, 254089.571299999952316 ], [ 361125.548699997365475, 254052.282900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90445208, "LATITUDE": 18.31585555, "OBJECTID_1": 37342, "PARCEL_NO_": "107404023900", "Tax_Legal_": "FRENCHMAN'S BAY (LOT #43) 21-63 FRENCHMANS BAY", "Name": "WASSELL, KAREN", "Address": "206 4th St", "City": "Beach Haven", "State": "New Jersey", "Zip": 8008, "Country": "United States", "Land_Value": 63100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.21824516300001, "SHAPE_Area": 2001.8084307 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361649.594300001859665, 254063.326999999582767 ], [ 361591.525399997830391, 254064.540399998426437 ], [ 361596.059399999678135, 254100.252399999648333 ], [ 361655.776799999177456, 254094.83049999922514 ], [ 361655.800200000405312, 254092.086500000208616 ], [ 361650.359200000762939, 254068.188400000333786 ], [ 361649.594300001859665, 254063.326999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032800", "MAP": "A9-138-T70", "PARCEL_NAM": "82", "ACRE": "0.55", "LONGITUDE": -64.89971166, "LATITUDE": 18.31571206, "OBJECTID_1": 37413, "PARCEL_NO_": "107404032800", "Tax_Legal_": "BOLONGO 82 FRENCHMAN BAY QTR", "Name": "REALTY ASSOCIATES", "Address": "132 Mt Vernal Baptist Church Rd", "City": "Rockwood", "State": "Tennessee", "Zip": 37854, "Country": "United States", "Land_Value": 61600, "Improved_V": 416200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.79590950100001, "SHAPE_Area": 2497.36825671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362157.700599998235703, 254052.286800000816584 ], [ 362093.262100003659725, 254043.949000000953674 ], [ 362095.587600000202656, 254054.944899998605251 ], [ 362093.868900001049042, 254067.385299999266863 ], [ 362089.783299997448921, 254073.68470000103116 ], [ 362133.885999999940395, 254102.754399999976158 ], [ 362150.208200000226498, 254079.878800000995398 ], [ 362157.700599998235703, 254052.286800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032500", "MAP": "A9-138-T70", "PARCEL_NAM": "88", "ACRE": "0.60", "LONGITUDE": -64.90047418, "LATITUDE": 18.3157146, "OBJECTID_1": 37410, "PARCEL_NO_": "107404032500", "Tax_Legal_": "BOLONGO 88 3 FRENCHMAN BAY QTR", "Name": "Elbert B Proctor, Jr. & Abriel Matthias-Proctor", "Address": "Po Box 302703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82800, "Improved_V": 798200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.275081911, "SHAPE_Area": 2424.0582600100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362087.450699999928474, 254065.326699998229742 ], [ 362006.489699997007847, 254042.815600000321865 ], [ 362000.345600001513958, 254065.564399998635054 ], [ 362039.694899998605251, 254084.673799999058247 ], [ 362063.767399996519089, 254098.591899998486042 ], [ 362065.405199997127056, 254095.649999998509884 ], [ 362067.840300001204014, 254093.770100001245737 ], [ 362078.4391999989748, 254080.13569999858737 ], [ 362085.787699997425079, 254069.430100001394749 ], [ 362087.434500001370907, 254065.432799998670816 ], [ 362087.450699999928474, 254065.326699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89561875, "LATITUDE": 18.31566998, "OBJECTID_1": 37539, "PARCEL_NO_": "107503012300", "Tax_Legal_": "BOLONGO 14A FRENCHMAN BAY QTR.", "Name": "JOSEPH, KEITHLEY, ETHLYN & NICOLE K.", "Address": "PO Box 9666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50800, "Improved_V": 317600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.9937752, "SHAPE_Area": 1967.5137208599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362543.35530000180006, 254027.578899998217821 ], [ 362545.601599998772144, 254047.862199999392033 ], [ 362538.710600003600121, 254099.523800000548363 ], [ 362541.12950000166893, 254099.543600000441074 ], [ 362572.563100002706051, 254101.278499998152256 ], [ 362571.778399996459484, 254098.738899998366833 ], [ 362573.653499998152256, 254067.934599999338388 ], [ 362570.559600003063679, 254052.499499998986721 ], [ 362567.409800000488758, 254043.607799999415874 ], [ 362562.651100002229214, 254034.280699998140335 ], [ 362557.849200002849102, 254030.019499998539686 ], [ 362549.809399999678135, 254027.209499999880791 ], [ 362543.35530000180006, 254027.578899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89591727, "LATITUDE": 18.31569229, "OBJECTID_1": 37538, "PARCEL_NO_": "107503012200", "Tax_Legal_": "BOLONGO 14 FRENCHMAN BAY QTR", "Name": "RAWLINS, VERNA V. (TRUSTEE)", "Address": "PO Box 9154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38300, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.44362589599999, "SHAPE_Area": 2159.0816340800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362543.35530000180006, 254027.578899998217821 ], [ 362540.122900001704693, 254028.396800000220537 ], [ 362534.44990000128746, 254031.727899998426437 ], [ 362520.609499998390675, 254047.235500000417233 ], [ 362506.720600001513958, 254068.442299999296665 ], [ 362505.890900000929832, 254071.179699998348951 ], [ 362504.253100000321865, 254074.121599998325109 ], [ 362502.624300003051758, 254076.008099999278784 ], [ 362498.509999997913837, 254085.684799998998642 ], [ 362495.185900002717972, 254097.267700001597404 ], [ 362538.710600003600121, 254099.523800000548363 ], [ 362545.601599998772144, 254047.862199999392033 ], [ 362543.35530000180006, 254027.578899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404026900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90311729, "LATITUDE": 18.31561782, "OBJECTID_1": 37369, "PARCEL_NO_": "107404026900", "Tax_Legal_": "21-24(LOT#17)FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "PRENTICE, E. MILLES,III & KATHERINE C.", "Address": "51 Sunset Ky", "City": "Key West", "State": "Florida", "Zip": 33040, "Country": "United States", "Land_Value": 82900, "Improved_V": 658400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.05803720399999, "SHAPE_Area": 2470.13291656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361796.503200002014637, 254045.741999998688698 ], [ 361748.262900002300739, 254029.092999998480082 ], [ 361739.335900001227856, 254035.774900000542402 ], [ 361734.445900000631809, 254041.856600001454353 ], [ 361728.733400002121925, 254049.831399999558926 ], [ 361727.898299999535084, 254053.202100001275539 ], [ 361726.2550999969244, 254056.777199998497963 ], [ 361771.963200002908707, 254086.7043999992311 ], [ 361776.865800000727177, 254079.145199999213219 ], [ 361784.180100001394749, 254072.449999999254942 ], [ 361791.472900003194809, 254068.287799999117851 ], [ 361801.985500000417233, 254064.785300001502037 ], [ 361796.503200002014637, 254045.741999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90387322, "LATITUDE": 18.31567726, "OBJECTID_1": 37344, "PARCEL_NO_": "107404024100", "Tax_Legal_": "21-36 ESTATE FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "RENAL, GODFREY", "Address": "PO Box 307168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 345300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.777049052, "SHAPE_Area": 1778.1559961200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361716.552400000393391, 254059.864199999719858 ], [ 361662.730800002813339, 254035.781199999153614 ], [ 361659.449799999594688, 254042.298300001770258 ], [ 361658.627400003373623, 254044.191399998962879 ], [ 361656.962600000202656, 254050.299499999731779 ], [ 361657.637599997222424, 254065.714800000190735 ], [ 361659.181900002062321, 254073.749000001698732 ], [ 361713.134700000286102, 254082.423200000077486 ], [ 361713.15990000218153, 254079.468100000172853 ], [ 361714.021999999880791, 254072.93129999935627 ], [ 361715.717299997806549, 254063.234900001436472 ], [ 361716.552400000393391, 254059.864199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403032300", "MAP": "D9-5845-T94", "PARCEL_NAM": "15-4-A", "ACRE": ".528", "LONGITUDE": -64.91130537, "LATITUDE": 18.31567504, "OBJECTID_1": 37241, "PARCEL_NO_": "107403032300", "Tax_Legal_": "FRENCHMAN BAY 15-4A FRENCHMAN BAY QTR", "Name": "HOLMES, MARILYN", "Address": "7437 Frenchman Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.531897429, "SHAPE_Area": 2237.38220499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360928.639300003647804, 254064.694200001657009 ], [ 360927.252400003373623, 254062.363600000739098 ], [ 360927.569899998605251, 254060.617300000041723 ], [ 360917.092399999499321, 254056.013599999248981 ], [ 360907.249799996614456, 254048.2347999997437 ], [ 360904.074799999594688, 254039.979800000786781 ], [ 360892.262100003659725, 254010.160799998790026 ], [ 360890.402199998497963, 254015.527899999171495 ], [ 360883.120200000703335, 254018.423599999397993 ], [ 360879.894900001585484, 254018.397199999541044 ], [ 360876.685900002717972, 254016.471099998801947 ], [ 360874.261500000953674, 254017.084499999880791 ], [ 360872.634499996900558, 254018.760000001639128 ], [ 360871.80120000243187, 254021.919599998742342 ], [ 360872.564400002360344, 254026.991999998688698 ], [ 360878.964599996805191, 254032.955099999904633 ], [ 360878.142099998891354, 254034.848200000822544 ], [ 360875.706900000572205, 254036.728100001811981 ], [ 360873.288000002503395, 254036.708299998193979 ], [ 360878.992299996316433, 254038.233500000089407 ], [ 360879.603900000452995, 254058.171500001102686 ], [ 360879.785999998450279, 254064.1097999997437 ], [ 360885.659800000488758, 254066.332299999892712 ], [ 360890.898599997162819, 254080.778599999845028 ], [ 360892.803599998354912, 254082.842399999499321 ], [ 360904.551100000739098, 254088.874899998307228 ], [ 360917.621299996972084, 254089.937199998646975 ], [ 360925.398000001907349, 254072.38740000128746 ], [ 360928.639300003647804, 254064.694200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90242972, "LATITUDE": 18.31555567, "OBJECTID_1": 37370, "PARCEL_NO_": "107404027000", "Tax_Legal_": "FRENHCMAN'S BAY #21-23 FRENCHMANS BAY QTR.", "Name": "CARL ELISABETH BRYAN FAMILY REVOCABLE TRUST", "Address": "7945 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.737615963, "SHAPE_Area": 2454.4773990100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361860.315200001001358, 254032.965399999171495 ], [ 361844.311200000345707, 254018.480000000447035 ], [ 361798.911300003528595, 254047.028299998492002 ], [ 361801.985500000417233, 254064.785300001502037 ], [ 361813.286499999463558, 254063.400100000202656 ], [ 361822.946099996566772, 254065.379000000655651 ], [ 361830.19030000269413, 254066.916000001132488 ], [ 361835.803900003433228, 254070.550500001758337 ], [ 361841.390600003302097, 254077.351199999451637 ], [ 361869.717600002884865, 254065.128600001335144 ], [ 361860.315200001001358, 254032.965399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90447745, "LATITUDE": 18.31550143, "OBJECTID_1": 37343, "PARCEL_NO_": "107404024000", "Tax_Legal_": "FRENCHMAN'S BAY (LOT #44) 21-62 FRENCHMANS BAY", "Name": "LOUIS, CEDRIC D.", "Address": "PO Box 8101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.696019334, "SHAPE_Area": 2519.9197793799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361656.312700003385544, 254031.929000001400709 ], [ 361596.825400002300739, 254010.332800000905991 ], [ 361591.525399997830391, 254064.540399998426437 ], [ 361649.594300001859665, 254063.326999999582767 ], [ 361648.877899996936321, 254052.766399998217821 ], [ 361650.531900003552437, 254047.924800001084805 ], [ 361652.2128000035882, 254039.916999999433756 ], [ 361656.312700003385544, 254031.929000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109302010100", "MAP": "D9-9436-T020", "PARCEL_NAM": "87-REM", "ACRE": "0.38", "LONGITUDE": -64.90025041, "LATITUDE": 18.31543886, "OBJECTID_1": 41829, "PARCEL_NO_": "109302010100", "Tax_Legal_": "BOLONGO 87 FRENCHMAN BAY", "Name": "WILLIAM A SLOSKY FAMILY TRUST", "Address": "3341 NE 17th Way", "City": "Oakland Park", "State": "Florida", "Zip": 33334, "Country": "United States", "Land_Value": 50800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.51866744099999, "SHAPE_Area": 1377.0708832400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362021.998400002717972, 254037.215799998492002 ], [ 362039.197999998927116, 254039.100699998438358 ], [ 362058.528200000524521, 254045.496700000017881 ], [ 362069.046099998056889, 254052.74549999833107 ], [ 362077.018299996852875, 254062.425999999046326 ], [ 362087.450699999928474, 254065.326699998229742 ], [ 362089.008100003004074, 254055.137899998575449 ], [ 362089.142499998211861, 254054.258799999952316 ], [ 362084.498800002038479, 254031.422699999064207 ], [ 362082.981499999761581, 254020.222300000488758 ], [ 362081.425399996340275, 254015.758099999278784 ], [ 362024.849899999797344, 254036.186200000345707 ], [ 362021.998400002717972, 254037.215799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403031700", "MAP": "D9-8296-T009", "PARCEL_NAM": "15-10", "ACRE": ".539", "LONGITUDE": -64.90946347000001, "LATITUDE": 18.31551671, "OBJECTID_1": 37235, "PARCEL_NO_": "107403031700", "Tax_Legal_": "15-10 REM FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SMITH, CONRAD W", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.98142667100001, "SHAPE_Area": 1778.4207159 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361106.526000000536442, 254025.383499998599291 ], [ 361081.256800003349781, 254013.907699998468161 ], [ 361076.638800002634525, 254019.585299998521805 ], [ 361074.16950000077486, 254025.475699998438358 ], [ 361073.321800000965595, 254030.323899999260902 ], [ 361057.847199998795986, 254048.351300001144409 ], [ 361072.301500000059605, 254055.435699999332428 ], [ 361125.548699997365475, 254052.282900001853704 ], [ 361128.878300003707409, 254040.066700000315905 ], [ 361106.526000000536442, 254025.383499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91008777, "LATITUDE": 18.31532851, "OBJECTID_1": 37243, "PARCEL_NO_": "107403032500", "Tax_Legal_": "FRENCHMAN'S BAY 15-6&15-7 FRENCHMAN'S BAY QTR.", "Name": "BRANDT, HENRY H. & JACQUELINE K", "Address": "182 Post Rd", "City": "North Hampton", "State": "New Hampshire", "Zip": 3862, "Country": "United States", "Land_Value": 161100, "Improved_V": 582700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.147367839, "SHAPE_Area": 3184.2988506500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360989.998400002717972, 254010.149700000882149 ], [ 360989.476099997758865, 254035.131099998950958 ], [ 360991.835699997842312, 254035.356499999761581 ], [ 360999.886200003325939, 254036.899999998509884 ], [ 361018.359499998390675, 254045.495000001043081 ], [ 361026.411799997091293, 254046.827500000596046 ], [ 361033.677599996328354, 254045.831399999558926 ], [ 361035.295699998736382, 254045.211399998515844 ], [ 361044.195699997246265, 254041.695700000971556 ], [ 361049.883000001311302, 254036.675999999046326 ], [ 361051.509999997913837, 254035.000500001013279 ], [ 361064.533299997448921, 254020.75279999896884 ], [ 361070.234999999403954, 254014.044399999082088 ], [ 361025.378200002014637, 253978.846900001168251 ], [ 361022.935900002717972, 253981.571100000292063 ], [ 361021.281900003552437, 253986.41270000115037 ], [ 361018.8378000035882, 253989.348000001162291 ], [ 361013.918999999761581, 253998.807000000029802 ], [ 360999.319099999964237, 254008.820000000298023 ], [ 360989.998400002717972, 254010.149700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403032700", "MAP": "D9-8296-T009", "PARCEL_NAM": "15-9", "ACRE": "1.50", "LONGITUDE": -64.90925483, "LATITUDE": 18.31487509, "OBJECTID_1": 37245, "PARCEL_NO_": "107403032700", "Tax_Legal_": "15-9 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "BENNETT, CHRISTOPHER M. & NICOLE M.", "Address": "46331 Pinehurst Dr", "City": "Northville", "State": "Michigan", "Zip": 48168, "Country": "United States", "Land_Value": 247100, "Improved_V": 608000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 454.25757497199999, "SHAPE_Area": 6996.4442396799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361106.526000000536442, 254025.383499998599291 ], [ 361130.225599996745586, 254034.660599999129772 ], [ 361163.109499998390675, 253902.713899999856949 ], [ 361151.795900002121925, 253905.57660000026226 ], [ 361139.694099999964237, 253906.321899998933077 ], [ 361138.036499999463558, 253911.585700001567602 ], [ 361134.782499998807907, 253914.936599999666214 ], [ 361125.148100003600121, 253910.002599999308586 ], [ 361121.910199999809265, 253911.453699998557568 ], [ 361124.307599999010563, 253914.006499998271465 ], [ 361124.273400001227856, 253918.017000000923872 ], [ 361118.580700002610683, 253923.669900000095367 ], [ 361114.487999998033047, 253930.8136 ], [ 361108.82039999961853, 253933.511399999260902 ], [ 361107.191600002348423, 253935.397900000214577 ], [ 361101.538400001823902, 253936.4070999994874 ], [ 361099.121299996972084, 253936.176199998706579 ], [ 361095.147299997508526, 253929.388700000941753 ], [ 361090.358000002801418, 253923.649999998509884 ], [ 361091.225400000810623, 253916.479899998754263 ], [ 361089.672100000083447, 253909.5011 ], [ 361088.070299997925758, 253908.221400000154972 ], [ 361083.225199997425079, 253909.026200000196695 ], [ 361081.578400000929832, 253913.023499999195337 ], [ 361083.176700003445148, 253914.725299999117851 ], [ 361085.611800000071526, 253912.845400001853704 ], [ 361086.391099996864796, 253916.018199998885393 ], [ 361087.9966000020504, 253916.875700000673532 ], [ 361088.786700002849102, 253918.782000001519918 ], [ 361087.935400001704693, 253924.052400000393391 ], [ 361086.299400001764297, 253926.78319999948144 ], [ 361092.717600002884865, 253930.635400000959635 ], [ 361095.035800002515316, 253942.475600000470877 ], [ 361093.406999997794628, 253944.362100001424551 ], [ 361088.560099996626377, 253945.377900000661612 ], [ 361082.113200001418591, 253944.903000000864267 ], [ 361073.263599999248981, 253942.508499998599291 ], [ 361076.755699999630451, 254005.865200001746416 ], [ 361083.972900003194809, 254010.568300001323223 ], [ 361106.526000000536442, 254025.383499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403032600", "MAP": "A9-73-T67", "PARCEL_NAM": "15-8", "ACRE": null, "LONGITUDE": -64.9098735, "LATITUDE": 18.3148369, "OBJECTID_1": 37244, "PARCEL_NO_": "107403032600", "Tax_Legal_": "FRENCHMAN'S BAY ESTATE 15-8 FRENCHMAN BAY QTR", "Name": "PEREIRA FAMILY VIRGIN ISLANDS TRUST", "Address": "173 Parker St", "City": "Acton", "State": "Massachusetts", "Zip": 1720, "Country": "United States", "Land_Value": 130900, "Improved_V": 317400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.54379351300003, "SHAPE_Area": 3505.4260142399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361022.555799998342991, 253931.538800001144409 ], [ 361025.378200002014637, 253978.846900001168251 ], [ 361070.234999999403954, 254014.044399999082088 ], [ 361076.755699999630451, 254005.865200001746416 ], [ 361073.263599999248981, 253942.508499998599291 ], [ 361069.24099999666214, 253941.420099999755621 ], [ 361059.606600001454353, 253936.486099999397993 ], [ 361055.618199996650219, 253931.387200001627207 ], [ 361049.293600000441074, 253916.558899998664856 ], [ 361042.869999997317791, 253913.339899998158216 ], [ 361039.632200002670288, 253914.79109999909997 ], [ 361040.391800001263618, 253920.285700000822544 ], [ 361037.963799998164177, 253921.321299999952316 ], [ 361033.941299997270107, 253920.232900001108646 ], [ 361032.315999999642372, 253921.697299998253584 ], [ 361031.47919999808073, 253925.278999999165535 ], [ 361033.847800001502037, 253931.208999998867512 ], [ 361022.555799998342991, 253931.538800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109601010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86626467000001, "LATITUDE": 18.30729764, "OBJECTID_1": 42245, "PARCEL_NO_": "109601010100", "Tax_Legal_": "CAS CAY FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2551600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1809.17025059, "SHAPE_Area": 49395.452769900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365737.671499997377396, 253047.017700001597404 ], [ 365719.03999999910593, 253056.997699998319149 ], [ 365702.87049999833107, 253061.931600000709295 ], [ 365685.860699996352196, 253070.86939999833703 ], [ 365676.093199998140335, 253081.55519999936223 ], [ 365665.526600003242493, 253091.390099998563528 ], [ 365652.573499999940395, 253097.405799999833107 ], [ 365648.511399999260902, 253100.961199998855591 ], [ 365641.220399998128414, 253104.912300001829863 ], [ 365636.3699000030756, 253106.35020000115037 ], [ 365615.389600001275539, 253108.078400000929832 ], [ 365609.730999998748302, 253109.720800001174212 ], [ 365574.096799999475479, 253127.794300001114607 ], [ 365565.204000003635883, 253130.465700000524521 ], [ 365561.955399997532368, 253133.183299999684095 ], [ 365554.6824000030756, 253135.023699998855591 ], [ 365551.458999998867512, 253134.786200001835823 ], [ 365538.536399997770786, 253137.213500000536442 ], [ 365532.870600000023842, 253139.700300000607967 ], [ 365519.139899998903275, 253142.332100000232458 ], [ 365493.334299996495247, 253142.543099999427795 ], [ 365483.640600003302097, 253144.574700001627207 ], [ 365474.718999996781349, 253150.623399998992682 ], [ 365456.956799998879433, 253153.222199998795986 ], [ 365451.296400003135204, 253155.075800001621246 ], [ 365438.332500003278255, 253162.357900001108646 ], [ 365436.700000002980232, 253164.666600000113249 ], [ 365419.679399996995926, 253174.870900001376867 ], [ 365413.151600003242493, 253183.894499998539686 ], [ 365402.642499998211861, 253186.974899999797344 ], [ 365395.324600003659725, 253194.092099998146296 ], [ 365392.034599997103214, 253201.664599999785423 ], [ 365391.190499998629093, 253206.090599998831749 ], [ 365391.172499999403954, 253208.201400000602007 ], [ 365392.75280000269413, 253212.013999998569489 ], [ 365392.713200002908707, 253216.657800000160933 ], [ 365391.080799996852875, 253218.966400001198053 ], [ 365383.796999998390675, 253222.07319999858737 ], [ 365373.291599996387959, 253224.731499999761581 ], [ 365368.416000001132488, 253229.124499998986721 ], [ 365365.126000002026558, 253236.697000000625849 ], [ 365365.102600000798702, 253239.440999999642372 ], [ 365357.669600002467632, 253260.067299999296665 ], [ 365342.126599997282028, 253286.115699999034405 ], [ 365334.734999999403954, 253301.887200001627207 ], [ 365337.069399997591972, 253311.8277000002563 ], [ 365344.306400001049042, 253314.208999998867512 ], [ 365364.464199997484684, 253314.374000001698732 ], [ 365387.87610000371933, 253311.188099998980761 ], [ 365399.185999996960163, 253308.747499998658895 ], [ 365412.159000001847744, 253300.410000000149012 ], [ 365417.059799998998642, 253293.061799999326468 ], [ 365423.567800000309944, 253286.360100001096725 ], [ 365431.684900000691414, 253280.093699999153614 ], [ 365438.115599997341633, 253282.468400001525879 ], [ 365441.297700002789497, 253287.560699999332428 ], [ 365446.135600000619888, 253287.600299999117851 ], [ 365455.845499999821186, 253283.668999999761581 ], [ 365475.468500003218651, 253251.9543999992311 ], [ 365487.642300002276897, 253242.765999998897314 ], [ 365497.443899996578693, 253228.069600000977516 ], [ 365504.769100002944469, 253220.107999999076128 ], [ 365510.490599997341633, 253211.077799998223782 ], [ 365521.84009999781847, 253203.993500001728535 ], [ 365536.411300003528595, 253197.357799999415874 ], [ 365549.330200001597404, 253195.352600000798702 ], [ 365559.052799999713898, 253189.94370000064373 ], [ 365572.002300001680851, 253184.35020000115037 ], [ 365578.490599997341633, 253179.970300000160933 ], [ 365594.668999999761581, 253173.980999998748302 ], [ 365610.05179999768734, 253166.718699999153614 ], [ 365616.500500001013279, 253166.982500001788139 ], [ 365621.324000000953674, 253168.710799999535084 ], [ 365643.110600002110004, 253166.989199999719858 ], [ 365657.676399998366833, 253160.986699998378754 ], [ 365663.354800000786781, 253157.022399999201298 ], [ 365708.648500002920628, 253140.92790000140667 ], [ 365715.10980000346899, 253139.714200001209974 ], [ 365752.229000002145767, 253136.640500001609325 ], [ 365764.341600000858307, 253134.628699999302626 ], [ 365778.050700001418591, 253134.529800001531839 ], [ 365784.476099997758865, 253137.53770000115037 ], [ 365799.767200000584126, 253141.040300000458956 ], [ 365816.689000003039837, 253142.44539999961853 ], [ 365823.902699999511242, 253147.570700000971556 ], [ 365832.755900003015995, 253149.543000001460314 ], [ 365842.429899998009205, 253149.833299998193979 ], [ 365855.311099998652935, 253152.26069999858737 ], [ 365875.400600001215935, 253160.446699999272823 ], [ 365901.985500000417233, 253163.408500000834465 ], [ 365925.318199999630451, 253169.510099999606609 ], [ 365933.354400001466274, 253172.742199998348951 ], [ 365936.554399996995926, 253175.723700001835823 ], [ 365946.204999998211861, 253178.758000001311302 ], [ 365967.131399996578693, 253183.362300001084805 ], [ 365984.054899998009205, 253184.55629999935627 ], [ 366041.304899998009205, 253184.813700001686811 ], [ 366052.613099999725819, 253182.584300000220537 ], [ 366060.715800002217293, 253178.006499998271465 ], [ 366067.173500001430511, 253177.214999999850988 ], [ 366082.493400000035763, 253177.340399999171495 ], [ 366086.539300002157688, 253175.68470000103116 ], [ 366087.367200002074242, 253173.158399999141693 ], [ 366092.237499997019768, 253169.398600000888109 ], [ 366105.998700000345707, 253163.178399998694658 ], [ 366106.016699999570847, 253161.067600000649691 ], [ 366102.021099999547005, 253156.813000001013279 ], [ 366102.863399997353554, 253152.598099999129772 ], [ 366102.0912000015378, 253148.581000000238419 ], [ 366094.917199999094009, 253138.811900001019239 ], [ 366093.342299997806549, 253134.366099998354912 ], [ 366090.122400000691414, 253133.706500001251698 ], [ 366078.780100002884865, 253139.946400001645088 ], [ 366066.685400001704693, 253139.84739999845624 ], [ 366057.036700002849102, 253136.602099999785423 ], [ 366044.195000000298023, 253129.530900001525879 ], [ 366020.07039999961853, 253121.734099999070168 ], [ 365981.430299997329712, 253114.029500000178814 ], [ 365964.497699998319149, 253113.890900000929832 ], [ 365944.289599999785423, 253119.636199999600649 ], [ 365932.146300002932549, 253125.236299999058247 ], [ 365916.793999999761581, 253128.910300001502037 ], [ 365906.308399997651577, 253129.246700000017881 ], [ 365883.745999999344349, 253127.3733000010252 ], [ 365869.230599999427795, 253127.465599998831749 ], [ 365856.345799997448921, 253125.460299998521805 ], [ 365841.056400001049042, 253121.746599998325109 ], [ 365817.745300002396107, 253113.111999999731779 ], [ 365816.962300002574921, 253110.361400000751019 ], [ 365807.353100001811981, 253102.472300000488758 ], [ 365779.249099999666214, 253088.521200001239777 ], [ 365772.87950000166893, 253078.969900000840425 ], [ 365770.530699998140335, 253070.717999998480082 ], [ 365766.524300001561642, 253067.729899998754263 ], [ 365757.669200003147125, 253065.968699999153614 ], [ 365753.653800003230572, 253064.035999998450279 ], [ 365748.907700002193451, 253053.231300000101328 ], [ 365737.671499997377396, 253047.017700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403034700", "MAP": "D9-7917-T07", "PARCEL_NAM": "15-51-REM", "ACRE": ".0731", "LONGITUDE": -64.91129859, "LATITUDE": 18.31798708, "OBJECTID_1": 37254, "PARCEL_NO_": "107403034700", "Tax_Legal_": "15-51 REM FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "LISE LANE, LLC", "Address": "104 Severn River Rd", "City": "Severna Park", "State": "Maryland", "Zip": 21146, "Country": "United States", "Land_Value": 84500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.59051822699999, "SHAPE_Area": 1712.23749933 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360855.957699999213219, 254272.568999998271465 ], [ 360886.377999998629093, 254295.534400001168251 ], [ 360881.306699998676777, 254305.410300001502037 ], [ 360883.064800001680851, 254308.887899998575449 ], [ 360884.627099998295307, 254314.811299998313189 ], [ 360887.015500001609325, 254318.419399999082088 ], [ 360889.3733000010252, 254325.615899998694658 ], [ 360890.154399998486042, 254328.577599998563528 ], [ 360888.810000002384186, 254341.640799999237061 ], [ 360923.850299999117851, 254340.482799999415874 ], [ 360913.822700001299381, 254326.900400001555681 ], [ 360913.944600000977516, 254297.058200001716614 ], [ 360903.510099999606609, 254297.554900001734495 ], [ 360904.217799998819828, 254286.896200001239777 ], [ 360855.957699999213219, 254272.568999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403026500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91119896, "LATITUDE": 18.31864218, "OBJECTID_1": 37213, "PARCEL_NO_": "107403026500", "Tax_Legal_": "FRENHCMAN'S BAY 15-51A FRENCHMAN'S BAY QTR.", "Name": "SPILLNER, JOHN H. & CATHERINE L.", "Address": "PO Box 8677", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57300, "Improved_V": 132700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.89849243800001, "SHAPE_Area": 1928.9625164199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360879.366599999368191, 254364.375199999660254 ], [ 360900.811599999666214, 254402.758699998259544 ], [ 360923.231899999082088, 254421.307300001382828 ], [ 360924.065200001001358, 254418.147700000554323 ], [ 360928.170500002801418, 254409.526500001549721 ], [ 360931.447899997234344, 254403.431600000709295 ], [ 360933.895599998533726, 254400.074099998921156 ], [ 360936.868000000715256, 254396.074999999254942 ], [ 360888.780900001525879, 254341.922899998724461 ], [ 360888.396099999547005, 254345.661800000816584 ], [ 360879.366599999368191, 254364.375199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403032400", "MAP": "F9-2448-T69", "PARCEL_NAM": "15-5", "ACRE": null, "LONGITUDE": -64.91069381, "LATITUDE": 18.31529707, "OBJECTID_1": 37242, "PARCEL_NO_": "107403032400", "Tax_Legal_": "FRENCHMAN'S BAY 15-5 FRENCHMAN'S BAY QTR.", "Name": "MORRISON, ELIZABETH G.", "Address": "7280 Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111700, "Improved_V": 372100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.01776190499999, "SHAPE_Area": 2411.3639757199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360968.447300001978874, 254035.79839999973774 ], [ 360978.941899999976158, 254034.406599998474121 ], [ 360982.971699997782707, 254034.650699999183416 ], [ 360987.001400001347065, 254034.89469999819994 ], [ 360989.476099997758865, 254035.131099998950958 ], [ 360989.998400002717972, 254010.149700000882149 ], [ 360990.56700000166893, 253982.95160000026226 ], [ 360989.862700000405312, 253982.989199999719858 ], [ 360977.7212999984622, 253988.378199998289347 ], [ 360964.693199999630451, 253993.891800001263618 ], [ 360956.679799996316433, 253997.282999999821186 ], [ 360950.213200002908707, 253999.129900000989437 ], [ 360945.378899998962879, 253998.668200001120567 ], [ 360937.349899999797344, 253994.591699998825788 ], [ 360934.133699998259544, 253993.509899999946356 ], [ 360931.712899997830391, 253993.701200000941753 ], [ 360930.08049999922514, 253996.009899999946356 ], [ 360930.023000001907349, 254002.764400001615286 ], [ 360928.397799998521805, 254004.228700000792742 ], [ 360948.57209999859333, 254042.800500001758337 ], [ 360951.4679000005126, 254041.147799998521805 ], [ 360968.447300001978874, 254035.79839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105804021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85342715, "LATITUDE": 18.33763517, "OBJECTID_1": 24026, "PARCEL_NO_": "105804021700", "Tax_Legal_": "11B-14 SMITH BAY EAST END QUARTER", "Name": "SANDY COVE LLC", "Address": "PO Box 460245", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33346, "Country": "United States", "Land_Value": 807700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 961.01931087000003, "SHAPE_Area": 3461.5362738600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367025.574500001966953, 256439.066199999302626 ], [ 367036.132100000977516, 256430.286699999123812 ], [ 367049.956299997866154, 256416.678800001740456 ], [ 367067.054300002753735, 256397.39809999987483 ], [ 367067.135200001299381, 256397.307000000029802 ], [ 367061.691899999976158, 256393.92339999973774 ], [ 367058.183100000023842, 256397.53660000115633 ], [ 366985.782899998128414, 256471.882199998944998 ], [ 366984.157700002193451, 256473.346599999815226 ], [ 366979.314400002360344, 256473.940200001001358 ], [ 366976.100000001490116, 256472.647399999201298 ], [ 366960.922100000083447, 256455.846799999475479 ], [ 366956.114799998700619, 256450.477200001478195 ], [ 366950.569600000977516, 256455.50789999961853 ], [ 366976.805600002408028, 256484.474399998784065 ], [ 366977.590300001204014, 256487.013900000602007 ], [ 366967.389499999582767, 256548.56980000063777 ], [ 366967.943999998271465, 256578.127399999648333 ], [ 366967.89190000295639, 256584.248700000345707 ], [ 366966.796099998056889, 256618.22580000013113 ], [ 366969.1233000010252, 256629.010600000619888 ], [ 366971.506300002336502, 256633.252000000327826 ], [ 366974.702799998223782, 256636.655600000172853 ], [ 366976.302799999713898, 256638.14640000090003 ], [ 366978.339100003242493, 256639.665100000798702 ], [ 366994.776199996471405, 256647.079300001263618 ], [ 367001.219400003552437, 256647.638399999588728 ], [ 367029.461900003254414, 256645.336500000208616 ], [ 367029.727200001478195, 256635.960099998861551 ], [ 367007.75620000064373, 256637.559399999678135 ], [ 366994.846199996769428, 256638.509199999272823 ], [ 366990.017300002276897, 256637.414299998432398 ], [ 366984.39469999819994, 256634.835099998861551 ], [ 366979.590999998152256, 256630.785000000149012 ], [ 366976.401699997484684, 256626.537000000476837 ], [ 366974.045699998736382, 256619.12950000166893 ], [ 366974.238099999725819, 256596.544100001454353 ], [ 366975.868699997663498, 256594.44649999961257 ], [ 366979.106499999761581, 256592.995299998670816 ], [ 367003.292300000786781, 256593.61540000140667 ], [ 367035.539399996399879, 256594.512699998915195 ], [ 367037.371500000357628, 256594.573300000280142 ], [ 367036.498000003397465, 256593.305799998342991 ], [ 367036.164899997413158, 256585.363400001078844 ], [ 366976.777500003576279, 256582.421599999070168 ], [ 366974.376599997282028, 256580.291000001132488 ], [ 366973.750100001692772, 256559.176500000059605 ], [ 366973.780599996447563, 256555.588199999183416 ], [ 366974.689400002360344, 256543.563299998641014 ], [ 366984.006599999964237, 256491.077199999243021 ], [ 366986.429200001060963, 256490.674899999052286 ], [ 366989.600500002503395, 256497.033599998801947 ], [ 366998.387199997901917, 256506.815799999982119 ], [ 367003.993600003421307, 256511.294700000435114 ], [ 367019.239799998700619, 256520.074299998581409 ], [ 367024.133400000631809, 256513.570500001311302 ], [ 367012.880999997258186, 256509.256499998271465 ], [ 367006.459299996495247, 256505.826400000602007 ], [ 367000.050200000405312, 256500.918800000101328 ], [ 366995.257200002670288, 256495.602299999445677 ], [ 366992.084100000560284, 256489.454599998891354 ], [ 366989.711999997496605, 256483.946699999272823 ], [ 366988.952399998903275, 256478.452100001275539 ], [ 366993.043300002813339, 256471.519499998539686 ], [ 367020.709700003266335, 256442.192800000309944 ], [ 367025.574500001966953, 256439.066199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85353902, "LATITUDE": 18.3385864, "OBJECTID_1": 24026, "PARCEL_NO_": "105804021700", "Tax_Legal_": "11B-14 SMITH BAY EAST END QUARTER", "Name": "SANDY COVE LLC", "Address": "PO Box 460245", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33346, "Country": "United States", "Land_Value": 807700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 18.316045771, "SHAPE_Area": 7.3641524047900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366978.339100003242493, 256639.665100000798702 ], [ 366984.315600000321865, 256644.122600000351667 ], [ 366984.989500001072884, 256644.337099999189377 ], [ 366986.117200002074242, 256643.173599999397993 ], [ 366978.339100003242493, 256639.665100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804024600", "MAP": null, "PARCEL_NAM": "11B-22", "ACRE": "0.67", "LONGITUDE": -64.85165631, "LATITUDE": 18.33867197, "OBJECTID_1": 24036, "PARCEL_NO_": "105804024600", "Tax_Legal_": "11B-22 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HINDELS, JAMES H. & CAROL P", "Address": "1330 Estate Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 628200, "Improved_V": 1006200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.69023474, "SHAPE_Area": 2548.2518512000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367142.100500002503395, 256648.854600001126528 ], [ 367160.067699998617172, 256660.565000001341105 ], [ 367173.44200000166893, 256672.682500001043081 ], [ 367182.585600003600121, 256683.349899999797344 ], [ 367189.481100000441074, 256697.941899999976158 ], [ 367215.739799998700619, 256644.539000000804663 ], [ 367205.281199999153614, 256641.709199998527765 ], [ 367194.860200002789497, 256634.446699999272823 ], [ 367181.024099998176098, 256618.875199999660254 ], [ 367142.100500002503395, 256648.854600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804024700", "MAP": "D9-7288-T003", "PARCEL_NAM": "11B-13", "ACRE": ".740", "LONGITUDE": -64.85211047, "LATITUDE": 18.33836289, "OBJECTID_1": 24037, "PARCEL_NO_": "105804024700", "Tax_Legal_": "11B-13 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "AGUILAR, VERIAN", "Address": "6501 RED HOOK PMB 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 533900, "Improved_V": 68400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.249035408, "SHAPE_Area": 3156.2355097200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367088.435000002384186, 256633.560100000351667 ], [ 367092.365500003099442, 256634.969000000506639 ], [ 367117.092699997127056, 256638.761900000274181 ], [ 367136.646799996495247, 256645.30009999871254 ], [ 367142.100500002503395, 256648.854600001126528 ], [ 367181.024099998176098, 256618.875199999660254 ], [ 367177.288599997758865, 256614.67119999974966 ], [ 367172.513599999248981, 256607.243900001049042 ], [ 367171.259199999272823, 256604.898200001567602 ], [ 367167.318000003695488, 256606.86879999935627 ], [ 367120.965300001204014, 256585.667199999094009 ], [ 367119.182800002396107, 256588.542199999094009 ], [ 367106.878700003027916, 256608.387600000947714 ], [ 367090.791500002145767, 256626.98589999973774 ], [ 367088.435000002384186, 256633.560100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804021700", "MAP": "A9-629-T004", "PARCEL_NAM": "11B-14", "ACRE": ".26", "LONGITUDE": -64.85198202, "LATITUDE": 18.33807405, "OBJECTID_1": 24026, "PARCEL_NO_": "105804021700", "Tax_Legal_": "11B-14 SMITH BAY EAST END QUARTER", "Name": "SANDY COVE LLC", "Address": "PO Box 460245", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33346, "Country": "United States", "Land_Value": 807700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.17547902699999, "SHAPE_Area": 938.24310858199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367120.965300001204014, 256585.667199999094009 ], [ 367167.318000003695488, 256606.86879999935627 ], [ 367171.259199999272823, 256604.898200001567602 ], [ 367170.132500000298023, 256602.791400000452995 ], [ 367169.354900002479553, 256599.407600000500679 ], [ 367167.758500002324581, 256597.494600001722574 ], [ 367163.851000003516674, 256582.897199999541044 ], [ 367162.319300003349781, 256573.385499998927116 ], [ 367162.275799997150898, 256572.120799999684095 ], [ 367148.092299997806549, 256577.035900000482798 ], [ 367127.817500002682209, 256571.863800000399351 ], [ 367125.554099999368191, 256578.265999998897314 ], [ 367120.965300001204014, 256585.667199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804024900", "MAP": "D9-8305-T009", "PARCEL_NAM": "11B-15", "ACRE": ".586", "LONGITUDE": -64.85198722, "LATITUDE": 18.33769081, "OBJECTID_1": 24038, "PARCEL_NO_": "105804024900", "Tax_Legal_": "SMITH BAY 11B-15 No.1,2&3 EASTEND QTR.", "Name": "ZULU WARRIOR LLC", "Address": "3431 Ocean Blvd", "City": "Corona Del Mar", "State": "California", "Zip": 92625, "Country": "United States", "Land_Value": 538100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.467834716, "SHAPE_Area": 1867.3626397099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367127.817500002682209, 256571.863800000399351 ], [ 367148.092299997806549, 256577.035900000482798 ], [ 367162.275799997150898, 256572.120799999684095 ], [ 367161.673000000417233, 256554.592799998819828 ], [ 367163.370200000703335, 256544.685300000011921 ], [ 367166.690700002014637, 256533.524599999189377 ], [ 367170.775799997150898, 256524.765399999916553 ], [ 367133.044799998402596, 256508.322999998927116 ], [ 367133.471500001847744, 256513.129700001329184 ], [ 367134.946099996566772, 256529.739900000393391 ], [ 367133.471500001847744, 256544.485399998724461 ], [ 367131.883900001645088, 256560.361699998378754 ], [ 367127.817500002682209, 256571.863800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804021200", "MAP": "A9-629-T004", "PARCEL_NAM": "12C", "ACRE": ".571", "LONGITUDE": -64.85277994, "LATITUDE": 18.33827872, "OBJECTID_1": 24022, "PARCEL_NO_": "105804021200", "Tax_Legal_": "12C SMITH BAY EAST END QTR", "Name": "LAMMENS, STEVE AND MARIA QUINQUILLA LAMMENS", "Address": "4028 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 292300, "Improved_V": 612300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.999356191, "SHAPE_Area": 2401.27660001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367035.539399996399879, 256594.512600000947714 ], [ 367038.570500001311302, 256617.33559999987483 ], [ 367041.64469999819994, 256635.092599999159575 ], [ 367071.140100002288818, 256634.566599998623133 ], [ 367073.141500003635883, 256632.598999999463558 ], [ 367091.987999998033047, 256614.07039999961853 ], [ 367102.512699998915195, 256598.464899998158216 ], [ 367103.282200001180172, 256597.323899999260902 ], [ 367057.870099999010563, 256585.399099998176098 ], [ 367051.739399999380112, 256585.99040000140667 ], [ 367038.035700000822544, 256585.4560999982059 ], [ 367036.164899997413158, 256585.363400001078844 ], [ 367036.498000003397465, 256593.305799998342991 ], [ 367037.371500000357628, 256594.573300000280142 ], [ 367035.539399996399879, 256594.512600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85244085, "LATITUDE": 18.3378827, "OBJECTID_1": 24021, "PARCEL_NO_": "105804021100", "Tax_Legal_": "SMITH BAY 11B 6 EAST END QTR", "Name": "VILLA PANORAMA INC", "Address": "1 E Spring Oak Cir", "City": "Media", "State": "Pennsylvania", "Zip": 19063, "Country": "United States", "Land_Value": 324300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.56966251200001, "SHAPE_Area": 2081.4165399 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367057.870099999010563, 256585.399099998176098 ], [ 367103.282200001180172, 256597.323899999260902 ], [ 367114.023000001907349, 256581.397900000214577 ], [ 367122.35809999704361, 256554.408100001513958 ], [ 367124.739500001072884, 256537.341099999845028 ], [ 367124.635499998927116, 256536.057900000363588 ], [ 367086.464699998497963, 256537.4847999997437 ], [ 367086.631999999284744, 256560.311500001698732 ], [ 367084.943899996578693, 256569.163600001484156 ], [ 367082.487199999392033, 256573.576400000602007 ], [ 367080.035899996757507, 256577.356100000441074 ], [ 367071.117899999022484, 256582.982599999755621 ], [ 367063.844899997115135, 256584.822900000959635 ], [ 367057.870099999010563, 256585.399099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804021800", "MAP": "D9-9053-T016", "PARCEL_NAM": "11B-4", "ACRE": ".52", "LONGITUDE": -64.85242555000001, "LATITUDE": 18.33736993, "OBJECTID_1": 24027, "PARCEL_NO_": "105804021800", "Tax_Legal_": "11B 4 EST SMITH BAY EAST END QTR", "Name": "PELICAN BEACH PROPERTIES LTD", "Address": "792 Route 10 W", "City": "RANDOLPH", "State": "New Jersey", "Zip": 7869, "Country": "United States", "Land_Value": 381600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.864691988, "SHAPE_Area": 2126.11894841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367078.034400001168251, 256477.532699998468161 ], [ 367072.001900002360344, 256481.764400001615286 ], [ 367079.138899996876717, 256493.333500001579523 ], [ 367083.892300002276897, 256503.293800000101328 ], [ 367086.259099997580051, 256509.434900000691414 ], [ 367086.464699998497963, 256537.4847999997437 ], [ 367124.635499998927116, 256536.057900000363588 ], [ 367122.35809999704361, 256507.969900000840425 ], [ 367123.928099997341633, 256497.329300001263618 ], [ 367127.808799996972084, 256492.645700000226498 ], [ 367078.034400001168251, 256477.532699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804025000", "MAP": "A9-629-T004", "PARCEL_NAM": "11B-16", "ACRE": null, "LONGITUDE": -64.85181018, "LATITUDE": 18.33722174, "OBJECTID_1": 24039, "PARCEL_NO_": "105804025000", "Tax_Legal_": "11B-16 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "JOEL DEE TRUST", "Address": "PO Box 1326", "City": "Carpinteria", "State": "California", "Zip": 93014, "Country": "United States", "Land_Value": 219100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.90183646899999, "SHAPE_Area": 2474.02088065 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367132.55629999935627, 256502.820099998265505 ], [ 367133.044799998402596, 256508.322999998927116 ], [ 367170.775799997150898, 256524.765399999916553 ], [ 367173.261699996888638, 256519.435100000351667 ], [ 367178.974200002849102, 256511.460299998521805 ], [ 367184.670500002801418, 256505.385200001299381 ], [ 367191.975900001823902, 256499.745400000363588 ], [ 367197.672200001776218, 256493.670299999415874 ], [ 367203.704300001263618, 256484.842999998480082 ], [ 367165.116200000047684, 256457.102899998426437 ], [ 367164.344200000166893, 256464.289299998432398 ], [ 367155.698399998247623, 256473.835799999535084 ], [ 367136.646799996495247, 256494.871899999678135 ], [ 367132.55629999935627, 256502.820099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804025300", "MAP": "D9-9053-T016", "PARCEL_NAM": "11B-19", "ACRE": ".606", "LONGITUDE": -64.85227061000001, "LATITUDE": 18.3369487, "OBJECTID_1": 24042, "PARCEL_NO_": "105804025300", "Tax_Legal_": "SMITH BAY 11B-19 EAST END QTR", "Name": "PELICAN BEACH PROPERTIES LTD", "Address": "792 Route 10 W", "City": "RANDOLPH", "State": "New Jersey", "Zip": 7869, "Country": "United States", "Land_Value": 350600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.23416178100001, "SHAPE_Area": 2527.7527184599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367112.138599999248981, 256425.648699998855591 ], [ 367083.891599997878075, 256408.723900001496077 ], [ 367106.462399996817112, 256427.067099999636412 ], [ 367118.21509999781847, 256436.618400000035763 ], [ 367093.108800001442432, 256462.628199998289347 ], [ 367079.281000003218651, 256476.658300001174212 ], [ 367078.034400001168251, 256477.532699998468161 ], [ 367127.808799996972084, 256492.645700000226498 ], [ 367128.9966000020504, 256491.212200000882149 ], [ 367131.883900001645088, 256487.72749999910593 ], [ 367143.394199997186661, 256473.835799999535084 ], [ 367147.715400002896786, 256464.391600001603365 ], [ 367147.363300003111362, 256458.356300000101328 ], [ 367146.942699998617172, 256451.146099999547005 ], [ 367150.81530000269413, 256448.822599999606609 ], [ 367112.138599999248981, 256425.648699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804022000", "MAP": "C3-92-T57", "PARCEL_NAM": "11B-3B", "ACRE": null, "LONGITUDE": -64.85263192, "LATITUDE": 18.33669243, "OBJECTID_1": 24029, "PARCEL_NO_": "105804022000", "Tax_Legal_": "SMITH BAY 11B 3A&11B-3B 1,2&3 EAST END QTR", "Name": "GRAULICH, DEBRA J", "Address": "6692 Estate Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 377400, "Improved_V": 6700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.09066713199999, "SHAPE_Area": 565.66393482499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367091.983499996364117, 256456.284699998795986 ], [ 367083.606700003147125, 256409.063799999654293 ], [ 367065.969300001859665, 256430.10869999974966 ], [ 367090.430399999022484, 256459.418800000101328 ], [ 367091.983499996364117, 256456.284699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85218727, "LATITUDE": 18.33760668, "OBJECTID_1": 24043, "PARCEL_NO_": "105804027000", "Tax_Legal_": "11B-20&11B-21(R.O.W.)SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "PELICAN BEACH HOMEOWNERS ASSOS", "Address": "792 Route 10 W", "City": "RANDOLPH", "State": "New Jersey", "Zip": 7869, "Country": "United States", "Land_Value": 374000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 457.853983777, "SHAPE_Area": 2169.6952054499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367071.140100002288818, 256634.566599998623133 ], [ 367088.435000002384186, 256633.560100000351667 ], [ 367090.791500002145767, 256626.98589999973774 ], [ 367106.878700003027916, 256608.387600000947714 ], [ 367119.182800002396107, 256588.542199999094009 ], [ 367125.554099999368191, 256578.265999998897314 ], [ 367131.883900001645088, 256560.361699998378754 ], [ 367133.471500001847744, 256544.485399998724461 ], [ 367134.946099996566772, 256529.739900000393391 ], [ 367133.471500001847744, 256513.129700001329184 ], [ 367132.55629999935627, 256502.820099998265505 ], [ 367136.646799996495247, 256494.871899999678135 ], [ 367155.698399998247623, 256473.835799999535084 ], [ 367164.344200000166893, 256464.289299998432398 ], [ 367165.621100001037121, 256452.402699999511242 ], [ 367162.048900000751019, 256446.449099998921156 ], [ 367160.122400000691414, 256443.238299999386072 ], [ 367152.208200000226498, 256447.986800000071526 ], [ 367146.942699998617172, 256451.146099999547005 ], [ 367147.363300003111362, 256458.356300000101328 ], [ 367147.715400002896786, 256464.391600001603365 ], [ 367143.394199997186661, 256473.835799999535084 ], [ 367131.883900001645088, 256487.72749999910593 ], [ 367128.9966000020504, 256491.212200000882149 ], [ 367123.928099997341633, 256497.329300001263618 ], [ 367122.35809999704361, 256507.969900000840425 ], [ 367124.739500001072884, 256537.341099999845028 ], [ 367122.35809999704361, 256554.408100001513958 ], [ 367114.023000001907349, 256581.397900000214577 ], [ 367102.512699998915195, 256598.464899998158216 ], [ 367091.987999998033047, 256614.07039999961853 ], [ 367073.141500003635883, 256632.598999999463558 ], [ 367071.140100002288818, 256634.566599998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85195947, "LATITUDE": 18.33884711, "OBJECTID_1": 24043, "PARCEL_NO_": "105804027000", "Tax_Legal_": "11B-20&11B-21(R.O.W.)SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "PELICAN BEACH HOMEOWNERS ASSOS", "Address": "792 Route 10 W", "City": "RANDOLPH", "State": "New Jersey", "Zip": 7869, "Country": "United States", "Land_Value": 374000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 549.34412110999995, "SHAPE_Area": 2598.3270673400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367029.461900003254414, 256645.336500000208616 ], [ 367076.262199997901917, 256641.708700001239777 ], [ 367099.589500002563, 256648.443500000983477 ], [ 367112.483300000429153, 256649.393399998545647 ], [ 367122.943800002336502, 256652.012200001627207 ], [ 367138.206200003623962, 256658.892099998891354 ], [ 367149.436999998986721, 256665.739000000059605 ], [ 367170.237499997019768, 256685.11879999935627 ], [ 367178.212499998509884, 256695.52760000154376 ], [ 367182.976700000464916, 256704.221400000154972 ], [ 367191.779600001871586, 256712.103900000452995 ], [ 367199.803099997341633, 256716.813700001686811 ], [ 367207.844700001180172, 256719.412599999457598 ], [ 367214.278999999165535, 256721.365100000053644 ], [ 367227.971900001168251, 256723.165899999439716 ], [ 367265.865000002086163, 256723.898299999535084 ], [ 367265.893799997866154, 256720.521000001579523 ], [ 367266.748599998652935, 256714.828499998897314 ], [ 367229.663599997758865, 256713.891699999570847 ], [ 367211.138199999928474, 256711.418000001460314 ], [ 367199.885799996554852, 256707.104100000113249 ], [ 367194.275799997150898, 256703.047400001436472 ], [ 367189.481100000441074, 256697.941899999976158 ], [ 367182.585600003600121, 256683.349899999797344 ], [ 367173.44200000166893, 256672.682500001043081 ], [ 367160.067699998617172, 256660.565000001341105 ], [ 367136.646799996495247, 256645.30009999871254 ], [ 367117.092699997127056, 256638.761900000274181 ], [ 367092.365500003099442, 256634.969000000506639 ], [ 367088.435000002384186, 256633.560100000351667 ], [ 367071.140100002288818, 256634.566599998623133 ], [ 367041.64469999819994, 256635.092599999159575 ], [ 367029.727200001478195, 256635.960099998861551 ], [ 367029.461900003254414, 256645.336500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89034261, "LATITUDE": 18.33192924, "OBJECTID_1": 21503, "PARCEL_NO_": "105603010500", "Tax_Legal_": "28-4 ESTATE CHARLOTTE AMALIE NO.3 NEW QTR", "Name": "PARISH OF THE CATHEDRAL CHURCH OF ALL SAINTS", "Address": "PO BOX 1148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 441000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 600.81996419300003, "SHAPE_Area": 22558.248814 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363004.698399998247623, 255824.189800001680851 ], [ 363048.999499998986721, 255966.277199998497963 ], [ 363193.847900003194809, 255920.279199998825788 ], [ 363149.784500002861023, 255778.95380000025034 ], [ 363004.698399998247623, 255824.189800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044400", "MAP": "A9-388-T91", "PARCEL_NAM": "3", "ACRE": "19.1252", "LONGITUDE": -64.89930061, "LATITUDE": 18.34381397, "OBJECTID_1": 20740, "PARCEL_NO_": "105601044400", "Tax_Legal_": "REM 3(3C) ESTATE DONOE NEW QTR", "Name": "V. I. H. A. HOUSING AUTHORITY", "Address": "4100 Estate Donoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022204, "Country": "United States", "Land_Value": 517500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1038.9828398300001, "SHAPE_Area": 39601.020327400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362009.008699998259544, 257213.462400000542402 ], [ 362043.781599998474121, 257296.495700001716614 ], [ 362048.633900001645088, 257294.846700001507998 ], [ 362067.233000002801418, 257288.66609999909997 ], [ 362074.511399999260902, 257286.192499998956919 ], [ 362082.596100002527237, 257283.725600000470877 ], [ 362089.870899997651577, 257281.674199998378754 ], [ 362114.925899997353554, 257274.913199998438358 ], [ 362130.283600002527237, 257270.605900000780821 ], [ 362147.255699999630451, 257266.10080000013113 ], [ 362156.146700002253056, 257263.640399999916553 ], [ 362161.82150000333786, 257260.098299998790026 ], [ 362178.037699997425079, 257249.676300000399351 ], [ 362195.065499998629093, 257238.627700001001358 ], [ 362215.334799997508526, 257225.705800000578165 ], [ 362227.497800000011921, 257217.7837999984622 ], [ 362231.560000002384186, 257214.228399999439716 ], [ 362252.691299997270107, 257194.76969999819994 ], [ 362277.793099999427795, 257182.520599998533726 ], [ 362299.6570999994874, 257171.722699999809265 ], [ 362317.473300002515316, 257162.791499998420477 ], [ 362319.089500002563, 257162.382500000298023 ], [ 362329.596699997782707, 257159.513199999928474 ], [ 362317.499200001358986, 257139.013999998569489 ], [ 362302.895199999213219, 257135.792500000447035 ], [ 362284.996899999678135, 257128.788899999111891 ], [ 362268.655000001192093, 257118.672499999403954 ], [ 362248.033100001513958, 257101.941500000655651 ], [ 362235.193099997937679, 257083.654100000858307 ], [ 362218.462099999189377, 257068.090399999171495 ], [ 362198.618299998342991, 257065.366799999028444 ], [ 362180.331000000238419, 257071.203200001269579 ], [ 362163.600000001490116, 257082.486800000071526 ], [ 362156.985399998724461, 257096.883299998939037 ], [ 362147.647200003266335, 257124.897999998182058 ], [ 362137.141699999570847, 257148.243500001728535 ], [ 362122.745300002396107, 257162.639899998903275 ], [ 362113.017899997532368, 257165.363600000739098 ], [ 362097.065099999308586, 257161.861800000071526 ], [ 362082.279600001871586, 257159.916299998760223 ], [ 362068.272299997508526, 257155.636300001293421 ], [ 362060.49040000140667, 257149.410799998790026 ], [ 362058.155900001525879, 257142.79619999974966 ], [ 362058.545000001788139, 257136.570700000971556 ], [ 362063.992299996316433, 257123.341600000858307 ], [ 362069.828699998557568, 257112.057900000363588 ], [ 362080.334200002253056, 257097.661499999463558 ], [ 362081.112300001084805, 257087.934099998325109 ], [ 362080.723200000822544, 257084.821400001645088 ], [ 362076.582999996840954, 257081.755100000649691 ], [ 362075.434900000691414, 257083.128100000321865 ], [ 362061.617899999022484, 257095.891699999570847 ], [ 362047.811700001358986, 257107.388900000602007 ], [ 362045.383799999952316, 257108.424499999731779 ], [ 362038.884700000286102, 257114.070799998939037 ], [ 362021.039800003170967, 257126.379299998283386 ], [ 362003.209200002253056, 257136.999099999666214 ], [ 361982.966899998486042, 257146.754799999296665 ], [ 362009.008699998259544, 257213.462400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044400", "MAP": "A9-388-T91", "PARCEL_NAM": "3", "ACRE": "19.1252", "LONGITUDE": -64.89905664, "LATITUDE": 18.34316421, "OBJECTID_1": 20740, "PARCEL_NO_": "105601044400", "Tax_Legal_": "REM 3(3C) ESTATE DONOE NEW QTR", "Name": "V. I. H. A. HOUSING AUTHORITY", "Address": "4100 Estate Donoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022204, "Country": "United States", "Land_Value": 517500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 853.93970129000002, "SHAPE_Area": 4924.8532885699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362058.155900001525879, 257142.79619999974966 ], [ 362060.49040000140667, 257149.410799998790026 ], [ 362068.272299997508526, 257155.636300001293421 ], [ 362082.279600001871586, 257159.916299998760223 ], [ 362097.065099999308586, 257161.861800000071526 ], [ 362113.017899997532368, 257165.363600000739098 ], [ 362122.745300002396107, 257162.639899998903275 ], [ 362137.141699999570847, 257148.243500001728535 ], [ 362147.647200003266335, 257124.897999998182058 ], [ 362156.985399998724461, 257096.883299998939037 ], [ 362163.600000001490116, 257082.486800000071526 ], [ 362180.331000000238419, 257071.203200001269579 ], [ 362198.618299998342991, 257065.366799999028444 ], [ 362218.462099999189377, 257068.090399999171495 ], [ 362235.193099997937679, 257083.654100000858307 ], [ 362248.033100001513958, 257101.941500000655651 ], [ 362268.655000001192093, 257118.672499999403954 ], [ 362284.996899999678135, 257128.788899999111891 ], [ 362302.895199999213219, 257135.792500000447035 ], [ 362317.499200001358986, 257139.013999998569489 ], [ 362306.919699996709824, 257121.087000001221895 ], [ 362288.498800002038479, 257117.505199998617172 ], [ 362267.487800002098083, 257102.330600000917912 ], [ 362253.480400003492832, 257087.545000001788139 ], [ 362237.52759999781847, 257067.701299998909235 ], [ 362219.629399999976158, 257055.639400001615286 ], [ 362202.120200000703335, 257052.137600000947714 ], [ 362183.05460000038147, 257056.806699998676777 ], [ 362163.989100001752377, 257066.923099998384714 ], [ 362151.927199997007847, 257077.039500001817942 ], [ 362146.090800002217293, 257093.770500000566244 ], [ 362139.865299999713898, 257115.55970000103116 ], [ 362129.74889999628067, 257138.905299998819828 ], [ 362120.410700000822544, 257150.578099999576807 ], [ 362108.737899996340275, 257152.523499999195337 ], [ 362087.3378000035882, 257147.076200000941753 ], [ 362071.774099998176098, 257143.963500000536442 ], [ 362069.828699998557568, 257137.348900001496077 ], [ 362072.163199998438358, 257132.679800000041723 ], [ 362079.556000001728535, 257117.505199998617172 ], [ 362092.006899997591972, 257098.828699998557568 ], [ 362093.174199998378754, 257084.043200001120567 ], [ 362090.450599998235703, 257073.92680000141263 ], [ 362086.397600002586842, 257070.017400000244379 ], [ 362076.582999996840954, 257081.755100000649691 ], [ 362080.723200000822544, 257084.821400001645088 ], [ 362081.112300001084805, 257087.934099998325109 ], [ 362080.334200002253056, 257097.661499999463558 ], [ 362069.828699998557568, 257112.057900000363588 ], [ 362063.992299996316433, 257123.341600000858307 ], [ 362058.545000001788139, 257136.570700000971556 ], [ 362058.155900001525879, 257142.79619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601044400", "MAP": "A9-388-T91", "PARCEL_NAM": "3", "ACRE": "19.1252", "LONGITUDE": -64.89931358, "LATITUDE": 18.34294077, "OBJECTID_1": 20740, "PARCEL_NO_": "105601044400", "Tax_Legal_": "REM 3(3C) ESTATE DONOE NEW QTR", "Name": "V. I. H. A. HOUSING AUTHORITY", "Address": "4100 Estate Donoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022204, "Country": "United States", "Land_Value": 517500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 542.98116269900004, "SHAPE_Area": 8197.31280668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362069.828699998557568, 257137.348900001496077 ], [ 362071.774099998176098, 257143.963500000536442 ], [ 362087.3378000035882, 257147.076200000941753 ], [ 362108.737899996340275, 257152.523499999195337 ], [ 362120.410700000822544, 257150.578099999576807 ], [ 362129.74889999628067, 257138.905299998819828 ], [ 362139.865299999713898, 257115.55970000103116 ], [ 362146.090800002217293, 257093.770500000566244 ], [ 362151.927199997007847, 257077.039500001817942 ], [ 362163.989100001752377, 257066.923099998384714 ], [ 362183.05460000038147, 257056.806699998676777 ], [ 362202.120200000703335, 257052.137600000947714 ], [ 362219.629399999976158, 257055.639400001615286 ], [ 362236.945699997246265, 257067.309200000017881 ], [ 362249.936999998986721, 257044.213500000536442 ], [ 362225.11879999935627, 257023.769299998879433 ], [ 362099.841899998486042, 257057.785500001162291 ], [ 362099.9695999994874, 257042.798900000751019 ], [ 362091.73200000077486, 257063.207600001245737 ], [ 362090.110399998724461, 257064.249800000339746 ], [ 362089.284299999475479, 257066.565099999308586 ], [ 362086.397600002586842, 257070.017400000244379 ], [ 362090.450599998235703, 257073.92680000141263 ], [ 362093.174199998378754, 257084.043200001120567 ], [ 362092.006899997591972, 257098.828699998557568 ], [ 362079.556000001728535, 257117.505199998617172 ], [ 362072.163199998438358, 257132.679800000041723 ], [ 362069.828699998557568, 257137.348900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704050400", "MAP": "D9-8039-T007", "PARCEL_NAM": "98-8-4", "ACRE": ".24", "LONGITUDE": -64.87057971, "LATITUDE": 18.33759944, "OBJECTID_1": 23664, "PARCEL_NO_": "105704050400", "Tax_Legal_": "98-8-4 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "SUCKOW, HOWARD & VIRGINIA", "Address": "169 Stephens State Park Rd", "City": "Hackettstown", "State": "New Jersey", "Zip": 7840, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.762000682199997, "SHAPE_Area": 546.20295941899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365169.358300000429153, 256528.824299998581409 ], [ 365189.446599997580051, 256534.133400000631809 ], [ 365191.397600002586842, 256524.245600000023842 ], [ 365193.006800003349781, 256497.528099998831749 ], [ 365175.174400001764297, 256508.359000001102686 ], [ 365169.358300000429153, 256528.824299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704050300", "MAP": "D9-8039-T007", "PARCEL_NAM": "98-8-3", "ACRE": ".23", "LONGITUDE": -64.87064619, "LATITUDE": 18.33786603, "OBJECTID_1": 23663, "PARCEL_NO_": "105704050300", "Tax_Legal_": "98-8-3 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "CLERVIL, WAYSON & LOVELYNE TUNICE", "Address": "PO BOX 10474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.603775321, "SHAPE_Area": 699.71842811600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365160.608900003135204, 256559.610700000077486 ], [ 365183.35980000346899, 256564.982400000095367 ], [ 365189.446599997580051, 256534.133400000631809 ], [ 365169.358300000429153, 256528.824299998581409 ], [ 365160.608900003135204, 256559.610700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404020200", "MAP": "D9-4983-T90", "PARCEL_NAM": "21-73", "ACRE": "7.54", "LONGITUDE": -64.90115418000001, "LATITUDE": 18.31463666, "OBJECTID_1": 37320, "PARCEL_NO_": "107404020200", "Tax_Legal_": "21-73,21-74&23 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SANCTUARY HOLDINGS LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4199100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 788.39207874500005, "SHAPE_Area": 25880.371996099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361957.478000000119209, 254080.834499999880791 ], [ 361976.913999997079372, 254071.072200000286102 ], [ 361997.852899998426437, 254074.198800001293421 ], [ 362000.345600001513958, 254065.564399998635054 ], [ 362009.50450000166893, 254031.653299998492002 ], [ 362015.337499998509884, 254009.536200001835823 ], [ 362026.171999998390675, 253968.250599998980761 ], [ 362033.678800001740456, 253938.969999998807907 ], [ 362057.818899996578693, 253850.297200001776218 ], [ 362063.660899996757507, 253827.124699998646975 ], [ 362029.248499996960163, 253838.854400001466274 ], [ 361855.011900000274181, 253898.244300000369549 ], [ 361890.374600000679493, 253912.043699998408556 ], [ 361919.911399997770786, 253947.115899998694658 ], [ 361909.777099996805191, 254000.861800000071526 ], [ 361936.056400001049042, 254039.706999998539686 ], [ 361920.360600002110004, 254083.69709999859333 ], [ 361957.478000000119209, 254080.834499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032500", "MAP": "D9-5263-T92", "PARCEL_NAM": "19-2-76B", "ACRE": ".36", "LONGITUDE": -64.85940825, "LATITUDE": 18.33451231, "OBJECTID_1": 23942, "PARCEL_NO_": "105803032500", "Tax_Legal_": "SMITH BAY 19-2-76B EAST END QUARTER", "Name": "SEALEY, JR, THEODORE & SYLVANIE SAMUEL", "Address": "PO Box 302354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49400, "Improved_V": 282800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.65646640099999, "SHAPE_Area": 1758.6661696799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366359.798100002110004, 256216.401900000870228 ], [ 366397.881800003349781, 256194.759899999946356 ], [ 366357.931199997663498, 256151.580899998545647 ], [ 366352.996299996972084, 256162.939599998295307 ], [ 366345.654899999499321, 256172.800900001078844 ], [ 366342.390100002288818, 256177.418200001120567 ], [ 366359.798100002110004, 256216.401900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803039900", "MAP": "D9-6438-T98", "PARCEL_NAM": null, "ACRE": ".16", "LONGITUDE": -64.85765802, "LATITUDE": 18.3332769, "OBJECTID_1": 23995, "PARCEL_NO_": "105803039900", "Tax_Legal_": "19-2-149 REM.,-149-1,-149-17&ROW'S A THRU G NO. 1,2 & 3 EASTEND QUARTER", "Name": "SOOKRAM, SIEWDATH", "Address": "6076 Estate Smith Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.617418706, "SHAPE_Area": 726.37948510599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366523.279799997806549, 256068.928399998694658 ], [ 366542.799699999392033, 256060.380800001323223 ], [ 366562.978399999439716, 256051.189599998295307 ], [ 366564.867899999022484, 256050.581500001251698 ], [ 366568.014700002968311, 256049.859400000423193 ], [ 366571.285999998450279, 256049.263199999928474 ], [ 366573.046800002455711, 256049.0287000015378 ], [ 366577.195200003683567, 256048.689800001680851 ], [ 366581.214900001883507, 256048.724399998784065 ], [ 366587.007799997925758, 256048.964499998837709 ], [ 366583.825699999928474, 256043.87220000103116 ], [ 366581.493100002408028, 256033.720600001513958 ], [ 366555.118500001728535, 256044.878699999302626 ], [ 366553.353399999439716, 256045.612700000405312 ], [ 366550.962499998509884, 256046.091600000858307 ], [ 366549.080399997532368, 256045.825699999928474 ], [ 366547.578400000929832, 256045.188400000333786 ], [ 366545.338899999856949, 256042.671900000423193 ], [ 366540.168300002813339, 256044.999800000339746 ], [ 366540.906999997794628, 256046.754299998283386 ], [ 366541.012199997901917, 256049.127599999308586 ], [ 366540.243400000035763, 256050.869100000709295 ], [ 366538.218599997460842, 256052.599800001829863 ], [ 366534.940800003707409, 256053.945099998265505 ], [ 366516.081799998879433, 256062.095100000500679 ], [ 366523.279799997806549, 256068.928399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803040400", "MAP": "D9-7465-T004", "PARCEL_NAM": "19-2-149-15", "ACRE": "0.33", "LONGITUDE": -64.8598441, "LATITUDE": 18.33557917, "OBJECTID_1": 23999, "PARCEL_NO_": "105803040400", "Tax_Legal_": "19-2-149-15 SMITH BAY NO. 1,2 & 3 EASTEND QUARTER", "Name": "DURRANT, FRANK", "Address": "6797 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021382, "Country": "United States", "Land_Value": 20000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.942038637, "SHAPE_Area": 1218.84292693 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366297.390299998223782, 256325.948699999600649 ], [ 366328.609700001776218, 256318.784200001507998 ], [ 366343.211599998176098, 256292.374499998986721 ], [ 366340.66669999808073, 256289.801199998706579 ], [ 366345.866099998354912, 256282.191500000655651 ], [ 366303.667999997735023, 256291.933800000697374 ], [ 366303.50620000064373, 256292.990299999713898 ], [ 366297.390299998223782, 256325.948699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504030100", "MAP": "A9-369-T89", "PARCEL_NAM": "1-2", "ACRE": null, "LONGITUDE": -64.90073379, "LATITUDE": 18.33553326, "OBJECTID_1": 20432, "PARCEL_NO_": "105504030100", "Tax_Legal_": "PARCEL C,D,E,F,G&H EST.RAPHUNE 5B NEW QTR.&PARCEL 1-2 THRU 1-11 ESTATE DONOE 2A NEW QUARTER", "Name": "MARKET SQUARE EAST INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3677300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1032.6919411599999, "SHAPE_Area": 42378.240876700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362201.076700001955032, 256230.378299999982119 ], [ 362145.684900000691414, 256223.325500000268221 ], [ 362092.106700003147125, 256205.466099999845028 ], [ 362016.700300000607967, 256184.299400001764297 ], [ 361972.382500000298023, 256188.268100000917912 ], [ 361811.647799998521805, 256220.67960000038147 ], [ 361782.820500001311302, 256227.653999999165535 ], [ 361783.385999999940395, 256230.727400001138449 ], [ 361787.826700001955032, 256242.802400000393391 ], [ 361799.123400002717972, 256249.668200001120567 ], [ 361840.717600002884865, 256254.153999999165535 ], [ 361853.950499996542931, 256255.769400000572205 ], [ 361862.588699996471405, 256263.741500001400709 ], [ 361870.406999997794628, 256279.230500001460314 ], [ 361872.942900002002716, 256292.794300001114607 ], [ 361871.903800003230572, 256371.784299999475479 ], [ 361871.998700000345707, 256372.256999999284744 ], [ 361895.070500001311302, 256362.197299998253584 ], [ 361923.926399998366833, 256351.153200000524521 ], [ 361963.0287000015378, 256336.809200000017881 ], [ 361988.084600001573563, 256327.614199999719858 ], [ 362010.097199998795986, 256320.27479999884963 ], [ 362036.244300000369549, 256316.355599999427795 ], [ 362062.34740000218153, 256317.7027000002563 ], [ 362077.119199998676777, 256316.321699999272823 ], [ 362115.811700001358986, 256305.736400000751019 ], [ 362148.067500002682209, 256295.473400000482798 ], [ 362178.778099998831749, 256288.959399998188019 ], [ 362196.061700001358986, 256288.791900001466274 ], [ 362200.86429999768734, 256273.977600000798702 ], [ 362203.500799998641014, 256248.456900000572205 ], [ 362202.777199998497963, 256238.740600001066923 ], [ 362201.076700001955032, 256230.378299999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502041700", "MAP": "A9-568-T001", "PARCEL_NAM": "1-5-A-1", "ACRE": "1.025", "LONGITUDE": -64.90104946, "LATITUDE": 18.33907071, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.75595705400002, "SHAPE_Area": 4707.9805392999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361982.626000002026558, 256599.149399999529123 ], [ 361947.912600003182888, 256563.377599999308586 ], [ 361947.701399996876717, 256576.523699998855591 ], [ 361945.062600001692772, 256740.785000000149012 ], [ 361952.574000000953674, 256738.884399998933077 ], [ 361969.567699998617172, 256731.8462999984622 ], [ 361982.021099999547005, 256605.296399999409914 ], [ 361982.626000002026558, 256599.149399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502042400", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-74", "ACRE": ".13", "LONGITUDE": -64.90296475, "LATITUDE": 18.3388119, "OBJECTID_1": 19929, "PARCEL_NO_": "105502042400", "Tax_Legal_": "1-13-74 ESTATE DONOE NO.2A NEW QTR", "Name": "RAWLINS, SHAWN V. & AVRIL M. HODGE", "Address": "129-69 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10500, "Improved_V": 200600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.637454976, "SHAPE_Area": 660.78201622200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361755.857299998402596, 256637.023299999535084 ], [ 361775.072999998927116, 256630.228900000452995 ], [ 361775.217699997127056, 256629.193999998271465 ], [ 361775.44539999961853, 256625.999499998986721 ], [ 361773.060400001704693, 256622.78319999948144 ], [ 361767.848399996757507, 256621.141399998217821 ], [ 361769.240500003099442, 256608.376499999314547 ], [ 361765.469099998474121, 256608.344999998807907 ], [ 361752.496200002729893, 256605.864399999380112 ], [ 361751.979900002479553, 256605.7489 ], [ 361746.0945999994874, 256626.753100000321865 ], [ 361747.496399998664856, 256627.364100001752377 ], [ 361743.653599999845028, 256634.1739999987185 ], [ 361742.614900000393391, 256636.014699999243021 ], [ 361743.778499998152256, 256635.436999998986721 ], [ 361745.383824309508782, 256635.541831059905235 ], [ 361746.948722330562305, 256635.914859047712525 ], [ 361748.428712806489784, 256636.545480873377528 ], [ 361749.781727926863823, 256637.415771503001451 ], [ 361750.96930907672504, 256638.500993465713691 ], [ 361751.957699999213219, 256639.770300000905991 ], [ 361755.840599998831749, 256639.020899999886751 ], [ 361755.857299998402596, 256637.023299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502042000", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-59", "ACRE": null, "LONGITUDE": -64.90203549, "LATITUDE": 18.33908092, "OBJECTID_1": 19925, "PARCEL_NO_": "105502042000", "Tax_Legal_": "1-13-59 ESTATE DONOE NO.2A NEW QTR", "Name": "BROOKES, CECIL F. & CYNTHIA U.", "Address": "4002 Donoe Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022202, "Country": "United States", "Land_Value": 9300, "Improved_V": 269400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.522749789, "SHAPE_Area": 532.83837767700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361856.590700000524521, 256635.449400000274181 ], [ 361856.275200001895428, 256635.07209999859333 ], [ 361854.936039224034175, 256636.017785017262213 ], [ 361853.457299999892712, 256636.725600000470877 ], [ 361845.567199997603893, 256639.64750000089407 ], [ 361846.789800003170967, 256644.081000000238419 ], [ 361844.249799996614456, 256645.139299999922514 ], [ 361852.359300002455711, 256669.662399999797344 ], [ 361860.124799996614456, 256667.343199998140335 ], [ 361864.594875538838096, 256666.088999606174184 ], [ 361868.905500418040901, 256664.364729578664992 ], [ 361873.007399998605251, 256662.190099999308586 ], [ 361857.753700003027916, 256641.635600000619888 ], [ 361858.756499998271465, 256640.769499998539686 ], [ 361860.082000002264977, 256639.624699998646975 ], [ 361856.590700000524521, 256635.449400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502042500", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-57", "ACRE": ".0785", "LONGITUDE": -64.90217846, "LATITUDE": 18.33910886, "OBJECTID_1": 19930, "PARCEL_NO_": "105502042500", "Tax_Legal_": "1-13-57 ESTATE DONOE NO.2A NEW QTR", "Name": "PETERSEN, ELBERT A. & STACY I.", "Address": "PO BOX 1621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6400, "Improved_V": 213400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.0726029705, "SHAPE_Area": 397.89547017899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361846.789800003170967, 256644.081000000238419 ], [ 361845.567199997603893, 256639.64750000089407 ], [ 361840.122299998998642, 256641.699700001627207 ], [ 361831.545699998736382, 256645.11540000140667 ], [ 361832.819799996912479, 256648.420200001448393 ], [ 361831.126400001347065, 256649.584300000220537 ], [ 361840.54839999973774, 256672.773299999535084 ], [ 361844.587499998509884, 256671.7652000002563 ], [ 361852.359300002455711, 256669.662399999797344 ], [ 361844.249799996614456, 256645.139299999922514 ], [ 361846.789800003170967, 256644.081000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502042300", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-55", "ACRE": null, "LONGITUDE": -64.90228983, "LATITUDE": 18.33914753, "OBJECTID_1": 19928, "PARCEL_NO_": "105502042300", "Tax_Legal_": "1-13-55 ESTATE DONOE NO.2A NEW QTR", "Name": "SEBASTIEN, ROBERTA", "Address": "PO Box 8176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7400, "Improved_V": 232100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.321317797299997, "SHAPE_Area": 324.613755647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361832.819799996912479, 256648.420200001448393 ], [ 361831.545699998736382, 256645.11540000140667 ], [ 361822.765600003302097, 256649.1081000007689 ], [ 361819.805399999022484, 256650.576900001615286 ], [ 361822.024700000882149, 256654.135200001299381 ], [ 361819.908100001513958, 256655.510999999940395 ], [ 361830.358800001442432, 256675.424300000071526 ], [ 361833.905699998140335, 256674.307000000029802 ], [ 361840.54839999973774, 256672.773299999535084 ], [ 361831.126400001347065, 256649.584300000220537 ], [ 361832.819799996912479, 256648.420200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502042600", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-38", "ACRE": ".08", "LONGITUDE": -64.90314712, "LATITUDE": 18.33976217, "OBJECTID_1": 19931, "PARCEL_NO_": "105502042600", "Tax_Legal_": "1-13-38 DONOE \n2A NEW QUARTER", "Name": "SMITH, WILBERT A", "Address": "PO Box 7324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5200, "Improved_V": 195300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.20222456899999, "SHAPE_Area": 484.93648097099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361733.931199997663498, 256711.3564000017941 ], [ 361731.828500002622604, 256709.231100000441074 ], [ 361729.13400000333786, 256711.25730000063777 ], [ 361722.64360000193119, 256718.081599999219179 ], [ 361724.013400003314018, 256719.664099998772144 ], [ 361722.594899997115135, 256721.050700001418591 ], [ 361747.344099998474121, 256746.410100001841784 ], [ 361749.901100002229214, 256749.030200000852346 ], [ 361750.102658141928259, 256744.412879183568293 ], [ 361751.063299998641014, 256739.892099998891354 ], [ 361752.245065236929804, 256736.254547379619908 ], [ 361753.647900000214577, 256732.696400001645088 ], [ 361751.378600001335144, 256730.595400001853704 ], [ 361732.310099996626377, 256712.941100001335144 ], [ 361733.931199997663498, 256711.3564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502042200", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-34", "ACRE": ".16", "LONGITUDE": -64.90334824, "LATITUDE": 18.33993289, "OBJECTID_1": 19927, "PARCEL_NO_": "105502042200", "Tax_Legal_": "1-13-34 ESTATE DONOE NO.2A NEW QTR", "Name": "WILKES, EDRED & CAVELL", "Address": "PO Box 303501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14900, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.29278860300001, "SHAPE_Area": 589.68887688899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361716.090300001204014, 256729.786400001496077 ], [ 361713.800899997353554, 256728.241700001060963 ], [ 361708.563799999654293, 256734.798000000417233 ], [ 361705.512569434242323, 256739.578762166405795 ], [ 361702.806760919687804, 256744.563167359912768 ], [ 361700.459899999201298, 256749.726300001144409 ], [ 361702.714199997484684, 256751.467199999839067 ], [ 361712.629299998283386, 256759.124400001019239 ], [ 361739.518899999558926, 256753.482200000435114 ], [ 361714.864399999380112, 256732.173500001430511 ], [ 361716.090300001204014, 256729.786400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90330057, "LATITUDE": 18.33899212, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.41190539900001, "SHAPE_Area": 1463.0399575 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361732.909800000488758, 256601.483500000089407 ], [ 361717.081399999558926, 256595.339299999177456 ], [ 361712.764799997210503, 256701.085700001567602 ], [ 361716.235299997031689, 256697.905299998819828 ], [ 361719.877874136902392, 256688.201850148558151 ], [ 361724.062762234709226, 256678.719656469329493 ], [ 361728.776600003242493, 256669.489000000059605 ], [ 361729.7875556537183, 256668.03401538048638 ], [ 361730.569735594617669, 256666.444296502682846 ], [ 361731.105574694462121, 256664.75554310757434 ], [ 361731.383039808599278, 256663.005678918329068 ], [ 361731.395900003612041, 256661.234000001102686 ], [ 361733.629699997603893, 256644.889800000935793 ], [ 361735.444099999964237, 256642.342700000852346 ], [ 361736.973617894109339, 256640.432855936174747 ], [ 361738.716099999845028, 256638.71510000154376 ], [ 361730.555100001394749, 256629.402800001204014 ], [ 361732.909800000488758, 256601.483500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502042100", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-61", "ACRE": ".19", "LONGITUDE": -64.90188201, "LATITUDE": 18.33894813, "OBJECTID_1": 19926, "PARCEL_NO_": "105502042100", "Tax_Legal_": "1-13-61 ESTATE DONOE NO.2A NEW QTR", "Name": "MELENDEZ, JORGE & SOCORRO", "Address": "PO Box 12312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17700, "Improved_V": 206600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.54918596900001, "SHAPE_Area": 885.43553671500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361862.453100003302097, 256623.602200001478195 ], [ 361861.742132238461636, 256624.07655367066036 ], [ 361861.115266708482523, 256624.657523698697332 ], [ 361860.588327861856669, 256625.330444212566363 ], [ 361860.17461762088351, 256626.078328162548132 ], [ 361859.884579591220245, 256626.882296139170649 ], [ 361859.725535425706767, 256627.722052960831206 ], [ 361859.701499998569489, 256628.576400000602007 ], [ 361859.442392917932011, 256630.039035595458699 ], [ 361858.964000001549721, 256631.445300001651049 ], [ 361858.260556575900409, 256632.789556931238621 ], [ 361857.356989515013993, 256634.008337433362613 ], [ 361856.275200001895428, 256635.07209999859333 ], [ 361856.590700000524521, 256635.449400000274181 ], [ 361860.082000002264977, 256639.624699998646975 ], [ 361858.756499998271465, 256640.769499998539686 ], [ 361857.753700003027916, 256641.635600000619888 ], [ 361873.007399998605251, 256662.190099999308586 ], [ 361876.965199999511242, 256659.505300000309944 ], [ 361880.085912400681991, 256656.887007447105134 ], [ 361882.947540221270174, 256653.987802728341194 ], [ 361885.524899996817112, 256650.833200000226498 ], [ 361886.568951849010773, 256646.202207857131725 ], [ 361887.01391735865036, 256641.475883895036532 ], [ 361886.852530681935605, 256636.731404277641559 ], [ 361886.087427102727816, 256632.046241632371675 ], [ 361884.731100000441074, 256627.496899999678135 ], [ 361883.461585984565318, 256625.692081689456245 ], [ 361881.943271426775027, 256624.090908409358235 ], [ 361880.208391203836072, 256622.727374184789369 ], [ 361878.293778032879345, 256621.630427798256278 ], [ 361876.24008048675023, 256620.823358186520636 ], [ 361874.090899996459484, 256620.323300000280142 ], [ 361871.61363790766336, 256620.222936682926957 ], [ 361869.151313336624298, 256620.512519069539849 ], [ 361866.764926900563296, 256621.18487316503888 ], [ 361864.513597956683952, 256622.223342345299898 ], [ 361862.453100003302097, 256623.602200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501012200", "MAP": "D9-8394-T010", "PARCEL_NAM": "1-8", "ACRE": "0.930", "LONGITUDE": -64.90865707, "LATITUDE": 18.34684583, "OBJECTID_1": 19676, "PARCEL_NO_": "105501012200", "Tax_Legal_": "CONSOLIDATED 1-8 WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "HARRIS, RASHA A. & AIKEEM J.", "Address": "PO BOX 9196", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 132600, "Improved_V": 531400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.39761865100002, "SHAPE_Area": 3870.4288784800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361124.178199999034405, 257550.559500001370907 ], [ 361182.005300000309944, 257534.561200000345707 ], [ 361175.944499999284744, 257507.452500000596046 ], [ 361161.907399997115135, 257451.397799998521805 ], [ 361156.252400003373623, 257452.618099998682737 ], [ 361150.574100002646446, 257456.582400001585484 ], [ 361132.585199996829033, 257485.777199998497963 ], [ 361126.060999996960163, 257494.378600001335144 ], [ 361119.553000003099442, 257501.080400001257658 ], [ 361122.504900000989437, 257533.190699998289347 ], [ 361124.178199999034405, 257550.559500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601023500", "MAP": "D9-7316-T003", "PARCEL_NAM": "3K-1", "ACRE": ".40", "LONGITUDE": -64.87896933, "LATITUDE": 18.32677282, "OBJECTID_1": 37939, "PARCEL_NO_": "107601023500", "Tax_Legal_": "3K-1 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "ESPRIT, EDWARD", "Address": "4003 Raphune Hill Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022904, "Country": "United States", "Land_Value": 47500, "Improved_V": 109300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.547229168, "SHAPE_Area": 1833.89239787 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364311.698399998247623, 255292.952100001275539 ], [ 364301.498700000345707, 255281.401799999177456 ], [ 364282.92509999871254, 255297.606899999082088 ], [ 364276.285800002515316, 255303.469300001859665 ], [ 364303.866899996995926, 255339.656500000506639 ], [ 364309.1570999994874, 255337.27930000051856 ], [ 364338.213200002908707, 255323.474399998784065 ], [ 364333.329800002276897, 255316.472800001502037 ], [ 364331.305200003087521, 255312.361400000751019 ], [ 364331.163000002503395, 255310.646999999880791 ], [ 364325.590999998152256, 255306.171500001102686 ], [ 364311.698399998247623, 255292.952100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034900", "MAP": "A9-9129-T016", "PARCEL_NAM": "3J-3-1", "ACRE": "0.27", "LONGITUDE": -64.87869221, "LATITUDE": 18.32577652, "OBJECTID_1": 38002, "PARCEL_NO_": "107601034900", "Tax_Legal_": "3J-3 REM MARIENDAHL NO.3 REDHOOK QTR", "Name": "DRAGIN, JEAN", "Address": "6803 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 119500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.331035445, "SHAPE_Area": 1125.27816319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364314.789899997413158, 255194.197399999946356 ], [ 364325.942100003361702, 255223.53999999910593 ], [ 364364.171499997377396, 255205.510899998247623 ], [ 364364.703299999237061, 255205.455800000578165 ], [ 364336.345200002193451, 255180.647399999201298 ], [ 364314.789899997413158, 255194.197399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "107601029500", "MAP": "D9-6791-T000", "PARCEL_NAM": "3J-2A", "ACRE": "0.23", "LONGITUDE": -64.87856683, "LATITUDE": 18.32480264, "OBJECTID_1": 37953, "PARCEL_NO_": "107601029500", "Tax_Legal_": "3J-2A,-2B,-4K,-4J, EST.MARIEN 3 RED HOOK QTR", "Name": "MOSES, MAGDALANE", "Address": "C/O Ira Moses", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.781796836, "SHAPE_Area": 718.75593719799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364337.071599997580051, 255081.633600000292063 ], [ 364344.425399996340275, 255111.336100000888109 ], [ 364346.016999997198582, 255118.257800001651049 ], [ 364356.30460000038147, 255109.825399998575449 ], [ 364362.375900000333786, 255103.754099998623133 ], [ 364362.54450000077486, 255093.297899998724461 ], [ 364356.726599998772144, 255073.628400001674891 ], [ 364347.46169999986887, 255077.426899999380112 ], [ 364337.071599997580051, 255081.633600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022200", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-2F", "ACRE": ".25", "LONGITUDE": -64.87974488, "LATITUDE": 18.32573783, "OBJECTID_1": 37931, "PARCEL_NO_": "107601022200", "Tax_Legal_": "3J-2F,-2E,-3C,-3B,-4N EST MARIEN 3 RED HOOK QTR", "Name": "MONSANTO, DOCENA", "Address": "14 Fieldstone Dr", "City": "Hartsdale", "State": "New York", "Zip": 10530, "Country": "United States", "Land_Value": 137600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.99949052900001, "SHAPE_Area": 1559.7024010600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364252.83669999986887, 255195.328299999237061 ], [ 364234.86429999768734, 255167.146499998867512 ], [ 364210.741599999368191, 255188.439399998635054 ], [ 364196.939499996602535, 255199.364900000393391 ], [ 364217.354699999094009, 255226.150199998170137 ], [ 364228.124300003051758, 255214.728300001472235 ], [ 364240.001299999654293, 255205.226799998432398 ], [ 364252.83669999986887, 255195.328299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601029500", "MAP": "D9-6791-T000", "PARCEL_NAM": "3J-2B", "ACRE": "0.23", "LONGITUDE": -64.87878173, "LATITUDE": 18.32501479, "OBJECTID_1": 37953, "PARCEL_NO_": "107601029500", "Tax_Legal_": "3J-2A,-2B,-4K,-4J, EST.MARIEN 3 RED HOOK QTR", "Name": "MOSES, MAGDALANE", "Address": "C/O Ira Moses", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.024247171, "SHAPE_Area": 834.61556498699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364346.016999997198582, 255118.257800001651049 ], [ 364341.243299998342991, 255098.803199999034405 ], [ 364332.904100000858307, 255102.107599999755621 ], [ 364312.297200001776218, 255110.272999998182058 ], [ 364308.365199998021126, 255111.831000000238419 ], [ 364319.937100000679493, 255139.499899998307228 ], [ 364323.4949000030756, 255136.602000001817942 ], [ 364346.016999997198582, 255118.257800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601023400", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-2C", "ACRE": ".23", "LONGITUDE": -64.87903646, "LATITUDE": 18.32517915, "OBJECTID_1": 37938, "PARCEL_NO_": "107601023400", "Tax_Legal_": "3J-3L,-3F,-3D,-2D,-2C EST.MARIEN 3 RED HOOK QTR", "Name": "WILLIAMS, VANITA", "Address": "ESTATE SMITH BAY #60-57", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.545970483, "SHAPE_Area": 989.79303079900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364319.937100000679493, 255139.499899998307228 ], [ 364308.365199998021126, 255111.831000000238419 ], [ 364293.614500001072884, 255122.94539999961853 ], [ 364288.645099997520447, 255126.689800001680851 ], [ 364277.678000003099442, 255134.953299999237061 ], [ 364299.642599999904633, 255157.864100001752377 ], [ 364304.136399999260902, 255154.003299999982119 ], [ 364306.280199997127056, 255151.905099999159575 ], [ 364314.084799997508526, 255144.266600001603365 ], [ 364315.815800003707409, 255142.856699999421835 ], [ 364319.937100000679493, 255139.499899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601023400", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-2D", "ACRE": ".23", "LONGITUDE": -64.87923954, "LATITUDE": 18.32535247, "OBJECTID_1": 37938, "PARCEL_NO_": "107601023400", "Tax_Legal_": "3J-3L,-3F,-3D,-2D,-2C EST.MARIEN 3 RED HOOK QTR", "Name": "WILLIAMS, VANITA", "Address": "ESTATE SMITH BAY #60-57", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.816854191, "SHAPE_Area": 810.24539218799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364299.642599999904633, 255157.864100001752377 ], [ 364277.678000003099442, 255134.953299999237061 ], [ 364266.598600000143051, 255142.858300000429153 ], [ 364258.970799997448921, 255148.300700001418591 ], [ 364278.971500001847744, 255174.917599998414516 ], [ 364289.108000002801418, 255166.91499999910593 ], [ 364299.642599999904633, 255157.864100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022200", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-2E", "ACRE": ".23", "LONGITUDE": -64.87945207, "LATITUDE": 18.32550797, "OBJECTID_1": 37931, "PARCEL_NO_": "107601022200", "Tax_Legal_": "3J-2F,-2E,-3C,-3B,-4N EST MARIEN 3 RED HOOK QTR", "Name": "MONSANTO, DOCENA", "Address": "14 Fieldstone Dr", "City": "Hartsdale", "State": "New York", "Zip": 10530, "Country": "United States", "Land_Value": 137600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.518757776, "SHAPE_Area": 1074.34912773 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364258.970799997448921, 255148.300700001418591 ], [ 364244.593400001525879, 255158.558800000697374 ], [ 364241.802699998021126, 255161.022100001573563 ], [ 364234.86429999768734, 255167.146499998867512 ], [ 364252.83669999986887, 255195.328299999237061 ], [ 364264.978000000119209, 255185.96510000154376 ], [ 364278.971500001847744, 255174.917599998414516 ], [ 364258.970799997448921, 255148.300700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601035000", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-4", "ACRE": "1.0604", "LONGITUDE": -64.87878294, "LATITUDE": 18.3262084, "OBJECTID_1": 38003, "PARCEL_NO_": "107601035000", "Tax_Legal_": "3J-4 REM MARIENDAHL NO.3 RED HOOK QTR", "Name": "DRAGIN, JEAN", "Address": "6803 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 417.45491081300003, "SHAPE_Area": 4274.1533688600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364318.109399996697903, 255265.575300000607967 ], [ 364329.735799998044968, 255254.619699999690056 ], [ 364340.929499998688698, 255246.116799999028444 ], [ 364349.226199999451637, 255239.227099999785423 ], [ 364360.374700002372265, 255236.046399999409914 ], [ 364380.186700001358986, 255231.301600001752377 ], [ 364397.492499999701977, 255230.629700001329184 ], [ 364418.325900003314018, 255231.559900000691414 ], [ 364415.677799999713898, 255208.597600001841784 ], [ 364369.640100002288818, 255212.928800001740456 ], [ 364365.107900001108646, 255213.680100001394749 ], [ 364360.057199999690056, 255216.269900001585484 ], [ 364271.949100002646446, 255258.434599999338388 ], [ 364272.180399999022484, 255260.806000001728535 ], [ 364272.923500001430511, 255262.128600001335144 ], [ 364266.860500000417233, 255265.499600000679493 ], [ 364265.118400000035763, 255263.378699999302626 ], [ 364263.614399999380112, 255262.839400000870228 ], [ 364261.05120000243187, 255264.525699999183416 ], [ 364250.458499997854233, 255269.583200000226498 ], [ 364276.285800002515316, 255303.469300001859665 ], [ 364282.92509999871254, 255297.606899999082088 ], [ 364301.498700000345707, 255281.401799999177456 ], [ 364306.081500001251698, 255275.299400001764297 ], [ 364318.109399996697903, 255265.575300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601023400", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-3F", "ACRE": ".26", "LONGITUDE": -64.87839787, "LATITUDE": 18.32554108, "OBJECTID_1": 37938, "PARCEL_NO_": "107601023400", "Tax_Legal_": "3J-3L,-3F,-3D,-2D,-2C EST.MARIEN 3 RED HOOK QTR", "Name": "WILLIAMS, VANITA", "Address": "ESTATE SMITH BAY #60-57", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.08043895099999, "SHAPE_Area": 1378.6750794 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364376.764700002968311, 255154.488400001078844 ], [ 364375.103900000452995, 255152.951099999248981 ], [ 364370.421700000762939, 255156.7989999987185 ], [ 364336.464599996805191, 255180.751899998635054 ], [ 364356.971900001168251, 255198.692099999636412 ], [ 364394.963699996471405, 255175.910100001841784 ], [ 364400.115900002419949, 255172.070500001311302 ], [ 364376.764700002968311, 255154.488400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601029600", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-3G", "ACRE": ".31", "LONGITUDE": -64.87811717, "LATITUDE": 18.32568592, "OBJECTID_1": 37954, "PARCEL_NO_": "107601029600", "Tax_Legal_": "3J-3E & 3J-3G MARIENDAHL & ROW 3J REMAINDER NO.3 RED HOOK QTR", "Name": "ESTATE OF VANITA WILLIAMS", "Address": "6057 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.193726981, "SHAPE_Area": 1368.15347004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364445.30969999730587, 255199.367600001394749 ], [ 364431.374799996614456, 255191.3766999989748 ], [ 364419.627300001680851, 255187.190999999642372 ], [ 364403.752199999988079, 255174.808400001376867 ], [ 364400.115900002419949, 255172.070500001311302 ], [ 364394.963699996471405, 255175.910100001841784 ], [ 364356.971900001168251, 255198.692099999636412 ], [ 364364.703299999237061, 255205.455800000578165 ], [ 364371.2179000005126, 255204.780900001525879 ], [ 364377.256300002336502, 255204.305599998682737 ], [ 364385.056900002062321, 255203.582100000232458 ], [ 364399.405500002205372, 255201.597800001502037 ], [ 364409.462099999189377, 255201.683200001716614 ], [ 364416.007799997925758, 255200.685699999332428 ], [ 364419.278499998152256, 255200.450199998915195 ], [ 364421.545699998736382, 255199.942999999970198 ], [ 364445.30969999730587, 255199.367600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022200", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-3B", "ACRE": ".25", "LONGITUDE": -64.87887505, "LATITUDE": 18.32551467, "OBJECTID_1": 37931, "PARCEL_NO_": "107601022200", "Tax_Legal_": "3J-2F,-2E,-3C,-3B,-4N EST MARIEN 3 RED HOOK QTR", "Name": "MONSANTO, DOCENA", "Address": "14 Fieldstone Dr", "City": "Hartsdale", "State": "New York", "Zip": 10530, "Country": "United States", "Land_Value": 137600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.76477049499999, "SHAPE_Area": 883.69683024899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364298.26519999653101, 255168.687100000679493 ], [ 364314.789899997413158, 255194.197399999946356 ], [ 364336.345200002193451, 255180.647399999201298 ], [ 364319.506300002336502, 255148.946699999272823 ], [ 364310.286100000143051, 255157.850299999117851 ], [ 364303.739500001072884, 255164.172200001776218 ], [ 364298.26519999653101, 255168.687100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601029600", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-3E", "ACRE": ".25", "LONGITUDE": -64.87952004, "LATITUDE": 18.32597682, "OBJECTID_1": 37954, "PARCEL_NO_": "107601029600", "Tax_Legal_": "3J-3E & 3J-3G MARIENDAHL & ROW 3J REMAINDER NO.3 RED HOOK QTR", "Name": "ESTATE OF VANITA WILLIAMS", "Address": "6057 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 70000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.11992220100001, "SHAPE_Area": 1045.5409856399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364275.102899998426437, 255219.145300000905991 ], [ 364260.633799999952316, 255199.602400001138449 ], [ 364244.933499999344349, 255212.396800000220537 ], [ 364233.500100001692772, 255222.858500000089407 ], [ 364222.321400001645088, 255232.666700001806021 ], [ 364232.511900000274181, 255246.036899998784065 ], [ 364243.980800002813339, 255238.709100000560284 ], [ 364275.102899998426437, 255219.145300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601023400", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-3D", "ACRE": ".24", "LONGITUDE": -64.879249, "LATITUDE": 18.32578617, "OBJECTID_1": 37938, "PARCEL_NO_": "107601023400", "Tax_Legal_": "3J-3L,-3F,-3D,-2D,-2C EST.MARIEN 3 RED HOOK QTR", "Name": "WILLIAMS, VANITA", "Address": "ESTATE SMITH BAY #60-57", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.6871050357, "SHAPE_Area": 605.61114279499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364295.375500001013279, 255206.401599999517202 ], [ 364278.560099996626377, 255184.938700001686811 ], [ 364275.261799998581409, 255187.658900000154972 ], [ 364272.94200000166893, 255189.572200000286102 ], [ 364260.633799999952316, 255199.602400001138449 ], [ 364275.102899998426437, 255219.145300000905991 ], [ 364291.051700003445148, 255209.119600001722574 ], [ 364295.375500001013279, 255206.401599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022200", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-3C", "ACRE": ".26", "LONGITUDE": -64.87906915000001, "LATITUDE": 18.32565615, "OBJECTID_1": 37931, "PARCEL_NO_": "107601022200", "Tax_Legal_": "3J-2F,-2E,-3C,-3B,-4N EST MARIEN 3 RED HOOK QTR", "Name": "MONSANTO, DOCENA", "Address": "14 Fieldstone Dr", "City": "Hartsdale", "State": "New York", "Zip": 10530, "Country": "United States", "Land_Value": 137600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.13426733199999, "SHAPE_Area": 696.57170489199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364314.789899997413158, 255194.197399999946356 ], [ 364298.26519999653101, 255168.687100000679493 ], [ 364293.512599997222424, 255172.606800001114607 ], [ 364278.560099996626377, 255184.938700001686811 ], [ 364295.375500001013279, 255206.401599999517202 ], [ 364310.330300003290176, 255197.000799998641014 ], [ 364314.789899997413158, 255194.197399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601023100", "MAP": "D9-6871-T000", "PARCEL_NAM": "3J-4S", "ACRE": null, "LONGITUDE": -64.87748085, "LATITUDE": 18.32593773, "OBJECTID_1": 37936, "PARCEL_NO_": "107601023100", "Tax_Legal_": "3J-4S ESTATE MARIENDAHL #3 RED HOOK QTR", "Name": "MONSANTO, PAULINE L.", "Address": "PO Box 1673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 77100, "Improved_V": 93700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.34977039200001, "SHAPE_Area": 2433.38322419 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364505.222000002861023, 255238.150100000202656 ], [ 364512.129799999296665, 255213.926500000059605 ], [ 364489.127300001680851, 255206.309000000357628 ], [ 364476.08049999922514, 255203.039000000804663 ], [ 364472.562899999320507, 255202.745799999684095 ], [ 364471.294699996709824, 255204.051399998366833 ], [ 364471.53490000218153, 255205.369699999690056 ], [ 364473.537299998104572, 255206.439800001680851 ], [ 364465.427100002765656, 255214.005699999630451 ], [ 364463.934299997985363, 255212.150100000202656 ], [ 364460.932899996638298, 255210.281800001859665 ], [ 364457.17960000038147, 255208.143699999898672 ], [ 364453.670999996364117, 255206.797600001096725 ], [ 364447.641500003635883, 255206.219799999147654 ], [ 364439.335799999535084, 255207.202300000935793 ], [ 364420.973499998450279, 255208.099399998784065 ], [ 364415.677799999713898, 255208.597600001841784 ], [ 364418.325900003314018, 255231.559900000691414 ], [ 364420.138899996876717, 255231.640900000929832 ], [ 364454.310999996960163, 255233.568900000303984 ], [ 364479.013300001621246, 255235.006999999284744 ], [ 364497.122000001370907, 255236.798599999397993 ], [ 364505.222000002861023, 255238.150100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601023000", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-4R", "ACRE": ".31", "LONGITUDE": -64.87688045, "LATITUDE": 18.32602856, "OBJECTID_1": 37935, "PARCEL_NO_": "107601023000", "Tax_Legal_": "3J-4R ESTATE MARIENDAHL #3 RED HOOK QTR", "Name": "MONSANTO, N. & A. & S. & P. & C. SR & A. SR", "Address": "PO Box 1673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.10394942, "SHAPE_Area": 951.15921888900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364541.118600003421307, 255248.446800000965595 ], [ 364549.755000002682209, 255232.098099999129772 ], [ 364551.279200002551079, 255230.268100000917912 ], [ 364552.295999996364117, 255228.960400000214577 ], [ 364552.309399999678135, 255227.380899999290705 ], [ 364537.266999997198582, 255222.250999998301268 ], [ 364512.129799999296665, 255213.926500000059605 ], [ 364505.222000002861023, 255238.150100000202656 ], [ 364515.220299996435642, 255239.818399999290705 ], [ 364537.810999996960163, 255247.379999998956919 ], [ 364541.118600003421307, 255248.446800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022300", "MAP": "A9-599-T002", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87773725, "LATITUDE": 18.32552568, "OBJECTID_1": 37932, "PARCEL_NO_": "107601022300", "Tax_Legal_": "3J-4C,-4L,-4Q EST.MARIENDAHL 3 RED HOOK QTR", "Name": "MONSANTO, DONALD", "Address": "4146 W 141 St", "City": "Hawthorne", "State": "California", "Zip": 90250, "Country": "United States", "Land_Value": 133600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.75624631299999, "SHAPE_Area": 923.14473263699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364436.214699998497963, 255185.400199998170137 ], [ 364458.110299997031689, 255194.696699999272823 ], [ 364460.520900003612041, 255169.9983000010252 ], [ 364444.708499997854233, 255166.704700000584126 ], [ 364427.13400000333786, 255163.659499999135733 ], [ 364409.310300000011921, 255160.348900001496077 ], [ 364402.526500001549721, 255159.764699999243021 ], [ 364399.511799998581409, 255159.47580000013113 ], [ 364399.367600001394749, 255159.499699998646975 ], [ 364426.968099996447563, 255179.477000001817942 ], [ 364436.214699998497963, 255185.400199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022300", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-4Q", "ACRE": ".63", "LONGITUDE": -64.87632831000001, "LATITUDE": 18.32619574, "OBJECTID_1": 37932, "PARCEL_NO_": "107601022300", "Tax_Legal_": "3J-4C,-4L,-4Q EST.MARIENDAHL 3 RED HOOK QTR", "Name": "MONSANTO, DONALD", "Address": "4146 W 141 St", "City": "Hawthorne", "State": "California", "Zip": 90250, "Country": "United States", "Land_Value": 133600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.11276237600001, "SHAPE_Area": 2112.4739844400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364605.224600002169609, 255239.420699998736382 ], [ 364566.4087999984622, 255225.131400000303984 ], [ 364562.314599998295307, 255233.521200001239777 ], [ 364561.0641999989748, 255232.72069999948144 ], [ 364559.809399999678135, 255232.446800000965595 ], [ 364558.552299998700619, 255232.436099998652935 ], [ 364556.770000003278255, 255235.053599998354912 ], [ 364549.755000002682209, 255232.098099999129772 ], [ 364541.118600003421307, 255248.446800000965595 ], [ 364567.798100002110004, 255257.051600001752377 ], [ 364585.868600003421307, 255263.346599999815226 ], [ 364608.44879999756813, 255272.136500000953674 ], [ 364626.515699997544289, 255278.840799998492002 ], [ 364633.92059999704361, 255281.194200001657009 ], [ 364624.512999996542931, 255267.477099999785423 ], [ 364614.955899998545647, 255253.466699998825788 ], [ 364605.396999999880791, 255239.667399998754263 ], [ 364605.224600002169609, 255239.420699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022500", "MAP": "D9-6871-T000", "PARCEL_NAM": "3J-4M", "ACRE": null, "LONGITUDE": -64.87736885, "LATITUDE": 18.32554515, "OBJECTID_1": 37933, "PARCEL_NO_": "107601022500", "Tax_Legal_": "3J-4M ESTATE MARIENDAHL #4 RED HOOK QTR", "Name": "VESSUP, REUBEN", "Address": "PO Box 4930", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 52200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.66563935600001, "SHAPE_Area": 1188.116879 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364490.527400001883507, 255197.173200000077486 ], [ 364496.393899999558926, 255165.322599999606609 ], [ 364470.446900002658367, 255155.866200000047684 ], [ 364462.328599996864796, 255162.702300000935793 ], [ 364460.520900003612041, 255169.9983000010252 ], [ 364458.110299997031689, 255194.696699999272823 ], [ 364459.053599998354912, 255194.732999999076128 ], [ 364465.087600000202656, 255194.784299999475479 ], [ 364473.887100003659725, 255194.859000001102686 ], [ 364481.42960000038147, 255194.923099998384714 ], [ 364486.199799999594688, 255195.753499999642372 ], [ 364490.527400001883507, 255197.173200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022200", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-4N", "ACRE": ".26", "LONGITUDE": -64.87702226, "LATITUDE": 18.32563954, "OBJECTID_1": 37931, "PARCEL_NO_": "107601022200", "Tax_Legal_": "3J-2F,-2E,-3C,-3B,-4N EST MARIEN 3 RED HOOK QTR", "Name": "MONSANTO, DOCENA", "Address": "14 Fieldstone Dr", "City": "Hartsdale", "State": "New York", "Zip": 10530, "Country": "United States", "Land_Value": 137600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.10744241399999, "SHAPE_Area": 1335.9698362 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364528.221100002527237, 255211.031500000506639 ], [ 364537.210299998521805, 255180.19819999858737 ], [ 364496.393899999558926, 255165.322599999606609 ], [ 364490.527400001883507, 255197.173200000077486 ], [ 364491.966700002551079, 255197.645300000905991 ], [ 364528.221100002527237, 255211.031500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022100", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-4P", "ACRE": "0.5581", "LONGITUDE": -64.87656186, "LATITUDE": 18.32581745, "OBJECTID_1": 37930, "PARCEL_NO_": "107601022100", "Tax_Legal_": "3J-4H,-4B,-4A,-4P EST.MARIENDAHL #3 RED HOOK QTR", "Name": "TROTMAN, GLORIA & LAURA & LANA & PAUL", "Address": "7639 Brookman", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.628040164, "SHAPE_Area": 1932.6532289500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364537.210299998521805, 255180.19819999858737 ], [ 364528.221100002527237, 255211.031500000506639 ], [ 364566.4087999984622, 255225.131400000303984 ], [ 364605.224600002169609, 255239.420699998736382 ], [ 364590.260499998927116, 255218.011999998241663 ], [ 364575.125799998641014, 255196.145500000566244 ], [ 364573.193000003695488, 255193.312100000679493 ], [ 364537.210299998521805, 255180.19819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601029800", "MAP": "A9-542-T000", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8779175, "LATITUDE": 18.32460679, "OBJECTID_1": 37955, "PARCEL_NO_": "107601029800", "Tax_Legal_": "MARIENDAHL ESTATE 3J-A(CEMETARY) No.3 RED HOOK QTR", "Name": "MONSANTO, E. & L. ESTATE & JENSEN, M.", "Address": "PO Box 1673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 76200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.70693820100001, "SHAPE_Area": 1358.2788024 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364410.725400000810623, 255099.609499998390675 ], [ 364435.039300002157688, 255092.198399998247623 ], [ 364437.9054000005126, 255092.69709999859333 ], [ 364440.530500002205372, 255092.12950000166893 ], [ 364425.537399999797344, 255044.649000000208616 ], [ 364423.195900000631809, 255045.870000001043081 ], [ 364417.575900003314018, 255048.222899999469519 ], [ 364400.220600001513958, 255055.488899998366833 ], [ 364410.725400000810623, 255099.609499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022100", "MAP": "D9-6791-T000", "PARCEL_NAM": null, "ACRE": "1.27", "LONGITUDE": -64.87824733, "LATITUDE": 18.32461695, "OBJECTID_1": 37930, "PARCEL_NO_": "107601022100", "Tax_Legal_": "3J-4H,-4B,-4A,-4P EST.MARIENDAHL #3 RED HOOK QTR", "Name": "TROTMAN, GLORIA & LAURA & LANA & PAUL", "Address": "7639 Brookman", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.739602007, "SHAPE_Area": 905.09644359100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364406.035199999809265, 255079.910300001502037 ], [ 364400.220600001513958, 255055.488899998366833 ], [ 364396.490500003099442, 255057.050500001758337 ], [ 364393.570600003004074, 255058.267799999564886 ], [ 364361.807499997317791, 255071.510099999606609 ], [ 364365.41160000115633, 255084.190900001674891 ], [ 364367.337499998509884, 255089.746399998664856 ], [ 364370.846100002527237, 255089.261199999600649 ], [ 364399.474600002169609, 255081.623199999332428 ], [ 364406.035199999809265, 255079.910300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022100", "MAP": null, "PARCEL_NAM": "3J-4B", "ACRE": null, "LONGITUDE": -64.87820872, "LATITUDE": 18.32480517, "OBJECTID_1": 37930, "PARCEL_NO_": "107601022100", "Tax_Legal_": "3J-4H,-4B,-4A,-4P EST.MARIENDAHL #3 RED HOOK QTR", "Name": "TROTMAN, GLORIA & LAURA & LANA & PAUL", "Address": "7639 Brookman", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.166888011, "SHAPE_Area": 790.93724288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364410.725400000810623, 255099.609499998390675 ], [ 364406.035199999809265, 255079.910300001502037 ], [ 364399.474600002169609, 255081.623199999332428 ], [ 364370.846100002527237, 255089.261199999600649 ], [ 364367.337499998509884, 255089.746399998664856 ], [ 364369.796400003135204, 255096.839499998837709 ], [ 364368.615900002419949, 255105.777899999171495 ], [ 364366.502300001680851, 255108.67790000140667 ], [ 364379.896099999547005, 255110.290100000798702 ], [ 364382.51129999756813, 255102.920099999755621 ], [ 364404.501000002026558, 255101.506700001657009 ], [ 364410.725400000810623, 255099.609499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021500", "MAP": "A9-527-T98", "PARCEL_NAM": "4DA", "ACRE": "0.74", "LONGITUDE": -64.8660513, "LATITUDE": 18.344836, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.16522687200001, "SHAPE_Area": 3141.4491820600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365644.156400002539158, 257364.101300001144409 ], [ 365651.82769999653101, 257358.051199998706579 ], [ 365668.177699998021126, 257353.092199999839067 ], [ 365667.329800002276897, 257329.445999998599291 ], [ 365695.956299997866154, 257323.521000001579523 ], [ 365692.819700002670288, 257300.013399999588728 ], [ 365684.091300003230572, 257300.779899999499321 ], [ 365658.50450000166893, 257298.447399999946356 ], [ 365650.43469999730587, 257297.124499998986721 ], [ 365640.512800000607967, 257293.552600000053644 ], [ 365640.266099996864796, 257293.421500001102686 ], [ 365635.094899997115135, 257294.784499999135733 ], [ 365623.592699997127056, 257297.459499999880791 ], [ 365621.740599997341633, 257308.572000000625849 ], [ 365639.793399997055531, 257364.170400001108646 ], [ 365644.156400002539158, 257364.101300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021500", "MAP": "A9-527-T98", "PARCEL_NAM": "4-2", "ACRE": "0.77", "LONGITUDE": -64.86492074, "LATITUDE": 18.34464742, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.09390481999998, "SHAPE_Area": 3203.3601272199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365817.263099998235703, 257342.33669999986887 ], [ 365778.175899997353554, 257261.738099999725819 ], [ 365759.615900002419949, 257266.120900001376867 ], [ 365754.561700001358986, 257267.164599999785423 ], [ 365748.476199999451637, 257283.833399999886751 ], [ 365745.830399997532368, 257290.712600000202656 ], [ 365742.787699997425079, 257296.798000000417233 ], [ 365740.803300000727177, 257302.486600000411272 ], [ 365739.612700000405312, 257306.058499999344349 ], [ 365739.348099999129772, 257309.233500000089407 ], [ 365738.554300002753735, 257313.46680000051856 ], [ 365736.796700000762939, 257322.125900000333786 ], [ 365742.95610000193119, 257323.337400000542402 ], [ 365782.342600002884865, 257319.664700001478195 ], [ 365788.163800001144409, 257319.1554000005126 ], [ 365804.700300000607967, 257352.625199999660254 ], [ 365817.263099998235703, 257342.33669999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021600", "MAP": "A9-760-T010", "PARCEL_NAM": "4HE-1", "ACRE": "0.26", "LONGITUDE": -64.86722561000001, "LATITUDE": 18.34521716, "OBJECTID_1": 22381, "PARCEL_NO_": "105702021600", "Tax_Legal_": "SMITH BAY 4H EAST END QUARTER", "Name": "HILAIRE, A. & P. & G. & V. & C. & K. & T. JR", "Address": "6014 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 153500, "Improved_V": 74500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.94903593500001, "SHAPE_Area": 1043.9943096699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365529.991999998688698, 257376.7511 ], [ 365531.791199997067451, 257375.269400000572205 ], [ 365533.696199998259544, 257375.057700000703335 ], [ 365539.093699999153614, 257373.78770000115037 ], [ 365543.00959999859333, 257374.316899999976158 ], [ 365548.335400000214577, 257375.741700001060963 ], [ 365550.205200001597404, 257376.241900000721216 ], [ 365554.968699999153614, 257355.796000000089407 ], [ 365531.416000001132488, 257350.878899998962879 ], [ 365518.656499996781349, 257349.38060000166297 ], [ 365516.410400003194809, 257349.116799999028444 ], [ 365505.818499997258186, 257363.410599999129772 ], [ 365519.163800001144409, 257381.079199999570847 ], [ 365529.991999998688698, 257376.7511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105801013500", "MAP": "A9-760-T010", "PARCEL_NAM": "4ca-1", "ACRE": ".08", "LONGITUDE": -64.86744246000001, "LATITUDE": 18.3450792, "OBJECTID_1": 23819, "PARCEL_NO_": "105801013500", "Tax_Legal_": "4CA-1 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.21935778, "SHAPE_Area": 431.095512031 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365518.656400002539158, 257349.38060000166297 ], [ 365531.416000001132488, 257350.878899998962879 ], [ 365531.873800002038479, 257346.364500001072884 ], [ 365486.705200001597404, 257338.082499999552965 ], [ 365494.646600000560284, 257348.619300000369549 ], [ 365505.818499997258186, 257363.410599999129772 ], [ 365516.410400003194809, 257349.116799999028444 ], [ 365516.553099997341633, 257348.924300000071526 ], [ 365518.656400002539158, 257349.38060000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105702023900", "MAP": "A9-527-T98", "PARCEL_NAM": "4HE REM", "ACRE": "0.20", "LONGITUDE": -64.86667609, "LATITUDE": 18.3457909, "OBJECTID_1": 22415, "PARCEL_NO_": "105702023900", "Tax_Legal_": "4HE REM SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52300, "Improved_V": 55800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.880792251, "SHAPE_Area": 732.50529693199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365604.139200001955032, 257417.308499999344349 ], [ 365585.746899999678135, 257417.308499999344349 ], [ 365558.927100002765656, 257433.309200000017881 ], [ 365563.174400001764297, 257438.868599999696016 ], [ 365603.98200000077486, 257433.704500000923872 ], [ 365609.856100000441074, 257432.961199998855591 ], [ 365609.693800002336502, 257417.308499999344349 ], [ 365604.139200001955032, 257417.308499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021600", "MAP": "A9-760-T010", "PARCEL_NAM": "4HE-2 (i)", "ACRE": "0.21", "LONGITUDE": -64.86689373, "LATITUDE": 18.34567996, "OBJECTID_1": 22381, "PARCEL_NO_": "105702021600", "Tax_Legal_": "SMITH BAY 4H EAST END QUARTER", "Name": "HILAIRE, A. & P. & G. & V. & C. & K. & T. JR", "Address": "6014 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 153500, "Improved_V": 74500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.723935574, "SHAPE_Area": 883.44406744000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365558.927100002765656, 257433.309200000017881 ], [ 365585.746899999678135, 257417.308499999344349 ], [ 365604.139200001955032, 257417.308499999344349 ], [ 365609.693800002336502, 257417.308499999344349 ], [ 365609.688799999654293, 257416.822200000286102 ], [ 365609.900399997830391, 257410.260499998927116 ], [ 365604.18860000371933, 257412.157999999821186 ], [ 365601.080399997532368, 257412.935499999672174 ], [ 365589.929499998688698, 257413.495000001043081 ], [ 365586.495700001716614, 257413.387800000607967 ], [ 365582.425399996340275, 257413.002900000661612 ], [ 365576.64360000193119, 257412.141800001263618 ], [ 365570.73870000243187, 257410.050500001758337 ], [ 365555.85360000282526, 257404.883699998259544 ], [ 365544.04389999806881, 257400.455099999904633 ], [ 365542.249799996614456, 257399.369199998676777 ], [ 365539.369199998676777, 257397.625700000673532 ], [ 365536.80290000140667, 257404.349599998444319 ], [ 365538.502400003373623, 257406.574099998921156 ], [ 365558.24719999730587, 257432.419199999421835 ], [ 365558.927100002765656, 257433.309200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105702021500", "MAP": "D9-1313-T76", "PARCEL_NAM": "4-4B", "ACRE": "0.39", "LONGITUDE": -64.86615663000001, "LATITUDE": 18.34567279, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.480798005, "SHAPE_Area": 1711.2234188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365672.456600002944469, 257424.356499999761581 ], [ 365676.314300000667572, 257395.728799998760223 ], [ 365670.860600002110004, 257396.502199999988079 ], [ 365664.300700001418591, 257397.713199999183416 ], [ 365657.102200001478195, 257399.042199999094009 ], [ 365629.162100002169609, 257406.662200000137091 ], [ 365610.32379999756813, 257404.968800000846386 ], [ 365609.900399997830391, 257410.260499998927116 ], [ 365609.688799999654293, 257416.822200000286102 ], [ 365609.856100000441074, 257432.961199998855591 ], [ 365661.870600000023842, 257426.378899998962879 ], [ 365664.893200002610683, 257425.801500000059605 ], [ 365672.456600002944469, 257424.356499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105702021500", "MAP": "D9-1313-T76", "PARCEL_NAM": "4-4A", "ACRE": "0.45", "LONGITUDE": -64.86552901, "LATITUDE": 18.34557187, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.152889746, "SHAPE_Area": 1863.7250335900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365739.348099999129772, 257386.756599999964237 ], [ 365721.454499997198582, 257389.3277000002563 ], [ 365676.314300000667572, 257395.728799998760223 ], [ 365672.456600002944469, 257424.356499999761581 ], [ 365726.478299997746944, 257414.035599999129772 ], [ 365730.221900001168251, 257413.429900001734495 ], [ 365750.740500003099442, 257410.110300000756979 ], [ 365743.184600003063679, 257394.297200001776218 ], [ 365741.861599996685982, 257390.857599999755621 ], [ 365739.348099999129772, 257386.756599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021600", "MAP": "A9-527-T98", "PARCEL_NAM": "4HE-2 (ii)", "ACRE": "0.09", "LONGITUDE": -64.86698623, "LATITUDE": 18.34544861, "OBJECTID_1": 22381, "PARCEL_NO_": "105702021600", "Tax_Legal_": "SMITH BAY 4H EAST END QUARTER", "Name": "HILAIRE, A. & P. & G. & V. & C. & K. & T. JR", "Address": "6014 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 153500, "Improved_V": 74500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.677422298899998, "SHAPE_Area": 373.92609381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365573.200499996542931, 257398.846500001847744 ], [ 365566.310099996626377, 257383.724700000137091 ], [ 365564.49379999935627, 257383.947700001299381 ], [ 365559.731299996376038, 257384.159400001168251 ], [ 365555.392099998891354, 257383.841899998486042 ], [ 365549.906599998474121, 257382.885499998927116 ], [ 365543.962099999189377, 257381.936900001019239 ], [ 365541.316200003027916, 257381.936900001019239 ], [ 365539.093699999153614, 257383.206900000572205 ], [ 365537.612000003457069, 257384.47690000012517 ], [ 365537.612000003457069, 257386.381900001317263 ], [ 365538.458700001239777, 257388.816100001335144 ], [ 365541.739600002765656, 257391.356100000441074 ], [ 365547.666199997067451, 257394.848600000143051 ], [ 365551.150600001215935, 257395.279199998825788 ], [ 365557.085400000214577, 257396.012800000607967 ], [ 365563.435400001704693, 257397.282800000160933 ], [ 365573.200499996542931, 257398.846500001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021500", "MAP": "A9-527-T98", "PARCEL_NAM": "4-4C", "ACRE": "0.39", "LONGITUDE": -64.86578346, "LATITUDE": 18.34526823, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.7520607, "SHAPE_Area": 1660.31589353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365719.488099999725819, 257363.547100000083447 ], [ 365706.263400003314018, 257347.566300000995398 ], [ 365693.387500002980232, 257354.200399998575449 ], [ 365683.546099998056889, 257358.998100001364946 ], [ 365676.534100003540516, 257361.458399999886751 ], [ 365664.35530000180006, 257366.010099999606609 ], [ 365647.501900002360344, 257371.791900001466274 ], [ 365644.612899996340275, 257372.461599998176098 ], [ 365642.075499996542931, 257373.049699999392033 ], [ 365647.59910000115633, 257391.083000000566244 ], [ 365650.085299998521805, 257389.62950000166893 ], [ 365663.617200002074242, 257388.645399998873472 ], [ 365715.251000002026558, 257372.274000000208616 ], [ 365724.531400002539158, 257369.029399998486042 ], [ 365719.488099999725819, 257363.547100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021500", "MAP": "A9-527-T98", "PARCEL_NAM": "4-4D", "ACRE": "0.35", "LONGITUDE": -64.86648208, "LATITUDE": 18.34543082, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.99688817099999, "SHAPE_Area": 1517.53895461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365580.214299999177456, 257381.788800001144409 ], [ 365566.310099996626377, 257383.724700000137091 ], [ 365573.200499996542931, 257398.846500001847744 ], [ 365574.439599998295307, 257398.831500001251698 ], [ 365593.743100002408028, 257401.4391999989748 ], [ 365603.902099996805191, 257399.962799999862909 ], [ 365629.295199997723103, 257396.27250000089407 ], [ 365642.089100003242493, 257394.304200001060963 ], [ 365647.59910000115633, 257391.083000000566244 ], [ 365642.075499996542931, 257373.049699999392033 ], [ 365639.045000001788139, 257373.92960000038147 ], [ 365635.657399997115135, 257374.436599999666214 ], [ 365620.536399997770786, 257376.500399999320507 ], [ 365601.129199996590614, 257379.080099999904633 ], [ 365580.47580000013113, 257381.770599998533726 ], [ 365580.214299999177456, 257381.788800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801014500", "MAP": "A9-760-T010", "PARCEL_NAM": "4EA-7", "ACRE": ".087", "LONGITUDE": -64.86540933000001, "LATITUDE": 18.34513854, "OBJECTID_1": 23827, "PARCEL_NO_": "105801014500", "Tax_Legal_": "4EA-7 & 4EA-8 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.424530642999997, "SHAPE_Area": 362.49780866200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365738.808100000023842, 257365.306499999016523 ], [ 365733.322499997913837, 257357.289500001817942 ], [ 365731.151100002229214, 257358.257399998605251 ], [ 365716.196999996900558, 257342.9679000005126 ], [ 365713.617799997329712, 257344.140299998223782 ], [ 365706.263400003314018, 257347.566300000995398 ], [ 365719.488099999725819, 257363.547100000083447 ], [ 365724.531400002539158, 257369.029399998486042 ], [ 365737.628300003707409, 257365.986699998378754 ], [ 365738.808100000023842, 257365.306499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801010800", "MAP": "A9-760-T010", "PARCEL_NAM": "4EA REM", "ACRE": "1.21", "LONGITUDE": -64.86483734, "LATITUDE": 18.3453069, "OBJECTID_1": 23731, "PARCEL_NO_": "105801010800", "Tax_Legal_": "4EA-4&5&4EA REM SMITH BAY NO.1,2&3 EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 137500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.23551211799997, "SHAPE_Area": 4564.2122159600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365836.550999999046326, 257382.108800001442432 ], [ 365817.263099998235703, 257342.33669999986887 ], [ 365804.700300000607967, 257352.625199999660254 ], [ 365796.497000001370907, 257336.021699998527765 ], [ 365791.913800001144409, 257342.214299999177456 ], [ 365781.621500000357628, 257356.779199998825788 ], [ 365766.631399996578693, 257354.74720000103116 ], [ 365763.160599999129772, 257345.613800000399351 ], [ 365755.900600001215935, 257353.582100000232458 ], [ 365752.312700003385544, 257357.519999999552965 ], [ 365737.628300003707409, 257365.986699998378754 ], [ 365724.531400002539158, 257369.029399998486042 ], [ 365733.791799999773502, 257380.009700000286102 ], [ 365739.348099999129772, 257386.756599999964237 ], [ 365741.861599996685982, 257390.857599999755621 ], [ 365743.184600003063679, 257394.297200001776218 ], [ 365750.740500003099442, 257410.110300000756979 ], [ 365775.932199999690056, 257406.034600000828505 ], [ 365813.44030000269413, 257392.930500000715256 ], [ 365832.142200000584126, 257386.396699998527765 ], [ 365836.550999999046326, 257382.108800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801014500", "MAP": "A9-760-T010", "PARCEL_NAM": "4EA-8", "ACRE": ".148", "LONGITUDE": -64.86505086, "LATITUDE": 18.3449311, "OBJECTID_1": 23827, "PARCEL_NO_": "105801014500", "Tax_Legal_": "4EA-7 & 4EA-8 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.93402981400001, "SHAPE_Area": 667.36625131200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365771.695299997925758, 257334.228799998760223 ], [ 365782.342600002884865, 257319.664700001478195 ], [ 365742.95610000193119, 257323.337400000542402 ], [ 365747.486699998378754, 257330.123100001364946 ], [ 365754.826200000941753, 257341.115800000727177 ], [ 365746.227300003170967, 257348.921100001782179 ], [ 365747.149700000882149, 257350.725999999791384 ], [ 365751.006800003349781, 257358.272999998182058 ], [ 365752.312700003385544, 257357.519999999552965 ], [ 365755.900600001215935, 257353.582100000232458 ], [ 365763.160599999129772, 257345.613800000399351 ], [ 365771.695299997925758, 257334.228799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013900", "MAP": "A9-527-T98", "PARCEL_NAM": "4EA-5", "ACRE": ".177", "LONGITUDE": -64.86526287, "LATITUDE": 18.34502163, "OBJECTID_1": 23822, "PARCEL_NO_": "105801013900", "Tax_Legal_": "4EA-5 ESTATE SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.18401612299999, "SHAPE_Area": 831.56342303600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365751.006800003349781, 257358.272999998182058 ], [ 365747.149700000882149, 257350.725999999791384 ], [ 365746.227300003170967, 257348.921100001782179 ], [ 365754.826200000941753, 257341.115800000727177 ], [ 365747.486699998378754, 257330.123100001364946 ], [ 365742.95610000193119, 257323.337400000542402 ], [ 365736.796700000762939, 257322.125900000333786 ], [ 365735.511600002646446, 257327.0929000005126 ], [ 365733.659500002861023, 257330.532499998807907 ], [ 365731.939699999988079, 257333.046000000089407 ], [ 365730.352200001478195, 257334.89809999987483 ], [ 365725.192900002002716, 257338.469999998807907 ], [ 365716.196999996900558, 257342.9679000005126 ], [ 365731.151100002229214, 257358.257399998605251 ], [ 365733.322499997913837, 257357.289500001817942 ], [ 365738.808100000023842, 257365.306499999016523 ], [ 365751.006800003349781, 257358.272999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021500", "MAP": "A9-527-T98", "PARCEL_NAM": "4-9", "ACRE": "0.66", "LONGITUDE": -64.86537053000001, "LATITUDE": 18.34414579, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.408294211, "SHAPE_Area": 2748.924554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365755.619999997317791, 257245.468800000846386 ], [ 365756.14919999986887, 257238.854200001806021 ], [ 365755.090800002217293, 257228.800000000745058 ], [ 365752.312700003385544, 257221.523899998515844 ], [ 365749.931400001049042, 257216.893699999898672 ], [ 365740.406400002539158, 257207.500999998301268 ], [ 365732.903099998831749, 257200.926699999719858 ], [ 365730.612300001084805, 257199.293600000441074 ], [ 365730.610699996352196, 257205.085099998861551 ], [ 365730.549300000071526, 257213.395799998193979 ], [ 365730.405199997127056, 257232.927499998360872 ], [ 365705.402000002563, 257241.261900000274181 ], [ 365701.106799997389317, 257239.677600000053644 ], [ 365697.435999996960163, 257238.323600001633167 ], [ 365689.26240000128746, 257235.308800000697374 ], [ 365687.520900003612041, 257239.716299999505281 ], [ 365681.536499999463558, 257254.8614999987185 ], [ 365706.227700002491474, 257256.549699999392033 ], [ 365718.915399998426437, 257283.772599998861551 ], [ 365721.476899996399879, 257289.2685999982059 ], [ 365727.83669999986887, 257282.721999999135733 ], [ 365731.993100002408028, 257279.102200001478195 ], [ 365739.206600002944469, 257271.740100000053644 ], [ 365745.38629999756813, 257264.949099998921156 ], [ 365750.196000002324581, 257259.227099999785423 ], [ 365753.648500002920628, 257252.061700001358986 ], [ 365755.619999997317791, 257245.468800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021500", "MAP": "A9-527-T98", "PARCEL_NAM": "4EA-3", "ACRE": "0.34", "LONGITUDE": -64.86567924000001, "LATITUDE": 18.34441771, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.388359428, "SHAPE_Area": 1475.651852 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365706.227700002491474, 257256.549699999392033 ], [ 365681.536499999463558, 257254.8614999987185 ], [ 365680.599299997091293, 257257.447900000959635 ], [ 365676.973800003528595, 257267.453000001609325 ], [ 365674.511699996888638, 257276.929400000721216 ], [ 365674.104699999094009, 257278.807199999690056 ], [ 365670.710900001227856, 257294.466600000858307 ], [ 365682.032799996435642, 257295.289900001138449 ], [ 365682.44820000231266, 257295.263099998235703 ], [ 365695.685699999332428, 257294.409800000488758 ], [ 365703.276600003242493, 257292.887699998915195 ], [ 365712.8699000030756, 257291.621100001037121 ], [ 365717.599299997091293, 257290.761199999600649 ], [ 365721.476899996399879, 257289.2685999982059 ], [ 365718.915399998426437, 257283.772599998861551 ], [ 365706.227700002491474, 257256.549699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702025300", "MAP": "D9-9084-T016", "PARCEL_NAM": "4D-G", "ACRE": ".22", "LONGITUDE": -64.86693902, "LATITUDE": 18.34263903, "OBJECTID_1": 22451, "PARCEL_NO_": "105702025300", "Tax_Legal_": "4D-G REM SMITH BAY No.1,2&3 EAST END QTR.", "Name": "ABRAHAM, JR, KEITH L.", "Address": "P O BOX 3894", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.60927070699999, "SHAPE_Area": 925.55472762600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365555.7483000010252, 257097.288699999451637 ], [ 365584.707500003278255, 257080.750300001353025 ], [ 365573.196000002324581, 257058.362500000745058 ], [ 365564.813500002026558, 257063.2516999989748 ], [ 365555.130999997258186, 257068.89919999986887 ], [ 365540.828100003302097, 257077.985500000417233 ], [ 365550.985799998044968, 257096.124499998986721 ], [ 365551.344830433372408, 257096.609617786831222 ], [ 365551.782208438438829, 257097.025481469230726 ], [ 365552.284804016293492, 257097.359606904792599 ], [ 365552.837529352225829, 257097.601963717432227 ], [ 365553.423791746492498, 257097.745276405970799 ], [ 365554.025991723814514, 257097.785242753307102 ], [ 365554.626051365979947, 257097.720662977983011 ], [ 365555.205957007361576, 257097.55347575142514 ], [ 365555.7483000010252, 257097.288699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021500", "MAP": "D9-1643", "PARCEL_NAM": "4-8A", "ACRE": "0.34", "LONGITUDE": -64.86551986000001, "LATITUDE": 18.34385563, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.24963198699999, "SHAPE_Area": 1629.65934909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365705.723700001835823, 257187.230700001120567 ], [ 365691.234399996697903, 257182.429299999028444 ], [ 365694.887699998915195, 257189.9375 ], [ 365702.094700001180172, 257204.749299999326468 ], [ 365692.389499999582767, 257227.861699998378754 ], [ 365689.26240000128746, 257235.308800000697374 ], [ 365697.435999996960163, 257238.323600001633167 ], [ 365701.106799997389317, 257239.677600000053644 ], [ 365705.402000002563, 257241.261900000274181 ], [ 365730.405199997127056, 257232.927499998360872 ], [ 365730.549300000071526, 257213.395799998193979 ], [ 365730.610699996352196, 257205.085099998861551 ], [ 365730.612300001084805, 257199.293600000441074 ], [ 365723.790600001811981, 257194.430500000715256 ], [ 365714.530100002884865, 257190.726399999111891 ], [ 365705.723700001835823, 257187.230700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021500", "MAP": "D9-2709-T84", "PARCEL_NAM": "4CDC-1", "ACRE": "0.18", "LONGITUDE": -64.86604426, "LATITUDE": 18.34444632, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.527141171, "SHAPE_Area": 763.26644591299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365662.858499996364117, 257270.164000000804663 ], [ 365653.49379999935627, 257264.727299999445677 ], [ 365649.359099999070168, 257263.992199998348951 ], [ 365644.490800000727177, 257266.532200001180172 ], [ 365642.732900001108646, 257268.8761 ], [ 365642.450900003314018, 257268.79450000077486 ], [ 365638.449000000953674, 257273.232500001788139 ], [ 365637.708200000226498, 257280.958399999886751 ], [ 365640.036499999463558, 257286.038400001823902 ], [ 365644.693199999630451, 257288.684200000017881 ], [ 365648.533100001513958, 257289.794599998742342 ], [ 365653.477399997413158, 257291.224199999123812 ], [ 365660.144900001585484, 257292.282600000500679 ], [ 365664.690800003707409, 257293.222199998795986 ], [ 365670.710900001227856, 257294.466600000858307 ], [ 365674.104699999094009, 257278.807199999690056 ], [ 365674.511699996888638, 257276.929400000721216 ], [ 365672.585699997842312, 257275.811200000345707 ], [ 365668.829499997198582, 257273.630499999970198 ], [ 365662.858499996364117, 257270.164000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013000", "MAP": "A9-760-T010", "PARCEL_NAM": "4EB-2", "ACRE": "0.91", "LONGITUDE": -64.86595974, "LATITUDE": 18.34373584, "OBJECTID_1": 23814, "PARCEL_NO_": "105801013000", "Tax_Legal_": "4EB-2 SMITH BAY NO.1,2&3 EASTEND QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 124100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.06487120399999, "SHAPE_Area": 3867.9936859600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365621.464100003242493, 257137.912799999117851 ], [ 365619.263800002634525, 257134.264800000935793 ], [ 365617.14190000295639, 257134.441199999302626 ], [ 365611.95099999755621, 257134.872699998319149 ], [ 365625.258000001311302, 257160.631700001657009 ], [ 365628.501999996602535, 257166.911200001835823 ], [ 365646.493699997663498, 257203.317899998277426 ], [ 365672.814099997282028, 257258.700399998575449 ], [ 365676.973800003528595, 257267.453000001609325 ], [ 365680.599299997091293, 257257.447900000959635 ], [ 365681.536499999463558, 257254.8614999987185 ], [ 365687.520900003612041, 257239.716299999505281 ], [ 365689.26240000128746, 257235.308800000697374 ], [ 365692.389499999582767, 257227.861699998378754 ], [ 365702.094700001180172, 257204.749299999326468 ], [ 365694.887699998915195, 257189.9375 ], [ 365691.234399996697903, 257182.429299999028444 ], [ 365666.524700000882149, 257174.24100000038743 ], [ 365659.576099999248981, 257172.046700000762939 ], [ 365654.482799999415874, 257169.665500000119209 ], [ 365650.910899996757507, 257168.078000001609325 ], [ 365648.108000002801418, 257166.242800001055002 ], [ 365643.70099999755621, 257163.315499998629093 ], [ 365640.195299997925758, 257160.338899999856949 ], [ 365637.550800003111362, 257158.021200001239777 ], [ 365635.116599999368191, 257155.587000001221895 ], [ 365629.930799998342991, 257149.448600001633167 ], [ 365626.649899996817112, 257145.427000001072884 ], [ 365621.464100003242493, 257137.912799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801014100", "MAP": "D9-7705-T006", "PARCEL_NAM": "4EB-1", "ACRE": ".319", "LONGITUDE": -64.86603258, "LATITUDE": 18.34326736, "OBJECTID_1": 23824, "PARCEL_NO_": "105801014100", "Tax_Legal_": "4EB-1 ESTATE SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.883162226, "SHAPE_Area": 1335.61924082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365673.571400001645088, 257145.840399999171495 ], [ 365665.566299997270107, 257129.30009999871254 ], [ 365646.100000001490116, 257131.898400001227856 ], [ 365646.162900000810623, 257132.0287000015378 ], [ 365626.156999997794628, 257133.691799998283386 ], [ 365630.354099996387959, 257139.817800000309944 ], [ 365636.174900002777576, 257147.331999998539686 ], [ 365638.820799998939037, 257150.718600001186132 ], [ 365642.313299998641014, 257154.31700000166893 ], [ 365647.816600002348423, 257158.550299998372793 ], [ 365652.896600000560284, 257162.04280000180006 ], [ 365658.505800001323223, 257164.79450000077486 ], [ 365662.879699997603893, 257166.684599999338388 ], [ 365665.846699997782707, 257167.972199998795986 ], [ 365687.51070000231266, 257174.963300000876188 ], [ 365676.228299997746944, 257151.372499998658895 ], [ 365674.524999998509884, 257147.810899998992682 ], [ 365673.571400001645088, 257145.840399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801011000", "MAP": "D9-1394-T78", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.86370646, "LATITUDE": 18.34323056, "OBJECTID_1": 23733, "PARCEL_NO_": "105801011000", "Tax_Legal_": "2 ESTATE SMITH BAY 1,2&3 EASTEND QTR.", "Name": "SUGAR BAY CLUB & RESORT CORP.", "Address": "6500 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2169300, "Improved_V": 16992500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2198.95700618, "SHAPE_Area": 116900.699933 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365926.228299997746944, 257322.149999998509884 ], [ 365936.715700000524521, 257321.60249999910593 ], [ 365947.986100003123283, 257323.805700000375509 ], [ 365980.883100003004074, 257343.073399998247623 ], [ 365994.540100000798702, 257349.095800001174212 ], [ 365982.828400000929832, 257304.037000000476837 ], [ 366011.10869999974966, 257297.302400000393391 ], [ 366021.612300001084805, 257294.855200000107288 ], [ 366041.838500000536442, 257286.999200001358986 ], [ 366113.03490000218153, 257259.295400001108646 ], [ 366102.782300002872944, 257137.621599998325109 ], [ 365949.94650000333786, 256904.378899998962879 ], [ 365947.520400002598763, 256905.203400000929832 ], [ 366032.689900003373623, 257035.723000001162291 ], [ 366033.480099998414516, 257037.629299998283386 ], [ 366035.024400003254414, 257045.663499999791384 ], [ 366033.215700000524521, 257068.657900001853704 ], [ 366034.691699996590614, 257084.713100001215935 ], [ 366034.571199998259544, 257098.855399999767542 ], [ 366034.553199999034405, 257100.966099999845028 ], [ 366031.979599997401237, 257119.09910000115633 ], [ 366024.516000002622604, 257143.313799999654293 ], [ 366022.890799999237061, 257144.778200000524521 ], [ 366020.428700000047684, 257149.824299998581409 ], [ 366017.932499997317791, 257158.880800001323223 ], [ 366018.623700000345707, 257172.396499998867512 ], [ 366023.233199998736382, 257199.243099998682737 ], [ 366014.343999996781349, 257201.492400001734495 ], [ 366010.494000002741814, 257180.140399999916553 ], [ 366009.001900002360344, 257165.984900001436472 ], [ 366009.923299998044968, 257152.482500001788139 ], [ 366013.22410000115633, 257143.6435999982059 ], [ 366016.494300000369549, 257138.39299999922514 ], [ 366023.128200002014637, 257116.915699999779463 ], [ 366024.818099997937679, 257107.852600000798702 ], [ 366025.797100000083447, 257087.595600001513958 ], [ 366024.249200001358986, 257079.983600001782179 ], [ 366024.369699999690056, 257065.841299999505281 ], [ 366026.131499998271465, 257048.334899999201298 ], [ 366024.590800002217293, 257039.878600001335144 ], [ 365940.23480000346899, 256908.521200001239777 ], [ 365921.610500000417233, 256917.656899999827147 ], [ 365893.247500002384186, 256934.101199999451637 ], [ 365869.727799996733665, 256949.951799999922514 ], [ 365839.701800003647804, 256972.293099999427795 ], [ 365833.184799998998642, 256980.050200000405312 ], [ 365827.448899999260902, 256990.769000001251698 ], [ 365816.625200003385544, 257030.788199998438358 ], [ 365812.536100000143051, 257037.509700000286102 ], [ 365804.406400002539158, 257045.253600001335144 ], [ 365796.3091000020504, 257049.19819999858737 ], [ 365788.229800000786781, 257051.031899999827147 ], [ 365778.555900000035763, 257050.741599999368191 ], [ 365769.707999996840954, 257048.136100001633167 ], [ 365728.796400003135204, 257023.103300001472235 ], [ 365701.491499997675419, 257010.003100000321865 ], [ 365690.222900003194809, 257007.588799998164177 ], [ 365678.930900000035763, 257007.918600000441074 ], [ 365674.582800000905991, 257008.522700000554323 ], [ 365671.796899996697903, 257008.909699998795986 ], [ 365663.847699999809265, 257010.013999998569489 ], [ 365657.43860000371933, 257012.774599999189377 ], [ 365836.550999999046326, 257382.108800001442432 ], [ 365839.460199996829033, 257379.279500000178814 ], [ 365843.536700002849102, 257374.035500001162291 ], [ 365845.156499996781349, 257373.2043999992311 ], [ 365850.861800000071526, 257366.073899999260902 ], [ 365851.799500003457069, 257365.349899999797344 ], [ 365854.108599998056889, 257363.567299999296665 ], [ 365859.000500001013279, 257357.274599999189377 ], [ 365866.313000001013279, 257350.790500000119209 ], [ 365872.799500003457069, 257346.621700000017881 ], [ 365889.795000001788139, 257339.372600000351667 ], [ 365916.529200002551079, 257324.814800001680851 ], [ 365926.228299997746944, 257322.149999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013700", "MAP": "D9-7705-T006", "PARCEL_NAM": "4-5", "ACRE": ".571", "LONGITUDE": -64.86553543, "LATITUDE": 18.3433937, "OBJECTID_1": 23821, "PARCEL_NO_": "105801013700", "Tax_Legal_": "4-5, 4-6, 4C-2&4EA-6 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 188700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.06650296500001, "SHAPE_Area": 2365.1449523000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365754.253300003707409, 257212.409000001847744 ], [ 365713.9087999984622, 257129.217599999159575 ], [ 365701.556999996304512, 257135.048900000751019 ], [ 365676.051500000059605, 257147.090199999511242 ], [ 365674.524999998509884, 257147.810899998992682 ], [ 365676.228299997746944, 257151.372499998658895 ], [ 365687.51070000231266, 257174.963300000876188 ], [ 365699.052000001072884, 257178.687800001353025 ], [ 365720.351000003516674, 257185.831599999219179 ], [ 365727.35809999704361, 257189.273200001567602 ], [ 365732.786399997770786, 257192.975299999117851 ], [ 365741.517700001597404, 257199.986800000071526 ], [ 365754.253300003707409, 257212.409000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013600", "MAP": "D9-7705-T006", "PARCEL_NAM": "4-7", "ACRE": ".341", "LONGITUDE": -64.86575343, "LATITUDE": 18.34297368, "OBJECTID_1": 23820, "PARCEL_NO_": "105801013600", "Tax_Legal_": "4-7 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.63270934100001, "SHAPE_Area": 1411.047428 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365713.9087999984622, 257129.217599999159575 ], [ 365694.555500000715256, 257089.310499999672174 ], [ 365683.908500000834465, 257097.958200000226498 ], [ 365659.853500001132488, 257117.496300000697374 ], [ 365665.566299997270107, 257129.30009999871254 ], [ 365699.808100000023842, 257135.874600000679493 ], [ 365701.556999996304512, 257135.048900000751019 ], [ 365713.9087999984622, 257129.217599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801010700", "MAP": "D9-7360-T004", "PARCEL_NAM": "4E REM", "ACRE": "1.20", "LONGITUDE": -64.86641405, "LATITUDE": 18.34272041, "OBJECTID_1": 23730, "PARCEL_NO_": "105801010700", "Tax_Legal_": "4E REMAINDER SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "HENDRICKS, LORELEE", "Address": "PO Box 7181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 141800, "Improved_V": 84000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.637907955, "SHAPE_Area": 4988.4546140900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365655.484899997711182, 257108.416600000113249 ], [ 365619.06139999628067, 257032.713500000536442 ], [ 365602.539599999785423, 257041.5929000005126 ], [ 365594.997400000691414, 257045.64640000090003 ], [ 365573.196000002324581, 257058.362500000745058 ], [ 365591.313400000333786, 257093.597600001841784 ], [ 365610.703299999237061, 257132.377399999648333 ], [ 365611.95099999755621, 257134.872699998319149 ], [ 365617.14190000295639, 257134.441199999302626 ], [ 365646.162900000810623, 257132.0287000015378 ], [ 365646.100000001490116, 257131.898400001227856 ], [ 365665.566299997270107, 257129.30009999871254 ], [ 365659.853500001132488, 257117.496300000697374 ], [ 365655.484899997711182, 257108.416600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013400", "MAP": "A9-527-T98", "PARCEL_NAM": "4CB", "ACRE": "0.86", "LONGITUDE": -64.86720181, "LATITUDE": 18.34307082, "OBJECTID_1": 23818, "PARCEL_NO_": "105801013400", "Tax_Legal_": "4CB SMITH BAY NO.1,2&3 EAST END QTR", "Name": "SALEM, TALAL & JAWAHER", "Address": "PO Box 10606", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.56128318899999, "SHAPE_Area": 3401.9250075199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365553.082800000905991, 257113.099599998444319 ], [ 365536.531099997460842, 257080.715199999511242 ], [ 365530.259700000286102, 257084.699200000613928 ], [ 365520.032999999821186, 257091.195900000631809 ], [ 365508.823100000619888, 257098.352000001817942 ], [ 365498.210400000214577, 257103.062600001692772 ], [ 365507.322400003671646, 257121.848600000143051 ], [ 365514.324199996888638, 257136.284000001847744 ], [ 365519.886399999260902, 257147.751499999314547 ], [ 365521.202799998223782, 257150.465599998831749 ], [ 365527.353200003504753, 257163.145799998193979 ], [ 365530.875100001692772, 257170.406800001859665 ], [ 365566.456000000238419, 257152.329900000244379 ], [ 365571.756899997591972, 257149.636700000613928 ], [ 365553.082800000905991, 257113.099599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702025200", "MAP": "D9-6482-T98", "PARCEL_NAM": "4D-F", "ACRE": "0.46", "LONGITUDE": -64.86656807, "LATITUDE": 18.34335743, "OBJECTID_1": 22450, "PARCEL_NO_": "105702025200", "Tax_Legal_": "4D-F ESTATE SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "WEBSTER, JEAN HAROLD", "Address": "PO Box 8301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.00492966300001, "SHAPE_Area": 1799.7213786699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365610.703299999237061, 257132.377399999648333 ], [ 365607.5945999994874, 257126.160000000149012 ], [ 365574.288999997079372, 257154.590900000184774 ], [ 365587.9628000035882, 257181.3445999994874 ], [ 365589.393399998545647, 257184.1435999982059 ], [ 365590.734099999070168, 257186.766800001263618 ], [ 365629.651500001549721, 257169.237199999392033 ], [ 365628.501999996602535, 257166.911200001835823 ], [ 365625.258000001311302, 257160.631700001657009 ], [ 365611.95099999755621, 257134.872699998319149 ], [ 365610.703299999237061, 257132.377399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105702021500", "MAP": "D9-6482-T98", "PARCEL_NAM": "4D REM", "ACRE": null, "LONGITUDE": -64.86675567, "LATITUDE": 18.34304682, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.82954433500001, "SHAPE_Area": 1081.2556731 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365595.11710000038147, 257101.205099999904633 ], [ 365568.97749999910593, 257113.798700001090765 ], [ 365570.459200002253056, 257121.101199999451637 ], [ 365559.680399999022484, 257126.008299998939037 ], [ 365571.756899997591972, 257149.636700000613928 ], [ 365572.194399997591972, 257150.49269999936223 ], [ 365604.245300002396107, 257119.461399998515844 ], [ 365595.11710000038147, 257101.205099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013700", "MAP": "D9-7704-T006", "PARCEL_NAM": "4C-2", "ACRE": ".708", "LONGITUDE": -64.86662352, "LATITUDE": 18.34391626, "OBJECTID_1": 23821, "PARCEL_NO_": "105801013700", "Tax_Legal_": "4-5, 4-6, 4C-2&4EA-6 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 188700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.16498172600001, "SHAPE_Area": 2662.6887438499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365595.550999999046326, 257243.656500000506639 ], [ 365597.564999997615814, 257229.949599999934435 ], [ 365636.519799999892712, 257237.916000001132488 ], [ 365651.573700003325939, 257240.994699999690056 ], [ 365637.648599997162819, 257209.702300000935793 ], [ 365609.456500001251698, 257223.455800000578165 ], [ 365608.60530000180006, 257221.732999999076128 ], [ 365606.031400002539158, 257216.697000000625849 ], [ 365591.79730000346899, 257188.846999999135733 ], [ 365551.525600001215935, 257209.928899999707937 ], [ 365555.002400003373623, 257218.136100001633167 ], [ 365564.022799998521805, 257236.582699999213219 ], [ 365564.586000002920628, 257237.734299998730421 ], [ 365581.6891999989748, 257241.005399998277426 ], [ 365595.550999999046326, 257243.656500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702025100", "MAP": "D9-6482-T98", "PARCEL_NAM": "4D-E", "ACRE": "0.46", "LONGITUDE": -64.86639721, "LATITUDE": 18.34369453, "OBJECTID_1": 22449, "PARCEL_NO_": "105702025100", "Tax_Legal_": "4D-E ESTATE SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "WEBSTER, JEAN HAROLD", "Address": "PO Box 8301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.846272798, "SHAPE_Area": 1717.3632634400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365646.493699997663498, 257203.317899998277426 ], [ 365629.651500001549721, 257169.237199999392033 ], [ 365590.734099999070168, 257186.766800001263618 ], [ 365606.031400002539158, 257216.697000000625849 ], [ 365608.60530000180006, 257221.732999999076128 ], [ 365609.456500001251698, 257223.455800000578165 ], [ 365637.648599997162819, 257209.702300000935793 ], [ 365647.292099997401237, 257204.997800000011921 ], [ 365646.493699997663498, 257203.317899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013300", "MAP": "D9-7704-T006", "PARCEL_NAM": "4C-1", "ACRE": "0.50", "LONGITUDE": -64.86694481000001, "LATITUDE": 18.34355065, "OBJECTID_1": 23817, "PARCEL_NO_": "105801013300", "Tax_Legal_": "4C-1 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "FLAGSTAR BANK FSB", "Address": "5151 Corporate Dr", "City": "Troy", "State": "Michigan", "Zip": 48098, "Country": "United States", "Land_Value": 62900, "Improved_V": 222700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.938243355, "SHAPE_Area": 2023.09861585 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365573.023699998855591, 257152.115299999713898 ], [ 365571.756899997591972, 257149.636700000613928 ], [ 365566.456000000238419, 257152.329900000244379 ], [ 365530.875100001692772, 257170.406800001859665 ], [ 365548.957000002264977, 257205.012899998575449 ], [ 365549.19879999756813, 257205.475699998438358 ], [ 365551.525600001215935, 257209.928899999707937 ], [ 365591.79730000346899, 257188.846999999135733 ], [ 365590.734099999070168, 257186.766800001263618 ], [ 365590.430299997329712, 257186.172499999403954 ], [ 365587.9628000035882, 257181.3445999994874 ], [ 365573.023699998855591, 257152.115299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801014000", "MAP": "A9-760-T010", "PARCEL_NAM": "4C REM", "ACRE": ".426", "LONGITUDE": -64.86616777, "LATITUDE": 18.34411983, "OBJECTID_1": 23823, "PARCEL_NO_": "105801014000", "Tax_Legal_": "4-C REM SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.06817751300002, "SHAPE_Area": 1795.3145789499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365595.550999999046326, 257243.656500000506639 ], [ 365598.427299998700619, 257244.206599999219179 ], [ 365604.665399998426437, 257245.378499999642372 ], [ 365633.158699996769428, 257250.731300000101328 ], [ 365636.122000001370907, 257252.212999999523163 ], [ 365638.23870000243187, 257255.176399998366833 ], [ 365638.450400002300739, 257258.351399999111891 ], [ 365636.086099997162819, 257262.220100000500679 ], [ 365639.641699999570847, 257259.011100001633167 ], [ 365642.541299998760223, 257257.375399999320507 ], [ 365646.92790000140667, 257256.631900001317263 ], [ 365651.83500000089407, 257256.557500001043081 ], [ 365654.809000000357628, 257257.524099998176098 ], [ 365653.49379999935627, 257264.727299999445677 ], [ 365662.858499996364117, 257270.164000000804663 ], [ 365668.829499997198582, 257273.630499999970198 ], [ 365672.585699997842312, 257275.811200000345707 ], [ 365674.511699996888638, 257276.929400000721216 ], [ 365676.973800003528595, 257267.453000001609325 ], [ 365672.814099997282028, 257258.700399998575449 ], [ 365647.292099997401237, 257204.997800000011921 ], [ 365637.648599997162819, 257209.702300000935793 ], [ 365651.573700003325939, 257240.994699999690056 ], [ 365636.519799999892712, 257237.916000001132488 ], [ 365597.564999997615814, 257229.949599999934435 ], [ 365595.550999999046326, 257243.656500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801010900", "MAP": "A9-527-T98", "PARCEL_NAM": "4-1", "ACRE": "0.93", "LONGITUDE": -64.86604611, "LATITUDE": 18.34249114, "OBJECTID_1": 23732, "PARCEL_NO_": "105801010900", "Tax_Legal_": "SMITH BAY 4-1 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.12243674299998, "SHAPE_Area": 3891.0886107199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365694.555500000715256, 257089.310499999672174 ], [ 365657.43860000371933, 257012.774599999189377 ], [ 365651.744199998676777, 257015.227299999445677 ], [ 365647.2128000035882, 257017.731499999761581 ], [ 365640.054999999701977, 257021.687199998646975 ], [ 365639.3091000020504, 257022.099399998784065 ], [ 365621.777099996805191, 257031.254000000655651 ], [ 365619.06139999628067, 257032.713500000536442 ], [ 365655.484899997711182, 257108.416600000113249 ], [ 365659.853500001132488, 257117.496300000697374 ], [ 365683.908500000834465, 257097.958200000226498 ], [ 365694.555500000715256, 257089.310499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105801014200", "MAP": "A9-527-T98", "PARCEL_NAM": "ROW 4-4F", "ACRE": "1.25", "LONGITUDE": -64.8665773, "LATITUDE": 18.3453734, "OBJECTID_1": 23825, "PARCEL_NO_": "105801014200", "Tax_Legal_": "4 REM,4EA-4 REM & 4-4F ROW'S SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 160300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 569.55707771899995, "SHAPE_Area": 2415.0236089499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365593.743100002408028, 257401.4391999989748 ], [ 365574.439599998295307, 257398.831500001251698 ], [ 365573.200499996542931, 257398.846500001847744 ], [ 365563.435400001704693, 257397.282800000160933 ], [ 365557.085400000214577, 257396.012800000607967 ], [ 365551.150600001215935, 257395.279199998825788 ], [ 365547.666199997067451, 257394.848600000143051 ], [ 365541.739600002765656, 257391.356100000441074 ], [ 365538.458700001239777, 257388.816100001335144 ], [ 365537.612000003457069, 257386.381900001317263 ], [ 365537.612000003457069, 257384.47690000012517 ], [ 365539.093699999153614, 257383.206900000572205 ], [ 365541.316200003027916, 257381.936900001019239 ], [ 365543.962099999189377, 257381.936900001019239 ], [ 365549.906599998474121, 257382.885499998927116 ], [ 365555.392099998891354, 257383.841899998486042 ], [ 365559.731299996376038, 257384.159400001168251 ], [ 365564.49379999935627, 257383.947700001299381 ], [ 365566.310099996626377, 257383.724700000137091 ], [ 365580.214299999177456, 257381.788800001144409 ], [ 365580.47580000013113, 257381.770599998533726 ], [ 365601.129199996590614, 257379.080099999904633 ], [ 365620.536399997770786, 257376.500399999320507 ], [ 365635.657399997115135, 257374.436599999666214 ], [ 365639.045000001788139, 257373.92960000038147 ], [ 365642.075499996542931, 257373.049699999392033 ], [ 365644.612899996340275, 257372.461599998176098 ], [ 365647.501900002360344, 257371.791900001466274 ], [ 365664.35530000180006, 257366.010099999606609 ], [ 365676.534100003540516, 257361.458399999886751 ], [ 365683.546099998056889, 257358.998100001364946 ], [ 365693.387500002980232, 257354.200399998575449 ], [ 365706.263400003314018, 257347.566300000995398 ], [ 365704.406199999153614, 257345.351300001144409 ], [ 365702.508500002324581, 257343.087999999523163 ], [ 365681.878700003027916, 257352.796399999409914 ], [ 365675.211599998176098, 257352.10359999909997 ], [ 365668.177699998021126, 257353.092199999839067 ], [ 365651.82769999653101, 257358.051199998706579 ], [ 365644.156400002539158, 257364.101300001144409 ], [ 365639.793399997055531, 257364.170400001108646 ], [ 365628.59179999679327, 257366.080400001257658 ], [ 365623.270900003612041, 257366.925599999725819 ], [ 365610.465300001204014, 257369.608399998396635 ], [ 365601.097999997437, 257371.311500001698732 ], [ 365589.297499999403954, 257373.501299999654293 ], [ 365578.465700000524521, 257376.108300000429153 ], [ 365570.927799999713898, 257377.637499999254942 ], [ 365565.08839999884367, 257378.124200001358986 ], [ 365557.789200000464916, 257377.759199999272823 ], [ 365550.205200001597404, 257376.241900000721216 ], [ 365548.336400002241135, 257376.225900001823902 ], [ 365548.335400000214577, 257375.741700001060963 ], [ 365543.00959999859333, 257374.316899999976158 ], [ 365539.093699999153614, 257373.78770000115037 ], [ 365533.696199998259544, 257375.057700000703335 ], [ 365531.791199997067451, 257375.269400000572205 ], [ 365529.991999998688698, 257376.7511 ], [ 365519.163800001144409, 257381.079199999570847 ], [ 365531.26630000025034, 257397.102400001138449 ], [ 365536.80290000140667, 257404.349599998444319 ], [ 365539.369199998676777, 257397.625700000673532 ], [ 365542.249799996614456, 257399.369199998676777 ], [ 365544.04389999806881, 257400.455099999904633 ], [ 365555.85360000282526, 257404.883699998259544 ], [ 365570.73870000243187, 257410.050500001758337 ], [ 365576.64360000193119, 257412.141800001263618 ], [ 365582.425399996340275, 257413.002900000661612 ], [ 365586.495700001716614, 257413.387800000607967 ], [ 365589.929499998688698, 257413.495000001043081 ], [ 365601.080399997532368, 257412.935499999672174 ], [ 365604.18860000371933, 257412.157999999821186 ], [ 365609.900399997830391, 257410.260499998927116 ], [ 365610.32379999756813, 257404.968800000846386 ], [ 365610.22749999910593, 257403.161499999463558 ], [ 365604.280799999833107, 257402.540199998766184 ], [ 365593.743100002408028, 257401.4391999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107502030600", "MAP": "D9-8087-T008", "PARCEL_NAM": "3F-74", "ACRE": "10.301", "LONGITUDE": -64.88522047, "LATITUDE": 18.32548658, "OBJECTID_1": 37515, "PARCEL_NO_": "107502030600", "Tax_Legal_": "3F-74 ESTATE BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "J CARDEL LEASING AND CONSULTING LLC", "Address": "2336 SE Ocean Blvd", "City": "Stuart", "State": "Florida", "Zip": 34996, "Country": "United States", "Land_Value": 465100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 881.82825746000003, "SHAPE_Area": 37554.7465696 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363569.471400000154972, 255304.016199998557568 ], [ 363653.408100001513958, 255200.63399999961257 ], [ 363733.917099997401237, 255215.647300001233816 ], [ 363776.555900000035763, 255200.416900001466274 ], [ 363815.51690000295639, 255132.217099998146296 ], [ 363591.85360000282526, 255043.07660000026226 ], [ 363513.39639999717474, 255260.494100000709295 ], [ 363543.851099997758865, 255282.486000001430511 ], [ 363561.465899996459484, 255297.195599999278784 ], [ 363569.471400000154972, 255304.016199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601030100", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-11", "ACRE": "0.41", "LONGITUDE": -64.87497796, "LATITUDE": 18.3274292, "OBJECTID_1": 37956, "PARCEL_NO_": "107601030100", "Tax_Legal_": "2B 11 MARIENDAHL RED HOOK QTR", "Name": "LIONEL O PRATT TRUST", "Address": "PO Box 8913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 186900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.52485348499999, "SHAPE_Area": 1513.48250917 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364737.995399996638298, 255424.145599998533726 ], [ 364741.103500001132488, 255401.209199998527765 ], [ 364743.784999996423721, 255370.411499999463558 ], [ 364739.00110000371933, 255364.039599999785423 ], [ 364730.981100000441074, 255358.907699998468161 ], [ 364702.582099996507168, 255379.573499999940395 ], [ 364704.516099996864796, 255382.4391999989748 ], [ 364726.002899996936321, 255414.277399998158216 ], [ 364729.656900003552437, 255419.691799998283386 ], [ 364737.995399996638298, 255424.145599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601021500", "MAP": "A9-604-T003", "PARCEL_NAM": "3G-33", "ACRE": "0.27", "LONGITUDE": -64.87514985, "LATITUDE": 18.32786698, "OBJECTID_1": 37926, "PARCEL_NO_": "107601021500", "Tax_Legal_": "3G-33 MARIENDAHL NO. 4 RED HOOK QUARTER", "Name": "ABRAHAM, CYRIL & DAVINA", "Address": "PO Box 10765", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 109800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.849561096, "SHAPE_Area": 1263.50578851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364687.64019999653101, 255434.853399999439716 ], [ 364698.189999997615814, 255462.822200000286102 ], [ 364701.213299997150898, 255461.848999999463558 ], [ 364705.754699997603893, 255459.640000000596046 ], [ 364709.04619999974966, 255456.67119999974966 ], [ 364712.088699996471405, 255453.450500000268221 ], [ 364716.900399997830391, 255448.996199999004602 ], [ 364721.984600000083447, 255442.046900000423193 ], [ 364737.995399996638298, 255424.145599998533726 ], [ 364729.656900003552437, 255419.691799998283386 ], [ 364693.02929999679327, 255420.679699998348951 ], [ 364693.256399996578693, 255422.70549999922514 ], [ 364688.628200002014637, 255434.129900000989437 ], [ 364687.64019999653101, 255434.853399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601093900", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-39", "ACRE": ".22", "LONGITUDE": -64.8772242, "LATITUDE": 18.32860101, "OBJECTID_1": 38255, "PARCEL_NO_": "107601093900", "Tax_Legal_": "3G-39 MARIENDAHL NO.4 RED HOOK QTR", "Name": "THOMAS, CHEROKEE & MAVIS", "Address": "PO Box 11622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 173900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.465385325, "SHAPE_Area": 819.45512485699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364495.716499999165535, 255531.743500001728535 ], [ 364508.020000003278255, 255518.644200000911951 ], [ 364494.242499999701977, 255496.655499998480082 ], [ 364492.029700003564358, 255496.736699998378754 ], [ 364485.834200002253056, 255498.731100000441074 ], [ 364479.171099998056889, 255507.272199999541044 ], [ 364470.413999997079372, 255519.889699999243021 ], [ 364466.810900002717972, 255524.464600000530481 ], [ 364495.716499999165535, 255531.743500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601093800", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-38", "ACRE": ".22", "LONGITUDE": -64.87693993000001, "LATITUDE": 18.32850188, "OBJECTID_1": 38254, "PARCEL_NO_": "107601093800", "Tax_Legal_": "3G-38 MARIENDAHL NO. 4 RED HOOK QTR", "Name": "DOMINIQUE, DONNY & MICHELLE", "Address": "PO Box 306557", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26600, "Improved_V": 225900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.86340522899999, "SHAPE_Area": 792.30778488700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364530.924699999392033, 255513.844200000166893 ], [ 364541.244400002062321, 255511.684300001710653 ], [ 364535.862499997019768, 255492.911100000143051 ], [ 364517.164399996399879, 255495.721999999135733 ], [ 364501.094400003552437, 255496.40430000051856 ], [ 364494.242499999701977, 255496.655499998480082 ], [ 364508.020000003278255, 255518.644200000911951 ], [ 364507.798000000417233, 255518.88060000166297 ], [ 364530.924699999392033, 255513.844200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601093700", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-37", "ACRE": ".23", "LONGITUDE": -64.87654772, "LATITUDE": 18.32841913, "OBJECTID_1": 38253, "PARCEL_NO_": "107601093700", "Tax_Legal_": "3G-37 MARIENDAHL NO.4 RED HOOK QTR", "Name": "HARRIGAN, ANIQUE & ISHMEL T.", "Address": "PO Box 7834", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33000, "Improved_V": 162400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.16845526099999, "SHAPE_Area": 892.878067966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364541.244400002062321, 255511.684300001710653 ], [ 364585.314300000667572, 255499.821899998933077 ], [ 364579.297600001096725, 255480.056499999016523 ], [ 364565.035700000822544, 255485.074700001627207 ], [ 364537.785899996757507, 255492.622000001370907 ], [ 364535.862499997019768, 255492.911100000143051 ], [ 364541.244400002062321, 255511.684300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601096600", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-66", "ACRE": ".22", "LONGITUDE": -64.87657617000001, "LATITUDE": 18.32864671, "OBJECTID_1": 38282, "PARCEL_NO_": "107601096600", "Tax_Legal_": "3G-66 ESTATE MARIENDAHL No.4 RED HOOK QTR.", "Name": "PARRIS, DAHLIA & LESROY WILLIAMS", "Address": "7514 Estate Tutu 173-64", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.07331113699999, "SHAPE_Area": 1217.7966828799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364582.725599996745586, 255529.049699999392033 ], [ 364574.872800000011921, 255502.632500000298023 ], [ 364541.244400002062321, 255511.684300001710653 ], [ 364530.924699999392033, 255513.844200000166893 ], [ 364541.734200000762939, 255540.349300000816584 ], [ 364545.214699998497963, 255539.358600001782179 ], [ 364582.725599996745586, 255529.049699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87283079, "LATITUDE": 18.33377401, "OBJECTID_1": 23141, "PARCEL_NO_": "105703060100", "Tax_Legal_": "LANGMATH(LITTLE NORGE) No.5 RED HOOK QUARTER", "Name": "ORVILLE S. FRANCIS", "Address": "PO Box 10715", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013715, "Country": "United States", "Land_Value": 77800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1417.8272468499999, "SHAPE_Area": 7325.2911537199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364668.732900001108646, 256040.019299998879433 ], [ 364668.639799997210503, 256040.3445999994874 ], [ 364669.527699999511242, 256041.035199999809265 ], [ 364682.789899997413158, 256042.055399999022484 ], [ 364701.152999997138977, 256048.176399998366833 ], [ 364708.804300002753735, 256054.807500001043081 ], [ 364713.905100002884865, 256062.968899998813868 ], [ 364716.965599998831749, 256067.559599999338388 ], [ 364718.495899997651577, 256074.190699998289347 ], [ 364721.046300001442432, 256083.88230000063777 ], [ 364721.046300001442432, 256084.392400000244379 ], [ 364721.046300001442432, 256089.493299998342991 ], [ 364722.066500000655651, 256096.634500000625849 ], [ 364720.536200001835823, 256102.245400000363588 ], [ 364719.516099996864796, 256111.426899999380112 ], [ 364720.536200001835823, 256120.098400000482798 ], [ 364724.106799997389317, 256127.749699998646975 ], [ 364727.677400000393391, 256133.360599998384714 ], [ 364736.858900003135204, 256138.461399998515844 ], [ 364749.611100003123283, 256136.931200001388788 ], [ 364775.625399999320507, 256128.259700000286102 ], [ 364787.357400000095367, 256123.668999999761581 ], [ 364807.250699996948242, 256119.588300000876188 ], [ 364835.815399996936321, 256119.078200001269579 ], [ 364875.602099999785423, 256117.548000000417233 ], [ 364924.570200003683567, 256116.527800001204014 ], [ 364940.38289999961853, 256113.467300001531839 ], [ 364959.766099996864796, 256104.795800000429153 ], [ 364977.108999997377396, 256099.184900000691414 ], [ 364991.901500001549721, 256098.674800001084805 ], [ 365009.754399999976158, 256108.876499999314547 ], [ 365023.016599997878075, 256122.138700000941753 ], [ 365030.157799996435642, 256127.239599999040365 ], [ 365045.460400000214577, 256131.320300001651049 ], [ 365057.702399998903275, 256131.830299999564886 ], [ 365076.065499998629093, 256128.259700000286102 ], [ 365089.8378000035882, 256118.56810000166297 ], [ 365108.200800001621246, 256098.674800001084805 ], [ 365124.01349999755621, 256086.942899998277426 ], [ 365157.168999999761581, 256065.009199999272823 ], [ 365181.14299999922514, 256054.297400001436472 ], [ 365201.036300003528595, 256049.706700000911951 ], [ 365226.030500002205372, 256050.726799998432398 ], [ 365239.292700000107288, 256051.747000001370907 ], [ 365242.863300003111362, 256054.807500001043081 ], [ 365244.393500000238419, 256059.908399999141693 ], [ 365250.514600001275539, 256059.908399999141693 ], [ 365253.064999997615814, 256053.787300001829863 ], [ 365256.635600000619888, 256053.787300001829863 ], [ 365258.165799997746944, 256043.075500000268221 ], [ 365208.177500002086163, 256038.4847999997437 ], [ 365189.814499996602535, 256039.504999998956919 ], [ 365162.269900001585484, 256052.257100000977516 ], [ 365128.60419999808073, 256069.089899998158216 ], [ 365100.039499998092651, 256093.574000000953674 ], [ 365084.226899996399879, 256108.876499999314547 ], [ 365071.98480000346899, 256117.037900000810623 ], [ 365046.480599999427795, 256119.588300000876188 ], [ 365041.889799997210503, 256118.56810000166297 ], [ 365020.976300001144409, 256105.815999999642372 ], [ 364999.042700000107288, 256091.533599998801947 ], [ 364976.775100000202656, 256090.170299999415874 ], [ 364976.088799998164177, 256090.5135000012815 ], [ 364953.869599997997284, 256095.156300000846386 ], [ 364952.624899998307228, 256096.124400001019239 ], [ 364943.953500002622604, 256101.735300000756979 ], [ 364923.03999999910593, 256106.836199998855591 ], [ 364855.708800002932549, 256109.386599998921156 ], [ 364809.291000001132488, 256110.406800001859665 ], [ 364790.928000003099442, 256113.467300001531839 ], [ 364771.034599997103214, 256119.588300000876188 ], [ 364749.101000003516674, 256125.199200000613928 ], [ 364737.879100002348423, 256122.138700000941753 ], [ 364731.248000003397465, 256109.896699998527765 ], [ 364731.758100003004074, 256101.22520000115037 ], [ 364732.778300002217293, 256088.473099999129772 ], [ 364728.697599999606609, 256071.130199998617172 ], [ 364723.596699997782707, 256053.787300001829863 ], [ 364704.723600000143051, 256036.954500000923872 ], [ 364683.299999997019768, 256030.833500001579523 ], [ 364670.956200003623962, 256033.533700000494719 ], [ 364672.008500002324581, 256034.135499998927116 ], [ 364668.732900001108646, 256040.019299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.872213, "LATITUDE": 18.33343392, "OBJECTID_1": 23141, "PARCEL_NO_": "105703060100", "Tax_Legal_": "LANGMATH(LITTLE NORGE) No.5 RED HOOK QUARTER", "Name": "ORVILLE S. FRANCIS", "Address": "PO Box 10715", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013715, "Country": "United States", "Land_Value": 77800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 345.32727673300002, "SHAPE_Area": 7562.5352182200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365062.001000002026558, 256081.921300001442432 ], [ 365035.258699998259544, 256001.248599998652935 ], [ 364981.649999998509884, 256001.248599998652935 ], [ 364981.699799999594688, 256001.758699998259544 ], [ 364980.16950000077486, 256015.020899999886751 ], [ 364970.477899998426437, 256053.787300001829863 ], [ 364968.4375, 256079.291600000113249 ], [ 364974.048500001430511, 256090.003400001674891 ], [ 364999.042700000107288, 256091.533599998801947 ], [ 365020.976300001144409, 256105.815999999642372 ], [ 365039.976199999451637, 256117.401299998164177 ], [ 365062.001000002026558, 256081.921300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87258981, "LATITUDE": 18.33271077, "OBJECTID_1": 23141, "PARCEL_NO_": "105703060100", "Tax_Legal_": "LANGMATH(LITTLE NORGE) No.5 RED HOOK QUARTER", "Name": "ORVILLE S. FRANCIS", "Address": "PO Box 10715", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013715, "Country": "United States", "Land_Value": 77800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 519.66311039100003, "SHAPE_Area": 2475.0995011700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364953.869599997997284, 256095.156300000846386 ], [ 364976.088799998164177, 256090.5135000012815 ], [ 364976.775100000202656, 256090.170299999415874 ], [ 364974.048500001430511, 256090.003400001674891 ], [ 364968.4375, 256079.291600000113249 ], [ 364970.477899998426437, 256053.787300001829863 ], [ 364980.16950000077486, 256015.020899999886751 ], [ 364981.699799999594688, 256001.758699998259544 ], [ 364979.659400001168251, 255980.845199998468161 ], [ 364975.578699998557568, 255939.528299998492002 ], [ 364974.048500001430511, 255925.756000000983477 ], [ 364981.189699999988079, 255906.882800001651049 ], [ 364992.411499999463558, 255894.640799999237061 ], [ 364998.532600000500679, 255885.459300000220537 ], [ 365009.754399999976158, 255868.626499999314547 ], [ 365000.572899997234344, 255863.015500001609325 ], [ 364980.16950000077486, 255892.090399999171495 ], [ 364964.356899999082088, 255917.084499999880791 ], [ 364962.316500000655651, 255922.185400001704693 ], [ 364966.397200003266335, 255950.750199999660254 ], [ 364971.498099997639656, 255992.577100001275539 ], [ 364972.518200002610683, 256000.738499999046326 ], [ 364967.927500002086163, 256024.202399998903275 ], [ 364959.766099996864796, 256062.458799999207258 ], [ 364958.745899997651577, 256077.251200001686811 ], [ 364957.215700000524521, 256092.553800001740456 ], [ 364953.869599997997284, 256095.156300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87076382, "LATITUDE": 18.33297182, "OBJECTID_1": 23141, "PARCEL_NO_": "105703060100", "Tax_Legal_": "LANGMATH(LITTLE NORGE) No.5 RED HOOK QUARTER", "Name": "ORVILLE S. FRANCIS", "Address": "PO Box 10715", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013715, "Country": "United States", "Land_Value": 77800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 701.30545077600004, "SHAPE_Area": 20300.433224299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365207.854299999773502, 255901.176899999380112 ], [ 365176.042199999094009, 255898.211399998515844 ], [ 365039.976199999451637, 256117.401299998164177 ], [ 365041.889799997210503, 256118.56810000166297 ], [ 365046.480599999427795, 256119.588300000876188 ], [ 365071.98480000346899, 256117.037900000810623 ], [ 365084.226899996399879, 256108.876499999314547 ], [ 365100.039499998092651, 256093.574000000953674 ], [ 365128.60419999808073, 256069.089899998158216 ], [ 365162.269900001585484, 256052.257100000977516 ], [ 365189.814499996602535, 256039.504999998956919 ], [ 365208.177500002086163, 256038.4847999997437 ], [ 365243.784500002861023, 256041.754799999296665 ], [ 365281.538599997758865, 256001.890900000929832 ], [ 365224.487899996340275, 255944.840199999511242 ], [ 365207.854299999773502, 255901.176899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064400", "MAP": "A9-519-T98", "PARCEL_NAM": "11-H", "ACRE": "5.005", "LONGITUDE": -64.87176079, "LATITUDE": 18.33252809, "OBJECTID_1": 23178, "PARCEL_NO_": "105703064400", "Tax_Legal_": "LONGMATH 11-H & 11-3 #5 RED HOOK QTR.", "Name": "BLAKE, ERIC W.", "Address": "PO Box 304191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 336300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 655.62137004399995, "SHAPE_Area": 21329.916799899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365175.626199997961521, 255898.881499998271465 ], [ 365175.5320999994874, 255898.721500001847744 ], [ 364998.756499998271465, 255885.123399998992682 ], [ 364998.532600000500679, 255885.459300000220537 ], [ 364992.411499999463558, 255894.640799999237061 ], [ 364981.189699999988079, 255906.882800001651049 ], [ 364974.048500001430511, 255925.756000000983477 ], [ 364975.578699998557568, 255939.528299998492002 ], [ 364979.659400001168251, 255980.845199998468161 ], [ 364981.649999998509884, 256001.248599998652935 ], [ 365035.258699998259544, 256001.248599998652935 ], [ 365062.001000002026558, 256081.921300001442432 ], [ 365175.626199997961521, 255898.881499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064200", "MAP": "A9-519-T98", "PARCEL_NAM": "11-F", "ACRE": "5.009", "LONGITUDE": -64.87302225000001, "LATITUDE": 18.3316965, "OBJECTID_1": 23176, "PARCEL_NO_": "105703064200", "Tax_Legal_": "11-F & 11-2 LANGMATH No.5 RED HOOK QTR", "Name": "CALISTRO, ISABEL", "Address": "1660 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 334800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 653.25186201300005, "SHAPE_Area": 21063.101571399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364830.710199996829033, 255865.240899998694658 ], [ 364828.674300000071526, 255950.240100000053644 ], [ 364967.198899999260902, 255912.592199999839067 ], [ 364980.16950000077486, 255892.090399999171495 ], [ 365000.572899997234344, 255863.015500001609325 ], [ 365005.410199999809265, 255865.971700001507998 ], [ 365043.930100001394749, 255823.739000000059605 ], [ 365052.832000002264977, 255775.838300000876188 ], [ 365049.640399999916553, 255776.237300001084805 ], [ 365016.336099997162819, 255779.706399999558926 ], [ 364969.848899997770786, 255794.970899999141693 ], [ 364928.912399999797344, 255819.255300000309944 ], [ 364842.182499997317791, 255835.907400000840425 ], [ 364830.992499999701977, 255865.354800000786781 ], [ 364830.710199996829033, 255865.240899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064500", "MAP": "A9-519-T98", "PARCEL_NAM": "11-J", "ACRE": "5.009", "LONGITUDE": -64.87117718, "LATITUDE": 18.3314814, "OBJECTID_1": 23179, "PARCEL_NO_": "105703064500", "Tax_Legal_": "LONGMATH 11-J & 11-8 #5 RED HOOK QTR.", "Name": "CALISTRO, FALICIA V", "Address": "1660 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 328900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 631.71912035900004, "SHAPE_Area": 21694.225588699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365052.832000002264977, 255775.838300000876188 ], [ 365043.930100001394749, 255823.739000000059605 ], [ 365005.410199999809265, 255865.971700001507998 ], [ 365009.754399999976158, 255868.626499999314547 ], [ 364998.756499998271465, 255885.123399998992682 ], [ 365175.5320999994874, 255898.721500001847744 ], [ 365175.626199997961521, 255898.881499998271465 ], [ 365176.042199999094009, 255898.211399998515844 ], [ 365207.854299999773502, 255901.176899999380112 ], [ 365207.835699997842312, 255901.128299999982119 ], [ 365227.957099996507168, 255839.376600001007318 ], [ 365234.895499996840954, 255798.440099999308586 ], [ 365168.286899998784065, 255785.9510000012815 ], [ 365071.843299999833107, 255773.461899999529123 ], [ 365052.832000002264977, 255775.838300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704089800", "MAP": "D9-7863-T006", "PARCEL_NAM": null, "ACRE": ".38", "LONGITUDE": -64.87355286, "LATITUDE": 18.33375709, "OBJECTID_1": 23710, "PARCEL_NO_": "105704089800", "Tax_Legal_": "11-G-1 ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "CALISTRO, ENRIQUE", "Address": "10721 London St", "City": "Hollywood", "State": "Florida", "Zip": 33026, "Country": "United States", "Land_Value": 52000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.30656092199999, "SHAPE_Area": 1011.10398341 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364887.988600000739098, 256108.163899999111891 ], [ 364883.895000003278255, 256071.055300001055002 ], [ 364854.394900001585484, 256072.81980000063777 ], [ 364862.855800002813339, 256109.115899998694658 ], [ 364887.988600000739098, 256108.163899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87571959, "LATITUDE": 18.33391327, "OBJECTID_1": 23141, "PARCEL_NO_": "105703060100", "Tax_Legal_": "LANGMATH(LITTLE NORGE) No.5 RED HOOK QUARTER", "Name": "ORVILLE S. FRANCIS", "Address": "PO Box 10715", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013715, "Country": "United States", "Land_Value": 77800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 381.270265209, "SHAPE_Area": 1701.8460183699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364722.048900000751019, 256096.511399999260902 ], [ 364721.046300001442432, 256099.184900000691414 ], [ 364715.945500001311302, 256103.265599999576807 ], [ 364707.784100003540516, 256097.144600000232458 ], [ 364692.991599999368191, 256091.533599998801947 ], [ 364677.178999997675419, 256085.922699999064207 ], [ 364656.265500001609325, 256087.962999999523163 ], [ 364642.493199996650219, 256090.003400001674891 ], [ 364626.170500002801418, 256096.124400001019239 ], [ 364562.920000001788139, 256123.668999999761581 ], [ 364567.000600002706051, 256132.340399999171495 ], [ 364570.571199998259544, 256132.340399999171495 ], [ 364573.631700001657009, 256134.380800001323223 ], [ 364574.141800001263618, 256135.40089999884367 ], [ 364578.732600003480911, 256133.870700001716614 ], [ 364579.75280000269413, 256131.830299999564886 ], [ 364579.75280000269413, 256128.769799999892712 ], [ 364582.813299998641014, 256126.219399999827147 ], [ 364591.484700001776218, 256121.628600001335144 ], [ 364621.579700000584126, 256107.856300000101328 ], [ 364646.573899999260902, 256098.674800001084805 ], [ 364681.259700000286102, 256096.124400001019239 ], [ 364703.193300001323223, 256106.836199998855591 ], [ 364717.985799998044968, 256119.078200001269579 ], [ 364720.776399999856949, 256120.613000001758337 ], [ 364720.536200001835823, 256120.098400000482798 ], [ 364719.516099996864796, 256111.426899999380112 ], [ 364720.536200001835823, 256102.245400000363588 ], [ 364722.066500000655651, 256096.634500000625849 ], [ 364722.048900000751019, 256096.511399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703066900", "MAP": "D9-8381-T009", "PARCEL_NAM": "11-C2", "ACRE": ".349", "LONGITUDE": -64.87539636, "LATITUDE": 18.33354187, "OBJECTID_1": 23202, "PARCEL_NO_": "105703066900", "Tax_Legal_": "11-C2 LANGMATH NO.5 RED HOOK QTR", "Name": "WILLIAMS, JANICE", "Address": "PO Box 12255", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.934926327, "SHAPE_Area": 1353.21105066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364689.507600001990795, 256090.297400001436472 ], [ 364685.786399997770786, 256084.170899998396635 ], [ 364699.925200000405312, 256047.767099998891354 ], [ 364682.789899997413158, 256042.055399999022484 ], [ 364669.527699999511242, 256041.035199999809265 ], [ 364668.639799997210503, 256040.3445999994874 ], [ 364657.121100001037121, 256080.584600001573563 ], [ 364665.639799997210503, 256087.048500001430511 ], [ 364677.178999997675419, 256085.922699999064207 ], [ 364689.507600001990795, 256090.297400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703067200", "MAP": "D9-8889-T014", "PARCEL_NAM": "11-1D", "ACRE": ".47", "LONGITUDE": -64.87429008, "LATITUDE": 18.33436336, "OBJECTID_1": 23205, "PARCEL_NO_": "105703067200", "Tax_Legal_": "11-1D LANGMATH NO. 5 RED HOOK QUARTER", "Name": "ESPRIT, LINDA LYDIA", "Address": "1117 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.390910601, "SHAPE_Area": 2038.7285060199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364780.587200000882149, 256126.318199999630451 ], [ 364776.823299996554852, 256170.82149999961257 ], [ 364775.441899999976158, 256186.144600000232458 ], [ 364806.870099999010563, 256192.36259999871254 ], [ 364810.082999996840954, 256119.53770000115037 ], [ 364807.250699996948242, 256119.588300000876188 ], [ 364787.357400000095367, 256123.668999999761581 ], [ 364780.587200000882149, 256126.318199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064200", "MAP": "A9-519-T98", "PARCEL_NAM": "11-2", "ACRE": "1.887", "LONGITUDE": -64.87383329, "LATITUDE": 18.33451085, "OBJECTID_1": 23176, "PARCEL_NO_": "105703064200", "Tax_Legal_": "11-F & 11-2 LANGMATH No.5 RED HOOK QTR", "Name": "CALISTRO, ISABEL", "Address": "1660 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 334800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.03144248900003, "SHAPE_Area": 7242.9817615000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364877.845499999821186, 256222.702199999243021 ], [ 364873.962200000882149, 256117.611000001430511 ], [ 364835.815399996936321, 256119.078200001269579 ], [ 364810.082999996840954, 256119.53770000115037 ], [ 364805.485100001096725, 256223.754900000989437 ], [ 364813.917300000786781, 256224.859000001102686 ], [ 364827.617399998009205, 256225.815499998629093 ], [ 364853.423000000417233, 256225.604499999433756 ], [ 364877.845499999821186, 256222.702199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064400", "MAP": "A9-519-T98", "PARCEL_NAM": "11-3", "ACRE": "1.829", "LONGITUDE": -64.87317802, "LATITUDE": 18.33448476, "OBJECTID_1": 23178, "PARCEL_NO_": "105703064400", "Tax_Legal_": "LONGMATH 11-H & 11-3 #5 RED HOOK QTR.", "Name": "BLAKE, ERIC W.", "Address": "PO Box 304191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 336300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 356.12378203100002, "SHAPE_Area": 7487.7691345200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364950.699699997901917, 256223.448899999260902 ], [ 364940.9358000010252, 256113.219900000840425 ], [ 364940.38289999961853, 256113.467300001531839 ], [ 364924.570200003683567, 256116.527800001204014 ], [ 364875.602099999785423, 256117.548000000417233 ], [ 364873.962200000882149, 256117.611000001430511 ], [ 364877.845499999821186, 256222.702199999243021 ], [ 364881.674500003457069, 256222.247099999338388 ], [ 364892.14580000191927, 256223.599399998784065 ], [ 364896.177400000393391, 256223.632399998605251 ], [ 364950.699699997901917, 256223.448899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064000", "MAP": "D9-8237-T009", "PARCEL_NAM": "11-4-1", "ACRE": ".328", "LONGITUDE": -64.87244376, "LATITUDE": 18.33402774, "OBJECTID_1": 23174, "PARCEL_NO_": "105703064000", "Tax_Legal_": "LANGMATH 11-D REM & ROW 11-D14 NO. 5 RED HOOK QTR.", "Name": "DRUCILLA BERNICE C HARRIGAN", "Address": "PO Box 10971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 233500, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.55338701400001, "SHAPE_Area": 1431.1941952300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364963.089100003242493, 256103.72069999948144 ], [ 364962.957699999213219, 256104.255800001323223 ], [ 364960.439800001680851, 256107.534200001507998 ], [ 364960.254100002348423, 256109.842599999159575 ], [ 364960.732400000095367, 256112.156599998474121 ], [ 364962.042000003159046, 256114.312699999660254 ], [ 364964.188500002026558, 256115.65089999884367 ], [ 364966.84009999781847, 256116.168499998748302 ], [ 364969.491599999368191, 256116.686099998652935 ], [ 364973.779100000858307, 256120.022599998861551 ], [ 365006.317800000309944, 256158.578699998557568 ], [ 365008.594700001180172, 256158.598200000822544 ], [ 365003.784800000488758, 256105.465300001204014 ], [ 364991.901500001549721, 256098.674800001084805 ], [ 364977.108999997377396, 256099.184900000691414 ], [ 364963.089100003242493, 256103.72069999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063900", "MAP": "A9-519-T98", "PARCEL_NAM": "11-9", "ACRE": "1.813", "LONGITUDE": -64.86952697, "LATITUDE": 18.33350449, "OBJECTID_1": 23173, "PARCEL_NO_": "105703063900", "Tax_Legal_": "11C-REM & 11-9 LANGMATH NO.5 RED HOOK QTR", "Name": "CALISTRO, ALTAGRACIA (LIFE ESTATE)", "Address": "21611 Sawyer Ave", "City": "Queens Village", "State": "New York", "Zip": 11427, "Country": "United States", "Land_Value": 307200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 364.746111176, "SHAPE_Area": 7241.6336543999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365250.571299999952316, 256059.772199999541044 ], [ 365280.088299997150898, 256096.734900001436472 ], [ 365287.666599996387959, 256132.3733000010252 ], [ 365296.147200003266335, 256127.69200000166893 ], [ 365325.316500000655651, 256111.254299998283386 ], [ 365326.386399999260902, 256111.242899999022484 ], [ 365326.482199996709824, 256110.667700000107288 ], [ 365351.460400000214577, 256069.731199998408556 ], [ 365332.032999999821186, 256044.059200000017881 ], [ 365286.239600002765656, 256006.591899998486042 ], [ 365281.538599997758865, 256001.890900000929832 ], [ 365243.784500002861023, 256041.754799999296665 ], [ 365258.165799997746944, 256043.075500000268221 ], [ 365256.635600000619888, 256053.787300001829863 ], [ 365253.064999997615814, 256053.787300001829863 ], [ 365250.571299999952316, 256059.772199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064500", "MAP": "A9-519-T98", "PARCEL_NAM": "11-8", "ACRE": "1.861", "LONGITUDE": -64.87015126, "LATITUDE": 18.33381308, "OBJECTID_1": 23179, "PARCEL_NO_": "105703064500", "Tax_Legal_": "LONGMATH 11-J & 11-8 #5 RED HOOK QTR.", "Name": "CALISTRO, FALICIA V", "Address": "1660 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 328900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 390.763974308, "SHAPE_Area": 7834.6381840800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365150.895300000905991, 256069.159499999135733 ], [ 365184.050700001418591, 256076.671300001442432 ], [ 365230.350400000810623, 256163.937699999660254 ], [ 365247.536499999463558, 256154.525199998170137 ], [ 365287.666599996387959, 256132.3733000010252 ], [ 365280.088299997150898, 256096.734900001436472 ], [ 365250.571299999952316, 256059.772199999541044 ], [ 365250.514600001275539, 256059.908399999141693 ], [ 365244.393500000238419, 256059.908399999141693 ], [ 365242.863300003111362, 256054.807500001043081 ], [ 365239.292700000107288, 256051.747000001370907 ], [ 365226.030500002205372, 256050.726799998432398 ], [ 365201.036300003528595, 256049.706700000911951 ], [ 365181.14299999922514, 256054.297400001436472 ], [ 365157.168999999761581, 256065.009199999272823 ], [ 365150.895300000905991, 256069.159499999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064100", "MAP": "A9-519-T98", "PARCEL_NAM": "11-6", "ACRE": "1.876", "LONGITUDE": -64.87123459, "LATITUDE": 18.33444328, "OBJECTID_1": 23175, "PARCEL_NO_": "105703064100", "Tax_Legal_": "11-E REM & 11-6 LANGMATH NO.4 RED HOOK QTR", "Name": "SEALES, BEVERLY SPRAUVE", "Address": "PO Box 6773", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 294000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.78521831699999, "SHAPE_Area": 7845.7475922800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365057.17059999704361, 256131.808200001716614 ], [ 365074.637500002980232, 256148.097600001841784 ], [ 365099.307599999010563, 256235.500300001353025 ], [ 365132.497000001370907, 256217.33390000090003 ], [ 365165.712300002574921, 256199.240600001066923 ], [ 365172.659500002861023, 256195.456300001591444 ], [ 365129.477899998426437, 256109.575500000268221 ], [ 365097.557099997997284, 256110.205600000917912 ], [ 365089.8378000035882, 256118.56810000166297 ], [ 365076.065499998629093, 256128.259700000286102 ], [ 365057.702399998903275, 256131.830299999564886 ], [ 365057.17059999704361, 256131.808200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063800", "MAP": "A9-519-T98", "PARCEL_NAM": "11-5", "ACRE": "1.882", "LONGITUDE": -64.8718896, "LATITUDE": 18.33457669, "OBJECTID_1": 23172, "PARCEL_NO_": "105703063800", "Tax_Legal_": "LANGMATH 11B & 11-5", "Name": "BEST, ELWIN A. & OTHERS", "Address": "40257 Patchwork Ln", "City": "Murrieta", "State": "California", "Zip": 92562, "Country": "United States", "Land_Value": 343100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 383.370638595, "SHAPE_Area": 7755.7952090600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365099.307599999010563, 256235.500300001353025 ], [ 365074.637500002980232, 256148.097600001841784 ], [ 365057.17059999704361, 256131.808200001716614 ], [ 365045.460400000214577, 256131.320300001651049 ], [ 365030.157799996435642, 256127.239599999040365 ], [ 365023.016599997878075, 256122.138700000941753 ], [ 365009.754399999976158, 256108.876499999314547 ], [ 365003.784800000488758, 256105.465300001204014 ], [ 365014.471199996769428, 256223.513700000941753 ], [ 365035.638899996876717, 256228.362399999052286 ], [ 365063.805799998342991, 256234.925700001418591 ], [ 365089.559299997985363, 256240.835999999195337 ], [ 365099.307599999010563, 256235.500300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704081000", "MAP": "D9-7863-T006", "PARCEL_NAM": "11-G-5", "ACRE": ".25", "LONGITUDE": -64.87289643, "LATITUDE": 18.33238182, "OBJECTID_1": 23701, "PARCEL_NO_": "105704081000", "Tax_Legal_": "11-G-5 ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "GEORGE PRESIDENT, RENEE", "Address": "PO Box 12262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.69667511399999, "SHAPE_Area": 1519.9972411799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364924.549800001084805, 255924.183299999684095 ], [ 364922.024499997496605, 255961.465399999171495 ], [ 364932.26070000231266, 255963.551100000739098 ], [ 364965.508799999952316, 255944.531599998474121 ], [ 364962.316500000655651, 255922.185400001704693 ], [ 364964.356899999082088, 255917.084499999880791 ], [ 364967.198899999260902, 255912.592199999839067 ], [ 364924.549800001084805, 255924.183299999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704044100", "MAP": "D9-7863-T006", "PARCEL_NAM": "11-G-3", "ACRE": ".25", "LONGITUDE": -64.87290752, "LATITUDE": 18.33334335, "OBJECTID_1": 23654, "PARCEL_NO_": "105704044100", "Tax_Legal_": "11-G-3 ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "CHARLERY, RAYMOND", "Address": "PO Box 306686", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 303600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.79224356, "SHAPE_Area": 1334.9248247099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364965.253600001335144, 256036.73589999973774 ], [ 364921.106899999082088, 256024.672100000083447 ], [ 364909.90089999884367, 256039.301699999719858 ], [ 364959.124099999666214, 256071.767799999564886 ], [ 364959.766099996864796, 256062.458799999207258 ], [ 364965.253600001335144, 256036.73589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704081100", "MAP": "D9-7839-T006", "PARCEL_NAM": null, "ACRE": ".234", "LONGITUDE": -64.87275247, "LATITUDE": 18.33265756, "OBJECTID_1": 23702, "PARCEL_NO_": "105704081100", "Tax_Legal_": "11-G-6 ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "BARON, AUGUSTUS & AUGUSTUS", "Address": "60-35 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.947737386, "SHAPE_Area": 895.36176795799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364932.26070000231266, 255963.551100000739098 ], [ 364938.960199996829033, 255965.502300001680851 ], [ 364944.99379999935627, 255970.249499998986721 ], [ 364954.693300001323223, 255980.394400000572205 ], [ 364965.711000002920628, 255994.240200001746416 ], [ 364972.492799997329712, 256000.868400000035763 ], [ 364972.518200002610683, 256000.738499999046326 ], [ 364971.498099997639656, 255992.577100001275539 ], [ 364966.397200003266335, 255950.750199999660254 ], [ 364965.508799999952316, 255944.531599998474121 ], [ 364932.26070000231266, 255963.551100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704045100", "MAP": "D9-7863-T006", "PARCEL_NAM": "11-G-2B", "ACRE": ".24", "LONGITUDE": -64.87299131, "LATITUDE": 18.33355125, "OBJECTID_1": 23657, "PARCEL_NO_": "105704045100", "Tax_Legal_": "11-G-2B ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "FLEMING, MELVIN EDISON", "Address": "2505 Staabiland", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.03664716, "SHAPE_Area": 1514.26266061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364896.318499997258186, 256028.794100001454353 ], [ 364919.22749999910593, 256077.351599998772144 ], [ 364952.305200003087521, 256096.331199999898672 ], [ 364952.624899998307228, 256096.124400001019239 ], [ 364957.215700000524521, 256092.553800001740456 ], [ 364958.745899997651577, 256077.251200001686811 ], [ 364959.124099999666214, 256071.767799999564886 ], [ 364909.90089999884367, 256039.301699999719858 ], [ 364896.318499997258186, 256028.794100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704045300", "MAP": "D9-7863-T006", "PARCEL_NAM": "11-G-2A", "ACRE": ".262", "LONGITUDE": -64.87314534, "LATITUDE": 18.33369433, "OBJECTID_1": 23659, "PARCEL_NO_": "105704045300", "Tax_Legal_": "11-G-2A ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "PETERSEN, DENISE J.", "Address": "ESTATE NADIR # 10C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.720365671, "SHAPE_Area": 1604.9187896200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364896.318499997258186, 256028.794100001454353 ], [ 364897.666400000452995, 256059.381799999624491 ], [ 364901.683100000023842, 256107.645100001245737 ], [ 364923.03999999910593, 256106.836199998855591 ], [ 364943.953500002622604, 256101.735300000756979 ], [ 364952.305200003087521, 256096.331199999898672 ], [ 364919.22749999910593, 256077.351599998772144 ], [ 364896.318499997258186, 256028.794100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704044000", "MAP": "D9-7863-T006", "PARCEL_NAM": "REM 11-G-2", "ACRE": ".87", "LONGITUDE": -64.87349536000001, "LATITUDE": 18.33349037, "OBJECTID_1": 23653, "PARCEL_NO_": "105704044000", "Tax_Legal_": "11-G-2 REM ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "HODGE, IRVINE", "Address": "PO Box 306043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.252172086, "SHAPE_Area": 2349.8854093800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364854.394900001585484, 256072.81980000063777 ], [ 364883.895000003278255, 256071.055300001055002 ], [ 364887.988600000739098, 256108.163899999111891 ], [ 364901.683100000023842, 256107.645100001245737 ], [ 364897.666400000452995, 256059.381799999624491 ], [ 364896.318499997258186, 256028.794100001454353 ], [ 364846.282399997115135, 256038.018300000578165 ], [ 364854.394900001585484, 256072.81980000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603019600", "MAP": "D9-8137-T008", "PARCEL_NAM": "36-1", "ACRE": "2.5", "LONGITUDE": -64.89196511, "LATITUDE": 18.33526163, "OBJECTID_1": 21539, "PARCEL_NO_": "105603019600", "Tax_Legal_": "36 ESTATE CHARLOTTE AMALIE #3 NEW QTR", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 1028100, "Improved_V": 248000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 380.29033619299997, "SHAPE_Area": 8576.7839961600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362970.617899999022484, 256277.049199998378754 ], [ 362976.79450000077486, 256262.321699999272823 ], [ 362935.521099999547005, 256173.335400000214577 ], [ 362916.703599996864796, 256179.256999999284744 ], [ 362868.231100000441074, 256196.871100001037121 ], [ 362919.535400003194809, 256316.524700000882149 ], [ 362919.597099997103214, 256316.658399999141693 ], [ 362970.617899999022484, 256277.049199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89187965000001, "LATITUDE": 18.33463603, "OBJECTID_1": 21502, "PARCEL_NO_": "105603010400", "Tax_Legal_": "28-1 REM ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "HEIRS OF SAMMY E.HARTMAN,JR.", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 279400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.01820620535, "SHAPE_Area": 1.458499e-05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362934.280299998819828, 256170.660000000149012 ], [ 362934.277400001883507, 256170.666799999773502 ], [ 362934.282499998807907, 256170.664900001138449 ], [ 362934.280299998819828, 256170.660000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603013300", "MAP": "D9-8488-T010", "PARCEL_NAM": "23", "ACRE": "1.41", "LONGITUDE": -64.89134592000001, "LATITUDE": 18.33491331, "OBJECTID_1": 21528, "PARCEL_NO_": "105603013300", "Tax_Legal_": "23 ESTATE CHARLOTTE AMALIE NO.3 NEW QTR", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 312000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.53057260399999, "SHAPE_Area": 6649.0443296499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363049.750600002706051, 256205.142799999564886 ], [ 363040.317199997603893, 256195.449499998241663 ], [ 363021.161300003528595, 256169.202799998223782 ], [ 363011.530500002205372, 256161.265299998223782 ], [ 362992.586300000548363, 256158.725299999117851 ], [ 362980.097900003194809, 256159.783599998801947 ], [ 362946.972000002861023, 256169.73200000077486 ], [ 362935.521200001239777, 256173.335400000214577 ], [ 362976.79450000077486, 256262.321699999272823 ], [ 362992.920299999415874, 256250.273800000548363 ], [ 363049.750600002706051, 256205.142799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701014400", "MAP": "D9-8522-T010", "PARCEL_NAM": "394-411 REM", "ACRE": ".300", "LONGITUDE": -64.88266499, "LATITUDE": 18.34661306, "OBJECTID_1": 21876, "PARCEL_NO_": "105701014400", "Tax_Legal_": "394-411 ANNAS RETREAT NO.1 NEW QTR", "Name": "LEWIS, FRANCES", "Address": "PO Box 503311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37600, "Improved_V": 132600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.463089669, "SHAPE_Area": 891.21821198500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363894.365599997341633, 257526.212699998170137 ], [ 363902.086499996483326, 257514.678399998694658 ], [ 363908.39019999653101, 257519.668200001120567 ], [ 363917.535300001502037, 257493.197999998927116 ], [ 363883.078900001943111, 257489.290300000458956 ], [ 363878.896300002932549, 257506.987900000065565 ], [ 363894.365599997341633, 257526.212699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803025500", "MAP": "D9-8494-T010", "PARCEL_NAM": "160-A", "ACRE": ".33", "LONGITUDE": -64.86404978, "LATITUDE": 18.33215028, "OBJECTID_1": 23914, "PARCEL_NO_": "105803025500", "Tax_Legal_": "ESTATE FRYDENHOJ 160-A NO.3 RED HOOK QTR", "Name": "VINCENT SAMUEL FAMILY REVOC TRUST & MARIA A NEGRON", "Address": "169-3 ESTATE FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.573049285, "SHAPE_Area": 1276.6022443300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365851.651699997484684, 255907.176100000739098 ], [ 365856.655100002884865, 255930.94029999896884 ], [ 365875.602700002491474, 255942.26630000025034 ], [ 365913.976199999451637, 255909.104200001806021 ], [ 365913.986599996685982, 255907.890900000929832 ], [ 365913.50450000166893, 255907.158700000494719 ], [ 365912.052100002765656, 255905.690099999308586 ], [ 365909.364500001072884, 255905.909699998795986 ], [ 365904.913699999451637, 255905.566300000995398 ], [ 365901.993900001049042, 255907.413699999451637 ], [ 365893.910999998450279, 255909.669599998742342 ], [ 365851.651699997484684, 255907.176100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803025900", "MAP": "A9-764-T011", "PARCEL_NAM": "113-A", "ACRE": ".440", "LONGITUDE": -64.86351618, "LATITUDE": 18.33206373, "OBJECTID_1": 23918, "PARCEL_NO_": "105803025900", "Tax_Legal_": "110D-B FRYDENHOJ NO. 3 RED HOOK QUARTER", "Name": "CHARLES, LOUCIANE F.", "Address": "PO Box 10538", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.481210347, "SHAPE_Area": 750.49857161199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365918.031999997794628, 255912.139299999922514 ], [ 365917.617499999701977, 255925.858600001782179 ], [ 365948.256300002336502, 255924.080600000917912 ], [ 365945.709200002253056, 255887.295400001108646 ], [ 365918.031999997794628, 255912.139299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86338939, "LATITUDE": 18.33217858, "OBJECTID_1": 23866, "PARCEL_NO_": "105803020600", "Tax_Legal_": "FRYDENHOJ 113 RED HOOK QTR", "Name": "MARK D WENNER REVOCABLE LIVING TRUST", "Address": "PO BOX 11910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 617700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.1971328986400001, "SHAPE_Area": 0.19122411574000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365947.476700000464916, 255924.125900000333786 ], [ 365948.290200002491474, 255924.569200001657009 ], [ 365948.256300002336502, 255924.080600000917912 ], [ 365947.476700000464916, 255924.125900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064100", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-12", "ACRE": ".270", "LONGITUDE": -64.87487697, "LATITUDE": 18.33264643, "OBJECTID_1": 23175, "PARCEL_NO_": "105703064100", "Tax_Legal_": "11-E REM & 11-6 LANGMATH NO.4 RED HOOK QTR", "Name": "SEALES, BEVERLY SPRAUVE", "Address": "PO Box 6773", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 294000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.394951472, "SHAPE_Area": 1151.02785455 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364749.179799996316433, 255982.61600000038743 ], [ 364753.022299997508526, 255951.422699999064207 ], [ 364721.046300001442432, 255946.66950000077486 ], [ 364714.925300002098083, 255969.113200001418591 ], [ 364712.476199999451637, 255977.572000000625849 ], [ 364714.223700001835823, 255979.938400000333786 ], [ 364716.38120000064373, 255981.526099998503923 ], [ 364720.175300002098083, 255982.146899998188019 ], [ 364738.090400002896786, 255981.514699999243021 ], [ 364742.431900002062321, 255981.551600001752377 ], [ 364747.163099996745586, 255982.180399999022484 ], [ 364749.179799996316433, 255982.61600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703066700", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-11", "ACRE": ".270", "LONGITUDE": -64.87495007, "LATITUDE": 18.3330045, "OBJECTID_1": 23200, "PARCEL_NO_": "105703066700", "Tax_Legal_": "11-E-11 LANGMATH NO.5 RED HOOK QTR", "Name": "SEALES, TOYA M.", "Address": "PO Box 502102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.5223243, "SHAPE_Area": 1132.5143486699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364731.829099997878075, 256025.820900000631809 ], [ 364751.990299999713898, 255993.857099998742342 ], [ 364750.621799997985363, 255993.195099998265505 ], [ 364747.474299997091293, 255991.991300001740456 ], [ 364743.336800001561642, 255991.171399999409914 ], [ 364738.207599997520447, 255990.931600000709295 ], [ 364720.093500003218651, 255991.758299998939037 ], [ 364717.083700001239777, 255991.732599999755621 ], [ 364715.300999999046326, 255992.502099998295307 ], [ 364714.10360000282526, 255994.061299998313189 ], [ 364711.354699999094009, 255994.617499999701977 ], [ 364707.273999996483326, 255994.617499999701977 ], [ 364703.193300001323223, 256000.228399999439716 ], [ 364699.622699998319149, 256007.369600001722574 ], [ 364697.704899996519089, 256009.287399999797344 ], [ 364731.829099997878075, 256025.820900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105703064100", "MAP": "D9-8051-T007", "PARCEL_NAM": "ROW 11-E-A", "ACRE": "0.37", "LONGITUDE": -64.87445732, "LATITUDE": 18.33307078, "OBJECTID_1": 23175, "PARCEL_NO_": "105703064100", "Tax_Legal_": "11-E REM & 11-6 LANGMATH NO.4 RED HOOK QTR", "Name": "SEALES, BEVERLY SPRAUVE", "Address": "PO Box 6773", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 294000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 355.42753145299997, "SHAPE_Area": 1557.57488326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364837.957599997520447, 256023.868099998682737 ], [ 364833.319799996912479, 256015.67339999973774 ], [ 364802.767200000584126, 256034.441199999302626 ], [ 364798.609700001776218, 256035.975099999457598 ], [ 364795.253200002014637, 256036.142700001597404 ], [ 364791.711099997162819, 256034.935499999672174 ], [ 364788.376400001347065, 256032.553199999034405 ], [ 364786.239000000059605, 256028.611699998378754 ], [ 364776.957000002264977, 256006.169900000095367 ], [ 364774.627300001680851, 256001.638300001621246 ], [ 364768.772200003266335, 255993.938099998980761 ], [ 364763.876999996602535, 255989.38459999859333 ], [ 364757.003499999642372, 255985.402800001204014 ], [ 364752.088299997150898, 255983.203200001269579 ], [ 364751.891000002622604, 255983.201499998569489 ], [ 364747.163099996745586, 255982.180399999022484 ], [ 364742.431900002062321, 255981.551600001752377 ], [ 364738.090400002896786, 255981.514699999243021 ], [ 364720.175300002098083, 255982.146899998188019 ], [ 364716.38120000064373, 255981.526099998503923 ], [ 364714.223700001835823, 255979.938400000333786 ], [ 364712.476199999451637, 255977.572000000625849 ], [ 364711.077100001275539, 255982.40430000051856 ], [ 364715.435400001704693, 255984.415800001472235 ], [ 364711.354699999094009, 255994.617499999701977 ], [ 364714.10360000282526, 255994.061299998313189 ], [ 364715.300999999046326, 255992.502099998295307 ], [ 364717.083700001239777, 255991.732599999755621 ], [ 364720.093500003218651, 255991.758299998939037 ], [ 364738.207599997520447, 255990.931600000709295 ], [ 364743.336800001561642, 255991.171399999409914 ], [ 364747.474299997091293, 255991.991300001740456 ], [ 364750.621799997985363, 255993.195099998265505 ], [ 364754.749200001358986, 255995.191799998283386 ], [ 364761.223099999129772, 255999.758699998259544 ], [ 364763.959200002253056, 256002.920699998736382 ], [ 364766.690200001001358, 256006.671000000089407 ], [ 364769.794299997389317, 256012.974700000137091 ], [ 364777.716600000858307, 256032.854800000786781 ], [ 364779.848899997770786, 256037.384700000286102 ], [ 364782.590000003576279, 256039.958099998533726 ], [ 364785.33110000193119, 256042.531599998474121 ], [ 364788.670800000429153, 256044.325500000268221 ], [ 364792.412000000476837, 256045.338199999183416 ], [ 364797.932499997317791, 256045.973700001835823 ], [ 364802.678700000047684, 256044.837099999189377 ], [ 364807.630599997937679, 256042.721500001847744 ], [ 364821.720299996435642, 256033.621700000017881 ], [ 364824.687100000679493, 256032.862300001084805 ], [ 364826.264200001955032, 256033.071899998933077 ], [ 364828.033600002527237, 256033.871700000017881 ], [ 364829.991899996995926, 256035.653799999505281 ], [ 364835.149499997496605, 256032.559099998325109 ], [ 364834.577600002288818, 256030.200300000607967 ], [ 364834.985600002110004, 256028.634399998933077 ], [ 364835.005699999630451, 256026.280600000172853 ], [ 364836.795100003480911, 256024.726599998772144 ], [ 364837.392099998891354, 256024.143199998885393 ], [ 364837.957599997520447, 256023.868099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704080400", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-1", "ACRE": ".295", "LONGITUDE": -64.87383936000001, "LATITUDE": 18.33378031, "OBJECTID_1": 23700, "PARCEL_NO_": "105704080400", "Tax_Legal_": "LONGMATH 11-E-1 No.4 REDHOOK QTR.", "Name": "PHILLIP TAVERNIER and GLORIA HAUGHTON TAVERNIER", "Address": "PO Box 9515", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.826134774, "SHAPE_Area": 1267.31163793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364826.616899996995926, 256074.824599999934435 ], [ 364822.624200001358986, 256110.113699998706579 ], [ 364855.708800002932549, 256109.386599998921156 ], [ 364862.855800002813339, 256109.115899998694658 ], [ 364853.652800001204014, 256069.636399999260902 ], [ 364826.616899996995926, 256074.824599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704080200", "MAP": "D9-8051-T007", "PARCEL_NAM": ".304", "ACRE": ".304", "LONGITUDE": -64.87418337, "LATITUDE": 18.33381226, "OBJECTID_1": 23698, "PARCEL_NO_": "105704080200", "Tax_Legal_": "LONGMATH 11-E-2 No.4 REDHOOK QTR.", "Name": "FRANCIS, ALBERT", "Address": "394 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34700, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.678329905, "SHAPE_Area": 1260.6272320200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364789.154200002551079, 256082.013700000941753 ], [ 364782.788800001144409, 256115.971599999815226 ], [ 364790.928000003099442, 256113.467300001531839 ], [ 364809.291000001132488, 256110.406800001859665 ], [ 364822.624200001358986, 256110.113699998706579 ], [ 364826.616899996995926, 256074.824599999934435 ], [ 364789.154200002551079, 256082.013700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704080300", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-3", "ACRE": ".304", "LONGITUDE": -64.87455103000001, "LATITUDE": 18.33390049, "OBJECTID_1": 23699, "PARCEL_NO_": "105704080300", "Tax_Legal_": "11-E-3 LANGMATH No.4 REDHOOK QTR.", "Name": "ELLIE, CECILIA & DANIEL BENJAMIN", "Address": "PO Box 12177", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34700, "Improved_V": 153200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.94426467299999, "SHAPE_Area": 1267.42110041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364761.320600003004074, 256087.354899998754263 ], [ 364738.217200003564358, 256122.230900000780821 ], [ 364749.101000003516674, 256125.199200000613928 ], [ 364771.034599997103214, 256119.588300000876188 ], [ 364782.788800001144409, 256115.971599999815226 ], [ 364789.154200002551079, 256082.013700000941753 ], [ 364761.320600003004074, 256087.354899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064100", "MAP": "D9-519-T98", "PARCEL_NAM": null, "ACRE": "4.59", "LONGITUDE": -64.87475891, "LATITUDE": 18.33376923, "OBJECTID_1": 23175, "PARCEL_NO_": "105703064100", "Tax_Legal_": "11-E REM & 11-6 LANGMATH NO.4 RED HOOK QTR", "Name": "SEALES, BEVERLY SPRAUVE", "Address": "PO Box 6773", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 294000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.48668830700001, "SHAPE_Area": 1062.4807947500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364752.996500000357628, 256058.478500001132488 ], [ 364731.38849999755621, 256082.566599998623133 ], [ 364732.778300002217293, 256088.473099999129772 ], [ 364731.758100003004074, 256101.22520000115037 ], [ 364731.248000003397465, 256109.896699998527765 ], [ 364737.879100002348423, 256122.138700000941753 ], [ 364738.217200003564358, 256122.230900000780821 ], [ 364761.320600003004074, 256087.354899998754263 ], [ 364760.871399998664856, 256087.441100001335144 ], [ 364753.02589999884367, 256058.538199998438358 ], [ 364752.996500000357628, 256058.478500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703066300", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-5", "ACRE": ".252", "LONGITUDE": -64.87485682000001, "LATITUDE": 18.33343122, "OBJECTID_1": 23196, "PARCEL_NO_": "105703066300", "Tax_Legal_": "LANGMATH 11-E-5 NO.5 REDHOOK QTR", "Name": "HUBERT, BRIAN & LAURENCIN, NOELISE", "Address": "PO Box 915", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.71530309900001, "SHAPE_Area": 1024.1578854500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364731.829099997878075, 256025.820900000631809 ], [ 364715.520499996840954, 256046.584199998527765 ], [ 364723.596699997782707, 256053.787300001829863 ], [ 364728.697599999606609, 256071.130199998617172 ], [ 364731.38849999755621, 256082.566599998623133 ], [ 364752.996500000357628, 256058.478500001132488 ], [ 364743.131800003349781, 256038.445300001651049 ], [ 364732.185900002717972, 256025.99379999935627 ], [ 364731.829099997878075, 256025.820900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703066600", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-10", "ACRE": ".267", "LONGITUDE": -64.87469039, "LATITUDE": 18.33313701, "OBJECTID_1": 23199, "PARCEL_NO_": "105703066600", "Tax_Legal_": "11-E-10 LANGMATH 5 RED HOOK QTR", "Name": "DUBIQUE, MYONA", "Address": "Po Box 1194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32300, "Improved_V": 72400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.15444292800001, "SHAPE_Area": 1152.97015235 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364747.465300001204014, 256047.245799999684095 ], [ 364768.884700000286102, 256027.090799998492002 ], [ 364770.429399996995926, 256014.568599998950958 ], [ 364769.794299997389317, 256012.974700000137091 ], [ 364766.690200001001358, 256006.671000000089407 ], [ 364763.959200002253056, 256002.920699998736382 ], [ 364761.223099999129772, 255999.758699998259544 ], [ 364754.749200001358986, 255995.191799998283386 ], [ 364751.990299999713898, 255993.857099998742342 ], [ 364731.829099997878075, 256025.820900000631809 ], [ 364732.185900002717972, 256025.99379999935627 ], [ 364743.131800003349781, 256038.445300001651049 ], [ 364747.465300001204014, 256047.245799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703066800", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-9", "ACRE": ".297", "LONGITUDE": -64.87454864, "LATITUDE": 18.33342254, "OBJECTID_1": 23201, "PARCEL_NO_": "105703066800", "Tax_Legal_": "11-E-9 ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "PIERRE, BENOLD & MAGDALENE DUBIQUE", "Address": "Po Box 1194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 40500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.852124508, "SHAPE_Area": 1282.85340346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364760.864500001072884, 256087.415600001811981 ], [ 364761.320600003004074, 256087.354899998754263 ], [ 364789.312399998307228, 256044.499200001358986 ], [ 364788.670800000429153, 256044.325500000268221 ], [ 364785.33110000193119, 256042.531599998474121 ], [ 364782.590000003576279, 256039.958099998533726 ], [ 364779.848899997770786, 256037.384700000286102 ], [ 364777.716600000858307, 256032.854800000786781 ], [ 364770.429399996995926, 256014.568599998950958 ], [ 364768.884700000286102, 256027.090799998492002 ], [ 364747.465300001204014, 256047.245799999684095 ], [ 364753.02589999884367, 256058.538199998438358 ], [ 364760.864500001072884, 256087.415600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064100", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-8", "ACRE": ".340", "LONGITUDE": -64.87429219000001, "LATITUDE": 18.33354064, "OBJECTID_1": 23175, "PARCEL_NO_": "105703064100", "Tax_Legal_": "11-E REM & 11-6 LANGMATH NO.4 RED HOOK QTR", "Name": "SEALES, BEVERLY SPRAUVE", "Address": "PO Box 6773", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 294000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.41061447000001, "SHAPE_Area": 1453.2170579399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364761.320600003004074, 256087.354899998754263 ], [ 364815.950800001621246, 256076.871399998664856 ], [ 364814.404100000858307, 256038.346900001168251 ], [ 364807.630599997937679, 256042.721500001847744 ], [ 364802.678700000047684, 256044.837099999189377 ], [ 364797.932499997317791, 256045.973700001835823 ], [ 364792.412000000476837, 256045.338199999183416 ], [ 364789.312399998307228, 256044.499200001358986 ], [ 364761.320600003004074, 256087.354899998754263 ] ] ], [ [ [ 364760.871399998664856, 256087.441100001335144 ], [ 364761.320600003004074, 256087.354899998754263 ], [ 364760.864500001072884, 256087.415600001811981 ], [ 364760.871399998664856, 256087.441100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703066400", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-7", "ACRE": ".347", "LONGITUDE": -64.87393104, "LATITUDE": 18.33342654, "OBJECTID_1": 23197, "PARCEL_NO_": "105703066400", "Tax_Legal_": "11-E-7 LANGMATH NO.5 REDHOOK QTR", "Name": "CHITOLIE, JANITHA, JIMMY, AND JURIN", "Address": "PO BOX 305841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44100, "Improved_V": 23100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.41559590400001, "SHAPE_Area": 1452.17803574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364814.404100000858307, 256038.346900001168251 ], [ 364815.950800001621246, 256076.871399998664856 ], [ 364853.652800001204014, 256069.636399999260902 ], [ 364842.472000002861023, 256021.6722999997437 ], [ 364837.392099998891354, 256024.143199998885393 ], [ 364836.795100003480911, 256024.726599998772144 ], [ 364835.005699999630451, 256026.280600000172853 ], [ 364834.985600002110004, 256028.634399998933077 ], [ 364834.577600002288818, 256030.200300000607967 ], [ 364835.149499997496605, 256032.559099998325109 ], [ 364829.991899996995926, 256035.653799999505281 ], [ 364828.033600002527237, 256033.871700000017881 ], [ 364826.264200001955032, 256033.071899998933077 ], [ 364824.687100000679493, 256032.862300001084805 ], [ 364821.720299996435642, 256033.621700000017881 ], [ 364814.404100000858307, 256038.346900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064100", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-13", "ACRE": ".295", "LONGITUDE": -64.8745448, "LATITUDE": 18.3326994, "OBJECTID_1": 23175, "PARCEL_NO_": "105703064100", "Tax_Legal_": "11-E REM & 11-6 LANGMATH NO.4 RED HOOK QTR", "Name": "SEALES, BEVERLY SPRAUVE", "Address": "PO Box 6773", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 294000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.8174013, "SHAPE_Area": 1238.5380253799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364774.526000000536442, 256001.505199998617172 ], [ 364790.265000000596046, 255956.958700001239777 ], [ 364753.022299997508526, 255951.422699999064207 ], [ 364749.179799996316433, 255982.61600000038743 ], [ 364751.891000002622604, 255983.201499998569489 ], [ 364752.088299997150898, 255983.203200001269579 ], [ 364757.003499999642372, 255985.402800001204014 ], [ 364763.876999996602535, 255989.38459999859333 ], [ 364768.772200003266335, 255993.938099998980761 ], [ 364774.526000000536442, 256001.505199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064100", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E REM", "ACRE": ".347", "LONGITUDE": -64.8740452, "LATITUDE": 18.33299922, "OBJECTID_1": 23175, "PARCEL_NO_": "105703064100", "Tax_Legal_": "11-E REM & 11-6 LANGMATH NO.4 RED HOOK QTR", "Name": "SEALES, BEVERLY SPRAUVE", "Address": "PO Box 6773", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 294000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.51825300199999, "SHAPE_Area": 1431.68376042 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364828.719200000166893, 255962.674899999052286 ], [ 364793.443400003015995, 256035.52589999884367 ], [ 364795.253200002014637, 256036.142700001597404 ], [ 364798.609700001776218, 256035.975099999457598 ], [ 364802.767200000584126, 256034.441199999302626 ], [ 364833.319799996912479, 256015.67339999973774 ], [ 364837.957599997520447, 256023.868099998682737 ], [ 364842.472000002861023, 256021.6722999997437 ], [ 364828.719200000166893, 255962.674899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064100", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-14", "ACRE": ".536", "LONGITUDE": -64.87426194, "LATITUDE": 18.33286173, "OBJECTID_1": 23175, "PARCEL_NO_": "105703064100", "Tax_Legal_": "11-E REM & 11-6 LANGMATH NO.4 RED HOOK QTR", "Name": "SEALES, BEVERLY SPRAUVE", "Address": "PO Box 6773", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 294000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.02453583799999, "SHAPE_Area": 2249.94739854 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364793.443400003015995, 256035.52589999884367 ], [ 364828.719200000166893, 255962.674899999052286 ], [ 364790.265000000596046, 255956.958700001239777 ], [ 364774.526000000536442, 256001.505199998617172 ], [ 364774.627300001680851, 256001.638300001621246 ], [ 364776.957000002264977, 256006.169900000095367 ], [ 364786.239000000059605, 256028.611699998378754 ], [ 364788.376400001347065, 256032.553199999034405 ], [ 364791.711099997162819, 256034.935499999672174 ], [ 364793.443400003015995, 256035.52589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046800", "MAP": "D9-6438-T98", "PARCEL_NAM": "19-2-149-2", "ACRE": ".354", "LONGITUDE": -64.8576208, "LATITUDE": 18.33299339, "OBJECTID_1": 24746, "PARCEL_NO_": "105804046800", "Tax_Legal_": "SMITH BAY ESTATE 19-2-149-2 No.1,2&3 EASTEND QTR.", "Name": "EDWARDS, EARLYN O", "Address": "PO Box 8512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68500, "Improved_V": 301000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.34408967100001, "SHAPE_Area": 1616.9108439700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366532.410499997437, 256021.286499999463558 ], [ 366551.023900002241135, 256046.079300001263618 ], [ 366553.353399999439716, 256045.612700000405312 ], [ 366555.118500001728535, 256044.878699999302626 ], [ 366581.493100002408028, 256033.720600001513958 ], [ 366570.458200000226498, 256003.866099998354912 ], [ 366554.472199998795986, 255987.269999999552965 ], [ 366542.213899999856949, 256006.379099998623133 ], [ 366532.410499997437, 256021.286499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804044800", "MAP": "D9-5269-T92", "PARCEL_NAM": "19-2-148", "ACRE": "0.43", "LONGITUDE": -64.85737206, "LATITUDE": 18.33280869, "OBJECTID_1": 24725, "PARCEL_NO_": "105804044800", "Tax_Legal_": "SMITH BAY 19-2-148 EAST END QTR.", "Name": "PLAIN, JOSEPH E. & HORTON, KRISTEN M.", "Address": "538 De Flores Cir", "City": "RIO VISTA", "State": "California", "Zip": 94571, "Country": "United States", "Land_Value": 70500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.166818638, "SHAPE_Area": 1702.75769302 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366581.493100002408028, 256033.720600001513958 ], [ 366584.76690000295639, 256028.047899998724461 ], [ 366603.425300002098083, 256014.901700001209974 ], [ 366605.052299998700619, 256013.226300001144409 ], [ 366609.132500000298023, 256007.560100000351667 ], [ 366613.250299997627735, 255997.461300000548363 ], [ 366563.485500000417233, 255970.456199999898672 ], [ 366554.472199998795986, 255987.269999999552965 ], [ 366570.458200000226498, 256003.866099998354912 ], [ 366581.493100002408028, 256033.720600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046700", "MAP": "D9-6438-T98", "PARCEL_NAM": "19-2-149-1", "ACRE": ".542", "LONGITUDE": -64.85752432, "LATITUDE": 18.33346546, "OBJECTID_1": 24745, "PARCEL_NO_": "105804046700", "Tax_Legal_": "SMITH BAY 19-2-149-1 EASTEND QTR", "Name": "JOHNSON, THOMAS & RUTHINE", "Address": "PO Box 11844", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57700, "Improved_V": 302900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.15557231899999, "SHAPE_Area": 2054.96654339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366587.007799997925758, 256048.964499998837709 ], [ 366581.214900001883507, 256048.724399998784065 ], [ 366577.195200003683567, 256048.689800001680851 ], [ 366573.046800002455711, 256049.0287000015378 ], [ 366571.285999998450279, 256049.263199999928474 ], [ 366568.014700002968311, 256049.859400000423193 ], [ 366564.867899999022484, 256050.581500001251698 ], [ 366562.978399999439716, 256051.189599998295307 ], [ 366542.799699999392033, 256060.380800001323223 ], [ 366523.279799997806549, 256068.928399998694658 ], [ 366525.5253000035882, 256070.745700001716614 ], [ 366582.856299996376038, 256100.307399999350309 ], [ 366593.9408999979496, 256087.018100000917912 ], [ 366587.007799997925758, 256048.964499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803040200", "MAP": "D9-6438-T98", "PARCEL_NAM": null, "ACRE": ".40", "LONGITUDE": -64.85795394, "LATITUDE": 18.3331943, "OBJECTID_1": 23997, "PARCEL_NO_": "105803040200", "Tax_Legal_": "19-2-149-3 ESTATE SMITH BAY NO.1,2&3 EAST END QTR", "Name": "NUNEZ, MARITZA", "Address": "121 Dade NW 39", "City": "Miami", "State": "Florida", "Zip": 33127, "Country": "United States", "Land_Value": 53400, "Improved_V": 142300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.75694431599999, "SHAPE_Area": 1252.5360289800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366551.023900002241135, 256046.079300001263618 ], [ 366532.410499997437, 256021.286499999463558 ], [ 366520.272600002586842, 256026.253499999642372 ], [ 366491.142899997532368, 256038.047400001436472 ], [ 366515.953000001609325, 256061.972800001502037 ], [ 366516.081799998879433, 256062.095100000500679 ], [ 366534.940800003707409, 256053.945099998265505 ], [ 366538.218599997460842, 256052.599800001829863 ], [ 366540.243400000035763, 256050.869100000709295 ], [ 366541.012199997901917, 256049.127599999308586 ], [ 366540.906999997794628, 256046.754299998283386 ], [ 366540.168300002813339, 256044.999800000339746 ], [ 366545.338899999856949, 256042.671900000423193 ], [ 366547.578400000929832, 256045.188400000333786 ], [ 366549.080399997532368, 256045.825699999928474 ], [ 366550.962499998509884, 256046.091600000858307 ], [ 366551.023900002241135, 256046.079300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105602019000", "MAP": "A9-113-T69", "PARCEL_NAM": "386", "ACRE": null, "LONGITUDE": -64.88636527, "LATITUDE": 18.34099399, "OBJECTID_1": 21003, "PARCEL_NO_": "105602019000", "Tax_Legal_": "386 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 492700, "Improved_V": 1176200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 443.214551228, "SHAPE_Area": 11134.842228699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363445.784500002861023, 256855.174800001084805 ], [ 363440.782999999821186, 256874.343299999833107 ], [ 363446.604900002479553, 256895.418600000441074 ], [ 363536.851800002157688, 256955.978399999439716 ], [ 363578.847699999809265, 256853.730700001120567 ], [ 363555.552699998021126, 256843.19649999961257 ], [ 363531.472999997437, 256830.122699998319149 ], [ 363509.016800001263618, 256815.7956000007689 ], [ 363497.800300002098083, 256807.260099999606609 ], [ 363475.994699999690056, 256833.758600000292063 ], [ 363462.323299996554852, 256865.6706000007689 ], [ 363445.784500002861023, 256855.174800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105602019000", "MAP": "D9-8445-T010", "PARCEL_NAM": "386-1", "ACRE": ".05", "LONGITUDE": -64.88685717, "LATITUDE": 18.34074164, "OBJECTID_1": 21003, "PARCEL_NO_": "105602019000", "Tax_Legal_": "386 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 492700, "Improved_V": 1176200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.356472132600004, "SHAPE_Area": 401.81289467800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363445.784500002861023, 256855.174800001084805 ], [ 363462.323299996554852, 256865.6706000007689 ], [ 363475.994699999690056, 256833.758600000292063 ], [ 363468.467399999499321, 256842.905900001525879 ], [ 363453.978900000452995, 256839.831999998539686 ], [ 363445.784500002861023, 256855.174800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107502030100", "MAP": "D9-8680-T012", "PARCEL_NAM": "3F-REM", "ACRE": "8.54", "LONGITUDE": -64.88454664, "LATITUDE": 18.32468735, "OBJECTID_1": 37510, "PARCEL_NO_": "107502030100", "Tax_Legal_": "BOVONI/EASTERN PT 3F FRENCHMAN'S BAY QTR", "Name": "LIMA, ALFREDO", "Address": "PO Box 9355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 158500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 412.51302162299999, "SHAPE_Area": 5465.5696196600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363791.445600003004074, 255122.623599998652935 ], [ 363801.46679999679327, 255090.944299999624491 ], [ 363643.243100002408028, 255029.368599999696016 ], [ 363638.719899997115135, 255042.816300000995398 ], [ 363638.69709999859333, 255045.513300001621246 ], [ 363639.360200002789497, 255047.317099999636412 ], [ 363640.253300003707409, 255048.673200000077486 ], [ 363641.48650000244379, 255049.919900000095367 ], [ 363642.835600003600121, 255050.830299999564886 ], [ 363640.980099998414516, 255056.321400001645088 ], [ 363639.51410000026226, 255055.859499998390675 ], [ 363637.818300001323223, 255055.845199998468161 ], [ 363636.232600003480911, 255056.1689000017941 ], [ 363634.870200000703335, 255056.831700000911951 ], [ 363633.95719999819994, 255057.835400000214577 ], [ 363633.252199999988079, 255059.575899999588728 ], [ 363791.445600003004074, 255122.623599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504040800", "MAP": "D9-7884-T006", "PARCEL_NAM": "2-3P-1", "ACRE": ".21", "LONGITUDE": -64.88550636, "LATITUDE": 18.32247597, "OBJECTID_1": 37787, "PARCEL_NO_": "107504040800", "Tax_Legal_": "2-3Q-1,2-3P-1,2-3N,ROW'S 2-3Q-REM,2-3P-REM BOVONI 1&2 FRENCHMAN BAY QTR.", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 112200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.49456128, "SHAPE_Area": 768.85629194600006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363599.929700002074242, 254836.218600001186132 ], [ 363603.379600003361702, 254837.803899999707937 ], [ 363610.384800001978874, 254841.359499998390675 ], [ 363612.888800002634525, 254842.379700001329184 ], [ 363615.654600001871586, 254842.153299998492002 ], [ 363617.668700002133846, 254841.670800000429153 ], [ 363620.200099997222424, 254839.444499999284744 ], [ 363625.706399999558926, 254841.988499999046326 ], [ 363625.436099998652935, 254844.233899999409914 ], [ 363625.919600002467632, 254846.485700000077486 ], [ 363629.472599998116493, 254849.678700000047684 ], [ 363639.103299997746944, 254823.435600001364946 ], [ 363622.788699999451637, 254819.359499998390675 ], [ 363607.364799998700619, 254814.810600001364946 ], [ 363599.929700002074242, 254836.218600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045700", "MAP": "D9-7884-T006", "PARCEL_NAM": "2-3L-1", "ACRE": ".21", "LONGITUDE": -64.88578777, "LATITUDE": 18.3223874, "OBJECTID_1": 37826, "PARCEL_NO_": "107504045700", "Tax_Legal_": "BOVONI ESTATE 2-3L-1 & R.O.W.2-3L-A No.1&2 FRENCHMAN BAY QTR.", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.054033773, "SHAPE_Area": 631.26761990600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363570.175399996340275, 254822.545899998396635 ], [ 363599.929700002074242, 254836.218600001186132 ], [ 363607.364799998700619, 254814.810600001364946 ], [ 363579.354000002145767, 254806.549499999731779 ], [ 363570.175399996340275, 254822.545899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504040800", "MAP": "D9-7884-T006", "PARCEL_NAM": "REM 2-3P", "ACRE": ".08", "LONGITUDE": -64.88555865, "LATITUDE": 18.32263755, "OBJECTID_1": 37787, "PARCEL_NO_": "107504040800", "Tax_Legal_": "2-3Q-1,2-3P-1,2-3N,ROW'S 2-3Q-REM,2-3P-REM BOVONI 1&2 FRENCHMAN BAY QTR.", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 112200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.401195668, "SHAPE_Area": 455.62093966499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363629.472599998116493, 254849.678700000047684 ], [ 363625.919600002467632, 254846.485700000077486 ], [ 363625.436099998652935, 254844.233899999409914 ], [ 363625.706399999558926, 254841.988499999046326 ], [ 363620.200099997222424, 254839.444499999284744 ], [ 363617.668700002133846, 254841.670800000429153 ], [ 363615.654600001871586, 254842.153299998492002 ], [ 363612.888800002634525, 254842.379700001329184 ], [ 363610.384800001978874, 254841.359499998390675 ], [ 363603.379600003361702, 254837.803899999707937 ], [ 363599.929700002074242, 254836.218600001186132 ], [ 363595.785599999129772, 254848.150699999183416 ], [ 363625.148900002241135, 254861.460400000214577 ], [ 363629.472599998116493, 254849.678700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045700", "MAP": "D9-7884-T006", "PARCEL_NAM": null, "ACRE": ".08", "LONGITUDE": -64.88585552000001, "LATITUDE": 18.32252142, "OBJECTID_1": 37826, "PARCEL_NO_": "107504045700", "Tax_Legal_": "BOVONI ESTATE 2-3L-1 & R.O.W.2-3L-A No.1&2 FRENCHMAN BAY QTR.", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.298430803100004, "SHAPE_Area": 429.67106317700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363599.929700002074242, 254836.218600001186132 ], [ 363570.175399996340275, 254822.545899998396635 ], [ 363563.802100002765656, 254833.653299998492002 ], [ 363595.785599999129772, 254848.150699999183416 ], [ 363599.929700002074242, 254836.218600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504060400", "MAP": "A9-379-T90", "PARCEL_NAM": "17E", "ACRE": "2.63", "LONGITUDE": -64.88691283, "LATITUDE": 18.31633505, "OBJECTID_1": 37857, "PARCEL_NO_": "107504060400", "Tax_Legal_": "BOVONI ESTATE 17-E FRENCHMAN'S BAY QTR.", "Name": "DRY MARINA LLC", "Address": "7411 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 277800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 481.87698396399998, "SHAPE_Area": 11391.0417115 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363542.020400002598763, 254077.5489999987185 ], [ 363464.718699999153614, 254064.672899998724461 ], [ 363463.858499996364117, 254070.998700000345707 ], [ 363447.232299998402596, 254129.546599999070168 ], [ 363442.270400002598763, 254144.071400001645088 ], [ 363438.150700002908707, 254154.381299998611212 ], [ 363434.767200000584126, 254172.929800000041723 ], [ 363430.634999997913837, 254184.717300001531839 ], [ 363428.113499999046326, 254196.728999998420477 ], [ 363430.348999999463558, 254218.278799999505281 ], [ 363428.650100000202656, 254228.397399999201298 ], [ 363429.407899998128414, 254234.103100001811981 ], [ 363432.609700001776218, 254236.873500000685453 ], [ 363466.395700000226498, 254246.438200000673532 ], [ 363472.045299999415874, 254245.851100001484156 ], [ 363476.922799997031689, 254241.247000001370907 ], [ 363479.472999997437, 254225.857999999076128 ], [ 363486.922200001776218, 254203.331999998539686 ], [ 363495.9695999994874, 254182.507800001651049 ], [ 363497.600199997425079, 254180.410199999809265 ], [ 363499.261399999260902, 254174.724300000816584 ], [ 363542.020400002598763, 254077.5489999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803034600", "MAP": "D9-8480-T010", "PARCEL_NAM": "19-2-83-A", "ACRE": ".234", "LONGITUDE": -64.8600547, "LATITUDE": 18.33176068, "OBJECTID_1": 23963, "PARCEL_NO_": "105803034600", "Tax_Legal_": "SMITH BAY 19-2-83A EASTEND QUARTER", "Name": "UECKER, BEN & CHINUE A.", "Address": "PO Box 690", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32900, "Improved_V": 244900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.514900415, "SHAPE_Area": 1174.7626835799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366298.245800003409386, 255869.282499998807907 ], [ 366299.050999999046326, 255871.235700000077486 ], [ 366299.482400000095367, 255872.559900000691414 ], [ 366299.583700001239777, 255873.661299999803305 ], [ 366297.329800002276897, 255882.151700001209974 ], [ 366291.525499999523163, 255900.891499999910593 ], [ 366291.462600000202656, 255908.27930000051856 ], [ 366309.955600000917912, 255914.552400000393391 ], [ 366309.214100003242493, 255906.946899998933077 ], [ 366311.681500002741814, 255901.267599999904633 ], [ 366314.942800000309944, 255897.072399999946356 ], [ 366316.618299998342991, 255889.697900000959635 ], [ 366317.482199996709824, 255882.94990000128746 ], [ 366315.919900000095367, 255877.026500001549721 ], [ 366312.748599998652935, 255870.66780000180006 ], [ 366309.559299997985363, 255866.419799998402596 ], [ 366296.748199999332428, 255855.760299999266863 ], [ 366286.36150000244379, 255844.487300001084805 ], [ 366283.134400002658367, 255844.671999998390675 ], [ 366278.971600003540516, 255860.047699999064207 ], [ 366298.245800003409386, 255869.282499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803043200", "MAP": "D9-8480-T010", "PARCEL_NAM": "19-2-83-B", "ACRE": ".237", "LONGITUDE": -64.8602162, "LATITUDE": 18.3318153, "OBJECTID_1": 24004, "PARCEL_NO_": "105803043200", "Tax_Legal_": "SMITH BAY 19-2-83B EASTEND QUARTER", "Name": "TAYLOR, DOSTER DENROY", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34300, "Improved_V": 113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.331533256, "SHAPE_Area": 1011.38007614 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366297.329800002276897, 255882.151700001209974 ], [ 366299.583700001239777, 255873.661299999803305 ], [ 366299.482400000095367, 255872.559900000691414 ], [ 366299.050999999046326, 255871.235700000077486 ], [ 366298.245800003409386, 255869.282499998807907 ], [ 366278.971600003540516, 255860.047699999064207 ], [ 366275.615099996328354, 255875.430100001394749 ], [ 366267.256999999284744, 255909.980999998748302 ], [ 366291.462600000202656, 255908.27930000051856 ], [ 366291.525499999523163, 255900.891499999910593 ], [ 366297.329800002276897, 255882.151700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803012000", "MAP": "D9-8481-T010", "PARCEL_NAM": "19F-B", "ACRE": ".008", "LONGITUDE": -64.85884698, "LATITUDE": 18.33790836, "OBJECTID_1": 23843, "PARCEL_NO_": "105803012000", "Tax_Legal_": "19F-A-1 SMITH BAY Nos. 1,2,& 3 EAST END QTR", "Name": "PCS ENTERPRISES LLC", "Address": "4608 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 209100, "Improved_V": 1990900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.387094878500001, "SHAPE_Area": 23.507597926300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366418.394500002264977, 256560.850099999457598 ], [ 366426.154200002551079, 256567.571400001645088 ], [ 366423.521600000560284, 256559.232200000435114 ], [ 366418.394500002264977, 256560.850099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803012000", "MAP": "D9-9142-T016", "PARCEL_NAM": "19F-A-1", "ACRE": "1.11", "LONGITUDE": -64.85965528, "LATITUDE": 18.33820915, "OBJECTID_1": 23843, "PARCEL_NO_": "105803012000", "Tax_Legal_": "19F-A-1 SMITH BAY Nos. 1,2,& 3 EAST END QTR", "Name": "PCS ENTERPRISES LLC", "Address": "4608 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 209100, "Improved_V": 1990900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 453.18166749599999, "SHAPE_Area": 6337.3567781900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366254.712899997830391, 256561.51630000025034 ], [ 366336.462399996817112, 256654.476799998432398 ], [ 366338.344200000166893, 256652.345600001513958 ], [ 366355.539300002157688, 256621.666700001806021 ], [ 366361.25, 256613.903000000864267 ], [ 366367.75450000166893, 256607.623399998992682 ], [ 366378.294100001454353, 256600.954599998891354 ], [ 366430.848200000822544, 256584.497299998998642 ], [ 366426.154200002551079, 256567.571400001645088 ], [ 366418.394500002264977, 256560.850099999457598 ], [ 366410.870200000703335, 256563.224399998784065 ], [ 366406.79730000346899, 256568.04619999974966 ], [ 366401.927100002765656, 256571.806099999696016 ], [ 366396.257700003683567, 256574.714999999850988 ], [ 366379.30179999768734, 256577.32039999961853 ], [ 366362.33330000191927, 256581.403400000184774 ], [ 366338.951999999582767, 256581.000999998301268 ], [ 366328.478900000452995, 256579.8597999997437 ], [ 366314.803999997675419, 256575.94819999858737 ], [ 366299.554200001060963, 256567.590700000524521 ], [ 366289.151199996471405, 256558.217399999499321 ], [ 366284.333099998533726, 256555.855999998748302 ], [ 366279.504199996590614, 256554.760999999940395 ], [ 366273.860100001096725, 256554.714800000190735 ], [ 366268.203299999237061, 256556.146099999547005 ], [ 366262.530299998819828, 256559.477200001478195 ], [ 366254.712899997830391, 256561.51630000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701031700", "MAP": "D9-8504-T010", "PARCEL_NAM": "20-29 REM", "ACRE": ".265", "LONGITUDE": -64.87672313, "LATITUDE": 18.34456361, "OBJECTID_1": 21965, "PARCEL_NO_": "105701031700", "Tax_Legal_": "20-23&29 SMITH BAY EAST END QTR", "Name": "HUSBAND, CLARENCE & ALICIA", "Address": "PO Box 7805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 93500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.81500178799999, "SHAPE_Area": 1071.7328963 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364510.492700003087521, 257294.5793999992311 ], [ 364523.812200002372265, 257293.741300001740456 ], [ 364551.10530000180006, 257292.024000000208616 ], [ 364551.340999998152256, 257286.298799999058247 ], [ 364551.762199997901917, 257276.070199999958277 ], [ 364551.787299998104572, 257273.121100001037121 ], [ 364527.639399997889996, 257268.062300000339746 ], [ 364521.987999998033047, 257268.860399998724461 ], [ 364508.365199998021126, 257279.456900000572205 ], [ 364495.369400002062321, 257289.565699998289347 ], [ 364499.405299998819828, 257295.276999998837709 ], [ 364510.492700003087521, 257294.5793999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701031700", "MAP": "D9-8504-T010", "PARCEL_NAM": "20-29-1", "ACRE": ".251", "LONGITUDE": -64.87666872, "LATITUDE": 18.34480067, "OBJECTID_1": 21965, "PARCEL_NO_": "105701031700", "Tax_Legal_": "20-23&29 SMITH BAY EAST END QTR", "Name": "HUSBAND, CLARENCE & ALICIA", "Address": "PO Box 7805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 93500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.881281892, "SHAPE_Area": 1321.03241746 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364540.299699999392033, 257333.404699999839067 ], [ 364550.864399999380112, 257336.58049999922514 ], [ 364550.797799997031689, 257327.705200001597404 ], [ 364550.79730000346899, 257327.651000000536442 ], [ 364550.723999999463558, 257317.872400000691414 ], [ 364550.600599996745586, 257317.768699999898672 ], [ 364550.665799997746944, 257310.12220000103116 ], [ 364550.74549999833107, 257300.759799998253584 ], [ 364551.10530000180006, 257292.024000000208616 ], [ 364523.812200002372265, 257293.741300001740456 ], [ 364523.699600003659725, 257293.748399998992682 ], [ 364499.405299998819828, 257295.276999998837709 ], [ 364504.865412107435986, 257302.110803471383406 ], [ 364510.761211281293072, 257308.572478659887565 ], [ 364517.067400000989437, 257314.634300000965595 ], [ 364522.621500000357628, 257317.8761 ], [ 364529.385399997234344, 257322.776399999856949 ], [ 364534.32154554722365, 257327.24480275332462 ], [ 364539.421999998390675, 257331.524700000882149 ], [ 364540.299699999392033, 257333.404699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701031600", "MAP": "F9-2335-T68", "PARCEL_NAM": null, "ACRE": ".35", "LONGITUDE": -64.87617831, "LATITUDE": 18.3447342, "OBJECTID_1": 21964, "PARCEL_NO_": "105701031600", "Tax_Legal_": "20B-5 EST. SMITH BAY EAST END QUARTER", "Name": "LOITEN, ALFRED & MONICA", "Address": "PO Box 10491", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29700, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.808824477, "SHAPE_Area": 327.81054327800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364619.143700003623962, 257304.069499999284744 ], [ 364550.943599998950958, 257295.94990000128746 ], [ 364550.74549999833107, 257300.759799998253584 ], [ 364615.993900001049042, 257308.682100001722574 ], [ 364618.443400003015995, 257305.113600000739098 ], [ 364619.143700003623962, 257304.069499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804034100", "MAP": "D9-3056-T85", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.84759964, "LATITUDE": 18.33315448, "OBJECTID_1": 24688, "PARCEL_NO_": "105804034100", "Tax_Legal_": "11-100 SMITH BAY EAST END QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 16400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.39564909699999, "SHAPE_Area": 737.55503233499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367627.272399999201298, 256022.334199998527765 ], [ 367594.698399998247623, 256047.956300001591444 ], [ 367591.018700003623962, 256053.386799998581409 ], [ 367602.236100003123283, 256047.774399999529123 ], [ 367613.385999999940395, 256064.119899999350309 ], [ 367619.829300001263618, 256065.017000000923872 ], [ 367625.495099999010563, 256062.530200000852346 ], [ 367627.12389999628067, 256060.643699999898672 ], [ 367628.794100001454353, 256053.902399998158216 ], [ 367627.240800000727177, 256046.923599999397993 ], [ 367625.757600001990795, 256031.712699998170137 ], [ 367627.272399999201298, 256022.334199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": "D9-8424-T010", "PARCEL_NAM": "11-J", "ACRE": "5.0", "LONGITUDE": -64.84862712, "LATITUDE": 18.33305339, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 663.18180878500004, "SHAPE_Area": 20694.780540700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367396.811599999666214, 256024.350499998778105 ], [ 367389.218500003218651, 256027.974300000816584 ], [ 367391.626299999654293, 256067.176199998706579 ], [ 367397.342200003564358, 256103.486200001090765 ], [ 367428.723700001835823, 256100.461199998855591 ], [ 367454.093900002539158, 256095.28660000115633 ], [ 367475.212499998509884, 256093.67119999974966 ], [ 367506.622500002384186, 256087.35020000115037 ], [ 367594.698399998247623, 256047.956300001591444 ], [ 367627.272399999201298, 256022.334199998527765 ], [ 367627.460100002586842, 256021.171999998390675 ], [ 367629.945600003004074, 256013.381900001317263 ], [ 367634.050899997353554, 256004.760600000619888 ], [ 367637.317500002682209, 255999.932199999690056 ], [ 367642.995899997651577, 255995.9679000005126 ], [ 367654.329199999570847, 255990.783300001174212 ], [ 367647.167700000107288, 255979.536800000816584 ], [ 367564.137299999594688, 255976.535199999809265 ], [ 367556.858900003135204, 255979.008699998259544 ], [ 367556.06700000166893, 255977.313499998301268 ], [ 367553.682199999690056, 255973.28319999948144 ], [ 367550.503700003027916, 255967.768699999898672 ], [ 367480.88570000231266, 255999.496300000697374 ], [ 367477.705399997532368, 255994.192899998277426 ], [ 367396.811599999666214, 256024.350499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": "D9-3930-T87", "PARCEL_NAM": "11-I", "ACRE": null, "LONGITUDE": -64.8501872, "LATITUDE": 18.33457839, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.57886607400002, "SHAPE_Area": 5378.4510315999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367419.331699997186661, 256204.293999999761581 ], [ 367419.641000002622604, 256173.109700001776218 ], [ 367355.44990000128746, 256171.449499998241663 ], [ 367305.410400003194809, 256199.238899998366833 ], [ 367301.890299998223782, 256194.061200000345707 ], [ 367258.889899998903275, 256215.86540000140667 ], [ 367274.327500000596046, 256245.648699998855591 ], [ 367320.34570000320673, 256221.490899998694658 ], [ 367323.615199998021126, 256226.91330000013113 ], [ 367367.213299997150898, 256205.713899999856949 ], [ 367419.331699997186661, 256204.293999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": "D9-4561-T88", "PARCEL_NAM": "11-K", "ACRE": ".687", "LONGITUDE": -64.84912116, "LATITUDE": 18.33410022, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.53532645899998, "SHAPE_Area": 4147.6968790299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367419.641000002622604, 256173.109700001776218 ], [ 367419.331699997186661, 256204.293999999761581 ], [ 367437.577299997210503, 256203.796999998390675 ], [ 367445.281000003218651, 256207.88740000128746 ], [ 367480.097099997103214, 256156.345300000160933 ], [ 367475.805100001394749, 256152.607200000435114 ], [ 367486.007700003683567, 256091.498799998313189 ], [ 367475.212499998509884, 256093.67119999974966 ], [ 367454.093900002539158, 256095.28660000115633 ], [ 367435.346199996769428, 256099.110500000417233 ], [ 367448.589699998497963, 256104.229200001806021 ], [ 367443.065499998629093, 256150.3310999982059 ], [ 367425.079099997878075, 256173.250300001353025 ], [ 367419.641000002622604, 256173.109700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033100", "MAP": "D9-5096-T91", "PARCEL_NAM": "16-1-5", "ACRE": null, "LONGITUDE": -64.84987233, "LATITUDE": 18.33330406, "OBJECTID_1": 24220, "PARCEL_NO_": "105804033100", "Tax_Legal_": "SMITH BAY 16-1 1,2&3 SMITH BAY", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 530200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.586715492, "SHAPE_Area": 1611.3951462299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367389.592399999499321, 256034.062600001692772 ], [ 367355.378799997270107, 256040.191700000315905 ], [ 367361.640699997544289, 256083.099300000816584 ], [ 367394.974399998784065, 256088.445000000298023 ], [ 367391.626299999654293, 256067.176199998706579 ], [ 367389.592399999499321, 256034.062600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": "D9-5096-T91", "PARCEL_NAM": "11-L", "ACRE": null, "LONGITUDE": -64.84985121, "LATITUDE": 18.33358151, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.670864717800001, "SHAPE_Area": 398.59510712600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367361.640699997544289, 256083.099300000816584 ], [ 367364.515500001609325, 256099.306600000709295 ], [ 367396.306999996304512, 256096.910000000149012 ], [ 367394.974399998784065, 256088.445000000298023 ], [ 367361.640699997544289, 256083.099300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": "D9-6061-T96", "PARCEL_NAM": "11-O", "ACRE": ".07", "LONGITUDE": -64.85045327, "LATITUDE": 18.33348987, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.74546557400001, "SHAPE_Area": 895.18582609700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367268.236400000751019, 256087.462200000882149 ], [ 367268.985399998724461, 256094.285300001502037 ], [ 367307.391400001943111, 256080.832299999892712 ], [ 367308.223300002515316, 256089.23030000180006 ], [ 367361.640699997544289, 256083.099300000816584 ], [ 367318.046499997377396, 256068.937399998307228 ], [ 367268.236400000751019, 256087.462200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": "D9-4165-T87", "PARCEL_NAM": "REM 11", "ACRE": "14.6", "LONGITUDE": -64.85042612, "LATITUDE": 18.33455966, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2041.08726121, "SHAPE_Area": 27779.2549244 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367355.44990000128746, 256171.449499998241663 ], [ 367302.754299998283386, 256182.791900001466274 ], [ 367238.725000001490116, 256193.904399998486042 ], [ 367226.554099999368191, 256184.908599998801947 ], [ 367222.049599997699261, 256104.639499999582767 ], [ 367123.262000001966953, 256141.37950000166893 ], [ 367100.552199997007847, 256156.814500000327826 ], [ 367072.977600000798702, 256175.376200001686811 ], [ 367054.322700001299381, 256188.10020000115037 ], [ 367063.908500000834465, 256198.733300000429153 ], [ 367071.910499997437, 256205.975999999791384 ], [ 367088.767499998211861, 256214.979899998754263 ], [ 367109.650700002908707, 256224.649999998509884 ], [ 367118.744999997317791, 256198.337799999862909 ], [ 367120.407899998128414, 256192.440799999982119 ], [ 367125.247599996626377, 256192.269299998879433 ], [ 367212.314999997615814, 256194.6706000007689 ], [ 367218.763700000941753, 256194.934500001370907 ], [ 367219.517800003290176, 256201.062399998307228 ], [ 367224.921099998056889, 256229.393100000917912 ], [ 367224.84910000115633, 256237.836300000548363 ], [ 367223.218500003218651, 256239.933899998664856 ], [ 367225.560099996626377, 256249.030099999159575 ], [ 367225.38570000231266, 256269.504700001329184 ], [ 367243.787100002169609, 256286.54280000180006 ], [ 367249.526500001549721, 256275.401799999177456 ], [ 367260.0625, 256269.155299998819828 ], [ 367319.153499998152256, 256242.618900001049042 ], [ 367324.819300003349781, 256240.132199998944998 ], [ 367429.026000000536442, 256218.397999998182058 ], [ 367434.564099997282028, 256230.897900000214577 ], [ 367445.0371999964118, 256232.039099998772144 ], [ 367457.103100001811981, 256235.515299998223782 ], [ 367467.550999999046326, 256239.611600000411272 ], [ 367494.8074000030756, 256258.410900000482798 ], [ 367515.595299996435642, 256279.268199998885393 ], [ 367522.810699999332428, 256284.182399999350309 ], [ 367532.450499996542931, 256288.483199998736382 ], [ 367533.244199998676777, 256289.967300001531839 ], [ 367531.572300001978874, 256296.919799998402596 ], [ 367531.539899997413158, 256300.719200000166893 ], [ 367534.738200001418591, 256303.911699999123812 ], [ 367537.959799997508526, 256304.360300000756979 ], [ 367544.430100001394749, 256302.0912000015378 ], [ 367552.496799997985363, 256301.735100001096725 ], [ 367559.741099998354912, 256303.271999999880791 ], [ 367565.36370000243187, 256305.851199999451637 ], [ 367570.206900000572205, 256305.257500000298023 ], [ 367574.263700000941753, 256302.335400000214577 ], [ 367575.923100002110004, 256296.860599998384714 ], [ 367575.154500000178814, 256292.421300001442432 ], [ 367573.572400003671646, 256288.81980000063777 ], [ 367566.382200002670288, 256280.950399998575449 ], [ 367565.619000002741814, 256275.877999998629093 ], [ 367568.084700003266335, 256270.409699998795986 ], [ 367575.381099998950958, 256265.825399998575449 ], [ 367577.870099999010563, 256257.613099999725819 ], [ 367576.29169999808073, 256253.589400000870228 ], [ 367554.580600000917912, 256246.445599999278784 ], [ 367528.834299996495247, 256239.690999999642372 ], [ 367517.590899996459484, 256234.321600001305342 ], [ 367514.388999998569489, 256231.551199998706579 ], [ 367507.981700003147125, 256226.432500001043081 ], [ 367503.194200001657009, 256220.482700001448393 ], [ 367498.554099999368191, 256197.224399998784065 ], [ 367496.275399997830391, 256180.740499999374151 ], [ 367496.354500003159046, 256171.453000001609325 ], [ 367494.99549999833107, 256141.677700001746416 ], [ 367495.879100002348423, 256132.607900001108646 ], [ 367496.714199997484684, 256129.237300001084805 ], [ 367498.438299998641014, 256116.163600001484156 ], [ 367500.929200001060963, 256107.740200001746416 ], [ 367503.39299999922514, 256102.482999999076128 ], [ 367513.171300001442432, 256090.530699998140335 ], [ 367523.712700001895428, 256083.65089999884367 ], [ 367530.184799998998642, 256081.170800000429153 ], [ 367538.260499998927116, 256079.759199999272823 ], [ 367552.836999997496605, 256072.490200001746416 ], [ 367591.018700003623962, 256053.386799998581409 ], [ 367594.698399998247623, 256047.956300001591444 ], [ 367506.622500002384186, 256087.35020000115037 ], [ 367486.007700003683567, 256091.498799998313189 ], [ 367475.805100001394749, 256152.607200000435114 ], [ 367480.097099997103214, 256156.345300000160933 ], [ 367445.281000003218651, 256207.88740000128746 ], [ 367437.577299997210503, 256203.796999998390675 ], [ 367367.213299997150898, 256205.713899999856949 ], [ 367323.615199998021126, 256226.91330000013113 ], [ 367320.34570000320673, 256221.490899998694658 ], [ 367274.327500000596046, 256245.648699998855591 ], [ 367258.889899998903275, 256215.86540000140667 ], [ 367301.890299998223782, 256194.061200000345707 ], [ 367305.410400003194809, 256199.238899998366833 ], [ 367355.44990000128746, 256171.449499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033100", "MAP": "A9-179-T72", "PARCEL_NAM": "16-1-1A", "ACRE": null, "LONGITUDE": -64.84955694, "LATITUDE": 18.33220382, "OBJECTID_1": 24220, "PARCEL_NO_": "105804033100", "Tax_Legal_": "SMITH BAY 16-1 1,2&3 SMITH BAY", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 530200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 828.19818158099997, "SHAPE_Area": 26332.438245099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367250.954199999570847, 255913.389600001275539 ], [ 367262.031900003552437, 255918.468699999153614 ], [ 367272.609300002455711, 255923.318399999290705 ], [ 367277.424599997699261, 255925.526299998164177 ], [ 367352.204800002276897, 255959.813000001013279 ], [ 367335.706299997866154, 256003.374299999326468 ], [ 367347.739799998700619, 256010.649999998509884 ], [ 367346.902999997138977, 256014.231699999421835 ], [ 367363.759999997913837, 256023.235599998384714 ], [ 367373.651500001549721, 255997.985300000756979 ], [ 367380.894000001251698, 255999.733399998396635 ], [ 367384.259499996900558, 255983.2956000007689 ], [ 367391.500100001692772, 255985.254700001329184 ], [ 367396.811599999666214, 256024.350499998778105 ], [ 367477.705399997532368, 255994.192899998277426 ], [ 367480.88570000231266, 255999.496300000697374 ], [ 367550.503700003027916, 255967.768699999898672 ], [ 367541.765500001609325, 255952.287399999797344 ], [ 367547.433100000023842, 255949.589600000530481 ], [ 367545.05009999871254, 255945.348200000822544 ], [ 367541.08330000191927, 255937.716400001198053 ], [ 367536.324500001966953, 255928.389299999922514 ], [ 367529.854299999773502, 255930.658399999141693 ], [ 367519.555600002408028, 255909.042500000447035 ], [ 367347.387800000607967, 255862.670499999076128 ], [ 367250.954199999570847, 255913.389600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702039300", "MAP": "D9-8274-T009", "PARCEL_NAM": null, "ACRE": ".01", "LONGITUDE": -64.86995128, "LATITUDE": 18.34301668, "OBJECTID_1": 22559, "PARCEL_NO_": "105702039300", "Tax_Legal_": "83-11 & 83-9A SMITH BAY 1, 2 & 3 EAST END QUARTER", "Name": "FRANCIS, GEORGE", "Address": "PO Box 8873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17400, "Improved_V": 81700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.2567894946, "SHAPE_Area": 14.349655654099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365247.26349999755621, 257122.828699998557568 ], [ 365248.512800000607967, 257121.733600001782179 ], [ 365236.735299997031689, 257109.085099998861551 ], [ 365247.26349999755621, 257122.828699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702039800", "MAP": "D9-8026-T007", "PARCEL_NAM": "83-10", "ACRE": "0.29", "LONGITUDE": -64.86956724, "LATITUDE": 18.34313763, "OBJECTID_1": 22564, "PARCEL_NO_": "105702039800", "Tax_Legal_": "83-10 REM. SMITH BAY 1,2&3 EAST END QTR.", "Name": "FRANCIS, JAMES L.", "Address": "PO Box 7862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.03608030199999, "SHAPE_Area": 908.48223279000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365275.024099998176098, 257150.205200001597404 ], [ 365281.654200002551079, 257143.853900000452995 ], [ 365319.178300000727177, 257127.263399999588728 ], [ 365279.47240000218153, 257117.285599999129772 ], [ 365259.271899998188019, 257133.288199998438358 ], [ 365275.024099998176098, 257150.205200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702039200", "MAP": "D9-8274-T009", "PARCEL_NAM": "83A-11A", "ACRE": ".01", "LONGITUDE": -64.870029, "LATITUDE": 18.34288954, "OBJECTID_1": 22558, "PARCEL_NO_": "105702039200", "Tax_Legal_": "83-9 REM & 83-11A SMITH BAY NOS.1, 2 & 3 EAST END QTR", "Name": "RICHARDSON, CARL A. & REVA A.", "Address": "PO Box 307266", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28600, "Improved_V": 223000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.875457769200001, "SHAPE_Area": 43.594160116399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365236.704700000584126, 257109.052200000733137 ], [ 365240.972999997437, 257100.146899998188019 ], [ 365232.913000002503395, 257101.368599999696016 ], [ 365230.993500001728535, 257102.918699998408556 ], [ 365236.704700000584126, 257109.052200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702033300", "MAP": "G9-2181-T73", "PARCEL_NAM": "83-1", "ACRE": ".22", "LONGITUDE": -64.86950433, "LATITUDE": 18.34259613, "OBJECTID_1": 22499, "PARCEL_NO_": "105702033300", "Tax_Legal_": "SMITH BAY 83-1 1,2&3 EAST END QTR.", "Name": "FRANCIS, JAMES", "Address": "PO Box 7862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.947088196, "SHAPE_Area": 837.30429320300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365272.476700000464916, 257065.01069999858737 ], [ 365280.428599998354912, 257090.7511 ], [ 365290.248099997639656, 257085.758499998599291 ], [ 365310.747299998998642, 257075.156899999827147 ], [ 365312.023100003600121, 257058.605900000780821 ], [ 365273.087600000202656, 257061.824999999254942 ], [ 365272.476700000464916, 257065.01069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702039100", "MAP": "D9-8187-T008", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.86972428, "LATITUDE": 18.34266671, "OBJECTID_1": 22557, "PARCEL_NO_": "105702039100", "Tax_Legal_": "83-8 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "FRANCIS, GEORGE", "Address": "PO Box 8873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.56713337, "SHAPE_Area": 655.86429027899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365254.355700001120567, 257060.571800000965595 ], [ 365256.728799998760223, 257091.095600001513958 ], [ 365264.674999997019768, 257090.036400001496077 ], [ 365266.425999999046326, 257090.051399998366833 ], [ 365270.361900001764297, 257090.520100001245737 ], [ 365278.523100003600121, 257091.750100001692772 ], [ 365287.958999998867512, 257097.487300001084805 ], [ 365290.733999997377396, 257101.325100000947714 ], [ 365290.248099997639656, 257085.758499998599291 ], [ 365280.428599998354912, 257090.7511 ], [ 365272.476700000464916, 257065.01069999858737 ], [ 365254.355700001120567, 257060.571800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702039300", "MAP": "D9-8274-T009", "PARCEL_NAM": "83-11 Rem", "ACRE": ".12", "LONGITUDE": -64.86986606000001, "LATITUDE": 18.34298112, "OBJECTID_1": 22559, "PARCEL_NO_": "105702039300", "Tax_Legal_": "83-11 & 83-9A SMITH BAY 1, 2 & 3 EAST END QUARTER", "Name": "FRANCIS, GEORGE", "Address": "PO Box 8873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17400, "Improved_V": 81700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.81151442300001, "SHAPE_Area": 598.78551609700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365240.972999997437, 257100.146899998188019 ], [ 365236.704700000584126, 257109.052200000733137 ], [ 365259.271899998188019, 257133.288199998438358 ], [ 365268.928400002419949, 257125.6385000012815 ], [ 365255.542900003492832, 257097.938499998301268 ], [ 365240.972999997437, 257100.146899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702039200", "MAP": "D9-8274-T009", "PARCEL_NAM": null, "ACRE": ".251", "LONGITUDE": -64.87010371, "LATITUDE": 18.34302301, "OBJECTID_1": 22558, "PARCEL_NO_": "105702039200", "Tax_Legal_": "83-9 REM & 83-11A SMITH BAY NOS.1, 2 & 3 EAST END QTR", "Name": "RICHARDSON, CARL A. & REVA A.", "Address": "PO Box 307266", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28600, "Improved_V": 223000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.86389405200001, "SHAPE_Area": 822.53289093299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365227.368199996650219, 257140.267200000584126 ], [ 365247.26349999755621, 257122.828699998557568 ], [ 365236.735299997031689, 257109.085099998861551 ], [ 365227.991599999368191, 257099.69480000063777 ], [ 365213.843400001525879, 257100.362300001084805 ], [ 365215.926700003445148, 257120.019499998539686 ], [ 365215.874499998986721, 257126.140799999237061 ], [ 365227.368199996650219, 257140.267200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702027600", "MAP": "G9-2181-T73", "PARCEL_NAM": "83-2", "ACRE": ".20", "LONGITUDE": -64.86950094, "LATITUDE": 18.34239554, "OBJECTID_1": 22462, "PARCEL_NO_": "105702027600", "Tax_Legal_": "SMITH BAY 83-2 EAST END QTR", "Name": "FRANCIS, JAMES", "Address": "PO Box 7862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.658515298, "SHAPE_Area": 785.36806376499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365279.252099998295307, 257033.772700000554323 ], [ 365273.087600000202656, 257061.824999999254942 ], [ 365312.023100003600121, 257058.605900000780821 ], [ 365313.130599997937679, 257044.238099999725819 ], [ 365279.252099998295307, 257033.772700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702039000", "MAP": "G9-2181-T73", "PARCEL_NAM": null, "ACRE": ".19", "LONGITUDE": -64.86976987, "LATITUDE": 18.34236757, "OBJECTID_1": 22556, "PARCEL_NO_": "105702039000", "Tax_Legal_": "83-3 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HUGGINS, HERMAN B.", "Address": "PO Box 305838", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24700, "Improved_V": 112700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.24531597399999, "SHAPE_Area": 796.47236847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365256.300899997353554, 257026.682900000363588 ], [ 365248.311099998652935, 257059.091099999845028 ], [ 365272.476700000464916, 257065.01069999858737 ], [ 365273.087600000202656, 257061.824999999254942 ], [ 365279.252099998295307, 257033.772700000554323 ], [ 365256.300899997353554, 257026.682900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702037700", "MAP": "G9-2181-T73", "PARCEL_NAM": null, "ACRE": ".19", "LONGITUDE": -64.86999559, "LATITUDE": 18.34230798, "OBJECTID_1": 22543, "PARCEL_NO_": "105702037700", "Tax_Legal_": "SMITH BAY 83-4 EAST END QTR", "Name": "FRANCIS, JAMES", "Address": "PO Box 7862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.47792107399999, "SHAPE_Area": 855.57237206000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365231.832900002598763, 257019.124499998986721 ], [ 365224.437200002372265, 257053.242899999022484 ], [ 365248.311099998652935, 257059.091099999845028 ], [ 365256.300899997353554, 257026.682900000363588 ], [ 365231.832900002598763, 257019.124499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803025800", "MAP": "A9-764-T011", "PARCEL_NAM": "110-7", "ACRE": ".245", "LONGITUDE": -64.86282687000001, "LATITUDE": 18.33283361, "OBJECTID_1": 23917, "PARCEL_NO_": "105803025800", "Tax_Legal_": "110-7 FRYDENHOJ 3 RED HOOK QUARTER", "Name": "JOHANNES, JUANITA", "Address": "PO Box 302643", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.473914541, "SHAPE_Area": 724.18471865100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365977.464299999177456, 255979.646899998188019 ], [ 365996.909699998795986, 256003.443599998950958 ], [ 366027.064300000667572, 256014.360399998724461 ], [ 366026.236900001764297, 255994.767799999564886 ], [ 365977.464299999177456, 255979.646899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803023400", "MAP": "F9-2297-T68", "PARCEL_NAM": "110E", "ACRE": ".99", "LONGITUDE": -64.86257113000001, "LATITUDE": 18.33236564, "OBJECTID_1": 23893, "PARCEL_NO_": "105803023400", "Tax_Legal_": "FRYDENHOJ 110E RED HOOK QTR", "Name": "GREAUX, VALENTINE &JOSEPH I. & AUGUSTINE, CAROL", "Address": "P O BOX 2455", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 112900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.790440531, "SHAPE_Area": 3459.5648861599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366049.052799999713898, 255966.879099998623133 ], [ 366044.057700000703335, 255890.633499998599291 ], [ 366035.233300000429153, 255885.283900000154972 ], [ 366028.825900003314018, 255880.165199998766184 ], [ 366020.832900002598763, 255871.867199998348951 ], [ 366019.243699997663498, 255869.109900001436472 ], [ 366015.235500000417233, 255866.332899998873472 ], [ 366018.155000001192093, 255902.24269999936223 ], [ 366021.8108000010252, 255946.391199998557568 ], [ 366022.561300002038479, 255952.941199999302626 ], [ 366024.055299997329712, 255966.885600000619888 ], [ 366025.513300001621246, 255985.051600001752377 ], [ 366026.236900001764297, 255994.767799999564886 ], [ 366027.064300000667572, 256014.360399998724461 ], [ 366051.902099996805191, 256014.712400000542402 ], [ 366049.052799999713898, 255966.879099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90228487, "LATITUDE": 18.31862228, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.86249492100001, "SHAPE_Area": 1955.6816022099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361825.704199999570847, 254404.206799998879433 ], [ 361840.102700002491474, 254417.834600001573563 ], [ 361846.553199999034405, 254417.88740000128746 ], [ 361883.162699997425079, 254379.979100000113249 ], [ 361849.475599996745586, 254358.805100001394749 ], [ 361833.988499999046326, 254378.310100000351667 ], [ 361829.087700001895428, 254385.65819999948144 ], [ 361822.586800001561642, 254391.515599999576807 ], [ 361816.103900000452995, 254395.262299999594688 ], [ 361825.704199999570847, 254404.206799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404058000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90253688, "LATITUDE": 18.31843499, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.735572836100005, "SHAPE_Area": 263.31039424599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361828.380199998617172, 254374.042300000786781 ], [ 361830.11150000244379, 254360.124299999326468 ], [ 361828.547499999403954, 254354.412000000476837 ], [ 361813.130400002002716, 254365.684799998998642 ], [ 361821.051500000059605, 254382.426100000739098 ], [ 361822.676700003445148, 254380.96169999986887 ], [ 361825.932499997317791, 254377.39979999884963 ], [ 361828.380199998617172, 254374.042300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107403049900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90997209, "LATITUDE": 18.32025807, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 548.12465842100005, "SHAPE_Area": 2351.4235235000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360923.362099997699261, 254500.67960000038147 ], [ 360926.560400001704693, 254503.872099999338388 ], [ 360928.961300000548363, 254506.002700001001358 ], [ 360935.372299998998642, 254510.699299998581409 ], [ 360936.975900001823902, 254511.767799999564886 ], [ 360947.431000001728535, 254515.019799999892712 ], [ 360949.844499997794628, 254515.672899998724461 ], [ 360960.319399997591972, 254516.603000000119209 ], [ 360972.423100002110004, 254515.646600000560284 ], [ 360986.110600002110004, 254518.080600000917912 ], [ 360992.535999998450279, 254521.088500000536442 ], [ 361000.554099999368191, 254526.431499999016523 ], [ 361008.554300002753735, 254533.885200001299381 ], [ 361010.944499999284744, 254537.282299999147654 ], [ 361018.07490000128746, 254546.435699999332428 ], [ 361022.223200000822544, 254552.65819999948144 ], [ 361027.663099996745586, 254562.539299998432398 ], [ 361042.878700003027916, 254574.907200001180172 ], [ 361076.5675999969244, 254595.870099999010563 ], [ 361086.178599998354912, 254603.548099998384714 ], [ 361087.7804000005126, 254604.827799998223782 ], [ 361095.773400001227856, 254613.125900000333786 ], [ 361098.167199999094009, 254616.10080000013113 ], [ 361106.131399996578693, 254627.776099998503923 ], [ 361119.599600002169609, 254655.961800001561642 ], [ 361127.693300001323223, 254652.439399998635054 ], [ 361116.611699998378754, 254628.072999998927116 ], [ 361108.661899998784065, 254614.708999998867512 ], [ 361106.271700002253056, 254611.311999998986721 ], [ 361097.488600000739098, 254601.107599999755621 ], [ 361091.883900001645088, 254596.417700000107288 ], [ 361086.277500003576279, 254591.938799999654293 ], [ 361081.466600000858307, 254588.732999999076128 ], [ 361055.799500003457069, 254572.690900001674891 ], [ 361036.566699996590614, 254558.601300001144409 ], [ 361032.572899997234344, 254554.13569999858737 ], [ 361027.787100002169609, 254547.974800001829863 ], [ 361026.196099996566772, 254545.428700000047684 ], [ 361018.249799996614456, 254531.642499998211861 ], [ 361011.862300001084805, 254524.201999999582767 ], [ 361005.453100003302097, 254519.294399999082088 ], [ 360995.834899999201298, 254512.460700001567602 ], [ 360988.597900003194809, 254510.0793999992311 ], [ 360983.769000001251698, 254508.984400000423193 ], [ 360974.112999998033047, 254506.583399999886751 ], [ 360958.785899996757507, 254507.302299998700619 ], [ 360946.700199998915195, 254506.147900000214577 ], [ 360933.858599998056889, 254499.076699998229742 ], [ 360930.663900002837181, 254495.462000001221895 ], [ 360923.362099997699261, 254500.67960000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10760101098000", "MAP": "A9-604-T003", "PARCEL_NAM": null, "ACRE": ".24", "LONGITUDE": -64.87828676, "LATITUDE": 18.3275256, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.240455457, "SHAPE_Area": 1121.82834929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364399.658900000154972, 255410.955699998885393 ], [ 364399.347999997437, 255400.145500000566244 ], [ 364396.949799999594688, 255391.527399998158216 ], [ 364393.3125, 255383.308100000023842 ], [ 364386.523500002920628, 255374.437600001692772 ], [ 364380.997900001704693, 255378.290500000119209 ], [ 364372.303300000727177, 255383.539099998772144 ], [ 364357.818199999630451, 255391.604499999433756 ], [ 364348.47860000282526, 255396.747699998319149 ], [ 364347.751400001347065, 255397.234099999070168 ], [ 364355.669200003147125, 255407.622499998658895 ], [ 364358.921700000762939, 255407.171700000762939 ], [ 364369.630400002002716, 255407.262699998915195 ], [ 364382.388099998235703, 255408.599300000816584 ], [ 364391.439000003039837, 255409.904399998486042 ], [ 364399.658900000154972, 255410.955699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87827539, "LATITUDE": 18.32767092, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.454578294000001, "SHAPE_Area": 289.845326613 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364359.316200003027916, 255413.138099998235703 ], [ 364364.632299996912479, 255413.770899999886751 ], [ 364374.918799996376038, 255415.086500000208616 ], [ 364385.208700001239777, 255415.992800001055002 ], [ 364392.200099997222424, 255417.2804000005126 ], [ 364399.227799996733665, 255417.34010000154376 ], [ 364399.666000001132488, 255411.202500000596046 ], [ 364399.658900000154972, 255410.955699998885393 ], [ 364391.439000003039837, 255409.904399998486042 ], [ 364382.388099998235703, 255408.599300000816584 ], [ 364369.630400002002716, 255407.262699998915195 ], [ 364358.921700000762939, 255407.171700000762939 ], [ 364355.669200003147125, 255407.622499998658895 ], [ 364359.316200003027916, 255413.138099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87816523, "LATITUDE": 18.32799176, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.923998182299997, "SHAPE_Area": 294.17201943499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364396.643299996852875, 255435.426399998366833 ], [ 364391.212999999523163, 255436.514699999243021 ], [ 364382.954599998891354, 255438.901000000536442 ], [ 364377.801100000739098, 255440.560100000351667 ], [ 364395.569099999964237, 255465.699599999934435 ], [ 364395.915600001811981, 255464.804400000721216 ], [ 364397.203299999237061, 255458.674100000411272 ], [ 364396.030299998819828, 255451.294599998742342 ], [ 364396.120700001716614, 255440.650499999523163 ], [ 364396.643299996852875, 255435.426399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601020200", "MAP": "A9-604-T003", "PARCEL_NAM": null, "ACRE": ".36", "LONGITUDE": -64.87581357000001, "LATITUDE": 18.32679738, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.373871858, "SHAPE_Area": 1656.3543034899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364604.659500002861023, 255325.295299999415874 ], [ 364625.668600000441074, 255330.011199999600649 ], [ 364656.496699996292591, 255337.64299999922514 ], [ 364674.584399998188019, 255341.891100000590086 ], [ 364676.458499997854233, 255342.429900001734495 ], [ 364674.695699997246265, 255340.081900000572205 ], [ 364653.187799997627735, 255309.086199998855591 ], [ 364638.053000003099442, 255287.219700001180172 ], [ 364634.02589999884367, 255281.347800001502037 ], [ 364632.641599997878075, 255285.034299999475479 ], [ 364623.388800002634525, 255307.473700001835823 ], [ 364622.967100001871586, 255307.560600001364946 ], [ 364622.083499997854233, 255315.651000000536442 ], [ 364617.563299998641014, 255314.384300000965595 ], [ 364614.634900003671646, 255319.68189999833703 ], [ 364605.601499997079372, 255316.329700000584126 ], [ 364604.659500002861023, 255325.295299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87779057, "LATITUDE": 18.326175, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.644435874500005, "SHAPE_Area": 228.47953959200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364427.65089999884367, 255246.804900001734495 ], [ 364431.203699998557568, 255260.803800001740456 ], [ 364431.516400001943111, 255261.868400000035763 ], [ 364439.041199997067451, 255261.421799998730421 ], [ 364431.632600001990795, 255232.289299998432398 ], [ 364428.781999997794628, 255232.128499999642372 ], [ 364423.644199997186661, 255231.838700000196695 ], [ 364427.65089999884367, 255246.804900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601020200", "MAP": "A9-604-T003", "PARCEL_NAM": null, "ACRE": ".25", "LONGITUDE": -64.8766019, "LATITUDE": 18.32709953, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.141643852, "SHAPE_Area": 995.54545730300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364567.419299997389317, 255371.092300001531839 ], [ 364569.874200001358986, 255352.924499999731779 ], [ 364571.714599996805191, 255337.395899999886751 ], [ 364571.588799998164177, 255336.741700001060963 ], [ 364571.735299997031689, 255336.634399998933077 ], [ 364548.246200002729893, 255328.124699998646975 ], [ 364546.470499999821186, 255327.420899998396635 ], [ 364543.259499996900558, 255345.513900000602007 ], [ 364540.082000002264977, 255363.963199999183416 ], [ 364547.915500000119209, 255367.016699999570847 ], [ 364566.006800003349781, 255370.85530000180006 ], [ 364567.419299997389317, 255371.092300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87487579, "LATITUDE": 18.32775437, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.4019294253, "SHAPE_Area": 0.00582562031 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364737.995399996638298, 255424.145599998533726 ], [ 364738.076800003647804, 255424.30629999935627 ], [ 364738.094800002872944, 255424.198699999600649 ], [ 364737.995399996638298, 255424.145599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013800", "MAP": "A9-760-T010", "PARCEL_NAM": "4EA-4-1", "ACRE": ".547", "LONGITUDE": -64.86557693, "LATITUDE": 18.34482386, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.266917277, "SHAPE_Area": 2312.8667150400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365681.878700003027916, 257352.796399999409914 ], [ 365702.508500002324581, 257343.087999999523163 ], [ 365704.433700002729893, 257341.967000000178814 ], [ 365706.804300002753735, 257340.58669999986887 ], [ 365713.15429999679327, 257337.676199998706579 ], [ 365719.26349999755621, 257335.918400000780821 ], [ 365724.663699999451637, 257332.120000001043081 ], [ 365727.574100002646446, 257329.341899998486042 ], [ 365729.690800003707409, 257324.976199999451637 ], [ 365730.576899997889996, 257320.902499999850988 ], [ 365731.410599999129772, 257317.567899998277426 ], [ 365733.262699998915195, 257309.101199999451637 ], [ 365734.056400001049042, 257302.751200001686811 ], [ 365735.511600002646446, 257298.253299999982119 ], [ 365737.760600000619888, 257293.226199999451637 ], [ 365742.258500002324581, 257282.775100000202656 ], [ 365745.433499999344349, 257274.176100000739098 ], [ 365734.794799998402596, 257285.440099999308586 ], [ 365727.45099999755621, 257292.336899999529123 ], [ 365723.73759999871254, 257295.607400000095367 ], [ 365721.35639999806881, 257296.401200000196695 ], [ 365717.255300000309944, 257297.194899998605251 ], [ 365702.944099999964237, 257299.124299999326468 ], [ 365692.819700002670288, 257300.013399999588728 ], [ 365695.956299997866154, 257323.521000001579523 ], [ 365667.329800002276897, 257329.445999998599291 ], [ 365668.177699998021126, 257353.092199999839067 ], [ 365675.211599998176098, 257352.10359999909997 ], [ 365681.878700003027916, 257352.796399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013800", "MAP": "A9-527-T98", "PARCEL_NAM": "4-4E", "ACRE": ".373", "LONGITUDE": -64.86580799, "LATITUDE": 18.34543663, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.22970640699998, "SHAPE_Area": 1546.2501931300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365733.791799999773502, 257380.009700000286102 ], [ 365724.531400002539158, 257369.029399998486042 ], [ 365715.251000002026558, 257372.274000000208616 ], [ 365663.617200002074242, 257388.645399998873472 ], [ 365650.085299998521805, 257389.62950000166893 ], [ 365642.089100003242493, 257394.304200001060963 ], [ 365629.295199997723103, 257396.27250000089407 ], [ 365603.902099996805191, 257399.962799999862909 ], [ 365593.743100002408028, 257401.4391999989748 ], [ 365604.280799999833107, 257402.540199998766184 ], [ 365610.22749999910593, 257403.161499999463558 ], [ 365610.32379999756813, 257404.968800000846386 ], [ 365629.162100002169609, 257406.662200000137091 ], [ 365657.102200001478195, 257399.042199999094009 ], [ 365664.300700001418591, 257397.713199999183416 ], [ 365670.860600002110004, 257396.502199999988079 ], [ 365721.454499997198582, 257389.3277000002563 ], [ 365739.348099999129772, 257386.756599999964237 ], [ 365738.384300000965595, 257385.586300000548363 ], [ 365733.791799999773502, 257380.009700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87508937, "LATITUDE": 18.32809164, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.74704945900001, "SHAPE_Area": 1159.84926851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364685.266000002622604, 255436.592099998146296 ], [ 364695.918300002813339, 255464.051600001752377 ], [ 364703.343199998140335, 255490.175299998372793 ], [ 364710.008199997246265, 255487.126600001007318 ], [ 364719.959399998188019, 255479.432399999350309 ], [ 364724.491800002753735, 255474.967399999499321 ], [ 364728.73759999871254, 255464.35869999974966 ], [ 364733.013199999928474, 255445.971200000494719 ], [ 364736.842000000178814, 255431.674199998378754 ], [ 364738.076800003647804, 255424.30629999935627 ], [ 364737.995399996638298, 255424.145599998533726 ], [ 364721.984600000083447, 255442.046900000423193 ], [ 364716.900399997830391, 255448.996199999004602 ], [ 364712.088699996471405, 255453.450500000268221 ], [ 364709.04619999974966, 255456.67119999974966 ], [ 364705.754699997603893, 255459.640000000596046 ], [ 364701.213299997150898, 255461.848999999463558 ], [ 364698.189999997615814, 255462.822200000286102 ], [ 364687.64019999653101, 255434.853399999439716 ], [ 364685.266000002622604, 255436.592099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8753849, "LATITUDE": 18.32828748, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.152843203, "SHAPE_Area": 951.29987953199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364663.589100003242493, 255474.18189999833703 ], [ 364672.785899996757507, 255502.015099998563528 ], [ 364689.334399998188019, 255496.367300000041723 ], [ 364702.978500001132488, 255490.342199999839067 ], [ 364703.343199998140335, 255490.175299998372793 ], [ 364695.918300002813339, 255464.051600001752377 ], [ 364663.589100003242493, 255474.18189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87567753, "LATITUDE": 18.32838523, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.222909481, "SHAPE_Area": 963.679879669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364632.966499999165535, 255484.221700001507998 ], [ 364641.611000001430511, 255512.673099998384714 ], [ 364642.653399996459484, 255512.346900001168251 ], [ 364668.266199998557568, 255503.557599999010563 ], [ 364672.785899996757507, 255502.015099998563528 ], [ 364663.589100003242493, 255474.18189999833703 ], [ 364657.122000001370907, 255476.208299998193979 ], [ 364632.966499999165535, 255484.221700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601020200", "MAP": "A9-604A-T003", "PARCEL_NAM": null, "ACRE": "4.151", "LONGITUDE": -64.87569867000001, "LATITUDE": 18.32854902, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1066.72128643, "SHAPE_Area": 4113.5484054999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364684.576700001955032, 255527.36259999871254 ], [ 364678.466499999165535, 255531.013999998569489 ], [ 364673.326800003647804, 255535.843299999833107 ], [ 364667.002300001680851, 255541.636999998241663 ], [ 364662.638599999248981, 255547.447399999946356 ], [ 364658.675399996340275, 255552.28660000115633 ], [ 364656.487000003457069, 255555.971400000154972 ], [ 364657.810300000011921, 255557.678199999034405 ], [ 364662.306599996984005, 255563.427799999713898 ], [ 364664.700099997222424, 255560.424499999731779 ], [ 364669.636399999260902, 255554.718800000846386 ], [ 364675.582000002264977, 255547.36259999871254 ], [ 364682.429899998009205, 255540.248500000685453 ], [ 364690.795100003480911, 255534.042700000107288 ], [ 364700.654200002551079, 255527.694299999624491 ], [ 364717.226700000464916, 255515.945300001651049 ], [ 364733.016500003635883, 255503.994800001382828 ], [ 364744.469200000166893, 255494.736200001090765 ], [ 364750.604299999773502, 255488.161200001835823 ], [ 364754.580799996852875, 255481.762800000607967 ], [ 364756.985299997031689, 255475.740800000727177 ], [ 364758.003899998962879, 255471.26630000025034 ], [ 364759.035800002515316, 255465.232700001448393 ], [ 364758.100100003182888, 255459.961899999529123 ], [ 364756.360200002789497, 255457.023299999535084 ], [ 364757.350599996745586, 255455.862199999392033 ], [ 364758.136600002646446, 255455.6739999987185 ], [ 364760.498000003397465, 255454.719500001519918 ], [ 364764.045800000429153, 255452.605599999427795 ], [ 364766.616499997675419, 255450.093600001186132 ], [ 364768.600599996745586, 255447.381599999964237 ], [ 364770.383699998259544, 255445.252700001001358 ], [ 364771.963899999856949, 255442.289299998432398 ], [ 364768.573399998247623, 255440.478300001472235 ], [ 364766.280799999833107, 255443.463500000536442 ], [ 364763.708400003612041, 255446.170400001108646 ], [ 364762.123099997639656, 255448.106100000441074 ], [ 364760.74379999935627, 255448.874099999666214 ], [ 364757.997000001370907, 255449.0456000007689 ], [ 364755.650499999523163, 255448.245900001376867 ], [ 364754.475699998438358, 255448.041000001132488 ], [ 364753.119599997997284, 255446.080299999564886 ], [ 364751.579099997878075, 255442.753600001335144 ], [ 364750.241400003433228, 255438.648899998515844 ], [ 364749.299099996685982, 255434.157800000160933 ], [ 364748.720600001513958, 255429.874299999326468 ], [ 364741.697599999606609, 255426.123100001364946 ], [ 364738.076800003647804, 255424.30629999935627 ], [ 364736.842000000178814, 255431.674199998378754 ], [ 364733.013199999928474, 255445.971200000494719 ], [ 364728.73759999871254, 255464.35869999974966 ], [ 364724.497599996626377, 255474.284200001507998 ], [ 364719.959399998188019, 255479.432399999350309 ], [ 364710.008199997246265, 255487.126600001007318 ], [ 364702.978500001132488, 255490.342199999839067 ], [ 364689.334399998188019, 255496.367300000041723 ], [ 364672.785899996757507, 255502.015099998563528 ], [ 364668.266199998557568, 255503.557599999010563 ], [ 364641.611000001430511, 255512.673099998384714 ], [ 364627.372400000691414, 255517.129900000989437 ], [ 364610.049300000071526, 255519.848499998450279 ], [ 364582.725599996745586, 255529.049699999392033 ], [ 364545.214699998497963, 255539.358600001782179 ], [ 364500.599200002849102, 255552.058699999004602 ], [ 364479.580899998545647, 255555.996199999004602 ], [ 364463.587499998509884, 255547.671999998390675 ], [ 364462.678400002419949, 255560.844999998807907 ], [ 364467.994599997997284, 255568.090199999511242 ], [ 364471.662100002169609, 255567.459499999880791 ], [ 364502.51240000128746, 255560.119899999350309 ], [ 364595.107900001108646, 255532.838899999856949 ], [ 364634.037600003182888, 255520.8902000002563 ], [ 364675.326999999582767, 255508.182000000029802 ], [ 364685.555100001394749, 255504.565499998629093 ], [ 364693.616200000047684, 255502.10020000115037 ], [ 364705.417999997735023, 255497.912399999797344 ], [ 364714.472800001502037, 255493.896200001239777 ], [ 364720.381999999284744, 255490.827799998223782 ], [ 364724.389700002968311, 255486.963500000536442 ], [ 364727.502499997615814, 255483.676399998366833 ], [ 364729.097699999809265, 255480.571299999952316 ], [ 364730.88910000026226, 255477.4679000005126 ], [ 364732.289899997413158, 255474.166200000792742 ], [ 364733.512800000607967, 255468.718899998813868 ], [ 364735.957099996507168, 255458.019200000911951 ], [ 364739.594499997794628, 255445.380399998277426 ], [ 364741.585299998521805, 255441.888799998909235 ], [ 364743.351700000464916, 255441.708999998867512 ], [ 364744.12780000269413, 255442.690200001001358 ], [ 364745.468900002539158, 255446.405000001192093 ], [ 364746.79839999973774, 255451.484200000762939 ], [ 364748.111299999058247, 255458.512499999254942 ], [ 364749.056900002062321, 255462.613800000399351 ], [ 364749.176600001752377, 255471.581000000238419 ], [ 364747.561499997973442, 255477.024999998509884 ], [ 364744.774800002574921, 255481.874200001358986 ], [ 364742.386900000274181, 255485.947200000286102 ], [ 364737.24549999833107, 255490.9712999984622 ], [ 364734.276000000536442, 255494.25959999859333 ], [ 364731.118699997663498, 255496.571800000965595 ], [ 364724.265299998223782, 255501.581300001591444 ], [ 364711.589900001883507, 255510.049800001084805 ], [ 364702.126299999654293, 255516.011799998581409 ], [ 364684.576700001955032, 255527.36259999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601020200", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-G", "ACRE": "4.151", "LONGITUDE": -64.87505018, "LATITUDE": 18.32835555, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.741469099, "SHAPE_Area": 1451.85353556 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364744.12780000269413, 255442.690200001001358 ], [ 364743.351700000464916, 255441.708999998867512 ], [ 364741.585299998521805, 255441.888799998909235 ], [ 364739.594499997794628, 255445.380399998277426 ], [ 364735.957099996507168, 255458.019200000911951 ], [ 364733.512800000607967, 255468.718899998813868 ], [ 364732.289899997413158, 255474.166200000792742 ], [ 364730.88910000026226, 255477.4679000005126 ], [ 364729.097699999809265, 255480.571299999952316 ], [ 364727.502499997615814, 255483.676399998366833 ], [ 364724.389700002968311, 255486.963500000536442 ], [ 364721.857699997723103, 255489.404899999499321 ], [ 364720.381999999284744, 255490.827799998223782 ], [ 364714.472800001502037, 255493.896200001239777 ], [ 364705.46000000089407, 255497.893800001591444 ], [ 364705.417999997735023, 255497.912399999797344 ], [ 364693.616200000047684, 255502.10020000115037 ], [ 364691.702899999916553, 255502.685400001704693 ], [ 364685.555100001394749, 255504.565499998629093 ], [ 364678.334200002253056, 255507.118700001388788 ], [ 364684.576700001955032, 255527.36259999871254 ], [ 364698.98650000244379, 255518.042599998414516 ], [ 364702.126299999654293, 255516.011799998581409 ], [ 364711.038099996745586, 255510.39750000089407 ], [ 364711.589900001883507, 255510.049800001084805 ], [ 364724.265299998223782, 255501.581300001591444 ], [ 364727.652300000190735, 255499.105599999427795 ], [ 364731.118699997663498, 255496.571800000965595 ], [ 364734.276000000536442, 255494.25959999859333 ], [ 364737.24549999833107, 255490.9712999984622 ], [ 364742.386900000274181, 255485.947200000286102 ], [ 364744.774800002574921, 255481.874200001358986 ], [ 364747.561499997973442, 255477.024999998509884 ], [ 364749.176600001752377, 255471.581000000238419 ], [ 364749.056900002062321, 255462.613800000399351 ], [ 364748.111299999058247, 255458.512499999254942 ], [ 364746.79839999973774, 255451.484200000762939 ], [ 364745.468900002539158, 255446.405000001192093 ], [ 364744.12780000269413, 255442.690200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "1057030066500", "MAP": "D9-8051-T007", "PARCEL_NAM": "11-E-6", "ACRE": ".248", "LONGITUDE": -64.87513665, "LATITUDE": 18.33320091, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.015543995, "SHAPE_Area": 980.86620468299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364715.520499996840954, 256046.584199998527765 ], [ 364731.829099997878075, 256025.820900000631809 ], [ 364697.704899996519089, 256009.287399999797344 ], [ 364691.971500001847744, 256015.020899999886751 ], [ 364683.299999997019768, 256020.631799999624491 ], [ 364679.219300001859665, 256024.202399998903275 ], [ 364678.709299996495247, 256026.75279999896884 ], [ 364679.729400001466274, 256031.343600001186132 ], [ 364679.8783999979496, 256031.581999998539686 ], [ 364683.299999997019768, 256030.833500001579523 ], [ 364704.723600000143051, 256036.954500000923872 ], [ 364715.520499996840954, 256046.584199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-519-T98", "PARCEL_NAM": "11-K", "ACRE": "4.59", "LONGITUDE": -64.87534925, "LATITUDE": 18.33302627, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.39708456299999, "SHAPE_Area": 1149.24698814 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364712.474899999797344, 255977.57660000026226 ], [ 364707.273999996483326, 255975.744300000369549 ], [ 364702.173199996352196, 255974.214099999517202 ], [ 364697.582400001585484, 255987.476300001144409 ], [ 364694.011799998581409, 255996.147700000554323 ], [ 364686.360500000417233, 256005.839299999177456 ], [ 364674.628600001335144, 256011.450300000607967 ], [ 364665.957099996507168, 256011.450300000607967 ], [ 364648.614200003445148, 256000.228399999439716 ], [ 364645.453100003302097, 255996.304200001060963 ], [ 364652.831399999558926, 256013.502500001341105 ], [ 364658.391099996864796, 256023.469399999827147 ], [ 364666.39130000025034, 256030.923099998384714 ], [ 364670.956200003623962, 256033.533700000494719 ], [ 364679.8783999979496, 256031.581999998539686 ], [ 364679.729400001466274, 256031.343600001186132 ], [ 364678.709299996495247, 256026.75279999896884 ], [ 364679.219300001859665, 256024.202399998903275 ], [ 364683.299999997019768, 256020.631799999624491 ], [ 364691.971500001847744, 256015.020899999886751 ], [ 364699.622699998319149, 256007.369600001722574 ], [ 364703.193300001323223, 256000.228399999439716 ], [ 364707.273999996483326, 255994.617499999701977 ], [ 364711.354699999094009, 255994.617499999701977 ], [ 364715.435400001704693, 255984.415800001472235 ], [ 364711.077100001275539, 255982.40430000051856 ], [ 364712.474899999797344, 255977.57660000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032100", "MAP": "D9-8187-T008", "PARCEL_NAM": null, "ACRE": ".13", "LONGITUDE": -64.86987607, "LATITUDE": 18.34282297, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.19723574299999, "SHAPE_Area": 578.82563514799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365230.993500001728535, 257102.918699998408556 ], [ 365232.913000002503395, 257101.368599999696016 ], [ 365255.560300000011921, 257097.935899998992682 ], [ 365266.371500000357628, 257096.432799998670816 ], [ 365276.428300000727177, 257097.824000000953674 ], [ 365283.684199996292591, 257102.527300000190735 ], [ 365291.10869999974966, 257113.330800000578165 ], [ 365290.733999997377396, 257101.325100000947714 ], [ 365287.958999998867512, 257097.487300001084805 ], [ 365278.523100003600121, 257091.750100001692772 ], [ 365270.361900001764297, 257090.520100001245737 ], [ 365266.425999999046326, 257090.051399998366833 ], [ 365264.674999997019768, 257090.036400001496077 ], [ 365256.494000002741814, 257091.126899998635054 ], [ 365244.368400000035763, 257092.763900000602007 ], [ 365228.592600002884865, 257094.659800000488758 ], [ 365227.426500000059605, 257094.504799999296665 ], [ 365225.684199996292591, 257093.474599998444319 ], [ 365224.236299999058247, 257092.156899999827147 ], [ 365223.663699999451637, 257090.846599999815226 ], [ 365222.805600002408028, 257088.808699999004602 ], [ 365216.525200001895428, 257089.48030000180006 ], [ 365216.361900001764297, 257091.509500000625849 ], [ 365216.354500003159046, 257092.379700001329184 ], [ 365215.466700002551079, 257093.822500001639128 ], [ 365214.871899999678135, 257095.122800000011921 ], [ 365213.354599997401237, 257095.986400000751019 ], [ 365213.687600001692772, 257098.891800001263618 ], [ 365213.843400001525879, 257100.362300001084805 ], [ 365227.991599999368191, 257099.69480000063777 ], [ 365230.993500001728535, 257102.918699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032100", "MAP": "D9-8187-T008", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.86967453, "LATITUDE": 18.34293563, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.21514713000001, "SHAPE_Area": 602.20034258800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365255.542900003492832, 257097.938499998301268 ], [ 365268.928400002419949, 257125.6385000012815 ], [ 365279.47240000218153, 257117.285599999129772 ], [ 365291.325099997222424, 257120.26410000026226 ], [ 365291.10869999974966, 257113.330800000578165 ], [ 365283.684199996292591, 257102.527300000190735 ], [ 365276.428300000727177, 257097.824000000953674 ], [ 365266.371500000357628, 257096.432799998670816 ], [ 365255.560300000011921, 257097.935899998992682 ], [ 365255.542900003492832, 257097.938499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032109", "MAP": "D9-8187-T008", "PARCEL_NAM": null, "ACRE": ".19", "LONGITUDE": -64.87015049, "LATITUDE": 18.34260132, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.41587273900001, "SHAPE_Area": 970.982582245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365234.792700000107288, 257093.914700001478195 ], [ 365235.704300001263618, 257064.986800000071526 ], [ 365240.733800001442432, 257057.234900001436472 ], [ 365209.23369999974966, 257049.5185999982059 ], [ 365212.249399997293949, 257078.403999999165535 ], [ 365212.936999998986721, 257092.34180000051856 ], [ 365213.354599997401237, 257095.986400000751019 ], [ 365214.871899999678135, 257095.122800000011921 ], [ 365215.466700002551079, 257093.822500001639128 ], [ 365216.354500003159046, 257092.379700001329184 ], [ 365216.361900001764297, 257091.509500000625849 ], [ 365216.525200001895428, 257089.48030000180006 ], [ 365222.805600002408028, 257088.808699999004602 ], [ 365223.663699999451637, 257090.846599999815226 ], [ 365224.236299999058247, 257092.156899999827147 ], [ 365225.684199996292591, 257093.474599998444319 ], [ 365227.426500000059605, 257094.504799999296665 ], [ 365228.592600002884865, 257094.659800000488758 ], [ 365234.792700000107288, 257093.914700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032113", "MAP": "D9-8187-T008", "PARCEL_NAM": null, "ACRE": ".14", "LONGITUDE": -64.86994345, "LATITUDE": 18.34264244, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.940464414, "SHAPE_Area": 667.95437809600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365256.728799998760223, 257091.095600001513958 ], [ 365254.355700001120567, 257060.571800000965595 ], [ 365240.733800001442432, 257057.234900001436472 ], [ 365235.704300001263618, 257064.986800000071526 ], [ 365234.792700000107288, 257093.914700001478195 ], [ 365244.368400000035763, 257092.763900000602007 ], [ 365256.494000002741814, 257091.126899998635054 ], [ 365256.728799998760223, 257091.095600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803020400", "MAP": "F9-1368-T64", "PARCEL_NAM": "110B", "ACRE": "1.02", "LONGITUDE": -64.86228426, "LATITUDE": 18.33246729, "OBJECTID_1": 23864, "PARCEL_NO_": "105803020400", "Tax_Legal_": "FRYDENHOJ 110B RED HOOK QTR", "Name": "GREAUX, JOSEPH & CAROL GREAUX-AUGUSTINE", "Address": "P O BOX 2455", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 115700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.25876174500002, "SHAPE_Area": 3848.7247697399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366086.450400002300739, 256015.202100001275539 ], [ 366082.113399997353554, 255966.9386 ], [ 366079.890500001609325, 255943.911200001835823 ], [ 366076.218500003218651, 255901.662500001490116 ], [ 366069.771600000560284, 255901.1875 ], [ 366063.335500001907349, 255899.446100000292063 ], [ 366054.493000000715256, 255896.207299999892712 ], [ 366044.057700000703335, 255890.633499998599291 ], [ 366049.052799999713898, 255966.879099998623133 ], [ 366051.902099996805191, 256014.712400000542402 ], [ 366086.450400002300739, 256015.202100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803024100", "MAP": "D9-1046-T72", "PARCEL_NAM": "110-H", "ACRE": ".24", "LONGITUDE": -64.86192107, "LATITUDE": 18.33281959, "OBJECTID_1": 23900, "PARCEL_NO_": "105803024100", "Tax_Legal_": "FRYDENHOJ 110-H RED HOOK QTR.", "Name": "CARBON, CLEVELAND", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25900, "Improved_V": 107800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.458566515, "SHAPE_Area": 744.26465576600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366118.356200002133846, 255986.349300000816584 ], [ 366083.816500000655651, 255985.891199998557568 ], [ 366085.731200002133846, 256007.198600001633167 ], [ 366121.752199999988079, 256006.382100000977516 ], [ 366121.807599999010563, 255999.933299999684095 ], [ 366120.184900000691414, 255991.78770000115037 ], [ 366118.356200002133846, 255986.349300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803020300", "MAP": "G9-1294-T69", "PARCEL_NAM": "110D-1", "ACRE": ".23", "LONGITUDE": -64.86191063, "LATITUDE": 18.33308251, "OBJECTID_1": 23863, "PARCEL_NO_": "105803020300", "Tax_Legal_": "110D-1 ESTATE FRYDENHOJ 1,2&3 RED HOOK QTR.", "Name": "SHARLEEN A FAHIE (LIFE ESTATE) & TED FAHIE", "Address": "PO Box 816", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25600, "Improved_V": 186200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.042355813, "SHAPE_Area": 661.76613457400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366088.367799997329712, 256036.539799999445677 ], [ 366119.372100003063679, 256035.338899999856949 ], [ 366120.821800000965595, 256016.188099998980761 ], [ 366086.450400002300739, 256015.202100001275539 ], [ 366088.367799997329712, 256036.539799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803025000", "MAP": "D9-7813-T007", "PARCEL_NAM": "110-N", "ACRE": ".28", "LONGITUDE": -64.86166461000001, "LATITUDE": 18.33199984, "OBJECTID_1": 23909, "PARCEL_NO_": "105803025000", "Tax_Legal_": "110-N FRYDENHOJ NO.3 RED HOOK QTR", "Name": "JACKSON, YVETTE THERESA", "Address": "PO Box 1202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.878852986, "SHAPE_Area": 1448.8923464899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366103.321400001645088, 255927.81870000064373 ], [ 366151.305299997329712, 255920.734900001436472 ], [ 366151.08330000191927, 255916.629599999636412 ], [ 366150.348899997770786, 255908.179800000041723 ], [ 366145.240599997341633, 255845.232099998742342 ], [ 366142.453299999237061, 255874.211100000888109 ], [ 366140.559500001370907, 255884.084199998527765 ], [ 366138.70440000295639, 255889.462499998509884 ], [ 366134.432300001382828, 255895.419300001114607 ], [ 366128.670900002121925, 255899.265700001269579 ], [ 366115.081399999558926, 255901.846099998801947 ], [ 366107.097599998116493, 255901.77760000154376 ], [ 366105.119699999690056, 255906.416200000792742 ], [ 366103.063299998641014, 255915.932199999690056 ], [ 366102.976599998772144, 255926.026000000536442 ], [ 366103.321400001645088, 255927.81870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803025400", "MAP": "D9-6239-T97", "PARCEL_NAM": "110-K", "ACRE": ".25", "LONGITUDE": -64.86153127, "LATITUDE": 18.33286179, "OBJECTID_1": 23913, "PARCEL_NO_": "105803025400", "Tax_Legal_": "110-K ESTATE FRYDENHOJ No.3 RED HOOK QTR.", "Name": "CROSS, GLENDON G. & CLAUDETTE U.", "Address": "PO BOX 306626", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.017089938, "SHAPE_Area": 1056.11595119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366156.072599999606609, 255981.579500000923872 ], [ 366126.378799997270107, 255985.628299999982119 ], [ 366126.441200003027916, 255985.953000001609325 ], [ 366128.037500001490116, 255997.182799998670816 ], [ 366130.891400001943111, 256017.588199999183416 ], [ 366159.428999997675419, 256022.290199998766184 ], [ 366156.072599999606609, 255981.579500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803024900", "MAP": "D9-7813-T007", "PARCEL_NAM": "110-M", "ACRE": ".25", "LONGITUDE": -64.86166793, "LATITUDE": 18.33228364, "OBJECTID_1": 23908, "PARCEL_NO_": "105803024900", "Tax_Legal_": "FRYDENHOJ 110-M #3RED HOOK QTR", "Name": "ROUMOU, JOHN & BLANCHE", "Address": "PO Box 9371", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.295654308, "SHAPE_Area": 1236.6267750300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366115.028599999845028, 255955.355099998414516 ], [ 366153.250500001013279, 255947.348499998450279 ], [ 366151.779899999499321, 255929.511999998241663 ], [ 366151.305299997329712, 255920.734900001436472 ], [ 366103.321400001645088, 255927.81870000064373 ], [ 366104.056900002062321, 255931.643300000578165 ], [ 366107.921800002455711, 255941.490600001066923 ], [ 366114.581200003623962, 255954.446199998259544 ], [ 366115.028599999845028, 255955.355099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803024800", "MAP": "D9-7813-T007", "PARCEL_NAM": "110-L", "ACRE": ".27", "LONGITUDE": -64.86158694, "LATITUDE": 18.3325463, "OBJECTID_1": 23907, "PARCEL_NO_": "105803024800", "Tax_Legal_": "110L FRYDENHOJ #3 RED HOOK QUARTER", "Name": "HERBERT TRUSTEE, NAOMI", "Address": "PO Box 8856", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29100, "Improved_V": 230600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.90915006399999, "SHAPE_Area": 1107.02412497 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366153.250500001013279, 255947.348499998450279 ], [ 366115.028599999845028, 255955.355099998414516 ], [ 366121.512900002300739, 255968.525800000876188 ], [ 366124.550899997353554, 255976.122699998319149 ], [ 366126.378799997270107, 255985.628299999982119 ], [ 366156.072599999606609, 255981.579500000923872 ], [ 366153.250500001013279, 255947.348499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803023300", "MAP": "D9-1046-T72", "PARCEL_NAM": "110-G", "ACRE": ".25", "LONGITUDE": -64.86197828, "LATITUDE": 18.33258104, "OBJECTID_1": 23892, "PARCEL_NO_": "105803023300", "Tax_Legal_": "FRYDENHOJ 110G RED HOOK QTR", "Name": "ABOTT, MILTON & MARJORIE", "Address": "PO Box 7402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.36364969600001, "SHAPE_Area": 981.59500485800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366101.958400003612041, 255951.291999999433756 ], [ 366080.60419999808073, 255951.305300001055002 ], [ 366082.113399997353554, 255966.9386 ], [ 366083.816500000655651, 255985.891199998557568 ], [ 366118.356200002133846, 255986.349300000816584 ], [ 366117.159000001847744, 255982.788899999111891 ], [ 366107.184399999678135, 255961.673200000077486 ], [ 366101.958400003612041, 255951.291999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803024500", "MAP": "D9-1046-T72", "PARCEL_NAM": "110-F", "ACRE": ".25", "LONGITUDE": -64.86206904, "LATITUDE": 18.33219231, "OBJECTID_1": 23904, "PARCEL_NO_": "105803024500", "Tax_Legal_": "FRYDENHOJ 110-F RED HOOK QUARTER", "Name": "DYER, LLOYD W.", "Address": "PO Box 307016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.81643351, "SHAPE_Area": 894.83741225899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366080.60419999808073, 255951.305300001055002 ], [ 366101.958400003612041, 255951.291999999433756 ], [ 366100.804700002074242, 255949.000300001353025 ], [ 366097.236299999058247, 255937.473200000822544 ], [ 366095.603900000452995, 255930.449200000613928 ], [ 366094.591099999845028, 255916.981100000441074 ], [ 366095.504699997603893, 255909.137699998915195 ], [ 366096.326899997889996, 255901.962799999862909 ], [ 366095.483000002801418, 255901.977600000798702 ], [ 366086.735100001096725, 255902.501899998635054 ], [ 366076.218500003218651, 255901.662500001490116 ], [ 366079.890500001609325, 255943.911200001835823 ], [ 366080.60419999808073, 255951.305300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803025300", "MAP": "D9-1046-T72", "PARCEL_NAM": "110-P", "ACRE": ".23", "LONGITUDE": -64.8617903, "LATITUDE": 18.33169169, "OBJECTID_1": 23912, "PARCEL_NO_": "105803025300", "Tax_Legal_": "110-P FRYDENHOJ 1 #3 RED HOOK QUARTER", "Name": "FRANCIS, GLENCEWORTH", "Address": "6242 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30200, "Improved_V": 374900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.162366461, "SHAPE_Area": 1265.86112095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366103.308399997651577, 255852.455099999904633 ], [ 366100.21679999679327, 255892.924199998378754 ], [ 366121.454700000584126, 255892.322399999946356 ], [ 366127.115099996328354, 255890.468899998813868 ], [ 366129.550200000405312, 255888.589000001549721 ], [ 366132.813199996948242, 255884.182700000703335 ], [ 366135.175300002098083, 255851.340399999171495 ], [ 366103.308399997651577, 255852.455099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502020700", "MAP": "D9-8478-T010", "PARCEL_NAM": "1-U-2", "ACRE": ".51", "LONGITUDE": -64.9036331, "LATITUDE": 18.34602834, "OBJECTID_1": 19854, "PARCEL_NO_": "105502020700", "Tax_Legal_": "1-U-2 REM WINTBERG GT. NORTHSIDE QTR.", "Name": "PHILLIPS, GEORGE E. & ADELINE AGATHA PHILLIPS(Trustees)", "Address": "PO Box 10770", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.57788778099999, "SHAPE_Area": 1403.9755862300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361662.5878000035882, 257397.314800001680851 ], [ 361674.716099999845028, 257424.933299999684095 ], [ 361669.493400000035763, 257448.662099998444319 ], [ 361687.580099999904633, 257459.1114999987185 ], [ 361697.717799998819828, 257406.598400000482798 ], [ 361688.911300003528595, 257399.138000000268221 ], [ 361684.125600002706051, 257392.977200001478195 ], [ 361681.746200002729893, 257388.3136 ], [ 361662.5878000035882, 257397.314800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604036500", "MAP": "D9-8524-T010", "PARCEL_NAM": "5D", "ACRE": "2.175", "LONGITUDE": -64.88897515, "LATITUDE": 18.33582489, "OBJECTID_1": 21827, "PARCEL_NO_": "105604036500", "Tax_Legal_": "CONS 5D ANNAS RETREAT NO.1 NEW QUARTER", "Name": "PPC LLC", "Address": "2054 S Green Rd", "City": "South Euclid", "State": "Ohio", "Zip": 44121, "Country": "United States", "Land_Value": 348300, "Improved_V": 1711900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 408.51795729000003, "SHAPE_Area": 8234.1784584399993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363272.106499999761581, 256323.486299999058247 ], [ 363297.389899998903275, 256289.9358000010252 ], [ 363210.829700000584126, 256227.992600001394749 ], [ 363201.146700002253056, 256228.757800001651049 ], [ 363204.858199998736382, 256266.362799998372793 ], [ 363212.29559999704361, 256339.884199999272823 ], [ 363214.550899997353554, 256359.112199999392033 ], [ 363244.908399999141693, 256392.502399999648333 ], [ 363272.106499999761581, 256323.486299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702022100", "MAP": "D9-7671-T005", "PARCEL_NAM": "4G-12-REM", "ACRE": ".23", "LONGITUDE": -64.86776728, "LATITUDE": 18.34434315, "OBJECTID_1": 22385, "PARCEL_NO_": "105702022100", "Tax_Legal_": "ESTATE SMITH BAY 4G-12-REM. EAST END QTR", "Name": "RYLAND HUYGHUE a/k/a RYLAND A HUYGHE FAMILY REVOCABLE TRUST", "Address": "6752 ESTATE SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021343, "Country": "United States", "Land_Value": 38400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.397176116, "SHAPE_Area": 667.19293732300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365460.32150000333786, 257282.668000001460314 ], [ 365461.753899998962879, 257283.197900000959635 ], [ 365466.035599999129772, 257284.170499999076128 ], [ 365477.39639999717474, 257285.123700000345707 ], [ 365488.771600000560284, 257251.409400001168251 ], [ 365468.084299996495247, 257248.891699999570847 ], [ 365460.32150000333786, 257282.668000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702026200", "MAP": "D9-7671-T005", "PARCEL_NAM": "4g-12-2", "ACRE": ".24", "LONGITUDE": -64.86794134, "LATITUDE": 18.34430108, "OBJECTID_1": 22460, "PARCEL_NO_": "105702026200", "Tax_Legal_": "4G-12-2 ESTATE SMITH BAY 1,2,& 3 EASTEND QTR.", "Name": "KEAN, JR., JOSE B. & JOYCE B.", "Address": "6752 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.040480924600004, "SHAPE_Area": 593.36687232700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365446.095799997448921, 257267.769000001251698 ], [ 365447.683300003409386, 257270.737300001084805 ], [ 365449.544200003147125, 257274.052600000053644 ], [ 365451.662699997425079, 257276.891600001603365 ], [ 365455.101499997079372, 257280.736600000411272 ], [ 365460.32150000333786, 257282.668000001460314 ], [ 365468.084299996495247, 257248.891699999570847 ], [ 365448.948700003325939, 257246.562800001353025 ], [ 365442.985699996352196, 257254.233500000089407 ], [ 365443.737999998033047, 257260.572500001639128 ], [ 365446.095799997448921, 257267.769000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702022500", "MAP": "D9-662-T67", "PARCEL_NAM": "4AA", "ACRE": null, "LONGITUDE": -64.86740065, "LATITUDE": 18.34407102, "OBJECTID_1": 22389, "PARCEL_NO_": "105702022500", "Tax_Legal_": "SMITH BAY 4AA EAST END QUARTER", "Name": "GREAUX, MECEDES", "Address": "7300 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.871354688, "SHAPE_Area": 664.83373282599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365530.017499998211861, 257230.460200000554323 ], [ 365499.973700001835823, 257222.891800001263618 ], [ 365494.634199999272823, 257244.004599999636412 ], [ 365527.691600002348423, 257249.860599998384714 ], [ 365530.017499998211861, 257230.460200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031500", "MAP": "D9-8306-T006", "PARCEL_NAM": "94 REM", "ACRE": ".491", "LONGITUDE": -64.90102093, "LATITUDE": 18.31772018, "OBJECTID_1": 37400, "PARCEL_NO_": "107404031500", "Tax_Legal_": "94 REM, 93-A ESTATE BOLONGO FRENCHMAN BAY QTR", "Name": "WARNER, ROY & ELISE", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 48100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.00890945699999, "SHAPE_Area": 1458.70722832 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361992.461000002920628, 254278.152199998497963 ], [ 361987.271899998188019, 254282.2489 ], [ 361982.630599997937679, 254277.607599999755621 ], [ 361979.226899996399879, 254277.418999999761581 ], [ 361969.575400002300739, 254282.761799998581409 ], [ 361963.364000000059605, 254276.540199998766184 ], [ 361943.79559999704361, 254275.4560999982059 ], [ 361942.884900003671646, 254279.354100000113249 ], [ 361941.771799996495247, 254283.756299998611212 ], [ 362004.476499997079372, 254313.025800000876188 ], [ 362007.152500003576279, 254307.74439999833703 ], [ 362011.270400002598763, 254297.645599998533726 ], [ 362013.01070000231266, 254282.672200001776218 ], [ 362012.294299997389317, 254279.250999998301268 ], [ 361992.461000002920628, 254278.152199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402010200", "MAP": "D9-3064-T85", "PARCEL_NAM": "2-A", "ACRE": ".20", "LONGITUDE": -64.90587472, "LATITUDE": 18.3275808, "OBJECTID_1": 33122, "PARCEL_NO_": "107402010200", "Tax_Legal_": "DONOE EST. 2-A 2A NEW QTR.", "Name": "DAVIS, WALTER & ALISON", "Address": "PO Box 8810", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.72344035699999, "SHAPE_Area": 941.95041129699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361430.57039999961853, 255383.121599998325109 ], [ 361464.130000002682209, 255385.572399999946356 ], [ 361489.833999998867512, 255385.786800000816584 ], [ 361498.630500003695488, 255372.36939999833703 ], [ 361492.486800000071526, 255372.721000000834465 ], [ 361437.693499997258186, 255368.050700001418591 ], [ 361430.434900000691414, 255368.202399998903275 ], [ 361430.57039999961853, 255383.121599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504010500", "MAP": "D9-4855-T90", "PARCEL_NAM": "2C", "ACRE": "2.0018", "LONGITUDE": -64.90317187, "LATITUDE": 18.33304031, "OBJECTID_1": 20384, "PARCEL_NO_": "105504010500", "Tax_Legal_": "2B,C,D,F,G,H,J,K & 2-E DONOE 2A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 876000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.16415204499998, "SHAPE_Area": 6155.9925498499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361804.358199998736382, 255980.615499999374151 ], [ 361756.021099999547005, 255929.577399998903275 ], [ 361726.854400001466274, 255955.864599999040365 ], [ 361684.203699998557568, 255994.30460000038147 ], [ 361692.728500001132488, 256007.09180000051856 ], [ 361702.253499999642372, 256019.791799999773502 ], [ 361712.836800001561642, 256031.433499999344349 ], [ 361717.107100002467632, 256034.849700000137091 ], [ 361782.399499997496605, 255994.973799999803305 ], [ 361794.416900001466274, 255987.115899998694658 ], [ 361804.358199998736382, 255980.615499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012500", "MAP": "D9-4855-T90", "PARCEL_NAM": "2B", "ACRE": "3.0252", "LONGITUDE": -64.90256646, "LATITUDE": 18.33372366, "OBJECTID_1": 20404, "PARCEL_NO_": "105504012500", "Tax_Legal_": "2B ESTATE DONOE NEW QTR.", "Name": "THE DIOCESE OF ST THOMAS", "Address": "P.O. BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 108200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 492.19803510100002, "SHAPE_Area": 14526.8300752 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361870.528800003230572, 256050.483500000089407 ], [ 361804.358199998736382, 255980.615499999374151 ], [ 361794.416900001466274, 255987.115899998694658 ], [ 361782.399499997496605, 255994.973799999803305 ], [ 361717.107100002467632, 256034.849700000137091 ], [ 361726.065999999642372, 256042.016800001263618 ], [ 361737.707699999213219, 256056.833500001579523 ], [ 361746.703599996864796, 256073.237700000405312 ], [ 361751.995200000703335, 256097.050299998372793 ], [ 361755.339400000870228, 256114.379200000315905 ], [ 361865.073100000619888, 256117.52309999987483 ], [ 361875.736599996685982, 256117.636999998241663 ], [ 361888.030500002205372, 256117.663499999791384 ], [ 361870.528800003230572, 256050.483500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704062500", "MAP": "D9-7389-T004", "PARCEL_NAM": "57W-1-2", "ACRE": ".27", "LONGITUDE": -64.87173143, "LATITUDE": 18.33962641, "OBJECTID_1": 23685, "PARCEL_NO_": "105704062500", "Tax_Legal_": "57W-1-2 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "JNO BAPTISTE, KERGE & MATHILDA E.", "Address": "PO BOX 9731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42100, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.82140550700001, "SHAPE_Area": 1133.43745767 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365052.166900001466274, 256761.76240000128746 ], [ 365083.2449000030756, 256748.736099999397993 ], [ 365082.824699997901917, 256747.405499998480082 ], [ 365067.725900001823902, 256721.317400000989437 ], [ 365067.479500003159046, 256720.674699999392033 ], [ 365035.900700002908707, 256731.920099999755621 ], [ 365036.978200003504753, 256733.731300000101328 ], [ 365038.543999999761581, 256739.232599999755621 ], [ 365040.129699997603893, 256742.412000000476837 ], [ 365041.727899998426437, 256744.113800000399351 ], [ 365042.509099997580051, 256747.075500000268221 ], [ 365048.871500000357628, 256757.471099998801947 ], [ 365052.166900001466274, 256761.76240000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704061600", "MAP": "D9-7389-T004", "PARCEL_NAM": "57W-1-REM", "ACRE": ".34", "LONGITUDE": -64.87157465, "LATITUDE": 18.3399929, "OBJECTID_1": 23678, "PARCEL_NO_": "105704061600", "Tax_Legal_": "57W-1 REM.SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HELENA ROMAN FAMILY TRUST", "Address": "PO BOX 502815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 54600, "Improved_V": 634300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.925616039, "SHAPE_Area": 1441.90635406 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365083.2449000030756, 256748.736099999397993 ], [ 365052.166900001466274, 256761.76240000128746 ], [ 365056.049199998378754, 256766.817999999970198 ], [ 365061.60700000077486, 256776.995999999344349 ], [ 365071.8462999984622, 256805.577399998903275 ], [ 365074.240099996328354, 256808.552299998700619 ], [ 365082.166599996387959, 256824.660300001502037 ], [ 365085.382799997925758, 256825.74210000038147 ], [ 365087.816100001335144, 256824.073300000280142 ], [ 365085.965400002896786, 256757.352600000798702 ], [ 365083.2449000030756, 256748.736099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107304012900", "MAP": "G9-1063-T49", "PARCEL_NAM": "5", "ACRE": "5.5", "LONGITUDE": -64.91674869000001, "LATITUDE": 18.31959422, "OBJECTID_1": 31732, "PARCEL_NO_": "107304012900", "Tax_Legal_": "ESTATE FRENCHMANS 5 BA FRENCHMANS BAY QTR", "Name": "SMITH, I & J", "Address": "PO Box 7625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 562700, "Improved_V": 367300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 476.75107765600001, "SHAPE_Area": 14411.3740839 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360392.71679999679327, 254507.102299999445677 ], [ 360380.189400002360344, 254417.915300000458956 ], [ 360363.618699997663498, 254420.526799999177456 ], [ 360316.031900003552437, 254421.826099999248981 ], [ 360300.686800003051758, 254424.655799999833107 ], [ 360294.216499999165535, 254426.924899999052286 ], [ 360278.847999997437, 254432.498599998652935 ], [ 360273.977799996733665, 254436.258499998599291 ], [ 360271.538999997079372, 254438.560499999672174 ], [ 360267.464299999177456, 254443.593400001525879 ], [ 360264.984200000762939, 254450.750300001353025 ], [ 360264.068199999630451, 254463.619500000029802 ], [ 360262.369300000369549, 254473.738099999725819 ], [ 360256.548900000751019, 254494.377599999308586 ], [ 360254.070600003004074, 254501.323399998247623 ], [ 360253.215800002217293, 254507.015999998897314 ], [ 360254.295999996364117, 254525.200899999588728 ], [ 360261.590700000524521, 254565.135200001299381 ], [ 360338.485299997031689, 254531.145199999213219 ], [ 360354.674500003457069, 254523.889499999582767 ], [ 360392.71679999679327, 254507.102299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601029500", "MAP": "D9-6871-T000", "PARCEL_NAM": "3J-4K", "ACRE": ".35", "LONGITUDE": -64.87815976, "LATITUDE": 18.32519054, "OBJECTID_1": 37953, "PARCEL_NO_": "107601029500", "Tax_Legal_": "3J-2A,-2B,-4K,-4J, EST.MARIEN 3 RED HOOK QTR", "Name": "MOSES, MAGDALANE", "Address": "C/O Ira Moses", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.47885598900001, "SHAPE_Area": 1306.0491618799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364355.560699999332428, 255126.5636 ], [ 364359.677500002086163, 255130.569099999964237 ], [ 364379.7466000020504, 255145.410100001841784 ], [ 364386.177500002086163, 255150.028099998831749 ], [ 364414.638400003314018, 255154.741599999368191 ], [ 364427.410499997437, 255136.789299998432398 ], [ 364421.263400003314018, 255134.064399998635054 ], [ 364403.194899998605251, 255129.309599999338388 ], [ 364381.050399996340275, 255121.336399998515844 ], [ 364366.820200003683567, 255123.841499999165535 ], [ 364355.560699999332428, 255126.5636 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022300", "MAP": null, "PARCEL_NAM": "3J-4C", "ACRE": null, "LONGITUDE": -64.87820709, "LATITUDE": 18.32499113, "OBJECTID_1": 37932, "PARCEL_NO_": "107601022300", "Tax_Legal_": "3J-4C,-4L,-4Q EST.MARIENDAHL 3 RED HOOK QTR", "Name": "MONSANTO, DONALD", "Address": "4146 W 141 St", "City": "Hawthorne", "State": "California", "Zip": 90250, "Country": "United States", "Land_Value": 133600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.91999000199999, "SHAPE_Area": 1044.1340850500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364355.560699999332428, 255126.5636 ], [ 364366.820200003683567, 255123.841499999165535 ], [ 364381.050399996340275, 255121.336399998515844 ], [ 364403.194899998605251, 255129.309599999338388 ], [ 364410.604900002479553, 255131.25959999859333 ], [ 364410.725400000810623, 255099.609499998390675 ], [ 364404.501000002026558, 255101.506700001657009 ], [ 364382.51129999756813, 255102.920099999755621 ], [ 364379.896099999547005, 255110.290100000798702 ], [ 364366.502300001680851, 255108.67790000140667 ], [ 364361.364000000059605, 255115.728100001811981 ], [ 364352.931599996984005, 255120.956199999898672 ], [ 364353.437600001692772, 255124.497800000011921 ], [ 364355.560699999332428, 255126.5636 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601029500", "MAP": "D9-6871-T000", "PARCEL_NAM": "3J-4J", "ACRE": ".24", "LONGITUDE": -64.87771045, "LATITUDE": 18.32531348, "OBJECTID_1": 37953, "PARCEL_NO_": "107601029500", "Tax_Legal_": "3J-2A,-2B,-4K,-4J, EST.MARIEN 3 RED HOOK QTR", "Name": "MOSES, MAGDALANE", "Address": "C/O Ira Moses", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.13687137299999, "SHAPE_Area": 701.95876741500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364470.446900002658367, 255155.866200000047684 ], [ 364427.410499997437, 255136.789299998432398 ], [ 364414.638400003314018, 255154.741599999368191 ], [ 364462.343400001525879, 255162.642299998551607 ], [ 364462.328599996864796, 255162.702300000935793 ], [ 364470.446900002658367, 255155.866200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601021700", "MAP": "D9-6871-T000", "PARCEL_NAM": "3J-4D", "ACRE": ".55", "LONGITUDE": -64.87761017, "LATITUDE": 18.32449915, "OBJECTID_1": 37927, "PARCEL_NO_": "107601021700", "Tax_Legal_": "3J-4D ESTATE MARIENDAHL #3 RED HOOK QTR", "Name": "MONSANTO, VERNON & FRANCES", "Address": "8066 Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.80847952900001, "SHAPE_Area": 2065.3641158 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364425.537399999797344, 255044.649000000208616 ], [ 364440.530500002205372, 255092.12950000166893 ], [ 364446.701899997889996, 255090.795200001448393 ], [ 364456.211599998176098, 255087.229100000113249 ], [ 364465.008100003004074, 255081.998700000345707 ], [ 364474.280100002884865, 255076.530600000172853 ], [ 364483.009400002658367, 255070.510400000959635 ], [ 364464.351999998092651, 255042.195999998599291 ], [ 364461.169900000095367, 255037.103700000792742 ], [ 364459.575300000607967, 255034.979800000786781 ], [ 364453.144599996507168, 255032.605099998414516 ], [ 364448.304899998009205, 255032.776599999517202 ], [ 364425.537399999797344, 255044.649000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022100", "MAP": "D9-6871-T000", "PARCEL_NAM": "3J-4H", "ACRE": ".24", "LONGITUDE": -64.87785238, "LATITUDE": 18.32497978, "OBJECTID_1": 37930, "PARCEL_NO_": "107601022100", "Tax_Legal_": "3J-4H,-4B,-4A,-4P EST.MARIENDAHL #3 RED HOOK QTR", "Name": "TROTMAN, GLORIA & LAURA & LANA & PAUL", "Address": "7639 Brookman", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.468587431, "SHAPE_Area": 1061.61864846 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364410.725400000810623, 255099.609499998390675 ], [ 364410.604900002479553, 255131.25959999859333 ], [ 364421.263400003314018, 255134.064399998635054 ], [ 364427.111699998378754, 255136.656800001859665 ], [ 364448.541799999773502, 255108.86600000038743 ], [ 364447.415100000798702, 255107.91270000115037 ], [ 364446.226400002837181, 255104.584300000220537 ], [ 364444.08669999986887, 255101.018199998885393 ], [ 364439.331900000572205, 255100.304900001734495 ], [ 364436.479000002145767, 255101.969099998474121 ], [ 364432.437299996614456, 255103.871100001037121 ], [ 364429.038900002837181, 255094.027300000190735 ], [ 364410.725400000810623, 255099.609499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022000", "MAP": "D9-6871-T000", "PARCEL_NAM": "3J-4G", "ACRE": ".23", "LONGITUDE": -64.87757268, "LATITUDE": 18.32512943, "OBJECTID_1": 37929, "PARCEL_NO_": "107601022000", "Tax_Legal_": "3J-4G ESTATE MARIENDAHL #4 RED HOOOK QTR", "Name": "BAILY, NEIL", "Address": "PO Box 502185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.562384474, "SHAPE_Area": 1356.46795754 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364470.446900002658367, 255155.866200000047684 ], [ 364476.419799998402596, 255114.331799998879433 ], [ 364468.574299998581409, 255115.045000001788139 ], [ 364457.875799998641014, 255112.905299998819828 ], [ 364450.505800001323223, 255110.527899999171495 ], [ 364448.541799999773502, 255108.86600000038743 ], [ 364427.111699998378754, 255136.656800001859665 ], [ 364470.446900002658367, 255155.866200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601021800", "MAP": "D9-6871-T000", "PARCEL_NAM": "3J-4E", "ACRE": ".27", "LONGITUDE": -64.87735042, "LATITUDE": 18.32480921, "OBJECTID_1": 37928, "PARCEL_NO_": "107601021800", "Tax_Legal_": "3J-4E ESTATE MARIENDAHL #4 RED HOOK QTR", "Name": "FRANCIS, PETER & BAILEY, NEIL", "Address": "PO Box 502185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27800, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.80907672500001, "SHAPE_Area": 1085.3622884 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364476.895300000905991, 255106.723999999463558 ], [ 364509.793200001120567, 255106.927099999040365 ], [ 364490.622299998998642, 255082.096599999815226 ], [ 364489.02759999781847, 255079.972600001841784 ], [ 364486.483400002121925, 255075.901200000196695 ], [ 364457.4003000035882, 255092.459399998188019 ], [ 364452.170000001788139, 255096.500999998301268 ], [ 364451.218999996781349, 255100.067200001329184 ], [ 364452.645499996840954, 255103.395599998533726 ], [ 364458.113600000739098, 255106.96169999986887 ], [ 364463.106200002133846, 255108.388199999928474 ], [ 364469.525200001895428, 255108.388199999928474 ], [ 364476.895300000905991, 255106.723999999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601022600", "MAP": "D9-6871-T000", "PARCEL_NAM": "3J-4F", "ACRE": ".586", "LONGITUDE": -64.87702765, "LATITUDE": 18.32526333, "OBJECTID_1": 37934, "PARCEL_NO_": "107601022600", "Tax_Legal_": "3J-4F ESTATE MARIENDAHL #4 RED HOOK QTR", "Name": "FRANCIS, PETER", "Address": "PO Box 502881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 68900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 300.17322620099998, "SHAPE_Area": 4227.6161181500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364509.793200001120567, 255106.927099999040365 ], [ 364476.895300000905991, 255106.723999999463558 ], [ 364476.419799998402596, 255114.331799998879433 ], [ 364470.446900002658367, 255155.866200000047684 ], [ 364573.193000003695488, 255193.312100000679493 ], [ 364567.16160000115633, 255184.470199998468161 ], [ 364539.327200002968311, 255138.857200000435114 ], [ 364534.509099997580051, 255136.495799999684095 ], [ 364531.298299998044968, 255134.780799999833107 ], [ 364509.793200001120567, 255106.927099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803010100", "MAP": "D9-1323-T77", "PARCEL_NAM": "19De", "ACRE": "0.09", "LONGITUDE": -64.86616419000001, "LATITUDE": 18.34025896, "OBJECTID_1": 23829, "PARCEL_NO_": "105803010100", "Tax_Legal_": "SMITH BAY ESTATE 19D No.1,2&3 EASTEND QTR", "Name": "LINDQVIST, DORIS M. & OTHERS", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1321000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.195704882, "SHAPE_Area": 794.527477417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365657.585799999535084, 256842.060899998992682 ], [ 365643.789599999785423, 256757.721599999815226 ], [ 365639.791199997067451, 256848.459100000560284 ], [ 365657.585799999535084, 256842.060899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105803010100", "MAP": "D9-1323-T77", "PARCEL_NAM": "30' ROW", "ACRE": null, "LONGITUDE": -64.86631486, "LATITUDE": 18.33966786, "OBJECTID_1": 23829, "PARCEL_NO_": "105803010100", "Tax_Legal_": "SMITH BAY ESTATE 19D No.1,2&3 EASTEND QTR", "Name": "LINDQVIST, DORIS M. & OTHERS", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1321000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 355.95734037199998, "SHAPE_Area": 1654.39515815 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365567.611100003123283, 256769.19819999858737 ], [ 365567.531099997460842, 256769.416600000113249 ], [ 365565.559399999678135, 256779.399300001561642 ], [ 365571.047100000083447, 256777.602299999445677 ], [ 365577.538999997079372, 256772.800299998372793 ], [ 365601.141400001943111, 256747.240100000053644 ], [ 365605.198100000619888, 256744.317999999970198 ], [ 365614.099899999797344, 256740.591099999845028 ], [ 365620.548600003123283, 256740.855000000447035 ], [ 365628.586599998176098, 256743.8761 ], [ 365643.789599999785423, 256757.721599999815226 ], [ 365647.790600001811981, 256761.342999998480082 ], [ 365653.413199998438358, 256763.922100000083447 ], [ 365661.469200000166893, 256764.832400001585484 ], [ 365667.345499999821186, 256764.654800001531839 ], [ 365672.700599998235703, 256763.448499999940395 ], [ 365703.552100002765656, 256747.022799998521805 ], [ 365699.579800002276897, 256740.02419999986887 ], [ 365697.958200000226498, 256741.066399998962879 ], [ 365692.319399997591972, 256740.386999998241663 ], [ 365689.913099996745586, 256738.889600001275539 ], [ 365688.320200003683567, 256736.554499998688698 ], [ 365685.082400001585484, 256738.005699999630451 ], [ 365679.400499999523163, 256742.392200000584126 ], [ 365682.607699997723103, 256744.52930000051856 ], [ 365682.570000000298023, 256748.962000001221895 ], [ 365666.387999996542931, 256755.373500000685453 ], [ 365659.129399999976158, 256755.525100000202656 ], [ 365652.698600001633167, 256753.150499999523163 ], [ 365636.698299996554852, 256738.243000000715256 ], [ 365627.870200000703335, 256733.315600000321865 ], [ 365617.409699998795986, 256730.696800000965595 ], [ 365607.72860000282526, 256731.250900000333786 ], [ 365598.82320000231266, 256735.399900000542402 ], [ 365589.082699999213219, 256742.91950000077486 ], [ 365582.571000002324581, 256750.043400000780821 ], [ 365579.28999999910593, 256756.560400001704693 ], [ 365567.893799997866154, 256769.132800001651049 ], [ 365567.611100003123283, 256769.19819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021900", "MAP": "D9-7749-T006", "PARCEL_NAM": "1G-4", "ACRE": ".979", "LONGITUDE": -64.90631652, "LATITUDE": 18.34455652, "OBJECTID_1": 19865, "PARCEL_NO_": "105502021900", "Tax_Legal_": "1G-4 & 1G-3-1 WINTBERG ESTATE No. 3 Great NORTHSIDE", "Name": "MARIO AUSTIN VERWEIJ REVOC TRUST", "Address": "3017 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.788345087400003, "SHAPE_Area": 203.512824661 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361411.196699999272823, 257247.833000000566244 ], [ 361401.943400003015995, 257253.209300000220537 ], [ 361383.694799996912479, 257256.713799998164177 ], [ 361375.389300003647804, 257262.498399998992682 ], [ 361376.764200001955032, 257262.299100000411272 ], [ 361391.739200003445148, 257260.128299999982119 ], [ 361403.851800002157688, 257258.116500001400709 ], [ 361409.499600000679493, 257257.740499999374151 ], [ 361417.20440000295639, 257252.456399999558926 ], [ 361411.196699999272823, 257247.833000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021600", "MAP": "D9-1099-T72", "PARCEL_NAM": "1G-1", "ACRE": ".85", "LONGITUDE": -64.90641116, "LATITUDE": 18.34480102, "OBJECTID_1": 19863, "PARCEL_NO_": "105502021600", "Tax_Legal_": "WINTBERG ESTATE 1G-1 GR NORTHSIDE", "Name": "COMMISSIONG, SIDNEY & THELMA", "Address": "PO Box 306813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 140000, "Improved_V": 780800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.89954316799998, "SHAPE_Area": 3569.2274571100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361428.112499997019768, 257266.1891999989748 ], [ 361420.482500001788139, 257257.146200001239777 ], [ 361409.499600000679493, 257257.740499999374151 ], [ 361403.851800002157688, 257258.116500001400709 ], [ 361391.739200003445148, 257260.128299999982119 ], [ 361376.764200001955032, 257262.299100000411272 ], [ 361346.117799997329712, 257266.741700001060963 ], [ 361347.512699998915195, 257284.010299999266863 ], [ 361348.197200000286102, 257292.484499998390675 ], [ 361339.800700001418591, 257298.966600000858307 ], [ 361348.675499998033047, 257298.405999999493361 ], [ 361349.402699999511242, 257307.699999999254942 ], [ 361425.260799996554852, 257300.721500001847744 ], [ 361434.137500002980232, 257299.949799999594688 ], [ 361428.112499997019768, 257266.1891999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011600", "MAP": "D9-8064-T007", "PARCEL_NAM": "221-2", "ACRE": ".366", "LONGITUDE": -64.90341805, "LATITUDE": 18.34544659, "OBJECTID_1": 19801, "PARCEL_NO_": "105502011600", "Tax_Legal_": "221-1,221-2& 221 REM WINTBERG GT. NORTHSIDE QTR.", "Name": "PINNEY, LYNDON S.", "Address": "3843 Pierce Ave", "City": "Auburn Hills", "State": "Michigan", "Zip": 48326, "Country": "United States", "Land_Value": 125200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.231007353, "SHAPE_Area": 1051.7651617500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361741.70830000191927, 257354.184999998658895 ], [ 361688.025200001895428, 257339.915100000798702 ], [ 361686.972499996423721, 257342.760200001299381 ], [ 361685.289800003170967, 257350.979100000113249 ], [ 361685.946800000965595, 257368.505199998617172 ], [ 361687.814499996602535, 257376.633499998599291 ], [ 361741.70830000191927, 257354.184999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011600", "MAP": "D9-8064-T007", "PARCEL_NAM": "221-REM", "ACRE": ".338", "LONGITUDE": -64.90335354, "LATITUDE": 18.34523749, "OBJECTID_1": 19801, "PARCEL_NO_": "105502011600", "Tax_Legal_": "221-1,221-2& 221 REM WINTBERG GT. NORTHSIDE QTR.", "Name": "PINNEY, LYNDON S.", "Address": "3843 Pierce Ave", "City": "Auburn Hills", "State": "Michigan", "Zip": 48326, "Country": "United States", "Land_Value": 125200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.62917566300001, "SHAPE_Area": 1027.1525185200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361688.025200001895428, 257339.915100000798702 ], [ 361741.70830000191927, 257354.184999998658895 ], [ 361708.222599998116493, 257309.370200000703335 ], [ 361699.275799997150898, 257318.374000001698732 ], [ 361695.195699997246265, 257324.040199998766184 ], [ 361691.099399998784065, 257331.605999998748302 ], [ 361688.025200001895428, 257339.915100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502015000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90313739, "LATITUDE": 18.34514802, "OBJECTID_1": 19847, "PARCEL_NO_": "105502015000", "Tax_Legal_": "332 REM & 332-B WINTBERG NO.3 NORTHSIDE QTR", "Name": "PHILLIP, NASHVILLE", "Address": "PO Box 302653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 93400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.368212296, "SHAPE_Area": 1387.61216369 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361741.70830000191927, 257354.184999998658895 ], [ 361760.354099996387959, 257342.516399998217821 ], [ 361730.927000001072884, 257294.568399999290705 ], [ 361715.529700003564358, 257303.519400000572205 ], [ 361708.222599998116493, 257309.370200000703335 ], [ 361741.70830000191927, 257354.184999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010200", "MAP": "D9-8323-T009", "PARCEL_NAM": "332 REM", "ACRE": ".565", "LONGITUDE": -64.90225682000001, "LATITUDE": 18.34813369, "OBJECTID_1": 19786, "PARCEL_NO_": "105502010200", "Tax_Legal_": "332-A WINTBERG NO.3 NORTHSIDE QTR", "Name": "MONSANTO, WILMA M", "Address": "P O BOX 2763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.882390047, "SHAPE_Area": 2096.0538440300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361780.36089999973774, 257654.635400000959635 ], [ 361828.468699999153614, 257679.409499999135733 ], [ 361830.270599998533726, 257680.381499998271465 ], [ 361834.906099997460842, 257676.518699999898672 ], [ 361842.300700001418591, 257670.227699998766184 ], [ 361849.364200003445148, 257664.488699998706579 ], [ 361860.6216000020504, 257655.99040000140667 ], [ 361866.403099998831749, 257652.424499999731779 ], [ 361868.678400002419949, 257648.264699999243021 ], [ 361862.153599999845028, 257639.845600001513958 ], [ 361857.972800001502037, 257637.779800001531839 ], [ 361851.130000002682209, 257634.027300000190735 ], [ 361843.854099996387959, 257638.789700001478195 ], [ 361822.211199998855591, 257652.879399999976158 ], [ 361817.951399996876717, 257647.693599998950958 ], [ 361792.162399999797344, 257638.022700000554323 ], [ 361788.85700000077486, 257636.752999998629093 ], [ 361786.529600001871586, 257640.038699999451637 ], [ 361781.737999998033047, 257648.663699999451637 ], [ 361777.904600001871586, 257653.592300001531839 ], [ 361780.36089999973774, 257654.635400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501011700", "MAP": "D9-8394-T010", "PARCEL_NAM": "1-33-A", "ACRE": ".827", "LONGITUDE": -64.90857721, "LATITUDE": 18.34743771, "OBJECTID_1": 19672, "PARCEL_NO_": "105501011700", "Tax_Legal_": "1-33A WINTBERG GR NORTHSIDE QTR", "Name": "HARRIS, RASHA A", "Address": "PO BOX 9196", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.998552069, "SHAPE_Area": 3793.6702085500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361182.005300000309944, 257534.561200000345707 ], [ 361124.178199999034405, 257550.559500001370907 ], [ 361126.209200002253056, 257571.640099998563528 ], [ 361129.90089999884367, 257611.56700000166893 ], [ 361189.720899999141693, 257594.113600000739098 ], [ 361190.593699999153614, 257586.310300000011921 ], [ 361193.064800001680851, 257580.208799999207258 ], [ 361186.819300003349781, 257556.092999998480082 ], [ 361182.005300000309944, 257534.561200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013000", "MAP": "D9-754-T010", "PARCEL_NAM": "1D1", "ACRE": ".5040", "LONGITUDE": -64.90816896, "LATITUDE": 18.34561028, "OBJECTID_1": 19683, "PARCEL_NO_": "105501013000", "Tax_Legal_": "WINTBERG 1D GREAT NORTHSIDE QTR", "Name": "SALEM, JAWAHER", "Address": "PO Box 10606", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 152500, "Improved_V": 668200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.578907216, "SHAPE_Area": 1390.21641378 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361191.802799999713898, 257338.927099999040365 ], [ 361183.301899999380112, 257353.691899999976158 ], [ 361199.732500001788139, 257370.360700000077486 ], [ 361179.950800001621246, 257402.011399999260902 ], [ 361203.491499997675419, 257397.487100001424551 ], [ 361209.981499999761581, 257392.896200001239777 ], [ 361218.17230000346899, 257377.975600000470877 ], [ 361220.659599997103214, 257369.974399998784065 ], [ 361224.766699999570847, 257361.142099998891354 ], [ 361191.802799999713898, 257338.927099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501014900", "MAP": "D9-8410-T010", "PARCEL_NAM": "1-32A", "ACRE": ".26", "LONGITUDE": -64.908987, "LATITUDE": 18.34789253, "OBJECTID_1": 19701, "PARCEL_NO_": "105501014900", "Tax_Legal_": "1-32 WINTBERG GT. NORTHSIDE", "Name": "JONES, DUANNE W.", "Address": "PO Box 7303", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59300, "Improved_V": 226900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.08892950399999, "SHAPE_Area": 996.7823085 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361129.489500001072884, 257607.117300000041723 ], [ 361098.467299997806549, 257609.832100000232458 ], [ 361091.084600001573563, 257624.548200000077486 ], [ 361091.050399996340275, 257628.558699999004602 ], [ 361093.451399996876717, 257630.689300000667572 ], [ 361113.571400001645088, 257635.286899998784065 ], [ 361132.060900002717972, 257641.982099998742342 ], [ 361129.90089999884367, 257611.56700000166893 ], [ 361129.489500001072884, 257607.117300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021400", "MAP": "D9-1082-T72", "PARCEL_NAM": "1F", "ACRE": "1.15", "LONGITUDE": -64.90716328000001, "LATITUDE": 18.34467313, "OBJECTID_1": 19861, "PARCEL_NO_": "105502021400", "Tax_Legal_": "1-F ESTATE WINTBERG No.3 GREAT NORTHSIDE QTR.", "Name": "PEDRAM, HOOMAN & GENEVIEVE RYAN", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120800, "Improved_V": 528400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.66067635399997, "SHAPE_Area": 4776.6908467200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361255.420999996364117, 257285.476100001484156 ], [ 361269.468099996447563, 257319.922499999403954 ], [ 361276.840599998831749, 257312.127599999308586 ], [ 361283.613899998366833, 257308.105900000780821 ], [ 361292.978799998760223, 257305.127300001680851 ], [ 361326.881700001657009, 257300.971799999475479 ], [ 361332.572599999606609, 257295.530000001192093 ], [ 361346.371699996292591, 257284.877099998295307 ], [ 361347.512699998915195, 257284.010299999266863 ], [ 361346.117799997329712, 257266.741700001060963 ], [ 361345.757799997925758, 257262.285100001841784 ], [ 361341.279500000178814, 257220.029699999839067 ], [ 361328.401900000870228, 257217.180100001394749 ], [ 361310.693599998950958, 257213.446600001305342 ], [ 361281.695100001990795, 257209.831799998879433 ], [ 361296.867600001394749, 257227.265599999576807 ], [ 361307.344300001859665, 257227.984600000083447 ], [ 361321.696099996566772, 257247.100499998778105 ], [ 361316.7449000030756, 257260.358899999409914 ], [ 361303.872699998319149, 257256.875999998301268 ], [ 361293.288099996745586, 257268.821699999272823 ], [ 361286.812399998307228, 257271.723999999463558 ], [ 361255.420999996364117, 257285.476100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021500", "MAP": "D9-1082-T72", "PARCEL_NAM": "1F-1", "ACRE": "1.11", "LONGITUDE": -64.90752254, "LATITUDE": 18.34444632, "OBJECTID_1": 19862, "PARCEL_NO_": "105502021500", "Tax_Legal_": "1F-1 WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "LYNCH, LORRAINE & JOHN", "Address": "3582 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.59630726500001, "SHAPE_Area": 4346.2426418200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361225.994999997317791, 257213.31700000166893 ], [ 361255.420999996364117, 257285.476100001484156 ], [ 361286.812399998307228, 257271.723999999463558 ], [ 361293.288099996745586, 257268.821699999272823 ], [ 361303.872699998319149, 257256.875999998301268 ], [ 361316.7449000030756, 257260.358899999409914 ], [ 361321.696099996566772, 257247.100499998778105 ], [ 361307.344300001859665, 257227.984600000083447 ], [ 361296.867600001394749, 257227.265599999576807 ], [ 361281.695100001990795, 257209.831799998879433 ], [ 361266.389600001275539, 257208.017700001597404 ], [ 361242.155199997127056, 257213.096700001507998 ], [ 361225.994999997317791, 257213.31700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501016100", "MAP": "D9-6654-T99", "PARCEL_NAM": "1E-1", "ACRE": ".503", "LONGITUDE": -64.90811631, "LATITUDE": 18.34524056, "OBJECTID_1": 19707, "PARCEL_NO_": "105501016100", "Tax_Legal_": "1E-1 WINTBERG 3 GREAT NORTHSIDE QTR", "Name": "HARRIGAN, TROY", "Address": "PO BOX 306825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.23383558399999, "SHAPE_Area": 2044.5293899599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361212.410999998450279, 257305.584300000220537 ], [ 361211.858900003135204, 257305.142599999904633 ], [ 361170.556000001728535, 257315.287099998444319 ], [ 361168.643100000917912, 257323.319200001657009 ], [ 361191.802799999713898, 257338.927099999040365 ], [ 361224.766699999570847, 257361.142099998891354 ], [ 361233.192500002682209, 257348.600900001823902 ], [ 361233.025600001215935, 257344.512600000947714 ], [ 361233.87219999730587, 257339.009199999272823 ], [ 361235.988899998366833, 257328.002599999308586 ], [ 361237.682199999690056, 257318.90089999884367 ], [ 361239.375600002706051, 257313.397599998861551 ], [ 361240.645599998533726, 257311.069200001657009 ], [ 361239.587200000882149, 257309.799199998378754 ], [ 361237.470600001513958, 257310.645899999886751 ], [ 361207.625600002706051, 257322.287599999457598 ], [ 361205.932199999690056, 257322.287599999457598 ], [ 361204.6621999964118, 257320.594200000166893 ], [ 361204.238899998366833, 257318.6891999989748 ], [ 361204.6621999964118, 257316.14919999986887 ], [ 361206.567199997603893, 257313.185899998992682 ], [ 361212.410999998450279, 257305.584300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013800", "MAP": "D9-8666-T012", "PARCEL_NAM": "1E REM", "ACRE": ".60", "LONGITUDE": -64.9077453, "LATITUDE": 18.34493739, "OBJECTID_1": 19691, "PARCEL_NO_": "105501013800", "Tax_Legal_": "1E REM & 1E-A ROW WINTBERG 3 GREAT NORTHSIDE QTR", "Name": "HARRIGAN, TROY", "Address": "PO BOX 306825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.52910651899998, "SHAPE_Area": 1410.7211293800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361237.810400001704693, 257242.290899999439716 ], [ 361227.522200003266335, 257252.86089999973774 ], [ 361230.697200000286102, 257253.072599999606609 ], [ 361233.87219999730587, 257253.919199999421835 ], [ 361237.470600001513958, 257256.882599998265505 ], [ 361240.433899998664856, 257260.692600000649691 ], [ 361241.703900001943111, 257265.984200000762939 ], [ 361241.492200002074242, 257273.180900000035763 ], [ 361241.068899996578693, 257277.625900000333786 ], [ 361239.375600002706051, 257282.070900000631809 ], [ 361236.4121999964118, 257286.9391999989748 ], [ 361224.982199996709824, 257301.332600001245737 ], [ 361224.135600000619888, 257302.8141999989748 ], [ 361223.712200000882149, 257304.084199998527765 ], [ 361224.982199996709824, 257305.142599999904633 ], [ 361225.828900001943111, 257305.354200001806021 ], [ 361239.163900002837181, 257301.120900001376867 ], [ 361243.397200003266335, 257299.427600000053644 ], [ 361245.090599998831749, 257299.427600000053644 ], [ 361246.360600002110004, 257300.27419999986887 ], [ 361247.20719999819994, 257301.967599999159575 ], [ 361247.20719999819994, 257305.565900001674891 ], [ 361246.995600000023842, 257308.952599998563528 ], [ 361245.725599996745586, 257314.032600000500679 ], [ 361244.243900001049042, 257317.842599999159575 ], [ 361242.762199997901917, 257324.192600000649691 ], [ 361242.127199999988079, 257328.637600000947714 ], [ 361241.492200002074242, 257334.77589999884367 ], [ 361241.23480000346899, 257338.895199999213219 ], [ 361251.652199998497963, 257329.907600000500679 ], [ 361264.352200001478195, 257322.710900001227856 ], [ 361269.468099996447563, 257319.922499999403954 ], [ 361255.420999996364117, 257285.476100001484156 ], [ 361237.810400001704693, 257242.290899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501013800", "MAP": "D9-6654-T99", "PARCEL_NAM": "ROW 1E-A", "ACRE": ".451", "LONGITUDE": -64.90792736, "LATITUDE": 18.34491417, "OBJECTID_1": 19691, "PARCEL_NO_": "105501013800", "Tax_Legal_": "1E REM & 1E-A ROW WINTBERG 3 GREAT NORTHSIDE QTR", "Name": "HARRIGAN, TROY", "Address": "PO BOX 306825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 345.62866725700002, "SHAPE_Area": 1358.85039562 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361227.522200003266335, 257252.86089999973774 ], [ 361224.770599998533726, 257250.532600000500679 ], [ 361223.923900000751019, 257249.474199999123812 ], [ 361222.653899997472763, 257244.394200000911951 ], [ 361217.785599999129772, 257245.240899998694658 ], [ 361217.785599999129772, 257247.992600001394749 ], [ 361216.515600003302097, 257251.379200000315905 ], [ 361215.033900000154972, 257252.86089999973774 ], [ 361212.282200001180172, 257252.86089999973774 ], [ 361212.070600003004074, 257264.079199999570847 ], [ 361228.792199999094009, 257262.174199998378754 ], [ 361231.120600000023842, 257263.020899999886751 ], [ 361233.448899999260902, 257264.714200001209974 ], [ 361234.718900002539158, 257267.254200000315905 ], [ 361234.930600002408028, 257270.429200001060963 ], [ 361234.930600002408028, 257272.969200000166893 ], [ 361234.507200002670288, 257275.720899999141693 ], [ 361232.602200001478195, 257279.319200001657009 ], [ 361206.567199997603893, 257313.185899998992682 ], [ 361204.6621999964118, 257316.14919999986887 ], [ 361204.238899998366833, 257318.6891999989748 ], [ 361204.6621999964118, 257320.594200000166893 ], [ 361205.932199999690056, 257322.287599999457598 ], [ 361207.625600002706051, 257322.287599999457598 ], [ 361237.470600001513958, 257310.645899999886751 ], [ 361239.587200000882149, 257309.799199998378754 ], [ 361240.645599998533726, 257311.069200001657009 ], [ 361239.375600002706051, 257313.397599998861551 ], [ 361237.682199999690056, 257318.90089999884367 ], [ 361235.988899998366833, 257328.002599999308586 ], [ 361233.87219999730587, 257339.009199999272823 ], [ 361233.025600001215935, 257344.512600000947714 ], [ 361233.192500002682209, 257348.600900001823902 ], [ 361233.237199999392033, 257348.534200001507998 ], [ 361240.857199996709824, 257339.220899999141693 ], [ 361241.23480000346899, 257338.895199999213219 ], [ 361241.492200002074242, 257334.77589999884367 ], [ 361242.127199999988079, 257328.637600000947714 ], [ 361242.762199997901917, 257324.192600000649691 ], [ 361244.243900001049042, 257317.842599999159575 ], [ 361245.725599996745586, 257314.032600000500679 ], [ 361246.995600000023842, 257308.952599998563528 ], [ 361247.20719999819994, 257305.565900001674891 ], [ 361247.20719999819994, 257301.967599999159575 ], [ 361246.360600002110004, 257300.27419999986887 ], [ 361245.090599998831749, 257299.427600000053644 ], [ 361243.397200003266335, 257299.427600000053644 ], [ 361239.163900002837181, 257301.120900001376867 ], [ 361225.828900001943111, 257305.354200001806021 ], [ 361224.982199996709824, 257305.142599999904633 ], [ 361223.712200000882149, 257304.084199998527765 ], [ 361224.135600000619888, 257302.8141999989748 ], [ 361224.982199996709824, 257301.332600001245737 ], [ 361236.4121999964118, 257286.9391999989748 ], [ 361239.375600002706051, 257282.070900000631809 ], [ 361241.068899996578693, 257277.625900000333786 ], [ 361241.492200002074242, 257273.180900000035763 ], [ 361241.703900001943111, 257265.984200000762939 ], [ 361240.433899998664856, 257260.692600000649691 ], [ 361237.470600001513958, 257256.882599998265505 ], [ 361233.87219999730587, 257253.919199999421835 ], [ 361230.697200000286102, 257253.072599999606609 ], [ 361227.522200003266335, 257252.86089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501016300", "MAP": "D9-6654-T99", "PARCEL_NAM": "1E-3", "ACRE": ".549", "LONGITUDE": -64.90812373, "LATITUDE": 18.34442203, "OBJECTID_1": 19709, "PARCEL_NO_": "105501016300", "Tax_Legal_": "1E-3 WINTBERG 3 GREAT NORTHSIDE QTR", "Name": "HARRIGAN, TROY", "Address": "PO BOX 306825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.942158608, "SHAPE_Area": 1897.94673511 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361181.927500002086163, 257266.819499999284744 ], [ 361212.070600003004074, 257264.079199999570847 ], [ 361212.282200001180172, 257252.86089999973774 ], [ 361215.033900000154972, 257252.86089999973774 ], [ 361216.515600003302097, 257251.379200000315905 ], [ 361217.785599999129772, 257247.992600001394749 ], [ 361217.785599999129772, 257245.240899998694658 ], [ 361222.653899997472763, 257244.394200000911951 ], [ 361223.923900000751019, 257249.474199999123812 ], [ 361224.770599998533726, 257250.532600000500679 ], [ 361227.522200003266335, 257252.86089999973774 ], [ 361237.810400001704693, 257242.290899999439716 ], [ 361225.994999997317791, 257213.31700000166893 ], [ 361222.80009999871254, 257213.360500000417233 ], [ 361209.865000002086163, 257217.265399999916553 ], [ 361199.388300001621246, 257216.546399999409914 ], [ 361192.927000001072884, 257217.760099999606609 ], [ 361185.378899998962879, 257251.895399998873472 ], [ 361181.927500002086163, 257266.819499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501016200", "MAP": "D9-6654-T99", "PARCEL_NAM": "1E-2", "ACRE": ".538", "LONGITUDE": -64.9081826, "LATITUDE": 18.34484342, "OBJECTID_1": 19708, "PARCEL_NO_": "105501016200", "Tax_Legal_": "1E-2 WINTBERT 3 GREAT NORTHSIDE QTR", "Name": "HARRIGAN, TROY", "Address": "PO BOX 306825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 80400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.021709461, "SHAPE_Area": 2197.5387912900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361170.556000001728535, 257315.287099998444319 ], [ 361211.858900003135204, 257305.142599999904633 ], [ 361212.410999998450279, 257305.584300000220537 ], [ 361232.602200001478195, 257279.319200001657009 ], [ 361234.507200002670288, 257275.720899999141693 ], [ 361234.930600002408028, 257272.969200000166893 ], [ 361234.930600002408028, 257270.429200001060963 ], [ 361234.718900002539158, 257267.254200000315905 ], [ 361233.448899999260902, 257264.714200001209974 ], [ 361231.120600000023842, 257263.020899999886751 ], [ 361228.792199999094009, 257262.174199998378754 ], [ 361212.070600003004074, 257264.079199999570847 ], [ 361181.927500002086163, 257266.819499999284744 ], [ 361176.169600002467632, 257291.716699998825788 ], [ 361170.556000001728535, 257315.287099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012700", "MAP": "D9-4116-T87", "PARCEL_NAM": "11-B", "ACRE": "1.05", "LONGITUDE": -64.90074817, "LATITUDE": 18.33437772, "OBJECTID_1": 20406, "PARCEL_NO_": "105504012700", "Tax_Legal_": "11-B ESTATE NEW HERNHUT 5A NEW QUARTER", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 253200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 468.25432637, "SHAPE_Area": 8440.3554769900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362051.564699999988079, 256082.017000000923872 ], [ 361986.35530000180006, 256082.991300001740456 ], [ 361985.455200001597404, 256097.429099999368191 ], [ 361982.955300003290176, 256106.907900001853704 ], [ 361977.210400000214577, 256118.682100001722574 ], [ 361968.258299998939037, 256128.319099999964237 ], [ 361949.596199996769428, 256141.887499999254942 ], [ 361911.548500001430511, 256159.307900000363588 ], [ 361909.12950000166893, 256159.288100000470877 ], [ 361891.268399998545647, 256173.496300000697374 ], [ 361888.808100000023842, 256178.331300001591444 ], [ 361889.589199997484684, 256181.293000001460314 ], [ 361892.807300001382828, 256182.163699999451637 ], [ 361982.455399997532368, 256165.587799999862909 ], [ 362001.826700001955032, 256163.424300000071526 ], [ 362018.761100001633167, 256163.351799998432398 ], [ 362030.042199999094009, 256164.288499999791384 ], [ 362053.391099996864796, 256168.49040000140667 ], [ 362055.828000001609325, 256166.399399999529123 ], [ 362056.864500001072884, 256139.387899998575449 ], [ 362052.353900000452995, 256100.932000000029802 ], [ 362051.564699999988079, 256082.017000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603019600", "MAP": "A9-632-T004", "PARCEL_NAM": "36", "ACRE": "22.975", "LONGITUDE": -64.89389704, "LATITUDE": 18.33605956, "OBJECTID_1": 21539, "PARCEL_NO_": "105603019600", "Tax_Legal_": "36 ESTATE CHARLOTTE AMALIE #3 NEW QTR", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 1028100, "Improved_V": 248000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1316.9819056, "SHAPE_Area": 78408.292291599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362817.760099999606609, 256451.670299999415874 ], [ 362861.047899998724461, 256362.112199999392033 ], [ 362919.597099997103214, 256316.658399999141693 ], [ 362919.535400003194809, 256316.524700000882149 ], [ 362864.33330000191927, 256187.7804000005126 ], [ 362863.625500001013279, 256187.998500000685453 ], [ 362843.424500003457069, 256192.899399999529123 ], [ 362815.176600001752377, 256195.834600001573563 ], [ 362800.663000002503395, 256195.715799998492002 ], [ 362787.770999997854233, 256194.554800000041723 ], [ 362770.028499998152256, 256194.831799998879433 ], [ 362789.194200001657009, 256230.024999998509884 ], [ 362742.277999997138977, 256244.159099999815226 ], [ 362751.757399998605251, 256257.166000001132488 ], [ 362745.290700003504753, 256259.012899998575449 ], [ 362739.707599997520447, 256251.78999999910593 ], [ 362736.530900001525879, 256246.064500000327826 ], [ 362734.131800003349781, 256243.722800001502037 ], [ 362722.198899999260902, 256224.6266999989748 ], [ 362719.82490000128746, 256219.329900000244379 ], [ 362712.66160000115633, 256208.29450000077486 ], [ 362710.26070000231266, 256206.163899999111891 ], [ 362706.232699997723103, 256205.708700001239777 ], [ 362672.30460000038147, 256212.819299999624491 ], [ 362644.854099996387959, 256216.816500000655651 ], [ 362613.38629999756813, 256219.092099998146296 ], [ 362495.79110000282526, 256219.122699998319149 ], [ 362492.910700000822544, 256237.497499998658895 ], [ 362492.816100001335144, 256248.766499999910593 ], [ 362498.660199999809265, 256260.085499998182058 ], [ 362514.712399996817112, 256277.393300000578165 ], [ 362535.596500001847744, 256297.96169999986887 ], [ 362546.852799996733665, 256307.716099999845028 ], [ 362558.11370000243187, 256316.933800000697374 ], [ 362571.538500003516674, 256325.633099999278784 ], [ 362582.803900003433228, 256334.314300000667572 ], [ 362591.360799998044968, 256344.046000000089407 ], [ 362593.997000001370907, 256351.581300001591444 ], [ 362597.137100003659725, 256363.414200000464916 ], [ 362601.325400002300739, 256379.01240000128746 ], [ 362603.94370000064373, 256388.694200001657009 ], [ 362607.128799997270107, 256395.160799998790026 ], [ 362614.587899997830391, 256407.029899999499321 ], [ 362626.887800000607967, 256421.086300000548363 ], [ 362631.175300002098083, 256424.878899998962879 ], [ 362633.303199999034405, 256428.653299998492002 ], [ 362636.97410000115633, 256441.563900001347065 ], [ 362641.670699998736382, 256460.922899998724461 ], [ 362650.672700002789497, 256481.928100001066923 ], [ 362655.931599996984005, 256498.608500000089407 ], [ 362662.035599999129772, 256509.509899999946356 ], [ 362817.760099999606609, 256451.670299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010400", "MAP": "A9-632-T004", "PARCEL_NAM": "34", "ACRE": null, "LONGITUDE": -64.89529313, "LATITUDE": 18.33634617, "OBJECTID_1": 21502, "PARCEL_NO_": "105603010400", "Tax_Legal_": "28-1 REM ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "HEIRS OF SAMMY E.HARTMAN,JR.", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 279400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 733.73401093899997, "SHAPE_Area": 3854.6023883900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362482.328199997544289, 256247.330200001597404 ], [ 362483.021200001239777, 256254.931200001388788 ], [ 362483.814999997615814, 256259.429099999368191 ], [ 362486.241300001740456, 256262.595300000160933 ], [ 362490.471900001168251, 256270.749899998307228 ], [ 362508.157300002872944, 256286.461500000208616 ], [ 362534.935000002384186, 256312.445900000631809 ], [ 362544.594200000166893, 256319.503600001335144 ], [ 362556.408399999141693, 256327.11600000038743 ], [ 362566.607500001788139, 256334.178199999034405 ], [ 362576.239699997007847, 256344.455600000917912 ], [ 362584.211599998176098, 256360.078200001269579 ], [ 362587.905100002884865, 256369.776500001549721 ], [ 362589.412100002169609, 256383.20549999922514 ], [ 362598.468299999833107, 256397.771299999207258 ], [ 362621.952299997210503, 256430.167899999767542 ], [ 362626.167599998414516, 256443.075599998235703 ], [ 362629.797899998724461, 256460.815699998289347 ], [ 362640.365500003099442, 256488.273800000548363 ], [ 362652.445600003004074, 256513.071899998933077 ], [ 362662.035599999129772, 256509.509899999946356 ], [ 362655.931599996984005, 256498.608500000089407 ], [ 362650.672700002789497, 256481.928100001066923 ], [ 362641.670699998736382, 256460.922899998724461 ], [ 362636.97410000115633, 256441.563900001347065 ], [ 362633.303199999034405, 256428.653299998492002 ], [ 362631.175300002098083, 256424.878899998962879 ], [ 362626.887800000607967, 256421.086300000548363 ], [ 362614.587899997830391, 256407.029899999499321 ], [ 362607.128799997270107, 256395.160799998790026 ], [ 362603.94370000064373, 256388.694200001657009 ], [ 362601.325400002300739, 256379.01240000128746 ], [ 362597.137100003659725, 256363.414200000464916 ], [ 362593.997000001370907, 256351.581300001591444 ], [ 362591.360799998044968, 256344.046000000089407 ], [ 362582.803900003433228, 256334.314300000667572 ], [ 362571.538500003516674, 256325.633099999278784 ], [ 362558.11370000243187, 256316.933800000697374 ], [ 362546.852799996733665, 256307.716099999845028 ], [ 362535.596500001847744, 256297.96169999986887 ], [ 362514.712399996817112, 256277.393300000578165 ], [ 362498.660199999809265, 256260.085499998182058 ], [ 362492.816100001335144, 256248.766499999910593 ], [ 362492.910700000822544, 256237.497499998658895 ], [ 362495.79110000282526, 256219.122699998319149 ], [ 362488.398900002241135, 256219.124600000679493 ], [ 362478.667499996721745, 256218.245099999010563 ], [ 362482.144599996507168, 256233.650499999523163 ], [ 362482.041000001132488, 256245.992800001055002 ], [ 362482.328199997544289, 256247.330200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603013500", "MAP": "A9-632-T004", "PARCEL_NAM": "37", "ACRE": "5.542", "LONGITUDE": -64.89279482000001, "LATITUDE": 18.33743266, "OBJECTID_1": 21530, "PARCEL_NO_": "105603013500", "Tax_Legal_": "37 ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 201000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1244.11212613, "SHAPE_Area": 32537.996988800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362807.670400001108646, 256559.98930000141263 ], [ 362833.096600003540516, 256541.722500000149012 ], [ 362859.387199997901917, 256580.092599999159575 ], [ 362864.738799996674061, 256579.252199999988079 ], [ 362881.438699997961521, 256583.685899998992682 ], [ 362894.908399999141693, 256587.019200000911951 ], [ 362922.545699998736382, 256574.908900000154972 ], [ 362935.791599996387959, 256550.890999998897314 ], [ 362907.654700003564358, 256509.643199998885393 ], [ 362899.690499998629093, 256497.9679000005126 ], [ 362892.521799996495247, 256487.565600000321865 ], [ 362890.135300002992153, 256483.746399998664856 ], [ 362878.218599997460842, 256462.750599998980761 ], [ 362872.75959999859333, 256440.963300000876188 ], [ 362873.946299999952316, 256421.974300000816584 ], [ 362885.191200003027916, 256387.909099999815226 ], [ 362943.73030000180006, 256329.369899999350309 ], [ 362959.128300003707409, 256322.798900000751019 ], [ 362967.663699999451637, 256319.156399998813868 ], [ 363015.723499998450279, 256271.888900000602007 ], [ 363011.318000003695488, 256267.734099999070168 ], [ 362992.920299999415874, 256250.273800000548363 ], [ 362976.79450000077486, 256262.321699999272823 ], [ 362970.617899999022484, 256277.049199998378754 ], [ 362919.597099997103214, 256316.658399999141693 ], [ 362861.047899998724461, 256362.112199999392033 ], [ 362817.760099999606609, 256451.670299999415874 ], [ 362662.975000001490116, 256509.160999998450279 ], [ 362670.85869999974966, 256521.273400001227856 ], [ 362682.074199996888638, 256535.857200000435114 ], [ 362691.184399999678135, 256543.983600001782179 ], [ 362717.5253000035882, 256557.621300000697374 ], [ 362743.870800003409386, 256570.72239999845624 ], [ 362765.406999997794628, 256577.879999998956919 ], [ 362776.172799997031689, 256581.727099999785423 ], [ 362793.362899996340275, 256592.067999999970198 ], [ 362807.862700000405312, 256601.313000001013279 ], [ 362832.305299997329712, 256592.668000001460314 ], [ 362807.670400001108646, 256559.98930000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603012800", "MAP": "A9-463-T94", "PARCEL_NAM": "31", "ACRE": null, "LONGITUDE": -64.89280527, "LATITUDE": 18.33823469, "OBJECTID_1": 21525, "PARCEL_NO_": "105603012800", "Tax_Legal_": "31 ESTATE CHARLOTTE AMALIE No.3 NEW QTR.", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 41200, "Improved_V": 12500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.85144620899999, "SHAPE_Area": 1314.2678552100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362859.387199997901917, 256580.092599999159575 ], [ 362833.096600003540516, 256541.722500000149012 ], [ 362807.670400001108646, 256559.98930000141263 ], [ 362832.305299997329712, 256592.668000001460314 ], [ 362836.021799996495247, 256591.35359999909997 ], [ 362855.007600001990795, 256580.780299998819828 ], [ 362859.387199997901917, 256580.092599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603019800", "MAP": "A9-632-T004", "PARCEL_NAM": "34 ROW", "ACRE": "3.03", "LONGITUDE": -64.89372094, "LATITUDE": 18.33947222, "OBJECTID_1": 21541, "PARCEL_NO_": "105603019800", "Tax_Legal_": "34 ESTATE CHARLOTT AMALIE R.O.W. #3 NEW QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1105.71764568, "SHAPE_Area": 7636.8734225400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362687.154500000178814, 256925.085700001567602 ], [ 362703.924199998378754, 256925.186799999326468 ], [ 362706.87950000166893, 256919.839400000870228 ], [ 362713.679999999701977, 256900.828299999237061 ], [ 362714.522600002586842, 256888.367600001394749 ], [ 362713.201099999248981, 256870.021600000560284 ], [ 362713.373700000345707, 256849.487900000065565 ], [ 362712.089199997484684, 256826.741700001060963 ], [ 362715.901600003242493, 256812.105799999088049 ], [ 362731.13849999755621, 256755.028599999845028 ], [ 362747.567500002682209, 256731.697900000959635 ], [ 362760.995999999344349, 256714.209100000560284 ], [ 362766.990900002419949, 256703.258499998599291 ], [ 362772.979699999094009, 256693.041200000792742 ], [ 362784.139300003647804, 256682.13399999961257 ], [ 362805.640600003302097, 256669.846900001168251 ], [ 362815.312200002372265, 256660.394000001251698 ], [ 362816.892700001597404, 256647.939399998635054 ], [ 362818.565800003707409, 256624.484499998390675 ], [ 362813.512100003659725, 256611.240600001066923 ], [ 362807.862700000405312, 256601.313000001013279 ], [ 362793.362899996340275, 256592.067999999970198 ], [ 362776.172799997031689, 256581.727099999785423 ], [ 362765.406999997794628, 256577.879999998956919 ], [ 362743.870800003409386, 256570.72239999845624 ], [ 362717.5253000035882, 256557.621300000697374 ], [ 362691.184399999678135, 256543.983600001782179 ], [ 362682.074199996888638, 256535.857200000435114 ], [ 362670.85869999974966, 256521.273400001227856 ], [ 362662.975000001490116, 256509.160999998450279 ], [ 362651.081399999558926, 256513.578600000590086 ], [ 362659.9695999994874, 256531.474899999797344 ], [ 362666.529700003564358, 256541.064399998635054 ], [ 362677.522900000214577, 256549.957699999213219 ], [ 362697.351400002837181, 256561.125500001013279 ], [ 362723.063799999654293, 256574.543000001460314 ], [ 362742.172799997031689, 256583.504599999636412 ], [ 362783.342200003564358, 256601.452599998563528 ], [ 362795.804700002074242, 256611.091699998825788 ], [ 362800.169900000095367, 256618.462499998509884 ], [ 362804.498000003397465, 256630.233399998396635 ], [ 362805.112499997019768, 256644.906700000166893 ], [ 362802.087200000882149, 256653.682100001722574 ], [ 362796.123099997639656, 256660.965999998152256 ], [ 362774.621799997985363, 256673.253100000321865 ], [ 362758.260600000619888, 256688.517000000923872 ], [ 362746.996200002729893, 256711.891199998557568 ], [ 362734.305500000715256, 256729.386199999600649 ], [ 362719.321299999952316, 256756.396099999547005 ], [ 362699.719200000166893, 256806.10249999910593 ], [ 362693.67509999871254, 256822.919900000095367 ], [ 362693.471600003540516, 256847.120400000363588 ], [ 362696.176299996674061, 256876.478999998420477 ], [ 362698.998000003397465, 256891.904100000858307 ], [ 362694.404799997806549, 256911.667199999094009 ], [ 362687.154500000178814, 256925.085700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603013600", "MAP": "A9-651-T005", "PARCEL_NAM": "38", "ACRE": "31.489", "LONGITUDE": -64.89520433, "LATITUDE": 18.34010458, "OBJECTID_1": 21531, "PARCEL_NO_": "105603013600", "Tax_Legal_": "38 ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 491400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1594.11520365, "SHAPE_Area": 132602.73314299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362439.108400002121925, 256925.404800001531839 ], [ 362446.753700003027916, 256923.853300001472235 ], [ 362461.040500000119209, 257087.840999998152256 ], [ 362464.08110000193119, 257085.886799998581409 ], [ 362518.397200003266335, 257051.923099998384714 ], [ 362567.038500003516674, 257021.501499999314547 ], [ 362596.223999999463558, 257003.164200000464916 ], [ 362620.544600002467632, 256987.953400000929832 ], [ 362624.576200000941753, 256987.986400000751019 ], [ 362632.029399998486042, 256988.186799999326468 ], [ 362631.893700003623962, 256974.947200000286102 ], [ 362643.735399998724461, 256970.646299999207258 ], [ 362655.589400000870228, 256964.878800000995398 ], [ 362679.414599999785423, 256939.410199999809265 ], [ 362694.404799997806549, 256911.667199999094009 ], [ 362698.998000003397465, 256891.904100000858307 ], [ 362696.176299996674061, 256876.478999998420477 ], [ 362693.471600003540516, 256847.120400000363588 ], [ 362693.67509999871254, 256822.919900000095367 ], [ 362699.719200000166893, 256806.10249999910593 ], [ 362719.321299999952316, 256756.396099999547005 ], [ 362734.305500000715256, 256729.386199999600649 ], [ 362746.996200002729893, 256711.891199998557568 ], [ 362758.260600000619888, 256688.517000000923872 ], [ 362774.621799997985363, 256673.253100000321865 ], [ 362796.123099997639656, 256660.965999998152256 ], [ 362802.087200000882149, 256653.682100001722574 ], [ 362805.112499997019768, 256644.906700000166893 ], [ 362804.498000003397465, 256630.233399998396635 ], [ 362800.169900000095367, 256618.462499998509884 ], [ 362795.804700002074242, 256611.091699998825788 ], [ 362783.342200003564358, 256601.452599998563528 ], [ 362742.172799997031689, 256583.504599999636412 ], [ 362723.063799999654293, 256574.543000001460314 ], [ 362697.351400002837181, 256561.125500001013279 ], [ 362677.522900000214577, 256549.957699999213219 ], [ 362666.529700003564358, 256541.064399998635054 ], [ 362659.9695999994874, 256531.474899999797344 ], [ 362651.081399999558926, 256513.578600000590086 ], [ 362622.782899998128414, 256524.618500001728535 ], [ 362601.470899999141693, 256554.499400001019239 ], [ 362529.885999999940395, 256591.555700000375509 ], [ 362406.057800002396107, 256602.84569999948144 ], [ 362406.102099999785423, 256603.274599999189377 ], [ 362418.006899997591972, 256720.317800000309944 ], [ 362426.913099996745586, 256810.738800000399351 ], [ 362436.607500001788139, 256903.277100000530481 ], [ 362439.108400002121925, 256925.404800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603013400", "MAP": "A9-632-T004", "PARCEL_NAM": "33", "ACRE": null, "LONGITUDE": -64.89219971, "LATITUDE": 18.34010657, "OBJECTID_1": 21529, "PARCEL_NO_": "105603013400", "Tax_Legal_": "33 REM ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 674400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1297.6502722099999, "SHAPE_Area": 96644.742018599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363104.513300001621246, 256833.954199999570847 ], [ 362935.791599996387959, 256550.890999998897314 ], [ 362922.545699998736382, 256574.908900000154972 ], [ 362894.908399999141693, 256587.019200000911951 ], [ 362881.438699997961521, 256583.685899998992682 ], [ 362864.738799996674061, 256579.252199999988079 ], [ 362855.007600001990795, 256580.780299998819828 ], [ 362836.021799996495247, 256591.35359999909997 ], [ 362807.862700000405312, 256601.313000001013279 ], [ 362813.512100003659725, 256611.240600001066923 ], [ 362818.565800003707409, 256624.484499998390675 ], [ 362816.892700001597404, 256647.939399998635054 ], [ 362815.312200002372265, 256660.394000001251698 ], [ 362805.640600003302097, 256669.846900001168251 ], [ 362784.139300003647804, 256682.13399999961257 ], [ 362772.979699999094009, 256693.041200000792742 ], [ 362766.990900002419949, 256703.258499998599291 ], [ 362760.995999999344349, 256714.209100000560284 ], [ 362747.567500002682209, 256731.697900000959635 ], [ 362731.13849999755621, 256755.028599999845028 ], [ 362715.901600003242493, 256812.105799999088049 ], [ 362712.089199997484684, 256826.741700001060963 ], [ 362713.373700000345707, 256849.487900000065565 ], [ 362713.201099999248981, 256870.021600000560284 ], [ 362714.522600002586842, 256888.367600001394749 ], [ 362713.679999999701977, 256900.828299999237061 ], [ 362706.87950000166893, 256919.839400000870228 ], [ 362703.924199998378754, 256925.186799999326468 ], [ 362804.225500002503395, 256925.791799999773502 ], [ 362954.803999997675419, 256918.991599999368191 ], [ 363117.805299997329712, 256858.360300000756979 ], [ 363104.513300001621246, 256833.954199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89434105, "LATITUDE": 18.34177324, "OBJECTID_1": 21502, "PARCEL_NO_": "105603010400", "Tax_Legal_": "28-1 REM ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "HEIRS OF SAMMY E.HARTMAN,JR.", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 279400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.38751888100001, "SHAPE_Area": 1196.1599750099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362703.924199998378754, 256925.186799999326468 ], [ 362687.154500000178814, 256925.085700001567602 ], [ 362679.414599999785423, 256939.410199999809265 ], [ 362655.589400000870228, 256964.878800000995398 ], [ 362643.735399998724461, 256970.646299999207258 ], [ 362631.893700003623962, 256974.947200000286102 ], [ 362632.029399998486042, 256988.186799999326468 ], [ 362647.149400003254414, 256988.593299999833107 ], [ 362653.25280000269413, 256979.526999998837709 ], [ 362665.119099996984005, 256972.29280000180006 ], [ 362681.479999996721745, 256957.029100000858307 ], [ 362696.390100002288818, 256938.819499999284744 ], [ 362703.924199998378754, 256925.186799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603012900", "MAP": null, "PARCEL_NAM": "REM of CHARLOTTE AMALIE", "ACRE": null, "LONGITUDE": -64.89181103, "LATITUDE": 18.34161341, "OBJECTID_1": 21526, "PARCEL_NO_": "105603012900", "Tax_Legal_": "REMAINDER CHARLOTTE AMALIE NEW QTR", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 309500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1188.61258107, "SHAPE_Area": 34136.639558700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363186.25900000333786, 256958.519099999219179 ], [ 363145.223600000143051, 256920.947900000959635 ], [ 363153.315099999308586, 256912.03830000013113 ], [ 363147.604900002479553, 256913.076499998569489 ], [ 363117.805299997329712, 256858.360300000756979 ], [ 362954.803999997675419, 256918.991599999368191 ], [ 362804.225500002503395, 256925.791799999773502 ], [ 362703.924199998378754, 256925.186799999326468 ], [ 362696.390100002288818, 256938.819499999284744 ], [ 362681.479999996721745, 256957.029100000858307 ], [ 362665.119099996984005, 256972.29280000180006 ], [ 362653.25280000269413, 256979.526999998837709 ], [ 362647.149400003254414, 256988.593299999833107 ], [ 362669.722499996423721, 256989.200300000607967 ], [ 362690.68299999833107, 256989.793999999761581 ], [ 362714.0625, 256990.407600000500679 ], [ 362735.024800002574921, 256990.790199998766184 ], [ 362757.597900003194809, 256991.397100001573563 ], [ 362775.33500000089407, 256991.753400001674891 ], [ 362797.924300000071526, 256990.46059999987483 ], [ 362819.707400001585484, 256989.161299999803305 ], [ 362841.492200002074242, 256987.650800000876188 ], [ 362866.502300001680851, 256986.166799999773502 ], [ 362875.380699999630451, 256985.184000000357628 ], [ 362887.489799998700619, 256983.594300001859665 ], [ 362910.898000001907349, 256980.830600000917912 ], [ 362931.883699998259544, 256978.469200000166893 ], [ 362954.483800001442432, 256975.910000000149012 ], [ 362975.4712999984622, 256973.337499998509884 ], [ 362985.157899998128414, 256972.150299999862909 ], [ 362998.037299998104572, 256974.788800001144409 ], [ 363000.452600002288818, 256975.230799999088049 ], [ 363013.382399998605251, 256971.959100000560284 ], [ 363025.480700001120567, 256971.635899998247623 ], [ 363047.258299998939037, 256970.969799999147654 ], [ 363066.616999998688698, 256970.2837999984622 ], [ 363094.846900001168251, 256969.459399998188019 ], [ 363103.721799999475479, 256968.898800000548363 ], [ 363110.179499998688698, 256968.107299998402596 ], [ 363116.637199997901917, 256967.315699998289347 ], [ 363165.071599997580051, 256961.168299999088049 ], [ 363186.25900000333786, 256958.519099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603012300", "MAP": "C9-215-T76", "PARCEL_NAM": "M-REM", "ACRE": null, "LONGITUDE": -64.89792256, "LATITUDE": 18.33661537, "OBJECTID_1": 21519, "PARCEL_NO_": "105603012300", "Tax_Legal_": "LOT M EST DONOE NEW QTR", "Name": "BRYAN, MARIO", "Address": "PO Box 12481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 384000, "Improved_V": 96900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1003.05032765, "SHAPE_Area": 50911.322642599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362290.106100000441074, 256213.019499998539686 ], [ 362295.421599999070168, 256279.913899999111891 ], [ 362207.971199996769428, 256280.776900000870228 ], [ 362202.963699996471405, 256296.67850000038743 ], [ 362197.292000003159046, 256314.689399998635054 ], [ 362170.700599998235703, 256407.1418999992311 ], [ 362164.815499998629093, 256435.380199998617172 ], [ 362162.182499997317791, 256460.478799998760223 ], [ 362212.829199999570847, 256478.625199999660254 ], [ 362248.202600002288818, 256491.158100001513958 ], [ 362327.790200002491474, 256519.673900000751019 ], [ 362400.142599999904633, 256545.597300000488758 ], [ 362391.234600000083447, 256455.38740000128746 ], [ 362365.880699999630451, 256213.266699999570847 ], [ 362329.582299999892712, 256214.658300001174212 ], [ 362315.820699997246265, 256214.087000001221895 ], [ 362290.106100000441074, 256213.019499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89360943, "LATITUDE": 18.33357525, "OBJECTID_1": 21552, "PARCEL_NO_": "105603020500", "Tax_Legal_": "8 ESTATE CHARLOTTE AMALIE No.3 NEW QTR.", "Name": "HODGE, JOSEPH E. & ZULMA", "Address": "PO Box 305048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 172600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 650.57227323899997, "SHAPE_Area": 25436.180891700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362820.368400000035763, 255965.016600001603365 ], [ 362684.982199996709824, 255954.691700000315905 ], [ 362674.978100001811981, 256092.582499999552965 ], [ 362674.936800003051758, 256093.150800000876188 ], [ 362674.853200003504753, 256093.182900000363588 ], [ 362671.922899998724461, 256107.26240000128746 ], [ 362701.170699998736382, 256120.495600000023842 ], [ 362722.58110000193119, 256130.182700000703335 ], [ 362730.512699998915195, 256133.771299999207258 ], [ 362754.98870000243187, 256144.845499999821186 ], [ 362755.840999998152256, 256145.231100000441074 ], [ 362819.453000001609325, 256167.126600001007318 ], [ 362819.585799999535084, 256151.541000001132488 ], [ 362819.243400000035763, 256097.076099999248981 ], [ 362820.368400000035763, 255965.016600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603022100", "MAP": "A9-332-T86", "PARCEL_NAM": "28", "ACRE": null, "LONGITUDE": -64.89287054, "LATITUDE": 18.33181294, "OBJECTID_1": 21566, "PARCEL_NO_": "105603022100", "Tax_Legal_": "28-2REM.ESTATE CHARLOTTE AMALIE No.3 NEW QTR.", "Name": "HARTHMAN LEASING II, LLLP", "Address": "Merchants Financial Center", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021814, "Country": "United States", "Land_Value": 603700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1070.20613987, "SHAPE_Area": 63067.684903100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362987.108499996364117, 255985.937100000679493 ], [ 362965.60249999910593, 255864.190900001674891 ], [ 362952.587999999523163, 255817.436200000345707 ], [ 362956.395099997520447, 255789.925299998372793 ], [ 362993.217299997806549, 255769.355999998748302 ], [ 362988.909100003540516, 255750.217300001531839 ], [ 362924.644000001251698, 255739.014400001615286 ], [ 362855.7753000035882, 255743.765799999237061 ], [ 362785.148800000548363, 255744.948600001633167 ], [ 362671.211999997496605, 255774.152300000190735 ], [ 362677.418300002813339, 255801.861999999731779 ], [ 362686.814300000667572, 255929.439399998635054 ], [ 362684.982199996709824, 255954.691700000315905 ], [ 362820.368400000035763, 255965.016600001603365 ], [ 362877.075699999928474, 255969.341299999505281 ], [ 362914.260600000619888, 255972.177099999040365 ], [ 362914.261100001633167, 255972.148800000548363 ], [ 362928.933899998664856, 255972.720600001513958 ], [ 362987.108499996364117, 255985.937100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603020700", "MAP": "D9-7539-T005", "PARCEL_NAM": "9-1", "ACRE": "0.50", "LONGITUDE": -64.8920697, "LATITUDE": 18.33311831, "OBJECTID_1": 21554, "PARCEL_NO_": "105603020700", "Tax_Legal_": "9-1 CHARLOTTE AMALIE NEW QTR", "Name": "HARTHMAN, ARTHUR & ALBERT", "Address": "PO Box 7068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.82973301600001, "SHAPE_Area": 1547.5174558799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362903.413199998438358, 255971.349800001829863 ], [ 362902.844700001180172, 256010.00899999961257 ], [ 362902.501400001347065, 256033.358500000089407 ], [ 362913.091099999845028, 256033.021099999547005 ], [ 362927.872900001704693, 256032.550000000745058 ], [ 362928.933899998664856, 255972.720600001513958 ], [ 362914.261100001633167, 255972.148800000548363 ], [ 362914.260600000619888, 255972.177099999040365 ], [ 362903.413199998438358, 255971.349800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603022000", "MAP": "D9-4158-T87", "PARCEL_NAM": "24-1", "ACRE": "2.79", "LONGITUDE": -64.89161684, "LATITUDE": 18.3336871, "OBJECTID_1": 21565, "PARCEL_NO_": "105603022000", "Tax_Legal_": "24-1 ESTATE CHARLOTTE AMALIE No.3 NEW QTR.", "Name": "HARTHMAN LEASING II, LLLP", "Address": "4608 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 370500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 472.38701512799997, "SHAPE_Area": 11801.555763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363013.490599997341633, 256129.313200000673532 ], [ 362987.108499996364117, 255985.937100000679493 ], [ 362928.933899998664856, 255972.720600001513958 ], [ 362926.938100002706051, 256085.259399998933077 ], [ 362926.381800003349781, 256116.631400000303984 ], [ 362927.490599997341633, 256144.183200001716614 ], [ 362931.247800000011921, 256153.102899998426437 ], [ 362932.467699997127056, 256152.675999999046326 ], [ 362980.173199996352196, 256137.445500001311302 ], [ 363002.740500003099442, 256130.71680000051856 ], [ 363013.490599997341633, 256129.313200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702038700", "MAP": "G9-2150-T72", "PARCEL_NAM": "83A", "ACRE": ".14", "LONGITUDE": -64.86934915000001, "LATITUDE": 18.34211327, "OBJECTID_1": 22553, "PARCEL_NO_": "105702038700", "Tax_Legal_": "83-A SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "FRANCIS, EDWARD A. & JENEE M. JARVIS-FRANCIS", "Address": "6839 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.093487915, "SHAPE_Area": 657.25858077299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365304.228500001132488, 256998.22069999948144 ], [ 365295.142099998891354, 257031.975000001490116 ], [ 365314.143299996852875, 257037.808499999344349 ], [ 365321.60809999704361, 257005.067099999636412 ], [ 365304.228500001132488, 256998.22069999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702038900", "MAP": "G9-2150-T72", "PARCEL_NAM": "83A-4", "ACRE": ".234", "LONGITUDE": -64.87023483, "LATITUDE": 18.341805, "OBJECTID_1": 22555, "PARCEL_NO_": "105702038900", "Tax_Legal_": "83A-4 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "FRANCIS, EDWARD A.", "Address": "6839 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.745537286, "SHAPE_Area": 1031.88257838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365227.890799999237061, 257011.328299999237061 ], [ 365227.354000002145767, 256967.9375 ], [ 365200.680299997329712, 256957.429900001734495 ], [ 365201.870899997651577, 256971.505699999630451 ], [ 365204.124399997293949, 256990.944699998944998 ], [ 365205.078500002622604, 257004.223000001162291 ], [ 365210.520900003612041, 256998.848999999463558 ], [ 365214.81530000269413, 256999.058699999004602 ], [ 365216.722699999809265, 257007.899599999189377 ], [ 365227.890799999237061, 257011.328299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702038800", "MAP": "G9-2150-T72", "PARCEL_NAM": "83A-3", "ACRE": ".238", "LONGITUDE": -64.87000286, "LATITUDE": 18.34189201, "OBJECTID_1": 22554, "PARCEL_NO_": "105702038800", "Tax_Legal_": "83A-3 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HOGAN, WILFRED", "Address": "Hidden Vallley", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.39725540699999, "SHAPE_Area": 1031.8332869599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365250.391099996864796, 257018.236099999397993 ], [ 365253.821099996566772, 256978.363699998706579 ], [ 365227.354000002145767, 256967.9375 ], [ 365227.890799999237061, 257011.328299999237061 ], [ 365250.391099996864796, 257018.236099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036100", "MAP": "G9-2150-T72", "PARCEL_NAM": "83A-2", "ACRE": ".22", "LONGITUDE": -64.86977236, "LATITUDE": 18.34196567, "OBJECTID_1": 22527, "PARCEL_NO_": "105702036100", "Tax_Legal_": "83A-2 ESTATE SMITH BAY 1,2 & 3 EASTEND QTR", "Name": "MONDESIRE, MATTHEW", "Address": "6A-1 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.690698216, "SHAPE_Area": 956.76207128199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365271.435300000011921, 257024.696800000965595 ], [ 365280.532600000500679, 256988.886199999600649 ], [ 365253.821099996566772, 256978.363699998706579 ], [ 365250.391099996864796, 257018.236099999397993 ], [ 365271.435300000011921, 257024.696800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702039700", "MAP": "G9-2150-T72", "PARCEL_NAM": "83A-1", "ACRE": ".20", "LONGITUDE": -64.86954771000001, "LATITUDE": 18.34204632, "OBJECTID_1": 22563, "PARCEL_NO_": "105702039700", "Tax_Legal_": "83A-1 SMITH BAY NOS. 1,2&3 EAST END QTR", "Name": "COULANGES, MONELAS & NAOMIE", "Address": "PO Box 7392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29900, "Improved_V": 14000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.17104746, "SHAPE_Area": 899.9111096 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365295.142099998891354, 257031.975000001490116 ], [ 365304.228500001132488, 256998.22069999948144 ], [ 365280.532600000500679, 256988.886199999600649 ], [ 365271.435300000011921, 257024.696800000965595 ], [ 365295.142099998891354, 257031.975000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702039900", "MAP": "D9-8026-T007", "PARCEL_NAM": "83-10A", "ACRE": "0.29", "LONGITUDE": -64.86922083, "LATITUDE": 18.34343528, "OBJECTID_1": 22565, "PARCEL_NO_": "105702039900", "Tax_Legal_": "83-10A SMITH BAY NO.1,2&3 EAST END QTR", "Name": "SMITH BAY PLAZA LLC", "Address": "PO Box 7395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.856431609, "SHAPE_Area": 1252.33358894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365300.316899999976158, 257177.368299998342991 ], [ 365311.812399998307228, 257189.713899999856949 ], [ 365332.390699997544289, 257173.95719999819994 ], [ 365342.13289999961853, 257166.226500000804663 ], [ 365342.206699997186661, 257157.572200000286102 ], [ 365341.423699997365475, 257154.821600001305342 ], [ 365335.885600000619888, 257142.321699999272823 ], [ 365335.67119999974966, 257141.996300000697374 ], [ 365332.994499996304512, 257137.934099998325109 ], [ 365298.171999998390675, 257166.848799999803305 ], [ 365295.623700000345707, 257172.328000001609325 ], [ 365300.316899999976158, 257177.368299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702040000", "MAP": "D9-8026-T007", "PARCEL_NAM": "83-10B", "ACRE": "0.26", "LONGITUDE": -64.86938722, "LATITUDE": 18.34327546, "OBJECTID_1": 22566, "PARCEL_NO_": "105702040000", "Tax_Legal_": "83-10B SMITH BAY NO.1,2&3 EAST END QUARTER", "Name": "FRANCIS, EDWARD A. & JENEE' J.", "Address": "PO Box 7862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52300, "Improved_V": 85400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.459011422, "SHAPE_Area": 1196.5616284099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365295.623700000345707, 257172.328000001609325 ], [ 365298.171999998390675, 257166.848799999803305 ], [ 365332.994499996304512, 257137.934099998325109 ], [ 365327.309600003063679, 257129.306699998676777 ], [ 365319.178300000727177, 257127.263399999588728 ], [ 365281.654200002551079, 257143.853900000452995 ], [ 365275.024099998176098, 257150.205200001597404 ], [ 365283.295900002121925, 257159.088700000196695 ], [ 365295.623700000345707, 257172.328000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601023600", "MAP": "D9-7316-T003", "PARCEL_NAM": "3K-2", "ACRE": ".35", "LONGITUDE": -64.87872181, "LATITUDE": 18.32707007, "OBJECTID_1": 37940, "PARCEL_NO_": "107601023600", "Tax_Legal_": "3K-2 ESTATE MARIENDAHL No.4 RED HOOK QUARTER", "Name": "RICHARDS, KELVIN R", "Address": "PO Box 306432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38300, "Improved_V": 44300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.25174823899999, "SHAPE_Area": 1311.4975966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364352.493400000035763, 255339.563000001013279 ], [ 364338.213200002908707, 255323.474399998784065 ], [ 364309.1570999994874, 255337.27930000051856 ], [ 364303.866899996995926, 255339.656500000506639 ], [ 364324.735100001096725, 255367.036100000143051 ], [ 364327.72749999910593, 255365.364500001072884 ], [ 364361.693899996578693, 255349.123100001364946 ], [ 364352.493400000035763, 255339.563000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601023700", "MAP": "D9-7316-T003", "PARCEL_NAM": "3K-3", "ACRE": ".38", "LONGITUDE": -64.87850052, "LATITUDE": 18.32731598, "OBJECTID_1": 37941, "PARCEL_NO_": "107601023700", "Tax_Legal_": "3K-3 ESTATE MARIENDAHL No. 3 RED HOOK QTR.", "Name": "LEE, ERICA K. & DANIELLE S. & COLLIN S. ROACH", "Address": "176 NE 50 St", "City": "Miami", "State": "Florida", "Zip": 33137, "Country": "United States", "Land_Value": 45200, "Improved_V": 39600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.56119694500001, "SHAPE_Area": 1565.1837594599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364367.192299999296665, 255354.836300000548363 ], [ 364361.693899996578693, 255349.123100001364946 ], [ 364327.72749999910593, 255365.364500001072884 ], [ 364324.735100001096725, 255367.036100000143051 ], [ 364347.751400001347065, 255397.234099999070168 ], [ 364348.47860000282526, 255396.747699998319149 ], [ 364357.818199999630451, 255391.604499999433756 ], [ 364372.303300000727177, 255383.539099998772144 ], [ 364380.997900001704693, 255378.290500000119209 ], [ 364386.523500002920628, 255374.437600001692772 ], [ 364383.535199999809265, 255370.533100001513958 ], [ 364367.192299999296665, 255354.836300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403035100", "MAP": "D9-7866-T006", "PARCEL_NAM": "15-51-C", "ACRE": ".500", "LONGITUDE": -64.91102758, "LATITUDE": 18.31846358, "OBJECTID_1": 37258, "PARCEL_NO_": "107403035100", "Tax_Legal_": "15-51C FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "MOORE, ROBERT D. & CYNTHIA R.", "Address": "222 Stonepitch Ct", "City": "Camden Wyoming", "State": "Delaware", "Zip": 19934, "Country": "United States", "Land_Value": 53100, "Improved_V": 117200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.43934278, "SHAPE_Area": 1632.4899551599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360957.060199998319149, 254377.470199998468161 ], [ 360923.850299999117851, 254340.482799999415874 ], [ 360888.810000002384186, 254341.640799999237061 ], [ 360888.780900001525879, 254341.922899998724461 ], [ 360936.868000000715256, 254396.074999999254942 ], [ 360944.499899998307228, 254385.806600000709295 ], [ 360951.807099997997284, 254379.955800000578165 ], [ 360957.060199998319149, 254377.470199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403034700", "MAP": "D9-1568-T80", "PARCEL_NAM": "15-51-B", "ACRE": ".06", "LONGITUDE": -64.91151049, "LATITUDE": 18.31780981, "OBJECTID_1": 37254, "PARCEL_NO_": "107403034700", "Tax_Legal_": "15-51 REM FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "LISE LANE, LLC", "Address": "104 Severn River Rd", "City": "Severna Park", "State": "Maryland", "Zip": 21146, "Country": "United States", "Land_Value": 84500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.802844739199998, "SHAPE_Area": 189.356874557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360881.306699998676777, 254305.410300001502037 ], [ 360886.377999998629093, 254295.534400001168251 ], [ 360855.957699999213219, 254272.568999998271465 ], [ 360879.099799998104572, 254301.045000001788139 ], [ 360881.306699998676777, 254305.410300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701012700", "MAP": "D9-5323-T92", "PARCEL_NAM": "396", "ACRE": "1.5379", "LONGITUDE": -64.88259081, "LATITUDE": 18.3428881, "OBJECTID_1": 21860, "PARCEL_NO_": "105701012700", "Tax_Legal_": "396 ANNAS RETREAT NEW QTR", "Name": "FABA INC.", "Address": "BOX 4092", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 329000, "Improved_V": 717800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.25821672500001, "SHAPE_Area": 5741.0311859100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363852.886600002646446, 257120.413699999451637 ], [ 363906.984899997711182, 257144.136900000274181 ], [ 363913.571999996900558, 257128.147700000554323 ], [ 363916.847599998116493, 257122.263900000602007 ], [ 363923.366400003433228, 257114.295699998736382 ], [ 363939.598800003528595, 257101.973999999463558 ], [ 363964.084899999201298, 257067.344000000506639 ], [ 363964.930699996650219, 257062.706799998879433 ], [ 363962.544200003147125, 257058.887600000947714 ], [ 363950.499799996614456, 257052.878400001674891 ], [ 363932.193899996578693, 257043.993000000715256 ], [ 363926.298699997365475, 257058.734700001776218 ], [ 363903.469200000166893, 257048.952300000935793 ], [ 363889.552799999713898, 257078.400800000876188 ], [ 363876.141999997198582, 257072.615899998694658 ], [ 363858.0929000005126, 257109.328499998897314 ], [ 363854.806500002741814, 257116.478700000792742 ], [ 363852.886600002646446, 257120.413699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701018000", "MAP": "D9-5323-T92", "PARCEL_NAM": "396-1", "ACRE": ".249", "LONGITUDE": -64.88265069000001, "LATITUDE": 18.34251311, "OBJECTID_1": 21908, "PARCEL_NO_": "105701018000", "Tax_Legal_": "396-1 & 396-2 EST. ANNAS RETREAT NEW QTR.", "Name": "RUPERT FOSTER CONSTRUCTION CO", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81700, "Improved_V": 804600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.790423651, "SHAPE_Area": 1108.8166954000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363876.141999997198582, 257072.615899998694658 ], [ 363889.552799999713898, 257078.400800000876188 ], [ 363903.469200000166893, 257048.952300000935793 ], [ 363926.298699997365475, 257058.734700001776218 ], [ 363932.193899996578693, 257043.993000000715256 ], [ 363898.301700003445148, 257027.542199999094009 ], [ 363876.141999997198582, 257072.615899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "D9-8053-T007", "PARCEL_NAM": "6-A", "ACRE": null, "LONGITUDE": -64.87584768000001, "LATITUDE": 18.34679956, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.586020805399997, "SHAPE_Area": 114.066823645 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364622.805699996650219, 257522.74100000038743 ], [ 364618.026299998164177, 257519.679200001060963 ], [ 364614.216300003230572, 257527.087499998509884 ], [ 364617.603000000119209, 257529.204199999570847 ], [ 364611.252999998629093, 257539.787500001490116 ], [ 364616.652300000190735, 257543.525499999523163 ], [ 364620.558100000023842, 257530.156599998474121 ], [ 364622.805699996650219, 257522.74100000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701010500", "MAP": "D9-6362-T98", "PARCEL_NAM": "15-3", "ACRE": ".49", "LONGITUDE": -64.87630591, "LATITUDE": 18.34606665, "OBJECTID_1": 21840, "PARCEL_NO_": "105701010500", "Tax_Legal_": "15 ESTATE FRYDENDAHL EAST END QUARTER", "Name": "JOHNSON, SR. , AUBREY & OTHERS", "Address": "6868 W Livingston St", "City": "Orlando", "State": "Florida", "Zip": 328351228, "Country": "United States", "Land_Value": 288400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.468758178, "SHAPE_Area": 2173.9566259500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364546.356299996376038, 257449.707600001245737 ], [ 364541.755300000309944, 257467.454199999570847 ], [ 364584.526600003242493, 257478.5011 ], [ 364588.029799997806549, 257467.617800001055002 ], [ 364598.795900002121925, 257434.353100001811981 ], [ 364571.453199997544289, 257425.685600001364946 ], [ 364558.595399998128414, 257420.51410000026226 ], [ 364554.820299997925758, 257418.924699999392033 ], [ 364546.356299996376038, 257449.707600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701010500", "MAP": "D9-6362-T98", "PARCEL_NAM": "15A R.O.W", "ACRE": ".4805", "LONGITUDE": -64.87659872, "LATITUDE": 18.34661368, "OBJECTID_1": 21840, "PARCEL_NO_": "105701010500", "Tax_Legal_": "15 ESTATE FRYDENDAHL EAST END QUARTER", "Name": "JOHNSON, SR. , AUBREY & OTHERS", "Address": "6868 W Livingston St", "City": "Orlando", "State": "Florida", "Zip": 328351228, "Country": "United States", "Land_Value": 288400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 424.92557288799998, "SHAPE_Area": 1808.4366105700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364536.54110000282526, 257447.271099999547005 ], [ 364531.731700003147125, 257460.552799999713898 ], [ 364520.064900003373623, 257478.299400001764297 ], [ 364517.271499998867512, 257484.379299998283386 ], [ 364516.285599999129772, 257489.308899998664856 ], [ 364516.44990000128746, 257494.074200000613928 ], [ 364517.928800001740456, 257499.003899998962879 ], [ 364546.19200000166893, 257544.3564000017941 ], [ 364547.835199996829033, 257550.271999999880791 ], [ 364545.699000000953674, 257556.023200001567602 ], [ 364537.647299997508526, 257568.018699999898672 ], [ 364534.19650000333786, 257573.276900000870228 ], [ 364529.431199997663498, 257576.727699998766184 ], [ 364524.830200001597404, 257578.699499998241663 ], [ 364522.201099999248981, 257579.028200000524521 ], [ 364522.858400002121925, 257588.230099998414516 ], [ 364528.773900002241135, 257587.572799999266863 ], [ 364536.661399997770786, 257587.737199999392033 ], [ 364545.04169999808073, 257589.380399998277426 ], [ 364546.684900000691414, 257583.300500001758337 ], [ 364544.220100000500679, 257582.478900000452995 ], [ 364543.069899998605251, 257579.521099999547005 ], [ 364543.069899998605251, 257576.892000000923872 ], [ 364554.243699997663498, 257559.802600000053644 ], [ 364556.215499997138977, 257554.872999999672174 ], [ 364557.0371999964118, 257549.450399998575449 ], [ 364556.215499997138977, 257543.37049999833107 ], [ 364552.929099999368191, 257538.276599999517202 ], [ 364527.295100003480911, 257498.182199999690056 ], [ 364524.337300002574921, 257492.759700000286102 ], [ 364524.008599996566772, 257487.172699999064207 ], [ 364526.473499998450279, 257481.750199999660254 ], [ 364546.356299996376038, 257449.707600001245737 ], [ 364554.820299997925758, 257418.924699999392033 ], [ 364547.346600003540516, 257415.778000000864267 ], [ 364545.76799999922514, 257415.11710000038147 ], [ 364536.54110000282526, 257447.271099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701010500", "MAP": "D9-6362-T98", "PARCEL_NAM": "15-5", "ACRE": ".31", "LONGITUDE": -64.8764669, "LATITUDE": 18.34661851, "OBJECTID_1": 21840, "PARCEL_NO_": "105701010500", "Tax_Legal_": "15 ESTATE FRYDENDAHL EAST END QUARTER", "Name": "JOHNSON, SR. , AUBREY & OTHERS", "Address": "6868 W Livingston St", "City": "Orlando", "State": "Florida", "Zip": 328351228, "Country": "United States", "Land_Value": 288400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.172392613, "SHAPE_Area": 1589.44976002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364577.577500000596046, 257500.089800000190735 ], [ 364534.032200001180172, 257488.815999999642372 ], [ 364527.673000000417233, 257479.81700000166893 ], [ 364526.473499998450279, 257481.750199999660254 ], [ 364524.008599996566772, 257487.172699999064207 ], [ 364524.337300002574921, 257492.759700000286102 ], [ 364527.295100003480911, 257498.182199999690056 ], [ 364552.929099999368191, 257538.276599999517202 ], [ 364563.855800002813339, 257542.719300001859665 ], [ 364577.577500000596046, 257500.089800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701010500", "MAP": "D9-6362-T98", "PARCEL_NAM": "15-4", "ACRE": ".23", "LONGITUDE": -64.87643557, "LATITUDE": 18.34635812, "OBJECTID_1": 21840, "PARCEL_NO_": "105701010500", "Tax_Legal_": "15 ESTATE FRYDENDAHL EAST END QUARTER", "Name": "JOHNSON, SR. , AUBREY & OTHERS", "Address": "6868 W Livingston St", "City": "Orlando", "State": "Florida", "Zip": 328351228, "Country": "United States", "Land_Value": 288400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.62292687199999, "SHAPE_Area": 1207.89664468 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364584.526600003242493, 257478.5011 ], [ 364541.755300000309944, 257467.454199999570847 ], [ 364546.356299996376038, 257449.707600001245737 ], [ 364527.673000000417233, 257479.81700000166893 ], [ 364534.032200001180172, 257488.815999999642372 ], [ 364577.577500000596046, 257500.089800000190735 ], [ 364584.526600003242493, 257478.5011 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "D9-8053-T07", "PARCEL_NAM": "6-B", "ACRE": ".02", "LONGITUDE": -64.87571232000001, "LATITUDE": 18.34637407, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.236600298600003, "SHAPE_Area": 74.663561728900007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364636.661499999463558, 257476.112700000405312 ], [ 364633.178199999034405, 257474.779899999499321 ], [ 364627.358499996364117, 257491.554299999028444 ], [ 364631.573600001633167, 257493.494800001382828 ], [ 364636.661499999463558, 257476.112700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701023300", "MAP": "D9-8292-T09", "PARCEL_NAM": "53-1A-1", "ACRE": ".631", "LONGITUDE": -64.87857348, "LATITUDE": 18.34490649, "OBJECTID_1": 21943, "PARCEL_NO_": "105701023300", "Tax_Legal_": "53-1A-1 FRYDENDAHL NO.4 EAST END QTR", "Name": "AH REALTY LLC", "Address": "PO Box 304157", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.691812357, "SHAPE_Area": 2697.6123544400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364313.980200000107288, 257357.007800001651049 ], [ 364374.035599999129772, 257300.053800001740456 ], [ 364367.757600001990795, 257293.9847999997437 ], [ 364360.576300002634525, 257285.060100000351667 ], [ 364355.803099997341633, 257277.421700000762939 ], [ 364325.744800001382828, 257303.562399998307228 ], [ 364292.418099999427795, 257334.742499999701977 ], [ 364284.8733000010252, 257342.165199998766184 ], [ 364313.980200000107288, 257357.007800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701024100", "MAP": "D9-8321-T009", "PARCEL_NAM": "53-1A-2", "ACRE": ".401", "LONGITUDE": -64.87836574000001, "LATITUDE": 18.34503987, "OBJECTID_1": 21947, "PARCEL_NO_": "105701024100", "Tax_Legal_": "53-1A-2 FRYDENDAHL NO.4 EAST END QTR", "Name": "DAAS, ABDELQADER M.& NAJAH F. YUSUF", "Address": "PO Box 502454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 56800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.42748771800001, "SHAPE_Area": 1656.1570886300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364332.999300003051758, 257366.706199999898672 ], [ 364390.29389999806881, 257314.129999998956919 ], [ 364382.953400000929832, 257308.674600001424551 ], [ 364374.035599999129772, 257300.053800001740456 ], [ 364313.980200000107288, 257357.007800001651049 ], [ 364332.999300003051758, 257366.706199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702010100", "MAP": "D9-8313-T009", "PARCEL_NAM": "52-A", "ACRE": ".008", "LONGITUDE": -64.87388579, "LATITUDE": 18.34648394, "OBJECTID_1": 22257, "PARCEL_NO_": "105702010100", "Tax_Legal_": "FRYDENDAHL 52 EAST END QTR", "Name": "THOMAS, EDWARD E. & LUCIA A. M", "Address": "PO Box 302044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 92400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.653720887599999, "SHAPE_Area": 37.460897250099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364832.579300001263618, 257498.090599998831749 ], [ 364828.223300002515316, 257495.577500000596046 ], [ 364819.518500000238419, 257497.42960000038147 ], [ 364819.598700001835823, 257500.877399999648333 ], [ 364832.579300001263618, 257498.090599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701039400", "MAP": "D9-8511-T10", "PARCEL_NAM": "14-1A", "ACRE": ".22", "LONGITUDE": -64.87682957, "LATITUDE": 18.34536938, "OBJECTID_1": 22029, "PARCEL_NO_": "105701039400", "Tax_Legal_": "PAR 14-1A FRYDENDAL 4 EAST END QTR", "Name": "Kimika & Kianya Woods & Elza Woods Trust", "Address": "PO Box 502401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052401, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.84319169599999, "SHAPE_Area": 862.04865635600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364511.44539999961853, 257346.983199998736382 ], [ 364496.185599997639656, 257377.537599999457598 ], [ 364496.867200002074242, 257378.001299999654293 ], [ 364527.366800002753735, 257394.7162000015378 ], [ 364533.885200001299381, 257379.895300000905991 ], [ 364517.562600001692772, 257370.396800000220537 ], [ 364525.394799999892712, 257353.535599999129772 ], [ 364514.855999998748302, 257348.806499999016523 ], [ 364511.44539999961853, 257346.983199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701039400", "MAP": "D9-8511-T10", "PARCEL_NAM": "14-1B", "ACRE": ".19", "LONGITUDE": -64.87668692, "LATITUDE": 18.34521454, "OBJECTID_1": 22029, "PARCEL_NO_": "105701039400", "Tax_Legal_": "PAR 14-1A FRYDENDAL 4 EAST END QTR", "Name": "Kimika & Kianya Woods & Elza Woods Trust", "Address": "PO Box 502401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052401, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.66011295499999, "SHAPE_Area": 884.79516745700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364518.617399998009205, 257332.622900001704693 ], [ 364511.44539999961853, 257346.983199998736382 ], [ 364514.855999998748302, 257348.806499999016523 ], [ 364525.394799999892712, 257353.535599999129772 ], [ 364517.562600001692772, 257370.396800000220537 ], [ 364533.885200001299381, 257379.895300000905991 ], [ 364542.168099999427795, 257361.062399998307228 ], [ 364549.128499999642372, 257345.041799999773502 ], [ 364546.110248981334735, 257344.422471169382334 ], [ 364543.243370826821774, 257343.293570351292146 ], [ 364540.613200001418591, 257341.688700001686811 ], [ 364537.182442153571174, 257341.659441136638634 ], [ 364533.790702536876779, 257341.142664720187895 ], [ 364530.506904173118528, 257340.148872086894698 ], [ 364527.397776626341511, 257338.698257944692159 ], [ 364524.526500001549721, 257336.820300001651049 ], [ 364518.617399998009205, 257332.622900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107502010200", "MAP": "D9-6952-T001", "PARCEL_NAM": "27-1", "ACRE": null, "LONGITUDE": -64.88308708, "LATITUDE": 18.32974714, "OBJECTID_1": 37480, "PARCEL_NO_": "107502010200", "Tax_Legal_": "27-1 ESTATE CHARLOTTE AMALIE No.3 NEW QTR.", "Name": "TRUST AGREEMENT OF ELROY FLEMING AND CLOVER MAY FL", "Address": "PO Box 9878", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 372.51945486, "SHAPE_Area": 8022.8885554099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363830.238099999725819, 255648.691500000655651 ], [ 363824.432700000703335, 255665.173000000417233 ], [ 363818.07769999653101, 255684.881099998950958 ], [ 363840.320200003683567, 255695.332400001585484 ], [ 363861.969499997794628, 255705.504999998956919 ], [ 363921.740099996328354, 255633.039799999445677 ], [ 363914.314599998295307, 255621.156800001859665 ], [ 363894.421099998056889, 255589.963300000876188 ], [ 363891.240800000727177, 255584.65989999845624 ], [ 363878.503499999642372, 255565.346099998801947 ], [ 363872.925800003111362, 255557.489999998360872 ], [ 363868.044799998402596, 255562.51630000025034 ], [ 363863.144000001251698, 255569.864500001072884 ], [ 363860.705300003290176, 255572.166600000113249 ], [ 363852.510899998247623, 255587.509300000965595 ], [ 363850.883900001645088, 255589.18470000103116 ], [ 363846.77139999717474, 255598.650299999862909 ], [ 363830.238099999725819, 255648.691500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504031300", "MAP": "A9-568-T001", "PARCEL_NAM": "1-5-C", "ACRE": "13.110", "LONGITUDE": -64.90041878, "LATITUDE": 18.33766298, "OBJECTID_1": 20435, "PARCEL_NO_": "105504031300", "Tax_Legal_": "1-5-C ESTATE DONOE #2A NEW QTR.", "Name": "H. D. V. I. HOLDING COMPANY INC", "Address": "PO Box 105842", "City": "Atlanta", "State": "Georgia", "Zip": 30348, "Country": "United States", "Land_Value": 703100, "Improved_V": 8805400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1064.75688313, "SHAPE_Area": 62885.042804099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361872.917900003492832, 256563.8902000002563 ], [ 361947.912600003182888, 256563.377599999308586 ], [ 361982.626000002026558, 256599.149399999529123 ], [ 362005.062700003385544, 256601.054400000721216 ], [ 362066.336800001561642, 256673.590300001204014 ], [ 362084.684500001370907, 256659.961199998855591 ], [ 362126.810500003397465, 256637.085700001567602 ], [ 362147.923900000751019, 256619.737700000405312 ], [ 362145.335199996829033, 256544.989399999380112 ], [ 362153.14919999986887, 256457.021899998188019 ], [ 362154.254299998283386, 256444.581900000572205 ], [ 362154.668099999427795, 256441.995400000363588 ], [ 362158.242600001394749, 256406.633299998939037 ], [ 362171.114600002765656, 256372.363299999386072 ], [ 362173.895099997520447, 256362.724399998784065 ], [ 362123.973899997770786, 256370.508400000631809 ], [ 362064.839500002563, 256381.674800001084805 ], [ 362023.955300003290176, 256382.83729999884963 ], [ 361972.090000003576279, 256384.660300001502037 ], [ 361919.057899996638298, 256390.235500000417233 ], [ 361882.507500000298023, 256393.779800001531839 ], [ 361872.917900003492832, 256563.8902000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504030100", "MAP": "A9-369-T89", "PARCEL_NAM": "1-2", "ACRE": null, "LONGITUDE": -64.90224503, "LATITUDE": 18.33575417, "OBJECTID_1": 20432, "PARCEL_NO_": "105504030100", "Tax_Legal_": "PARCEL C,D,E,F,G&H EST.RAPHUNE 5B NEW QTR.&PARCEL 1-2 THRU 1-11 ESTATE DONOE 2A NEW QUARTER", "Name": "MARKET SQUARE EAST INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3677300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 441.07534196500001, "SHAPE_Area": 1888.6294392499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361782.820500001311302, 256227.653999999165535 ], [ 361772.614699997007847, 256230.123100001364946 ], [ 361775.325499996542931, 256244.2027000002563 ], [ 361784.313799999654293, 256255.563400000333786 ], [ 361794.875600002706051, 256259.789700001478195 ], [ 361821.729400001466274, 256261.895100001245737 ], [ 361842.919100001454353, 256262.448499999940395 ], [ 361856.508400000631809, 256266.700100000947714 ], [ 361862.469099998474121, 256278.035500001162291 ], [ 361864.632799997925758, 256290.843899998813868 ], [ 361863.16499999910593, 256375.849199999123812 ], [ 361862.878899998962879, 256376.233500000089407 ], [ 361871.998700000345707, 256372.256999999284744 ], [ 361871.903800003230572, 256371.784299999475479 ], [ 361872.942900002002716, 256292.794300001114607 ], [ 361870.406999997794628, 256279.230500001460314 ], [ 361862.588699996471405, 256263.741500001400709 ], [ 361853.950499996542931, 256255.769400000572205 ], [ 361840.717600002884865, 256254.153999999165535 ], [ 361799.123400002717972, 256249.668200001120567 ], [ 361787.826700001955032, 256242.802400000393391 ], [ 361783.385999999940395, 256230.727400001138449 ], [ 361782.820500001311302, 256227.653999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105504030100", "MAP": "D9-7950-T007", "PARCEL_NAM": "1-2-1", "ACRE": null, "LONGITUDE": -64.90472503, "LATITUDE": 18.33598113, "OBJECTID_1": 20432, "PARCEL_NO_": "105504030100", "Tax_Legal_": "PARCEL C,D,E,F,G&H EST.RAPHUNE 5B NEW QTR.&PARCEL 1-2 THRU 1-11 ESTATE DONOE 2A NEW QUARTER", "Name": "MARKET SQUARE EAST INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3677300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.57678282199998, "SHAPE_Area": 5730.9960539399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361606.081200003623962, 256269.731800001114607 ], [ 361532.511799998581409, 256282.856899999082088 ], [ 361507.710699997842312, 256286.645899999886751 ], [ 361512.048699997365475, 256313.052400000393391 ], [ 361521.162399999797344, 256314.683699999004602 ], [ 361542.099899999797344, 256317.296300001442432 ], [ 361555.528399996459484, 256323.622800000011921 ], [ 361581.521600000560284, 256338.134700000286102 ], [ 361622.220499999821186, 256359.164599999785423 ], [ 361630.05460000038147, 256362.413400001823902 ], [ 361606.081200003623962, 256269.731800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501040100", "MAP": "D9-6410-T98", "PARCEL_NAM": "1-5-B", "ACRE": "4.251", "LONGITUDE": -64.90019165, "LATITUDE": 18.33625385, "OBJECTID_1": 19782, "PARCEL_NO_": "105501040100", "Tax_Legal_": "REM. 1. ESTATE DONOE NEW QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 716.90315662099999, "SHAPE_Area": 14621.751268100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362196.061700001358986, 256288.791900001466274 ], [ 362178.778099998831749, 256288.959399998188019 ], [ 362148.067500002682209, 256295.473400000482798 ], [ 362115.811700001358986, 256305.736400000751019 ], [ 362077.119199998676777, 256316.321699999272823 ], [ 362062.34740000218153, 256317.7027000002563 ], [ 362036.244300000369549, 256316.355599999427795 ], [ 362010.097199998795986, 256320.27479999884963 ], [ 361988.084600001573563, 256327.614199999719858 ], [ 361963.0287000015378, 256336.809200000017881 ], [ 361923.926399998366833, 256351.153200000524521 ], [ 361895.070500001311302, 256362.197299998253584 ], [ 361871.998700000345707, 256372.256999999284744 ], [ 361873.720499999821186, 256380.827899999916553 ], [ 361886.183899998664856, 256383.941599998623133 ], [ 361925.57320000231266, 256380.509199999272823 ], [ 361964.972000002861023, 256375.948499999940395 ], [ 362044.851400002837181, 256373.231499999761581 ], [ 362066.441399998962879, 256371.155099999159575 ], [ 362118.75450000166893, 256361.060100000351667 ], [ 362177.685599997639656, 256349.584199998527765 ], [ 362188.442400000989437, 256312.295000001788139 ], [ 362196.061700001358986, 256288.791900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501040100", "MAP": "D9-6410-T98", "PARCEL_NAM": "1-5-B", "ACRE": "4.251", "LONGITUDE": -64.90208684, "LATITUDE": 18.33662815, "OBJECTID_1": 19782, "PARCEL_NO_": "105501040100", "Tax_Legal_": "REM. 1. ESTATE DONOE NEW QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.667150282999998, "SHAPE_Area": 59.413522761000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361862.878899998962879, 256376.233500000089407 ], [ 361841.529899999499321, 256385.542100001126528 ], [ 361846.053400002419949, 256385.486900001764297 ], [ 361857.040799997746944, 256384.074000000953674 ], [ 361862.878899998962879, 256376.233500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501040100", "MAP": "D9-6410-T98", "PARCEL_NAM": "1-5-B", "ACRE": "4.251", "LONGITUDE": -64.90194557, "LATITUDE": 18.33660842, "OBJECTID_1": 19782, "PARCEL_NO_": "105501040100", "Tax_Legal_": "REM. 1. ESTATE DONOE NEW QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.456346852899998, "SHAPE_Area": 144.61539381099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361857.040799997746944, 256384.074000000953674 ], [ 361886.183899998664856, 256383.941599998623133 ], [ 361873.720499999821186, 256380.827899999916553 ], [ 361871.998700000345707, 256372.256999999284744 ], [ 361862.878899998962879, 256376.233500000089407 ], [ 361857.040799997746944, 256384.074000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501040100", "MAP": "A9-568-T001", "PARCEL_NAM": "1-5 REM", "ACRE": "6.382", "LONGITUDE": -64.90264737, "LATITUDE": 18.3374381, "OBJECTID_1": 19782, "PARCEL_NO_": "105501040100", "Tax_Legal_": "REM. 1. ESTATE DONOE NEW QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 680.36108739099996, "SHAPE_Area": 26773.410058000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361719.383799999952316, 256544.225299999117851 ], [ 361846.030299998819828, 256557.106600001454353 ], [ 361859.812399998307228, 256560.583799999207258 ], [ 361872.917900003492832, 256563.8902000002563 ], [ 361882.507500000298023, 256393.779800001531839 ], [ 361869.05969999730587, 256395.08390000090003 ], [ 361698.768700003623962, 256397.456599999219179 ], [ 361695.339699998497963, 256486.315999999642372 ], [ 361719.910700000822544, 256486.601399999111891 ], [ 361719.777400001883507, 256536.397900000214577 ], [ 361719.383799999952316, 256544.225299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501040100", "MAP": "A9-568-T001", "PARCEL_NAM": "1-8", "ACRE": "2.607", "LONGITUDE": -64.90049563, "LATITUDE": 18.34003826, "OBJECTID_1": 19782, "PARCEL_NO_": "105501040100", "Tax_Legal_": "REM. 1. ESTATE DONOE NEW QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 609.25997074899999, "SHAPE_Area": 10654.9995595 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362029.652099996805191, 256847.037599999457598 ], [ 362033.785099998116493, 256773.630499999970198 ], [ 362057.612700000405312, 256729.298500001430511 ], [ 362135.641400001943111, 256641.395199999213219 ], [ 362131.583700001239777, 256644.72410000115633 ], [ 362089.457599997520447, 256667.599700000137091 ], [ 362039.144400000572205, 256704.973600000143051 ], [ 361990.528300002217293, 256732.440099999308586 ], [ 361956.535499997437, 256747.149500001221895 ], [ 361947.612099997699261, 256749.103999998420477 ], [ 361955.529399998486042, 256766.861999999731779 ], [ 361993.948299996554852, 256853.033700000494719 ], [ 362029.652099996805191, 256847.037599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501040100", "MAP": "A9-568-T001", "PARCEL_NAM": "1-9", "ACRE": "3.904", "LONGITUDE": -64.89966172, "LATITUDE": 18.33982554, "OBJECTID_1": 19782, "PARCEL_NO_": "105501040100", "Tax_Legal_": "REM. 1. ESTATE DONOE NEW QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 556.30245978200003, "SHAPE_Area": 14776.1272359 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362201.114399999380112, 256714.922800000756979 ], [ 362135.641400001943111, 256641.395199999213219 ], [ 362057.612700000405312, 256729.298500001430511 ], [ 362033.785099998116493, 256773.630499999970198 ], [ 362029.652099996805191, 256847.037599999457598 ], [ 362201.114399999380112, 256714.922800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501040100", "MAP": "D9-7725-T006", "PARCEL_NAM": "1-6-A", "ACRE": "2.00", "LONGITUDE": -64.90128753, "LATITUDE": 18.34049572, "OBJECTID_1": 19782, "PARCEL_NO_": "105501040100", "Tax_Legal_": "REM. 1. ESTATE DONOE NEW QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 371.482041735, "SHAPE_Area": 8285.9270377899993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361876.769000001251698, 256770.911699999123812 ], [ 361923.257799997925758, 256875.892099998891354 ], [ 361991.822800002992153, 256848.266399998217821 ], [ 361955.529399998486042, 256766.861999999731779 ], [ 361947.612099997699261, 256749.103999998420477 ], [ 361935.586499996483326, 256751.840500000864267 ], [ 361919.362400002777576, 256756.555500000715256 ], [ 361883.581900000572205, 256768.61540000140667 ], [ 361876.769000001251698, 256770.911699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502041600", "MAP": "D9-7725-T006", "PARCEL_NAM": "1-6 REM", "ACRE": "8.141", "LONGITUDE": -64.90168864, "LATITUDE": 18.34142847, "OBJECTID_1": 19922, "PARCEL_NO_": "105502041600", "Tax_Legal_": "DONOE ESTATE 1-6 NEW QTR. A9-369-T89", "Name": "MARKET SQUARE EAST INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 609000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 901.96080855299999, "SHAPE_Area": 38680.9397293 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361829.755199998617172, 256850.138999998569489 ], [ 361725.611699998378754, 256929.012200001627207 ], [ 361754.411799997091293, 256964.947200000286102 ], [ 361793.420299999415874, 256972.765999998897314 ], [ 361980.962300002574921, 257010.4983000010252 ], [ 362039.848300002515316, 256947.813099998980761 ], [ 361993.948299996554852, 256853.033700000494719 ], [ 361991.822800002992153, 256848.266399998217821 ], [ 361923.257799997925758, 256875.892099998891354 ], [ 361876.769000001251698, 256770.911699999123812 ], [ 361869.223600000143051, 256773.454900000244379 ], [ 361838.568899996578693, 256781.421799998730421 ], [ 361829.755199998617172, 256850.138999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502041700", "MAP": "A9-692-T006", "PARCEL_NAM": "K", "ACRE": "3.898", "LONGITUDE": -64.90616133, "LATITUDE": 18.33882591, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 504.76984189799998, "SHAPE_Area": 7995.5572646199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361514.297100000083447, 256586.846200000494719 ], [ 361514.170100003480911, 256544.767700001597404 ], [ 361496.841899998486042, 256555.160300001502037 ], [ 361409.266400001943111, 256608.669199999421835 ], [ 361318.060000002384186, 256658.581199999898672 ], [ 361318.635499998927116, 256659.813200000673532 ], [ 361321.109499998390675, 256668.379900000989437 ], [ 361322.627099998295307, 256673.635000001639128 ], [ 361322.799500003457069, 256674.23200000077486 ], [ 361326.767599999904633, 256674.265099998563528 ], [ 361341.116899996995926, 256677.958000000566244 ], [ 361353.099500000476837, 256678.057900000363588 ], [ 361366.280299998819828, 256678.16780000180006 ], [ 361392.132299996912479, 256667.66330000013113 ], [ 361402.391999997198582, 256658.815600000321865 ], [ 361410.834399998188019, 256652.334899999201298 ], [ 361423.450900003314018, 256648.271200001239777 ], [ 361437.325300000607967, 256637.071400001645088 ], [ 361460.865299999713898, 256616.423300001770258 ], [ 361477.720399998128414, 256607.035000000149012 ], [ 361495.778800003230572, 256597.061200000345707 ], [ 361506.013800002634525, 256591.190999999642372 ], [ 361514.297100000083447, 256586.846200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502041700", "MAP": "A9-699-T007", "PARCEL_NAM": "1-13", "ACRE": "14.029", "LONGITUDE": -64.90345696, "LATITUDE": 18.33978971, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1557.230431, "SHAPE_Area": 36305.905856099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361838.568899996578693, 256781.421799998730421 ], [ 361839.404399998486042, 256771.522100001573563 ], [ 361840.548900000751019, 256771.232500001788139 ], [ 361852.993003902432974, 256768.977014264790341 ], [ 361865.285017391550355, 256766.002229867735878 ], [ 361877.383400000631809, 256762.318199999630451 ], [ 361878.775789823790547, 256762.018251208763104 ], [ 361880.115611687302589, 256761.534933434566483 ], [ 361881.378834231931251, 256760.876915578002809 ], [ 361882.54280000180006, 256760.056000001728535 ], [ 361867.855099998414516, 256760.743999999016523 ], [ 361867.619292355317157, 256760.713135039812187 ], [ 361867.381661898689345, 256760.722603742964566 ], [ 361867.149057678470854, 256760.772133198857773 ], [ 361866.928183877083939, 256760.860295856022276 ], [ 361866.725406579556875, 256760.984550666267751 ], [ 361866.546570288599469, 256761.141316323482897 ], [ 361866.396829472563695, 256761.326074485084973 ], [ 361866.280500002205372, 256761.533500000834465 ], [ 361865.537435180449393, 256762.460869602015009 ], [ 361864.662176879472099, 256763.264662245113868 ], [ 361863.67502134561073, 256763.926238891173853 ], [ 361862.59885959525127, 256764.43025832879357 ], [ 361861.458646597573534, 256764.765032919356599 ], [ 361860.280822597676888, 256764.922799620195292 ], [ 361859.092699997127056, 256764.899900000542402 ], [ 361857.777671559597366, 256764.784439923998434 ], [ 361856.50197643431602, 256764.444980400643544 ], [ 361855.303478408313822, 256763.891596896690316 ], [ 361854.217749988893047, 256763.140714335953817 ], [ 361853.277016579289921, 256762.214619593112729 ], [ 361852.509199999272823, 256761.140799999237061 ], [ 361852.296727072505746, 256760.883255436929176 ], [ 361852.044412756687962, 256760.664597182563739 ], [ 361851.759272533934563, 256760.490904927253723 ], [ 361851.449234595580492, 256760.36700810334878 ], [ 361851.122919402376283, 256760.296351604396477 ], [ 361850.789399996399879, 256760.280900001525879 ], [ 361805.942400000989437, 256761.27309999987483 ], [ 361761.889200001955032, 256764.051300000399351 ], [ 361752.243048503354657, 256764.616399548162008 ], [ 361742.674839674844407, 256765.964344668784179 ], [ 361733.248000003397465, 256768.086199998855591 ], [ 361722.490838750672992, 256770.297295712225605 ], [ 361711.684399999678135, 256772.253400001674891 ], [ 361708.105310281389393, 256771.343441063712817 ], [ 361704.65115592564689, 256770.037023761688033 ], [ 361701.365699999034405, 256768.350699998438358 ], [ 361699.229417336988263, 256766.296901865076507 ], [ 361697.432990129571408, 256763.94007355713984 ], [ 361696.018830170854926, 256761.335857361060334 ], [ 361695.020324319542851, 256758.545736136147752 ], [ 361694.461046269221697, 256755.635581767885014 ], [ 361694.35419999808073, 256752.674100000411272 ], [ 361695.567778194556013, 256747.847294839913957 ], [ 361697.382349131279625, 256743.212842076987727 ], [ 361699.768743522814475, 256738.845240686699981 ], [ 361702.68860000371933, 256734.814699999988079 ], [ 361706.207347501767799, 256729.804590724903392 ], [ 361709.173102168657351, 256724.448558783333283 ], [ 361711.552199997007847, 256718.807399999350309 ], [ 361713.015006080968305, 256714.524461863096803 ], [ 361713.714836084109265, 256710.053041654173285 ], [ 361713.630587239225861, 256705.527971174044069 ], [ 361712.764799997210503, 256701.085700001567602 ], [ 361717.081399999558926, 256595.339299999177456 ], [ 361717.280699998140335, 256590.458299998193979 ], [ 361718.331699997186661, 256564.711199998855591 ], [ 361718.345299996435642, 256564.377199999988079 ], [ 361718.370300002396107, 256564.375700000673532 ], [ 361719.383799999952316, 256544.225299999117851 ], [ 361686.293999999761581, 256540.8597999997437 ], [ 361682.741499997675419, 256533.038800001144409 ], [ 361668.809799998998642, 256525.178700000047684 ], [ 361650.901399999856949, 256518.988200001418591 ], [ 361625.590899996459484, 256517.278499998152256 ], [ 361606.289599999785423, 256518.01630000025034 ], [ 361574.321800000965595, 256519.247800000011921 ], [ 361553.196800000965595, 256521.768399998545647 ], [ 361546.918300002813339, 256525.311999998986721 ], [ 361541.686099998652935, 256528.265000000596046 ], [ 361514.170100003480911, 256544.767700001597404 ], [ 361514.297100000083447, 256586.846200000494719 ], [ 361553.611599996685982, 256566.056000001728535 ], [ 361559.193899996578693, 256564.603399999439716 ], [ 361576.345899999141693, 256563.786800000816584 ], [ 361597.909699998795986, 256564.562399998307228 ], [ 361615.848800003528595, 256568.881099998950958 ], [ 361629.574199996888638, 256575.546799998730421 ], [ 361642.670500002801418, 256585.780699998140335 ], [ 361656.980099998414516, 256594.238000001758337 ], [ 361674.280299998819828, 256603.315799999982119 ], [ 361694.506499998271465, 256620.755899999290705 ], [ 361701.01240000128746, 256630.93470000103116 ], [ 361702.695299997925758, 256644.646600000560284 ], [ 361702.026500001549721, 256652.978799998760223 ], [ 361700.149499997496605, 256662.491999998688698 ], [ 361693.464599996805191, 256673.7516999989748 ], [ 361670.349500000476837, 256715.247400000691414 ], [ 361662.391699999570847, 256735.429699998348951 ], [ 361656.281000003218651, 256749.671900000423193 ], [ 361654.409100003540516, 256758.589600000530481 ], [ 361654.96339999884367, 256763.954199999570847 ], [ 361659.71169999986887, 256769.353799998760223 ], [ 361697.831900000572205, 256796.472100000828505 ], [ 361701.990900002419949, 256800.675700001418591 ], [ 361702.535300001502037, 256807.231300000101328 ], [ 361700.69820000231266, 256811.98030000180006 ], [ 361695.850400000810623, 256818.490899998694658 ], [ 361690.9679000005126, 256829.170000001788139 ], [ 361688.737800002098083, 256837.317299999296665 ], [ 361692.731600001454353, 256846.152499999850988 ], [ 361698.383900001645088, 256853.087799999862909 ], [ 361702.361900001764297, 256858.659800000488758 ], [ 361703.257100000977516, 256862.667500000447035 ], [ 361702.591700002551079, 256868.200800001621246 ], [ 361697.907200001180172, 256873.08500000089407 ], [ 361687.018700003623962, 256879.456000000238419 ], [ 361681.108800001442432, 256882.791499998420477 ], [ 361675.173299998044968, 256889.20380000025034 ], [ 361672.972999997437, 256893.185699999332428 ], [ 361671.084799997508526, 256896.862399999052286 ], [ 361670.120099999010563, 256901.162300001829863 ], [ 361668.83049999922514, 256907.305799998342991 ], [ 361668.786799997091293, 256912.536499999463558 ], [ 361670.902300000190735, 256918.708399999886751 ], [ 361674.844300001859665, 256928.587999999523163 ], [ 361679.451700001955032, 256932.934500001370907 ], [ 361681.982199996709824, 256934.256999999284744 ], [ 361725.611699998378754, 256929.012200001627207 ], [ 361829.755199998617172, 256850.138999998569489 ], [ 361838.568899996578693, 256781.421799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502040700", "MAP": "D9-1253-T75", "PARCEL_NAM": "5", "ACRE": "2.24", "LONGITUDE": -64.90472957, "LATITUDE": 18.34138493, "OBJECTID_1": 19913, "PARCEL_NO_": "105502040700", "Tax_Legal_": "DONOE ESTATE 5 NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 233900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 406.40073539100001, "SHAPE_Area": 10194.2792188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361515.429700002074242, 256961.946800000965595 ], [ 361531.184600003063679, 256961.649300001561642 ], [ 361626.320699997246265, 256940.94819999858737 ], [ 361620.218299999833107, 256845.660700000822544 ], [ 361609.9966000020504, 256848.253499999642372 ], [ 361515.15990000218153, 256872.60869999974966 ], [ 361515.316799998283386, 256924.570999998599291 ], [ 361515.429700002074242, 256961.946800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502040300", "MAP": "D9-1253-T75", "PARCEL_NAM": "8", "ACRE": "1.00", "LONGITUDE": -64.90540952000001, "LATITUDE": 18.34157978, "OBJECTID_1": 19909, "PARCEL_NO_": "105502040300", "Tax_Legal_": "REM. ESTATE RAPHUNE NEW QTR", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1053600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.82674509499998, "SHAPE_Area": 2774.68531136 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361459.698299996554852, 256966.631599999964237 ], [ 361515.429700002074242, 256961.946800000965595 ], [ 361515.316799998283386, 256924.570999998599291 ], [ 361515.15990000218153, 256872.60869999974966 ], [ 361490.869099996984005, 256878.846799999475479 ], [ 361492.368900001049042, 256901.037399999797344 ], [ 361491.449299998581409, 256914.32880000025034 ], [ 361488.954800002276897, 256923.174300000071526 ], [ 361483.213500000536442, 256934.526299998164177 ], [ 361477.522600002586842, 256939.968199998140335 ], [ 361463.638999998569489, 256960.541700001806021 ], [ 361461.194899998605251, 256963.477000001817942 ], [ 361459.698299996554852, 256966.631599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502040300", "MAP": "A9-692-T006", "PARCEL_NAM": "UNDIVIDED PORTION OR RAPUNE", "ACRE": null, "LONGITUDE": -64.90541541, "LATITUDE": 18.34085559, "OBJECTID_1": 19909, "PARCEL_NO_": "105502040300", "Tax_Legal_": "REM. ESTATE RAPHUNE NEW QTR", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1053600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.739835333, "SHAPE_Area": 1387.48228488 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361515.086900003254414, 256848.4037000015378 ], [ 361509.212700001895428, 256843.208200000226498 ], [ 361506.596000000834465, 256835.183899998664856 ], [ 361501.904500000178814, 256825.660399999469519 ], [ 361492.437399998307228, 256816.689800001680851 ], [ 361482.033699996769428, 256812.75 ], [ 361472.811700001358986, 256823.302000001072884 ], [ 361476.090899996459484, 256824.066100001335144 ], [ 361479.301700003445148, 256825.781100001186132 ], [ 361483.30629999935627, 256828.98030000180006 ], [ 361487.283900000154972, 256835.34569999948144 ], [ 361488.072300001978874, 256837.463100001215935 ], [ 361490.869099996984005, 256878.846799999475479 ], [ 361515.15990000218153, 256872.60869999974966 ], [ 361515.086900003254414, 256848.4037000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501040100", "MAP": "A9-692-T006", "PARCEL_NAM": "UNDIVIDED PORTION OF DONOE", "ACRE": null, "LONGITUDE": -64.90494551, "LATITUDE": 18.34095361, "OBJECTID_1": 19782, "PARCEL_NO_": "105501040100", "Tax_Legal_": "REM. 1. ESTATE DONOE NEW QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.87061769799999, "SHAPE_Area": 856.77603497999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361620.218299999833107, 256845.660700000822544 ], [ 361552.064400002360344, 256853.642900001257658 ], [ 361530.884800001978874, 256854.651700001209974 ], [ 361518.684799998998642, 256851.585999999195337 ], [ 361515.086900003254414, 256848.4037000015378 ], [ 361515.15990000218153, 256872.60869999974966 ], [ 361609.9966000020504, 256848.253499999642372 ], [ 361620.218299999833107, 256845.660700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504010500", "MAP": "D9-7512-T005", "PARCEL_NAM": "2F", "ACRE": "4.618", "LONGITUDE": -64.9043343, "LATITUDE": 18.3344113, "OBJECTID_1": 20384, "PARCEL_NO_": "105504010500", "Tax_Legal_": "2B,C,D,F,G,H,J,K & 2-E DONOE 2A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 876000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 684.086875287, "SHAPE_Area": 18913.1866973 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361716.011799998581409, 256046.250199999660254 ], [ 361713.965300001204014, 256044.451699998229742 ], [ 361705.186099998652935, 256047.49100000038743 ], [ 361696.34910000115633, 256050.550200000405312 ], [ 361603.810300000011921, 256084.811999998986721 ], [ 361548.244000002741814, 256150.781899999827147 ], [ 361496.674400001764297, 256166.86879999935627 ], [ 361497.620700001716614, 256189.906199999153614 ], [ 361498.083499997854233, 256230.228799998760223 ], [ 361498.125100001692772, 256230.648400001227856 ], [ 361612.444700002670288, 256194.2511 ], [ 361657.501500003039837, 256134.520799998193979 ], [ 361734.812899999320507, 256117.597600001841784 ], [ 361743.60980000346899, 256115.80799999833107 ], [ 361744.052500002086163, 256115.7179000005126 ], [ 361743.757700003683567, 256114.047400001436472 ], [ 361739.824400000274181, 256091.758600000292063 ], [ 361736.120200000703335, 256075.354400001466274 ], [ 361731.886900000274181, 256067.416900001466274 ], [ 361724.478500001132488, 256057.362700000405312 ], [ 361716.011799998581409, 256046.250199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504010500", "MAP": "D9-7512-T005", "PARCEL_NAM": "2E", "ACRE": "4.059", "LONGITUDE": -64.90401521, "LATITUDE": 18.33498016, "OBJECTID_1": 20384, "PARCEL_NO_": "105504010500", "Tax_Legal_": "2B,C,D,F,G,H,J,K & 2-E DONOE 2A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 876000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 686.14605192700003, "SHAPE_Area": 18677.518292600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361744.454700000584126, 256117.997099999338388 ], [ 361744.052500002086163, 256115.7179000005126 ], [ 361743.60980000346899, 256115.80799999833107 ], [ 361734.812899999320507, 256117.597600001841784 ], [ 361657.501500003039837, 256134.520799998193979 ], [ 361612.444700002670288, 256194.2511 ], [ 361498.125100001692772, 256230.648400001227856 ], [ 361499.568499997258186, 256245.22859999909997 ], [ 361503.409400001168251, 256267.635999999940395 ], [ 361587.38459999859333, 256254.391100000590086 ], [ 361628.576700001955032, 256246.495600000023842 ], [ 361669.788500003516674, 256236.278200000524521 ], [ 361712.650700002908707, 256221.641399998217821 ], [ 361762.891999997198582, 256209.365100000053644 ], [ 361765.789099998772144, 256205.967700000852346 ], [ 361767.555699996650219, 256203.748599998652935 ], [ 361767.817800000309944, 256202.261599998921156 ], [ 361765.618299998342991, 256196.534499999135733 ], [ 361752.740099996328354, 256163.53489999845624 ], [ 361749.349399998784065, 256145.73369999974966 ], [ 361744.454700000584126, 256117.997099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90530178, "LATITUDE": 18.32723565, "OBJECTID_1": 33128, "PARCEL_NO_": "107402020400", "Tax_Legal_": "FRENCHMAN BAY 14-29 FRENCHMAN BAY QTR", "Name": "HOWE, III. WILLIAM & MARY", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67400, "Improved_V": 259500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.81777647899997, "SHAPE_Area": 3314.5292717500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361567.51519999653101, 255368.479899998754263 ], [ 361545.305299997329712, 255325.235100001096725 ], [ 361509.962399996817112, 255309.113800000399351 ], [ 361497.075800001621246, 255307.319600000977516 ], [ 361473.7449000030756, 255301.006900001317263 ], [ 361515.076099999248981, 255371.428199999034405 ], [ 361567.51519999653101, 255368.479899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402010300", "MAP": "D9-5101-T91", "PARCEL_NAM": "2E", "ACRE": ".06", "LONGITUDE": -64.90516621, "LATITUDE": 18.32754842, "OBJECTID_1": 33123, "PARCEL_NO_": "107402010300", "Tax_Legal_": "DONOE EST. 2E NEW QUARTER", "Name": "HOWE, III WILLIAM & MARY-TRUSTEE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.211561444, "SHAPE_Area": 347.25870380800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361515.076099999248981, 255371.428199999034405 ], [ 361520.990199998021126, 255380.239799998700619 ], [ 361533.685199998319149, 255381.652300000190735 ], [ 361567.51519999653101, 255368.479899998754263 ], [ 361515.076099999248981, 255371.428199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-710-T007", "PARCEL_NAM": "2J", "ACRE": ".13", "LONGITUDE": -64.90580079, "LATITUDE": 18.3276461, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.75302972399999, "SHAPE_Area": 237.71426825500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361430.59910000115633, 255386.282800000160933 ], [ 361464.54389999806881, 255388.479299999773502 ], [ 361492.587099999189377, 255388.422899998724461 ], [ 361502.629000000655651, 255372.140599999576807 ], [ 361498.630500003695488, 255372.36939999833703 ], [ 361489.833999998867512, 255385.786800000816584 ], [ 361464.130000002682209, 255385.572399999946356 ], [ 361430.57039999961853, 255383.121599998325109 ], [ 361430.59910000115633, 255386.282800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-710-T007", "PARCEL_NAM": "2-REM", "ACRE": "53.90", "LONGITUDE": -64.90465903, "LATITUDE": 18.33025209, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3197.57638456, "SHAPE_Area": 164540.96312299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361699.066299997270107, 255700.393199998885393 ], [ 361718.380900003015995, 255689.809900000691414 ], [ 361751.367299996316433, 255764.157900001853704 ], [ 361751.299400001764297, 255761.74439999833703 ], [ 361765.251400001347065, 255465.311700001358986 ], [ 361883.882799997925758, 255336.660999998450279 ], [ 361856.381800003349781, 255346.568399999290705 ], [ 361827.279100000858307, 255355.196100000292063 ], [ 361818.377300001680851, 255358.923000000417233 ], [ 361793.34740000218153, 255362.728900000452995 ], [ 361769.950000002980232, 255364.226100001484156 ], [ 361718.358599998056889, 255362.326200000941753 ], [ 361711.909800000488758, 255362.062399998307228 ], [ 361694.966499999165535, 255363.190200001001358 ], [ 361656.247299998998642, 255364.773200001567602 ], [ 361598.17119999974966, 255366.831000000238419 ], [ 361567.51519999653101, 255368.479899998754263 ], [ 361533.685199998319149, 255381.652300000190735 ], [ 361520.990199998021126, 255380.239799998700619 ], [ 361515.076099999248981, 255371.428199999034405 ], [ 361502.629000000655651, 255372.140599999576807 ], [ 361492.587099999189377, 255388.422899998724461 ], [ 361464.54389999806881, 255388.479299999773502 ], [ 361430.59910000115633, 255386.282800000160933 ], [ 361430.851000003516674, 255414.013099998235703 ], [ 361432.874300003051758, 255460.470199998468161 ], [ 361431.810900002717972, 255490.647900000214577 ], [ 361431.758699998259544, 255496.769200000911951 ], [ 361432.460699997842312, 255509.018300000578165 ], [ 361430.499300003051758, 255549.9543999992311 ], [ 361429.660599999129772, 255553.747299998998642 ], [ 361428.686999998986721, 255573.370999999344349 ], [ 361427.032999999821186, 255578.212600000202656 ], [ 361424.587099999189377, 255581.359000001102686 ], [ 361422.753300003707409, 255607.308499999344349 ], [ 361418.572499997913837, 255624.795000001788139 ], [ 361416.941899999976158, 255626.892599999904633 ], [ 361411.992600001394749, 255639.939899999648333 ], [ 361407.001800000667572, 255657.842000000178814 ], [ 361401.915799997746944, 255686.93129999935627 ], [ 361404.729299999773502, 255735.294799998402596 ], [ 361405.323399998247623, 255760.208700001239777 ], [ 361406.831699997186661, 255772.464400000870228 ], [ 361412.312299996614456, 255791.718800000846386 ], [ 361418.480499997735023, 255824.910999998450279 ], [ 361419.94200000166893, 255842.654800001531839 ], [ 361422.287299998104572, 255851.32880000025034 ], [ 361423.75959999859333, 255867.806200001388788 ], [ 361433.190800003707409, 255896.592099998146296 ], [ 361439.396799996495247, 255925.351599998772144 ], [ 361439.373400002717972, 255928.095600001513958 ], [ 361441.754600003361702, 255932.548099998384714 ], [ 361444.108800001442432, 255940.166700001806021 ], [ 361446.49889999628067, 255943.563799999654293 ], [ 361449.641500003635883, 255953.299800001084805 ], [ 361463.628200002014637, 256015.264699999243021 ], [ 361466.806699998676777, 256020.779100000858307 ], [ 361470.743000000715256, 256031.999299999326468 ], [ 361473.917900003492832, 256037.935899998992682 ], [ 361473.901699997484684, 256039.83559999987483 ], [ 361476.291900001466274, 256043.232700001448393 ], [ 361477.79839999973774, 256055.699499998241663 ], [ 361480.177799999713898, 256060.363099999725819 ], [ 361482.566100001335144, 256063.971200000494719 ], [ 361488.874600000679493, 256080.699200000613928 ], [ 361489.657499998807907, 256083.44990000128746 ], [ 361490.408100001513958, 256089.999899998307228 ], [ 361491.178400002419949, 256094.228100001811981 ], [ 361494.123199999332428, 256127.182799998670816 ], [ 361495.61710000038147, 256141.127199999988079 ], [ 361496.674400001764297, 256166.86879999935627 ], [ 361548.244000002741814, 256150.781899999827147 ], [ 361603.810300000011921, 256084.811999998986721 ], [ 361696.34910000115633, 256050.550200000405312 ], [ 361705.186099998652935, 256047.49100000038743 ], [ 361713.965300001204014, 256044.451699998229742 ], [ 361708.807099997997284, 256039.918800000101328 ], [ 361698.549300000071526, 256030.90430000051856 ], [ 361687.436800003051758, 256017.67509999871254 ], [ 361673.149300001561642, 255996.508400000631809 ], [ 361656.983300000429153, 255970.422400001436472 ], [ 361648.92849999666214, 255958.958299998193979 ], [ 361645.676600001752377, 255954.74100000038743 ], [ 361645.66889999806881, 255954.738400001078844 ], [ 361645.670500002801418, 255954.7331000007689 ], [ 361636.945699997246265, 255941.007199998944998 ], [ 361630.941299997270107, 255935.108199998736382 ], [ 361629.162900000810623, 255933.36089999973774 ], [ 361621.926299996674061, 255929.128199998289347 ], [ 361610.866599999368191, 255924.349300000816584 ], [ 361607.357299998402596, 255922.918299999088049 ], [ 361602.908900000154972, 255921.104400001466274 ], [ 361582.73929999768734, 255912.879999998956919 ], [ 361571.984899997711182, 255908.803100001066923 ], [ 361526.093699999153614, 255888.434599999338388 ], [ 361515.524999998509884, 255883.332499999552965 ], [ 361510.605099998414516, 255872.217099998146296 ], [ 361511.516199998557568, 255861.648299999535084 ], [ 361517.347199998795986, 255848.3462999984622 ], [ 361519.513599999248981, 255846.890799999237061 ], [ 361490.083599999547005, 255789.231899999082088 ], [ 361489.660199999809265, 255779.918499998748302 ], [ 361466.314999997615814, 255762.762600000947714 ], [ 361460.952131548721809, 255756.935375678585842 ], [ 361456.004444811376743, 255750.751744281704305 ], [ 361451.495559361181222, 255744.241225615667645 ], [ 361447.446999996900558, 255737.434900000691414 ], [ 361444.46473659388721, 255731.546342554298462 ], [ 361441.954196042788681, 255725.441738558467478 ], [ 361439.930890148913022, 255719.158806355757406 ], [ 361438.407320254540537, 255712.736366120021557 ], [ 361437.392899997532368, 255706.214099999517202 ], [ 361436.097998326877132, 255698.133968286943855 ], [ 361435.576192293199711, 255689.967388997378293 ], [ 361435.832197338051628, 255681.788161634933203 ], [ 361436.86370000243187, 255673.670200001448393 ], [ 361438.288729849737138, 255665.689266001485521 ], [ 361440.315505190577824, 255657.839539936510846 ], [ 361442.932329248113092, 255650.166323568526423 ], [ 361446.124099999666214, 255642.713899999856949 ], [ 361460.67620000243187, 255617.313900001347065 ], [ 361474.434600003063679, 255594.55970000103116 ], [ 361484.7533999979496, 255576.303399998694658 ], [ 361491.368000000715256, 255569.424199998378754 ], [ 361524.970100000500679, 255539.790800001472235 ], [ 361534.614200003445148, 255561.116300001740456 ], [ 361550.753799997270107, 255572.228799998760223 ], [ 361552.38359116675565, 255573.288381610182114 ], [ 361553.807178574730642, 255574.612138135853456 ], [ 361554.9822537668515, 255576.160728055780055 ], [ 361555.873893973592203, 255577.888127890531905 ], [ 361556.455600000917912, 255579.743000000715256 ], [ 361555.926399998366833, 255615.461800001561642 ], [ 361517.680799998342991, 255616.149700000882149 ], [ 361516.695890846953262, 255623.147273039096035 ], [ 361516.258342032786459, 255630.200260030222125 ], [ 361516.370805639890023, 255637.265911196154775 ], [ 361517.032600000500679, 255644.301399998366833 ], [ 361518.206436048320029, 255652.700815237214556 ], [ 361519.971103149699047, 255660.996236711944221 ], [ 361522.317771695845295, 255669.146157825452974 ], [ 361525.234700001776218, 255677.1097999997437 ], [ 361528.999446351546794, 255684.586149062990444 ], [ 361533.219960661605, 255691.815005774318706 ], [ 361537.880041486700065, 255698.768620452814503 ], [ 361542.961800001561642, 255705.420299999415874 ], [ 361547.165473290893715, 255710.747709336370463 ], [ 361551.785856412025169, 255715.718043246743036 ], [ 361556.79273518739501, 255720.298799111769767 ], [ 361562.1533680196153, 255724.460021889361087 ], [ 361567.832699999213219, 255728.174499999731779 ], [ 361577.744988741527777, 255733.755370900937123 ], [ 361587.989116148790345, 255738.700817472417839 ], [ 361598.524400003254414, 255742.991200000047684 ], [ 361609.372400000691414, 255705.155699998140335 ], [ 361616.437585229985416, 255706.610936827899422 ], [ 361623.59672896459233, 255707.494801942666527 ], [ 361630.803700000047684, 255707.801600001752377 ], [ 361656.468299999833107, 255707.007800001651049 ], [ 361677.899599999189377, 255706.47859999909997 ], [ 361685.086278720933478, 255704.926201274356572 ], [ 361692.152480140211992, 255702.894677129253978 ], [ 361699.066299997270107, 255700.393199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504010600", "MAP": "D9-365-T63", "PARCEL_NAM": "11", "ACRE": "25.23", "LONGITUDE": -64.90151584, "LATITUDE": 18.33238694, "OBJECTID_1": 20386, "PARCEL_NO_": "105504010600", "Tax_Legal_": "ESTATE NEW HERNHUT NEW QUARTER", "Name": "MEM. MORAVIAN CHURCH", "Address": "PO Box 8330", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 785100, "Improved_V": 287800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1311.7728761599999, "SHAPE_Area": 91067.470570100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361870.528800003230572, 256050.483500000089407 ], [ 361888.030500002205372, 256117.663499999791384 ], [ 361897.885399997234344, 256155.491399999707937 ], [ 361900.308600001037121, 256153.516399998217821 ], [ 361907.604999996721745, 256148.932100001722574 ], [ 361945.634800001978874, 256133.622400000691414 ], [ 361958.613099999725819, 256124.651599999517202 ], [ 361967.559799998998642, 256115.647799998521805 ], [ 361972.451700001955032, 256109.355000000447035 ], [ 361974.933499999344349, 256101.987100001424551 ], [ 361976.609099999070168, 256094.612500000745058 ], [ 361977.499899998307228, 256084.698399998247623 ], [ 361973.558300003409386, 256074.1114999987185 ], [ 361967.203100003302097, 256062.871500000357628 ], [ 361978.505800001323223, 256061.275199998170137 ], [ 361984.826899997889996, 256076.525699999183416 ], [ 361986.35530000180006, 256082.991300001740456 ], [ 362051.564699999988079, 256082.017000000923872 ], [ 362051.014600001275539, 256068.834800001233816 ], [ 362051.737499997019768, 255983.981100000441074 ], [ 362052.878300003707409, 255944.727000001817942 ], [ 362044.213299997150898, 255861.101199999451637 ], [ 362028.887800000607967, 255718.134199999272823 ], [ 361751.828400000929832, 255780.547200001776218 ], [ 361756.021099999547005, 255929.577399998903275 ], [ 361870.528800003230572, 256050.483500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504011400", "MAP": "D9-365-T63", "PARCEL_NAM": "9 & 10", "ACRE": null, "LONGITUDE": -64.9000483, "LATITUDE": 18.33135207, "OBJECTID_1": 20394, "PARCEL_NO_": "105504011400", "Tax_Legal_": "PC1 OF8 9&10 NEW HERNHUT NEW QTR", "Name": "SEBASTIEN FAMILY TRUST", "Address": "PO Box 8176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 93900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 486.47152192700003, "SHAPE_Area": 10352.717548799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362098.027999997138977, 255702.559000000357628 ], [ 362038.337899997830391, 255716.005399998277426 ], [ 362054.443400003015995, 255897.06529999896884 ], [ 362104.270300000905991, 255896.131999999284744 ], [ 362104.16330000013113, 255887.940400000661612 ], [ 362098.027999997138977, 255702.559000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012600", "MAP": "D9-365-T63", "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.89997415000001, "LATITUDE": 18.332457, "OBJECTID_1": 20405, "PARCEL_NO_": "105504012600", "Tax_Legal_": "7 NEW HERNHUT NEW QTR", "Name": "FRANCIS, IVER, TROTMAN, RUEBEN", "Address": "1591 SW 189th Ter", "City": "Pembroke Pines", "State": "Florida", "Zip": 33029, "Country": "United States", "Land_Value": 36600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.30852816199999, "SHAPE_Area": 2495.3024306399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362104.270300000905991, 255896.131999999284744 ], [ 362054.443400003015995, 255897.06529999896884 ], [ 362058.536799997091293, 255943.084600001573563 ], [ 362058.491899996995926, 255948.361600000411272 ], [ 362097.997599996626377, 255949.107099998742342 ], [ 362104.448100000619888, 255949.15989999845624 ], [ 362104.651299998164177, 255925.30799999833107 ], [ 362104.270300000905991, 255896.131999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504020300", "MAP": "D9-7263-T003", "PARCEL_NAM": "14A", "ACRE": ".5128", "LONGITUDE": -64.90802897, "LATITUDE": 18.33838503, "OBJECTID_1": 20430, "PARCEL_NO_": "105504020300", "Tax_Legal_": "14A & 14 REM. ESTATE RAPHUNE 5B NEW QTR", "Name": "SINGH, INDER & GURJEET", "Address": "9007 Havensight Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98400, "Improved_V": 360900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.504250254, "SHAPE_Area": 1732.70889427 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361206.887199997901917, 256607.872400000691414 ], [ 361252.801100000739098, 256567.105099998414516 ], [ 361245.089500002563, 256558.0625 ], [ 361226.64919999986887, 256539.858899999409914 ], [ 361222.79389999806881, 256535.529100000858307 ], [ 361221.075300000607967, 256534.225499998778105 ], [ 361220.192699998617172, 256536.366999998688698 ], [ 361216.183499999344349, 256550.515700001269579 ], [ 361208.218800000846386, 256572.367199998348951 ], [ 361200.68299999833107, 256591.297899998724461 ], [ 361206.887199997901917, 256607.872400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504020500", "MAP": "D9-7263-T003", "PARCEL_NAM": "16a", "ACRE": ".6466", "LONGITUDE": -64.90722699, "LATITUDE": 18.33969308, "OBJECTID_1": 20431, "PARCEL_NO_": "105504020500", "Tax_Legal_": "16A ESTATE RAPHUNE No. 5B NEW QTR.", "Name": "PIMENTEL, JOSE", "Address": "PO Box 308175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.59139039199999, "SHAPE_Area": 2870.67221023 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361323.091600000858307, 256757.545899998396635 ], [ 361338.823100000619888, 256748.059399999678135 ], [ 361332.261399999260902, 256733.700800001621246 ], [ 361326.33049999922514, 256719.039599999785423 ], [ 361321.27139999717474, 256703.526200000196695 ], [ 361316.701899997889996, 256681.140700001269579 ], [ 361314.485200002789497, 256673.854600001126528 ], [ 361284.687399998307228, 256683.452399998903275 ], [ 361282.657300002872944, 256719.535199999809265 ], [ 361291.424699999392033, 256739.823800001293421 ], [ 361321.0371999964118, 256756.513700000941753 ], [ 361323.091600000858307, 256757.545899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504020100", "MAP": "D9-7263-T003", "PARCEL_NAM": "15 REM", "ACRE": "1.1525", "LONGITUDE": -64.90773262, "LATITUDE": 18.33934234, "OBJECTID_1": 20428, "PARCEL_NO_": "105504020100", "Tax_Legal_": "15 ESTATE RAPHUNE 5B NEW QTR", "Name": "THE EPISCOPAL CHURCH OF THE VI", "Address": "#2 Domini Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.54202666899999, "SHAPE_Area": 4818.3998868999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361284.687399998307228, 256683.452399998903275 ], [ 361248.834100000560284, 256616.155699998140335 ], [ 361215.663099996745586, 256631.317099999636412 ], [ 361216.433399997651577, 256635.545299999415874 ], [ 361234.563199996948242, 256684.456300001591444 ], [ 361248.740599997341633, 256724.046900000423193 ], [ 361251.886699996888638, 256733.360700000077486 ], [ 361254.253499999642372, 256739.501800000667572 ], [ 361262.945100001990795, 256732.9831000007689 ], [ 361271.868900001049042, 256730.72749999910593 ], [ 361287.975000001490116, 256737.87950000166893 ], [ 361291.424699999392033, 256739.823800001293421 ], [ 361282.657300002872944, 256719.535199999809265 ], [ 361284.687399998307228, 256683.452399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504020200", "MAP": "D9-7263-T003", "PARCEL_NAM": "16 REM", "ACRE": ".6174", "LONGITUDE": -64.90744971, "LATITUDE": 18.33904025, "OBJECTID_1": 20429, "PARCEL_NO_": "105504020200", "Tax_Legal_": "16 REMAINDER ESTATE RAHHUNE No.5B NEW QTR.", "Name": "WALLACE, DAPHNE L. & JACKWREL A.", "Address": "PO Box 11184", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.87024576900001, "SHAPE_Area": 2675.2178854 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361248.834100000560284, 256616.155699998140335 ], [ 361284.687399998307228, 256683.452399998903275 ], [ 361314.485200002789497, 256673.854600001126528 ], [ 361308.706000000238419, 256654.858800001442432 ], [ 361301.560300000011921, 256630.302999999374151 ], [ 361290.739600002765656, 256610.473299998790026 ], [ 361248.929499998688698, 256616.112100001424551 ], [ 361248.834100000560284, 256616.155699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504020300", "MAP": "D9-7263-T003", "PARCEL_NAM": "14 REM", "ACRE": ".5597", "LONGITUDE": -64.9078249, "LATITUDE": 18.33865444, "OBJECTID_1": 20430, "PARCEL_NO_": "105504020300", "Tax_Legal_": "14A & 14 REM. ESTATE RAPHUNE 5B NEW QTR", "Name": "SINGH, INDER & GURJEET", "Address": "9007 Havensight Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98400, "Improved_V": 360900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.83620545100001, "SHAPE_Area": 2510.8846469800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361252.801100000739098, 256567.105099998414516 ], [ 361206.887199997901917, 256607.872400000691414 ], [ 361215.663099996745586, 256631.317099999636412 ], [ 361248.929499998688698, 256616.112100001424551 ], [ 361290.739600002765656, 256610.473299998790026 ], [ 361290.487800002098083, 256610.011999998241663 ], [ 361266.498800002038479, 256583.166999999433756 ], [ 361252.801100000739098, 256567.105099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504020200", "MAP": "D9-7263-T003", "PARCEL_NAM": "6-1", "ACRE": null, "LONGITUDE": -64.90695227000001, "LATITUDE": 18.34006279, "OBJECTID_1": 20429, "PARCEL_NO_": "105504020200", "Tax_Legal_": "16 REMAINDER ESTATE RAHHUNE No.5B NEW QTR.", "Name": "WALLACE, DAPHNE L. & JACKWREL A.", "Address": "PO Box 11184", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.593493078100003, "SHAPE_Area": 204.80222014099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361338.823100000619888, 256748.059399999678135 ], [ 361323.091600000858307, 256757.545899998396635 ], [ 361341.110500000417233, 256766.599399998784065 ], [ 361343.529399998486042, 256766.619199998676777 ], [ 361345.151000000536442, 256765.576999999582767 ], [ 361343.301600001752377, 256757.859200000762939 ], [ 361338.823100000619888, 256748.059399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502041000", "MAP": "D9-7516-T005", "PARCEL_NAM": "13 REM", "ACRE": "1.042", "LONGITUDE": -64.90592991, "LATITUDE": 18.34153851, "OBJECTID_1": 19916, "PARCEL_NO_": "105502041000", "Tax_Legal_": "13 ESTATE RAPHUNE(REVISED) 5BA NEW QTR.", "Name": "DOWE, CARLTON & JACQUELINE M.S.", "Address": "PO Box 1143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 81400, "Improved_V": 454200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.493441813, "SHAPE_Area": 4134.5995747999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361402.856600001454353, 256937.471599999815226 ], [ 361449.64360000193119, 256966.241500001400709 ], [ 361452.347099997103214, 256960.871500000357628 ], [ 361467.864799998700619, 256937.778200000524521 ], [ 361476.003499999642372, 256928.978900000452995 ], [ 361479.271899998188019, 256923.939399998635054 ], [ 361482.599600002169609, 256911.934300001710653 ], [ 361483.495800003409386, 256901.386999998241663 ], [ 361481.114699997007847, 256896.934500001370907 ], [ 361473.073100000619888, 256894.33559999987483 ], [ 361454.553099997341633, 256891.228700000792742 ], [ 361433.594400003552437, 256890.423900000751019 ], [ 361425.515100002288818, 256892.257599998265505 ], [ 361417.41780000180006, 256896.202100001275539 ], [ 361411.733999997377396, 256900.799600001424551 ], [ 361406.838600002229214, 256907.514499999582767 ], [ 361407.558600001037121, 256917.652899999171495 ], [ 361403.001999996602535, 256936.858800001442432 ], [ 361402.856600001454353, 256937.471599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502041500", "MAP": "D9--6153-T95", "PARCEL_NAM": "17-3", "ACRE": ".8209", "LONGITUDE": -64.9066806, "LATITUDE": 18.34154481, "OBJECTID_1": 19921, "PARCEL_NO_": "105502041500", "Tax_Legal_": "RAPHUNE ESTATE 17-3 NEW QTR.", "Name": "FRANCIS, GEORGIA A", "Address": "14-6 Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83200, "Improved_V": 210100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.76575305700001, "SHAPE_Area": 3095.1071396799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361373.963200002908707, 256885.713899999856949 ], [ 361370.416900001466274, 256882.275100000202656 ], [ 361322.814400002360344, 256932.965900000184774 ], [ 361329.88289999961853, 256948.681200001388788 ], [ 361332.367700003087521, 256952.657699998468161 ], [ 361375.448100000619888, 256943.021800000220537 ], [ 361397.138599999248981, 256938.170299999415874 ], [ 361396.98030000180006, 256926.010299999266863 ], [ 361397.0675999969244, 256918.622499998658895 ], [ 361395.5287000015378, 256909.955099999904633 ], [ 361392.351999998092651, 256904.229600001126528 ], [ 361377.161499999463558, 256888.906500000506639 ], [ 361373.963200002908707, 256885.713899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502041500", "MAP": "D9--6153-T95", "PARCEL_NAM": "17-4", "ACRE": ".7899", "LONGITUDE": -64.90661339, "LATITUDE": 18.34201104, "OBJECTID_1": 19921, "PARCEL_NO_": "105502041500", "Tax_Legal_": "RAPHUNE ESTATE 17-3 NEW QTR.", "Name": "FRANCIS, GEORGIA A", "Address": "14-6 Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83200, "Improved_V": 210100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.170755781, "SHAPE_Area": 3359.4792922900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361384.230200000107288, 257015.980500001460314 ], [ 361403.001999996602535, 256936.858800001442432 ], [ 361375.448100000619888, 256943.021800000220537 ], [ 361332.367700003087521, 256952.657699998468161 ], [ 361333.064999997615814, 256953.773499999195337 ], [ 361334.632700003683567, 256959.063700001686811 ], [ 361337.008400000631809, 256964.149399999529123 ], [ 361339.396799996495247, 256967.757500000298023 ], [ 361340.190499998629093, 256969.241700001060963 ], [ 361340.508599996566772, 256970.625799998641014 ], [ 361340.968099996447563, 256972.625500001013279 ], [ 361342.553700000047684, 256975.804900001734495 ], [ 361360.773400001227856, 257014.162000000476837 ], [ 361384.230200000107288, 257015.980500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502041900", "MAP": "D9-7516-T005", "PARCEL_NAM": "13-1", "ACRE": ".506", "LONGITUDE": -64.90619304000001, "LATITUDE": 18.34208173, "OBJECTID_1": 19924, "PARCEL_NO_": "105502041900", "Tax_Legal_": "13-1 ESTATE RAPHUNE 5BA NEW QTR.", "Name": "DOWE, ROANE E.", "Address": "PO Box 631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 54000, "Improved_V": 238900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.06378872100001, "SHAPE_Area": 3147.2404993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361449.64360000193119, 256966.241500001400709 ], [ 361402.856600001454353, 256937.471599999815226 ], [ 361384.230200000107288, 257015.980500001460314 ], [ 361415.570299997925758, 257018.410100001841784 ], [ 361422.267800003290176, 257013.833700001239777 ], [ 361429.816100001335144, 257008.345300000160933 ], [ 361432.644900001585484, 257001.873500000685453 ], [ 361435.942100003361702, 256993.456700000911951 ], [ 361449.64360000193119, 256966.241500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502040900", "MAP": "D9-6153-T95", "PARCEL_NAM": "12 REM", "ACRE": ".1901", "LONGITUDE": -64.9059245, "LATITUDE": 18.34124189, "OBJECTID_1": 19915, "PARCEL_NO_": "105502040900", "Tax_Legal_": "RAPHUNE ESTATE 12 5BA NEW QTR.", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.226090489, "SHAPE_Area": 766.44357159499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361483.495800003409386, 256901.386999998241663 ], [ 361482.055799998342991, 256881.110199999064207 ], [ 361481.222599998116493, 256884.269799999892712 ], [ 361479.59910000115633, 256885.522999998182058 ], [ 361476.370300002396107, 256885.918800000101328 ], [ 361457.853900000452995, 256882.389800000935793 ], [ 361441.736599996685982, 256881.202399998903275 ], [ 361431.251000002026558, 256881.538800001144409 ], [ 361421.553599998354912, 256883.992499999701977 ], [ 361413.456299997866154, 256887.936999998986721 ], [ 361405.339299999177456, 256894.203400000929832 ], [ 361406.838600002229214, 256907.514499999582767 ], [ 361411.733999997377396, 256900.799600001424551 ], [ 361417.41780000180006, 256896.202100001275539 ], [ 361425.515100002288818, 256892.257599998265505 ], [ 361433.594400003552437, 256890.423900000751019 ], [ 361454.553099997341633, 256891.228700000792742 ], [ 361473.073100000619888, 256894.33559999987483 ], [ 361481.114699997007847, 256896.934500001370907 ], [ 361483.495800003409386, 256901.386999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502040800", "MAP": "D9-7826-T006", "PARCEL_NAM": "11-A", "ACRE": ".61", "LONGITUDE": -64.90609129000001, "LATITUDE": 18.34383094, "OBJECTID_1": 19914, "PARCEL_NO_": "105502040800", "Tax_Legal_": "RAPHUNE ESTATE 11 5BA NEW QTR.", "Name": "GAREE, DALE & JULIETTE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 116000, "Improved_V": 268700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.336002103, "SHAPE_Area": 2060.5719376500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361439.569200001657009, 257135.625500001013279 ], [ 361407.994199998676777, 257150.487399999052286 ], [ 361407.531999997794628, 257204.739999998360872 ], [ 361408.257399998605251, 257214.245099999010563 ], [ 361420.388099998235703, 257210.122499998658895 ], [ 361439.001599997282028, 257202.253299999982119 ], [ 361439.569200001657009, 257135.625500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90542675, "LATITUDE": 18.34307498, "OBJECTID_1": 19909, "PARCEL_NO_": "105502040300", "Tax_Legal_": "REM. ESTATE RAPHUNE NEW QTR", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1053600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 738.48875388299996, "SHAPE_Area": 21272.462349500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361563.202500000596046, 257199.892299998551607 ], [ 361515.429700002074242, 256961.946800000965595 ], [ 361459.698299996554852, 256966.631599999964237 ], [ 361450.520499996840954, 256985.976700000464916 ], [ 361448.074600003659725, 256989.123100001364946 ], [ 361444.78999999910593, 256996.062300000339746 ], [ 361441.489200003445148, 257004.901200000196695 ], [ 361442.237999998033047, 257011.662300001829863 ], [ 361449.354500003159046, 257028.1858000010252 ], [ 361450.835900001227856, 257043.607799999415874 ], [ 361451.921700000762939, 257052.401700001209974 ], [ 361452.220100000500679, 257070.427999999374151 ], [ 361450.478000000119209, 257085.612500000745058 ], [ 361451.609099999070168, 257155.010299999266863 ], [ 361442.634999997913837, 257154.364799998700619 ], [ 361443.561800003051758, 257140.229100000113249 ], [ 361442.807599999010563, 257134.101199999451637 ], [ 361439.675899997353554, 257123.098700001835823 ], [ 361439.569200001657009, 257135.625500001013279 ], [ 361439.001599997282028, 257202.253299999982119 ], [ 361449.52139999717474, 257197.906399998813868 ], [ 361460.02139999717474, 257195.881400000303984 ], [ 361487.450499996542931, 257194.417199999094009 ], [ 361504.377599999308586, 257195.188999999314547 ], [ 361516.45610000193119, 257197.187699999660254 ], [ 361563.202500000596046, 257199.892299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105504030100", "MAP": "D9-8331-T009", "PARCEL_NAM": "L", "ACRE": "1.709", "LONGITUDE": -64.90725457000001, "LATITUDE": 18.33846751, "OBJECTID_1": 20432, "PARCEL_NO_": "105504030100", "Tax_Legal_": "PARCEL C,D,E,F,G&H EST.RAPHUNE 5B NEW QTR.&PARCEL 1-2 THRU 1-11 ESTATE DONOE 2A NEW QUARTER", "Name": "MARKET SQUARE EAST INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3677300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 490.08647983200001, "SHAPE_Area": 8614.69225147 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361242.956299997866154, 256497.272100001573563 ], [ 361233.104500003159046, 256497.581599999219179 ], [ 361223.255900003015995, 256497.499600000679493 ], [ 361218.556699998676777, 256498.126899998635054 ], [ 361223.136699996888638, 256511.266100000590086 ], [ 361224.684600003063679, 256518.878100000321865 ], [ 361228.631700001657009, 256528.831799998879433 ], [ 361246.212300002574921, 256547.551899999380112 ], [ 361255.828699998557568, 256554.596700001507998 ], [ 361261.424400001764297, 256560.342099998146296 ], [ 361285.347599998116493, 256591.779699999839067 ], [ 361286.951200000941753, 256592.848299998790026 ], [ 361299.693999998271465, 256611.528799999505281 ], [ 361302.856299996376038, 256618.942999999970198 ], [ 361304.454499997198582, 256620.644799999892712 ], [ 361308.396200001239777, 256631.231800001114607 ], [ 361309.990800000727177, 256633.355700001120567 ], [ 361316.28490000218153, 256651.772399999201298 ], [ 361317.051600001752377, 256656.422699999064207 ], [ 361318.060000002384186, 256658.581199999898672 ], [ 361375.807499997317791, 256626.979299999773502 ], [ 361372.909500002861023, 256598.602400001138449 ], [ 361374.605999998748302, 256584.127700001001358 ], [ 361364.757500000298023, 256584.0456000007689 ], [ 361348.648400001227856, 256578.820599999278784 ], [ 361332.54900000244379, 256572.421000000089407 ], [ 361320.8091000020504, 256562.925000000745058 ], [ 361306.308399997651577, 256553.797499999403954 ], [ 361293.754399999976158, 256547.427400000393391 ], [ 361287.855099998414516, 256546.203499998897314 ], [ 361280.803300000727177, 256541.445700000971556 ], [ 361274.952899999916553, 256534.348299998790026 ], [ 361269.115599997341633, 256525.684599999338388 ], [ 361259.781700000166893, 256511.118000000715256 ], [ 361251.964800000190735, 256503.61259999871254 ], [ 361242.956299997866154, 256497.272100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105504030100", "MAP": "D9-7950-T007", "PARCEL_NAM": "C", "ACRE": "6.579", "LONGITUDE": -64.90699257, "LATITUDE": 18.33594651, "OBJECTID_1": 20432, "PARCEL_NO_": "105504030100", "Tax_Legal_": "PARCEL C,D,E,F,G&H EST.RAPHUNE 5B NEW QTR.&PARCEL 1-2 THRU 1-11 ESTATE DONOE 2A NEW QUARTER", "Name": "MARKET SQUARE EAST INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3677300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 959.86759232999998, "SHAPE_Area": 25967.099610599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361469.042700000107288, 256327.16330000013113 ], [ 361493.289300002157688, 256311.882699999958277 ], [ 361512.048699997365475, 256313.052400000393391 ], [ 361507.710699997842312, 256286.645899999886751 ], [ 361507.624200001358986, 256286.11939999833703 ], [ 361506.534000001847744, 256279.482799999415874 ], [ 361483.923100002110004, 256283.308499999344349 ], [ 361458.095899999141693, 256286.052400000393391 ], [ 361441.165100000798702, 256285.702799998223782 ], [ 361424.248700000345707, 256283.664500001817942 ], [ 361402.521499998867512, 256278.420400001108646 ], [ 361401.880800001323223, 256278.215799998492002 ], [ 361337.382799997925758, 256257.622299998998642 ], [ 361287.540700003504753, 256239.693599998950958 ], [ 361269.782700002193451, 256235.47239999845624 ], [ 361268.226899996399879, 256235.102600000798702 ], [ 361249.699699997901917, 256232.839999999850988 ], [ 361231.962600000202656, 256232.48369999974966 ], [ 361213.403099998831749, 256234.020599998533726 ], [ 361156.853299997746944, 256246.223400000482798 ], [ 361140.673100002110004, 256252.423700001090765 ], [ 361129.329000003635883, 256258.874800000339746 ], [ 361129.180399999022484, 256258.987199999392033 ], [ 361121.968400001525879, 256264.445300001651049 ], [ 361117.674800001084805, 256267.694699998944998 ], [ 361129.104299999773502, 256268.118700001388788 ], [ 361139.505599997937679, 256271.046700000762939 ], [ 361158.781999997794628, 256276.473200000822544 ], [ 361183.60700000077486, 256298.464800000190735 ], [ 361200.664700001478195, 256308.382100000977516 ], [ 361215.254199996590614, 256311.017299998551607 ], [ 361227.670400001108646, 256304.696899998933077 ], [ 361242.617600001394749, 256298.118400000035763 ], [ 361258.400700002908707, 256292.384799998253584 ], [ 361272.48650000244379, 256288.033399999141693 ], [ 361286.527999997138977, 256288.988299999386072 ], [ 361299.129299998283386, 256294.702599998563528 ], [ 361304.723499998450279, 256297.239399999380112 ], [ 361323.743299998342991, 256307.731800001114607 ], [ 361340.770700000226498, 256321.279800001531839 ], [ 361348.418099999427795, 256355.051899999380112 ], [ 361349.144100002944469, 256364.121399998664856 ], [ 361352.004699997603893, 256375.655900001525879 ], [ 361354.977799996733665, 256387.644099999219179 ], [ 361369.965700000524521, 256392.667100001126528 ], [ 361385.543600000441074, 256397.887800000607967 ], [ 361411.13910000026226, 256401.59739999845624 ], [ 361416.012800000607967, 256398.625799998641014 ], [ 361439.421800002455711, 256384.352600000798702 ], [ 361452.810300000011921, 256345.507399998605251 ], [ 361469.042700000107288, 256327.16330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504030100", "MAP": "D9-7950-T007", "PARCEL_NAM": "G", "ACRE": "1.475", "LONGITUDE": -64.9070809, "LATITUDE": 18.33623523, "OBJECTID_1": 20432, "PARCEL_NO_": "105504030100", "Tax_Legal_": "PARCEL C,D,E,F,G&H EST.RAPHUNE 5B NEW QTR.&PARCEL 1-2 THRU 1-11 ESTATE DONOE 2A NEW QUARTER", "Name": "MARKET SQUARE EAST INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3677300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1064.5784381799999, "SHAPE_Area": 4910.6165984400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361299.129299998283386, 256294.702599998563528 ], [ 361286.527999997138977, 256288.988299999386072 ], [ 361272.48650000244379, 256288.033399999141693 ], [ 361258.400700002908707, 256292.384799998253584 ], [ 361242.617600001394749, 256298.118400000035763 ], [ 361227.670400001108646, 256304.696899998933077 ], [ 361215.254199996590614, 256311.017299998551607 ], [ 361200.664700001478195, 256308.382100000977516 ], [ 361183.60700000077486, 256298.464800000190735 ], [ 361158.781999997794628, 256276.473200000822544 ], [ 361139.505599997937679, 256271.046700000762939 ], [ 361129.104299999773502, 256268.118700001388788 ], [ 361117.674800001084805, 256267.694699998944998 ], [ 361115.531800001859665, 256269.316500000655651 ], [ 361113.892200000584126, 256272.469500001519918 ], [ 361114.562399998307228, 256276.147900000214577 ], [ 361122.54389999806881, 256275.333599999547005 ], [ 361140.778999999165535, 256278.837000001221895 ], [ 361149.444600000977516, 256282.655200000852346 ], [ 361157.576800003647804, 256286.238400001078844 ], [ 361183.25620000064373, 256306.840700000524521 ], [ 361202.248199999332428, 256320.684200000017881 ], [ 361217.425200000405312, 256320.252000000327826 ], [ 361235.727700002491474, 256315.656500000506639 ], [ 361262.522200003266335, 256303.590799998492002 ], [ 361282.241300001740456, 256297.610700000077486 ], [ 361288.447800002992153, 256299.900600001215935 ], [ 361308.573299996554852, 256307.326099999248981 ], [ 361321.140100002288818, 256316.64750000089407 ], [ 361330.332999996840954, 256326.220100000500679 ], [ 361335.836000002920628, 256340.230599999427795 ], [ 361336.544299997389317, 256356.581300001591444 ], [ 361336.629900000989437, 256358.556000001728535 ], [ 361341.984999999403954, 256379.045200001448393 ], [ 361352.913900002837181, 256394.119699999690056 ], [ 361385.439499996602535, 256410.373100001364946 ], [ 361403.835799999535084, 256409.003699999302626 ], [ 361421.640500001609325, 256407.678300000727177 ], [ 361428.959299996495247, 256401.41950000077486 ], [ 361449.981499999761581, 256383.441799998283386 ], [ 361460.811899997293949, 256350.069200001657009 ], [ 361488.671400003135204, 256323.331399999558926 ], [ 361502.384400002658367, 256322.523499999195337 ], [ 361513.497100003063679, 256321.86879999935627 ], [ 361512.048699997365475, 256313.052400000393391 ], [ 361493.289300002157688, 256311.882699999958277 ], [ 361469.042700000107288, 256327.16330000013113 ], [ 361452.810300000011921, 256345.507399998605251 ], [ 361439.421800002455711, 256384.352600000798702 ], [ 361416.012800000607967, 256398.625799998641014 ], [ 361411.13910000026226, 256401.59739999845624 ], [ 361385.543600000441074, 256397.887800000607967 ], [ 361369.965700000524521, 256392.667100001126528 ], [ 361354.977799996733665, 256387.644099999219179 ], [ 361352.004699997603893, 256375.655900001525879 ], [ 361349.144100002944469, 256364.121399998664856 ], [ 361348.418099999427795, 256355.051899999380112 ], [ 361340.770700000226498, 256321.279800001531839 ], [ 361323.743299998342991, 256307.731800001114607 ], [ 361304.723499998450279, 256297.239399999380112 ], [ 361299.129299998283386, 256294.702599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504030100", "MAP": "A9-369-T89", "PARCEL_NAM": "1-2", "ACRE": null, "LONGITUDE": -64.90313141, "LATITUDE": 18.3360395, "OBJECTID_1": 20432, "PARCEL_NO_": "105504030100", "Tax_Legal_": "PARCEL C,D,E,F,G&H EST.RAPHUNE 5B NEW QTR.&PARCEL 1-2 THRU 1-11 ESTATE DONOE 2A NEW QUARTER", "Name": "MARKET SQUARE EAST INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3677300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 718.62236044899998, "SHAPE_Area": 30943.431825 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361772.614699997007847, 256230.123100001364946 ], [ 361729.626800000667572, 256240.523400001227856 ], [ 361673.402699999511242, 256257.721400000154972 ], [ 361606.081200003623962, 256269.731800001114607 ], [ 361630.05460000038147, 256362.413400001823902 ], [ 361652.770599998533726, 256371.833799999207258 ], [ 361679.974399998784065, 256377.327599998563528 ], [ 361741.985299997031689, 256384.240800000727177 ], [ 361791.170000001788139, 256386.156599998474121 ], [ 361841.529899999499321, 256385.542100001126528 ], [ 361862.878899998962879, 256376.233500000089407 ], [ 361863.16499999910593, 256375.849199999123812 ], [ 361864.632799997925758, 256290.843899998813868 ], [ 361862.469099998474121, 256278.035500001162291 ], [ 361856.508400000631809, 256266.700100000947714 ], [ 361842.919100001454353, 256262.448499999940395 ], [ 361821.729400001466274, 256261.895100001245737 ], [ 361794.875600002706051, 256259.789700001478195 ], [ 361784.313799999654293, 256255.563400000333786 ], [ 361775.325499996542931, 256244.2027000002563 ], [ 361772.614699997007847, 256230.123100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503050200", "MAP": "D9-5033-T90", "PARCEL_NAM": "9 REM", "ACRE": "3.52", "LONGITUDE": -64.90872603, "LATITUDE": 18.33513821, "OBJECTID_1": 20168, "PARCEL_NO_": "105503050200", "Tax_Legal_": "REMAINDER ESTATE RAPHUNE 9 5Ba NEW QTR", "Name": "CHRISTMAS, RITA", "Address": "PO Box 8208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 484600, "Improved_V": 85600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.61640287900002, "SHAPE_Area": 6659.95152848 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361186.371399998664856, 256156.639699999243021 ], [ 361115.845100000500679, 256204.474800001829863 ], [ 361083.526000000536442, 256216.054400000721216 ], [ 361089.277699999511242, 256227.516199998557568 ], [ 361094.032899998128414, 256237.265500001609325 ], [ 361095.582500003278255, 256244.666400000452995 ], [ 361094.625200003385544, 256262.390399999916553 ], [ 361095.365000002086163, 256270.206999998539686 ], [ 361097.7820999994874, 256270.437800001353025 ], [ 361112.419799998402596, 256255.992199998348951 ], [ 361121.341399997472763, 256249.943500000983477 ], [ 361139.168399997055531, 256239.745799999684095 ], [ 361151.304399996995926, 256234.989999998360872 ], [ 361200.58839999884367, 256223.78319999948144 ], [ 361214.313699997961521, 256221.784600000828505 ], [ 361219.173100002110004, 256219.291299998760223 ], [ 361220.823499999940395, 256214.871800001710653 ], [ 361220.071199998259544, 256208.532800000160933 ], [ 361216.088100001215935, 256202.800700001418591 ], [ 361203.35980000346899, 256182.431600000709295 ], [ 361196.981200002133846, 256173.935600001364946 ], [ 361186.371399998664856, 256156.639699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503051200", "MAP": "D9-5033-T90", "PARCEL_NAM": "9-1", "ACRE": "1.003", "LONGITUDE": -64.90877994, "LATITUDE": 18.33463548, "OBJECTID_1": 20207, "PARCEL_NO_": "105503051200", "Tax_Legal_": "9-1 ESTATE RAPHUNE 5A NEW QUARTER", "Name": "JOY, DEBORAH CHRISTMAS", "Address": "PO Box 8208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 211100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.68689119300001, "SHAPE_Area": 2981.2594105600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361136.79619999974966, 256113.042399998754263 ], [ 361135.099299997091293, 256161.438200000673532 ], [ 361138.45610000193119, 256170.671000000089407 ], [ 361112.874399997293949, 256198.851399999111891 ], [ 361080.997500002384186, 256211.015599999576807 ], [ 361083.526000000536442, 256216.054400000721216 ], [ 361115.845100000500679, 256204.474800001829863 ], [ 361186.371399998664856, 256156.639699999243021 ], [ 361182.665399998426437, 256150.598099999129772 ], [ 361177.881399996578693, 256144.226199999451637 ], [ 361173.916400000452995, 256136.383299998939037 ], [ 361165.160300001502037, 256123.012699998915195 ], [ 361163.583599999547005, 256118.777899999171495 ], [ 361161.983599998056889, 256117.287200000137091 ], [ 361158.020300000905991, 256109.233199998736382 ], [ 361136.79619999974966, 256113.042399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503050200", "MAP": "D9-5033-T90", "PARCEL_NAM": "9 REM", "ACRE": null, "LONGITUDE": -64.90966956, "LATITUDE": 18.33534665, "OBJECTID_1": 20168, "PARCEL_NO_": "105503050200", "Tax_Legal_": "REMAINDER ESTATE RAPHUNE 9 5Ba NEW QTR", "Name": "CHRISTMAS, RITA", "Address": "PO Box 8208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 484600, "Improved_V": 85600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.28195802699997, "SHAPE_Area": 6183.3041333000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361063.970399998128414, 256169.230399999767542 ], [ 361026.322499997913837, 256164.72690000012517 ], [ 361027.576499998569489, 256181.837200000882149 ], [ 361026.397900000214577, 256225.523899998515844 ], [ 361026.252300001680851, 256242.621300000697374 ], [ 361028.417700000107288, 256272.403200000524521 ], [ 361034.772900000214577, 256283.643199998885393 ], [ 361042.7550999969244, 256293.207800000905991 ], [ 361047.548000000417233, 256298.524300001561642 ], [ 361051.228399999439716, 256300.59180000051856 ], [ 361057.662000000476837, 256294.89640000090003 ], [ 361070.054700002074242, 256286.828000001609325 ], [ 361081.591099999845028, 256277.904699999839067 ], [ 361084.863099999725819, 256272.442999999970198 ], [ 361088.185500003397465, 256261.071199998259544 ], [ 361089.04389999806881, 256254.956500001251698 ], [ 361089.144599996507168, 256243.136100001633167 ], [ 361085.213799998164177, 256231.282699998468161 ], [ 361078.860399998724461, 256219.831599999219179 ], [ 361070.102399997413158, 256206.672100000083447 ], [ 361066.166199997067451, 256195.451999999582767 ], [ 361063.923500001430511, 256174.746399998664856 ], [ 361063.970399998128414, 256169.230399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503050300", "MAP": "D9-5033-T90", "PARCEL_NAM": "2", "ACRE": "2.0", "LONGITUDE": -64.90937867, "LATITUDE": 18.33458229, "OBJECTID_1": 20169, "PARCEL_NO_": "105503050300", "Tax_Legal_": "RAPHUNE 2 5BA NEW QTR.", "Name": "CHRISTMAS, RITA & JOSEPH-LIFE E", "Address": "PO Box 8208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 359400, "Improved_V": 44500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 389.18146972, "SHAPE_Area": 8379.2853337100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361026.322499997913837, 256164.72690000012517 ], [ 361063.970399998128414, 256169.230399999767542 ], [ 361070.718099996447563, 256169.318900000303984 ], [ 361070.351300001144409, 256178.431600000709295 ], [ 361072.427599996328354, 256194.191500000655651 ], [ 361076.574500001966953, 256204.19200000166893 ], [ 361080.555699996650219, 256210.135200001299381 ], [ 361080.997500002384186, 256211.015599999576807 ], [ 361112.874399997293949, 256198.851399999111891 ], [ 361138.45610000193119, 256170.671000000089407 ], [ 361135.099299997091293, 256161.438200000673532 ], [ 361136.79619999974966, 256113.042399998754263 ], [ 361125.737000003457069, 256109.948499999940395 ], [ 361069.31700000166893, 256109.562699999660254 ], [ 361058.034000001847744, 256108.837000001221895 ], [ 361022.547200001776218, 256109.602099999785423 ], [ 361024.096900001168251, 256117.002999998629093 ], [ 361025.576499998569489, 256132.636100001633167 ], [ 361025.385899998247623, 256155.010400000959635 ], [ 361026.322499997913837, 256164.72690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504010400", "MAP": "D9-256-T59", "PARCEL_NAM": "REM of RAPHUNE", "ACRE": null, "LONGITUDE": -64.90758296, "LATITUDE": 18.33132899, "OBJECTID_1": 20383, "PARCEL_NO_": "105504010400", "Tax_Legal_": "ESTATE RAPHUNE NEW QTR 5BA", "Name": "RAPHUNE DEV CORP", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5385600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3499.4092881500001, "SHAPE_Area": 174519.698432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361252.353500001132488, 255365.935499999672174 ], [ 361252.344800002872944, 255372.745299998670816 ], [ 361237.13120000064373, 255372.613099999725819 ], [ 361229.843699999153614, 255364.931099999696016 ], [ 361222.422399997711182, 255364.600000001490116 ], [ 361183.73200000077486, 255362.805700000375509 ], [ 361153.822899997234344, 255371.426899999380112 ], [ 361122.28320000320673, 255382.145599998533726 ], [ 361077.766999997198582, 255401.624000001698732 ], [ 361053.460799999535084, 255415.146200001239777 ], [ 361050.221100002527237, 255416.808400001376867 ], [ 361031.611199997365475, 255424.255499999970198 ], [ 361016.231600001454353, 255620.446600001305342 ], [ 361026.668700002133846, 255625.809399999678135 ], [ 361030.691299997270107, 255626.897799998521805 ], [ 361040.37780000269413, 255625.710499998182058 ], [ 361047.663400001823902, 255622.392599999904633 ], [ 361054.97240000218153, 255616.330699998885393 ], [ 361058.235399998724461, 255611.924499999731779 ], [ 361059.066899999976158, 255608.975900001823902 ], [ 361072.941399998962879, 255589.457800000905991 ], [ 361084.319700002670288, 255578.996300000697374 ], [ 361088.412399999797344, 255571.852600000798702 ], [ 361118.245200000703335, 255477.526799999177456 ], [ 361125.012199997901917, 255440.429699998348951 ], [ 361132.376900002360344, 255427.824400000274181 ], [ 361136.446199998259544, 255423.424699999392033 ], [ 361141.314699999988079, 255419.875999998301268 ], [ 361157.502099998295307, 255412.831300001591444 ], [ 361170.437200002372265, 255408.926399998366833 ], [ 361187.395000003278255, 255406.109900001436472 ], [ 361194.651799999177456, 255406.169300001114607 ], [ 361201.890600003302097, 255408.339499998837709 ], [ 361209.919600002467632, 255412.415899999439716 ], [ 361217.12780000269413, 255418.174499999731779 ], [ 361218.718900002539158, 255420.720600001513958 ], [ 361224.319899998605251, 255425.832699999213219 ], [ 361228.328100003302097, 255428.609700001776218 ], [ 361237.966099999845028, 255433.121599998325109 ], [ 361250.847300000488758, 255435.5489999987185 ], [ 361269.401500001549721, 255434.645399998873472 ], [ 361281.483599998056889, 255436.221999999135733 ], [ 361306.427100002765656, 255442.547800000756979 ], [ 361313.682099997997284, 255442.818300001323223 ], [ 361323.372299998998642, 255441.208799999207258 ], [ 361333.048000000417233, 255441.287999998778105 ], [ 361338.665200002491474, 255444.500399999320507 ], [ 361341.055399999022484, 255447.89750000089407 ], [ 361341.847300000488758, 255449.592700000852346 ], [ 361341.789800003170967, 255456.347199998795986 ], [ 361328.451800003647804, 255507.5337999984622 ], [ 361326.470600001513958, 255550.791799999773502 ], [ 361316.375799998641014, 255599.893899999558926 ], [ 361322.713799998164177, 255707.814599998295307 ], [ 361324.286799997091293, 255712.471599999815226 ], [ 361331.430399999022484, 255725.828899998217821 ], [ 361331.594899997115135, 255731.133499998599291 ], [ 361329.60869999974966, 255739.636399999260902 ], [ 361329.053000003099442, 255740.134199999272823 ], [ 361370.648900002241135, 255732.225099999457598 ], [ 361400.512500002980232, 255838.859499998390675 ], [ 361333.143700003623962, 255855.079700000584126 ], [ 361308.440200001001358, 255742.811000000685453 ], [ 361282.085299998521805, 255744.212400000542402 ], [ 361266.765299998223782, 255744.087000001221895 ], [ 361253.853500001132488, 255745.247900001704693 ], [ 361244.15259999781847, 255748.123799998313189 ], [ 361236.861599996685982, 255752.07490000128746 ], [ 361231.17790000140667, 255756.672400001436472 ], [ 361218.14019999653101, 255772.608800001442432 ], [ 361196.999899998307228, 255793.122999999672174 ], [ 361162.906400002539158, 255819.652800001204014 ], [ 361150.718199998140335, 255830.529899999499321 ], [ 361118.980700001120567, 255864.467300001531839 ], [ 361109.233000002801418, 255872.831300001591444 ], [ 361097.084399998188019, 255879.064699999988079 ], [ 361084.957299999892712, 255882.765099998563528 ], [ 361070.431100003421307, 255884.1239 ], [ 361066.372599996626377, 255887.256999999284744 ], [ 361062.904600001871586, 255915.726300001144409 ], [ 361063.487899996340275, 255941.906700000166893 ], [ 361068.172899998724461, 255959.888000000268221 ], [ 361072.152400001883507, 255966.042300000786781 ], [ 361080.951700001955032, 255974.346900001168251 ], [ 361094.604999996721745, 255980.791499998420477 ], [ 361101.81870000064373, 255985.916799999773502 ], [ 361109.793700002133846, 255996.325599998235703 ], [ 361111.397299997508526, 255997.394200000911951 ], [ 361117.747100003063679, 256009.267400000244379 ], [ 361119.298600003123283, 256016.457299999892712 ], [ 361129.5253000035882, 256046.51630000025034 ], [ 361131.121799997985363, 256048.429200001060963 ], [ 361137.453599996864796, 256062.413199998438358 ], [ 361145.419600002467632, 256073.877399999648333 ], [ 361146.990900002419949, 256078.745400000363588 ], [ 361153.347900003194809, 256089.774300001561642 ], [ 361156.54619999974966, 256092.966899998486042 ], [ 361166.893399998545647, 256108.883600000292063 ], [ 361175.62610000371933, 256124.998199999332428 ], [ 361257.929399996995926, 256118.705699998885393 ], [ 361255.027800001204014, 256080.685100000351667 ], [ 361336.506700001657009, 256076.496899999678135 ], [ 361339.426299996674061, 256112.406700000166893 ], [ 361342.401600003242493, 256141.772999998182058 ], [ 361392.437899999320507, 256136.905200000852346 ], [ 361426.333599999547005, 256133.594000000506639 ], [ 361458.614799998700619, 256130.480700001120567 ], [ 361494.123199999332428, 256127.182799998670816 ], [ 361491.178400002419949, 256094.228100001811981 ], [ 361490.408100001513958, 256089.999899998307228 ], [ 361489.657499998807907, 256083.44990000128746 ], [ 361488.874600000679493, 256080.699200000613928 ], [ 361482.566100001335144, 256063.971200000494719 ], [ 361480.177799999713898, 256060.363099999725819 ], [ 361477.79839999973774, 256055.699499998241663 ], [ 361476.291900001466274, 256043.232700001448393 ], [ 361473.901699997484684, 256039.83559999987483 ], [ 361473.917900003492832, 256037.935899998992682 ], [ 361470.743000000715256, 256031.999299999326468 ], [ 361466.806699998676777, 256020.779100000858307 ], [ 361463.628200002014637, 256015.264699999243021 ], [ 361449.641500003635883, 255953.299800001084805 ], [ 361446.49889999628067, 255943.563799999654293 ], [ 361444.108800001442432, 255940.166700001806021 ], [ 361441.754600003361702, 255932.548099998384714 ], [ 361439.373400002717972, 255928.095600001513958 ], [ 361439.396799996495247, 255925.351599998772144 ], [ 361433.190800003707409, 255896.592099998146296 ], [ 361423.75959999859333, 255867.806200001388788 ], [ 361422.287299998104572, 255851.32880000025034 ], [ 361419.94200000166893, 255842.654800001531839 ], [ 361418.480499997735023, 255824.910999998450279 ], [ 361412.312299996614456, 255791.718800000846386 ], [ 361406.831699997186661, 255772.464400000870228 ], [ 361405.323399998247623, 255760.208700001239777 ], [ 361404.729299999773502, 255735.294799998402596 ], [ 361401.915799997746944, 255686.93129999935627 ], [ 361407.001800000667572, 255657.842000000178814 ], [ 361411.992600001394749, 255639.939899999648333 ], [ 361416.941899999976158, 255626.892599999904633 ], [ 361418.572499997913837, 255624.795000001788139 ], [ 361422.753300003707409, 255607.308499999344349 ], [ 361424.587099999189377, 255581.359000001102686 ], [ 361427.032999999821186, 255578.212600000202656 ], [ 361428.686999998986721, 255573.370999999344349 ], [ 361429.660599999129772, 255553.747299998998642 ], [ 361430.499300003051758, 255549.9543999992311 ], [ 361432.460699997842312, 255509.018300000578165 ], [ 361431.758699998259544, 255496.769200000911951 ], [ 361431.810900002717972, 255490.647900000214577 ], [ 361432.874300003051758, 255460.470199998468161 ], [ 361430.851000003516674, 255414.013099998235703 ], [ 361430.434900000691414, 255368.202399998903275 ], [ 361369.137100003659725, 255369.811599999666214 ], [ 361315.119599997997284, 255368.736200001090765 ], [ 361252.353500001132488, 255365.935499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107402010100", "MAP": "G9-824-T65", "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.90686484, "LATITUDE": 18.3313489, "OBJECTID_1": 33121, "PARCEL_NO_": "107402010100", "Tax_Legal_": "RAPHUNE EST. 3 5BA NEW QTR", "Name": "STEELE ESTATE RAPHUNE", "Address": "4026 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 477700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.341177082, "SHAPE_Area": 7399.3610558700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361308.440200001001358, 255742.811000000685453 ], [ 361333.143700003623962, 255855.079700000584126 ], [ 361400.512500002980232, 255838.859499998390675 ], [ 361370.648900002241135, 255732.225099999457598 ], [ 361329.053000003099442, 255740.134199999272823 ], [ 361325.037000000476837, 255743.732299998402596 ], [ 361308.440200001001358, 255742.811000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105504030100", "MAP": "D9-7950-T007", "PARCEL_NAM": "F", "ACRE": "17.072", "LONGITUDE": -64.90687801, "LATITUDE": 18.33725941, "OBJECTID_1": 20432, "PARCEL_NO_": "105504030100", "Tax_Legal_": "PARCEL C,D,E,F,G&H EST.RAPHUNE 5B NEW QTR.&PARCEL 1-2 THRU 1-11 ESTATE DONOE 2A NEW QUARTER", "Name": "MARKET SQUARE EAST INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3677300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1411.8752413899999, "SHAPE_Area": 71707.070905500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361218.556699998676777, 256498.126899998635054 ], [ 361223.255900003015995, 256497.499600000679493 ], [ 361233.104500003159046, 256497.581599999219179 ], [ 361242.956299997866154, 256497.272100001573563 ], [ 361251.964800000190735, 256503.61259999871254 ], [ 361259.781700000166893, 256511.118000000715256 ], [ 361269.115599997341633, 256525.684599999338388 ], [ 361274.952899999916553, 256534.348299998790026 ], [ 361280.803300000727177, 256541.445700000971556 ], [ 361287.855099998414516, 256546.203499998897314 ], [ 361293.754399999976158, 256547.427400000393391 ], [ 361306.308399997651577, 256553.797499999403954 ], [ 361320.8091000020504, 256562.925000000745058 ], [ 361332.54900000244379, 256572.421000000089407 ], [ 361348.648400001227856, 256578.820599999278784 ], [ 361364.757500000298023, 256584.0456000007689 ], [ 361374.605999998748302, 256584.127700001001358 ], [ 361372.909500002861023, 256598.602400001138449 ], [ 361375.807499997317791, 256626.979299999773502 ], [ 361409.266400001943111, 256608.669199999421835 ], [ 361496.841899998486042, 256555.160300001502037 ], [ 361514.170100003480911, 256544.767700001597404 ], [ 361513.986400000751019, 256483.950199998915195 ], [ 361513.497100003063679, 256321.86879999935627 ], [ 361502.384400002658367, 256322.523499999195337 ], [ 361488.671400003135204, 256323.331399999558926 ], [ 361460.811899997293949, 256350.069200001657009 ], [ 361449.981499999761581, 256383.441799998283386 ], [ 361428.959299996495247, 256401.41950000077486 ], [ 361421.640500001609325, 256407.678300000727177 ], [ 361403.835799999535084, 256409.003699999302626 ], [ 361385.439499996602535, 256410.373100001364946 ], [ 361352.913900002837181, 256394.119699999690056 ], [ 361341.984999999403954, 256379.045200001448393 ], [ 361336.629900000989437, 256358.556000001728535 ], [ 361336.544299997389317, 256356.581300001591444 ], [ 361335.836000002920628, 256340.230599999427795 ], [ 361330.332999996840954, 256326.220100000500679 ], [ 361321.140100002288818, 256316.64750000089407 ], [ 361308.573299996554852, 256307.326099999248981 ], [ 361288.447800002992153, 256299.900600001215935 ], [ 361282.241300001740456, 256297.610700000077486 ], [ 361262.522200003266335, 256303.590799998492002 ], [ 361235.727700002491474, 256315.656500000506639 ], [ 361217.425200000405312, 256320.252000000327826 ], [ 361202.248199999332428, 256320.684200000017881 ], [ 361183.25620000064373, 256306.840700000524521 ], [ 361157.576800003647804, 256286.238400001078844 ], [ 361149.444600000977516, 256282.655200000852346 ], [ 361140.778999999165535, 256278.837000001221895 ], [ 361122.54389999806881, 256275.333599999547005 ], [ 361114.562399998307228, 256276.147900000214577 ], [ 361114.662500001490116, 256276.697700001299381 ], [ 361116.25900000333786, 256278.610599998384714 ], [ 361130.727600000798702, 256284.006400000303984 ], [ 361146.755000002682209, 256295.747699998319149 ], [ 361153.97580000013113, 256300.0287000015378 ], [ 361164.360799998044968, 256311.512699998915195 ], [ 361171.491700001060963, 256326.347600001841784 ], [ 361173.806400001049042, 256338.609999999403954 ], [ 361165.839299999177456, 256421.926699999719858 ], [ 361166.629399999976158, 256423.833099998533726 ], [ 361168.074799999594688, 256443.476599998772144 ], [ 361170.441600002348423, 256449.61769999936223 ], [ 361172.835299998521805, 256452.592599999159575 ], [ 361174.415600001811981, 256456.405200000852346 ], [ 361176.019199997186661, 256457.473799999803305 ], [ 361177.606700003147125, 256460.442099999636412 ], [ 361182.406800001859665, 256464.914299998432398 ], [ 361197.638599999248981, 256475.382599998265505 ], [ 361209.643399998545647, 256486.035500001162291 ], [ 361211.14360000193119, 256488.033700000494719 ], [ 361218.413900002837181, 256497.717399999499321 ], [ 361218.556699998676777, 256498.126899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504042600", "MAP": "F9-3944-T57", "PARCEL_NAM": "3-102", "ACRE": "0.21", "LONGITUDE": -64.88307883, "LATITUDE": 18.32191337, "OBJECTID_1": 37804, "PARCEL_NO_": "107504042600", "Tax_Legal_": "3-102 BOVONI/EASTERN PT. FRENCHMAN BAY QTR.", "Name": "LIMA, WILFREDO", "Address": "10 Street Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.650312200100004, "SHAPE_Area": 556.84002175199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363874.499499998986721, 254751.752999998629093 ], [ 363862.586499996483326, 254783.254599999636412 ], [ 363878.672100000083447, 254788.312100000679493 ], [ 363890.215800002217293, 254758.43129999935627 ], [ 363874.499499998986721, 254751.752999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504041000", "MAP": "F9-3942-T57", "PARCEL_NAM": "3-121", "ACRE": ".22", "LONGITUDE": -64.88328302, "LATITUDE": 18.32184576, "OBJECTID_1": 37789, "PARCEL_NO_": "107504041000", "Tax_Legal_": "3-121 BOVONI/EASTERN PT. FRENCHMAN BAY QTR.", "Name": "LIMA, WILFREDO", "Address": "10 Street Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 148300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.99382245699999, "SHAPE_Area": 998.59972121099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363866.915500000119209, 254748.530299998819828 ], [ 363848.435000002384186, 254740.779699999839067 ], [ 363841.001999996602535, 254761.405999999493361 ], [ 363833.635499998927116, 254774.22239999845624 ], [ 363854.545699998736382, 254780.726399999111891 ], [ 363862.586499996483326, 254783.254599999636412 ], [ 363874.499499998986721, 254751.752999998629093 ], [ 363866.915500000119209, 254748.530299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88305466, "LATITUDE": 18.32142179, "OBJECTID_1": 37807, "PARCEL_NO_": "107504043000", "Tax_Legal_": "3-80 BOVONI-EASTERN SEC FRENCHMAN BAY QTR", "Name": "MORCIGLIO, JUAN A & ONELIA", "Address": "PO Box 7282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 5500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.5841935300700001, "SHAPE_Area": 0.09580474935 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363879.596500001847744, 254716.260299999266863 ], [ 363879.484099999070168, 254715.5912000015378 ], [ 363879.287100002169609, 254716.123199999332428 ], [ 363879.596500001847744, 254716.260299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504041200", "MAP": "F9-165-T57", "PARCEL_NAM": "3-119", "ACRE": "0.22", "LONGITUDE": -64.88318553000001, "LATITUDE": 18.32154713, "OBJECTID_1": 37791, "PARCEL_NO_": "107504041200", "Tax_Legal_": "BOVONI 3 119\nFRENCHMAN BAY QTR", "Name": "Lucia Christopher (Life Estate), K & L Christopher & E Duggins", "Address": "PO Box 10210", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013210, "Country": "United States", "Land_Value": 71900, "Improved_V": 20200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.45024714, "SHAPE_Area": 893.17751919299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363879.287100002169609, 254716.123199999332428 ], [ 363859.201200000941753, 254707.515000000596046 ], [ 363848.435000002384186, 254740.779699999839067 ], [ 363866.915500000119209, 254748.530299998819828 ], [ 363874.499499998986721, 254751.752999998629093 ], [ 363880.104099996387959, 254719.281199999153614 ], [ 363879.596500001847744, 254716.260299999266863 ], [ 363879.287100002169609, 254716.123199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88349357, "LATITUDE": 18.3214201, "OBJECTID_1": 37790, "PARCEL_NO_": "107504041100", "Tax_Legal_": "3 120 BOVONI FRENCHMAN BAY QTR", "Name": "THOMAS, BERNARD E A", "Address": "PO Box 223821", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 25500, "Improved_V": 500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.33427843199999, "SHAPE_Area": 1097.06608282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363812.223399996757507, 254726.636100001633167 ], [ 363842.095299996435642, 254737.170200001448393 ], [ 363848.618400000035763, 254719.249699998646975 ], [ 363852.774099998176098, 254704.718199998140335 ], [ 363825.5320999994874, 254692.515399999916553 ], [ 363812.223399996757507, 254726.636100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88314213, "LATITUDE": 18.32049548, "OBJECTID_1": 37795, "PARCEL_NO_": "107504041700", "Tax_Legal_": "3-114 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "LEWIS, KENNETH", "Address": "6546 Estate Nazareth, Box 14", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.762462523, "SHAPE_Area": 847.04654355299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363852.760799996554852, 254622.706399999558926 ], [ 363879.82769999653101, 254632.774300001561642 ], [ 363888.304999999701977, 254604.106300000101328 ], [ 363864.243199996650219, 254593.26799999922514 ], [ 363852.760799996554852, 254622.706399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504041900", "MAP": null, "PARCEL_NAM": "3-112", "ACRE": null, "LONGITUDE": -64.88302512, "LATITUDE": 18.32016912, "OBJECTID_1": 37797, "PARCEL_NO_": "107504041900", "Tax_Legal_": "3-112 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "LEWIS, KENNETH", "Address": "6546 Estate Nazareth, Box 14", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.797614326, "SHAPE_Area": 1143.01086022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363902.334899999201298, 254558.305799998342991 ], [ 363880.118199996650219, 254551.083399999886751 ], [ 363876.894299998879433, 254560.833200000226498 ], [ 363864.243199996650219, 254593.26799999922514 ], [ 363888.304999999701977, 254604.106300000101328 ], [ 363893.26519999653101, 254589.792500000447035 ], [ 363898.277500003576279, 254569.357500001788139 ], [ 363902.334899999201298, 254558.305799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88337903, "LATITUDE": 18.32111, "OBJECTID_1": 37792, "PARCEL_NO_": "107504041300", "Tax_Legal_": "3-118 BOVONI 1-2 FRENCHMAN", "Name": "MARTINEZ, ORLANDO", "Address": "PO Box 502115", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29900, "Improved_V": 266200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.21796404700001, "SHAPE_Area": 1067.97522555 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363865.539200000464916, 254668.160799998790026 ], [ 363838.6587999984622, 254658.861200001090765 ], [ 363837.361599996685982, 254662.186900001019239 ], [ 363825.5320999994874, 254692.515399999916553 ], [ 363852.774099998176098, 254704.718199998140335 ], [ 363860.243100002408028, 254679.870299998670816 ], [ 363863.527699999511242, 254672.931099999696016 ], [ 363865.539200000464916, 254668.160799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504047000", "MAP": "D9-8531-T11", "PARCEL_NAM": "3E-2-1", "ACRE": "0.32", "LONGITUDE": -64.88366495, "LATITUDE": 18.32100855, "OBJECTID_1": 37836, "PARCEL_NO_": "107504047000", "Tax_Legal_": "3E-2-1 BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "YOLAND ALVARADO & GLENNY KARINA BURGOS", "Address": "1355 Hospital Ground Apt 31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8024749, "Country": "United States", "Land_Value": 47600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.314261569, "SHAPE_Area": 1262.3549894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363825.5320999994874, 254692.515399999916553 ], [ 363837.361599996685982, 254662.186900001019239 ], [ 363838.6587999984622, 254658.861200001090765 ], [ 363826.908500000834465, 254654.796000000089407 ], [ 363805.884499996900558, 254647.522399999201298 ], [ 363804.506599999964237, 254650.523899998515844 ], [ 363800.13400000333786, 254660.048900000751019 ], [ 363791.298799999058247, 254680.64979999884963 ], [ 363813.4121999964118, 254687.086399998515844 ], [ 363825.5320999994874, 254692.515399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504041500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88325087, "LATITUDE": 18.32078712, "OBJECTID_1": 37794, "PARCEL_NO_": "107504041500", "Tax_Legal_": "3-116 ESTATE BOVONI FRENCHMAN BAY QTR", "Name": "RHYMER, ALINA", "Address": "PO Box 886", "City": "Walkertown", "State": "North Carolina", "Zip": 27051, "Country": "United States", "Land_Value": 25500, "Improved_V": 77900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.320444853, "SHAPE_Area": 1111.9364238799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363838.6587999984622, 254658.861200001090765 ], [ 363865.539200000464916, 254668.160799998790026 ], [ 363878.341600000858307, 254637.799699999392033 ], [ 363879.82769999653101, 254632.774300001561642 ], [ 363852.760799996554852, 254622.706399999558926 ], [ 363851.45269999653101, 254626.060199998319149 ], [ 363838.6587999984622, 254658.861200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504047300", "MAP": "D9-8531-T011", "PARCEL_NAM": "3E-2-4", "ACRE": "0.36", "LONGITUDE": -64.88354149, "LATITUDE": 18.32068114, "OBJECTID_1": 37837, "PARCEL_NO_": "107504047300", "Tax_Legal_": "3E-2-4 BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "MARTINEZ, ORLANDO", "Address": "3F-4 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53800, "Improved_V": 472700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.925564237, "SHAPE_Area": 1424.17921381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363842.535899996757507, 254618.903200000524521 ], [ 363806.629000000655651, 254605.547200001776218 ], [ 363810.112400002777576, 254611.311099998652935 ], [ 363812.387500002980232, 254615.075599998235703 ], [ 363814.875, 254620.1266999989748 ], [ 363815.416299998760223, 254625.161299999803305 ], [ 363814.207699999213219, 254629.987700000405312 ], [ 363811.428900003433228, 254636.348499998450279 ], [ 363805.884499996900558, 254647.522399999201298 ], [ 363826.908500000834465, 254654.796000000089407 ], [ 363838.6587999984622, 254658.861200001090765 ], [ 363851.45269999653101, 254626.060199998319149 ], [ 363852.760799996554852, 254622.706399999558926 ], [ 363842.535899996757507, 254618.903200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88335008, "LATITUDE": 18.32040597, "OBJECTID_1": 37814, "PARCEL_NO_": "107504043900", "Tax_Legal_": "3D BOVONI-EASTERN PART FRENCHMAN BAY QTR.", "Name": "LIMA, MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 144500, "Improved_V": 180800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.28971822211999998, "SHAPE_Area": 0.00302171984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363849.222199998795986, 254603.293200001120567 ], [ 363849.115900002419949, 254603.253199998289347 ], [ 363849.200800001621246, 254603.342000000178814 ], [ 363849.222199998795986, 254603.293200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504042100", "MAP": "F9-104-T57", "PARCEL_NAM": "3-110", "ACRE": "0.22", "LONGITUDE": -64.88288132, "LATITUDE": 18.31976869, "OBJECTID_1": 37799, "PARCEL_NO_": "107504042100", "Tax_Legal_": "3-110 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "TURNBULL, MITCHAEL & STEPHANIE", "Address": "PO Box 9661", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.695027579, "SHAPE_Area": 925.28105301599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363918.378300003707409, 254520.563700001686811 ], [ 363892.343299999833107, 254512.492499999701977 ], [ 363891.959299996495247, 254513.732900001108646 ], [ 363884.473099999129772, 254537.913199998438358 ], [ 363881.546599999070168, 254546.763599999248981 ], [ 363904.009199999272823, 254554.411899998784065 ], [ 363917.212899997830391, 254523.705200001597404 ], [ 363918.378300003707409, 254520.563700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043900", "MAP": "C9-235-T79", "PARCEL_NAM": "3D", "ACRE": "1.17", "LONGITUDE": -64.88344794, "LATITUDE": 18.31995164, "OBJECTID_1": 37814, "PARCEL_NO_": "107504043900", "Tax_Legal_": "3D BOVONI-EASTERN PART FRENCHMAN BAY QTR.", "Name": "LIMA, MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 144500, "Improved_V": 180800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.81664195299999, "SHAPE_Area": 5009.3694597200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363806.599899999797344, 254506.833200000226498 ], [ 363792.456500001251698, 254544.056200001388788 ], [ 363849.115900002419949, 254603.253199998289347 ], [ 363849.222199998795986, 254603.293200001120567 ], [ 363849.200800001621246, 254603.342000000178814 ], [ 363857.0962999984622, 254611.591099999845028 ], [ 363864.243199996650219, 254593.26799999922514 ], [ 363876.894299998879433, 254560.833200000226498 ], [ 363878.799500003457069, 254555.07149999961257 ], [ 363884.473099999129772, 254537.913199998438358 ], [ 363878.183399997651577, 254535.403000000864267 ], [ 363820.153099998831749, 254512.242400001734495 ], [ 363814.541599996387959, 254510.00279999896884 ], [ 363806.599899999797344, 254506.833200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504046100", "MAP": "D9-8531-T011", "PARCEL_NAM": "3E-1-6", "ACRE": "0.25", "LONGITUDE": -64.88395001000001, "LATITUDE": 18.32041438, "OBJECTID_1": 37829, "PARCEL_NO_": "107504046100", "Tax_Legal_": "3E-1-6 BOVONI NOS. 1&2 FRENCHMAN'S BAY QTR", "Name": "KOUNS, MARGARITA", "Address": "9th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 328000, "Improved_V": 731400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.67862267000001, "SHAPE_Area": 1160.7948939299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363774.329300001263618, 254591.763900000602007 ], [ 363767.128799997270107, 254610.714299999177456 ], [ 363765.448499999940395, 254615.136700000613928 ], [ 363790.038000002503395, 254624.093699999153614 ], [ 363798.962700001895428, 254627.344700001180172 ], [ 363805.509499996900558, 254629.729499999433756 ], [ 363806.138199999928474, 254628.433200001716614 ], [ 363806.337200000882149, 254624.622600000351667 ], [ 363806.524999998509884, 254621.026399999856949 ], [ 363803.343800000846386, 254613.911499999463558 ], [ 363799.483199998736382, 254607.791999999433756 ], [ 363788.630900003015995, 254590.589999999850988 ], [ 363787.013199999928474, 254584.899300001561642 ], [ 363786.427500002086163, 254582.839000001549721 ], [ 363787.530699998140335, 254567.383699998259544 ], [ 363789.252099998295307, 254555.47749999910593 ], [ 363790.733900003135204, 254548.589899998158216 ], [ 363779.597900003194809, 254577.897799998521805 ], [ 363774.329300001263618, 254591.763900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504047900", "MAP": "D9-8531-T011", "PARCEL_NAM": "3E-1-5", "ACRE": "0.22", "LONGITUDE": -64.88399407, "LATITUDE": 18.32068181, "OBJECTID_1": 37838, "PARCEL_NO_": "107504047900", "Tax_Legal_": "PAR 3E-1-5 1 & 2 FRENCHMAN'S BAY QTR", "Name": "KOUNS, MARGARITA", "Address": "9th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35300, "Improved_V": 10000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.66326867000001, "SHAPE_Area": 985.44434595500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363781.100199997425079, 254646.096099998801947 ], [ 363790.502099998295307, 254649.587600000202656 ], [ 363795.041799999773502, 254651.273400001227856 ], [ 363796.652699999511242, 254647.974399998784065 ], [ 363797.890900000929832, 254645.438999999314547 ], [ 363805.509499996900558, 254629.729499999433756 ], [ 363798.962700001895428, 254627.344700001180172 ], [ 363790.038000002503395, 254624.093699999153614 ], [ 363765.448499999940395, 254615.136700000613928 ], [ 363763.214699998497963, 254621.015500001609325 ], [ 363757.075000002980232, 254637.174199998378754 ], [ 363781.100199997425079, 254646.096099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504044000", "MAP": "D9-8531-T010", "PARCEL_NAM": "3E-1-4", "ACRE": ".30", "LONGITUDE": -64.88408554, "LATITUDE": 18.32092004, "OBJECTID_1": 37815, "PARCEL_NO_": "107504044000", "Tax_Legal_": "3E REM BOVONI EASTERN PART(ROW) NO. 1&2 FRENCHMAN'S BAY QTR", "Name": "LIMA, ALFREDO", "Address": "PO Box 9355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.54828393, "SHAPE_Area": 1286.6241833399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363763.379900000989437, 254673.899300001561642 ], [ 363768.234700001776218, 254677.300900001078844 ], [ 363771.140399999916553, 254679.336800001561642 ], [ 363776.826700001955032, 254681.928399998694658 ], [ 363782.805200003087521, 254682.4037000015378 ], [ 363784.377099998295307, 254678.635099999606609 ], [ 363786.304300002753735, 254674.014899998903275 ], [ 363791.623700000345707, 254658.27309999987483 ], [ 363795.041799999773502, 254651.273400001227856 ], [ 363790.502099998295307, 254649.587600000202656 ], [ 363781.100199997425079, 254646.096099998801947 ], [ 363774.492799997329712, 254643.642400000244379 ], [ 363757.075000002980232, 254637.174199998378754 ], [ 363754.577600002288818, 254643.747000001370907 ], [ 363747.380300000309944, 254662.688900001347065 ], [ 363763.379900000989437, 254673.899300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107502020600", "MAP": "D9-2459-T83", "PARCEL_NAM": "2-3F", "ACRE": "1.89", "LONGITUDE": -64.88550151, "LATITUDE": 18.32129942, "OBJECTID_1": 37495, "PARCEL_NO_": "107502020600", "Tax_Legal_": "BONONI/EASTERN PT. 2-3F FRENCHMAN BAY QTR.", "Name": "METHODIST CHURCH IN C & A", "Address": "PO Box 1045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 226300, "Improved_V": 290300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.415776725, "SHAPE_Area": 5629.3828098499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363655.52419999986887, 254668.273400001227856 ], [ 363655.244300000369549, 254660.559000000357628 ], [ 363649.679799996316433, 254658.662999998778105 ], [ 363616.277099996805191, 254645.541900001466274 ], [ 363613.745200000703335, 254650.410700000822544 ], [ 363608.853399999439716, 254656.703400000929832 ], [ 363575.38459999859333, 254704.558800000697374 ], [ 363576.133400000631809, 254711.320000000298023 ], [ 363620.945200003683567, 254751.79450000077486 ], [ 363628.1570999994874, 254757.130899999290705 ], [ 363631.380500003695488, 254757.368299998342991 ], [ 363634.616599999368191, 254756.128299999982119 ], [ 363637.066100001335144, 254752.55970000103116 ], [ 363641.939900003373623, 254748.377700001001358 ], [ 363645.184900000691414, 254746.082299999892712 ], [ 363655.52419999986887, 254668.273400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107502020500", "MAP": null, "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.88400525, "LATITUDE": 18.31878515, "OBJECTID_1": 37494, "PARCEL_NO_": "107502020500", "Tax_Legal_": "POR.PACEL#2 BOVONI FRENCHMAN BAY QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 294200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 532.44752353900003, "SHAPE_Area": 17207.030344700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363806.599899999797344, 254506.833200000226498 ], [ 363823.492899999022484, 254467.941799998283386 ], [ 363836.656300000846386, 254437.636399999260902 ], [ 363850.427400000393391, 254405.932300001382828 ], [ 363865.482900001108646, 254371.271000001579523 ], [ 363837.143799997866154, 254362.407600000500679 ], [ 363815.430900000035763, 254355.474899999797344 ], [ 363789.709799997508526, 254345.7652000002563 ], [ 363763.17339999973774, 254337.104299999773502 ], [ 363757.538199998438358, 254336.002700001001358 ], [ 363746.017899997532368, 254363.139499999582767 ], [ 363744.354900002479553, 254369.036499999463558 ], [ 363741.907200001180172, 254372.393899999558926 ], [ 363735.336199998855591, 254386.483399998396635 ], [ 363732.854299999773502, 254393.851399999111891 ], [ 363731.227300003170967, 254395.526799999177456 ], [ 363719.7195999994874, 254421.186000000685453 ], [ 363718.090800002217293, 254423.072599999606609 ], [ 363717.253899998962879, 254426.65430000051856 ], [ 363715.625100001692772, 254428.540800001472235 ], [ 363713.98369999974966, 254431.904899999499321 ], [ 363713.157600000500679, 254434.220100000500679 ], [ 363711.498199999332428, 254439.695000000298023 ], [ 363710.675700001418591, 254441.588100001215935 ], [ 363709.030699998140335, 254445.374299999326468 ], [ 363703.300200000405312, 254455.459899999201298 ], [ 363697.217500001192093, 254469.969999998807907 ], [ 363785.133599996566772, 254506.528200000524521 ], [ 363803.771099999547005, 254514.278299998492002 ], [ 363806.599899999797344, 254506.833200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043800", "MAP": "D9-8262-T009", "PARCEL_NAM": "3C-1", "ACRE": ".456", "LONGITUDE": -64.88304041000001, "LATITUDE": 18.31851291, "OBJECTID_1": 37813, "PARCEL_NO_": "107504043800", "Tax_Legal_": "PAR 3C REMAINDER BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "LLL TRUST INVESTMENTS VI INC", "Address": "2336 SE Ocean Blvd Ste 336", "City": "Stuart", "State": "Florida", "Zip": 349963310, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.426628671, "SHAPE_Area": 1855.472153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363847.214000001549721, 254413.330200001597404 ], [ 363866.971000000834465, 254409.1875 ], [ 363892.249499998986721, 254407.98369999974966 ], [ 363907.956399999558926, 254406.0912000015378 ], [ 363915.925399996340275, 254403.525600001215935 ], [ 363920.454499997198582, 254398.095199998468161 ], [ 363926.837499998509884, 254391.432100001722574 ], [ 363890.325900003314018, 254379.040899999439716 ], [ 363865.482900001108646, 254371.271000001579523 ], [ 363850.427400000393391, 254405.932300001382828 ], [ 363847.214000001549721, 254413.330200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504043800", "MAP": "D9-8262-T009", "PARCEL_NAM": "3C-2", "ACRE": "2.064", "LONGITUDE": -64.88314665, "LATITUDE": 18.31919735, "OBJECTID_1": 37813, "PARCEL_NO_": "107504043800", "Tax_Legal_": "PAR 3C REMAINDER BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "LLL TRUST INVESTMENTS VI INC", "Address": "2336 SE Ocean Blvd Ste 336", "City": "Stuart", "State": "Florida", "Zip": 349963310, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 417.56246403599999, "SHAPE_Area": 8387.8745772500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363926.148100003600121, 254421.397900000214577 ], [ 363937.661300003528595, 254395.105399999767542 ], [ 363931.228100001811981, 254401.224700000137091 ], [ 363925.26240000128746, 254407.858199998736382 ], [ 363919.331000000238419, 254410.440999999642372 ], [ 363908.101800002157688, 254412.979100000113249 ], [ 363857.924900002777576, 254418.63060000166297 ], [ 363853.628799997270107, 254420.619699999690056 ], [ 363851.159599997103214, 254423.434500001370907 ], [ 363848.257299996912479, 254429.2837999984622 ], [ 363813.697899997234344, 254509.66609999909997 ], [ 363813.72410000115633, 254509.676500000059605 ], [ 363814.541599996387959, 254510.00279999896884 ], [ 363820.153099998831749, 254512.242400001734495 ], [ 363878.183399997651577, 254535.403000000864267 ], [ 363884.473099999129772, 254537.913199998438358 ], [ 363891.959299996495247, 254513.732900001108646 ], [ 363896.74719999730587, 254498.26799999922514 ], [ 363903.089500002563, 254477.782299999147654 ], [ 363904.743500001728535, 254472.940600000321865 ], [ 363915.444899998605251, 254447.27479999884963 ], [ 363917.093500003218651, 254443.066399998962879 ], [ 363926.148100003600121, 254421.397900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107502030400", "MAP": "A9-733-T009", "PARCEL_NAM": "3F-3", "ACRE": "9.91", "LONGITUDE": -64.88390691, "LATITUDE": 18.32377931, "OBJECTID_1": 37513, "PARCEL_NO_": "107502030400", "Tax_Legal_": "3F-3 ESTATE BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "KOUNS, MARGARITA", "Address": "9th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 450300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 992.34572383700004, "SHAPE_Area": 39809.0816672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363815.51690000295639, 255132.217099998146296 ], [ 363909.725000001490116, 254967.309399999678135 ], [ 363897.347300000488758, 254961.745099999010563 ], [ 363887.493400000035763, 254956.596400000154972 ], [ 363897.700699999928474, 254931.794900000095367 ], [ 363878.42620000243187, 254921.858899999409914 ], [ 363864.79280000180006, 254917.710200000554323 ], [ 363876.784500002861023, 254888.729200001806021 ], [ 363869.112700000405312, 254886.753699999302626 ], [ 363856.744499996304512, 254884.526200000196695 ], [ 363850.343199998140335, 254883.835099998861551 ], [ 363844.361800000071526, 254883.996800001710653 ], [ 363837.520900003612041, 254884.787999998778105 ], [ 363832.603699997067451, 254885.383200000971556 ], [ 363828.119000002741814, 254885.345300000160933 ], [ 363822.57379999756813, 254884.449200000613928 ], [ 363818.101700000464916, 254882.925400000065565 ], [ 363812.570799998939037, 254880.331199999898672 ], [ 363808.114900000393391, 254876.896999999880791 ], [ 363804.086099997162819, 254873.466400001198053 ], [ 363801.32599999755621, 254871.532499998807907 ], [ 363797.074600003659725, 254869.161400001496077 ], [ 363789.415399998426437, 254865.700100000947714 ], [ 363745.783699996769428, 254847.923900000751019 ], [ 363717.2533999979496, 254837.493000000715256 ], [ 363714.267200000584126, 254837.043200001120567 ], [ 363712.496100001037121, 254837.028200000524521 ], [ 363709.909599997103214, 254848.062199998646975 ], [ 363703.825099997222424, 254881.290600001811981 ], [ 363700.970299996435642, 254902.121899999678135 ], [ 363702.500799998641014, 254932.308499999344349 ], [ 363704.660400003194809, 254962.844799999147654 ], [ 363715.578400000929832, 255010.275600001215935 ], [ 363716.186800003051758, 255014.101799998432398 ], [ 363715.730999998748302, 255017.494500000029802 ], [ 363713.7837999984622, 255020.44990000128746 ], [ 363711.63570000231266, 255021.917700000107288 ], [ 363709.277699999511242, 255022.959199998527765 ], [ 363707.140299998223782, 255023.153400000184774 ], [ 363703.728799998760223, 255022.487700000405312 ], [ 363664.5658999979496, 255006.660000000149012 ], [ 363657.753700003027916, 255004.055100001394749 ], [ 363654.767599999904633, 255003.60530000180006 ], [ 363651.766999997198582, 255004.85359999909997 ], [ 363650.037100002169609, 255007.386300001293421 ], [ 363643.243100002408028, 255029.368599999696016 ], [ 363801.46679999679327, 255090.944299999624491 ], [ 363791.445600003004074, 255122.623599998652935 ], [ 363815.51690000295639, 255132.217099998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045200", "MAP": "A9-458-T94", "PARCEL_NAM": "2-3M", "ACRE": "6.467", "LONGITUDE": -64.8862833, "LATITUDE": 18.32334993, "OBJECTID_1": 37821, "PARCEL_NO_": "107504045200", "Tax_Legal_": "2-3M ESTATE BOVONI FRENCHMAN'S BAY QTR", "Name": "RAD HOLDING COMPANY INC", "Address": "PO Box 7068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 327600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 756.08164729099997, "SHAPE_Area": 35003.832698500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363660.806199997663498, 254877.329500000923872 ], [ 363652.964699998497963, 254874.068599998950958 ], [ 363563.802100002765656, 254833.653299998492002 ], [ 363535.654799997806549, 254824.768100000917912 ], [ 363506.796599999070168, 254804.689100001007318 ], [ 363477.397100001573563, 254848.144900001585484 ], [ 363397.3445999994874, 254968.868500001728535 ], [ 363591.85360000282526, 255043.07660000026226 ], [ 363660.806199997663498, 254877.329500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504040800", "MAP": "D9-7884-T006", "PARCEL_NAM": "2-3N", "ACRE": ".29", "LONGITUDE": -64.88519999, "LATITUDE": 18.32264091, "OBJECTID_1": 37787, "PARCEL_NO_": "107504040800", "Tax_Legal_": "2-3Q-1,2-3P-1,2-3N,ROW'S 2-3Q-REM,2-3P-REM BOVONI 1&2 FRENCHMAN BAY QTR.", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 112200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.62395100099999, "SHAPE_Area": 1758.2070292200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363678.844300001859665, 254833.969999998807907 ], [ 363668.462700001895428, 254830.770799998193979 ], [ 363639.103299997746944, 254823.435600001364946 ], [ 363625.148900002241135, 254861.460400000214577 ], [ 363652.964699998497963, 254874.068599998950958 ], [ 363660.806199997663498, 254877.329500000923872 ], [ 363678.844300001859665, 254833.969999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107502030500", "MAP": "D9-8390-T010", "PARCEL_NAM": "3F-4-1", "ACRE": ".04", "LONGITUDE": -64.88461412, "LATITUDE": 18.32180429, "OBJECTID_1": 37514, "PARCEL_NO_": "107502030500", "Tax_Legal_": "PAR 3F-4 REM BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "HERNANDEZ, IRIS M.", "Address": "9th Street Est Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.298559607399994, "SHAPE_Area": 221.133121991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363712.451899997889996, 254772.817099999636412 ], [ 363723.231100000441074, 254739.535999998450279 ], [ 363718.722099997103214, 254738.112300001084805 ], [ 363704.620300002396107, 254772.009899999946356 ], [ 363712.451899997889996, 254772.817099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107502020400", "MAP": "D9-967-T71", "PARCEL_NAM": "2-3C", "ACRE": ".311", "LONGITUDE": -64.88484466, "LATITUDE": 18.32174864, "OBJECTID_1": 37493, "PARCEL_NO_": "107502020400", "Tax_Legal_": "PAR 2-3C & 3F-4-1 BOVONI 1 & 2 FRENCHMAN'S BAY QTR", "Name": "MARIO and OLGA LIMA FAMILY TRUST", "Address": "PO Box 7218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010218, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.90544929199999, "SHAPE_Area": 1680.88104916 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363708.558899998664856, 254738.651700001209974 ], [ 363702.570100001990795, 254735.30629999935627 ], [ 363693.991099998354912, 254730.513900000602007 ], [ 363678.925999999046326, 254722.098200000822544 ], [ 363677.760399997234344, 254725.753800000995398 ], [ 363674.785700000822544, 254732.36769999936223 ], [ 363669.798699997365475, 254743.456000000238419 ], [ 363662.727300003170967, 254759.178800001740456 ], [ 363666.127999998629093, 254760.788199998438358 ], [ 363689.610100001096725, 254771.901099998503923 ], [ 363702.189099997282028, 254777.854100000113249 ], [ 363704.620300002396107, 254772.009899999946356 ], [ 363716.623599998652935, 254743.156800001859665 ], [ 363708.558899998664856, 254738.651700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504044100", "MAP": "D9-2131-T82", "PARCEL_NAM": "2-3G", "ACRE": "1.24", "LONGITUDE": -64.88486955, "LATITUDE": 18.32131876, "OBJECTID_1": 37818, "PARCEL_NO_": "107504044100", "Tax_Legal_": "2-3G BOVONI/EASTERN POR. FRENCHMAN BAY QTR.", "Name": "MARIO and OLGA LIMA FAMILY TRUST", "Address": "PO Box 7218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010218, "Country": "United States", "Land_Value": 129500, "Improved_V": 23400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.082181005, "SHAPE_Area": 4898.6279709099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363693.991099998354912, 254730.513900000602007 ], [ 363702.570100001990795, 254735.30629999935627 ], [ 363708.558899998664856, 254738.651700001209974 ], [ 363716.623599998652935, 254743.156800001859665 ], [ 363718.722099997103214, 254738.112300001084805 ], [ 363726.45440000295639, 254717.762200001627207 ], [ 363735.188699997961521, 254694.775100000202656 ], [ 363736.605999998748302, 254691.045099999755621 ], [ 363709.858199998736382, 254674.984099999070168 ], [ 363703.298500001430511, 254673.513199999928474 ], [ 363673.624200001358986, 254666.821600001305342 ], [ 363655.244300000369549, 254660.559000000357628 ], [ 363655.52419999986887, 254668.273400001227856 ], [ 363645.184900000691414, 254746.082299999892712 ], [ 363654.108300000429153, 254739.822500001639128 ], [ 363667.869599997997284, 254733.602299999445677 ], [ 363674.785700000822544, 254732.36769999936223 ], [ 363677.760399997234344, 254725.753800000995398 ], [ 363678.925999999046326, 254722.098200000822544 ], [ 363693.991099998354912, 254730.513900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107502030700", "MAP": "D9-8390-T010", "PARCEL_NAM": null, "ACRE": ".23", "LONGITUDE": -64.88444289, "LATITUDE": 18.32180536, "OBJECTID_1": 37516, "PARCEL_NO_": "107502030700", "Tax_Legal_": "3F-4-2 ESTATE BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "HERNANDEZ, IRIS M.", "Address": "6414 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.647339647, "SHAPE_Area": 1293.1567970399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363757.788800001144409, 254744.510400000959635 ], [ 363721.074000000953674, 254731.922499999403954 ], [ 363718.722099997103214, 254738.112300001084805 ], [ 363723.231100000441074, 254739.535999998450279 ], [ 363712.451899997889996, 254772.817099999636412 ], [ 363728.915899999439716, 254785.844099998474121 ], [ 363730.99549999833107, 254783.011799998581409 ], [ 363755.210699997842312, 254749.633299998939037 ], [ 363757.807300001382828, 254744.519099999219179 ], [ 363757.788800001144409, 254744.510400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045100", "MAP": "D9-5613-T93", "PARCEL_NAM": "2-3K", "ACRE": "1.00", "LONGITUDE": -64.88563642, "LATITUDE": 18.32208935, "OBJECTID_1": 37820, "PARCEL_NO_": "107504045100", "Tax_Legal_": "2-3K EST BOVONI (EASTERN PART) No.1&2 FRENCHMAN'S BAY QTR.", "Name": "STOUT, NORBERT R. & GOLDA P", "Address": "PO Box 304526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 109400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.61088003499998, "SHAPE_Area": 4290.0177671600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363650.381399996578693, 254798.687100000679493 ], [ 363646.798000000417233, 254797.953299999237061 ], [ 363655.316500000655651, 254777.217799998819828 ], [ 363648.334700003266335, 254754.973999999463558 ], [ 363643.460799999535084, 254759.155999999493361 ], [ 363636.119499996304512, 254769.017299998551607 ], [ 363631.274400003254414, 254769.822000000625849 ], [ 363628.862700000405312, 254768.957899998873472 ], [ 363615.238099999725819, 254759.136100001633167 ], [ 363610.438000001013279, 254754.663800001144409 ], [ 363535.112899996340275, 254793.732900001108646 ], [ 363579.354000002145767, 254806.549499999731779 ], [ 363622.788699999451637, 254819.359499998390675 ], [ 363650.381399996578693, 254798.687100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107502020300", "MAP": "D9-967-T71", "PARCEL_NAM": "2-3D", "ACRE": ".311", "LONGITUDE": -64.88498685, "LATITUDE": 18.32207911, "OBJECTID_1": 37492, "PARCEL_NO_": "107502020300", "Tax_Legal_": "BOVONI 2-3D FRENCHMAN BAY QTR", "Name": "LIMA, HECTOR", "Address": "PO Box 8291", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.98368236900001, "SHAPE_Area": 1750.8442809799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363687.246799997985363, 254813.771999999880791 ], [ 363695.073700003325939, 254794.957899998873472 ], [ 363701.112199999392033, 254780.442699998617172 ], [ 363702.189099997282028, 254777.854100000113249 ], [ 363689.610100001096725, 254771.901099998503923 ], [ 363666.127999998629093, 254760.788199998438358 ], [ 363662.727300003170967, 254759.178800001740456 ], [ 363655.316500000655651, 254777.217799998819828 ], [ 363646.798000000417233, 254797.953299999237061 ], [ 363650.381399996578693, 254798.687100000679493 ], [ 363676.093500003218651, 254809.452199999243021 ], [ 363679.306100003421307, 254810.956199999898672 ], [ 363687.246799997985363, 254813.771999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045800", "MAP": "D9-7768-T006", "PARCEL_NAM": "2-3-1", "ACRE": ".25", "LONGITUDE": -64.88513854, "LATITUDE": 18.32234748, "OBJECTID_1": 37827, "PARCEL_NO_": "107504045800", "Tax_Legal_": "2-3-1 BOVONI 1&2 FRENCHMAN BAY QTR.", "Name": "LIMA, HECTOR & AUREA", "Address": "PO Box 8291", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.14204200500001, "SHAPE_Area": 1196.8802037200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363668.462700001895428, 254830.770799998193979 ], [ 363678.844300001859665, 254833.969999998807907 ], [ 363687.246799997985363, 254813.771999999880791 ], [ 363679.306100003421307, 254810.956199999898672 ], [ 363676.093500003218651, 254809.452199999243021 ], [ 363650.381399996578693, 254798.687100000679493 ], [ 363622.788699999451637, 254819.359499998390675 ], [ 363668.462700001895428, 254830.770799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107502030500", "MAP": "A9-733-T009", "PARCEL_NAM": "3F-4", "ACRE": "3.06", "LONGITUDE": -64.88510599, "LATITUDE": 18.32351818, "OBJECTID_1": 37514, "PARCEL_NO_": "107502030500", "Tax_Legal_": "PAR 3F-4 REM BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "HERNANDEZ, IRIS M.", "Address": "9th Street Est Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 618.945921086, "SHAPE_Area": 10936.976995499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363707.449199996888638, 254820.986299999058247 ], [ 363699.595499999821186, 254818.151000000536442 ], [ 363687.246799997985363, 254813.771999999880791 ], [ 363591.85360000282526, 255043.07660000026226 ], [ 363624.042000003159046, 255055.905200000852346 ], [ 363641.530799999833107, 255003.068799998611212 ], [ 363643.054399996995926, 254999.685199998319149 ], [ 363644.996100001037121, 254997.366500001400709 ], [ 363648.213799998164177, 254995.695500001311302 ], [ 363652.066699996590614, 254994.666700001806021 ], [ 363656.339599996805191, 254994.490499999374151 ], [ 363660.601700000464916, 254995.587999999523163 ], [ 363693.381399996578693, 255008.602000001817942 ], [ 363697.001000002026558, 255009.906199999153614 ], [ 363699.775399997830391, 255010.142000000923872 ], [ 363702.137100003659725, 255008.675999999046326 ], [ 363703.648100003600121, 255006.778299998492002 ], [ 363703.894000001251698, 255002.959300000220537 ], [ 363701.837399996817112, 254993.601599998772144 ], [ 363698.883699998259544, 254981.772300001233816 ], [ 363697.035199999809265, 254945.130399998277426 ], [ 363692.815200001001358, 254916.252300001680851 ], [ 363691.262199997901917, 254888.727800000458956 ], [ 363702.812299996614456, 254842.677400000393391 ], [ 363707.449199996888638, 254820.986299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107502030100", "MAP": "A9-733-T009", "PARCEL_NAM": "3F-5", "ACRE": ".940", "LONGITUDE": -64.88479076, "LATITUDE": 18.32334042, "OBJECTID_1": 37510, "PARCEL_NO_": "107502030100", "Tax_Legal_": "BOVONI/EASTERN PT 3F FRENCHMAN'S BAY QTR", "Name": "LIMA, ALFREDO", "Address": "PO Box 9355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 158500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 845.457078088, "SHAPE_Area": 3750.7069296599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363636.232600003480911, 255056.1689000017941 ], [ 363637.818300001323223, 255055.845199998468161 ], [ 363639.51410000026226, 255055.859499998390675 ], [ 363640.980099998414516, 255056.321400001645088 ], [ 363642.835600003600121, 255050.830299999564886 ], [ 363641.48650000244379, 255049.919900000095367 ], [ 363640.253300003707409, 255048.673200000077486 ], [ 363639.360200002789497, 255047.317099999636412 ], [ 363638.69709999859333, 255045.513300001621246 ], [ 363638.719899997115135, 255042.816300000995398 ], [ 363643.243100002408028, 255029.368599999696016 ], [ 363650.037100002169609, 255007.386300001293421 ], [ 363651.766999997198582, 255004.85359999909997 ], [ 363654.767599999904633, 255003.60530000180006 ], [ 363657.753700003027916, 255004.055100001394749 ], [ 363664.5658999979496, 255006.660000000149012 ], [ 363703.728799998760223, 255022.487700000405312 ], [ 363707.140299998223782, 255023.153400000184774 ], [ 363709.277699999511242, 255022.959199998527765 ], [ 363711.63570000231266, 255021.917700000107288 ], [ 363713.7837999984622, 255020.44990000128746 ], [ 363715.730999998748302, 255017.494500000029802 ], [ 363716.186800003051758, 255014.101799998432398 ], [ 363715.578400000929832, 255010.275600001215935 ], [ 363705.810900002717972, 254967.8429000005126 ], [ 363704.660400003194809, 254962.844799999147654 ], [ 363702.500799998641014, 254932.308499999344349 ], [ 363700.970299996435642, 254902.121899999678135 ], [ 363703.825099997222424, 254881.290600001811981 ], [ 363709.909599997103214, 254848.062199998646975 ], [ 363712.496100001037121, 254837.028200000524521 ], [ 363715.930399999022484, 254822.3766999989748 ], [ 363726.797799997031689, 254804.275499999523163 ], [ 363739.915899999439716, 254783.974800001829863 ], [ 363752.107500001788139, 254767.659699998795986 ], [ 363761.373199999332428, 254751.579100001603365 ], [ 363763.751999996602535, 254747.293299999088049 ], [ 363757.807300001382828, 254744.519099999219179 ], [ 363755.210699997842312, 254749.633299998939037 ], [ 363730.99549999833107, 254783.011799998581409 ], [ 363713.833599999547005, 254806.384500000625849 ], [ 363707.925300002098083, 254818.759100001305342 ], [ 363702.812299996614456, 254842.677400000393391 ], [ 363691.262199997901917, 254888.727800000458956 ], [ 363692.815200001001358, 254916.252300001680851 ], [ 363697.035199999809265, 254945.130399998277426 ], [ 363698.883699998259544, 254981.772300001233816 ], [ 363701.837399996817112, 254993.601599998772144 ], [ 363703.894000001251698, 255002.959300000220537 ], [ 363703.648100003600121, 255006.778299998492002 ], [ 363702.137100003659725, 255008.675999999046326 ], [ 363699.775399997830391, 255010.142000000923872 ], [ 363697.001000002026558, 255009.906199999153614 ], [ 363693.381399996578693, 255008.602000001817942 ], [ 363660.601700000464916, 254995.587999999523163 ], [ 363656.339599996805191, 254994.490499999374151 ], [ 363652.066699996590614, 254994.666700001806021 ], [ 363648.213799998164177, 254995.695500001311302 ], [ 363644.996100001037121, 254997.366500001400709 ], [ 363643.054399996995926, 254999.685199998319149 ], [ 363641.530799999833107, 255003.068799998611212 ], [ 363624.042000003159046, 255055.905200000852346 ], [ 363624.399300001561642, 255056.047600001096725 ], [ 363633.252199999988079, 255059.575899999588728 ], [ 363633.95719999819994, 255057.835400000214577 ], [ 363634.870200000703335, 255056.831700000911951 ], [ 363636.232600003480911, 255056.1689000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045300", "MAP": "D9-8141-T008", "PARCEL_NAM": "2-3L REM", "ACRE": ".455", "LONGITUDE": -64.88622979, "LATITUDE": 18.32218747, "OBJECTID_1": 37822, "PARCEL_NO_": "107504045300", "Tax_Legal_": "2-3L BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "LIMA JR., LUIS G.", "Address": "589 Lake Ave", "City": "Montrose", "State": "Pennsylvania", "Zip": 18801, "Country": "United States", "Land_Value": 60400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.92720433599999, "SHAPE_Area": 2735.6260774100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363569.02759999781847, 254776.142299998551607 ], [ 363542.142300002276897, 254753.238400001078844 ], [ 363506.796599999070168, 254804.689100001007318 ], [ 363535.654799997806549, 254824.768100000917912 ], [ 363563.802100002765656, 254833.653299998492002 ], [ 363579.354000002145767, 254806.549499999731779 ], [ 363535.112899996340275, 254793.732900001108646 ], [ 363569.02759999781847, 254776.142299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045900", "MAP": "D9-7993-T007", "PARCEL_NAM": "2-3L-3", "ACRE": ".25", "LONGITUDE": -64.88585468, "LATITUDE": 18.32180839, "OBJECTID_1": 37828, "PARCEL_NO_": "107504045900", "Tax_Legal_": "2-3L-2 & 2-3L-3 BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "MARSHALL, FLETCHER & ANGELA", "Address": "7176 Estate Bolongo", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.99607055600001, "SHAPE_Area": 1010.38148531 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363588.066699996590614, 254734.136999998241663 ], [ 363557.172899998724461, 254766.043200001120567 ], [ 363569.02759999781847, 254776.142299998551607 ], [ 363610.438000001013279, 254754.663800001144409 ], [ 363588.066699996590614, 254734.136999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021300", "MAP": "D9-8289-T009", "PARCEL_NAM": "2-5-1 REM", "ACRE": "2.69", "LONGITUDE": -64.89046426, "LATITUDE": 18.32309252, "OBJECTID_1": 37502, "PARCEL_NO_": "107502021300", "Tax_Legal_": "2-5-1 REM BOVONI (EASTERN PART) NO.1&2 FRENCHMAN'S BAY QTR", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 216800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 397.808643754, "SHAPE_Area": 6462.0661576399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363087.601400002837181, 254945.190600000321865 ], [ 363089.39190000295639, 254944.078999999910593 ], [ 363092.014700002968311, 254943.613099999725819 ], [ 363095.447700001299381, 254944.130100000649691 ], [ 363097.07490000128746, 254945.282699998468161 ], [ 363101.693300001323223, 254941.091499999165535 ], [ 363100.393500000238419, 254939.941700000315905 ], [ 363099.268399998545647, 254937.491799999028444 ], [ 363099.286200001835823, 254935.376899998635054 ], [ 363101.274999998509884, 254932.46510000154376 ], [ 363141.534500002861023, 254894.40819999948144 ], [ 363167.281800001859665, 254888.605399999767542 ], [ 363172.524800002574921, 254887.9989 ], [ 363190.11089999973774, 254890.161299999803305 ], [ 363083.875299997627735, 254849.779199998825788 ], [ 363079.809600003063679, 254853.756700001657009 ], [ 363041.601800002157688, 254889.963199999183416 ], [ 363036.722599998116493, 254894.778400000184774 ], [ 363027.77139999717474, 254902.348999999463558 ], [ 363030.125399999320507, 254905.068799998611212 ], [ 363036.104900002479553, 254903.636399999260902 ], [ 363087.601400002837181, 254945.190600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021900", "MAP": "D9-8289-T009", "PARCEL_NAM": "2-5-1-A", "ACRE": "6.36", "LONGITUDE": -64.89134813, "LATITUDE": 18.32421143, "OBJECTID_1": 37508, "PARCEL_NO_": "107502021900", "Tax_Legal_": "2-5-1-A BOVONI (EASTERN PART) NO.1&2 FRENCHMAN'S BAY QTR", "Name": "LIMA, JORGE E.", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 316300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 794.15013266699998, "SHAPE_Area": 33911.899717200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363141.556500002741814, 254988.728700000792742 ], [ 363036.104900002479553, 254903.636399999260902 ], [ 363030.125399999320507, 254905.068799998611212 ], [ 363027.77139999717474, 254902.348999999463558 ], [ 362985.552699998021126, 254938.056000001728535 ], [ 362817.423199996352196, 255080.223499998450279 ], [ 362985.791500002145767, 255099.333399999886751 ], [ 363043.968199998140335, 255085.455200001597404 ], [ 363112.016800001263618, 255048.648600000888109 ], [ 363141.556500002741814, 254988.728700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504060500", "MAP": "D9-6152-T97", "PARCEL_NAM": "17G", "ACRE": null, "LONGITUDE": -64.88609867, "LATITUDE": 18.31546305, "OBJECTID_1": 37858, "PARCEL_NO_": "107504060500", "Tax_Legal_": "BOVONI ESTATE 17G FRENCHMAN'S BAY QTR.", "Name": "CHARLES, PATRICK", "Address": "17G ESTATE BOVONI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 166900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.407928164, "SHAPE_Area": 1605.6184593400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363593.298199996352196, 254021.606699999421835 ], [ 363564.254799999296665, 254023.268800001591444 ], [ 363557.453900001943111, 254023.677000001072884 ], [ 363547.657399997115135, 254078.439500000327826 ], [ 363531.97070000320673, 254121.374200001358986 ], [ 363570.374399997293949, 254062.160100001841784 ], [ 363593.298199996352196, 254021.606699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504050900", "MAP": "C9-234-T79", "PARCEL_NAM": "4C", "ACRE": "3.03", "LONGITUDE": -64.88376068, "LATITUDE": 18.31775951, "OBJECTID_1": 37849, "PARCEL_NO_": "107504050900", "Tax_Legal_": "4C BOVONI/EASTERN PART FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE R", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 267800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 14.562668332599999, "SHAPE_Area": 5.1607125536899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363811.430600002408028, 254306.970100000500679 ], [ 363810.0253000035882, 254308.514499999582767 ], [ 363806.383799999952316, 254309.986699998378754 ], [ 363807.738200001418591, 254311.926699999719858 ], [ 363811.430600002408028, 254306.970100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107504050900", "MAP": "C9-234-T79", "PARCEL_NAM": "4C", "ACRE": "3.03", "LONGITUDE": -64.88328714, "LATITUDE": 18.31686221, "OBJECTID_1": 37849, "PARCEL_NO_": "107504050900", "Tax_Legal_": "4C BOVONI/EASTERN PART FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE R", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 267800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 624.30945850299997, "SHAPE_Area": 13848.1050813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363811.430600002408028, 254306.970100000500679 ], [ 363964.665399998426437, 254138.566899999976158 ], [ 363962.455200001597404, 254135.030000001192093 ], [ 363964.310599997639656, 254106.547600001096725 ], [ 363844.420699998736382, 254170.794199999421835 ], [ 363834.685599997639656, 254177.680599998682737 ], [ 363823.301899999380112, 254188.775400001555681 ], [ 363817.5912000015378, 254196.539200000464916 ], [ 363813.511100001633167, 254202.205299999564886 ], [ 363810.226499997079372, 254209.144499998539686 ], [ 363808.543799996376038, 254217.363400001078844 ], [ 363806.914899997413158, 254219.249899998307228 ], [ 363804.44030000269413, 254225.773499999195337 ], [ 363795.443199999630451, 254240.6875 ], [ 363755.489699997007847, 254292.500599998980761 ], [ 363771.567400000989437, 254298.331799998879433 ], [ 363790.056800000369549, 254305.026999998837709 ], [ 363794.991800002753735, 254293.668299999088049 ], [ 363806.383799999952316, 254309.986699998378754 ], [ 363810.0253000035882, 254308.514499999582767 ], [ 363811.430600002408028, 254306.970100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504046700", "MAP": "D9-8498-T010", "PARCEL_NAM": "2-3H-2", "ACRE": "0.48", "LONGITUDE": -64.88850034, "LATITUDE": 18.32315871, "OBJECTID_1": 37835, "PARCEL_NO_": "107504046700", "Tax_Legal_": "2-3H-2 BOVONI NOS 1&2 FRENCHMANS BAY QTR", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.655368839, "SHAPE_Area": 1910.98489399 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363276.199699997901917, 254884.984999999403954 ], [ 363291.57660000026226, 254928.743500001728535 ], [ 363314.993500001728535, 254937.635099999606609 ], [ 363323.658299997448921, 254879.591699998825788 ], [ 363317.479400001466274, 254878.288899999111891 ], [ 363303.771999999880791, 254878.17680000141263 ], [ 363286.004399999976158, 254881.4087999984622 ], [ 363277.917900003492832, 254884.086899999529123 ], [ 363276.199699997901917, 254884.984999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045500", "MAP": "D9-8498-T010", "PARCEL_NAM": "2-3H-3", "ACRE": "0.32", "LONGITUDE": -64.8888299, "LATITUDE": 18.32319321, "OBJECTID_1": 37824, "PARCEL_NO_": "107504045500", "Tax_Legal_": "2-3H-3 BOVONI NOS 1&2 FRENCHMANS BAY QTR", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.19214346699999, "SHAPE_Area": 1088.2476781299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363291.57660000026226, 254928.743500001728535 ], [ 363276.199699997901917, 254884.984999999403954 ], [ 363234.179200001060963, 254906.949200000613928 ], [ 363291.57660000026226, 254928.743500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021300", "MAP": "D9-8501-T010", "PARCEL_NAM": "2-5-1-3", "ACRE": ".500", "LONGITUDE": -64.89017699, "LATITUDE": 18.32363849, "OBJECTID_1": 37502, "PARCEL_NO_": "107502021300", "Tax_Legal_": "2-5-1 REM BOVONI (EASTERN PART) NO.1&2 FRENCHMAN'S BAY QTR", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 216800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.85140456799999, "SHAPE_Area": 1960.1080302800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363155.995300002396107, 254960.596999999135733 ], [ 363111.41950000077486, 254922.875599998980761 ], [ 363101.274999998509884, 254932.46510000154376 ], [ 363099.286200001835823, 254935.376899998635054 ], [ 363099.268399998545647, 254937.491799999028444 ], [ 363100.393500000238419, 254939.941700000315905 ], [ 363101.693300001323223, 254941.091499999165535 ], [ 363097.07490000128746, 254945.282699998468161 ], [ 363095.447700001299381, 254944.130100000649691 ], [ 363092.014700002968311, 254943.613099999725819 ], [ 363089.39190000295639, 254944.078999999910593 ], [ 363087.601400002837181, 254945.190600000321865 ], [ 363141.556500002741814, 254988.728700000792742 ], [ 363155.995300002396107, 254960.596999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021300", "MAP": "D9-8501-T010", "PARCEL_NAM": "2-5-1-2", "ACRE": ".504", "LONGITUDE": -64.88998382, "LATITUDE": 18.32339718, "OBJECTID_1": 37502, "PARCEL_NO_": "107502021300", "Tax_Legal_": "2-5-1 REM BOVONI (EASTERN PART) NO.1&2 FRENCHMAN'S BAY QTR", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 216800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.04014264700001, "SHAPE_Area": 1949.9772579200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363177.925499998033047, 254932.237700000405312 ], [ 363137.4087999984622, 254898.308200001716614 ], [ 363111.41950000077486, 254922.875599998980761 ], [ 363155.995300002396107, 254960.596999999135733 ], [ 363157.95610000193119, 254956.776700001209974 ], [ 363167.752300001680851, 254942.713599998503923 ], [ 363177.925499998033047, 254932.237700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107502021300", "MAP": "D9-8501-T010", "PARCEL_NAM": "2-5-1-1", "ACRE": ".501", "LONGITUDE": -64.88967398, "LATITUDE": 18.32318912, "OBJECTID_1": 37502, "PARCEL_NO_": "107502021300", "Tax_Legal_": "2-5-1 REM BOVONI (EASTERN PART) NO.1&2 FRENCHMAN'S BAY QTR", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 216800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.13530414100001, "SHAPE_Area": 1937.62749841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363137.4087999984622, 254898.308200001716614 ], [ 363177.925499998033047, 254932.237700000405312 ], [ 363182.395400002598763, 254927.634700000286102 ], [ 363188.88910000026226, 254922.621599998325109 ], [ 363206.725000001490116, 254911.368500001728535 ], [ 363222.92679999768734, 254902.635200001299381 ], [ 363190.11089999973774, 254890.161299999803305 ], [ 363172.524800002574921, 254887.9989 ], [ 363167.281800001859665, 254888.605399999767542 ], [ 363141.534500002861023, 254894.40819999948144 ], [ 363137.4087999984622, 254898.308200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504045600", "MAP": "D9-7769-T006", "PARCEL_NAM": "2-2-1-A", "ACRE": "2.00", "LONGITUDE": -64.88585734, "LATITUDE": 18.31999317, "OBJECTID_1": 37825, "PARCEL_NO_": "107504045600", "Tax_Legal_": "BOVONI ESTATE 2-2-1-A No.1&2 FRENCHMAN'S BAY QTR.", "Name": "VIRGIN LEPRECHAUN LLC", "Address": "PO Box 1207", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 343000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 378.01370068300002, "SHAPE_Area": 8334.0850046600008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363652.746699996292591, 254546.519099999219179 ], [ 363543.530699998140335, 254499.571400001645088 ], [ 363516.121399998664856, 254562.007800001651049 ], [ 363623.744599997997284, 254612.495700001716614 ], [ 363627.034599997103214, 254604.923200000077486 ], [ 363652.746699996292591, 254546.519099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107504040700", "MAP": "D9-8893-T014", "PARCEL_NAM": "2-2 REM", "ACRE": "5.0", "LONGITUDE": -64.88610936000001, "LATITUDE": 18.31853198, "OBJECTID_1": 37786, "PARCEL_NO_": "107504040700", "Tax_Legal_": "PAR 2-2 REM 1 & 2 FRENCHMANS BAY QTR", "Name": "KO987FLA INC", "Address": "PO Box 9355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 711.34521561700001, "SHAPE_Area": 20294.364498700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363449.245200000703335, 254461.190999999642372 ], [ 363543.530699998140335, 254499.571400001645088 ], [ 363559.704700000584126, 254462.728399999439716 ], [ 363586.017300002276897, 254402.993200000375509 ], [ 363630.585699997842312, 254423.684099998325109 ], [ 363656.171899996697903, 254311.325500000268221 ], [ 363656.145999997854233, 254311.319299999624491 ], [ 363608.679700002074242, 254298.476300001144409 ], [ 363569.621200002729893, 254286.934900000691414 ], [ 363547.843099996447563, 254347.674100000411272 ], [ 363530.996899999678135, 254394.657999999821186 ], [ 363486.2162000015378, 254380.855900000780821 ], [ 363478.822700001299381, 254396.838500000536442 ], [ 363469.786100000143051, 254416.396200001239777 ], [ 363464.041199997067451, 254428.170499999076128 ], [ 363457.464800000190735, 254442.893199998885393 ], [ 363449.245200000703335, 254461.190999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107502030500", "MAP": "D9-8390-T009", "PARCEL_NAM": null, "ACRE": ".31", "LONGITUDE": -64.88466287, "LATITUDE": 18.32216742, "OBJECTID_1": 37514, "PARCEL_NO_": "107502030500", "Tax_Legal_": "PAR 3F-4 REM BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "HERNANDEZ, IRIS M.", "Address": "9th Street Est Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.454321185, "SHAPE_Area": 867.93318860099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363711.332599997520447, 254781.018100000917912 ], [ 363687.246799997985363, 254813.771999999880791 ], [ 363699.595499999821186, 254818.151000000536442 ], [ 363707.449199996888638, 254820.986299999058247 ], [ 363707.925300002098083, 254818.759100001305342 ], [ 363713.833599999547005, 254806.384500000625849 ], [ 363728.915899999439716, 254785.844099998474121 ], [ 363712.451899997889996, 254772.817099999636412 ], [ 363704.620300002396107, 254772.009899999946356 ], [ 363702.189099997282028, 254777.854100000113249 ], [ 363711.332599997520447, 254781.018100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107502030500", "MAP": "D9-2047-T82", "PARCEL_NAM": null, "ACRE": ".06", "LONGITUDE": -64.8847438, "LATITUDE": 18.32211208, "OBJECTID_1": 37514, "PARCEL_NO_": "107502030500", "Tax_Legal_": "PAR 3F-4 REM BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "HERNANDEZ, IRIS M.", "Address": "9th Street Est Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.233897806800002, "SHAPE_Area": 187.846208483 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363687.246799997985363, 254813.771999999880791 ], [ 363711.332599997520447, 254781.018100000917912 ], [ 363702.189099997282028, 254777.854100000113249 ], [ 363701.112199999392033, 254780.442699998617172 ], [ 363695.073700003325939, 254794.957899998873472 ], [ 363693.133699998259544, 254799.621300000697374 ], [ 363687.246799997985363, 254813.771999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107504040600", "MAP": "D9-7981-T007", "PARCEL_NAM": "2-2-2", "ACRE": "3.004", "LONGITUDE": -64.88553852, "LATITUDE": 18.31926832, "OBJECTID_1": 37785, "PARCEL_NO_": "107504040600", "Tax_Legal_": "BOVONI 2-2-2 FRENCHMAN BAY QTR", "Name": "K & C DEVELOPMENT LLC", "Address": "7411 Est Bovoni 1Ste.", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 343000, "Improved_V": 834900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 447.12799362800001, "SHAPE_Area": 12376.401463599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363543.530699998140335, 254499.571400001645088 ], [ 363652.746699996292591, 254546.519099999219179 ], [ 363668.148699998855591, 254511.534200001507998 ], [ 363673.062100000679493, 254502.708500001579523 ], [ 363674.703400000929832, 254499.344399999827147 ], [ 363675.527699999511242, 254497.240200001746416 ], [ 363682.950000002980232, 254477.880399998277426 ], [ 363687.872400000691414, 254467.999299999326468 ], [ 363692.8074000030756, 254456.640599999576807 ], [ 363695.251500003039837, 254453.705299999564886 ], [ 363586.017300002276897, 254402.993200000375509 ], [ 363559.704700000584126, 254462.728399999439716 ], [ 363543.530699998140335, 254499.571400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504044200", "MAP": "D9-8669-T012", "PARCEL_NAM": "2-3E-1 REM", "ACRE": ".575", "LONGITUDE": -64.88468231, "LATITUDE": 18.31956816, "OBJECTID_1": 37819, "PARCEL_NO_": "107504044200", "Tax_Legal_": "2-3E-1-REM & 2-3E-2 BOVONI NO. 1&2 FRENCHMAN'S BAY QTR", "Name": "LIMA, DIEGO A., JR.", "Address": "PO Box 9911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 179500, "Improved_V": 83200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.01999853199999, "SHAPE_Area": 3653.9898359399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363668.750600002706051, 254532.096099998801947 ], [ 363675.713100001215935, 254543.33500000089407 ], [ 363704.904799997806549, 254532.878600001335144 ], [ 363722.874200001358986, 254541.70890000090003 ], [ 363727.726899996399879, 254543.490899998694658 ], [ 363750.763899996876717, 254492.236299999058247 ], [ 363745.978100001811981, 254490.246199999004602 ], [ 363697.217500001192093, 254469.969999998807907 ], [ 363693.423100002110004, 254479.021499998867512 ], [ 363691.792499996721745, 254481.119100000709295 ], [ 363690.969999998807907, 254483.012200001627207 ], [ 363677.822599999606609, 254511.824499998241663 ], [ 363668.750600002706051, 254532.096099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504046300", "MAP": "D9-8669-T012", "PARCEL_NAM": "2-3E-1-1", "ACRE": ".50", "LONGITUDE": -64.8841387, "LATITUDE": 18.31973888, "OBJECTID_1": 37831, "PARCEL_NO_": "107504046300", "Tax_Legal_": "2-3E-1-1 BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "LIMA III, DIEGO", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 179500, "Improved_V": 158000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.95296463400001, "SHAPE_Area": 3240.5046204099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363784.719300001859665, 254564.419100001454353 ], [ 363792.456500001251698, 254544.056200001388788 ], [ 363800.466300003230572, 254522.975699998438358 ], [ 363803.771099999547005, 254514.278299998492002 ], [ 363797.387299999594688, 254511.623700000345707 ], [ 363785.133599996566772, 254506.528200000524521 ], [ 363750.763899996876717, 254492.236299999058247 ], [ 363727.726899996399879, 254543.490899998694658 ], [ 363784.719300001859665, 254564.419100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504044200", "MAP": "D9-8657-T012", "PARCEL_NAM": "2-3E-2", "ACRE": "1.364", "LONGITUDE": -64.8848875, "LATITUDE": 18.32078107, "OBJECTID_1": 37819, "PARCEL_NO_": "107504044200", "Tax_Legal_": "2-3E-1-REM & 2-3E-2 BOVONI NO. 1&2 FRENCHMAN'S BAY QTR", "Name": "LIMA, DIEGO A., JR.", "Address": "PO Box 9911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 179500, "Improved_V": 83200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 358.63328743800002, "SHAPE_Area": 6416.1526129800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363755.238899998366833, 254642.006499998271465 ], [ 363639.158399999141693, 254598.221000000834465 ], [ 363628.501599997282028, 254622.0337999984622 ], [ 363616.277099996805191, 254645.541900001466274 ], [ 363649.679799996316433, 254658.662999998778105 ], [ 363655.244300000369549, 254660.559000000357628 ], [ 363673.624200001358986, 254666.821600001305342 ], [ 363703.298500001430511, 254673.513199999928474 ], [ 363709.858199998736382, 254674.984099999070168 ], [ 363736.605999998748302, 254691.045099999755621 ], [ 363738.202299997210503, 254686.843800000846386 ], [ 363743.639700002968311, 254672.533500000834465 ], [ 363747.380300000309944, 254662.688900001347065 ], [ 363754.577600002288818, 254643.747000001370907 ], [ 363755.238899998366833, 254642.006499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504046400", "MAP": "D9-8657-T012", "PARCEL_NAM": "2-3E-REM", "ACRE": "2.644", "LONGITUDE": -64.88463012, "LATITUDE": 18.32024031, "OBJECTID_1": 37832, "PARCEL_NO_": "107504046400", "Tax_Legal_": "2-3E REM BOVONI NO. 1&2 FRENCHMAN'S BAY QTR", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 214000, "Improved_V": 193700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 409.64130458300002, "SHAPE_Area": 9730.5421788000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363639.158399999141693, 254598.221000000834465 ], [ 363755.238899998366833, 254642.006499998271465 ], [ 363757.075000002980232, 254637.174199998378754 ], [ 363763.214699998497963, 254621.015500001609325 ], [ 363765.448499999940395, 254615.136700000613928 ], [ 363767.128799997270107, 254610.714299999177456 ], [ 363774.329300001263618, 254591.763900000602007 ], [ 363779.597900003194809, 254577.897799998521805 ], [ 363784.719300001859665, 254564.419100001454353 ], [ 363727.726899996399879, 254543.490899998694658 ], [ 363722.874200001358986, 254541.70890000090003 ], [ 363704.904799997806549, 254532.878600001335144 ], [ 363675.713100001215935, 254543.33500000089407 ], [ 363668.750600002706051, 254532.096099998801947 ], [ 363639.158399999141693, 254598.221000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107202010100", "MAP": "D9-8892-T014", "PARCEL_NAM": "6 REM", "ACRE": "2.4", "LONGITUDE": -64.88585212, "LATITUDE": 18.33196611, "OBJECTID_1": 24757, "PARCEL_NO_": "107202010100", "Tax_Legal_": "HASSEL ISLAND 3 SOUTHSIDE QTR", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1015500, "Improved_V": 35800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 493.605601267, "SHAPE_Area": 10628.9799791 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363514.512599997222424, 255864.786699999123812 ], [ 363522.026500001549721, 255865.228799998760223 ], [ 363522.026500001549721, 255876.235500000417233 ], [ 363514.108199998736382, 255876.187399998307228 ], [ 363512.741300001740456, 255914.730599999427795 ], [ 363521.345200002193451, 255964.119800001382828 ], [ 363557.689300000667572, 255929.812100000679493 ], [ 363559.307300001382828, 255929.192099999636412 ], [ 363570.667599998414516, 255920.841299999505281 ], [ 363609.552199997007847, 255899.839099999517202 ], [ 363622.541400000452995, 255889.601799998432398 ], [ 363631.486299999058247, 255880.809099998325109 ], [ 363636.378100000321865, 255874.516399998217821 ], [ 363651.001400001347065, 255861.759300000965595 ], [ 363661.542900003492832, 255854.87950000166893 ], [ 363677.726899996399879, 255846.169300001114607 ], [ 363631.561200000345707, 255832.85359999909997 ], [ 363611.143500000238419, 255833.544300001114607 ], [ 363589.433899998664856, 255832.929200001060963 ], [ 363557.526500001549721, 255841.25450000166893 ], [ 363554.178300000727177, 255842.128100000321865 ], [ 363515.021700002253056, 255850.430700000375509 ], [ 363514.512599997222424, 255864.786699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107502011100", "MAP": "A9-332-T86", "PARCEL_NAM": "28", "ACRE": null, "LONGITUDE": -64.89034756, "LATITUDE": 18.32872163, "OBJECTID_1": 37489, "PARCEL_NO_": "107502011100", "Tax_Legal_": "28 ESTATE CHARLOTTE AMALIE NO. 3 NEW QTR", "Name": "HARTHMAN LEASING, II LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 3091300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4363.9461966700001, "SHAPE_Area": 567700.13261299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363373.265299998223782, 255819.879900000989437 ], [ 363569.471400000154972, 255304.016199998557568 ], [ 363561.465899996459484, 255297.195599999278784 ], [ 363543.851099997758865, 255282.486000001430511 ], [ 363513.39639999717474, 255260.494100000709295 ], [ 363498.168200001120567, 255249.603700000792742 ], [ 363466.8783999979496, 255230.982500001788139 ], [ 363447.607799999415874, 255221.325500000268221 ], [ 363421.105599999427795, 255208.654100000858307 ], [ 363356.053300000727177, 255177.724199999123812 ], [ 363305.428199999034405, 255157.044900000095367 ], [ 363255.582500003278255, 255139.538400001823902 ], [ 363212.945000000298023, 255127.790300000458956 ], [ 363206.505300000309944, 255126.471099998801947 ], [ 363196.847499996423721, 255124.281100001186132 ], [ 363181.51860000193119, 255125.211100000888109 ], [ 363171.01860000193119, 255127.236099999397993 ], [ 363133.7753000035882, 255144.874200001358986 ], [ 363043.067400000989437, 255191.205699998885393 ], [ 363030.108800001442432, 255197.854600001126528 ], [ 363025.252999998629093, 255199.925799999386072 ], [ 363016.358300000429153, 255202.808299999684095 ], [ 363000.215899996459484, 255204.576099999248981 ], [ 362979.285899996757507, 255200.394000001251698 ], [ 362943.075599998235703, 255191.442800000309944 ], [ 362897.171499997377396, 255184.523200001567602 ], [ 362889.911100000143051, 255184.885899998247623 ], [ 362857.610100001096725, 255190.321100000292063 ], [ 362831.757700003683567, 255196.020100001245737 ], [ 362820.456799998879433, 255197.405299998819828 ], [ 362760.814800001680851, 255193.961800001561642 ], [ 362702.823299996554852, 255186.098900001496077 ], [ 362679.465400002896786, 255182.952399998903275 ], [ 362618.300700001418591, 255168.941899999976158 ], [ 362614.235699996352196, 255267.48930000141263 ], [ 362644.102399997413158, 255358.504000000655651 ], [ 362661.269400000572205, 255425.772199999541044 ], [ 362665.391599997878075, 255509.821199998259544 ], [ 362656.449199996888638, 255612.972699999809265 ], [ 362654.681900002062321, 255631.112300001084805 ], [ 362659.693099997937679, 255705.458299998193979 ], [ 362661.178099997341633, 255720.458099998533726 ], [ 362665.766000002622604, 255749.837600000202656 ], [ 362671.211999997496605, 255774.152300000190735 ], [ 362785.148800000548363, 255744.948600001633167 ], [ 362855.7753000035882, 255743.765799999237061 ], [ 362924.644000001251698, 255739.014400001615286 ], [ 362988.909100003540516, 255750.217300001531839 ], [ 362993.217299997806549, 255769.355999998748302 ], [ 362956.395099997520447, 255789.925299998372793 ], [ 362952.587999999523163, 255817.436200000345707 ], [ 362965.60249999910593, 255864.190900001674891 ], [ 362987.108499996364117, 255985.937100000679493 ], [ 362996.811200000345707, 255982.850099999457598 ], [ 363048.999499998986721, 255966.277199998497963 ], [ 363004.698399998247623, 255824.189800001680851 ], [ 363149.784500002861023, 255778.95380000025034 ], [ 363193.847900003194809, 255920.279199998825788 ], [ 363261.209100000560284, 255898.887899998575449 ], [ 363247.428800001740456, 256001.999899998307228 ], [ 363253.935000002384186, 255995.509300000965595 ], [ 363263.653899997472763, 255990.522599998861551 ], [ 363276.576499998569489, 255988.095199998468161 ], [ 363291.898199997842312, 255988.009500000625849 ], [ 363301.563199996948242, 255989.355200000107288 ], [ 363411.03830000013113, 256011.782699998468161 ], [ 363431.187100000679493, 256013.003100000321865 ], [ 363446.523199997842312, 256011.228799998760223 ], [ 363461.880900003015995, 256006.921500001102686 ], [ 363478.885399997234344, 255998.616900000721216 ], [ 363487.810599997639656, 255992.146099999547005 ], [ 363521.108499996364117, 255964.343199998140335 ], [ 363521.345200002193451, 255964.119800001382828 ], [ 363512.741300001740456, 255914.730599999427795 ], [ 363515.021700002253056, 255850.430700000375509 ], [ 363554.178300000727177, 255842.128100000321865 ], [ 363557.526500001549721, 255841.25450000166893 ], [ 363589.433899998664856, 255832.929200001060963 ], [ 363611.143500000238419, 255833.544300001114607 ], [ 363631.561200000345707, 255832.85359999909997 ], [ 363677.726899996399879, 255846.169300001114607 ], [ 363685.020300000905991, 255842.243999999016523 ], [ 363652.862000003457069, 255830.443599998950958 ], [ 363636.389200001955032, 255826.850999999791384 ], [ 363614.245300002396107, 255826.232099998742342 ], [ 363586.875799998641014, 255827.295800000429153 ], [ 363564.250299997627735, 255832.284699998795986 ], [ 363535.957500003278255, 255839.815699998289347 ], [ 363504.650399997830391, 255844.299699999392033 ], [ 363474.230099998414516, 255846.632699999958277 ], [ 363446.002999998629093, 255846.394400000572205 ], [ 363428.66160000115633, 255842.794599998742342 ], [ 363406.586999997496605, 255833.974700000137091 ], [ 363373.265299998223782, 255819.879900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107502011100", "MAP": "D9-7793-T006", "PARCEL_NAM": "28-5", "ACRE": "15.5499", "LONGITUDE": -64.88575967, "LATITUDE": 18.33069963, "OBJECTID_1": 37489, "PARCEL_NO_": "107502011100", "Tax_Legal_": "28 ESTATE CHARLOTTE AMALIE NO. 3 NEW QTR", "Name": "HARTHMAN LEASING, II LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 3091300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1079.8752816399999, "SHAPE_Area": 66669.051773 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363704.476999998092651, 255831.799499999731779 ], [ 363740.120200000703335, 255812.6706000007689 ], [ 363751.478699997067451, 255804.530999999493361 ], [ 363759.606600001454353, 255796.998100001364946 ], [ 363769.384800001978874, 255785.045800000429153 ], [ 363773.470299996435642, 255778.746399998664856 ], [ 363774.30179999768734, 255775.797899998724461 ], [ 363775.927000001072884, 255774.333599999547005 ], [ 363784.997800000011921, 255750.765399999916553 ], [ 363798.755900003015995, 255713.298500001430511 ], [ 363521.570500001311302, 255589.322200000286102 ], [ 363373.265299998223782, 255819.879900000989437 ], [ 363406.586999997496605, 255833.974700000137091 ], [ 363428.66160000115633, 255842.794599998742342 ], [ 363446.002999998629093, 255846.394400000572205 ], [ 363474.230099998414516, 255846.632699999958277 ], [ 363504.650399997830391, 255844.299699999392033 ], [ 363535.957500003278255, 255839.815699998289347 ], [ 363564.250299997627735, 255832.284699998795986 ], [ 363586.875799998641014, 255827.295800000429153 ], [ 363614.245300002396107, 255826.232099998742342 ], [ 363636.389200001955032, 255826.850999999791384 ], [ 363652.862000003457069, 255830.443599998950958 ], [ 363685.020300000905991, 255842.243999999016523 ], [ 363686.6554000005126, 255841.364000000059605 ], [ 363704.476999998092651, 255831.799499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010400", "MAP": "D9-8002-T007", "PARCEL_NAM": "28-1-2", "ACRE": "2.010", "LONGITUDE": -64.8850496, "LATITUDE": 18.32808041, "OBJECTID_1": 21502, "PARCEL_NO_": "105603010400", "Tax_Legal_": "28-1 REM ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "HEIRS OF SAMMY E.HARTMAN,JR.", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 279400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 511.61107200200001, "SHAPE_Area": 8992.5152725000007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363605.33110000193119, 255421.466099999845028 ], [ 363606.457500003278255, 255425.1554000005126 ], [ 363725.591099999845028, 255580.861000001430511 ], [ 363671.191600002348423, 255384.853100001811981 ], [ 363662.379699997603893, 255378.026000000536442 ], [ 363639.898299999535084, 255366.654100000858307 ], [ 363634.53999999910593, 255362.931499999016523 ], [ 363605.33110000193119, 255421.466099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107502011000", "MAP": "D9-5151-T91", "PARCEL_NAM": "28-1-1", "ACRE": "7.49", "LONGITUDE": -64.88402262, "LATITUDE": 18.32882912, "OBJECTID_1": 37488, "PARCEL_NO_": "107502011000", "Tax_Legal_": "PAR 28-1-1, 28-1-2 & 28-6-1 3 NEW QTR", "Name": "HARTHMAN LEASING II, LLLP", "Address": "Merchants Financial Center", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021814, "Country": "United States", "Land_Value": 604400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 762.37081663900005, "SHAPE_Area": 29206.227263799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363671.191600002348423, 255384.853100001811981 ], [ 363747.297600001096725, 255659.072200000286102 ], [ 363809.389600001275539, 255682.576299998909235 ], [ 363821.365699999034405, 255646.571699999272823 ], [ 363838.751400001347065, 255593.518399998545647 ], [ 363843.699000000953674, 255580.682199999690056 ], [ 363848.610600002110004, 255572.067600000649691 ], [ 363850.248400002717972, 255569.125700000673532 ], [ 363851.886200003325939, 255566.183800000697374 ], [ 363857.618500001728535, 255555.887099999934435 ], [ 363859.241899996995926, 255554.633799999952316 ], [ 363864.144500002264977, 255547.074599999934435 ], [ 363867.389499999582767, 255544.779100000858307 ], [ 363864.221799999475479, 255537.998199999332428 ], [ 363857.852200001478195, 255528.446800000965595 ], [ 363853.887199997901917, 255520.603900000452995 ], [ 363845.12389999628067, 255508.0777000002563 ], [ 363836.35869999974966, 255495.762499999254942 ], [ 363819.580799996852875, 255477.471099998801947 ], [ 363805.193000003695488, 255462.576799999922514 ], [ 363779.567299999296665, 255441.679900001734495 ], [ 363753.898299999535084, 255425.848900001496077 ], [ 363749.083800002932549, 255423.06529999896884 ], [ 363737.840400002896786, 255417.695900000631809 ], [ 363725.792499996721745, 255412.108899999409914 ], [ 363719.386900000274181, 255406.779100000858307 ], [ 363712.977799996733665, 255401.871500000357628 ], [ 363710.571400001645088, 255400.374200001358986 ], [ 363695.319799996912479, 255392.227800000458956 ], [ 363687.292700000107288, 255387.940200001001358 ], [ 363677.622299998998642, 255387.227800000458956 ], [ 363671.191600002348423, 255384.853100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107502011100", "MAP": "D9-8002-T007", "PARCEL_NAM": "28-6-1", "ACRE": ".500", "LONGITUDE": -64.88561996, "LATITUDE": 18.32728937, "OBJECTID_1": 37489, "PARCEL_NO_": "107502011100", "Tax_Legal_": "28 ESTATE CHARLOTTE AMALIE NO. 3 NEW QTR", "Name": "HARTHMAN LEASING, II LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 3091300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.47473548400001, "SHAPE_Area": 2704.94808104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363569.471400000154972, 255304.016199998557568 ], [ 363605.33110000193119, 255421.466099999845028 ], [ 363634.53999999910593, 255362.931499999016523 ], [ 363617.452799998223782, 255351.060499999672174 ], [ 363615.861699998378754, 255348.514400001615286 ], [ 363614.256300002336502, 255347.656899999827147 ], [ 363611.06700000166893, 255343.408900000154972 ], [ 363595.8783999979496, 255327.874800000339746 ], [ 363569.471400000154972, 255304.016199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107502011100", "MAP": "A9-694-T006", "PARCEL_NAM": "28-6", "ACRE": "7.368", "LONGITUDE": -64.88644568, "LATITUDE": 18.32877117, "OBJECTID_1": 37489, "PARCEL_NO_": "107502011100", "Tax_Legal_": "28 ESTATE CHARLOTTE AMALIE NO. 3 NEW QTR", "Name": "HARTHMAN LEASING, II LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 3091300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1136.45044792, "SHAPE_Area": 23562.692772099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363605.33110000193119, 255421.466099999845028 ], [ 363569.471400000154972, 255304.016199998557568 ], [ 363373.265299998223782, 255819.879900000989437 ], [ 363521.570500001311302, 255589.322200000286102 ], [ 363605.33110000193119, 255421.466099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603010400", "MAP": "D9-5151-T91", "PARCEL_NAM": "28-1", "ACRE": "10.66", "LONGITUDE": -64.88519066000001, "LATITUDE": 18.32920284, "OBJECTID_1": 21502, "PARCEL_NO_": "105603010400", "Tax_Legal_": "28-1 REM ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "HEIRS OF SAMMY E.HARTMAN,JR.", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 279400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 871.22605966599997, "SHAPE_Area": 30115.024381399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363725.591099999845028, 255580.861000001430511 ], [ 363606.457500003278255, 255425.1554000005126 ], [ 363605.33110000193119, 255421.466099999845028 ], [ 363521.570500001311302, 255589.322200000286102 ], [ 363798.755900003015995, 255713.298500001430511 ], [ 363803.159299999475479, 255701.307000000029802 ], [ 363809.389600001275539, 255682.576299998909235 ], [ 363747.297600001096725, 255659.072200000286102 ], [ 363725.591099999845028, 255580.861000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504073400", "MAP": "D9-6042-T96", "PARCEL_NAM": "3G-25", "ACRE": ".25", "LONGITUDE": -64.8800571, "LATITUDE": 18.3231615, "OBJECTID_1": 37893, "PARCEL_NO_": "107504073400", "Tax_Legal_": "3G-25 BOVONI NO. 1&2 FRENCHMAN'S BAY QTR", "Name": "ST LOUIS, OBENIS and JULIENEMISE ETIENNE", "Address": "PO Box 12408", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29000, "Improved_V": 98300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.2351256, "SHAPE_Area": 1062.7596125800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364174.494400002062321, 254899.55009999871254 ], [ 364172.999300003051758, 254911.389699999243021 ], [ 364174.830700002610683, 254924.323800001293421 ], [ 364194.790899999439716, 254924.323800001293421 ], [ 364204.563299998641014, 254924.323800001293421 ], [ 364218.885799996554852, 254918.136700000613928 ], [ 364215.007299996912479, 254906.260999999940395 ], [ 364214.45610000193119, 254904.57319999858737 ], [ 364213.269500002264977, 254900.939899999648333 ], [ 364212.236000001430511, 254897.084699999541044 ], [ 364174.494400002062321, 254899.55009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604019300", "MAP": null, "PARCEL_NAM": "126B", "ACRE": null, "LONGITUDE": -64.88734806, "LATITUDE": 18.33969784, "OBJECTID_1": 21669, "PARCEL_NO_": "105604019300", "Tax_Legal_": "126B ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 106900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.197039164, "SHAPE_Area": 648.06354339799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363406.644900001585484, 256716.799199998378754 ], [ 363400.189000003039837, 256717.379700001329184 ], [ 363400.167499996721745, 256719.912599999457598 ], [ 363396.132299996912479, 256720.30180000141263 ], [ 363396.760600000619888, 256741.205200001597404 ], [ 363399.183100000023842, 256740.802799999713898 ], [ 363404.794900000095367, 256744.648400001227856 ], [ 363406.396799996495247, 256745.928100001066923 ], [ 363410.394199997186661, 256749.971599999815226 ], [ 363412.770000003278255, 256755.057300001382828 ], [ 363417.579099997878075, 256758.474199999123812 ], [ 363421.601599998772144, 256759.5625 ], [ 363414.661300003528595, 256722.353300001472235 ], [ 363413.908900000154972, 256716.014299999922514 ], [ 363406.644900001585484, 256716.799199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704045000", "MAP": "D9-9081-T016", "PARCEL_NAM": "11-7-1", "ACRE": ".26", "LONGITUDE": -64.87098579000001, "LATITUDE": 18.33372115, "OBJECTID_1": 23656, "PARCEL_NO_": "105704045000", "Tax_Legal_": "11-7-1 REM. LANGMATH NO.5 RED HOOK QTR", "Name": "BASTIEN, JOHNSON P. & BERVALINE", "Address": "PO Box 772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.70392893299999, "SHAPE_Area": 1264.9448629399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365179.075699999928474, 256075.544100001454353 ], [ 365150.895300000905991, 256069.159499999135733 ], [ 365124.01349999755621, 256086.942899998277426 ], [ 365108.200800001621246, 256098.674800001084805 ], [ 365105.184500001370907, 256101.942499998956919 ], [ 365107.685900002717972, 256101.842599999159575 ], [ 365115.629699997603893, 256101.910399999469519 ], [ 365129.640500001609325, 256102.95890000090003 ], [ 365141.999799996614456, 256105.851399999111891 ], [ 365143.117799997329712, 256106.0 ], [ 365179.075699999928474, 256075.544100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704080100", "MAP": "D9-7628-T005", "PARCEL_NAM": "11-7-2", "ACRE": ".300", "LONGITUDE": -64.87085543000001, "LATITUDE": 18.33408095, "OBJECTID_1": 23697, "PARCEL_NO_": "105704080100", "Tax_Legal_": "11-7-2 LANGMATH No.5 RED HOOK QUARTER", "Name": "POWELL, KAREN L. (LIFE ESTATE)", "Address": "PO Box 12262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 145000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.11836398, "SHAPE_Area": 1395.0364009299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365154.439400002360344, 256159.219799999147654 ], [ 365161.481100000441074, 256150.377399999648333 ], [ 365165.969800002872944, 256144.609499998390675 ], [ 365179.1925999969244, 256128.464800000190735 ], [ 365181.836000002920628, 256119.894099999219179 ], [ 365180.954899996519089, 256113.615800000727177 ], [ 365176.755300000309944, 256112.883200000971556 ], [ 365164.144500002264977, 256112.07880000025034 ], [ 365150.593099996447563, 256111.963199999183416 ], [ 365138.227799996733665, 256109.767400000244379 ], [ 365129.477899998426437, 256109.575500000268221 ], [ 365154.439400002360344, 256159.219799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704043500", "MAP": "D9-9104-T016", "PARCEL_NAM": "11-7-3", "ACRE": "0.39", "LONGITUDE": -64.87045085, "LATITUDE": 18.33426182, "OBJECTID_1": 23651, "PARCEL_NO_": "105704043500", "Tax_Legal_": "11-7-3A LANGMATH NO.5 RED HOOK QTR", "Name": "GREEN, RITA L.", "Address": "PO Box 9042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.56126757199999, "SHAPE_Area": 2283.3564384400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365168.704999998211861, 256149.817999999970198 ], [ 365198.927599996328354, 256181.147300001233816 ], [ 365230.350400000810623, 256163.937699999660254 ], [ 365202.682899996638298, 256111.789599999785423 ], [ 365189.935699999332428, 256114.360500000417233 ], [ 365189.546300001442432, 256119.959899999201298 ], [ 365184.556500002741814, 256129.671799998730421 ], [ 365170.618900001049042, 256147.436099998652935 ], [ 365168.704999998211861, 256149.817999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87596143, "LATITUDE": 18.33329497, "OBJECTID_1": 23145, "PARCEL_NO_": "105703060600", "Tax_Legal_": "LONGMATH 11-39", "Name": "FAHIE, CLIFFORD A. & JENNIFER A.", "Address": "6032 Frydenhoj 1-9-1401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.44175340499999, "SHAPE_Area": 3520.91194189 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364668.732900001108646, 256040.019299998879433 ], [ 364659.886799998581409, 256037.2027000002563 ], [ 364655.878600001335144, 256034.425700001418591 ], [ 364651.08389999717474, 256029.320199999958277 ], [ 364646.33049999922514, 256019.359900001436472 ], [ 364644.730499997735023, 256017.869100000709295 ], [ 364639.987899996340275, 256006.642299998551607 ], [ 364638.391500003635883, 256004.729400001466274 ], [ 364636.821999996900558, 255999.650299999862909 ], [ 364592.366899996995926, 256011.952100001275539 ], [ 364588.051299996674061, 256045.269600000232458 ], [ 364583.739200003445148, 256078.164900001138449 ], [ 364668.732900001108646, 256040.019299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87548331000001, "LATITUDE": 18.33332455, "OBJECTID_1": 23141, "PARCEL_NO_": "105703060100", "Tax_Legal_": "LANGMATH(LITTLE NORGE) No.5 RED HOOK QUARTER", "Name": "ORVILLE S. FRANCIS", "Address": "PO Box 10715", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013715, "Country": "United States", "Land_Value": 77800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.98668948885999996, "SHAPE_Area": 0.04597436956 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364668.639799997210503, 256040.3445999994874 ], [ 364668.732900001108646, 256040.019299998879433 ], [ 364668.408600002527237, 256040.164799999445677 ], [ 364668.639799997210503, 256040.3445999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063900", "MAP": "A9-519-T98", "PARCEL_NAM": "11-C", "ACRE": null, "LONGITUDE": -64.87612808, "LATITUDE": 18.33376631, "OBJECTID_1": 23173, "PARCEL_NO_": "105703063900", "Tax_Legal_": "11C-REM & 11-9 LANGMATH NO.5 RED HOOK QTR", "Name": "CALISTRO, ALTAGRACIA (LIFE ESTATE)", "Address": "21611 Sawyer Ave", "City": "Queens Village", "State": "New York", "Zip": 11427, "Country": "United States", "Land_Value": 307200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.39015477500001, "SHAPE_Area": 2133.6032429799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364630.409400001168251, 256094.534800000488758 ], [ 364625.870700001716614, 256091.014699999243021 ], [ 364632.512500002980232, 256056.275199998170137 ], [ 364583.739200003445148, 256078.164900001138449 ], [ 364567.008699998259544, 256085.66330000013113 ], [ 364574.658399999141693, 256118.557100001722574 ], [ 364626.170500002801418, 256096.124400001019239 ], [ 364630.409400001168251, 256094.534800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703077000", "MAP": "D9-8381-T009", "PARCEL_NAM": "11-C3", "ACRE": ".330", "LONGITUDE": -64.87569051, "LATITUDE": 18.33359026, "OBJECTID_1": 23257, "PARCEL_NO_": "105703077000", "Tax_Legal_": "11-C3 LANGMATH NO. 5 RED HOOK QTR", "Name": "VICTORIN, VALERIE E., MAX.", "Address": "PO Box 307072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.547507395, "SHAPE_Area": 1334.96027187 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364632.512500002980232, 256056.275199998170137 ], [ 364625.870700001716614, 256091.014699999243021 ], [ 364630.409400001168251, 256094.534800000488758 ], [ 364642.493199996650219, 256090.003400001674891 ], [ 364656.265500001609325, 256087.962999999523163 ], [ 364665.639799997210503, 256087.048500001430511 ], [ 364657.121100001037121, 256080.584600001573563 ], [ 364668.639799997210503, 256040.3445999994874 ], [ 364668.408600002527237, 256040.164799999445677 ], [ 364632.512500002980232, 256056.275199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703067000", "MAP": "D9-8381-T009", "PARCEL_NAM": "11-C1", "ACRE": ".366", "LONGITUDE": -64.87513456000001, "LATITUDE": 18.3336606, "OBJECTID_1": 23203, "PARCEL_NO_": "105703067000", "Tax_Legal_": "11-C1 LANGMATH NO.5 RED HOOK QTR", "Name": "CHARLES, MARGARET", "Address": "PO Box 8982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.41622567100001, "SHAPE_Area": 1180.122847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364699.925200000405312, 256047.767099998891354 ], [ 364685.786399997770786, 256084.170899998396635 ], [ 364689.507600001990795, 256090.297400001436472 ], [ 364692.991599999368191, 256091.533599998801947 ], [ 364707.784100003540516, 256097.144600000232458 ], [ 364715.945500001311302, 256103.265599999576807 ], [ 364721.046300001442432, 256099.184900000691414 ], [ 364722.048900000751019, 256096.511399999260902 ], [ 364721.046300001442432, 256089.493299998342991 ], [ 364721.046300001442432, 256084.392400000244379 ], [ 364721.046300001442432, 256083.88230000063777 ], [ 364718.495899997651577, 256074.190699998289347 ], [ 364716.965599998831749, 256067.559599999338388 ], [ 364713.905100002884865, 256062.968899998813868 ], [ 364708.804300002753735, 256054.807500001043081 ], [ 364701.152999997138977, 256048.176399998366833 ], [ 364699.925200000405312, 256047.767099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703065800", "MAP": "A9-451-T94", "PARCEL_NAM": "11-44", "ACRE": ".45", "LONGITUDE": -64.87523637, "LATITUDE": 18.33148012, "OBJECTID_1": 23191, "PARCEL_NO_": "105703065800", "Tax_Legal_": "11-44 LANGMATH No.5 RED HOOK QTR", "Name": "JAMES, LEA & DICKENSON, CLIFTON A", "Address": "394-165 ESTATE ANNA'S RETREAT", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.84485139200001, "SHAPE_Area": 1930.65730708 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364702.914800003170967, 255813.795699998736382 ], [ 364697.098562896775547, 255814.083395752939396 ], [ 364691.331815740850288, 255814.893340296577662 ], [ 364685.661356059310492, 255816.218960877595237 ], [ 364680.133199997246265, 255818.049499999731779 ], [ 364674.18873600079678, 255821.673895612038905 ], [ 364668.485517027263995, 255825.667163584410446 ], [ 364663.046400003135204, 255830.013300001621246 ], [ 364670.983900003135204, 255833.982099998742342 ], [ 364667.566799998283386, 255839.173599999397993 ], [ 364707.283399999141693, 255868.92680000141263 ], [ 364722.131499998271465, 255829.785000000149012 ], [ 364724.575699999928474, 255822.420000001788139 ], [ 364710.148299999535084, 255816.59910000115633 ], [ 364702.914800003170967, 255813.795699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064800", "MAP": "D9-6632-T99", "PARCEL_NAM": "11-D2", "ACRE": ".326", "LONGITUDE": -64.87559181, "LATITUDE": 18.3325439, "OBJECTID_1": 23182, "PARCEL_NO_": "105703064800", "Tax_Legal_": "11-D2 LANGMATH ESTATE No.5 RED HOOK QUARTER", "Name": "FRANCIS, MILLICENT", "Address": "PO Box 502116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 47600, "Improved_V": 202400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.92579312000001, "SHAPE_Area": 1773.5946909500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364640.039099998772144, 255984.13120000064373 ], [ 364678.574500001966953, 255961.420400001108646 ], [ 364685.308700002729893, 255922.190099999308586 ], [ 364630.104099996387959, 255950.0287000015378 ], [ 364632.316799998283386, 255960.561200000345707 ], [ 364640.039099998772144, 255984.13120000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064700", "MAP": "D9-6632-T99", "PARCEL_NAM": "11-D1", "ACRE": ".300", "LONGITUDE": -64.87555898, "LATITUDE": 18.33284985, "OBJECTID_1": 23181, "PARCEL_NO_": "105703064700", "Tax_Legal_": "LANGMATH ESTATE 11-D1 No.5 REDHOOK QTR", "Name": "DESIR, JANE & JULIUS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.865175728, "SHAPE_Area": 992.44993912899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364678.574500001966953, 255961.420400001108646 ], [ 364640.039099998772144, 255984.13120000064373 ], [ 364641.748000003397465, 255989.347100000828505 ], [ 364643.342699997127056, 255991.471099998801947 ], [ 364643.326499998569489, 255993.370799999684095 ], [ 364644.924699999392033, 255995.072599999606609 ], [ 364645.453100003302097, 255996.304200001060963 ], [ 364648.614200003445148, 256000.228399999439716 ], [ 364665.957099996507168, 256011.450300000607967 ], [ 364668.67790000140667, 256011.450300000607967 ], [ 364678.574500001966953, 255961.420400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703067500", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D6", "ACRE": "0.23", "LONGITUDE": -64.8751261, "LATITUDE": 18.3321179, "OBJECTID_1": 23207, "PARCEL_NO_": "105703067500", "Tax_Legal_": "11-D6 LANGMATH NO.5 RED HOOK QUARTER", "Name": "GEORGE, JONES & MARTIA F. ALDONZA", "Address": "PO Box 7441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.538571357, "SHAPE_Area": 948.01480318500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364726.708599999547005, 255907.157600000500679 ], [ 364703.118400000035763, 255880.322700001299381 ], [ 364694.89919999986887, 255902.811500001698732 ], [ 364687.738300003111362, 255918.159299999475479 ], [ 364693.696000002324581, 255920.092799998819828 ], [ 364717.834899999201298, 255925.908100001513958 ], [ 364720.024700000882149, 255919.154100000858307 ], [ 364726.503100000321865, 255907.434599999338388 ], [ 364726.708599999547005, 255907.157600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703065100", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D-13", "ACRE": ".424", "LONGITUDE": -64.87478938, "LATITUDE": 18.33228087, "OBJECTID_1": 23184, "PARCEL_NO_": "105703065100", "Tax_Legal_": "11-D13 LANGMATH #5 RED HOOK QUARTER", "Name": "HARRIS, SAMUEL & RENEE", "Address": "PO Box 305582", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52900, "Improved_V": 43700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.19297539, "SHAPE_Area": 1514.5977994499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364753.022299997508526, 255951.422699999064207 ], [ 364762.765399999916553, 255899.335299998521805 ], [ 364758.16499999910593, 255898.948600001633167 ], [ 364747.5371999964118, 255898.556200001388788 ], [ 364741.449799999594688, 255900.013999998569489 ], [ 364737.480800002813339, 255902.395500000566244 ], [ 364731.946999996900558, 255910.19819999858737 ], [ 364728.230400003492832, 255918.620099999010563 ], [ 364724.158600002527237, 255933.077300000935793 ], [ 364721.046300001442432, 255946.66950000077486 ], [ 364753.022299997508526, 255951.422699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064000", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D14", "ACRE": ".419", "LONGITUDE": -64.87473303, "LATITUDE": 18.33226659, "OBJECTID_1": 23174, "PARCEL_NO_": "105703064000", "Tax_Legal_": "LANGMATH 11-D REM & ROW 11-D14 NO. 5 RED HOOK QTR.", "Name": "DRUCILLA BERNICE C HARRIGAN", "Address": "PO Box 10971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 233500, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 388.51791935199998, "SHAPE_Area": 1302.7736603400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364829.349600002169609, 255922.045000001788139 ], [ 364807.013300001621246, 255905.402800001204014 ], [ 364798.86150000244379, 255899.596999999135733 ], [ 364793.111299999058247, 255897.132699999958277 ], [ 364785.533600002527237, 255895.256700001657009 ], [ 364762.1621999964118, 255893.246300000697374 ], [ 364747.588600002229214, 255892.518399998545647 ], [ 364739.377700001001358, 255893.656199999153614 ], [ 364732.955799996852875, 255898.734099999070168 ], [ 364726.503100000321865, 255907.434599999338388 ], [ 364720.024700000882149, 255919.154100000858307 ], [ 364702.173199996352196, 255974.214099999517202 ], [ 364707.273999996483326, 255975.744300000369549 ], [ 364712.474899999797344, 255977.57660000026226 ], [ 364714.925300002098083, 255969.113200001418591 ], [ 364721.046300001442432, 255946.66950000077486 ], [ 364724.158600002527237, 255933.077300000935793 ], [ 364728.230400003492832, 255918.620099999010563 ], [ 364731.946999996900558, 255910.19819999858737 ], [ 364737.480800002813339, 255902.395500000566244 ], [ 364741.449799999594688, 255900.013999998569489 ], [ 364747.5371999964118, 255898.556200001388788 ], [ 364758.16499999910593, 255898.948600001633167 ], [ 364782.143799997866154, 255900.964200001209974 ], [ 364789.734399996697903, 255901.330800000578165 ], [ 364794.882299996912479, 255903.186099998652935 ], [ 364806.647900000214577, 255912.645599998533726 ], [ 364829.171499997377396, 255929.481300000101328 ], [ 364829.349600002169609, 255922.045000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703085100", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-20", "ACRE": "0.23", "LONGITUDE": -64.87533139, "LATITUDE": 18.33481007, "OBJECTID_1": 23311, "PARCEL_NO_": "105703085100", "Tax_Legal_": "ANNAS RETREAT 173C-20 NEW QTR.", "Name": "SAMUEL, WAYNE & ALEXANDER J", "Address": "P.O. BOX 5288", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 154600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.82287297299999, "SHAPE_Area": 987.11790188299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364721.315499998629093, 256209.535599999129772 ], [ 364662.668600000441074, 256183.935499999672174 ], [ 364668.78830000013113, 256222.826799999922514 ], [ 364689.007200002670288, 256215.815099999308586 ], [ 364708.405500002205372, 256210.485399998724461 ], [ 364721.315499998629093, 256209.535599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063900", "MAP": "A9-519-T98", "PARCEL_NAM": "11-C", "ACRE": "5.054", "LONGITUDE": -64.87556493, "LATITUDE": 18.33431708, "OBJECTID_1": 23173, "PARCEL_NO_": "105703063900", "Tax_Legal_": "11C-REM & 11-9 LANGMATH NO.5 RED HOOK QTR", "Name": "CALISTRO, ALTAGRACIA (LIFE ESTATE)", "Address": "21611 Sawyer Ave", "City": "Queens Village", "State": "New York", "Zip": 11427, "Country": "United States", "Land_Value": 307200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 453.37737688, "SHAPE_Area": 12293.6319819 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364731.720499999821186, 256135.606800001114607 ], [ 364727.677400000393391, 256133.360599998384714 ], [ 364724.106799997389317, 256127.749699998646975 ], [ 364720.776399999856949, 256120.613000001758337 ], [ 364717.985799998044968, 256119.078200001269579 ], [ 364703.193300001323223, 256106.836199998855591 ], [ 364681.259700000286102, 256096.124400001019239 ], [ 364646.573899999260902, 256098.674800001084805 ], [ 364621.579700000584126, 256107.856300000101328 ], [ 364591.484700001776218, 256121.628600001335144 ], [ 364582.813299998641014, 256126.219399999827147 ], [ 364579.75280000269413, 256128.769799999892712 ], [ 364579.75280000269413, 256131.830299999564886 ], [ 364578.732600003480911, 256133.870700001716614 ], [ 364578.092299997806549, 256134.084100000560284 ], [ 364606.117799997329712, 256203.270500000566244 ], [ 364630.308200001716614, 256196.336199998855591 ], [ 364662.668600000441074, 256183.935499999672174 ], [ 364718.520400002598763, 256208.315499998629093 ], [ 364721.315499998629093, 256209.535599999129772 ], [ 364731.720499999821186, 256135.606800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703077000", "MAP": "D9-8694-T004", "PARCEL_NAM": "11-1C", "ACRE": ".255", "LONGITUDE": -64.87431739, "LATITUDE": 18.334808, "OBJECTID_1": 23257, "PARCEL_NO_": "105703077000", "Tax_Legal_": "11-C3 LANGMATH NO. 5 RED HOOK QTR", "Name": "VICTORIN, VALERIE E., MAX.", "Address": "PO Box 307072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.19221953100001, "SHAPE_Area": 1017.7781564 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364775.441899999976158, 256186.144600000232458 ], [ 364774.593199998140335, 256219.710299998521805 ], [ 364805.485100001096725, 256223.754900000989437 ], [ 364806.870099999010563, 256192.36259999871254 ], [ 364775.441899999976158, 256186.144600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703067100", "MAP": "D9-8694-T004", "PARCEL_NAM": "11-1A", "ACRE": ".255", "LONGITUDE": -64.87482782, "LATITUDE": 18.3347246, "OBJECTID_1": 23204, "PARCEL_NO_": "105703067100", "Tax_Legal_": "11-1A LANGMATH NO.5 RED HOOK QTR", "Name": "BARON, PRIMROSE & FRANCOIS", "Address": "PO Box 502201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.69447686, "SHAPE_Area": 876.07977978500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364747.843099996447563, 256215.817499998956919 ], [ 364750.705099999904633, 256181.499499998986721 ], [ 364750.652000002563, 256181.239900000393391 ], [ 364725.98480000346899, 256176.359600000083447 ], [ 364721.315499998629093, 256209.535599999129772 ], [ 364729.371399998664856, 256210.445900000631809 ], [ 364747.843099996447563, 256215.817499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703077100", "MAP": "D9-8694-T004", "PARCEL_NAM": "11-1B", "ACRE": ".250", "LONGITUDE": -64.87458644, "LATITUDE": 18.3347705, "OBJECTID_1": 23258, "PARCEL_NO_": "105703077100", "Tax_Legal_": "11-1B LANGMATH NO. 5 RED HOOK QUARTER", "Name": "ALPHONSE, JULIA", "Address": "PO Box 305214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.607711517, "SHAPE_Area": 889.53388108000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364774.593199998140335, 256219.710299998521805 ], [ 364775.441899999976158, 256186.144600000232458 ], [ 364750.652000002563, 256181.239900000393391 ], [ 364750.705099999904633, 256181.499499998986721 ], [ 364747.843099996447563, 256215.817499998956919 ], [ 364750.285199999809265, 256216.527699999511242 ], [ 364774.593199998140335, 256219.710299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703065300", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D12", "ACRE": ".457", "LONGITUDE": -64.87446201, "LATITUDE": 18.33229932, "OBJECTID_1": 23186, "PARCEL_NO_": "105703065300", "Tax_Legal_": "11-D12,11-D9 LANGMATH No.5 RED HOOK QTR", "Name": "HARRIGAN, AUBREY", "Address": "PO Box 10971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88100, "Improved_V": 107200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.39169704700001, "SHAPE_Area": 2115.4604356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364790.265000000596046, 255956.958700001239777 ], [ 364802.846400000154972, 255909.589200001209974 ], [ 364794.882299996912479, 255903.186099998652935 ], [ 364789.734399996697903, 255901.330800000578165 ], [ 364782.143799997866154, 255900.964200001209974 ], [ 364762.765399999916553, 255899.335299998521805 ], [ 364753.022299997508526, 255951.422699999064207 ], [ 364790.265000000596046, 255956.958700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703067300", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D4", "ACRE": ".315", "LONGITUDE": -64.87532911, "LATITUDE": 18.33282415, "OBJECTID_1": 23206, "PARCEL_NO_": "105703067300", "Tax_Legal_": "11-D4 LANGMATH NO. 5 RED HOOK QTR.", "Name": "GEORGE, FITZYIGAL & LAZIANO", "Address": "PO BOX 10837", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.63394432699999, "SHAPE_Area": 1063.30932065 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364704.734700001776218, 255966.313499998301268 ], [ 364678.574500001966953, 255961.420400001108646 ], [ 364668.67790000140667, 256011.450300000607967 ], [ 364674.628600001335144, 256011.450300000607967 ], [ 364686.360500000417233, 256005.839299999177456 ], [ 364694.011799998581409, 255996.147700000554323 ], [ 364697.582400001585484, 255987.476300001144409 ], [ 364702.173199996352196, 255974.214099999517202 ], [ 364704.734700001776218, 255966.313499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703065400", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D5", "ACRE": ".240", "LONGITUDE": -64.87522348, "LATITUDE": 18.33243767, "OBJECTID_1": 23187, "PARCEL_NO_": "105703065400", "Tax_Legal_": "11-D5 LANGMATH RED HOOK QUARTER", "Name": "STOUT, SYLVESTER", "Address": "7592 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.69349151, "SHAPE_Area": 1275.1386912 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364717.834899999201298, 255925.908100001513958 ], [ 364693.696000002324581, 255920.092799998819828 ], [ 364687.738300003111362, 255918.159299999475479 ], [ 364685.308700002729893, 255922.190099999308586 ], [ 364678.574500001966953, 255961.420400001108646 ], [ 364704.734700001776218, 255966.313499998301268 ], [ 364717.834899999201298, 255925.908100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703066200", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D7", "ACRE": ".349", "LONGITUDE": -64.87497777, "LATITUDE": 18.33179513, "OBJECTID_1": 23195, "PARCEL_NO_": "105703066200", "Tax_Legal_": "11-D7 EST.LANGMATH #5 RED HOOK QTR", "Name": "BONHOMME, VENET", "Address": "PO Box 10164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.75659545, "SHAPE_Area": 1633.3834994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364742.862300001084805, 255893.173300001770258 ], [ 364724.575699999928474, 255822.420000001788139 ], [ 364722.131499998271465, 255829.785000000149012 ], [ 364707.283399999141693, 255868.92680000141263 ], [ 364703.118400000035763, 255880.322700001299381 ], [ 364726.708599999547005, 255907.157600000500679 ], [ 364732.955799996852875, 255898.734099999070168 ], [ 364739.377700001001358, 255893.656199999153614 ], [ 364742.862300001084805, 255893.173300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703065200", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D10", "ACRE": ".496", "LONGITUDE": -64.87412888, "LATITUDE": 18.33190162, "OBJECTID_1": 23185, "PARCEL_NO_": "105703065200", "Tax_Legal_": "11-D10,11-D11 LANGMATH NO.5 RED HOOK QUARTER", "Name": "DALMIDA, SONIA", "Address": "98 Waterbury Pkwy", "City": "Cortlandt Manor", "State": "New York", "Zip": 10567, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.69600808800001, "SHAPE_Area": 1817.75777812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364794.957099996507168, 255850.815999999642372 ], [ 364794.799400001764297, 255897.856100000441074 ], [ 364798.86150000244379, 255899.596999999135733 ], [ 364807.013300001621246, 255905.402800001204014 ], [ 364829.349600002169609, 255922.045000001788139 ], [ 364830.710199996829033, 255865.240899998694658 ], [ 364794.957099996507168, 255850.815999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703065300", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D9", "ACRE": ".328", "LONGITUDE": -64.87442731, "LATITUDE": 18.3317676, "OBJECTID_1": 23186, "PARCEL_NO_": "105703065300", "Tax_Legal_": "11-D12,11-D9 LANGMATH No.5 RED HOOK QTR", "Name": "HARRIGAN, AUBREY", "Address": "PO Box 10971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 88100, "Improved_V": 107200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.893636101, "SHAPE_Area": 1250.6902106099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364760.63740000128746, 255836.969399999827147 ], [ 364774.923900000751019, 255869.730999998748302 ], [ 364768.110799998044968, 255893.758000001311302 ], [ 364785.533600002527237, 255895.256700001657009 ], [ 364793.111299999058247, 255897.132699999958277 ], [ 364794.799400001764297, 255897.856100000441074 ], [ 364794.957099996507168, 255850.815999999642372 ], [ 364760.63740000128746, 255836.969399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704088900", "MAP": "D9-7985-T007", "PARCEL_NAM": "11-G-10", "ACRE": ".261", "LONGITUDE": -64.87356908, "LATITUDE": 18.33298194, "OBJECTID_1": 23709, "PARCEL_NO_": "105704088900", "Tax_Legal_": "11-G-10 & 11-G-R ROW LANGMATH NO.5 RED HOOK QTR", "Name": "SMITH, VIOLA", "Address": "PO Box 7552", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.76148057399999, "SHAPE_Area": 911.96048063299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364839.867600001394749, 256010.499800000339746 ], [ 364884.78830000013113, 256018.903000000864267 ], [ 364892.802100002765656, 255996.637600000947714 ], [ 364889.79389999806881, 255993.25789999961853 ], [ 364883.0996999964118, 255986.828099999576807 ], [ 364879.079199999570847, 255983.439699999988079 ], [ 364876.722999997437, 255982.748799998313189 ], [ 364874.692699998617172, 255983.402300000190735 ], [ 364872.651000000536442, 255985.397399999201298 ], [ 364871.275600001215935, 255988.404399998486042 ], [ 364871.919100001454353, 255992.099399998784065 ], [ 364875.278999999165535, 255993.804999999701977 ], [ 364877.289200000464916, 255995.499200001358986 ], [ 364869.153999999165535, 255999.790199998766184 ], [ 364838.461800001561642, 256004.469500001519918 ], [ 364839.867600001394749, 256010.499800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704081900", "MAP": "D9-7719-T006", "PARCEL_NAM": null, "ACRE": ".27", "LONGITUDE": -64.87315857, "LATITUDE": 18.33280582, "OBJECTID_1": 23707, "PARCEL_NO_": "105704081900", "Tax_Legal_": "11-G REMAINDER CONS. ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "GEORGE, AUGUSTINE", "Address": "PO BOX 305925", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.20783978600002, "SHAPE_Area": 776.46921212899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364922.024499997496605, 255961.465399999171495 ], [ 364920.064499996602535, 255965.341299999505281 ], [ 364919.006499998271465, 255970.698899999260902 ], [ 364919.64130000025034, 255975.399999998509884 ], [ 364919.935900002717972, 255980.433699999004602 ], [ 364918.860799998044968, 255987.80350000038743 ], [ 364915.109099999070168, 255992.467300001531839 ], [ 364909.6875, 255995.104400001466274 ], [ 364900.562799997627735, 255996.703699998557568 ], [ 364895.515799999237061, 255994.98369999974966 ], [ 364891.166400000452995, 255990.586300000548363 ], [ 364886.819899998605251, 255985.853500001132488 ], [ 364883.491400003433228, 255980.458599999547005 ], [ 364880.137199997901917, 255978.08219999819994 ], [ 364875.762100003659725, 255976.703200001269579 ], [ 364870.005900003015995, 255979.002099998295307 ], [ 364866.92339999973774, 255984.342399999499321 ], [ 364865.873999997973442, 255988.693799998611212 ], [ 364866.491700001060963, 255995.407200001180172 ], [ 364869.153999999165535, 255999.790199998766184 ], [ 364877.289200000464916, 255995.499200001358986 ], [ 364875.278999999165535, 255993.804999999701977 ], [ 364871.919100001454353, 255992.099399998784065 ], [ 364871.275600001215935, 255988.404399998486042 ], [ 364872.651000000536442, 255985.397399999201298 ], [ 364874.692699998617172, 255983.402300000190735 ], [ 364876.722999997437, 255982.748799998313189 ], [ 364879.079199999570847, 255983.439699999988079 ], [ 364883.0996999964118, 255986.828099999576807 ], [ 364889.79389999806881, 255993.25789999961853 ], [ 364892.802100002765656, 255996.637600000947714 ], [ 364896.487999998033047, 255999.687699999660254 ], [ 364900.185400001704693, 256001.396200001239777 ], [ 364905.586999997496605, 256001.106800001114607 ], [ 364912.343999996781349, 256000.15819999948144 ], [ 364919.467000000178814, 255995.858500000089407 ], [ 364922.215000003576279, 255990.179999999701977 ], [ 364923.619000002741814, 255983.819200001657009 ], [ 364924.662699997425079, 255980.1385000012815 ], [ 364923.699000000953674, 255974.428399998694658 ], [ 364924.74549999833107, 255970.412399999797344 ], [ 364927.462099999189377, 255968.423000000417233 ], [ 364931.857100002467632, 255967.454300001263618 ], [ 364938.917300000786781, 255970.533100001513958 ], [ 364945.285499997437, 255975.618500001728535 ], [ 364952.637299999594688, 255984.066399998962879 ], [ 364971.293399997055531, 256006.999000001698732 ], [ 364972.492799997329712, 256000.868400000035763 ], [ 364965.711000002920628, 255994.240200001746416 ], [ 364954.693300001323223, 255980.394400000572205 ], [ 364944.99379999935627, 255970.249499998986721 ], [ 364938.960199996829033, 255965.502300001680851 ], [ 364932.26070000231266, 255963.551100000739098 ], [ 364922.024499997496605, 255961.465399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704081200", "MAP": "D9-7985-T007", "PARCEL_NAM": "11-G-7", "ACRE": ".277", "LONGITUDE": -64.87299703, "LATITUDE": 18.33286859, "OBJECTID_1": 23703, "PARCEL_NO_": "105704081200", "Tax_Legal_": "11-G-7 LANGMATH NO.5 RED HOOK QTR", "Name": "JOSEPH, STEPHEN & DAWN GRELL", "Address": "PO Box 11236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.47372648499999, "SHAPE_Area": 1030.2501507300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364915.617200002074242, 255998.182399999350309 ], [ 364921.106899999082088, 256024.672100000083447 ], [ 364947.921800002455711, 255989.66440000012517 ], [ 364952.637299999594688, 255984.066399998962879 ], [ 364945.285499997437, 255975.618500001728535 ], [ 364938.917300000786781, 255970.533100001513958 ], [ 364931.857100002467632, 255967.454300001263618 ], [ 364927.462099999189377, 255968.423000000417233 ], [ 364924.74549999833107, 255970.412399999797344 ], [ 364923.699000000953674, 255974.428399998694658 ], [ 364924.662699997425079, 255980.1385000012815 ], [ 364923.619000002741814, 255983.819200001657009 ], [ 364922.215000003576279, 255990.179999999701977 ], [ 364919.467000000178814, 255995.858500000089407 ], [ 364915.617200002074242, 255998.182399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704088900", "MAP": "D9-7719-T006", "PARCEL_NAM": "11-G-4", "ACRE": null, "LONGITUDE": -64.87282001, "LATITUDE": 18.33306341, "OBJECTID_1": 23709, "PARCEL_NO_": "105704088900", "Tax_Legal_": "11-G-10 & 11-G-R ROW LANGMATH NO.5 RED HOOK QTR", "Name": "SMITH, VIOLA", "Address": "PO Box 7552", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.089954664, "SHAPE_Area": 1442.5246268599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364921.106899999082088, 256024.672100000083447 ], [ 364965.253600001335144, 256036.73589999973774 ], [ 364967.927500002086163, 256024.202399998903275 ], [ 364970.347999997437, 256011.830899998545647 ], [ 364971.293399997055531, 256006.999000001698732 ], [ 364952.637299999594688, 255984.066399998962879 ], [ 364947.921800002455711, 255989.66440000012517 ], [ 364921.106899999082088, 256024.672100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704089900", "MAP": "D9-7985-T007", "PARCEL_NAM": "11-G-8", "ACRE": ".290", "LONGITUDE": -64.87327106, "LATITUDE": 18.33310249, "OBJECTID_1": 23711, "PARCEL_NO_": "105704089900", "Tax_Legal_": "11-G-8 LANGMATH NO.5 RED HOOK QTR", "Name": "MONSANTO, LEON A.", "Address": "7860 2B-41 Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.34396808400001, "SHAPE_Area": 1064.4346466699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364892.802100002765656, 255996.637600000947714 ], [ 364880.155900001525879, 256031.773699998855591 ], [ 364896.318499997258186, 256028.794100001454353 ], [ 364909.90089999884367, 256039.301699999719858 ], [ 364921.106899999082088, 256024.672100000083447 ], [ 364915.617200002074242, 255998.182399999350309 ], [ 364912.343999996781349, 256000.15819999948144 ], [ 364905.586999997496605, 256001.106800001114607 ], [ 364900.185400001704693, 256001.396200001239777 ], [ 364896.487999998033047, 255999.687699999660254 ], [ 364892.802100002765656, 255996.637600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704082000", "MAP": "D9-7985-T007", "PARCEL_NAM": "11-G-9", "ACRE": ".252", "LONGITUDE": -64.87366992, "LATITUDE": 18.33316627, "OBJECTID_1": 23708, "PARCEL_NO_": "105704082000", "Tax_Legal_": "11-G-9 LANGMATH NO.5 RED HOOK QTR", "Name": "ABRAHAM, CRESCENTIA", "Address": "137 W 144 St", "City": "New York", "State": "New York", "Zip": 10030, "Country": "United States", "Land_Value": 41700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.079459086, "SHAPE_Area": 794.64680349900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364884.78830000013113, 256018.903000000864267 ], [ 364839.867600001394749, 256010.499800000339746 ], [ 364846.282399997115135, 256038.018300000578165 ], [ 364880.155900001525879, 256031.773699998855591 ], [ 364884.78830000013113, 256018.903000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704088900", "MAP": "D9-7985-T007", "PARCEL_NAM": "11-G REM", "ACRE": ".273", "LONGITUDE": -64.87320295000001, "LATITUDE": 18.33246186, "OBJECTID_1": 23709, "PARCEL_NO_": "105704088900", "Tax_Legal_": "11-G-10 & 11-G-R ROW LANGMATH NO.5 RED HOOK QTR", "Name": "SMITH, VIOLA", "Address": "PO Box 7552", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.013986217, "SHAPE_Area": 1064.6265182100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364887.130699999630451, 255934.353000000119209 ], [ 364919.626199997961521, 255982.556800000369549 ], [ 364919.935900002717972, 255980.433699999004602 ], [ 364919.64130000025034, 255975.399999998509884 ], [ 364919.006499998271465, 255970.698899999260902 ], [ 364920.064499996602535, 255965.341299999505281 ], [ 364922.024499997496605, 255961.465399999171495 ], [ 364924.549800001084805, 255924.183299999684095 ], [ 364887.130699999630451, 255934.353000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704081700", "MAP": "D9-7985-T007", "PARCEL_NAM": "11-G-12", "ACRE": ".261", "LONGITUDE": -64.87358053, "LATITUDE": 18.33254215, "OBJECTID_1": 23705, "PARCEL_NO_": "105704081700", "Tax_Legal_": "11-G-12 ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "HICKS, OMARI E.", "Address": "PO Box 12262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.16253028, "SHAPE_Area": 1143.34991915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364883.956699997186661, 255981.212699998170137 ], [ 364887.130699999630451, 255934.353000000119209 ], [ 364842.208200000226498, 255946.561900001019239 ], [ 364872.671700000762939, 255977.9375 ], [ 364875.762100003659725, 255976.703200001269579 ], [ 364880.137199997901917, 255978.08219999819994 ], [ 364883.491400003433228, 255980.458599999547005 ], [ 364883.956699997186661, 255981.212699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704081800", "MAP": "D9-7985-T007", "PARCEL_NAM": "11-G-13", "ACRE": ".230", "LONGITUDE": -64.87331158000001, "LATITUDE": 18.3326983, "OBJECTID_1": 23706, "PARCEL_NO_": "105704081800", "Tax_Legal_": "11-G-13 ESTATE LANGMATH NO.5 RED HOOK QTR", "Name": "GEORGE, AUGUSTINE", "Address": "PO BOX 305925", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.07742719800001, "SHAPE_Area": 1213.90094772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364919.626199997961521, 255982.556800000369549 ], [ 364887.130699999630451, 255934.353000000119209 ], [ 364883.956699997186661, 255981.212699998170137 ], [ 364886.819899998605251, 255985.853500001132488 ], [ 364891.166400000452995, 255990.586300000548363 ], [ 364895.515799999237061, 255994.98369999974966 ], [ 364900.562799997627735, 255996.703699998557568 ], [ 364909.6875, 255995.104400001466274 ], [ 364915.109099999070168, 255992.467300001531839 ], [ 364918.860799998044968, 255987.80350000038743 ], [ 364919.626199997961521, 255982.556800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703066100", "MAP": "D9-7840-T006", "PARCEL_NAM": "11-A-1", "ACRE": ".338", "LONGITUDE": -64.87778179, "LATITUDE": 18.3344118, "OBJECTID_1": 23194, "PARCEL_NO_": "105703066100", "Tax_Legal_": "11-A-1 LANGMATH No.5 REDHOOK QTR.", "Name": "GEORGE, LLEWELLYN", "Address": "2660 Hallie Mill Rd", "City": "COLLEGE PARK", "State": "Georgia", "Zip": 30349, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.85871286400001, "SHAPE_Area": 1477.7576640299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364417.141800001263618, 256132.912599999457598 ], [ 364412.872100003063679, 256136.786800000816584 ], [ 364408.270199999213219, 256139.176500000059605 ], [ 364403.673500001430511, 256140.958999998867512 ], [ 364400.016199998557568, 256140.017099998891354 ], [ 364392.896200001239777, 256151.189699999988079 ], [ 364431.859999999403954, 256180.648899998515844 ], [ 364445.106899999082088, 256177.775600001215935 ], [ 364460.350699998438358, 256174.469099998474121 ], [ 364458.657600000500679, 256172.840399999171495 ], [ 364425.158900000154972, 256140.617199998348951 ], [ 364417.160499997437, 256132.952399998903275 ], [ 364417.141800001263618, 256132.912599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063800", "MAP": "A9-519-T98", "PARCEL_NAM": "11-B", "ACRE": "5.001", "LONGITUDE": -64.87703858, "LATITUDE": 18.33458807, "OBJECTID_1": 23172, "PARCEL_NO_": "105703063800", "Tax_Legal_": "LANGMATH 11B & 11-5", "Name": "BEST, ELWIN A. & OTHERS", "Address": "40257 Patchwork Ln", "City": "Murrieta", "State": "California", "Zip": 92562, "Country": "United States", "Land_Value": 343100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 668.54992362200005, "SHAPE_Area": 18535.791551900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364445.106899999082088, 256177.775600001215935 ], [ 364353.785499997437, 256197.583500001579523 ], [ 364365.194300003349781, 256206.87950000166893 ], [ 364367.169100001454353, 256208.488699998706579 ], [ 364401.873700000345707, 256223.597500000149012 ], [ 364412.321599997580051, 256227.693799998611212 ], [ 364447.684199996292591, 256241.493200000375509 ], [ 364475.914099998772144, 256240.668800000101328 ], [ 364501.780900001525879, 256233.281100001186132 ], [ 364516.33049999922514, 256229.178300000727177 ], [ 364532.498099997639656, 256224.45549999922514 ], [ 364557.556699998676777, 256217.272300001233816 ], [ 364580.190999999642372, 256210.702599998563528 ], [ 364605.249600000679493, 256203.519400000572205 ], [ 364606.117799997329712, 256203.270500000566244 ], [ 364578.092299997806549, 256134.084100000560284 ], [ 364574.141800001263618, 256135.40089999884367 ], [ 364573.631700001657009, 256134.380800001323223 ], [ 364570.571199998259544, 256132.340399999171495 ], [ 364567.000600002706051, 256132.340399999171495 ], [ 364562.920000001788139, 256123.668999999761581 ], [ 364574.658399999141693, 256118.557100001722574 ], [ 364567.008699998259544, 256085.66330000013113 ], [ 364538.409500002861023, 256098.480999998748302 ], [ 364494.697800002992153, 256118.177200000733137 ], [ 364482.55629999935627, 256123.566199999302626 ], [ 364480.101400002837181, 256127.76799999922514 ], [ 364460.350699998438358, 256174.469099998474121 ], [ 364445.106899999082088, 256177.775600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703065700", "MAP": "A9-451-T94", "PARCEL_NAM": "11-37", "ACRE": "0.38", "LONGITUDE": -64.87790225000001, "LATITUDE": 18.33374126, "OBJECTID_1": 23190, "PARCEL_NO_": "105703065700", "Tax_Legal_": "11-37 LANGMATH No.5 RED HOOK QUARTER", "Name": "JAMES, SIMONE (LIFE ESTATE)", "Address": "6433 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44000, "Improved_V": 98300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.33727099699999, "SHAPE_Area": 1676.54044454 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364417.141800001263618, 256132.912599999457598 ], [ 364417.171899996697903, 256132.885299999266863 ], [ 364417.176399998366833, 256132.858399998396635 ], [ 364423.95269999653101, 256092.900199998170137 ], [ 364428.896600000560284, 256080.486200001090765 ], [ 364434.609099999070168, 256072.511399999260902 ], [ 364405.801299996674061, 256046.522199999541044 ], [ 364393.40089999884367, 256082.306600000709295 ], [ 364417.141800001263618, 256132.912599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063700", "MAP": "D9-7840-T006", "PARCEL_NAM": "11-A REM", "ACRE": "4.894", "LONGITUDE": -64.87861002, "LATITUDE": 18.33388134, "OBJECTID_1": 23171, "PARCEL_NO_": "105703063700", "Tax_Legal_": "11-A-2,11-A-5,11-A-12 thru 11-A-14 LANGMATH & R.O.W No.5 RED HOOK QTR", "Name": "CALISTRO & OTHERS, ELROY", "Address": "4075 Bay Chester Ave", "City": "Bronx", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 670.92988812199997, "SHAPE_Area": 21957.3868926 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364431.859999999403954, 256180.648899998515844 ], [ 364392.896200001239777, 256151.189699999988079 ], [ 364400.016199998557568, 256140.017099998891354 ], [ 364403.673500001430511, 256140.958999998867512 ], [ 364408.270199999213219, 256139.176500000059605 ], [ 364412.872100003063679, 256136.786800000816584 ], [ 364417.141800001263618, 256132.912599999457598 ], [ 364393.40089999884367, 256082.306600000709295 ], [ 364405.801299996674061, 256046.522199999541044 ], [ 364401.931599996984005, 256027.49210000038147 ], [ 364372.832400001585484, 256035.697599999606609 ], [ 364332.656999997794628, 256018.903499998152256 ], [ 364292.481600001454353, 256002.109400000423193 ], [ 364277.008599996566772, 255993.215799998492002 ], [ 364271.618199996650219, 255990.117400001734495 ], [ 364271.442400000989437, 255988.449599999934435 ], [ 364267.386100001633167, 255992.645899999886751 ], [ 364265.97070000320673, 256060.583299998193979 ], [ 364272.339800000190735, 256138.428199999034405 ], [ 364297.10869999974966, 256161.781700000166893 ], [ 364348.061700001358986, 256192.919700000435114 ], [ 364353.785499997437, 256197.583500001579523 ], [ 364431.859999999403954, 256180.648899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064900", "MAP": "D9-6632-T99", "PARCEL_NAM": "11-D3", "ACRE": ".313", "LONGITUDE": -64.87560169, "LATITUDE": 18.33229804, "OBJECTID_1": 23183, "PARCEL_NO_": "105703064900", "Tax_Legal_": "11-D3 LANGMATH No.5 RED HOOK QUARTER", "Name": "GEORGE, VERNON", "Address": "APT.7B THOMASVILLE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 2700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.01569336599999, "SHAPE_Area": 1193.6505438 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364694.89919999986887, 255902.811500001698732 ], [ 364625.672499999403954, 255928.934099998325109 ], [ 364630.104099996387959, 255950.0287000015378 ], [ 364685.308700002729893, 255922.190099999308586 ], [ 364687.738300003111362, 255918.159299999475479 ], [ 364694.89919999986887, 255902.811500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063400", "MAP": "D9-7995-T007", "PARCEL_NAM": "11-42A", "ACRE": ".30", "LONGITUDE": -64.87567056, "LATITUDE": 18.33194569, "OBJECTID_1": 23169, "PARCEL_NO_": "105703063400", "Tax_Legal_": "11-42 ESTATE LANGMATH No.5 RED HOOK QTR.", "Name": "HOWARD, MONICA M.", "Address": "PO Box 8852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.19672166399999, "SHAPE_Area": 1268.40858187 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364624.604699999094009, 255897.00899999961257 ], [ 364634.804399996995926, 255897.672100000083447 ], [ 364642.993400000035763, 255900.092999998480082 ], [ 364669.004799999296665, 255901.144099999219179 ], [ 364680.406999997794628, 255902.070900000631809 ], [ 364689.155900001525879, 255899.0625 ], [ 364687.064800001680851, 255897.697399999946356 ], [ 364632.350299999117851, 255861.980700001120567 ], [ 364625.976099997758865, 255890.807100001722574 ], [ 364625.819799996912479, 255891.513799998909235 ], [ 364624.604699999094009, 255897.00899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063400", "MAP": "D9-7995-T007", "PARCEL_NAM": "11-42 REM", "ACRE": ".31", "LONGITUDE": -64.87568557, "LATITUDE": 18.33214785, "OBJECTID_1": 23169, "PARCEL_NO_": "105703063400", "Tax_Legal_": "11-42 ESTATE LANGMATH No.5 RED HOOK QTR.", "Name": "HOWARD, MONICA M.", "Address": "PO Box 8852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.55946290099999, "SHAPE_Area": 1133.5514621499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364689.155900001525879, 255899.0625 ], [ 364680.406999997794628, 255902.070900000631809 ], [ 364669.004799999296665, 255901.144099999219179 ], [ 364642.993400000035763, 255900.092999998480082 ], [ 364634.804399996995926, 255897.672100000083447 ], [ 364624.604699999094009, 255897.00899999961257 ], [ 364623.124799996614456, 255903.701799999922514 ], [ 364624.505500003695488, 255918.434099998325109 ], [ 364625.342299997806549, 255927.362399999052286 ], [ 364625.672499999403954, 255928.934099998325109 ], [ 364694.89919999986887, 255902.811500001698732 ], [ 364689.155900001525879, 255899.0625 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703064000", "MAP": "D9-8237-T009", "PARCEL_NAM": "11-4 REM", "ACRE": "1.500", "LONGITUDE": -64.87257543, "LATITUDE": 18.33449587, "OBJECTID_1": 23174, "PARCEL_NO_": "105703064000", "Tax_Legal_": "LANGMATH 11-D REM & ROW 11-D14 NO. 5 RED HOOK QTR.", "Name": "DRUCILLA BERNICE C HARRIGAN", "Address": "PO Box 10971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 233500, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.18377134899998, "SHAPE_Area": 6105.3140754200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365008.594700001180172, 256158.598200000822544 ], [ 365006.317800000309944, 256158.578699998557568 ], [ 364973.779100000858307, 256120.022599998861551 ], [ 364969.491599999368191, 256116.686099998652935 ], [ 364966.84009999781847, 256116.168499998748302 ], [ 364964.188500002026558, 256115.65089999884367 ], [ 364962.042000003159046, 256114.312699999660254 ], [ 364960.732400000095367, 256112.156599998474121 ], [ 364960.254100002348423, 256109.842599999159575 ], [ 364960.439800001680851, 256107.534200001507998 ], [ 364962.957699999213219, 256104.255800001323223 ], [ 364963.089100003242493, 256103.72069999948144 ], [ 364959.766099996864796, 256104.795800000429153 ], [ 364940.9358000010252, 256113.219900000840425 ], [ 364950.699699997901917, 256223.448899999260902 ], [ 364951.012000001966953, 256223.447900000959635 ], [ 364976.830200001597404, 256221.759399998933077 ], [ 365000.227600000798702, 256220.262099999934435 ], [ 365005.056500002741814, 256221.357099998742342 ], [ 365014.471199996769428, 256223.513700000941753 ], [ 365008.594700001180172, 256158.598200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803020200", "MAP": null, "PARCEL_NAM": "110D-C ROW", "ACRE": ".13", "LONGITUDE": -64.86184386, "LATITUDE": 18.33261612, "OBJECTID_1": 23862, "PARCEL_NO_": "105803020200", "Tax_Legal_": "110D-C ROW FRYDENHOJ NO. 3 RED HOOK QUARTER", "Name": "ALLEN, JULIENE A", "Address": "2704 Boxelder Ct", "City": "Raleigh", "State": "North Carolina", "Zip": 27610, "Country": "United States", "Land_Value": 17400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 350.86854157300002, "SHAPE_Area": 1462.3148975199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366120.005000002682209, 256026.978399999439716 ], [ 366130.691500000655651, 256026.442800000309944 ], [ 366130.647299997508526, 256022.640599999576807 ], [ 366130.891400001943111, 256017.588199999183416 ], [ 366128.037500001490116, 255997.182799998670816 ], [ 366126.441200003027916, 255985.953000001609325 ], [ 366124.550899997353554, 255976.122699998319149 ], [ 366121.512900002300739, 255968.525800000876188 ], [ 366114.581200003623962, 255954.446199998259544 ], [ 366107.921800002455711, 255941.490600001066923 ], [ 366104.056900002062321, 255931.643300000578165 ], [ 366102.976599998772144, 255926.026000000536442 ], [ 366103.063299998641014, 255915.932199999690056 ], [ 366105.119699999690056, 255906.416200000792742 ], [ 366107.097599998116493, 255901.77760000154376 ], [ 366106.941600002348423, 255901.776299998164177 ], [ 366096.326899997889996, 255901.962799999862909 ], [ 366095.504699997603893, 255909.137699998915195 ], [ 366094.591099999845028, 255916.981100000441074 ], [ 366095.603900000452995, 255930.449200000613928 ], [ 366097.236299999058247, 255937.473200000822544 ], [ 366100.804700002074242, 255949.000300001353025 ], [ 366107.184399999678135, 255961.673200000077486 ], [ 366117.159000001847744, 255982.788899999111891 ], [ 366120.184900000691414, 255991.78770000115037 ], [ 366121.807599999010563, 255999.933299999684095 ], [ 366121.752199999988079, 256006.382100000977516 ], [ 366085.731200002133846, 256007.198600001633167 ], [ 366086.450400002300739, 256015.202100001275539 ], [ 366120.821800000965595, 256016.188099998980761 ], [ 366120.005000002682209, 256026.978399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803023700", "MAP": "D9-7813-T007", "PARCEL_NAM": "110-J", "ACRE": ".23", "LONGITUDE": -64.86151223, "LATITUDE": 18.3331406, "OBJECTID_1": 23896, "PARCEL_NO_": "105803023700", "Tax_Legal_": "FRYDENHOJ 110-J RED HOOK QTR.", "Name": "WILLIAMS, ALICE D", "Address": "P.O. BOX 3875", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 135800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.43056908200001, "SHAPE_Area": 730.78998433200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366130.647299997508526, 256022.640599999576807 ], [ 366130.880999997258186, 256042.725600000470877 ], [ 366132.722699999809265, 256042.928399998694658 ], [ 366134.468000002205372, 256043.160199999809265 ], [ 366161.445000000298023, 256046.743400000035763 ], [ 366159.428999997675419, 256022.290199998766184 ], [ 366132.924699999392033, 256017.923200000077486 ], [ 366130.891400001943111, 256017.588199999183416 ], [ 366130.647299997508526, 256022.640599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803020200", "MAP": "D9-8530-T010", "PARCEL_NAM": null, "ACRE": ".131", "LONGITUDE": -64.86170368000001, "LATITUDE": 18.33330278, "OBJECTID_1": 23862, "PARCEL_NO_": "105803020200", "Tax_Legal_": "110D-C ROW FRYDENHOJ NO. 3 RED HOOK QUARTER", "Name": "ALLEN, JULIENE A", "Address": "2704 Boxelder Ct", "City": "Raleigh", "State": "North Carolina", "Zip": 27610, "Country": "United States", "Land_Value": 17400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.185621023, "SHAPE_Area": 513.85617381099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366131.222199998795986, 256072.03999999910593 ], [ 366130.880999997258186, 256042.725600000470877 ], [ 366130.691500000655651, 256026.442800000309944 ], [ 366120.005000002682209, 256026.978399999439716 ], [ 366119.372100003063679, 256035.338899999856949 ], [ 366120.793399997055531, 256052.359600000083447 ], [ 366121.043300002813339, 256064.126899998635054 ], [ 366120.591300003230572, 256064.897700000554323 ], [ 366119.583599999547005, 256065.553100001066923 ], [ 366118.577899999916553, 256065.987100001424551 ], [ 366117.348499998450279, 256066.529899999499321 ], [ 366115.89919999986887, 256066.738800000399351 ], [ 366113.113099999725819, 256067.046900000423193 ], [ 366112.331900000572205, 256067.261500000953674 ], [ 366112.641199998557568, 256070.141499999910593 ], [ 366114.758400000631809, 256069.938400000333786 ], [ 366116.650100000202656, 256070.06529999896884 ], [ 366118.317199997603893, 256070.41160000115633 ], [ 366120.094700001180172, 256070.869500000029802 ], [ 366121.864600002765656, 256072.212699998170137 ], [ 366131.222199998795986, 256072.03999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105803025700", "MAP": "D9-8530-T010", "PARCEL_NAM": null, "ACRE": ".309", "LONGITUDE": -64.86189746, "LATITUDE": 18.33335421, "OBJECTID_1": 23916, "PARCEL_NO_": "105803025700", "Tax_Legal_": "FRYDENHOJ 110D-A RED HOOK QTR. 3", "Name": "SEBASTIEN, SHINIKO & YASMINE HAYNES", "Address": "PO Box 9771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.21866936800001, "SHAPE_Area": 1205.75255642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366090.381899997591972, 256060.251600001007318 ], [ 366091.989200003445148, 256080.449499998241663 ], [ 366121.864600002765656, 256072.212699998170137 ], [ 366120.094700001180172, 256070.869500000029802 ], [ 366118.317199997603893, 256070.41160000115633 ], [ 366116.650100000202656, 256070.06529999896884 ], [ 366114.758400000631809, 256069.938400000333786 ], [ 366112.641199998557568, 256070.141499999910593 ], [ 366112.331900000572205, 256067.261500000953674 ], [ 366113.113099999725819, 256067.046900000423193 ], [ 366115.89919999986887, 256066.738800000399351 ], [ 366117.348499998450279, 256066.529899999499321 ], [ 366118.577899999916553, 256065.987100001424551 ], [ 366119.583599999547005, 256065.553100001066923 ], [ 366120.591300003230572, 256064.897700000554323 ], [ 366121.043300002813339, 256064.126899998635054 ], [ 366120.958499997854233, 256060.131299998611212 ], [ 366120.793399997055531, 256052.359600000083447 ], [ 366119.372100003063679, 256035.338899999856949 ], [ 366088.367799997329712, 256036.539799999445677 ], [ 366089.478799998760223, 256048.903200000524521 ], [ 366089.715300001204014, 256051.875300001353025 ], [ 366090.381899997591972, 256060.251600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803032600", "MAP": "A9-764-T011", "PARCEL_NAM": "REM 110", "ACRE": "5.58", "LONGITUDE": -64.86263293, "LATITUDE": 18.3336561, "OBJECTID_1": 23943, "PARCEL_NO_": "105803032600", "Tax_Legal_": "SMITH BAY 19-2-74 EASTEND QTR.", "Name": "GARDNER, HAROLD", "Address": "412 Lapla Rd", "City": "Kingston", "State": "New York", "Zip": 12401, "Country": "United States", "Land_Value": 51700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 819.80100555599995, "SHAPE_Area": 24265.9150467 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366133.493900001049042, 256156.730999998748302 ], [ 366096.984999999403954, 256153.6886 ], [ 366094.081900000572205, 256109.324000000953674 ], [ 366093.750600002706051, 256103.824200000613928 ], [ 366093.070799998939037, 256092.536499999463558 ], [ 366092.830200001597404, 256089.947799999266863 ], [ 366092.236100003123283, 256083.552799999713898 ], [ 366091.989200003445148, 256080.449499998241663 ], [ 366089.715300001204014, 256051.875300001353025 ], [ 366089.478799998760223, 256048.903200000524521 ], [ 366086.450400002300739, 256015.202100001275539 ], [ 366051.902099996805191, 256014.712400000542402 ], [ 366027.064300000667572, 256014.360399998724461 ], [ 365996.909699998795986, 256003.443599998950958 ], [ 365977.4037000015378, 255979.628100000321865 ], [ 365961.897299997508526, 255974.820599999278784 ], [ 365961.19709999859333, 255962.360399998724461 ], [ 365958.302699998021126, 255923.49549999833107 ], [ 365948.290200002491474, 255924.569200001657009 ], [ 365960.168999999761581, 256096.119800001382828 ], [ 365962.546800002455711, 256163.343199998140335 ], [ 366134.755900003015995, 256187.807300001382828 ], [ 366133.493900001049042, 256156.730999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803032600", "MAP": "D9-6446-T98", "PARCEL_NAM": "110D REM", "ACRE": null, "LONGITUDE": -64.86180613000001, "LATITUDE": 18.33388619, "OBJECTID_1": 23943, "PARCEL_NO_": "105803032600", "Tax_Legal_": "SMITH BAY 19-2-74 EASTEND QTR.", "Name": "GARDNER, HAROLD", "Address": "412 Lapla Rd", "City": "Kingston", "State": "New York", "Zip": 12401, "Country": "United States", "Land_Value": 51700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.13469090500001, "SHAPE_Area": 3000.7304531300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366131.480400003492832, 256094.227899998426437 ], [ 366131.222199998795986, 256072.03999999910593 ], [ 366121.864600002765656, 256072.212699998170137 ], [ 366091.989200003445148, 256080.449499998241663 ], [ 366092.236100003123283, 256083.552799999713898 ], [ 366093.070799998939037, 256092.536499999463558 ], [ 366093.28490000218153, 256096.091600000858307 ], [ 366094.081900000572205, 256109.324000000953674 ], [ 366096.984999999403954, 256153.6886 ], [ 366133.493900001049042, 256156.730999998748302 ], [ 366131.602099999785423, 256110.146699998527765 ], [ 366131.339100003242493, 256103.342099998146296 ], [ 366131.469200000166893, 256094.945700000971556 ], [ 366131.478799998760223, 256094.330800000578165 ], [ 366131.480400003492832, 256094.227899998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803010900", "MAP": "D9-7536-T005", "PARCEL_NAM": "19-1-1", "ACRE": "10", "LONGITUDE": -64.86065134, "LATITUDE": 18.33318814, "OBJECTID_1": 23834, "PARCEL_NO_": "105803010900", "Tax_Legal_": "19-1-1 SMITH BAY NO.1,2&3 EASTEND QTR", "Name": "HODGE, JOSEPH E.", "Address": "PO Box 305048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 782.93825708600002, "SHAPE_Area": 35142.593191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366168.414700001478195, 256152.738299999386072 ], [ 366318.174199998378754, 256163.851100001484156 ], [ 366315.282999999821186, 256141.099399998784065 ], [ 366309.960699997842312, 256103.269999999552965 ], [ 366309.201099999248981, 256097.775400001555681 ], [ 366307.055500000715256, 256065.671599999070168 ], [ 366307.190399996936321, 256049.840700000524521 ], [ 366307.638099998235703, 255997.2820999994874 ], [ 366307.688500002026558, 255991.371899999678135 ], [ 366309.903499998152256, 255920.673700001090765 ], [ 366309.926899999380112, 255917.92960000038147 ], [ 366309.955600000917912, 255914.552400000393391 ], [ 366151.779899999499321, 255929.511999998241663 ], [ 366162.974799998104572, 256065.299199998378754 ], [ 366166.113200001418591, 256103.366099998354912 ], [ 366168.414700001478195, 256152.738299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803020600", "MAP": "A9-756-T010", "PARCEL_NAM": "REM 113", "ACRE": "14.77", "LONGITUDE": -64.86474955, "LATITUDE": 18.33342531, "OBJECTID_1": 23866, "PARCEL_NO_": "105803020600", "Tax_Legal_": "FRYDENHOJ 113 RED HOOK QTR", "Name": "MARK D WENNER REVOCABLE LIVING TRUST", "Address": "PO BOX 11910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 617700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1154.62160778, "SHAPE_Area": 54234.388675599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365959.011500000953674, 256079.403499998152256 ], [ 365948.290200002491474, 255924.569200001657009 ], [ 365947.476700000464916, 255924.125900000333786 ], [ 365917.617499999701977, 255925.858600001782179 ], [ 365918.031999997794628, 255912.139299999922514 ], [ 365883.952899999916553, 255942.729800000786781 ], [ 365839.283900000154972, 255980.149900000542402 ], [ 365790.626400001347065, 256012.471200000494719 ], [ 365765.233499996364117, 256030.159499999135733 ], [ 365620.471100002527237, 256013.822799999266863 ], [ 365608.372800000011921, 256014.145899999886751 ], [ 365596.288900002837181, 256012.780499998480082 ], [ 365579.399499997496605, 256007.5760000012815 ], [ 365577.996699996292591, 256092.622299998998642 ], [ 365577.742899999022484, 256108.677700001746416 ], [ 365619.397399999201298, 256114.595199998468161 ], [ 365766.155299998819828, 256135.44370000064373 ], [ 365962.546800002455711, 256163.343199998140335 ], [ 365960.787799999117851, 256105.05629999935627 ], [ 365960.168999999761581, 256096.119800001382828 ], [ 365959.011500000953674, 256079.403499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803020700", "MAP": "D9-8494-T010", "PARCEL_NAM": "160 REM", "ACRE": "2.547", "LONGITUDE": -64.86494197, "LATITUDE": 18.33270721, "OBJECTID_1": 23867, "PARCEL_NO_": "105803020700", "Tax_Legal_": "160 REM ESTATE FRYDENHOJ NO.3 RED HOOK QTR", "Name": "MARK D WENNER REVOCABLE LIVING TRUST", "Address": "PO BOX 11910", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 194900, "Improved_V": 529400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 824.32195948100002, "SHAPE_Area": 8795.3222892100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365620.471100002527237, 256013.822799999266863 ], [ 365765.233499996364117, 256030.159499999135733 ], [ 365790.626400001347065, 256012.471200000494719 ], [ 365839.283900000154972, 255980.149900000542402 ], [ 365883.952899999916553, 255942.729800000786781 ], [ 365945.709200002253056, 255887.295400001108646 ], [ 365912.533500000834465, 255900.745000001043081 ], [ 365904.913699999451637, 255905.566300000995398 ], [ 365909.364500001072884, 255905.909699998795986 ], [ 365912.052100002765656, 255905.690099999308586 ], [ 365913.50450000166893, 255907.158700000494719 ], [ 365913.986599996685982, 255907.890900000929832 ], [ 365913.976199999451637, 255909.104200001806021 ], [ 365875.602700002491474, 255942.26630000025034 ], [ 365824.036300003528595, 255947.891699999570847 ], [ 365823.262299999594688, 255909.833299998193979 ], [ 365806.73929999768734, 255919.510800000280142 ], [ 365799.403399996459484, 255928.738899998366833 ], [ 365798.577299997210503, 255931.054099999368191 ], [ 365797.549800001084805, 255957.010200001299381 ], [ 365796.712899997830391, 255960.592000000178814 ], [ 365794.241899996995926, 255966.693500000983477 ], [ 365788.552699998021126, 255971.924199998378754 ], [ 365785.313100002706051, 255973.586500000208616 ], [ 365764.303999997675419, 255978.691899999976158 ], [ 365679.416400000452995, 256004.383799999952316 ], [ 365653.564099997282028, 256010.082800000905991 ], [ 365634.98650000244379, 256013.730500001460314 ], [ 365620.471100002527237, 256013.822799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105801012800", "MAP": "D9-6925-T001", "PARCEL_NAM": "19K", "ACRE": "10.11", "LONGITUDE": -64.86300188, "LATITUDE": 18.33975748, "OBJECTID_1": 23812, "PARCEL_NO_": "105801012800", "Tax_Legal_": "19K ESTATE SMITH BAY 1,2 & 3 EASTEND QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 613700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 641.57941645699998, "SHAPE_Area": 22093.000700100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366058.098600000143051, 256852.52479999884963 ], [ 366002.57599999755621, 256645.857599999755621 ], [ 365902.798699997365475, 256670.328200001269579 ], [ 365966.313799999654293, 256887.759100001305342 ], [ 365971.070699997246265, 256885.764400001615286 ], [ 366055.204099997878075, 256853.944600000977516 ], [ 366058.098600000143051, 256852.52479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803011600", "MAP": "D9-6728-T000", "PARCEL_NAM": "19L", "ACRE": "2.55", "LONGITUDE": -64.86365846, "LATITUDE": 18.33674905, "OBJECTID_1": 23840, "PARCEL_NO_": "105803011600", "Tax_Legal_": "19L ESTATE SMITH BAY NO.1,2&3 EASTEND QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 231200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 427.87191483300001, "SHAPE_Area": 10926.2980071 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365977.608499996364117, 256460.214600000530481 ], [ 365973.867399998009205, 256433.740299999713898 ], [ 365978.371299996972084, 256435.602400001138449 ], [ 365964.66330000013113, 256367.811700001358986 ], [ 365849.338299997150898, 256402.336100000888109 ], [ 365865.535099998116493, 256491.288400001823902 ], [ 365977.608499996364117, 256460.214600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803012200", "MAP": "D9-8631-T012", "PARCEL_NAM": "19N-1", "ACRE": ".80", "LONGITUDE": -64.86410821, "LATITUDE": 18.33788087, "OBJECTID_1": 23845, "PARCEL_NO_": "105803012200", "Tax_Legal_": "19N-1 SMITH BAY NO. 1,2&3 EAST END QUARTER", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 92400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 400.96885418300002, "SHAPE_Area": 3255.1360321400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365865.535099998116493, 256491.288400001823902 ], [ 365831.524899996817112, 256502.588700000196695 ], [ 365902.798699997365475, 256670.328200001269579 ], [ 365891.938000001013279, 256618.145899999886751 ], [ 365865.535099998116493, 256491.288400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105801012800", "MAP": "D9-6925-T001", "PARCEL_NAM": "19H", "ACRE": null, "LONGITUDE": -64.86343951000001, "LATITUDE": 18.33796862, "OBJECTID_1": 23812, "PARCEL_NO_": "105801012800", "Tax_Legal_": "19K ESTATE SMITH BAY 1,2 & 3 EASTEND QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 613700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 589.258429912, "SHAPE_Area": 20267.9250173 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365998.376599997282028, 256607.180399999022484 ], [ 365977.608499996364117, 256460.214600000530481 ], [ 365865.535099998116493, 256491.288400001823902 ], [ 365891.938000001013279, 256618.145899999886751 ], [ 365902.798699997365475, 256670.328200001269579 ], [ 366002.57599999755621, 256645.857599999755621 ], [ 366002.242799997329712, 256644.617300000041723 ], [ 365998.376599997282028, 256607.180399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803020100", "MAP": "G9-2943-T79", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86146782, "LATITUDE": 18.33392383, "OBJECTID_1": 23861, "PARCEL_NO_": "105803020100", "Tax_Legal_": "110C ESTATE FRYDENHOJ RED HOOK QTR", "Name": "BAPTISTE, LIONEL & RITA", "Address": "PO Box 7336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 118500, "Improved_V": 408400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 358.26875957800002, "SHAPE_Area": 4952.3900131099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366166.428300000727177, 256110.125 ], [ 366166.113200001418591, 256103.366099998354912 ], [ 366165.279899999499321, 256093.258799999952316 ], [ 366162.974799998104572, 256065.299199998378754 ], [ 366161.445000000298023, 256046.743400000035763 ], [ 366134.468000002205372, 256043.160199999809265 ], [ 366132.722699999809265, 256042.928399998694658 ], [ 366130.880999997258186, 256042.725600000470877 ], [ 366131.222199998795986, 256072.03999999910593 ], [ 366131.465499997138977, 256093.18129999935627 ], [ 366131.480400003492832, 256094.227899998426437 ], [ 366131.469200000166893, 256094.945700000971556 ], [ 366131.339100003242493, 256103.342099998146296 ], [ 366131.602099999785423, 256110.146699998527765 ], [ 366134.755900003015995, 256187.807300001382828 ], [ 366170.284800000488758, 256192.854499999433756 ], [ 366166.428300000727177, 256110.125 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013100", "MAP": "D9-7755-T006", "PARCEL_NAM": "19F-1-A", "ACRE": "2.00", "LONGITUDE": -64.86362922000001, "LATITUDE": 18.33998283, "OBJECTID_1": 23815, "PARCEL_NO_": "105801013100", "Tax_Legal_": "19F-1-A REM.ESTATE SMITH BAY NO.1,2 & 3 EASTEND QTR", "Name": "CHURCH OF GOD SEVENTH DAY INC", "Address": "PO BOX 2761", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 194500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 540.19889103200001, "SHAPE_Area": 9532.8783581400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365864.437700003385544, 256684.553300000727177 ], [ 365926.681199997663498, 256905.342500001192093 ], [ 365941.937299996614456, 256897.980500001460314 ], [ 365966.313799999654293, 256887.759100001305342 ], [ 365902.798699997365475, 256670.328200001269579 ], [ 365864.437700003385544, 256684.553300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803011500", "MAP": "D9-7218-T003", "PARCEL_NAM": "19N", "ACRE": "7.80", "LONGITUDE": -64.86456523, "LATITUDE": 18.33802128, "OBJECTID_1": 23839, "PARCEL_NO_": "105803011500", "Tax_Legal_": "19N REM SMITH BAY NO 1,2&3 EAST END QUARTER", "Name": "COFFELT, GORDON L. & SORAYA DIASE COFFELT,CO-TRUSTEES", "Address": "7003 Estate Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 395000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 833.02164323199997, "SHAPE_Area": 27779.158250199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365770.979299999773502, 256721.913800001144409 ], [ 365822.655000001192093, 256710.791900001466274 ], [ 365835.441299997270107, 256695.305799998342991 ], [ 365902.798699997365475, 256670.328200001269579 ], [ 365831.524899996817112, 256502.588700000196695 ], [ 365865.535099998116493, 256491.288400001823902 ], [ 365849.338299997150898, 256402.336100000888109 ], [ 365823.669799998402596, 256410.020399998873472 ], [ 365768.549500003457069, 256426.521600000560284 ], [ 365770.056900002062321, 256609.776000000536442 ], [ 365770.979299999773502, 256721.913800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105801013200", "MAP": "D9-7745-T006", "PARCEL_NAM": "19F-1-B", "ACRE": ".0411", "LONGITUDE": -64.86468335000001, "LATITUDE": 18.34022789, "OBJECTID_1": 23816, "PARCEL_NO_": "105801013200", "Tax_Legal_": "19F-1-B ESTATE SMITH BAY NO. 1,2&3 EASTEND QTR", "Name": "COFFELT, GORDON & SORAYA DIASE, CO-TRUSTEES", "Address": "7003 Estate Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.687437872999993, "SHAPE_Area": 385.76009101699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365791.574299998581409, 256823.924800001084805 ], [ 365819.168099999427795, 256817.227400001138449 ], [ 365815.750200003385544, 256804.339000001549721 ], [ 365788.456900000572205, 256810.242899999022484 ], [ 365789.016800001263618, 256813.072399999946356 ], [ 365791.574299998581409, 256823.924800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105801012900", "MAP": null, "PARCEL_NAM": "19F-1", "ACRE": null, "LONGITUDE": -64.86427742, "LATITUDE": 18.34034259, "OBJECTID_1": 23813, "PARCEL_NO_": "105801012900", "Tax_Legal_": "19f-1 REM ESTATE SMITH BAY NO. 1,2 & 3 EASTEND QTR", "Name": "COFFELT, GORDON", "Address": "7003 Estate Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 317400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 798.81310871599999, "SHAPE_Area": 25799.083830600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365788.456900000572205, 256810.242899999022484 ], [ 365815.750200003385544, 256804.339000001549721 ], [ 365819.168099999427795, 256817.227400001138449 ], [ 365791.574299998581409, 256823.924800001084805 ], [ 365802.635099999606609, 256870.860399998724461 ], [ 365807.181100003421307, 256912.119199998676777 ], [ 365818.151399999856949, 256981.659400001168251 ], [ 365818.672700002789497, 256988.590300001204014 ], [ 365820.245999999344349, 256984.377199999988079 ], [ 365825.159400001168251, 256975.551500000059605 ], [ 365828.416199997067451, 256971.741399999707937 ], [ 365834.11879999935627, 256965.070199999958277 ], [ 365852.782600000500679, 256951.290800001472235 ], [ 365875.501400001347065, 256934.800299998372793 ], [ 365897.392300002276897, 256920.836199998855591 ], [ 365914.407600000500679, 256911.2652000002563 ], [ 365926.681199997663498, 256905.342500001192093 ], [ 365864.437700003385544, 256684.553300000727177 ], [ 365835.441299997270107, 256695.305799998342991 ], [ 365822.655000001192093, 256710.791900001466274 ], [ 365770.979299999773502, 256721.913800001144409 ], [ 365788.456900000572205, 256810.242899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105804046900", "MAP": "D9-6832-T000", "PARCEL_NAM": "19-2-149-4", "ACRE": "8.153", "LONGITUDE": -64.85769687, "LATITUDE": 18.33545769, "OBJECTID_1": 24747, "PARCEL_NO_": "105804046900", "Tax_Legal_": "19-2-149-4 ESTATE SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "SHARDO LLC", "Address": "14 Plessen", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 840, "Country": "United States", "Land_Value": 544000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 662.069782326, "SHAPE_Area": 26474.909602399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366579.343500003218651, 256191.389899998903275 ], [ 366483.901500001549721, 256217.888999998569489 ], [ 366452.427100002765656, 256281.1891999989748 ], [ 366462.030599996447563, 256322.697000000625849 ], [ 366463.33219999819994, 256323.750399999320507 ], [ 366465.169100001454353, 256323.50560000166297 ], [ 366467.285999998450279, 256321.179000001400709 ], [ 366471.701399996876717, 256325.906599998474121 ], [ 366469.584399998188019, 256328.233300000429153 ], [ 366469.302199997007847, 256330.575599998235703 ], [ 366469.544100001454353, 256332.922499999403954 ], [ 366476.76630000025034, 256346.532499998807907 ], [ 366482.727399997413158, 256354.39979999884963 ], [ 366495.471600003540516, 256365.973000001162291 ], [ 366543.388099998235703, 256413.197399999946356 ], [ 366559.208700001239777, 256377.831799998879433 ], [ 366568.184199996292591, 256365.450699999928474 ], [ 366573.864399999380112, 256361.275400001555681 ], [ 366580.343699999153614, 256357.950899999588728 ], [ 366588.428400002419949, 256355.483899999409914 ], [ 366632.795299999415874, 256353.524999998509884 ], [ 366646.518799997866154, 256351.737500000745058 ], [ 366643.383500002324581, 256341.157200001180172 ], [ 366634.016999997198582, 256304.772399999201298 ], [ 366623.871200002729893, 256265.214899998158216 ], [ 366609.559000000357628, 256241.455299999564886 ], [ 366609.02419999986887, 256209.575800001621246 ], [ 366579.343500003218651, 256191.389899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803040700", "MAP": "D9-6724-T000", "PARCEL_NAM": "19-2-149-8", "ACRE": ".266", "LONGITUDE": -64.85993581, "LATITUDE": 18.33627707, "OBJECTID_1": 24000, "PARCEL_NO_": "105803040700", "Tax_Legal_": "19-2-149-8 SMITH BAY NO. 1,2 & 3 EASTEND QUARTER", "Name": "JEROME L & ELITA V BRADSHAW", "Address": "PO Box 308263", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.83664389899999, "SHAPE_Area": 1280.0223399 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366324.757600001990795, 256362.907600000500679 ], [ 366289.299400001764297, 256369.549800001084805 ], [ 366284.067299999296665, 256397.744699999690056 ], [ 366283.86540000140667, 256399.344900000840425 ], [ 366335.366800002753735, 256388.858300000429153 ], [ 366336.741999998688698, 256386.845499999821186 ], [ 366335.758400000631809, 256382.78770000115037 ], [ 366335.11429999768734, 256378.732799999415874 ], [ 366329.737899996340275, 256372.275199998170137 ], [ 366324.715400002896786, 256364.133299998939037 ], [ 366324.757600001990795, 256362.907600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803039900", "MAP": "D9-6615-T99", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85909468, "LATITUDE": 18.3362464, "OBJECTID_1": 23995, "PARCEL_NO_": "105803039900", "Tax_Legal_": "19-2-149 REM.,-149-1,-149-17&ROW'S A THRU G NO. 1,2 & 3 EASTEND QUARTER", "Name": "SOOKRAM, SIEWDATH", "Address": "6076 Estate Smith Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 728.57635840499995, "SHAPE_Area": 2131.35872294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366334.204499997198582, 256318.184200000017881 ], [ 366328.414599999785423, 256328.733300000429153 ], [ 366327.00450000166893, 256334.795200001448393 ], [ 366325.167999997735023, 256350.976799998432398 ], [ 366324.715400002896786, 256364.133299998939037 ], [ 366329.737899996340275, 256372.275199998170137 ], [ 366335.11429999768734, 256378.732799999415874 ], [ 366335.758400000631809, 256382.78770000115037 ], [ 366336.741999998688698, 256386.845499999821186 ], [ 366335.366800002753735, 256388.858300000429153 ], [ 366283.86540000140667, 256399.344900000840425 ], [ 366282.890399999916553, 256407.072700001299381 ], [ 366360.481700003147125, 256389.749099999666214 ], [ 366412.277300000190735, 256375.598499998450279 ], [ 366442.667099997401237, 256369.446400001645088 ], [ 366456.381999999284744, 256367.313999999314547 ], [ 366468.058399997651577, 256365.276799999177456 ], [ 366482.754699997603893, 256367.540800001472235 ], [ 366496.163000002503395, 256374.857900001108646 ], [ 366505.581799998879433, 256385.290199998766184 ], [ 366526.690999999642372, 256405.27419999986887 ], [ 366540.854099996387959, 256418.862100001424551 ], [ 366543.388099998235703, 256413.197399999946356 ], [ 366495.471600003540516, 256365.973000001162291 ], [ 366482.269900001585484, 256360.763599999248981 ], [ 366466.990900002419949, 256360.9695999994874 ], [ 366441.832400001585484, 256365.140099998563528 ], [ 366388.439999997615814, 256375.816700000315905 ], [ 366372.110600002110004, 256379.725699998438358 ], [ 366352.714500002563, 256384.958099998533726 ], [ 366346.601099997758865, 256385.243000000715256 ], [ 366343.226700000464916, 256382.85190000012517 ], [ 366339.550599999725819, 256376.071400001645088 ], [ 366331.191399998962879, 256361.151900000870228 ], [ 366330.309299997985363, 256345.284400001168251 ], [ 366333.146899998188019, 256331.136100001633167 ], [ 366337.968999996781349, 256323.07880000025034 ], [ 366341.752499997615814, 256317.374699998646975 ], [ 366334.204499997198582, 256318.184200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803039900", "MAP": "D9-6832-T000", "PARCEL_NAM": "19-2-149 REM", "ACRE": null, "LONGITUDE": -64.85855258, "LATITUDE": 18.33360561, "OBJECTID_1": 23995, "PARCEL_NO_": "105803039900", "Tax_Legal_": "19-2-149 REM.,-149-1,-149-17&ROW'S A THRU G NO. 1,2 & 3 EASTEND QUARTER", "Name": "SOOKRAM, SIEWDATH", "Address": "6076 Estate Smith Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.498917049, "SHAPE_Area": 4735.1738565899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366402.375500001013279, 256140.5456000007689 ], [ 366452.001299999654293, 256114.71339999884367 ], [ 366467.564599998295307, 256100.377399999648333 ], [ 366523.279799997806549, 256068.928399998694658 ], [ 366515.953000001609325, 256061.972800001502037 ], [ 366491.142899997532368, 256038.047400001436472 ], [ 366478.177199997007847, 256045.540600001811981 ], [ 366454.632299996912479, 256064.3462999984622 ], [ 366431.085600003600121, 256083.363099999725819 ], [ 366406.791900001466274, 256095.407699998468161 ], [ 366405.902900002896786, 256105.110800001770258 ], [ 366402.375500001013279, 256140.5456000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803041200", "MAP": "D9-6813-T00", "PARCEL_NAM": "19-2-149-12", "ACRE": "1.38", "LONGITUDE": -64.85827946000001, "LATITUDE": 18.33653516, "OBJECTID_1": 24001, "PARCEL_NO_": "105803041200", "Tax_Legal_": "SMITH BAY 19-2-149-12 NO.1,2&3 EAST END QTR", "Name": "LIVING WORD FAMILY MINISTRIES INC", "Address": "PO Box 9226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 204700, "Improved_V": 1654100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 438.56809832099998, "SHAPE_Area": 6227.0790177299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366414.917499996721745, 256410.669599998742342 ], [ 366438.104099996387959, 256403.099800001829863 ], [ 366447.682199999690056, 256406.894299998879433 ], [ 366483.061099998652935, 256418.793999999761581 ], [ 366509.455399997532368, 256444.130199998617172 ], [ 366501.205300003290176, 256466.016399998217821 ], [ 366485.793600000441074, 256476.655999999493361 ], [ 366488.155000001192093, 256483.430300001055002 ], [ 366493.750699996948242, 256489.175599999725819 ], [ 366498.565200001001358, 256491.959300000220537 ], [ 366504.211199998855591, 256491.794399999082088 ], [ 366509.081399999558926, 256488.034600000828505 ], [ 366527.971799999475479, 256447.659200001507998 ], [ 366540.854099996387959, 256418.862100001424551 ], [ 366526.690999999642372, 256405.27419999986887 ], [ 366505.581799998879433, 256385.290199998766184 ], [ 366496.163000002503395, 256374.857900001108646 ], [ 366482.754699997603893, 256367.540800001472235 ], [ 366468.058399997651577, 256365.276799999177456 ], [ 366456.381999999284744, 256367.313999999314547 ], [ 366442.667099997401237, 256369.446400001645088 ], [ 366419.38400000333786, 256374.159800000488758 ], [ 366414.917499996721745, 256410.669599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803037700", "MAP": "D9-6724-T000", "PARCEL_NAM": "19-2-149-9", "ACRE": ".261", "LONGITUDE": -64.86007315000001, "LATITUDE": 18.33669217, "OBJECTID_1": 23992, "PARCEL_NO_": "105803037700", "Tax_Legal_": "SMITH BAY ESTATE 19-2-149-9 1,2&3 EASTEND QTR.", "Name": "FAULKNER, JOYCE", "Address": "188 Meredith Ave", "City": "Bryn Mawr", "State": "Pennsylvania", "Zip": 19010, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.129740529, "SHAPE_Area": 1245.4080545 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366308.000100001692772, 256444.278900001198053 ], [ 366307.995099999010563, 256443.977699998766184 ], [ 366309.409999996423721, 256401.151700001209974 ], [ 366282.890399999916553, 256407.072700001299381 ], [ 366277.149300001561642, 256452.572399999946356 ], [ 366308.000100001692772, 256444.278900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803037500", "MAP": "D9-6615-T99", "PARCEL_NAM": "19-2-149-7", "ACRE": ".253", "LONGITUDE": -64.8590455, "LATITUDE": 18.33640933, "OBJECTID_1": 23990, "PARCEL_NO_": "105803037500", "Tax_Legal_": "SMITH BAY ESTATE 19-2-149-7 1,2&3 REDHOOK QTR", "Name": "JOSEPH, MELVIN & FITZROY & DORNELLE JOSEPH-EMANUEL", "Address": "3636 Ebb Cir", "City": "Fairburn", "State": "Georgia", "Zip": 30213, "Country": "United States", "Land_Value": 34700, "Improved_V": 145000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.838894358, "SHAPE_Area": 1012.05175167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366414.917499996721745, 256410.669599998742342 ], [ 366419.38400000333786, 256374.159800000488758 ], [ 366412.277300000190735, 256375.598499998450279 ], [ 366391.957900002598763, 256381.149700000882149 ], [ 366386.718999996781349, 256419.875700000673532 ], [ 366414.917499996721745, 256410.669599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803037400", "MAP": "D9-6615-T99", "PARCEL_NAM": "19-2-149-6", "ACRE": ".251", "LONGITUDE": -64.85930838, "LATITUDE": 18.33648552, "OBJECTID_1": 23989, "PARCEL_NO_": "105803037400", "Tax_Legal_": "19-2-149-6 ESTATE SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "REYES, LUIS P. & JUANA P. DE LA ROSA", "Address": "PO Box 502184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.8420337, "SHAPE_Area": 1059.8537091000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366386.718999996781349, 256419.875700000673532 ], [ 366391.957900002598763, 256381.149700000882149 ], [ 366363.764799997210503, 256388.852099999785423 ], [ 366358.98480000346899, 256428.93019999936223 ], [ 366386.718999996781349, 256419.875700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803037300", "MAP": "D9-6615-T99", "PARCEL_NAM": "19-2-149-5", "ACRE": ".253", "LONGITUDE": -64.85956836, "LATITUDE": 18.33656407, "OBJECTID_1": 23988, "PARCEL_NO_": "105803037300", "Tax_Legal_": "SMITH BAY ESTATE 19-2-149-5 1,2&3 EASTEND QTR", "Name": "KYSHMA J CLARKE and KYCHE'LE K CLARKE", "Address": "8500 Kirwan Ter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.57460721499999, "SHAPE_Area": 1074.4168575599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366358.98480000346899, 256428.93019999936223 ], [ 366363.764799997210503, 256388.852099999785423 ], [ 366360.481700003147125, 256389.749099999666214 ], [ 366338.487700000405312, 256394.659600000828505 ], [ 366330.491800002753735, 256438.232500001788139 ], [ 366358.98480000346899, 256428.93019999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803037800", "MAP": "D9-6724-T000", "PARCEL_NAM": "19-2-149-10", "ACRE": ".241", "LONGITUDE": -64.85981467000001, "LATITUDE": 18.33661621, "OBJECTID_1": 23993, "PARCEL_NO_": "105803037800", "Tax_Legal_": "19-2-149-10 ESTATE SMITH BAY 1,2 & 3 EASTEND QTR", "Name": "CRAWFORD, GLENIS Y.", "Address": "PO Box 10306", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.534951175, "SHAPE_Area": 1088.6045275500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366309.409999996423721, 256401.151700001209974 ], [ 366307.995099999010563, 256443.977699998766184 ], [ 366308.000100001692772, 256444.278900001198053 ], [ 366330.491800002753735, 256438.232500001788139 ], [ 366338.487700000405312, 256394.659600000828505 ], [ 366309.409999996423721, 256401.151700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803037600", "MAP": "D9-6790-T000", "PARCEL_NAM": "19-2-149-11", "ACRE": ".239", "LONGITUDE": -64.85992725, "LATITUDE": 18.33594478, "OBJECTID_1": 23991, "PARCEL_NO_": "105803037600", "Tax_Legal_": "SMITH BAY ESTATE 19-2-149-11 No.1,2&3 EASTEND QTR.", "Name": "JEAN, MARLINE", "Address": "PO BOX 305395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.55886459600001, "SHAPE_Area": 1443.07733566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366289.299400001764297, 256369.549800001084805 ], [ 366324.757600001990795, 256362.907600000500679 ], [ 366325.167999997735023, 256350.976799998432398 ], [ 366327.00450000166893, 256334.795200001448393 ], [ 366328.414599999785423, 256328.733300000429153 ], [ 366334.204499997198582, 256318.184200000017881 ], [ 366328.609700001776218, 256318.784200001507998 ], [ 366297.390299998223782, 256325.948699999600649 ], [ 366289.299400001764297, 256369.549800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803039800", "MAP": "D9-6950-T001", "PARCEL_NAM": "19-2-149-14", "ACRE": "5.00", "LONGITUDE": -64.85804769000001, "LATITUDE": 18.33420462, "OBJECTID_1": 23994, "PARCEL_NO_": "105803039800", "Tax_Legal_": "19-2-149-14 SMITH BAY 1,2 & 3 EASTEND QTR", "Name": "HEDRINGTON, ROSE", "Address": "PO Box 1255", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 242100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 721.21119352599999, "SHAPE_Area": 23783.655248899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366523.279799997806549, 256068.928399998694658 ], [ 366467.564599998295307, 256100.377399999648333 ], [ 366452.001299999654293, 256114.71339999884367 ], [ 366402.375500001013279, 256140.5456000007689 ], [ 366452.427100002765656, 256281.1891999989748 ], [ 366483.901500001549721, 256217.888999998569489 ], [ 366579.343500003218651, 256191.389899998903275 ], [ 366583.441600002348423, 256183.613000001758337 ], [ 366589.969400003552437, 256174.589400000870228 ], [ 366607.956399999558926, 256145.605700001120567 ], [ 366624.303900003433228, 256119.774999998509884 ], [ 366638.957699999213219, 256103.42960000038147 ], [ 366648.728799998760223, 256092.321600001305342 ], [ 366625.36370000243187, 256090.019499998539686 ], [ 366593.9408999979496, 256087.018100000917912 ], [ 366582.856299996376038, 256100.307399999350309 ], [ 366525.5253000035882, 256070.745700001716614 ], [ 366523.279799997806549, 256068.928399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803040100", "MAP": "D9-7851-T006", "PARCEL_NAM": "19-2-149-16", "ACRE": "0.40", "LONGITUDE": -64.85971233, "LATITUDE": 18.33525274, "OBJECTID_1": 23996, "PARCEL_NO_": "105803040100", "Tax_Legal_": "SMITH BAY 19-2-149-16 NO.1,2&3 EAST END QTR", "Name": "JONES JR, JAMES JOSEPH", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.16792319800001, "SHAPE_Area": 1969.26594411 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366374.663500003516674, 256267.573399998247623 ], [ 366371.678400002419949, 256265.573699999600649 ], [ 366346.68639999628067, 256246.478100001811981 ], [ 366309.742299996316433, 256252.272599998861551 ], [ 366303.667999997735023, 256291.933800000697374 ], [ 366345.866099998354912, 256282.191500000655651 ], [ 366374.663500003516674, 256267.573399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803039900", "MAP": "D9-7851-T006", "PARCEL_NAM": "19-2-149-17", "ACRE": ".68", "LONGITUDE": -64.85953121, "LATITUDE": 18.33500457, "OBJECTID_1": 23995, "PARCEL_NO_": "105803039900", "Tax_Legal_": "19-2-149 REM.,-149-1,-149-17&ROW'S A THRU G NO. 1,2 & 3 EASTEND QUARTER", "Name": "SOOKRAM, SIEWDATH", "Address": "6076 Estate Smith Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.443721727, "SHAPE_Area": 2334.3950871699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366309.742299996316433, 256252.272599998861551 ], [ 366346.68639999628067, 256246.478100001811981 ], [ 366371.678400002419949, 256265.573699999600649 ], [ 366374.663500003516674, 256267.573399998247623 ], [ 366397.828000001609325, 256255.814699999988079 ], [ 366392.866300001740456, 256249.426500000059605 ], [ 366359.798100002110004, 256216.401900000870228 ], [ 366314.551100000739098, 256227.008400000631809 ], [ 366311.190999999642372, 256242.813000001013279 ], [ 366309.742299996316433, 256252.272599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803039900", "MAP": "D9-8276-T009", "PARCEL_NAM": "ROW", "ACRE": ".05", "LONGITUDE": -64.85965562, "LATITUDE": 18.33615773, "OBJECTID_1": 23995, "PARCEL_NO_": "105803039900", "Tax_Legal_": "19-2-149 REM.,-149-1,-149-17&ROW'S A THRU G NO. 1,2 & 3 EASTEND QUARTER", "Name": "SOOKRAM, SIEWDATH", "Address": "6076 Estate Smith Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.71915127, "SHAPE_Area": 176.694075959 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366356.241800002753735, 256384.006499998271465 ], [ 366346.682300001382828, 256380.326900001615286 ], [ 366343.962099999189377, 256376.977099999785423 ], [ 366339.965999998152256, 256369.102000001817942 ], [ 366335.261100001633167, 256360.270399998873472 ], [ 366333.073100000619888, 256350.628899998962879 ], [ 366331.537900000810623, 256339.158399999141693 ], [ 366330.309299997985363, 256345.284400001168251 ], [ 366331.191399998962879, 256361.151900000870228 ], [ 366339.550599999725819, 256376.071400001645088 ], [ 366343.226700000464916, 256382.85190000012517 ], [ 366346.601099997758865, 256385.243000000715256 ], [ 366352.714500002563, 256384.958099998533726 ], [ 366356.241800002753735, 256384.006499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803040300", "MAP": "D9-8362-T009", "PARCEL_NAM": "19-2-149-20", "ACRE": ".271", "LONGITUDE": -64.85916631000001, "LATITUDE": 18.33487184, "OBJECTID_1": 23998, "PARCEL_NO_": "105803040300", "Tax_Legal_": "19-2-149-20 SMITH BAY NO. 1,2 &3 EAST END QUARTER", "Name": "KADOO, BERNARD & AMANDA M. HUBERT", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.37781724800001, "SHAPE_Area": 1710.8662860699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366397.828000001609325, 256255.814699999988079 ], [ 366420.918600000441074, 256245.360599998384714 ], [ 366404.948499999940395, 256221.747900001704693 ], [ 366397.881800003349781, 256194.759899999946356 ], [ 366359.798100002110004, 256216.401900000870228 ], [ 366392.866300001740456, 256249.426500000059605 ], [ 366397.828000001609325, 256255.814699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85892532, "LATITUDE": 18.33473923, "OBJECTID_1": 23995, "PARCEL_NO_": "105803039900", "Tax_Legal_": "19-2-149 REM.,-149-1,-149-17&ROW'S A THRU G NO. 1,2 & 3 EASTEND QUARTER", "Name": "SOOKRAM, SIEWDATH", "Address": "6076 Estate Smith Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.045187833, "SHAPE_Area": 2169.1817682199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366438.666799999773502, 256242.522999998182058 ], [ 366402.375500001013279, 256140.5456000007689 ], [ 366397.881800003349781, 256194.759899999946356 ], [ 366404.948499999940395, 256221.747900001704693 ], [ 366420.918600000441074, 256245.360599998384714 ], [ 366424.951200000941753, 256254.070999998599291 ], [ 366441.814599998295307, 256270.370900001376867 ], [ 366441.252499997615814, 256264.522599998861551 ], [ 366445.313299998641014, 256261.199599999934435 ], [ 366438.666799999773502, 256242.522999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803044000", "MAP": "D9-8276-T009", "PARCEL_NAM": "19-2-149-13A", "ACRE": ".25", "LONGITUDE": -64.85898833, "LATITUDE": 18.33590828, "OBJECTID_1": 24005, "PARCEL_NO_": "105803044000", "Tax_Legal_": "19-2-149-13A SMITH BAY No. 1, 2&,3 EAST END QUARTER", "Name": "ALEJANDRO, LESIA M. & TOMAS M. SR.", "Address": "148-78 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307500, "Improved_V": 919700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.00323867200001, "SHAPE_Area": 1935.2332608 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366398.095100000500679, 256373.885999999940395 ], [ 366426.444799996912479, 256368.217000000178814 ], [ 366425.781000003218651, 256317.485500000417233 ], [ 366425.646200001239777, 256307.18189999833703 ], [ 366387.974500000476837, 256320.874400001019239 ], [ 366398.095100000500679, 256373.885999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803044100", "MAP": "D9-8276-T009", "PARCEL_NAM": "19-2-149-13B", "ACRE": "1.01", "LONGITUDE": -64.85913064, "LATITUDE": 18.33545235, "OBJECTID_1": 24006, "PARCEL_NO_": "105803044100", "Tax_Legal_": "19-2-149-13B SMITH BAY", "Name": "ALEJANDRO, LESIA M. & TOMAS M. SR.", "Address": "148-78 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.01059089, "SHAPE_Area": 3019.2808756999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366405.07039999961853, 256314.577199999243021 ], [ 366425.646200001239777, 256307.18189999833703 ], [ 366424.951200000941753, 256254.070999998599291 ], [ 366384.982299998402596, 256271.930300001055002 ], [ 366356.599500000476837, 256285.133499998599291 ], [ 366353.205200001597404, 256290.758099999278784 ], [ 366350.543300002813339, 256296.944499999284744 ], [ 366387.974500000476837, 256320.874400001019239 ], [ 366405.07039999961853, 256314.577199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803039900", "MAP": "D9-8276-T009", "PARCEL_NAM": "19-2-149-20", "ACRE": ".05", "LONGITUDE": -64.85879515000001, "LATITUDE": 18.33586318, "OBJECTID_1": 23995, "PARCEL_NO_": "105803039900", "Tax_Legal_": "19-2-149 REM.,-149-1,-149-17&ROW'S A THRU G NO. 1,2 & 3 EASTEND QUARTER", "Name": "SOOKRAM, SIEWDATH", "Address": "6076 Estate Smith Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.65607226500001, "SHAPE_Area": 452.83092524800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366430.779200002551079, 256367.350299999117851 ], [ 366437.200300000607967, 256322.305799998342991 ], [ 366425.619800001382828, 256305.169100001454353 ], [ 366425.781000003218651, 256317.485500000417233 ], [ 366426.444799996912479, 256368.217000000178814 ], [ 366430.779200002551079, 256367.350299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803044600", "MAP": "D9-7340-T004", "PARCEL_NAM": "19-2-149-13 REM", "ACRE": "1.010", "LONGITUDE": -64.85942585, "LATITUDE": 18.33594685, "OBJECTID_1": 24007, "PARCEL_NO_": "105803044600", "Tax_Legal_": "19-2-149-13 REM SMITH BAY NO. 1,2 & 3 EASTEND QUARTER", "Name": "ALEJANDRO, LESIA M. & TOMAS M. SR.", "Address": "148-78 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 117800, "Improved_V": 86900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.98240070400001, "SHAPE_Area": 3937.91208611 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366331.537900000810623, 256339.158399999141693 ], [ 366333.073100000619888, 256350.628899998962879 ], [ 366335.261100001633167, 256360.270399998873472 ], [ 366339.965999998152256, 256369.102000001817942 ], [ 366343.962099999189377, 256376.977099999785423 ], [ 366346.682300001382828, 256380.326900001615286 ], [ 366356.241800002753735, 256384.006499998271465 ], [ 366372.110600002110004, 256379.725699998438358 ], [ 366388.439999997615814, 256375.816700000315905 ], [ 366398.095100000500679, 256373.885999999940395 ], [ 366387.974500000476837, 256320.874400001019239 ], [ 366350.543300002813339, 256296.944499999284744 ], [ 366341.752499997615814, 256317.374699998646975 ], [ 366337.968999996781349, 256323.07880000025034 ], [ 366333.146899998188019, 256331.136100001633167 ], [ 366331.537900000810623, 256339.158399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803041800", "MAP": "D9-9082-T016", "PARCEL_NAM": "19-2-149-21", "ACRE": ".508", "LONGITUDE": -64.85866075, "LATITUDE": 18.33572949, "OBJECTID_1": 24002, "PARCEL_NO_": "105803041800", "Tax_Legal_": "19-2-149-21 SMITH BAY No.1, 2, & 3 EAST END QUARTER", "Name": "SINGH, DAVE", "Address": "CONTANT #234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.90239028100001, "SHAPE_Area": 2596.4706328699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366441.814599998295307, 256270.370900001376867 ], [ 366424.951200000941753, 256254.070999998599291 ], [ 366425.619800001382828, 256305.169100001454353 ], [ 366437.200300000607967, 256322.305799998342991 ], [ 366434.647299997508526, 256340.215599998831749 ], [ 366430.779200002551079, 256367.350299999117851 ], [ 366431.395900003612041, 256367.227000001817942 ], [ 366441.832400001585484, 256365.140099998563528 ], [ 366466.990900002419949, 256360.9695999994874 ], [ 366473.014399997889996, 256360.888399999588728 ], [ 366480.606799997389317, 256360.785999998450279 ], [ 366479.227799996733665, 256359.512699998915195 ], [ 366472.837300002574921, 256352.246300000697374 ], [ 366465.81870000064373, 256339.363000001758337 ], [ 366464.239600002765656, 256336.479899998754263 ], [ 366457.462499998509884, 256324.106100000441074 ], [ 366451.567699998617172, 256307.55629999935627 ], [ 366446.80120000243187, 256294.58559999987483 ], [ 366442.495300002396107, 256276.802600000053644 ], [ 366442.318599998950958, 256275.614399999380112 ], [ 366441.814599998295307, 256270.370900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803039900", "MAP": null, "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.8585125, "LATITUDE": 18.33565746, "OBJECTID_1": 23995, "PARCEL_NO_": "105803039900", "Tax_Legal_": "19-2-149 REM.,-149-1,-149-17&ROW'S A THRU G NO. 1,2 & 3 EASTEND QUARTER", "Name": "SOOKRAM, SIEWDATH", "Address": "6076 Estate Smith Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.072233254, "SHAPE_Area": 780.40203880199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366472.837300002574921, 256352.246300000697374 ], [ 366479.227799996733665, 256359.512699998915195 ], [ 366480.606799997389317, 256360.785999998450279 ], [ 366482.269900001585484, 256360.763599999248981 ], [ 366495.471600003540516, 256365.973000001162291 ], [ 366482.727399997413158, 256354.39979999884963 ], [ 366476.76630000025034, 256346.532499998807907 ], [ 366469.544100001454353, 256332.922499999403954 ], [ 366469.302199997007847, 256330.575599998235703 ], [ 366469.584399998188019, 256328.233300000429153 ], [ 366471.701399996876717, 256325.906599998474121 ], [ 366467.285999998450279, 256321.179000001400709 ], [ 366465.169100001454353, 256323.50560000166297 ], [ 366463.33219999819994, 256323.750399999320507 ], [ 366462.030599996447563, 256322.697000000625849 ], [ 366452.427100002765656, 256281.1891999989748 ], [ 366448.510899998247623, 256270.18470000103116 ], [ 366445.313299998641014, 256261.199599999934435 ], [ 366441.252499997615814, 256264.522599998861551 ], [ 366442.318599998950958, 256275.614399999380112 ], [ 366442.495300002396107, 256276.802600000053644 ], [ 366446.80120000243187, 256294.58559999987483 ], [ 366451.567699998617172, 256307.55629999935627 ], [ 366457.462499998509884, 256324.106100000441074 ], [ 366465.81870000064373, 256339.363000001758337 ], [ 366472.837300002574921, 256352.246300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85934858, "LATITUDE": 18.33534444, "OBJECTID_1": 23995, "PARCEL_NO_": "105803039900", "Tax_Legal_": "19-2-149 REM.,-149-1,-149-17&ROW'S A THRU G NO. 1,2 & 3 EASTEND QUARTER", "Name": "SOOKRAM, SIEWDATH", "Address": "6076 Estate Smith Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 307500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.08088790099998, "SHAPE_Area": 1071.3355782799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366403.630500003695488, 256263.255399998277426 ], [ 366424.951200000941753, 256254.070999998599291 ], [ 366420.918600000441074, 256245.360599998384714 ], [ 366397.828000001609325, 256255.814699999988079 ], [ 366345.866099998354912, 256282.191500000655651 ], [ 366340.66669999808073, 256289.801199998706579 ], [ 366343.211599998176098, 256292.374499998986721 ], [ 366328.609700001776218, 256318.784200001507998 ], [ 366341.752499997615814, 256317.374699998646975 ], [ 366353.205200001597404, 256290.758099999278784 ], [ 366356.599500000476837, 256285.133499998599291 ], [ 366403.630500003695488, 256263.255399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107501029800", "MAP": "D9-4056-T87", "PARCEL_NAM": "C REM", "ACRE": null, "LONGITUDE": -64.89885247, "LATITUDE": 18.32439358, "OBJECTID_1": 37476, "PARCEL_NO_": "107501029800", "Tax_Legal_": "C-2 REM. EST HOFFMAN & NULLYBERG #2B NEW QUARTER", "Name": "OLIVER V. KIRKETERP TRUST", "Address": "PO Box 546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 195200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 640.28738295300002, "SHAPE_Area": 23153.340494600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362112.237099997699261, 254960.695300001651049 ], [ 362195.240299999713898, 255150.337200000882149 ], [ 362268.977399997413158, 255129.511900000274181 ], [ 362261.534400001168251, 254926.2195999994874 ], [ 362230.831600002944469, 254933.356600001454353 ], [ 362171.850299999117851, 254947.017099998891354 ], [ 362119.33389999717474, 254959.041799999773502 ], [ 362112.237099997699261, 254960.695300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107501020200", "MAP": null, "PARCEL_NAM": "C-1", "ACRE": null, "LONGITUDE": -64.8990906, "LATITUDE": 18.32601265, "OBJECTID_1": 37473, "PARCEL_NO_": "107501020200", "Tax_Legal_": "PCL C-1 EST NULLYBERG 4 NEW QTR", "Name": "SOMMER, FRITZ O", "Address": "2928 Thomas Smith Ln", "City": "Williamsburg", "State": "Virginia", "Zip": 23185, "Country": "United States", "Land_Value": 105900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 458.53934162399997, "SHAPE_Area": 6104.3477382399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362079.271099999547005, 255246.679200001060963 ], [ 362272.025200001895428, 255206.733899999409914 ], [ 362271.408299997448921, 255187.000999998301268 ], [ 362270.611800000071526, 255170.423599999397993 ], [ 362078.068300001323223, 255220.240600001066923 ], [ 362079.04559999704361, 255239.466499999165535 ], [ 362079.271099999547005, 255246.679200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107501029900", "MAP": null, "PARCEL_NAM": "C-12", "ACRE": null, "LONGITUDE": -64.89902703, "LATITUDE": 18.32799293, "OBJECTID_1": 37477, "PARCEL_NO_": "107501029900", "Tax_Legal_": "C-12 REM. HOFFMAN & NULLYBERG 3 2B NEW QTR.", "Name": "HOUSING AUTHORITY", "Address": "PO Box 7668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 964400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1201.18219727, "SHAPE_Area": 78467.757540699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362272.025200001895428, 255206.733899999409914 ], [ 362079.271099999547005, 255246.679200001060963 ], [ 362079.679300002753735, 255259.736699998378754 ], [ 362095.826399996876717, 255636.037599999457598 ], [ 362287.802500002086163, 255628.953999999910593 ], [ 362272.042000003159046, 255207.271099999547005 ], [ 362272.025200001895428, 255206.733899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107501020300", "MAP": "D9-4056-T87", "PARCEL_NAM": "C-2", "ACRE": "5.00", "LONGITUDE": -64.89941239, "LATITUDE": 18.32507647, "OBJECTID_1": 37474, "PARCEL_NO_": "107501020300", "Tax_Legal_": "C-2 NULLIBERG & HOFFMAN NEW QTR.", "Name": "SWEENEY, KENNETH & WATT, CONROY", "Address": "300 N Broadway", "City": "Yonkers", "State": "New York", "Zip": 10701, "Country": "United States", "Land_Value": 149100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 877.68325142699996, "SHAPE_Area": 18699.3159782 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362268.977399997413158, 255129.511900000274181 ], [ 362195.240299999713898, 255150.337200000882149 ], [ 362112.237099997699261, 254960.695300001651049 ], [ 362066.815700002014637, 254971.27760000154376 ], [ 362059.54450000077486, 254972.906800001859665 ], [ 362088.743299998342991, 255047.661800000816584 ], [ 362094.27419999986887, 255061.006000000983477 ], [ 362096.64639999717474, 255066.513900000602007 ], [ 362098.239200003445148, 255068.848900001496077 ], [ 362104.565700002014637, 255083.4662000015378 ], [ 362106.957599997520447, 255086.652100000530481 ], [ 362140.189800001680851, 255161.229100000113249 ], [ 362109.391699999570847, 255179.553199999034405 ], [ 362076.973700001835823, 255198.708500001579523 ], [ 362078.068300001323223, 255220.240600001066923 ], [ 362270.611800000071526, 255170.423599999397993 ], [ 362270.038500003516674, 255158.49210000038147 ], [ 362268.977399997413158, 255129.511900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": "A9-78-T67", "PARCEL_NAM": "33 REM", "ACRE": null, "LONGITUDE": -64.87915459, "LATITUDE": 18.32029997, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 449.09450904, "SHAPE_Area": 3003.12590912 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364274.607799999415874, 254597.979899998754263 ], [ 364290.764700002968311, 254594.523499999195337 ], [ 364307.668499998748302, 254598.03940000012517 ], [ 364321.390100002288818, 254596.462900001555681 ], [ 364345.620899997651577, 254591.806099999696016 ], [ 364350.311300002038479, 254609.154199998825788 ], [ 364353.550899997353554, 254607.491900000721216 ], [ 364355.987899996340275, 254605.40089999884367 ], [ 364363.382100000977516, 254602.769400000572205 ], [ 364359.173000000417233, 254583.327100001275539 ], [ 364350.279799997806549, 254582.210499998182058 ], [ 364339.33839999884367, 254575.611099999397993 ], [ 364327.09009999781847, 254568.740200001746416 ], [ 364303.250699996948242, 254570.099399998784065 ], [ 364288.910099998116493, 254574.381999999284744 ], [ 364267.509300000965595, 254579.345600001513958 ], [ 364255.164499998092651, 254589.991900000721216 ], [ 364246.422700002789497, 254601.889800000935793 ], [ 364237.696400001645088, 254611.965999998152256 ], [ 364228.981100000441074, 254620.74100000038743 ], [ 364217.851999998092651, 254636.262299999594688 ], [ 364208.817500002682209, 254651.801399998366833 ], [ 364203.998700000345707, 254664.253100000321865 ], [ 364203.406599998474121, 254672.316199999302626 ], [ 364206.208700001239777, 254675.946899998933077 ], [ 364212.009300000965595, 254657.629200000315905 ], [ 364220.209100000560284, 254641.653200000524521 ], [ 364232.427799999713898, 254627.187800001353025 ], [ 364243.804300002753735, 254616.937300000339746 ], [ 364258.415100000798702, 254605.657800000160933 ], [ 364274.607799999415874, 254597.979899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035700", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-21", "ACRE": ".25", "LONGITUDE": -64.87637464, "LATITUDE": 18.3421574, "OBJECTID_1": 22003, "PARCEL_NO_": "105701035700", "Tax_Legal_": "20-21-21 SMITH BAY EASTEND QTR", "Name": "TODMAN, BYRON", "Address": "PO Box 11703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.60280947, "SHAPE_Area": 763.68294526199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364579.237099997699261, 257000.210099998861551 ], [ 364545.055600002408028, 257009.647300001233816 ], [ 364545.961199998855591, 257010.467000000178814 ], [ 364548.226999998092651, 257013.971099998801947 ], [ 364553.920100003480911, 257022.775600001215935 ], [ 364557.073399998247623, 257031.245099999010563 ], [ 364579.646499998867512, 257031.852099999785423 ], [ 364579.237099997699261, 257000.210099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035600", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-22", "ACRE": null, "LONGITUDE": -64.87610746, "LATITUDE": 18.34215788, "OBJECTID_1": 22002, "PARCEL_NO_": "105701035600", "Tax_Legal_": "20-21-22 SMITH BAY EAST END QTR.", "Name": "WHITE, OLIVER H. & DANITA V.", "Address": "PO Box 502845", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 37400, "Improved_V": 256600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.45264442600001, "SHAPE_Area": 1021.45253312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364610.869400002062321, 257000.595400001853704 ], [ 364579.237099997699261, 257000.210099998861551 ], [ 364579.646499998867512, 257031.852099999785423 ], [ 364579.625, 257034.385000001639128 ], [ 364607.032399997115135, 257035.453699998557568 ], [ 364607.853100001811981, 257033.771699998527765 ], [ 364607.9087999984622, 257027.228199999779463 ], [ 364610.869400002062321, 257000.595400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035500", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-18", "ACRE": ".23", "LONGITUDE": -64.87609371000001, "LATITUDE": 18.34180711, "OBJECTID_1": 22001, "PARCEL_NO_": "105701035500", "Tax_Legal_": "ESTATE SMITH BAY 20-21-18 EASTEND QUARTER", "Name": "CARTY, DALE L", "Address": "PO Box 302152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.05930410900001, "SHAPE_Area": 1460.8523067799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364579.237099997699261, 257000.210099998861551 ], [ 364610.869400002062321, 257000.595400001853704 ], [ 364611.402000002563, 256995.803899999707937 ], [ 364611.412100002169609, 256995.720100000500679 ], [ 364611.852600000798702, 256992.059200000017881 ], [ 364615.741099998354912, 256959.742400001734495 ], [ 364579.491200000047684, 256955.434900000691414 ], [ 364579.191399998962879, 256990.627399999648333 ], [ 364579.160300001502037, 256994.273400001227856 ], [ 364579.237099997699261, 257000.210099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035400", "MAP": "D9-7641-T005", "PARCEL_NAM": "20-21-19-REM", "ACRE": ".22", "LONGITUDE": -64.87633762, "LATITUDE": 18.34174082, "OBJECTID_1": 22000, "PARCEL_NO_": "105701035400", "Tax_Legal_": "SMITH BAY 20-21-19 REM. EAST END QTR.", "Name": "SECRETARY OF HOUSING AND URBAN DEVELOPMENT", "Address": "235 Federico Costa St", "City": "San Juan", "State": "Puerto Rico", "Zip": 918, "Country": "United States", "Land_Value": 27700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.17612931799999, "SHAPE_Area": 601.78882312400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364555.188500002026558, 256968.53489999845624 ], [ 364565.754000000655651, 256982.4510000012815 ], [ 364579.160300001502037, 256994.273400001227856 ], [ 364579.191399998962879, 256990.627399999648333 ], [ 364579.491200000047684, 256955.434900000691414 ], [ 364565.796400003135204, 256953.845199998468161 ], [ 364561.703699998557568, 256960.988899998366833 ], [ 364555.188500002026558, 256968.53489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87645286, "LATITUDE": 18.34177162, "OBJECTID_1": 22000, "PARCEL_NO_": "105701035400", "Tax_Legal_": "SMITH BAY 20-21-19 REM. EAST END QTR.", "Name": "SECRETARY OF HOUSING AND URBAN DEVELOPMENT", "Address": "235 Federico Costa St", "City": "San Juan", "State": "Puerto Rico", "Zip": 918, "Country": "United States", "Land_Value": 27700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.299257083699999, "SHAPE_Area": 28.064929543600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364565.754000000655651, 256982.4510000012815 ], [ 364555.188500002026558, 256968.53489999845624 ], [ 364553.548900000751019, 256971.687899999320507 ], [ 364565.754000000655651, 256982.4510000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702063500", "MAP": "D9-7934-T006", "PARCEL_NAM": "57T-1", "ACRE": ".31", "LONGITUDE": -64.87083598, "LATITUDE": 18.34439464, "OBJECTID_1": 22680, "PARCEL_NO_": "105702063500", "Tax_Legal_": "SMITH BAY 57T-1 EAST END QTR", "Name": "GOVIA, MARGARET", "Address": "PO Box 11825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.15944057599999, "SHAPE_Area": 813.55092548300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365133.985600002110004, 257263.067299999296665 ], [ 365134.41950000077486, 257272.84010000154376 ], [ 365133.395999997854233, 257273.034499999135733 ], [ 365136.28660000115633, 257286.975999999791384 ], [ 365168.621799997985363, 257277.530299998819828 ], [ 365155.963600002229214, 257248.929099999368191 ], [ 365150.287000000476837, 257252.682300001382828 ], [ 365133.985600002110004, 257263.067299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803036500", "MAP": "D9-7202-T003", "PARCEL_NAM": "19-2-46", "ACRE": ".22", "LONGITUDE": -64.85874427, "LATITUDE": 18.33149886, "OBJECTID_1": 23982, "PARCEL_NO_": "105803036500", "Tax_Legal_": "SMITH BAY 19-2-46 EASTEND QTR.", "Name": "GUMBS, LATOYA & LYLE", "Address": "4215 Annas Retreat #242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37400, "Improved_V": 56000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.465369142, "SHAPE_Area": 842.10467312499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366418.688699997961521, 255862.228399999439716 ], [ 366445.984399996697903, 255873.274500001221895 ], [ 366456.480800002813339, 255847.357299998402596 ], [ 366453.262699998915195, 255846.486600000411272 ], [ 366450.863600000739098, 255844.144900001585484 ], [ 366446.918300002813339, 255833.980099998414516 ], [ 366444.526399999856949, 255830.794199999421835 ], [ 366440.510999999940395, 255828.861400000751019 ], [ 366431.495899997651577, 255845.886199999600649 ], [ 366418.688699997961521, 255862.228399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803036400", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-47", "ACRE": null, "LONGITUDE": -64.85893829, "LATITUDE": 18.33138952, "OBJECTID_1": 23981, "PARCEL_NO_": "105803036400", "Tax_Legal_": "SMITH BAY 19-2-47 EAST END QUARTER", "Name": "JONES, FERGUS", "Address": "PO Box 11453", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25500, "Improved_V": 177800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.9728, "SHAPE_Area": 940.96482830499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366399.974200002849102, 255854.494199998676777 ], [ 366418.591099999845028, 255862.238299999386072 ], [ 366431.495899997651577, 255845.886199999600649 ], [ 366440.510999999940395, 255828.861400000751019 ], [ 366427.645999997854233, 255824.534299999475479 ], [ 366413.155699998140335, 255821.671500001102686 ], [ 366399.974200002849102, 255854.494199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403024500", "MAP": "D9-6415-T98", "PARCEL_NAM": "15-62", "ACRE": ".768", "LONGITUDE": -64.9098467, "LATITUDE": 18.31733703, "OBJECTID_1": 37198, "PARCEL_NO_": "107403024500", "Tax_Legal_": "FRENCHMAN'S BAY 15-62 FRENCHMAN'S BAY QTR.", "Name": "LESLIE, BARBARA", "Address": "2369 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77600, "Improved_V": 214400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.54915321499999, "SHAPE_Area": 3558.2488763400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361034.1621999964118, 254205.969700001180172 ], [ 361016.445100001990795, 254273.504399999976158 ], [ 361060.079800002276897, 254278.598400000482798 ], [ 361063.674400001764297, 254270.34739999845624 ], [ 361090.85700000077486, 254207.952799998223782 ], [ 361073.427599996328354, 254207.221200000494719 ], [ 361035.539899997413158, 254205.855599999427795 ], [ 361034.1621999964118, 254205.969700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91086101, "LATITUDE": 18.31751349, "OBJECTID_1": 37255, "PARCEL_NO_": "107403034800", "Tax_Legal_": "15-64 FRENCHMAN'S BAY FRENCHMAN'S BAY QTR.", "Name": "VANTERPOOL, J. H. , C. C. , K. K. & S. J", "Address": "PO Box 10391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 100700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.64552727300003, "SHAPE_Area": 4039.2987813300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360968.547600001096725, 254213.328899998217821 ], [ 360951.607799999415874, 254214.034600000828505 ], [ 360940.306900002062321, 254215.419799998402596 ], [ 360904.217799998819828, 254286.896200001239777 ], [ 360903.510099999606609, 254297.554900001734495 ], [ 360948.881300002336502, 254295.395199999213219 ], [ 360963.182599999010563, 254294.714499998837709 ], [ 360976.500500001013279, 254212.941500000655651 ], [ 360968.547600001096725, 254213.328899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403036600", "MAP": "D9-6499-T98", "PARCEL_NAM": "15-63-REM", "ACRE": ".514", "LONGITUDE": -64.91032242, "LATITUDE": 18.31726568, "OBJECTID_1": 37261, "PARCEL_NO_": "107403036600", "Tax_Legal_": "15-63 REM FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "GIBBS SKELTON, SHAMARI OMAR", "Address": "PO BOX 11268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54000, "Improved_V": 107900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.89537039000001, "SHAPE_Area": 2448.15312885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360969.322999998927116, 254257.011799998581409 ], [ 361021.815999999642372, 254252.728799998760223 ], [ 361021.89469999819994, 254252.731600001454353 ], [ 361034.1621999964118, 254205.969700001180172 ], [ 361016.98030000180006, 254207.392499998211861 ], [ 360987.101800002157688, 254212.425299998372793 ], [ 360976.500500001013279, 254212.941500000655651 ], [ 360969.322999998927116, 254257.011799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403033500", "MAP": null, "PARCEL_NAM": "15-53", "ACRE": null, "LONGITUDE": -64.90956571, "LATITUDE": 18.31817897, "OBJECTID_1": 37248, "PARCEL_NO_": "107403033500", "Tax_Legal_": "FRENCHMAN'S BAY 15-53 FRENCHMAN'S BAY QTR.", "Name": "BLUM, KEVIN", "Address": "5328 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125400, "Improved_V": 287500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.94359264100001, "SHAPE_Area": 3948.7238587900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361106.562600001692772, 254293.196299999952316 ], [ 361060.626199997961521, 254290.076200000941753 ], [ 361056.065999999642372, 254352.100299999117851 ], [ 361051.114799998700619, 254365.35869999974966 ], [ 361042.171599999070168, 254373.940400000661612 ], [ 361092.971100002527237, 254374.144999999552965 ], [ 361103.544900000095367, 254363.465799998492002 ], [ 361106.562600001692772, 254293.196299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403024600", "MAP": "D9-6545-T99", "PARCEL_NAM": "15-61 REM", "ACRE": ".517", "LONGITUDE": -64.90940766, "LATITUDE": 18.31729323, "OBJECTID_1": 37199, "PARCEL_NO_": "107403024600", "Tax_Legal_": "15-61 REM FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "LEE, APRIL RODERICK", "Address": "1022 Palisade Ave", "City": "Fort Lee", "State": "New Jersey", "Zip": 7024, "Country": "United States", "Land_Value": 62300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.681544188, "SHAPE_Area": 1678.3600066500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361071.806400001049042, 254251.681099999696016 ], [ 361110.677100002765656, 254263.962799999862909 ], [ 361117.720799997448921, 254213.916499998420477 ], [ 361098.41610000282526, 254208.270100001245737 ], [ 361090.85700000077486, 254207.952799998223782 ], [ 361071.806400001049042, 254251.681099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403034600", "MAP": "D9-6499-T98", "PARCEL_NAM": "15-63A", "ACRE": ".577", "LONGITUDE": -64.91034439000001, "LATITUDE": 18.31766283, "OBJECTID_1": 37253, "PARCEL_NO_": "107403034600", "Tax_Legal_": "15-63A FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "HELENE K ALEXANDER & CHRISTOPHER R COCHRANE", "Address": "9602 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57300, "Improved_V": 232100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.98378844699999, "SHAPE_Area": 2366.2508735599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361021.89469999819994, 254252.731600001454353 ], [ 361021.815999999642372, 254252.728799998760223 ], [ 360969.322999998927116, 254257.011799998581409 ], [ 360963.182599999010563, 254294.714499998837709 ], [ 361006.277699999511242, 254292.663199998438358 ], [ 361006.30009999871254, 254292.662099998444319 ], [ 361040.162299998104572, 254291.050200000405312 ], [ 361039.981600001454353, 254276.252099998295307 ], [ 361016.445100001990795, 254273.504399999976158 ], [ 361021.89469999819994, 254252.731600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403024400", "MAP": "D9-6545-T99", "PARCEL_NAM": "15-61A", "ACRE": ".511", "LONGITUDE": -64.90956964, "LATITUDE": 18.31766015, "OBJECTID_1": 37197, "PARCEL_NO_": "107403024400", "Tax_Legal_": "15-61 FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "LEE MAZZOLA PROPERTIES LLC", "Address": "1022 Palisade", "City": "Fort Lee", "State": "New Jersey", "Zip": 7024, "Country": "United States", "Land_Value": 55600, "Improved_V": 235800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.21042213600001, "SHAPE_Area": 1833.59102562 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361110.677100002765656, 254263.962799999862909 ], [ 361071.806400001049042, 254251.681099999696016 ], [ 361063.674400001764297, 254270.34739999845624 ], [ 361060.079800002276897, 254278.598400000482798 ], [ 361039.981600001454353, 254276.252099998295307 ], [ 361040.162299998104572, 254291.050200000405312 ], [ 361060.626199997961521, 254290.076200000941753 ], [ 361106.562600001692772, 254293.196299999952316 ], [ 361110.677100002765656, 254263.962799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804021700", "MAP": "D9-7956-T007", "PARCEL_NAM": "11B-18", "ACRE": ".500", "LONGITUDE": -64.85233871, "LATITUDE": 18.33643491, "OBJECTID_1": 24026, "PARCEL_NO_": "105804021700", "Tax_Legal_": "11B-14 SMITH BAY EAST END QUARTER", "Name": "SANDY COVE LLC", "Address": "PO Box 460245", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33346, "Country": "United States", "Land_Value": 807700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.33388069400002, "SHAPE_Area": 2955.0818674100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367155.580200001597404, 256445.963599998503923 ], [ 367138.380400002002716, 256432.187199998646975 ], [ 367150.661499999463558, 256396.589200001209974 ], [ 367093.826200000941753, 256378.407699998468161 ], [ 367083.340599998831749, 256378.744100000709295 ], [ 367079.299999997019768, 256379.766499999910593 ], [ 367072.012699998915195, 256383.295400001108646 ], [ 367061.691899999976158, 256393.92339999973774 ], [ 367067.135200001299381, 256397.307000000029802 ], [ 367067.054300002753735, 256397.39809999987483 ], [ 367083.891500003635883, 256408.723900001496077 ], [ 367150.81530000269413, 256448.822599999606609 ], [ 367152.208200000226498, 256447.986800000071526 ], [ 367154.945100001990795, 256446.3445999994874 ], [ 367155.580200001597404, 256445.963599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704062600", "MAP": "D9-6284-T97", "PARCEL_NAM": "57W-2-REM", "ACRE": "0.32", "LONGITUDE": -64.87199121, "LATITUDE": 18.33894194, "OBJECTID_1": 23686, "PARCEL_NO_": "105704062600", "Tax_Legal_": "57W-2 REM SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "JULIEN, KERVIN & VERNALYN RALPH", "Address": "PO BOX 12258", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.46578865199999, "SHAPE_Area": 1080.84094093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365005.387599997222424, 256657.107099998742342 ], [ 365038.344499997794628, 256686.846400000154972 ], [ 365057.643100000917912, 256674.372099999338388 ], [ 365057.664700001478195, 256671.839099999517202 ], [ 365027.265699997544289, 256643.303800001740456 ], [ 365005.387599997222424, 256657.107099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704062000", "MAP": "D9-6284-T97", "PARCEL_NAM": "57W-2-1", "ACRE": "0.27", "LONGITUDE": -64.87220431, "LATITUDE": 18.33906824, "OBJECTID_1": 23682, "PARCEL_NO_": "105704062000", "Tax_Legal_": "57W-2-1 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "SCOTLAND, R. A. & MAYNARD, H. A", "Address": "PO Box 302027", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49800, "Improved_V": 269800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.22647246899999, "SHAPE_Area": 1146.4084959100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365038.344499997794628, 256686.846400000154972 ], [ 365005.387599997222424, 256657.107099998742342 ], [ 365000.511799998581409, 256660.183400001376867 ], [ 364991.599200002849102, 256665.176699999719858 ], [ 364983.374200001358986, 256684.107799999415874 ], [ 365001.892399996519089, 256687.425799999386072 ], [ 365006.714100003242493, 256689.365100000053644 ], [ 365013.925999999046326, 256694.701400000602007 ], [ 365017.910800002515316, 256700.222500000149012 ], [ 365029.263899996876717, 256692.715999998152256 ], [ 365038.344499997794628, 256686.846400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87025618, "LATITUDE": 18.33712702, "OBJECTID_1": 23475, "PARCEL_NO_": "105704013000", "Tax_Legal_": "SMITH BAY 57B-39 EAST END QTR", "Name": "SUCKOW, HOWARD & VIRGINIA", "Address": "169 Stephens State Park Rd", "City": "Hackettstown", "State": "New Jersey", "Zip": 7840, "Country": "United States", "Land_Value": 72700, "Improved_V": 54500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.87324674199999, "SHAPE_Area": 2940.2180907299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365175.174400001764297, 256508.359000001102686 ], [ 365193.006800003349781, 256497.528099998831749 ], [ 365201.060999996960163, 256498.649500001221895 ], [ 365246.500399999320507, 256465.457499999552965 ], [ 365248.933700002729893, 256463.788699999451637 ], [ 365263.551100000739098, 256453.867600001394749 ], [ 365265.305900000035763, 256436.696800000965595 ], [ 365257.803199999034405, 256439.564100001007318 ], [ 365254.217699997127056, 256439.737100001424551 ], [ 365249.943199999630451, 256439.943399999290705 ], [ 365188.605899997055531, 256446.196299999952316 ], [ 365191.730499997735023, 256458.043200001120567 ], [ 365190.823399998247623, 256469.85700000077486 ], [ 365187.502899996936321, 256481.017799999564886 ], [ 365182.609300002455711, 256487.521600000560284 ], [ 365179.330099999904633, 256493.827599998563528 ], [ 365176.027500003576279, 256502.877599999308586 ], [ 365175.174400001764297, 256508.359000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702033700", "MAP": "A9-333-T86", "PARCEL_NAM": "98-1", "ACRE": ".22", "LONGITUDE": -64.86955053, "LATITUDE": 18.34099225, "OBJECTID_1": 22504, "PARCEL_NO_": "105702033700", "Tax_Legal_": "SMITH BAY 98-1 EAST END QTR", "Name": "CHRISTOPHER, STUDLEY & ANDY", "Address": "6122 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 128700, "Improved_V": 103400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.257559872, "SHAPE_Area": 4453.2381586499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365320.807499997317791, 256927.078699998557568 ], [ 365325.279600001871586, 256926.433899998664856 ], [ 365320.959899999201298, 256906.619199998676777 ], [ 365313.220399998128414, 256868.559000000357628 ], [ 365309.917400002479553, 256851.49269999936223 ], [ 365253.357400000095367, 256862.138599999248981 ], [ 365257.98589999973774, 256892.184000000357628 ], [ 365264.609700001776218, 256935.181800000369549 ], [ 365320.807499997317791, 256927.078699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702033900", "MAP": "G9-2611-T77", "PARCEL_NAM": "98-2", "ACRE": "0.27", "LONGITUDE": -64.87055496000001, "LATITUDE": 18.34156661, "OBJECTID_1": 22506, "PARCEL_NO_": "105702033900", "Tax_Legal_": "SMITH BAY 98-2 EAST END QTR", "Name": "HUNTT, ENID", "Address": "PO Box 7531", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36900, "Improved_V": 100400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.74031836699999, "SHAPE_Area": 1265.4085082500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365208.928800001740456, 256942.508499998599291 ], [ 365201.779700003564358, 256939.199499998241663 ], [ 365181.938799999654293, 256930.015900000929832 ], [ 365171.306199997663498, 256953.064599998295307 ], [ 365150.101499997079372, 256990.502599999308586 ], [ 365174.409500002861023, 256976.769400000572205 ], [ 365200.680299997329712, 256957.429900001734495 ], [ 365208.928800001740456, 256942.508499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702033800", "MAP": "G9-2611-T77", "PARCEL_NAM": "98-3", "ACRE": "0.24", "LONGITUDE": -64.87036488, "LATITUDE": 18.34126413, "OBJECTID_1": 22505, "PARCEL_NO_": "105702033800", "Tax_Legal_": "98-3 SMITH BAY EAST END QUARTER", "Name": "PHILLIP, GEORGES & JOSEPHINE GEORGE-PHILLIP", "Address": "PO Box 308512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8038512, "Country": "United States", "Land_Value": 32800, "Improved_V": 205500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.099186569, "SHAPE_Area": 871.06239470800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365181.938799999654293, 256930.015900000929832 ], [ 365201.779700003564358, 256939.199499998241663 ], [ 365208.928800001740456, 256942.508499998599291 ], [ 365223.033500000834465, 256916.993599999696016 ], [ 365211.466099999845028, 256912.168200001120567 ], [ 365194.131800003349781, 256904.937199998646975 ], [ 365185.967699997127056, 256921.282200001180172 ], [ 365183.226800002157688, 256927.223799999803305 ], [ 365181.938799999654293, 256930.015900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702035200", "MAP": "D9-3394-T86", "PARCEL_NAM": "98-4", "ACRE": "0.23", "LONGITUDE": -64.87023547, "LATITUDE": 18.34101857, "OBJECTID_1": 22519, "PARCEL_NO_": "105702035200", "Tax_Legal_": "SMITH BAY 98-4 EASTEND QTR.", "Name": "PHILIP, GEORGES & JOSEPHINE", "Address": "PO Box 308512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8038512, "Country": "United States", "Land_Value": 32400, "Improved_V": 49900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.62716053599999, "SHAPE_Area": 1031.3747095799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365194.131800003349781, 256904.937199998646975 ], [ 365211.466099999845028, 256912.168200001120567 ], [ 365223.033500000834465, 256916.993599999696016 ], [ 365238.271200001239777, 256889.429000001400709 ], [ 365222.169799998402596, 256881.605599999427795 ], [ 365208.971799999475479, 256875.192899998277426 ], [ 365205.394400000572205, 256882.388700000941753 ], [ 365195.114200003445148, 256902.970400001853704 ], [ 365194.131800003349781, 256904.937199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702035300", "MAP": "A9-333-T86", "PARCEL_NAM": "98-5", "ACRE": "0.25", "LONGITUDE": -64.8700974, "LATITUDE": 18.34076842, "OBJECTID_1": 22520, "PARCEL_NO_": "105702035300", "Tax_Legal_": "SMITH BAY 98-5 EASTEND QTR.", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.042171404, "SHAPE_Area": 1004.00253075 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365253.357400000095367, 256862.138599999248981 ], [ 365240.982100002467632, 256856.941399998962879 ], [ 365234.399999998509884, 256854.177099999040365 ], [ 365222.007100000977516, 256848.972500000149012 ], [ 365211.039899997413158, 256871.032800000160933 ], [ 365208.971799999475479, 256875.192899998277426 ], [ 365222.169799998402596, 256881.605599999427795 ], [ 365238.271200001239777, 256889.429000001400709 ], [ 365246.962499998509884, 256873.706799998879433 ], [ 365253.357400000095367, 256862.138599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702090100", "MAP": "A9-33-T86", "PARCEL_NAM": "98-6", "ACRE": "1.94", "LONGITUDE": -64.8697227, "LATITUDE": 18.34148038, "OBJECTID_1": 22765, "PARCEL_NO_": "105702090100", "Tax_Legal_": "SMITH BAY 98-6&98-8-1 EAST END QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 529300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 453.805304148, "SHAPE_Area": 7968.6224360699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365246.962499998509884, 256873.706799998879433 ], [ 365200.680299997329712, 256957.429900001734495 ], [ 365321.60809999704361, 257005.067099999636412 ], [ 365326.764799997210503, 256982.449299998581409 ], [ 365328.465499997138977, 256972.119600001722574 ], [ 365328.728100001811981, 256941.302099999040365 ], [ 365325.616099998354912, 256927.977699998766184 ], [ 365325.279600001871586, 256926.433899998664856 ], [ 365320.807499997317791, 256927.078699998557568 ], [ 365264.609700001776218, 256935.181800000369549 ], [ 365257.98589999973774, 256892.184000000357628 ], [ 365253.357400000095367, 256862.138599999248981 ], [ 365246.962499998509884, 256873.706799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702031200", "MAP": "F9-980-T62", "PARCEL_NAM": "86", "ACRE": null, "LONGITUDE": -64.87107705, "LATITUDE": 18.34160076, "OBJECTID_1": 22477, "PARCEL_NO_": "105702031200", "Tax_Legal_": "SMITH BAY 86 EAST END QTR", "Name": "MCDONALD, LISA S.", "Address": "PO Box 1984", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 8511984, "Country": "United States", "Land_Value": 28700, "Improved_V": 211300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.062863548, "SHAPE_Area": 718.39913670800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365142.068800002336502, 256969.079500000923872 ], [ 365144.931699998676777, 256968.857200000435114 ], [ 365144.558499999344349, 256948.353500001132488 ], [ 365141.586999997496605, 256948.75789999961853 ], [ 365105.170999996364117, 256953.359900001436472 ], [ 365108.380000002682209, 256965.885400000959635 ], [ 365110.603699997067451, 256970.947700001299381 ], [ 365142.017499998211861, 256969.083399999886751 ], [ 365142.068800002336502, 256969.079500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702031200", "MAP": "F9-980-T62", "PARCEL_NAM": "86", "ACRE": "0.21", "LONGITUDE": -64.87110639, "LATITUDE": 18.34137256, "OBJECTID_1": 22477, "PARCEL_NO_": "105702031200", "Tax_Legal_": "SMITH BAY 86 EAST END QTR", "Name": "MCDONALD, LISA S.", "Address": "PO Box 1984", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 8511984, "Country": "United States", "Land_Value": 28700, "Improved_V": 211300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.44216021299999, "SHAPE_Area": 1326.7150474 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365141.586999997496605, 256948.75789999961853 ], [ 365144.558499999344349, 256948.353500001132488 ], [ 365143.959100000560284, 256915.424899999052286 ], [ 365138.597900003194809, 256916.232700001448393 ], [ 365110.077200002968311, 256922.075199998915195 ], [ 365099.865299999713898, 256924.167100001126528 ], [ 365099.826999999582767, 256928.662900000810623 ], [ 365103.738099999725819, 256942.838199999183416 ], [ 365104.477899998426437, 256950.654699999839067 ], [ 365105.170999996364117, 256953.359900001436472 ], [ 365141.586999997496605, 256948.75789999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702031400", "MAP": "F9-1474-T64", "PARCEL_NAM": "98A", "ACRE": null, "LONGITUDE": -64.87113926000001, "LATITUDE": 18.34100054, "OBJECTID_1": 22479, "PARCEL_NO_": "105702031400", "Tax_Legal_": "98A ESTATE SMITH BAY EAST END QTR", "Name": "HARTMAN, ESTRID F", "Address": "P.O. BOX 2862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48400, "Improved_V": 226800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.55623932399999, "SHAPE_Area": 2500.59854008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365109.141999997198582, 256876.279500000178814 ], [ 365089.676299996674061, 256889.685899998992682 ], [ 365089.623700000345707, 256895.859900001436472 ], [ 365089.566200003027916, 256902.614399999380112 ], [ 365095.159999996423721, 256908.570799998939037 ], [ 365098.334899999201298, 256914.507399998605251 ], [ 365099.900799997150898, 256920.008699998259544 ], [ 365099.865299999713898, 256924.167100001126528 ], [ 365110.077200002968311, 256922.075199998915195 ], [ 365138.597900003194809, 256916.232700001448393 ], [ 365143.959100000560284, 256915.424899999052286 ], [ 365142.824299998581409, 256853.081900000572205 ], [ 365114.23200000077486, 256872.773899998515844 ], [ 365109.141999997198582, 256876.279500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702031100", "MAP": "F9-915-T62", "PARCEL_NAM": "84", "ACRE": "0.21", "LONGITUDE": -64.871052, "LATITUDE": 18.34183149, "OBJECTID_1": 22475, "PARCEL_NO_": "105702031100", "Tax_Legal_": "SMITH BAY 84 EAST END ST THOMAS", "Name": "FLEMING, O. B. & V. M. , CO-TRUSTEE", "Address": "313 Applewood Dr", "City": "Douglassville", "State": "Pennsylvania", "Zip": 19518, "Country": "United States", "Land_Value": 28700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.72915311099999, "SHAPE_Area": 970.27373844800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365142.068800002336502, 256969.079500000923872 ], [ 365142.017499998211861, 256969.083399999886751 ], [ 365110.603699997067451, 256970.947700001299381 ], [ 365114.708200000226498, 256980.291499998420477 ], [ 365115.480400003492832, 256984.308600001037121 ], [ 365116.875399999320507, 257009.862300001084805 ], [ 365126.5996999964118, 257004.242400001734495 ], [ 365141.185300000011921, 256995.918000001460314 ], [ 365145.377999998629093, 256993.371500000357628 ], [ 365144.931699998676777, 256968.857200000435114 ], [ 365142.068800002336502, 256969.079500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702031000", "MAP": "D9-411-T63", "PARCEL_NAM": "40K", "ACRE": "0.25", "LONGITUDE": -64.87101011, "LATITUDE": 18.34218581, "OBJECTID_1": 22474, "PARCEL_NO_": "105702031000", "Tax_Legal_": "SMITH BAY 40K EAST END QTR", "Name": "ETIENNE, GLORIA", "Address": "PO Box 6064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34200, "Improved_V": 167600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.805980847, "SHAPE_Area": 1309.3207084600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365141.91610000282526, 257004.789900001138449 ], [ 365141.185300000011921, 256995.918000001460314 ], [ 365126.5996999964118, 257004.242400001734495 ], [ 365116.875399999320507, 257009.862300001084805 ], [ 365117.652999997138977, 257013.246199999004602 ], [ 365116.80349999666214, 257018.305500000715256 ], [ 365116.762100003659725, 257023.160300001502037 ], [ 365115.115299999713898, 257027.157600000500679 ], [ 365122.982500001788139, 257050.231199998408556 ], [ 365154.532899998128414, 257038.245999999344349 ], [ 365145.857699997723103, 257015.376899998635054 ], [ 365144.263099998235703, 257013.252900000661612 ], [ 365143.498099997639656, 257008.391499999910593 ], [ 365141.91610000282526, 257004.789900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702031900", "MAP": "D9-411-T63", "PARCEL_NAM": "40H", "ACRE": "0.34", "LONGITUDE": -64.8705544, "LATITUDE": 18.34204382, "OBJECTID_1": 22484, "PARCEL_NO_": "105702031900", "Tax_Legal_": "40H SMITH BAY NO. 1,2,3 EAST END QTR", "Name": "PICKERING, ELIZABETH & LISTON", "Address": "PO Box 9288", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53000, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.23960216899999, "SHAPE_Area": 1532.68238496 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365157.099299997091293, 257020.957299999892712 ], [ 365164.208700001239777, 257038.325199998915195 ], [ 365205.566200003027916, 257011.010400000959635 ], [ 365204.124399997293949, 256990.944699998944998 ], [ 365202.82940000295639, 256979.773800000548363 ], [ 365154.020900003612041, 257010.568999998271465 ], [ 365157.099299997091293, 257020.957299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105702030300", "MAP": "D9-7468-T004", "PARCEL_NAM": "40B", "ACRE": ".259", "LONGITUDE": -64.87001435000001, "LATITUDE": 18.3437638, "OBJECTID_1": 22467, "PARCEL_NO_": "105702030300", "Tax_Legal_": "SMITH BAY 40B EAST END QTR", "Name": "COURTYARD LAND CO. , LLC", "Address": "6812 Est Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30900, "Improved_V": 116600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.20817977900001, "SHAPE_Area": 1241.6545674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365224.183399997651577, 257226.294700000435114 ], [ 365263.991300001740456, 257194.632199998944998 ], [ 365262.081399999558926, 257192.169100001454353 ], [ 365254.111800000071526, 257181.127000000327826 ], [ 365249.036700002849102, 257175.722899999469519 ], [ 365210.15990000218153, 257204.872600000351667 ], [ 365219.913999997079372, 257219.899399999529123 ], [ 365224.183399997651577, 257226.294700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702030400", "MAP": "F9-2861-T71", "PARCEL_NAM": "40C", "ACRE": null, "LONGITUDE": -64.87025441, "LATITUDE": 18.34361364, "OBJECTID_1": 22468, "PARCEL_NO_": "105702030400", "Tax_Legal_": "SMITH BAY 40C EAST END QTR", "Name": "GUILDEROY ASHLEY SR REVOCABLE TRUST", "Address": "PO Box 8419", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16700, "Improved_V": 237600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.68948425000001, "SHAPE_Area": 853.12023300099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365202.726199999451637, 257169.714200001209974 ], [ 365191.282899998128414, 257175.94370000064373 ], [ 365192.052699998021126, 257177.452599998563528 ], [ 365205.587399996817112, 257197.828400000929832 ], [ 365210.15990000218153, 257204.872600000351667 ], [ 365232.028399996459484, 257188.475699998438358 ], [ 365227.982799999415874, 257183.228100001811981 ], [ 365213.178000003099442, 257164.024500001221895 ], [ 365202.726199999451637, 257169.714200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702033400", "MAP": "G9-2085-T72", "PARCEL_NAM": "40CA", "ACRE": null, "LONGITUDE": -64.87007175, "LATITUDE": 18.34350424, "OBJECTID_1": 22500, "PARCEL_NO_": "105702033400", "Tax_Legal_": "40 CA SMITH BAY 1,2&3 EAST END QTR", "Name": "GUILDEROY ASHLEY SR REVOCABLE TRUST", "Address": "PO Box 8419", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28800, "Improved_V": 236600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.375902586799995, "SHAPE_Area": 557.16773159800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365213.178000003099442, 257164.024500001221895 ], [ 365227.982799999415874, 257183.228100001811981 ], [ 365232.028399996459484, 257188.475699998438358 ], [ 365249.036700002849102, 257175.722899999469519 ], [ 365245.32150000333786, 257171.7668999992311 ], [ 365231.718500003218651, 257159.412099998444319 ], [ 365228.505800001323223, 257157.90819999948144 ], [ 365224.474299997091293, 257157.875199999660254 ], [ 365215.109499998390675, 257162.973099999129772 ], [ 365213.178000003099442, 257164.024500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86723621, "LATITUDE": 18.34017747, "OBJECTID_1": 22529, "PARCEL_NO_": "105702036200", "Tax_Legal_": "8A REM.ESTATE SMITH BAY No.1,2&3 EASTEND QTR", "Name": "MMST PROPERTIES INC", "Address": "6800 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653400, "Improved_V": 1709000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.133754705, "SHAPE_Area": 1725.8252636 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365505.238099999725819, 256815.668400000780821 ], [ 365557.676700003445148, 256829.244600001722574 ], [ 365557.917900003492832, 256825.387699998915195 ], [ 365557.614100001752377, 256789.193500000983477 ], [ 365536.605200000107288, 256788.897199999541044 ], [ 365508.036499999463558, 256788.494199998676777 ], [ 365507.551700003445148, 256795.636100001633167 ], [ 365505.238099999725819, 256815.668400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036200", "MAP": "D9-6344-T97", "PARCEL_NAM": "8A-REM", "ACRE": "3.00", "LONGITUDE": -64.86732191, "LATITUDE": 18.34106956, "OBJECTID_1": 22529, "PARCEL_NO_": "105702036200", "Tax_Legal_": "8A REM.ESTATE SMITH BAY No.1,2&3 EASTEND QTR", "Name": "MMST PROPERTIES INC", "Address": "6800 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 653400, "Improved_V": 1709000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 453.10408022000001, "SHAPE_Area": 9267.2564777999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365557.676700003445148, 256829.244600001722574 ], [ 365505.238099999725819, 256815.668400000780821 ], [ 365504.288000002503395, 256823.895599998533726 ], [ 365500.940700002014637, 256842.233300000429153 ], [ 365495.465000003576279, 256867.939599998295307 ], [ 365497.559199996292591, 257000.734600000083447 ], [ 365498.297200001776218, 257008.762200001627207 ], [ 365548.619400002062321, 256970.332899998873472 ], [ 365549.48870000243187, 256962.951699998229742 ], [ 365548.788400001823902, 256950.491500001400709 ], [ 365554.061499997973442, 256899.449999999254942 ], [ 365554.183799996972084, 256885.096599999815226 ], [ 365557.676700003445148, 256829.244600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702038200", "MAP": "D9-6344-T97", "PARCEL_NAM": "8A-1", "ACRE": ".456", "LONGITUDE": -64.86724167, "LATITUDE": 18.33989056, "OBJECTID_1": 22548, "PARCEL_NO_": "105702038200", "Tax_Legal_": "8A-1 ESTATE SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "MMST PROPERTIES INC", "Address": "6800 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.62378017699999, "SHAPE_Area": 1414.7957498400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365557.614100001752377, 256789.193500000983477 ], [ 365557.080399997532368, 256759.093400001525879 ], [ 365537.012599997222424, 256759.056200001388788 ], [ 365509.91330000013113, 256760.847699999809265 ], [ 365508.036499999463558, 256788.494199998676777 ], [ 365536.605200000107288, 256788.897199999541044 ], [ 365557.614100001752377, 256789.193500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035800", "MAP": "D9-7953-T007", "PARCEL_NAM": "20-21-20 REM CONS", "ACRE": ".23", "LONGITUDE": -64.87646265, "LATITUDE": 18.34194161, "OBJECTID_1": 22004, "PARCEL_NO_": "105701035800", "Tax_Legal_": "20-21-20 & 20-21-19-A ESTATE SMITH BAY 1,2&3 EASTEND QTR.", "Name": "HUSEIN, HUSEIN", "Address": "PO Box 7956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36700, "Improved_V": 319800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.989646351, "SHAPE_Area": 897.11500242099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364579.237099997699261, 257000.210099998861551 ], [ 364579.160300001502037, 256994.273400001227856 ], [ 364565.754000000655651, 256982.4510000012815 ], [ 364553.548900000751019, 256971.687899999320507 ], [ 364545.399499997496605, 256981.753699999302626 ], [ 364544.568000003695488, 256984.702199999243021 ], [ 364541.287000000476837, 256991.219200000166893 ], [ 364538.8429000005126, 256994.154599998146296 ], [ 364539.598800003528595, 257000.071400001645088 ], [ 364541.960199996829033, 257006.84569999948144 ], [ 364545.055600002408028, 257009.647300001233816 ], [ 364579.237099997699261, 257000.210099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804025100", "MAP": "D9-7956-T007", "PARCEL_NAM": "11B-17", "ACRE": ".828", "LONGITUDE": -64.85165338, "LATITUDE": 18.33670886, "OBJECTID_1": 24040, "PARCEL_NO_": "105804025100", "Tax_Legal_": "SMITH BAY 11B-17 NO. 1,2&3 EAST END QUARTER", "Name": "JOEL DEE TRUST", "Address": "3431 Ocean Blvd", "City": "Corona Del Mar", "State": "California", "Zip": 92625, "Country": "United States", "Land_Value": 659100, "Improved_V": 1021400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.56570364599997, "SHAPE_Area": 4335.09724861 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367162.048900000751019, 256446.449099998921156 ], [ 367165.621100001037121, 256452.402699999511242 ], [ 367165.116200000047684, 256457.102899998426437 ], [ 367203.704300001263618, 256484.842999998480082 ], [ 367208.287399999797344, 256478.136300001293421 ], [ 367221.490500003099442, 256442.780600000172853 ], [ 367223.162399999797344, 256435.828200001269579 ], [ 367224.908100001513958, 256420.221599999815226 ], [ 367208.825000002980232, 256415.023699998855591 ], [ 367190.328400000929832, 256409.172800000756979 ], [ 367184.865800000727177, 256407.5152000002563 ], [ 367183.894100002944469, 256407.220300000160933 ], [ 367152.159999996423721, 256397.068599998950958 ], [ 367150.661499999463558, 256396.589200001209974 ], [ 367138.380400002002716, 256432.187199998646975 ], [ 367155.580200001597404, 256445.963599998503923 ], [ 367160.122400000691414, 256443.238299999386072 ], [ 367161.182899996638298, 256445.005800001323223 ], [ 367162.048900000751019, 256446.449099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704050500", "MAP": "D9-8039-T007", "PARCEL_NAM": "98-8-2", "ACRE": ".48", "LONGITUDE": -64.87094041, "LATITUDE": 18.33835082, "OBJECTID_1": 23665, "PARCEL_NO_": "105704050500", "Tax_Legal_": "98-8-2 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "ROBERTS, CECIL and FALANA", "Address": "PO Box 8011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.394807453, "SHAPE_Area": 2314.5488461499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365085.597999997437, 256633.538600001484156 ], [ 365086.214100003242493, 256636.965199999511242 ], [ 365088.844499997794628, 256638.605099998414516 ], [ 365095.777400001883507, 256636.642400000244379 ], [ 365115.352099999785423, 256631.14809999987483 ], [ 365151.930399999022484, 256614.616399999707937 ], [ 365174.130699999630451, 256597.349500000476837 ], [ 365181.530799999833107, 256574.252300001680851 ], [ 365183.35980000346899, 256564.982400000095367 ], [ 365160.608900003135204, 256559.610700000077486 ], [ 365160.211300000548363, 256561.009899999946356 ], [ 365157.736599996685982, 256567.533599998801947 ], [ 365149.534999996423721, 256583.72069999948144 ], [ 365141.381999999284744, 256594.208599999547005 ], [ 365130.81360000371933, 256604.254599999636412 ], [ 365116.215499997138977, 256614.056499999016523 ], [ 365111.023900002241135, 256616.368599999696016 ], [ 365097.598300002515316, 256622.347899999469519 ], [ 365089.481299996376038, 256628.61430000141263 ], [ 365085.597999997437, 256633.538600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702040600", "MAP": "D9-7006-T002", "PARCEL_NAM": "56-2", "ACRE": ".8197", "LONGITUDE": -64.87376638000001, "LATITUDE": 18.34540662, "OBJECTID_1": 22570, "PARCEL_NO_": "105702040600", "Tax_Legal_": "SMITH BAY 56-2 EAST END QTR", "Name": "DOMINO OIL CO., INC", "Address": "1000 Estate Ross", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172500, "Improved_V": 405000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.22505757099998, "SHAPE_Area": 3366.1262949400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364851.496100001037121, 257325.446199998259544 ], [ 364820.930399999022484, 257327.614900000393391 ], [ 364823.184600003063679, 257408.747499998658895 ], [ 364823.796700000762939, 257431.550599999725819 ], [ 364858.51129999756813, 257426.768500000238419 ], [ 364851.496100001037121, 257325.446199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702043200", "MAP": "D9-8093-T008", "PARCEL_NAM": "56-REM", "ACRE": ".5729", "LONGITUDE": -64.87382677, "LATITUDE": 18.3446396, "OBJECTID_1": 22595, "PARCEL_NO_": "105702043200", "Tax_Legal_": "56 REM SMITH BAY NOS 1,2&3 EAST END QTR", "Name": "MILLINER, DARNEAL F.", "Address": "PO Box 7691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 97800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.892989701, "SHAPE_Area": 2028.08725112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364838.276500001549721, 257246.328999999910593 ], [ 364831.01969999819994, 257246.269600000232458 ], [ 364832.351800002157688, 257279.211100000888109 ], [ 364803.243600003421307, 257288.471999999135733 ], [ 364805.533100001513958, 257303.689500000327826 ], [ 364820.098800003528595, 257297.686999998986721 ], [ 364820.930399999022484, 257327.614900000393391 ], [ 364851.496100001037121, 257325.446199998259544 ], [ 364851.33110000193119, 257323.062800001353025 ], [ 364846.906800001859665, 257274.475000001490116 ], [ 364845.416400000452995, 257260.108500000089407 ], [ 364843.062200002372265, 257252.489799998700619 ], [ 364838.276500001549721, 257246.328999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804031800", "MAP": "A9-730-T008", "PARCEL_NAM": "15&15B-1", "ACRE": ".996", "LONGITUDE": -64.85493264, "LATITUDE": 18.33534228, "OBJECTID_1": 24070, "PARCEL_NO_": "105804031800", "Tax_Legal_": "15 & 15B REM SMITH BAY NO.1,2&3 EAST END QTR", "Name": "SPRINGHOUSE LLC", "Address": "6346 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 233100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.07490467599999, "SHAPE_Area": 2975.17409335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366841.836000002920628, 256244.521800000220537 ], [ 366834.880300000309944, 256242.183600001037121 ], [ 366831.291299998760223, 256243.692200001329184 ], [ 366820.737300001084805, 256252.049600001424551 ], [ 366812.584299996495247, 256262.537500001490116 ], [ 366805.1925999969244, 256278.309099998325109 ], [ 366827.544600002467632, 256304.878699999302626 ], [ 366841.113499999046326, 256321.243999999016523 ], [ 366848.42059999704361, 256315.393100000917912 ], [ 366850.819799996912479, 256317.7347999997437 ], [ 366853.256700001657009, 256315.643800001591444 ], [ 366875.178199999034405, 256298.091400001198053 ], [ 366871.039200000464916, 256288.036200001835823 ], [ 366857.854999996721745, 256276.464000001549721 ], [ 366847.476999998092651, 256267.46510000154376 ], [ 366851.579999998211861, 256264.335400000214577 ], [ 366847.569899998605251, 256246.449299998581409 ], [ 366841.836000002920628, 256244.521800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804031800", "MAP": "A9-228-T74", "PARCEL_NAM": "15&15B", "ACRE": null, "LONGITUDE": -64.85377246, "LATITUDE": 18.33550136, "OBJECTID_1": 24070, "PARCEL_NO_": "105804031800", "Tax_Legal_": "15 & 15B REM SMITH BAY NO.1,2&3 EAST END QTR", "Name": "SPRINGHOUSE LLC", "Address": "6346 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 233100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 944.13305695899999, "SHAPE_Area": 19263.419680300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366946.035800002515316, 256403.571299999952316 ], [ 366937.14190000295639, 256413.375300001353025 ], [ 366929.973399996757507, 256421.277499999850988 ], [ 366960.922100000083447, 256455.846799999475479 ], [ 367031.751000002026558, 256376.633099999278784 ], [ 366975.684900000691414, 256332.055700000375509 ], [ 366943.64639999717474, 256306.673300001770258 ], [ 366982.095100000500679, 256242.182300001382828 ], [ 367049.454199999570847, 256191.648899998515844 ], [ 367040.654899999499321, 256183.344300001859665 ], [ 367027.073499999940395, 256168.456599999219179 ], [ 367017.494800001382828, 256156.979100000113249 ], [ 367000.752899996936321, 256134.4662000015378 ], [ 366997.543799996376038, 256132.540100000798702 ], [ 366994.318599998950958, 256132.513700000941753 ], [ 366991.888800002634525, 256133.760299999266863 ], [ 366985.510300002992153, 256139.690200001001358 ], [ 367005.443599998950958, 256162.591299999505281 ], [ 366986.664399996399879, 256179.102699998766184 ], [ 366896.415600001811981, 256266.179000001400709 ], [ 366883.636900000274181, 256251.719999998807907 ], [ 366877.130699999630451, 256258.210700001567602 ], [ 366889.913000002503395, 256272.247499998658895 ], [ 366871.039200000464916, 256288.036200001835823 ], [ 366872.003200002014637, 256290.378100000321865 ], [ 366872.611199997365475, 256290.480000000447035 ], [ 366955.561099998652935, 256393.071199998259544 ], [ 366946.035800002515316, 256403.571299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804031800", "MAP": "D9-730-T008", "PARCEL_NAM": "15&15B-2", "ACRE": ".390", "LONGITUDE": -64.8541134, "LATITUDE": 18.33611553, "OBJECTID_1": 24070, "PARCEL_NO_": "105804031800", "Tax_Legal_": "15 & 15B REM SMITH BAY NO.1,2&3 EAST END QTR", "Name": "SPRINGHOUSE LLC", "Address": "6346 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 233100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.97284378099999, "SHAPE_Area": 971.90892240599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366937.14190000295639, 256413.375300001353025 ], [ 366946.035800002515316, 256403.571299999952316 ], [ 366955.561099998652935, 256393.071199998259544 ], [ 366872.611199997365475, 256290.480000000447035 ], [ 366872.003200002014637, 256290.378100000321865 ], [ 366875.178199999034405, 256298.091400001198053 ], [ 366944.532600000500679, 256391.962400000542402 ], [ 366940.463200002908707, 256396.361999999731779 ], [ 366930.695799998939037, 256407.047899998724461 ], [ 366924.178700000047684, 256414.804999999701977 ], [ 366929.973399996757507, 256421.277499999850988 ], [ 366937.14190000295639, 256413.375300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704013700", "MAP": "D9-8207-T008", "PARCEL_NAM": "57B-41", "ACRE": ".289", "LONGITUDE": -64.87003953, "LATITUDE": 18.33548475, "OBJECTID_1": 23482, "PARCEL_NO_": "105704013700", "Tax_Legal_": "SMITH BAY 57B-41 EAST END QTR", "Name": "MORTON, RONDOLPH B. & YOLANDA M.", "Address": "PO Box 824", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 34000, "Improved_V": 178800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.60199176500001, "SHAPE_Area": 1568.50655269 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365246.974399998784065, 256315.162799999117851 ], [ 365254.247400000691414, 256313.322500001639128 ], [ 365258.277099996805191, 256313.566500000655651 ], [ 365262.276299998164177, 256317.398899998515844 ], [ 365249.914800003170967, 256253.969700001180172 ], [ 365245.055299997329712, 256256.463100001215935 ], [ 365238.590400002896786, 256258.098900001496077 ], [ 365228.108400002121925, 256258.013099998235703 ], [ 365222.455200001597404, 256259.022300001233816 ], [ 365220.027300000190735, 256260.057900000363588 ], [ 365215.126299999654293, 256263.207699999213219 ], [ 365226.323399998247623, 256278.230999998748302 ], [ 365229.92620000243187, 256283.064899999648333 ], [ 365233.566699996590614, 256287.3277000002563 ], [ 365234.480099998414516, 256293.683200001716614 ], [ 365233.534100003540516, 256299.0439000017941 ], [ 365240.489699997007847, 256319.12049999833107 ], [ 365246.974399998784065, 256315.162799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704014300", "MAP": "D9-8207-T008", "PARCEL_NAM": "57B-34", "ACRE": ".442", "LONGITUDE": -64.87025705000001, "LATITUDE": 18.33571478, "OBJECTID_1": 23488, "PARCEL_NO_": "105704014300", "Tax_Legal_": "SMITH BAY 57B-34 EAST END QTR", "Name": "AUSTIN DUNCAN AND JOYCE DUNCAN JOINT REVOCABLE LIV", "Address": "57B-34 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51600, "Improved_V": 235700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.975699206, "SHAPE_Area": 2029.08029319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365233.534100003540516, 256299.0439000017941 ], [ 365234.480099998414516, 256293.683200001716614 ], [ 365233.566699996590614, 256287.3277000002563 ], [ 365229.92620000243187, 256283.064899999648333 ], [ 365226.323399998247623, 256278.230999998748302 ], [ 365215.126299999654293, 256263.207699999213219 ], [ 365213.540799997746944, 256264.226700000464916 ], [ 365207.002199999988079, 256274.516800001263618 ], [ 365206.163500003516674, 256278.309599999338388 ], [ 365206.428599998354912, 256341.850900001823902 ], [ 365204.765600003302097, 256347.747900001704693 ], [ 365201.508000001311302, 256351.520899999886751 ], [ 365198.264700002968311, 256353.60530000180006 ], [ 365193.376500003039837, 256359.475900001823902 ], [ 365210.379199996590614, 256351.382399998605251 ], [ 365220.108900003135204, 256345.129299998283386 ], [ 365225.808799996972084, 256338.631999999284744 ], [ 365227.457400001585484, 256334.423599999397993 ], [ 365229.084399998188019, 256332.748199999332428 ], [ 365229.100599996745586, 256330.848499998450279 ], [ 365233.182499997317791, 256324.9712999984622 ], [ 365236.436599999666214, 256321.620400000363588 ], [ 365240.489699997007847, 256319.12049999833107 ], [ 365233.534100003540516, 256299.0439000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804020300", "MAP": "D9-8279-T009", "PARCEL_NAM": "11B-8-REM", "ACRE": ".60", "LONGITUDE": -64.85105072, "LATITUDE": 18.3389809, "OBJECTID_1": 24013, "PARCEL_NO_": "105804020300", "Tax_Legal_": "PAR 11B-8 REM SMITH BAY 1, 2 &3 EAST END QTR", "Name": "TRADEWINDS PROPERTY MANAGEMENT VI LLC", "Address": "6501 Red Hook Plz Ste 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.56682892800001, "SHAPE_Area": 2479.7656210099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367255.675300002098083, 256642.947399999946356 ], [ 367251.248099997639656, 256672.387099999934435 ], [ 367215.519199997186661, 256681.500399999320507 ], [ 367212.949299998581409, 256692.743599999696016 ], [ 367215.470100000500679, 256711.996399998664856 ], [ 367229.663699999451637, 256713.891699999570847 ], [ 367266.748599998652935, 256714.828499998897314 ], [ 367269.732199996709824, 256648.569499999284744 ], [ 367259.291500002145767, 256643.628899998962879 ], [ 367255.675300002098083, 256642.947399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704060500", "MAP": "A9-324-T85", "PARCEL_NAM": "57Z-2-18", "ACRE": "0.29", "LONGITUDE": -64.87288702, "LATITUDE": 18.33993503, "OBJECTID_1": 23669, "PARCEL_NO_": "105704060500", "Tax_Legal_": "SMITH BAY 57Z-2-18 EASTEND QUARTER", "Name": "MARK, VALERIE B", "Address": "P.O. BOX 4333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37700, "Improved_V": 137300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.36045693599999, "SHAPE_Area": 1397.23352161 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364919.467699997127056, 256802.641499999910593 ], [ 364942.919100001454353, 256794.811900001019239 ], [ 364962.666199997067451, 256748.532900001853704 ], [ 364940.051700003445148, 256752.780799999833107 ], [ 364932.767899997532368, 256755.887600000947714 ], [ 364924.66160000115633, 256760.887499999254942 ], [ 364919.769799999892712, 256767.180300001055002 ], [ 364918.119400002062321, 256771.599700000137091 ], [ 364918.815999999642372, 256784.482099998742342 ], [ 364919.600699998438358, 256787.021699998527765 ], [ 364919.467699997127056, 256802.641499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704060900", "MAP": "D9-8297-T009", "PARCEL_NAM": "57Y-11A", "ACRE": ".01", "LONGITUDE": -64.87261591, "LATITUDE": 18.34013893, "OBJECTID_1": 23673, "PARCEL_NO_": "105704060900", "Tax_Legal_": "57Y-12 REM.& 57Y-11A SMITH BAY 1,2&3 EAST END QTR", "Name": "CHESTERFIELD, JACKLYN", "Address": "PO Box 9461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 261400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.877483654800002, "SHAPE_Area": 32.112189351399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364965.38629999756813, 256802.401599999517202 ], [ 364968.872100003063679, 256787.761100001633167 ], [ 364968.873800002038479, 256787.5636 ], [ 364961.412100002169609, 256801.08500000089407 ], [ 364965.38629999756813, 256802.401599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704060900", "MAP": "D9-8297-T009", "PARCEL_NAM": "57Y-11 REM", "ACRE": ".225", "LONGITUDE": -64.87243498, "LATITUDE": 18.3399809, "OBJECTID_1": 23673, "PARCEL_NO_": "105704060900", "Tax_Legal_": "57Y-12 REM.& 57Y-11A SMITH BAY 1,2&3 EAST END QTR", "Name": "CHESTERFIELD, JACKLYN", "Address": "PO Box 9461", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 261400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.60312323299999, "SHAPE_Area": 972.07646991199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364976.690700002014637, 256806.065200001001358 ], [ 365005.903800003230572, 256767.459800001233816 ], [ 365001.259499996900558, 256761.725499998778105 ], [ 364987.62049999833107, 256753.592300001531839 ], [ 364968.873800002038479, 256787.5636 ], [ 364968.872100003063679, 256787.761100001633167 ], [ 364965.38629999756813, 256802.401599999517202 ], [ 364971.86540000140667, 256804.548000000417233 ], [ 364976.690700002014637, 256806.065200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702081200", "MAP": "A9-324-T85", "PARCEL_NAM": "57Y-10", "ACRE": "0.19", "LONGITUDE": -64.87223335, "LATITUDE": 18.34013128, "OBJECTID_1": 22754, "PARCEL_NO_": "105702081200", "Tax_Legal_": "SMITH BAY 57Y-10 EAST END QUARTER", "Name": "ARCHIBALD, IVASON J.W. &BARBARA KING-ARCHIBALD", "Address": "Po Box 7574", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.06030097799999, "SHAPE_Area": 1394.0343863200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365005.903800003230572, 256767.459800001233816 ], [ 364976.690700002014637, 256806.065200001001358 ], [ 365004.837899997830391, 256814.950399998575449 ], [ 365008.054099999368191, 256816.032200001180172 ], [ 365034.750600002706051, 256805.9070999994874 ], [ 365032.347800001502037, 256803.98759999871254 ], [ 365026.766599997878075, 256796.553599998354912 ], [ 365010.0371999964118, 256772.563099998980761 ], [ 365005.903800003230572, 256767.459800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702034900", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-29", "ACRE": ".20", "LONGITUDE": -64.86768734, "LATITUDE": 18.34058505, "OBJECTID_1": 22516, "PARCEL_NO_": "105702034900", "Tax_Legal_": "SMITH BAY 100-29 EAST END QTR.", "Name": "GREEN, MURO A. & EILEEN", "Address": "1613 Bridge Mill Dr", "City": "Marietta", "State": "Georgia", "Zip": 30067, "Country": "United States", "Land_Value": 27300, "Improved_V": 151300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.694751177, "SHAPE_Area": 784.99827795199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365472.297700002789497, 256842.418800000101328 ], [ 365471.349399998784065, 256859.087400000542402 ], [ 365472.945799998939037, 256861.000300001353025 ], [ 365476.167400002479553, 256861.448899999260902 ], [ 365476.133299998939037, 256865.459399998188019 ], [ 365495.465000003576279, 256867.939599998295307 ], [ 365500.940700002014637, 256842.233300000429153 ], [ 365501.756999999284744, 256837.760899998247623 ], [ 365472.757399998605251, 256835.59010000154376 ], [ 365472.297700002789497, 256842.418800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702035700", "MAP": "D9-6333-T97", "PARCEL_NAM": "103ABC-1", "ACRE": ".16", "LONGITUDE": -64.86897838, "LATITUDE": 18.34130995, "OBJECTID_1": 22524, "PARCEL_NO_": "105702035700", "Tax_Legal_": "SMITH BAY 103ABC-1 EAST END QTR.", "Name": "CHRISTIAN, DAPHNE V", "Address": "PO Box 9681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25100, "Improved_V": 144000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.813638463, "SHAPE_Area": 731.64228838700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365337.560500003397465, 256945.722899999469519 ], [ 365361.928900003433228, 256943.326099999248981 ], [ 365360.70380000025034, 256914.494699999690056 ], [ 365333.148599997162819, 256917.427000001072884 ], [ 365336.074799999594688, 256930.807599999010563 ], [ 365337.619099996984005, 256938.841699998825788 ], [ 365337.560500003397465, 256945.722899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702034100", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-30", "ACRE": ".20", "LONGITUDE": -64.86850166000001, "LATITUDE": 18.34078396, "OBJECTID_1": 22508, "PARCEL_NO_": "105702034100", "Tax_Legal_": "SMITH BAY 100-30 EAST END QTR.", "Name": "MULRAIN, FLORENCE", "Address": "PO Box 10465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26000, "Improved_V": 97700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.98747671300001, "SHAPE_Area": 794.54290344699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365410.298600003123283, 256909.137699998915195 ], [ 365409.830700002610683, 256857.204100001603365 ], [ 365397.9983000010252, 256855.742899999022484 ], [ 365391.562200002372265, 256854.001400001347065 ], [ 365382.739500001072884, 256848.440799999982119 ], [ 365376.357299998402596, 256840.366999998688698 ], [ 365389.376199997961521, 256869.865499999374151 ], [ 365410.298600003123283, 256909.137699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036600", "MAP": "D9-6363-T98", "PARCEL_NAM": "103DF-4", "ACRE": null, "LONGITUDE": -64.86768164, "LATITUDE": 18.34085096, "OBJECTID_1": 22533, "PARCEL_NO_": "105702036600", "Tax_Legal_": "SMITH BAY 103DF-4 EASTEND QRT", "Name": "HENDERSON, CLIFTON", "Address": "PO Box 502321", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17900, "Improved_V": 89300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.633581960900003, "SHAPE_Area": 527.38213995299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365472.869199998676777, 256865.052499998360872 ], [ 365477.503499999642372, 256874.862300001084805 ], [ 365477.159500002861023, 256893.245099999010563 ], [ 365495.902099996805191, 256895.657600000500679 ], [ 365495.465000003576279, 256867.939599998295307 ], [ 365476.133299998939037, 256865.459399998188019 ], [ 365472.869199998676777, 256865.052499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036700", "MAP": "D9-6534-T99", "PARCEL_NAM": "103DF-5", "ACRE": ".16", "LONGITUDE": -64.8676768, "LATITUDE": 18.34113214, "OBJECTID_1": 22534, "PARCEL_NO_": "105702036700", "Tax_Legal_": "SMITH BAY 103DF-5 EASTEBD QRT", "Name": "JOSEPH, CLAYTON & BERNADETTE", "Address": "PO Box 11292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.945116961, "SHAPE_Area": 656.18780991599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365477.159500002861023, 256893.245099999010563 ], [ 365476.115699999034405, 256917.252000000327826 ], [ 365476.459600001573563, 256925.001299999654293 ], [ 365476.445600003004074, 256926.631999999284744 ], [ 365496.430200003087521, 256929.142400000244379 ], [ 365495.902099996805191, 256895.657600000500679 ], [ 365477.159500002861023, 256893.245099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702037300", "MAP": "D9-6534-T99", "PARCEL_NAM": "103DF-11", "ACRE": ".17", "LONGITUDE": -64.86772728, "LATITUDE": 18.34163277, "OBJECTID_1": 22540, "PARCEL_NO_": "105702037300", "Tax_Legal_": "SMITH BAY 103DF-11 #1,2,3, EASTEND QRT", "Name": "GEORGE, CONNIE", "Address": "PO Box 308113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20800, "Improved_V": 217900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.627945944, "SHAPE_Area": 961.70727052899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365461.877700001001358, 256951.377599999308586 ], [ 365463.908500000834465, 256979.416299998760223 ], [ 365472.308100000023842, 256978.782999999821186 ], [ 365480.519900001585484, 256977.833999998867512 ], [ 365485.650200001895428, 256977.470100000500679 ], [ 365485.990699999034405, 256985.627099998295307 ], [ 365497.308399997651577, 256984.831599999219179 ], [ 365496.817100003361702, 256953.677499998360872 ], [ 365461.877700001001358, 256951.377599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036800", "MAP": "D9-6534-T99", "PARCEL_NAM": "103DF-6", "ACRE": ".14", "LONGITUDE": -64.86790176, "LATITUDE": 18.34107254, "OBJECTID_1": 22535, "PARCEL_NO_": "105702036800", "Tax_Legal_": "103DF-6 ESTATE SMITH BAY # 1,2&3 EASTEND QTR.", "Name": "CASIMIR, PHILIP", "Address": "6885 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17900, "Improved_V": 243500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.15024845400001, "SHAPE_Area": 700.02136264900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365451.293499998748302, 256889.915800001472235 ], [ 365447.540100000798702, 256918.053399998694658 ], [ 365456.016500003635883, 256917.284000001847744 ], [ 365465.248400002717972, 256916.955200001597404 ], [ 365473.65820000320673, 256916.823300000280142 ], [ 365476.115699999034405, 256917.252000000327826 ], [ 365477.159500002861023, 256893.245099999010563 ], [ 365451.293499998748302, 256889.915800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036500", "MAP": "D9-6363-T98", "PARCEL_NAM": "103DF-3", "ACRE": null, "LONGITUDE": -64.86789482, "LATITUDE": 18.34083113, "OBJECTID_1": 22532, "PARCEL_NO_": "105702036500", "Tax_Legal_": "SMITH BAY 103DF-3 1,2&3 EASTEND QTR.", "Name": "PIERRE, MAVIS J", "Address": "PO Box 502412", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16700, "Improved_V": 11500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.449298227, "SHAPE_Area": 720.81537393200006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365451.293499998748302, 256889.915800001472235 ], [ 365477.159500002861023, 256893.245099999010563 ], [ 365477.503499999642372, 256874.862300001084805 ], [ 365472.869199998676777, 256865.052499998360872 ], [ 365449.819499999284744, 256862.179200001060963 ], [ 365449.709399998188019, 256862.165500000119209 ], [ 365451.293499998748302, 256889.915800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036400", "MAP": "D9-6363-T98", "PARCEL_NAM": "103DF-2", "ACRE": null, "LONGITUDE": -64.86810842, "LATITUDE": 18.34080579, "OBJECTID_1": 22531, "PARCEL_NO_": "105702036400", "Tax_Legal_": "SMITH BAY 103DF-2 #1,2&3 EASTEND QRT.", "Name": "CHARLES, MARY", "Address": "9900 Oswald Harris Ct", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19500, "Improved_V": 33700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.667661818499994, "SHAPE_Area": 520.75287742600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365432.346199996769428, 256887.477000001817942 ], [ 365451.293499998748302, 256889.915800001472235 ], [ 365449.709399998188019, 256862.165500000119209 ], [ 365430.799199998378754, 256859.808200001716614 ], [ 365432.346199996769428, 256887.477000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036900", "MAP": "D9-6534-T99", "PARCEL_NAM": "103DF-7", "ACRE": ".15", "LONGITUDE": -64.86811102, "LATITUDE": 18.34106414, "OBJECTID_1": 22536, "PARCEL_NO_": "105702036900", "Tax_Legal_": "SMITH BAY 103DF-7 EASTEND QRT", "Name": "HECTOR, CANUITN & MELANIE", "Address": "PO Box 6642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19500, "Improved_V": 18700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.324865306899994, "SHAPE_Area": 530.75368213599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365432.346199996769428, 256887.477000001817942 ], [ 365431.677400000393391, 256920.278999999165535 ], [ 365433.431900002062321, 256920.148699998855591 ], [ 365445.753899998962879, 256918.215500000864267 ], [ 365447.540100000798702, 256918.053399998694658 ], [ 365451.293499998748302, 256889.915800001472235 ], [ 365432.346199996769428, 256887.477000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036000", "MAP": "D9-6363-T98", "PARCEL_NAM": "103DF-1", "ACRE": null, "LONGITUDE": -64.86830036000001, "LATITUDE": 18.34078537, "OBJECTID_1": 22526, "PARCEL_NO_": "105702036000", "Tax_Legal_": "SMITH BAY 103DF-1 EAST END QTR.", "Name": "DANIEL, MATTHIAS", "Address": "2360 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026202, "Country": "United States", "Land_Value": 19700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.701623308600006, "SHAPE_Area": 592.93346625000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365432.346199996769428, 256887.477000001817942 ], [ 365430.799199998378754, 256859.808200001716614 ], [ 365418.13629999756813, 256858.229699999094009 ], [ 365409.830700002610683, 256857.204100001603365 ], [ 365410.077600002288818, 256884.610700000077486 ], [ 365432.346199996769428, 256887.477000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702037000", "MAP": "D9-6534-T99", "PARCEL_NAM": "103DF-8", "ACRE": ".15", "LONGITUDE": -64.86829045, "LATITUDE": 18.34105186, "OBJECTID_1": 22537, "PARCEL_NO_": "105702037000", "Tax_Legal_": "SMITH BAY 103DF-8 # 123 EASTEND QRT", "Name": "DANIEL, MATTHIAS", "Address": "2360 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22500, "Improved_V": 69500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.68163742199999, "SHAPE_Area": 689.81869285100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365431.677400000393391, 256920.278999999165535 ], [ 365432.346199996769428, 256887.477000001817942 ], [ 365410.077600002288818, 256884.610700000077486 ], [ 365410.298600003123283, 256909.137699998915195 ], [ 365417.630999997258186, 256917.542899999767542 ], [ 365420.84009999781847, 256919.469000000506639 ], [ 365426.043999999761581, 256920.697200000286102 ], [ 365431.677400000393391, 256920.278999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036300", "MAP": "D9-6534-T99", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86800565, "LATITUDE": 18.34122814, "OBJECTID_1": 22530, "PARCEL_NO_": "105702036300", "Tax_Legal_": "103 ABC & 103DF REM SMITH BAY 1,2&3 EAST END QTR", "Name": "DANIEL, MATTHIAS & CLEVESON", "Address": "2360 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.43810387100001, "SHAPE_Area": 353.99236581000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365426.259700000286102, 256930.105399999767542 ], [ 365427.423799999058247, 256927.232299998402596 ], [ 365433.176299996674061, 256926.058299999684095 ], [ 365451.659299999475479, 256923.158500000834465 ], [ 365463.760600000619888, 256923.058100000023842 ], [ 365466.012900002300739, 256923.485100001096725 ], [ 365467.643100000917912, 256924.722100000828505 ], [ 365468.445900000631809, 256926.767499998211861 ], [ 365476.445600003004074, 256926.631999999284744 ], [ 365476.459600001573563, 256925.001299999654293 ], [ 365476.115699999034405, 256917.252000000327826 ], [ 365473.65820000320673, 256916.823300000280142 ], [ 365465.248400002717972, 256916.955200001597404 ], [ 365456.016500003635883, 256917.284000001847744 ], [ 365445.753899998962879, 256918.215500000864267 ], [ 365433.431900002062321, 256920.148699998855591 ], [ 365426.043999999761581, 256920.697200000286102 ], [ 365420.84009999781847, 256919.469000000506639 ], [ 365423.233900003135204, 256922.443900000303984 ], [ 365426.259700000286102, 256930.105399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702037500", "MAP": "D9-6534-T99", "PARCEL_NAM": "103DF-13", "ACRE": ".16", "LONGITUDE": -64.86770816000001, "LATITUDE": 18.34194347, "OBJECTID_1": 22542, "PARCEL_NO_": "105702037500", "Tax_Legal_": "SMITH BAY 103DF-13 1,2,3 EASTEND QRT", "Name": "GEORGE, FITZ", "Address": "14AQ EST THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 183500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.732630245, "SHAPE_Area": 933.07825610800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365466.816399998962879, 256983.715900000184774 ], [ 365465.474399998784065, 256986.471000000834465 ], [ 365474.088200002908707, 257024.598900001496077 ], [ 365486.123400002717972, 257017.950699999928474 ], [ 365498.297200001776218, 257008.762200001627207 ], [ 365497.559199996292591, 257000.734600000083447 ], [ 365497.308399997651577, 256984.831599999219179 ], [ 365485.990699999034405, 256985.627099998295307 ], [ 365474.702799998223782, 256986.549899999052286 ], [ 365474.297899998724461, 256985.934900000691414 ], [ 365472.464400000870228, 256984.492199998348951 ], [ 365471.035899996757507, 256983.664599999785423 ], [ 365466.816399998962879, 256983.715900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702034200", "MAP": "D9-6736-T000", "PARCEL_NAM": "103DF-15", "ACRE": ".17", "LONGITUDE": -64.8682212, "LATITUDE": 18.34203819, "OBJECTID_1": 22509, "PARCEL_NO_": "105702034200", "Tax_Legal_": "103DF-15 SMITH BAY 1,2&3 EASTEND QTR", "Name": "BIBIANA BARON TRUST & ASHANIKA MADIR", "Address": "PO Box 532", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23400, "Improved_V": 190200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.398960257, "SHAPE_Area": 697.954209967 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365448.4425999969244, 257013.770100001245737 ], [ 365437.18469999730587, 256988.630300000309944 ], [ 365429.843299999833107, 256998.491700001060963 ], [ 365424.962300002574921, 257003.51799999922514 ], [ 365419.2820999994874, 257007.693300001323223 ], [ 365398.127400003373623, 257029.896099999547005 ], [ 365448.4425999969244, 257013.770100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702037100", "MAP": "D9-6534-T99", "PARCEL_NAM": "103DF-9", "ACRE": ".21", "LONGITUDE": -64.86805572, "LATITUDE": 18.34137483, "OBJECTID_1": 22538, "PARCEL_NO_": "105702037100", "Tax_Legal_": "SMITH BAY 103DF-9 #1,2,3 EASTEND QRT", "Name": "CHRISTIAN, DAPHANE", "Address": "PO Box 9681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.69367664799999, "SHAPE_Area": 890.70196086099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365461.877700001001358, 256951.377599999308586 ], [ 365461.564999997615814, 256923.076299998909235 ], [ 365451.659299999475479, 256923.158500000834465 ], [ 365433.176299996674061, 256926.058299999684095 ], [ 365427.423799999058247, 256927.232299998402596 ], [ 365426.259700000286102, 256930.105399999767542 ], [ 365435.59570000320673, 256953.744699999690056 ], [ 365461.877700001001358, 256951.377599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702037400", "MAP": "D9-6534-T99", "PARCEL_NAM": "103DF-12", "ACRE": ".17", "LONGITUDE": -64.86801313, "LATITUDE": 18.34163116, "OBJECTID_1": 22541, "PARCEL_NO_": "105702037400", "Tax_Legal_": "SMITH BAY 103DF-12 1,2,3 EASTEND QRT", "Name": "MATTHIAS, GEORGE", "Address": "PO Box 10711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.027673119, "SHAPE_Area": 702.85899889200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365463.908500000834465, 256979.416299998760223 ], [ 365461.877700001001358, 256951.377599999308586 ], [ 365435.59570000320673, 256953.744699999690056 ], [ 365435.863300003111362, 256954.422400001436472 ], [ 365438.183399997651577, 256966.051500000059605 ], [ 365437.718199998140335, 256976.569099999964237 ], [ 365439.687200002372265, 256980.135000001639128 ], [ 365442.347999997437, 256980.769299998879433 ], [ 365457.737300001084805, 256979.881599999964237 ], [ 365463.908500000834465, 256979.416299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702037200", "MAP": "D9-6534-T99", "PARCEL_NAM": "103DF-10", "ACRE": ".19", "LONGITUDE": -64.86774586, "LATITUDE": 18.34138802, "OBJECTID_1": 22539, "PARCEL_NO_": "105702037200", "Tax_Legal_": "SMITH BAY 103DF-10 # 1,2,3 EASTEND QRT", "Name": "TARA BACHAN RAMSINGH REVOCABLE TRUST", "Address": "6118 Tabor and Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.730487815, "SHAPE_Area": 896.97332780299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365461.564999997615814, 256923.076299998909235 ], [ 365461.877700001001358, 256951.377599999308586 ], [ 365496.817100003361702, 256953.677499998360872 ], [ 365496.430200003087521, 256929.142400000244379 ], [ 365476.445600003004074, 256926.631999999284744 ], [ 365468.445900000631809, 256926.767499998211861 ], [ 365467.643100000917912, 256924.722100000828505 ], [ 365466.012900002300739, 256923.485100001096725 ], [ 365463.760600000619888, 256923.058100000023842 ], [ 365461.564999997615814, 256923.076299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702037800", "MAP": "D9-6333-T97", "PARCEL_NAM": "103ABC-2", "ACRE": ".19", "LONGITUDE": -64.86872167, "LATITUDE": 18.34127184, "OBJECTID_1": 22544, "PARCEL_NO_": "105702037800", "Tax_Legal_": "SMITH BAY 103ABC-2 EASTEND QRT. 1,2,3", "Name": "BAILEY, GEOFFREY & GERMAINE", "Address": "PO Box 53", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.639490903, "SHAPE_Area": 778.94831474299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365361.928900003433228, 256943.326099999248981 ], [ 365386.069200001657009, 256940.663100000470877 ], [ 365383.472699999809265, 256917.5945999994874 ], [ 365406.051500000059605, 256914.655699998140335 ], [ 365401.718800000846386, 256910.129999998956919 ], [ 365360.70380000025034, 256914.494699999690056 ], [ 365361.928900003433228, 256943.326099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702038400", "MAP": "D9-6782-T000", "PARCEL_NAM": "103ABC-6", "ACRE": ".149", "LONGITUDE": -64.86893826, "LATITUDE": 18.34159723, "OBJECTID_1": 22550, "PARCEL_NO_": "105702038400", "Tax_Legal_": "SMITH BAY ESTATE 103ABC-6 1,2&3 EASTEND QTR", "Name": "CHARLES, TREVOR S. & DEBBIE", "Address": "PO Box 8653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.940799877, "SHAPE_Area": 778.00671192899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365372.506099998950958, 256968.797100000083447 ], [ 365364.9628000035882, 256947.887200001627207 ], [ 365337.523999996483326, 256950.000999998301268 ], [ 365337.347599998116493, 256970.714699998497963 ], [ 365336.901399999856949, 256977.519799999892712 ], [ 365372.506099998950958, 256968.797100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036300", "MAP": "D9-8219-T008", "PARCEL_NAM": "103ABC REM", "ACRE": "1.239", "LONGITUDE": -64.86868961, "LATITUDE": 18.34188241, "OBJECTID_1": 22530, "PARCEL_NO_": "105702036300", "Tax_Legal_": "103 ABC & 103DF REM SMITH BAY 1,2&3 EAST END QTR", "Name": "DANIEL, MATTHIAS & CLEVESON", "Address": "2360 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.219175017, "SHAPE_Area": 4754.7686456000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365431.551500000059605, 256963.257800001651049 ], [ 365396.681000001728535, 256962.874600000679493 ], [ 365336.901399999856949, 256977.519799999892712 ], [ 365336.420800000429153, 256984.850299999117851 ], [ 365325.552100002765656, 257030.146499998867512 ], [ 365351.402699999511242, 257024.658500000834465 ], [ 365367.561300002038479, 257020.991099998354912 ], [ 365382.103699997067451, 257017.732599999755621 ], [ 365399.023599997162819, 257019.348799999803305 ], [ 365415.295500002801418, 257002.383400000631809 ], [ 365423.419799998402596, 256995.272700000554323 ], [ 365431.579999998211861, 256983.940400000661612 ], [ 365431.749099999666214, 256964.098999999463558 ], [ 365431.551500000059605, 256963.257800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702038300", "MAP": "D9-6782-T000", "PARCEL_NAM": "103ABC-5", "ACRE": ".186", "LONGITUDE": -64.86872936, "LATITUDE": 18.34151606, "OBJECTID_1": 22549, "PARCEL_NO_": "105702038300", "Tax_Legal_": "103 ABC-5 ESTATE SMITH BAY", "Name": "MOISE, DAVIDSON & EUBERTINA", "Address": "PO Box 9045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 138200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.306078912, "SHAPE_Area": 724.774089581 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365396.681000001728535, 256962.874600000679493 ], [ 365386.069200001657009, 256940.663100000470877 ], [ 365361.928900003433228, 256943.326099999248981 ], [ 365337.560500003397465, 256945.722899999469519 ], [ 365337.523999996483326, 256950.000999998301268 ], [ 365364.9628000035882, 256947.887200001627207 ], [ 365372.506099998950958, 256968.797100000083447 ], [ 365396.681000001728535, 256962.874600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702038000", "MAP": "D9-6534-T99", "PARCEL_NAM": "103ABC-4", "ACRE": ".18", "LONGITUDE": -64.86839749000001, "LATITUDE": 18.34150176, "OBJECTID_1": 22546, "PARCEL_NO_": "105702038000", "Tax_Legal_": "SMITH BAY 103ABC-4 1,2,3 EASTEND QRT", "Name": "MONDESIRE, MATTHEW & ANDREA", "Address": "BOX 50-25-06", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 90900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.18321569, "SHAPE_Area": 831.42626951900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365386.069200001657009, 256940.663100000470877 ], [ 365396.681000001728535, 256962.874600000679493 ], [ 365431.551500000059605, 256963.257800001651049 ], [ 365429.414599999785423, 256954.158500000834465 ], [ 365423.691100001335144, 256939.628499999642372 ], [ 365418.567199997603893, 256940.663199998438358 ], [ 365411.864799998700619, 256940.420800000429153 ], [ 365386.069200001657009, 256940.663100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702037900", "MAP": "D9-6333-T97", "PARCEL_NAM": "103ABC-3", "ACRE": ".17", "LONGITUDE": -64.8684766, "LATITUDE": 18.34129881, "OBJECTID_1": 22545, "PARCEL_NO_": "105702037900", "Tax_Legal_": "SMITH BAY 103ABC-3 1,2,3 EASTEND QRT", "Name": "ALEXANDER, MARCELLUS & ISABEL", "Address": "6260 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23900, "Improved_V": 28400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.024994437, "SHAPE_Area": 807.51473814799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365386.069200001657009, 256940.663100000470877 ], [ 365411.864799998700619, 256940.420800000429153 ], [ 365418.567199997603893, 256940.663199998438358 ], [ 365423.691100001335144, 256939.628499999642372 ], [ 365419.153800003230572, 256928.109999999403954 ], [ 365415.16889999806881, 256922.589000001549721 ], [ 365409.560699999332428, 256918.321199998259544 ], [ 365406.051500000059605, 256914.655699998140335 ], [ 365383.472699999809265, 256917.5945999994874 ], [ 365386.069200001657009, 256940.663100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036300", "MAP": "D9-6736-T000", "PARCEL_NAM": "103DF REM", "ACRE": ".04", "LONGITUDE": -64.86804495, "LATITUDE": 18.34187367, "OBJECTID_1": 22530, "PARCEL_NO_": "105702036300", "Tax_Legal_": "103 ABC & 103DF REM SMITH BAY 1,2&3 EAST END QTR", "Name": "DANIEL, MATTHIAS & CLEVESON", "Address": "2360 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.381948838100001, "SHAPE_Area": 235.56719291300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365444.086099997162819, 257004.041700001806021 ], [ 365456.052599996328354, 256997.6385000012815 ], [ 365451.345100000500679, 256983.903999999165535 ], [ 365440.665500000119209, 256985.647399999201298 ], [ 365437.18469999730587, 256988.630300000309944 ], [ 365444.086099997162819, 257004.041700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702036300", "MAP": "D9-6534-T99", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8678828, "LATITUDE": 18.34177315, "OBJECTID_1": 22530, "PARCEL_NO_": "105702036300", "Tax_Legal_": "103 ABC & 103DF REM SMITH BAY 1,2&3 EAST END QTR", "Name": "DANIEL, MATTHIAS & CLEVESON", "Address": "2360 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.625671928, "SHAPE_Area": 267.79025212099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365437.18469999730587, 256988.630300000309944 ], [ 365440.665500000119209, 256985.647399999201298 ], [ 365451.345100000500679, 256983.903999999165535 ], [ 365471.035899996757507, 256983.664599999785423 ], [ 365472.464400000870228, 256984.492199998348951 ], [ 365474.297899998724461, 256985.934900000691414 ], [ 365474.702799998223782, 256986.549899999052286 ], [ 365485.990699999034405, 256985.627099998295307 ], [ 365485.650200001895428, 256977.470100000500679 ], [ 365480.519900001585484, 256977.833999998867512 ], [ 365472.308100000023842, 256978.782999999821186 ], [ 365457.737300001084805, 256979.881599999964237 ], [ 365442.347999997437, 256980.769299998879433 ], [ 365439.687200002372265, 256980.135000001639128 ], [ 365437.718199998140335, 256976.569099999964237 ], [ 365437.18469999730587, 256988.630300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702038600", "MAP": "D9-6736-T000", "PARCEL_NAM": "103DF-14", "ACRE": ".17", "LONGITUDE": -64.86791558, "LATITUDE": 18.34201068, "OBJECTID_1": 22552, "PARCEL_NO_": "105702038600", "Tax_Legal_": "SMITH BAY ESTATE 103DF-14 1,2&3 EASTEND QTR", "Name": "RYAN, ROBERT & SAMUEL, CYLINDA", "Address": "PO Box 1393", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23300, "Improved_V": 258400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.053560038, "SHAPE_Area": 843.82358878699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365451.345100000500679, 256983.903999999165535 ], [ 365456.052599996328354, 256997.6385000012815 ], [ 365444.086099997162819, 257004.041700001806021 ], [ 365448.4425999969244, 257013.770100001245737 ], [ 365459.38740000128746, 257032.719500001519918 ], [ 365474.088200002908707, 257024.598900001496077 ], [ 365465.474399998784065, 256986.471000000834465 ], [ 365466.816399998962879, 256983.715900000184774 ], [ 365451.345100000500679, 256983.903999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702033600", "MAP": "D9-3864-T97", "PARCEL_NAM": "121", "ACRE": "0.66", "LONGITUDE": -64.86865225, "LATITUDE": 18.34265268, "OBJECTID_1": 22503, "PARCEL_NO_": "105702033600", "Tax_Legal_": "SMITH BAY #122 EAST END QTR", "Name": "GABRIEL, RAMON", "Address": "PO Box 186", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040186, "Country": "United States", "Land_Value": 82500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.96537759799998, "SHAPE_Area": 2442.9973131299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365413.770599998533726, 257120.15430000051856 ], [ 365412.687100000679493, 257120.026799999177456 ], [ 365368.109600000083447, 257020.868200000375509 ], [ 365367.561300002038479, 257020.991099998354912 ], [ 365351.402699999511242, 257024.658500000834465 ], [ 365362.424900002777576, 257055.990600001066923 ], [ 365367.142300002276897, 257070.172499999403954 ], [ 365373.44709999859333, 257087.322700001299381 ], [ 365378.160899996757507, 257101.926699999719858 ], [ 365383.661300003528595, 257118.859200000762939 ], [ 365388.378700003027916, 257133.04109999909997 ], [ 365407.820100001990795, 257122.645500000566244 ], [ 365413.770599998533726, 257120.15430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021500", "MAP": "A9-527-T98", "PARCEL_NAM": "4CA", "ACRE": "1.34", "LONGITUDE": -64.86666408000001, "LATITUDE": 18.34499415, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 364.36462808, "SHAPE_Area": 5284.5526959400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365639.793399997055531, 257364.170400001108646 ], [ 365621.740599997341633, 257308.572000000625849 ], [ 365611.297200001776218, 257307.048900000751019 ], [ 365594.951399996876717, 257304.770899999886751 ], [ 365566.75280000269413, 257301.312399998307228 ], [ 365546.63910000026226, 257298.83049999922514 ], [ 365548.543200001120567, 257303.127500001341105 ], [ 365566.006700001657009, 257350.424300000071526 ], [ 365553.924699999392033, 257348.987300001084805 ], [ 365531.873800002038479, 257346.364500001072884 ], [ 365531.846000000834465, 257346.638999998569489 ], [ 365531.416000001132488, 257350.878899998962879 ], [ 365554.968699999153614, 257355.796000000089407 ], [ 365550.205200001597404, 257376.241900000721216 ], [ 365557.789200000464916, 257377.759199999272823 ], [ 365565.08839999884367, 257378.124200001358986 ], [ 365570.927799999713898, 257377.637499999254942 ], [ 365578.465700000524521, 257376.108300000429153 ], [ 365589.297499999403954, 257373.501299999654293 ], [ 365601.097999997437, 257371.311500001698732 ], [ 365610.465300001204014, 257369.608399998396635 ], [ 365623.270900003612041, 257366.925599999725819 ], [ 365628.59179999679327, 257366.080400001257658 ], [ 365639.793399997055531, 257364.170400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702025500", "MAP": "D9-6960-T001", "PARCEL_NAM": "4H-2", "ACRE": ".26", "LONGITUDE": -64.86773482, "LATITUDE": 18.34468256, "OBJECTID_1": 22453, "PARCEL_NO_": "105702025500", "Tax_Legal_": "4H-2 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HILARE, THOMAS", "Address": "57 Maria St", "City": "Rochester", "State": "New York", "Zip": 14621, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.58249794, "SHAPE_Area": 1214.9646850199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365447.971500001847744, 257277.402899999171495 ], [ 365446.574199996888638, 257285.110500000417233 ], [ 365448.347499996423721, 257287.419100001454353 ], [ 365454.729699999094009, 257295.492899999022484 ], [ 365466.644199997186661, 257311.465300001204014 ], [ 365482.676600001752377, 257332.737399999052286 ], [ 365498.526399999856949, 257308.933600001037121 ], [ 365500.817699998617172, 257295.216099999845028 ], [ 365474.799199998378754, 257291.4864999987185 ], [ 365455.506099998950958, 257285.340999998152256 ], [ 365447.971500001847744, 257277.402899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702025400", "MAP": "D9-6960-T001", "PARCEL_NAM": "4H-1", "ACRE": ".27", "LONGITUDE": -64.86746636, "LATITUDE": 18.34481603, "OBJECTID_1": 22452, "PARCEL_NO_": "105702025400", "Tax_Legal_": "4H-1 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HILARE, PENNY", "Address": "6014 SMITH BAY 4H", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.15999793500001, "SHAPE_Area": 1145.72409885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365509.885899998247623, 257342.332899998873472 ], [ 365526.018399998545647, 257299.4222999997437 ], [ 365506.393799997866154, 257296.015399999916553 ], [ 365500.817699998617172, 257295.216099999845028 ], [ 365498.526399999856949, 257308.933600001037121 ], [ 365482.676600001752377, 257332.737399999052286 ], [ 365486.705200001597404, 257338.082499999552965 ], [ 365509.885899998247623, 257342.332899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021600", "MAP": "D9-2130-T82", "PARCEL_NAM": "4H REM", "ACRE": "0.60", "LONGITUDE": -64.86715844, "LATITUDE": 18.34488618, "OBJECTID_1": 22381, "PARCEL_NO_": "105702021600", "Tax_Legal_": "SMITH BAY 4H EAST END QUARTER", "Name": "HILAIRE, A. & P. & G. & V. & C. & K. & T. JR", "Address": "6014 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 153500, "Improved_V": 74500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.82261781099999, "SHAPE_Area": 1791.8297190799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365545.732299998402596, 257302.8445999994874 ], [ 365526.018399998545647, 257299.4222999997437 ], [ 365509.885899998247623, 257342.332899998873472 ], [ 365531.873800002038479, 257346.364500001072884 ], [ 365553.924699999392033, 257348.987300001084805 ], [ 365566.006700001657009, 257350.424300000071526 ], [ 365548.543200001120567, 257303.127500001341105 ], [ 365547.789899997413158, 257303.051699999719858 ], [ 365545.732299998402596, 257302.8445999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702025600", "MAP": "D9-6960-T001", "PARCEL_NAM": "4H-3", "ACRE": ".23", "LONGITUDE": -64.86821626, "LATITUDE": 18.3441172, "OBJECTID_1": 22454, "PARCEL_NO_": "105702025600", "Tax_Legal_": "4H-3 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HILARE, GERARD", "Address": "6014 SMITH BAY 4H", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.79466795499999, "SHAPE_Area": 1187.2092617200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365437.265600003302097, 257215.347899999469519 ], [ 365399.91889999806881, 257223.656899999827147 ], [ 365404.489500001072884, 257229.642700001597404 ], [ 365446.574199996888638, 257285.110500000417233 ], [ 365447.971500001847744, 257277.402899999171495 ], [ 365445.458700001239777, 257274.755499999970198 ], [ 365442.507399998605251, 257267.240499999374151 ], [ 365438.518799997866154, 257255.517299998551607 ], [ 365436.018799997866154, 257240.35020000115037 ], [ 365436.883699998259544, 257216.86769999936223 ], [ 365437.265600003302097, 257215.347899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702022900", "MAP": "G9-2111-T72", "PARCEL_NAM": "4H-A", "ACRE": "0.40", "LONGITUDE": -64.86879335, "LATITUDE": 18.3434716, "OBJECTID_1": 22393, "PARCEL_NO_": "105702022900", "Tax_Legal_": "SMITH BAY 4 HA EAST END QTR", "Name": "ROBERTS, SHENEKE & WALLACE, G", "Address": "6030 SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62400, "Improved_V": 17100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.1289534183, "SHAPE_Area": 193.08026515200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365375.369400002062321, 257172.125599998980761 ], [ 365366.51410000026226, 257158.97690000012517 ], [ 365356.64299999922514, 257166.767400000244379 ], [ 365366.210799999535084, 257179.511300001293421 ], [ 365375.369400002062321, 257172.125599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702022200", "MAP": "F9-530-T60", "PARCEL_NAM": "4B", "ACRE": ".25", "LONGITUDE": -64.86837458, "LATITUDE": 18.3436315, "OBJECTID_1": 22386, "PARCEL_NO_": "105702022200", "Tax_Legal_": "SMITH BAY 4B EAST END QUARTER", "Name": "HILAIRE, AILEEN J. & CARTER, CAROL", "Address": "6014 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32500, "Improved_V": 62900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.57499333499999, "SHAPE_Area": 1027.33088552 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365431.989500001072884, 257188.452300000935793 ], [ 365413.216600000858307, 257163.741099998354912 ], [ 365388.525100000202656, 257186.660500001162291 ], [ 365407.09910000115633, 257210.761199999600649 ], [ 365431.989500001072884, 257188.452300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702025700", "MAP": "D9-6960-T001", "PARCEL_NAM": "4H-4", "ACRE": ".44", "LONGITUDE": -64.8684018, "LATITUDE": 18.34376654, "OBJECTID_1": 22455, "PARCEL_NO_": "105702025700", "Tax_Legal_": "4H-4 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HILARE, GERARD", "Address": "6014 SMITH BAY 4H", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.314342348, "SHAPE_Area": 1431.5734674400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365443.450199998915195, 257190.735800001770258 ], [ 365431.989500001072884, 257188.452300000935793 ], [ 365407.09910000115633, 257210.761199999600649 ], [ 365388.525100000202656, 257186.660500001162291 ], [ 365380.215300001204014, 257179.690999999642372 ], [ 365375.369400002062321, 257172.125599998980761 ], [ 365366.210799999535084, 257179.511300001293421 ], [ 365399.91889999806881, 257223.656899999827147 ], [ 365437.265600003302097, 257215.347899999469519 ], [ 365443.450199998915195, 257190.735800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702026000", "MAP": "G9-1267-T69", "PARCEL_NAM": "4H-C", "ACRE": null, "LONGITUDE": -64.86852145, "LATITUDE": 18.34332898, "OBJECTID_1": 22458, "PARCEL_NO_": "105702026000", "Tax_Legal_": "4H-C SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HILARE, KIN", "Address": "13643 Rundell Dr", "City": "Moreno Valley", "State": "California", "Zip": 92553, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.59869465700001, "SHAPE_Area": 1249.84832345 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365380.215300001204014, 257179.690999999642372 ], [ 365424.401900000870228, 257144.764199998229742 ], [ 365414.689999997615814, 257129.671799998730421 ], [ 365388.287000000476837, 257143.806099999696016 ], [ 365368.82039999961853, 257157.156800001859665 ], [ 365366.51410000026226, 257158.97690000012517 ], [ 365375.369400002062321, 257172.125599998980761 ], [ 365380.215300001204014, 257179.690999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702025900", "MAP": "D9-6960-T001", "PARCEL_NAM": "4H-6", "ACRE": ".29", "LONGITUDE": -64.86806883, "LATITUDE": 18.34313729, "OBJECTID_1": 22457, "PARCEL_NO_": "105702025900", "Tax_Legal_": "4H-6 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "HILARE, VICTOR", "Address": "16715 S Cuzco Ave", "City": "Compton", "State": "California", "Zip": 90221, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.89954059799999, "SHAPE_Area": 1180.81424595 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365424.401900000870228, 257144.764199998229742 ], [ 365456.67620000243187, 257150.864100001752377 ], [ 365461.321400001645088, 257138.120299998670816 ], [ 365464.681699998676777, 257126.339899998158216 ], [ 365464.096900001168251, 257121.391100000590086 ], [ 365458.684299997985363, 257115.251400001347065 ], [ 365457.080700002610683, 257114.182799998670816 ], [ 365435.250900000333786, 257120.970199998468161 ], [ 365416.639200001955032, 257128.628299999982119 ], [ 365414.689999997615814, 257129.671799998730421 ], [ 365424.401900000870228, 257144.764199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702025800", "MAP": "D9-6960-T001", "PARCEL_NAM": "4H-5", "ACRE": ".40", "LONGITUDE": -64.86822216, "LATITUDE": 18.3434399, "OBJECTID_1": 22456, "PARCEL_NO_": "105702025800", "Tax_Legal_": "4H-5 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "CARTER, CAROL HILARE", "Address": "192 W Ypsilanti Ave", "City": "Pontiac", "State": "Michigan", "Zip": 48340, "Country": "United States", "Land_Value": 56100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.45131859599999, "SHAPE_Area": 1633.4077842500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365456.67620000243187, 257150.864100001752377 ], [ 365424.401900000870228, 257144.764199998229742 ], [ 365380.215300001204014, 257179.690999999642372 ], [ 365388.525100000202656, 257186.660500001162291 ], [ 365413.216600000858307, 257163.741099998354912 ], [ 365431.989500001072884, 257188.452300000935793 ], [ 365443.450199998915195, 257190.735800001770258 ], [ 365449.116499997675419, 257171.60359999909997 ], [ 365456.67620000243187, 257150.864100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105702024600", "MAP": "A9-494-T96", "PARCEL_NAM": "B-2", "ACRE": ".10", "LONGITUDE": -64.86760883, "LATITUDE": 18.34797286, "OBJECTID_1": 22444, "PARCEL_NO_": "105702024600", "Tax_Legal_": "COKI POINT B-2 EAST END", "Name": "ESTATE OF JOSEPHINE BELL & HEI", "Address": "COKI POINT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.989771326, "SHAPE_Area": 602.52456855200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365503.817699998617172, 257685.170200001448393 ], [ 365512.268899999558926, 257671.957499999552965 ], [ 365505.546499997377396, 257672.288600001484156 ], [ 365501.520300000905991, 257671.622400000691414 ], [ 365494.30120000243187, 257667.130300000309944 ], [ 365488.694799996912479, 257662.651500001549721 ], [ 365482.341399997472763, 257651.200399998575449 ], [ 365462.079300001263618, 257663.278000000864267 ], [ 365490.17620000243187, 257678.073399998247623 ], [ 365503.817699998617172, 257685.170200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701067300", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-89", "ACRE": "0.23", "LONGITUDE": -64.88006996, "LATITUDE": 18.34279321, "OBJECTID_1": 22232, "PARCEL_NO_": "105701067300", "Tax_Legal_": "173B-89 ANNAS RETREAT NEW QUARTER", "Name": "BEDFORD, ROSALIE & CALEB", "Address": "PO Box 306685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28900, "Improved_V": 308300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.361786341, "SHAPE_Area": 1069.1404790399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364185.311999998986721, 257091.529699999839067 ], [ 364198.714199997484684, 257073.526200000196695 ], [ 364190.655100002884865, 257069.62049999833107 ], [ 364174.593599997460842, 257061.889699999243021 ], [ 364164.809900000691414, 257074.47520000115037 ], [ 364151.768700003623962, 257090.833799999207258 ], [ 364156.586800001561642, 257093.195300001651049 ], [ 364161.390500001609325, 257097.245299998670816 ], [ 364168.573600001633167, 257105.958999998867512 ], [ 364171.004000000655651, 257110.75 ], [ 364185.311999998986721, 257091.529699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066100", "MAP": "C9-274-T81", "PARCEL_NAM": "173B-88", "ACRE": null, "LONGITUDE": -64.87958835000001, "LATITUDE": 18.34247624, "OBJECTID_1": 22220, "PARCEL_NO_": "105701066100", "Tax_Legal_": "ANNAS RETREAT 173B-88 NEW QUARTER", "Name": "HEARTS IN SERVICE ASSOCIATION INC", "Address": "PO BOX 10578", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 190400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.76287185800001, "SHAPE_Area": 2336.0098696199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364249.517700001597404, 257069.891199998557568 ], [ 364249.826999999582767, 257033.58559999987483 ], [ 364249.848399996757507, 257031.068199999630451 ], [ 364244.321005003526807, 257027.307784297707258 ], [ 364239.106799997389317, 257023.1239 ], [ 364237.251749264891259, 257021.482610718579963 ], [ 364235.140626869047992, 257020.187154831626685 ], [ 364232.837152613617945, 257019.27663295934326 ], [ 364230.410852040105965, 257018.778527295653475 ], [ 364227.934957944846246, 257018.707872115803184 ], [ 364225.484200000762939, 257019.066799998283386 ], [ 364221.730099998414516, 257018.790199998766184 ], [ 364216.874300003051758, 257020.861400000751019 ], [ 364213.623800002038479, 257023.790100000798702 ], [ 364212.794100001454353, 257026.527499999850988 ], [ 364211.16889999806881, 257027.991900000721216 ], [ 364207.06360000371933, 257036.613099999725819 ], [ 364203.755699999630451, 257046.296399999409914 ], [ 364202.89360000193119, 257052.833200000226498 ], [ 364204.48650000244379, 257055.168299999088049 ], [ 364203.622599996626377, 257061.916200000792742 ], [ 364201.99379999935627, 257063.802700001746416 ], [ 364198.754199996590614, 257065.464899998158216 ], [ 364193.113600000739098, 257064.996599998325109 ], [ 364190.655100002884865, 257069.62049999833107 ], [ 364198.714199997484684, 257073.526200000196695 ], [ 364249.417999997735023, 257073.412999998778105 ], [ 364249.517700001597404, 257069.891199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066100", "MAP": "D9-8197-T008", "PARCEL_NAM": "173B-88-C", "ACRE": ".42", "LONGITUDE": -64.87956824, "LATITUDE": 18.34287044, "OBJECTID_1": 22220, "PARCEL_NO_": "105701066100", "Tax_Legal_": "ANNAS RETREAT 173B-88 NEW QUARTER", "Name": "HEARTS IN SERVICE ASSOCIATION INC", "Address": "PO BOX 10578", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 190400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.67257395600001, "SHAPE_Area": 1716.25380036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364198.714199997484684, 257073.526200000196695 ], [ 364221.181000001728535, 257121.855500001460314 ], [ 364237.041799999773502, 257114.540899999439716 ], [ 364244.320200003683567, 257112.067400000989437 ], [ 364248.36429999768734, 257110.622800000011921 ], [ 364249.417999997735023, 257073.412999998778105 ], [ 364198.714199997484684, 257073.526200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066100", "MAP": "D9-8197-T008", "PARCEL_NAM": "173B-88-A", "ACRE": ".29", "LONGITUDE": -64.87999336, "LATITUDE": 18.34319474, "OBJECTID_1": 22220, "PARCEL_NO_": "105701066100", "Tax_Legal_": "ANNAS RETREAT 173B-88 NEW QUARTER", "Name": "HEARTS IN SERVICE ASSOCIATION INC", "Address": "PO BOX 10578", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 190400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.56344079799999, "SHAPE_Area": 1045.50330594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364202.183600001037121, 257132.475000001490116 ], [ 364182.480999998748302, 257095.332699999213219 ], [ 364171.004000000655651, 257110.75 ], [ 364174.917999997735023, 257118.465399999171495 ], [ 364175.686499997973442, 257122.904699999839067 ], [ 364174.777699999511242, 257134.92960000038147 ], [ 364171.4391999989748, 257148.201099999248981 ], [ 364169.810400001704693, 257150.087600000202656 ], [ 364168.980700001120567, 257152.825100000947714 ], [ 364165.715899996459484, 257157.442400000989437 ], [ 364156.761900000274181, 257167.290500000119209 ], [ 364159.177199997007847, 257167.732500001788139 ], [ 364197.347300000488758, 257135.958700001239777 ], [ 364202.183600001037121, 257132.475000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066100", "MAP": "D9-8197-T008", "PARCEL_NAM": "173B-88-B", "ACRE": ".25", "LONGITUDE": -64.87981934, "LATITUDE": 18.3429802, "OBJECTID_1": 22220, "PARCEL_NO_": "105701066100", "Tax_Legal_": "ANNAS RETREAT 173B-88 NEW QUARTER", "Name": "HEARTS IN SERVICE ASSOCIATION INC", "Address": "PO BOX 10578", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 190400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.33130956900001, "SHAPE_Area": 1087.4193691600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364221.181000001728535, 257121.855500001460314 ], [ 364198.714199997484684, 257073.526200000196695 ], [ 364185.311999998986721, 257091.529699999839067 ], [ 364182.480999998748302, 257095.332699999213219 ], [ 364202.183600001037121, 257132.475000001490116 ], [ 364205.460699997842312, 257130.114399999380112 ], [ 364216.803000003099442, 257123.874499998986721 ], [ 364221.181000001728535, 257121.855500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602031000", "MAP": "G9-394-280", "PARCEL_NAM": "394-280", "ACRE": ".219", "LONGITUDE": -64.89025534, "LATITUDE": 18.34822088, "OBJECTID_1": 21109, "PARCEL_NO_": "105602031000", "Tax_Legal_": "394-280 ANNAS RETREAT NEW QTR", "Name": "ISLAND DEV. & ASSOC. INC.", "Address": "P,.O. BOX 4906", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.25140887500001, "SHAPE_Area": 1080.17762651 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363064.91780000180006, 257676.29450000077486 ], [ 363068.665799997746944, 257678.070700000971556 ], [ 363076.802699998021126, 257681.926899999380112 ], [ 363105.708700001239777, 257695.625999998301268 ], [ 363107.224299997091293, 257693.611600000411272 ], [ 363110.489100001752377, 257688.994300000369549 ], [ 363118.615199998021126, 257681.672499999403954 ], [ 363091.437899999320507, 257653.585700001567602 ], [ 363080.065099999308586, 257663.414099998772144 ], [ 363066.256999999284744, 257675.122299998998642 ], [ 363064.91780000180006, 257676.29450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701063600", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-15", "ACRE": "0.23", "LONGITUDE": -64.87955421, "LATITUDE": 18.34080091, "OBJECTID_1": 22196, "PARCEL_NO_": "105701063600", "Tax_Legal_": "ANNAS RETREAT 173B-15 NEW QTR.", "Name": "FRANCIS, STEPHE C. & ADALINA H", "Address": "PO Box 12432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30500, "Improved_V": 268200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.173180226, "SHAPE_Area": 848.95977588300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364251.281900003552437, 256862.656500000506639 ], [ 364223.475199997425079, 256841.054299999028444 ], [ 364219.979400001466274, 256845.679200001060963 ], [ 364218.325400002300739, 256850.520799998193979 ], [ 364218.237300001084805, 256860.863600000739098 ], [ 364220.562700003385544, 256871.859499998390675 ], [ 364228.476599998772144, 256889.445099998265505 ], [ 364251.281900003552437, 256862.656500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701047000", "MAP": "D9-7889-T006", "PARCEL_NAM": "1-1A REM", "ACRE": ".24", "LONGITUDE": -64.88145901, "LATITUDE": 18.34229593, "OBJECTID_1": 22097, "PARCEL_NO_": "105701047000", "Tax_Legal_": "1-1A REM ANNAS RETREAT NO.1 NEW QTR", "Name": "OPHELIA PEMBERTON THOMAS TRUST", "Address": "PO BOX 6444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32900, "Improved_V": 72500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.857900519, "SHAPE_Area": 624.05583965699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364009.604099996387959, 257032.054000001400709 ], [ 364031.215599998831749, 257043.617600001394749 ], [ 364047.514499999582767, 257023.486000001430511 ], [ 364025.841099999845028, 257011.909600000828505 ], [ 364009.604099996387959, 257032.054000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701014200", "MAP": "D9-9140-T016", "PARCEL_NAM": "15-8", "ACRE": "0.55", "LONGITUDE": -64.88209947, "LATITUDE": 18.34777206, "OBJECTID_1": 21874, "PARCEL_NO_": "105701014200", "Tax_Legal_": "15 ANNAS RETREAT NEW QTR", "Name": "VALLEY VIEW PROPERTIES INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 252800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.55212278299999, "SHAPE_Area": 2461.1310457200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363985.147299997508526, 257631.856300000101328 ], [ 363985.012199997901917, 257631.640099998563528 ], [ 363956.713299997150898, 257596.915500000119209 ], [ 363937.818599998950958, 257611.013999998569489 ], [ 363922.699500001966953, 257620.849300000816584 ], [ 363926.615099996328354, 257626.462900001555681 ], [ 363932.396499998867512, 257634.751200001686811 ], [ 363959.237199999392033, 257676.251299999654293 ], [ 363962.973600000143051, 257671.062399998307228 ], [ 363968.689699999988079, 257662.665500000119209 ], [ 363970.338299997150898, 257658.457100000232458 ], [ 363985.147299997508526, 257631.856300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701010100", "MAP": "D9-608-T66", "PARCEL_NAM": "14-8", "ACRE": ".58", "LONGITUDE": -64.88259376000001, "LATITUDE": 18.34822695, "OBJECTID_1": 21837, "PARCEL_NO_": "105701010100", "Tax_Legal_": "14-8 ESTATE ANNAS RETREAT\nNEW QTR.", "Name": "Jean Willy Victor and Marie Meuze St. Aime", "Address": "PO BOX 502624", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 97200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.358346329, "SHAPE_Area": 2304.5066141900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363899.312200002372265, 257649.633900001645088 ], [ 363895.431000001728535, 257644.253499999642372 ], [ 363871.726999998092651, 257665.252700001001358 ], [ 363870.229900002479553, 257666.498599998652935 ], [ 363874.346000000834465, 257672.247299998998642 ], [ 363908.915299996733665, 257720.528400000184774 ], [ 363923.932599999010563, 257710.42850000038743 ], [ 363932.979900002479553, 257704.523800000548363 ], [ 363934.473999999463558, 257703.548700001090765 ], [ 363936.709600001573563, 257701.476799998432398 ], [ 363899.312200002372265, 257649.633900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701010200", "MAP": "F9-1282-T63", "PARCEL_NAM": "14-4", "ACRE": ".57", "LONGITUDE": -64.88286356, "LATITUDE": 18.34785074, "OBJECTID_1": 21838, "PARCEL_NO_": "105701010200", "Tax_Legal_": "14-4 ANNAS RETREAT NEW QTR", "Name": "LETTSOME, RUDEL & MARTHA", "Address": "PO Box 503353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 96100, "Improved_V": 4200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.196246884, "SHAPE_Area": 2334.7998608500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363836.853299997746944, 257647.074099998921156 ], [ 363857.136900000274181, 257677.394299998879433 ], [ 363871.726999998092651, 257665.252700001001358 ], [ 363895.431000001728535, 257644.253499999642372 ], [ 363913.296999998390675, 257630.427200000733137 ], [ 363912.47070000320673, 257629.158100001513958 ], [ 363905.366899996995926, 257618.0287000015378 ], [ 363898.233999997377396, 257606.769499998539686 ], [ 363836.853299997746944, 257647.074099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701010300", "MAP": "D9-608-T66", "PARCEL_NAM": "14-9", "ACRE": ".58", "LONGITUDE": -64.88235533, "LATITUDE": 18.34802182, "OBJECTID_1": 21839, "PARCEL_NO_": "105701010300", "Tax_Legal_": "ANNAS RETREAT 14-9 NEW QUARTER", "Name": "VICTOR, JEAN AMOND & JEAN WILLY& NICENA OTILIEN", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76800, "Improved_V": 240200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.112765631, "SHAPE_Area": 2372.31810339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363912.47070000320673, 257629.158100001513958 ], [ 363913.296999998390675, 257630.427200000733137 ], [ 363895.431000001728535, 257644.253499999642372 ], [ 363899.312200002372265, 257649.633900001645088 ], [ 363936.709600001573563, 257701.476799998432398 ], [ 363942.601800002157688, 257696.015799999237061 ], [ 363954.813400000333786, 257682.39469999819994 ], [ 363959.237199999392033, 257676.251299999654293 ], [ 363932.396499998867512, 257634.751200001686811 ], [ 363922.699500001966953, 257620.849300000816584 ], [ 363912.47070000320673, 257629.158100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701014200", "MAP": "D9-8374-T009", "PARCEL_NAM": "15-6 ROW", "ACRE": ".49", "LONGITUDE": -64.88219375, "LATITUDE": 18.34718835, "OBJECTID_1": 21874, "PARCEL_NO_": "105701014200", "Tax_Legal_": "15 ANNAS RETREAT NEW QTR", "Name": "VALLEY VIEW PROPERTIES INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 252800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 436.058078873, "SHAPE_Area": 1599.69518118 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363973.992600001394749, 257513.465700000524521 ], [ 363972.259499996900558, 257517.839800000190735 ], [ 363969.151100002229214, 257518.525100000202656 ], [ 363967.40820000320673, 257527.050400000065565 ], [ 363970.003200002014637, 257530.630699999630451 ], [ 363970.199600003659725, 257535.614100001752377 ], [ 363959.341499999165535, 257577.747900001704693 ], [ 363953.764200001955032, 257588.1385000012815 ], [ 363944.849899999797344, 257598.026299998164177 ], [ 363932.365900002419949, 257606.697799999266863 ], [ 363926.606299996376038, 257610.444600000977516 ], [ 363923.758599996566772, 257608.522700000554323 ], [ 363922.589500002563, 257605.66609999909997 ], [ 363929.990000002086163, 257577.261999998241663 ], [ 363930.278800003230572, 257571.33390000090003 ], [ 363928.893200002610683, 257565.86600000038743 ], [ 363909.516999997198582, 257542.92850000038743 ], [ 363904.827100001275539, 257537.131599999964237 ], [ 363901.997000001370907, 257540.318599998950958 ], [ 363898.633100003004074, 257544.848499998450279 ], [ 363902.339500002563, 257545.002700001001358 ], [ 363921.695600003004074, 257570.312300000339746 ], [ 363923.311899997293949, 257576.730999998748302 ], [ 363919.785999998450279, 257598.525699999183416 ], [ 363916.575099997222424, 257611.308499999344349 ], [ 363922.699500001966953, 257620.849300000816584 ], [ 363937.818599998950958, 257611.013999998569489 ], [ 363959.194799996912479, 257595.063900001347065 ], [ 363965.993400000035763, 257581.36259999871254 ], [ 363971.859600000083447, 257565.0439000017941 ], [ 363983.227200001478195, 257519.11879999935627 ], [ 363983.281499996781349, 257518.683699999004602 ], [ 363973.992600001394749, 257513.465700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701014200", "MAP": "D9-8374-T009", "PARCEL_NAM": "15-2", "ACRE": ".31", "LONGITUDE": -64.88267173, "LATITUDE": 18.34719893, "OBJECTID_1": 21874, "PARCEL_NO_": "105701014200", "Tax_Legal_": "15 ANNAS RETREAT NEW QTR", "Name": "VALLEY VIEW PROPERTIES INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 252800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.90115679600001, "SHAPE_Area": 1009.06204925 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363892.328900001943111, 257597.448300000280142 ], [ 363915.109099999070168, 257561.699999999254942 ], [ 363902.339500002563, 257545.002700001001358 ], [ 363898.633100003004074, 257544.848499998450279 ], [ 363888.129699997603893, 257558.992499999701977 ], [ 363875.927100002765656, 257571.558200001716614 ], [ 363892.328900001943111, 257597.448300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701014200", "MAP": "D9-8374-T009", "PARCEL_NAM": "15-1", "ACRE": ".35", "LONGITUDE": -64.88240237, "LATITUDE": 18.34682176, "OBJECTID_1": 21874, "PARCEL_NO_": "105701014200", "Tax_Legal_": "15 ANNAS RETREAT NEW QTR", "Name": "VALLEY VIEW PROPERTIES INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 252800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.81968069000001, "SHAPE_Area": 1303.5969568099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363926.409199997782707, 257562.925500001758337 ], [ 363934.021300002932549, 257552.150499999523163 ], [ 363936.576499998569489, 257532.245400000363588 ], [ 363933.060699999332428, 257490.319499999284744 ], [ 363926.644900001585484, 257486.691500000655651 ], [ 363915.05629999935627, 257521.849300000816584 ], [ 363908.510499998927116, 257532.98369999974966 ], [ 363904.827100001275539, 257537.131599999964237 ], [ 363909.516999997198582, 257542.92850000038743 ], [ 363926.409199997782707, 257562.925500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701014200", "MAP": "D9-8374-T009", "PARCEL_NAM": "15-4", "ACRE": ".39", "LONGITUDE": -64.88215329000001, "LATITUDE": 18.34679406, "OBJECTID_1": 21874, "PARCEL_NO_": "105701014200", "Tax_Legal_": "15 ANNAS RETREAT NEW QTR", "Name": "VALLEY VIEW PROPERTIES INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 252800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.334871357, "SHAPE_Area": 1708.4269157700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363934.021300002932549, 257552.150499999523163 ], [ 363966.575099997222424, 257549.678700000047684 ], [ 363970.199600003659725, 257535.614100001752377 ], [ 363970.003200002014637, 257530.630699999630451 ], [ 363967.40820000320673, 257527.050400000065565 ], [ 363969.151100002229214, 257518.525100000202656 ], [ 363972.259499996900558, 257517.839800000190735 ], [ 363973.992600001394749, 257513.465700000524521 ], [ 363933.060699999332428, 257490.319499999284744 ], [ 363936.576499998569489, 257532.245400000363588 ], [ 363934.021300002932549, 257552.150499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701014200", "MAP": "D9-8374-T009", "PARCEL_NAM": "15-5", "ACRE": ".32", "LONGITUDE": -64.88222428, "LATITUDE": 18.34725178, "OBJECTID_1": 21874, "PARCEL_NO_": "105701014200", "Tax_Legal_": "15 ANNAS RETREAT NEW QTR", "Name": "VALLEY VIEW PROPERTIES INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 252800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.302965543, "SHAPE_Area": 1554.66071177 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363966.575099997222424, 257549.678700000047684 ], [ 363934.021300002932549, 257552.150499999523163 ], [ 363926.409199997782707, 257562.925500001758337 ], [ 363928.893200002610683, 257565.86600000038743 ], [ 363930.278800003230572, 257571.33390000090003 ], [ 363929.990000002086163, 257577.261999998241663 ], [ 363922.589500002563, 257605.66609999909997 ], [ 363923.758599996566772, 257608.522700000554323 ], [ 363926.606299996376038, 257610.444600000977516 ], [ 363932.365900002419949, 257606.697799999266863 ], [ 363944.849899999797344, 257598.026299998164177 ], [ 363953.764200001955032, 257588.1385000012815 ], [ 363959.341499999165535, 257577.747900001704693 ], [ 363966.575099997222424, 257549.678700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701014200", "MAP": "D9-8374-T009", "PARCEL_NAM": "15-3", "ACRE": ".36", "LONGITUDE": -64.88253069, "LATITUDE": 18.3474355, "OBJECTID_1": 21874, "PARCEL_NO_": "105701014200", "Tax_Legal_": "15 ANNAS RETREAT NEW QTR", "Name": "VALLEY VIEW PROPERTIES INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 252800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.19041794699999, "SHAPE_Area": 1129.9511032600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363915.109099999070168, 257561.699999999254942 ], [ 363892.328900001943111, 257597.448300000280142 ], [ 363905.366899996995926, 257618.0287000015378 ], [ 363912.47070000320673, 257629.158100001513958 ], [ 363922.699500001966953, 257620.849300000816584 ], [ 363916.575099997222424, 257611.308499999344349 ], [ 363919.785999998450279, 257598.525699999183416 ], [ 363923.311899997293949, 257576.730999998748302 ], [ 363921.695600003004074, 257570.312300000339746 ], [ 363915.109099999070168, 257561.699999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105701017400", "MAP": "D9-1955-T82", "PARCEL_NAM": "394A-51", "ACRE": ".36", "LONGITUDE": -64.88279711, "LATITUDE": 18.34340962, "OBJECTID_1": 21902, "PARCEL_NO_": "105701017400", "Tax_Legal_": "ANNAS RETREAT 394A-41 & 394A-51 NO.1 NEW QTR", "Name": "FABA INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.264215802, "SHAPE_Area": 862.11936383499994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363877.167000003159046, 257131.061200000345707 ], [ 363864.669399999082088, 257154.878699999302626 ], [ 363865.836599998176098, 257155.570199999958277 ], [ 363869.494199998676777, 257150.608500000089407 ], [ 363875.526699997484684, 257153.360100001096725 ], [ 363871.536300003528595, 257158.946699999272823 ], [ 363889.230599999427795, 257169.428599998354912 ], [ 363891.48589999973774, 257167.272100001573563 ], [ 363896.3445999994874, 257162.625999998301268 ], [ 363898.801299996674061, 257158.213199999183416 ], [ 363902.897600002586842, 257150.647300001233816 ], [ 363905.343500003218651, 257147.500900000333786 ], [ 363906.984899997711182, 257144.136900000274181 ], [ 363877.167000003159046, 257131.061200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602075500", "MAP": "D9-1956-T82", "PARCEL_NAM": "394A-45", "ACRE": ".13", "LONGITUDE": -64.88316185, "LATITUDE": 18.34377654, "OBJECTID_1": 21364, "PARCEL_NO_": "105602075500", "Tax_Legal_": "ANNAS RETREAT 394A-45 NEW QTR.", "Name": "SERRANT, VIRGIL KELVIN & FELIX L. (LIFE ESTATE)", "Address": "394-43 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.670201963, "SHAPE_Area": 733.59216788799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363866.124799996614456, 257185.422800000756979 ], [ 363853.047200001776218, 257173.809999998658895 ], [ 363826.039200000464916, 257187.062399998307228 ], [ 363835.570799998939037, 257197.38120000064373 ], [ 363841.924199998378754, 257208.832299999892712 ], [ 363864.63400000333786, 257193.397199999541044 ], [ 363863.042999997735023, 257190.851100001484156 ], [ 363861.451899997889996, 257188.304900001734495 ], [ 363866.124799996614456, 257185.422800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602075700", "MAP": "D9-1955-T82", "PARCEL_NAM": "394A-44", "ACRE": ".14", "LONGITUDE": -64.88316579000001, "LATITUDE": 18.34348417, "OBJECTID_1": 21366, "PARCEL_NO_": "105602075700", "Tax_Legal_": "394-A-44 ANNAS RETREAT No.4 NEW QTR.", "Name": "BUCHANAN, KENNETH & EVANS R", "Address": "394A-44 ESTATE ANNA'S RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21800, "Improved_V": 193200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.426520470400007, "SHAPE_Area": 443.192511368 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363862.989000000059605, 257157.615899998694658 ], [ 363839.474299997091293, 257143.985500000417233 ], [ 363835.161899998784065, 257150.726199999451637 ], [ 363830.749799996614456, 257156.812399998307228 ], [ 363849.871299996972084, 257169.166700001806021 ], [ 363854.186300002038479, 257171.954500000923872 ], [ 363855.0033999979496, 257170.623599998652935 ], [ 363862.989000000059605, 257157.615899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701017300", "MAP": "D9-1955-T82", "PARCEL_NAM": "394A-43", "ACRE": ".15", "LONGITUDE": -64.88295177000001, "LATITUDE": 18.34360322, "OBJECTID_1": 21901, "PARCEL_NO_": "105701017300", "Tax_Legal_": "394A-43 ANNAS RETREAT NEW QTR.", "Name": "SERRANT, VIRGIL KELVIN & FELIX L. (LIFE ESTATE)", "Address": "394-43 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 176600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.164785284399997, "SHAPE_Area": 544.31758104599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363871.536300003528595, 257158.946699999272823 ], [ 363869.705899998545647, 257161.509300000965595 ], [ 363862.989000000059605, 257157.615899998694658 ], [ 363855.0033999979496, 257170.623599998652935 ], [ 363853.047200001776218, 257173.809999998658895 ], [ 363866.124799996614456, 257185.422800000756979 ], [ 363869.558200001716614, 257183.304999999701977 ], [ 363884.962700001895428, 257173.509700000286102 ], [ 363889.230599999427795, 257169.428599998354912 ], [ 363871.536300003528595, 257158.946699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602075600", "MAP": "D9-1956-T82", "PARCEL_NAM": "394-46", "ACRE": ".14", "LONGITUDE": -64.88329339000001, "LATITUDE": 18.34361834, "OBJECTID_1": 21365, "PARCEL_NO_": "105602075600", "Tax_Legal_": "394A-46 ANNAS RETREAT NEW QTR.", "Name": "FLEMING, EDWARD & OTHERS", "Address": "PO Box 10226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21800, "Improved_V": 135000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.217316629500004, "SHAPE_Area": 582.40092016000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363854.186300002038479, 257171.954500000923872 ], [ 363849.871299996972084, 257169.166700001806021 ], [ 363830.749799996614456, 257156.812399998307228 ], [ 363826.18639999628067, 257163.107299998402596 ], [ 363817.230599999427795, 257173.166499998420477 ], [ 363818.796499997377396, 257178.667700000107288 ], [ 363823.585799999535084, 257184.406399998813868 ], [ 363826.039200000464916, 257187.062399998307228 ], [ 363853.047200001776218, 257173.809999998658895 ], [ 363854.186300002038479, 257171.954500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601057600", "MAP": "D9-1739-T81", "PARCEL_NAM": "404-106", "ACRE": ".14", "LONGITUDE": -64.89422202, "LATITUDE": 18.34683857, "OBJECTID_1": 20819, "PARCEL_NO_": "105601057600", "Tax_Legal_": "404-106 ANNAS RETREAT NEW QTR.", "Name": "JACKSON, LLOYD", "Address": "PO Box 304378", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15900, "Improved_V": 56300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.948739076, "SHAPE_Area": 637.95705554000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362688.985399998724461, 257507.86939999833703 ], [ 362659.334299996495247, 257509.679400000721216 ], [ 362659.608000002801418, 257513.896099999547005 ], [ 362661.134300000965595, 257524.04109999909997 ], [ 362665.884099997580051, 257534.423500001430511 ], [ 362694.207500003278255, 257522.622999999672174 ], [ 362689.479299999773502, 257509.707600001245737 ], [ 362688.985399998724461, 257507.86939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032000", "MAP": "G9-2846-T79", "PARCEL_NAM": "10-1-4A", "ACRE": ".26", "LONGITUDE": -64.88879636, "LATITUDE": 18.3349236, "OBJECTID_1": 21792, "PARCEL_NO_": "105604032000", "Tax_Legal_": "CHARLOTTE AMALIE 10-1-4 NEW QTR", "Name": "MAGRAS, JEANETTE", "Address": "PO Box 502848", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24900, "Improved_V": 138800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.037042418, "SHAPE_Area": 1008.2977928 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363271.320600003004074, 256222.689100001007318 ], [ 363268.547200001776218, 256203.260000001639128 ], [ 363277.30009999871254, 256199.652100000530481 ], [ 363283.219700001180172, 256194.107599999755621 ], [ 363280.517800003290176, 256188.033100001513958 ], [ 363249.868900001049042, 256188.837699998170137 ], [ 363242.428700000047684, 256210.308299999684095 ], [ 363245.529899999499321, 256224.89919999986887 ], [ 363271.320600003004074, 256222.689100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604032000", "MAP": null, "PARCEL_NAM": "10-1-4", "ACRE": ".08", "LONGITUDE": -64.88862282, "LATITUDE": 18.3349712, "OBJECTID_1": 21792, "PARCEL_NO_": "105604032000", "Tax_Legal_": "CHARLOTTE AMALIE 10-1-4 NEW QTR", "Name": "MAGRAS, JEANETTE", "Address": "PO Box 502848", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24900, "Improved_V": 138800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.188219822500002, "SHAPE_Area": 367.36575957000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363283.219700001180172, 256194.107599999755621 ], [ 363277.30009999871254, 256199.652100000530481 ], [ 363268.547200001776218, 256203.260000001639128 ], [ 363271.320600003004074, 256222.689100001007318 ], [ 363287.700099997222424, 256221.285399999469519 ], [ 363283.219700001180172, 256194.107599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105701014300", "MAP": "G9-2784-T78", "PARCEL_NAM": "394-409", "ACRE": ".565", "LONGITUDE": -64.88292286, "LATITUDE": 18.34687792, "OBJECTID_1": 21875, "PARCEL_NO_": "105701014300", "Tax_Legal_": "ANNAS RETREAT 394-409 NEW QTR", "Name": "WILLIAMS, CLEM & MYRTLE LEWIS", "Address": "PO Box 303323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 89100, "Improved_V": 126100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.32649151000001, "SHAPE_Area": 2401.1617369400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363878.896300002932549, 257506.987900000065565 ], [ 363841.442199997603893, 257510.432100001722574 ], [ 363849.299900002777576, 257552.398400001227856 ], [ 363865.553199999034405, 257570.08219999819994 ], [ 363878.968299999833107, 257557.999499998986721 ], [ 363887.91330000013113, 257547.318300001323223 ], [ 363897.250100001692772, 257533.951099999248981 ], [ 363902.347800001502037, 257527.393399998545647 ], [ 363908.39019999653101, 257519.668200001120567 ], [ 363902.086499996483326, 257514.678399998694658 ], [ 363894.365599997341633, 257526.212699998170137 ], [ 363878.896300002932549, 257506.987900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701014500", "MAP": "C9-221-T78", "PARCEL_NAM": "394-410", "ACRE": ".513", "LONGITUDE": -64.88305839, "LATITUDE": 18.34641623, "OBJECTID_1": 21877, "PARCEL_NO_": "105701014500", "Tax_Legal_": "394-410 ANNAS RETREAT NEW QTR", "Name": "BIANCA EURITA DAZLE REVOCABLE FAMILY TRUST", "Address": "PO Box 10644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69600, "Improved_V": 51600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.00569554099999, "SHAPE_Area": 2081.3610211 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363841.442199997603893, 257510.432100001722574 ], [ 363878.896300002932549, 257506.987900000065565 ], [ 363883.078900001943111, 257489.290300000458956 ], [ 363878.289599999785423, 257483.551500000059605 ], [ 363844.800300002098083, 257439.158900000154972 ], [ 363838.985299997031689, 257459.165199998766184 ], [ 363835.700699999928474, 257466.104400001466274 ], [ 363833.727700002491474, 257469.23030000180006 ], [ 363841.442199997603893, 257510.432100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701018400", "MAP": "D9-8586-T010", "PARCEL_NAM": "16-D", "ACRE": ".51", "LONGITUDE": -64.88201549, "LATITUDE": 18.34613924, "OBJECTID_1": 21912, "PARCEL_NO_": "105701018400", "Tax_Legal_": "16-D ANNAS RETREAT NO. 1 NEW QTR", "Name": "FOSTER, JUDE DAVID", "Address": "1591 Lane Ave", "City": "Jacksonville", "State": "Florida", "Zip": 32210, "Country": "United States", "Land_Value": 89100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.51115829599999, "SHAPE_Area": 1599.90210841 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363936.464299999177456, 257455.2195999994874 ], [ 363987.702600002288818, 257478.055100001394749 ], [ 363994.60360000282526, 257460.438799999654293 ], [ 363991.392700001597404, 257458.723799999803305 ], [ 363991.432300001382828, 257454.080099999904633 ], [ 363988.235799998044968, 257450.676399998366833 ], [ 363989.879000000655651, 257447.101300001144409 ], [ 363947.468099996447563, 257426.718100000172853 ], [ 363936.464299999177456, 257455.2195999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701018200", "MAP": "D9-8586-T010", "PARCEL_NAM": "16-C", "ACRE": ".56", "LONGITUDE": -64.88190933, "LATITUDE": 18.34584462, "OBJECTID_1": 21910, "PARCEL_NO_": "105701018200", "Tax_Legal_": "16-C ANNA'S RETREAT NO.1 NEW QTR", "Name": "FOSTER, RUPERT", "Address": "PO Box 3040-92", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 94900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.97521278100001, "SHAPE_Area": 1961.78371853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363961.671400003135204, 257389.929400000721216 ], [ 363958.862199999392033, 257397.20549999922514 ], [ 363947.468099996447563, 257426.718100000172853 ], [ 363989.879000000655651, 257447.101300001144409 ], [ 363990.710500001907349, 257444.152800001204014 ], [ 363994.740199998021126, 257444.396899998188019 ], [ 363998.800599999725819, 257441.052600000053644 ], [ 364001.284199997782707, 257433.473600000143051 ], [ 364009.483999997377396, 257417.497600000351667 ], [ 363965.35080000013113, 257392.016199998557568 ], [ 363961.671400003135204, 257389.929400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701018100", "MAP": "D9-8586-T010", "PARCEL_NAM": "16-1", "ACRE": ".56", "LONGITUDE": -64.88234282000001, "LATITUDE": 18.34573294, "OBJECTID_1": 21909, "PARCEL_NO_": "105701018100", "Tax_Legal_": "16-1 CONSOLIDATED & 16-1-A ROW ANNAS RETREAT NO. 1 NEW QTR", "Name": "JOHNSON, MAUREEN J.", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 94000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.315716219, "SHAPE_Area": 2188.7777178699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363930.173500001430511, 257462.598600000143051 ], [ 363931.288400001823902, 257459.337699998170137 ], [ 363943.150499999523163, 257424.64299999922514 ], [ 363951.633699998259544, 257399.830899998545647 ], [ 363955.395099997520447, 257388.8293999992311 ], [ 363956.112800002098083, 257386.730200000107288 ], [ 363946.092799998819828, 257380.881700001657009 ], [ 363920.414899997413158, 257366.106100000441074 ], [ 363918.7483000010252, 257372.425299998372793 ], [ 363916.122599996626377, 257396.679499998688698 ], [ 363915.082500003278255, 257424.113200001418591 ], [ 363916.678999997675419, 257426.026099998503923 ], [ 363927.728200003504753, 257454.19200000166893 ], [ 363930.084200002253056, 257461.599500000476837 ], [ 363930.173500001430511, 257462.598600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701018300", "MAP": "D9-8586-T010", "PARCEL_NAM": "16-E", "ACRE": ".51", "LONGITUDE": -64.88210295, "LATITUDE": 18.34641809, "OBJECTID_1": 21911, "PARCEL_NO_": "105701018300", "Tax_Legal_": "16-E ANNAS RETREAT NO 1 NEW QTR", "Name": "FOSTER, ROBERT", "Address": "PO Box 3040-92", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 89100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.495472998, "SHAPE_Area": 1956.1513793300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363982.239100001752377, 257492.0016999989748 ], [ 363987.702600002288818, 257478.055100001394749 ], [ 363936.464299999177456, 257455.2195999994874 ], [ 363930.82039999961853, 257469.838199999183416 ], [ 363926.644900001585484, 257486.691500000655651 ], [ 363973.992600001394749, 257513.465700000524521 ], [ 363982.239100001752377, 257492.0016999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701013200", "MAP": "D9-2923-T85", "PARCEL_NAM": "18-A", "ACRE": ".911", "LONGITUDE": -64.88109758, "LATITUDE": 18.34580397, "OBJECTID_1": 21865, "PARCEL_NO_": "105701013200", "Tax_Legal_": "18-B ANNAS RETREAT NO.1 NEW QUARTER", "Name": "VALLEY VIEW PROPERTIES, INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 215100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.87886734300002, "SHAPE_Area": 4338.9300340199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364027.567199997603893, 257379.809300001710653 ], [ 364028.695000000298023, 257395.598799999803305 ], [ 364022.124899998307228, 257424.629399999976158 ], [ 364023.126599997282028, 257425.208599999547005 ], [ 364087.31870000064373, 257462.464200001209974 ], [ 364099.640000000596046, 257435.967300001531839 ], [ 364101.268799997866154, 257434.080800000578165 ], [ 364089.576899997889996, 257386.700100000947714 ], [ 364027.567199997603893, 257379.809300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604019800", "MAP": "D9-4950-T90", "PARCEL_NAM": "149-1", "ACRE": ".500", "LONGITUDE": -64.88895611, "LATITUDE": 18.33775342, "OBJECTID_1": 21674, "PARCEL_NO_": "105604019800", "Tax_Legal_": "149-1&149-2 ANNA'S RETREAT NEW QUARTER", "Name": "DEVELOPMENTALLY DISABLED, INC.", "Address": "P.O. BOX 866 FREDERIKSTED", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 274400, "Improved_V": 164300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.81798596, "SHAPE_Area": 2412.00713047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363223.273900002241135, 256469.915199998766184 ], [ 363219.784000001847744, 256465.940799999982119 ], [ 363220.650600001215935, 256475.652899999171495 ], [ 363227.411899998784065, 256563.8739 ], [ 363231.693899996578693, 256560.269099999219179 ], [ 363266.739500001072884, 256530.765000000596046 ], [ 363273.832500003278255, 256524.793600000441074 ], [ 363267.722499996423721, 256518.161499999463558 ], [ 363223.273900002241135, 256469.915199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105604014800", "MAP": "F-2153-T67", "PARCEL_NAM": "212", "ACRE": null, "LONGITUDE": -64.88908868, "LATITUDE": 18.33839247, "OBJECTID_1": 21626, "PARCEL_NO_": "105604014800", "Tax_Legal_": "ANNAS RETREAT 212 NEW QTR", "Name": "CHURCH OF GOD FOUND INC", "Address": "PO Box 8089", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 217800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 26.6913465863, "SHAPE_Area": 26.806250706499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363229.001500003039837, 256587.692800000309944 ], [ 363228.908699996769428, 256583.403499998152256 ], [ 363222.254000000655651, 256590.744899999350309 ], [ 363222.682800002396107, 256594.165199998766184 ], [ 363229.001500003039837, 256587.692800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604010500", "MAP": null, "PARCEL_NAM": "392", "ACRE": null, "LONGITUDE": -64.88834156, "LATITUDE": 18.33945898, "OBJECTID_1": 21581, "PARCEL_NO_": "105604010500", "Tax_Legal_": "392 ANNAS RETREAT 1 NEW QTR", "Name": "FOUR WINDS PLAZA CORP", "Address": "4392 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 609000, "Improved_V": 6392800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1064.9883915, "SHAPE_Area": 41060.525660599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363381.086400002241135, 256782.662300001829863 ], [ 363377.875600002706051, 256780.947299998253584 ], [ 363337.545500002801418, 256782.306000001728535 ], [ 363336.022799998521805, 256771.738800000399351 ], [ 363373.957299999892712, 256767.616300001740456 ], [ 363371.764899998903275, 256741.000599998980761 ], [ 363375.184399999678135, 256718.230500001460314 ], [ 363370.304399996995926, 256628.47580000013113 ], [ 363370.19650000333786, 256627.493299998342991 ], [ 363328.917700000107288, 256630.488299999386072 ], [ 363323.141000002622604, 256630.760299999266863 ], [ 363321.317100003361702, 256604.854600001126528 ], [ 363319.831900000572205, 256578.295299999415874 ], [ 363321.449400000274181, 256578.182399999350309 ], [ 363325.453500002622604, 256577.903099998831749 ], [ 363364.7449000030756, 256575.316799998283386 ], [ 363363.619400002062321, 256561.293299999088049 ], [ 363361.27419999986887, 256552.619300000369549 ], [ 363354.164800003170967, 256535.251400001347065 ], [ 363352.564800001680851, 256533.76069999858737 ], [ 363348.599799998104572, 256525.91780000180006 ], [ 363346.996100001037121, 256524.849199999123812 ], [ 363345.410499997437, 256521.669799998402596 ], [ 363338.223800003528595, 256513.378299999982119 ], [ 363334.90089999884367, 256509.966600000858307 ], [ 363237.703199997544289, 256578.779500000178814 ], [ 363222.682800002396107, 256594.165199998766184 ], [ 363223.76410000026226, 256602.789599999785423 ], [ 363238.071699999272823, 256721.752300001680851 ], [ 363255.392300002276897, 256865.648800000548363 ], [ 363340.721199996769428, 256882.8125 ], [ 363366.017099998891354, 256847.7668999992311 ], [ 363375.0304000005126, 256830.953200001269579 ], [ 363379.214900001883507, 256813.04450000077486 ], [ 363382.675700001418591, 256785.419599998742342 ], [ 363381.086400002241135, 256782.662300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604019800", "MAP": "D9-7356-T004", "PARCEL_NAM": "149-2", "ACRE": ".22", "LONGITUDE": -64.88853559, "LATITUDE": 18.33743471, "OBJECTID_1": 21674, "PARCEL_NO_": "105604019800", "Tax_Legal_": "149-1&149-2 ANNA'S RETREAT NEW QUARTER", "Name": "DEVELOPMENTALLY DISABLED, INC.", "Address": "P.O. BOX 866 FREDERIKSTED", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 274400, "Improved_V": 164300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.63191632, "SHAPE_Area": 920.78855744999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363287.022600002586842, 256514.3277000002563 ], [ 363289.203000001609325, 256503.54619999974966 ], [ 363291.903399996459484, 256486.942499998956919 ], [ 363292.627700001001358, 256482.028499998152256 ], [ 363298.833499997854233, 256479.462699998170137 ], [ 363297.948700003325939, 256478.510499998927116 ], [ 363303.175999999046326, 256473.836899999529123 ], [ 363281.518700003623962, 256449.164000000804663 ], [ 363271.756599999964237, 256459.216600000858307 ], [ 363278.153200000524521, 256465.601700000464916 ], [ 363283.586999997496605, 256490.344099998474121 ], [ 363282.703299999237061, 256499.413899999111891 ], [ 363279.406199999153614, 256507.830699998885393 ], [ 363267.722499996423721, 256518.161499999463558 ], [ 363273.832500003278255, 256524.793600000441074 ], [ 363287.022600002586842, 256514.3277000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604019800", "MAP": "B9-486-T77", "PARCEL_NAM": "WELL AREA", "ACRE": null, "LONGITUDE": -64.88836589, "LATITUDE": 18.3373936, "OBJECTID_1": 21674, "PARCEL_NO_": "105604019800", "Tax_Legal_": "149-1&149-2 ANNA'S RETREAT NEW QUARTER", "Name": "DEVELOPMENTALLY DISABLED, INC.", "Address": "P.O. BOX 866 FREDERIKSTED", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 274400, "Improved_V": 164300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.1051947023, "SHAPE_Area": 52.798534048199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363303.192500002682209, 256484.153499998152256 ], [ 363308.185999996960163, 256479.54450000077486 ], [ 363303.175999999046326, 256473.836899999529123 ], [ 363297.948700003325939, 256478.510499998927116 ], [ 363303.192500002682209, 256484.153499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604011100", "MAP": "G9-666-T63", "PARCEL_NAM": "131", "ACRE": ".123", "LONGITUDE": -64.88827073, "LATITUDE": 18.33754642, "OBJECTID_1": 21587, "PARCEL_NO_": "105604011100", "Tax_Legal_": "ANNAS RETREAT 131 NEW QTR", "Name": "CHURCH OF GOD HOLINESS", "Address": "PO Box 502187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 52300, "Improved_V": 241600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.037455990300003, "SHAPE_Area": 443.743103959 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363308.185999996960163, 256479.54450000077486 ], [ 363303.192500002682209, 256484.153499998152256 ], [ 363297.679300002753735, 256490.214699998497963 ], [ 363318.317199997603893, 256512.27479999884963 ], [ 363328.531700000166893, 256502.906700000166893 ], [ 363315.859200000762939, 256488.286200001835823 ], [ 363308.185999996960163, 256479.54450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604014800", "MAP": "F9-2153-T67", "PARCEL_NAM": "212", "ACRE": ".49", "LONGITUDE": -64.88861349, "LATITUDE": 18.33793264, "OBJECTID_1": 21626, "PARCEL_NO_": "105604014800", "Tax_Legal_": "ANNAS RETREAT 212 NEW QTR", "Name": "CHURCH OF GOD FOUND INC", "Address": "PO Box 8089", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 217800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.55373249399997, "SHAPE_Area": 2521.1483853499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363306.086400002241135, 256499.201200000941753 ], [ 363273.832500003278255, 256524.793600000441074 ], [ 363266.739500001072884, 256530.765000000596046 ], [ 363231.693899996578693, 256560.269099999219179 ], [ 363227.411899998784065, 256563.8739 ], [ 363228.908699996769428, 256583.403499998152256 ], [ 363229.001500003039837, 256587.692800000309944 ], [ 363237.703199997544289, 256578.779500000178814 ], [ 363334.90089999884367, 256509.966600000858307 ], [ 363332.628200002014637, 256507.633000001311302 ], [ 363328.531700000166893, 256502.906700000166893 ], [ 363318.317199997603893, 256512.27479999884963 ], [ 363306.086400002241135, 256499.201200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604011000", "MAP": "D9-7356-T004", "PARCEL_NAM": "149-2A", "ACRE": ".04", "LONGITUDE": -64.88843435, "LATITUDE": 18.33754872, "OBJECTID_1": 21586, "PARCEL_NO_": "105604011000", "Tax_Legal_": "149 ANNAS RETREAT 1NEW QTR", "Name": "LUTHERAN CHURCH OF THE C/O VAL", "Address": "PO Box 502323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 457400, "Improved_V": 630600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.742927621999996, "SHAPE_Area": 306.17092714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363298.833499997854233, 256479.462699998170137 ], [ 363292.627700001001358, 256482.028499998152256 ], [ 363291.903399996459484, 256486.942499998956919 ], [ 363289.203000001609325, 256503.54619999974966 ], [ 363287.022600002586842, 256514.3277000002563 ], [ 363306.086400002241135, 256499.201200000941753 ], [ 363297.679300002753735, 256490.214699998497963 ], [ 363303.192500002682209, 256484.153499998152256 ], [ 363298.833499997854233, 256479.462699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604011000", "MAP": "G9-879-T66", "PARCEL_NAM": "149", "ACRE": null, "LONGITUDE": -64.88889988, "LATITUDE": 18.33715078, "OBJECTID_1": 21586, "PARCEL_NO_": "105604011000", "Tax_Legal_": "149 ANNAS RETREAT 1NEW QTR", "Name": "LUTHERAN CHURCH OF THE C/O VAL", "Address": "PO Box 502323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 457400, "Improved_V": 630600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.33051030600001, "SHAPE_Area": 5299.4619222800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363223.273900002241135, 256469.915199998766184 ], [ 363267.722499996423721, 256518.161499999463558 ], [ 363279.406199999153614, 256507.830699998885393 ], [ 363282.703299999237061, 256499.413899999111891 ], [ 363283.586999997496605, 256490.344099998474121 ], [ 363278.153200000524521, 256465.601700000464916 ], [ 363271.756599999964237, 256459.216600000858307 ], [ 363281.518700003623962, 256449.164000000804663 ], [ 363214.416000001132488, 256374.94310000166297 ], [ 363211.365699999034405, 256371.593400001525879 ], [ 363219.784000001847744, 256465.940799999982119 ], [ 363223.273900002241135, 256469.915199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704042600", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-76", "ACRE": "0.36", "LONGITUDE": -64.8731944, "LATITUDE": 18.33603806, "OBJECTID_1": 23642, "PARCEL_NO_": "105704042600", "Tax_Legal_": "ANNAS RETREAT 173C-76 NEW QTR.", "Name": "DECASTRO, NEVON", "Address": "PO Box 503114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 47800, "Improved_V": 139100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.34899478899999, "SHAPE_Area": 1566.7791393099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364920.808399997651577, 256376.210799999535084 ], [ 364918.351199999451637, 256311.116599999368191 ], [ 364906.757299996912479, 256306.889800000935793 ], [ 364897.689400002360344, 256304.197799999266863 ], [ 364895.349799998104572, 256370.309200000017881 ], [ 364906.966600000858307, 256376.974599998444319 ], [ 364917.454000003635883, 256376.427200000733137 ], [ 364920.808399997651577, 256376.210799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704045200", "MAP": "D9-7469-T004", "PARCEL_NAM": "173C-77A", "ACRE": ".01", "LONGITUDE": -64.8730809, "LATITUDE": 18.33588336, "OBJECTID_1": 23658, "PARCEL_NO_": "105704045200", "Tax_Legal_": "173C-77A ANNAS RETREAT 1 NEW QTR", "Name": "BELLEVUE, CLAUDE", "Address": "PO BOX 305400", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.058262238799998, "SHAPE_Area": 62.543887890699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364919.362300001084805, 256337.901000000536442 ], [ 364922.027000002563, 256337.817800000309944 ], [ 364920.773699998855591, 256314.123399998992682 ], [ 364918.351199999451637, 256311.116599999368191 ], [ 364919.362300001084805, 256337.901000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704042400", "MAP": "C9-275-T82", "PARCEL_NAM": "173C-78", "ACRE": "0.24", "LONGITUDE": -64.8726696, "LATITUDE": 18.33609807, "OBJECTID_1": 23640, "PARCEL_NO_": "105704042400", "Tax_Legal_": "ANNAS RETREAT 173C-78 NEW QTR", "Name": "RICHARDSON, CALIXTE", "Address": "PO Box 7081", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.07135068100001, "SHAPE_Area": 1026.6777251000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364973.487000003457069, 256330.234099999070168 ], [ 364952.575000002980232, 256323.941199999302626 ], [ 364951.520499996840954, 256323.54109999909997 ], [ 364952.962300002574921, 256373.129200000315905 ], [ 364954.576800003647804, 256372.93129999935627 ], [ 364971.529100000858307, 256370.747999999672174 ], [ 364977.178700000047684, 256370.160999998450279 ], [ 364973.487000003457069, 256330.234099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704043000", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-80", "ACRE": "0.27", "LONGITUDE": -64.87375636, "LATITUDE": 18.33600308, "OBJECTID_1": 23646, "PARCEL_NO_": "105704043000", "Tax_Legal_": "173C-80 ANNAS RETREAT No.1 NEW QTR", "Name": "DALE CLENDINEN, LESTER, LISTON, & HUGH ENGLAND Jr.", "Address": "PO Box 10572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.09245019799999, "SHAPE_Area": 1042.2151462500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364874.764799997210503, 256360.169799998402596 ], [ 364851.022799998521805, 256318.043800000101328 ], [ 364825.992899999022484, 256321.849700000137091 ], [ 364826.761500000953674, 256326.289000000804663 ], [ 364841.849500000476837, 256353.643500000238419 ], [ 364844.268399998545647, 256353.66330000013113 ], [ 364849.100900001823902, 256354.336199998855591 ], [ 364862.790200002491474, 256356.559200000017881 ], [ 364870.833599999547005, 256358.947000000625849 ], [ 364874.764799997210503, 256360.169799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704042900", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-74", "ACRE": "0.30", "LONGITUDE": -64.87360906000001, "LATITUDE": 18.33581802, "OBJECTID_1": 23645, "PARCEL_NO_": "105704042900", "Tax_Legal_": "ANNAS RETREAT 173C-74 NEW QUARTER", "Name": "EDWARDS, NELSON & KATHLEEN", "Address": "PO Box 304674", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37600, "Improved_V": 37600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.51519565300001, "SHAPE_Area": 1105.2948646499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364874.764799997210503, 256360.169799998402596 ], [ 364874.82379999756813, 256352.767299998551607 ], [ 364875.263700000941753, 256297.592199999839067 ], [ 364849.64750000089407, 256290.168200001120567 ], [ 364851.022799998521805, 256318.043800000101328 ], [ 364874.764799997210503, 256360.169799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704042700", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-75", "ACRE": "0.34", "LONGITUDE": -64.87340392, "LATITUDE": 18.33594784, "OBJECTID_1": 23643, "PARCEL_NO_": "105704042700", "Tax_Legal_": "ANNAS RETREAT 173C-75 NEW QTR.", "Name": "CHARLES, NORDEL", "Address": "7262 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.175384552, "SHAPE_Area": 1383.9321546900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364874.82379999756813, 256352.767299998551607 ], [ 364874.764799997210503, 256360.169799998402596 ], [ 364881.288599997758865, 256362.199000000953674 ], [ 364890.917599998414516, 256367.766199998557568 ], [ 364895.349799998104572, 256370.309200000017881 ], [ 364897.689400002360344, 256304.197799999266863 ], [ 364882.627199999988079, 256299.726199999451637 ], [ 364875.263700000941753, 256297.592199999839067 ], [ 364874.82379999756813, 256352.767299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704042500", "MAP": "C9-275-T82-2", "PARCEL_NAM": "173C-77", "ACRE": ".29", "LONGITUDE": -64.87293181, "LATITUDE": 18.33607232, "OBJECTID_1": 23641, "PARCEL_NO_": "105704042500", "Tax_Legal_": "173C-77 REM ANNAS RETREAT 1 NEW QTR", "Name": "BELLEVUE, CLAUDE", "Address": "PO BOX 305400", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38500, "Improved_V": 200900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.931682835, "SHAPE_Area": 1809.32417285 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364918.351199999451637, 256311.116599999368191 ], [ 364920.773699998855591, 256314.123399998992682 ], [ 364922.027000002563, 256337.817800000309944 ], [ 364919.362300001084805, 256337.901000000536442 ], [ 364920.808399997651577, 256376.210799999535084 ], [ 364931.976599998772144, 256375.490499999374151 ], [ 364936.011799998581409, 256375.101399999111891 ], [ 364952.962300002574921, 256373.129200000315905 ], [ 364951.520499996840954, 256323.54109999909997 ], [ 364929.265699997544289, 256315.095600001513958 ], [ 364918.351199999451637, 256311.116599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602070800", "MAP": "A9-665-T006", "PARCEL_NAM": "394A-1-1", "ACRE": "2.386", "LONGITUDE": -64.8847592, "LATITUDE": 18.34333798, "OBJECTID_1": 21321, "PARCEL_NO_": "105602070800", "Tax_Legal_": "394A-1 ANNAS RETREAT NEW QTR", "Name": "MORALES, SR , SILLCOTT & THOMPSON - TRUSTEES", "Address": "PO Box 8089", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011089, "Country": "United States", "Land_Value": 84900, "Improved_V": 1300400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 440.4432799, "SHAPE_Area": 10235.427790199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363691.342000000178814, 257198.102000001817942 ], [ 363684.726199999451637, 257174.912599999457598 ], [ 363714.07599999755621, 257168.441300000995398 ], [ 363746.725900001823902, 257152.398499999195337 ], [ 363753.162299998104572, 257117.758600000292063 ], [ 363734.732500001788139, 257107.685499999672174 ], [ 363699.385999999940395, 257091.986400000751019 ], [ 363672.894599996507168, 257078.048500001430511 ], [ 363659.050599999725819, 257093.978300001472235 ], [ 363646.831799998879433, 257108.443799998611212 ], [ 363635.430200003087521, 257121.649300001561642 ], [ 363627.284299999475479, 257131.293000001460314 ], [ 363617.511500000953674, 257142.611999999731779 ], [ 363604.480999998748302, 257157.704100001603365 ], [ 363593.077600002288818, 257171.120799999684095 ], [ 363603.556000001728535, 257171.628699999302626 ], [ 363614.018299996852875, 257174.036400001496077 ], [ 363653.399899996817112, 257189.3462999984622 ], [ 363674.319099999964237, 257194.794900000095367 ], [ 363691.342000000178814, 257198.102000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602070800", "MAP": "A9-665-T006", "PARCEL_NAM": "394A-1-2", "ACRE": ".553", "LONGITUDE": -64.8837501, "LATITUDE": 18.34355666, "OBJECTID_1": 21321, "PARCEL_NO_": "105602070800", "Tax_Legal_": "394A-1 ANNAS RETREAT NEW QTR", "Name": "MORALES, SR , SILLCOTT & THOMPSON - TRUSTEES", "Address": "PO Box 8089", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011089, "Country": "United States", "Land_Value": 84900, "Improved_V": 1300400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.09572632000001, "SHAPE_Area": 2121.07024013 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363776.00280000269413, 257130.242400001734495 ], [ 363758.125299997627735, 257193.211899999529123 ], [ 363767.883699998259544, 257191.760999999940395 ], [ 363782.391999997198582, 257192.513000000268221 ], [ 363790.464100003242493, 257191.523600000888109 ], [ 363793.707299999892712, 257189.4391999989748 ], [ 363811.642200000584126, 257166.576799999922514 ], [ 363811.714100003242493, 257158.133699998259544 ], [ 363808.549999997019768, 257150.930599998682737 ], [ 363802.956200003623962, 257144.974199999123812 ], [ 363776.00280000269413, 257130.242400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602042900", "MAP": "D9-1165-T73", "PARCEL_NAM": "143A-36A", "ACRE": null, "LONGITUDE": -64.8910601, "LATITUDE": 18.34427284, "OBJECTID_1": 21207, "PARCEL_NO_": "105602042900", "Tax_Legal_": "ANNAS RETREAT 143A-35&36A NEW QTR", "Name": "ST LUCE, CATHERINA & VINCENT", "Address": "PO Box 12288", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.292963080299998, "SHAPE_Area": 32.827293218699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363009.839500002563, 257226.771299999207258 ], [ 363011.083599999547005, 257243.987199999392033 ], [ 363014.842100001871586, 257243.224700000137091 ], [ 363009.839500002563, 257226.771299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043000", "MAP": "B9-166-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89098545, "LATITUDE": 18.34415242, "OBJECTID_1": 21208, "PARCEL_NO_": "105602043000", "Tax_Legal_": "143A-36&35A ANNAS RETREAT NO.1 NEW QTR", "Name": "TURNBULL, SONIA P, SUZETTE A, SELVIN J & EVELYN", "Address": "PO Box 9229", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51200, "Improved_V": 272700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.15143201799999, "SHAPE_Area": 632.34051303199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363008.58219999819994, 257209.371399998664856 ], [ 363009.839500002563, 257226.771299999207258 ], [ 363014.842100001871586, 257243.224700000137091 ], [ 363028.835799999535084, 257240.385499998927116 ], [ 363031.258299998939037, 257239.9831000007689 ], [ 363027.503700003027916, 257207.443999998271465 ], [ 363013.7837999984622, 257208.809300001710653 ], [ 363008.58219999819994, 257209.371399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602042900", "MAP": "D9-7757-T006", "PARCEL_NAM": "143A-35", "ACRE": ".23", "LONGITUDE": -64.89121368000001, "LATITUDE": 18.34419767, "OBJECTID_1": 21207, "PARCEL_NO_": "105602042900", "Tax_Legal_": "ANNAS RETREAT 143A-35&36A NEW QTR", "Name": "ST LUCE, CATHERINA & VINCENT", "Address": "PO Box 12288", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.72775972399999, "SHAPE_Area": 949.97830258399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363005.151900000870228, 257211.353799998760223 ], [ 363004.700800001621246, 257209.870000001043081 ], [ 362991.986400000751019, 257211.7972999997437 ], [ 362979.875500001013279, 257213.598099999129772 ], [ 362982.951499998569489, 257231.144000001251698 ], [ 362986.009499996900558, 257250.800700001418591 ], [ 363007.83389999717474, 257244.646499998867512 ], [ 363011.083599999547005, 257243.987199999392033 ], [ 363009.839500002563, 257226.771299999207258 ], [ 363005.151900000870228, 257211.353799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602043000", "MAP": "D9-1165-T73", "PARCEL_NAM": "143A-35A", "ACRE": null, "LONGITUDE": -64.89110181, "LATITUDE": 18.34406834, "OBJECTID_1": 21208, "PARCEL_NO_": "105602043000", "Tax_Legal_": "143A-36&35A ANNAS RETREAT NO.1 NEW QTR", "Name": "TURNBULL, SONIA P, SUZETTE A, SELVIN J & EVELYN", "Address": "PO Box 9229", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51200, "Improved_V": 272700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.024676807900001, "SHAPE_Area": 34.163318396699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363009.839500002563, 257226.771299999207258 ], [ 363008.58219999819994, 257209.371399998664856 ], [ 363006.519799999892712, 257209.594300001859665 ], [ 363004.700800001621246, 257209.870000001043081 ], [ 363005.151900000870228, 257211.353799998760223 ], [ 363009.839500002563, 257226.771299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601070100", "MAP": "A9-670-T006", "PARCEL_NAM": "403-A", "ACRE": "10.203", "LONGITUDE": -64.89671299, "LATITUDE": 18.3468352, "OBJECTID_1": 20874, "PARCEL_NO_": "105601070100", "Tax_Legal_": "403 ANNAS RET&POR WNTBRG NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 805900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1187.7728899199999, "SHAPE_Area": 43163.097859399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362680.490099996328354, 257618.347199998795986 ], [ 362685.473600000143051, 257601.28940000012517 ], [ 362673.348399996757507, 257604.778799999505281 ], [ 362663.685199998319149, 257603.221999999135733 ], [ 362658.071599997580051, 257599.587499998509884 ], [ 362653.287699997425079, 257593.215500000864267 ], [ 362651.755999997258186, 257583.70380000025034 ], [ 362634.758699998259544, 257591.164000000804663 ], [ 362625.975500002503395, 257580.959699999541044 ], [ 362614.755500003695488, 257572.8462999984622 ], [ 362589.869499996304512, 257559.765900000929832 ], [ 362575.42059999704361, 257552.048300001770258 ], [ 362560.984300002455711, 257542.853100001811981 ], [ 362559.378899998962879, 257541.995600000023842 ], [ 362540.916400000452995, 257532.134199999272823 ], [ 362531.32880000025034, 257521.712099999189377 ], [ 362527.361900001764297, 257514.080299999564886 ], [ 362524.196000002324581, 257507.088300000876188 ], [ 362521.820299997925758, 257502.002599999308586 ], [ 362518.648900002241135, 257495.643800001591444 ], [ 362507.536799997091293, 257474.865699999034405 ], [ 362499.470100000500679, 257475.221900001168251 ], [ 362470.426600001752377, 257476.88399999961257 ], [ 362434.930900000035763, 257478.7043999992311 ], [ 362428.476800002157688, 257479.073800001293421 ], [ 362422.026299998164177, 257479.021000001579523 ], [ 362418.801100000739098, 257478.994600001722574 ], [ 362400.302599996328354, 257473.354800000786781 ], [ 362416.78490000218153, 257431.69310000166297 ], [ 362411.972199998795986, 257428.698399998247623 ], [ 362386.36259999871254, 257405.901799999177456 ], [ 362380.736400000751019, 257403.744800001382828 ], [ 362376.704899996519089, 257403.711800001561642 ], [ 362371.852600000798702, 257405.36089999973774 ], [ 362367.002099998295307, 257406.798799999058247 ], [ 362360.540899999439716, 257408.012499999254942 ], [ 362350.86150000244379, 257408.355500001460314 ], [ 362304.140299998223782, 257402.695700000971556 ], [ 362302.19539999961853, 257402.461399998515844 ], [ 362301.584600001573563, 257422.450699999928474 ], [ 362281.399999998509884, 257421.719099998474121 ], [ 362261.245700001716614, 257421.131999999284744 ], [ 362238.17849999666214, 257543.798200000077486 ], [ 362267.23480000346899, 257542.414599999785423 ], [ 362268.865000002086163, 257542.4070999994874 ], [ 362290.306500002741814, 257542.308800000697374 ], [ 362291.119199998676777, 257542.434000000357628 ], [ 362321.209899999201298, 257547.071299999952316 ], [ 362345.96169999986887, 257556.146499998867512 ], [ 362368.027999997138977, 257571.862799998372793 ], [ 362377.076800003647804, 257585.039000000804663 ], [ 362383.950499996542931, 257594.388599999248981 ], [ 362390.39919999986887, 257594.652499999850988 ], [ 362395.237099997699261, 257594.692099999636412 ], [ 362406.523699998855591, 257594.995600000023842 ], [ 362456.511500000953674, 257595.826900001615286 ], [ 362484.728799998760223, 257596.480000000447035 ], [ 362508.916400000452995, 257596.88910000026226 ], [ 362561.314099997282028, 257598.7956000007689 ], [ 362629.773299999535084, 257608.432900000363588 ], [ 362670.02419999986887, 257616.361699998378754 ], [ 362680.490099996328354, 257618.347199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88681116, "LATITUDE": 18.33934026, "OBJECTID_1": 21675, "PARCEL_NO_": "105604019900", "Tax_Legal_": "4A-3 ESTATE ANNA'S RETREAT NEW QTR.", "Name": "MC SWEEN, DICHI J.", "Address": "PO Box 305069", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 10.0865684913, "SHAPE_Area": 1.0544102066600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363465.000900000333786, 256698.994699999690056 ], [ 363466.149400003254414, 256694.266399998217821 ], [ 363465.701700001955032, 256694.273400001227856 ], [ 363465.000900000333786, 256698.994699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604010200", "MAP": "G9-265-T55", "PARCEL_NAM": "4 REM", "ACRE": null, "LONGITUDE": -64.88576551, "LATITUDE": 18.33957596, "OBJECTID_1": 21578, "PARCEL_NO_": "105604010200", "Tax_Legal_": "4 ESTATE ANNAS RETREAT NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 451300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 339.966516136, "SHAPE_Area": 4469.0068308899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363621.91330000013113, 256727.300900001078844 ], [ 363610.63120000064373, 256719.735300000756979 ], [ 363584.181100003421307, 256700.942600000649691 ], [ 363542.497400000691414, 256671.892700001597404 ], [ 363535.265799999237061, 256668.878199998289347 ], [ 363535.101599998772144, 256688.149700000882149 ], [ 363532.178099997341633, 256694.575899999588728 ], [ 363524.483000002801418, 256704.098000001162291 ], [ 363524.371899999678135, 256717.12950000166893 ], [ 363524.343199998140335, 256720.506799999624491 ], [ 363566.316399998962879, 256715.572900000959635 ], [ 363569.127999998629093, 256764.14750000089407 ], [ 363616.693300001323223, 256765.38120000064373 ], [ 363620.735600002110004, 256764.147700000554323 ], [ 363618.45160000026226, 256748.296999998390675 ], [ 363618.548699997365475, 256736.898699998855591 ], [ 363621.91330000013113, 256727.300900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602050100", "MAP": null, "PARCEL_NAM": "152", "ACRE": "1.04", "LONGITUDE": -64.88592023, "LATITUDE": 18.34021665, "OBJECTID_1": 21274, "PARCEL_NO_": "105602050100", "Tax_Legal_": "152 ANNAS RETREAT 1 NEW QTR", "Name": "E CARIB CONF. CORPORATION", "Address": "PO Box 580", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 335400, "Improved_V": 1503100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.90283302799998, "SHAPE_Area": 7741.2986938399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363627.042300000786781, 256781.086800001561642 ], [ 363620.735600002110004, 256764.147700000554323 ], [ 363616.693300001323223, 256765.38120000064373 ], [ 363569.127999998629093, 256764.14750000089407 ], [ 363543.329599998891354, 256763.51410000026226 ], [ 363525.589000001549721, 256763.579999998211861 ], [ 363501.397799998521805, 256763.593100000172853 ], [ 363479.509400002658367, 256763.533399999141693 ], [ 363472.805699996650219, 256770.9983000010252 ], [ 363475.130900003015995, 256777.161499999463558 ], [ 363481.897100001573563, 256780.954300001263618 ], [ 363505.120099999010563, 256799.931699998676777 ], [ 363529.172799997031689, 256816.171700000762939 ], [ 363562.076999999582767, 256834.594999998807907 ], [ 363588.056999996304512, 256846.34910000115633 ], [ 363602.157999999821186, 256824.192299999296665 ], [ 363628.642300002276897, 256782.577500000596046 ], [ 363627.042300000786781, 256781.086800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604019300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88714954, "LATITUDE": 18.33994056, "OBJECTID_1": 21669, "PARCEL_NO_": "105604019300", "Tax_Legal_": "126B ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 106900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.703973918, "SHAPE_Area": 933.88758293399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363462.693000003695488, 256763.487500000745058 ], [ 363427.234999999403954, 256760.875199999660254 ], [ 363421.601599998772144, 256759.5625 ], [ 363417.579099997878075, 256758.474199999123812 ], [ 363412.770000003278255, 256755.057300001382828 ], [ 363410.394199997186661, 256749.971599999815226 ], [ 363406.396799996495247, 256745.928100001066923 ], [ 363404.794900000095367, 256744.648400001227856 ], [ 363399.183100000023842, 256740.802799999713898 ], [ 363396.760600000619888, 256741.205200001597404 ], [ 363389.493000000715256, 256742.412300001829863 ], [ 363394.253499999642372, 256751.528299998492002 ], [ 363399.042900003492832, 256757.267000000923872 ], [ 363406.247500002384186, 256763.447700001299381 ], [ 363413.470200002193451, 256767.517499998211861 ], [ 363427.145099997520447, 256771.429200001060963 ], [ 363462.610299997031689, 256773.19709999859333 ], [ 363469.046400003135204, 256774.938499998301268 ], [ 363473.871699996292591, 256776.455600000917912 ], [ 363475.130900003015995, 256777.161499999463558 ], [ 363469.979500003159046, 256763.50730000063777 ], [ 363462.693000003695488, 256763.487500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604010100", "MAP": null, "PARCEL_NAM": "126", "ACRE": null, "LONGITUDE": -64.88699277000001, "LATITUDE": 18.33951167, "OBJECTID_1": 21577, "PARCEL_NO_": "105604010100", "Tax_Legal_": "126 ANNAS RETREAT NEW QTR", "Name": "JIM TILLET CARIB. INC", "Address": "4126 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 328700, "Improved_V": 1666500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 321.72666311299997, "SHAPE_Area": 4324.1502341100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363465.460100002586842, 256742.4206000007689 ], [ 363462.851300001144409, 256723.960400000214577 ], [ 363462.835600003600121, 256713.581500001251698 ], [ 363465.000900000333786, 256698.994699999690056 ], [ 363465.701700001955032, 256694.273400001227856 ], [ 363466.149400003254414, 256694.266399998217821 ], [ 363467.785499997437, 256687.530499998480082 ], [ 363475.351199999451637, 256688.278599999845028 ], [ 363480.217500001192093, 256664.400499999523163 ], [ 363460.198499999940395, 256655.119600001722574 ], [ 363448.281199999153614, 256656.767200000584126 ], [ 363445.651799999177456, 256681.44370000064373 ], [ 363441.602300003170967, 256683.521499998867512 ], [ 363440.698899999260902, 256694.913100000470877 ], [ 363420.535700000822544, 256695.381400000303984 ], [ 363419.691600002348423, 256699.807399999350309 ], [ 363419.664599999785423, 256702.973600000143051 ], [ 363417.243900001049042, 256703.164900001138449 ], [ 363413.160199999809265, 256709.253199998289347 ], [ 363413.908900000154972, 256716.014299999922514 ], [ 363414.661300003528595, 256722.353300001472235 ], [ 363421.601599998772144, 256759.5625 ], [ 363427.234999999403954, 256760.875199999660254 ], [ 363462.693000003695488, 256763.487500000745058 ], [ 363469.979500003159046, 256763.50730000063777 ], [ 363467.51799999922514, 256756.982700001448393 ], [ 363465.460100002586842, 256742.4206000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604019000", "MAP": "D9-6029-T96", "PARCEL_NAM": "4A-5", "ACRE": ".251", "LONGITUDE": -64.88637204, "LATITUDE": 18.33973083, "OBJECTID_1": 21666, "PARCEL_NO_": "105604019000", "Tax_Legal_": "4A-5 ESTATE ANNAS RETREAT NEW QTR.", "Name": "JOACHIM, JEAN MIRABEAU AND MARIE SURLETTE", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.419641332, "SHAPE_Area": 1391.93094602 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363496.822899997234344, 256726.930399999022484 ], [ 363494.497800000011921, 256763.574299998581409 ], [ 363501.397799998521805, 256763.593100000172853 ], [ 363525.589000001549721, 256763.579999998211861 ], [ 363524.343199998140335, 256720.506799999624491 ], [ 363524.371899999678135, 256717.12950000166893 ], [ 363524.494199998676777, 256702.776099998503923 ], [ 363503.531000003218651, 256720.626899998635054 ], [ 363504.778399996459484, 256724.453499998897314 ], [ 363499.629600003361702, 256727.971799999475479 ], [ 363496.822899997234344, 256726.930399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604019100", "MAP": "D9-6029-T96", "PARCEL_NAM": "4A-4", "ACRE": ".2423", "LONGITUDE": -64.88666651, "LATITUDE": 18.33977722, "OBJECTID_1": 21667, "PARCEL_NO_": "105604019100", "Tax_Legal_": "4A-4 ESTATE ANNA'S RETREAT NEW QUARTER", "Name": "THOMAS, CELESTINA", "Address": "PO Box 503121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32900, "Improved_V": 174000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.170887851, "SHAPE_Area": 1166.1804316299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363488.914700001478195, 256723.810699999332428 ], [ 363463.209399998188019, 256726.494500000029802 ], [ 363465.460100002586842, 256742.4206000007689 ], [ 363467.51799999922514, 256756.982700001448393 ], [ 363469.979500003159046, 256763.50730000063777 ], [ 363472.805699996650219, 256770.9983000010252 ], [ 363479.509400002658367, 256763.533399999141693 ], [ 363494.497800000011921, 256763.574299998581409 ], [ 363496.822899997234344, 256726.930399999022484 ], [ 363495.022799998521805, 256727.932799998670816 ], [ 363493.222599998116493, 256728.935300000011921 ], [ 363488.914700001478195, 256723.810699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604029200", "MAP": "D9-8159-T008", "PARCEL_NAM": "4A-1-A", "ACRE": ".27", "LONGITUDE": -64.88654469, "LATITUDE": 18.33917016, "OBJECTID_1": 21767, "PARCEL_NO_": "105604029200", "Tax_Legal_": "4A-1-A ANNAS RETREAT\n1 NEW QTR", "Name": "DKS PERFORMANCE LLC", "Address": "Po Box 502232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 88200, "Improved_V": 157300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.39906846599999, "SHAPE_Area": 1163.43582141 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363499.945600003004074, 256709.969000000506639 ], [ 363508.622400000691414, 256656.357299998402596 ], [ 363500.090199999511242, 256649.670499999076128 ], [ 363494.333599999547005, 256650.7483000010252 ], [ 363482.965000003576279, 256661.048599999397993 ], [ 363478.689999997615814, 256691.923300001770258 ], [ 363499.945600003004074, 256709.969000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604019900", "MAP": "D9-6029-T96", "PARCEL_NAM": "4A-3", "ACRE": ".27", "LONGITUDE": -64.88668697, "LATITUDE": 18.33943987, "OBJECTID_1": 21675, "PARCEL_NO_": "105604019900", "Tax_Legal_": "4A-3 ESTATE ANNA'S RETREAT NEW QTR.", "Name": "MC SWEEN, DICHI J.", "Address": "PO Box 305069", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.30161248100001, "SHAPE_Area": 1075.50062996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363503.369699999690056, 256712.875999998301268 ], [ 363478.689999997615814, 256691.923300001770258 ], [ 363482.965000003576279, 256661.048599999397993 ], [ 363480.217500001192093, 256664.400499999523163 ], [ 363475.351199999451637, 256688.278599999845028 ], [ 363467.785499997437, 256687.530499998480082 ], [ 363466.149400003254414, 256694.266399998217821 ], [ 363465.000900000333786, 256698.994699999690056 ], [ 363462.835600003600121, 256713.581500001251698 ], [ 363462.851300001144409, 256723.960400000214577 ], [ 363463.209399998188019, 256726.494500000029802 ], [ 363488.914700001478195, 256723.810699999332428 ], [ 363503.369699999690056, 256712.875999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604019700", "MAP": "D9-8159-T008", "PARCEL_NAM": "4A-1 REM", "ACRE": ".22", "LONGITUDE": -64.88636424000001, "LATITUDE": 18.33923614, "OBJECTID_1": 21673, "PARCEL_NO_": "105604019700", "Tax_Legal_": "4A-1 ANNAS RETREAT NEW QTR", "Name": "MILLS, IVAN A.", "Address": "PO Box 502038", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.33775612299999, "SHAPE_Area": 886.86042074 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363508.622400000691414, 256656.357299998402596 ], [ 363499.945600003004074, 256709.969000000506639 ], [ 363503.369699999690056, 256712.875999998301268 ], [ 363515.189900003373623, 256703.934399999678135 ], [ 363524.38400000333786, 256693.849500000476837 ], [ 363524.016999997198582, 256664.142099998891354 ], [ 363511.965499997138977, 256658.977200001478195 ], [ 363508.622400000691414, 256656.357299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604010600", "MAP": null, "PARCEL_NAM": "128C", "ACRE": null, "LONGITUDE": -64.88695487, "LATITUDE": 18.33854285, "OBJECTID_1": 21582, "PARCEL_NO_": "105604010600", "Tax_Legal_": "128-C ESTATE ANNAS RETREAT NEW QTR.", "Name": "KING, LEONARDO", "Address": "4128 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.34068990700001, "SHAPE_Area": 1236.7271307599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363477.790299996733665, 256600.435699999332428 ], [ 363421.431199997663498, 256590.26410000026226 ], [ 363416.600500002503395, 256589.380199998617172 ], [ 363429.373800002038479, 256604.47239999845624 ], [ 363441.294100001454353, 256625.046000000089407 ], [ 363451.799500003457069, 256622.387800000607967 ], [ 363469.55460000038147, 256620.633299998939037 ], [ 363476.816799998283386, 256620.059399999678135 ], [ 363477.790299996733665, 256600.435699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105602060100", "MAP": "D9-8199-T008", "PARCEL_NAM": "142-C", "ACRE": ".63", "LONGITUDE": -64.88701111, "LATITUDE": 18.34148767, "OBJECTID_1": 21310, "PARCEL_NO_": "105602060100", "Tax_Legal_": "142 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1020200, "Improved_V": 3593500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.687068915, "SHAPE_Area": 2154.6258658699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363408.57320000231266, 256941.931200001388788 ], [ 363453.400100000202656, 256965.21169999986887 ], [ 363471.936700001358986, 256933.092500001192093 ], [ 363455.377899996936321, 256923.269900001585484 ], [ 363455.79559999704361, 256901.585999999195337 ], [ 363446.604900002479553, 256895.418600000441074 ], [ 363408.57320000231266, 256941.931200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105602060100", "MAP": "D9-8199-T008", "PARCEL_NAM": "142-D", "ACRE": ".41", "LONGITUDE": -64.88658786000001, "LATITUDE": 18.34147604, "OBJECTID_1": 21310, "PARCEL_NO_": "105602060100", "Tax_Legal_": "142 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1020200, "Improved_V": 3593500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.20405486300001, "SHAPE_Area": 1291.16863079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363471.936700001358986, 256933.092500001192093 ], [ 363517.568000003695488, 256960.912399999797344 ], [ 363524.639600001275539, 256947.783500000834465 ], [ 363455.79559999704361, 256901.585999999195337 ], [ 363455.377899996936321, 256923.269900001585484 ], [ 363471.936700001358986, 256933.092500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602047600", "MAP": "A9-15-T62", "PARCEL_NAM": "129-1", "ACRE": ".172", "LONGITUDE": -64.88824111, "LATITUDE": 18.34191986, "OBJECTID_1": 21252, "PARCEL_NO_": "105602047600", "Tax_Legal_": "129-1 ANNAS RETREAT NEW QTR", "Name": "THOMAS, KIRK D.", "Address": "PO Box 304341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25200, "Improved_V": 42900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.213354017, "SHAPE_Area": 738.84642669599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363331.639300003647804, 256982.217000000178814 ], [ 363300.745700001716614, 256960.897700000554323 ], [ 363290.739500001072884, 256975.917899999767542 ], [ 363322.794200003147125, 256999.400499999523163 ], [ 363330.952600002288818, 256988.27930000051856 ], [ 363331.639300003647804, 256982.217000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105602060100", "MAP": "D9-8646-T012", "PARCEL_NAM": "142-E", "ACRE": "1.11", "LONGITUDE": -64.88794336, "LATITUDE": 18.34162, "OBJECTID_1": 21310, "PARCEL_NO_": "105602060100", "Tax_Legal_": "142 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1020200, "Improved_V": 3593500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.10728751, "SHAPE_Area": 737.41121002900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363338.649899996817112, 256966.298099998384714 ], [ 363372.068999998271465, 256948.193199999630451 ], [ 363353.640299998223782, 256943.977299999445677 ], [ 363326.645000003278255, 256924.737799998372793 ], [ 363325.838899999856949, 256925.964899998158216 ], [ 363325.799400001764297, 256930.608600001782179 ], [ 363338.649899996817112, 256966.298099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105602060100", "MAP": "D9-8646-T012", "PARCEL_NAM": "142 REM", "ACRE": "12.43", "LONGITUDE": -64.88737526, "LATITUDE": 18.34283575, "OBJECTID_1": 21310, "PARCEL_NO_": "105602060100", "Tax_Legal_": "142 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1020200, "Improved_V": 3593500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 960.93400667399999, "SHAPE_Area": 51119.896512599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363459.811200000345707, 257196.416799999773502 ], [ 363536.851800002157688, 256955.978399999439716 ], [ 363524.639600001275539, 256947.783500000834465 ], [ 363517.568000003695488, 256960.912399999797344 ], [ 363471.936700001358986, 256933.092500001192093 ], [ 363453.400100000202656, 256965.21169999986887 ], [ 363408.57320000231266, 256941.931200001388788 ], [ 363398.264700002968311, 256937.337799999862909 ], [ 363398.223999999463558, 256937.319600000977516 ], [ 363372.068999998271465, 256948.193199999630451 ], [ 363338.649899996817112, 256966.298099998384714 ], [ 363339.978500001132488, 256969.988099999725819 ], [ 363339.637100003659725, 256975.597300000488758 ], [ 363339.040899999439716, 256985.3902000002563 ], [ 363337.377999998629093, 256991.287200000137091 ], [ 363314.509900003671646, 257025.297200001776218 ], [ 363303.021899998188019, 257048.63459999859333 ], [ 363300.532899998128414, 257056.846900001168251 ], [ 363298.841099999845028, 257066.121100001037121 ], [ 363299.510799996554852, 257082.169700000435114 ], [ 363302.554399996995926, 257103.515099998563528 ], [ 363297.382100000977516, 257142.736099999397993 ], [ 363296.541599996387959, 257146.739999998360872 ], [ 363286.322800002992153, 257210.406700000166893 ], [ 363285.466099999845028, 257216.310300000011921 ], [ 363303.196000002324581, 257217.510800000280142 ], [ 363329.789899997413158, 257219.417300000786781 ], [ 363355.577500000596046, 257221.317099999636412 ], [ 363383.784100003540516, 257223.236699998378754 ], [ 363405.541900001466274, 257224.892400000244379 ], [ 363425.689000003039837, 257226.323899999260902 ], [ 363449.865800000727177, 257227.999400001019239 ], [ 363450.693599998950958, 257225.473000001162291 ], [ 363459.811200000345707, 257196.416799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603013800", "MAP": "A9-769-T012", "PARCEL_NAM": "27-REM", "ACRE": "79.88", "LONGITUDE": -64.88275871, "LATITUDE": 18.33320334, "OBJECTID_1": 21533, "PARCEL_NO_": "105603013800", "Tax_Legal_": "27 ESTATE CHARLOTTE AMALIE NO.3 NEW QTR", "Name": "HARTHMAN LEASING, II LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 6083200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2622.86721622, "SHAPE_Area": 315159.53493700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363894.976700000464916, 256233.33049999922514 ], [ 364198.443300001323223, 256255.312100000679493 ], [ 364201.108000002801418, 256256.874899998307228 ], [ 364228.721000000834465, 256250.252199999988079 ], [ 364243.721500001847744, 256248.203499998897314 ], [ 364272.00110000371933, 256241.545899998396635 ], [ 364299.159999996423721, 256236.088500000536442 ], [ 364324.679700002074242, 256233.746800001710653 ], [ 364350.518100000917912, 256229.699000000953674 ], [ 364376.480800002813339, 256223.521000001579523 ], [ 364401.873700000345707, 256223.597500000149012 ], [ 364367.169100001454353, 256208.488699998706579 ], [ 364348.061700001358986, 256192.919700000435114 ], [ 364297.10869999974966, 256161.781700000166893 ], [ 364272.339800000190735, 256138.428199999034405 ], [ 364265.97070000320673, 256060.583299998193979 ], [ 364267.386100001633167, 255992.645899999886751 ], [ 364271.442400000989437, 255988.449599999934435 ], [ 364270.12610000371933, 255975.961899999529123 ], [ 364268.522399999201298, 255974.893399998545647 ], [ 364236.462300002574921, 255952.0439000017941 ], [ 364209.211400002241135, 255932.611400000751019 ], [ 364186.769500002264977, 255916.59569999948144 ], [ 364164.325800001621246, 255900.79109999909997 ], [ 364139.479400001466274, 255883.06700000166893 ], [ 364114.63289999961853, 255865.342799998819828 ], [ 364086.579199999570847, 255845.481499999761581 ], [ 364055.321800000965595, 255823.060899998992682 ], [ 364042.703299999237061, 255814.130300000309944 ], [ 364029.672700002789497, 255804.907999999821186 ], [ 364012.165799997746944, 255777.533700000494719 ], [ 363997.8445999994874, 255754.8293999992311 ], [ 363981.932300001382828, 255729.579100001603365 ], [ 363965.220899999141693, 255703.477800000458956 ], [ 363961.245099999010563, 255696.901299998164177 ], [ 363950.111400000751019, 255678.656199999153614 ], [ 363932.611599996685982, 255650.4375 ], [ 363921.740099996328354, 255633.039799999445677 ], [ 363861.969499997794628, 255705.504999998956919 ], [ 363840.320200003683567, 255695.332400001585484 ], [ 363818.07769999653101, 255684.881099998950958 ], [ 363812.00900000333786, 255703.701499998569489 ], [ 363783.954199999570847, 255778.621199999004602 ], [ 363777.412000000476837, 255789.333399999886751 ], [ 363769.258900001645088, 255799.821299999952316 ], [ 363760.312200002372265, 255808.825100000947714 ], [ 363745.703199997544289, 255819.893500000238419 ], [ 363666.3141999989748, 255862.728999998420477 ], [ 363656.584499999880791, 255868.982200000435114 ], [ 363646.026900000870228, 255877.761700000613928 ], [ 363633.0, 255892.431699998676777 ], [ 363617.568599998950958, 255905.393199998885393 ], [ 363611.080399997532368, 255909.772999998182058 ], [ 363577.87049999833107, 255927.2331000007689 ], [ 363563.272399999201298, 255937.035000000149012 ], [ 363526.695200003683567, 255971.143899999558926 ], [ 363492.578299999237061, 256000.417700000107288 ], [ 363485.281900003552437, 256005.002099998295307 ], [ 363470.959700003266335, 256077.078899998217821 ], [ 363462.544100001454353, 256118.384300000965595 ], [ 363454.970799997448921, 256155.474800001829863 ], [ 363444.044600002467632, 256207.525499999523163 ], [ 363630.473600000143051, 256188.997400000691414 ], [ 363790.116300001740456, 256191.148400001227856 ], [ 363826.132399998605251, 256222.896099999547005 ], [ 363843.016400001943111, 256228.733800001442432 ], [ 363854.290399998426437, 256230.514899998903275 ], [ 363876.049999997019768, 256231.959499999880791 ], [ 363894.976700000464916, 256233.33049999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703026700", "MAP": null, "PARCEL_NAM": "REM of ANNA'S RETREAT", "ACRE": null, "LONGITUDE": -64.88070974, "LATITUDE": 18.33622812, "OBJECTID_1": 22969, "PARCEL_NO_": "105703026700", "Tax_Legal_": "ANNAS RETREAT PCL NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 463900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1274.85206462, "SHAPE_Area": 52357.169791200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363894.976700000464916, 256233.33049999922514 ], [ 363876.049999997019768, 256231.959499999880791 ], [ 363880.729699999094009, 256250.574000000953674 ], [ 363881.516199998557568, 256252.902499999850988 ], [ 363882.207400001585484, 256266.418200001120567 ], [ 363886.105899997055531, 256282.070999998599291 ], [ 363892.448499999940395, 256294.788499999791384 ], [ 363899.617200002074242, 256305.190799999982119 ], [ 363907.586900003254414, 256316.232900001108646 ], [ 363918.002400003373623, 256324.128600001335144 ], [ 363930.061099998652935, 256328.449099998921156 ], [ 363931.668300002813339, 256329.095600001513958 ], [ 363944.540600001811981, 256332.578400000929832 ], [ 363961.437200002372265, 256336.9386 ], [ 363973.506700001657009, 256339.99269999936223 ], [ 363995.496500000357628, 256314.419199999421835 ], [ 364031.136100001633167, 256295.712499998509884 ], [ 364034.321800000965595, 256300.382599998265505 ], [ 364059.038699999451637, 256333.304400000721216 ], [ 364066.949000000953674, 256351.312100000679493 ], [ 364071.693400003015995, 256362.327799998223782 ], [ 364086.862300001084805, 256380.183800000697374 ], [ 364100.459899999201298, 256393.171799998730421 ], [ 364114.856600001454353, 256407.01069999858737 ], [ 364130.038099996745586, 256423.389199998229742 ], [ 364136.315999999642372, 256443.705600000917912 ], [ 364141.816299997270107, 256460.638099998235703 ], [ 364147.320200003683567, 256477.148400001227856 ], [ 364152.829599998891354, 256493.025499999523163 ], [ 364158.338899999856949, 256508.90260000154376 ], [ 364163.052699998021126, 256523.506700001657009 ], [ 364168.547600001096725, 256541.072399999946356 ], [ 364174.827299997210503, 256561.177700001746416 ], [ 364191.776000000536442, 256559.416600000113249 ], [ 364201.552500002086163, 256547.675299998372793 ], [ 364211.316399998962879, 256537.411699999123812 ], [ 364221.877499997615814, 256528.21000000089407 ], [ 364232.438699997961521, 256519.008299998939037 ], [ 364243.0016999989748, 256509.595600001513958 ], [ 364249.536700002849102, 256499.727600000798702 ], [ 364259.293399997055531, 256490.308299999684095 ], [ 364269.852799996733665, 256481.317699998617172 ], [ 364281.223899997770786, 256471.700399998575449 ], [ 364292.57880000025034, 256463.982900001108646 ], [ 364301.498599998652935, 256458.145300000905991 ], [ 364265.484200000762939, 256426.186500001698732 ], [ 364231.870800003409386, 256396.358300000429153 ], [ 364229.505900003015995, 256390.006099998950958 ], [ 364221.651299998164177, 256365.454999998211861 ], [ 364213.001299999654293, 256339.630800001323223 ], [ 364207.509900003671646, 256321.642900001257658 ], [ 364207.529700003564358, 256319.320999998599291 ], [ 364202.99210000038147, 256284.031300000846386 ], [ 364201.108000002801418, 256256.874899998307228 ], [ 364198.443300001323223, 256255.312100000679493 ], [ 363894.976700000464916, 256233.33049999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501040200", "MAP": "D9-8793-T013", "PARCEL_NAM": "1-14 REM", "ACRE": "31.78", "LONGITUDE": -64.90234583, "LATITUDE": 18.3425187, "OBJECTID_1": 19783, "PARCEL_NO_": "105501040200", "Tax_Legal_": "1-14 REM ESTATE DONOE NO.2A NEW QTR", "Name": "BMR DONOE SOLAR LLC", "Address": "1359 Broadway Rm 802", "City": "New York", "State": "New York", "Zip": 100187706, "Country": "United States", "Land_Value": 973700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2150.8770854099998, "SHAPE_Area": 126112.136165 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361563.202500000596046, 257199.892299998551607 ], [ 361599.499099999666214, 257198.71169999986887 ], [ 361630.94709999859333, 257198.758000001311302 ], [ 361664.007700003683567, 257198.817499998956919 ], [ 361679.36540000140667, 257194.510299999266863 ], [ 361715.690800003707409, 257189.952399998903275 ], [ 361725.377400003373623, 257188.765099998563528 ], [ 361751.254900000989437, 257180.111000001430511 ], [ 361773.043300002813339, 257178.178399998694658 ], [ 361782.728000000119209, 257177.202199999243021 ], [ 361835.230099998414516, 257166.866099998354912 ], [ 361946.612700000405312, 257154.689899999648333 ], [ 361960.39190000295639, 257146.359000001102686 ], [ 361983.051399998366833, 257136.834100000560284 ], [ 362011.403599999845028, 257121.656300000846386 ], [ 362028.433200001716614, 257110.396699998527765 ], [ 362040.612400002777576, 257100.574999999254942 ], [ 362047.910599999129772, 257095.779500000178814 ], [ 362061.722199998795986, 257083.649099998176098 ], [ 362075.5608000010252, 257068.352600000798702 ], [ 362086.168700002133846, 257053.662900000810623 ], [ 362090.324400000274181, 257039.131400000303984 ], [ 362092.021499998867512, 257029.223900001496077 ], [ 362086.826899997889996, 256976.407999999821186 ], [ 362087.013899996876717, 256954.455800000578165 ], [ 362088.763199999928474, 256938.427000001072884 ], [ 362092.143100000917912, 256920.300599999725819 ], [ 362097.968900002539158, 256899.027899999171495 ], [ 362102.097499996423721, 256887.662599999457598 ], [ 362112.730700001120567, 256870.017799999564886 ], [ 362125.779100000858307, 256852.814899999648333 ], [ 362130.690700002014637, 256844.200199998915195 ], [ 362133.950099997222424, 256840.216099999845028 ], [ 362141.314800001680851, 256827.610800001770258 ], [ 362142.146300002932549, 256824.662300001829863 ], [ 362143.771499998867512, 256823.197999998927116 ], [ 362154.442400000989437, 256801.12049999833107 ], [ 362167.472900003194809, 256786.028400000184774 ], [ 362185.32320000231266, 256773.08669999986887 ], [ 362221.769100002944469, 256754.386500000953674 ], [ 362225.035700000822544, 256749.558100000023842 ], [ 362226.743699997663498, 256738.384100001305342 ], [ 362225.174199998378754, 256733.305100001394749 ], [ 362222.785800002515316, 256729.696899998933077 ], [ 362206.133400000631809, 256711.055599998682737 ], [ 362029.652099996805191, 256847.037599999457598 ], [ 361993.948299996554852, 256853.033700000494719 ], [ 362039.848300002515316, 256947.813099998980761 ], [ 361980.962300002574921, 257010.4983000010252 ], [ 361793.420299999415874, 256972.765999998897314 ], [ 361754.411799997091293, 256964.947200000286102 ], [ 361725.611699998378754, 256929.012200001627207 ], [ 361626.320699997246265, 256940.94819999858737 ], [ 361531.184600003063679, 256961.649300001561642 ], [ 361515.429700002074242, 256961.946800000965595 ], [ 361563.202500000596046, 257199.892299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503031500", "MAP": "D9-8202-T008", "PARCEL_NAM": "61-53B", "ACRE": ".505", "LONGITUDE": -64.89541164000001, "LATITUDE": 18.32239358, "OBJECTID_1": 37605, "PARCEL_NO_": "107503031500", "Tax_Legal_": "61-53A & 61-53B BOLONGO NO.3 FRENCHMAN'S BAY QTR", "Name": "VAN DONSELAAR, NORMAN", "Address": "PO Box 812", "City": "Portage", "State": "Michigan", "Zip": 49081, "Country": "United States", "Land_Value": 92200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.538669669, "SHAPE_Area": 1935.87764522 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362557.316799998283386, 254772.607200000435114 ], [ 362555.640900000929832, 254781.268699999898672 ], [ 362566.614900000393391, 254855.258900001645088 ], [ 362587.145499996840954, 254850.568900000303984 ], [ 362590.440800003707409, 254842.363200001418591 ], [ 362589.686700001358986, 254836.235300000756979 ], [ 362583.41780000180006, 254814.863600000739098 ], [ 362578.962899997830391, 254769.864199999719858 ], [ 362569.256599999964237, 254773.3733000010252 ], [ 362567.658399999141693, 254771.671500001102686 ], [ 362565.2466000020504, 254770.807399999350309 ], [ 362557.316799998283386, 254772.607200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803011000", "MAP": null, "PARCEL_NAM": "19Dc-1", "ACRE": ".24", "LONGITUDE": -64.8665816, "LATITUDE": 18.33724223, "OBJECTID_1": 23835, "PARCEL_NO_": "105803011000", "Tax_Legal_": "SMITH BAY 19DC-1 EAST END QTR", "Name": "KING, DAVID N", "Address": "PO Box 773", "City": "CHRISTIANSTED", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 107800, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.88472823000001, "SHAPE_Area": 2320.0790528399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365587.415600001811981, 256448.479400001466274 ], [ 365583.662500001490116, 256511.1239 ], [ 365623.831699997186661, 256507.851199999451637 ], [ 365632.477799996733665, 256463.290500000119209 ], [ 365587.415600001811981, 256448.479400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803010100", "MAP": null, "PARCEL_NAM": "19D REM", "ACRE": "30.25", "LONGITUDE": -64.86592515, "LATITUDE": 18.3354723, "OBJECTID_1": 23829, "PARCEL_NO_": "105803010100", "Tax_Legal_": "SMITH BAY ESTATE 19D No.1,2&3 EASTEND QTR", "Name": "LINDQVIST, DORIS M. & OTHERS", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1321000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 992.90468394899995, "SHAPE_Area": 57082.124062800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365592.316799998283386, 256110.748100001364946 ], [ 365592.424300000071526, 256263.557000000029802 ], [ 365592.24099999666214, 256341.718400001525879 ], [ 365588.581600002944469, 256429.017000000923872 ], [ 365587.415600001811981, 256448.479400001466274 ], [ 365632.477799996733665, 256463.290500000119209 ], [ 365655.667700000107288, 256457.443199999630451 ], [ 365768.549500003457069, 256426.521600000560284 ], [ 365766.155299998819828, 256135.44370000064373 ], [ 365592.316799998283386, 256110.748100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704020200", "MAP": "A9-642-T005", "PARCEL_NAM": "8 REM", "ACRE": "4.99", "LONGITUDE": -64.86766834, "LATITUDE": 18.33940668, "OBJECTID_1": 23507, "PARCEL_NO_": "105704020200", "Tax_Legal_": "SMITH BAY ESTATE 8 (REMAINDER) No.1,2&3 EASTEND QTR.", "Name": "BETHEL MISSIONARY BAPTIST CHU", "Address": "P.O. BOX 4465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 299800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 698.06751850299997, "SHAPE_Area": 20441.662731500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365406.525100000202656, 256690.770799998193979 ], [ 365406.699799999594688, 256691.323600001633167 ], [ 365406.507399998605251, 256803.461300000548363 ], [ 365408.001299999654293, 256817.405699998140335 ], [ 365425.777999997138977, 256813.118200000375509 ], [ 365473.451099999248981, 256801.687199998646975 ], [ 365507.551700003445148, 256795.636100001633167 ], [ 365508.036499999463558, 256788.494199998676777 ], [ 365509.91330000013113, 256760.847699999809265 ], [ 365537.012599997222424, 256759.056200001388788 ], [ 365557.080399997532368, 256759.093400001525879 ], [ 365556.938199996948242, 256751.074799999594688 ], [ 365562.117799997329712, 256711.009399998933077 ], [ 365565.670299999415874, 256672.61939999833703 ], [ 365566.606100000441074, 256657.428300000727177 ], [ 365571.668300002813339, 256623.208799999207258 ], [ 365571.531199999153614, 256613.09910000115633 ], [ 365494.547600001096725, 256622.682599999010563 ], [ 365503.615000002086163, 256687.730000000447035 ], [ 365406.525100000202656, 256690.770799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86721342, "LATITUDE": 18.33821532, "OBJECTID_1": 23632, "PARCEL_NO_": "105704041600", "Tax_Legal_": "SMITH BAY 10A&115A EAST END QTR", "Name": "THE PARISH OF ST. LUKE THE", "Address": "PO Box 7335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 87100, "Improved_V": 492000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.49556846899998, "SHAPE_Area": 3981.7146165300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365572.463600002229214, 256553.220300000160933 ], [ 365515.099299997091293, 256560.86430000141263 ], [ 365494.547600001096725, 256622.682599999010563 ], [ 365571.531199999153614, 256613.09910000115633 ], [ 365571.258199997246265, 256592.953899998217821 ], [ 365572.103299997746944, 256572.350299999117851 ], [ 365572.463600002229214, 256553.220300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704024100", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-16", "ACRE": "0.23", "LONGITUDE": -64.86891497000001, "LATITUDE": 18.33831706, "OBJECTID_1": 23544, "PARCEL_NO_": "105704024100", "Tax_Legal_": "100-16 SMITH BAY EAST END QUARTER", "Name": "GEORGE, YOUVILLE", "Address": "PO Box 306023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 307400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.720155111, "SHAPE_Area": 1490.6564747699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365381.993500001728535, 256613.138799998909235 ], [ 365367.748700000345707, 256574.657200001180172 ], [ 365337.714100003242493, 256581.276799999177456 ], [ 365333.082999996840954, 256582.836800001561642 ], [ 365334.234300002455711, 256587.268800001591444 ], [ 365338.679399996995926, 256594.952599998563528 ], [ 365343.389300003647804, 256607.002099998295307 ], [ 365348.431599996984005, 256616.168200001120567 ], [ 365351.80460000038147, 256625.227800000458956 ], [ 365366.643700003623962, 256619.527499999850988 ], [ 365381.993500001728535, 256613.138799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702033500", "MAP": "D9-8026-T007", "PARCEL_NAM": "65 REM", "ACRE": null, "LONGITUDE": -64.86961642, "LATITUDE": 18.34353345, "OBJECTID_1": 22501, "PARCEL_NO_": "105702033500", "Tax_Legal_": "65 ESTATE SMITH BAY EAST END QUARTER", "Name": "FRANCIS, ANGELA", "Address": "PO Box 7862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59200, "Improved_V": 166600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.37887657100001, "SHAPE_Area": 1845.4099761499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365259.632700003683567, 257173.869699999690056 ], [ 365283.742200002074242, 257205.223000001162291 ], [ 365286.956600002944469, 257206.515900000929832 ], [ 365290.993600003421307, 257205.915699999779463 ], [ 365299.112499997019768, 257199.438200000673532 ], [ 365311.812399998307228, 257189.713899999856949 ], [ 365280.867399998009205, 257156.480599999427795 ], [ 365274.359200000762939, 257149.491099998354912 ], [ 365266.347999997437, 257140.887600000947714 ], [ 365247.578199997544289, 257160.939100001007318 ], [ 365249.432199999690056, 257162.51240000128746 ], [ 365256.62610000371933, 257169.959600001573563 ], [ 365259.382500000298023, 257173.544300001114607 ], [ 365259.632700003683567, 257173.869699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702035100", "MAP": "D9-8026-T007", "PARCEL_NAM": "65A", "ACRE": null, "LONGITUDE": -64.86992261, "LATITUDE": 18.3432282, "OBJECTID_1": 22518, "PARCEL_NO_": "105702035100", "Tax_Legal_": "65A SMITH BAY NOS, 1,2,3 EAST END QTR", "Name": "FRANCIS, EDWARD A", "Address": "6839 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.787693905, "SHAPE_Area": 783.68518890500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365247.26349999755621, 257122.828699998557568 ], [ 365227.368199996650219, 257140.267200000584126 ], [ 365236.622900001704693, 257151.641800001263618 ], [ 365239.19200000166893, 257153.82209999859333 ], [ 365247.578199997544289, 257160.939100001007318 ], [ 365266.347999997437, 257140.887600000947714 ], [ 365260.75789999961853, 257134.884100001305342 ], [ 365248.512800000607967, 257121.733600001782179 ], [ 365247.26349999755621, 257122.828699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704022300", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-7", "ACRE": "0.23", "LONGITUDE": -64.86953069, "LATITUDE": 18.33956203, "OBJECTID_1": 23526, "PARCEL_NO_": "105704022300", "Tax_Legal_": "SMITH BAY 100-7 EASTEND QTR", "Name": "FREEMAN, BENJAMIN & SANDRA", "Address": "851 E 213th St", "City": "Bronx", "State": "New York", "Zip": 10467, "Country": "United States", "Land_Value": 27400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.34841891799999, "SHAPE_Area": 998.15850050200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365306.578500002622604, 256717.358399998396635 ], [ 365271.956200003623962, 256726.627399999648333 ], [ 365273.252899996936321, 256732.709800001233816 ], [ 365280.301100000739098, 256757.254399999976158 ], [ 365312.693899996578693, 256741.054200001060963 ], [ 365308.762999996542931, 256729.200800001621246 ], [ 365307.998099997639656, 256724.339400000870228 ], [ 365306.578500002622604, 256717.358399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704022400", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-6", "ACRE": "0.23", "LONGITUDE": -64.86958471, "LATITUDE": 18.33933359, "OBJECTID_1": 23527, "PARCEL_NO_": "105704022400", "Tax_Legal_": "SMITH BAY 100-6 EAST END QUARTER", "Name": "FREDERICK, LLEWELLYN & GLORIA", "Address": "7830 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 1300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.418732091, "SHAPE_Area": 841.110208349 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365302.146999999880791, 256696.169300001114607 ], [ 365267.214800000190735, 256701.505899999290705 ], [ 365269.376000002026558, 256714.524000000208616 ], [ 365271.956200003623962, 256726.627399999648333 ], [ 365306.578500002622604, 256717.358399998396635 ], [ 365304.902300000190735, 256709.115299999713898 ], [ 365304.115800000727177, 256706.786800000816584 ], [ 365302.146999999880791, 256696.169300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704022500", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-5", "ACRE": "0.23", "LONGITUDE": -64.86962398, "LATITUDE": 18.33913896, "OBJECTID_1": 23528, "PARCEL_NO_": "105704022500", "Tax_Legal_": "SMITH BAY 100-5 EASTEND QTR.", "Name": "WILLIAMS, EVER & MARY SR", "Address": "60-57 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 64600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.551966869, "SHAPE_Area": 707.99378286000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365267.214800000190735, 256701.505899999290705 ], [ 365302.146999999880791, 256696.169300001114607 ], [ 365299.490099996328354, 256681.839899998158216 ], [ 365301.339500002563, 256678.517799999564886 ], [ 365263.697599999606609, 256679.607900001108646 ], [ 365264.006899997591972, 256682.182799998670816 ], [ 365267.214800000190735, 256701.505899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704022600", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-4", "ACRE": "0.23", "LONGITUDE": -64.86963117000001, "LATITUDE": 18.33891483, "OBJECTID_1": 23529, "PARCEL_NO_": "105704022600", "Tax_Legal_": "100-4 SMITH BAY NOS.1,2 &3 EAST END QTR.", "Name": "SYLVESTER, EDMANCIA N., MEDDY, & JOHNNY", "Address": "6511 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29900, "Improved_V": 146900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.49875241000001, "SHAPE_Area": 1237.42094658 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365263.697599999606609, 256679.607900001108646 ], [ 365301.339500002563, 256678.517799999564886 ], [ 365303.584600001573563, 256674.485100001096725 ], [ 365311.619000002741814, 256663.359200000762939 ], [ 365265.286799997091293, 256641.901099998503923 ], [ 365262.6891999989748, 256647.552700001746416 ], [ 365261.818199999630451, 256655.144900001585484 ], [ 365261.748000003397465, 256663.377000000327826 ], [ 365263.697599999606609, 256679.607900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704022900", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-1", "ACRE": "0.23", "LONGITUDE": -64.86927594, "LATITUDE": 18.33832856, "OBJECTID_1": 23532, "PARCEL_NO_": "105704022900", "Tax_Legal_": "100-1 SMITH BAY EAST END QUARTER", "Name": "ELIE, PETER & BRENDA", "Address": "PO BOX 307801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 106900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.68531607599999, "SHAPE_Area": 1128.3520171299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365299.316699996590614, 256605.022700000554323 ], [ 365303.960100002586842, 256607.463199999183416 ], [ 365320.908399999141693, 256616.370999999344349 ], [ 365337.497000001370907, 256625.089699998497963 ], [ 365338.718099996447563, 256620.521699998527765 ], [ 365337.263599999248981, 256607.073699999600649 ], [ 365333.813500002026558, 256600.165199998766184 ], [ 365331.925599999725819, 256593.236999999731779 ], [ 365327.579099997878075, 256581.034400001168251 ], [ 365320.644400000572205, 256578.763300001621246 ], [ 365312.597099997103214, 256576.482599999755621 ], [ 365308.408299997448921, 256578.38230000063777 ], [ 365305.855400003492832, 256584.166700001806021 ], [ 365303.278899997472763, 256592.715799998492002 ], [ 365299.316699996590614, 256605.022700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704022700", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-3", "ACRE": "0.28", "LONGITUDE": -64.86949881, "LATITUDE": 18.33873619, "OBJECTID_1": 23530, "PARCEL_NO_": "105704022700", "Tax_Legal_": "SMITH BAY 100-3 EASTEND QUARTER", "Name": "MEYERS, NECIA & JOHN", "Address": "PO Box 503132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 30300, "Improved_V": 126600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.69814508499999, "SHAPE_Area": 1033.46405428 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365265.286799997091293, 256641.901099998503923 ], [ 365311.619000002741814, 256663.359200000762939 ], [ 365314.192500002682209, 256659.795400001108646 ], [ 365323.994099996984005, 256645.09910000115633 ], [ 365283.833099998533726, 256626.616300001740456 ], [ 365277.326899997889996, 256633.10700000077486 ], [ 365267.60080000013113, 256638.938000001013279 ], [ 365265.975599996745586, 256640.402399998158216 ], [ 365265.286799997091293, 256641.901099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704022800", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-2", "ACRE": "0.23", "LONGITUDE": -64.86935669, "LATITUDE": 18.33856365, "OBJECTID_1": 23531, "PARCEL_NO_": "105704022800", "Tax_Legal_": "SMITH BAY 100-2 EASTEND QUARTER", "Name": "GORDON, LEROY S", "Address": "PO Box 9681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012681, "Country": "United States", "Land_Value": 75100, "Improved_V": 144900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.36469684100001, "SHAPE_Area": 1071.38994989 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365337.497000001370907, 256625.089699998497963 ], [ 365320.908399999141693, 256616.370999999344349 ], [ 365303.960100002586842, 256607.463199999183416 ], [ 365299.316699996590614, 256605.022700000554323 ], [ 365298.510399997234344, 256607.526999998837709 ], [ 365296.372900001704693, 256611.735399998724461 ], [ 365291.167300000786781, 256617.599399998784065 ], [ 365288.714199997484684, 256621.59010000154376 ], [ 365283.833099998533726, 256626.616300001740456 ], [ 365323.994099996984005, 256645.09910000115633 ], [ 365337.497000001370907, 256625.089699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704023800", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-19", "ACRE": "0.23", "LONGITUDE": -64.8686443, "LATITUDE": 18.33909618, "OBJECTID_1": 23541, "PARCEL_NO_": "105704023800", "Tax_Legal_": "SMITH BAY 100-19 EAST END QTR.", "Name": "PATRICIA A. HATCH", "Address": "PO Box 503024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053024, "Country": "United States", "Land_Value": 28900, "Improved_V": 386700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.63247869700001, "SHAPE_Area": 1097.39738027 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365392.075699999928474, 256699.063000001013279 ], [ 365406.688000001013279, 256698.201799999922514 ], [ 365406.699799999594688, 256691.323600001633167 ], [ 365406.525100000202656, 256690.770799998193979 ], [ 365398.941799998283386, 256666.772999998182058 ], [ 365384.260799996554852, 256669.868099998682737 ], [ 365365.686800003051758, 256673.093600001186132 ], [ 365367.990699999034405, 256686.622400000691414 ], [ 365368.667499996721745, 256701.826699998229742 ], [ 365392.075699999928474, 256699.063000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704023700", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-20", "ACRE": "0.23", "LONGITUDE": -64.86862297, "LATITUDE": 18.33934412, "OBJECTID_1": 23540, "PARCEL_NO_": "105704023700", "Tax_Legal_": "SMITH BAY 100-20 EASTEND QTR.", "Name": "FRANCIS, ALWAYNE & VADIS", "Address": "PO Box 502655", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 35900, "Improved_V": 222400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.430305563, "SHAPE_Area": 968.07965003000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365395.887900002300739, 256724.847600001841784 ], [ 365406.643500000238419, 256724.101100001484156 ], [ 365406.688000001013279, 256698.201799999922514 ], [ 365392.075699999928474, 256699.063000001013279 ], [ 365368.667499996721745, 256701.826699998229742 ], [ 365370.0625, 256727.380399998277426 ], [ 365395.887900002300739, 256724.847600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704023600", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-21", "ACRE": "0.23", "LONGITUDE": -64.86861937, "LATITUDE": 18.33957863, "OBJECTID_1": 23539, "PARCEL_NO_": "105704023600", "Tax_Legal_": "SMITH BAY 100-21 EAST END QTR.", "Name": "FORBES, RAWEIGH & JOYCELYN", "Address": "PO Box 8476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.280843299, "SHAPE_Area": 946.37639142700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365398.897399999201298, 256750.203499998897314 ], [ 365406.600000001490116, 256749.490499999374151 ], [ 365406.643500000238419, 256724.101100001484156 ], [ 365395.887900002300739, 256724.847600001841784 ], [ 365370.0625, 256727.380399998277426 ], [ 365369.839599996805191, 256753.554200001060963 ], [ 365398.897399999201298, 256750.203499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704023500", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-22", "ACRE": "0.23", "LONGITUDE": -64.86861987, "LATITUDE": 18.33982446, "OBJECTID_1": 23538, "PARCEL_NO_": "105704023500", "Tax_Legal_": "SMITH BAY 100-22 EASTEND QUARTER", "Name": "ALBERTHA WILKINS PAYNE & SHERLA S. FARRELL-SEALEY", "Address": "PO Box 12112", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8015112, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.11066886500001, "SHAPE_Area": 1059.5255985700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365402.691600002348423, 256778.098900001496077 ], [ 365406.551299996674061, 256777.872999999672174 ], [ 365406.600000001490116, 256749.490499999374151 ], [ 365398.897399999201298, 256750.203499998897314 ], [ 365369.839599996805191, 256753.554200001060963 ], [ 365368.788699999451637, 256782.254299998283386 ], [ 365402.691600002348423, 256778.098900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701046100", "MAP": "D9-2341-T83", "PARCEL_NAM": "1-3C", "ACRE": ".08", "LONGITUDE": -64.88062994000001, "LATITUDE": 18.34137504, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.764796064099997, "SHAPE_Area": 382.53993214100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364135.417999997735023, 256927.735700000077486 ], [ 364132.203500002622604, 256926.442899998277426 ], [ 364126.579099997878075, 256924.074799999594688 ], [ 364105.686899997293949, 256915.460099998861551 ], [ 364101.612199999392033, 256920.493000000715256 ], [ 364098.354599997401237, 256924.265999998897314 ], [ 364118.431500002741814, 256933.929499998688698 ], [ 364124.052299998700619, 256936.719700001180172 ], [ 364127.266800001263618, 256938.012600000947714 ], [ 364135.417999997735023, 256927.735700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702032100", "MAP": "G9-2150-T72", "PARCEL_NAM": "R.O.W.", "ACRE": null, "LONGITUDE": -64.86984734000001, "LATITUDE": 18.34215631, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.81170692200001, "SHAPE_Area": 778.90995783699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365314.143299996852875, 257037.808499999344349 ], [ 365216.722699999809265, 257007.899599999189377 ], [ 365214.81530000269413, 256999.058699999004602 ], [ 365210.520900003612041, 256998.848999999463558 ], [ 365205.078500002622604, 257004.223000001162291 ], [ 365205.566200003027916, 257011.010400000959635 ], [ 365313.130599997937679, 257044.238099999725819 ], [ 365313.362099997699261, 257041.234700001776218 ], [ 365314.143299996852875, 257037.808499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403035400", "MAP": "D9-7866-T006", "PARCEL_NAM": "15-51-D", "ACRE": ".510", "LONGITUDE": -64.91056172, "LATITUDE": 18.31837667, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.686342833, "SHAPE_Area": 2621.78971232 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360923.850299999117851, 254340.482799999415874 ], [ 360957.060199998319149, 254377.470199998468161 ], [ 360962.332299999892712, 254374.975699998438358 ], [ 360971.212499998509884, 254373.781800001859665 ], [ 360976.050399996340275, 254373.821400001645088 ], [ 361001.85419999808073, 254373.82149999961257 ], [ 361014.0945999994874, 254356.823100000619888 ], [ 361016.630400002002716, 254343.122699998319149 ], [ 361020.061599999666214, 254338.985700000077486 ], [ 360974.199299998581409, 254339.461599998176098 ], [ 360960.833099998533726, 254335.390700001269579 ], [ 360935.98480000346899, 254340.223700001835823 ], [ 360923.850299999117851, 254340.482799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403035300", "MAP": "D9-7917-T07", "PARCEL_NAM": "15-51-F", "ACRE": ".509", "LONGITUDE": -64.91090744, "LATITUDE": 18.31803718, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.21436812799999, "SHAPE_Area": 2003.4107537299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360960.833099998533726, 254335.390700001269579 ], [ 360963.182599999010563, 254294.714499998837709 ], [ 360913.944600000977516, 254297.058200001716614 ], [ 360913.822700001299381, 254326.900400001555681 ], [ 360923.850299999117851, 254340.482799999415874 ], [ 360935.98480000346899, 254340.223700001835823 ], [ 360960.833099998533726, 254335.390700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403035200", "MAP": "D9-7917-T07", "PARCEL_NAM": "15-51-E", "ACRE": ".571", "LONGITUDE": -64.91029934, "LATITUDE": 18.31800643, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.67739692200001, "SHAPE_Area": 3594.23277293 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360963.182599999010563, 254294.714499998837709 ], [ 360960.833099998533726, 254335.390700001269579 ], [ 360974.199299998581409, 254339.461599998176098 ], [ 361020.061599999666214, 254338.985700000077486 ], [ 361060.626199997961521, 254290.076200000941753 ], [ 360963.182599999010563, 254294.714499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701020100", "MAP": "A9-565-T001", "PARCEL_NAM": "53-1 REM", "ACRE": "7.09", "LONGITUDE": -64.87791856, "LATITUDE": 18.34613677, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.77261615999998, "SHAPE_Area": 5856.2240425299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364455.197400003671646, 257497.401999998837709 ], [ 364405.071000002324581, 257416.774500001221895 ], [ 364378.401000000536442, 257400.687800001353025 ], [ 364377.834299099165946, 257400.446945654082811 ], [ 364377.236660604772624, 257400.298658910731319 ], [ 364376.623099369113334, 257400.246665273443796 ], [ 364376.009030281100422, 257400.292271011392586 ], [ 364375.409880988649093, 257400.434330342628527 ], [ 364374.840704300266225, 257400.669274220301304 ], [ 364374.315800003707409, 257400.991200000047684 ], [ 364368.918300002813339, 257397.498700000345707 ], [ 364368.87266092345817, 257396.83780332954484 ], [ 364368.713354356703348, 257396.194772418268258 ], [ 364368.445186166325584, 257395.589005832240218 ], [ 364368.076246287324466, 257395.038777969690273 ], [ 364367.617664673656691, 257394.560687770397635 ], [ 364367.083275536831934, 257394.16915796889225 ], [ 364366.489200003445148, 257393.875999998301268 ], [ 364350.274499997496605, 257459.173300001770258 ], [ 364355.037799999117851, 257461.911200001835823 ], [ 364416.821800000965595, 257497.88060000166297 ], [ 364429.638300001621246, 257507.906899999827147 ], [ 364442.653099998831749, 257518.119100000709295 ], [ 364455.197400003671646, 257497.401999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502041800", "MAP": "A9-692-T006", "PARCEL_NAM": "J", "ACRE": "7.148", "LONGITUDE": -64.90596718, "LATITUDE": 18.33975286, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 791.71164479200002, "SHAPE_Area": 30367.479356299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361472.811700001358986, 256823.302000001072884 ], [ 361482.033699996769428, 256812.75 ], [ 361492.437399998307228, 256816.689800001680851 ], [ 361501.904500000178814, 256825.660399999469519 ], [ 361506.596000000834465, 256835.183899998664856 ], [ 361509.212700001895428, 256843.208200000226498 ], [ 361515.086900003254414, 256848.4037000015378 ], [ 361515.013199999928474, 256824.016600001603365 ], [ 361514.297100000083447, 256586.846200000494719 ], [ 361506.013800002634525, 256591.190999999642372 ], [ 361495.778800003230572, 256597.061200000345707 ], [ 361477.720399998128414, 256607.035000000149012 ], [ 361460.865299999713898, 256616.423300001770258 ], [ 361437.325300000607967, 256637.071400001645088 ], [ 361423.450900003314018, 256648.271200001239777 ], [ 361410.834399998188019, 256652.334899999201298 ], [ 361402.391999997198582, 256658.815600000321865 ], [ 361392.132299996912479, 256667.66330000013113 ], [ 361366.280299998819828, 256678.16780000180006 ], [ 361353.099500000476837, 256678.057900000363588 ], [ 361341.116899996995926, 256677.958000000566244 ], [ 361326.767599999904633, 256674.265099998563528 ], [ 361322.799500003457069, 256674.23200000077486 ], [ 361335.867299996316433, 256719.482599999755621 ], [ 361335.847499996423721, 256721.804499998688698 ], [ 361337.44030000269413, 256724.139499999582767 ], [ 361339.796300001442432, 256731.547100000083447 ], [ 361341.392800003290176, 256733.46000000089407 ], [ 361354.862700000405312, 256761.434599999338388 ], [ 361358.053800001740456, 256765.471500001847744 ], [ 361359.632299996912479, 256769.495200000703335 ], [ 361362.029600001871586, 256772.047899998724461 ], [ 361365.20269999653101, 256778.195599999278784 ], [ 361377.1554000005126, 256794.969799999147654 ], [ 361388.328699998557568, 256808.571299999952316 ], [ 361393.123400002717972, 256813.67680000141263 ], [ 361412.343599997460842, 256829.243900001049042 ], [ 361419.580600000917912, 256831.625199999660254 ], [ 361422.086800001561642, 256831.746599998325109 ], [ 361430.0591000020504, 256832.133099999278784 ], [ 361449.448399998247623, 256827.858800001442432 ], [ 361464.811499997973442, 256822.918299999088049 ], [ 361470.457500003278255, 256822.753400001674891 ], [ 361472.811700001358986, 256823.302000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502041800", "MAP": "A9-692-T006", "PARCEL_NAM": "1-12", "ACRE": "11.636", "LONGITUDE": -64.90442132, "LATITUDE": 18.33979315, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1099.9644948299999, "SHAPE_Area": 51430.678378600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361515.086900003254414, 256848.4037000015378 ], [ 361518.684799998998642, 256851.585999999195337 ], [ 361530.884800001978874, 256854.651700001209974 ], [ 361552.064400002360344, 256853.642900001257658 ], [ 361620.218299999833107, 256845.660700000822544 ], [ 361626.320699997246265, 256940.94819999858737 ], [ 361681.982199996709824, 256934.256999999284744 ], [ 361679.451700001955032, 256932.934500001370907 ], [ 361674.844300001859665, 256928.587999999523163 ], [ 361670.902300000190735, 256918.708399999886751 ], [ 361668.786799997091293, 256912.536499999463558 ], [ 361668.83049999922514, 256907.305799998342991 ], [ 361670.120099999010563, 256901.162300001829863 ], [ 361671.084799997508526, 256896.862399999052286 ], [ 361672.972999997437, 256893.185699999332428 ], [ 361675.173299998044968, 256889.20380000025034 ], [ 361681.108800001442432, 256882.791499998420477 ], [ 361687.018700003623962, 256879.456000000238419 ], [ 361697.907200001180172, 256873.08500000089407 ], [ 361702.591700002551079, 256868.200800001621246 ], [ 361703.257100000977516, 256862.667500000447035 ], [ 361702.361900001764297, 256858.659800000488758 ], [ 361698.383900001645088, 256853.087799999862909 ], [ 361692.731600001454353, 256846.152499999850988 ], [ 361688.737800002098083, 256837.317299999296665 ], [ 361690.9679000005126, 256829.170000001788139 ], [ 361695.850400000810623, 256818.490899998694658 ], [ 361700.69820000231266, 256811.98030000180006 ], [ 361702.535300001502037, 256807.231300000101328 ], [ 361701.990900002419949, 256800.675700001418591 ], [ 361697.831900000572205, 256796.472100000828505 ], [ 361659.71169999986887, 256769.353799998760223 ], [ 361654.96339999884367, 256763.954199999570847 ], [ 361654.409100003540516, 256758.589600000530481 ], [ 361656.281000003218651, 256749.671900000423193 ], [ 361662.391699999570847, 256735.429699998348951 ], [ 361670.349500000476837, 256715.247400000691414 ], [ 361693.464599996805191, 256673.7516999989748 ], [ 361700.149499997496605, 256662.491999998688698 ], [ 361702.026500001549721, 256652.978799998760223 ], [ 361702.695299997925758, 256644.646600000560284 ], [ 361701.01240000128746, 256630.93470000103116 ], [ 361694.506499998271465, 256620.755899999290705 ], [ 361674.280299998819828, 256603.315799999982119 ], [ 361656.980099998414516, 256594.238000001758337 ], [ 361642.670500002801418, 256585.780699998140335 ], [ 361629.574199996888638, 256575.546799998730421 ], [ 361615.848800003528595, 256568.881099998950958 ], [ 361597.909699998795986, 256564.562399998307228 ], [ 361576.345899999141693, 256563.786800000816584 ], [ 361559.190800003707409, 256564.977899998426437 ], [ 361553.670699998736382, 256566.415800001472235 ], [ 361553.611599996685982, 256566.056000001728535 ], [ 361552.954800002276897, 256566.569299999624491 ], [ 361514.297100000083447, 256586.846200000494719 ], [ 361515.013199999928474, 256824.016600001603365 ], [ 361515.086900003254414, 256848.4037000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504040901", "MAP": "D9-8154-T008", "PARCEL_NAM": "3-122", "ACRE": ".226", "LONGITUDE": -64.88361219, "LATITUDE": 18.32173211, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.72067424700001, "SHAPE_Area": 1232.1257108100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363842.095299996435642, 254737.170200001448393 ], [ 363812.223399996757507, 254726.636100001633167 ], [ 363812.027300000190735, 254727.138900000602007 ], [ 363797.996500000357628, 254763.110800001770258 ], [ 363827.201200000941753, 254772.269900001585484 ], [ 363834.569499999284744, 254759.242400001734495 ], [ 363841.187200002372265, 254739.664900001138449 ], [ 363842.095299996435642, 254737.170200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504047200", "MAP": "D9-8531-T011", "PARCEL_NAM": "3E-2-3", "ACRE": "0.37", "LONGITUDE": -64.88391065, "LATITUDE": 18.3216317, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.28225676, "SHAPE_Area": 1327.7759278799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363763.751999996602535, 254747.293299999088049 ], [ 363764.138800002634525, 254747.473799999803305 ], [ 363797.793799996376038, 254762.713799998164177 ], [ 363797.935500003397465, 254763.091699998825788 ], [ 363797.996500000357628, 254763.110800001770258 ], [ 363812.223399996757507, 254726.636100001633167 ], [ 363804.591899998486042, 254723.945000000298023 ], [ 363798.436200000345707, 254721.77419999986887 ], [ 363791.965999998152256, 254719.492600001394749 ], [ 363779.8141999989748, 254715.207299999892712 ], [ 363778.496699996292591, 254718.276999998837709 ], [ 363773.857600003480911, 254729.086199998855591 ], [ 363763.751999996602535, 254747.293299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504047100", "MAP": "D9-8531-T011", "PARCEL_NAM": "3E-2-2", "ACRE": "0.34", "LONGITUDE": -64.8837853, "LATITUDE": 18.32131293, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.14724394199999, "SHAPE_Area": 1315.0575249399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363791.298799999058247, 254680.64979999884963 ], [ 363789.005800001323223, 254687.039500001817942 ], [ 363783.817900002002716, 254702.085799999535084 ], [ 363779.8141999989748, 254715.207299999892712 ], [ 363798.436200000345707, 254721.77419999986887 ], [ 363798.605499997735023, 254721.373399998992682 ], [ 363804.591899998486042, 254723.945000000298023 ], [ 363812.223399996757507, 254726.636100001633167 ], [ 363825.5320999994874, 254692.515399999916553 ], [ 363813.4121999964118, 254687.086399998515844 ], [ 363791.298799999058247, 254680.64979999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504047400", "MAP": "D9-8531-T011", "PARCEL_NAM": "3E-2-5", "ACRE": "0.24", "LONGITUDE": -64.88356465, "LATITUDE": 18.32040937, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.47804477099999, "SHAPE_Area": 1008.04694661 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363832.801500000059605, 254597.124499998986721 ], [ 363820.901100002229214, 254592.653900001198053 ], [ 363793.197700001299381, 254582.246599998325109 ], [ 363793.200000002980232, 254582.411299999803305 ], [ 363794.859300002455711, 254586.694699998944998 ], [ 363796.057199999690056, 254589.787099998444319 ], [ 363801.2466000020504, 254597.569600000977516 ], [ 363806.629000000655651, 254605.547200001776218 ], [ 363842.535899996757507, 254618.903200000524521 ], [ 363852.760799996554852, 254622.706399999558926 ], [ 363857.0962999984622, 254611.591099999845028 ], [ 363849.200800001621246, 254603.342000000178814 ], [ 363849.115900002419949, 254603.253199998289347 ], [ 363832.801500000059605, 254597.124499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504047500", "MAP": "D9-8531-T011", "PARCEL_NAM": "3E-2-6", "ACRE": "0.23", "LONGITUDE": -64.88369683000001, "LATITUDE": 18.32017941, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.32752457199999, "SHAPE_Area": 994.42415383900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363820.901100002229214, 254592.653900001198053 ], [ 363832.801500000059605, 254597.124499998986721 ], [ 363849.115900002419949, 254603.253199998289347 ], [ 363797.23309999704361, 254549.046700000762939 ], [ 363796.065200001001358, 254554.740800000727177 ], [ 363795.148100003600121, 254559.212099999189377 ], [ 363793.079000003635883, 254573.7043999992311 ], [ 363793.197700001299381, 254582.246599998325109 ], [ 363820.901100002229214, 254592.653900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504047800", "MAP": "D9-8531-T011", "PARCEL_NAM": "3E-1-3", "ACRE": "0.23", "LONGITUDE": -64.88419278000001, "LATITUDE": 18.32113395, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.668950475, "SHAPE_Area": 827.12402804099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363756.076899997889996, 254693.147900000214577 ], [ 363760.989399999380112, 254694.880499999970198 ], [ 363770.524999998509884, 254698.243700001388788 ], [ 363775.470499999821186, 254699.987900000065565 ], [ 363782.805200003087521, 254682.4037000015378 ], [ 363776.826700001955032, 254681.928399998694658 ], [ 363771.140399999916553, 254679.336800001561642 ], [ 363768.234700001776218, 254677.300900001078844 ], [ 363763.379900000989437, 254673.899300001561642 ], [ 363747.380300000309944, 254662.688900001347065 ], [ 363743.639700002968311, 254672.533500000834465 ], [ 363738.202299997210503, 254686.843800000846386 ], [ 363756.076899997889996, 254693.147900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504047700", "MAP": "D9-8531-T010", "PARCEL_NAM": "3E-1-2", "ACRE": "0.26", "LONGITUDE": -64.88426625, "LATITUDE": 18.32134363, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.27252713199999, "SHAPE_Area": 1099.7689441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363746.2179000005126, 254719.133400000631809 ], [ 363751.463799998164177, 254720.295699998736382 ], [ 363760.636600002646446, 254722.328000001609325 ], [ 363766.978699997067451, 254723.7331000007689 ], [ 363769.893399998545647, 254715.523200001567602 ], [ 363775.055500000715256, 254700.982799999415874 ], [ 363775.470499999821186, 254699.987900000065565 ], [ 363770.524999998509884, 254698.243700001388788 ], [ 363760.989399999380112, 254694.880499999970198 ], [ 363756.076899997889996, 254693.147900000214577 ], [ 363738.202299997210503, 254686.843800000846386 ], [ 363735.188699997961521, 254694.775100000202656 ], [ 363727.508500002324581, 254714.988200001418591 ], [ 363746.2179000005126, 254719.133400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504047600", "MAP": "D9-8531-T010", "PARCEL_NAM": "3E-1-1", "ACRE": "0.24", "LONGITUDE": -64.88433264, "LATITUDE": 18.32154957, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.141484926, "SHAPE_Area": 809.93383582000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363721.074000000953674, 254731.922499999403954 ], [ 363757.788800001144409, 254744.510400000959635 ], [ 363757.807300001382828, 254744.519099999219179 ], [ 363763.765900000929832, 254732.782900001853704 ], [ 363766.978699997067451, 254723.7331000007689 ], [ 363760.636600002646446, 254722.328000001609325 ], [ 363751.463799998164177, 254720.295699998736382 ], [ 363746.2179000005126, 254719.133400000631809 ], [ 363727.508500002324581, 254714.988200001418591 ], [ 363726.45440000295639, 254717.762200001627207 ], [ 363721.074000000953674, 254731.922499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504044600", "MAP": "D9-8262-T009", "PARCEL_NAM": "3C REM", "ACRE": ".433", "LONGITUDE": -64.88324896, "LATITUDE": 18.31889826, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 395.78089304600002, "SHAPE_Area": 1452.7808008500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363926.837499998509884, 254391.432100001722574 ], [ 363920.454499997198582, 254398.095199998468161 ], [ 363915.925399996340275, 254403.525600001215935 ], [ 363907.956399999558926, 254406.0912000015378 ], [ 363892.249499998986721, 254407.98369999974966 ], [ 363866.971000000834465, 254409.1875 ], [ 363847.214000001549721, 254413.330200001597404 ], [ 363836.656300000846386, 254437.636399999260902 ], [ 363823.492899999022484, 254467.941799998283386 ], [ 363806.599899999797344, 254506.833200000226498 ], [ 363813.697899997234344, 254509.66609999909997 ], [ 363848.257299996912479, 254429.2837999984622 ], [ 363851.159599997103214, 254423.434500001370907 ], [ 363853.628799997270107, 254420.619699999690056 ], [ 363857.924900002777576, 254418.63060000166297 ], [ 363908.101800002157688, 254412.979100000113249 ], [ 363919.331000000238419, 254410.440999999642372 ], [ 363925.26240000128746, 254407.858199998736382 ], [ 363931.228100001811981, 254401.224700000137091 ], [ 363937.661300003528595, 254395.105399999767542 ], [ 363926.837499998509884, 254391.432100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "107502030300", "MAP": "D9-8927-T014", "PARCEL_NAM": "3F-6", "ACRE": "6.443", "LONGITUDE": -64.88330386, "LATITUDE": 18.32254765, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 790.23831228500001, "SHAPE_Area": 26323.082014200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363909.725000001490116, 254967.309399999678135 ], [ 363980.795100003480911, 254821.867499999701977 ], [ 363961.499300003051758, 254815.165600001811981 ], [ 363958.283100001513958, 254814.083799999207258 ], [ 363934.162000000476837, 254805.864900000393391 ], [ 363927.727700002491474, 254803.912399999797344 ], [ 363917.274400003254414, 254800.449299998581409 ], [ 363906.819300003349781, 254797.197299998253584 ], [ 363884.301899999380112, 254790.046999998390675 ], [ 363878.672100000083447, 254788.312100000679493 ], [ 363854.545699998736382, 254780.726399999111891 ], [ 363833.635499998927116, 254774.22239999845624 ], [ 363827.201200000941753, 254772.269900001585484 ], [ 363797.935500003397465, 254763.091699998825788 ], [ 363797.793799996376038, 254762.713799998164177 ], [ 363764.138800002634525, 254747.473799999803305 ], [ 363763.751999996602535, 254747.293299999088049 ], [ 363761.373199999332428, 254751.579100001603365 ], [ 363752.107500001788139, 254767.659699998795986 ], [ 363739.915899999439716, 254783.974800001829863 ], [ 363726.797799997031689, 254804.275499999523163 ], [ 363715.930399999022484, 254822.3766999989748 ], [ 363712.496100001037121, 254837.028200000524521 ], [ 363714.267200000584126, 254837.043200001120567 ], [ 363717.2533999979496, 254837.493000000715256 ], [ 363745.783699996769428, 254847.923900000751019 ], [ 363789.415399998426437, 254865.700100000947714 ], [ 363797.074600003659725, 254869.161400001496077 ], [ 363801.32599999755621, 254871.532499998807907 ], [ 363804.086099997162819, 254873.466400001198053 ], [ 363808.114900000393391, 254876.896999999880791 ], [ 363812.570799998939037, 254880.331199999898672 ], [ 363818.101700000464916, 254882.925400000065565 ], [ 363822.57379999756813, 254884.449200000613928 ], [ 363828.119000002741814, 254885.345300000160933 ], [ 363832.603699997067451, 254885.383200000971556 ], [ 363837.520900003612041, 254884.787999998778105 ], [ 363844.361800000071526, 254883.996800001710653 ], [ 363850.343199998140335, 254883.835099998861551 ], [ 363856.744499996304512, 254884.526200000196695 ], [ 363869.112700000405312, 254886.753699999302626 ], [ 363876.784500002861023, 254888.729200001806021 ], [ 363864.79280000180006, 254917.710200000554323 ], [ 363878.42620000243187, 254921.858899999409914 ], [ 363897.700699999928474, 254931.794900000095367 ], [ 363887.493400000035763, 254956.596400000154972 ], [ 363897.347300000488758, 254961.745099999010563 ], [ 363909.725000001490116, 254967.309399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703067400", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D8", "ACRE": ".421", "LONGITUDE": -64.87471956, "LATITUDE": 18.33169709, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.013555903, "SHAPE_Area": 2129.46312386 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364768.110799998044968, 255893.758000001311302 ], [ 364774.923900000751019, 255869.730999998748302 ], [ 364760.63740000128746, 255836.969399999827147 ], [ 364724.575699999928474, 255822.420000001788139 ], [ 364742.862300001084805, 255893.173300001770258 ], [ 364747.588600002229214, 255892.518399998545647 ], [ 364762.1621999964118, 255893.246300000697374 ], [ 364768.110799998044968, 255893.758000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704081300", "MAP": "D9-7985-T007", "PARCEL_NAM": "11-G-11", "ACRE": ".311", "LONGITUDE": -64.87379201, "LATITUDE": 18.33274002, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.085528842, "SHAPE_Area": 1634.59562041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364872.671700000762939, 255977.9375 ], [ 364842.208200000226498, 255946.561900001019239 ], [ 364829.524599999189377, 255950.00899999961257 ], [ 364828.674300000071526, 255951.770300000905991 ], [ 364828.674300000071526, 255962.482099998742342 ], [ 364838.461800001561642, 256004.469500001519918 ], [ 364869.153999999165535, 255999.790199998766184 ], [ 364866.491700001060963, 255995.407200001180172 ], [ 364865.873999997973442, 255988.693799998611212 ], [ 364866.92339999973774, 255984.342399999499321 ], [ 364870.005900003015995, 255979.002099998295307 ], [ 364872.671700000762939, 255977.9375 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87044479, "LATITUDE": 18.34355, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.5046205974100002, "SHAPE_Area": 0.09812646552 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365191.282899998128414, 257175.94370000064373 ], [ 365191.181100003421307, 257175.999099999666214 ], [ 365192.052699998021126, 257177.452599998563528 ], [ 365191.282899998128414, 257175.94370000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804030300", "MAP": "A9-228-T74", "PARCEL_NAM": "15S", "ACRE": null, "LONGITUDE": -64.8541805, "LATITUDE": 18.33475049, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 505.32186077900002, "SHAPE_Area": 6597.5692331099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366834.880300000309944, 256242.183600001037121 ], [ 366841.836000002920628, 256244.521800000220537 ], [ 366847.569899998605251, 256246.449299998581409 ], [ 366851.579999998211861, 256264.335400000214577 ], [ 366847.476999998092651, 256267.46510000154376 ], [ 366857.854999996721745, 256276.464000001549721 ], [ 366871.039200000464916, 256288.036200001835823 ], [ 366889.913000002503395, 256272.247499998658895 ], [ 366877.130699999630451, 256258.210700001567602 ], [ 366883.636900000274181, 256251.719999998807907 ], [ 366896.415600001811981, 256266.179000001400709 ], [ 366986.664399996399879, 256179.102699998766184 ], [ 367005.443599998950958, 256162.591299999505281 ], [ 366985.510300002992153, 256139.690200001001358 ], [ 366962.62780000269413, 256160.962999999523163 ], [ 366949.618900001049042, 256173.522199999541044 ], [ 366915.505699999630451, 256202.3739 ], [ 366903.333700001239777, 256211.351300001144409 ], [ 366885.508500002324581, 256221.337900001555681 ], [ 366842.621100001037121, 256238.929800000041723 ], [ 366834.880300000309944, 256242.183600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105702024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86717609, "LATITUDE": 18.34833378, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 370.30179263000002, "SHAPE_Area": 1589.9880864300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365530.261600002646446, 257705.421500001102686 ], [ 365505.42960000038147, 257686.008699998259544 ], [ 365490.17620000243187, 257678.073399998247623 ], [ 365462.079300001263618, 257663.278000000864267 ], [ 365453.161300003528595, 257668.904599998146296 ], [ 365478.850000001490116, 257682.413699999451637 ], [ 365500.525200001895428, 257693.779100000858307 ], [ 365519.74719999730587, 257709.135099999606609 ], [ 365532.560099996626377, 257719.583599999547005 ], [ 365555.057700000703335, 257729.055799998342991 ], [ 365587.200499996542931, 257742.195599999278784 ], [ 365600.05120000243187, 257748.211399998515844 ], [ 365609.648699998855591, 257755.184500001370907 ], [ 365609.554300002753735, 257744.701299998909235 ], [ 365600.139300003647804, 257737.868500001728535 ], [ 365590.495899997651577, 257733.989900000393391 ], [ 365563.979299999773502, 257723.007100000977516 ], [ 365547.9087999984622, 257716.331700000911951 ], [ 365543.893399998545647, 257714.399000000208616 ], [ 365538.272600002586842, 257711.608800001442432 ], [ 365530.261600002646446, 257705.421500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704021600", "MAP": "D9-1205-T74", "PARCEL_NAM": "115A", "ACRE": "3.00", "LONGITUDE": -64.86803221, "LATITUDE": 18.33864072, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 452.37735957299998, "SHAPE_Area": 11000.368676300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365381.993500001728535, 256613.138799998909235 ], [ 365406.525100000202656, 256690.770799998193979 ], [ 365503.615000002086163, 256687.730000000447035 ], [ 365494.547600001096725, 256622.682599999010563 ], [ 365515.099299997091293, 256560.86430000141263 ], [ 365381.993500001728535, 256613.138799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702034800", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-23", "ACRE": "0.23", "LONGITUDE": -64.8686234, "LATITUDE": 18.34006714, "OBJECTID_1": 22515, "PARCEL_NO_": "105702034800", "Tax_Legal_": "SMITH BAY 100-23 EASTEND QTR.", "Name": "JUDE, FITZROY S. & OLIVIA", "Address": "PO Box 8884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.66255266500001, "SHAPE_Area": 978.70988890299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365406.551299996674061, 256777.872999999672174 ], [ 365402.691600002348423, 256778.098900001496077 ], [ 365368.788699999451637, 256782.254299998283386 ], [ 365367.082599997520447, 256793.217199999839067 ], [ 365367.02139999717474, 256800.393899999558926 ], [ 365370.1908999979496, 256806.963799998164177 ], [ 365406.507399998605251, 256803.461300000548363 ], [ 365406.551299996674061, 256777.872999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704024000", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-17", "ACRE": "0.23", "LONGITUDE": -64.86878289000001, "LATITUDE": 18.33863553, "OBJECTID_1": 23543, "PARCEL_NO_": "105704024000", "Tax_Legal_": "SMITH BAY 100-17 EAST END QUARTER", "Name": "STAN, P. & A. , CHRISTOPHER, C. FRANS", "Address": "ALTONA & WELGUNST 3623-8", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.233535381, "SHAPE_Area": 993.95867701999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365377.183799996972084, 256648.700800001621246 ], [ 365391.281400002539158, 256642.531199999153614 ], [ 365381.993500001728535, 256613.138799998909235 ], [ 365366.643700003623962, 256619.527499999850988 ], [ 365351.80460000038147, 256625.227800000458956 ], [ 365353.16160000115633, 256628.872499998658895 ], [ 365359.464699998497963, 256646.233800001442432 ], [ 365361.80629999935627, 256655.329999998211861 ], [ 365377.183799996972084, 256648.700800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704020300", "MAP": "D9-7018-T002", "PARCEL_NAM": "10 REM", "ACRE": ".77", "LONGITUDE": -64.86723859, "LATITUDE": 18.33730813, "OBJECTID_1": 23508, "PARCEL_NO_": "105704020300", "Tax_Legal_": "115 REM R.O.W & 10 REM R.O.W. SMITH BAY 1, 2 & 3 EAST END QUARTER", "Name": "NEUMANN, ALFRED & IRMELA (TRUSTEES)", "Address": "PO Box 303830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 535.26147522799999, "SHAPE_Area": 2023.76124951 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365573.720100000500679, 256541.572500001639128 ], [ 365560.859099999070168, 256542.739799998700619 ], [ 365548.753100000321865, 256545.177299998700619 ], [ 365537.338299997150898, 256548.313799999654293 ], [ 365529.435099996626377, 256548.477200001478195 ], [ 365524.558799996972084, 256547.973499998450279 ], [ 365522.032200001180172, 256544.486800000071526 ], [ 365520.446900002658367, 256539.62220000103116 ], [ 365528.526100002229214, 256437.355999998748302 ], [ 365529.721699997782707, 256433.439100001007318 ], [ 365531.842799998819828, 256429.992199998348951 ], [ 365535.83500000089407, 256425.175200000405312 ], [ 365560.465300001204014, 256398.589099999517202 ], [ 365567.51410000026226, 256389.6402000002563 ], [ 365572.463500000536442, 256381.597300000488758 ], [ 365575.299599997699261, 256376.077399998903275 ], [ 365575.140399999916553, 256367.528799999505281 ], [ 365568.168600000441074, 256367.469200000166893 ], [ 365567.154100000858307, 256377.393800001591444 ], [ 365562.899899996817112, 256385.673599999397993 ], [ 365552.804300002753735, 256397.599599998444319 ], [ 365526.519599996507168, 256427.405600000172853 ], [ 365521.789200000464916, 256432.776299998164177 ], [ 365520.881300002336502, 256446.517000000923872 ], [ 365512.394299998879433, 256545.711300000548363 ], [ 365515.099299997091293, 256560.86430000141263 ], [ 365572.463600002229214, 256553.220300000160933 ], [ 365572.547799997031689, 256548.751899998635054 ], [ 365573.720100000500679, 256541.572500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704070300", "MAP": "D9-7018-T002", "PARCEL_NAM": "10-3", "ACRE": ".36", "LONGITUDE": -64.8672138, "LATITUDE": 18.33644238, "OBJECTID_1": 23690, "PARCEL_NO_": "105704070300", "Tax_Legal_": "10-3 ESTATE SMITH BAY 1,2&3 EAST END QTR", "Name": "EDWARDS,TRUSTEE, DWYANE A.", "Address": "PO Box 10199", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.29550898299999, "SHAPE_Area": 1467.62266927 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365567.577899999916553, 256373.247699998319149 ], [ 365525.588299997150898, 256370.664799999445677 ], [ 365522.181199997663498, 256426.843400001525879 ], [ 365521.789200000464916, 256432.776299998164177 ], [ 365526.519599996507168, 256427.405600000172853 ], [ 365552.804300002753735, 256397.599599998444319 ], [ 365562.899899996817112, 256385.673599999397993 ], [ 365567.154100000858307, 256377.393800001591444 ], [ 365567.577899999916553, 256373.247699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803010400", "MAP": null, "PARCEL_NAM": "19Dc", "ACRE": "9.76", "LONGITUDE": -64.86681042, "LATITUDE": 18.33720442, "OBJECTID_1": 23831, "PARCEL_NO_": "105803010400", "Tax_Legal_": "19Dc SMITH BAY NO.1,2,& 3 EAST END QTR", "Name": "LINDQVIST, DORIS M.", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 482400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 711.84178432600004, "SHAPE_Area": 2067.4691049600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365592.313699997961521, 256310.702300000935793 ], [ 365585.055399999022484, 256310.845199998468161 ], [ 365585.11710000038147, 256323.322999998927116 ], [ 365584.000200003385544, 256397.133799999952316 ], [ 365581.499600000679493, 256448.360300000756979 ], [ 365579.880300000309944, 256481.533300001174212 ], [ 365580.383799999952316, 256503.607200000435114 ], [ 365579.189400002360344, 256511.28999999910593 ], [ 365577.906300000846386, 256519.542899999767542 ], [ 365575.814999997615814, 256528.962699998170137 ], [ 365572.547799997031689, 256548.751899998635054 ], [ 365572.103299997746944, 256572.350299999117851 ], [ 365571.258199997246265, 256592.953899998217821 ], [ 365571.668300002813339, 256623.208799999207258 ], [ 365566.606100000441074, 256657.428300000727177 ], [ 365576.417300000786781, 256657.029899999499321 ], [ 365575.443199999630451, 256602.646099999547005 ], [ 365575.7820999994874, 256597.904599998146296 ], [ 365579.306599996984005, 256548.593499999493361 ], [ 365582.91889999806881, 256523.535300001502037 ], [ 365583.662500001490116, 256511.1239 ], [ 365587.415600001811981, 256448.479400001466274 ], [ 365588.581600002944469, 256429.017000000923872 ], [ 365592.24099999666214, 256341.718400001525879 ], [ 365592.313699997961521, 256310.702300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704021700", "MAP": "C9-177-T74", "PARCEL_NAM": "120", "ACRE": "4.09", "LONGITUDE": -64.86717706, "LATITUDE": 18.3347007, "OBJECTID_1": 23520, "PARCEL_NO_": "105704021700", "Tax_Legal_": "SMITH BAY ESTATE 120 No.1,2,&3 EASTEND QTR.", "Name": "SMITH, VALENTINE & OTHERS", "Address": "PO Box 7395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 258100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 592.32995232799999, "SHAPE_Area": 18463.995133600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365529.149400003254414, 256311.94539999961853 ], [ 365585.055399999022484, 256310.845199998468161 ], [ 365592.313699997961521, 256310.702300000935793 ], [ 365592.410099998116493, 256269.588100001215935 ], [ 365592.424300000071526, 256263.557000000029802 ], [ 365592.316799998283386, 256110.748100001364946 ], [ 365577.742899999022484, 256108.677700001746416 ], [ 365577.731899999082088, 256108.677000001072884 ], [ 365494.168200001120567, 256109.462699998170137 ], [ 365481.76630000025034, 256109.579500000923872 ], [ 365473.15089999884367, 256109.671700000762939 ], [ 365529.149400003254414, 256311.94539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704020300", "MAP": "D9-7018-T002", "PARCEL_NAM": "115 REM", "ACRE": ".39", "LONGITUDE": -64.86788694000001, "LATITUDE": 18.33765723, "OBJECTID_1": 23508, "PARCEL_NO_": "105704020300", "Tax_Legal_": "115 REM R.O.W & 10 REM R.O.W. SMITH BAY 1, 2 & 3 EAST END QUARTER", "Name": "NEUMANN, ALFRED & IRMELA (TRUSTEES)", "Address": "PO Box 303830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.14894604199998, "SHAPE_Area": 1003.9679225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365401.810099996626377, 256563.129700001329184 ], [ 365409.457999996840954, 256563.195099998265505 ], [ 365421.359700001776218, 256562.73369999974966 ], [ 365440.959799997508526, 256556.42509999871254 ], [ 365459.475000001490116, 256544.475900001823902 ], [ 365476.000299997627735, 256533.354499999433756 ], [ 365489.426500000059605, 256520.235500000417233 ], [ 365502.027099996805191, 256504.293800000101328 ], [ 365511.499899998307228, 256489.733199998736382 ], [ 365514.959200002253056, 256482.723499998450279 ], [ 365518.051600001752377, 256479.589899998158216 ], [ 365519.555600002408028, 256462.012200001627207 ], [ 365510.455899998545647, 256479.306200001388788 ], [ 365504.704099997878075, 256489.393500000238419 ], [ 365500.692699998617172, 256494.708999998867512 ], [ 365489.239600002765656, 256508.971099998801947 ], [ 365480.36710000038147, 256519.594900000840425 ], [ 365470.085600003600121, 256529.361900001764297 ], [ 365459.244699999690056, 256538.279500000178814 ], [ 365443.005199998617172, 256549.121800001710653 ], [ 365435.333099998533726, 256551.871899999678135 ], [ 365425.39019999653101, 256555.165800001472235 ], [ 365416.323600001633167, 256555.369899999350309 ], [ 365402.163099996745586, 256554.967300001531839 ], [ 365401.810099996626377, 256563.129700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704024600", "MAP": "D9-7018-T002", "PARCEL_NAM": "115-2", "ACRE": ".26", "LONGITUDE": -64.86754333, "LATITUDE": 18.3376279, "OBJECTID_1": 23548, "PARCEL_NO_": "105704024600", "Tax_Legal_": "115-2 ESTATE SMITH BAY 1,2&3 EASTEND QTR.", "Name": "BERRY RILEY, DONNA & CARDINAL RILEY", "Address": "6540 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 53600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.70458487400001, "SHAPE_Area": 1252.37376131 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365480.166400000452995, 256529.283700000494719 ], [ 365515.099299997091293, 256560.86430000141263 ], [ 365512.394299998879433, 256545.711300000548363 ], [ 365518.051600001752377, 256479.589899998158216 ], [ 365514.959200002253056, 256482.723499998450279 ], [ 365511.499899998307228, 256489.733199998736382 ], [ 365502.027099996805191, 256504.293800000101328 ], [ 365489.426500000059605, 256520.235500000417233 ], [ 365480.166400000452995, 256529.283700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704022000", "MAP": "F9-3428-T76", "PARCEL_NAM": "119-2", "ACRE": ".356", "LONGITUDE": -64.869239, "LATITUDE": 18.33794691, "OBJECTID_1": 23523, "PARCEL_NO_": "105704022000", "Tax_Legal_": "SMITH BAY 119-2 EAST END QTR", "Name": "PATRICE, ISABELLE", "Address": "PO Box 4034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.36180311499999, "SHAPE_Area": 1481.61098107 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365360.781099997460842, 256568.508299998939037 ], [ 365315.37610000371933, 256533.952899999916553 ], [ 365301.210799999535084, 256534.113400001078844 ], [ 365303.185000002384186, 256571.149000000208616 ], [ 365305.702399998903275, 256569.511599998921156 ], [ 365315.979699999094009, 256571.258299998939037 ], [ 365326.245099999010563, 256574.387299999594688 ], [ 365333.46509999781847, 256575.831399999558926 ], [ 365340.421099998056889, 256575.614399999380112 ], [ 365350.184500001370907, 256572.379900000989437 ], [ 365360.781099997460842, 256568.508299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704021000", "MAP": "D9-620-T66", "PARCEL_NAM": "106E", "ACRE": ".176", "LONGITUDE": -64.86841543, "LATITUDE": 18.33694756, "OBJECTID_1": 23514, "PARCEL_NO_": "105704021000", "Tax_Legal_": "SMITH BAY 106E EAST END", "Name": "EMANUEL, MARVA", "Address": "PO Box 8602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.09404783599999, "SHAPE_Area": 818.04856172699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365383.181900002062321, 256455.692600000649691 ], [ 365434.889399997889996, 256456.512499999254942 ], [ 365433.186899997293949, 256436.198600001633167 ], [ 365410.736199997365475, 256437.815000001341105 ], [ 365403.819799996912479, 256438.380399998277426 ], [ 365387.536700002849102, 256446.117600001394749 ], [ 365383.181900002062321, 256455.692600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704024800", "MAP": "D9-7018-T002", "PARCEL_NAM": "115-4", "ACRE": ".26", "LONGITUDE": -64.86771114, "LATITUDE": 18.33788728, "OBJECTID_1": 23550, "PARCEL_NO_": "105704024800", "Tax_Legal_": "115-4 ESTATE SMITH BAY NOS. 1,2 & 3 EAST END QUARTER", "Name": "ISAAC, VIGIL & NOVENA R.", "Address": "PO Box 502644", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.34454932400001, "SHAPE_Area": 1160.6258621500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365459.475000001490116, 256544.475900001823902 ], [ 365484.755199998617172, 256572.743000000715256 ], [ 365515.099299997091293, 256560.86430000141263 ], [ 365480.166400000452995, 256529.283700000494719 ], [ 365476.000299997627735, 256533.354499999433756 ], [ 365459.475000001490116, 256544.475900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704025000", "MAP": "D9-7018-T002", "PARCEL_NAM": "115-6", "ACRE": ".26", "LONGITUDE": -64.86796888000001, "LATITUDE": 18.33802441, "OBJECTID_1": 23552, "PARCEL_NO_": "105704025000", "Tax_Legal_": "115-6 ESTATE SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "MAYNARD SR. & JR., VERNAL", "Address": "PO Box 303213", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 41200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.688050659, "SHAPE_Area": 1101.2618042300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365440.959799997508526, 256556.42509999871254 ], [ 365443.602200001478195, 256588.853000000119209 ], [ 365484.755199998617172, 256572.743000000715256 ], [ 365459.475000001490116, 256544.475900001823902 ], [ 365440.959799997508526, 256556.42509999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704025400", "MAP": "D9-7018-T002", "PARCEL_NAM": "115-10", "ACRE": ".32", "LONGITUDE": -64.86864399, "LATITUDE": 18.33816987, "OBJECTID_1": 23556, "PARCEL_NO_": "105704025400", "Tax_Legal_": "115-10 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "TERVIER, SR. & JR. , RONALD", "Address": "PO Box 66", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.40897216900001, "SHAPE_Area": 1519.8019385699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365401.967100001871586, 256559.499400001019239 ], [ 365367.448499999940395, 256559.444299999624491 ], [ 365367.580600000917912, 256566.13740000128746 ], [ 365367.748700000345707, 256574.657200001180172 ], [ 365381.993500001728535, 256613.138799998909235 ], [ 365388.780199997127056, 256610.314100001007318 ], [ 365404.034699998795986, 256604.342399999499321 ], [ 365403.007399998605251, 256588.762699998915195 ], [ 365401.810099996626377, 256563.129700001329184 ], [ 365401.967100001871586, 256559.499400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704025200", "MAP": "D9-7018-T002", "PARCEL_NAM": "115-8", "ACRE": ".26", "LONGITUDE": -64.86831404, "LATITUDE": 18.33813665, "OBJECTID_1": 23554, "PARCEL_NO_": "105704025200", "Tax_Legal_": "115-8 ESTATES SMITH BAY 1,2,3 EAST END QTR", "Name": "GUISTE, HILTON", "Address": "PO Box 6112", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32700, "Improved_V": 116900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.45030264900001, "SHAPE_Area": 1420.1015726200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365401.810099996626377, 256563.129700001329184 ], [ 365403.007399998605251, 256588.762699998915195 ], [ 365404.034699998795986, 256604.342399999499321 ], [ 365443.602200001478195, 256588.853000000119209 ], [ 365440.959799997508526, 256556.42509999871254 ], [ 365421.359700001776218, 256562.73369999974966 ], [ 365409.457999996840954, 256563.195099998265505 ], [ 365401.810099996626377, 256563.129700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704025300", "MAP": "D9-7018-T002", "PARCEL_NAM": "115-9", "ACRE": ".35", "LONGITUDE": -64.86866526, "LATITUDE": 18.33779277, "OBJECTID_1": 23555, "PARCEL_NO_": "105704025300", "Tax_Legal_": "115-9 ESTATE SMITH BAY 1,2,3 EASTEND QTR", "Name": "MATTHEW, TAMMIE", "Address": "6250 11-5-5 Frydenhahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.27438032500001, "SHAPE_Area": 1236.8874337699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365402.163099996745586, 256554.967300001531839 ], [ 365398.443599998950958, 256517.114100001752377 ], [ 365390.002899996936321, 256519.38569999858737 ], [ 365369.555399999022484, 256525.405499998480082 ], [ 365367.332000002264977, 256553.543400000780821 ], [ 365367.448499999940395, 256559.444299999624491 ], [ 365401.967100001871586, 256559.499400001019239 ], [ 365402.163099996745586, 256554.967300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704025100", "MAP": "D9-7018-T002", "PARCEL_NAM": "115-7", "ACRE": ".35", "LONGITUDE": -64.86834233, "LATITUDE": 18.33773928, "OBJECTID_1": 23553, "PARCEL_NO_": "105704025100", "Tax_Legal_": "115-7 ESTATE SMITH BAY 1,2,3 EAST END QTR", "Name": "INDUSTRIOUS, IRMA E. & DENNIS M. TAUBITZ", "Address": "3286 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.68635597700001, "SHAPE_Area": 1524.5127353299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365451.570100001990795, 256543.403400000184774 ], [ 365443.631800003349781, 256542.087999999523163 ], [ 365421.137900002300739, 256508.041400000452995 ], [ 365411.297799997031689, 256513.654699999839067 ], [ 365398.443599998950958, 256517.114100001752377 ], [ 365402.163099996745586, 256554.967300001531839 ], [ 365416.323600001633167, 256555.369899999350309 ], [ 365425.39019999653101, 256555.165800001472235 ], [ 365435.333099998533726, 256551.871899999678135 ], [ 365443.005199998617172, 256549.121800001710653 ], [ 365451.570100001990795, 256543.403400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704024900", "MAP": "D9-7018-T002", "PARCEL_NAM": "115-5", "ACRE": ".32", "LONGITUDE": -64.86809429, "LATITUDE": 18.33758263, "OBJECTID_1": 23551, "PARCEL_NO_": "105704024900", "Tax_Legal_": "115-5 ESTATE SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "WILTSHIRE, LOUANNA N", "Address": "PO Box 12326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.73786529500001, "SHAPE_Area": 1368.89438995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365472.966499999165535, 256526.625199999660254 ], [ 365467.562700003385544, 256526.243099998682737 ], [ 365443.239900000393391, 256488.647399999201298 ], [ 365432.674500003457069, 256498.351100001484156 ], [ 365422.969099998474121, 256506.996800001710653 ], [ 365421.137900002300739, 256508.041400000452995 ], [ 365443.631800003349781, 256542.087999999523163 ], [ 365451.570100001990795, 256543.403400000184774 ], [ 365459.244699999690056, 256538.279500000178814 ], [ 365470.085600003600121, 256529.361900001764297 ], [ 365472.966499999165535, 256526.625199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704024700", "MAP": "D9-7018-T002", "PARCEL_NAM": "115-3", "ACRE": ".34", "LONGITUDE": -64.86788585, "LATITUDE": 18.33740874, "OBJECTID_1": 23549, "PARCEL_NO_": "105704024700", "Tax_Legal_": "115-3 ESTATE SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "NELSON, J, B, B. J. & E. & WILTSHIRE L", "Address": "PO Box 12326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.65274275199999, "SHAPE_Area": 1422.0640169400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365492.125900000333786, 256505.376899998635054 ], [ 365465.034000001847744, 256470.311500001698732 ], [ 365446.950599998235703, 256485.23930000141263 ], [ 365443.239900000393391, 256488.647399999201298 ], [ 365467.562700003385544, 256526.243099998682737 ], [ 365472.966499999165535, 256526.625199999660254 ], [ 365480.36710000038147, 256519.594900000840425 ], [ 365489.239600002765656, 256508.971099998801947 ], [ 365492.125900000333786, 256505.376899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704024500", "MAP": "D9-7018-T002", "PARCEL_NAM": "115-1", "ACRE": ".36", "LONGITUDE": -64.86762825, "LATITUDE": 18.33717541, "OBJECTID_1": 23547, "PARCEL_NO_": "105704024500", "Tax_Legal_": "115-1 ESTATE SMITH BAY 1,2&3 EASTEND QTR", "Name": "ALEXANDER, PAUL & MELANIE", "Address": "PO Box 11577", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56100, "Improved_V": 188600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.57346316300001, "SHAPE_Area": 1612.6634395200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365465.034000001847744, 256470.311500001698732 ], [ 365492.125900000333786, 256505.376899998635054 ], [ 365500.692699998617172, 256494.708999998867512 ], [ 365504.704099997878075, 256489.393500000238419 ], [ 365510.455899998545647, 256479.306200001388788 ], [ 365519.555600002408028, 256462.012200001627207 ], [ 365520.881300002336502, 256446.517000000923872 ], [ 365520.987499997019768, 256444.909800000488758 ], [ 365509.568400003015995, 256450.578400000929832 ], [ 365484.5574000030756, 256460.219500001519918 ], [ 365467.206399999558926, 256468.518300000578165 ], [ 365465.034000001847744, 256470.311500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704070800", "MAP": "D9-7018-T002", "PARCEL_NAM": "10-8", "ACRE": ".24", "LONGITUDE": -64.86698317, "LATITUDE": 18.33761578, "OBJECTID_1": 23695, "PARCEL_NO_": "105704070800", "Tax_Legal_": "10-8 ESTATE SMITH BAY No.2 1,2&3 EASTEND QTR.", "Name": "AUGUSTINE, DAVID & CAROLINE", "Address": "6710 Estate Smith Bay", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31200, "Improved_V": 195400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.158804269, "SHAPE_Area": 1100.4212697 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365550.932700000703335, 256503.164799999445677 ], [ 365547.524999998509884, 256545.514800000935793 ], [ 365548.753100000321865, 256545.177299998700619 ], [ 365560.859099999070168, 256542.739799998700619 ], [ 365573.720100000500679, 256541.572500001639128 ], [ 365575.7162000015378, 256529.348200000822544 ], [ 365575.715899996459484, 256529.409299999475479 ], [ 365577.906300000846386, 256519.542899999767542 ], [ 365579.189400002360344, 256511.28999999910593 ], [ 365580.383799999952316, 256503.607200000435114 ], [ 365550.932700000703335, 256503.164799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704070900", "MAP": "D9-7018-T002", "PARCEL_NAM": "10-9", "ACRE": ".25", "LONGITUDE": -64.86724288000001, "LATITUDE": 18.33764034, "OBJECTID_1": 23696, "PARCEL_NO_": "105704070900", "Tax_Legal_": "10-9 ESTATE SMITH BAY 1,2,3 EAST END QTR", "Name": "TALBERT, DAVID J. & SOLANGE A", "Address": "6705 Frydendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29700, "Improved_V": 167800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.33064019400001, "SHAPE_Area": 1207.5296596000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365547.524999998509884, 256545.514800000935793 ], [ 365550.932700000703335, 256503.164799999445677 ], [ 365528.951099999248981, 256502.834600001573563 ], [ 365523.044799998402596, 256506.738600000739098 ], [ 365520.446900002658367, 256539.62220000103116 ], [ 365522.032200001180172, 256544.486800000071526 ], [ 365524.558799996972084, 256547.973499998450279 ], [ 365529.435099996626377, 256548.477200001478195 ], [ 365537.338299997150898, 256548.313799999654293 ], [ 365547.524999998509884, 256545.514800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704070700", "MAP": "D9-7018-T002", "PARCEL_NAM": "10-7", "ACRE": ".29", "LONGITUDE": -64.86708757, "LATITUDE": 18.33731219, "OBJECTID_1": 23694, "PARCEL_NO_": "105704070700", "Tax_Legal_": "10-7 ESTATE SMITH BAY 1,2,3 EASTEND QTR", "Name": "HARRIGAN, KERRY", "Address": "PO Box 11658", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37700, "Improved_V": 377400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.5597395, "SHAPE_Area": 1601.9770732899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365580.207699999213219, 256474.825599998235703 ], [ 365528.913500003516674, 256474.114199999719858 ], [ 365525.239600002765656, 256478.956999998539686 ], [ 365523.044799998402596, 256506.738600000739098 ], [ 365528.951099999248981, 256502.834600001573563 ], [ 365580.383799999952316, 256503.607200000435114 ], [ 365579.880300000309944, 256481.533300001174212 ], [ 365580.207699999213219, 256474.825599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704070600", "MAP": "D9-7018-T002", "PARCEL_NAM": "10-6", "ACRE": ".30", "LONGITUDE": -64.86707612, "LATITUDE": 18.3370625, "OBJECTID_1": 23693, "PARCEL_NO_": "105704070600", "Tax_Legal_": "10-6 ESTATE SMITH BAY NO 1,2,&3 EAST END QTR.", "Name": "FRASER, CARLTON & CAROLYN", "Address": "PO Box 306911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.573595291, "SHAPE_Area": 1427.6736399399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365581.499600000679493, 256448.360300000756979 ], [ 365527.670800000429153, 256448.18299999833107 ], [ 365525.239600002765656, 256478.956999998539686 ], [ 365528.913500003516674, 256474.114199999719858 ], [ 365580.207699999213219, 256474.825599998235703 ], [ 365581.499600000679493, 256448.360300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704070500", "MAP": "D9-7018-T002", "PARCEL_NAM": "10-5", "ACRE": ".30", "LONGITUDE": -64.8670654, "LATITUDE": 18.33685266, "OBJECTID_1": 23692, "PARCEL_NO_": "105704070500", "Tax_Legal_": "10-5 SMITH BAY No.1,2&3 EASTEND QUARTER", "Name": "MORAGNE, JERRY & AMANDA COUGHENOUR", "Address": "1611 Hotel Cir S", "City": "San Diego", "State": "California", "Zip": 92108, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.902991165, "SHAPE_Area": 1068.56500246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365582.413199998438358, 256429.645899999886751 ], [ 365534.765500001609325, 256426.465700000524521 ], [ 365531.842799998819828, 256429.992199998348951 ], [ 365529.721699997782707, 256433.439100001007318 ], [ 365528.526100002229214, 256437.355999998748302 ], [ 365527.670800000429153, 256448.18299999833107 ], [ 365581.499600000679493, 256448.360300000756979 ], [ 365582.413199998438358, 256429.645899999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704070100", "MAP": "D9-7018-T002", "PARCEL_NAM": "10-1", "ACRE": ".28", "LONGITUDE": -64.86690965, "LATITUDE": 18.3359344, "OBJECTID_1": 23688, "PARCEL_NO_": "105704070100", "Tax_Legal_": "10-1 SMITH BAY 1,2&3 EASTEND QTR", "Name": "BROOKES, BENTLEY L. & LILLIANN C.", "Address": "PO Box 11522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30300, "Improved_V": 72300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.371864921, "SHAPE_Area": 1424.6191905600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365575.248800002038479, 256373.348900001496077 ], [ 365584.365800000727177, 256372.973900001496077 ], [ 365585.11710000038147, 256323.322999998927116 ], [ 365585.055399999022484, 256310.845199998468161 ], [ 365550.954899996519089, 256311.51630000025034 ], [ 365570.114100001752377, 256367.485800001770258 ], [ 365575.140399999916553, 256367.528799999505281 ], [ 365575.248800002038479, 256373.348900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704070400", "MAP": "D9-7018-T002", "PARCEL_NAM": "10-4", "ACRE": ".31", "LONGITUDE": -64.8669479, "LATITUDE": 18.33657864, "OBJECTID_1": 23691, "PARCEL_NO_": "105704070400", "Tax_Legal_": "10-4 SMITH BAY 1,2 & 3 EAST END QUARTER", "Name": "JAMES, LUCIEN", "Address": "PO Box 502211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 33500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.28003046000001, "SHAPE_Area": 1448.3893805099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365584.365800000727177, 256372.973900001496077 ], [ 365575.248800002038479, 256373.348900001496077 ], [ 365575.299599997699261, 256376.077399998903275 ], [ 365572.463500000536442, 256381.597300000488758 ], [ 365567.51410000026226, 256389.6402000002563 ], [ 365560.465300001204014, 256398.589099999517202 ], [ 365535.83500000089407, 256425.175200000405312 ], [ 365534.765500001609325, 256426.465700000524521 ], [ 365582.413199998438358, 256429.645899999886751 ], [ 365584.000200003385544, 256397.133799999952316 ], [ 365584.365800000727177, 256372.973900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704070200", "MAP": "D9-7018-T002", "PARCEL_NAM": "10-2", "ACRE": ".39", "LONGITUDE": -64.86716893000001, "LATITUDE": 18.33601339, "OBJECTID_1": 23689, "PARCEL_NO_": "105704070200", "Tax_Legal_": "10-2 ESTATE SMITH BAY No.2 1,2&3 EASTEND QTR.", "Name": "EDWARD FAMILY TRUST", "Address": "PO Box 10199", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60800, "Improved_V": 196300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.61807893100001, "SHAPE_Area": 2034.5552091 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365525.588299997150898, 256370.664799999445677 ], [ 365567.577899999916553, 256373.247699998319149 ], [ 365568.168600000441074, 256367.469200000166893 ], [ 365570.114100001752377, 256367.485800001770258 ], [ 365550.954899996519089, 256311.51630000025034 ], [ 365529.149400003254414, 256311.94539999961853 ], [ 365525.588299997150898, 256370.664799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704020500", "MAP": "D9-620-T66", "PARCEL_NAM": "106", "ACRE": ".176", "LONGITUDE": -64.86860415, "LATITUDE": 18.3375329, "OBJECTID_1": 23509, "PARCEL_NO_": "105704020500", "Tax_Legal_": "SMITH BAY 106 1,2&3 EASTEND", "Name": "EMANUEL, WARREN & MARVA", "Address": "PO Box 1274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.29178181200001, "SHAPE_Area": 649.90949854799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365426.606700003147125, 256503.756400000303984 ], [ 365371.331299997866154, 256506.24269999936223 ], [ 365370.539899997413158, 256509.646000001579523 ], [ 365369.555399999022484, 256525.405499998480082 ], [ 365390.002899996936321, 256519.38569999858737 ], [ 365411.297799997031689, 256513.654699999839067 ], [ 365422.969099998474121, 256506.996800001710653 ], [ 365426.606700003147125, 256503.756400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704020600", "MAP": "D9-620-T66", "PARCEL_NAM": "106A", "ACRE": ".176", "LONGITUDE": -64.86851136, "LATITUDE": 18.33741517, "OBJECTID_1": 23510, "PARCEL_NO_": "105704020600", "Tax_Legal_": "SMITH BAY 106A EAST END", "Name": "EMANUEL, MARVA M.", "Address": "PO Box 8602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.90425952000001, "SHAPE_Area": 663.45187751900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365437.986900001764297, 256493.471999999135733 ], [ 365374.530599996447563, 256493.885400000959635 ], [ 365373.480700001120567, 256497.000500001013279 ], [ 365371.331299997866154, 256506.24269999936223 ], [ 365426.606700003147125, 256503.756400000303984 ], [ 365432.674500003457069, 256498.351100001484156 ], [ 365437.986900001764297, 256493.471999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704020700", "MAP": "D9-620-T66", "PARCEL_NAM": "106B", "ACRE": ".176", "LONGITUDE": -64.86846148, "LATITUDE": 18.33731006, "OBJECTID_1": 23511, "PARCEL_NO_": "105704020700", "Tax_Legal_": "SMITH BAY 106B EAST END", "Name": "EMANUEL, MARVA M.", "Address": "PO Box 8602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.35205714700001, "SHAPE_Area": 747.599617706 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365436.955600000917912, 256481.166299998760223 ], [ 365378.227399997413158, 256481.63399999961257 ], [ 365377.549800001084805, 256484.927799999713898 ], [ 365374.530599996447563, 256493.885400000959635 ], [ 365437.986900001764297, 256493.471999999135733 ], [ 365436.955600000917912, 256481.166299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704020800", "MAP": "D9-620-T66", "PARCEL_NAM": "106C", "ACRE": ".176", "LONGITUDE": -64.86845452, "LATITUDE": 18.3372022, "OBJECTID_1": 23512, "PARCEL_NO_": "105704020800", "Tax_Legal_": "SMITH BAY 106C EAST END", "Name": "EMANUEL, MAUREEN", "Address": "PO Box 1274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.49793208, "SHAPE_Area": 657.872911434 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365435.997599996626377, 256469.734999999403954 ], [ 365380.574699997901917, 256469.995799999684095 ], [ 365380.209700003266335, 256471.9983000010252 ], [ 365378.227399997413158, 256481.63399999961257 ], [ 365436.955600000917912, 256481.166299998760223 ], [ 365435.997599996626377, 256469.734999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704020900", "MAP": "D9-620-T66", "PARCEL_NAM": "106D", "ACRE": ".176", "LONGITUDE": -64.86845146, "LATITUDE": 18.33708808, "OBJECTID_1": 23513, "PARCEL_NO_": "105704020900", "Tax_Legal_": "SMITH BAY 106D EAST END", "Name": "EMANUEL, WARREN", "Address": "PO Box 1274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.94525202700001, "SHAPE_Area": 737.41933548600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365434.889399997889996, 256456.512499999254942 ], [ 365383.181900002062321, 256455.692600000649691 ], [ 365380.574699997901917, 256469.995799999684095 ], [ 365435.997599996626377, 256469.734999999403954 ], [ 365434.889399997889996, 256456.512499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704025600", "MAP": "D9-5864-T95", "PARCEL_NAM": "119-3-1", "ACRE": ".333", "LONGITUDE": -64.86843145, "LATITUDE": 18.3365391, "OBJECTID_1": 23558, "PARCEL_NO_": "105704025600", "Tax_Legal_": "119-3-1 SMITH BAY & EASEMENT INT. NO. 1,2 &3 EAST END QTR.", "Name": "Emanuel, Clayton W.", "Address": "PO Box 1274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.93190549100001, "SHAPE_Area": 1765.95982878 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365410.736199997365475, 256437.815000001341105 ], [ 365411.405699998140335, 256421.667399998754263 ], [ 365437.16780000180006, 256379.16440000012517 ], [ 365427.272299997508526, 256361.569400001317263 ], [ 365398.412799999117851, 256389.446100000292063 ], [ 365396.462099999189377, 256401.815900001674891 ], [ 365393.12780000269413, 256418.8918999992311 ], [ 365388.667199999094009, 256443.631999999284744 ], [ 365387.536700002849102, 256446.117600001394749 ], [ 365403.819799996912479, 256438.380399998277426 ], [ 365410.736199997365475, 256437.815000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704024300", "MAP": "D9-5864-T95", "PARCEL_NAM": "119-3 REM", "ACRE": null, "LONGITUDE": -64.86810636, "LATITUDE": 18.33709034, "OBJECTID_1": 23545, "PARCEL_NO_": "105704024300", "Tax_Legal_": "119-3 REM SMITH BAY & EASEMENT INT. NO. 1,2 &3 EAST END QTR.", "Name": "Emanuel, Ryan C.", "Address": "7282 Estate Misgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.77203816799999, "SHAPE_Area": 916.37669600300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365443.876900002360344, 256435.993099998682737 ], [ 365433.186899997293949, 256436.198600001633167 ], [ 365437.986900001764297, 256493.471999999135733 ], [ 365446.950599998235703, 256485.23930000141263 ], [ 365462.729900002479553, 256472.213599998503923 ], [ 365448.388599999248981, 256448.072999998927116 ], [ 365443.876900002360344, 256435.993099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704024400", "MAP": "D9-5864-T95", "PARCEL_NAM": "119-3-2", "ACRE": ".248", "LONGITUDE": -64.86812392, "LATITUDE": 18.33622581, "OBJECTID_1": 23546, "PARCEL_NO_": "105704024400", "Tax_Legal_": "119-3-2 SMITH BAY No. 1,2 &3 EAST END QTR", "Name": "FRETT, ODEL", "Address": "7333 New Hampshire Ave", "City": "Takoma Park", "State": "Maryland", "Zip": 20912, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.66614328700001, "SHAPE_Area": 800.89309667600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365427.272299997508526, 256361.569400001317263 ], [ 365446.24379999935627, 256395.302200000733137 ], [ 365458.247800000011921, 256374.47580000013113 ], [ 365450.854299999773502, 256362.084499999880791 ], [ 365449.310000002384186, 256340.282200001180172 ], [ 365427.272299997508526, 256361.569400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704025500", "MAP": "D9-5864-T95", "PARCEL_NAM": "1193-3", "ACRE": ".255", "LONGITUDE": -64.86824503, "LATITUDE": 18.33664884, "OBJECTID_1": 23557, "PARCEL_NO_": "105704025500", "Tax_Legal_": "119-3-3 SMITH BAY & EASEMENT INT. NO. 1,2 &3 EAST END QTR", "Name": "Christian, Merlin", "Address": "333 Oakhurst Rd", "City": "Statesville", "State": "North Carolina", "Zip": 28677, "Country": "United States", "Land_Value": 36900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.46180837399999, "SHAPE_Area": 1310.07354399 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365437.16780000180006, 256379.16440000012517 ], [ 365411.405699998140335, 256421.667399998754263 ], [ 365410.736199997365475, 256437.815000001341105 ], [ 365433.186899997293949, 256436.198600001633167 ], [ 365443.876900002360344, 256435.993099998682737 ], [ 365443.107199996709824, 256424.805300001055002 ], [ 365445.346600003540516, 256403.741099998354912 ], [ 365446.24379999935627, 256395.302200000733137 ], [ 365437.16780000180006, 256379.16440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704021800", "MAP": "G9-2947-T79", "PARCEL_NAM": "119-1C", "ACRE": ".26", "LONGITUDE": -64.86919003, "LATITUDE": 18.33574595, "OBJECTID_1": 23521, "PARCEL_NO_": "105704021800", "Tax_Legal_": "SMITH BAY 119-1C EAST END QTR", "Name": "AMARO, ANTONIO SERRANO", "Address": "Estate Thomas 14-29", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.51875950199999, "SHAPE_Area": 979.986632826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365329.316399998962879, 256330.828200001269579 ], [ 365357.833599999547005, 256317.552099999040365 ], [ 365338.900100000202656, 256296.626299999654293 ], [ 365302.239200003445148, 256311.443900000303984 ], [ 365329.316399998962879, 256330.828200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704022100", "MAP": "G9-2739-T78", "PARCEL_NAM": "119-1B", "ACRE": ".23", "LONGITUDE": -64.86897592, "LATITUDE": 18.33601815, "OBJECTID_1": 23524, "PARCEL_NO_": "105704022100", "Tax_Legal_": "SMITH BAY 119-1B EAST END QTR", "Name": "MARTIN, ROY L", "Address": "PO Box 7252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.49769723199999, "SHAPE_Area": 848.96783764400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365344.760799996554852, 256364.498500000685453 ], [ 365374.473099999129772, 256346.852299999445677 ], [ 365362.21000000089407, 256325.541600000113249 ], [ 365334.822700001299381, 256338.067999999970198 ], [ 365344.760799996554852, 256364.498500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704021500", "MAP": "C9-177-T74", "PARCEL_NAM": "119", "ACRE": "19.318", "LONGITUDE": -64.86864959, "LATITUDE": 18.3357499, "OBJECTID_1": 23519, "PARCEL_NO_": "105704021500", "Tax_Legal_": "SMITH BAY PCL 119 EAST END QTR", "Name": "MULRAINE, L. & FRANCIS, P", "Address": "PO Box 502584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 836800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1883.8131034200001, "SHAPE_Area": 66027.113110399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365326.386399999260902, 256111.242899999022484 ], [ 365308.541900001466274, 256236.089699998497963 ], [ 365293.629600003361702, 256305.2804000005126 ], [ 365302.239200003445148, 256311.443900000303984 ], [ 365338.900100000202656, 256296.626299999654293 ], [ 365357.833599999547005, 256317.552099999040365 ], [ 365329.316399998962879, 256330.828200001269579 ], [ 365333.126000002026558, 256333.555399999022484 ], [ 365334.822700001299381, 256338.067999999970198 ], [ 365362.21000000089407, 256325.541600000113249 ], [ 365374.473099999129772, 256346.852299999445677 ], [ 365387.135399997234344, 256373.467700000852346 ], [ 365349.339900001883507, 256395.491700001060963 ], [ 365351.145900003612041, 256418.858899999409914 ], [ 365350.759499996900558, 256430.323499999940395 ], [ 365330.32039999961853, 256459.392099998891354 ], [ 365288.426899999380112, 256433.804900001734495 ], [ 365278.349399998784065, 256431.712000001221895 ], [ 365265.305900000035763, 256436.696800000965595 ], [ 365242.248499996960163, 256662.318199999630451 ], [ 365246.848499998450279, 256663.885899998247623 ], [ 365249.515399999916553, 256664.958000000566244 ], [ 365252.884499996900558, 256666.236900001764297 ], [ 365252.855200000107288, 256666.04839999973774 ], [ 365252.1621999964118, 256652.74379999935627 ], [ 365253.00450000166893, 256648.528900001198053 ], [ 365254.665600001811981, 256642.8429000005126 ], [ 365258.767300002276897, 256634.643800001591444 ], [ 365262.829499997198582, 256631.088500000536442 ], [ 365270.120399996638298, 256627.13740000128746 ], [ 365275.806000001728535, 256622.32880000025034 ], [ 365285.584200002253056, 256610.376499999314547 ], [ 365287.6503000035882, 256606.030200000852346 ], [ 365291.523599997162819, 256601.186500001698732 ], [ 365298.333700001239777, 256585.484900001436472 ], [ 365301.466499999165535, 256576.940600000321865 ], [ 365303.185000002384186, 256571.149000000208616 ], [ 365301.210799999535084, 256534.113400001078844 ], [ 365315.37610000371933, 256533.952899999916553 ], [ 365360.781099997460842, 256568.508299998939037 ], [ 365361.049800001084805, 256559.40260000154376 ], [ 365360.334799997508526, 256543.628699999302626 ], [ 365360.4358000010252, 256531.803700000047684 ], [ 365362.851000003516674, 256514.366999998688698 ], [ 365366.733000002801418, 256491.029899999499321 ], [ 365371.073299996554852, 256480.367300000041723 ], [ 365374.076700001955032, 256460.401500001549721 ], [ 365376.98139999806881, 256451.979299999773502 ], [ 365380.719099998474121, 256445.535100001841784 ], [ 365388.2837999984622, 256401.126499999314547 ], [ 365396.462099999189377, 256401.815900001674891 ], [ 365398.412799999117851, 256389.446100000292063 ], [ 365449.310000002384186, 256340.282200001180172 ], [ 365450.854299999773502, 256362.084499999880791 ], [ 365458.247800000011921, 256374.47580000013113 ], [ 365446.24379999935627, 256395.302200000733137 ], [ 365445.346600003540516, 256403.741099998354912 ], [ 365525.277500003576279, 256375.788400001823902 ], [ 365529.149400003254414, 256311.94539999961853 ], [ 365473.15089999884367, 256109.671700000762939 ], [ 365326.386399999260902, 256111.242899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91375813000001, "LATITUDE": 18.3265132, "OBJECTID_1": 32973, "PARCEL_NO_": "107401013300", "Tax_Legal_": "3G REM. FRENCHMAN'S BAY FRENCHMAN BAY QTR", "Name": "WEBSTER, ALLECIA", "Address": "1999 Creekdale Ln", "City": "Fleming Island", "State": "Florida", "Zip": 32003, "Country": "United States", "Land_Value": 66500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.33827173099999, "SHAPE_Area": 1432.71688064 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360613.729500003159046, 255225.469300001859665 ], [ 360611.48589999973774, 255223.610399998724461 ], [ 360604.390799999237061, 255231.148699998855591 ], [ 360602.649700000882149, 255231.815900001674891 ], [ 360595.142499998211861, 255239.650499999523163 ], [ 360653.01410000026226, 255283.101599998772144 ], [ 360660.432700000703335, 255264.163899999111891 ], [ 360627.189000003039837, 255236.620700001716614 ], [ 360618.343500003218651, 255229.292100001126528 ], [ 360613.729500003159046, 255225.469300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502023500", "MAP": "D9-3979-T87", "PARCEL_NAM": "1P-A", "ACRE": "1.00", "LONGITUDE": -64.90506442, "LATITUDE": 18.34620487, "OBJECTID_1": 19880, "PARCEL_NO_": "105502023500", "Tax_Legal_": "1P-A ESTATE WINTBERG No.3 GREAT NORTHSIDE QUARTER", "Name": "ATAVE, MUHAMMED K. & ASMA H. TAHA", "Address": "4394 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125200, "Improved_V": 458300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.61792223800001, "SHAPE_Area": 3097.0417285499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361522.116099998354912, 257384.685100000351667 ], [ 361522.162900000810623, 257379.19709999859333 ], [ 361496.372800000011921, 257383.912000000476837 ], [ 361506.487300001084805, 257426.465500000864267 ], [ 361545.956299997866154, 257499.884500000625849 ], [ 361547.751599997282028, 257499.096500001847744 ], [ 361553.433600001037121, 257494.710099998861551 ], [ 361559.144299998879433, 257486.946400001645088 ], [ 361560.814499996602535, 257480.204999998211861 ], [ 361561.721500001847744, 257468.391199998557568 ], [ 361560.162799999117851, 257462.0456000007689 ], [ 361556.215800002217293, 257452.091899998486042 ], [ 361551.437200002372265, 257445.08669999986887 ], [ 361545.845200002193451, 257438.919300001114607 ], [ 361543.433399997651577, 257438.05519999936223 ], [ 361537.986750346317422, 257432.452367704594508 ], [ 361532.909297551959753, 257426.512906847900013 ], [ 361528.221799999475479, 257420.261100001633167 ], [ 361526.523539821908344, 257414.771776946785394 ], [ 361525.132799997925758, 257409.196600001305342 ], [ 361522.859499998390675, 257392.079500000923872 ], [ 361522.116099998354912, 257384.685100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502020400", "MAP": "D9-3979-T87", "PARCEL_NAM": "1P-B", "ACRE": "1.00", "LONGITUDE": -64.90537945, "LATITUDE": 18.34624631, "OBJECTID_1": 19851, "PARCEL_NO_": "105502020400", "Tax_Legal_": "WINTBERG ESTATE 1P-B GREAT NORTHSIDE QTR", "Name": "KAPPEL, BRADLEY & TIARRA", "Address": "7 Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125200, "Improved_V": 401400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.01359811700002, "SHAPE_Area": 4695.7989013500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361460.087700001895428, 257392.218499999493361 ], [ 361463.294699996709824, 257422.630100000649691 ], [ 361486.888999998569489, 257481.807700000703335 ], [ 361488.224799998104572, 257482.144000001251698 ], [ 361514.730599999427795, 257494.393300000578165 ], [ 361538.050700001418591, 257501.97239999845624 ], [ 361542.085900001227856, 257501.583299998193979 ], [ 361545.956299997866154, 257499.884500000625849 ], [ 361506.487300001084805, 257426.465500000864267 ], [ 361496.372800000011921, 257383.912000000476837 ], [ 361480.166299998760223, 257386.874899998307228 ], [ 361464.810400001704693, 257390.971099998801947 ], [ 361460.087700001895428, 257392.218499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701032000", "MAP": "B9-144-T66", "PARCEL_NAM": "20-28", "ACRE": ".26", "LONGITUDE": -64.87695195000001, "LATITUDE": 18.34442498, "OBJECTID_1": 21968, "PARCEL_NO_": "105701032000", "Tax_Legal_": "20-28 SMITH BAY EAST EMD QTR", "Name": "JEREMY, WILMOUTH", "Address": "6139 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33800, "Improved_V": 170800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.20012572300001, "SHAPE_Area": 988.232031667 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364503.121899999678135, 257283.535399999469519 ], [ 364508.365199998021126, 257279.456900000572205 ], [ 364521.987999998033047, 257268.860399998724461 ], [ 364522.081500001251698, 257257.884300000965595 ], [ 364521.307599999010563, 257254.078299999237061 ], [ 364519.732699997723103, 257249.632399998605251 ], [ 364518.198600001633167, 257246.947900000959635 ], [ 364487.641699999570847, 257261.143899999558926 ], [ 364481.86429999768734, 257264.321299999952316 ], [ 364479.434299997985363, 257265.657699998468161 ], [ 364484.438928613555618, 257273.828878203232307 ], [ 364489.753234768286347, 257281.802121641580015 ], [ 364495.369400002062321, 257289.565699998289347 ], [ 364503.121899999678135, 257283.535399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701032300", "MAP": "B9-144-T66", "PARCEL_NAM": "20-26", "ACRE": "0.23", "LONGITUDE": -64.87714346, "LATITUDE": 18.34399157, "OBJECTID_1": 21971, "PARCEL_NO_": "105701032300", "Tax_Legal_": "20-26 SMITH BAY 1-2&3 EASTEND", "Name": "GEORGES, ORELIA & PETER GEORGES", "Address": "20-26 Smithbay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 174400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.30099110699999, "SHAPE_Area": 1515.4447738700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364498.294900000095367, 257210.404699999839067 ], [ 364488.767800003290176, 257193.346900001168251 ], [ 364460.037699997425079, 257203.514899998903275 ], [ 364463.603699997067451, 257212.442800000309944 ], [ 364465.149800002574921, 257220.265900000929832 ], [ 364467.600100003182888, 257230.634199999272823 ], [ 364468.812985588388983, 257237.657163110765396 ], [ 364470.456500001251698, 257244.592000000178814 ], [ 364471.464900001883507, 257244.268399998545647 ], [ 364471.472499996423721, 257244.265999998897314 ], [ 364509.823100000619888, 257231.960700001567602 ], [ 364509.242200002074242, 257230.874499998986721 ], [ 364507.885600000619888, 257228.337900001555681 ], [ 364498.294900000095367, 257210.404699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701032400", "MAP": "B9-144-T66", "PARCEL_NAM": "20-25", "ACRE": "0.28", "LONGITUDE": -64.87732569000001, "LATITUDE": 18.3436496, "OBJECTID_1": 21972, "PARCEL_NO_": "105701032400", "Tax_Legal_": "20-25 SMITH BAY 1,2&3 EAST END QTR", "Name": "GEORGES, MELVIN & ORELIA", "Address": "6743 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.239509957, "SHAPE_Area": 1063.9859544599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364484.792599998414516, 257186.229499999433756 ], [ 364480.82039999961853, 257179.230900000780821 ], [ 364475.219400003552437, 257174.11879999935627 ], [ 364467.996699996292591, 257170.048900000751019 ], [ 364446.361100003123283, 257154.039799999445677 ], [ 364443.940399996936321, 257154.231100000441074 ], [ 364446.238899998366833, 257168.393199998885393 ], [ 364450.149999998509884, 257182.568500000983477 ], [ 364451.748199999332428, 257184.270300000905991 ], [ 364456.498000003397465, 257194.652800001204014 ], [ 364460.037699997425079, 257203.514899998903275 ], [ 364488.767800003290176, 257193.346900001168251 ], [ 364484.792599998414516, 257186.229499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701032100", "MAP": "D9-144-T66", "PARCEL_NAM": "20-27", "ACRE": ".28", "LONGITUDE": -64.8770455, "LATITUDE": 18.34424781, "OBJECTID_1": 21969, "PARCEL_NO_": "105701032100", "Tax_Legal_": "EST SMITH BAY 20-27 EAST END QTR", "Name": "LEWIS, ELENORA", "Address": "9105 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.583115535, "SHAPE_Area": 842.78152243 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364487.641699999570847, 257261.143899999558926 ], [ 364499.963299997150898, 257255.419599998742342 ], [ 364518.198600001633167, 257246.947900000959635 ], [ 364517.063900001347065, 257244.96229999884963 ], [ 364512.582000002264977, 257237.11939999833703 ], [ 364509.823100000619888, 257231.960700001567602 ], [ 364471.472499996423721, 257244.265999998897314 ], [ 364471.464900001883507, 257244.268399998545647 ], [ 364470.456500001251698, 257244.592000000178814 ], [ 364472.318797962798271, 257250.79695792667917 ], [ 364474.52589999884367, 257256.887800000607967 ], [ 364479.028800003230572, 257264.963599998503923 ], [ 364479.434299997985363, 257265.657699998468161 ], [ 364481.86429999768734, 257264.321299999952316 ], [ 364487.641699999570847, 257261.143899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107501019900", "MAP": "A9-763-T011", "PARCEL_NAM": "A-REM", "ACRE": "66.714", "LONGITUDE": -64.89648799, "LATITUDE": 18.3264669, "OBJECTID_1": 37472, "PARCEL_NO_": "107501019900", "Tax_Legal_": "SEC A HOFFMAN&NELLEBURG NEW QTR", "Name": "GOV'T OF THE VI EMPLOYEES RETIREMENT SYSTEM", "Address": "48B-50C KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1606600, "Improved_V": 56800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2190.7772014000002, "SHAPE_Area": 261411.62573299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362390.002400003373623, 254896.240299999713898 ], [ 362353.642800003290176, 254904.808699999004602 ], [ 362308.39580000191927, 254915.415199998766184 ], [ 362261.534400001168251, 254926.2195999994874 ], [ 362270.038500003516674, 255158.49210000038147 ], [ 362271.408299997448921, 255187.000999998301268 ], [ 362272.042000003159046, 255207.271099999547005 ], [ 362287.802500002086163, 255628.953999999910593 ], [ 362463.656000003218651, 255621.316199999302626 ], [ 362656.449199996888638, 255612.972699999809265 ], [ 362665.391599997878075, 255509.821199998259544 ], [ 362661.269400000572205, 255425.772199999541044 ], [ 362644.102399997413158, 255358.504000000655651 ], [ 362614.235699996352196, 255267.48930000141263 ], [ 362618.300700001418591, 255168.941899999976158 ], [ 362619.339000001549721, 255141.719300001859665 ], [ 362599.799800001084805, 255068.943199999630451 ], [ 362601.572400003671646, 255050.170400001108646 ], [ 362604.090300001204014, 255038.580800000578165 ], [ 362619.712300002574921, 255003.245000001043081 ], [ 362622.303900003433228, 254983.001200001686811 ], [ 362616.828699998557568, 254963.113600000739098 ], [ 362601.641800001263618, 254947.368400000035763 ], [ 362587.145499996840954, 254850.568900000303984 ], [ 362544.324600003659725, 254860.350900001823902 ], [ 362514.429899998009205, 254867.283399999141693 ], [ 362482.918999999761581, 254874.624899998307228 ], [ 362452.2162000015378, 254881.761900000274181 ], [ 362428.784500002861023, 254887.269600000232458 ], [ 362422.32150000333786, 254888.694400001317263 ], [ 362390.002400003373623, 254896.240299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107501019900", "MAP": "A9-763-T011", "PARCEL_NAM": "A-2", "ACRE": null, "LONGITUDE": -64.89725359000001, "LATITUDE": 18.33188195, "OBJECTID_1": 37472, "PARCEL_NO_": "107501019900", "Tax_Legal_": "SEC A HOFFMAN&NELLEBURG NEW QTR", "Name": "GOV'T OF THE VI EMPLOYEES RETIREMENT SYSTEM", "Address": "48B-50C KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1606600, "Improved_V": 56800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1495.4226150500001, "SHAPE_Area": 57768.040929499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362332.075699999928474, 256202.224199999123812 ], [ 362336.369000002741814, 256175.562399998307228 ], [ 362344.530799999833107, 256153.819899998605251 ], [ 362351.208999998867512, 256130.577899999916553 ], [ 362354.296700000762939, 256119.202599998563528 ], [ 362355.855099998414516, 256111.780099999159575 ], [ 362356.515900000929832, 256092.453200001269579 ], [ 362358.124200001358986, 256079.082600001245737 ], [ 362362.371500000357628, 256048.38459999859333 ], [ 362366.190700002014637, 256009.255800001323223 ], [ 362367.366899996995926, 255987.950300000607967 ], [ 362370.97410000115633, 255974.100699998438358 ], [ 362385.818400003015995, 255928.620099999010563 ], [ 362390.443800002336502, 255912.300599999725819 ], [ 362394.986000001430511, 255905.894400000572205 ], [ 362399.520000003278255, 255900.479699999094009 ], [ 362406.048600003123283, 255895.081700000911951 ], [ 362415.070699997246265, 255889.704599998891354 ], [ 362483.058200001716614, 255870.446800000965595 ], [ 362539.567900002002716, 255852.084199998527765 ], [ 362550.073600001633167, 255848.206799998879433 ], [ 362556.107699997723103, 255842.308899998664856 ], [ 362558.655299998819828, 255835.886100001633167 ], [ 362558.696900002658367, 255830.929299999028444 ], [ 362555.746399998664856, 255825.947399999946356 ], [ 362548.316100001335144, 255819.936500001698732 ], [ 362530.941100001335144, 255810.372099999338388 ], [ 362479.269100002944469, 255787.135499998927116 ], [ 362447.461300000548363, 255773.980000000447035 ], [ 362429.076399996876717, 255765.894299998879433 ], [ 362416.164599999785423, 255759.341699998825788 ], [ 362411.206799998879433, 255755.830099999904633 ], [ 362409.249499998986721, 255751.352299999445677 ], [ 362407.811599999666214, 255744.400199998170137 ], [ 362407.84910000115633, 255739.939100001007318 ], [ 362408.883900001645088, 255735.486400000751019 ], [ 362410.903599999845028, 255732.528999999165535 ], [ 362432.48030000180006, 255716.847199998795986 ], [ 362435.497400000691414, 255713.898299999535084 ], [ 362436.511399999260902, 255711.923900000751019 ], [ 362437.537900000810623, 255708.462499998509884 ], [ 362437.060000002384186, 255705.980000000447035 ], [ 362435.593099996447563, 255702.497699998319149 ], [ 362427.630699999630451, 255700.447999998927116 ], [ 362404.213100001215935, 255697.772900000214577 ], [ 362390.299599997699261, 255691.707600001245737 ], [ 362311.351599998772144, 255627.931200001388788 ], [ 362287.802500002086163, 255628.953999999910593 ], [ 362306.272200003266335, 256111.242800001055002 ], [ 362307.519799999892712, 256154.105000000447035 ], [ 362309.530599996447563, 256202.039700001478195 ], [ 362332.031099997460842, 256202.223900001496077 ], [ 362332.075699999928474, 256202.224199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105603030900", "MAP": "D9-3668-T86", "PARCEL_NAM": "A-1 of A", "ACRE": "0.84", "LONGITUDE": -64.89489526, "LATITUDE": 18.33321946, "OBJECTID_1": 21574, "PARCEL_NO_": "105603030900", "Tax_Legal_": "A-1 SECTION A HOFFMAN NEW QTR", "Name": "GOV'T OF THE VI EMPLOYEES RETIREMENT SYSTEM", "Address": "48B-50C KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.804508433, "SHAPE_Area": 1506.9642326799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362642.092399999499321, 256021.488600000739098 ], [ 362642.957900002598763, 256019.724199999123812 ], [ 362629.932899996638298, 255987.636100001633167 ], [ 362605.937799997627735, 255995.363099999725819 ], [ 362592.06360000371933, 256001.060899998992682 ], [ 362596.452399998903275, 256016.690600000321865 ], [ 362602.67790000140667, 256035.243000000715256 ], [ 362641.883299998939037, 256021.03660000115633 ], [ 362642.092399999499321, 256021.488600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107501019900", "MAP": "A9-763-T011", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8957324, "LATITUDE": 18.33413679, "OBJECTID_1": 37472, "PARCEL_NO_": "107501019900", "Tax_Legal_": "SEC A HOFFMAN&NELLEBURG NEW QTR", "Name": "GOV'T OF THE VI EMPLOYEES RETIREMENT SYSTEM", "Address": "48B-50C KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1606600, "Improved_V": 56800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 851.37969921599995, "SHAPE_Area": 26458.781495899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362674.978100001811981, 256092.582499999552965 ], [ 362641.883299998939037, 256021.03660000115633 ], [ 362602.67790000140667, 256035.243000000715256 ], [ 362596.452399998903275, 256016.690600000321865 ], [ 362588.514300003647804, 256019.465500000864267 ], [ 362576.053700000047684, 256019.940000001341105 ], [ 362560.285300001502037, 256022.82149999961257 ], [ 362546.137800000607967, 256024.809500001370907 ], [ 362540.275399997830391, 256029.78999999910593 ], [ 362532.603299997746944, 256040.095199998468161 ], [ 362487.444200001657009, 256105.886199999600649 ], [ 362478.351300001144409, 256112.918499998748302 ], [ 362469.656800001859665, 256117.335200000554323 ], [ 362404.714400000870228, 256141.109299998730421 ], [ 362382.479500003159046, 256144.28999999910593 ], [ 362372.677799999713898, 256146.078499998897314 ], [ 362360.219400003552437, 256150.463599998503923 ], [ 362350.125299997627735, 256155.665399998426437 ], [ 362349.484300002455711, 256157.827100001275539 ], [ 362342.348999999463558, 256176.108199998736382 ], [ 362340.815499998629093, 256180.556699998676777 ], [ 362337.947400003671646, 256202.272300001233816 ], [ 362341.783100001513958, 256202.303700000047684 ], [ 362366.791299998760223, 256201.030699998140335 ], [ 362506.960600003600121, 256169.242499999701977 ], [ 362595.411899998784065, 256136.009399998933077 ], [ 362616.305699996650219, 256128.159099999815226 ], [ 362662.463600002229214, 256110.816500000655651 ], [ 362671.922899998724461, 256107.26240000128746 ], [ 362674.853200003504753, 256093.182900000363588 ], [ 362674.936800003051758, 256093.150800000876188 ], [ 362674.978100001811981, 256092.582499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107501019900", "MAP": "A9-763-T011", "PARCEL_NAM": null, "ACRE": "53.039", "LONGITUDE": -64.89573207, "LATITUDE": 18.33186305, "OBJECTID_1": 37472, "PARCEL_NO_": "107501019900", "Tax_Legal_": "SEC A HOFFMAN&NELLEBURG NEW QTR", "Name": "GOV'T OF THE VI EMPLOYEES RETIREMENT SYSTEM", "Address": "48B-50C KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1606600, "Improved_V": 56800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2123.0107431500001, "SHAPE_Area": 113228.742891 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362350.125299997627735, 256155.665399998426437 ], [ 362360.219400003552437, 256150.463599998503923 ], [ 362372.677799999713898, 256146.078499998897314 ], [ 362382.479500003159046, 256144.28999999910593 ], [ 362404.714400000870228, 256141.109299998730421 ], [ 362469.656800001859665, 256117.335200000554323 ], [ 362478.351300001144409, 256112.918499998748302 ], [ 362487.444200001657009, 256105.886199999600649 ], [ 362532.728000000119209, 256039.913400001823902 ], [ 362533.07209999859333, 256039.787999998778105 ], [ 362540.026399999856949, 256030.002900000661612 ], [ 362546.092500001192093, 256024.815900001674891 ], [ 362561.166900001466274, 256022.697700001299381 ], [ 362576.62389999628067, 256019.834300000220537 ], [ 362588.868199996650219, 256019.454500000923872 ], [ 362596.452399998903275, 256016.690600000321865 ], [ 362592.06360000371933, 256001.060899998992682 ], [ 362605.937799997627735, 255995.363099999725819 ], [ 362629.932899996638298, 255987.636100001633167 ], [ 362642.957900002598763, 256019.724199999123812 ], [ 362642.092399999499321, 256021.488600000739098 ], [ 362674.978100001811981, 256092.582499999552965 ], [ 362684.982199996709824, 255954.691700000315905 ], [ 362686.814300000667572, 255929.439399998635054 ], [ 362677.418300002813339, 255801.861999999731779 ], [ 362665.766000002622604, 255749.837600000202656 ], [ 362661.178099997341633, 255720.458099998533726 ], [ 362659.693099997937679, 255705.458299998193979 ], [ 362654.681900002062321, 255631.112300001084805 ], [ 362656.449199996888638, 255612.972699999809265 ], [ 362463.656000003218651, 255621.316199999302626 ], [ 362319.332299999892712, 255627.584499999880791 ], [ 362337.359700001776218, 255641.196299999952316 ], [ 362353.700099997222424, 255655.21339999884367 ], [ 362373.535499997437, 255668.76410000026226 ], [ 362383.430299997329712, 255678.265700001269579 ], [ 362391.862300001084805, 255683.789299998432398 ], [ 362397.331200003623962, 255685.817999999970198 ], [ 362410.259700000286102, 255690.387899998575449 ], [ 362421.230899997055531, 255690.480000000447035 ], [ 362431.703400000929832, 255690.567899998277426 ], [ 362442.146799996495247, 255694.125500001013279 ], [ 362447.087899997830391, 255699.619800001382828 ], [ 362449.481499999761581, 255711.537099998444319 ], [ 362442.936099998652935, 255718.91780000180006 ], [ 362424.862700000405312, 255733.1418999992311 ], [ 362418.342299997806549, 255737.548599999397993 ], [ 362417.793700002133846, 255743.492499999701977 ], [ 362420.224799998104572, 255750.948600001633167 ], [ 362421.691699996590614, 255754.430900000035763 ], [ 362429.130400002002716, 255759.450500000268221 ], [ 362551.852700002491474, 255814.513399999588728 ], [ 362558.780199997127056, 255821.015799999237061 ], [ 362563.717100001871586, 255827.005800001323223 ], [ 362566.135600000619888, 255835.948899999260902 ], [ 362566.093999996781349, 255840.905699998140335 ], [ 362563.542199999094009, 255847.824200000613928 ], [ 362561.01129999756813, 255852.264299999922514 ], [ 362547.999700002372265, 255857.607900001108646 ], [ 362421.000799998641014, 255896.198499999940395 ], [ 362413.487300001084805, 255900.101199999451637 ], [ 362408.462999999523163, 255904.520399998873472 ], [ 362397.383799999952316, 255917.315900001674891 ], [ 362375.424800001084805, 255978.599399998784065 ], [ 362374.838799998164177, 255989.004399999976158 ], [ 362373.17230000346899, 256009.314399998635054 ], [ 362370.350400000810623, 256048.451499998569489 ], [ 362363.418499998748302, 256101.929499998688698 ], [ 362362.828299999237061, 256112.829999998211861 ], [ 362359.74889999628067, 256123.213899999856949 ], [ 362355.681000001728535, 256136.931200001388788 ], [ 362350.125299997627735, 256155.665399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107501019900", "MAP": "A9-763-T011", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8967564, "LATITUDE": 18.33196354, "OBJECTID_1": 37472, "PARCEL_NO_": "107501019900", "Tax_Legal_": "SEC A HOFFMAN&NELLEBURG NEW QTR", "Name": "GOV'T OF THE VI EMPLOYEES RETIREMENT SYSTEM", "Address": "48B-50C KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1606600, "Improved_V": 56800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1770.9778080799999, "SHAPE_Area": 6162.2655943399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362342.329999998211861, 256159.682599999010563 ], [ 362336.369000002741814, 256175.562399998307228 ], [ 362332.075699999928474, 256202.224199999123812 ], [ 362337.947400003671646, 256202.272300001233816 ], [ 362340.815499998629093, 256180.556699998676777 ], [ 362342.348999999463558, 256176.108199998736382 ], [ 362349.484300002455711, 256157.827100001275539 ], [ 362350.125299997627735, 256155.665399998426437 ], [ 362359.74889999628067, 256123.213899999856949 ], [ 362362.828299999237061, 256112.829999998211861 ], [ 362363.418499998748302, 256101.929499998688698 ], [ 362370.350400000810623, 256048.451499998569489 ], [ 362373.17230000346899, 256009.314399998635054 ], [ 362374.838799998164177, 255989.004399999976158 ], [ 362375.424800001084805, 255978.599399998784065 ], [ 362397.383799999952316, 255917.315900001674891 ], [ 362408.462999999523163, 255904.520399998873472 ], [ 362413.487300001084805, 255900.101199999451637 ], [ 362421.000799998641014, 255896.198499999940395 ], [ 362547.999700002372265, 255857.607900001108646 ], [ 362561.01129999756813, 255852.264299999922514 ], [ 362563.542199999094009, 255847.824200000613928 ], [ 362566.093999996781349, 255840.905699998140335 ], [ 362566.135600000619888, 255835.948899999260902 ], [ 362563.717100001871586, 255827.005800001323223 ], [ 362558.780199997127056, 255821.015799999237061 ], [ 362551.852700002491474, 255814.513399999588728 ], [ 362429.130400002002716, 255759.450500000268221 ], [ 362421.691699996590614, 255754.430900000035763 ], [ 362420.224799998104572, 255750.948600001633167 ], [ 362417.793700002133846, 255743.492499999701977 ], [ 362418.342299997806549, 255737.548599999397993 ], [ 362424.862700000405312, 255733.1418999992311 ], [ 362442.936099998652935, 255718.91780000180006 ], [ 362449.481499999761581, 255711.537099998444319 ], [ 362447.087899997830391, 255699.619800001382828 ], [ 362442.146799996495247, 255694.125500001013279 ], [ 362431.703400000929832, 255690.567899998277426 ], [ 362421.230899997055531, 255690.480000000447035 ], [ 362410.259700000286102, 255690.387899998575449 ], [ 362397.331200003623962, 255685.817999999970198 ], [ 362391.862300001084805, 255683.789299998432398 ], [ 362383.430299997329712, 255678.265700001269579 ], [ 362373.535499997437, 255668.76410000026226 ], [ 362353.700099997222424, 255655.21339999884367 ], [ 362337.359700001776218, 255641.196299999952316 ], [ 362319.332299999892712, 255627.584499999880791 ], [ 362311.351599998772144, 255627.931200001388788 ], [ 362390.299599997699261, 255691.707600001245737 ], [ 362404.213100001215935, 255697.772900000214577 ], [ 362427.630699999630451, 255700.447999998927116 ], [ 362435.593099996447563, 255702.497699998319149 ], [ 362437.060000002384186, 255705.980000000447035 ], [ 362437.537900000810623, 255708.462499998509884 ], [ 362436.511399999260902, 255711.923900000751019 ], [ 362435.497400000691414, 255713.898299999535084 ], [ 362432.48030000180006, 255716.847199998795986 ], [ 362410.903599999845028, 255732.528999999165535 ], [ 362408.883900001645088, 255735.486400000751019 ], [ 362407.84910000115633, 255739.939100001007318 ], [ 362407.811599999666214, 255744.400199998170137 ], [ 362409.249499998986721, 255751.352299999445677 ], [ 362411.206799998879433, 255755.830099999904633 ], [ 362416.164599999785423, 255759.341699998825788 ], [ 362429.076399996876717, 255765.894299998879433 ], [ 362447.461300000548363, 255773.980000000447035 ], [ 362479.269100002944469, 255787.135499998927116 ], [ 362530.941100001335144, 255810.372099999338388 ], [ 362548.316100001335144, 255819.936500001698732 ], [ 362555.746399998664856, 255825.947399999946356 ], [ 362558.696900002658367, 255830.929299999028444 ], [ 362558.655299998819828, 255835.886100001633167 ], [ 362556.107699997723103, 255842.308899998664856 ], [ 362550.073600001633167, 255848.206799998879433 ], [ 362539.567900002002716, 255852.084199998527765 ], [ 362483.058200001716614, 255870.446800000965595 ], [ 362415.070699997246265, 255889.704599998891354 ], [ 362406.048600003123283, 255895.081700000911951 ], [ 362399.520000003278255, 255900.479699999094009 ], [ 362394.986000001430511, 255905.894400000572205 ], [ 362390.443800002336502, 255912.300599999725819 ], [ 362385.818400003015995, 255928.620099999010563 ], [ 362370.97410000115633, 255974.100699998438358 ], [ 362367.366899996995926, 255987.950300000607967 ], [ 362366.190700002014637, 256009.255800001323223 ], [ 362362.371500000357628, 256048.38459999859333 ], [ 362358.124200001358986, 256079.082600001245737 ], [ 362356.515900000929832, 256092.453200001269579 ], [ 362355.855099998414516, 256111.780099999159575 ], [ 362354.296700000762939, 256119.202599998563528 ], [ 362351.208999998867512, 256130.577899999916553 ], [ 362344.530799999833107, 256153.819899998605251 ], [ 362342.329999998211861, 256159.682599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107504051000", "MAP": "D9-2277-T83", "PARCEL_NAM": "4B-A", "ACRE": null, "LONGITUDE": -64.8845958, "LATITUDE": 18.31690909, "OBJECTID_1": 37850, "PARCEL_NO_": "107504051000", "Tax_Legal_": "4B-A BOVONI/EASTERN PART FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE RAMON", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 245000, "Improved_V": 641600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.38063136322000002, "SHAPE_Area": 0.00105718489 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363720.733400002121925, 254215.265700001269579 ], [ 363720.794799998402596, 254215.092399999499321 ], [ 363720.784299999475479, 254215.087600000202656 ], [ 363720.733400002121925, 254215.265700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107504051200", "MAP": "A9-438-T93", "PARCEL_NAM": "4B-C", "ACRE": ".99", "LONGITUDE": -64.88421376, "LATITUDE": 18.3168268, "OBJECTID_1": 37852, "PARCEL_NO_": "107504051200", "Tax_Legal_": "4B-C ESTATE BOVONI (EASTERN PART FRENCHMAN'S BAY QTR", "Name": "LIMA, JOSE R", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 245000, "Improved_V": 354600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.10581158799999, "SHAPE_Area": 3650.07893496 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363739.874399997293949, 254161.218100000172853 ], [ 363720.794799998402596, 254215.092399999499321 ], [ 363784.926899999380112, 254244.612199999392033 ], [ 363792.270099997520447, 254234.539799999445677 ], [ 363797.997000001370907, 254224.876400001347065 ], [ 363803.776000000536442, 254209.091699998825788 ], [ 363746.887500002980232, 254166.407400000840425 ], [ 363739.874399997293949, 254161.218100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107504051000", "MAP": "A9-438-T93", "PARCEL_NAM": "4B-A", "ACRE": "1.11", "LONGITUDE": -64.88447168, "LATITUDE": 18.31740102, "OBJECTID_1": 37850, "PARCEL_NO_": "107504051000", "Tax_Legal_": "4B-A BOVONI/EASTERN PART FRENCHMAN BAY QTR.", "Name": "LIMA, JOSE RAMON", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 245000, "Improved_V": 641600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.59778034300001, "SHAPE_Area": 5242.2618599400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363720.794799998402596, 254215.092399999499321 ], [ 363720.733400002121925, 254215.265700001269579 ], [ 363705.182700000703335, 254269.725400000810623 ], [ 363691.981299996376038, 254311.971900001168251 ], [ 363742.324400000274181, 254323.423599999397993 ], [ 363743.274499997496605, 254306.5439000017941 ], [ 363747.4121999964118, 254294.1233000010252 ], [ 363750.684199996292591, 254288.66160000115633 ], [ 363758.835400000214577, 254278.384799998253584 ], [ 363759.661499999463558, 254276.069499999284744 ], [ 363784.926899999380112, 254244.612199999392033 ], [ 363720.794799998402596, 254215.092399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107504051100", "MAP": "D9-8780-T013", "PARCEL_NAM": "4B-B", "ACRE": "3.06", "LONGITUDE": -64.88499721, "LATITUDE": 18.31694845, "OBJECTID_1": 37851, "PARCEL_NO_": "107504051100", "Tax_Legal_": "4B-B ESTATE BOVONI FRENCHMAN'S BAY QTR.", "Name": "LIMA, AGUSTIN J.", "Address": "PO BOX 8104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 259700, "Improved_V": 200000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 508.61100408300001, "SHAPE_Area": 13428.7044384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363739.874399997293949, 254161.218100000172853 ], [ 363670.626800000667572, 254115.154199998825788 ], [ 363647.347300000488758, 254192.394400000572205 ], [ 363614.339400000870228, 254288.690499998629093 ], [ 363620.468599997460842, 254290.405200000852346 ], [ 363625.669799998402596, 254291.860300000756979 ], [ 363650.598899997770786, 254299.874800000339746 ], [ 363672.324400000274181, 254305.329999998211861 ], [ 363675.542499996721745, 254306.200699999928474 ], [ 363691.981299996376038, 254311.971900001168251 ], [ 363705.182700000703335, 254269.725400000810623 ], [ 363707.402099996805191, 254261.952899999916553 ], [ 363705.719800002872944, 254261.643800001591444 ], [ 363705.752499997615814, 254261.440000001341105 ], [ 363707.408900000154972, 254261.929200001060963 ], [ 363720.733400002121925, 254215.265700001269579 ], [ 363720.784100003540516, 254215.087999999523163 ], [ 363720.794799998402596, 254215.092399999499321 ], [ 363739.874399997293949, 254161.218100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107504050200", "MAP": "D9-8780-T013", "PARCEL_NAM": "4B-REM", "ACRE": "3.42", "LONGITUDE": -64.88565979000001, "LATITUDE": 18.31672948, "OBJECTID_1": 37842, "PARCEL_NO_": "107504050200", "Tax_Legal_": "4B EST. BOVONI FRENCHMAN BAY QTR", "Name": "LIMA ENTERPRISES INC.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 376000, "Improved_V": 17800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 522.89047926199999, "SHAPE_Area": 13296.1320197 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363670.618299998342991, 254115.182500001043081 ], [ 363670.581799998879433, 254115.124200001358986 ], [ 363624.504699997603893, 254083.913100000470877 ], [ 363541.380999997258186, 254252.863499999046326 ], [ 363535.930900000035763, 254266.791700001806021 ], [ 363614.314400002360344, 254288.7635000012815 ], [ 363614.339400000870228, 254288.690499998629093 ], [ 363647.347300000488758, 254192.394400000572205 ], [ 363670.618299998342991, 254115.182500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803011200", "MAP": "D9-8762-T013", "PARCEL_NAM": "19F-D", "ACRE": "1.00", "LONGITUDE": -64.86047403000001, "LATITUDE": 18.33857806, "OBJECTID_1": 23837, "PARCEL_NO_": "105803011200", "Tax_Legal_": "19F REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "BPIII SMITH BAY LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1700000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.53298240200002, "SHAPE_Area": 4393.0442850500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366190.324600003659725, 256583.833599999547005 ], [ 366283.508000001311302, 256701.470600001513958 ], [ 366307.124700002372265, 256681.915399998426437 ], [ 366219.019400000572205, 256572.093600001186132 ], [ 366190.324600003659725, 256583.833599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803011200", "MAP": "D9-8739-T013", "PARCEL_NAM": "19F-C", "ACRE": "1.165", "LONGITUDE": -64.86019062, "LATITUDE": 18.33843086, "OBJECTID_1": 23837, "PARCEL_NO_": "105803011200", "Tax_Legal_": "19F REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "BPIII SMITH BAY LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1700000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.18428696299998, "SHAPE_Area": 4960.38311497 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366219.019400000572205, 256572.093600001186132 ], [ 366307.124700002372265, 256681.915399998426437 ], [ 366326.130800001323223, 256666.177799999713898 ], [ 366330.79169999808073, 256660.89919999986887 ], [ 366336.462399996817112, 256654.476799998432398 ], [ 366254.712899997830391, 256561.51630000025034 ], [ 366242.874700002372265, 256564.604200001806021 ], [ 366237.302699998021126, 256565.938099998980761 ], [ 366229.497400000691414, 256567.806699998676777 ], [ 366219.019400000572205, 256572.093600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803011200", "MAP": "D9-9033-T015", "PARCEL_NAM": "19F", "ACRE": "5.6", "LONGITUDE": -64.86192574, "LATITUDE": 18.33940488, "OBJECTID_1": 23837, "PARCEL_NO_": "105803011200", "Tax_Legal_": "19F REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "BPIII SMITH BAY LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1700000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 657.34557273200005, "SHAPE_Area": 25342.7846388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366200.464299999177456, 256764.1385000012815 ], [ 366101.900700002908707, 256610.427099999040365 ], [ 366090.211999997496605, 256610.150699999183416 ], [ 366044.126199997961521, 256632.976500000804663 ], [ 366036.13629999756813, 256640.371899999678135 ], [ 366009.279600001871586, 256645.396800000220537 ], [ 366063.339500002563, 256849.953999999910593 ], [ 366073.828400000929832, 256844.808899998664856 ], [ 366186.52080000191927, 256773.537300001829863 ], [ 366200.464299999177456, 256764.1385000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87465863, "LATITUDE": 18.32674327, "OBJECTID_1": 37965, "PARCEL_NO_": "107601031000", "Tax_Legal_": "MARIENDAHL 2B-33 RED HOOK QTR", "Name": "BAPTISTE, SYDNEY & RUTH", "Address": "2600 Nye Nordsidivej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98000, "Improved_V": 90400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.39124747462999998, "SHAPE_Area": 0.00612823981 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364761.978399999439716, 255312.431600000709295 ], [ 364761.893700003623962, 255312.572000000625849 ], [ 364762.018399998545647, 255312.510000001639128 ], [ 364761.978399999439716, 255312.431600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601030700", "MAP": "D9-8732-T013", "PARCEL_NAM": "2B-36", "ACRE": ".367", "LONGITUDE": -64.87437603, "LATITUDE": 18.32674599, "OBJECTID_1": 37962, "PARCEL_NO_": "107601030700", "Tax_Legal_": "2B-36 MARIENDAL RED HOOK QTR", "Name": "JOSEPH, JOHN B & CATHERINE HOPKINS", "Address": "PO Box 304173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53100, "Improved_V": 168800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.723346776, "SHAPE_Area": 1797.8388927399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364809.459399998188019, 255282.740499999374151 ], [ 364761.978399999439716, 255312.431600000709295 ], [ 364762.018399998545647, 255312.510000001639128 ], [ 364765.193300001323223, 255318.446600001305342 ], [ 364777.883900001645088, 255343.248399998992682 ], [ 364782.752300001680851, 255339.699700001627207 ], [ 364798.952299997210503, 255331.177400000393391 ], [ 364803.012599997222424, 255327.833200000226498 ], [ 364808.701800003647804, 255322.602400001138449 ], [ 364816.061099998652935, 255310.630300000309944 ], [ 364816.964500002563, 255299.238600000739098 ], [ 364814.610299997031689, 255291.620000001043081 ], [ 364810.634499996900558, 255285.043600000441074 ], [ 364809.459399998188019, 255282.740499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8751395, "LATITUDE": 18.32649661, "OBJECTID_1": 37970, "PARCEL_NO_": "107601031700", "Tax_Legal_": "MARIENDAHL 2B-31 RED HOOK QTR", "Name": "ROGERS,JR., KENNETH W.", "Address": "PO Box 8834", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.5771623957, "SHAPE_Area": 442.21200636899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364714.615800000727177, 255303.052099999040365 ], [ 364725.963600002229214, 255296.373500000685453 ], [ 364708.376599997282028, 255267.319200001657009 ], [ 364696.226199999451637, 255273.763599999248981 ], [ 364712.154700003564358, 255297.11430000141263 ], [ 364714.615800000727177, 255303.052099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87498256000001, "LATITUDE": 18.3264125, "OBJECTID_1": 37969, "PARCEL_NO_": "107601031600", "Tax_Legal_": "2B-31A MARIENDAHL RED HOOK QTR", "Name": "ROGERS, EDITH", "Address": "PO Box 8834", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26600, "Improved_V": 164000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.954869093, "SHAPE_Area": 838.146318995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364725.963600002229214, 255296.373500000685453 ], [ 364746.741599999368191, 255284.145199999213219 ], [ 364731.864000000059605, 255255.26799999922514 ], [ 364708.376599997282028, 255267.319200001657009 ], [ 364725.963600002229214, 255296.373500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601031000", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-33", "ACRE": null, "LONGITUDE": -64.8748915, "LATITUDE": 18.32670379, "OBJECTID_1": 37965, "PARCEL_NO_": "107601031000", "Tax_Legal_": "MARIENDAHL 2B-33 RED HOOK QTR", "Name": "BAPTISTE, SYDNEY & RUTH", "Address": "2600 Nye Nordsidivej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98000, "Improved_V": 90400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.934728095, "SHAPE_Area": 1236.9187207499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364761.893700003623962, 255312.572000000625849 ], [ 364761.978399999439716, 255312.431600000709295 ], [ 364750.121500000357628, 255289.192400000989437 ], [ 364746.9358000010252, 255284.522199999541044 ], [ 364746.741599999368191, 255284.145199999213219 ], [ 364725.963600002229214, 255296.373500000685453 ], [ 364714.615800000727177, 255303.052099999040365 ], [ 364716.895400002598763, 255308.552099999040365 ], [ 364720.815499998629093, 255321.671999998390675 ], [ 364723.148100003600121, 255331.823600001633167 ], [ 364761.893700003623962, 255312.572000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701011000", "MAP": "C9-133-T72", "PARCEL_NAM": "5-8", "ACRE": ".29", "LONGITUDE": -64.88031291, "LATITUDE": 18.34781155, "OBJECTID_1": 21846, "PARCEL_NO_": "105701011000", "Tax_Legal_": "5-8 TABOR&HARMONY EAST END QTR", "Name": "ASFOUR, DANEAL", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 314600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.026719853, "SHAPE_Area": 1935.38231376 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364086.000900000333786, 257667.803300000727177 ], [ 364092.062700003385544, 257664.961300000548363 ], [ 364104.542099997401237, 257658.331700000911951 ], [ 364125.83389999717474, 257651.327799998223782 ], [ 364131.792599998414516, 257649.38399999961257 ], [ 364173.550599999725819, 257657.587200000882149 ], [ 364174.659000001847744, 257622.132500000298023 ], [ 364161.78320000320673, 257619.071800000965595 ], [ 364153.782999999821186, 257611.618099998682737 ], [ 364110.75900000333786, 257645.252000000327826 ], [ 364092.087899997830391, 257659.875700000673532 ], [ 364086.000900000333786, 257667.803300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701010600", "MAP": "C9-291-T85", "PARCEL_NAM": "5", "ACRE": "7.35", "LONGITUDE": -64.88065947, "LATITUDE": 18.34718168, "OBJECTID_1": 21842, "PARCEL_NO_": "105701010600", "Tax_Legal_": "5 TABOR HARMONY EAST END QUARTER", "Name": "ROUSE, WENDE & ORVILLE", "Address": "6625 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 357700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 757.04526126300004, "SHAPE_Area": 29968.072952499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363979.45380000025034, 257660.789799999445677 ], [ 364063.388199999928474, 257687.108899999409914 ], [ 364087.284199997782707, 257655.825699999928474 ], [ 364166.83330000191927, 257594.204100001603365 ], [ 364191.951200000941753, 257580.055300001055002 ], [ 364200.856600001454353, 257575.906399998813868 ], [ 364226.741400003433228, 257566.407900001853704 ], [ 364237.298900000751019, 257557.628400001674891 ], [ 364258.534599997103214, 257525.927099999040365 ], [ 364100.262900002300739, 257457.503899998962879 ], [ 364094.519799999892712, 257469.067099999636412 ], [ 364089.619000002741814, 257476.415199998766184 ], [ 364087.997299998998642, 257477.457400001585484 ], [ 364087.173100002110004, 257479.561599999666214 ], [ 364068.421099998056889, 257503.683899998664856 ], [ 364048.902300000190735, 257523.155900001525879 ], [ 364042.360100001096725, 257533.868099998682737 ], [ 364016.042099997401237, 257594.2364999987185 ], [ 364014.41499999910593, 257595.912000000476837 ], [ 364011.121500000357628, 257603.906599998474121 ], [ 363979.45380000025034, 257660.789799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803010100", "MAP": "D9-8826-T013", "PARCEL_NAM": "19D-6", "ACRE": "11.72", "LONGITUDE": -64.86592599, "LATITUDE": 18.34130949, "OBJECTID_1": 23829, "PARCEL_NO_": "105803010100", "Tax_Legal_": "SMITH BAY ESTATE 19D No.1,2&3 EASTEND QTR", "Name": "LINDQVIST, DORIS M. & OTHERS", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1321000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1008.03117838, "SHAPE_Area": 45000.205084699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365642.31700000166893, 256790.55799999833107 ], [ 365608.846000000834465, 256798.500999998301268 ], [ 365565.850500002503395, 256796.423000000417233 ], [ 365565.732299998402596, 256824.152699999511242 ], [ 365560.553099997341633, 256926.374299999326468 ], [ 365558.792900003492832, 256998.000799998641014 ], [ 365552.23139999806881, 257063.899599999189377 ], [ 365585.559399999678135, 257045.086300000548363 ], [ 365614.229900002479553, 257030.398200001567602 ], [ 365654.736199997365475, 257008.353900000452995 ], [ 365662.034299999475479, 257003.558400001376867 ], [ 365673.356899999082088, 256999.640299998223782 ], [ 365688.689400002360344, 256998.288199998438358 ], [ 365697.549900002777576, 256999.416200000792742 ], [ 365705.593199998140335, 257001.804000001400709 ], [ 365732.894500002264977, 257015.326400000602007 ], [ 365773.80969999730587, 257039.936999998986721 ], [ 365781.048500001430511, 257042.107200000435114 ], [ 365789.113399997353554, 257041.962099999189377 ], [ 365798.821599997580051, 257038.241900000721216 ], [ 365804.508900001645088, 257033.222199998795986 ], [ 365807.775499999523163, 257028.393699999898672 ], [ 365815.332400001585484, 256999.403499998152256 ], [ 365806.336400002241135, 256953.405999999493361 ], [ 365799.958700001239777, 256919.320199999958277 ], [ 365795.913800001144409, 256872.437300000339746 ], [ 365795.864500001072884, 256872.240600001066923 ], [ 365639.649899996817112, 256848.705400001257658 ], [ 365642.31700000166893, 256790.55799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803010600", "MAP": "D9-6571-T99", "PARCEL_NAM": "19D-5", "ACRE": "1.003", "LONGITUDE": -64.8665284, "LATITUDE": 18.33987695, "OBJECTID_1": 23833, "PARCEL_NO_": "105803010600", "Tax_Legal_": "SMITH BAY ESTATE 19D-5 No.1,2&3 EASTEND QTR.", "Name": "LINDQUIST OTTLEY, BERYL G.", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 123300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.596265053, "SHAPE_Area": 3205.4089726799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365565.850500002503395, 256796.423000000417233 ], [ 365608.846000000834465, 256798.500999998301268 ], [ 365642.31700000166893, 256790.55799999833107 ], [ 365643.696299999952316, 256760.486600000411272 ], [ 365643.830600000917912, 256757.556699998676777 ], [ 365628.117600001394749, 256743.701900001615286 ], [ 365619.966300003230572, 256740.901999998837709 ], [ 365613.39469999819994, 256741.236400000751019 ], [ 365604.799500003457069, 256744.636100001633167 ], [ 365600.417099997401237, 256747.697200000286102 ], [ 365577.260999999940395, 256773.292199999094009 ], [ 365571.359600000083447, 256777.523499999195337 ], [ 365565.921899996697903, 256779.667700000107288 ], [ 365565.915500000119209, 256781.172499999403954 ], [ 365565.850500002503395, 256796.423000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803011100", "MAP": "D9-3879-T87", "PARCEL_NAM": "19D-3", "ACRE": "2.01", "LONGITUDE": -64.86528051000001, "LATITUDE": 18.34023452, "OBJECTID_1": 23836, "PARCEL_NO_": "105803011100", "Tax_Legal_": "19D-3 ESTATE SMITH BAY EAST END QTR.", "Name": "LEWIS, SR. HORACE & OTHERS", "Address": "12202 Prospect Lndg", "City": "MITCHERVILLE", "State": "Maryland", "Zip": 20721, "Country": "United States", "Land_Value": 203900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 509.44711798899999, "SHAPE_Area": 9257.5848702000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365714.324000000953674, 256744.649300001561642 ], [ 365727.101400002837181, 256791.306800000369549 ], [ 365707.348499998450279, 256824.275499999523163 ], [ 365657.6266999989748, 256841.9510000012815 ], [ 365639.649899996817112, 256848.705400001257658 ], [ 365795.864500001072884, 256872.240600001066923 ], [ 365782.584899999201298, 256819.287300001829863 ], [ 365769.758599996566772, 256761.344099998474121 ], [ 365763.656800001859665, 256733.779399998486042 ], [ 365714.324000000953674, 256744.649300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105801011800", "MAP": "G9-2340-T74", "PARCEL_NAM": "19D-1", "ACRE": "1.00", "LONGITUDE": -64.86580233, "LATITUDE": 18.34004085, "OBJECTID_1": 23740, "PARCEL_NO_": "105801011800", "Tax_Legal_": "SMITH BAY 19D-1 EAST END QTR", "Name": "LEWIS, DENISE M., HORACE M. JR, GARY M. & BRENT M.", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 169100, "Improved_V": 297900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.652666071, "SHAPE_Area": 5244.01772256 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365703.446099996566772, 256747.07149999961257 ], [ 365672.700599998235703, 256763.448499999940395 ], [ 365667.345499999821186, 256764.654800001531839 ], [ 365661.469200000166893, 256764.832400001585484 ], [ 365653.413199998438358, 256763.922100000083447 ], [ 365647.790600001811981, 256761.342999998480082 ], [ 365643.789599999785423, 256757.721599999815226 ], [ 365657.585799999535084, 256842.060899998992682 ], [ 365707.733599998056889, 256824.106199998408556 ], [ 365727.365599997341633, 256791.336199998855591 ], [ 365726.843299999833107, 256790.36430000141263 ], [ 365714.324000000953674, 256744.649300001561642 ], [ 365703.552100002765656, 256747.022799998521805 ], [ 365703.387000001966953, 256746.960999999195337 ], [ 365703.446099996566772, 256747.07149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803010500", "MAP": "D9-1323-T77", "PARCEL_NAM": "19Dd", "ACRE": "0.75", "LONGITUDE": -64.86603761000001, "LATITUDE": 18.33931995, "OBJECTID_1": 23832, "PARCEL_NO_": "105803010500", "Tax_Legal_": "SMITH BAY 19DD EAST END QTR", "Name": "LINQUIST, DORIS M.", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 95800, "Improved_V": 157300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 321.97573129199998, "SHAPE_Area": 5248.6254506699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365658.245399996638298, 256755.254799999296665 ], [ 365666.387999996542931, 256755.373500000685453 ], [ 365682.570000000298023, 256748.962000001221895 ], [ 365682.607699997723103, 256744.52930000051856 ], [ 365679.400499999523163, 256742.392200000584126 ], [ 365685.082400001585484, 256738.005699999630451 ], [ 365688.320200003683567, 256736.554499998688698 ], [ 365689.913099996745586, 256738.889600001275539 ], [ 365692.319399997591972, 256740.386999998241663 ], [ 365697.958200000226498, 256741.066399998962879 ], [ 365699.579800002276897, 256740.02419999986887 ], [ 365703.387000001966953, 256746.960999999195337 ], [ 365703.552100002765656, 256747.022799998521805 ], [ 365714.324000000953674, 256744.649300001561642 ], [ 365701.505699999630451, 256697.8429000005126 ], [ 365626.015900000929832, 256667.017000000923872 ], [ 365608.716499999165535, 256709.938499998301268 ], [ 365638.404399998486042, 256727.280099999159575 ], [ 365658.245399996638298, 256755.254799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803010100", "MAP": "D9-828-T69", "PARCEL_NAM": "19D REM", "ACRE": null, "LONGITUDE": -64.86624053, "LATITUDE": 18.33917006, "OBJECTID_1": 23829, "PARCEL_NO_": "105803010100", "Tax_Legal_": "SMITH BAY ESTATE 19D No.1,2&3 EASTEND QTR", "Name": "LINDQVIST, DORIS M. & OTHERS", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1321000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 779.82879951400002, "SHAPE_Area": 9138.5671802399993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365760.211499996483326, 256710.069099999964237 ], [ 365733.68129999935627, 256709.717500001192093 ], [ 365708.426500000059605, 256680.855900000780821 ], [ 365644.000799998641014, 256650.216400001198053 ], [ 365575.964199997484684, 256631.7331000007689 ], [ 365576.417300000786781, 256657.029899999499321 ], [ 365574.925899997353554, 256672.065900001674891 ], [ 365571.896099999547005, 256712.714000001549721 ], [ 365567.314300000667572, 256751.309500001370907 ], [ 365567.712200000882149, 256769.754099998623133 ], [ 365579.031199999153614, 256756.826099999248981 ], [ 365582.452100001275539, 256750.333799999207258 ], [ 365588.710100002586842, 256743.216600000858307 ], [ 365599.121899999678135, 256735.322900000959635 ], [ 365607.93860000371933, 256731.519900001585484 ], [ 365617.975000001490116, 256731.121500000357628 ], [ 365626.186599999666214, 256733.055599998682737 ], [ 365636.554899998009205, 256738.035900000482798 ], [ 365652.537799999117851, 256753.4358000010252 ], [ 365658.245399996638298, 256755.254799999296665 ], [ 365638.749700002372265, 256727.184799998998642 ], [ 365608.488600000739098, 256709.847699999809265 ], [ 365626.072300001978874, 256667.09910000115633 ], [ 365701.505699999630451, 256697.8429000005126 ], [ 365714.324000000953674, 256744.649300001561642 ], [ 365763.656800001859665, 256733.779399998486042 ], [ 365761.60869999974966, 256724.526599999517202 ], [ 365760.211499996483326, 256710.069099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803010100", "MAP": "D9-3878-T87", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.86480624, "LATITUDE": 18.34048902, "OBJECTID_1": 23829, "PARCEL_NO_": "105803010100", "Tax_Legal_": "SMITH BAY ESTATE 19D No.1,2&3 EASTEND QTR", "Name": "LINDQVIST, DORIS M. & OTHERS", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1321000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 599.84282663800002, "SHAPE_Area": 2255.3116714600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365770.883000001311302, 256710.210499998182058 ], [ 365760.211499996483326, 256710.069099999964237 ], [ 365761.60869999974966, 256724.526599999517202 ], [ 365782.584899999201298, 256819.287300001829863 ], [ 365795.913800001144409, 256872.437300000339746 ], [ 365799.958700001239777, 256919.320199999958277 ], [ 365806.336400002241135, 256953.405999999493361 ], [ 365815.332400001585484, 256999.403499998152256 ], [ 365816.945200003683567, 256993.2162000015378 ], [ 365818.672700002789497, 256988.590300001204014 ], [ 365818.151399999856949, 256981.659400001168251 ], [ 365807.181100003421307, 256912.119199998676777 ], [ 365802.635099999606609, 256870.860399998724461 ], [ 365789.016800001263618, 256813.072399999946356 ], [ 365770.979299999773502, 256721.913800001144409 ], [ 365770.883000001311302, 256710.210499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803010400", "MAP": null, "PARCEL_NAM": "19Dc", "ACRE": "9.76", "LONGITUDE": -64.8657937, "LATITUDE": 18.33799782, "OBJECTID_1": 23831, "PARCEL_NO_": "105803010400", "Tax_Legal_": "19Dc SMITH BAY NO.1,2,& 3 EAST END QTR", "Name": "LINDQVIST, DORIS M.", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 482400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 849.031972462, "SHAPE_Area": 39676.454083099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365575.964199997484684, 256631.7331000007689 ], [ 365644.000799998641014, 256650.216400001198053 ], [ 365708.426500000059605, 256680.855900000780821 ], [ 365733.68129999935627, 256709.717500001192093 ], [ 365760.211499996483326, 256710.069099999964237 ], [ 365770.883000001311302, 256710.210499998182058 ], [ 365770.703100003302097, 256688.339600000530481 ], [ 365770.5675999969244, 256671.869300000369549 ], [ 365770.056900002062321, 256609.776000000536442 ], [ 365768.549500003457069, 256426.521600000560284 ], [ 365655.667700000107288, 256457.443199999630451 ], [ 365632.477799996733665, 256463.290500000119209 ], [ 365623.831699997186661, 256507.851199999451637 ], [ 365583.662500001490116, 256511.1239 ], [ 365582.91889999806881, 256523.535300001502037 ], [ 365579.306599996984005, 256548.593499999493361 ], [ 365575.7820999994874, 256597.904599998146296 ], [ 365575.786899998784065, 256602.553700000047684 ], [ 365575.735699996352196, 256602.567499998956919 ], [ 365575.443199999630451, 256602.646099999547005 ], [ 365575.964199997484684, 256631.7331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021900", "MAP": "D9-7749-T006", "PARCEL_NAM": "1G-4", "ACRE": ".979", "LONGITUDE": -64.90654395, "LATITUDE": 18.34441525, "OBJECTID_1": 19865, "PARCEL_NO_": "105502021900", "Tax_Legal_": "1G-4 & 1G-3-1 WINTBERG ESTATE No. 3 Great NORTHSIDE", "Name": "MARIO AUSTIN VERWEIJ REVOC TRUST", "Address": "3017 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.90366963, "SHAPE_Area": 2611.91068236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361375.389300003647804, 257262.498399998992682 ], [ 361383.694799996912479, 257256.713799998164177 ], [ 361401.943400003015995, 257253.209300000220537 ], [ 361411.196699999272823, 257247.833000000566244 ], [ 361408.257399998605251, 257214.245099999010563 ], [ 361385.624899998307228, 257220.603799998760223 ], [ 361377.552799999713898, 257221.593199998140335 ], [ 361375.130300000309944, 257221.99549999833107 ], [ 361353.352600000798702, 257222.661699999123812 ], [ 361341.279500000178814, 257220.029699999839067 ], [ 361345.757799997925758, 257262.285100001841784 ], [ 361346.117799997329712, 257266.741700001060963 ], [ 361375.389300003647804, 257262.498399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502023200", "MAP": "D9-8796", "PARCEL_NAM": "1G-1-1", "ACRE": ".005", "LONGITUDE": -64.90607159, "LATITUDE": 18.34459229, "OBJECTID_1": 19877, "PARCEL_NO_": "105502023200", "Tax_Legal_": "WINTBERG ESTATE 1G-2 GR NORTHSIDE", "Name": "AUSTIN, MARIO & INGEVERNWEIJ", "Address": "PO Box 303887", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 125200, "Improved_V": 810600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.312729440199998, "SHAPE_Area": 28.1725995543 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361420.482500001788139, 257257.146200001239777 ], [ 361428.112499997019768, 257266.1891999989748 ], [ 361426.441200003027916, 257256.823699999600649 ], [ 361420.482500001788139, 257257.146200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502023200", "MAP": "D9-1099-T72", "PARCEL_NAM": "1G-2", "ACRE": "1.00", "LONGITUDE": -64.90552619, "LATITUDE": 18.34445447, "OBJECTID_1": 19877, "PARCEL_NO_": "105502023200", "Tax_Legal_": "WINTBERG ESTATE 1G-2 GR NORTHSIDE", "Name": "AUSTIN, MARIO & INGEVERNWEIJ", "Address": "PO Box 303887", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 125200, "Improved_V": 810600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 405.88892487499999, "SHAPE_Area": 6937.67595213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361411.735600002110004, 257256.206999998539686 ], [ 361418.307700000703335, 257255.087000001221895 ], [ 361418.431999996304512, 257257.257199998944998 ], [ 361426.441200003027916, 257256.823699999600649 ], [ 361434.137500002980232, 257299.949799999594688 ], [ 361465.608800001442432, 257297.252099998295307 ], [ 361481.052799999713898, 257282.813000001013279 ], [ 361528.209200002253056, 257237.391699999570847 ], [ 361562.360200002789497, 257204.107299998402596 ], [ 361563.202500000596046, 257199.892299998551607 ], [ 361516.45610000193119, 257197.187699999660254 ], [ 361439.520199999213219, 257236.032499998807907 ], [ 361437.902199998497963, 257236.65260000154376 ], [ 361436.275100000202656, 257238.328000001609325 ], [ 361437.848200000822544, 257242.984900001436472 ], [ 361437.02929999679327, 257244.455899998545647 ], [ 361431.365299999713898, 257246.731499999761581 ], [ 361431.381499998271465, 257244.831799998879433 ], [ 361428.9662000015378, 257244.389899998903275 ], [ 361411.735600002110004, 257256.206999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502021800", "MAP": "D9-4156-T87", "PARCEL_NAM": "1G-3-1", "ACRE": ".02", "LONGITUDE": -64.90614247000001, "LATITUDE": 18.34440695, "OBJECTID_1": 19864, "PARCEL_NO_": "105502021800", "Tax_Legal_": "WINTBERG ESTATE 1G-3 GREAT NORTHSIDE QTR", "Name": "LU, YOUNG & JANET", "Address": "PO Box 8887", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.971901515200003, "SHAPE_Area": 129.623905431 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361431.727600000798702, 257234.723799999803305 ], [ 361410.150200001895428, 257235.874000001698732 ], [ 361411.196699999272823, 257247.833000000566244 ], [ 361431.727600000798702, 257234.723799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803036000", "MAP": "D9-7202-T003", "PARCEL_NAM": "19-2-50", "ACRE": ".26", "LONGITUDE": -64.85889091, "LATITUDE": 18.33177751, "OBJECTID_1": 23977, "PARCEL_NO_": "105803036000", "Tax_Legal_": "SMITH BAY 19-2-50 1,2,3 EASTEND QRT", "Name": "BRUNNEY, ROY & HELEN", "Address": "HIDDEN VALLEY 394-313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.22989420499999, "SHAPE_Area": 1349.6455905600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366398.318400003015995, 255859.546900000423193 ], [ 366400.710400000214577, 255862.732900001108646 ], [ 366407.097900003194809, 255870.17339999973774 ], [ 366410.258500002324581, 255877.798599999397993 ], [ 366413.433399997651577, 255883.735199999064207 ], [ 366414.999200001358986, 255889.2364999987185 ], [ 366415.773199997842312, 255893.042500000447035 ], [ 366418.033900000154972, 255911.637200001627207 ], [ 366423.622299998998642, 255918.22690000012517 ], [ 366425.22240000218153, 255919.717599999159575 ], [ 366426.82599999755621, 255920.786200001835823 ], [ 366442.473200000822544, 255882.495299998670816 ], [ 366444.125399999320507, 255877.864700000733137 ], [ 366445.091099999845028, 255875.480200000107288 ], [ 366445.984399996697903, 255873.274500001221895 ], [ 366418.688699997961521, 255862.228399999439716 ], [ 366418.59009999781847, 255862.354200001806021 ], [ 366399.974200002849102, 255854.494199998676777 ], [ 366398.318400003015995, 255859.546900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803036000", "MAP": "D9-5260-T92", "PARCEL_NAM": "19-2-50", "ACRE": ".280", "LONGITUDE": -64.85865171, "LATITUDE": 18.33197255, "OBJECTID_1": 23977, "PARCEL_NO_": "105803036000", "Tax_Legal_": "SMITH BAY 19-2-50 1,2,3 EASTEND QRT", "Name": "BRUNNEY, ROY & HELEN", "Address": "HIDDEN VALLEY 394-313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.573208736, "SHAPE_Area": 1329.3189827399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366442.473200000822544, 255882.495299998670816 ], [ 366426.82599999755621, 255920.786200001835823 ], [ 366435.659500002861023, 255925.080400001257658 ], [ 366449.343400001525879, 255927.936599999666214 ], [ 366458.218199998140335, 255927.375999998301268 ], [ 366460.640799999237061, 255926.973600000143051 ], [ 366468.2212999984622, 255889.038800001144409 ], [ 366468.237999998033047, 255889.029500000178814 ], [ 366443.770000003278255, 255878.86089999973774 ], [ 366442.473200000822544, 255882.495299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702060200", "MAP": "D9-1585-T80", "PARCEL_NAM": "57-117B", "ACRE": ".31", "LONGITUDE": -64.87198295, "LATITUDE": 18.34451447, "OBJECTID_1": 22624, "PARCEL_NO_": "105702060200", "Tax_Legal_": "SMITH BAY 57-117B & 57T-3 EAST END QTR", "Name": "APOSTOLIC FAITH MISSION INC", "Address": "PO Box 305101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035101, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.45900577200001, "SHAPE_Area": 1326.8544028 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365039.85639999806881, 257247.767700001597404 ], [ 365038.119699999690056, 257262.318900000303984 ], [ 365036.404600001871586, 257274.337200000882149 ], [ 365003.385300002992153, 257269.422899998724461 ], [ 365001.661200001835823, 257282.496599998325109 ], [ 365001.540700003504753, 257296.638900000602007 ], [ 365056.396999999880791, 257293.921500001102686 ], [ 365050.09570000320673, 257276.34910000115633 ], [ 365039.85639999806881, 257247.767700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602019000", "MAP": "A9-113-T69", "PARCEL_NAM": "386 REM", "ACRE": "2.81", "LONGITUDE": -64.8848704, "LATITUDE": 18.34439143, "OBJECTID_1": 21003, "PARCEL_NO_": "105602019000", "Tax_Legal_": "386 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 492700, "Improved_V": 1176200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 527.34012438800005, "SHAPE_Area": 7320.2519108300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363550.781700000166893, 257245.456599999219179 ], [ 363630.968999996781349, 257268.10080000013113 ], [ 363703.847599998116493, 257288.721500001847744 ], [ 363721.64360000193119, 257284.7668999992311 ], [ 363734.501800000667572, 257299.962999999523163 ], [ 363782.739699997007847, 257246.344700001180172 ], [ 363773.089199997484684, 257243.310400001704693 ], [ 363761.804399996995926, 257242.795899998396635 ], [ 363755.344899997115135, 257243.798500001430511 ], [ 363739.972800001502037, 257249.794399999082088 ], [ 363727.046599999070168, 257252.643899999558926 ], [ 363712.522200003266335, 257253.791600000113249 ], [ 363692.378799997270107, 257251.938000001013279 ], [ 363674.666900001466274, 257248.626600001007318 ], [ 363662.599200002849102, 257245.361400000751019 ], [ 363599.07490000128746, 257224.36540000140667 ], [ 363566.091600000858307, 257215.229600001126528 ], [ 363550.781700000166893, 257245.456599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602017200", "MAP": "A9-211-T73", "PARCEL_NAM": "388-B", "ACRE": "5.920", "LONGITUDE": -64.88548155, "LATITUDE": 18.34465242, "OBJECTID_1": 20987, "PARCEL_NO_": "105602017200", "Tax_Legal_": "388 EST ANNAS RETREAT NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 840700, "Improved_V": 700100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 753.15896578700006, "SHAPE_Area": 19005.8057754 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363734.501800000667572, 257299.962999999523163 ], [ 363721.64360000193119, 257284.7668999992311 ], [ 363703.847599998116493, 257288.721500001847744 ], [ 363630.968999996781349, 257268.10080000013113 ], [ 363550.781700000166893, 257245.456599999219179 ], [ 363566.091600000858307, 257215.229600001126528 ], [ 363552.414899997413158, 257211.528999999165535 ], [ 363544.382299996912479, 257207.874699998646975 ], [ 363539.57320000231266, 257204.457800000905991 ], [ 363533.182099997997284, 257197.439399998635054 ], [ 363523.648400001227856, 257180.684999998658895 ], [ 363519.740900002419949, 257166.087600000202656 ], [ 363517.474799998104572, 257148.1261 ], [ 363515.865800000727177, 257147.690699998289347 ], [ 363509.348700001835823, 257155.447900000959635 ], [ 363500.328299999237061, 257173.105900000780821 ], [ 363496.183399997651577, 257186.370900001376867 ], [ 363494.459299996495247, 257199.444499999284744 ], [ 363493.597199998795986, 257205.9814000017941 ], [ 363495.08219999819994, 257220.981199998408556 ], [ 363498.960900001227856, 257238.955899998545647 ], [ 363506.043300002813339, 257259.489900000393391 ], [ 363514.783299997448921, 257274.760200001299381 ], [ 363522.752899996936321, 257285.802299998700619 ], [ 363533.951300002634525, 257296.448600001633167 ], [ 363538.765799999237061, 257299.232200000435114 ], [ 363598.86710000038147, 257343.420499999076128 ], [ 363618.947499997913837, 257352.661899998784065 ], [ 363630.201700001955032, 257356.764800000935793 ], [ 363639.053199999034405, 257358.948100000619888 ], [ 363670.386100001633167, 257372.503499999642372 ], [ 363683.260099999606609, 257375.775299999862909 ], [ 363693.191200003027916, 257345.881299998611212 ], [ 363734.501800000667572, 257299.962999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602019100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8854576, "LATITUDE": 18.34137932, "OBJECTID_1": 21004, "PARCEL_NO_": "105602019100", "Tax_Legal_": "402 ANNAS RETREAT NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 474800, "Improved_V": 3745600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 394.304805397, "SHAPE_Area": 10170.019733700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363542.553099997341633, 256942.097600001841784 ], [ 363582.119599997997284, 256966.548799999058247 ], [ 363633.223800003528595, 256988.937300000339746 ], [ 363635.792700000107288, 256984.441500000655651 ], [ 363636.624200001358986, 256981.493000000715256 ], [ 363638.249399997293949, 256980.028599999845028 ], [ 363642.358300000429153, 256970.985199999064207 ], [ 363645.623099997639656, 256966.367899999022484 ], [ 363648.094200000166893, 256960.266399998217821 ], [ 363651.358999997377396, 256955.649099998176098 ], [ 363652.998599998652935, 256952.496100001037121 ], [ 363657.917400002479553, 256943.037099998444319 ], [ 363663.656900003552437, 256931.896200001239777 ], [ 363665.309000000357628, 256927.265599999576807 ], [ 363666.936099998652935, 256925.590199999511242 ], [ 363670.229599997401237, 256917.595600001513958 ], [ 363671.079099997878075, 256912.536299999803305 ], [ 363669.484499998390675, 256910.412300001829863 ], [ 363641.452299997210503, 256888.018100000917912 ], [ 363636.657600000500679, 256882.912599999457598 ], [ 363628.64299999922514, 256877.147399999201298 ], [ 363578.847699999809265, 256853.730700001120567 ], [ 363542.553099997341633, 256942.097600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105602069902", "MAP": "D9-8646-T012", "PARCEL_NAM": "142-B", "ACRE": ".14", "LONGITUDE": -64.88766529, "LATITUDE": 18.34152672, "OBJECTID_1": 21314, "PARCEL_NO_": "105602069902", "Tax_Legal_": "142-B ANNA'S RETREAT No.1 NEW QTR.", "Name": "ARCHIBALD, NAOMI C", "Address": "404-320 ANNA'S RETREAT", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 100800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.380753881, "SHAPE_Area": 575.640690522 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363372.068999998271465, 256948.193199999630451 ], [ 363398.223999999463558, 256937.319600000977516 ], [ 363366.530799999833107, 256923.197299998253584 ], [ 363353.640299998223782, 256943.977299999445677 ], [ 363372.068999998271465, 256948.193199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602017200", "MAP": "A9-194-T73", "PARCEL_NAM": "388-A", "ACRE": "4.387", "LONGITUDE": -64.88604829000001, "LATITUDE": 18.34253661, "OBJECTID_1": 20987, "PARCEL_NO_": "105602017200", "Tax_Legal_": "388 EST ANNAS RETREAT NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 840700, "Improved_V": 700100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 654.44133544399995, "SHAPE_Area": 14896.0820647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363633.223800003528595, 256988.937300000339746 ], [ 363582.119599997997284, 256966.548799999058247 ], [ 363542.553099997341633, 256942.097600001841784 ], [ 363536.851800002157688, 256955.978399999439716 ], [ 363459.811200000345707, 257196.416799999773502 ], [ 363484.796099998056889, 257197.887800000607967 ], [ 363486.516599997878075, 257185.236299999058247 ], [ 363488.181400001049042, 257179.128199998289347 ], [ 363491.48759999871254, 257169.655999999493361 ], [ 363498.053199999034405, 257156.199799999594688 ], [ 363504.581000000238419, 257147.176199998706579 ], [ 363586.822300001978874, 257053.490499999374151 ], [ 363589.273599997162819, 257049.710799999535084 ], [ 363593.337600000202656, 257045.944400001317263 ], [ 363610.457099996507168, 257024.130800001323223 ], [ 363626.788400001823902, 257000.199799999594688 ], [ 363633.223800003528595, 256988.937300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302010100", "MAP": null, "PARCEL_NAM": "98 .", "ACRE": null, "LONGITUDE": -64.93737659, "LATITUDE": 18.3488114, "OBJECTID_1": 9558, "PARCEL_NO_": "105302010100", "Tax_Legal_": "98 AGNES FANCY QUEENS QTR", "Name": "COMISSIONG, TRUSTEE, TINA", "Address": "PO Box 306813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.86281024799999, "SHAPE_Area": 1386.0014340099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358089.216399997472763, 257690.749600000679493 ], [ 358109.867600001394749, 257727.648899998515844 ], [ 358136.628799997270107, 257709.924899999052286 ], [ 358113.574799999594688, 257671.106100000441074 ], [ 358107.898199997842312, 257674.859299998730421 ], [ 358089.216399997472763, 257690.749600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302011000", "MAP": null, "PARCEL_NAM": "120 & 121", "ACRE": null, "LONGITUDE": -64.93803793, "LATITUDE": 18.34884711, "OBJECTID_1": 9567, "PARCEL_NO_": "105302011000", "Tax_Legal_": "AGNES FANCY 120 & 121 8 GR NORTHSIDE", "Name": "HORACE TURNBULL TRUST", "Address": "10 Estate Lerkenulnd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.588894485500006, "SHAPE_Area": 481.34546902400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358049.624300003051758, 257700.135800000280142 ], [ 358033.627599999308586, 257684.806200001388788 ], [ 358027.065600000321865, 257697.840199999511242 ], [ 358049.451700001955032, 257720.399399999529123 ], [ 358059.222800001502037, 257709.291400000452995 ], [ 358049.624300003051758, 257700.135800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302010200", "MAP": null, "PARCEL_NAM": "106", "ACRE": null, "LONGITUDE": -64.93713036, "LATITUDE": 18.34866951, "OBJECTID_1": 9559, "PARCEL_NO_": "105302010200", "Tax_Legal_": "AGNES FANCY 1O6 QUEENS QUARTER", "Name": "RHYMER, ARTHUR & OTHERS", "Address": "1295 Intervale Ave", "City": "Bronx", "State": "New York", "Zip": 10459, "Country": "United States", "Land_Value": 164800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.81640197199999, "SHAPE_Area": 1254.4265747 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358162.579999998211861, 257692.616599999368191 ], [ 358144.292000003159046, 257662.280499998480082 ], [ 358140.245999999344349, 257663.936099998652935 ], [ 358122.472999997437, 257667.801500000059605 ], [ 358113.574799999594688, 257671.106100000441074 ], [ 358136.628799997270107, 257709.924899999052286 ], [ 358162.579999998211861, 257692.616599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302020100", "MAP": null, "PARCEL_NAM": "65", "ACRE": null, "LONGITUDE": -64.93785706, "LATITUDE": 18.34796034, "OBJECTID_1": 9587, "PARCEL_NO_": "105302020100", "Tax_Legal_": "AGNES FANCY 65 QUEENS QTR", "Name": "WARNER, EVERETTE K", "Address": "PO Box 972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 217300, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 408.65967837, "SHAPE_Area": 5785.5211801400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358124.749099999666214, 257589.926600001752377 ], [ 358121.656999997794628, 257574.280299998819828 ], [ 358061.386699996888638, 257549.933499999344349 ], [ 358032.798900000751019, 257592.762600000947714 ], [ 358015.719700001180172, 257704.502399999648333 ], [ 358028.829199999570847, 257680.122800000011921 ], [ 358030.454499997198582, 257678.658500000834465 ], [ 358041.899300001561642, 257660.386999998241663 ], [ 358059.029600001871586, 257637.30689999833703 ], [ 358070.442100003361702, 257622.834899999201298 ], [ 358072.065499998629093, 257621.581599999219179 ], [ 358082.642899997532368, 257610.480200000107288 ], [ 358092.377999998629093, 257603.593800000846386 ], [ 358110.196000002324581, 257594.451499998569489 ], [ 358124.749099999666214, 257589.926600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302011100", "MAP": null, "PARCEL_NAM": "117", "ACRE": null, "LONGITUDE": -64.93794885, "LATITUDE": 18.34865981, "OBJECTID_1": 9568, "PARCEL_NO_": "105302011100", "Tax_Legal_": "AGNES FANCY 117 QUEENS QTR", "Name": "TURNBULL, HAZEL and HUBERT", "Address": "PO BOX 302162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.922289582, "SHAPE_Area": 758.27317423 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358074.765699997544289, 257683.243000000715256 ], [ 358046.711999997496605, 257663.381700001657009 ], [ 358033.627599999308586, 257684.806200001388788 ], [ 358049.624300003051758, 257700.135800000280142 ], [ 358074.765699997544289, 257683.243000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302010700", "MAP": null, "PARCEL_NAM": "99", "ACRE": null, "LONGITUDE": -64.93617327, "LATITUDE": 18.34857173, "OBJECTID_1": 9564, "PARCEL_NO_": "105302010700", "Tax_Legal_": "AGNES FANCY 99 QUEENS QUARTER", "Name": "HILL, II, CLEMENT E.", "Address": "71 Roberts Pl", "City": "Roosevelt", "State": "New York", "Zip": 11575, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.795894073, "SHAPE_Area": 677.25572574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358256.979699999094009, 257686.212000001221895 ], [ 358239.514200001955032, 257653.982799999415874 ], [ 358222.49889999628067, 257663.553899999707937 ], [ 358240.785099998116493, 257694.100999999791384 ], [ 358256.979699999094009, 257686.212000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302010300", "MAP": null, "PARCEL_NAM": "64", "ACRE": null, "LONGITUDE": -64.93690678, "LATITUDE": 18.34855827, "OBJECTID_1": 9560, "PARCEL_NO_": "105302010300", "Tax_Legal_": "AGNES FANCY 64 QUEENS QUARTER", "Name": "DOUGLAS, JR & SR , HUGO", "Address": "PO Box 11300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.510217458, "SHAPE_Area": 719.04148443899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358144.292000003159046, 257662.280499998480082 ], [ 358162.579999998211861, 257692.616599999368191 ], [ 358179.609700001776218, 257681.356899999082088 ], [ 358163.728000000119209, 257652.518199998885393 ], [ 358144.292000003159046, 257662.280499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302010500", "MAP": null, "PARCEL_NAM": "75", "ACRE": null, "LONGITUDE": -64.93661532, "LATITUDE": 18.34845796, "OBJECTID_1": 9562, "PARCEL_NO_": "105302010500", "Tax_Legal_": "AGNES FANCY 75 QUEENS QUARTER", "Name": "EDWARDS, ELDERIS", "Address": "405 E 105th St", "City": "New York", "State": "New York", "Zip": 10029, "Country": "United States", "Land_Value": 46500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.670157356, "SHAPE_Area": 792.82589426100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358207.969099998474121, 257665.334800001233816 ], [ 358191.263099998235703, 257638.600299999117851 ], [ 358174.256800003349781, 257647.115899998694658 ], [ 358190.959200002253056, 257674.272599998861551 ], [ 358201.299199998378754, 257691.033599998801947 ], [ 358207.969099998474121, 257665.334800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105401130800", "MAP": "B9-361-T72", "PARCEL_NAM": "Section 3 of 8G", "ACRE": ".76", "LONGITUDE": -64.92933982, "LATITUDE": 18.34847003, "OBJECTID_1": 11666, "PARCEL_NO_": "105401130800", "Tax_Legal_": "LYTTONS FANCY SEC 3 OF 8G QUEENS QTR", "Name": "PETERSEN, MAUD", "Address": "P.O. BOX 2276", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 96000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 429.436710103, "SHAPE_Area": 3530.9978299 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359006.328100003302097, 257658.992300000041723 ], [ 359005.377899996936321, 257653.833500001579523 ], [ 358990.561200000345707, 257657.643500000238419 ], [ 358979.580399997532368, 257657.07149999961257 ], [ 358969.632100000977516, 257656.224899999797344 ], [ 358945.501999996602535, 257651.356499999761581 ], [ 358922.006999999284744, 257646.488200001418591 ], [ 358910.788599997758865, 257641.831500001251698 ], [ 358868.79389999806881, 257617.33669999986887 ], [ 358862.377599999308586, 257613.273400001227856 ], [ 358859.790500000119209, 257610.942400000989437 ], [ 358853.851099997758865, 257607.072299998253584 ], [ 358850.8125, 257614.006000000983477 ], [ 358859.988499999046326, 257617.278099998831749 ], [ 358865.351700000464916, 257620.881299998611212 ], [ 358945.578400000929832, 257674.781500000506639 ], [ 358982.377099998295307, 257699.504700001329184 ], [ 359011.719099998474121, 257719.084899999201298 ], [ 359009.236900001764297, 257696.168499998748302 ], [ 359006.328100003302097, 257658.992300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302011200", "MAP": null, "PARCEL_NAM": "116", "ACRE": null, "LONGITUDE": -64.93782582, "LATITUDE": 18.34852864, "OBJECTID_1": 9569, "PARCEL_NO_": "105302011200", "Tax_Legal_": "AGNES FANCY 116 QUEENS QTR", "Name": "SANTANA, FRANK & MARIE", "Address": "PO Box 10107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.931882078399994, "SHAPE_Area": 495.30296288800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358082.123199999332428, 257671.48200000077486 ], [ 358055.67849999666214, 257652.056000001728535 ], [ 358046.711999997496605, 257663.381700001657009 ], [ 358074.765699997544289, 257683.243000000715256 ], [ 358077.170199997723103, 257684.951400000602007 ], [ 358082.123199999332428, 257671.48200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302013000", "MAP": null, "PARCEL_NAM": "118A", "ACRE": null, "LONGITUDE": -64.93745974, "LATITUDE": 18.34847971, "OBJECTID_1": 9585, "PARCEL_NO_": "105302013000", "Tax_Legal_": "AGNES FANCY 118A LITTLE NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.377047082499999, "SHAPE_Area": 317.605842784 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358110.515000000596046, 257651.660500001162291 ], [ 358107.34009999781847, 257645.723900001496077 ], [ 358087.682899996638298, 257681.448899999260902 ], [ 358102.286399997770786, 257671.013700000941753 ], [ 358107.962999999523163, 257667.260499998927116 ], [ 358116.864799998700619, 257663.533700000494719 ], [ 358110.515000000596046, 257651.660500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302010800", "MAP": null, "PARCEL_NAM": "103", "ACRE": null, "LONGITUDE": -64.93594937, "LATITUDE": 18.34837265, "OBJECTID_1": 9565, "PARCEL_NO_": "105302010800", "Tax_Legal_": "AGNES FANCY 1O3 QUEENS QUARTER", "Name": "HILL, II, CLEMENT E.", "Address": "71 Roberts Pl", "City": "Roosevelt", "State": "New York", "Zip": 11575, "Country": "United States", "Land_Value": 102900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.28342338600001, "SHAPE_Area": 1459.61006557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358287.259199999272823, 257634.108600001782179 ], [ 358272.027400001883507, 257623.640399999916553 ], [ 358239.514200001955032, 257653.982799999415874 ], [ 358256.979699999094009, 257686.212000001221895 ], [ 358270.859600000083447, 257666.060600001364946 ], [ 358275.717299997806549, 257663.778299998492002 ], [ 358287.259199999272823, 257634.108600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302010400", "MAP": null, "PARCEL_NAM": "82", "ACRE": null, "LONGITUDE": -64.93675029000001, "LATITUDE": 18.34847771, "OBJECTID_1": 9561, "PARCEL_NO_": "105302010400", "Tax_Legal_": "AGNES FANCY 82 QUEENS QUARTER", "Name": "BROWN, ALEXANDER", "Address": "3737 Redan Rd", "City": "Decatur", "State": "Georgia", "Zip": 30032, "Country": "United States", "Land_Value": 20300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.451671020899994, "SHAPE_Area": 287.651383356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358166.967600002884865, 257650.855900000780821 ], [ 358182.851099997758865, 257679.483600001782179 ], [ 358190.959200002253056, 257674.272599998861551 ], [ 358174.256800003349781, 257647.115899998694658 ], [ 358166.967600002884865, 257650.855900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302011300", "MAP": null, "PARCEL_NAM": "104", "ACRE": null, "LONGITUDE": -64.93775186000001, "LATITUDE": 18.34838054, "OBJECTID_1": 9570, "PARCEL_NO_": "105302011300", "Tax_Legal_": "AGNES FANCY 104 QUEENS QTR", "Name": "LEDEE, SR., MARIE LEDEE & FRANK", "Address": "PO Box 10107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21500, "Improved_V": 83800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.529866196, "SHAPE_Area": 640.23629967800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358087.868100002408028, 257659.707800000905991 ], [ 358072.807099997997284, 257629.186999998986721 ], [ 358069.540500000119209, 257634.015399999916553 ], [ 358063.831500001251698, 257641.56810000166297 ], [ 358055.67849999666214, 257652.056000001728535 ], [ 358082.123199999332428, 257671.48200000077486 ], [ 358087.868100002408028, 257659.707800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302010600", "MAP": null, "PARCEL_NAM": "74", "ACRE": null, "LONGITUDE": -64.93646831, "LATITUDE": 18.3483321, "OBJECTID_1": 9563, "PARCEL_NO_": "105302010600", "Tax_Legal_": "AGNES FANCY 74 QUEENS QTR", "Name": "PAYNE, HUNTER & DEL", "Address": "PO Box 6672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.08767560699999, "SHAPE_Area": 653.93720630099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358191.263099998235703, 257638.600299999117851 ], [ 358207.969099998474121, 257665.334800001233816 ], [ 358226.586199998855591, 257657.043400000780821 ], [ 358209.09009999781847, 257628.40260000154376 ], [ 358204.219800002872944, 257632.162399999797344 ], [ 358191.263099998235703, 257638.600299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302011400", "MAP": null, "PARCEL_NAM": "80A", "ACRE": null, "LONGITUDE": -64.93763779, "LATITUDE": 18.34831894, "OBJECTID_1": 9571, "PARCEL_NO_": "105302011400", "Tax_Legal_": "AGNES FANCY 80A QUEENS QTR", "Name": "SANTANA SR., MARIE C. L. & FRANK", "Address": "PO Box 10107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.622175294800002, "SHAPE_Area": 215.39826594100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358087.868100002408028, 257659.707800000905991 ], [ 358095.241800002753735, 257646.046999998390675 ], [ 358072.807099997997284, 257629.186999998986721 ], [ 358087.868100002408028, 257659.707800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302011700", "MAP": null, "PARCEL_NAM": "63", "ACRE": null, "LONGITUDE": -64.9370487, "LATITUDE": 18.34816801, "OBJECTID_1": 9574, "PARCEL_NO_": "105302011700", "Tax_Legal_": "AGNES FANCY 63 QUEENS QTR", "Name": "RHYMER, C & L C/O A. RHYMER", "Address": "1295 Intervale Ave", "City": "Bronx", "State": "New York", "Zip": 10459, "Country": "United States", "Land_Value": 74000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.68359507100001, "SHAPE_Area": 921.24965693700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358167.027000002563, 257643.890299998223782 ], [ 358137.650100000202656, 257590.0320999994874 ], [ 358133.60419999808073, 257591.687800001353025 ], [ 358143.895599998533726, 257614.147900000214577 ], [ 358130.906499996781349, 257624.385200001299381 ], [ 358147.589100003242493, 257653.863699998706579 ], [ 358167.027000002563, 257643.890299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302011500", "MAP": null, "PARCEL_NAM": "85 & 131", "ACRE": null, "LONGITUDE": -64.93734396000001, "LATITUDE": 18.34818078, "OBJECTID_1": 9572, "PARCEL_NO_": "105302011500", "Tax_Legal_": "85 & 131 AGNES FANCY QUEENS QUARTER", "Name": "ELDONDANE FRANCIS FAM. REV. TRST", "Address": "PO Box 302414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23600, "Improved_V": 152700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.294877935, "SHAPE_Area": 552.06821071100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358130.048100002110004, 257630.499899998307228 ], [ 358115.748400002717972, 257605.262699998915195 ], [ 358113.29169999808073, 257609.675599999725819 ], [ 358109.065999999642372, 257632.439100001007318 ], [ 358104.157999999821186, 257640.631599999964237 ], [ 358107.34009999781847, 257645.723900001496077 ], [ 358110.515000000596046, 257651.660500001162291 ], [ 358130.048100002110004, 257630.499899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130300", "MAP": "B9-361-T72", "PARCEL_NAM": "Section 1 of 8G", "ACRE": "3.31", "LONGITUDE": -64.92952184000001, "LATITUDE": 18.34764861, "OBJECTID_1": 11660, "PARCEL_NO_": "105401130300", "Tax_Legal_": "LYTTONS FANCY SEC 1 OF 8G QUEENS QTR", "Name": "PETERSEN, MAUD", "Address": "P.O. BOX 2276", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 181300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 537.94977954499996, "SHAPE_Area": 11863.4615884 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358920.195100001990795, 257636.769400000572205 ], [ 358925.39360000193119, 257639.079799998551607 ], [ 358961.588699996471405, 257646.911499999463558 ], [ 358970.690399996936321, 257649.028200000524521 ], [ 358980.215400002896786, 257649.874800000339746 ], [ 358993.338799998164177, 257650.086500000208616 ], [ 359003.720200002193451, 257648.25450000166893 ], [ 359000.300200000405312, 257609.335999999195337 ], [ 358994.412500001490116, 257543.215500000864267 ], [ 358992.171599999070168, 257522.298900000751019 ], [ 358947.588899999856949, 257549.587200000882149 ], [ 358946.18299999833107, 257525.300000000745058 ], [ 358905.127599999308586, 257517.153499998152256 ], [ 358872.122699998319149, 257510.550599999725819 ], [ 358871.248099997639656, 257518.565000001341105 ], [ 358867.949100002646446, 257527.192800000309944 ], [ 358854.906099997460842, 257543.76240000128746 ], [ 358893.386100001633167, 257570.252999998629093 ], [ 358923.120800003409386, 257582.106499999761581 ], [ 358917.347099997103214, 257597.258000001311302 ], [ 358923.614200003445148, 257618.840799998492002 ], [ 358920.195100001990795, 257636.769400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302010900", "MAP": null, "PARCEL_NAM": "84", "ACRE": null, "LONGITUDE": -64.93616752, "LATITUDE": 18.34812222, "OBJECTID_1": 9566, "PARCEL_NO_": "105302010900", "Tax_Legal_": "AGNES FANCY 84 QUEENS QUARTER", "Name": "LEMMOND, LUCIANO", "Address": "PO Box 305351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.92398363000001, "SHAPE_Area": 1176.81479552 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358215.583700001239777, 257623.389499999582767 ], [ 358237.94650000333786, 257648.692699998617172 ], [ 358267.216499999165535, 257620.434599999338388 ], [ 358242.370099999010563, 257602.710499998182058 ], [ 358235.869199998676777, 257608.567899998277426 ], [ 358233.441299997270107, 257609.603500001132488 ], [ 358215.583700001239777, 257623.389499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098900", "MAP": "D9-8469-T010", "PARCEL_NAM": "1A-3-1A", "ACRE": ".22", "LONGITUDE": -64.94759246, "LATITUDE": 18.34799055, "OBJECTID_1": 9371, "PARCEL_NO_": "105301098900", "Tax_Legal_": "1A-3-1 REM SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "ABUSAOUD, MUSTAFA", "Address": "PO Box 305126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035126, "Country": "United States", "Land_Value": 64600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.07317753, "SHAPE_Area": 794.81273286600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357017.52929999679327, 257598.807399999350309 ], [ 357019.859999999403954, 257619.284099999815226 ], [ 357047.223200000822544, 257609.851300001144409 ], [ 357045.344099998474121, 257576.921700000762939 ], [ 357037.028200000524521, 257581.657400000840425 ], [ 357017.52929999679327, 257598.807399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302011600", "MAP": null, "PARCEL_NAM": "80", "ACRE": null, "LONGITUDE": -64.93756599, "LATITUDE": 18.34813033, "OBJECTID_1": 9573, "PARCEL_NO_": "105302011600", "Tax_Legal_": "AGNES FANCY 80 QUEENS QTR", "Name": "LEBLANC, BRYON", "Address": "PO Box 306993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15800, "Improved_V": 81800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.70054202199999, "SHAPE_Area": 784.14434592700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358106.837600000202656, 257610.044900000095367 ], [ 358109.312299996614456, 257603.521299999207258 ], [ 358111.759999997913837, 257600.163800001144409 ], [ 358097.995200000703335, 257606.806200001388788 ], [ 358085.020400002598763, 257615.354800000786781 ], [ 358074.435900002717972, 257627.300500001758337 ], [ 358072.807099997997284, 257629.186999998986721 ], [ 358095.241800002753735, 257646.046999998390675 ], [ 358101.79839999973774, 257633.646200001239777 ], [ 358105.118900001049042, 257622.485399998724461 ], [ 358106.837600000202656, 257610.044900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302011900", "MAP": null, "PARCEL_NAM": "61", "ACRE": null, "LONGITUDE": -64.93687777, "LATITUDE": 18.34795075, "OBJECTID_1": 9576, "PARCEL_NO_": "105302011900", "Tax_Legal_": "61 AGNES FANCY QUEENS QTR", "Name": "ELDONDANE FRANCIS FAM. REV. TRST", "Address": "PO Box 302414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 138900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.29095663199999, "SHAPE_Area": 1925.7262735100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358167.027000002563, 257643.890299998223782 ], [ 358184.03320000320673, 257635.374699998646975 ], [ 358172.13459999859333, 257612.268100000917912 ], [ 358191.572400003671646, 257602.294700000435114 ], [ 358174.896999999880791, 257571.971900001168251 ], [ 358161.119499996304512, 257580.091699998825788 ], [ 358137.650100000202656, 257590.0320999994874 ], [ 358167.027000002563, 257643.890299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302012000", "MAP": null, "PARCEL_NAM": "60", "ACRE": null, "LONGITUDE": -64.93666785000001, "LATITUDE": 18.34807456, "OBJECTID_1": 9577, "PARCEL_NO_": "105302012000", "Tax_Legal_": "AGNES FANCY 6O QUEENS QUARTER", "Name": "STEPHENS, JULIETTE & LISA NAOMI", "Address": "PO Box 8736", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.518051616700006, "SHAPE_Area": 578.87610729799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358184.03320000320673, 257635.374699998646975 ], [ 358204.282799996435642, 257624.774700000882149 ], [ 358191.572400003671646, 257602.294700000435114 ], [ 358172.13459999859333, 257612.268100000917912 ], [ 358184.03320000320673, 257635.374699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401131100", "MAP": "B9-361-T72", "PARCEL_NAM": "8G-2", "ACRE": "0.24", "LONGITUDE": -64.92994763, "LATITUDE": 18.34795421, "OBJECTID_1": 11667, "PARCEL_NO_": "105401131100", "Tax_Legal_": "LYTTONS FANCY SEC 2OF 8G KINGS QTR", "Name": "PETERSEN, MAUD", "Address": "P.O. BOX 2276", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.87544879199999, "SHAPE_Area": 1382.70590111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358856.864699997007847, 257597.818399999290705 ], [ 358868.869499996304512, 257608.4712999984622 ], [ 358907.401900000870228, 257629.343100000172853 ], [ 358920.195100001990795, 257636.769400000572205 ], [ 358923.614200003445148, 257618.840799998492002 ], [ 358917.347099997103214, 257597.258000001311302 ], [ 358856.864699997007847, 257597.818399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302050100", "MAP": null, "PARCEL_NAM": "105", "ACRE": null, "LONGITUDE": -64.93588968, "LATITUDE": 18.34798169, "OBJECTID_1": 9663, "PARCEL_NO_": "105302050100", "Tax_Legal_": "AGNES FANCY 1O5 QUEENS QTR", "Name": "KING, LEONARDO R.", "Address": "4128 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.344428886, "SHAPE_Area": 1135.9648702899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358276.265799999237061, 257599.399300001561642 ], [ 358264.23759999871254, 257591.49040000140667 ], [ 358255.420299999415874, 257585.296500001102686 ], [ 358250.510499998927116, 257593.700100000947714 ], [ 358242.370099999010563, 257602.710499998182058 ], [ 358267.216499999165535, 257620.434599999338388 ], [ 358272.027400001883507, 257623.640399999916553 ], [ 358287.259199999272823, 257634.108600001782179 ], [ 358295.509400002658367, 257612.22239999845624 ], [ 358276.265799999237061, 257599.399300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302100400", "MAP": null, "PARCEL_NAM": "71", "ACRE": null, "LONGITUDE": -64.93383969, "LATITUDE": 18.34797919, "OBJECTID_1": 9819, "PARCEL_NO_": "105302100400", "Tax_Legal_": "AGNES FANCY 71 QUEENS QTR", "Name": "KELLER, ISIDORE", "Address": "2477 McCoy Dr", "City": "Tustin", "State": "California", "Zip": 92782, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.751655514600003, "SHAPE_Area": 568.068652843 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358489.21679999679327, 257591.220800001174212 ], [ 358472.966399997472763, 257605.653299998492002 ], [ 358484.854299999773502, 257630.026299998164177 ], [ 358501.102899998426437, 257615.804900001734495 ], [ 358489.21679999679327, 257591.220800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302480700", "MAP": "D9-8998-T015", "PARCEL_NAM": "4C", "ACRE": "0.56", "LONGITUDE": -64.9350707, "LATITUDE": 18.3478093, "OBJECTID_1": 10841, "PARCEL_NO_": "105302480700", "Tax_Legal_": "4C AGNES FANCY GREAT NORTHSIDE QUARTER", "Name": "CHONGASING, ELTON & BEVERLY (TRUSTEES)", "Address": "PO BOX 301763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.11484731, "SHAPE_Area": 2204.34512976 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358395.565800003707409, 257604.386500000953674 ], [ 358352.052000001072884, 257562.295699998736382 ], [ 358320.121200002729893, 257564.443799998611212 ], [ 358357.280299998819828, 257623.504900000989437 ], [ 358380.98929999768734, 257611.655499998480082 ], [ 358384.944099999964237, 257609.683400001376867 ], [ 358395.565800003707409, 257604.386500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302011800", "MAP": null, "PARCEL_NAM": "62", "ACRE": null, "LONGITUDE": -64.93720392, "LATITUDE": 18.34798077, "OBJECTID_1": 9575, "PARCEL_NO_": "105302011800", "Tax_Legal_": "AGNES FANCY 62 QUEENS QUARTER", "Name": "BAILEY, VIVIAN G.", "Address": "PO Box 9056", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37900, "Improved_V": 4800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.4312418632, "SHAPE_Area": 436.156352336 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358130.906499996781349, 257624.385200001299381 ], [ 358143.895599998533726, 257614.147900000214577 ], [ 358133.60419999808073, 257591.687800001353025 ], [ 358118.192500002682209, 257602.327399998903275 ], [ 358130.906499996781349, 257624.385200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301095600", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-22", "ACRE": "0.312", "LONGITUDE": -64.94848735, "LATITUDE": 18.34780802, "OBJECTID_1": 9339, "PARCEL_NO_": "105301095600", "Tax_Legal_": "1B-22 SOLBERG NO 1 LITTLE NORTHSIDE QTR", "Name": "BAZZAR, ZAINA I. M.", "Address": "PO BOX 8523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 157600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.198724615, "SHAPE_Area": 1372.5524434 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356930.362999998033047, 257608.015399999916553 ], [ 356939.255800001323223, 257605.344000000506639 ], [ 356943.305399999022484, 257603.266199998557568 ], [ 356962.111299999058247, 257572.811599999666214 ], [ 356929.277300000190735, 257546.156100001186132 ], [ 356923.203299999237061, 257596.557799998670816 ], [ 356930.362999998033047, 257608.015399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301095500", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-26", "ACRE": "0.293", "LONGITUDE": -64.94884125, "LATITUDE": 18.34780464, "OBJECTID_1": 9338, "PARCEL_NO_": "105301095500", "Tax_Legal_": "SOLBERG 1B-26 LITTLE NORTHSIDE", "Name": "LMAF MANAGEMENT LLC", "Address": "PO Box 9951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21400, "Improved_V": 481700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.11166459, "SHAPE_Area": 1291.5356721799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356919.454099997878075, 257563.385400000959635 ], [ 356904.256399996578693, 257548.906700000166893 ], [ 356901.848200000822544, 257547.620400000363588 ], [ 356879.711000002920628, 257590.502300001680851 ], [ 356908.594400003552437, 257607.626200001686811 ], [ 356919.454099997878075, 257563.385400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091600", "MAP": "G9-719-T63", "PARCEL_NAM": "67", "ACRE": ".38", "LONGITUDE": -64.94409674000001, "LATITUDE": 18.34768239, "OBJECTID_1": 9304, "PARCEL_NO_": "105301091600", "Tax_Legal_": "SOLBERG 67 LITTLE NRSIDE QTR", "Name": "SOMERSALL, MARCELLA M", "Address": "144W N6175 Rolling Ridge Dr", "City": "Menomonee Falls", "State": "Wisconsin", "Zip": 53051, "Country": "United States", "Land_Value": 70800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.95604673599999, "SHAPE_Area": 1869.02328177 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357384.555299997329712, 257580.754700001329184 ], [ 357412.411499999463558, 257600.184900000691414 ], [ 357432.248999997973442, 257569.904399998486042 ], [ 357404.236699998378754, 257545.188299998641014 ], [ 357394.630999997258186, 257536.877000000327826 ], [ 357377.502499997615814, 257559.745999999344349 ], [ 357384.555299997329712, 257580.754700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302100200", "MAP": null, "PARCEL_NAM": "36", "ACRE": null, "LONGITUDE": -64.9342201, "LATITUDE": 18.34781397, "OBJECTID_1": 9817, "PARCEL_NO_": "105302100200", "Tax_Legal_": "AGNES FANCY 36 QUEENS QTR", "Name": "CHRISTIAN II, ALPHONSO", "Address": "1923 Sheperd St", "City": "Washington", "State": "District of Columbia", "Zip": 20011, "Country": "United States", "Land_Value": 67000, "Improved_V": 276400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.83068749500001, "SHAPE_Area": 1216.81190206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358447.852099999785423, 257619.379900000989437 ], [ 358467.298900000751019, 257608.351100001484156 ], [ 358446.750100001692772, 257559.420299999415874 ], [ 358427.177500002086163, 257585.224599998444319 ], [ 358435.107500001788139, 257600.910399999469519 ], [ 358447.852099999785423, 257619.379900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098400", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-6", "ACRE": "0.282", "LONGITUDE": -64.94806468, "LATITUDE": 18.34789285, "OBJECTID_1": 9366, "PARCEL_NO_": "105301098400", "Tax_Legal_": "1B-6 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "DONA V HARVEY BASSUE and CLIVE BASSUE", "Address": "PO Box 8103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24300, "Improved_V": 363000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.77688729900001, "SHAPE_Area": 1224.0479460900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357014.354400001466274, 257592.870799999684095 ], [ 356978.295100003480911, 257566.188999999314547 ], [ 356973.415899999439716, 257571.004200000315905 ], [ 356968.51860000193119, 257577.93019999936223 ], [ 356956.262100003659725, 257596.828299999237061 ], [ 356956.240500003099442, 257599.361299999058247 ], [ 356957.836999997496605, 257601.27419999986887 ], [ 356978.806500002741814, 257600.8125 ], [ 356990.076899997889996, 257603.015700001269579 ], [ 356996.525600001215935, 257603.279599998146296 ], [ 357006.228299997746944, 257600.192600000649691 ], [ 357014.354400001466274, 257592.870799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91152741000001, "LATITUDE": 18.34776684, "OBJECTID_1": 19644, "PARCEL_NO_": "105501011000", "Tax_Legal_": "ST JOS&ROSENDAHL 4D-8-1 GR NORTHSIDE QTR", "Name": "LEROY, ALAIN", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66600, "Improved_V": 304000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.79469111700001, "SHAPE_Area": 1188.8164242400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360859.989399999380112, 257585.504299998283386 ], [ 360826.883799999952316, 257590.721799999475479 ], [ 360829.859099999070168, 257620.088199999183416 ], [ 360844.333200000226498, 257624.850699998438358 ], [ 360854.766699999570847, 257630.635600000619888 ], [ 360858.765900000929832, 257634.467999998480082 ], [ 360860.745399996638298, 257591.421100001782179 ], [ 360859.989399999380112, 257585.504299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302050200", "MAP": null, "PARCEL_NAM": "55C", "ACRE": null, "LONGITUDE": -64.93571505, "LATITUDE": 18.34790003, "OBJECTID_1": 9664, "PARCEL_NO_": "105302050200", "Tax_Legal_": "AGNES FANCY 55C QUEENS QTR", "Name": "ESTHER IONA JAMES & ALFREDO BERNARDO FAMILY TRUST", "Address": "PO Box 1222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.312424321099996, "SHAPE_Area": 278.45853982800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358300.458700001239777, 257599.17509999871254 ], [ 358282.802599996328354, 257589.320300001651049 ], [ 358276.265799999237061, 257599.399300001561642 ], [ 358295.509400002658367, 257612.22239999845624 ], [ 358300.458700001239777, 257599.17509999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92334579, "LATITUDE": 18.34787651, "OBJECTID_1": 12446, "PARCEL_NO_": "105402010300", "Tax_Legal_": "327 HOSPITAL GROUND KINGS QTR", "Name": "SCHNEIDER SMITH (LIFE ESTATE), SHELLY", "Address": "PO Box 302096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18500, "Improved_V": 56400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.560631610300007, "SHAPE_Area": 604.57675584200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359605.178400002419949, 257597.399099998176098 ], [ 359582.635799996554852, 257593.20380000025034 ], [ 359585.647100001573563, 257618.348600000143051 ], [ 359596.908500000834465, 257621.607200000435114 ], [ 359602.549099996685982, 257622.075500000268221 ], [ 359611.432899996638298, 257620.459499999880791 ], [ 359605.178400002419949, 257597.399099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92311551, "LATITUDE": 18.34782903, "OBJECTID_1": 12447, "PARCEL_NO_": "105402010400", "Tax_Legal_": "326 HOSPITAL GROUND KINGS QTR.", "Name": "CLENDINEN, DILBERT & YVONE G", "Address": "964 Whetstone Pl", "City": "Rockledge", "State": "Florida", "Zip": 32955, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.92398169499999, "SHAPE_Area": 645.34157437299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359635.722999997437, 257608.837099999189377 ], [ 359630.273000001907349, 257585.99439999833703 ], [ 359605.178400002419949, 257597.399099998176098 ], [ 359611.432899996638298, 257620.459499999880791 ], [ 359621.141000002622604, 257616.73930000141263 ], [ 359635.722999997437, 257608.837099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92360265000001, "LATITUDE": 18.34782347, "OBJECTID_1": 12445, "PARCEL_NO_": "105402010200", "Tax_Legal_": "HOSPITAL GROUND 328 NEW QUARTER", "Name": "BUSSUE, LYDIA", "Address": "PO Box 10125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.740209709, "SHAPE_Area": 771.46668434499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359582.635799996554852, 257593.20380000025034 ], [ 359552.87780000269413, 257584.094300001859665 ], [ 359558.248599998652935, 257616.224500000476837 ], [ 359576.797399997711182, 257615.954199999570847 ], [ 359585.647100001573563, 257618.348600000143051 ], [ 359582.635799996554852, 257593.20380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302012400", "MAP": null, "PARCEL_NAM": "58A", "ACRE": null, "LONGITUDE": -64.93621881, "LATITUDE": 18.34782578, "OBJECTID_1": 9580, "PARCEL_NO_": "105302012400", "Tax_Legal_": "AGNES FANCY 58A QUEENS QTR", "Name": "TODMAN, ALMIRA", "Address": "PO Box 1315", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16800, "Improved_V": 110300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.634597112099996, "SHAPE_Area": 365.85910315500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358249.801299996674061, 257582.295200001448393 ], [ 358245.816500000655651, 257576.77419999986887 ], [ 358221.476099997758865, 257594.306800000369549 ], [ 358227.824100002646446, 257606.391100000590086 ], [ 358234.312299996614456, 257602.011199999600649 ], [ 358241.628499999642372, 257595.105000000447035 ], [ 358248.154500000178814, 257586.292500000447035 ], [ 358249.801299996674061, 257582.295200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302100500", "MAP": null, "PARCEL_NAM": "70", "ACRE": null, "LONGITUDE": -64.9339351, "LATITUDE": 18.34778877, "OBJECTID_1": 9820, "PARCEL_NO_": "105302100500", "Tax_Legal_": "AGNES FANCY 70 QUEENS QTR", "Name": "WADE, MICHAEL B.", "Address": "1612 Brightseat Rd", "City": "Landover", "State": "Maryland", "Zip": 20785, "Country": "United States", "Land_Value": 19700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.471845599700004, "SHAPE_Area": 404.24274181700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358481.304700002074242, 257573.424199998378754 ], [ 358465.056199997663498, 257587.645599998533726 ], [ 358472.966399997472763, 257605.653299998492002 ], [ 358489.21679999679327, 257591.220800001174212 ], [ 358481.304700002074242, 257573.424199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301093600", "MAP": "D9-2273-T83", "PARCEL_NAM": "94-3", "ACRE": "1.02", "LONGITUDE": -64.94347287, "LATITUDE": 18.34744508, "OBJECTID_1": 9316, "PARCEL_NO_": "105301093600", "Tax_Legal_": "SOLBERG 94-3 LT. NORTHSIDE", "Name": "HAGEN, ROBERT E. & TRATNIK, FR", "Address": "PO Box 11147", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 130200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.19683526900002, "SHAPE_Area": 5154.2281174299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357488.722800001502037, 257594.575399998575449 ], [ 357490.064900003373623, 257591.054800000041723 ], [ 357489.322999998927116, 257587.592500001192093 ], [ 357489.322999998927116, 257580.173200000077486 ], [ 357496.742299996316433, 257565.581999998539686 ], [ 357502.677699998021126, 257553.711199998855591 ], [ 357506.387299999594688, 257541.098499998450279 ], [ 357510.096900001168251, 257532.442699998617172 ], [ 357509.096600003540516, 257514.636199999600649 ], [ 357475.512199997901917, 257508.197000000625849 ], [ 357436.870399996638298, 257500.703499998897314 ], [ 357429.743400000035763, 257554.564899999648333 ], [ 357438.377400003373623, 257562.119699999690056 ], [ 357457.914800003170967, 257579.184000000357628 ], [ 357465.334100000560284, 257587.345199998468161 ], [ 357473.742600001394749, 257592.043999999761581 ], [ 357481.161799997091293, 257594.764400001615286 ], [ 357488.722800001502037, 257594.575399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098300", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-5", "ACRE": "0.295", "LONGITUDE": -64.94785275, "LATITUDE": 18.3477141, "OBJECTID_1": 9365, "PARCEL_NO_": "105301098300", "Tax_Legal_": "SOLBERG 1B-5 LT.NORTHSIDE QTR.", "Name": "BAZZAR, ZAINA I. M.", "Address": "PO BOX 8523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34700, "Improved_V": 259000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.82096423199999, "SHAPE_Area": 1256.6381454 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357032.224500000476837, 257577.607299998402596 ], [ 357005.889499999582767, 257545.305500000715256 ], [ 356988.863499999046326, 257556.14299999922514 ], [ 356978.295100003480911, 257566.188999999314547 ], [ 357014.354400001466274, 257592.870799999684095 ], [ 357021.670500002801418, 257585.964600000530481 ], [ 357032.224500000476837, 257577.607299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301095400", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-27", "ACRE": "0.284", "LONGITUDE": -64.94905694000001, "LATITUDE": 18.34767221, "OBJECTID_1": 9337, "PARCEL_NO_": "105301095400", "Tax_Legal_": "SOLBERG 1B-27 LT.NORTHSIDE QTR.", "Name": "MUSTAFA, HUSSEIN & NUFA", "Address": "PO Box 10200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.92791073399999, "SHAPE_Area": 1232.38587226 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356901.848200000822544, 257547.620400000363588 ], [ 356880.970399998128414, 257537.31700000166893 ], [ 356854.839400000870228, 257575.733300000429153 ], [ 356879.711000002920628, 257590.502300001680851 ], [ 356901.848200000822544, 257547.620400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302050300", "MAP": null, "PARCEL_NAM": "55B", "ACRE": null, "LONGITUDE": -64.93586143, "LATITUDE": 18.34781136, "OBJECTID_1": 9665, "PARCEL_NO_": "105302050300", "Tax_Legal_": "AGNES FANCY 55B QUEENS QUARTER", "Name": "FOY, IVAN & ADORA", "Address": "BOX 4156", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.111348689000003, "SHAPE_Area": 174.888707969 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358270.776199996471405, 257581.200300000607967 ], [ 358264.23759999871254, 257591.49040000140667 ], [ 358276.265799999237061, 257599.399300001561642 ], [ 358282.802599996328354, 257589.320300001651049 ], [ 358270.776199996471405, 257581.200300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401140500", "MAP": null, "PARCEL_NAM": "245", "ACRE": null, "LONGITUDE": -64.92710118, "LATITUDE": 18.34775881, "OBJECTID_1": 11679, "PARCEL_NO_": "105401140500", "Tax_Legal_": "HOSPITAL GROUND 245 NEW QUARTER", "Name": "ANDREWS, FLORECIA", "Address": "PO Box 374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9400, "Improved_V": 80200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.478806337099996, "SHAPE_Area": 326.735147246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359192.264700002968311, 257603.602299999445677 ], [ 359203.459600001573563, 257603.830699998885393 ], [ 359206.066699996590614, 257603.889600001275539 ], [ 359206.973300002515316, 257580.841099999845028 ], [ 359192.461499996483326, 257580.511199999600649 ], [ 359192.264700002968311, 257603.602299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91189256, "LATITUDE": 18.34763822, "OBJECTID_1": 19643, "PARCEL_NO_": "105501010900", "Tax_Legal_": "ST JOSEPH&ROSENDAL 4K-2 GR NORTHSIDE QTR", "Name": "John L Moorhead Amended and Restated Revoc Trust", "Address": "Po Box 182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.70054555900001, "SHAPE_Area": 2132.0980143299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360826.883799999952316, 257590.721799999475479 ], [ 360823.105800002813339, 257560.926699999719858 ], [ 360781.87780000269413, 257573.043800000101328 ], [ 360788.766000002622604, 257616.374299999326468 ], [ 360819.391500003635883, 257618.313700001686811 ], [ 360829.859099999070168, 257620.088199999183416 ], [ 360826.883799999952316, 257590.721799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105401131100", "MAP": "B9-361-T72", "PARCEL_NAM": "Section 2 of 8G", "ACRE": ".23", "LONGITUDE": -64.93070564, "LATITUDE": 18.34769815, "OBJECTID_1": 11667, "PARCEL_NO_": "105401131100", "Tax_Legal_": "LYTTONS FANCY SEC 2OF 8G KINGS QTR", "Name": "PETERSEN, MAUD", "Address": "P.O. BOX 2276", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.867160486, "SHAPE_Area": 660.01021934200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358839.191399998962879, 257585.217199999839067 ], [ 358831.291000001132488, 257570.800200000405312 ], [ 358828.074799999594688, 257569.718400001525879 ], [ 358801.496699996292591, 257574.884199999272823 ], [ 358805.326399996876717, 257597.497900001704693 ], [ 358839.191399998962879, 257585.217199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302050500", "MAP": null, "PARCEL_NAM": "55D", "ACRE": null, "LONGITUDE": -64.93564697, "LATITUDE": 18.34776478, "OBJECTID_1": 9667, "PARCEL_NO_": "105302050500", "Tax_Legal_": "AGNES FANCY 55D QUEENS QTR", "Name": "ESTHER IONA JAMES & ALFREDO BERNARDO FAMILY TRUST", "Address": "PO Box 1222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12200, "Improved_V": 171400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.815798002799994, "SHAPE_Area": 373.264071108 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358307.879199996590614, 257580.026299998164177 ], [ 358295.05009999871254, 257571.477600000798702 ], [ 358284.436800003051758, 257586.800599999725819 ], [ 358282.802599996328354, 257589.320300001651049 ], [ 358300.458700001239777, 257599.17509999871254 ], [ 358307.879199996590614, 257580.026299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302012200", "MAP": null, "PARCEL_NAM": "45B", "ACRE": null, "LONGITUDE": -64.93662633, "LATITUDE": 18.34769863, "OBJECTID_1": 9578, "PARCEL_NO_": "105302012200", "Tax_Legal_": "AGNES FANCY 45B CROWN PRINCE QTR", "Name": "MASSICOTTE, PETERSON", "Address": "PO Box 12288", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21600, "Improved_V": 57800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.441751428800004, "SHAPE_Area": 490.535898933 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358206.233400002121925, 257585.105000000447035 ], [ 358190.337399996817112, 257557.954999998211861 ], [ 358178.962700001895428, 257567.99439999833703 ], [ 358195.647100001573563, 257597.261799998581409 ], [ 358206.233400002121925, 257585.105000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401140200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9275337, "LATITUDE": 18.34775389, "OBJECTID_1": 11676, "PARCEL_NO_": "105401140200", "Tax_Legal_": "242 HOSPITAL GROUND NEW QUARTER", "Name": "CONNOR, LIONEL A", "Address": "PO Box 11843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9400, "Improved_V": 63400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.408226971399998, "SHAPE_Area": 329.08141981599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359146.314099997282028, 257602.156300000846386 ], [ 359158.056999996304512, 257603.037000000476837 ], [ 359160.795699998736382, 257603.143500000238419 ], [ 359160.709600001573563, 257579.540899999439716 ], [ 359154.571999996900558, 257579.356699999421835 ], [ 359147.315200001001358, 257579.297400001436472 ], [ 359146.397399999201298, 257592.377599999308586 ], [ 359146.314099997282028, 257602.156300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92282203000001, "LATITUDE": 18.34761311, "OBJECTID_1": 12450, "PARCEL_NO_": "105402010500", "Tax_Legal_": "HOSPITAL GROUND 325A KINGS QTR", "Name": "QUETEL, EDMUND & RUTH", "Address": "PO Box 11507", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.894409575, "SHAPE_Area": 960.564209785 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359673.185599997639656, 257565.447299998253584 ], [ 359666.886100001633167, 257547.663899999111891 ], [ 359652.192699998617172, 257568.653000000864267 ], [ 359635.936899997293949, 257583.718699999153614 ], [ 359630.273000001907349, 257585.99439999833703 ], [ 359635.722999997437, 257608.837099999189377 ], [ 359650.3462999984622, 257596.079999998211861 ], [ 359661.753300003707409, 257582.241200000047684 ], [ 359673.185599997639656, 257565.447299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91235778, "LATITUDE": 18.3476795, "OBJECTID_1": 19642, "PARCEL_NO_": "105501010800", "Tax_Legal_": "4K-1 ST JOSEPH & ROSENDAHL 4 GR NORTHSIDE QTR", "Name": "RAIMER, ALFRED", "Address": "PO Box 11908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 83000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.32528146499999, "SHAPE_Area": 1969.89410195 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360788.766000002622604, 257616.374299999326468 ], [ 360781.87780000269413, 257573.043800000101328 ], [ 360740.651600003242493, 257584.949799999594688 ], [ 360709.160400003194809, 257589.969399999827147 ], [ 360709.142399996519089, 257592.080200001597404 ], [ 360735.633900001645088, 257606.018100000917912 ], [ 360748.489900000393391, 257611.400600001215935 ], [ 360764.589199997484684, 257614.698800001293421 ], [ 360788.766000002622604, 257616.374299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302012500", "MAP": null, "PARCEL_NAM": "58", "ACRE": null, "LONGITUDE": -64.93624538, "LATITUDE": 18.34765168, "OBJECTID_1": 9581, "PARCEL_NO_": "105302012500", "Tax_Legal_": "58 AGNES FANCY QUEENS QUARTER", "Name": "HODGE, LILLIAN", "Address": "PO Box 303355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38000, "Improved_V": 138200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.679463215, "SHAPE_Area": 913.162871806 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358217.633299998939037, 257572.110500000417233 ], [ 358212.745099999010563, 257577.981100000441074 ], [ 358221.476099997758865, 257594.306800000369549 ], [ 358245.816500000655651, 257576.77419999986887 ], [ 358249.801299996674061, 257582.295200001448393 ], [ 358253.899400003254414, 257574.518300000578165 ], [ 358238.806000001728535, 257547.796999998390675 ], [ 358217.633299998939037, 257572.110500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92187693, "LATITUDE": 18.34763458, "OBJECTID_1": 12612, "PARCEL_NO_": "105402092300", "Tax_Legal_": "ROSS ESTATE C-40 NEW QTR.", "Name": "ISAAC, RUPERT & GERTRUDE", "Address": "PO Box 304702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36200, "Improved_V": 95100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.46138411300001, "SHAPE_Area": 1430.3388833199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359750.65089999884367, 257559.115200001746416 ], [ 359729.729900002479553, 257553.87779999896884 ], [ 359740.602899998426437, 257602.729400001466274 ], [ 359765.57880000025034, 257605.255800001323223 ], [ 359771.217600002884865, 257605.935199998319149 ], [ 359776.874399997293949, 257604.503899998962879 ], [ 359770.5929000005126, 257584.609700001776218 ], [ 359750.65089999884367, 257559.115200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130100", "MAP": null, "PARCEL_NAM": "8GG", "ACRE": null, "LONGITUDE": -64.93029597, "LATITUDE": 18.34758748, "OBJECTID_1": 11658, "PARCEL_NO_": "105401130100", "Tax_Legal_": "LYTTONS FANCY 8GG QUEENS QTR", "Name": "RAIMER, JOHN", "Address": "PO Box 8685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.05406318499999, "SHAPE_Area": 1540.29216662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358856.864699997007847, 257597.818399999290705 ], [ 358893.386100001633167, 257570.252999998629093 ], [ 358854.906099997460842, 257543.76240000128746 ], [ 358841.861199997365475, 257560.543200001120567 ], [ 358837.802699998021126, 257563.676300000399351 ], [ 358836.971199996769428, 257566.624800000339746 ], [ 358846.515699997544289, 257582.112799998372793 ], [ 358850.478900000452995, 257590.166799999773502 ], [ 358856.864699997007847, 257597.818399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130200", "MAP": null, "PARCEL_NAM": "8GG-A", "ACRE": null, "LONGITUDE": -64.92998666, "LATITUDE": 18.34773695, "OBJECTID_1": 11659, "PARCEL_NO_": "105401130200", "Tax_Legal_": "LYTTONS FANCY 8GGA QUEENS QTR", "Name": "VIALET NILES (LIFE eSTATE), LEONICIA", "Address": "2512 Paxton St", "City": "Woodbridge", "State": "Virginia", "Zip": 22192, "Country": "United States", "Land_Value": 32900, "Improved_V": 140100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.46614715300001, "SHAPE_Area": 1082.85940833 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358856.864699997007847, 257597.818399999290705 ], [ 358917.347099997103214, 257597.258000001311302 ], [ 358923.120800003409386, 257582.106499999761581 ], [ 358893.386100001633167, 257570.252999998629093 ], [ 358856.864699997007847, 257597.818399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094000", "MAP": "C9-305-T87", "PARCEL_NAM": "1A-1", "ACRE": ".566", "LONGITUDE": -64.94555321, "LATITUDE": 18.34751439, "OBJECTID_1": 9324, "PARCEL_NO_": "105301094000", "Tax_Legal_": "SOLBERG 1A-1 LT. NORTHSIDE", "Name": "GRIFFIN, NORRIS & EDELTA", "Address": "PO Box 10558", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 112200, "Improved_V": 474000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.879483244, "SHAPE_Area": 2502.0474107300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357231.340499997138977, 257584.303199999034405 ], [ 357274.254900000989437, 257563.545099999755621 ], [ 357277.004699997603893, 257524.726399999111891 ], [ 357247.196299999952316, 257521.527100000530481 ], [ 357240.751199997961521, 257520.840999998152256 ], [ 357234.279200002551079, 257523.321199998259544 ], [ 357221.94709999859333, 257551.084600001573563 ], [ 357231.340499997138977, 257584.303199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92159282, "LATITUDE": 18.34760221, "OBJECTID_1": 12614, "PARCEL_NO_": "105402092500", "Tax_Legal_": "ROSS ESTATE C-41 NEW QTR.", "Name": "RAWLINS, CALMELITA", "Address": "PO Box 303603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33300, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.68289002399999, "SHAPE_Area": 1122.3479172899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359768.353799998760223, 257563.48200000077486 ], [ 359750.65089999884367, 257559.115200001746416 ], [ 359770.5929000005126, 257584.609700001776218 ], [ 359776.874399997293949, 257604.503899998962879 ], [ 359786.596900001168251, 257599.094999998807907 ], [ 359811.804799996316433, 257574.392299998551607 ], [ 359780.423299998044968, 257566.536100000143051 ], [ 359768.353799998760223, 257563.48200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097800", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-2", "ACRE": null, "LONGITUDE": -64.94696723, "LATITUDE": 18.34757966, "OBJECTID_1": 9360, "PARCEL_NO_": "105301097800", "Tax_Legal_": "SOLBERG 1B-2 LT. NORTHSIDE QTR.", "Name": "WILLIS, LOUIS MILTON & MENCIA MOYA", "Address": "PO Box 11802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.63117340599999, "SHAPE_Area": 1364.04273689 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357116.458599999547005, 257533.967000000178814 ], [ 357091.493500001728535, 257530.174100000411272 ], [ 357078.27419999986887, 257567.429499998688698 ], [ 357107.994499996304512, 257580.971599999815226 ], [ 357112.823399998247623, 257582.066599998623133 ], [ 357116.458599999547005, 257533.967000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302050400", "MAP": null, "PARCEL_NAM": "55A", "ACRE": null, "LONGITUDE": -64.93596189, "LATITUDE": 18.34774716, "OBJECTID_1": 9666, "PARCEL_NO_": "105302050400", "Tax_Legal_": "AGNES FANCY 55A QUEENS QUARTER", "Name": "FOY, IVON E., SR.,ADORA L. & IVON E.,JR.", "Address": "PO Box 304156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.499906336400002, "SHAPE_Area": 134.548751619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358255.420299999415874, 257585.296500001102686 ], [ 358264.23759999871254, 257591.49040000140667 ], [ 358270.776199996471405, 257581.200300000607967 ], [ 358261.154399998486042, 257574.788800001144409 ], [ 358255.420299999415874, 257585.296500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302020200", "MAP": null, "PARCEL_NAM": "65D", "ACRE": null, "LONGITUDE": -64.93726123, "LATITUDE": 18.34776143, "OBJECTID_1": 9588, "PARCEL_NO_": "105302020200", "Tax_Legal_": "AGNES FANCY 65 D GT.NORTHSIDE QTR.", "Name": "IZACK, OGUNDULA ZEBEDEE", "Address": "PO Box 8840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.643524340699997, "SHAPE_Area": 49.530777122700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358124.749099999666214, 257589.926600001752377 ], [ 358130.422100000083447, 257586.595499999821186 ], [ 358121.656999997794628, 257574.280299998819828 ], [ 358124.749099999666214, 257589.926600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92219499, "LATITUDE": 18.3475814, "OBJECTID_1": 12485, "PARCEL_NO_": "105402030300", "Tax_Legal_": "HOSPITAL GROUND 323 NEW QUARTER", "Name": "PETERSEN, DAVID MCDONALD", "Address": "7502 Estate Nadir 33-26", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41200, "Improved_V": 61100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.15660014700001, "SHAPE_Area": 1691.8596098099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359690.964000001549721, 257560.948800001293421 ], [ 359709.975599996745586, 257601.000999998301268 ], [ 359740.602899998426437, 257602.729400001466274 ], [ 359729.729900002479553, 257553.87779999896884 ], [ 359727.370300002396107, 257546.892400000244379 ], [ 359712.817100003361702, 257551.417300000786781 ], [ 359711.17400000244379, 257554.992499999701977 ], [ 359704.6875, 257559.161200001835823 ], [ 359690.964000001549721, 257560.948800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9225051, "LATITUDE": 18.34767687, "OBJECTID_1": 12484, "PARCEL_NO_": "105402030200", "Tax_Legal_": "HOSPITAL GROUND 324 NEW QTR", "Name": "HENDRICKSON, A. , M. & W", "Address": "PO Box 1562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30700, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.59889794599999, "SHAPE_Area": 1158.77068351 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359709.975599996745586, 257601.000999998301268 ], [ 359690.964000001549721, 257560.948800001293421 ], [ 359685.294600002467632, 257563.857700001448393 ], [ 359680.420800000429153, 257568.039599999785423 ], [ 359674.692100003361702, 257577.914200000464916 ], [ 359660.831900000572205, 257595.743700001388788 ], [ 359659.210299998521805, 257596.785900000482798 ], [ 359658.385999999940395, 257598.890099998563528 ], [ 359659.174400001764297, 257601.007399998605251 ], [ 359660.779799997806549, 257601.864999998360872 ], [ 359709.975599996745586, 257601.000999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098200", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-4", "ACRE": "0.270", "LONGITUDE": -64.9475839, "LATITUDE": 18.34756666, "OBJECTID_1": 9364, "PARCEL_NO_": "105301098200", "Tax_Legal_": "1B-4 SOLBERG LITTLE NORTHSIDE QUARTER", "Name": "Carol Jackson-Simmonds,P Hendricks & A Fleming,Sr", "Address": "PO Box 6814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47600, "Improved_V": 655300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.14144866699999, "SHAPE_Area": 1363.27761768 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357058.949699997901917, 257564.104899998754263 ], [ 357046.336400002241135, 257530.226700000464916 ], [ 357005.889499999582767, 257545.305500000715256 ], [ 357032.224500000476837, 257577.607299998402596 ], [ 357045.195600003004074, 257569.480799999088049 ], [ 357053.292900003492832, 257565.536299999803305 ], [ 357058.949699997901917, 257564.104899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302020300", "MAP": null, "PARCEL_NAM": "56B", "ACRE": null, "LONGITUDE": -64.93717759, "LATITUDE": 18.34769156, "OBJECTID_1": 9589, "PARCEL_NO_": "105302020300", "Tax_Legal_": "AGNES FANCY 65B QUEENS QUARTER", "Name": "WARNER, EDWARD K.", "Address": "PO Box 972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.0107599384, "SHAPE_Area": 302.03296114300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358147.42119999974966, 257578.924199998378754 ], [ 358137.867700003087521, 257564.491599999368191 ], [ 358121.656999997794628, 257574.280299998819828 ], [ 358130.422100000083447, 257586.595499999821186 ], [ 358147.42119999974966, 257578.924199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301095300", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-28", "ACRE": "0.298", "LONGITUDE": -64.94928145, "LATITUDE": 18.34749596, "OBJECTID_1": 9336, "PARCEL_NO_": "105301095300", "Tax_Legal_": "SOLBERG 1B-28 LT.NORTHSIDE QTR.", "Name": "MUSTAFA, HUSSEIN & NUFA", "Address": "PO Box 10200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37700, "Improved_V": 438300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.43531958, "SHAPE_Area": 1327.61793343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356880.970399998128414, 257537.31700000166893 ], [ 356845.636500000953674, 257520.140299998223782 ], [ 356839.151900000870228, 257524.098000001162291 ], [ 356837.530299998819828, 257525.1402000002563 ], [ 356834.27080000191927, 257529.124299999326468 ], [ 356834.234899997711182, 257533.345899999141693 ], [ 356845.329099997878075, 257556.2347999997437 ], [ 356846.927299998700619, 257557.936700001358986 ], [ 356850.046400003135204, 257570.416700001806021 ], [ 356854.839400000870228, 257575.733300000429153 ], [ 356880.970399998128414, 257537.31700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302050600", "MAP": null, "PARCEL_NAM": "55E", "ACRE": null, "LONGITUDE": -64.9357659, "LATITUDE": 18.3476734, "OBJECTID_1": 9668, "PARCEL_NO_": "105302050600", "Tax_Legal_": "AGNES FANCY 55E QUEENS QUARTER", "Name": "FOY, ADORA", "Address": "BOX 4156", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10300, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.011525754800005, "SHAPE_Area": 268.07738551900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358295.05009999871254, 257571.477600000798702 ], [ 358283.021899998188019, 257563.56870000064373 ], [ 358272.410400003194809, 257578.680599998682737 ], [ 358284.436800003051758, 257586.800599999725819 ], [ 358295.05009999871254, 257571.477600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92347792, "LATITUDE": 18.34759709, "OBJECTID_1": 12452, "PARCEL_NO_": "105402010700", "Tax_Legal_": "GUT AREA KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.78483304, "SHAPE_Area": 2429.96303296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359604.63459999859333, 257566.574999999254942 ], [ 359528.886200003325939, 257560.677700001746416 ], [ 359531.967600002884865, 257577.590399999171495 ], [ 359552.87780000269413, 257584.094300001859665 ], [ 359582.635799996554852, 257593.20380000025034 ], [ 359605.178400002419949, 257597.399099998176098 ], [ 359630.273000001907349, 257585.99439999833703 ], [ 359625.616700001060963, 257564.635800000280142 ], [ 359615.92119999974966, 257566.878499999642372 ], [ 359604.63459999859333, 257566.574999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302100600", "MAP": null, "PARCEL_NAM": "69", "ACRE": null, "LONGITUDE": -64.93400482, "LATITUDE": 18.34763787, "OBJECTID_1": 9821, "PARCEL_NO_": "105302100600", "Tax_Legal_": "AGNES FANCY 69 QUEENS QTR", "Name": "GOODING, CHRISTIAN", "Address": "Bergs Home Bldg J", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.660318458700004, "SHAPE_Area": 343.05360677900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358474.180900000035763, 257557.745000001043081 ], [ 358458.736900001764297, 257572.184000000357628 ], [ 358465.056199997663498, 257587.645599998533726 ], [ 358481.304700002074242, 257573.424199998378754 ], [ 358474.180900000035763, 257557.745000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302012300", "MAP": null, "PARCEL_NAM": "45", "ACRE": null, "LONGITUDE": -64.9365183, "LATITUDE": 18.34759089, "OBJECTID_1": 9579, "PARCEL_NO_": "105302012300", "Tax_Legal_": "AGNES FANCY 45 QUEENS QUARTER", "Name": "STOUT, ELVIN", "Address": "GAMBLE GADE#25", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.809679501700003, "SHAPE_Area": 511.64334919300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358217.633299998939037, 257572.110500000417233 ], [ 358203.339100003242493, 257546.240100000053644 ], [ 358190.337399996817112, 257557.954999998211861 ], [ 358206.233400002121925, 257585.105000000447035 ], [ 358212.745099999010563, 257577.981100000441074 ], [ 358217.633299998939037, 257572.110500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401140100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92766708000001, "LATITUDE": 18.3476915, "OBJECTID_1": 11675, "PARCEL_NO_": "105401140100", "Tax_Legal_": "HOSPITAL GROUND 241 NEW QUARTER", "Name": "EMANUEL, LEON & ANGELLA", "Address": "PO Box 11403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.424470713200002, "SHAPE_Area": 140.179327946 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359132.0962999984622, 257589.129999998956919 ], [ 359146.643700003623962, 257588.86710000038147 ], [ 359147.315200001001358, 257579.297400001436472 ], [ 359132.799800001084805, 257579.389600001275539 ], [ 359132.0962999984622, 257589.129999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301095900", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-21", "ACRE": "0.347", "LONGITUDE": -64.94822559000001, "LATITUDE": 18.34751883, "OBJECTID_1": 9342, "PARCEL_NO_": "105301095900", "Tax_Legal_": "SOLBERG 1B-21 LT.NORTHSIDE QTR.", "Name": "PETERS, BERTRAM", "Address": "PO BOX 4586", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53800, "Improved_V": 334400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.832833978, "SHAPE_Area": 1466.42216927 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357001.929899998009205, 257536.8293999992311 ], [ 356997.183700002729893, 257526.024700000882149 ], [ 356975.515799999237061, 257532.398800000548363 ], [ 356966.464699998497963, 257535.0614 ], [ 356939.738600000739098, 257543.035100001841784 ], [ 356929.277300000190735, 257546.156100001186132 ], [ 356962.111299999058247, 257572.811599999666214 ], [ 356970.258900001645088, 257562.956799998879433 ], [ 356979.203900001943111, 257554.164099998772144 ], [ 357001.929899998009205, 257536.8293999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302020400", "MAP": null, "PARCEL_NAM": "65A", "ACRE": null, "LONGITUDE": -64.93698824000001, "LATITUDE": 18.34759637, "OBJECTID_1": 9590, "PARCEL_NO_": "105302020400", "Tax_Legal_": "AGNES FANCY 65A QUEENS QUARTER", "Name": "WARNER, EDWARD K.", "Address": "PO Box 972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23100, "Improved_V": 86100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.823153169400001, "SHAPE_Area": 494.53858900199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358158.135200001299381, 257551.780799999833107 ], [ 358137.867700003087521, 257564.491599999368191 ], [ 358147.42119999974966, 257578.924199998378754 ], [ 358166.03830000013113, 257570.632800001651049 ], [ 358172.528399996459484, 257566.041799999773502 ], [ 358158.135200001299381, 257551.780799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302050800", "MAP": null, "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.93567176000001, "LATITUDE": 18.34754276, "OBJECTID_1": 9670, "PARCEL_NO_": "105302050800", "Tax_Legal_": "AGNES FANCY 54 QUEENS QUARTER", "Name": "ABBOTT, MILTON & ALOMA & ALLEN", "Address": "PO Box 7402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.992433437, "SHAPE_Area": 678.10720772499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358281.590899996459484, 257542.2364999987185 ], [ 358272.601000003516674, 257556.306200001388788 ], [ 358283.021899998188019, 257563.56870000064373 ], [ 358295.05009999871254, 257571.477600000798702 ], [ 358307.879199996590614, 257580.026299998164177 ], [ 358313.659999996423721, 257564.030499998480082 ], [ 358281.590899996459484, 257542.2364999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302050700", "MAP": null, "PARCEL_NAM": "55", "ACRE": null, "LONGITUDE": -64.93587161000001, "LATITUDE": 18.34760544, "OBJECTID_1": 9669, "PARCEL_NO_": "105302050700", "Tax_Legal_": "AGNES FANCY 55 QUEENS QTR", "Name": "FOY, L & CHILDREN & FAHIE, R", "Address": "PO Box 11866", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19500, "Improved_V": 69000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.533301600900003, "SHAPE_Area": 230.37549060399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358272.410400003194809, 257578.680599998682737 ], [ 358283.021899998188019, 257563.56870000064373 ], [ 358272.601000003516674, 257556.306200001388788 ], [ 358270.149700000882149, 257560.085799999535084 ], [ 358269.330799996852875, 257561.556800000369549 ], [ 358263.620099999010563, 257569.320500001311302 ], [ 358262.790399998426437, 257572.057900000363588 ], [ 358272.410400003194809, 257578.680599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302071700", "MAP": null, "PARCEL_NAM": "119", "ACRE": null, "LONGITUDE": -64.93444716, "LATITUDE": 18.34751359, "OBJECTID_1": 9752, "PARCEL_NO_": "105302071700", "Tax_Legal_": "AGNES FANCY 119 QUEEN QUARTER", "Name": "MANASSAH REALTY INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13700, "Improved_V": 49000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.145053347, "SHAPE_Area": 510.02603190799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358441.131099998950958, 257556.418999999761581 ], [ 358402.552199997007847, 257541.537799999117851 ], [ 358407.323499999940395, 257549.387299999594688 ], [ 358414.512000001966953, 257557.467700000852346 ], [ 358415.296700000762939, 257560.007199998944998 ], [ 358418.484200000762939, 257564.466299999505281 ], [ 358424.006099998950958, 257578.865800000727177 ], [ 358441.131099998950958, 257556.418999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098000", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-3", "ACRE": null, "LONGITUDE": -64.94726216, "LATITUDE": 18.34747937, "OBJECTID_1": 9362, "PARCEL_NO_": "105301098000", "Tax_Legal_": "SOLBERG 1B-3 LITTLE NORTHSIDE", "Name": "FRETT, JOAN VALENCIA", "Address": "7785 Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63100, "Improved_V": 202000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.115969576, "SHAPE_Area": 1239.10935208 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357057.660800002515316, 257526.097500000149012 ], [ 357046.336400002241135, 257530.226700000464916 ], [ 357058.949699997901917, 257564.104899998754263 ], [ 357070.239900000393391, 257563.986200001090765 ], [ 357078.27419999986887, 257567.429499998688698 ], [ 357091.493500001728535, 257530.174100000411272 ], [ 357060.086900003254414, 257525.272999998182058 ], [ 357057.660800002515316, 257526.097500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302023500", "MAP": null, "PARCEL_NAM": "65E", "ACRE": null, "LONGITUDE": -64.93746931, "LATITUDE": 18.34736098, "OBJECTID_1": 9623, "PARCEL_NO_": "105302023500", "Tax_Legal_": "AGNES FANCY 65E LITTLE NORTHSIDE", "Name": "BALBO CORPORATION", "Address": "PO Box 9435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 170200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.74763216400001, "SHAPE_Area": 3339.3843695800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358097.321199998259544, 257496.6097999997437 ], [ 358061.386699996888638, 257549.933499999344349 ], [ 358121.656999997794628, 257574.280299998819828 ], [ 358137.867700003087521, 257564.491599999368191 ], [ 358125.916900001466274, 257547.506299998611212 ], [ 358144.542999997735023, 257538.159499999135733 ], [ 358097.321199998259544, 257496.6097999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92268659, "LATITUDE": 18.34732015, "OBJECTID_1": 12451, "PARCEL_NO_": "105402010600", "Tax_Legal_": "HOSPITAL GROUND 325 NEW QUARTER", "Name": "SAMUEL, JULIUS", "Address": "PO Box 8172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.39035228700001, "SHAPE_Area": 2136.6993622700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359666.886100001633167, 257547.663899999111891 ], [ 359674.823399998247623, 257562.505399998277426 ], [ 359678.07379999756813, 257559.576699998229742 ], [ 359686.178300000727177, 257554.787900000810623 ], [ 359695.067500002682209, 257552.538600001484156 ], [ 359703.130599997937679, 257552.604600001126528 ], [ 359705.572899997234344, 257549.880399998277426 ], [ 359705.625100001692772, 257543.759100001305342 ], [ 359693.62389999628067, 257532.684000000357628 ], [ 359688.04619999974966, 257524.827899999916553 ], [ 359683.292900003492832, 257514.867600001394749 ], [ 359679.286499999463558, 257511.87950000166893 ], [ 359675.256700001657009, 257511.635400000959635 ], [ 359672.015299998223782, 257513.508699998259544 ], [ 359661.367799997329712, 257532.842199999839067 ], [ 359651.591300003230572, 257544.583399999886751 ], [ 359636.158100001513958, 257557.756000000983477 ], [ 359625.616700001060963, 257564.635800000280142 ], [ 359630.273000001907349, 257585.99439999833703 ], [ 359635.936899997293949, 257583.718699999153614 ], [ 359652.192699998617172, 257568.653000000864267 ], [ 359666.886100001633167, 257547.663899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301095700", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-23", "ACRE": "0.287", "LONGITUDE": -64.94883374, "LATITUDE": 18.3473898, "OBJECTID_1": 9340, "PARCEL_NO_": "105301095700", "Tax_Legal_": "SOLBERG 1B-23 LT.NORTHSIDE QTR.", "Name": "HENLEY, JULIENE SR.", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19500, "Improved_V": 383800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.10807715300001, "SHAPE_Area": 1021.66983616 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356913.357799999415874, 257521.750100001692772 ], [ 356910.164899997413158, 257517.924300000071526 ], [ 356904.659199997782707, 257501.625 ], [ 356889.141500003635883, 257524.718299999833107 ], [ 356880.970399998128414, 257537.31700000166893 ], [ 356901.848200000822544, 257547.620400000363588 ], [ 356904.256399996578693, 257548.906700000166893 ], [ 356919.454099997878075, 257563.385400000959635 ], [ 356913.357799999415874, 257521.750100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302100800", "MAP": null, "PARCEL_NAM": "72", "ACRE": null, "LONGITUDE": -64.93384734, "LATITUDE": 18.34729681, "OBJECTID_1": 9823, "PARCEL_NO_": "105302100800", "Tax_Legal_": "AGNES FANCY 72 QUEENS QTR", "Name": "BROWN, RANDOLPH & OTHERS", "Address": "10320 Nolan Dr", "City": "Rockville", "State": "Maryland", "Zip": 20850, "Country": "United States", "Land_Value": 126600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.86498683299999, "SHAPE_Area": 1157.1570246399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358500.213100001215935, 257530.938000001013279 ], [ 358502.698600001633167, 257523.147900000214577 ], [ 358494.721799999475479, 257512.950100000947714 ], [ 358492.346000000834465, 257507.864500001072884 ], [ 358489.156700000166893, 257503.616500001400709 ], [ 358469.580399997532368, 257529.842999998480082 ], [ 358488.550700001418591, 257574.750100001692772 ], [ 358496.053900003433228, 257545.891600001603365 ], [ 358500.213100001215935, 257530.938000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302012600", "MAP": null, "PARCEL_NAM": "45A", "ACRE": null, "LONGITUDE": -64.93636837, "LATITUDE": 18.34744974, "OBJECTID_1": 9582, "PARCEL_NO_": "105302012600", "Tax_Legal_": "AGNES FANCY 45A CROWN PRINCE QTR", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "66 Boetzberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.821563353, "SHAPE_Area": 740.23069910300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358238.806000001728535, 257547.796999998390675 ], [ 358219.603799998760223, 257530.118999999016523 ], [ 358211.46509999781847, 257538.918400000780821 ], [ 358203.339100003242493, 257546.240100000053644 ], [ 358217.633299998939037, 257572.110500000417233 ], [ 358238.806000001728535, 257547.796999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401141400", "MAP": null, "PARCEL_NAM": "233", "ACRE": null, "LONGITUDE": -64.92766511000001, "LATITUDE": 18.34754019, "OBJECTID_1": 11688, "PARCEL_NO_": "105401141400", "Tax_Legal_": "HOSPITAL GROUND 233 NEW QUARTER", "Name": "BREEDY, JOSEPH", "Address": "PO Box 10220", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8800, "Improved_V": 29100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.066011920700006, "SHAPE_Area": 365.52037350799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359132.799800001084805, 257579.389600001275539 ], [ 359147.315200001001358, 257579.297400001436472 ], [ 359148.326499998569489, 257555.24100000038743 ], [ 359131.377700001001358, 257557.002099998295307 ], [ 359132.799800001084805, 257579.389600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097500", "MAP": "D9-4727-T89", "PARCEL_NAM": "90F", "ACRE": "0.267", "LONGITUDE": -64.94638923, "LATITUDE": 18.3474337, "OBJECTID_1": 9358, "PARCEL_NO_": "105301097500", "Tax_Legal_": "SOLBERG 90F LT.NORTHSIDE QTR.", "Name": "FRETT, JOSE BETTETO", "Address": "PO Box 8494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011494, "Country": "United States", "Land_Value": 38700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.546742685, "SHAPE_Area": 1260.98271877 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357181.584700003266335, 257556.24269999936223 ], [ 357169.8496999964118, 257513.92790000140667 ], [ 357152.046099998056889, 257521.381599999964237 ], [ 357141.526199996471405, 257525.728500001132488 ], [ 357150.082800000905991, 257562.528799999505281 ], [ 357162.206299997866154, 257559.250500001013279 ], [ 357181.584700003266335, 257556.24269999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302100700", "MAP": null, "PARCEL_NAM": "68", "ACRE": null, "LONGITUDE": -64.9340777, "LATITUDE": 18.3474743, "OBJECTID_1": 9822, "PARCEL_NO_": "105302100700", "Tax_Legal_": "AGNES FANCY 68 QUEENS QTR", "Name": "GRIFFITH, L. & J", "Address": "PO Box 7391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.274380671700001, "SHAPE_Area": 439.56068763500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358458.736900001764297, 257572.184000000357628 ], [ 358474.180900000035763, 257557.745000001043081 ], [ 358464.693999998271465, 257535.502500001341105 ], [ 358450.828400000929832, 257553.965199999511242 ], [ 358458.736900001764297, 257572.184000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91157124, "LATITUDE": 18.34746447, "OBJECTID_1": 19645, "PARCEL_NO_": "105501011100", "Tax_Legal_": "4D-8REM.ST.JOSEPH&ROSENDAHL No.4 GREAT NORTH SIDE QTR.", "Name": "Norton E, Cora D and Melissa O Pinney", "Address": "PO Box 8875", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.002882923, "SHAPE_Area": 1011.28775231 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360823.105800002813339, 257560.926699999719858 ], [ 360826.883799999952316, 257590.721799999475479 ], [ 360859.989399999380112, 257585.504299998283386 ], [ 360857.725100003182888, 257567.331700000911951 ], [ 360856.152000002563, 257562.674800001084805 ], [ 360854.553800001740456, 257560.973000001162291 ], [ 360848.949199996888638, 257556.282999999821186 ], [ 360840.889600001275539, 257555.794900000095367 ], [ 360823.105800002813339, 257560.926699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301093500", "MAP": "D9-2273-T83", "PARCEL_NAM": "94-2", "ACRE": "0.53", "LONGITUDE": -64.9439618, "LATITUDE": 18.34724135, "OBJECTID_1": 9315, "PARCEL_NO_": "105301093500", "Tax_Legal_": "SOLBERG 94-2 LT. NORTHSIDE", "Name": "CRUMP, CARL H", "Address": "140 Debs Pl", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 79800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.881955224, "SHAPE_Area": 1557.0949908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357414.327799998223782, 257496.508299998939037 ], [ 357403.577600002288818, 257494.482400000095367 ], [ 357396.709700003266335, 257528.197299998253584 ], [ 357399.473200000822544, 257530.305100001394749 ], [ 357407.463899999856949, 257536.399599999189377 ], [ 357426.506599999964237, 257551.732700001448393 ], [ 357429.743400000035763, 257554.564899999648333 ], [ 357436.870399996638298, 257500.703499998897314 ], [ 357427.208999998867512, 257498.935699999332428 ], [ 357414.327799998223782, 257496.508299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302020500", "MAP": null, "PARCEL_NAM": "65C", "ACRE": null, "LONGITUDE": -64.93711242000001, "LATITUDE": 18.34746375, "OBJECTID_1": 9591, "PARCEL_NO_": "105302020500", "Tax_Legal_": "AGNES FANCY 65C QUEENS QTR", "Name": "FOY, DAVID & DARIAN & FAHIE, CHAS", "Address": "PO Box 1203", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21700, "Improved_V": 111100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.774428355400005, "SHAPE_Area": 438.45453363399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358137.867700003087521, 257564.491599999368191 ], [ 358158.135200001299381, 257551.780799999833107 ], [ 358144.542999997735023, 257538.159499999135733 ], [ 358125.916900001466274, 257547.506299998611212 ], [ 358137.867700003087521, 257564.491599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097400", "MAP": "D9-4727-T89", "PARCEL_NAM": "90E", "ACRE": null, "LONGITUDE": -64.9461259, "LATITUDE": 18.34733867, "OBJECTID_1": 9357, "PARCEL_NO_": "105301097400", "Tax_Legal_": "90E SOLBERG NO.1 LITTLE NORTHSIDE QTR.", "Name": "YOULANDO S. BELLE", "Address": "2633 Gamble Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.57536083100001, "SHAPE_Area": 1294.34197079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357205.880199998617172, 257543.986999999731779 ], [ 357198.98480000346899, 257501.500799998641014 ], [ 357169.8496999964118, 257513.92790000140667 ], [ 357181.584700003266335, 257556.24269999936223 ], [ 357184.815399996936321, 257555.635899998247623 ], [ 357196.134300000965595, 257552.139899998903275 ], [ 357202.622599996626377, 257547.760000001639128 ], [ 357205.880199998617172, 257543.986999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302100900", "MAP": "F9-4031-T73", "PARCEL_NAM": "66", "ACRE": "2,794 sq ft", "LONGITUDE": -64.93360284000001, "LATITUDE": 18.34744346, "OBJECTID_1": 9824, "PARCEL_NO_": "105302100900", "Tax_Legal_": "66 AGNES FANCY QUEENS QTR", "Name": "MILLINER, JANET", "Address": "PO Box 8801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29600, "Improved_V": 42200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.137023398500006, "SHAPE_Area": 357.60575767699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358513.070900000631809, 257536.109499998390675 ], [ 358506.505400002002716, 257549.565799999982119 ], [ 358496.053900003433228, 257545.891600001603365 ], [ 358512.007500000298023, 257566.287200000137091 ], [ 358525.041599996387959, 257550.772999998182058 ], [ 358513.070900000631809, 257536.109499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302020600", "MAP": null, "PARCEL_NAM": "21", "ACRE": null, "LONGITUDE": -64.9368668, "LATITUDE": 18.34738838, "OBJECTID_1": 9592, "PARCEL_NO_": "105302020600", "Tax_Legal_": "AGNES FANCY 21 QUEENS QTR", "Name": "BLYDEN, DEVON & FLAVIA", "Address": "PO Box 306271", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37700, "Improved_V": 110800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.647493822, "SHAPE_Area": 680.52395265999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358187.165899999439716, 257549.585799999535084 ], [ 358159.995999999344349, 257522.665100000798702 ], [ 358147.791599996387959, 257535.441899999976158 ], [ 358175.780599996447563, 257562.902100000530481 ], [ 358187.165899999439716, 257549.585799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91318553000001, "LATITUDE": 18.34726011, "OBJECTID_1": 19641, "PARCEL_NO_": "105501010700", "Tax_Legal_": "4AA REM.ST.JOSEPH&ROSENDAHL No.4 GT.NORTHSIDE QTR.", "Name": "YUSUF, FATHI", "Address": "Po Box 763", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 96900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.80801390100001, "SHAPE_Area": 2485.8278442199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360687.562200002372265, 257516.93299999833107 ], [ 360649.228100001811981, 257517.5614 ], [ 360652.012900002300739, 257577.680399999022484 ], [ 360670.534699998795986, 257580.576200000941753 ], [ 360692.729299999773502, 257582.024900000542402 ], [ 360687.562200002372265, 257516.93299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302050900", "MAP": null, "PARCEL_NAM": "47", "ACRE": null, "LONGITUDE": -64.9355637, "LATITUDE": 18.34734174, "OBJECTID_1": 9671, "PARCEL_NO_": "105302050900", "Tax_Legal_": "AGNES FANCY 47 QUEENS QUARTER", "Name": "PETERSEN, RITA R", "Address": "215-127 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39200, "Improved_V": 75500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.672519896, "SHAPE_Area": 947.11826381399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358283.221500001847744, 257540.138900000602007 ], [ 358314.491499997675419, 257561.081999998539686 ], [ 358324.384800001978874, 257535.620700001716614 ], [ 358301.969899997115135, 257516.438799999654293 ], [ 358283.221500001847744, 257540.138900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501014600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91254678, "LATITUDE": 18.34723098, "OBJECTID_1": 19699, "PARCEL_NO_": "105501014600", "Tax_Legal_": "PAR 4AA-1 (CONS) ST JOSEPH & ROSENDAHL NO. 4 GREAT NORTHSIDE", "Name": "INFINITY ST THOMAS LLC", "Address": "220 Mahopac Ave", "City": "Yorktown Heights", "State": "New York", "Zip": 105986300, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.52289895600001, "SHAPE_Area": 2461.3451036599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360758.180500000715256, 257511.209300000220537 ], [ 360738.450199998915195, 257514.266199998557568 ], [ 360725.619400002062321, 257514.950500000268221 ], [ 360715.121100001037121, 257552.865699999034405 ], [ 360719.721600003540516, 257580.767700001597404 ], [ 360736.679300002753735, 257577.951200000941753 ], [ 360753.651500001549721, 257573.445999998599291 ], [ 360757.805100001394749, 257572.213100001215935 ], [ 360758.180500000715256, 257511.209300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302051200", "MAP": null, "PARCEL_NAM": "57", "ACRE": null, "LONGITUDE": -64.93603394, "LATITUDE": 18.34741566, "OBJECTID_1": 9674, "PARCEL_NO_": "105302051200", "Tax_Legal_": "AGNES FANCY 57 QUEENS QUARTER", "Name": "ROSS, GLENVILLE", "Address": "PO Box 302282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.0301249563, "SHAPE_Area": 387.64695762999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358271.067500002682209, 257547.00560000166297 ], [ 358251.825699999928474, 257533.971400000154972 ], [ 358238.806000001728535, 257547.796999998390675 ], [ 358263.718999996781349, 257557.711199998855591 ], [ 358271.067500002682209, 257547.00560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501014800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91356651, "LATITUDE": 18.34724546, "OBJECTID_1": 19700, "PARCEL_NO_": "105501014800", "Tax_Legal_": "3AA-1 ST.JOSEPH&ROSENDAHL No.4 GT.NORTHSIDE QTR.", "Name": "YUSUF, FATHI", "Address": "Po Box 763", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 96900, "Improved_V": 1248800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.489959736, "SHAPE_Area": 2299.10138168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360649.228100001811981, 257517.5614 ], [ 360648.491700001060963, 257517.573499999940395 ], [ 360610.290600001811981, 257520.208000000566244 ], [ 360607.723300002515316, 257570.562899999320507 ], [ 360652.012900002300739, 257577.680399999022484 ], [ 360649.228100001811981, 257517.5614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302480300", "MAP": "D9-8998-T015", "PARCEL_NAM": "4A REM", "ACRE": "0.33", "LONGITUDE": -64.93505519, "LATITUDE": 18.34713872, "OBJECTID_1": 10837, "PARCEL_NO_": "105302480300", "Tax_Legal_": "4A REM AGNES FANCY No.8H NORTHSIDE QTR", "Name": "JOSEPH QUAIN and CHERISE CREQUE QUAIN", "Address": "64363 Austin St", "City": "Rego Park", "State": "New York", "Zip": 11374, "Country": "United States", "Land_Value": 44100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.47664986199999, "SHAPE_Area": 1345.71509367 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358351.222300000488758, 257494.293400000780821 ], [ 358347.571000002324581, 257493.975900001823902 ], [ 358346.251000002026558, 257498.044900000095367 ], [ 358344.826800003647804, 257502.435199998319149 ], [ 358335.0625, 257526.509199999272823 ], [ 358366.594700001180172, 257537.80460000038147 ], [ 358369.046099998056889, 257538.682700000703335 ], [ 358384.083599999547005, 257517.788400001823902 ], [ 358381.384800001978874, 257513.978399999439716 ], [ 358378.527300000190735, 257510.64469999819994 ], [ 358373.288599997758865, 257505.24720000103116 ], [ 358369.637299999594688, 257500.643399998545647 ], [ 358363.604800000786781, 257497.785900000482798 ], [ 358359.159800000488758, 257495.722100000828505 ], [ 358351.222300000488758, 257494.293400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098100", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-7", "ACRE": "0.361", "LONGITUDE": -64.9475683, "LATITUDE": 18.3472376, "OBJECTID_1": 9363, "PARCEL_NO_": "105301098100", "Tax_Legal_": "SOLBERG 1B-7 LT.NORTHSIDE QTR.", "Name": "PETRUS, APRIL B. & ANGELA B.", "Address": "PO Box 523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 51700, "Improved_V": 171700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.75120255600001, "SHAPE_Area": 1304.21415138 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357057.660800002515316, 257526.097500000149012 ], [ 357048.314099997282028, 257487.390900000929832 ], [ 357043.463600002229214, 257488.828899998217821 ], [ 357036.174400001764297, 257492.568900000303984 ], [ 357031.288000002503395, 257498.228399999439716 ], [ 357028.840300001204014, 257501.585900001227856 ], [ 357023.878300003707409, 257516.110700000077486 ], [ 357019.774899996817112, 257524.520899999886751 ], [ 357012.404799997806549, 257537.759500000625849 ], [ 357005.889499999582767, 257545.305500000715256 ], [ 357046.336400002241135, 257530.226700000464916 ], [ 357057.660800002515316, 257526.097500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92374557, "LATITUDE": 18.34733578, "OBJECTID_1": 12453, "PARCEL_NO_": "105402010800", "Tax_Legal_": "316 HOSPITAL GROUND KINGS QTR", "Name": "JACKSON, ELFREDA", "Address": "PO Box 9469", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28000, "Improved_V": 105100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.55291265599999, "SHAPE_Area": 1759.9442494899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359558.186800003051758, 257528.831300001591444 ], [ 359523.517099998891354, 257528.336399998515844 ], [ 359528.886200003325939, 257560.677700001746416 ], [ 359604.63459999859333, 257566.574999999254942 ], [ 359582.183700002729893, 257551.614700000733137 ], [ 359571.775399997830391, 257542.874699998646975 ], [ 359560.582299999892712, 257531.595100000500679 ], [ 359558.186800003051758, 257528.831300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302071600", "MAP": null, "PARCEL_NAM": "32", "ACRE": null, "LONGITUDE": -64.93455625, "LATITUDE": 18.34725015, "OBJECTID_1": 9751, "PARCEL_NO_": "105302071600", "Tax_Legal_": "AGNES FANCY 32 QUEENS QUARTER", "Name": "MANASSAH REALTY INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 103500, "Improved_V": 253400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.20902076300001, "SHAPE_Area": 1279.87427275 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358430.861199997365475, 257531.425900001078844 ], [ 358399.666799999773502, 257501.617499999701977 ], [ 358385.849799998104572, 257514.381099998950958 ], [ 358402.552199997007847, 257541.537799999117851 ], [ 358441.131099998950958, 257556.418999999761581 ], [ 358434.021799996495247, 257539.051100000739098 ], [ 358430.861199997365475, 257531.425900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302071300", "MAP": null, "PARCEL_NAM": "33A", "ACRE": null, "LONGITUDE": -64.93423011, "LATITUDE": 18.34734537, "OBJECTID_1": 9748, "PARCEL_NO_": "105302071300", "Tax_Legal_": "AGNES FANCY 33A QUEENS QTR", "Name": "GRIFFITH, L. & J", "Address": "PO Box 7391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.942624756000001, "SHAPE_Area": 327.30846758400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358456.70099999755621, 257527.2043999992311 ], [ 358434.021799996495247, 257539.051100000739098 ], [ 358441.131099998950958, 257556.418999999761581 ], [ 358460.700199998915195, 257531.036800000816584 ], [ 358456.70099999755621, 257527.2043999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92263648, "LATITUDE": 18.34742034, "OBJECTID_1": 12450, "PARCEL_NO_": "105402010500", "Tax_Legal_": "HOSPITAL GROUND 325A KINGS QTR", "Name": "QUETEL, EDMUND & RUTH", "Address": "PO Box 11507", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.063909904399999, "SHAPE_Area": 23.8290757838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359673.185599997639656, 257565.447299998253584 ], [ 359674.823399998247623, 257562.505399998277426 ], [ 359666.886100001633167, 257547.663899999111891 ], [ 359673.185599997639656, 257565.447299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501012300", "MAP": "D9-6764-T000", "PARCEL_NAM": "4A REM", "ACRE": "1.157", "LONGITUDE": -64.91173183, "LATITUDE": 18.34705282, "OBJECTID_1": 19677, "PARCEL_NO_": "105501012300", "Tax_Legal_": "4A REMAINDER ST.JOSEPH&ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "WEIGERT, MARC & STACEY FRENCH", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 134900, "Improved_V": 361400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.890088424, "SHAPE_Area": 4394.4393247999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360866.444399997591972, 257497.398699998855591 ], [ 360785.413800001144409, 257506.990100000053644 ], [ 360778.569700002670288, 257508.050500001758337 ], [ 360786.684600003063679, 257563.640399999916553 ], [ 360845.002099998295307, 257546.329300001263618 ], [ 360857.926500000059605, 257543.690900001674891 ], [ 360874.061700001358986, 257542.767499998211861 ], [ 360866.444399997591972, 257497.398699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094300", "MAP": "D9-9400-T019", "PARCEL_NAM": "90A REM", "ACRE": "0.60", "LONGITUDE": -64.9459842, "LATITUDE": 18.34657647, "OBJECTID_1": 9327, "PARCEL_NO_": "105301094300", "Tax_Legal_": "SOLBERG 90A LT. NORTHSIDE", "Name": "HALL, SAMUEL H", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.73557218600001, "SHAPE_Area": 2491.85292781 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357229.124200001358986, 257482.577899999916553 ], [ 357227.171099998056889, 257473.842099998146296 ], [ 357226.656599998474121, 257471.540899999439716 ], [ 357225.79559999704361, 257467.745600000023842 ], [ 357218.884800001978874, 257437.280099999159575 ], [ 357211.059000000357628, 257409.351700000464916 ], [ 357208.675999999046326, 257405.110300000756979 ], [ 357196.602899998426437, 257402.478399999439716 ], [ 357180.485699996352196, 257401.291000001132488 ], [ 357185.174300000071526, 257418.85020000115037 ], [ 357193.653499998152256, 257464.72690000012517 ], [ 357196.887000001966953, 257487.030600000172853 ], [ 357229.124200001358986, 257482.577899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302020700", "MAP": null, "PARCEL_NAM": "20", "ACRE": null, "LONGITUDE": -64.93674966, "LATITUDE": 18.3472647, "OBJECTID_1": 9593, "PARCEL_NO_": "105302020700", "Tax_Legal_": "AGNES FANCY 2O QUEENS QUARTER", "Name": "FOY, JAMES R", "Address": "Po Box 12019", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.61065086399999, "SHAPE_Area": 730.94802213699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358200.255599997937679, 257534.981600001454353 ], [ 358173.015699997544289, 257508.839499998837709 ], [ 358159.995999999344349, 257522.665100000798702 ], [ 358187.165899999439716, 257549.585799999535084 ], [ 358193.191799998283386, 257542.537799999117851 ], [ 358200.255599997937679, 257534.981600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092000", "MAP": "D9-4607-T88", "PARCEL_NAM": "C-9", "ACRE": ".22", "LONGITUDE": -64.92178112000001, "LATITUDE": 18.34727159, "OBJECTID_1": 12609, "PARCEL_NO_": "105402092000", "Tax_Legal_": "ROSS ESTATE C-9", "Name": "KUNTZ, RUEBEN & MARIE", "Address": "PO Box 7475", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24000, "Improved_V": 32900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.501603411, "SHAPE_Area": 742.10477711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359775.928900003433228, 257526.180399999022484 ], [ 359752.55120000243187, 257525.355799999088049 ], [ 359750.65089999884367, 257559.115200001746416 ], [ 359768.353799998760223, 257563.48200000077486 ], [ 359775.928900003433228, 257526.180399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91405256, "LATITUDE": 18.34722325, "OBJECTID_1": 19640, "PARCEL_NO_": "105501010500", "Tax_Legal_": "REM. 3AA ST. JOSEPH &ROSENDHL GREAT NORTHSIDE QTR.", "Name": "Bonnie & Tyrone Troutman, Jr. (Life Estate)", "Address": "137 S. Market Street", "City": "Elizabethtown", "State": "Pennsylvania", "Zip": 170220000, "Country": "United States", "Land_Value": 96100, "Improved_V": 198200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.95024258699999, "SHAPE_Area": 2726.8231311200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360610.290600001811981, 257520.208000000566244 ], [ 360610.126999996602535, 257520.219300001859665 ], [ 360542.763999998569489, 257526.024000000208616 ], [ 360549.70830000191927, 257565.444099999964237 ], [ 360558.593999996781349, 257563.616900000721216 ], [ 360565.042700000107288, 257563.880800001323223 ], [ 360607.723300002515316, 257570.562899999320507 ], [ 360610.290600001811981, 257520.208000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301095200", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-29", "ACRE": "0.291", "LONGITUDE": -64.9492096, "LATITUDE": 18.34722503, "OBJECTID_1": 9335, "PARCEL_NO_": "105301095200", "Tax_Legal_": "1B-29 SOLBERG LITTLE NORTHSIDE QUARTER", "Name": "FRANCIS, JULITO", "Address": "PO Box 306678", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24600, "Improved_V": 417700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.00889359199999, "SHAPE_Area": 1215.45241089 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356842.470600001513958, 257513.148299999535084 ], [ 356845.636500000953674, 257520.140299998223782 ], [ 356880.970399998128414, 257537.31700000166893 ], [ 356889.141500003635883, 257524.718299999833107 ], [ 356863.598399996757507, 257494.111699998378754 ], [ 356841.021600000560284, 257493.927000001072884 ], [ 356842.585699997842312, 257499.639299999922514 ], [ 356841.685900002717972, 257510.608800001442432 ], [ 356842.470600001513958, 257513.148299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402020100", "MAP": null, "PARCEL_NAM": "335 REM", "ACRE": "23,235 sq ft", "LONGITUDE": -64.9229689, "LATITUDE": 18.34711466, "OBJECTID_1": 12472, "PARCEL_NO_": "105402020100", "Tax_Legal_": "HOSPITAL GROUND 335 NEW QUARTER", "Name": "FINCH, EARL L. , V. A. , C. O. & Y. M", "Address": "PO Box 404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27600, "Improved_V": 135200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.53250641299999, "SHAPE_Area": 1702.76300582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359613.04839999973774, 257525.480599999427795 ], [ 359622.697599999606609, 257556.627199999988079 ], [ 359631.36879999935627, 257552.017299998551607 ], [ 359641.926399998366833, 257543.237700000405312 ], [ 359655.76860000193119, 257527.519000001251698 ], [ 359659.864900000393391, 257519.953200001269579 ], [ 359661.490099996328354, 257518.488800000399351 ], [ 359664.798000000417233, 257508.805599998682737 ], [ 359647.125699996948242, 257500.850499998778105 ], [ 359635.849899999797344, 257499.280499998480082 ], [ 359632.621100001037121, 257499.676300000399351 ], [ 359613.04839999973774, 257525.480599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302012700", "MAP": null, "PARCEL_NAM": "44", "ACRE": null, "LONGITUDE": -64.93622359, "LATITUDE": 18.34728688, "OBJECTID_1": 9583, "PARCEL_NO_": "105302012700", "Tax_Legal_": "AGNES FANCY 44 QUEENS QUARTER", "Name": "DOUGLAS, FRANKLIN D.", "Address": "800 COVE CAY DRIVE APT 5C", "City": "Clearwater", "State": "Florida", "Zip": 337601210, "Country": "United States", "Land_Value": 46800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.480526737199995, "SHAPE_Area": 499.047070486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358251.825699999928474, 257533.971400000154972 ], [ 358232.625299997627735, 257516.082400001585484 ], [ 358219.603799998760223, 257530.118999999016523 ], [ 358238.806000001728535, 257547.796999998390675 ], [ 358251.825699999928474, 257533.971400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302101000", "MAP": null, "PARCEL_NAM": "67", "ACRE": null, "LONGITUDE": -64.93368177000001, "LATITUDE": 18.34734202, "OBJECTID_1": 9825, "PARCEL_NO_": "105302101000", "Tax_Legal_": "AGNES FANCY 67 QUEENS QTR", "Name": "SCOTT, A", "Address": "PO Box 6493", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26400, "Improved_V": 41700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.691740212299997, "SHAPE_Area": 192.16369879300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358509.080700002610683, 257531.221700001507998 ], [ 358507.439300000667572, 257534.585799999535084 ], [ 358505.841099999845028, 257532.88399999961257 ], [ 358504.214100003242493, 257534.559399999678135 ], [ 358500.213100001215935, 257530.938000001013279 ], [ 358496.053900003433228, 257545.891600001603365 ], [ 358506.505400002002716, 257549.565799999982119 ], [ 358513.070900000631809, 257536.109499998390675 ], [ 358509.080700002610683, 257531.221700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096100", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-18", "ACRE": "0.264", "LONGITUDE": -64.94787288000001, "LATITUDE": 18.34715821, "OBJECTID_1": 9344, "PARCEL_NO_": "105301096100", "Tax_Legal_": "SOLBERG 1B-18 LT.NORTHSIDE QTR.", "Name": "CHANDA K RAVALIER, SHAMARI K & SHENIQUE S DAVIS", "Address": "PO Box 307833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037833, "Country": "United States", "Land_Value": 54700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.14930052700001, "SHAPE_Area": 1003.54293531 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357023.244699999690056, 257495.840599998831749 ], [ 356995.111800000071526, 257485.266699999570847 ], [ 356994.251599997282028, 257491.592500001192093 ], [ 356987.752499997615814, 257497.238800000399351 ], [ 356997.183700002729893, 257526.024700000882149 ], [ 357001.929899998009205, 257536.8293999992311 ], [ 357003.553300000727177, 257535.576099999248981 ], [ 357010.891000002622604, 257526.136900000274181 ], [ 357016.643100000917912, 257513.518399998545647 ], [ 357018.271899998188019, 257511.631900001317263 ], [ 357021.606899999082088, 257498.782499998807907 ], [ 357023.244699999690056, 257495.840599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302051300", "MAP": null, "PARCEL_NAM": "56", "ACRE": null, "LONGITUDE": -64.93593884000001, "LATITUDE": 18.34730404, "OBJECTID_1": 9675, "PARCEL_NO_": "105302051300", "Tax_Legal_": "AGNES FANCY 56 QUEENS", "Name": "STEELE, MONROE", "Address": "7209 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.977824415000001, "SHAPE_Area": 346.11720582700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358278.414200000464916, 257536.510999999940395 ], [ 358264.037299998104572, 257520.35020000115037 ], [ 358251.825699999928474, 257533.971400000154972 ], [ 358271.067500002682209, 257547.00560000166297 ], [ 358276.780000001192093, 257539.030699998140335 ], [ 358278.414200000464916, 257536.510999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402093900", "MAP": "D9-4607-T88", "PARCEL_NAM": "C-7", "ACRE": ".22", "LONGITUDE": -64.9220025, "LATITUDE": 18.34724339, "OBJECTID_1": 12628, "PARCEL_NO_": "105402093900", "Tax_Legal_": "ROSS C-7 # 8 NEW QRT", "Name": "NICHOLAS, JAMES", "Address": "PO Box 268042", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33326, "Country": "United States", "Land_Value": 24000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.999144634, "SHAPE_Area": 820.65471244800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359752.55120000243187, 257525.355799999088049 ], [ 359741.264700002968311, 257525.052400000393391 ], [ 359721.929300002753735, 257522.994300000369549 ], [ 359725.820600003004074, 257539.491399999707937 ], [ 359727.370300002396107, 257546.892400000244379 ], [ 359729.729900002479553, 257553.87779999896884 ], [ 359750.65089999884367, 257559.115200001746416 ], [ 359752.55120000243187, 257525.355799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401150400", "MAP": null, "PARCEL_NAM": "222", "ACRE": "4,000 sq ft", "LONGITUDE": -64.92766245, "LATITUDE": 18.34727905, "OBJECTID_1": 11703, "PARCEL_NO_": "105401150400", "Tax_Legal_": "HOSPITAL GROUND 222 NEW QUARTER", "Name": "DECASTRO, DANTE", "Address": "PO Box 1176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.946251206400007, "SHAPE_Area": 353.94695172799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359147.556100003421307, 257551.012800000607967 ], [ 359147.728799998760223, 257530.749200001358986 ], [ 359146.963799998164177, 257525.887800000607967 ], [ 359134.064599998295307, 257525.571100000292063 ], [ 359133.042499996721745, 257550.894000001251698 ], [ 359147.556100003421307, 257551.012800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401150500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9275155, "LATITUDE": 18.34727741, "OBJECTID_1": 11704, "PARCEL_NO_": "105401150500", "Tax_Legal_": "HOSPITAL GROUND 221 NEW QUARTER", "Name": "PHILLIPS, NAOMI", "Address": "PO Box 10925", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10100, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.977531904299994, "SHAPE_Area": 427.30606147200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359164.48870000243187, 257551.151399999856949 ], [ 359164.70269999653101, 257526.032999999821186 ], [ 359146.963799998164177, 257525.887800000607967 ], [ 359147.728799998760223, 257530.749200001358986 ], [ 359147.556100003421307, 257551.012800000607967 ], [ 359164.48870000243187, 257551.151399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401150600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92736843, "LATITUDE": 18.34727799, "OBJECTID_1": 11705, "PARCEL_NO_": "105401150600", "Tax_Legal_": "HOSPITAL GROUND 22O NEW QUARTER", "Name": "BARROTT, JOSEPH", "Address": "PO Box 9277", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.057427202300005, "SHAPE_Area": 351.56286969000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359179.005900003015995, 257550.848000001162291 ], [ 359178.409999996423721, 257526.145199999213219 ], [ 359164.70269999653101, 257526.032999999821186 ], [ 359164.48870000243187, 257551.151399999856949 ], [ 359179.005900003015995, 257550.848000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401120100", "MAP": null, "PARCEL_NAM": "8GDB", "ACRE": "5.17", "LONGITUDE": -64.93186179, "LATITUDE": 18.34688814, "OBJECTID_1": 11644, "PARCEL_NO_": "105401120100", "Tax_Legal_": "PCL OF 8G,8GB,8GDB&8GFA LYTTONS FANCY", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 673300, "Improved_V": 206500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 586.72907845600002, "SHAPE_Area": 12931.2485631 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358620.342100001871586, 257438.617899999022484 ], [ 358619.363200001418591, 257458.874899998307228 ], [ 358618.382500000298023, 257479.3429000005126 ], [ 358618.21339999884367, 257499.184300001710653 ], [ 358618.010200001299381, 257523.036200001835823 ], [ 358617.906000003218651, 257535.278799999505281 ], [ 358617.884400002658367, 257537.811700001358986 ], [ 358616.241200000047684, 257541.386900000274181 ], [ 358625.92230000346899, 257540.832800000905991 ], [ 358642.845899999141693, 257542.026799999177456 ], [ 358666.189400002360344, 257546.861900001764297 ], [ 358674.274099998176098, 257544.394999999552965 ], [ 358694.539800003170967, 257531.895199999213219 ], [ 358712.363200001418591, 257522.119699999690056 ], [ 358716.401900000870228, 257521.308400001376867 ], [ 358726.873199999332428, 257522.660700000822544 ], [ 358746.15820000320673, 257530.629000000655651 ], [ 358763.009800001978874, 257540.266100000590086 ], [ 358765.428800001740456, 257540.285900000482798 ], [ 358781.728699997067451, 257425.3733000010252 ], [ 358780.126900002360344, 257424.093600001186132 ], [ 358763.12780000269413, 257431.765000000596046 ], [ 358750.174599997699261, 257437.780699998140335 ], [ 358728.317900002002716, 257447.734299998730421 ], [ 358656.271999999880791, 257480.497400000691414 ], [ 358635.715999998152256, 257432.410900000482798 ], [ 358620.342100001871586, 257438.617899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097700", "MAP": "D9-8578-T010", "PARCEL_NAM": "1B-9 REM", "ACRE": ".36", "LONGITUDE": -64.94679395, "LATITUDE": 18.34722099, "OBJECTID_1": 9359, "PARCEL_NO_": "105301097700", "Tax_Legal_": "SOLBERG 1B-9 LT. NORTHSIDE QTR.", "Name": "HUSEIN, HUSEIN A. & AMINA", "Address": "PO Box 7956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59900, "Improved_V": 335000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.222576167, "SHAPE_Area": 1612.73672895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357150.149800002574921, 257519.013300001621246 ], [ 357148.08219999819994, 257520.155799999833107 ], [ 357141.982199996709824, 257508.812699999660254 ], [ 357133.581799998879433, 257498.321199998259544 ], [ 357128.907600000500679, 257492.483500000089407 ], [ 357104.6300999969244, 257502.628400001674891 ], [ 357098.167000003159046, 257504.053100001066923 ], [ 357094.140799999237061, 257503.386900000274181 ], [ 357091.493500001728535, 257530.174100000411272 ], [ 357116.458599999547005, 257533.967000000178814 ], [ 357127.770400002598763, 257531.315400000661612 ], [ 357141.526199996471405, 257525.728500001132488 ], [ 357152.046099998056889, 257521.381599999964237 ], [ 357150.149800002574921, 257519.013300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401150700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92721411, "LATITUDE": 18.34726876, "OBJECTID_1": 11706, "PARCEL_NO_": "105401150700", "Tax_Legal_": "HOSPITAL GROUND 219 NEW QUARTER", "Name": "SIMON, LUCIEN D", "Address": "1285 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9300, "Improved_V": 131800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.198224559300002, "SHAPE_Area": 436.58248028600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359197.759700000286102, 257526.514600001275539 ], [ 359178.409999996423721, 257526.145199999213219 ], [ 359179.005900003015995, 257550.848000001162291 ], [ 359197.578100003302097, 257547.833599999547005 ], [ 359197.759700000286102, 257526.514600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9235394, "LATITUDE": 18.34703875, "OBJECTID_1": 12473, "PARCEL_NO_": "105402020200", "Tax_Legal_": "HOSPITAL GROUND 317 NEW QUARTER", "Name": "VANHOLTEN, GEORGE M. -LIFE INT.", "Address": "P.O.BOX 5087", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23700, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.013937551, "SHAPE_Area": 1495.35725112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359595.889300003647804, 257551.938000001013279 ], [ 359593.806599996984005, 257512.446400001645088 ], [ 359567.44820000231266, 257482.888700000941753 ], [ 359560.95099999755621, 257488.323899999260902 ], [ 359556.870800003409386, 257493.990100000053644 ], [ 359555.987199999392033, 257503.059900000691414 ], [ 359558.314400002360344, 257513.844700001180172 ], [ 359561.476800002157688, 257521.258799999952316 ], [ 359578.265500001609325, 257538.283700000494719 ], [ 359595.889300003647804, 257551.938000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402093200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92072454, "LATITUDE": 18.34720038, "OBJECTID_1": 12621, "PARCEL_NO_": "105402093200", "Tax_Legal_": "ROSS ESTATE C-48 KINGS QUARTER", "Name": "OMO ARE, WILFRED & AMANDA THIBOU", "Address": "PO Box 307174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28300, "Improved_V": 140000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.468532358, "SHAPE_Area": 1252.4685688500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359899.366599999368191, 257518.747000001370907 ], [ 359844.43129999935627, 257530.751899998635054 ], [ 359848.358599998056889, 257543.027399998158216 ], [ 359847.496500000357628, 257549.564300000667572 ], [ 359845.846100002527237, 257553.98369999974966 ], [ 359865.239000000059605, 257549.287300001829863 ], [ 359903.212999999523163, 257540.521099999547005 ], [ 359899.366599999368191, 257518.747000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105302081800", "MAP": "M.B.", "PARCEL_NAM": "111", "ACRE": "1,275 sq ft", "LONGITUDE": -64.93272839, "LATITUDE": 18.34734395, "OBJECTID_1": 9781, "PARCEL_NO_": "105302081800", "Tax_Legal_": "AGNES FANCY 111 QUEENS QTR", "Name": "KATZIN, L & L & PREMEL, A", "Address": "10960 Wilshire Blvd", "City": "Los Angeles", "State": "California", "Zip": 90024, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.4178081158, "SHAPE_Area": 162.60438535099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358617.884400002658367, 257537.811700001358986 ], [ 358617.906000003218651, 257535.278799999505281 ], [ 358605.789700001478195, 257537.712799999862909 ], [ 358593.629399999976158, 257540.12220000103116 ], [ 358593.936899997293949, 257542.736000001430511 ], [ 358594.271899998188019, 257545.583799999207258 ], [ 358595.249600000679493, 257548.065499998629093 ], [ 358616.241200000047684, 257541.386900000274181 ], [ 358617.884400002658367, 257537.811700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401150800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92709008, "LATITUDE": 18.34726164, "OBJECTID_1": 11707, "PARCEL_NO_": "105401150800", "Tax_Legal_": "HOSPITAL GROUND 218 NEW QTR", "Name": "SIMON, LUCEIN", "Address": "1285 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.206817404200002, "SHAPE_Area": 142.03821254900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359204.210199996829033, 257526.567400000989437 ], [ 359197.759700000286102, 257526.514600001275539 ], [ 359197.578100003302097, 257547.833599999547005 ], [ 359204.84570000320673, 257546.626499999314547 ], [ 359204.210199996829033, 257526.567400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097900", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-8", "ACRE": null, "LONGITUDE": -64.94724094, "LATITUDE": 18.34716473, "OBJECTID_1": 9361, "PARCEL_NO_": "105301097900", "Tax_Legal_": "SOLBERG 1B-8 LT.NORTHSIDE QTR.", "Name": "SEEDO, TOY & POLLY", "Address": "PO BOX 2357", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.59099421100001, "SHAPE_Area": 1359.6998071200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357057.660800002515316, 257526.097500000149012 ], [ 357060.086900003254414, 257525.272999998182058 ], [ 357091.493500001728535, 257530.174100000411272 ], [ 357094.140799999237061, 257503.386900000274181 ], [ 357087.697499997913837, 257502.489799998700619 ], [ 357082.08389999717474, 257498.85530000180006 ], [ 357076.484700001776218, 257493.5320999994874 ], [ 357068.459299996495247, 257489.033399999141693 ], [ 357060.412399999797344, 257487.067699998617172 ], [ 357048.314099997282028, 257487.390900000929832 ], [ 357057.660800002515316, 257526.097500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92217812, "LATITUDE": 18.3472984, "OBJECTID_1": 12486, "PARCEL_NO_": "105402030400", "Tax_Legal_": "HOSPITAL GROUND NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.965516926699998, "SHAPE_Area": 99.401230106900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359725.820600003004074, 257539.491399999707937 ], [ 359714.498099997639656, 257543.409499999135733 ], [ 359712.817100003361702, 257551.417300000786781 ], [ 359727.370300002396107, 257546.892400000244379 ], [ 359725.820600003004074, 257539.491399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301093100", "MAP": "D9-2273-T83", "PARCEL_NAM": "94-1", "ACRE": "0.48", "LONGITUDE": -64.94437731, "LATITUDE": 18.34709588, "OBJECTID_1": 9312, "PARCEL_NO_": "105301093100", "Tax_Legal_": "SOLBERG 94-1 LT. NORTHSIDE", "Name": "TAVERNIER, MATTHEW", "Address": "PO Box 6665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 73700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.43728322000001, "SHAPE_Area": 1675.23955428 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357354.36599999666214, 257517.117499999701977 ], [ 357363.442900002002716, 257518.098799999803305 ], [ 357376.797600001096725, 257520.819099999964237 ], [ 357384.464199997484684, 257522.302999999374151 ], [ 357388.668399997055531, 257523.044900000095367 ], [ 357392.872599996626377, 257525.270700000226498 ], [ 357396.709700003266335, 257528.197299998253584 ], [ 357403.577600002288818, 257494.482400000095367 ], [ 357375.6841000020504, 257489.225900001823902 ], [ 357341.066600002348423, 257482.6097999997437 ], [ 357354.36599999666214, 257517.117499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302020800", "MAP": null, "PARCEL_NAM": "19", "ACRE": null, "LONGITUDE": -64.93660194, "LATITUDE": 18.34710671, "OBJECTID_1": 9594, "PARCEL_NO_": "105302020800", "Tax_Legal_": "AGNES FANCY 19 QUEENS QTR", "Name": "YEARWOOD, LILLIAN", "Address": "281 Valley Lake Dr", "City": "Stone Mountain", "State": "Georgia", "Zip": 30087, "Country": "United States", "Land_Value": 54900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.370376419, "SHAPE_Area": 1047.1418276500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358219.611800000071526, 257516.079900000244379 ], [ 358190.932599999010563, 257488.087900001555681 ], [ 358173.015699997544289, 257508.839499998837709 ], [ 358200.255599997937679, 257534.981600001454353 ], [ 358204.833499997854233, 257529.308600001037121 ], [ 358219.611800000071526, 257516.079900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302081700", "MAP": null, "PARCEL_NAM": "91", "ACRE": null, "LONGITUDE": -64.93278306000001, "LATITUDE": 18.34724758, "OBJECTID_1": 9780, "PARCEL_NO_": "105302081700", "Tax_Legal_": "AGNES FANCY 91 QUEENS QTR", "Name": "ACUNA, FERNANDO P. & LILBETH", "Address": "PO BOX 9099", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14100, "Improved_V": 49500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.2291222383, "SHAPE_Area": 210.292747058 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358593.568300001323223, 257521.903299998492002 ], [ 358593.001900002360344, 257534.788800001144409 ], [ 358593.629399999976158, 257540.12220000103116 ], [ 358605.789700001478195, 257537.712799999862909 ], [ 358605.919200003147125, 257522.515099998563528 ], [ 358593.568300001323223, 257521.903299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302071400", "MAP": null, "PARCEL_NAM": "33", "ACRE": null, "LONGITUDE": -64.93426504, "LATITUDE": 18.34723242, "OBJECTID_1": 9749, "PARCEL_NO_": "105302071400", "Tax_Legal_": "AGNES FANCY 33 QUEENS QUARTER", "Name": "NEWTON, THEODORA", "Address": "PO Box 7391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24200, "Improved_V": 59800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.708611188700004, "SHAPE_Area": 281.77825792800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358444.705200001597404, 257515.496100001037121 ], [ 358430.861199997365475, 257531.425900001078844 ], [ 358434.021799996495247, 257539.051100000739098 ], [ 358456.70099999755621, 257527.2043999992311 ], [ 358444.705200001597404, 257515.496100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401091900", "MAP": "D9-4247-T80", "PARCEL_NAM": "303D", "ACRE": null, "LONGITUDE": -64.92887843, "LATITUDE": 18.34683145, "OBJECTID_1": 11526, "PARCEL_NO_": "105401091900", "Tax_Legal_": "HOSPITAL GROUND 303 KINGS QTR", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 159100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 366.96396151300002, "SHAPE_Area": 2818.2945463699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359025.326800003647804, 257416.601300001144409 ], [ 359026.084600001573563, 257422.307000000029802 ], [ 359024.310099996626377, 257441.290899999439716 ], [ 359020.213799998164177, 257448.856699999421835 ], [ 359010.377999998629093, 257467.5636 ], [ 358993.36089999973774, 257477.34569999948144 ], [ 358988.443899996578693, 257486.593600001186132 ], [ 358992.171599999070168, 257522.298900000751019 ], [ 358994.412500001490116, 257543.215500000864267 ], [ 359021.082000002264977, 257536.256599999964237 ], [ 359023.244800001382828, 257471.679699998348951 ], [ 359036.4983000010252, 257430.413800001144409 ], [ 359039.064699999988079, 257413.125100001692772 ], [ 359065.752099998295307, 257404.055399999022484 ], [ 359064.155699998140335, 257402.142499998211861 ], [ 359061.738499999046326, 257401.91160000115633 ], [ 359025.326800003647804, 257416.601300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401120100", "MAP": "G3-6-T", "PARCEL_NAM": "REM 8G", "ACRE": "3.00 (d.)", "LONGITUDE": -64.93077805, "LATITUDE": 18.34674283, "OBJECTID_1": 11644, "PARCEL_NO_": "105401120100", "Tax_Legal_": "PCL OF 8G,8GB,8GDB&8GFA LYTTONS FANCY", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 673300, "Improved_V": 206500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 825.80160512999998, "SHAPE_Area": 12565.0981913 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358852.848600000143051, 257501.315799999982119 ], [ 358861.784500002861023, 257493.578499998897314 ], [ 358861.154600001871586, 257489.758099999278784 ], [ 358824.94539999961853, 257495.728799998760223 ], [ 358823.54730000346899, 257485.068300001323223 ], [ 358821.558700002729893, 257469.9054000005126 ], [ 358837.350599996745586, 257468.195900000631809 ], [ 358837.814499996602535, 257467.628899998962879 ], [ 358838.42230000346899, 257468.079900000244379 ], [ 358858.489399999380112, 257465.907699998468161 ], [ 358853.585799999535084, 257414.773499999195337 ], [ 358854.516199998557568, 257400.215599998831749 ], [ 358831.9341000020504, 257400.664099998772144 ], [ 358844.197800002992153, 257380.921700000762939 ], [ 358832.932800002396107, 257378.085200000554323 ], [ 358829.714699998497963, 257377.214499998837709 ], [ 358810.402800001204014, 257372.412399999797344 ], [ 358798.191200003027916, 257386.033599998801947 ], [ 358795.763300001621246, 257387.069099999964237 ], [ 358791.735299997031689, 257386.614000000059605 ], [ 358793.081799998879433, 257417.866900000721216 ], [ 358780.126900002360344, 257424.093600001186132 ], [ 358781.728699997067451, 257425.3733000010252 ], [ 358765.428800001740456, 257540.285900000482798 ], [ 358770.266599997878075, 257540.325500000268221 ], [ 358818.807199999690056, 257521.724300000816584 ], [ 358836.630599997937679, 257511.948800001293421 ], [ 358841.491899996995926, 257509.24439999833703 ], [ 358852.848600000143051, 257501.315799999982119 ] ] ], [ [ [ 358835.466499999165535, 257553.946899998933077 ], [ 358861.556199997663498, 257520.385499998927116 ], [ 358863.273100003600121, 257508.156100001186132 ], [ 358861.676700003445148, 257506.243200000375509 ], [ 358859.257700003683567, 257506.223400000482798 ], [ 358836.551500000059605, 257521.236299999058247 ], [ 358824.401100002229214, 257527.680799998342991 ], [ 358775.046999998390675, 257547.119600001722574 ], [ 358768.585699997842312, 257548.333299998193979 ], [ 358763.753200002014637, 257547.660500001162291 ], [ 358759.453699998557568, 257579.078200001269579 ], [ 358775.639300003647804, 257572.244600001722574 ], [ 358795.84570000320673, 257566.710400000214577 ], [ 358825.733199998736382, 257560.62220000103116 ], [ 358830.592600002884865, 257558.128899998962879 ], [ 358835.466499999165535, 257553.946899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302051400", "MAP": null, "PARCEL_NAM": "46", "ACRE": null, "LONGITUDE": -64.93581052, "LATITUDE": 18.34716507, "OBJECTID_1": 9676, "PARCEL_NO_": "105302051400", "Tax_Legal_": "AGNES FANCY 46 QUEENS QUARTER", "Name": "KUVACK, ANGELICA", "Address": "PO Box 304452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18500, "Improved_V": 23400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.562113730700005, "SHAPE_Area": 524.49287455900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358281.128100000321865, 257501.913899999111891 ], [ 358264.037299998104572, 257520.35020000115037 ], [ 358278.414200000464916, 257536.510999999940395 ], [ 358294.718500003218651, 257515.746199999004602 ], [ 358281.128100000321865, 257501.913899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301095100", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-24", "ACRE": "0.312", "LONGITUDE": -64.94899456, "LATITUDE": 18.34705807, "OBJECTID_1": 9334, "PARCEL_NO_": "105301095100", "Tax_Legal_": "SOLBERG 1B-24 LT.NORTHSIDE QTR.", "Name": "AMBROSE, BARBARA", "Address": "PO Box 7892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.93358026799999, "SHAPE_Area": 1237.57898636 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356894.432499997317791, 257471.565999999642372 ], [ 356884.765699997544289, 257470.431400001049042 ], [ 356863.598399996757507, 257494.111699998378754 ], [ 356889.141500003635883, 257524.718299999833107 ], [ 356904.659199997782707, 257501.625 ], [ 356894.432499997317791, 257471.565999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302051000", "MAP": null, "PARCEL_NAM": "48A", "ACRE": null, "LONGITUDE": -64.93544413, "LATITUDE": 18.3471597, "OBJECTID_1": 9672, "PARCEL_NO_": "105302051000", "Tax_Legal_": "AGNES FANCY 48A QUEENS QTR", "Name": "MEYERS, JARO & OTHERS", "Address": "PO Box 4139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21600, "Improved_V": 66900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.498553578100001, "SHAPE_Area": 477.68772791100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358331.801700003445148, 257516.894099999219179 ], [ 358315.788699999451637, 257503.464099999517202 ], [ 358301.969899997115135, 257516.438799999654293 ], [ 358324.384800001978874, 257535.620700001716614 ], [ 358331.801700003445148, 257516.894099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302081600", "MAP": null, "PARCEL_NAM": "91A", "ACRE": null, "LONGITUDE": -64.93266667, "LATITUDE": 18.34723811, "OBJECTID_1": 9779, "PARCEL_NO_": "105302081600", "Tax_Legal_": "AGNES FANCY 91A QUEENS QTR.", "Name": "ACUNA, FERNANDO P. & LILBETH", "Address": "PO BOX 9099", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.901879974499998, "SHAPE_Area": 165.952132358 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358618.010200001299381, 257523.036200001835823 ], [ 358605.919200003147125, 257522.515099998563528 ], [ 358605.789700001478195, 257537.712799999862909 ], [ 358617.906000003218651, 257535.278799999505281 ], [ 358618.010200001299381, 257523.036200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302051500", "MAP": null, "PARCEL_NAM": "43", "ACRE": null, "LONGITUDE": -64.93610043, "LATITUDE": 18.34715783, "OBJECTID_1": 9677, "PARCEL_NO_": "105302051500", "Tax_Legal_": "AGNES FANCY 43 QUEENS QUARTER", "Name": "HENLEY, ALVIN", "Address": "PO Box 7324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34400, "Improved_V": 80900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.579801963199998, "SHAPE_Area": 503.04873426900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358264.037299998104572, 257520.35020000115037 ], [ 358248.071099996566772, 257501.432199999690056 ], [ 358232.625299997627735, 257516.082400001585484 ], [ 358251.825699999928474, 257533.971400000154972 ], [ 358264.037299998104572, 257520.35020000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302021300", "MAP": null, "PARCEL_NAM": "15", "ACRE": null, "LONGITUDE": -64.93703374, "LATITUDE": 18.34715354, "OBJECTID_1": 9600, "PARCEL_NO_": "105302021300", "Tax_Legal_": "AGNES FANCY 15 QUEENS QUARTER", "Name": "BARNABAS, ALANI & HOST, A", "Address": "PO Box 7264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010264, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.970687148, "SHAPE_Area": 434.11555835899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358165.033500000834465, 257499.274900000542402 ], [ 358148.761600002646446, 257516.240299999713898 ], [ 358143.174900002777576, 257509.439599998295307 ], [ 358131.791199997067451, 257520.534400001168251 ], [ 358144.595100000500679, 257532.03830000013113 ], [ 358170.632700003683567, 257504.598099999129772 ], [ 358165.033500000834465, 257499.274900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501012400", "MAP": null, "PARCEL_NAM": "4B REM", "ACRE": null, "LONGITUDE": -64.91029012, "LATITUDE": 18.34689871, "OBJECTID_1": 19678, "PARCEL_NO_": "105501012400", "Tax_Legal_": "4B ST.JOSEPH&ROSENDAHL GREAT NORTHSIDE QTR", "Name": "JENSEN, CARL", "Address": "34 Terrell Ave", "City": "Rockville Centre", "State": "New York", "Zip": 11570, "Country": "United States", "Land_Value": 84600, "Improved_V": 155700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.08570049599999, "SHAPE_Area": 3324.0941829899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361006.3429000005126, 257478.416299998760223 ], [ 361005.679899998009205, 257477.885899998247623 ], [ 360949.112899996340275, 257487.528000000864267 ], [ 360948.98759999871254, 257550.935400001704693 ], [ 360972.442699998617172, 257542.306099999696016 ], [ 360999.148100003600121, 257531.125700000673532 ], [ 361008.039099998772144, 257528.665300000458956 ], [ 361006.3429000005126, 257478.416299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92221697, "LATITUDE": 18.34716683, "OBJECTID_1": 12487, "PARCEL_NO_": "105402030500", "Tax_Legal_": "HOSPITAL GROUND 322 NEW QUARTER", "Name": "CREQUE, ROYCE", "Address": "PO Box 10106", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.086868930899996, "SHAPE_Area": 291.308004498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359714.498099997639656, 257543.409499999135733 ], [ 359725.820600003004074, 257539.491399999707937 ], [ 359721.929300002753735, 257522.994300000369549 ], [ 359710.66610000282526, 257519.946800000965595 ], [ 359706.625600002706051, 257520.969200000166893 ], [ 359706.584200002253056, 257525.824000000953674 ], [ 359710.542099997401237, 257534.511199999600649 ], [ 359713.726000003516674, 257539.392400000244379 ], [ 359714.498099997639656, 257543.409499999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097300", "MAP": "D9-8578-T010", "PARCEL_NAM": "90G-1", "ACRE": ".003", "LONGITUDE": -64.94661969000001, "LATITUDE": 18.34709194, "OBJECTID_1": 9356, "PARCEL_NO_": "105301097300", "Tax_Legal_": "SOLBERG 90G LT.NORTHISDE QTR.", "Name": "PENN, CHERISE A. & NAOMI J.", "Address": "PO Box 307636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.0544197549, "SHAPE_Area": 16.0156365263 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357141.982199996709824, 257508.812699999660254 ], [ 357135.737700000405312, 257497.200699999928474 ], [ 357133.581799998879433, 257498.321199998259544 ], [ 357141.982199996709824, 257508.812699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302071500", "MAP": "D9-6894-T001", "PARCEL_NAM": "31 REM", "ACRE": "0.231", "LONGITUDE": -64.93446468, "LATITUDE": 18.34705001, "OBJECTID_1": 9750, "PARCEL_NO_": "105302071500", "Tax_Legal_": "AGNES FANCY 31 QUEENS QUARTER", "Name": "GRIFFITH, JAMES ELSON", "Address": "PO Box 7391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.33241996, "SHAPE_Area": 849.86735496200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358439.965300001204014, 257520.950100000947714 ], [ 358444.705200001597404, 257515.496100001037121 ], [ 358427.907499998807907, 257499.526599999517202 ], [ 358423.116400003433228, 257493.999000001698732 ], [ 358419.943300001323223, 257487.851300001144409 ], [ 358419.169299997389317, 257484.045299999415874 ], [ 358399.666799999773502, 257501.617499999701977 ], [ 358424.694300003349781, 257525.533100001513958 ], [ 358439.965300001204014, 257520.950100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401091900", "MAP": null, "PARCEL_NAM": "303", "ACRE": null, "LONGITUDE": -64.92831984, "LATITUDE": 18.34685802, "OBJECTID_1": 11526, "PARCEL_NO_": "105401091900", "Tax_Legal_": "HOSPITAL GROUND 303 KINGS QTR", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 159100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 346.26274631400003, "SHAPE_Area": 5789.8579670899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359136.857600003480911, 257481.686500001698732 ], [ 359129.028200000524521, 257454.180300001055002 ], [ 359124.183100000023842, 257454.984999999403954 ], [ 359096.727200001478195, 257459.615499999374151 ], [ 359023.244800001382828, 257471.679699998348951 ], [ 359021.082000002264977, 257536.256599999964237 ], [ 359035.629799999296665, 257532.364900000393391 ], [ 359046.943300001323223, 257529.502199999988079 ], [ 359063.895599998533726, 257527.318900000303984 ], [ 359082.462399996817112, 257524.937699999660254 ], [ 359086.702600002288818, 257500.485599998384714 ], [ 359101.246799997985363, 257497.015999998897314 ], [ 359133.544200003147125, 257492.002999998629093 ], [ 359136.857600003480911, 257481.686500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302030100", "MAP": "D9-5326-T92", "PARCEL_NAM": "5", "ACRE": ".08", "LONGITUDE": -64.93904454, "LATITUDE": 18.3468074, "OBJECTID_1": 9624, "PARCEL_NO_": "105302030100", "Tax_Legal_": "STAABI 5 GREAT NORTHSIDE QTR", "Name": "DUKES, JULIE E.", "Address": "PO Box 301795", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 178300, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.932389796, "SHAPE_Area": 3408.8223346599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357900.320200003683567, 257525.605999998748302 ], [ 357963.466099999845028, 257496.358600001782179 ], [ 357974.225100003182888, 257463.938299998641014 ], [ 357958.077299997210503, 257466.339299999177456 ], [ 357957.353699997067451, 257456.622999999672174 ], [ 357951.792199999094009, 257446.867199998348951 ], [ 357947.877499997615814, 257433.114100001752377 ], [ 357944.828500002622604, 257412.401999998837709 ], [ 357941.581699997186661, 257414.908500000834465 ], [ 357939.144799999892712, 257416.999499998986721 ], [ 357900.320200003683567, 257525.605999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91109014, "LATITUDE": 18.34697456, "OBJECTID_1": 19704, "PARCEL_NO_": "105501015200", "Tax_Legal_": "4A-1 ST JOSEPH&ROSENDHL GT. NORTHSIDE", "Name": "MARCHENA, LEROY", "Address": "P,.O. BOX 4906", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.51812901900001, "SHAPE_Area": 2189.5855898200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360913.7871999964118, 257491.794900000095367 ], [ 360866.444399997591972, 257497.398699998855591 ], [ 360874.061700001358986, 257542.767499998211861 ], [ 360888.559199996292591, 257544.785999998450279 ], [ 360911.899099998176098, 257550.043299999088049 ], [ 360913.7871999964118, 257491.794900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301092300", "MAP": "F9-3764-T79", "PARCEL_NAM": "91-B-2", "ACRE": ".23", "LONGITUDE": -64.94515299, "LATITUDE": 18.34694705, "OBJECTID_1": 9310, "PARCEL_NO_": "105301092300", "Tax_Legal_": "SOLBERG 91B-2 LT NORTHSIDE", "Name": "HALL, SAMUEL", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.50655804500001, "SHAPE_Area": 774.33613019699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357277.080399997532368, 257498.255800001323223 ], [ 357277.319799996912479, 257498.356300000101328 ], [ 357314.349600002169609, 257495.650800000876188 ], [ 357308.855499997735023, 257477.49100000038743 ], [ 357271.78490000218153, 257474.865499999374151 ], [ 357272.489399999380112, 257477.977400001138449 ], [ 357277.080399997532368, 257498.255800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301093400", "MAP": null, "PARCEL_NAM": "103", "ACRE": null, "LONGITUDE": -64.9448323, "LATITUDE": 18.34691623, "OBJECTID_1": 9314, "PARCEL_NO_": "105301093400", "Tax_Legal_": "SOLBERG ESTATE 103 LT. NORTHSIDE", "Name": "AMEY, RUBY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72800, "Improved_V": 283900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.84645725799999, "SHAPE_Area": 2212.3505733799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357300.223399996757507, 257449.556000001728535 ], [ 357308.855499997735023, 257477.49100000038743 ], [ 357321.404100000858307, 257518.967999998480082 ], [ 357344.797899998724461, 257517.892900001257658 ], [ 357355.267399996519089, 257519.456300001591444 ], [ 357341.066600002348423, 257482.6097999997437 ], [ 357325.278399996459484, 257442.795000001788139 ], [ 357300.223399996757507, 257449.556000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401150200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92811584, "LATITUDE": 18.34708697, "OBJECTID_1": 11701, "PARCEL_NO_": "105401150200", "Tax_Legal_": "HOSPITAL GROUND 217 KINGS", "Name": "MAHONEY, ROY SR. & EULALIE P", "Address": "PO Box 293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.09792887899999, "SHAPE_Area": 597.34316976299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359101.747400000691414, 257532.905999999493361 ], [ 359101.246799997985363, 257497.015999998897314 ], [ 359086.702600002288818, 257500.485599998384714 ], [ 359082.462399996817112, 257524.937699999660254 ], [ 359081.586000002920628, 257533.163199998438358 ], [ 359101.747400000691414, 257532.905999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401150300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92790355, "LATITUDE": 18.34705078, "OBJECTID_1": 11702, "PARCEL_NO_": "105401150300", "Tax_Legal_": "HOSPITAL GROUND 216&217A NEW QUARTER", "Name": "MAHONEY, JOMA & JULIUS, SUSAN", "Address": "PO Box 293", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47100, "Improved_V": 108800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.33605584, "SHAPE_Area": 1023.03065219 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359133.544200003147125, 257492.002999998629093 ], [ 359101.246799997985363, 257497.015999998897314 ], [ 359101.747400000691414, 257532.905999999493361 ], [ 359126.746699996292591, 257532.688400000333786 ], [ 359127.741800002753735, 257510.531800001859665 ], [ 359131.089299999177456, 257496.204799998551607 ], [ 359133.544200003147125, 257492.002999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402093600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92126932, "LATITUDE": 18.34709513, "OBJECTID_1": 12625, "PARCEL_NO_": "105402093600", "Tax_Legal_": "C-51 ESTAE ROSS KING QTR", "Name": "KELLY, CINNEDA & DAVID", "Address": "4884 Cherokee Rose Dr", "City": "ORLANDO", "State": "Florida", "Zip": 32808, "Country": "United States", "Land_Value": 26300, "Improved_V": 120900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.24117529199999, "SHAPE_Area": 784.57144316100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359813.21169999986887, 257503.898600000888109 ], [ 359797.724500000476837, 257523.403499998152256 ], [ 359801.732699997723103, 257526.180500000715256 ], [ 359798.442699998617172, 257533.752999998629093 ], [ 359837.109700001776218, 257538.291299998760223 ], [ 359835.540299996733665, 257533.212200000882149 ], [ 359832.352799996733665, 257528.753199998289347 ], [ 359826.024599999189377, 257514.346999999135733 ], [ 359822.034400001168251, 257509.459199998527765 ], [ 359813.21169999986887, 257503.898600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302071200", "MAP": null, "PARCEL_NAM": "34", "ACRE": null, "LONGITUDE": -64.93408203, "LATITUDE": 18.34708873, "OBJECTID_1": 9747, "PARCEL_NO_": "105302071200", "Tax_Legal_": "AGNES FANCY 34 QUEENS QUARTER", "Name": "GRIFFITH, JANET N", "Address": "PO Box 7391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36100, "Improved_V": 900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.126053713100006, "SHAPE_Area": 378.37153844800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358462.589699998497963, 257498.5439000017941 ], [ 358447.973600000143051, 257510.456599999219179 ], [ 358463.96679999679327, 257526.208399999886751 ], [ 358475.381099998950958, 257511.525299999862909 ], [ 358462.589699998497963, 257498.5439000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302080500", "MAP": null, "PARCEL_NAM": "81", "ACRE": null, "LONGITUDE": -64.93360822, "LATITUDE": 18.34703796, "OBJECTID_1": 9768, "PARCEL_NO_": "105302080500", "Tax_Legal_": "81 AGNES FANCY QUEENS QUARTER", "Name": "CRANSTON, SONJA T. & TODMAN, JR", "Address": "1022 Longfellow Ave", "City": "Bronx", "State": "New York", "Zip": 10459, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.073094529200006, "SHAPE_Area": 367.98872138299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358513.968999996781349, 257525.351100001484156 ], [ 358522.224500000476837, 257502.831700000911951 ], [ 358507.838500000536442, 257487.726300001144409 ], [ 358504.393899999558926, 257513.451499998569489 ], [ 358513.968999996781349, 257525.351100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097200", "MAP": "A9-372-T90", "PARCEL_NAM": "90D", "ACRE": null, "LONGITUDE": -64.9462135, "LATITUDE": 18.34695113, "OBJECTID_1": 9355, "PARCEL_NO_": "105301097200", "Tax_Legal_": "SOLBERG 90D LT.NORTHSIDE QTR.", "Name": "JOHNSON, C. & MORTON, M", "Address": "P.O.BOX 4248", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52200, "Improved_V": 215300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.816269151, "SHAPE_Area": 1337.14676637 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357193.653499998152256, 257464.72690000012517 ], [ 357164.615500003099442, 257465.755800001323223 ], [ 357162.912900000810623, 257476.296500001102686 ], [ 357161.26969999819994, 257479.871700000017881 ], [ 357154.786899998784065, 257483.618299998342991 ], [ 357169.248400002717972, 257489.858399998396635 ], [ 357169.8496999964118, 257513.92790000140667 ], [ 357198.98480000346899, 257501.500799998641014 ], [ 357193.653499998152256, 257464.72690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302022800", "MAP": null, "PARCEL_NAM": "15B", "ACRE": null, "LONGITUDE": -64.93720498, "LATITUDE": 18.34709384, "OBJECTID_1": 9615, "PARCEL_NO_": "105302022800", "Tax_Legal_": "AGNES FANCY 15B QUEENS QTR", "Name": "JAMES, BERNARD & ALIA", "Address": "PO Box 11059", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23500, "Improved_V": 50100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.045244136699999, "SHAPE_Area": 246.37451121800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358135.986400000751019, 257501.359200000762939 ], [ 358133.590899996459484, 257498.595400001853704 ], [ 358120.585600003600121, 257510.732400000095367 ], [ 358131.791199997067451, 257520.534400001168251 ], [ 358143.174900002777576, 257509.439599998295307 ], [ 358135.986400000751019, 257501.359200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302051600", "MAP": null, "PARCEL_NAM": "42", "ACRE": null, "LONGITUDE": -64.93595051, "LATITUDE": 18.34702306, "OBJECTID_1": 9678, "PARCEL_NO_": "105302051600", "Tax_Legal_": "AGNES FANCY 42 QUEENS QUARTER", "Name": "HENDRICKS, BEATRICE E. & BENNETT, BERENICE A.", "Address": "1225 New Jersey Ave NW", "City": "Washington", "State": "District of Columbia", "Zip": 20001, "Country": "United States", "Land_Value": 39100, "Improved_V": 120900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.188345336699996, "SHAPE_Area": 551.55583972700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358248.071099996566772, 257501.432199999690056 ], [ 358264.037299998104572, 257520.35020000115037 ], [ 358281.128100000321865, 257501.913899999111891 ], [ 358266.740299999713898, 257487.019600000232458 ], [ 358248.071099996566772, 257501.432199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302081400", "MAP": "M.B.", "PARCEL_NAM": "86", "ACRE": "4,403 sq ft", "LONGITUDE": -64.93271945, "LATITUDE": 18.34706084, "OBJECTID_1": 9777, "PARCEL_NO_": "105302081400", "Tax_Legal_": "AGNES FANCY 86 QUEENS QTR", "Name": "LETTSOME, WELLMORE & SAMUEL", "Address": "BOX 4663", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33000, "Improved_V": 72600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.656297663800004, "SHAPE_Area": 604.82738928100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358618.21339999884367, 257499.184300001710653 ], [ 358618.234300002455711, 257496.727699998766184 ], [ 358594.271899998188019, 257498.038400001823902 ], [ 358594.271899998188019, 257505.896200001239777 ], [ 358593.782399997115135, 257517.033100001513958 ], [ 358593.568300001323223, 257521.903299998492002 ], [ 358605.919200003147125, 257522.515099998563528 ], [ 358618.010200001299381, 257523.036200001835823 ], [ 358618.083499997854233, 257514.434099998325109 ], [ 358618.21339999884367, 257499.184300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130600", "MAP": "D9-3387-T86", "PARCEL_NAM": "8GH-1", "ACRE": "0.06", "LONGITUDE": -64.9302128, "LATITUDE": 18.34625262, "OBJECTID_1": 11664, "PARCEL_NO_": "105401130600", "Tax_Legal_": "8G-I & 8GH-1 LYTTONS FANCY QUEENS QUARTER", "Name": "TURNBULL, WILFRED", "Address": "BOX 4283", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.408348311400005, "SHAPE_Area": 307.05886366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358885.125399999320507, 257414.521899998188019 ], [ 358864.091300003230572, 257412.115200001746416 ], [ 358866.515699997544289, 257441.471200000494719 ], [ 358885.143299996852875, 257414.629000000655651 ], [ 358885.125399999320507, 257414.521899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302020900", "MAP": null, "PARCEL_NAM": "18", "ACRE": null, "LONGITUDE": -64.93646113, "LATITUDE": 18.34696905, "OBJECTID_1": 9595, "PARCEL_NO_": "105302020900", "Tax_Legal_": "AGNES FANCY 18 QUEENS QTR", "Name": "DONOVAN, WILLIAM & IRIS", "Address": "P.O. BOX 4375", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31600, "Improved_V": 50200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.10600073499999, "SHAPE_Area": 636.543630828 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358231.523699998855591, 257504.979699999094009 ], [ 358211.907499998807907, 257486.993000000715256 ], [ 358200.705399997532368, 257476.768800001591444 ], [ 358190.932599999010563, 257488.087900001555681 ], [ 358219.611800000071526, 257516.079900000244379 ], [ 358229.175200000405312, 257506.818999998271465 ], [ 358231.523699998855591, 257504.979699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401151200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92721824, "LATITUDE": 18.34705587, "OBJECTID_1": 11711, "PARCEL_NO_": "105401151200", "Tax_Legal_": "HOSPITAL GROUND 212 NEW QUARTER", "Name": "STAGGER, ELIZABETH", "Address": "7947 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.349538250699993, "SHAPE_Area": 467.81398153100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359177.806900002062321, 257502.286699999123812 ], [ 359178.409999996423721, 257526.145199999213219 ], [ 359197.759700000286102, 257526.514600001275539 ], [ 359197.140399999916553, 257504.555799998342991 ], [ 359193.933100000023842, 257502.418699998408556 ], [ 359189.910599999129772, 257501.330299999564886 ], [ 359177.806900002062321, 257502.286699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401151300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92710209000001, "LATITUDE": 18.34708975, "OBJECTID_1": 11712, "PARCEL_NO_": "105401151300", "Tax_Legal_": "HOSPITAL GROUND 211 NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.845270176299998, "SHAPE_Area": 91.315859950299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359197.759700000286102, 257526.514600001275539 ], [ 359204.210199996829033, 257526.567400000989437 ], [ 359201.116200000047684, 257511.13230000063777 ], [ 359197.140399999916553, 257504.555799998342991 ], [ 359197.759700000286102, 257526.514600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401150900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92766785000001, "LATITUDE": 18.34707741, "OBJECTID_1": 11708, "PARCEL_NO_": "105401150900", "Tax_Legal_": "HOSPITAL GROUND 215 NEW QUARTER", "Name": "NICHOLAS, COBINA & LESLIE", "Address": "PO Box 873", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.045355381999997, "SHAPE_Area": 212.50410457300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359134.064599998295307, 257525.571100000292063 ], [ 359146.963799998164177, 257525.887800000607967 ], [ 359143.119300000369549, 257503.90260000154376 ], [ 359139.894000001251698, 257503.876200001686811 ], [ 359137.462499998509884, 257505.333999998867512 ], [ 359135.824699997901917, 257508.27589999884367 ], [ 359134.971600003540516, 257513.75730000063777 ], [ 359134.064599998295307, 257525.571100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401151000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92753024, "LATITUDE": 18.34706094, "OBJECTID_1": 11709, "PARCEL_NO_": "105401151000", "Tax_Legal_": "HOSPITAL GROUND 214 NEW QUARTER", "Name": "NICHOLAS, NATHANIEL", "Address": "PO Box 873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10600, "Improved_V": 39700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.633221724799995, "SHAPE_Area": 431.73068151299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359164.70269999653101, 257526.032999999821186 ], [ 359164.088799998164177, 257503.440999999642372 ], [ 359143.119300000369549, 257503.90260000154376 ], [ 359146.963799998164177, 257525.887800000607967 ], [ 359164.70269999653101, 257526.032999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401151100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92737333, "LATITUDE": 18.34705942, "OBJECTID_1": 11710, "PARCEL_NO_": "105401151100", "Tax_Legal_": "HOSPITAL GROUND 213 NEW QUARTER", "Name": "FAULKNER, MARCHNEL & LEO", "Address": "PO Box 111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10600, "Improved_V": 17100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.940798166899995, "SHAPE_Area": 318.79794464399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359177.806900002062321, 257502.286699999123812 ], [ 359164.088799998164177, 257503.440999999642372 ], [ 359164.70269999653101, 257526.032999999821186 ], [ 359178.409999996423721, 257526.145199999213219 ], [ 359177.806900002062321, 257502.286699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92392466, "LATITUDE": 18.34700766, "OBJECTID_1": 12454, "PARCEL_NO_": "105402010900", "Tax_Legal_": "HOSPITAL GROUND 315(ROUND HILL) NEW QUARTER", "Name": "ROGERS, ELVY A", "Address": "315 HOSPITAL GROUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.913330976, "SHAPE_Area": 1040.56101539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359547.200499996542931, 257493.277699999511242 ], [ 359517.345399998128414, 257495.566399998962879 ], [ 359523.517099998891354, 257528.336399998515844 ], [ 359558.186800003051758, 257528.831300001591444 ], [ 359553.401000000536442, 257522.670400001108646 ], [ 359550.253100000321865, 257513.567600000649691 ], [ 359547.200499996542931, 257493.277699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92080035, "LATITUDE": 18.34700793, "OBJECTID_1": 12616, "PARCEL_NO_": "105402092700", "Tax_Legal_": "ROSS ESTATE C-47 0F PARCEL C KING QUARTER", "Name": "SCOTLAND, DAVID & MARIE", "Address": "PO Box 302907", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29300, "Improved_V": 92100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.54963749300001, "SHAPE_Area": 1253.6609085299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359884.226499997079372, 257497.513700000941753 ], [ 359834.116499997675419, 257511.035799998790026 ], [ 359836.483300000429153, 257517.17680000141263 ], [ 359844.43129999935627, 257530.751899998635054 ], [ 359899.366599999368191, 257518.747000001370907 ], [ 359892.203299999237061, 257507.711500000208616 ], [ 359884.226499997079372, 257497.513700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302022600", "MAP": null, "PARCEL_NAM": "15C", "ACRE": null, "LONGITUDE": -64.9370333, "LATITUDE": 18.34701313, "OBJECTID_1": 9613, "PARCEL_NO_": "105302022600", "Tax_Legal_": "AGNES FANCY 15C QUEENS QUARTER", "Name": "FOY, RACHEL", "Address": "BOX 4211", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16100, "Improved_V": 76600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.219328497500001, "SHAPE_Area": 427.30670885500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358151.434000000357628, 257486.497999999672174 ], [ 358135.986400000751019, 257501.359200000762939 ], [ 358143.174900002777576, 257509.439599998295307 ], [ 358148.761600002646446, 257516.240299999713898 ], [ 358165.033500000834465, 257499.274900000542402 ], [ 358151.434000000357628, 257486.497999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302051100", "MAP": null, "PARCEL_NAM": "48", "ACRE": null, "LONGITUDE": -64.93534324, "LATITUDE": 18.34703189, "OBJECTID_1": 9673, "PARCEL_NO_": "105302051100", "Tax_Legal_": "AGNES FANCY 48 QUEENS QUARTER", "Name": "MEYERS, MARK and DENISE", "Address": "PO Box 1402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 48300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.573681338200004, "SHAPE_Area": 263.481714866 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358315.788699999451637, 257503.464099999517202 ], [ 358331.801700003445148, 257516.894099999219179 ], [ 358340.035599999129772, 257496.907600000500679 ], [ 358336.815800003707409, 257496.247900001704693 ], [ 358330.361699998378754, 257496.617300000041723 ], [ 358323.896799996495247, 257498.253100000321865 ], [ 358315.788699999451637, 257503.464099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92245677, "LATITUDE": 18.34697957, "OBJECTID_1": 12478, "PARCEL_NO_": "105402020700", "Tax_Legal_": "HOSPITAL GROUND 338 KINGS QTR", "Name": "PETERSEN, ESTRELDA", "Address": "PO Box 1213", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.5874181975, "SHAPE_Area": 180.845139851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359673.739399999380112, 257500.434999998658895 ], [ 359673.717799998819828, 257502.967999998480082 ], [ 359680.161100000143051, 257503.865100000053644 ], [ 359687.381999999284744, 257508.146099999547005 ], [ 359690.57490000128746, 257511.971900001168251 ], [ 359693.735399998724461, 257519.597100000828505 ], [ 359699.313000001013279, 257527.453200001269579 ], [ 359697.777699999511242, 257518.363600000739098 ], [ 359697.892800003290176, 257504.854600001126528 ], [ 359673.739399999380112, 257500.434999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402021000", "MAP": null, "PARCEL_NAM": "335A", "ACRE": "7,209 sq ft", "LONGITUDE": -64.9231769, "LATITUDE": 18.34699646, "OBJECTID_1": 12481, "PARCEL_NO_": "105402021000", "Tax_Legal_": "HOSPITAL GROUND 335A KINGS QUARTER", "Name": "FINCH, L. & DURAN, F. TRUST", "Address": "3422 Retlaw Rd", "City": "Baltimore", "State": "Maryland", "Zip": 21207, "Country": "United States", "Land_Value": 18100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.644536372000005, "SHAPE_Area": 398.62608990299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359600.221100002527237, 257516.720800001174212 ], [ 359613.04839999973774, 257525.480599999427795 ], [ 359632.621100001037121, 257499.676300000399351 ], [ 359613.248000003397465, 257502.050900001078844 ], [ 359608.390299998223782, 257504.333099998533726 ], [ 359600.221100002527237, 257516.720800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302051700", "MAP": null, "PARCEL_NAM": "49", "ACRE": null, "LONGITUDE": -64.93559163, "LATITUDE": 18.34686446, "OBJECTID_1": 9679, "PARCEL_NO_": "105302051700", "Tax_Legal_": "49 AGNES FANCY QUEENS QUARTER", "Name": "DeFREITAS, AUSSELITA A., MONAGHAN, ARLENE A. & OTHERS", "Address": "PO Box 993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 74000, "Improved_V": 119600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.294013742, "SHAPE_Area": 1374.25560662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358325.606499999761581, 257486.868099998682737 ], [ 358320.939499996602535, 257466.776000000536442 ], [ 358308.803400002419949, 257471.531800001859665 ], [ 358304.086000002920628, 257457.349899999797344 ], [ 358296.782499998807907, 257462.778599999845028 ], [ 358285.404200002551079, 257473.240100000053644 ], [ 358293.364799998700619, 257485.337600000202656 ], [ 358278.757700003683567, 257496.194899998605251 ], [ 358296.345499999821186, 257514.070799998939037 ], [ 358304.486000001430511, 257505.060400001704693 ], [ 358317.476899996399879, 257494.611999999731779 ], [ 358323.151600003242493, 257491.069899998605251 ], [ 358325.606499999761581, 257486.868099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402093800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92159177000001, "LATITUDE": 18.34696621, "OBJECTID_1": 12627, "PARCEL_NO_": "105402093800", "Tax_Legal_": "ROSS C-52 NEW QUARTER", "Name": "KUNTZ, RONALD", "Address": "4409 Lasalle Ave", "City": "Baltimore", "State": "Maryland", "Zip": 21206, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.432509622, "SHAPE_Area": 1260.8948574599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359768.970600001513958, 257491.081999998539686 ], [ 359752.590800002217293, 257520.712099999189377 ], [ 359771.134199999272823, 257521.074999999254942 ], [ 359784.02080000191927, 257522.869199998676777 ], [ 359792.868699997663498, 257525.474700000137091 ], [ 359796.09570000320673, 257525.28999999910593 ], [ 359797.724500000476837, 257523.403499998152256 ], [ 359813.21169999986887, 257503.898600000888109 ], [ 359804.374600000679493, 257500.026599999517202 ], [ 359768.970600001513958, 257491.081999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302022900", "MAP": null, "PARCEL_NAM": "15A", "ACRE": null, "LONGITUDE": -64.93730486, "LATITUDE": 18.34699567, "OBJECTID_1": 9616, "PARCEL_NO_": "105302022900", "Tax_Legal_": "AGNES FANCY 15A QUEENS QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.916820836799999, "SHAPE_Area": 289.77909158099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358120.585600003600121, 257510.732400000095367 ], [ 358133.590899996459484, 257498.595400001853704 ], [ 358121.605899997055531, 257485.620600000023842 ], [ 358119.969899997115135, 257488.351399999111891 ], [ 358110.182599999010563, 257501.359099999070168 ], [ 358120.585600003600121, 257510.732400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302070100", "MAP": null, "PARCEL_NAM": "41", "ACRE": null, "LONGITUDE": -64.93483628, "LATITUDE": 18.34696453, "OBJECTID_1": 9738, "PARCEL_NO_": "105302070100", "Tax_Legal_": "41 AGNES FANCY QUEENS QUARTER", "Name": "CARTY, F. , HENRY, M. C. & WILLIAMS, M", "Address": "P O BOX 3959", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45300, "Improved_V": 62400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.635104198199997, "SHAPE_Area": 461.60253084499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358386.085400000214577, 257486.729800000786781 ], [ 358359.424900002777576, 257492.633299998939037 ], [ 358369.869199998676777, 257497.151700001209974 ], [ 358373.873800002038479, 257500.350900001823902 ], [ 358379.478399999439716, 257505.040899999439716 ], [ 358385.05969999730587, 257512.474800001829863 ], [ 358399.69200000166893, 257498.662399999797344 ], [ 358386.085400000214577, 257486.729800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302071000", "MAP": null, "PARCEL_NAM": "35", "ACRE": null, "LONGITUDE": -64.93397125, "LATITUDE": 18.346897, "OBJECTID_1": 9745, "PARCEL_NO_": "105302071000", "Tax_Legal_": "AGNES FANCY 35 QUEENS QUARTER", "Name": "COLBOURNE, DAVID A", "Address": "Ross Taarenberg Bldg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.49460302, "SHAPE_Area": 578.70609168600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358473.39190000295639, 257461.057700000703335 ], [ 358462.589699998497963, 257498.5439000017941 ], [ 358475.381099998950958, 257511.525299999862909 ], [ 358486.788099996745586, 257497.686500001698732 ], [ 358485.193499997258186, 257495.5625 ], [ 358482.043700002133846, 257486.670800000429153 ], [ 358479.653599999845028, 257483.273699998855591 ], [ 358473.39190000295639, 257461.057700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302071100", "MAP": null, "PARCEL_NAM": "30", "ACRE": null, "LONGITUDE": -64.93427176, "LATITUDE": 18.34690426, "OBJECTID_1": 9746, "PARCEL_NO_": "105302071100", "Tax_Legal_": "AGNES FANCY 3O QUEENS QUARTER", "Name": "WHEATLEY, KAREN T", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62500, "Improved_V": 99800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.496886202, "SHAPE_Area": 685.084938803 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358447.973600000143051, 257510.456599999219179 ], [ 358462.589699998497963, 257498.5439000017941 ], [ 358434.598999999463558, 257471.294799998402596 ], [ 358425.655799999833107, 257479.876499999314547 ], [ 358426.39919999986887, 257487.270799998193979 ], [ 358431.18129999935627, 257493.853900000452995 ], [ 358447.973600000143051, 257510.456599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92192846, "LATITUDE": 18.34691615, "OBJECTID_1": 12611, "PARCEL_NO_": "105402092200", "Tax_Legal_": "ROSS ESTATE C-11 NEW QTR.", "Name": "HODGE, ALICE", "Address": "60A Ross Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.77497723100001, "SHAPE_Area": 947.80036867900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359741.636900000274181, 257481.359000001102686 ], [ 359726.803199999034405, 257518.812300000339746 ], [ 359739.689800001680851, 257520.606499999761581 ], [ 359752.590800002217293, 257520.712099999189377 ], [ 359768.970600001513958, 257491.081999998539686 ], [ 359753.67400000244379, 257488.212499998509884 ], [ 359744.833400003612041, 257484.762699998915195 ], [ 359741.636900000274181, 257481.359000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302021000", "MAP": null, "PARCEL_NAM": "18A", "ACRE": null, "LONGITUDE": -64.93631354, "LATITUDE": 18.34691685, "OBJECTID_1": 9596, "PARCEL_NO_": "105302021000", "Tax_Legal_": "AGNES FANCY 18A CROWN PRINCE QTR", "Name": "POTTER, ELVET, MYRON E., BENNETTE L. & BYRON LEERDAM", "Address": "4627 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19700, "Improved_V": 72700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.922082459400002, "SHAPE_Area": 385.84433535800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358242.003899998962879, 257496.771600000560284 ], [ 358232.067100003361702, 257486.946899998933077 ], [ 358220.87219999730587, 257475.878400001674891 ], [ 358211.907499998807907, 257486.993000000715256 ], [ 358231.523699998855591, 257504.979699999094009 ], [ 358242.003899998962879, 257496.771600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402093700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92212771, "LATITUDE": 18.34662901, "OBJECTID_1": 12626, "PARCEL_NO_": "105402093700", "Tax_Legal_": "C-55 ESTATE ROSS NEW QUARTER", "Name": "Shirley Ann Richardson Edward Revocable Trust", "Address": "99 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.20270910799999, "SHAPE_Area": 1667.43460332 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359710.519799999892712, 257442.474199999123812 ], [ 359717.39360000193119, 257487.493400000035763 ], [ 359720.426399998366833, 257510.10530000180006 ], [ 359721.166199997067451, 257517.921799998730421 ], [ 359726.803199999034405, 257518.812300000339746 ], [ 359741.636900000274181, 257481.359000001102686 ], [ 359739.2449000030756, 257478.173099998384714 ], [ 359737.684399999678135, 257472.038600001484156 ], [ 359736.953599996864796, 257463.166700001806021 ], [ 359738.607600003480911, 257458.324999999254942 ], [ 359744.309399999678135, 257451.616700001060963 ], [ 359718.674599997699261, 257431.775199998170137 ], [ 359710.519799999892712, 257442.474199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096600", "MAP": "A9-372-T70", "PARCEL_NAM": "1B-1", "ACRE": ".296", "LONGITUDE": -64.94695815, "LATITUDE": 18.34686064, "OBJECTID_1": 9349, "PARCEL_NO_": "105301096600", "Tax_Legal_": "SOLBERG 1B-14 LT.NORTHSIDE QTR.", "Name": "FORBES, RUDOLPH D", "Address": "PO BOX 307213", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43100, "Improved_V": 563800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.44684755099999, "SHAPE_Area": 1215.62195529 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357121.695699997246265, 257487.147100001573563 ], [ 357112.318499997258186, 257452.028799999505281 ], [ 357085.636399999260902, 257460.465300001204014 ], [ 357084.571199998259544, 257490.854100000113249 ], [ 357086.176600001752377, 257491.711599998176098 ], [ 357088.572200000286102, 257494.475400000810623 ], [ 357094.200199998915195, 257496.421300001442432 ], [ 357098.231700003147125, 257496.454300001263618 ], [ 357121.695699997246265, 257487.147100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92224291, "LATITUDE": 18.3469999, "OBJECTID_1": 12488, "PARCEL_NO_": "105402030600", "Tax_Legal_": "HOSPITAL GROUND NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.204072898600003, "SHAPE_Area": 97.869038563800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359721.166199997067451, 257517.921799998730421 ], [ 359720.426399998366833, 257510.10530000180006 ], [ 359704.318099997937679, 257507.862500000745058 ], [ 359705.097499996423721, 257511.035300001502037 ], [ 359708.297600001096725, 257514.016800001263618 ], [ 359721.166199997067451, 257517.921799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301093700", "MAP": "D9-2273-T83", "PARCEL_NAM": "94-7", "ACRE": "0.52", "LONGITUDE": -64.94411824, "LATITUDE": 18.34681234, "OBJECTID_1": 9321, "PARCEL_NO_": "105301093700", "Tax_Legal_": "SOLBERG 94-7 LT. NORTHSIDE", "Name": "DUNCAN, WELLINGTON & RITA M.,CO-TRUSTEES", "Address": "PO Box 302822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78800, "Improved_V": 314600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.228219099, "SHAPE_Area": 2213.0363621800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357375.226700000464916, 257448.269999999552965 ], [ 357375.6841000020504, 257489.225900001823902 ], [ 357414.327799998223782, 257496.508299998939037 ], [ 357427.208999998867512, 257498.935699999332428 ], [ 357426.794699996709824, 257452.913899999111891 ], [ 357401.80799999833107, 257451.653999999165535 ], [ 357375.226700000464916, 257448.269999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301095000", "MAP": null, "PARCEL_NAM": "1B-30", "ACRE": "0.30", "LONGITUDE": -64.94929936, "LATITUDE": 18.34690707, "OBJECTID_1": 9333, "PARCEL_NO_": "105301095000", "Tax_Legal_": "SOLBERG 1B-30 LT.NORTHSIDE QTR.", "Name": "STEVENS, GERENIE & WINSTON", "Address": "PO Box 7392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.60157974200001, "SHAPE_Area": 1089.66721022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356858.987099997699261, 257467.476199999451637 ], [ 356829.180500000715256, 257464.065900001674891 ], [ 356833.087999999523163, 257478.66330000013113 ], [ 356841.021600000560284, 257493.927000001072884 ], [ 356863.598399996757507, 257494.111699998378754 ], [ 356884.765699997544289, 257470.431400001049042 ], [ 356858.987099997699261, 257467.476199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401121400", "MAP": "D3-152-T47", "PARCEL_NAM": "8GK", "ACRE": ".18", "LONGITUDE": -64.93049901000001, "LATITUDE": 18.34677553, "OBJECTID_1": 11656, "PARCEL_NO_": "105401121400", "Tax_Legal_": "LYTTONS FANCY 8GK KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.89780761599999, "SHAPE_Area": 919.89425317200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358860.251000002026558, 257484.277800001204014 ], [ 358858.489399999380112, 257465.907699998468161 ], [ 358838.42230000346899, 257468.079900000244379 ], [ 358837.350599996745586, 257468.195900000631809 ], [ 358821.558700002729893, 257469.9054000005126 ], [ 358823.54730000346899, 257485.068300001323223 ], [ 358824.94539999961853, 257495.728799998760223 ], [ 358861.154600001871586, 257489.758099999278784 ], [ 358860.251000002026558, 257484.277800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302022700", "MAP": null, "PARCEL_NAM": "14", "ACRE": null, "LONGITUDE": -64.93717247, "LATITUDE": 18.34687388, "OBJECTID_1": 9614, "PARCEL_NO_": "105302022700", "Tax_Legal_": "AGNES FANCY 14 QUEENS QUARTER", "Name": "SCHLESSINGER, ARNOLD", "Address": "1336 S Quetzal Ct", "City": "Homestead", "State": "Florida", "Zip": 33035, "Country": "United States", "Land_Value": 34100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.233212722600001, "SHAPE_Area": 479.98320319499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358133.590899996459484, 257498.595400001853704 ], [ 358135.986400000751019, 257501.359200000762939 ], [ 358151.434000000357628, 257486.497999999672174 ], [ 358132.233599998056889, 257468.609000001102686 ], [ 358131.405699998140335, 257471.135400000959635 ], [ 358128.96339999884367, 257473.859600000083447 ], [ 358124.86710000038147, 257481.425400000065565 ], [ 358121.605899997055531, 257485.620600000023842 ], [ 358133.590899996459484, 257498.595400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9234252, "LATITUDE": 18.34678235, "OBJECTID_1": 12474, "PARCEL_NO_": "105402020300", "Tax_Legal_": "HOSPITAL GROUND 318 NEW QUARTER", "Name": "TAYLOR, ALTHEA & LOUIS", "Address": "BOX 4673", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.79387699900001, "SHAPE_Area": 908.14089406999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359601.156900003552437, 257501.529699999839067 ], [ 359601.453599996864796, 257466.701699998229742 ], [ 359593.372500002384186, 257468.746500000357628 ], [ 359586.097699999809265, 257470.797899998724461 ], [ 359574.755400002002716, 257477.037900000810623 ], [ 359567.44820000231266, 257482.888700000941753 ], [ 359593.806599996984005, 257512.446400001645088 ], [ 359601.156900003552437, 257501.529699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302021400", "MAP": null, "PARCEL_NAM": "13", "ACRE": null, "LONGITUDE": -64.93683006000001, "LATITUDE": 18.34682733, "OBJECTID_1": 9601, "PARCEL_NO_": "105302021400", "Tax_Legal_": "AGNES FANCY 13 QUEENS QUARTER", "Name": "BARTLEY, CHRISTIANITA & CLAUDETTE", "Address": "8306 Wilshire Blvd", "City": "BEVERLY HILLS", "State": "California", "Zip": 90211, "Country": "United States", "Land_Value": 41500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.170172917, "SHAPE_Area": 720.65782416399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358174.982500001788139, 257467.270199999213219 ], [ 358167.779700003564358, 257460.878400001674891 ], [ 358153.906900003552437, 257480.185499999672174 ], [ 358174.70380000025034, 257499.987399999052286 ], [ 358190.988300003111362, 257481.544399999082088 ], [ 358174.982500001788139, 257467.270199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302023000", "MAP": null, "PARCEL_NAM": "92", "ACRE": null, "LONGITUDE": -64.93742856, "LATITUDE": 18.3469092, "OBJECTID_1": 9617, "PARCEL_NO_": "105302023000", "Tax_Legal_": "AGNES FANCY 92 QUEENS QUARTER", "Name": "TURNBULL, ESME & CLARICE", "Address": "PO Box 308111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6800, "Improved_V": 51400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.803395201299999, "SHAPE_Area": 161.52756093400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358100.57880000025034, 257492.836800001561642 ], [ 358107.781700000166893, 257499.22859999909997 ], [ 358116.760799996554852, 257486.425299998372793 ], [ 358109.570500001311302, 257478.556000001728535 ], [ 358100.57880000025034, 257492.836800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302053100", "MAP": "F9-2994-T72", "PARCEL_NAM": "17", "ACRE": "4,433 sq ft", "LONGITUDE": -64.93610386, "LATITUDE": 18.34681881, "OBJECTID_1": 9684, "PARCEL_NO_": "105302053100", "Tax_Legal_": "AGNES FANCY 17 QUEENS QTR", "Name": "JULIEN, CALVIN, ELVIS & OTHERS", "Address": "PO Box 2144", "City": "Stockbridge", "State": "Georgia", "Zip": 30281, "Country": "United States", "Land_Value": 24500, "Improved_V": 118700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.269493633099998, "SHAPE_Area": 550.40860329700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358266.746200002729893, 257476.921000000089407 ], [ 358253.384700000286102, 257463.0304000005126 ], [ 358231.141500003635883, 257486.031800001859665 ], [ 358232.067100003361702, 257486.946899998933077 ], [ 358242.003899998962879, 257496.771600000560284 ], [ 358262.442199997603893, 257480.488800000399351 ], [ 358264.761799998581409, 257478.640799999237061 ], [ 358266.746200002729893, 257476.921000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92225953000001, "LATITUDE": 18.34687648, "OBJECTID_1": 12489, "PARCEL_NO_": "105402030700", "Tax_Legal_": "HOSPITAL GROUND 299 NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.877369619299998, "SHAPE_Area": 303.90609968299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359717.39360000193119, 257487.493400000035763 ], [ 359705.300700001418591, 257487.183400001376867 ], [ 359704.318099997937679, 257507.862500000745058 ], [ 359720.426399998366833, 257510.10530000180006 ], [ 359717.39360000193119, 257487.493400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92097661, "LATITUDE": 18.34681165, "OBJECTID_1": 12631, "PARCEL_NO_": "105402094300", "Tax_Legal_": "C-46 ESTATE ROSS NEW QTR.", "Name": "HUGHES, CHARLES A. & BERNADETTE", "Address": "PO Box 9371", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27100, "Improved_V": 83400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.36726961700001, "SHAPE_Area": 1216.3883813899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359841.689800001680851, 257473.945300001651049 ], [ 359823.094200000166893, 257479.703699998557568 ], [ 359830.153200000524521, 257502.981800001114607 ], [ 359832.541599996387959, 257506.589899998158216 ], [ 359834.116499997675419, 257511.035799998790026 ], [ 359884.226499997079372, 257497.513700000941753 ], [ 359841.689800001680851, 257473.945300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302070300", "MAP": null, "PARCEL_NAM": "40", "ACRE": null, "LONGITUDE": -64.93485478, "LATITUDE": 18.34680701, "OBJECTID_1": 9739, "PARCEL_NO_": "105302070300", "Tax_Legal_": "AGNES FANCY 4O QUEENS QUARTER", "Name": "LEWIS, WALTER A", "Address": "PO Box 7127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.42650976, "SHAPE_Area": 1170.5178915700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358414.320699997246265, 257485.272100001573563 ], [ 358384.710100002586842, 257458.854200001806021 ], [ 358369.284100003540516, 257471.182399999350309 ], [ 358361.183200001716614, 257475.549100000411272 ], [ 358339.335400000214577, 257484.447299998253584 ], [ 358337.699400000274181, 257487.178100001066923 ], [ 358339.295900002121925, 257489.091099999845028 ], [ 358359.424900002777576, 257492.633299998939037 ], [ 358374.080600000917912, 257476.076900001615286 ], [ 358386.085400000214577, 257486.729800000786781 ], [ 358399.69200000166893, 257498.662399999797344 ], [ 358414.320699997246265, 257485.272100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302070900", "MAP": null, "PARCEL_NAM": "29", "ACRE": null, "LONGITUDE": -64.93414469, "LATITUDE": 18.34675841, "OBJECTID_1": 9744, "PARCEL_NO_": "105302070900", "Tax_Legal_": "AGNES FANCY 29 QUEENS QUARTER", "Name": "DOUGLAS, HUGO", "Address": "PO Box 11300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.197324717, "SHAPE_Area": 784.48538550399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358434.598999999463558, 257471.294799998402596 ], [ 358462.589699998497963, 257498.5439000017941 ], [ 358473.39190000295639, 257461.057700000703335 ], [ 358442.730400003492832, 257463.339800000190735 ], [ 358434.598999999463558, 257471.294799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098700", "MAP": "A9-372-T70", "PARCEL_NAM": "1B-13", "ACRE": ".297", "LONGITUDE": -64.94665302, "LATITUDE": 18.34676108, "OBJECTID_1": 9369, "PARCEL_NO_": "105301098700", "Tax_Legal_": "SOLBERG ESTATE 1B-13 No.1 LT NORTHSIDE QTR", "Name": "BRADSHAW, KATHLEEN J. & DANIEL A.", "Address": "47 Johnston Rd", "City": "DORCHESTER", "State": "Massachusetts", "Zip": 2124, "Country": "United States", "Land_Value": 43100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.808230538, "SHAPE_Area": 1261.3205231899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357139.812200002372265, 257442.965799998492002 ], [ 357112.318499997258186, 257452.028799999505281 ], [ 357121.695699997246265, 257487.147100001573563 ], [ 357153.235399998724461, 257476.428399998694658 ], [ 357155.670500002801418, 257474.548500001430511 ], [ 357156.500200003385544, 257471.811099998652935 ], [ 357156.548799999058247, 257466.111900001764297 ], [ 357139.812200002372265, 257442.965799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301093800", "MAP": "D9-2273-T83", "PARCEL_NAM": "94-8", "ACRE": "0.52", "LONGITUDE": -64.9445706, "LATITUDE": 18.34673244, "OBJECTID_1": 9322, "PARCEL_NO_": "105301093800", "Tax_Legal_": "SOLBERG 94-8 LT. NORTHSIDE", "Name": "DOVER, KELVIN A", "Address": "PO Box 307743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90100, "Improved_V": 290300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.870063241, "SHAPE_Area": 1750.4157794 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357341.066600002348423, 257482.6097999997437 ], [ 357375.6841000020504, 257489.225900001823902 ], [ 357375.226700000464916, 257448.269999999552965 ], [ 357369.587899997830391, 257447.590599998831749 ], [ 357355.916500002145767, 257443.256799999624491 ], [ 357347.057899996638298, 257441.917700000107288 ], [ 357334.965000003576279, 257441.607700001448393 ], [ 357325.278399996459484, 257442.795000001788139 ], [ 357341.066600002348423, 257482.6097999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302081300", "MAP": "M.B.", "PARCEL_NAM": "79A", "ACRE": "2,215 sq ft", "LONGITUDE": -64.93271336, "LATITUDE": 18.34680937, "OBJECTID_1": 9776, "PARCEL_NO_": "105302081300", "Tax_Legal_": "AGNES FANCY 79 & 79A QUEENS QTR", "Name": "KETURAH DONOVAN SMITH LIVING TRUST", "Address": "PO Box 494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.199340895700004, "SHAPE_Area": 257.64130146100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358618.322700001299381, 257486.352400001138449 ], [ 358618.382500000298023, 257479.3429000005126 ], [ 358618.667300000786781, 257473.399599999189377 ], [ 358594.022100001573563, 257480.675799999386072 ], [ 358594.203400000929832, 257488.956900000572205 ], [ 358618.322700001299381, 257486.352400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302051800", "MAP": null, "PARCEL_NAM": "49A", "ACRE": null, "LONGITUDE": -64.93579543, "LATITUDE": 18.34685914, "OBJECTID_1": 9680, "PARCEL_NO_": "105302051800", "Tax_Legal_": "AGNES FANCY 49A QUEENS QUARTER", "Name": "DE FREITES, AUSSELITA (TRUSTEE)", "Address": "PO Box 993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21700, "Improved_V": 109800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.554883811899998, "SHAPE_Area": 285.52294780400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358278.757700003683567, 257496.194899998605251 ], [ 358293.364799998700619, 257485.337600000202656 ], [ 358285.404200002551079, 257473.240100000053644 ], [ 358268.36370000243187, 257485.76630000025034 ], [ 358278.757700003683567, 257496.194899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302070800", "MAP": null, "PARCEL_NAM": "52", "ACRE": null, "LONGITUDE": -64.93377685, "LATITUDE": 18.34675148, "OBJECTID_1": 9743, "PARCEL_NO_": "105302070800", "Tax_Legal_": "52 AGNES FANCY QUEENS QUARTER", "Name": "Broome, Leopold A. & Lillith A. Broome Malone", "Address": "PO Box 562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040562, "Country": "United States", "Land_Value": 32600, "Improved_V": 61000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.18700393899999, "SHAPE_Area": 602.10901643399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358505.660599999129772, 257459.421900000423193 ], [ 358481.462200000882149, 257460.27930000051856 ], [ 358484.574199996888638, 257473.603700000792742 ], [ 358490.097900003194809, 257487.792199999094009 ], [ 358494.858400002121925, 257496.90819999948144 ], [ 358501.323299996554852, 257495.272300001233816 ], [ 358505.660599999129772, 257459.421900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92249954, "LATITUDE": 18.34683464, "OBJECTID_1": 12479, "PARCEL_NO_": "105402020800", "Tax_Legal_": "HOSPITAL GROUND REM. 298 NEW QTR", "Name": "PETERSEN, ESTRAELDA", "Address": "PO Box 1213", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10600, "Improved_V": 83800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.282616191900004, "SHAPE_Area": 414.11516637199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359698.047499999403954, 257486.701799999922514 ], [ 359677.117499999701977, 257482.51969999819994 ], [ 359673.739399999380112, 257500.434999998658895 ], [ 359697.892800003290176, 257504.854600001126528 ], [ 359698.047499999403954, 257486.701799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92271066000001, "LATITUDE": 18.34676118, "OBJECTID_1": 12477, "PARCEL_NO_": "105402020600", "Tax_Legal_": "HOSPITAL GROUND 321 KINGS QTR", "Name": "CHINNERY, SYMRAT & JOSEPH L SIMMOMNDS", "Address": "PO Box 302002", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 171900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.654930025, "SHAPE_Area": 711.041673898 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359652.204499997198582, 257472.605500001460314 ], [ 359648.797700002789497, 257493.89809999987483 ], [ 359668.080799996852875, 257502.077500000596046 ], [ 359673.717799998819828, 257502.967999998480082 ], [ 359673.739399999380112, 257500.434999998658895 ], [ 359677.117499999701977, 257482.51969999819994 ], [ 359679.667700000107288, 257467.130800001323223 ], [ 359675.607400000095367, 257470.475000001490116 ], [ 359668.329000003635883, 257472.948600001633167 ], [ 359652.204499997198582, 257472.605500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92319353000001, "LATITUDE": 18.34672649, "OBJECTID_1": 12475, "PARCEL_NO_": "105402020400", "Tax_Legal_": "HOSPITAL GROUND 319\nNEW QUARTER", "Name": "LAKEVIEW LOAN SERVICING LLC", "Address": "4425 Pnce De Leon Blvd", "City": "Miami", "State": "Florida", "Zip": 33146, "Country": "United States", "Land_Value": 55500, "Improved_V": 306600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.581967081, "SHAPE_Area": 709.08258254199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359601.453599996864796, 257466.701699998229742 ], [ 359601.156900003552437, 257501.529699999839067 ], [ 359604.412699997425079, 257497.967799998819828 ], [ 359608.464100003242493, 257495.678899999707937 ], [ 359624.611900001764297, 257493.277899999171495 ], [ 359628.848399996757507, 257469.247999999672174 ], [ 359611.933899998664856, 257466.998599998652935 ], [ 359601.453599996864796, 257466.701699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302023100", "MAP": null, "PARCEL_NAM": "95", "ACRE": null, "LONGITUDE": -64.93734101, "LATITUDE": 18.34678361, "OBJECTID_1": 9618, "PARCEL_NO_": "105302023100", "Tax_Legal_": "AGNES FANCY 95 QUEENS QUARTER", "Name": "HARRIGAN, LEONORA", "Address": "BOX 4322", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9800, "Improved_V": 90600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.543270540499996, "SHAPE_Area": 181.780983179 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358126.57320000231266, 257470.462499998509884 ], [ 358118.556900002062321, 257464.908500000834465 ], [ 358109.570500001311302, 257478.556000001728535 ], [ 358116.760799996554852, 257486.425299998372793 ], [ 358124.109300002455711, 257475.719700001180172 ], [ 358126.57320000231266, 257470.462499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302021100", "MAP": null, "PARCEL_NAM": "18A-1&16-1", "ACRE": null, "LONGITUDE": -64.93646237, "LATITUDE": 18.34678602, "OBJECTID_1": 9597, "PARCEL_NO_": "105302021100", "Tax_Legal_": "AGNES FANCY 18A-1&16-1 CROWN PRINCE QTR", "Name": "FRETT, SR., LEONARD R.", "Address": "PO Box 10398", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.8161509639, "SHAPE_Area": 215.73818669799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358220.87219999730587, 257475.878400001674891 ], [ 358210.476499997079372, 257465.660799998790026 ], [ 358200.705399997532368, 257476.768800001591444 ], [ 358211.907499998807907, 257486.993000000715256 ], [ 358220.87219999730587, 257475.878400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302021200", "MAP": null, "PARCEL_NAM": "16", "ACRE": null, "LONGITUDE": -64.93626437, "LATITUDE": 18.34666851, "OBJECTID_1": 9598, "PARCEL_NO_": "105302021200", "Tax_Legal_": "AGNES FANCY 16 QUEENS QTR", "Name": "HENDRINGTON, IVAN", "Address": "PO Box 7333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42800, "Improved_V": 106100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.116542604, "SHAPE_Area": 981.88325104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358253.384700000286102, 257463.0304000005126 ], [ 358232.482500001788139, 257439.879299998283386 ], [ 358229.205099999904633, 257444.282600000500679 ], [ 358210.476499997079372, 257465.660799998790026 ], [ 358220.87219999730587, 257475.878400001674891 ], [ 358231.141500003635883, 257486.031800001859665 ], [ 358253.384700000286102, 257463.0304000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302052000", "MAP": null, "PARCEL_NAM": "50", "ACRE": null, "LONGITUDE": -64.93529267, "LATITUDE": 18.34665981, "OBJECTID_1": 9682, "PARCEL_NO_": "105302052000", "Tax_Legal_": "AGNES FANCY 5O QUEENS QUARTER", "Name": "MOLYNEAUX, SR., ADELBERT D.", "Address": "1527 Prindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.632242835, "SHAPE_Area": 885.50623370200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358347.48309999704361, 257474.592599999159575 ], [ 358350.95830000191927, 257445.278999999165535 ], [ 358317.841899998486042, 257451.763000000268221 ], [ 358320.939499996602535, 257466.776000000536442 ], [ 358325.606499999761581, 257486.868099998682737 ], [ 358332.107400000095367, 257481.01069999858737 ], [ 358347.48309999704361, 257474.592599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091800", "MAP": "D9-1657-T81", "PARCEL_NAM": "91-D", "ACRE": "0.135", "LONGITUDE": -64.94519017, "LATITUDE": 18.34674258, "OBJECTID_1": 9305, "PARCEL_NO_": "105301091800", "Tax_Legal_": "SOLBERG 91 LITTLE NORTHSIDE QTR", "Name": "HALL, SAMUEL H", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 103000, "Improved_V": 1034200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.94216820699999, "SHAPE_Area": 834.78148761 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357271.185400001704693, 257450.584899999201298 ], [ 357271.701999999582767, 257471.510899998247623 ], [ 357271.78490000218153, 257474.865499999374151 ], [ 357308.855499997735023, 257477.49100000038743 ], [ 357300.223399996757507, 257449.556000001728535 ], [ 357297.799099996685982, 257450.169399999082088 ], [ 357288.917099997401237, 257451.574400000274181 ], [ 357271.185400001704693, 257450.584899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92397707000001, "LATITUDE": 18.34674438, "OBJECTID_1": 12455, "PARCEL_NO_": "105402011000", "Tax_Legal_": "HOSPITAL GROUND 314 NEW QUARTER", "Name": "ALOMAL, JOSE LOUIS & OTHERS", "Address": "PO Box 305601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16600, "Improved_V": 77800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.421691907, "SHAPE_Area": 700.31838723400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359546.541599996387959, 257475.962600000202656 ], [ 359531.271999999880791, 257469.927000001072884 ], [ 359520.019599996507168, 257465.613000001758337 ], [ 359515.826200000941753, 257484.577100001275539 ], [ 359517.345399998128414, 257495.566399998962879 ], [ 359547.200499996542931, 257493.277699999511242 ], [ 359545.704700000584126, 257479.544300001114607 ], [ 359546.541599996387959, 257475.962600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094900", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-25", "ACRE": "0.279", "LONGITUDE": -64.94909419, "LATITUDE": 18.34665684, "OBJECTID_1": 9332, "PARCEL_NO_": "105301094900", "Tax_Legal_": "1B-25 SOLBERG NO 1 LITTLE NORTHISDE QTR.", "Name": "EVANS, LINDSAY Y", "Address": "PO Box 303396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.84383639699999, "SHAPE_Area": 1183.7907151100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356891.498499996960163, 257437.344799999147654 ], [ 356862.559399999678135, 257426.764400001615286 ], [ 356858.987099997699261, 257467.476199999451637 ], [ 356884.765699997544289, 257470.431400001049042 ], [ 356894.432499997317791, 257471.565999999642372 ], [ 356892.103399999439716, 257460.992300000041723 ], [ 356891.498499996960163, 257437.344799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92295723, "LATITUDE": 18.34673019, "OBJECTID_1": 12476, "PARCEL_NO_": "105402020500", "Tax_Legal_": "HOSPITAL GROUND 320 NEW QUARTER", "Name": "RICHARDS, C. & E. & HODGE, N", "Address": "PO Box 12017", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12100, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.012699037399997, "SHAPE_Area": 527.21741884100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359628.848399996757507, 257469.247999999672174 ], [ 359624.611900001764297, 257493.277899999171495 ], [ 359642.36150000244379, 257492.156700000166893 ], [ 359648.797700002789497, 257493.89809999987483 ], [ 359652.204499997198582, 257472.605500001460314 ], [ 359628.848399996757507, 257469.247999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302021500", "MAP": null, "PARCEL_NAM": "12A", "ACRE": null, "LONGITUDE": -64.93666996, "LATITUDE": 18.34673259, "OBJECTID_1": 9602, "PARCEL_NO_": "105302021500", "Tax_Legal_": "AGNES FANCY 12A QUEENS QTR", "Name": "RAYMO, CHRISTOPHINA", "Address": "PO Box 72", "City": "Bronx", "State": "New York", "Zip": 10459, "Country": "United States", "Land_Value": 9100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.2062573523, "SHAPE_Area": 275.65077780299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358202.388199999928474, 257468.549899999052286 ], [ 358187.129399999976158, 257461.247900001704693 ], [ 358174.982500001788139, 257467.270199999213219 ], [ 358190.988300003111362, 257481.544399999082088 ], [ 358202.388199999928474, 257468.549899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302022500", "MAP": null, "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.93703393, "LATITUDE": 18.34664953, "OBJECTID_1": 9612, "PARCEL_NO_": "105302022500", "Tax_Legal_": "AGNES FANCY 10 QUEENS QTR", "Name": "HARRIGAN ADINA-LIFE INTEREST", "Address": "PO Box 11352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62800, "Improved_V": 253200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.302909149, "SHAPE_Area": 660.31965731900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358152.57660000026226, 257447.032900001853704 ], [ 358145.373800002038479, 257440.641100000590086 ], [ 358134.70830000191927, 257462.085400000214577 ], [ 358153.906900003552437, 257480.185499999672174 ], [ 358167.779700003564358, 257460.878400001674891 ], [ 358152.57660000026226, 257447.032900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401092400", "MAP": "D9-4935-T90", "PARCEL_NAM": "303B-2", "ACRE": ".168", "LONGITUDE": -64.92901467, "LATITUDE": 18.34658276, "OBJECTID_1": 11582, "PARCEL_NO_": "105401092400", "Tax_Legal_": "HOSPITAL GROUND 303B-2 KINGS QUARTER", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.19623664, "SHAPE_Area": 778.10463771100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359020.213799998164177, 257448.856699999421835 ], [ 359001.648800000548363, 257451.026799999177456 ], [ 358992.905299998819828, 257436.178700000047684 ], [ 358993.623499996960163, 257446.528200000524521 ], [ 358983.944099999964237, 257446.871100001037121 ], [ 358988.443899996578693, 257486.593600001186132 ], [ 358993.36089999973774, 257477.34569999948144 ], [ 359010.377999998629093, 257467.5636 ], [ 359020.213799998164177, 257448.856699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094800", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-31", "ACRE": null, "LONGITUDE": -64.94938346000001, "LATITUDE": 18.34659256, "OBJECTID_1": 9331, "PARCEL_NO_": "105301094800", "Tax_Legal_": "SOLBERG 1B-31 NORTHSIDE QTR.", "Name": "AUBAIN, DEAN", "Address": "PO Box 307153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23400, "Improved_V": 273900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.832727629, "SHAPE_Area": 1347.3624218099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356862.559399999678135, 257426.764400001615286 ], [ 356835.22749999910593, 257416.830400001257658 ], [ 356829.358499996364117, 257443.169100001454353 ], [ 356829.180500000715256, 257464.065900001674891 ], [ 356858.987099997699261, 257467.476199999451637 ], [ 356862.559399999678135, 257426.764400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302110200", "MAP": null, "PARCEL_NAM": "AGNES FANCY PCL", "ACRE": null, "LONGITUDE": -64.9359659, "LATITUDE": 18.3463629, "OBJECTID_1": 9830, "PARCEL_NO_": "105302110200", "Tax_Legal_": "AGNES FANCY PCL GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 209500, "Improved_V": 78600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.49789586099999, "SHAPE_Area": 3744.6242231699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358299.530100002884865, 257449.514400001615286 ], [ 358279.601000003516674, 257397.199000000953674 ], [ 358264.232600003480911, 257389.476100001484156 ], [ 358249.945100001990795, 257391.725000001490116 ], [ 358247.431500002741814, 257395.296900000423193 ], [ 358235.789800003170967, 257409.319899998605251 ], [ 358223.222099997103214, 257425.856300000101328 ], [ 358243.33049999922514, 257445.832400001585484 ], [ 358259.20549999922514, 257465.146999999880791 ], [ 358268.862800002098083, 257475.333500001579523 ], [ 358276.535800002515316, 257469.115800000727177 ], [ 358285.002400003373623, 257462.501200001686811 ], [ 358299.530100002884865, 257449.514400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401120900", "MAP": "D9-6244-T97", "PARCEL_NAM": "8A", "ACRE": ".828", "LONGITUDE": -64.93200744000001, "LATITUDE": 18.34643977, "OBJECTID_1": 11651, "PARCEL_NO_": "105401120900", "Tax_Legal_": "8A CATHERINEBERG KINGS QUARTER", "Name": "CLEAR BLUE SKY INC", "Address": "PO Box 778", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 215600, "Improved_V": 340000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.47739301199999, "SHAPE_Area": 3859.9662734499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358635.715999998152256, 257432.410900000482798 ], [ 358656.271999999880791, 257480.497400000691414 ], [ 358728.317900002002716, 257447.734299998730421 ], [ 358708.535899996757507, 257403.45380000025034 ], [ 358672.912500001490116, 257420.260800000280142 ], [ 358652.691699996590614, 257427.483600001782179 ], [ 358635.715999998152256, 257432.410900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92227797, "LATITUDE": 18.34660921, "OBJECTID_1": 12490, "PARCEL_NO_": "105402030800", "Tax_Legal_": "HOSPITAL GROUND NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.06173101900001, "SHAPE_Area": 348.58626359200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359705.300700001418591, 257487.183400001376867 ], [ 359717.39360000193119, 257487.493400000035763 ], [ 359710.519799999892712, 257442.474199999123812 ], [ 359705.627899996936321, 257448.767000000923872 ], [ 359706.234700001776218, 257472.203400000929832 ], [ 359705.300700001418591, 257487.183400001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92149193, "LATITUDE": 18.34661397, "OBJECTID_1": 12632, "PARCEL_NO_": "105402094400", "Tax_Legal_": "ROSS C-53 NEW QTR", "Name": "RUBAINE, JARMEL A. & ANGELITTA M.", "Address": "5145 Silver Creek Dr", "City": "Houston", "State": "Texas", "Zip": 77017, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.30468962, "SHAPE_Area": 970.86439056100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359785.495999999344349, 257444.354400001466274 ], [ 359782.303099997341633, 257440.528599999845028 ], [ 359777.906599998474121, 257483.3445999994874 ], [ 359795.605899997055531, 257488.133600000292063 ], [ 359818.24379999935627, 257481.141699999570847 ], [ 359785.495999999344349, 257444.354400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9224849, "LATITUDE": 18.34668043, "OBJECTID_1": 12483, "PARCEL_NO_": "105402021200", "Tax_Legal_": "HOSPITAL GROUND 298A KINGS QUARTER", "Name": "SHULTERBRANDT, KENNETH JR. & K", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.365116119800007, "SHAPE_Area": 321.01039562800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359698.189499996602535, 257470.026599999517202 ], [ 359679.667700000107288, 257467.130800001323223 ], [ 359677.117499999701977, 257482.51969999819994 ], [ 359698.047499999403954, 257486.701799999922514 ], [ 359698.189499996602535, 257470.026599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097100", "MAP": "A9-372-T90", "PARCEL_NAM": "90C", "ACRE": "0.251", "LONGITUDE": -64.9462768, "LATITUDE": 18.34660339, "OBJECTID_1": 9354, "PARCEL_NO_": "105301097100", "Tax_Legal_": "SOLBERG 90C LT.NORTHSIDE QTR.", "Name": "JOHNSON, CURTIS M. & CURTIS", "Address": "P.O.BOX 4248", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.59428483600001, "SHAPE_Area": 1193.6636011200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357185.174300000071526, 257418.85020000115037 ], [ 357173.756399996578693, 257433.95549999922514 ], [ 357146.291500002145767, 257439.64130000025034 ], [ 357164.615500003099442, 257465.755800001323223 ], [ 357193.653499998152256, 257464.72690000012517 ], [ 357185.174300000071526, 257418.85020000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401170700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92768578, "LATITUDE": 18.34645878, "OBJECTID_1": 11725, "PARCEL_NO_": "105401170700", "Tax_Legal_": "HOSPITAL GROUND 2O4 NEW QUARTER", "Name": "PETERSEN, JOSE", "Address": "BOX 4685", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.46317006800001, "SHAPE_Area": 705.93493176100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359163.157700002193451, 257423.428899999707937 ], [ 359124.326999999582767, 257438.098700001835823 ], [ 359129.028200000524521, 257454.180300001055002 ], [ 359136.857600003480911, 257481.686500001698732 ], [ 359138.502599999308586, 257477.900299999862909 ], [ 359144.382299996912479, 257450.295200001448393 ], [ 359146.860600002110004, 257443.349399998784065 ], [ 359155.841499999165535, 257430.335099998861551 ], [ 359163.157700002193451, 257423.428899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302052100", "MAP": null, "PARCEL_NAM": "51", "ACRE": null, "LONGITUDE": -64.93493163, "LATITUDE": 18.3465368, "OBJECTID_1": 9683, "PARCEL_NO_": "105302052100", "Tax_Legal_": "AGNES FANCY 51 QUEENS QUARTER", "Name": "L Ammons,M Lewis,M Lewis,R Lewis,W Lewis, B Blake", "Address": "PO Box 305957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.230143951, "SHAPE_Area": 1098.17902544 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358350.95830000191927, 257445.278999999165535 ], [ 358347.48309999704361, 257474.592599999159575 ], [ 358364.476800002157688, 257467.554499998688698 ], [ 358377.451499998569489, 257459.005899999290705 ], [ 358390.446000002324581, 257448.135400000959635 ], [ 358414.840400002896786, 257424.270300000905991 ], [ 358398.669200003147125, 257429.415300000458956 ], [ 358377.613300003111362, 257440.008799999952316 ], [ 358350.95830000191927, 257445.278999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302070500", "MAP": "A3-66-T46", "PARCEL_NAM": "38", "ACRE": null, "LONGITUDE": -64.93430662, "LATITUDE": 18.34650616, "OBJECTID_1": 9740, "PARCEL_NO_": "105302070500", "Tax_Legal_": "AGNES FANCY 38 QUEENS QUARTER", "Name": "GRIFFITH, GERMANIE L", "Address": "PO Box 7391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010391, "Country": "United States", "Land_Value": 32500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.999239557, "SHAPE_Area": 646.53188585099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358439.814499996602535, 257427.00789999961853 ], [ 358424.196000002324581, 257461.921599999070168 ], [ 358423.36089999973774, 257465.292199999094009 ], [ 358423.276399999856949, 257475.212900001555681 ], [ 358453.386900000274181, 257442.9510000012815 ], [ 358455.901199996471405, 257431.783599998801947 ], [ 358439.814499996602535, 257427.00789999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302023200", "MAP": null, "PARCEL_NAM": "114", "ACRE": null, "LONGITUDE": -64.93721428000001, "LATITUDE": 18.34657924, "OBJECTID_1": 9621, "PARCEL_NO_": "105302023200", "Tax_Legal_": "AGNES FANCY 114 QUEENS QUARTER", "Name": "HARRIGAN, ERIC", "Address": "BOX 4322", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4800, "Improved_V": 307800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.895285368299994, "SHAPE_Area": 271.819841876 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358118.556900002062321, 257464.908500000834465 ], [ 358126.57320000231266, 257470.462499998509884 ], [ 358127.399300001561642, 257468.147300001233816 ], [ 358131.501000002026558, 257459.94819999858737 ], [ 358137.235100001096725, 257449.440400000661612 ], [ 358145.398900002241135, 257437.686000000685453 ], [ 358140.593400001525879, 257433.846999999135733 ], [ 358118.556900002062321, 257464.908500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302051900", "MAP": null, "PARCEL_NAM": "49B", "ACRE": null, "LONGITUDE": -64.93549928, "LATITUDE": 18.34664498, "OBJECTID_1": 9681, "PARCEL_NO_": "105302051900", "Tax_Legal_": "AGNES FANCY 49B QUEENS QTR", "Name": "ALLEN, ALICIA", "Address": "P.O. BOX 2756", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16100, "Improved_V": 33100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.200317437000002, "SHAPE_Area": 213.35572108400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358304.086000002920628, 257457.349899999797344 ], [ 358308.803400002419949, 257471.531800001859665 ], [ 358320.939499996602535, 257466.776000000536442 ], [ 358317.841899998486042, 257451.763000000268221 ], [ 358309.755400002002716, 257454.440999999642372 ], [ 358304.086000002920628, 257457.349899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096800", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-12", "ACRE": "0.292", "LONGITUDE": -64.94690876, "LATITUDE": 18.34654386, "OBJECTID_1": 9351, "PARCEL_NO_": "105301096800", "Tax_Legal_": "SOLBERG 1B-12 No.1 LT. NORTHSIDE", "Name": "JOSEPH, ANDRE JEAN", "Address": "PO Box 302584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.49462326099999, "SHAPE_Area": 1374.67803987 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357120.647699996829033, 257420.855200000107288 ], [ 357076.142300002276897, 257439.067200001329184 ], [ 357085.636399999260902, 257460.465300001204014 ], [ 357112.318499997258186, 257452.028799999505281 ], [ 357139.812200002372265, 257442.965799998492002 ], [ 357123.876599997282028, 257420.459399998188019 ], [ 357122.267499998211861, 257420.024099998176098 ], [ 357120.647699996829033, 257420.855200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402040100", "MAP": "D9-8379-T009", "PARCEL_NAM": "330-A", "ACRE": ".25", "LONGITUDE": -64.92351956, "LATITUDE": 18.34648445, "OBJECTID_1": 12491, "PARCEL_NO_": "105402040100", "Tax_Legal_": "HOSPITAL GROUND 330A & 331A NEW QUARTER", "Name": "SAMUELS, HARRY & IVYNA", "Address": "PO Box 8432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98000, "Improved_V": 356100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.63755344, "SHAPE_Area": 1098.4325760300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359596.12950000166893, 257429.083500001579523 ], [ 359576.691699996590614, 257439.05689999833703 ], [ 359565.297200001776218, 257451.418099999427795 ], [ 359562.039599999785423, 257455.191199999302626 ], [ 359554.606600001454353, 257475.817499998956919 ], [ 359554.58500000089407, 257478.350400000810623 ], [ 359556.989500001072884, 257480.058899998664856 ], [ 359559.410300001502037, 257479.867600001394749 ], [ 359562.664300002157688, 257476.516699999570847 ], [ 359573.211099997162819, 257469.003699999302626 ], [ 359584.549800001084805, 257463.185899998992682 ], [ 359595.058799996972084, 257460.105500001460314 ], [ 359600.704800002276897, 257459.940600000321865 ], [ 359596.12950000166893, 257429.083500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302081200", "MAP": "M.B.", "PARCEL_NAM": "76", "ACRE": "6,840 sq ft", "LONGITUDE": -64.93271168, "LATITUDE": 18.34663156, "OBJECTID_1": 9775, "PARCEL_NO_": "105302081200", "Tax_Legal_": "AGNES FANCY 76 QUEENS QTR", "Name": "SMITH, K.& DONOVAN,R.,C.,C.&J. &J. WALKER & J. TURNBULL", "Address": "PO Box 494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34800, "Improved_V": 30800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.418283175, "SHAPE_Area": 707.96632615700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358619.363200001418591, 257458.874899998307228 ], [ 358620.342100001871586, 257438.617899999022484 ], [ 358602.473800003528595, 257453.670400001108646 ], [ 358593.924800001084805, 257456.004999998956919 ], [ 358593.795699998736382, 257470.336199998855591 ], [ 358593.810500003397465, 257471.010499998927116 ], [ 358594.022100001573563, 257480.675799999386072 ], [ 358618.667300000786781, 257473.399599999189377 ], [ 358619.363200001418591, 257458.874899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302021600", "MAP": null, "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.93668692, "LATITUDE": 18.34660735, "OBJECTID_1": 9603, "PARCEL_NO_": "105302021600", "Tax_Legal_": "AGNES FANCY 12 QUEENS QUARTER", "Name": "SYLVIA TURNBULL & OTHERS", "Address": "PO Box 6473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31900, "Improved_V": 26400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.71747381599999, "SHAPE_Area": 537.51486963699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358175.101199999451637, 257453.338899999856949 ], [ 358173.468800000846386, 257455.647599998861551 ], [ 358167.779700003564358, 257460.878400001674891 ], [ 358174.982500001788139, 257467.270199999213219 ], [ 358187.129399999976158, 257461.247900001704693 ], [ 358202.388199999928474, 257468.549899999052286 ], [ 358207.272799998521805, 257463.101500000804663 ], [ 358200.082500003278255, 257455.232200000435114 ], [ 358185.70380000025034, 257439.282499998807907 ], [ 358175.101199999451637, 257453.338899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302033100", "MAP": "D9-5326-T92", "PARCEL_NAM": "5-1", "ACRE": ".14", "LONGITUDE": -64.93885118, "LATITUDE": 18.34645554, "OBJECTID_1": 9650, "PARCEL_NO_": "105302033100", "Tax_Legal_": "STAABI 5-1 & 9", "Name": "WOODS, JOHN P. & JANETTE P", "Address": "PO Box 306777", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.18702386800001, "SHAPE_Area": 934.95038053899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357974.225100003182888, 257463.938299998641014 ], [ 357965.659599997103214, 257428.193399999290705 ], [ 357953.757299996912479, 257405.50899999961257 ], [ 357946.451899997889996, 257411.148699998855591 ], [ 357944.828500002622604, 257412.401999998837709 ], [ 357947.877499997615814, 257433.114100001752377 ], [ 357951.792199999094009, 257446.867199998348951 ], [ 357957.353699997067451, 257456.622999999672174 ], [ 357958.077299997210503, 257466.339299999177456 ], [ 357974.225100003182888, 257463.938299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302033100", "MAP": "D9-5326-T92", "PARCEL_NAM": "9", "ACRE": ".13", "LONGITUDE": -64.93874312, "LATITUDE": 18.34636184, "OBJECTID_1": 9650, "PARCEL_NO_": "105302033100", "Tax_Legal_": "STAABI 5-1 & 9", "Name": "WOODS, JOHN P. & JANETTE P", "Address": "PO Box 306777", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.63508970699999, "SHAPE_Area": 706.35959477599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357962.680699996650219, 257399.249200001358986 ], [ 357953.757299996912479, 257405.50899999961257 ], [ 357965.659599997103214, 257428.193399999290705 ], [ 357974.225100003182888, 257463.938299998641014 ], [ 357982.498599998652935, 257439.308100000023842 ], [ 357977.023500002920628, 257419.420499999076128 ], [ 357962.680699996650219, 257399.249200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401092200", "MAP": "D9-4247-T88", "PARCEL_NAM": "303C", "ACRE": ".4403", "LONGITUDE": -64.92842441000001, "LATITUDE": 18.34644724, "OBJECTID_1": 11580, "PARCEL_NO_": "105401092200", "Tax_Legal_": "HOSPITAL GROUND 303C KINGS QTR.", "Name": "HOWARD, KENNETH", "Address": "PO Box 10601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13200, "Improved_V": 71400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.13884909500001, "SHAPE_Area": 2433.2892612300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359082.533600002527237, 257421.924600001424551 ], [ 359077.008100003004074, 257407.947200000286102 ], [ 359073.064699999988079, 257397.571400001645088 ], [ 359069.828599996864796, 257398.811500001698732 ], [ 359069.002499997615814, 257401.1266999989748 ], [ 359076.034599997103214, 257427.570999998599291 ], [ 359071.193099997937679, 257427.953499998897314 ], [ 359036.4983000010252, 257430.413800001144409 ], [ 359023.244800001382828, 257471.679699998348951 ], [ 359096.727200001478195, 257459.615499999374151 ], [ 359091.205300003290176, 257445.215900000184774 ], [ 359082.533600002527237, 257421.924600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92387776, "LATITUDE": 18.34660844, "OBJECTID_1": 12457, "PARCEL_NO_": "105402011200", "Tax_Legal_": "313C HOSPITAL GROUND KINGS QTR", "Name": "KEVIN ULYSSES BENJAMIN & OTHERS", "Address": "PO Box 560152", "City": "MIAMI", "State": "Florida", "Zip": 33256, "Country": "United States", "Land_Value": 2500, "Improved_V": 77600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.366305800500001, "SHAPE_Area": 186.973806228 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359550.668499998748302, 257464.808400001376867 ], [ 359536.199799999594688, 257459.412599999457598 ], [ 359531.271999999880791, 257469.927000001072884 ], [ 359546.541599996387959, 257475.962600000202656 ], [ 359550.668499998748302, 257464.808400001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302021700", "MAP": null, "PARCEL_NAM": "11C", "ACRE": null, "LONGITUDE": -64.93648928, "LATITUDE": 18.3465891, "OBJECTID_1": 9604, "PARCEL_NO_": "105302021700", "Tax_Legal_": "11C AGNES FANCY QUEENS QTR", "Name": "DWIGHT B FERGUSON LIVING REVOCABLE TRUST", "Address": "7457 Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5600, "Improved_V": 89200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.735669004000002, "SHAPE_Area": 133.357959967 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358216.22860000282526, 257453.042300000786781 ], [ 358209.835600003600121, 257446.234999999403954 ], [ 358200.082500003278255, 257455.232200000435114 ], [ 358207.272799998521805, 257463.101500000804663 ], [ 358216.22860000282526, 257453.042300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302022400", "MAP": null, "PARCEL_NAM": "9B", "ACRE": null, "LONGITUDE": -64.93690366, "LATITUDE": 18.34656278, "OBJECTID_1": 9611, "PARCEL_NO_": "105302022400", "Tax_Legal_": "AGNES FANCY 9B QUEENS QTR", "Name": "DE WINDT, ROY ALFRED-LIFE TIME", "Address": "2210 Hodges St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9000, "Improved_V": 27400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.132255941700002, "SHAPE_Area": 180.250078113 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358173.468800000846386, 257455.647599998861551 ], [ 358167.122599996626377, 257443.352200001478195 ], [ 358152.57660000026226, 257447.032900001853704 ], [ 358167.779700003564358, 257460.878400001674891 ], [ 358173.468800000846386, 257455.647599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92400681, "LATITUDE": 18.34656062, "OBJECTID_1": 12456, "PARCEL_NO_": "105402011100", "Tax_Legal_": "HOSPITAL GROUND 313B KINGS QTR", "Name": "VANBEVERHOUDT, JUTTA", "Address": "3080 NW 20th St", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33311, "Country": "United States", "Land_Value": 2100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.650440894600003, "SHAPE_Area": 152.250826932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359533.788099996745586, 257458.548500001430511 ], [ 359522.533900000154972, 257454.445599999278784 ], [ 359520.019599996507168, 257465.613000001758337 ], [ 359531.271999999880791, 257469.927000001072884 ], [ 359536.199799999594688, 257459.412599999457598 ], [ 359533.788099996745586, 257458.548500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096300", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-10", "ACRE": "0.327", "LONGITUDE": -64.94751469000001, "LATITUDE": 18.34646616, "OBJECTID_1": 9346, "PARCEL_NO_": "105301096300", "Tax_Legal_": "SOLBERG 1B-10 LT.NORTHSIDE QTR.", "Name": "HENDRICKSON, CHARLES L.", "Address": "PO Box 307295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.78583673, "SHAPE_Area": 1460.29771792 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357004.292400002479553, 257448.822700001299381 ], [ 357023.670800000429153, 257445.814899999648333 ], [ 357024.122599996626377, 257445.756099998950958 ], [ 357051.117799997329712, 257442.239799998700619 ], [ 357060.546899996697903, 257441.044399999082088 ], [ 357076.142300002276897, 257439.067200001329184 ], [ 357064.276000000536442, 257412.161100000143051 ], [ 357024.685699999332428, 257421.336300000548363 ], [ 357004.292400002479553, 257448.822700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301082700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94290341, "LATITUDE": 18.34596545, "OBJECTID_1": 9277, "PARCEL_NO_": "105301082700", "Tax_Legal_": "SOLBERG 2 LITTLE NORTHSIDE QTR", "Name": "BOUGH, JAMES A", "Address": "PO Box 6096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046096, "Country": "United States", "Land_Value": 343700, "Improved_V": 163000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 460.10760718099999, "SHAPE_Area": 13510.4281852 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357479.814599998295307, 257381.787200000137091 ], [ 357499.837300002574921, 257443.425299998372793 ], [ 357521.210600003600121, 257444.609700001776218 ], [ 357550.923000000417233, 257445.967700000852346 ], [ 357598.618400000035763, 257445.0320999994874 ], [ 357597.102899998426437, 257433.620700001716614 ], [ 357596.5320999994874, 257405.962699998170137 ], [ 357597.415700003504753, 257396.892900001257658 ], [ 357595.07769999653101, 257387.374600000679493 ], [ 357590.328000001609325, 257376.99210000038147 ], [ 357586.344899997115135, 257371.260000001639128 ], [ 357519.992799997329712, 257303.589200001209974 ], [ 357512.784599997103214, 257297.830699998885393 ], [ 357503.95830000191927, 257292.692200001329184 ], [ 357497.495200000703335, 257294.116999998688698 ], [ 357479.599899999797344, 257312.33559999987483 ], [ 357472.237000003457069, 257324.729899998754263 ], [ 357468.907399997115135, 257336.946100000292063 ], [ 357470.367200002074242, 257354.901000000536442 ], [ 357479.814599998295307, 257381.787200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302070700", "MAP": null, "PARCEL_NAM": "115", "ACRE": null, "LONGITUDE": -64.93379669, "LATITUDE": 18.34640197, "OBJECTID_1": 9742, "PARCEL_NO_": "105302070700", "Tax_Legal_": "115 AGNES FANCY QUEENS QUARTER", "Name": "Broome, Leopold A. & Lillith A. Broome Malone", "Address": "PO Box 11", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040011, "Country": "United States", "Land_Value": 27700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.368021817, "SHAPE_Area": 1044.5603950300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358481.462200000882149, 257460.27930000051856 ], [ 358505.660599999129772, 257459.421900000423193 ], [ 358505.712700001895428, 257453.300599999725819 ], [ 358500.36879999935627, 257418.004299998283386 ], [ 358497.273000001907349, 257402.780200000852346 ], [ 358495.692800000309944, 257398.967599999159575 ], [ 358489.992899999022484, 257405.464800000190735 ], [ 358481.674400001764297, 257435.372000001370907 ], [ 358480.700800001621246, 257454.995799999684095 ], [ 358481.462200000882149, 257460.27930000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92245399, "LATITUDE": 18.34655822, "OBJECTID_1": 12480, "PARCEL_NO_": "105402020900", "Tax_Legal_": "HOSPITAL GORUND 337 GREAT NORTHSIDE QTR", "Name": "SHULTERBRANDT, JR. , KENNETH & KO", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3700, "Improved_V": 111500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.901478772200001, "SHAPE_Area": 166.037899092 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359679.667700000107288, 257467.130800001323223 ], [ 359698.189499996602535, 257470.026599999517202 ], [ 359698.290200002491474, 257458.206199999898672 ], [ 359696.702799998223782, 257455.237900000065565 ], [ 359694.291000001132488, 257454.373700000345707 ], [ 359679.667700000107288, 257467.130800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302022300", "MAP": null, "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.93695237, "LATITUDE": 18.34644973, "OBJECTID_1": 9610, "PARCEL_NO_": "105302022300", "Tax_Legal_": "AGNES FANCY 9 QUEENS QTR", "Name": "DEWINDT, FRANKLIN & VIVIAN", "Address": "PO Box 502582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 38200, "Improved_V": 53000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.179558230799998, "SHAPE_Area": 329.77612591000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358175.101199999451637, 257453.338899999856949 ], [ 358160.839299999177456, 257423.669100001454353 ], [ 358145.373800002038479, 257440.641100000590086 ], [ 358152.57660000026226, 257447.032900001853704 ], [ 358167.122599996626377, 257443.352200001478195 ], [ 358173.468800000846386, 257455.647599998861551 ], [ 358175.101199999451637, 257453.338899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302022000", "MAP": null, "PARCEL_NAM": "11", "ACRE": null, "LONGITUDE": -64.9365618, "LATITUDE": 18.34643381, "OBJECTID_1": 9607, "PARCEL_NO_": "105302022000", "Tax_Legal_": "11 AGNES FANCY QUEENS QUARTER", "Name": "HYNDMAN, MARILYN", "Address": "PO Box 771251", "City": "Ocala", "State": "Florida", "Zip": 34477, "Country": "United States", "Land_Value": 19400, "Improved_V": 63800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.256521554299994, "SHAPE_Area": 500.57000536599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358209.835600003600121, 257446.234999999403954 ], [ 358205.035499997437, 257441.762699998915195 ], [ 358214.828100003302097, 257428.121800001710653 ], [ 358204.637599997222424, 257419.921500001102686 ], [ 358193.838799998164177, 257430.905299998819828 ], [ 358185.70380000025034, 257439.282499998807907 ], [ 358200.082500003278255, 257455.232200000435114 ], [ 358209.835600003600121, 257446.234999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92277386000001, "LATITUDE": 18.34638472, "OBJECTID_1": 12495, "PARCEL_NO_": "105402040400", "Tax_Legal_": "HOSPITAL GROUND 333 NEW QUARTER", "Name": "LINDQUIST, ENA C.", "Address": "PO Box 7364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24500, "Improved_V": 78000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.03789362099999, "SHAPE_Area": 1132.0484242099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359648.620700001716614, 257420.013900000602007 ], [ 359643.791799999773502, 257418.9189000017941 ], [ 359646.630500003695488, 257464.327199999243021 ], [ 359654.682800002396107, 257465.659699998795986 ], [ 359666.77929999679327, 257465.547600001096725 ], [ 359672.445100001990795, 257463.060899998992682 ], [ 359674.874799996614456, 257461.8141999989748 ], [ 359667.142499998211861, 257422.909699998795986 ], [ 359648.620700001716614, 257420.013900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302022200", "MAP": null, "PARCEL_NAM": "9A", "ACRE": null, "LONGITUDE": -64.93682425, "LATITUDE": 18.34641742, "OBJECTID_1": 9609, "PARCEL_NO_": "105302022200", "Tax_Legal_": "AGNES FANCY 9A QUEENS QTR", "Name": "BURT, CANDIDA", "Address": "PO Box 308082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8038082, "Country": "United States", "Land_Value": 12700, "Improved_V": 49100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.877558417499998, "SHAPE_Area": 369.09587270200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358177.714400000870228, 257430.562199998646975 ], [ 358166.530299998819828, 257418.227299999445677 ], [ 358160.839299999177456, 257423.669100001454353 ], [ 358175.101199999451637, 257453.338899999856949 ], [ 358185.70380000025034, 257439.282499998807907 ], [ 358177.714400000870228, 257430.562199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302021800", "MAP": null, "PARCEL_NAM": "11A & 11CA", "ACRE": null, "LONGITUDE": -64.9363958, "LATITUDE": 18.34648766, "OBJECTID_1": 9605, "PARCEL_NO_": "105302021800", "Tax_Legal_": "AGNES FANCY 11A & 11CA QUEENS QTR", "Name": "BLYDEN, AUSTIN", "Address": "PO Box 1645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7300, "Improved_V": 26800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.909277522700002, "SHAPE_Area": 158.03795553099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358219.620999999344349, 257433.438299998641014 ], [ 358209.835600003600121, 257446.234999999403954 ], [ 358216.22860000282526, 257453.042300000786781 ], [ 358226.811300002038479, 257441.307599999010563 ], [ 358219.620999999344349, 257433.438299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92300122, "LATITUDE": 18.3463484, "OBJECTID_1": 12494, "PARCEL_NO_": "105402040300", "Tax_Legal_": "HOSPITAL GROUND 332 KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.24969632899999, "SHAPE_Area": 1017.41560972 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359634.940399996936321, 257416.735500000417233 ], [ 359622.066299997270107, 257413.463700000196695 ], [ 359624.080700002610683, 257460.976300001144409 ], [ 359646.630500003695488, 257464.327199999243021 ], [ 359643.791799999773502, 257418.9189000017941 ], [ 359634.940399996936321, 257416.735500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401170600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92797674000001, "LATITUDE": 18.34648155, "OBJECTID_1": 11724, "PARCEL_NO_": "105401170600", "Tax_Legal_": "HOSPITAL GROUND 2O3 NEW QUARTER", "Name": "PETERSEN, ETHEL", "Address": "BOX 4685", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.845645812000001, "SHAPE_Area": 432.07074592499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359120.275700002908707, 257440.387600000947714 ], [ 359091.205300003290176, 257445.215900000184774 ], [ 359096.727200001478195, 257459.615499999374151 ], [ 359124.183100000023842, 257454.984999999403954 ], [ 359120.275700002908707, 257440.387600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92383826, "LATITUDE": 18.34648888, "OBJECTID_1": 12459, "PARCEL_NO_": "105402011400", "Tax_Legal_": "HOSPITAL GROUND 313 KINGS QTR", "Name": "PONDER, ETTALY M.", "Address": "8408 Candlewood Cove Trl", "City": "Jacksonville", "State": "Florida", "Zip": 32244, "Country": "United States", "Land_Value": 5400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.348441839400003, "SHAPE_Area": 196.75892278399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359555.617899999022484, 257451.761100001633167 ], [ 359540.3429000005126, 257446.358800001442432 ], [ 359534.610600002110004, 257456.6554000005126 ], [ 359551.494599997997284, 257462.493099998682737 ], [ 359555.617899999022484, 257451.761100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301082100", "MAP": "A9-141-T70", "PARCEL_NAM": "79-35", "ACRE": "0.493", "LONGITUDE": -64.94383789, "LATITUDE": 18.34636174, "OBJECTID_1": 9271, "PARCEL_NO_": "105301082100", "Tax_Legal_": "SOLBERG 79-35 LITTLE NORTHSIDE QTR", "Name": "NOLA D. CHARLES TRUST", "Address": "PO Box 10934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41600, "Improved_V": 280500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.65647109899999, "SHAPE_Area": 1944.87053698 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357463.170500002801418, 257442.445900000631809 ], [ 357462.409100003540516, 257437.162300001829863 ], [ 357457.650399997830391, 257427.835299998521805 ], [ 357446.511200003325939, 257410.223299998790026 ], [ 357440.965899996459484, 257398.567800000309944 ], [ 357409.519799999892712, 257398.310400001704693 ], [ 357409.939499996602535, 257443.699000000953674 ], [ 357422.514799997210503, 257443.9847999997437 ], [ 357463.170500002801418, 257442.445900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302110300", "MAP": null, "PARCEL_NAM": "22", "ACRE": null, "LONGITUDE": -64.93560173, "LATITUDE": 18.34630537, "OBJECTID_1": 9831, "PARCEL_NO_": "105302110300", "Tax_Legal_": "AGNES FANCY 22 QUEENS QUARTER", "Name": "COLBOURNE, DAVID A", "Address": "Ross Taarenberg Bldg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.727733112, "SHAPE_Area": 669.98418789200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358318.206000000238419, 257441.670499999076128 ], [ 358304.512199997901917, 257407.324299998581409 ], [ 358302.100500002503395, 257406.460099998861551 ], [ 358285.218299999833107, 257400.411299999803305 ], [ 358303.072300001978874, 257446.411699999123812 ], [ 358306.433700002729893, 257444.774099998176098 ], [ 358318.206000000238419, 257441.670499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301082000", "MAP": "A9-141-T70", "PARCEL_NAM": "79-36", "ACRE": "0.378", "LONGITUDE": -64.9442497, "LATITUDE": 18.34631145, "OBJECTID_1": 9270, "PARCEL_NO_": "105301082000", "Tax_Legal_": "SOLBERG 79-36 LT.NORTHSIDE QTR", "Name": "MEYERS, LESLIE A. & MERIAD", "Address": "PO Box 303897", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124100, "Improved_V": 249200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.392330405, "SHAPE_Area": 1941.9838235699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357409.519799999892712, 257398.310400001704693 ], [ 357362.811200000345707, 257391.173099998384714 ], [ 357371.281400002539158, 257438.105200000107288 ], [ 357409.939499996602535, 257443.699000000953674 ], [ 357409.519799999892712, 257398.310400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301081700", "MAP": "A9-141-T70", "PARCEL_NAM": "79-39", "ACRE": "0.335", "LONGITUDE": -64.94517303000001, "LATITUDE": 18.34634335, "OBJECTID_1": 9267, "PARCEL_NO_": "105301081700", "Tax_Legal_": "SOLBERG 79-39 LITTLE NORTHSIDE", "Name": "RICHARDS, EVERETTE R", "Address": "PO Box 306742", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72700, "Improved_V": 333800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.05420231799999, "SHAPE_Area": 1397.06272786 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357303.536799997091293, 257439.239500001072884 ], [ 357308.764899998903275, 257393.475000001490116 ], [ 357300.694499999284744, 257394.253299999982119 ], [ 357292.647600002586842, 257392.287599999457598 ], [ 357290.243100002408028, 257390.579199999570847 ], [ 357277.934399999678135, 257415.598600000143051 ], [ 357265.631099998950958, 257439.984700001776218 ], [ 357280.93129999935627, 257442.432000000029802 ], [ 357294.64580000191927, 257441.69990000128746 ], [ 357303.536799997091293, 257439.239500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92251844, "LATITUDE": 18.34633063, "OBJECTID_1": 12496, "PARCEL_NO_": "105402040500", "Tax_Legal_": "HOSPITAL GROUND 334 NEW QUARTER", "Name": "GUMBS, KATHLEEN MOSES", "Address": "PO Box 1034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041034, "Country": "United States", "Land_Value": 19400, "Improved_V": 69000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.20147148699999, "SHAPE_Area": 866.52685623699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359682.444499999284744, 257425.145899999886751 ], [ 359667.142499998211861, 257422.909699998795986 ], [ 359674.874799996614456, 257461.8141999989748 ], [ 359685.443199999630451, 257451.768199998885393 ], [ 359702.474600002169609, 257440.297499999403954 ], [ 359708.979099996387959, 257434.017900001257658 ], [ 359707.413199998438358, 257428.516600001603365 ], [ 359688.887800000607967, 257426.043000001460314 ], [ 359682.444499999284744, 257425.145899999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92322499, "LATITUDE": 18.34626273, "OBJECTID_1": 12493, "PARCEL_NO_": "105402040200", "Tax_Legal_": "HOSPITAL GROUND 331 KINGS QTR", "Name": "RHYMER, EXCELMAN D", "Address": "PO Box 10378", "City": "Largo", "State": "Florida", "Zip": 33773, "Country": "United States", "Land_Value": 31700, "Improved_V": 80500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.403947483, "SHAPE_Area": 1066.0075855099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359622.066299997270107, 257413.463700000196695 ], [ 359608.391400001943111, 257409.552099999040365 ], [ 359593.107400000095367, 257405.205200001597404 ], [ 359596.12950000166893, 257429.083500001579523 ], [ 359604.856899999082088, 257445.831300001591444 ], [ 359610.486699998378754, 257447.566100001335144 ], [ 359617.657200001180172, 257457.75730000063777 ], [ 359614.417499996721745, 257459.41950000077486 ], [ 359624.080700002610683, 257460.976300001144409 ], [ 359622.066299997270107, 257413.463700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096900", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-11", "ACRE": "0.252", "LONGITUDE": -64.94706697, "LATITUDE": 18.34635498, "OBJECTID_1": 9352, "PARCEL_NO_": "105301096900", "Tax_Legal_": "SOLBERG 1B-11 LT. NORTHSIDE QTR.", "Name": "CALLWOOD, WAYNE D", "Address": "P.O. BOX 4126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 349300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.91942798900001, "SHAPE_Area": 1133.3269276200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357104.672499999403954, 257402.992600001394749 ], [ 357064.276000000536442, 257412.161100000143051 ], [ 357076.142300002276897, 257439.067200001329184 ], [ 357120.647699996829033, 257420.855200000107288 ], [ 357115.048500001430511, 257415.532000001519918 ], [ 357104.672499999403954, 257402.992600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097000", "MAP": "A9-372-T90", "PARCEL_NAM": "90B", "ACRE": "0.29", "LONGITUDE": -64.94638884, "LATITUDE": 18.34637466, "OBJECTID_1": 9353, "PARCEL_NO_": "105301097000", "Tax_Legal_": "90B SOLBERG NO.1 LITTLE NORTHSIDE QTR.", "Name": "KRASS LLC", "Address": "3105 Lake Vista Cir", "City": "Tyler", "State": "Texas", "Zip": 75707, "Country": "United States", "Land_Value": 44500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.85821588300001, "SHAPE_Area": 1088.2231909499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357180.485699996352196, 257401.291000001132488 ], [ 357134.342399999499321, 257422.444899998605251 ], [ 357146.291500002145767, 257439.64130000025034 ], [ 357173.756399996578693, 257433.95549999922514 ], [ 357185.174300000071526, 257418.85020000115037 ], [ 357180.485699996352196, 257401.291000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402040100", "MAP": "D9-8379-T009", "PARCEL_NAM": "331-A", "ACRE": ".04", "LONGITUDE": -64.923272, "LATITUDE": 18.34644974, "OBJECTID_1": 12491, "PARCEL_NO_": "105402040100", "Tax_Legal_": "HOSPITAL GROUND 330A & 331A NEW QUARTER", "Name": "SAMUELS, HARRY & IVYNA", "Address": "PO Box 8432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 98000, "Improved_V": 356100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.795659540900004, "SHAPE_Area": 244.418669534 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359600.704800002276897, 257459.940600000321865 ], [ 359614.417499996721745, 257459.41950000077486 ], [ 359617.657200001180172, 257457.75730000063777 ], [ 359610.486699998378754, 257447.566100001335144 ], [ 359604.856899999082088, 257445.831300001591444 ], [ 359596.12950000166893, 257429.083500001579523 ], [ 359600.704800002276897, 257459.940600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091000", "MAP": "A9-141-T70", "PARCEL_NAM": "79-4", "ACRE": "0.263", "LONGITUDE": -64.94916063, "LATITUDE": 18.34632432, "OBJECTID_1": 9299, "PARCEL_NO_": "105301091000", "Tax_Legal_": "SOLBERG 65 LITTLE NORTHSIDE QTR", "Name": "BRYANT, BERNADETTE,YVETTE COLGUHOUN & STEPHANIE SIMEON", "Address": "222-21 141st", "City": "Springfield Gardens", "State": "New York", "Zip": 11413, "Country": "United States", "Land_Value": 72700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.1618085, "SHAPE_Area": 1495.4391113199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356894.233900003135204, 257400.214800000190735 ], [ 356870.877899996936321, 257396.857200000435114 ], [ 356847.433700002729893, 257403.842500001192093 ], [ 356836.922799997031689, 257407.13399999961257 ], [ 356835.22749999910593, 257416.830400001257658 ], [ 356862.559399999678135, 257426.764400001615286 ], [ 356891.498499996960163, 257437.344799999147654 ], [ 356891.6908999979496, 257414.759399998933077 ], [ 356894.233900003135204, 257400.214800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301081100", "MAP": "A9-141-T70", "PARCEL_NAM": "79-40", "ACRE": "0.275", "LONGITUDE": -64.94552691, "LATITUDE": 18.34631945, "OBJECTID_1": 9261, "PARCEL_NO_": "105301081100", "Tax_Legal_": "SOLBERG 79-40 LITTLE NORTHSIDE", "Name": "DEXTER E. BURLEY&ELIZABETH R. SERVICE LIV REV TRUS", "Address": "173-47 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34000, "Improved_V": 219700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.76532326099999, "SHAPE_Area": 1229.4936400199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357277.934399999678135, 257415.598600000143051 ], [ 357241.038199998438358, 257392.498500000685453 ], [ 357229.550200000405312, 257415.835900001227856 ], [ 357235.945000000298023, 257422.432100001722574 ], [ 357246.360500000417233, 257430.327799998223782 ], [ 357259.198600001633167, 257437.821199998259544 ], [ 357265.631099998950958, 257439.984700001776218 ], [ 357277.934399999678135, 257415.598600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92397484, "LATITUDE": 18.34645088, "OBJECTID_1": 12458, "PARCEL_NO_": "105402011300", "Tax_Legal_": "HOSPITAL GROUND 313A KINGS QTR", "Name": "PETERSEN, LOUIS EMANUEL", "Address": "BOX 1991", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.2945860791, "SHAPE_Area": 175.14329494099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359540.3429000005126, 257446.358800001442432 ], [ 359527.48139999806881, 257441.609400000423193 ], [ 359522.533900000154972, 257454.445599999278784 ], [ 359533.788099996745586, 257458.548500001430511 ], [ 359534.610600002110004, 257456.6554000005126 ], [ 359540.3429000005126, 257446.358800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301081800", "MAP": "A9-141-T70", "PARCEL_NAM": "79-38", "ACRE": "0.308", "LONGITUDE": -64.94488003, "LATITUDE": 18.34628888, "OBJECTID_1": 9268, "PARCEL_NO_": "105301081800", "Tax_Legal_": "SOLBERG 79-38 LITTLE NORTHSIDE", "Name": "NESBETT, ERNEST & MERRISS", "Address": "2600 Nye Norsidevj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44500, "Improved_V": 445600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.69420388500001, "SHAPE_Area": 1345.06117574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357336.651299998164177, 257432.966600000858307 ], [ 357338.619999997317791, 257391.186200000345707 ], [ 357327.328000001609325, 257391.515999998897314 ], [ 357308.764899998903275, 257393.475000001490116 ], [ 357303.536799997091293, 257439.239500001072884 ], [ 357321.318800002336502, 257434.318799998611212 ], [ 357336.651299998164177, 257432.966600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302021900", "MAP": null, "PARCEL_NAM": "11B", "ACRE": null, "LONGITUDE": -64.93645166, "LATITUDE": 18.34643322, "OBJECTID_1": 9606, "PARCEL_NO_": "105302021900", "Tax_Legal_": "AGNES FANCY 11B QUEEN QTR", "Name": "CHARLESWELL, CLIFTON A", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7700, "Improved_V": 87800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.619918410899999, "SHAPE_Area": 111.31525580100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358209.835600003600121, 257446.234999999403954 ], [ 358219.620999999344349, 257433.438299998641014 ], [ 358214.828100003302097, 257428.121800001710653 ], [ 358205.035499997437, 257441.762699998915195 ], [ 358209.835600003600121, 257446.234999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401171100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92737255, "LATITUDE": 18.34638133, "OBJECTID_1": 11729, "PARCEL_NO_": "105401171100", "Tax_Legal_": "HOSPITAL GROUND 206 NEW QUARTER", "Name": "JACOBS, CHERYL M", "Address": "PO BOX 673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44000, "Improved_V": 49800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.1519542427, "SHAPE_Area": 457.37685608100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359182.709600001573563, 257435.229299999773502 ], [ 359172.018100000917912, 257424.55689999833703 ], [ 359158.201099999248981, 257437.320500001311302 ], [ 359154.930900000035763, 257442.571100000292063 ], [ 359185.774899996817112, 257453.235500000417233 ], [ 359184.686300002038479, 257451.312899999320507 ], [ 359182.709600001573563, 257435.229299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302110400", "MAP": null, "PARCEL_NAM": "25", "ACRE": null, "LONGITUDE": -64.93539041, "LATITUDE": 18.34632886, "OBJECTID_1": 9832, "PARCEL_NO_": "105302110400", "Tax_Legal_": "AGNES FANCY 25 QUEENS QUARTER", "Name": "MILLINER, JAMES", "Address": "3305 E Rome Blvd", "City": "North Las Vegas", "State": "Nevada", "Zip": 89086, "Country": "United States", "Land_Value": 30100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.599065705, "SHAPE_Area": 741.68693173700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358344.907300002872944, 257439.418800000101328 ], [ 358335.060400001704693, 257418.339999999850988 ], [ 358304.512199997901917, 257407.324299998581409 ], [ 358318.206000000238419, 257441.670499999076128 ], [ 358320.985799998044968, 257440.937600001692772 ], [ 358340.168200001120567, 257440.276200000196695 ], [ 358344.907300002872944, 257439.418800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301081900", "MAP": "A9-141-T70", "PARCEL_NAM": "79-37", "ACRE": "0.303", "LONGITUDE": -64.94458732, "LATITUDE": 18.34629282, "OBJECTID_1": 9269, "PARCEL_NO_": "105301081900", "Tax_Legal_": "SOLBERG 79-37 LITTLE NORTHSIDE", "Name": "WHYTE, JASPER R.", "Address": "58 Solberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.86905397000001, "SHAPE_Area": 1237.74950029 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357362.811200000345707, 257391.173099998384714 ], [ 357359.564300000667572, 257393.679699998348951 ], [ 357338.619999997317791, 257391.186200000345707 ], [ 357336.651299998164177, 257432.966600000858307 ], [ 357352.772200003266335, 257433.731899999082088 ], [ 357371.281400002539158, 257438.105200000107288 ], [ 357362.811200000345707, 257391.173099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302090600", "MAP": null, "PARCEL_NAM": "PALME STAEDE 16GB", "ACRE": null, "LONGITUDE": -64.93290762, "LATITUDE": 18.34633069, "OBJECTID_1": 9786, "PARCEL_NO_": "105302090600", "Tax_Legal_": "PALME STAEDE 16GB QUEENS QTR", "Name": "PETERSEN, CHERYL BROWN-", "Address": "PO Box 913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38100, "Improved_V": 149400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.260824077, "SHAPE_Area": 724.74498547099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358596.878200002014637, 257447.92509999871254 ], [ 358600.355200000107288, 257418.400400001555681 ], [ 358570.595299996435642, 257409.502000000327826 ], [ 358575.336099997162819, 257420.939899999648333 ], [ 358576.839000001549721, 257433.828899998217821 ], [ 358579.981600001454353, 257443.564899999648333 ], [ 358586.401500001549721, 257447.206000000238419 ], [ 358596.878200002014637, 257447.92509999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401092300", "MAP": "D9-4935-T90", "PARCEL_NAM": "303B-1", "ACRE": ".143", "LONGITUDE": -64.92889687, "LATITUDE": 18.34635484, "OBJECTID_1": 11581, "PARCEL_NO_": "105401092300", "Tax_Legal_": "HOSPITAL GROUND 303B-1 KINGS QUARTER", "Name": "HARRIS, WILLIAM & ENID", "Address": "303B-1 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 157900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.78395391399999, "SHAPE_Area": 784.65472808699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359025.326800003647804, 257416.601300001144409 ], [ 358992.961000002920628, 257429.635299999266863 ], [ 358992.905299998819828, 257436.178700000047684 ], [ 359001.648800000548363, 257451.026799999177456 ], [ 359020.213799998164177, 257448.856699999421835 ], [ 359024.310099996626377, 257441.290899999439716 ], [ 359026.084600001573563, 257422.307000000029802 ], [ 359025.326800003647804, 257416.601300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401121000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93156189, "LATITUDE": 18.34624306, "OBJECTID_1": 11652, "PARCEL_NO_": "105401121000", "Tax_Legal_": "8B CATHERINEBERG KING'S QTR", "Name": "KEAN, ERNEST ORVILLE", "Address": "PO Box 302307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26700, "Improved_V": 162800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.59506717599999, "SHAPE_Area": 1173.5773556 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358750.174599997699261, 257437.780699998140335 ], [ 358730.396200001239777, 257393.078099999576807 ], [ 358708.535899996757507, 257403.45380000025034 ], [ 358728.317900002002716, 257447.734299998730421 ], [ 358750.174599997699261, 257437.780699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302110500", "MAP": null, "PARCEL_NAM": "27", "ACRE": null, "LONGITUDE": -64.9351251, "LATITUDE": 18.34623102, "OBJECTID_1": 9833, "PARCEL_NO_": "105302110500", "Tax_Legal_": "AGNES FANCY 27 QUEENS QTR", "Name": "NIBBS, ANTOINETTE E. and ANTHONY E.", "Address": "PO Box 308591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39600, "Improved_V": 58500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.13843071700001, "SHAPE_Area": 1121.72083116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358359.538699999451637, 257436.771899998188019 ], [ 358373.883900001645088, 257404.514499999582767 ], [ 358344.145599998533726, 257393.083200000226498 ], [ 358335.060400001704693, 257418.339999999850988 ], [ 358344.907300002872944, 257439.418800000101328 ], [ 358359.538699999451637, 257436.771899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92385691, "LATITUDE": 18.34637298, "OBJECTID_1": 12460, "PARCEL_NO_": "105402011500", "Tax_Legal_": "HOSPITAL GROUND 312 KINGS QTR", "Name": "PETERSEN, IRMA", "Address": "BOX 4171", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11800, "Improved_V": 65600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.029219812799994, "SHAPE_Area": 333.43652571299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359559.737499997019768, 257441.451200000941753 ], [ 359531.601099997758865, 257431.299600001424551 ], [ 359527.48139999806881, 257441.609400000423193 ], [ 359540.3429000005126, 257446.358800001442432 ], [ 359555.617899999022484, 257451.761100001633167 ], [ 359559.737499997019768, 257441.451200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401091900", "MAP": "D9-4935-T90", "PARCEL_NAM": "303B-3 (ROW)", "ACRE": ".03", "LONGITUDE": -64.92911019, "LATITUDE": 18.34639164, "OBJECTID_1": 11526, "PARCEL_NO_": "105401091900", "Tax_Legal_": "HOSPITAL GROUND 303 KINGS QTR", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 159100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.091131805800003, "SHAPE_Area": 151.22920989 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358992.961000002920628, 257429.635299999266863 ], [ 358982.443000003695488, 257433.771099999547005 ], [ 358983.944099999964237, 257446.871100001037121 ], [ 358993.623499996960163, 257446.528200000524521 ], [ 358992.905299998819828, 257436.178700000047684 ], [ 358992.961000002920628, 257429.635299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402042600", "MAP": "D9-6039-T96", "PARCEL_NAM": "330-REM", "ACRE": ".12", "LONGITUDE": -64.92348452, "LATITUDE": 18.34622156, "OBJECTID_1": 12517, "PARCEL_NO_": "105402042600", "Tax_Legal_": "HOSPITAL GROUND REM 330 KINGS QUARTER", "Name": "BETHEL MISSIONARY BAPTIST CHURCH", "Address": "PO BOX 4465", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.679786226, "SHAPE_Area": 586.87579468700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359593.107400000095367, 257405.205200001597404 ], [ 359588.307300001382828, 257400.732900001108646 ], [ 359586.656900003552437, 257405.152399998158216 ], [ 359585.015500001609325, 257408.516399998217821 ], [ 359582.569600000977516, 257411.662799999117851 ], [ 359580.920999996364117, 257415.871199999004602 ], [ 359576.844499997794628, 257421.115200001746416 ], [ 359572.744599997997284, 257429.103199999779463 ], [ 359565.336800001561642, 257446.774399999529123 ], [ 359565.297200001776218, 257451.418099999427795 ], [ 359576.691699996590614, 257439.05689999833703 ], [ 359596.12950000166893, 257429.083500001579523 ], [ 359593.107400000095367, 257405.205200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402091000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92199373, "LATITUDE": 18.34624446, "OBJECTID_1": 12599, "PARCEL_NO_": "105402091000", "Tax_Legal_": "ROSS C-12 OF PAR C KINGS QTR.", "Name": "FRASER, CHARLES", "Address": "1793 Timber Valley Way SE", "City": "Smyrna", "State": "Georgia", "Zip": 30080, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.33334370599999, "SHAPE_Area": 1035.79558933 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359762.258599996566772, 257427.065699998289347 ], [ 359735.837300002574921, 257404.895700000226498 ], [ 359728.465400002896786, 257418.345400001853704 ], [ 359718.674599997699261, 257431.775199998170137 ], [ 359744.309399999678135, 257451.616700001060963 ], [ 359753.270499996840954, 257440.924300000071526 ], [ 359762.258599996566772, 257427.065699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302110600", "MAP": null, "PARCEL_NAM": "28 &127", "ACRE": null, "LONGITUDE": -64.93486017, "LATITUDE": 18.34627295, "OBJECTID_1": 9834, "PARCEL_NO_": "105302110600", "Tax_Legal_": "AGNES FANCY 28&127 QUEENS QTR", "Name": "SPRAUVE, MIRIAM", "Address": "1072 Woodycrest Ave", "City": "Bronx", "State": "New York", "Zip": 10452, "Country": "United States", "Land_Value": 42700, "Improved_V": 21300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.305672507, "SHAPE_Area": 745.87757709599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358395.469099998474121, 257426.433800000697374 ], [ 358405.231100000441074, 257416.38120000064373 ], [ 358373.883900001645088, 257404.514499999582767 ], [ 358359.538699999451637, 257436.771899998188019 ], [ 358366.494300000369549, 257435.513700000941753 ], [ 358381.310999996960163, 257431.677200000733137 ], [ 358395.469099998474121, 257426.433800000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401171000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92803625000001, "LATITUDE": 18.34630552, "OBJECTID_1": 11728, "PARCEL_NO_": "105401171000", "Tax_Legal_": "HOSPITAL GROUND 2O2 NEW QUARTER", "Name": "LUDVIG, ANTONIO", "Address": "Towers Conod", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.141557068, "SHAPE_Area": 773.59300748099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359113.234600000083447, 257414.998700000345707 ], [ 359097.884099997580051, 257418.46169999986887 ], [ 359082.533600002527237, 257421.924600001424551 ], [ 359091.205300003290176, 257445.215900000184774 ], [ 359120.275700002908707, 257440.387600000947714 ], [ 359113.234600000083447, 257414.998700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302090100", "MAP": null, "PARCEL_NAM": "11O", "ACRE": null, "LONGITUDE": -64.93355545, "LATITUDE": 18.34626435, "OBJECTID_1": 9782, "PARCEL_NO_": "105302090100", "Tax_Legal_": "AGNES FANCY 11O QUEENS QUARTER", "Name": "THOMAS, KENRICK & ARTHURLYN C.", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.642878599, "SHAPE_Area": 653.51106021199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358531.109399996697903, 257406.434599999338388 ], [ 358505.302000001072884, 257406.856699999421835 ], [ 358509.159100003540516, 257427.36430000141263 ], [ 358512.299900002777576, 257437.3114 ], [ 358515.507100000977516, 257439.448600001633167 ], [ 358519.531499996781349, 257440.325899999588728 ], [ 358526.007200002670288, 257437.423599999397993 ], [ 358531.073399998247623, 257410.656199999153614 ], [ 358531.109399996697903, 257406.434599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302090200", "MAP": null, "PARCEL_NAM": "102", "ACRE": null, "LONGITUDE": -64.93334746, "LATITUDE": 18.34619662, "OBJECTID_1": 9783, "PARCEL_NO_": "105302090200", "Tax_Legal_": "AGNES FANCY 1O2 QUEENS QUARTER", "Name": "CLAUSE, ALTAGRACIA A. N", "Address": "PO Box 7143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.654756702, "SHAPE_Area": 679.21228229200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358557.735699996352196, 257404.541600000113249 ], [ 358533.619999997317791, 257395.689399998635054 ], [ 358531.109399996697903, 257406.434599999338388 ], [ 358531.073399998247623, 257410.656199999153614 ], [ 358526.007200002670288, 257437.423599999397993 ], [ 358542.234099999070168, 257425.735199999064207 ], [ 358553.612400002777576, 257415.273600000888109 ], [ 358559.278200000524521, 257412.786899998784065 ], [ 358557.681699998676777, 257410.874000001698732 ], [ 358557.735699996352196, 257404.541600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401121100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93139787, "LATITUDE": 18.34616899, "OBJECTID_1": 11653, "PARCEL_NO_": "105401121100", "Tax_Legal_": "CATHERINEBERG 8D ST THOMAS VI", "Name": "8D CATHERINEBERG, LLC", "Address": "PO Box 302307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032307, "Country": "United States", "Land_Value": 16900, "Improved_V": 105700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.329074807, "SHAPE_Area": 698.02263925199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358763.12780000269413, 257431.765000000596046 ], [ 358743.349399998784065, 257387.062399998307228 ], [ 358730.396200001239777, 257393.078099999576807 ], [ 358750.174599997699261, 257437.780699998140335 ], [ 358763.12780000269413, 257431.765000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401171300", "MAP": null, "PARCEL_NAM": "205A", "ACRE": null, "LONGITUDE": -64.92714759, "LATITUDE": 18.34622127, "OBJECTID_1": 11731, "PARCEL_NO_": "105401171300", "Tax_Legal_": "205A ESTATE HOSPITAL GROUND NEW QUARTER", "Name": "NELSON, SHANIKA E", "Address": "1109 Hawthorn Way", "City": "New Windsor", "State": "New York", "Zip": 12553, "Country": "United States", "Land_Value": 14600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.48481404, "SHAPE_Area": 538.21309029400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359214.186200000345707, 257425.822999998927116 ], [ 359214.889300003647804, 257408.864599999040365 ], [ 359180.119000002741814, 257420.190200001001358 ], [ 359172.018100000917912, 257424.55689999833703 ], [ 359182.709600001573563, 257435.229299999773502 ], [ 359182.358000002801418, 257432.368700001388788 ], [ 359210.298000000417233, 257425.277899999171495 ], [ 359214.186200000345707, 257425.822999998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096100", "MAP": "A9-141-T70", "PARCEL_NAM": "79-18", "ACRE": "0.345", "LONGITUDE": -64.94744821, "LATITUDE": 18.34612333, "OBJECTID_1": 9344, "PARCEL_NO_": "105301096100", "Tax_Legal_": "SOLBERG 1B-18 LT.NORTHSIDE QTR.", "Name": "CHANDA K RAVALIER, SHAMARI K & SHENIQUE S DAVIS", "Address": "PO Box 307833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037833, "Country": "United States", "Land_Value": 54700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.02847742399999, "SHAPE_Area": 1286.2571382799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357066.199699997901917, 257375.657699998468161 ], [ 357058.930299997329712, 257377.075899999588728 ], [ 357052.677599996328354, 257353.804400000721216 ], [ 357047.782200001180172, 257360.519299998879433 ], [ 357046.135399997234344, 257364.516600001603365 ], [ 357041.072700001299381, 257390.861900001764297 ], [ 357039.577500000596046, 257394.678700000047684 ], [ 357034.478399999439716, 257407.69539999961853 ], [ 357033.715499997138977, 257408.758000001311302 ], [ 357024.685699999332428, 257421.336300000548363 ], [ 357064.276000000536442, 257412.161100000143051 ], [ 357066.199699997901917, 257375.657699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94650638, "LATITUDE": 18.34624041, "OBJECTID_1": 9306, "PARCEL_NO_": "105301091900", "Tax_Legal_": "SOLBERG 92 LITTLE NORTHSIDE", "Name": "CHRISTIAN, ORNETTE R. TRUSTEE", "Address": "PO Box 10915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.98281032200001, "SHAPE_Area": 577.17375295600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357134.342399999499321, 257422.444899998605251 ], [ 357180.485699996352196, 257401.291000001132488 ], [ 357136.168999999761581, 257397.339699998497963 ], [ 357134.410800002515316, 257414.423900000751019 ], [ 357133.584700003266335, 257416.739199999719858 ], [ 357131.151299998164177, 257418.407999999821186 ], [ 357134.342399999499321, 257422.444899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401171700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92742911000001, "LATITUDE": 18.34596182, "OBJECTID_1": 11735, "PARCEL_NO_": "105401171700", "Tax_Legal_": "9F HOSPITAL GROUND KINGS QTR.", "Name": "STT-STJ DIV. LUTHERAN HOUSING A", "Address": "P.O.BOX 866", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 222200, "Improved_V": 1990200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.04812183899998, "SHAPE_Area": 5777.8600810099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359124.326999999582767, 257438.098700001835823 ], [ 359163.157700002193451, 257423.428899999707937 ], [ 359178.558499999344349, 257414.055700000375509 ], [ 359209.282899998128414, 257404.385800000280142 ], [ 359234.359499998390675, 257395.09180000051856 ], [ 359225.576399996876717, 257384.88740000128746 ], [ 359211.228200003504753, 257365.349399998784065 ], [ 359206.433499999344349, 257360.243900001049042 ], [ 359202.470299996435642, 257352.189899999648333 ], [ 359165.282799996435642, 257363.284600000828505 ], [ 359109.472800001502037, 257383.303899999707937 ], [ 359124.326999999582767, 257438.098700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92381375, "LATITUDE": 18.34625953, "OBJECTID_1": 12461, "PARCEL_NO_": "105402011600", "Tax_Legal_": "HOSPITAL GROUND 311 NEW QUARTER", "Name": "VELMA A HEYLIGER LIVING TRUST", "Address": "PO BOX 303514", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16500, "Improved_V": 87800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.79373598700001, "SHAPE_Area": 453.005902918 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359567.150799997150898, 257423.146800000220537 ], [ 359554.208400003612041, 257427.896000001579523 ], [ 359539.010799996554852, 257413.417300000786781 ], [ 359531.601099997758865, 257431.299600001424551 ], [ 359559.737499997019768, 257441.451200000941753 ], [ 359567.150799997150898, 257423.146800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302090900", "MAP": null, "PARCEL_NAM": "PALME STRAEDE 16", "ACRE": null, "LONGITUDE": -64.93233513, "LATITUDE": 18.34608986, "OBJECTID_1": 9787, "PARCEL_NO_": "105302090900", "Tax_Legal_": "PALME STRAEDE 16 QUEENS QTR.", "Name": "SMITH, RANDOLPH-EST. , SMITH, I & W.", "Address": "PO Box 533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 123000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.72882558800001, "SHAPE_Area": 1690.5833321299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358678.005699999630451, 257390.327199999243021 ], [ 358686.885899998247623, 257389.133299998939037 ], [ 358651.525100000202656, 257375.122900001704693 ], [ 358649.081000000238419, 257378.058200001716614 ], [ 358634.409100003540516, 257396.514299999922514 ], [ 358625.4983000010252, 257401.296500001102686 ], [ 358619.589800000190735, 257432.278900001198053 ], [ 358630.921300001442432, 257427.305399999022484 ], [ 358643.852899998426437, 257423.822700001299381 ], [ 358664.071800000965595, 257416.811000000685453 ], [ 358660.139200001955032, 257405.168600000441074 ], [ 358678.005699999630451, 257390.327199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401121200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93125645000001, "LATITUDE": 18.34610896, "OBJECTID_1": 11654, "PARCEL_NO_": "105401121200", "Tax_Legal_": "CATHERINEBERG 8E QUEENS QTR", "Name": "BOYCE, LEROY A. & LEONIS", "Address": "2211 Catherineberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17100, "Improved_V": 76400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.23249265699999, "SHAPE_Area": 899.54488123199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358780.126900002360344, 257424.093600001186132 ], [ 358761.930500000715256, 257382.992600001394749 ], [ 358753.874600000679493, 257382.082299999892712 ], [ 358743.349399998784065, 257387.062399998307228 ], [ 358763.12780000269413, 257431.765000000596046 ], [ 358780.126900002360344, 257424.093600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401171400", "MAP": null, "PARCEL_NAM": "205B", "ACRE": null, "LONGITUDE": -64.92681153, "LATITUDE": 18.34616486, "OBJECTID_1": 11732, "PARCEL_NO_": "105401171400", "Tax_Legal_": "205B HOSPITAL GROUND NEW QUARTER", "Name": "DURANT, ANGELA R.", "Address": "PO Box 7806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14900, "Improved_V": 152600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.237349428, "SHAPE_Area": 766.714549207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359214.186200000345707, 257425.822999998927116 ], [ 359221.62219999730587, 257426.86540000140667 ], [ 359222.523000001907349, 257430.909800000488758 ], [ 359251.056500002741814, 257422.881700001657009 ], [ 359250.275399997830391, 257419.920000001788139 ], [ 359247.917599998414516, 257412.723499998450279 ], [ 359244.739100001752377, 257407.209100000560284 ], [ 359238.351499997079372, 257399.768500000238419 ], [ 359214.889300003647804, 257408.864599999040365 ], [ 359214.186200000345707, 257425.822999998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401092200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92848921, "LATITUDE": 18.34620667, "OBJECTID_1": 11580, "PARCEL_NO_": "105401092200", "Tax_Legal_": "HOSPITAL GROUND 303C KINGS QTR.", "Name": "HOWARD, KENNETH", "Address": "PO Box 10601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13200, "Improved_V": 71400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.95619805299999, "SHAPE_Area": 640.32013318600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359036.4983000010252, 257430.413800001144409 ], [ 359071.193099997937679, 257427.953499998897314 ], [ 359065.752099998295307, 257404.055399999022484 ], [ 359039.064699999988079, 257413.125100001692772 ], [ 359036.4983000010252, 257430.413800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92231659, "LATITUDE": 18.34606121, "OBJECTID_1": 12595, "PARCEL_NO_": "105402090600", "Tax_Legal_": "C-23 ROSS NO.8 NEW QTR", "Name": "NIBBS, ARNOLD", "Address": "PO Box 502651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 7000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.883472981, "SHAPE_Area": 291.479086671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359698.906999997794628, 257385.806099999696016 ], [ 359703.557899996638298, 257407.797899998724461 ], [ 359707.413199998438358, 257428.516600001603365 ], [ 359708.979099996387959, 257434.017900001257658 ], [ 359713.869099996984005, 257427.936200000345707 ], [ 359705.361100003123283, 257385.436799999326468 ], [ 359698.906999997794628, 257385.806099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096000", "MAP": "A9-141-T70", "PARCEL_NAM": "79-19", "ACRE": "0.273", "LONGITUDE": -64.94715362, "LATITUDE": 18.34610578, "OBJECTID_1": 9343, "PARCEL_NO_": "105301096000", "Tax_Legal_": "SOLBERG 1B-19 LT.NORTHSIDE QTR.", "Name": "PRESCOD, MARIAN", "Address": "3004 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.722221722, "SHAPE_Area": 1147.9621597299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357092.042999997735023, 257371.01410000026226 ], [ 357066.199699997901917, 257375.657699998468161 ], [ 357064.276000000536442, 257412.161100000143051 ], [ 357104.672499999403954, 257402.992600001394749 ], [ 357097.538000002503395, 257388.579799998551607 ], [ 357092.042999997735023, 257371.01410000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401121300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93107806, "LATITUDE": 18.34606288, "OBJECTID_1": 11655, "PARCEL_NO_": "105401121300", "Tax_Legal_": "8L LYTTONS FANCY KINGS QTR", "Name": "VERONIQUE GLASGOW (LIFE ESTATE)", "Address": "8L Lytton S Fancy-200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 65100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.628396388, "SHAPE_Area": 786.18654368600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358780.126900002360344, 257424.093600001186132 ], [ 358793.081799998879433, 257417.866900000721216 ], [ 358791.735299997031689, 257386.614000000059605 ], [ 358761.930500000715256, 257382.992600001394749 ], [ 358780.126900002360344, 257424.093600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302030100", "MAP": null, "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.93902548, "LATITUDE": 18.34624588, "OBJECTID_1": 9624, "PARCEL_NO_": "105302030100", "Tax_Legal_": "STAABI 5 GREAT NORTHSIDE QTR", "Name": "DUKES, JULIE E.", "Address": "PO Box 301795", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 178300, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 13.2219186984, "SHAPE_Area": 5.4466376925600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357939.144799999892712, 257416.999499998986721 ], [ 357941.581699997186661, 257414.908500000834465 ], [ 357940.807700000703335, 257411.10249999910593 ], [ 357939.144799999892712, 257416.999499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302111000", "MAP": null, "PARCEL_NAM": "26", "ACRE": null, "LONGITUDE": -64.93541333, "LATITUDE": 18.34607871, "OBJECTID_1": 9838, "PARCEL_NO_": "105302111000", "Tax_Legal_": "AGNES FANCY 26 QUEENS QUARTER", "Name": "LLOYD, MALCOHM", "Address": "PO Box 252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 51300, "Improved_V": 22900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.38542174400001, "SHAPE_Area": 1005.58489968 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358308.786499999463558, 257378.861600000411272 ], [ 358302.100500002503395, 257406.460099998861551 ], [ 358304.512199997901917, 257407.324299998581409 ], [ 358335.060400001704693, 257418.339999999850988 ], [ 358344.145599998533726, 257393.083200000226498 ], [ 358308.786499999463558, 257378.861600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92371731, "LATITUDE": 18.34608189, "OBJECTID_1": 12462, "PARCEL_NO_": "105402011700", "Tax_Legal_": "HOSPITAL GROUND 176-1 & 178 NEW QUARTER", "Name": "WOODS,SR. (TRUSTEE), PETER", "Address": "PO BOX 8983", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10700, "Improved_V": 89100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.293870846, "SHAPE_Area": 897.24801301800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359581.068499997258186, 257398.562699999660254 ], [ 359546.429399996995926, 257394.479600001126528 ], [ 359539.010799996554852, 257413.417300000786781 ], [ 359554.208400003612041, 257427.896000001579523 ], [ 359567.150799997150898, 257423.146800000220537 ], [ 359569.603900000452995, 257419.156100001186132 ], [ 359574.504699997603893, 257411.807900000363588 ], [ 359581.068499997258186, 257398.562699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92240884, "LATITUDE": 18.34615072, "OBJECTID_1": 12518, "PARCEL_NO_": "105402050100", "Tax_Legal_": "198 HOSPITAL GROUND NEW QUARTER", "Name": "NIBBS, JR, ARNOLD E.", "Address": "PO Box 502651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 6100, "Improved_V": 60700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.491358983799998, "SHAPE_Area": 328.58600093899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359703.557899996638298, 257407.797899998724461 ], [ 359685.793799996376038, 257410.607799999415874 ], [ 359688.887800000607967, 257426.043000001460314 ], [ 359707.413199998438358, 257428.516600001603365 ], [ 359703.557899996638298, 257407.797899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402091300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92219176, "LATITUDE": 18.3459804, "OBJECTID_1": 12602, "PARCEL_NO_": "105402091300", "Tax_Legal_": "ROSS 13 KINGS QTR", "Name": "DAVIS, S & OF DAVIS, L", "Address": "PO Box 8023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.48037418600001, "SHAPE_Area": 786.95180596600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359739.247800000011921, 257383.181000001728535 ], [ 359705.361100003123283, 257385.436799999326468 ], [ 359713.869099996984005, 257427.936200000345707 ], [ 359717.943800002336502, 257422.903299998492002 ], [ 359718.769900001585484, 257420.587999999523163 ], [ 359720.391500003635883, 257419.545800000429153 ], [ 359726.933700002729893, 257408.833599999547005 ], [ 359730.207500003278255, 257403.160900000482798 ], [ 359732.689400002360344, 257395.792899999767542 ], [ 359735.133500002324581, 257392.857599999755621 ], [ 359735.972199998795986, 257389.064800001680851 ], [ 359739.247800000011921, 257383.181000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302091000", "MAP": null, "PARCEL_NAM": "PALME STRAEDE 16", "ACRE": null, "LONGITUDE": -64.93292044, "LATITUDE": 18.34616959, "OBJECTID_1": 9788, "PARCEL_NO_": "105302091000", "Tax_Legal_": "PALME STRAEDE 16 QUEENS QRT", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.342578591299997, "SHAPE_Area": 128.50625979200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358593.154100000858307, 257411.797600001096725 ], [ 358586.755699999630451, 257405.623500000685453 ], [ 358570.595299996435642, 257409.502000000327826 ], [ 358600.355200000107288, 257418.400400001555681 ], [ 358593.154100000858307, 257411.797600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302091300", "MAP": null, "PARCEL_NAM": "PALME STRAEDE 16E", "ACRE": null, "LONGITUDE": -64.93274777000001, "LATITUDE": 18.34613737, "OBJECTID_1": 9792, "PARCEL_NO_": "105302091300", "Tax_Legal_": "PALME STRAEDE 16E QUEENS QTR", "Name": "VIOLA A. HODGE LIVING TRUST", "Address": "2034 Palm Straede", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 85700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.925643679100006, "SHAPE_Area": 276.84138603600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358594.851199999451637, 257401.890099998563528 ], [ 358598.015299998223782, 257409.093199998140335 ], [ 358593.154100000858307, 257411.797600001096725 ], [ 358600.355200000107288, 257418.400400001555681 ], [ 358604.38849999755621, 257418.222300000488758 ], [ 358618.230700001120567, 257402.503600001335144 ], [ 358609.364900000393391, 257402.008900001645088 ], [ 358606.157600000500679, 257399.871700000017881 ], [ 358604.568300001323223, 257397.114500001072884 ], [ 358594.851199999451637, 257401.890099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401171500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92817411, "LATITUDE": 18.34614851, "OBJECTID_1": 11733, "PARCEL_NO_": "105401171500", "Tax_Legal_": "HOSPITAL GROUND 201A KINGS QTR", "Name": "SAMUEL, G & L A", "Address": "631 W 152nd St", "City": "New York", "State": "New York", "Zip": 10031, "Country": "United States", "Land_Value": 3400, "Improved_V": 48300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.532083602199997, "SHAPE_Area": 242.544988198 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359097.884099997580051, 257418.46169999986887 ], [ 359092.365800000727177, 257403.640000000596046 ], [ 359077.008100003004074, 257407.947200000286102 ], [ 359082.533600002527237, 257421.924600001424551 ], [ 359097.884099997580051, 257418.46169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92182371, "LATITUDE": 18.34596743, "OBJECTID_1": 12597, "PARCEL_NO_": "105402090800", "Tax_Legal_": "ROSS C-14 KINGS QTR.", "Name": "CHRISTIAN, JEAN", "Address": "P.O. BOX 4575, V.D.S", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28400, "Improved_V": 104300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.68694243799999, "SHAPE_Area": 1395.7867724 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359782.768899999558926, 257385.859200000762939 ], [ 359750.618900001049042, 257373.563700001686811 ], [ 359735.837300002574921, 257404.895700000226498 ], [ 359762.258599996566772, 257427.065699998289347 ], [ 359767.976499997079372, 257418.457600001245737 ], [ 359782.768899999558926, 257385.859200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301090700", "MAP": "A9-141-T70", "PARCEL_NAM": "79-3", "ACRE": "0.231", "LONGITUDE": -64.94945457, "LATITUDE": 18.34597928, "OBJECTID_1": 9296, "PARCEL_NO_": "105301090700", "Tax_Legal_": "SOLBERG 64 LITTLE NORTHSIDE QTR", "Name": "MCEVOY, TIANA & ANISSA MARIE SAUNDERS", "Address": "PO Box 8627", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35700, "Improved_V": 226300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.632997166, "SHAPE_Area": 1148.9833001699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356835.346199996769428, 257402.89919999986887 ], [ 356866.397799998521805, 257354.812899999320507 ], [ 356850.537799999117851, 257357.792100001126528 ], [ 356821.168799996376038, 257363.308699999004602 ], [ 356822.506300002336502, 257395.616900000721216 ], [ 356827.329800002276897, 257397.345199998468161 ], [ 356828.928000003099442, 257399.046999998390675 ], [ 356832.946999996900558, 257400.557500001043081 ], [ 356834.56139999628067, 257400.359600000083447 ], [ 356835.346199996769428, 257402.89919999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301090900", "MAP": "A9-141-T70", "PARCEL_NAM": "79-6", "ACRE": "0.258", "LONGITUDE": -64.94918889, "LATITUDE": 18.34598075, "OBJECTID_1": 9298, "PARCEL_NO_": "105301090900", "Tax_Legal_": "SOLBERG 57A LITTLE NORTHSIDE", "Name": "DELIA, BENJAMIN", "Address": "PO Box 8717", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011717, "Country": "United States", "Land_Value": 21000, "Improved_V": 379400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.86499436599999, "SHAPE_Area": 1217.32250688 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356866.397799998521805, 257354.812899999320507 ], [ 356835.346199996769428, 257402.89919999986887 ], [ 356846.659699998795986, 257400.036499999463558 ], [ 356870.904799997806549, 257393.690999999642372 ], [ 356872.612800002098083, 257382.517000000923872 ], [ 356875.915299996733665, 257373.467000000178814 ], [ 356900.178400002419949, 257365.010800000280142 ], [ 356893.787299998104572, 257357.992400001734495 ], [ 356887.354800000786781, 257355.82880000025034 ], [ 356866.397799998521805, 257354.812899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301080700", "MAP": "A9-141-T70", "PARCEL_NAM": "79-43", "ACRE": "0.237", "LONGITUDE": -64.94609112000001, "LATITUDE": 18.34601257, "OBJECTID_1": 9257, "PARCEL_NO_": "105301080700", "Tax_Legal_": "SOLBERG 79-43 LITTLE NORTHSIDE QTR", "Name": "CALLWOOD, JULIET", "Address": "PO Box 304126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39300, "Improved_V": 259200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.37722721099999, "SHAPE_Area": 1109.53662749 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357175.831200003623962, 257379.721400000154972 ], [ 357180.485699996352196, 257401.291000001132488 ], [ 357196.602899998426437, 257402.478399999439716 ], [ 357208.675999999046326, 257405.110300000756979 ], [ 357205.5658999979496, 257391.57490000128746 ], [ 357206.226499997079372, 257375.319400001317263 ], [ 357208.98870000243187, 257359.575300000607967 ], [ 357208.159999996423721, 257354.603500001132488 ], [ 357205.121699996292591, 257355.063900001347065 ], [ 357188.825199998915195, 257367.401299998164177 ], [ 357174.64639999717474, 257376.976599998772144 ], [ 357175.831200003623962, 257379.721400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401110100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93210715, "LATITUDE": 18.34610648, "OBJECTID_1": 11620, "PARCEL_NO_": "105401110100", "Tax_Legal_": "PALM STRAEDE 16F QUEENS QUARTER", "Name": "TYSON, REYNOLD", "Address": "2041 PALM STAEDE 16-F", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 79200, "Improved_V": 85700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.039207112200003, "SHAPE_Area": 326.28841255700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358664.071800000965595, 257416.811000000685453 ], [ 358682.683600001037121, 257409.152800001204014 ], [ 358678.005699999630451, 257390.327199999243021 ], [ 358660.139200001955032, 257405.168600000441074 ], [ 358664.071800000965595, 257416.811000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92269783, "LATITUDE": 18.34614459, "OBJECTID_1": 12501, "PARCEL_NO_": "105402041000", "Tax_Legal_": "HOSPITAL GROUND 197 NEW QUARTER", "Name": "OTHNEIL T SOMERSALL REVOCABLE FAMILY TRUST", "Address": "PO BOX 9384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4900, "Improved_V": 97600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.648787637200002, "SHAPE_Area": 354.798398803 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359679.343299999833107, 257410.554999999701977 ], [ 359647.067400000989437, 257413.035100001841784 ], [ 359648.620700001716614, 257420.013900000602007 ], [ 359667.142499998211861, 257422.909699998795986 ], [ 359682.444499999284744, 257425.145899999886751 ], [ 359679.343299999833107, 257410.554999999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401171200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92802746, "LATITUDE": 18.34611122, "OBJECTID_1": 11730, "PARCEL_NO_": "105401171200", "Tax_Legal_": "HOSPITAL GROUND 201 NEW QUARTER", "Name": "REIDEMON, GISMONDA", "Address": "631 W 152nd St", "City": "New York", "State": "New York", "Zip": 10031, "Country": "United States", "Land_Value": 10000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.888188294299994, "SHAPE_Area": 262.20435153900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359108.531599998474121, 257399.128199998289347 ], [ 359092.365800000727177, 257403.640000000596046 ], [ 359097.884099997580051, 257418.46169999986887 ], [ 359113.234600000083447, 257414.998700000345707 ], [ 359108.531599998474121, 257399.128199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091200", "MAP": "A9-141-T70", "PARCEL_NAM": "79-5", "ACRE": "0.245", "LONGITUDE": -64.94899788, "LATITUDE": 18.34604598, "OBJECTID_1": 9300, "PARCEL_NO_": "105301091200", "Tax_Legal_": "SOLBERG 62 LITTLE NORTHSIDE QTR", "Name": "MORCIGLIO, RAFAEL A. & LUZ M", "Address": "PO Box 7282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 86700, "Improved_V": 299400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.796130879, "SHAPE_Area": 756.74194368799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356900.178400002419949, 257365.010800000280142 ], [ 356875.915299996733665, 257373.467000000178814 ], [ 356872.612800002098083, 257382.517000000923872 ], [ 356870.904799997806549, 257393.690999999642372 ], [ 356870.877899996936321, 257396.857200000435114 ], [ 356894.233900003135204, 257400.214800000190735 ], [ 356900.88400000333786, 257376.837799999862909 ], [ 356901.742499999701977, 257370.723099999129772 ], [ 356900.178400002419949, 257365.010800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302062100", "MAP": null, "PARCEL_NAM": "96", "ACRE": null, "LONGITUDE": -64.93444093, "LATITUDE": 18.34608217, "OBJECTID_1": 9703, "PARCEL_NO_": "105302062100", "Tax_Legal_": "AGNES FANCY 96 QUEENS QUARTER", "Name": "PEETS, DEREK A", "Address": "PO Box 308122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.519557777, "SHAPE_Area": 629.59790333900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358406.879699997603893, 257412.172899998724461 ], [ 358428.655599996447563, 257411.717799998819828 ], [ 358440.83839999884367, 257401.473900001496077 ], [ 358447.355400003492832, 257393.71680000051856 ], [ 358416.773100003600121, 257386.711500000208616 ], [ 358406.879699997603893, 257412.172899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130400", "MAP": "D9-3387-T86", "PARCEL_NAM": "8G-1A", "ACRE": "0.06", "LONGITUDE": -64.92999413, "LATITUDE": 18.34611888, "OBJECTID_1": 11662, "PARCEL_NO_": "105401130400", "Tax_Legal_": "8GH & 8G-IA LYTTONS FANCY QUEENS QUARTER", "Name": "VILENES, O. , PILGRIM, R. & ESTATE", "Address": "901 NW 201st St", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 340400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.713065763899998, "SHAPE_Area": 204.906550135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358900.092299997806549, 257416.282699998468161 ], [ 358903.29280000180006, 257396.805300001055002 ], [ 358896.623800002038479, 257400.365899998694658 ], [ 358889.112000003457069, 257404.376400001347065 ], [ 358885.182199999690056, 257414.528400000184774 ], [ 358893.897900000214577, 257415.525600001215935 ], [ 358900.092299997806549, 257416.282699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302091200", "MAP": null, "PARCEL_NAM": "PALME STRAEDE 16EA", "ACRE": null, "LONGITUDE": -64.9328532, "LATITUDE": 18.34613019, "OBJECTID_1": 9791, "PARCEL_NO_": "105302091200", "Tax_Legal_": "PALME STRAEDE 16EA QUEEN QUARTER", "Name": "BROWN PETERSEN, CHERYL", "Address": "PO Box 913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.2366515786, "SHAPE_Area": 58.721457437700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358594.851199999451637, 257401.890099998563528 ], [ 358586.755699999630451, 257405.623500000685453 ], [ 358593.154100000858307, 257411.797600001096725 ], [ 358598.015299998223782, 257409.093199998140335 ], [ 358594.851199999451637, 257401.890099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92296178, "LATITUDE": 18.34601331, "OBJECTID_1": 12500, "PARCEL_NO_": "105402040900", "Tax_Legal_": "HOSPITAL GROUND 186 NEW QUARTER", "Name": "RICHARDS, HILDA B", "Address": "8612 Wintergreen Ct", "City": "Odenton", "State": "Maryland", "Zip": 21113, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.006359042900002, "SHAPE_Area": 408.24212966699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359628.743400000035763, 257386.9206000007689 ], [ 359634.940399996936321, 257416.735500000417233 ], [ 359643.791799999773502, 257418.9189000017941 ], [ 359648.620700001716614, 257420.013900000602007 ], [ 359647.067400000989437, 257413.035100001841784 ], [ 359644.738399997353554, 257402.461300000548363 ], [ 359642.411200001835823, 257391.676500000059605 ], [ 359641.651600003242493, 257386.18189999833703 ], [ 359628.743400000035763, 257386.9206000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302091100", "MAP": null, "PARCEL_NAM": "PALME STAEDE 16H", "ACRE": null, "LONGITUDE": -64.93288905, "LATITUDE": 18.34591625, "OBJECTID_1": 9789, "PARCEL_NO_": "105302091100", "Tax_Legal_": "PALME STAEDE 16H QUEENS QUARTER", "Name": "PETERSEN, CHARLES A. & FLORA", "Address": "PALM STREADE #16H", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.61589439599999, "SHAPE_Area": 1451.86990573 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358570.595299996435642, 257409.502000000327826 ], [ 358586.755699999630451, 257405.623500000685453 ], [ 358594.851199999451637, 257401.890099998563528 ], [ 358604.568300001323223, 257397.114500001072884 ], [ 358602.993500001728535, 257392.668600000441074 ], [ 358602.253700003027916, 257384.852099999785423 ], [ 358603.900499999523163, 257380.854800000786781 ], [ 358612.075099997222424, 257367.83390000090003 ], [ 358616.191200003027916, 257357.946199998259544 ], [ 358607.361299999058247, 257353.229899998754263 ], [ 358599.980400003492832, 257367.734900001436472 ], [ 358583.118000000715256, 257359.364199999719858 ], [ 358567.503100000321865, 257393.855799999088049 ], [ 358568.99889999628067, 257407.589099999517202 ], [ 358570.595299996435642, 257409.502000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302110900", "MAP": null, "PARCEL_NAM": "23", "ACRE": null, "LONGITUDE": -64.93566388000001, "LATITUDE": 18.34598628, "OBJECTID_1": 9837, "PARCEL_NO_": "105302110900", "Tax_Legal_": "AGNES FANCY 23 QUEENS QUARTER", "Name": "BENJAMIN, GEORGE A. & EDMEADE, SHIRLEY J. (ESTATES) & OTHERS", "Address": "52 Ormond St", "City": "Hempstead", "State": "New York", "Zip": 11550, "Country": "United States", "Land_Value": 56700, "Improved_V": 91300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.923169578200003, "SHAPE_Area": 577.34259385500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358287.892499998211861, 257370.457899998873472 ], [ 358285.218299999833107, 257400.411299999803305 ], [ 358302.100500002503395, 257406.460099998861551 ], [ 358308.786499999463558, 257378.861600000411272 ], [ 358287.892499998211861, 257370.457899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401110200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93199041, "LATITUDE": 18.34604698, "OBJECTID_1": 11621, "PARCEL_NO_": "105401110200", "Tax_Legal_": "PALM STRAEDE 16D QUEENS QUARTER", "Name": "FAULKNER, A", "Address": "C/O R.FAULKNER-BOX 3102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.231654853599998, "SHAPE_Area": 151.90932189399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358689.970899999141693, 257405.6239 ], [ 358686.885899998247623, 257389.133299998939037 ], [ 358678.005699999630451, 257390.327199999243021 ], [ 358682.683600001037121, 257409.152800001204014 ], [ 358689.970899999141693, 257405.6239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92308072, "LATITUDE": 18.3460038, "OBJECTID_1": 12499, "PARCEL_NO_": "105402040800", "Tax_Legal_": "HOSPITAL GROUND 184 NEW QUARTER", "Name": "CANAGATA, KAREN & OTHERS", "Address": "131-02 224th St", "City": "LAURELTON", "State": "New York", "Zip": 11413, "Country": "United States", "Land_Value": 11700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.257392245399998, "SHAPE_Area": 329.18086706000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359628.743400000035763, 257386.9206000007689 ], [ 359617.447899997234344, 257387.672499999403954 ], [ 359622.066299997270107, 257413.463700000196695 ], [ 359634.940399996936321, 257416.735500000417233 ], [ 359628.743400000035763, 257386.9206000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301082200", "MAP": "A9-141-T70", "PARCEL_NAM": "79-34", "ACRE": "0.473", "LONGITUDE": -64.94411582, "LATITUDE": 18.34600332, "OBJECTID_1": 9272, "PARCEL_NO_": "105301082200", "Tax_Legal_": "SOLBERG 79-34 LITTLE NORTHSIDE QTR", "Name": "WILLIAMS, VERNA", "Address": "PO Box 305150", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43900, "Improved_V": 43500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.01766392600001, "SHAPE_Area": 1797.89932144 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357418.705700002610683, 257361.2331000007689 ], [ 357361.297499999403954, 257379.550599999725819 ], [ 357365.293099999427795, 257383.80519999936223 ], [ 357365.249899998307228, 257388.871100001037121 ], [ 357362.811200000345707, 257391.173099998384714 ], [ 357409.519799999892712, 257398.310400001704693 ], [ 357440.965899996459484, 257398.567800000309944 ], [ 357432.209799997508526, 257385.197200000286102 ], [ 357428.251999996602535, 257376.510000001639128 ], [ 357424.259999997913837, 257371.833299998193979 ], [ 357423.482400000095367, 257368.449400000274181 ], [ 357418.705700002610683, 257361.2331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302090300", "MAP": null, "PARCEL_NAM": "108", "ACRE": null, "LONGITUDE": -64.93356233, "LATITUDE": 18.34585411, "OBJECTID_1": 9784, "PARCEL_NO_": "105302090300", "Tax_Legal_": "AGNES FANCY 1O8 QUEENS QUARTER", "Name": "THOMAS, KENRICK & ARTHURLYN C.", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.15087313800001, "SHAPE_Area": 1430.9305300599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358538.679099999368191, 257369.76630000025034 ], [ 358501.813500002026558, 257343.077899999916553 ], [ 358501.443099997937679, 257386.560100000351667 ], [ 358531.109399996697903, 257406.434599999338388 ], [ 358533.619999997317791, 257395.689399998635054 ], [ 358538.679099999368191, 257369.76630000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401112400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93185565, "LATITUDE": 18.34599716, "OBJECTID_1": 11641, "PARCEL_NO_": "105401112400", "Tax_Legal_": "DOMINI GADE 8Q KINGS QTR", "Name": "CATUNA, ERNEST ORLANDO", "Address": "PO Box 189", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040189, "Country": "United States", "Land_Value": 7300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.810602389899998, "SHAPE_Area": 354.45791090199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358711.831299997866154, 257395.248100001364946 ], [ 358705.501299999654293, 257381.053100001066923 ], [ 358698.217500001192093, 257384.159800000488758 ], [ 358686.885899998247623, 257389.133299998939037 ], [ 358689.970899999141693, 257405.6239 ], [ 358711.831299997866154, 257395.248100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92320045, "LATITUDE": 18.34599048, "OBJECTID_1": 12498, "PARCEL_NO_": "105402040700", "Tax_Legal_": "HOSPITAL GROUND 182 NEW QUARTER", "Name": "ERNESTO & CHARLENE VANTERPOOL TRUST", "Address": "PO Box 9305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.842923403499995, "SHAPE_Area": 305.18102887399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359617.447899997234344, 257387.672499999403954 ], [ 359604.539700001478195, 257388.411299999803305 ], [ 359608.391400001943111, 257409.552099999040365 ], [ 359622.066299997270107, 257413.463700000196695 ], [ 359617.447899997234344, 257387.672499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302090400", "MAP": null, "PARCEL_NAM": "101", "ACRE": null, "LONGITUDE": -64.93329024000001, "LATITUDE": 18.34596811, "OBJECTID_1": 9785, "PARCEL_NO_": "105302090400", "Tax_Legal_": "AGNES FANCY 1O1 QUEENS QUARTER", "Name": "SARGEANT, DOROTHY M", "Address": "70 W 95 St", "City": "New York", "State": "New York", "Zip": 10025, "Country": "United States", "Land_Value": 30500, "Improved_V": 113100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.5103623304, "SHAPE_Area": 559.30173456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358561.918300002813339, 257386.844000000506639 ], [ 358538.679099999368191, 257369.76630000025034 ], [ 358533.619999997317791, 257395.689399998635054 ], [ 358557.735699996352196, 257404.541600000113249 ], [ 358557.807599999010563, 257396.098499998450279 ], [ 358561.918300002813339, 257386.844000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92273859, "LATITUDE": 18.34604701, "OBJECTID_1": 12502, "PARCEL_NO_": "105402041100", "Tax_Legal_": "HOSPITAL GROUND 196 NEW QTR", "Name": "SAMUEL, GLORIA", "Address": "PO Box 1415", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 10100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.6210222956, "SHAPE_Area": 350.71316563300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359677.016099996864796, 257399.770199999213219 ], [ 359644.738399997353554, 257402.461300000548363 ], [ 359647.067400000989437, 257413.035100001841784 ], [ 359679.343299999833107, 257410.554999999701977 ], [ 359677.016099996864796, 257399.770199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401171600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92813701, "LATITUDE": 18.34600448, "OBJECTID_1": 11734, "PARCEL_NO_": "105401171600", "Tax_Legal_": "HOSPITAL GROUND 2OO NEW QUARTER", "Name": "HENNEMAN, DORIS & DEBRA", "Address": "1153 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12700, "Improved_V": 121400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.807548151600002, "SHAPE_Area": 432.83568906 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359077.008100003004074, 257407.947200000286102 ], [ 359092.365800000727177, 257403.640000000596046 ], [ 359108.531599998474121, 257399.128199998289347 ], [ 359104.622299998998642, 257384.741900000721216 ], [ 359073.064699999988079, 257397.571400001645088 ], [ 359077.008100003004074, 257407.947200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302110800", "MAP": null, "PARCEL_NAM": "24A", "ACRE": null, "LONGITUDE": -64.93580524, "LATITUDE": 18.34591005, "OBJECTID_1": 9836, "PARCEL_NO_": "105302110800", "Tax_Legal_": "AGNES FANCY 24A QUEENS QUARTER", "Name": "RICHARDSON, RAPHAEL & DAPHNE", "Address": "PO Box 306995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30700, "Improved_V": 151000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.859492167200003, "SHAPE_Area": 290.71434007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358278.249200001358986, 257366.579300001263618 ], [ 358271.723099999129772, 257375.3918999992311 ], [ 358285.218299999833107, 257400.411299999803305 ], [ 358287.892499998211861, 257370.457899998873472 ], [ 358278.249200001358986, 257366.579300001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402050200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92246162000001, "LATITUDE": 18.34592551, "OBJECTID_1": 12519, "PARCEL_NO_": "105402050200", "Tax_Legal_": "HOSPITAL GROUND 192 NEW QUARTER", "Name": "NIBBS, JR, ARNOLD E.", "Address": "PO Box 502651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.129194205, "SHAPE_Area": 578.53555452299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359698.906999997794628, 257385.806099999696016 ], [ 359697.377099998295307, 257376.083299998193979 ], [ 359679.618400000035763, 257378.260000001639128 ], [ 359685.793799996376038, 257410.607799999415874 ], [ 359703.557899996638298, 257407.797899998724461 ], [ 359698.906999997794628, 257385.806099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9233371, "LATITUDE": 18.34597974, "OBJECTID_1": 12497, "PARCEL_NO_": "105402040600", "Tax_Legal_": "HOSPITAL GROUND 180 NEW QUARTER", "Name": "RICHARD, PIERRE", "Address": "PO Box 307968", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8600, "Improved_V": 35700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.773716937299994, "SHAPE_Area": 284.50180483000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359604.539700001478195, 257388.411299999803305 ], [ 359594.050399996340275, 257389.169799998402596 ], [ 359592.430600002408028, 257390.000900000333786 ], [ 359588.307300001382828, 257400.732900001108646 ], [ 359593.107400000095367, 257405.205200001597404 ], [ 359608.391400001943111, 257409.552099999040365 ], [ 359604.539700001478195, 257388.411299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401121500", "MAP": null, "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.9304621, "LATITUDE": 18.34597934, "OBJECTID_1": 11657, "PARCEL_NO_": "105401121500", "Tax_Legal_": "LYTTONS FANCY 7 OR 11 KINGS QTR", "Name": "HENDERSON, IONA E", "Address": "PO Box 503076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17100, "Improved_V": 55600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.588692669500006, "SHAPE_Area": 311.56334916200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358854.516199998557568, 257400.215599998831749 ], [ 358854.60249999910593, 257390.083799999207258 ], [ 358856.265500001609325, 257384.186799999326468 ], [ 358844.197800002992153, 257380.921700000762939 ], [ 358831.9341000020504, 257400.664099998772144 ], [ 358854.516199998557568, 257400.215599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301081400", "MAP": "A9-141-T70", "PARCEL_NAM": "79-29", "ACRE": "0.402", "LONGITUDE": -64.94494962, "LATITUDE": 18.34590158, "OBJECTID_1": 9264, "PARCEL_NO_": "105301081400", "Tax_Legal_": "SOLBERG 79-29 LT NORTHSIDE", "Name": "GUMBS, SAMUEL & LILLIAN", "Address": "PO Box 8141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61400, "Improved_V": 273800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.39164170800001, "SHAPE_Area": 1732.20010284 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357317.282899998128414, 257340.138099998235703 ], [ 357284.811099998652935, 257365.625700000673532 ], [ 357285.54900000244379, 257373.653299998492002 ], [ 357288.706000000238419, 257381.700699999928474 ], [ 357292.706900000572205, 257385.322000000625849 ], [ 357298.331399999558926, 257387.690099999308586 ], [ 357305.588200002908707, 257387.749499998986721 ], [ 357334.642399996519089, 257384.820900000631809 ], [ 357356.394799999892712, 257387.1097999997437 ], [ 357357.229900002479553, 257383.739199999719858 ], [ 357322.77250000089407, 257358.337000001221895 ], [ 357317.974200002849102, 257353.6537000015378 ], [ 357317.201999999582767, 257349.636599998921156 ], [ 357317.282899998128414, 257340.138099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302091400", "MAP": null, "PARCEL_NAM": "PALME STRAEDE 16 HG", "ACRE": null, "LONGITUDE": -64.93267242, "LATITUDE": 18.34601644, "OBJECTID_1": 9793, "PARCEL_NO_": "105302091400", "Tax_Legal_": "PALME STRAEDE 16 HG QUEENS QTR", "Name": "OLIVE, CECECIA I", "Address": "16 Hg Palm Straede", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12800, "Improved_V": 29200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.947867552999998, "SHAPE_Area": 46.977263476399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358616.657600000500679, 257397.846700001507998 ], [ 358618.291799999773502, 257395.326900001615286 ], [ 358607.858300000429153, 257389.541999999433756 ], [ 358607.81700000166893, 257394.396800000220537 ], [ 358609.409800000488758, 257396.731899999082088 ], [ 358616.657600000500679, 257397.846700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302091500", "MAP": null, "PARCEL_NAM": "PALME STRAEDE 16HB", "ACRE": null, "LONGITUDE": -64.93256608, "LATITUDE": 18.34600742, "OBJECTID_1": 9794, "PARCEL_NO_": "105302091500", "Tax_Legal_": "PALME STRAEDE 16HB QUEENS QUARTER", "Name": "NICHOLS, IRIS & OTHERS", "Address": "50 E Park St", "City": "East Orange", "State": "New Jersey", "Zip": 7017, "Country": "United States", "Land_Value": 12300, "Improved_V": 69200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.3172663175, "SHAPE_Area": 68.934808263999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.212600000202656, 257393.110700000077486 ], [ 358621.578199997544289, 257388.176600001752377 ], [ 358618.291799999773502, 257395.326900001615286 ], [ 358616.657600000500679, 257397.846700001507998 ], [ 358624.729800000786781, 257396.857299998402596 ], [ 358631.212600000202656, 257393.110700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302061900", "MAP": "D9-4640-T89", "PARCEL_NAM": "100", "ACRE": ".29", "LONGITUDE": -64.9342595, "LATITUDE": 18.34582725, "OBJECTID_1": 9702, "PARCEL_NO_": "105302061900", "Tax_Legal_": "AGNES FANCY 1OO QUEENS QUARTER", "Name": "HEDRINGTON, JAMES & D", "Address": "PO Box 305491", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65000, "Improved_V": 65800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.14706463499999, "SHAPE_Area": 1451.10142524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358416.773100003600121, 257386.711500000208616 ], [ 358447.355400003492832, 257393.71680000051856 ], [ 358449.799500003457069, 257390.781500000506639 ], [ 358465.28490000218153, 257371.48759999871254 ], [ 358485.588299997150898, 257354.55519999936223 ], [ 358475.903599999845028, 257355.531399998813868 ], [ 358463.780100002884865, 257358.80970000103116 ], [ 358454.908900000154972, 257358.94819999858737 ], [ 358439.617700003087521, 257355.445500001311302 ], [ 358430.777099996805191, 257351.995700001716614 ], [ 358416.773100003600121, 257386.711500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302091600", "MAP": null, "PARCEL_NAM": "PALME STAEDE 16HF", "ACRE": null, "LONGITUDE": -64.93265618, "LATITUDE": 18.34596185, "OBJECTID_1": 9795, "PARCEL_NO_": "105302091600", "Tax_Legal_": "PALME STAEDE 16HF QUEENS QTR", "Name": "SPENCER, JEANNETTE", "Address": "PO Box 1573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9700, "Improved_V": 75800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.190790713299997, "SHAPE_Area": 106.209136874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358621.578199997544289, 257388.176600001752377 ], [ 358609.537500001490116, 257381.745299998670816 ], [ 358607.093400001525879, 257384.680599998682737 ], [ 358607.858300000429153, 257389.541999999433756 ], [ 358618.291799999773502, 257395.326900001615286 ], [ 358621.578199997544289, 257388.176600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401110400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93170683, "LATITUDE": 18.34592834, "OBJECTID_1": 11623, "PARCEL_NO_": "105401110400", "Tax_Legal_": "8P DOMINI GADE KINGS QUARTER", "Name": "FERNANDES, JOSE", "Address": "PO Box 302307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7200, "Improved_V": 23100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.909781592500003, "SHAPE_Area": 193.18430500599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358723.166400000452995, 257389.85249999910593 ], [ 358716.834600001573563, 257375.868500001728535 ], [ 358705.501299999654293, 257381.053100001066923 ], [ 358711.831299997866154, 257395.248100001364946 ], [ 358723.166400000452995, 257389.85249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92275976000001, "LATITUDE": 18.34594957, "OBJECTID_1": 12503, "PARCEL_NO_": "105402041200", "Tax_Legal_": "HOSPITAL GROUND 195 NEW QUARTER", "Name": "TYSON, EBENEZER", "Address": "P.O. BOX 4122", "City": "Los Angeles", "State": "California", "Zip": 90075, "Country": "United States", "Land_Value": 10100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.728785496900002, "SHAPE_Area": 361.179877342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359675.497000001370907, 257388.780900001525879 ], [ 359642.411200001835823, 257391.676500000059605 ], [ 359644.738399997353554, 257402.461300000548363 ], [ 359677.016099996864796, 257399.770199999213219 ], [ 359675.497000001370907, 257388.780900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302091800", "MAP": null, "PARCEL_NAM": "PALME STAEDE 16HD", "ACRE": null, "LONGITUDE": -64.93250575, "LATITUDE": 18.34593646, "OBJECTID_1": 9797, "PARCEL_NO_": "105302091800", "Tax_Legal_": "16HD PALME STAEDE QUEENS QUARTER", "Name": "FRAZER, ARTHUR", "Address": "P.O. BOX 2892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 84400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.995197947299999, "SHAPE_Area": 140.42201061399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358639.356700003147125, 257383.678100001066923 ], [ 358626.498800002038479, 257378.506599999964237 ], [ 358621.578199997544289, 257388.176600001752377 ], [ 358631.212600000202656, 257393.110700000077486 ], [ 358639.356700003147125, 257383.678100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302110200", "MAP": null, "PARCEL_NAM": "AGNES FANCY PCL", "ACRE": null, "LONGITUDE": -64.93627837, "LATITUDE": 18.34585396, "OBJECTID_1": 9830, "PARCEL_NO_": "105302110200", "Tax_Legal_": "AGNES FANCY PCL GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 209500, "Improved_V": 78600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.495413582899999, "SHAPE_Area": 414.40271208000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358243.653200000524521, 257357.430300001055002 ], [ 358239.616300001740456, 257358.030499998480082 ], [ 358215.227300003170967, 257381.262299999594688 ], [ 358214.115099996328354, 257384.783500000834465 ], [ 358216.782399997115135, 257388.030000001192093 ], [ 358221.611299999058247, 257389.125 ], [ 358224.04280000180006, 257387.667199999094009 ], [ 358246.808399997651577, 257365.688700001686811 ], [ 358247.627300001680851, 257364.217799998819828 ], [ 358247.654200002551079, 257361.051600001752377 ], [ 358246.06139999628067, 257358.716499999165535 ], [ 358243.653200000524521, 257357.430300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92363295, "LATITUDE": 18.3458855, "OBJECTID_1": 12463, "PARCEL_NO_": "105402011800", "Tax_Legal_": "HOSPITAL GROUND 176 & A-11 NEW QTR", "Name": "HODGE, OSBORNE & OTHERS", "Address": "7696 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.371136185, "SHAPE_Area": 633.25636139300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359588.483499996364117, 257380.047200001776218 ], [ 359554.63459999859333, 257377.870299998670816 ], [ 359552.188699997961521, 257381.016699999570847 ], [ 359546.429399996995926, 257394.479600001126528 ], [ 359581.068499997258186, 257398.562699999660254 ], [ 359588.483499996364117, 257380.047200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096200", "MAP": null, "PARCEL_NAM": "79-17", "ACRE": "0.239", "LONGITUDE": -64.94722626, "LATITUDE": 18.34570068, "OBJECTID_1": 9345, "PARCEL_NO_": "105301096200", "Tax_Legal_": "SOLBERG 1B-17 LT. NORTHSIDE QTR.", "Name": "BREWLEY, JOYCELYN", "Address": "16 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 22600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.81250260900001, "SHAPE_Area": 1715.17897238 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357052.677599996328354, 257353.804400000721216 ], [ 357058.930299997329712, 257377.075899999588728 ], [ 357066.199699997901917, 257375.657699998468161 ], [ 357092.042999997735023, 257371.01410000026226 ], [ 357088.940099999308586, 257356.634300000965595 ], [ 357087.438900001347065, 257343.534200001507998 ], [ 357086.815999999642372, 257321.997600000351667 ], [ 357089.3716000020504, 257305.975400000810623 ], [ 357087.777000002563, 257303.851399999111891 ], [ 357084.551700003445148, 257303.824999999254942 ], [ 357078.858999997377396, 257309.477899998426437 ], [ 357052.677599996328354, 257353.804400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301082300", "MAP": "A9-141-T70", "PARCEL_NAM": "79-33", "ACRE": "0.467", "LONGITUDE": -64.94432136, "LATITUDE": 18.34577326, "OBJECTID_1": 9273, "PARCEL_NO_": "105301082300", "Tax_Legal_": "SOLBERG 79-33 LITTLE NORTHSIDE", "Name": "DORSETT, CHARLES & VENETTA", "Address": "PO Box 9052", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55600, "Improved_V": 186100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.34004454000001, "SHAPE_Area": 1936.87546862 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357401.220299996435642, 257331.325800001621246 ], [ 357338.061800003051758, 257362.050799999386072 ], [ 357361.297499999403954, 257379.550599999725819 ], [ 357418.705700002610683, 257361.2331000007689 ], [ 357410.771999999880791, 257345.969500001519918 ], [ 357407.577299997210503, 257342.354699999094009 ], [ 357401.220299996435642, 257331.325800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401110300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9316076, "LATITUDE": 18.34588426, "OBJECTID_1": 11622, "PARCEL_NO_": "105401110300", "Tax_Legal_": "DOMINI GADE 8G KINGS QUARTER", "Name": "FERNANDES, JOSE", "Address": "PO Box 302307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12200, "Improved_V": 21000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.612560711100002, "SHAPE_Area": 161.01635450399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358732.881700001657009, 257385.287900000810623 ], [ 358726.546300001442432, 257371.726100001484156 ], [ 358720.880500003695488, 257374.212799999862909 ], [ 358716.834600001573563, 257375.868500001728535 ], [ 358723.166400000452995, 257389.85249999910593 ], [ 358732.881700001657009, 257385.287900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302063500", "MAP": null, "PARCEL_NAM": "16 NORDSIDEVEJ", "ACRE": "3,191 sq ft", "LONGITUDE": -64.9352028, "LATITUDE": 18.3458969, "OBJECTID_1": 9716, "PARCEL_NO_": "105302063500", "Tax_Legal_": "13 NORDSIDEVEJ QUEENS'S QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 152900, "Improved_V": 147700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.657228155, "SHAPE_Area": 207.857746056 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358345.133400000631809, 257388.599500000476837 ], [ 358366.19709999859333, 257356.152899999171495 ], [ 358357.273199997842312, 257366.592799998819828 ], [ 358351.578599996864796, 257372.456799998879433 ], [ 358348.326399996876717, 257375.596599999815226 ], [ 358338.625500001013279, 257378.472500000149012 ], [ 358326.503799997270107, 257381.539700001478195 ], [ 358340.167999997735023, 257386.717799998819828 ], [ 358345.133400000631809, 257388.599500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401112600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93206562, "LATITUDE": 18.34587846, "OBJECTID_1": 11643, "PARCEL_NO_": "105401112600", "Tax_Legal_": "PALM STRAEDE 16J CROWN PRINCE QTR", "Name": "MADURO, GODWIN & ALICIA", "Address": "9102 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.320088830299994, "SHAPE_Area": 236.076789816 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358687.006399996578693, 257374.991099998354912 ], [ 358676.549500003457069, 257371.950199998915195 ], [ 358670.032499998807907, 257379.707299999892712 ], [ 358653.1503000035882, 257373.658500000834465 ], [ 358651.525100000202656, 257375.122900001704693 ], [ 358686.885899998247623, 257389.133299998939037 ], [ 358687.006399996578693, 257374.991099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401110800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93192309, "LATITUDE": 18.34588636, "OBJECTID_1": 11626, "PARCEL_NO_": "105401110800", "Tax_Legal_": "DOMINI GADE 8O KINGS QUARTER", "Name": "RABSATT, EMANUEL B", "Address": "PO Box 302983", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7100, "Improved_V": 17200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.580675555100001, "SHAPE_Area": 125.78308651499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358698.217500001192093, 257384.159800000488758 ], [ 358693.482100002467632, 257372.088799998164177 ], [ 358687.006399996578693, 257374.991099998354912 ], [ 358686.885899998247623, 257389.133299998939037 ], [ 358698.217500001192093, 257384.159800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302091700", "MAP": null, "PARCEL_NAM": "PALME STAEDE 16 H E", "ACRE": null, "LONGITUDE": -64.93261842, "LATITUDE": 18.3458903, "OBJECTID_1": 9796, "PARCEL_NO_": "105302091700", "Tax_Legal_": "PALME STAEDE 16 H E QUEENS QTR", "Name": "BARBARA MARK", "Address": "PO Box 542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040542, "Country": "United States", "Land_Value": 8100, "Improved_V": 61800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.724992488700003, "SHAPE_Area": 137.86760235400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358626.498800002038479, 257378.506599999964237 ], [ 358613.641000002622604, 257373.335099998861551 ], [ 358611.175300002098083, 257378.803399998694658 ], [ 358609.537500001490116, 257381.745299998670816 ], [ 358621.578199997544289, 257388.176600001752377 ], [ 358626.498800002038479, 257378.506599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302350300", "MAP": "B9-380-T73", "PARCEL_NAM": null, "ACRE": "1.23", "LONGITUDE": -64.93324421, "LATITUDE": 18.34547325, "OBJECTID_1": 10622, "PARCEL_NO_": "105302350300", "Tax_Legal_": "DENMARK HILL QUEENS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 457100, "Improved_V": 1044300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.374654045, "SHAPE_Area": 4960.4379509600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358595.521999999880791, 257323.157699998468161 ], [ 358581.150399997830391, 257306.363699998706579 ], [ 358558.796599999070168, 257280.005100000649691 ], [ 358501.813500002026558, 257343.077899999916553 ], [ 358538.679099999368191, 257369.76630000025034 ], [ 358561.918300002813339, 257386.844000000506639 ], [ 358578.351999998092651, 257350.881499998271465 ], [ 358580.794399999082088, 257348.157299999147654 ], [ 358582.441100001335144, 257344.160000000149012 ], [ 358584.881700001657009, 257341.646800000220537 ], [ 358595.521999999880791, 257323.157699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301080600", "MAP": "A9-141-T70", "PARCEL_NAM": "79-23", "ACRE": "0.429", "LONGITUDE": -64.94644341, "LATITUDE": 18.34569137, "OBJECTID_1": 9256, "PARCEL_NO_": "105301080600", "Tax_Legal_": "SOLBERG 79-23 LITTLE NORTHSIDE", "Name": "THOMAS R BLAKE", "Address": "PO Box 87", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040087, "Country": "United States", "Land_Value": 75800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.71552184699999, "SHAPE_Area": 1755.00818327 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357179.945500001311302, 257370.044799998402596 ], [ 357179.270400002598763, 257354.629399999976158 ], [ 357160.229999996721745, 257317.9543999992311 ], [ 357128.715499997138977, 257325.717999998480082 ], [ 357150.918200001120567, 257369.807199999690056 ], [ 357166.196800000965595, 257374.787399999797344 ], [ 357172.65089999884367, 257374.418000001460314 ], [ 357176.696900002658367, 257372.76240000128746 ], [ 357179.945500001311302, 257370.044799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401110600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9314435, "LATITUDE": 18.34581092, "OBJECTID_1": 11624, "PARCEL_NO_": "105401110600", "Tax_Legal_": "DOMINI GADE 8B KINGS QUARTER", "Name": "HEIRS OF ROSAMOND MILLIN", "Address": "PO Box 9885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18000, "Improved_V": 28400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.826878988999994, "SHAPE_Area": 401.348760379 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358741.113899998366833, 257365.512499999254942 ], [ 358730.592200003564358, 257370.070500001311302 ], [ 358726.546300001442432, 257371.726100001484156 ], [ 358732.881700001657009, 257385.287900000810623 ], [ 358757.171800002455711, 257373.665500000119209 ], [ 358753.253499999642372, 257360.334499999880791 ], [ 358741.113899998366833, 257365.512499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302092000", "MAP": null, "PARCEL_NAM": "PALME STAEDE 16HA", "ACRE": null, "LONGITUDE": -64.93245369, "LATITUDE": 18.34584344, "OBJECTID_1": 9799, "PARCEL_NO_": "105302092000", "Tax_Legal_": "PALME STAEDE 16HA QUEENS QUARTER", "Name": "FRAZER, ARTHUR (LIFE ESTATE)", "Address": "PO Box 302892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9000, "Improved_V": 61800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.222352367900001, "SHAPE_Area": 169.69638917200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358632.243699997663498, 257366.732400000095367 ], [ 358626.498800002038479, 257378.506599999964237 ], [ 358639.356700003147125, 257383.678100001066923 ], [ 358644.284400001168251, 257373.163800001144409 ], [ 358632.243699997663498, 257366.732400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401110900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93184786, "LATITUDE": 18.3458486, "OBJECTID_1": 11627, "PARCEL_NO_": "105401110900", "Tax_Legal_": "DOMINI GADE 8N KINGS QUARTER", "Name": "GARFIELD, LISTON A. & JACQUELYN B.", "Address": "2060 Mohican Dr", "City": "Waverly", "State": "Alabama", "Zip": 36879, "Country": "United States", "Land_Value": 5600, "Improved_V": 59200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.770697522600003, "SHAPE_Area": 102.634817919 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358705.501299999654293, 257381.053100001066923 ], [ 358700.765900000929832, 257368.98200000077486 ], [ 358693.482100002467632, 257372.088799998164177 ], [ 358698.217500001192093, 257384.159800000488758 ], [ 358705.501299999654293, 257381.053100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92278059, "LATITUDE": 18.34584303, "OBJECTID_1": 12504, "PARCEL_NO_": "105402041300", "Tax_Legal_": "HOSPITAL GROUND 194 NEW QUARTER", "Name": "DALMIDA, GLOVER & OTHERS", "Address": "148 Filbert St", "City": "Norfolk", "State": "Virginia", "Zip": 23505, "Country": "United States", "Land_Value": 10100, "Improved_V": 91700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.4182325843, "SHAPE_Area": 427.39031865300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359640.101899996399879, 257378.780900001525879 ], [ 359640.884900003671646, 257381.531500000506639 ], [ 359641.651600003242493, 257386.18189999833703 ], [ 359642.411200001835823, 257391.676500000059605 ], [ 359675.497000001370907, 257388.780900001525879 ], [ 359673.185900002717972, 257376.096400000154972 ], [ 359640.101899996399879, 257378.780900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301080800", "MAP": "A9-141-T70", "PARCEL_NAM": "79-24", "ACRE": "0.440", "LONGITUDE": -64.94618396, "LATITUDE": 18.34550842, "OBJECTID_1": 9258, "PARCEL_NO_": "105301080800", "Tax_Legal_": "SOLBERG 79-24 LT NORTHSIDE", "Name": "GEORGE, LLEWELLYN D. & MARY E.", "Address": "PO Box 7443", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.432862701, "SHAPE_Area": 2282.22726061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357169.275700002908707, 257297.341299999505281 ], [ 357161.975699998438358, 257302.347800001502037 ], [ 357161.920000001788139, 257308.891199998557568 ], [ 357160.229999996721745, 257317.9543999992311 ], [ 357179.270400002598763, 257354.629399999976158 ], [ 357179.945500001311302, 257370.044799998402596 ], [ 357201.865199998021126, 257352.703400000929832 ], [ 357211.582299999892712, 257347.927799999713898 ], [ 357187.907200001180172, 257287.361299999058247 ], [ 357177.38740000128746, 257291.708099998533726 ], [ 357169.275700002908707, 257297.341299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401111000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93174296, "LATITUDE": 18.34580404, "OBJECTID_1": 11628, "PARCEL_NO_": "105401111000", "Tax_Legal_": "DOMINI GADE 8M KINGS QTR", "Name": "HODGE, L. & V. , & REOVAN, V", "Address": "PO Box 6815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.631556205099997, "SHAPE_Area": 210.631477254 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358720.880500003695488, 257374.212799999862909 ], [ 358715.335199996829033, 257362.557300001382828 ], [ 358700.765900000929832, 257368.98200000077486 ], [ 358705.501299999654293, 257381.053100001066923 ], [ 358716.834600001573563, 257375.868500001728535 ], [ 358720.880500003695488, 257374.212799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302061400", "MAP": null, "PARCEL_NAM": "INTE GADE 2", "ACRE": null, "LONGITUDE": -64.93554325, "LATITUDE": 18.34572652, "OBJECTID_1": 9698, "PARCEL_NO_": "105302061400", "Tax_Legal_": "2 INTER GADE QUEENS QUARTER", "Name": "SCATLIFFE (LIFE ESTATE), ELTIRA", "Address": "PO Box 303264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46500, "Improved_V": 47800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.534151843, "SHAPE_Area": 696.31977267900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358314.696900002658367, 257347.668099999427795 ], [ 358302.650700002908707, 257341.870000001043081 ], [ 358291.951099999248981, 257367.324799999594688 ], [ 358316.057700000703335, 257377.232400000095367 ], [ 358325.938500002026558, 257353.248599998652935 ], [ 358314.696900002658367, 257347.668099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302061700", "MAP": null, "PARCEL_NAM": "3 INTE GADE", "ACRE": null, "LONGITUDE": -64.93525877, "LATITUDE": 18.34569141, "OBJECTID_1": 9701, "PARCEL_NO_": "105302061700", "Tax_Legal_": "3 INTE GADE QUEENS QUARTER", "Name": "JOSEPH, ISMAY T.", "Address": "PO Box 6453", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 78300, "Improved_V": 171700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.71942241299999, "SHAPE_Area": 1095.45284498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358334.17960000038147, 257332.41780000180006 ], [ 358325.938500002026558, 257353.248599998652935 ], [ 358316.057700000703335, 257377.232400000095367 ], [ 358333.820000000298023, 257374.633499998599291 ], [ 358341.913699999451637, 257371.111200001090765 ], [ 358354.893799997866154, 257361.929299999028444 ], [ 358359.780199997127056, 257356.269799999892712 ], [ 358363.871100001037121, 257349.337200000882149 ], [ 358334.17960000038147, 257332.41780000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401112500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93217262, "LATITUDE": 18.34581493, "OBJECTID_1": 11642, "PARCEL_NO_": "105401112500", "Tax_Legal_": "PALM STRAEDE 16A QUEENS QUARTER", "Name": "MADURO, GODWIN & ALICIA", "Address": "9102 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7200, "Improved_V": 55200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.465825957100002, "SHAPE_Area": 177.95101008899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358653.1503000035882, 257373.658500000834465 ], [ 358670.032499998807907, 257379.707299999892712 ], [ 358676.549500003457069, 257371.950199998915195 ], [ 358662.093400001525879, 257365.076900001615286 ], [ 358653.1503000035882, 257373.658500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302091900", "MAP": null, "PARCEL_NAM": "PALME STAEDE 16HC", "ACRE": null, "LONGITUDE": -64.93257241000001, "LATITUDE": 18.34579171, "OBJECTID_1": 9798, "PARCEL_NO_": "105302091900", "Tax_Legal_": "PALME STAEDE 16HC QUEENS QTR", "Name": "HENLELY, ELROY M", "Address": "PO Box 505", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 5600, "Improved_V": 44000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.214032239600002, "SHAPE_Area": 192.16351089299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358613.641000002622604, 257373.335099998861551 ], [ 358626.498800002038479, 257378.506599999964237 ], [ 358632.243699997663498, 257366.732400000095367 ], [ 358620.203000001609325, 257360.300999999046326 ], [ 358617.746299996972084, 257364.713899999856949 ], [ 358616.927400000393391, 257366.184900000691414 ], [ 358613.641000002622604, 257373.335099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302110700", "MAP": null, "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.93590003, "LATITUDE": 18.34579903, "OBJECTID_1": 9835, "PARCEL_NO_": "105302110700", "Tax_Legal_": "AGNES FANCY 24 QUEENS QUARTER", "Name": "EVEREST, JOANNE B. & BESS, JANICE", "Address": "PO Box 1502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23600, "Improved_V": 21200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.202890466299998, "SHAPE_Area": 82.721668713699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358271.723099999129772, 257375.3918999992311 ], [ 358278.249200001358986, 257366.579300001263618 ], [ 358263.784100003540516, 257360.761399999260902 ], [ 358271.723099999129772, 257375.3918999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92217032000001, "LATITUDE": 18.34572658, "OBJECTID_1": 12634, "PARCEL_NO_": "105402094600", "Tax_Legal_": "C-15 ESTATE ROSS NEW QTR.", "Name": "WILLIAMS, FITZROY", "Address": "PO Box 12342", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25800, "Improved_V": 7100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.38500142199999, "SHAPE_Area": 1166.3467604499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359722.520199999213219, 257358.979400001466274 ], [ 359695.847199998795986, 257366.360500000417233 ], [ 359697.377099998295307, 257376.083299998193979 ], [ 359698.906999997794628, 257385.806099999696016 ], [ 359705.361100003123283, 257385.436799999326468 ], [ 359739.247800000011921, 257383.181000001728535 ], [ 359748.266500003635883, 257365.734000001102686 ], [ 359749.918700002133846, 257361.103500001132488 ], [ 359735.453599996864796, 257355.285599999129772 ], [ 359722.520199999213219, 257358.979400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402041500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92327987, "LATITUDE": 18.34574598, "OBJECTID_1": 12505, "PARCEL_NO_": "105402041500", "Tax_Legal_": "HOSPITAL GROUND 179 NEW QUARTER", "Name": "GUMBS, CALMA I", "Address": "BOX 4109", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10500, "Improved_V": 35600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.854099091999998, "SHAPE_Area": 299.30847529900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359609.672399997711182, 257353.83390000090003 ], [ 359606.443599998950958, 257354.229699999094009 ], [ 359603.130199998617172, 257364.54619999974966 ], [ 359601.499600000679493, 257366.643699999898672 ], [ 359594.894500002264977, 257384.743700001388788 ], [ 359611.8378000035882, 257383.615800000727177 ], [ 359609.672399997711182, 257353.83390000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301081500", "MAP": "A9-141-T70", "PARCEL_NAM": "79-28", "ACRE": "0.362", "LONGITUDE": -64.94509096, "LATITUDE": 18.34553592, "OBJECTID_1": 9265, "PARCEL_NO_": "105301081500", "Tax_Legal_": "SOLBERG 79-28 LITTLE NORTHSIDE", "Name": "GUMBS, SAMUEL & LILLIAN", "Address": "PO Box 8141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.52613463399999, "SHAPE_Area": 1596.7138861400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357309.622599996626377, 257292.790399998426437 ], [ 357276.159199997782707, 257340.012600000947714 ], [ 357279.357500001788139, 257343.205099999904633 ], [ 357282.525200001895428, 257349.986099999397993 ], [ 357284.811099998652935, 257365.625700000673532 ], [ 357317.282899998128414, 257340.138099998235703 ], [ 357317.568800002336502, 257306.576499998569489 ], [ 357315.198499999940395, 257300.857599999755621 ], [ 357309.622599996626377, 257292.790399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92167425, "LATITUDE": 18.34570164, "OBJECTID_1": 12610, "PARCEL_NO_": "105402092100", "Tax_Legal_": "ROSS ESTATE C-16 NEW QTR.", "Name": "MADURO, GERTRUDE C. & CELLECIA R. FRANCIS", "Address": "PO Box 10647", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27400, "Improved_V": 40800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.03286172899999, "SHAPE_Area": 963.77595860400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359793.770700000226498, 257361.459899999201298 ], [ 359760.467299997806549, 257353.379399999976158 ], [ 359759.635799996554852, 257356.327899999916553 ], [ 359756.372800000011921, 257360.734099999070168 ], [ 359750.618900001049042, 257373.563700001686811 ], [ 359782.768899999558926, 257385.859200000762939 ], [ 359784.283100001513958, 257386.50959999859333 ], [ 359800.244000002741814, 257364.826099999248981 ], [ 359801.698399998247623, 257363.480200000107288 ], [ 359793.770700000226498, 257361.459899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402041600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92316787, "LATITUDE": 18.34570616, "OBJECTID_1": 12506, "PARCEL_NO_": "105402041600", "Tax_Legal_": "HOSPITAL GROUND 181 NEW QUARTER", "Name": "TODMAN, LEROY A", "Address": "PO Box 12", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10100, "Improved_V": 42500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.113326848699998, "SHAPE_Area": 376.58427101400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359624.747800000011921, 257382.666000001132488 ], [ 359621.777900002896786, 257352.666400000452995 ], [ 359609.672399997711182, 257353.83390000090003 ], [ 359611.8378000035882, 257383.615800000727177 ], [ 359624.747800000011921, 257382.666000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401111600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93199704, "LATITUDE": 18.3456927, "OBJECTID_1": 11633, "PARCEL_NO_": "105401111600", "Tax_Legal_": "PALM STRAEDE 16B & C 16I KINGS QTR", "Name": "DONOVAN, RACHEAL", "Address": "PALM STRAEDE #16B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25500, "Improved_V": 117800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.855515608900006, "SHAPE_Area": 204.24972605799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358678.385099999606609, 257345.789599999785423 ], [ 358684.797899998724461, 257350.274999998509884 ], [ 358678.178300000727177, 257370.063700001686811 ], [ 358676.549500003457069, 257371.950199998915195 ], [ 358687.006399996578693, 257374.991099998354912 ], [ 358687.029799997806549, 257372.247000001370907 ], [ 358687.126900002360344, 257360.848799999803305 ], [ 358688.087899997830391, 257342.702599998563528 ], [ 358681.642700001597404, 257342.016600001603365 ], [ 358678.385099999606609, 257345.789599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402041700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92303807, "LATITUDE": 18.34569758, "OBJECTID_1": 12507, "PARCEL_NO_": "105402041700", "Tax_Legal_": "HOSPITAL GROUND 183 NEW QUARTER", "Name": "BARTON-HODGE, M. & HALL, SHIRLEAN", "Address": "PO Box 11457", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.394730576699999, "SHAPE_Area": 450.45379209599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359623.392300002276897, 257352.468600001186132 ], [ 359621.777900002896786, 257352.666400000452995 ], [ 359624.747800000011921, 257382.666000001132488 ], [ 359640.884900003671646, 257381.531500000506639 ], [ 359640.101899996399879, 257378.780900001525879 ], [ 359638.582800000905991, 257367.791600000113249 ], [ 359636.259199999272823, 257356.584600001573563 ], [ 359635.494199998676777, 257351.723200000822544 ], [ 359623.392300002276897, 257352.468600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401111100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93162506, "LATITUDE": 18.34575236, "OBJECTID_1": 11629, "PARCEL_NO_": "105401111100", "Tax_Legal_": "DOMINI GADE 8E KINGS QTR", "Name": "HODGE, L. & V. , & REOVAN, V", "Address": "PO Box 6815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12300, "Improved_V": 175100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.899591570799998, "SHAPE_Area": 142.037945643 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358730.592200003564358, 257370.070500001311302 ], [ 358725.856899999082088, 257357.999400001019239 ], [ 358715.335199996829033, 257362.557300001382828 ], [ 358720.880500003695488, 257374.212799999862909 ], [ 358726.546300001442432, 257371.726100001484156 ], [ 358730.592200003564358, 257370.070500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301082400", "MAP": "A9-141-T70", "PARCEL_NAM": "79-32", "ACRE": "0.555", "LONGITUDE": -64.94452707000001, "LATITUDE": 18.34555115, "OBJECTID_1": 9274, "PARCEL_NO_": "105301082400", "Tax_Legal_": "SOLBERG 79-32 LITTLE NORTHSIDE", "Name": "SYLVEST, ALFRED, GLORIA & VERNA", "Address": "PO Box 305150", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63000, "Improved_V": 278000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.36656381500001, "SHAPE_Area": 2487.3284234799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357383.727799996733665, 257302.262800000607967 ], [ 357323.816100001335144, 257330.481199998408556 ], [ 357323.638099998235703, 257351.377999998629093 ], [ 357338.061800003051758, 257362.050799999386072 ], [ 357401.220299996435642, 257331.325800001621246 ], [ 357397.239100001752377, 257325.382599998265505 ], [ 357392.485799998044968, 257315.4222999997437 ], [ 357390.88570000231266, 257313.931600000709295 ], [ 357383.727799996733665, 257302.262800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92355336, "LATITUDE": 18.34571794, "OBJECTID_1": 12464, "PARCEL_NO_": "105402011900", "Tax_Legal_": "HOSPITAL GROUND 174 NEW QTR", "Name": "TESTAMARK, PRASCIO & OTHERS", "Address": "PO Box 8285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10400, "Improved_V": 25500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.29727164800001, "SHAPE_Area": 628.576028759 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359578.188500002026558, 257358.009199999272823 ], [ 359570.141500003635883, 257356.043499998748302 ], [ 359554.63459999859333, 257377.870299998670816 ], [ 359588.483499996364117, 257380.047200001776218 ], [ 359595.085100002586842, 257362.36939999833703 ], [ 359578.188500002026558, 257358.009199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401111700", "MAP": null, "PARCEL_NAM": "8LB", "ACRE": ".04", "LONGITUDE": -64.93189996, "LATITUDE": 18.34573544, "OBJECTID_1": 11634, "PARCEL_NO_": "105401111700", "Tax_Legal_": "DOMINI GADE 8LB KINGS QUARTER", "Name": "DOOBAY, HAIMNARINE", "Address": "PO Box 483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040483, "Country": "United States", "Land_Value": 9200, "Improved_V": 25600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.482000946200003, "SHAPE_Area": 153.18605945600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358703.217200003564358, 257365.202300000935793 ], [ 358699.259300000965595, 257356.515099998563528 ], [ 358687.126900002360344, 257360.848799999803305 ], [ 358687.029799997806549, 257372.247000001370907 ], [ 358703.217200003564358, 257365.202300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401111600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93208216, "LATITUDE": 18.34569678, "OBJECTID_1": 11633, "PARCEL_NO_": "105401111600", "Tax_Legal_": "PALM STRAEDE 16B & C 16I KINGS QTR", "Name": "DONOVAN, RACHEAL", "Address": "PALM STRAEDE #16B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25500, "Improved_V": 117800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.438737985200007, "SHAPE_Area": 293.26846707599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358662.093400001525879, 257365.076900001615286 ], [ 358676.549500003457069, 257371.950199998915195 ], [ 358678.178300000727177, 257370.063700001686811 ], [ 358684.797899998724461, 257350.274999998509884 ], [ 358678.385099999606609, 257345.789599999785423 ], [ 358662.093400001525879, 257365.076900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401110700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93129981, "LATITUDE": 18.34570619, "OBJECTID_1": 11625, "PARCEL_NO_": "105401110700", "Tax_Legal_": "DOMINI GADE 8R KINGS QUARTER", "Name": "DANIEL, MICHAEL A", "Address": "PO Box 306972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18000, "Improved_V": 54800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.023678992699999, "SHAPE_Area": 80.253319598900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358762.212899997830391, 257349.853199999779463 ], [ 358753.253499999642372, 257360.334499999880791 ], [ 358757.171800002455711, 257373.665500000119209 ], [ 358762.212899997830391, 257349.853199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401240200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92463224, "LATITUDE": 18.34569322, "OBJECTID_1": 11801, "PARCEL_NO_": "105401240200", "Tax_Legal_": "HOSPITAL GROUND 142 NEW QTR", "Name": "ENRIQUE, KIMBA", "Address": "1454 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7700, "Improved_V": 300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.458102518, "SHAPE_Area": 484.06843532300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359454.642899997532368, 257378.107400000095367 ], [ 359478.879000000655651, 257372.817299999296665 ], [ 359484.534000001847744, 257371.597100000828505 ], [ 359447.648599997162819, 257347.230500001460314 ], [ 359454.642899997532368, 257378.107400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92280262, "LATITUDE": 18.34573834, "OBJECTID_1": 12508, "PARCEL_NO_": "105402041800", "Tax_Legal_": "HOSPITAL GROUND 193 NEW QTR", "Name": "BAILEY, F A & N", "Address": "P O BOX 2522", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10100, "Improved_V": 80600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.452373551899996, "SHAPE_Area": 349.350597693 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359671.657799996435642, 257366.162500001490116 ], [ 359638.582800000905991, 257367.791600000113249 ], [ 359640.101899996399879, 257378.780900001525879 ], [ 359673.185900002717972, 257376.096400000154972 ], [ 359671.657799996435642, 257366.162500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302061300", "MAP": null, "PARCEL_NAM": "INTE GADE 1", "ACRE": null, "LONGITUDE": -64.93571754, "LATITUDE": 18.34554376, "OBJECTID_1": 9697, "PARCEL_NO_": "105302061300", "Tax_Legal_": "INTE GADE 1 QUEENS QUARTER", "Name": "BURNETT-STERN, MARIE LOUISE, TRU", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71600, "Improved_V": 51400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.998038487, "SHAPE_Area": 1198.08835088 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358302.650700002908707, 257341.870000001043081 ], [ 358311.694600000977516, 257321.467999998480082 ], [ 358288.394199997186661, 257311.56700000166893 ], [ 358284.258400000631809, 257323.776500001549721 ], [ 358281.783699996769428, 257330.300200000405312 ], [ 358276.841499999165535, 257342.503199998289347 ], [ 358270.254399999976158, 257358.492300000041723 ], [ 358291.951099999248981, 257367.324799999594688 ], [ 358302.650700002908707, 257341.870000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92252047, "LATITUDE": 18.34564031, "OBJECTID_1": 12520, "PARCEL_NO_": "105402050300", "Tax_Legal_": "HOSPITAL GROUND 190 NEW QUARTER", "Name": "NIBBS, JR, ARNOLD E.", "Address": "PO Box 502651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.389515001000007, "SHAPE_Area": 572.91888037900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359679.618400000035763, 257378.260000001639128 ], [ 359697.377099998295307, 257376.083299998193979 ], [ 359695.847199998795986, 257366.360500000417233 ], [ 359691.963100001215935, 257349.019000001251698 ], [ 359691.196299999952316, 257344.368700001388788 ], [ 359673.426899999380112, 257347.811799999326468 ], [ 359679.618400000035763, 257378.260000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401111200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93152493, "LATITUDE": 18.3457049, "OBJECTID_1": 11630, "PARCEL_NO_": "105401111200", "Tax_Legal_": "DOMINI GADE 8D KINGS QUARTER", "Name": "Calvin,Catherine,Calvert,Guellmo Turnbull&E Alferz", "Address": "8533 Enochs Dr", "City": "Lorton", "State": "Virginia", "Zip": 220791336, "Country": "United States", "Land_Value": 7800, "Improved_V": 71800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.613367765, "SHAPE_Area": 170.207471696 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358741.113899998366833, 257365.512499999254942 ], [ 358737.204599998891354, 257351.126200001686811 ], [ 358735.584799997508526, 257351.957299999892712 ], [ 358725.856899999082088, 257357.999400001019239 ], [ 358730.592200003564358, 257370.070500001311302 ], [ 358741.113899998366833, 257365.512499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302092100", "MAP": null, "PARCEL_NAM": "LEMON STRAEDE 1A", "ACRE": null, "LONGITUDE": -64.93237682, "LATITUDE": 18.34567442, "OBJECTID_1": 9800, "PARCEL_NO_": "105302092100", "Tax_Legal_": "LEMON STRAEDE 1A QUEENS QUARTER", "Name": "SMITH, RANDOLPH-EST. , SMITH, I & W.", "Address": "PO Box 533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6600, "Improved_V": 55000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.425100783200001, "SHAPE_Area": 211.82901853600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358651.550499998033047, 257348.318399999290705 ], [ 358641.928999997675419, 257345.851300001144409 ], [ 358641.274999998509884, 257347.807900000363588 ], [ 358635.499499998986721, 257363.170499999076128 ], [ 358645.934799998998642, 257368.744300000369549 ], [ 358650.930900000035763, 257350.208999998867512 ], [ 358651.550499998033047, 257348.318399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302093800", "MAP": null, "PARCEL_NAM": "PALME STAEDE 16H-1", "ACRE": null, "LONGITUDE": -64.93283435, "LATITUDE": 18.34567344, "OBJECTID_1": 9815, "PARCEL_NO_": "105302093800", "Tax_Legal_": "PALME STAEDE 16H-1 QUEENS QTR", "Name": "GORDON, HYACINTH & MARCIA", "Address": "PO Box 304264", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18800, "Improved_V": 60000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.855055800100004, "SHAPE_Area": 303.81936568999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358583.118000000715256, 257359.364199999719858 ], [ 358599.980400003492832, 257367.734900001436472 ], [ 358607.361299999058247, 257353.229899998754263 ], [ 358591.305200003087521, 257344.865800000727177 ], [ 358583.118000000715256, 257359.364199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401240300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92412804, "LATITUDE": 18.34570972, "OBJECTID_1": 11802, "PARCEL_NO_": "105401240300", "Tax_Legal_": "HOSPITAL GROUND A-5 KINGS QTR", "Name": "HEIRS OF LILLIAN JOSEPH", "Address": "1432 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6200, "Improved_V": 28500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.828625783500001, "SHAPE_Area": 193.35584304299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359524.129600003361702, 257361.788600001484156 ], [ 359518.492600001394749, 257360.89809999987483 ], [ 359507.979999996721745, 257364.400699999183416 ], [ 359505.525100000202656, 257368.60249999910593 ], [ 359507.935000002384186, 257369.677600000053644 ], [ 359506.281000003218651, 257374.519299998879433 ], [ 359519.187399998307228, 257373.991599999368191 ], [ 359524.883799999952316, 257367.916499998420477 ], [ 359524.129600003361702, 257361.788600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401100100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93225302, "LATITUDE": 18.34568377, "OBJECTID_1": 11615, "PARCEL_NO_": "105401100100", "Tax_Legal_": "PALM STRAEDE 15 QUEENS QTR", "Name": "RENATA R CHRISTIAN WEST", "Address": "PO Box 10915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5000, "Improved_V": 57700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.551184776500001, "SHAPE_Area": 98.975914121200006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358663.785199999809265, 257355.802600000053644 ], [ 358655.77419999986887, 257349.615299999713898 ], [ 358651.63120000064373, 257362.669199999421835 ], [ 358651.613200001418591, 257364.780000001192093 ], [ 358653.218599997460842, 257365.637499999254942 ], [ 358655.64299999922514, 257365.024099998176098 ], [ 358663.785199999809265, 257355.802600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401111300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93142194000001, "LATITUDE": 18.34566476, "OBJECTID_1": 11631, "PARCEL_NO_": "105401111300", "Tax_Legal_": "DOMINI GADE 8C KINGS QUARTER", "Name": "FRANCIS, ROSEMARY DENNERY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7700, "Improved_V": 75400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.892426213500002, "SHAPE_Area": 166.54274363100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358753.253499999642372, 257360.334499999880791 ], [ 358747.148000001907349, 257348.350400000810623 ], [ 358745.289300002157688, 257348.659200001507998 ], [ 358737.204599998891354, 257351.126200001686811 ], [ 358741.113899998366833, 257365.512499999254942 ], [ 358753.253499999642372, 257360.334499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401111900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93180747, "LATITUDE": 18.34564103, "OBJECTID_1": 11636, "PARCEL_NO_": "105401111900", "Tax_Legal_": "DOMINI GADE 8K KINGS QTR", "Name": "ISAAC, RAYMOND & LOUIS", "Address": "PO BOX 8874", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.632531754699997, "SHAPE_Area": 89.784114494799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358708.88289999961853, 257362.715599998831749 ], [ 358703.400600001215935, 257343.6722999997437 ], [ 358699.36540000140667, 257344.061500001698732 ], [ 358701.685500003397465, 257355.690600000321865 ], [ 358705.645099997520447, 257364.166799999773502 ], [ 358708.88289999961853, 257362.715599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302092200", "MAP": null, "PARCEL_NAM": "LEMON STRAEDE 1B", "ACRE": null, "LONGITUDE": -64.93248369, "LATITUDE": 18.34563922, "OBJECTID_1": 9801, "PARCEL_NO_": "105302092200", "Tax_Legal_": "LEMON STRAEDE 1B CROWN PRINCE QTR", "Name": "SMITH RANDOLPH B. EST. SMITH, I & W", "Address": "PO Box 533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5000, "Improved_V": 40800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.186186898599999, "SHAPE_Area": 211.82729999099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358641.928999997675419, 257345.851300001144409 ], [ 358628.071299999952316, 257345.191199999302626 ], [ 358627.580300003290176, 257346.218199998140335 ], [ 358622.657899998128414, 257356.099300000816584 ], [ 358635.499499998986721, 257363.170499999076128 ], [ 358641.274999998509884, 257347.807900000363588 ], [ 358641.928999997675419, 257345.851300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401112000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93175268, "LATITUDE": 18.34562962, "OBJECTID_1": 11637, "PARCEL_NO_": "105401112000", "Tax_Legal_": "DOMINI GADE 8F KINGS QTR", "Name": "RICHARDSON, G. & ROUMOU, S. & OTHERS", "Address": "2521 Domini Gade 18F", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4500, "Improved_V": 55400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.763085039099998, "SHAPE_Area": 140.931636037 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358716.164899997413158, 257359.819899998605251 ], [ 358710.664599999785423, 257342.88740000128746 ], [ 358703.400600001215935, 257343.6722999997437 ], [ 358708.88289999961853, 257362.715599998831749 ], [ 358716.164899997413158, 257359.819899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302060600", "MAP": null, "PARCEL_NAM": "VESTER GADE 26E", "ACRE": null, "LONGITUDE": -64.93594001, "LATITUDE": 18.34562577, "OBJECTID_1": 9691, "PARCEL_NO_": "105302060600", "Tax_Legal_": "VESTER GADE 26E QUEENS QUARTER", "Name": "BURNETT-STERN, MARIE LOUISE, TRU", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.473296450200003, "SHAPE_Area": 225.35436695199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358276.841499999165535, 257342.503199998289347 ], [ 358263.971100002527237, 257338.809200000017881 ], [ 358257.396499998867512, 257353.320900000631809 ], [ 358270.254399999976158, 257358.492300000041723 ], [ 358276.841499999165535, 257342.503199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301081000", "MAP": "A9-141-T70", "PARCEL_NAM": "79-25", "ACRE": "0.442", "LONGITUDE": -64.94590623000001, "LATITUDE": 18.34536233, "OBJECTID_1": 9260, "PARCEL_NO_": "105301081000", "Tax_Legal_": "79-25 SOLBERG LITTLE NORTHSIDE", "Name": "GEORGE, LLEWELLYN & MARY", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67600, "Improved_V": 204100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.321935303, "SHAPE_Area": 2073.8045005399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357220.247800000011921, 257277.282400000840425 ], [ 357214.607199996709824, 257276.813999999314547 ], [ 357210.579199999570847, 257276.358899999409914 ], [ 357187.907200001180172, 257287.361299999058247 ], [ 357211.582299999892712, 257347.927799999713898 ], [ 357222.917400002479553, 257342.5320999994874 ], [ 357239.090400002896786, 257337.176100000739098 ], [ 357220.247800000011921, 257277.282400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402041900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92282108000001, "LATITUDE": 18.34564242, "OBJECTID_1": 12509, "PARCEL_NO_": "105402041900", "Tax_Legal_": "HOSPITAL GROUND 191 NEW QUARTER", "Name": "ROCK, MATHILDA", "Address": "177 Nagle Ave", "City": "New York", "State": "New York", "Zip": 10034, "Country": "United States", "Land_Value": 10100, "Improved_V": 74900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.259144852999995, "SHAPE_Area": 359.47890228799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359669.326999999582767, 257355.799800001084805 ], [ 359636.259199999272823, 257356.584600001573563 ], [ 359638.582800000905991, 257367.791600000113249 ], [ 359671.657799996435642, 257366.162500001490116 ], [ 359669.326999999582767, 257355.799800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401111400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93132846, "LATITUDE": 18.34560991, "OBJECTID_1": 11632, "PARCEL_NO_": "105401111400", "Tax_Legal_": "DOMINI GADE 8S KINGS QUARTER", "Name": "SMITH, DAVID T. & LOUISE", "Address": "PO Box 958", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6000, "Improved_V": 35200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.159457039599999, "SHAPE_Area": 143.67465482700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358762.212899997830391, 257349.853199999779463 ], [ 358763.056900002062321, 257345.427099999040365 ], [ 358745.741300001740456, 257345.589299999177456 ], [ 358747.148000001907349, 257348.350400000810623 ], [ 358753.253499999642372, 257360.334499999880791 ], [ 358762.212899997830391, 257349.853199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401112100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93167254, "LATITUDE": 18.34560737, "OBJECTID_1": 11638, "PARCEL_NO_": "105401112100", "Tax_Legal_": "DOMINI GADE 8J/AKA 8I KINGS QUARTER", "Name": "JONES, PAUL", "Address": "P.O. BOX 5294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8900, "Improved_V": 37200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.297133387000002, "SHAPE_Area": 167.14377195599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358725.066699996590614, 257356.093100000172853 ], [ 358721.961999997496605, 257341.924400001764297 ], [ 358710.664599999785423, 257342.88740000128746 ], [ 358716.164899997413158, 257359.819899998605251 ], [ 358725.066699996590614, 257356.093100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92231672, "LATITUDE": 18.34556525, "OBJECTID_1": 12615, "PARCEL_NO_": "105402092600", "Tax_Legal_": "ROSS ESTATE 17 KING QUARTER", "Name": "THIBOU, BONNADINE", "Address": "PO Box 307174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.209261516200002, "SHAPE_Area": 512.49470699799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359722.520199999213219, 257358.979400001466274 ], [ 359717.039700001478195, 257339.725000001490116 ], [ 359691.963100001215935, 257349.019000001251698 ], [ 359695.847199998795986, 257366.360500000417233 ], [ 359722.520199999213219, 257358.979400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402012500", "MAP": "G9-980-T67", "PARCEL_NAM": "144A", "ACRE": ".03", "LONGITUDE": -64.92424768, "LATITUDE": 18.3456548, "OBJECTID_1": 12470, "PARCEL_NO_": "105402012500", "Tax_Legal_": "HOSPITAL GROUND 144A KINGS QTR", "Name": "SMITH, IONA ALBERT", "Address": "9635 SW 164 St", "City": "Miami", "State": "Florida", "Zip": 33157, "Country": "United States", "Land_Value": 4000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.208854585499999, "SHAPE_Area": 152.183458143 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359518.492600001394749, 257360.89809999987483 ], [ 359496.943400003015995, 257355.636700000613928 ], [ 359495.928400002419949, 257359.235800001770258 ], [ 359492.815499998629093, 257368.270500000566244 ], [ 359507.979999996721745, 257364.400699999183416 ], [ 359518.492600001394749, 257360.89809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92401845000001, "LATITUDE": 18.34558369, "OBJECTID_1": 12468, "PARCEL_NO_": "105402012300", "Tax_Legal_": "HOSPITAL GROUND 173 KINGS QTR", "Name": "HEIRS OF LILLIAN JOSEPH", "Address": "1432 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5700, "Improved_V": 11900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.779134721800006, "SHAPE_Area": 326.20208952600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359538.625200003385544, 257364.018199998885393 ], [ 359533.958200000226498, 257343.926100000739098 ], [ 359515.382399998605251, 257347.362700000405312 ], [ 359518.492600001394749, 257360.89809999987483 ], [ 359524.129600003361702, 257361.788600001484156 ], [ 359538.625200003385544, 257364.018199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92385735000001, "LATITUDE": 18.34554913, "OBJECTID_1": 12467, "PARCEL_NO_": "105402012200", "Tax_Legal_": "HOSPITAL GROUND 171 NEW QUARTER", "Name": "BENJAMIN, ALECIA G", "Address": "PO Box 7906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6800, "Improved_V": 42600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.072743005800007, "SHAPE_Area": 304.50095894399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359554.855800002813339, 257351.907600000500679 ], [ 359553.340300001204014, 257340.496199999004602 ], [ 359533.958200000226498, 257343.926100000739098 ], [ 359538.625200003385544, 257364.018199998885393 ], [ 359554.855800002813339, 257351.907600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302060500", "MAP": null, "PARCEL_NAM": "VESTER GADE 26D", "ACRE": null, "LONGITUDE": -64.93603178, "LATITUDE": 18.34559888, "OBJECTID_1": 9690, "PARCEL_NO_": "105302060500", "Tax_Legal_": "VESTER GADE 26D QUEENS QUARTER", "Name": "BURNETT-STERN, MARIE LOUISE, TRU", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 58000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.074021851300003, "SHAPE_Area": 99.656489057300007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358257.396499998867512, 257353.320900000631809 ], [ 358263.971100002527237, 257338.809200000017881 ], [ 358258.339500002563, 257337.285500001162291 ], [ 358252.605400003492832, 257347.793200001120567 ], [ 358250.164899997413158, 257350.306400001049042 ], [ 358257.396499998867512, 257353.320900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302061600", "MAP": null, "PARCEL_NAM": "INTE GADE 2AA", "ACRE": null, "LONGITUDE": -64.9353939, "LATITUDE": 18.34555275, "OBJECTID_1": 9700, "PARCEL_NO_": "105302061600", "Tax_Legal_": "INTE GADE 2AA QUEENS QUARTER", "Name": "JOSEPH RIEARA REVOCABLE LIVING TRUST", "Address": "PO Box 302932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17900, "Improved_V": 28900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.271578498300002, "SHAPE_Area": 247.14069115699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358326.156099997460842, 257327.708000000566244 ], [ 358314.696900002658367, 257347.668099999427795 ], [ 358325.938500002026558, 257353.248599998652935 ], [ 358334.17960000038147, 257332.41780000180006 ], [ 358326.156099997460842, 257327.708000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401100200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93219405000001, "LATITUDE": 18.34558839, "OBJECTID_1": 11616, "PARCEL_NO_": "105401100200", "Tax_Legal_": "PALME STRAEDE 14 QUEENS QTR", "Name": "HARRIGAN, CECIL & BERNICE", "Address": "PO Box 502326", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 6900, "Improved_V": 33000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.360401853600003, "SHAPE_Area": 146.54831759300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358672.744499996304512, 257345.321199998259544 ], [ 358658.27589999884367, 257339.925500001758337 ], [ 358655.77419999986887, 257349.615299999713898 ], [ 358663.785199999809265, 257355.802600000053644 ], [ 358672.744499996304512, 257345.321199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401112200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93157711000001, "LATITUDE": 18.34558586, "OBJECTID_1": 11639, "PARCEL_NO_": "105401112200", "Tax_Legal_": "DOMINI GADE 8H KINGS QUARTER", "Name": "THOMAS, CHARLES H", "Address": "PO Box 8374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.891699343500001, "SHAPE_Area": 139.40030408499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358735.584799997508526, 257351.957299999892712 ], [ 358730.849399998784065, 257339.886199999600649 ], [ 358721.961999997496605, 257341.924400001764297 ], [ 358725.066699996590614, 257356.093100000172853 ], [ 358735.584799997508526, 257351.957299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92341275, "LATITUDE": 18.34550159, "OBJECTID_1": 12465, "PARCEL_NO_": "105402012000", "Tax_Legal_": "HOSPITAL GROUND 168 & 169A NEW QUARTER", "Name": "TESTAMARK, HORATIO", "Address": "PO Box 8285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.052738374300006, "SHAPE_Area": 598.10969627700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359587.264700002968311, 257333.807700000703335 ], [ 359577.475699998438358, 257347.026500001549721 ], [ 359578.188500002026558, 257358.009199999272823 ], [ 359595.085100002586842, 257362.36939999833703 ], [ 359605.826099999248981, 257332.059799998998642 ], [ 359605.045000001788139, 257329.098099999129772 ], [ 359601.826899997889996, 257328.227400001138449 ], [ 359587.264700002968311, 257333.807700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302092300", "MAP": null, "PARCEL_NAM": "MURPHY GADE 1&2", "ACRE": null, "LONGITUDE": -64.93270334, "LATITUDE": 18.34553652, "OBJECTID_1": 9802, "PARCEL_NO_": "105302092300", "Tax_Legal_": "MURPHY GADE 1&2 CROWN PRINCE QTR", "Name": "ALEXANDER, CATHERINE DANGLEBEN", "Address": "2701 Murphy Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54700, "Improved_V": 235500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.523773496299995, "SHAPE_Area": 380.83996942099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358624.392800003290176, 257341.759100001305342 ], [ 358613.961099997162819, 257335.763099998235703 ], [ 358601.119400002062321, 257328.691899999976158 ], [ 358593.758299998939037, 257340.875100001692772 ], [ 358618.644299998879433, 257353.95549999922514 ], [ 358624.392800003290176, 257341.759100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402012400", "MAP": "G9-980-T67", "PARCEL_NAM": "144", "ACRE": ".03", "LONGITUDE": -64.9241939, "LATITUDE": 18.34558287, "OBJECTID_1": 12469, "PARCEL_NO_": "105402012400", "Tax_Legal_": "144 HOSPITAL GROUND NEW QTR", "Name": "MOISE, FABIAN", "Address": "PO BOX 303913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.748991221899999, "SHAPE_Area": 179.90501100500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359518.492600001394749, 257360.89809999987483 ], [ 359515.382399998605251, 257347.362700000405312 ], [ 359498.422899998724461, 257350.390299998223782 ], [ 359496.943400003015995, 257355.636700000613928 ], [ 359518.492600001394749, 257360.89809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402091400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92194614, "LATITUDE": 18.34552633, "OBJECTID_1": 12603, "PARCEL_NO_": "105402091400", "Tax_Legal_": "ROSS C-19 KINGS QTR", "Name": "BROWN, SHIRLEY", "Address": "PO Box 302424", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11500, "Improved_V": 63200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.945697680600006, "SHAPE_Area": 291.13943569100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359753.334499999880791, 257338.755499999970198 ], [ 359741.220100000500679, 257340.978399999439716 ], [ 359735.453599996864796, 257355.285599999129772 ], [ 359749.918700002133846, 257361.103500001132488 ], [ 359754.02929999679327, 257351.848999999463558 ], [ 359754.918399997055531, 257342.146000001579523 ], [ 359753.334499999880791, 257338.755499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301081600", "MAP": "A9-141-T70", "PARCEL_NAM": "79-27", "ACRE": "0.486", "LONGITUDE": -64.94527649, "LATITUDE": 18.3452593, "OBJECTID_1": 9266, "PARCEL_NO_": "105301081600", "Tax_Legal_": "SOLBERG 79-27 LITTLE NORTHSIDE", "Name": "JACKSON, FRANCIS & TONI", "Address": "PO Box 6591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 89100, "Improved_V": 178000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.35535126900001, "SHAPE_Area": 2270.8967124800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357292.093599997460842, 257268.798599999397993 ], [ 357273.509400002658367, 257272.440900001674891 ], [ 357259.787699997425079, 257274.017400000244379 ], [ 357264.113099999725819, 257334.214400000870228 ], [ 357273.759999997913837, 257337.670899998396635 ], [ 357276.159199997782707, 257340.012600000947714 ], [ 357309.622599996626377, 257292.790399998426437 ], [ 357300.583200000226498, 257278.784800000488758 ], [ 357292.093599997460842, 257268.798599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401112300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93147559000001, "LATITUDE": 18.34555431, "OBJECTID_1": 11640, "PARCEL_NO_": "105401112300", "Tax_Legal_": "DOMINI GADE 8T KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.8651024284, "SHAPE_Area": 146.99287044100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358745.741300001740456, 257345.589299999177456 ], [ 358744.788800001144409, 257338.075100000947714 ], [ 358741.549800001084805, 257338.410300001502037 ], [ 358734.972999997437, 257339.090900000184774 ], [ 358730.849399998784065, 257339.886199999600649 ], [ 358735.584799997508526, 257351.957299999892712 ], [ 358737.204599998891354, 257351.126200001686811 ], [ 358745.289300002157688, 257348.659200001507998 ], [ 358747.148000001907349, 257348.350400000810623 ], [ 358745.741300001740456, 257345.589299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302061500", "MAP": null, "PARCEL_NAM": "INTE GADE 2 A", "ACRE": null, "LONGITUDE": -64.93549848000001, "LATITUDE": 18.34549631, "OBJECTID_1": 9699, "PARCEL_NO_": "105302061500", "Tax_Legal_": "INTE GADE 2 A QUEENS QUARTER", "Name": "RIERA, LILLIAN", "Address": "9206 173rd St", "City": "Jamaica", "State": "New York", "Zip": 11433, "Country": "United States", "Land_Value": 18000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.451564199000003, "SHAPE_Area": 329.18120152199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358311.694600000977516, 257321.467999998480082 ], [ 358302.650700002908707, 257341.870000001043081 ], [ 358314.696900002658367, 257347.668099999427795 ], [ 358326.156099997460842, 257327.708000000566244 ], [ 358311.694600000977516, 257321.467999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302062400", "MAP": "B9-79-T62", "PARCEL_NAM": "109", "ACRE": ".05", "LONGITUDE": -64.93392274, "LATITUDE": 18.34555785, "OBJECTID_1": 9705, "PARCEL_NO_": "105302062400", "Tax_Legal_": "109 AGNES FANCY QUEENS QTR", "Name": "JEAN E BURNETT REVOCABLE TRUST", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13300, "Improved_V": 39400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.096448564699998, "SHAPE_Area": 178.88818288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358471.121500000357628, 257348.948399998247623 ], [ 358487.269299998879433, 257346.547400001436472 ], [ 358493.754000000655651, 257342.589699998497963 ], [ 358478.491599999368191, 257335.709800001233816 ], [ 358473.64469999819994, 257336.725600000470877 ], [ 358471.121500000357628, 257348.948399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302092700", "MAP": null, "PARCEL_NAM": "LEMON STRAEDE 2A", "ACRE": null, "LONGITUDE": -64.93233401000001, "LATITUDE": 18.34554245, "OBJECTID_1": 9805, "PARCEL_NO_": "105302092700", "Tax_Legal_": "LEMON STRAEDE 2A QUEEN'S QTR", "Name": "Daley, James,Dwayne & Lyndis Miller & Yvette Anthony", "Address": "2202 Lemon Strade 2A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6400, "Improved_V": 74400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.149451772100001, "SHAPE_Area": 100.620456598 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358654.767599999904633, 257338.327799998223782 ], [ 358645.11879999935627, 257336.483500000089407 ], [ 358644.584700003266335, 257337.913600001484156 ], [ 358641.928999997675419, 257345.851300001144409 ], [ 358651.550499998033047, 257348.318399999290705 ], [ 358654.242499999701977, 257340.10359999909997 ], [ 358654.767599999904633, 257338.327799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-2191-T82", "PARCEL_NAM": "173A-80", "ACRE": "1671 sq ft", "LONGITUDE": -64.87589967, "LATITUDE": 18.33808377, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.505638771699999, "SHAPE_Area": 152.074875926 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364628.51349999755621, 256569.78830000013113 ], [ 364626.34570000320673, 256559.958099998533726 ], [ 364626.414599999785423, 256559.80519999936223 ], [ 364626.4054000005126, 256559.807399999350309 ], [ 364611.274999998509884, 256563.635899998247623 ], [ 364614.25900000333786, 256573.182199999690056 ], [ 364616.619999997317791, 256572.603999998420477 ], [ 364628.51349999755621, 256569.78830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701020100", "MAP": "D9-9251-T018", "PARCEL_NAM": "53-1A-8", "ACRE": "0.68", "LONGITUDE": -64.87811979, "LATITUDE": 18.3452196, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.352462449, "SHAPE_Area": 3209.6737225799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364416.485299997031689, 257333.594999998807907 ], [ 364390.29389999806881, 257314.129999998956919 ], [ 364332.999300003051758, 257366.706199999898672 ], [ 364367.280000001192093, 257384.187100000679493 ], [ 364383.626400001347065, 257394.462000001221895 ], [ 364416.485299997031689, 257333.594999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601020200", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G REM", "ACRE": "4.151", "LONGITUDE": -64.87520574, "LATITUDE": 18.32898708, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 887.87949842800003, "SHAPE_Area": 18183.7865594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364774.110500000417233, 255566.114799998700619 ], [ 364851.86370000243187, 255542.733199998736382 ], [ 364856.808399997651577, 255541.084499999880791 ], [ 364862.26410000026226, 255520.221500001847744 ], [ 364868.874099999666214, 255494.944499999284744 ], [ 364838.820900000631809, 255478.635999999940395 ], [ 364826.780199997127056, 255472.204599998891354 ], [ 364818.754799999296665, 255467.706000000238419 ], [ 364785.84740000218153, 255526.96510000154376 ], [ 364727.838299997150898, 255507.913899999111891 ], [ 364717.226700000464916, 255515.945300001651049 ], [ 364700.654200002551079, 255527.694299999624491 ], [ 364690.795100003480911, 255534.042700000107288 ], [ 364682.429899998009205, 255540.248500000685453 ], [ 364675.582000002264977, 255547.36259999871254 ], [ 364669.636399999260902, 255554.718800000846386 ], [ 364664.700099997222424, 255560.424499999731779 ], [ 364662.306599996984005, 255563.427799999713898 ], [ 364659.976300001144409, 255560.447900000959635 ], [ 364562.67679999768734, 255587.724800001829863 ], [ 364531.620600000023842, 255596.23200000077486 ], [ 364528.140900000929832, 255597.362100001424551 ], [ 364496.192900002002716, 255607.737399999052286 ], [ 364497.418799996376038, 255609.464000001549721 ], [ 364516.53830000013113, 255636.851500000804663 ], [ 364520.523100003600121, 255642.372600000351667 ], [ 364774.110500000417233, 255566.114799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501011200", "MAP": "D9-3504-T86", "PARCEL_NAM": "4C", "ACRE": "4.50", "LONGITUDE": -64.9106166, "LATITUDE": 18.34779408, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 553.89117461700005, "SHAPE_Area": 17300.939597199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360941.2128000035882, 257668.028200000524521 ], [ 360942.034199997782707, 257667.590300001204014 ], [ 360942.093099996447563, 257667.888199999928474 ], [ 361023.53999999910593, 257654.929999999701977 ], [ 361021.931400001049042, 257638.160300001502037 ], [ 361019.886900000274181, 257616.846000000834465 ], [ 361012.223899997770786, 257536.959199998527765 ], [ 361000.685199998319149, 257540.004200000315905 ], [ 360986.932899996638298, 257545.168999999761581 ], [ 360973.167999997735023, 257551.811299998313189 ], [ 360948.089599996805191, 257561.316300000995398 ], [ 360939.204000003635883, 257563.143500000238419 ], [ 360927.915700003504753, 257563.051100000739098 ], [ 360882.042199999094009, 257552.543099999427795 ], [ 360864.312299996614456, 257551.342500001192093 ], [ 360861.878899998962879, 257553.011399999260902 ], [ 360861.843000002205372, 257557.232999999076128 ], [ 360865.6875, 257579.218100000172853 ], [ 360867.149099998176098, 257596.962000001221895 ], [ 360864.35080000013113, 257641.479800000786781 ], [ 360867.53999999910593, 257645.727800000458956 ], [ 360871.479900002479553, 257656.525800000876188 ], [ 360872.234099999070168, 257662.6537000015378 ], [ 360875.324400000274181, 257678.510999999940395 ], [ 360941.2128000035882, 257668.028200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105401030130", "MAP": "D3-116-T45", "PARCEL_NAM": "8GJ", "ACRE": "1.20", "LONGITUDE": -64.93014035, "LATITUDE": 18.34799394, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 444.66537054600002, "SHAPE_Area": 2071.9212986900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358850.8125, 257614.006000000983477 ], [ 358853.851099997758865, 257607.072299998253584 ], [ 358859.790500000119209, 257610.942400000989437 ], [ 358862.377599999308586, 257613.273400001227856 ], [ 358868.79389999806881, 257617.33669999986887 ], [ 358910.788599997758865, 257641.831500001251698 ], [ 358922.006999999284744, 257646.488200001418591 ], [ 358945.501999996602535, 257651.356499999761581 ], [ 358969.632100000977516, 257656.224899999797344 ], [ 358979.580399997532368, 257657.07149999961257 ], [ 358980.215400002896786, 257649.874800000339746 ], [ 358970.690399996936321, 257649.028200000524521 ], [ 358961.588699996471405, 257646.911499999463558 ], [ 358925.39360000193119, 257639.079799998551607 ], [ 358920.195100001990795, 257636.769400000572205 ], [ 358907.401900000870228, 257629.343100000172853 ], [ 358868.869499996304512, 257608.4712999984622 ], [ 358856.864699997007847, 257597.818399999290705 ], [ 358850.478900000452995, 257590.166799999773502 ], [ 358846.515699997544289, 257582.112799998372793 ], [ 358836.971199996769428, 257566.624800000339746 ], [ 358837.802699998021126, 257563.676300000399351 ], [ 358828.074799999594688, 257569.718400001525879 ], [ 358831.291000001132488, 257570.800200000405312 ], [ 358838.218699999153614, 257583.442200001329184 ], [ 358839.191399998962879, 257585.217199999839067 ], [ 358805.326399996876717, 257597.497900001704693 ], [ 358805.3783999979496, 257597.804699998348951 ], [ 358811.629299998283386, 257600.033700000494719 ], [ 358850.8125, 257614.006000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501014700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9128634, "LATITUDE": 18.34723623, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.11500832600001, "SHAPE_Area": 1905.5745136600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360725.619400002062321, 257514.950500000268221 ], [ 360688.840700000524521, 257516.912000000476837 ], [ 360687.562200002372265, 257516.93299999833107 ], [ 360692.729299999773502, 257582.024900000542402 ], [ 360701.006300002336502, 257582.515000000596046 ], [ 360719.721600003540516, 257580.767700001597404 ], [ 360715.121100001037121, 257552.865699999034405 ], [ 360725.619400002062321, 257514.950500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302101100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93368219, "LATITUDE": 18.34724715, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.278330599199997, "SHAPE_Area": 53.104722724600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358500.213100001215935, 257530.938000001013279 ], [ 358504.214100003242493, 257534.559399999678135 ], [ 358505.841099999845028, 257532.88399999961257 ], [ 358507.439300000667572, 257534.585799999535084 ], [ 358509.080700002610683, 257531.221700001507998 ], [ 358502.698600001633167, 257523.147900000214577 ], [ 358500.213100001215935, 257530.938000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301093300", "MAP": "D9-2273-T83", "PARCEL_NAM": "94-5", "ACRE": "0.68", "LONGITUDE": -64.94319662, "LATITUDE": 18.3468804, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.89937773, "SHAPE_Area": 2694.4552797299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357499.375399999320507, 257452.030299998819828 ], [ 357475.997699998319149, 257451.205699998885393 ], [ 357475.512199997901917, 257508.197000000625849 ], [ 357509.096600003540516, 257514.636199999600649 ], [ 357507.871200002729893, 257509.442999999970198 ], [ 357510.344200000166893, 257506.47520000115037 ], [ 357516.774300001561642, 257500.045200001448393 ], [ 357519.98929999768734, 257497.077500000596046 ], [ 357525.681599996984005, 257487.709300000220537 ], [ 357530.376199997961521, 257474.572399999946356 ], [ 357526.666599996387959, 257467.153200000524521 ], [ 357518.010799996554852, 257459.23930000141263 ], [ 357515.051700003445148, 257457.019999999552965 ], [ 357509.951200000941753, 257453.194600000977516 ], [ 357499.375399999320507, 257452.030299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302070200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93492645000001, "LATITUDE": 18.34685367, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.467370306199996, "SHAPE_Area": 177.44098858699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358359.424900002777576, 257492.633299998939037 ], [ 358386.085400000214577, 257486.729800000786781 ], [ 358374.080600000917912, 257476.076900001615286 ], [ 358359.424900002777576, 257492.633299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302070400", "MAP": null, "PARCEL_NAM": "39", "ACRE": null, "LONGITUDE": -64.93456759, "LATITUDE": 18.34655279, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.63616915599999, "SHAPE_Area": 1315.7031855800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358384.710100002586842, 257458.854200001806021 ], [ 358414.320699997246265, 257485.272100001573563 ], [ 358418.38459999859333, 257481.505699999630451 ], [ 358416.896099999547005, 257466.928100001066923 ], [ 358418.569799996912479, 257459.764600001275539 ], [ 358432.539700001478195, 257429.059300001710653 ], [ 358434.224200002849102, 257420.629299998283386 ], [ 358433.430500000715256, 257419.145199999213219 ], [ 358429.40429999679327, 257418.478900000452995 ], [ 358414.786399997770786, 257430.602699998766184 ], [ 358393.640699997544289, 257451.750100001692772 ], [ 358384.710100002586842, 257458.854200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302090700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93275549000001, "LATITUDE": 18.34636944, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.590029124099999, "SHAPE_Area": 237.353184734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358610.675399996340275, 257437.483300000429153 ], [ 358604.38849999755621, 257418.222300000488758 ], [ 358600.355200000107288, 257418.400400001555681 ], [ 358596.878200002014637, 257447.92509999871254 ], [ 358602.54389999806881, 257445.438299998641014 ], [ 358610.675399996340275, 257437.483300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302090800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93264146, "LATITUDE": 18.3462383, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.436202456700002, "SHAPE_Area": 427.98714181299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358619.589800000190735, 257432.278900001198053 ], [ 358625.4983000010252, 257401.296500001102686 ], [ 358618.230700001120567, 257402.503600001335144 ], [ 358604.38849999755621, 257418.222300000488758 ], [ 358610.675399996340275, 257437.483300000429153 ], [ 358619.589800000190735, 257432.278900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402093100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92211474, "LATITUDE": 18.34549762, "OBJECTID_1": 12620, "PARCEL_NO_": "105402093100", "Tax_Legal_": "ROSS ESTATE 18 OF PARCEL C KING QUARTER", "Name": "THIBOU, LENFORD & LOLITA", "Address": "PO Box 307174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.439482714199997, "SHAPE_Area": 375.22322888799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359741.220100000500679, 257340.978399999439716 ], [ 359736.373199999332428, 257341.994199998676777 ], [ 359733.227099999785423, 257332.680300001055002 ], [ 359729.98200000077486, 257334.97580000013113 ], [ 359717.039700001478195, 257339.725000001490116 ], [ 359722.520199999213219, 257358.979400001466274 ], [ 359735.453599996864796, 257355.285599999129772 ], [ 359741.220100000500679, 257340.978399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302065400", "MAP": null, "PARCEL_NAM": "INTE GADE 4", "ACRE": null, "LONGITUDE": -64.93504167, "LATITUDE": 18.34551285, "OBJECTID_1": 9735, "PARCEL_NO_": "105302065400", "Tax_Legal_": "INTE GADE 4 QUEENS QUARTER", "Name": "ROBINSON, FAYE", "Address": "PO Box 7991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8700, "Improved_V": 11600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.618833948800003, "SHAPE_Area": 202.54711759599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358358.426500000059605, 257325.861200001090765 ], [ 358354.265500001609325, 257341.02589999884367 ], [ 358364.697200000286102, 257347.021899998188019 ], [ 358371.260999999940395, 257333.776700001209974 ], [ 358358.426500000059605, 257325.861200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402091700", "MAP": "F9-3246-T74", "PARCEL_NAM": "C-27", "ACRE": null, "LONGITUDE": -64.92164261000001, "LATITUDE": 18.34549516, "OBJECTID_1": 12606, "PARCEL_NO_": "105402091700", "Tax_Legal_": "C-27 ROSS PAR C KINGS QTR", "Name": "MADURO, GERTRUDE C & OTHERS", "Address": "PO Box 10647", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32900, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.98914546899999, "SHAPE_Area": 810.00441578300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359797.935900002717972, 257356.372499998658895 ], [ 359784.049900002777576, 257330.140999998897314 ], [ 359777.56700000166893, 257333.887600000947714 ], [ 359769.538099996745586, 257329.811099998652935 ], [ 359764.691200003027916, 257330.826900001615286 ], [ 359760.555399999022484, 257343.036499999463558 ], [ 359761.304099999368191, 257349.797600001096725 ], [ 359760.467299997806549, 257353.379399999976158 ], [ 359793.770700000226498, 257361.459899999201298 ], [ 359801.698399998247623, 257363.480200000107288 ], [ 359797.935900002717972, 257356.372499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301081200", "MAP": "A9-141-T70", "PARCEL_NAM": "79-26", "ACRE": "0.465", "LONGITUDE": -64.94561075, "LATITUDE": 18.34529405, "OBJECTID_1": 9262, "PARCEL_NO_": "105301081200", "Tax_Legal_": "SOLBERG 79-26 LITTLE NORTHSIDE", "Name": "GEORGE, LLEWELLYN & MARY", "Address": "PO Box 7443", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.19487985399999, "SHAPE_Area": 1951.25934037 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357259.787699997425079, 257274.017400000244379 ], [ 357247.6858000010252, 257274.762699998915195 ], [ 357233.958700001239777, 257276.97239999845624 ], [ 357220.247800000011921, 257277.282400000840425 ], [ 357239.090400002896786, 257337.176100000739098 ], [ 357251.208499997854233, 257334.530999999493361 ], [ 357264.113099999725819, 257334.214400000870228 ], [ 357259.787699997425079, 257274.017400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92365391, "LATITUDE": 18.34550649, "OBJECTID_1": 12466, "PARCEL_NO_": "105402012100", "Tax_Legal_": "HOSPITAL GROUND 168A & 169 NEW QUARTER", "Name": "DAVIS, LIONEL-LIFE INTEREST", "Address": "1406 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5400, "Improved_V": 81400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.865648711000006, "SHAPE_Area": 342.54091565300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359577.475699998438358, 257347.026500001549721 ], [ 359575.954800002276897, 257336.2483000010252 ], [ 359573.532200001180172, 257336.650699999183416 ], [ 359553.340300001204014, 257340.496199999004602 ], [ 359554.855800002813339, 257351.907600000500679 ], [ 359570.141500003635883, 257356.043499998748302 ], [ 359577.475699998438358, 257347.026500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402042200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92284116, "LATITUDE": 18.34552067, "OBJECTID_1": 12512, "PARCEL_NO_": "105402042200", "Tax_Legal_": "HOSPITAL GROUND 189 NEW QUARTER", "Name": "TODMAN, JUSTIN & OTHERS", "Address": "BOX 3502", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10100, "Improved_V": 30900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.070478615900001, "SHAPE_Area": 535.98202831399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359666.249200001358986, 257338.464999999850988 ], [ 359633.159800000488758, 257341.782699998468161 ], [ 359635.494199998676777, 257351.723200000822544 ], [ 359636.259199999272823, 257356.584600001573563 ], [ 359669.326999999582767, 257355.799800001084805 ], [ 359666.249200001358986, 257338.464999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302092600", "MAP": null, "PARCEL_NAM": "LEMON STRAEDE 2B", "ACRE": null, "LONGITUDE": -64.93244304, "LATITUDE": 18.34552742, "OBJECTID_1": 9804, "PARCEL_NO_": "105302092600", "Tax_Legal_": "LEMON STRAEDE 2B CROWN PRINCE QTR", "Name": "SMITH, RANDOLPH-EST. , SMITH, I & W.", "Address": "PO Box 533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7000, "Improved_V": 40600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.919105658699998, "SHAPE_Area": 136.34545435000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358645.11879999935627, 257336.483500000089407 ], [ 358633.344099998474121, 257334.232900001108646 ], [ 358632.50620000064373, 257335.914900001138449 ], [ 358628.071299999952316, 257345.191199999302626 ], [ 358641.928999997675419, 257345.851300001144409 ], [ 358644.584700003266335, 257337.913600001484156 ], [ 358645.11879999935627, 257336.483500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402091800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92142014, "LATITUDE": 18.34544891, "OBJECTID_1": 12607, "PARCEL_NO_": "105402091800", "Tax_Legal_": "ROSS C-28 OF PAR.C. KINGS QTR.", "Name": "GORDON, ELSA", "Address": "PO Box 12162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 69100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.58196051, "SHAPE_Area": 775.38902888799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359805.100299999117851, 257327.810699999332428 ], [ 359799.127300001680851, 257320.618200000375509 ], [ 359784.049900002777576, 257330.140999998897314 ], [ 359797.935900002717972, 257356.372499998658895 ], [ 359801.698399998247623, 257363.480200000107288 ], [ 359821.1824000030756, 257347.870700001716614 ], [ 359820.291500002145767, 257346.670299999415874 ], [ 359816.868400000035763, 257342.472600001841784 ], [ 359805.100299999117851, 257327.810699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402042000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92318195, "LATITUDE": 18.34550883, "OBJECTID_1": 12510, "PARCEL_NO_": "105402042000", "Tax_Legal_": "177 HOSPITAL GROUND NEW QUARTER", "Name": "MAISIE C BAPTISTE TRUST", "Address": "PO Box 304212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6700, "Improved_V": 83200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.627716445899999, "SHAPE_Area": 205.865343266 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359606.443599998950958, 257354.229699999094009 ], [ 359609.672399997711182, 257353.83390000090003 ], [ 359621.777900002896786, 257352.666400000452995 ], [ 359623.392300002276897, 257352.468600001186132 ], [ 359622.702899999916553, 257338.741799999028444 ], [ 359610.604599997401237, 257339.065000001341105 ], [ 359607.267899997532368, 257352.125500001013279 ], [ 359606.443599998950958, 257354.229699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302063400", "MAP": null, "PARCEL_NAM": "NODSIDEVEJ 12-1", "ACRE": null, "LONGITUDE": -64.93440461, "LATITUDE": 18.34545477, "OBJECTID_1": 9715, "PARCEL_NO_": "105302063400", "Tax_Legal_": "NODSIDEVEJ 12-1 QUEENS QTR", "Name": "FOY, CARLTON & ALICIA", "Address": "P.O. BOX 3655", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15900, "Improved_V": 38700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.644342216300004, "SHAPE_Area": 237.01268795799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358432.45440000295639, 257344.410000000149012 ], [ 358438.273000001907349, 257323.981600001454353 ], [ 358421.365699999034405, 257320.887899998575449 ], [ 358423.66950000077486, 257334.416799999773502 ], [ 358426.849799998104572, 257339.720100000500679 ], [ 358432.45440000295639, 257344.410000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302065600", "MAP": "D9-8120-T008", "PARCEL_NAM": "3", "ACRE": ".16", "LONGITUDE": -64.93611758, "LATITUDE": 18.34540727, "OBJECTID_1": 9737, "PARCEL_NO_": "105302065600", "Tax_Legal_": "3 REM ANTONIE STRAEDE QUEENS QTR", "Name": "DEJONGH, ROBERT C.,DONNA C. & JAMES L.", "Address": "2200 Estate Staabi", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.391324371899998, "SHAPE_Area": 440.386663516 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358233.17119999974966, 257315.428700000047684 ], [ 358248.616999998688698, 257342.694299999624491 ], [ 358255.162799999117851, 257331.559900000691414 ], [ 358263.380599997937679, 257313.473200000822544 ], [ 358233.17119999974966, 257315.428700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302060700", "MAP": null, "PARCEL_NAM": "VESTER GADE 26C", "ACRE": null, "LONGITUDE": -64.9359114, "LATITUDE": 18.34549264, "OBJECTID_1": 9692, "PARCEL_NO_": "105302060700", "Tax_Legal_": "VESTER GADE 26C QUEENS QUARTER", "Name": "BURNETT-STERN, MARIE LOUISE, TRU", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10200, "Improved_V": 58700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.658308910299993, "SHAPE_Area": 252.58716621900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358281.783699996769428, 257330.300200000405312 ], [ 358264.899700000882149, 257324.462499998509884 ], [ 358258.339500002563, 257337.285500001162291 ], [ 358263.971100002527237, 257338.809200000017881 ], [ 358276.841499999165535, 257342.503199998289347 ], [ 358281.783699996769428, 257330.300200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401100300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93214446, "LATITUDE": 18.34549325, "OBJECTID_1": 11617, "PARCEL_NO_": "105401100300", "Tax_Legal_": "PALM STRAEDE 13 QUEENS QUARTER", "Name": "ROEBUCK, ELIZABETH", "Address": "2013 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14300, "Improved_V": 29000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.312888072200003, "SHAPE_Area": 209.18402169399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358680.098499998450279, 257333.982400000095367 ], [ 358661.592799998819828, 257329.186900001019239 ], [ 358658.27589999884367, 257339.925500001758337 ], [ 358672.744499996304512, 257345.321199998259544 ], [ 358680.098499998450279, 257333.982400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402042100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92306109, "LATITUDE": 18.34549968, "OBJECTID_1": 12511, "PARCEL_NO_": "105402042100", "Tax_Legal_": "HOSPITAL GROUND 177A KINGS QTR", "Name": "SMITH, ERICA MONIQUE", "Address": "PO Box 9376", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.237305486099999, "SHAPE_Area": 148.251067823 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359633.159800000488758, 257341.782699998468161 ], [ 359632.382299996912479, 257338.398899998515844 ], [ 359622.702899999916553, 257338.741799999028444 ], [ 359623.392300002276897, 257352.468600001186132 ], [ 359635.494199998676777, 257351.723200000822544 ], [ 359633.159800000488758, 257341.782699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302350300", "MAP": "B9-380-T73", "PARCEL_NAM": "8", "ACRE": "4.839", "LONGITUDE": -64.93330003, "LATITUDE": 18.34439638, "OBJECTID_1": 10622, "PARCEL_NO_": "105302350300", "Tax_Legal_": "DENMARK HILL QUEENS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 457100, "Improved_V": 1044300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 646.31598256799998, "SHAPE_Area": 19985.238769600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358501.813500002026558, 257343.077899999916553 ], [ 358558.796599999070168, 257280.005100000649691 ], [ 358581.150399997830391, 257306.363699998706579 ], [ 358597.454700000584126, 257285.598799999803305 ], [ 358609.436099998652935, 257298.995799999684095 ], [ 358611.11879999935627, 257290.776900000870228 ], [ 358610.386200003325939, 257282.116099998354912 ], [ 358606.98759999871254, 257207.783300001174212 ], [ 358608.783699996769428, 257186.266499999910593 ], [ 358607.251999996602535, 257176.754700001329184 ], [ 358602.531000003218651, 257162.995000001043081 ], [ 358599.345299996435642, 257158.32490000128746 ], [ 358597.766800001263618, 257154.301199998706579 ], [ 358592.183799996972084, 257147.078299999237061 ], [ 358565.803800001740456, 257120.05350000038743 ], [ 358556.176600001752377, 257114.275199998170137 ], [ 358548.133299998939037, 257111.88740000128746 ], [ 358536.038599997758865, 257111.788400001823902 ], [ 358527.149400003254414, 257114.037599999457598 ], [ 358521.474600002169609, 257117.579799998551607 ], [ 358505.20269999653101, 257134.545200001448393 ], [ 358494.580399997532368, 257150.923500001430511 ], [ 358487.172499999403954, 257168.594799999147654 ], [ 358483.817800000309944, 257183.766100000590086 ], [ 358484.444300003349781, 257204.880499999970198 ], [ 358488.305100001394749, 257224.965999998152256 ], [ 358499.409999996423721, 257246.588500000536442 ], [ 358502.543600000441074, 257257.379900000989437 ], [ 358503.27250000089407, 257266.462900001555681 ], [ 358501.397399999201298, 257297.267200000584126 ], [ 358502.140799999237061, 257304.661499999463558 ], [ 358501.813500002026558, 257343.077899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302065300", "MAP": null, "PARCEL_NAM": "INTE GADE 5", "ACRE": null, "LONGITUDE": -64.93514937, "LATITUDE": 18.34545849, "OBJECTID_1": 9734, "PARCEL_NO_": "105302065300", "Tax_Legal_": "INTE GADE 5 QUEENS QUARTER", "Name": "TYSON, REYNOLD", "Address": "2041 PALM STAEDE 16-F", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.0444334536, "SHAPE_Area": 189.35516434 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358358.426500000059605, 257325.861200001090765 ], [ 358347.993000000715256, 257320.076299998909235 ], [ 358343.02929999679327, 257334.812199998646975 ], [ 358354.265500001609325, 257341.02589999884367 ], [ 358358.426500000059605, 257325.861200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302092500", "MAP": null, "PARCEL_NAM": "MURPHY GADE 2A", "ACRE": null, "LONGITUDE": -64.93261127, "LATITUDE": 18.34542849, "OBJECTID_1": 9803, "PARCEL_NO_": "105302092500", "Tax_Legal_": "MURPHY GADE 2A QUEENS QUARTER", "Name": "SHALHOUT, MALIK, MOHAMMED , THAMINA & TAMMIT", "Address": "2703 Murphy Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13300, "Improved_V": 64700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.855495773399994, "SHAPE_Area": 285.60793508699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358631.773699998855591, 257327.254099998623133 ], [ 358608.460699997842312, 257318.830600000917912 ], [ 358604.384199999272823, 257324.074599999934435 ], [ 358614.821299999952316, 257329.437300000339746 ], [ 358613.961099997162819, 257335.763099998235703 ], [ 358624.392800003290176, 257341.759100001305342 ], [ 358631.773699998855591, 257327.254099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301082500", "MAP": "A9-141-T70", "PARCEL_NAM": "79-31", "ACRE": "0.486", "LONGITUDE": -64.94461612000001, "LATITUDE": 18.34528142, "OBJECTID_1": 9275, "PARCEL_NO_": "105301082500", "Tax_Legal_": "SOLBERG 79-31 LT NORTHSIDE", "Name": "ABRAHAM, G. & WILCOX, I", "Address": "PO Box 7915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56700, "Improved_V": 184900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.50050277, "SHAPE_Area": 1712.8816916799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357381.348399996757507, 257297.599300000816584 ], [ 357380.579899996519089, 257293.160100001841784 ], [ 357378.983499996364117, 257291.247099999338388 ], [ 357374.262500002980232, 257277.487399999052286 ], [ 357320.048900000751019, 257299.419599998742342 ], [ 357323.232799999415874, 257304.300799999386072 ], [ 357323.816100001335144, 257330.481199998408556 ], [ 357383.727799996733665, 257302.262800000607967 ], [ 357381.348399996757507, 257297.599300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302092800", "MAP": null, "PARCEL_NAM": "LEMON STRAEDE 3A", "ACRE": null, "LONGITUDE": -64.93230976, "LATITUDE": 18.34546668, "OBJECTID_1": 9806, "PARCEL_NO_": "105302092800", "Tax_Legal_": "LEMON STRAEDE 3A & 3B QUEENS", "Name": "RODGERS, LINCOLN & ALICE", "Address": "PO Box 363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12200, "Improved_V": 32900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.887740590699998, "SHAPE_Area": 70.263923092900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358645.11879999935627, 257336.483500000089407 ], [ 358654.767599999904633, 257338.327799998223782 ], [ 358656.733400002121925, 257331.68019999936223 ], [ 358647.885499998927116, 257329.074700001627207 ], [ 358645.11879999935627, 257336.483500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92257225, "LATITUDE": 18.34539958, "OBJECTID_1": 12532, "PARCEL_NO_": "105402051500", "Tax_Legal_": "HOSPITAL GROUND 188-A NEW QTR.", "Name": "LEONARD, HENRY B. & LILLY", "Address": "PO Box 8618", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7800, "Improved_V": 105100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.227320995, "SHAPE_Area": 405.68833535200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359691.196299999952316, 257344.368700001388788 ], [ 359686.552599996328354, 257321.532600000500679 ], [ 359669.582299999892712, 257325.82660000026226 ], [ 359673.426899999380112, 257347.811799999326468 ], [ 359691.196299999952316, 257344.368700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301080400", "MAP": "A9-141-T70", "PARCEL_NAM": "79-22", "ACRE": "0.482", "LONGITUDE": -64.94674514, "LATITUDE": 18.34534057, "OBJECTID_1": 9254, "PARCEL_NO_": "105301080400", "Tax_Legal_": "SOLBERG 79-22 LITTLE NORTHSIDE QTR", "Name": "SUTTON, IRVING & PRISCA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60400, "Improved_V": 278200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.98492243199999, "SHAPE_Area": 1955.7703766699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357125.772600002586842, 257292.552200000733137 ], [ 357120.94370000064373, 257291.45719999819994 ], [ 357103.235399998724461, 257287.723700001835823 ], [ 357098.383100003004074, 257289.372800000011921 ], [ 357092.64360000193119, 257300.513700000941753 ], [ 357094.243699997663498, 257302.00450000166893 ], [ 357095.003200002014637, 257307.499099999666214 ], [ 357093.261100001633167, 257322.683600001037121 ], [ 357127.131700001657009, 257322.327599998563528 ], [ 357128.715499997138977, 257325.717999998480082 ], [ 357160.229999996721745, 257317.9543999992311 ], [ 357161.920000001788139, 257308.891199998557568 ], [ 357161.975699998438358, 257302.347800001502037 ], [ 357162.024300001561642, 257296.648600000888109 ], [ 357145.894400000572205, 257296.938799999654293 ], [ 357125.772600002586842, 257292.552200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302092800", "MAP": null, "PARCEL_NAM": "LEMON STRAEDE 3B", "ACRE": null, "LONGITUDE": -64.9324066, "LATITUDE": 18.34544557, "OBJECTID_1": 9806, "PARCEL_NO_": "105302092800", "Tax_Legal_": "LEMON STRAEDE 3A & 3B QUEENS", "Name": "RODGERS, LINCOLN & ALICE", "Address": "PO Box 363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12200, "Improved_V": 32900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.946626427699996, "SHAPE_Area": 95.810428624799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358633.344099998474121, 257334.232900001108646 ], [ 358645.11879999935627, 257336.483500000089407 ], [ 358647.885499998927116, 257329.074700001627207 ], [ 358637.428599998354912, 257326.0337999984622 ], [ 358633.344099998474121, 257334.232900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93191614, "LATITUDE": 18.34541776, "OBJECTID_1": 11424, "PARCEL_NO_": "105401030100", "Tax_Legal_": "PALM STRAEDE 5E QUEENS QUARTER", "Name": "RODGERS, LINCOLN & E", "Address": "PO Box 363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.079923281799999, "SHAPE_Area": 137.27272623299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358693.773400001227856, 257337.894000001251698 ], [ 358699.554300002753735, 257321.898200001567602 ], [ 358691.507299996912479, 257319.932500001043081 ], [ 358690.66499999910593, 257324.14750000089407 ], [ 358688.215499997138977, 257327.715999998152256 ], [ 358685.735500000417233, 257334.872900001704693 ], [ 358693.773400001227856, 257337.894000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93183096, "LATITUDE": 18.34543436, "OBJECTID_1": 11425, "PARCEL_NO_": "105401030200", "Tax_Legal_": "PALM STRAEDE 5EE QUEENS QUARTER", "Name": "BLAKE, ERIC W. & OTHERS", "Address": "PO Box 7552", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.998429253499999, "SHAPE_Area": 159.14373731399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358708.403899997472763, 257324.292599998414516 ], [ 358699.554300002753735, 257321.898200001567602 ], [ 358693.773400001227856, 257337.894000001251698 ], [ 358705.8699000030756, 257337.781899999827147 ], [ 358708.403899997472763, 257324.292599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302065200", "MAP": null, "PARCEL_NAM": "INTE GADE 6", "ACRE": null, "LONGITUDE": -64.93529005000001, "LATITUDE": 18.34538377, "OBJECTID_1": 9733, "PARCEL_NO_": "105302065200", "Tax_Legal_": "INTE GADE 6 QUEENS QUARTER", "Name": "CLINE, EVA THEDORA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12800, "Improved_V": 56600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.4447242472, "SHAPE_Area": 329.860774746 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358347.993000000715256, 257320.076299998909235 ], [ 358328.73139999806881, 257309.364000000059605 ], [ 358324.57039999961853, 257324.528599999845028 ], [ 358343.02929999679327, 257334.812199998646975 ], [ 358347.993000000715256, 257320.076299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92424235, "LATITUDE": 18.34541548, "OBJECTID_1": 12533, "PARCEL_NO_": "105402060100", "Tax_Legal_": "HOSPITAL GROUND 146A NEW QTR", "Name": "WHEATLEY, DARIEN & COSMORE", "Address": "PO Box 10778", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2300, "Improved_V": 61000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.458441704599998, "SHAPE_Area": 152.67664040099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359510.408699996769428, 257341.283700000494719 ], [ 359512.104099996387959, 257331.587200000882149 ], [ 359497.612000003457069, 257328.935499999672174 ], [ 359495.106799997389317, 257339.047499999403954 ], [ 359510.408699996769428, 257341.283700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402060200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92413605, "LATITUDE": 18.34536797, "OBJECTID_1": 12534, "PARCEL_NO_": "105402060200", "Tax_Legal_": "HOSPITAL GROUND 146 NEW QTR", "Name": "BENNETT, DWIGHT", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16600, "Improved_V": 172700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.744611554800002, "SHAPE_Area": 346.64874920400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359526.258599996566772, 257338.588599998503923 ], [ 359525.387599997222424, 257322.05009999871254 ], [ 359513.793999999761581, 257322.524000000208616 ], [ 359500.079499997198582, 257323.25620000064373 ], [ 359497.612000003457069, 257328.935499999672174 ], [ 359512.104099996387959, 257331.587200000882149 ], [ 359510.408699996769428, 257341.283700000494719 ], [ 359526.258599996566772, 257338.588599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302064600", "MAP": null, "PARCEL_NAM": "CECELIE GADE 5", "ACRE": null, "LONGITUDE": -64.93497921, "LATITUDE": 18.34535714, "OBJECTID_1": 9727, "PARCEL_NO_": "105302064600", "Tax_Legal_": "CECELIE GADE 5 QUEENS QUARTER", "Name": "ROBINSON, FAYE", "Address": "PO Box 7991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.290039414500001, "SHAPE_Area": 363.90360004399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358363.431599996984005, 257306.270500000566244 ], [ 358358.426500000059605, 257325.861200001090765 ], [ 358371.260999999940395, 257333.776700001209974 ], [ 358377.828400000929832, 257320.109400000423193 ], [ 358379.451800003647804, 257318.856100000441074 ], [ 358381.111199997365475, 257313.381299998611212 ], [ 358363.431599996984005, 257306.270500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302063500", "MAP": "D9-9051-T016", "PARCEL_NAM": "NORDSIDEVEJ 13 CONS", "ACRE": "0.39", "LONGITUDE": -64.93475255, "LATITUDE": 18.34545678, "OBJECTID_1": 9716, "PARCEL_NO_": "105302063500", "Tax_Legal_": "13 NORDSIDEVEJ QUEENS'S QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 152900, "Improved_V": 147700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.243497854, "SHAPE_Area": 1392.43100641 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358380.248999997973442, 257362.106699999421835 ], [ 358403.100100003182888, 257333.399099998176098 ], [ 358415.458999998867512, 257335.486999999731779 ], [ 358414.891800001263618, 257323.579100001603365 ], [ 358413.222199998795986, 257305.724800001829863 ], [ 358413.215800002217293, 257305.667100001126528 ], [ 358390.449100002646446, 257306.454100001603365 ], [ 358388.398599997162819, 257309.852299999445677 ], [ 358385.108599998056889, 257317.424800001084805 ], [ 358381.001500003039837, 257326.257100000977516 ], [ 358379.597900003194809, 257329.428700000047684 ], [ 358376.068300001323223, 257337.404699999839067 ], [ 358373.606200002133846, 257342.450800001621246 ], [ 358369.50450000166893, 257350.64979999884963 ], [ 358366.334799997508526, 257355.940799999982119 ], [ 358380.248999997973442, 257362.106699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401100400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93210554, "LATITUDE": 18.34541348, "OBJECTID_1": 11619, "PARCEL_NO_": "105401100400", "Tax_Legal_": "PALM STRAEDE 12 QUEENS QUARTER", "Name": "GARFIELD, RUDOLPH & OTHERS", "Address": "PO Box 596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10500, "Improved_V": 23700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.338525563300003, "SHAPE_Area": 147.14537582899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358661.592799998819828, 257329.186900001019239 ], [ 358680.098499998450279, 257333.982400000095367 ], [ 358684.193000003695488, 257326.627599999308586 ], [ 358663.259400002658367, 257322.86769999936223 ], [ 358661.592799998819828, 257329.186900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302032300", "MAP": null, "PARCEL_NAM": "LAERKE STRADE 11", "ACRE": null, "LONGITUDE": -64.93737544, "LATITUDE": 18.34536686, "OBJECTID_1": 9642, "PARCEL_NO_": "105302032300", "Tax_Legal_": "LAERKE STRADE 11 CROWN PRINCE QTR", "Name": "EMANUEL, ANGELLA & LEON", "Address": "PO Box 11403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17300, "Improved_V": 151800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.679788470899993, "SHAPE_Area": 300.50115486200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358128.690399996936321, 257316.592700000852346 ], [ 358106.993699997663498, 257307.760200001299381 ], [ 358103.6587999984622, 257320.609700001776218 ], [ 358122.938299998641014, 257329.211199998855591 ], [ 358128.690399996936321, 257316.592700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402042300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92287069, "LATITUDE": 18.34540791, "OBJECTID_1": 12514, "PARCEL_NO_": "105402042300", "Tax_Legal_": "HOSPITAL GROUND 187 NEW QUARTER", "Name": "TODMAN, JOHN J. , LIFE ESTATE", "Address": "P.O. BOX 3502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.329751688200005, "SHAPE_Area": 304.58640298900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359663.907600000500679, 257329.36879999935627 ], [ 359631.624499998986721, 257332.69310000166297 ], [ 359632.382299996912479, 257338.398899998515844 ], [ 359633.159800000488758, 257341.782699998468161 ], [ 359666.249200001358986, 257338.464999999850988 ], [ 359663.907600000500679, 257329.36879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302060800", "MAP": null, "PARCEL_NAM": "VESTER GADE 26B", "ACRE": null, "LONGITUDE": -64.93587058, "LATITUDE": 18.34540617, "OBJECTID_1": 9693, "PARCEL_NO_": "105302060800", "Tax_Legal_": "VESTER GADE 26B QUEENS QTR", "Name": "BURNETT-STERN, MARIE LOUISE, TRU", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6600, "Improved_V": 18500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.240948532300003, "SHAPE_Area": 124.42267722299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358273.004199996590614, 257319.673599999397993 ], [ 358268.180699996650219, 257317.94539999961853 ], [ 358264.899700000882149, 257324.462499998509884 ], [ 358281.783699996769428, 257330.300200000405312 ], [ 358284.258400000631809, 257323.776500001549721 ], [ 358273.004199996590614, 257319.673599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92395941, "LATITUDE": 18.34531756, "OBJECTID_1": 12535, "PARCEL_NO_": "105402060300", "Tax_Legal_": "HOSPITAL GROUND 172 NEW QUARTER", "Name": "PRINCE, ZELDA", "Address": "98-3 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.988569512200002, "SHAPE_Area": 399.49394170699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359541.097099997103214, 257335.835299998521805 ], [ 359542.913000002503395, 257311.996599998325109 ], [ 359525.965999998152256, 257313.546599999070168 ], [ 359525.02139999717474, 257313.594200000166893 ], [ 359525.387599997222424, 257322.05009999871254 ], [ 359526.258599996566772, 257338.588599998503923 ], [ 359528.174599997699261, 257338.262699998915195 ], [ 359541.097099997103214, 257335.835299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92198816, "LATITUDE": 18.34539998, "OBJECTID_1": 12598, "PARCEL_NO_": "105402090900", "Tax_Legal_": "ROSS C-20 KINGS QTR.", "Name": "WATTS, SHAMARA", "Address": "PO Box 1591", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 7600, "Improved_V": 53400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.605137902199999, "SHAPE_Area": 165.611125891 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359733.227099999785423, 257332.680300001055002 ], [ 359736.373199999332428, 257341.994199998676777 ], [ 359741.220100000500679, 257340.978399999439716 ], [ 359753.334499999880791, 257338.755499999970198 ], [ 359750.946099996566772, 257335.147399999201298 ], [ 359742.130699999630451, 257328.742400001734495 ], [ 359738.907200001180172, 257328.504999998956919 ], [ 359733.227099999785423, 257332.680300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302093200", "MAP": null, "PARCEL_NAM": "LEMON STRAEDE 4A", "ACRE": null, "LONGITUDE": -64.932284, "LATITUDE": 18.34539577, "OBJECTID_1": 9809, "PARCEL_NO_": "105302093200", "Tax_Legal_": "LEMON STRAEDE 4A QUEENS", "Name": "SMITH, RANDOLPH-EST. , SMITH, I & W.", "Address": "PO Box 533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4600, "Improved_V": 2500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.0308453329, "SHAPE_Area": 80.422848636599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358651.180900000035763, 257320.868999999016523 ], [ 358647.885499998927116, 257329.074700001627207 ], [ 358656.733400002121925, 257331.68019999936223 ], [ 358659.233199998736382, 257322.201499998569489 ], [ 358651.180900000035763, 257320.868999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302030600", "MAP": null, "PARCEL_NAM": "HILL STREET 29", "ACRE": null, "LONGITUDE": -64.93873992, "LATITUDE": 18.3453339, "OBJECTID_1": 9626, "PARCEL_NO_": "105302030600", "Tax_Legal_": "HILL STREET 29 CROWN PRINCE QUARTER", "Name": "LLOYD, FREDERICK", "Address": "PO Box 303524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20600, "Improved_V": 57100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.7655947664, "SHAPE_Area": 489.09021215899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357986.046800002455711, 257306.770399998873472 ], [ 357962.712300002574921, 257300.879799999296665 ], [ 357957.662299998104572, 257325.747600000351667 ], [ 357984.313699997961521, 257320.899399999529123 ], [ 357986.046800002455711, 257306.770399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402042400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92312306, "LATITUDE": 18.34535942, "OBJECTID_1": 12515, "PARCEL_NO_": "105402042400", "Tax_Legal_": "175 HOSPITAL GROUND KINGS QUARTER", "Name": "CHARLES, MARVLYN", "Address": "PO Box 9380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.801783798200006, "SHAPE_Area": 330.45854246300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359631.624499998986721, 257332.69310000166297 ], [ 359628.516099996864796, 257318.946600001305342 ], [ 359616.412399999797344, 257319.903000000864267 ], [ 359610.604599997401237, 257339.065000001341105 ], [ 359622.702899999916553, 257338.741799999028444 ], [ 359632.382299996912479, 257338.398899998515844 ], [ 359631.624499998986721, 257332.69310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92377756, "LATITUDE": 18.34532836, "OBJECTID_1": 12536, "PARCEL_NO_": "105402060400", "Tax_Legal_": "HOSPITAL GROUND 17O NEW QUARTER", "Name": "DANIEL, DELMA", "Address": "PO Box 12252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9600, "Improved_V": 110300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.52813042, "SHAPE_Area": 362.77648356600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359565.4358000010252, 257318.513700000941753 ], [ 359542.467299997806549, 257317.847300000488758 ], [ 359541.097099997103214, 257335.835299998521805 ], [ 359565.326099999248981, 257331.389600001275539 ], [ 359565.4358000010252, 257318.513700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302093100", "MAP": null, "PARCEL_NAM": "LEMON STRAEDE 4B", "ACRE": null, "LONGITUDE": -64.93237115, "LATITUDE": 18.34537708, "OBJECTID_1": 9808, "PARCEL_NO_": "105302093100", "Tax_Legal_": "LEMON STRAEDE 4B QUEENS QTR.", "Name": "SMITH RANDOLPH B. EST. SMITH, I & W", "Address": "PO Box 533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.945855507499999, "SHAPE_Area": 82.976320512599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358637.428599998354912, 257326.0337999984622 ], [ 358647.885499998927116, 257329.074700001627207 ], [ 358651.180900000035763, 257320.868999999016523 ], [ 358640.711400002241135, 257319.305700000375509 ], [ 358639.876299999654293, 257322.676300000399351 ], [ 358637.428599998354912, 257326.0337999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302064700", "MAP": null, "PARCEL_NAM": "CECELIE GADE 4", "ACRE": null, "LONGITUDE": -64.93510473000001, "LATITUDE": 18.34530533, "OBJECTID_1": 9728, "PARCEL_NO_": "105302064700", "Tax_Legal_": "CECELIE GADE 4 QUEENS QUARTER", "Name": "ROBINSON, FAYE", "Address": "PO Box 7991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.237839317899997, "SHAPE_Area": 222.035282177 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358352.985500000417233, 257301.963100001215935 ], [ 358347.993000000715256, 257320.076299998909235 ], [ 358358.426500000059605, 257325.861200001090765 ], [ 358363.431599996984005, 257306.270500000566244 ], [ 358352.985500000417233, 257301.963100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302093000", "MAP": null, "PARCEL_NAM": "MURPHY GADE 3", "ACRE": null, "LONGITUDE": -64.93257381, "LATITUDE": 18.34532361, "OBJECTID_1": 9807, "PARCEL_NO_": "105302093000", "Tax_Legal_": "MURPHY GADE 3 QUEENS QUARTER", "Name": "SHALHOUT, MALIK, MOHAMMED , THAMINA & TAMMIT", "Address": "2703 Murphy Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16500, "Improved_V": 115500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.792016830099996, "SHAPE_Area": 289.35289278 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358608.460699997842312, 257318.830600000917912 ], [ 358631.773699998855591, 257327.254099998623133 ], [ 358637.509499996900558, 257316.535199999809265 ], [ 358614.194799996912479, 257308.322900000959635 ], [ 358612.538999997079372, 257313.375500001013279 ], [ 358608.460699997842312, 257318.830600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302065100", "MAP": null, "PARCEL_NAM": "INTE GADE 7", "ACRE": null, "LONGITUDE": -64.93545491, "LATITUDE": 18.34530194, "OBJECTID_1": 9732, "PARCEL_NO_": "105302065100", "Tax_Legal_": "INTE GADE 7 QUEENS QTR", "Name": "RIEARA, CRYSTAL & CLARK", "Address": "955 Evergreen Ave", "City": "Bronx", "State": "New York", "Zip": 10473, "Country": "United States", "Land_Value": 14300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.860667810600006, "SHAPE_Area": 279.82002687900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358328.73139999806881, 257309.364000000059605 ], [ 358312.677100002765656, 257300.788800001144409 ], [ 358309.30799999833107, 257317.648699998855591 ], [ 358324.57039999961853, 257324.528599999845028 ], [ 358328.73139999806881, 257309.364000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302061000", "MAP": null, "PARCEL_NAM": "VESTER GADE 26AA", "ACRE": null, "LONGITUDE": -64.93582174, "LATITUDE": 18.34532363, "OBJECTID_1": 9694, "PARCEL_NO_": "105302061000", "Tax_Legal_": "VESTER GADE 26AA QUEENS QTR", "Name": "TURNBULL, MICHILLE A. (LIFE ESTATE)", "Address": "2056 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11500, "Improved_V": 70400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.671020895300003, "SHAPE_Area": 172.07854694299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358288.394199997186661, 257311.56700000166893 ], [ 358273.920199997723103, 257306.804400000721216 ], [ 358273.099500000476837, 257308.4864999987185 ], [ 358271.456299997866154, 257312.061599999666214 ], [ 358275.473499998450279, 257313.78319999948144 ], [ 358273.004199996590614, 257319.673599999397993 ], [ 358284.258400000631809, 257323.776500001549721 ], [ 358288.394199997186661, 257311.56700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93177397, "LATITUDE": 18.34531109, "OBJECTID_1": 11426, "PARCEL_NO_": "105401030400", "Tax_Legal_": "PALM STRAEDE 5C QUEENS QUARTER", "Name": "BAIRD, E & HARRIGAN, A C. C/O", "Address": "PO Box 12418", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 34900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.555253911600005, "SHAPE_Area": 405.60320903100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358718.997500002384186, 257311.291600000113249 ], [ 358694.026900000870228, 257308.131900001317263 ], [ 358691.507299996912479, 257319.932500001043081 ], [ 358699.554300002753735, 257321.898200001567602 ], [ 358708.403899997472763, 257324.292599998414516 ], [ 358719.66889999806881, 257327.129099998623133 ], [ 358723.745399996638298, 257321.885099999606609 ], [ 358718.997500002384186, 257311.291600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402060900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92352415000001, "LATITUDE": 18.34525621, "OBJECTID_1": 12542, "PARCEL_NO_": "105402060900", "Tax_Legal_": "HOSPITAL GROUND 158 NEW QTR", "Name": "FRETT, CAMMY A. & OTHERS", "Address": "2342 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15800, "Improved_V": 53500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.165388749, "SHAPE_Area": 645.00161389499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359565.568800002336502, 257302.893899999558926 ], [ 359565.4358000010252, 257318.513700000941753 ], [ 359565.326099999248981, 257331.389600001275539 ], [ 359586.326200000941753, 257327.339600000530481 ], [ 359604.126199997961521, 257320.308100000023842 ], [ 359603.3378000035882, 257318.190699998289347 ], [ 359599.329700000584126, 257315.413699999451637 ], [ 359565.568800002336502, 257302.893899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302031000", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 13A", "ACRE": null, "LONGITUDE": -64.93842642, "LATITUDE": 18.34531944, "OBJECTID_1": 9630, "PARCEL_NO_": "105302031000", "Tax_Legal_": "13 GYLLINGS STREET", "Name": "LANG, ARIENNE & MYRTLE", "Address": "PO Box 6193", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12600, "Improved_V": 30600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.234975519399995, "SHAPE_Area": 348.49993256 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358020.651699997484684, 257314.864000000059605 ], [ 358014.305500000715256, 257302.56870000064373 ], [ 357991.669399999082088, 257309.349500000476837 ], [ 357989.153399996459484, 257320.728000000119209 ], [ 358011.758900001645088, 257317.535500001162291 ], [ 358020.651699997484684, 257314.864000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302063300", "MAP": null, "PARCEL_NAM": "NORDSIDEVEJ 12-2", "ACRE": null, "LONGITUDE": -64.93439788000001, "LATITUDE": 18.34532706, "OBJECTID_1": 9714, "PARCEL_NO_": "105302063300", "Tax_Legal_": "NORDSIDEVEJ 12-2 QUEENS QTR", "Name": "LAMBERTIS, ALOMA& ARETHA & ALVARO", "Address": "PO BOX 12147", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11800, "Improved_V": 45600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.046346673199999, "SHAPE_Area": 218.71655867000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358441.595399998128414, 257312.609700001776218 ], [ 358419.846500001847744, 257309.898600000888109 ], [ 358421.365699999034405, 257320.887899998575449 ], [ 358438.273000001907349, 257323.981600001454353 ], [ 358441.595399998128414, 257312.609700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302063600", "MAP": "D9-648-T67", "PARCEL_NAM": "NORDSIDEVEJ 13-1", "ACRE": "3,040 sq ft", "LONGITUDE": -64.93466844, "LATITUDE": 18.34515681, "OBJECTID_1": 9717, "PARCEL_NO_": "105302063600", "Tax_Legal_": "NORDSIDEVEJ 13-1 QUEENS QTR", "Name": "TODMAN, EUNICE INNIS", "Address": "PO Box 954", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17300, "Improved_V": 53300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.594093838800006, "SHAPE_Area": 326.22443381300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358413.215800002217293, 257305.667100001126528 ], [ 358412.750399999320507, 257301.478999998420477 ], [ 358410.863399997353554, 257296.154800001531839 ], [ 358407.695900000631809, 257290.49379999935627 ], [ 358403.584799997508526, 257285.574000000953674 ], [ 358401.832599997520447, 257284.495700001716614 ], [ 358399.406400002539158, 257284.967399999499321 ], [ 358397.991099998354912, 257286.247900001704693 ], [ 358396.637900002300739, 257289.232599999755621 ], [ 358394.172200001776218, 257294.700800001621246 ], [ 358390.645199999213219, 257306.129200000315905 ], [ 358390.449100002646446, 257306.454100001603365 ], [ 358413.215800002217293, 257305.667100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92289515, "LATITUDE": 18.34530661, "OBJECTID_1": 12516, "PARCEL_NO_": "105402042500", "Tax_Legal_": "HOSPITAL GROUND 185 NEW QUARTER", "Name": "FRAZER, AMANDA", "Address": "PO Box 1603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30000, "Improved_V": 201800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.822637658399998, "SHAPE_Area": 443.219764639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359628.516099996864796, 257318.946600001305342 ], [ 359631.624499998986721, 257332.69310000166297 ], [ 359663.907600000500679, 257329.36879999935627 ], [ 359661.598300002515316, 257316.473200000822544 ], [ 359628.516099996864796, 257318.946600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302350300", "MAP": "B9-380-T73", "PARCEL_NAM": null, "ACRE": ".123", "LONGITUDE": -64.93283204, "LATITUDE": 18.34520351, "OBJECTID_1": 10622, "PARCEL_NO_": "105302350300", "Tax_Legal_": "DENMARK HILL QUEENS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 457100, "Improved_V": 1044300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.680081072299998, "SHAPE_Area": 553.60029567699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358581.150399997830391, 257306.363699998706579 ], [ 358595.521999999880791, 257323.157699998468161 ], [ 358604.488499999046326, 257311.831999998539686 ], [ 358609.436099998652935, 257298.995799999684095 ], [ 358597.454700000584126, 257285.598799999803305 ], [ 358581.150399997830391, 257306.363699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93203531, "LATITUDE": 18.34532155, "OBJECTID_1": 11415, "PARCEL_NO_": "105401020200", "Tax_Legal_": "PALM STRAEDE 11A QUEENS QUARTER", "Name": "GARFIELD, JULIA", "Address": "PO Box 596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8400, "Improved_V": 66000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.102220136100001, "SHAPE_Area": 126.463788024 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358674.639499999582767, 257312.195099998265505 ], [ 358672.143200002610683, 257321.2516999989748 ], [ 358685.830799996852875, 257323.685699999332428 ], [ 358688.321599997580051, 257315.26240000128746 ], [ 358674.639499999582767, 257312.195099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302064800", "MAP": null, "PARCEL_NAM": "CECELIE GADE 3", "ACRE": null, "LONGITUDE": -64.93524737, "LATITUDE": 18.34524032, "OBJECTID_1": 9729, "PARCEL_NO_": "105302064800", "Tax_Legal_": "CECELIE GADE 3 QUEENS QUARTER", "Name": "CLINE, IVA & EVA", "Address": "PO Box 28", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040028, "Country": "United States", "Land_Value": 12000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.507053890199998, "SHAPE_Area": 380.41326511300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358332.091499999165535, 257293.559500001370907 ], [ 358328.73139999806881, 257309.364000000059605 ], [ 358347.993000000715256, 257320.076299998909235 ], [ 358352.985500000417233, 257301.963100001215935 ], [ 358332.091499999165535, 257293.559500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302031500", "MAP": null, "PARCEL_NAM": "CIRCLE STREET REMAINDER 1 .", "ACRE": null, "LONGITUDE": -64.93787871000001, "LATITUDE": 18.34508712, "OBJECTID_1": 9635, "PARCEL_NO_": "105302031500", "Tax_Legal_": "CIRCLE STREET REMAINDER 1 KRONPRINDSENS QTR.", "Name": "LEE, PAULINE N.", "Address": "PO Box 791", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30500, "Improved_V": 3000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.676990349500002, "SHAPE_Area": 443.31763749300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358073.402099996805191, 257275.370999999344349 ], [ 358051.109200000762939, 257278.123500000685453 ], [ 358053.089500002563, 257293.386900000274181 ], [ 358053.721500001847744, 257299.738499999046326 ], [ 358073.226899996399879, 257295.938700001686811 ], [ 358073.402099996805191, 257275.370999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93213659, "LATITUDE": 18.34528694, "OBJECTID_1": 11414, "PARCEL_NO_": "105401020100", "Tax_Legal_": "PALM STRAEDE 11B QUEENS QUARTER", "Name": "WATLEY, EDWIN", "Address": "2029 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4500, "Improved_V": 53300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.815590252500002, "SHAPE_Area": 116.847934524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358674.639499999582767, 257312.195099998265505 ], [ 358675.476400002837181, 257308.613299999386072 ], [ 358667.427599996328354, 257306.85869999974966 ], [ 358665.780799999833107, 257310.855999998748302 ], [ 358663.286399997770786, 257319.701499998569489 ], [ 358672.143200002610683, 257321.2516999989748 ], [ 358674.639499999582767, 257312.195099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302032400", "MAP": null, "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.93733013000001, "LATITUDE": 18.34526217, "OBJECTID_1": 9643, "PARCEL_NO_": "105302032400", "Tax_Legal_": "LAERKE STREET 1O CROWN PRINCE QUARTER", "Name": "MIGA, ROBERTO & EDDONE", "Address": "PO BOX 11448", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 23400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.655356377299995, "SHAPE_Area": 282.96921303699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358132.840700000524521, 257302.694499999284744 ], [ 358107.870099999010563, 257299.534800000488758 ], [ 358106.993699997663498, 257307.760200001299381 ], [ 358128.690399996936321, 257316.592700000852346 ], [ 358132.799300000071526, 257307.549300000071526 ], [ 358132.840700000524521, 257302.694499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302065500", "MAP": null, "PARCEL_NAM": "CECELIE GADE 1A", "ACRE": null, "LONGITUDE": -64.93559861, "LATITUDE": 18.34522214, "OBJECTID_1": 9736, "PARCEL_NO_": "105302065500", "Tax_Legal_": "CECELIE GADE 1A QUEEN QTR", "Name": "JAMES, GLADYS", "Address": "25 VENSTE GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.044916901500002, "SHAPE_Area": 350.286026832 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358313.515799999237061, 257296.995999999344349 ], [ 358299.86599999666214, 257290.129299998283386 ], [ 358292.440200001001358, 257309.911299999803305 ], [ 358309.30799999833107, 257317.648699998855591 ], [ 358312.677100002765656, 257300.788800001144409 ], [ 358313.515799999237061, 257296.995999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302060400", "MAP": null, "PARCEL_NAM": "ANTONIE STAEDE 1", "ACRE": null, "LONGITUDE": -64.93641058, "LATITUDE": 18.3452478, "OBJECTID_1": 9688, "PARCEL_NO_": "105302060400", "Tax_Legal_": "ANTONIE STAEDE 1 QUEENS QUARTER", "Name": "MARCELLI, JOHN & OTHERS", "Address": "PO Box 543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31500, "Improved_V": 42200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.948641987199998, "SHAPE_Area": 132.80264366599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358220.61710000038147, 257316.241300001740456 ], [ 358218.883299998939037, 257303.611299999058247 ], [ 358224.16160000115633, 257303.304800000041723 ], [ 358223.183600001037121, 257296.76069999858737 ], [ 358215.9358000010252, 257298.097199998795986 ], [ 358213.491700001060963, 257301.032499998807907 ], [ 358214.164899997413158, 257316.658900000154972 ], [ 358220.61710000038147, 257316.241300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.932238, "LATITUDE": 18.34528952, "OBJECTID_1": 11407, "PARCEL_NO_": "105401010200", "Tax_Legal_": "LEMON STRAEDE 5A QUEENS QUARTER", "Name": "SMITH RANDOLPH B. EST. SMITH, I & W", "Address": "PO Box 533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6300, "Improved_V": 3400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.418427551299999, "SHAPE_Area": 104.591924146 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358665.780799999833107, 257310.855999998748302 ], [ 358653.698700003325939, 257309.279500000178814 ], [ 358652.014200001955032, 257317.709399998188019 ], [ 358663.286399997770786, 257319.701499998569489 ], [ 358665.780799999833107, 257310.855999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402060500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92421029, "LATITUDE": 18.34523923, "OBJECTID_1": 12537, "PARCEL_NO_": "105402060500", "Tax_Legal_": "HOSPITAL GROUND 148A KINGS QTR", "Name": "EMANUEL, LINDEL L.", "Address": "PO Box 6793", "City": "Tallahassee", "State": "Florida", "Zip": 32314, "Country": "United States", "Land_Value": 3800, "Improved_V": 32200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.999082712700002, "SHAPE_Area": 195.227340717 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359514.715400002896786, 257309.021600000560284 ], [ 359501.01349999755621, 257308.276200000196695 ], [ 359500.079499997198582, 257323.25620000064373 ], [ 359513.793999999761581, 257322.524000000208616 ], [ 359514.715400002896786, 257309.021600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93233917000001, "LATITUDE": 18.34527709, "OBJECTID_1": 11406, "PARCEL_NO_": "105401010100", "Tax_Legal_": "LEMON STRAEDE 5B QUEENS QUARTER", "Name": "ALLAMBY, HEBERT & OTHERS", "Address": "PO Box 10763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6900, "Improved_V": 36900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.0724299484, "SHAPE_Area": 80.508170373300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358652.014200001955032, 257317.709399998188019 ], [ 358653.698700003325939, 257309.279500000178814 ], [ 358644.030199997127056, 257308.355900000780821 ], [ 358642.351000003516674, 257316.152699999511242 ], [ 358652.014200001955032, 257317.709399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402060600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92409369000001, "LATITUDE": 18.3452401, "OBJECTID_1": 12538, "PARCEL_NO_": "105402060600", "Tax_Legal_": "148 HOSPITAL GROUND KINGS QTR", "Name": "PETTY FAMILY TRUST", "Address": "PO Box 7726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3800, "Improved_V": 36000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.682330084299998, "SHAPE_Area": 140.602872354 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359525.387599997222424, 257322.05009999871254 ], [ 359524.851499997079372, 257309.673500001430511 ], [ 359514.715400002896786, 257309.021600000560284 ], [ 359513.793999999761581, 257322.524000000208616 ], [ 359525.387599997222424, 257322.05009999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92261572, "LATITUDE": 18.34522856, "OBJECTID_1": 12521, "PARCEL_NO_": "105402050400", "Tax_Legal_": "188 REM HOSPITAL GROUND NEW QUARTER", "Name": "KISHMA & MAURICE SAMUEL", "Address": "PO Box 927", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4700, "Improved_V": 41600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.563826306300001, "SHAPE_Area": 282.263493342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359686.552599996328354, 257321.532600000500679 ], [ 359683.23200000077486, 257307.532299999147654 ], [ 359665.095899999141693, 257308.932199999690056 ], [ 359669.582299999892712, 257325.82660000026226 ], [ 359686.552599996328354, 257321.532600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93203008, "LATITUDE": 18.34517893, "OBJECTID_1": 11416, "PARCEL_NO_": "105401020300", "Tax_Legal_": "PALM STRAEDE 10 QUEENS QUARTER", "Name": "EDWIN, JUDITH W", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25100, "Improved_V": 46800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.8085312332, "SHAPE_Area": 412.15816333700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358672.393200002610683, 257291.911699999123812 ], [ 358670.719400003552437, 257299.075199998915195 ], [ 358667.427599996328354, 257306.85869999974966 ], [ 358675.476400002837181, 257308.613299999386072 ], [ 358674.639499999582767, 257312.195099998265505 ], [ 358688.321599997580051, 257315.26240000128746 ], [ 358690.008000001311302, 257306.621300000697374 ], [ 358691.737499997019768, 257292.91440000012517 ], [ 358682.072499997913837, 257291.56870000064373 ], [ 358672.393200002610683, 257291.911699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302030700", "MAP": null, "PARCEL_NAM": "13 GYLLINGS STREET", "ACRE": null, "LONGITUDE": -64.93844993, "LATITUDE": 18.34519838, "OBJECTID_1": 9627, "PARCEL_NO_": "105302030700", "Tax_Legal_": "GYLLINGS STREET 13A CROWN PRINCE QTR", "Name": "WHEATLEY, BALFOUR", "Address": "PO Box 10478", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6600, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.916430888099995, "SHAPE_Area": 280.58651340699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357991.669399999082088, 257309.349500000476837 ], [ 358014.305500000715256, 257302.56870000064373 ], [ 358007.169200003147125, 257288.366999998688698 ], [ 358000.707900002598763, 257289.580699998885393 ], [ 357995.839500002563, 257293.129399999976158 ], [ 357993.359399996697903, 257300.286299999803305 ], [ 357991.669399999082088, 257309.349500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301154200", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-32", "ACRE": ".22", "LONGITUDE": -64.94653317, "LATITUDE": 18.34516564, "OBJECTID_1": 9540, "PARCEL_NO_": "105301154200", "Tax_Legal_": "ALTONA & WELGUNST 220-32 KRONP. QTR.", "Name": "MADURO, ERNESTINE", "Address": "PO Box 12222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.458340947, "SHAPE_Area": 680.40511254499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357169.275700002908707, 257297.341299999505281 ], [ 357164.588899999856949, 257279.570999998599291 ], [ 357126.68860000371933, 257279.68299999833107 ], [ 357125.772600002586842, 257292.552200000733137 ], [ 357145.894400000572205, 257296.938799999654293 ], [ 357162.024300001561642, 257296.648600000888109 ], [ 357161.975699998438358, 257302.347800001502037 ], [ 357169.275700002908707, 257297.341299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302061100", "MAP": null, "PARCEL_NAM": "VESTER GADE 26", "ACRE": null, "LONGITUDE": -64.93579263, "LATITUDE": 18.34521923, "OBJECTID_1": 9695, "PARCEL_NO_": "105302061100", "Tax_Legal_": "VESTER GADE 26 QUEEN SQTR", "Name": "CHRISTIAN, CLAUDE & A", "Address": "4701 14th St", "City": "Plano", "State": "Texas", "Zip": 75074, "Country": "United States", "Land_Value": 11900, "Improved_V": 35000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.816321377100003, "SHAPE_Area": 184.760345059 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358292.517499998211861, 257300.834899999201298 ], [ 358278.052400000393391, 257295.017000000923872 ], [ 358273.920199997723103, 257306.804400000721216 ], [ 358288.394199997186661, 257311.56700000166893 ], [ 358292.517499998211861, 257300.834899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302063200", "MAP": null, "PARCEL_NAM": "NORDSIDEVEJ 12-3", "ACRE": null, "LONGITUDE": -64.93439508, "LATITUDE": 18.34521621, "OBJECTID_1": 9713, "PARCEL_NO_": "105302063200", "Tax_Legal_": "NORDSIDEVEJ 12-3 QUEENS QTR", "Name": "MEYERS, ILIS", "Address": "BOX 2921", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14700, "Improved_V": 41200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.04170448000001, "SHAPE_Area": 322.45704073100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358444.91950000077486, 257301.026799999177456 ], [ 358418.35980000346899, 257295.109900001436472 ], [ 358419.846500001847744, 257309.898600000888109 ], [ 358441.595399998128414, 257312.609700001776218 ], [ 358444.91950000077486, 257301.026799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302093300", "MAP": null, "PARCEL_NAM": "MURPHY GADE 4", "ACRE": null, "LONGITUDE": -64.93252366, "LATITUDE": 18.34519743, "OBJECTID_1": 9810, "PARCEL_NO_": "105302093300", "Tax_Legal_": "MURPHY GADE 4 QUEENS QTR", "Name": "PETERSEN, AROLD K. & JOYCE O. P. HODGE", "Address": "2704 Murphy Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18900, "Improved_V": 77500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.032544897400001, "SHAPE_Area": 286.62941315299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358641.659800000488758, 257302.636999998241663 ], [ 358619.156800001859665, 257293.798000000417233 ], [ 358615.830799996852875, 257305.592000000178814 ], [ 358638.339199997484684, 257313.797800000756979 ], [ 358641.659800000488758, 257302.636999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402060800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92376898000001, "LATITUDE": 18.34518036, "OBJECTID_1": 12540, "PARCEL_NO_": "105402060800", "Tax_Legal_": "HOSPITAL GROUND 156 NEW QTR", "Name": "RITA E DAWSON LIVING TRUST", "Address": "4907 Estate Tutu E-7", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.431609220400006, "SHAPE_Area": 385.28558568900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359565.568800002336502, 257302.893899999558926 ], [ 359543.829000003635883, 257299.127399999648333 ], [ 359542.913000002503395, 257311.996599998325109 ], [ 359542.467299997806549, 257317.847300000488758 ], [ 359565.4358000010252, 257318.513700000941753 ], [ 359565.568800002336502, 257302.893899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302040100", "MAP": null, "PARCEL_NAM": "21 REM", "ACRE": "0.95", "LONGITUDE": -64.94132198, "LATITUDE": 18.34491232, "OBJECTID_1": 9656, "PARCEL_NO_": "105302040100", "Tax_Legal_": "SOLBERG 21 LITTLE NORTHSIDE", "Name": "SPENCELEY, KENNETH & MARIA", "Address": "PO Box 292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 217700, "Improved_V": 69100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.411297042, "SHAPE_Area": 3878.0715178400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357678.717299997806549, 257230.3733000010252 ], [ 357674.854400001466274, 257233.151099998503923 ], [ 357672.031900003552437, 257237.94990000128746 ], [ 357673.584899999201298, 257259.750900000333786 ], [ 357671.706399999558926, 257270.042100001126528 ], [ 357668.406300000846386, 257283.492899999022484 ], [ 357666.787500001490116, 257303.569400001317263 ], [ 357674.016500003635883, 257302.738899998366833 ], [ 357686.94990000128746, 257299.045000001788139 ], [ 357700.680600002408028, 257296.413199998438358 ], [ 357725.690600000321865, 257294.929200001060963 ], [ 357729.149599999189377, 257267.515299998223782 ], [ 357732.626599997282028, 257237.990699999034405 ], [ 357729.266099996864796, 257237.357999999076128 ], [ 357726.68639999628067, 257236.683299999684095 ], [ 357721.148599997162819, 257234.38910000026226 ], [ 357698.706699997186661, 257228.666400000452995 ], [ 357687.461800001561642, 257227.74040000140667 ], [ 357678.717299997806549, 257230.3733000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302030800", "MAP": null, "PARCEL_NAM": "HILL STREET 27", "ACRE": null, "LONGITUDE": -64.93869614, "LATITUDE": 18.3451673, "OBJECTID_1": 9628, "PARCEL_NO_": "105302030800", "Tax_Legal_": "27 HILL STREET CROWN PRINCE QUARTER", "Name": "SENTHILL, ATIIM & MONICA", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16400, "Improved_V": 25200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.406633593400002, "SHAPE_Area": 418.96671483799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357990.222300000488758, 257289.916999999433756 ], [ 357966.89130000025034, 257283.604400001466274 ], [ 357962.712300002574921, 257300.879799999296665 ], [ 357986.046800002455711, 257306.770399998873472 ], [ 357987.736800000071526, 257297.70719999819994 ], [ 357990.222300000488758, 257289.916999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302032100", "MAP": null, "PARCEL_NAM": "CIRCLE STREET 4A", "ACRE": null, "LONGITUDE": -64.93749932, "LATITUDE": 18.34519144, "OBJECTID_1": 9640, "PARCEL_NO_": "105302032100", "Tax_Legal_": "CIRCLE STREET 4A CROWN PRINCE QTR", "Name": "L BRYAN SANTOS,C BRYAN BENJAMIN & A FLEMING JOSEPH", "Address": "PO BOX 302603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7500, "Improved_V": 78900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.913782256300003, "SHAPE_Area": 145.86761288400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358107.870099999010563, 257299.534800000488758 ], [ 358107.936700001358986, 257291.724899999797344 ], [ 358098.259099997580051, 257291.856699999421835 ], [ 358096.545800000429153, 257303.664000000804663 ], [ 358106.993699997663498, 257307.760200001299381 ], [ 358107.870099999010563, 257299.534800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302064900", "MAP": null, "PARCEL_NAM": "CECELIE GADE 2", "ACRE": null, "LONGITUDE": -64.93542033, "LATITUDE": 18.34516492, "OBJECTID_1": 9730, "PARCEL_NO_": "105302064900", "Tax_Legal_": "CECELIE GADE 2 QUEENS QUARTER", "Name": "AKINS, LUCIEN A", "Address": "2803 Cecelie Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025598, "Country": "United States", "Land_Value": 16900, "Improved_V": 55400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.779201697399998, "SHAPE_Area": 262.71432512899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358316.019199997186661, 257287.095100000500679 ], [ 358313.515799999237061, 257296.995999999344349 ], [ 358312.677100002765656, 257300.788800001144409 ], [ 358328.73139999806881, 257309.364000000059605 ], [ 358332.091499999165535, 257293.559500001370907 ], [ 358316.019199997186661, 257287.095100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302064100", "MAP": null, "PARCEL_NAM": "CECELIE GADE 6", "ACRE": null, "LONGITUDE": -64.93495216, "LATITUDE": 18.34514426, "OBJECTID_1": 9722, "PARCEL_NO_": "105302064100", "Tax_Legal_": "CECELIE GADE 6 QUEENS QUARTER", "Name": "MATTHIAS, MELBERT & OTHERS", "Address": "PO Box 9370", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53300, "Improved_V": 138000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.629893299200006, "SHAPE_Area": 496.06949965899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358383.717100001871586, 257291.448899999260902 ], [ 358360.402400001883507, 257283.2364999987185 ], [ 358354.635899998247623, 257297.543699998408556 ], [ 358382.759800001978874, 257309.172899998724461 ], [ 358389.345100000500679, 257293.394799999892712 ], [ 358383.717100001871586, 257291.448899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93179906, "LATITUDE": 18.345179, "OBJECTID_1": 11427, "PARCEL_NO_": "105401030500", "Tax_Legal_": "PALM STRAEDE 5D QUEENS QUARTER", "Name": "WATLINGTON, ALTURO", "Address": "PO Box 261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14800, "Improved_V": 84000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.903618057900005, "SHAPE_Area": 307.48089723099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358711.871899999678135, 257295.823399998247623 ], [ 358696.580700002610683, 257292.320799998939037 ], [ 358694.026900000870228, 257308.131900001317263 ], [ 358718.997500002384186, 257311.291600000113249 ], [ 358714.247699998319149, 257300.909099999815226 ], [ 358711.871899999678135, 257295.823399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93220954, "LATITUDE": 18.34519626, "OBJECTID_1": 11409, "PARCEL_NO_": "105401010400", "Tax_Legal_": "LEMON STRAEDE 6A QUEENS QUARTER", "Name": "CLENDINEN, PRINCESSA", "Address": "14 Barton Rd", "City": "Wellesley Hills", "State": "Massachusetts", "Zip": 2481, "Country": "United States", "Land_Value": 4500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.999493107500001, "SHAPE_Area": 158.29319913099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358670.719400003552437, 257299.075199998915195 ], [ 358657.024700000882149, 257297.485399998724461 ], [ 358653.698700003325939, 257309.279500000178814 ], [ 358665.780799999833107, 257310.855999998748302 ], [ 358667.427599996328354, 257306.85869999974966 ], [ 358670.719400003552437, 257299.075199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301082600", "MAP": "A9-141-T70", "PARCEL_NAM": "79-30", "ACRE": "0.525", "LONGITUDE": -64.9447315, "LATITUDE": 18.3450198, "OBJECTID_1": 9276, "PARCEL_NO_": "105301082600", "Tax_Legal_": "79-30 SOLBERG LITTLE NORTHSIDE QTR", "Name": "PAYNE, JESTICA", "Address": "PO Box 8613", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62800, "Improved_V": 355800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.78775346399999, "SHAPE_Area": 2032.53058111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357374.262500002980232, 257277.487399999052286 ], [ 357364.815099999308586, 257250.601199999451637 ], [ 357347.036700002849102, 257255.099800001829863 ], [ 357299.356299996376038, 257267.375100001692772 ], [ 357305.354699999094009, 257275.072900000959635 ], [ 357308.130500003695488, 257278.634899999946356 ], [ 357320.048900000751019, 257299.419599998742342 ], [ 357374.262500002980232, 257277.487399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301160800", "MAP": null, "PARCEL_NAM": "200-5E-1 .", "ACRE": null, "LONGITUDE": -64.94628974, "LATITUDE": 18.34502122, "OBJECTID_1": 9552, "PARCEL_NO_": "105301160800", "Tax_Legal_": "ALTONA & WELGUNST 200-5E-1 KRONPRINDSENS QTR.", "Name": "BENJAMIN, RITA", "Address": "PO BOX 3448", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 133000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.15264201299999, "SHAPE_Area": 822.35649459900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357187.907200001180172, 257287.361299999058247 ], [ 357178.567699998617172, 257247.810300000011921 ], [ 357173.728000000119209, 257247.981800001114607 ], [ 357172.10639999806881, 257249.024000000208616 ], [ 357168.814599998295307, 257256.807500001043081 ], [ 357163.145300000905991, 257259.716400001198053 ], [ 357160.729900002479553, 257259.274500001221895 ], [ 357158.325400002300739, 257257.565999999642372 ], [ 357164.588899999856949, 257279.570999998599291 ], [ 357169.275700002908707, 257297.341299999505281 ], [ 357177.38740000128746, 257291.708099998533726 ], [ 357187.907200001180172, 257287.361299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93231619, "LATITUDE": 18.34518951, "OBJECTID_1": 11408, "PARCEL_NO_": "105401010300", "Tax_Legal_": "LEMON STRAEDE 6B QUEENS QUARTER", "Name": "CLENDINEN, PRINCESSA", "Address": "14 Barton Rd", "City": "Wellesley Hills", "State": "Massachusetts", "Zip": 2481, "Country": "United States", "Land_Value": 4300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.884305510499999, "SHAPE_Area": 110.294762913 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358657.024700000882149, 257297.485399998724461 ], [ 358647.347099997103214, 257297.617300000041723 ], [ 358644.030199997127056, 257308.355900000780821 ], [ 358653.698700003325939, 257309.279500000178814 ], [ 358657.024700000882149, 257297.485399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402060700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92396269, "LATITUDE": 18.34513968, "OBJECTID_1": 12539, "PARCEL_NO_": "105402060700", "Tax_Legal_": "HOSPITAL GROUND 154 NEW QTR", "Name": "JOSEPH, LAVORA", "Address": "394-301 ANNAS RETRET", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.519323499199999, "SHAPE_Area": 288.26021226099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359543.829000003635883, 257299.127399999648333 ], [ 359524.50620000064373, 257295.591699998825788 ], [ 359524.851499997079372, 257309.673500001430511 ], [ 359525.02139999717474, 257313.594200000166893 ], [ 359525.965999998152256, 257313.546599999070168 ], [ 359542.913000002503395, 257311.996599998325109 ], [ 359543.829000003635883, 257299.127399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302032900", "MAP": null, "PARCEL_NAM": "CIRCLE STREET 4C", "ACRE": null, "LONGITUDE": -64.93758388000001, "LATITUDE": 18.345163, "OBJECTID_1": 9648, "PARCEL_NO_": "105302032900", "Tax_Legal_": "CIRCLE STREET 4C CROWN PRINCE QTR", "Name": "SANTOS, LINDA B. & OTHERS", "Address": "BOX 2603", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.938161408100001, "SHAPE_Area": 98.379612011800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358098.259099997580051, 257291.856699999421835 ], [ 358098.280699998140335, 257289.323800001293421 ], [ 358088.594200000166893, 257290.511100001633167 ], [ 358090.159999996423721, 257296.012299999594688 ], [ 358090.116899996995926, 257301.078200001269579 ], [ 358096.545800000429153, 257303.664000000804663 ], [ 358098.259099997580051, 257291.856699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301083700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9440811, "LATITUDE": 18.34506604, "OBJECTID_1": 9285, "PARCEL_NO_": "105301083700", "Tax_Legal_": "SOLBERG 73-3 LT. NORTHSIDE", "Name": "HODGE, M. & JOSHUA, C. #164", "Address": "PO Box 7341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70900, "Improved_V": 102800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.247996806, "SHAPE_Area": 1274.51413082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357442.113200001418591, 257263.899500001221895 ], [ 357434.813199996948242, 257268.905999999493361 ], [ 357430.02929999679327, 257262.534000001847744 ], [ 357374.262500002980232, 257277.487399999052286 ], [ 357378.983499996364117, 257291.247099999338388 ], [ 357380.579899996519089, 257293.160100001841784 ], [ 357381.348399996757507, 257297.599300000816584 ], [ 357436.314400002360344, 257282.006099998950958 ], [ 357442.113200001418591, 257263.899500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402061000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92416095, "LATITUDE": 18.3451056, "OBJECTID_1": 12543, "PARCEL_NO_": "105402061000", "Tax_Legal_": "HOSPITAL GROUND 15O NEW QTR", "Name": "MAXWELL, LESLIE", "Address": "150E 182 St", "City": "Bronx", "State": "New York", "Zip": 10453, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.807076357900002, "SHAPE_Area": 369.03219203800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359524.50620000064373, 257295.591699998825788 ], [ 359501.970799997448921, 257290.552200000733137 ], [ 359501.01349999755621, 257308.276200000196695 ], [ 359514.715400002896786, 257309.021600000560284 ], [ 359524.851499997079372, 257309.673500001430511 ], [ 359524.50620000064373, 257295.591699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301154000", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-27", "ACRE": ".23", "LONGITUDE": -64.9469805, "LATITUDE": 18.34506976, "OBJECTID_1": 9538, "PARCEL_NO_": "105301154000", "Tax_Legal_": "220-27 ALTONA&WELGUNST\nKRONPRINDSENS GADE", "Name": "WEBBE, MANSON", "Address": "PO Box 306732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68700, "Improved_V": 47500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.63621422899999, "SHAPE_Area": 999.11494685800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357120.360299997031689, 257265.276900000870228 ], [ 357081.653800003230572, 257265.38230000063777 ], [ 357080.010600000619888, 257268.957400001585484 ], [ 357080.789899997413158, 257272.130199998617172 ], [ 357082.391699999570847, 257273.40989999845624 ], [ 357079.927799999713898, 257278.666999999433756 ], [ 357075.898100003600121, 257278.423000000417233 ], [ 357072.613499999046326, 257285.362199999392033 ], [ 357084.699199996888638, 257286.516499999910593 ], [ 357098.383100003004074, 257289.372800000011921 ], [ 357103.235399998724461, 257287.723700001835823 ], [ 357120.94370000064373, 257291.45719999819994 ], [ 357120.999399997293949, 257284.913800001144409 ], [ 357123.431000001728535, 257283.456000000238419 ], [ 357120.360299997031689, 257265.276900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302061200", "MAP": null, "PARCEL_NAM": "VESTER GADE 25", "ACRE": null, "LONGITUDE": -64.93573571, "LATITUDE": 18.34508021, "OBJECTID_1": 9696, "PARCEL_NO_": "105302061200", "Tax_Legal_": "VESTER GADE 25 QUEENS QUARTER", "Name": "AKINS, LUCIEN & OTHERS", "Address": "2039 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025542, "Country": "United States", "Land_Value": 19500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.682767206199998, "SHAPE_Area": 332.50084218000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358278.052400000393391, 257295.017000000923872 ], [ 358292.517499998211861, 257300.834899999201298 ], [ 358300.749700002372265, 257281.059500001370907 ], [ 358285.472900003194809, 257275.868200000375509 ], [ 358278.052400000393391, 257295.017000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302480800", "MAP": "D9-8383-T009", "PARCEL_NAM": "100-1 (AREA A)", "ACRE": ".23", "LONGITUDE": -64.9393653, "LATITUDE": 18.34485682, "OBJECTID_1": 10842, "PARCEL_NO_": "105302480800", "Tax_Legal_": "SOLBERG 100-1 LT. NORTHSIDE", "Name": "AYAH PLAZA LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 156800, "Improved_V": 39600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.70311490500001, "SHAPE_Area": 1055.8980448699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357897.940700002014637, 257240.910399999469519 ], [ 357891.964100003242493, 257272.277499999850988 ], [ 357902.584700003266335, 257293.227600000798702 ], [ 357906.394799999892712, 257292.363000001758337 ], [ 357921.255199998617172, 257245.234000001102686 ], [ 357913.309000000357628, 257231.447900000959635 ], [ 357897.940700002014637, 257240.910399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302063100", "MAP": null, "PARCEL_NAM": "NORDSIDEVEJ 12-4", "ACRE": null, "LONGITUDE": -64.93436701, "LATITUDE": 18.3450899, "OBJECTID_1": 9712, "PARCEL_NO_": "105302063100", "Tax_Legal_": "NORDSIDEVEJ 12-4 QUEENS QTR", "Name": "DAVID, M. AND FARRINGTON , C", "Address": "76 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19100, "Improved_V": 58900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.086980858100006, "SHAPE_Area": 424.24287122499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358430.578599996864796, 257280.644400000572205 ], [ 358427.362300001084805, 257279.562699999660254 ], [ 358424.950499996542931, 257278.698499999940395 ], [ 358418.35980000346899, 257295.109900001436472 ], [ 358444.91950000077486, 257301.026799999177456 ], [ 358449.071599997580051, 257286.917500000447035 ], [ 358430.578599996864796, 257280.644400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302093400", "MAP": null, "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.93249516, "LATITUDE": 18.34508479, "OBJECTID_1": 9811, "PARCEL_NO_": "105302093400", "Tax_Legal_": "MURPHY GADE 5 QUEENS QUARTER", "Name": "SMOCK,TERRYLN M. &, HENRY C.", "Address": "PO Box 6571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.170602466700004, "SHAPE_Area": 337.34998605200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358643.414499998092651, 257285.975000001490116 ], [ 358618.443999998271465, 257282.81529999896884 ], [ 358619.156800001859665, 257293.798000000417233 ], [ 358641.659800000488758, 257302.636999998241663 ], [ 358643.3496999964118, 257293.573800001293421 ], [ 358643.414499998092651, 257285.975000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302040200", "MAP": null, "PARCEL_NAM": "49", "ACRE": null, "LONGITUDE": -64.940967, "LATITUDE": 18.34505867, "OBJECTID_1": 9657, "PARCEL_NO_": "105302040200", "Tax_Legal_": "SOLBERG 49 LITTLE NORTHSIDE", "Name": "LEWIS, HULBERT U", "Address": "PO Box 1088", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34500, "Improved_V": 103100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.7400804249, "SHAPE_Area": 481.26226077600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357746.080399997532368, 257267.864999998360872 ], [ 357729.149599999189377, 257267.515299998223782 ], [ 357725.690600000321865, 257294.929200001060963 ], [ 357745.054700002074242, 257293.609999999403954 ], [ 357746.080399997532368, 257267.864999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301102000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94807117000001, "LATITUDE": 18.34478859, "OBJECTID_1": 9391, "PARCEL_NO_": "105301102000", "Tax_Legal_": "30 & 27 ROW LOWER JOHN DUNKO & 216 ROW ALTONA & WELGUNST 3B & 3C LITTLE NORTHSIDE QUARTER & KRONPRI", "Name": "CHURCH OF GOD OF PROHECY INC", "Address": "PO Box 304363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 568400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.04237018200001, "SHAPE_Area": 3518.3036858099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357014.722000002861023, 257286.477299999445677 ], [ 357014.630900003015995, 257276.443900000303984 ], [ 357013.847999997437, 257273.693199999630451 ], [ 357012.265900000929832, 257270.091699998825788 ], [ 357008.277500003576279, 257264.992800001055002 ], [ 357006.691899999976158, 257261.813400000333786 ], [ 357005.10980000346899, 257258.211899999529123 ], [ 357004.407799996435642, 257245.962699998170137 ], [ 357006.067199997603893, 257240.487900000065565 ], [ 357007.696000002324581, 257238.601399999111891 ], [ 357007.787699997425079, 257227.836300000548363 ], [ 357005.472999997437, 257215.574000000953674 ], [ 357002.274800002574921, 257212.381400000303984 ], [ 356998.262999996542931, 257210.026500001549721 ], [ 356982.975400000810623, 257206.101700000464916 ], [ 356973.335600003600121, 257201.800900001078844 ], [ 356965.326499998569489, 257195.40260000154376 ], [ 356959.739799998700619, 257188.60190000012517 ], [ 356960.407700002193451, 257204.8614999987185 ], [ 356970.987499997019768, 257288.118999999016523 ], [ 356983.087600000202656, 257287.584699999541044 ], [ 357014.722000002861023, 257286.477299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302040300", "MAP": null, "PARCEL_NAM": "50", "ACRE": null, "LONGITUDE": -64.9407786, "LATITUDE": 18.34503765, "OBJECTID_1": 9658, "PARCEL_NO_": "105302040300", "Tax_Legal_": "SOLBERG 5O LITTLE NORTHSIDE QTR", "Name": "PENN, JOY J", "Address": "PO BOX 307356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41900, "Improved_V": 107700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.746672383100005, "SHAPE_Area": 618.44844359599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357766.828699998557568, 257293.36600000038743 ], [ 357767.075099997222424, 257264.44819999858737 ], [ 357747.723600000143051, 257264.289799999445677 ], [ 357746.080399997532368, 257267.864999998360872 ], [ 357745.054700002074242, 257293.609999999403954 ], [ 357757.957500003278255, 257293.50450000166893 ], [ 357766.828699998557568, 257293.36600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302040400", "MAP": null, "PARCEL_NAM": "51", "ACRE": null, "LONGITUDE": -64.94057891, "LATITUDE": 18.34505262, "OBJECTID_1": 9659, "PARCEL_NO_": "105302040400", "Tax_Legal_": "SOLBERG 51 LITTLE NORTHSIDE QTR", "Name": "BAPTISTE, MARY", "Address": "BOX 1834", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35500, "Improved_V": 93200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.528752332, "SHAPE_Area": 564.832951514 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357766.828699998557568, 257293.36600000038743 ], [ 357786.990199998021126, 257293.108800001442432 ], [ 357793.440700002014637, 257293.16160000115633 ], [ 357795.064099997282028, 257291.908399999141693 ], [ 357785.501599997282028, 257278.531199999153614 ], [ 357780.773400001227856, 257265.615800000727177 ], [ 357767.075099997222424, 257264.44819999858737 ], [ 357766.828699998557568, 257293.36600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302031200", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 12A", "ACRE": null, "LONGITUDE": -64.93821922, "LATITUDE": 18.34509344, "OBJECTID_1": 9632, "PARCEL_NO_": "105302031200", "Tax_Legal_": "GYLLINGS STREET 12A CROWN PRINCE QTR", "Name": "SMALLS, LEONARD ALFRED", "Address": "PO Box 10576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8700, "Improved_V": 35400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.178572470799999, "SHAPE_Area": 175.90991033500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358018.484499998390675, 257285.293200001120567 ], [ 358020.01630000025034, 257294.804999999701977 ], [ 358033.739799998700619, 257293.017400000244379 ], [ 358032.265600003302097, 257276.751200001686811 ], [ 358024.958400003612041, 257282.602000001817942 ], [ 358018.484499998390675, 257285.293200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302064200", "MAP": null, "PARCEL_NAM": "CECELIE GADE 7 & 8A", "ACRE": null, "LONGITUDE": -64.93512795, "LATITUDE": 18.34508161, "OBJECTID_1": 9723, "PARCEL_NO_": "105302064200", "Tax_Legal_": "CECELIE GADE 7 & 8A QUEENS QTR", "Name": "MATTHIAS, MELBERT & OTHERS", "Address": "PO Box 9370", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31700, "Improved_V": 284900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.903600211700002, "SHAPE_Area": 132.16622806500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358360.402400001883507, 257283.2364999987185 ], [ 358352.364399999380112, 257280.215399999171495 ], [ 358346.599799998104572, 257294.311500001698732 ], [ 358354.635899998247623, 257297.543699998408556 ], [ 358360.402400001883507, 257283.2364999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302065000", "MAP": null, "PARCEL_NAM": "CECELIE GADE 1", "ACRE": null, "LONGITUDE": -64.93555596, "LATITUDE": 18.3450879, "OBJECTID_1": 9731, "PARCEL_NO_": "105302065000", "Tax_Legal_": "CECELIE GADE 1 QUEENS QTR", "Name": "AKINS, GEORGE", "Address": "2039 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025542, "Country": "United States", "Land_Value": 26000, "Improved_V": 49900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.193693688499998, "SHAPE_Area": 137.44240607399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358299.86599999666214, 257290.129299998283386 ], [ 358313.515799999237061, 257296.995999999344349 ], [ 358316.019199997186661, 257287.095100000500679 ], [ 358303.161399997770786, 257281.923599999397993 ], [ 358299.86599999666214, 257290.129299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301160600", "MAP": null, "PARCEL_NAM": "200-5E-2", "ACRE": null, "LONGITUDE": -64.94607713000001, "LATITUDE": 18.34494441, "OBJECTID_1": 9550, "PARCEL_NO_": "105301160600", "Tax_Legal_": "200-5E-2 ALTONA&WELGUNST CROWN PRINCE QTR.", "Name": "WALKER, LAURESTON(life estate)", "Address": "PO Box 304140", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75000, "Improved_V": 328300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.53923734099999, "SHAPE_Area": 996.14018530700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357214.607199996709824, 257276.813999999314547 ], [ 357206.817400000989437, 257244.664000000804663 ], [ 357192.276799999177456, 257247.711399998515844 ], [ 357178.567699998617172, 257247.810300000011921 ], [ 357187.907200001180172, 257287.361299999058247 ], [ 357210.579199999570847, 257276.358899999409914 ], [ 357214.607199996709824, 257276.813999999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93218075, "LATITUDE": 18.3450751, "OBJECTID_1": 11411, "PARCEL_NO_": "105401010600", "Tax_Legal_": "LEMON STRAEDE 7A QUEENS QUARTER", "Name": "CATHEDRAL CHURCH OF ALL SAINTS", "Address": "PO BOX 1148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.394269291900002, "SHAPE_Area": 218.46161758400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358672.46509999781847, 257283.468499999493361 ], [ 358658.765000000596046, 257282.511999998241663 ], [ 358657.024700000882149, 257297.485399998724461 ], [ 358670.719400003552437, 257299.075199998915195 ], [ 358672.393200002610683, 257291.911699999123812 ], [ 358672.46509999781847, 257283.468499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93229604, "LATITUDE": 18.34506809, "OBJECTID_1": 11410, "PARCEL_NO_": "105401010500", "Tax_Legal_": "LEMON STRAEDE 7B QUEENS QUARTER", "Name": "THOMAS, GWENDOLYN", "Address": "PO Box 8374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.884930552299998, "SHAPE_Area": 154.37853391100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358658.765000000596046, 257282.511999998241663 ], [ 358648.286499999463558, 257282.004099998623133 ], [ 358647.347099997103214, 257297.617300000041723 ], [ 358657.024700000882149, 257297.485399998724461 ], [ 358658.765000000596046, 257282.511999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302322200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93630091, "LATITUDE": 18.3449392, "OBJECTID_1": 10562, "PARCEL_NO_": "105302322200", "Tax_Legal_": "VESTER GADE 27A & 28A QUEENS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.57537767700001, "SHAPE_Area": 935.79960838700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358241.890600003302097, 257280.366700001060963 ], [ 358251.751599997282028, 257258.704799998551607 ], [ 358224.3800999969244, 257253.414500001817942 ], [ 358216.1587999984622, 257271.92339999973774 ], [ 358213.714699998497963, 257274.85869999974966 ], [ 358209.659699998795986, 257277.56980000063777 ], [ 358217.589800000190735, 257293.25560000166297 ], [ 358229.707800000905991, 257290.610599998384714 ], [ 358230.5320999994874, 257288.506400000303984 ], [ 358235.454499997198582, 257278.625300001353025 ], [ 358241.890600003302097, 257280.366700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302064300", "MAP": null, "PARCEL_NAM": "CECELIE GADE 8", "ACRE": null, "LONGITUDE": -64.93520423, "LATITUDE": 18.34505396, "OBJECTID_1": 9724, "PARCEL_NO_": "105302064300", "Tax_Legal_": "CECELIE GADE 8 QUEENS QTR", "Name": "FONSECA, ALLEN S.", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.511457605799997, "SHAPE_Area": 130.46397879200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358352.364399999380112, 257280.215399999171495 ], [ 358344.326499998569489, 257277.194299999624491 ], [ 358338.56360000371933, 257291.079300001263618 ], [ 358346.599799998104572, 257294.311500001698732 ], [ 358352.364399999380112, 257280.215399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302032000", "MAP": null, "PARCEL_NAM": "CIRCLE STREET 4", "ACRE": null, "LONGITUDE": -64.93749818000001, "LATITUDE": 18.34506177, "OBJECTID_1": 9639, "PARCEL_NO_": "105302032000", "Tax_Legal_": "CIRCLE STREET 4 CROWN PRINCE QUARTER", "Name": "BRYAN (LIFE ESTATE), LINDA SANTOS, C BRYAN BENJAMIN & A FLEMING JOSEPH", "Address": "PO BOX 302603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11500, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.562927384399998, "SHAPE_Area": 148.50669892400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358107.936700001358986, 257291.724899999797344 ], [ 358108.859899997711182, 257278.011300001293421 ], [ 358096.76519999653101, 257277.912300001829863 ], [ 358098.280699998140335, 257289.323800001293421 ], [ 358098.259099997580051, 257291.856699999421835 ], [ 358107.936700001358986, 257291.724899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302320100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93608847, "LATITUDE": 18.34508235, "OBJECTID_1": 10544, "PARCEL_NO_": "105302320100", "Tax_Legal_": "VESTER GADE 27, 27A & 28", "Name": "FIRE BAPTISTE HOLINESS CHURCH", "Address": "2028 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025595, "Country": "United States", "Land_Value": 90600, "Improved_V": 28100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.008904940099995, "SHAPE_Area": 254.71511278599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358274.064000003039837, 257289.918099999427795 ], [ 358246.717699997127056, 257281.672800000756979 ], [ 358230.5320999994874, 257288.506400000303984 ], [ 358229.707800000905991, 257290.610599998384714 ], [ 358244.225100003182888, 257290.307199999690056 ], [ 358272.422600001096725, 257293.282200001180172 ], [ 358274.064000003039837, 257289.918099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302063700", "MAP": null, "PARCEL_NAM": "NORDSIDEVEJ 10B", "ACRE": null, "LONGITUDE": -64.934796, "LATITUDE": 18.34502098, "OBJECTID_1": 9718, "PARCEL_NO_": "105302063700", "Tax_Legal_": "NORDSIDEVEJ 10B QUEENS QTR", "Name": "MELBERT A MATTHIAS SR TRUST", "Address": "PO Box 9370", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21500, "Improved_V": 282200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.603994393800001, "SHAPE_Area": 152.16570817499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358385.486199997365475, 257273.098200000822544 ], [ 358383.717100001871586, 257291.448899999260902 ], [ 358389.345100000500679, 257293.394799999892712 ], [ 358392.645900003612041, 257284.555900000035763 ], [ 358394.350199997425079, 257273.804000001400709 ], [ 358385.486199997365475, 257273.098200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302032700", "MAP": null, "PARCEL_NAM": "LAERKE GADE 8A", "ACRE": null, "LONGITUDE": -64.9372722, "LATITUDE": 18.34504396, "OBJECTID_1": 9646, "PARCEL_NO_": "105302032700", "Tax_Legal_": "LAERKE GADE 8A CROWN PRINCE QTR", "Name": "Nana Kwasi Boakye Ofori-Atta", "Address": "PO Box 301913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5500, "Improved_V": 44800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.038034075100001, "SHAPE_Area": 151.57707737199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358120.983300000429153, 257288.965799998492002 ], [ 358133.205300003290176, 257289.576900001615286 ], [ 358133.790799997746944, 257285.814699999988079 ], [ 358129.84740000218153, 257275.438900001347065 ], [ 358121.786100000143051, 257275.161800000816584 ], [ 358120.983300000429153, 257288.965799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302030900", "MAP": null, "PARCEL_NAM": "HILL STREET 25", "ACRE": null, "LONGITUDE": -64.93866379000001, "LATITUDE": 18.34502692, "OBJECTID_1": 9629, "PARCEL_NO_": "105302030900", "Tax_Legal_": "HILL STREET 25 CROWN PRINCE QUARTER", "Name": "SMITH, CHARLES", "Address": "PO Box 503291", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 14100, "Improved_V": 65000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.009601723200007, "SHAPE_Area": 360.32916572300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357993.548199996352196, 257278.122999999672174 ], [ 357969.445100001990795, 257267.793299999088049 ], [ 357966.89130000025034, 257283.604400001466274 ], [ 357990.222300000488758, 257289.916999999433756 ], [ 357992.671800002455711, 257286.348499998450279 ], [ 357993.548199996352196, 257278.122999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302032800", "MAP": null, "PARCEL_NAM": "CIRCLE STREET 4B", "ACRE": null, "LONGITUDE": -64.93760461, "LATITUDE": 18.34505412, "OBJECTID_1": 9647, "PARCEL_NO_": "105302032800", "Tax_Legal_": "CIRCLE STREET 4B CROWN PRINCE QTR", "Name": "BUSH, GENE & EUGENE", "Address": "BOX 2603", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.829094896699999, "SHAPE_Area": 135.40061403799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358096.76519999653101, 257277.912300001829863 ], [ 358083.056100003421307, 257278.011199999600649 ], [ 358085.449799999594688, 257280.986099999397993 ], [ 358088.594200000166893, 257290.511100001633167 ], [ 358098.280699998140335, 257289.323800001293421 ], [ 358096.76519999653101, 257277.912300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302032600", "MAP": null, "PARCEL_NAM": "LAERKE STREET 8", "ACRE": null, "LONGITUDE": -64.93738491000001, "LATITUDE": 18.34503538, "OBJECTID_1": 9645, "PARCEL_NO_": "105302032600", "Tax_Legal_": "LAERKE STREET 8 CROWN PRINCE QUARTER", "Name": "MONSANTO, HARRIET", "Address": "2708 Learke Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8600, "Improved_V": 41100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.283498786800003, "SHAPE_Area": 176.17933170399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358108.165600001811981, 257288.324799999594688 ], [ 358120.983300000429153, 257288.965799998492002 ], [ 358121.786100000143051, 257275.161800000816584 ], [ 358108.888599999248981, 257274.634100001305342 ], [ 358108.859899997711182, 257278.011300001293421 ], [ 358108.165600001811981, 257288.324799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93181452, "LATITUDE": 18.34505014, "OBJECTID_1": 11428, "PARCEL_NO_": "105401030600", "Tax_Legal_": "PALM STRAEDE 5DD QUEENS QUARTER", "Name": "WATLINGTON, ALTURO", "Address": "PO Box 261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7100, "Improved_V": 47600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.1311192832, "SHAPE_Area": 151.144591719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358710.36540000140667, 257283.356600001454353 ], [ 358698.292300000786781, 257280.724599998444319 ], [ 358696.580700002610683, 257292.320799998939037 ], [ 358711.871899999678135, 257295.823399998247623 ], [ 358708.713200002908707, 257287.987100001424551 ], [ 358710.36540000140667, 257283.356600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302062600", "MAP": null, "PARCEL_NAM": "CATHERINEBERG 1AA", "ACRE": null, "LONGITUDE": -64.93402904, "LATITUDE": 18.34496759, "OBJECTID_1": 9707, "PARCEL_NO_": "105302062600", "Tax_Legal_": "CATHERINEBERG 1AA QUEENS QTR", "Name": "THOMAS, EMMALINE & JOEL", "Address": "PO Box 1551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21700, "Improved_V": 131300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.9242644399, "SHAPE_Area": 449.34774296699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358460.58110000193119, 257261.047200001776218 ], [ 358461.965400002896786, 257287.867400001734495 ], [ 358479.659299999475479, 257293.289599999785423 ], [ 358476.669600002467632, 257265.611800000071526 ], [ 358460.58110000193119, 257261.047200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302063800", "MAP": null, "PARCEL_NAM": "SKOV GADE 6", "ACRE": null, "LONGITUDE": -64.93493293, "LATITUDE": 18.34499676, "OBJECTID_1": 9719, "PARCEL_NO_": "105302063800", "Tax_Legal_": "SKOV GADE 6 QUEENS QUARTER", "Name": "PETERS, EDITH W., ULYSSES,CHRISTOPHONE J.&ORGYLL CARRILLO", "Address": "PO Box 302051", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11600, "Improved_V": 35800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.104218522099998, "SHAPE_Area": 368.75455859599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358366.167099997401237, 257269.140399999916553 ], [ 358360.402400001883507, 257283.2364999987185 ], [ 358383.717100001871586, 257291.448899999260902 ], [ 358385.486199997365475, 257273.098200000822544 ], [ 358366.167099997401237, 257269.140399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302064400", "MAP": null, "PARCEL_NAM": "CECELIE GADE 9", "ACRE": null, "LONGITUDE": -64.9353048, "LATITUDE": 18.34501722, "OBJECTID_1": 9725, "PARCEL_NO_": "105302064400", "Tax_Legal_": "CECELIE GADE 9 QUEENS QUARTER", "Name": "MUHAMMAS, ABDUL R. & MARYAM", "Address": "2809 Cecilia Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 48800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.983022343099996, "SHAPE_Area": 209.950549188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358344.326499998569489, 257277.194299999624491 ], [ 358330.660499997437, 257272.227299999445677 ], [ 358325.705799996852875, 257285.907800000160933 ], [ 358338.56360000371933, 257291.079300001263618 ], [ 358344.326499998569489, 257277.194299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302320100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93596899000001, "LATITUDE": 18.34495723, "OBJECTID_1": 10544, "PARCEL_NO_": "105302320100", "Tax_Legal_": "VESTER GADE 27, 27A & 28", "Name": "FIRE BAPTISTE HOLINESS CHURCH", "Address": "2028 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025595, "Country": "United States", "Land_Value": 90600, "Improved_V": 28100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.002892249, "SHAPE_Area": 708.74326035700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358283.133100003004074, 257266.561000000685453 ], [ 358254.165200002491474, 257259.357799999415874 ], [ 358246.717699997127056, 257281.672800000756979 ], [ 358274.064000003039837, 257289.918099999427795 ], [ 358277.359399996697903, 257281.712400000542402 ], [ 358278.185500003397465, 257279.397199999541044 ], [ 358279.00620000064373, 257277.71510000154376 ], [ 358283.133100003004074, 257266.561000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.931969, "LATITUDE": 18.34503295, "OBJECTID_1": 11418, "PARCEL_NO_": "105401020500", "Tax_Legal_": "PALM STRAEDE 9 QUEENS QUARTER", "Name": "SMITH, LEROY, DIANA, MARGUERITE, JEFFREY, GARY, AND JUEL", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13900, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.765615458799999, "SHAPE_Area": 118.039037386 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358692.651699997484684, 257280.256299998611212 ], [ 358682.977700002491474, 257279.965999998152256 ], [ 358682.072499997913837, 257291.56870000064373 ], [ 358691.737499997019768, 257292.91440000012517 ], [ 358692.651699997484684, 257280.256299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301154300", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-31", "ACRE": ".22", "LONGITUDE": -64.94657243, "LATITUDE": 18.34497857, "OBJECTID_1": 9541, "PARCEL_NO_": "105301154300", "Tax_Legal_": "ALTONA & WELGUNST 220-31 SOUTHSIDE QTR.", "Name": "CALLENDER,TRUSTEE, Dr.WILBUR KENNARD", "Address": "PO Box 11250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.43824179400001, "SHAPE_Area": 868.90804427099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357152.73870000243187, 257250.765299998223782 ], [ 357123.628799997270107, 257260.237399999052286 ], [ 357125.970399998128414, 257269.333599999547005 ], [ 357126.68860000371933, 257279.68299999833107 ], [ 357164.588899999856949, 257279.570999998599291 ], [ 357158.325400002300739, 257257.565999999642372 ], [ 357154.315399996936321, 257255.000100001692772 ], [ 357152.73870000243187, 257250.765299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93206337, "LATITUDE": 18.34502973, "OBJECTID_1": 11417, "PARCEL_NO_": "105401020400", "Tax_Legal_": "LEMON STRAEDE 9 QUEENS QUARTER", "Name": "SMITH, LEROY, DIANA, MARGUERITE, JEFFREY, GARY, AND JUEL", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.837619822000001, "SHAPE_Area": 119.059435597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358682.977700002491474, 257279.965999998152256 ], [ 358672.495700001716614, 257279.880199998617172 ], [ 358672.46509999781847, 257283.468499999493361 ], [ 358672.393200002610683, 257291.911699999123812 ], [ 358682.072499997913837, 257291.56870000064373 ], [ 358682.977700002491474, 257279.965999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301083800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94357899000001, "LATITUDE": 18.34491678, "OBJECTID_1": 9286, "PARCEL_NO_": "105301083800", "Tax_Legal_": "SOLBERG 73-2 LT. NORTHSIDE QTR", "Name": "RICHARDS, JOHN & C", "Address": "PO Box 502763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 71400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.99031113199999, "SHAPE_Area": 1068.3084464799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357487.205600000917912, 257271.445700000971556 ], [ 357481.757399998605251, 257248.3918999992311 ], [ 357477.711400002241135, 257250.047600001096725 ], [ 357474.457400001585484, 257253.398400001227856 ], [ 357470.418600000441074, 257254.209800001233816 ], [ 357469.624899998307228, 257252.725600000470877 ], [ 357466.401500001549721, 257252.488099999725819 ], [ 357464.031099997460842, 257246.769200000911951 ], [ 357439.780599996447563, 257253.747900001704693 ], [ 357442.113200001418591, 257263.899500001221895 ], [ 357436.314400002360344, 257282.006099998950958 ], [ 357482.389300003647804, 257268.873199999332428 ], [ 357487.205600000917912, 257271.445700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301083500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94309674, "LATITUDE": 18.34487546, "OBJECTID_1": 9283, "PARCEL_NO_": "105301083500", "Tax_Legal_": "SOLBERG ESTATE 73-1 No.1 LITTLE NORTHSIDE QTR.", "Name": "LEAITA HARRIGAN", "Address": "PO Box 10042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013042, "Country": "United States", "Land_Value": 128700, "Improved_V": 233400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.39626705200001, "SHAPE_Area": 1594.6727096499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357487.205600000917912, 257271.445700000971556 ], [ 357503.259900003671646, 257280.020899999886751 ], [ 357509.757100000977516, 257274.58559999987483 ], [ 357516.230999998748302, 257271.894400000572205 ], [ 357526.725699998438358, 257270.502599999308586 ], [ 357537.193300001323223, 257272.276999998837709 ], [ 357539.619499996304512, 257271.452500000596046 ], [ 357541.415500000119209, 257249.935699999332428 ], [ 357514.071000002324581, 257241.479200001806021 ], [ 357481.757399998605251, 257248.3918999992311 ], [ 357487.205600000917912, 257271.445700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302180400", "MAP": null, "PARCEL_NAM": "LERKE GADE 4", "ACRE": null, "LONGITUDE": -64.9371215, "LATITUDE": 18.34503116, "OBJECTID_1": 10097, "PARCEL_NO_": "105302180400", "Tax_Legal_": "LERKE GADE 4 CROWN PRINCE QTR", "Name": "JACKSON, ANTHON & OTHERS", "Address": "BOX 4547", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11500, "Improved_V": 57700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.217658117900001, "SHAPE_Area": 50.551703003199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358147.564699999988079, 257278.116999998688698 ], [ 358137.878100000321865, 257279.304299999028444 ], [ 358139.440399996936321, 257285.227699998766184 ], [ 358146.707999996840954, 257284.020599998533726 ], [ 358147.564699999988079, 257278.116999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301160400", "MAP": null, "PARCEL_NAM": "200-5E-3 .", "ACRE": null, "LONGITUDE": -64.94578168, "LATITUDE": 18.34488106, "OBJECTID_1": 9548, "PARCEL_NO_": "105301160400", "Tax_Legal_": "ALTONA & WELGUNST 200-5E-3 CROWN PRINCE QTR.", "Name": "ISAAC, VERNON", "Address": "BOX 4695", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.66088110600001, "SHAPE_Area": 1294.25705006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357247.6858000010252, 257274.762699998915195 ], [ 357239.951700001955032, 257236.069299999624491 ], [ 357227.048900000751019, 257236.174800001084805 ], [ 357214.808200001716614, 257241.311000000685453 ], [ 357206.817400000989437, 257244.664000000804663 ], [ 357214.607199996709824, 257276.813999999314547 ], [ 357220.247800000011921, 257277.282400000840425 ], [ 357233.958700001239777, 257276.97239999845624 ], [ 357247.6858000010252, 257274.762699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302064500", "MAP": null, "PARCEL_NAM": "CECELIE GADE 1O", "ACRE": null, "LONGITUDE": -64.93542125, "LATITUDE": 18.34497647, "OBJECTID_1": 9726, "PARCEL_NO_": "105302064500", "Tax_Legal_": "CECELIE GADE 1O QUEENS QUARTER", "Name": "HART, B & A", "Address": "PO Box 8330", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 8318330, "Country": "United States", "Land_Value": 13100, "Improved_V": 45800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.421903857899999, "SHAPE_Area": 170.71728311300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358322.620800003409386, 257269.417300000786781 ], [ 358319.404500000178814, 257268.335499998182058 ], [ 358314.457000002264977, 257281.171700000762939 ], [ 358325.705799996852875, 257285.907800000160933 ], [ 358330.660499997437, 257272.227299999445677 ], [ 358322.620800003409386, 257269.417300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302062900", "MAP": null, "PARCEL_NAM": "11 NORDSIDVEJ", "ACRE": "10,056 sq ft", "LONGITUDE": -64.93430257, "LATITUDE": 18.34482426, "OBJECTID_1": 9710, "PARCEL_NO_": "105302062900", "Tax_Legal_": "NORDSIDEVEJ 11 QUEENS QUARTER", "Name": "MYERS, DAVID", "Address": "BOX 3897", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57300, "Improved_V": 23700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.38864594500001, "SHAPE_Area": 860.22938624699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358450.122500002384186, 257258.217399999499321 ], [ 358451.121200002729893, 257235.638599999248981 ], [ 358443.06700000166893, 257234.517200000584126 ], [ 358442.190600000321865, 257242.742600001394749 ], [ 358431.721100002527237, 257241.179299999028444 ], [ 358430.878799997270107, 257245.394299998879433 ], [ 358430.578599996864796, 257280.644400000572205 ], [ 358449.071599997580051, 257286.917500000447035 ], [ 358449.096799999475479, 257283.962400000542402 ], [ 358450.122500002384186, 257258.217399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302180500", "MAP": null, "PARCEL_NAM": "LIEFDE GADE 4", "ACRE": null, "LONGITUDE": -64.93702195, "LATITUDE": 18.34501783, "OBJECTID_1": 10098, "PARCEL_NO_": "105302180500", "Tax_Legal_": "LIEFTE GADE 4 CROWN PRINCE", "Name": "SMITH (LIFE ESTATE), DORIS L T", "Address": "PO Box 101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13400, "Improved_V": 68900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.022044730200001, "SHAPE_Area": 67.827574669100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358160.478299997746944, 257276.745099999010563 ], [ 358147.564699999988079, 257278.116999998688698 ], [ 358146.707999996840954, 257284.020599998533726 ], [ 358159.630599997937679, 257281.593299999833107 ], [ 358160.478299997746944, 257276.745099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301083400", "MAP": "D9-2750-T84", "PARCEL_NAM": "72-3", "ACRE": "0.28", "LONGITUDE": -64.94418832, "LATITUDE": 18.34486901, "OBJECTID_1": 9282, "PARCEL_NO_": "105301083400", "Tax_Legal_": "SOLBERG 72-3 LT. NORTHSIDE", "Name": "LIBURD, ELGIN & SANDRINE", "Address": "P O BOX 3606", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62100, "Improved_V": 137400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.69188191699999, "SHAPE_Area": 1525.73838366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357391.480899997055531, 257244.064500000327826 ], [ 357384.207900002598763, 257245.904800001531839 ], [ 357364.815099999308586, 257250.601199999451637 ], [ 357374.262500002980232, 257277.487399999052286 ], [ 357430.02929999679327, 257262.534000001847744 ], [ 357415.72070000320673, 257238.352200001478195 ], [ 357391.480899997055531, 257244.064500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302170200", "MAP": null, "PARCEL_NAM": "HILL STREET 14", "ACRE": null, "LONGITUDE": -64.93839175, "LATITUDE": 18.34492502, "OBJECTID_1": 10051, "PARCEL_NO_": "105302170200", "Tax_Legal_": "HILL STREET 14 CROWN PRINCE QUARTER", "Name": "WILLIAMS, VIRGINIA", "Address": "PO Box 7713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11600, "Improved_V": 28200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.365551494900004, "SHAPE_Area": 284.41652374 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358010.457400001585484, 257281.00560000166297 ], [ 358017.908399999141693, 257258.268500000238419 ], [ 358009.877599999308586, 257254.403099998831749 ], [ 358004.15429999679327, 257263.644400000572205 ], [ 358000.857199996709824, 257272.061099998652935 ], [ 358000.801399998366833, 257278.604600001126528 ], [ 358002.396099999547005, 257280.72859999909997 ], [ 358005.610500000417233, 257282.02140000090003 ], [ 358010.457400001585484, 257281.00560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402061200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92388558, "LATITUDE": 18.34496339, "OBJECTID_1": 12545, "PARCEL_NO_": "105402061200", "Tax_Legal_": "HOSPITAL GROUND 155 NEW QTR", "Name": "BURNER, ELVERA, RADIAN & CHERR", "Address": "PO Box 305901", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8200, "Improved_V": 63800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.102326618999996, "SHAPE_Area": 308.58585281799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359530.480499997735023, 257278.880800001323223 ], [ 359532.787900000810623, 257291.987500000745058 ], [ 359551.313299998641014, 257294.461199998855591 ], [ 359552.963699996471405, 257290.041700001806021 ], [ 359550.625699996948242, 257280.523400001227856 ], [ 359543.404799997806549, 257276.242400001734495 ], [ 359530.480499997735023, 257278.880800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302170300", "MAP": null, "PARCEL_NAM": "HILL STREET 14A & GYLLING ST 8-1", "ACRE": null, "LONGITUDE": -64.93828898, "LATITUDE": 18.34493453, "OBJECTID_1": 10052, "PARCEL_NO_": "105302170300", "Tax_Legal_": "HILL STREET 14A & GYLLING ST 8-1 CROWN PRINCE QTR", "Name": "BUZZELL, SUSANA", "Address": "14 A Hill Street", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7100, "Improved_V": 29800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.205394437199999, "SHAPE_Area": 215.31258144899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358028.345499999821186, 257263.631299998611212 ], [ 358017.908399999141693, 257258.268500000238419 ], [ 358010.457400001585484, 257281.00560000166297 ], [ 358014.496100001037121, 257280.194299999624491 ], [ 358024.211499996483326, 257275.629799999296665 ], [ 358028.345499999821186, 257263.631299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301160200", "MAP": null, "PARCEL_NAM": "200-5E-4 .", "ACRE": null, "LONGITUDE": -64.94546701, "LATITUDE": 18.34489505, "OBJECTID_1": 9546, "PARCEL_NO_": "105301160200", "Tax_Legal_": "200-5E-4 ALTONA & WELGUNST CROWN PRINCE QUARTER", "Name": "ANGELLIERE (LIFE ESTATE), HERMINA", "Address": "P.O.BOX 3776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67500, "Improved_V": 187800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.41525055299999, "SHAPE_Area": 1027.1796429599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357239.951700001955032, 257236.069299999624491 ], [ 357247.6858000010252, 257274.762699998915195 ], [ 357259.787699997425079, 257274.017400000244379 ], [ 357273.509400002658367, 257272.440900001674891 ], [ 357292.093599997460842, 257268.798599999397993 ], [ 357279.281199999153614, 257257.500500001013279 ], [ 357266.350500002503395, 257249.878600001335144 ], [ 357255.930699996650219, 257243.736800000071526 ], [ 357244.780599996447563, 257237.164299998432398 ], [ 357239.951700001955032, 257236.069299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302063900", "MAP": null, "PARCEL_NAM": "SKOV GADE 5", "ACRE": null, "LONGITUDE": -64.93507614000001, "LATITUDE": 18.34495058, "OBJECTID_1": 9720, "PARCEL_NO_": "105302063900", "Tax_Legal_": "SKOV GADE 5 QUEENS QUARTER", "Name": "FONSECA FAMILY TRUST", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.932818598600001, "SHAPE_Area": 139.57065445000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358357.328199997544289, 257265.479499999433756 ], [ 358352.364399999380112, 257280.215399999171495 ], [ 358360.402400001883507, 257283.2364999987185 ], [ 358366.167099997401237, 257269.140399999916553 ], [ 358357.328199997544289, 257265.479499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302322200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93612604, "LATITUDE": 18.34493044, "OBJECTID_1": 10562, "PARCEL_NO_": "105302322200", "Tax_Legal_": "VESTER GADE 27A & 28A QUEENS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.8268117573, "SHAPE_Area": 88.083155543499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358254.165200002491474, 257259.357799999415874 ], [ 358251.751599997282028, 257258.704799998551607 ], [ 358241.890600003302097, 257280.366700001060963 ], [ 358246.717699997127056, 257281.672800000756979 ], [ 358254.165200002491474, 257259.357799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402061100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92411991, "LATITUDE": 18.34494098, "OBJECTID_1": 12544, "PARCEL_NO_": "105402061100", "Tax_Legal_": "HOSPITAL GROUND 152 NEW QTR", "Name": "SCHLESSINGER, HERMINA", "Address": "PO Box 10448", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.107359056199996, "SHAPE_Area": 334.45684259900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359532.787900000810623, 257291.987500000745058 ], [ 359530.480499997735023, 257278.880800001323223 ], [ 359516.778499998152256, 257278.135400000959635 ], [ 359509.541500002145767, 257275.754200000315905 ], [ 359503.125200003385544, 257271.690900001674891 ], [ 359502.20380000025034, 257285.193300001323223 ], [ 359532.787900000810623, 257291.987500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302330200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93552039, "LATITUDE": 18.34494239, "OBJECTID_1": 10565, "PARCEL_NO_": "105302330200", "Tax_Legal_": "CECELIA GADE 11 QUEEN S QUARTER", "Name": "FRANCIS, CHRISTALIA", "Address": "15147 SW 92nd Ter", "City": "Miami", "State": "Florida", "Zip": 33196, "Country": "United States", "Land_Value": 12000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.147643768599998, "SHAPE_Area": 139.74001424299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358319.404500000178814, 257268.335499998182058 ], [ 358309.757600001990795, 257264.879000000655651 ], [ 358308.101800002157688, 257269.931699998676777 ], [ 358304.808200001716614, 257277.926300000399351 ], [ 358314.457000002264977, 257281.171700000762939 ], [ 358319.404500000178814, 257268.335499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302170100", "MAP": null, "PARCEL_NAM": "HILL STREET 23", "ACRE": null, "LONGITUDE": -64.93864096, "LATITUDE": 18.34490692, "OBJECTID_1": 10050, "PARCEL_NO_": "105302170100", "Tax_Legal_": "HILL STREET 23 CROWN PRINCE QUARTER", "Name": "LETTSOME, MARY", "Address": "9243 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.210997657700005, "SHAPE_Area": 331.64898321700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357996.062399998307228, 257266.955600000917912 ], [ 357971.982799999415874, 257253.881900001317263 ], [ 357969.445100001990795, 257267.793299999088049 ], [ 357993.548199996352196, 257278.122999999672174 ], [ 357996.062399998307228, 257266.955600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302180700", "MAP": null, "PARCEL_NAM": "LERKE GADE 3", "ACRE": null, "LONGITUDE": -64.93712717, "LATITUDE": 18.34493471, "OBJECTID_1": 10100, "PARCEL_NO_": "105302180700", "Tax_Legal_": "LERKE GADE 3 CROWN PRINCE QTR", "Name": "OTTLEY JR., BASIL & KIRSTEN ABRAHAMS", "Address": "PO Box 583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.881663331, "SHAPE_Area": 175.22857061100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358147.564699999988079, 257278.116999998688698 ], [ 358148.504100002348423, 257262.503800000995398 ], [ 358136.393200002610683, 257264.304499998688698 ], [ 358136.308700002729893, 257274.22520000115037 ], [ 358137.878100000321865, 257279.304299999028444 ], [ 358147.564699999988079, 257278.116999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93216947000001, "LATITUDE": 18.34494326, "OBJECTID_1": 11413, "PARCEL_NO_": "105401010800", "Tax_Legal_": "LEMON STRAEDE 8A QUEENS QUARTER", "Name": "DALMIDA, ROSITA", "Address": "PO Box 306905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.082023792000001, "SHAPE_Area": 190.036073657 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358659.682800002396107, 257269.431800000369549 ], [ 358658.765000000596046, 257282.511999998241663 ], [ 358672.46509999781847, 257283.468499999493361 ], [ 358672.495700001716614, 257279.880199998617172 ], [ 358674.201800003647804, 257268.917300000786781 ], [ 358662.099899999797344, 257269.662599999457598 ], [ 358659.682800002396107, 257269.431800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93179459, "LATITUDE": 18.34494025, "OBJECTID_1": 11429, "PARCEL_NO_": "105401030700", "Tax_Legal_": "PALM STRAEDE 5F QUEENS QUARTER", "Name": "PHAIRE, HUNTER & FAHIE", "Address": "PO Box 931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5300, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.964446994600003, "SHAPE_Area": 161.27151801599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358709.667000003159046, 257270.685199998319149 ], [ 358706.445299997925758, 257270.236699998378754 ], [ 358700.000200003385544, 257269.550599999725819 ], [ 358698.292300000786781, 257280.724599998444319 ], [ 358710.36540000140667, 257283.356600001454353 ], [ 358714.499399997293949, 257271.3581000007689 ], [ 358709.667000003159046, 257270.685199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302180200", "MAP": null, "PARCEL_NAM": "CIRCLE STREET 2", "ACRE": null, "LONGITUDE": -64.93757468, "LATITUDE": 18.34494156, "OBJECTID_1": 10095, "PARCEL_NO_": "105302180200", "Tax_Legal_": "CIRCLE STREET 2 KRONPRINDSENS QTR", "Name": "FRAZER, GERALDINE", "Address": "11748 Streeter Rd", "City": "Auburn", "State": "California", "Zip": 95602, "Country": "United States", "Land_Value": 22400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.281642412799997, "SHAPE_Area": 368.75273171399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358105.751500003039837, 257264.264800000935793 ], [ 358097.686599999666214, 257264.40989999845624 ], [ 358081.556699998676777, 257264.700100000947714 ], [ 358080.665899999439716, 257274.614199999719858 ], [ 358083.056100003421307, 257278.011199999600649 ], [ 358096.76519999653101, 257277.912300001829863 ], [ 358108.859899997711182, 257278.011300001293421 ], [ 358108.888599999248981, 257274.634100001305342 ], [ 358108.170400001108646, 257264.284600000828505 ], [ 358105.751500003039837, 257264.264800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302064000", "MAP": null, "PARCEL_NAM": "SKOV GADE 4", "ACRE": null, "LONGITUDE": -64.93515474, "LATITUDE": 18.34492249, "OBJECTID_1": 9721, "PARCEL_NO_": "105302064000", "Tax_Legal_": "SKOV GADE 4 QUEENS QUARTER", "Name": "SKELTON, SHARWN", "Address": "5874 Bridgemont Pl", "City": "Acworth", "State": "Georgia", "Zip": 30101, "Country": "United States", "Land_Value": 11400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.828774474799999, "SHAPE_Area": 136.165984751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358349.293799996376038, 257262.036200001835823 ], [ 358344.326499998569489, 257277.194299999624491 ], [ 358352.364399999380112, 257280.215399999171495 ], [ 358357.328199997544289, 257265.479499999433756 ], [ 358349.293799996376038, 257262.036200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93228724, "LATITUDE": 18.344943, "OBJECTID_1": 11412, "PARCEL_NO_": "105401010700", "Tax_Legal_": "LEMON STRAEDE 8B QUEENS QUARTER", "Name": "DALMIDA, ROSITA", "Address": "PO Box 306905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.744588729900002, "SHAPE_Area": 135.48491013700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358659.682800002396107, 257269.431800000369549 ], [ 358648.387199997901917, 257270.183699999004602 ], [ 358648.286499999463558, 257282.004099998623133 ], [ 358658.765000000596046, 257282.511999998241663 ], [ 358659.682800002396107, 257269.431800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302180600", "MAP": null, "PARCEL_NAM": "LIEFDE GADE 3", "ACRE": null, "LONGITUDE": -64.93701003, "LATITUDE": 18.34492649, "OBJECTID_1": 10099, "PARCEL_NO_": "105302180600", "Tax_Legal_": "LIEFDE GADE 3 CROWN PRINCE", "Name": "CHARLES, WINFORD", "Address": "2903 Leifte Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9700, "Improved_V": 43200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.683532790199997, "SHAPE_Area": 197.695749425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358163.010499998927116, 257263.466899998486042 ], [ 358148.504100002348423, 257262.503800000995398 ], [ 358147.564699999988079, 257278.116999998688698 ], [ 358160.478299997746944, 257276.745099999010563 ], [ 358163.010499998927116, 257263.466899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302063000", "MAP": null, "PARCEL_NAM": "NORDSIDEVEJ 10", "ACRE": null, "LONGITUDE": -64.93455066, "LATITUDE": 18.3447508, "OBJECTID_1": 9711, "PARCEL_NO_": "105302063000", "Tax_Legal_": "NORDSIDEVEJ 1O QUEENS QUARTER", "Name": "HODGE, JOSEPH & ZULMA", "Address": "PO Box 305048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54000, "Improved_V": 158000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.05556958899999, "SHAPE_Area": 1222.08945881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358406.034199997782707, 257227.459100000560284 ], [ 358401.08839999884367, 257240.084199998527765 ], [ 358399.378700003027916, 257251.469300001859665 ], [ 358402.43129999935627, 257271.759199999272823 ], [ 358424.950499996542931, 257278.698499999940395 ], [ 358427.362300001084805, 257279.562699999660254 ], [ 358428.571400001645088, 257232.287599999457598 ], [ 358406.034199997782707, 257227.459100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302170400", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 8", "ACRE": null, "LONGITUDE": -64.9381509, "LATITUDE": 18.34485277, "OBJECTID_1": 10053, "PARCEL_NO_": "105302170400", "Tax_Legal_": "GYLLINGS STREET 8 CROWN PRINCE Q", "Name": "LETSOME, VICTOR", "Address": "PO Box 307064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16600, "Improved_V": 74900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.114991407800005, "SHAPE_Area": 165.781838849 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358044.54730000346899, 257254.897900000214577 ], [ 358035.717399999499321, 257250.181600000709295 ], [ 358028.345499999821186, 257263.631299998611212 ], [ 358024.211499996483326, 257275.629799999296665 ], [ 358031.523999996483326, 257269.145700000226498 ], [ 358044.54730000346899, 257254.897900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302330100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9356575, "LATITUDE": 18.34492393, "OBJECTID_1": 10564, "PARCEL_NO_": "105302330100", "Tax_Legal_": "VESTER GADE 24A QUEENS QTR", "Name": "EDWARDO, INNIS", "Address": "PO Box 1604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6800, "Improved_V": 59800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.297519913400002, "SHAPE_Area": 157.61241172800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358304.808200001716614, 257277.926300000399351 ], [ 358308.101800002157688, 257269.931699998676777 ], [ 358290.411399997770786, 257264.087400000542402 ], [ 358287.121500000357628, 257271.65989999845624 ], [ 358304.808200001716614, 257277.926300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9319616, "LATITUDE": 18.34492228, "OBJECTID_1": 11420, "PARCEL_NO_": "105401020700", "Tax_Legal_": "PALM STRAEDE 8 QUEENS QUARTER", "Name": "COULIANOS, KATINA", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040236, "Country": "United States", "Land_Value": 8100, "Improved_V": 13200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.139338359699998, "SHAPE_Area": 126.124179302 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358694.368600003421307, 257268.026900000870228 ], [ 358683.078400000929832, 257268.145599998533726 ], [ 358682.977700002491474, 257279.965999998152256 ], [ 358692.651699997484684, 257280.256299998611212 ], [ 358694.368600003421307, 257268.026900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302180300", "MAP": null, "PARCEL_NAM": "LERKE GADE 7", "ACRE": null, "LONGITUDE": -64.93734444, "LATITUDE": 18.34492473, "OBJECTID_1": 10096, "PARCEL_NO_": "105302180300", "Tax_Legal_": "LERKE GADE 7 CROWN PRINCE QTR", "Name": "CHRISTIAN, EVERILDA & LEROY", "Address": "Learke Gade #7A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16300, "Improved_V": 1300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.5237407531, "SHAPE_Area": 233.100257226 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358117.847999997437, 257264.152699999511242 ], [ 358115.429099999368191, 257264.13289999961853 ], [ 358108.170400001108646, 257264.284600000828505 ], [ 358108.888599999248981, 257274.634100001305342 ], [ 358121.786100000143051, 257275.161800000816584 ], [ 358129.84740000218153, 257275.438900001347065 ], [ 358129.944499999284744, 257264.040600001811981 ], [ 358117.847999997437, 257264.152699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302330500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93525807, "LATITUDE": 18.34488418, "OBJECTID_1": 10568, "PARCEL_NO_": "105302330500", "Tax_Legal_": "SKOV GADE 3 QUEEN S QUARTER", "Name": "PENN, GIBSON & PAULINE", "Address": "PO Box 9786", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62400, "Improved_V": 42400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.093243569800002, "SHAPE_Area": 239.65202375199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358335.635099999606609, 257256.224899999797344 ], [ 358330.660499997437, 257272.227299999445677 ], [ 358344.326499998569489, 257277.194299999624491 ], [ 358349.293799996376038, 257262.036200001835823 ], [ 358335.635099999606609, 257256.224899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93205685, "LATITUDE": 18.3449271, "OBJECTID_1": 11419, "PARCEL_NO_": "105401020600", "Tax_Legal_": "LEMON 9A QUEENS", "Name": "CULIANOS, KATINA", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.3084524585, "SHAPE_Area": 109.783377598 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358683.078400000929832, 257268.145599998533726 ], [ 358679.043300002813339, 257268.534699998795986 ], [ 358674.201800003647804, 257268.917300000786781 ], [ 358672.495700001716614, 257279.880199998617172 ], [ 358682.977700002491474, 257279.965999998152256 ], [ 358683.078400000929832, 257268.145599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302180100", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 9", "ACRE": null, "LONGITUDE": -64.9378028, "LATITUDE": 18.34481342, "OBJECTID_1": 10094, "PARCEL_NO_": "105302180100", "Tax_Legal_": "GYLLINGS STREET 9 CROWN PRINCE QUARTER", "Name": "HODGE, MARGARITA V", "Address": "7275 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022529, "Country": "United States", "Land_Value": 20500, "Improved_V": 14000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.294473831600001, "SHAPE_Area": 481.34588404200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358080.665899999439716, 257274.614199999719858 ], [ 358081.556699998676777, 257264.700100000947714 ], [ 358083.32940000295639, 257245.927200000733137 ], [ 358069.618500001728535, 257246.237199999392033 ], [ 358059.903200000524521, 257250.80180000141263 ], [ 358053.414899997413158, 257255.181600000709295 ], [ 358053.369999997317791, 257260.458599999547005 ], [ 358059.010600000619888, 257260.926899999380112 ], [ 358068.657499998807907, 257264.383400000631809 ], [ 358077.478399999439716, 257270.155099999159575 ], [ 358080.665899999439716, 257274.614199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184700", "MAP": null, "PARCEL_NAM": "LIEFDE GADE 5", "ACRE": null, "LONGITUDE": -64.93682157000001, "LATITUDE": 18.34488852, "OBJECTID_1": 10140, "PARCEL_NO_": "105302184700", "Tax_Legal_": "LIEFDE GADE 5 CROWN PRINCE", "Name": "HODGE, KAREN", "Address": "2905 Liefte Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 52400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.2295677117, "SHAPE_Area": 275.735949533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358184.824100002646446, 257258.579199999570847 ], [ 358168.715800002217293, 257256.336399998515844 ], [ 358165.328699998557568, 257275.307100001722574 ], [ 358180.657600000500679, 257274.377099998295307 ], [ 358184.824100002646446, 257258.579199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302250100", "MAP": null, "PARCEL_NAM": "2B JEGGEGOTS GADE", "ACRE": null, "LONGITUDE": -64.93668, "LATITUDE": 18.34490577, "OBJECTID_1": 10344, "PARCEL_NO_": "105302250100", "Tax_Legal_": "2B JEGGEGOTS GADE KRONPRINDSENS QTR", "Name": "BROWNE, KELVIN E and CANDEYA S TURNBULL", "Address": "2802 Jeggeguts Gade 2B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8500, "Improved_V": 86800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.1740886945, "SHAPE_Area": 117.613259392 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358193.5675999969244, 257273.427299998700619 ], [ 358196.076499998569489, 257262.893100000917912 ], [ 358186.411499999463558, 257261.547499999403954 ], [ 358183.078400000929832, 257274.1858000010252 ], [ 358193.5675999969244, 257273.427299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302250200", "MAP": null, "PARCEL_NAM": "JEGGE GUT 2A", "ACRE": null, "LONGITUDE": -64.9365625, "LATITUDE": 18.3449074, "OBJECTID_1": 10345, "PARCEL_NO_": "105302250200", "Tax_Legal_": "JEGGE GUT 2A CROWN PRINCE", "Name": "MARSAN ALVIN & D & C", "Address": "Po Box 12019", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8400, "Improved_V": 48300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.4705417646, "SHAPE_Area": 136.847871277 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358193.5675999969244, 257273.427299998700619 ], [ 358205.66950000077486, 257272.682000000029802 ], [ 358210.536200001835823, 257269.344300001859665 ], [ 358212.18299999833107, 257265.346999999135733 ], [ 358196.076499998569489, 257262.893100000917912 ], [ 358193.5675999969244, 257273.427299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302120100", "MAP": null, "PARCEL_NAM": "52", "ACRE": null, "LONGITUDE": -64.94091694, "LATITUDE": 18.34477737, "OBJECTID_1": 9839, "PARCEL_NO_": "105302120100", "Tax_Legal_": "SOLBERG 52 LITTLE NORTHSIDE QTR", "Name": "FREEMAN, PERRY & SCATLIFFE, H. & OTH", "Address": "PO Box 1021", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 77400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.573408496, "SHAPE_Area": 670.44802084299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357729.149599999189377, 257267.515299998223782 ], [ 357746.080399997532368, 257267.864999998360872 ], [ 357747.723600000143051, 257264.289799999445677 ], [ 357753.556599996984005, 257242.172699999064207 ], [ 357756.896899998188019, 257228.690099999308586 ], [ 357740.702299997210503, 257236.579100001603365 ], [ 357732.626599997282028, 257237.990699999034405 ], [ 357729.149599999189377, 257267.515299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302481100", "MAP": "D9-3819-T87", "PARCEL_NAM": "100-4", "ACRE": "0.65", "LONGITUDE": -64.9389265, "LATITUDE": 18.34462715, "OBJECTID_1": 10845, "PARCEL_NO_": "105302481100", "Tax_Legal_": "SOLBERG 100-4 LT. NORTHSIDE", "Name": "BOSCHULTE, ANTHONY", "Address": "P.O. BOX 3767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 207300, "Improved_V": 64000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.31140071499999, "SHAPE_Area": 2505.8821636299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357980.884999997913837, 257213.630800001323223 ], [ 357941.877300001680851, 257205.704900000244379 ], [ 357940.928599998354912, 257207.609299998730421 ], [ 357936.844899997115135, 257213.697599999606609 ], [ 357920.601700000464916, 257227.285700000822544 ], [ 357935.646600000560284, 257259.706199999898672 ], [ 357969.445100001990795, 257267.793299999088049 ], [ 357971.982799999415874, 257253.881900001317263 ], [ 357975.3429000005126, 257238.077300000935793 ], [ 357977.005800001323223, 257232.180300001055002 ], [ 357979.525499999523163, 257220.379700001329184 ], [ 357980.884999997913837, 257213.630800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302333000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93563542, "LATITUDE": 18.34486351, "OBJECTID_1": 10593, "PARCEL_NO_": "105302333000", "Tax_Legal_": "VESTER GADE 24B QUEENS QTR", "Name": "INNIS, EDUARDO L", "Address": "PO Box 1604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13700, "Improved_V": 11700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.216635584800002, "SHAPE_Area": 105.443711335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358309.757600001990795, 257264.879000000655651 ], [ 358292.878899998962879, 257258.408100001513958 ], [ 358290.411399997770786, 257264.087400000542402 ], [ 358308.101800002157688, 257269.931699998676777 ], [ 358309.757600001990795, 257264.879000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301154400", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-30", "ACRE": ".22", "LONGITUDE": -64.94667754, "LATITUDE": 18.3447118, "OBJECTID_1": 9542, "PARCEL_NO_": "105301154400", "Tax_Legal_": "ALTONA & WELGUNST 220-30 SOUTHSIDE QTR.", "Name": "CALLENDER,TRUSTEE, Dr.WILBUR KENNARD", "Address": "PO Box 11250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.824549596, "SHAPE_Area": 1120.47560107 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357142.555200003087521, 257215.640399999916553 ], [ 357114.256899997591972, 257224.48589999973774 ], [ 357119.699699997901917, 257248.172899998724461 ], [ 357123.628799997270107, 257260.237399999052286 ], [ 357152.73870000243187, 257250.765299998223782 ], [ 357142.555200003087521, 257215.640399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302120200", "MAP": null, "PARCEL_NAM": "53A", "ACRE": null, "LONGITUDE": -64.94072227, "LATITUDE": 18.34483227, "OBJECTID_1": 9842, "PARCEL_NO_": "105302120200", "Tax_Legal_": "SOLBERG 53A KROMP PRINCE QTR", "Name": "DAVID, GEORGE, GEORGIA, & CAROLYN JAMES", "Address": "PO Box 600383", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19600, "Improved_V": 56700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.673793556500002, "SHAPE_Area": 457.092735468 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357780.010300002992153, 257260.543299999088049 ], [ 357764.803599998354912, 257247.119899999350309 ], [ 357753.556599996984005, 257242.172699999064207 ], [ 357747.723600000143051, 257264.289799999445677 ], [ 357767.075099997222424, 257264.44819999858737 ], [ 357780.773400001227856, 257265.615800000727177 ], [ 357780.010300002992153, 257260.543299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302170600", "MAP": null, "PARCEL_NAM": "HILL STREET 21", "ACRE": null, "LONGITUDE": -64.93860414, "LATITUDE": 18.3447857, "OBJECTID_1": 10055, "PARCEL_NO_": "105302170600", "Tax_Legal_": "HILL STREET 21 CROWN PRINCE QTR", "Name": "DE SYLVIA, PEARL", "Address": "1584 Sugarmaple Ln SW", "City": "Conyers", "State": "Georgia", "Zip": 30094, "Country": "United States", "Land_Value": 15300, "Improved_V": 33900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.451873449700003, "SHAPE_Area": 435.38961151699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358002.619000002741814, 257254.554800000041723 ], [ 357975.3429000005126, 257238.077300000935793 ], [ 357971.982799999415874, 257253.881900001317263 ], [ 357996.062399998307228, 257266.955600000917912 ], [ 358002.619000002741814, 257254.554800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302330400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93545321000001, "LATITUDE": 18.34481522, "OBJECTID_1": 10567, "PARCEL_NO_": "105302330400", "Tax_Legal_": "SKOV GADE 2 QUEEN S QUARTER", "Name": "THOMPSON, KEITHROY & JUDITH", "Address": "PO Box 11598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.324045038400001, "SHAPE_Area": 229.43907002099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358317.156400002539158, 257248.263199999928474 ], [ 358309.757600001990795, 257264.879000000655651 ], [ 358319.404500000178814, 257268.335499998182058 ], [ 358322.620800003409386, 257269.417300000786781 ], [ 358328.403399996459484, 257253.210400000214577 ], [ 358317.156400002539158, 257248.263199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302350200", "MAP": "D9-5163-T91", "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.93404411, "LATITUDE": 18.34444169, "OBJECTID_1": 10621, "PARCEL_NO_": "105302350200", "Tax_Legal_": "1B CATHERINBERG & 9-A NORDSIDEVEJ QUEENS QTR", "Name": "JESM GROUP LLC", "Address": "2602 Bjerge Gade #2D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.55633115199998, "SHAPE_Area": 3135.5572384299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358480.761600002646446, 257163.898200001567602 ], [ 358455.841399997472763, 257154.828400000929832 ], [ 358451.121200002729893, 257235.638599999248981 ], [ 358450.122500002384186, 257258.217399999499321 ], [ 358460.58110000193119, 257261.047200001776218 ], [ 358476.669600002467632, 257265.611800000071526 ], [ 358495.978000000119209, 257270.836100000888109 ], [ 358496.026500001549721, 257265.136999998241663 ], [ 358494.48759999871254, 257256.4695999994874 ], [ 358491.343299999833107, 257246.944600000977516 ], [ 358483.400600001215935, 257232.736299999058247 ], [ 358478.704800002276897, 257216.021499998867512 ], [ 358477.167700000107288, 257207.14299999922514 ], [ 358476.580799996852875, 257181.384799998253584 ], [ 358480.761600002646446, 257163.898200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93172319, "LATITUDE": 18.34480384, "OBJECTID_1": 11431, "PARCEL_NO_": "105401030900", "Tax_Legal_": "PALM STRAEDE 5A QUEENS QTR", "Name": "JONES, EDEN", "Address": "PO Box 340036", "City": "Brooklyn", "State": "New York", "Zip": 11234, "Country": "United States", "Land_Value": 7500, "Improved_V": 134400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.4494567184, "SHAPE_Area": 136.50563988 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358711.427000001072884, 257253.390000000596046 ], [ 358706.445299997925758, 257270.236699998378754 ], [ 358709.667000003159046, 257270.685199998319149 ], [ 358717.800200000405312, 257262.519099999219179 ], [ 358722.699199996888638, 257255.382100000977516 ], [ 358711.427000001072884, 257253.390000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302330600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9348541, "LATITUDE": 18.34480741, "OBJECTID_1": 10569, "PARCEL_NO_": "105302330600", "Tax_Legal_": "SKOV GADE 7 QUEEN S QUARTER", "Name": "HATCHETT, ANTONIO", "Address": "P.O.BOX 2472", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 32300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.091524442899996, "SHAPE_Area": 323.39372417700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358392.111100003123283, 257252.676300000399351 ], [ 358378.439800001680851, 257248.342599999159575 ], [ 358377.61370000243187, 257250.657900001853704 ], [ 358375.203699998557568, 257249.582699999213219 ], [ 358370.24719999730587, 257263.474300000816584 ], [ 358373.46339999884367, 257264.556099999696016 ], [ 358382.314900003373623, 257266.739399999380112 ], [ 358393.596100002527237, 257267.676100000739098 ], [ 358392.111100003123283, 257252.676300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93180471, "LATITUDE": 18.34480044, "OBJECTID_1": 11430, "PARCEL_NO_": "105401030800", "Tax_Legal_": "PALM STRAEDE 5AA QUEENS QTR", "Name": "JONES, EDEN", "Address": "PO Box 340036", "City": "Brooklyn", "State": "New York", "Zip": 11234, "Country": "United States", "Land_Value": 4300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.886284234999998, "SHAPE_Area": 144.16522749399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358700.000200003385544, 257269.550599999725819 ], [ 358706.445299997925758, 257270.236699998378754 ], [ 358711.427000001072884, 257253.390000000596046 ], [ 358701.765699997544289, 257251.622099999338388 ], [ 358700.000200003385544, 257269.550599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93227267, "LATITUDE": 18.3448162, "OBJECTID_1": 11421, "PARCEL_NO_": "105401020800", "Tax_Legal_": "HYACINTH STREET 3 QUEEN QUARTER", "Name": "NILES, REHENIA C", "Address": "PO Box 1453", "City": "Buffalo", "State": "New York", "Zip": 14240, "Country": "United States", "Land_Value": 11100, "Improved_V": 50000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.833579293100001, "SHAPE_Area": 227.31193802499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358662.099899999797344, 257269.662599999457598 ], [ 358663.845600001513958, 257254.056000001728535 ], [ 358647.710400000214577, 257254.979400001466274 ], [ 358648.387199997901917, 257270.183699999004602 ], [ 358659.682800002396107, 257269.431800000369549 ], [ 358662.099899999797344, 257269.662599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9321204, "LATITUDE": 18.34480929, "OBJECTID_1": 11422, "PARCEL_NO_": "105401020900", "Tax_Legal_": "HYACINTH GADE 2 QUEENS", "Name": "SMITH A J HASSEL", "Address": "P.O. BOX 3153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 18500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.055351374500006, "SHAPE_Area": 267.14058736800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358679.043300002813339, 257268.534699998795986 ], [ 358681.593500003218651, 257253.145799998193979 ], [ 358663.845600001513958, 257254.056000001728535 ], [ 358662.099899999797344, 257269.662599999457598 ], [ 358674.201800003647804, 257268.917300000786781 ], [ 358679.043300002813339, 257268.534699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302181100", "MAP": null, "PARCEL_NAM": "SAVAN STREET 5", "ACRE": null, "LONGITUDE": -64.93762122, "LATITUDE": 18.34479939, "OBJECTID_1": 10104, "PARCEL_NO_": "105302181100", "Tax_Legal_": "SAVAN ST CROWN PRINCE 5 QTR", "Name": "DESUZA, RANDOLPH & HODGE, ANET", "Address": "PO Box 304737", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.275733601499994, "SHAPE_Area": 288.75756868899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358083.32940000295639, 257245.927200000733137 ], [ 358081.556699998676777, 257264.700100000947714 ], [ 358097.686599999666214, 257264.40989999845624 ], [ 358098.645700000226498, 257246.474800001829863 ], [ 358083.32940000295639, 257245.927200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302320400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93593012, "LATITUDE": 18.34479133, "OBJECTID_1": 10546, "PARCEL_NO_": "105302320400", "Tax_Legal_": "VESTER GADE 29 QUEEN S QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.024717326499996, "SHAPE_Area": 425.77401508299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358286.444600000977516, 257256.455600000917912 ], [ 358270.381300002336502, 257248.9358000010252 ], [ 358259.137900002300739, 257243.566500000655651 ], [ 358251.751599997282028, 257258.704799998551607 ], [ 358254.165200002491474, 257259.357799999415874 ], [ 358283.133100003004074, 257266.561000000685453 ], [ 358286.444600000977516, 257256.455600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302181000", "MAP": null, "PARCEL_NAM": "SAVAN STREET 3", "ACRE": null, "LONGITUDE": -64.93750624, "LATITUDE": 18.34479742, "OBJECTID_1": 10103, "PARCEL_NO_": "105302181000", "Tax_Legal_": "SAVAN STREET 3 CROWN PRINCE QUARTER", "Name": "LYNCH L ROGERS & GENEVIEVE E ROGERS FAMILY REV TRU", "Address": "PO Box 154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.49390708, "SHAPE_Area": 150.123045112 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358098.645700000226498, 257246.474800001829863 ], [ 358097.686599999666214, 257264.40989999845624 ], [ 358105.751500003039837, 257264.264800000935793 ], [ 358107.513400003314018, 257246.758499998599291 ], [ 358098.645700000226498, 257246.474800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302250300", "MAP": null, "PARCEL_NAM": "JEGGE GUT 1", "ACRE": null, "LONGITUDE": -64.93657238, "LATITUDE": 18.34480678, "OBJECTID_1": 10346, "PARCEL_NO_": "105302250300", "Tax_Legal_": "JEGGE GUT 1 CROWN PRINCE QTR", "Name": "LEACOCK, ELSA", "Address": "2604 Hermosa Ave", "City": "Baltimore", "State": "Maryland", "Zip": 21214, "Country": "United States", "Land_Value": 25600, "Improved_V": 82200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.925986007099993, "SHAPE_Area": 343.98884734400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358209.067400000989437, 257252.44480000063777 ], [ 358192.969899997115135, 257248.935499999672174 ], [ 358189.750100001692772, 257248.27589999884367 ], [ 358186.411499999463558, 257261.547499999403954 ], [ 358196.076499998569489, 257262.893100000917912 ], [ 358212.18299999833107, 257265.346999999135733 ], [ 358217.116099998354912, 257254.199400000274181 ], [ 358209.067400000989437, 257252.44480000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302170500", "MAP": null, "PARCEL_NAM": "HILL STREET 12", "ACRE": null, "LONGITUDE": -64.93825767, "LATITUDE": 18.344777, "OBJECTID_1": 10054, "PARCEL_NO_": "105302170500", "Tax_Legal_": "HILL STREET 12 CROWN PRINCE", "Name": "PICKERING, RICK", "Address": "PO Box 303823", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.094095944100005, "SHAPE_Area": 307.82051504600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358035.717399999499321, 257250.181600000709295 ], [ 358018.052299998700619, 257241.382199998944998 ], [ 358009.877599999308586, 257254.403099998831749 ], [ 358017.908399999141693, 257258.268500000238419 ], [ 358028.345499999821186, 257263.631299998611212 ], [ 358035.717399999499321, 257250.181600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302180900", "MAP": null, "PARCEL_NAM": "SAVAN STREET 1A", "ACRE": null, "LONGITUDE": -64.93742447, "LATITUDE": 18.3448012, "OBJECTID_1": 10102, "PARCEL_NO_": "105302180900", "Tax_Legal_": "SAVAN STREET 1A CROWN PRINCE", "Name": "ROGERS, LYNCH L. & GENEVIEVE E. (TRUSTEES)", "Address": "PO Box 154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8700, "Improved_V": 43700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.438082426400001, "SHAPE_Area": 153.782422666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358107.513400003314018, 257246.758499998599291 ], [ 358105.751500003039837, 257264.264800000935793 ], [ 358108.170400001108646, 257264.284600000828505 ], [ 358115.429099999368191, 257264.13289999961853 ], [ 358115.574699997901917, 257247.035500001162291 ], [ 358107.513400003314018, 257246.758499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302180800", "MAP": null, "PARCEL_NAM": "LERKE GADE 6 & SAVAN STREET 1", "ACRE": null, "LONGITUDE": -64.93730054, "LATITUDE": 18.34479838, "OBJECTID_1": 10101, "PARCEL_NO_": "105302180800", "Tax_Legal_": "LERKE GADE 6 & SAVAN STREET 1 CROWN PRINCE QTR", "Name": "ROGERS, GENEVIEVE & CLAUDIA", "Address": "PO Box 154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14100, "Improved_V": 36600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.588035048099997, "SHAPE_Area": 209.781299507 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358117.847999997437, 257264.152699999511242 ], [ 358129.944499999284744, 257264.040600001811981 ], [ 358130.891099996864796, 257247.583099998533726 ], [ 358117.993600003421307, 257247.055300001055002 ], [ 358117.847999997437, 257264.152699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302181500", "MAP": null, "PARCEL_NAM": "LERKE GADE 2", "ACRE": null, "LONGITUDE": -64.93711402, "LATITUDE": 18.34475166, "OBJECTID_1": 10108, "PARCEL_NO_": "105302181500", "Tax_Legal_": "LERKE GADE 2 CROWN PRINCE QTR", "Name": "OTTLEY, JR, BASIL & KIRSTEN ABRAHAMS", "Address": "PO Box 583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9000, "Improved_V": 42300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.788214060300007, "SHAPE_Area": 346.45667300899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358148.504100002348423, 257262.503800000995398 ], [ 358151.835400000214577, 257250.076499998569489 ], [ 358151.932499997317791, 257238.678300000727177 ], [ 358137.41889999806881, 257238.559500001370907 ], [ 358136.393200002610683, 257264.304499998688698 ], [ 358148.504100002348423, 257262.503800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93196624, "LATITUDE": 18.34480191, "OBJECTID_1": 11423, "PARCEL_NO_": "105401021000", "Tax_Legal_": "HYACINTH STRAEDE 1 QUEENS QUARTER", "Name": "Jonathan Tucker, Roger Steele, Desiree Tucker-Cave", "Address": "PO Box 304", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040304, "Country": "United States", "Land_Value": 16300, "Improved_V": 40300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.874705193600001, "SHAPE_Area": 230.375476386 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358679.043300002813339, 257268.534699998795986 ], [ 358683.078400000929832, 257268.145599998533726 ], [ 358694.368600003421307, 257268.026900000870228 ], [ 358696.909800000488758, 257253.693300001323223 ], [ 358688.047600001096725, 257252.776399999856949 ], [ 358681.593500003218651, 257253.145799998193979 ], [ 358679.043300002813339, 257268.534699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302123100", "MAP": null, "PARCEL_NAM": "53", "ACRE": null, "LONGITUDE": -64.94065223, "LATITUDE": 18.34466165, "OBJECTID_1": 9870, "PARCEL_NO_": "105302123100", "Tax_Legal_": "SOLBERG 53 LITTLE NORTHSIDE QTR", "Name": "DAVID, PEARL & OTHERS", "Address": "PO Box 302302", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 126900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.222995316, "SHAPE_Area": 679.24668859300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357756.896899998188019, 257228.690099999308586 ], [ 357753.556599996984005, 257242.172699999064207 ], [ 357764.803599998354912, 257247.119899999350309 ], [ 357780.010300002992153, 257260.543299999088049 ], [ 357779.277699999511242, 257251.882500000298023 ], [ 357783.524999998509884, 257226.585999999195337 ], [ 357777.440700002014637, 257223.892099998891354 ], [ 357765.709200002253056, 257222.243000000715256 ], [ 357756.896899998188019, 257228.690099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302330300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93559151, "LATITUDE": 18.34476106, "OBJECTID_1": 10566, "PARCEL_NO_": "105302330300", "Tax_Legal_": "VESTER GADE 22&23 QUEEN S QUARTER", "Name": "THOMPSON, KEITHROY & JUDITH", "Address": "PO Box 11598", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15800, "Improved_V": 88700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.349584572699996, "SHAPE_Area": 345.26510807900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358292.878899998962879, 257258.408100001513958 ], [ 358309.757600001990795, 257264.879000000655651 ], [ 358317.156400002539158, 257248.263199999928474 ], [ 358299.480499997735023, 257240.73030000180006 ], [ 358292.878899998962879, 257258.408100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302181600", "MAP": null, "PARCEL_NAM": "LIEFDE GADE 2", "ACRE": null, "LONGITUDE": -64.93697732, "LATITUDE": 18.34475085, "OBJECTID_1": 10109, "PARCEL_NO_": "105302181600", "Tax_Legal_": "LIEFDE GADE 2 CROWN PRINCE QTR", "Name": "LANS, VICTOR", "Address": "2902 Liefte Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10400, "Improved_V": 25400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.306480471300006, "SHAPE_Area": 356.41340152399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358168.060500003397465, 257238.599199999123812 ], [ 358151.932499997317791, 257238.678300000727177 ], [ 358151.835400000214577, 257250.076499998569489 ], [ 358148.504100002348423, 257262.503800000995398 ], [ 358163.010499998927116, 257263.466899998486042 ], [ 358168.060500003397465, 257238.599199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302330700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9350093, "LATITUDE": 18.34475023, "OBJECTID_1": 10570, "PARCEL_NO_": "105302330700", "Tax_Legal_": "8 SKOV GADE QUEENS QTR", "Name": "THE EDITH E CAMERON TRUST", "Address": "PO Box 304487", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12400, "Improved_V": 82000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.149128025300001, "SHAPE_Area": 266.20534541699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358373.637900002300739, 257244.081399999558926 ], [ 358363.998099997639656, 257239.780600000172853 ], [ 358356.575800001621246, 257259.140500001609325 ], [ 358370.24719999730587, 257263.474300000816584 ], [ 358375.203699998557568, 257249.582699999213219 ], [ 358371.992899999022484, 257247.867600001394749 ], [ 358373.637900002300739, 257244.081399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301161500", "MAP": null, "PARCEL_NAM": "200-5F-5", "ACRE": "0.33", "LONGITUDE": -64.94638238, "LATITUDE": 18.3444849, "OBJECTID_1": 9557, "PARCEL_NO_": "105301161500", "Tax_Legal_": "ALTONA & WELGUNST 200-5F-5 KRONPRINDSENS QTR.", "Name": "VANTERPOOL, ALBERT & CHERYL", "Address": "PO BOX 4638", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.33130124600001, "SHAPE_Area": 1536.71567798 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357183.135099999606609, 257184.941799998283386 ], [ 357143.532300002872944, 257195.5945999994874 ], [ 357159.979400001466274, 257252.724399998784065 ], [ 357161.584799997508526, 257253.581900000572205 ], [ 357164.009099997580051, 257252.968499999493361 ], [ 357166.462099999189377, 257246.567200001329184 ], [ 357182.15259999781847, 257205.620900001376867 ], [ 357183.851499997079372, 257195.502399999648333 ], [ 357183.135099999606609, 257184.941799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301160300", "MAP": "D9-2721-T84", "PARCEL_NAM": "200-5D-4", "ACRE": ".24", "LONGITUDE": -64.94524225000001, "LATITUDE": 18.3446679, "OBJECTID_1": 9547, "PARCEL_NO_": "105301160300", "Tax_Legal_": "ALTONA & WELGUNST 200-5D-4 CROWN PRINCE QTR.", "Name": "TODMAN, JAMES & MALDA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70500, "Improved_V": 129900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.952658361, "SHAPE_Area": 1055.8814264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357277.232699997723103, 257213.998500000685453 ], [ 357262.487099997699261, 257241.108899999409914 ], [ 357284.950599998235703, 257254.591600000858307 ], [ 357310.941399998962879, 257232.639499999582767 ], [ 357305.322400003671646, 257229.638199999928474 ], [ 357296.512299999594688, 257222.600000001490116 ], [ 357287.685999996960163, 257217.461599998176098 ], [ 357277.232699997723103, 257213.998500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301083300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94363067, "LATITUDE": 18.34472283, "OBJECTID_1": 9281, "PARCEL_NO_": "105301083300", "Tax_Legal_": "SOLBERG 72-2 LT. NORTHSIDE", "Name": "FRETT, ETIEN O.,SR. & NIDIA OCANA-FRETT (TRUSTEES)", "Address": "PO Box 11824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.03159533, "SHAPE_Area": 688.65853270399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357471.431699998676777, 257229.942299999296665 ], [ 357428.591099999845028, 257242.04619999974966 ], [ 357434.140000000596046, 257253.279599998146296 ], [ 357436.548100002110004, 257254.565799999982119 ], [ 357439.780599996447563, 257253.747900001704693 ], [ 357464.031099997460842, 257246.769200000911951 ], [ 357480.200499996542931, 257241.835299998521805 ], [ 357477.090300001204014, 257228.299899999052286 ], [ 357471.431699998676777, 257229.942299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184800", "MAP": null, "PARCEL_NAM": "LIFDE GADE 6", "ACRE": null, "LONGITUDE": -64.93679251, "LATITUDE": 18.34475156, "OBJECTID_1": 10141, "PARCEL_NO_": "105302184800", "Tax_Legal_": "LIFDE GADE 6 CROWN PRINCE", "Name": "BLOCK, JOSEPH", "Address": "6 Lifde Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12200, "Improved_V": 39800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.452277533699998, "SHAPE_Area": 218.20628162599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358187.347300000488758, 257246.3564000017941 ], [ 358171.2533999979496, 257242.425000000745058 ], [ 358168.715800002217293, 257256.336399998515844 ], [ 358184.824100002646446, 257258.579199999570847 ], [ 358187.347300000488758, 257246.3564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302120400", "MAP": null, "PARCEL_NAM": "54", "ACRE": "9,570 sq ft", "LONGITUDE": -64.93990893, "LATITUDE": 18.34466169, "OBJECTID_1": 9844, "PARCEL_NO_": "105302120400", "Tax_Legal_": "54 SOLBERG LITTLE NORTHSIDE", "Name": "Cid, Donald J. & Antonio Jr", "Address": "P.O. BOX 4772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68800, "Improved_V": 60200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.945735234, "SHAPE_Area": 911.37816013099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357864.989600002765656, 257224.086300000548363 ], [ 357830.2804000005126, 257228.235199999064207 ], [ 357822.208200000226498, 257229.224599998444319 ], [ 357824.583999998867512, 257234.310300000011921 ], [ 357828.574199996888638, 257239.198100000619888 ], [ 357839.788900002837181, 257247.94480000063777 ], [ 357849.423299998044968, 257252.878800000995398 ], [ 357857.462999999523163, 257255.688799999654293 ], [ 357866.38459999859333, 257249.640099998563528 ], [ 357864.989600002765656, 257224.086300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302320300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9361883, "LATITUDE": 18.34471253, "OBJECTID_1": 10545, "PARCEL_NO_": "105302320300", "Tax_Legal_": "VESTER GADE 55 QUEENS", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27800, "Improved_V": 10500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.536637789899999, "SHAPE_Area": 528.83549103300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358259.137900002300739, 257243.566500000655651 ], [ 358235.032999999821186, 257233.447799999266863 ], [ 358230.128600001335144, 257241.218100000172853 ], [ 358224.3800999969244, 257253.414500001817942 ], [ 358251.751599997282028, 257258.704799998551607 ], [ 358259.137900002300739, 257243.566500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302330800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93513629, "LATITUDE": 18.34469817, "OBJECTID_1": 10571, "PARCEL_NO_": "105302330800", "Tax_Legal_": "SKOV GADE 9 QUEEN S QUARTER", "Name": "CAMERON, JACQUELINE & DERICK", "Address": "PO Box 307306", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.371037034799997, "SHAPE_Area": 329.86237880300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358363.998099997639656, 257239.780600000172853 ], [ 358350.3429000005126, 257233.547200001776218 ], [ 358341.311599999666214, 257252.471700001507998 ], [ 358356.575800001621246, 257259.140500001609325 ], [ 358363.998099997639656, 257239.780600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302170700", "MAP": null, "PARCEL_NAM": "HILL STREET 19", "ACRE": null, "LONGITUDE": -64.93856553000001, "LATITUDE": 18.34469899, "OBJECTID_1": 10056, "PARCEL_NO_": "105302170700", "Tax_Legal_": "HILL STREET 19 CROWN PRINCE QTR", "Name": "ESTRIDGE, NATHANIEL", "Address": "678 Franklin Ave", "City": "Brooklyn", "State": "New York", "Zip": 11238, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.992113188299996, "SHAPE_Area": 206.12022734799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358005.894599996507168, 257248.671000000089407 ], [ 357977.005800001323223, 257232.180300001055002 ], [ 357975.3429000005126, 257238.077300000935793 ], [ 358002.619000002741814, 257254.554800000041723 ], [ 358005.894599996507168, 257248.671000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302171000", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 7", "ACRE": null, "LONGITUDE": -64.93802447, "LATITUDE": 18.34470658, "OBJECTID_1": 10059, "PARCEL_NO_": "105302171000", "Tax_Legal_": "GYLLINGS STREET 7 CROWN PRINCE STREET", "Name": "LETTSOME, VICTOR", "Address": "PO Box 307064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23400, "Improved_V": 226800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.004845451099996, "SHAPE_Area": 263.90710088700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358063.200400002300739, 257242.385000001639128 ], [ 358044.716300003230572, 257235.056499999016523 ], [ 358035.717399999499321, 257250.181600000709295 ], [ 358044.54730000346899, 257254.897900000214577 ], [ 358051.042700000107288, 257249.673799999058247 ], [ 358063.200400002300739, 257242.385000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302320700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93580054, "LATITUDE": 18.34465914, "OBJECTID_1": 10547, "PARCEL_NO_": "105302320700", "Tax_Legal_": "VESTER GADE 30 QUEEN S QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.179819075699996, "SHAPE_Area": 417.17808257399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358294.694799996912479, 257234.569400001317263 ], [ 358280.254900000989437, 257225.796399999409914 ], [ 358270.381300002336502, 257248.9358000010252 ], [ 358286.444600000977516, 257256.455600000917912 ], [ 358294.694799996912479, 257234.569400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302250600", "MAP": null, "PARCEL_NAM": "SLAGTER 3", "ACRE": null, "LONGITUDE": -64.93643982, "LATITUDE": 18.34471766, "OBJECTID_1": 10348, "PARCEL_NO_": "105302250600", "Tax_Legal_": "SLAGTER 3 CROWN PRINCE QTR", "Name": "THOMAS, KARLENE A", "Address": "PO Box 307176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.615906277400001, "SHAPE_Area": 110.464330648 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358212.395099997520447, 257240.439699999988079 ], [ 358209.067400000989437, 257252.44480000063777 ], [ 358217.116099998354912, 257254.199400000274181 ], [ 358222.045699998736382, 257243.473999999463558 ], [ 358212.395099997520447, 257240.439699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301142500", "MAP": "D9-2742-T84", "PARCEL_NAM": "200-8Z", "ACRE": "0.14", "LONGITUDE": -64.94410523000001, "LATITUDE": 18.34461914, "OBJECTID_1": 9498, "PARCEL_NO_": "105301142500", "Tax_Legal_": "ALTONA & WELGUNST 200-8Z KRONPRINDSENS QTR.", "Name": "RICHARDSON, LEOPOLD M. & MERCIA", "Address": "3623-16 Estate Altona&Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33600, "Improved_V": 108600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.878001973, "SHAPE_Area": 481.26164876000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357384.207900002598763, 257245.904800001531839 ], [ 357391.480899997055531, 257244.064500000327826 ], [ 357404.4341000020504, 257238.048799999058247 ], [ 357415.72070000320673, 257238.352200001478195 ], [ 357419.064599998295307, 257224.447399999946356 ], [ 357415.851899996399879, 257222.943500000983477 ], [ 357413.454599998891354, 257220.390799999237061 ], [ 357410.288699999451637, 257213.398800000548363 ], [ 357405.449000000953674, 257213.570199999958277 ], [ 357402.180600002408028, 257218.609700001776218 ], [ 357398.068099997937679, 257228.075300000607967 ], [ 357389.907899998128414, 257239.407499998807907 ], [ 357384.207900002598763, 257245.904800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302250500", "MAP": null, "PARCEL_NAM": "SLAGTER 4& 4A", "ACRE": null, "LONGITUDE": -64.93655976, "LATITUDE": 18.34468941, "OBJECTID_1": 10347, "PARCEL_NO_": "105302250500", "Tax_Legal_": "4&4A SLAGTER CROWN PRINCE", "Name": "THOMAS, KARLENE", "Address": "PO Box 307176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12700, "Improved_V": 43600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.931184541100002, "SHAPE_Area": 221.269521486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358196.311999998986721, 257235.241799999028444 ], [ 358192.969899997115135, 257248.935499999672174 ], [ 358209.067400000989437, 257252.44480000063777 ], [ 358212.395099997520447, 257240.439699999988079 ], [ 358196.311999998986721, 257235.241799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302170900", "MAP": null, "PARCEL_NAM": "HILL STREET 1O", "ACRE": null, "LONGITUDE": -64.93817956, "LATITUDE": 18.34465323, "OBJECTID_1": 10058, "PARCEL_NO_": "105302170900", "Tax_Legal_": "HILL STREET 1O CROWN PRINCE QUARTER", "Name": "GORE, ADELLA", "Address": "P.O.BOX 4004", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20000, "Improved_V": 80200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.624920831699995, "SHAPE_Area": 323.73395968599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358044.716300003230572, 257235.056499999016523 ], [ 358026.228699997067451, 257228.150199998170137 ], [ 358018.052299998700619, 257241.382199998944998 ], [ 358035.717399999499321, 257250.181600000709295 ], [ 358044.716300003230572, 257235.056499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302330900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93529137, "LATITUDE": 18.34463689, "OBJECTID_1": 10572, "PARCEL_NO_": "105302330900", "Tax_Legal_": "SKOV GADE 10 QUEENS QTR", "Name": "LAKE, E. BRAITHWAITE, E", "Address": "10 Skov Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20000, "Improved_V": 52800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.9789324945, "SHAPE_Area": 399.987020632 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358330.215700000524521, 257229.793800000101328 ], [ 358322.834799997508526, 257244.298900000751019 ], [ 358341.311599999666214, 257252.471700001507998 ], [ 358350.3429000005126, 257233.547200001776218 ], [ 358331.849899999797344, 257227.274099998176098 ], [ 358330.215700000524521, 257229.793800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302331800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93480845000001, "LATITUDE": 18.34465049, "OBJECTID_1": 10581, "PARCEL_NO_": "105302331800", "Tax_Legal_": "TAMARIND GADE 4 QUEENS QTR", "Name": "FAULKNER, RAYMOND A. & RICHARD E", "Address": "PO Box 7802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9700, "Improved_V": 53200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.873619987400005, "SHAPE_Area": 232.50240338899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358386.668300002813339, 257228.98930000141263 ], [ 358378.439800001680851, 257248.342599999159575 ], [ 358392.111100003123283, 257252.676300000399351 ], [ 358393.010899998247623, 257241.706799998879433 ], [ 358395.5, 257233.494600001722574 ], [ 358386.668300002813339, 257228.98930000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302093700", "MAP": null, "PARCEL_NAM": "MURPHY GADE 8", "ACRE": null, "LONGITUDE": -64.93252414, "LATITUDE": 18.34463566, "OBJECTID_1": 9814, "PARCEL_NO_": "105302093700", "Tax_Legal_": "MURPHY GADE 8 QUEENS QTR", "Name": "ZUHDI, FAIKA J. , RUSHDI & ADLIE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.466603237300006, "SHAPE_Area": 554.53586639599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358639.054899998009205, 257229.788400001823902 ], [ 358616.472800001502037, 257230.236900001764297 ], [ 358617.192800000309944, 257240.375300001353025 ], [ 358617.88400000333786, 257253.890900000929832 ], [ 358642.0878000035882, 257252.400299999862909 ], [ 358642.15429999679327, 257244.590300001204014 ], [ 358639.054899998009205, 257229.788400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301160900", "MAP": "D9-2721-T84", "PARCEL_NAM": "200-5D-1", "ACRE": ".32", "LONGITUDE": -64.94606932000001, "LATITUDE": 18.34456799, "OBJECTID_1": 9553, "PARCEL_NO_": "105301160900", "Tax_Legal_": "ALTONA 200-5D-1 CROWN PRINCE QTR.", "Name": "BROOKS, ELWIN & FRANKLYN", "Address": "PO Box 10905", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96100, "Improved_V": 65200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.30660893199999, "SHAPE_Area": 1202.7699681399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357217.387599997222424, 257234.407000001519918 ], [ 357207.225599996745586, 257196.749099999666214 ], [ 357195.904799997806549, 257200.456199999898672 ], [ 357187.789599999785423, 257206.511500000953674 ], [ 357177.885499998927116, 257233.23930000141263 ], [ 357177.824299998581409, 257240.416000001132488 ], [ 357178.618000000715256, 257241.900100000202656 ], [ 357195.557800002396107, 257241.194400001317263 ], [ 357209.29389999806881, 257237.929299999028444 ], [ 357217.387599997222424, 257234.407000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302170800", "MAP": null, "PARCEL_NAM": "HILL STREET 17", "ACRE": null, "LONGITUDE": -64.93853467, "LATITUDE": 18.3446211, "OBJECTID_1": 10057, "PARCEL_NO_": "105302170800", "Tax_Legal_": "HILL STREET 17 CROWN PRINCE QTR", "Name": "TODMAN, A. & V. & C. & BRADY, JOYCE", "Address": "PO Box 65134", "City": "Virginia Beach", "State": "Virginia", "Zip": 23467, "Country": "United States", "Land_Value": 18000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.954291416499998, "SHAPE_Area": 414.45458726300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357994.773500002920628, 257228.948300000280142 ], [ 357979.525499999523163, 257220.379700001329184 ], [ 357977.005800001323223, 257232.180300001055002 ], [ 358005.894599996507168, 257248.671000000089407 ], [ 358012.431400001049042, 257238.592000000178814 ], [ 357994.773500002920628, 257228.948300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302331700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93488762, "LATITUDE": 18.34462404, "OBJECTID_1": 10580, "PARCEL_NO_": "105302331700", "Tax_Legal_": "TAMARIND GADE 4A KROMP QTR", "Name": "HODGE, IVIN", "Address": "PO BOX 305566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4100, "Improved_V": 13400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.5273132875, "SHAPE_Area": 145.18683250399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358381.047499999403954, 257226.199099998921156 ], [ 358373.637900002300739, 257244.081399999558926 ], [ 358371.992899999022484, 257247.867600001394749 ], [ 358375.203699998557568, 257249.582699999213219 ], [ 358377.61370000243187, 257250.657900001853704 ], [ 358378.439800001680851, 257248.342599999159575 ], [ 358386.668300002813339, 257228.98930000141263 ], [ 358381.047499999403954, 257226.199099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301160500", "MAP": "D9-2721-T84", "PARCEL_NAM": "200-5D-3", "ACRE": ".19", "LONGITUDE": -64.94550113, "LATITUDE": 18.34453849, "OBJECTID_1": 9549, "PARCEL_NO_": "105301160500", "Tax_Legal_": "200-5D-3 ALTONA7WELGUNST CROWN PRINCE", "Name": "WHYTE (LIFE ESTATE), SARAH", "Address": "PO Box 862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 63700, "Improved_V": 303300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.486949182, "SHAPE_Area": 819.46143582299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357242.689000003039837, 257198.728100001811981 ], [ 357246.439999997615814, 257231.689399998635054 ], [ 357262.487099997699261, 257241.108899999409914 ], [ 357277.232699997723103, 257213.998500000685453 ], [ 357266.781199999153614, 257210.324400000274181 ], [ 357253.937799997627735, 257203.464299999177456 ], [ 357242.689000003039837, 257198.728100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301142400", "MAP": "D9-2742-T84", "PARCEL_NAM": "200-8Y", "ACRE": "0.16", "LONGITUDE": -64.94373437, "LATITUDE": 18.34459875, "OBJECTID_1": 9497, "PARCEL_NO_": "105301142400", "Tax_Legal_": "ALTONA & WELGUNST 200-8Y KRONP. QTR.", "Name": "ALEXANDER, R. & ISAAC, A", "Address": "P. O. BOX 5686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42800, "Improved_V": 109300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.993512654, "SHAPE_Area": 729.25359179500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357471.431699998676777, 257229.942299999296665 ], [ 357444.974500000476837, 257211.993900001049042 ], [ 357426.303400002419949, 257226.617600001394749 ], [ 357424.609899997711182, 257236.103000000119209 ], [ 357428.591099999845028, 257242.04619999974966 ], [ 357471.431699998676777, 257229.942299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401270100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93225572, "LATITUDE": 18.34462292, "OBJECTID_1": 11866, "PARCEL_NO_": "105401270100", "Tax_Legal_": "MURPHY GADE 2OB QUEENS QUARTER", "Name": "DENNERY, ELVIRA THOMAS & VALENCIA CONSUELO DENNERY-DAVID", "Address": "12156 Bottle Brush Pl", "City": "Charlotte", "State": "North Carolina", "Zip": 28277, "Country": "United States", "Land_Value": 14700, "Improved_V": 58900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.971316204800004, "SHAPE_Area": 492.15490161600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358657.594700001180172, 257230.573399998247623 ], [ 358644.706299997866154, 257228.990299999713898 ], [ 358646.976000003516674, 257246.529599998146296 ], [ 358646.929200001060963, 257252.017700001597404 ], [ 358668.712300002574921, 257250.718299999833107 ], [ 358669.572499997913837, 257244.392599999904633 ], [ 358669.687600001692772, 257230.883499998599291 ], [ 358657.594700001180172, 257230.573399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301083600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94312997, "LATITUDE": 18.34459939, "OBJECTID_1": 9284, "PARCEL_NO_": "105301083600", "Tax_Legal_": "SOLBERG 72-1 LT. NORTHSIDE QTR.", "Name": "PATRICK TURNBULL (LIFE ESTATE), HELEN", "Address": "PO Box 305418", "City": "ST, THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118000, "Improved_V": 235400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.64632072500001, "SHAPE_Area": 962.35095084500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357535.288699999451637, 257211.888700000941753 ], [ 357492.447999998927116, 257223.992600001394749 ], [ 357477.090300001204014, 257228.299899999052286 ], [ 357480.200499996542931, 257241.835299998521805 ], [ 357510.089800000190735, 257235.535999998450279 ], [ 357527.789099998772144, 257240.32490000128746 ], [ 357535.288699999451637, 257211.888700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401270200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93201121, "LATITUDE": 18.34457486, "OBJECTID_1": 11867, "PARCEL_NO_": "105401270200", "Tax_Legal_": "4 PALM STRAEDE QUEENS QUARTER", "Name": "MADURO, SOPHIA & RICHARDSON, D. & HART E.", "Address": "PO Box 207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58500, "Improved_V": 67300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.315259329, "SHAPE_Area": 823.12271444199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358686.706500001251698, 257220.890299998223782 ], [ 358677.034299999475479, 257220.388999998569489 ], [ 358669.77929999679327, 257220.118500001728535 ], [ 358669.687600001692772, 257230.883499998599291 ], [ 358669.572499997913837, 257244.392599999904633 ], [ 358668.712300002574921, 257250.718299999833107 ], [ 358688.072700001299381, 257249.821299999952316 ], [ 358696.936800003051758, 257250.527100000530481 ], [ 358697.991300001740456, 257221.404899999499321 ], [ 358686.706500001251698, 257220.890299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93172526, "LATITUDE": 18.34458007, "OBJECTID_1": 11435, "PARCEL_NO_": "105401031500", "Tax_Legal_": "PALM STRAEDE 5B QUEENS QUARTER", "Name": "SMITH, RANDOLPH-EST. , SMITH, I & W.", "Address": "PO Box 533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21500, "Improved_V": 6700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.86341745, "SHAPE_Area": 642.107103575 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358711.716499999165535, 257219.406300000846386 ], [ 358702.058799996972084, 257217.216299999505281 ], [ 358701.805200003087521, 257246.978399999439716 ], [ 358725.960400000214577, 257251.186900001019239 ], [ 358728.420699998736382, 257246.35190000012517 ], [ 358729.288199998438358, 257239.181800000369549 ], [ 358723.712300002574921, 257231.114599999040365 ], [ 358716.491499997675419, 257226.833599999547005 ], [ 358711.716499999165535, 257219.406300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184900", "MAP": null, "PARCEL_NAM": "7 LIEFDE GADE .", "ACRE": null, "LONGITUDE": -64.93676528, "LATITUDE": 18.3446314, "OBJECTID_1": 10142, "PARCEL_NO_": "105302184900", "Tax_Legal_": "7 LIEFDE GADE CROWN PRINCE QTR.", "Name": "DESUZA, RANDOLPH & HODGE, ANETTA", "Address": "PO Box 305656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 66500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.251335968399999, "SHAPE_Area": 232.16246906800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358171.2533999979496, 257242.425000000745058 ], [ 358187.347300000488758, 257246.3564000017941 ], [ 358190.682199999690056, 257233.506999999284744 ], [ 358174.599200002849102, 257228.309099998325109 ], [ 358171.2533999979496, 257242.425000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301113500", "MAP": null, "PARCEL_NAM": "200-6P", "ACRE": null, "LONGITUDE": -64.94467113, "LATITUDE": 18.34438657, "OBJECTID_1": 9427, "PARCEL_NO_": "105301113500", "Tax_Legal_": "ALTONA & WELGUNST 200-6P KRONPRINDSENS QTR.", "Name": "SIMON, EDITH", "Address": "3566 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.050667839, "SHAPE_Area": 877.25064132099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357336.365099996328354, 257182.607299998402596 ], [ 357335.612700000405312, 257176.268399998545647 ], [ 357337.329599998891354, 257164.039000000804663 ], [ 357314.695299997925758, 257170.60869999974966 ], [ 357326.6875, 257182.739199999719858 ], [ 357330.44539999961853, 257188.332299999892712 ], [ 357336.242799997329712, 257196.960700001567602 ], [ 357343.851700000464916, 257212.168299999088049 ], [ 357348.487000003457069, 257221.432700000703335 ], [ 357352.89299999922514, 257230.238699998706579 ], [ 357356.884999997913837, 257234.915399998426437 ], [ 357366.528399996459484, 257238.793999999761581 ], [ 357372.975299999117851, 257239.269000001251698 ], [ 357378.633900001645088, 257237.626499999314547 ], [ 357374.631099998950958, 257234.216299999505281 ], [ 357370.642700001597404, 257229.117400001734495 ], [ 357368.236299999058247, 257227.620000001043081 ], [ 357366.632700003683567, 257226.551399998366833 ], [ 357365.054200001060963, 257222.527699999511242 ], [ 357360.245099999010563, 257219.11089999973774 ], [ 357357.050499998033047, 257215.496100001037121 ], [ 357349.833200000226498, 257210.793000001460314 ], [ 357348.238600000739098, 257208.668999999761581 ], [ 357346.670900002121925, 257203.378899998962879 ], [ 357344.278899997472763, 257200.192899998277426 ], [ 357341.928300000727177, 257192.152100000530481 ], [ 357336.334499999880791, 257186.195700000971556 ], [ 357336.365099996328354, 257182.607299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301132700", "MAP": null, "PARCEL_NAM": "200-7-16", "ACRE": null, "LONGITUDE": -64.94430483, "LATITUDE": 18.34446978, "OBJECTID_1": 9474, "PARCEL_NO_": "105301132700", "Tax_Legal_": "ALTONA & WELGUNST 200-7-16 CROWN PRINCE QTR", "Name": "SIMON, EDITH", "Address": "3566 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34900, "Improved_V": 226300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.65057524700001, "SHAPE_Area": 912.73767295100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357402.993199996650219, 257201.102000001817942 ], [ 357378.925800003111362, 257190.1239 ], [ 357378.210600003600121, 257192.660100001841784 ], [ 357374.886399999260902, 257204.243099998682737 ], [ 357368.236299999058247, 257227.620000001043081 ], [ 357370.642700001597404, 257229.117400001734495 ], [ 357374.631099998950958, 257234.216299999505281 ], [ 357378.633900001645088, 257237.626499999314547 ], [ 357385.129299998283386, 257232.402300000190735 ], [ 357390.829300001263618, 257225.905099999159575 ], [ 357402.310099996626377, 257203.412099998444319 ], [ 357402.993199996650219, 257201.102000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184400", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 6", "ACRE": "0.09", "LONGITUDE": -64.9379119, "LATITUDE": 18.34456608, "OBJECTID_1": 10136, "PARCEL_NO_": "105302184400", "Tax_Legal_": "LEVKOJ STRAEDE 6 CROWN PRINCE QUARTER", "Name": "JAMES SYDNEY & R", "Address": "PO Box 11543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43100, "Improved_V": 53000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.642656162500003, "SHAPE_Area": 437.19934729300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358073.646700002253056, 257222.311299998313189 ], [ 358056.028800003230572, 257216.191399998962879 ], [ 358052.07379999756813, 257223.295499999076128 ], [ 358044.716300003230572, 257235.056499999016523 ], [ 358063.200400002300739, 257242.385000001639128 ], [ 358065.631899997591972, 257240.927200000733137 ], [ 358069.748000003397465, 257231.039500001817942 ], [ 358073.646700002253056, 257222.311299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302331000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93542971, "LATITUDE": 18.34459524, "OBJECTID_1": 10573, "PARCEL_NO_": "105302331000", "Tax_Legal_": "SKOV GADE 1 QUEEN S QUARTER", "Name": "MITCHEL, FLORISA", "Address": "PO Box 7581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6800, "Improved_V": 52600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.263515240399997, "SHAPE_Area": 166.88924058200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358330.215700000524521, 257229.793800000101328 ], [ 358321.387599997222424, 257224.866399999707937 ], [ 358317.285899996757507, 257233.065499998629093 ], [ 358313.997699998319149, 257240.426899999380112 ], [ 358322.834799997508526, 257244.298900000751019 ], [ 358330.215700000524521, 257229.793800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302331600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93495392, "LATITUDE": 18.34457233, "OBJECTID_1": 10579, "PARCEL_NO_": "105302331600", "Tax_Legal_": "TAMARIND GADE 3 1&2 QUEENS QTR.", "Name": "WILLIAMS, MICHELLE A", "Address": "136-07 218th St", "City": "Laurelton", "State": "New York", "Zip": 11413, "Country": "United States", "Land_Value": 14100, "Improved_V": 33500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.4185517891, "SHAPE_Area": 216.92915881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358370.608599998056889, 257221.047400001436472 ], [ 358363.998099997639656, 257239.780600000172853 ], [ 358373.637900002300739, 257244.081399999558926 ], [ 358381.047499999403954, 257226.199099998921156 ], [ 358370.608599998056889, 257221.047400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301160700", "MAP": "D9-2721-T84", "PARCEL_NAM": "200-5D-2", "ACRE": ".24", "LONGITUDE": -64.94578515000001, "LATITUDE": 18.3444781, "OBJECTID_1": 9551, "PARCEL_NO_": "105301160700", "Tax_Legal_": "200-5D-2 ALTONA&WELGUNST CROWN PRINCE QTR.", "Name": "THOMAS, WILLY & ROSALIND (LIFE ESTATE)", "Address": "PO Box 9037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79700, "Improved_V": 365800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.805731947, "SHAPE_Area": 1138.85773539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357217.387599997222424, 257234.407000001519918 ], [ 357227.909199997782707, 257229.848999999463558 ], [ 357237.592100001871586, 257229.08390000090003 ], [ 357246.439999997615814, 257231.689399998635054 ], [ 357242.689000003039837, 257198.728100001811981 ], [ 357234.652800001204014, 257195.495999999344349 ], [ 357224.982400000095367, 257194.783500000834465 ], [ 357218.70830000191927, 257195.478100001811981 ], [ 357207.225599996745586, 257196.749099999666214 ], [ 357217.387599997222424, 257234.407000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302181400", "MAP": null, "PARCEL_NAM": "LERKE GADE 5", "ACRE": null, "LONGITUDE": -64.93730989, "LATITUDE": 18.34462592, "OBJECTID_1": 10107, "PARCEL_NO_": "105302181400", "Tax_Legal_": "LERKE GADE 5 CROWN PRINCE QUARTER", "Name": "EDWARDS, AUGUSTUS", "Address": "C/O GUINUVEVE FARRELL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12700, "Improved_V": 27900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.705917765700001, "SHAPE_Area": 148.07942577399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358114.899700000882149, 257231.620200000703335 ], [ 358115.626900002360344, 257240.914200000464916 ], [ 358130.943199999630451, 257241.461800001561642 ], [ 358131.826800003647804, 257232.392000000923872 ], [ 358114.899700000882149, 257231.620200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302181300", "MAP": null, "PARCEL_NAM": "SAVAN STREET 2", "ACRE": null, "LONGITUDE": -64.93750163, "LATITUDE": 18.34462224, "OBJECTID_1": 10106, "PARCEL_NO_": "105302181300", "Tax_Legal_": "SAVAN STREET 2 CROWN PRINCE QUARTER", "Name": "SHULTERBRANDT, ECILMA E", "Address": "PO Box 308322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13600, "Improved_V": 15400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.431580609099996, "SHAPE_Area": 224.333404747 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358114.899700000882149, 257231.620200000703335 ], [ 358101.195900000631809, 257231.085799999535084 ], [ 358090.706699997186661, 257231.844399999827147 ], [ 358089.832099996507168, 257239.858800001442432 ], [ 358115.626900002360344, 257240.914200000464916 ], [ 358114.899700000882149, 257231.620200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302181200", "MAP": null, "PARCEL_NAM": "SAVAN STREET 4", "ACRE": null, "LONGITUDE": -64.93768973, "LATITUDE": 18.34462321, "OBJECTID_1": 10105, "PARCEL_NO_": "105302181200", "Tax_Legal_": "SAVAN STREET 4 CROWN PRINCE QUARTER", "Name": "EDWARDS, JOSEPH", "Address": "9A Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.250072268399997, "SHAPE_Area": 106.46456907300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358090.706699997186661, 257231.844399999827147 ], [ 358076.1841000020504, 257232.780999999493361 ], [ 358074.542700000107288, 257236.144999999552965 ], [ 358076.934600003063679, 257239.331000000238419 ], [ 358089.832099996507168, 257239.858800001442432 ], [ 358090.706699997186661, 257231.844399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302062800", "MAP": null, "PARCEL_NAM": "11A NORDSIDVEJ", "ACRE": "1,527 sq ft", "LONGITUDE": -64.93434023, "LATITUDE": 18.34461376, "OBJECTID_1": 9709, "PARCEL_NO_": "105302062800", "Tax_Legal_": "NORDSIDVEJ 11A QUEENS QTR", "Name": "MYERS, DAVID", "Address": "BOX 3897", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8700, "Improved_V": 48000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.714762562600001, "SHAPE_Area": 91.400966551899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358431.721100002527237, 257241.179299999028444 ], [ 358442.190600000321865, 257242.742600001394749 ], [ 358443.06700000166893, 257234.517200000584126 ], [ 358431.793099999427795, 257232.736099999397993 ], [ 358431.721100002527237, 257241.179299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302171300", "MAP": null, "PARCEL_NAM": "HILL STREET 15 .", "ACRE": null, "LONGITUDE": -64.93839084, "LATITUDE": 18.34452072, "OBJECTID_1": 10060, "PARCEL_NO_": "105302171300", "Tax_Legal_": "HILL STREET 15 KRONPRINDSENS QTR.", "Name": "JOSEPH MORRIS, SONIA", "Address": "396 Strasburg Drive", "City": "Simpsonville", "State": "South Carolina", "Zip": 296814562, "Country": "United States", "Land_Value": 22700, "Improved_V": 11200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.367545789299996, "SHAPE_Area": 475.38950405700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358003.808399997651577, 257209.601599998772144 ], [ 357994.773500002920628, 257228.948300000280142 ], [ 358012.431400001049042, 257238.592000000178814 ], [ 358024.691600002348423, 257219.271699998527765 ], [ 358003.808399997651577, 257209.601599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302331100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93554561000001, "LATITUDE": 18.34458984, "OBJECTID_1": 10574, "PARCEL_NO_": "105302331100", "Tax_Legal_": "VESTER GADE 21B QUEENS QTR", "Name": "GRIFFITH, ELIZABETH", "Address": "603 2nd Ave S", "City": "Jacksonville Beach", "State": "Florida", "Zip": 32250, "Country": "United States", "Land_Value": 7000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.008585068000002, "SHAPE_Area": 104.677625698 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358313.997699998319149, 257240.426899999380112 ], [ 358317.285899996757507, 257233.065499998629093 ], [ 358305.237999998033047, 257227.478500001132488 ], [ 358302.750699996948242, 257235.479699999094009 ], [ 358313.997699998319149, 257240.426899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302181700", "MAP": null, "PARCEL_NAM": "LERKE GADE 1", "ACRE": null, "LONGITUDE": -64.93710767, "LATITUDE": 18.3445818, "OBJECTID_1": 10110, "PARCEL_NO_": "105302181700", "Tax_Legal_": "LERKE GADE 1 CROWN PRINCE QTR", "Name": "MARCHENA, ANTONIO", "Address": "5450 Chapparrel Dr", "City": "Orlando", "State": "Florida", "Zip": 32839, "Country": "United States", "Land_Value": 10700, "Improved_V": 25700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.259821627199997, "SHAPE_Area": 197.61062421899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358152.047600001096725, 257225.169199999421835 ], [ 358137.535800002515316, 257224.839400000870228 ], [ 358137.41889999806881, 257238.559500001370907 ], [ 358151.932499997317791, 257238.678300000727177 ], [ 358152.047600001096725, 257225.169199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302181800", "MAP": null, "PARCEL_NAM": "LIEFDE GADE 1", "ACRE": null, "LONGITUDE": -64.93695715, "LATITUDE": 18.34458108, "OBJECTID_1": 10111, "PARCEL_NO_": "105302181800", "Tax_Legal_": "LIEFDE GADE 1 CROWN PRINCE", "Name": "HUGHES, LYRIS & STUDLEY", "Address": "PO Box 6623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10800, "Improved_V": 100800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.495525091700003, "SHAPE_Area": 229.69508507500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358162.527800001204014, 257225.466099999845028 ], [ 358152.047600001096725, 257225.169199999421835 ], [ 358151.932499997317791, 257238.678300000727177 ], [ 358168.060500003397465, 257238.599199999123812 ], [ 358170.590999998152256, 257225.5320999994874 ], [ 358162.527800001204014, 257225.466099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302251000", "MAP": null, "PARCEL_NAM": "SLAGTER 2", "ACRE": null, "LONGITUDE": -64.93636648, "LATITUDE": 18.34453656, "OBJECTID_1": 10352, "PARCEL_NO_": "105302251000", "Tax_Legal_": "SLAGTER 2 CROWN PRINCE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.691893398000005, "SHAPE_Area": 293.35215881599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358228.701200000941753, 257219.463799998164177 ], [ 358216.622699998319149, 257217.46510000154376 ], [ 358214.045500002801418, 257236.020199999213219 ], [ 358223.694300003349781, 257239.265599999576807 ], [ 358235.947200000286102, 257220.789700001478195 ], [ 358228.701200000941753, 257219.463799998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302331500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93506701, "LATITUDE": 18.34452332, "OBJECTID_1": 10578, "PARCEL_NO_": "105302331500", "Tax_Legal_": "TAMARIND GADE 2 QUEEN S QUARTER", "Name": "WILLIAMS, MICHELE A", "Address": "136-07 218th St", "City": "Laurelton", "State": "New York", "Zip": 11413, "Country": "United States", "Land_Value": 16800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.621040606500003, "SHAPE_Area": 303.39486771999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358356.958800002932549, 257214.180700000375509 ], [ 358350.3429000005126, 257233.547200001776218 ], [ 358363.998099997639656, 257239.780600000172853 ], [ 358370.608599998056889, 257221.047400001436472 ], [ 358356.958800002932549, 257214.180700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302174400", "MAP": null, "PARCEL_NAM": "HILL STREET 8", "ACRE": null, "LONGITUDE": -64.9381061, "LATITUDE": 18.34453238, "OBJECTID_1": 10090, "PARCEL_NO_": "105302174400", "Tax_Legal_": "HILL STREET 8 CROWN PRINCE QUARTER", "Name": "RIVERA, CATHERINE", "Address": "P.O. BOX 5035", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22200, "Improved_V": 28400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.920842701500007, "SHAPE_Area": 277.09633675200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358052.07379999756813, 257223.295499999076128 ], [ 358034.399700000882149, 257215.551500000059605 ], [ 358026.228699997067451, 257228.150199998170137 ], [ 358044.716300003230572, 257235.056499999016523 ], [ 358052.07379999756813, 257223.295499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302250900", "MAP": null, "PARCEL_NAM": "SLAGTER 1", "ACRE": null, "LONGITUDE": -64.9365073, "LATITUDE": 18.34451604, "OBJECTID_1": 10351, "PARCEL_NO_": "105302250900", "Tax_Legal_": "SLAGTER 1 CROWN PRINCE", "Name": "DAVID, GLENBART & ESANTS", "Address": "12156 Bottlebrush Pl", "City": "Charlotte", "State": "North Carolina", "Zip": 28277, "Country": "United States", "Land_Value": 17000, "Improved_V": 87700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.247966468200005, "SHAPE_Area": 262.62906445 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358210.181199997663498, 257216.356899999082088 ], [ 358202.128899998962879, 257215.024399999529123 ], [ 358199.569700002670288, 257231.468800000846386 ], [ 358214.045500002801418, 257236.020199999213219 ], [ 358216.622699998319149, 257217.46510000154376 ], [ 358210.181199997663498, 257216.356899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302120900", "MAP": null, "PARCEL_NAM": "29", "ACRE": null, "LONGITUDE": -64.94109271000001, "LATITUDE": 18.34444696, "OBJECTID_1": 9848, "PARCEL_NO_": "105302120900", "Tax_Legal_": "SOLBERG 29 LITTLE NORTHSIDE QTR", "Name": "JAMES BEVERHOUDT, CLEONE", "Address": "PO Box 304913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45000, "Improved_V": 68200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.708459851, "SHAPE_Area": 586.70603829200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357732.678800001740456, 257231.86939999833703 ], [ 357732.174599997699261, 257196.401500001549721 ], [ 357713.611400000751019, 257198.360500000417233 ], [ 357714.97410000115633, 257227.713700000196695 ], [ 357732.678800001740456, 257231.86939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302121000", "MAP": null, "PARCEL_NAM": "28", "ACRE": null, "LONGITUDE": -64.94092787, "LATITUDE": 18.34443362, "OBJECTID_1": 9849, "PARCEL_NO_": "105302121000", "Tax_Legal_": "SOLBERG 28 LITTLE NORTHSIDE QTR", "Name": "JACOBS, CHARLESWELL", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43700, "Improved_V": 75300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.547852105, "SHAPE_Area": 585.93813285600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357750.476999998092651, 257225.0489999987185 ], [ 357749.927799999713898, 257194.8581000007689 ], [ 357738.630500003695488, 257195.821100000292063 ], [ 357732.174599997699261, 257196.401500001549721 ], [ 357732.678800001740456, 257231.86939999833703 ], [ 357750.476999998092651, 257225.0489999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301130900", "MAP": "G9-3006-T80", "PARCEL_NAM": "200-7-15", "ACRE": "0.24", "LONGITUDE": -64.94453751, "LATITUDE": 18.34433852, "OBJECTID_1": 9456, "PARCEL_NO_": "105301130900", "Tax_Legal_": "ALTONA & WELGUNST 200-7-15 CROWN PRINCE QTR", "Name": "CONNOR, JAMES & CHRISTIANA", "Address": "200-7-15 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49900, "Improved_V": 157300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.83766793699999, "SHAPE_Area": 1119.46888354 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357378.925800003111362, 257190.1239 ], [ 357366.212999999523163, 257181.162900000810623 ], [ 357363.801299996674061, 257180.298799999058247 ], [ 357359.764300003647804, 257180.899000000208616 ], [ 357358.599500000476837, 257183.244300000369549 ], [ 357352.124799996614456, 257182.408900000154972 ], [ 357353.319200001657009, 257180.212999999523163 ], [ 357336.365099996328354, 257182.607299998402596 ], [ 357336.334499999880791, 257186.195700000971556 ], [ 357341.928300000727177, 257192.152100000530481 ], [ 357344.278899997472763, 257200.192899998277426 ], [ 357346.670900002121925, 257203.378899998962879 ], [ 357348.238600000739098, 257208.668999999761581 ], [ 357349.833200000226498, 257210.793000001460314 ], [ 357357.050499998033047, 257215.496100001037121 ], [ 357360.245099999010563, 257219.11089999973774 ], [ 357365.054200001060963, 257222.527699999511242 ], [ 357366.632700003683567, 257226.551399998366833 ], [ 357368.236299999058247, 257227.620000001043081 ], [ 357374.886399999260902, 257204.243099998682737 ], [ 357378.210600003600121, 257192.660100001841784 ], [ 357378.925800003111362, 257190.1239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302181900", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 17", "ACRE": null, "LONGITUDE": -64.93766972, "LATITUDE": 18.34452025, "OBJECTID_1": 10112, "PARCEL_NO_": "105302181900", "Tax_Legal_": "LEVKOJ STRAEDE 17 CROWN PRINCE QUARTER", "Name": "MALONE, JERRY B. (Trustee)", "Address": "PO BOX 308368", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11200, "Improved_V": 24100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.784634263000001, "SHAPE_Area": 191.14385665899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358076.1841000020504, 257232.780999999493361 ], [ 358090.706699997186661, 257231.844399999827147 ], [ 358091.660499997437, 257214.542500000447035 ], [ 358083.588299997150898, 257215.531899999827147 ], [ 358076.1841000020504, 257232.780999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302320800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93578079, "LATITUDE": 18.34447747, "OBJECTID_1": 10548, "PARCEL_NO_": "105302320800", "Tax_Legal_": "VESTER GADE 31 QUEENS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.778544356400005, "SHAPE_Area": 360.15992822599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358299.647699996829033, 257221.099899999797344 ], [ 358273.944600000977516, 257209.279399998486042 ], [ 358269.82490000128746, 257219.589299999177456 ], [ 358280.254900000989437, 257225.796399999409914 ], [ 358294.694799996912479, 257234.569400001317263 ], [ 358298.823399998247623, 257223.204100001603365 ], [ 358299.647699996829033, 257221.099899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302350100", "MAP": "D9-5163-T91", "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.93435454, "LATITUDE": 18.34412713, "OBJECTID_1": 10620, "PARCEL_NO_": "105302350100", "Tax_Legal_": "CATHERINEBERG 1 & NORDSJ. REM 9 QUEEN QUARTER", "Name": "HODGE, JOSEPH & ZULMA", "Address": "P.O. BOX 5048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 288700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.24950646500002, "SHAPE_Area": 3383.1261034700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358451.121200002729893, 257235.638599999248981 ], [ 358455.841399997472763, 257154.828400000929832 ], [ 358450.270999997854233, 257146.127900000661612 ], [ 358432.769500002264977, 257118.120299998670816 ], [ 358427.055200003087521, 257126.306200001388788 ], [ 358422.921099998056889, 257138.304699998348951 ], [ 358422.035700000822544, 257147.58559999987483 ], [ 358423.461300000548363, 257169.550999999046326 ], [ 358422.518299996852875, 257185.586399998515844 ], [ 358420.837300002574921, 257193.594200000166893 ], [ 358416.706900000572205, 257205.170499999076128 ], [ 358407.671999998390675, 257224.517200000584126 ], [ 358431.816399998962879, 257229.99210000038147 ], [ 358431.793099999427795, 257232.736099999397993 ], [ 358443.06700000166893, 257234.517200000584126 ], [ 358451.121200002729893, 257235.638599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301154500", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-29", "ACRE": ".22", "LONGITUDE": -64.94678513, "LATITUDE": 18.34439115, "OBJECTID_1": 9543, "PARCEL_NO_": "105301154500", "Tax_Legal_": "ALTONA & WELGUNST 220-29 SOUTHSIDE QTR.", "Name": "CALLENDER,TRUSTEE, Dr.WILBUR KENNARD", "Address": "PO Box 11250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.31476143899999, "SHAPE_Area": 1164.3893185 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357114.256899997591972, 257224.48589999973774 ], [ 357142.555200003087521, 257215.640399999916553 ], [ 357133.140100002288818, 257184.954799998551607 ], [ 357130.746399998664856, 257181.979899998754263 ], [ 357125.913900002837181, 257181.307100001722574 ], [ 357112.982299998402596, 257184.789799999445677 ], [ 357108.115699999034405, 257188.127500001341105 ], [ 357104.046400003135204, 257192.527199998497963 ], [ 357101.569899998605251, 257199.261900000274181 ], [ 357109.512500002980232, 257213.470199998468161 ], [ 357111.098200000822544, 257216.649500001221895 ], [ 357112.692800000309944, 257218.773499999195337 ], [ 357114.256899997591972, 257224.48589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302182200", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 8", "ACRE": null, "LONGITUDE": -64.93730783, "LATITUDE": 18.34448875, "OBJECTID_1": 10115, "PARCEL_NO_": "105302182200", "Tax_Legal_": "LEVKOJ STRAEDE 8 CROWN PRINCE QUARTER", "Name": "BRUNN, BEVERLY & OTHERS", "Address": "3017 - 45th St", "City": "Astoria", "State": "New York", "Zip": 11103, "Country": "United States", "Land_Value": 38800, "Improved_V": 2700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.648373796800001, "SHAPE_Area": 372.58451366600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358114.260600000619888, 257211.983199998736382 ], [ 358114.899700000882149, 257231.620200000703335 ], [ 358131.826800003647804, 257232.392000000923872 ], [ 358132.82379999756813, 257210.02419999986887 ], [ 358114.260600000619888, 257211.983199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302182000", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 16", "ACRE": null, "LONGITUDE": -64.93756499, "LATITUDE": 18.34450313, "OBJECTID_1": 10113, "PARCEL_NO_": "105302182000", "Tax_Legal_": "LEVKOJ STRAEDE 16 CROWN PRINCE QUARTER", "Name": "MATTHEW, PAULINE", "Address": "2416 Levkoi Straede", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8600, "Improved_V": 54200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.153625261599998, "SHAPE_Area": 182.80176097500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358101.195900000631809, 257231.085799999535084 ], [ 358102.153300002217293, 257213.361800000071526 ], [ 358091.660499997437, 257214.542500000447035 ], [ 358090.706699997186661, 257231.844399999827147 ], [ 358101.195900000631809, 257231.085799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302182100", "MAP": null, "PARCEL_NAM": "LEVKOJ STAEDE 15", "ACRE": null, "LONGITUDE": -64.9374535, "LATITUDE": 18.3444977, "OBJECTID_1": 10114, "PARCEL_NO_": "105302182100", "Tax_Legal_": "LEVKOJ STAEDE 15 CROWN PRINCE QUARTER", "Name": "MARCHENA, ANTONIO", "Address": "5450 Chapparrel Dr", "City": "Orlando", "State": "Florida", "Zip": 32839, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.296986813300002, "SHAPE_Area": 241.014949556 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358114.260600000619888, 257211.983199998736382 ], [ 358102.153300002217293, 257213.361800000071526 ], [ 358101.195900000631809, 257231.085799999535084 ], [ 358114.899700000882149, 257231.620200000703335 ], [ 358114.260600000619888, 257211.983199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302331400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93525355, "LATITUDE": 18.34446477, "OBJECTID_1": 10577, "PARCEL_NO_": "105302331400", "Tax_Legal_": "1 TAMARIND GADE QUEENS QUARTER", "Name": "MEADE BROOKS (LIFE ESTATE), CLEOPATRA", "Address": "2206 Tamarind Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24400, "Improved_V": 102100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.060032795, "SHAPE_Area": 550.61993248600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358356.958800002932549, 257214.180700000375509 ], [ 358340.096400000154972, 257205.810100000351667 ], [ 358333.541599996387959, 257217.999800000339746 ], [ 358326.318999998271465, 257213.929900001734495 ], [ 358321.387599997222424, 257224.866399999707937 ], [ 358330.215700000524521, 257229.793800000101328 ], [ 358331.849899999797344, 257227.274099998176098 ], [ 358350.3429000005126, 257233.547200001776218 ], [ 358356.958800002932549, 257214.180700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184400", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 5", "ACRE": "0.08", "LONGITUDE": -64.93783417, "LATITUDE": 18.34442133, "OBJECTID_1": 10136, "PARCEL_NO_": "105302184400", "Tax_Legal_": "LEVKOJ STRAEDE 6 CROWN PRINCE QUARTER", "Name": "JAMES SYDNEY & R", "Address": "PO Box 11543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43100, "Improved_V": 53000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.368606982300001, "SHAPE_Area": 239.03392475499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358056.028800003230572, 257216.191399998962879 ], [ 358073.646700002253056, 257222.311299998313189 ], [ 358079.612499997019768, 257208.95549999922514 ], [ 358061.900600001215935, 257205.644099999219179 ], [ 358056.028800003230572, 257216.191399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302331200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93551464, "LATITUDE": 18.34451762, "OBJECTID_1": 10575, "PARCEL_NO_": "105302331200", "Tax_Legal_": "VESTER GADE 21A QUEEN S QUARTER", "Name": "HILL, OSWALD", "Address": "150 Maida Ave", "City": "Deer Park", "State": "New York", "Zip": 11729, "Country": "United States", "Land_Value": 7000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.590211787100003, "SHAPE_Area": 124.506866557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358321.387599997222424, 257224.866399999707937 ], [ 358308.535099998116493, 257219.061700001358986 ], [ 358305.237999998033047, 257227.478500001132488 ], [ 358317.285899996757507, 257233.065499998629093 ], [ 358321.387599997222424, 257224.866399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302250800", "MAP": null, "PARCEL_NAM": "LEVKOI 12", "ACRE": null, "LONGITUDE": -64.93662812, "LATITUDE": 18.34443692, "OBJECTID_1": 10350, "PARCEL_NO_": "105302250800", "Tax_Legal_": "LEVKOI 12 CROWN PRINCE", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.9990529544, "SHAPE_Area": 348.58595656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358202.128899998962879, 257215.024399999529123 ], [ 358203.849399998784065, 257202.372900001704693 ], [ 358190.12950000166893, 257203.738299999386072 ], [ 358187.505500003695488, 257227.781500000506639 ], [ 358199.569700002670288, 257231.468800000846386 ], [ 358202.128899998962879, 257215.024399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302120800", "MAP": null, "PARCEL_NAM": "22", "ACRE": "3,914 sq ft", "LONGITUDE": -64.93988479, "LATITUDE": 18.34447967, "OBJECTID_1": 9847, "PARCEL_NO_": "105302120800", "Tax_Legal_": "SOLBERG 22 LITTLE NORTHSIDE QTR", "Name": "CILLS, LA TRESE", "Address": "956 Argonne Dr", "City": "Baltimore", "State": "Maryland", "Zip": 21218, "Country": "United States", "Land_Value": 26400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.569543723899997, "SHAPE_Area": 438.35397857700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357830.2804000005126, 257228.235199999064207 ], [ 357864.989600002765656, 257224.086300000548363 ], [ 357864.294699996709824, 257210.992899999022484 ], [ 357863.515399999916553, 257207.820099998265505 ], [ 357849.963200002908707, 257207.392599999904633 ], [ 357846.557700000703335, 257210.636599998921156 ], [ 357830.2804000005126, 257228.235199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302171400", "MAP": null, "PARCEL_NAM": "HILL STREET 13", "ACRE": null, "LONGITUDE": -64.93855991, "LATITUDE": 18.34441426, "OBJECTID_1": 10061, "PARCEL_NO_": "105302171400", "Tax_Legal_": "HILL STREET 13 CROWN PRINCE QUARTER", "Name": "TODMAN, A. & V. & C. & BRADY, J", "Address": "PO Box 65134", "City": "Virginia Beach", "State": "Virginia", "Zip": 23467, "Country": "United States", "Land_Value": 17200, "Improved_V": 139000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.037273536599997, "SHAPE_Area": 513.43215749499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358004.634499996900558, 257207.286299999803305 ], [ 358005.455200001597404, 257205.604299999773502 ], [ 357984.577299997210503, 257195.300900001078844 ], [ 357979.525499999523163, 257220.379700001329184 ], [ 357994.773500002920628, 257228.948300000280142 ], [ 358003.808399997651577, 257209.601599998772144 ], [ 358004.634499996900558, 257207.286299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301141900", "MAP": null, "PARCEL_NAM": "200-8T", "ACRE": null, "LONGITUDE": -64.94305473, "LATITUDE": 18.34436552, "OBJECTID_1": 9492, "PARCEL_NO_": "105301141900", "Tax_Legal_": "ALTONA & WELGUNST 200-8T CROWN PRINCE QTR", "Name": "ST CATHERINE, ELIZABETH & FRA", "Address": "200 8T Est Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.81347535200001, "SHAPE_Area": 1353.18588426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357519.884400002658367, 257186.095600001513958 ], [ 357518.696000002324581, 257171.856199998408556 ], [ 357497.467500001192093, 257202.713199999183416 ], [ 357495.028800003230572, 257205.015299998223782 ], [ 357493.367600001394749, 257210.701200000941753 ], [ 357491.742399998009205, 257212.165600001811981 ], [ 357488.509999997913837, 257212.983500000089407 ], [ 357492.447999998927116, 257223.992600001394749 ], [ 357535.288699999451637, 257211.888700000941753 ], [ 357540.13910000026226, 257210.450699999928474 ], [ 357543.486699998378754, 257196.123799998313189 ], [ 357543.946999996900558, 257194.32209999859333 ], [ 357519.884400002658367, 257186.095600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302121100", "MAP": null, "PARCEL_NAM": "27", "ACRE": null, "LONGITUDE": -64.94076099, "LATITUDE": 18.34439021, "OBJECTID_1": 9850, "PARCEL_NO_": "105302121100", "Tax_Legal_": "SOLBERG 27 LITTLE NORTHSIDE QTR", "Name": "MORGAN, MERLE K. & RICHARD COMISSION", "Address": "PO Box 185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37200, "Improved_V": 99000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.012548577700002, "SHAPE_Area": 479.47527287999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357767.47070000320673, 257218.010899998247623 ], [ 357768.487400002777576, 257193.321199998259544 ], [ 357756.383699998259544, 257194.27760000154376 ], [ 357749.927799999713898, 257194.8581000007689 ], [ 357750.476999998092651, 257225.0489999987185 ], [ 357761.813900001347065, 257219.442200001329184 ], [ 357767.47070000320673, 257218.010899998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302250700", "MAP": null, "PARCEL_NAM": "LEVKOI STRAEDE 11", "ACRE": null, "LONGITUDE": -64.93674515, "LATITUDE": 18.34443004, "OBJECTID_1": 10349, "PARCEL_NO_": "105302250700", "Tax_Legal_": "LEVKOI STRAEDE 11 CROWN PRINCE QTR", "Name": "EDWARDS, ETTA & PERCIVAL, RAFORD", "Address": "2411 Levkoj Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 27500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.493249759500003, "SHAPE_Area": 255.31088242600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358187.505500003695488, 257227.781500000506639 ], [ 358190.12950000166893, 257203.738299999386072 ], [ 358178.830300003290176, 257204.912399999797344 ], [ 358175.443199999630451, 257223.883000001311302 ], [ 358187.505500003695488, 257227.781500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401270400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93219852, "LATITUDE": 18.34448454, "OBJECTID_1": 11869, "PARCEL_NO_": "105401270400", "Tax_Legal_": "MURPHY GADE 20C QUEENS QTR", "Name": "VANTERPOOL, CYNTHIA & OTHRS", "Address": "PO Box 307377", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10500, "Improved_V": 52600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.941092336099999, "SHAPE_Area": 131.48517975799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358669.77929999679327, 257220.118500001728535 ], [ 358657.688199996948242, 257219.597300000488758 ], [ 358657.594700001180172, 257230.573399998247623 ], [ 358669.687600001692772, 257230.883499998599291 ], [ 358669.77929999679327, 257220.118500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302400100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93254596, "LATITUDE": 18.34446514, "OBJECTID_1": 10686, "PARCEL_NO_": "105302400100", "Tax_Legal_": "MURPHY GADE 9 QUEENS QUARTER", "Name": "ZUHDI, FAIKA J. , RUSHDI & ADLIE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18400, "Improved_V": 97300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.609856875000006, "SHAPE_Area": 327.05286038200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358638.361900001764297, 257216.483899999409914 ], [ 358614.989600002765656, 257215.026000000536442 ], [ 358616.472800001502037, 257230.236900001764297 ], [ 358639.054899998009205, 257229.788400001823902 ], [ 358638.361900001764297, 257216.483899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401270300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93231946, "LATITUDE": 18.34447736, "OBJECTID_1": 11868, "PARCEL_NO_": "105401270300", "Tax_Legal_": "MURPHY GADE 20A QUEENS QTR", "Name": "VANTERPOOL, CYNTHIA & OTHRS", "Address": "PO Box 307377", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.748820883599997, "SHAPE_Area": 144.079982422 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358653.658500000834465, 257219.353300001472235 ], [ 358643.179999999701977, 257218.845300000160933 ], [ 358644.706299997866154, 257228.990299999713898 ], [ 358657.594700001180172, 257230.573399998247623 ], [ 358657.688199996948242, 257219.597300000488758 ], [ 358653.658500000834465, 257219.353300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302332200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93476849, "LATITUDE": 18.34442742, "OBJECTID_1": 10585, "PARCEL_NO_": "105302332200", "Tax_Legal_": "TAMARIND GADE 5B CROWN PRINCE QTR", "Name": "HODGE, IRVINE", "Address": "PO Box 6043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 98600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.146823528599995, "SHAPE_Area": 298.713962106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358386.869699999690056, 257205.348499998450279 ], [ 358379.499600000679493, 257218.587099999189377 ], [ 358397.967500001192093, 257227.815200001001358 ], [ 358404.524099998176098, 257215.41440000012517 ], [ 358386.869699999690056, 257205.348499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302121400", "MAP": null, "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.94020219, "LATITUDE": 18.34445215, "OBJECTID_1": 9853, "PARCEL_NO_": "105302121400", "Tax_Legal_": "24 SOLBERG LITTLE NORTHSIDE QUARTER", "Name": "PENN, CECIL EVANS & RITA IVANIA (TRUSTEES)", "Address": "PO Box 302601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26600, "Improved_V": 85000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.538565494799997, "SHAPE_Area": 389.60451659900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357830.327100001275539, 257222.74720000103116 ], [ 357828.867299996316433, 257204.792300000786781 ], [ 357804.638400003314018, 257209.238000001758337 ], [ 357804.526900000870228, 257222.32490000128746 ], [ 357830.327100001275539, 257222.74720000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302121500", "MAP": null, "PARCEL_NAM": "23", "ACRE": null, "LONGITUDE": -64.94003434, "LATITUDE": 18.3443371, "OBJECTID_1": 9854, "PARCEL_NO_": "105302121500", "Tax_Legal_": "SOLBERG 23 LITTLE NORTHSIDE QTR", "Name": "GEORGE, BEATRICE F. & ALBERT", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31800, "Improved_V": 178700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.980288388600002, "SHAPE_Area": 415.98729285600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357844.972000002861023, 257207.45719999819994 ], [ 357841.915799997746944, 257187.589400000870228 ], [ 357827.391400001943111, 257188.737100001424551 ], [ 357828.867299996316433, 257204.792300000786781 ], [ 357830.327100001275539, 257222.74720000103116 ], [ 357844.972000002861023, 257207.45719999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302182400", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 1O&10A", "ACRE": null, "LONGITUDE": -64.93697855000001, "LATITUDE": 18.34443754, "OBJECTID_1": 10117, "PARCEL_NO_": "105302182400", "Tax_Legal_": "LEVKOJ STRAEDE 1O&10A CROWN PRINCE QUARTER", "Name": "MARTIN, HENRY", "Address": "PO Box 304186", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14200, "Improved_V": 72600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.069449344600002, "SHAPE_Area": 210.97120406900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358162.527800001204014, 257225.466099999845028 ], [ 358165.914899997413158, 257206.495400000363588 ], [ 358153.001299999654293, 257207.867400001734495 ], [ 358152.047600001096725, 257225.169199999421835 ], [ 358162.527800001204014, 257225.466099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302182400", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 1O&10A", "ACRE": null, "LONGITUDE": -64.93688591, "LATITUDE": 18.34443526, "OBJECTID_1": 10117, "PARCEL_NO_": "105302182400", "Tax_Legal_": "LEVKOJ STRAEDE 1O&10A CROWN PRINCE QUARTER", "Name": "MARTIN, HENRY", "Address": "PO Box 304186", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14200, "Improved_V": 72600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.778684069500002, "SHAPE_Area": 155.74038814599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358165.914899997413158, 257206.495400000363588 ], [ 358162.527800001204014, 257225.466099999845028 ], [ 358170.590999998152256, 257225.5320999994874 ], [ 358173.987000003457069, 257205.506000000983477 ], [ 358165.914899997413158, 257206.495400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302121300", "MAP": null, "PARCEL_NAM": "25", "ACRE": null, "LONGITUDE": -64.94040716000001, "LATITUDE": 18.34437287, "OBJECTID_1": 9852, "PARCEL_NO_": "105302121300", "Tax_Legal_": "SOLBERG 25 LITTLE NORTHSIDE QTR", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.938533291400006, "SHAPE_Area": 519.557664241 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357799.957000002264977, 257190.834600001573563 ], [ 357786.238899998366833, 257191.988899998366833 ], [ 357788.418600000441074, 257220.08219999819994 ], [ 357804.526900000870228, 257222.32490000128746 ], [ 357804.638400003314018, 257209.238000001758337 ], [ 357804.79839999973774, 257190.451999999582767 ], [ 357799.957000002264977, 257190.834600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302182300", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 9", "ACRE": null, "LONGITUDE": -64.9371023, "LATITUDE": 18.34444641, "OBJECTID_1": 10116, "PARCEL_NO_": "105302182300", "Tax_Legal_": "LEVKOJ STRAEDE 9 CROWN PRINCE", "Name": "BAKER, A & OTHERS/ROBINSON", "Address": "10921 176th St", "City": "Jamaica", "State": "New York", "Zip": 11433, "Country": "United States", "Land_Value": 6300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.886882272100003, "SHAPE_Area": 236.843132766 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358137.535800002515316, 257224.839400000870228 ], [ 358152.047600001096725, 257225.169199999421835 ], [ 358153.001299999654293, 257207.867400001734495 ], [ 358138.473300002515316, 257209.437199998646975 ], [ 358137.535800002515316, 257224.839400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302171700", "MAP": null, "PARCEL_NAM": "HILL STREET 6", "ACRE": null, "LONGITUDE": -64.93802262, "LATITUDE": 18.344384, "OBJECTID_1": 10064, "PARCEL_NO_": "105302171700", "Tax_Legal_": "6 HILL STREET CROWN PRINCE QUARTER", "Name": "JACKSON, DAVID & JOYCE F. P", "Address": "6 HILL STREET", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19700, "Improved_V": 111500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.855153807899995, "SHAPE_Area": 448.41022254900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358061.900600001215935, 257205.644099999219179 ], [ 358045.07599999755621, 257192.840799998492002 ], [ 358040.133799999952316, 257205.043699998408556 ], [ 358036.05009999871254, 257211.131999999284744 ], [ 358034.399700000882149, 257215.551500000059605 ], [ 358052.07379999756813, 257223.295499999076128 ], [ 358061.900600001215935, 257205.644099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302331300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93547395, "LATITUDE": 18.3444286, "OBJECTID_1": 10576, "PARCEL_NO_": "105302331300", "Tax_Legal_": "VESTER GADE 2O QUEEN S QUARTER", "Name": "VARLACK, CHRISTALIA", "Address": "2020 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026232, "Country": "United States", "Land_Value": 10500, "Improved_V": 87900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.950285536199999, "SHAPE_Area": 174.548090669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358326.318999998271465, 257213.929900001734495 ], [ 358314.280000001192093, 257207.287500001490116 ], [ 358308.535099998116493, 257219.061700001358986 ], [ 358321.387599997222424, 257224.866399999707937 ], [ 358326.318999998271465, 257213.929900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302121200", "MAP": null, "PARCEL_NAM": "26", "ACRE": null, "LONGITUDE": -64.94058021, "LATITUDE": 18.34437643, "OBJECTID_1": 9851, "PARCEL_NO_": "105302121200", "Tax_Legal_": "SOLBERG 26 LITTLE NORTHSIDE QTR", "Name": "EMMANUEL, ALVINO, ELAINE A. & MOSES, CYNTHIA V.", "Address": "PO Box 306015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33700, "Improved_V": 121100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.767054680699999, "SHAPE_Area": 504.57945446600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357786.238899998366833, 257191.988899998366833 ], [ 357774.135200001299381, 257192.945300001651049 ], [ 357768.487400002777576, 257193.321199998259544 ], [ 357767.47070000320673, 257218.010899998247623 ], [ 357775.531999997794628, 257218.287900000810623 ], [ 357788.418600000441074, 257220.08219999819994 ], [ 357786.238899998366833, 257191.988899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301140900", "MAP": null, "PARCEL_NAM": "200-8J", "ACRE": null, "LONGITUDE": -64.94387212, "LATITUDE": 18.34429913, "OBJECTID_1": 9484, "PARCEL_NO_": "105301140900", "Tax_Legal_": "ALTONA 200-8J CROWN PRINCE QTR", "Name": "EPHRAIM, CASPAR & C", "Address": "BOX 3221", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35000, "Improved_V": 98400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.696984688, "SHAPE_Area": 656.351692275 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357447.173699997365475, 257193.969300001859665 ], [ 357421.866999998688698, 257171.514699999243021 ], [ 357421.096199996769428, 257175.27930000051856 ], [ 357420.255699999630451, 257179.28319999948144 ], [ 357420.961300000548363, 257191.110199999064207 ], [ 357420.759900003671646, 257214.750999998301268 ], [ 357422.36540000140667, 257215.608500000089407 ], [ 357424.786100000143051, 257215.417199999094009 ], [ 357428.034699998795986, 257212.699599999934435 ], [ 357441.840899996459484, 257201.202500000596046 ], [ 357446.734600000083447, 257194.698600001633167 ], [ 357447.173699997365475, 257193.969300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302251400", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 14B", "ACRE": null, "LONGITUDE": -64.93626747, "LATITUDE": 18.34443745, "OBJECTID_1": 10356, "PARCEL_NO_": "105302251400", "Tax_Legal_": "LEVKOJ STRAEDE 14B CROWN PRINCE QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.683050574500001, "SHAPE_Area": 63.487280294000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358240.034500002861023, 257214.279199998825788 ], [ 358229.566899999976158, 257212.504799999296665 ], [ 358228.701200000941753, 257219.463799998164177 ], [ 358235.947200000286102, 257220.789700001478195 ], [ 358240.034500002861023, 257214.279199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302321000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93573996000001, "LATITUDE": 18.34435514, "OBJECTID_1": 10550, "PARCEL_NO_": "105302321000", "Tax_Legal_": "VESTER GADE 32 QUEEN S QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.172405952199995, "SHAPE_Area": 440.66695313700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358305.406999997794628, 257207.637099999934435 ], [ 358279.718299999833107, 257194.127900000661612 ], [ 358273.944600000977516, 257209.279399998486042 ], [ 358299.647699996829033, 257221.099899999797344 ], [ 358305.406999997794628, 257207.637099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302251300", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 14A", "ACRE": null, "LONGITUDE": -64.93634886, "LATITUDE": 18.344369, "OBJECTID_1": 10355, "PARCEL_NO_": "105302251300", "Tax_Legal_": "LEVKOJ STRAEDE 14A CROWN PRINCE QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.103541441800004, "SHAPE_Area": 239.39683407000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358229.566899999976158, 257212.504799999296665 ], [ 358235.324299998581409, 257199.252999998629093 ], [ 358219.990000002086163, 257200.816300000995398 ], [ 358216.622699998319149, 257217.46510000154376 ], [ 358228.701200000941753, 257219.463799998164177 ], [ 358229.566899999976158, 257212.504799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302320900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93584508000001, "LATITUDE": 18.34412639, "OBJECTID_1": 10549, "PARCEL_NO_": "105302320900", "Tax_Legal_": "LEVKOJ STREET 19 CROWN PRINCE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 384600, "Improved_V": 1171300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.03325358199999, "SHAPE_Area": 1348.5533786399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358281.647399999201298, 257156.991200000047684 ], [ 358271.158100001513958, 257157.749800000339746 ], [ 358273.463799998164177, 257171.067499998956919 ], [ 358274.990099996328354, 257181.212499998509884 ], [ 358264.49719999730587, 257182.393199998885393 ], [ 358263.60639999806881, 257192.307300001382828 ], [ 358261.16950000077486, 257194.398299999535084 ], [ 358251.371500000357628, 257208.672499999403954 ], [ 358269.82490000128746, 257219.589299999177456 ], [ 358273.944600000977516, 257209.279399998486042 ], [ 358279.718299999833107, 257194.127900000661612 ], [ 358287.864100001752377, 257184.484299998730421 ], [ 358288.726199999451637, 257177.947399999946356 ], [ 358291.188299998641014, 257172.901399999856949 ], [ 358295.243199996650219, 257170.19029999896884 ], [ 358296.031499996781349, 257172.307700000703335 ], [ 358299.273000001907349, 257170.434399999678135 ], [ 358302.516199998557568, 257168.350000001490116 ], [ 358311.480899997055531, 257157.235399998724461 ], [ 358307.474600002169609, 257154.247299998998642 ], [ 358305.046599999070168, 257155.282900001853704 ], [ 358299.398800000548363, 257155.658900000154972 ], [ 358281.647399999201298, 257156.991200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302171600", "MAP": null, "PARCEL_NAM": "HILL STREET 9", "ACRE": null, "LONGITUDE": -64.93828042, "LATITUDE": 18.34432762, "OBJECTID_1": 10063, "PARCEL_NO_": "105302171600", "Tax_Legal_": "HILL STREET 9 CROWN PRINCE QUARTER", "Name": "VENZEN, EBENEZER & THEODORA", "Address": "2309 Hill St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23000, "Improved_V": 55400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.540078356799995, "SHAPE_Area": 499.304553279 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358037.808399997651577, 257194.047800000756979 ], [ 358012.020700000226498, 257192.147999998182058 ], [ 358005.455200001597404, 257205.604299999773502 ], [ 358004.634499996900558, 257207.286299999803305 ], [ 358026.327600002288818, 257216.540899999439716 ], [ 358037.808399997651577, 257194.047800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302251200", "MAP": null, "PARCEL_NAM": "LEVKOI STRAEDE 13B", "ACRE": null, "LONGITUDE": -64.93644648, "LATITUDE": 18.34436894, "OBJECTID_1": 10354, "PARCEL_NO_": "105302251200", "Tax_Legal_": "LEVKOI STRAEDE 13B CROWN PRINCE QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.494104476700002, "SHAPE_Area": 114.379001153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358219.990000002086163, 257200.816300000995398 ], [ 358211.919699996709824, 257201.5945999994874 ], [ 358210.181199997663498, 257216.356899999082088 ], [ 358216.622699998319149, 257217.46510000154376 ], [ 358219.990000002086163, 257200.816300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302333200", "MAP": "F9-1730-T66", "PARCEL_NAM": "5AA", "ACRE": ".00094", "LONGITUDE": -64.93483193, "LATITUDE": 18.34422251, "OBJECTID_1": 10595, "PARCEL_NO_": "105302333200", "Tax_Legal_": "5AA TAMARIND GADE QUEENS QTR", "Name": "PINNEY, NORTON E. & GLYNIS T.", "Address": "PO Box 10127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.667435214000001, "SHAPE_Area": 35.7954791294 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358373.291900001466274, 257190.038600001484156 ], [ 358390.901799999177456, 257197.667700000107288 ], [ 358392.607400000095367, 257194.418600000441074 ], [ 358386.16950000077486, 257192.888199999928474 ], [ 358373.291900001466274, 257190.038600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401270800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9319271, "LATITUDE": 18.34440016, "OBJECTID_1": 11873, "PARCEL_NO_": "105401270800", "Tax_Legal_": "PALM STRAEDE 3 QUEENS QUARTER", "Name": "BLYDEN, IANTHE", "Address": "PO Box 553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7000, "Improved_V": 31800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.427424963900002, "SHAPE_Area": 111.996618367 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358698.077600002288818, 257211.27309999987483 ], [ 358686.789200000464916, 257211.180700000375509 ], [ 358686.706500001251698, 257220.890299998223782 ], [ 358697.991300001740456, 257221.404899999499321 ], [ 358698.077600002288818, 257211.27309999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302332900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93538399000001, "LATITUDE": 18.34434179, "OBJECTID_1": 10592, "PARCEL_NO_": "105302332900", "Tax_Legal_": "VESTER GADE 19 QUEEN S QUARTER", "Name": "BRIN, CONSUELA, LISA & ROXANNE", "Address": "2202 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17700, "Improved_V": 63700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.255940626099999, "SHAPE_Area": 297.01037032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358314.280000001192093, 257207.287500001490116 ], [ 358326.318999998271465, 257213.929900001734495 ], [ 358333.541599996387959, 257217.999800000339746 ], [ 358340.096400000154972, 257205.810100000351667 ], [ 358320.023100003600121, 257195.724399998784065 ], [ 358314.280000001192093, 257207.287500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401270700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93202645, "LATITUDE": 18.34436773, "OBJECTID_1": 11872, "PARCEL_NO_": "105401270700", "Tax_Legal_": "ANANAS STRAEDE 2 QUEENS QUARTER", "Name": "ANDREWS, ANTONIO", "Address": "465 W 148th St", "City": "New York", "State": "New York", "Zip": 10031, "Country": "United States", "Land_Value": 8100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.8684857067, "SHAPE_Area": 157.27152576500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358686.789200000464916, 257211.180700000375509 ], [ 358686.846699997782707, 257204.426199998706579 ], [ 358677.170999996364117, 257204.346999999135733 ], [ 358677.034299999475479, 257220.388999998569489 ], [ 358686.706500001251698, 257220.890299998223782 ], [ 358686.789200000464916, 257211.180700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401270600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93216452, "LATITUDE": 18.34437059, "OBJECTID_1": 11871, "PARCEL_NO_": "105401270600", "Tax_Legal_": "ANANAS STRAEDE 1 QUEENS QUARTER", "Name": "TROTMAN, GLORIA", "Address": "PO Box 303724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.784996211500001, "SHAPE_Area": 302.54273407199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358661.849200002849102, 257204.432700000703335 ], [ 358653.658500000834465, 257219.353300001472235 ], [ 358657.688199996948242, 257219.597300000488758 ], [ 358669.77929999679327, 257220.118500001728535 ], [ 358677.034299999475479, 257220.388999998569489 ], [ 358677.170999996364117, 257204.346999999135733 ], [ 358661.849200002849102, 257204.432700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302251100", "MAP": null, "PARCEL_NAM": "LEVKOI 13A", "ACRE": null, "LONGITUDE": -64.93651906, "LATITUDE": 18.34436999, "OBJECTID_1": 10353, "PARCEL_NO_": "105302251100", "Tax_Legal_": "LEVKOI 13A CROWN PRINCE", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.901816421699998, "SHAPE_Area": 110.974677384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358211.919699996709824, 257201.5945999994874 ], [ 358203.849399998784065, 257202.372900001704693 ], [ 358202.128899998962879, 257215.024399999529123 ], [ 358210.181199997663498, 257216.356899999082088 ], [ 358211.919699996709824, 257201.5945999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401270500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93232594, "LATITUDE": 18.34435603, "OBJECTID_1": 11870, "PARCEL_NO_": "105401270500", "Tax_Legal_": "MURPHY GADE 19 QUEENS QTR", "Name": "VANTERPOOL, CYNTHIA & OTHRS", "Address": "PO Box 307377", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.323614052899998, "SHAPE_Area": 227.05655452299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358643.179999999701977, 257218.845300000160933 ], [ 358653.658500000834465, 257219.353300001472235 ], [ 358661.849200002849102, 257204.432700000703335 ], [ 358641.691399998962879, 257204.267700001597404 ], [ 358643.179999999701977, 257218.845300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93177663, "LATITUDE": 18.34437899, "OBJECTID_1": 11436, "PARCEL_NO_": "105401031700", "Tax_Legal_": "PALM STRAEDE 5BB QUEENS QUARTER", "Name": "SMITH, RANDOLPH", "Address": "PO Box 533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58600, "Improved_V": 143900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.417827493799997, "SHAPE_Area": 95.486179452800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358717.438100002706051, 257210.3761 ], [ 358702.118100002408028, 257210.250700000673532 ], [ 358702.058799996972084, 257217.216299999505281 ], [ 358711.716499999165535, 257219.406300000846386 ], [ 358711.739900000393391, 257216.662200000137091 ], [ 358717.438100002706051, 257210.3761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301121600", "MAP": null, "PARCEL_NAM": "200-5C-6", "ACRE": null, "LONGITUDE": -64.94539125, "LATITUDE": 18.34416881, "OBJECTID_1": 9440, "PARCEL_NO_": "105301121600", "Tax_Legal_": "ALTONA & WELGUNST 200-5C-6 CROWN PRINCE QTR.", "Name": "ROCHESTER, VINCENT", "Address": "PO Box 11774", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014774, "Country": "United States", "Land_Value": 57600, "Improved_V": 141100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.50622475899999, "SHAPE_Area": 1029.1121047700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357267.234600000083447, 257203.252000000327826 ], [ 357292.043399997055531, 257163.960299998521805 ], [ 357288.965199999511242, 257161.9543999992311 ], [ 357272.092000000178814, 257154.85020000115037 ], [ 357246.761900000274181, 257193.906300000846386 ], [ 357267.234600000083447, 257203.252000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302251500", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 14", "ACRE": null, "LONGITUDE": -64.9362125, "LATITUDE": 18.34433787, "OBJECTID_1": 10357, "PARCEL_NO_": "105302251500", "Tax_Legal_": "LEVKOJ STRAEDE 14 CROWN PRINCE QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.421612732299998, "SHAPE_Area": 199.397878005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358235.324299998581409, 257199.252999998629093 ], [ 358229.566899999976158, 257212.504799999296665 ], [ 358240.034500002861023, 257214.279199998825788 ], [ 358251.465000003576279, 257197.696400001645088 ], [ 358235.324299998581409, 257199.252999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302332300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93470457, "LATITUDE": 18.34431795, "OBJECTID_1": 10586, "PARCEL_NO_": "105302332300", "Tax_Legal_": "TAMARIND GADE 5 QUEENS QTR", "Name": "HODGE, IRVINE", "Address": "PO Box 6043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.970377489800001, "SHAPE_Area": 266.80070026300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358411.078900001943111, 257203.224599998444319 ], [ 358392.607400000095367, 257194.418600000441074 ], [ 358386.869699999690056, 257205.348499998450279 ], [ 358404.524099998176098, 257215.41440000012517 ], [ 358411.078900001943111, 257203.224599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302400200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93255145000001, "LATITUDE": 18.34432196, "OBJECTID_1": 10687, "PARCEL_NO_": "105302400200", "Tax_Legal_": "MURPHY GADE 10 QUEENS QTR", "Name": "ZUHDI, FAIKA J. , RUSHDI & ADLIE", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 63800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.003870448300006, "SHAPE_Area": 393.945102066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358614.989600002765656, 257215.026000000536442 ], [ 358638.361900001764297, 257216.483899999409914 ], [ 358636.887699998915195, 257200.217599999159575 ], [ 358633.682300001382828, 257197.869300000369549 ], [ 358615.945200003683567, 257197.513099998235703 ], [ 358614.989600002765656, 257215.026000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301151900", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-10", "ACRE": ".26", "LONGITUDE": -64.94801193000001, "LATITUDE": 18.34422218, "OBJECTID_1": 9517, "PARCEL_NO_": "105301151900", "Tax_Legal_": "ALTONA WELGUNST 220-10 KRONPRINDSENS GADE", "Name": "KNIGHT, ERIC & LUZ", "Address": "PMP BLDG 11 Apt 87", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.624470804, "SHAPE_Area": 1030.0953204499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356998.663999997079372, 257162.955899998545647 ], [ 356993.83330000191927, 257162.072000000625849 ], [ 356990.593699999153614, 257163.734299998730421 ], [ 356985.786399997770786, 257160.106300000101328 ], [ 356971.056999996304512, 257185.31700000166893 ], [ 356977.457099996507168, 257191.280000001192093 ], [ 356983.8716000020504, 257195.554400000721216 ], [ 357004.788999997079372, 257201.214000001549721 ], [ 357007.996299996972084, 257203.351199999451637 ], [ 357012.891699999570847, 257196.636300001293421 ], [ 356998.663999997079372, 257162.955899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302123000", "MAP": null, "PARCEL_NAM": "24A", "ACRE": null, "LONGITUDE": -64.94021871, "LATITUDE": 18.34430454, "OBJECTID_1": 9869, "PARCEL_NO_": "105302123000", "Tax_Legal_": "SOLBERG 24A LITTLE NORTHSIDE QTR", "Name": "FRETT, PENN, & STOUT, INC.", "Address": "PO BOX 2601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29400, "Improved_V": 224200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.201080360999995, "SHAPE_Area": 410.28513397299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357827.391400001943111, 257188.737100001424551 ], [ 357816.902099996805191, 257189.495600000023842 ], [ 357804.79839999973774, 257190.451999999582767 ], [ 357804.638400003314018, 257209.238000001758337 ], [ 357828.867299996316433, 257204.792300000786781 ], [ 357827.391400001943111, 257188.737100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302332000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93507333, "LATITUDE": 18.34424356, "OBJECTID_1": 10583, "PARCEL_NO_": "105302332000", "Tax_Legal_": "VESTER GADE 18B QUEEN S QUARTER", "Name": "SEBASTIAN, IANTHE", "Address": "PO Box 827", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.48160812, "SHAPE_Area": 574.87473594100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358364.481799997389317, 257183.000399999320507 ], [ 358358.873599998652935, 257178.732700001448393 ], [ 358342.563900001347065, 257200.130699999630451 ], [ 358368.258000001311302, 257213.006599999964237 ], [ 358373.291900001466274, 257190.038600001484156 ], [ 358364.481799997389317, 257183.000399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302120700", "MAP": null, "PARCEL_NAM": "59", "ACRE": null, "LONGITUDE": -64.93967705, "LATITUDE": 18.34427778, "OBJECTID_1": 9846, "PARCEL_NO_": "105302120700", "Tax_Legal_": "59 SOLBERG KRONDPRINDSENS QTR", "Name": "GORDON, LEROY STEVENSON", "Address": "PO Box 9861", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 281600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.800456142900003, "SHAPE_Area": 408.84651659399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357863.069600000977516, 257204.954799998551607 ], [ 357863.265100002288818, 257204.973999999463558 ], [ 357883.911300003528595, 257205.296599999070168 ], [ 357885.469200000166893, 257186.468199998140335 ], [ 357860.457400001585484, 257188.163400001823902 ], [ 357863.069600000977516, 257204.954799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302120600", "MAP": "F9-1664-T65", "PARCEL_NAM": "70", "ACRE": "0.33", "LONGITUDE": -64.93930176000001, "LATITUDE": 18.34424805, "OBJECTID_1": 9845, "PARCEL_NO_": "105302120600", "Tax_Legal_": "SOLBERG 70 LITTLE NOTHSIDE QTR", "Name": "MURRAINE, ANN ELLEN", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106300, "Improved_V": 285300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.892613345, "SHAPE_Area": 1141.57268671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357932.521899998188019, 257204.49269999936223 ], [ 357933.709499999880791, 257203.117199998348951 ], [ 357941.938100002706051, 257183.763999998569489 ], [ 357942.766000002622604, 257181.23759999871254 ], [ 357940.366800002753735, 257178.896000001579523 ], [ 357885.469200000166893, 257186.468199998140335 ], [ 357883.911300003528595, 257205.296599999070168 ], [ 357885.377400003373623, 257205.319499999284744 ], [ 357900.06139999628067, 257203.764800000935793 ], [ 357906.453199997544289, 257203.419300001114607 ], [ 357932.521899998188019, 257204.49269999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302121600", "MAP": null, "PARCEL_NAM": "18", "ACRE": null, "LONGITUDE": -64.93987493, "LATITUDE": 18.34429491, "OBJECTID_1": 9855, "PARCEL_NO_": "105302121600", "Tax_Legal_": "SOLBERG 18 LITTLE NORTHSIDE QTR", "Name": "FOY, LORRAINE", "Address": "BOX 4214", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20600, "Improved_V": 46700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.885677279299998, "SHAPE_Area": 367.58280199400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357863.069600000977516, 257204.954799998551607 ], [ 357860.457400001585484, 257188.163400001823902 ], [ 357850.774400003254414, 257188.92850000038743 ], [ 357841.9391999989748, 257184.845400001853704 ], [ 357841.915799997746944, 257187.589400000870228 ], [ 357844.302699998021126, 257203.106499999761581 ], [ 357844.972000002861023, 257207.45719999819994 ], [ 357863.515399999916553, 257207.820099998265505 ], [ 357863.265100002288818, 257204.973999999463558 ], [ 357863.069600000977516, 257204.954799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184500", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 7A", "ACRE": null, "LONGITUDE": -64.93762427, "LATITUDE": 18.34424595, "OBJECTID_1": 10138, "PARCEL_NO_": "105302184500", "Tax_Legal_": "LEVKOJ STRAEDE 7A CROWN PRINCE QUARTER", "Name": "LAROC HOLDINGS INC", "Address": "PO BOX 302275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42800, "Improved_V": 340400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.293107341300001, "SHAPE_Area": 508.40739225499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358097.610299997031689, 257178.705299999564886 ], [ 358081.473300002515316, 257179.839800000190735 ], [ 358082.027900002896786, 257209.397399999201298 ], [ 358100.590999998152256, 257207.438400000333786 ], [ 358097.610299997031689, 257178.705299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301132600", "MAP": null, "PARCEL_NAM": "200-7-17", "ACRE": null, "LONGITUDE": -64.94420629, "LATITUDE": 18.34420107, "OBJECTID_1": 9473, "PARCEL_NO_": "105301132600", "Tax_Legal_": "200-7-17 ALTONA & WELGUNST CROWN PRINCE QUARTER", "Name": "WILKINSON, FREDERICK KINGSTON & ETHEL THERESA (TRUSTEES)", "Address": "PO Box 303890", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30600, "Improved_V": 163300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.321103729, "SHAPE_Area": 665.25561667700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357410.67339999973774, 257175.276500001549721 ], [ 357385.683200001716614, 257167.390099998563528 ], [ 357382.368000000715256, 257177.917599998414516 ], [ 357378.925800003111362, 257190.1239 ], [ 357402.993199996650219, 257201.102000001817942 ], [ 357409.782600000500679, 257178.142000000923872 ], [ 357410.67339999973774, 257175.276500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302171900", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 4", "ACRE": "0.04", "LONGITUDE": -64.93780729, "LATITUDE": 18.34430786, "OBJECTID_1": 10065, "PARCEL_NO_": "105302171900", "Tax_Legal_": "GYLLINGS STREET 4,5&6 CROWN PRINCE QTR", "Name": "RANSON, MONICA & OTHERS", "Address": "5 STAABILAND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68500, "Improved_V": 335200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.404473258800003, "SHAPE_Area": 221.61048683499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358078.926700003445148, 257194.806600000709295 ], [ 358062.809399999678135, 257193.619199998676777 ], [ 358061.900600001215935, 257205.644099999219179 ], [ 358079.612499997019768, 257208.95549999922514 ], [ 358078.926700003445148, 257194.806600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184400", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 6", "ACRE": null, "LONGITUDE": -64.9374845, "LATITUDE": 18.34422942, "OBJECTID_1": 10136, "PARCEL_NO_": "105302184400", "Tax_Legal_": "LEVKOJ STRAEDE 6 CROWN PRINCE QUARTER", "Name": "JAMES SYDNEY & R", "Address": "PO Box 11543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43100, "Improved_V": 53000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.687000417299998, "SHAPE_Area": 352.49925843800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358111.225900001823902, 257189.582499999552965 ], [ 358109.714000001549721, 257177.7489 ], [ 358097.610299997031689, 257178.705299999564886 ], [ 358100.590999998152256, 257207.438400000333786 ], [ 358112.698299996554852, 257206.059799998998642 ], [ 358111.225900001823902, 257189.582499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302171500", "MAP": null, "PARCEL_NAM": "HILL STREET 11", "ACRE": null, "LONGITUDE": -64.93848967, "LATITUDE": 18.3442724, "OBJECTID_1": 10062, "PARCEL_NO_": "105302171500", "Tax_Legal_": "HILL STREET 11 CROWN PRINCE QTR", "Name": "TODMAN, A. & V. & C. & BRADY, JOYCE", "Address": "PO Box 65134", "City": "Virginia Beach", "State": "Virginia", "Zip": 23467, "Country": "United States", "Land_Value": 13600, "Improved_V": 55900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.606967749099994, "SHAPE_Area": 236.58850529099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358012.020700000226498, 257192.147999998182058 ], [ 357985.423199996352196, 257190.663800001144409 ], [ 357984.577299997210503, 257195.300900001078844 ], [ 358005.455200001597404, 257205.604299999773502 ], [ 358012.020700000226498, 257192.147999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401270900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93192746, "LATITUDE": 18.34432482, "OBJECTID_1": 11874, "PARCEL_NO_": "105401270900", "Tax_Legal_": "PALM STRAEDE 2 QUEENS QUARTER", "Name": "BLYDEN, IANTHE", "Address": "PO Box 553", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6500, "Improved_V": 46000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.087045804299997, "SHAPE_Area": 76.252810830900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358686.846699997782707, 257204.426199998706579 ], [ 358686.789200000464916, 257211.180700000375509 ], [ 358698.077600002288818, 257211.27309999987483 ], [ 358698.135099999606609, 257204.5185999982059 ], [ 358686.846699997782707, 257204.426199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302172000", "MAP": null, "PARCEL_NAM": "HILL STREET 4", "ACRE": null, "LONGITUDE": -64.93795806, "LATITUDE": 18.34423686, "OBJECTID_1": 10066, "PARCEL_NO_": "105302172000", "Tax_Legal_": "HILL STREET 4 CROWN PRINCE QUARTER", "Name": "MORGAN, M. , PARKER, D. , TITUS, L", "Address": "770 Fulton St", "City": "Brooklyn", "State": "New York", "Zip": 11238, "Country": "United States", "Land_Value": 15800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.577592472500001, "SHAPE_Area": 236.58806780399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358062.852600000798702, 257188.553300000727177 ], [ 358049.197400003671646, 257182.31980000063777 ], [ 358045.07599999755621, 257192.840799998492002 ], [ 358061.900600001215935, 257205.644099999219179 ], [ 358062.809399999678135, 257193.619199998676777 ], [ 358062.852600000798702, 257188.553300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184300", "MAP": null, "PARCEL_NAM": "5A LEVKOI STRAEDE", "ACRE": null, "LONGITUDE": -64.93733809, "LATITUDE": 18.34426748, "OBJECTID_1": 10135, "PARCEL_NO_": "105302184300", "Tax_Legal_": "5A LEVKOI STRAEDE CROWN PRINCE QUARTER", "Name": "UNITED BRETHREN OF ST, JOSEPH", "Address": "00000", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.143386629000005, "SHAPE_Area": 289.69315420499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358128.982799999415874, 257187.616900000721216 ], [ 358111.225900001823902, 257189.582499999552965 ], [ 358112.698299996554852, 257206.059799998998642 ], [ 358129.647100001573563, 257204.298700001090765 ], [ 358128.982799999415874, 257187.616900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302321300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93568353000001, "LATITUDE": 18.34424688, "OBJECTID_1": 10553, "PARCEL_NO_": "105302321300", "Tax_Legal_": "VESTER GADE 33 QUEENS QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87500, "Improved_V": 4900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.780591895900002, "SHAPE_Area": 321.69250288799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358290.270499996840954, 257185.981600001454353 ], [ 358287.864100001752377, 257184.484299998730421 ], [ 358279.718299999833107, 257194.127900000661612 ], [ 358305.406999997794628, 257207.637099999934435 ], [ 358310.32940000295639, 257197.756000000983477 ], [ 358290.270499996840954, 257185.981600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301152000", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-9", "ACRE": ".22", "LONGITUDE": -64.94780957, "LATITUDE": 18.34409042, "OBJECTID_1": 9518, "PARCEL_NO_": "105301152000", "Tax_Legal_": "ALTONA & WELGUNST 220-9 CROWN PRINCE QTR.", "Name": "IRELAND, RICHARD & FRANCILA JONES", "Address": "PO BOX 306477", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.326908911, "SHAPE_Area": 962.26646660599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357032.529100000858307, 257163.2331000007689 ], [ 357004.475400000810623, 257143.371800001710653 ], [ 357000.391699999570847, 257149.460099998861551 ], [ 357000.341300003230572, 257155.370299998670816 ], [ 357001.939599998295307, 257157.07209999859333 ], [ 356998.663999997079372, 257162.955899998545647 ], [ 357012.891699999570847, 257196.636300001293421 ], [ 357019.405100002884865, 257189.301300000399351 ], [ 357026.766199998557568, 257177.118099998682737 ], [ 357028.416599996387959, 257172.698699999600649 ], [ 357032.529100000858307, 257163.2331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401280100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93173916000001, "LATITUDE": 18.34428608, "OBJECTID_1": 11885, "PARCEL_NO_": "105401280100", "Tax_Legal_": "PALM STRAEDE 6 QUEENS QUARTER", "Name": "ESTEMAC, JORGE J.", "Address": "PO Box 305997", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13800, "Improved_V": 57300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.589714389900003, "SHAPE_Area": 239.652557261 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358724.003600001335144, 257196.919799998402596 ], [ 358703.025100000202656, 257198.436900001019239 ], [ 358702.118100002408028, 257210.250700000673532 ], [ 358717.438100002706051, 257210.3761 ], [ 358721.507399998605251, 257205.976399999111891 ], [ 358724.003600001335144, 257196.919799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301161400", "MAP": null, "PARCEL_NAM": "200-5F-4", "ACRE": "0.23", "LONGITUDE": -64.94642006, "LATITUDE": 18.34416357, "OBJECTID_1": 9556, "PARCEL_NO_": "105301161400", "Tax_Legal_": "200-5F-4 ESTATE ALTONA&WELGUNST CROWN PRINCE QTR.", "Name": "JACKSON, HAZELY D", "Address": "PO Box 304255", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.33756217600001, "SHAPE_Area": 1093.1573116300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357176.101300001144409, 257158.708599999547005 ], [ 357137.286799997091293, 257171.478799998760223 ], [ 357143.532300002872944, 257195.5945999994874 ], [ 357183.135099999606609, 257184.941799998283386 ], [ 357183.20160000026226, 257177.131900001317263 ], [ 357176.101300001144409, 257158.708599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302183600", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 4", "ACRE": null, "LONGITUDE": -64.93715136, "LATITUDE": 18.3441907, "OBJECTID_1": 10128, "PARCEL_NO_": "105302183600", "Tax_Legal_": "LEVKOJ STRAEDE 4 CROWN PRINCE QUARTER", "Name": "APOSTOLIC FAITH MISSION INC", "Address": "PO Box 305101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035101, "Country": "United States", "Land_Value": 38300, "Improved_V": 131000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.059062661, "SHAPE_Area": 312.75537184299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358145.227700002491474, 257173.817699998617172 ], [ 358133.928599998354912, 257174.991799999028444 ], [ 358136.104699999094009, 257203.507199998944998 ], [ 358146.597599998116493, 257202.326499998569489 ], [ 358145.227700002491474, 257173.817699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302122200", "MAP": null, "PARCEL_NAM": "111-4", "ACRE": null, "LONGITUDE": -64.94108884000001, "LATITUDE": 18.34416117, "OBJECTID_1": 9861, "PARCEL_NO_": "105302122200", "Tax_Legal_": "ANNAS FANCY 111-4 KRONP QTR", "Name": "JAMES BEVERHOUDT, CLEONE", "Address": "PO Box 304913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.760002086, "SHAPE_Area": 858.01357421600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357725.174900002777576, 257166.157900001853704 ], [ 357710.650499999523163, 257167.305599998682737 ], [ 357710.474299997091293, 257187.991300001740456 ], [ 357710.384400002658367, 257198.545200001448393 ], [ 357713.611400000751019, 257198.360500000417233 ], [ 357732.174599997699261, 257196.401500001549721 ], [ 357738.630500003695488, 257195.821100000292063 ], [ 357737.987800002098083, 257176.606300000101328 ], [ 357738.084899999201298, 257165.208099998533726 ], [ 357735.664200000464916, 257165.399300001561642 ], [ 357725.174900002777576, 257166.157900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302183500", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 3", "ACRE": null, "LONGITUDE": -64.93702349, "LATITUDE": 18.34418032, "OBJECTID_1": 10127, "PARCEL_NO_": "105302183500", "Tax_Legal_": "LEVKOJ STRAEDE 3 CROWN PRINCE QUARTER", "Name": "LEERDAM, SHEVONNE", "Address": "PO Box 681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24100, "Improved_V": 300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.699767821400002, "SHAPE_Area": 461.686482797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358154.106200002133846, 257172.834899999201298 ], [ 358145.227700002491474, 257173.817699998617172 ], [ 358146.597599998116493, 257202.326499998569489 ], [ 358163.546300001442432, 257200.565400000661612 ], [ 358161.298199996352196, 257180.493099998682737 ], [ 358160.563799999654293, 257172.043299999088049 ], [ 358154.106200002133846, 257172.834899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301153700", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-22", "ACRE": "0.22", "LONGITUDE": -64.9471437, "LATITUDE": 18.34409928, "OBJECTID_1": 9535, "PARCEL_NO_": "105301153700", "Tax_Legal_": "ALTONA 220-22 SOUTHSIDE QTR", "Name": "BARON, ALEX", "Address": "PO Box 11836", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92500, "Improved_V": 125600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.845783627, "SHAPE_Area": 977.65327456199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357063.21509999781847, 257173.674800001084805 ], [ 357098.518299996852875, 257190.578499998897314 ], [ 357100.871500000357628, 257186.590599998831749 ], [ 357107.37049999833107, 257180.944200001657009 ], [ 357089.028499998152256, 257156.940499998629093 ], [ 357078.661499999463558, 257143.34569999948144 ], [ 357074.561700001358986, 257151.333700001239777 ], [ 357072.922100000083447, 257154.486699998378754 ], [ 357068.84009999781847, 257160.363899998366833 ], [ 357063.9087999984622, 257171.300400000065565 ], [ 357063.21509999781847, 257173.674800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301121500", "MAP": "D9-3268-T85", "PARCEL_NAM": "200-5C-5", "ACRE": null, "LONGITUDE": -64.94562675, "LATITUDE": 18.34408225, "OBJECTID_1": 9439, "PARCEL_NO_": "105301121500", "Tax_Legal_": "200-5C-5&200-5C-4A ALTONA & WELGUNST CROWN & PRINCE QUARTER", "Name": "LAWRENCE, PAULINE", "Address": "PO Box 8916", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96100, "Improved_V": 97800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.10641629700001, "SHAPE_Area": 1441.4882771299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357246.405100002884865, 257141.129999998956919 ], [ 357214.543499998748302, 257189.631799999624491 ], [ 357225.038199998438358, 257188.240100000053644 ], [ 357233.896799996495247, 257189.579199999570847 ], [ 357238.729299999773502, 257190.252000000327826 ], [ 357246.761900000274181, 257193.906300000846386 ], [ 357272.092000000178814, 257154.85020000115037 ], [ 357258.431500002741814, 257149.25 ], [ 357246.405100002884865, 257141.129999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301141700", "MAP": null, "PARCEL_NAM": "200-8R", "ACRE": null, "LONGITUDE": -64.94288677, "LATITUDE": 18.34411589, "OBJECTID_1": 9491, "PARCEL_NO_": "105301141700", "Tax_Legal_": "ALTONA & WELGUNST 200-8R KRONP. PRINCE QTR.", "Name": "CONNOR, CLEMENT VERA", "Address": "6708 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60600, "Improved_V": 150800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.648921915, "SHAPE_Area": 842.83123752400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357519.884400002658367, 257186.095600001513958 ], [ 357543.946999996900558, 257194.32209999859333 ], [ 357551.828500002622604, 257163.472500000149012 ], [ 357521.224600002169609, 257159.000199999660254 ], [ 357520.353500001132488, 257166.592399999499321 ], [ 357518.696000002324581, 257171.856199998408556 ], [ 357519.884400002658367, 257186.095600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302332400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93465913, "LATITUDE": 18.34421664, "OBJECTID_1": 10587, "PARCEL_NO_": "105302332400", "Tax_Legal_": "LILLE GADE 5 QUEEN S QUARTER", "Name": "JACKSON, BERNICE", "Address": "PO Box 303626", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14700, "Improved_V": 22800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.117014978, "SHAPE_Area": 222.120800242 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358399.155000001192093, 257183.073100000619888 ], [ 358392.607400000095367, 257194.418600000441074 ], [ 358411.078900001943111, 257203.224599998444319 ], [ 358414.383199997246265, 257193.963500000536442 ], [ 358399.155000001192093, 257183.073100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301141000", "MAP": null, "PARCEL_NAM": "200-8K", "ACRE": null, "LONGITUDE": -64.94375524, "LATITUDE": 18.34413395, "OBJECTID_1": 9485, "PARCEL_NO_": "105301141000", "Tax_Legal_": "ALTONA & WELGUNST 200-8K CROWN PRINCE QTR", "Name": "BROOKS, JOSEPH", "Address": "3623 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49700, "Improved_V": 145800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.39654251899999, "SHAPE_Area": 577.56536443699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357421.866999998688698, 257171.514699999243021 ], [ 357447.173699997365475, 257193.969300001859665 ], [ 357459.003700003027916, 257174.322999998927116 ], [ 357459.745399996638298, 257173.141600001603365 ], [ 357444.900799997150898, 257163.801600001752377 ], [ 357422.026500001549721, 257170.735399998724461 ], [ 357421.866999998688698, 257171.514699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302183400", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 2", "ACRE": null, "LONGITUDE": -64.93690144, "LATITUDE": 18.3442033, "OBJECTID_1": 10125, "PARCEL_NO_": "105302183400", "Tax_Legal_": "LEVKOJ STRAEDE 2 CROWN PRINCE QUARTER", "Name": "RIVERA, EPIFANIO B", "Address": "2042 Levkoi Straede", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.028941324800002, "SHAPE_Area": 179.22975512299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358170.174900002777576, 257179.721400000154972 ], [ 358161.298199996352196, 257180.493099998682737 ], [ 358163.546300001442432, 257200.565400000661612 ], [ 358172.424800001084805, 257199.582600001245737 ], [ 358170.174900002777576, 257179.721400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302182600", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 1 A", "ACRE": null, "LONGITUDE": -64.93675794000001, "LATITUDE": 18.34419125, "OBJECTID_1": 10118, "PARCEL_NO_": "105302182600", "Tax_Legal_": "LEVKOJ STRAEDE 1 A CROWN PRINCE QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.4118639597, "SHAPE_Area": 228.759013788 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358186.313699997961521, 257178.375799998641014 ], [ 358175.010899998247623, 257179.972100000828505 ], [ 358177.26799999922514, 257198.988899998366833 ], [ 358189.373499996960163, 257197.82149999961257 ], [ 358186.313699997961521, 257178.375799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302331900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93525559, "LATITUDE": 18.34412728, "OBJECTID_1": 10582, "PARCEL_NO_": "105302331900", "Tax_Legal_": "VESTER GADE 18A QUEEN S QUARTER", "Name": "SEBASTIAN, IANTHE", "Address": "PO Box 827", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 34900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.111530289, "SHAPE_Area": 653.51198361599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358356.468999996781349, 257177.02419999986887 ], [ 358338.834399998188019, 257164.636500000953674 ], [ 358323.293300002813339, 257190.473799999803305 ], [ 358342.563900001347065, 257200.130699999630451 ], [ 358358.873599998652935, 257178.732700001448393 ], [ 358356.468999996781349, 257177.02419999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302251600", "MAP": null, "PARCEL_NAM": "JODE GADE 10B", "ACRE": null, "LONGITUDE": -64.93662698, "LATITUDE": 18.34417466, "OBJECTID_1": 10358, "PARCEL_NO_": "105302251600", "Tax_Legal_": "JODE GADE 10B CROWN PRINCE QTR", "Name": "TODMAN, JAMES", "Address": "1OB JODE GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18300, "Improved_V": 26900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.512744673599997, "SHAPE_Area": 321.94818233199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358203.208499997854233, 257182.94709999859333 ], [ 358202.459700003266335, 257176.185899998992682 ], [ 358186.313699997961521, 257178.375799998641014 ], [ 358189.373499996960163, 257197.82149999961257 ], [ 358205.514200001955032, 257196.264800000935793 ], [ 358203.208499997854233, 257182.94709999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401271000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93221291, "LATITUDE": 18.34419475, "OBJECTID_1": 11875, "PARCEL_NO_": "105401271000", "Tax_Legal_": "COCUS STRAEDE 1 QUEENS QUARTER", "Name": "CANCRYN, ADELITA E", "Address": "PO Box 25432", "City": "Brooklyn", "State": "New York", "Zip": 11202, "Country": "United States", "Land_Value": 39400, "Improved_V": 78300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.217773106, "SHAPE_Area": 670.19154057599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358682.842100001871586, 257201.227000001817942 ], [ 358682.186899997293949, 257183.489799998700619 ], [ 358640.226300001144409, 257186.945999998599291 ], [ 358640.998400002717972, 257190.963100001215935 ], [ 358640.910300001502037, 257201.306000001728535 ], [ 358682.842100001871586, 257201.227000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401271100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93198089000001, "LATITUDE": 18.34418609, "OBJECTID_1": 11876, "PARCEL_NO_": "105401271100", "Tax_Legal_": "PALM STRAEDE 1A QUEENS QUARTER", "Name": "CREQUE, ORLANDO", "Address": "PO Box 13", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.029741965200003, "SHAPE_Area": 156.250752713 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358682.186899997293949, 257183.489799998700619 ], [ 358682.842100001871586, 257201.227000001817942 ], [ 358691.711599998176098, 257201.299600001424551 ], [ 358691.054499998688698, 257183.773400001227856 ], [ 358682.186899997293949, 257183.489799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401271200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93190458, "LATITUDE": 18.34418411, "OBJECTID_1": 11877, "PARCEL_NO_": "105401271200", "Tax_Legal_": "PALM STRAEDE 1B QUEENS QUARTER", "Name": "JOSEPH, BENJAMIN", "Address": "PO Box 304844", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 27600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.3834556069, "SHAPE_Area": 126.379067531 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358691.711599998176098, 257201.299600001424551 ], [ 358698.162100002169609, 257201.352400001138449 ], [ 358699.115800000727177, 257184.050500001758337 ], [ 358691.054499998688698, 257183.773400001227856 ], [ 358691.711599998176098, 257201.299600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302174800", "MAP": null, "PARCEL_NAM": "100-3", "ACRE": null, "LONGITUDE": -64.93878447, "LATITUDE": 18.34422679, "OBJECTID_1": 10092, "PARCEL_NO_": "105302174800", "Tax_Legal_": "SOLBERG 100-3 LT. NORTH SIDE QTR.", "Name": "HAIRSTON, EVELYN S.", "Address": "PO Box 305882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 123400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.34424900299999, "SHAPE_Area": 1431.9525660199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357987.098800003528595, 257183.289200000464916 ], [ 357989.63459999859333, 257169.588899999856949 ], [ 357981.566100001335144, 257170.156100001186132 ], [ 357957.356899999082088, 257172.280000001192093 ], [ 357954.921800002455711, 257174.15989999845624 ], [ 357949.974200002849102, 257186.996199999004602 ], [ 357945.851000003516674, 257197.728199999779463 ], [ 357941.877300001680851, 257205.704900000244379 ], [ 357980.884999997913837, 257213.630800001323223 ], [ 357984.577299997210503, 257195.300900001078844 ], [ 357985.423199996352196, 257190.663800001144409 ], [ 357987.098800003528595, 257183.289200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302321400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9356121, "LATITUDE": 18.34416178, "OBJECTID_1": 10554, "PARCEL_NO_": "105302321400", "Tax_Legal_": "VESTER GADE 34 QUEENS QUARTER", "Name": "SEBASTIEN, OLIVE", "Address": "PO Box 794", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22400, "Improved_V": 48200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.459576139099994, "SHAPE_Area": 278.28920687700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358316.063500002026558, 257187.248199999332428 ], [ 358296.004600003361702, 257175.473900001496077 ], [ 358290.270499996840954, 257185.981600001454353 ], [ 358310.32940000295639, 257197.756000000983477 ], [ 358316.063500002026558, 257187.248199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302121800", "MAP": null, "PARCEL_NAM": "111-1", "ACRE": null, "LONGITUDE": -64.94053197, "LATITUDE": 18.34413913, "OBJECTID_1": 9857, "PARCEL_NO_": "105302121800", "Tax_Legal_": "111-1 ANNAS FANCY CROWN PRINCE QTR", "Name": "STACYGCREQUE LLC", "Address": "209 RACCOON RUN CT", "City": "Hanover", "State": "Maryland", "Zip": 210761263, "Country": "United States", "Land_Value": 48300, "Improved_V": 229600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.170841185100002, "SHAPE_Area": 492.51641660799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357793.166299998760223, 257191.405999999493361 ], [ 357793.602399997413158, 257167.25730000063777 ], [ 357771.92119999974966, 257168.862500000745058 ], [ 357774.135200001299381, 257192.945300001651049 ], [ 357786.238899998366833, 257191.988899998366833 ], [ 357793.166299998760223, 257191.405999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302251700", "MAP": null, "PARCEL_NAM": "JODE GADE 10A", "ACRE": null, "LONGITUDE": -64.9364837, "LATITUDE": 18.34418831, "OBJECTID_1": 10359, "PARCEL_NO_": "105302251700", "Tax_Legal_": "JODE GADE 10A CROWN PRINCE QTR", "Name": "BLANCHE E. THOMAS, BERNICE T. HEYLIGER & OTHERS", "Address": "PO Box 303710", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033710, "Country": "United States", "Land_Value": 8800, "Improved_V": 54100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.918921166899999, "SHAPE_Area": 181.52553075 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358216.930200003087521, 257181.370600000023842 ], [ 358203.208499997854233, 257182.94709999859333 ], [ 358205.514200001955032, 257196.264800000935793 ], [ 358218.427699998021126, 257194.892900001257658 ], [ 358216.930200003087521, 257181.370600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302172600", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 3", "ACRE": null, "LONGITUDE": -64.93780681, "LATITUDE": 18.34422238, "OBJECTID_1": 10072, "PARCEL_NO_": "105302172600", "Tax_Legal_": "GYLLINGS STREET 3 CROWN PRINCE QUARTER", "Name": "BONELLI, MAGDA C", "Address": "PO Box 7593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7900, "Improved_V": 10400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.475326245600002, "SHAPE_Area": 90.210055497799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358078.978799998760223, 257188.685300000011921 ], [ 358062.852600000798702, 257188.553300000727177 ], [ 358062.809399999678135, 257193.619199998676777 ], [ 358078.926700003445148, 257194.806600000709295 ], [ 358078.978799998760223, 257188.685300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302172100", "MAP": null, "PARCEL_NAM": "HILL STREET 7", "ACRE": null, "LONGITUDE": -64.93821888, "LATITUDE": 18.34420195, "OBJECTID_1": 10067, "PARCEL_NO_": "105302172100", "Tax_Legal_": "HILL STREET 7 CROWN PRINCE QUARTER", "Name": "HODGE, GARFIELD", "Address": "7 Hill Street", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.300583266900006, "SHAPE_Area": 226.800847847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358041.928000003099442, 257183.738000001758337 ], [ 358015.305299997329712, 257185.208799999207258 ], [ 358012.020700000226498, 257192.147999998182058 ], [ 358037.808399997651577, 257194.047800000756979 ], [ 358041.928000003099442, 257183.738000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302251800", "MAP": null, "PARCEL_NAM": "SILKE GADE 3B", "ACRE": null, "LONGITUDE": -64.93633112000001, "LATITUDE": 18.34418067, "OBJECTID_1": 10360, "PARCEL_NO_": "105302251800", "Tax_Legal_": "SILKE GADE 3B CROWN PRINCE QTR", "Name": "HEYLIGER, SEDRIC J. & BERNICE T", "Address": "PO Box 303311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.604781771100001, "SHAPE_Area": 150.54911721900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358233.045699998736382, 257182.769099999219179 ], [ 358232.251900002360344, 257181.28489999845624 ], [ 358220.141099996864796, 257183.08559999987483 ], [ 358221.654799997806549, 257194.708200000226498 ], [ 358233.760300002992153, 257193.540699999779463 ], [ 358233.045699998736382, 257182.769099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302172200", "MAP": null, "PARCEL_NAM": "HILL STREET 5", "ACRE": null, "LONGITUDE": -64.9384814, "LATITUDE": 18.34419472, "OBJECTID_1": 10068, "PARCEL_NO_": "105302172200", "Tax_Legal_": "HILL STREET 5 CROWN PRINCE QTR", "Name": "TODMAN, A. & V. & C. & BRADY, JOYCE", "Address": "PO Box 65134", "City": "Virginia Beach", "State": "Virginia", "Zip": 23467, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.150496023499997, "SHAPE_Area": 200.33425597499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358015.305299997329712, 257185.208799999207258 ], [ 357987.098800003528595, 257183.289200000464916 ], [ 357985.423199996352196, 257190.663800001144409 ], [ 358012.020700000226498, 257192.147999998182058 ], [ 358015.305299997329712, 257185.208799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302251900", "MAP": null, "PARCEL_NAM": "SILKE GADE 2C", "ACRE": null, "LONGITUDE": -64.93620475, "LATITUDE": 18.34417716, "OBJECTID_1": 10361, "PARCEL_NO_": "105302251900", "Tax_Legal_": "SILKE GADE 2C CROWN PRINCE QTR", "Name": "THIBOU OMO-ARE, AMANDA", "Address": "PO Box 307174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.433324629700003, "SHAPE_Area": 147.73934864500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358248.286499999463558, 257192.18189999833703 ], [ 358247.561099998652935, 257182.67680000141263 ], [ 358233.045699998736382, 257182.769099999219179 ], [ 358233.760300002992153, 257193.540699999779463 ], [ 358248.286499999463558, 257192.18189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302252000", "MAP": null, "PARCEL_NAM": "SILKE GADE 2B", "ACRE": null, "LONGITUDE": -64.93614061, "LATITUDE": 18.34410001, "OBJECTID_1": 10362, "PARCEL_NO_": "105302252000", "Tax_Legal_": "SILKE GADE 2B CROWN PRINCE QUARTER", "Name": "FOY, P. & D. , & BOYNES, R", "Address": "PO Box 1031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29000, "Improved_V": 55200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.125068829400007, "SHAPE_Area": 393.00877022200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358239.589699998497963, 257171.845800001174212 ], [ 358231.515699997544289, 257173.04619999974966 ], [ 358232.251900002360344, 257181.28489999845624 ], [ 358233.045699998736382, 257182.769099999219179 ], [ 358247.561099998652935, 257182.67680000141263 ], [ 358248.286499999463558, 257192.18189999833703 ], [ 358255.550499998033047, 257191.396999999880791 ], [ 358257.978399999439716, 257190.361400000751019 ], [ 358258.80629999935627, 257187.835099998861551 ], [ 358257.350100003182888, 257169.458000000566244 ], [ 358239.589699998497963, 257171.845800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302400300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93255338, "LATITUDE": 18.34418459, "OBJECTID_1": 10688, "PARCEL_NO_": "105302400300", "Tax_Legal_": "MURPHY GADE 11 QUEENS QUARTER", "Name": "JACKSON, JR. ANATH & BIANCA", "Address": "PO Box 98", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.166781623399999, "SHAPE_Area": 119.144969125 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358636.182099997997284, 257188.390599999576807 ], [ 358616.015299998223782, 257189.280999999493361 ], [ 358615.970399998128414, 257194.55799999833107 ], [ 358636.126400001347065, 257194.934000000357628 ], [ 358636.182099997997284, 257188.390599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184200", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 5B", "ACRE": null, "LONGITUDE": -64.93735072, "LATITUDE": 18.3441415, "OBJECTID_1": 10134, "PARCEL_NO_": "105302184200", "Tax_Legal_": "LEVKOJ STRAEDE 5B CROWN PRINCE QUARTER", "Name": "CLAXTON, MERV & CHARLENE", "Address": "2405 Levkoj Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9800, "Improved_V": 77300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.390409417400001, "SHAPE_Area": 208.84469092200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358128.270000003278255, 257176.634199999272823 ], [ 358109.714000001549721, 257177.7489 ], [ 358111.225900001823902, 257189.582499999552965 ], [ 358128.982799999415874, 257187.616900000721216 ], [ 358128.270000003278255, 257176.634199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302340800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93457457, "LATITUDE": 18.34413095, "OBJECTID_1": 10603, "PARCEL_NO_": "105302340800", "Tax_Legal_": "3 LILLE & 15A-2 VESTER GADE QUEENS QUARTER", "Name": "JACKSON, NOEL", "Address": "PO Box 7075", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53200, "Improved_V": 199000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.4334165247, "SHAPE_Area": 82.039762972199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358416.965800002217293, 257174.775199998170137 ], [ 358406.391999997198582, 257185.4543999992311 ], [ 358415.205700002610683, 257192.07039999961853 ], [ 358416.965800002217293, 257174.775199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301130800", "MAP": "G9-3006-T80", "PARCEL_NAM": "200-7-8", "ACRE": "0.25", "LONGITUDE": -64.94465923, "LATITUDE": 18.34396116, "OBJECTID_1": 9455, "PARCEL_NO_": "105301130800", "Tax_Legal_": "ALTONA & WELGUNST 200-7-8 CROWN PRINCE QTR", "Name": "DAVIS, THEOPHILUS & DORIS", "Address": "PO Box 303460", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51500, "Improved_V": 75000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.52715357299999, "SHAPE_Area": 1186.9407456900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357368.136699996888638, 257144.659400001168251 ], [ 357336.767800003290176, 257135.325699999928474 ], [ 357324.703699998557568, 257131.638399999588728 ], [ 357325.468699999153614, 257136.499800000339746 ], [ 357329.469700001180172, 257140.121100001037121 ], [ 357331.058899998664856, 257142.878299999982119 ], [ 357337.351199999451637, 257161.506099998950958 ], [ 357337.329599998891354, 257164.039000000804663 ], [ 357335.612700000405312, 257176.268399998545647 ], [ 357336.365099996328354, 257182.607299998402596 ], [ 357353.319200001657009, 257180.212999999523163 ], [ 357360.694700002670288, 257166.3412000015378 ], [ 357368.136699996888638, 257144.659400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302172500", "MAP": null, "PARCEL_NAM": "HILL STREET 2", "ACRE": null, "LONGITUDE": -64.93793418, "LATITUDE": 18.34411327, "OBJECTID_1": 10071, "PARCEL_NO_": "105302172500", "Tax_Legal_": "HILL STREET 2 CROWN PRINCE QUARTER", "Name": "CHARLES, ESTHER", "Address": "770 Fulton St", "City": "Brooklyn", "State": "New York", "Zip": 11238, "Country": "United States", "Land_Value": 9200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.471732300799999, "SHAPE_Area": 182.632585909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358065.39919999986887, 257173.586500000208616 ], [ 358052.514399997889996, 257171.581199999898672 ], [ 358049.197400003671646, 257182.31980000063777 ], [ 358062.852600000798702, 257188.553300000727177 ], [ 358065.39919999986887, 257173.586500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302172700", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 2", "ACRE": null, "LONGITUDE": -64.93780343, "LATITUDE": 18.34413071, "OBJECTID_1": 10073, "PARCEL_NO_": "105302172700", "Tax_Legal_": "GYLLINGS STREET 2 CROWN PRINCE QUARTER", "Name": "LEADER, ZORA & LEADER, Z AS TRU", "Address": "PO Box 303341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9000, "Improved_V": 29400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.216354825300002, "SHAPE_Area": 225.01387144099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358079.108300000429153, 257173.48759999871254 ], [ 358065.39919999986887, 257173.586500000208616 ], [ 358062.852600000798702, 257188.553300000727177 ], [ 358078.978799998760223, 257188.685300000011921 ], [ 358079.108300000429153, 257173.48759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302332600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93493435000001, "LATITUDE": 18.34407885, "OBJECTID_1": 10589, "PARCEL_NO_": "105302332600", "Tax_Legal_": "LILLE GADE 2 QUEENS QTR", "Name": "MOLINA, O & A. & GOODING, A", "Address": "2075 Boston Rd", "City": "Bronx", "State": "New York", "Zip": 10460, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.337574306500002, "SHAPE_Area": 237.77929877899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358375.913999997079372, 257166.206500001251698 ], [ 358364.481799997389317, 257183.000399999320507 ], [ 358373.291900001466274, 257190.038600001484156 ], [ 358385.532200001180172, 257173.040199998766184 ], [ 358375.913999997079372, 257166.206500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302172300", "MAP": null, "PARCEL_NAM": "HILL STREET 3", "ACRE": null, "LONGITUDE": -64.93843705, "LATITUDE": 18.34408456, "OBJECTID_1": 10069, "PARCEL_NO_": "105302172300", "Tax_Legal_": "HILL STREET 3 CROWN PRINCE QUARTER", "Name": "HODGE, GARFIELD", "Address": "7 Hill Street", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 33000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.2463045728, "SHAPE_Area": 510.50084010900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358016.957500003278255, 257180.578299999237061 ], [ 358021.908699996769428, 257167.319899998605251 ], [ 358022.87389999628067, 257165.151000000536442 ], [ 358019.589800000190735, 257165.587900001555681 ], [ 357999.051399998366833, 257168.319899998605251 ], [ 357989.622400000691414, 257169.574200000613928 ], [ 357989.604900002479553, 257169.590999998152256 ], [ 357989.63459999859333, 257169.588899999856949 ], [ 357987.098800003528595, 257183.289200000464916 ], [ 358015.305299997329712, 257185.208799999207258 ], [ 358016.957500003278255, 257180.578299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302321800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93556206, "LATITUDE": 18.34407967, "OBJECTID_1": 10558, "PARCEL_NO_": "105302321800", "Tax_Legal_": "VESTER GADE 35 QUEENS QUARTER", "Name": "GREENE, RALSTON & NANCY", "Address": "2211 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17900, "Improved_V": 110700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.719112813700001, "SHAPE_Area": 210.63157567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358320.964299999177456, 257179.899999998509884 ], [ 358302.516199998557568, 257168.350000001490116 ], [ 358299.273000001907349, 257170.434399999678135 ], [ 358296.004600003361702, 257175.473900001496077 ], [ 358316.063500002026558, 257187.248199999332428 ], [ 358320.964299999177456, 257179.899999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301131100", "MAP": null, "PARCEL_NAM": "200-7-13", "ACRE": null, "LONGITUDE": -64.94429806, "LATITUDE": 18.34379747, "OBJECTID_1": 9458, "PARCEL_NO_": "105301131100", "Tax_Legal_": "ALTONA & WELGUNST 200-7-13 CROWN PRINCE QTR.", "Name": "GABRIEL, DUPIGNY & ALVONA", "Address": "PO Box 11422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 120300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.627177267099995, "SHAPE_Area": 480.37088839199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357397.066500000655651, 257128.252099998295307 ], [ 357380.007100000977516, 257122.14130000025034 ], [ 357379.594099998474121, 257124.910399999469519 ], [ 357377.884400002658367, 257136.295499999076128 ], [ 357373.42400000244379, 257148.8761 ], [ 357389.387500002980232, 257155.67790000140667 ], [ 357393.141400001943111, 257143.808600001037121 ], [ 357396.481700003147125, 257130.3260000012815 ], [ 357397.066500000655651, 257128.252099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301132500", "MAP": null, "PARCEL_NAM": "200-7-18", "ACRE": null, "LONGITUDE": -64.94413678, "LATITUDE": 18.34397752, "OBJECTID_1": 9472, "PARCEL_NO_": "105301132500", "Tax_Legal_": "200-7-18 ALTONA&WELGUNST CROWN PRINCE QTR", "Name": "ISAAC, LLOYD", "Address": "BOX 4695", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 186300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.49965058, "SHAPE_Area": 686.23516856000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357418.409800000488758, 257148.540100000798702 ], [ 357393.141400001943111, 257143.808600001037121 ], [ 357385.683200001716614, 257167.390099998563528 ], [ 357410.67339999973774, 257175.276500001549721 ], [ 357417.244499996304512, 257154.138399999588728 ], [ 357418.409800000488758, 257148.540100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302160100", "MAP": null, "PARCEL_NAM": "HODGES STREET 27", "ACRE": null, "LONGITUDE": -64.93988195, "LATITUDE": 18.34407881, "OBJECTID_1": 9991, "PARCEL_NO_": "105302160100", "Tax_Legal_": "HODGES STREET 27 CROWN PRINCE QUARTER", "Name": "GIMENEZ, SR. , JOHN L", "Address": "PO Box 323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.959509926400003, "SHAPE_Area": 81.103710078399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357854.064400002360344, 257181.355999998748302 ], [ 357855.786700002849102, 257168.493400000035763 ], [ 357848.546099998056889, 257166.534299999475479 ], [ 357849.240900002419949, 257179.62779999896884 ], [ 357852.450000002980232, 257181.553899999707937 ], [ 357854.064400002360344, 257181.355999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302160200", "MAP": null, "PARCEL_NAM": "THOMAS STREET 3", "ACRE": null, "LONGITUDE": -64.93981708, "LATITUDE": 18.34409354, "OBJECTID_1": 9992, "PARCEL_NO_": "105302160200", "Tax_Legal_": "THOMAS STREET 3 CROWN PRINCE QUARTER", "Name": "GIMENEZ, JOHN", "Address": "PO Box 323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.714213771499999, "SHAPE_Area": 94.125054849099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357863.027400001883507, 257170.452500000596046 ], [ 357855.786700002849102, 257168.493400000035763 ], [ 357854.064400002360344, 257181.355999998748302 ], [ 357862.9391999989748, 257180.795400001108646 ], [ 357863.027400001883507, 257170.452500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302340400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93466337, "LATITUDE": 18.34395002, "OBJECTID_1": 10599, "PARCEL_NO_": "105302340400", "Tax_Legal_": "LILLE GADE 3-1 & 15A,15A-1 &15A-3 VESTER GADE", "Name": "DOWNING, MYRA & SIMONE HEYLIGER", "Address": "PO BOX 303761", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58700, "Improved_V": 47000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.664864501, "SHAPE_Area": 885.93072263800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358406.762500002980232, 257141.972100000828505 ], [ 358393.748199999332428, 257155.164500001817942 ], [ 358382.357299998402596, 257167.10359999909997 ], [ 358406.391999997198582, 257185.4543999992311 ], [ 358416.965800002217293, 257174.775199998170137 ], [ 358416.391500003635883, 257147.53940000012517 ], [ 358406.762500002980232, 257141.972100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302160300", "MAP": null, "PARCEL_NAM": "THOMAS STREET 2", "ACRE": null, "LONGITUDE": -64.9396986, "LATITUDE": 18.34405765, "OBJECTID_1": 9993, "PARCEL_NO_": "105302160300", "Tax_Legal_": "THOMAS STREET 2 CROWN PRINCE QUARTER", "Name": "GIMINEZ, JOHN", "Address": "PO Box 323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.102904139800003, "SHAPE_Area": 257.69380269300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357878.354500003159046, 257169.733600001782179 ], [ 357878.413800001144409, 257162.76799999922514 ], [ 357871.988499999046326, 257159.760099999606609 ], [ 357863.027400001883507, 257170.452500000596046 ], [ 357862.9391999989748, 257180.795400001108646 ], [ 357875.044699996709824, 257179.627900000661612 ], [ 357879.079899996519089, 257179.238699998706579 ], [ 357878.354500003159046, 257169.733600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302252200", "MAP": null, "PARCEL_NAM": "JODE GADE 10C", "ACRE": null, "LONGITUDE": -64.93649701, "LATITUDE": 18.34409788, "OBJECTID_1": 10364, "PARCEL_NO_": "105302252200", "Tax_Legal_": "JODE GADE 10C CROWN PRINCE QTR", "Name": "BLANCHE E. THOMAS, BERNICE T. HEYLIGER & OTHERS", "Address": "PO Box 303710", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033710, "Country": "United States", "Land_Value": 4900, "Improved_V": 49200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.228897613599997, "SHAPE_Area": 93.954917730700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358216.181400001049042, 257174.609499998390675 ], [ 358202.459700003266335, 257176.185899998992682 ], [ 358203.208499997854233, 257182.94709999859333 ], [ 358216.930200003087521, 257181.370600000023842 ], [ 358216.181400001049042, 257174.609499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302252100", "MAP": null, "PARCEL_NAM": "SILKE GADE 3BA", "ACRE": null, "LONGITUDE": -64.93634443000001, "LATITUDE": 18.34409025, "OBJECTID_1": 10363, "PARCEL_NO_": "105302252100", "Tax_Legal_": "SILKE GADE 3BA KRONPRINDSENS QTR", "Name": "ANDRENS, B, A, L & C", "Address": "2803 Silke Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6700, "Improved_V": 43300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.030844537900002, "SHAPE_Area": 101.10235458299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358231.515699997544289, 257173.04619999974966 ], [ 358219.404899999499321, 257174.846999999135733 ], [ 358220.141099996864796, 257183.08559999987483 ], [ 358232.251900002360344, 257181.28489999845624 ], [ 358231.515699997544289, 257173.04619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302400400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93257801, "LATITUDE": 18.34402787, "OBJECTID_1": 10689, "PARCEL_NO_": "105302400400", "Tax_Legal_": "12 MURPHY GADE QUEENS QUARTER", "Name": "THRIVING CHARITY ADVOCATES LLC", "Address": "5093 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19400, "Improved_V": 25800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.415041498099995, "SHAPE_Area": 431.13535555499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358632.366300001740456, 257163.028099998831749 ], [ 358611.387800000607967, 257164.545200001448393 ], [ 358614.526799999177456, 257174.703400000929832 ], [ 358616.040500000119209, 257186.325899999588728 ], [ 358635.409999996423721, 257184.373500000685453 ], [ 358632.366300001740456, 257163.028099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302160400", "MAP": null, "PARCEL_NAM": "THOMAS STREET 1", "ACRE": null, "LONGITUDE": -64.93955151, "LATITUDE": 18.34407733, "OBJECTID_1": 9994, "PARCEL_NO_": "105302160400", "Tax_Legal_": "THOMAS STREET 1 CROWN PRINCE QUARTER", "Name": "GIMENEZ, JOHN", "Address": "PO Box 323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.696249270400003, "SHAPE_Area": 151.31389509600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357894.412399999797344, 257177.886599998921156 ], [ 357896.100599996745586, 257169.034499999135733 ], [ 357878.354500003159046, 257169.733600001782179 ], [ 357879.079899996519089, 257179.238699998706579 ], [ 357894.412399999797344, 257177.886599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302174900", "MAP": null, "PARCEL_NAM": "HILL STREET 1", "ACRE": null, "LONGITUDE": -64.93822677, "LATITUDE": 18.34405716, "OBJECTID_1": 10093, "PARCEL_NO_": "105302174900", "Tax_Legal_": "HILL STREET 1 CROWN PRINCE QUARTER", "Name": "TODMAN, CLARENA", "Address": "PO Box 303464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8600, "Improved_V": 29800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.349328637799999, "SHAPE_Area": 225.033896575 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358034.816899999976158, 257166.581199999898672 ], [ 358035.668499998748302, 257163.449000000953674 ], [ 358022.87389999628067, 257165.151000000536442 ], [ 358021.908699996769428, 257167.319899998605251 ], [ 358016.957500003278255, 257180.578299999237061 ], [ 358032.277400001883507, 257180.703699998557568 ], [ 358034.816899999976158, 257166.581199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302172400", "MAP": null, "PARCEL_NAM": "HILL STREET 1A", "ACRE": null, "LONGITUDE": -64.93810172000001, "LATITUDE": 18.3440446, "OBJECTID_1": 10070, "PARCEL_NO_": "105302172400", "Tax_Legal_": "HILL STREET 1A CROWN PRINCE QUARTER", "Name": "FRETT, JOSEPHITA", "Address": "PO Box 306971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4800, "Improved_V": 230300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.392720801599999, "SHAPE_Area": 219.665909744 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358047.726899996399879, 257165.631400000303984 ], [ 358048.404700003564358, 257161.754799999296665 ], [ 358035.668499998748302, 257163.449000000953674 ], [ 358034.816899999976158, 257166.581199999898672 ], [ 358032.277400001883507, 257180.703699998557568 ], [ 358043.565800003707409, 257180.796100001782179 ], [ 358047.726899996399879, 257165.631400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302321100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93593645, "LATITUDE": 18.34407457, "OBJECTID_1": 10551, "PARCEL_NO_": "105302321100", "Tax_Legal_": "SILKE GADE 1C KRONPRINDSENS QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.821810099899999, "SHAPE_Area": 109.188804394 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358273.463799998164177, 257171.067499998956919 ], [ 358262.972699999809265, 257172.037099998444319 ], [ 358264.49719999730587, 257182.393199998885393 ], [ 358274.990099996328354, 257181.212499998509884 ], [ 358273.463799998164177, 257171.067499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301140800", "MAP": null, "PARCEL_NAM": "200-8H", "ACRE": null, "LONGITUDE": -64.94382631000001, "LATITUDE": 18.34394749, "OBJECTID_1": 9483, "PARCEL_NO_": "105301140800", "Tax_Legal_": "ALTONA & WELGUNST 200-8H CROWN PRINCE QTR.", "Name": "ROUSE, LASCELLES H. & SHANISE V.", "Address": "PO Box 304707", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.837793653099993, "SHAPE_Area": 515.45781110200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357451.015900000929832, 257148.958099998533726 ], [ 357427.207800000905991, 257141.314399998635054 ], [ 357426.443300001323223, 257146.286400001496077 ], [ 357426.166000001132488, 257148.089699998497963 ], [ 357422.778899997472763, 257167.060400001704693 ], [ 357422.026500001549721, 257170.735399998724461 ], [ 357444.900799997150898, 257163.801600001752377 ], [ 357447.042000003159046, 257158.604100000113249 ], [ 357447.991999998688698, 257156.298099998384714 ], [ 357451.015900000929832, 257148.958099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302332700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93502352, "LATITUDE": 18.34401055, "OBJECTID_1": 10590, "PARCEL_NO_": "105302332700", "Tax_Legal_": "LILLE GADE 1 QUEENS QTR", "Name": "DONOVAN, ROSITA", "Address": "8241 Bournefield", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.795035695899998, "SHAPE_Area": 249.182935047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358363.89130000025034, 257157.66440000012517 ], [ 358356.468999996781349, 257177.02419999986887 ], [ 358358.873599998652935, 257178.732700001448393 ], [ 358364.481799997389317, 257183.000399999320507 ], [ 358375.913999997079372, 257166.206500001251698 ], [ 358363.89130000025034, 257157.66440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301121300", "MAP": null, "PARCEL_NAM": "200-5C-3", "ACRE": null, "LONGITUDE": -64.94609518, "LATITUDE": 18.34383428, "OBJECTID_1": 9438, "PARCEL_NO_": "105301121300", "Tax_Legal_": "ALTONA & WELGUNST 200-5C-3 CROWN PRINCE QTR.", "Name": "CARTY, MARION & YVONNE", "Address": "PO Box 4258", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 101600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.58309180200001, "SHAPE_Area": 1222.5989415900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357206.276500001549721, 257118.847800001502037 ], [ 357173.899899996817112, 257133.148299999535084 ], [ 357188.077299997210503, 257172.738800000399351 ], [ 357200.308600001037121, 257156.795800000429153 ], [ 357220.694799996912479, 257130.153799999505281 ], [ 357213.472199998795986, 257126.08390000090003 ], [ 357206.276500001549721, 257118.847800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184600", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 7B", "ACRE": null, "LONGITUDE": -64.93763859000001, "LATITUDE": 18.34402294, "OBJECTID_1": 10139, "PARCEL_NO_": "105302184600", "Tax_Legal_": "LEVKOJ STRAEDE 7B CROWN PRINCE QUARTER", "Name": "FARRELL, SYLVIA", "Address": "PO Box 303822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18200, "Improved_V": 14600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.295031401399996, "SHAPE_Area": 301.18254742400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358081.473300002515316, 257179.839800000190735 ], [ 358097.610299997031689, 257178.705299999564886 ], [ 358095.365800000727177, 257158.210799999535084 ], [ 358081.640500001609325, 257160.209399998188019 ], [ 358081.473300002515316, 257179.839800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302183300", "MAP": null, "PARCEL_NAM": "GAASE GADE 1C", "ACRE": null, "LONGITUDE": -64.9369177, "LATITUDE": 18.34407352, "OBJECTID_1": 10124, "PARCEL_NO_": "105302183300", "Tax_Legal_": "GAASE GADE 1C CROWN PRINCE QTR", "Name": "MERCER, HERMIA", "Address": "BOX 4275", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4800, "Improved_V": 33600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.057068932200004, "SHAPE_Area": 76.594333820900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358168.641400001943111, 257170.420699998736382 ], [ 358160.563799999654293, 257172.043299999088049 ], [ 358161.298199996352196, 257180.493099998682737 ], [ 358170.174900002777576, 257179.721400000154972 ], [ 358168.641400001943111, 257170.420699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401271300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93233991, "LATITUDE": 18.34402452, "OBJECTID_1": 11878, "PARCEL_NO_": "105401271300", "Tax_Legal_": "COCUS STRAEDE REM 2 QUEENS QUARTER", "Name": "CAMPBELL, LISA & LAVELLE M.", "Address": "PO Box 10738", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15200, "Improved_V": 56600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.944897200599996, "SHAPE_Area": 372.75446203899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358659.617299996316433, 257182.460700001567602 ], [ 358660.562100000679493, 257166.214200001209974 ], [ 358637.184399999678135, 257165.389600001275539 ], [ 358640.251400001347065, 257183.990899998694658 ], [ 358659.617299996316433, 257182.460700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301161200", "MAP": null, "PARCEL_NAM": "200-5F-3", "ACRE": "0.23", "LONGITUDE": -64.94649603000001, "LATITUDE": 18.34395535, "OBJECTID_1": 9555, "PARCEL_NO_": "105301161200", "Tax_Legal_": "ALTONA & WELGUNST 200-5F-3 KRONP. PRINCE QTR.", "Name": "SKEETE, BERNETTE", "Address": "P.O. BOX 5420", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63200, "Improved_V": 115200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.74055013100001, "SHAPE_Area": 902.35464154500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357167.411700002849102, 257137.528200000524521 ], [ 357130.21339999884367, 257149.889299999922514 ], [ 357135.737099997699261, 257164.077799998223782 ], [ 357137.286799997091293, 257171.478799998760223 ], [ 357176.101300001144409, 257158.708599999547005 ], [ 357167.411700002849102, 257137.528200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301141100", "MAP": null, "PARCEL_NAM": "200-8L", "ACRE": null, "LONGITUDE": -64.9436029, "LATITUDE": 18.34395682, "OBJECTID_1": 9486, "PARCEL_NO_": "105301141100", "Tax_Legal_": "ALTONA & WELGUNST 200-8L CROWN PRINCE QTR", "Name": "ABRAHAM, G. & WILCOX, I", "Address": "PO Box 7915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34100, "Improved_V": 50700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.429005520800004, "SHAPE_Area": 496.52021222600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357444.900799997150898, 257163.801600001752377 ], [ 357459.745399996638298, 257173.141600001603365 ], [ 357471.265600003302097, 257154.791600000113249 ], [ 357476.139399997889996, 257150.609600000083447 ], [ 357453.629199996590614, 257142.614900000393391 ], [ 357447.042000003159046, 257158.604100000113249 ], [ 357444.900799997150898, 257163.801600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302182700", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 1B", "ACRE": null, "LONGITUDE": -64.93677734000001, "LATITUDE": 18.34406162, "OBJECTID_1": 10119, "PARCEL_NO_": "105302182700", "Tax_Legal_": "LEVKOJ STRAEDE 1B CROWN PRINCE", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17600, "Improved_V": 4200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.199873014300003, "SHAPE_Area": 109.529093851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358175.010899998247623, 257179.972100000828505 ], [ 358186.313699997961521, 257178.375799998641014 ], [ 358185.586499996483326, 257169.081700000911951 ], [ 358173.475599996745586, 257170.882500000298023 ], [ 358175.010899998247623, 257179.972100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302165500", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 24", "ACRE": null, "LONGITUDE": -64.9392942, "LATITUDE": 18.34402791, "OBJECTID_1": 10046, "PARCEL_NO_": "105302165500", "Tax_Legal_": "NY NORDSIDEVEJ 24 CROWN PRINCE QUARTER", "Name": "GIMENEZ, JOHN", "Address": "PO Box 323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.42505284400001, "SHAPE_Area": 455.30412563900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357917.924900002777576, 257162.880300000309944 ], [ 357900.22919999808073, 257157.669199999421835 ], [ 357897.641199998557568, 257177.490800000727177 ], [ 357944.468500003218651, 257170.696899998933077 ], [ 357917.924900002777576, 257162.880300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184100", "MAP": null, "PARCEL_NAM": "LEVKOJ STRAEDE 7C", "ACRE": null, "LONGITUDE": -64.93751291, "LATITUDE": 18.3440077, "OBJECTID_1": 10133, "PARCEL_NO_": "105302184100", "Tax_Legal_": "LEVKOJ STRAEDE 7C CROWN PRINCE QUARTER", "Name": "PEREZ, O & MEYER, B", "Address": "1330 Rustling Oaks Dr", "City": "Brandon", "State": "Florida", "Zip": 33510, "Country": "United States", "Land_Value": 11100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.526390569300005, "SHAPE_Area": 247.65272605499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358108.194899998605251, 257166.75959999859333 ], [ 358106.668600000441074, 257156.614599999040365 ], [ 358095.365800000727177, 257158.210799999535084 ], [ 358097.610299997031689, 257178.705299999564886 ], [ 358109.714000001549721, 257177.7489 ], [ 358108.194899998605251, 257166.75959999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302322000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93549826, "LATITUDE": 18.34399886, "OBJECTID_1": 10560, "PARCEL_NO_": "105302322000", "Tax_Legal_": "VESTER GADE 36 QUEENS QUARTER", "Name": "MOOLENAAR, RUTH, GWEN, LUCIEN", "Address": "PO BOX 302275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15700, "Improved_V": 5500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.480894423099997, "SHAPE_Area": 277.18223839799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358302.516199998557568, 257168.350000001490116 ], [ 358320.964299999177456, 257179.899999998509884 ], [ 358327.502899996936321, 257169.609999999403954 ], [ 358311.480899997055531, 257157.235399998724461 ], [ 358302.516199998557568, 257168.350000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302184000", "MAP": null, "PARCEL_NAM": "SILKE GADE 8B", "ACRE": null, "LONGITUDE": -64.93736106, "LATITUDE": 18.34404031, "OBJECTID_1": 10132, "PARCEL_NO_": "105302184000", "Tax_Legal_": "SILKE GADE 8B KRONPRINSENS QTR", "Name": "OTTLEY, ANTHONY A", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52500, "Improved_V": 233400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.083039262500002, "SHAPE_Area": 209.52548874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358127.557199999690056, 257165.651500001549721 ], [ 358108.194899998605251, 257166.75959999859333 ], [ 358109.714000001549721, 257177.7489 ], [ 358128.270000003278255, 257176.634199999272823 ], [ 358127.557199999690056, 257165.651500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302252300", "MAP": null, "PARCEL_NAM": "JODE GADE 9B", "ACRE": null, "LONGITUDE": -64.93664746, "LATITUDE": 18.34404386, "OBJECTID_1": 10365, "PARCEL_NO_": "105302252300", "Tax_Legal_": "JODE GADE 9B CROWN PRINCE QTR", "Name": "JONES, VIOLET & OTHERS", "Address": "PO Box 894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.538660643999997, "SHAPE_Area": 148.84581358599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358202.459700003266335, 257176.185899998992682 ], [ 358200.92620000243187, 257166.885299999266863 ], [ 358185.586499996483326, 257169.081700000911951 ], [ 358186.313699997961521, 257178.375799998641014 ], [ 358202.459700003266335, 257176.185899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401271900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93213063, "LATITUDE": 18.34402127, "OBJECTID_1": 11884, "PARCEL_NO_": "105401271900", "Tax_Legal_": "COCUS STRAEDE LOT #2A QUEENS QUARTER", "Name": "WEST, NORVILLE", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 14300, "Improved_V": 69400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.056164683899993, "SHAPE_Area": 343.22394525599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358667.817100003361702, 257166.484700001776218 ], [ 358660.562100000679493, 257166.214200001209974 ], [ 358659.617299996316433, 257182.460700001567602 ], [ 358683.018399998545647, 257180.541299998760223 ], [ 358683.135200001299381, 257166.821100000292063 ], [ 358667.817100003361702, 257166.484700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301112700", "MAP": null, "PARCEL_NAM": "200-6G-1", "ACRE": null, "LONGITUDE": -64.94493193, "LATITUDE": 18.34392026, "OBJECTID_1": 9419, "PARCEL_NO_": "105301112700", "Tax_Legal_": "ALTONA & WELGUNST 200-6G-1 CROWN PRINCE QTR.", "Name": "WILLIAMS, DANIEL & DOROTHY", "Address": "P.o.box 4691", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71000, "Improved_V": 93000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.728091476, "SHAPE_Area": 977.58389035300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357325.468699999153614, 257136.499800000339746 ], [ 357311.822499997913837, 257129.210900001227856 ], [ 357298.680600002408028, 257157.389899998903275 ], [ 357309.898800000548363, 257165.714299999177456 ], [ 357314.695299997925758, 257170.60869999974966 ], [ 357337.329599998891354, 257164.039000000804663 ], [ 357337.351199999451637, 257161.506099998950958 ], [ 357331.058899998664856, 257142.878299999982119 ], [ 357329.469700001180172, 257140.121100001037121 ], [ 357325.468699999153614, 257136.499800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401271500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93190838, "LATITUDE": 18.34400965, "OBJECTID_1": 11880, "PARCEL_NO_": "105401271500", "Tax_Legal_": "STORE GRONNE GADE 6B QUEENS QUARTER", "Name": "BRATHWAITE, LOIS", "Address": "PO Box 304422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5300, "Improved_V": 31700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.278805749199996, "SHAPE_Area": 154.46314608099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358690.409999996423721, 257164.76969999819994 ], [ 358689.467100001871586, 257180.805100001394749 ], [ 358699.141000002622604, 257181.095400001853704 ], [ 358700.08219999819994, 257165.271099999547005 ], [ 358690.409999996423721, 257164.76969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401271400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93198471, "LATITUDE": 18.34395089, "OBJECTID_1": 11879, "PARCEL_NO_": "105401271400", "Tax_Legal_": "5 STORE GRONNE GADE QUEENS QUARTER", "Name": "NORVILLE B WEST and CHRISS ROBERTS", "Address": "PO BOX 305168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17000, "Improved_V": 23100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.9714376875, "SHAPE_Area": 194.63226088299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358690.409999996423721, 257164.76969999819994 ], [ 358690.514300003647804, 257152.527199998497963 ], [ 358684.069200001657009, 257151.841099999845028 ], [ 358683.135200001299381, 257166.821100000292063 ], [ 358683.018399998545647, 257180.541299998760223 ], [ 358689.467100001871586, 257180.805100001394749 ], [ 358690.409999996423721, 257164.76969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302252400", "MAP": null, "PARCEL_NAM": "JODE GADE 9A", "ACRE": null, "LONGITUDE": -64.93650819, "LATITUDE": 18.34402489, "OBJECTID_1": 10366, "PARCEL_NO_": "105302252400", "Tax_Legal_": "JODE GADE 9A CROWN PRINCE QUARTER", "Name": "BLANCHE E. THOMAS, BERNICE T. HEYLIGER & OTHERS", "Address": "PO Box 303710", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033710, "Country": "United States", "Land_Value": 7400, "Improved_V": 19700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.7119018199, "SHAPE_Area": 131.655353292 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358200.92620000243187, 257166.885299999266863 ], [ 358202.459700003266335, 257176.185899998992682 ], [ 358216.181400001049042, 257174.609499998390675 ], [ 358214.649700000882149, 257165.097699999809265 ], [ 358200.92620000243187, 257166.885299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302332800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93515501, "LATITUDE": 18.34393125, "OBJECTID_1": 10591, "PARCEL_NO_": "105302332800", "Tax_Legal_": "VESTER GADE 17 QUEENS QTR", "Name": "RAWLINS, CASPER & FRANCES", "Address": "PO Box 7452", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.617370075799997, "SHAPE_Area": 417.009157104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358338.834399998188019, 257164.636500000953674 ], [ 358356.468999996781349, 257177.02419999986887 ], [ 358363.89130000025034, 257157.66440000012517 ], [ 358347.862099997699261, 257146.134100001305342 ], [ 358338.834399998188019, 257164.636500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302183700", "MAP": null, "PARCEL_NAM": "SILKE GADE 7B", "ACRE": null, "LONGITUDE": -64.9371222, "LATITUDE": 18.3440111, "OBJECTID_1": 10129, "PARCEL_NO_": "105302183700", "Tax_Legal_": "SILKE GADE 7B CROWN PRINCE QUARTER", "Name": "DALEY, DOROTHY", "Address": "PO Box 10275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9700, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.185597247300002, "SHAPE_Area": 214.035750014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358154.106200002133846, 257172.834899999201298 ], [ 358153.366400003433228, 257165.018399998545647 ], [ 358152.586999997496605, 257161.845600001513958 ], [ 358133.208599999547005, 257164.853399999439716 ], [ 358133.928599998354912, 257174.991799999028444 ], [ 358145.227700002491474, 257173.817699998617172 ], [ 358154.106200002133846, 257172.834899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302172900", "MAP": null, "PARCEL_NAM": "HILL STREET REM OF 2", "ACRE": null, "LONGITUDE": -64.93791527, "LATITUDE": 18.34400854, "OBJECTID_1": 10075, "PARCEL_NO_": "105302172900", "Tax_Legal_": "HILL STREET REM OF 2 CROWN PRINCE QTR", "Name": "CHARLES, ERNEST", "Address": "PO Box 9814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.396215298000001, "SHAPE_Area": 125.953457012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358065.39919999986887, 257173.586500000208616 ], [ 358066.302599996328354, 257162.19480000063777 ], [ 358054.200699999928474, 257162.940200001001358 ], [ 358052.514399997889996, 257171.581199999898672 ], [ 358065.39919999986887, 257173.586500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302172800", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 1", "ACRE": null, "LONGITUDE": -64.93779483, "LATITUDE": 18.34400732, "OBJECTID_1": 10074, "PARCEL_NO_": "105302172800", "Tax_Legal_": "GYLLINGS STREET 1 CROWN PRINCE QUARTER", "Name": "DARLINGTON, AGATHA & LEADER Z", "Address": "7314 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.554848138300002, "SHAPE_Area": 158.377919913 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358079.214400000870228, 257161.034000001847744 ], [ 358066.302599996328354, 257162.19480000063777 ], [ 358065.39919999986887, 257173.586500000208616 ], [ 358079.108300000429153, 257173.48759999871254 ], [ 358079.214400000870228, 257161.034000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302252900", "MAP": null, "PARCEL_NAM": "SILKE GADE 3C", "ACRE": null, "LONGITUDE": -64.93631798, "LATITUDE": 18.34399356, "OBJECTID_1": 10371, "PARCEL_NO_": "105302252900", "Tax_Legal_": "3C SILKE GADE CROWN PRINCE QTR", "Name": "JACKSON, K&L, WILLIAMS, J & FLEMING, L & OTHERS", "Address": "PO Box 395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13600, "Improved_V": 90300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.850485385499994, "SHAPE_Area": 245.182775182 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358232.426399998366833, 257160.810300000011921 ], [ 358217.894799999892712, 257162.802299998700619 ], [ 358219.404899999499321, 257174.846999999135733 ], [ 358231.515699997544289, 257173.04619999974966 ], [ 358239.589699998497963, 257171.845800001174212 ], [ 358238.07769999653101, 257160.012099999934435 ], [ 358232.426399998366833, 257160.810300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302322300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93568956, "LATITUDE": 18.34403764, "OBJECTID_1": 10563, "PARCEL_NO_": "105302322300", "Tax_Legal_": "VESTER GADE 35A QUEENS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.3478302181, "SHAPE_Area": 18.127210133399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358291.188299998641014, 257172.901399999856949 ], [ 358296.004600003361702, 257175.473900001496077 ], [ 358299.273000001907349, 257170.434399999678135 ], [ 358296.031499996781349, 257172.307700000703335 ], [ 358295.243199996650219, 257170.19029999896884 ], [ 358291.188299998641014, 257172.901399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173200", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9C", "ACRE": null, "LONGITUDE": -64.93874774, "LATITUDE": 18.34394391, "OBJECTID_1": 10078, "PARCEL_NO_": "105302173200", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9C CROWN PRINCE QUARTER", "Name": "VIALET, FRED", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38000, "Improved_V": 34400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.500670656300002, "SHAPE_Area": 499.728444379 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357984.136100001633167, 257152.445300001651049 ], [ 357971.317800000309944, 257142.630100000649691 ], [ 357964.779200002551079, 257152.920200001448393 ], [ 357963.940499998629093, 257156.712999999523163 ], [ 357959.853200003504753, 257163.223400000482798 ], [ 357957.356899999082088, 257172.280000001192093 ], [ 357981.566100001335144, 257170.156100001186132 ], [ 357984.136100001633167, 257152.445300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302160600", "MAP": null, "PARCEL_NAM": "26 HODGES STREET", "ACRE": null, "LONGITUDE": -64.93982828, "LATITUDE": 18.34396032, "OBJECTID_1": 9995, "PARCEL_NO_": "105302160600", "Tax_Legal_": "26 HODGES STREET CROWN PRINCE QUARTER", "Name": "ASFOUR, IBRAHIM & ABLA (CO-TRUSTEES)", "Address": "5521 Curacao Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 185400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.880553462899996, "SHAPE_Area": 302.62830176599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357871.988499999046326, 257159.760099999606609 ], [ 357847.888999998569489, 257149.008200000971556 ], [ 357848.546099998056889, 257166.534299999475479 ], [ 357855.786700002849102, 257168.493400000035763 ], [ 357863.027400001883507, 257170.452500000596046 ], [ 357871.988499999046326, 257159.760099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302183200", "MAP": null, "PARCEL_NAM": "GAASE GADE 1B", "ACRE": null, "LONGITUDE": -64.9369632, "LATITUDE": 18.34400888, "OBJECTID_1": 10123, "PARCEL_NO_": "105302183200", "Tax_Legal_": "GAASE GADE 1B CROWN PRINCE QTR", "Name": "DUVERGUE, OTHERS, EARLA", "Address": "402 Bedford Ave", "City": "Uniondale", "State": "New York", "Zip": 11553, "Country": "United States", "Land_Value": 10000, "Improved_V": 41700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.241469524400003, "SHAPE_Area": 96.421845830799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358167.878200002014637, 257165.348200000822544 ], [ 358153.366400003433228, 257165.018399998545647 ], [ 358154.106200002133846, 257172.834899999201298 ], [ 358160.563799999654293, 257172.043299999088049 ], [ 358168.641400001943111, 257170.420699998736382 ], [ 358167.878200002014637, 257165.348200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301152100", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-8", "ACRE": ".22", "LONGITUDE": -64.94769577, "LATITUDE": 18.3438351, "OBJECTID_1": 9519, "PARCEL_NO_": "105301152100", "Tax_Legal_": "ALTONA & WELGUNST 220-8 SOUTHSIDE QTR.", "Name": "HUGGINS (LIFE ESTATE), JACQUELINE C A", "Address": "PO Box 8564", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48200, "Improved_V": 43300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.75810549000001, "SHAPE_Area": 1007.11728012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357046.50789999961853, 257131.47239999845624 ], [ 357020.000299997627735, 257119.434200000017881 ], [ 357004.475400000810623, 257143.371800001710653 ], [ 357032.529100000858307, 257163.2331000007689 ], [ 357044.026100002229214, 257138.840399999171495 ], [ 357046.50789999961853, 257131.47239999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302160700", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 22", "ACRE": null, "LONGITUDE": -64.93912074000001, "LATITUDE": 18.34397434, "OBJECTID_1": 9996, "PARCEL_NO_": "105302160700", "Tax_Legal_": "NY NORDSIDEVEJ 22 CROWN PRINCE", "Name": "NEWTON, FRED, FRANKLIN, LANCELOT & RYAN L. CHOW", "Address": "1908 Thornhill Rd", "City": "Wesley Chapel", "State": "Florida", "Zip": 335444923, "Country": "United States", "Land_Value": 18200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.3844108073, "SHAPE_Area": 238.46012308100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357920.419399999082088, 257154.034800000488758 ], [ 357917.924900002777576, 257162.880300000309944 ], [ 357944.468500003218651, 257170.696899998933077 ], [ 357949.356700003147125, 257164.826299998909235 ], [ 357920.419399999082088, 257154.034800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302165400", "MAP": null, "PARCEL_NAM": "JOHN STREET 6", "ACRE": null, "LONGITUDE": -64.93953979, "LATITUDE": 18.34399762, "OBJECTID_1": 10045, "PARCEL_NO_": "105302165400", "Tax_Legal_": "JOHN STREET 6 CROWN PRINCE QUARTER", "Name": "JACOBS, EUNAH", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.5004102917, "SHAPE_Area": 154.71881282800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357897.797700002789497, 257159.127000000327826 ], [ 357878.413800001144409, 257162.76799999922514 ], [ 357878.354500003159046, 257169.733600001782179 ], [ 357896.100599996745586, 257169.034499999135733 ], [ 357897.797700002789497, 257159.127000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173100", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9Z", "ACRE": null, "LONGITUDE": -64.93856403, "LATITUDE": 18.34395593, "OBJECTID_1": 10077, "PARCEL_NO_": "105302173100", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9Z CROWN PRINCE QTR", "Name": "MOOLENAAR, LUCIEN, RUTH, GWEN", "Address": "PO BOX 302275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12800, "Improved_V": 69200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.827423004500005, "SHAPE_Area": 283.25446840299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357989.604900002479553, 257169.590999998152256 ], [ 357989.622400000691414, 257169.574200000613928 ], [ 357999.051399998366833, 257168.319899998605251 ], [ 358000.445600003004074, 257161.636199999600649 ], [ 358001.948299996554852, 257154.431800000369549 ], [ 358001.99040000140667, 257154.23030000180006 ], [ 357984.136100001633167, 257152.445300001651049 ], [ 357981.566100001335144, 257170.156100001186132 ], [ 357989.604900002479553, 257169.590999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302253000", "MAP": null, "PARCEL_NAM": "SILKE GADE 2AA", "ACRE": null, "LONGITUDE": -64.93613642, "LATITUDE": 18.34396741, "OBJECTID_1": 10372, "PARCEL_NO_": "105302253000", "Tax_Legal_": "SILKE GADE 2AA CROWN PRINCE QTR", "Name": "ORTIZ, JESUS R", "Address": "2705 Pile Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.657639915399997, "SHAPE_Area": 219.14216713600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358256.646300002932549, 257157.419900000095367 ], [ 358246.957999996840954, 257158.818300001323223 ], [ 358238.07769999653101, 257160.012099999934435 ], [ 358239.589699998497963, 257171.845800001174212 ], [ 358257.350100003182888, 257169.458000000566244 ], [ 358256.646300002932549, 257157.419900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302321200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93595336, "LATITUDE": 18.34396856, "OBJECTID_1": 10552, "PARCEL_NO_": "105302321200", "Tax_Legal_": "SILKE GADE 1BBB CROWN PRINCE QTR", "Name": "THOMPSON, MALEAH AMBER KIA & HENRITA TODMAN", "Address": "14838 Hawksmoor Run Cir", "City": "Orlando", "State": "Florida", "Zip": 32828, "Country": "United States", "Land_Value": 5800, "Improved_V": 24200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.369577477, "SHAPE_Area": 137.01638841499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358271.158100001513958, 257157.749800000339746 ], [ 358261.475199997425079, 257158.514899998903275 ], [ 358262.972699999809265, 257172.037099998444319 ], [ 358273.463799998164177, 257171.067499998956919 ], [ 358271.158100001513958, 257157.749800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302122300", "MAP": null, "PARCEL_NAM": "125", "ACRE": null, "LONGITUDE": -64.94110466, "LATITUDE": 18.34383238, "OBJECTID_1": 9862, "PARCEL_NO_": "105302122300", "Tax_Legal_": "ANNAS FANCY 125 KROMP QTR", "Name": "LINDESAY, IVAH", "Address": "PO Box 764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.659135767, "SHAPE_Area": 723.72406888700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357735.664200000464916, 257165.399300001561642 ], [ 357731.936499997973442, 257129.693999998271465 ], [ 357716.616499997675419, 257129.568599998950958 ], [ 357709.343500003218651, 257131.409000001847744 ], [ 357704.473300002515316, 257135.168800000101328 ], [ 357725.174900002777576, 257166.157900001853704 ], [ 357735.664200000464916, 257165.399300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302122400", "MAP": null, "PARCEL_NAM": "124", "ACRE": null, "LONGITUDE": -64.94091916000001, "LATITUDE": 18.34384545, "OBJECTID_1": 9863, "PARCEL_NO_": "105302122400", "Tax_Legal_": "ANNAS FANCY 124 KRONP QTR", "Name": "DICKERSON, MERCEDES", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43000, "Improved_V": 76200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.62486858600001, "SHAPE_Area": 610.95905162099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357731.936499997973442, 257129.693999998271465 ], [ 357735.664200000464916, 257165.399300001561642 ], [ 357738.084899999201298, 257165.208099998533726 ], [ 357751.803000003099442, 257164.053800001740456 ], [ 357751.278999999165535, 257130.907800000160933 ], [ 357731.936499997973442, 257129.693999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173000", "MAP": null, "PARCEL_NAM": "9R & 9ZA GAMLE NORDSIDEVEJ", "ACRE": null, "LONGITUDE": -64.93816417, "LATITUDE": 18.34391366, "OBJECTID_1": 10076, "PARCEL_NO_": "105302173000", "Tax_Legal_": "9R&9ZA GAMLE NORDSIDEVEJ CROWN PRINCE QTR", "Name": "THOMAS, BRADFORD", "Address": "PO Box 24404", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 29100, "Improved_V": 71900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.015545335300004, "SHAPE_Area": 391.307996989 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358022.87389999628067, 257165.151000000536442 ], [ 358035.668499998748302, 257163.449000000953674 ], [ 358048.404700003564358, 257161.754799999296665 ], [ 358050.269900001585484, 257151.086800001561642 ], [ 358039.791400000452995, 257150.57880000025034 ], [ 358020.448899999260902, 257149.364999998360872 ], [ 358019.589800000190735, 257165.587900001555681 ], [ 358022.87389999628067, 257165.151000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301141600", "MAP": null, "PARCEL_NAM": "200-8Q", "ACRE": null, "LONGITUDE": -64.94283422, "LATITUDE": 18.34386027, "OBJECTID_1": 9490, "PARCEL_NO_": "105301141600", "Tax_Legal_": "ALTONA & WELGUNST 200-8Q CROWN PRINCE QTR", "Name": "SEBASTIAN, GEORGE & ROSE", "Address": "BOX 3773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61700, "Improved_V": 94600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.318361133, "SHAPE_Area": 918.18375952400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357558.512800000607967, 257136.085099998861551 ], [ 357536.8125, 257127.674800001084805 ], [ 357519.671300001442432, 257152.02140000090003 ], [ 357521.224600002169609, 257159.000199999660254 ], [ 357551.828500002622604, 257163.472500000149012 ], [ 357558.512800000607967, 257136.085099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302182800", "MAP": null, "PARCEL_NAM": "GAASE GADE 2A", "ACRE": null, "LONGITUDE": -64.93679067, "LATITUDE": 18.34395389, "OBJECTID_1": 10120, "PARCEL_NO_": "105302182800", "Tax_Legal_": "GAASE GADE 2A CROWN PRINCE", "Name": "EZEKIEL, E & HODGE, I", "Address": "2102 Gasse Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026688, "Country": "United States", "Land_Value": 7500, "Improved_V": 79800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.361396200500003, "SHAPE_Area": 127.82639574700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358184.079999998211861, 257156.614900000393391 ], [ 358171.970899999141693, 257158.204500000923872 ], [ 358173.495399996638298, 257168.560600001364946 ], [ 358185.604500003159046, 257166.971000000834465 ], [ 358184.079999998211861, 257156.614900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302122500", "MAP": null, "PARCEL_NAM": "123", "ACRE": null, "LONGITUDE": -64.94074554, "LATITUDE": 18.34384653, "OBJECTID_1": 9864, "PARCEL_NO_": "105302122500", "Tax_Legal_": "ANNAS FANCY 123 KROMP QTR", "Name": "FREEMAN, C. & HARRIGAN, A. R", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36300, "Improved_V": 121500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.55021742, "SHAPE_Area": 602.10859010800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357751.278999999165535, 257130.907800000160933 ], [ 357751.803000003099442, 257164.053800001740456 ], [ 357770.36259999871254, 257162.5168999992311 ], [ 357770.621500000357628, 257132.121599998325109 ], [ 357751.278999999165535, 257130.907800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302183900", "MAP": null, "PARCEL_NAM": "SILKE GADE 8A", "ACRE": null, "LONGITUDE": -64.93737171, "LATITUDE": 18.34394061, "OBJECTID_1": 10131, "PARCEL_NO_": "105302183900", "Tax_Legal_": "SILKE GADE 8A 8A SILKE GADE", "Name": "WALLACE, ISZA", "Address": "PO Box 6161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6000, "Improved_V": 500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.402685596700003, "SHAPE_Area": 218.036062128 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358106.668600000441074, 257156.614599999040365 ], [ 358108.194899998605251, 257166.75959999859333 ], [ 358127.557199999690056, 257165.651500001549721 ], [ 358126.047100000083447, 257153.606800001114607 ], [ 358106.668600000441074, 257156.614599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302252700", "MAP": null, "PARCEL_NAM": "8C JODE GADE", "ACRE": "1,607 sq ft", "LONGITUDE": -64.93665364, "LATITUDE": 18.34393522, "OBJECTID_1": 10369, "PARCEL_NO_": "105302252700", "Tax_Legal_": "8C JODE GADE CROWN PRINCE QTR", "Name": "CONSTANCE JACKSON LIFE ESTATE", "Address": "PO Box 4445", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.941966377900002, "SHAPE_Area": 177.78157089499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358202.558600001037121, 257164.57660000026226 ], [ 358201.032300002872944, 257154.431600000709295 ], [ 358191.345799997448921, 257155.618900001049042 ], [ 358184.079999998211861, 257156.614900000393391 ], [ 358185.604500003159046, 257166.971000000834465 ], [ 358202.558600001037121, 257164.57660000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302122600", "MAP": null, "PARCEL_NAM": "122", "ACRE": null, "LONGITUDE": -64.94058273, "LATITUDE": 18.3438403, "OBJECTID_1": 9865, "PARCEL_NO_": "105302122600", "Tax_Legal_": "122 ANNA'S FANCY KRONP QTR", "Name": "SIMMONDS, EARL & MILLICENT", "Address": "PO Box 502912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32000, "Improved_V": 90100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.586788665100002, "SHAPE_Area": 449.17674519600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357770.621500000357628, 257132.121599998325109 ], [ 357770.36259999871254, 257162.5168999992311 ], [ 357784.080700002610683, 257161.36259999871254 ], [ 357787.546899996697903, 257133.104499999433756 ], [ 357770.621500000357628, 257132.121599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302160900", "MAP": null, "PARCEL_NAM": "JOHNS STREET 5", "ACRE": null, "LONGITUDE": -64.9395755, "LATITUDE": 18.34391573, "OBJECTID_1": 9997, "PARCEL_NO_": "105302160900", "Tax_Legal_": "JOHNS STREET 5 CROWN PRINCE QUARTER", "Name": "JOSEPH, BEVERLY A.D.", "Address": "PO BOX 9443", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15900, "Improved_V": 70200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.036852541900004, "SHAPE_Area": 263.651598799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357888.9966000020504, 257151.033399999141693 ], [ 357880.937100000679493, 257150.545200001448393 ], [ 357872.877499997615814, 257150.057100001722574 ], [ 357871.988499999046326, 257159.760099999606609 ], [ 357878.413800001144409, 257162.76799999922514 ], [ 357897.797700002789497, 257159.127000000327826 ], [ 357898.668700002133846, 257151.534699998795986 ], [ 357888.9966000020504, 257151.033399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302183800", "MAP": null, "PARCEL_NAM": "SILKE GADE 7A", "ACRE": null, "LONGITUDE": -64.93713648000001, "LATITUDE": 18.34391289, "OBJECTID_1": 10130, "PARCEL_NO_": "105302183800", "Tax_Legal_": "7A SILKE GADE CROWN PRINCE QTR", "Name": "YVONNE BLYDEN MOOLENAAR & OTHERS", "Address": "7166 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10000, "Improved_V": 183500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.060516574799998, "SHAPE_Area": 217.439688743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358133.208599999547005, 257164.853399999439716 ], [ 358152.586999997496605, 257161.845600001513958 ], [ 358151.067900002002716, 257150.856300000101328 ], [ 358132.501199997961521, 257153.237399999052286 ], [ 358133.208599999547005, 257164.853399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302340300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93486982, "LATITUDE": 18.34388476, "OBJECTID_1": 10598, "PARCEL_NO_": "105302340300", "Tax_Legal_": "15D VESTER GADE QUEENS QTR", "Name": "STEELE,WEBBE-SMITH, CELESTE A., HENRIQUETA", "Address": "PO Box 303626", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.391887386599997, "SHAPE_Area": 242.03459820899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358393.748199999332428, 257155.164500001817942 ], [ 358379.310099996626377, 257146.180399999022484 ], [ 358374.411100000143051, 257153.317499998956919 ], [ 358371.142700001597404, 257158.35700000077486 ], [ 358382.357299998402596, 257167.10359999909997 ], [ 358393.748199999332428, 257155.164500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302165600", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 23", "ACRE": null, "LONGITUDE": -64.93933299, "LATITUDE": 18.34390878, "OBJECTID_1": 10047, "PARCEL_NO_": "105302165600", "Tax_Legal_": "NY NORDSIDEVEJ 23 CROWN PRINCE QTR", "Name": "DAVID, WILFRED S", "Address": "PO Box 8092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.166601033799999, "SHAPE_Area": 184.24934774799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357912.381399996578693, 257151.013700000941753 ], [ 357902.736299999058247, 257147.346099998801947 ], [ 357900.22919999808073, 257157.669199999421835 ], [ 357917.924900002777576, 257162.880300000309944 ], [ 357920.419399999082088, 257154.034800000488758 ], [ 357912.381399996578693, 257151.013700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301140700", "MAP": null, "PARCEL_NAM": "200-8G", "ACRE": null, "LONGITUDE": -64.94376078000001, "LATITUDE": 18.34373881, "OBJECTID_1": 9482, "PARCEL_NO_": "105301140700", "Tax_Legal_": "ALTONA & WELGUNST 200-8G CROWN PRINCE QTR.", "Name": "SWAN-RIVERA LUZ M.", "Address": "PO Box 305653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42100, "Improved_V": 141000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.463067165, "SHAPE_Area": 686.51044973399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357459.901100002229214, 257127.128800000995398 ], [ 357431.328400000929832, 257115.573600001633167 ], [ 357428.726999998092651, 257131.434300001710653 ], [ 357427.207800000905991, 257141.314399998635054 ], [ 357451.015900000929832, 257148.958099998533726 ], [ 357453.629199996590614, 257142.614900000393391 ], [ 357459.901100002229214, 257127.128800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302122700", "MAP": null, "PARCEL_NAM": "121", "ACRE": null, "LONGITUDE": -64.94042181, "LATITUDE": 18.34384463, "OBJECTID_1": 9866, "PARCEL_NO_": "105302122700", "Tax_Legal_": "ANNAS FANCY 121 KRONP QTR", "Name": "KRIGGER, IDALIA", "Address": "PO Box 303891", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30400, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.832258051899998, "SHAPE_Area": 507.13196857700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357787.546899996697903, 257133.104499999433756 ], [ 357784.080700002610683, 257161.36259999871254 ], [ 357804.254699997603893, 257159.627900000661612 ], [ 357805.276799999177456, 257134.305100001394749 ], [ 357787.546899996697903, 257133.104499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302252800", "MAP": null, "PARCEL_NAM": "8B JODE GADE", "ACRE": null, "LONGITUDE": -64.93652001, "LATITUDE": 18.34391628, "OBJECTID_1": 10370, "PARCEL_NO_": "105302252800", "Tax_Legal_": "JODE GADE 8B CROWN PRINCE QTR", "Name": "RICHARDSON, GISELLE", "Address": "PO Box 1327", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.173026773099998, "SHAPE_Area": 116.081843554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358212.335100002586842, 257152.835400000214577 ], [ 358201.032300002872944, 257154.431600000709295 ], [ 358202.558600001037121, 257164.57660000026226 ], [ 358213.863200001418591, 257162.769299998879433 ], [ 358212.335100002586842, 257152.835400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302162200", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 21C REMAINDER", "ACRE": null, "LONGITUDE": -64.93894906, "LATITUDE": 18.34384085, "OBJECTID_1": 10010, "PARCEL_NO_": "105302162200", "Tax_Legal_": "NY NORDSIDEVEJ 21C REMAINDER CROWN PRINCE QUARTER", "Name": "NEWTON, FRANKLIN & JOHN C.", "Address": "19041 BEATRICE LANE", "City": "LAND O LAKES", "State": "Florida", "Zip": 34638, "Country": "United States", "Land_Value": 18600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.71938403, "SHAPE_Area": 306.45624902700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357947.997699998319149, 257135.050999999046326 ], [ 357941.343999996781349, 257158.850099999457598 ], [ 357950.990900002419949, 257162.306499999016523 ], [ 357961.670800000429153, 257139.173700001090765 ], [ 357947.997699998319149, 257135.050999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302190100", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9B", "ACRE": null, "LONGITUDE": -64.93772156, "LATITUDE": 18.34383648, "OBJECTID_1": 10144, "PARCEL_NO_": "105302190100", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9B CROWN PRINCE QUARTER", "Name": "MALONE, MARY & ROMEO A. & OFORI-ATTA, KWASI (LIFE ESTATE)", "Address": "P.O. BOX 1913", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45700, "Improved_V": 42800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.679418723, "SHAPE_Area": 819.46459761599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358100.252300001680851, 257152.551300000399351 ], [ 358104.429499998688698, 257135.486900001764297 ], [ 358090.740099996328354, 257133.263900000602007 ], [ 358079.397799998521805, 257139.503899998962879 ], [ 358056.715000003576279, 257151.772799998521805 ], [ 358054.200699999928474, 257162.940200001001358 ], [ 358066.302599996328354, 257162.19480000063777 ], [ 358079.214400000870228, 257161.034000001847744 ], [ 358081.681900002062321, 257155.354600001126528 ], [ 358100.252300001680851, 257152.551300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301112800", "MAP": null, "PARCEL_NAM": "200-6H", "ACRE": null, "LONGITUDE": -64.94513881, "LATITUDE": 18.34379918, "OBJECTID_1": 9420, "PARCEL_NO_": "105301112800", "Tax_Legal_": "200-6H ALTONA&WELGUNST CROWN PRINCE QTR", "Name": "KING, VIOLA & JENNIFER", "Address": "PO Box 307227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38200, "Improved_V": 89700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.643523018, "SHAPE_Area": 615.55593036599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357311.822499997913837, 257129.210900001227856 ], [ 357293.359999999403954, 257119.349500000476837 ], [ 357281.819899998605251, 257148.808100000023842 ], [ 357289.856100000441074, 257152.040300000458956 ], [ 357298.680600002408028, 257157.389899998903275 ], [ 357311.822499997913837, 257129.210900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302310800", "MAP": null, "PARCEL_NAM": "VESTER GADE 37", "ACRE": null, "LONGITUDE": -64.9353886, "LATITUDE": 18.34383848, "OBJECTID_1": 10524, "PARCEL_NO_": "105302310800", "Tax_Legal_": "VESTER GADE 37 QUEENS QUARTER", "Name": "GABRIEL STEELE", "Address": "PO Box 5483", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 54000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.968875717000003, "SHAPE_Area": 366.17096191500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358340.515299998223782, 257149.236000001430511 ], [ 358340.452500000596046, 257149.123399998992682 ], [ 358323.621500000357628, 257138.351599998772144 ], [ 358313.145700000226498, 257151.127300001680851 ], [ 358330.771300002932549, 257164.570500001311302 ], [ 358340.515299998223782, 257149.236000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302122800", "MAP": null, "PARCEL_NAM": "120", "ACRE": null, "LONGITUDE": -64.94026657000001, "LATITUDE": 18.34383939, "OBJECTID_1": 9867, "PARCEL_NO_": "105302122800", "Tax_Legal_": "ANNAS FANCY 120 KROMP QTR", "Name": "HODGE, WINIFRED", "Address": "18 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026212, "Country": "United States", "Land_Value": 30400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.615826933899996, "SHAPE_Area": 328.92350855000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357805.276799999177456, 257134.305100001394749 ], [ 357804.254699997603893, 257159.627900000661612 ], [ 357817.164599999785423, 257158.678100001066923 ], [ 357819.776000000536442, 257136.112500000745058 ], [ 357805.276799999177456, 257134.305100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401271700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93208734, "LATITUDE": 18.34388667, "OBJECTID_1": 11882, "PARCEL_NO_": "105401271700", "Tax_Legal_": "STORE GRONNE GADE 4 QUEENS QUARTER", "Name": "SEWER, EMANUEL", "Address": "P.O. BOX 2803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.449585477799999, "SHAPE_Area": 228.07710568799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358684.069200001657009, 257151.841099999845028 ], [ 358668.749300003051758, 257151.715799998492002 ], [ 358667.817100003361702, 257166.484700001776218 ], [ 358683.135200001299381, 257166.821100000292063 ], [ 358684.069200001657009, 257151.841099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302253100", "MAP": null, "PARCEL_NAM": "SILKE GADE 3A", "ACRE": null, "LONGITUDE": -64.93636375, "LATITUDE": 18.34385418, "OBJECTID_1": 10373, "PARCEL_NO_": "105302253100", "Tax_Legal_": "SILKE GADE 3A CROWN PRINCE QTR", "Name": "RICHARDS, AGATHA", "Address": "P O BOX 5186", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16300, "Improved_V": 53700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.103904228399998, "SHAPE_Area": 302.63014197799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358217.894799999892712, 257162.802299998700619 ], [ 358232.426399998366833, 257160.810300000011921 ], [ 358230.97919999808073, 257141.37779999896884 ], [ 358214.834899999201298, 257143.356600001454353 ], [ 358217.894799999892712, 257162.802299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401271600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93231143, "LATITUDE": 18.3438827, "OBJECTID_1": 11881, "PARCEL_NO_": "105401271600", "Tax_Legal_": "MURPHY GADE 18 QUEENS QUARTER", "Name": "BYRON A MADURO FAMILY TRUST", "Address": "PO Box 10972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.664784643900006, "SHAPE_Area": 465.77203643600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358668.749300003051758, 257151.715799998492002 ], [ 358634.885999999940395, 257151.22749999910593 ], [ 358637.184399999678135, 257165.389600001275539 ], [ 358660.562100000679493, 257166.214200001209974 ], [ 358667.817100003361702, 257166.484700001776218 ], [ 358668.749300003051758, 257151.715799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302161000", "MAP": "D9-9296-T016", "PARCEL_NAM": "HODGES STREET 25", "ACRE": "0.06", "LONGITUDE": -64.93981791, "LATITUDE": 18.3437782, "OBJECTID_1": 9998, "PARCEL_NO_": "105302161000", "Tax_Legal_": "25 HODGES STREET CROWN PRINCE QUARTER", "Name": "JACKSON, GERTRUDIS", "Address": "PO Box 9172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15500, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.135542204, "SHAPE_Area": 605.93806886499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357869.016800001263618, 257129.971599999815226 ], [ 357848.122800000011921, 257121.567899998277426 ], [ 357847.961000002920628, 257140.565000001341105 ], [ 357847.888999998569489, 257149.008200000971556 ], [ 357871.988499999046326, 257159.760099999606609 ], [ 357872.877499997615814, 257150.057100001722574 ], [ 357867.251299999654293, 257147.900100000202656 ], [ 357869.016800001263618, 257129.971599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302183000", "MAP": null, "PARCEL_NAM": "GAASE GADE 1A", "ACRE": null, "LONGITUDE": -64.93697628, "LATITUDE": 18.34388873, "OBJECTID_1": 10122, "PARCEL_NO_": "105302183000", "Tax_Legal_": "GAASE GADE 1A CROWN PRINCE QUARTER", "Name": "DEAN ALFRED and DONALD JAMES DEGRAFF", "Address": "99 NW 183 St", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 9800, "Improved_V": 23000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.878763298899997, "SHAPE_Area": 163.39865903200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358151.067900002002716, 257150.856300000101328 ], [ 358152.586999997496605, 257161.845600001513958 ], [ 358167.12219999730587, 257159.431400001049042 ], [ 358166.405799999833107, 257148.870900001376867 ], [ 358151.067900002002716, 257150.856300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302122900", "MAP": null, "PARCEL_NAM": "119", "ACRE": null, "LONGITUDE": -64.94011113000001, "LATITUDE": 18.3438539, "OBJECTID_1": 9868, "PARCEL_NO_": "105302122900", "Tax_Legal_": "ANNAS FANCY 119 KRONPRINDSENS QTR", "Name": "STRONG, GLENDA", "Address": "3057 S Legacy Park Blvd", "City": "Fort Mill", "State": "South Carolina", "Zip": 29707, "Country": "United States", "Land_Value": 32000, "Improved_V": 72200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.128208229899997, "SHAPE_Area": 376.24376743599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357817.164599999785423, 257158.678100001066923 ], [ 357835.726000003516674, 257156.93019999936223 ], [ 357838.971000000834465, 257154.634700000286102 ], [ 357840.60700000077486, 257151.903900001198053 ], [ 357839.053800001740456, 257144.92509999871254 ], [ 357835.050999999046326, 257141.514800000935793 ], [ 357819.776000000536442, 257136.112500000745058 ], [ 357817.164599999785423, 257158.678100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302162100", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 21B", "ACRE": null, "LONGITUDE": -64.93907473, "LATITUDE": 18.34380713, "OBJECTID_1": 10009, "PARCEL_NO_": "105302162100", "Tax_Legal_": "NY NORDSIDEVEJ 21B CROWN PRINCE QUARTER", "Name": "NEWTON, FRED, FRANKLIN, LANCELOT & RYAN L. CHOW", "Address": "1908 Thornhill Rd", "City": "Wesley Chapel", "State": "Florida", "Zip": 335444923, "Country": "United States", "Land_Value": 22700, "Improved_V": 172100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.530843860700003, "SHAPE_Area": 372.41534085699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357947.997699998319149, 257135.050999999046326 ], [ 357932.717299997806549, 257130.281800001859665 ], [ 357927.67620000243187, 257154.094200000166893 ], [ 357941.343999996781349, 257158.850099999457598 ], [ 357947.997699998319149, 257135.050999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302400500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93261737, "LATITUDE": 18.34386028, "OBJECTID_1": 10690, "PARCEL_NO_": "105302400500", "Tax_Legal_": "13 MURPHY GADE QUEENS QUARTER", "Name": "WESLEY E and TRACY L CAMPBELL", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046347, "Country": "United States", "Land_Value": 21000, "Improved_V": 172000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.700881628000005, "SHAPE_Area": 363.13806303600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358628.485799998044968, 257145.264499999582767 ], [ 358605.043399997055531, 257152.038699999451637 ], [ 358611.387800000607967, 257164.545200001448393 ], [ 358632.366300001740456, 257163.028099998831749 ], [ 358630.0625, 257149.499299999326468 ], [ 358628.485799998044968, 257145.264499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401271800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93190469, "LATITUDE": 18.3438833, "OBJECTID_1": 11883, "PARCEL_NO_": "105401271800", "Tax_Legal_": "STORE GRONNE GADE 6A QUEENS QUARTER", "Name": "WATLINGTON, JR., ARTURO, ARTRA, ARTURO III, & ARSENIO", "Address": "PO Box 261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.461564691900001, "SHAPE_Area": 116.421960172 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358690.409999996423721, 257164.76969999819994 ], [ 358700.08219999819994, 257165.271099999547005 ], [ 358700.182899996638298, 257153.450699999928474 ], [ 358690.514300003647804, 257152.527199998497963 ], [ 358690.409999996423721, 257164.76969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301132400", "MAP": null, "PARCEL_NAM": "200-7-19", "ACRE": null, "LONGITUDE": -64.94408273000001, "LATITUDE": 18.34376788, "OBJECTID_1": 9470, "PARCEL_NO_": "105301132400", "Tax_Legal_": "ALTONA & WELGUNST 200-7-19 CROWN PRINCE QTR", "Name": "WILKINS, CHARLES", "Address": "PO Box 303134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32100, "Improved_V": 120300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.633846170200002, "SHAPE_Area": 545.674061897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357393.141400001943111, 257143.808600001037121 ], [ 357418.409800000488758, 257148.540100000798702 ], [ 357422.289099998772144, 257129.903900001198053 ], [ 357422.844099998474121, 257127.126499999314547 ], [ 357407.617299996316433, 257124.602699998766184 ], [ 357398.520900003612041, 257123.094999998807907 ], [ 357396.481700003147125, 257130.3260000012815 ], [ 357393.141400001943111, 257143.808600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302253200", "MAP": null, "PARCEL_NAM": "SILKE GADE 2A", "ACRE": null, "LONGITUDE": -64.93621999, "LATITUDE": 18.34383631, "OBJECTID_1": 10374, "PARCEL_NO_": "105302253200", "Tax_Legal_": "SILKE GADE 2A CROWN PRINCE QTR", "Name": "LLOYD, MALCOLM", "Address": "P.O. BOX 3571", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16600, "Improved_V": 75400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.826135527199995, "SHAPE_Area": 292.926177026 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358232.426399998366833, 257160.810300000011921 ], [ 358238.07769999653101, 257160.012099999934435 ], [ 358246.957999996840954, 257158.818300001323223 ], [ 358247.011900000274181, 257152.48589999973774 ], [ 358246.31530000269413, 257139.603500001132488 ], [ 358230.97919999808073, 257141.37779999896884 ], [ 358232.426399998366833, 257160.810300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173300", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9 HA", "ACRE": null, "LONGITUDE": -64.93857769, "LATITUDE": 18.34380197, "OBJECTID_1": 10079, "PARCEL_NO_": "105302173300", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9 HA CROWN PRINCE QUARTER", "Name": "P E FRANCIS PROPERTIES LLC", "Address": "PO Box 302471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28900, "Improved_V": 67200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.789893851299993, "SHAPE_Area": 509.42537463100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357984.136100001633167, 257152.445300001651049 ], [ 358001.99040000140667, 257154.23030000180006 ], [ 358001.948299996554852, 257154.431800000369549 ], [ 358009.167700000107288, 257148.428300000727177 ], [ 358009.209100000560284, 257143.573499999940395 ], [ 357977.861800000071526, 257131.706799998879433 ], [ 357971.317800000309944, 257142.630100000649691 ], [ 357984.136100001633167, 257152.445300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302182900", "MAP": null, "PARCEL_NAM": "GAASE GADE 2B", "ACRE": null, "LONGITUDE": -64.93680228, "LATITUDE": 18.34386286, "OBJECTID_1": 10121, "PARCEL_NO_": "105302182900", "Tax_Legal_": "GAASE GADE 2B CROWN PRINCE QTR", "Name": "BAGNAL, AGATHA", "Address": "2B GAAS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.095126669700001, "SHAPE_Area": 119.99623629600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358171.970899999141693, 257158.204500000923872 ], [ 358184.079999998211861, 257156.614900000393391 ], [ 358183.35639999806881, 257146.898699998855591 ], [ 358171.249099999666214, 257148.277199998497963 ], [ 358171.970899999141693, 257158.204500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302253300", "MAP": null, "PARCEL_NAM": "SILKE GADE 2CC", "ACRE": null, "LONGITUDE": -64.93610222, "LATITUDE": 18.34388042, "OBJECTID_1": 10375, "PARCEL_NO_": "105302253300", "Tax_Legal_": "SILKE GADE 2CC CROWN PRINCE QTR", "Name": "HODGE, ELMAN", "Address": "P.O. BOX 3612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.255566308700001, "SHAPE_Area": 58.296117085799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358255.892099998891354, 257151.291999999433756 ], [ 358247.011900000274181, 257152.48589999973774 ], [ 358246.957999996840954, 257158.818300001323223 ], [ 358256.646300002932549, 257157.419900000095367 ], [ 358255.892099998891354, 257151.291999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302321500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93596912, "LATITUDE": 18.34384649, "OBJECTID_1": 10555, "PARCEL_NO_": "105302321500", "Tax_Legal_": "SILKE GADE 1BBA CROWN PRINCE QTR", "Name": "HYMAN, ALFRED", "Address": "2801 Silke Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6900, "Improved_V": 16400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.964345233499998, "SHAPE_Area": 124.76140394799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358271.158100001513958, 257157.749800000339746 ], [ 358268.865099996328354, 257142.954500000923872 ], [ 358260.776799999177456, 257145.843600001186132 ], [ 358261.475199997425079, 257158.514899998903275 ], [ 358271.158100001513958, 257157.749800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301141500", "MAP": null, "PARCEL_NAM": "200-8P", "ACRE": null, "LONGITUDE": -64.9430779, "LATITUDE": 18.34372809, "OBJECTID_1": 9489, "PARCEL_NO_": "105301141500", "Tax_Legal_": "ALTONA & WELGUNST 200-8P CROWN PRINCE QTR", "Name": "RICHARDSON, KATHLEEN & CALLIX", "Address": "3566 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 160600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.834347255, "SHAPE_Area": 786.52740803799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357529.579000003635883, 257124.871399998664856 ], [ 357506.249899998307228, 257118.347699999809265 ], [ 357498.206600002944469, 257115.959800001233816 ], [ 357497.990800000727177, 257141.289299998432398 ], [ 357506.858400002121925, 257141.572900000959635 ], [ 357513.292700000107288, 257143.525400001555681 ], [ 357515.695500001311302, 257145.445000000298023 ], [ 357519.671300001442432, 257152.02140000090003 ], [ 357536.8125, 257127.674800001084805 ], [ 357529.579000003635883, 257124.871399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302321700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93587679, "LATITUDE": 18.34382989, "OBJECTID_1": 10557, "PARCEL_NO_": "105302321700", "Tax_Legal_": "SILKE GADE 1A CROWN PRINCE", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.606358315999998, "SHAPE_Area": 167.99440236699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358281.647399999201298, 257156.991200000047684 ], [ 358280.16780000180006, 257141.358199998736382 ], [ 358268.865099996328354, 257142.954500000923872 ], [ 358271.158100001513958, 257157.749800000339746 ], [ 358281.647399999201298, 257156.991200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302340200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93500861, "LATITUDE": 18.34383875, "OBJECTID_1": 10597, "PARCEL_NO_": "105302340200", "Tax_Legal_": "VESTER GADE 16BA QUEENS QUARTER", "Name": "GEORGE, WIMOUTH", "Address": "158 11 76TH AVE", "City": "Flushing", "State": "New York", "Zip": 11351, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.639090582800002, "SHAPE_Area": 88.848647364200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358374.411100000143051, 257153.317499998956919 ], [ 358364.00450000166893, 257144.366399999707937 ], [ 358359.92620000243187, 257149.82149999961257 ], [ 358371.142700001597404, 257158.35700000077486 ], [ 358374.411100000143051, 257153.317499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301141200", "MAP": null, "PARCEL_NAM": "200-8M", "ACRE": null, "LONGITUDE": -64.94348585, "LATITUDE": 18.34378387, "OBJECTID_1": 9487, "PARCEL_NO_": "105301141200", "Tax_Legal_": "ALTONA & WELGUNST 200-8M CROWN PRINCE", "Name": "CONNOR, DUNCAN A. & LEORTHA F.", "Address": "PO Box 10544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.541317624200005, "SHAPE_Area": 585.08702117500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357490.715999998152256, 257143.340700000524521 ], [ 357482.75900000333786, 257130.820999998599291 ], [ 357461.042499996721745, 257124.310499999672174 ], [ 357453.629199996590614, 257142.614900000393391 ], [ 357476.139399997889996, 257150.609600000083447 ], [ 357485.865500003099442, 257144.778599999845028 ], [ 357490.715999998152256, 257143.340700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302162000", "MAP": null, "PARCEL_NAM": "NY NODSIDEVEJ 21A", "ACRE": null, "LONGITUDE": -64.93921174, "LATITUDE": 18.34377207, "OBJECTID_1": 10008, "PARCEL_NO_": "105302162000", "Tax_Legal_": "NY NODSIDEVEJ 21A CROWN PRINCE QUARTER", "Name": "NEWTON, FRED, FRANKLIN, LANCELOT & RYAN L. CHOW", "Address": "1908 Thornhill Rd", "City": "Wesley Chapel", "State": "Florida", "Zip": 335444923, "Country": "United States", "Land_Value": 21800, "Improved_V": 203400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.445255145299996, "SHAPE_Area": 347.225033849 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357932.717299997806549, 257130.281800001859665 ], [ 357918.225199997425079, 257127.630100000649691 ], [ 357913.203900001943111, 257149.120600000023842 ], [ 357927.67620000243187, 257154.094200000166893 ], [ 357932.717299997806549, 257130.281800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301112900", "MAP": null, "PARCEL_NAM": "200-6J", "ACRE": null, "LONGITUDE": -64.9453129, "LATITUDE": 18.34370841, "OBJECTID_1": 9421, "PARCEL_NO_": "105301112900", "Tax_Legal_": "ALTONA & WELGUNST 200-6J CROWN PRINCE QTR", "Name": "WEBBE TRUST", "Address": "200-6J Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.03156730800001, "SHAPE_Area": 757.25114472099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357276.5371999964118, 257106.335099998861551 ], [ 357261.730400003492832, 257140.62220000103116 ], [ 357275.630900003015995, 257146.286299999803305 ], [ 357281.819899998605251, 257148.808100000023842 ], [ 357293.359999999403954, 257119.349500000476837 ], [ 357281.373199999332428, 257106.585799999535084 ], [ 357276.5371999964118, 257106.335099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302252500", "MAP": null, "PARCEL_NAM": "8D JODE GADE", "ACRE": null, "LONGITUDE": -64.93663042, "LATITUDE": 18.34384042, "OBJECTID_1": 10367, "PARCEL_NO_": "105302252500", "Tax_Legal_": "JODE GADE 8D CROWN PRINCE QTR", "Name": "NEADLE, CAROLINE & OTHERS", "Address": "PO Box 7244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3800, "Improved_V": 14500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.004202530699999, "SHAPE_Area": 94.975101648000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358201.032300002872944, 257154.431600000709295 ], [ 358200.308700002729893, 257144.715399999171495 ], [ 358190.62219999730587, 257145.902699999511242 ], [ 358191.345799997448921, 257155.618900001049042 ], [ 358201.032300002872944, 257154.431600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302253500", "MAP": null, "PARCEL_NAM": "8A JODE GADE", "ACRE": null, "LONGITUDE": -64.93653143, "LATITUDE": 18.34382759, "OBJECTID_1": 10377, "PARCEL_NO_": "105302253500", "Tax_Legal_": "JODE GADE 8A CROWN PRINCE QTR", "Name": "MELCHOIR, EARLA", "Address": "PO Box 10841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.076477242099998, "SHAPE_Area": 109.699182475 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358200.308700002729893, 257144.715399999171495 ], [ 358201.032300002872944, 257154.431600000709295 ], [ 358212.335100002586842, 257152.835400000214577 ], [ 358211.609700001776218, 257143.330200001597404 ], [ 358200.308700002729893, 257144.715399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302161500", "MAP": null, "PARCEL_NAM": "JOHNS STREET 4", "ACRE": null, "LONGITUDE": -64.93948188, "LATITUDE": 18.34382531, "OBJECTID_1": 10003, "PARCEL_NO_": "105302161500", "Tax_Legal_": "JOHNS STREET 4 CROWN PRINCE QUARTER", "Name": "RIVERA, CECILIA, VICTOR, & OTHERS", "Address": "6323 Mallard View Ln", "City": "Charlotte", "State": "North Carolina", "Zip": 28269, "Country": "United States", "Land_Value": 6500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.9433626784, "SHAPE_Area": 97.443409733600006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357891.51799999922514, 257139.021699998527765 ], [ 357888.9966000020504, 257151.033399999141693 ], [ 357898.668700002133846, 257151.534699998795986 ], [ 357899.554200001060963, 257142.253899998962879 ], [ 357891.51799999922514, 257139.021699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302161400", "MAP": null, "PARCEL_NAM": "JOHNS STREET 3", "ACRE": null, "LONGITUDE": -64.93956293, "LATITUDE": 18.34380566, "OBJECTID_1": 10002, "PARCEL_NO_": "105302161400", "Tax_Legal_": "JOHNS STREET 3 CROWN PRINCE QUARTER", "Name": "RIVERA, CECILIA, VICTOR, & OTHERS", "Address": "6323 Mallard View Ln", "City": "Charlotte", "State": "North Carolina", "Zip": 28269, "Country": "United States", "Land_Value": 8100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.1988544, "SHAPE_Area": 119.314915164 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357882.679200001060963, 257135.360700000077486 ], [ 357880.937100000679493, 257150.545200001448393 ], [ 357888.9966000020504, 257151.033399999141693 ], [ 357891.51799999922514, 257139.021699998527765 ], [ 357882.679200001060963, 257135.360700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302161900", "MAP": null, "PARCEL_NAM": "NYE NORSIDEVEJ 21 REM & 21D", "ACRE": null, "LONGITUDE": -64.93933445, "LATITUDE": 18.34374742, "OBJECTID_1": 10007, "PARCEL_NO_": "105302161900", "Tax_Legal_": "NYE NORSIDEVEJ 21 REM & 21D CROWN PRINCE QUARTER", "Name": "FRETT, CRESENCIA", "Address": "PO Box 304340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18200, "Improved_V": 61000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.155612062000003, "SHAPE_Area": 271.30910504000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357918.225199997425079, 257127.630100000649691 ], [ 357908.580099999904633, 257123.962600000202656 ], [ 357902.797399997711182, 257140.16950000077486 ], [ 357902.736299999058247, 257147.346099998801947 ], [ 357912.381399996578693, 257151.013700000941753 ], [ 357913.203900001943111, 257149.120600000023842 ], [ 357918.225199997425079, 257127.630100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302191100", "MAP": null, "PARCEL_NAM": "GAMLE NORDISDEVEJ 9 Q", "ACRE": null, "LONGITUDE": -64.93743531, "LATITUDE": 18.3437209, "OBJECTID_1": 10153, "PARCEL_NO_": "105302191100", "Tax_Legal_": "GAMLE NORDISDEVEJ 9 Q CROWN PRINCE QTR", "Name": "FLEMING, JOANNE,McCLEVERTY,MONIQUE,JOHN E.", "Address": "2001 Gamble Nordsidevej 9Q", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38200, "Improved_V": 536500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.953317521, "SHAPE_Area": 423.90162456199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358118.014499999582767, 257149.952500000596046 ], [ 358115.946199998259544, 257108.772300001233816 ], [ 358105.271700002253056, 257131.271899998188019 ], [ 358104.429499998688698, 257135.486900001764297 ], [ 358100.252300001680851, 257152.551300000399351 ], [ 358118.014499999582767, 257149.952500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302340700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93480063, "LATITUDE": 18.34375031, "OBJECTID_1": 10602, "PARCEL_NO_": "105302340700", "Tax_Legal_": "VESTER GADE 15B QUEENS QUARTER", "Name": "DOWNING, MARTHA", "Address": "BOX 3761", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13900, "Improved_V": 30200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.8270683593, "SHAPE_Area": 455.72943238400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358381.885499998927116, 257127.836399998515844 ], [ 358373.692900002002716, 257142.967999998480082 ], [ 358379.310099996626377, 257146.180399999022484 ], [ 358393.748199999332428, 257155.164500001817942 ], [ 358406.762500002980232, 257141.972100000828505 ], [ 358381.885499998927116, 257127.836399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302161300", "MAP": null, "PARCEL_NAM": "JOHNS STREET 2", "ACRE": null, "LONGITUDE": -64.93964283, "LATITUDE": 18.3437881, "OBJECTID_1": 10001, "PARCEL_NO_": "105302161300", "Tax_Legal_": "JOHNS STREET 2 CROWN PRINCE QUARTER", "Name": "RIVERA, CECILIA, VICTOR, & OTHERS", "Address": "6323 Mallard View Ln", "City": "Charlotte", "State": "North Carolina", "Zip": 28269, "Country": "United States", "Land_Value": 10000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.020050305399998, "SHAPE_Area": 143.48584171900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357873.838500000536442, 257131.910900000482798 ], [ 357872.877499997615814, 257150.057100001722574 ], [ 357880.937100000679493, 257150.545200001448393 ], [ 357882.679200001060963, 257135.360700000077486 ], [ 357873.838500000536442, 257131.910900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302190200", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9U", "ACRE": null, "LONGITUDE": -64.93786244, "LATITUDE": 18.34376221, "OBJECTID_1": 10145, "PARCEL_NO_": "105302190200", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9U CROWN PRINCE QUARTER", "Name": "VANTERPOOL, HAROLD & OTHERS", "Address": "PO Box 8632", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9800, "Improved_V": 74700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.640864541300004, "SHAPE_Area": 220.333109984 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358056.715000003576279, 257151.772799998521805 ], [ 358079.397799998521805, 257139.503899998962879 ], [ 358060.931699998676777, 257130.064699999988079 ], [ 358056.715000003576279, 257151.772799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302161200", "MAP": null, "PARCEL_NAM": "JOHNS STREET 1", "ACRE": null, "LONGITUDE": -64.93970686, "LATITUDE": 18.34377425, "OBJECTID_1": 10000, "PARCEL_NO_": "105302161200", "Tax_Legal_": "1 JOHNS STREET CROWN PRINCE QUARTER", "Name": "JACKSON, GERTRUDIS", "Address": "PO Box 9172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.409441238, "SHAPE_Area": 97.018355005399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357869.016800001263618, 257129.971599999815226 ], [ 357867.251299999654293, 257147.900100000202656 ], [ 357872.877499997615814, 257150.057100001722574 ], [ 357873.838500000536442, 257131.910900000482798 ], [ 357869.016800001263618, 257129.971599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173600", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9M", "ACRE": null, "LONGITUDE": -64.93804662, "LATITUDE": 18.34375325, "OBJECTID_1": 10082, "PARCEL_NO_": "105302173600", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9M CROWN PRINCE QTR", "Name": "TROTMAN,TRUSTEE, ETHEL V.", "Address": "6148 Peacock Ct", "City": "Woodbridge", "State": "Virginia", "Zip": 22193, "Country": "United States", "Land_Value": 15800, "Improved_V": 55400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.358269336399999, "SHAPE_Area": 258.63057762699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358053.66950000077486, 257130.6385000012815 ], [ 358041.610799998044968, 257126.317899998277426 ], [ 358040.705600000917912, 257137.920699998736382 ], [ 358039.791400000452995, 257150.57880000025034 ], [ 358050.269900001585484, 257151.086800001561642 ], [ 358053.66950000077486, 257130.6385000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302253400", "MAP": null, "PARCEL_NAM": "SILKE GADE 2BB", "ACRE": null, "LONGITUDE": -64.93610783, "LATITUDE": 18.3437937, "OBJECTID_1": 10376, "PARCEL_NO_": "105302253400", "Tax_Legal_": "SILKE GADE 2BB CROWN PRINCE QTR", "Name": "HODGE, CALVIN & OTHERS", "Address": "P.O. BOX 3612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5400, "Improved_V": 29400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.722635519000001, "SHAPE_Area": 115.22995918700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358246.31530000269413, 257139.603500001132488 ], [ 358247.011900000274181, 257152.48589999973774 ], [ 358255.892099998891354, 257151.291999999433756 ], [ 358255.195500001311302, 257138.409600000828505 ], [ 358246.31530000269413, 257139.603500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173500", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9D", "ACRE": null, "LONGITUDE": -64.93819298, "LATITUDE": 18.34379307, "OBJECTID_1": 10081, "PARCEL_NO_": "105302173500", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9D CROWN PRINCE QUARTER", "Name": "PAYNE, DOROTHY", "Address": "PO Box 306805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12100, "Improved_V": 60600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.862601710200003, "SHAPE_Area": 245.52392820899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358040.705600000917912, 257137.920699998736382 ], [ 358022.173000000417233, 257136.291299998760223 ], [ 358020.448899999260902, 257149.364999998360872 ], [ 358039.791400000452995, 257150.57880000025034 ], [ 358040.705600000917912, 257137.920699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302340500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93500899, "LATITUDE": 18.34376347, "OBJECTID_1": 10600, "PARCEL_NO_": "105302340500", "Tax_Legal_": "VESTER GADE 16A QUEENS QUARTER", "Name": "MICHELE SHULTERBRANDT AGURKIS TRUST", "Address": "P.O. BOX 5325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.995919692000001, "SHAPE_Area": 164.67655458900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358353.594400003552437, 257135.837499998509884 ], [ 358364.00450000166893, 257144.366399999707937 ], [ 358374.411100000143051, 257153.317499998956919 ], [ 358379.310099996626377, 257146.180399999022484 ], [ 358373.692900002002716, 257142.967999998480082 ], [ 358355.233999997377396, 257132.684500001370907 ], [ 358353.594400003552437, 257135.837499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301130700", "MAP": "F9-3830-T80", "PARCEL_NAM": "200-7-7", "ACRE": null, "LONGITUDE": -64.94460257, "LATITUDE": 18.34373695, "OBJECTID_1": 9454, "PARCEL_NO_": "105301130700", "Tax_Legal_": "ALTONA & WELGUNST 200-7-7 KRONP.PRINCE QTR.", "Name": "ZION ASSEMBLY SCHOOL, INC.", "Address": "PO Box 307821", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.668392197, "SHAPE_Area": 575.79632818100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357341.312399998307228, 257119.872800000011921 ], [ 357338.483900003135204, 257118.898800000548363 ], [ 357333.922600001096725, 257134.4560999982059 ], [ 357336.767800003290176, 257135.325699999928474 ], [ 357368.136699996888638, 257144.659400001168251 ], [ 357372.285199999809265, 257130.972300000488758 ], [ 357372.619999997317791, 257129.216600000858307 ], [ 357341.312399998307228, 257119.872800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173400", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9V", "ACRE": null, "LONGITUDE": -64.93825455, "LATITUDE": 18.34370241, "OBJECTID_1": 10080, "PARCEL_NO_": "105302173400", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9V CROWN PRINCE QUARTER", "Name": "CALLWOOD, ANN R & EBENEZA", "Address": "2007 Gamble Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026535, "Country": "United States", "Land_Value": 22600, "Improved_V": 42600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.91469760300001, "SHAPE_Area": 537.68301711399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358025.515100002288818, 257122.597600001841784 ], [ 358010.186200000345707, 257123.52760000154376 ], [ 358009.209100000560284, 257143.573499999940395 ], [ 358009.167700000107288, 257148.428300000727177 ], [ 358020.448899999260902, 257149.364999998360872 ], [ 358022.173000000417233, 257136.291299998760223 ], [ 358040.705600000917912, 257137.920699998736382 ], [ 358041.610799998044968, 257126.317899998277426 ], [ 358053.66950000077486, 257130.6385000012815 ], [ 358054.515399999916553, 257126.001400001347065 ], [ 358040.043099999427795, 257121.027800001204014 ], [ 358038.428700000047684, 257121.225600000470877 ], [ 358039.150499999523163, 257131.153000000864267 ], [ 358026.240500003099442, 257132.102800000458956 ], [ 358025.515100002288818, 257122.597600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302191200", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9A", "ACRE": null, "LONGITUDE": -64.93733458, "LATITUDE": 18.34365455, "OBJECTID_1": 10154, "PARCEL_NO_": "105302191200", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9A CROWN PRINCE QUARTER", "Name": "GEORGE, NIRESTA", "Address": "2002 Gamble Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15600, "Improved_V": 182000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.183502020899994, "SHAPE_Area": 373.52077974899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358118.014499999582767, 257149.952500000596046 ], [ 358126.89469999819994, 257148.758600000292063 ], [ 358125.616599999368191, 257109.484700001776218 ], [ 358115.946199998259544, 257108.772300001233816 ], [ 358118.014499999582767, 257149.952500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302310700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93548731, "LATITUDE": 18.34365035, "OBJECTID_1": 10523, "PARCEL_NO_": "105302310700", "Tax_Legal_": "GENERAL GADE 11A CROWN PRINCE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.097062300800005, "SHAPE_Area": 288.75698616099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358327.934500001370907, 257118.951099999248981 ], [ 358309.3766999989748, 257120.276799999177456 ], [ 358313.145700000226498, 257151.127300001680851 ], [ 358327.934500001370907, 257118.951099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301141300", "MAP": null, "PARCEL_NAM": "200-8N", "ACRE": null, "LONGITUDE": -64.94337827, "LATITUDE": 18.34365158, "OBJECTID_1": 9488, "PARCEL_NO_": "105301141300", "Tax_Legal_": "ALTONA & WELGUNST 200-8N CROWN PRINCE QTR.", "Name": "CONNOR, DUNCAN & LEORTHA", "Address": "3566 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47500, "Improved_V": 124800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.210384652, "SHAPE_Area": 733.16910811299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357498.206600002944469, 257115.959800001233816 ], [ 357474.87389999628067, 257109.858199998736382 ], [ 357467.629600003361702, 257108.321299999952316 ], [ 357461.042499996721745, 257124.310499999672174 ], [ 357482.75900000333786, 257130.820999998599291 ], [ 357490.715999998152256, 257143.340700000524521 ], [ 357497.990800000727177, 257141.289299998432398 ], [ 357498.206600002944469, 257115.959800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301140600", "MAP": null, "PARCEL_NAM": "200-8F", "ACRE": null, "LONGITUDE": -64.94370689, "LATITUDE": 18.34354517, "OBJECTID_1": 9481, "PARCEL_NO_": "105301140600", "Tax_Legal_": "200-8F ALTONA & WELGUNST CROWN PRINCE QTR", "Name": "RUPERT CONNOR & OTHERS", "Address": "PO Box 303376", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.68186055699999, "SHAPE_Area": 651.31367301600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357431.328400000929832, 257115.573600001633167 ], [ 357459.901100002229214, 257127.128800000995398 ], [ 357461.042499996721745, 257124.310499999672174 ], [ 357467.629600003361702, 257108.321299999952316 ], [ 357452.33669999986887, 257105.029699999839067 ], [ 357439.536399997770786, 257093.103700000792742 ], [ 357435.457999996840954, 257098.558800000697374 ], [ 357432.979800000786781, 257105.504599999636412 ], [ 357431.328400000929832, 257115.573600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302191300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93719738, "LATITUDE": 18.34371573, "OBJECTID_1": 10155, "PARCEL_NO_": "105302191300", "Tax_Legal_": "CROWN PRINCE QUARTER", "Name": "DAWSON, JULIANA", "Address": "PO Box 31", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18200, "Improved_V": 51900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.3162008511, "SHAPE_Area": 226.03671795299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358142.138999998569489, 257145.346400000154972 ], [ 358140.805200003087521, 257125.018899999558926 ], [ 358130.315999999642372, 257125.777399998158216 ], [ 358130.89580000191927, 257146.853999998420477 ], [ 358142.138999998569489, 257145.346400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302400600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93268157, "LATITUDE": 18.34371861, "OBJECTID_1": 10691, "PARCEL_NO_": "105302400600", "Tax_Legal_": "14 MURPHY GADE QUEENS QUARTER", "Name": "WESLEY E and TRACY L CAMPBELL", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046347, "Country": "United States", "Land_Value": 19500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.364478842599993, "SHAPE_Area": 452.579798584 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358618.968299999833107, 257126.610399998724461 ], [ 358597.910700000822544, 257137.414900001138449 ], [ 358605.043399997055531, 257152.038699999451637 ], [ 358628.485799998044968, 257145.264499999582767 ], [ 358626.122599996626377, 257138.701299998909235 ], [ 358618.968299999833107, 257126.610399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302340100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93510682, "LATITUDE": 18.34376419, "OBJECTID_1": 10596, "PARCEL_NO_": "105302340100", "Tax_Legal_": "VESTER GADE 16B QUEENS QUARTER", "Name": "SPRAUVE, FLORENCIA", "Address": "DORSET-3304 FISH AVE", "City": "Bronx", "State": "New York", "Zip": 10469, "Country": "United States", "Land_Value": 3100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.800400401300003, "SHAPE_Area": 90.0396041045 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358359.92620000243187, 257149.82149999961257 ], [ 358364.00450000166893, 257144.366399999707937 ], [ 358353.594400003552437, 257135.837499998509884 ], [ 358350.311599999666214, 257142.565600000321865 ], [ 358359.92620000243187, 257149.82149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301113000", "MAP": null, "PARCEL_NAM": "200-6K", "ACRE": null, "LONGITUDE": -64.94547782, "LATITUDE": 18.34361954, "OBJECTID_1": 9422, "PARCEL_NO_": "105301113000", "Tax_Legal_": "200-6K ALTONA & WELGUNST CROWN PRINCE QUARTER", "Name": "MARGARET S WILLAIMS REVOCABLE TRUST", "Address": "PO Box 8805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40300, "Improved_V": 52200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.197518906, "SHAPE_Area": 747.210824032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357256.426100000739098, 257100.682100001722574 ], [ 357244.891400001943111, 257129.507500000298023 ], [ 357261.730400003492832, 257140.62220000103116 ], [ 357276.5371999964118, 257106.335099998861551 ], [ 357276.567699998617172, 257102.746800001710653 ], [ 357274.9712999984622, 257100.833799999207258 ], [ 357256.426100000739098, 257100.682100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302191400", "MAP": null, "PARCEL_NAM": "SILKE GADE 5", "ACRE": null, "LONGITUDE": -64.93704603, "LATITUDE": 18.3437007, "OBJECTID_1": 10156, "PARCEL_NO_": "105302191400", "Tax_Legal_": "SILKE GADE 5 CROWN PRINCE QUARTER", "Name": "MCBEAN, ELMA THOMAS", "Address": "2805 Silke Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27500, "Improved_V": 74800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.218931194500001, "SHAPE_Area": 421.37609541 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358163.867600001394749, 257142.77250000089407 ], [ 358161.780100002884865, 257123.9239999987185 ], [ 358140.805200003087521, 257125.018899999558926 ], [ 358142.138999998569489, 257145.346400000154972 ], [ 358163.867600001394749, 257142.77250000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302321600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93593578, "LATITUDE": 18.3437427, "OBJECTID_1": 10556, "PARCEL_NO_": "105302321600", "Tax_Legal_": "SILKE GADE 1B CROWN PRINCE QTR", "Name": "GALLOWAY, BRIDGETTE", "Address": "PO Box 9595", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17100, "Improved_V": 24900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.467695190299999, "SHAPE_Area": 132.08107164099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358279.411899998784065, 257135.441399998962879 ], [ 358259.232500001788139, 257137.809399999678135 ], [ 358260.776799999177456, 257145.843600001186132 ], [ 358268.865099996328354, 257142.954500000923872 ], [ 358280.16780000180006, 257141.358199998736382 ], [ 358279.411899998784065, 257135.441399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173700", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9H", "ACRE": null, "LONGITUDE": -64.93850931, "LATITUDE": 18.34363137, "OBJECTID_1": 10083, "PARCEL_NO_": "105302173700", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9H CROWN PRINCE QUARTER", "Name": "MOOLENAAR, LUCIEN, RUTH, GWEN", "Address": "PO BOX 302275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 108900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.614648088, "SHAPE_Area": 724.91193163399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358001.483999997377396, 257103.824700001627207 ], [ 358004.635499998927116, 257112.505300000309944 ], [ 357994.94539999961853, 257114.114799998700619 ], [ 357993.37049999833107, 257109.6689000017941 ], [ 357986.86429999768734, 257116.159600000828505 ], [ 357977.861800000071526, 257131.706799998879433 ], [ 358009.209100000560284, 257143.573499999940395 ], [ 358010.186200000345707, 257123.52760000154376 ], [ 358005.540700003504753, 257100.90260000154376 ], [ 358001.483999997377396, 257103.824700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302191500", "MAP": null, "PARCEL_NAM": "SILKE GADE 4", "ACRE": null, "LONGITUDE": -64.93685492, "LATITUDE": 18.34368669, "OBJECTID_1": 10158, "PARCEL_NO_": "105302191500", "Tax_Legal_": "SILKE GADE 4 CROWN PRINCE QUARTER", "Name": "THOMAS, ELRETH A", "Address": "4001A New Herrnhut", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22200, "Improved_V": 61500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.922226068100002, "SHAPE_Area": 338.73240458700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358183.222099997103214, 257140.479800000786781 ], [ 358181.128100000321865, 257124.50450000166893 ], [ 358171.454099997878075, 257124.214200001209974 ], [ 358161.780100002884865, 257123.9239999987185 ], [ 358163.867600001394749, 257142.77250000089407 ], [ 358183.222099997103214, 257140.479800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301113400", "MAP": null, "PARCEL_NAM": "200-6G-2", "ACRE": null, "LONGITUDE": -64.94505685, "LATITUDE": 18.34357309, "OBJECTID_1": 9426, "PARCEL_NO_": "105301113400", "Tax_Legal_": "ALTONA 200-6G-2 CROWN PRINCE QTR.", "Name": "WEBBE, CHARLES & MANSON", "Address": "STRAEDE11B Pile", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51000, "Improved_V": 123800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.460647857, "SHAPE_Area": 908.14361122900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357281.373199999332428, 257106.585799999535084 ], [ 357293.359999999403954, 257119.349500000476837 ], [ 357311.822499997913837, 257129.210900001227856 ], [ 357325.468699999153614, 257136.499800000339746 ], [ 357324.703699998557568, 257131.638399999588728 ], [ 357316.888800002634525, 257102.443500000983477 ], [ 357316.926500000059605, 257098.010800000280142 ], [ 357291.106499999761581, 257099.910399999469519 ], [ 357283.038000002503395, 257100.477699998766184 ], [ 357282.9949000030756, 257105.543600000441074 ], [ 357281.373199999332428, 257106.585799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302161800", "MAP": null, "PARCEL_NAM": "HODGES STREET 22A", "ACRE": null, "LONGITUDE": -64.93943108000001, "LATITUDE": 18.34367592, "OBJECTID_1": 10006, "PARCEL_NO_": "105302161800", "Tax_Legal_": "HODGES STREET 22A CROWN PRINCE QUARTER", "Name": "CORREA, DANIEL A & LINDA", "Address": "PO Box 12376", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11000, "Improved_V": 22100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.2032487727, "SHAPE_Area": 212.16407957199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357908.580099999904633, 257123.962600000202656 ], [ 357895.718599997460842, 257119.213300000876188 ], [ 357892.351300001144409, 257135.862100001424551 ], [ 357902.797399997711182, 257140.16950000077486 ], [ 357908.580099999904633, 257123.962600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302260100", "MAP": null, "PARCEL_NAM": "JODE GADE 3&4", "ACRE": null, "LONGITUDE": -64.93663267, "LATITUDE": 18.34355869, "OBJECTID_1": 10378, "PARCEL_NO_": "105302260100", "Tax_Legal_": "JODE GADE 3&4 KRONPRINDSENS QTR", "Name": "HEBREW CONGREGATION OF ST. T.", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 161700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.61922387199999, "SHAPE_Area": 1008.98644941 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358207.144000001251698, 257099.597300000488758 ], [ 358207.014700002968311, 257098.468800000846386 ], [ 358181.089100003242493, 257100.899000000208616 ], [ 358181.311499997973442, 257102.974500000476837 ], [ 358184.869699999690056, 257140.128800000995398 ], [ 358210.649400003254414, 257136.41780000180006 ], [ 358207.144000001251698, 257099.597300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401340300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93207321, "LATITUDE": 18.34369647, "OBJECTID_1": 11985, "PARCEL_NO_": "105401340300", "Tax_Legal_": "NYE GADE 7A QUEENS QUARTER", "Name": "GEORGE SAMUEL, DEBBIE V.", "Address": "P O BOX 2441", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8400, "Improved_V": 109300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.729878813399999, "SHAPE_Area": 222.37543299000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358669.731799997389317, 257131.03660000115633 ], [ 358670.415899999439716, 257145.396600000560284 ], [ 358685.733999997377396, 257145.732999999076128 ], [ 358684.252599999308586, 257130.311099998652935 ], [ 358669.731799997389317, 257131.03660000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301121200", "MAP": null, "PARCEL_NAM": "200-5C-2", "ACRE": null, "LONGITUDE": -64.94620772, "LATITUDE": 18.34359272, "OBJECTID_1": 9437, "PARCEL_NO_": "105301121200", "Tax_Legal_": "ALTONA & WELGUNST 200-5C-2 CROWN PRINCE QTR.", "Name": "CRADMAR REALTY LMITED LLC", "Address": "PO Box 6513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 69400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.227667504, "SHAPE_Area": 948.904894872 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357195.185900002717972, 257095.536800000816584 ], [ 357159.569700002670288, 257111.499499998986721 ], [ 357166.74379999935627, 257121.268500000238419 ], [ 357173.899899996817112, 257133.148299999535084 ], [ 357206.276500001549721, 257118.847800001502037 ], [ 357195.185900002717972, 257095.536800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302341200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93459783, "LATITUDE": 18.34365646, "OBJECTID_1": 10607, "PARCEL_NO_": "105302341200", "Tax_Legal_": "VESTER GADE 14B QUEENS QUARTER", "Name": "ERA FREDERICKS TRUST", "Address": "PO Box 9482", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15800, "Improved_V": 49400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.0709314745, "SHAPE_Area": 238.37522895500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358410.979299999773502, 257120.263999998569489 ], [ 358399.575800001621246, 257133.680700000375509 ], [ 358416.427400000393391, 257143.317800000309944 ], [ 358418.19650000333786, 257124.967099998146296 ], [ 358410.979299999773502, 257120.263999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401340100", "MAP": "D3-35-T38", "PARCEL_NAM": "17", "ACRE": null, "LONGITUDE": -64.93239888, "LATITUDE": 18.34368544, "OBJECTID_1": 11983, "PARCEL_NO_": "105401340100", "Tax_Legal_": "MURPHY GADE 17 QUEENS QUARTER", "Name": "HANLEY, KIPLING A. & EDEN", "Address": "PO BOX 303212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15200, "Improved_V": 71600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.303287459200007, "SHAPE_Area": 413.51957934799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358652.836999997496605, 257126.465399999171495 ], [ 358639.10809999704361, 257128.886100001633167 ], [ 358626.993699997663498, 257131.109000001102686 ], [ 358630.17400000244379, 257136.412399999797344 ], [ 358633.325499996542931, 257145.092999998480082 ], [ 358656.708599999547005, 257145.284400001168251 ], [ 358653.625399999320507, 257128.582800000905991 ], [ 358652.836999997496605, 257126.465399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401340200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93221727, "LATITUDE": 18.3436919, "OBJECTID_1": 11984, "PARCEL_NO_": "105401340200", "Tax_Legal_": "NYE GADE 7B QUEENS QUARTER", "Name": "HANLEY, KIPLING A. & EDEN", "Address": "PO BOX 303212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.447015965399999, "SHAPE_Area": 223.65195069399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358653.625399999320507, 257128.582800000905991 ], [ 358656.708599999547005, 257145.284400001168251 ], [ 358670.415899999439716, 257145.396600000560284 ], [ 358669.731799997389317, 257131.03660000115633 ], [ 358666.504799999296665, 257131.2212999984622 ], [ 358653.625399999320507, 257128.582800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301140200", "MAP": null, "PARCEL_NAM": "200-8B .", "ACRE": null, "LONGITUDE": -64.94277824, "LATITUDE": 18.34361821, "OBJECTID_1": 9477, "PARCEL_NO_": "105301140200", "Tax_Legal_": "ALTONA & WELGUNST 200-8B CROWN PRINCE QTR.", "Name": "BROOKS, JOSEPH & ETHNEY", "Address": "200-3F Altona & Wlgnt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43300, "Improved_V": 23400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.09246039600001, "SHAPE_Area": 631.47066258999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357562.707999996840954, 257116.90989999845624 ], [ 357537.814800001680851, 257104.673799999058247 ], [ 357535.404799997806549, 257103.598700001835823 ], [ 357529.579000003635883, 257124.871399998664856 ], [ 357536.8125, 257127.674800001084805 ], [ 357558.512800000607967, 257136.085099998861551 ], [ 357562.707999996840954, 257116.90989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302340600", "MAP": "G9-1737-T71", "PARCEL_NAM": "15C", "ACRE": ".059", "LONGITUDE": -64.93499793, "LATITUDE": 18.3436472, "OBJECTID_1": 10601, "PARCEL_NO_": "105302340600", "Tax_Legal_": "VESTER GADE 15C QUEENS QUARTER", "Name": "ALDA MONSANTO RESTATED LIVING TRUST", "Address": "PO Box 7513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39200, "Improved_V": 63400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.963281675299996, "SHAPE_Area": 366.371328479 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358355.233999997377396, 257132.684500001370907 ], [ 358373.692900002002716, 257142.967999998480082 ], [ 358381.885499998927116, 257127.836399998515844 ], [ 358363.428400002419949, 257117.341699998825788 ], [ 358355.233999997377396, 257132.684500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302162600", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 2O", "ACRE": null, "LONGITUDE": -64.93892976, "LATITUDE": 18.34361313, "OBJECTID_1": 10015, "PARCEL_NO_": "105302162600", "Tax_Legal_": "NY NORDSIDEVEJ 2O CROWN PRINCE QUARTER", "Name": "DE WINDT, OTHELIA", "Address": "BOX 4012", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48400, "Improved_V": 15100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.60298983200001, "SHAPE_Area": 783.46460945199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357940.090999998152256, 257116.621100001037121 ], [ 357932.717299997806549, 257130.281800001859665 ], [ 357947.997699998319149, 257135.050999999046326 ], [ 357961.670800000429153, 257139.173700001090765 ], [ 357965.74549999833107, 257134.140799999237061 ], [ 357971.476000003516674, 257124.05519999936223 ], [ 357953.114200003445148, 257102.3733000010252 ], [ 357940.090999998152256, 257116.621100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301152200", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-7", "ACRE": ".22", "LONGITUDE": -64.94755411, "LATITUDE": 18.34355826, "OBJECTID_1": 9520, "PARCEL_NO_": "105301152200", "Tax_Legal_": "220-7 ALTONA&WELGUNST CROWN PRINCE QTR.", "Name": "ZEPHIR, MARIO A", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75100, "Improved_V": 223000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.12366115399999, "SHAPE_Area": 1017.7561649100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357058.89750000089407, 257096.9543999992311 ], [ 357035.59179999679327, 257087.686700001358986 ], [ 357028.176700003445148, 257106.202199999243021 ], [ 357020.000299997627735, 257119.434200000017881 ], [ 357046.50789999961853, 257131.47239999845624 ], [ 357057.167999997735023, 257110.661400001496077 ], [ 357057.184199996292591, 257108.761700000613928 ], [ 357058.827399998903275, 257105.186500001698732 ], [ 357061.307499997317791, 257098.029599998146296 ], [ 357058.89750000089407, 257096.9543999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302190300", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9T", "ACRE": null, "LONGITUDE": -64.93777649, "LATITUDE": 18.34364143, "OBJECTID_1": 10146, "PARCEL_NO_": "105302190300", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9T CROWN PRINCE QUARTER", "Name": "BLYDEN, SANDERILLA", "Address": "146-17 EST. TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.452987430099995, "SHAPE_Area": 455.04938834400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358082.77589999884367, 257121.588599998503923 ], [ 358079.563199996948242, 257120.084699999541044 ], [ 358064.299099996685982, 257113.415800001472235 ], [ 358060.931699998676777, 257130.064699999988079 ], [ 358079.397799998521805, 257139.503899998962879 ], [ 358090.740099996328354, 257133.263900000602007 ], [ 358087.518500000238419, 257132.815400000661612 ], [ 358089.16889999806881, 257128.395899999886751 ], [ 358088.4003000035882, 257123.956700000911951 ], [ 358082.77589999884367, 257121.588599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301101200", "MAP": "D9-848-T69", "PARCEL_NAM": "21", "ACRE": ".64", "LONGITUDE": -64.94879939, "LATITUDE": 18.34348452, "OBJECTID_1": 9386, "PARCEL_NO_": "105301101200", "Tax_Legal_": "LOWER JOHN DUNKOE 21 LITTLE NORTHSIDE", "Name": "JAMES, CARMEN E", "Address": "PO Box 11785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73900, "Improved_V": 15700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 7.7268423367199999, "SHAPE_Area": 1.4256902848399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356909.58330000191927, 257102.520500000566244 ], [ 356910.599600002169609, 257099.074799999594688 ], [ 356909.699199996888638, 257099.321899998933077 ], [ 356909.58330000191927, 257102.520500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302161700", "MAP": null, "PARCEL_NAM": "HODGES STREET 22", "ACRE": null, "LONGITUDE": -64.93956889, "LATITUDE": 18.34363004, "OBJECTID_1": 10005, "PARCEL_NO_": "105302161700", "Tax_Legal_": "HODGES STREET 22 CROWN PRINCE QUARTER", "Name": "PARROTT, E. & CASTABLANCA, V", "Address": "PO Box 305426", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18600, "Improved_V": 112800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.108526961699994, "SHAPE_Area": 303.30848186600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357895.718599997460842, 257119.213300000876188 ], [ 357878.836400002241135, 257113.164500001817942 ], [ 357874.671800002455711, 257128.751299999654293 ], [ 357892.351300001144409, 257135.862100001424551 ], [ 357895.718599997460842, 257119.213300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301130600", "MAP": "F9-3830-T80", "PARCEL_NAM": "200-7-6", "ACRE": null, "LONGITUDE": -64.9445628, "LATITUDE": 18.34358852, "OBJECTID_1": 9453, "PARCEL_NO_": "105301130600", "Tax_Legal_": "ALTONA & WELGUNST 200-7-6 CROWN PRINCE QTR", "Name": "HODGE, VALERIE", "Address": "3546 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30400, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.547584038, "SHAPE_Area": 624.69527862899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357346.280699998140335, 257102.682000000029802 ], [ 357343.509199999272823, 257101.75899999961257 ], [ 357338.483900003135204, 257118.898800000548363 ], [ 357341.312399998307228, 257119.872800000011921 ], [ 357372.619999997317791, 257129.216600000858307 ], [ 357375.661499999463558, 257113.268100000917912 ], [ 357375.997100003063679, 257111.401900000870228 ], [ 357346.280699998140335, 257102.682000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302260200", "MAP": null, "PARCEL_NAM": "JODE GADE 5", "ACRE": null, "LONGITUDE": -64.93636135, "LATITUDE": 18.34363007, "OBJECTID_1": 10379, "PARCEL_NO_": "105302260200", "Tax_Legal_": "JODE GADE 5 CROWN PRINCE QTR", "Name": "WATERS, R & M M", "Address": "PO Box 9075", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21500, "Improved_V": 101400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.330482594200006, "SHAPE_Area": 309.43251059400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358234.161700002849102, 257134.626200001686811 ], [ 358233.520400002598763, 257127.044300001114607 ], [ 358232.785999998450279, 257118.594500001519918 ], [ 358232.657300002872944, 257117.925299998372793 ], [ 358214.887500002980232, 257119.042599998414516 ], [ 358215.029100000858307, 257120.560100000351667 ], [ 358216.406000003218651, 257136.83839999884367 ], [ 358234.161700002849102, 257134.626200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302322100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93565682000001, "LATITUDE": 18.34370016, "OBJECTID_1": 10561, "PARCEL_NO_": "105302322100", "Tax_Legal_": "GENERAL GADE 10A KRONP QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.685896757999998, "SHAPE_Area": 62.636281694099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358292.327200002968311, 257133.858399998396635 ], [ 358292.287699997425079, 257138.502099998295307 ], [ 358305.199500001966953, 257137.3412000015378 ], [ 358305.242600001394749, 257132.275299999862909 ], [ 358292.327200002968311, 257133.858399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301113100", "MAP": null, "PARCEL_NAM": "200-6L", "ACRE": null, "LONGITUDE": -64.94570767, "LATITUDE": 18.34356455, "OBJECTID_1": 9423, "PARCEL_NO_": "105301113100", "Tax_Legal_": "ALTONA & WELGUNST 200-6L CROWN PRINCE QTR", "Name": "ANDREW, ELI & ODETTE", "Address": "PO BOX 303705", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43100, "Improved_V": 174300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.65530442799999, "SHAPE_Area": 808.06227302499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357228.250100001692772, 257095.174100000411272 ], [ 357216.776500001549721, 257116.822799999266863 ], [ 357225.59740000218153, 257122.5945999994874 ], [ 357232.219800002872944, 257124.967399999499321 ], [ 357238.939300000667572, 257127.375 ], [ 357244.891400001943111, 257129.507500000298023 ], [ 357256.426100000739098, 257100.682100001722574 ], [ 357238.696199998259544, 257099.481499999761581 ], [ 357235.481799997389317, 257098.1886 ], [ 357228.250100001692772, 257095.174100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302311200", "MAP": null, "PARCEL_NAM": "VESTER GADE 40", "ACRE": "2,992 sq ft", "LONGITUDE": -64.93515788000001, "LATITUDE": 18.3434546, "OBJECTID_1": 10528, "PARCEL_NO_": "105302311200", "Tax_Legal_": "VESTER GADE 4O QUEENS QUARTER", "Name": "HODGE, CLOTHILDA", "Address": "707 E 242nd St", "City": "Bronx", "State": "New York", "Zip": 10470, "Country": "United States", "Land_Value": 15700, "Improved_V": 19900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.455722404599996, "SHAPE_Area": 353.202225634 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358339.099299997091293, 257110.613699998706579 ], [ 358356.764300003647804, 257121.313700001686811 ], [ 358361.034599997103214, 257114.366799999028444 ], [ 358365.794299997389317, 257107.513700000941753 ], [ 358354.678099997341633, 257101.351500000804663 ], [ 358345.191500000655651, 257096.092599999159575 ], [ 358341.769400000572205, 257104.07660000026226 ], [ 358339.099299997091293, 257110.613699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301131200", "MAP": "F9-3892-T80", "PARCEL_NAM": "200-7-12", "ACRE": "0.15", "LONGITUDE": -64.94423533, "LATITUDE": 18.34350708, "OBJECTID_1": 9459, "PARCEL_NO_": "105301131200", "Tax_Legal_": "ALTONA & WELGUNST 200-7-12 CROWN PRINCE QTR", "Name": "GUMBS, LYRA", "Address": "PO Box 307734", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32300, "Improved_V": 138100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.270833616, "SHAPE_Area": 738.04702492599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357392.300999999046326, 257091.476599998772144 ], [ 357388.020700000226498, 257077.531100001186132 ], [ 357387.233900003135204, 257080.010000001639128 ], [ 357383.870200000703335, 257096.236699998378754 ], [ 357380.007100000977516, 257122.14130000025034 ], [ 357397.066500000655651, 257128.252099998295307 ], [ 357398.976199999451637, 257121.480500001460314 ], [ 357404.77139999717474, 257103.796000000089407 ], [ 357407.265900000929832, 257094.950500000268221 ], [ 357392.300999999046326, 257091.476599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301132300", "MAP": null, "PARCEL_NAM": "200-7-20", "ACRE": null, "LONGITUDE": -64.94402683, "LATITUDE": 18.3435354, "OBJECTID_1": 9469, "PARCEL_NO_": "105301132300", "Tax_Legal_": "ALTONA & WELGUNST 200-7-20 CROWN PRINCE QTR", "Name": "DANIEL, LENORE R.", "Address": "PO Box 8857", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27700, "Improved_V": 162100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.183571097, "SHAPE_Area": 722.26708748299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357428.493699997663498, 257096.708999998867512 ], [ 357409.136100001633167, 257091.408700000494719 ], [ 357407.265900000929832, 257094.950500000268221 ], [ 357404.77139999717474, 257103.796000000089407 ], [ 357398.976199999451637, 257121.480500001460314 ], [ 357398.520900003612041, 257123.094999998807907 ], [ 357407.617299996316433, 257124.602699998766184 ], [ 357422.844099998474121, 257127.126499999314547 ], [ 357424.8158999979496, 257117.25899999961257 ], [ 357427.3733000010252, 257101.025699999183416 ], [ 357428.211999997496605, 257097.232900001108646 ], [ 357428.493699997663498, 257096.708999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302191000", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9F", "ACRE": null, "LONGITUDE": -64.93755358, "LATITUDE": 18.34357059, "OBJECTID_1": 10152, "PARCEL_NO_": "105302191000", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9F CROWN PRINCE QUARTER", "Name": "PATRICIA HODGE (LIFE ESTATE)", "Address": "P.O. BOX 3612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22600, "Improved_V": 98900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.14650030200001, "SHAPE_Area": 625.25560630300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358115.946199998259544, 257108.772300001233816 ], [ 358102.247900001704693, 257107.604699999094009 ], [ 358088.547799997031689, 257106.648200001567602 ], [ 358082.77589999884367, 257121.588599998503923 ], [ 358088.4003000035882, 257123.956700000911951 ], [ 358089.16889999806881, 257128.395899999886751 ], [ 358087.518500000238419, 257132.815400000661612 ], [ 358090.740099996328354, 257133.263900000602007 ], [ 358104.429499998688698, 257135.486900001764297 ], [ 358105.271700002253056, 257131.271899998188019 ], [ 358115.946199998259544, 257108.772300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302184000", "MAP": null, "PARCEL_NAM": "SILKE GADE 8B", "ACRE": null, "LONGITUDE": -64.93624178, "LATITUDE": 18.34365912, "OBJECTID_1": 10132, "PARCEL_NO_": "105302184000", "Tax_Legal_": "SILKE GADE 8B KRONPRINSENS QTR", "Name": "OTTLEY, ANTHONY A", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52500, "Improved_V": 233400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.217651852199999, "SHAPE_Area": 49.4274583057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358240.618299998342991, 257133.821800000965595 ], [ 358239.978100001811981, 257126.252700001001358 ], [ 358233.520400002598763, 257127.044300001114607 ], [ 358234.161700002849102, 257134.626200001686811 ], [ 358240.618299998342991, 257133.821800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302260400", "MAP": null, "PARCEL_NAM": "PILE STRAEDE 8A 8B", "ACRE": null, "LONGITUDE": -64.93614694, "LATITUDE": 18.34364789, "OBJECTID_1": 10380, "PARCEL_NO_": "105302260400", "Tax_Legal_": "PILE STRAEDE 8A 8B CROWN PRINCE QTR", "Name": "EVANS, R & ROOSEVELT, E", "Address": "PO Box 7111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6800, "Improved_V": 73200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.4513222056, "SHAPE_Area": 102.426754391 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358254.326099999248981, 257132.113899998366833 ], [ 358253.697999998927116, 257124.88740000128746 ], [ 358239.978100001811981, 257126.252700001001358 ], [ 358240.618299998342991, 257133.821800000965595 ], [ 358254.326099999248981, 257132.113899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302174300", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9N", "ACRE": null, "LONGITUDE": -64.93817855, "LATITUDE": 18.34364104, "OBJECTID_1": 10089, "PARCEL_NO_": "105302174300", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9N CROWN PRINCE QUARTER", "Name": "George, Gerald & Joseph, Carren & Turnbull, Alice", "Address": "PO Box 303232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5900, "Improved_V": 40500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.417616258899997, "SHAPE_Area": 126.294949546 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358038.428700000047684, 257121.225600000470877 ], [ 358025.515100002288818, 257122.597600001841784 ], [ 358026.240500003099442, 257132.102800000458956 ], [ 358039.150499999523163, 257131.153000000864267 ], [ 358038.428700000047684, 257121.225600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302162500", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 15", "ACRE": null, "LONGITUDE": -64.93921198, "LATITUDE": 18.34358253, "OBJECTID_1": 10014, "PARCEL_NO_": "105302162500", "Tax_Legal_": "TEMPLE STREET 15 CROWN PRINCE QUARTER", "Name": "SMITH, GILROY", "Address": "PO Box 6092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38800, "Improved_V": 74400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.154990846900006, "SHAPE_Area": 455.38907705999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357940.090999998152256, 257116.621100001037121 ], [ 357915.168999999761581, 257107.762299999594688 ], [ 357912.757299996912479, 257106.898200001567602 ], [ 357908.580099999904633, 257123.962600000202656 ], [ 357918.225199997425079, 257127.630100000649691 ], [ 357932.717299997806549, 257130.281800001859665 ], [ 357940.090999998152256, 257116.621100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302260500", "MAP": null, "PARCEL_NAM": "PILE STRAEDE 7A", "ACRE": null, "LONGITUDE": -64.93602385, "LATITUDE": 18.34360108, "OBJECTID_1": 10381, "PARCEL_NO_": "105302260500", "Tax_Legal_": "PILE STRAEDE 7A CROWN PRINCE", "Name": "FARRELL, JUDITH U.,NSENGA M.,OZIE A.P. FARRELL & OTHERS", "Address": "3645 Willett Ave", "City": "Bronx", "State": "New York", "Zip": 10467, "Country": "United States", "Land_Value": 5600, "Improved_V": 46900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.444172666299998, "SHAPE_Area": 67.913495839399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358261.033900000154972, 257115.659299999475479 ], [ 358256.996899999678135, 257116.259500000625849 ], [ 358259.275600001215935, 257132.743500001728535 ], [ 358263.312600001692772, 257132.143199998885393 ], [ 358261.033900000154972, 257115.659299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302341100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93469898, "LATITUDE": 18.34358493, "OBJECTID_1": 10606, "PARCEL_NO_": "105302341100", "Tax_Legal_": "VESTER GADE 14BA QUEENS QUARTER", "Name": "DOWNING, ELISE", "Address": "470 Malcolm X Blvd", "City": "New York", "State": "New York", "Zip": 10037, "Country": "United States", "Land_Value": 11300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.764463799799998, "SHAPE_Area": 214.63256814100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358410.979299999773502, 257120.263999998569489 ], [ 358399.750200003385544, 257113.206000000238419 ], [ 358389.948600001633167, 257127.902399998158216 ], [ 358399.575800001621246, 257133.680700000375509 ], [ 358410.979299999773502, 257120.263999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302183800", "MAP": null, "PARCEL_NAM": "SILKE GADE 7A", "ACRE": null, "LONGITUDE": -64.93598568, "LATITUDE": 18.34359574, "OBJECTID_1": 10130, "PARCEL_NO_": "105302183800", "Tax_Legal_": "7A SILKE GADE CROWN PRINCE QTR", "Name": "YVONNE BLYDEN MOOLENAAR & OTHERS", "Address": "7166 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10000, "Improved_V": 183500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.625381670599999, "SHAPE_Area": 68.082538699500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358267.347699999809265, 257131.754099998623133 ], [ 358265.070900000631809, 257115.059099998325109 ], [ 358261.033900000154972, 257115.659299999475479 ], [ 358263.312600001692772, 257132.143199998885393 ], [ 358267.347699999809265, 257131.754099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302161600", "MAP": null, "PARCEL_NAM": "HODGES STREET 21", "ACRE": null, "LONGITUDE": -64.93978464, "LATITUDE": 18.34355172, "OBJECTID_1": 10004, "PARCEL_NO_": "105302161600", "Tax_Legal_": "HODGES STREET 21 CROWN PRINCE QTR", "Name": "J & R TURNBULL FAMILY CORP.", "Address": "PO Box 9824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25600, "Improved_V": 28100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.916614351000007, "SHAPE_Area": 472.41072888799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357877.22919999808073, 257112.51799999922514 ], [ 357848.286399997770786, 257102.3597999997437 ], [ 357848.151600003242493, 257118.190699998289347 ], [ 357874.671800002455711, 257128.751299999654293 ], [ 357878.836400002241135, 257113.164500001817942 ], [ 357877.22919999808073, 257112.51799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302260700", "MAP": null, "PARCEL_NAM": "7C PILE STRADE", "ACRE": null, "LONGITUDE": -64.93591881, "LATITUDE": 18.34358828, "OBJECTID_1": 10382, "PARCEL_NO_": "105302260700", "Tax_Legal_": "7C PILE STRADE KRONPRINDSEN QTR.", "Name": "CROOKE, CHARLES", "Address": "7C Pile Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.971702227999998, "SHAPE_Area": 170.88795771599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358277.842399999499321, 257130.362300001084805 ], [ 358274.757399998605251, 257113.871800001710653 ], [ 358265.070900000631809, 257115.059099998325109 ], [ 358267.347699999809265, 257131.754099998623133 ], [ 358277.842399999499321, 257130.362300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301140300", "MAP": null, "PARCEL_NAM": "200-8C", "ACRE": null, "LONGITUDE": -64.94304379, "LATITUDE": 18.34351142, "OBJECTID_1": 9478, "PARCEL_NO_": "105301140300", "Tax_Legal_": "ALTONA & WELGUNST 200-8C CROWN PRINCE QTR", "Name": "FRANCIS, ALVIN & ESTHER", "Address": "3566 Est Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34300, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.506714755, "SHAPE_Area": 711.03988487000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357503.270999997854233, 257089.403499998152256 ], [ 357506.249899998307228, 257118.347699999809265 ], [ 357529.579000003635883, 257124.871399998664856 ], [ 357535.404799997806549, 257103.598700001835823 ], [ 357503.270999997854233, 257089.403499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302260800", "MAP": null, "PARCEL_NAM": "PILE STRAEDE 7B", "ACRE": null, "LONGITUDE": -64.93580966, "LATITUDE": 18.34357336, "OBJECTID_1": 10383, "PARCEL_NO_": "105302260800", "Tax_Legal_": "PILE STRAEDE 7B CROWN PRINCE", "Name": "MOORE, SYLVIA & JOHN N. ELLINGTON", "Address": "18500 Sweet Autumn Dr", "City": "Gaithersburg", "State": "Maryland", "Zip": 20879, "Country": "United States", "Land_Value": 12500, "Improved_V": 19000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.5836366367, "SHAPE_Area": 219.90769387899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358277.842399999499321, 257130.362300001084805 ], [ 358290.757799997925758, 257128.77930000051856 ], [ 358289.994599997997284, 257123.706799998879433 ], [ 358288.450300000607967, 257115.672600001096725 ], [ 358287.672799997031689, 257112.288699999451637 ], [ 358274.757399998605251, 257113.871800001710653 ], [ 358277.842399999499321, 257130.362300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302130300", "MAP": null, "PARCEL_NAM": "116", "ACRE": null, "LONGITUDE": -64.94065855, "LATITUDE": 18.34353366, "OBJECTID_1": 9874, "PARCEL_NO_": "105302130300", "Tax_Legal_": "116 ANNA'S FANCY KRONPRINDSENS QTR", "Name": "STAPLETON, ROOSEVELT & FALCONA H.", "Address": "PO Box 9225", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20300, "Improved_V": 161200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.810283932399997, "SHAPE_Area": 545.51381292200006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357772.507399998605251, 257100.050799999386072 ], [ 357764.451499998569489, 257099.140500001609325 ], [ 357754.567199997603893, 257123.546399999409914 ], [ 357779.552100002765656, 257125.017499998211861 ], [ 357783.784999996423721, 257101.409699998795986 ], [ 357772.507399998605251, 257100.050799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302260900", "MAP": null, "PARCEL_NAM": "GENERAL GADE 9", "ACRE": null, "LONGITUDE": -64.9356725, "LATITUDE": 18.34360913, "OBJECTID_1": 10384, "PARCEL_NO_": "105302260900", "Tax_Legal_": "GENERAL GADE 9 CROWN PRINCE QTR", "Name": "MOORE, SYLVIA & JOHN N. ELLINGTON", "Address": "18500 Sweet Autumn Dr", "City": "Gaithersburg", "State": "Maryland", "Zip": 20879, "Country": "United States", "Land_Value": 5000, "Improved_V": 400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.119062189300003, "SHAPE_Area": 72.337811406599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358303.718099996447563, 257121.919300001114607 ], [ 358289.994599997997284, 257123.706799998879433 ], [ 358290.757799997925758, 257128.77930000051856 ], [ 358304.479500003159046, 257127.202799998223782 ], [ 358303.718099996447563, 257121.919300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401340400", "MAP": "D9-9131-T016", "PARCEL_NAM": "6A & 6B", "ACRE": "0.28", "LONGITUDE": -64.93238078, "LATITUDE": 18.34350664, "OBJECTID_1": 11986, "PARCEL_NO_": "105401340400", "Tax_Legal_": "BRED GADE 6B QUEENS QUARTER", "Name": "HAMILTON, INGRID & CHARLES", "Address": "PO Box 302463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.588751282, "SHAPE_Area": 996.22170876300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358639.10809999704361, 257128.886100001633167 ], [ 358652.836999997496605, 257126.465399999171495 ], [ 358666.524599999189377, 257128.899399999529123 ], [ 358665.874700002372265, 257110.528999999165535 ], [ 358663.549300000071526, 257099.533100001513958 ], [ 358632.015000000596046, 257109.618599999696016 ], [ 358617.461800001561642, 257114.143500000238419 ], [ 358626.993699997663498, 257131.109000001102686 ], [ 358639.10809999704361, 257128.886100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302174100", "MAP": null, "PARCEL_NAM": "9J GAMLE NORDSIDEVEJ", "ACRE": null, "LONGITUDE": -64.93802293, "LATITUDE": 18.34351612, "OBJECTID_1": 10087, "PARCEL_NO_": "105302174100", "Tax_Legal_": "9J GAMLE NORDSIDEVEJ CROWN PRINCE QUARTER", "Name": "RITA E DAWSON and DERRICK A DAWSON", "Address": "4907 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 14000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.173147499199999, "SHAPE_Area": 350.62866995299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358059.55290000140667, 257102.611200001090765 ], [ 358039.378899998962879, 257104.345899999141693 ], [ 358040.043099999427795, 257121.027800001204014 ], [ 358054.515399999916553, 257126.001400001347065 ], [ 358059.55290000140667, 257102.611200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302263800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93618579, "LATITUDE": 18.34357897, "OBJECTID_1": 10410, "PARCEL_NO_": "105302263800", "Tax_Legal_": "PILE STRAEDE 9 CROWN PRINCE QTR", "Name": "EVANS, ROOSEVELT & EDRA", "Address": "PO Box 7111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6000, "Improved_V": 80900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.072939519099997, "SHAPE_Area": 175.721005883 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358253.697999998927116, 257124.88740000128746 ], [ 358252.961800001561642, 257116.648699998855591 ], [ 358239.197200000286102, 257117.514199998229742 ], [ 358232.657300002872944, 257117.925299998372793 ], [ 358232.785999998450279, 257118.594500001519918 ], [ 358233.520400002598763, 257127.044300001114607 ], [ 358239.978100001811981, 257126.252700001001358 ], [ 358253.697999998927116, 257124.88740000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302130100", "MAP": null, "PARCEL_NAM": "115", "ACRE": null, "LONGITUDE": -64.941023, "LATITUDE": 18.34349119, "OBJECTID_1": 9873, "PARCEL_NO_": "105302130100", "Tax_Legal_": "ANNAS FANCY 115 KROMP QTR", "Name": "VENZEN, ALLEN", "Address": "PO Box 43", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43000, "Improved_V": 183800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.3226954, "SHAPE_Area": 909.67415574699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357741.898100003600121, 257096.21169999986887 ], [ 357728.203400000929832, 257094.621899999678135 ], [ 357714.510499998927116, 257092.821100000292063 ], [ 357715.875, 257121.963199999183416 ], [ 357721.524499997496605, 257121.376200001686811 ], [ 357742.477899998426437, 257122.8141999989748 ], [ 357754.78660000115633, 257097.794799998402596 ], [ 357741.898100003600121, 257096.21169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302162800", "MAP": null, "PARCEL_NAM": "14 TEMPLE ST", "ACRE": "2,602 sq ft", "LONGITUDE": -64.93947659, "LATITUDE": 18.34349115, "OBJECTID_1": 10020, "PARCEL_NO_": "105302162800", "Tax_Legal_": "TEMPLE STREET 14 CROWN PRINCE QUARTER", "Name": "FRETT, ROY A. & CRESENCIA", "Address": "PO Box 304340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14400, "Improved_V": 79800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.962523741, "SHAPE_Area": 614.19445818700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357912.757299996912479, 257106.898200001567602 ], [ 357884.651399999856949, 257093.15819999948144 ], [ 357877.22919999808073, 257112.51799999922514 ], [ 357878.836400002241135, 257113.164500001817942 ], [ 357895.718599997460842, 257119.213300000876188 ], [ 357908.580099999904633, 257123.962600000202656 ], [ 357912.757299996912479, 257106.898200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302191600", "MAP": null, "PARCEL_NAM": "BJERGE GADE 4A", "ACRE": null, "LONGITUDE": -64.9372061, "LATITUDE": 18.34358149, "OBJECTID_1": 10159, "PARCEL_NO_": "105302191600", "Tax_Legal_": "BJERGE GADE 4A CROWN PRINCE QTR", "Name": "CAIBY, LARENCE", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.645977063899998, "SHAPE_Area": 92.592113511199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358140.805200003087521, 257125.018899999558926 ], [ 358140.074400000274181, 257116.146999999880791 ], [ 358129.583400003612041, 257117.116599999368191 ], [ 358130.315999999642372, 257125.777399998158216 ], [ 358140.805200003087521, 257125.018899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302341000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93482486000001, "LATITUDE": 18.34351415, "OBJECTID_1": 10605, "PARCEL_NO_": "105302341000", "Tax_Legal_": "VESTER GADE 14A QUEENS QUARTER", "Name": "BROWNE, JOAN E", "Address": "PO Box 306857", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19700, "Improved_V": 49000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.093989026499997, "SHAPE_Area": 334.03183470699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358390.1283999979496, 257106.79450000077486 ], [ 358384.514799997210503, 257103.15989999845624 ], [ 358373.903300002217293, 257118.271800000220537 ], [ 358389.948600001633167, 257127.902399998158216 ], [ 358399.750200003385544, 257113.206000000238419 ], [ 358390.1283999979496, 257106.79450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302163000", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 19", "ACRE": null, "LONGITUDE": -64.93880067000001, "LATITUDE": 18.34349901, "OBJECTID_1": 10022, "PARCEL_NO_": "105302163000", "Tax_Legal_": "NY NORDSIDEVEJ 19 CROWN PRINCE STREET", "Name": "DEWINDT, WARREN & ALICE", "Address": "PO Box 304012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 51100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.552876958200002, "SHAPE_Area": 219.56794536500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357971.476000003516674, 257124.05519999936223 ], [ 357975.669399999082088, 257105.091099999845028 ], [ 357953.114200003445148, 257102.3733000010252 ], [ 357971.476000003516674, 257124.05519999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302400800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93281406, "LATITUDE": 18.34349131, "OBJECTID_1": 10692, "PARCEL_NO_": "105302400800", "Tax_Legal_": "BJERGE GADE 2P QUEENS QUARTER", "Name": "PHILIP STRUM FAMILY TRUST & DOROTHY STURM", "Address": "5141 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73300, "Improved_V": 191200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.628153243300005, "SHAPE_Area": 444.24086571300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358603.873099997639656, 257100.100099999457598 ], [ 358585.220100000500679, 257112.613099999725819 ], [ 358593.95099999755621, 257128.938700001686811 ], [ 358614.204199999570847, 257117.916499998420477 ], [ 358603.873099997639656, 257100.100099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302191700", "MAP": null, "PARCEL_NAM": "BJERGE GADE 4B", "ACRE": null, "LONGITUDE": -64.93705629, "LATITUDE": 18.34357027, "OBJECTID_1": 10160, "PARCEL_NO_": "105302191700", "Tax_Legal_": "4B BJERGE GADE CROWN PRINCE QTR", "Name": "CAIBY WARNER, ELISE & OTHERS", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.491270655500003, "SHAPE_Area": 192.42057427899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358150.563699997961521, 257115.388399999588728 ], [ 358143.301500000059605, 257115.96229999884963 ], [ 358140.074400000274181, 257116.146999999880791 ], [ 358140.805200003087521, 257125.018899999558926 ], [ 358161.780100002884865, 257123.9239999987185 ], [ 358161.054799996316433, 257114.418800000101328 ], [ 358150.563699997961521, 257115.388399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173900", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9G", "ACRE": null, "LONGITUDE": -64.93834684, "LATITUDE": 18.34349973, "OBJECTID_1": 10085, "PARCEL_NO_": "105302173900", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9G CROWN PRINCE QUARTER", "Name": "PICKERING, MARILYN", "Address": "PO BOX 3823", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21100, "Improved_V": 72700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.583849754200003, "SHAPE_Area": 347.989080188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358025.515100002288818, 257122.597600001841784 ], [ 358016.07320000231266, 257095.078200001269579 ], [ 358005.540700003504753, 257100.90260000154376 ], [ 358010.186200000345707, 257123.52760000154376 ], [ 358025.515100002288818, 257122.597600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302092400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93271144000001, "LATITUDE": 18.3454312, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.433015338799997, "SHAPE_Area": 76.508018420100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358601.119400002062321, 257328.691899999976158 ], [ 358613.961099997162819, 257335.763099998235703 ], [ 358614.821299999952316, 257329.437300000339746 ], [ 358604.384199999272823, 257324.074599999934435 ], [ 358601.119400002062321, 257328.691899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302481200", "MAP": "D9-4767-T89", "PARCEL_NAM": "100-5", "ACRE": null, "LONGITUDE": -64.93897459, "LATITUDE": 18.3451502, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.87982976500001, "SHAPE_Area": 2066.9102700799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357969.445100001990795, 257267.793299999088049 ], [ 357935.646600000560284, 257259.706199999898672 ], [ 357924.648400001227856, 257320.199999999254942 ], [ 357957.662299998104572, 257325.747600000351667 ], [ 357962.712300002574921, 257300.879799999296665 ], [ 357966.89130000025034, 257283.604400001466274 ], [ 357969.445100001990795, 257267.793299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93754974, "LATITUDE": 18.34529851, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.624834714800002, "SHAPE_Area": 222.631488047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358096.545800000429153, 257303.664000000804663 ], [ 358090.116899996995926, 257301.078200001269579 ], [ 358089.247599996626377, 257308.459399998188019 ], [ 358087.593699999153614, 257313.300999999046326 ], [ 358103.6587999984622, 257320.609700001776218 ], [ 358106.993699997663498, 257307.760200001299381 ], [ 358096.545800000429153, 257303.664000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302060900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93589718, "LATITUDE": 18.34533242, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.615491417000001, "SHAPE_Area": 30.977731493299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358268.180699996650219, 257317.94539999961853 ], [ 358273.004199996590614, 257319.673599999397993 ], [ 358275.473499998450279, 257313.78319999948144 ], [ 358271.456299997866154, 257312.061599999666214 ], [ 358268.180699996650219, 257317.94539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301164100", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-28", "ACRE": ".23", "LONGITUDE": -64.9469609, "LATITUDE": 18.3447747, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.24652139400001, "SHAPE_Area": 1171.62217721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357081.653800003230572, 257265.38230000063777 ], [ 357120.360299997031689, 257265.276900000870228 ], [ 357115.696900002658367, 257244.762600000947714 ], [ 357113.407399997115135, 257229.545200001448393 ], [ 357108.673900000751019, 257217.263000000268221 ], [ 357101.528499998152256, 257204.116700001060963 ], [ 357097.266800001263618, 257231.101799998432398 ], [ 357081.653800003230572, 257265.38230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302120500", "MAP": "F9-2189-T68", "PARCEL_NAM": "80", "ACRE": "0.38", "LONGITUDE": -64.93952383, "LATITUDE": 18.3444905, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.683134056, "SHAPE_Area": 1669.1163230100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357926.382600001990795, 257211.289900001138449 ], [ 357930.451899997889996, 257206.890299998223782 ], [ 357932.521899998188019, 257204.49269999936223 ], [ 357906.453199997544289, 257203.419300001114607 ], [ 357900.06139999628067, 257203.764800000935793 ], [ 357885.377400003373623, 257205.319499999284744 ], [ 357883.911300003528595, 257205.296599999070168 ], [ 357863.265100002288818, 257204.973999999463558 ], [ 357863.515399999916553, 257207.820099998265505 ], [ 357864.294699996709824, 257210.992899999022484 ], [ 357864.989600002765656, 257224.086300000548363 ], [ 357866.38459999859333, 257249.640099998563528 ], [ 357899.625, 257228.591699998825788 ], [ 357917.450199998915195, 257218.605099998414516 ], [ 357926.382600001990795, 257211.289900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302250400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93664979, "LATITUDE": 18.34466683, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.282545702900002, "SHAPE_Area": 47.657180106299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358189.750100001692772, 257248.27589999884367 ], [ 358192.969899997115135, 257248.935499999672174 ], [ 358196.311999998986721, 257235.241799999028444 ], [ 358193.095799997448921, 257234.160000000149012 ], [ 358189.750100001692772, 257248.27589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302320600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93592377, "LATITUDE": 18.344597, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.005884654, "SHAPE_Area": 314.79866208 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358280.254900000989437, 257225.796399999409914 ], [ 358269.82490000128746, 257219.589299999177456 ], [ 358259.137900002300739, 257243.566500000655651 ], [ 358270.381300002336502, 257248.9358000010252 ], [ 358280.254900000989437, 257225.796399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302320500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93607964, "LATITUDE": 18.34452677, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.511991436, "SHAPE_Area": 660.82960656099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358269.82490000128746, 257219.589299999177456 ], [ 358251.371500000357628, 257208.672499999403954 ], [ 358235.032999999821186, 257233.447799999266863 ], [ 358259.137900002300739, 257243.566500000655651 ], [ 358269.82490000128746, 257219.589299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302183100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93695933, "LATITUDE": 18.34395755, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.481904395599997, "SHAPE_Area": 66.806499717999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358167.12219999730587, 257159.431400001049042 ], [ 358152.586999997496605, 257161.845600001513958 ], [ 358153.366400003433228, 257165.018399998545647 ], [ 358167.878200002014637, 257165.348200000822544 ], [ 358167.12219999730587, 257159.431400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302400700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93274816, "LATITUDE": 18.34360695, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.995047379699997, "SHAPE_Area": 224.93058316899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358614.204199999570847, 257117.916499998420477 ], [ 358593.95099999755621, 257128.938700001686811 ], [ 358597.910700000822544, 257137.414900001138449 ], [ 358618.968299999833107, 257126.610399998724461 ], [ 358614.204199999570847, 257117.916499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302130200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94081467, "LATITUDE": 18.34352107, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.084306753500002, "SHAPE_Area": 280.330673961 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357764.451499998569489, 257099.140500001609325 ], [ 357754.78660000115633, 257097.794799998402596 ], [ 357742.477899998426437, 257122.8141999989748 ], [ 357754.567199997603893, 257123.546399999409914 ], [ 357764.451499998569489, 257099.140500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401340600", "MAP": "D9-9131-T016", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.93210098, "LATITUDE": 18.34352641, "OBJECTID_1": 11988, "PARCEL_NO_": "105401340600", "Tax_Legal_": "NYE GADE 6 QUEENS QUARTER", "Name": "FORDE, ALDEN E", "Address": "PO Box 6676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13400, "Improved_V": 82400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.135418352599999, "SHAPE_Area": 315.98846554900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358682.814400002360344, 257109.82319999858737 ], [ 358665.874700002372265, 257110.528999999165535 ], [ 358666.524599999189377, 257128.899399999529123 ], [ 358684.27419999986887, 257127.778099998831749 ], [ 358682.814400002360344, 257109.82319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301113200", "MAP": null, "PARCEL_NAM": "200-6M", "ACRE": null, "LONGITUDE": -64.94595057, "LATITUDE": 18.34337157, "OBJECTID_1": 9424, "PARCEL_NO_": "105301113200", "Tax_Legal_": "ALTONA & WELGUNST 200-6M CROWN PRINCE QTR", "Name": "HARRY, FITZHERBERT (Trustee)", "Address": "PO Box 305463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.47339570899999, "SHAPE_Area": 699.89145811200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357216.776500001549721, 257116.822799999266863 ], [ 357228.250100001692772, 257095.174100000411272 ], [ 357219.441799998283386, 257087.924800001084805 ], [ 357209.87219999730587, 257075.392000000923872 ], [ 357194.676299996674061, 257060.702199999243021 ], [ 357192.250200003385544, 257061.526700001209974 ], [ 357194.956200003623962, 257067.760499998927116 ], [ 357200.158699996769428, 257079.74549999833107 ], [ 357203.279600001871586, 257092.014400001615286 ], [ 357204.87610000371933, 257093.927299998700619 ], [ 357206.445500001311302, 257099.006400000303984 ], [ 357212.782700002193451, 257112.357200000435114 ], [ 357216.776500001549721, 257116.822799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302191900", "MAP": null, "PARCEL_NAM": "BJERGE GADE 1B", "ACRE": null, "LONGITUDE": -64.93681913, "LATITUDE": 18.34358145, "OBJECTID_1": 10162, "PARCEL_NO_": "105302191900", "Tax_Legal_": "BJERGE GADE 1B CROWN PRINCE QTR", "Name": "POWELL, L & BARTHLETT, L", "Address": "PO Box 773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4300, "Improved_V": 74700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.8461478971, "SHAPE_Area": 56.6790505791 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358180.37389999628067, 257118.376600001007318 ], [ 358171.50620000064373, 257118.092999998480082 ], [ 358171.454099997878075, 257124.214200001209974 ], [ 358181.128100000321865, 257124.50450000166893 ], [ 358180.37389999628067, 257118.376600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302191800", "MAP": null, "PARCEL_NAM": "BJERGE GADE 1BB", "ACRE": null, "LONGITUDE": -64.93688319, "LATITUDE": 18.34355136, "OBJECTID_1": 10161, "PARCEL_NO_": "105302191800", "Tax_Legal_": "BJERGE GADE 1BB CROWN PRINCE QTR", "Name": "POWELL, LISTON", "Address": "PO Box 773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6200, "Improved_V": 85500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.604375427500003, "SHAPE_Area": 146.038223867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358163.475500002503395, 257114.22749999910593 ], [ 358161.054799996316433, 257114.418800000101328 ], [ 358161.780100002884865, 257123.9239999987185 ], [ 358171.454099997878075, 257124.214200001209974 ], [ 358171.50620000064373, 257118.092999998480082 ], [ 358180.37389999628067, 257118.376600001007318 ], [ 358179.616099998354912, 257112.670899998396635 ], [ 358163.475500002503395, 257114.22749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301140400", "MAP": null, "PARCEL_NAM": "200-8D", "ACRE": null, "LONGITUDE": -64.94332464, "LATITUDE": 18.34342837, "OBJECTID_1": 9479, "PARCEL_NO_": "105301140400", "Tax_Legal_": "200-8D ALTONA & WELGUNST CROWN PRINCE QUARTER", "Name": "LAPLACE, P. L. , D. F. & J. M", "Address": "PO Box 303811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61900, "Improved_V": 149000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.184308054, "SHAPE_Area": 929.159955986 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357471.093999996781349, 257080.27419999986887 ], [ 357474.87389999628067, 257109.858199998736382 ], [ 357498.206600002944469, 257115.959800001233816 ], [ 357506.249899998307228, 257118.347699999809265 ], [ 357503.270999997854233, 257089.403499998152256 ], [ 357479.1554000005126, 257080.551300000399351 ], [ 357471.093999996781349, 257080.27419999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302174000", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9W", "ACRE": null, "LONGITUDE": -64.93820613, "LATITUDE": 18.3434424, "OBJECTID_1": 10086, "PARCEL_NO_": "105302174000", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9W CROWN PRINCE QUARTER", "Name": "WALLACE, GEORGE A", "Address": "PO Box 303645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.960590854, "SHAPE_Area": 606.36295514400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358025.515100002288818, 257122.597600001841784 ], [ 358038.428700000047684, 257121.225600000470877 ], [ 358040.043099999427795, 257121.027800001204014 ], [ 358039.378899998962879, 257104.345899999141693 ], [ 358034.70830000191927, 257084.675999999046326 ], [ 358016.07320000231266, 257095.078200001269579 ], [ 358025.515100002288818, 257122.597600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302341600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93459575, "LATITUDE": 18.34348145, "OBJECTID_1": 10610, "PARCEL_NO_": "105302341600", "Tax_Legal_": "NORDSIDEVEJ 5AA QUEENS QUARTER", "Name": "FERGUS, JOSEPH", "Address": "PO Box 8526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.988956870199999, "SHAPE_Area": 264.67287331199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358419.943999998271465, 257109.149399999529123 ], [ 358408.731100000441074, 257100.191700000315905 ], [ 358399.750200003385544, 257113.206000000238419 ], [ 358410.979299999773502, 257120.263999998569489 ], [ 358418.19650000333786, 257124.967099998146296 ], [ 358418.236100003123283, 257120.323399998247623 ], [ 358419.943999998271465, 257109.149399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302261100", "MAP": null, "PARCEL_NAM": "GENERAL GADE 8", "ACRE": null, "LONGITUDE": -64.93568159, "LATITUDE": 18.34354713, "OBJECTID_1": 10385, "PARCEL_NO_": "105302261100", "Tax_Legal_": "GENERAL GADE 8 CROWN PRINCE QTR", "Name": "CYNTZE, MIGUEL", "Address": "2108 General Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026665, "Country": "United States", "Land_Value": 5600, "Improved_V": 16700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.69478094, "SHAPE_Area": 121.953543173 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358302.987300001084805, 257113.047400001436472 ], [ 358288.450300000607967, 257115.672600001096725 ], [ 358289.994599997997284, 257123.706799998879433 ], [ 358303.718099996447563, 257121.919300001114607 ], [ 358302.987300001084805, 257113.047400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302193000", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9Y", "ACRE": null, "LONGITUDE": -64.93769452, "LATITUDE": 18.3435329, "OBJECTID_1": 10172, "PARCEL_NO_": "105302193000", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9Y CROWN PRINCE QTR", "Name": "POTTER, SUSANNAH", "Address": "PO Box 4961", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2700, "Improved_V": 13600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.994204719899997, "SHAPE_Area": 40.254590950100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358088.547799997031689, 257106.648200001567602 ], [ 358082.853200003504753, 257112.512200001627207 ], [ 358079.563199996948242, 257120.084699999541044 ], [ 358082.77589999884367, 257121.588599998503923 ], [ 358088.547799997031689, 257106.648200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301140100", "MAP": null, "PARCEL_NAM": "REM 200-BA", "ACRE": null, "LONGITUDE": -64.94268543, "LATITUDE": 18.34349022, "OBJECTID_1": 9476, "PARCEL_NO_": "105301140100", "Tax_Legal_": "ALTONA & WELGUNST REM 200-BA", "Name": "HAMILTON, DAISY & CHARLES A", "Address": "PO Box 302463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.927921443900004, "SHAPE_Area": 266.45840260699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357537.814800001680851, 257104.673799999058247 ], [ 357562.707999996840954, 257116.90989999845624 ], [ 357566.037500001490116, 257104.693799998611212 ], [ 357559.667900003492832, 257095.142400000244379 ], [ 357556.430100001394749, 257096.593600001186132 ], [ 357553.16889999806881, 257100.788699999451637 ], [ 357548.307599999010563, 257103.493200000375509 ], [ 357542.652699999511242, 257104.71339999884367 ], [ 357537.814800001680851, 257104.673799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302190400", "MAP": null, "PARCEL_NAM": "GAMLE NORSIDEVEJ 9L", "ACRE": null, "LONGITUDE": -64.9377937, "LATITUDE": 18.34351072, "OBJECTID_1": 10147, "PARCEL_NO_": "105302190400", "Tax_Legal_": "GAMLE NORSIDEVEJ 9L CROWN PRINCE QUARTER", "Name": "FOY, IVAN & BONELLI, ANITA", "Address": "PO Box 4961", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 22000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.982590856400002, "SHAPE_Area": 146.207585868 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358082.853200003504753, 257112.512200001627207 ], [ 358065.983599998056889, 257104.98589999973774 ], [ 358064.299099996685982, 257113.415800001472235 ], [ 358079.563199996948242, 257120.084699999541044 ], [ 358082.853200003504753, 257112.512200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302261600", "MAP": null, "PARCEL_NAM": "JODE GADE 6", "ACRE": null, "LONGITUDE": -64.9363778, "LATITUDE": 18.34347869, "OBJECTID_1": 10390, "PARCEL_NO_": "105302261600", "Tax_Legal_": "JODE GADE 6 CROWN PRINCE QTR", "Name": "#6 JODE, INC.", "Address": "P.O. BOX 2162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49500, "Improved_V": 199000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.865238547999994, "SHAPE_Area": 283.720407346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358232.657300002872944, 257117.925299998372793 ], [ 358231.241700001060963, 257110.560300000011921 ], [ 358230.503700003027916, 257102.532699998468161 ], [ 358230.32379999756813, 257100.888700000941753 ], [ 358226.302599996328354, 257101.474599998444319 ], [ 358213.416299998760223, 257103.352200001478195 ], [ 358213.551399998366833, 257104.715999998152256 ], [ 358214.887500002980232, 257119.042599998414516 ], [ 358232.657300002872944, 257117.925299998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301122200", "MAP": null, "PARCEL_NAM": "200-5C-1B", "ACRE": null, "LONGITUDE": -64.94632203, "LATITUDE": 18.34342979, "OBJECTID_1": 9444, "PARCEL_NO_": "105301122200", "Tax_Legal_": "200-5C-1B ALTONA & WELGUNST KRONPRINDSENS QTR.", "Name": "GUMBS, CICELY F. & TIFFANY M", "Address": "PO Box 301773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.693036109, "SHAPE_Area": 724.14880154599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357190.463100001215935, 257081.988099999725819 ], [ 357145.993699997663498, 257095.978500001132488 ], [ 357159.569700002670288, 257111.499499998986721 ], [ 357195.185900002717972, 257095.536800000816584 ], [ 357192.842500001192093, 257086.651700001209974 ], [ 357190.463100001215935, 257081.988099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301130500", "MAP": null, "PARCEL_NAM": "200-7-5", "ACRE": null, "LONGITUDE": -64.94452639, "LATITUDE": 18.34343523, "OBJECTID_1": 9452, "PARCEL_NO_": "105301130500", "Tax_Legal_": "ALTONA & WELGUNST 200-7-5 CROWN PRINCE QTR", "Name": "PINNEY, MARION & MELBOURNE C", "Address": "PO Box 303943", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32600, "Improved_V": 176000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.713167145499995, "SHAPE_Area": 553.51895447599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357351.316100001335144, 257086.677799999713898 ], [ 357348.278800003230572, 257085.491200000047684 ], [ 357343.509199999272823, 257101.75899999961257 ], [ 357346.280699998140335, 257102.682000000029802 ], [ 357375.997100003063679, 257111.401900000870228 ], [ 357378.200900003314018, 257099.145599998533726 ], [ 357378.868699997663498, 257094.750599998980761 ], [ 357351.316100001335144, 257086.677799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302370100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93441667, "LATITUDE": 18.34344947, "OBJECTID_1": 10626, "PARCEL_NO_": "105302370100", "Tax_Legal_": "NORDSIDEVEJ 8B QUEENS QUARTER", "Name": "ROBERTS, DELREASE", "Address": "PO Box 63", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.453424670099999, "SHAPE_Area": 102.124854654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358437.729599997401237, 257103.806600000709295 ], [ 358428.075400002300739, 257101.194400001317263 ], [ 358424.677599996328354, 257121.431600000709295 ], [ 358437.729599997401237, 257103.806600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302162900", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 16", "ACRE": null, "LONGITUDE": -64.9390677, "LATITUDE": 18.34345327, "OBJECTID_1": 10021, "PARCEL_NO_": "105302162900", "Tax_Legal_": "TEMPLE STREET 16 CROWN PRINCE QUARTER", "Name": "SIMMONDS, DESMOND & YOLA", "Address": "PO Box 741", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.605611774799996, "SHAPE_Area": 386.19300017699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357935.432899996638298, 257095.473600000143051 ], [ 357927.990900002419949, 257104.349599998444319 ], [ 357921.973999999463558, 257110.181200001388788 ], [ 357940.090999998152256, 257116.621100001037121 ], [ 357953.114200003445148, 257102.3733000010252 ], [ 357946.726700000464916, 257094.932799998670816 ], [ 357935.432899996638298, 257095.473600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302261500", "MAP": null, "PARCEL_NAM": "10BA PILE STRAEDE", "ACRE": null, "LONGITUDE": -64.93626024, "LATITUDE": 18.34349959, "OBJECTID_1": 10389, "PARCEL_NO_": "105302261500", "Tax_Legal_": "PILE STRAEDE 10BA CROWN PRINCE QTR", "Name": "SMITH, CELESTINE & LOUIS", "Address": "10 Ba Pile Straede", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2400, "Improved_V": 27000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.5148050564, "SHAPE_Area": 68.658936835600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358239.197200000286102, 257117.514199998229742 ], [ 358238.505699999630451, 257109.775400001555681 ], [ 358238.356799997389317, 257107.663899999111891 ], [ 358231.037900000810623, 257108.344300001859665 ], [ 358231.241700001060963, 257110.560300000011921 ], [ 358232.657300002872944, 257117.925299998372793 ], [ 358239.197200000286102, 257117.514199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302192300", "MAP": null, "PARCEL_NAM": "BJERGE GADE 5", "ACRE": null, "LONGITUDE": -64.93719455, "LATITUDE": 18.34347116, "OBJECTID_1": 10166, "PARCEL_NO_": "105302192300", "Tax_Legal_": "BJERGE GADE 5 CROWN PRINCE QTR", "Name": "DEGRAFFE, DWAYNE", "Address": "PO Box 307593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16000, "Improved_V": 24900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.398776930099999, "SHAPE_Area": 210.63226387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358143.301500000059605, 257115.96229999884963 ], [ 358143.434600003063679, 257100.342399999499321 ], [ 358129.712899997830391, 257101.9189000017941 ], [ 358129.583400003612041, 257117.116599999368191 ], [ 358140.074400000274181, 257116.146999999880791 ], [ 358143.301500000059605, 257115.96229999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302261400", "MAP": null, "PARCEL_NAM": "10A PILE STRAEDE", "ACRE": null, "LONGITUDE": -64.93616182, "LATITUDE": 18.34349246, "OBJECTID_1": 10388, "PARCEL_NO_": "105302261400", "Tax_Legal_": "PILE STRAEDE 10A CROWN PRINCE QTR", "Name": "ABRAHAM, UNA", "Address": "PO Box 6582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6700, "Improved_V": 30100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.546471597500002, "SHAPE_Area": 138.909252366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358252.961800001561642, 257116.648699998855591 ], [ 358252.225599996745586, 257108.410000000149012 ], [ 358251.86089999973774, 257106.408500000834465 ], [ 358238.356799997389317, 257107.663899999111891 ], [ 358238.505699999630451, 257109.775400001555681 ], [ 358239.197200000286102, 257117.514199998229742 ], [ 358252.961800001561642, 257116.648699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302340900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93493797, "LATITUDE": 18.34345005, "OBJECTID_1": 10604, "PARCEL_NO_": "105302340900", "Tax_Legal_": "VESTER GADE 14AA QUEENS QTR", "Name": "MCCLEAN, EJNAR E", "Address": "PO Box 7903", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17500, "Improved_V": 77300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.256124275399998, "SHAPE_Area": 171.568819504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358373.903300002217293, 257118.271800000220537 ], [ 358384.514799997210503, 257103.15989999845624 ], [ 358375.68129999935627, 257098.865800000727177 ], [ 358365.879699997603893, 257113.562100000679493 ], [ 358373.903300002217293, 257118.271800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302192200", "MAP": null, "PARCEL_NAM": "BJERGE GADE 3", "ACRE": null, "LONGITUDE": -64.9370974, "LATITUDE": 18.34346275, "OBJECTID_1": 10165, "PARCEL_NO_": "105302192200", "Tax_Legal_": "BJERGE GADE 3 CROWN PRINCE QTR", "Name": "JAMES, BENJAMIN", "Address": "3 BJERGE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5000, "Improved_V": 1400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.263058160999996, "SHAPE_Area": 108.081844237 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358150.563699997961521, 257115.388399999588728 ], [ 358149.892300002276897, 257099.550900001078844 ], [ 358143.434600003063679, 257100.342399999499321 ], [ 358143.301500000059605, 257115.96229999884963 ], [ 358150.563699997961521, 257115.388399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301140500", "MAP": null, "PARCEL_NAM": "200-8E", "ACRE": null, "LONGITUDE": -64.94359592000001, "LATITUDE": 18.34339492, "OBJECTID_1": 9480, "PARCEL_NO_": "105301140500", "Tax_Legal_": "ALTONA & WELGUNST 200-8E CROWN PRINCE QTR", "Name": "FLETCHER, ANSLEM & ALSHA", "Address": "3566 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37000, "Improved_V": 88500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.22502177699999, "SHAPE_Area": 662.10576474000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357471.093999996781349, 257080.27419999986887 ], [ 357458.979599997401237, 257082.497099999338388 ], [ 357450.08500000089407, 257085.379599999636412 ], [ 357445.225500002503395, 257087.872900001704693 ], [ 357439.536399997770786, 257093.103700000792742 ], [ 357452.33669999986887, 257105.029699999839067 ], [ 357467.629600003361702, 257108.321299999952316 ], [ 357474.87389999628067, 257109.858199998736382 ], [ 357471.093999996781349, 257080.27419999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302173800", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9K", "ACRE": null, "LONGITUDE": -64.93849479, "LATITUDE": 18.34349051, "OBJECTID_1": 10084, "PARCEL_NO_": "105302173800", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9K CROWN PRINCE QUARTER", "Name": "MOOLENAAR, RUTH M. & OTHERS", "Address": "BOX 2275", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.773612738399997, "SHAPE_Area": 67.232030748599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357993.37049999833107, 257109.6689000017941 ], [ 357994.94539999961853, 257114.114799998700619 ], [ 358004.635499998927116, 257112.505300000309944 ], [ 358001.483999997377396, 257103.824700001627207 ], [ 357993.37049999833107, 257109.6689000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302192100", "MAP": null, "PARCEL_NAM": "BJERGE GADE 2", "ACRE": null, "LONGITUDE": -64.93700577, "LATITUDE": 18.34345252, "OBJECTID_1": 10164, "PARCEL_NO_": "105302192100", "Tax_Legal_": "2 BJERGE GADE CROWN PRINCE QTR", "Name": "CAIBY WARNER, ELISE & OTHERS", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6700, "Improved_V": 62600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.124010557799998, "SHAPE_Area": 200.67347195299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358150.563699997961521, 257115.388399999588728 ], [ 358161.054799996316433, 257114.418800000101328 ], [ 358163.475500002503395, 257114.22749999910593 ], [ 358162.737499997019768, 257106.19990000128746 ], [ 358161.999499998986721, 257098.172400001436472 ], [ 358149.892300002276897, 257099.550900001078844 ], [ 358150.563699997961521, 257115.388399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302261300", "MAP": null, "PARCEL_NAM": "PILE STRAEDE 6", "ACRE": null, "LONGITUDE": -64.93591763000001, "LATITUDE": 18.34345731, "OBJECTID_1": 10387, "PARCEL_NO_": "105302261300", "Tax_Legal_": "PILE STRAEDE 6 CROWN PRINCE QTR", "Name": "EVANS, SR. ROOSEVELT & EDRA", "Address": "PO Box 7111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61300, "Improved_V": 215700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.490898316200003, "SHAPE_Area": 362.45759453199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358256.996899999678135, 257116.259500000625849 ], [ 358261.033900000154972, 257115.659299999475479 ], [ 358265.070900000631809, 257115.059099998325109 ], [ 358274.757399998605251, 257113.871800001710653 ], [ 358287.672799997031689, 257112.288699999451637 ], [ 358286.907799996435642, 257107.427299998700619 ], [ 358286.159100003540516, 257100.666200000792742 ], [ 358255.484999999403954, 257104.425900001078844 ], [ 358256.996899999678135, 257116.259500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302162300", "MAP": null, "PARCEL_NAM": "HODGES STREET 2O", "ACRE": null, "LONGITUDE": -64.93976389, "LATITUDE": 18.34336914, "OBJECTID_1": 10011, "PARCEL_NO_": "105302162300", "Tax_Legal_": "HODGES STREET 2O CROWN PRINCE QUARTER", "Name": "J & R TURNBULL FAMILY CORP.", "Address": "PO Box 9824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56500, "Improved_V": 104300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.75260896499999, "SHAPE_Area": 810.52701487700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357883.047799997031689, 257092.089600000530481 ], [ 357866.206900000572205, 257081.186000000685453 ], [ 357849.283399999141693, 257079.991999998688698 ], [ 357848.286399997770786, 257102.3597999997437 ], [ 357877.22919999808073, 257112.51799999922514 ], [ 357884.651399999856949, 257093.15819999948144 ], [ 357883.047799997031689, 257092.089600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302261200", "MAP": null, "PARCEL_NAM": "7 GENERAL GADE", "ACRE": null, "LONGITUDE": -64.93569416, "LATITUDE": 18.34347159, "OBJECTID_1": 10386, "PARCEL_NO_": "105302261200", "Tax_Legal_": "7 GENERAL GADE CROWN PRINCE QTR", "Name": "NATHANIEL, GABRIEL R.", "Address": "PO Box 1231", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 15900, "Improved_V": 25100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.250910198200003, "SHAPE_Area": 128.421754916 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358302.252899996936321, 257104.597600001841784 ], [ 358286.907799996435642, 257107.427299998700619 ], [ 358287.672799997031689, 257112.288699999451637 ], [ 358288.450300000607967, 257115.672600001096725 ], [ 358302.987300001084805, 257113.047400001436472 ], [ 358302.252899996936321, 257104.597600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302192000", "MAP": "G9-2769-T78", "PARCEL_NAM": "1C BJERGE GADE", "ACRE": "1053 sq ft", "LONGITUDE": -64.93686462, "LATITUDE": 18.34347728, "OBJECTID_1": 10163, "PARCEL_NO_": "105302192000", "Tax_Legal_": "BJERGE GADE 1C CROWN PRINCE QTR", "Name": "ABBOTT, SHIRWIN L. & DORETTA M. BENJAMIN", "Address": "PO Box 10772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5500, "Improved_V": 61800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.214732984900003, "SHAPE_Area": 119.185669882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358178.992499999701977, 257104.901099998503923 ], [ 358162.846699997782707, 257107.388099998235703 ], [ 358163.475500002503395, 257114.22749999910593 ], [ 358179.616099998354912, 257112.670899998396635 ], [ 358178.992499999701977, 257104.901099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302131100", "MAP": null, "PARCEL_NAM": "98", "ACRE": null, "LONGITUDE": -64.94005636, "LATITUDE": 18.343388, "OBJECTID_1": 9882, "PARCEL_NO_": "105302131100", "Tax_Legal_": "ANNAS FANCY 98 CROWN PRINCE QUARTER", "Name": "DESSUIT & AHIAYIBOR & MUIA", "Address": "PO Box 304572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33100, "Improved_V": 63600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.067006664900006, "SHAPE_Area": 483.55769722600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357825.878700003027916, 257082.333599999547005 ], [ 357823.245800003409386, 257107.432100001722574 ], [ 357843.373000003397465, 257111.185499999672174 ], [ 357844.386100001633167, 257086.918000001460314 ], [ 357829.901299998164177, 257083.421999998390675 ], [ 357825.878700003027916, 257082.333599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302190500", "MAP": null, "PARCEL_NAM": "9P", "ACRE": ".091", "LONGITUDE": -64.93775699, "LATITUDE": 18.34340577, "OBJECTID_1": 10148, "PARCEL_NO_": "105302190500", "Tax_Legal_": "9P GAMLE NORDSIDEVEJ KRONPRINDSENS QUARTER", "Name": "GEORGE, DARYL A.", "Address": "2009-9P Gamble Nordsidevej Hill-Street", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21700, "Improved_V": 96400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.587791853900001, "SHAPE_Area": 337.18121957800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358084.625900000333786, 257093.739399999380112 ], [ 358074.968099996447563, 257091.549400001764297 ], [ 358068.528399996459484, 257090.230200000107288 ], [ 358065.983599998056889, 257104.98589999973774 ], [ 358082.853200003504753, 257112.512200001627207 ], [ 358088.547799997031689, 257106.648200001567602 ], [ 358084.625900000333786, 257093.739399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302341500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9347082, "LATITUDE": 18.34339976, "OBJECTID_1": 10609, "PARCEL_NO_": "105302341500", "Tax_Legal_": "NORDSIDEVEJ 5B QUEENS QUARTER", "Name": "FERGUS, JOSEPH", "Address": "PO Box 8526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.554209469299998, "SHAPE_Area": 195.73813192700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358408.731100000441074, 257100.191700000315905 ], [ 358399.120099999010563, 257092.513700000941753 ], [ 358393.400399997830391, 257101.332800000905991 ], [ 358390.1283999979496, 257106.79450000077486 ], [ 358399.750200003385544, 257113.206000000238419 ], [ 358408.731100000441074, 257100.191700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301131300", "MAP": "F9-3821-T80", "PARCEL_NAM": "200-7-11", "ACRE": "0.15", "LONGITUDE": -64.94414683, "LATITUDE": 18.3432421, "OBJECTID_1": 9460, "PARCEL_NO_": "105301131300", "Tax_Legal_": "ALTONA & WELGUNST 200-7-11 CROWN PRINCE QTR", "Name": "GLORIA, CARTER", "Address": "PO Box 304096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32100, "Improved_V": 81800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.966708858, "SHAPE_Area": 706.32160577699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357399.720299996435642, 257064.272700000554323 ], [ 357395.318599998950958, 257053.951499998569489 ], [ 357391.376999996602535, 257066.9560999982059 ], [ 357388.020700000226498, 257077.531100001186132 ], [ 357392.300999999046326, 257091.476599998772144 ], [ 357407.265900000929832, 257094.950500000268221 ], [ 357417.92059999704361, 257074.772700000554323 ], [ 357420.18469999730587, 257070.386999998241663 ], [ 357399.720299996435642, 257064.272700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302132500", "MAP": null, "PARCEL_NAM": "99A", "ACRE": null, "LONGITUDE": -64.9402105, "LATITUDE": 18.3433663, "OBJECTID_1": 9896, "PARCEL_NO_": "105302132500", "Tax_Legal_": "99A ANNA'S FANCY 99A KRONPRINDSENS QTR.", "Name": "BINGLEY G. RICHARDSON SR FAM. REV TRUST", "Address": "99A ANNAS FANCY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21600, "Improved_V": 108300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.038398168000001, "SHAPE_Area": 334.20221206299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357816.224500000476837, 257079.721400000154972 ], [ 357811.257200002670288, 257094.87950000166893 ], [ 357806.33839999884367, 257104.338500000536442 ], [ 357823.245800003409386, 257107.432100001722574 ], [ 357825.878700003027916, 257082.333599999547005 ], [ 357816.224500000476837, 257079.721400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302263700", "MAP": null, "PARCEL_NAM": "10B PILE STRAEDE", "ACRE": "1,798 sq ft", "LONGITUDE": -64.9362055, "LATITUDE": 18.34341454, "OBJECTID_1": 10409, "PARCEL_NO_": "105302263700", "Tax_Legal_": "PILE STRAEDE 1OB CROWN PRINCE QTR", "Name": "SMITH, LESLIE A", "Address": "PO Box 418", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 9400, "Improved_V": 32700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.234491006299997, "SHAPE_Area": 164.859959129 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358251.86089999973774, 257106.408500000834465 ], [ 358250.684900000691414, 257099.953699998557568 ], [ 358250.372299998998642, 257097.967599999159575 ], [ 358236.889600001275539, 257099.932100001722574 ], [ 358230.32379999756813, 257100.888700000941753 ], [ 358230.503700003027916, 257102.532699998468161 ], [ 358231.037900000810623, 257108.344300001859665 ], [ 358251.86089999973774, 257106.408500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302190900", "MAP": null, "PARCEL_NAM": "GAMBLE NORDSIDEVEJ 9SA", "ACRE": null, "LONGITUDE": -64.93739367000001, "LATITUDE": 18.34341528, "OBJECTID_1": 10151, "PARCEL_NO_": "105302190900", "Tax_Legal_": "GAMBLE NORDSIDEVEJ 9SA KRONP QTR", "Name": "WEBB, JANET & ROWLAND", "Address": "PO Box 26115", "City": "Jacksonville", "State": "Florida", "Zip": 32226, "Country": "United States", "Land_Value": 8100, "Improved_V": 99900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.082629193599999, "SHAPE_Area": 267.22586616199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358124.945100001990795, 257093.647199999541044 ], [ 358105.552299998700619, 257098.343600001186132 ], [ 358102.247900001704693, 257107.604699999094009 ], [ 358115.946199998259544, 257108.772300001233816 ], [ 358125.616599999368191, 257109.484700001776218 ], [ 358124.945100001990795, 257093.647199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302163600", "MAP": null, "PARCEL_NAM": "13 TEMPLE ST", "ACRE": "3,947 sq ft", "LONGITUDE": -64.93942316, "LATITUDE": 18.34336089, "OBJECTID_1": 10028, "PARCEL_NO_": "105302163600", "Tax_Legal_": "TEMPLE STREET 13 CROWN PRINCE QUARTER", "Name": "FRETT, ROY", "Address": "PO Box 304340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.599474506600004, "SHAPE_Area": 359.478364763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357884.651399999856949, 257093.15819999948144 ], [ 357912.757299996912479, 257106.898200001567602 ], [ 357916.882299996912479, 257095.955099999904633 ], [ 357890.385499998927116, 257082.650400001555681 ], [ 357884.651399999856949, 257093.15819999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302400900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93289221000001, "LATITUDE": 18.34337288, "OBJECTID_1": 10693, "PARCEL_NO_": "105302400900", "Tax_Legal_": "BJERGE GADE 2DE QUEENS QTR", "Name": "2DE BJERGE GADE LLC", "Address": "3716 221 St", "City": "Bayside", "State": "New York", "Zip": 11361, "Country": "United States", "Land_Value": 18200, "Improved_V": 120300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.764900348099999, "SHAPE_Area": 254.88477572799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358599.108999997377396, 257091.406300000846386 ], [ 358578.863099999725819, 257101.584199998527765 ], [ 358585.220100000500679, 257112.613099999725819 ], [ 358603.873099997639656, 257100.100099999457598 ], [ 358599.108999997377396, 257091.406300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302190800", "MAP": null, "PARCEL_NAM": "GAMLE NORSIDEVEJ 9S", "ACRE": null, "LONGITUDE": -64.93750382, "LATITUDE": 18.34332875, "OBJECTID_1": 10150, "PARCEL_NO_": "105302190800", "Tax_Legal_": "GAMLE NORSIDEVEJ 9S CROWN PRINCE QUARTER", "Name": "ESTRILL, AMADEO & IVY A", "Address": "PO Box 26115", "City": "Jacksonville", "State": "Florida", "Zip": 32226, "Country": "United States", "Land_Value": 47700, "Improved_V": 60500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.399674163, "SHAPE_Area": 683.29566179200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358096.005999997258186, 257083.066799998283386 ], [ 358084.625900000333786, 257093.739399999380112 ], [ 358088.547799997031689, 257106.648200001567602 ], [ 358102.247900001704693, 257107.604699999094009 ], [ 358105.552299998700619, 257098.343600001186132 ], [ 358124.945100001990795, 257093.647199999541044 ], [ 358125.053000003099442, 257080.982500001788139 ], [ 358096.005999997258186, 257083.066799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401340800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93263912, "LATITUDE": 18.34333822, "OBJECTID_1": 11990, "PARCEL_NO_": "105401340800", "Tax_Legal_": "MURPHY GADE 16 QUEENS", "Name": "KIMMEL, CHAMBERS CZUKOSKI", "Address": "316 W Village Ln", "City": "Boise", "State": "Idaho", "Zip": 83702, "Country": "United States", "Land_Value": 14000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.393873231200004, "SHAPE_Area": 428.32602494100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358603.149599999189377, 257090.383900001645088 ], [ 358615.872500002384186, 257111.386300001293421 ], [ 358631.23200000077486, 257106.867899999022484 ], [ 358623.352300003170967, 257085.271899998188019 ], [ 358603.149599999189377, 257090.383900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302131000", "MAP": null, "PARCEL_NAM": "99", "ACRE": null, "LONGITUDE": -64.94032735, "LATITUDE": 18.34329645, "OBJECTID_1": 9881, "PARCEL_NO_": "105302131000", "Tax_Legal_": "ANNAS FANCY 99 CROWN PRINCE QUARTER", "Name": "Williams, Leona I. & Yolanda D. Ferman", "Address": "1480 Thieriot Ave", "City": "Bronx", "State": "New York", "Zip": 10460, "Country": "United States", "Land_Value": 21600, "Improved_V": 35800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.2414933644, "SHAPE_Area": 335.98822539399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357806.33839999884367, 257104.338500000536442 ], [ 357811.257200002670288, 257094.87950000166893 ], [ 357816.224500000476837, 257079.721400000154972 ], [ 357794.502700001001358, 257073.844099998474121 ], [ 357801.574299998581409, 257095.644600000232458 ], [ 357801.558100000023842, 257097.544300001114607 ], [ 357806.33839999884367, 257104.338500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301112600", "MAP": null, "PARCEL_NAM": "200-6F&200-6E-1", "ACRE": null, "LONGITUDE": -64.9451359, "LATITUDE": 18.34329841, "OBJECTID_1": 9418, "PARCEL_NO_": "105301112600", "Tax_Legal_": "200-6F&200-6E-1 ALTONA&WELGUNST CROWN PRINCE QTR", "Name": "JAMES, DAVID", "Address": "PO Box 308806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.26698147299999, "SHAPE_Area": 1049.49767195 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357317.907300002872944, 257077.54280000180006 ], [ 357294.612300001084805, 257067.008499998599291 ], [ 357294.633900001645088, 257064.475600000470877 ], [ 357280.127499997615814, 257063.512499999254942 ], [ 357279.868500001728535, 257093.907800000160933 ], [ 357291.160499997437, 257093.578099999576807 ], [ 357291.106499999761581, 257099.910399999469519 ], [ 357316.926500000059605, 257098.010800000280142 ], [ 357316.244300000369549, 257083.439800001680851 ], [ 357317.907300002872944, 257077.54280000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301132200", "MAP": null, "PARCEL_NAM": "200-7-21", "ACRE": null, "LONGITUDE": -64.943927, "LATITUDE": 18.34325846, "OBJECTID_1": 9468, "PARCEL_NO_": "105301132200", "Tax_Legal_": "ALTONA & WELGUNST 200-7-21 CROWN PRINCE QTR", "Name": "BRUMANT, HERBERT & PAMELA L", "Address": "PO Box 305228", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.270493067, "SHAPE_Area": 609.83806674499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357437.215700000524521, 257085.732599999755621 ], [ 357429.575499996542931, 257052.527199998497963 ], [ 357425.299699999392033, 257060.478799998760223 ], [ 357417.92059999704361, 257074.772700000554323 ], [ 357409.136100001633167, 257091.408700000494719 ], [ 357428.493699997663498, 257096.708999998867512 ], [ 357431.489399999380112, 257091.138000000268221 ], [ 357437.215700000524521, 257085.732599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105302163200", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 25", "ACRE": null, "LONGITUDE": -64.93868764, "LATITUDE": 18.34337336, "OBJECTID_1": 10024, "PARCEL_NO_": "105302163200", "Tax_Legal_": "NY NORDSIDEVEJ 25 CROWN PRINCE QTR", "Name": "BAPTISTE, SYDNEY A", "Address": "2600 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026310, "Country": "United States", "Land_Value": 8800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.267094971399999, "SHAPE_Area": 92.6775971056 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357981.469999998807907, 257086.773400001227856 ], [ 357976.617799997329712, 257088.422400001436472 ], [ 357975.669399999082088, 257105.091099999845028 ], [ 357981.310000002384186, 257105.559399999678135 ], [ 357981.469999998807907, 257086.773400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302342000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93458707000001, "LATITUDE": 18.34331898, "OBJECTID_1": 10614, "PARCEL_NO_": "105302342000", "Tax_Legal_": "NORDSIDEVEJ 5A QUEENS QUARTER", "Name": "FERGUS, JOSEPH", "Address": "PO Box 8526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20700, "Improved_V": 44400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.723452312000006, "SHAPE_Area": 339.22319199600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358423.302299998700619, 257093.556000001728535 ], [ 358407.285700000822544, 257080.548200000077486 ], [ 358399.120099999010563, 257092.513700000941753 ], [ 358408.731100000441074, 257100.191700000315905 ], [ 358419.943999998271465, 257109.149399999529123 ], [ 358423.302299998700619, 257093.556000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302163100", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 18", "ACRE": null, "LONGITUDE": -64.9388308, "LATITUDE": 18.3433743, "OBJECTID_1": 10023, "PARCEL_NO_": "105302163100", "Tax_Legal_": "NY NORDSIDEVEJ 18 CROWN PRINCE QUARTER", "Name": "BAPTIST, SYDNEY", "Address": "2600 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026310, "Country": "United States", "Land_Value": 15400, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.886433876400005, "SHAPE_Area": 359.05343244400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357976.617799997329712, 257088.422400001436472 ], [ 357946.7483000010252, 257092.39979999884963 ], [ 357946.726700000464916, 257094.932799998670816 ], [ 357953.114200003445148, 257102.3733000010252 ], [ 357975.669399999082088, 257105.091099999845028 ], [ 357976.617799997329712, 257088.422400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401340700", "MAP": "D9-9131-T016", "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.93211126, "LATITUDE": 18.34338092, "OBJECTID_1": 11989, "PARCEL_NO_": "105401340700", "Tax_Legal_": "NYE GADE 5 QUEENS QUARTER", "Name": "FORDE, BEATRICE C", "Address": "PO Box 302882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11800, "Improved_V": 29400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.016312362800001, "SHAPE_Area": 241.01223145500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358663.549300000071526, 257099.533100001513958 ], [ 358665.874700002372265, 257110.528999999165535 ], [ 358682.814400002360344, 257109.82319999858737 ], [ 358681.338500000536442, 257093.768100000917912 ], [ 358663.549300000071526, 257099.533100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302262200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93570301, "LATITUDE": 18.34340314, "OBJECTID_1": 10396, "PARCEL_NO_": "105302262200", "Tax_Legal_": "GENERAL GADE 6 CROWN PRINCE QTR", "Name": "FLORENCE V RICHARDSON REVOCABLE TRUST", "Address": "PO Box 1327", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6000, "Improved_V": 600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.063591476, "SHAPE_Area": 107.570590822 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358301.505999997258186, 257097.625399999320507 ], [ 358286.159100003540516, 257100.666200000792742 ], [ 358286.907799996435642, 257107.427299998700619 ], [ 358302.252899996936321, 257104.597600001841784 ], [ 358301.505999997258186, 257097.625399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301152300", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-6", "ACRE": ".24", "LONGITUDE": -64.94747878, "LATITUDE": 18.34321192, "OBJECTID_1": 9521, "PARCEL_NO_": "105301152300", "Tax_Legal_": "220-6 ALTONA&WELGUNST CROWN PRINCE QTR.", "Name": "MAYNARD FAMILY TRUST", "Address": "PO Box 305307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55400, "Improved_V": 157100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.42584747500001, "SHAPE_Area": 989.83849343999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357035.59179999679327, 257087.686700001358986 ], [ 357058.89750000089407, 257096.9543999992311 ], [ 357061.647299997508526, 257058.13569999858737 ], [ 357060.916599996387959, 257049.263799998909235 ], [ 357059.323700003325939, 257046.928800001740456 ], [ 357056.904799997806549, 257046.909000001847744 ], [ 357052.873199999332428, 257046.875999998301268 ], [ 357044.772299997508526, 257051.242600001394749 ], [ 357038.249899998307228, 257059.633000001311302 ], [ 357036.543799996376038, 257070.595899999141693 ], [ 357037.260200001299381, 257081.156399998813868 ], [ 357035.59179999679327, 257087.686700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302200100", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ PARCEL OF #5", "ACRE": null, "LONGITUDE": -64.9383596, "LATITUDE": 18.34240322, "OBJECTID_1": 10175, "PARCEL_NO_": "105302200100", "Tax_Legal_": "GAMLE NORDSIDEVEJ PARCEL OF #5 KRONPRINDSENS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 685100, "Improved_V": 44200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 500.69222377400001, "SHAPE_Area": 9504.1218516600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358046.551500000059605, 256924.975099999457598 ], [ 358050.033900000154972, 256894.817200001329184 ], [ 357997.634400002658367, 256893.121800001710653 ], [ 357993.89130000025034, 256953.886100001633167 ], [ 357987.695100001990795, 257018.641100000590086 ], [ 357983.898000001907349, 257085.737799998372793 ], [ 357983.737899996340275, 257104.523800000548363 ], [ 357994.282899998128414, 257097.221900001168251 ], [ 358028.31530000269413, 257077.868700001388788 ], [ 358031.788699999451637, 257048.766199998557568 ], [ 358046.508400000631809, 256930.041000001132488 ], [ 358046.551500000059605, 256924.975099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302193100", "MAP": "G9-2769-T78", "PARCEL_NAM": "1A BJERGE GADE", "ACRE": null, "LONGITUDE": -64.93686878, "LATITUDE": 18.34338893, "OBJECTID_1": 10173, "PARCEL_NO_": "105302193100", "Tax_Legal_": "BJERGE GADE 1 A CROWN PRINCE QTR", "Name": "MULCARE, NANA & OTHERS", "Address": "PO Box 6843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8000, "Improved_V": 63600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.498649197, "SHAPE_Area": 81.967706162400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358178.69370000064373, 257101.72410000115633 ], [ 358178.141999997198582, 257096.404599998146296 ], [ 358163.614000000059605, 257097.974500000476837 ], [ 358164.149099998176098, 257103.796500001102686 ], [ 358178.69370000064373, 257101.72410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302130900", "MAP": null, "PARCEL_NAM": "100", "ACRE": null, "LONGITUDE": -64.94051782, "LATITUDE": 18.34332016, "OBJECTID_1": 9880, "PARCEL_NO_": "105302130900", "Tax_Legal_": "ANNAS FANCY 100 CROWN PRINCE QUARTER", "Name": "HODGE, ETHEL F", "Address": "3263 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41600, "Improved_V": 43400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.247008475399994, "SHAPE_Area": 538.89338470400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357780.010600000619888, 257071.192400000989437 ], [ 357772.507399998605251, 257100.050799999386072 ], [ 357783.784999996423721, 257101.409699998795986 ], [ 357795.062600001692772, 257102.768500000238419 ], [ 357800.06360000371933, 257102.885200001299381 ], [ 357787.935500003397465, 257071.412799999117851 ], [ 357784.404200002551079, 257070.861699998378754 ], [ 357780.010600000619888, 257071.192400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301130400", "MAP": "F9-3829-T80", "PARCEL_NAM": "200-7-4", "ACRE": null, "LONGITUDE": -64.94447251, "LATITUDE": 18.34329165, "OBJECTID_1": 9451, "PARCEL_NO_": "105301130400", "Tax_Legal_": "ALTONA & WELGUNST 200-7-4 CROWN PRINCE QTR", "Name": "GUMBS CHINNERY, JENNIER", "Address": "3102 Contant 31A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.037385725299998, "SHAPE_Area": 453.20071690200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357382.048299998044968, 257077.776500001549721 ], [ 357357.026100002229214, 257070.799100000411272 ], [ 357355.827299997210503, 257075.108899999409914 ], [ 357353.332900002598763, 257083.9543999992311 ], [ 357351.316100001335144, 257086.677799999713898 ], [ 357378.868699997663498, 257094.750599998980761 ], [ 357380.763700000941753, 257082.279100000858307 ], [ 357382.048299998044968, 257077.776500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302174200", "MAP": null, "PARCEL_NAM": "9E GAMLE NORDSIDEVEJ", "ACRE": null, "LONGITUDE": -64.93803991, "LATITUDE": 18.34333704, "OBJECTID_1": 10088, "PARCEL_NO_": "105302174200", "Tax_Legal_": "9E GAMLE NORDSIDEVEJ CROWN PRINCE QUARTER", "Name": "RITA E DAWSON and DERRICK A DAWSON", "Address": "4907 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27300, "Improved_V": 569400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.597882165599998, "SHAPE_Area": 441.51741606100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358034.70830000191927, 257084.675999999046326 ], [ 358039.378899998962879, 257104.345899999141693 ], [ 358059.55290000140667, 257102.611200001090765 ], [ 358059.631999999284744, 257093.323699999600649 ], [ 358058.841899998486042, 257091.417399998754263 ], [ 358055.659800000488758, 257086.325100000947714 ], [ 358051.653399996459484, 257083.337000001221895 ], [ 358045.217299997806549, 257081.595600001513958 ], [ 358037.949699997901917, 257082.802700001746416 ], [ 358034.70830000191927, 257084.675999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302341300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93484813000001, "LATITUDE": 18.34336655, "OBJECTID_1": 10608, "PARCEL_NO_": "105302341300", "Tax_Legal_": "VESTER GADE 13B QUEENS QUARTER", "Name": "MONSANTO,LEROY,MARILYN,HARRIET, MELVIN,LAWRENCE&LEROY,JR.", "Address": "3460 Cedar Ave", "City": "Long Beach", "State": "California", "Zip": 90807, "Country": "United States", "Land_Value": 5500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.855441582799997, "SHAPE_Area": 120.591913714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358393.400399997830391, 257101.332800000905991 ], [ 358388.594899997115135, 257097.49379999935627 ], [ 358380.582099996507168, 257091.517599999904633 ], [ 358375.68129999935627, 257098.865800000727177 ], [ 358384.514799997210503, 257103.15989999845624 ], [ 358390.1283999979496, 257106.79450000077486 ], [ 358393.400399997830391, 257101.332800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302261800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93641517, "LATITUDE": 18.34333567, "OBJECTID_1": 10392, "PARCEL_NO_": "105302261800", "Tax_Legal_": "JODE GADE 7 CROWN PRINCE QTR", "Name": "JEAN, EDITH R", "Address": "PO Box 127", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 12800, "Improved_V": 84400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.916373622000002, "SHAPE_Area": 207.36626586899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358226.302599996328354, 257101.474599998444319 ], [ 358224.981799997389317, 257088.133200000971556 ], [ 358224.659100003540516, 257085.862799998372793 ], [ 358211.722300000488758, 257087.260800000280142 ], [ 358212.066399998962879, 257089.7162000015378 ], [ 358213.416299998760223, 257103.352200001478195 ], [ 358226.302599996328354, 257101.474599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302310500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93544358, "LATITUDE": 18.34338154, "OBJECTID_1": 10522, "PARCEL_NO_": "105302310500", "Tax_Legal_": "GENERAL GADE 11B CROWN PRINCE QTR", "Name": "HURTAULT, MAGDALENE", "Address": "2114 Crystal Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22600, "Improved_V": 88900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.567477937600003, "SHAPE_Area": 217.60900141299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358337.809799998998642, 257095.600499998778105 ], [ 358307.150200001895428, 257097.671599999070168 ], [ 358307.889899998903275, 257105.488099999725819 ], [ 358334.519799999892712, 257103.172899998724461 ], [ 358337.809799998998642, 257095.600499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302262100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93593299, "LATITUDE": 18.34335213, "OBJECTID_1": 10395, "PARCEL_NO_": "105302262100", "Tax_Legal_": "PILE STRAEDE 5 CROWN PRINCE QTR", "Name": "WILLIAMS, WINSTON M.A., TRUSTEE", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64800, "Improved_V": 280600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.271191227599999, "SHAPE_Area": 362.20105619899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358278.187600001692772, 257089.835200000554323 ], [ 358267.694799996912479, 257091.015900000929832 ], [ 358262.851499997079372, 257091.609499998390675 ], [ 358253.9712999984622, 257092.803399998694658 ], [ 358255.484999999403954, 257104.425900001078844 ], [ 358286.159100003540516, 257100.666200000792742 ], [ 358284.629199996590614, 257090.943399999290705 ], [ 358284.645300000905991, 257089.043699998408556 ], [ 358278.187600001692772, 257089.835200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302130800", "MAP": null, "PARCEL_NAM": "101", "ACRE": null, "LONGITUDE": -64.94075, "LATITUDE": 18.34327042, "OBJECTID_1": 9879, "PARCEL_NO_": "105302130800", "Tax_Legal_": "ANNAS FANCY 1O1 CROWN PRINCE QUARTER", "Name": "CALLWOOD, GAIL E.", "Address": "PO Box 8029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31600, "Improved_V": 138200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.95591648200001, "SHAPE_Area": 920.31038534200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357780.010600000619888, 257071.192400000989437 ], [ 357763.094200000166893, 257069.154100000858307 ], [ 357750.223800003528595, 257065.460200000554323 ], [ 357741.898100003600121, 257096.21169999986887 ], [ 357754.78660000115633, 257097.794799998402596 ], [ 357764.451499998569489, 257099.140500001609325 ], [ 357772.507399998605251, 257100.050799999386072 ], [ 357780.010600000619888, 257071.192400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301131600", "MAP": "F9-3820-T80", "PARCEL_NAM": "200-7-26", "ACRE": "0.25", "LONGITUDE": -64.94283372, "LATITUDE": 18.34324731, "OBJECTID_1": 9463, "PARCEL_NO_": "105301131600", "Tax_Legal_": "ALTONA & WELGUNST 200-7-26 CROWN PRINCE QTR", "Name": "FLORA BAYLEY & COLLIN BAYLEY REVOCABLE TRUST", "Address": "200-7-26 Estate Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56400, "Improved_V": 97000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.804828538, "SHAPE_Area": 968.65026749599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357534.1554000005126, 257060.947500001639128 ], [ 357528.525600001215935, 257059.212699998170137 ], [ 357524.217200003564358, 257091.6858000010252 ], [ 357531.745200000703335, 257094.823899999260902 ], [ 357538.680399999022484, 257097.714800000190735 ], [ 357542.710199996829033, 257097.95890000090003 ], [ 357547.564300000667572, 257096.098799999803305 ], [ 357550.812899999320507, 257093.38120000064373 ], [ 357554.914599999785423, 257085.182100001722574 ], [ 357558.19200000166893, 257079.087200000882149 ], [ 357558.208200000226498, 257077.1875 ], [ 357560.693599998950958, 257069.397399999201298 ], [ 357534.1554000005126, 257060.947500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302261700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93665382, "LATITUDE": 18.34335508, "OBJECTID_1": 10391, "PARCEL_NO_": "105302261700", "Tax_Legal_": "JODE GADE 2 CROWN PRINCE QTR", "Name": "FRANCIS, EDRIC", "Address": "PO Box 304946", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8600, "Improved_V": 26700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.998022005099998, "SHAPE_Area": 169.34310994800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358206.393500000238419, 257093.0472999997437 ], [ 358206.204700000584126, 257091.837900001555681 ], [ 358190.979800000786781, 257093.502099998295307 ], [ 358180.647699996829033, 257094.315699998289347 ], [ 358181.089100003242493, 257100.899000000208616 ], [ 358207.014700002968311, 257098.468800000846386 ], [ 358206.393500000238419, 257093.0472999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401340900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93248422000001, "LATITUDE": 18.34330151, "OBJECTID_1": 11991, "PARCEL_NO_": "105401340900", "Tax_Legal_": "BRED GADE 5B QUEENS QUARTER", "Name": "CYRIL V. FRANCOIS ASSOC.", "Address": "PO Box 6050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.567146911799995, "SHAPE_Area": 341.09513500200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358645.783399999141693, 257102.554099999368191 ], [ 358637.898299999535084, 257081.591299999505281 ], [ 358634.665899999439716, 257082.409200001507998 ], [ 358623.352300003170967, 257085.271899998188019 ], [ 358631.23200000077486, 257106.867899999022484 ], [ 358645.783399999141693, 257102.554099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302261900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93630215, "LATITUDE": 18.34332026, "OBJECTID_1": 10393, "PARCEL_NO_": "105302261900", "Tax_Legal_": "PILE STRAEDE 11A CROWN PRINCE QTR", "Name": "WEBBE, ORIAL, JOSEPH E., DEMOII,DEVONTE,DERON", "Address": "11B PILE STRAEDE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12100, "Improved_V": 17400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.181228858700003, "SHAPE_Area": 171.80494681100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358236.889600001275539, 257099.932100001722574 ], [ 358236.282799996435642, 257086.747999999672174 ], [ 358236.04839999973774, 257084.631999999284744 ], [ 358228.714900001883507, 257085.424499999731779 ], [ 358224.659100003540516, 257085.862799998372793 ], [ 358224.981799997389317, 257088.133200000971556 ], [ 358226.302599996328354, 257101.474599998444319 ], [ 358236.889600001275539, 257099.932100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301112400", "MAP": null, "PARCEL_NAM": "200-6D", "ACRE": null, "LONGITUDE": -64.94557892, "LATITUDE": 18.34325869, "OBJECTID_1": 9416, "PARCEL_NO_": "105301112400", "Tax_Legal_": "ALTONA & WELGUNST 200-6D CROWN PRINCE QTR", "Name": "GEORGE LEWIS REVOCABLE TRUST", "Address": "1670 Longfellow Ave", "City": "Bronx", "State": "New York", "Zip": 10460, "Country": "United States", "Land_Value": 32000, "Improved_V": 119000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.167837358, "SHAPE_Area": 652.49087391299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357251.919100001454353, 257061.804000001400709 ], [ 357242.248700000345707, 257061.091499999165535 ], [ 357238.748400002717972, 257093.360199999064207 ], [ 357255.673699997365475, 257094.343100000172853 ], [ 357259.703500002622604, 257094.587200000882149 ], [ 357261.591300003230572, 257062.305300001055002 ], [ 357251.919100001454353, 257061.804000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301112500", "MAP": null, "PARCEL_NAM": "200-6E REM", "ACRE": null, "LONGITUDE": -64.94539279, "LATITUDE": 18.34326366, "OBJECTID_1": 9417, "PARCEL_NO_": "105301112500", "Tax_Legal_": "200-6E REM'R. ALTONA&WELGUNST CROWN PRINCE QTR", "Name": "PHILBERT, JOSEPH & FELIXIA", "Address": "PO Box 9191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 57800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.48541805799999, "SHAPE_Area": 606.873967021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357265.620999999344349, 257062.549400001764297 ], [ 357261.591300003230572, 257062.305300001055002 ], [ 357259.703500002622604, 257094.587200000882149 ], [ 357279.868500001728535, 257093.907800000160933 ], [ 357280.127499997615814, 257063.512499999254942 ], [ 357265.620999999344349, 257062.549400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302370200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93436284000001, "LATITUDE": 18.34335401, "OBJECTID_1": 10627, "PARCEL_NO_": "105302370200", "Tax_Legal_": "NORDSIDEVEJ 8A QUEENS QUARTER", "Name": "ROBERTS, DELREASE", "Address": "PO Box 63", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.939743700400001, "SHAPE_Area": 107.656665308 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358445.880900003015995, 257093.529699999839067 ], [ 358428.930299997329712, 257095.501899998635054 ], [ 358428.075400002300739, 257101.194400001317263 ], [ 358437.729599997401237, 257103.806600000709295 ], [ 358445.880900003015995, 257093.529699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301112300", "MAP": null, "PARCEL_NAM": "200-6C", "ACRE": null, "LONGITUDE": -64.94579034, "LATITUDE": 18.34319829, "OBJECTID_1": 9415, "PARCEL_NO_": "105301112300", "Tax_Legal_": "ALTONA & WELGUNST 200-6C CROWN PRINCE QTR", "Name": "RUEBEN, CONNIE", "Address": "86 Chadwick Dr", "City": "Stafford", "State": "Virginia", "Zip": 22556, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.57766491, "SHAPE_Area": 765.93175837700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357242.248700000345707, 257061.091499999165535 ], [ 357234.1891999989748, 257060.603399999439716 ], [ 357227.009700000286102, 257051.467599999159575 ], [ 357208.349500000476837, 257064.82490000128746 ], [ 357217.937100000679493, 257075.246899999678135 ], [ 357225.109399996697903, 257085.227000001817942 ], [ 357232.319499999284744, 257090.774500001221895 ], [ 357238.748400002717972, 257093.360199999064207 ], [ 357242.248700000345707, 257061.091499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302311300", "MAP": null, "PARCEL_NAM": "VESTER GADE 41B", "ACRE": "2,297 sq ft", "LONGITUDE": -64.93510919000001, "LATITUDE": 18.3433567, "OBJECTID_1": 10529, "PARCEL_NO_": "105302311300", "Tax_Legal_": "41B VESTER GADE QUEENS QUARTER", "Name": "GLASBY WILLIS, EVELYN", "Address": "PO Box 301814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.975604950299996, "SHAPE_Area": 198.21822279400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358359.950499996542931, 257095.031599998474121 ], [ 358348.954899996519089, 257087.789799999445677 ], [ 358348.351199999451637, 257088.72069999948144 ], [ 358345.191500000655651, 257096.092599999159575 ], [ 358354.678099997341633, 257101.351500000804663 ], [ 358365.794299997389317, 257107.513700000941753 ], [ 358369.198499999940395, 257102.612399999052286 ], [ 358369.897699996829033, 257101.582899998873472 ], [ 358359.950499996542931, 257095.031599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302130700", "MAP": null, "PARCEL_NAM": "102", "ACRE": null, "LONGITUDE": -64.94095781, "LATITUDE": 18.34323236, "OBJECTID_1": 9878, "PARCEL_NO_": "105302130700", "Tax_Legal_": "ANNAS FANCY 1O2 CROWN PRINCE QUARTER", "Name": "JURGEN, STEFAN", "Address": "PO Box 8568", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.836468941199996, "SHAPE_Area": 473.77221899400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357735.744300000369549, 257061.330899998545647 ], [ 357728.203400000929832, 257094.621899999678135 ], [ 357741.898100003600121, 257096.21169999986887 ], [ 357750.223800003528595, 257065.460200000554323 ], [ 357735.744300000369549, 257061.330899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302262300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93571612, "LATITUDE": 18.34333105, "OBJECTID_1": 10397, "PARCEL_NO_": "105302262300", "Tax_Legal_": "GENERAL GADE 5 CROWN PRINCE QTR", "Name": "MADURO, JR, THEODORE A. & BARBARA MADURO-WYDER & OTHERS", "Address": "PO BOX 1842", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6000, "Improved_V": 67600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.7565002929, "SHAPE_Area": 144.93100288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358299.967100001871586, 257088.958000000566244 ], [ 358284.629199996590614, 257090.943399999290705 ], [ 358286.159100003540516, 257100.666200000792742 ], [ 358301.505999997258186, 257097.625399999320507 ], [ 358299.967100001871586, 257088.958000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302192400", "MAP": null, "PARCEL_NAM": "BORGER GADE 6C", "ACRE": null, "LONGITUDE": -64.93721493, "LATITUDE": 18.34327812, "OBJECTID_1": 10167, "PARCEL_NO_": "105302192400", "Tax_Legal_": "BORGER GADE 6C CROWN PRINCE QUARTER", "Name": "OTTLEY, AUBREY", "Address": "PO Box 304009", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14000, "Improved_V": 65800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.750732236600001, "SHAPE_Area": 240.50224012499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358141.960500001907349, 257095.518699999898672 ], [ 358140.49889999628067, 257077.774900000542402 ], [ 358127.587200000882149, 257078.9358000010252 ], [ 358128.238799996674061, 257097.095199998468161 ], [ 358141.960500001907349, 257095.518699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302262000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93618999, "LATITUDE": 18.34330801, "OBJECTID_1": 10394, "PARCEL_NO_": "105302262000", "Tax_Legal_": "PILE STRAEDE 11B CROWN PRINCE QTR", "Name": "WEBBE, JOSEPH & MURIEL", "Address": "2711 Pile Strade11B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10100, "Improved_V": 34300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.949820622700003, "SHAPE_Area": 192.62208929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358250.372299998998642, 257097.967599999159575 ], [ 358248.390000000596046, 257085.36939999833703 ], [ 358248.16330000013113, 257083.322799999266863 ], [ 358236.04839999973774, 257084.631999999284744 ], [ 358236.282799996435642, 257086.747999999672174 ], [ 358236.889600001275539, 257099.932100001722574 ], [ 358250.372299998998642, 257097.967599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302341800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93476122, "LATITUDE": 18.34332806, "OBJECTID_1": 10612, "PARCEL_NO_": "105302341800", "Tax_Legal_": "VESTER GADE 13A QUEENS QUARTER", "Name": "TODMAN, RICHARD", "Address": "PO Box 11466", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.018794522299999, "SHAPE_Area": 63.231660596300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358399.120099999010563, 257092.513700000941753 ], [ 358394.312799997627735, 257088.885800000280142 ], [ 358388.594899997115135, 257097.49379999935627 ], [ 358393.400399997830391, 257101.332800000905991 ], [ 358399.120099999010563, 257092.513700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401341000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93236575, "LATITUDE": 18.34326828, "OBJECTID_1": 11992, "PARCEL_NO_": "105401341000", "Tax_Legal_": "BRED GADE 5A QUEENS QTR", "Name": "CYRIL V. FRANCOIS ASSOC.", "Address": "PO Box 6050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.695795751600002, "SHAPE_Area": 244.58732732199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358656.292400002479553, 257099.473700001835823 ], [ 358648.407300002872944, 257078.510899998247623 ], [ 358637.898299999535084, 257081.591299999505281 ], [ 358645.783399999141693, 257102.554099999368191 ], [ 358656.292400002479553, 257099.473700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302130600", "MAP": null, "PARCEL_NAM": "103", "ACRE": null, "LONGITUDE": -64.94113328, "LATITUDE": 18.34320872, "OBJECTID_1": 9877, "PARCEL_NO_": "105302130600", "Tax_Legal_": "ANNAS FANCY 103 CROWN PRINCE QTR", "Name": "THOMAS, CECIL V. & IAN A.", "Address": "PO Box 7533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43700, "Improved_V": 124900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.812183393, "SHAPE_Area": 793.07965676000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357711.5675999969244, 257059.655299998819828 ], [ 357705.649999998509884, 257091.69310000166297 ], [ 357714.510499998927116, 257092.821100000292063 ], [ 357728.203400000929832, 257094.621899999678135 ], [ 357735.744300000369549, 257061.330899998545647 ], [ 357724.472199998795986, 257059.338799998164177 ], [ 357711.5675999969244, 257059.655299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302192500", "MAP": null, "PARCEL_NAM": "BORGER GADE 6AA", "ACRE": null, "LONGITUDE": -64.93707605, "LATITUDE": 18.34324374, "OBJECTID_1": 10168, "PARCEL_NO_": "105302192500", "Tax_Legal_": "BORGER GADE 6AA CROWN PRINCE QUARTER", "Name": "DEGRAFFE, DWAYNE", "Address": "PO Box 307593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1700, "Improved_V": 61600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.941641174799997, "SHAPE_Area": 237.864472796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358160.593800000846386, 257085.327599998563528 ], [ 358159.866599999368191, 257076.033599998801947 ], [ 358140.49889999628067, 257077.774900000542402 ], [ 358141.960500001907349, 257095.518699999898672 ], [ 358148.418200001120567, 257094.727200001478195 ], [ 358147.678400002419949, 257086.910700000822544 ], [ 358160.593800000846386, 257085.327599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302163500", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 17A", "ACRE": null, "LONGITUDE": -64.93904063, "LATITUDE": 18.34331682, "OBJECTID_1": 10027, "PARCEL_NO_": "105302163500", "Tax_Legal_": "NY NORDSIDEVEJ 17A CROWN PRINCE QUARTER", "Name": "DEWINDT, FRANKLIN & VIVIAN", "Address": "PO Box 502582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 7200, "Improved_V": 59600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.031031594200002, "SHAPE_Area": 112.507735309 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357946.7483000010252, 257092.39979999884963 ], [ 357947.622900001704693, 257084.385400000959635 ], [ 357936.321900002658367, 257085.770599998533726 ], [ 357935.432899996638298, 257095.473600000143051 ], [ 357946.726700000464916, 257094.932799998670816 ], [ 357946.7483000010252, 257092.39979999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301132100", "MAP": null, "PARCEL_NAM": "200-7-22", "ACRE": null, "LONGITUDE": -64.94377581000001, "LATITUDE": 18.34307999, "OBJECTID_1": 9467, "PARCEL_NO_": "105301132100", "Tax_Legal_": "ALTONA & WELGUNST 200-7-22 CROWN PRINCE QTR", "Name": "WALWYN, ORAL & MARJORIE", "Address": "4337 Montreaux Ave", "City": "Melbourne", "State": "Florida", "Zip": 32934, "Country": "United States", "Land_Value": 46900, "Improved_V": 171300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.39998971, "SHAPE_Area": 750.6765302 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357448.347599998116493, 257039.161299999803305 ], [ 357438.53320000320673, 257035.040899999439716 ], [ 357434.975500002503395, 257042.086399998515844 ], [ 357431.672799997031689, 257048.626800000667572 ], [ 357429.575499996542931, 257052.527199998497963 ], [ 357437.215700000524521, 257085.732599999755621 ], [ 357441.244300000369549, 257081.929699998348951 ], [ 357451.756899997591972, 257078.427200000733137 ], [ 357448.8175999969244, 257044.839200001209974 ], [ 357448.642800003290176, 257042.727400001138449 ], [ 357448.347599998116493, 257039.161299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302213300", "MAP": null, "PARCEL_NAM": "11AA BORGE GADE", "ACRE": "632 sq ft", "LONGITUDE": -64.93702573, "LATITUDE": 18.34330058, "OBJECTID_1": 10216, "PARCEL_NO_": "105302213300", "Tax_Legal_": "BORGER GADE 11AA CROWN PRINCE QUARTER", "Name": "PAUL, IAN", "Address": "2800 Borger Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.911224778799998, "SHAPE_Area": 103.401076418 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358148.418200001120567, 257094.727200001478195 ], [ 358161.331799998879433, 257093.355200000107288 ], [ 358160.593800000846386, 257085.327599998563528 ], [ 358147.678400002419949, 257086.910700000822544 ], [ 358148.418200001120567, 257094.727200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302401000", "MAP": "G9-2539-T76", "PARCEL_NAM": "2DD", "ACRE": "6588 sq ft", "LONGITUDE": -64.93306959, "LATITUDE": 18.34307235, "OBJECTID_1": 10694, "PARCEL_NO_": "105302401000", "Tax_Legal_": "BJERGE GADE 2DD QUEENS QUARTER", "Name": "2DD BJERGE GADE LLC", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 44400, "Improved_V": 248200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.9354862, "SHAPE_Area": 708.44420329900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358571.521499998867512, 257084.83559999987483 ], [ 358592.910800002515316, 257073.900400001555681 ], [ 358580.8766999989748, 257054.526799999177456 ], [ 358573.61089999973774, 257055.522799998521805 ], [ 358565.537000000476837, 257056.723299998790026 ], [ 358566.321699999272823, 257059.262800000607967 ], [ 358546.954000003635883, 257061.004200000315905 ], [ 358554.167700000107288, 257066.129399999976158 ], [ 358569.361699998378754, 257081.030299998819828 ], [ 358571.521499998867512, 257084.83559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302310400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93543196, "LATITUDE": 18.34330811, "OBJECTID_1": 10521, "PARCEL_NO_": "105302310400", "Tax_Legal_": "GENERAL GADE 11C CROWN PRINCE QTR", "Name": "BENJAMIN, LORNA", "Address": "P O BOX 2553 KINGSHILL", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 10600, "Improved_V": 67400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.198268640400002, "SHAPE_Area": 276.501689645 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358341.10700000077486, 257087.183699999004602 ], [ 358306.417599998414516, 257089.010800000280142 ], [ 358307.150200001895428, 257097.671599999070168 ], [ 358337.809799998998642, 257095.600499998778105 ], [ 358341.10700000077486, 257087.183699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302341700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93482221, "LATITUDE": 18.34328451, "OBJECTID_1": 10611, "PARCEL_NO_": "105302341700", "Tax_Legal_": "VESTER GADE 13AA QUEENS QUARTER", "Name": "DALY, JED, RIERA, A. & DALEY T", "Address": "1091 Dunedin Trl", "City": "Woodstock", "State": "Georgia", "Zip": 30188, "Country": "United States", "Land_Value": 5300, "Improved_V": 36500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.660038686299998, "SHAPE_Area": 103.145496378 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358394.312799997627735, 257088.885800000280142 ], [ 358386.299999997019768, 257082.909600000828505 ], [ 358380.582099996507168, 257091.517599999904633 ], [ 358388.594899997115135, 257097.49379999935627 ], [ 358394.312799997627735, 257088.885800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302192600", "MAP": null, "PARCEL_NAM": "BORGER GADE 6AAAA&6AA-1", "ACRE": null, "LONGITUDE": -64.93692232, "LATITUDE": 18.34328663, "OBJECTID_1": 10169, "PARCEL_NO_": "105302192600", "Tax_Legal_": "BORGER GADE 6AAAA&6AA-1 CROWN PRINCE QTR", "Name": "ESTRILL, MARIA", "Address": "BOX 3632", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3500, "Improved_V": 36700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.967533879199998, "SHAPE_Area": 76.082474773599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358170.210199996829033, 257092.372400000691414 ], [ 358169.479400001466274, 257083.500500001013279 ], [ 358160.593800000846386, 257085.327599998563528 ], [ 358161.331799998879433, 257093.355200000107288 ], [ 358170.210199996829033, 257092.372400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401341100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93224296, "LATITUDE": 18.34323216, "OBJECTID_1": 11993, "PARCEL_NO_": "105401341100", "Tax_Legal_": "BRED GADE 4 QUEENS QUARTER", "Name": "CYRIL V. FRANCOIS ASSOC.", "Address": "PO Box 6050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 102600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.979448543800004, "SHAPE_Area": 357.60564586300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358672.468999996781349, 257093.695500001311302 ], [ 358662.962300002574921, 257073.774900000542402 ], [ 358661.342500001192093, 257074.605999998748302 ], [ 358648.407300002872944, 257078.510899998247623 ], [ 358656.292400002479553, 257099.473700001835823 ], [ 358672.468999996781349, 257093.695500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302162700", "MAP": null, "PARCEL_NAM": "HODGES STREET 18", "ACRE": null, "LONGITUDE": -64.93965086, "LATITUDE": 18.34324126, "OBJECTID_1": 10019, "PARCEL_NO_": "105302162700", "Tax_Legal_": "18 HODGES STREET CROWN PRINCE QTR", "Name": "RICHARDSON, BERTHA G", "Address": "BOX 3275", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18400, "Improved_V": 59000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.544981216500005, "SHAPE_Area": 243.73768746600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357888.778300002217293, 257082.004000000655651 ], [ 357870.333800002932549, 257070.031800001859665 ], [ 357866.206900000572205, 257081.186000000685453 ], [ 357883.047799997031689, 257092.089600000530481 ], [ 357888.778300002217293, 257082.004000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302190700", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 9XA", "ACRE": null, "LONGITUDE": -64.93768887, "LATITUDE": 18.34328664, "OBJECTID_1": 10149, "PARCEL_NO_": "105302190700", "Tax_Legal_": "GAMLE NORDSIDEVEJ 9XA CROWN PRINCE QTR", "Name": "FRETT, DALTON ANTONIO", "Address": "215-43 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.514020512899997, "SHAPE_Area": 120.50666110900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358096.005999997258186, 257083.066799998283386 ], [ 358079.868900001049042, 257084.201299998909235 ], [ 358074.968099996447563, 257091.549400001764297 ], [ 358084.625900000333786, 257093.739399999380112 ], [ 358096.005999997258186, 257083.066799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302192800", "MAP": null, "PARCEL_NAM": "BORGER GADE 6A", "ACRE": null, "LONGITUDE": -64.93681259, "LATITUDE": 18.34323536, "OBJECTID_1": 10171, "PARCEL_NO_": "105302192800", "Tax_Legal_": "6A BORGER GADE CROWN PRINCE QUARTER", "Name": "ZEPHIR, ZEPHIR, BONELLI & OTTLEY", "Address": "PO Box 7593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.757035367, "SHAPE_Area": 261.18391607900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358168.743299998342991, 257075.261799998581409 ], [ 358169.479400001466274, 257083.500500001013279 ], [ 358170.210199996829033, 257092.372400000691414 ], [ 358185.546400003135204, 257090.598099999129772 ], [ 358184.075800001621246, 257073.909699998795986 ], [ 358168.743299998342991, 257075.261799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302163400", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 17", "ACRE": null, "LONGITUDE": -64.93885264, "LATITUDE": 18.34328638, "OBJECTID_1": 10026, "PARCEL_NO_": "105302163400", "Tax_Legal_": "NY NORDSIDEVEJ 17 CROWN PRINCE -TR", "Name": "DEWINDT, FRANKLIN & VIVIAN", "Address": "PO Box 502582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.295455764600007, "SHAPE_Area": 209.183793772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357976.617799997329712, 257088.422400001436472 ], [ 357977.476199999451637, 257082.307799998670816 ], [ 357968.601400002837181, 257082.868400000035763 ], [ 357947.622900001704693, 257084.385400000959635 ], [ 357946.7483000010252, 257092.39979999884963 ], [ 357976.617799997329712, 257088.422400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301121100", "MAP": null, "PARCEL_NAM": "200-5C-1A & 200-5B-1", "ACRE": null, "LONGITUDE": -64.94651187, "LATITUDE": 18.34322192, "OBJECTID_1": 9436, "PARCEL_NO_": "105301121100", "Tax_Legal_": "ALTONA & W 200-5C-1A & 200-5B-1 CROWN PRIND QTR.", "Name": "COPLIN, AMER", "Address": "7-78 Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.768050257, "SHAPE_Area": 632.06630111799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357184.943000003695488, 257067.377500001341105 ], [ 357127.701999999582767, 257066.064599998295307 ], [ 357133.23650000244379, 257078.986600000411272 ], [ 357137.212300002574921, 257085.563099998980761 ], [ 357185.726000003516674, 257070.128100000321865 ], [ 357184.943000003695488, 257067.377500001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301131800", "MAP": null, "PARCEL_NAM": "200-7-25", "ACRE": null, "LONGITUDE": -64.94315137, "LATITUDE": 18.3431527, "OBJECTID_1": 9464, "PARCEL_NO_": "105301131800", "Tax_Legal_": "ALTONA & WELGUNST 200-7-25 CROWN PRINCE QTR", "Name": "MARSHALL, CECIL & GLENDORA", "Address": "PO Box 303173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33500, "Improved_V": 211700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.76560587, "SHAPE_Area": 712.75198163499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357496.342000000178814, 257051.491099998354912 ], [ 357494.62219999730587, 257079.293200001120567 ], [ 357494.516699999570847, 257079.398699998855591 ], [ 357498.828699998557568, 257081.181699998676777 ], [ 357515.378300003707409, 257088.024900000542402 ], [ 357521.286799997091293, 257057.042500000447035 ], [ 357517.264200001955032, 257055.954100001603365 ], [ 357504.393799997866154, 257052.260200001299381 ], [ 357496.342000000178814, 257051.491099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302370300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93434809, "LATITUDE": 18.34326471, "OBJECTID_1": 10628, "PARCEL_NO_": "105302370300", "Tax_Legal_": "NORDSIDEVEJ 7 QUEENS QUARTER", "Name": "PARSON, ESTHER", "Address": "PO Box 63", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.294860567999997, "SHAPE_Area": 194.54791422100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358428.930299997329712, 257095.501899998635054 ], [ 358445.880900003015995, 257093.529699999839067 ], [ 358445.157300002872944, 257083.813499998301268 ], [ 358441.958999998867512, 257080.620900001376867 ], [ 358430.647200003266335, 257083.27250000089407 ], [ 358428.930299997329712, 257095.501899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302262800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93604782, "LATITUDE": 18.34326846, "OBJECTID_1": 10402, "PARCEL_NO_": "105302262800", "Tax_Legal_": "PILE STRAEDE 4B CROWN PRINCE QTR", "Name": "WEBBE, DEVONTE',DEMOII & DERON", "Address": "27-11B Pile Straede", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.326513605400002, "SHAPE_Area": 86.4652206146 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358253.9712999984622, 257092.803399998694658 ], [ 358262.851499997079372, 257091.609499998390675 ], [ 358262.120700001716614, 257082.73759999871254 ], [ 358253.254900000989437, 257082.242800001055002 ], [ 358253.9712999984622, 257092.803399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302164000", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 12", "ACRE": null, "LONGITUDE": -64.93931203, "LATITUDE": 18.34317958, "OBJECTID_1": 10032, "PARCEL_NO_": "105302164000", "Tax_Legal_": "TEMPLE STREET 12 CROWN PRINCE QUARTER", "Name": "HEDRINGTON, EMANUEL & MAUDREY", "Address": "168 4 111th Ave", "City": "Jamaica", "State": "New York", "Zip": 11433, "Country": "United States", "Land_Value": 30800, "Improved_V": 86900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.532843545399999, "SHAPE_Area": 499.89859099300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357905.894299998879433, 257060.612500000745058 ], [ 357898.472000002861023, 257079.97239999845624 ], [ 357918.550700001418591, 257089.424800001084805 ], [ 357925.103699997067451, 257077.446100000292063 ], [ 357924.412500001490116, 257063.930500000715256 ], [ 357916.342200003564358, 257064.708799999207258 ], [ 357912.317800000309944, 257063.831500001251698 ], [ 357907.501500003039837, 257061.25899999961257 ], [ 357905.894299998879433, 257060.612500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302342100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93454088, "LATITUDE": 18.34322702, "OBJECTID_1": 10615, "PARCEL_NO_": "105302342100", "Tax_Legal_": "NORDSIDEVEJ 4 QUEENS QUARTER", "Name": "H MALOON and TERRY A F LYNCH", "Address": "PO Box 8986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.570676972100003, "SHAPE_Area": 133.86792861000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358425.004799999296665, 257083.015299998223782 ], [ 358409.738899998366833, 257076.557500001043081 ], [ 358407.285700000822544, 257080.548200000077486 ], [ 358423.302299998700619, 257093.556000001728535 ], [ 358425.004799999296665, 257083.015299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302371800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93425641, "LATITUDE": 18.34326321, "OBJECTID_1": 10642, "PARCEL_NO_": "105302371800", "Tax_Legal_": "BJERGE 2QA QUEENS QTR", "Name": "CANTON, ANNICE F. & ESTHER", "Address": "PO Box 63", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.185386638299999, "SHAPE_Area": 25.871347503799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358445.880900003015995, 257093.529699999839067 ], [ 358450.769100002944469, 257087.659099999815226 ], [ 358445.157300002872944, 257083.813499998301268 ], [ 358445.880900003015995, 257093.529699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302262700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93602969, "LATITUDE": 18.34321108, "OBJECTID_1": 10401, "PARCEL_NO_": "105302262700", "Tax_Legal_": "PILE STRAEDE 4A CROWN PRINCE QTR", "Name": "WEBBE, JOSEPH,DEVONTE',DEMOII & DEMOII", "Address": "27-11B Pile Straede", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.620124199800003, "SHAPE_Area": 118.549793243 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358267.694799996912479, 257091.015900000929832 ], [ 358263.753100000321865, 257080.428899999707937 ], [ 358262.998999997973442, 257074.300999999046326 ], [ 358251.70160000026226, 257075.263999998569489 ], [ 358253.254900000989437, 257082.242800001055002 ], [ 358262.120700001716614, 257082.73759999871254 ], [ 358262.851499997079372, 257091.609499998390675 ], [ 358267.694799996912479, 257091.015900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302341900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93473428, "LATITUDE": 18.34320848, "OBJECTID_1": 10613, "PARCEL_NO_": "105302341900", "Tax_Legal_": "VESTER GADE 12 QUEENS QUARTER", "Name": "SCHULTERBRANDT, FRANKLYN", "Address": "PO Box 2501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 98000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.41427947, "SHAPE_Area": 227.227120595 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358407.285700000822544, 257080.548200000077486 ], [ 358394.462099999189377, 257071.366200000047684 ], [ 358386.299999997019768, 257082.909600000828505 ], [ 358394.312799997627735, 257088.885800000280142 ], [ 358399.120099999010563, 257092.513700000941753 ], [ 358407.285700000822544, 257080.548200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302262600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9359274, "LATITUDE": 18.34321796, "OBJECTID_1": 10400, "PARCEL_NO_": "105302262600", "Tax_Legal_": "PILE STRAEDE 4AA CROWN PRINCE QTR", "Name": "CALLWOOD, KEITH & COURTNEY", "Address": "4AA Pile Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26700, "Improved_V": 105300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.175561142200003, "SHAPE_Area": 201.44077519499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358278.187600001692772, 257089.835200000554323 ], [ 358275.104500003159046, 257073.133600000292063 ], [ 358262.998999997973442, 257074.300999999046326 ], [ 358263.753100000321865, 257080.428899999707937 ], [ 358267.694799996912479, 257091.015900000929832 ], [ 358278.187600001692772, 257089.835200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105302163300", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 26", "ACRE": null, "LONGITUDE": -64.938685, "LATITUDE": 18.34326718, "OBJECTID_1": 10025, "PARCEL_NO_": "105302163300", "Tax_Legal_": "NY NORDSIDEVEJ 26 CROWN PRINCE", "Name": "DEWINDT, VIVIAN & FRANKLIN", "Address": "PO Box 502582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 5200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 20.208210246099998, "SHAPE_Area": 23.9138683105 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357981.511399999260902, 257081.918600000441074 ], [ 357977.476199999451637, 257082.307799998670816 ], [ 357976.617799997329712, 257088.422400001436472 ], [ 357981.469999998807907, 257086.773400001227856 ], [ 357981.511399999260902, 257081.918600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302262400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93573544, "LATITUDE": 18.34320634, "OBJECTID_1": 10398, "PARCEL_NO_": "105302262400", "Tax_Legal_": "GENERAL GADE 4 CROWN PRINCE QTR", "Name": "RED BALL GROCERY, INC.", "Address": "PO Box 515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41100, "Improved_V": 231600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.461788334399998, "SHAPE_Area": 287.73704876599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358281.560300000011921, 257072.553100001066923 ], [ 358284.645300000905991, 257089.043699998408556 ], [ 358284.629199996590614, 257090.943399999290705 ], [ 358299.967100001871586, 257088.958000000566244 ], [ 358297.70099999755621, 257070.996500000357628 ], [ 358281.560300000011921, 257072.553100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302131800", "MAP": null, "PARCEL_NAM": "97", "ACRE": null, "LONGITUDE": -64.94002505, "LATITUDE": 18.34316468, "OBJECTID_1": 9889, "PARCEL_NO_": "105302131800", "Tax_Legal_": "ANNAS FANCY 97\nCROWN PRINCE QUARTER", "Name": "BAPTISTE, WAKIMA, YAKIM & GEORGE IVAN", "Address": "97 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30100, "Improved_V": 81000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.055615009099995, "SHAPE_Area": 369.09469373100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357844.472499996423721, 257076.786200001835823 ], [ 357845.420800000429153, 257060.117600001394749 ], [ 357836.553199999034405, 257059.83390000090003 ], [ 357830.917999997735023, 257058.732299998402596 ], [ 357829.935500003397465, 257079.411499999463558 ], [ 357829.901299998164177, 257083.421999998390675 ], [ 357844.386100001633167, 257086.918000001460314 ], [ 357844.472499996423721, 257076.786200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401341200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93211141, "LATITUDE": 18.34317568, "OBJECTID_1": 11994, "PARCEL_NO_": "105401341200", "Tax_Legal_": "NYE GADE 4 QUEENS QUARTER", "Name": "CYRIL V. FRANCOIS ASSOC.", "Address": "PO Box 6050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15700, "Improved_V": 40800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.97158944, "SHAPE_Area": 301.60939503899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358680.746200002729893, 257068.643100000917912 ], [ 358670.238899998366833, 257071.51240000128746 ], [ 358662.962300002574921, 257073.774900000542402 ], [ 358672.468999996781349, 257093.695500001311302 ], [ 358681.365500003099442, 257090.60190000012517 ], [ 358680.746200002729893, 257068.643100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302263400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93643353, "LATITUDE": 18.34320187, "OBJECTID_1": 10407, "PARCEL_NO_": "105302263400", "Tax_Legal_": "SMALL STRAEDE 6 CROWN PRINCE QTR", "Name": "PADILLA, JON", "Address": "7817 Backer Rd", "City": "San Diego", "State": "California", "Zip": 92126, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.880833653300002, "SHAPE_Area": 181.12315977399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358224.659100003540516, 257085.862799998372793 ], [ 358222.699500001966953, 257072.071400001645088 ], [ 358209.785899996757507, 257073.443300001323223 ], [ 358211.722300000488758, 257087.260800000280142 ], [ 358224.659100003540516, 257085.862799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302262500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93584067, "LATITUDE": 18.34321069, "OBJECTID_1": 10399, "PARCEL_NO_": "105302262500", "Tax_Legal_": "PILE GADE 4C CROWN PRINCE QTR", "Name": "PARKE, INGER A", "Address": "Dh Jackson Ter", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.748339982099999, "SHAPE_Area": 109.27252693699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358281.560300000011921, 257072.553100001066923 ], [ 358275.104500003159046, 257073.133600000292063 ], [ 358278.187600001692772, 257089.835200000554323 ], [ 358284.645300000905991, 257089.043699998408556 ], [ 358281.560300000011921, 257072.553100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301130300", "MAP": "F9-3829-T80", "PARCEL_NAM": "200-7-3", "ACRE": null, "LONGITUDE": -64.94443358, "LATITUDE": 18.34314111, "OBJECTID_1": 9450, "PARCEL_NO_": "105301130300", "Tax_Legal_": "ALTONA&WELGUNST 200-7-3 CROWN PRINCE QTR", "Name": "THOMAS, E. T. & OTHERS", "Address": "PO Box 9722", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.703432019800005, "SHAPE_Area": 444.40979265700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357386.691399998962879, 257061.695799998939037 ], [ 357361.062600001692772, 257054.099800001829863 ], [ 357360.008100003004074, 257057.622400000691414 ], [ 357359.986599996685982, 257060.155299998819828 ], [ 357357.026100002229214, 257070.799100000411272 ], [ 357382.048299998044968, 257077.776500001549721 ], [ 357385.750799998641014, 257064.799100000411272 ], [ 357386.691399998962879, 257061.695799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302310300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9354259, "LATITUDE": 18.3432372, "OBJECTID_1": 10520, "PARCEL_NO_": "105302310300", "Tax_Legal_": "11CC GENERAL GADE CROWN PRINCE QTR", "Name": "GLASBY WILLIS, EVELYN", "Address": "PO Box 301814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12900, "Improved_V": 37900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.678081011499998, "SHAPE_Area": 261.35370673599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358343.583499997854233, 257080.449000000953674 ], [ 358331.485200002789497, 257080.772199999541044 ], [ 358305.677799999713898, 257081.194200001657009 ], [ 358306.417599998414516, 257089.010800000280142 ], [ 358341.10700000077486, 257087.183699999004602 ], [ 358343.583499997854233, 257080.449000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302263300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93635331, "LATITUDE": 18.34319316, "OBJECTID_1": 10406, "PARCEL_NO_": "105302263300", "Tax_Legal_": "SMALL STRAEDE 5C CROWN PRINCE QTR", "Name": "PADILLA, JON", "Address": "7817 Backer Rd", "City": "San Diego", "State": "California", "Zip": 92126, "Country": "United States", "Land_Value": 5700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.947498594499997, "SHAPE_Area": 56.508837781700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358228.714900001883507, 257085.424499999731779 ], [ 358226.734700001776218, 257071.682199999690056 ], [ 358222.699500001966953, 257072.071400001645088 ], [ 358224.659100003540516, 257085.862799998372793 ], [ 358228.714900001883507, 257085.424499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302192700", "MAP": null, "PARCEL_NAM": "BORGER GADE 6AAAB", "ACRE": null, "LONGITUDE": -64.93693143, "LATITUDE": 18.34320927, "OBJECTID_1": 10170, "PARCEL_NO_": "105302192700", "Tax_Legal_": "BORGER GADE 6AAAB CROWN PRINCE QUARTER", "Name": "SMITH, HELEN A", "Address": "EST TUTU BLDG. 21 APT. 367", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.575618177000003, "SHAPE_Area": 78.806011905099993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358168.743299998342991, 257075.261799998581409 ], [ 358159.866599999368191, 257076.033599998801947 ], [ 358160.593800000846386, 257085.327599998563528 ], [ 358169.479400001466274, 257083.500500001013279 ], [ 358168.743299998342991, 257075.261799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302263200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93629925, "LATITUDE": 18.34318737, "OBJECTID_1": 10405, "PARCEL_NO_": "105302263200", "Tax_Legal_": "SMALL STRAEDE 5B CROWN PRINCE QTR", "Name": "WEBBE, DENNY & KESHEMA ABRAMSEN", "Address": "PO Box 8573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5600, "Improved_V": 32700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.458560452699999, "SHAPE_Area": 103.091033813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358236.04839999973774, 257084.631999999284744 ], [ 358235.534000001847744, 257079.986900001764297 ], [ 358233.998700000345707, 257070.897300001233816 ], [ 358226.734700001776218, 257071.682199999690056 ], [ 358228.714900001883507, 257085.424499999731779 ], [ 358236.04839999973774, 257084.631999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302165700", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 16B", "ACRE": null, "LONGITUDE": -64.93893159, "LATITUDE": 18.34319936, "OBJECTID_1": 10048, "PARCEL_NO_": "105302165700", "Tax_Legal_": "NY NORDSIDEVEJ 16B KRONP QTR", "Name": "HASTINGS, TRINA", "Address": "PO Box 10878", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.398867092499998, "SHAPE_Area": 186.88658560600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357946.16669999808073, 257066.008400000631809 ], [ 357946.129000000655651, 257070.440999999642372 ], [ 357946.861599996685982, 257079.10190000012517 ], [ 357947.622900001704693, 257084.385400000959635 ], [ 357968.601400002837181, 257082.868400000035763 ], [ 357951.749799996614456, 257073.231300000101328 ], [ 357951.816299997270107, 257065.421300001442432 ], [ 357946.16669999808073, 257066.008400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302263000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93620021, "LATITUDE": 18.34321788, "OBJECTID_1": 10403, "PARCEL_NO_": "105302263000", "Tax_Legal_": "PILE STRAEDE 12 QUEENS QUARTER", "Name": "HORACE TURNBULL TRUST", "Address": "10 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.787774803700003, "SHAPE_Area": 57.373934734000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358248.16330000013113, 257083.322799999266863 ], [ 358247.64130000025034, 257078.608300000429153 ], [ 358235.534000001847744, 257079.986900001764297 ], [ 358236.04839999973774, 257084.631999999284744 ], [ 358248.16330000013113, 257083.322799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302263600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93661936, "LATITUDE": 18.34318964, "OBJECTID_1": 10408, "PARCEL_NO_": "105302263600", "Tax_Legal_": "JODE GADE 1 CROWN PRINCE QTR", "Name": "WILLIAMS, WINSTON M.A., TRUSTEE", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 127600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.768248177300002, "SHAPE_Area": 151.62803148500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358190.407700002193451, 257083.754299998283386 ], [ 358204.857100002467632, 257083.203099999576807 ], [ 358204.215700000524521, 257072.046100001782179 ], [ 358190.460199996829033, 257073.448300000280142 ], [ 358190.407700002193451, 257083.754299998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302371700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93413086, "LATITUDE": 18.34305866, "OBJECTID_1": 10641, "PARCEL_NO_": "105302371700", "Tax_Legal_": "BJERGE 2Q QUEENS QUARTER", "Name": "SAMUEL, BERNICE Y.", "Address": "PO Box 63", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18400, "Improved_V": 89800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.745531407, "SHAPE_Area": 581.42909487700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358481.703900001943111, 257053.292899999767542 ], [ 358473.712700001895428, 257044.7837999984622 ], [ 358459.071400001645088, 257059.651599999517202 ], [ 358457.4712999984622, 257058.160799998790026 ], [ 358446.917300000786781, 257066.518199998885393 ], [ 358445.157300002872944, 257083.813499998301268 ], [ 358450.769100002944469, 257087.659099999815226 ], [ 358468.700400002300739, 257065.218800000846386 ], [ 358481.703900001943111, 257053.292899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301113300", "MAP": null, "PARCEL_NAM": "200-6N .", "ACRE": null, "LONGITUDE": -64.9450408, "LATITUDE": 18.34310899, "OBJECTID_1": 9425, "PARCEL_NO_": "105301113300", "Tax_Legal_": "ALTONA & WELGUNST 200-6N CROWN PRINCE QTR.", "Name": "SMITH, HALVA", "Address": "189 Est Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.4795834265, "SHAPE_Area": 510.79142055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357320.505999997258186, 257056.454700000584126 ], [ 357297.203900001943111, 257046.764800000935793 ], [ 357294.633900001645088, 257064.475600000470877 ], [ 357294.612300001084805, 257067.008499998599291 ], [ 357317.907300002872944, 257077.54280000180006 ], [ 357320.505999997258186, 257056.454700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302164300", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 16 & 28", "ACRE": null, "LONGITUDE": -64.93881712, "LATITUDE": 18.34313952, "OBJECTID_1": 10034, "PARCEL_NO_": "105302164300", "Tax_Legal_": "NY NORDSIDEVEJ 16&28 CROWN PRINCE QTR", "Name": "LEWIS, ELEANORA", "Address": "20532 104th Ave", "City": "Saint Albans", "State": "New York", "Zip": 11412, "Country": "United States", "Land_Value": 19500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.890561664000003, "SHAPE_Area": 338.79869828 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357978.420999996364117, 257066.061299998313189 ], [ 357978.449799999594688, 257062.684000000357628 ], [ 357951.816299997270107, 257065.421300001442432 ], [ 357951.749799996614456, 257073.231300000101328 ], [ 357968.601400002837181, 257082.868400000035763 ], [ 357968.662600003182888, 257075.691700000315905 ], [ 357978.35809999704361, 257073.449000000953674 ], [ 357978.420999996364117, 257066.061299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301132000", "MAP": null, "PARCEL_NAM": "200-7-23", "ACRE": null, "LONGITUDE": -64.94361661000001, "LATITUDE": 18.3430755, "OBJECTID_1": 9466, "PARCEL_NO_": "105301132000", "Tax_Legal_": "ALTONA & WELGUNST 200-7-23 CROWN PRINCE QTR", "Name": "LAPLACE, EMANUEL & AGATHA", "Address": "PO BOX 305089", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29800, "Improved_V": 121100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.51448645799999, "SHAPE_Area": 570.56046819699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357452.481600001454353, 257040.896800000220537 ], [ 357448.347599998116493, 257039.161299999803305 ], [ 357448.642800003290176, 257042.727400001138449 ], [ 357448.8175999969244, 257044.839200001209974 ], [ 357451.756899997591972, 257078.427200000733137 ], [ 357467.917300000786781, 257074.548700001090765 ], [ 357466.531300000846386, 257047.939500000327826 ], [ 357466.486100003123283, 257046.776299998164177 ], [ 357452.481600001454353, 257040.896800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302164400", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 16A", "ACRE": null, "LONGITUDE": -64.93873998, "LATITUDE": 18.34320939, "OBJECTID_1": 10035, "PARCEL_NO_": "105302164400", "Tax_Legal_": "NY NORDSIDEVEJ 16A CROWN PRINCE QUARTER", "Name": "SMITH, WILLIAM JR. & OTHERS", "Address": "P O BX 2036", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4100, "Improved_V": 116600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.923541437600001, "SHAPE_Area": 73.785063306200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357968.601400002837181, 257082.868400000035763 ], [ 357977.476199999451637, 257082.307799998670816 ], [ 357978.35809999704361, 257073.449000000953674 ], [ 357968.662600003182888, 257075.691700000315905 ], [ 357968.601400002837181, 257082.868400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105302164500", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 26A & 27", "ACRE": null, "LONGITUDE": -64.93867764, "LATITUDE": 18.34316815, "OBJECTID_1": 10036, "PARCEL_NO_": "105302164500", "Tax_Legal_": "NY NORDSIDEVEJ 26A&27 KROMP QTR", "Name": "SMITH, WILLIAM A", "Address": "BOX 2036", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.6723571538, "SHAPE_Area": 62.211163649900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357982.456200003623962, 257065.672100000083447 ], [ 357978.420999996364117, 257066.061299998313189 ], [ 357978.35809999704361, 257073.449000000953674 ], [ 357977.476199999451637, 257082.307799998670816 ], [ 357981.511399999260902, 257081.918600000441074 ], [ 357982.456200003623962, 257065.672100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302164100", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 11", "ACRE": null, "LONGITUDE": -64.93906026000001, "LATITUDE": 18.34319046, "OBJECTID_1": 10033, "PARCEL_NO_": "105302164100", "Tax_Legal_": "TEMPLE STREET 11 CROWN PRINCE QUARTER", "Name": "VENZEN, ELLIOTT & ESTINA", "Address": "PO Box 6493", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9000, "Improved_V": 4400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.619692731800001, "SHAPE_Area": 120.50730536499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357946.129000000655651, 257070.440999999642372 ], [ 357930.778499998152256, 257073.903999999165535 ], [ 357934.743500001728535, 257081.746899999678135 ], [ 357946.861599996685982, 257079.10190000012517 ], [ 357946.129000000655651, 257070.440999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302210100", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 8", "ACRE": null, "LONGITUDE": -64.93779921, "LATITUDE": 18.34313881, "OBJECTID_1": 10186, "PARCEL_NO_": "105302210100", "Tax_Legal_": "8 GAMLE NORDSIDEVEJ CROWN PRINCE QUARTER", "Name": "YEARWOOD, THOMAS J", "Address": "2013 Gamle Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.471456190500007, "SHAPE_Area": 513.43015966099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358084.733800001442432, 257081.074700001627207 ], [ 358086.438100002706051, 257070.322799999266863 ], [ 358078.490099996328354, 257056.747800000011921 ], [ 358076.898999996483326, 257054.201699998229742 ], [ 358072.00900000333786, 257060.283399999141693 ], [ 358069.577500000596046, 257061.741099998354912 ], [ 358067.133400000631809, 257064.676399998366833 ], [ 358054.155100002884865, 257073.647199999541044 ], [ 358066.174199998378754, 257082.6114999987185 ], [ 358084.733800001442432, 257081.074700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302132200", "MAP": "D9-8512-T010", "PARCEL_NAM": "96-A", "ACRE": ".006", "LONGITUDE": -64.94026866, "LATITUDE": 18.3429976, "OBJECTID_1": 9893, "PARCEL_NO_": "105302132200", "Tax_Legal_": "73 & 96-A ANNA'S FANCY KRONPRINDSENS QTR", "Name": "NISBITT, ROSETTA & WINTERS, G.", "Address": "3278 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25900, "Improved_V": 104300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.641113985399997, "SHAPE_Area": 42.186453389 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357804.377999998629093, 257050.493599999696016 ], [ 357814.501999996602535, 257058.450500000268221 ], [ 357817.264600001275539, 257052.287799999117851 ], [ 357804.377999998629093, 257050.493599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302163900", "MAP": null, "PARCEL_NAM": "HODGES STREET 16", "ACRE": null, "LONGITUDE": -64.93945778, "LATITUDE": 18.34312377, "OBJECTID_1": 10031, "PARCEL_NO_": "105302163900", "Tax_Legal_": "HODGES STREET 16 CROWN PRINCE QUARTER", "Name": "FRETT, ROY A.", "Address": "PO Box 304340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.349401137800001, "SHAPE_Area": 204.420148283 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357897.865299999713898, 257056.535999998450279 ], [ 357888.833999998867512, 257075.460499998182058 ], [ 357898.472000002861023, 257079.97239999845624 ], [ 357905.894299998879433, 257060.612500000745058 ], [ 357897.865299999713898, 257056.535999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301131900", "MAP": null, "PARCEL_NAM": "200-7-24", "ACRE": null, "LONGITUDE": -64.94339651, "LATITUDE": 18.34309958, "OBJECTID_1": 9465, "PARCEL_NO_": "105301131900", "Tax_Legal_": "ALTONA & WELGUNST 200-7-24 CROWN PRINCE QTR", "Name": "BRYAN, JAMES AND KEN BRYAN", "Address": "200-7-24 Estate Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39300, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.440414936, "SHAPE_Area": 750.51211146499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357489.891000002622604, 257050.874899998307228 ], [ 357466.486100003123283, 257046.776299998164177 ], [ 357466.531300000846386, 257047.939500000327826 ], [ 357467.917300000786781, 257074.548700001090765 ], [ 357479.205700002610683, 257074.641100000590086 ], [ 357487.25450000166893, 257076.395700000226498 ], [ 357494.516699999570847, 257079.398699998855591 ], [ 357494.62219999730587, 257079.293200001120567 ], [ 357496.342000000178814, 257051.491099998354912 ], [ 357489.891000002622604, 257050.874899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302210200", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 8B", "ACRE": null, "LONGITUDE": -64.93763313, "LATITUDE": 18.34311175, "OBJECTID_1": 10187, "PARCEL_NO_": "105302210200", "Tax_Legal_": "GAMLE NORDSIDEVEJ 8B CROWN PRINCE QTR", "Name": "AURORA YEARWOOD & OTHERS", "Address": "8B Gamle Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27600, "Improved_V": 107200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.477158573599993, "SHAPE_Area": 287.82037010400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358100.217399999499321, 257061.991900000721216 ], [ 358078.490099996328354, 257056.747800000011921 ], [ 358086.438100002706051, 257070.322799999266863 ], [ 358084.733800001442432, 257081.074700001627207 ], [ 358095.222999997437, 257080.316100001335144 ], [ 358100.217399999499321, 257061.991900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302370400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93433662, "LATITUDE": 18.34312758, "OBJECTID_1": 10629, "PARCEL_NO_": "105302370400", "Tax_Legal_": "NORDSIDEVEJ 6B QUEENS QUARTER", "Name": "TILLMAN, CHRISTIAN", "Address": "PO Box 45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12500, "Improved_V": 71000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.4504394641, "SHAPE_Area": 246.97129788399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358441.289300002157688, 257064.572299998253584 ], [ 358434.052299998700619, 257062.190999999642372 ], [ 358430.647200003266335, 257083.27250000089407 ], [ 358441.958999998867512, 257080.620900001376867 ], [ 358445.157300002872944, 257083.813499998301268 ], [ 358446.917300000786781, 257066.518199998885393 ], [ 358441.289300002157688, 257064.572299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302210300", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 8C", "ACRE": null, "LONGITUDE": -64.93743593000001, "LATITUDE": 18.34312565, "OBJECTID_1": 10188, "PARCEL_NO_": "105302210300", "Tax_Legal_": "GAMLE NORDSIDEVEJ 8C CROWN PRINCE QUARTER", "Name": "RICHARDSON, A KYRUN & FORB", "Address": "8C GAMLE NORDSIDEVEJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 21400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.263578305699994, "SHAPE_Area": 500.32346877800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358124.430100001394749, 257059.445799998939037 ], [ 358109.095799997448921, 257061.009100001305342 ], [ 358100.217399999499321, 257061.991900000721216 ], [ 358095.222999997437, 257080.316100001335144 ], [ 358125.074600003659725, 257078.449499998241663 ], [ 358124.430100001394749, 257059.445799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301131400", "MAP": "D9-2438-T83", "PARCEL_NAM": "200-7-10", "ACRE": "0.15", "LONGITUDE": -64.94405643, "LATITUDE": 18.34303313, "OBJECTID_1": 9461, "PARCEL_NO_": "105301131400", "Tax_Legal_": "ALTONA & WELGUNST 200-7-10 CROWN PRINCE QTR.", "Name": "JEAN FRANTZ REMY and ANTHONINE PIERRE", "Address": "PO BOX 303702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.24317738000001, "SHAPE_Area": 719.27142528800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357407.448600001633167, 257041.860300000756979 ], [ 357399.697300001978874, 257036.837900001555681 ], [ 357396.355099998414516, 257050.531599998474121 ], [ 357395.318599998950958, 257053.951499998569489 ], [ 357399.720299996435642, 257064.272700000554323 ], [ 357420.18469999730587, 257070.386999998241663 ], [ 357425.299699999392033, 257060.478799998760223 ], [ 357431.672799997031689, 257048.626800000667572 ], [ 357407.448600001633167, 257041.860300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302342300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93453175, "LATITUDE": 18.343173, "OBJECTID_1": 10617, "PARCEL_NO_": "105302342300", "Tax_Legal_": "NORDSIDEVEJ 3 QUEENS QTR", "Name": "SCHULTERBRANDT, FRANKLIN", "Address": "PO Box 302501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6900, "Improved_V": 67700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.518558832300002, "SHAPE_Area": 58.636545306400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358425.044399999082088, 257078.371500000357628 ], [ 358412.181199997663498, 257073.833299998193979 ], [ 358409.738899998366833, 257076.557500001043081 ], [ 358425.004799999296665, 257083.015299998223782 ], [ 358425.044399999082088, 257078.371500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302310200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93547719, "LATITUDE": 18.3431557, "OBJECTID_1": 10519, "PARCEL_NO_": "105302310200", "Tax_Legal_": "GENERAL GADE 11D CROWN PRINCE QTR", "Name": "MANASSAH FRANCIS HOLDINGS LLC", "Address": "10331 Lindley Ave", "City": "Porter Ranch", "State": "California", "Zip": 91326, "Country": "United States", "Land_Value": 24300, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.539732476500006, "SHAPE_Area": 295.650443693 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358305.677799999713898, 257081.194200001657009 ], [ 358331.485200002789497, 257080.772199999541044 ], [ 358331.582299999892712, 257069.3739 ], [ 358304.156900003552437, 257070.416000001132488 ], [ 358305.677799999713898, 257081.194200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302150100", "MAP": null, "PARCEL_NAM": "HODGES STREET 19", "ACRE": null, "LONGITUDE": -64.93987099, "LATITUDE": 18.34310817, "OBJECTID_1": 9958, "PARCEL_NO_": "105302150100", "Tax_Legal_": "HODGES STREET 19 CROWN PRINCE QUARTER", "Name": "BLYDEN, JOSEPH S", "Address": "BOX 3845 -I.BLYDEN", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15400, "Improved_V": 41000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.363639901200003, "SHAPE_Area": 302.54320271799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357864.77589999884367, 257059.853799998760223 ], [ 357845.446000002324581, 257057.162500001490116 ], [ 357845.420800000429153, 257060.117600001394749 ], [ 357844.472499996423721, 257076.786200001835823 ], [ 357864.680600002408028, 257071.041000001132488 ], [ 357864.77589999884367, 257059.853799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302263100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93620907, "LATITUDE": 18.34315587, "OBJECTID_1": 10404, "PARCEL_NO_": "105302263100", "Tax_Legal_": "SMALL STRAEDE 5A CROWN PRINCE QTR", "Name": "JONES, URA MATTHIAS", "Address": "PO Box 10873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14000, "Improved_V": 116000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.26971559, "SHAPE_Area": 113.783831385 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358233.998700000345707, 257070.897300001233816 ], [ 358235.534000001847744, 257079.986900001764297 ], [ 358247.64130000025034, 257078.608300000429153 ], [ 358246.910499997437, 257069.736400000751019 ], [ 358233.998700000345707, 257070.897300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302310100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93528286, "LATITUDE": 18.34314621, "OBJECTID_1": 10518, "PARCEL_NO_": "105302310100", "Tax_Legal_": "GENERAL GADE 11DD CROWN PRINCE QTR", "Name": "BASSUE, WILLIAM & MARTHA", "Address": "2109 General Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026709, "Country": "United States", "Land_Value": 16000, "Improved_V": 53000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.2297604392, "SHAPE_Area": 166.97339421000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358331.582299999892712, 257069.3739 ], [ 358331.485200002789497, 257080.772199999541044 ], [ 358343.583499997854233, 257080.449000000953674 ], [ 358348.521999999880791, 257068.668200001120567 ], [ 358331.582299999892712, 257069.3739 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302200200", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 5D", "ACRE": null, "LONGITUDE": -64.93813025, "LATITUDE": 18.34305386, "OBJECTID_1": 10176, "PARCEL_NO_": "105302200200", "Tax_Legal_": "GAMLE NORDSIDEVEJ 5D CROWN PRINCE QUARTER", "Name": "VAN HOLTEN, ALMANDO & RUTH (LIFE ESTATE)", "Address": "PO Box 303415", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22500, "Improved_V": 95800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.046460714899993, "SHAPE_Area": 395.13719722299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358028.31530000269413, 257077.868700001388788 ], [ 358046.131499998271465, 257068.9375 ], [ 358048.699699997901917, 257051.437699999660254 ], [ 358031.788699999451637, 257048.766199998557568 ], [ 358028.31530000269413, 257077.868700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302342200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9346747, "LATITUDE": 18.34312601, "OBJECTID_1": 10616, "PARCEL_NO_": "105302342200", "Tax_Legal_": "VESTER GADE 11 QUEENS QUARTER", "Name": "LYNCH, TERRY A F", "Address": "PO Box 8986", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14300, "Improved_V": 68300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.543266356899998, "SHAPE_Area": 122.97514314199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358412.181199997663498, 257073.833299998193979 ], [ 358398.545800000429153, 257065.277899999171495 ], [ 358394.462099999189377, 257071.366200000047684 ], [ 358407.285700000822544, 257080.548200000077486 ], [ 358409.738899998366833, 257076.557500001043081 ], [ 358412.181199997663498, 257073.833299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302163800", "MAP": null, "PARCEL_NAM": "HODGES STREET 15", "ACRE": null, "LONGITUDE": -64.93953674, "LATITUDE": 18.34308965, "OBJECTID_1": 10030, "PARCEL_NO_": "105302163800", "Tax_Legal_": "HODGES STREET 15 CROWN PRINCE QUARTER", "Name": "FRETT, ROY A.", "Address": "PO Box 304340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.368243784999997, "SHAPE_Area": 175.99317214199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357889.82379999756813, 257053.937100000679493 ], [ 357880.799699999392033, 257072.017299998551607 ], [ 357888.833999998867512, 257075.460499998182058 ], [ 357897.865299999713898, 257056.535999998450279 ], [ 357889.82379999756813, 257053.937100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302210400", "MAP": null, "PARCEL_NAM": "BORGER GADE 6BB", "ACRE": null, "LONGITUDE": -64.93719978, "LATITUDE": 18.34306881, "OBJECTID_1": 10189, "PARCEL_NO_": "105302210400", "Tax_Legal_": "BORGER GADE 6BB CROWN PRINCE QUARTER", "Name": "WALTERS, CYNTHIA R.", "Address": "LEMON STRAEDE 1A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19100, "Improved_V": 42000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.981547167000002, "SHAPE_Area": 297.70562490100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358142.953299999237061, 257074.063799999654293 ], [ 358144.638300001621246, 257053.700599998235703 ], [ 358128.495800003409386, 257055.468299999833107 ], [ 358129.079000003635883, 257074.871500000357628 ], [ 358142.953299999237061, 257074.063799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302342400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93457194, "LATITUDE": 18.34307656, "OBJECTID_1": 10618, "PARCEL_NO_": "105302342400", "Tax_Legal_": "NORDSIDEVEJ 2 QUEENS QUARTER", "Name": "LSF9 MASTER PARTICIPATION TRUST", "Address": "1525 S Belt Line Rd", "City": "Coppell", "State": "Texas", "Zip": 750194913, "Country": "United States", "Land_Value": 18400, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.346577022299996, "SHAPE_Area": 321.09645688400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358426.768500000238419, 257065.297800000756979 ], [ 358405.064599998295307, 257057.30970000103116 ], [ 358398.545800000429153, 257065.277899999171495 ], [ 358412.181199997663498, 257073.833299998193979 ], [ 358425.044399999082088, 257078.371500000357628 ], [ 358426.768500000238419, 257065.297800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302164600", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 9", "ACRE": null, "LONGITUDE": -64.93907938, "LATITUDE": 18.34307425, "OBJECTID_1": 10037, "PARCEL_NO_": "105302164600", "Tax_Legal_": "TEMPLE STREET 9 CROWN PRINCE QUARTER", "Name": "PENN, JOHN & BETTY L", "Address": "PO Box 307488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13300, "Improved_V": 43300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.910488212800004, "SHAPE_Area": 315.73361507099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357946.16669999808073, 257066.008400000631809 ], [ 357947.091700002551079, 257052.083799999207258 ], [ 357928.5033999979496, 257056.997900001704693 ], [ 357928.393700003623962, 257069.873700000345707 ], [ 357930.778499998152256, 257073.903999999165535 ], [ 357946.129000000655651, 257070.440999999642372 ], [ 357946.16669999808073, 257066.008400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302131600", "MAP": null, "PARCEL_NAM": "74", "ACRE": null, "LONGITUDE": -64.94040105000001, "LATITUDE": 18.34297005, "OBJECTID_1": 9887, "PARCEL_NO_": "105302131600", "Tax_Legal_": "ANNAS FANCY 74 CROWN PRINCE QUARTER", "Name": "EDNEY, AGNES & ALPHONSO EDWARDS", "Address": "12084 Lake Cypress Cir", "City": "Orlando", "State": "Florida", "Zip": 32828, "Country": "United States", "Land_Value": 31000, "Improved_V": 41300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.186654014, "SHAPE_Area": 567.13003585800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357806.60809999704361, 257072.676600001752377 ], [ 357804.377999998629093, 257050.493599999696016 ], [ 357804.563199996948242, 257028.752399999648333 ], [ 357794.059600003063679, 257031.199599999934435 ], [ 357790.009999997913837, 257033.277399998158216 ], [ 357791.32599999755621, 257068.118599999696016 ], [ 357806.60809999704361, 257072.676600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302210500", "MAP": null, "PARCEL_NAM": "BORGER GADE 6CC", "ACRE": null, "LONGITUDE": -64.93706371, "LATITUDE": 18.34301182, "OBJECTID_1": 10190, "PARCEL_NO_": "105302210500", "Tax_Legal_": "BORGER GADE 6CC CROWN PRINCE QUARTER", "Name": "KLINE, ADELEL B. & TRENT, L", "Address": "2803 Borger Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22200, "Improved_V": 14500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.5431410411, "SHAPE_Area": 412.40081663900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358155.920000001788139, 257073.270700000226498 ], [ 358157.467299997806549, 257062.249400001019239 ], [ 358158.431900002062321, 257043.681000001728535 ], [ 358154.394900001585484, 257044.281300000846386 ], [ 358154.420100003480911, 257041.326200000941753 ], [ 358145.54169999808073, 257042.309000000357628 ], [ 358144.638300001621246, 257053.700599998235703 ], [ 358142.953299999237061, 257074.063799999654293 ], [ 358155.920000001788139, 257073.270700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301122000", "MAP": null, "PARCEL_NAM": "14 & 200-5B-2", "ACRE": null, "LONGITUDE": -64.94650294, "LATITUDE": 18.34305917, "OBJECTID_1": 9442, "PARCEL_NO_": "105301122000", "Tax_Legal_": "14 & 200-5B-2 ALTONA & WELGUNST SOUTHSIDE QUARTER", "Name": "GARCIA, FRANCISCO", "Address": "PO Box 305523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62000, "Improved_V": 532400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.811731477, "SHAPE_Area": 1279.02489227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357179.471500001847744, 257047.067699998617172 ], [ 357125.504299998283386, 257040.082100000232458 ], [ 357126.181100003421307, 257055.286400001496077 ], [ 357127.701999999582767, 257066.064599998295307 ], [ 357184.943000003695488, 257067.377500001341105 ], [ 357179.471500001847744, 257047.067699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302210600", "MAP": null, "PARCEL_NAM": "BORGER GADE 6F", "ACRE": null, "LONGITUDE": -64.93695856, "LATITUDE": 18.34309663, "OBJECTID_1": 10191, "PARCEL_NO_": "105302210600", "Tax_Legal_": "BORGER GADE 6F CROWN PRINCE QUARTER", "Name": "FRANCIS, ALVIN & ESTHER", "Address": "3566 Est Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4900, "Improved_V": 500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.280630349, "SHAPE_Area": 110.137288364 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358167.688500002026558, 257072.02589999884367 ], [ 358166.342200003564358, 257061.688700001686811 ], [ 358157.467299997806549, 257062.249400001019239 ], [ 358155.920000001788139, 257073.270700000226498 ], [ 358167.688500002026558, 257072.02589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302163700", "MAP": null, "PARCEL_NAM": "HODGES STREET 14", "ACRE": null, "LONGITUDE": -64.93962371000001, "LATITUDE": 18.34305848, "OBJECTID_1": 10029, "PARCEL_NO_": "105302163700", "Tax_Legal_": "HODGES STREET 14 CROWN PRINCE QTR", "Name": "RICHARDSON, BERTHA", "Address": "PO BOX 303275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10200, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.376263011600003, "SHAPE_Area": 217.866258421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357871.156300000846386, 257068.138700000941753 ], [ 357880.799699999392033, 257072.017299998551607 ], [ 357889.82379999756813, 257053.937100000679493 ], [ 357881.782200001180172, 257051.338199999183416 ], [ 357879.36150000244379, 257051.529399998486042 ], [ 357876.926299996674061, 257053.409400001168251 ], [ 357871.156300000846386, 257068.138700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302150200", "MAP": null, "PARCEL_NAM": "HODGES STREET 17", "ACRE": null, "LONGITUDE": -64.93975411, "LATITUDE": 18.34308451, "OBJECTID_1": 9959, "PARCEL_NO_": "105302150200", "Tax_Legal_": "HODGES STREET 17 CROWN PRINCE QTR", "Name": "CHRISTOPHER, ISABELLA", "Address": "523 Cottage Ln", "City": "Brandon", "State": "Florida", "Zip": 33510, "Country": "United States", "Land_Value": 6300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.6785988036, "SHAPE_Area": 27.063130942899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357864.680600002408028, 257071.041000001132488 ], [ 357869.608400002121925, 257060.526599999517202 ], [ 357864.77589999884367, 257059.853799998760223 ], [ 357864.680600002408028, 257071.041000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302210700", "MAP": null, "PARCEL_NAM": "BORGER GADE 6B", "ACRE": null, "LONGITUDE": -64.93684057, "LATITUDE": 18.34300114, "OBJECTID_1": 10192, "PARCEL_NO_": "105302210700", "Tax_Legal_": "6B BORGER GADE KRONDPRINDSENS GADE", "Name": "RUMINA CONSTRUCTION LLC", "Address": "PO Box 308034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84900, "Improved_V": 228600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.549128309599993, "SHAPE_Area": 452.347989584 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358183.852700002491474, 257070.378100000321865 ], [ 358180.223899997770786, 257041.326200000941753 ], [ 358172.959899999201298, 257042.111200001090765 ], [ 358166.502199999988079, 257042.902699999511242 ], [ 358166.342200003564358, 257061.688700001686811 ], [ 358167.688500002026558, 257072.02589999884367 ], [ 358183.852700002491474, 257070.378100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301112200", "MAP": null, "PARCEL_NAM": "200-6B", "ACRE": null, "LONGITUDE": -64.94598514, "LATITUDE": 18.34300462, "OBJECTID_1": 9414, "PARCEL_NO_": "105301112200", "Tax_Legal_": "ALTONA & WELGUNST 200-6B CROWN PRINCE QTR", "Name": "ROBERTS, MARTIN D. & JACINTH H. HAZELL", "Address": "PO Box 303595", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33100, "Improved_V": 98600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.589565019299997, "SHAPE_Area": 604.74786709099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357225.411499999463558, 257049.765799999237061 ], [ 357215.037299998104572, 257037.0152000002563 ], [ 357188.3733000010252, 257043.340900000184774 ], [ 357188.344499997794628, 257046.718199998140335 ], [ 357189.138199999928474, 257048.202300000935793 ], [ 357208.349500000476837, 257064.82490000128746 ], [ 357227.009700000286102, 257051.467599999159575 ], [ 357225.411499999463558, 257049.765799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301130200", "MAP": "F9-3829-T80", "PARCEL_NAM": "200-7-2", "ACRE": null, "LONGITUDE": -64.94438977, "LATITUDE": 18.34298866, "OBJECTID_1": 9449, "PARCEL_NO_": "105301130200", "Tax_Legal_": "ALTONA & WELGUNST 200-7-2 CROWN PRINCE QTR", "Name": "BRANN, NEVILLE", "Address": "7615 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26200, "Improved_V": 47800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.288126703499998, "SHAPE_Area": 485.06219922399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357391.390100002288818, 257044.048700001090765 ], [ 357366.255000002682209, 257036.767700001597404 ], [ 357364.988099999725819, 257040.986699998378754 ], [ 357361.062600001692772, 257054.099800001829863 ], [ 357386.691399998962879, 257061.695799998939037 ], [ 357390.728900000452995, 257048.374600000679493 ], [ 357391.390100002288818, 257044.048700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302270100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93660471, "LATITUDE": 18.34296107, "OBJECTID_1": 10411, "PARCEL_NO_": "105302270100", "Tax_Legal_": "SMALL STRAEDE 1B CROWN PRINCE QUARTER", "Name": "PHIPPS, PATRICIA", "Address": "8624 Lindbergh Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90300, "Improved_V": 126300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.356603785, "SHAPE_Area": 536.88564959899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358215.636900000274181, 257049.215500000864267 ], [ 358214.918799996376038, 257040.952599998563528 ], [ 358186.898199997842312, 257042.246500000357628 ], [ 358190.261500000953674, 257069.407499998807907 ], [ 358204.068099997937679, 257067.939399998635054 ], [ 358202.954199999570847, 257052.98200000077486 ], [ 358215.854500003159046, 257052.032299999147654 ], [ 358215.636900000274181, 257049.215500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302200400", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 5", "ACRE": null, "LONGITUDE": -64.9379097, "LATITUDE": 18.34243044, "OBJECTID_1": 10178, "PARCEL_NO_": "105302200400", "Tax_Legal_": "GAMLE NORDSIDEVEJ 5 CROWN PRINCE QUARTER", "Name": "MC COY, WEBSTER OLIVER", "Address": "P.O. BOX 2875", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 812700, "Improved_V": 217100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 415.218192848, "SHAPE_Area": 4938.9914589700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358102.479099996387959, 256985.805599998682737 ], [ 358074.292400002479553, 256981.564100001007318 ], [ 358081.136699996888638, 256935.390700001269579 ], [ 358046.508400000631809, 256930.041000001132488 ], [ 358031.788699999451637, 257048.766199998557568 ], [ 358048.699699997901917, 257051.437699999660254 ], [ 358046.131499998271465, 257068.9375 ], [ 358053.41889999806881, 257065.408500000834465 ], [ 358064.784599997103214, 257056.424499999731779 ], [ 358047.93469999730587, 257046.576299998909235 ], [ 358052.102899998426437, 257030.567299999296665 ], [ 358059.438900001347065, 257021.339299999177456 ], [ 358079.476199999451637, 257035.646499998867512 ], [ 358081.099600002169609, 257034.393300000578165 ], [ 358089.279600001871586, 257020.739100001752377 ], [ 358095.037100002169609, 257007.487300001084805 ], [ 358096.667700000107288, 257005.389800000935793 ], [ 358102.479099996387959, 256985.805599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302270600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93605467, "LATITUDE": 18.34302711, "OBJECTID_1": 10416, "PARCEL_NO_": "105302270600", "Tax_Legal_": "PILE STRAEDE 3 CROWN PRINCE QUARTER", "Name": "ENGLAND, ISZA & CARMEN TERRY", "Address": "PO Box 6161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6000, "Improved_V": 92700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.4923185026, "SHAPE_Area": 199.080350821 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358264.526500001549721, 257067.720400001853704 ], [ 358263.931199997663498, 257059.5320999994874 ], [ 358263.184199996292591, 257052.559900000691414 ], [ 358250.27419999986887, 257053.509700000286102 ], [ 358251.584499999880791, 257068.792700000107288 ], [ 358264.526500001549721, 257067.720400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302270200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93650395, "LATITUDE": 18.34302375, "OBJECTID_1": 10412, "PARCEL_NO_": "105302270200", "Tax_Legal_": "1A SMALL STRAEDE CROWN PRINCE QUARTER", "Name": "WALLACE, BEATRICE", "Address": "21 E Palomar St", "City": "Chula Vista", "State": "California", "Zip": 91911, "Country": "United States", "Land_Value": 7800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.494033674500002, "SHAPE_Area": 191.59316714900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358215.854500003159046, 257052.032299999147654 ], [ 358202.954199999570847, 257052.98200000077486 ], [ 358204.068099997937679, 257067.939399998635054 ], [ 358216.977600000798702, 257066.566700000315905 ], [ 358215.854500003159046, 257052.032299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302271100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93592024, "LATITUDE": 18.34304563, "OBJECTID_1": 10421, "PARCEL_NO_": "105302271100", "Tax_Legal_": "REGNA GADE 4B CROWN PRINCE", "Name": "MINOQUE, SEAMUS, ELLIS & LIAM", "Address": "PO Box 821", "City": "Manchester", "State": "Maryland", "Zip": 21102, "Country": "United States", "Land_Value": 5900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.468077966000003, "SHAPE_Area": 125.72619534499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358279.071599997580051, 257066.5152000002563 ], [ 358278.4628000035882, 257057.540100000798702 ], [ 358263.931199997663498, 257059.5320999994874 ], [ 358264.526500001549721, 257067.720400001853704 ], [ 358279.071599997580051, 257066.5152000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302350900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93374107, "LATITUDE": 18.34296902, "OBJECTID_1": 10624, "PARCEL_NO_": "105302350900", "Tax_Legal_": "BJERGE 2A QUEENS QTR", "Name": "AIMERY PIERRE CARON REVOCABLE TRUST", "Address": "PO Box 303688", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38900, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.704435644, "SHAPE_Area": 619.72508823700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358481.649899996817112, 257059.625300001353025 ], [ 358493.645700000226498, 257071.333599999547005 ], [ 358518.756499998271465, 257058.029199998825788 ], [ 358517.285899996757507, 257041.340700000524521 ], [ 358503.54619999974966, 257045.028000000864267 ], [ 358488.966099999845028, 257052.719099998474121 ], [ 358481.649899996817112, 257059.625300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302131500", "MAP": null, "PARCEL_NAM": "95", "ACRE": null, "LONGITUDE": -64.94060783, "LATITUDE": 18.34300294, "OBJECTID_1": 9886, "PARCEL_NO_": "105302131500", "Tax_Legal_": "ANNAS FANCY 95 CROWN PRINCE QUARTER", "Name": "DAVID, MARIE & LIONEL", "Address": "3284 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22000, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.056740092799998, "SHAPE_Area": 285.69276251000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357769.780299998819828, 257041.555599998682737 ], [ 357769.587899997830391, 257064.140999998897314 ], [ 357780.867299996316433, 257065.288800001144409 ], [ 357783.298799999058247, 257063.831000000238419 ], [ 357782.65429999679327, 257044.827300000935793 ], [ 357769.780299998819828, 257041.555599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302164700", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 7", "ACRE": null, "LONGITUDE": -64.93896807, "LATITUDE": 18.34303086, "OBJECTID_1": 10038, "PARCEL_NO_": "105302164700", "Tax_Legal_": "TEMPLE STREET 7 CROWN PRINCE QUARTER", "Name": "BATTISTE, LEON", "Address": "1157 Colgate Ave", "City": "Bronx", "State": "New York", "Zip": 10472, "Country": "United States", "Land_Value": 8800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.268695174500003, "SHAPE_Area": 80.167857515199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357951.816299997270107, 257065.421300001442432 ], [ 357952.748499996960163, 257050.652399998158216 ], [ 357947.091700002551079, 257052.083799999207258 ], [ 357946.16669999808073, 257066.008400000631809 ], [ 357951.816299997270107, 257065.421300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302312100", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 44", "ACRE": "2,694 sq ft", "LONGITUDE": -64.93481962, "LATITUDE": 18.34298915, "OBJECTID_1": 10536, "PARCEL_NO_": "105302312100", "Tax_Legal_": "VESTER GADE 44 QUEENS QUARTER", "Name": "HALL, JUNITA & OSWALD", "Address": "PO Box 7102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40400, "Improved_V": 89200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.394090453700002, "SHAPE_Area": 274.48368510799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358390.744099996984005, 257049.939399998635054 ], [ 358386.627999998629093, 257046.482500001788139 ], [ 358384.172399997711182, 257048.695000000298023 ], [ 358380.16669999808073, 257052.185100000351667 ], [ 358375.331699997186661, 257056.397700000554323 ], [ 358381.131300002336502, 257061.148600000888109 ], [ 358383.218599997460842, 257062.858500000089407 ], [ 358391.252999998629093, 257069.440099999308586 ], [ 358393.695900000631809, 257065.595499999821186 ], [ 358395.5929000005126, 257062.610199999064207 ], [ 358397.791599996387959, 257059.149999998509884 ], [ 358399.641699999570847, 257056.959800001233816 ], [ 358399.580200001597404, 257056.833500001579523 ], [ 358390.744099996984005, 257049.939399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302270300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93638395000001, "LATITUDE": 18.34290621, "OBJECTID_1": 10413, "PARCEL_NO_": "105302270300", "Tax_Legal_": "SMALL STRAEDE 2 CROWN PRINCE QUARTER", "Name": "CROSS, MARLENE", "Address": "1343 Hospital Gorund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27200, "Improved_V": 33900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.959937775, "SHAPE_Area": 476.75183411 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358228.203500002622604, 257065.372999999672174 ], [ 358226.122599996626377, 257048.879099998623133 ], [ 358232.580300003290176, 257048.087600000202656 ], [ 358231.83330000191927, 257041.11540000140667 ], [ 358231.113300003111362, 257030.977000001817942 ], [ 358214.168200001120567, 257032.315999999642372 ], [ 358215.636900000274181, 257049.215500000864267 ], [ 358216.977600000798702, 257066.566700000315905 ], [ 358228.203500002622604, 257065.372999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302131400", "MAP": null, "PARCEL_NAM": "94", "ACRE": null, "LONGITUDE": -64.94074796, "LATITUDE": 18.34297764, "OBJECTID_1": 9885, "PARCEL_NO_": "105302131400", "Tax_Legal_": "ANNAS FANCY 94 CROWN PRINCE QUARTER", "Name": "MELBERT A. MATTHIAS SR., TRUST", "Address": "PO Box 9370", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 188900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.404352786700002, "SHAPE_Area": 371.39253256900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357769.780299998819828, 257041.555599998682737 ], [ 357755.297200001776218, 257037.848400000482798 ], [ 357751.084100000560284, 257059.134399998933077 ], [ 357769.587899997830391, 257064.140999998897314 ], [ 357769.780299998819828, 257041.555599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302164800", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 15", "ACRE": null, "LONGITUDE": -64.9388208, "LATITUDE": 18.34302003, "OBJECTID_1": 10039, "PARCEL_NO_": "105302164800", "Tax_Legal_": "NY NORDSIDEVEJ 15 CROWN PRINCE QUARTER", "Name": "WILLIAMS, ALMIDA", "Address": "PO Box 301885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16900, "Improved_V": 76400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.819999590500004, "SHAPE_Area": 349.945632504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357979.354999996721745, 257051.081300001591444 ], [ 357952.748499996960163, 257050.652399998158216 ], [ 357951.816299997270107, 257065.421300001442432 ], [ 357978.449799999594688, 257062.684000000357628 ], [ 357979.354999996721745, 257051.081300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302270400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93631065, "LATITUDE": 18.34299391, "OBJECTID_1": 10414, "PARCEL_NO_": "105302270400", "Tax_Legal_": "SMALL STRAEDE 3 CROWN PRINCE QUARTER", "Name": "BERTIE, KELVIN & MARY", "Address": "PO BOX 12026", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3300, "Improved_V": 37600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.340557369400003, "SHAPE_Area": 108.28320045 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358234.648599997162819, 257064.687699999660254 ], [ 358232.580300003290176, 257048.087600000202656 ], [ 358226.122599996626377, 257048.879099998623133 ], [ 358228.203500002622604, 257065.372999999672174 ], [ 358234.648599997162819, 257064.687699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302270900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93572319, "LATITUDE": 18.34303383, "OBJECTID_1": 10419, "PARCEL_NO_": "105302270900", "Tax_Legal_": "GENERAL GADE 3A CROWN PRINCE QTR", "Name": "ANTHON W ADAMS (TRUSTEE), F BROWNLOW, J & P ADAMS", "Address": "PO Box 304417", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3000, "Improved_V": 20500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.294487024, "SHAPE_Area": 72.200816851400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358297.624200001358986, 257064.978000000119209 ], [ 358297.008000001311302, 257057.691899999976158 ], [ 358287.326800003647804, 257058.245900001376867 ], [ 358287.931500002741814, 257065.781100001186132 ], [ 358297.624200001358986, 257064.978000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302311900", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 43B", "ACRE": "1,625 sq ft", "LONGITUDE": -64.93495097, "LATITUDE": 18.343065, "OBJECTID_1": 10534, "PARCEL_NO_": "105302311900", "Tax_Legal_": "VESTER GADE 43B QUEENS QUARTER", "Name": "THOMAS, LUDRICK & EILEEN", "Address": "6127 MARIENDAHL EST. 2B-27", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.893661681600001, "SHAPE_Area": 176.27516762 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358383.218599997460842, 257062.858500000089407 ], [ 358375.331699997186661, 257056.397700000554323 ], [ 358373.611199997365475, 257057.896699998527765 ], [ 358370.35360000282526, 257061.669700000435114 ], [ 358369.915600001811981, 257062.195700000971556 ], [ 358369.011200003325939, 257063.281899999827147 ], [ 358365.465400002896786, 257067.540300000458956 ], [ 358364.375500001013279, 257068.756099998950958 ], [ 358373.368199996650219, 257075.160000000149012 ], [ 358378.610600002110004, 257068.911400001496077 ], [ 358383.497299998998642, 257063.086800001561642 ], [ 358383.218599997460842, 257062.858500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302270500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93622487, "LATITUDE": 18.34298382, "OBJECTID_1": 10415, "PARCEL_NO_": "105302270500", "Tax_Legal_": "SMALL STRAEDE 4 CROWN PRINCE QUARTER", "Name": "GEORGE, FOSTER L", "Address": "PO Box 9227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7800, "Improved_V": 17800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.932538100800002, "SHAPE_Area": 196.592304646 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358246.014700002968311, 257063.479100000113249 ], [ 358244.6858000010252, 257046.920099999755621 ], [ 358232.580300003290176, 257048.087600000202656 ], [ 358234.648599997162819, 257064.687699999660254 ], [ 358246.014700002968311, 257063.479100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302370600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93424091, "LATITUDE": 18.34300531, "OBJECTID_1": 10631, "PARCEL_NO_": "105302370600", "Tax_Legal_": "NORDSIDEVEJ 6AA QUEENS QUARTER", "Name": "COUNCIL ON ALCOHOLISM STT. & S", "Address": "PO Box 10028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013028, "Country": "United States", "Land_Value": 12000, "Improved_V": 34200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.251991733600001, "SHAPE_Area": 107.8263851 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358457.4712999984622, 257058.160799998790026 ], [ 358449.458599999547005, 257052.184599999338388 ], [ 358441.289300002157688, 257064.572299998253584 ], [ 358446.917300000786781, 257066.518199998885393 ], [ 358457.4712999984622, 257058.160799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302300200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93537532000001, "LATITUDE": 18.34299892, "OBJECTID_1": 10492, "PARCEL_NO_": "105302300200", "Tax_Legal_": "12B GENERAL GADE CROWN PRINCE QUARTER", "Name": "CALLENDER, TROY", "Address": "2109 General Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9500, "Improved_V": 36900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.287564028699997, "SHAPE_Area": 150.46409457600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358334.847099997103214, 257064.756599999964237 ], [ 358334.960400000214577, 257051.458599999547005 ], [ 358322.862099997699261, 257051.781800001859665 ], [ 358324.361400000751019, 257065.092999998480082 ], [ 358334.847099997103214, 257064.756599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302300300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93527646, "LATITUDE": 18.34299246, "OBJECTID_1": 10493, "PARCEL_NO_": "105302300300", "Tax_Legal_": "GENERAL GADE 12C CROWN PRINCE QUARTER", "Name": "CALENDAR, D. & N. C", "Address": "PO Box 7995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11100, "Improved_V": 17800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.989223576900002, "SHAPE_Area": 131.3145322 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358344.528200000524521, 257064.202500000596046 ], [ 358343.849600002169609, 257049.209300000220537 ], [ 358339.818000003695488, 257049.176399998366833 ], [ 358339.80009999871254, 257051.287099998444319 ], [ 358334.960400000214577, 257051.458599999547005 ], [ 358334.847099997103214, 257064.756599999964237 ], [ 358344.528200000524521, 257064.202500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302150300", "MAP": null, "PARCEL_NAM": "HODGES STREET 13", "ACRE": null, "LONGITUDE": -64.93982691, "LATITUDE": 18.34298138, "OBJECTID_1": 9960, "PARCEL_NO_": "105302150300", "Tax_Legal_": "HODGES STREET 13 CROWN PRINCE QUARTER", "Name": "FRETT, ROY", "Address": "PO Box 304340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16500, "Improved_V": 308000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.401914679900003, "SHAPE_Area": 345.69079166500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357855.224200002849102, 257045.210200000554323 ], [ 357845.555699996650219, 257044.286699999123812 ], [ 357845.446000002324581, 257057.162500001490116 ], [ 357864.77589999884367, 257059.853799998760223 ], [ 357869.608400002121925, 257060.526599999517202 ], [ 357874.546999998390675, 257048.745799999684095 ], [ 357855.224200002849102, 257045.210200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302342500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93450853, "LATITUDE": 18.34292434, "OBJECTID_1": 10619, "PARCEL_NO_": "105302342500", "Tax_Legal_": "NORDSIDEVEJ 1 & VESTER GADE 8&9 QUEENS QTR", "Name": "GABRIEL, MADELINE & OTHERS", "Address": "PO Box 10782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.952386138500003, "SHAPE_Area": 421.09243598099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358405.064599998295307, 257057.30970000103116 ], [ 358426.768500000238419, 257065.297800000756979 ], [ 358431.066200003027916, 257034.0912000015378 ], [ 358428.661700002849102, 257032.382699999958277 ], [ 358419.722099997103214, 257040.542199999094009 ], [ 358405.064599998295307, 257057.30970000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302131300", "MAP": null, "PARCEL_NAM": "93", "ACRE": null, "LONGITUDE": -64.9409116, "LATITUDE": 18.34293482, "OBJECTID_1": 9884, "PARCEL_NO_": "105302131300", "Tax_Legal_": "ANNAS FANCY 93 CROWN PRINCE QUARTER", "Name": "JURGEN, CAROL,SHEREESE,STEFAN,SHAYNE & SWAYNE", "Address": "PO Box 8568", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26500, "Improved_V": 136200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.3479400473, "SHAPE_Area": 401.17911798599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357755.297200001776218, 257037.848400000482798 ], [ 357737.594300001859665, 257033.481699999421835 ], [ 357732.580200001597404, 257054.12779999896884 ], [ 357751.084100000560284, 257059.134399998933077 ], [ 357755.297200001776218, 257037.848400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302132400", "MAP": null, "PARCEL_NAM": "72A", "ACRE": null, "LONGITUDE": -64.94002254, "LATITUDE": 18.34295227, "OBJECTID_1": 9895, "PARCEL_NO_": "105302132400", "Tax_Legal_": "ANNAS FANCY 72A KRONP QTR", "Name": "LORI A. , S. H. & S. SCATLIFFE & D S-J", "Address": "554 Elmwood Ave", "City": "Lynchburg", "State": "Virginia", "Zip": 24503, "Country": "United States", "Land_Value": 20200, "Improved_V": 77900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.625781350099999, "SHAPE_Area": 305.18145254900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357845.555699996650219, 257044.286699999123812 ], [ 357845.575499996542931, 257041.964800000190735 ], [ 357831.931100003421307, 257034.464899998158216 ], [ 357830.917999997735023, 257058.732299998402596 ], [ 357836.553199999034405, 257059.83390000090003 ], [ 357845.420800000429153, 257060.117600001394749 ], [ 357845.446000002324581, 257057.162500001490116 ], [ 357845.555699996650219, 257044.286699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302300400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93519083, "LATITUDE": 18.34297641, "OBJECTID_1": 10494, "PARCEL_NO_": "105302300400", "Tax_Legal_": "GENERAL GADE 12CC CROWN PRINCE QUARTER", "Name": "WILLIAMS, DEAN", "Address": "3103 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5300, "Improved_V": 160600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.571328066900001, "SHAPE_Area": 131.74117728100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358350.174199998378754, 257064.03770000115037 ], [ 358355.944300003349781, 257049.308299999684095 ], [ 358343.849600002169609, 257049.209300000220537 ], [ 358344.528200000524521, 257064.202500000596046 ], [ 358350.174199998378754, 257064.03770000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302151100", "MAP": null, "PARCEL_NAM": "TEMPLE ST 10", "ACRE": "2,448 sq ft", "LONGITUDE": -64.9392518, "LATITUDE": 18.34290992, "OBJECTID_1": 9968, "PARCEL_NO_": "105302151100", "Tax_Legal_": "TEMPLE STREET 1O CROWN PRINCE QUARTER", "Name": "BLYDEN, JOSEPH B", "Address": "PO Box 306122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13900, "Improved_V": 20700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.691229318, "SHAPE_Area": 506.535946631 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357923.98200000077486, 257019.808400001376867 ], [ 357920.684799998998642, 257028.22520000115037 ], [ 357914.914700001478195, 257042.954500000923872 ], [ 357912.476000003516674, 257045.256599999964237 ], [ 357902.721199996769428, 257054.464899998158216 ], [ 357912.351999998092651, 257059.820999998599291 ], [ 357920.411499999463558, 257060.309200000017881 ], [ 357922.830399997532368, 257060.328999999910593 ], [ 357928.539300002157688, 257052.776299998164177 ], [ 357927.835500001907349, 257040.738200001418591 ], [ 357926.292999997735023, 257032.493000000715256 ], [ 357928.826999999582767, 257019.003699999302626 ], [ 357923.98200000077486, 257019.808400001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302211100", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 8D", "ACRE": null, "LONGITUDE": -64.93758312, "LATITUDE": 18.34294569, "OBJECTID_1": 10196, "PARCEL_NO_": "105302211100", "Tax_Legal_": "GAMLE NORDSIDEVEJ 8D CROWN PRINCE QUARTER", "Name": "GEORGES, J. E. , TURNBULL, J. R. &", "Address": "10503 Angroa Dr", "City": "Cheltenham", "State": "Maryland", "Zip": 20623, "Country": "United States", "Land_Value": 32600, "Improved_V": 100200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.202822669400007, "SHAPE_Area": 586.53454365300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358076.898999996483326, 257054.201699998229742 ], [ 358078.490099996328354, 257056.747800000011921 ], [ 358100.217399999499321, 257061.991900000721216 ], [ 358109.095799997448921, 257061.009100001305342 ], [ 358110.089100003242493, 257039.063499998301268 ], [ 358086.698899999260902, 257039.716400001198053 ], [ 358084.238600000739098, 257044.551399998366833 ], [ 358076.898999996483326, 257054.201699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302300500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93511923, "LATITUDE": 18.34298098, "OBJECTID_1": 10495, "PARCEL_NO_": "105302300500", "Tax_Legal_": "GAMLE GADE 3D CROWN PRINCE QTR", "Name": "WILLIAMS, DEAN", "Address": "3103 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6900, "Improved_V": 119300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.334394097599997, "SHAPE_Area": 78.465880904000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358363.166900001466274, 257053.378199998289347 ], [ 358355.944300003349781, 257049.308299999684095 ], [ 358350.174199998378754, 257064.03770000115037 ], [ 358354.216600000858307, 257062.804200001060963 ], [ 358363.166900001466274, 257053.378199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302210800", "MAP": null, "PARCEL_NAM": "BORGER GADE 6BA", "ACRE": null, "LONGITUDE": -64.93695616, "LATITUDE": 18.34296306, "OBJECTID_1": 10193, "PARCEL_NO_": "105302210800", "Tax_Legal_": "BORGER GADE 6BA CROWN PRINCE QUARTER", "Name": "FRANCIS, ALVIN E & ESTHER", "Address": "3566 Est Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5700, "Improved_V": 27200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.380456361100002, "SHAPE_Area": 157.86798491 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358166.502199999988079, 257042.902699999511242 ], [ 358158.431900002062321, 257043.681000001728535 ], [ 358157.467299997806549, 257062.249400001019239 ], [ 358166.342200003564358, 257061.688700001686811 ], [ 358166.502199999988079, 257042.902699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302370500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93431135, "LATITUDE": 18.34297722, "OBJECTID_1": 10630, "PARCEL_NO_": "105302370500", "Tax_Legal_": "NORDSIDEVEJ 6A QUEENS QUARTER", "Name": "COUNCIL ON ALCOHOLISM, STT. &", "Address": "PO Box 305139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035139, "Country": "United States", "Land_Value": 19500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.706837455, "SHAPE_Area": 125.44292020100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358449.458599999547005, 257052.184599999338388 ], [ 358443.848499998450279, 257048.127999998629093 ], [ 358440.5962999984622, 257051.267700001597404 ], [ 358435.699100002646446, 257058.19370000064373 ], [ 358434.052299998700619, 257062.190999999642372 ], [ 358441.289300002157688, 257064.572299998253584 ], [ 358449.458599999547005, 257052.184599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302132300", "MAP": null, "PARCEL_NAM": "72", "ACRE": null, "LONGITUDE": -64.94015283, "LATITUDE": 18.34289982, "OBJECTID_1": 9894, "PARCEL_NO_": "105302132300", "Tax_Legal_": "ANNAS FANCY 72 CROWN PRINCE QUARTER", "Name": "Yanira Mota Guerrero & Manuel U Segura Connor", "Address": "1704 Sugar Estate Complex", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.695464939299995, "SHAPE_Area": 351.56376795900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357817.47860000282526, 257027.169399999082088 ], [ 357817.264600001275539, 257052.287799999117851 ], [ 357830.917999997735023, 257058.732299998402596 ], [ 357831.931100003421307, 257034.464899998158216 ], [ 357823.099399998784065, 257029.959600001573563 ], [ 357817.47860000282526, 257027.169399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302211000", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 8E", "ACRE": null, "LONGITUDE": -64.93738595000001, "LATITUDE": 18.34293922, "OBJECTID_1": 10195, "PARCEL_NO_": "105302211000", "Tax_Legal_": "GAMLE NORDSIDEVEJ 8E CROWN PRINCE QUARTER", "Name": "NORMAN, MELVIN & JUDITH", "Address": "PO Box 305039", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28700, "Improved_V": 94300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.7981448468, "SHAPE_Area": 309.43648762200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358123.799999997019768, 257038.753499999642372 ], [ 358110.089100003242493, 257039.063499998301268 ], [ 358109.095799997448921, 257061.009100001305342 ], [ 358124.430100001394749, 257059.445799998939037 ], [ 358123.799999997019768, 257038.753499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301151400", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-5", "ACRE": ".22", "LONGITUDE": -64.94750624, "LATITUDE": 18.34274555, "OBJECTID_1": 9512, "PARCEL_NO_": "105301151400", "Tax_Legal_": "ALTONA & WELGUNST 220-5 CROWN PRINCE QTR.", "Name": "THE ROJAS FAMILY TRUST", "Address": "PO Box 305546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63200, "Improved_V": 180900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.59615525500001, "SHAPE_Area": 1082.2742592 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357045.255999997258186, 256994.462400000542402 ], [ 357042.9037000015378, 256993.948800001293421 ], [ 357042.838899999856949, 256994.231499999761581 ], [ 357034.531199999153614, 257022.872299998998642 ], [ 357033.48929999768734, 257050.517000000923872 ], [ 357057.81360000371933, 257034.884100001305342 ], [ 357057.932300001382828, 257020.952899999916553 ], [ 357058.785300001502037, 257015.471400000154972 ], [ 357062.109499998390675, 257003.8885000012815 ], [ 357065.394100002944469, 256996.949299998581409 ], [ 357045.255999997258186, 256994.462400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105402120200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91809248, "LATITUDE": 18.3417668, "OBJECTID_1": 19230, "PARCEL_NO_": "105402120200", "Tax_Legal_": "9 ESTATE THOMAS NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1323800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 574.19230023399996, "SHAPE_Area": 2570.8171247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360153.145000003278255, 256882.899300001561642 ], [ 360139.347099997103214, 256798.771099999547005 ], [ 360130.450599998235703, 256801.864700000733137 ], [ 360174.891699999570847, 257075.172400001436472 ], [ 360179.726000003516674, 257075.634199999272823 ], [ 360183.773699998855591, 257073.767499998211861 ], [ 360153.145000003278255, 256882.899300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302270700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93593094000001, "LATITUDE": 18.34297919, "OBJECTID_1": 10417, "PARCEL_NO_": "105302270700", "Tax_Legal_": "4A REGNA GADE CROWN PRINCE QTR", "Name": "WILLIAMS, DENLEY & RAUL A.", "Address": "PO Box 8771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5400, "Improved_V": 15600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.754565821100002, "SHAPE_Area": 91.486040610900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358278.4628000035882, 257057.540100000798702 ], [ 358277.703199997544289, 257052.045499999076128 ], [ 358263.184199996292591, 257052.559900000691414 ], [ 358263.931199997663498, 257059.5320999994874 ], [ 358278.4628000035882, 257057.540100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105402120100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91927783, "LATITUDE": 18.34194027, "OBJECTID_1": 19229, "PARCEL_NO_": "105402120100", "Tax_Legal_": "8 ESTATE THOMAS NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2888000, "Improved_V": 12165800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 987.76573618099997, "SHAPE_Area": 59028.379673199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360130.450599998235703, 256801.864700000733137 ], [ 359883.383400000631809, 256887.841699998825788 ], [ 359893.267200000584126, 257054.430500000715256 ], [ 360174.891699999570847, 257075.172400001436472 ], [ 360130.450599998235703, 256801.864700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302271000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93578129, "LATITUDE": 18.3428911, "OBJECTID_1": 10420, "PARCEL_NO_": "105302271000", "Tax_Legal_": "GENERAL GADE 2AB QUEENS QUARTER", "Name": "PHILLIPS, DORIS & MARIA - GUAR", "Address": "PO Box 7911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.668871999499999, "SHAPE_Area": 457.27179933100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358294.784999996423721, 257034.664500001817942 ], [ 358294.63740000128746, 257033.151200000196695 ], [ 358275.229800000786781, 257034.828899998217821 ], [ 358275.411899998784065, 257037.039099998772144 ], [ 358277.703199997544289, 257052.045499999076128 ], [ 358278.4628000035882, 257057.540100000798702 ], [ 358287.326800003647804, 257058.245900001376867 ], [ 358297.008000001311302, 257057.691899999976158 ], [ 358294.784999996423721, 257034.664500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302401200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93331291, "LATITUDE": 18.3428986, "OBJECTID_1": 10696, "PARCEL_NO_": "105302401200", "Tax_Legal_": "BJERGE GADE 2E QUEENS QUARTER", "Name": "RYAN W GREENE REVOCABLE LIVING TRUST", "Address": "PO Box 1197", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57400, "Improved_V": 29800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.432903619, "SHAPE_Area": 773.130600781 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358567.290899999439716, 257040.083999998867512 ], [ 358565.703400000929832, 257039.872299998998642 ], [ 358558.340999998152256, 257039.762099999934435 ], [ 358541.996699996292591, 257038.813999999314547 ], [ 358540.771700002253056, 257040.064500000327826 ], [ 358522.230599999427795, 257039.391399998217821 ], [ 358522.130999997258186, 257040.535999998450279 ], [ 358524.490599997341633, 257047.52140000090003 ], [ 358530.087999999523163, 257053.055700000375509 ], [ 358546.954000003635883, 257061.004200000315905 ], [ 358566.321699999272823, 257059.262800000607967 ], [ 358565.537000000476837, 257056.723299998790026 ], [ 358566.696699999272823, 257056.550900001078844 ], [ 358567.290899999439716, 257040.083999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302131200", "MAP": null, "PARCEL_NAM": "92", "ACRE": null, "LONGITUDE": -64.9410818, "LATITUDE": 18.34290221, "OBJECTID_1": 9883, "PARCEL_NO_": "105302131200", "Tax_Legal_": "ANNAS FANCY 92 CROWN PRINCE QUARTER", "Name": "JURGEN, STEFAN", "Address": "PO Box 8568", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.179672922799995, "SHAPE_Area": 386.70978282300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357737.594300001859665, 257033.481699999421835 ], [ 357719.072499997913837, 257030.585900001227856 ], [ 357715.660300001502037, 257052.511700000613928 ], [ 357732.580200001597404, 257054.12779999896884 ], [ 357737.594300001859665, 257033.481699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302200300", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 5B", "ACRE": null, "LONGITUDE": -64.93789723, "LATITUDE": 18.34284814, "OBJECTID_1": 10177, "PARCEL_NO_": "105302200300", "Tax_Legal_": "GAMLE NORDSIDEVEJ 5B KRONPRINDSENS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 114000, "Improved_V": 90000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.343737263400001, "SHAPE_Area": 645.00050285400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358064.784599997103214, 257056.424499999731779 ], [ 358076.188000001013279, 257043.00789999961853 ], [ 358079.46000000089407, 257037.54619999974966 ], [ 358079.476199999451637, 257035.646499998867512 ], [ 358059.438900001347065, 257021.339299999177456 ], [ 358052.102899998426437, 257030.567299999296665 ], [ 358047.93469999730587, 257046.576299998909235 ], [ 358064.784599997103214, 257056.424499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302370700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93413435, "LATITUDE": 18.34286839, "OBJECTID_1": 10632, "PARCEL_NO_": "105302370700", "Tax_Legal_": "NORRE 6B QUEENS QUARTER", "Name": "COUNCIL ON ALCOHOLISM", "Address": "PO Box 380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040380, "Country": "United States", "Land_Value": 33600, "Improved_V": 141000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.795898499499998, "SHAPE_Area": 468.32503118800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358473.712700001895428, 257044.7837999984622 ], [ 358474.547700002789497, 257041.413100000470877 ], [ 358464.978100001811981, 257028.880300000309944 ], [ 358443.848499998450279, 257048.127999998629093 ], [ 358449.458599999547005, 257052.184599999338388 ], [ 358457.4712999984622, 257058.160799998790026 ], [ 358459.071400001645088, 257059.651599999517202 ], [ 358473.712700001895428, 257044.7837999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105402120300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91701329, "LATITUDE": 18.3417646, "OBJECTID_1": 19231, "PARCEL_NO_": "105402120300", "Tax_Legal_": "41 ESTATE THOMAS NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2344400, "Improved_V": 7421500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 819.62336175400003, "SHAPE_Area": 40255.270312799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360363.689400002360344, 256809.356899999082088 ], [ 360194.392800003290176, 256868.460299998521805 ], [ 360153.145000003278255, 256882.899300001561642 ], [ 360183.773699998855591, 257073.767499998211861 ], [ 360326.245800003409386, 257009.072299998253584 ], [ 360390.811999998986721, 256985.293800000101328 ], [ 360387.105099998414516, 256960.169700000435114 ], [ 360363.689400002360344, 256809.356899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302150700", "MAP": null, "PARCEL_NAM": "HODGES STREET 10", "ACRE": null, "LONGITUDE": -64.9394944, "LATITUDE": 18.34292807, "OBJECTID_1": 9964, "PARCEL_NO_": "105302150700", "Tax_Legal_": "HODGES STREET 1O CROWN PRINCE QUARTER", "Name": "FLORENCE THOMAS", "Address": "6535 Est. Nazareth 111C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021135, "Country": "United States", "Land_Value": 8400, "Improved_V": 52000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.4218488287, "SHAPE_Area": 145.016803697 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357897.199199996888638, 257040.06529999896884 ], [ 357889.132500000298023, 257040.421500001102686 ], [ 357885.028999999165535, 257048.831599999219179 ], [ 357902.721199996769428, 257054.464899998158216 ], [ 357897.199199996888638, 257040.06529999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302151000", "MAP": null, "PARCEL_NAM": "HODGES STREET 6", "ACRE": null, "LONGITUDE": -64.93940483, "LATITUDE": 18.3428506, "OBJECTID_1": 9967, "PARCEL_NO_": "105302151000", "Tax_Legal_": "HODGES STREET 6 CROWN PRINCE", "Name": "LEONARD G REED JR", "Address": "PO Box 220981", "City": "West Palm Beach", "State": "Florida", "Zip": 334220981, "Country": "United States", "Land_Value": 23000, "Improved_V": 43800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.6476678784, "SHAPE_Area": 320.84088595100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357912.476000003516674, 257045.256599999964237 ], [ 357906.212499998509884, 257023.251600001007318 ], [ 357893.243199996650219, 257031.166999999433756 ], [ 357897.199199996888638, 257040.06529999896884 ], [ 357902.721199996769428, 257054.464899998158216 ], [ 357912.476000003516674, 257045.256599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302210900", "MAP": null, "PARCEL_NAM": "BORGER GADE 6BBA", "ACRE": null, "LONGITUDE": -64.93719638, "LATITUDE": 18.34292982, "OBJECTID_1": 10194, "PARCEL_NO_": "105302210900", "Tax_Legal_": "BORGER GADE 6BBA CROWN PRINCE QUARTER", "Name": "GRIFFITH, HERBERT", "Address": "603 2nd Ave S", "City": "Jacksonville Beach", "State": "Florida", "Zip": 32250, "Country": "United States", "Land_Value": 7400, "Improved_V": 300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.918816729, "SHAPE_Area": 185.86603468499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358145.54169999808073, 257042.309000000357628 ], [ 358128.591099999845028, 257044.281199999153614 ], [ 358128.495800003409386, 257055.468299999833107 ], [ 358144.638300001621246, 257053.700599998235703 ], [ 358145.54169999808073, 257042.309000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301122100", "MAP": null, "PARCEL_NAM": "200-5B-3", "ACRE": null, "LONGITUDE": -64.94650691, "LATITUDE": 18.34282167, "OBJECTID_1": 9443, "PARCEL_NO_": "105301122100", "Tax_Legal_": "ALTONA & WELGUNST 200-5B-3 SOUTHSIDE QTR", "Name": "HENRY, VERONICA", "Address": "PO Box 502636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 52200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.83652389900001, "SHAPE_Area": 1541.3968305599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357178.110600002110004, 257017.503499999642372 ], [ 357128.984899997711182, 257010.135299999266863 ], [ 357125.504299998283386, 257040.082100000232458 ], [ 357179.471500001847744, 257047.067699998617172 ], [ 357178.110600002110004, 257017.503499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302132200", "MAP": "D9-8509-T010", "PARCEL_NAM": "73", "ACRE": ".08", "LONGITUDE": -64.94027888, "LATITUDE": 18.34286865, "OBJECTID_1": 9893, "PARCEL_NO_": "105302132200", "Tax_Legal_": "73 & 96-A ANNA'S FANCY KRONPRINDSENS QTR", "Name": "NISBITT, ROSETTA & WINTERS, G.", "Address": "3278 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25900, "Improved_V": 104300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.999575565699999, "SHAPE_Area": 307.73564621000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357804.377999998629093, 257050.493599999696016 ], [ 357817.264600001275539, 257052.287799999117851 ], [ 357817.47860000282526, 257027.169399999082088 ], [ 357812.642499998211861, 257026.918699998408556 ], [ 357804.563199996948242, 257028.752399999648333 ], [ 357804.377999998629093, 257050.493599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301130100", "MAP": "G9-3001-T80", "PARCEL_NAM": "200-7-1", "ACRE": "0.14", "LONGITUDE": -64.94434857, "LATITUDE": 18.34283137, "OBJECTID_1": 9448, "PARCEL_NO_": "105301130100", "Tax_Legal_": "ALTONA & WELGUNST 200-7-1 CROWN PRINCE QTR", "Name": "ALEXANDER, ANDUZE", "Address": "200-7-1 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 150300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.721145766299998, "SHAPE_Area": 447.08046629099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357366.255000002682209, 257036.767700001597404 ], [ 357391.390100002288818, 257044.048700001090765 ], [ 357394.144799999892712, 257026.026599999517202 ], [ 357394.152900002896786, 257025.079799998551607 ], [ 357386.38400000333786, 257023.562199998646975 ], [ 357371.115900002419949, 257020.579700000584126 ], [ 357366.255000002682209, 257036.767700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302151200", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 8", "ACRE": null, "LONGITUDE": -64.93908917, "LATITUDE": 18.34290752, "OBJECTID_1": 9969, "PARCEL_NO_": "105302151200", "Tax_Legal_": "TEMPLE STREET 8 CROWN PRINCE QUARTER", "Name": "DEWINDT, FRANKLIN & VIVIAN", "Address": "PO Box 502582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 12200, "Improved_V": 7800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.542608169099999, "SHAPE_Area": 198.122052115 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357945.601400002837181, 257037.717199999839067 ], [ 357927.835500001907349, 257040.738200001418591 ], [ 357928.539300002157688, 257052.776299998164177 ], [ 357946.32320000231266, 257047.644499998539686 ], [ 357945.601400002837181, 257037.717199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302164900", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 15A", "ACRE": null, "LONGITUDE": -64.93879879000001, "LATITUDE": 18.34290465, "OBJECTID_1": 10040, "PARCEL_NO_": "105302164900", "Tax_Legal_": "NY NORDSIDEVEJ 15A KRONP QTR", "Name": "WILLIAMS, ALMIDA", "Address": "PO Box 301885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10300, "Improved_V": 78300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.788575308600002, "SHAPE_Area": 323.05349395399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357980.290799997746944, 257035.8902000002563 ], [ 357956.862800002098083, 257040.97580000013113 ], [ 357952.824000000953674, 257041.787099998444319 ], [ 357952.748499996960163, 257050.652399998158216 ], [ 357979.354999996721745, 257051.081300001591444 ], [ 357980.290799997746944, 257035.8902000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302303000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93501136, "LATITUDE": 18.34293561, "OBJECTID_1": 10517, "PARCEL_NO_": "105302303000", "Tax_Legal_": "GAMLE GADE 3B-1 & 3D-1 KRONPRINSDENS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.7512268497, "SHAPE_Area": 37.956360751600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358370.425499998033047, 257053.226500000804663 ], [ 358370.493900001049042, 257045.20549999922514 ], [ 358363.166900001466274, 257053.378199998289347 ], [ 358367.178700000047684, 257055.7331000007689 ], [ 358370.425499998033047, 257053.226500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302401500", "MAP": null, "PARCEL_NAM": "CRYSTAL GADE 13B", "ACRE": null, "LONGITUDE": -64.93312418, "LATITUDE": 18.34270872, "OBJECTID_1": 10699, "PARCEL_NO_": "105302401500", "Tax_Legal_": "CRYSTAL GADE 13B", "Name": "METHODIST CONGREGATION", "Address": "PO Box 1045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39600, "Improved_V": 121900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.01547766499999, "SHAPE_Area": 704.00288607899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358558.340999998152256, 257039.762099999934435 ], [ 358565.703400000929832, 257039.872299998998642 ], [ 358567.290899999439716, 257040.083999998867512 ], [ 358566.696699999272823, 257056.550900001078844 ], [ 358573.61089999973774, 257055.522799998521805 ], [ 358575.107199996709824, 257055.317699998617172 ], [ 358575.440099999308586, 257039.978199999779463 ], [ 358575.651799999177456, 257025.796500001102686 ], [ 358574.924300000071526, 257008.792500000447035 ], [ 358574.011900000274181, 257008.452199999243021 ], [ 358557.916199997067451, 257004.731899999082088 ], [ 358558.340999998152256, 257039.762099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302271300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93606753, "LATITUDE": 18.34290794, "OBJECTID_1": 10423, "PARCEL_NO_": "105302271300", "Tax_Legal_": "PILE STRAEDE 2 CROWN PRINCE QUARTER", "Name": "THOMAS, TICY ELOISE", "Address": "2702 Pile Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6800, "Improved_V": 33100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.799261016700001, "SHAPE_Area": 142.29334119399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358263.184199996292591, 257052.559900000691414 ], [ 358261.666900001466274, 257041.359499998390675 ], [ 358249.564999997615814, 257042.104899998754263 ], [ 358250.27419999986887, 257053.509700000286102 ], [ 358263.184199996292591, 257052.559900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302401600", "MAP": null, "PARCEL_NAM": "CRYSTAL GADE 14", "ACRE": null, "LONGITUDE": -64.93297395, "LATITUDE": 18.34275746, "OBJECTID_1": 10700, "PARCEL_NO_": "105302401600", "Tax_Legal_": "14 CRYSTAL GADE QUEENS QUARTER", "Name": "BOLT, THOMAS A. W. & SMITH, JENIFER", "Address": "PO Box 7625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 118600, "Improved_V": 239100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.80554755599999, "SHAPE_Area": 690.36295535900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358574.924300000071526, 257008.792500000447035 ], [ 358575.651799999177456, 257025.796500001102686 ], [ 358575.440099999308586, 257039.978199999779463 ], [ 358575.107199996709824, 257055.317699998617172 ], [ 358580.8766999989748, 257054.526799999177456 ], [ 358591.367700003087521, 257053.557199999690056 ], [ 358592.639499999582767, 257053.429000001400709 ], [ 358590.697400003671646, 257014.697900000959635 ], [ 358588.480599999427795, 257013.848000001162291 ], [ 358574.924300000071526, 257008.792500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302271200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93594417, "LATITUDE": 18.34287942, "OBJECTID_1": 10422, "PARCEL_NO_": "105302271200", "Tax_Legal_": "REGNE GADE 3AB CROWN PRINCE QTR", "Name": "THOMAS, JR, BRADLEY", "Address": "3AB Regne Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.476156788399997, "SHAPE_Area": 228.84299865400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358275.411899998784065, 257037.039099998772144 ], [ 358261.715400002896786, 257035.660399999469519 ], [ 358261.666900001466274, 257041.359499998390675 ], [ 358263.184199996292591, 257052.559900000691414 ], [ 358277.703199997544289, 257052.045499999076128 ], [ 358275.411899998784065, 257037.039099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302300600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93504653, "LATITUDE": 18.34285492, "OBJECTID_1": 10496, "PARCEL_NO_": "105302300600", "Tax_Legal_": "GAMLE GADE 3B CROWN PRINCE QTR", "Name": "WILLIAMS, DEAN", "Address": "3103 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 62200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.000124411999998, "SHAPE_Area": 207.22743433900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358370.493900001049042, 257045.20549999922514 ], [ 358370.600000001490116, 257032.751899998635054 ], [ 358361.728699997067451, 257032.890399999916553 ], [ 358355.944300003349781, 257049.308299999684095 ], [ 358363.166900001466274, 257053.378199998289347 ], [ 358370.493900001049042, 257045.20549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302302900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93492353000001, "LATITUDE": 18.34283557, "OBJECTID_1": 10516, "PARCEL_NO_": "105302302900", "Tax_Legal_": "GAMLE GADE 2D CROWN PRINCE", "Name": "PROPERTY & PROCUREMENT", "Address": "BLDG. #1 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.257699606399996, "SHAPE_Area": 227.56689773900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358370.600000001490116, 257032.751899998635054 ], [ 358370.493900001049042, 257045.20549999922514 ], [ 358370.425499998033047, 257053.226500000804663 ], [ 358385.030900001525879, 257042.580299999564886 ], [ 358385.925300002098083, 257032.243999999016523 ], [ 358370.600000001490116, 257032.751899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301112100", "MAP": null, "PARCEL_NAM": "200-6A", "ACRE": null, "LONGITUDE": -64.94605461, "LATITUDE": 18.34284218, "OBJECTID_1": 9413, "PARCEL_NO_": "105301112100", "Tax_Legal_": "ALTONA & WELGUNST 200-6A CROWN PRINCE QTR", "Name": "CANNING, BERNARD", "Address": "3118 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39800, "Improved_V": 130800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.920110360899997, "SHAPE_Area": 474.96153957199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357216.754199996590614, 257024.785900000482798 ], [ 357187.754000000655651, 257021.382100000977516 ], [ 357188.3733000010252, 257043.340900000184774 ], [ 357215.037299998104572, 257037.0152000002563 ], [ 357216.754199996590614, 257024.785900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302370800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93397071, "LATITUDE": 18.34281661, "OBJECTID_1": 10633, "PARCEL_NO_": "105302370800", "Tax_Legal_": "NORRE GADE 4B,5&6A QUEENS QTR", "Name": "OLD UNITY LODGE", "Address": "PO Box 380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 133500, "Improved_V": 291300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.181758780899997, "SHAPE_Area": 292.58559310200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358473.712700001895428, 257044.7837999984622 ], [ 358481.703900001943111, 257053.292899999767542 ], [ 358486.579499997198582, 257048.899900000542402 ], [ 358491.438900001347065, 257046.406500000506639 ], [ 358478.654799997806549, 257032.580800000578165 ], [ 358470.665399998426437, 257023.860599998384714 ], [ 358464.978100001811981, 257028.880300000309944 ], [ 358474.547700002789497, 257041.413100000470877 ], [ 358473.712700001895428, 257044.7837999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302300900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93534467000001, "LATITUDE": 18.34285552, "OBJECTID_1": 10498, "PARCEL_NO_": "105302300900", "Tax_Legal_": "GENERAL GADE 12AAA CROWN PRINCE QUARTER", "Name": "KEAN, AIMEE & OTHERS", "Address": "PO Box 162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22800, "Improved_V": 64000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.213446101599999, "SHAPE_Area": 386.88158624699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358343.849600002169609, 257049.209300000220537 ], [ 358343.984499998390675, 257033.378400001674891 ], [ 358320.594200000166893, 257034.031399998813868 ], [ 358322.862099997699261, 257051.781800001859665 ], [ 358334.960400000214577, 257051.458599999547005 ], [ 358339.80009999871254, 257051.287099998444319 ], [ 358339.818000003695488, 257049.176399998366833 ], [ 358343.849600002169609, 257049.209300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302401700", "MAP": null, "PARCEL_NAM": "CRYSTAL GADE 15", "ACRE": null, "LONGITUDE": -64.93281907, "LATITUDE": 18.34277675, "OBJECTID_1": 10701, "PARCEL_NO_": "105302401700", "Tax_Legal_": "15 CRYSTAL GADE QUEENS QUARTER", "Name": "BOLT, THOMAS A. W. & SMITH, J. , TRUT", "Address": "PO Box 7625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 97200, "Improved_V": 175500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.416293022, "SHAPE_Area": 566.48223891600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358590.697400003671646, 257014.697900000959635 ], [ 358592.639499999582767, 257053.429000001400709 ], [ 358610.737199999392033, 257051.604800000786781 ], [ 358605.359200000762939, 257020.318900000303984 ], [ 358590.697400003671646, 257014.697900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302132100", "MAP": null, "PARCEL_NAM": "75", "ACRE": null, "LONGITUDE": -64.94067084, "LATITUDE": 18.34280547, "OBJECTID_1": 9892, "PARCEL_NO_": "105302132100", "Tax_Legal_": "ANNAS FANCY 75 CROWN PRINCE QUARTER", "Name": "SIMMONDS, JOSEPH A", "Address": "BOX 1711", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.663069322699997, "SHAPE_Area": 491.38959568299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357758.677100002765656, 257019.721999999135733 ], [ 357755.297200001776218, 257037.848400000482798 ], [ 357769.780299998819828, 257041.555599998682737 ], [ 357782.65429999679327, 257044.827300000935793 ], [ 357782.729800000786781, 257035.962000001221895 ], [ 357781.979299999773502, 257029.412000000476837 ], [ 357780.409800000488758, 257024.332899998873472 ], [ 357758.677100002765656, 257019.721999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302150400", "MAP": null, "PARCEL_NAM": "HODGES STREET 12", "ACRE": null, "LONGITUDE": -64.93989936, "LATITUDE": 18.34279578, "OBJECTID_1": 9961, "PARCEL_NO_": "105302150400", "Tax_Legal_": "12 HODGES STREET CROWN PRINCE QUARTER", "Name": "JOHN, MARCEL J", "Address": "PO Box 303977", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.5965127403, "SHAPE_Area": 246.46128545 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357857.054499998688698, 257019.682799998670816 ], [ 357852.223800003528595, 257018.798900000751019 ], [ 357847.393100000917912, 257017.91499999910593 ], [ 357846.433899998664856, 257035.850099999457598 ], [ 357845.575499996542931, 257041.964800000190735 ], [ 357845.555699996650219, 257044.286699999123812 ], [ 357855.224200002849102, 257045.210200000554323 ], [ 357855.265600003302097, 257040.355399999767542 ], [ 357857.054499998688698, 257019.682799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302300800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93516605000001, "LATITUDE": 18.34283991, "OBJECTID_1": 10497, "PARCEL_NO_": "105302300800", "Tax_Legal_": "GENERAL GADE 12AAAA CROWN PRINCE QUARTER", "Name": "GEORGE, JOSE L.", "Address": "PO Box 9227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34900, "Improved_V": 144800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.084577444399997, "SHAPE_Area": 239.991527639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358361.728699997067451, 257032.890399999916553 ], [ 358343.984499998390675, 257033.378400001674891 ], [ 358343.849600002169609, 257049.209300000220537 ], [ 358355.944300003349781, 257049.308299999684095 ], [ 358361.728699997067451, 257032.890399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302271400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93623778, "LATITUDE": 18.34287931, "OBJECTID_1": 10424, "PARCEL_NO_": "105302271400", "Tax_Legal_": "13 PILE STRADE CROWN PRINCE QUARTER", "Name": "HULL, GEORGE", "Address": "2713 Pile Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5100, "Improved_V": 21500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.891572208100001, "SHAPE_Area": 82.551120982300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358243.935199998319149, 257040.370000001043081 ], [ 358231.83330000191927, 257041.11540000140667 ], [ 358232.580300003290176, 257048.087600000202656 ], [ 358244.6858000010252, 257046.920099999755621 ], [ 358243.935199998319149, 257040.370000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302151400", "MAP": null, "PARCEL_NAM": "HODGES STREET 5", "ACRE": null, "LONGITUDE": -64.93931236, "LATITUDE": 18.34278807, "OBJECTID_1": 9971, "PARCEL_NO_": "105302151400", "Tax_Legal_": "HODGES STREET 5 CROWN PRINCE QUARTER", "Name": "DEWINDT, FRANKLIN & VIVIAN", "Address": "PO Box 502582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 7500, "Improved_V": 43100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.294224444100003, "SHAPE_Area": 184.419742286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357920.684799998998642, 257028.22520000115037 ], [ 357912.679200001060963, 257021.404699999839067 ], [ 357906.212499998509884, 257023.251600001007318 ], [ 357912.476000003516674, 257045.256599999964237 ], [ 357914.914700001478195, 257042.954500000923872 ], [ 357920.684799998998642, 257028.22520000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302312400", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 47", "ACRE": "847 sq ft", "LONGITUDE": -64.93463312, "LATITUDE": 18.34280875, "OBJECTID_1": 10539, "PARCEL_NO_": "105302312400", "Tax_Legal_": "VESTER GADE 47 QUEENS QUARTER", "Name": "MARTIN, WALTER", "Address": "P.O.BOX 3876", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.999995689800002, "SHAPE_Area": 172.39770800900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358418.379699997603893, 257037.011799998581409 ], [ 358405.877599999308586, 257029.510499998927116 ], [ 358404.920999996364117, 257030.785799998790026 ], [ 358404.078199997544289, 257031.909699998795986 ], [ 358402.548199996352196, 257032.950800001621246 ], [ 358401.232600003480911, 257033.846999999135733 ], [ 358397.656700000166893, 257036.953699998557568 ], [ 358408.877499997615814, 257046.551399998366833 ], [ 358409.205399997532368, 257046.192699998617172 ], [ 358413.260799996554852, 257041.755899999290705 ], [ 358413.631700001657009, 257041.412099998444319 ], [ 358417.324699997901917, 257037.989500001072884 ], [ 358418.333499997854233, 257037.05460000038147 ], [ 358418.379699997603893, 257037.011799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302150600", "MAP": null, "PARCEL_NAM": "HODGES STREET 9", "ACRE": null, "LONGITUDE": -64.93963391, "LATITUDE": 18.34283575, "OBJECTID_1": 9963, "PARCEL_NO_": "105302150600", "Tax_Legal_": "HODGES STREET 9 CROWN PRINCE", "Name": "HENLEY, MONIQUE", "Address": "PO Box 303253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9300, "Improved_V": 88900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.300484495100001, "SHAPE_Area": 162.12212080800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357873.092600002884865, 257030.157699998468161 ], [ 357872.187399998307228, 257041.760400000959635 ], [ 357883.459600001573563, 257043.752500001341105 ], [ 357887.602600000798702, 257030.698600001633167 ], [ 357873.092600002884865, 257030.157699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302211300", "MAP": null, "PARCEL_NAM": "BORGER GADE 6D", "ACRE": null, "LONGITUDE": -64.93715995, "LATITUDE": 18.34275001, "OBJECTID_1": 10198, "PARCEL_NO_": "105302211300", "Tax_Legal_": "BORGER GADE 6D CROWN PRINCE QUARTER", "Name": "GEORGE, BEATRICE & ALBERT", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41500, "Improved_V": 44800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.20124679200001, "SHAPE_Area": 702.87243633499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358153.719899997115135, 257028.865899998694658 ], [ 358152.958499997854233, 257023.582299999892712 ], [ 358152.236699998378754, 257013.655000001192093 ], [ 358128.023999996483326, 257016.201099999248981 ], [ 358128.591099999845028, 257044.281199999153614 ], [ 358145.54169999808073, 257042.309000000357628 ], [ 358154.420100003480911, 257041.326200000941753 ], [ 358153.719899997115135, 257028.865899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302165000", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 5", "ACRE": null, "LONGITUDE": -64.93894, "LATITUDE": 18.3428241, "OBJECTID_1": 10041, "PARCEL_NO_": "105302165000", "Tax_Legal_": "TEMPLE STREET 5 CROWN PRINCE QUARTER", "Name": "JURGEN, CARMELITA", "Address": "5 TEMPLE STREET", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4400, "Improved_V": 16900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.830674339600002, "SHAPE_Area": 100.252262061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357956.862800002098083, 257040.97580000013113 ], [ 357956.963500000536442, 257029.1554000005126 ], [ 357947.26969999819994, 257031.186999998986721 ], [ 357949.591600000858307, 257042.605000000447035 ], [ 357952.824000000953674, 257041.787099998444319 ], [ 357956.862800002098083, 257040.97580000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302211400", "MAP": null, "PARCEL_NAM": "BORGER GADE 7A", "ACRE": null, "LONGITUDE": -64.93694987000001, "LATITUDE": 18.34280805, "OBJECTID_1": 10199, "PARCEL_NO_": "105302211400", "Tax_Legal_": "BORGER GADE 7A CROWN PRINCE QTR", "Name": "CECILIA P SENTHILL HARRIGAN LIVING TRUST", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040582, "Country": "United States", "Land_Value": 15100, "Improved_V": 55400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.583935063300004, "SHAPE_Area": 273.35294117199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358154.420100003480911, 257041.326200000941753 ], [ 358154.394900001585484, 257044.281300000846386 ], [ 358158.431900002062321, 257043.681000001728535 ], [ 358166.502199999988079, 257042.902699999511242 ], [ 358172.959899999201298, 257042.111200001090765 ], [ 358170.670400001108646, 257026.893699999898672 ], [ 358153.719899997115135, 257028.865899998694658 ], [ 358154.420100003480911, 257041.326200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302150500", "MAP": null, "PARCEL_NAM": "HODGES STREET 11", "ACRE": null, "LONGITUDE": -64.93977293, "LATITUDE": 18.34278235, "OBJECTID_1": 9962, "PARCEL_NO_": "105302150500", "Tax_Legal_": "HODGES STREET 11 CROWN PRINCE QUARTER", "Name": "FRETT, ROY", "Address": "PO Box 304340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 46400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.483723386500003, "SHAPE_Area": 362.45667105199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357873.092600002884865, 257030.157699998468161 ], [ 357873.186099998652935, 257019.181600000709295 ], [ 357857.054499998688698, 257019.682799998670816 ], [ 357855.265600003302097, 257040.355399999767542 ], [ 357872.187399998307228, 257041.760400000959635 ], [ 357873.092600002884865, 257030.157699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302380100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93424943, "LATITUDE": 18.34271918, "OBJECTID_1": 10643, "PARCEL_NO_": "105302380100", "Tax_Legal_": "VESTER GADE 7 QUEENS QUARTER", "Name": "KEAN JR, ERNEST O. & EST OF J.E.KEAN", "Address": "P O BOX 2307", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21400, "Improved_V": 25600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.662410804, "SHAPE_Area": 486.19566909399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358458.673199996352196, 257011.730099998414516 ], [ 358448.095899999141693, 257022.831500001251698 ], [ 358446.499399997293949, 257020.918600000441074 ], [ 358442.512800000607967, 257015.608600001782179 ], [ 358440.061499997973442, 257019.388199999928474 ], [ 358437.568899996578693, 257028.022700000554323 ], [ 358435.815999999642372, 257044.473600000143051 ], [ 358439.834899999201298, 257045.984200000762939 ], [ 358465.845499999821186, 257021.710200000554323 ], [ 358458.673199996352196, 257011.730099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302370900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93377653, "LATITUDE": 18.34273525, "OBJECTID_1": 10634, "PARCEL_NO_": "105302370900", "Tax_Legal_": "BJERGE GADE 2G QUEENS QUARTER", "Name": "AIMERY PIERRE CARON REVOCABLE TRUST", "Address": "PO Box 303688", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.914809795, "SHAPE_Area": 693.51051808099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358490.076300002634525, 257017.053399998694658 ], [ 358492.455600000917912, 257021.716899998486042 ], [ 358478.654799997806549, 257032.580800000578165 ], [ 358491.438900001347065, 257046.406500000506639 ], [ 358501.9695999994874, 257040.793200001120567 ], [ 358515.709200002253056, 257037.105999998748302 ], [ 358510.230499997735023, 257017.640500001609325 ], [ 358509.443999998271465, 257015.311999998986721 ], [ 358503.794399999082088, 257015.899099998176098 ], [ 358490.076300002634525, 257017.053399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302150800", "MAP": null, "PARCEL_NAM": "HODGES STREET 8", "ACRE": null, "LONGITUDE": -64.93950227000001, "LATITUDE": 18.34284231, "OBJECTID_1": 9965, "PARCEL_NO_": "105302150800", "Tax_Legal_": "HODGES STREET 8 CROWN PRINCE QUARTER", "Name": "BLYDEN, RALDA", "Address": "2201 Hodges St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.938996245599999, "SHAPE_Area": 36.5945218922 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357889.132500000298023, 257040.421500001102686 ], [ 357897.199199996888638, 257040.06529999896884 ], [ 357893.243199996650219, 257031.166999999433756 ], [ 357889.132500000298023, 257040.421500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302151300", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 6", "ACRE": null, "LONGITUDE": -64.93909436, "LATITUDE": 18.34281652, "OBJECTID_1": 9970, "PARCEL_NO_": "105302151300", "Tax_Legal_": "TEMPLE STREET 6 CROWN PRINCE STREET", "Name": "MADURO, DAISY YVONNE", "Address": "Po Box 623101", "City": "Oviedo", "State": "Florida", "Zip": 32762, "Country": "United States", "Land_Value": 11200, "Improved_V": 57900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.011619922599998, "SHAPE_Area": 165.440964716 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357944.876000002026558, 257028.212099999189377 ], [ 357926.292999997735023, 257032.493000000715256 ], [ 357927.835500001907349, 257040.738200001418591 ], [ 357945.601400002837181, 257037.717199999839067 ], [ 357944.876000002026558, 257028.212099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302165100", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 14", "ACRE": null, "LONGITUDE": -64.93878837, "LATITUDE": 18.34279572, "OBJECTID_1": 10042, "PARCEL_NO_": "105302165100", "Tax_Legal_": "NY NORDSIDEVEJ 14 CROWN PRINCE QTR", "Name": "FERGUSON, DWIGHT & ELIZABETH", "Address": "7457 FRENCHMAN'S BAY ESTATES BOX 9", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9200, "Improved_V": 30500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.644750391000002, "SHAPE_Area": 271.65075862399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357980.290799997746944, 257035.8902000002563 ], [ 357981.192400000989437, 257024.709600001573563 ], [ 357956.963500000536442, 257029.1554000005126 ], [ 357956.862800002098083, 257040.97580000013113 ], [ 357980.290799997746944, 257035.8902000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302273400", "MAP": null, "PARCEL_NAM": "BORGER GADE 7", "ACRE": "1,142 sq ft", "LONGITUDE": -64.93683042000001, "LATITUDE": 18.3427917, "OBJECTID_1": 10444, "PARCEL_NO_": "105302273400", "Tax_Legal_": "BORGER GADE 7 CROWN PRINCE QTR", "Name": "CECILIA P SENTHILL HARRIGAN LIVING TRUST", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040582, "Country": "United States", "Land_Value": 5500, "Improved_V": 72200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.320545295199999, "SHAPE_Area": 119.145718445 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358178.742600001394749, 257025.90430000051856 ], [ 358170.670400001108646, 257026.893699999898672 ], [ 358172.959899999201298, 257042.111200001090765 ], [ 358180.223899997770786, 257041.326200000941753 ], [ 358178.742600001394749, 257025.90430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302273500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93607806, "LATITUDE": 18.34280235, "OBJECTID_1": 10445, "PARCEL_NO_": "105302273500", "Tax_Legal_": "PILE STRAEDE 1B CROWN PRINCE QUARTER", "Name": "BENJAMIN, FIDELIS & OTHERS", "Address": "PO Box 2721", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9400, "Improved_V": 40800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.857383073599998, "SHAPE_Area": 151.05874366800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358261.715400002896786, 257035.660399999469519 ], [ 358260.961300000548363, 257029.532499998807907 ], [ 358248.053099997341633, 257030.271299999207258 ], [ 358249.564999997615814, 257042.104899998754263 ], [ 358261.666900001466274, 257041.359499998390675 ], [ 358261.715400002896786, 257035.660399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302132000", "MAP": null, "PARCEL_NAM": "76", "ACRE": null, "LONGITUDE": -64.94087494, "LATITUDE": 18.3427587, "OBJECTID_1": 9891, "PARCEL_NO_": "105302132000", "Tax_Legal_": "ANNAS FANCY 76 KRONP QTR", "Name": "SIMMONDS, JOSEPH A", "Address": "PO Box 301711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21400, "Improved_V": 87700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.585624107300006, "SHAPE_Area": 329.01119263300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357740.968800000846386, 257015.988499999046326 ], [ 357737.594300001859665, 257033.481699999421835 ], [ 357755.297200001776218, 257037.848400000482798 ], [ 357758.677100002765656, 257019.721999999135733 ], [ 357740.968800000846386, 257015.988499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302271500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9362446, "LATITUDE": 18.34280245, "OBJECTID_1": 10425, "PARCEL_NO_": "105302271500", "Tax_Legal_": "PILE STRAEDE 14 CROWN PRINCE QUARTER", "Name": "RICHARDSON, WILLIAM", "Address": "PO BOX 502783", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.804485362299999, "SHAPE_Area": 124.591755089 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358243.217000000178814, 257030.020599998533726 ], [ 358231.113300003111362, 257030.977000001817942 ], [ 358231.83330000191927, 257041.11540000140667 ], [ 358243.935199998319149, 257040.370000001043081 ], [ 358243.217000000178814, 257030.020599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302401400", "MAP": null, "PARCEL_NAM": "CRYSTAL GADE 13A", "ACRE": null, "LONGITUDE": -64.93329022, "LATITUDE": 18.34265968, "OBJECTID_1": 10698, "PARCEL_NO_": "105302401400", "Tax_Legal_": "CRYSTAL GADE 13A QUEENS QUARTER", "Name": "STEVEN NOEL & KAREN TEDA JAMRON REVOC FAMILY TRUST", "Address": "PO Box 304665", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35700, "Improved_V": 105400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.98041428099999, "SHAPE_Area": 568.71320079300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358558.340999998152256, 257039.762099999934435 ], [ 358557.916199997067451, 257004.731899999082088 ], [ 358542.5962999984622, 257004.606499999761581 ], [ 358540.771700002253056, 257040.064500000327826 ], [ 358541.996699996292591, 257038.813999999314547 ], [ 358558.340999998152256, 257039.762099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302211200", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 8A", "ACRE": null, "LONGITUDE": -64.93747014, "LATITUDE": 18.34275441, "OBJECTID_1": 10197, "PARCEL_NO_": "105302211200", "Tax_Legal_": "GAMLE NORDSIDEVEJ 8A CROWN PRINCE QUARTER", "Name": "CASAVA COURT, INC.", "Address": "BOX 4283", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104900, "Improved_V": 430700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.00925979599999, "SHAPE_Area": 653.76540187800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358086.698899999260902, 257039.716400001198053 ], [ 358110.089100003242493, 257039.063499998301268 ], [ 358123.799999997019768, 257038.753499999642372 ], [ 358123.182499997317791, 257016.583599999547005 ], [ 358098.163500003516674, 257019.123100001364946 ], [ 358086.698899999260902, 257039.716400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302401300", "MAP": null, "PARCEL_NAM": "CRYSTAL GADE 12", "ACRE": null, "LONGITUDE": -64.93345211, "LATITUDE": 18.34266286, "OBJECTID_1": 10697, "PARCEL_NO_": "105302401300", "Tax_Legal_": "12 CRYSTAL GADE QUEENS QUARTER", "Name": "RYAN W GREENE REVOCABLE LIVING TRUST", "Address": "PO Box 1197", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 89000, "Improved_V": 76000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.173422988, "SHAPE_Area": 622.54771085799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358522.230599999427795, 257039.391399998217821 ], [ 358540.771700002253056, 257040.064500000327826 ], [ 358542.5962999984622, 257004.606499999761581 ], [ 358528.888999998569489, 257004.494300000369549 ], [ 358524.812399998307228, 257009.738299999386072 ], [ 358522.230599999427795, 257039.391399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302140600", "MAP": null, "PARCEL_NAM": "71", "ACRE": null, "LONGITUDE": -64.94008415, "LATITUDE": 18.34268328, "OBJECTID_1": 9903, "PARCEL_NO_": "105302140600", "Tax_Legal_": "ANNAS FANCY 71 CROWN PRINCE QUARTER", "Name": "Arely Pablo,Daniela Zapata & Mercedes Zapata Crump", "Address": "73B Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.07039289399999, "SHAPE_Area": 519.55822129199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357845.785899996757507, 257017.2685999982059 ], [ 357832.929799996316433, 257011.885999999940395 ], [ 357816.888099998235703, 257001.833299998193979 ], [ 357816.717200003564358, 257021.885800000280142 ], [ 357821.556900002062321, 257021.714299999177456 ], [ 357846.433899998664856, 257035.850099999457598 ], [ 357847.393100000917912, 257017.91499999910593 ], [ 357845.785899996757507, 257017.2685999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302131900", "MAP": null, "PARCEL_NAM": "77", "ACRE": null, "LONGITUDE": -64.94104784, "LATITUDE": 18.34272582, "OBJECTID_1": 9890, "PARCEL_NO_": "105302131900", "Tax_Legal_": "77 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "ERMA A. & DONALD A. GEORGE REVOCABLE LIVING", "Address": "P O BOX 3251", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23200, "Improved_V": 88600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.346939200199998, "SHAPE_Area": 345.26641810299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357722.456000000238419, 257012.037300001829863 ], [ 357719.072499997913837, 257030.585900001227856 ], [ 357737.594300001859665, 257033.481699999421835 ], [ 357740.968800000846386, 257015.988499999046326 ], [ 357722.456000000238419, 257012.037300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302273700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93595095000001, "LATITUDE": 18.34277277, "OBJECTID_1": 10446, "PARCEL_NO_": "105302273700", "Tax_Legal_": "REGNA GADE 2 CROWN PRINCE QTR", "Name": "MINOQUE, SEAMUS, ELLIS & LIAM", "Address": "PO Box 821", "City": "Manchester", "State": "Maryland", "Zip": 21102, "Country": "United States", "Land_Value": 5200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.629445628900001, "SHAPE_Area": 102.80515507600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358275.411899998784065, 257037.039099998772144 ], [ 358274.681199997663498, 257028.167199999094009 ], [ 358260.961300000548363, 257029.532499998807907 ], [ 358261.715400002896786, 257035.660399999469519 ], [ 358275.411899998784065, 257037.039099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302271900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93580086, "LATITUDE": 18.34274518, "OBJECTID_1": 10429, "PARCEL_NO_": "105302271900", "Tax_Legal_": "1B GENERAL GADE KRONDPRINDSENS QTR", "Name": "GEORGE, EDWARD", "Address": "12 Warren Ave", "City": "Milton", "State": "Massachusetts", "Zip": 2186, "Country": "United States", "Land_Value": 6900, "Improved_V": 39600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.083267733500001, "SHAPE_Area": 169.00836370299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358294.043399997055531, 257027.059099998325109 ], [ 358293.818400003015995, 257024.635800000280142 ], [ 358274.69990000128746, 257025.967799998819828 ], [ 358274.681199997663498, 257028.167199999094009 ], [ 358275.229800000786781, 257034.828899998217821 ], [ 358294.63740000128746, 257033.151200000196695 ], [ 358294.043399997055531, 257027.059099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302312500", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 48", "ACRE": "1,540 sq ft", "LONGITUDE": -64.93456267000001, "LATITUDE": 18.34273535, "OBJECTID_1": 10540, "PARCEL_NO_": "105302312500", "Tax_Legal_": "48 VESTER GADE QUEENS QUARTER", "Name": "FRAZER, BLANCH THERESITA", "Address": "4215 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021772, "Country": "United States", "Land_Value": 8100, "Improved_V": 31400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.170551849500001, "SHAPE_Area": 145.075509676 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358405.877599999308586, 257029.510499998927116 ], [ 358418.379699997603893, 257037.011799998581409 ], [ 358421.388700000941753, 257034.223000001162291 ], [ 358424.19370000064373, 257031.575199998915195 ], [ 358424.797499999403954, 257031.005199998617172 ], [ 358425.568199999630451, 257030.277699999511242 ], [ 358411.398199997842312, 257022.084100000560284 ], [ 358411.005699999630451, 257022.150800000876188 ], [ 358410.339800000190735, 257023.166299998760223 ], [ 358409.846100002527237, 257023.919300001114607 ], [ 358409.67119999974966, 257024.17960000038147 ], [ 358407.705799996852875, 257027.104699999094009 ], [ 358406.459399998188019, 257028.734700001776218 ], [ 358405.877599999308586, 257029.510499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302151500", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 4", "ACRE": null, "LONGITUDE": -64.9391031, "LATITUDE": 18.34272444, "OBJECTID_1": 9972, "PARCEL_NO_": "105302151500", "Tax_Legal_": "TEMPLE STREET 4 CROWN PRINCE QUARTER", "Name": "CHARLES MALONE", "Address": "6543 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10500, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.110376101600004, "SHAPE_Area": 199.14372263300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357928.826999999582767, 257019.003699999302626 ], [ 357926.292999997735023, 257032.493000000715256 ], [ 357944.876000002026558, 257028.212099999189377 ], [ 357942.552299998700619, 257017.005100000649691 ], [ 357928.826999999582767, 257019.003699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302371000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93361175, "LATITUDE": 18.34268282, "OBJECTID_1": 10635, "PARCEL_NO_": "105302371000", "Tax_Legal_": "BJERGE GADE 2F QUEENS QUARTER", "Name": "AIMERY PIERRE CARON REVOCABLE TRUST", "Address": "PO Box 303688", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.029242078099998, "SHAPE_Area": 128.25200275200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358519.924199998378754, 257015.608899999409914 ], [ 358510.230499997735023, 257017.640500001609325 ], [ 358515.709200002253056, 257037.105999998748302 ], [ 358518.961499996483326, 257033.9662000015378 ], [ 358519.924199998378754, 257015.608899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302272900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93654857, "LATITUDE": 18.3427582, "OBJECTID_1": 10439, "PARCEL_NO_": "105302272900", "Tax_Legal_": "GAMLE GADE 14C CROWN PRINCE QUARTER", "Name": "FORBES, OMA,FREDERICK,GLENVILLE,STEWART,DEXTER & CLINTON", "Address": "PO Box 6171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17800, "Improved_V": 30700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.411073877999996, "SHAPE_Area": 370.127875582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358214.168200001120567, 257032.315999999642372 ], [ 358212.67059999704361, 257018.793699998408556 ], [ 358210.249899998307228, 257018.984999999403954 ], [ 358195.721900001168251, 257020.554800000041723 ], [ 358196.47240000218153, 257027.104899998754263 ], [ 358197.222999997437, 257033.654899999499321 ], [ 358198.151600003242493, 257041.72690000012517 ], [ 358214.918799996376038, 257040.952599998563528 ], [ 358214.168200001120567, 257032.315999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302150900", "MAP": null, "PARCEL_NAM": "HODGES STREET 7 .", "ACRE": null, "LONGITUDE": -64.93961113, "LATITUDE": 18.34272758, "OBJECTID_1": 9966, "PARCEL_NO_": "105302150900", "Tax_Legal_": "HODGES STREET 7 CROWN PRINCE QTR.", "Name": "HENLEY, JUDITH", "Address": "PO BOX 3253", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7700, "Improved_V": 47900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.829005029900003, "SHAPE_Area": 194.54679912399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357892.542999997735023, 257018.706700000911951 ], [ 357873.186099998652935, 257019.181600000709295 ], [ 357873.092600002884865, 257030.157699998468161 ], [ 357887.602600000798702, 257030.698600001633167 ], [ 357892.542999997735023, 257018.706700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302165200", "MAP": null, "PARCEL_NAM": "TEMPLE STREET 3", "ACRE": null, "LONGITUDE": -64.93895006, "LATITUDE": 18.34271005, "OBJECTID_1": 10043, "PARCEL_NO_": "105302165200", "Tax_Legal_": "3 TEMPLE STREET CROWN PRINCE QTR", "Name": "YVONNE BLYDEN MOOLENAAR & OTHERS", "Address": "7166 Nadir Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8100, "Improved_V": 32700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.3532082587, "SHAPE_Area": 155.14471101800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357947.26969999819994, 257031.186999998986721 ], [ 357956.963500000536442, 257029.1554000005126 ], [ 357957.883100003004074, 257015.864000000059605 ], [ 357944.969499997794628, 257017.236000001430511 ], [ 357947.26969999819994, 257031.186999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301111900", "MAP": null, "PARCEL_NAM": "200-3U REMAINDER", "ACRE": null, "LONGITUDE": -64.94603944000001, "LATITUDE": 18.34256229, "OBJECTID_1": 9411, "PARCEL_NO_": "105301111900", "Tax_Legal_": "ALTONA&WELGUNST 200-3U REMAINDER KRONPRINDSEN QUARTER", "Name": "GUMBS, WILBERT & ANN", "Address": "200-3M Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.30350402600001, "SHAPE_Area": 1092.98569742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357219.405100002884865, 256997.576499998569489 ], [ 357221.154399998486042, 256981.547699999064207 ], [ 357189.733400002121925, 256978.335200000554323 ], [ 357187.754000000655651, 257021.382100000977516 ], [ 357216.754199996590614, 257024.785900000482798 ], [ 357217.679200001060963, 257010.861299999058247 ], [ 357202.357500001788139, 257010.947000000625849 ], [ 357202.468999996781349, 256997.860100001096725 ], [ 357219.405100002884865, 256997.576499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302272800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93640702, "LATITUDE": 18.34267096, "OBJECTID_1": 10438, "PARCEL_NO_": "105302272800", "Tax_Legal_": "GAMLE GADE 14A CROWN PRINCE QUARTER", "Name": "KAI M. MULLEY REVOCABLE TRUST", "Address": "PO Box 6671", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24800, "Improved_V": 43500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.710054439000004, "SHAPE_Area": 342.542109702 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358211.946999996900558, 257009.077500000596046 ], [ 358212.67059999704361, 257018.793699998408556 ], [ 358214.168200001120567, 257032.315999999642372 ], [ 358231.113300003111362, 257030.977000001817942 ], [ 358230.355499997735023, 257025.271299999207258 ], [ 358229.592399999499321, 257020.198800001293421 ], [ 358225.557199999690056, 257020.587900001555681 ], [ 358224.85700000077486, 257008.127700001001358 ], [ 358211.946999996900558, 257009.077500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302165300", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 13", "ACRE": null, "LONGITUDE": -64.93879379000001, "LATITUDE": 18.34269901, "OBJECTID_1": 10044, "PARCEL_NO_": "105302165300", "Tax_Legal_": "NY NORDSIDEVEJ 13 CROWN PRINCE QUARTER", "Name": "JAMES W. & LILLIAN WILLIAMS", "Address": "2613 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11500, "Improved_V": 22200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.023603279499994, "SHAPE_Area": 241.439091555 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357957.883100003004074, 257015.864000000059605 ], [ 357956.963500000536442, 257029.1554000005126 ], [ 357981.192400000989437, 257024.709600001573563 ], [ 357982.05629999935627, 257017.96169999986887 ], [ 357957.883100003004074, 257015.864000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302271600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93625206, "LATITUDE": 18.34272997, "OBJECTID_1": 10426, "PARCEL_NO_": "105302271600", "Tax_Legal_": "PILE STRAEDE 15A CROWN PRINCE QUARTER", "Name": "JOSEPH, FREDERICK-LIFE INTEREST", "Address": "PO BOX 307048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15400, "Improved_V": 177000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.023801598200002, "SHAPE_Area": 71.146646728799993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358242.461000002920628, 257024.103799998760223 ], [ 358230.355499997735023, 257025.271299999207258 ], [ 358231.113300003111362, 257030.977000001817942 ], [ 358243.217000000178814, 257030.020599998533726 ], [ 358242.461000002920628, 257024.103799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302271700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93608812, "LATITUDE": 18.34271493, "OBJECTID_1": 10427, "PARCEL_NO_": "105302271700", "Tax_Legal_": "PILE STRAEDE 1A KRONPRINDSENS QTR.", "Name": "VAZQUEZ (LIFE ESTATE), WILLIAM", "Address": "40605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5300, "Improved_V": 51000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.368741572600001, "SHAPE_Area": 99.571473600700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358260.961300000548363, 257029.532499998807907 ], [ 358260.221500001847744, 257021.715999998152256 ], [ 358256.186300002038479, 257022.105200000107288 ], [ 358247.311499997973442, 257022.665800001472235 ], [ 358248.053099997341633, 257030.271299999207258 ], [ 358260.961300000548363, 257029.532499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302211500", "MAP": null, "PARCEL_NAM": "8", "ACRE": ".03", "LONGITUDE": -64.93692218, "LATITUDE": 18.34270842, "OBJECTID_1": 10200, "PARCEL_NO_": "105302211500", "Tax_Legal_": "8 BORGER GADE CROWN PRINCE QUARTER", "Name": "PERKINS ENTERPRISES LLC", "Address": "PO Box 298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7400, "Improved_V": 67400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.545451067000002, "SHAPE_Area": 140.33622978899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358177.98480000346899, 257020.198600001633167 ], [ 358152.958499997854233, 257023.582299999892712 ], [ 358153.719899997115135, 257028.865899998694658 ], [ 358170.670400001108646, 257026.893699999898672 ], [ 358178.742600001394749, 257025.90430000051856 ], [ 358177.98480000346899, 257020.198600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302271800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9359616, "LATITUDE": 18.34270515, "OBJECTID_1": 10428, "PARCEL_NO_": "105302271800", "Tax_Legal_": "REGNE GADE 1 CROWN PRINCE", "Name": "GEORGE, JOSE L. , R O. & K. A", "Address": "PO Box 9227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.355732272399997, "SHAPE_Area": 105.69896595500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358274.681199997663498, 257028.167199999094009 ], [ 358274.742299996316433, 257020.990499999374151 ], [ 358265.061099998652935, 257021.54450000077486 ], [ 358260.221500001847744, 257021.715999998152256 ], [ 358260.961300000548363, 257029.532499998807907 ], [ 358274.681199997663498, 257028.167199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302140500", "MAP": null, "PARCEL_NAM": "68", "ACRE": null, "LONGITUDE": -64.94036656, "LATITUDE": 18.34266125, "OBJECTID_1": 9902, "PARCEL_NO_": "105302140500", "Tax_Legal_": "ANNAS FANCY 68 CROWN PRINCE QUARTER", "Name": "HENLEY, JAMES E", "Address": "68 ANNAS FANCY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43000, "Improved_V": 85800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.47983213400001, "SHAPE_Area": 386.794694746 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357816.888099998235703, 257001.833299998193979 ], [ 357808.724299997091293, 257013.587799999862909 ], [ 357787.805100001394749, 257008.139199998229742 ], [ 357787.68639999628067, 257022.07039999961853 ], [ 357789.281000003218651, 257024.194400001317263 ], [ 357793.303599998354912, 257025.282800000160933 ], [ 357804.61540000140667, 257022.631099998950958 ], [ 357816.717200003564358, 257021.885800000280142 ], [ 357816.888099998235703, 257001.833299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302273100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93668762, "LATITUDE": 18.34272626, "OBJECTID_1": 10441, "PARCEL_NO_": "105302273100", "Tax_Legal_": "GAMLE GADE 15B CROWN PRINCE QRT", "Name": "CECILIA P SENTHILL HARRIGAN LIVING TRUST", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040582, "Country": "United States", "Land_Value": 2600, "Improved_V": 31000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.382824922600001, "SHAPE_Area": 122.879133052 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358196.47240000218153, 257027.104899998754263 ], [ 358195.721900001168251, 257020.554800000041723 ], [ 358184.417300000786781, 257022.362199999392033 ], [ 358185.173299998044968, 257028.278999999165535 ], [ 358185.712099999189377, 257032.657499998807907 ], [ 358197.000399999320507, 257031.712200000882149 ], [ 358196.47240000218153, 257027.104899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302312600", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 49", "ACRE": "1,012 sq ft", "LONGITUDE": -64.93448143000001, "LATITUDE": 18.34268122, "OBJECTID_1": 10541, "PARCEL_NO_": "105302312600", "Tax_Legal_": "VESTER GADE 49 QUEENS QUARTER", "Name": "LETTSOME, EDWARD", "Address": "49 VESTER GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5300, "Improved_V": 30700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.777788091399998, "SHAPE_Area": 127.898724982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358411.398199997842312, 257022.084100000560284 ], [ 358425.568199999630451, 257030.277699999511242 ], [ 358426.266099996864796, 257029.618900001049042 ], [ 358426.71169999986887, 257029.228100001811981 ], [ 358427.210199996829033, 257028.792599998414516 ], [ 358432.565200001001358, 257023.241399999707937 ], [ 358432.366700001060963, 257021.753199998289347 ], [ 358432.133799999952316, 257019.85249999910593 ], [ 358431.9037000015378, 257018.644299998879433 ], [ 358431.898100003600121, 257018.602400001138449 ], [ 358417.287100002169609, 257021.083999998867512 ], [ 358411.398199997842312, 257022.084100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302272000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93580915, "LATITUDE": 18.34259713, "OBJECTID_1": 10430, "PARCEL_NO_": "105302272000", "Tax_Legal_": "GAMLE GADE 9 CROWN PRINCE QUARTER", "Name": "GEORGE, ALBERT H", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.221097853900005, "SHAPE_Area": 441.65013598399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358293.818400003015995, 257024.635800000280142 ], [ 358291.82769999653101, 257003.187399998307228 ], [ 358291.288999997079372, 256999.945700000971556 ], [ 358274.673100002110004, 257001.427400000393391 ], [ 358274.880800001323223, 257004.737399999052286 ], [ 358274.742299996316433, 257020.990499999374151 ], [ 358274.69990000128746, 257025.967799998819828 ], [ 358293.818400003015995, 257024.635800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302301100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93557524000001, "LATITUDE": 18.34267213, "OBJECTID_1": 10499, "PARCEL_NO_": "105302301100", "Tax_Legal_": "GAMLE GADE 8B CROWN PRINCE QTR", "Name": "BUSSUE, LYDIA", "Address": "PO Box 10125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9200, "Improved_V": 95800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.494070530599998, "SHAPE_Area": 215.653116039 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358316.729900002479553, 257014.368000000715256 ], [ 358298.969400003552437, 257016.755800001323223 ], [ 358300.483199998736382, 257028.378299999982119 ], [ 358316.612999998033047, 257028.088199999183416 ], [ 358316.729900002479553, 257014.368000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302301300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93543263, "LATITUDE": 18.34266565, "OBJECTID_1": 10501, "PARCEL_NO_": "105302301300", "Tax_Legal_": "GAMLE GADE 7 B CROWN PRINCE QTR", "Name": "GIMENEZ, JOHN & NORMA", "Address": "PO Box 323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38300, "Improved_V": 132600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.441343912900003, "SHAPE_Area": 185.186219749 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358330.323899999260902, 257027.778200000524521 ], [ 358330.437200002372265, 257014.480200000107288 ], [ 358323.180399999022484, 257014.420800000429153 ], [ 358316.729900002479553, 257014.368000000715256 ], [ 358316.612999998033047, 257028.088199999183416 ], [ 358330.323899999260902, 257027.778200000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302301600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93528027000001, "LATITUDE": 18.34260884, "OBJECTID_1": 10504, "PARCEL_NO_": "105302301600", "Tax_Legal_": "GAMLE GADE 6BA CROWN PRINCE QTR", "Name": "CHRISTIAN UNITY, INC.", "Address": "A.RAWLINS BOX 11307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75800, "Improved_V": 319700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.733779451, "SHAPE_Area": 489.68633692899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358331.380199998617172, 256998.44480000063777 ], [ 358330.437200002372265, 257014.480200000107288 ], [ 358330.323899999260902, 257027.778200000524521 ], [ 358353.714199997484684, 257027.125300001353025 ], [ 358353.004900000989437, 257015.720400001853704 ], [ 358344.128300003707409, 257016.49210000038147 ], [ 358342.679300002753735, 256997.270799998193979 ], [ 358331.380199998617172, 256998.44480000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401380400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93205059, "LATITUDE": 18.3426854, "OBJECTID_1": 12046, "PARCEL_NO_": "105401380400", "Tax_Legal_": "CRYSTAL GADE 5 QUEENS QUARTER", "Name": "SAINT THOMAS REFORMED CHURCH", "Address": "PO Box 301769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10100, "Improved_V": 26200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.4495504631, "SHAPE_Area": 60.934391720500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358678.733599998056889, 257020.91950000077486 ], [ 358676.239100001752377, 257029.765000000596046 ], [ 358684.295100003480911, 257030.675299998372793 ], [ 358685.162500001490116, 257023.505199998617172 ], [ 358678.733599998056889, 257020.91950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301120900", "MAP": null, "PARCEL_NAM": "200-5A-6", "ACRE": null, "LONGITUDE": -64.94647422, "LATITUDE": 18.34246362, "OBJECTID_1": 9435, "PARCEL_NO_": "105301120900", "Tax_Legal_": "ALTONA & WELGUNST 200-5A-6 CROWN PRINCE QTR", "Name": "CONNOR, KARYL C. & GRETCHEN M. CONCEPSION", "Address": "PO Box 883", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 150800, "Improved_V": 48600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.72737055499999, "SHAPE_Area": 2315.5856773599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357180.968299999833107, 256966.020100001245737 ], [ 357139.89130000025034, 256960.406500000506639 ], [ 357139.025600001215935, 256967.365499999374151 ], [ 357132.375500001013279, 256990.742499999701977 ], [ 357128.984899997711182, 257010.135299999266863 ], [ 357178.110600002110004, 257017.503499999642372 ], [ 357178.250799998641014, 257001.03940000012517 ], [ 357180.968299999833107, 256966.020100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302301800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93510445, "LATITUDE": 18.34263657, "OBJECTID_1": 10506, "PARCEL_NO_": "105302301800", "Tax_Legal_": "GAMLE GADE 5B CROWN PRINCE QTR", "Name": "FRANCOIS, PEDRIT0-TRUSTEE", "Address": "212 Guthrie Ave", "City": "Alexandria", "State": "Virginia", "Zip": 223051817, "Country": "United States", "Land_Value": 19900, "Improved_V": 116400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.339372938899999, "SHAPE_Area": 177.0770573 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358353.124499998986721, 257009.108300000429153 ], [ 358353.004900000989437, 257015.720400001853704 ], [ 358353.714199997484684, 257027.125300001353025 ], [ 358364.199799999594688, 257026.788899999111891 ], [ 358362.695100001990795, 257014.111000001430511 ], [ 358362.098600000143051, 257009.078999999910593 ], [ 358353.124499998986721, 257009.108300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401380300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93214491000001, "LATITUDE": 18.34266123, "OBJECTID_1": 12045, "PARCEL_NO_": "105401380300", "Tax_Legal_": "CRYSTAL GADE 6 QUEENS QUARTER", "Name": "SAINT THOMAS REFORMED CHURCH", "Address": "PO Box 301769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9300, "Improved_V": 135600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.064588413400003, "SHAPE_Area": 136.166128356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358678.733599998056889, 257020.91950000077486 ], [ 358666.67849999666214, 257016.176699999719858 ], [ 358663.356100000441074, 257027.548599999397993 ], [ 358676.239100001752377, 257029.765000000596046 ], [ 358678.733599998056889, 257020.91950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302272500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93625995, "LATITUDE": 18.34268108, "OBJECTID_1": 10435, "PARCEL_NO_": "105302272500", "Tax_Legal_": "PILE STRAEDE 15B CROWN PRINCE QUARTER", "Name": "CALLWOOD, HORACE & OTHERS", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14800, "Improved_V": 119400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.583702655499998, "SHAPE_Area": 61.785624520799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358241.697899997234344, 257019.031300000846386 ], [ 358234.433899998664856, 257019.816199999302626 ], [ 358229.592399999499321, 257020.198800001293421 ], [ 358230.355499997735023, 257025.271299999207258 ], [ 358242.461000002920628, 257024.103799998760223 ], [ 358241.697899997234344, 257019.031300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302302600", "MAP": null, "PARCEL_NAM": "2B GAMLE GADE", "ACRE": "794.00 sq ft", "LONGITUDE": -64.9347374, "LATITUDE": 18.34265439, "OBJECTID_1": 10513, "PARCEL_NO_": "105302302600", "Tax_Legal_": "GAMLE GADE 2B CROWN PRINCE QTR", "Name": "WEEKS, JOHN & AUDREY", "Address": "GAMLE GADE#30", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.006569569100002, "SHAPE_Area": 155.31463267800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358407.8378000035882, 257015.747000001370907 ], [ 358394.128700003027916, 257015.845899999141693 ], [ 358389.290799997746944, 257015.80629999935627 ], [ 358389.20269999653101, 257026.14919999986887 ], [ 358401.300999999046326, 257025.8260000012815 ], [ 358407.8378000035882, 257015.747000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401380200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93228033, "LATITUDE": 18.34262723, "OBJECTID_1": 12044, "PARCEL_NO_": "105401380200", "Tax_Legal_": "7B CRYSTAL GADE QUEENS QTR", "Name": "SELL, LANE and NATHAN", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9200, "Improved_V": 82900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.746985239799997, "SHAPE_Area": 218.20532351899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358657.029700003564358, 257012.931400001049042 ], [ 358650.598999999463558, 257010.556699998676777 ], [ 358647.253300003707409, 257024.672600001096725 ], [ 358663.356100000441074, 257027.548599999397993 ], [ 358666.67849999666214, 257016.176699999719858 ], [ 358657.029700003564358, 257012.931400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302211600", "MAP": null, "PARCEL_NAM": "BORGER GADE 9", "ACRE": null, "LONGITUDE": -64.93693305, "LATITUDE": 18.34264107, "OBJECTID_1": 10201, "PARCEL_NO_": "105302211600", "Tax_Legal_": "BORGER GADE 9 CROWN PRINCE QTR", "Name": "DEWINDT, ETHLYN", "Address": "3984 Emerald North Dr", "City": "Decatur", "State": "Georgia", "Zip": 30035, "Country": "United States", "Land_Value": 39100, "Improved_V": 138600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.467367979499997, "SHAPE_Area": 239.99282530799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358152.236699998378754, 257013.655000001192093 ], [ 358152.958499997854233, 257023.582299999892712 ], [ 358177.98480000346899, 257020.198600001633167 ], [ 358177.255800001323223, 257011.115600001066923 ], [ 358152.236699998378754, 257013.655000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302151700", "MAP": "C3-39-T44", "PARCEL_NAM": "HASSLE HARVE 2A", "ACRE": null, "LONGITUDE": -64.93964593, "LATITUDE": 18.34238305, "OBJECTID_1": 9973, "PARCEL_NO_": "105302151700", "Tax_Legal_": "HASSLE HARVE 1,2A,2B,3&4 CROWN PRINCE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 177000, "Improved_V": 1820200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.165304781, "SHAPE_Area": 3268.4894661899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357903.274999998509884, 256989.452599998563528 ], [ 357903.402699999511242, 256974.465999998152256 ], [ 357904.387000001966953, 256953.575800001621246 ], [ 357856.818199999630451, 256952.764199998229742 ], [ 357855.193000003695488, 256954.22859999909997 ], [ 357852.223800003528595, 257018.798900000751019 ], [ 357857.054499998688698, 257019.682799998670816 ], [ 357873.186099998652935, 257019.181600000709295 ], [ 357892.542999997735023, 257018.706700000911951 ], [ 357903.037600003182888, 257017.315000001341105 ], [ 357903.064599998295307, 257014.148800000548363 ], [ 357903.274999998509884, 256989.452599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302273200", "MAP": "D9-8944-T014", "PARCEL_NAM": "15A", "ACRE": ".02", "LONGITUDE": -64.93670314000001, "LATITUDE": 18.34263053, "OBJECTID_1": 10442, "PARCEL_NO_": "105302273200", "Tax_Legal_": "GAMLE GADE 15A CROWN PRINCE QUARTER", "Name": "CECILIA P SENTHILL HARRIGAN LIVING TRUST", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040582, "Country": "United States", "Land_Value": 9700, "Improved_V": 17000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.139522613499999, "SHAPE_Area": 121.52868234 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358184.417300000786781, 257022.362199999392033 ], [ 358195.721900001168251, 257020.554800000041723 ], [ 358194.195600003004074, 257010.409800000488758 ], [ 358182.898199997842312, 257011.372900001704693 ], [ 358184.417300000786781, 257022.362199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302272400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93611965, "LATITUDE": 18.34259726, "OBJECTID_1": 10434, "PARCEL_NO_": "105302272400", "Tax_Legal_": "GAMLE GADE 12 CROWN PRINCE QUARTER", "Name": "DUNLOP, L B & OTHERS", "Address": "140 Debs Pl", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 8400, "Improved_V": 55400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.356575835599998, "SHAPE_Area": 167.87446122899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358254.805799998342991, 257003.498599998652935 ], [ 358245.780500002205372, 257003.967399999499321 ], [ 358245.835500001907349, 257006.610599998384714 ], [ 358247.311499997973442, 257022.665800001472235 ], [ 358256.186300002038479, 257022.105200000107288 ], [ 358255.448299996554852, 257014.077599998563528 ], [ 358254.805799998342991, 257003.498599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302312700", "MAP": "D9-6032-T96", "PARCEL_NAM": "VESTER GADE 50", "ACRE": "1,420 sq ft", "LONGITUDE": -64.9345011, "LATITUDE": 18.34261483, "OBJECTID_1": 10542, "PARCEL_NO_": "105302312700", "Tax_Legal_": "VESTER GADE 50 QUEENS QUARTER", "Name": "ROBLES, CLEVIA", "Address": "2050 Vester Gade 50", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 109600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.217511231300001, "SHAPE_Area": 148.31147141100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358411.145300000905991, 257021.937899999320507 ], [ 358411.398199997842312, 257022.084100000560284 ], [ 358417.287100002169609, 257021.083999998867512 ], [ 358419.554499998688698, 257020.698899999260902 ], [ 358431.898100003600121, 257018.602400001138449 ], [ 358430.970100000500679, 257011.640799999237061 ], [ 358419.329899996519089, 257012.014199998229742 ], [ 358415.701399996876717, 257012.13060000166297 ], [ 358413.186099998652935, 257017.890099998563528 ], [ 358412.726099997758865, 257018.943300001323223 ], [ 358411.9628000035882, 257020.691300000995398 ], [ 358411.145300000905991, 257021.937899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302272200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93603115000001, "LATITUDE": 18.3426396, "OBJECTID_1": 10432, "PARCEL_NO_": "105302272200", "Tax_Legal_": "GAMLE GADE 11A CROWN PRINCE QUARTER", "Name": "MARTIN, ANGELA HUTTON", "Address": "PO Box 302083", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.912052605500001, "SHAPE_Area": 71.061746678800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358265.061099998652935, 257021.54450000077486 ], [ 358264.32320000231266, 257013.5168999992311 ], [ 358255.448299996554852, 257014.077599998563528 ], [ 358256.186300002038479, 257022.105200000107288 ], [ 358260.221500001847744, 257021.715999998152256 ], [ 358265.061099998652935, 257021.54450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401380100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93242568, "LATITUDE": 18.34259478, "OBJECTID_1": 12043, "PARCEL_NO_": "105401380100", "Tax_Legal_": "7A CRYSTAL GADE QUEENS QUARTER", "Name": "MOOREHEAD FAMILY LLC", "Address": "Po Box 182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37700, "Improved_V": 164900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.797591308400001, "SHAPE_Area": 230.71681393899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358647.253300003707409, 257024.672600001096725 ], [ 358650.598999999463558, 257010.556699998676777 ], [ 358636.117700003087521, 257006.6385000012815 ], [ 358631.956699997186661, 257021.803199999034405 ], [ 358647.253300003707409, 257024.672600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302272100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93594375000001, "LATITUDE": 18.34258201, "OBJECTID_1": 10431, "PARCEL_NO_": "105302272100", "Tax_Legal_": "GAMLE GADE 1O CROWN PRINCE QUARTER", "Name": "GEORGE, JOSE L. , R O. & K. A", "Address": "PO Box 9227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.177215253299998, "SHAPE_Area": 202.44668711700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358274.673100002110004, 257001.427400000393391 ], [ 358263.446099996566772, 257003.049800001084805 ], [ 358263.585199996829033, 257005.48930000141263 ], [ 358264.32320000231266, 257013.5168999992311 ], [ 358265.061099998652935, 257021.54450000077486 ], [ 358274.742299996316433, 257020.990499999374151 ], [ 358274.880800001323223, 257004.737399999052286 ], [ 358274.673100002110004, 257001.427400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302273300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93657912, "LATITUDE": 18.34261669, "OBJECTID_1": 10443, "PARCEL_NO_": "105302273300", "Tax_Legal_": "GAMLE GADE 14B CROWN PRINCE QUARTER", "Name": "GUMBS, MARGARET B", "Address": "PO Box 305453", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.987945888399999, "SHAPE_Area": 149.78216028099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358210.249899998307228, 257018.984999999403954 ], [ 358209.526299998164177, 257009.268800001591444 ], [ 358194.195600003004074, 257010.409800000488758 ], [ 358195.721900001168251, 257020.554800000041723 ], [ 358210.249899998307228, 257018.984999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302272700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93632291, "LATITUDE": 18.34260877, "OBJECTID_1": 10437, "PARCEL_NO_": "105302272700", "Tax_Legal_": "GAMLE GADE 13B CROWN PRINCE QUARTER", "Name": "SHEPPARD, ROSEMARY", "Address": "PO BOX 303567", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7200, "Improved_V": 21400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.827062991699997, "SHAPE_Area": 105.273739558 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358234.433899998664856, 257019.816199999302626 ], [ 358232.925499998033047, 257007.560400001704693 ], [ 358224.85700000077486, 257008.127700001001358 ], [ 358225.557199999690056, 257020.587900001555681 ], [ 358229.592399999499321, 257020.198800001293421 ], [ 358234.433899998664856, 257019.816199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302140700", "MAP": null, "PARCEL_NAM": "70", "ACRE": null, "LONGITUDE": -64.94009451, "LATITUDE": 18.34252842, "OBJECTID_1": 9906, "PARCEL_NO_": "105302140700", "Tax_Legal_": "ANNAS FANCY 7O CROWN PRINCE QUARTER", "Name": "RICHARDS, Z.F. & BEATTY, A.P.G. & GRANT,C.L.", "Address": "37-18 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 46000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.857124306499998, "SHAPE_Area": 437.09237912200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357821.06530000269413, 256984.768899999558926 ], [ 357816.888099998235703, 257001.833299998193979 ], [ 357832.929799996316433, 257011.885999999940395 ], [ 357845.785899996757507, 257017.2685999982059 ], [ 357845.866800002753735, 257007.769999999552965 ], [ 357827.478000000119209, 256989.254399999976158 ], [ 357821.06530000269413, 256984.768899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302272600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93624687000001, "LATITUDE": 18.34260036, "OBJECTID_1": 10436, "PARCEL_NO_": "105302272600", "Tax_Legal_": "GAMLE GADE 13A CROWN PRINCE QUARTER", "Name": "SHEPPARD, ROSEMARY", "Address": "PO BOX 303567", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6400, "Improved_V": 29500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.801631720499998, "SHAPE_Area": 93.869368155700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358232.925499998033047, 257007.560400001704693 ], [ 358234.433899998664856, 257019.816199999302626 ], [ 358241.697899997234344, 257019.031300000846386 ], [ 358240.994000002741814, 257006.993200000375509 ], [ 358232.925499998033047, 257007.560400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302140400", "MAP": null, "PARCEL_NAM": "67", "ACRE": null, "LONGITUDE": -64.94064691, "LATITUDE": 18.34256507, "OBJECTID_1": 9901, "PARCEL_NO_": "105302140400", "Tax_Legal_": "ANNAS FANCY 67 CROWN PRINCE", "Name": "Jose F Tineo Gonzalez & Maria Y Martinez De Tineo", "Address": "8414 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.442479721200002, "SHAPE_Area": 303.82097332000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357781.460699997842312, 256995.632800001651049 ], [ 357765.323600001633167, 256996.767200000584126 ], [ 357762.764399997889996, 257013.211599998176098 ], [ 357776.450199998915195, 257015.856699999421835 ], [ 357779.684399999678135, 257014.8277000002563 ], [ 357779.711400002241135, 257011.66160000115633 ], [ 357781.460699997842312, 256995.632800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302380600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93426005000001, "LATITUDE": 18.34259136, "OBJECTID_1": 10648, "PARCEL_NO_": "105302380600", "Tax_Legal_": "VESTER GADE 6A & 6B QUEENS QTR", "Name": "SCHULTERBRANDT, SHELIA C", "Address": "2006 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6600, "Improved_V": 81200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.602686175499997, "SHAPE_Area": 78.210785620099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358453.828199997544289, 257012.534800000488758 ], [ 358446.612700000405312, 257007.620600000023842 ], [ 358443.346100002527237, 257012.449000000953674 ], [ 358442.512800000607967, 257015.608600001782179 ], [ 358446.499399997293949, 257020.918600000441074 ], [ 358453.828199997544289, 257012.534800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401380700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93211925, "LATITUDE": 18.34255103, "OBJECTID_1": 12049, "PARCEL_NO_": "105401380700", "Tax_Legal_": "TROMPETER GADE 5 QUEENS QUARTER", "Name": "ST. THOMAS REFORMED CHURCH", "Address": "PO Box 301769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.085143739700001, "SHAPE_Area": 414.368647103 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358687.746899999678135, 257004.105700001120567 ], [ 358682.102700002491474, 257004.059599999338388 ], [ 358660.33049999922514, 257004.092500001192093 ], [ 358657.916900001466274, 257003.439399998635054 ], [ 358657.029700003564358, 257012.931400001049042 ], [ 358666.67849999666214, 257016.176699999719858 ], [ 358678.733599998056889, 257020.91950000077486 ], [ 358685.162500001490116, 257023.505199998617172 ], [ 358687.746899999678135, 257004.105700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302151800", "MAP": null, "PARCEL_NAM": "HODGES STREET 3", "ACRE": null, "LONGITUDE": -64.93936946, "LATITUDE": 18.34251057, "OBJECTID_1": 9974, "PARCEL_NO_": "105302151800", "Tax_Legal_": "HODGES STREET 3 CROWN PRINCE QTR", "Name": "DELPHINE, LEONARD", "Address": "146-8B EST. TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10100, "Improved_V": 69200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.537783948400005, "SHAPE_Area": 196.50395765799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357903.064599998295307, 257014.148800000548363 ], [ 357908.699799999594688, 257015.250399999320507 ], [ 357908.7753000035882, 257006.385099999606609 ], [ 357916.154399998486042, 256992.091099999845028 ], [ 357903.274999998509884, 256989.452599998563528 ], [ 357903.064599998295307, 257014.148800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302380200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9340823, "LATITUDE": 18.34258418, "OBJECTID_1": 10644, "PARCEL_NO_": "105302380200", "Tax_Legal_": "9&10 NORRE GADE QUEENS QTR", "Name": "KEAN, ERNEST O", "Address": "P O BOX 2307", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.612711558100003, "SHAPE_Area": 50.7215465779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358461.113799996674061, 257009.216899998486042 ], [ 358468.280699998140335, 257019.830299999564886 ], [ 358471.532899998128414, 257016.690499998629093 ], [ 358463.554300002753735, 257006.70380000025034 ], [ 358461.113799996674061, 257009.216899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302151900", "MAP": null, "PARCEL_NAM": "HODGES STREET 2A", "ACRE": null, "LONGITUDE": -64.9392096, "LATITUDE": 18.34260441, "OBJECTID_1": 9975, "PARCEL_NO_": "105302151900", "Tax_Legal_": "2A HODGES STREET KRONDPRINDSENS QUARTER", "Name": "MORGAN THOMAS, LEE", "Address": "2204 Hodges St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7500, "Improved_V": 22300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.066858333299997, "SHAPE_Area": 158.973045286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357938.585500001907349, 257009.3733000010252 ], [ 357918.449299998581409, 257006.675299998372793 ], [ 357911.9628000035882, 257010.844099998474121 ], [ 357911.122299998998642, 257014.848000001162291 ], [ 357937.743199996650219, 257013.588199999183416 ], [ 357938.585500001907349, 257009.3733000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302390600", "MAP": null, "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.93262779, "LATITUDE": 18.3425728, "OBJECTID_1": 10670, "PARCEL_NO_": "105302390600", "Tax_Legal_": "CRYSTAL GADE 8 QUEENS", "Name": "BRYAN, MARIO E", "Address": "8Crystal Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12800, "Improved_V": 84800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.672161757700003, "SHAPE_Area": 165.18634749899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358623.216700002551079, 257006.532900001853704 ], [ 358606.215800002217293, 257014.415300000458956 ], [ 358625.516999997198582, 257020.483899999409914 ], [ 358628.848300002515316, 257008.056699998676777 ], [ 358623.216700002551079, 257006.532900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302145100", "MAP": null, "PARCEL_NAM": "68A", "ACRE": null, "LONGITUDE": -64.94037622, "LATITUDE": 18.34255929, "OBJECTID_1": 9955, "PARCEL_NO_": "105302145100", "Tax_Legal_": "68A ANNAS FANCY CROWN PRINCE QUARTER", "Name": "INDUSTRIOUS, E & J", "Address": "3286 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20400, "Improved_V": 83400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.0179492412, "SHAPE_Area": 295.73589767800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357787.805100001394749, 257008.139199998229742 ], [ 357808.724299997091293, 257013.587799999862909 ], [ 357816.888099998235703, 257001.833299998193979 ], [ 357788.701300002634525, 256997.591899998486042 ], [ 357787.805100001394749, 257008.139199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302211800", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 7", "ACRE": null, "LONGITUDE": -64.93732331, "LATITUDE": 18.34248359, "OBJECTID_1": 10202, "PARCEL_NO_": "105302211800", "Tax_Legal_": "GAMLE NORDSIDEVEJ 7 CROWN PRINCE QUARTER", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 151900, "Improved_V": 117000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.74402523000001, "SHAPE_Area": 1083.96523303 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358142.577200002968311, 257011.676100000739098 ], [ 358141.225299999117851, 256981.056499999016523 ], [ 358135.573899999260902, 256981.854600001126528 ], [ 358110.542300000786781, 256985.871599998325109 ], [ 358101.437299996614456, 257013.450300000607967 ], [ 358099.803099997341633, 257015.970100000500679 ], [ 358142.577200002968311, 257011.676100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302140300", "MAP": null, "PARCEL_NAM": "63", "ACRE": null, "LONGITUDE": -64.94082117000001, "LATITUDE": 18.34254128, "OBJECTID_1": 9900, "PARCEL_NO_": "105302140300", "Tax_Legal_": "ANNAS FANCY 63 CROWN PRINCE QTR", "Name": "SMITH, BERNICE BARTLEY & RENICE N. TAYLOR", "Address": "3023 Fish Ave", "City": "Bronx", "State": "New York", "Zip": 10469, "Country": "United States", "Land_Value": 20600, "Improved_V": 40400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.920442069700002, "SHAPE_Area": 347.90415249099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357765.323600001633167, 256996.767200000584126 ], [ 357746.01349999755621, 256991.754000000655651 ], [ 357742.638999998569489, 257009.24720000103116 ], [ 357762.764399997889996, 257013.211599998176098 ], [ 357765.323600001633167, 256996.767200000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301151100", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-6", "ACRE": "0.23", "LONGITUDE": -64.94690525, "LATITUDE": 18.34245528, "OBJECTID_1": 9509, "PARCEL_NO_": "105301151100", "Tax_Legal_": "ALTONA & WELGUNST 212A-6 CROWN PRINCE QTR.", "Name": "RICHARDSON, SR , TERENCE & CHRIS", "Address": "PO Box 12065", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43800, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.893180398, "SHAPE_Area": 1089.15905449 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357130.910400003194809, 256973.420800000429153 ], [ 357105.153300002217293, 256967.932700000703335 ], [ 357087.142899997532368, 256999.660399999469519 ], [ 357101.631399996578693, 257002.734299998730421 ], [ 357123.362300001084805, 257007.556200001388788 ], [ 357125.914300002157688, 256991.956199999898672 ], [ 357130.910400003194809, 256973.420800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302301200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93558568, "LATITUDE": 18.34254798, "OBJECTID_1": 10500, "PARCEL_NO_": "105302301200", "Tax_Legal_": "8A GAMLE GADE CROWN PRINCE QTR", "Name": "FRETT, ERNEST", "Address": "PO Box 10398", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38300, "Improved_V": 61900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.2140753061, "SHAPE_Area": 277.77868514400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358298.969400003552437, 257016.755800001323223 ], [ 358316.729900002479553, 257014.368000000715256 ], [ 358316.854000002145767, 256999.803599998354912 ], [ 358297.486299999058247, 257001.544900000095367 ], [ 358298.969400003552437, 257016.755800001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302301700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93520048000001, "LATITUDE": 18.34252153, "OBJECTID_1": 10505, "PARCEL_NO_": "105302301700", "Tax_Legal_": "GAMLE GADE 6A CROWN PRINCE QTR", "Name": "HUNT LEWIS, JACQUELYN", "Address": "PO Box 8906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32100, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.449332282, "SHAPE_Area": 199.04146584700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358353.124499998986721, 257009.108300000429153 ], [ 358351.842500001192093, 256992.733300000429153 ], [ 358342.679300002753735, 256997.270799998193979 ], [ 358344.128300003707409, 257016.49210000038147 ], [ 358353.004900000989437, 257015.720400001853704 ], [ 358353.124499998986721, 257009.108300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302371300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93364685, "LATITUDE": 18.34256167, "OBJECTID_1": 10637, "PARCEL_NO_": "105302371300", "Tax_Legal_": "BJERGE GADE 1 QUEENS QUARTER", "Name": "LIGHTBOURN, HULDA & OTHERS", "Address": "PO Box 334", "City": "Puerto Real", "State": "Puerto Rico", "Zip": 740, "Country": "United States", "Land_Value": 29300, "Improved_V": 46500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.351046832800002, "SHAPE_Area": 160.24976927099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358511.94200000166893, 257006.044399999082088 ], [ 358505.491499997675419, 257005.991599999368191 ], [ 358504.663599997758865, 257008.517900001257658 ], [ 358503.794399999082088, 257015.899099998176098 ], [ 358509.443999998271465, 257015.311999998986721 ], [ 358510.230499997735023, 257017.640500001609325 ], [ 358519.924199998378754, 257015.608899999409914 ], [ 358519.989000000059605, 257008.010099999606609 ], [ 358521.617799997329712, 257006.123599998652935 ], [ 358511.94200000166893, 257006.044399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302371200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93379816, "LATITUDE": 18.34254868, "OBJECTID_1": 10636, "PARCEL_NO_": "105302371200", "Tax_Legal_": "NORRE GADE 3 QUEENS QUARTER", "Name": "TITLEY, MARIA-U. P & OTHERS", "Address": "7058 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14100, "Improved_V": 88700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.324337694299999, "SHAPE_Area": 213.61071660600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358504.663599997758865, 257008.517900001257658 ], [ 358499.904899999499321, 256999.190900001674891 ], [ 358490.981499999761581, 257005.450599998235703 ], [ 358486.104000002145767, 257010.054800000041723 ], [ 358490.076300002634525, 257017.053399998694658 ], [ 358503.794399999082088, 257015.899099998176098 ], [ 358504.663599997758865, 257008.517900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302380300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93399645, "LATITUDE": 18.34250077, "OBJECTID_1": 10645, "PARCEL_NO_": "105302380300", "Tax_Legal_": "NORRE GADE 11A QUEENS QUARTER", "Name": "RAZNS MANAGEMENT LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58500, "Improved_V": 357800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.838757139600006, "SHAPE_Area": 288.16106624299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358487.784999996423721, 257002.046999998390675 ], [ 358478.197400003671646, 256991.624899998307228 ], [ 358469.248800002038479, 257000.839800000190735 ], [ 358463.554300002753735, 257006.70380000025034 ], [ 358471.532899998128414, 257016.690499998629093 ], [ 358487.784999996423721, 257002.046999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302152400", "MAP": "5,952 sq ft", "PARCEL_NAM": "TEMPLE ST 1", "ACRE": null, "LONGITUDE": -64.93892822, "LATITUDE": 18.3424441, "OBJECTID_1": 9980, "PARCEL_NO_": "105302152400", "Tax_Legal_": "TEMPLE STREET 1 CROWN PRINCE QUARTER", "Name": "STEPHENS, V. & B. & OTHERS", "Address": "PO Box 503272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31300, "Improved_V": 42600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.576382469, "SHAPE_Area": 624.14964524699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357966.251900002360344, 256980.046599999070168 ], [ 357950.199400000274181, 256971.260400000959635 ], [ 357942.595499999821186, 257011.9391999989748 ], [ 357959.526299998164177, 257012.288899999111891 ], [ 357962.915100000798702, 256993.107099998742342 ], [ 357966.251900002360344, 256980.046599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302152500", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 12", "ACRE": null, "LONGITUDE": -64.93876441, "LATITUDE": 18.34252994, "OBJECTID_1": 9981, "PARCEL_NO_": "105302152500", "Tax_Legal_": "NY NORDSIDEVEJ 12 CROWN PRINCE QUARTER", "Name": "EASTHERS, BEATRICE", "Address": "1706 E 174th St", "City": "Bronx", "State": "New York", "Zip": 10472, "Country": "United States", "Land_Value": 25900, "Improved_V": 198700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.656028621299996, "SHAPE_Area": 368.499268476 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357971.773800000548363, 256994.446199998259544 ], [ 357962.915100000798702, 256993.107099998742342 ], [ 357959.526299998164177, 257012.288899999111891 ], [ 357982.113799996674061, 257011.20719999819994 ], [ 357983.049599997699261, 256996.016100000590086 ], [ 357971.773800000548363, 256994.446199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302302700", "MAP": null, "PARCEL_NAM": "1B GAMLE GADE", "ACRE": "1,718.45 sq ft", "LONGITUDE": -64.93468538, "LATITUDE": 18.34256621, "OBJECTID_1": 10514, "PARCEL_NO_": "105302302700", "Tax_Legal_": "1B GAMLE GADE KRONDPRINDSENS QTR", "Name": "WEEKES, CHANTEL", "Address": "PO Box 307755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.947574364700003, "SHAPE_Area": 135.82531634599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358411.136799998581409, 257007.119199998676777 ], [ 358398.255599997937679, 257004.691700000315905 ], [ 358394.128700003027916, 257015.845899999141693 ], [ 358407.8378000035882, 257015.747000001370907 ], [ 358411.136799998581409, 257007.119199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302272300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93603913, "LATITUDE": 18.34255642, "OBJECTID_1": 10433, "PARCEL_NO_": "105302272300", "Tax_Legal_": "GAMLE GADE 11B CROWN PRINCE QUARTER", "Name": "MARTIN, ANGELA H", "Address": "PO Box 302083", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3600, "Improved_V": 64200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.647949483799998, "SHAPE_Area": 92.198326443799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358263.446099996566772, 257003.049800001084805 ], [ 358254.805799998342991, 257003.498599998652935 ], [ 358254.959799997508526, 257006.034299999475479 ], [ 358255.448299996554852, 257014.077599998563528 ], [ 358264.32320000231266, 257013.5168999992311 ], [ 358263.585199996829033, 257005.48930000141263 ], [ 358263.446099996566772, 257003.049800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302301400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93546822, "LATITUDE": 18.34253884, "OBJECTID_1": 10502, "PARCEL_NO_": "105302301400", "Tax_Legal_": "GAMLE GADE 7C CROWN PRINCE QTR", "Name": "FRETT, ERNEST", "Address": "PO Box 10398", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6800, "Improved_V": 65400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.914818992800001, "SHAPE_Area": 90.123841401099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358323.180399999022484, 257014.420800000429153 ], [ 358322.503499999642372, 256999.216600000858307 ], [ 358316.854000002145767, 256999.803599998354912 ], [ 358316.729900002479553, 257014.368000000715256 ], [ 358323.180399999022484, 257014.420800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302301500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93540142000001, "LATITUDE": 18.34253169, "OBJECTID_1": 10503, "PARCEL_NO_": "105302301500", "Tax_Legal_": "7A GAMLE GADE KRONDPRINDSENS QTR", "Name": "ILLIS, JOSETTE", "Address": "7A GAMBLE GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 110400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.449596959799997, "SHAPE_Area": 125.953629255 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358331.380199998617172, 256998.44480000063777 ], [ 358322.503499999642372, 256999.216600000858307 ], [ 358323.180399999022484, 257014.420800000429153 ], [ 358330.437200002372265, 257014.480200000107288 ], [ 358331.380199998617172, 256998.44480000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302152000", "MAP": null, "PARCEL_NAM": "HODGES STREET 2", "ACRE": null, "LONGITUDE": -64.93920373, "LATITUDE": 18.34251104, "OBJECTID_1": 9976, "PARCEL_NO_": "105302152000", "Tax_Legal_": "HODGES STREET 2 CROWN PRINCE", "Name": "CALLWOOD, ORVIN", "Address": "PO Box 5764", "City": "Pittsburgh", "State": "Pennsylvania", "Zip": 15208, "Country": "United States", "Land_Value": 16900, "Improved_V": 23900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.842717381, "SHAPE_Area": 323.818808666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357939.417000003159046, 257006.424800001084805 ], [ 357922.6570999994874, 256986.022599998861551 ], [ 357911.993400000035763, 257007.255800001323223 ], [ 357911.9628000035882, 257010.844099998474121 ], [ 357918.449299998581409, 257006.675299998372793 ], [ 357938.585500001907349, 257009.3733000010252 ], [ 357939.417000003159046, 257006.424800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91287603000001, "LATITUDE": 18.34235751, "OBJECTID_1": 19716, "PARCEL_NO_": "105501020700", "Tax_Legal_": "52B-1 EST. THOMAS 6A NEW QTR.", "Name": "HEALTHQUEST, LLC", "Address": "5134 Sundial Park", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 382200, "Improved_V": 614900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.45114356299999, "SHAPE_Area": 1806.6666660200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360693.740800000727177, 257033.611699998378754 ], [ 360714.710400000214577, 257033.149999998509884 ], [ 360727.62389999628067, 257031.778000000864267 ], [ 360722.422100000083447, 256979.806400001049042 ], [ 360687.734499998390675, 256981.422400001436472 ], [ 360693.740800000727177, 257033.611699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302140200", "MAP": null, "PARCEL_NAM": "62", "ACRE": null, "LONGITUDE": -64.94100085, "LATITUDE": 18.34250812, "OBJECTID_1": 9899, "PARCEL_NO_": "105302140200", "Tax_Legal_": "ANNAS FANCY 62 CROWN PRINCE QUARTER", "Name": "CHINNERY, HAROLD & EILEEN", "Address": "3660 Overlook Dr", "City": "Tallahassee", "State": "Florida", "Zip": 32311, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.648024413499996, "SHAPE_Area": 328.33060201900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357746.01349999755621, 256991.754000000655651 ], [ 357728.298000000417233, 256988.864799998700619 ], [ 357723.319899998605251, 257005.28940000012517 ], [ 357742.638999998569489, 257009.24720000103116 ], [ 357746.01349999755621, 256991.754000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302211900", "MAP": null, "PARCEL_NAM": "BORGER GADE 11B", "ACRE": null, "LONGITUDE": -64.93705358, "LATITUDE": 18.34245071, "OBJECTID_1": 10203, "PARCEL_NO_": "105302211900", "Tax_Legal_": "BORGER GADE 11B CROWN PRINCE QTR", "Name": "BARNWELL, SONIA", "Address": "PO Box 1353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041353, "Country": "United States", "Land_Value": 22600, "Improved_V": 67900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.230915689, "SHAPE_Area": 638.36258873099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358143.647799998521805, 256980.654100000858307 ], [ 358141.225299999117851, 256981.056499999016523 ], [ 358142.577200002968311, 257011.676100000739098 ], [ 358165.175499998033047, 257009.328000001609325 ], [ 358163.7246999964118, 256990.317699998617172 ], [ 358159.689599998295307, 256990.706799998879433 ], [ 358158.983900003135204, 256978.879799999296665 ], [ 358143.647799998521805, 256980.654100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301101500", "MAP": "A9-617-T003", "PARCEL_NAM": "35", "ACRE": ".13", "LONGITUDE": -64.95072518000001, "LATITUDE": 18.34252987, "OBJECTID_1": 9388, "PARCEL_NO_": "105301101500", "Tax_Legal_": "ROW 34 & 33,35 LOWER JOHN DUNKOE NO. 3B & 3C LITTLE NORTHSIDE QUARTER", "Name": "QUEEN CHARLOTTE HOTEL CORPORATION INC", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 323400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.250439784199997, "SHAPE_Area": 406.283211247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356688.797600001096725, 256999.566500000655651 ], [ 356729.138400003314018, 256996.941399998962879 ], [ 356723.575099997222424, 256987.396699998527765 ], [ 356692.935199998319149, 256987.145899999886751 ], [ 356690.505500003695488, 256988.392599999904633 ], [ 356689.684799998998642, 256990.074599999934435 ], [ 356688.797600001096725, 256999.566500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302390400", "MAP": "D9-8338-T009", "PARCEL_NAM": "9-REM", "ACRE": ".10", "LONGITUDE": -64.93291698, "LATITUDE": 18.34244466, "OBJECTID_1": 10668, "PARCEL_NO_": "105302390400", "Tax_Legal_": "9 REM CRYSTAL GADE QUEENS QTR", "Name": "HEBREW CONGREGATION OF STT. INC", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 137300, "Improved_V": 313800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.301097468999998, "SHAPE_Area": 457.21941393600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358602.274099998176098, 257010.511100001633167 ], [ 358601.091600000858307, 257007.489000000059605 ], [ 358603.166500002145767, 257006.808699999004602 ], [ 358598.319899998605251, 256994.719000000506639 ], [ 358587.943999998271465, 256982.17960000038147 ], [ 358576.524300001561642, 256997.495900001376867 ], [ 358573.259499996900558, 257002.113299999386072 ], [ 358603.715999998152256, 257013.482200000435114 ], [ 358602.274099998176098, 257010.511100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302390500", "MAP": null, "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.93271537, "LATITUDE": 18.34243805, "OBJECTID_1": 10669, "PARCEL_NO_": "105302390500", "Tax_Legal_": "2 TRUMPETER GADE & 9-1 CRYSTAL GADE QUEENS QTR", "Name": "BAMBINI, VINCENT & SWANE,ELLEN", "Address": "5601 Trumpeter Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11300, "Improved_V": 159800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.7032045901, "SHAPE_Area": 484.751281909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358614.577500000596046, 256979.442200001329184 ], [ 358598.319899998605251, 256994.719000000506639 ], [ 358606.215800002217293, 257014.415300000458956 ], [ 358623.216700002551079, 257006.532900001853704 ], [ 358614.577500000596046, 256979.442200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9125284, "LATITUDE": 18.34235122, "OBJECTID_1": 19719, "PARCEL_NO_": "105501021000", "Tax_Legal_": "ESTATE THOMAS 52B-2B #6A NEW QTR", "Name": "LLOYD ONEAL NORFORD REVOCABLE TRUST", "Address": "P.O. BOX 2640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 499800, "Improved_V": 504800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.266378812, "SHAPE_Area": 1942.0679443700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360722.422100000083447, 256979.806400001049042 ], [ 360727.62389999628067, 257031.778000000864267 ], [ 360772.012500002980232, 257027.286200001835823 ], [ 360770.523900002241135, 257012.708500001579523 ], [ 360764.069799996912479, 257013.077899999916553 ], [ 360760.252300001680851, 256987.926500000059605 ], [ 360757.066600002348423, 256983.256400000303984 ], [ 360753.053000003099442, 256981.11259999871254 ], [ 360722.422100000083447, 256979.806400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105302141800", "MAP": null, "PARCEL_NAM": "70A", "ACRE": null, "LONGITUDE": -64.94002222, "LATITUDE": 18.34246209, "OBJECTID_1": 9920, "PARCEL_NO_": "105302141800", "Tax_Legal_": "ANNAS FANCY 70A KRONPRINDSENS QTR", "Name": "ANTHON W. ADAMS(TRUSTEE), F BROWNLOW, J & P ADAMS", "Address": "PO Box 304417", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3900, "Improved_V": 10600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.354405976799995, "SHAPE_Area": 191.48339923699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357846.788199998438358, 256994.267599999904633 ], [ 357831.552699998021126, 256984.221500001847744 ], [ 357827.478000000119209, 256989.254399999976158 ], [ 357845.866800002753735, 257007.769999999552965 ], [ 357846.788199998438358, 256994.267599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302301900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9351189, "LATITUDE": 18.34247997, "OBJECTID_1": 10507, "PARCEL_NO_": "105302301900", "Tax_Legal_": "GAMLE GADE 5A CROWN PRINCE QTR", "Name": "HUNT, PHILIP SHERIDAN", "Address": "PO Box 8906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15600, "Improved_V": 52700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.61689631, "SHAPE_Area": 143.36832026600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358360.078000001609325, 256992.232799999415874 ], [ 358351.842500001192093, 256992.733300000429153 ], [ 358353.124499998986721, 257009.108300000429153 ], [ 358362.098600000143051, 257009.078999999910593 ], [ 358360.078000001609325, 256992.232799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302312800", "MAP": "D9-6720-T000", "PARCEL_NAM": "VESTER GADE 51 REM", "ACRE": "1,560 sq ft", "LONGITUDE": -64.93448626, "LATITUDE": 18.34252857, "OBJECTID_1": 10543, "PARCEL_NO_": "105302312800", "Tax_Legal_": "VESTER GADE 51 QUEENS QUARTER", "Name": "JACKSON, CLEVIA ROBLES", "Address": "50 VESTER GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8100, "Improved_V": 28700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.629778716899999, "SHAPE_Area": 119.85743641000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358422.456000000238419, 256998.530499998480082 ], [ 358419.964400000870228, 257003.993000000715256 ], [ 358415.701399996876717, 257012.13060000166297 ], [ 358430.970100000500679, 257011.640799999237061 ], [ 358430.463100001215935, 257010.232700001448393 ], [ 358430.011399999260902, 257008.957499999552965 ], [ 358428.888199999928474, 257005.786800000816584 ], [ 358424.116899996995926, 256997.937300000339746 ], [ 358422.456000000238419, 256998.530499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302280100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93688157, "LATITUDE": 18.34247728, "OBJECTID_1": 10447, "PARCEL_NO_": "105302280100", "Tax_Legal_": "BORGER GADE 1O CROWN PRINCE QTR", "Name": "GEORGE, ELOI, ALBERT, & BEATRI", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19500, "Improved_V": 106400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.740056280200001, "SHAPE_Area": 233.610404117 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358175.833800002932549, 256988.728000000119209 ], [ 358163.7246999964118, 256990.317699998617172 ], [ 358165.175499998033047, 257009.328000001609325 ], [ 358177.282799996435642, 257007.949400000274181 ], [ 358175.833800002932549, 256988.728000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401380600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93230596, "LATITUDE": 18.34251334, "OBJECTID_1": 12048, "PARCEL_NO_": "105401380600", "Tax_Legal_": "TROMPETER GADE 4 QUEENS QUARTER", "Name": "ST. THOMAS REFORMED CHURCH", "Address": "PO Box 301769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.966210376500001, "SHAPE_Area": 64.508529288399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358657.916900001466274, 257003.439399998635054 ], [ 358650.676299996674061, 257001.48030000180006 ], [ 358650.598999999463558, 257010.556699998676777 ], [ 358657.029700003564358, 257012.931400001049042 ], [ 358657.916900001466274, 257003.439399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302140100", "MAP": null, "PARCEL_NAM": "60", "ACRE": null, "LONGITUDE": -64.9411415, "LATITUDE": 18.34241691, "OBJECTID_1": 9898, "PARCEL_NO_": "105302140100", "Tax_Legal_": "ANNAS FANCY 60 KRONP QTR", "Name": "SIMILA, JONATHAN", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26900, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.6164197903, "SHAPE_Area": 492.06989225400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357728.298000000417233, 256988.864799998700619 ], [ 357732.4662000015378, 256972.855799999088049 ], [ 357717.950800001621246, 256972.948100000619888 ], [ 357707.220600001513958, 257001.991200000047684 ], [ 357723.319899998605251, 257005.28940000012517 ], [ 357728.298000000417233, 256988.864799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501020900", "MAP": null, "PARCEL_NAM": "52F-3", "ACRE": null, "LONGITUDE": -64.91147348, "LATITUDE": 18.34127921, "OBJECTID_1": 19718, "PARCEL_NO_": "105501020900", "Tax_Legal_": "52F-1, 52F-2, 52F-3 & 52G-1 ESTATE THOMAS 6A NEW QUARTER", "Name": "PRIME STORAGE ST THOMAS LLC", "Address": "83-85 Railroad Pl", "City": "Saratoga Springs", "State": "New York", "Zip": 12866, "Country": "United States", "Land_Value": 1193800, "Improved_V": 8320300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.31396889299998, "SHAPE_Area": 4391.3118254000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360813.803599998354912, 256916.136599998921156 ], [ 360905.3766999989748, 256908.649500001221895 ], [ 360900.297499999403954, 256860.982700001448393 ], [ 360808.858400002121925, 256868.655200000852346 ], [ 360813.803599998354912, 256916.136599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301151300", "MAP": null, "PARCEL_NAM": "212A-7", "ACRE": null, "LONGITUDE": -64.9471118, "LATITUDE": 18.34239443, "OBJECTID_1": 9511, "PARCEL_NO_": "105301151300", "Tax_Legal_": "ALTONA & WELGUNST 212A-7&220-34A SOUTHSIDE QTR.", "Name": "RAMSAY, XAVIA & LOUVINA", "Address": "PO BOX 4127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.68126674299999, "SHAPE_Area": 551.04535850599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357105.153300002217293, 256967.932700000703335 ], [ 357090.693599998950958, 256961.481499999761581 ], [ 357087.421599999070168, 256966.943199999630451 ], [ 357086.582999996840954, 256970.736000001430511 ], [ 357073.44820000231266, 256998.070700000971556 ], [ 357087.142899997532368, 256999.660399999469519 ], [ 357105.153300002217293, 256967.932700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302152300", "MAP": null, "PARCEL_NAM": "TEMPLE ST 2", "ACRE": null, "LONGITUDE": -64.93913355, "LATITUDE": 18.34238228, "OBJECTID_1": 9979, "PARCEL_NO_": "105302152300", "Tax_Legal_": "TEMPLE STREET 2 CROWN PRINCE QUARTER", "Name": "SCATLIFFE, WILLIAMS, & HASKINS", "Address": "3314 Woodland Ave", "City": "Kansas City", "State": "Missouri", "Zip": 64109, "Country": "United States", "Land_Value": 24200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.705084981900001, "SHAPE_Area": 398.96557757199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357942.82209999859333, 256985.343299999833107 ], [ 357927.627999998629093, 256970.442400000989437 ], [ 357922.770400002598763, 256972.724599998444319 ], [ 357922.6570999994874, 256986.022599998861551 ], [ 357939.417000003159046, 257006.424800001084805 ], [ 357942.82209999859333, 256985.343299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401380500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9324019, "LATITUDE": 18.34248995, "OBJECTID_1": 12047, "PARCEL_NO_": "105401380500", "Tax_Legal_": "TROMPETER GADE 3 QUEENS QUARTER", "Name": "SMITH, JOHN F", "Address": "PO Box 504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19300, "Improved_V": 129100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.364353756500002, "SHAPE_Area": 120.76264946000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358650.676299996674061, 257001.48030000180006 ], [ 358638.608599998056889, 256998.21510000154376 ], [ 358636.117700003087521, 257006.6385000012815 ], [ 358650.598999999463558, 257010.556699998676777 ], [ 358650.676299996674061, 257001.48030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302371400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9337017, "LATITUDE": 18.34247312, "OBJECTID_1": 10639, "PARCEL_NO_": "105302371400", "Tax_Legal_": "NORRE GADE 2 QUEENS QUARTER", "Name": "ANDREWS, FLORENCIA M", "Address": "PO Box 374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10200, "Improved_V": 35800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.265262316700003, "SHAPE_Area": 93.869094641499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358511.94200000166893, 257006.044399999082088 ], [ 358510.424699999392033, 256994.844000000506639 ], [ 358499.904899999499321, 256999.190900001674891 ], [ 358504.663599997758865, 257008.517900001257658 ], [ 358505.491499997675419, 257005.991599999368191 ], [ 358511.94200000166893, 257006.044399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501021100", "MAP": null, "PARCEL_NAM": "52E-3", "ACRE": "0.406", "LONGITUDE": -64.91207262, "LATITUDE": 18.34233871, "OBJECTID_1": 19720, "PARCEL_NO_": "105501021100", "Tax_Legal_": "52E-3&52B-2A ESTATE THOMAS #6A NEW QTR", "Name": "FFJ HOLDINGS LLC", "Address": "PO Box 7474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 411600, "Improved_V": 458100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.77014899700001, "SHAPE_Area": 1609.65176911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360811.89580000191927, 256983.705200001597404 ], [ 360769.920800000429153, 256988.850000001490116 ], [ 360774.433200001716614, 257027.094900000840425 ], [ 360807.524400003254414, 257023.566100001335144 ], [ 360810.758599996566772, 257022.537099998444319 ], [ 360813.195600003004074, 257020.446100000292063 ], [ 360814.867499999701977, 257013.493700001388788 ], [ 360811.89580000191927, 256983.705200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302302800", "MAP": null, "PARCEL_NAM": "1A GAMLE GADE", "ACRE": "1,671.00 sq ft", "LONGITUDE": -64.93463597, "LATITUDE": 18.34244761, "OBJECTID_1": 10515, "PARCEL_NO_": "105302302800", "Tax_Legal_": "GAMLE GADE 1A CROWN PRINCE QTR", "Name": "CALO, GONAZLO", "Address": "PO Box 302668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25100, "Improved_V": 224200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.7748857793, "SHAPE_Area": 237.132506732 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358398.255599997937679, 257004.691700000315905 ], [ 358411.136799998581409, 257007.119199998676777 ], [ 358417.713100001215935, 256992.39640000090003 ], [ 358413.992200002074242, 256989.289500001817942 ], [ 358402.964900001883507, 256989.759300000965595 ], [ 358398.255599997937679, 257004.691700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302280200", "MAP": null, "PARCEL_NAM": "16", "ACRE": ".05", "LONGITUDE": -64.9367084, "LATITUDE": 18.34245286, "OBJECTID_1": 10448, "PARCEL_NO_": "105302280200", "Tax_Legal_": "GAMLE GADE 16 CROWN PRINCE QTR", "Name": "THRAEN, ELEANOR L. & ALDA MONSANTO RESTATED LIVING TRUST", "Address": "PO Box 7513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10500, "Improved_V": 66500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.2283758007, "SHAPE_Area": 212.120793238 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358196.613899998366833, 257003.1064000017941 ], [ 358195.991599999368191, 256988.89299999922514 ], [ 358188.729400001466274, 256989.46680000051856 ], [ 358180.659100003540516, 256990.245200000703335 ], [ 358182.037600003182888, 257004.170800000429153 ], [ 358196.613899998366833, 257003.1064000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302381400", "MAP": null, "PARCEL_NAM": "52 VESTER GADE & 1 GUTTETS GADE", "ACRE": "1,030 sq ft", "LONGITUDE": -64.93433781, "LATITUDE": 18.34243309, "OBJECTID_1": 10653, "PARCEL_NO_": "105302381400", "Tax_Legal_": "VESTER GADE 52 & GUTTETS 1 GADE-QUEENS QTR", "Name": "RICHARDSON, MAY", "Address": "PO Box 304404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5000, "Improved_V": 107300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.169538067399998, "SHAPE_Area": 286.37906745399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358444.374600000679493, 256984.322500001639128 ], [ 358439.948899999260902, 256987.4054000005126 ], [ 358428.654799997806549, 256993.095499999821186 ], [ 358433.281400002539158, 257003.597899999469519 ], [ 358435.741999998688698, 257009.074799999594688 ], [ 358440.980800002813339, 257007.169799998402596 ], [ 358444.711400002241135, 257001.772300001233816 ], [ 358446.298900000751019, 256998.279800001531839 ], [ 358448.33500000089407, 256994.758000001311302 ], [ 358449.888899996876717, 256992.714899998158216 ], [ 358444.374600000679493, 256984.322500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302140800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94034761, "LATITUDE": 18.34241701, "OBJECTID_1": 9907, "PARCEL_NO_": "105302140800", "Tax_Legal_": "CROWN PRINCE QUARTER", "Name": "SMITH, BERYL", "Address": "69 ANNAS FANCY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37800, "Improved_V": 39400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.903652259699996, "SHAPE_Area": 606.78965266199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357788.701300002634525, 256997.591899998486042 ], [ 357816.888099998235703, 257001.833299998193979 ], [ 357821.06530000269413, 256984.768899999558926 ], [ 357813.034500002861023, 256980.903499998152256 ], [ 357804.184900000691414, 256978.509100001305342 ], [ 357797.748800002038479, 256976.767599999904633 ], [ 357791.294699996709824, 256977.136999998241663 ], [ 357788.701300002634525, 256997.591899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302380900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93412557000001, "LATITUDE": 18.34245437, "OBJECTID_1": 10649, "PARCEL_NO_": "105302380900", "Tax_Legal_": "NORRE GADE 11B QUEENS QTR", "Name": "RABSATT SR, ELMO L.", "Address": "PO Box 944", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 6100, "Improved_V": 24300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.413592349200002, "SHAPE_Area": 100.59252827100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358469.248800002038479, 257000.839800000190735 ], [ 358458.847699999809265, 256991.255499999970198 ], [ 358454.774700000882149, 256996.077300000935793 ], [ 358463.554300002753735, 257006.70380000025034 ], [ 358469.248800002038479, 257000.839800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302280300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9365673, "LATITUDE": 18.34244243, "OBJECTID_1": 10449, "PARCEL_NO_": "105302280300", "Tax_Legal_": "17 GAMLE GADE CROWN PRINCE QTR", "Name": "LAFORTUNE KILPATRICK, JUSTINE", "Address": "PO Box 304979", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 75800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.4194206847, "SHAPE_Area": 213.11238335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358211.884400002658367, 257001.991300001740456 ], [ 358210.516000002622604, 256987.745299998670816 ], [ 358195.991599999368191, 256988.89299999922514 ], [ 358196.613899998366833, 257003.1064000017941 ], [ 358211.884400002658367, 257001.991300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302371500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93358695000001, "LATITUDE": 18.34245386, "OBJECTID_1": 10640, "PARCEL_NO_": "105302371500", "Tax_Legal_": "NORRE GADE 1 QUEENS QUARTER", "Name": "MILNER, TREVOR & MARY DUNCAN", "Address": "2601 Norre Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32100, "Improved_V": 275000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.541382394599999, "SHAPE_Area": 179.73962755599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358510.424699999392033, 256994.844000000506639 ], [ 358511.94200000166893, 257006.044399999082088 ], [ 358521.617799997329712, 257006.123599998652935 ], [ 358527.32490000128746, 256998.782000001519918 ], [ 358527.36259999871254, 256994.349300000816584 ], [ 358525.764399997889996, 256992.64750000089407 ], [ 358510.424699999392033, 256994.844000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302280400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93634683000001, "LATITUDE": 18.34242285, "OBJECTID_1": 10450, "PARCEL_NO_": "105302280400", "Tax_Legal_": "GAMLE GADE 18 & 19 CROWN PRINCE QTR", "Name": "WELLS J & L", "Address": "PO Box 304703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25300, "Improved_V": 30400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.646558715500007, "SHAPE_Area": 464.13360254000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358243.376000002026558, 256999.691799998283386 ], [ 358241.99099999666214, 256984.625399999320507 ], [ 358234.726999998092651, 256985.410399999469519 ], [ 358226.656599998474121, 256986.188700001686811 ], [ 358218.586300000548363, 256986.967000000178814 ], [ 358210.516000002622604, 256987.745299998670816 ], [ 358211.884400002658367, 257001.991300001740456 ], [ 358243.376000002026558, 256999.691799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302302400", "MAP": null, "PARCEL_NAM": "3A GAMLE GADE", "ACRE": "1,202.00 sq ft", "LONGITUDE": -64.93495176, "LATITUDE": 18.34244814, "OBJECTID_1": 10512, "PARCEL_NO_": "105302302400", "Tax_Legal_": "GAMLE GADE 3A CROWN PRINCE QTR", "Name": "GEORGE, ELAINE", "Address": "3A Gamle Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18000, "Improved_V": 13400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.925219902499997, "SHAPE_Area": 96.854973737799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358379.594800002872944, 257003.194600000977516 ], [ 358377.005500003695488, 256991.00450000166893 ], [ 358369.892300002276897, 256991.046599999070168 ], [ 358371.648999996483326, 257004.262899998575449 ], [ 358376.944300003349781, 257003.550900001078844 ], [ 358379.594800002872944, 257003.194600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301151200", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-9", "ACRE": "0.23", "LONGITUDE": -64.94771444, "LATITUDE": 18.34234982, "OBJECTID_1": 9510, "PARCEL_NO_": "105301151200", "Tax_Legal_": "ALTONA & WELGUNST 212A-9 CROWN PRINCE QTR.", "Name": "DENNIS, CALUDIE", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51000, "Improved_V": 29900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.500776234, "SHAPE_Area": 1083.42532815 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357009.841600000858307, 256986.729499999433756 ], [ 357035.511200003325939, 256992.334600001573563 ], [ 357052.615099996328354, 256974.070000000298023 ], [ 357042.255599997937679, 256968.051199998706579 ], [ 357020.583999998867512, 256956.263700000941753 ], [ 357012.472800001502037, 256961.977200001478195 ], [ 357005.482400000095367, 256973.711100000888109 ], [ 357001.238200001418591, 256983.697399999946356 ], [ 357009.841600000858307, 256986.729499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302141000", "MAP": null, "PARCEL_NAM": "64", "ACRE": null, "LONGITUDE": -64.94078892, "LATITUDE": 18.34234504, "OBJECTID_1": 9910, "PARCEL_NO_": "105302141000", "Tax_Legal_": "ANNAS FANCY 64 CROWN PRINCE QTR", "Name": "FAULKNER, ANTONIO", "Address": "3295 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025709, "Country": "United States", "Land_Value": 31300, "Improved_V": 61800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.851024525, "SHAPE_Area": 498.79061198900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357767.918799996376038, 256976.101300001144409 ], [ 357758.35809999704361, 256962.513099998235703 ], [ 357751.871699996292591, 256966.68189999833703 ], [ 357746.01349999755621, 256991.754000000655651 ], [ 357765.323600001633167, 256996.767200000584126 ], [ 357767.918799996376038, 256976.101300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302140900", "MAP": null, "PARCEL_NAM": "66", "ACRE": null, "LONGITUDE": -64.94063035000001, "LATITUDE": 18.34239156, "OBJECTID_1": 9909, "PARCEL_NO_": "105302140900", "Tax_Legal_": "ANNAS FANCY 66 CROWN PRINCE QUARTER", "Name": "RIERA, ELTON & ELROY", "Address": "ESTATE NADIR # 10C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.3978684402, "SHAPE_Area": 311.13923453799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357783.235100001096725, 256976.648899998515844 ], [ 357767.918799996376038, 256976.101300001144409 ], [ 357765.323600001633167, 256996.767200000584126 ], [ 357781.460699997842312, 256995.632800001651049 ], [ 357783.235100001096725, 256976.648899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302280500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93612091, "LATITUDE": 18.34240202, "OBJECTID_1": 10451, "PARCEL_NO_": "105302280500", "Tax_Legal_": "20 GAMLE GADE CROWN PRINCE QUARTER", "Name": "CHURCH OF GOOD OF PROPHECY", "Address": "PO Box 304363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37800, "Improved_V": 188500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.849276714699997, "SHAPE_Area": 254.27392681800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358260.260499998927116, 256998.24549999833107 ], [ 358258.133400000631809, 256982.857700001448393 ], [ 358241.99099999666214, 256984.625399999320507 ], [ 358243.376000002026558, 256999.691799998283386 ], [ 358260.260499998927116, 256998.24549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401381200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93215601, "LATITUDE": 18.34236436, "OBJECTID_1": 12054, "PARCEL_NO_": "105401381200", "Tax_Legal_": "5 WIMMELSKAFTS GADE QUEENS QUARTER", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 140900, "Improved_V": 143600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.87461211, "SHAPE_Area": 637.76817338000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358659.792099997401237, 256972.635099999606609 ], [ 358658.845499999821186, 256989.092700000852346 ], [ 358657.916900001466274, 257003.439399998635054 ], [ 358660.33049999922514, 257004.092500001192093 ], [ 358682.102700002491474, 257004.059599999338388 ], [ 358683.103200003504753, 256981.269600000232458 ], [ 358671.037299998104572, 256977.793400000780821 ], [ 358659.792099997401237, 256972.635099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401381300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93200483, "LATITUDE": 18.34238002, "OBJECTID_1": 12055, "PARCEL_NO_": "105401381300", "Tax_Legal_": "4 WIMMELSKAFTS GADE QUEENS QUARTER", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.728279322, "SHAPE_Area": 151.14501325000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358682.102700002491474, 257004.059599999338388 ], [ 358687.746899999678135, 257004.105700001120567 ], [ 358691.148400001227856, 256983.446400001645088 ], [ 358683.103200003504753, 256981.269600000232458 ], [ 358682.102700002491474, 257004.059599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302380400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93387346, "LATITUDE": 18.34240039, "OBJECTID_1": 10646, "PARCEL_NO_": "105302380400", "Tax_Legal_": "NORRE GADE 12A QUEENS QUARTER", "Name": "CANTON, ESTHER M. & ANNICE F.", "Address": "PO Box 63", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14800, "Improved_V": 44600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.894976995900002, "SHAPE_Area": 177.10082127199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358496.704800002276897, 256996.209399998188019 ], [ 358492.775700002908707, 256984.144900001585484 ], [ 358483.866700001060963, 256988.715999998152256 ], [ 358478.197400003671646, 256991.624899998307228 ], [ 358487.784999996423721, 257002.046999998390675 ], [ 358496.704800002276897, 256996.209399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401381000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93234915, "LATITUDE": 18.34240263, "OBJECTID_1": 12052, "PARCEL_NO_": "105401381000", "Tax_Legal_": "WIMMELSKAFTS GADE 6C QUEENS QUARTER", "Name": "SMITH, L. & D. & M. & J. & G. & J. & G. & J", "Address": "PO Box 504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 51400, "Improved_V": 227500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.837487552100001, "SHAPE_Area": 236.58766189400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358658.845499999821186, 256989.092700000852346 ], [ 358641.927299998700619, 256987.265399999916553 ], [ 358638.608599998056889, 256998.21510000154376 ], [ 358650.676299996674061, 257001.48030000180006 ], [ 358657.916900001466274, 257003.439399998635054 ], [ 358658.845499999821186, 256989.092700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302390300", "MAP": null, "PARCEL_NAM": "2C", "ACRE": null, "LONGITUDE": -64.93312548, "LATITUDE": 18.34243102, "OBJECTID_1": 10667, "PARCEL_NO_": "105302390300", "Tax_Legal_": "SNEGLE GADE 2C QUEENS QUARTER", "Name": "HEBREW CONG. OF ST. THOMAS", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38300, "Improved_V": 34900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.133114795200001, "SHAPE_Area": 114.379765077 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358576.524300001561642, 256997.495900001376867 ], [ 358563.684500001370907, 256990.213599998503923 ], [ 358559.566600002348423, 257000.312399998307228 ], [ 358573.259499996900558, 257002.113299999386072 ], [ 358576.524300001561642, 256997.495900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302280600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93596937, "LATITUDE": 18.34238332, "OBJECTID_1": 10452, "PARCEL_NO_": "105302280600", "Tax_Legal_": "GAMLE GADE 21 CROWN PRINCE QTR", "Name": "VIALET, FREDERICK", "Address": "PO Box 546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.994777999599997, "SHAPE_Area": 255.24109281299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358275.608800001442432, 256997.111699998378754 ], [ 358273.48030000180006, 256979.816899999976158 ], [ 358258.133400000631809, 256982.857700001448393 ], [ 358260.260499998927116, 256998.24549999833107 ], [ 358275.608800001442432, 256997.111699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302381000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9340603, "LATITUDE": 18.34238305, "OBJECTID_1": 10650, "PARCEL_NO_": "105302381000", "Tax_Legal_": "VESTER GADE B QUEENS QUARTER", "Name": "CALLLWOOD, C. & R. & ROBLES, J", "Address": "P O BOX 2293", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10200, "Improved_V": 13100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.501430533899999, "SHAPE_Area": 191.99378314000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358478.197400003671646, 256991.624899998307228 ], [ 358469.41780000180006, 256980.998399998992682 ], [ 358458.847699999809265, 256991.255499999970198 ], [ 358469.248800002038479, 257000.839800000190735 ], [ 358478.197400003671646, 256991.624899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302152700", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 11", "ACRE": null, "LONGITUDE": -64.93870188, "LATITUDE": 18.34240315, "OBJECTID_1": 9983, "PARCEL_NO_": "105302152700", "Tax_Legal_": "NY NORDSIDEVEJ 11 CROWN PRINCE", "Name": "CASIMIR, DIEGO H. & VERNILLA A", "Address": "910 Mockingbird Ln", "City": "Glenn Heights", "State": "Texas", "Zip": 75154, "Country": "United States", "Land_Value": 4900, "Improved_V": 31100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.823808269099999, "SHAPE_Area": 130.12390738400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357983.956600002944469, 256984.202300000935793 ], [ 357974.298799999058247, 256982.012299999594688 ], [ 357971.773800000548363, 256994.446199998259544 ], [ 357983.049599997699261, 256996.016100000590086 ], [ 357983.956600002944469, 256984.202300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401380900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93253557, "LATITUDE": 18.34226439, "OBJECTID_1": 12051, "PARCEL_NO_": "105401380900", "Tax_Legal_": "WIMMELSKAFTS GADE 6B QUEENS QUARTER", "Name": "STEELE WIMMELSKAFTS, LLC", "Address": "4026 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 127000, "Improved_V": 655600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.666191516, "SHAPE_Area": 532.32145177200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358627.660099998116493, 256958.228900000452995 ], [ 358622.645999997854233, 256978.875 ], [ 358620.228799998760223, 256978.644099999219179 ], [ 358623.281499996781349, 256998.934099998325109 ], [ 358631.324799999594688, 257001.321899998933077 ], [ 358641.313400000333786, 256964.67339999973774 ], [ 358627.660099998116493, 256958.228900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302280700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93582299000001, "LATITUDE": 18.34234525, "OBJECTID_1": 10453, "PARCEL_NO_": "105302280700", "Tax_Legal_": "GAMLE GADE 22 CROWN PRINCE QTR", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49800, "Improved_V": 515900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.814580373300004, "SHAPE_Area": 367.65153378799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358291.772100001573563, 256995.917700000107288 ], [ 358289.662299998104572, 256973.405499998480082 ], [ 358276.746899999678135, 256974.988499999046326 ], [ 358272.711800001561642, 256975.377700001001358 ], [ 358273.48030000180006, 256979.816899999976158 ], [ 358275.608800001442432, 256997.111699998378754 ], [ 358291.772100001573563, 256995.917700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302390200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9332553, "LATITUDE": 18.34241031, "OBJECTID_1": 10666, "PARCEL_NO_": "105302390200", "Tax_Legal_": "CRYSTAL 10 QUEENS QUARTER", "Name": "BELARDO, WILLIAM", "Address": "PO Box 635", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 9700, "Improved_V": 32800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.493357020300003, "SHAPE_Area": 166.29262439 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358563.684500001370907, 256990.213599998503923 ], [ 358548.375299997627735, 256988.821800000965595 ], [ 358544.248499996960163, 256999.975999999791384 ], [ 358559.566600002348423, 257000.312399998307228 ], [ 358563.684500001370907, 256990.213599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302141900", "MAP": null, "PARCEL_NAM": "45", "ACRE": null, "LONGITUDE": -64.94000651, "LATITUDE": 18.34224864, "OBJECTID_1": 9921, "PARCEL_NO_": "105302141900", "Tax_Legal_": "ANNAS FANCY 45 CROWN PRINCE QUARTER", "Name": "ANTHON W ADAMS (TRUSTEE), F BROWNLOW, J & P ADAMS", "Address": "PO Box 304417", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45800, "Improved_V": 61800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.13693218100001, "SHAPE_Area": 571.55736312600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357848.751400001347065, 256953.120400000363588 ], [ 357833.440499998629093, 256951.939599998295307 ], [ 357831.552699998021126, 256984.221500001847744 ], [ 357846.788199998438358, 256994.267599999904633 ], [ 357848.751400001347065, 256953.120400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302390100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93337489, "LATITUDE": 18.34239469, "OBJECTID_1": 10665, "PARCEL_NO_": "105302390100", "Tax_Legal_": "CRYSTAL 11 QUEENS QUARTER", "Name": "MALCOM M SCHWEIZER &AMY C B SCHWEIZER FAMILY TRUST", "Address": "PO Box 304259", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 242400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.647503281799999, "SHAPE_Area": 156.93186919799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358544.248499996960163, 256999.975999999791384 ], [ 358548.375299997627735, 256988.821800000965595 ], [ 358549.201399996876717, 256986.506499998271465 ], [ 358541.958999998867512, 256984.758499998599291 ], [ 358533.820299997925758, 256993.557799998670816 ], [ 358533.777199998497963, 256998.623700000345707 ], [ 358536.185300000011921, 256999.910000000149012 ], [ 358544.248499996960163, 256999.975999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302152600", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 11A", "ACRE": null, "LONGITUDE": -64.93879128, "LATITUDE": 18.34238735, "OBJECTID_1": 9982, "PARCEL_NO_": "105302152600", "Tax_Legal_": "NY NORDSIDEVEJ 11A CROWN PRINCE QTR", "Name": "HAIG, DIEGO & CASIMIR, V. A", "Address": "910 Mockingbird Ln", "City": "Glenn Heights", "State": "Texas", "Zip": 75154, "Country": "United States", "Land_Value": 6300, "Improved_V": 31000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.410560252700002, "SHAPE_Area": 112.59255129 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357974.298799999058247, 256982.012299999594688 ], [ 357966.251900002360344, 256980.046599999070168 ], [ 357962.915100000798702, 256993.107099998742342 ], [ 357971.773800000548363, 256994.446199998259544 ], [ 357974.298799999058247, 256982.012299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302141100", "MAP": null, "PARCEL_NAM": "61", "ACRE": null, "LONGITUDE": -64.94095357, "LATITUDE": 18.34233987, "OBJECTID_1": 9911, "PARCEL_NO_": "105302141100", "Tax_Legal_": "61 ANNAS FANCY CROWN PRINCE QTR", "Name": "GEORGE, PATRICIA", "Address": "3660 Overlook Dr", "City": "Tallahassee", "State": "Florida", "Zip": 32311, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.739959134299994, "SHAPE_Area": 361.265254148 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357751.871699996292591, 256966.68189999833703 ], [ 357744.584299996495247, 256970.210799999535084 ], [ 357732.4662000015378, 256972.855799999088049 ], [ 357728.298000000417233, 256988.864799998700619 ], [ 357746.01349999755621, 256991.754000000655651 ], [ 357751.871699996292591, 256966.68189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302460100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93561161, "LATITUDE": 18.34235413, "OBJECTID_1": 10779, "PARCEL_NO_": "105302460100", "Tax_Legal_": "GAMLE GADE 23 CROWN PRINCE QTR", "Name": "EUSTACE WEEKES", "Address": "PO Box 303414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033414, "Country": "United States", "Land_Value": 39900, "Improved_V": 68300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.115508513400002, "SHAPE_Area": 260.927592576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358312.951899997889996, 256984.572900000959635 ], [ 358311.400399997830391, 256977.383099999278784 ], [ 358296.060699999332428, 256979.579500000923872 ], [ 358297.538400001823902, 256995.423599999397993 ], [ 358313.680900000035763, 256993.655900001525879 ], [ 358312.951899997889996, 256984.572900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302153300", "MAP": null, "PARCEL_NAM": "HODGES STREET 1", "ACRE": null, "LONGITUDE": -64.93933004, "LATITUDE": 18.34232558, "OBJECTID_1": 9989, "PARCEL_NO_": "105302153300", "Tax_Legal_": "HODGES STREET 1 CROWN PRINCE QUARTER", "Name": "HARLEY, GWENDOLYN & OTHERS", "Address": "1 HODGE STREET", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9000, "Improved_V": 26600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.483315720599997, "SHAPE_Area": 194.20290170800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357903.320900000631809, 256984.064500000327826 ], [ 357907.290700003504753, 256985.388599999248981 ], [ 357918.150799997150898, 256987.873500000685453 ], [ 357919.439000003039837, 256985.151900000870228 ], [ 357919.536100000143051, 256973.753600001335144 ], [ 357903.402699999511242, 256974.465999998152256 ], [ 357903.320900000631809, 256984.064500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302390800", "MAP": null, "PARCEL_NAM": "2B SNEGLE GADE", "ACRE": null, "LONGITUDE": -64.93305534, "LATITUDE": 18.34232659, "OBJECTID_1": 10672, "PARCEL_NO_": "105302390800", "Tax_Legal_": "SNEGLE GADE 2B & 3 QUEENS QUARTER", "Name": "HENLEY PANT, MONIQUE", "Address": "PO Box 303253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 190000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.402966142699995, "SHAPE_Area": 306.62775620999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358587.943999998271465, 256982.17960000038147 ], [ 358571.079700000584126, 256974.019999999552965 ], [ 358563.684500001370907, 256990.213599998503923 ], [ 358576.524300001561642, 256997.495900001376867 ], [ 358587.943999998271465, 256982.17960000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302380500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93374404, "LATITUDE": 18.34233423, "OBJECTID_1": 10647, "PARCEL_NO_": "105302380500", "Tax_Legal_": "NORRE GADE 13A\nQUEENS QUARTER", "Name": "FEDERAL NATIONAL MORTGAGE ASSOCIATION", "Address": "3099 Wisconsin Ave NW", "City": "Washington", "State": "District of Columbia", "Zip": 20016, "Country": "United States", "Land_Value": 18700, "Improved_V": 93600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.965271110700002, "SHAPE_Area": 212.58904926599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358508.97749999910593, 256975.411499999463558 ], [ 358492.775700002908707, 256984.144900001585484 ], [ 358496.704800002276897, 256996.209399998188019 ], [ 358498.326399996876717, 256995.167199999094009 ], [ 358503.189499996602535, 256992.251600001007318 ], [ 358510.465999998152256, 256989.989199999719858 ], [ 358508.97749999910593, 256975.411499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302460200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93546397, "LATITUDE": 18.34236834, "OBJECTID_1": 10780, "PARCEL_NO_": "105302460200", "Tax_Legal_": "GAMLE GADE 24 CROWN PRINCE QTR", "Name": "RAWLINS, ANGELA", "Address": "2307 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19900, "Improved_V": 53300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.278612371800001, "SHAPE_Area": 132.591958277 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358327.400799997150898, 256992.290600001811981 ], [ 358327.483499996364117, 256982.580899998545647 ], [ 358319.409599997103214, 256983.781399998813868 ], [ 358312.951899997889996, 256984.572900000959635 ], [ 358313.680900000035763, 256993.655900001525879 ], [ 358327.400799997150898, 256992.290600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302391200", "MAP": null, "PARCEL_NAM": "1A", "ACRE": null, "LONGITUDE": -64.93281828000001, "LATITUDE": 18.34226845, "OBJECTID_1": 10675, "PARCEL_NO_": "105302391200", "Tax_Legal_": "SNEGLE GADE 1A QUEEN QTR", "Name": "VINCENT R BAMBINI AND ELLEN SWANE REVOCABLE TRUST", "Address": "5601 Trompeter Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 78700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.854209630400007, "SHAPE_Area": 419.13573995000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358598.580700002610683, 256964.11259999871254 ], [ 358592.896899998188019, 256968.710099998861551 ], [ 358594.495200000703335, 256970.411899998784065 ], [ 358587.943999998271465, 256982.17960000038147 ], [ 358598.319899998605251, 256994.719000000506639 ], [ 358614.577500000596046, 256979.442200001329184 ], [ 358598.580700002610683, 256964.11259999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302280800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9369136, "LATITUDE": 18.34234174, "OBJECTID_1": 10454, "PARCEL_NO_": "105302280800", "Tax_Legal_": "BORGER GADE 11A CROWN PRINCE", "Name": "PAUL, IAN", "Address": "2800 Borger Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 148200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.560579688700003, "SHAPE_Area": 186.037458762 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358175.113799996674061, 256978.589600000530481 ], [ 358171.089400000870228, 256977.71229999884963 ], [ 358163.825400002300739, 256978.49720000103116 ], [ 358158.983900003135204, 256978.879799999296665 ], [ 358159.689599998295307, 256990.706799998879433 ], [ 358163.7246999964118, 256990.317699998617172 ], [ 358175.833800002932549, 256988.728000000119209 ], [ 358175.113799996674061, 256978.589600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302460300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93533862, "LATITUDE": 18.34234486, "OBJECTID_1": 10781, "PARCEL_NO_": "105302460300", "Tax_Legal_": "GAMLE GADE 25 CROWN PRINCE QTR", "Name": "FRETT, STEPHEN M", "Address": "2625 Gamble Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026427, "Country": "United States", "Land_Value": 19200, "Improved_V": 56100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.840561972000003, "SHAPE_Area": 148.335300932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358340.314300000667572, 256990.918600000441074 ], [ 358339.60869999974966, 256979.091600000858307 ], [ 358327.501500003039837, 256980.470100000500679 ], [ 358327.483499996364117, 256982.580899998545647 ], [ 358327.400799997150898, 256992.290600001811981 ], [ 358340.314300000667572, 256990.918600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302280900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93674968000001, "LATITUDE": 18.34233375, "OBJECTID_1": 10455, "PARCEL_NO_": "105302280900", "Tax_Legal_": "BORGER GADE 5 CROWN PRINCE QTR", "Name": "SHAW, DIANE", "Address": "13 Rejerings Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3700, "Improved_V": 24100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.915675620499997, "SHAPE_Area": 109.52809299099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358180.659100003540516, 256990.245200000703335 ], [ 358188.729400001466274, 256989.46680000051856 ], [ 358188.842699997127056, 256976.1689000017941 ], [ 358179.95889999717474, 256977.78489999845624 ], [ 358180.659100003540516, 256990.245200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302460400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93523616, "LATITUDE": 18.34231131, "OBJECTID_1": 10782, "PARCEL_NO_": "105302460400", "Tax_Legal_": "GAMLE GADE 26 CROWN PRINCE QTR", "Name": "FARRINGTON CALLWOOD, ESMIE", "Address": "#146-17 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10200, "Improved_V": 69400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.814244032799998, "SHAPE_Area": 161.27220570200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358338.842000000178814, 256974.441199999302626 ], [ 358339.60869999974966, 256979.091600000858307 ], [ 358340.314300000667572, 256990.918600000441074 ], [ 358349.999099999666214, 256989.942400000989437 ], [ 358349.284500002861023, 256979.170800000429153 ], [ 358348.528499998152256, 256973.254000000655651 ], [ 358338.842000000178814, 256974.441199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301111800", "MAP": null, "PARCEL_NAM": "200-3T", "ACRE": null, "LONGITUDE": -64.94600903, "LATITUDE": 18.34231392, "OBJECTID_1": 9410, "PARCEL_NO_": "105301111800", "Tax_Legal_": "ALTONA & WELGUNST 200-3T KRONP. QTR", "Name": "SMITH, CLARENDON", "Address": "BOX 3881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.890945480599996, "SHAPE_Area": 438.11197423800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357222.882100000977516, 256968.051899999380112 ], [ 357189.848499998450279, 256964.826200000941753 ], [ 357189.733400002121925, 256978.335200000554323 ], [ 357221.154399998486042, 256981.547699999064207 ], [ 357222.882100000977516, 256968.051899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302281000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93667538, "LATITUDE": 18.34232471, "OBJECTID_1": 10456, "PARCEL_NO_": "105302281000", "Tax_Legal_": "REGJERINGS GADE 13 CROWN PRINCE QTR", "Name": "SHAW, DIANE", "Address": "13 Rejerings Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8300, "Improved_V": 35300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.882085212200003, "SHAPE_Area": 98.804713083799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358196.052699998021126, 256981.716299999505281 ], [ 358196.110299997031689, 256974.961800001561642 ], [ 358188.842699997127056, 256976.1689000017941 ], [ 358188.729400001466274, 256989.46680000051856 ], [ 358195.991599999368191, 256988.89299999922514 ], [ 358196.052699998021126, 256981.716299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302381100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93397974, "LATITUDE": 18.34231114, "OBJECTID_1": 10651, "PARCEL_NO_": "105302381100", "Tax_Legal_": "3B VESTER GADE QUEENS QUARTER", "Name": "KEAN, ERNEST ORVILLE E O", "Address": "PO Box 302307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8600, "Improved_V": 49700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.426654772299997, "SHAPE_Area": 130.20815378500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358483.866700001060963, 256988.715999998152256 ], [ 358479.152900002896786, 256974.111999999731779 ], [ 358469.41780000180006, 256980.998399998992682 ], [ 358478.197400003671646, 256991.624899998307228 ], [ 358483.866700001060963, 256988.715999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302281100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9365738, "LATITUDE": 18.34234452, "OBJECTID_1": 10457, "PARCEL_NO_": "105302281100", "Tax_Legal_": "REGJERINGS GADE 14B CROWN PRINCE QTR", "Name": "GEORGE, WILLIAM", "Address": "PO Box 7804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.200060016199998, "SHAPE_Area": 104.847606243 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358210.516000002622604, 256987.745299998670816 ], [ 358209.774400003254414, 256980.139899998903275 ], [ 358196.052699998021126, 256981.716299999505281 ], [ 358195.991599999368191, 256988.89299999922514 ], [ 358210.516000002622604, 256987.745299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302460500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93514425, "LATITUDE": 18.34232694, "OBJECTID_1": 10783, "PARCEL_NO_": "105302460500", "Tax_Legal_": "STRAND GADE 7 CROWN PRINCE QTR", "Name": "HALL, CLARENCE & LESMORE", "Address": "7102 O-Hall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13500, "Improved_V": 64900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.305754003600001, "SHAPE_Area": 99.486082041200007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358359.773699998855591, 256978.412200000137091 ], [ 358349.284500002861023, 256979.170800000429153 ], [ 358349.999099999666214, 256989.942400000989437 ], [ 358358.069399997591972, 256989.164099998772144 ], [ 358359.773699998855591, 256978.412200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302281300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.936475, "LATITUDE": 18.34230055, "OBJECTID_1": 10459, "PARCEL_NO_": "105302281300", "Tax_Legal_": "REGJERINGS GADE 15A CROWN PRINCE QTR", "Name": "FRANCIS, S MARIA", "Address": "PO Box 21038", "City": "Catonsville", "State": "Maryland", "Zip": 212280538, "Country": "United States", "Land_Value": 7300, "Improved_V": 20500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.145311939099997, "SHAPE_Area": 118.464716029 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358218.586300000548363, 256986.967000000178814 ], [ 358216.298699997365475, 256971.538400001823902 ], [ 358209.031099997460842, 256972.74549999833107 ], [ 358209.774400003254414, 256980.139899998903275 ], [ 358210.516000002622604, 256987.745299998670816 ], [ 358218.586300000548363, 256986.967000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302153100", "MAP": null, "PARCEL_NAM": "HAABETS GADE 14", "ACRE": null, "LONGITUDE": -64.93908032, "LATITUDE": 18.34220117, "OBJECTID_1": 9987, "PARCEL_NO_": "105302153100", "Tax_Legal_": "HAABETS GADE 14 CROWN PRINCE QUARTER", "Name": "MARKS, E. I. & INDUSTRIOUS, G. , E. , B", "Address": "PO Box 7283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 87300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.722978680200001, "SHAPE_Area": 421.00909905200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357930.991700001060963, 256954.215700000524521 ], [ 357927.627999998629093, 256970.442400000989437 ], [ 357942.82209999859333, 256985.343299999833107 ], [ 357948.726999998092651, 256954.782999999821186 ], [ 357930.991700001060963, 256954.215700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302141700", "MAP": null, "PARCEL_NAM": "46", "ACRE": null, "LONGITUDE": -64.94014653000001, "LATITUDE": 18.34219717, "OBJECTID_1": 9919, "PARCEL_NO_": "105302141700", "Tax_Legal_": "ANNAS FANCY 46 CROWN PRINCE QUARTER", "Name": "BJELKER, LAWRENCE", "Address": "PAUL M. PEARSON GARDEN", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21800, "Improved_V": 7600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.636023274199999, "SHAPE_Area": 423.56049028500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357833.440499998629093, 256951.939599998295307 ], [ 357819.760200001299381, 256948.661299999803305 ], [ 357818.863899998366833, 256959.208599999547005 ], [ 357817.107500001788139, 256976.081700000911951 ], [ 357823.536399997770786, 256978.667500000447035 ], [ 357831.552699998021126, 256984.221500001847744 ], [ 357833.440499998629093, 256951.939599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302460600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93500536000001, "LATITUDE": 18.34230498, "OBJECTID_1": 10784, "PARCEL_NO_": "105302460600", "Tax_Legal_": "GAMLE GADE 27 CROWN PRINCE QTR", "Name": "WEEKES -WILLIAMS, MARSHA", "Address": "PO Box 10349", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14000, "Improved_V": 149700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.048808588999997, "SHAPE_Area": 132.08054912200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358374.32150000333786, 256974.520500000566244 ], [ 358365.450300000607967, 256974.659000001847744 ], [ 358362.912699997425079, 256988.57039999961853 ], [ 358373.400100000202656, 256988.022999998182058 ], [ 358374.32150000333786, 256974.520500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302390700", "MAP": null, "PARCEL_NAM": "3 BJERGE GADE", "ACRE": null, "LONGITUDE": -64.93321733000001, "LATITUDE": 18.34227428, "OBJECTID_1": 10671, "PARCEL_NO_": "105302390700", "Tax_Legal_": "BJERGE GADE 3 QUEENS QUARTER", "Name": "BANFIELD, CLIVE E. C. , TRUSTEE", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13600, "Improved_V": 71000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.974382844900006, "SHAPE_Area": 384.15707180700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358571.079700000584126, 256974.019999999552965 ], [ 358559.04619999974966, 256966.744300000369549 ], [ 358541.958999998867512, 256984.758499998599291 ], [ 358549.201399996876717, 256986.506499998271465 ], [ 358548.375299997627735, 256988.821800000965595 ], [ 358563.684500001370907, 256990.213599998503923 ], [ 358571.079700000584126, 256974.019999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302392200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93352869, "LATITUDE": 18.34229293, "OBJECTID_1": 10684, "PARCEL_NO_": "105302392200", "Tax_Legal_": "NORRE GADE 14 QUEENS QUARTER", "Name": "FC HOLDINGS IV LLC", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20700, "Improved_V": 153100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.975462608100003, "SHAPE_Area": 359.22305217399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358544.451700001955032, 256976.124099999666214 ], [ 358523.491099998354912, 256975.530299998819828 ], [ 358510.591899998486042, 256975.213700000196695 ], [ 358512.082299999892712, 256989.580200001597404 ], [ 358535.48870000243187, 256987.02760000154376 ], [ 358544.451700001955032, 256976.124099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302281400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93640077000001, "LATITUDE": 18.34228929, "OBJECTID_1": 10460, "PARCEL_NO_": "105302281400", "Tax_Legal_": "REGJERINGS GADE 15B CROWN PRINCE QTR", "Name": "MONICA RYAN & OTHERS", "Address": "PO Box 1055", "City": "Clarkston", "State": "Georgia", "Zip": 30021, "Country": "United States", "Land_Value": 7500, "Improved_V": 39100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.1262649078, "SHAPE_Area": 129.612736603 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358226.656599998474121, 256986.188700001686811 ], [ 358224.374399997293949, 256970.126899998635054 ], [ 358216.298699997365475, 256971.538400001823902 ], [ 358218.586300000548363, 256986.967000000178814 ], [ 358226.656599998474121, 256986.188700001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302200600", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 4", "ACRE": null, "LONGITUDE": -64.93763027, "LATITUDE": 18.34213817, "OBJECTID_1": 10180, "PARCEL_NO_": "105302200600", "Tax_Legal_": "GAMLE NORDSIDEVEJ 4 CROWN PRINCE QUARTER", "Name": "MC COY, WEBSTER OLIVER", "Address": "P.O. BOX 2875", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 186600, "Improved_V": 245000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.650396922, "SHAPE_Area": 1320.6342993200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358102.479099996387959, 256985.805599998682737 ], [ 358105.858999997377396, 256967.679200001060963 ], [ 358107.710799999535084, 256939.618999999016523 ], [ 358081.136699996888638, 256935.390700001269579 ], [ 358074.292400002479553, 256981.564100001007318 ], [ 358102.479099996387959, 256985.805599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302460700", "MAP": null, "PARCEL_NAM": "28", "ACRE": ".01", "LONGITUDE": -64.93491548, "LATITUDE": 18.34229858, "OBJECTID_1": 10785, "PARCEL_NO_": "105302460700", "Tax_Legal_": "28 GAMLE GADE KRONPRINDSENS QUARTER", "Name": "LAKE, CARLA M.", "Address": "PO Box 303801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2300, "Improved_V": 22200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.291887674800002, "SHAPE_Area": 122.80566925 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358382.274999998509884, 256987.46229999884963 ], [ 358383.999099999666214, 256974.388599999248981 ], [ 358374.32150000333786, 256974.520500000566244 ], [ 358373.400100000202656, 256988.022999998182058 ], [ 358382.274999998509884, 256987.46229999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302152800", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 10", "ACRE": null, "LONGITUDE": -64.93872253000001, "LATITUDE": 18.3422795, "OBJECTID_1": 9984, "PARCEL_NO_": "105302152800", "Tax_Legal_": "NYE NORDSIDEVEJ 10 CROWN PRINCE QTR", "Name": "GREENAWAY FAMILY TRUST", "Address": "2610 Ny Nordsidevej 8A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9700, "Improved_V": 132500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.514587133, "SHAPE_Area": 232.58829875199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357984.885200001299381, 256969.855500001460314 ], [ 357968.776900000870228, 256967.612799998372793 ], [ 357966.251900002360344, 256980.046599999070168 ], [ 357974.298799999058247, 256982.012299999594688 ], [ 357983.956600002944469, 256984.202300000935793 ], [ 357984.885200001299381, 256969.855500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302281500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93632449, "LATITUDE": 18.3422788, "OBJECTID_1": 10461, "PARCEL_NO_": "105302281500", "Tax_Legal_": "REGJERINGS GADE 16B CROWN PRINCE QTR", "Name": "MILLS, JOHN & MORRELL, LORETTA", "Address": "16B REGJERINGS GADE", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7800, "Improved_V": 30500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.378760294099997, "SHAPE_Area": 134.720039047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358234.726999998092651, 256985.410399999469519 ], [ 358232.450099997222424, 256968.715300001204014 ], [ 358224.374399997293949, 256970.126899998635054 ], [ 358226.656599998474121, 256986.188700001686811 ], [ 358234.726999998092651, 256985.410399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302460800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93485051, "LATITUDE": 18.34230063, "OBJECTID_1": 10786, "PARCEL_NO_": "105302460800", "Tax_Legal_": "29A GAMLE GADE KRONPRINDSENS QUARTER", "Name": "WEEKES, AUDREY & MARIA A. CARLOS REYES", "Address": "2106 Strande Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4600, "Improved_V": 29100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.456818316300001, "SHAPE_Area": 58.295299747400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358387.922700002789497, 256987.086399998515844 ], [ 358387.229699999094009, 256973.781800001859665 ], [ 358383.999099999666214, 256974.388599999248981 ], [ 358382.274999998509884, 256987.46229999884963 ], [ 358387.922700002789497, 256987.086399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302381500", "MAP": null, "PARCEL_NAM": "53 VESTER GADE & 2 GUTTETS GADE", "ACRE": "1,607 sq ft", "LONGITUDE": -64.93423832000001, "LATITUDE": 18.3423301, "OBJECTID_1": 10654, "PARCEL_NO_": "105302381500", "Tax_Legal_": "GUTTETS GADE 2 & VESTER 53 GADE QUEENS GADE", "Name": "RICHARDSON, MAY", "Address": "PO Box 304404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7700, "Improved_V": 94000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.685337408300001, "SHAPE_Area": 84.373114224299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358449.960900001227856, 256977.666400000452995 ], [ 358448.60080000013113, 256979.626600001007318 ], [ 358444.374600000679493, 256984.322500001639128 ], [ 358449.888899996876717, 256992.714899998158216 ], [ 358455.674599997699261, 256985.107799999415874 ], [ 358452.485299997031689, 256980.8597999997437 ], [ 358449.960900001227856, 256977.666400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302460900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93478055, "LATITUDE": 18.34228664, "OBJECTID_1": 10787, "PARCEL_NO_": "105302460900", "Tax_Legal_": "GAMLE GADE 3OA CROWN PRINCE QUARTER", "Name": "WEEKES, AUDREY M.", "Address": "6152 Estate Frydenhoj 52K", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15800, "Improved_V": 110200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.894214902800002, "SHAPE_Area": 140.42150682299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358398.496500000357628, 256976.4070999994874 ], [ 358399.328000001609325, 256973.458599999547005 ], [ 358390.460400000214577, 256973.175000000745058 ], [ 358387.229699999094009, 256973.781800001859665 ], [ 358387.922700002789497, 256987.086399998515844 ], [ 358396.795800000429153, 256986.736800000071526 ], [ 358398.496500000357628, 256976.4070999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401381100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93233176, "LATITUDE": 18.34226224, "OBJECTID_1": 12053, "PARCEL_NO_": "105401381100", "Tax_Legal_": "WIMMELSKAFTS GADE 6A QUEENS QURTER", "Name": "HARRIGAN, PAUL O.", "Address": "PO Box 10979", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61300, "Improved_V": 397300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.380123348300003, "SHAPE_Area": 282.79928333599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358641.927299998700619, 256987.265399999916553 ], [ 358658.845499999821186, 256989.092700000852346 ], [ 358659.792099997401237, 256972.635099999606609 ], [ 358651.759499996900558, 256968.980799999088049 ], [ 358647.753200002014637, 256965.99269999936223 ], [ 358641.927299998700619, 256987.265399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302281600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93625217, "LATITUDE": 18.34226938, "OBJECTID_1": 10462, "PARCEL_NO_": "105302281600", "Tax_Legal_": "REGJERINGS GADE 16A CROWN PRINCE QTR", "Name": "GIMENEZ, JOHN", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9500, "Improved_V": 72600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.548185975199999, "SHAPE_Area": 124.081456906 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358241.99099999666214, 256984.625399999320507 ], [ 358239.715899996459484, 256967.719300001859665 ], [ 358232.450099997222424, 256968.715300001204014 ], [ 358234.726999998092651, 256985.410399999469519 ], [ 358241.99099999666214, 256984.625399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302461000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93470341, "LATITUDE": 18.34226446, "OBJECTID_1": 10788, "PARCEL_NO_": "105302461000", "Tax_Legal_": "GAMLE GADE 31A CROWN PRINCE QTR", "Name": "WELLS, JAMES O", "Address": "PO Box 304703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6100, "Improved_V": 26900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.653243436899999, "SHAPE_Area": 104.422114827 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358403.249899998307228, 256986.367400001734495 ], [ 358404.214400000870228, 256967.799100000411272 ], [ 358398.575599998235703, 256967.119699999690056 ], [ 358399.328000001609325, 256973.458599999547005 ], [ 358398.496500000357628, 256976.4070999994874 ], [ 358396.795800000429153, 256986.736800000071526 ], [ 358403.249899998307228, 256986.367400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302461100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93464862, "LATITUDE": 18.34226357, "OBJECTID_1": 10789, "PARCEL_NO_": "105302461100", "Tax_Legal_": "GAMLE GADE 31B CROWN PRINCE QTR", "Name": "WELLS, JAMES O", "Address": "PO Box 304703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.257806888300003, "SHAPE_Area": 109.188194637 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358409.853200003504753, 256968.478500001132488 ], [ 358404.214400000870228, 256967.799100000411272 ], [ 358403.249899998307228, 256986.367400001734495 ], [ 358409.704000003635883, 256985.998100001364946 ], [ 358409.779500000178814, 256977.132800001651049 ], [ 358409.853200003504753, 256968.478500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105501020100", "MAP": "D9-7854-T006", "PARCEL_NAM": "45", "ACRE": "16.22", "LONGITUDE": -64.9147811, "LATITUDE": 18.34062043, "OBJECTID_1": 19710, "PARCEL_NO_": "105501020100", "Tax_Legal_": "45 ESTATE THOMAS 6A NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3724400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 994.86262556999998, "SHAPE_Area": 64954.111609200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360558.128200002014637, 256671.742800001055002 ], [ 360529.986400000751019, 256662.224399998784065 ], [ 360442.625900000333786, 256694.228900000452995 ], [ 360363.382500000298023, 256719.967000000178814 ], [ 360364.163699999451637, 256722.928700000047684 ], [ 360405.512999996542931, 256960.35530000180006 ], [ 360641.88849999755621, 256924.148800000548363 ], [ 360647.146200001239777, 256923.343400001525879 ], [ 360620.862300001084805, 256690.832499999552965 ], [ 360575.017599999904633, 256676.947299998253584 ], [ 360573.424800001084805, 256674.612300001084805 ], [ 360562.95889999717474, 256672.626800000667572 ], [ 360558.128200002014637, 256671.742800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302281700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93613955, "LATITUDE": 18.34225493, "OBJECTID_1": 10463, "PARCEL_NO_": "105302281700", "Tax_Legal_": "REGJERINGS GADE 17 CROWN PRINCE QTR", "Name": "KILPATRICK, ALLAN & GLORIA", "Address": "PO Box 306802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42300, "Improved_V": 199400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.773269965799997, "SHAPE_Area": 286.88417456899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358258.133400000631809, 256982.857700001448393 ], [ 358256.668200001120567, 256965.535999998450279 ], [ 358239.715899996459484, 256967.719300001859665 ], [ 358241.99099999666214, 256984.625399999320507 ], [ 358258.133400000631809, 256982.857700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302461200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93457052, "LATITUDE": 18.3422995, "OBJECTID_1": 10790, "PARCEL_NO_": "105302461200", "Tax_Legal_": "STORE STRAEDE 7B CROWN QUARTER", "Name": "RICHARDS, JOSEPHINE P", "Address": "40 Park Ave", "City": "New York", "State": "New York", "Zip": 10016, "Country": "United States", "Land_Value": 12600, "Improved_V": 39800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.295257903900001, "SHAPE_Area": 90.719686813699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358420.263300001621246, 256977.007500000298023 ], [ 358409.779500000178814, 256977.132800001651049 ], [ 358409.704000003635883, 256985.998100001364946 ], [ 358420.191399998962879, 256985.450599998235703 ], [ 358420.263300001621246, 256977.007500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302463000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93552531, "LATITUDE": 18.3422067, "OBJECTID_1": 10807, "PARCEL_NO_": "105302463000", "Tax_Legal_": "REGJERINGS GADE 22 CROWN PRINCE QTR", "Name": "GABRIEL, HELEN,RUDOPLH E. SEBASTIEN JR", "Address": "PO Box 781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12000, "Improved_V": 54600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.086608976299999, "SHAPE_Area": 203.397313938 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358308.344200000166893, 256957.5152000002563 ], [ 358311.400399997830391, 256977.383099999278784 ], [ 358312.951899997889996, 256984.572900000959635 ], [ 358319.409599997103214, 256983.781399998813868 ], [ 358317.922799997031689, 256968.99269999936223 ], [ 358315.611800000071526, 256956.308200001716614 ], [ 358308.344200000166893, 256957.5152000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302381800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93419225, "LATITUDE": 18.34226903, "OBJECTID_1": 10655, "PARCEL_NO_": "105302381800", "Tax_Legal_": "VESTER GADE 54 QUEENS QUARTER", "Name": "BANFIELD, CLIVE E. C. , TRUSTEE", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4600, "Improved_V": 34500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.594868274699998, "SHAPE_Area": 67.921121856 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358459.915799997746944, 256980.299100000411272 ], [ 358454.346199996769428, 256971.011500000953674 ], [ 358451.299599997699261, 256975.737199999392033 ], [ 358449.960900001227856, 256977.666400000452995 ], [ 358452.485299997031689, 256980.8597999997437 ], [ 358455.674599997699261, 256985.107799999415874 ], [ 358459.915799997746944, 256980.299100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302462900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9354448, "LATITUDE": 18.34225958, "OBJECTID_1": 10806, "PARCEL_NO_": "105302462900", "Tax_Legal_": "REGJERINGS GADE 23B CROWN PRINCE QTR", "Name": "GABRIEL, HELEN,RUDOPLH E. SEBASTIEN JR", "Address": "PO Box 781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5100, "Improved_V": 33400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.255256264099998, "SHAPE_Area": 113.187823021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358327.501500003039837, 256980.470100000500679 ], [ 358325.181400001049042, 256968.840999998152256 ], [ 358317.922799997031689, 256968.99269999936223 ], [ 358319.409599997103214, 256983.781399998813868 ], [ 358327.483499996364117, 256982.580899998545647 ], [ 358327.501500003039837, 256980.470100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302441500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93441374, "LATITUDE": 18.34225346, "OBJECTID_1": 10749, "PARCEL_NO_": "105302441500", "Tax_Legal_": "STORE STRAEDE 6 CROWN PRINCE QUARTER", "Name": "DEPT. OF PROPERTY & PROCUREMENT", "Address": "BLDG #1 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.260306072100001, "SHAPE_Area": 96.961088994999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358426.23030000180006, 256971.778999999165535 ], [ 358426.594099998474121, 256974.096799999475479 ], [ 358427.366099998354912, 256983.988400001078844 ], [ 358438.002199999988079, 256977.152699999511242 ], [ 358437.240900002419949, 256971.869100000709295 ], [ 358426.23030000180006, 256971.778999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301085000", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-5", "ACRE": "0.23", "LONGITUDE": -64.94686952000001, "LATITUDE": 18.34218916, "OBJECTID_1": 9287, "PARCEL_NO_": "105301085000", "Tax_Legal_": "ALTONA & WELGUNST 212 CROWN PRINCE QUARTER", "Name": "FISHMAN, ELLIOT J", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 164100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.814413507, "SHAPE_Area": 863.972135095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357135.168499998748302, 256946.857900001108646 ], [ 357094.833099998533726, 256948.849800001829863 ], [ 357090.693599998950958, 256961.481499999761581 ], [ 357105.153300002217293, 256967.932700000703335 ], [ 357130.910400003194809, 256973.420800000429153 ], [ 357132.569700002670288, 256967.945999998599291 ], [ 357135.168499998748302, 256946.857900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302153000", "MAP": null, "PARCEL_NAM": "HAABETS GADE 15", "ACRE": null, "LONGITUDE": -64.93886815, "LATITUDE": 18.34219285, "OBJECTID_1": 9986, "PARCEL_NO_": "105302153000", "Tax_Legal_": "HAABETS GADE 15\nCROWN PRINCE QUARTER", "Name": "ALSON HENRY and PATRICE HENRY", "Address": "PO BOX 8596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 47100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.600111107199993, "SHAPE_Area": 354.62638111299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357968.776900000870228, 256967.612799998372793 ], [ 357971.289399996399879, 256956.656500000506639 ], [ 357953.563100002706051, 256955.033700000494719 ], [ 357950.199400000274181, 256971.260400000959635 ], [ 357966.251900002360344, 256980.046599999070168 ], [ 357968.776900000870228, 256967.612799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302281200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93657723, "LATITUDE": 18.34227912, "OBJECTID_1": 10458, "PARCEL_NO_": "105302281200", "Tax_Legal_": "REGJERINGS GADE 14A CROWN PRINCE QTR", "Name": "GEORGE, WILLIAM", "Address": "PO Box 7804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.107867826700002, "SHAPE_Area": 94.890680677199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358209.031099997460842, 256972.74549999833107 ], [ 358196.110299997031689, 256974.961800001561642 ], [ 358196.052699998021126, 256981.716299999505281 ], [ 358209.774400003254414, 256980.139899998903275 ], [ 358209.031099997460842, 256972.74549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302381300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93378214000001, "LATITUDE": 18.34220536, "OBJECTID_1": 10652, "PARCEL_NO_": "105302381300", "Tax_Legal_": "NORRE GADE 13B QUEENS QUARTER", "Name": "SHERIDAN, ROY ANA", "Address": "PO Box 10537", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46800, "Improved_V": 266300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.9809695422, "SHAPE_Area": 336.67044131799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358485.644799999892712, 256969.309900000691414 ], [ 358492.775700002908707, 256984.144900001585484 ], [ 358508.97749999910593, 256975.411499999463558 ], [ 358506.69879999756813, 256958.927600000053644 ], [ 358485.644799999892712, 256969.309900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302281800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93599181, "LATITUDE": 18.34223505, "OBJECTID_1": 10464, "PARCEL_NO_": "105302281800", "Tax_Legal_": "REGJERINGS GADE 18 CROWN PRINCE QTR", "Name": "HALL, OSWALD, OSCAR, HILDA &", "Address": "HC 764 Box 8581", "City": "Patillas", "State": "Puerto Rico", "Zip": 723, "Country": "United States", "Land_Value": 36800, "Improved_V": 132200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.131436456299994, "SHAPE_Area": 254.460839765 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358272.711800001561642, 256975.377700001001358 ], [ 358271.199799999594688, 256963.543999999761581 ], [ 358256.668200001120567, 256965.535999998450279 ], [ 358258.133400000631809, 256982.857700001448393 ], [ 358273.48030000180006, 256979.816899999976158 ], [ 358272.711800001561642, 256975.377700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302141500", "MAP": null, "PARCEL_NAM": "65", "ACRE": null, "LONGITUDE": -64.94063517, "LATITUDE": 18.34220193, "OBJECTID_1": 9917, "PARCEL_NO_": "105302141500", "Tax_Legal_": "ANNAS FANCY 65 CROWN PRINCE QUARTER", "Name": "STEPHAINE CALLWOOD & OTHERS", "Address": "759 Lincoln Pl", "City": "Brooklyn", "State": "New York", "Zip": 11216, "Country": "United States", "Land_Value": 28100, "Improved_V": 3800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.9766287554, "SHAPE_Area": 448.24151891000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357758.35809999704361, 256962.513099998235703 ], [ 357767.918799996376038, 256976.101300001144409 ], [ 357783.235100001096725, 256976.648899998515844 ], [ 357785.830300003290176, 256955.982900001108646 ], [ 357782.624799996614456, 256953.634700000286102 ], [ 357767.276100002229214, 256956.886500000953674 ], [ 357758.35809999704361, 256962.513099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302462800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93535055, "LATITUDE": 18.3422374, "OBJECTID_1": 10805, "PARCEL_NO_": "105302462800", "Tax_Legal_": "REGJERINGS GADE 24B CROWN PRINCE QTR", "Name": "FREEMAN, BENJAMIN", "Address": "820 SE Sweetbay Ave", "City": "Port Saint Lucie", "State": "Florida", "Zip": 34983, "Country": "United States", "Land_Value": 6400, "Improved_V": 44000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.990684056399999, "SHAPE_Area": 148.59061556099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358338.842000000178814, 256974.441199999302626 ], [ 358338.096799999475479, 256967.258000001311302 ], [ 358325.181400001049042, 256968.840999998152256 ], [ 358327.501500003039837, 256980.470100000500679 ], [ 358339.60869999974966, 256979.091600000858307 ], [ 358338.842000000178814, 256974.441199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302141600", "MAP": null, "PARCEL_NAM": "47", "ACRE": null, "LONGITUDE": -64.9403339, "LATITUDE": 18.34218965, "OBJECTID_1": 9918, "PARCEL_NO_": "105302141600", "Tax_Legal_": "ANNAS FANCY 47 CROWN PRINCE QUARTER", "Name": "HUGHES,ALBERTA, ERROL,EVA,GEORGE B.&RICHARD", "Address": "PO Box 11643", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19000, "Improved_V": 42000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.070119008700004, "SHAPE_Area": 402.28574721500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357817.107500001788139, 256976.081700000911951 ], [ 357818.863899998366833, 256959.208599999547005 ], [ 357794.724899999797344, 256953.100400000810623 ], [ 357792.966600000858307, 256970.184599999338388 ], [ 357808.26860000193119, 256972.420800000429153 ], [ 357817.107500001788139, 256976.081700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302381900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93414174, "LATITUDE": 18.34221099, "OBJECTID_1": 10656, "PARCEL_NO_": "105302381900", "Tax_Legal_": "VESTER GADE 4A QUEENS QUARTER", "Name": "MILLER, CYNTHIA & OTHERS", "Address": "PO Box 306391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.737494831699998, "SHAPE_Area": 107.615451374 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358459.959399998188019, 256963.107599999755621 ], [ 358458.26070000231266, 256965.49720000103116 ], [ 358456.154500000178814, 256968.206700000911951 ], [ 358454.346199996769428, 256971.011500000953674 ], [ 358459.915799997746944, 256980.299100000411272 ], [ 358464.552500002086163, 256975.942299999296665 ], [ 358466.460199996829033, 256974.149700000882149 ], [ 358466.825099997222424, 256973.875 ], [ 358459.959399998188019, 256963.107599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302391000", "MAP": null, "PARCEL_NAM": "2A", "ACRE": null, "LONGITUDE": -64.93298137, "LATITUDE": 18.34218157, "OBJECTID_1": 10673, "PARCEL_NO_": "105302391000", "Tax_Legal_": "SNEGLE GADE 2A QUEENS QUARTER", "Name": "LIEMANDT, ENTERPRISES", "Address": "5404 Store Tver Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22600, "Improved_V": 88500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.800500789699996, "SHAPE_Area": 338.54398577799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358580.105599999427795, 256955.728700000792742 ], [ 358571.079700000584126, 256974.019999999552965 ], [ 358587.943999998271465, 256982.17960000038147 ], [ 358594.495200000703335, 256970.411899998784065 ], [ 358592.896899998188019, 256968.710099998861551 ], [ 358582.522799998521805, 256955.959600001573563 ], [ 358580.105599999427795, 256955.728700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302463100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.935636, "LATITUDE": 18.34219251, "OBJECTID_1": 10808, "PARCEL_NO_": "105302463100", "Tax_Legal_": "REGJERINGS GADE 21 CROWN PRINCE", "Name": "RIVERS, CLIVE and VERNA", "Address": "PO BOX 308476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42000, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.285397730499994, "SHAPE_Area": 302.54389101499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358296.060699999332428, 256979.579500000923872 ], [ 358311.400399997830391, 256977.383099999278784 ], [ 358308.344200000166893, 256957.5152000002563 ], [ 358293.8108000010252, 256959.718299999833107 ], [ 358296.060699999332428, 256979.579500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302462600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93513975, "LATITUDE": 18.34221358, "OBJECTID_1": 10803, "PARCEL_NO_": "105302462600", "Tax_Legal_": "STRAND GADE 8 CROWN PRINCE QTR", "Name": "GEORGE, ELMO & MARY", "Address": "PO Box 782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20400, "Improved_V": 153500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.586140409499997, "SHAPE_Area": 175.39847131799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358362.318499997258186, 256963.656500000506639 ], [ 358347.785099998116493, 256965.859600000083447 ], [ 358348.528499998152256, 256973.254000000655651 ], [ 358349.284500002861023, 256979.170800000429153 ], [ 358359.773699998855591, 256978.412200000137091 ], [ 358362.318499997258186, 256963.656500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301151000", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-10", "ACRE": "0.23", "LONGITUDE": -64.9475016, "LATITUDE": 18.34213514, "OBJECTID_1": 9508, "PARCEL_NO_": "105301151000", "Tax_Legal_": "ALTONA 212A-10 SOUTHSIDE QTR", "Name": "FRANKLIN, VERNON", "Address": "10204 NW 234th St", "City": "Alachua", "State": "Florida", "Zip": 32615, "Country": "United States", "Land_Value": 48200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.61143700599999, "SHAPE_Area": 1201.4889118200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357065.85080000013113, 256943.335200000554323 ], [ 357051.466700002551079, 256928.018800001591444 ], [ 357045.772100001573563, 256933.882800001651049 ], [ 357024.655100002884865, 256951.652899999171495 ], [ 357020.583999998867512, 256956.263700000941753 ], [ 357042.255599997937679, 256968.051199998706579 ], [ 357052.615099996328354, 256974.070000000298023 ], [ 357056.756599999964237, 256969.64750000089407 ], [ 357064.094300001859665, 256960.208399999886751 ], [ 357072.786799997091293, 256951.350299999117851 ], [ 357065.85080000013113, 256943.335200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302152200", "MAP": null, "PARCEL_NAM": "HAABETS GADE 12", "ACRE": null, "LONGITUDE": -64.93933103000001, "LATITUDE": 18.34217877, "OBJECTID_1": 9978, "PARCEL_NO_": "105302152200", "Tax_Legal_": "HAABETS GADE 12 CROWN PRINCE QUARTER", "Name": "HOBSON, KENNETH & JUDITH", "Address": "PO Box 10764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15000, "Improved_V": 102200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.049413647799994, "SHAPE_Area": 328.24476605900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357903.402699999511242, 256974.465999998152256 ], [ 357919.536100000143051, 256973.753600001335144 ], [ 357920.511500000953674, 256953.918800000101328 ], [ 357904.387000001966953, 256953.575800001621246 ], [ 357903.402699999511242, 256974.465999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301111700", "MAP": null, "PARCEL_NAM": "200-3R", "ACRE": null, "LONGITUDE": -64.94599595, "LATITUDE": 18.34216551, "OBJECTID_1": 9409, "PARCEL_NO_": "105301111700", "Tax_Legal_": "ALTONA & WELGUNST 200-3R KRONP. QTR", "Name": "HARRY, FITZHERBERT (Trustee)", "Address": "PO Box 305463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30900, "Improved_V": 158800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.629023002, "SHAPE_Area": 646.87211159799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357225.462899997830391, 256949.074599999934435 ], [ 357192.436499997973442, 256945.004599999636412 ], [ 357189.848499998450279, 256964.826200000941753 ], [ 357222.882100000977516, 256968.051899999380112 ], [ 357224.626000002026558, 256952.656300000846386 ], [ 357225.462899997830391, 256949.074599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302461300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93457374, "LATITUDE": 18.34216017, "OBJECTID_1": 10791, "PARCEL_NO_": "105302461300", "Tax_Legal_": "STORE STRAEDE 7A KRONPRINDSENS QTR.", "Name": "MINOQUE, SEAMUS, ELLIS & LIAM", "Address": "PO Box 821", "City": "Manchester", "State": "Maryland", "Zip": 21102, "Country": "United States", "Land_Value": 24600, "Improved_V": 121600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.257420783900002, "SHAPE_Area": 227.56673951400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358414.818800002336502, 256953.531500000506639 ], [ 358409.986299999058247, 256952.85869999974966 ], [ 358409.853200003504753, 256968.478500001132488 ], [ 358409.779500000178814, 256977.132800001651049 ], [ 358420.263300001621246, 256977.007500000298023 ], [ 358420.373000003397465, 256964.131700001657009 ], [ 358417.223300002515316, 256955.239999998360872 ], [ 358416.42960000038147, 256953.755800001323223 ], [ 358414.818800002336502, 256953.531500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401380800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93263477000001, "LATITUDE": 18.34212555, "OBJECTID_1": 12050, "PARCEL_NO_": "105401380800", "Tax_Legal_": "WIMMELSKAFTS GADE 7 QUEENS QUARTER", "Name": "STEELE WIMMELSKAFTS, LLC", "Address": "4026 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 83000, "Improved_V": 85900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.739527105099995, "SHAPE_Area": 250.88645546399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358620.228799998760223, 256978.644099999219179 ], [ 358622.645999997854233, 256978.875 ], [ 358627.660099998116493, 256958.228900000452995 ], [ 358610.797600001096725, 256949.858199998736382 ], [ 358618.618000000715256, 256978.419799998402596 ], [ 358620.228799998760223, 256978.644099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302441600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93437747, "LATITUDE": 18.34218918, "OBJECTID_1": 10750, "PARCEL_NO_": "105302441600", "Tax_Legal_": "STORE STRAEDE 5B CROWN PRINCE QUARTER", "Name": "DEPT. OF PROPERTY & PROCUREMENT", "Address": "BLDG#1 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.036907984499997, "SHAPE_Area": 130.66092883499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358425.201899997889996, 256965.226700000464916 ], [ 358426.23030000180006, 256971.778999999165535 ], [ 358437.240900002419949, 256971.869100000709295 ], [ 358438.002199999988079, 256977.152699999511242 ], [ 358444.506700001657009, 256970.873100001364946 ], [ 358444.54619999974966, 256966.229400001466274 ], [ 358425.201899997889996, 256965.226700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302153200", "MAP": null, "PARCEL_NAM": "HAABETS GADE 13", "ACRE": null, "LONGITUDE": -64.93919505, "LATITUDE": 18.34216194, "OBJECTID_1": 9988, "PARCEL_NO_": "105302153200", "Tax_Legal_": "HAABETS GADE 13 CROWN PRINCE STREET", "Name": "TUITT, KENNETH,SR.", "Address": "1308 Third St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8300, "Improved_V": 17800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.0029583042, "SHAPE_Area": 103.826056455 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357922.770400002598763, 256972.724599998444319 ], [ 357927.627999998629093, 256970.442400000989437 ], [ 357930.991700001060963, 256954.215700000524521 ], [ 357923.736699998378754, 256953.945199999958277 ], [ 357922.770400002598763, 256972.724599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302281900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93590334, "LATITUDE": 18.34219817, "OBJECTID_1": 10465, "PARCEL_NO_": "105302281900", "Tax_Legal_": "REGJERINGS GADE 19 CROWN PRINCE QTR", "Name": "SPRAUVE, GAYLORD A", "Address": "3201 Southgreen Rd", "City": "Windsor Mill", "State": "Maryland", "Zip": 21244, "Country": "United States", "Land_Value": 9400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.921926612, "SHAPE_Area": 53.5302693338 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358276.746899999678135, 256974.988499999046326 ], [ 358276.043099999427795, 256962.950399998575449 ], [ 358271.199799999594688, 256963.543999999761581 ], [ 358272.711800001561642, 256975.377700001001358 ], [ 358276.746899999678135, 256974.988499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302382000", "MAP": "D9-7388-T004", "PARCEL_NAM": null, "ACRE": ".03", "LONGITUDE": -64.93407035, "LATITUDE": 18.34214272, "OBJECTID_1": 10657, "PARCEL_NO_": "105302382000", "Tax_Legal_": "VESTER GADE 3A QUEENS QUARTER", "Name": "WARNER, JOANN T.", "Address": "PO Box 307004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20700, "Improved_V": 129400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.784168854500003, "SHAPE_Area": 162.99794486299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358468.62049999833107, 256954.622000001370907 ], [ 358466.989399999380112, 256955.946299999952316 ], [ 358461.062700003385544, 256961.555500000715256 ], [ 358459.959399998188019, 256963.107599999755621 ], [ 358466.825099997222424, 256973.875 ], [ 358472.889600001275539, 256969.307799998670816 ], [ 358476.535199999809265, 256967.668299999088049 ], [ 358468.62049999833107, 256954.622000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301120800", "MAP": null, "PARCEL_NAM": "200-5A-5", "ACRE": null, "LONGITUDE": -64.94642307, "LATITUDE": 18.3420913, "OBJECTID_1": 9434, "PARCEL_NO_": "105301120800", "Tax_Legal_": "ALTONA & WELGUNST 200-5A-5 CROWN PRINCE QTR", "Name": "LARMONY, AUDREY", "Address": "PO Box 306871", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 73500, "Improved_V": 50200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.675435007, "SHAPE_Area": 1245.4946403 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357184.445299997925758, 256936.495400000363588 ], [ 357144.993500001728535, 256929.417500000447035 ], [ 357139.89130000025034, 256960.406500000506639 ], [ 357180.968299999833107, 256966.020100001245737 ], [ 357184.445299997925758, 256936.495400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302282000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93582101, "LATITUDE": 18.34218931, "OBJECTID_1": 10466, "PARCEL_NO_": "105302282000", "Tax_Legal_": "REGJERINGS GADE 20 CROWN PRINCE QTR", "Name": "HOBSON, JOSEPH", "Address": "BOX 3851", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11800, "Improved_V": 124100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.381203573999997, "SHAPE_Area": 158.037908262 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358276.043099999427795, 256962.950399998575449 ], [ 358276.746899999678135, 256974.988499999046326 ], [ 358289.662299998104572, 256973.405499998480082 ], [ 358288.960299998521805, 256961.156300000846386 ], [ 358276.043099999427795, 256962.950399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401391600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93177451, "LATITUDE": 18.34207047, "OBJECTID_1": 12064, "PARCEL_NO_": "105401391600", "Tax_Legal_": "DRONNINGENS GADE 5 QUEENS QUARTER", "Name": "CENTER MALL CORP.", "Address": "PO Box 1207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1193400, "Improved_V": 2437400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.962737168, "SHAPE_Area": 642.10618744199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358717.837600000202656, 256974.165600001811981 ], [ 358722.149700000882149, 256941.270300000905991 ], [ 358704.421599999070168, 256939.85869999974966 ], [ 358699.254699997603893, 256978.44649999961257 ], [ 358717.837600000202656, 256974.165600001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302462700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93525645, "LATITUDE": 18.34213918, "OBJECTID_1": 10804, "PARCEL_NO_": "105302462700", "Tax_Legal_": "REGJERINGS GADE 25 CROWN PRINCE QTR", "Name": "CHICK & CHIPS INC.", "Address": "11400 WINDY HARBOR WAY", "City": "BOWIE", "State": "Maryland", "Zip": 20720, "Country": "United States", "Land_Value": 35700, "Improved_V": 38700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.912877763700003, "SHAPE_Area": 211.992608034 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358336.604699999094009, 256953.10249999910593 ], [ 358338.096799999475479, 256967.258000001311302 ], [ 358338.842000000178814, 256974.441199999302626 ], [ 358348.528499998152256, 256973.254000000655651 ], [ 358347.785099998116493, 256965.859600000083447 ], [ 358346.294799998402596, 256951.493000000715256 ], [ 358336.604699999094009, 256953.10249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302461800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9349455, "LATITUDE": 18.34220596, "OBJECTID_1": 10796, "PARCEL_NO_": "105302461800", "Tax_Legal_": "STRAND GADE 6 CROWN PRINCE QTR", "Name": "FUERTES, MIGUEL & CRISTINA", "Address": "PO Box 833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35700, "Improved_V": 10600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.639906624200002, "SHAPE_Area": 140.845965079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358385.672799997031689, 256967.22520000115037 ], [ 358367.13120000064373, 256966.651200000196695 ], [ 358365.450300000607967, 256974.659000001847744 ], [ 358374.32150000333786, 256974.520500000566244 ], [ 358383.999099999666214, 256974.388599999248981 ], [ 358385.672799997031689, 256967.22520000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302392300", "MAP": "F9-811-T61", "PARCEL_NAM": "6A", "ACRE": null, "LONGITUDE": -64.93343461000001, "LATITUDE": 18.34220728, "OBJECTID_1": 10685, "PARCEL_NO_": "105302392300", "Tax_Legal_": "SNEGLE GADE 6A QUEENS QTR", "Name": "BROWN, VICTOR S", "Address": "PO Box 307513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.205416379, "SHAPE_Area": 163.91049436399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358538.062299996614456, 256968.894600000232458 ], [ 358525.173900000751019, 256967.3114 ], [ 358523.491099998354912, 256975.530299998819828 ], [ 358544.451700001955032, 256976.124099999666214 ], [ 358549.338100001215935, 256970.464499998837709 ], [ 358538.062299996614456, 256968.894600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401420900", "MAP": null, "PARCEL_NAM": "14 WIMMELSKAFTS GADE", "ACRE": null, "LONGITUDE": -64.93199965, "LATITUDE": 18.34214926, "OBJECTID_1": 12100, "PARCEL_NO_": "105401420900", "Tax_Legal_": "DRONNINGENS GADE 6&7B QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2200300, "Improved_V": 1605900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.374915804499999, "SHAPE_Area": 158.633420495 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358683.497900001704693, 256957.863299999386072 ], [ 358680.145000003278255, 256972.823499999940395 ], [ 358690.601899996399879, 256975.864399999380112 ], [ 358693.146700002253056, 256961.10869999974966 ], [ 358683.497900001704693, 256957.863299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302392100", "MAP": "D9-7435-T004", "PARCEL_NAM": "6 REM", "ACRE": ".096", "LONGITUDE": -64.9335996, "LATITUDE": 18.34214849, "OBJECTID_1": 10683, "PARCEL_NO_": "105302392100", "Tax_Legal_": "6 REM SNEGLE GADE QUEENS QTR", "Name": "ATELIER 6, LLC", "Address": "6 Snegle Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.121850980600001, "SHAPE_Area": 290.799859524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358525.173900000751019, 256967.3114 ], [ 358527.679099999368191, 256957.199499998241663 ], [ 358509.139300003647804, 256956.41440000012517 ], [ 358510.591899998486042, 256975.213700000196695 ], [ 358523.491099998354912, 256975.530299998819828 ], [ 358525.173900000751019, 256967.3114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302141200", "MAP": null, "PARCEL_NAM": "48", "ACRE": null, "LONGITUDE": -64.94095839000001, "LATITUDE": 18.34208486, "OBJECTID_1": 9912, "PARCEL_NO_": "105302141200", "Tax_Legal_": "ANNAS FANCY 48 CROWN PRINCE QTR", "Name": "CALLWOOD, OLIVE & CHILDREN", "Address": "PO Box 171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56200, "Improved_V": 139000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.72870184600001, "SHAPE_Area": 774.01713973400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357757.594999998807907, 256957.440600000321865 ], [ 357751.291900001466274, 256940.079300001263618 ], [ 357733.61599999666214, 256932.546399999409914 ], [ 357727.001900002360344, 256951.701799999922514 ], [ 357725.306500002741814, 256961.398200001567602 ], [ 357725.259800001978874, 256966.886199999600649 ], [ 357727.664300002157688, 256968.594700001180172 ], [ 357741.391400001943111, 256966.385000001639128 ], [ 357751.104900002479553, 256962.031500000506639 ], [ 357757.594999998807907, 256957.440600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302461500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93476351, "LATITUDE": 18.34218346, "OBJECTID_1": 10793, "PARCEL_NO_": "105302461500", "Tax_Legal_": "GAMLE GADE 3OB CROWN PRINCE QTR", "Name": "LANCLOS, L & SMITH S.", "Address": "BOX 3813", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.050495613700001, "SHAPE_Area": 83.3160528043 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358398.606200002133846, 256963.531300000846386 ], [ 358390.546700000762939, 256963.043200001120567 ], [ 358390.460400000214577, 256973.175000000745058 ], [ 358399.328000001609325, 256973.458599999547005 ], [ 358398.575599998235703, 256967.119699999690056 ], [ 358398.606200002133846, 256963.531300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302152900", "MAP": null, "PARCEL_NAM": "NY NORDSIDEVEJ 7B", "ACRE": null, "LONGITUDE": -64.93870786, "LATITUDE": 18.34216654, "OBJECTID_1": 9985, "PARCEL_NO_": "105302152900", "Tax_Legal_": "NY NORDSIDEVEJ 7B CROWN PRINCE QUARTER", "Name": "JACOB, MARY & PAUL, MAXIMUS", "Address": "PO Box 306203", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8000, "Improved_V": 57700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.115599837300003, "SHAPE_Area": 178.802768837 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357968.776900000870228, 256967.612799998372793 ], [ 357984.885200001299381, 256969.855500001460314 ], [ 357985.793999999761581, 256957.830600000917912 ], [ 357971.289399996399879, 256956.656500000506639 ], [ 357968.776900000870228, 256967.612799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302461700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93482813, "LATITUDE": 18.34218777, "OBJECTID_1": 10795, "PARCEL_NO_": "105302461700", "Tax_Legal_": "29B GAMLE GADE KRONDPRINDSENS GADE", "Name": "CARLOS REYES, MARIA ALTAGRACIA", "Address": "2106 Strande Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.3928524162, "SHAPE_Area": 55.147538387499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358386.515100002288818, 256963.010200001299381 ], [ 358385.672799997031689, 256967.22520000115037 ], [ 358383.999099999666214, 256974.388599999248981 ], [ 358387.229699999094009, 256973.781800001859665 ], [ 358390.460400000214577, 256973.175000000745058 ], [ 358390.546700000762939, 256963.043200001120567 ], [ 358386.515100002288818, 256963.010200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302282500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93673666, "LATITUDE": 18.34213795, "OBJECTID_1": 10471, "PARCEL_NO_": "105302282500", "Tax_Legal_": "REGJERINGS GADE 12 CROWN PRINCE QTR", "Name": "PARROTT, ROJELIO", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6200, "Improved_V": 41100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.994981511600002, "SHAPE_Area": 111.179122998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358189.821299999952316, 256967.921100001782179 ], [ 358190.638700000941753, 256954.651999998837709 ], [ 358182.57379999756813, 256954.797100000083447 ], [ 358181.743900001049042, 256969.225699998438358 ], [ 358189.821299999952316, 256967.921100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302390800", "MAP": null, "PARCEL_NAM": "3 SNEGLE GADE", "ACRE": null, "LONGITUDE": -64.93310742, "LATITUDE": 18.3421342, "OBJECTID_1": 10672, "PARCEL_NO_": "105302390800", "Tax_Legal_": "SNEGLE GADE 2B & 3 QUEENS QUARTER", "Name": "HENLEY PANT, MONIQUE", "Address": "PO Box 303253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 190000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.105060830299998, "SHAPE_Area": 184.75970654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358559.04619999974966, 256966.744300000369549 ], [ 358571.079700000584126, 256974.019999999552965 ], [ 358580.105599999427795, 256955.728700000792742 ], [ 358569.603799998760223, 256957.964800000190735 ], [ 358563.119099996984005, 256961.922499999403954 ], [ 358559.04619999974966, 256966.744300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401420900", "MAP": null, "PARCEL_NAM": "7B DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.93209069, "LATITUDE": 18.34201878, "OBJECTID_1": 12100, "PARCEL_NO_": "105401420900", "Tax_Legal_": "DRONNINGENS GADE 6&7B QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2200300, "Improved_V": 1605900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.34537257, "SHAPE_Area": 540.74643080500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358674.840700000524521, 256932.883400000631809 ], [ 358665.676399998366833, 256967.427799999713898 ], [ 358680.145000003278255, 256972.823499999940395 ], [ 358683.497900001704693, 256957.863299999386072 ], [ 358688.526399999856949, 256935.528599999845028 ], [ 358674.840700000524521, 256932.883400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302282600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93661009, "LATITUDE": 18.34210462, "OBJECTID_1": 10472, "PARCEL_NO_": "105302282600", "Tax_Legal_": "REGJERINGS GADE 11A CROWN PRINCE QTR", "Name": "NELSON, OVIDA MARSH", "Address": "2211 Regjerrings Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21700, "Improved_V": 65800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.778459038600005, "SHAPE_Area": 316.55573559599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358209.747900001704693, 256964.702500000596046 ], [ 358208.42790000140667, 256948.886999998241663 ], [ 358190.678300000727177, 256950.008299998939037 ], [ 358190.638700000941753, 256954.651999998837709 ], [ 358189.821299999952316, 256967.921100001782179 ], [ 358209.747900001704693, 256964.702500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302463200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93546603, "LATITUDE": 18.34213374, "OBJECTID_1": 10809, "PARCEL_NO_": "105302463200", "Tax_Legal_": "REGJERINGS GADE 23A CROWN PRINCE QTR", "Name": "GABRIEL, HELEN,RUDOPLH E. SEBASTIEN JR", "Address": "PO Box 781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5500, "Improved_V": 40500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.452057031800003, "SHAPE_Area": 97.528565926300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358315.611800000071526, 256956.308200001716614 ], [ 358317.922799997031689, 256968.99269999936223 ], [ 358325.181400001049042, 256968.840999998152256 ], [ 358322.879399999976158, 256955.101100001484156 ], [ 358315.611800000071526, 256956.308200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302391900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93332813000001, "LATITUDE": 18.34213153, "OBJECTID_1": 10681, "PARCEL_NO_": "105302391900", "Tax_Legal_": "SNEGLE GADE 4 QUEENS QUARTER", "Name": "BROWN, VICTOR S", "Address": "PO Box 307513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33100, "Improved_V": 208200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.559460525200002, "SHAPE_Area": 158.377884456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358541.382799997925758, 256957.733800001442432 ], [ 358538.062299996614456, 256968.894600000232458 ], [ 358549.338100001215935, 256970.464499998837709 ], [ 358554.226300001144409, 256964.593899998813868 ], [ 358554.256899997591972, 256961.00560000166297 ], [ 358551.863099999725819, 256958.030699998140335 ], [ 358541.382799997925758, 256957.733800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501021200", "MAP": null, "PARCEL_NAM": "52E-2", "ACRE": "0.92", "LONGITUDE": -64.91213873, "LATITUDE": 18.34178345, "OBJECTID_1": 19721, "PARCEL_NO_": "105501021200", "Tax_Legal_": "52E-2 ESTATE THOMAS 6A NEW QTR", "Name": "MELODY PROPERTIES LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 801500, "Improved_V": 806600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.44967284099999, "SHAPE_Area": 3606.7773710500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360802.939300000667572, 256899.194400001317263 ], [ 360760.157999999821186, 256904.332699999213219 ], [ 360767.705099999904633, 256964.978300001472235 ], [ 360769.920800000429153, 256988.850000001490116 ], [ 360811.89580000191927, 256983.705200001597404 ], [ 360802.939300000667572, 256899.194400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302463300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93536506, "LATITUDE": 18.34212227, "OBJECTID_1": 10810, "PARCEL_NO_": "105302463300", "Tax_Legal_": "REGJERINGS GADE 24A CROWN PRINCE QTR", "Name": "NIBBS, A,L,A,A & ANNA NIBBS RAWLS", "Address": "PO Box 308591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.444758895699998, "SHAPE_Area": 177.611701157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358325.181400001049042, 256968.840999998152256 ], [ 358338.096799999475479, 256967.258000001311302 ], [ 358336.604699999094009, 256953.10249999910593 ], [ 358324.49379999935627, 256954.903200000524521 ], [ 358325.181400001049042, 256968.840999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302461400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93467032, "LATITUDE": 18.34210874, "OBJECTID_1": 10792, "PARCEL_NO_": "105302461400", "Tax_Legal_": "STORE STRAEDE 8A CROWN PRINCE QTR", "Name": "CUTTER, DONALD", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.4663572539, "SHAPE_Area": 167.65454216699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358409.986299999058247, 256952.85869999974966 ], [ 358403.542999997735023, 256951.961599998176098 ], [ 358400.321299999952316, 256951.513000000268221 ], [ 358398.606200002133846, 256963.531300000846386 ], [ 358398.575599998235703, 256967.119699999690056 ], [ 358404.214400000870228, 256967.799100000411272 ], [ 358409.853200003504753, 256968.478500001132488 ], [ 358409.986299999058247, 256952.85869999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302282700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93648159, "LATITUDE": 18.34202399, "OBJECTID_1": 10473, "PARCEL_NO_": "105302282700", "Tax_Legal_": "REGJERINGS GADE 10 CROWN PRINCE QTR", "Name": "WILLIAMS, WINSTON M.A., TRUSTEE", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15300, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.867863243800002, "SHAPE_Area": 276.96314838699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358218.681699998676777, 256963.259399998933077 ], [ 358217.412500001490116, 256935.450599998235703 ], [ 358207.743900001049042, 256934.527100000530481 ], [ 358207.684600003063679, 256941.49269999936223 ], [ 358208.42790000140667, 256948.886999998241663 ], [ 358209.747900001704693, 256964.702500000596046 ], [ 358218.681699998676777, 256963.259399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302392000", "MAP": null, "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.9334532, "LATITUDE": 18.34212236, "OBJECTID_1": 10682, "PARCEL_NO_": "105302392000", "Tax_Legal_": "SNEGLE GADE 5 QUEENS QUARTER", "Name": "ESTRELLA, JULIANA C", "Address": "P O BOX 2631", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8000, "Improved_V": 50600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.7612716589, "SHAPE_Area": 144.505421334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358527.679099999368191, 256957.199499998241663 ], [ 358525.173900000751019, 256967.3114 ], [ 358538.062299996614456, 256968.894600000232458 ], [ 358541.382799997925758, 256957.733800001442432 ], [ 358527.679099999368191, 256957.199499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302461900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93493819, "LATITUDE": 18.34214736, "OBJECTID_1": 10797, "PARCEL_NO_": "105302461900", "Tax_Legal_": "STRAND GADE 5 CROWN PRINCE QTR", "Name": "FUERTES, MIGUEL & OTHERS", "Address": "PO Box 833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11900, "Improved_V": 22300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.949892667, "SHAPE_Area": 99.060354068300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358386.515100002288818, 256963.010200001299381 ], [ 358367.991499997675419, 256960.325500000268221 ], [ 358367.13120000064373, 256966.651200000196695 ], [ 358385.672799997031689, 256967.22520000115037 ], [ 358386.515100002288818, 256963.010200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302391100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93290474, "LATITUDE": 18.34211312, "OBJECTID_1": 10674, "PARCEL_NO_": "105302391100", "Tax_Legal_": "SNEGLE GADE 1 QUEENS QUARTER", "Name": "CALO, JACOB", "Address": "520 Horizon Way", "City": "MARTINSBURG,", "State": "West Virginia", "Zip": 25403, "Country": "United States", "Land_Value": 6300, "Improved_V": 63100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.0785079272, "SHAPE_Area": 75.401540152300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358592.896899998188019, 256968.710099998861551 ], [ 358598.580700002610683, 256964.11259999871254 ], [ 358590.567900002002716, 256958.136399999260902 ], [ 358582.522799998521805, 256955.959600001573563 ], [ 358592.896899998188019, 256968.710099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401420600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93219822, "LATITUDE": 18.34198007, "OBJECTID_1": 12099, "PARCEL_NO_": "105401420600", "Tax_Legal_": "7A DRONNINGENS GADE QUEENS QTR.", "Name": "D G PORTFOLIO, INC.", "Address": "PO Box 6280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 624600, "Improved_V": 571900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.563217662599996, "SHAPE_Area": 326.79938805699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358665.186499997973442, 256930.271299999207258 ], [ 358657.64919999986887, 256963.1402000002563 ], [ 358665.676399998366833, 256967.427799999713898 ], [ 358674.840700000524521, 256932.883400000631809 ], [ 358665.186499997973442, 256930.271299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302282800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93640636000001, "LATITUDE": 18.34202429, "OBJECTID_1": 10474, "PARCEL_NO_": "105302282800", "Tax_Legal_": "REGJERINGS GADE 10A CROWN PRINCE QTR", "Name": "WILLIAMS, WINSTON M.A., TRUSTEE", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6600, "Improved_V": 35100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.950723689300006, "SHAPE_Area": 169.23482338599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358225.10249999910593, 256962.222300000488758 ], [ 358223.807199999690056, 256942.046799998730421 ], [ 358223.857600003480911, 256936.136599998921156 ], [ 358217.412500001490116, 256935.450599998235703 ], [ 358218.681699998676777, 256963.259399998933077 ], [ 358225.10249999910593, 256962.222300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302463600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93514276000001, "LATITUDE": 18.34209019, "OBJECTID_1": 10813, "PARCEL_NO_": "105302463600", "Tax_Legal_": "REGJERINGS GADE 26 CROWN PRINCE QTR", "Name": "NIBBS, A,L,A,A & ANNA NIBBS RAWLS", "Address": "PO Box 308591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26700, "Improved_V": 297400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.521086427, "SHAPE_Area": 219.90803385199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358363.999499998986721, 256955.648699998855591 ], [ 358357.599299997091293, 256949.685699999332428 ], [ 358346.294799998402596, 256951.493000000715256 ], [ 358347.785099998116493, 256965.859600000083447 ], [ 358362.318499997258186, 256963.656500000506639 ], [ 358363.999499998986721, 256955.648699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302441400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93437862, "LATITUDE": 18.34212893, "OBJECTID_1": 10748, "PARCEL_NO_": "105302441400", "Tax_Legal_": "5A STORE STRAEDE & 4 NELLIKE GADE CROWN PRINCE QTR", "Name": "FONSECA, RAY", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.694968195800001, "SHAPE_Area": 113.349048349 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358425.244099996984005, 256960.793499998748302 ], [ 358425.201899997889996, 256965.226700000464916 ], [ 358444.54619999974966, 256966.229400001466274 ], [ 358443.000100001692772, 256958.406199999153614 ], [ 358433.311800003051758, 256959.80460000038147 ], [ 358425.244099996984005, 256960.793499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302441100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93424349, "LATITUDE": 18.34211125, "OBJECTID_1": 10746, "PARCEL_NO_": "105302441100", "Tax_Legal_": "GUTTETS GADE 8 CROWN PRINCE QUARTER", "Name": "HARRIS, SHEILA", "Address": "2006 Vester Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6500, "Improved_V": 12100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.5565268788, "SHAPE_Area": 95.487447872700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358457.513800002634525, 256958.524999998509884 ], [ 358457.537100002169609, 256955.780999999493361 ], [ 358443.000100001692772, 256958.406199999153614 ], [ 358444.54619999974966, 256966.229400001466274 ], [ 358449.384099997580051, 256966.269000001251698 ], [ 358457.513800002634525, 256958.524999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302462000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93492317, "LATITUDE": 18.34209542, "OBJECTID_1": 10798, "PARCEL_NO_": "105302462000", "Tax_Legal_": "4 STRAND GADE KRONPRINDSENS QTR", "Name": "VANBEVERHOUDT SQUARE LLC", "Address": "PO Box 56", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.555710651399998, "SHAPE_Area": 118.635165937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358376.101400002837181, 256954.903400000184774 ], [ 358369.658100001513958, 256954.006299998611212 ], [ 358367.991499997675419, 256960.325500000268221 ], [ 358386.515100002288818, 256963.010200001299381 ], [ 358387.375399999320507, 256956.684399999678135 ], [ 358376.101400002837181, 256954.903400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302142100", "MAP": null, "PARCEL_NAM": "42", "ACRE": null, "LONGITUDE": -64.94031446, "LATITUDE": 18.34204623, "OBJECTID_1": 9923, "PARCEL_NO_": "105302142100", "Tax_Legal_": "ANNAS FANCY 42 QUEENS QUARTER", "Name": "SMYTH, ISIAH & LINDO, MARIE", "Address": "8 W 118th St", "City": "New York", "State": "New York", "Zip": 10026, "Country": "United States", "Land_Value": 19000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.6101116233, "SHAPE_Area": 375.05174795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357819.808700002729893, 256942.962099999189377 ], [ 357798.083200000226498, 256937.506999999284744 ], [ 357798.058100000023842, 256940.462099999189377 ], [ 357794.724899999797344, 256953.100400000810623 ], [ 357818.863899998366833, 256959.208599999547005 ], [ 357819.760200001299381, 256948.661299999803305 ], [ 357819.808700002729893, 256942.962099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302461600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9347758, "LATITUDE": 18.34208071, "OBJECTID_1": 10794, "PARCEL_NO_": "105302461600", "Tax_Legal_": "STORE STRAEDE 8B CROWN PRINCE QTR", "Name": "CUTTER, DONALD", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8000, "Improved_V": 34400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.959753451600001, "SHAPE_Area": 150.292910557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358400.321299999952316, 256951.513000000268221 ], [ 358395.488799996674061, 256950.840199999511242 ], [ 358389.045500002801418, 256949.94310000166297 ], [ 358387.375399999320507, 256956.684399999678135 ], [ 358386.515100002288818, 256963.010200001299381 ], [ 358390.546700000762939, 256963.043200001120567 ], [ 358398.606200002133846, 256963.531300000846386 ], [ 358400.321299999952316, 256951.513000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302283100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93614833, "LATITUDE": 18.34197401, "OBJECTID_1": 10477, "PARCEL_NO_": "105302283100", "Tax_Legal_": "REGJERINGS GADE 8 CROWN PRINCE QTR", "Name": "MILLIN, AGNES & KILPATRICK, ALLAN", "Address": "PO Box 401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.323609172600001, "SHAPE_Area": 364.35862061099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358254.394000001251698, 256957.713500000536442 ], [ 358255.305600002408028, 256936.182900000363588 ], [ 358255.359499998390675, 256929.850499998778105 ], [ 358242.456699997186661, 256929.956000000238419 ], [ 358242.41889999806881, 256934.388700000941753 ], [ 358241.50789999961853, 256958.5625 ], [ 358254.394000001251698, 256957.713500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401420500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93227828000001, "LATITUDE": 18.34195803, "OBJECTID_1": 12098, "PARCEL_NO_": "105401420500", "Tax_Legal_": "DRONNINGENS GADE 8A QUEENS QTR", "Name": "DAVID EDMOND TINDLE REVOCABLE FAMILY TRUST", "Address": "19504 Front St", "City": "Leesburg", "State": "Virginia", "Zip": 20176, "Country": "United States", "Land_Value": 562500, "Improved_V": 522000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.977945693699994, "SHAPE_Area": 266.80016708699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358657.64919999986887, 256963.1402000002563 ], [ 358665.186499997973442, 256930.271299999207258 ], [ 358657.945900000631809, 256928.312199998646975 ], [ 358649.622000001370907, 256958.852600000798702 ], [ 358657.64919999986887, 256963.1402000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302141300", "MAP": null, "PARCEL_NAM": "39 UPPER 1/2", "ACRE": null, "LONGITUDE": -64.9407623, "LATITUDE": 18.34203792, "OBJECTID_1": 9914, "PARCEL_NO_": "105302141300", "Tax_Legal_": "ANNAS FANCY 39 UPPER 1/2 CROWN PRINCE QTR", "Name": "HART, RICHARDSN, MARTIN", "Address": "PO Box 1423", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.030173662499998, "SHAPE_Area": 201.18540604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357769.023599997162819, 256941.068799998611212 ], [ 357751.291900001466274, 256940.079300001263618 ], [ 357757.594999998807907, 256957.440600000321865 ], [ 357764.081399999558926, 256953.271800000220537 ], [ 357768.125600002706051, 256951.827199999243021 ], [ 357769.023599997162819, 256941.068799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302283200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93601574, "LATITUDE": 18.34199589, "OBJECTID_1": 10478, "PARCEL_NO_": "105302283200", "Tax_Legal_": "REGJERINGS GADE 7 CROWN PRINCE QTR", "Name": "WALLACE, LUPERCIO & CECILE", "Address": "PO Box 253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14600, "Improved_V": 105400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.692652425299997, "SHAPE_Area": 322.27468930600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358271.083499997854233, 256955.716499999165535 ], [ 358269.781400002539158, 256940.734299998730421 ], [ 358269.021899998188019, 256935.239700000733137 ], [ 358255.305600002408028, 256936.182900000363588 ], [ 358254.394000001251698, 256957.713500000536442 ], [ 358271.083499997854233, 256955.716499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302441300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93445512, "LATITUDE": 18.34203254, "OBJECTID_1": 10747, "PARCEL_NO_": "105302441300", "Tax_Legal_": "4 STORE STRAEDE CROWN PRINCE QTR", "Name": "FONSECA, RAY", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19000, "Improved_V": 149900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.984276847499999, "SHAPE_Area": 143.544977746 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358419.872500002384186, 256944.10700000077486 ], [ 358425.271099999547005, 256957.95719999819994 ], [ 358425.244099996984005, 256960.793499998748302 ], [ 358433.311800003051758, 256959.80460000038147 ], [ 358431.018700003623962, 256945.009300000965595 ], [ 358419.872500002384186, 256944.10700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302382200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93390381, "LATITUDE": 18.34203562, "OBJECTID_1": 10659, "PARCEL_NO_": "105302382200", "Tax_Legal_": "VESTER GADE 2 QUEENS QUARTER", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.266539162900003, "SHAPE_Area": 148.32023382099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358492.993299998342991, 256958.604299999773502 ], [ 358486.463500000536442, 256943.436099998652935 ], [ 358479.848200000822544, 256946.262600000947714 ], [ 358477.954300001263618, 256947.281300000846386 ], [ 358485.680799998342991, 256962.538100000470877 ], [ 358488.133900001645088, 256961.097699999809265 ], [ 358492.993299998342991, 256958.604299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401420900", "MAP": null, "PARCEL_NAM": "6 DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.93196267, "LATITUDE": 18.34197791, "OBJECTID_1": 12100, "PARCEL_NO_": "105401420900", "Tax_Legal_": "DRONNINGENS GADE 6&7B QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2200300, "Improved_V": 1605900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.067162709300007, "SHAPE_Area": 234.886484736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358683.497900001704693, 256957.863299999386072 ], [ 358693.146700002253056, 256961.10869999974966 ], [ 358698.185999996960163, 256937.507500000298023 ], [ 358688.526399999856949, 256935.528599999845028 ], [ 358683.497900001704693, 256957.863299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301150700", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-4", "ACRE": "0.23", "LONGITUDE": -64.9468519, "LATITUDE": 18.34196787, "OBJECTID_1": 9506, "PARCEL_NO_": "105301150700", "Tax_Legal_": "ALTONA & WELGUNST 212A-4 CROWN PRINCE QTR.", "Name": "STRIDIRON, LEAL A. & LAUREN", "Address": "PO BOX 307923", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63200, "Improved_V": 93800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.23947692199999, "SHAPE_Area": 1075.1188246500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357138.855599999427795, 256921.098600000143051 ], [ 357101.667900003492832, 256919.041499998420477 ], [ 357101.528200000524521, 256920.195900000631809 ], [ 357094.833099998533726, 256948.849800001829863 ], [ 357135.168499998748302, 256946.857900001108646 ], [ 357138.598700001835823, 256922.821299999952316 ], [ 357138.855599999427795, 256921.098600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302441400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93436183, "LATITUDE": 18.34203361, "OBJECTID_1": 10748, "PARCEL_NO_": "105302441400", "Tax_Legal_": "5A STORE STRAEDE & 4 NELLIKE GADE CROWN PRINCE QTR", "Name": "FONSECA, RAY", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.560528596700003, "SHAPE_Area": 143.22905345199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358431.018700003623962, 256945.009300000965595 ], [ 358433.311800003051758, 256959.80460000038147 ], [ 358443.000100001692772, 256958.406199999153614 ], [ 358442.299900002777576, 256945.945999998599291 ], [ 358431.018700003623962, 256945.009300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301111600", "MAP": null, "PARCEL_NAM": "200-3Q", "ACRE": null, "LONGITUDE": -64.94597408, "LATITUDE": 18.34201227, "OBJECTID_1": 9408, "PARCEL_NO_": "105301111600", "Tax_Legal_": "ALTONA & WELGUNST 200-3Q KRONP. QTR", "Name": "FRANCIS, MAXINE", "Address": "6471 NW 21st Ct", "City": "SUNRISE", "State": "Florida", "Zip": 33313, "Country": "United States", "Land_Value": 30900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.788172614800004, "SHAPE_Area": 484.83519419100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357227.203199997544289, 256934.101199999451637 ], [ 357194.169600002467632, 256930.875500001013279 ], [ 357192.436499997973442, 256945.004599999636412 ], [ 357225.462899997830391, 256949.074599999934435 ], [ 357226.355499997735023, 256938.949400000274181 ], [ 357227.203199997544289, 256934.101199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302283300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93592877, "LATITUDE": 18.34200939, "OBJECTID_1": 10479, "PARCEL_NO_": "105302283300", "Tax_Legal_": "REGJERINGS GADE 6 CROWN PRINCE QTR", "Name": "MADURO, JR, THEODORE A. & BARBARA MADURO-WYDER & OTHERS", "Address": "PO BOX 1842", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.854826346899998, "SHAPE_Area": 36.532902949799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358273.513599999248981, 256955.425700001418591 ], [ 358272.202200002968311, 256940.543000001460314 ], [ 358269.781400002539158, 256940.734299998730421 ], [ 358271.083499997854233, 256955.716499999165535 ], [ 358273.513599999248981, 256955.425700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302283400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93585291, "LATITUDE": 18.3420019, "OBJECTID_1": 10480, "PARCEL_NO_": "105302283400", "Tax_Legal_": "REGJERINGS GADE 5 CROWN PRINCE QTR", "Name": "MADURO, JR, THEODORE A. & BARBARA MADURO-WYDER & OTHERS", "Address": "PO BOX 1842", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 53500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.778463752199997, "SHAPE_Area": 201.262987802 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358287.260499998927116, 256953.780900001525879 ], [ 358285.918499998748302, 256939.599800001829863 ], [ 358272.202200002968311, 256940.543000001460314 ], [ 358273.513599999248981, 256955.425700001418591 ], [ 358287.260499998927116, 256953.780900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302441000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93424608, "LATITUDE": 18.34203001, "OBJECTID_1": 10745, "PARCEL_NO_": "105302441000", "Tax_Legal_": "NELLIKE GADE 5 CROWN PRINCE QUARTER", "Name": "MCTAVOS, J", "Address": "2186 5th Ave", "City": "New York", "State": "New York", "Zip": 10037, "Country": "United States", "Land_Value": 4100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.495775383400002, "SHAPE_Area": 153.866656576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358442.299900002777576, 256945.945999998599291 ], [ 358443.000100001692772, 256958.406199999153614 ], [ 358457.537100002169609, 256955.780999999493361 ], [ 358456.804499998688698, 256947.120200000703335 ], [ 358442.299900002777576, 256945.945999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302440900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93413587000001, "LATITUDE": 18.3420232, "OBJECTID_1": 10744, "PARCEL_NO_": "105302440900", "Tax_Legal_": "GUTTETS GADE 6&7 CROWN PRINCE QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.016677508299999, "SHAPE_Area": 67.487193109800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358457.537100002169609, 256955.780999999493361 ], [ 358457.513800002634525, 256958.524999998509884 ], [ 358468.891999997198582, 256948.063499998301268 ], [ 358456.804499998688698, 256947.120200000703335 ], [ 358457.537100002169609, 256955.780999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302382300", "MAP": null, "PARCEL_NAM": "VESTER GADE 1B", "ACRE": null, "LONGITUDE": -64.93382124, "LATITUDE": 18.34199921, "OBJECTID_1": 10660, "PARCEL_NO_": "105302382300", "Tax_Legal_": "VESTER GADE 1B QUEENS QUARTER", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.453399687599997, "SHAPE_Area": 165.33530765699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358502.020300000905991, 256953.565099999308586 ], [ 358496.675700001418591, 256939.806699998676777 ], [ 358487.746699996292591, 256942.887899998575449 ], [ 358486.463500000536442, 256943.436099998652935 ], [ 358492.993299998342991, 256958.604299999773502 ], [ 358502.020300000905991, 256953.565099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302142000", "MAP": null, "PARCEL_NAM": "44", "ACRE": null, "LONGITUDE": -64.93999745000001, "LATITUDE": 18.34197383, "OBJECTID_1": 9922, "PARCEL_NO_": "105302142000", "Tax_Legal_": "ANNAS FANCY 44 CROWN PRINCE QUARTER", "Name": "DE WINDT, ORFORD", "Address": "PO Box 8253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.185207502099999, "SHAPE_Area": 358.88140284100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357835.268899999558926, 256926.623399998992682 ], [ 357833.440499998629093, 256951.939599998295307 ], [ 357848.751400001347065, 256953.120400000363588 ], [ 357849.748400002717972, 256930.752700001001358 ], [ 357835.268899999558926, 256926.623399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302141400", "MAP": null, "PARCEL_NAM": "40", "ACRE": null, "LONGITUDE": -64.94058793000001, "LATITUDE": 18.3419452, "OBJECTID_1": 9915, "PARCEL_NO_": "105302141400", "Tax_Legal_": "ANNAS FANCY 40 CROWN PRINCE QUARTER", "Name": "DONADELLE, MARIO ANTONIO", "Address": "PO Box 283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33600, "Improved_V": 50800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.430901117800005, "SHAPE_Area": 540.49291708600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357769.988200001418591, 256922.500500001013279 ], [ 357769.023599997162819, 256941.068799998611212 ], [ 357768.125600002706051, 256951.827199999243021 ], [ 357787.509499996900558, 256948.186200000345707 ], [ 357789.13289999961853, 256946.932900000363588 ], [ 357790.826399996876717, 256937.447599999606609 ], [ 357790.923500001430511, 256926.049300000071526 ], [ 357769.988200001418591, 256922.500500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302462200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93488241, "LATITUDE": 18.34203949, "OBJECTID_1": 10799, "PARCEL_NO_": "105302462200", "Tax_Legal_": "3 & 3A STRAND GADE KRONPRINDSENS QTR", "Name": "VANBEVERHOUDT SQUARE, LLC", "Address": "PO Box 56", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.124553505999998, "SHAPE_Area": 83.060785246999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358389.045500002801418, 256949.94310000166297 ], [ 358376.158900000154972, 256948.148899998515844 ], [ 358376.101400002837181, 256954.903400000184774 ], [ 358387.375399999320507, 256956.684399999678135 ], [ 358389.045500002801418, 256949.94310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302144800", "MAP": null, "PARCEL_NAM": "43", "ACRE": null, "LONGITUDE": -64.94013342, "LATITUDE": 18.34194704, "OBJECTID_1": 9952, "PARCEL_NO_": "105302144800", "Tax_Legal_": "ANNAS FANCY 43 CROWN PRINCE QUARTER", "Name": "DE WINDT, ORFORD", "Address": "PO Box 8253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.396967266800004, "SHAPE_Area": 361.94516457999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357820.780500002205372, 256923.549499999731779 ], [ 357819.808700002729893, 256942.962099999189377 ], [ 357819.760200001299381, 256948.661299999803305 ], [ 357833.440499998629093, 256951.939599998295307 ], [ 357835.268899999558926, 256926.623399998992682 ], [ 357820.780500002205372, 256923.549499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302283500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93665902, "LATITUDE": 18.34200861, "OBJECTID_1": 10481, "PARCEL_NO_": "105302283500", "Tax_Legal_": "REGJERINGS GADE 11B CROWN PRINCE", "Name": "PETER, STAFFORD K. & GAIL S", "Address": "PO Box 304176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034176, "Country": "United States", "Land_Value": 6300, "Improved_V": 20900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.699074638900001, "SHAPE_Area": 202.37513305600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358207.684600003063679, 256941.49269999936223 ], [ 358183.468199998140335, 256944.460900001227856 ], [ 358182.57379999756813, 256954.797100000083447 ], [ 358190.638700000941753, 256954.651999998837709 ], [ 358190.678300000727177, 256950.008299998939037 ], [ 358208.42790000140667, 256948.886999998241663 ], [ 358207.684600003063679, 256941.49269999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302463500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93507733, "LATITUDE": 18.34203249, "OBJECTID_1": 10812, "PARCEL_NO_": "105302463500", "Tax_Legal_": "REGJERINGS GADE 27 CROWN PRINCE QTR", "Name": "HODGE, C. & OTHERS", "Address": "PO Box 6815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6400, "Improved_V": 13600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 21.2574821967, "SHAPE_Area": 19.403648903800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358357.599299997091293, 256949.685699999332428 ], [ 358363.999499998986721, 256955.648699998855591 ], [ 358363.250699996948242, 256948.887600000947714 ], [ 358357.599299997091293, 256949.685699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91282137, "LATITUDE": 18.34175725, "OBJECTID_1": 19711, "PARCEL_NO_": "105501020200", "Tax_Legal_": "49 ESTATE THOMAS 6A NEW QTR", "Name": "THE DAILY NEWS PUBLISHING CO", "Address": "9155 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 735100, "Improved_V": 859300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.218963234, "SHAPE_Area": 4331.5225878700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360753.177100002765656, 256966.548200000077486 ], [ 360746.434500001370907, 256906.120200000703335 ], [ 360734.327299997210503, 256907.498799998313189 ], [ 360675.401699997484684, 256914.615899998694658 ], [ 360681.346900001168251, 256973.981800001114607 ], [ 360753.177100002765656, 256966.548200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302230700", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 7A", "ACRE": null, "LONGITUDE": -64.9386686, "LATITUDE": 18.34201509, "OBJECTID_1": 10279, "PARCEL_NO_": "105302230700", "Tax_Legal_": "NYE NORDSIDEVEJ 7A CROWN PRINCE QTR", "Name": "NILES, NAVARRO D. & LARAINE C.", "Address": "PO Box 303523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5400, "Improved_V": 13700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.826181975600001, "SHAPE_Area": 74.636388785099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357978.679200001060963, 256941.096000000834465 ], [ 357977.790200002491474, 256950.7989999987185 ], [ 357985.847900003194809, 256951.4983000010252 ], [ 357985.930699996650219, 256941.788600001484156 ], [ 357978.679200001060963, 256941.096000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401420400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93241371000001, "LATITUDE": 18.34191143, "OBJECTID_1": 12097, "PARCEL_NO_": "105401420400", "Tax_Legal_": "DRONNINGENS GADE 8B QUEENS QTR", "Name": "SMITH, LEROY, DIANA, MARGUERITE, JEFFREY, GARY, AND JUEL", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 653600, "Improved_V": 1138000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.281541493299997, "SHAPE_Area": 299.99113463999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358641.651500001549721, 256924.990600001066923 ], [ 358634.965400002896786, 256952.589099999517202 ], [ 358643.798900000751019, 256956.883299998939037 ], [ 358652.110200002789497, 256927.82039999961853 ], [ 358641.651500001549721, 256924.990600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301150800", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-11", "ACRE": "0.23", "LONGITUDE": -64.94726366, "LATITUDE": 18.34189556, "OBJECTID_1": 9507, "PARCEL_NO_": "105301150800", "Tax_Legal_": "ALTONA & WELGUNST 212A-11 KRONPRINDSENS QTR.", "Name": "GEORGE, DESMOND & KAREN", "Address": "PO Box 301801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.751487295, "SHAPE_Area": 1186.11354914 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357089.512599997222424, 256910.809399999678135 ], [ 357062.945600003004074, 256905.736800000071526 ], [ 357056.360299997031689, 256921.514899998903275 ], [ 357051.466700002551079, 256928.018800001591444 ], [ 357065.85080000013113, 256943.335200000554323 ], [ 357072.786799997091293, 256951.350299999117851 ], [ 357083.616700001060963, 256940.3141999989748 ], [ 357089.32379999756813, 256932.972699999809265 ], [ 357091.796700000762939, 256926.660100001841784 ], [ 357094.54450000077486, 256911.705600000917912 ], [ 357089.512599997222424, 256910.809399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302450100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93566175, "LATITUDE": 18.34198925, "OBJECTID_1": 10751, "PARCEL_NO_": "105302450100", "Tax_Legal_": "REGJERINGS GADE 4B CROWN PRINCE QTR", "Name": "INFINITY INVESTORS LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23800, "Improved_V": 51100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.189160046200001, "SHAPE_Area": 163.31423982300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358306.079899996519089, 256939.342700000852346 ], [ 358293.169900000095367, 256940.292500000447035 ], [ 358293.864699997007847, 256953.385999999940395 ], [ 358306.783699996769428, 256951.380800001323223 ], [ 358306.079899996519089, 256939.342700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302462300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93462959, "LATITUDE": 18.34200116, "OBJECTID_1": 10800, "PARCEL_NO_": "105302462300", "Tax_Legal_": "STORE STRAEDE 9 CROWN PRINCE QTR", "Name": "DONOVAN, AUDREY B", "Address": "PO Box 301804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.8623094549, "SHAPE_Area": 83.401645429499993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358406.046400003135204, 256942.060699999332428 ], [ 358403.542999997735023, 256951.961599998176098 ], [ 358409.986299999058247, 256952.85869999974966 ], [ 358414.818800002336502, 256953.531500000506639 ], [ 358411.678000003099442, 256943.584399998188019 ], [ 358406.046400003135204, 256942.060699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302230500", "MAP": null, "PARCEL_NAM": "HAABETS 16 & TULIPAN 3A", "ACRE": null, "LONGITUDE": -64.93888569000001, "LATITUDE": 18.34201132, "OBJECTID_1": 10278, "PARCEL_NO_": "105302230500", "Tax_Legal_": "HAABETS 16 & TULIPAN 3A CROWN PRINCE QTR", "Name": "HANSBY, JANET", "Address": "PO Box 7122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.820049188200002, "SHAPE_Area": 94.295308239600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357952.868199996650219, 256941.940200001001358 ], [ 357952.002599999308586, 256948.89919999986887 ], [ 357965.704499997198582, 256949.64469999819994 ], [ 357965.765699997544289, 256942.467999998480082 ], [ 357952.868199996650219, 256941.940200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302391400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93285235, "LATITUDE": 18.34198634, "OBJECTID_1": 10676, "PARCEL_NO_": "105302391400", "Tax_Legal_": "TROMPETER GADE 1 QUEENS QTR", "Name": "LARRY WITKOP FAMILY TRUST", "Address": "2221 Regjerrings Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 249000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.7963242354, "SHAPE_Area": 118.54971888 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358586.667599998414516, 256942.694600000977516 ], [ 358585.823499999940395, 256947.120700001716614 ], [ 358606.722900003194809, 256954.891100000590086 ], [ 358605.17679999768734, 256947.067999999970198 ], [ 358586.667599998414516, 256942.694600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302230400", "MAP": null, "PARCEL_NAM": "HAABETS GADE 11", "ACRE": null, "LONGITUDE": -64.93898896, "LATITUDE": 18.34193662, "OBJECTID_1": 10277, "PARCEL_NO_": "105302230400", "Tax_Legal_": "HAABETS GADE 11 CROWN PRINCE QTR", "Name": "GUISHARD, CLARENCE & VALERIE", "Address": "PO Box 10359", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.294969719699999, "SHAPE_Area": 204.16220642100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357953.793200001120567, 256928.015599999576807 ], [ 357947.353500001132488, 256926.696400001645088 ], [ 357943.327399998903275, 256926.030099999159575 ], [ 357943.941299997270107, 256948.62220000103116 ], [ 357952.002599999308586, 256948.89919999986887 ], [ 357952.868199996650219, 256941.940200001001358 ], [ 357952.893399998545647, 256938.985100001096725 ], [ 357953.793200001120567, 256928.015599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302230300", "MAP": null, "PARCEL_NAM": "HAABETS GADE 1O", "ACRE": null, "LONGITUDE": -64.93908163, "LATITUDE": 18.34193931, "OBJECTID_1": 10276, "PARCEL_NO_": "105302230300", "Tax_Legal_": "HAABETS GADE 1O CROWN PRINCE QTR", "Name": "PRINCE, DELITA D", "Address": "4500 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9800, "Improved_V": 43300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.405017818700003, "SHAPE_Area": 227.39821643 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357943.327399998903275, 256926.030099999159575 ], [ 357932.830899998545647, 256927.633000001311302 ], [ 357933.461000002920628, 256948.325300000607967 ], [ 357943.941299997270107, 256948.62220000103116 ], [ 357943.327399998903275, 256926.030099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302230200", "MAP": null, "PARCEL_NAM": "HAABETS GADE 9", "ACRE": null, "LONGITUDE": -64.93918449, "LATITUDE": 18.34194598, "OBJECTID_1": 10275, "PARCEL_NO_": "105302230200", "Tax_Legal_": "HAABETS GADE 9 CROWN PRINCE QTR", "Name": "DUNLOP, ALFRED", "Address": "PO Box 307338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037338, "Country": "United States", "Land_Value": 10500, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.211131559199998, "SHAPE_Area": 223.39653112600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357932.830899998545647, 256927.633000001311302 ], [ 357921.528200000524521, 256929.229200001806021 ], [ 357922.174400001764297, 256948.021800000220537 ], [ 357933.461000002920628, 256948.325300000607967 ], [ 357932.830899998545647, 256927.633000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302450200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93554534, "LATITUDE": 18.34195131, "OBJECTID_1": 10752, "PARCEL_NO_": "105302450200", "Tax_Legal_": "REGJERINGS GADE 4A CROWN PRINCE QTR", "Name": "GARCIA, ANN A.", "Address": "PO BOX 304622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10800, "Improved_V": 32500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.433166980400003, "SHAPE_Area": 211.56846908899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358317.416799999773502, 256933.73589999973774 ], [ 358305.327500000596046, 256933.003699999302626 ], [ 358306.079899996519089, 256939.342700000852346 ], [ 358306.783699996769428, 256951.380800001323223 ], [ 358319.70269999653101, 256949.375599998980761 ], [ 358317.416799999773502, 256933.73589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302230100", "MAP": null, "PARCEL_NAM": "HAABETS GADE 8", "ACRE": null, "LONGITUDE": -64.93929131, "LATITUDE": 18.34195576, "OBJECTID_1": 10274, "PARCEL_NO_": "105302230100", "Tax_Legal_": "HAABETS GADE 8 CROWN PRINCE QTR", "Name": "FARRINGTON, WILHELMINA", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9900, "Improved_V": 34800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.560791149300002, "SHAPE_Area": 200.930129287 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357921.528200000524521, 256929.229200001806021 ], [ 357911.839800000190735, 256930.627599999308586 ], [ 357909.277000002563, 256947.494100000709295 ], [ 357922.174400001764297, 256948.021800000220537 ], [ 357921.528200000524521, 256929.229200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302462400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93470788, "LATITUDE": 18.34198208, "OBJECTID_1": 10801, "PARCEL_NO_": "105302462400", "Tax_Legal_": "NELLIKE GADE 3 CROWN PRINCE QUARTER", "Name": "BROOME, L, K & V, APONTE, L B", "Address": "PO Box 301804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4200, "Improved_V": 4400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.919461191899998, "SHAPE_Area": 88.082290482600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358398.001299999654293, 256939.883900001645088 ], [ 358395.488799996674061, 256950.840199999511242 ], [ 358400.321299999952316, 256951.513000000268221 ], [ 358403.542999997735023, 256951.961599998176098 ], [ 358406.046400003135204, 256942.060699999332428 ], [ 358398.001299999654293, 256939.883900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302391700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9333668, "LATITUDE": 18.34194896, "OBJECTID_1": 10679, "PARCEL_NO_": "105302391700", "Tax_Legal_": "SNEGELE GADE 7 QUEENS QUARTER", "Name": "JOSEPHINE KEAN REVOCABLE TRUST", "Address": "P O BOX 2307", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18400, "Improved_V": 180700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.242937892300006, "SHAPE_Area": 377.09282502999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358531.915700003504753, 256933.16950000077486 ], [ 358532.558399997651577, 256952.384199999272823 ], [ 358553.518899999558926, 256952.978000000119209 ], [ 358552.85639999806881, 256936.085099998861551 ], [ 358531.915700003504753, 256933.16950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302391600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93316259, "LATITUDE": 18.34196132, "OBJECTID_1": 10678, "PARCEL_NO_": "105302391600", "Tax_Legal_": "10 VIMMELSKAFT GADE (INCLUDES #8 SNEGLE GADE) QUEENS QTR.", "Name": "HARMONIC LODGE INC", "Address": "PO BOX 1626", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25800, "Improved_V": 402900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.491184173099995, "SHAPE_Area": 331.90444682499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358552.85639999806881, 256936.085099998861551 ], [ 358553.518899999558926, 256952.978000000119209 ], [ 358574.490199998021126, 256952.30519999936223 ], [ 358577.816200003027916, 256940.511199999600649 ], [ 358552.85639999806881, 256936.085099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302240300", "MAP": null, "PARCEL_NAM": "HAABETS GADE 7", "ACRE": "3195 square feet", "LONGITUDE": -64.93947011, "LATITUDE": 18.34195542, "OBJECTID_1": 10312, "PARCEL_NO_": "105302240300", "Tax_Legal_": "HAABETS GADEB 7 CROWN PRINCE QTR", "Name": "WRENFORD, TREVOR & MARGARET", "Address": "PO Box 6356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16800, "Improved_V": 92000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.137991101699996, "SHAPE_Area": 328.75657567299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357909.426299996674061, 256929.974500000476837 ], [ 357893.278399996459484, 256932.375500001013279 ], [ 357886.829700000584126, 256932.111600000411272 ], [ 357885.899400003254414, 256946.66950000077486 ], [ 357906.053599998354912, 256947.256599999964237 ], [ 357909.426299996674061, 256929.974500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302391800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93352807, "LATITUDE": 18.34194418, "OBJECTID_1": 10680, "PARCEL_NO_": "105302391800", "Tax_Legal_": "STORE TVER 4 QUEENS QUARTER", "Name": "STORE TVAER 4 LLC", "Address": "PO Box 302307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58500, "Improved_V": 131700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.546077370299997, "SHAPE_Area": 262.88553422299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358532.558399997651577, 256952.384199999272823 ], [ 358531.915700003504753, 256933.16950000077486 ], [ 358521.444399997591972, 256931.817200001329184 ], [ 358516.435699999332428, 256951.830099999904633 ], [ 358532.558399997651577, 256952.384199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302240200", "MAP": null, "PARCEL_NAM": "HAABETS GADE 6", "ACRE": "1,770.00 square feet", "LONGITUDE": -64.93963544, "LATITUDE": 18.34195709, "OBJECTID_1": 10311, "PARCEL_NO_": "105302240200", "Tax_Legal_": "HAABETS GADE 6 CROWN PRINCE QTR", "Name": "JURGEN, CAROL,SHEREESE,STEFAN,SHAYNE & SWAYNE", "Address": "PO Box 8568", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9300, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.991475040099999, "SHAPE_Area": 188.249380452 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357885.899400003254414, 256946.66950000077486 ], [ 357886.829700000584126, 256932.111600000411272 ], [ 357873.932300001382828, 256931.58390000090003 ], [ 357873.001999996602535, 256946.141699999570847 ], [ 357885.899400003254414, 256946.66950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302462500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93477799, "LATITUDE": 18.34196834, "OBJECTID_1": 10802, "PARCEL_NO_": "105302462500", "Tax_Legal_": "2 NELLIKE GADE KRONPRINDSENS QUARTER", "Name": "VANBEVERHOUDT SQUARE LLC", "Address": "PO Box 56", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9200, "Improved_V": 95800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.1273762605, "SHAPE_Area": 80.6780899707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358390.758900001645088, 256938.135899998247623 ], [ 358389.045500002801418, 256949.94310000166297 ], [ 358395.488799996674061, 256950.840199999511242 ], [ 358398.001299999654293, 256939.883900001645088 ], [ 358390.758900001645088, 256938.135899998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302391500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93300448, "LATITUDE": 18.34197594, "OBJECTID_1": 10677, "PARCEL_NO_": "105302391500", "Tax_Legal_": "SNEGLE GADE 9 QUEENS QTR", "Name": "LARRY WITKOP FAMILY TRUST", "Address": "2221 Regjerrings Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.2894204587, "SHAPE_Area": 103.99660275700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358577.816200003027916, 256940.511199999600649 ], [ 358574.490199998021126, 256952.30519999936223 ], [ 358584.975900001823902, 256951.968899998813868 ], [ 358585.823499999940395, 256947.120700001716614 ], [ 358586.667599998414516, 256942.694600000977516 ], [ 358577.816200003027916, 256940.511199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401420300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93249116, "LATITUDE": 18.34188849, "OBJECTID_1": 12096, "PARCEL_NO_": "105401420300", "Tax_Legal_": "DRONNINGENS GADE 9A QUEENS QUARTER", "Name": "MELISSA AS TRUSTEE OF THE 1998 ESTELLE ROTH LIVING", "Address": "1 Wendy Ln", "City": "East Northport", "State": "New York", "Zip": 11731, "Country": "United States", "Land_Value": 461500, "Improved_V": 190200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.323812183800001, "SHAPE_Area": 189.26975742900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358635.215400002896786, 256923.249200001358986 ], [ 358628.540100000798702, 256949.581199999898672 ], [ 358634.965400002896786, 256952.589099999517202 ], [ 358641.651500001549721, 256924.990600001066923 ], [ 358635.215400002896786, 256923.249200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302240100", "MAP": null, "PARCEL_NAM": "HAABETS GADE 5", "ACRE": "1,461 sq ft", "LONGITUDE": -64.93979051, "LATITUDE": 18.34196766, "OBJECTID_1": 10310, "PARCEL_NO_": "105302240100", "Tax_Legal_": "HAABETS GADE 5 CROWN PRINCE QTR", "Name": "JURGEN, CAROL, STE., SHE., SHA., & SWA.,", "Address": "PO Box 8568", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7700, "Improved_V": 75800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.390075402699999, "SHAPE_Area": 166.120946317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357871.47919999808073, 256935.574599999934435 ], [ 357856.173699997365475, 256933.760600000619888 ], [ 357856.083800002932549, 256944.314500000327826 ], [ 357859.296400003135204, 256945.818399999290705 ], [ 357870.582999996840954, 256946.121899999678135 ], [ 357871.47919999808073, 256935.574599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302450300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93545189, "LATITUDE": 18.34193604, "OBJECTID_1": 10753, "PARCEL_NO_": "105302450300", "Tax_Legal_": "REGJERINGS GADE 3 CROWN PRINCE QTR", "Name": "MORLA, CIRIACO", "Address": "2101 Strand Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6800, "Improved_V": 22600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.257828312800001, "SHAPE_Area": 127.74036137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358325.461900003254414, 256935.91270000115037 ], [ 358325.485299997031689, 256933.168699998408556 ], [ 358317.438400000333786, 256931.203000001609325 ], [ 358317.416799999773502, 256933.73589999973774 ], [ 358319.70269999653101, 256949.375599998980761 ], [ 358326.968500003218651, 256948.379599999636412 ], [ 358325.461900003254414, 256935.91270000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302463400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93489154, "LATITUDE": 18.34195209, "OBJECTID_1": 10811, "PARCEL_NO_": "105302463400", "Tax_Legal_": "2 STRAND GADE KRONPRINDSENS QTR", "Name": "VANBEVERHOUDT SQUARE LLC", "Address": "PO Box 56", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22000, "Improved_V": 74800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.340781445099999, "SHAPE_Area": 217.865516103 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358390.758900001645088, 256938.135899998247623 ], [ 358377.082099996507168, 256934.435400001704693 ], [ 358371.35700000077486, 256943.887699998915195 ], [ 358370.521899998188019, 256947.258400000631809 ], [ 358376.158900000154972, 256948.148899998515844 ], [ 358389.045500002801418, 256949.94310000166297 ], [ 358390.758900001645088, 256938.135899998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302450400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93537006, "LATITUDE": 18.34194636, "OBJECTID_1": 10754, "PARCEL_NO_": "105302450400", "Tax_Legal_": "REGJERINGS GADE 2A CROWN PRINCE QTR", "Name": "BOVONI STABLES, INC.", "Address": "ESTATE BOVONI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12700, "Improved_V": 28600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.4196120788, "SHAPE_Area": 109.869350829 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358335.943999998271465, 256935.998500000685453 ], [ 358325.461900003254414, 256935.91270000115037 ], [ 358326.968500003218651, 256948.379599999636412 ], [ 358335.042400002479553, 256947.179099999368191 ], [ 358335.943999998271465, 256935.998500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302142200", "MAP": null, "PARCEL_NAM": "41", "ACRE": null, "LONGITUDE": -64.94029392, "LATITUDE": 18.34189307, "OBJECTID_1": 9924, "PARCEL_NO_": "105302142200", "Tax_Legal_": "ANNAS FANCY 41 CROWN PRINCE QUARTER", "Name": "FRANCIS, AGNES", "Address": "PO Box 7711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 53200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.201074978799994, "SHAPE_Area": 379.3924907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357798.083200000226498, 256937.506999999284744 ], [ 357819.808700002729893, 256942.962099999189377 ], [ 357820.780500002205372, 256923.549499999731779 ], [ 357808.707299999892712, 256920.917500000447035 ], [ 357805.478500001132488, 256921.313299998641014 ], [ 357801.420000001788139, 256924.44649999961257 ], [ 357799.782200001180172, 256927.388399999588728 ], [ 357798.083200000226498, 256937.506999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401420200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93257388000001, "LATITUDE": 18.34185629, "OBJECTID_1": 12095, "PARCEL_NO_": "105401420200", "Tax_Legal_": "DRONNINGENS GADE 9B QUEENS QUARTER", "Name": "SHI SHAKTI LLP", "Address": "5120 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 718200, "Improved_V": 799500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.530637547599994, "SHAPE_Area": 312.15986659599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358623.149499997496605, 256919.772900000214577 ], [ 358618.101199999451637, 256944.429499998688698 ], [ 358628.540100000798702, 256949.581199999898672 ], [ 358635.215400002896786, 256923.249200001358986 ], [ 358623.149499997496605, 256919.772900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302310600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9354582, "LATITUDE": 18.34348206, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.295997169700001, "SHAPE_Area": 340.671194646 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358334.519799999892712, 257103.172899998724461 ], [ 358307.889899998903275, 257105.488099999725819 ], [ 358309.3766999989748, 257120.276799999177456 ], [ 358327.934500001370907, 257118.951099999248981 ], [ 358334.519799999892712, 257103.172899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301131700", "MAP": "F9-3820-T80", "PARCEL_NAM": "200A (Gov. Cistern)", "ACRE": null, "LONGITUDE": -64.94300846, "LATITUDE": 18.34320707, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.422582812599998, "SHAPE_Area": 269.94856454199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357528.525600001215935, 257059.212699998170137 ], [ 357521.286799997091293, 257057.042500000447035 ], [ 357515.378300003707409, 257088.024900000542402 ], [ 357524.217200003564358, 257091.6858000010252 ], [ 357528.525600001215935, 257059.212699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302263500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93661489, "LATITUDE": 18.3432798, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.279393018699999, "SHAPE_Area": 137.435922651 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358206.204700000584126, 257091.837900001555681 ], [ 358204.857100002467632, 257083.203099999576807 ], [ 358190.407700002193451, 257083.754299998283386 ], [ 358190.979800000786781, 257093.502099998295307 ], [ 358206.204700000584126, 257091.837900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302190600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9377924, "LATITUDE": 18.34328377, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.2611959826, "SHAPE_Area": 54.210631798000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358068.528399996459484, 257090.230200000107288 ], [ 358074.968099996447563, 257091.549400001764297 ], [ 358079.868900001049042, 257084.201299998909235 ], [ 358069.379699997603893, 257084.959800001233816 ], [ 358068.528399996459484, 257090.230200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301133600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94219278, "LATITUDE": 18.34306671, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.884375851000001, "SHAPE_Area": 99.060727905199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357610.009900003671646, 257054.391199998557568 ], [ 357604.369400002062321, 257053.922800000756979 ], [ 357605.035400003194809, 257070.3935999982059 ], [ 357616.456900000572205, 257054.866099998354912 ], [ 357610.009900003671646, 257054.391199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302300100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93552642, "LATITUDE": 18.34300831, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.777069374899995, "SHAPE_Area": 269.94930075399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358322.862099997699261, 257051.781800001859665 ], [ 358301.881800003349781, 257053.509899999946356 ], [ 358303.390100002288818, 257065.765700001269579 ], [ 358324.361400000751019, 257065.092999998480082 ], [ 358322.862099997699261, 257051.781800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302301000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93554588000001, "LATITUDE": 18.3428685, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.180258286799997, "SHAPE_Area": 380.15781027200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358301.881800003349781, 257053.509899999946356 ], [ 358322.862099997699261, 257051.781800001859665 ], [ 358320.594200000166893, 257034.031399998813868 ], [ 358300.431000001728535, 257034.499600000679493 ], [ 358301.881800003349781, 257053.509899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302151600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9392581, "LATITUDE": 18.34271327, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.971623253400001, "SHAPE_Area": 44.935043338600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357912.679200001060963, 257021.404699999839067 ], [ 357920.684799998998642, 257028.22520000115037 ], [ 357923.98200000077486, 257019.808400001376867 ], [ 357912.679200001060963, 257021.404699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302371100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93393278000001, "LATITUDE": 18.34265952, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.3843894193, "SHAPE_Area": 238.375123653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358490.076300002634525, 257017.053399998694658 ], [ 358486.104000002145767, 257010.054800000041723 ], [ 358470.665399998426437, 257023.860599998384714 ], [ 358478.654799997806549, 257032.580800000578165 ], [ 358492.455600000917912, 257021.716899998486042 ], [ 358490.076300002634525, 257017.053399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302380800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93418229, "LATITUDE": 18.34253797, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.248689088000006, "SHAPE_Area": 123.570440718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358451.518899999558926, 256999.639199998229742 ], [ 358457.085799999535084, 257008.761799998581409 ], [ 358453.828199997544289, 257012.534800000488758 ], [ 358446.499399997293949, 257020.918600000441074 ], [ 358448.095899999141693, 257022.831500001251698 ], [ 358458.673199996352196, 257011.730099998414516 ], [ 358461.113799996674061, 257009.216899998486042 ], [ 358463.554300002753735, 257006.70380000025034 ], [ 358454.774700000882149, 256996.077300000935793 ], [ 358451.518899999558926, 256999.639199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302380700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93421806000001, "LATITUDE": 18.34252574, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.7704844533, "SHAPE_Area": 66.210767609000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358446.612700000405312, 257007.620600000023842 ], [ 358453.828199997544289, 257012.534800000488758 ], [ 358457.085799999535084, 257008.761799998581409 ], [ 358451.518899999558926, 256999.639199998229742 ], [ 358446.612700000405312, 257007.620600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401057100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93390279, "LATITUDE": 18.34227561, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.893971632899998, "SHAPE_Area": 141.102459264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358492.775700002908707, 256984.144900001585484 ], [ 358485.644799999892712, 256969.309900000691414 ], [ 358479.152900002896786, 256974.111999999731779 ], [ 358483.866700001060963, 256988.715999998152256 ], [ 358492.775700002908707, 256984.144900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302391300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9328336, "LATITUDE": 18.34204852, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.9376881126, "SHAPE_Area": 121.272089798 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358585.823499999940395, 256947.120700001716614 ], [ 358584.975900001823902, 256951.968899998813868 ], [ 358593.832699999213219, 256953.519000001251698 ], [ 358598.650799997150898, 256955.880499999970198 ], [ 358610.650200001895428, 256967.166700001806021 ], [ 358606.722900003194809, 256954.891100000590086 ], [ 358585.823499999940395, 256947.120700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302462100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93496874, "LATITUDE": 18.34202934, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.7700640266, "SHAPE_Area": 41.189989657200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358376.158900000154972, 256948.148899998515844 ], [ 358370.521899998188019, 256947.258400000631809 ], [ 358369.658100001513958, 256954.006299998611212 ], [ 358376.101400002837181, 256954.903400000184774 ], [ 358376.158900000154972, 256948.148899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302382400", "MAP": "D9-8446-T010", "PARCEL_NAM": "1A REM VESTER GADE", "ACRE": "1,287 sq ft", "LONGITUDE": -64.93374199, "LATITUDE": 18.34195735, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.740899605199999, "SHAPE_Area": 107.44742036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358507.586000002920628, 256949.440400000661612 ], [ 358507.598600000143051, 256947.958099998533726 ], [ 358505.883199997246265, 256936.790500000119209 ], [ 358496.675700001418591, 256939.806699998676777 ], [ 358501.585699997842312, 256952.446400001645088 ], [ 358507.586000002920628, 256949.440400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302230600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93874854000001, "LATITUDE": 18.34200702, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.075603064, "SHAPE_Area": 90.379345862199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357977.790200002491474, 256950.7989999987185 ], [ 357978.679200001060963, 256941.096000000834465 ], [ 357969.01070000231266, 256940.172499999403954 ], [ 357968.928000003099442, 256949.882100000977516 ], [ 357977.790200002491474, 256950.7989999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9124178, "LATITUDE": 18.3417128, "OBJECTID_1": 19715, "PARCEL_NO_": "105501020600", "Tax_Legal_": "THOMAS ESTATE 52A 6A NEW QTR.", "Name": "THE DAILY NEWS PUBLISHING CO", "Address": "9155 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 245000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.368405314, "SHAPE_Area": 867.12176217499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360760.157999999821186, 256904.332699999213219 ], [ 360746.434500001370907, 256906.120200000703335 ], [ 360753.177100002765656, 256966.548200000077486 ], [ 360767.705099999904633, 256964.978300001472235 ], [ 360760.157999999821186, 256904.332699999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302450500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93515329, "LATITUDE": 18.3418988, "OBJECTID_1": 10755, "PARCEL_NO_": "105302450500", "Tax_Legal_": "REGJERINGS GADE 1 CROWN PRINCE QTR", "Name": "CHRISTIAN II, ALPHONSO", "Address": "1923 Sheperd St", "City": "Washington", "State": "District of Columbia", "Zip": 20011, "Country": "United States", "Land_Value": 67500, "Improved_V": 558900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.067275298400006, "SHAPE_Area": 410.794553119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358368.281000003218651, 256926.34180000051856 ], [ 358354.580899998545647, 256925.385299999266863 ], [ 358354.537699997425079, 256930.451200000941753 ], [ 358352.919699996709824, 256931.071199998259544 ], [ 358347.253899998962879, 256933.557900000363588 ], [ 358339.196199998259544, 256932.85869999974966 ], [ 358338.273000001907349, 256946.572200000286102 ], [ 358364.917300000786781, 256942.568399999290705 ], [ 358368.281000003218651, 256926.34180000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302382700", "MAP": null, "PARCEL_NAM": "STORE TVER GADE 2", "ACRE": null, "LONGITUDE": -64.9336804, "LATITUDE": 18.34188069, "OBJECTID_1": 10663, "PARCEL_NO_": "105302382700", "Tax_Legal_": "STORE TVAER GADE 2 QUEENS QUARTER", "Name": "FC HOLDINGS III, LLC", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26500, "Improved_V": 134200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.270816383300001, "SHAPE_Area": 127.306520335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358505.178900003433228, 256926.975600000470877 ], [ 358505.883199997246265, 256936.790500000119209 ], [ 358506.362700000405312, 256939.912099998444319 ], [ 358507.598600000143051, 256947.958099998533726 ], [ 358510.019400000572205, 256947.766800001263618 ], [ 358514.879100002348423, 256928.482500001788139 ], [ 358505.178900003433228, 256926.975600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301120700", "MAP": null, "PARCEL_NAM": "200-5A-4", "ACRE": null, "LONGITUDE": -64.94639169, "LATITUDE": 18.34182625, "OBJECTID_1": 9433, "PARCEL_NO_": "105301120700", "Tax_Legal_": "ALTONA & WELGUNST 200-5A-4 CROWN PRINCE QTR", "Name": "BLANCHARD, LOUIS C. & MARIE F. (LIFE ESTATE)", "Address": "P.O. BOX 4153", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70500, "Improved_V": 54400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.44053547499999, "SHAPE_Area": 1138.00714855 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357187.101599998772144, 256908.652800001204014 ], [ 357148.463299997150898, 256900.737199999392033 ], [ 357145.05460000038147, 256922.240899998694658 ], [ 357144.993500001728535, 256929.417500000447035 ], [ 357184.445299997925758, 256936.495400000363588 ], [ 357187.101599998772144, 256908.652800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302144900", "MAP": null, "PARCEL_NAM": "39 LOWER 1/2", "ACRE": null, "LONGITUDE": -64.94076672, "LATITUDE": 18.34188685, "OBJECTID_1": 9953, "PARCEL_NO_": "105302144900", "Tax_Legal_": "ANNAS FANCY 39 LOWER 1/2 KROMP QTR", "Name": "HART, SUSAN M. & RICHARD A. HARRIGAN, JR.", "Address": "PO Box 306184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 36700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.555250618100004, "SHAPE_Area": 362.20092702900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357752.285300001502037, 256918.133699998259544 ], [ 357751.291900001466274, 256940.079300001263618 ], [ 357769.023599997162819, 256941.068799998611212 ], [ 357769.988200001418591, 256922.500500001013279 ], [ 357766.770099997520447, 256921.629799999296665 ], [ 357752.285300001502037, 256918.133699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302283600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93665243, "LATITUDE": 18.34189683, "OBJECTID_1": 10482, "PARCEL_NO_": "105302283600", "Tax_Legal_": "BORGER GADE 3 AND 4 CROWN PRINCE QTR", "Name": "DUZANT, L & DONOVAN, E & Y", "Address": "PO Box 12226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.433105189399996, "SHAPE_Area": 381.095531241 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358208.602399997413158, 256928.412399999797344 ], [ 358196.518500000238419, 256927.046900000423193 ], [ 358184.432800002396107, 256925.892499998211861 ], [ 358183.468199998140335, 256944.460900001227856 ], [ 358207.684600003063679, 256941.49269999936223 ], [ 358207.743900001049042, 256934.527100000530481 ], [ 358208.602399997413158, 256928.412399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302382500", "MAP": null, "PARCEL_NAM": "VIMMELSKAFT'S GADE 13", "ACRE": null, "LONGITUDE": -64.93392011, "LATITUDE": 18.34186377, "OBJECTID_1": 10661, "PARCEL_NO_": "105302382500", "Tax_Legal_": "VIMMELSRAFT GADE 13 QUEENS QUARTER", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63700, "Improved_V": 192900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.299744580400002, "SHAPE_Area": 301.94853911899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358496.16160000115633, 256936.61259999871254 ], [ 358493.839699998497963, 256925.194499999284744 ], [ 358472.850400000810623, 256927.978100001811981 ], [ 358475.935400001704693, 256944.468600001186132 ], [ 358496.16160000115633, 256936.61259999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302144700", "MAP": null, "PARCEL_NAM": "38", "ACRE": null, "LONGITUDE": -64.9409162, "LATITUDE": 18.34186221, "OBJECTID_1": 9951, "PARCEL_NO_": "105302144700", "Tax_Legal_": "ANNAS FANCY 38 CROWN PRINCE QUARTER", "Name": "CALLWOOD, ERMA", "Address": "PO Box 7163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14800, "Improved_V": 26800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.328625771600002, "SHAPE_Area": 298.37346279899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357733.61599999666214, 256932.546399999409914 ], [ 357751.291900001466274, 256940.079300001263618 ], [ 357752.285300001502037, 256918.133699998259544 ], [ 357744.238300003111362, 256916.168000001460314 ], [ 357741.009499996900558, 256916.563799999654293 ], [ 357733.61599999666214, 256932.546399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302231300", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 6", "ACRE": null, "LONGITUDE": -64.93870559, "LATITUDE": 18.34187115, "OBJECTID_1": 10285, "PARCEL_NO_": "105302231300", "Tax_Legal_": "NYE NORDSIDEVEJ 6 CROWN PRINCE QTR", "Name": "NILES, NAVARRO & LARAINE", "Address": "P O BOX 3523", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21700, "Improved_V": 219500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.819287169199995, "SHAPE_Area": 365.01044324399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357980.471699997782707, 256920.001299999654293 ], [ 357969.989600002765656, 256919.915500000119209 ], [ 357969.01070000231266, 256940.172499999403954 ], [ 357978.679200001060963, 256941.096000000834465 ], [ 357985.930699996650219, 256941.788600001484156 ], [ 357987.728500001132488, 256920.060699999332428 ], [ 357980.471699997782707, 256920.001299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302440700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93413374, "LATITUDE": 18.3419247, "OBJECTID_1": 10742, "PARCEL_NO_": "105302440700", "Tax_Legal_": "NELLIKE GADE 6&7A CROWN PRINCE QTR", "Name": "GIMENEZ, JOHN & NORMA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.062087378299999, "SHAPE_Area": 116.933240727 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358467.385499998927116, 256935.596599999815226 ], [ 358454.480899997055531, 256935.913199998438358 ], [ 358455.215300001204014, 256944.363000001758337 ], [ 358468.109099999070168, 256945.312899999320507 ], [ 358467.385499998927116, 256935.596599999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302440700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9342351, "LATITUDE": 18.34190398, "OBJECTID_1": 10742, "PARCEL_NO_": "105302440700", "Tax_Legal_": "NELLIKE GADE 6&7A CROWN PRINCE QTR", "Name": "GIMENEZ, JOHN & NORMA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.800945746099998, "SHAPE_Area": 86.9755138628 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358454.480899997055531, 256935.913199998438358 ], [ 358452.061999998986721, 256935.893399998545647 ], [ 358451.313199996948242, 256929.13230000063777 ], [ 358448.087999999523163, 256929.105900000780821 ], [ 358447.155799999833107, 256943.874800000339746 ], [ 358455.215300001204014, 256944.363000001758337 ], [ 358454.480899997055531, 256935.913199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301111500", "MAP": null, "PARCEL_NAM": "200-3P", "ACRE": "0.14", "LONGITUDE": -64.94596002, "LATITUDE": 18.34186471, "OBJECTID_1": 9407, "PARCEL_NO_": "105301111500", "Tax_Legal_": "ALTONA & WELGUNST 200-3P KRONP. QTR", "Name": "GRIFFIN (LIFE ESTATE), ROSITA", "Address": "PO Box 308633", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30900, "Improved_V": 187200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.426987931, "SHAPE_Area": 602.28006723600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357229.77139999717474, 256916.601399999111891 ], [ 357195.93860000371933, 256912.52479999884963 ], [ 357194.169600002467632, 256930.875500001013279 ], [ 357227.203199997544289, 256934.101199999451637 ], [ 357228.093999996781349, 256924.187100000679493 ], [ 357229.77139999717474, 256916.601399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302440600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93431222, "LATITUDE": 18.34188826, "OBJECTID_1": 10741, "PARCEL_NO_": "105302440600", "Tax_Legal_": "NELLIKE GADE 7B CROWN PRINCE QTR", "Name": "GIMENEZ, JOHN L. & NORMA", "Address": "PO Box 323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 317900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.202727721899997, "SHAPE_Area": 145.698144154 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358448.087999999523163, 256929.105900000780821 ], [ 358436.797799997031689, 256929.224599998444319 ], [ 358438.289899997413158, 256943.380100000649691 ], [ 358447.155799999833107, 256943.874800000339746 ], [ 358448.087999999523163, 256929.105900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302231100", "MAP": null, "PARCEL_NAM": "TULIPAN STRAEDE 3", "ACRE": null, "LONGITUDE": -64.93887702000001, "LATITUDE": 18.34189352, "OBJECTID_1": 10283, "PARCEL_NO_": "105302231100", "Tax_Legal_": "3 TULIPAN STRAEDE KRONPRINDSENS QUARTER", "Name": "FONTENELLE, FELIX & ALICIA", "Address": "PO Box 321", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9500, "Improved_V": 27500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.315992840699998, "SHAPE_Area": 166.20773493199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357966.724799998104572, 256924.532900001853704 ], [ 357953.793200001120567, 256928.015599999576807 ], [ 357952.893399998545647, 256938.985100001096725 ], [ 357965.790799997746944, 256939.512899998575449 ], [ 357966.724799998104572, 256924.532900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302440500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93438676, "LATITUDE": 18.34189032, "OBJECTID_1": 10740, "PARCEL_NO_": "105302440500", "Tax_Legal_": "NELLIKE GADE 8 CROWN PRINCE QTR", "Name": "FONSECA, RAY & ALTAGRACIA A.", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.345101938299997, "SHAPE_Area": 78.635964268500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358436.797799997031689, 256929.224599998444319 ], [ 358431.151799999177456, 256929.389499999582767 ], [ 358432.64750000089407, 256943.122800000011921 ], [ 358438.289899997413158, 256943.380100000649691 ], [ 358436.797799997031689, 256929.224599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302440400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93443814, "LATITUDE": 18.34189413, "OBJECTID_1": 10739, "PARCEL_NO_": "105302440400", "Tax_Legal_": "NELLIKE GADE 9 CROWN PRINCE QTR", "Name": "FONSECA, RAY & ALTAGRACIA A.", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.633693390099999, "SHAPE_Area": 70.721153080400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358431.151799999177456, 256929.389499999582767 ], [ 358427.120200000703335, 256929.356499999761581 ], [ 358426.200599998235703, 256942.647799998521805 ], [ 358432.64750000089407, 256943.122800000011921 ], [ 358431.151799999177456, 256929.389499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401420100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93267541, "LATITUDE": 18.34182152, "OBJECTID_1": 12094, "PARCEL_NO_": "105401420100", "Tax_Legal_": "DRONNINGENS GADE 1O QUEENS QUARTER", "Name": "SMITH, LEROY, DIANA, MARGUERITE, JEFFREY, GARY, AND JUEL", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 517000, "Improved_V": 100800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.268249367899998, "SHAPE_Area": 257.8644797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358618.101199999451637, 256944.429499998688698 ], [ 358623.149499997496605, 256919.772900000214577 ], [ 358612.6925999969244, 256916.73200000077486 ], [ 358608.463200002908707, 256939.917700000107288 ], [ 358618.101199999451637, 256944.429499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302212800", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 2", "ACRE": null, "LONGITUDE": -64.93725883, "LATITUDE": 18.34187252, "OBJECTID_1": 10211, "PARCEL_NO_": "105302212800", "Tax_Legal_": "GAMLE NORDSIDEVEJ 2 CROWN PRINCE QUARTER", "Name": "VEIRE, ESSINGTON", "Address": "PO Box 10588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.575477559399999, "SHAPE_Area": 264.88047332999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358145.80799999833107, 256928.870200000703335 ], [ 358118.315200001001358, 256925.351399999111891 ], [ 358116.6216000020504, 256934.83669999986887 ], [ 358144.134400002658367, 256938.224199999123812 ], [ 358145.80799999833107, 256928.870200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302440300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93451777, "LATITUDE": 18.34188601, "OBJECTID_1": 10738, "PARCEL_NO_": "105302440300", "Tax_Legal_": "STORE STRAEDE 3 CROWN PRINCE QTR", "Name": "FONSECA, RAY & ALTAGRACIA A.", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30000, "Improved_V": 69600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.081073937600003, "SHAPE_Area": 149.271215635 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358426.200599998235703, 256942.647799998521805 ], [ 358427.120200000703335, 256929.356499999761581 ], [ 358414.215599998831749, 256929.673000000417233 ], [ 358415.723999999463558, 256941.928800001740456 ], [ 358426.200599998235703, 256942.647799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302284100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93588274, "LATITUDE": 18.34182738, "OBJECTID_1": 10487, "PARCEL_NO_": "105302284100", "Tax_Legal_": "PRINDCESSE GADE 4 CROWN PRINCE QTR", "Name": "EDDY, LIONEL A. & CHERYL L", "Address": "BOX 4855", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 200400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.695282113999994, "SHAPE_Area": 404.58191380199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358268.2820999994874, 256927.423200000077486 ], [ 358269.021899998188019, 256935.239700000733137 ], [ 358269.781400002539158, 256940.734299998730421 ], [ 358272.202200002968311, 256940.543000001460314 ], [ 358285.918499998748302, 256939.599800001829863 ], [ 358284.5, 256916.790100000798702 ], [ 358267.580099999904633, 256915.1739999987185 ], [ 358268.2820999994874, 256927.423200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302451300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9356709, "LATITUDE": 18.3419, "OBJECTID_1": 10763, "PARCEL_NO_": "105302451300", "Tax_Legal_": "REGJERINGS GADE 4C CROWN PRINCE QTR", "Name": "FRANCIS, ANNA & ALCEDO(TRUSTEE)", "Address": "PO Box 305037", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24500, "Improved_V": 116300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.306701142500003, "SHAPE_Area": 92.933938483899993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358297.26799999922514, 256932.515500001609325 ], [ 358292.431900002062321, 256932.264899998903275 ], [ 358293.169900000095367, 256940.292500000447035 ], [ 358306.079899996519089, 256939.342700000852346 ], [ 358305.327500000596046, 256933.003699999302626 ], [ 358297.26799999922514, 256932.515500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302440100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93468907, "LATITUDE": 18.3418754, "OBJECTID_1": 10737, "PARCEL_NO_": "105302440100", "Tax_Legal_": "NELLIKE 1 & STORE 1A & 10 CROWN PRINCE QTR", "Name": "AUSTIN BLYDEN INC", "Address": "PO Box 1114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 116900, "Improved_V": 302900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.9017165295, "SHAPE_Area": 73.690406926099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358406.320200003683567, 256930.561299998313189 ], [ 358399.310500003397465, 256928.874899998307228 ], [ 358398.019299998879433, 256937.77309999987483 ], [ 358407.742499999701977, 256939.304000001400709 ], [ 358406.320200003683567, 256930.561299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302382600", "MAP": "D9-8446-T010", "PARCEL_NAM": "VIMMELSKAFT'S GADE 12", "ACRE": "1,287 sq ft", "LONGITUDE": -64.93376909, "LATITUDE": 18.34184746, "OBJECTID_1": 10662, "PARCEL_NO_": "105302382600", "Tax_Legal_": "WIMMELSKAFS GADE 12 QUEENS QUARTER", "Name": "KINGDOM PARADISE LLC", "Address": "5212 Wimmelskafts Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 113000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.894304771599998, "SHAPE_Area": 125.79406222900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358493.839699998497963, 256925.194499999284744 ], [ 358496.16160000115633, 256936.61259999871254 ], [ 358496.675700001418591, 256939.806699998676777 ], [ 358505.883199997246265, 256936.790500000119209 ], [ 358505.178900003433228, 256926.975600000470877 ], [ 358493.839699998497963, 256925.194499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302240400", "MAP": null, "PARCEL_NAM": "HAABETS GADE 4", "ACRE": null, "LONGITUDE": -64.93978595, "LATITUDE": 18.34186896, "OBJECTID_1": 10313, "PARCEL_NO_": "105302240400", "Tax_Legal_": "HAABETS GADE 4 CROWN PRINCE QTR", "Name": "STOUT, NORBERT P. & GOLDA P", "Address": "PO Box 304526", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25300, "Improved_V": 217900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.188380347500001, "SHAPE_Area": 169.952508782 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357872.377300001680851, 256924.816199999302626 ], [ 357856.265399999916553, 256922.99549999833107 ], [ 357856.173699997365475, 256933.760600000619888 ], [ 357871.47919999808073, 256935.574599999934435 ], [ 357872.377300001680851, 256924.816199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302411100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9327974, "LATITUDE": 18.34179613, "OBJECTID_1": 10712, "PARCEL_NO_": "105302411100", "Tax_Legal_": "DRONNINGENS GADE QUEENS QTR", "Name": "BCMS HOLDINGS INC", "Address": "PO Box 835", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 394200, "Improved_V": 710500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.954002065600001, "SHAPE_Area": 164.845453021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358603.040200002491474, 256913.9087999984622 ], [ 358596.384700000286102, 256937.918999999761581 ], [ 358603.627099998295307, 256939.666999999433756 ], [ 358608.671800002455711, 256915.432500001043081 ], [ 358603.040200002491474, 256913.9087999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302440100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93477604, "LATITUDE": 18.34185556, "OBJECTID_1": 10737, "PARCEL_NO_": "105302440100", "Tax_Legal_": "NELLIKE 1 & STORE 1A & 10 CROWN PRINCE QTR", "Name": "AUSTIN BLYDEN INC", "Address": "PO Box 1114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 116900, "Improved_V": 302900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.578831323599999, "SHAPE_Area": 91.893148640099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358399.310500003397465, 256928.874899998307228 ], [ 358389.487700000405312, 256926.511700000613928 ], [ 358389.234300002455711, 256927.779800001531839 ], [ 358387.560599997639656, 256934.943300001323223 ], [ 358398.019299998879433, 256937.77309999987483 ], [ 358399.310500003397465, 256928.874899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302283700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93643077, "LATITUDE": 18.34181394, "OBJECTID_1": 10483, "PARCEL_NO_": "105302283700", "Tax_Legal_": "PRINDCESSE 8&9B CROWN PRINCE QTR", "Name": "RENE, EUBALD (TRUSTEE)", "Address": "PO Box 305252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71900, "Improved_V": 26500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.680795959899996, "SHAPE_Area": 263.99285577699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358224.680100001394749, 256934.243500001728535 ], [ 358226.492299996316433, 256910.826900001615286 ], [ 358220.851700000464916, 256910.358600001782179 ], [ 358219.115000002086163, 256924.909800000488758 ], [ 358209.44820000231266, 256923.775199998170137 ], [ 358208.602399997413158, 256928.412399999797344 ], [ 358207.743900001049042, 256934.527100000530481 ], [ 358217.412500001490116, 256935.450599998235703 ], [ 358223.857600003480911, 256936.136599998921156 ], [ 358224.680100001394749, 256934.243500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302284000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93602249, "LATITUDE": 18.34186016, "OBJECTID_1": 10486, "PARCEL_NO_": "105302284000", "Tax_Legal_": "PRINDCESSE GADE 5A CROWN PRINCE QTR", "Name": "EDDY, LIONEL & NOLMA", "Address": "PO Box 304855", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.098582379299998, "SHAPE_Area": 112.84773262100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358268.2820999994874, 256927.423200000077486 ], [ 358256.190999999642372, 256926.901999998837709 ], [ 358255.359499998390675, 256929.850499998778105 ], [ 358255.305600002408028, 256936.182900000363588 ], [ 358269.021899998188019, 256935.239700000733137 ], [ 358268.2820999994874, 256927.423200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302200900", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 11A", "ACRE": null, "LONGITUDE": -64.93756656, "LATITUDE": 18.34179155, "OBJECTID_1": 10182, "PARCEL_NO_": "105302200900", "Tax_Legal_": "PRINDCESSE GADE 11A CROWN PRINCE QUARTER", "Name": "CIPRIAN, JEISSY ESTHER", "Address": "PO Box 307136", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23500, "Improved_V": 80500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.992279312099996, "SHAPE_Area": 492.57863362699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358088.600299999117851, 256911.175999999046326 ], [ 358085.206000000238419, 256930.99100000038743 ], [ 358108.558499999344349, 256934.770700000226498 ], [ 358111.967100001871586, 256913.267099998891354 ], [ 358088.600299999117851, 256911.175999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302241400", "MAP": null, "PARCEL_NAM": "GREENE STREET 5", "ACRE": null, "LONGITUDE": -64.93959459, "LATITUDE": 18.34185592, "OBJECTID_1": 10325, "PARCEL_NO_": "105302241400", "Tax_Legal_": "GREENE STREET 5 CROWN PRINCE QTR", "Name": "HOWELL, CAROL DIANA", "Address": "PO BOX 3576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.528226465199999, "SHAPE_Area": 152.84667157199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357886.093599997460842, 256923.872900001704693 ], [ 357874.798000000417233, 256924.624899998307228 ], [ 357873.932300001382828, 256931.58390000090003 ], [ 357886.829700000584126, 256932.111600000411272 ], [ 357893.278399996459484, 256932.375500001013279 ], [ 357893.359399996697903, 256922.876899998635054 ], [ 357886.093599997460842, 256923.872900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302240600", "MAP": null, "PARCEL_NAM": "HAABETS GADE 13", "ACRE": "1456 square feet", "LONGITUDE": -64.93943294, "LATITUDE": 18.34184505, "OBJECTID_1": 10315, "PARCEL_NO_": "105302240600", "Tax_Legal_": "ULKE GADE 13 CROWN PRINCE QTR", "Name": "BRATHWAITE E I G R", "Address": "P.O.BOX 3731", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.131544698500001, "SHAPE_Area": 142.12259318400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357900.618000000715256, 256922.725299999117851 ], [ 357893.359399996697903, 256922.876899998635054 ], [ 357893.278399996459484, 256932.375500001013279 ], [ 357909.426299996674061, 256929.974500000476837 ], [ 357911.101800002157688, 256922.600000001490116 ], [ 357900.618000000715256, 256922.725299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302451000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93537098, "LATITUDE": 18.34184774, "OBJECTID_1": 10760, "PARCEL_NO_": "105302451000", "Tax_Legal_": "REGJERINGS GADE 2B CROWN PRINCE QTR", "Name": "LEONARD, HICKBIE & ROBERTS, S", "Address": "330 Frank Baum Dr", "City": "Schertz", "State": "Texas", "Zip": 781541161, "Country": "United States", "Land_Value": 15400, "Improved_V": 149200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.143474849100002, "SHAPE_Area": 114.464302766 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358336.834799997508526, 256926.084399998188019 ], [ 358324.74549999833107, 256925.352200001478195 ], [ 358325.485299997031689, 256933.168699998408556 ], [ 358325.461900003254414, 256935.91270000115037 ], [ 358335.943999998271465, 256935.998500000685453 ], [ 358336.834799997508526, 256926.084399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302411000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93286409, "LATITUDE": 18.3417711, "OBJECTID_1": 10711, "PARCEL_NO_": "105302411000", "Tax_Legal_": "DRONNINGENS GADE 12 QUEENS QUARTER", "Name": "JOY, DEBORAH C", "Address": "PO Box 8208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 403700, "Improved_V": 256200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.964687112199996, "SHAPE_Area": 209.35387903500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358594.192400000989437, 256911.303300000727177 ], [ 358589.142300002276897, 256936.171000000089407 ], [ 358596.384700000286102, 256937.918999999761581 ], [ 358603.040200002491474, 256913.9087999984622 ], [ 358594.192400000989437, 256911.303300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302283800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93628594, "LATITUDE": 18.34178606, "OBJECTID_1": 10484, "PARCEL_NO_": "105302283800", "Tax_Legal_": "PRINDCESSE GADE 7 CROWN PRINCE QTR", "Name": "JERVIER, AMBROSE", "Address": "PO Box 307093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37800, "Improved_V": 172900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.003628065300006, "SHAPE_Area": 390.79688962400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358226.492299996316433, 256910.826900001615286 ], [ 358224.680100001394749, 256934.243500001728535 ], [ 358242.41889999806881, 256934.388700000941753 ], [ 358242.456699997186661, 256929.956000000238419 ], [ 358243.410499997437, 256912.654100000858307 ], [ 358226.492299996316433, 256910.826900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302440800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93415464, "LATITUDE": 18.34185386, "OBJECTID_1": 10743, "PARCEL_NO_": "105302440800", "Tax_Legal_": "GUTTETS GADE 4 CROWN PRINCE QTR", "Name": "VARLACK, RODNEY & DELRISE, CO-TRUS", "Address": "PO Box 1300", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 21200, "Improved_V": 122200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.044710105199997, "SHAPE_Area": 102.634377974 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358451.313199996948242, 256929.13230000063777 ], [ 358452.061999998986721, 256935.893399998545647 ], [ 358454.480899997055531, 256935.913199998438358 ], [ 358467.385499998927116, 256935.596599999815226 ], [ 358466.634900003671646, 256929.046599999070168 ], [ 358451.313199996948242, 256929.13230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302230800", "MAP": null, "PARCEL_NAM": "ULKE GADE 1O", "ACRE": null, "LONGITUDE": -64.93922734, "LATITUDE": 18.34183884, "OBJECTID_1": 10280, "PARCEL_NO_": "105302230800", "Tax_Legal_": "ULKE GADE 1O CROWN PRINCE QTR", "Name": "ROACH, VICTORIA", "Address": "1O ULKE GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.627638080500006, "SHAPE_Area": 122.890322877 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357943.327399998903275, 256926.030099999159575 ], [ 357935.27139999717474, 256925.119800001382828 ], [ 357914.328900001943111, 256922.415300000458956 ], [ 357913.497400000691414, 256925.363800000399351 ], [ 357911.839800000190735, 256930.627599999308586 ], [ 357921.528200000524521, 256929.229200001806021 ], [ 357932.830899998545647, 256927.633000001311302 ], [ 357943.327399998903275, 256926.030099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302410900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93295575, "LATITUDE": 18.34175697, "OBJECTID_1": 10710, "PARCEL_NO_": "105302410900", "Tax_Legal_": "QUEEN STREET 13 QUEENS QTR", "Name": "THOMPSON, PEARL", "Address": "6815 Niumalu Loop", "City": "Honolulu", "State": "Hawaii", "Zip": 96825, "Country": "United States", "Land_Value": 597400, "Improved_V": 93800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.779903746200006, "SHAPE_Area": 287.73625200200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358584.53999999910593, 256908.480000000447035 ], [ 358577.071000002324581, 256933.327899999916553 ], [ 358589.142300002276897, 256936.171000000089407 ], [ 358594.192400000989437, 256911.303300000727177 ], [ 358584.53999999910593, 256908.480000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302451100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93552024, "LATITUDE": 18.3418331, "OBJECTID_1": 10761, "PARCEL_NO_": "105302451100", "Tax_Legal_": "KANAL GADE 4 CROWN PRINCE QTR", "Name": "GARCIA, ANGEL L. & ANN A", "Address": "PO BOX 4622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8800, "Improved_V": 18300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.036391241899999, "SHAPE_Area": 155.48375396 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358324.74549999833107, 256925.352200001478195 ], [ 358306.207500003278255, 256924.356100000441074 ], [ 358305.327500000596046, 256933.003699999302626 ], [ 358317.416799999773502, 256933.73589999973774 ], [ 358317.438400000333786, 256931.203000001609325 ], [ 358325.485299997031689, 256933.168699998408556 ], [ 358324.74549999833107, 256925.352200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302450700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93523774000001, "LATITUDE": 18.34185655, "OBJECTID_1": 10757, "PARCEL_NO_": "105302450700", "Tax_Legal_": "KANAL GADE 1 CROWN PRINCE QTR", "Name": "GREAUX, VALENTINE", "Address": "BOX 2455", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5300, "Improved_V": 48800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.7530131788, "SHAPE_Area": 30.8070332253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358339.196199998259544, 256932.85869999974966 ], [ 358347.253899998962879, 256933.557900000363588 ], [ 358352.919699996709824, 256931.071199998259544 ], [ 358339.2195999994874, 256930.114700000733137 ], [ 358339.196199998259544, 256932.85869999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302451500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93564854, "LATITUDE": 18.34179142, "OBJECTID_1": 10765, "PARCEL_NO_": "105302451500", "Tax_Legal_": "PRINCESSE GADE 3 CROWN PRINCE QTR", "Name": "TITLEY, MARIA-U. P & OTHERS", "Address": "7058 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.968350769799997, "SHAPE_Area": 150.122249141 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358296.603699997067451, 256915.833700001239777 ], [ 358297.26799999922514, 256932.515500001609325 ], [ 358305.327500000596046, 256933.003699999302626 ], [ 358306.207500003278255, 256924.356100000441074 ], [ 358306.274099998176098, 256916.54619999974966 ], [ 358296.603699997067451, 256915.833700001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302200800", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 11B", "ACRE": null, "LONGITUDE": -64.93777108, "LATITUDE": 18.34176843, "OBJECTID_1": 10181, "PARCEL_NO_": "105302200800", "Tax_Legal_": "PRINDCESSE GADE 11B CROWN PRINCE QUARTER", "Name": "ROBINSON, TYRONE & SARAH", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23500, "Improved_V": 92100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.819598235900003, "SHAPE_Area": 387.81755831599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358088.600299999117851, 256911.175999999046326 ], [ 358068.456799998879433, 256909.322399999946356 ], [ 358065.877899996936321, 256928.088599998503923 ], [ 358085.206000000238419, 256930.99100000038743 ], [ 358088.600299999117851, 256911.175999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302451400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93571628, "LATITUDE": 18.34178835, "OBJECTID_1": 10764, "PARCEL_NO_": "105302451400", "Tax_Legal_": "PRINDCESSE GADE 3A CROWN PRINCE QTR", "Name": "TITLEY, MARIA-U. P & OTHERS", "Address": "7058 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 42700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.939043388599998, "SHAPE_Area": 87.146593151600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358292.431900002062321, 256932.264899998903275 ], [ 358297.26799999922514, 256932.515500001609325 ], [ 358296.603699997067451, 256915.833700001239777 ], [ 358290.961300000548363, 256915.576400000602007 ], [ 358292.431900002062321, 256932.264899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301150500", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-3", "ACRE": "0.23", "LONGITUDE": -64.94680783, "LATITUDE": 18.34171715, "OBJECTID_1": 9504, "PARCEL_NO_": "105301150500", "Tax_Legal_": "ALTONA & WELGUNST 212A-3 KRONP. PRINCE QTR.", "Name": "BRIDGEWATER, OSCAR & STEPHANIE", "Address": "P.O. BOX 5420", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75100, "Improved_V": 310000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.18856037, "SHAPE_Area": 1030.9392550099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357101.667900003492832, 256919.041499998420477 ], [ 357138.855599999427795, 256921.098600000143051 ], [ 357142.874899998307228, 256894.147599998861551 ], [ 357104.998000003397465, 256891.515500001609325 ], [ 357101.667900003492832, 256919.041499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302213200", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 1BB", "ACRE": "2,116 sq ft", "LONGITUDE": -64.93705172, "LATITUDE": 18.34169917, "OBJECTID_1": 10215, "PARCEL_NO_": "105302213200", "Tax_Legal_": "GAMLE NORDSIDEVEJ 1BB CROWN PRINCE QUARTER", "Name": "WALLACE, PHYLLIS L", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11700, "Improved_V": 78800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.760478060499999, "SHAPE_Area": 173.82748171700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358155.963699996471405, 256920.212400000542402 ], [ 358156.969200000166893, 256919.947799999266863 ], [ 358158.59009999781847, 256920.13120000064373 ], [ 358160.252999998629093, 256906.369500000029802 ], [ 358158.130800001323223, 256906.213100001215935 ], [ 358149.125900000333786, 256905.549699999392033 ], [ 358147.429200001060963, 256905.434300001710653 ], [ 358146.728200003504753, 256919.525699999183416 ], [ 358147.555699996650219, 256919.587200000882149 ], [ 358155.963699996471405, 256920.212400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302410800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9330685, "LATITUDE": 18.34172437, "OBJECTID_1": 10709, "PARCEL_NO_": "105302410800", "Tax_Legal_": "14 DRONNINGENS GADE QUEENS QUARTER", "Name": "THEY CYRIL V. FRANCOIS ASSOCIA", "Address": "PO Box 276", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 948800, "Improved_V": 380400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.115866056300007, "SHAPE_Area": 358.71260635300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358570.865000002086163, 256904.568399999290705 ], [ 358566.689599998295307, 256921.421700000762939 ], [ 358564.193400003015995, 256930.478300001472235 ], [ 358577.071000002324581, 256933.327899999916553 ], [ 358584.53999999910593, 256908.480000000447035 ], [ 358570.865000002086163, 256904.568399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302231200", "MAP": null, "PARCEL_NAM": "TULIPAN STREET 2B", "ACRE": null, "LONGITUDE": -64.93890462, "LATITUDE": 18.34178897, "OBJECTID_1": 10284, "PARCEL_NO_": "105302231200", "Tax_Legal_": "TULIPAN STREET 2B CROWN PRINCE QTR", "Name": "RABSATT, ELOISE", "Address": "PO Box 302391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9100, "Improved_V": 9700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.551866482800001, "SHAPE_Area": 211.99240541200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357967.615599997341633, 256914.61879999935627 ], [ 357948.246200002729893, 256916.571199998259544 ], [ 357947.353500001132488, 256926.696400001645088 ], [ 357953.793200001120567, 256928.015599999576807 ], [ 357966.724799998104572, 256924.532900001853704 ], [ 357967.615599997341633, 256914.61879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302450800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93521563, "LATITUDE": 18.3417941, "OBJECTID_1": 10758, "PARCEL_NO_": "105302450800", "Tax_Legal_": "KANAL GADE 2 CROWN PRINCE QTR", "Name": "GREAUX, VALENTINE &JOSEPH I. & AUGUSTINE, CAROL", "Address": "P O BOX 2455", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4600, "Improved_V": 144400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.059628687500002, "SHAPE_Area": 173.18680079200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358354.580899998545647, 256925.385299999266863 ], [ 358355.4358000010252, 256919.692699998617172 ], [ 358340.123000003397465, 256918.723000001162291 ], [ 358339.2195999994874, 256930.114700000733137 ], [ 358352.919699996709824, 256931.071199998259544 ], [ 358354.537699997425079, 256930.451200000941753 ], [ 358354.580899998545647, 256925.385299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302283900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93614084, "LATITUDE": 18.34177199, "OBJECTID_1": 10485, "PARCEL_NO_": "105302283900", "Tax_Legal_": "PRINDCESSE GADE 6 CROWN PRINCE QTR", "Name": "SHALOM PROPERTIES LLC", "Address": "PO Box 640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.134191723699999, "SHAPE_Area": 219.39745956 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358243.410499997437, 256912.654100000858307 ], [ 358242.456699997186661, 256929.956000000238419 ], [ 358255.359499998390675, 256929.850499998778105 ], [ 358256.190999999642372, 256926.901999998837709 ], [ 358256.300700001418591, 256914.026200000196695 ], [ 358243.410499997437, 256912.654100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302213000", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 1A", "ACRE": "2,971 sq ft", "LONGITUDE": -64.93730278, "LATITUDE": 18.34172357, "OBJECTID_1": 10213, "PARCEL_NO_": "105302213000", "Tax_Legal_": "GAMLE NORDSIDEVEJ 1A CROWN PRINCE QUARTER", "Name": "VEIRA, ESSINGTON", "Address": "PO Box 10588", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 125100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.845755103100004, "SHAPE_Area": 314.79533783300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358134.620300002396107, 256904.562600001692772 ], [ 358120.919299997389317, 256903.630100000649691 ], [ 358118.315200001001358, 256925.351399999111891 ], [ 358132.721699997782707, 256927.195300001651049 ], [ 358134.620300002396107, 256904.562600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302200500", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 12 REM", "ACRE": null, "LONGITUDE": -64.93795589, "LATITUDE": 18.34169499, "OBJECTID_1": 10179, "PARCEL_NO_": "105302200500", "Tax_Legal_": "PRINDSESSE GADE 12 CROWN PRINCE QUARTER", "Name": "GEORGES,DIANE C, & DIANE C.,ELIC A.,DENISE M..LINELL G.&JOHN G.", "Address": "Prindcesse Gade 12B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33400, "Improved_V": 91400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.51682941599999, "SHAPE_Area": 583.67308596400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358068.456799998879433, 256909.322399999946356 ], [ 358066.623099997639656, 256909.373599998652935 ], [ 358066.682899996638298, 256896.280999999493361 ], [ 358050.033900000154972, 256894.817200001329184 ], [ 358046.551500000059605, 256924.975099999457598 ], [ 358065.877899996936321, 256928.088599998503923 ], [ 358068.456799998879433, 256909.322399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302231000", "MAP": null, "PARCEL_NAM": "ULKE GADE 9A", "ACRE": null, "LONGITUDE": -64.93904981, "LATITUDE": 18.34177144, "OBJECTID_1": 10282, "PARCEL_NO_": "105302231000", "Tax_Legal_": "ULKE GADE 9A CROWN PRINCE QTR", "Name": "CHRISTOPHER, RUDOLPH", "Address": "BOX 2391", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13700, "Improved_V": 17500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.202170924599997, "SHAPE_Area": 162.974102692 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357948.246200002729893, 256916.571199998259544 ], [ 357948.274899996817112, 256913.193900000303984 ], [ 357937.002700001001358, 256911.201799999922514 ], [ 357935.27139999717474, 256925.119800001382828 ], [ 357943.327399998903275, 256926.030099999159575 ], [ 357947.353500001132488, 256926.696400001645088 ], [ 357948.246200002729893, 256916.571199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302284500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93657921, "LATITUDE": 18.3417913, "OBJECTID_1": 10491, "PARCEL_NO_": "105302284500", "Tax_Legal_": "BORGER GADE 1&2 CROWN PRINCE QTR", "Name": "THOMAS, PAGETT L. & WHITE, JEA", "Address": "PO Box 305437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8300, "Improved_V": 24700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.7382124879, "SHAPE_Area": 107.315678154 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358209.482400000095367, 256919.764699999243021 ], [ 358197.398500002920628, 256918.399300001561642 ], [ 358196.518500000238419, 256927.046900000423193 ], [ 358208.602399997413158, 256928.412399999797344 ], [ 358209.44820000231266, 256923.775199998170137 ], [ 358209.482400000095367, 256919.764699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302240700", "MAP": null, "PARCEL_NAM": "HAABETS GADE 3", "ACRE": null, "LONGITUDE": -64.93978205000001, "LATITUDE": 18.34177411, "OBJECTID_1": 10316, "PARCEL_NO_": "105302240700", "Tax_Legal_": "HAABETS GADE 3 CROWN PRINCE QTR", "Name": "POTTER, F", "Address": "PO Box 302562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032562, "Country": "United States", "Land_Value": 9100, "Improved_V": 18400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.027736982, "SHAPE_Area": 166.803449839 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357872.377300001680851, 256924.816199999302626 ], [ 357872.472599998116493, 256913.629000000655651 ], [ 357856.3462999984622, 256913.497000001370907 ], [ 357856.265399999916553, 256922.99549999833107 ], [ 357872.377300001680851, 256924.816199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302240800", "MAP": null, "PARCEL_NAM": "GREENE STREET 3", "ACRE": null, "LONGITUDE": -64.93964795, "LATITUDE": 18.34169135, "OBJECTID_1": 10317, "PARCEL_NO_": "105302240800", "Tax_Legal_": "GREENE STREET 3 CROWN PRINCE QTR", "Name": "GEORGE, ROSALIA", "Address": "Sarah Brown", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25800, "Improved_V": 23200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.657731601400002, "SHAPE_Area": 379.98743850599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357879.891199998557568, 256894.691300000995398 ], [ 357871.808300003409386, 256896.94709999859333 ], [ 357872.472599998116493, 256913.629000000655651 ], [ 357872.377300001680851, 256924.816199999302626 ], [ 357874.798000000417233, 256924.624899998307228 ], [ 357886.093599997460842, 256923.872900001704693 ], [ 357884.608599998056889, 256908.873100001364946 ], [ 357885.524599999189377, 256896.003899998962879 ], [ 357884.739900000393391, 256893.464400000870228 ], [ 357879.891199998557568, 256894.691300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302410600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93320059, "LATITUDE": 18.3417817, "OBJECTID_1": 10707, "PARCEL_NO_": "105302410600", "Tax_Legal_": "WIMMELSKAFT GADE 9 QUEENS QUARTER", "Name": "15 MAIN STREET CORPORATION", "Address": "PO Box 302605", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 131900, "Improved_V": 165600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.905108435599999, "SHAPE_Area": 98.209737249599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358566.689599998295307, 256921.421700000762939 ], [ 358556.218299999833107, 256920.069499999284744 ], [ 358553.722099997103214, 256929.1261 ], [ 358564.193400003015995, 256930.478300001472235 ], [ 358566.689599998295307, 256921.421700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302230900", "MAP": null, "PARCEL_NAM": "ULKE GADE 9", "ACRE": null, "LONGITUDE": -64.9391978, "LATITUDE": 18.3417532, "OBJECTID_1": 10281, "PARCEL_NO_": "105302230900", "Tax_Legal_": "ULKE GADE 9 CROWN PRINCE QTR", "Name": "HAZELWOOD, ALPHEOUS", "Address": "2409 Ulke Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7200, "Improved_V": 111000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.0401685418, "SHAPE_Area": 280.16095902699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357937.002700001001358, 256911.201799999922514 ], [ 357919.2871999964118, 256908.312600001692772 ], [ 357914.328900001943111, 256922.415300000458956 ], [ 357935.27139999717474, 256925.119800001382828 ], [ 357937.002700001001358, 256911.201799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302284500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93669475, "LATITUDE": 18.34178023, "OBJECTID_1": 10491, "PARCEL_NO_": "105302284500", "Tax_Legal_": "BORGER GADE 1&2 CROWN PRINCE QTR", "Name": "THOMAS, PAGETT L. & WHITE, JEA", "Address": "PO Box 305437", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8300, "Improved_V": 24700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.896254187300002, "SHAPE_Area": 106.889957079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358197.398500002920628, 256918.399300001561642 ], [ 358185.314599998295307, 256917.0337999984622 ], [ 358184.432800002396107, 256925.892499998211861 ], [ 358196.518500000238419, 256927.046900000423193 ], [ 358197.398500002920628, 256918.399300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302284200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93602176, "LATITUDE": 18.3417647, "OBJECTID_1": 10488, "PARCEL_NO_": "105302284200", "Tax_Legal_": "PRINDCESSE GADE 5 CROWN PRINCE QTR", "Name": "EDY, LIONEL & NOLMA", "Address": "PO Box 304855", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9700, "Improved_V": 43700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.585544883200001, "SHAPE_Area": 146.54881594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358256.300700001418591, 256914.026200000196695 ], [ 358256.190999999642372, 256926.901999998837709 ], [ 358268.2820999994874, 256927.423200000077486 ], [ 358267.580099999904633, 256915.1739999987185 ], [ 358256.300700001418591, 256914.026200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302440100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93473488, "LATITUDE": 18.34179846, "OBJECTID_1": 10737, "PARCEL_NO_": "105302440100", "Tax_Legal_": "NELLIKE 1 & STORE 1A & 10 CROWN PRINCE QTR", "Name": "AUSTIN BLYDEN INC", "Address": "PO Box 1114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 116900, "Improved_V": 302900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.705606218200003, "SHAPE_Area": 89.272158847900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358405.841499999165535, 256927.61879999935627 ], [ 358405.493500001728535, 256924.619600001722574 ], [ 358390.932499997317791, 256921.272900000214577 ], [ 358390.07660000026226, 256923.564800001680851 ], [ 358389.487700000405312, 256926.511700000613928 ], [ 358399.310500003397465, 256928.874899998307228 ], [ 358406.320200003683567, 256930.561299998313189 ], [ 358405.841499999165535, 256927.61879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302410400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93339073, "LATITUDE": 18.34175909, "OBJECTID_1": 10705, "PARCEL_NO_": "105302410400", "Tax_Legal_": "WIMMELSKAFT GADE 11 QUEENS QUARTER", "Name": "HOBSON, KENNETH & JUDITH", "Address": "PO Box 10764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36700, "Improved_V": 159300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.708367194199994, "SHAPE_Area": 278.45923992299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358536.082099996507168, 256917.371599998325109 ], [ 358526.415399998426437, 256916.236999999731779 ], [ 358523.920900002121925, 256925.082499999552965 ], [ 358553.722099997103214, 256929.1261 ], [ 358556.218299999833107, 256920.069499999284744 ], [ 358551.385899998247623, 256919.396600000560284 ], [ 358536.082099996507168, 256917.371599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302142900", "MAP": "D9-8448-T010", "PARCEL_NAM": "4", "ACRE": ".07", "LONGITUDE": -64.94002921000001, "LATITUDE": 18.3417131, "OBJECTID_1": 9931, "PARCEL_NO_": "105302142900", "Tax_Legal_": "ANNAS FANCY 4 KRONPRINDSENS GADE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.101829734500001, "SHAPE_Area": 399.47664184199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357849.960500001907349, 256905.845400001853704 ], [ 357829.856700003147125, 256899.348000001162291 ], [ 357826.467799998819828, 256918.529800001531839 ], [ 357846.591399997472763, 256922.705299999564886 ], [ 357849.013999998569489, 256922.30290000140667 ], [ 357849.030199997127056, 256920.403200000524521 ], [ 357849.960500001907349, 256905.845400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302450900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93537282, "LATITUDE": 18.34176798, "OBJECTID_1": 10759, "PARCEL_NO_": "105302450900", "Tax_Legal_": "PRINDCESSSE GADE 1 CROWN PRINCE QTR", "Name": "COMISSIONG, MARIA C.", "Address": "PO BOX 998", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5100, "Improved_V": 54200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.2688416831, "SHAPE_Area": 94.720605426500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358324.004000000655651, 256917.746700000017881 ], [ 358324.74549999833107, 256925.352200001478195 ], [ 358336.834799997508526, 256926.084399998188019 ], [ 358336.899599999189377, 256918.485599998384714 ], [ 358324.004000000655651, 256917.746700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302450600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93507519000001, "LATITUDE": 18.34177574, "OBJECTID_1": 10756, "PARCEL_NO_": "105302450600", "Tax_Legal_": "STRAND GADE 9 CROWN PRINCE QTR", "Name": "BARRY, CINDY", "Address": "146-79 ESTATE TUTU", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6800, "Improved_V": 57200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.951917039400001, "SHAPE_Area": 81.445096628000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358354.580899998545647, 256925.385299999266863 ], [ 358368.281000003218651, 256926.34180000051856 ], [ 358369.942199997603893, 256920.655799999833107 ], [ 358355.4358000010252, 256919.692699998617172 ], [ 358354.580899998545647, 256925.385299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302241000", "MAP": null, "PARCEL_NAM": "ULKE GADE 15", "ACRE": null, "LONGITUDE": -64.93954792, "LATITUDE": 18.34174464, "OBJECTID_1": 10321, "PARCEL_NO_": "105302241000", "Tax_Legal_": "ULKE GADE 15 KROMP PRINCE QTR", "Name": "SADDLER, ANN", "Address": "PO Box 307016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.092994454699998, "SHAPE_Area": 120.761865168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357893.359399996697903, 256922.876899998635054 ], [ 357893.485200002789497, 256908.101399999111891 ], [ 357884.608599998056889, 256908.873100001364946 ], [ 357886.093599997460842, 256923.872900001704693 ], [ 357893.359399996697903, 256922.876899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302284300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93646796, "LATITUDE": 18.34173226, "OBJECTID_1": 10489, "PARCEL_NO_": "105302284300", "Tax_Legal_": "9A PRINDCESSE GADE CROWN PRINCE QTR", "Name": "RENE, EUBALD (TRUSTEE)", "Address": "PO Box 305252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14200, "Improved_V": 525800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.518672768899997, "SHAPE_Area": 149.69728003399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358210.378600001335144, 256909.217399999499321 ], [ 358209.482400000095367, 256919.764699999243021 ], [ 358209.44820000231266, 256923.775199998170137 ], [ 358219.115000002086163, 256924.909800000488758 ], [ 358220.851700000464916, 256910.358600001782179 ], [ 358210.378600001335144, 256909.217399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301111400", "MAP": null, "PARCEL_NAM": "200-3N", "ACRE": null, "LONGITUDE": -64.94595193000001, "LATITUDE": 18.34170772, "OBJECTID_1": 9406, "PARCEL_NO_": "105301111400", "Tax_Legal_": "ALTONA & WELGUNST 200-3N KRONP. QTR", "Name": "GUMBS, DAVID & HAZRA", "Address": "PO BOX 304252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41800, "Improved_V": 163100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.559222357, "SHAPE_Area": 598.53515897199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357231.52250000089407, 256900.3614999987185 ], [ 357192.857199996709824, 256895.612100001424551 ], [ 357195.93860000371933, 256912.52479999884963 ], [ 357229.77139999717474, 256916.601399999111891 ], [ 357230.640600003302097, 256909.220300000160933 ], [ 357231.52250000089407, 256900.3614999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302451200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93551825, "LATITUDE": 18.34176144, "OBJECTID_1": 10762, "PARCEL_NO_": "105302451200", "Tax_Legal_": "PRINDCESSE GADE 2 CROWN PRINCE QTR", "Name": "GLASGOW, SHELENE", "Address": "PO Box 301964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9400, "Improved_V": 39200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.786983937700001, "SHAPE_Area": 139.40042508799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358306.274099998176098, 256916.54619999974966 ], [ 358306.207500003278255, 256924.356100000441074 ], [ 358324.74549999833107, 256925.352200001478195 ], [ 358324.004000000655651, 256917.746700000017881 ], [ 358306.274099998176098, 256916.54619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302240900", "MAP": null, "PARCEL_NAM": "ULKE GADE 15A", "ACRE": null, "LONGITUDE": -64.93947492, "LATITUDE": 18.34174009, "OBJECTID_1": 10320, "PARCEL_NO_": "105302240900", "Tax_Legal_": "ULKE GADE 15A CROWN PRINCE QTR", "Name": "BAPTISTE, MARY JARVIS", "Address": "97 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5100, "Improved_V": 12600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.752074434299999, "SHAPE_Area": 109.613620963 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357900.618000000715256, 256922.725299999117851 ], [ 357900.749200001358986, 256907.316500000655651 ], [ 357895.0996999964118, 256907.903499998152256 ], [ 357893.485200002789497, 256908.101399999111891 ], [ 357893.359399996697903, 256922.876899998635054 ], [ 357900.618000000715256, 256922.725299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302282400", "MAP": null, "PARCEL_NAM": "BORGER GADE 15", "ACRE": "2,708 sq ft", "LONGITUDE": -64.93689807, "LATITUDE": 18.3417108, "OBJECTID_1": 10470, "PARCEL_NO_": "105302282400", "Tax_Legal_": "BORGER GADE 15 CROWN PRINCE QTR", "Name": "MOOLENAAR, LUCIEN", "Address": "PO BOX 302275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40600, "Improved_V": 109700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.569449495399994, "SHAPE_Area": 285.18385165699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358168.466600000858307, 256906.974500000476837 ], [ 358160.252999998629093, 256906.369500000029802 ], [ 358158.59009999781847, 256920.13120000064373 ], [ 358167.60360000282526, 256921.151200000196695 ], [ 358178.873700000345707, 256922.426600001752377 ], [ 358179.749499998986721, 256907.700100000947714 ], [ 358168.466600000858307, 256906.974500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302241100", "MAP": null, "PARCEL_NAM": "ULKE GADE 12", "ACRE": null, "LONGITUDE": -64.93935857, "LATITUDE": 18.34167936, "OBJECTID_1": 10322, "PARCEL_NO_": "105302241100", "Tax_Legal_": "ULKE GADE 12 CROWN PRINCE QTR", "Name": "MOOLENAAR A & E", "Address": "715 Sable Xing", "City": "Suwanee", "State": "Georgia", "Zip": 30024, "Country": "United States", "Land_Value": 14600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.986887385499998, "SHAPE_Area": 360.24462507200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357921.002400003373623, 256896.294300001114607 ], [ 357904.868900001049042, 256897.006599999964237 ], [ 357903.170000001788139, 256907.125199999660254 ], [ 357900.749200001358986, 256907.316500000655651 ], [ 357900.618000000715256, 256922.725299999117851 ], [ 357912.734200000762939, 256920.291299998760223 ], [ 357921.002400003373623, 256896.294300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93204578, "LATITUDE": 18.34124533, "OBJECTID_1": 12112, "PARCEL_NO_": "105401440100", "Tax_Legal_": "DRONNINGENS GADE 33 QUEENS QUARTER", "Name": "SMITH, LEROY, DIANA, MARGUERITE, JEFFREY, GARY, AND JUEL", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3254800, "Improved_V": 1200800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.43327821299999, "SHAPE_Area": 2020.6224406599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358704.445799998939037, 256811.307599999010563 ], [ 358688.351899996399879, 256807.376200001686811 ], [ 358660.781499996781349, 256920.08559999987483 ], [ 358678.480899997055531, 256924.874499998986721 ], [ 358700.263199999928474, 256829.005199998617172 ], [ 358704.445799998939037, 256811.307599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302231600", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 5B", "ACRE": null, "LONGITUDE": -64.93872937, "LATITUDE": 18.3417209, "OBJECTID_1": 10287, "PARCEL_NO_": "105302231600", "Tax_Legal_": "NYE NORDSIDEVEJ 5B CROWN PRINCE QTR", "Name": "JAMES PLASKETT, VIMYRKA & KELVIN J. JAMES , JR.", "Address": "5527 Sara Creek Ln", "City": "SUGAR HILL", "State": "Georgia", "Zip": 30518, "Country": "United States", "Land_Value": 6400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.390197825199998, "SHAPE_Area": 133.27196425299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357980.471699997782707, 256920.001299999654293 ], [ 357982.18860000371933, 256907.771999999880791 ], [ 357970.900200001895428, 256907.67960000038147 ], [ 357969.989600002765656, 256919.915500000119209 ], [ 357980.471699997782707, 256920.001299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302231500", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 5A", "ACRE": null, "LONGITUDE": -64.93864564, "LATITUDE": 18.34172267, "OBJECTID_1": 10286, "PARCEL_NO_": "105302231500", "Tax_Legal_": "NYE NORDSIDEVEJ 5A CROWN PRINCE QTR", "Name": "JAMES PLASKETT, VIMYRKA & KELVIN J. JAMES , JR.", "Address": "5527 Sara Creek Ln", "City": "SUGAR HILL", "State": "Georgia", "Zip": 30518, "Country": "United States", "Land_Value": 6400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.326826621199999, "SHAPE_Area": 83.911937351800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357988.63910000026226, 256907.824700001627207 ], [ 357982.18860000371933, 256907.771999999880791 ], [ 357980.471699997782707, 256920.001299999654293 ], [ 357987.728500001132488, 256920.060699999332428 ], [ 357988.63910000026226, 256907.824700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302142800", "MAP": "D9-6833-T000", "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.94016521, "LATITUDE": 18.3416532, "OBJECTID_1": 9930, "PARCEL_NO_": "105302142800", "Tax_Legal_": "ANNAS FANCY 5 CROWN PRINCE QUARTER", "Name": "PETERSEN, MILTON A. SR.", "Address": "2036 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16100, "Improved_V": 9100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.193662555200007, "SHAPE_Area": 232.759047584 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357829.856700003147125, 256899.348000001162291 ], [ 357830.713299997150898, 256893.444400001317263 ], [ 357821.860100001096725, 256891.472100000828505 ], [ 357818.462200000882149, 256911.709300000220537 ], [ 357817.612700000405312, 256916.7685999982059 ], [ 357826.467799998819828, 256918.529800001531839 ], [ 357829.856700003147125, 256899.348000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302410300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93362683, "LATITUDE": 18.34161917, "OBJECTID_1": 10704, "PARCEL_NO_": "105302410300", "Tax_Legal_": "QUEENS STREET 18 QUEENS QUARTER", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 997900, "Improved_V": 599300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.9016454721, "SHAPE_Area": 323.22476016000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358513.735500000417233, 256890.168699998408556 ], [ 358507.011699996888638, 256922.19990000128746 ], [ 358515.865000002086163, 256924.172200001776218 ], [ 358524.194200001657009, 256892.998500000685453 ], [ 358513.735500000417233, 256890.168699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302142600", "MAP": null, "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.94038743, "LATITUDE": 18.34169271, "OBJECTID_1": 9928, "PARCEL_NO_": "105302142600", "Tax_Legal_": "ANNAS FANCY 10 CROWN PRINCE QUARTER", "Name": "PEETS, WILLIAM A", "Address": "953 E 215th St", "City": "Bronx", "State": "New York", "Zip": 10469, "Country": "United States", "Land_Value": 13000, "Improved_V": 20200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.456298330199999, "SHAPE_Area": 270.80034256099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357804.049300000071526, 256899.770100001245737 ], [ 357792.7753000035882, 256897.989000000059605 ], [ 357791.00620000064373, 256916.339699998497963 ], [ 357792.60809999704361, 256917.61939999833703 ], [ 357796.639600001275539, 256917.652399998158216 ], [ 357800.690999999642372, 256915.363499999046326 ], [ 357806.344200000166893, 256914.354299999773502 ], [ 357817.612700000405312, 256916.7685999982059 ], [ 357818.462200000882149, 256911.709300000220537 ], [ 357802.350400000810623, 256909.888700000941753 ], [ 357804.049300000071526, 256899.770100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301150600", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-12", "ACRE": "0.23", "LONGITUDE": -64.94719253, "LATITUDE": 18.34159363, "OBJECTID_1": 9505, "PARCEL_NO_": "105301150600", "Tax_Legal_": "212A-12 ALTONA&WELGUNST KRONPRINDSENS QTR.", "Name": "HORSFORD, LEROY R. & AGATHA D.", "Address": "3058 Contant 73-5", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43800, "Improved_V": 102700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.52344937199999, "SHAPE_Area": 1079.1624044600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357094.640000000596046, 256876.865299999713898 ], [ 357066.431599996984005, 256875.156800001859665 ], [ 357063.789700001478195, 256901.3108000010252 ], [ 357062.945600003004074, 256905.736800000071526 ], [ 357089.512599997222424, 256910.809399999678135 ], [ 357094.54450000077486, 256911.705600000917912 ], [ 357096.870099999010563, 256899.04839999973774 ], [ 357099.946800000965595, 256877.133499998599291 ], [ 357094.640000000596046, 256876.865299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302284400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93662926, "LATITUDE": 18.34169925, "OBJECTID_1": 10490, "PARCEL_NO_": "105302284400", "Tax_Legal_": "PRINDCESSE GADE 10 CROWN PRINCE QTR", "Name": "LIVING TRUST of WINSTON M A WILLIAMS", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 25400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.582439609900007, "SHAPE_Area": 254.71585648499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358210.378600001335144, 256909.217399999499321 ], [ 358186.208999998867512, 256906.697500001639128 ], [ 358185.314599998295307, 256917.0337999984622 ], [ 358197.398500002920628, 256918.399300001561642 ], [ 358209.482400000095367, 256919.764699999243021 ], [ 358210.378600001335144, 256909.217399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302410200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93375019, "LATITUDE": 18.34159625, "OBJECTID_1": 10703, "PARCEL_NO_": "105302410200", "Tax_Legal_": "QUEEN STREET 19 QUEENS QUARTER", "Name": "ABIE CORP", "Address": "3A-18 St. Peterborg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 860200, "Improved_V": 146700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.764485508899995, "SHAPE_Area": 550.79216709699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358497.645199999213219, 256885.815099999308586 ], [ 358490.910599999129772, 256919.112799998372793 ], [ 358507.011699996888638, 256922.19990000128746 ], [ 358513.735500000417233, 256890.168699998408556 ], [ 358497.645199999213219, 256885.815099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302145000", "MAP": null, "PARCEL_NAM": "11A", "ACRE": null, "LONGITUDE": -64.9406983, "LATITUDE": 18.34167464, "OBJECTID_1": 9954, "PARCEL_NO_": "105302145000", "Tax_Legal_": "ANNAS FANCY 11A CROWN PRINCE QTR", "Name": "SANCHEZ CORDERO, ENERIO & CLARIBEL", "Address": "PO Box 305972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13200, "Improved_V": 38500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.115617126300002, "SHAPE_Area": 173.31810001400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357773.226300001144409, 256915.246700000017881 ], [ 357774.006300002336502, 256900.114799998700619 ], [ 357763.740900002419949, 256898.595800001174212 ], [ 357762.905799999833107, 256901.966400001198053 ], [ 357760.395099997520447, 256912.71169999986887 ], [ 357773.226300001144409, 256915.246700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302231700", "MAP": null, "PARCEL_NAM": "TULIPAN STREET 2", "ACRE": null, "LONGITUDE": -64.93889302, "LATITUDE": 18.3416705, "OBJECTID_1": 10288, "PARCEL_NO_": "105302231700", "Tax_Legal_": "TULIPAN STREET 2 CROWN PRINCE QTR", "Name": "THOMPSON, HENRY,GLADYS TODMAN JACKSON & OTHERS", "Address": "PO Box 301911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13200, "Improved_V": 15000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.658822752299997, "SHAPE_Area": 289.77855240700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357960.481100000441074, 256900.206000000238419 ], [ 357949.169399999082088, 256902.857599999755621 ], [ 357948.274899996817112, 256913.193900000303984 ], [ 357948.246200002729893, 256916.571199998259544 ], [ 357967.615599997341633, 256914.61879999935627 ], [ 357968.562200002372265, 256898.161200001835823 ], [ 357960.481100000441074, 256900.206000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302410700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93319073000001, "LATITUDE": 18.34165902, "OBJECTID_1": 10708, "PARCEL_NO_": "105302410700", "Tax_Legal_": "QUEENS STREET 15 QUEENS QUARTER", "Name": "15 MAIN STREET CORPORATION", "Address": "PO Box 302605", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 698200, "Improved_V": 161000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.414606184600004, "SHAPE_Area": 270.5434887 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358570.865000002086163, 256904.568399999290705 ], [ 358558.79730000346899, 256901.303300000727177 ], [ 358556.364000000059605, 256902.972100000828505 ], [ 358551.385899998247623, 256919.396600000560284 ], [ 358556.218299999833107, 256920.069499999284744 ], [ 358566.689599998295307, 256921.421700000762939 ], [ 358570.865000002086163, 256904.568399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302430900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93419146, "LATITUDE": 18.34167886, "OBJECTID_1": 10734, "PARCEL_NO_": "105302430900", "Tax_Legal_": "GUTTETS GADE 2 CROWN PRINCE QUARTER", "Name": "HARLEY, MARY & OTHERS", "Address": "3295 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025709, "Country": "United States", "Land_Value": 25800, "Improved_V": 155900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.391207268300001, "SHAPE_Area": 87.760020314599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358449.40429999679327, 256916.457499999552965 ], [ 358461.695699997246265, 256917.119899999350309 ], [ 358461.15259999781847, 256910.003299999982119 ], [ 358450.684900000691414, 256908.228900000452995 ], [ 358449.40429999679327, 256916.457499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302430800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93428825, "LATITUDE": 18.34166895, "OBJECTID_1": 10733, "PARCEL_NO_": "105302430800", "Tax_Legal_": "5 TORVET STRAEDE CROWN PRINCE QTR", "Name": "LARRY WITKOP FAMILY TRUST", "Address": "2221 Regjerrings Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.321870899099999, "SHAPE_Area": 82.041895382500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358439.883000001311302, 256915.944400001317263 ], [ 358449.40429999679327, 256916.457499999552965 ], [ 358450.684900000691414, 256908.228900000452995 ], [ 358441.828100003302097, 256906.678700000047684 ], [ 358439.883000001311302, 256915.944400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301120600", "MAP": null, "PARCEL_NAM": "200-5A-3", "ACRE": null, "LONGITUDE": -64.94639121, "LATITUDE": 18.34150072, "OBJECTID_1": 9432, "PARCEL_NO_": "105301120600", "Tax_Legal_": "ALTONA & WELGUNST 200-5A-3 CROWN PRINCE QTR", "Name": "LOUIS H & ANNA C DANET REVOCABLE TRUST", "Address": "3623 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89100, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.753281652, "SHAPE_Area": 1511.6974415100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357178.633100003004074, 256861.50959999859333 ], [ 357148.8462999984622, 256855.777399998158216 ], [ 357150.304300002753735, 256873.943399999290705 ], [ 357148.463299997150898, 256900.737199999392033 ], [ 357187.101599998772144, 256908.652800001204014 ], [ 357178.633100003004074, 256861.50959999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302430700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93437354, "LATITUDE": 18.34153757, "OBJECTID_1": 10732, "PARCEL_NO_": "105302430700", "Tax_Legal_": "KRONPRINDSENS GADE 2&3A CROWN PRINCE QTR", "Name": "THE SALVATION ARMY", "Address": "P O BOX C-635", "City": "WEST NYACK", "State": "New York", "Zip": 10994, "Country": "United States", "Land_Value": 168400, "Improved_V": 153300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.647955817899998, "SHAPE_Area": 232.65582158699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358444.006899997591972, 256879.053199999034405 ], [ 358438.258400000631809, 256877.904199998825788 ], [ 358428.693899996578693, 256915.341400001198053 ], [ 358435.136699996888638, 256915.6886 ], [ 358444.006899997591972, 256879.053199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302430600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93443208, "LATITUDE": 18.34152786, "OBJECTID_1": 10731, "PARCEL_NO_": "105302430600", "Tax_Legal_": "CROWN PRINCE ST 3B CROWN PRINCE QTR", "Name": "THE SALVATION ARMY", "Address": "440 W Nyack Rd", "City": "West Nyack", "State": "New York", "Zip": 10994, "Country": "United States", "Land_Value": 48700, "Improved_V": 104700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.188582220499995, "SHAPE_Area": 251.52989558300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358438.258400000631809, 256877.904199998825788 ], [ 358431.841099999845028, 256876.621500000357628 ], [ 358422.251400001347065, 256914.994199998676777 ], [ 358428.693899996578693, 256915.341400001198053 ], [ 358438.258400000631809, 256877.904199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302410500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9333386, "LATITUDE": 18.34163554, "OBJECTID_1": 10706, "PARCEL_NO_": "105302410500", "Tax_Legal_": "QUEEN STREET 17 QUEENS QUARTER", "Name": "RAINCLOUD UNLIMITED", "Address": "8736 NW 136 Avenue Rd", "City": "Ocala", "State": "Florida", "Zip": 34482, "Country": "United States", "Land_Value": 792700, "Improved_V": 509200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.907575207799994, "SHAPE_Area": 261.18402410200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358542.699799999594688, 256897.793999999761581 ], [ 358536.082099996507168, 256917.371599998325109 ], [ 358551.385899998247623, 256919.396600000560284 ], [ 358550.610100001096725, 256915.801699999719858 ], [ 358554.771200001239777, 256900.636999998241663 ], [ 358542.699799999594688, 256897.793999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302142400", "MAP": null, "PARCEL_NAM": "17", "ACRE": null, "LONGITUDE": -64.94083051, "LATITUDE": 18.34165073, "OBJECTID_1": 9926, "PARCEL_NO_": "105302142400", "Tax_Legal_": "17 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "FRANCIS, PATRICIA & ROCHESTER, G", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13500, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.812601848100002, "SHAPE_Area": 202.46205272399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357760.395099997520447, 256912.71169999986887 ], [ 357762.905799999833107, 256901.966400001198053 ], [ 357748.456900000572205, 256894.248799998313189 ], [ 357745.111199997365475, 256908.364700000733137 ], [ 357760.395099997520447, 256912.71169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302241200", "MAP": null, "PARCEL_NAM": "HAABETS GADE 2", "ACRE": null, "LONGITUDE": -64.93978629, "LATITUDE": 18.34165165, "OBJECTID_1": 10323, "PARCEL_NO_": "105302241200", "Tax_Legal_": "HAABETS GADE 2 CROWN PRINCE QTR", "Name": "JARVIS ISAAC", "Address": "PO Box 7835", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010835, "Country": "United States", "Land_Value": 12900, "Improved_V": 79600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.246064946800004, "SHAPE_Area": 265.43915744100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357871.808300003409386, 256896.94709999859333 ], [ 357856.491999998688698, 256896.399599999189377 ], [ 357856.3462999984622, 256913.497000001370907 ], [ 357872.472599998116493, 256913.629000000655651 ], [ 357871.808300003409386, 256896.94709999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302410100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93395305, "LATITUDE": 18.34154525, "OBJECTID_1": 10702, "PARCEL_NO_": "105302410100", "Tax_Legal_": "QUEENS STREET 20 QUEENS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3366600, "Improved_V": 681400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.05265676, "SHAPE_Area": 969.16011690799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358490.910599999129772, 256919.112799998372793 ], [ 358497.645199999213219, 256885.815099999308586 ], [ 358467.075499996542931, 256877.332299999892712 ], [ 358466.936999998986721, 256893.585299998521805 ], [ 358470.759999997913837, 256918.103500001132488 ], [ 358484.470899999141693, 256917.793499998748302 ], [ 358490.910599999129772, 256919.112799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302430500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93449006, "LATITUDE": 18.34152705, "OBJECTID_1": 10730, "PARCEL_NO_": "105302430500", "Tax_Legal_": "CROWN PRINCE ST 3C CROWN PRINCE QUARTER", "Name": "MASSAC, CHRISTOPH KEITH", "Address": "PO Box 8980", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60200, "Improved_V": 116400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.530590230200005, "SHAPE_Area": 220.65344107799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358431.841099999845028, 256876.621500000357628 ], [ 358426.849299997091293, 256875.623700000345707 ], [ 358422.607799999415874, 256891.111600000411272 ], [ 358419.278300002217293, 256903.327799998223782 ], [ 358416.230499997735023, 256915.070900000631809 ], [ 358419.20549999922514, 256914.829999998211861 ], [ 358422.251400001347065, 256914.994199998676777 ], [ 358431.841099999845028, 256876.621500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302231800", "MAP": null, "PARCEL_NAM": "ULKE GADE 8", "ACRE": null, "LONGITUDE": -64.93909878, "LATITUDE": 18.34167099, "OBJECTID_1": 10289, "PARCEL_NO_": "105302231800", "Tax_Legal_": "ULKE GADE 8 CROWN PRINCE QTR", "Name": "THOMPSON, HENRY,GLADYS TODMAN JACKSON & OTHERS", "Address": "PO Box 301911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11400, "Improved_V": 15900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.327244892500005, "SHAPE_Area": 167.824700681 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357949.169399999082088, 256902.857599999755621 ], [ 357932.20440000295639, 256906.518500000238419 ], [ 357924.956600002944469, 256905.4037000015378 ], [ 357920.943000003695488, 256903.259899999946356 ], [ 357919.2871999964118, 256908.312600001692772 ], [ 357937.002700001001358, 256911.201799999922514 ], [ 357948.274899996817112, 256913.193900000303984 ], [ 357949.169399999082088, 256902.857599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401430600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93225601, "LATITUDE": 18.34124484, "OBJECTID_1": 12105, "PARCEL_NO_": "105401430600", "Tax_Legal_": "DRONNINGENS GADE 32A QUEENS QUARTER", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 3639800, "Improved_V": 1089200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.923218953, "SHAPE_Area": 1477.96194008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358666.156999997794628, 256816.132399998605251 ], [ 358640.514799997210503, 256915.203099999576807 ], [ 358653.80009999871254, 256918.757199998944998 ], [ 358680.827200002968311, 256819.618599999696016 ], [ 358666.156999997794628, 256816.132399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302142700", "MAP": "D9-8452-T010", "PARCEL_NAM": "133", "ACRE": ".1339", "LONGITUDE": -64.94028468, "LATITUDE": 18.3415423, "OBJECTID_1": 9929, "PARCEL_NO_": "105302142700", "Tax_Legal_": "ANNAS FANCY PCL CEMETERY", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.153415271, "SHAPE_Area": 482.45237128299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357813.141699999570847, 256873.6689000017941 ], [ 357814.883799999952316, 256858.484400000423193 ], [ 357810.857600003480911, 256857.818199999630451 ], [ 357807.443599998950958, 256879.955099999904633 ], [ 357804.049300000071526, 256899.770100001245737 ], [ 357802.350400000810623, 256909.888700000941753 ], [ 357818.462200000882149, 256911.709300000220537 ], [ 357821.860100001096725, 256891.472100000828505 ], [ 357810.589699998497963, 256889.268899999558926 ], [ 357813.141699999570847, 256873.6689000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302452200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93504189, "LATITUDE": 18.34166139, "OBJECTID_1": 10771, "PARCEL_NO_": "105302452200", "Tax_Legal_": "STRAND ST 10,11,12&13 CROWN PRINCE QTR", "Name": "PROP OF METHODIST CHURCH", "Address": "PO Box 1045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 137300, "Improved_V": 915800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.264357435599997, "SHAPE_Area": 147.22922756400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358359.598600000143051, 256904.31700000166893 ], [ 358357.894199997186661, 256915.068799998611212 ], [ 358371.594400003552437, 256916.025299999862909 ], [ 358374.096000000834465, 256906.335499998182058 ], [ 358359.598600000143051, 256904.31700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302430200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93463093, "LATITUDE": 18.34163066, "OBJECTID_1": 10727, "PARCEL_NO_": "105302430200", "Tax_Legal_": "TORVET STRAEDE 6 CROWN PRINCE QUARTER", "Name": "MARKET SQUARE APARTMENTS,LLC", "Address": "PO Box 10447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 78800, "Improved_V": 459800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.288905444900003, "SHAPE_Area": 227.728094828 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358416.230499997735023, 256915.070900000631809 ], [ 358419.278300002217293, 256903.327799998223782 ], [ 358402.383500002324581, 256898.756499998271465 ], [ 358399.052100002765656, 256911.183800000697374 ], [ 358413.067100003361702, 256915.326999999582767 ], [ 358416.230499997735023, 256915.070900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302411200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93344816, "LATITUDE": 18.34161182, "OBJECTID_1": 10713, "PARCEL_NO_": "105302411200", "Tax_Legal_": "DRONNINGENS GADE 16 QUEENS QTR", "Name": "PREMCHAND S BALANI TRUST", "Address": "55 W Monroe St", "City": "Chicago", "State": "Illinois", "Zip": 60603, "Country": "United States", "Land_Value": 575600, "Improved_V": 213300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.878860100799997, "SHAPE_Area": 225.35434771600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358526.415399998426437, 256916.236999999731779 ], [ 358536.082099996507168, 256917.371599998325109 ], [ 358542.699799999594688, 256897.793999999761581 ], [ 358531.434799998998642, 256894.957600001245737 ], [ 358526.415399998426437, 256916.236999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302201000", "MAP": null, "PARCEL_NAM": "PRINDSESSE GADE 11AA REM", "ACRE": null, "LONGITUDE": -64.93757553, "LATITUDE": 18.3416369, "OBJECTID_1": 10183, "PARCEL_NO_": "105302201000", "Tax_Legal_": "PRINDCESSE GADE 11AA CROWN PRINCE QTR", "Name": "DAVIS, MAE NEWTON", "Address": "1634 Horseshoe Ter", "City": "Deltona", "State": "Florida", "Zip": 32738, "Country": "United States", "Land_Value": 10700, "Improved_V": 48600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.801122548899997, "SHAPE_Area": 387.45449740399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358083.162500001490116, 256897.72690000012517 ], [ 358082.827600002288818, 256910.644799999892712 ], [ 358088.600299999117851, 256911.175999999046326 ], [ 358111.967100001871586, 256913.267099998891354 ], [ 358113.689499996602535, 256900.404500000178814 ], [ 358083.162500001490116, 256897.72690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302452100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93514028, "LATITUDE": 18.34165142, "OBJECTID_1": 10770, "PARCEL_NO_": "105302452100", "Tax_Legal_": "KANAL GADE 3B CROWN PRINCE QUARTER", "Name": "PHILLIP, EVELYN", "Address": "PO Box 304139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10200, "Improved_V": 68200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.110836674399998, "SHAPE_Area": 76.848314819099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358359.598600000143051, 256904.31700000166893 ], [ 358352.35080000013113, 256903.202199999243021 ], [ 358351.447300001978874, 256914.593800000846386 ], [ 358357.894199997186661, 256915.068799998611212 ], [ 358359.598600000143051, 256904.31700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302452000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93522065000001, "LATITUDE": 18.34164501, "OBJECTID_1": 10769, "PARCEL_NO_": "105302452000", "Tax_Legal_": "KANAL GADE 3A CROWN PRINCE QUARTER", "Name": "BRIN, JOSEPH E", "Address": "PO Box 6472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5200, "Improved_V": 46200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.632477983199998, "SHAPE_Area": 118.293626456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358351.447300001978874, 256914.593800000846386 ], [ 358352.35080000013113, 256903.202199999243021 ], [ 358342.6858000010252, 256901.856499999761581 ], [ 358340.972499996423721, 256913.663699999451637 ], [ 358351.447300001978874, 256914.593800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302451900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93535312, "LATITUDE": 18.34147022, "OBJECTID_1": 10768, "PARCEL_NO_": "105302451900", "Tax_Legal_": "KRONPRINDSENS GADE 9A CROWN PRINCE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 220700, "Improved_V": 746200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.12229190599999, "SHAPE_Area": 766.01855740099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358338.270499996840954, 256852.21339999884367 ], [ 358333.978200003504753, 256882.786800000816584 ], [ 358323.506899997591972, 256881.434599999338388 ], [ 358319.214599996805191, 256912.008000001311302 ], [ 358336.942699998617172, 256913.419700000435114 ], [ 358345.518299996852875, 256853.328200001269579 ], [ 358338.270499996840954, 256852.21339999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302241300", "MAP": null, "PARCEL_NAM": "GREENE STREET 4", "ACRE": null, "LONGITUDE": -64.93953845, "LATITUDE": 18.34161471, "OBJECTID_1": 10324, "PARCEL_NO_": "105302241300", "Tax_Legal_": "GREENE STREET 4 CROWN PRINCE QTR", "Name": "ARMANTRADING, ROXANNE", "Address": "PO Box 305842", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6600, "Improved_V": 25000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.949744769900001, "SHAPE_Area": 146.633601328 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357895.0996999964118, 256907.903499998152256 ], [ 357896.0371999964118, 256892.501400001347065 ], [ 357885.524599999189377, 256896.003899998962879 ], [ 357884.608599998056889, 256908.873100001364946 ], [ 357893.485200002789497, 256908.101399999111891 ], [ 357895.0996999964118, 256907.903499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302241400", "MAP": null, "PARCEL_NAM": "GREENE STREET 5", "ACRE": null, "LONGITUDE": -64.93944663000001, "LATITUDE": 18.3415923, "OBJECTID_1": 10325, "PARCEL_NO_": "105302241400", "Tax_Legal_": "GREENE STREET 5 CROWN PRINCE QTR", "Name": "HOWELL, CAROL DIANA", "Address": "PO BOX 3576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.9007855881, "SHAPE_Area": 146.54848443899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357904.868900001049042, 256897.006599999964237 ], [ 357905.741800002753735, 256889.203299999237061 ], [ 357896.0371999964118, 256892.501400001347065 ], [ 357895.0996999964118, 256907.903499998152256 ], [ 357900.749200001358986, 256907.316500000655651 ], [ 357903.170000001788139, 256907.125199999660254 ], [ 357904.868900001049042, 256897.006599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401430500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93240196000001, "LATITUDE": 18.34114567, "OBJECTID_1": 12104, "PARCEL_NO_": "105401430500", "Tax_Legal_": "DRONNINGENS GADE 31 QUEENS QUARTER", "Name": "DRAKE'S PASSAGE, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3820500, "Improved_V": 4502600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.50819628800002, "SHAPE_Area": 2425.4400531800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358640.514799997210503, 256915.203099999576807 ], [ 358666.156999997794628, 256816.132399998605251 ], [ 358670.287900000810623, 256804.429999999701977 ], [ 358649.78999999910593, 256795.254599999636412 ], [ 358620.818599998950958, 256909.410199999809265 ], [ 358640.514799997210503, 256915.203099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302451700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93563801000001, "LATITUDE": 18.34154989, "OBJECTID_1": 10767, "PARCEL_NO_": "105302451700", "Tax_Legal_": "PRINDCESSE GADE 39 CROWN PRINCE QUARTER", "Name": "TITLEY, MARIA-U. P & OTHERS", "Address": "7058 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43900, "Improved_V": 128900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.032682727899996, "SHAPE_Area": 319.99034973900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358310.573600001633167, 256885.128400001674891 ], [ 358298.489699997007847, 256883.762899998575449 ], [ 358295.039599999785423, 256910.121399998664856 ], [ 358307.127099998295307, 256911.064699999988079 ], [ 358310.573600001633167, 256885.128400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302232400", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 4", "ACRE": null, "LONGITUDE": -64.93868992, "LATITUDE": 18.34159616, "OBJECTID_1": 10294, "PARCEL_NO_": "105302232400", "Tax_Legal_": "NYE NORDSIDEVEJ 4 CROWN PRINCE QTR", "Name": "SAMUEL, LILLIAN", "Address": "NORTH SILE VIDE #4", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13900, "Improved_V": 30500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.562235206500006, "SHAPE_Area": 275.48163183600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357989.57490000128746, 256892.633699998259544 ], [ 357971.841399997472763, 256891.855200000107288 ], [ 357970.900200001895428, 256907.67960000038147 ], [ 357982.18860000371933, 256907.771999999880791 ], [ 357988.63910000026226, 256907.824700001627207 ], [ 357989.57490000128746, 256892.633699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302451600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93572709, "LATITUDE": 18.34148794, "OBJECTID_1": 10766, "PARCEL_NO_": "105302451600", "Tax_Legal_": "PRINDCESSE GADE 38 CROWN PRINCE QUARTER", "Name": "TITLEY, MARIA-U. P & OTHERS", "Address": "7058 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39300, "Improved_V": 204500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.865819326600004, "SHAPE_Area": 257.77897184300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358295.325499996542931, 256876.559900000691414 ], [ 358288.072300001978874, 256876.078299999237061 ], [ 358291.009900003671646, 256909.877300001680851 ], [ 358295.039599999785423, 256910.121399998664856 ], [ 358298.489699997007847, 256883.762899998575449 ], [ 358299.35530000180006, 256876.803899999707937 ], [ 358295.325499996542931, 256876.559900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302142300", "MAP": null, "PARCEL_NAM": "18", "ACRE": null, "LONGITUDE": -64.94103078000001, "LATITUDE": 18.34157135, "OBJECTID_1": 9925, "PARCEL_NO_": "105302142300", "Tax_Legal_": "ANNAS FANCY 18 CROWN PRINCE QTR", "Name": "THOMAS ALICE HEIRS OF", "Address": "3216 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15200, "Improved_V": 51400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.522297937099999, "SHAPE_Area": 249.182272826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357742.051299996674061, 256888.919100001454353 ], [ 357727.566500000655651, 256885.423000000417233 ], [ 357723.407300002872944, 256900.376600001007318 ], [ 357733.853399999439716, 256904.684000000357628 ], [ 357737.881300002336502, 256905.13910000026226 ], [ 357742.051299996674061, 256888.919100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302143000", "MAP": null, "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.94000856, "LATITUDE": 18.34157438, "OBJECTID_1": 9933, "PARCEL_NO_": "105302143000", "Tax_Legal_": "ANNAS FANCY 3 CROWN PRINCE QUARTER", "Name": "PEETS, WILLIAM A", "Address": "953 E.215th STREET", "City": "Bronx", "State": "New York", "Zip": 10467, "Country": "United States", "Land_Value": 8200, "Improved_V": 62200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.147261652899999, "SHAPE_Area": 254.54587009599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357850.883699998259544, 256892.131799999624491 ], [ 357831.566399998962879, 256887.962900001555681 ], [ 357830.713299997150898, 256893.444400001317263 ], [ 357829.856700003147125, 256899.348000001162291 ], [ 357849.960500001907349, 256905.845400001853704 ], [ 357850.883699998259544, 256892.131799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302231900", "MAP": null, "PARCEL_NAM": "ULKE GADE 7", "ACRE": null, "LONGITUDE": -64.93909718, "LATITUDE": 18.3415966, "OBJECTID_1": 10290, "PARCEL_NO_": "105302231900", "Tax_Legal_": "ULKE GADE 7 CROWN PRINCE QTR", "Name": "CREQUE TH AL PETERSEN E", "Address": "PO Box 304801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21100, "Improved_V": 11300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.261780085699996, "SHAPE_Area": 262.71550660899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357949.243100002408028, 256894.203400000929832 ], [ 357950.069200001657009, 256891.888099998235703 ], [ 357945.243900001049042, 256890.370999999344349 ], [ 357938.770000003278255, 256893.062199998646975 ], [ 357937.906199999153614, 256899.810199998319149 ], [ 357924.229400001466274, 256896.109600000083447 ], [ 357920.943000003695488, 256903.259899999946356 ], [ 357924.956600002944469, 256905.4037000015378 ], [ 357932.20440000295639, 256906.518500000238419 ], [ 357949.169399999082088, 256902.857599999755621 ], [ 357949.243100002408028, 256894.203400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301111300", "MAP": "G9-2928-T79", "PARCEL_NAM": "200-3M", "ACRE": "6,678 sq ft", "LONGITUDE": -64.9459574, "LATITUDE": 18.3415575, "OBJECTID_1": 9405, "PARCEL_NO_": "105301111300", "Tax_Legal_": "ALTONA & WELGNUST 200-3M KRONP. QTR", "Name": "GUMBS, WILBERT & ANN", "Address": "200-3M Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45100, "Improved_V": 203400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.806414789, "SHAPE_Area": 683.12682013100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357233.275399997830391, 256883.910599999129772 ], [ 357190.583999998867512, 256878.494899999350309 ], [ 357192.857199996709824, 256895.612100001424551 ], [ 357231.52250000089407, 256900.3614999987185 ], [ 357232.380900003015995, 256894.246899999678135 ], [ 357233.275399997830391, 256883.910599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302431000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.934197, "LATITUDE": 18.34159502, "OBJECTID_1": 10735, "PARCEL_NO_": "105302431000", "Tax_Legal_": "GUTTETS GADE 1 KRONPRINDSENS QUARTER", "Name": "AK 1 MAIN STREET LLC", "Address": "1600NW 165th St", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 59400, "Improved_V": 324600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.761615133100001, "SHAPE_Area": 118.80480281200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358460.439800001680851, 256899.020599998533726 ], [ 358447.542400002479553, 256898.492899999022484 ], [ 358450.684900000691414, 256908.228900000452995 ], [ 358461.15259999781847, 256910.003299999982119 ], [ 358460.439800001680851, 256899.020599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302143300", "MAP": null, "PARCEL_NAM": "16", "ACRE": null, "LONGITUDE": -64.94079226, "LATITUDE": 18.34151093, "OBJECTID_1": 9937, "PARCEL_NO_": "105302143300", "Tax_Legal_": "ANNAS FANCY 16 CROWN PRINCE QUARTER", "Name": "CHRISTOPHER, LUCIA, K, L & DUGGINS E", "Address": "PO Box 10210", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24300, "Improved_V": 130100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.491100254700001, "SHAPE_Area": 311.73503485600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357767.918099999427795, 256881.531399998813868 ], [ 357751.827799998223782, 256877.177799999713898 ], [ 357748.456900000572205, 256894.248799998313189 ], [ 357762.905799999833107, 256901.966400001198053 ], [ 357763.740900002419949, 256898.595800001174212 ], [ 357767.918099999427795, 256881.531399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302145300", "MAP": "F9-3677-T79", "PARCEL_NAM": "12B", "ACRE": ".03", "LONGITUDE": -64.94067951, "LATITUDE": 18.34154943, "OBJECTID_1": 9957, "PARCEL_NO_": "105302145300", "Tax_Legal_": "12B ANNAS FANCY KRONPRINDSENS QTR", "Name": "GEORGE, LUBIN R. & YVONNE T. AND BERNICE J. GEORGE O'NEAL", "Address": "PO Box 10754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9200, "Improved_V": 50900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.149526968000004, "SHAPE_Area": 123.582289801 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357774.006300002336502, 256900.114799998700619 ], [ 357775.251400001347065, 256887.051300000399351 ], [ 357766.874399997293949, 256885.794799998402596 ], [ 357763.740900002419949, 256898.595800001174212 ], [ 357774.006300002336502, 256900.114799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302232200", "MAP": null, "PARCEL_NAM": "TULIPAN 1C", "ACRE": null, "LONGITUDE": -64.93893339, "LATITUDE": 18.34157477, "OBJECTID_1": 10292, "PARCEL_NO_": "105302232200", "Tax_Legal_": "TULIPAN 1C CROWN PRINCE QTR", "Name": "PERRY IRREVOCABLE TRUST", "Address": "88 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.612686943699998, "SHAPE_Area": 90.549981049600007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357960.481100000441074, 256900.206000000238419 ], [ 357958.93860000371933, 256891.960700001567602 ], [ 357949.243100002408028, 256894.203400000929832 ], [ 357949.169399999082088, 256902.857599999755621 ], [ 357960.481100000441074, 256900.206000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302420400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93644238, "LATITUDE": 18.3414793, "OBJECTID_1": 10717, "PARCEL_NO_": "105302420400", "Tax_Legal_": "PRNCS GADE 33THRU36 &9,13 14,15,16,17&18 KROM", "Name": "ROMAN CATHOLIC CHURCH", "Address": "P O BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 489100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.8993552102, "SHAPE_Area": 405.41187425300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358209.059000000357628, 256902.430399999022484 ], [ 358223.528800003230572, 256903.278999999165535 ], [ 358226.794399999082088, 256875.365699999034405 ], [ 358213.893399998545647, 256875.260099999606609 ], [ 358208.155699998140335, 256886.190000001341105 ], [ 358211.361199997365475, 256888.53830000013113 ], [ 358209.059000000357628, 256902.430399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401430400", "MAP": null, "PARCEL_NAM": "30", "ACRE": ".15", "LONGITUDE": -64.93261315, "LATITUDE": 18.34106787, "OBJECTID_1": 12103, "PARCEL_NO_": "105401430400", "Tax_Legal_": "DRONNINGENS GADE 29&30 QUEENS QUARTER", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 4540500, "Improved_V": 2543600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.27473803200002, "SHAPE_Area": 2265.1995874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358636.623199999332428, 256789.313099998980761 ], [ 358628.44370000064373, 256787.063400000333786 ], [ 358598.888700000941753, 256901.912799999117851 ], [ 358603.434299997985363, 256903.131400000303984 ], [ 358607.155799999833107, 256904.129099998623133 ], [ 358617.138899996876717, 256906.805599998682737 ], [ 358647.081399999558926, 256792.194699998944998 ], [ 358637.489399999380112, 256789.55180000141263 ], [ 358636.623199999332428, 256789.313099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302420300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93660373, "LATITUDE": 18.34150635, "OBJECTID_1": 10716, "PARCEL_NO_": "105302420300", "Tax_Legal_": "32 PRINDSESSE GADE KRONPRINDSENS QTR.", "Name": "MISSIONARY SOCIETY OF THE MOST HOLY REDEEMER", "Address": "P O BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 87100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.320004478499996, "SHAPE_Area": 364.93729158299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358209.059000000357628, 256902.430399999022484 ], [ 358211.361199997365475, 256888.53830000013113 ], [ 358208.155699998140335, 256886.190000001341105 ], [ 358194.536499999463558, 256875.734900001436472 ], [ 358192.801600001752377, 256890.075100000947714 ], [ 358191.889200001955032, 256902.522199999541044 ], [ 358209.059000000357628, 256902.430399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302143100", "MAP": null, "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.94039795, "LATITUDE": 18.34150685, "OBJECTID_1": 9934, "PARCEL_NO_": "105302143100", "Tax_Legal_": "ANNAS FANCY 9 CROWN PRINCE QTR", "Name": "SMALL, CARMELA & CARLYLE", "Address": "BOX 2041", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12400, "Improved_V": 53400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.9185540629, "SHAPE_Area": 247.14072576500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357807.443599998950958, 256879.955099999904633 ], [ 357794.560599997639656, 256877.738699998706579 ], [ 357792.7753000035882, 256897.989000000059605 ], [ 357804.049300000071526, 256899.770100001245737 ], [ 357807.443599998950958, 256879.955099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301150300", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-2", "ACRE": "0.23", "LONGITUDE": -64.94678066, "LATITUDE": 18.34149022, "OBJECTID_1": 9502, "PARCEL_NO_": "105301150300", "Tax_Legal_": "ALTONA & WELGUNST 212A-2 KRONP. QTR.", "Name": "DOVER, KELVIN", "Address": "PO Box 307743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.096703924, "SHAPE_Area": 861.328947535 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357143.850199997425079, 256874.312800001353025 ], [ 357143.532600000500679, 256870.456599999219179 ], [ 357108.419200003147125, 256868.534299999475479 ], [ 357104.998000003397465, 256891.515500001609325 ], [ 357142.874899998307228, 256894.147599998861551 ], [ 357143.850199997425079, 256874.312800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302420200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9367533, "LATITUDE": 18.34154046, "OBJECTID_1": 10715, "PARCEL_NO_": "105302420200", "Tax_Legal_": "PRINDCESSE GADE 31A CROWN PRINCE QTR", "Name": "ROMAN CATHOLIC CHURCH", "Address": "P O B0X 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33000, "Improved_V": 3173400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.752557034200002, "SHAPE_Area": 185.64811053 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358176.661499999463558, 256900.718899998813868 ], [ 358191.889200001955032, 256902.522199999541044 ], [ 358192.801600001752377, 256890.075100000947714 ], [ 358178.300599999725819, 256888.478799998760223 ], [ 358176.661499999463558, 256900.718899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302232300", "MAP": null, "PARCEL_NAM": "TULIPAN STREET 1B", "ACRE": null, "LONGITUDE": -64.93884217, "LATITUDE": 18.34155124, "OBJECTID_1": 10293, "PARCEL_NO_": "105302232300", "Tax_Legal_": "TULIPAN STREET 1B CROWN PRINCE QTR", "Name": "CHRISTIAN, DEAN", "Address": "PO BOX 308003", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.119018351000001, "SHAPE_Area": 75.742015455499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357968.634099997580051, 256889.718100000172853 ], [ 357958.93860000371933, 256891.960700001567602 ], [ 357960.481100000441074, 256900.206000000238419 ], [ 357968.562200002372265, 256898.161200001835823 ], [ 357968.634099997580051, 256889.718100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302232000", "MAP": null, "PARCEL_NAM": "ULKE GADE 6", "ACRE": null, "LONGITUDE": -64.93914331000001, "LATITUDE": 18.34153217, "OBJECTID_1": 10291, "PARCEL_NO_": "105302232000", "Tax_Legal_": "ULKE GADE 6 CROWN PRINCE QTR", "Name": "PEETS, WILLIAM S", "Address": "Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6100, "Improved_V": 27000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.668994263499997, "SHAPE_Area": 147.99606118599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357938.81139999628067, 256888.207400001585484 ], [ 357928.356299996376038, 256884.955400001257658 ], [ 357924.229400001466274, 256896.109600000083447 ], [ 357937.906199999153614, 256899.810199998319149 ], [ 357938.770000003278255, 256893.062199998646975 ], [ 357938.81139999628067, 256888.207400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302430300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93460036, "LATITUDE": 18.34151852, "OBJECTID_1": 10728, "PARCEL_NO_": "105302430300", "Tax_Legal_": "KRONPRINDSENS GADE 4A KROMP QTR", "Name": "THE METHODIST TRAINING & OUTREACH CENTER, INC.", "Address": "Po Box 306816", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63600, "Improved_V": 136500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.328103305799999, "SHAPE_Area": 221.60938786400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358422.607799999415874, 256891.111600000411272 ], [ 358405.712999999523163, 256886.540399998426437 ], [ 358402.383500002324581, 256898.756499998271465 ], [ 358419.278300002217293, 256903.327799998223782 ], [ 358422.607799999415874, 256891.111600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97562155, "LATITUDE": 18.34112221, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.29441158899999, "SHAPE_Area": 965.75488263399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354078.941399998962879, 256862.737900000065565 ], [ 354095.028099998831749, 256867.513599999248981 ], [ 354087.832400001585484, 256860.27760000154376 ], [ 354083.853000000119209, 256854.1233000010252 ], [ 354079.1283999979496, 256840.785700000822544 ], [ 354076.844400003552437, 256824.934999998658895 ], [ 354076.993600003421307, 256807.415500000119209 ], [ 354078.676399998366833, 256799.196600001305342 ], [ 354082.8175999969244, 256786.353799998760223 ], [ 354087.723800003528595, 256778.372400000691414 ], [ 354091.818300001323223, 256771.017599999904633 ], [ 354085.427199997007847, 256763.999200001358986 ], [ 354078.890399999916553, 256774.078200001269579 ], [ 354073.968000002205372, 256783.959300000220537 ], [ 354069.826700001955032, 256796.802099999040365 ], [ 354067.283699996769428, 256811.346799999475479 ], [ 354067.940800003707409, 256828.872900001704693 ], [ 354070.217600002884865, 256845.567899998277426 ], [ 354071.812299996614456, 256847.691899999976158 ], [ 354075.753899998962879, 256858.278900001198053 ], [ 354078.941399998962879, 256862.737900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302225200", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 29", "ACRE": null, "LONGITUDE": -64.93703972, "LATITUDE": 18.34148015, "OBJECTID_1": 10265, "PARCEL_NO_": "105302225200", "Tax_Legal_": "PRINDCESSE GADE 29 CROWN PRINCE QUARTER", "Name": "MISS SCT HOLY REDEAMER", "Address": "P O BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84900, "Improved_V": 219300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.249102019600002, "SHAPE_Area": 367.91949244900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358144.51410000026226, 256897.702100001275539 ], [ 358163.694700002670288, 256899.183299999684095 ], [ 358163.761799998581409, 256891.315099999308586 ], [ 358164.68129999935627, 256880.298500001430511 ], [ 358146.951499998569489, 256876.823100000619888 ], [ 358144.51410000026226, 256897.702100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302241600", "MAP": null, "PARCEL_NAM": "HAABETS GADE 1", "ACRE": null, "LONGITUDE": -64.93980779, "LATITUDE": 18.34151485, "OBJECTID_1": 10327, "PARCEL_NO_": "105302241600", "Tax_Legal_": "HAABETS GADE 1 CROWN PRINCE QTR", "Name": "SMITH, UNA (LIFE ESTATE)", "Address": "PO Box 8388", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7500, "Improved_V": 78500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.141423479399997, "SHAPE_Area": 131.824994094 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357856.491999998688698, 256896.399599999189377 ], [ 357871.808300003409386, 256896.94709999859333 ], [ 357871.829899996519089, 256894.414200000464916 ], [ 357864.573100000619888, 256894.354800000786781 ], [ 357865.487300001084805, 256881.696699999272823 ], [ 357858.232299998402596, 256881.426199998706579 ], [ 357856.491999998688698, 256896.399599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302241700", "MAP": null, "PARCEL_NAM": "GREENE STREET 1", "ACRE": null, "LONGITUDE": -64.9397072, "LATITUDE": 18.34150143, "OBJECTID_1": 10328, "PARCEL_NO_": "105302241700", "Tax_Legal_": "GREENE STREET 1 CROWN PRINCE QTR", "Name": "FRANCIS, SHEREEN", "Address": "13184 SW 195th St", "City": "Miami", "State": "Florida", "Zip": 33177, "Country": "United States", "Land_Value": 9800, "Improved_V": 106800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.475994813, "SHAPE_Area": 200.58855355 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357865.487300001084805, 256881.696699999272823 ], [ 357864.573100000619888, 256894.354800000786781 ], [ 357871.829899996519089, 256894.414200000464916 ], [ 357871.808300003409386, 256896.94709999859333 ], [ 357879.891199998557568, 256894.691300000995398 ], [ 357880.80179999768734, 256882.455299999564886 ], [ 357865.487300001084805, 256881.696699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302225100", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 28A", "ACRE": null, "LONGITUDE": -64.93723159, "LATITUDE": 18.34144562, "OBJECTID_1": 10264, "PARCEL_NO_": "105302225100", "Tax_Legal_": "PRINDCESSE GADE 28A CROWN PRINCE QUARTER", "Name": "HARRY R. WYNNS LIVING TRUST", "Address": "PO Box 1570", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.872295069900005, "SHAPE_Area": 561.23833164899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358119.909699998795986, 256895.802099999040365 ], [ 358144.51410000026226, 256897.702100001275539 ], [ 358146.951499998569489, 256876.823100000619888 ], [ 358130.906099997460842, 256867.192600000649691 ], [ 358130.074699997901917, 256870.141100000590086 ], [ 358128.467399999499321, 256869.494699999690056 ], [ 358119.909699998795986, 256895.802099999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302241500", "MAP": null, "PARCEL_NAM": "ULKE GADE 11", "ACRE": null, "LONGITUDE": -64.93931742, "LATITUDE": 18.34153133, "OBJECTID_1": 10326, "PARCEL_NO_": "105302241500", "Tax_Legal_": "ULKE GADE 11 CROWN PRINCE QTR", "Name": "LANCLOS, HAROLD", "Address": "ANNAS FANCY 30", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7300, "Improved_V": 12800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.795105508399999, "SHAPE_Area": 145.01667749200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357917.856200002133846, 256886.980399999767542 ], [ 357905.741800002753735, 256889.203299999237061 ], [ 357904.868900001049042, 256897.006599999964237 ], [ 357921.002400003373623, 256896.294300001114607 ], [ 357923.480599999427795, 256889.348499998450279 ], [ 357917.856200002133846, 256886.980399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302241800", "MAP": null, "PARCEL_NAM": "GREENE STREET 2", "ACRE": null, "LONGITUDE": -64.93959046000001, "LATITUDE": 18.34149544, "OBJECTID_1": 10329, "PARCEL_NO_": "105302241800", "Tax_Legal_": "GREENE STREET 2 CROWN PRINCE QTR", "Name": "DOUGLAS,, JR. & SR., HUGO", "Address": "PO Box 11300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6600, "Improved_V": 32300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.030754509300003, "SHAPE_Area": 105.78389111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357879.891199998557568, 256894.691300000995398 ], [ 357884.739900000393391, 256893.464400000870228 ], [ 357890.400200001895428, 256891.61089999973774 ], [ 357890.46679999679327, 256883.800999999046326 ], [ 357888.863099999725819, 256882.732400000095367 ], [ 357880.80179999768734, 256882.455299999564886 ], [ 357879.891199998557568, 256894.691300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302431100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93420198, "LATITUDE": 18.34147684, "OBJECTID_1": 10736, "PARCEL_NO_": "105302431100", "Tax_Legal_": "KRONPRINDSENS GADE 1 KRONPRINDSENS QUARTER", "Name": "AK 1 MAIN STREET LLC", "Address": "1600NW 165th St", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 94900, "Improved_V": 231300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.401620357399999, "SHAPE_Area": 186.05177618499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358459.413500003516674, 256882.132699999958277 ], [ 358451.410400003194809, 256880.533100001513958 ], [ 358447.542400002479553, 256898.492899999022484 ], [ 358460.439800001680851, 256899.020599998533726 ], [ 358459.768299996852875, 256883.183100000023842 ], [ 358459.413500003516674, 256882.132699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302144100", "MAP": null, "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.94012157, "LATITUDE": 18.34139514, "OBJECTID_1": 9945, "PARCEL_NO_": "105302144100", "Tax_Legal_": "6 ANNAS FANCY CROWN PRINCE QUARTER", "Name": "PETERSEN, MILTON A. SR.", "Address": "2036 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21700, "Improved_V": 118900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.640238284700004, "SHAPE_Area": 298.96972274699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357833.25280000269413, 256879.321899998933077 ], [ 357836.627300001680851, 256861.82880000025034 ], [ 357826.964100003242493, 256860.271999999880791 ], [ 357824.415700003504753, 256875.44990000128746 ], [ 357821.860100001096725, 256891.472100000828505 ], [ 357830.713299997150898, 256893.444400001317263 ], [ 357831.566399998962879, 256887.962900001555681 ], [ 357833.25280000269413, 256879.321899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302232600", "MAP": null, "PARCEL_NAM": "TULIPAN STREET 1A", "ACRE": null, "LONGITUDE": -64.93888837, "LATITUDE": 18.34148607, "OBJECTID_1": 10296, "PARCEL_NO_": "105302232600", "Tax_Legal_": "TULIPAN STREET 1A CROWN PRINCE QTR", "Name": "GEORGE, L & C & PENN, M & P", "Address": "PO Box 10275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.683643191199998, "SHAPE_Area": 156.75966194 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357954.161899998784065, 256884.744500000029802 ], [ 357950.119499996304512, 256885.977899998426437 ], [ 357950.069200001657009, 256891.888099998235703 ], [ 357949.243100002408028, 256894.203400000929832 ], [ 357958.93860000371933, 256891.960700001567602 ], [ 357968.634099997580051, 256889.718100000172853 ], [ 357967.903300002217293, 256880.846200000494719 ], [ 357954.161899998784065, 256884.744500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302144200", "MAP": null, "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.93999658, "LATITUDE": 18.34147353, "OBJECTID_1": 9946, "PARCEL_NO_": "105302144200", "Tax_Legal_": "ANNAS FANCY 2 CROWN PRINCE QUARTER", "Name": "LANCLOS, M", "Address": "3202 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15300, "Improved_V": 84500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.00409724, "SHAPE_Area": 187.568034039 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357851.781800001859665, 256881.373399998992682 ], [ 357833.25280000269413, 256879.321899998933077 ], [ 357831.566399998962879, 256887.962900001555681 ], [ 357850.883699998259544, 256892.131799999624491 ], [ 357851.781800001859665, 256881.373399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302144000", "MAP": null, "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.94023006, "LATITUDE": 18.34144989, "OBJECTID_1": 9944, "PARCEL_NO_": "105302144000", "Tax_Legal_": "ANNAS FANCY 7A CROWN PRINCE QTR", "Name": "SUNRISE MANAGEMENT, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10200, "Improved_V": 108500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.929633002300001, "SHAPE_Area": 183.31330644100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357821.860100001096725, 256891.472100000828505 ], [ 357824.415700003504753, 256875.44990000128746 ], [ 357813.141699999570847, 256873.6689000017941 ], [ 357810.589699998497963, 256889.268899999558926 ], [ 357821.860100001096725, 256891.472100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302232500", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 3", "ACRE": null, "LONGITUDE": -64.93868613, "LATITUDE": 18.34148516, "OBJECTID_1": 10295, "PARCEL_NO_": "105302232500", "Tax_Legal_": "NYE NORDSIDEVEJ 3 CROWN PRINCE QTR", "Name": "HORACE TURNBULL TRUST", "Address": "10 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 167800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.674619547500001, "SHAPE_Area": 160.675716811 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357978.367399998009205, 256883.042700000107288 ], [ 357971.920500002801418, 256882.567800000309944 ], [ 357971.841399997472763, 256891.855200000107288 ], [ 357989.57490000128746, 256892.633699998259544 ], [ 357989.650399997830391, 256883.768399998545647 ], [ 357978.367399998009205, 256883.042700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91294022, "LATITUDE": 18.34120379, "OBJECTID_1": 19712, "PARCEL_NO_": "105501020300", "Tax_Legal_": "50 ESTATE THOMAS 6A NEW QTR", "Name": "VI MEDICAL FOUNDATION, LLC", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 735100, "Improved_V": 1707600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.705510812, "SHAPE_Area": 3735.0333429000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360734.327299997210503, 256907.498799998313189 ], [ 360726.816200003027916, 256842.631599999964237 ], [ 360671.115900002419949, 256849.775100000202656 ], [ 360675.570699997246265, 256894.774500001221895 ], [ 360673.160800002515316, 256893.699299998581409 ], [ 360675.401699997484684, 256914.615899998694658 ], [ 360734.327299997210503, 256907.498799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302232800", "MAP": null, "PARCEL_NAM": "ULKE GADE 4", "ACRE": null, "LONGITUDE": -64.93900109, "LATITUDE": 18.34142011, "OBJECTID_1": 10298, "PARCEL_NO_": "105302232800", "Tax_Legal_": "ULKE GADE 4 CROWN PRINCE QTR", "Name": "BARZZY, ERNEST", "Address": "4 Ulke Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8600, "Improved_V": 28400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.268377767200001, "SHAPE_Area": 175.31347308100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357954.161899998784065, 256884.744500000029802 ], [ 357950.25620000064373, 256869.935899998992682 ], [ 357940.548100002110004, 256873.656199999153614 ], [ 357945.243900001049042, 256890.370999999344349 ], [ 357950.069200001657009, 256891.888099998235703 ], [ 357950.119499996304512, 256885.977899998426437 ], [ 357954.161899998784065, 256884.744500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302143400", "MAP": null, "PARCEL_NAM": "19", "ACRE": null, "LONGITUDE": -64.94099241000001, "LATITUDE": 18.34141869, "OBJECTID_1": 9938, "PARCEL_NO_": "105302143400", "Tax_Legal_": "ANNAS FANCY 19 CROWN PRINCE", "Name": "BROWN, A. & THOMAS, L", "Address": "1738 Lesa Lin Dr", "City": "Monroe", "State": "North Carolina", "Zip": 28112, "Country": "United States", "Land_Value": 16400, "Improved_V": 70600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.938265978700002, "SHAPE_Area": 268.416644405 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357746.23929999768734, 256870.588199999183416 ], [ 357731.743699997663498, 256868.358600001782179 ], [ 357727.566500000655651, 256885.423000000417233 ], [ 357742.051299996674061, 256888.919100001454353 ], [ 357746.23929999768734, 256870.588199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302232700", "MAP": null, "PARCEL_NAM": "ULKE GADE 3", "ACRE": null, "LONGITUDE": -64.93909802, "LATITUDE": 18.34143779, "OBJECTID_1": 10297, "PARCEL_NO_": "105302232700", "Tax_Legal_": "ULKE GADE 3 CROWN PRINCE QTR", "Name": "MCCANTS, ANGELA", "Address": "1215 Jasmine Way", "City": "Hampton", "State": "Georgia", "Zip": 30228, "Country": "United States", "Land_Value": 9100, "Improved_V": 15200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.236174038199998, "SHAPE_Area": 157.69681849599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357940.548100002110004, 256873.656199999153614 ], [ 357931.649899996817112, 256876.960799999535084 ], [ 357928.356299996376038, 256884.955400001257658 ], [ 357938.81139999628067, 256888.207400001585484 ], [ 357945.243900001049042, 256890.370999999344349 ], [ 357940.548100002110004, 256873.656199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302422100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93688438, "LATITUDE": 18.34134778, "OBJECTID_1": 10725, "PARCEL_NO_": "105302422100", "Tax_Legal_": "PRINDCESSE GADE 30A & 30B KRONPRINDSENS QTR.", "Name": "MISSIONARY SOCIETY/HOLY REDEEM", "Address": "P O BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46200, "Improved_V": 227400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.536356524200002, "SHAPE_Area": 177.45934938299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358179.243000000715256, 256869.813299998641014 ], [ 358169.600100003182888, 256868.564800001680851 ], [ 358169.632500000298023, 256864.765399999916553 ], [ 358164.799999997019768, 256864.092500001192093 ], [ 358165.557800002396107, 256869.798200000077486 ], [ 358164.68129999935627, 256880.298500001430511 ], [ 358177.266500003635883, 256881.811799999326468 ], [ 358178.426399998366833, 256873.703299999237061 ], [ 358179.243000000715256, 256869.813299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301111200", "MAP": "G9-2928-T79", "PARCEL_NAM": "200-3L", "ACRE": "6,925 sq ft", "LONGITUDE": -64.94596675, "LATITUDE": 18.34140291, "OBJECTID_1": 9404, "PARCEL_NO_": "105301111200", "Tax_Legal_": "ALTONA WELGUNST 200-3L KRONP. QTR", "Name": "MAVIS G GREENE TRUST", "Address": "PO BOX 302014", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51900, "Improved_V": 174600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.20525681700001, "SHAPE_Area": 782.18563591999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357235.820200003683567, 256869.154899999499321 ], [ 357206.044200003147125, 256862.156199999153614 ], [ 357187.509800001978874, 256860.737900000065565 ], [ 357190.583999998867512, 256878.494899999350309 ], [ 357233.275399997830391, 256883.910599999129772 ], [ 357234.119400002062321, 256879.484499998390675 ], [ 357235.820200003683567, 256869.154899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471700", "MAP": null, "PARCEL_NAM": "25B", "ACRE": ".05", "LONGITUDE": -64.93303561, "LATITUDE": 18.34107715, "OBJECTID_1": 10831, "PARCEL_NO_": "105302471700", "Tax_Legal_": "DRONNINGENS GADE 25B QUEENS QUARTER", "Name": "SMITH, E. B. & MAJOR, B. & UNITED PRO", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1170000, "Improved_V": 720100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.60572582099999, "SHAPE_Area": 669.19461398800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358593.815200001001358, 256803.122900001704693 ], [ 358586.483199998736382, 256802.160199999809265 ], [ 358562.801600001752377, 256892.237900000065565 ], [ 358569.497900001704693, 256894.03319999948144 ], [ 358575.710500001907349, 256870.835999999195337 ], [ 358593.844099998474121, 256803.1266999989748 ], [ 358593.815200001001358, 256803.122900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220600", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 2O 21", "ACRE": null, "LONGITUDE": -64.937975, "LATITUDE": 18.34133986, "OBJECTID_1": 10224, "PARCEL_NO_": "105302220600", "Tax_Legal_": "PRINDCESSE GADE 2O 21 CROWN PRINCE QTR", "Name": "DANIEL, OSSIE LOCKHART", "Address": "831", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21400, "Improved_V": 7900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.631312832500001, "SHAPE_Area": 365.34063383199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358060.299800001084805, 256889.124200001358986 ], [ 358061.737199999392033, 256865.988499999046326 ], [ 358062.44030000269413, 256854.670699998736382 ], [ 358052.79450000077486, 256854.732099998742342 ], [ 358048.478900000452995, 256888.049499999731779 ], [ 358060.299800001084805, 256889.124200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302242300", "MAP": null, "PARCEL_NAM": "GREENE GADE 6", "ACRE": null, "LONGITUDE": -64.93949105, "LATITUDE": 18.34142469, "OBJECTID_1": 10334, "PARCEL_NO_": "105302242300", "Tax_Legal_": "GREENE GADE 6 CROWN PRINCE QTR", "Name": "CHRISTIAN, SARAH", "Address": "PO Box 302562", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032562, "Country": "United States", "Land_Value": 7300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.575154460900002, "SHAPE_Area": 74.891654644900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357900.110200002789497, 256887.67960000038147 ], [ 357899.406300000846386, 256875.641499999910593 ], [ 357888.911700002849102, 256877.03319999948144 ], [ 357889.694600000977516, 256879.783900000154972 ], [ 357900.110200002789497, 256887.67960000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302242500", "MAP": null, "PARCEL_NAM": "ULKE GADE 2", "ACRE": null, "LONGITUDE": -64.93932788, "LATITUDE": 18.34142082, "OBJECTID_1": 10336, "PARCEL_NO_": "105302242500", "Tax_Legal_": "ULKE GADE 2 CROWN PRINCE QTR", "Name": "HATCHETT, J", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14300, "Improved_V": 26600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.627305073499997, "SHAPE_Area": 354.45635741900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357915.57039999961853, 256871.340799998492002 ], [ 357909.901000000536442, 256874.249699998646975 ], [ 357901.02080000191927, 256875.443599998950958 ], [ 357899.406300000846386, 256875.641499999910593 ], [ 357900.110200002789497, 256887.67960000038147 ], [ 357917.856200002133846, 256886.980399999767542 ], [ 357925.114799998700619, 256886.82880000025034 ], [ 357925.948100000619888, 256883.669199999421835 ], [ 357923.590300001204014, 256876.472699999809265 ], [ 357921.239699997007847, 256868.43189999833703 ], [ 357915.57039999961853, 256871.340799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302422000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93673956000001, "LATITUDE": 18.34141913, "OBJECTID_1": 10724, "PARCEL_NO_": "105302422000", "Tax_Legal_": "PRINSEN GADE 31B,32,21A 20,21&19 KRON PRNCS", "Name": "ROMAN CATHOLIC CHURCH", "Address": "BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 202700, "Improved_V": 350400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.980879869600003, "SHAPE_Area": 210.068098152 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358194.536499999463558, 256875.734900001436472 ], [ 358180.378200002014637, 256873.949499998241663 ], [ 358178.300599999725819, 256888.478799998760223 ], [ 358192.801600001752377, 256890.075100000947714 ], [ 358194.536499999463558, 256875.734900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471500", "MAP": null, "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.93322645000001, "LATITUDE": 18.34100051, "OBJECTID_1": 10829, "PARCEL_NO_": "105302471500", "Tax_Legal_": "DRONNINGENS GADE 24 QUEENS QUARTER", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 4010900, "Improved_V": 3030200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.79593802700001, "SHAPE_Area": 2382.2566486199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358581.872500002384186, 256793.220600001513958 ], [ 358559.909599997103214, 256785.721799999475479 ], [ 358534.126800000667572, 256884.550200000405312 ], [ 358557.164599999785423, 256890.726599998772144 ], [ 358580.146300002932549, 256800.096200000494719 ], [ 358581.540500000119209, 256794.598000001162291 ], [ 358581.887599997222424, 256793.229100000113249 ], [ 358581.872500002384186, 256793.220600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220500", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 19", "ACRE": null, "LONGITUDE": -64.93807308, "LATITUDE": 18.34132843, "OBJECTID_1": 10223, "PARCEL_NO_": "105302220500", "Tax_Legal_": "PRINDCESSE GADE 19 CROWN PRINCE QUARTER", "Name": "BOWSKY, CLIFFORD", "Address": "PO Box 8164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51900, "Improved_V": 62400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.528496525199998, "SHAPE_Area": 309.87429502700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358038.963500000536442, 256885.803300000727177 ], [ 358048.690700002014637, 256886.414000000804663 ], [ 358052.79450000077486, 256854.732099998742342 ], [ 358041.47919999808073, 256857.805900000035763 ], [ 358038.963500000536442, 256885.803300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302430400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93456491000001, "LATITUDE": 18.34139609, "OBJECTID_1": 10729, "PARCEL_NO_": "105302430400", "Tax_Legal_": "KRONPRINDSENS GADE 4 CROWN PRINCE QTR", "Name": "GEORGE, C & A. & BARNWELL, S", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47300, "Improved_V": 668900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.812826319199999, "SHAPE_Area": 269.35701449300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358426.849299997091293, 256875.623700000345707 ], [ 358409.832500003278255, 256872.222300000488758 ], [ 358405.712999999523163, 256886.540399998426437 ], [ 358422.607799999415874, 256891.111600000411272 ], [ 358426.849299997091293, 256875.623700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220400", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 18", "ACRE": null, "LONGITUDE": -64.93817163, "LATITUDE": 18.34134119, "OBJECTID_1": 10222, "PARCEL_NO_": "105302220400", "Tax_Legal_": "PRINDSESSE GADE 18 CROWN PRINCE QUARTER", "Name": "CHRISTIAN FAUST, CAROL L.", "Address": "PO Box 1162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17400, "Improved_V": 46600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.598344146200006, "SHAPE_Area": 266.58269423000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358029.258299998939037, 256885.193999998271465 ], [ 358038.963500000536442, 256885.803300000727177 ], [ 358041.47919999808073, 256857.805900000035763 ], [ 358030.160199999809265, 256861.30180000141263 ], [ 358030.070299997925758, 256871.855700001120567 ], [ 358029.258299998939037, 256885.193999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220300", "MAP": null, "PARCEL_NAM": "PRINDSESSE GADE 17A", "ACRE": "1,858 sq ft", "LONGITUDE": -64.93827933, "LATITUDE": 18.34137766, "OBJECTID_1": 10221, "PARCEL_NO_": "105302220300", "Tax_Legal_": "PRINDCESSE GADE 17A CROWN PRINCE QUARTER", "Name": "LINDO, ISAAC", "Address": "1917 Double Cedar Dr", "City": "Charlotte", "State": "North Carolina", "Zip": 28214, "Country": "United States", "Land_Value": 8900, "Improved_V": 29200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.305415498199999, "SHAPE_Area": 212.47227402499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358030.070299997925758, 256871.855700001120567 ], [ 358030.120300002396107, 256865.988099999725819 ], [ 358016.681000001728535, 256870.042199999094009 ], [ 358017.142399996519089, 256874.916299998760223 ], [ 358017.11540000140667, 256878.082499999552965 ], [ 358017.649700000882149, 256884.398899998515844 ], [ 358023.570200003683567, 256884.836899999529123 ], [ 358029.258299998939037, 256885.193999998271465 ], [ 358030.070299997925758, 256871.855700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302232900", "MAP": null, "PARCEL_NAM": "ULKE GADE 5", "ACRE": null, "LONGITUDE": -64.93889299, "LATITUDE": 18.34138024, "OBJECTID_1": 10299, "PARCEL_NO_": "105302232900", "Tax_Legal_": "ULKE GADE 5 CROWN PRINCE QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.6067741313, "SHAPE_Area": 204.33393473500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357950.25620000064373, 256869.935899998992682 ], [ 357954.161899998784065, 256884.744500000029802 ], [ 357967.903300002217293, 256880.846200000494719 ], [ 357964.778800003230572, 256868.999299999326468 ], [ 357953.492200002074242, 256868.695900000631809 ], [ 357950.25620000064373, 256869.935899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302421400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93662136, "LATITUDE": 18.34119528, "OBJECTID_1": 10719, "PARCEL_NO_": "105302421400", "Tax_Legal_": "19,20&21 KRONPRINDSENS GADE KRONPRINDSEN QTR.", "Name": "THE CONGREGATION OF THE MOST HOLY REDEEMER", "Address": "Po Box 1706", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 158800, "Improved_V": 344700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.33545167099999, "SHAPE_Area": 1015.73879418 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358180.942500002682209, 256862.324799999594688 ], [ 358196.246200002729893, 256864.349899999797344 ], [ 358195.412900000810623, 256867.509500000625849 ], [ 358194.536499999463558, 256875.734900001436472 ], [ 358208.155699998140335, 256886.190000001341105 ], [ 358213.893399998545647, 256875.260099999606609 ], [ 358214.030000001192093, 256859.218100000172853 ], [ 358206.7804000005126, 256858.314399998635054 ], [ 358206.859499998390675, 256849.026900000870228 ], [ 358209.372000001370907, 256838.070599999278784 ], [ 358188.543999999761581, 256832.013099998235703 ], [ 358185.092699997127056, 256848.426600001752377 ], [ 358180.942500002682209, 256862.324799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301150400", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-13", "ACRE": "0.23", "LONGITUDE": -64.94716578000001, "LATITUDE": 18.34130294, "OBJECTID_1": 9503, "PARCEL_NO_": "105301150400", "Tax_Legal_": "ALTONA & WELGUNST 212A-13 SOUTHSIDE QTR.", "Name": "LETTSOME, MENDALI", "Address": "PO Box 305523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.35802257399999, "SHAPE_Area": 1043.3349746599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357095.712399996817112, 256845.632199998944998 ], [ 357071.5608000010252, 256841.001600001007318 ], [ 357066.431599996984005, 256875.156800001859665 ], [ 357094.640000000596046, 256876.865299999713898 ], [ 357099.946800000965595, 256877.133499998599291 ], [ 357100.303900003433228, 256874.589600000530481 ], [ 357101.6216000020504, 256846.508499998599291 ], [ 357095.712399996817112, 256845.632199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302233100", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 2A", "ACRE": null, "LONGITUDE": -64.93864892000001, "LATITUDE": 18.3413825, "OBJECTID_1": 10301, "PARCEL_NO_": "105302233100", "Tax_Legal_": "NYE NORDSIDEVEJ 2A CROWN PRINCE QTR", "Name": "HORACE TURNBULL TRUST", "Address": "10 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9500, "Improved_V": 670200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.401632956599997, "SHAPE_Area": 155.485195132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357980.098700001835823, 256869.124699998646975 ], [ 357978.367399998009205, 256883.042700000107288 ], [ 357989.650399997830391, 256883.768399998545647 ], [ 357990.580799996852875, 256869.210499998182058 ], [ 357980.098700001835823, 256869.124699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91229014, "LATITUDE": 18.34111974, "OBJECTID_1": 19717, "PARCEL_NO_": "105501020800", "Tax_Legal_": "52E-1&52EA ESTATE THOMAS No.6A NEW QTR.", "Name": "VANTERPOOL, JOE H", "Address": "PO Box 10391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 808600, "Improved_V": 1985100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.88806982700001, "SHAPE_Area": 3723.4546509299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360746.434500001370907, 256906.120200000703335 ], [ 360760.157999999821186, 256904.332699999213219 ], [ 360802.939300000667572, 256899.194400001317263 ], [ 360796.976199999451637, 256841.939300000667572 ], [ 360794.586000002920628, 256838.542199999094009 ], [ 360790.574199996888638, 256836.187300000339746 ], [ 360785.743500001728535, 256835.303399998694658 ], [ 360738.925300002098083, 256841.041999999433756 ], [ 360746.434500001370907, 256906.120200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302143700", "MAP": null, "PARCEL_NAM": "15", "ACRE": null, "LONGITUDE": -64.94075727000001, "LATITUDE": 18.34135319, "OBJECTID_1": 9941, "PARCEL_NO_": "105302143700", "Tax_Legal_": "15 ANNAS FANCY KRONDPRINDSENS GADE", "Name": "TYSON, CLARICE V. GEORGE & DEBORAH M. FABIAN", "Address": "PO Box 10754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16000, "Improved_V": 49900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.436816851299994, "SHAPE_Area": 273.26765126200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357772.086300000548363, 256865.522399999201298 ], [ 357755.995999999344349, 256861.168800000101328 ], [ 357751.827799998223782, 256877.177799999713898 ], [ 357767.918099999427795, 256881.531399998813868 ], [ 357768.762100003659725, 256877.10530000180006 ], [ 357772.086300000548363, 256865.522399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302233000", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 2B", "ACRE": null, "LONGITUDE": -64.93874486, "LATITUDE": 18.34137292, "OBJECTID_1": 10300, "PARCEL_NO_": "105302233000", "Tax_Legal_": "NYE NORDSIDEVEJ 2B CROWN PRINCE", "Name": "HORACE TURNBULL TRUST", "Address": "10 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 359500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.681812391900003, "SHAPE_Area": 126.975025958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357971.920500002801418, 256882.567800000309944 ], [ 357978.367399998009205, 256883.042700000107288 ], [ 357980.098700001835823, 256869.124699998646975 ], [ 357968.004000000655651, 256869.025699999183416 ], [ 357971.920500002801418, 256882.567800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302144300", "MAP": null, "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.93998511, "LATITUDE": 18.34135237, "OBJECTID_1": 9947, "PARCEL_NO_": "105302144300", "Tax_Legal_": "ANNAS FANCY 1 CROWN PRINCE QUARTER", "Name": "BLYDEN, JOSEPH", "Address": "P.O.BOX 3876", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 117500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.299971344100001, "SHAPE_Area": 304.24422040500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357833.25280000269413, 256879.321899998933077 ], [ 357851.781800001859665, 256881.373399998992682 ], [ 357852.726499997079372, 256865.126899998635054 ], [ 357850.318400003015995, 256863.840700000524521 ], [ 357836.627300001680851, 256861.82880000025034 ], [ 357833.25280000269413, 256879.321899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302452800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93561037000001, "LATITUDE": 18.34127227, "OBJECTID_1": 10773, "PARCEL_NO_": "105302452800", "Tax_Legal_": "Kronprindsens Gade 11A & 11B CROWN PRINCE QTR", "Name": "CAPSTONE PROPERTIES LLC", "Address": "PO Box 308217", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74000, "Improved_V": 687100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.396877522599993, "SHAPE_Area": 387.56328083099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358312.265299998223782, 256875.854100000113249 ], [ 358309.041900001466274, 256875.616700001060963 ], [ 358313.305399999022484, 256848.420499999076128 ], [ 358302.83049999922514, 256847.49040000140667 ], [ 358301.084799997508526, 256863.096999999135733 ], [ 358299.35530000180006, 256876.803899999707937 ], [ 358298.489699997007847, 256883.762899998575449 ], [ 358310.573600001633167, 256885.128400001674891 ], [ 358312.265299998223782, 256875.854100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302143800", "MAP": "D9-8426-T010", "PARCEL_NAM": "13", "ACRE": ".06", "LONGITUDE": -64.94058454, "LATITUDE": 18.34136374, "OBJECTID_1": 9942, "PARCEL_NO_": "105302143800", "Tax_Legal_": "ANNAS FANCY 13 CROWN PRINCE QUARTER", "Name": "BRUMANT, HUBERT & PAMELA L.", "Address": "PO Box 305228", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.414218530499994, "SHAPE_Area": 248.247863169 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357789.818000003695488, 256866.511900000274181 ], [ 357772.086300000548363, 256865.522399999201298 ], [ 357768.762100003659725, 256877.10530000180006 ], [ 357788.891199998557568, 256880.647599998861551 ], [ 357789.818000003695488, 256866.511900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302143900", "MAP": null, "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.94037606000001, "LATITUDE": 18.34131578, "OBJECTID_1": 9943, "PARCEL_NO_": "105302143900", "Tax_Legal_": "ANNAS FANCY 8 CROWN PRINCE QUARTER", "Name": "FLOYD, HATTIE R", "Address": "40 W 135th St", "City": "New York", "State": "New York", "Zip": 10037, "Country": "United States", "Land_Value": 15400, "Improved_V": 24900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.753311565700002, "SHAPE_Area": 315.393783004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357794.560599997639656, 256877.738699998706579 ], [ 357807.443599998950958, 256879.955099999904633 ], [ 357810.857600003480911, 256857.818199999630451 ], [ 357798.779100000858307, 256855.819499999284744 ], [ 357795.541299998760223, 256857.270599998533726 ], [ 357794.560599997639656, 256877.738699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302242000", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 44A", "ACRE": null, "LONGITUDE": -64.93969768, "LATITUDE": 18.34135258, "OBJECTID_1": 10331, "PARCEL_NO_": "105302242000", "Tax_Legal_": "KRONPRINDSENS GADE 44A CROWN PRINCE QTR", "Name": "CHINNERY, DONALD D", "Address": "PO Box 306738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18000, "Improved_V": 34300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.153112324699997, "SHAPE_Area": 110.80424468699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357878.526699997484684, 256865.549199998378754 ], [ 357869.6537000015378, 256865.898800000548363 ], [ 357869.545800000429153, 256878.563499998301268 ], [ 357877.60530000180006, 256879.051600001752377 ], [ 357878.526699997484684, 256865.549199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302221400", "MAP": null, "PARCEL_NAM": "PRINDSESSE GADE 27Bb", "ACRE": null, "LONGITUDE": -64.93737935, "LATITUDE": 18.34130535, "OBJECTID_1": 10229, "PARCEL_NO_": "105302221400", "Tax_Legal_": "PRINDSESSE GADE 27Bb CROWN PRINCE QUARTER", "Name": "MORALES, MICHEAL", "Address": "PO BOX 1661", "City": "Oakdale", "State": "Connecticut", "Zip": 6379, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.9715504642, "SHAPE_Area": 135.837957966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358111.10639999806881, 256872.368200000375509 ], [ 358111.861699998378754, 256872.404500000178814 ], [ 358124.211800001561642, 256874.949799999594688 ], [ 358127.693499997258186, 256865.688700001686811 ], [ 358112.393299996852875, 256863.241399999707937 ], [ 358111.10639999806881, 256872.368200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302452600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93537669, "LATITUDE": 18.34126793, "OBJECTID_1": 10772, "PARCEL_NO_": "105302452600", "Tax_Legal_": "KRONPRINDSENS GADE 9B CROWN PRINCE QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 74000, "Improved_V": 96400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.044707081300004, "SHAPE_Area": 342.96720088199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358326.996500000357628, 256850.432399999350309 ], [ 358324.390600003302097, 256872.364799998700619 ], [ 358323.506899997591972, 256881.434599999338388 ], [ 358333.978200003504753, 256882.786800000816584 ], [ 358338.270499996840954, 256852.21339999884367 ], [ 358326.996500000357628, 256850.432399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471400", "MAP": null, "PARCEL_NAM": "23", "ACRE": ".51", "LONGITUDE": -64.93347731, "LATITUDE": 18.34088004, "OBJECTID_1": 10827, "PARCEL_NO_": "105302471400", "Tax_Legal_": "QUEENS STREET 23 QUEENS QUARTER", "Name": "FC HOLDINGS I, LLC", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3845800, "Improved_V": 159200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.80186457899998, "SHAPE_Area": 2559.8685283700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358542.904600001871586, 256759.373199999332428 ], [ 358539.510999999940395, 256757.915600001811981 ], [ 358538.816299997270107, 256760.43019999936223 ], [ 358524.723300002515316, 256810.918600000441074 ], [ 358505.446400001645088, 256877.375799998641014 ], [ 358526.978299997746944, 256883.100699998438358 ], [ 358527.995300002396107, 256883.383699998259544 ], [ 358531.36879999935627, 256870.352899998426437 ], [ 358537.629295290214941, 256846.903841879277024 ], [ 358544.134900003671646, 256823.521600000560284 ], [ 358548.168904650607146, 256806.155063272541156 ], [ 358552.497900001704693, 256788.859700001776218 ], [ 358554.73412651772378, 256781.526633057801519 ], [ 358557.496399998664856, 256774.375100001692772 ], [ 358540.827600002288818, 256765.908500000834465 ], [ 358542.904600001871586, 256759.373199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302241900", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 45", "ACRE": null, "LONGITUDE": -64.93978706, "LATITUDE": 18.34135396, "OBJECTID_1": 10330, "PARCEL_NO_": "105302241900", "Tax_Legal_": "KRONPRINDSENS GADE 45 CROWN PRINCE QTR", "Name": "JACKMAN, LAWRENCE", "Address": "209 Prospect St", "City": "East Orange", "State": "New Jersey", "Zip": 7017, "Country": "United States", "Land_Value": 9500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.267463828700002, "SHAPE_Area": 127.23013405499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357869.545800000429153, 256878.563499998301268 ], [ 357869.6537000015378, 256865.898800000548363 ], [ 357859.166199997067451, 256866.446199998259544 ], [ 357859.067299999296665, 256878.055500000715256 ], [ 357869.545800000429153, 256878.563499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302242200", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 43", "ACRE": null, "LONGITUDE": -64.93950475, "LATITUDE": 18.34133082, "OBJECTID_1": 10333, "PARCEL_NO_": "105302242200", "Tax_Legal_": "KRONPRINDSENS GADE 43 CROWN PRINCE QTR", "Name": "VANBEVERHOUDT, IVAN", "Address": "PO Box 10876", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9200, "Improved_V": 116800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.941192069499998, "SHAPE_Area": 155.399299571 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357901.02080000191927, 256875.443599998950958 ], [ 357899.519599996507168, 256862.343499999493361 ], [ 357887.401600003242493, 256864.988499999046326 ], [ 357888.911700002849102, 256877.03319999948144 ], [ 357899.406300000846386, 256875.641499999910593 ], [ 357901.02080000191927, 256875.443599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302453300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93517034, "LATITUDE": 18.34127359, "OBJECTID_1": 10778, "PARCEL_NO_": "105302453300", "Tax_Legal_": "CROWN PRINCE 5 6 7 8 CROWN PRINCE QTR", "Name": "THE METHODIST CHURCH ST/SJ CRI", "Address": "PO Box 1045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 127400, "Improved_V": 354800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.325008042899995, "SHAPE_Area": 241.43879783 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358346.099899999797344, 256879.7195999994874 ], [ 358354.960299998521805, 256880.847600001841784 ], [ 358359.207699999213219, 256855.551199998706579 ], [ 358349.54450000077486, 256853.99439999833703 ], [ 358346.099899999797344, 256879.7195999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301150100", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-1", "ACRE": "0.25", "LONGITUDE": -64.94677514, "LATITUDE": 18.3412143, "OBJECTID_1": 9500, "PARCEL_NO_": "105301150100", "Tax_Legal_": "ALTONA WELGUNST 212A-1 KRONP. QTR.", "Name": "SUBDHAN, KENNETH, LILA, GREGG E. & CURTIS R.", "Address": "PO Box 934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60200, "Improved_V": 87700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.177212559, "SHAPE_Area": 1286.94379966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357143.119400002062321, 256865.440900001674891 ], [ 357143.347800001502037, 256838.633799999952316 ], [ 357142.568400003015995, 256835.461100000888109 ], [ 357139.357600003480911, 256833.745999999344349 ], [ 357116.814999997615814, 256829.550799999386072 ], [ 357112.772600002586842, 256830.784200001507998 ], [ 357110.337499998509884, 256832.664099998772144 ], [ 357109.511399999260902, 256834.979400001466274 ], [ 357108.419200003147125, 256868.534299999475479 ], [ 357143.532600000500679, 256870.456599999219179 ], [ 357143.119400002062321, 256865.440900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302242700", "MAP": null, "PARCEL_NAM": "ULKE GADE 1", "ACRE": null, "LONGITUDE": -64.93916398, "LATITUDE": 18.34132271, "OBJECTID_1": 10338, "PARCEL_NO_": "105302242700", "Tax_Legal_": "ULKE GADE 1 CROWN PRINCE QTR", "Name": "JACOBS,LIFE ESTATE, VALERIE N.", "Address": "4215 Annas Retreat N0. 242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6500, "Improved_V": 19600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.304000135199999, "SHAPE_Area": 149.78275449200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357939.76690000295639, 256870.694499999284744 ], [ 357935.810900002717972, 256861.79619999974966 ], [ 357928.5253000035882, 256865.114000000059605 ], [ 357921.239699997007847, 256868.43189999833703 ], [ 357923.590300001204014, 256876.472699999809265 ], [ 357939.76690000295639, 256870.694499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302144400", "MAP": "D9-4380-T88", "PARCEL_NAM": "7A", "ACRE": null, "LONGITUDE": -64.94020907, "LATITUDE": 18.34130885, "OBJECTID_1": 9948, "PARCEL_NO_": "105302144400", "Tax_Legal_": "ANNAS FANCY 7 CROWN PRINCE QUARTER", "Name": "HART, HELEN & DUBBINS, GRASILDA", "Address": "PO Box 303989", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10200, "Improved_V": 47100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.300115878600003, "SHAPE_Area": 181.10091922500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357814.883799999952316, 256858.484400000423193 ], [ 357813.141699999570847, 256873.6689000017941 ], [ 357824.415700003504753, 256875.44990000128746 ], [ 357826.964100003242493, 256860.271999999880791 ], [ 357814.883799999952316, 256858.484400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302242400", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 42", "ACRE": null, "LONGITUDE": -64.93938747, "LATITUDE": 18.34131201, "OBJECTID_1": 10335, "PARCEL_NO_": "105302242400", "Tax_Legal_": "KRONPRINDSENS GADE 42 CROWN PRINCE QTR", "Name": "CATHOLIC CHARITIES OF THE VI INC", "Address": "PO Box 10736", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14300, "Improved_V": 217000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.020918053499997, "SHAPE_Area": 174.803054057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357915.57039999961853, 256871.340799998492002 ], [ 357910.023299999535084, 256859.89640000090003 ], [ 357899.519599996507168, 256862.343499999493361 ], [ 357901.02080000191927, 256875.443599998950958 ], [ 357909.901000000536442, 256874.249699998646975 ], [ 357915.57039999961853, 256871.340799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302225300", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 28B", "ACRE": null, "LONGITUDE": -64.93717292, "LATITUDE": 18.34126265, "OBJECTID_1": 10266, "PARCEL_NO_": "105302225300", "Tax_Legal_": "PRINDCESSE GADE 28B CROWN PRINCE QUARTER", "Name": "HARRY R. WYNNS LIVING TRUST", "Address": "PO Box 1570", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 44700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.817436051100003, "SHAPE_Area": 260.07627443000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358148.73309999704361, 256856.994899999350309 ], [ 358146.317800000309944, 256856.552999999374151 ], [ 358135.04559999704361, 256854.560899998992682 ], [ 358130.906099997460842, 256867.192600000649691 ], [ 358146.951499998569489, 256876.823100000619888 ], [ 358147.83330000191927, 256867.964400000870228 ], [ 358148.73309999704361, 256856.994899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301111100", "MAP": "G9-2928-T79", "PARCEL_NAM": "200-3K", "ACRE": "6,498 sq ft", "LONGITUDE": -64.94599929, "LATITUDE": 18.34127377, "OBJECTID_1": 9403, "PARCEL_NO_": "105301111100", "Tax_Legal_": "ALTONA & WELGUNST 200-3K KRONP. QTR", "Name": "HUGGINS, BOSWELL & WILLIAM", "Address": "10517 Pinegrove St", "City": "Jamaica", "State": "New York", "Zip": 11435, "Country": "United States", "Land_Value": 43800, "Improved_V": 16400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.063076212, "SHAPE_Area": 493.59998482600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357209.344899997115135, 256853.317299999296665 ], [ 357186.031999997794628, 256844.893800001591444 ], [ 357187.509800001978874, 256860.737900000065565 ], [ 357206.044200003147125, 256862.156199999153614 ], [ 357235.820200003683567, 256869.154899999499321 ], [ 357236.678599998354912, 256863.040199998766184 ], [ 357209.344899997115135, 256853.317299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302453000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93568718, "LATITUDE": 18.34129619, "OBJECTID_1": 10775, "PARCEL_NO_": "105302453000", "Tax_Legal_": "CROWN PRINCE ST 12A CROWN PRINCE QUARTER", "Name": "EL HAJ, CARMEN", "Address": "2260 SW 132nd Ave", "City": "Miami", "State": "Florida", "Zip": 33175, "Country": "United States", "Land_Value": 22900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.4444733431, "SHAPE_Area": 67.146988786999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358301.084799997508526, 256863.096999999135733 ], [ 358295.444200001657009, 256862.628699999302626 ], [ 358295.325499996542931, 256876.559900000691414 ], [ 358299.35530000180006, 256876.803899999707937 ], [ 358301.084799997508526, 256863.096999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302421200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93672501, "LATITUDE": 18.34131729, "OBJECTID_1": 10718, "PARCEL_NO_": "105302421200", "Tax_Legal_": "PRINCESSE GADE 21B CROWN PRINCE QTR", "Name": "ROMAN CATHOLIC CHURCH", "Address": "P O BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.159251678499999, "SHAPE_Area": 113.785452077 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358182.088799998164177, 256865.930399999022484 ], [ 358180.378200002014637, 256873.949499998241663 ], [ 358194.536499999463558, 256875.734900001436472 ], [ 358195.412900000810623, 256867.509500000625849 ], [ 358182.088799998164177, 256865.930399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302452900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93574273, "LATITUDE": 18.34129757, "OBJECTID_1": 10774, "PARCEL_NO_": "105302452900", "Tax_Legal_": "CROWN PRINCE ST 12C CROWN PRINCE QUARTER", "Name": "TITLEY, JOYCE FIDELIA", "Address": "PO Box 304654", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43900, "Improved_V": 20200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.620541517299998, "SHAPE_Area": 95.656412227800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358295.444200001657009, 256862.628699999302626 ], [ 358288.997299998998642, 256862.1537000015378 ], [ 358288.072300001978874, 256876.078299999237061 ], [ 358295.325499996542931, 256876.559900000691414 ], [ 358295.444200001657009, 256862.628699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471300", "MAP": null, "PARCEL_NAM": "22", "ACRE": ".55", "LONGITUDE": -64.93365079, "LATITUDE": 18.34077943, "OBJECTID_1": 10826, "PARCEL_NO_": "105302471300", "Tax_Legal_": "DRONNINGENS GADE 22 QUEENS QUARTER", "Name": "SBP INTERNATIONAL PLAZA LLC", "Address": "5600 Royal Dane Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026410, "Country": "United States", "Land_Value": 2320000, "Improved_V": 290000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.04999492399998, "SHAPE_Area": 2445.894252 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358538.251500003039837, 256757.380399998277426 ], [ 358521.120300002396107, 256750.100900001823902 ], [ 358487.269000001251698, 256872.54280000180006 ], [ 358505.446400001645088, 256877.375799998641014 ], [ 358524.723300002515316, 256810.918600000441074 ], [ 358538.816299997270107, 256760.43019999936223 ], [ 358539.510999999940395, 256757.915600001811981 ], [ 358538.251500003039837, 256757.380399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302143600", "MAP": null, "PARCEL_NAM": "20", "ACRE": null, "LONGITUDE": -64.94094317, "LATITUDE": 18.34122347, "OBJECTID_1": 9940, "PARCEL_NO_": "105302143600", "Tax_Legal_": "ANNAS FANCY 20 KRONP QTR", "Name": "OSTALAZA, LILLIAN", "Address": "3211 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20000, "Improved_V": 27900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.087148272500002, "SHAPE_Area": 365.68978641400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357740.035199999809265, 256841.617600001394749 ], [ 357731.743699997663498, 256868.358600001782179 ], [ 357746.23929999768734, 256870.588199999183416 ], [ 357752.097499996423721, 256845.515999998897314 ], [ 357740.035199999809265, 256841.617600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302242600", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 41", "ACRE": null, "LONGITUDE": -64.93926968, "LATITUDE": 18.34126403, "OBJECTID_1": 10337, "PARCEL_NO_": "105302242600", "Tax_Legal_": "KRONPRINDSENS GADE 41 CROWN PRINCE QTR", "Name": "HATCHETT, J. O & N. E", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8100, "Improved_V": 19500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.084489109300002, "SHAPE_Area": 173.78088149000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357928.5253000035882, 256865.114000000059605 ], [ 357922.971000000834465, 256854.513900000602007 ], [ 357910.023299999535084, 256859.89640000090003 ], [ 357915.57039999961853, 256871.340799998492002 ], [ 357921.239699997007847, 256868.43189999833703 ], [ 357928.5253000035882, 256865.114000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302242900", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 39 & 39A-1", "ACRE": null, "LONGITUDE": -64.93908688, "LATITUDE": 18.34122494, "OBJECTID_1": 10340, "PARCEL_NO_": "105302242900", "Tax_Legal_": "KRONPRINDSENS GADE 39 & 39A-1 CROWN PRINCE QTR", "Name": "EASTHERS, BEATRICE", "Address": "PO Box 1131", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041131, "Country": "United States", "Land_Value": 8700, "Improved_V": 140600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.821697182900003, "SHAPE_Area": 182.29239871 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357930.267399996519089, 256849.92960000038147 ], [ 357935.810900002717972, 256861.79619999974966 ], [ 357939.76690000295639, 256870.694499999284744 ], [ 357947.047100000083447, 256868.009799998253584 ], [ 357940.715300001204014, 256854.025800000876188 ], [ 357936.753899998962879, 256845.760800000280142 ], [ 357930.267399996519089, 256849.92960000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302143500", "MAP": null, "PARCEL_NAM": "21", "ACRE": null, "LONGITUDE": -64.94108441, "LATITUDE": 18.34118314, "OBJECTID_1": 9939, "PARCEL_NO_": "105302143500", "Tax_Legal_": "21 ANNAS FANCY CROWN PRINCE QTR", "Name": "DONALD DEWINDT,HERMIN W DEWINDT & QA-ID N WAHEED", "Address": "PO Box 8253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35800, "Improved_V": 39300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.3282291875, "SHAPE_Area": 494.707524138 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357723.147600002586842, 256836.201999999582767 ], [ 357714.857900001108646, 256862.73200000077486 ], [ 357716.466899998486042, 256863.167300000786781 ], [ 357731.743699997663498, 256868.358600001782179 ], [ 357740.035199999809265, 256841.617600001394749 ], [ 357723.147600002586842, 256836.201999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302453200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93546824000001, "LATITUDE": 18.34121765, "OBJECTID_1": 10777, "PARCEL_NO_": "105302453200", "Tax_Legal_": "CROWN PRINCE STREET 1OA CROWN PRINCE QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34800, "Improved_V": 91900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.993880344600001, "SHAPE_Area": 207.14235426499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358318.137900002300739, 256849.093299999833107 ], [ 358314.725599996745586, 256871.019099999219179 ], [ 358324.390600003302097, 256872.364799998700619 ], [ 358326.996500000357628, 256850.432399999350309 ], [ 358318.137900002300739, 256849.093299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302225500", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 29C", "ACRE": null, "LONGITUDE": -64.93704964, "LATITUDE": 18.34125114, "OBJECTID_1": 10267, "PARCEL_NO_": "105302225500", "Tax_Legal_": "PRINDCESSE GADE 29C CROWN PRINCE QUARTER", "Name": "GREAUX, GUSTAVE &REED & ROLAND SCHULHOFF,RUTH", "Address": "PO Box 741", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.041474947099999, "SHAPE_Area": 121.017418357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358160.007100000977516, 256858.776000000536442 ], [ 358148.73309999704361, 256856.994899999350309 ], [ 358147.83330000191927, 256867.964400000870228 ], [ 358159.918999999761581, 256869.11879999935627 ], [ 358159.143299996852875, 256865.523899998515844 ], [ 358160.007100000977516, 256858.776000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301120500", "MAP": null, "PARCEL_NAM": "200-5A-2", "ACRE": null, "LONGITUDE": -64.94640068, "LATITUDE": 18.34109931, "OBJECTID_1": 9431, "PARCEL_NO_": "105301120500", "Tax_Legal_": "200-5A-2 ALTONA&WELGUNST SOUTHSIDE QTR", "Name": "LETTSOME, JOSETTE", "Address": "P.O.BOX 5523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 84900, "Improved_V": 295400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.12295837799999, "SHAPE_Area": 1081.75286478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357157.163000002503395, 256826.081300001591444 ], [ 357155.530599996447563, 256828.390000000596046 ], [ 357153.073899999260902, 256832.802799999713898 ], [ 357149.756899997591972, 256843.541400000452995 ], [ 357148.8462999984622, 256855.777399998158216 ], [ 357178.633100003004074, 256861.50959999859333 ], [ 357177.866400003433228, 256856.859299998730421 ], [ 357177.311800003051758, 256827.301699999719858 ], [ 357175.823299996554852, 256812.723999999463558 ], [ 357175.042099997401237, 256809.762299999594688 ], [ 357171.016000002622604, 256809.096099998801947 ], [ 357164.513300001621246, 256815.164599999785423 ], [ 357163.690800003707409, 256817.057700000703335 ], [ 357162.071000002324581, 256817.888799998909235 ], [ 357157.163000002503395, 256826.081300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302144500", "MAP": null, "PARCEL_NAM": "14", "ACRE": null, "LONGITUDE": -64.94057464, "LATITUDE": 18.34124848, "OBJECTID_1": 9949, "PARCEL_NO_": "105302144500", "Tax_Legal_": "ANNAS FANCY 14 CROWN PRINCE", "Name": "DeCOSTA, RICHARD E. & DENISE D", "Address": "PO Box 11466", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15500, "Improved_V": 58700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.567118173600001, "SHAPE_Area": 208.419147012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357774.622100003063679, 256851.82209999859333 ], [ 357772.086300000548363, 256865.522399999201298 ], [ 357789.818000003695488, 256866.511900000274181 ], [ 357789.91330000013113, 256855.324700001627207 ], [ 357774.622100003063679, 256851.82209999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302422200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93696991, "LATITUDE": 18.34124326, "OBJECTID_1": 10726, "PARCEL_NO_": "105302422200", "Tax_Legal_": "KRONPRINDSENS GADE 29B CROWN PRINCE QUARTER", "Name": "GREAUX, GUSTAVE &REED & ROLAND SCHULHOFF,RUTH", "Address": "PO Box 741", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.409030667000003, "SHAPE_Area": 57.444661429299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358164.799999997019768, 256864.092500001192093 ], [ 358164.058499999344349, 256856.487100001424551 ], [ 358159.22240000218153, 256856.236400000751019 ], [ 358160.007100000977516, 256858.776000000536442 ], [ 358159.143299996852875, 256865.523899998515844 ], [ 358165.557800002396107, 256869.798200000077486 ], [ 358164.799999997019768, 256864.092500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302472300", "MAP": null, "PARCEL_NAM": "21", "ACRE": ".64", "LONGITUDE": -64.93384023, "LATITUDE": 18.34071814, "OBJECTID_1": 10836, "PARCEL_NO_": "105302472300", "Tax_Legal_": "21 DRONNINGENS GADE QUEENS QTR", "Name": "21 QUEENS QTR. INC.", "Address": "9800 Buccaneer Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022626, "Country": "United States", "Land_Value": 2200000, "Improved_V": 81900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.82882671900001, "SHAPE_Area": 2890.10153597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358521.120300002396107, 256750.100900001823902 ], [ 358521.782899998128414, 256747.704199999570847 ], [ 358515.981799997389317, 256747.917399998754263 ], [ 358514.815700002014637, 256747.960200000554323 ], [ 358496.218599997460842, 256748.643699999898672 ], [ 358493.090800002217293, 256757.855099998414516 ], [ 358467.3429000005126, 256867.244899999350309 ], [ 358487.269000001251698, 256872.54280000180006 ], [ 358521.120300002396107, 256750.100900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302144600", "MAP": null, "PARCEL_NAM": "15A", "ACRE": null, "LONGITUDE": -64.9407237, "LATITUDE": 18.34122165, "OBJECTID_1": 9950, "PARCEL_NO_": "105302144600", "Tax_Legal_": "ANNAS FANCY 15A CROWN PRINCE QUARTER", "Name": "CLAUSE, A. & WALLACE, M", "Address": "PO Box 10785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17400, "Improved_V": 22900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.564168964700002, "SHAPE_Area": 219.822380428 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357755.995999999344349, 256861.168800000101328 ], [ 357772.086300000548363, 256865.522399999201298 ], [ 357774.622100003063679, 256851.82209999859333 ], [ 357759.331000000238419, 256848.319400001317263 ], [ 357755.995999999344349, 256861.168800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302233200", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 1AB", "ACRE": null, "LONGITUDE": -64.93880678, "LATITUDE": 18.34125374, "OBJECTID_1": 10302, "PARCEL_NO_": "105302233200", "Tax_Legal_": "NYE NORDSIDEVEJ 1AB CROWN PRINCE QTR", "Name": "TODMAN, SINCLAIR", "Address": "PO Box 10223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6300, "Improved_V": 22800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.211940040199998, "SHAPE_Area": 98.294678560099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357973.67339999973774, 256866.116799999028444 ], [ 357973.768700003623962, 256854.92960000038147 ], [ 357971.339000001549721, 256856.176300000399351 ], [ 357957.561499997973442, 256864.29619999974966 ], [ 357965.610299997031689, 256866.050799999386072 ], [ 357973.67339999973774, 256866.116799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302233400", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 1AAA", "ACRE": null, "LONGITUDE": -64.93870341, "LATITUDE": 18.34115684, "OBJECTID_1": 10304, "PARCEL_NO_": "105302233400", "Tax_Legal_": "1AAA NYE NORDSIDEVEJ CROWN PRINCE QUARTER", "Name": "LEWIS, BERECIA & SIMONE M, CANTON", "Address": "1AAA Ny Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16000, "Improved_V": 63700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.503860477299995, "SHAPE_Area": 273.69357790700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357969.024300001561642, 256843.914000000804663 ], [ 357971.339000001549721, 256856.176300000399351 ], [ 357973.768700003623962, 256854.92960000038147 ], [ 357973.67339999973774, 256866.116799999028444 ], [ 357976.092299997806549, 256866.136599998921156 ], [ 357976.169699996709824, 256857.060199998319149 ], [ 357990.67790000140667, 256857.812300000339746 ], [ 357990.764200001955032, 256847.680500000715256 ], [ 357978.673100002110004, 256847.159299999475479 ], [ 357978.741499997675419, 256839.138300001621246 ], [ 357969.024300001561642, 256843.914000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302233300", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 1B", "ACRE": null, "LONGITUDE": -64.93866363, "LATITUDE": 18.34125051, "OBJECTID_1": 10303, "PARCEL_NO_": "105302233300", "Tax_Legal_": "NYE NORDSIDEVEJ 1B CROWN PRINCE QTR", "Name": "SMITH, JAMES H", "Address": "PO Box 6052", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.352503157500003, "SHAPE_Area": 125.61278243300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357976.092299997806549, 256866.136599998921156 ], [ 357990.607799999415874, 256866.044300001114607 ], [ 357990.67790000140667, 256857.812300000339746 ], [ 357976.169699996709824, 256857.060199998319149 ], [ 357976.092299997806549, 256866.136599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302242800", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 40", "ACRE": null, "LONGITUDE": -64.93917342, "LATITUDE": 18.3412182, "OBJECTID_1": 10339, "PARCEL_NO_": "105302242800", "Tax_Legal_": "KRONPRINDSENS GADE 4O CROWN PRINCE QTR", "Name": "HATCHETT, J. & N. C/O FRANCIS", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 40700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.6872329678, "SHAPE_Area": 103.826336181 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357930.267399996519089, 256849.92960000038147 ], [ 357922.971000000834465, 256854.513900000602007 ], [ 357928.5253000035882, 256865.114000000059605 ], [ 357935.810900002717972, 256861.79619999974966 ], [ 357930.267399996519089, 256849.92960000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302421800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93683181, "LATITUDE": 18.34118482, "OBJECTID_1": 10723, "PARCEL_NO_": "105302421800", "Tax_Legal_": "CROWN PRINCE 22B CROWN PRINCE QTR", "Name": "MISSIONARY SOCIETY", "Address": "BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.382806689799999, "SHAPE_Area": 205.69631665 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358185.092699997127056, 256848.426600001752377 ], [ 358173.014200001955032, 256846.42790000140667 ], [ 358169.632500000298023, 256864.765399999916553 ], [ 358180.107400000095367, 256865.695500001311302 ], [ 358180.942500002682209, 256862.324799999594688 ], [ 358185.092699997127056, 256848.426600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402120500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91800774, "LATITUDE": 18.34083191, "OBJECTID_1": 19233, "PARCEL_NO_": "105402120500", "Tax_Legal_": "46A & POR OF 46 ESTATE THOMAS 6A NEW QTR", "Name": "CI BUILDING INC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 942400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.38531452799998, "SHAPE_Area": 3683.0309832500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360153.145000003278255, 256882.899300001561642 ], [ 360194.392800003290176, 256868.460299998521805 ], [ 360189.781499996781349, 256841.824799999594688 ], [ 360185.19539999961853, 256812.234200000762939 ], [ 360181.406599998474121, 256783.70549999922514 ], [ 360139.347099997103214, 256798.771099999547005 ], [ 360153.145000003278255, 256882.899300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302222700", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 26Ba", "ACRE": null, "LONGITUDE": -64.93736628000001, "LATITUDE": 18.34122666, "OBJECTID_1": 10241, "PARCEL_NO_": "105302222700", "Tax_Legal_": "KRONPRINDSENS GADE 26Ba CROWN PRINCE QUARTER", "Name": "HARRY R. WYNNS LIVING TRUST", "Address": "PO Box 1570", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.5805946101, "SHAPE_Area": 137.72810995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358115.695900000631809, 256854.191399998962879 ], [ 358114.346900001168251, 256853.723000001162291 ], [ 358111.486100003123283, 256863.082699999213219 ], [ 358112.393299996852875, 256863.241399999707937 ], [ 358125.26240000128746, 256865.299899999052286 ], [ 358127.693499997258186, 256865.688700001686811 ], [ 358129.760899998247623, 256858.868000000715256 ], [ 358128.112300001084805, 256858.276900000870228 ], [ 358115.695900000631809, 256854.191399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302421700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93692915, "LATITUDE": 18.34113913, "OBJECTID_1": 10722, "PARCEL_NO_": "105302421700", "Tax_Legal_": "KRONPRINDSENS GADE 23A CROWN PRINCE QUARTER", "Name": "MC CLEVERTY, JOHN & JOYCE", "Address": "PO Box 306180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11800, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.833229028600002, "SHAPE_Area": 235.822599739 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358173.014200001955032, 256846.42790000140667 ], [ 358173.856499999761581, 256842.212900001555681 ], [ 358163.399599999189377, 256839.171999998390675 ], [ 358160.921300001442432, 256846.117800001055002 ], [ 358159.22240000218153, 256856.236400000751019 ], [ 358164.058499999344349, 256856.487100001424551 ], [ 358164.799999997019768, 256864.092500001192093 ], [ 358169.632500000298023, 256864.765399999916553 ], [ 358173.014200001955032, 256846.42790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302233500", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 37", "ACRE": null, "LONGITUDE": -64.9388834, "LATITUDE": 18.341119, "OBJECTID_1": 10305, "PARCEL_NO_": "105302233500", "Tax_Legal_": "KRONPRINDSENS GADE 37 CROWN PRINCE QTR", "Name": "THOMAS, CHRISTIANA & REUBEN", "Address": "37 Kronprindsen Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24300, "Improved_V": 33200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.534332829899995, "SHAPE_Area": 460.23971733500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357969.024300001561642, 256843.914000000804663 ], [ 357961.079899996519089, 256829.916799999773502 ], [ 357948.103399999439716, 256838.676500000059605 ], [ 357952.048600003123283, 256848.841299999505281 ], [ 357957.561499997973442, 256864.29619999974966 ], [ 357971.339000001549721, 256856.176300000399351 ], [ 357969.024300001561642, 256843.914000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302222600", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 27B", "ACRE": null, "LONGITUDE": -64.9374908, "LATITUDE": 18.34111405, "OBJECTID_1": 10240, "PARCEL_NO_": "105302222600", "Tax_Legal_": "KRONPRINDSENS GADE 27B CROWN PRINCE QUARTER", "Name": "JONES, CHARLES R. & OTHERS", "Address": "PO Box 305294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11700, "Improved_V": 55700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.668459694999996, "SHAPE_Area": 263.35470610499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358106.144199997186661, 256839.547800000756979 ], [ 358100.832500003278255, 256838.459600001573563 ], [ 358096.968000002205372, 256852.289799999445677 ], [ 358103.358300000429153, 256854.427799999713898 ], [ 358113.131999999284744, 256857.697799999266863 ], [ 358117.756899997591972, 256842.566300000995398 ], [ 358112.58389999717474, 256840.866999998688698 ], [ 358110.168600000441074, 256840.42509999871254 ], [ 358107.558100000023842, 256839.856100000441074 ], [ 358106.144199997186661, 256839.547800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471000", "MAP": null, "PARCEL_NAM": "KRONDPRINSENS GADE 87", "ACRE": "7,848 sq ft", "LONGITUDE": -64.93425772000001, "LATITUDE": 18.34110163, "OBJECTID_1": 10823, "PARCEL_NO_": "105302471000", "Tax_Legal_": "KRONPRINDSENS GADE 87 CROWN PRINCE QUARTER", "Name": "ZUH RUSHDI, F ALI & HEZAR ZUHDI", "Address": "PO Box 9068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 176600, "Improved_V": 254300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.230629464200007, "SHAPE_Area": 515.974080598 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358464.355700001120567, 256841.685699999332428 ], [ 358455.03320000320673, 256839.775800000876188 ], [ 358454.643700003623962, 256841.189100001007318 ], [ 358445.261600002646446, 256838.570000000298023 ], [ 358438.609099999070168, 256836.712900001555681 ], [ 358438.336400002241135, 256837.735500000417233 ], [ 358433.512000001966953, 256855.829599998891354 ], [ 358459.80799999833107, 256861.149099998176098 ], [ 358464.355700001120567, 256841.685699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302221900", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 9B", "ACRE": null, "LONGITUDE": -64.93818039, "LATITUDE": 18.34119713, "OBJECTID_1": 10233, "PARCEL_NO_": "105302221900", "Tax_Legal_": "NYE NORDSIDEVEJ 8D&9B CROWN PRINCE QTR", "Name": "FRANCIS, VELMA & OTHERS", "Address": "PO Box 8551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13300, "Improved_V": 95000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.342770616300001, "SHAPE_Area": 85.314378616400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358041.47919999808073, 256857.805900000035763 ], [ 358039.114200003445148, 256851.453699998557568 ], [ 358028.368000000715256, 256854.172899998724461 ], [ 358027.245300002396107, 256854.408700000494719 ], [ 358029.315700002014637, 256859.494199998676777 ], [ 358030.160199999809265, 256861.30180000141263 ], [ 358041.47919999808073, 256857.805900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302453100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93570651, "LATITUDE": 18.34116418, "OBJECTID_1": 10776, "PARCEL_NO_": "105302453100", "Tax_Legal_": "CROWN PRINCE ST 12B CROWN PRINCE QUARTER", "Name": "EL HAJ, CARMEN", "Address": "2260 SW 132nd Ave", "City": "Miami", "State": "Florida", "Zip": 33175, "Country": "United States", "Land_Value": 14600, "Improved_V": 221000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.882956644399997, "SHAPE_Area": 191.568494431 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358302.83049999922514, 256847.49040000140667 ], [ 358290.744800001382828, 256846.335999999195337 ], [ 358288.997299998998642, 256862.1537000015378 ], [ 358295.444200001657009, 256862.628699999302626 ], [ 358301.084799997508526, 256863.096999999135733 ], [ 358302.83049999922514, 256847.49040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301111000", "MAP": "G9-2928-T79", "PARCEL_NAM": "200-3J", "ACRE": "7,607 sq ft", "LONGITUDE": -64.94605359000001, "LATITUDE": 18.3410802, "OBJECTID_1": 9402, "PARCEL_NO_": "105301111000", "Tax_Legal_": "200-3J ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "CHRISTIAN, CLAUDETTE M.", "Address": "2928 Ellicott Ter NW", "City": "Washington", "State": "District of Columbia", "Zip": 20008, "Country": "United States", "Land_Value": 38700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.737569593, "SHAPE_Area": 869.23954065400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357217.839500002563, 256856.338899999856949 ], [ 357214.9949000030756, 256821.167700000107288 ], [ 357213.793200001120567, 256821.223400000482798 ], [ 357186.015299998223782, 256822.259899999946356 ], [ 357186.211800001561642, 256823.785900000482798 ], [ 357186.031999997794628, 256844.893800001591444 ], [ 357209.344899997115135, 256853.317299999296665 ], [ 357217.839500002563, 256856.338899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302222200", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 23B", "ACRE": null, "LONGITUDE": -64.93778476, "LATITUDE": 18.34108928, "OBJECTID_1": 10236, "PARCEL_NO_": "105302222200", "Tax_Legal_": "PRINDCESSE GADE 23B CROWN PRINCE QUARTER", "Name": "ELSKOE, DOROTHY LOCKHART", "Address": "PO Box 7566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.4016495953, "SHAPE_Area": 267.180881527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358085.427500002086163, 256834.94709999859333 ], [ 358073.951099999248981, 256832.318199999630451 ], [ 358072.289899997413158, 256838.004099998623133 ], [ 358067.309900000691414, 256854.639800000935793 ], [ 358079.401199996471405, 256857.021600000560284 ], [ 358079.417199999094009, 256853.6689000017941 ], [ 358085.427500002086163, 256834.94709999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302222800", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 26B", "ACRE": null, "LONGITUDE": -64.93731354000001, "LATITUDE": 18.3410939, "OBJECTID_1": 10242, "PARCEL_NO_": "105302222800", "Tax_Legal_": "KRONPRINDSENS GADE 26B CROWN PRINCE QUARTER", "Name": "DAWSON, LAWRENCE & IDA A. & LANETTE BAKER", "Address": "P.O. BOX 4312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22800, "Improved_V": 163400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.130234810600001, "SHAPE_Area": 317.72448718800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358128.112300001084805, 256858.276900000870228 ], [ 358136.579800002276897, 256837.410599999129772 ], [ 358137.146099999547005, 256835.552700001746416 ], [ 358126.370399996638298, 256831.691799998283386 ], [ 358122.540700003504753, 256844.137699998915195 ], [ 358119.375200003385544, 256843.097899999469519 ], [ 358117.756899997591972, 256842.566300000995398 ], [ 358114.346900001168251, 256853.723000001162291 ], [ 358115.695900000631809, 256854.191399998962879 ], [ 358128.112300001084805, 256858.276900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302222000", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 31G", "ACRE": null, "LONGITUDE": -64.93807699, "LATITUDE": 18.3410702, "OBJECTID_1": 10234, "PARCEL_NO_": "105302222000", "Tax_Legal_": "KRONPRINDSENS GADE 31G CROWN PRINCE QUARTER", "Name": "VANSHAC, INC.", "Address": "PO Box 302934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18700, "Improved_V": 59100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.952768052300002, "SHAPE_Area": 427.67298547500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358041.732699997723103, 256828.043699998408556 ], [ 358039.946299999952316, 256827.250500001013279 ], [ 358038.267800003290176, 256832.383099999278784 ], [ 358035.172200001776218, 256848.258200000971556 ], [ 358038.25280000269413, 256849.375599998980761 ], [ 358039.114200003445148, 256851.453699998557568 ], [ 358041.47919999808073, 256857.805900000035763 ], [ 358052.79450000077486, 256854.732099998742342 ], [ 358052.05290000140667, 256847.126600001007318 ], [ 358057.007700003683567, 256833.446100000292063 ], [ 358041.732699997723103, 256828.043699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302225700", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 24B", "ACRE": null, "LONGITUDE": -64.93707403000001, "LATITUDE": 18.34113056, "OBJECTID_1": 10269, "PARCEL_NO_": "105302225700", "Tax_Legal_": "KRONPRINDSENS GADE 24B CROWN PRINCE QUARTER", "Name": "ROSTON, ELEANOR", "Address": "13727 170th St", "City": "Jamaica", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 17400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.5256337366, "SHAPE_Area": 218.37609287699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358160.921300001442432, 256846.117800001055002 ], [ 358148.050899997353554, 256842.423900000751019 ], [ 358148.034699998795986, 256844.323600001633167 ], [ 358139.183200001716614, 256842.1402000002563 ], [ 358137.52929999679327, 256846.981800001114607 ], [ 358147.196000002324581, 256848.116399999707937 ], [ 358146.317800000309944, 256856.552999999374151 ], [ 358148.73309999704361, 256856.994899999350309 ], [ 358160.007100000977516, 256858.776000000536442 ], [ 358159.22240000218153, 256856.236400000751019 ], [ 358160.921300001442432, 256846.117800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302225600", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 24C", "ACRE": null, "LONGITUDE": -64.93716686, "LATITUDE": 18.3411477, "OBJECTID_1": 10268, "PARCEL_NO_": "105302225600", "Tax_Legal_": "KRONPRINDSENS GADE 24C CROWN PRINCE QUARTER", "Name": "ROSTON, ELEANOR S", "Address": "13727 170th St", "City": "Jamaica", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 3300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.637800492799997, "SHAPE_Area": 86.465698387900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358135.04559999704361, 256854.560899998992682 ], [ 358146.317800000309944, 256856.552999999374151 ], [ 358147.196000002324581, 256848.116399999707937 ], [ 358137.52929999679327, 256846.981800001114607 ], [ 358135.04559999704361, 256854.560899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302470600", "MAP": null, "PARCEL_NAM": "KRONDPRINSENS GADE 86", "ACRE": "3,480 sq ft", "LONGITUDE": -64.93442138, "LATITUDE": 18.34102491, "OBJECTID_1": 10819, "PARCEL_NO_": "105302470600", "Tax_Legal_": "CURACOA STRAEDE 5&6 CROWN PRINCE QUARTER", "Name": "KHALIL, FARIS M. & AMAL A. (TRUSTEES)", "Address": "PO Box 301800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59200, "Improved_V": 308000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.806754632199997, "SHAPE_Area": 292.22093715800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358420.082800000905991, 256835.889299999922514 ], [ 358419.135600000619888, 256840.244199998676777 ], [ 358427.259900003671646, 256842.015299998223782 ], [ 358428.353799998760223, 256841.963599998503923 ], [ 358425.445900000631809, 256854.218299999833107 ], [ 358433.512000001966953, 256855.829599998891354 ], [ 358438.336400002241135, 256837.735500000417233 ], [ 358441.153399996459484, 256827.170400001108646 ], [ 358440.860799998044968, 256827.122699998319149 ], [ 358432.778599999845028, 256825.804800000041723 ], [ 358429.716600000858307, 256837.60249999910593 ], [ 358420.082800000905991, 256835.889299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302243200", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 48A", "ACRE": null, "LONGITUDE": -64.939659, "LATITUDE": 18.34098217, "OBJECTID_1": 10341, "PARCEL_NO_": "105302243200", "Tax_Legal_": "KRONPRINDSENS GADE 48A KROMPRINDSENS QTR.", "Name": "Virgin Islands Telephone Company", "Address": "PO Box 6100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 233200, "Improved_V": 2244600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.72644755499999, "SHAPE_Area": 1263.4489375000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357891.537399999797344, 256852.778999999165535 ], [ 357894.317800000309944, 256810.371899999678135 ], [ 357865.303099997341633, 256808.656800001859665 ], [ 357862.522799998521805, 256851.063799999654293 ], [ 357865.729999996721745, 256853.2010000012815 ], [ 357891.537399999797344, 256852.778999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302243300", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 38BA,38A,38B&39A", "ACRE": null, "LONGITUDE": -64.93903458, "LATITUDE": 18.34112011, "OBJECTID_1": 10343, "PARCEL_NO_": "105302243300", "Tax_Legal_": "KRON G 38BA,38A,38B&39A KROMP QTR", "Name": "VANSHAC, INC.", "Address": "PO Box 302934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16200, "Improved_V": 283200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.0608366206, "SHAPE_Area": 119.91038088800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357936.753899998962879, 256845.760800000280142 ], [ 357940.715300001204014, 256854.025800000876188 ], [ 357952.048600003123283, 256848.841299999505281 ], [ 357946.483599998056889, 256839.507599998265505 ], [ 357936.753899998962879, 256845.760800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302223100", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 32CB", "ACRE": "5,359 sq ft", "LONGITUDE": -64.93818994, "LATITUDE": 18.34089919, "OBJECTID_1": 10245, "PARCEL_NO_": "105302223100", "Tax_Legal_": "32CB KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "JEPPESEN, JANICE A", "Address": "PO Box 8862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27300, "Improved_V": 77000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.259404937, "SHAPE_Area": 685.63689103299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358038.267800003290176, 256832.383099999278784 ], [ 358049.642300002276897, 256797.600499998778105 ], [ 358039.237999998033047, 256800.694499999284744 ], [ 358017.605800002813339, 256806.557199999690056 ], [ 358014.852099999785423, 256807.141800001263618 ], [ 358017.782700002193451, 256812.647399999201298 ], [ 358029.801700003445148, 256808.736600000411272 ], [ 358036.102899998426437, 256826.308899998664856 ], [ 358034.484899997711182, 256826.929000001400709 ], [ 358036.06700000166893, 256830.530499998480082 ], [ 358034.450699999928474, 256830.939500000327826 ], [ 358034.777099996805191, 256833.397100001573563 ], [ 358025.0320999994874, 256835.442999999970198 ], [ 358020.01519999653101, 256836.649099998176098 ], [ 358027.245300002396107, 256854.408700000494719 ], [ 358028.368000000715256, 256854.172899998724461 ], [ 358039.114200003445148, 256851.453699998557568 ], [ 358038.25280000269413, 256849.375599998980761 ], [ 358035.172200001776218, 256848.258200000971556 ], [ 358038.267800003290176, 256832.383099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302222100", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 31F", "ACRE": null, "LONGITUDE": -64.93792487, "LATITUDE": 18.34109313, "OBJECTID_1": 10235, "PARCEL_NO_": "105302222100", "Tax_Legal_": "KRONPRINDSENS GADE 31F CROWN PRINCE QUARTER", "Name": "SCARBRIEL, DEAN", "Address": "7489 NW 17th Dr", "City": "Hollywood", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 12800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.019939727099995, "SHAPE_Area": 316.672025335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358072.289899997413158, 256838.004099998623133 ], [ 358057.007700003683567, 256833.446100000292063 ], [ 358052.05290000140667, 256847.126600001007318 ], [ 358052.79450000077486, 256854.732099998742342 ], [ 358067.309900000691414, 256854.639800000935793 ], [ 358072.289899997413158, 256838.004099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93937773, "LATITUDE": 18.34097075, "OBJECTID_1": 11328, "PARCEL_NO_": "105304020300", "Tax_Legal_": "49A,BA,50A&50BA,51A,51AA 51B KROMP GADE", "Name": "I T T COMMUNICATION INC", "Address": "PO Box 192830", "City": "San Juan", "State": "Puerto Rico", "Zip": 919, "Country": "United States", "Land_Value": 197300, "Improved_V": 1400800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.98093899899999, "SHAPE_Area": 1190.8568581500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357925.751400001347065, 256812.106800001114607 ], [ 357894.317800000309944, 256810.371899999678135 ], [ 357891.537399999797344, 256852.778999999165535 ], [ 357908.498800002038479, 256849.540300000458956 ], [ 357923.874399997293949, 256843.12220000103116 ], [ 357925.751400001347065, 256812.106800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302470700", "MAP": null, "PARCEL_NAM": "KRONDPRINSENS GADE 85", "ACRE": null, "LONGITUDE": -64.93451008, "LATITUDE": 18.34108546, "OBJECTID_1": 10820, "PARCEL_NO_": "105302470700", "Tax_Legal_": "KRONPRINDSENS GADE 85 CROWN PRINCE QUARTER", "Name": "RICHARDSON, DAVID, MICHAEL A. & OTHERS", "Address": "PO Box 304701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27500, "Improved_V": 214700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.863754579400002, "SHAPE_Area": 111.379420384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358419.135600000619888, 256840.244199998676777 ], [ 358416.648500002920628, 256851.678399998694658 ], [ 358423.934000000357628, 256853.809300001710653 ], [ 358425.445900000631809, 256854.218299999833107 ], [ 358428.353799998760223, 256841.963599998503923 ], [ 358427.259900003671646, 256842.015299998223782 ], [ 358419.135600000619888, 256840.244199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301150200", "MAP": "D9-2858-T84", "PARCEL_NAM": "212A-14", "ACRE": "0.23", "LONGITUDE": -64.94712727, "LATITUDE": 18.34095903, "OBJECTID_1": 9501, "PARCEL_NO_": "105301150200", "Tax_Legal_": "ALTONA & WELGUNST 212A-14 CROWN PRINCE QTR.", "Name": "GUMBS REALTY CORPORATION", "Address": "3623 Altona&Welgunst212A-14", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75100, "Improved_V": 320400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.66043469100001, "SHAPE_Area": 1426.5218282200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357101.683899998664856, 256807.262099999934435 ], [ 357072.750100001692772, 256796.04839999973774 ], [ 357071.5608000010252, 256841.001600001007318 ], [ 357095.712399996817112, 256845.632199998944998 ], [ 357101.6216000020504, 256846.508499998599291 ], [ 357102.274400003254414, 256832.598099999129772 ], [ 357106.365299999713898, 256825.665500000119209 ], [ 357115.105899997055531, 256812.700500000268221 ], [ 357104.093800000846386, 256808.33729999884963 ], [ 357101.683899998664856, 256807.262099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402120400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91695272, "LATITUDE": 18.34049165, "OBJECTID_1": 19232, "PARCEL_NO_": "105402120400", "Tax_Legal_": "46 EST THOMAS 6A NEW QTR", "Name": "U S POSTAL SERVICE", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1538100, "Improved_V": 4742000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 530.22136294500001, "SHAPE_Area": 13843.1292092 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360349.150499999523163, 256724.260099999606609 ], [ 360214.790700003504753, 256773.384500000625849 ], [ 360214.883100003004074, 256774.075100000947714 ], [ 360218.360299997031689, 256800.051100000739098 ], [ 360191.665700003504753, 256809.96510000154376 ], [ 360197.858999997377396, 256840.202199999243021 ], [ 360189.781499996781349, 256841.824799999594688 ], [ 360194.392800003290176, 256868.460299998521805 ], [ 360363.689400002360344, 256809.356899999082088 ], [ 360349.150499999523163, 256724.260099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302470300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93463099, "LATITUDE": 18.34106107, "OBJECTID_1": 10816, "PARCEL_NO_": "105302470300", "Tax_Legal_": "KRONPRINDSENS GADE 84 CROWN PRINCE QUARTER", "Name": "WILLIAMS, DORSELLA", "Address": "PO Box 9651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 277400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.279916445799998, "SHAPE_Area": 98.8908782444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358407.13629999756813, 256837.839800000190735 ], [ 358403.815700002014637, 256849.000599998980761 ], [ 358412.672600001096725, 256850.550799999386072 ], [ 358415.186800003051758, 256839.383400000631809 ], [ 358407.13629999756813, 256837.839800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302470200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93471044, "LATITUDE": 18.34103006, "OBJECTID_1": 10815, "PARCEL_NO_": "105302470200", "Tax_Legal_": "KRONPRINDSENS GADE 83 CROWN PRINCE QUARTER", "Name": "J. ISIDORE GREAUX INC.", "Address": "BOX 2455", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41300, "Improved_V": 229000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.474032596699999, "SHAPE_Area": 144.676070555 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358407.13629999756813, 256837.839800000190735 ], [ 358407.971400000154972, 256834.469200000166893 ], [ 358398.311800003051758, 256832.490299999713898 ], [ 358397.473099999129772, 256836.283100001513958 ], [ 358394.957099996507168, 256847.66160000115633 ], [ 358403.815700002014637, 256849.000599998980761 ], [ 358407.13629999756813, 256837.839800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302233700", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 1AAB", "ACRE": null, "LONGITUDE": -64.93865076, "LATITUDE": 18.34108414, "OBJECTID_1": 10307, "PARCEL_NO_": "105302233700", "Tax_Legal_": "NYE NORDSIDEVEJ 1AAB CROWN PRINCE QTR", "Name": "LETTSOME, HUEROY A", "Address": "7142 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4200, "Improved_V": 25200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.452793680799999, "SHAPE_Area": 98.294620029399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357990.764200001955032, 256847.680500000715256 ], [ 357990.834299996495247, 256839.448399998247623 ], [ 357978.741499997675419, 256839.138300001621246 ], [ 357978.673100002110004, 256847.159299999475479 ], [ 357990.764200001955032, 256847.680500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302223900", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 32CA", "ACRE": "4,745 sq ft", "LONGITUDE": -64.93825995, "LATITUDE": 18.34090179, "OBJECTID_1": 10252, "PARCEL_NO_": "105302223900", "Tax_Legal_": "KRONPRINDSENS GADE 32CA CROWN PRINCE QUARTER", "Name": "GEORGE, RAYMOND & OTHERS", "Address": "PO Box 7804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26200, "Improved_V": 115200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.159714485799995, "SHAPE_Area": 373.464413267 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358036.102899998426437, 256826.308899998664856 ], [ 358029.801700003445148, 256808.736600000411272 ], [ 358017.782700002193451, 256812.647399999201298 ], [ 358020.329000003635883, 256818.254399999976158 ], [ 358018.050300002098083, 256819.708399999886751 ], [ 358020.614799998700619, 256825.412399999797344 ], [ 358016.240099996328354, 256827.375999998301268 ], [ 358020.01519999653101, 256836.649099998176098 ], [ 358025.0320999994874, 256835.442999999970198 ], [ 358034.777099996805191, 256833.397100001573563 ], [ 358034.450699999928474, 256830.939500000327826 ], [ 358036.06700000166893, 256830.530499998480082 ], [ 358034.484899997711182, 256826.929000001400709 ], [ 358036.102899998426437, 256826.308899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302470100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93479075, "LATITUDE": 18.34103496, "OBJECTID_1": 10814, "PARCEL_NO_": "105302470100", "Tax_Legal_": "KRONPRINDSENS GADE 82 CROWN PRINCE QUARTER", "Name": "THE GREEN CORNER STORE, INC.", "Address": "PO Box 301765", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9200, "Improved_V": 142200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.277611765700001, "SHAPE_Area": 81.189090963200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358394.957099996507168, 256847.66160000115633 ], [ 358397.473099999129772, 256836.283100001513958 ], [ 358390.227099999785423, 256834.95719999819994 ], [ 358388.515600003302097, 256846.553399998694658 ], [ 358394.957099996507168, 256847.66160000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302421500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93679698, "LATITUDE": 18.34102905, "OBJECTID_1": 10720, "PARCEL_NO_": "105302421500", "Tax_Legal_": "KRONPRINDSENS GADE 22A KROMP QTR", "Name": "ST. P & P ROMAN CATHOLIC CONG. INC", "Address": "PO Box 301767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19800, "Improved_V": 225000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.4402850691, "SHAPE_Area": 214.01396602700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358176.796499997377396, 256828.626499999314547 ], [ 358173.856499999761581, 256842.212900001555681 ], [ 358173.014200001955032, 256846.42790000140667 ], [ 358185.092699997127056, 256848.426600001752377 ], [ 358188.543999999761581, 256832.013099998235703 ], [ 358176.796499997377396, 256828.626499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402130100", "MAP": "MB.B", "PARCEL_NAM": "1ST STREET", "ACRE": "0.11", "LONGITUDE": -64.92028005, "LATITUDE": 18.34096049, "OBJECTID_1": 19238, "PARCEL_NO_": "105402130100", "Tax_Legal_": "1 FIRST STREET KINGS QUARTER", "Name": "HENDRICKS, CHERIE K. LIFE EST", "Address": "PO Box 7244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12400, "Improved_V": 66300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.563411975400001, "SHAPE_Area": 564.23641435499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359933.75280000269413, 256830.430399999022484 ], [ 359911.105899997055531, 256838.477699998766184 ], [ 359919.790200002491474, 256860.291400000452995 ], [ 359922.210900001227856, 256860.100099999457598 ], [ 359941.623499996960163, 256853.081799998879433 ], [ 359933.75280000269413, 256830.430399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302225900", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 24A", "ACRE": null, "LONGITUDE": -64.93700936, "LATITUDE": 18.34098712, "OBJECTID_1": 10271, "PARCEL_NO_": "105302225900", "Tax_Legal_": "24A KRONDPRINDSENS GADE KRONDPRINDSENS QTR", "Name": "MARKETING INVESTOR, LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32700, "Improved_V": 165300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.023825653499998, "SHAPE_Area": 283.745395524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358156.582299999892712, 256821.641399998217821 ], [ 358148.050899997353554, 256842.423900000751019 ], [ 358160.921300001442432, 256846.117800001055002 ], [ 358163.399599999189377, 256839.171999998390675 ], [ 358168.118199996650219, 256825.239799998700619 ], [ 358156.582299999892712, 256821.641399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302472000", "MAP": "D9-7300-T003", "PARCEL_NAM": "KRONDPRINSENS GADE 81A", "ACRE": null, "LONGITUDE": -64.93498887, "LATITUDE": 18.34080707, "OBJECTID_1": 10833, "PARCEL_NO_": "105302472000", "Tax_Legal_": "KRONPRINDSENS GADE 81A & B CROWN PRINCE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 309000, "Improved_V": 1424200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.70619174, "SHAPE_Area": 435.58041255900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358378.569099999964237, 256791.33500000089407 ], [ 358368.960400000214577, 256789.848799999803305 ], [ 358368.612899996340275, 256792.722300000488758 ], [ 358367.377099998295307, 256845.56870000064373 ], [ 358373.076200000941753, 256846.513300001621246 ], [ 358378.277900002896786, 256794.067899998277426 ], [ 358378.569099999964237, 256791.33500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302233600", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 36", "ACRE": null, "LONGITUDE": -64.93879538, "LATITUDE": 18.34100457, "OBJECTID_1": 10306, "PARCEL_NO_": "105302233600", "Tax_Legal_": "KRONPRINDSENS GADE 36 CROWN PRINCE QTR", "Name": "MAHONEY, KENNETH", "Address": "KROPRINDSENS GADE #36", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11600, "Improved_V": 62700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.471085319499998, "SHAPE_Area": 171.05929866299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357973.961099997162819, 256832.344200000166893 ], [ 357969.191600002348423, 256824.283599998801947 ], [ 357961.079899996519089, 256829.916799999773502 ], [ 357969.024300001561642, 256843.914000000804663 ], [ 357978.741499997675419, 256839.138300001621246 ], [ 357973.961099997162819, 256832.344200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302223700", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 27AA", "ACRE": null, "LONGITUDE": -64.9373823, "LATITUDE": 18.34100793, "OBJECTID_1": 10250, "PARCEL_NO_": "105302223700", "Tax_Legal_": "KRONPRINDSENS GADE 27AA CROWN PRINCE QUARTER", "Name": "PENN, KIRK L. & BRENDLEY", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7100, "Improved_V": 32600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.961648340799997, "SHAPE_Area": 154.093579447 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358115.620600000023842, 256827.680100001394749 ], [ 358111.277199998497963, 256840.627999998629093 ], [ 358112.58389999717474, 256840.866999998688698 ], [ 358122.540700003504753, 256844.137699998915195 ], [ 358126.370399996638298, 256831.691799998283386 ], [ 358115.920699998736382, 256827.806600000709295 ], [ 358115.620600000023842, 256827.680100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304050500", "MAP": "D9-7300-T003", "PARCEL_NAM": "KRONDPRINSENS GADE 80", "ACRE": ".741", "LONGITUDE": -64.93504345, "LATITUDE": 18.34031989, "OBJECTID_1": 11376, "PARCEL_NO_": "105304050500", "Tax_Legal_": "KRONPRINDSEN GADE 80 CROWN PRINCE QTR.", "Name": "WATER FRONT DEVELOPMENT & MNMGT", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 570700, "Improved_V": 627500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.69544353100002, "SHAPE_Area": 3180.8924684499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358368.612899996340275, 256792.722300000488758 ], [ 358368.960400000214577, 256789.848799999803305 ], [ 358378.569099999964237, 256791.33500000089407 ], [ 358380.030799999833107, 256777.616999998688698 ], [ 358381.8412000015378, 256754.411499999463558 ], [ 358385.386500000953674, 256716.865899998694658 ], [ 358386.255800001323223, 256709.484700001776218 ], [ 358364.460299998521805, 256699.679200001060963 ], [ 358354.935199998319149, 256700.102600000798702 ], [ 358354.935199998319149, 256735.4510000012815 ], [ 358354.851499997079372, 256751.446199998259544 ], [ 358354.723600000143051, 256775.879399999976158 ], [ 358353.876900002360344, 256824.562800001353025 ], [ 358354.300200000405312, 256843.401200000196695 ], [ 358360.109300002455711, 256844.364000000059605 ], [ 358367.377099998295307, 256845.56870000064373 ], [ 358368.612899996340275, 256792.722300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9391841, "LATITUDE": 18.34050773, "OBJECTID_1": 11340, "PARCEL_NO_": "105304022300", "Tax_Legal_": "KRONP GADE/FREEWAY CROWN PRINCE QTR", "Name": "ITT COMMUNICATIONS INC", "Address": "PO Box 192830", "City": "San Juan", "State": "Puerto Rico", "Zip": 919, "Country": "United States", "Land_Value": 20700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.91874333300001, "SHAPE_Area": 380.07629991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357929.041400000452995, 256804.534400001168251 ], [ 357933.804799996316433, 256718.658300001174212 ], [ 357930.590300001204014, 256717.36540000140667 ], [ 357925.751400001347065, 256812.106800001114607 ], [ 357923.874399997293949, 256843.12220000103116 ], [ 357927.115900002419949, 256841.2489 ], [ 357928.080399997532368, 256822.680599998682737 ], [ 357929.041400000452995, 256804.534400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302225800", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 25", "ACRE": null, "LONGITUDE": -64.93710873000001, "LATITUDE": 18.34096639, "OBJECTID_1": 10270, "PARCEL_NO_": "105302225800", "Tax_Legal_": "KRONPRINDSENS GADE 25 CROWN PRINCE QUARTER", "Name": "HENDERSON, E & ROSTON, E", "Address": "13727 170th St", "City": "Jamaica", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 28400, "Improved_V": 88700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.167468042300001, "SHAPE_Area": 210.328428288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358139.183200001716614, 256842.1402000002563 ], [ 358148.034699998795986, 256844.323600001633167 ], [ 358148.050899997353554, 256842.423900000751019 ], [ 358156.582299999892712, 256821.641399998217821 ], [ 358148.327299997210503, 256818.889800000935793 ], [ 358139.183200001716614, 256842.1402000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9352611, "LATITUDE": 18.34045734, "OBJECTID_1": 11375, "PARCEL_NO_": "105304050300", "Tax_Legal_": "78&79 KRONPRINDSENS GADE CROWN PRINCE QTR", "Name": "SPENCELEY REALTY CORPORATION", "Address": "PO Box 403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 312800, "Improved_V": 1031300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 319.96064894099999, "SHAPE_Area": 3016.0239001899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358354.935199998319149, 256735.4510000012815 ], [ 358354.935199998319149, 256700.102600000798702 ], [ 358347.526900000870228, 256701.160900000482798 ], [ 358341.811899997293949, 256706.875900000333786 ], [ 358338.636900000274181, 256710.262600000947714 ], [ 358335.885200001299381, 256717.670899998396635 ], [ 358334.315499998629093, 256748.534099999815226 ], [ 358328.098600000143051, 256839.461100000888109 ], [ 358347.253499999642372, 256842.341499999165535 ], [ 358354.300200000405312, 256843.401200000196695 ], [ 358353.876900002360344, 256824.562800001353025 ], [ 358354.723600000143051, 256775.879399999976158 ], [ 358354.851499997079372, 256751.446199998259544 ], [ 358354.935199998319149, 256735.4510000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302421600", "MAP": null, "PARCEL_NAM": "CROWN PRINCE ST 23", "ACRE": null, "LONGITUDE": -64.93689503, "LATITUDE": 18.34098572, "OBJECTID_1": 10721, "PARCEL_NO_": "105302421600", "Tax_Legal_": "CROWN PRINCE ST 23 CROWN PRINCE QUARTER", "Name": "DIOCESE OF ST THOMAS IN THE VI INC", "Address": "PO Box 303710", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 56400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.816224999200003, "SHAPE_Area": 143.950083038 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358163.399599999189377, 256839.171999998390675 ], [ 358173.856499999761581, 256842.212900001555681 ], [ 358176.796499997377396, 256828.626499999314547 ], [ 358168.118199996650219, 256825.239799998700619 ], [ 358163.399599999189377, 256839.171999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93414585, "LATITUDE": 18.34097987, "OBJECTID_1": 10825, "PARCEL_NO_": "105302471200", "Tax_Legal_": "CURACOA GADE 1 CROWN PRINCE QTR", "Name": "DUDLEY, G. H. T. , GRANT, R. & WILLIAM", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8000, "Improved_V": 62000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.627348035099999, "SHAPE_Area": 97.576808946599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358457.761399999260902, 256829.878499999642372 ], [ 358455.03320000320673, 256839.775800000876188 ], [ 358464.355700001120567, 256841.685699999332428 ], [ 358466.862800002098083, 256831.36259999871254 ], [ 358457.761399999260902, 256829.878499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93426659, "LATITUDE": 18.34096342, "OBJECTID_1": 10824, "PARCEL_NO_": "105302471100", "Tax_Legal_": "CURACOA STRAEDE 2 KRONPRINDSENS QTR", "Name": "DUDLEY, G. H. T. GRANT, R. & WILLIAMS", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37200, "Improved_V": 246200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.083298319299999, "SHAPE_Area": 180.34394336700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358456.352200001478195, 256829.648699998855591 ], [ 358441.153399996459484, 256827.170400001108646 ], [ 358438.609099999070168, 256836.712900001555681 ], [ 358445.261600002646446, 256838.570000000298023 ], [ 358454.643700003623962, 256841.189100001007318 ], [ 358455.03320000320673, 256839.775800000876188 ], [ 358457.761399999260902, 256829.878499999642372 ], [ 358456.352200001478195, 256829.648699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302223600", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 28AA", "ACRE": null, "LONGITUDE": -64.93748572, "LATITUDE": 18.34094992, "OBJECTID_1": 10249, "PARCEL_NO_": "105302223600", "Tax_Legal_": "KRONPRINDSENS GADE 28AA CROWN PRINCE QUARTER", "Name": "CALLWOOD, AGNES & OTHERS", "Address": "PO Box 304513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10100, "Improved_V": 47100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.248202503999998, "SHAPE_Area": 182.429436216 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358100.420500002801418, 256835.866200000047684 ], [ 358110.557099997997284, 256839.245000001043081 ], [ 358115.779899999499321, 256823.380499999970198 ], [ 358105.506899997591972, 256819.699799999594688 ], [ 358103.023299999535084, 256827.278799999505281 ], [ 358100.420500002801418, 256835.866200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302233800", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 35B", "ACRE": null, "LONGITUDE": -64.93865816, "LATITUDE": 18.34099138, "OBJECTID_1": 10308, "PARCEL_NO_": "105302233800", "Tax_Legal_": "KRONPRINDSENS GADE 35B CROWN PRINCE QTR", "Name": "GOTTLIEB, MARK A", "Address": "3001 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.349876774800002, "SHAPE_Area": 169.78105774100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357990.161100000143051, 256823.822000000625849 ], [ 357973.961099997162819, 256832.344200000166893 ], [ 357978.741499997675419, 256839.138300001621246 ], [ 357990.834299996495247, 256839.448399998247623 ], [ 357990.161100000143051, 256823.822000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302223800", "MAP": "F9-2330-T68", "PARCEL_NAM": "KRONPRINDSENS GADE 33", "ACRE": ".09", "LONGITUDE": -64.93844291000001, "LATITUDE": 18.34088605, "OBJECTID_1": 10251, "PARCEL_NO_": "105302223800", "Tax_Legal_": "KRONPRINDSENS GADE 33 CROWN PRINCE QUARTER", "Name": "RED BALL GROCERY, INC.", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56800, "Improved_V": 176900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.512146353399999, "SHAPE_Area": 395.387715802 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357996.781800001859665, 256833.557399999350309 ], [ 358003.977700002491474, 256830.7956000007689 ], [ 358006.676500000059605, 256831.668800000101328 ], [ 358007.752999998629093, 256831.185600001364946 ], [ 358020.614799998700619, 256825.412399999797344 ], [ 358015.246699996292591, 256813.472600001841784 ], [ 358012.902500003576279, 256808.488400001078844 ], [ 358000.633799999952316, 256814.545099999755621 ], [ 357995.280100002884865, 256817.188099998980761 ], [ 357996.781800001859665, 256833.557399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302470400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93460979, "LATITUDE": 18.34098081, "OBJECTID_1": 10817, "PARCEL_NO_": "105302470400", "Tax_Legal_": "SPANIOL STRAEDE 1 CROWN PRINCE QTR", "Name": "HECTOR, PATRICK & NILDA", "Address": "PO Box 10665", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14700, "Improved_V": 151800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.594040067200002, "SHAPE_Area": 53.359374556200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358416.029100000858307, 256835.168400000780821 ], [ 358416.85700000077486, 256832.642099998891354 ], [ 358408.801100000739098, 256831.731800001114607 ], [ 358407.971400000154972, 256834.469200000166893 ], [ 358407.13629999756813, 256837.839800000190735 ], [ 358415.186800003051758, 256839.383400000631809 ], [ 358416.029100000858307, 256835.168400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302472100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93555042, "LATITUDE": 18.34096348, "OBJECTID_1": 10834, "PARCEL_NO_": "105302472100", "Tax_Legal_": "KRONPRINDSENS GADE 77AA CROWN PRINCE QUARTER", "Name": "GREAUX'S REALTY CORP", "Address": "BOX 2455", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57400, "Improved_V": 360600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.702348432799994, "SHAPE_Area": 274.37527509199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358303.026500001549721, 256824.482799999415874 ], [ 358302.103299997746944, 256838.196299999952316 ], [ 358322.241400003433228, 256840.683200001716614 ], [ 358323.160999998450279, 256827.391800001263618 ], [ 358303.026500001549721, 256824.482799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302223500", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 29B", "ACRE": null, "LONGITUDE": -64.93759716, "LATITUDE": 18.34096769, "OBJECTID_1": 10248, "PARCEL_NO_": "105302223500", "Tax_Legal_": "KRONPRINDSENS GADE 29B CROWN PRINCE QTR", "Name": "DIEMS, IRA", "Address": "PO BOX 11626", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6800, "Improved_V": 63800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.848616476700002, "SHAPE_Area": 125.103077611 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358103.023299999535084, 256827.278799999505281 ], [ 358093.374499998986721, 256824.033399999141693 ], [ 358089.242200002074242, 256835.820900000631809 ], [ 358095.680100001394749, 256837.351199999451637 ], [ 358099.704499997198582, 256838.228500001132488 ], [ 358103.023299999535084, 256827.278799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302470900", "MAP": null, "PARCEL_NAM": "CURACOA GADE 4", "ACRE": "1,120 sq ft", "LONGITUDE": -64.9344745, "LATITUDE": 18.34093823, "OBJECTID_1": 10822, "PARCEL_NO_": "105302470900", "Tax_Legal_": "CURACOA GADE 4 CROWN PRINCE QUARTER", "Name": "SAID, SALTIEH", "Address": "PO Box 303439", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25200, "Improved_V": 161900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.272250691399996, "SHAPE_Area": 121.09269895600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358422.638099998235703, 256824.141399998217821 ], [ 358420.082800000905991, 256835.889299999922514 ], [ 358429.716600000858307, 256837.60249999910593 ], [ 358430.027900002896786, 256836.402899999171495 ], [ 358432.778599999845028, 256825.804800000041723 ], [ 358423.060400001704693, 256824.220199998468161 ], [ 358422.638099998235703, 256824.141399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302470500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.934777, "LATITUDE": 18.34095593, "OBJECTID_1": 10818, "PARCEL_NO_": "105302470500", "Tax_Legal_": "CURACOA STRAEDE 1 CROWN PRINCE QUARTER", "Name": "GOLDSCHMIDT, A. & TENNEHAUS, A", "Address": "1 Curacoa Straede", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.3620882096, "SHAPE_Area": 47.232256251800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358398.311800003051758, 256832.490299999713898 ], [ 358398.331600002944469, 256830.168400000780821 ], [ 358391.087399996817112, 256828.631499998271465 ], [ 358390.227099999785423, 256834.95719999819994 ], [ 358397.473099999129772, 256836.283100001513958 ], [ 358398.311800003051758, 256832.490299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93568371000001, "LATITUDE": 18.34043181, "OBJECTID_1": 11374, "PARCEL_NO_": "105304050100", "Tax_Legal_": "KRONPRINDSENS GADE 76 CROWN PRINCE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 807300, "Improved_V": 2903400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.92453835399999, "SHAPE_Area": 2074.6537217 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358312.028300002217293, 256714.365600001066923 ], [ 358296.733499996364117, 256711.285100001841784 ], [ 358293.385999999940395, 256725.612100001424551 ], [ 358286.797799997031689, 256836.38230000063777 ], [ 358302.103299997746944, 256838.196299999952316 ], [ 358303.026500001549721, 256824.482799999415874 ], [ 358307.487800002098083, 256774.067899998277426 ], [ 358312.028300002217293, 256714.365600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302226300", "MAP": "D9-6865-T000", "PARCEL_NAM": "30B", "ACRE": "4,004 sq ft", "LONGITUDE": -64.93770171, "LATITUDE": 18.34088824, "OBJECTID_1": 10273, "PARCEL_NO_": "105302226300", "Tax_Legal_": "30B KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "ALEXANDER, TESSA J.", "Address": "PO Box 502211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 60100, "Improved_V": 162200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.072337201300002, "SHAPE_Area": 388.85295069699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358096.840499997138977, 256813.361000001430511 ], [ 358081.33669999986887, 256808.931000001728535 ], [ 358078.108499996364117, 256817.575699999928474 ], [ 358076.440099999308586, 256824.105900000780821 ], [ 358073.951099999248981, 256832.318199999630451 ], [ 358089.242200002074242, 256835.820900000631809 ], [ 358093.374499998986721, 256824.033399999141693 ], [ 358096.840499997138977, 256813.361000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302225000", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 26A", "ACRE": null, "LONGITUDE": -64.93723554, "LATITUDE": 18.34090512, "OBJECTID_1": 10263, "PARCEL_NO_": "105302225000", "Tax_Legal_": "KRONPRINDSENS GADE 26A CROWN PRINCE QTR", "Name": "MCBEAN, YVETTE M. (TRUSTEE)", "Address": "PO Box 731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36400, "Improved_V": 55000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.878715470099998, "SHAPE_Area": 210.230324846 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358142.534400001168251, 256817.874899998307228 ], [ 358132.167400002479553, 256813.796300001442432 ], [ 358126.370399996638298, 256831.691799998283386 ], [ 358137.146099999547005, 256835.552700001746416 ], [ 358142.534400001168251, 256817.874899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302470600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93467805, "LATITUDE": 18.34090077, "OBJECTID_1": 10819, "PARCEL_NO_": "105302470600", "Tax_Legal_": "CURACOA STRAEDE 5&6 CROWN PRINCE QUARTER", "Name": "KHALIL, FARIS M. & AMAL A. (TRUSTEES)", "Address": "PO Box 301800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59200, "Improved_V": 308000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.446410827299999, "SHAPE_Area": 293.98455415799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358419.75959999859333, 256823.604600001126528 ], [ 358393.019799999892712, 256818.618000000715256 ], [ 358391.087399996817112, 256828.631499998271465 ], [ 358398.331600002944469, 256830.168400000780821 ], [ 358398.311800003051758, 256832.490299999713898 ], [ 358407.971400000154972, 256834.469200000166893 ], [ 358408.801100000739098, 256831.731800001114607 ], [ 358416.85700000077486, 256832.642099998891354 ], [ 358419.75959999859333, 256823.604600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401431000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93211962, "LATITUDE": 18.34074741, "OBJECTID_1": 12109, "PARCEL_NO_": "105401431000", "Tax_Legal_": "DRONNINGENS GADE 32B QUEENS QTR", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 382700, "Improved_V": 1189900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.160714687000002, "SHAPE_Area": 188.95652790299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358666.156999997794628, 256816.132399998605251 ], [ 358680.827200002968311, 256819.618599999696016 ], [ 358684.163900002837181, 256806.98759999871254 ], [ 358670.479800000786781, 256803.886399999260902 ], [ 358666.156999997794628, 256816.132399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93888593, "LATITUDE": 18.34052428, "OBJECTID_1": 11329, "PARCEL_NO_": "105304020700", "Tax_Legal_": "KRONPRINDSENS GADE 52 CROWN PRINCE QUARTER", "Name": "GONZALO CALO ENTP. INC.", "Address": "PO Box 301797", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 357000, "Improved_V": 577700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.75841703500001, "SHAPE_Area": 2430.30734295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357983.538999997079372, 256749.2516999989748 ], [ 357978.722699999809265, 256746.679200001060963 ], [ 357953.840300001204014, 256733.176699999719858 ], [ 357942.743299998342991, 256805.279800001531839 ], [ 357940.16610000282526, 256823.83500000089407 ], [ 357939.287900000810623, 256832.271499998867512 ], [ 357978.212099999189377, 256806.625599998980761 ], [ 357971.045199997723103, 256796.012299999594688 ], [ 357983.538999997079372, 256749.2516999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302223200", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 31BB", "ACRE": null, "LONGITUDE": -64.93803377, "LATITUDE": 18.34092186, "OBJECTID_1": 10246, "PARCEL_NO_": "105302223200", "Tax_Legal_": "KRONPRINDSENS GADE 31BB CROWN PRINCE QUARTER", "Name": "BEDMINSTER, LEATITIA & FRANCIS, ROSAMONDE", "Address": "PO Box 8975", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9700, "Improved_V": 62100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.4691703158, "SHAPE_Area": 174.262890685 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358044.227200001478195, 256819.19819999858737 ], [ 358042.722599998116493, 256818.76069999858737 ], [ 358039.946299999952316, 256827.250500001013279 ], [ 358041.732699997723103, 256828.043699998408556 ], [ 358057.007700003683567, 256833.446100000292063 ], [ 358060.313900001347065, 256823.973900001496077 ], [ 358044.227200001478195, 256819.19819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302233900", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 35A", "ACRE": null, "LONGITUDE": -64.93868645000001, "LATITUDE": 18.34089298, "OBJECTID_1": 10309, "PARCEL_NO_": "105302233900", "Tax_Legal_": "KRONPRINDSENS GADE 35A CROWN PRINCE QTR", "Name": "SOTO, ARTURO & HERNINIA", "Address": "PO BOX 2668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17900, "Improved_V": 117000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.803330967700006, "SHAPE_Area": 229.44006288899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357969.191600002348423, 256824.283599998801947 ], [ 357973.961099997162819, 256832.344200000166893 ], [ 357990.161100000143051, 256823.822000000625849 ], [ 357990.277999997138977, 256810.101799998432398 ], [ 357969.191600002348423, 256824.283599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304041000", "MAP": null, "PARCEL_NAM": "73A KRONPRINDSENS GADE", "ACRE": "8,674 sq ft", "LONGITUDE": -64.93603765, "LATITUDE": 18.34021507, "OBJECTID_1": 11359, "PARCEL_NO_": "105304041000", "Tax_Legal_": "73 KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "SPENCELEY, RICHARD c.", "Address": "PO Box 308790", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 239400, "Improved_V": 1316900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.96005897399999, "SHAPE_Area": 833.82220786599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358251.124499998986721, 256780.152899999171495 ], [ 358263.947700001299381, 256782.504799999296665 ], [ 358271.631800003349781, 256723.534200001507998 ], [ 358272.401799999177456, 256718.049100000411272 ], [ 358271.836900003254414, 256717.988699998706579 ], [ 358259.5945999994874, 256716.680700000375509 ], [ 358251.124499998986721, 256780.152899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304041800", "MAP": null, "PARCEL_NAM": "72 REM KRONPRINSENS GADE", "ACRE": "16,426 sq ft", "LONGITUDE": -64.9362065, "LATITUDE": 18.3405799, "OBJECTID_1": 11366, "PARCEL_NO_": "105304041800", "Tax_Legal_": "72-1 KRONPRINDSENS GADE KRONPRINDSENS QTR.", "Name": "KRONPRINDSENS PASSAGE LLC", "Address": "7615 SOUTHDOWN RD", "City": "ALEXANDRIA", "State": "Virginia", "Zip": 22308, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.759773252, "SHAPE_Area": 1023.75966869 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358231.509700000286102, 256829.472199998795986 ], [ 358244.311200000345707, 256831.209800001233816 ], [ 358255.196599997580051, 256749.637800000607967 ], [ 358242.369800001382828, 256747.650699999183416 ], [ 358241.043700002133846, 256761.381000000983477 ], [ 358239.782200001180172, 256774.443500000983477 ], [ 358238.884800001978874, 256781.316899999976158 ], [ 358231.509700000286102, 256829.472199998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302224900", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 27A", "ACRE": null, "LONGITUDE": -64.937336, "LATITUDE": 18.34086928, "OBJECTID_1": 10262, "PARCEL_NO_": "105302224900", "Tax_Legal_": "KRONPRINDSENS GADE 27A CROWN PRINCE QUARTER", "Name": "RICHARDSON, MICHAEL A.", "Address": "PO Box 303846", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13600, "Improved_V": 84800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.665324872699998, "SHAPE_Area": 215.47648193699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358121.691299997270107, 256809.582800000905991 ], [ 358115.620600000023842, 256827.680100001394749 ], [ 358115.920699998736382, 256827.806600000709295 ], [ 358126.370399996638298, 256831.691799998283386 ], [ 358132.167400002479553, 256813.796300001442432 ], [ 358122.523999996483326, 256809.917700000107288 ], [ 358121.691299997270107, 256809.582800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301110900", "MAP": "G9-2928-T79", "PARCEL_NAM": "200-3H", "ACRE": "10,033 sq ft", "LONGITUDE": -64.9460908, "LATITUDE": 18.34081113, "OBJECTID_1": 9401, "PARCEL_NO_": "105301110900", "Tax_Legal_": "ALTONA & WELGUNST 200-3H KRONP QTR.", "Name": "MARTIN, LYDIA H. (LIFE ESTATE)", "Address": "P.O. BOX 3696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55500, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.1467568, "SHAPE_Area": 877.18203975699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357211.473600000143051, 256792.750799998641014 ], [ 357211.219099998474121, 256791.280799999833107 ], [ 357190.602399997413158, 256791.752099998295307 ], [ 357182.103699997067451, 256792.714200001209974 ], [ 357182.430200003087521, 256794.412999998778105 ], [ 357186.015299998223782, 256822.259899999946356 ], [ 357213.793200001120567, 256821.223400000482798 ], [ 357214.9949000030756, 256821.167700000107288 ], [ 357214.508299998939037, 256815.151599999517202 ], [ 357212.99099999666214, 256803.951200000941753 ], [ 357212.209799997508526, 256800.989500001072884 ], [ 357211.473600000143051, 256792.750799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040600", "MAP": null, "PARCEL_NAM": "69 REM KRONPRINDSENS GADE", "ACRE": "28,008 sq ft", "LONGITUDE": -64.93652954, "LATITUDE": 18.34041633, "OBJECTID_1": 11356, "PARCEL_NO_": "105304040600", "Tax_Legal_": "KRONPRINDSENS GADE 69 CROWN PRINCE QTR", "Name": "BERNE CORPORATION", "Address": "P.O.BOX 3560", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 373400, "Improved_V": 1700500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.30740768700002, "SHAPE_Area": 3125.1704639300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358228.847800001502037, 256750.189500000327826 ], [ 358213.610699996352196, 256748.55350000038743 ], [ 358219.012299999594688, 256699.594300001859665 ], [ 358204.254399999976158, 256693.539900001138449 ], [ 358202.88289999961853, 256707.730900000780821 ], [ 358201.671899996697903, 256720.260999999940395 ], [ 358201.049599997699261, 256726.699799999594688 ], [ 358197.874600000679493, 256756.068599998950958 ], [ 358196.684000000357628, 256762.947799999266863 ], [ 358196.374099999666214, 256766.927999999374151 ], [ 358194.964199997484684, 256785.040600001811981 ], [ 358191.692900002002716, 256825.446899998933077 ], [ 358206.475599996745586, 256827.234299998730421 ], [ 358218.724500000476837, 256828.715199999511242 ], [ 358219.489000000059605, 256828.837600000202656 ], [ 358219.802799999713898, 256827.883200000971556 ], [ 358221.204300001263618, 256819.012200001627207 ], [ 358222.659500002861023, 256808.958000000566244 ], [ 358223.115699999034405, 256804.535999998450279 ], [ 358226.423199996352196, 256772.479100000113249 ], [ 358228.847800001502037, 256750.189500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302224700", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 29A", "ACRE": null, "LONGITUDE": -64.93754493, "LATITUDE": 18.3408129, "OBJECTID_1": 10260, "PARCEL_NO_": "105302224700", "Tax_Legal_": "29A KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "JMS MATTHEW LLC", "Address": "123 N Wyoming Ave", "City": "South Orange", "State": "New Jersey", "Zip": 7079, "Country": "United States", "Land_Value": 15500, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.227345613099999, "SHAPE_Area": 244.33277769599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358100.827299997210503, 256801.085200000554323 ], [ 358093.374499998986721, 256824.033399999141693 ], [ 358103.023299999535084, 256827.278799999505281 ], [ 358105.506899997591972, 256819.699799999594688 ], [ 358110.47070000320673, 256804.963799998164177 ], [ 358100.827299997210503, 256801.085200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93181036, "LATITUDE": 18.34083445, "OBJECTID_1": 12113, "PARCEL_NO_": "105401440200", "Tax_Legal_": "DRONNINGENS GADE REM 34&34A QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1833800, "Improved_V": 664000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.070324604200003, "SHAPE_Area": 128.53765767100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358706.859300002455711, 256811.96059999987483 ], [ 358702.218099996447563, 256829.362900000065565 ], [ 358709.924500003457069, 256830.772999998182058 ], [ 358713.297200001776218, 256813.490899998694658 ], [ 358706.859300002455711, 256811.96059999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402140100", "MAP": "MB.B", "PARCEL_NAM": "1 OF 2ND STREET", "ACRE": "0.11", "LONGITUDE": -64.91977254, "LATITUDE": 18.3407954, "OBJECTID_1": 19247, "PARCEL_NO_": "105402140100", "Tax_Legal_": "1 SECOND STREET KINGS QUARTER", "Name": "ZUHKI, NEZAR & JAMIL, F & RUSHDI, Z", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11400, "Improved_V": 98300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.8138150005, "SHAPE_Area": 519.64373553999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359988.428199999034405, 256813.790100000798702 ], [ 359964.973200000822544, 256822.041900001466274 ], [ 359972.073499999940395, 256840.465199999511242 ], [ 359973.678999997675419, 256841.322700001299381 ], [ 359995.51410000026226, 256833.901999998837709 ], [ 359988.428199999034405, 256813.790100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93552881, "LATITUDE": 18.34067484, "OBJECTID_1": 11377, "PARCEL_NO_": "105304050800", "Tax_Legal_": "KRONP GADE 77A CROWN PRINCE QUARTER", "Name": "GREAUX'S REALTY CORP", "Address": "P O BX 2455", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33800, "Improved_V": 488000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.607530137, "SHAPE_Area": 1011.71702663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358326.821400001645088, 256776.337099999189377 ], [ 358307.487800002098083, 256774.067899998277426 ], [ 358303.026500001549721, 256824.482799999415874 ], [ 358323.160999998450279, 256827.391800001263618 ], [ 358326.821400001645088, 256776.337099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302224300", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 31B", "ACRE": null, "LONGITUDE": -64.93799143, "LATITUDE": 18.340792, "OBJECTID_1": 10256, "PARCEL_NO_": "105302224300", "Tax_Legal_": "KRONPRINDSENS GADE 31B CROWN PRINCE QUARTER", "Name": "SIMMONS, AL J. & SHARON A.", "Address": "123 N Wyoming Ave", "City": "South Orange", "State": "New Jersey", "Zip": 7079, "Country": "United States", "Land_Value": 19500, "Improved_V": 64000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.679767277099998, "SHAPE_Area": 380.30100923200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358049.23589999973774, 256799.185300000011921 ], [ 358049.642300002276897, 256797.600499998778105 ], [ 358042.722599998116493, 256818.76069999858737 ], [ 358044.227200001478195, 256819.19819999858737 ], [ 358060.313900001347065, 256823.973900001496077 ], [ 358061.960699997842312, 256819.976599998772144 ], [ 358063.618199996650219, 256814.712900001555681 ], [ 358066.128899998962879, 256803.967700000852346 ], [ 358049.23589999973774, 256799.185300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302224500", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 31D&E", "ACRE": null, "LONGITUDE": -64.93784383000001, "LATITUDE": 18.34085925, "OBJECTID_1": 10258, "PARCEL_NO_": "105302224500", "Tax_Legal_": "KRONPRINDSENS GADE 31D&E CROWN PRINCE QTR", "Name": "JAMES BEVERHOUDT, CLEONE, KEITH JAMES & WEBB, C & OTHERS", "Address": "5527 Sara Creek Ln", "City": "SUGAR HILL", "State": "Georgia", "Zip": 30518, "Country": "United States", "Land_Value": 15500, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.085548390600003, "SHAPE_Area": 91.230192537600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358078.108499996364117, 256817.575699999928474 ], [ 358063.618199996650219, 256814.712900001555681 ], [ 358061.960699997842312, 256819.976599998772144 ], [ 358076.440099999308586, 256824.105900000780821 ], [ 358078.108499996364117, 256817.575699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402130300", "MAP": "MB.B", "PARCEL_NAM": "3 OF 1ST TSTREET", "ACRE": "0.11", "LONGITUDE": -64.92033938, "LATITUDE": 18.34080749, "OBJECTID_1": 19240, "PARCEL_NO_": "105402130300", "Tax_Legal_": "3 FIRST STREET KINGS QUARTER", "Name": "HENDRICKS, CECILIA, CLEMENT, BARBARA NEWTON & ALOMA K. NEWTON", "Address": "275 South St", "City": "New York", "State": "New York", "Zip": 10002, "Country": "United States", "Land_Value": 12500, "Improved_V": 83900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.645371532799999, "SHAPE_Area": 295.30863612100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359933.75280000269413, 256830.430399999022484 ], [ 359929.820100001990795, 256818.788100000470877 ], [ 359907.173299998044968, 256826.835400000214577 ], [ 359911.105899997055531, 256838.477699998766184 ], [ 359933.75280000269413, 256830.430399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302224800", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 28A", "ACRE": null, "LONGITUDE": -64.93743929, "LATITUDE": 18.34081199, "OBJECTID_1": 10261, "PARCEL_NO_": "105302224800", "Tax_Legal_": "KRONPRINDSENS GADE 28A CROWN PRINCE QUARTER", "Name": "FARRINGTON, SIMON", "Address": "9R Gamble Nrdsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9700, "Improved_V": 27100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.491066969800002, "SHAPE_Area": 167.32373686299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358120.638300001621246, 256809.156399998813868 ], [ 358110.47070000320673, 256804.963799998164177 ], [ 358105.506899997591972, 256819.699799999594688 ], [ 358115.779899999499321, 256823.380499999970198 ], [ 358120.638300001621246, 256809.156399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304060300", "MAP": "B9-305-T70", "PARCEL_NAM": "CURACOA GADE 11A", "ACRE": ".31", "LONGITUDE": -64.93402811, "LATITUDE": 18.34022739, "OBJECTID_1": 11383, "PARCEL_NO_": "105304060300", "Tax_Legal_": "CURACOA GADE 11 & 11A 1/3 OF 1/4 UNDIV INT", "Name": "CHRISTENSEN, WILLIAM C", "Address": "PO Box 7427", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 397300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.672190452, "SHAPE_Area": 1315.00558191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358457.64360000193119, 256776.294700000435114 ], [ 358481.429099999368191, 256780.14809999987483 ], [ 358484.131399996578693, 256768.336500000208616 ], [ 358491.719099998474121, 256729.557399999350309 ], [ 358465.141400001943111, 256725.751299999654293 ], [ 358457.64360000193119, 256776.294700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304060200", "MAP": "D9-9324-T019", "PARCEL_NAM": "CURACAO GADE 9 & 10", "ACRE": "0.53", "LONGITUDE": -64.93427396, "LATITUDE": 18.34041009, "OBJECTID_1": 11382, "PARCEL_NO_": "105304060200", "Tax_Legal_": "9&10 CURACOA GADE CROWN PRINCE QTR.", "Name": "OLE' WIFE, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 444600, "Improved_V": 760100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.56057639700001, "SHAPE_Area": 2060.9625735200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358456.30969999730587, 256721.245999999344349 ], [ 358446.64469999819994, 256719.900400001555681 ], [ 358444.925300002098083, 256730.080099999904633 ], [ 358429.660700000822544, 256820.453000001609325 ], [ 358450.597900003194809, 256823.790699999779463 ], [ 358465.141400001943111, 256725.751299999654293 ], [ 358465.525799997150898, 256722.574099998921156 ], [ 358456.30969999730587, 256721.245999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302224000", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 34", "ACRE": null, "LONGITUDE": -64.93846695000001, "LATITUDE": 18.34072618, "OBJECTID_1": 10253, "PARCEL_NO_": "105302224000", "Tax_Legal_": "KRONPRINDSENS GADE 34 CROWN PRINCE QUARTER", "Name": "34 KRONPRINDSNES GADE LLC", "Address": "PO Box 301826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37000, "Improved_V": 333300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.853706136500001, "SHAPE_Area": 219.48934698299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358013.344999998807907, 256797.766600001603365 ], [ 358013.086199998855591, 256793.486299999058247 ], [ 358011.591300003230572, 256793.972300000488758 ], [ 358009.209799997508526, 256795.07880000025034 ], [ 358003.609899997711182, 256798.121399998664856 ], [ 357999.809199996292591, 256800.560199998319149 ], [ 357994.83669999986887, 256803.917399998754263 ], [ 357995.522200003266335, 256814.312399998307228 ], [ 358013.924099996685982, 256805.268399998545647 ], [ 358013.961300000548363, 256805.250100001692772 ], [ 358013.915100000798702, 256805.151099998503923 ], [ 358013.344999998807907, 256797.766600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402140200", "MAP": "MB.B", "PARCEL_NAM": "2 & 4A OF 3RD STREET", "ACRE": "0.13", "LONGITUDE": -64.91955495000001, "LATITUDE": 18.34072148, "OBJECTID_1": 19248, "PARCEL_NO_": "105402140200", "Tax_Legal_": "2 & 4A THIRD STREET, EST. THOMAS KINGS QUARTER", "Name": "PROCTOR, LUCIAN A. & LUCIANA V", "Address": "PO Box 305336", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13800, "Improved_V": 69600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.236020654399994, "SHAPE_Area": 518.87744123100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360011.881399996578693, 256805.749400001019239 ], [ 359988.428199999034405, 256813.790100000798702 ], [ 359995.51410000026226, 256833.901999998837709 ], [ 360016.541199997067451, 256826.6858000010252 ], [ 360017.379900000989437, 256822.89299999922514 ], [ 360011.881399996578693, 256805.749400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302224600", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 31A", "ACRE": null, "LONGITUDE": -64.93780568, "LATITUDE": 18.34073044, "OBJECTID_1": 10259, "PARCEL_NO_": "105302224600", "Tax_Legal_": "31A KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "LOCKHART, JU-ANA Y., BROWN, RAMOND & OMAR III", "Address": "PO Box 10902", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55200, "Improved_V": 468800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.925333791900002, "SHAPE_Area": 366.62745627599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358069.447599999606609, 256793.017900001257658 ], [ 358066.128899998962879, 256803.967700000852346 ], [ 358063.618199996650219, 256814.712900001555681 ], [ 358078.108499996364117, 256817.575699999928474 ], [ 358086.360399998724461, 256795.478399999439716 ], [ 358069.447599999606609, 256793.017900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304060100", "MAP": null, "PARCEL_NAM": "CURACAO 7 & 8", "ACRE": null, "LONGITUDE": -64.93454257, "LATITUDE": 18.34034502, "OBJECTID_1": 11381, "PARCEL_NO_": "105304060100", "Tax_Legal_": "CURACOA GADE 7 8 CROWN PRINCE QTR", "Name": "CHINNERY FOOD O MAT", "Address": "PO Box 150", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 700300, "Improved_V": 1688700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.45322544800001, "SHAPE_Area": 3847.3692465700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358429.660700000822544, 256820.453000001609325 ], [ 358446.64469999819994, 256719.900400001555681 ], [ 358424.899499997496605, 256716.767099998891354 ], [ 358425.720200002193451, 256715.08500000089407 ], [ 358406.384800001978874, 256713.026900000870228 ], [ 358395.059399999678135, 256811.937100000679493 ], [ 358429.660700000822544, 256820.453000001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040200", "MAP": null, "PARCEL_NAM": "65", "ACRE": null, "LONGITUDE": -64.93693745, "LATITUDE": 18.34055839, "OBJECTID_1": 11352, "PARCEL_NO_": "105304040200", "Tax_Legal_": "KRONPRINDSENS GADE 65 CROWN PRINCE QUARTER", "Name": "GEORGE, ALBERT", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.290070789, "SHAPE_Area": 534.81983352099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358176.959299996495247, 256768.144299998879433 ], [ 358166.135099999606609, 256764.762899998575449 ], [ 358154.012000001966953, 256791.978000000119209 ], [ 358165.79389999806881, 256796.216699998825788 ], [ 358160.311599999666214, 256814.877599999308586 ], [ 358162.792900003492832, 256815.735700000077486 ], [ 358166.007299996912479, 256817.028499998152256 ], [ 358176.959299996495247, 256768.144299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402130400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92005846000001, "LATITUDE": 18.34090225, "OBJECTID_1": 19241, "PARCEL_NO_": "105402130400", "Tax_Legal_": "SECOND STREET 4 KINGS QUARTER", "Name": "ALI, FAIKA J", "Address": "PO Box 9068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.221081980999998, "SHAPE_Area": 503.96201649900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359958.567400000989437, 256825.738699998706579 ], [ 359934.985200002789497, 256833.977000001817942 ], [ 359935.458700001239777, 256835.339800000190735 ], [ 359941.623499996960163, 256853.081799998879433 ], [ 359962.652400001883507, 256845.654599998146296 ], [ 359964.275799997150898, 256844.401299998164177 ], [ 359964.299199998378754, 256841.657299999147654 ], [ 359958.987999998033047, 256826.906700000166893 ], [ 359958.567400000989437, 256825.738699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93948211, "LATITUDE": 18.34032358, "OBJECTID_1": 11327, "PARCEL_NO_": "105304020100", "Tax_Legal_": "KRONP GADE 48B,49BB,50BB&C CROWN PRINCE QTR", "Name": "V. I. EMP. RET. SYSTEM", "Address": "BOX 2336", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 658900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.75555000999998, "SHAPE_Area": 6263.2010489599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357930.590300001204014, 256717.36540000140667 ], [ 357876.743600003421307, 256696.23759999871254 ], [ 357871.781700000166893, 256710.76240000128746 ], [ 357870.070200003683567, 256722.358500000089407 ], [ 357865.303099997341633, 256808.656800001859665 ], [ 357894.317800000309944, 256810.371899999678135 ], [ 357925.751400001347065, 256812.106800001114607 ], [ 357930.590300001204014, 256717.36540000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402130500", "MAP": "MB.B", "PARCEL_NAM": "5 OF 1ST STREET", "ACRE": "0.11", "LONGITUDE": -64.92038893, "LATITUDE": 18.34067781, "OBJECTID_1": 19242, "PARCEL_NO_": "105402130500", "Tax_Legal_": "5 FIRST STREET KINGS QUARTER", "Name": "JACKSON, LAWRENCE H. & LEONE D.", "Address": "PO BOX 306291", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13100, "Improved_V": 90900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.613031090600003, "SHAPE_Area": 439.135026342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359929.820100001990795, 256818.788100000470877 ], [ 359923.515299998223782, 256801.637899998575449 ], [ 359900.868400000035763, 256809.685199998319149 ], [ 359907.173299998044968, 256826.835400000214577 ], [ 359929.820100001990795, 256818.788100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302224100", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 32B", "ACRE": null, "LONGITUDE": -64.93824728, "LATITUDE": 18.34066335, "OBJECTID_1": 10254, "PARCEL_NO_": "105302224100", "Tax_Legal_": "KRONPRINDSENS GADE 32B CROWN PRINCE QUARTER", "Name": "CANOVILLE, NATALIE J", "Address": "PO Box 701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34800, "Improved_V": 314600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.669773329199998, "SHAPE_Area": 301.80715251800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358039.237999998033047, 256800.694499999284744 ], [ 358040.728399999439716, 256788.964899998158216 ], [ 358030.012800000607967, 256790.631799999624491 ], [ 358017.471500001847744, 256792.060600001364946 ], [ 358015.638800002634525, 256792.656399998813868 ], [ 358017.605800002813339, 256806.557199999690056 ], [ 358039.237999998033047, 256800.694499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93869407, "LATITUDE": 18.3404885, "OBJECTID_1": 11330, "PARCEL_NO_": "105304020800", "Tax_Legal_": "KRONP GADE 53A CROWN PRINCE QTR", "Name": "KIRKETERP, ALBADORE E", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 105100, "Improved_V": 2313000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.535127934, "SHAPE_Area": 447.90205343299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357984.700300000607967, 256802.245700001716614 ], [ 357979.120899997651577, 256794.600699998438358 ], [ 357991.602200001478195, 256749.317699998617172 ], [ 357983.538999997079372, 256749.2516999989748 ], [ 357971.045199997723103, 256796.012299999594688 ], [ 357978.212099999189377, 256806.625599998980761 ], [ 357984.700300000607967, 256802.245700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.937162, "LATITUDE": 18.34064403, "OBJECTID_1": 11350, "PARCEL_NO_": "105304030900", "Tax_Legal_": "63A KRONPRINDSENS GADE CROWN PRINCE QTR", "Name": "VANTERPOOL, D.& A. & MADURO, P & G. & RICHARDSON, D. & HART, E", "Address": "1803 Lauren Pl", "City": "Missouri City", "State": "Texas", "Zip": 77489, "Country": "United States", "Land_Value": 11400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.994534195100002, "SHAPE_Area": 205.525768314 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358142.906599998474121, 256783.697799999266863 ], [ 358133.862700000405312, 256804.099800001829863 ], [ 358142.699799999594688, 256807.971799999475479 ], [ 358150.9391999989748, 256787.352099999785423 ], [ 358142.906599998474121, 256783.697799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93909704, "LATITUDE": 18.34033776, "OBJECTID_1": 11328, "PARCEL_NO_": "105304020300", "Tax_Legal_": "49A,BA,50A&50BA,51A,51AA 51B KROMP GADE", "Name": "I T T COMMUNICATION INC", "Address": "PO Box 192830", "City": "San Juan", "State": "Puerto Rico", "Zip": 919, "Country": "United States", "Land_Value": 197300, "Improved_V": 1400800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.3700913, "SHAPE_Area": 1127.62453224 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357949.873499996960163, 256725.544799998402596 ], [ 357933.804799996316433, 256718.658300001174212 ], [ 357929.041400000452995, 256804.534400001168251 ], [ 357939.518100000917912, 256805.253400001674891 ], [ 357949.873499996960163, 256725.544799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402140300", "MAP": "MB.B", "PARCEL_NAM": "3 OF 2ND STREET", "ACRE": "0.11", "LONGITUDE": -64.91983105, "LATITUDE": 18.34064354, "OBJECTID_1": 19250, "PARCEL_NO_": "105402140300", "Tax_Legal_": "SECOND STREET 3 KINGS QUARTER", "Name": "CARTY, DIONNE & JOSEPH", "Address": "PO Box 8711", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 87200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.221081653799999, "SHAPE_Area": 366.62700856700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359988.428199999034405, 256813.790100000798702 ], [ 359983.708999998867512, 256799.819299999624491 ], [ 359960.254000000655651, 256808.071100000292063 ], [ 359964.973200000822544, 256822.041900001466274 ], [ 359988.428199999034405, 256813.790100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402150100", "MAP": "MB.B", "PARCEL_NAM": "1 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91925581, "LATITUDE": 18.34061241, "OBJECTID_1": 19266, "PARCEL_NO_": "105402150100", "Tax_Legal_": "THIRD STREET 1 KINGS QUARTER", "Name": "ZSNAR MANAGEMENT LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107100, "Improved_V": 833000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.693801797800006, "SHAPE_Area": 534.53599401300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360042.629100002348423, 256793.335499998182058 ], [ 360019.975000001490116, 256802.227099999785423 ], [ 360026.272699996829033, 256820.221599999815226 ], [ 360028.679099999368191, 256821.718899998813868 ], [ 360050.514200001955032, 256814.298300001770258 ], [ 360042.629100002348423, 256793.335499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402130600", "MAP": "F9-3012-T72", "PARCEL_NAM": "6 OF 2ND STREET", "ACRE": "0.11", "LONGITUDE": -64.9201715, "LATITUDE": 18.34060247, "OBJECTID_1": 19243, "PARCEL_NO_": "105402130600", "Tax_Legal_": "SECOND STREET 6 KINGS QTR", "Name": "AMARO, EZEKIEL & ALICE A. B", "Address": "PO Box 11362", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 141200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.273191208300005, "SHAPE_Area": 454.28388963399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359946.970299996435642, 256793.386100001633167 ], [ 359923.515299998223782, 256801.637899998575449 ], [ 359929.820100001990795, 256818.788100000470877 ], [ 359953.275100000202656, 256810.536299999803305 ], [ 359946.970299996435642, 256793.386100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302224400", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 31C", "ACRE": ".04", "LONGITUDE": -64.93794989, "LATITUDE": 18.34065198, "OBJECTID_1": 10257, "PARCEL_NO_": "105302224400", "Tax_Legal_": "KRONPRINDSENS GADE 31C CROWN PRINCE QUARTER", "Name": "JURGEN, SEATTS, LUNA & WATKINS", "Address": "PO Box 55", "City": "Southfield", "State": "Michigan", "Zip": 48037, "Country": "United States", "Land_Value": 28400, "Improved_V": 63400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.169641923299999, "SHAPE_Area": 200.80107067399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358051.999700002372265, 256788.409299999475479 ], [ 358049.23589999973774, 256799.185300000011921 ], [ 358066.128899998962879, 256803.967700000852346 ], [ 358069.447599999606609, 256793.017900001257658 ], [ 358051.999700002372265, 256788.409299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93719836, "LATITUDE": 18.34053595, "OBJECTID_1": 11348, "PARCEL_NO_": "105304030700", "Tax_Legal_": "62 KRONPRINDSENS GADE CROWN PRINCE QTR", "Name": "STORROD, MURIEL & ASHTON", "Address": "2362 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14600, "Improved_V": 32700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.200108952400001, "SHAPE_Area": 312.24569354800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358143.881899997591972, 256763.863000001758337 ], [ 358126.629299998283386, 256801.296399999409914 ], [ 358133.862700000405312, 256804.099800001829863 ], [ 358142.906599998474121, 256783.697799999266863 ], [ 358151.119000002741814, 256766.244199998676777 ], [ 358143.881899997591972, 256763.863000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93853333, "LATITUDE": 18.34043878, "OBJECTID_1": 11331, "PARCEL_NO_": "105304020900", "Tax_Legal_": "KRONPRINDSENS GADE 53B, 54A & B CROWN PRINCE QUARTER", "Name": "KIRKETERP, ALBADORE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.99397274200001, "SHAPE_Area": 1220.04371087 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358004.962399996817112, 256790.168099999427795 ], [ 358020.76969999819994, 256733.0912000015378 ], [ 358015.877899996936321, 256739.383900001645088 ], [ 358010.951899997889996, 256749.687199998646975 ], [ 357991.602200001478195, 256749.317699998617172 ], [ 357979.120899997651577, 256794.600699998438358 ], [ 357984.700300000607967, 256802.245700001716614 ], [ 358004.962399996817112, 256790.168099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302224200", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 32A", "ACRE": null, "LONGITUDE": -64.93808314, "LATITUDE": 18.34063238, "OBJECTID_1": 10255, "PARCEL_NO_": "105302224200", "Tax_Legal_": "KRONPRINDSENS GADE 32A CROWN PRINCE QUARTER", "Name": "CANOVILLE, NATANLIE J", "Address": "PO Box 701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.452194973499999, "SHAPE_Area": 109.856990439 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358049.642300002276897, 256797.600499998778105 ], [ 358051.999700002372265, 256788.409299999475479 ], [ 358040.728399999439716, 256788.964899998158216 ], [ 358039.237999998033047, 256800.694499999284744 ], [ 358049.642300002276897, 256797.600499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301110800", "MAP": "G9-2928-T79", "PARCEL_NAM": "200-3G", "ACRE": "7,579 sq ft", "LONGITUDE": -64.94611981, "LATITUDE": 18.34058247, "OBJECTID_1": 9400, "PARCEL_NO_": "105301110800", "Tax_Legal_": "ALTONA & WELGUNST 200-3G KRONP. QTR", "Name": "HODGE, BENNETT DELORES", "Address": "3277 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51100, "Improved_V": 95500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.154856089899994, "SHAPE_Area": 586.22218443600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357211.219099998474121, 256791.280799999833107 ], [ 357210.705099999904633, 256788.311599999666214 ], [ 357207.641699999570847, 256769.288100000470877 ], [ 357181.814499996602535, 256772.032000001519918 ], [ 357181.658100001513958, 256790.395899999886751 ], [ 357182.103699997067451, 256792.714200001209974 ], [ 357190.602399997413158, 256791.752099998295307 ], [ 357211.219099998474121, 256791.280799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93730219, "LATITUDE": 18.34048966, "OBJECTID_1": 11347, "PARCEL_NO_": "105304030600", "Tax_Legal_": "KRONPRINDSENS GADE 61 CROWN PRINCE QUARTER", "Name": "ACEA, INC.", "Address": "PO Box 301737", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37500, "Improved_V": 54900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.585138476, "SHAPE_Area": 674.86981205899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358125.387100003659725, 256757.800999999046326 ], [ 358113.771499998867512, 256796.124899998307228 ], [ 358126.629299998283386, 256801.296399999409914 ], [ 358143.881899997591972, 256763.863000001758337 ], [ 358125.387100003659725, 256757.800999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402140400", "MAP": "MB.B", "PARCEL_NAM": "4 OF 3RD STREET", "ACRE": "0.09", "LONGITUDE": -64.91961102, "LATITUDE": 18.34056781, "OBJECTID_1": 19251, "PARCEL_NO_": "105402140400", "Tax_Legal_": "4 THIRD STREET KINGS STREET", "Name": "LYNCH (LIFE ESTATE), HYACINTH", "Address": "PO Box 503113", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 9200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.872547161300005, "SHAPE_Area": 366.28511589200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360006.357600003480911, 256791.561000000685453 ], [ 359983.708999998867512, 256799.819299999624491 ], [ 359988.428199999034405, 256813.790100000798702 ], [ 360011.881399996578693, 256805.749400001019239 ], [ 360006.357600003480911, 256791.561000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93745703, "LATITUDE": 18.34049429, "OBJECTID_1": 11345, "PARCEL_NO_": "105304030400", "Tax_Legal_": "KRONPRINDSENS GADE 60A CROWN PRINCE QUARTER", "Name": "RUSSEL E. THOMAS & OTHERS", "Address": "PO Box 303311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033311, "Country": "United States", "Land_Value": 35300, "Improved_V": 235000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.345836647, "SHAPE_Area": 446.53942367100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358123.779899999499321, 256757.154500000178814 ], [ 358120.466499999165535, 256767.471000000834465 ], [ 358108.398800000548363, 256764.205800000578165 ], [ 358099.306400001049042, 256790.307000000029802 ], [ 358113.771499998867512, 256796.124899998307228 ], [ 358125.387100003659725, 256757.800999999046326 ], [ 358123.779899999499321, 256757.154500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402110700", "MAP": "MB.B", "PARCEL_NAM": "7 of 1st STREET", "ACRE": "0.11", "LONGITUDE": -64.92044992, "LATITUDE": 18.34052239, "OBJECTID_1": 19207, "PARCEL_NO_": "105402110700", "Tax_Legal_": "7 FIRST STREET KINGS QUARTER", "Name": "MEREJO FERNANDEZ, MERCEDES", "Address": "PO Box 10335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 81700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.008420389799994, "SHAPE_Area": 443.90175687499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359923.515299998223782, 256801.637899998575449 ], [ 359917.212300002574921, 256784.276599999517202 ], [ 359894.565399996936321, 256792.323899999260902 ], [ 359900.868400000035763, 256809.685199998319149 ], [ 359923.515299998223782, 256801.637899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402120700", "MAP": "D9-7278-T003", "PARCEL_NAM": "46B", "ACRE": ".19", "LONGITUDE": -64.91769624, "LATITUDE": 18.34046766, "OBJECTID_1": 19234, "PARCEL_NO_": "105402120700", "Tax_Legal_": "46B&46Bd ESTATE THOMAS 6A NEW QTR", "Name": "ELGADI, JARRAH & AMJAD MUHYEDDIN", "Address": "PO Box 10935", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 186200, "Improved_V": 133900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.50636256200001, "SHAPE_Area": 892.97370774599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360214.883100003004074, 256774.075100000947714 ], [ 360181.83839999884367, 256786.957100000232458 ], [ 360185.19539999961853, 256812.234200000762939 ], [ 360191.665700003504753, 256809.96510000154376 ], [ 360218.360299997031689, 256800.051100000739098 ], [ 360214.883100003004074, 256774.075100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93486471, "LATITUDE": 18.3405178, "OBJECTID_1": 11379, "PARCEL_NO_": "105304051000", "Tax_Legal_": "KRONPRINDSENS GADE 81C CROWN PRINCE QUARTER", "Name": "ZOOK, ZACHARY G. & MARY B. GANNETT", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43000, "Improved_V": 275300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.678362494600002, "SHAPE_Area": 196.40082551099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358392.391500003635883, 256776.681600000709295 ], [ 358380.22070000320673, 256775.182700000703335 ], [ 358380.030799999833107, 256777.616999998688698 ], [ 358378.569099999964237, 256791.33500000089407 ], [ 358390.667000003159046, 256792.602600000798702 ], [ 358392.112899996340275, 256779.193500000983477 ], [ 358392.391500003635883, 256776.681600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402140500", "MAP": "MB.B", "PARCEL_NAM": "5 OF 2ND STREET", "ACRE": "0.11", "LONGITUDE": -64.91988442, "LATITUDE": 18.34049956, "OBJECTID_1": 19252, "PARCEL_NO_": "105402140500", "Tax_Legal_": "5 SECOND STREET KINGS QUARTER", "Name": "GARCIA, KEMIO T. & JOSE A.", "Address": "PO Box 192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13100, "Improved_V": 92600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.857845772800005, "SHAPE_Area": 474.02835839199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359983.708999998867512, 256799.819299999624491 ], [ 359977.411300003528595, 256781.824799999594688 ], [ 359953.956299997866154, 256790.07660000026226 ], [ 359960.254000000655651, 256808.071100000292063 ], [ 359983.708999998867512, 256799.819299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9375384, "LATITUDE": 18.34041691, "OBJECTID_1": 11344, "PARCEL_NO_": "105304030300", "Tax_Legal_": "KRONPRINDSENS GADE 59 CROWN PRINCE QUARTER", "Name": "PLANET PRODUCTIONS, LLC", "Address": "PO Box 13549", "City": "Austin", "State": "Texas", "Zip": 78711, "Country": "United States", "Land_Value": 43100, "Improved_V": 31000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.822275805800004, "SHAPE_Area": 244.75911622300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358106.089500002563, 256751.310199998319149 ], [ 358093.680200003087521, 256788.149999998509884 ], [ 358099.306400001049042, 256790.307000000029802 ], [ 358108.398800000548363, 256764.205800000578165 ], [ 358112.522100001573563, 256753.473799999803305 ], [ 358106.089500002563, 256751.310199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93827965, "LATITUDE": 18.34032736, "OBJECTID_1": 11332, "PARCEL_NO_": "105304021100", "Tax_Legal_": "55A KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "MORON, PAUL R & GEORGE, R C", "Address": "PO Box 12311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 133700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.538884177, "SHAPE_Area": 942.69112023900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358030.003100000321865, 256785.09569999948144 ], [ 358036.971400000154972, 256724.357799999415874 ], [ 358032.932700000703335, 256725.169199999421835 ], [ 358025.641699999570847, 256729.120299998670816 ], [ 358008.194899998605251, 256789.35020000115037 ], [ 358019.510200001299381, 256786.276399999856949 ], [ 358030.003100000321865, 256785.09569999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93764176000001, "LATITUDE": 18.34042955, "OBJECTID_1": 11342, "PARCEL_NO_": "105304030100", "Tax_Legal_": "KRONPRINDSENS GADE 57 CROWN PRINCE QUARTER", "Name": "PLANET PRODUCTIONS, LLC", "Address": "PO Box 13549", "City": "Austin", "State": "Texas", "Zip": 78711, "Country": "United States", "Land_Value": 300, "Improved_V": 44200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.828748847, "SHAPE_Area": 448.15489897700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358106.089500002563, 256751.310199998319149 ], [ 358098.048000000417233, 256748.711300000548363 ], [ 358092.202399998903275, 256772.305900000035763 ], [ 358089.788900002837181, 256771.652899999171495 ], [ 358080.935599997639656, 256769.680599998682737 ], [ 358076.778200000524521, 256784.423099998384714 ], [ 358093.680200003087521, 256788.149999998509884 ], [ 358106.089500002563, 256751.310199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402130800", "MAP": "MB.B", "PARCEL_NAM": "8 OF 2ND STREET", "ACRE": "0.11", "LONGITUDE": -64.92023267, "LATITUDE": 18.34044762, "OBJECTID_1": 19244, "PARCEL_NO_": "105402130800", "Tax_Legal_": "8 SECOND STREET KINGS QUARTER", "Name": "BUNTIN, PAUL A. & DOROTHEA BUNTIN-AKUOKO", "Address": "130-46 Glenwood Ave", "City": "Yonkers", "State": "New York", "Zip": 10703, "Country": "United States", "Land_Value": 13100, "Improved_V": 74200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.399834140899998, "SHAPE_Area": 456.07077589900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359940.665399998426437, 256776.23589999973774 ], [ 359917.212300002574921, 256784.276599999517202 ], [ 359923.515299998223782, 256801.637899998575449 ], [ 359946.970299996435642, 256793.386100001633167 ], [ 359940.665399998426437, 256776.23589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93708565, "LATITUDE": 18.34046985, "OBJECTID_1": 11349, "PARCEL_NO_": "105304030800", "Tax_Legal_": "63B KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "VANTERPOOL, D. & A. & MADURO,P. & G & RICHARDSON,D & HART, E", "Address": "1803 Lauren Pl", "City": "Missouri City", "State": "Texas", "Zip": 77489, "Country": "United States", "Land_Value": 8600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.874499366400002, "SHAPE_Area": 161.697195343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358142.906599998474121, 256783.697799999266863 ], [ 358150.9391999989748, 256787.352099999785423 ], [ 358158.355999998748302, 256768.625500001013279 ], [ 358151.119000002741814, 256766.244199998676777 ], [ 358142.906599998474121, 256783.697799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402150300", "MAP": "MB.B", "PARCEL_NAM": "3 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91931873, "LATITUDE": 18.34045559, "OBJECTID_1": 19267, "PARCEL_NO_": "105402150300", "Tax_Legal_": "THIRD STREET 3 KINGS QUARTER", "Name": "ZSNAR MANAGEMENT LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 108000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.839518449600007, "SHAPE_Area": 376.924889097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360038.700099997222424, 256781.271000001579523 ], [ 360037.911700002849102, 256779.153599999845028 ], [ 360014.454899996519089, 256787.616500001400709 ], [ 360019.975000001490116, 256802.227099999785423 ], [ 360042.629100002348423, 256793.335499998182058 ], [ 360038.700099997222424, 256781.271000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402160100", "MAP": "MB.B", "PARCEL_NAM": "1 of 4th Street", "ACRE": "0.11", "LONGITUDE": -64.91873515, "LATITUDE": 18.34044713, "OBJECTID_1": 19278, "PARCEL_NO_": "105402160100", "Tax_Legal_": "FOURTH STREET 1 KINGS QUARTER", "Name": "LDT & D. ALLANCE, INC.", "Address": "PO Box 7397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71400, "Improved_V": 446300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.720355553299996, "SHAPE_Area": 438.70761850299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360098.403099998831749, 256777.537799999117851 ], [ 360075.756300002336502, 256785.585099998861551 ], [ 360082.070100001990795, 256801.679800000041723 ], [ 360084.485399998724461, 256802.121800001710653 ], [ 360104.706200003623962, 256794.899000000208616 ], [ 360098.403099998831749, 256777.537799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304021200", "MAP": "F9-1600-T65", "PARCEL_NAM": "55B", "ACRE": ".24", "LONGITUDE": -64.93813859, "LATITUDE": 18.34026891, "OBJECTID_1": 11334, "PARCEL_NO_": "105304021200", "Tax_Legal_": "55B KRONPRINDSENS GADE KRONPRINDSENS QUARTER", "Name": "AFJ HOLDINGS LLC", "Address": "PO Box 302966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 156800, "Improved_V": 186900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.41345468399999, "SHAPE_Area": 741.421539166 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358041.291400000452995, 256785.188099998980761 ], [ 358049.894000001251698, 256721.930500000715256 ], [ 358036.971400000154972, 256724.357799999415874 ], [ 358030.003100000321865, 256785.09569999948144 ], [ 358041.291400000452995, 256785.188099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93785375, "LATITUDE": 18.3404495, "OBJECTID_1": 11337, "PARCEL_NO_": "105304021500", "Tax_Legal_": "KRONP GADE 56BA CROWN PRINCE QUARTER", "Name": "ROSARIO, CARMEN B.", "Address": "2356 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43500, "Improved_V": 15500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.274489317499999, "SHAPE_Area": 168.67471976900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358068.907499998807907, 256761.771699998527765 ], [ 358063.063699997961521, 256785.155200000852346 ], [ 358070.320500001311302, 256785.214600000530481 ], [ 358076.149899996817112, 256763.51969999819994 ], [ 358068.907499998807907, 256761.771699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304021300", "MAP": "F9-1600-T65", "PARCEL_NAM": "56A", "ACRE": ".23", "LONGITUDE": -64.93799375, "LATITUDE": 18.34023708, "OBJECTID_1": 11335, "PARCEL_NO_": "105304021300", "Tax_Legal_": "56A KRONPRINDSENS GADE KRONPRINDSENS QUARTER", "Name": "AFJ HOLDINGS LLC", "Address": "PO Box 302966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 150300, "Improved_V": 229400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.22004753799999, "SHAPE_Area": 1132.73194205 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358055.000600002706051, 256785.089200001209974 ], [ 358071.702200002968311, 256717.675999999046326 ], [ 358049.894000001251698, 256721.930500000715256 ], [ 358041.291400000452995, 256785.188099998980761 ], [ 358055.000600002706051, 256785.089200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93787426, "LATITUDE": 18.34024117, "OBJECTID_1": 11336, "PARCEL_NO_": "105304021400", "Tax_Legal_": "56B KRONPRINDSENS GADE CROWN PRINCE QTR", "Name": "MAGRAS, ANN F", "Address": "PO Box 301701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77500, "Improved_V": 216600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.71991292300001, "SHAPE_Area": 558.87680339899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358055.000600002706051, 256785.089200001209974 ], [ 358063.063699997961521, 256785.155200000852346 ], [ 358068.907499998807907, 256761.771699998527765 ], [ 358074.751299999654293, 256738.388099998235703 ], [ 358080.598600000143051, 256714.582400001585484 ], [ 358075.74099999666214, 256716.864700000733137 ], [ 358071.702200002968311, 256717.675999999046326 ], [ 358055.000600002706051, 256785.089200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402140600", "MAP": "MB.B", "PARCEL_NAM": "6 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91966715, "LATITUDE": 18.34042384, "OBJECTID_1": 19253, "PARCEL_NO_": "105402140600", "Tax_Legal_": "6 THIRD STREET KINGS QUARTER", "Name": "TUITT, KENNETH,SR.", "Address": "1308 Third St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 32300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.072351957400002, "SHAPE_Area": 456.49641820900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360000.058200001716614, 256773.777499999850988 ], [ 359977.411300003528595, 256781.824799999594688 ], [ 359983.708999998867512, 256799.819299999624491 ], [ 360006.357600003480911, 256791.561000000685453 ], [ 360000.058200001716614, 256773.777499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040900", "MAP": null, "PARCEL_NAM": "71B KRONPRINDSENS GADE", "ACRE": "2,426 sq ft", "LONGITUDE": -64.93624363000001, "LATITUDE": 18.34006441, "OBJECTID_1": 11358, "PARCEL_NO_": "105304040900", "Tax_Legal_": "70B,71AA,71AA-1,71B KRONPRINDSEN CROWN PRINCE", "Name": "SHALOM PROPERTIES, L. L. C.", "Address": "PO Box 640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 144500, "Improved_V": 1243000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.976283956800003, "SHAPE_Area": 277.12143921299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358238.534500002861023, 256713.200199998915195 ], [ 358234.451300002634525, 256750.567999999970198 ], [ 358241.988899998366833, 256751.594300001859665 ], [ 358245.607900001108646, 256714.123100001364946 ], [ 358238.534500002861023, 256713.200199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301110700", "MAP": "G9-2928-T79", "PARCEL_NAM": "200-3F", "ACRE": "9070 sq ft", "LONGITUDE": -64.94613502, "LATITUDE": 18.34031449, "OBJECTID_1": 9399, "PARCEL_NO_": "105301110700", "Tax_Legal_": "ALTONA & WELGUNST 200-3F KRONP. QTR", "Name": "BROOKS, JOSEPH", "Address": "3623 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47600, "Improved_V": 138200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.161540878, "SHAPE_Area": 872.39760048899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357201.554399996995926, 256726.59739999845624 ], [ 357191.869699999690056, 256727.573600001633167 ], [ 357189.420199997723103, 256731.142099998891354 ], [ 357184.472599998116493, 256743.978300001472235 ], [ 357181.909800000488758, 256760.844799999147654 ], [ 357181.814499996602535, 256772.032000001519918 ], [ 357207.641699999570847, 256769.288100000470877 ], [ 357201.554399996995926, 256726.59739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402160200", "MAP": "MB.B", "PARCEL_NAM": "2 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.9185192, "LATITUDE": 18.34037159, "OBJECTID_1": 19279, "PARCEL_NO_": "105402160200", "Tax_Legal_": "2 & 4 FIFTH STREET KINGS QUARTER", "Name": "MFAL MANAGEMENT LLC", "Address": "PO Box 9951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 105900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.455446855700004, "SHAPE_Area": 460.58088310800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360121.859899997711182, 256769.07490000128746 ], [ 360098.403099998831749, 256777.537799999117851 ], [ 360104.706200003623962, 256794.899000000208616 ], [ 360125.734999999403954, 256787.471799999475479 ], [ 360127.380000002682209, 256783.685499999672174 ], [ 360121.859899997711182, 256769.07490000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402112600", "MAP": "MB.B", "PARCEL_NAM": "9 of 1st STREET", "ACRE": "0.11", "LONGITUDE": -64.92050964000001, "LATITUDE": 18.34036609, "OBJECTID_1": 19214, "PARCEL_NO_": "105402112600", "Tax_Legal_": "THOMAS ESTATE 9-1st STREET KINGS QUARTER", "Name": "HOBSON, IVAN ELROY", "Address": "1109 First St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 247100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.232355723599994, "SHAPE_Area": 445.51685554400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359917.212300002574921, 256784.276599999517202 ], [ 359911.713699996471405, 256767.133099999278784 ], [ 359902.819099999964237, 256770.015599999576807 ], [ 359888.262299999594688, 256774.962699998170137 ], [ 359894.565399996936321, 256792.323899999260902 ], [ 359917.212300002574921, 256784.276599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402150400", "MAP": "MB.B", "PARCEL_NAM": "2 & 4 OF 4TH STREET", "ACRE": "0.22", "LONGITUDE": -64.91905923, "LATITUDE": 18.34048058, "OBJECTID_1": 19268, "PARCEL_NO_": "105402150400", "Tax_Legal_": "FOURTH ST. EST. THOMAS 2 & 4 KINGS QTR", "Name": "DE LUGO COLLINS, BEVERLEY A. & OTHERS", "Address": "PO Box 1004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24800, "Improved_V": 90900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.50957584699999, "SHAPE_Area": 874.61042471500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360066.085900001227856, 256784.872600000351667 ], [ 360061.352300003170967, 256772.590500000864267 ], [ 360038.700099997222424, 256781.271000001579523 ], [ 360042.629100002348423, 256793.335499998182058 ], [ 360050.514200001955032, 256814.298300001770258 ], [ 360071.543099999427795, 256806.870999999344349 ], [ 360073.180900000035763, 256803.929099999368191 ], [ 360066.085900001227856, 256784.872600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93484851, "LATITUDE": 18.34034984, "OBJECTID_1": 11380, "PARCEL_NO_": "105304051100", "Tax_Legal_": "81CC&D KRONPRINDSENS GADE CROWN PRINCE QTR", "Name": "ISIDOR PAIEWONSKY ASSOC.", "Address": "PO Box 6280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 191000, "Improved_V": 1121600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.279829423799995, "SHAPE_Area": 265.04415963000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358380.22070000320673, 256775.182700000703335 ], [ 358392.391500003635883, 256776.681600000709295 ], [ 358394.733199998736382, 256755.572500001639128 ], [ 358381.8412000015378, 256754.411499999463558 ], [ 358380.22070000320673, 256775.182700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402140700", "MAP": "MB.B", "PARCEL_NAM": "7 OF 2ND STREET", "ACRE": "0.11", "LONGITUDE": -64.91994559, "LATITUDE": 18.3403409, "OBJECTID_1": 19254, "PARCEL_NO_": "105402140700", "Tax_Legal_": "7-2ND STREET, 1ST SUB. DIV. KINGS QUARTER", "Name": "GARCIA, KEMIO T. & JOSE A.", "Address": "PO Box 192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72000, "Improved_V": 100100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.399706387799995, "SHAPE_Area": 456.06888608200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359977.411300003528595, 256781.824799999594688 ], [ 359971.106499999761581, 256764.674699999392033 ], [ 359947.653300002217293, 256772.715399999171495 ], [ 359953.956299997866154, 256790.07660000026226 ], [ 359977.411300003528595, 256781.824799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9354948, "LATITUDE": 18.34017896, "OBJECTID_1": 11378, "PARCEL_NO_": "105304050900", "Tax_Legal_": "KRONPRINDSENS GADE 77B CROWN PRINCE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 173800, "Improved_V": 634000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.57982616300001, "SHAPE_Area": 1128.9861113899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358328.67849999666214, 256747.6435999982059 ], [ 358330.542900003492832, 256718.105700001120567 ], [ 358312.028300002217293, 256714.365600001066923 ], [ 358307.487800002098083, 256774.067899998277426 ], [ 358326.821400001645088, 256776.337099999189377 ], [ 358328.67849999666214, 256747.6435999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402150500", "MAP": "MB.B", "PARCEL_NAM": "5 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91937087, "LATITUDE": 18.340316, "OBJECTID_1": 19269, "PARCEL_NO_": "105402150500", "Tax_Legal_": "THIRD STREET 5 KINGS QUARTER", "Name": "ZSNAR MANAGEMENT LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.417000082499996, "SHAPE_Area": 433.00917169899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360037.911700002849102, 256779.153599999845028 ], [ 360030.802400000393391, 256761.785700000822544 ], [ 360008.943800002336502, 256771.950399998575449 ], [ 360014.454899996519089, 256787.616500001400709 ], [ 360037.911700002849102, 256779.153599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93767825, "LATITUDE": 18.34031027, "OBJECTID_1": 11343, "PARCEL_NO_": "105304030200", "Tax_Legal_": "KRONPRINDSENS GADE 58 CROWN PRINCE QUARTER", "Name": "MADURO-WYDER, BARBARA & THEODORE A. MADURO, JR & OTHERS", "Address": "PO BOX 1842", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21500, "Improved_V": 68400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.062185210300001, "SHAPE_Area": 228.078658225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358080.935599997639656, 256769.680599998682737 ], [ 358089.788900002837181, 256771.652899999171495 ], [ 358095.634499996900558, 256748.058299999684095 ], [ 358086.790200002491474, 256745.030600000172853 ], [ 358080.935599997639656, 256769.680599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303100600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94406361, "LATITUDE": 18.34020193, "OBJECTID_1": 11011, "PARCEL_NO_": "105303100600", "Tax_Legal_": "ALTONA WELGUNST 171A CROWN PRINCE QTR", "Name": "SILVERMAN, DAVID", "Address": "59 Main St", "City": "Moab", "State": "Utah", "Zip": 84532, "Country": "United States", "Land_Value": 105600, "Improved_V": 685300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.13269028799999, "SHAPE_Area": 1432.9770235399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357381.239799998700619, 256742.422400001436472 ], [ 357420.553099997341633, 256765.753299999982119 ], [ 357444.26349999755621, 256727.528400000184774 ], [ 357427.411799997091293, 256717.891199998557568 ], [ 357414.331000000238419, 256738.893500000238419 ], [ 357388.658500000834465, 256723.484700001776218 ], [ 357381.239799998700619, 256742.422400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402131000", "MAP": "MB.B", "PARCEL_NAM": "10 OF 2ND STREET", "ACRE": "0.11", "LONGITUDE": -64.92029099, "LATITUDE": 18.34029224, "OBJECTID_1": 19245, "PARCEL_NO_": "105402131000", "Tax_Legal_": "1O SECOND STREET KINGS QUARTER", "Name": "WAYNE, PATRICK, BERTICA, & HERBERT HODGE", "Address": "PO Box 303612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.374272866400005, "SHAPE_Area": 446.11213990099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359934.362400002777576, 256758.874699998646975 ], [ 359918.993900001049042, 256764.448399998247623 ], [ 359911.713699996471405, 256767.133099999278784 ], [ 359917.212300002574921, 256784.276599999517202 ], [ 359940.665399998426437, 256776.23589999973774 ], [ 359934.362400002777576, 256758.874699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402160300", "MAP": "D9-2054-T82", "PARCEL_NAM": "3 of 4th Street", "ACRE": "0.11", "LONGITUDE": -64.91879728000001, "LATITUDE": 18.34029255, "OBJECTID_1": 19280, "PARCEL_NO_": "105402160300", "Tax_Legal_": "3 FOURTH STREET KINGS QUARTER", "Name": "LLOYD, RICHARD", "Address": "PO Box 7728", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72000, "Improved_V": 1493300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.613031083600006, "SHAPE_Area": 439.13502625699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360098.403099998831749, 256777.537799999117851 ], [ 360092.098300002515316, 256760.387600000947714 ], [ 360069.451399996876717, 256768.434900000691414 ], [ 360075.756300002336502, 256785.585099998861551 ], [ 360098.403099998831749, 256777.537799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93741366, "LATITUDE": 18.34032682, "OBJECTID_1": 11346, "PARCEL_NO_": "105304030500", "Tax_Legal_": "KRONPRINDSENS GADE 60B CROWN PRINCE QUARTER", "Name": "FRANCIS, ALMA", "Address": "PO Box 264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11500, "Improved_V": 49400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.678237219499998, "SHAPE_Area": 135.655340314 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358108.398800000548363, 256764.205800000578165 ], [ 358120.466499999165535, 256767.471000000834465 ], [ 358123.779899999499321, 256757.154500000178814 ], [ 358112.522100001573563, 256753.473799999803305 ], [ 358108.398800000548363, 256764.205800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402140800", "MAP": "MB.B", "PARCEL_NAM": "8 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91972797, "LATITUDE": 18.34026592, "OBJECTID_1": 19255, "PARCEL_NO_": "105402140800", "Tax_Legal_": "8 THIRD STREET KINGS QUARTER", "Name": "TUITT, KENNETH,SR.", "Address": "1308 Third St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72000, "Improved_V": 163800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.612843370500002, "SHAPE_Area": 439.13276161800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359993.753300003707409, 256756.627399999648333 ], [ 359971.106499999761581, 256764.674699999392033 ], [ 359977.411300003528595, 256781.824799999594688 ], [ 360000.058200001716614, 256773.777499999850988 ], [ 359993.753300003707409, 256756.627399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402170100", "MAP": "MB.B", "PARCEL_NAM": "1 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.918222, "LATITUDE": 18.34026975, "OBJECTID_1": 19287, "PARCEL_NO_": "105402170100", "Tax_Legal_": "1-5th STREET,1st SUB.DIVISION ESTATE THOMAS", "Name": "PRESTON, FRANK, AMJR Family Trust & OTHERS", "Address": "PO Box 10683", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.892755437399998, "SHAPE_Area": 425.09420427399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360152.593299999833107, 256758.349599998444319 ], [ 360130.750900000333786, 256766.614599999040365 ], [ 360135.466499999165535, 256781.007500000298023 ], [ 360137.068400003015995, 256782.287200000137091 ], [ 360139.485500000417233, 256782.518100000917912 ], [ 360158.898199997842312, 256775.499800000339746 ], [ 360152.593299999833107, 256758.349599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402150600", "MAP": "D9-1942-T82", "PARCEL_NAM": "6 & 8A OF 4TH STREET", "ACRE": "0.12", "LONGITUDE": -64.91915437, "LATITUDE": 18.34024314, "OBJECTID_1": 19270, "PARCEL_NO_": "105402150600", "Tax_Legal_": "FOURTH STREET 6 & 8A KINGS QUARTER", "Name": "DRIGO, PETER & CYNTHIA", "Address": "1406 4th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 60900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.752976743399998, "SHAPE_Area": 510.28212220699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360054.259199999272823, 256753.322900000959635 ], [ 360030.802400000393391, 256761.785700000822544 ], [ 360037.911700002849102, 256779.153599999845028 ], [ 360038.700099997222424, 256781.271000001579523 ], [ 360061.352300003170967, 256772.590500000864267 ], [ 360054.259199999272823, 256753.322900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93780011, "LATITUDE": 18.34024264, "OBJECTID_1": 11339, "PARCEL_NO_": "105304022000", "Tax_Legal_": "KRONP GADE 56BAB CROWN PRINCE QTR", "Name": "SIMMONDS, CLAUDE & LEONA", "Address": "P O BOX 2957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.106227552299998, "SHAPE_Area": 179.56834699300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358081.993699997663498, 256740.136100001633167 ], [ 358074.751299999654293, 256738.388099998235703 ], [ 358068.907499998807907, 256761.771699998527765 ], [ 358076.149899996817112, 256763.51969999819994 ], [ 358081.993699997663498, 256740.136100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404060300", "MAP": "D9-4766-T89", "PARCEL_NAM": "11 of 1ST Ave", "ACRE": "0.10", "LONGITUDE": -64.92061106, "LATITUDE": 18.34020118, "OBJECTID_1": 19343, "PARCEL_NO_": "105404060300", "Tax_Legal_": "11 FIRST AVE ESTATE THOMAS KING'S QTR", "Name": "PEARLIE WHITE TRUST", "Address": "PO Box 7313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 150600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.834735522399995, "SHAPE_Area": 357.26515937200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359888.262299999594688, 256774.962699998170137 ], [ 359902.819099999964237, 256770.015599999576807 ], [ 359894.966399997472763, 256745.253400001674891 ], [ 359882.788999997079372, 256754.864000000059605 ], [ 359882.762000001966953, 256758.030200000852346 ], [ 359888.262299999594688, 256774.962699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402160200", "MAP": "MB.B", "PARCEL_NAM": "4 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.91857985, "LATITUDE": 18.34021625, "OBJECTID_1": 19279, "PARCEL_NO_": "105402160200", "Tax_Legal_": "2 & 4 FIFTH STREET KINGS QUARTER", "Name": "MFAL MANAGEMENT LLC", "Address": "PO Box 9951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 105900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.418285317799999, "SHAPE_Area": 455.645703228 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360115.555100001394749, 256751.924699999392033 ], [ 360092.098300002515316, 256760.387600000947714 ], [ 360098.403099998831749, 256777.537799999117851 ], [ 360121.859899997711182, 256769.07490000128746 ], [ 360115.555100001394749, 256751.924699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402170200", "MAP": "MB.B", "PARCEL_NAM": "2 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.9179959, "LATITUDE": 18.34018811, "OBJECTID_1": 19288, "PARCEL_NO_": "105402170200", "Tax_Legal_": "2-6th STREET,1st SUB.DIVISION ESTATE THOMAS", "Name": "PRESTON, FRANK,AMJR Family Trust & OTHERS", "Address": "PO Box 10683", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.983136113499995, "SHAPE_Area": 509.59997293399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360178.479800000786781, 256748.640099998563528 ], [ 360152.593299999833107, 256758.349599998444319 ], [ 360158.898199997842312, 256775.499800000339746 ], [ 360183.163099996745586, 256766.832400001585484 ], [ 360183.999899998307228, 256763.250700000673532 ], [ 360178.479800000786781, 256748.640099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402140900", "MAP": "MB.B", "PARCEL_NAM": "9 OF 2ND STREET", "ACRE": "0.11", "LONGITUDE": -64.92000602, "LATITUDE": 18.34018563, "OBJECTID_1": 19256, "PARCEL_NO_": "105402140900", "Tax_Legal_": "9 - 2ND STREET KINGS QUARTER", "Name": "TODMAN, MARIECETA & OTHERS", "Address": "PO Box 10223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 62300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.275149534700006, "SHAPE_Area": 454.28471476599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359971.106499999761581, 256764.674699999392033 ], [ 359964.803400002419949, 256747.313400000333786 ], [ 359941.346600003540516, 256755.776299998164177 ], [ 359947.653300002217293, 256772.715399999171495 ], [ 359971.106499999761581, 256764.674699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402141502", "MAP": "MB.B", "PARCEL_NAM": "12 of 1st Ave", "ACRE": "0.15", "LONGITUDE": -64.92047563, "LATITUDE": 18.34012982, "OBJECTID_1": 19264, "PARCEL_NO_": "105402141502", "Tax_Legal_": "12 FIRST AVE NEW QTR.", "Name": "ROY, K. & WEHNER", "Address": "PO Box 10807", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 34000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.401858824399994, "SHAPE_Area": 486.53822808699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359918.993900001049042, 256764.448399998247623 ], [ 359908.767200000584126, 256734.389400001615286 ], [ 359894.966399997472763, 256745.253400001674891 ], [ 359902.819099999964237, 256770.015599999576807 ], [ 359911.713699996471405, 256767.133099999278784 ], [ 359918.993900001049042, 256764.448399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402150700", "MAP": "MB.B", "PARCEL_NAM": "7 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91943787, "LATITUDE": 18.34016066, "OBJECTID_1": 19272, "PARCEL_NO_": "105402150700", "Tax_Legal_": "7 THIRD STREET KINGS QUARTER", "Name": "TODMAN, HENRITA M", "Address": "PO Box 668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72000, "Improved_V": 244500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.092979525399997, "SHAPE_Area": 467.64514652299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360030.802400000393391, 256761.785700000822544 ], [ 360024.499300003051758, 256744.424499999731779 ], [ 360001.848800003528595, 256752.893899999558926 ], [ 360008.943800002336502, 256771.950399998575449 ], [ 360030.802400000393391, 256761.785700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501020400", "MAP": "G9-1182-T68", "PARCEL_NAM": "48", "ACRE": null, "LONGITUDE": -64.91212427000001, "LATITUDE": 18.33983388, "OBJECTID_1": 19713, "PARCEL_NO_": "105501020400", "Tax_Legal_": "48 ESTATE THOMAS NEW QUARTER #6A", "Name": "JRS HOLDINGS LLC", "Address": "PO Box 302178", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 350000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 343.85867664099999, "SHAPE_Area": 5605.00917175 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360793.395199999213219, 256694.355599999427795 ], [ 360770.22070000320673, 256669.679000001400709 ], [ 360756.565600000321865, 256663.445599999278784 ], [ 360749.321400001645088, 256661.908599998801947 ], [ 360742.066299997270107, 256661.638099998235703 ], [ 360761.176899999380112, 256690.0810999982059 ], [ 360761.675700001418591, 256726.182199999690056 ], [ 360762.865800000727177, 256775.798900000751019 ], [ 360829.055299997329712, 256767.896899998188019 ], [ 360831.8716000020504, 256721.268300000578165 ], [ 360793.395199999213219, 256694.355599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402160500", "MAP": "MB.B", "PARCEL_NAM": "5 of 4th Street", "ACRE": "0.11", "LONGITUDE": -64.91885827, "LATITUDE": 18.34013808, "OBJECTID_1": 19281, "PARCEL_NO_": "105402160500", "Tax_Legal_": "5 FOURTH ST 1ST SUB DIV ESTATE THOMAS", "Name": "LIMA ENTERPRISES INC.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 111000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.613031090600003, "SHAPE_Area": 439.135026342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360092.098300002515316, 256760.387600000947714 ], [ 360085.793399997055531, 256743.237399999052286 ], [ 360063.146600000560284, 256751.284699998795986 ], [ 360069.451399996876717, 256768.434900000691414 ], [ 360092.098300002515316, 256760.387600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402131300", "MAP": "MB.B", "PARCEL_NAM": "1st Ave of 1st Subdi 6", "ACRE": "0.18", "LONGITUDE": -64.9203382, "LATITUDE": 18.34005633, "OBJECTID_1": 19246, "PARCEL_NO_": "105402131300", "Tax_Legal_": "FIRST AV FIRST SUBDI 6 ESTATE THOMAS", "Name": "BENJAMIN, MARIA", "Address": "PO Box 9858", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.361667054199998, "SHAPE_Area": 554.10862587999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359908.767200000584126, 256734.389400001615286 ], [ 359918.993900001049042, 256764.448399998247623 ], [ 359934.362400002777576, 256758.874699998646975 ], [ 359923.343699999153614, 256727.12049999833107 ], [ 359921.740099996328354, 256726.051899999380112 ], [ 359918.509499996900558, 256726.658700000494719 ], [ 359908.767200000584126, 256734.389400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402170300", "MAP": "MB.B", "PARCEL_NAM": "3 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.91828264, "LATITUDE": 18.34011536, "OBJECTID_1": 19290, "PARCEL_NO_": "105402170300", "Tax_Legal_": "3 FIFTH ST 1ST SUB DIV KINGS QUARTER", "Name": "TRUST AGREEMENT OF RALDA V SIMMONDS", "Address": "PO Box 7755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 61500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.498566319099993, "SHAPE_Area": 429.944940497 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360152.593299999833107, 256758.349599998444319 ], [ 360146.288500003516674, 256741.199400000274181 ], [ 360124.449699997901917, 256749.042199999094009 ], [ 360130.750900000333786, 256766.614599999040365 ], [ 360152.593299999833107, 256758.349599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402141000", "MAP": "MB.B", "PARCEL_NAM": "10 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91978913, "LATITUDE": 18.34011108, "OBJECTID_1": 19257, "PARCEL_NO_": "105402141000", "Tax_Legal_": "THOMAS ESTATE 10-3rd STREET KINGS QUARTER", "Name": "MCBEAN, YVETTE M. (TRUSTEE)", "Address": "PO Box 731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12500, "Improved_V": 106300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.739137925500003, "SHAPE_Area": 440.83724660600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359987.448499999940395, 256739.477200001478195 ], [ 359964.803400002419949, 256747.313400000333786 ], [ 359971.106499999761581, 256764.674699999392033 ], [ 359993.753300003707409, 256756.627399999648333 ], [ 359987.448499999940395, 256739.477200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402150800", "MAP": "D9-8223-T008", "PARCEL_NAM": "8B of 4th Street", "ACRE": ".01", "LONGITUDE": -64.9192441, "LATITUDE": 18.34000962, "OBJECTID_1": 19273, "PARCEL_NO_": "105402150800", "Tax_Legal_": "FOURTH STREET 8 KINGS QUARTER", "Name": "DONASTORG, JUANA & OTHERS", "Address": "PO Box 6411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11800, "Improved_V": 48100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.496300014, "SHAPE_Area": 68.582673971700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360025.371899999678135, 256746.827899999916553 ], [ 360048.94650000333786, 256738.507399998605251 ], [ 360047.957900002598763, 256735.750599998980761 ], [ 360024.499300003051758, 256744.424499999731779 ], [ 360025.371899999678135, 256746.827899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91144357, "LATITUDE": 18.33987592, "OBJECTID_1": 19961, "PARCEL_NO_": "105503010900", "Tax_Legal_": "THOMAS ESTATE 1-C NEW QTR. #6A", "Name": "ANDUZE, ROY", "Address": "PO Box 7776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56300, "Improved_V": 318600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.012957734, "SHAPE_Area": 3404.9965017999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360897.674599997699261, 256758.748199999332428 ], [ 360874.967600002884865, 256679.191199999302626 ], [ 360869.966099999845028, 256698.3597999997437 ], [ 360847.306699998676777, 256707.88459999859333 ], [ 360831.8716000020504, 256721.268300000578165 ], [ 360829.055299997329712, 256767.896899998188019 ], [ 360869.455399997532368, 256758.306099999696016 ], [ 360897.674599997699261, 256758.748199999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303100100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94398026, "LATITUDE": 18.33987907, "OBJECTID_1": 11007, "PARCEL_NO_": "105303100100", "Tax_Legal_": "ALTONA & WELGUNST 171 KRONPRINDSENS GADE", "Name": "SAMS MANAGEMENT INC", "Address": "PO BOX 25099", "City": "San Juan", "State": "Puerto Rico", "Zip": 928, "Country": "United States", "Land_Value": 188300, "Improved_V": 1042100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.37953357399999, "SHAPE_Area": 2614.7257475400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357388.658500000834465, 256723.484700001776218 ], [ 357414.331000000238419, 256738.893500000238419 ], [ 357427.411799997091293, 256717.891199998557568 ], [ 357444.26349999755621, 256727.528400000184774 ], [ 357459.792000003159046, 256703.168600000441074 ], [ 357459.818999998271465, 256700.002399999648333 ], [ 357442.173600003123283, 256688.881099998950958 ], [ 357419.746100001037121, 256671.17680000141263 ], [ 357414.100100003182888, 256671.341699998825788 ], [ 357406.746200002729893, 256682.680599998682737 ], [ 357388.658500000834465, 256723.484700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402160600", "MAP": "MB.B", "PARCEL_NAM": "6 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.91864066, "LATITUDE": 18.34006119, "OBJECTID_1": 19282, "PARCEL_NO_": "105402160600", "Tax_Legal_": "6 FIFTH ST 1ST SUB DIV KINGS QUARTER", "Name": "A&J PROPERTIES LLC", "Address": "PO Box 304843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 104500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.690008628399994, "SHAPE_Area": 458.79422756299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360109.251999996602535, 256734.563499998301268 ], [ 360085.793399997055531, 256743.237399999052286 ], [ 360092.098300002515316, 256760.387600000947714 ], [ 360115.555100001394749, 256751.924699999392033 ], [ 360109.251999996602535, 256734.563499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93749516, "LATITUDE": 18.33988734, "OBJECTID_1": 11351, "PARCEL_NO_": "105304031000", "Tax_Legal_": "1,2,3&4 KRONPRINDSENS GADE CROWN PRINCE QTR", "Name": "WINDWARD PASSAGE HOTEL LLC", "Address": "PO Box 640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 789300, "Improved_V": 10123500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.91407528, "SHAPE_Area": 1434.3379769000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358109.383100003004074, 256743.315600000321865 ], [ 358129.98870000243187, 256690.921999998390675 ], [ 358102.651399999856949, 256681.621199999004602 ], [ 358088.4746999964118, 256736.600600000470877 ], [ 358109.383100003004074, 256743.315600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303090300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94455363, "LATITUDE": 18.34005596, "OBJECTID_1": 10955, "PARCEL_NO_": "105303090300", "Tax_Legal_": "MAHOGANY 112 ALTONA AND WELGUNST", "Name": "GONZALO, CALO", "Address": "PO Box 302668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24400, "Improved_V": 93200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.119447619, "SHAPE_Area": 314.128393899 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357345.237800002098083, 256724.090199999511242 ], [ 357374.408100001513958, 256734.11089999973774 ], [ 357378.968299999833107, 256725.094099998474121 ], [ 357348.414800003170967, 256714.711500000208616 ], [ 357345.237800002098083, 256724.090199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402170400", "MAP": "MB.B", "PARCEL_NAM": "4 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91805766, "LATITUDE": 18.3400343, "OBJECTID_1": 19291, "PARCEL_NO_": "105402170400", "Tax_Legal_": "SIXTH ST 1ST SUB DIV 4 KINGS QUARTER", "Name": "GIBBS, BERECIA E. & BEVERLY R", "Address": "PO Box 304572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 141300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.2966969573, "SHAPE_Area": 498.36774070199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360172.171400003135204, 256731.912000000476837 ], [ 360146.288500003516674, 256741.199400000274181 ], [ 360152.593299999833107, 256758.349599998444319 ], [ 360178.479800000786781, 256748.640099998563528 ], [ 360172.171400003135204, 256731.912000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402141100", "MAP": "G9-2392-T74", "PARCEL_NAM": "11 OF 2ND STREET", "ACRE": "0.11", "LONGITUDE": -64.92007397, "LATITUDE": 18.34000878, "OBJECTID_1": 19258, "PARCEL_NO_": "105402141100", "Tax_Legal_": "11 SECOND STREET KINGS QUARTER", "Name": "TURNBULL, MAXINE & OTHERS", "Address": "1211 Second St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11500, "Improved_V": 104800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.737344143499996, "SHAPE_Area": 583.97658638400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359958.504000000655651, 256729.530000001192093 ], [ 359956.956799998879433, 256724.846700001507998 ], [ 359943.425899997353554, 256730.14640000090003 ], [ 359933.794200003147125, 256733.9189000017941 ], [ 359935.04900000244379, 256737.781800001859665 ], [ 359941.346600003540516, 256755.776299998164177 ], [ 359964.803400002419949, 256747.313400000333786 ], [ 359958.504000000655651, 256729.530000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93773646, "LATITUDE": 18.33999869, "OBJECTID_1": 11338, "PARCEL_NO_": "105304021600", "Tax_Legal_": "KRONP GADE 56BAA CROWN PRINCE QUARTER", "Name": "PURE TROPICAL WATER INC.", "Address": "BOX 1701", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34900, "Improved_V": 38000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.343203087600003, "SHAPE_Area": 229.524353343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358091.186800003051758, 256702.214600000530481 ], [ 358083.847300000488758, 256711.864799998700619 ], [ 358080.598600000143051, 256714.582400001585484 ], [ 358074.751299999654293, 256738.388099998235703 ], [ 358081.993699997663498, 256740.136100001633167 ], [ 358091.186800003051758, 256702.214600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301120400", "MAP": "F9-3822-T80", "PARCEL_NAM": "200-5A-1", "ACRE": "7,644 sq ft", "LONGITUDE": -64.94611956, "LATITUDE": 18.33982387, "OBJECTID_1": 9430, "PARCEL_NO_": "105301120400", "Tax_Legal_": "ALTONA & WELGUNST 200-5A-1 CROWN PRINCE QTR", "Name": "STURDIVANT, DEVERITA C", "Address": "PO Box 303825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51700, "Improved_V": 57400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.595265023, "SHAPE_Area": 961.41951876400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357229.334100000560284, 256683.972699999809265 ], [ 357191.4949000030756, 256676.907999999821186 ], [ 357189.014799997210503, 256684.064899999648333 ], [ 357174.094800002872944, 256731.649999998509884 ], [ 357178.932700000703335, 256731.689599998295307 ], [ 357180.579499997198582, 256727.692299999296665 ], [ 357183.020000003278255, 256725.179099999368191 ], [ 357187.11089999973774, 256718.246500000357628 ], [ 357206.638599999248981, 256697.719200000166893 ], [ 357218.806999996304512, 256689.163899999111891 ], [ 357229.334100000560284, 256683.972699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303080200", "MAP": "C9-233-T79", "PARCEL_NAM": "214", "ACRE": null, "LONGITUDE": -64.94743102, "LATITUDE": 18.33994702, "OBJECTID_1": 10947, "PARCEL_NO_": "105303080200", "Tax_Legal_": "ALTONA & WELGST 214A & 214B REM. CROWN PRINCE QTR", "Name": "BRYAN, RONNIE", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 188200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.22267883699999, "SHAPE_Area": 1044.7323397099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357076.037600003182888, 256694.11710000038147 ], [ 357046.240000002086163, 256689.651399999856949 ], [ 357041.88120000064373, 256728.034699998795986 ], [ 357066.858900003135204, 256730.350099999457598 ], [ 357076.037600003182888, 256694.11710000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402180200", "MAP": "D9-7638-T005", "PARCEL_NAM": "2 of 7th Street", "ACRE": "0.32", "LONGITUDE": -64.91747608, "LATITUDE": 18.33999624, "OBJECTID_1": 19297, "PARCEL_NO_": "105402180200", "Tax_Legal_": "3 REM. 6th STR. 2&4 7tH STR. KING QTR.", "Name": "SEASHELL HOLDINGS, INC.", "Address": "PO Box 12287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 310800, "Improved_V": 942300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.319722557000006, "SHAPE_Area": 516.323451009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360232.686200000345707, 256727.552200000733137 ], [ 360208.423100002110004, 256736.008400000631809 ], [ 360215.51630000025034, 256755.276000000536442 ], [ 360237.354999996721745, 256747.433200001716614 ], [ 360238.19370000064373, 256743.640399999916553 ], [ 360232.686200000345707, 256727.552200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402150900", "MAP": "MB.B", "PARCEL_NAM": "9 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91949523, "LATITUDE": 18.34000749, "OBJECTID_1": 19274, "PARCEL_NO_": "105402150900", "Tax_Legal_": "9 THIRD STREET KINGS QUARTER", "Name": "TODMAN, HENRITA", "Address": "PO Box 668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.578480185999993, "SHAPE_Area": 401.51844337099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360024.499300003051758, 256744.424499999731779 ], [ 360018.988200001418591, 256728.758499998599291 ], [ 359996.337700001895428, 256737.227899998426437 ], [ 360001.848800003528595, 256752.893899999558926 ], [ 360024.499300003051758, 256744.424499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105304010100", "MAP": "C9-266-T81", "PARCEL_NAM": "1B GASVERKS", "ACRE": "0.24", "LONGITUDE": -64.94101112, "LATITUDE": 18.34002093, "OBJECTID_1": 11306, "PARCEL_NO_": "105304010100", "Tax_Legal_": "GASVERKS 1B&47B-1,47B-3 CROWN PRINCE GADE", "Name": "Q CHARLOTTE HOTEL CORP", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 662500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.26842775, "SHAPE_Area": 885.64861971100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357742.405599996447563, 256715.659699998795986 ], [ 357692.043700002133846, 256713.713599998503923 ], [ 357691.936200000345707, 256713.723400000482798 ], [ 357735.317100003361702, 256732.865800000727177 ], [ 357752.871200002729893, 256740.611099999397993 ], [ 357753.321599997580051, 256740.250900000333786 ], [ 357762.322899997234344, 256719.997900001704693 ], [ 357763.171499997377396, 256716.462099999189377 ], [ 357742.405599996447563, 256715.659699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91102097, "LATITUDE": 18.3397009, "OBJECTID_1": 19963, "PARCEL_NO_": "105503011100", "Tax_Legal_": "THOMAS ESTATE 6 No.6a NEW QTR.", "Name": "NIELSEN, RUTH M", "Address": "PO Box 9525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79600, "Improved_V": 292400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.14337480399999, "SHAPE_Area": 3446.95718528 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360937.254000000655651, 256750.839499998837709 ], [ 360917.748999997973442, 256674.05290000140667 ], [ 360916.964199997484684, 256671.513300001621246 ], [ 360899.196599997580051, 256674.745400000363588 ], [ 360886.290200002491474, 256675.27309999987483 ], [ 360874.175700001418591, 256677.495900001376867 ], [ 360874.967600002884865, 256679.191199999302626 ], [ 360897.674599997699261, 256758.748199999332428 ], [ 360937.254000000655651, 256750.839499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402160700", "MAP": "MB.B", "PARCEL_NAM": "7 of 4th Street", "ACRE": "0.11", "LONGITUDE": -64.91892058000001, "LATITUDE": 18.33997766, "OBJECTID_1": 19283, "PARCEL_NO_": "105402160700", "Tax_Legal_": "7 FOURTH ST 1ST SUB DV KINGS QUARTER", "Name": "LIMA ENTERPRISES INC.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 82200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.790950170299993, "SHAPE_Area": 466.70802963599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360085.793399997055531, 256743.237399999052286 ], [ 360078.694899998605251, 256724.603100001811981 ], [ 360056.85249999910593, 256732.868000000715256 ], [ 360063.146600000560284, 256751.284699998795986 ], [ 360085.793399997055531, 256743.237399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301110600", "MAP": null, "PARCEL_NAM": "200-3E", "ACRE": null, "LONGITUDE": -64.94595556, "LATITUDE": 18.33999652, "OBJECTID_1": 9398, "PARCEL_NO_": "105301110600", "Tax_Legal_": "ALTONA & WELGUNST 200-3E KRONP QTR", "Name": "ANDRE, NOEL & CHRISTINE", "Address": "PO Box 10513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54700, "Improved_V": 174000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.714760833, "SHAPE_Area": 544.15425876799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357230.601400002837181, 256724.513099998235703 ], [ 357220.335199996829033, 256699.097800001502037 ], [ 357211.406400002539158, 256705.990800000727177 ], [ 357195.949799999594688, 256721.907400000840425 ], [ 357191.869699999690056, 256727.573600001633167 ], [ 357201.554399996995926, 256726.59739999845624 ], [ 357230.601400002837181, 256724.513099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040200", "MAP": "D9-9055-T016", "PARCEL_NAM": "11 CON", "ACRE": "1.4", "LONGITUDE": -64.90928138, "LATITUDE": 18.33969932, "OBJECTID_1": 20126, "PARCEL_NO_": "105503040200", "Tax_Legal_": "ESTATE THOMAS 11 NEW QUARTER", "Name": "C LIMITLESS SKIES LLC", "Address": "125-10 Queens Blvd", "City": "Kew Gardens", "State": "New York", "Zip": 11415, "Country": "United States", "Land_Value": 84500, "Improved_V": 329200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.26446485100001, "SHAPE_Area": 6109.0178619500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361141.828299999237061, 256684.75279999896884 ], [ 361067.760799996554852, 256670.847699999809265 ], [ 361058.790700003504753, 256682.595499999821186 ], [ 361054.715999998152256, 256687.628400001674891 ], [ 361049.673100002110004, 256711.651799999177456 ], [ 361048.812899999320507, 256717.977600000798702 ], [ 361048.652800001204014, 256736.763599999248981 ], [ 361067.064099997282028, 256758.269099999219179 ], [ 361078.297600001096725, 256759.171000000089407 ], [ 361122.229800000786781, 256758.00450000166893 ], [ 361125.801700003445148, 256752.051399998366833 ], [ 361121.975100003182888, 256743.485399998724461 ], [ 361124.001400001347065, 256739.89640000090003 ], [ 361122.656737536774017, 256739.000961867481237 ], [ 361121.457731702073943, 256737.918228473252384 ], [ 361120.430244709481485, 256736.671554067259422 ], [ 361119.59643915889319, 256735.287829059030628 ], [ 361118.974299997091293, 256733.796900000423193 ], [ 361119.542455131129827, 256730.529741653270321 ], [ 361120.538506123819388, 256727.366672520030988 ], [ 361121.944888055149931, 256724.363471929857042 ], [ 361123.736800000071526, 256721.573100000619888 ], [ 361134.738300003111362, 256699.371399998664856 ], [ 361143.018799997866154, 256684.976300001144409 ], [ 361141.828299999237061, 256684.75279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402170500", "MAP": "MB.B", "PARCEL_NAM": "5 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.91834313, "LATITUDE": 18.33995628, "OBJECTID_1": 19292, "PARCEL_NO_": "105402170500", "Tax_Legal_": "5 FIFTH ST 1ST SUB DIV KINGS QUARTER", "Name": "SMITH, SHIRLEY A", "Address": "PO Box 7732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.413516329000004, "SHAPE_Area": 440.75277864600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360146.288500003516674, 256741.199400000274181 ], [ 360139.990800000727177, 256723.204900000244379 ], [ 360118.150200001895428, 256731.258799999952316 ], [ 360124.449699997901917, 256749.042199999094009 ], [ 360146.288500003516674, 256741.199400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402141200", "MAP": "MB.B", "PARCEL_NAM": "12 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91985797, "LATITUDE": 18.33993006, "OBJECTID_1": 19259, "PARCEL_NO_": "105402141200", "Tax_Legal_": "12 THIRD STREET KINGS QUARTER", "Name": "ANNIE SMITH REVOCABLE FAMILY TRUST", "Address": "1312 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 40400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.249969288499997, "SHAPE_Area": 581.02522669099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359981.149099998176098, 256721.693799998611212 ], [ 359979.057499997317791, 256716.190499998629093 ], [ 359960.80799999833107, 256723.338300000876188 ], [ 359956.956799998879433, 256724.846700001507998 ], [ 359958.504000000655651, 256729.530000001192093 ], [ 359964.803400002419949, 256747.313400000333786 ], [ 359987.448499999940395, 256739.477200001478195 ], [ 359981.149099998176098, 256721.693799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301110500", "MAP": null, "PARCEL_NAM": "200-3D", "ACRE": null, "LONGITUDE": -64.94576487, "LATITUDE": 18.33992403, "OBJECTID_1": 9397, "PARCEL_NO_": "105301110500", "Tax_Legal_": "ALTONA & WELGUNST 200-3D KRONP. QTR", "Name": "BERKITT, HARRY & DAMLET", "Address": "3623-8 ALTONA & WELGUNST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50100, "Improved_V": 337400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.390539029199999, "SHAPE_Area": 541.68480032699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357247.544799998402596, 256723.385200001299381 ], [ 357236.535099998116493, 256690.575599998235703 ], [ 357226.01349999755621, 256695.133499998599291 ], [ 357220.335199996829033, 256699.097800001502037 ], [ 357230.601400002837181, 256724.513099998235703 ], [ 357247.544799998402596, 256723.385200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303090400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94449541, "LATITUDE": 18.33999053, "OBJECTID_1": 10956, "PARCEL_NO_": "105303090400", "Tax_Legal_": "MAHOGANY 111 ALTONAS & WELGUNST", "Name": "ROGERS, JANICE", "Address": "PO Box 304250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 67200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.929073778100005, "SHAPE_Area": 217.52431344 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357382.258299998939037, 256717.521699998527765 ], [ 357364.573399998247623, 256711.044100001454353 ], [ 357348.414800003170967, 256714.711500000208616 ], [ 357378.968299999833107, 256725.094099998474121 ], [ 357382.258299998939037, 256717.521699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301110400", "MAP": null, "PARCEL_NAM": "200-3C", "ACRE": null, "LONGITUDE": -64.94559725000001, "LATITUDE": 18.33985994, "OBJECTID_1": 9396, "PARCEL_NO_": "105301110400", "Tax_Legal_": "ALTONA & WELGUNST 200-3C KRONP. QTR", "Name": "BENJAMIN, JOSEPH & PATRICIA", "Address": "3623 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44100, "Improved_V": 96200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.620696466, "SHAPE_Area": 714.956656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357256.419600002467632, 256722.824499998241663 ], [ 357266.393899999558926, 256687.864599999040365 ], [ 357259.956000000238419, 256686.334300000220537 ], [ 357250.280199997127056, 256686.255100000649691 ], [ 357242.200900003314018, 256688.088799998164177 ], [ 357236.535099998116493, 256690.575599998235703 ], [ 357247.544799998402596, 256723.385200001299381 ], [ 357256.419600002467632, 256722.824499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301110300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94542028, "LATITUDE": 18.33989753, "OBJECTID_1": 9395, "PARCEL_NO_": "105301110300", "Tax_Legal_": "ALTONA & WELGNUST 200-3B KRONP. QTR", "Name": "CHARLES, CYNTHIA", "Address": "PO Box 302211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33600, "Improved_V": 52200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.187666196, "SHAPE_Area": 607.47103913800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357266.393899999558926, 256687.864599999040365 ], [ 357256.419600002467632, 256722.824499998241663 ], [ 357276.59179999679327, 256721.300900001078844 ], [ 357283.294100001454353, 256691.802600000053644 ], [ 357266.393899999558926, 256687.864599999040365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402151000", "MAP": "MB.B", "PARCEL_NAM": "10 OF 4TH STREET", "ACRE": "0.12", "LONGITUDE": -64.91927779, "LATITUDE": 18.33992833, "OBJECTID_1": 19275, "PARCEL_NO_": "105402151000", "Tax_Legal_": "FOURTH STREET 10 KINGS QUARTER", "Name": "DONASTORG, RENAN L", "Address": "Po Box 10607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13800, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.236023044800007, "SHAPE_Area": 415.30660638299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360042.446800000965595, 256720.084499999880791 ], [ 360018.988200001418591, 256728.758499998599291 ], [ 360024.499300003051758, 256744.424499999731779 ], [ 360047.957900002598763, 256735.750599998980761 ], [ 360042.446800000965595, 256720.084499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301110200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94522933, "LATITUDE": 18.3399094, "OBJECTID_1": 9394, "PARCEL_NO_": "105301110200", "Tax_Legal_": "ALTONA & WELGUNST 200-3A KRONP. QTR", "Name": "SANTIAGO, AMERICA", "Address": "3623 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33600, "Improved_V": 87800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.839338643999994, "SHAPE_Area": 588.748332441 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357276.59179999679327, 256721.300900001078844 ], [ 357300.797399997711182, 256719.599199999123812 ], [ 357303.369199998676777, 256701.677299998700619 ], [ 357302.593400001525879, 256698.082299999892712 ], [ 357299.387900002300739, 256695.734099999070168 ], [ 357283.294100001454353, 256691.802600000053644 ], [ 357276.59179999679327, 256721.300900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91058595, "LATITUDE": 18.33965945, "OBJECTID_1": 19965, "PARCEL_NO_": "105503011300", "Tax_Legal_": "THOMAS ESTATE 36 6a NEW QTR.", "Name": "NIELSEN, RUTH M", "Address": "PO Box 9525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.02170241900001, "SHAPE_Area": 3435.3797971200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360993.412900000810623, 256689.870900001376867 ], [ 360917.748999997973442, 256674.05290000140667 ], [ 360937.254000000655651, 256750.839499998837709 ], [ 360971.988399997353554, 256743.735500000417233 ], [ 360973.730499997735023, 256728.550999999046326 ], [ 360979.523900002241135, 256711.0777000002563 ], [ 360984.424699999392033, 256703.729499999433756 ], [ 360993.412900000810623, 256689.870900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402160800", "MAP": "MB.B", "PARCEL_NAM": "8 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.91870451, "LATITUDE": 18.33990052, "OBJECTID_1": 19284, "PARCEL_NO_": "105402160800", "Tax_Legal_": "8FIFTH ST 1ST SUB DIV KINGS QUARTER", "Name": "PICKERING, PEGGY", "Address": "60 CRESTWOOD PARK", "City": "DORCHEST", "State": "Massachusetts", "Zip": 2121, "Country": "United States", "Land_Value": 11500, "Improved_V": 64100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.838956642799999, "SHAPE_Area": 496.153961229 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360102.956200003623962, 256716.357900001108646 ], [ 360078.694899998605251, 256724.603100001811981 ], [ 360085.793399997055531, 256743.237399999052286 ], [ 360109.251999996602535, 256734.563499998301268 ], [ 360102.956200003623962, 256716.357900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402180200", "MAP": "D9-7638-T005", "PARCEL_NAM": "3 of 6th Street", "ACRE": "0.32", "LONGITUDE": -64.9177547, "LATITUDE": 18.33990545, "OBJECTID_1": 19297, "PARCEL_NO_": "105402180200", "Tax_Legal_": "3 REM. 6th STR. 2&4 7tH STR. KING QTR.", "Name": "SEASHELL HOLDINGS, INC.", "Address": "PO Box 12287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 310800, "Improved_V": 942300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.9116617719, "SHAPE_Area": 335.46855858499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360185.89130000025034, 256741.88120000064373 ], [ 360191.634800001978874, 256739.353999998420477 ], [ 360207.873000003397465, 256734.44480000063777 ], [ 360202.912000000476837, 256720.342399999499321 ], [ 360181.07320000231266, 256728.185199998319149 ], [ 360185.89130000025034, 256741.88120000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404110100", "MAP": "D9-6714-T000", "PARCEL_NAM": "1 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91716542, "LATITUDE": 18.33989148, "OBJECTID_1": 19442, "PARCEL_NO_": "105404110100", "Tax_Legal_": "1 SEVENTH STREET EST. THOMAS, KINGS QUARTER", "Name": "S&W MORCH FAMILY REV.TRUST", "Address": "1602 Belvedere Blvd", "City": "Silver Spring", "State": "Maryland", "Zip": 20902, "Country": "United States", "Land_Value": 71400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.382613204400002, "SHAPE_Area": 492.06783525899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360265.035800002515316, 256716.417899999767542 ], [ 360241.573600001633167, 256725.513999998569489 ], [ 360247.082900002598763, 256741.391100000590086 ], [ 360250.297399997711182, 256742.683899998664856 ], [ 360272.136100001633167, 256734.841099999845028 ], [ 360265.035800002515316, 256716.417899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402170600", "MAP": "MB.B", "PARCEL_NAM": "6 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91811823, "LATITUDE": 18.33987674, "OBJECTID_1": 19293, "PARCEL_NO_": "105402170600", "Tax_Legal_": "SIXTH ST 1ST SUB DIV 6 KINGS QUARTER", "Name": "SEASHELL HOLDINGS, INC.", "Address": "PO Box 305446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.126879936799995, "SHAPE_Area": 524.23910304900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360165.873700000345707, 256713.917500000447035 ], [ 360139.990800000727177, 256723.204900000244379 ], [ 360146.288500003516674, 256741.199400000274181 ], [ 360172.171400003135204, 256731.912000000476837 ], [ 360165.873700000345707, 256713.917500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040300", "MAP": "D9-6347-T97", "PARCEL_NAM": "38A", "ACRE": ".30", "LONGITUDE": -64.90863955, "LATITUDE": 18.33979649, "OBJECTID_1": 20127, "PARCEL_NO_": "105503040300", "Tax_Legal_": "38 REM.,38A & 40AA ESTATE THOMAS No.6A NEW QUARTER", "Name": "DICKMAN, THOMAS J.", "Address": "PO BOX 1105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31300, "Improved_V": 145900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.004324647, "SHAPE_Area": 1311.1908776299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361166.520000003278255, 256739.194400001317263 ], [ 361175.073992788966279, 256739.131667451787507 ], [ 361183.598613789246883, 256738.420636684895726 ], [ 361192.044799998402596, 256737.065400000661612 ], [ 361171.681000001728535, 256715.495900001376867 ], [ 361167.114100001752377, 256710.658500000834465 ], [ 361167.110299997031689, 256710.654500000178814 ], [ 361162.4341000020504, 256705.701400000602007 ], [ 361157.768399998545647, 256707.719399999827147 ], [ 361149.845355413213838, 256712.170891049172496 ], [ 361141.628700003027916, 256716.053800001740456 ], [ 361137.918440948997159, 256719.624912356492132 ], [ 361134.7653063677717, 256723.696350433048792 ], [ 361132.23596597177675, 256728.182027958187973 ], [ 361130.383900001645088, 256732.987100001424551 ], [ 361126.895700000226498, 256733.815400000661612 ], [ 361128.593778735550586, 256735.817639980028616 ], [ 361130.612066828180104, 256737.496612731891219 ], [ 361132.889938726497348, 256738.801885094697354 ], [ 361135.358971473004203, 256739.694249158928869 ], [ 361137.945000000298023, 256740.146899998188019 ], [ 361148.969232681731228, 256739.948817450436763 ], [ 361159.98759999871254, 256739.53830000013113 ], [ 361166.520000003278255, 256739.194400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303090500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94440862, "LATITUDE": 18.33993854, "OBJECTID_1": 10957, "PARCEL_NO_": "105303090500", "Tax_Legal_": "110 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "LANS, ALLEN A . & EVA C. RAGSTER-LANS", "Address": "Po Box 577", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28800, "Improved_V": 72800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.191593803700002, "SHAPE_Area": 109.103082867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357364.573399998247623, 256711.044100001454353 ], [ 357382.258299998939037, 256717.521699998527765 ], [ 357384.763599999248981, 256707.409699998795986 ], [ 357383.158100001513958, 256706.552200000733137 ], [ 357364.573399998247623, 256711.044100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402141300", "MAP": "D9-7872-T006", "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.92019986, "LATITUDE": 18.3398553, "OBJECTID_1": 19260, "PARCEL_NO_": "105402141300", "Tax_Legal_": "THOMAS ESTATE 8-1st.AVE. No.6A NEW QTR.", "Name": "OLIVER, MAURICE & CHARLOTTE", "Address": "PO Box 9557", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.094397046399997, "SHAPE_Area": 187.02284674800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359943.425899997353554, 256730.14640000090003 ], [ 359937.692699998617172, 256711.416700001806021 ], [ 359929.575599998235703, 256717.683100000023842 ], [ 359929.548600003123283, 256720.849300000816584 ], [ 359933.794200003147125, 256733.9189000017941 ], [ 359943.425899997353554, 256730.14640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402151100", "MAP": "MB.B", "PARCEL_NAM": "11 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91955637, "LATITUDE": 18.33985265, "OBJECTID_1": 19276, "PARCEL_NO_": "105402151100", "Tax_Legal_": "11 THIRD STREET KINGS QUARTER", "Name": "MUGHAL PROPERTIES LLC", "Address": "PO Box 9285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72200, "Improved_V": 180300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.367556029799999, "SHAPE_Area": 483.81569202200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360018.988200001418591, 256728.758499998599291 ], [ 360011.889600001275539, 256710.124099999666214 ], [ 359989.240900002419949, 256718.382500000298023 ], [ 359996.337700001895428, 256737.227899998426437 ], [ 360018.988200001418591, 256728.758499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402141400", "MAP": "D9-7872-T006", "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.92007897000001, "LATITUDE": 18.33978953, "OBJECTID_1": 19261, "PARCEL_NO_": "105402141400", "Tax_Legal_": "THOMAS ESTATE 10-1st.AVE. No.6A NEW QTR.", "Name": "OLIVER, MAURICE & CHARLOTTE", "Address": "PO Box 9557", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.424114305299994, "SHAPE_Area": 399.75283239300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359960.80799999833107, 256723.338300000876188 ], [ 359952.303400002419949, 256700.137200001627207 ], [ 359937.692699998617172, 256711.416700001806021 ], [ 359943.425899997353554, 256730.14640000090003 ], [ 359960.80799999833107, 256723.338300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040100", "MAP": "D9-9270-T018", "PARCEL_NAM": "12", "ACRE": "0.73", "LONGITUDE": -64.90999378, "LATITUDE": 18.33977269, "OBJECTID_1": 20125, "PARCEL_NO_": "105503040100", "Tax_Legal_": "12 ESTATE THOMAS NEW QUARTER", "Name": "JOSEPH, FRANCIS", "Address": "PO BOX 6773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57500, "Improved_V": 230700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.161198576, "SHAPE_Area": 2160.0171037800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361049.673100002110004, 256711.651799999177456 ], [ 360998.164399996399879, 256700.042300000786781 ], [ 360988.368199996650219, 256714.105399999767542 ], [ 360984.246699996292591, 256724.626299999654293 ], [ 360981.737899996340275, 256735.160500001162291 ], [ 360980.865000002086163, 256742.963799998164177 ], [ 361048.652800001204014, 256736.763599999248981 ], [ 361048.812899999320507, 256717.977600000798702 ], [ 361049.673100002110004, 256711.651799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402180200", "MAP": "D9-7638-T005", "PARCEL_NAM": "4 of 7th Strreet", "ACRE": "0.32", "LONGITUDE": -64.91753442, "LATITUDE": 18.33983891, "OBJECTID_1": 19297, "PARCEL_NO_": "105402180200", "Tax_Legal_": "3 REM. 6th STR. 2&4 7tH STR. KING QTR.", "Name": "SEASHELL HOLDINGS, INC.", "Address": "PO Box 12287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 310800, "Improved_V": 942300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.873695311899993, "SHAPE_Area": 429.85748358299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360227.17679999768734, 256711.67509999871254 ], [ 360202.912000000476837, 256720.342399999499321 ], [ 360208.423100002110004, 256736.008400000631809 ], [ 360232.686200000345707, 256727.552200000733137 ], [ 360227.17679999768734, 256711.67509999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303120400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94140601, "LATITUDE": 18.33941668, "OBJECTID_1": 11019, "PARCEL_NO_": "105303120400", "Tax_Legal_": "DEMARARA 1A CROWN PRINCE", "Name": "CREQUE, M. L., W. C., SCOBIE, J., & ESTRELLA, M.", "Address": "12 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 525600, "Improved_V": 246300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.68212458099998, "SHAPE_Area": 4276.8780125399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357734.655699998140335, 256609.271899998188019 ], [ 357740.862800002098083, 256602.480799999088049 ], [ 357691.204700000584126, 256610.281599998474121 ], [ 357674.720600001513958, 256652.15430000051856 ], [ 357655.763700000941753, 256700.339600000530481 ], [ 357691.936200000345707, 256713.723400000482798 ], [ 357719.107400000095367, 256647.873500000685453 ], [ 357721.939400002360344, 256641.02309999987483 ], [ 357731.456200003623962, 256618.002199999988079 ], [ 357731.445100001990795, 256617.9847999997437 ], [ 357734.655699998140335, 256609.271899998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105304010100", "MAP": "C9-266-T81", "PARCEL_NAM": "47B-1", "ACRE": "1.06", "LONGITUDE": -64.9409951, "LATITUDE": 18.33966026, "OBJECTID_1": 11306, "PARCEL_NO_": "105304010100", "Tax_Legal_": "GASVERKS 1B&47B-1,47B-3 CROWN PRINCE GADE", "Name": "Q CHARLOTTE HOTEL CORP", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 662500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.81569597100003, "SHAPE_Area": 4470.2817936900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357749.932499997317791, 256652.024300001561642 ], [ 357722.635300002992153, 256640.827300000935793 ], [ 357721.939400002360344, 256641.02309999987483 ], [ 357719.107400000095367, 256647.873500000685453 ], [ 357691.941899999976158, 256713.709699999541044 ], [ 357692.043700002133846, 256713.713599998503923 ], [ 357742.405599996447563, 256715.659699998795986 ], [ 357763.171499997377396, 256716.462099999189377 ], [ 357763.550300002098083, 256714.883499998599291 ], [ 357766.951300002634525, 256706.853700000792742 ], [ 357784.217000000178814, 256666.08729999884963 ], [ 357773.691399998962879, 256661.769900001585484 ], [ 357749.932499997317791, 256652.024300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404110200", "MAP": "MB.B", "PARCEL_NAM": "2 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91694723000001, "LATITUDE": 18.33981066, "OBJECTID_1": 19443, "PARCEL_NO_": "105404110200", "Tax_Legal_": "2 EIGHTH STREET KINGS QUARTER", "Name": "VANTERPOOL HOFFMAN ( Life Int.), LINDA", "Address": "25007 Lakecrest Manor Dr", "City": "Katy", "State": "Texas", "Zip": 77493, "Country": "United States", "Land_Value": 12400, "Improved_V": 74000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.169661377599994, "SHAPE_Area": 486.45193855100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360287.689800001680851, 256707.526299998164177 ], [ 360274.745700001716614, 256712.486600000411272 ], [ 360265.035800002515316, 256716.417899999767542 ], [ 360272.136100001633167, 256734.841099999845028 ], [ 360292.356899999082088, 256727.618400000035763 ], [ 360294.000100001692772, 256724.043200001120567 ], [ 360287.689800001680851, 256707.526299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402160900", "MAP": "MB.B", "PARCEL_NAM": "9 of 4th Street", "ACRE": "0.11", "LONGITUDE": -64.91898423000001, "LATITUDE": 18.33981637, "OBJECTID_1": 19285, "PARCEL_NO_": "105402160900", "Tax_Legal_": "9-4TH ST. 1ST. SUB. DIVISION ESTATE THOMAS KINGS QUARTER", "Name": "VIVIAN NIELSON & OTHERS", "Address": "1411 Fourth St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.3743044836, "SHAPE_Area": 428.32595836799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360078.694899998605251, 256724.603100001811981 ], [ 360072.390000000596046, 256707.452899999916553 ], [ 360050.549500003457069, 256715.506799999624491 ], [ 360056.85249999910593, 256732.868000000715256 ], [ 360078.694899998605251, 256724.603100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402170700", "MAP": "MB.B", "PARCEL_NAM": "7 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.91840677, "LATITUDE": 18.33979212, "OBJECTID_1": 19294, "PARCEL_NO_": "105402170700", "Tax_Legal_": "7 FIFTH ST 1ST SUB DIV KINGS QUARTER", "Name": "ZUHDI, ADLIE, ALI, FAIKA & RUSHDI, Z", "Address": "PO Box 9068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.643834613799996, "SHAPE_Area": 465.26084656099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360139.990800000727177, 256723.204900000244379 ], [ 360133.696800000965595, 256704.78830000013113 ], [ 360111.051700003445148, 256712.624499998986721 ], [ 360118.150200001895428, 256731.258799999952316 ], [ 360139.990800000727177, 256723.204900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304042800", "MAP": null, "PARCEL_NAM": "70BW KRONPRINSENS GADE", "ACRE": "750 sq ft", "LONGITUDE": -64.93628508, "LATITUDE": 18.3398594, "OBJECTID_1": 11371, "PARCEL_NO_": "105304042800", "Tax_Legal_": "KRONPRINDSENS GADE 70BW&71-BW KRONP. QTR", "Name": "SHALOM PROPERTIES, L. L. C.", "Address": "PO Box 640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.682331555400001, "SHAPE_Area": 34.0514430172 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358239.099600002169609, 256708.028499998152256 ], [ 358233.684799998998642, 256705.722600001841784 ], [ 358232.931900002062321, 256712.644299998879433 ], [ 358236.24210000038147, 256712.901000000536442 ], [ 358238.534500002861023, 256713.200199998915195 ], [ 358239.099600002169609, 256708.028499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402151200", "MAP": "MB.B", "PARCEL_NAM": "12 OF 4TH STREET", "ACRE": "0.11", "LONGITUDE": -64.91933861, "LATITUDE": 18.33977327, "OBJECTID_1": 19277, "PARCEL_NO_": "105402151200", "Tax_Legal_": "THOMAS ESTATE 12-4th STREET KINGS QUARTER", "Name": "FENTON, YVAINE & JAIRAM", "Address": "1412 4th Street Sugar Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 88200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.175460271600002, "SHAPE_Area": 501.94294115000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360035.350000001490116, 256701.239100001752377 ], [ 360011.889600001275539, 256710.124099999666214 ], [ 360018.988200001418591, 256728.758499998599291 ], [ 360042.446800000965595, 256720.084499999880791 ], [ 360035.350000001490116, 256701.239100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402141500", "MAP": "D9-7872-T006", "PARCEL_NAM": "12", "ACRE": "0.17", "LONGITUDE": -64.91992386, "LATITUDE": 18.33970358, "OBJECTID_1": 19263, "PARCEL_NO_": "105402141500", "Tax_Legal_": "THOMAS ESTATE 12-1st.AVE. No.6A NEW QTR.", "Name": "OLIVER, MAURICE & CHARLOTTE", "Address": "PO Box 9557", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.751197542900002, "SHAPE_Area": 533.08896085100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359979.057499997317791, 256716.190499998629093 ], [ 359969.31870000064373, 256690.566199999302626 ], [ 359966.10419999808073, 256689.273299999535084 ], [ 359952.303400002419949, 256700.137200001627207 ], [ 359960.80799999833107, 256723.338300000876188 ], [ 359979.057499997317791, 256716.190499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402180500", "MAP": "MB.B", "PARCEL_NAM": "5 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91780925, "LATITUDE": 18.33976706, "OBJECTID_1": 19298, "PARCEL_NO_": "105402180500", "Tax_Legal_": "THOMAS ESTATE 5-6th STREET 1st KINGS QUARTER", "Name": "DE WINDT, MILDRED", "Address": "PO Box 8484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 74000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.953564713399999, "SHAPE_Area": 423.98785747900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360202.912000000476837, 256720.342399999499321 ], [ 360196.607100002467632, 256703.192200001329184 ], [ 360174.768299996852875, 256711.035000000149012 ], [ 360181.07320000231266, 256728.185199998319149 ], [ 360202.912000000476837, 256720.342399999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503010500", "MAP": "A9-371-T90", "PARCEL_NAM": "44", "ACRE": null, "LONGITUDE": -64.91267407, "LATITUDE": 18.33954753, "OBJECTID_1": 19957, "PARCEL_NO_": "105503010500", "Tax_Legal_": "THOMAS ESTATE 44 NEW QTR", "Name": "SUGAR ESTATE PARKING", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 392000, "Improved_V": 99800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.12032986999998, "SHAPE_Area": 3308.3203438300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360704.939999997615814, 256665.556200001388788 ], [ 360691.027699999511242, 256689.506999999284744 ], [ 360699.872000001370907, 256692.534600000828505 ], [ 360723.242399998009205, 256694.203600000590086 ], [ 360721.584899999201298, 256699.467399999499321 ], [ 360712.706399999558926, 256700.450199998915195 ], [ 360708.653300002217293, 256702.950100000947714 ], [ 360711.046999998390675, 256705.925000000745058 ], [ 360712.629100002348423, 256709.526500001549721 ], [ 360715.663699999451637, 256731.927299998700619 ], [ 360761.675700001418591, 256726.182199999690056 ], [ 360761.176899999380112, 256690.0810999982059 ], [ 360742.066299997270107, 256661.638099998235703 ], [ 360704.939999997615814, 256665.556200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404110300", "MAP": "MB.B", "PARCEL_NAM": "3 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91722965, "LATITUDE": 18.33973231, "OBJECTID_1": 19444, "PARCEL_NO_": "105404110300", "Tax_Legal_": "THOMAS 3-7tH STREET 1st SUBDIVIS KINGS QUARTER", "Name": "DECASTRO, DANTE S", "Address": "PO Box 1176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11500, "Improved_V": 109600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.992756195599995, "SHAPE_Area": 461.518754688 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360265.035800002515316, 256716.417899999767542 ], [ 360258.730899997055531, 256699.267700001597404 ], [ 360235.270499996840954, 256708.152699999511242 ], [ 360241.573600001633167, 256725.513999998569489 ], [ 360265.035800002515316, 256716.417899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402170800", "MAP": "MB.B", "PARCEL_NAM": "8 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91817941, "LATITUDE": 18.33971332, "OBJECTID_1": 19295, "PARCEL_NO_": "105402170800", "Tax_Legal_": "8 SIXTH ST 1ST SUB DIV KINGS QUARTER", "Name": "VARLACK, EVADNEY", "Address": "PO Box 397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72000, "Improved_V": 195800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.650972533900003, "SHAPE_Area": 531.72542364000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360159.577899999916553, 256695.712000001221895 ], [ 360133.696800000965595, 256704.78830000013113 ], [ 360139.990800000727177, 256723.204900000244379 ], [ 360165.873700000345707, 256713.917500000447035 ], [ 360159.577899999916553, 256695.712000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303090200", "MAP": "D9-8929-T014", "PARCEL_NAM": "4-REM", "ACRE": "1.064", "LONGITUDE": -64.94457373, "LATITUDE": 18.33953074, "OBJECTID_1": 10952, "PARCEL_NO_": "105303090200", "Tax_Legal_": "ALTONA 4 KROMP GADE", "Name": "BOSCHULTE, LOUIS & LIONEL", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 223200, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 328.06169604000002, "SHAPE_Area": 4431.7433439500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357386.11259999871254, 256703.792199999094009 ], [ 357362.732799999415874, 256693.931400001049042 ], [ 357371.411200001835823, 256678.3739 ], [ 357393.848600000143051, 256689.707800000905991 ], [ 357403.690399996936321, 256670.859700001776218 ], [ 357408.241300001740456, 256661.546399999409914 ], [ 357354.859099999070168, 256620.8277000002563 ], [ 357350.834799997508526, 256619.950300000607967 ], [ 357348.401500001549721, 256621.619199998676777 ], [ 357336.110799998044968, 256644.527800001204014 ], [ 357332.018100000917912, 256651.671500001102686 ], [ 357328.756899997591972, 256655.866599999368191 ], [ 357327.101099997758865, 256660.919300001114607 ], [ 357323.820100001990795, 256667.4364 ], [ 357321.370600000023842, 256671.004900000989437 ], [ 357316.431999996304512, 256682.785799998790026 ], [ 357316.415799997746944, 256684.685499999672174 ], [ 357315.159000001847744, 256686.94310000166297 ], [ 357340.187399998307228, 256695.825300000607967 ], [ 357341.396799996495247, 256696.25450000166893 ], [ 357340.263300001621246, 256698.403299998492002 ], [ 357348.728900000452995, 256701.932599999010563 ], [ 357365.079199999570847, 256708.748700000345707 ], [ 357381.878100000321865, 256704.03319999948144 ], [ 357385.164899997413158, 256705.498199999332428 ], [ 357386.11259999871254, 256703.792199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404120100", "MAP": "MB.B", "PARCEL_NAM": "1of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91664858, "LATITUDE": 18.33971636, "OBJECTID_1": 19470, "PARCEL_NO_": "105404120100", "Tax_Legal_": "EIGHT STREET 1 & 3 KINGS QTR", "Name": "INFINITY INVESTORS LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 143400, "Improved_V": 217800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.160814977900003, "SHAPE_Area": 442.11271478200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360320.021499998867512, 256698.50279999896884 ], [ 360296.562899999320507, 256707.176699999719858 ], [ 360302.086599998176098, 256721.365200001746416 ], [ 360305.299199998378754, 256722.869100000709295 ], [ 360326.328100003302097, 256715.441899999976158 ], [ 360320.021499998867512, 256698.50279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303120500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94193001, "LATITUDE": 18.33951896, "OBJECTID_1": 11020, "PARCEL_NO_": "105303120500", "Tax_Legal_": "DEMARARA 1B KROMPRINDSENS QTR", "Name": "CREQUE, M. L., W. C., SCOBIE, J., & ESTRELLA, M.", "Address": "12 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 156000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.51036003799999, "SHAPE_Area": 2815.8261574200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357674.720600001513958, 256652.15430000051856 ], [ 357628.100199997425079, 256634.674199998378754 ], [ 357608.487899996340275, 256665.12220000103116 ], [ 357604.316100001335144, 256681.553399998694658 ], [ 357655.763700000941753, 256700.339600000530481 ], [ 357674.720600001513958, 256652.15430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402180600", "MAP": "MB.B", "PARCEL_NAM": "6 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91759201000001, "LATITUDE": 18.33969134, "OBJECTID_1": 19300, "PARCEL_NO_": "105402180600", "Tax_Legal_": "SEVENTH ST 1ST SUBDV 6 KINGS QUARTER", "Name": "DE CASTRO, DANTE & ROMNEY, JEAN S", "Address": "PO Box 8484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 108000, "Improved_V": 48300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.808202187199996, "SHAPE_Area": 467.55879031699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360220.870200000703335, 256694.736000001430511 ], [ 360196.607100002467632, 256703.192200001329184 ], [ 360202.912000000476837, 256720.342399999499321 ], [ 360227.17679999768734, 256711.67509999871254 ], [ 360220.870200000703335, 256694.736000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404070100", "MAP": "MB.B", "PARCEL_NAM": "13 OF 3RD STREET", "ACRE": "0.11", "LONGITUDE": -64.91962081, "LATITUDE": 18.33969237, "OBJECTID_1": 19352, "PARCEL_NO_": "105404070100", "Tax_Legal_": "THIRD ST 13 NEW QTR", "Name": "BLACKMAN, AVIS", "Address": "PO Box 7101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 65800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.242846636799996, "SHAPE_Area": 433.34762916800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360011.889600001275539, 256710.124099999666214 ], [ 360005.582999996840954, 256693.184999998658895 ], [ 359999.11089999973774, 256695.665199998766184 ], [ 359982.932499997317791, 256701.654500000178814 ], [ 359989.240900002419949, 256718.382500000298023 ], [ 360011.889600001275539, 256710.124099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303080200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94737268, "LATITUDE": 18.33963008, "OBJECTID_1": 10947, "PARCEL_NO_": "105303080200", "Tax_Legal_": "ALTONA & WELGST 214A & 214B REM. CROWN PRINCE QTR", "Name": "BRYAN, RONNIE", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 188200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.814307552, "SHAPE_Area": 1114.09347265 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357085.169600002467632, 256663.37220000103116 ], [ 357050.571900002658367, 256654.434200000017881 ], [ 357047.114600002765656, 256681.636999998241663 ], [ 357045.473200000822544, 256685.000999998301268 ], [ 357046.240000002086163, 256689.651399999856949 ], [ 357076.037600003182888, 256694.11710000038147 ], [ 357085.169600002467632, 256663.37220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404080100", "MAP": "MB.B", "PARCEL_NAM": "11 of 4th Street", "ACRE": "0.11", "LONGITUDE": -64.91904357, "LATITUDE": 18.339661, "OBJECTID_1": 19360, "PARCEL_NO_": "105404080100", "Tax_Legal_": "11 FOURTH STREET ESTATE THOMAS", "Name": "NELTHROPP, AUBREY E", "Address": "1411 Sugar Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 76000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.588532088600004, "SHAPE_Area": 428.92272554200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360072.390000000596046, 256707.452899999916553 ], [ 360066.891500003635883, 256690.309300001710653 ], [ 360044.244599997997284, 256698.356600001454353 ], [ 360050.549500003457069, 256715.506799999624491 ], [ 360072.390000000596046, 256707.452899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91184518, "LATITUDE": 18.33958713, "OBJECTID_1": 19960, "PARCEL_NO_": "105503010800", "Tax_Legal_": "THOMAS ESTATE 1A NEW QTR. #6A", "Name": "ANDUZE, JR. , ROY A", "Address": "PO Box 7776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11600, "Improved_V": 105200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.386152692, "SHAPE_Area": 590.19534288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360842.625200003385544, 256689.481100000441074 ], [ 360793.395199999213219, 256694.355599999427795 ], [ 360831.8716000020504, 256721.268300000578165 ], [ 360828.005500003695488, 256701.815999999642372 ], [ 360842.625200003385544, 256689.481100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503015400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91156286, "LATITUDE": 18.33956834, "OBJECTID_1": 19983, "PARCEL_NO_": "105503015400", "Tax_Legal_": "1B ESTATE THOMAS 6A NEW QUARTER", "Name": "BLANCHARD, CHARLIE & ROSETTA", "Address": "PO Box 10901", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11600, "Improved_V": 99800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.77590537500001, "SHAPE_Area": 782.10537836599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360874.967600002884865, 256679.191199999302626 ], [ 360859.566799998283386, 256688.564300000667572 ], [ 360842.625200003385544, 256689.481100000441074 ], [ 360828.005500003695488, 256701.815999999642372 ], [ 360831.8716000020504, 256721.268300000578165 ], [ 360847.306699998676777, 256707.88459999859333 ], [ 360869.966099999845028, 256698.3597999997437 ], [ 360874.967600002884865, 256679.191199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404112600", "MAP": "F9-2324-T68", "PARCEL_NAM": "4A of 8th Street", "ACRE": ".05", "LONGITUDE": -64.91707307, "LATITUDE": 18.33967259, "OBJECTID_1": 19469, "PARCEL_NO_": "105404112600", "Tax_Legal_": "4A EIGHT ST NEW QTR", "Name": "TOMAHAWK CONSTRUCTION LLC", "Address": "1109 First St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5400, "Improved_V": 51800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.495940991200001, "SHAPE_Area": 191.31318041500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360274.745700001716614, 256712.486600000411272 ], [ 360268.440800003707409, 256695.336399998515844 ], [ 360258.730899997055531, 256699.267700001597404 ], [ 360265.035800002515316, 256716.417899999767542 ], [ 360274.745700001716614, 256712.486600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404120200", "MAP": "D9-4408-T88", "PARCEL_NAM": "2 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91643579, "LATITUDE": 18.33964058, "OBJECTID_1": 19471, "PARCEL_NO_": "105404120200", "Tax_Legal_": "2 & 4 NINTH STEET KINGS QUARTER", "Name": "Z & A OCEAN VIEW MANAGEMENT LLC", "Address": "PO Box 9951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 215100, "Improved_V": 813200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.0010161461, "SHAPE_Area": 425.68806940399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360341.863799996674061, 256690.237799998372793 ], [ 360320.021499998867512, 256698.50279999896884 ], [ 360326.328100003302097, 256715.441899999976158 ], [ 360346.548900000751019, 256708.219099998474121 ], [ 360347.38570000231266, 256704.63740000128746 ], [ 360341.863799996674061, 256690.237799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303020900", "MAP": null, "PARCEL_NAM": "60A", "ACRE": null, "LONGITUDE": -64.94928255000001, "LATITUDE": 18.33961803, "OBJECTID_1": 10879, "PARCEL_NO_": "105303020900", "Tax_Legal_": "CONTANT 60A 7B SOUTHSIDE QTR", "Name": "CESPEDES, GRANDVILLE", "Address": "PO BOX 6003", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.401850242500004, "SHAPE_Area": 330.783435677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356853.90990000218153, 256661.983500000089407 ], [ 356854.635399997234344, 256682.11769999936223 ], [ 356871.07599999755621, 256682.210700001567602 ], [ 356869.85360000282526, 256665.198499999940395 ], [ 356869.6233000010252, 256661.18129999935627 ], [ 356853.90990000218153, 256661.983500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404090100", "MAP": "MB.B", "PARCEL_NAM": "9 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.91846908, "LATITUDE": 18.33963171, "OBJECTID_1": 19397, "PARCEL_NO_": "105404090100", "Tax_Legal_": "9 FIFTH STREET ESTATE THOMAS", "Name": "ZUHDI, ADLIE, ALI, FAIKA & RUSHDI, Z", "Address": "PO Box 9068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.470044683099999, "SHAPE_Area": 437.77445144000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360133.696800000965595, 256704.78830000013113 ], [ 360127.39190000295639, 256687.638099998235703 ], [ 360104.746799997985363, 256695.474300000816584 ], [ 360111.051700003445148, 256712.624499998986721 ], [ 360133.696800000965595, 256704.78830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303020100", "MAP": null, "PARCEL_NAM": "60", "ACRE": null, "LONGITUDE": -64.9491339, "LATITUDE": 18.33961295, "OBJECTID_1": 10871, "PARCEL_NO_": "105303020100", "Tax_Legal_": "CONTANT 6O 7B SOUTHSIDE QTR", "Name": "CESPEDES, GRANDVILLE", "Address": "PO BOX 6003", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29500, "Improved_V": 88500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.750021459300001, "SHAPE_Area": 331.08438623500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356885.191500000655651, 256663.213100001215935 ], [ 356884.939999997615814, 256660.399300001561642 ], [ 356869.6233000010252, 256661.18129999935627 ], [ 356869.85360000282526, 256665.198499999940395 ], [ 356871.07599999755621, 256682.210700001567602 ], [ 356886.457599997520447, 256682.297800000756979 ], [ 356885.191500000655651, 256663.213100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303020200", "MAP": null, "PARCEL_NAM": "53", "ACRE": null, "LONGITUDE": -64.94899765, "LATITUDE": 18.33960783, "OBJECTID_1": 10872, "PARCEL_NO_": "105303020200", "Tax_Legal_": "CONTANT 53 7B SOUTHSIDE QUARTER", "Name": "RICHARDS, HENRY V", "Address": "P O BOX 5186", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.574497837300001, "SHAPE_Area": 300.13087051299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356898.916799999773502, 256661.214499998837709 ], [ 356898.833200000226498, 256659.690000001341105 ], [ 356893.215700000524521, 256659.976799998432398 ], [ 356884.939999997615814, 256660.399300001561642 ], [ 356885.191500000655651, 256663.213100001215935 ], [ 356886.457599997520447, 256682.297800000756979 ], [ 356899.477799996733665, 256682.371399998664856 ], [ 356898.916799999773502, 256661.214499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404060100", "MAP": "D9-112-T56", "PARCEL_NAM": "7 of 1st AVENUE", "ACRE": "4,593 sq ft", "LONGITUDE": -64.92029846, "LATITUDE": 18.33957975, "OBJECTID_1": 19341, "PARCEL_NO_": "105404060100", "Tax_Legal_": "THOMAS ESTATE 7-FIRST AVENUE KINGS QTR.", "Name": "MARCELLY, B, S, F. JR, J. & J", "Address": "PO Box 6651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72000, "Improved_V": 130300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.716008274800004, "SHAPE_Area": 422.602491332 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359940.224899999797344, 256698.1385000012815 ], [ 359925.081200003623962, 256677.327399998903275 ], [ 359911.824500001966953, 256688.693599998950958 ], [ 359926.360299997031689, 256707.513099998235703 ], [ 359940.224899999797344, 256698.1385000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404110400", "MAP": "F9-2324-T68", "PARCEL_NAM": "4 of 8th Street", "ACRE": ".05", "LONGITUDE": -64.91696634, "LATITUDE": 18.33963216, "OBJECTID_1": 19445, "PARCEL_NO_": "105404110400", "Tax_Legal_": "4 EIGHTH STREET KINGS QUARTER", "Name": "POWELL, ALICIA (LIFE INTEREST)", "Address": "PO Box 12262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7100, "Improved_V": 87100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.9956539338, "SHAPE_Area": 251.22600587 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360281.383199997246265, 256690.587200000882149 ], [ 360268.440800003707409, 256695.336399998515844 ], [ 360274.745700001716614, 256712.486600000411272 ], [ 360287.689800001680851, 256707.526299998164177 ], [ 360281.383199997246265, 256690.587200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304010500", "MAP": "D9-7059-T002", "PARCEL_NAM": "47E-5", "ACRE": "15,080 sq ft", "LONGITUDE": -64.9399448, "LATITUDE": 18.33915737, "OBJECTID_1": 11308, "PARCEL_NO_": "105304010500", "Tax_Legal_": "KRONPRINDSENS GADE 47E REMAINDER CROWN PRINCE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 679000, "Improved_V": 1635800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.46982108500001, "SHAPE_Area": 1731.39212041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357851.439999997615814, 256611.291000001132488 ], [ 357825.546499997377396, 256607.344399999827147 ], [ 357824.532899998128414, 256618.456500001251698 ], [ 357822.631800003349781, 256629.277800001204014 ], [ 357822.193099997937679, 256633.372400000691414 ], [ 357829.212399996817112, 256636.443300001323223 ], [ 357848.369099996984005, 256647.703400000929832 ], [ 357856.412000000476837, 256656.331199999898672 ], [ 357859.429700002074242, 256660.566700000315905 ], [ 357862.407600000500679, 256658.085999999195337 ], [ 357864.454899996519089, 256652.821600001305342 ], [ 357878.189499996602535, 256615.80350000038743 ], [ 357851.439999997615814, 256611.291000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404070200", "MAP": "MB.B", "PARCEL_NAM": "14 OF 4TH STREET", "ACRE": "0.11", "LONGITUDE": -64.91940351, "LATITUDE": 18.33961284, "OBJECTID_1": 19353, "PARCEL_NO_": "105404070200", "Tax_Legal_": "14-4TH ST EST THOMAS 6A NEW QTR", "Name": "WALLACE, DALE", "Address": "PO Box 1213", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 12400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.323398861499996, "SHAPE_Area": 452.66556810399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360029.043399997055531, 256684.300000000745058 ], [ 360014.481200002133846, 256689.880399998277426 ], [ 360005.582999996840954, 256693.184999998658895 ], [ 360011.889600001275539, 256710.124099999666214 ], [ 360035.350000001490116, 256701.239100001752377 ], [ 360029.043399997055531, 256684.300000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303021000", "MAP": null, "PARCEL_NAM": "53A", "ACRE": null, "LONGITUDE": -64.9488534, "LATITUDE": 18.33960462, "OBJECTID_1": 10880, "PARCEL_NO_": "105303021000", "Tax_Legal_": "53A CONTANT 7B SOUTHSIDE QTR", "Name": "LAUREL EUNICE SAMUEL and EUSTACE T HAMILTON", "Address": "53A Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29500, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.404422435000001, "SHAPE_Area": 393.99320165199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356916.47580000013113, 256682.467599999159575 ], [ 356915.870899997651577, 256658.820199999958277 ], [ 356898.833200000226498, 256659.690000001341105 ], [ 356898.916799999773502, 256661.214499998837709 ], [ 356899.477799996733665, 256682.371399998664856 ], [ 356916.47580000013113, 256682.467599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404100100", "MAP": "MB.B", "PARCEL_NAM": "7 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91787024, "LATITUDE": 18.33961163, "OBJECTID_1": 19418, "PARCEL_NO_": "105404100100", "Tax_Legal_": "7 SIXTH STREET ESTATE THOMAS", "Name": "WHITE, LORRAINE A", "Address": "1607 6th St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11500, "Improved_V": 131800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.348637294400007, "SHAPE_Area": 428.58094300400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360196.607100002467632, 256703.192200001329184 ], [ 360190.304099999368191, 256685.831000000238419 ], [ 360168.465300001204014, 256693.673799999058247 ], [ 360174.768299996852875, 256711.035000000149012 ], [ 360196.607100002467632, 256703.192200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303010300", "MAP": "D9-1886-T81", "PARCEL_NAM": "75", "ACRE": null, "LONGITUDE": -64.94963839, "LATITUDE": 18.33959537, "OBJECTID_1": 10862, "PARCEL_NO_": "105303010300", "Tax_Legal_": "CONTANT 75 7B SOUTHSIDE QTR", "Name": "NIBBS, GERDA & OTHERS", "Address": "PO Box 302932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39200, "Improved_V": 56600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.35441091600001, "SHAPE_Area": 695.80965856299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356843.302799999713898, 256658.226199999451637 ], [ 356791.632299996912479, 256665.613800000399351 ], [ 356791.612499997019768, 256667.935699999332428 ], [ 356843.900499999523163, 256682.717999998480082 ], [ 356843.302799999713898, 256658.226199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303030100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94854233, "LATITUDE": 18.33963648, "OBJECTID_1": 10884, "PARCEL_NO_": "105303030100", "Tax_Legal_": "CONTANT 52 7B SOUTHSIDE QUARTER", "Name": "GIFFT, JOEL C.", "Address": "PO Box 471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55200, "Improved_V": 41200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.305430935000004, "SHAPE_Area": 467.04955330199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356954.520000003278255, 256665.469300001859665 ], [ 356925.471100002527237, 256667.764699999243021 ], [ 356926.148000001907349, 256682.969000000506639 ], [ 356955.1824000030756, 256682.362199999392033 ], [ 356954.520000003278255, 256665.469300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94825894, "LATITUDE": 18.33962155, "OBJECTID_1": 10885, "PARCEL_NO_": "105303030200", "Tax_Legal_": "CONTANT 45 7B SOUTHSIDE QUARTER", "Name": "GIFFT, JUNE G.", "Address": "PO Box 1082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59000, "Improved_V": 80900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.343288505499999, "SHAPE_Area": 560.23682373099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356985.185000002384186, 256662.765000000596046 ], [ 356954.520000003278255, 256665.469300001859665 ], [ 356955.1824000030756, 256682.362199999392033 ], [ 356984.211499996483326, 256682.388700000941753 ], [ 356985.831299997866154, 256681.557599999010563 ], [ 356985.185000002384186, 256662.765000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94781614, "LATITUDE": 18.33961885, "OBJECTID_1": 10894, "PARCEL_NO_": "105303040100", "Tax_Legal_": "CONTANT 44 7B SOUTHSIDE QTR", "Name": "NICHOLAS, JAMES & ESTELLA", "Address": "PO Box 304615", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81700, "Improved_V": 31800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.069070991, "SHAPE_Area": 805.93252186400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357040.01969999819994, 256662.58049999922514 ], [ 356994.835600003600121, 256665.799300000071526 ], [ 356994.693499997258186, 256682.474500000476837 ], [ 357035.009199999272823, 256682.804499998688698 ], [ 357037.440700002014637, 256681.346700001507998 ], [ 357040.01969999819994, 256662.58049999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402161000", "MAP": null, "PARCEL_NAM": "10 & 12 of 5th Street", "ACRE": "0.22", "LONGITUDE": -64.91879531, "LATITUDE": 18.33966298, "OBJECTID_1": 19286, "PARCEL_NO_": "105402161000", "Tax_Legal_": "10&12-5TH ST. 1ST. SUB. DIVISION KINGS QTR", "Name": "NELTHROPP, BROWNEY & OTHERS", "Address": "PO Box 1012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23000, "Improved_V": 68500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.85146633799999, "SHAPE_Area": 934.86422182900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360096.654899999499321, 256698.785599999129772 ], [ 360090.350100003182888, 256681.635400000959635 ], [ 360066.891500003635883, 256690.309300001710653 ], [ 360072.390000000596046, 256707.452899999916553 ], [ 360078.694899998605251, 256724.603100001811981 ], [ 360102.956200003623962, 256716.357900001108646 ], [ 360096.654899999499321, 256698.785599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404110500", "MAP": "MB.B", "PARCEL_NAM": "5 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91728664, "LATITUDE": 18.33958583, "OBJECTID_1": 19446, "PARCEL_NO_": "105404110500", "Tax_Legal_": "5 SEVENTH STREET KINGS QUARTER", "Name": "Walters, Austin & Others", "Address": "PO Box 12195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 66100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.594543524599999, "SHAPE_Area": 406.62610103700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360258.730899997055531, 256699.267700001597404 ], [ 360253.2162000015378, 256684.023800000548363 ], [ 360229.755800001323223, 256692.9087999984622 ], [ 360235.270499996840954, 256708.152699999511242 ], [ 360258.730899997055531, 256699.267700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404120100", "MAP": null, "PARCEL_NAM": "3 of 8th Street", "ACRE": null, "LONGITUDE": -64.91671355, "LATITUDE": 18.33956052, "OBJECTID_1": 19470, "PARCEL_NO_": "105404120100", "Tax_Legal_": "EIGHT STREET 1 & 3 KINGS QTR", "Name": "INFINITY INVESTORS LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 143400, "Improved_V": 217800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.176382669199995, "SHAPE_Area": 487.89892218 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360320.021499998867512, 256698.50279999896884 ], [ 360313.722000002861023, 256680.719399999827147 ], [ 360289.462499998509884, 256688.753499999642372 ], [ 360296.562899999320507, 256707.176699999719858 ], [ 360320.021499998867512, 256698.50279999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404090200", "MAP": "MB.B", "PARCEL_NAM": "10 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.9182398, "LATITUDE": 18.33955232, "OBJECTID_1": 19398, "PARCEL_NO_": "105404090200", "Tax_Legal_": "1O SIXTH STREET ESTATE THOMAS", "Name": "SAUNDERS, EDWARD", "Address": "PO Box 7515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36000, "Improved_V": 587100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.939344496000004, "SHAPE_Area": 507.90020269000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360153.276600003242493, 256678.139600001275539 ], [ 360127.39190000295639, 256687.638099998235703 ], [ 360133.696800000965595, 256704.78830000013113 ], [ 360159.577899999916553, 256695.712000001221895 ], [ 360153.276600003242493, 256678.139600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90992791, "LATITUDE": 18.33942799, "OBJECTID_1": 20128, "PARCEL_NO_": "105503040400", "Tax_Legal_": "EST. THOMAS 13A NEW QUARTER", "Name": "ADRIEN, BERNARD", "Address": "PO Box 10176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44800, "Improved_V": 339500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.44048089099999, "SHAPE_Area": 1100.66755663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361041.36540000140667, 256670.564599998295307 ], [ 361023.517899997532368, 256658.242199998348951 ], [ 361014.502899996936321, 256675.267000000923872 ], [ 360998.164399996399879, 256700.042300000786781 ], [ 361028.706500001251698, 256706.926199998706579 ], [ 361041.36540000140667, 256670.564599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404070600", "MAP": "MB.B", "PARCEL_NAM": "14A OF 1ST AVE", "ACRE": "0.05", "LONGITUDE": -64.9197049, "LATITUDE": 18.33956983, "OBJECTID_1": 19357, "PARCEL_NO_": "105404070600", "Tax_Legal_": "14A FIRST AVENUE KINGS QUARTER", "Name": "JAMES, ALECIA AL", "Address": "6403 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5400, "Improved_V": 106600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.010228773800002, "SHAPE_Area": 237.26911560900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359999.11089999973774, 256695.665199998766184 ], [ 359994.382700003683567, 256682.749800000339746 ], [ 359978.204300001263618, 256688.739100001752377 ], [ 359982.932499997317791, 256701.654500000178814 ], [ 359999.11089999973774, 256695.665199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404100200", "MAP": "MB.B", "PARCEL_NAM": "8 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.9176528, "LATITUDE": 18.33953628, "OBJECTID_1": 19419, "PARCEL_NO_": "105404100200", "Tax_Legal_": "8 SEVENTH STREET ESTATE THOMAS", "Name": "ESTRILL, CYRIL JR.,EDITH, ALPHONSE, PEDRITO & MAJORIE NILES", "Address": "PO Box 7043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 55300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.328950615099998, "SHAPE_Area": 474.53748867199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360214.567199997603893, 256677.374699998646975 ], [ 360190.304099999368191, 256685.831000000238419 ], [ 360196.607100002467632, 256703.192200001329184 ], [ 360220.870200000703335, 256694.736000001430511 ], [ 360214.567199997603893, 256677.374699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303120300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94196244, "LATITUDE": 18.33914088, "OBJECTID_1": 11018, "PARCEL_NO_": "105303120300", "Tax_Legal_": "DEMARARA (REMAINDER) # 2", "Name": "FRENCHTOWN EVANGEL. ASSEM. INC", "Address": "PO Box 304519", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 221800, "Improved_V": 1767700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 422.14429446299999, "SHAPE_Area": 2365.3681825600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357740.862800002098083, 256602.480799999088049 ], [ 357747.371899999678135, 256595.359400000423193 ], [ 357732.448899999260902, 256596.264800000935793 ], [ 357625.051100000739098, 256613.962000001221895 ], [ 357587.109499998390675, 256618.928800001740456 ], [ 357584.678000003099442, 256620.386599998921156 ], [ 357583.857299998402596, 256622.068599998950958 ], [ 357584.616800002753735, 256627.563299998641014 ], [ 357603.714800000190735, 256657.483800001442432 ], [ 357605.296899996697903, 256661.085299998521805 ], [ 357604.42400000244379, 256668.888599999248981 ], [ 357598.689900003373623, 256679.39640000090003 ], [ 357604.316100001335144, 256681.553399998694658 ], [ 357608.487899996340275, 256665.12220000103116 ], [ 357628.100199997425079, 256634.674199998378754 ], [ 357636.267599999904633, 256622.497600000351667 ], [ 357645.180200003087521, 256617.504299998283386 ], [ 357691.204700000584126, 256610.281599998474121 ], [ 357740.862800002098083, 256602.480799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404130100", "MAP": "MB.B", "PARCEL_NAM": "1 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.9161425, "LATITUDE": 18.33953489, "OBJECTID_1": 19496, "PARCEL_NO_": "105404130100", "Tax_Legal_": "NINTH STREET 1 KINGS QUARTER", "Name": "HESTER, KELLY", "Address": "PO Box 302472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11400, "Improved_V": 67400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.741326933799996, "SHAPE_Area": 442.19906644000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360373.410700000822544, 256678.674800001084805 ], [ 360350.760200001299381, 256687.144200000911951 ], [ 360355.477600000798702, 256701.326099999248981 ], [ 360357.07769999653101, 256702.816799998283386 ], [ 360359.494800001382828, 256703.047699999064207 ], [ 360379.711999997496605, 256696.247099999338388 ], [ 360373.410700000822544, 256678.674800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404060200", "MAP": "D9-112-T56", "PARCEL_NAM": "9 of 1st AVENUE", "ACRE": "4,560 sq ft", "LONGITUDE": -64.92016639000001, "LATITUDE": 18.33948182, "OBJECTID_1": 19342, "PARCEL_NO_": "105404060200", "Tax_Legal_": "LOT 9 FIRST AVE ESTATE THOMAS 6A", "Name": "SAMUEL, G, C, G & OTHERS", "Address": "9009 1st Ave", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72000, "Improved_V": 186300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.353391941699996, "SHAPE_Area": 474.96172805499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359954.837399996817112, 256686.647999998182058 ], [ 359939.691899999976158, 256666.048000000417233 ], [ 359925.081200003623962, 256677.327399998903275 ], [ 359940.224899999797344, 256698.1385000012815 ], [ 359954.837399996817112, 256686.647999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105503015900", "MAP": "D9-5641-T93", "PARCEL_NAM": "56 REM", "ACRE": "0.62", "LONGITUDE": -64.91365722, "LATITUDE": 18.33945746, "OBJECTID_1": 19987, "PARCEL_NO_": "105503015900", "Tax_Legal_": "56 REM ESTATE THOMAS NO. 6A NEW QTR", "Name": "SUGAR ESTATE PARK, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.80516384200001, "SHAPE_Area": 881.25464884400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360573.424800001084805, 256674.612300001084805 ], [ 360620.882100000977516, 256688.51069999858737 ], [ 360652.263599999248981, 256696.366900000721216 ], [ 360702.190200001001358, 256704.374899998307228 ], [ 360698.997299998998642, 256700.5489999987185 ], [ 360693.383699998259544, 256696.914500001817942 ], [ 360683.73309999704361, 256693.880199998617172 ], [ 360670.832099996507168, 256693.774599999189377 ], [ 360654.718500003218651, 256692.165100000798702 ], [ 360634.598399996757507, 256687.567400000989437 ], [ 360623.342399999499321, 256683.675599999725819 ], [ 360583.9949000030756, 256664.355200000107288 ], [ 360580.766099996864796, 256664.750900000333786 ], [ 360577.524700000882149, 256666.624299999326468 ], [ 360575.082299999892712, 256669.348499998450279 ], [ 360573.424800001084805, 256674.612300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404080300", "MAP": "MB.B", "PARCEL_NAM": "13 of 4th Street", "ACRE": "0.11", "LONGITUDE": -64.9191024, "LATITUDE": 18.33950838, "OBJECTID_1": 19361, "PARCEL_NO_": "105404080300", "Tax_Legal_": "13 FOURTH STREET ESTATE THOMAS", "Name": "BENJAMIN, FRANKLIN JOSEPH JAMES", "Address": "PO Box 306197", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.949765011300002, "SHAPE_Area": 431.30516146799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360066.891500003635883, 256690.309300001710653 ], [ 360060.583099998533726, 256673.581300001591444 ], [ 360037.938000001013279, 256681.417500000447035 ], [ 360044.244599997997284, 256698.356600001454353 ], [ 360066.891500003635883, 256690.309300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404110600", "MAP": "MB.B", "PARCEL_NAM": "6 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91706934, "LATITUDE": 18.33950434, "OBJECTID_1": 19447, "PARCEL_NO_": "105404110600", "Tax_Legal_": "6 EIGHTH STREET KINGS QUARTER", "Name": "GREAUX, ANDRE & BENTON, C", "Address": "300 Martine Ave", "City": "White Plains", "State": "New York", "Zip": 10601, "Country": "United States", "Land_Value": 13100, "Improved_V": 96100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.9418637518, "SHAPE_Area": 390.79664928900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360275.868500001728535, 256675.343299999833107 ], [ 360253.2162000015378, 256684.023800000548363 ], [ 360258.730899997055531, 256699.267700001597404 ], [ 360268.440800003707409, 256695.336399998515844 ], [ 360281.383199997246265, 256690.587200000882149 ], [ 360275.868500001728535, 256675.343299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404120200", "MAP": "D9-4408-T88", "PARCEL_NAM": "4 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91649739, "LATITUDE": 18.3394849, "OBJECTID_1": 19471, "PARCEL_NO_": "105404120200", "Tax_Legal_": "2 & 4 NINTH STEET KINGS QUARTER", "Name": "Z & A OCEAN VIEW MANAGEMENT LLC", "Address": "PO Box 9951", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 215100, "Improved_V": 813200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.894354744899999, "SHAPE_Area": 434.53974114499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360335.5608000010252, 256672.876499999314547 ], [ 360313.722000002861023, 256680.719399999827147 ], [ 360320.021499998867512, 256698.50279999896884 ], [ 360341.863799996674061, 256690.237799998372793 ], [ 360335.5608000010252, 256672.876499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404070400", "MAP": "D9-5148-T91", "PARCEL_NAM": "16 & 18-3 REM of 1st AVENUE", "ACRE": "2,677 sq ft", "LONGITUDE": -64.91956326, "LATITUDE": 18.33950093, "OBJECTID_1": 19355, "PARCEL_NO_": "105404070400", "Tax_Legal_": "16&18-3 REMAINDER ESTATE THOMAS KINGS QTR.", "Name": "HENDRICKS (LIFE ESTATE), EVAN", "Address": "PO Box 7974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.089291778299994, "SHAPE_Area": 279.99749692500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360007.925200000405312, 256673.705699998885393 ], [ 359993.086400002241135, 256679.445500001311302 ], [ 359994.382700003683567, 256682.749800000339746 ], [ 359999.11089999973774, 256695.665199998766184 ], [ 360005.582999996840954, 256693.184999998658895 ], [ 360014.481200002133846, 256689.880399998277426 ], [ 360007.925200000405312, 256673.705699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404090300", "MAP": "MB.B", "PARCEL_NAM": "11 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.91852989, "LATITUDE": 18.33947761, "OBJECTID_1": 19399, "PARCEL_NO_": "105404090300", "Tax_Legal_": "11 FIFTH STREET ESTATE THOMAS", "Name": "JAMIL, FAIKA & RUSHDI, ZUHDI & ZUDHI, NEZAR", "Address": "PO Box 9068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 55500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.344172469200004, "SHAPE_Area": 436.07143690300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360127.39190000295639, 256687.638099998235703 ], [ 360121.087099999189377, 256670.487900000065565 ], [ 360098.440200001001358, 256678.535199999809265 ], [ 360104.746799997985363, 256695.474300000816584 ], [ 360127.39190000295639, 256687.638099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303010200", "MAP": "D9-8050-T007", "PARCEL_NAM": "81 REM", "ACRE": ".17", "LONGITUDE": -64.95005291, "LATITUDE": 18.33940586, "OBJECTID_1": 10861, "PARCEL_NO_": "105303010200", "Tax_Legal_": "CONTANT 81 7B SOUTHSIDE QUARTER", "Name": "NICHOLSON, GERARD R. & ARACELY G.", "Address": "PO Box 302578", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.74008345199999, "SHAPE_Area": 582.62167237400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356789.3445999994874, 256650.185300000011921 ], [ 356786.28660000115633, 256630.528499998152256 ], [ 356786.30460000038147, 256628.417700000107288 ], [ 356770.964800000190735, 256630.614199999719858 ], [ 356772.440800003707409, 256646.669399999082088 ], [ 356774.719499997794628, 256663.153400000184774 ], [ 356791.612499997019768, 256667.935699999332428 ], [ 356791.632299996912479, 256665.613800000399351 ], [ 356789.3445999994874, 256650.185300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303020300", "MAP": null, "PARCEL_NAM": "59", "ACRE": null, "LONGITUDE": -64.94929453, "LATITUDE": 18.33942513, "OBJECTID_1": 10873, "PARCEL_NO_": "105303020300", "Tax_Legal_": "CONTANT 59 7B SOUTHSIDE QUARTER", "Name": "RICHARDS, HERALDO", "Address": "PO Box 9744", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29500, "Improved_V": 50100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.184299945199996, "SHAPE_Area": 341.91372077599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356868.449500001966953, 256640.700199998915195 ], [ 356868.370800003409386, 256639.218600001186132 ], [ 356853.245399996638298, 256639.673599999397993 ], [ 356853.335400000214577, 256642.834800001233816 ], [ 356853.90990000218153, 256661.983500000089407 ], [ 356869.6233000010252, 256661.18129999935627 ], [ 356868.449500001966953, 256640.700199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404130200", "MAP": "D3-153-T56", "PARCEL_NAM": "2 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91592505, "LATITUDE": 18.3394602, "OBJECTID_1": 19497, "PARCEL_NO_": "105404130200", "Tax_Legal_": "2 TENTH STREET KINGS QUARTER", "Name": "BAIG, SHAKIL & SEEMA", "Address": "PO Box 10447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71400, "Improved_V": 64600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.834759036299999, "SHAPE_Area": 466.282187776 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360396.865699999034405, 256670.423000000417233 ], [ 360373.410700000822544, 256678.674800001084805 ], [ 360379.711999997496605, 256696.247099999338388 ], [ 360400.737199999392033, 256689.241999998688698 ], [ 360402.382200002670288, 256685.455800000578165 ], [ 360396.865699999034405, 256670.423000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94855589, "LATITUDE": 18.33945099, "OBJECTID_1": 10886, "PARCEL_NO_": "105303030300", "Tax_Legal_": "CONTANT 51 7B SOUTHSIDE QUARTER", "Name": "GIFFT JR., JAMES G.", "Address": "PO Box 471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.46074167499999, "SHAPE_Area": 717.93601331800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356954.520000003278255, 256665.469300001859665 ], [ 356952.316799998283386, 256640.120099999010563 ], [ 356939.405000001192093, 256641.280900001525879 ], [ 356924.880599997937679, 256642.428599998354912 ], [ 356925.471100002527237, 256667.764699999243021 ], [ 356954.520000003278255, 256665.469300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404100300", "MAP": "MB.B", "PARCEL_NAM": "9 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91792956, "LATITUDE": 18.33945722, "OBJECTID_1": 19420, "PARCEL_NO_": "105404100300", "Tax_Legal_": "9 SIXTH STREET ESTATE THOMAS", "Name": "JOSEPH, HERMINA & FRANKLIN", "Address": "PO Box 10919", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 87700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.920082957299996, "SHAPE_Area": 421.264693561 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360190.304099999368191, 256685.831000000238419 ], [ 360184.803700000047684, 256668.898499999195337 ], [ 360162.156800001859665, 256676.945700000971556 ], [ 360168.465300001204014, 256693.673799999058247 ], [ 360190.304099999368191, 256685.831000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303010400", "MAP": "D9-1886-T81", "PARCEL_NAM": "76", "ACRE": null, "LONGITUDE": -64.94971631, "LATITUDE": 18.33946085, "OBJECTID_1": 10863, "PARCEL_NO_": "105303010400", "Tax_Legal_": "CONTANT 76 7B SOUTHSIDE QTR", "Name": "NIBBS, GERDA & OTHERS", "Address": "PO Box 302932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79000, "Improved_V": 39000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.01429472800001, "SHAPE_Area": 820.22657741399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356842.62780000269413, 256642.810899998992682 ], [ 356789.3445999994874, 256650.185300000011921 ], [ 356791.632299996912479, 256665.613800000399351 ], [ 356843.302799999713898, 256658.226199999451637 ], [ 356842.62780000269413, 256642.810899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105304010100", "MAP": "C9-266-T81", "PARCEL_NAM": "47B-3", "ACRE": "0.48", "LONGITUDE": -64.9405172, "LATITUDE": 18.33931205, "OBJECTID_1": 11306, "PARCEL_NO_": "105304010100", "Tax_Legal_": "GASVERKS 1B&47B-1,47B-3 CROWN PRINCE GADE", "Name": "Q CHARLOTTE HOTEL CORP", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 662500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.60668493, "SHAPE_Area": 1980.8964242500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357835.236000001430511, 256672.338300000876188 ], [ 357833.609200000762939, 256648.177400000393391 ], [ 357823.171999998390675, 256642.814599998295307 ], [ 357810.29619999974966, 256639.753899998962879 ], [ 357799.029399998486042, 256637.128600001335144 ], [ 357790.996899999678135, 256633.474300000816584 ], [ 357769.377499997615814, 256615.565499998629093 ], [ 357749.932499997317791, 256652.024300001561642 ], [ 357773.691399998962879, 256661.769900001585484 ], [ 357784.217000000178814, 256666.08729999884963 ], [ 357789.940499998629093, 256652.651799999177456 ], [ 357795.668600000441074, 256649.78770000115037 ], [ 357804.260799996554852, 256650.401399999856949 ], [ 357835.236000001430511, 256672.338300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404110700", "MAP": "MB.B", "PARCEL_NAM": "7 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.917344, "LATITUDE": 18.33943958, "OBJECTID_1": 19448, "PARCEL_NO_": "105404110700", "Tax_Legal_": "7 SEVENTH ST KINGS QTR", "Name": "HEYLIGER, SEDRIC & BERNICE T", "Address": "PO Box 303311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72000, "Improved_V": 104400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.8397339415, "SHAPE_Area": 460.15518422100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360253.2162000015378, 256684.023800000548363 ], [ 360246.911399997770786, 256666.873599998652935 ], [ 360223.452799998223782, 256675.547600001096725 ], [ 360229.755800001323223, 256692.9087999984622 ], [ 360253.2162000015378, 256684.023800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303021100", "MAP": null, "PARCEL_NAM": "59A", "ACRE": "3,746 sq ft", "LONGITUDE": -64.94914959, "LATITUDE": 18.3394211, "OBJECTID_1": 10881, "PARCEL_NO_": "105303021100", "Tax_Legal_": "CONTANT 59A 7B SOUTHSIDE QTR", "Name": "WALLACE, JR., VINCENT", "Address": "PO Box 302727", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 34100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.540258089700004, "SHAPE_Area": 318.62294819900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356884.939999997615814, 256660.399300001561642 ], [ 356882.982900001108646, 256638.497099999338388 ], [ 356868.449500001966953, 256640.700199998915195 ], [ 356869.6233000010252, 256661.18129999935627 ], [ 356884.939999997615814, 256660.399300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94827401000001, "LATITUDE": 18.33942414, "OBJECTID_1": 10887, "PARCEL_NO_": "105303030400", "Tax_Legal_": "CONTANT 46 SOUTHSIDE QTER", "Name": "GIFFT, JOHN M.", "Address": "PO Box 471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59200, "Improved_V": 137300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.961636274, "SHAPE_Area": 800.48583148299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356984.594499997794628, 256637.428899999707937 ], [ 356964.420500002801418, 256639.163600001484156 ], [ 356952.316799998283386, 256640.120099999010563 ], [ 356954.520000003278255, 256665.469300001859665 ], [ 356985.185000002384186, 256662.765000000596046 ], [ 356984.594499997794628, 256637.428899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.947815, "LATITUDE": 18.33947973, "OBJECTID_1": 10895, "PARCEL_NO_": "105303040200", "Tax_Legal_": "CONTANT 43 7B SOUTHSIDE QTR", "Name": "FRANKLIN, VERNON E", "Address": "10204 NW 234th St", "City": "Alachua", "State": "Florida", "Zip": 32615, "Country": "United States", "Land_Value": 81100, "Improved_V": 51100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.53077783099999, "SHAPE_Area": 570.79339022600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357040.932099997997284, 256650.133400000631809 ], [ 356994.943499997258186, 256653.134500000625849 ], [ 356994.835600003600121, 256665.799300000071526 ], [ 357040.01969999819994, 256662.58049999922514 ], [ 357040.932099997997284, 256650.133400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404070500", "MAP": "D9-5148-T91", "PARCEL_NAM": "16 & 18-1 of 1st AVENUE", "ACRE": "0.08", "LONGITUDE": -64.91947619, "LATITUDE": 18.33930431, "OBJECTID_1": 19356, "PARCEL_NO_": "105404070500", "Tax_Legal_": "18 FIRST AVE ESTATE THOMAS", "Name": "HENDRICKS, EVAN", "Address": "PO Box 7974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.605098836799996, "SHAPE_Area": 281.32153469399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360023.511600002646446, 256668.358300000429153 ], [ 360018.024700000882149, 256652.545800000429153 ], [ 360013.18860000371933, 256652.295099999755621 ], [ 360002.63459999859333, 256660.652499999850988 ], [ 360007.925200000405312, 256673.705699998885393 ], [ 360023.511600002646446, 256668.358300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404080400", "MAP": null, "PARCEL_NAM": "14 & 16 of 5th Street", "ACRE": "0.22", "LONGITUDE": -64.91891553000001, "LATITUDE": 18.33935398, "OBJECTID_1": 19362, "PARCEL_NO_": "105404080400", "Tax_Legal_": "14&16 5TH ST EST THOMS KINGS QTR", "Name": "JENSEN, ERIK VALDEMAR", "Address": "128 Rolph Dr", "City": "FOREST HEIGHTS", "State": "Maryland", "Zip": 20745, "Country": "United States", "Land_Value": 24900, "Improved_V": 79600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.596740506, "SHAPE_Area": 906.26702240199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360084.041599996387959, 256664.907400000840425 ], [ 360077.738600000739098, 256647.546100001782179 ], [ 360058.322400003671646, 256654.986600000411272 ], [ 360054.278200000524521, 256656.431099999696016 ], [ 360060.583099998533726, 256673.581300001591444 ], [ 360066.891500003635883, 256690.309300001710653 ], [ 360090.350100003182888, 256681.635400000959635 ], [ 360084.041599996387959, 256664.907400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303011000", "MAP": "G9-2328-T74", "PARCEL_NAM": "82B", "ACRE": null, "LONGITUDE": -64.95021911000001, "LATITUDE": 18.3394608, "OBJECTID_1": 10868, "PARCEL_NO_": "105303011000", "Tax_Legal_": "CONTANT 82A&82B 7B S S QTR", "Name": "NESBITT, D L. S & SHACKELTON, JOY", "Address": "PO Box 302934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53600, "Improved_V": 240800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.594464382200002, "SHAPE_Area": 285.69321445999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356772.440800003707409, 256646.669399999082088 ], [ 356751.4712999984622, 256647.131099998950958 ], [ 356752.984999999403954, 256658.753600001335144 ], [ 356763.458099998533726, 256659.894799999892712 ], [ 356774.719499997794628, 256663.153400000184774 ], [ 356772.440800003707409, 256646.669399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404070300", "MAP": "MB.B", "PARCEL_NAM": "14 OF 1ST AVE", "ACRE": "0.04", "LONGITUDE": -64.91973684, "LATITUDE": 18.33946446, "OBJECTID_1": 19354, "PARCEL_NO_": "105404070300", "Tax_Legal_": "14 FIRST AVE KINGS QTR", "Name": "THOMAS, JAMES & JACKSON", "Address": "6403 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.730978027, "SHAPE_Area": 170.54786661099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359978.204300001263618, 256688.739100001752377 ], [ 359994.382700003683567, 256682.749800000339746 ], [ 359989.647299997508526, 256670.678700000047684 ], [ 359976.65820000320673, 256680.916000001132488 ], [ 359978.204300001263618, 256688.739100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94903752, "LATITUDE": 18.33940701, "OBJECTID_1": 10871, "PARCEL_NO_": "105303020100", "Tax_Legal_": "CONTANT 6O 7B SOUTHSIDE QTR", "Name": "CESPEDES, GRANDVILLE", "Address": "PO BOX 6003", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29500, "Improved_V": 88500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.472404000899999, "SHAPE_Area": 200.04938463 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356893.215700000524521, 256659.976799998432398 ], [ 356892.667700000107288, 256637.520899999886751 ], [ 356882.982900001108646, 256638.497099999338388 ], [ 356884.939999997615814, 256660.399300001561642 ], [ 356893.215700000524521, 256659.976799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94888733000001, "LATITUDE": 18.33939778, "OBJECTID_1": 10874, "PARCEL_NO_": "105303020400", "Tax_Legal_": "CONTANT 54 7B SOUTHSIDE QUARTER", "Name": "CARABALLO, ALEJANDRO", "Address": "PO Box 10618", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41100, "Improved_V": 114400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.289199178100006, "SHAPE_Area": 520.722149479 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356915.870899997651577, 256658.820199999958277 ], [ 356915.264200001955032, 256635.383799999952316 ], [ 356898.317299999296665, 256636.933899998664856 ], [ 356892.667700000107288, 256637.520899999886751 ], [ 356893.215700000524521, 256659.976799998432398 ], [ 356915.870899997651577, 256658.820199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303080500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94728606, "LATITUDE": 18.33929718, "OBJECTID_1": 10950, "PARCEL_NO_": "105303080500", "Tax_Legal_": "ALTONA & WELGUNST 214B-1 SOUTHSIDE QTR.", "Name": "L & L JEEP RENTAL, INC", "Address": "PO Box 11335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 233800, "Improved_V": 81400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.322775092, "SHAPE_Area": 1648.7991677499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357100.01410000026226, 256624.652499999850988 ], [ 357066.249600000679493, 256612.554900001734495 ], [ 357056.457000002264977, 256626.195799998939037 ], [ 357054.828199997544289, 256628.082400001585484 ], [ 357053.177799999713898, 256632.501800000667572 ], [ 357050.571900002658367, 256654.434200000017881 ], [ 357085.169600002467632, 256663.37220000103116 ], [ 357092.60980000346899, 256641.901599999517202 ], [ 357094.244000002741814, 256639.381799999624491 ], [ 357095.912399999797344, 256632.851599998772144 ], [ 357100.01410000026226, 256624.652499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404060300", "MAP": "D9-112-T56", "PARCEL_NAM": "11 of 1st AVENUE", "ACRE": "4,593 sq ft", "LONGITUDE": -64.92003287, "LATITUDE": 18.33938009, "OBJECTID_1": 19343, "PARCEL_NO_": "105404060300", "Tax_Legal_": "11 FIRST AVE ESTATE THOMAS KING'S QTR", "Name": "PEARLIE WHITE TRUST", "Address": "PO Box 7313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 150600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.264763198699995, "SHAPE_Area": 448.83869799000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359968.638300001621246, 256675.784099999815226 ], [ 359953.492700003087521, 256655.184000000357628 ], [ 359939.691899999976158, 256666.048000000417233 ], [ 359954.837399996817112, 256686.647999998182058 ], [ 359968.638300001621246, 256675.784099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404090400", "MAP": "MB.B", "PARCEL_NAM": "12 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.9183012, "LATITUDE": 18.33939712, "OBJECTID_1": 19400, "PARCEL_NO_": "105404090400", "Tax_Legal_": "STREET 12-6TH ESTATE THOMAS", "Name": "JOHNS, JEROME", "Address": "PO Box 304414", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 75200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.689630465299999, "SHAPE_Area": 503.81392477399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360146.971799999475479, 256660.989399999380112 ], [ 360121.087099999189377, 256670.487900000065565 ], [ 360127.39190000295639, 256687.638099998235703 ], [ 360153.276600003242493, 256678.139600001275539 ], [ 360146.971799999475479, 256660.989399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404120500", "MAP": "MB.B", "PARCEL_NAM": "5 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91677251, "LATITUDE": 18.33940786, "OBJECTID_1": 19472, "PARCEL_NO_": "105404120500", "Tax_Legal_": "LOT NO. 5 EIGHTH STREET ESTATE THOMAS KINGS QUARTER", "Name": "DEVELOPERS PROPERTIES LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11500, "Improved_V": 69600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.263811645700002, "SHAPE_Area": 425.77425372300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360313.722000002861023, 256680.719399999827147 ], [ 360307.40820000320673, 256664.624600000679493 ], [ 360283.949600003659725, 256673.298500001430511 ], [ 360289.462499998509884, 256688.753499999642372 ], [ 360313.722000002861023, 256680.719399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404100400", "MAP": "MB.B", "PARCEL_NAM": "10 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91771126, "LATITUDE": 18.33938151, "OBJECTID_1": 19421, "PARCEL_NO_": "105404100400", "Tax_Legal_": "1O SEVENTH STREET KINGS QUARTER", "Name": "ESTRILL, CYRIL JR.,EDITH, ALPHONSE, PEDRITO & MAJORIE NILES", "Address": "PO Box 7043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36000, "Improved_V": 138300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.781271482999998, "SHAPE_Area": 457.17817875600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360208.262299999594688, 256660.224500000476837 ], [ 360184.803700000047684, 256668.898499999195337 ], [ 360190.304099999368191, 256685.831000000238419 ], [ 360214.567199997603893, 256677.374699998646975 ], [ 360208.262299999594688, 256660.224500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404130300", "MAP": "MB.B", "PARCEL_NAM": "3 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91620351, "LATITUDE": 18.33938035, "OBJECTID_1": 19498, "PARCEL_NO_": "105404130300", "Tax_Legal_": "3 NINTH STREET KINGS QUARTER", "Name": "JAMIL, FAIKA", "Address": "PO Box 9068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 95400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.031829701999996, "SHAPE_Area": 443.55989197999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360373.410700000822544, 256678.674800001084805 ], [ 360367.105899997055531, 256661.524599999189377 ], [ 360344.45719999819994, 256669.782999999821186 ], [ 360350.760200001299381, 256687.144200000911951 ], [ 360373.410700000822544, 256678.674800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503015900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91330013, "LATITUDE": 18.33938677, "OBJECTID_1": 19987, "PARCEL_NO_": "105503015900", "Tax_Legal_": "56 REM ESTATE THOMAS NO. 6A NEW QTR", "Name": "SUGAR ESTATE PARK, INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.739238769, "SHAPE_Area": 1128.1333169500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360691.027699999511242, 256689.506999999284744 ], [ 360704.939999997615814, 256665.556200001388788 ], [ 360658.919100001454353, 256672.356699999421835 ], [ 360644.39639999717474, 256673.293299999088049 ], [ 360634.724299997091293, 256672.791900001466274 ], [ 360608.1537000015378, 256668.141499999910593 ], [ 360608.942100003361702, 256670.258900001645088 ], [ 360623.399899996817112, 256676.921100001782179 ], [ 360645.112800002098083, 256683.853799998760223 ], [ 360663.631099998950958, 256687.171799998730421 ], [ 360679.751900002360344, 256687.936999998986721 ], [ 360691.027699999511242, 256689.506999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303090800", "MAP": "D9-1410-T78", "PARCEL_NAM": "200-1", "ACRE": "2.00", "LONGITUDE": -64.94534969, "LATITUDE": 18.339053, "OBJECTID_1": 10960, "PARCEL_NO_": "105303090800", "Tax_Legal_": "200-1 ALTONA&WELGUNST CROWN PRINCE QTR.", "Name": "CALVARY BAPTIST CHURCH", "Address": "PO Box 305200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 228700, "Improved_V": 1060600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 345.53249475600001, "SHAPE_Area": 7349.3803091500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357213.012900002300739, 256612.067299999296665 ], [ 357261.121899999678135, 256644.125100001692772 ], [ 357318.238799996674061, 256660.002399999648333 ], [ 357323.145000003278255, 256652.021000001579523 ], [ 357323.976499997079372, 256649.072500001639128 ], [ 357325.601700000464916, 256647.608199998736382 ], [ 357327.255699999630451, 256642.766600001603365 ], [ 357331.330399997532368, 256637.73369999974966 ], [ 357342.805799998342991, 256615.8739 ], [ 357342.843599997460842, 256611.441199999302626 ], [ 357310.806900002062321, 256585.847800001502037 ], [ 357305.189599998295307, 256582.635400000959635 ], [ 357295.537299998104572, 256579.812199998646975 ], [ 357283.435400001704693, 256580.557500001043081 ], [ 357269.733499996364117, 256579.812100000679493 ], [ 357241.582699999213219, 256571.348999999463558 ], [ 357227.090599998831749, 256568.697299998253584 ], [ 357213.012900002300739, 256612.067299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404110800", "MAP": "MB.B", "PARCEL_NAM": "8 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91712639000001, "LATITUDE": 18.33935887, "OBJECTID_1": 19449, "PARCEL_NO_": "105404110800", "Tax_Legal_": "8 EIGHTH STREET\nKINGS QUARTER", "Name": "ISLAND ROCK HOSPITALITY LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.061822448100003, "SHAPE_Area": 443.21986842899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360269.56360000371933, 256658.19310000166297 ], [ 360246.911399997770786, 256666.873599998652935 ], [ 360253.2162000015378, 256684.023800000548363 ], [ 360275.868500001728535, 256675.343299999833107 ], [ 360269.56360000371933, 256658.19310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503043700", "MAP": "D9-5020-T90", "PARCEL_NAM": "34A", "ACRE": ".006", "LONGITUDE": -64.9101466, "LATITUDE": 18.3393111, "OBJECTID_1": 20161, "PARCEL_NO_": "105503043700", "Tax_Legal_": "32A-1&34A-1 EST.THOMAS 6A NEW QTR.", "Name": "MONSANTO FAMILY TRUST", "Address": "PO Box 7513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.877700845, "SHAPE_Area": 74.454676743799993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360989.271300002932549, 256669.055399999022484 ], [ 361001.037000000476837, 256677.532600000500679 ], [ 361001.589299999177456, 256676.638900000602007 ], [ 361007.296400003135204, 256669.297400001436472 ], [ 360989.271300002932549, 256669.055399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105503010200", "MAP": null, "PARCEL_NAM": "1B & 1A-1A of 10th Street", "ACRE": "0.75", "LONGITUDE": -64.91563658, "LATITUDE": 18.33916411, "OBJECTID_1": 19953, "PARCEL_NO_": "105503010200", "Tax_Legal_": "1B & 1A-1A-10TH STREET 6A NEW QTR", "Name": "H E LOCKHART DEV CORP", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 367500, "Improved_V": 891400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.927473107, "SHAPE_Area": 1921.5940888600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360444.927299998700619, 256671.088799998164177 ], [ 360431.063500002026558, 256631.650600001215935 ], [ 360426.331699997186661, 256619.157299999147654 ], [ 360393.161399997770786, 256631.973600000143051 ], [ 360411.019100002944469, 256681.569499999284744 ], [ 360444.927299998700619, 256671.088799998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404080500", "MAP": "MB.B", "PARCEL_NAM": "15 of 4th Street", "ACRE": "0.11", "LONGITUDE": -64.91916316, "LATITUDE": 18.33935538, "OBJECTID_1": 19363, "PARCEL_NO_": "105404080500", "Tax_Legal_": "15 FOURTH STREET ESTATE THOMAS", "Name": "PENA, FIDEL & ESTANISLAO, LEON", "Address": "PO Box 502271", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 11500, "Improved_V": 29900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.470467719400006, "SHAPE_Area": 436.92350034499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360060.583099998533726, 256673.581300001591444 ], [ 360054.278200000524521, 256656.431099999696016 ], [ 360043.763800002634525, 256660.14469999819994 ], [ 360031.633100003004074, 256664.267299998551607 ], [ 360037.938000001013279, 256681.417500000447035 ], [ 360060.583099998533726, 256673.581300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404120600", "MAP": "MB.B", "PARCEL_NAM": "6 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91655658000001, "LATITUDE": 18.33933278, "OBJECTID_1": 19473, "PARCEL_NO_": "105404120600", "Tax_Legal_": "6 NINTH STREET KINGS QUARTER", "Name": "FRANCIS, DALE and HENRY", "Address": "PO BOX 12382", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72000, "Improved_V": 337300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.460618144899996, "SHAPE_Area": 404.24206246099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360330.053300000727177, 256656.788400001823902 ], [ 360307.40820000320673, 256664.624600000679493 ], [ 360313.722000002861023, 256680.719399999827147 ], [ 360335.5608000010252, 256672.876499999314547 ], [ 360330.053300000727177, 256656.788400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302231400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93888402, "LATITUDE": 18.34196569, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.726904069100001, "SHAPE_Area": 38.126528664399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357965.790799997746944, 256939.512899998575449 ], [ 357952.893399998545647, 256938.985100001096725 ], [ 357952.868199996650219, 256941.940200001001358 ], [ 357965.765699997544289, 256942.467999998480082 ], [ 357965.790799997746944, 256939.512899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302431200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93430285, "LATITUDE": 18.34153557, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.058386532699998, "SHAPE_Area": 284.88547843700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358451.410400003194809, 256880.533100001513958 ], [ 358444.006899997591972, 256879.053199999034405 ], [ 358435.136699996888638, 256915.6886 ], [ 358439.883000001311302, 256915.944400001317263 ], [ 358441.828100003302097, 256906.678700000047684 ], [ 358450.684900000691414, 256908.228900000452995 ], [ 358447.542400002479553, 256898.492899999022484 ], [ 358451.410400003194809, 256880.533100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105302451800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93551401000001, "LATITUDE": 18.34149917, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.21655035800001, "SHAPE_Area": 479.30312886500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358323.506899997591972, 256881.434599999338388 ], [ 358324.390600003302097, 256872.364799998700619 ], [ 358314.725599996745586, 256871.019099999219179 ], [ 358313.87610000371933, 256876.078400000929832 ], [ 358312.265299998223782, 256875.854100000113249 ], [ 358310.573600001633167, 256885.128400001674891 ], [ 358307.127099998295307, 256911.064699999988079 ], [ 358319.214599996805191, 256912.008000001311302 ], [ 358323.506899997591972, 256881.434599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302420700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93590705, "LATITUDE": 18.34137551, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.34739022599999, "SHAPE_Area": 904.85996117800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358264.640000000596046, 256905.689899999648333 ], [ 358282.835600003600121, 256906.756999999284744 ], [ 358281.076300002634525, 256845.412500001490116 ], [ 358269.795100003480911, 256844.47580000013113 ], [ 358264.640000000596046, 256905.689899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302420600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93602978, "LATITUDE": 18.34134617, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.00756110200001, "SHAPE_Area": 698.14510726000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358253.336400002241135, 256905.027100000530481 ], [ 358264.640000000596046, 256905.689899999648333 ], [ 358269.795100003480911, 256844.47580000013113 ], [ 358258.515699997544289, 256843.328000001609325 ], [ 358255.821599997580051, 256875.603300001472235 ], [ 358253.336400002241135, 256905.027100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302430100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93480071, "LATITUDE": 18.34143057, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.44066056200001, "SHAPE_Area": 630.13515476700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358390.5625, 256860.515099998563528 ], [ 358379.1300999969244, 256905.747900001704693 ], [ 358392.621399998664856, 256908.809099998325109 ], [ 358403.479299999773502, 256864.779399998486042 ], [ 358390.5625, 256860.515099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302420500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93623275, "LATITUDE": 18.34148578, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.519227739, "SHAPE_Area": 846.20904364 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358223.528800003230572, 256903.278999999165535 ], [ 358253.336400002241135, 256905.027100000530481 ], [ 358255.821599997580051, 256875.603300001472235 ], [ 358241.30799999833107, 256875.484499998390675 ], [ 358226.794399999082088, 256875.365699999034405 ], [ 358223.528800003230572, 256903.278999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302452300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93502745000001, "LATITUDE": 18.34157739, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.206154562899997, "SHAPE_Area": 127.570891104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358375.773400001227856, 256898.749800000339746 ], [ 358360.482199996709824, 256895.24720000103116 ], [ 358359.598600000143051, 256904.31700000166893 ], [ 358374.096000000834465, 256906.335499998182058 ], [ 358375.773400001227856, 256898.749800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302452400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93511983, "LATITUDE": 18.34151934, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.770463419199999, "SHAPE_Area": 388.92305744700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358377.457900002598763, 256890.319899998605251 ], [ 358345.237800002098083, 256886.256499998271465 ], [ 358342.6858000010252, 256901.856499999761581 ], [ 358352.35080000013113, 256903.202199999243021 ], [ 358359.598600000143051, 256904.31700000166893 ], [ 358360.482199996709824, 256895.24720000103116 ], [ 358375.773400001227856, 256898.749800000339746 ], [ 358377.457900002598763, 256890.319899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302232100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93906185, "LATITUDE": 18.3415137, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 18.6525842633, "SHAPE_Area": 15.659037014500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357938.770000003278255, 256893.062199998646975 ], [ 357945.243900001049042, 256890.370999999344349 ], [ 357938.81139999628067, 256888.207400001585484 ], [ 357938.770000003278255, 256893.062199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302452500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93507843, "LATITUDE": 18.34143256, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.086216776800001, "SHAPE_Area": 218.88727849899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358361.4054000005126, 256881.533700000494719 ], [ 358354.960299998521805, 256880.847600001841784 ], [ 358346.099899999797344, 256879.7195999994874 ], [ 358345.237800002098083, 256886.256499998271465 ], [ 358377.457900002598763, 256890.319899998605251 ], [ 358379.126299999654293, 256883.789599999785423 ], [ 358361.4054000005126, 256881.533700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302453500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93497575000001, "LATITUDE": 18.34129669, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.798427597699998, "SHAPE_Area": 481.26034339500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358365.651000000536442, 256856.448300000280142 ], [ 358361.4054000005126, 256881.533700000494719 ], [ 358379.126299999654293, 256883.789599999785423 ], [ 358385.783600002527237, 256859.568399999290705 ], [ 358365.651000000536442, 256856.448300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302225400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93702377, "LATITUDE": 18.34134597, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.326801465000003, "SHAPE_Area": 174.77453697600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358159.918999999761581, 256869.11879999935627 ], [ 358147.83330000191927, 256867.964400000870228 ], [ 358146.951499998569489, 256876.823100000619888 ], [ 358164.68129999935627, 256880.298500001430511 ], [ 358165.557800002396107, 256869.798200000077486 ], [ 358159.918999999761581, 256869.11879999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302453400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93509616, "LATITUDE": 18.34128432, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.079608287200003, "SHAPE_Area": 165.69672723299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358359.207699999213219, 256855.551199998706579 ], [ 358354.960299998521805, 256880.847600001841784 ], [ 358361.4054000005126, 256881.533700000494719 ], [ 358365.651000000536442, 256856.448300000280142 ], [ 358359.207699999213219, 256855.551199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302421000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93640884, "LATITUDE": 18.3412167, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.593218071600006, "SHAPE_Area": 422.796374824 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358230.274999998509884, 256845.4189000017941 ], [ 358217.384800001978874, 256844.046799998730421 ], [ 358214.030000001192093, 256859.218100000172853 ], [ 358213.893399998545647, 256875.260099999606609 ], [ 358226.794399999082088, 256875.365699999034405 ], [ 358230.274999998509884, 256845.4189000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302420900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93627398, "LATITUDE": 18.34120273, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.650184709000001, "SHAPE_Area": 486.45229079299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358231.120899997651577, 256840.781800001859665 ], [ 358230.274999998509884, 256845.4189000017941 ], [ 358226.794399999082088, 256875.365699999034405 ], [ 358241.30799999833107, 256875.484499998390675 ], [ 358244.817400000989437, 256842.160399999469519 ], [ 358231.120899997651577, 256840.781800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302420800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93613981, "LATITUDE": 18.34120842, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.157983852599997, "SHAPE_Area": 464.66597374700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358244.817400000989437, 256842.160399999469519 ], [ 358241.30799999833107, 256875.484499998390675 ], [ 358255.821599997580051, 256875.603300001472235 ], [ 358258.515699997544289, 256843.328000001609325 ], [ 358244.817400000989437, 256842.160399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302452700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93553847, "LATITUDE": 18.34123088, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.585806364600003, "SHAPE_Area": 133.867337883 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358313.305399999022484, 256848.420499999076128 ], [ 358309.041900001466274, 256875.616700001060963 ], [ 358312.265299998223782, 256875.854100000113249 ], [ 358313.87610000371933, 256876.078400000929832 ], [ 358314.725599996745586, 256871.019099999219179 ], [ 358318.137900002300739, 256849.093299999833107 ], [ 358313.305399999022484, 256848.420499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302243000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93898478, "LATITUDE": 18.34122476, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.373208397, "SHAPE_Area": 187.141895121 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357952.048600003123283, 256848.841299999505281 ], [ 357940.715300001204014, 256854.025800000876188 ], [ 357947.047100000083447, 256868.009799998253584 ], [ 357957.561499997973442, 256864.29619999974966 ], [ 357952.048600003123283, 256848.841299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302421300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9367256, "LATITUDE": 18.3412643, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.589976074299997, "SHAPE_Area": 51.573103324800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358180.107400000095367, 256865.695500001311302 ], [ 358195.412900000810623, 256867.509500000625849 ], [ 358196.246200002729893, 256864.349899999797344 ], [ 358180.942500002682209, 256862.324799999594688 ], [ 358180.107400000095367, 256865.695500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302421100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93650245000001, "LATITUDE": 18.34111441, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.001940337400001, "SHAPE_Area": 174.46303515100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358209.372000001370907, 256838.070599999278784 ], [ 358206.859499998390675, 256849.026900000870228 ], [ 358206.7804000005126, 256858.314399998635054 ], [ 358214.030000001192093, 256859.218100000172853 ], [ 358217.384800001978874, 256844.046799998730421 ], [ 358217.422499999403954, 256839.614199999719858 ], [ 358209.372000001370907, 256838.070599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105303120100", "MAP": null, "PARCEL_NAM": "WESTERN CEMETERY", "ACRE": null, "LONGITUDE": -64.94125186, "LATITUDE": 18.34045428, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 743.17104178, "SHAPE_Area": 25760.199510400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357655.763700000941753, 256700.339600000530481 ], [ 357604.316100001335144, 256681.553399998694658 ], [ 357598.689900003373623, 256679.39640000090003 ], [ 357558.626800000667572, 256744.085299998521805 ], [ 357557.798900000751019, 256746.611600000411272 ], [ 357558.583599999547005, 256749.151200000196695 ], [ 357560.187200002372265, 256750.219799999147654 ], [ 357637.228200003504753, 256793.702300000935793 ], [ 357671.768399998545647, 256809.394799999892712 ], [ 357680.614399999380112, 256812.211500000208616 ], [ 357774.708400003612041, 256841.69029999896884 ], [ 357793.2212999984622, 256845.641499999910593 ], [ 357847.980400003492832, 256854.322299998253584 ], [ 357851.2128000035882, 256853.504399999976158 ], [ 357852.841600000858307, 256851.617899999022484 ], [ 357857.427000001072884, 256786.638599999248981 ], [ 357835.735699996352196, 256777.173000000417233 ], [ 357735.317100003361702, 256732.865800000727177 ], [ 357691.936200000345707, 256713.723400000482798 ], [ 357655.763700000941753, 256700.339600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471900", "MAP": null, "PARCEL_NAM": "KRONDPRINSENS GADE 81B", "ACRE": null, "LONGITUDE": -64.93489761, "LATITUDE": 18.34083805, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.08959116099999, "SHAPE_Area": 656.27600615400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358390.667000003159046, 256792.602600000798702 ], [ 358378.569099999964237, 256791.33500000089407 ], [ 358378.277900002896786, 256794.067899998277426 ], [ 358373.076200000941753, 256846.513300001621246 ], [ 358384.26630000025034, 256848.368000000715256 ], [ 358390.361800000071526, 256795.433400001376867 ], [ 358390.667000003159046, 256792.602600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302422300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93638654, "LATITUDE": 18.34105828, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.857475362499997, "SHAPE_Area": 60.848676065100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358217.422499999403954, 256839.614199999719858 ], [ 358217.384800001978874, 256844.046799998730421 ], [ 358230.274999998509884, 256845.4189000017941 ], [ 358231.120899997651577, 256840.781800001859665 ], [ 358217.422499999403954, 256839.614199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302223300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93787524, "LATITUDE": 18.34094778, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.864801076100001, "SHAPE_Area": 224.333699045 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358073.951099999248981, 256832.318199999630451 ], [ 358076.440099999308586, 256824.105900000780821 ], [ 358061.960699997842312, 256819.976599998772144 ], [ 358060.313900001347065, 256823.973900001496077 ], [ 358057.007700003683567, 256833.446100000292063 ], [ 358072.289899997413158, 256838.004099998623133 ], [ 358073.951099999248981, 256832.318199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402120600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91777792000001, "LATITUDE": 18.34076834, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.904240603800005, "SHAPE_Area": 228.07790130500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360191.665700003504753, 256809.96510000154376 ], [ 360185.19539999961853, 256812.234200000762939 ], [ 360189.781499996781349, 256841.824799999594688 ], [ 360197.858999997377396, 256840.202199999243021 ], [ 360191.665700003504753, 256809.96510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501021300", "MAP": "D9-7553-T005", "PARCEL_NAM": "52D", "ACRE": ".895", "LONGITUDE": -64.91314617, "LATITUDE": 18.33986859, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.928202836, "SHAPE_Area": 3229.1112076700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360659.146300002932549, 256763.381099998950958 ], [ 360712.88289999961853, 256758.589299999177456 ], [ 360707.749899998307228, 256714.34180000051856 ], [ 360705.37950000166893, 256708.622800000011921 ], [ 360702.190200001001358, 256704.374899998307228 ], [ 360652.263599999248981, 256696.366900000721216 ], [ 360659.146300002932549, 256763.381099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93692921, "LATITUDE": 18.34010199, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.79023956, "SHAPE_Area": 348.669895543 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358172.536200001835823, 256713.223900001496077 ], [ 358155.22070000320673, 256758.045099999755621 ], [ 358161.653200000524521, 256760.208700001239777 ], [ 358170.71679999679327, 256737.4847999997437 ], [ 358171.542900003492832, 256735.16950000077486 ], [ 358172.361800000071526, 256733.698600001633167 ], [ 358174.827500000596046, 256728.23030000180006 ], [ 358180.565200001001358, 256717.300400000065565 ], [ 358172.536200001835823, 256713.223900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93711688, "LATITUDE": 18.34001488, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.634814882, "SHAPE_Area": 2039.5938798699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358172.536200001835823, 256713.223900001496077 ], [ 358175.01630000025034, 256706.067099999636412 ], [ 358140.44200000166893, 256694.385000001639128 ], [ 358120.640900000929832, 256746.996399998664856 ], [ 358155.22070000320673, 256758.045099999755621 ], [ 358172.536200001835823, 256713.223900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93482152, "LATITUDE": 18.34005389, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.612418164, "SHAPE_Area": 584.74818499499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358399.142399996519089, 256711.278900001198053 ], [ 358386.255800001323223, 256709.484700001776218 ], [ 358385.386500000953674, 256716.865899998694658 ], [ 358381.8412000015378, 256754.411499999463558 ], [ 358394.733199998736382, 256755.572500001639128 ], [ 358399.142399996519089, 256711.278900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9385452, "LATITUDE": 18.34020987, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.666535601999996, "SHAPE_Area": 153.952876374 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358015.877899996936321, 256739.383900001645088 ], [ 358011.817500002682209, 256742.728199999779463 ], [ 358002.917499996721745, 256746.243900001049042 ], [ 357991.632700003683567, 256745.729400001466274 ], [ 357980.371299996972084, 256742.470800001174212 ], [ 357978.722699999809265, 256746.679200001060963 ], [ 357983.538999997079372, 256749.2516999989748 ], [ 357991.602200001478195, 256749.317699998617172 ], [ 358010.951899997889996, 256749.687199998646975 ], [ 358015.877899996936321, 256739.383900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304051300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93532539, "LATITUDE": 18.33978529, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.95052388300002, "SHAPE_Area": 2103.5089009899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358354.935199998319149, 256700.102600000798702 ], [ 358364.460299998521805, 256699.679200001060963 ], [ 358386.255800001323223, 256709.484700001776218 ], [ 358399.142399996519089, 256711.278900001198053 ], [ 358400.864699997007847, 256698.416299998760223 ], [ 358308.270099997520447, 256682.248599998652935 ], [ 358303.41780000180006, 256683.897700000554323 ], [ 358301.792599998414516, 256685.361999999731779 ], [ 358296.733499996364117, 256711.285100001841784 ], [ 358312.028300002217293, 256714.365600001066923 ], [ 358330.542900003492832, 256718.105700001120567 ], [ 358328.67849999666214, 256747.6435999982059 ], [ 358334.315499998629093, 256748.534099999815226 ], [ 358335.885200001299381, 256717.670899998396635 ], [ 358338.636900000274181, 256710.262600000947714 ], [ 358341.811899997293949, 256706.875900000333786 ], [ 358347.526900000870228, 256701.160900000482798 ], [ 358354.935199998319149, 256700.102600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93883382, "LATITUDE": 18.34012785, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.383705017300002, "SHAPE_Area": 128.677411882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357980.371299996972084, 256742.470800001174212 ], [ 357970.733300000429153, 256737.958999998867512 ], [ 357954.695200003683567, 256727.484099999070168 ], [ 357953.840300001204014, 256733.176699999719858 ], [ 357978.722699999809265, 256746.679200001060963 ], [ 357980.371299996972084, 256742.470800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93857504, "LATITUDE": 18.33960818, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 562.31280407899999, "SHAPE_Area": 17806.0746478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357930.644299998879433, 256711.033100001513958 ], [ 357955.557300001382828, 256720.947299998253584 ], [ 357954.695200003683567, 256727.484099999070168 ], [ 357970.733300000429153, 256737.958999998867512 ], [ 357980.371299996972084, 256742.470800001174212 ], [ 357991.632700003683567, 256745.729400001466274 ], [ 358002.917499996721745, 256746.243900001049042 ], [ 358011.817500002682209, 256742.728199999779463 ], [ 358015.877899996936321, 256739.383900001645088 ], [ 358020.76969999819994, 256733.0912000015378 ], [ 358025.641699999570847, 256729.120299998670816 ], [ 358032.932700000703335, 256725.169199999421835 ], [ 358036.971400000154972, 256724.357799999415874 ], [ 358049.894000001251698, 256721.930500000715256 ], [ 358071.702200002968311, 256717.675999999046326 ], [ 358075.74099999666214, 256716.864700000733137 ], [ 358080.598600000143051, 256714.582400001585484 ], [ 358083.847300000488758, 256711.864799998700619 ], [ 358091.186800003051758, 256702.214600000530481 ], [ 358102.109399996697903, 256650.585999999195337 ], [ 358100.532700002193451, 256646.351300001144409 ], [ 358098.930900000035763, 256645.071600001305342 ], [ 358075.569399997591972, 256642.347300000488758 ], [ 358028.823100000619888, 256639.642599999904633 ], [ 357926.56530000269413, 256621.918200001120567 ], [ 357920.912100002169609, 256622.927400000393391 ], [ 357917.65990000218153, 256626.067200001329184 ], [ 357882.457999996840954, 256688.051699999719858 ], [ 357880.012000001966953, 256691.198100000619888 ], [ 357930.644299998879433, 256711.033100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93733389, "LATITUDE": 18.3399523, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.370411835, "SHAPE_Area": 642.10785967599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358140.44200000166893, 256694.385000001639128 ], [ 358129.98870000243187, 256690.921999998390675 ], [ 358109.383100003004074, 256743.315600000321865 ], [ 358120.640900000929832, 256746.996399998664856 ], [ 358140.44200000166893, 256694.385000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304042500", "MAP": null, "PARCEL_NAM": "FILLED LANDS", "ACRE": null, "LONGITUDE": -64.93617965, "LATITUDE": 18.33967185, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.989232394, "SHAPE_Area": 2760.2568836099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358243.287399999797344, 256709.811799999326468 ], [ 358246.529899999499321, 256711.228100001811981 ], [ 358255.282899998128414, 256711.228100001811981 ], [ 358261.755400002002716, 256709.1239 ], [ 358267.258699998259544, 256708.065499998629093 ], [ 358274.207099996507168, 256705.190099999308586 ], [ 358274.221500001847744, 256705.208999998867512 ], [ 358287.9037000015378, 256706.586300000548363 ], [ 358290.532999999821186, 256681.90989999845624 ], [ 358288.938299998641014, 256679.785900000482798 ], [ 358286.530199997127056, 256678.499600000679493 ], [ 358216.478100001811981, 256666.527199998497963 ], [ 358214.052000001072884, 256667.351700000464916 ], [ 358205.042300000786781, 256683.743299998342991 ], [ 358199.328000001609325, 256691.929200001060963 ], [ 358204.254399999976158, 256693.539900001138449 ], [ 358226.697999998927116, 256702.747400000691414 ], [ 358233.684799998998642, 256705.722600001841784 ], [ 358243.287399999797344, 256709.811799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93905506, "LATITUDE": 18.33996614, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.886913424799999, "SHAPE_Area": 162.3773484 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357933.804799996316433, 256718.658300001174212 ], [ 357949.873499996960163, 256725.544799998402596 ], [ 357952.285300001502037, 256726.408900000154972 ], [ 357954.695200003683567, 256727.484099999070168 ], [ 357955.557300001382828, 256720.947299998253584 ], [ 357930.644299998879433, 256711.033100001513958 ], [ 357930.590300001204014, 256717.36540000140667 ], [ 357933.804799996316433, 256718.658300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304060400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93425408, "LATITUDE": 18.33988993, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.14558208700001, "SHAPE_Area": 1055.02893462 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358446.64469999819994, 256719.900400001555681 ], [ 358456.30969999730587, 256721.245999999344349 ], [ 358465.525799997150898, 256722.574099998921156 ], [ 358465.141400001943111, 256725.751299999654293 ], [ 358491.719099998474121, 256729.557399999350309 ], [ 358493.428800001740456, 256718.1722999997437 ], [ 358438.703900001943111, 256705.480999998748302 ], [ 358413.740500003099442, 256701.477000001817942 ], [ 358411.318000003695488, 256701.879399999976158 ], [ 358408.047799997031689, 256707.129900000989437 ], [ 358406.384800001978874, 256713.026900000870228 ], [ 358425.720200002193451, 256715.08500000089407 ], [ 358424.899499997496605, 256716.767099998891354 ], [ 358446.64469999819994, 256719.900400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93942166, "LATITUDE": 18.33983072, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.600882093, "SHAPE_Area": 332.07352513699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357880.012000001966953, 256691.198100000619888 ], [ 357878.383199997246265, 256693.084600001573563 ], [ 357876.743600003421307, 256696.23759999871254 ], [ 357930.590300001204014, 256717.36540000140667 ], [ 357930.644299998879433, 256711.033100001513958 ], [ 357880.012000001966953, 256691.198100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301190900", "MAP": "D9-1410-T78", "PARCEL_NAM": "200-2", "ACRE": "1.00", "LONGITUDE": -64.94564371, "LATITUDE": 18.3394657, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.53146458200001, "SHAPE_Area": 4866.9981214700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357318.238799996674061, 256660.002399999648333 ], [ 357261.121899999678135, 256644.125100001692772 ], [ 357213.012900002300739, 256612.067299999296665 ], [ 357191.4949000030756, 256676.907999999821186 ], [ 357229.334100000560284, 256683.972699999809265 ], [ 357237.431400001049042, 256680.028200000524521 ], [ 357246.318800002336502, 256677.989999998360872 ], [ 357262.448600001633167, 256677.69990000128746 ], [ 357302.694099999964237, 256686.261900000274181 ], [ 357306.740099996328354, 256684.606300000101328 ], [ 357308.359899997711182, 256683.775199998170137 ], [ 357310.022900000214577, 256677.878100000321865 ], [ 357312.47240000218153, 256674.309599999338388 ], [ 357312.488499999046326, 256672.40989999845624 ], [ 357318.238799996674061, 256660.002399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D9-5603-T93", "PARCEL_NAM": "212-C-1", "ACRE": "1.37", "LONGITUDE": -64.94624247, "LATITUDE": 18.33923052, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.65520995600002, "SHAPE_Area": 5730.7550502300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357227.090599998831749, 256568.697299998253584 ], [ 357215.003100000321865, 256567.754000000655651 ], [ 357198.050800003111362, 256569.937300000339746 ], [ 357185.925499998033047, 256573.426600001752377 ], [ 357173.773299999535084, 256580.08219999819994 ], [ 357147.898299999535084, 256683.095100000500679 ], [ 357144.648999996483326, 256696.914099998772144 ], [ 357184.87389999628067, 256697.271600000560284 ], [ 357189.014799997210503, 256684.064899999648333 ], [ 357191.4949000030756, 256676.907999999821186 ], [ 357213.012900002300739, 256612.067299999296665 ], [ 357227.090599998831749, 256568.697299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304010300", "MAP": "D9-7059-T002", "PARCEL_NAM": "47D-1", "ACRE": "0.25", "LONGITUDE": -64.94089022, "LATITUDE": 18.33917069, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.123419887, "SHAPE_Area": 896.74083300899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357769.377499997615814, 256615.565499998629093 ], [ 357758.435999996960163, 256609.077300000935793 ], [ 357752.503300003707409, 256608.25899999961257 ], [ 357748.820900000631809, 256610.304699998348951 ], [ 357729.38629999756813, 256643.445900000631809 ], [ 357729.287600003182888, 256643.556000001728535 ], [ 357749.932499997317791, 256652.024300001561642 ], [ 357769.377499997615814, 256615.565499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94780927, "LATITUDE": 18.33935842, "OBJECTID_1": 10896, "PARCEL_NO_": "105303040300", "Tax_Legal_": "CONTANT 42 7B SOUTHSIDE QTR", "Name": "CAROL M HENDRICKS IRREVOCABLE TRUST", "Address": "683 Manderley Run", "City": "Lake Mary", "State": "Florida", "Zip": 32746, "Country": "United States", "Land_Value": 73300, "Improved_V": 34900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.35546166500001, "SHAPE_Area": 663.72029421599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357042.665200002491474, 256636.004399999976158 ], [ 356995.065800003707409, 256638.781199999153614 ], [ 356994.943499997258186, 256653.134500000625849 ], [ 357040.932099997997284, 256650.133400000631809 ], [ 357042.665200002491474, 256636.004399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404090500", "MAP": "MB.B", "PARCEL_NAM": "13 of 5th Street", "ACRE": "0.11", "LONGITUDE": -64.91859106, "LATITUDE": 18.33932563, "OBJECTID_1": 19401, "PARCEL_NO_": "105404090500", "Tax_Legal_": "13 FIFTH STREET ESTATE THOMAS", "Name": "A&J PROPERTIES LLC", "Address": "PO Box 304843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11500, "Improved_V": 58300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.824346458199997, "SHAPE_Area": 429.60373521499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360121.087099999189377, 256670.487900000065565 ], [ 360114.778599999845028, 256653.759899999946356 ], [ 360092.131700001657009, 256661.807199999690056 ], [ 360098.440200001001358, 256678.535199999809265 ], [ 360121.087099999189377, 256670.487900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303010500", "MAP": "D9-1886-T81", "PARCEL_NAM": "77", "ACRE": null, "LONGITUDE": -64.94974781000001, "LATITUDE": 18.33931641, "OBJECTID_1": 10864, "PARCEL_NO_": "105303010500", "Tax_Legal_": "CONTANT 77 7B SOUTHSIDE QTR", "Name": "NIBBS, GERDA & OTHERS", "Address": "PO Box 302932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.31744727099999, "SHAPE_Area": 925.58994952399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356824.195900000631809, 256629.361099999397993 ], [ 356806.45160000026226, 256629.849199999123812 ], [ 356786.28660000115633, 256630.528499998152256 ], [ 356789.3445999994874, 256650.185300000011921 ], [ 356842.62780000269413, 256642.810899998992682 ], [ 356841.940099999308586, 256628.873100001364946 ], [ 356824.195900000631809, 256629.361099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404060400", "MAP": "D9-112-T56", "PARCEL_NAM": "13 of 1st AVENUE", "ACRE": "4,685 q ft", "LONGITUDE": -64.91986088, "LATITUDE": 18.3392492, "OBJECTID_1": 19344, "PARCEL_NO_": "105404060400", "Tax_Legal_": "13 FIRST AVE,EST THOMAS 6A NEW QTR", "Name": "FLEMING, DAVID LOUIS", "Address": "PO Box 9281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 74400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.24461677, "SHAPE_Area": 739.29683131599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359953.492700003087521, 256655.184000000357628 ], [ 359968.638300001621246, 256675.784099999815226 ], [ 359990.556100003421307, 256658.653799999505281 ], [ 359990.574100002646446, 256656.543000001460314 ], [ 359976.222300000488758, 256637.427099999040365 ], [ 359953.492700003087521, 256655.184000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404100500", "MAP": "MB.B", "PARCEL_NAM": "11 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.9179884, "LATITUDE": 18.33930364, "OBJECTID_1": 19422, "PARCEL_NO_": "105404100500", "Tax_Legal_": "11 SIXTH STREET KINGS QUARTER", "Name": "FREDERICKSEN, ENID", "Address": "PO Box 215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11500, "Improved_V": 9900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.008292908300007, "SHAPE_Area": 443.90030937500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360184.803700000047684, 256668.898499999195337 ], [ 360178.500699996948242, 256651.537200000137091 ], [ 360155.853799998760223, 256659.584499999880791 ], [ 360162.156800001859665, 256676.945700000971556 ], [ 360184.803700000047684, 256668.898499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404130400", "MAP": "D3-153-T46", "PARCEL_NAM": "4 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.9159859, "LATITUDE": 18.33930346, "OBJECTID_1": 19499, "PARCEL_NO_": "105404130400", "Tax_Legal_": "4 TENTH STREET KINGS QUARTER", "Name": "BAIG, SHAKIL & SEEMA", "Address": "PO Box 10447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.273191217499999, "SHAPE_Area": 454.28388972200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360390.560900002717972, 256653.272799998521805 ], [ 360367.105899997055531, 256661.524599999189377 ], [ 360373.410700000822544, 256678.674800001084805 ], [ 360396.865699999034405, 256670.423000000417233 ], [ 360390.560900002717972, 256653.272799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040600", "MAP": "B9-27-T57", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90901736000001, "LATITUDE": 18.33918741, "OBJECTID_1": 20130, "PARCEL_NO_": "105503040600", "Tax_Legal_": "EST THOMAS 17 NEW QTR", "Name": "EPISCOPAL DIOCESE OF THE VI", "Address": "PO Box 7488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.18063383500001, "SHAPE_Area": 2939.9853793100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361130.163400001823902, 256634.206000000238419 ], [ 361120.541599996387959, 256627.794399999082088 ], [ 361117.296499997377396, 256630.089899998158216 ], [ 361087.28320000320673, 256650.953600000590086 ], [ 361067.760799996554852, 256670.847699999809265 ], [ 361141.828299999237061, 256684.75279999896884 ], [ 361143.018799997866154, 256684.976300001144409 ], [ 361160.520999997854233, 256654.549800001084805 ], [ 361158.226099997758865, 256653.011900000274181 ], [ 361130.163400001823902, 256634.206000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9116545, "LATITUDE": 18.33917237, "OBJECTID_1": 19962, "PARCEL_NO_": "105503011000", "Tax_Legal_": "37 ESTATE THOMAS NO.6A NEW QTR", "Name": "ANDUZE, ROY", "Address": "PO Box 7776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41700, "Improved_V": 235000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.48886067800001, "SHAPE_Area": 2891.99221149 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360873.419699996709824, 256671.579100001603365 ], [ 360865.70549999922514, 256630.563799999654293 ], [ 360854.444099999964237, 256627.305300001055002 ], [ 360844.770099997520447, 256627.015000000596046 ], [ 360839.921499997377396, 256628.241900000721216 ], [ 360834.266500003635883, 256629.462200000882149 ], [ 360814.013400003314018, 256640.484400000423193 ], [ 360808.356600001454353, 256641.915699999779463 ], [ 360805.124099999666214, 256642.733600001782179 ], [ 360810.478799998760223, 256676.7635000012815 ], [ 360830.60249999910593, 256680.938999999314547 ], [ 360842.697200000286102, 256681.037999998778105 ], [ 360854.005300000309944, 256678.808499999344349 ], [ 360873.419699996709824, 256671.579100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040500", "MAP": "B9-27-T57", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90963318, "LATITUDE": 18.33911743, "OBJECTID_1": 20129, "PARCEL_NO_": "105503040500", "Tax_Legal_": "14 ESTATE THOMAS NEW QUARTER", "Name": "LANGDON, DENA & DAVID E. BENSON & BONNIE MACBEAN-BENSON", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54000, "Improved_V": 236100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.53023530300001, "SHAPE_Area": 2184.6973082200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361087.28320000320673, 256650.953600000590086 ], [ 361075.267599999904633, 256641.567099999636412 ], [ 361060.120300002396107, 256621.178199999034405 ], [ 361039.892300002276897, 256629.245299998670816 ], [ 361034.215800002217293, 256632.998500000685453 ], [ 361028.503300003707409, 256640.973299998790026 ], [ 361023.517899997532368, 256658.242199998348951 ], [ 361058.790700003504753, 256682.595499999821186 ], [ 361067.760799996554852, 256670.847699999809265 ], [ 361087.28320000320673, 256650.953600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303011000", "MAP": "G9-2328-T74", "PARCEL_NAM": "82A", "ACRE": null, "LONGITUDE": -64.95024506, "LATITUDE": 18.33929168, "OBJECTID_1": 10868, "PARCEL_NO_": "105303011000", "Tax_Legal_": "CONTANT 82A&82B 7B S S QTR", "Name": "NESBITT, D L. S & SHACKELTON, JOY", "Address": "PO Box 302934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53600, "Improved_V": 240800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.746692292099993, "SHAPE_Area": 500.49433856799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356770.964800000190735, 256630.614199999719858 ], [ 356770.228699997067451, 256622.375500001013279 ], [ 356749.250200003385544, 256623.892599999904633 ], [ 356751.4712999984622, 256647.131099998950958 ], [ 356772.440800003707409, 256646.669399999082088 ], [ 356770.964800000190735, 256630.614199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404110900", "MAP": "MB.B", "PARCEL_NAM": "9 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91740499, "LATITUDE": 18.33928415, "OBJECTID_1": 19450, "PARCEL_NO_": "105404110900", "Tax_Legal_": "9 SEVENTH STREET KINGS QUARTER", "Name": "DEWINDT, ALCENTA", "Address": "PO BOX 12057", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.690009505199995, "SHAPE_Area": 458.79422749899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360246.911399997770786, 256666.873599998652935 ], [ 360240.606499999761581, 256649.723499998450279 ], [ 360217.149700000882149, 256658.186299998313189 ], [ 360223.452799998223782, 256675.547600001096725 ], [ 360246.911399997770786, 256666.873599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303120200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94172253000001, "LATITUDE": 18.33917685, "OBJECTID_1": 11017, "PARCEL_NO_": "105303120200", "Tax_Legal_": "1 REM DEMARARA KRONDPRINDSENS QUARTER", "Name": "CHEVRON PUERTO RICO LLC", "Address": "PO BOX 11961", "City": "San Juan", "State": "Puerto Rico", "Zip": 922, "Country": "United States", "Land_Value": 289700, "Improved_V": 142800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.25614205, "SHAPE_Area": 1487.44048649 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357628.100199997425079, 256634.674199998378754 ], [ 357674.720600001513958, 256652.15430000051856 ], [ 357691.204700000584126, 256610.281599998474121 ], [ 357645.180200003087521, 256617.504299998283386 ], [ 357636.267599999904633, 256622.497600000351667 ], [ 357628.100199997425079, 256634.674199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404120700", "MAP": "MB.B", "PARCEL_NAM": "7 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91683266, "LATITUDE": 18.33925777, "OBJECTID_1": 19474, "PARCEL_NO_": "105404120700", "Tax_Legal_": "EIGHTH STREET 7 KINGS QUARTER", "Name": "INFINITY INVESTORS LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36000, "Improved_V": 574600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.357709019200001, "SHAPE_Area": 466.87989089400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360307.40820000320673, 256664.624600000679493 ], [ 360301.106899999082088, 256647.052200000733137 ], [ 360277.648299999535084, 256655.726199999451637 ], [ 360283.949600003659725, 256673.298500001430511 ], [ 360307.40820000320673, 256664.624600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303110200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94263873, "LATITUDE": 18.33916127, "OBJECTID_1": 11016, "PARCEL_NO_": "105303110200", "Tax_Legal_": "ALTONA & WELGUNST 192 CROWN PRINCE QTR", "Name": "EMPIRE REALTY", "Address": "6824 Creenoak Dr", "City": "Douglasville", "State": "Georgia", "Zip": 30135, "Country": "United States", "Land_Value": 103600, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.31184218199999, "SHAPE_Area": 610.96137069500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357591.677699998021126, 256650.630300000309944 ], [ 357580.529500000178814, 256634.073699999600649 ], [ 357578.171700000762939, 256626.877199999988079 ], [ 357578.216700002551079, 256621.600299999117851 ], [ 357575.821099996566772, 256618.836399998515844 ], [ 357552.452500000596046, 256616.956399999558926 ], [ 357528.309799998998642, 256611.270399998873472 ], [ 357591.677699998021126, 256650.630300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404090600", "MAP": "MB.B", "PARCEL_NAM": "14 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91836117, "LATITUDE": 18.33924551, "OBJECTID_1": 19402, "PARCEL_NO_": "105404090600", "Tax_Legal_": "STREET 14-6TH ESTATE THOMAS", "Name": "EARL W DANIEL & CATHERINE DANIEL REVOCABLE TRUST", "Address": "PO Box 10877", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10500, "Improved_V": 90100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.840911500999994, "SHAPE_Area": 488.919886566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360141.465999998152256, 256644.690200001001358 ], [ 360114.778599999845028, 256653.759899999946356 ], [ 360121.087099999189377, 256670.487900000065565 ], [ 360146.971799999475479, 256660.989399999380112 ], [ 360141.465999998152256, 256644.690200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94930442, "LATITUDE": 18.3392174, "OBJECTID_1": 10882, "PARCEL_NO_": "105303021300", "Tax_Legal_": "CONTANT 58A 7B SOUTHSIDE QTR", "Name": "NIBBS, DIMITRI A. & TERRI", "Address": "11748 Streeter Rd", "City": "Auburn", "State": "California", "Zip": 95602, "Country": "United States", "Land_Value": 31900, "Improved_V": 241600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.519622339600005, "SHAPE_Area": 354.311613303 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356868.370800003409386, 256639.218600001186132 ], [ 356867.059900000691414, 256614.513199999928474 ], [ 356852.589900001883507, 256616.664799999445677 ], [ 356853.245399996638298, 256639.673599999397993 ], [ 356868.370800003409386, 256639.218600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94863938, "LATITUDE": 18.33912166, "OBJECTID_1": 10888, "PARCEL_NO_": "105303030500", "Tax_Legal_": "CONTANT 5O SOUTHSIDE QTER", "Name": "BENJAMIN, MABEL", "Address": "PO Box 306311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59000, "Improved_V": 41900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.012837617, "SHAPE_Area": 657.16787211400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356924.880599997937679, 256642.428599998354912 ], [ 356939.405000001192093, 256641.280900001525879 ], [ 356934.995099999010563, 256591.004599999636412 ], [ 356925.3175999969244, 256591.136500000953674 ], [ 356923.697800002992153, 256591.967599999159575 ], [ 356924.880599997937679, 256642.428599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501021800", "MAP": "D9-8433-T010", "PARCEL_NAM": "56 A-A", "ACRE": ".02", "LONGITUDE": -64.91442565, "LATITUDE": 18.33929497, "OBJECTID_1": 19765, "PARCEL_NO_": "105501021800", "Tax_Legal_": "56A-A ROW ESTATE THOMAS NO. 6A NEW QUARTER", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.174160695300003, "SHAPE_Area": 99.770869387100007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360564.535599999129772, 256670.517799999564886 ], [ 360550.355599999427795, 256665.919199999421835 ], [ 360536.265600003302097, 256662.045899998396635 ], [ 360531.998400002717972, 256660.923200000077486 ], [ 360531.207000002264977, 256660.422400001436472 ], [ 360530.020499996840954, 256658.213899999856949 ], [ 360527.594400003552437, 256659.038400001823902 ], [ 360529.986400000751019, 256662.224399998784065 ], [ 360558.128200002014637, 256671.742800001055002 ], [ 360562.95889999717474, 256672.626800000667572 ], [ 360564.535599999129772, 256670.517799999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404100600", "MAP": "MB.B", "PARCEL_NAM": "12 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91777097000001, "LATITUDE": 18.33922639, "OBJECTID_1": 19423, "PARCEL_NO_": "105404100600", "Tax_Legal_": "12 SEVENTHS ST KINGS QUARTER", "Name": "FREDERICKSEN, ENID", "Address": "PO Box 215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.961723340399999, "SHAPE_Area": 461.94252611899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360201.959299996495247, 256642.863299999386072 ], [ 360178.500699996948242, 256651.537200000137091 ], [ 360184.803700000047684, 256668.898499999195337 ], [ 360208.262299999594688, 256660.224500000476837 ], [ 360201.959299996495247, 256642.863299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404130500", "MAP": "MB.B", "PARCEL_NAM": "5 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91626285, "LATITUDE": 18.33922499, "OBJECTID_1": 19500, "PARCEL_NO_": "105404130500", "Tax_Legal_": "5 NINTH STREET KINGS QUARTER", "Name": "RITTER, MALCOLM A", "Address": "PO Box 7312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 85900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.247812059799998, "SHAPE_Area": 443.987303113 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360367.105899997055531, 256661.524599999189377 ], [ 360361.607299998402596, 256644.381000000983477 ], [ 360338.152300000190735, 256652.632800001651049 ], [ 360344.45719999819994, 256669.782999999821186 ], [ 360367.105899997055531, 256661.524599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94916636000001, "LATITUDE": 18.33920706, "OBJECTID_1": 10876, "PARCEL_NO_": "105303020600", "Tax_Legal_": "CONTANT 57 SOUTHSIDE QTR. 7B", "Name": "ANTHONY, JOHN & ALICIA", "Address": "PO Box 8192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.603912777299996, "SHAPE_Area": 381.94531535 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356882.982900001108646, 256638.497099999338388 ], [ 356881.591499999165535, 256612.521200001239777 ], [ 356867.059900000691414, 256614.513199999928474 ], [ 356868.449500001966953, 256640.700199998915195 ], [ 356882.982900001108646, 256638.497099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94851799, "LATITUDE": 18.33910535, "OBJECTID_1": 10891, "PARCEL_NO_": "105303030800", "Tax_Legal_": "CONTANT 49 SOUTHSIDE QUARTER", "Name": "ROBINSON, CHRISTIANA", "Address": "49 ESTATE CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.755397528, "SHAPE_Area": 644.91572748900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356952.316799998283386, 256640.120099999010563 ], [ 356947.897900000214577, 256590.899099998176098 ], [ 356934.995099999010563, 256591.004599999636412 ], [ 356939.405000001192093, 256641.280900001525879 ], [ 356952.316799998283386, 256640.120099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94839853000001, "LATITUDE": 18.3390968, "OBJECTID_1": 10889, "PARCEL_NO_": "105303030600", "Tax_Legal_": "CONTANT 48 SOUTHSIDE QTER", "Name": "LAWRENCE, EDITH", "Address": "3037 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59000, "Improved_V": 50000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.970850313, "SHAPE_Area": 606.95956888700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356962.226300001144409, 256612.75899999961257 ], [ 356960.800700001418591, 256590.793600000441074 ], [ 356947.897900000214577, 256590.899099998176098 ], [ 356952.316799998283386, 256640.120099999010563 ], [ 356964.420500002801418, 256639.163600001484156 ], [ 356962.226300001144409, 256612.75899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404111000", "MAP": "D9-3058-T85", "PARCEL_NAM": "10 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91719496, "LATITUDE": 18.33918684, "OBJECTID_1": 19452, "PARCEL_NO_": "105404111000", "Tax_Legal_": "EIGHTH STREET 10 KINGS QUARTER", "Name": "CLASSEN, CARLOS", "Address": "PO Box 10755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 91400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.431816203899999, "SHAPE_Area": 543.98105295200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360261.67849999666214, 256637.23030000180006 ], [ 360239.028099998831749, 256645.699799999594688 ], [ 360240.606499999761581, 256649.723499998450279 ], [ 360246.911399997770786, 256666.873599998652935 ], [ 360269.56360000371933, 256658.19310000166297 ], [ 360261.67849999666214, 256637.23030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91118731, "LATITUDE": 18.33914496, "OBJECTID_1": 19964, "PARCEL_NO_": "105503011200", "Tax_Legal_": "THOMAS ESTATE 35 6a NEW QTR.", "Name": "NIELSEN, RUTH M", "Address": "PO Box 9525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.91898009499999, "SHAPE_Area": 1389.5735562699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360865.70549999922514, 256630.563799999654293 ], [ 360873.419699996709824, 256671.579100001603365 ], [ 360904.090199999511242, 256668.241599999368191 ], [ 360915.400100000202656, 256665.800999999046326 ], [ 360907.572599999606609, 256638.083700001239777 ], [ 360901.923000000417233, 256638.670699998736382 ], [ 360891.446299999952316, 256637.951699998229742 ], [ 360865.70549999922514, 256630.563799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9490325, "LATITUDE": 18.33910143, "OBJECTID_1": 10877, "PARCEL_NO_": "105303020700", "Tax_Legal_": "CONTANT 56 7B SOUTHSIDE QUARTER", "Name": "BENJAMIN, AUSTIN", "Address": "PO Box 9212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59000, "Improved_V": 132300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.95407090499999, "SHAPE_Area": 695.97835026200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356880.149700000882149, 256592.45549999922514 ], [ 356881.591499999165535, 256612.521200001239777 ], [ 356882.982900001108646, 256638.497099999338388 ], [ 356892.667700000107288, 256637.520899999886751 ], [ 356898.317299999296665, 256636.933899998664856 ], [ 356895.475000001490116, 256591.947700001299381 ], [ 356880.149700000882149, 256592.45549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94823234, "LATITUDE": 18.33918659, "OBJECTID_1": 10890, "PARCEL_NO_": "105303030700", "Tax_Legal_": "CONTANT 47 7B SOUTHSIDE QTR", "Name": "SYDNEY, VICTOR E", "Address": "PO BOX 304925", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 83400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.317411459400006, "SHAPE_Area": 549.08924201100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356984.007600001990795, 256611.670699998736382 ], [ 356962.226300001144409, 256612.75899999961257 ], [ 356964.420500002801418, 256639.163600001484156 ], [ 356984.594499997794628, 256637.428899999707937 ], [ 356984.007600001990795, 256611.670699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94779651, "LATITUDE": 18.33920649, "OBJECTID_1": 10897, "PARCEL_NO_": "105303040400", "Tax_Legal_": "CONTANT 41 7B SOUTHSIDE QTR", "Name": "CAROL M HENDRICKS IRREVOCABLE TRUST", "Address": "683 Manderley Run", "City": "Lake Mary", "State": "Florida", "Zip": 32746, "Country": "United States", "Land_Value": 46900, "Improved_V": 33800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.299052053, "SHAPE_Area": 949.33487799600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357044.382100000977516, 256623.774999998509884 ], [ 357046.059500001370907, 256616.189300000667572 ], [ 356994.417700000107288, 256620.199599999934435 ], [ 356995.065800003707409, 256638.781199999153614 ], [ 357042.665200002491474, 256636.004399999976158 ], [ 357044.328100003302097, 256630.107299998402596 ], [ 357044.382100000977516, 256623.774999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105503016400", "MAP": "D9-8433-T010", "PARCEL_NAM": "56A-1A", "ACRE": ".009", "LONGITUDE": -64.91459774, "LATITUDE": 18.33914594, "OBJECTID_1": 19990, "PARCEL_NO_": "105503016400", "Tax_Legal_": "56A-1A R.O.W. ESTATE THOMAS NO. 6A NEW QUARTER", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.974580585600002, "SHAPE_Area": 42.891721113899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360530.020499996840954, 256658.213899999856949 ], [ 360530.124799996614456, 256645.9712999984622 ], [ 360530.160800002515316, 256641.749699998646975 ], [ 360527.756300002336502, 256640.041299998760223 ], [ 360527.702299997210503, 256646.373700000345707 ], [ 360527.594400003552437, 256659.038400001823902 ], [ 360530.020499996840954, 256658.213899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94887707, "LATITUDE": 18.33908803, "OBJECTID_1": 10878, "PARCEL_NO_": "105303020800", "Tax_Legal_": "CONTANT 55 7B SOUTHSIDE QUARTER", "Name": "ASTRID, LUCINDA, & KENNETH A. BENJAMIN", "Address": "BOX 4781", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59000, "Improved_V": 73200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.96317825600001, "SHAPE_Area": 789.25081744600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356895.475000001490116, 256591.947700001299381 ], [ 356898.317299999296665, 256636.933899998664856 ], [ 356915.264200001955032, 256635.383799999952316 ], [ 356914.011200003325939, 256593.154899999499321 ], [ 356913.219300001859665, 256591.459600001573563 ], [ 356895.475000001490116, 256591.947700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404120800", "MAP": "MB.B", "PARCEL_NAM": "8 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91661489000001, "LATITUDE": 18.3391803, "OBJECTID_1": 19475, "PARCEL_NO_": "105404120800", "Tax_Legal_": "8 NINTH STREET KINGS QUARTER", "Name": "FRANCIS, ACIA & JOSEPH", "Address": "PO Box 6226", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33310, "Country": "United States", "Land_Value": 11500, "Improved_V": 67000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.802677842500003, "SHAPE_Area": 453.433665168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360323.755599997937679, 256638.7939000017941 ], [ 360301.106899999082088, 256647.052200000733137 ], [ 360307.40820000320673, 256664.624600000679493 ], [ 360330.053300000727177, 256656.788400001823902 ], [ 360323.755599997937679, 256638.7939000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503016500", "MAP": "D9-8433-T010", "PARCEL_NAM": "10A", "ACRE": ".27", "LONGITUDE": -64.91415916, "LATITUDE": 18.33862531, "OBJECTID_1": 19991, "PARCEL_NO_": "105503016500", "Tax_Legal_": "10A R.O.W. ESTATE THOMAS 6A NEW QUARTER", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 176400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.64043523800001, "SHAPE_Area": 772.14852079800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360530.160800002515316, 256641.749699998646975 ], [ 360532.175399996340275, 256615.002700001001358 ], [ 360533.108199998736382, 256609.644600000232458 ], [ 360536.222999997437, 256604.848000001162291 ], [ 360539.975199997425079, 256599.697299998253584 ], [ 360544.152199998497963, 256595.886199999600649 ], [ 360547.758299998939037, 256594.26799999922514 ], [ 360625.777800001204014, 256583.927600000053644 ], [ 360629.929799996316433, 256583.138000000268221 ], [ 360648.235200002789497, 256581.092500001192093 ], [ 360647.640699997544289, 256576.42790000140667 ], [ 360615.348700001835823, 256580.807700000703335 ], [ 360582.262900002300739, 256583.703299999237061 ], [ 360545.935699999332428, 256588.472199998795986 ], [ 360540.271700002253056, 256590.747900001704693 ], [ 360532.955600000917912, 256597.654100000858307 ], [ 360529.660199999809265, 256605.859700001776218 ], [ 360527.756300002336502, 256640.041299998760223 ], [ 360530.160800002515316, 256641.749699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404090700", "MAP": "MB.B", "PARCEL_NAM": "15 of 5th street", "ACRE": "0.11", "LONGITUDE": -64.91865205000001, "LATITUDE": 18.33917306, "OBJECTID_1": 19403, "PARCEL_NO_": "105404090700", "Tax_Legal_": "15 FIFTH STREET ESTATE THOMAS", "Name": "REYES, ANA J", "Address": "2403 Store Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36000, "Improved_V": 64400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.613090807800006, "SHAPE_Area": 439.13548141000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360114.778599999845028, 256653.759899999946356 ], [ 360108.473800003528595, 256636.609700001776218 ], [ 360085.826899997889996, 256644.657000001519918 ], [ 360092.131700001657009, 256661.807199999690056 ], [ 360114.778599999845028, 256653.759899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91031183, "LATITUDE": 18.33923749, "OBJECTID_1": 19967, "PARCEL_NO_": "105503011500", "Tax_Legal_": "32A REM. ESTATE THOMAS NEW QUARTER", "Name": "ROBERT G. MORON & LUZ A. MORON REVOC FAMILY TRUST", "Address": "PO BOX 11022", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.05126641886, "SHAPE_Area": 3.903e-05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360981.772399999201298, 256663.652499999850988 ], [ 360981.790500000119209, 256663.653299998492002 ], [ 360981.765900000929832, 256663.647900000214577 ], [ 360981.772399999201298, 256663.652499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503011600", "MAP": "D9-5020-T90", "PARCEL_NAM": "32 REM", "ACRE": ".009", "LONGITUDE": -64.91021082, "LATITUDE": 18.33906107, "OBJECTID_1": 19968, "PARCEL_NO_": "105503011600", "Tax_Legal_": "32 ESTATE THOMAS NEW QUARTER", "Name": "MONSANTO FAMILY TRUST", "Address": "PO Box 7513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35600, "Improved_V": 176800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.778418063, "SHAPE_Area": 2183.7746420399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360993.7787000015378, 256615.63740000128746 ], [ 360982.096699997782707, 256629.051399998366833 ], [ 360977.518681191897485, 256633.940785769722424 ], [ 360972.552060938847717, 256638.43489665738889 ], [ 360967.230853117769584, 256642.502954760857392 ], [ 360961.591499999165535, 256646.11710000038147 ], [ 360954.434348009643145, 256651.146039542218205 ], [ 360947.14919999986887, 256655.987700000405312 ], [ 361007.296400003135204, 256669.297400001436472 ], [ 361008.927000001072884, 256667.199799999594688 ], [ 361015.508799999952316, 256651.843800000846386 ], [ 361020.483300000429153, 256635.841400001198053 ], [ 361023.767899997532368, 256628.902199998497963 ], [ 361025.4003000035882, 256626.593499999493361 ], [ 360993.7787000015378, 256615.63740000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91064486, "LATITUDE": 18.33894763, "OBJECTID_1": 19971, "PARCEL_NO_": "105503011900", "Tax_Legal_": "33 ESTATE THOMAS NEW QUARTER", "Name": "ROBERT MORON & LUZ MORON REVOCABLE FAMILY TRUST", "Address": "PO BOX 11022", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41200, "Improved_V": 145800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.93463203499999, "SHAPE_Area": 3061.59192209 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360937.857600003480911, 256661.779100000858307 ], [ 360947.14919999986887, 256655.987700000405312 ], [ 360954.434348009643145, 256651.146039542218205 ], [ 360961.591499999165535, 256646.11710000038147 ], [ 360967.230853117711376, 256642.502954760828288 ], [ 360972.552060938789509, 256638.434896657330683 ], [ 360977.518681191839278, 256633.940785769693321 ], [ 360982.096699997782707, 256629.051399998366833 ], [ 360993.7787000015378, 256615.63740000128746 ], [ 360983.592500001192093, 256612.1081000007689 ], [ 360928.116999998688698, 256592.866700001060963 ], [ 360934.470399998128414, 256604.317800000309944 ], [ 360935.251500003039837, 256607.279500000178814 ], [ 360933.527400001883507, 256620.353199999779463 ], [ 360931.074299998581409, 256624.343899998813868 ], [ 360922.94650000333786, 256631.8766999989748 ], [ 360914.849200002849102, 256635.821199998259544 ], [ 360907.572599999606609, 256638.083700001239777 ], [ 360915.400100000202656, 256665.800999999046326 ], [ 360924.300200000405312, 256662.285300001502037 ], [ 360926.668700002133846, 256668.215300001204014 ], [ 360937.857600003480911, 256661.779100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404130600", "MAP": "MB.B", "PARCEL_NAM": "6 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91604438, "LATITUDE": 18.33914871, "OBJECTID_1": 19501, "PARCEL_NO_": "105404130600", "Tax_Legal_": "6 TENTH STREET KINGS QUARTER", "Name": "RAMSAY-JOHNSON, EDITH & MAHLENA", "Address": "PO Box 7065", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 111400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.5202918289, "SHAPE_Area": 447.05135832399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360384.257799997925758, 256635.911499999463558 ], [ 360361.607299998402596, 256644.381000000983477 ], [ 360367.105899997055531, 256661.524599999189377 ], [ 360390.560900002717972, 256653.272799998521805 ], [ 360384.257799997925758, 256635.911499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404100700", "MAP": "MB.B", "PARCEL_NAM": "13 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91804939, "LATITUDE": 18.33914917, "OBJECTID_1": 19425, "PARCEL_NO_": "105404100700", "Tax_Legal_": "13 SIXTH STREET KINGS QUARTER", "Name": "METHODIST MISSIONARY", "Address": "PO Box 1045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11500, "Improved_V": 4800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.218309921300005, "SHAPE_Area": 434.368761339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360178.500699996948242, 256651.537200000137091 ], [ 360172.193999998271465, 256634.598099999129772 ], [ 360149.547200001776218, 256642.645399998873472 ], [ 360155.853799998760223, 256659.584499999880791 ], [ 360178.500699996948242, 256651.537200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303011200", "MAP": "G9-2542-T76", "PARCEL_NAM": "81A", "ACRE": null, "LONGITUDE": -64.95010036, "LATITUDE": 18.33908893, "OBJECTID_1": 10870, "PARCEL_NO_": "105303011200", "Tax_Legal_": "CONTANT 81A 7B S S QTR", "Name": "LAPLANTE, SERGIO", "Address": "PO Box 308117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.534215669600002, "SHAPE_Area": 503.04782653500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356786.30460000038147, 256628.417700000107288 ], [ 356780.946299999952316, 256594.809999998658895 ], [ 356767.231799997389317, 256595.542100001126528 ], [ 356770.228699997067451, 256622.375500001013279 ], [ 356770.964800000190735, 256630.614199999719858 ], [ 356786.30460000038147, 256628.417700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303010600", "MAP": "G9-1060-T68", "PARCEL_NAM": "80", "ACRE": null, "LONGITUDE": -64.94992853, "LATITUDE": 18.33907796, "OBJECTID_1": 10865, "PARCEL_NO_": "105303010600", "Tax_Legal_": "CONTANT 80 7B SOUTHSIDE QTR", "Name": "CHRISTIAN (LIFE ESTATE), LORENE", "Address": "PO BOX 302342", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55700, "Improved_V": 62000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.361898647, "SHAPE_Area": 784.994346597 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356806.45160000026226, 256629.849199999123812 ], [ 356804.343699999153614, 256593.312800001353025 ], [ 356780.946299999952316, 256594.809999998658895 ], [ 356786.30460000038147, 256628.417700000107288 ], [ 356786.28660000115633, 256630.528499998152256 ], [ 356806.45160000026226, 256629.849199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404111100", "MAP": "G9-1114-T68", "PARCEL_NAM": "11 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91746579, "LATITUDE": 18.33913046, "OBJECTID_1": 19453, "PARCEL_NO_": "105404111100", "Tax_Legal_": "SEVENTH STREET 11 KINGS QUARTER", "Name": "CEPEDA, DOROTHY", "Address": "181 Lenox Rd", "City": "Brooklyn", "State": "New York", "Zip": 11226, "Country": "United States", "Land_Value": 11500, "Improved_V": 16900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.901428825099998, "SHAPE_Area": 448.24082885799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360239.028099998831749, 256645.699799999594688 ], [ 360234.299900002777576, 256632.784400001168251 ], [ 360210.841300003230572, 256641.458299998193979 ], [ 360217.149700000882149, 256658.186299998313189 ], [ 360240.606499999761581, 256649.723499998450279 ], [ 360239.028099998831749, 256645.699799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94974241, "LATITUDE": 18.33907546, "OBJECTID_1": 10866, "PARCEL_NO_": "105303010700", "Tax_Legal_": "CONTANT 79 7B SOUTHSIDE QTR", "Name": "DAVID, DOROTHY,SHIRLEY D. RICHARDSON & OTHERS", "Address": "PO Box 1162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 48100, "Improved_V": 93700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.053002277, "SHAPE_Area": 642.959171545 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356824.195900000631809, 256629.361099999397993 ], [ 356822.082599997520447, 256593.457899998873472 ], [ 356804.343699999153614, 256593.312800001353025 ], [ 356806.45160000026226, 256629.849199999123812 ], [ 356824.195900000631809, 256629.361099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94957082000001, "LATITUDE": 18.33906977, "OBJECTID_1": 10867, "PARCEL_NO_": "105303010800", "Tax_Legal_": "CONTANT 78 7B SOUTHSIDE QTR", "Name": "BENTON, JAMES E", "Address": "BOX 3946", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56700, "Improved_V": 45700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.541106302, "SHAPE_Area": 662.27616620100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356822.082599997520447, 256593.457899998873472 ], [ 356824.195900000631809, 256629.361099999397993 ], [ 356841.940099999308586, 256628.873100001364946 ], [ 356841.435900002717972, 256593.405200000852346 ], [ 356822.082599997520447, 256593.457899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404140100", "MAP": "D9-112-T56", "PARCEL_NAM": "15 of 1st AVENUE", "ACRE": "4,692", "LONGITUDE": -64.91967029, "LATITUDE": 18.33910287, "OBJECTID_1": 19525, "PARCEL_NO_": "105404140100", "Tax_Legal_": "15 FIRST AVENUE NEW QUARTER", "Name": "MADDOX, LAWRENCE & SHELFORD, J", "Address": "PO Box 304910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11500, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.85017238, "SHAPE_Area": 469.09102132700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359977.845799997448921, 256636.173799999058247 ], [ 359992.197499997913837, 256655.289700001478195 ], [ 359994.616499997675419, 256655.309500001370907 ], [ 360007.605599999427795, 256645.072299998253584 ], [ 359992.45830000191927, 256624.683299999684095 ], [ 359977.845799997448921, 256636.173799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404120900", "MAP": "MB.B", "PARCEL_NAM": "9 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91689384, "LATITUDE": 18.33910102, "OBJECTID_1": 19476, "PARCEL_NO_": "105404120900", "Tax_Legal_": "EIGHTH STREET 9 KINGS QUARTER", "Name": "CLARKE, GWENDOLYN", "Address": "PO Box 7723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72000, "Improved_V": 39700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.689940878100003, "SHAPE_Area": 458.79337068500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360301.106899999082088, 256647.052200000733137 ], [ 360294.802100002765656, 256629.902100000530481 ], [ 360271.345299996435642, 256638.364900000393391 ], [ 360277.648299999535084, 256655.726199999451637 ], [ 360301.106899999082088, 256647.052200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404090800", "MAP": "MB.B", "PARCEL_NAM": "16 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91841893, "LATITUDE": 18.33909272, "OBJECTID_1": 19404, "PARCEL_NO_": "105404090800", "Tax_Legal_": "16 SIXTH STREET ESTATE THOMAS", "Name": "GIFFT-HARRIGAN, ENA MARIA", "Address": "PO Box 471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72000, "Improved_V": 135600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.455378546299997, "SHAPE_Area": 521.85609027600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360135.164800003170967, 256627.117800001055002 ], [ 360108.473800003528595, 256636.609700001776218 ], [ 360114.778599999845028, 256653.759899999946356 ], [ 360141.465999998152256, 256644.690200001001358 ], [ 360135.164800003170967, 256627.117800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303010100", "MAP": "F9-818-T61", "PARCEL_NAM": "82", "ACRE": null, "LONGITUDE": -64.95027057, "LATITUDE": 18.33906333, "OBJECTID_1": 10860, "PARCEL_NO_": "105303010100", "Tax_Legal_": "CONTANT 82 7B SOUTHSIDE QUARTER", "Name": "NESBITT, D L. S, & SHACKLTON, JOY", "Address": "PO Box 1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35500, "Improved_V": 66200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.5688006659, "SHAPE_Area": 559.72712033100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356767.231799997389317, 256595.542100001126528 ], [ 356747.063199996948242, 256596.6435999982059 ], [ 356749.250200003385544, 256623.892599999904633 ], [ 356770.228699997067451, 256622.375500001013279 ], [ 356767.231799997389317, 256595.542100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404100800", "MAP": "MB.B", "PARCEL_NAM": "14 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91783196, "LATITUDE": 18.33907192, "OBJECTID_1": 19427, "PARCEL_NO_": "105404100800", "Tax_Legal_": "14 SEVENTH STREET KINGS QUARTER", "Name": "METHODIST MISSIONARY", "Address": "PO Box 1045", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.171801313100005, "SHAPE_Area": 452.07125639899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360195.65259999781847, 256625.924199998378754 ], [ 360172.193999998271465, 256634.598099999129772 ], [ 360178.500699996948242, 256651.537200000137091 ], [ 360201.959299996495247, 256642.863299999386072 ], [ 360195.65259999781847, 256625.924199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404130700", "MAP": "MB.B", "PARCEL_NAM": "7 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.9163215, "LATITUDE": 18.33906987, "OBJECTID_1": 19502, "PARCEL_NO_": "105404130700", "Tax_Legal_": "NINTH STREET 7 KINGS QUARTER", "Name": "RITTER, MALCOLM A", "Address": "PO Box 7312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.668520799500001, "SHAPE_Area": 459.22038699799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360361.607299998402596, 256644.381000000983477 ], [ 360355.304300002753735, 256627.01969999819994 ], [ 360331.849299997091293, 256635.271499998867512 ], [ 360338.152300000190735, 256652.632800001651049 ], [ 360361.607299998402596, 256644.381000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303080600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94705809, "LATITUDE": 18.33895698, "OBJECTID_1": 10951, "PARCEL_NO_": "105303080600", "Tax_Legal_": "ALTONA & WELGUNST 214B-2 CROWN PRINCE QUARTER", "Name": "O. K. JUNCTION, INC.", "Address": "PO Box 307773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 122300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.94499640199999, "SHAPE_Area": 1413.9151811900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357122.822800002992153, 256597.6081000007689 ], [ 357110.150100000202656, 256570.695500001311302 ], [ 357066.249600000679493, 256612.554900001734495 ], [ 357100.01410000026226, 256624.652499999850988 ], [ 357104.929300002753735, 256615.615699999034405 ], [ 357122.822800002992153, 256597.6081000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94726568, "LATITUDE": 18.33864456, "OBJECTID_1": 10900, "PARCEL_NO_": "105303040700", "Tax_Legal_": "ALTONA & WELGUNST 211 CROWN PRINCE QTR", "Name": "MEDICAL ARTS COMPLEX INC", "Address": "PO Box 8237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 191100, "Improved_V": 3272200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.66893152099999, "SHAPE_Area": 3053.60371558 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357054.787900000810623, 256538.156199999153614 ], [ 357049.518500000238419, 256588.775499999523163 ], [ 357046.059500001370907, 256616.189300000667572 ], [ 357044.382100000977516, 256623.774999998509884 ], [ 357046.80460000038147, 256623.372600000351667 ], [ 357049.263099998235703, 256618.748700000345707 ], [ 357058.229699999094009, 256607.423000000417233 ], [ 357124.899300001561642, 256543.162999998778105 ], [ 357125.732600003480911, 256540.003400001674891 ], [ 357123.326300002634525, 256538.506000000983477 ], [ 357054.787900000810623, 256538.156199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404140200", "MAP": "D9-112-T56", "PARCEL_NAM": "17 of 1st AVENUE", "ACRE": "4,800 sq ft", "LONGITUDE": -64.9195343, "LATITUDE": 18.33900091, "OBJECTID_1": 19526, "PARCEL_NO_": "105404140200", "Tax_Legal_": "17 FIRST AVE KINGS QUARTER", "Name": "TODMAN, LEO", "Address": "73-11 Bell Blvd", "City": "Oakland Gardens", "State": "New York", "Zip": 11364, "Country": "United States", "Land_Value": 11500, "Improved_V": 16700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.954381370299998, "SHAPE_Area": 459.04917877000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360022.218099996447563, 256633.581700000911951 ], [ 360006.259099997580051, 256613.819400001317263 ], [ 359992.45830000191927, 256624.683299999684095 ], [ 360007.605599999427795, 256645.072299998253584 ], [ 360022.218099996447563, 256633.581700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94779146, "LATITUDE": 18.33898912, "OBJECTID_1": 10898, "PARCEL_NO_": "105303040500", "Tax_Legal_": "CONTANT 40 7B S S QTR", "Name": "CAROL M HENDRICKS IRREVOCABLE TRUST", "Address": "683 Manderley Run", "City": "Lake Mary", "State": "Florida", "Zip": 32746, "Country": "United States", "Land_Value": 80100, "Improved_V": 21100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.288612, "SHAPE_Area": 1542.5029062000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357032.582299999892712, 256589.059099998325109 ], [ 357020.483999997377396, 256589.382199998944998 ], [ 357009.192100003361702, 256589.712000001221895 ], [ 356993.868500001728535, 256590.008799999952316 ], [ 356994.417700000107288, 256620.199599999934435 ], [ 357046.059500001370907, 256616.189300000667572 ], [ 357049.518500000238419, 256588.775499999523163 ], [ 357032.582299999892712, 256589.059099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404121000", "MAP": "D9-3058-T85", "PARCEL_NAM": "10 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91667622, "LATITUDE": 18.33902318, "OBJECTID_1": 19477, "PARCEL_NO_": "105404121000", "Tax_Legal_": "NINTH STREET 10 KINGS QUARTER", "Name": "CLARKE, GWENDOLYN", "Address": "PO Box 7723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 64800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.759350463800004, "SHAPE_Area": 440.495847357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360317.450800001621246, 256621.643699999898672 ], [ 360294.802100002765656, 256629.902100000530481 ], [ 360301.106899999082088, 256647.052200000733137 ], [ 360323.755599997937679, 256638.7939000017941 ], [ 360317.450800001621246, 256621.643699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404090900", "MAP": "D9-3024-T85", "PARCEL_NAM": "17 of 5th street", "ACRE": "0.11", "LONGITUDE": -64.91870906, "LATITUDE": 18.33901795, "OBJECTID_1": 19405, "PARCEL_NO_": "105404090900", "Tax_Legal_": "FIFTH STREET 17 ESTATE THOMAS", "Name": "BENJAMIN, ROY & ARNEL", "Address": "PO Box 12261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 93000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.349697174400006, "SHAPE_Area": 435.81597321100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360108.473800003528595, 256636.609700001776218 ], [ 360102.976999998092651, 256619.254999998956919 ], [ 360093.270700000226498, 256622.764199998229742 ], [ 360080.328400000929832, 256627.513399999588728 ], [ 360085.826899997889996, 256644.657000001519918 ], [ 360108.473800003528595, 256636.609700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404111200", "MAP": "D9-3058-T85", "PARCEL_NAM": "12 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91725599, "LATITUDE": 18.33903372, "OBJECTID_1": 19455, "PARCEL_NO_": "105404111200", "Tax_Legal_": "12 EIGHTH STREET KINGS QUARTER", "Name": "MAE PATRICIA WHEATLEY", "Address": "PO Box 10755", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.871501921100005, "SHAPE_Area": 332.58446600299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360256.950300000607967, 256624.314899999648333 ], [ 360234.299900002777576, 256632.784400001168251 ], [ 360239.028099998831749, 256645.699799999594688 ], [ 360261.67849999666214, 256637.23030000180006 ], [ 360256.950300000607967, 256624.314899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.908682, "LATITUDE": 18.33889704, "OBJECTID_1": 20132, "PARCEL_NO_": "105503040800", "Tax_Legal_": "EST. THOMAS 16A & 18 NEW QTR", "Name": "EPISCOPAL DIOCESE OF THE VI", "Address": "PO Box 7488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.26226457600001, "SHAPE_Area": 1431.6245983199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361176.240099996328354, 256620.861999999731779 ], [ 361153.026000000536442, 256600.829199999570847 ], [ 361140.843199998140335, 256611.073100000619888 ], [ 361130.163400001823902, 256634.206000000238419 ], [ 361158.226099997758865, 256653.011900000274181 ], [ 361160.520999997854233, 256654.549800001084805 ], [ 361178.685400001704693, 256622.972199998795986 ], [ 361176.240099996328354, 256620.861999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94931555, "LATITUDE": 18.33900863, "OBJECTID_1": 10875, "PARCEL_NO_": "105303020500", "Tax_Legal_": "CONTANT 58 7B SOUTHSIDE QUARTER", "Name": "WALLACE VINCENT & VITALIA", "Address": "PO Box 11812", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29500, "Improved_V": 103100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.977670545500004, "SHAPE_Area": 311.45957987000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356852.724299997091293, 256593.0287000015378 ], [ 356852.589900001883507, 256616.664799999445677 ], [ 356867.059900000691414, 256614.513199999928474 ], [ 356865.632500000298023, 256592.758900001645088 ], [ 356852.724299997091293, 256593.0287000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90930506, "LATITUDE": 18.33891149, "OBJECTID_1": 20131, "PARCEL_NO_": "105503040700", "Tax_Legal_": "15 ESTATE THOMAS NEW QUARTER", "Name": "KAREN A & MERVIN C FLEMING SR LIVING TRUST", "Address": "PO Box 55", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33000, "Improved_V": 405900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.57855837, "SHAPE_Area": 1307.8721565799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361117.296499997377396, 256630.089899998158216 ], [ 361093.294200003147125, 256607.939699999988079 ], [ 361060.120300002396107, 256621.178199999034405 ], [ 361075.267599999904633, 256641.567099999636412 ], [ 361087.28320000320673, 256650.953600000590086 ], [ 361117.296499997377396, 256630.089899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404100900", "MAP": "MB.B", "PARCEL_NAM": "15 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91811038, "LATITUDE": 18.33899184, "OBJECTID_1": 19431, "PARCEL_NO_": "105404100900", "Tax_Legal_": "15 SIXTH STREET KINGS QUARTER", "Name": "GROVER, KATHERINE L. -TRUSTEE", "Address": "4710 E Casey Ln", "City": "Cave Creek", "State": "Arizona", "Zip": 85331, "Country": "United States", "Land_Value": 11500, "Improved_V": 4800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.1976181024, "SHAPE_Area": 458.19782113700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360172.193999998271465, 256634.598099999129772 ], [ 360165.89639999717474, 256616.60359999909997 ], [ 360143.249499998986721, 256624.65089999884367 ], [ 360149.547200001776218, 256642.645399998873472 ], [ 360172.193999998271465, 256634.598099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404130800", "MAP": "MB.B", "PARCEL_NAM": "8 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91610425, "LATITUDE": 18.3389932, "OBJECTID_1": 19503, "PARCEL_NO_": "105404130800", "Tax_Legal_": "8 TENTH STREET KINGS QUARTER", "Name": "TRUST AGREEMENT OF EDITH MAE RAMSAY JOHNSON", "Address": "PO Box 7065", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.031830602300005, "SHAPE_Area": 443.55989191800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360377.953000001609325, 256618.761399999260902 ], [ 360355.304300002753735, 256627.01969999819994 ], [ 360361.607299998402596, 256644.381000000983477 ], [ 360384.257799997925758, 256635.911499999463558 ], [ 360377.953000001609325, 256618.761399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94918234, "LATITUDE": 18.33899508, "OBJECTID_1": 10883, "PARCEL_NO_": "105303021400", "Tax_Legal_": "CONTANT 57A SOUTHSIDE QTR. 7B", "Name": "ANTONY, ALICIA", "Address": "PO Box 8192", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 64900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.106378576899999, "SHAPE_Area": 305.35169441199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356880.149700000882149, 256592.45549999922514 ], [ 356865.632500000298023, 256592.758900001645088 ], [ 356867.059900000691414, 256614.513199999928474 ], [ 356881.591499999165535, 256612.521200001239777 ], [ 356880.149700000882149, 256592.45549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404111300", "MAP": "MB.B", "PARCEL_NAM": "13 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91752679, "LATITUDE": 18.33897558, "OBJECTID_1": 19456, "PARCEL_NO_": "105404111300", "Tax_Legal_": "13 SEVENTH STREET KINGS QUARTER", "Name": "SIMMONDS, CLAUDE H. & LEONA", "Address": "PO Box 302957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72000, "Improved_V": 383000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.357709014400001, "SHAPE_Area": 466.87989083799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360234.299900002777576, 256632.784400001168251 ], [ 360227.998599998652935, 256615.212000001221895 ], [ 360204.53999999910593, 256623.885999999940395 ], [ 360210.841300003230572, 256641.458299998193979 ], [ 360234.299900002777576, 256632.784400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94824391, "LATITUDE": 18.33897189, "OBJECTID_1": 10892, "PARCEL_NO_": "105303030900", "Tax_Legal_": "CONTANT 47A SOUTHSIDE QTER", "Name": "FENNER, ELODIA & GOMEZ, D", "Address": "47A CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29500, "Improved_V": 131800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.316589622899997, "SHAPE_Area": 486.79453723300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356960.800700001418591, 256590.793600000441074 ], [ 356962.226300001144409, 256612.75899999961257 ], [ 356984.007600001990795, 256611.670699998736382 ], [ 356984.187399998307228, 256590.562800001353025 ], [ 356960.800700001418591, 256590.793600000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404121100", "MAP": "MB.B", "PARCEL_NAM": "11 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91695464, "LATITUDE": 18.33894597, "OBJECTID_1": 19478, "PARCEL_NO_": "105404121100", "Tax_Legal_": "11 EIGHTH STREET KINGS QUARTER", "Name": "MC BEAN, CELISE K & PEARLINE", "Address": "PO Box 8964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 161100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.418286467200005, "SHAPE_Area": 455.64591918299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360294.802100002765656, 256629.902100000530481 ], [ 360288.49719999730587, 256612.751899998635054 ], [ 360265.040399998426437, 256621.214699998497963 ], [ 360271.345299996435642, 256638.364900000393391 ], [ 360294.802100002765656, 256629.902100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404091000", "MAP": "MB.B", "PARCEL_NAM": "18 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.9184781, "LATITUDE": 18.33893667, "OBJECTID_1": 19406, "PARCEL_NO_": "105404091000", "Tax_Legal_": "THOMAS ESTATE 18-6th STREET 6A NEW QTR", "Name": "ROPER, JOSEPHINA", "Address": "PO Box 7583", "City": "Stockbridge", "State": "Georgia", "Zip": 30281, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.575973113399996, "SHAPE_Area": 513.34506971400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360128.861699998378754, 256609.756599999964237 ], [ 360107.83110000193119, 256617.394900001585484 ], [ 360102.976999998092651, 256619.254999998956919 ], [ 360108.473800003528595, 256636.609700001776218 ], [ 360135.164800003170967, 256627.117800001055002 ], [ 360128.861699998378754, 256609.756599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404140300", "MAP": "D9-112-T56", "PARCEL_NAM": "19 of 1st AVENUE", "ACRE": "4,800 sq ft", "LONGITUDE": -64.91940217, "LATITUDE": 18.33889781, "OBJECTID_1": 19527, "PARCEL_NO_": "105404140300", "Tax_Legal_": "19 FIRST AVE KINGS QUARTER", "Name": "ST ANDREWS EPISCOPAL CHURCH INC", "Address": "PO Box 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.655154876699996, "SHAPE_Area": 455.90002351099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360036.018899999558926, 256622.717799998819828 ], [ 360020.869800001382828, 256602.539900001138449 ], [ 360006.259099997580051, 256613.819400001317263 ], [ 360022.218099996447563, 256633.581700000911951 ], [ 360036.018899999558926, 256622.717799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404101000", "MAP": "MB.B", "PARCEL_NAM": "16 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91789312, "LATITUDE": 18.33891517, "OBJECTID_1": 19432, "PARCEL_NO_": "105404101000", "Tax_Legal_": "16-7th STREET ESTATE THOMAS EST THOMAS", "Name": "WADE, JOSEPH A.,SR. & PIERMARIE SIMEON", "Address": "1716 7th Street Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11500, "Improved_V": 6400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.878531632999994, "SHAPE_Area": 473.602862695 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360189.353200003504753, 256608.140700001269579 ], [ 360165.89639999717474, 256616.60359999909997 ], [ 360172.193999998271465, 256634.598099999129772 ], [ 360195.65259999781847, 256625.924199998378754 ], [ 360189.353200003504753, 256608.140700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404130900", "MAP": "MB.B", "PARCEL_NAM": "9 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91638231, "LATITUDE": 18.33891481, "OBJECTID_1": 19504, "PARCEL_NO_": "105404130900", "Tax_Legal_": "NINTH STREET 9 KINGS QUARTER", "Name": "RITTER, KIMBERLEY R.", "Address": "PO Box 7312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.148190135299998, "SHAPE_Area": 452.494625348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360355.304300002753735, 256627.01969999819994 ], [ 360348.999399997293949, 256609.869600001722574 ], [ 360325.542700000107288, 256618.332400001585484 ], [ 360331.849299997091293, 256635.271499998867512 ], [ 360355.304300002753735, 256627.01969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404111400", "MAP": "MB.B", "PARCEL_NAM": "14 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91730936, "LATITUDE": 18.33889641, "OBJECTID_1": 19457, "PARCEL_NO_": "105404111400", "Tax_Legal_": "14 EIGHTH STREET KINGS QUARTER", "Name": "SIMMONDS, CLAUDE H. & LEONA", "Address": "PO Box 302957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 138100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.7001680897, "SHAPE_Area": 451.389756858 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360250.649099998176098, 256606.742600001394749 ], [ 360227.998599998652935, 256615.212000001221895 ], [ 360234.299900002777576, 256632.784400001168251 ], [ 360256.950300000607967, 256624.314899999648333 ], [ 360250.649099998176098, 256606.742600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105503010300", "MAP": "D9-5332-T92", "PARCEL_NAM": "1A of 10th Street", "ACRE": "2.29", "LONGITUDE": -64.91539423, "LATITUDE": 18.33862824, "OBJECTID_1": 19954, "PARCEL_NO_": "105503010300", "Tax_Legal_": "1A-10TH ST. EST. THOMAS(GRAND UN NEW QTR", "Name": "LOCKHART GARDENS, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 812500, "Improved_V": 786600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 367.06442834299997, "SHAPE_Area": 7292.1947919699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360393.161399997770786, 256631.973600000143051 ], [ 360426.331699997186661, 256619.157299999147654 ], [ 360431.063500002026558, 256631.650600001215935 ], [ 360513.564499996602535, 256602.139400001615286 ], [ 360516.798699997365475, 256601.110399998724461 ], [ 360514.451700001955032, 256592.64750000089407 ], [ 360510.495700001716614, 256583.749200001358986 ], [ 360504.912600003182888, 256576.526299998164177 ], [ 360499.331399999558926, 256569.092300001531839 ], [ 360473.70380000025034, 256548.406500000506639 ], [ 360375.038800001144409, 256582.218299999833107 ], [ 360393.161399997770786, 256631.973600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105503012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91221158, "LATITUDE": 18.33834205, "OBJECTID_1": 19975, "PARCEL_NO_": "105503012300", "Tax_Legal_": "EST THOMAS 6D-2 NEW QTR", "Name": "ABRAMSON, ETHLYN & OTHERS", "Address": "PO Box 709", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 273300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.68171269499999, "SHAPE_Area": 5988.7339026500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360790.448399998247623, 256498.757100000977516 ], [ 360760.676399998366833, 256493.431499999016523 ], [ 360759.618600003421307, 256494.38459999859333 ], [ 360755.570799998939037, 256496.251299999654293 ], [ 360747.489699997007847, 256498.296100001782179 ], [ 360768.262100003659725, 256615.623100001364946 ], [ 360787.486000001430511, 256630.76799999922514 ], [ 360795.523900002241135, 256633.789099998772144 ], [ 360802.7753000035882, 256634.481800001114607 ], [ 360810.048299998044968, 256632.641399998217821 ], [ 360815.717699997127056, 256629.732500001788139 ], [ 360793.413500003516674, 256502.893899999558926 ], [ 360792.663099996745586, 256499.153299998492002 ], [ 360790.448399998247623, 256498.757100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404121200", "MAP": "D9-3058-T85", "PARCEL_NAM": "12 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91673721, "LATITUDE": 18.33886871, "OBJECTID_1": 19479, "PARCEL_NO_": "105404121200", "Tax_Legal_": "12 NINTH STREET KINGS QUARTER", "Name": "MC BEAN, CELISE K & PEARLINE", "Address": "PO Box 8964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.759547596600001, "SHAPE_Area": 440.49812095200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360311.145900003612041, 256604.493500001728535 ], [ 360288.49719999730587, 256612.751899998635054 ], [ 360294.802100002765656, 256629.902100000530481 ], [ 360317.450800001621246, 256621.643699999898672 ], [ 360311.145900003612041, 256604.493500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404091100", "MAP": "MB.B", "PARCEL_NAM": "26 of 1st Ave", "ACRE": "0.12", "LONGITUDE": -64.91882152, "LATITUDE": 18.33884634, "OBJECTID_1": 19411, "PARCEL_NO_": "105404091100", "Tax_Legal_": "26-1st AVENUE,ESTATE THOMAS KINGS QTR.", "Name": "PATTERSON, CAROL E. & DANIEL, JANICE W.", "Address": "1031 Chris Court", "City": "Rock Hill", "State": "South Carolina", "Zip": 29732, "Country": "United States", "Land_Value": 12900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.41729623000001, "SHAPE_Area": 353.77528981400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360080.328400000929832, 256627.513399999588728 ], [ 360093.270700000226498, 256622.764199998229742 ], [ 360083.819700002670288, 256596.30009999871254 ], [ 360073.265699997544289, 256604.657499998807907 ], [ 360073.242399998009205, 256607.401500001549721 ], [ 360080.328400000929832, 256627.513399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404131000", "MAP": "MB.B", "PARCEL_NAM": "10 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91616489, "LATITUDE": 18.33883755, "OBJECTID_1": 19505, "PARCEL_NO_": "105404131000", "Tax_Legal_": "1O TENTH STREET KINGS QUARTER", "Name": "LASS INV. ENTP. INC.", "Address": "P.O.BOX 2177", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72000, "Improved_V": 520200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.031899232300006, "SHAPE_Area": 443.5607283 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360371.649899996817112, 256601.400100000202656 ], [ 360348.999399997293949, 256609.869600001722574 ], [ 360355.304300002753735, 256627.01969999819994 ], [ 360377.953000001609325, 256618.761399999260902 ], [ 360371.649899996817112, 256601.400100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404101100", "MAP": "MB.B", "PARCEL_NAM": "17 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91816755000001, "LATITUDE": 18.33884023, "OBJECTID_1": 19433, "PARCEL_NO_": "105404101100", "Tax_Legal_": "17 SIXTH STREET KINGS QUARTER", "Name": "MILLIGAN, RUDOLPH", "Address": "PO Box 10373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 73200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.282531760799998, "SHAPE_Area": 399.13581038299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360165.89639999717474, 256616.60359999909997 ], [ 360160.385300002992153, 256600.937600001692772 ], [ 360137.738399997353554, 256608.984900001436472 ], [ 360143.249499998986721, 256624.65089999884367 ], [ 360165.89639999717474, 256616.60359999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105503012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91180155000001, "LATITUDE": 18.33832307, "OBJECTID_1": 19974, "PARCEL_NO_": "105503012200", "Tax_Legal_": "6D-3 ESTATE THOMAS NEW QTR", "Name": "CASTILLO, AMERIGO & WILKINSON, L., F., & OTHERS", "Address": "128 W Alma Ave", "City": "Lake Mary", "State": "Florida", "Zip": 32746, "Country": "United States", "Land_Value": 296500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.54246503299998, "SHAPE_Area": 5227.3840376799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360839.44879999756813, 256507.522399999201298 ], [ 360792.663099996745586, 256499.153299998492002 ], [ 360793.413500003516674, 256502.893899999558926 ], [ 360815.717699997127056, 256629.732500001788139 ], [ 360833.535700000822544, 256620.590300001204014 ], [ 360840.808700002729893, 256618.749899998307228 ], [ 360854.524999998509884, 256617.806699998676777 ], [ 360841.75450000166893, 256507.722500000149012 ], [ 360839.44879999756813, 256507.522399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105503012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91117993, "LATITUDE": 18.33875236, "OBJECTID_1": 19973, "PARCEL_NO_": "105503012100", "Tax_Legal_": "6M-C EST. THOMAS NEW QTR", "Name": "MARKS, JOHNNIE", "Address": "4031 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.222219228, "SHAPE_Area": 2243.09870022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360917.682700000703335, 256590.600999999791384 ], [ 360851.910700000822544, 256595.271000001579523 ], [ 360854.524999998509884, 256617.806699998676777 ], [ 360861.765600003302097, 256619.765799999237061 ], [ 360881.07039999961853, 256625.412300001829863 ], [ 360895.549800001084805, 256629.541499998420477 ], [ 360901.996699996292591, 256630.016499999910593 ], [ 360910.074199996888638, 256628.393899999558926 ], [ 360916.55349999666214, 256625.069400001317263 ], [ 360923.866099998354912, 256618.585299998521805 ], [ 360925.523599997162819, 256613.321600001305342 ], [ 360925.581200003623962, 256606.567099999636412 ], [ 360921.601800002157688, 256600.412799999117851 ], [ 360917.682700000703335, 256590.600999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303170400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94261978, "LATITUDE": 18.33883217, "OBJECTID_1": 11067, "PARCEL_NO_": "105303170400", "Tax_Legal_": "ALTONA & WELGUNST 29&30 CROWN PRINCE QTR", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62700, "Improved_V": 135000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.205925747099997, "SHAPE_Area": 429.26283889299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357568.880800001323223, 256581.627199999988079 ], [ 357568.916799999773502, 256577.405600000172853 ], [ 357559.242799997329712, 256577.115299999713898 ], [ 357557.421599999070168, 256601.58729999884963 ], [ 357568.704599998891354, 256602.312899999320507 ], [ 357577.584799997508526, 256601.118999999016523 ], [ 357576.943899996578693, 256581.693199999630451 ], [ 357568.880800001323223, 256581.627199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404140400", "MAP": "D9-112-T56", "PARCEL_NAM": "21 of 1st AVENUE", "ACRE": "5,691 sq ft", "LONGITUDE": -64.91926723, "LATITUDE": 18.33879745, "OBJECTID_1": 19528, "PARCEL_NO_": "105404140400", "Tax_Legal_": "21 FIRST AVE KINGS QUARTER", "Name": "ST ANDREWS EPISCOPAL CHURCH INC", "Address": "PO Box 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.594330748399997, "SHAPE_Area": 456.24200945500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360050.633299998939037, 256611.016199998557568 ], [ 360034.67059999704361, 256591.675999999046326 ], [ 360020.869800001382828, 256602.539900001138449 ], [ 360036.018899999558926, 256622.717799998819828 ], [ 360050.633299998939037, 256611.016199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404111500", "MAP": "F9-2632-T70", "PARCEL_NAM": "15 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91759159, "LATITUDE": 18.33880871, "OBJECTID_1": 19458, "PARCEL_NO_": "105404111500", "Tax_Legal_": "SEVENTH STREET 15 KINGS QUARTER", "Name": "BENJAMIN, CYRIL A", "Address": "PO Box 7202", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 179600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.480290932200006, "SHAPE_Area": 518.45090027599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360227.998599998652935, 256615.212000001221895 ], [ 360220.907200001180172, 256595.733399998396635 ], [ 360197.448700003325939, 256604.407299999147654 ], [ 360204.53999999910593, 256623.885999999940395 ], [ 360227.998599998652935, 256615.212000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303170300", "MAP": null, "PARCEL_NAM": "31", "ACRE": ".11", "LONGITUDE": -64.94280429, "LATITUDE": 18.33881377, "OBJECTID_1": 11066, "PARCEL_NO_": "105303170300", "Tax_Legal_": "ALTONA 31 CROWN PRINCE QTR", "Name": "CALLWOOD, CLIFFORD B.", "Address": "PO Box 8029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73000, "Improved_V": 218400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.800136407899998, "SHAPE_Area": 509.60154093800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357544.732799999415874, 256576.574400000274181 ], [ 357537.479599997401237, 256576.092799998819828 ], [ 357536.484399996697903, 256598.249499998986721 ], [ 357545.334100000560284, 256600.644000001251698 ], [ 357557.421599999070168, 256601.58729999884963 ], [ 357559.242799997329712, 256577.115299999713898 ], [ 357544.732799999415874, 256576.574400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404091200", "MAP": null, "PARCEL_NAM": "28 of 1st Ave", "ACRE": "0.11", "LONGITUDE": -64.91869978, "LATITUDE": 18.33877929, "OBJECTID_1": 19413, "PARCEL_NO_": "105404091200", "Tax_Legal_": "28-1st AVENUE ESTATE THOMAS KINGS QTR.", "Name": "PATTERSON, CAROL E. & DANIEL, JANICE W.", "Address": "1031 Chris Court", "City": "Rock Hill", "State": "South Carolina", "Zip": 29732, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.043604971299999, "SHAPE_Area": 475.90176047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360107.83110000193119, 256617.394900001585484 ], [ 360096.807099997997284, 256586.273899998515844 ], [ 360083.819700002670288, 256596.30009999871254 ], [ 360093.270700000226498, 256622.764199998229742 ], [ 360102.976999998092651, 256619.254999998956919 ], [ 360107.83110000193119, 256617.394900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303080300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94634831, "LATITUDE": 18.33858185, "OBJECTID_1": 10948, "PARCEL_NO_": "105303080300", "Tax_Legal_": "214C ALTONA&WELGUNST CROWN PRINCE QTR.", "Name": "ORIENTAL BANK", "Address": "4500 Estate Diamond", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 8205214, "Country": "United States", "Land_Value": 473700, "Improved_V": 4056300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 358.14179117499998, "SHAPE_Area": 3996.04516216 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357259.355700001120567, 256567.48369999974966 ], [ 357265.100599996745586, 256555.709499999880791 ], [ 357245.011100001633167, 256547.523499999195337 ], [ 357229.727099999785423, 256543.176600001752377 ], [ 357211.20889999717474, 256539.858600001782179 ], [ 357156.385099999606609, 256538.776599999517202 ], [ 357145.881399996578693, 256541.223799999803305 ], [ 357136.976000003516674, 256545.372699998319149 ], [ 357110.150100000202656, 256570.695500001311302 ], [ 357122.822800002992153, 256597.6081000007689 ], [ 357181.964100003242493, 256565.16160000115633 ], [ 357190.048799999058247, 256562.694600000977516 ], [ 357207.008299998939037, 256559.666999999433756 ], [ 357227.169699996709824, 256559.409800000488758 ], [ 357236.834700003266335, 256560.755499999970198 ], [ 357259.355700001120567, 256567.48369999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90898078, "LATITUDE": 18.33872596, "OBJECTID_1": 20133, "PARCEL_NO_": "105503040900", "Tax_Legal_": "18A&16 EST THOMAS NEW QUARTER", "Name": "MOORHEAD, JR., ALEXANDER AUGUSTUS & MAXINE ALICIA B.", "Address": "PO Box 2152", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 26800, "Improved_V": 152600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.16451549499999, "SHAPE_Area": 1113.9235558600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361140.843199998140335, 256611.073100000619888 ], [ 361147.423199996352196, 256595.928199999034405 ], [ 361137.018500000238419, 256586.765999998897314 ], [ 361122.420299999415874, 256596.567899998277426 ], [ 361093.294200003147125, 256607.939699999988079 ], [ 361117.296499997377396, 256630.089899998158216 ], [ 361120.541599996387959, 256627.794399999082088 ], [ 361140.843199998140335, 256611.073100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304010701", "MAP": "D3-279-T67", "PARCEL_NAM": "WATERFRONT 'B'", "ACRE": "2.15", "LONGITUDE": -64.9397308, "LATITUDE": 18.33849278, "OBJECTID_1": 11314, "PARCEL_NO_": "105304010701", "Tax_Legal_": "WATERFRONT PARCEL B", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 326900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 444.71487767600001, "SHAPE_Area": 8026.8256008300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357943.114699997007847, 256555.230000000447035 ], [ 357904.861699998378754, 256523.773200001567602 ], [ 357887.99210000038147, 256539.1266999989748 ], [ 357882.732100002467632, 256543.463899999856949 ], [ 357863.656400002539158, 256524.271299999207258 ], [ 357881.093099996447563, 256501.199700001627207 ], [ 357862.147799998521805, 256481.518300000578165 ], [ 357802.611900001764297, 256582.232400000095367 ], [ 357871.9662000015378, 256594.451400000602007 ], [ 357916.634300000965595, 256597.711599998176098 ], [ 357943.114699997007847, 256555.230000000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303170200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94296875000001, "LATITUDE": 18.33879595, "OBJECTID_1": 11065, "PARCEL_NO_": "105303170200", "Tax_Legal_": "ALTONA 32 CROWN PRINCE QTR", "Name": "SPEIGHTS, SHELDON F.", "Address": "995 Pacific Street", "City": "New Milford", "State": "New Jersey", "Zip": 7646, "Country": "United States", "Land_Value": 25400, "Improved_V": 63400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.563107438100005, "SHAPE_Area": 278.288757358 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357537.479599997401237, 256576.092799998819828 ], [ 357525.390299998223782, 256575.360599998384714 ], [ 357522.003200002014637, 256594.331300001591444 ], [ 357536.484399996697903, 256598.249499998986721 ], [ 357537.479599997401237, 256576.092799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404121300", "MAP": "MB.B", "PARCEL_NAM": "13 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91701416, "LATITUDE": 18.33879217, "OBJECTID_1": 19480, "PARCEL_NO_": "105404121300", "Tax_Legal_": "13 EIGHTH STREET KINGS QUARTER", "Name": "WILLIAMS, E & C", "Address": "1813 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11500, "Improved_V": 119400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.509659899900001, "SHAPE_Area": 454.02757637299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360288.49719999730587, 256612.751899998635054 ], [ 360282.996899999678135, 256595.819400001317263 ], [ 360258.733800001442432, 256604.275600001215935 ], [ 360265.040399998426437, 256621.214699998497963 ], [ 360288.49719999730587, 256612.751899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91002934, "LATITUDE": 18.33859403, "OBJECTID_1": 19969, "PARCEL_NO_": "105503011700", "Tax_Legal_": "31 ESTATE THOMAS NEW QUARTER", "Name": "MARKS, MARTHA", "Address": "4031 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45400, "Improved_V": 109400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 319.41671137499998, "SHAPE_Area": 4163.5274661200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361045.363200001418591, 256554.985100001096725 ], [ 360992.710100002586842, 256583.05180000141263 ], [ 360928.116999998688698, 256592.866700001060963 ], [ 360983.592500001192093, 256612.1081000007689 ], [ 361025.4003000035882, 256626.593499999493361 ], [ 361030.299300000071526, 256619.456500001251698 ], [ 361036.79839999973774, 256613.810100000351667 ], [ 361054.70269999653101, 256594.535999998450279 ], [ 361060.415200002491474, 256586.561200000345707 ], [ 361062.060199998319149, 256582.774999998509884 ], [ 361062.106899999082088, 256577.287000000476837 ], [ 361048.577600002288818, 256556.278000000864267 ], [ 361045.363200001418591, 256554.985100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404091300", "MAP": "MB.B", "PARCEL_NAM": "30 of 1st Ave", "ACRE": "0.47", "LONGITUDE": -64.91854145000001, "LATITUDE": 18.33869448, "OBJECTID_1": 19415, "PARCEL_NO_": "105404091300", "Tax_Legal_": "30-1st AVENUE ESTATE THOMAS KINGS QTR.", "Name": "PATTERSON, CAROL E. & DANIEL, JANICE W.", "Address": "1031 Chris Court", "City": "Rock Hill", "State": "South Carolina", "Zip": 29732, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.86812975399999, "SHAPE_Area": 806.18431884899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360096.807099997997284, 256586.273899998515844 ], [ 360107.83110000193119, 256617.394900001585484 ], [ 360128.861699998378754, 256609.756599999964237 ], [ 360115.460100002586842, 256573.760999999940395 ], [ 360113.042999997735023, 256573.530099999159575 ], [ 360096.807099997997284, 256586.273899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404131100", "MAP": "MB.B", "PARCEL_NAM": "11 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.9164433, "LATITUDE": 18.33876034, "OBJECTID_1": 19506, "PARCEL_NO_": "105404131100", "Tax_Legal_": "11 NINTH STREET KINGS QUARTER", "Name": "MARISA L MADURO FAMILY TRUST", "Address": "PO Box 8502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 140000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.689940490699996, "SHAPE_Area": 458.79379397100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360348.999399997293949, 256609.869600001722574 ], [ 360342.696400001645088, 256592.508299998939037 ], [ 360319.237800002098083, 256601.182199999690056 ], [ 360325.542700000107288, 256618.332400001585484 ], [ 360348.999399997293949, 256609.869600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303292000", "MAP": null, "PARCEL_NAM": "2-02", "ACRE": "3,847 sq ft", "LONGITUDE": -64.94229006, "LATITUDE": 18.33874777, "OBJECTID_1": 11247, "PARCEL_NO_": "105303292000", "Tax_Legal_": "DEMARARA 2-02 KRONPRINDSENS QTR.", "Name": "BASTIAN, C. & CALLWOOD, J", "Address": "PO Box 307536", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20900, "Improved_V": 28900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.343812165399996, "SHAPE_Area": 466.28281579600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357589.765799999237061, 256591.086199998855591 ], [ 357593.763199999928474, 256595.129700001329184 ], [ 357595.37219999730587, 256595.565099999308586 ], [ 357609.905599996447563, 256593.361999999731779 ], [ 357611.784400001168251, 256562.135499998927116 ], [ 357598.807899996638298, 256570.895199999213219 ], [ 357593.908900000154972, 256578.032299999147654 ], [ 357589.765799999237061, 256591.086199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404101200", "MAP": "MB.B", "PARCEL_NAM": "18 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91794991, "LATITUDE": 18.33876334, "OBJECTID_1": 19435, "PARCEL_NO_": "105404101200", "Tax_Legal_": "18 SEVENTH STREET KINGS QUARTER", "Name": "FAIKA JAMIL, ZUHDI RUSHDI", "Address": "1511 Fifth St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72000, "Improved_V": 54200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.360476934800005, "SHAPE_Area": 417.17780148399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360183.843800000846386, 256592.263599999248981 ], [ 360160.385300002992153, 256600.937600001692772 ], [ 360165.89639999717474, 256616.60359999909997 ], [ 360189.353200003504753, 256608.140700001269579 ], [ 360183.843800000846386, 256592.263599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303170700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94294201, "LATITUDE": 18.338625, "OBJECTID_1": 11070, "PARCEL_NO_": "105303170700", "Tax_Legal_": "ALTONA & WELGUNST 48 KRONP QTR", "Name": "CORNWALL, BIANCA", "Address": "3604 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 90700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.86332753799999, "SHAPE_Area": 622.02232404799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357544.732799999415874, 256576.574400000274181 ], [ 357547.387299999594688, 256548.942899998277426 ], [ 357532.076300002634525, 256547.762099999934435 ], [ 357527.026299998164177, 256572.629799999296665 ], [ 357518.968500003218651, 256571.930500000715256 ], [ 357518.138899996876717, 256574.668000001460314 ], [ 357515.567100003361702, 256592.589899998158216 ], [ 357522.003200002014637, 256594.331300001591444 ], [ 357525.390299998223782, 256575.360599998384714 ], [ 357537.479599997401237, 256576.092799998819828 ], [ 357544.732799999415874, 256576.574400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94784636, "LATITUDE": 18.33862975, "OBJECTID_1": 10903, "PARCEL_NO_": "105303041000", "Tax_Legal_": "CONTANT 25C 7B SOUTHSIDE QTR", "Name": "SONIA PRINCE, (LIFE ESTATE)", "Address": "36 Mapleton Dr", "City": "WILLIAMSVILLE", "State": "New York", "Zip": 14221, "Country": "United States", "Land_Value": 50800, "Improved_V": 21400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.59563091299999, "SHAPE_Area": 581.42677355800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357009.192100003361702, 256589.712000001221895 ], [ 357020.483999997377396, 256589.382199998944998 ], [ 357020.920999996364117, 256538.09010000154376 ], [ 357009.632600001990795, 256537.997699998319149 ], [ 357009.192100003361702, 256589.712000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303040900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94773314, "LATITUDE": 18.33862462, "OBJECTID_1": 10902, "PARCEL_NO_": "105303040900", "Tax_Legal_": "CONTANT 25B 7B SOUTHSIDE QTR", "Name": "JACOBS, COURTNEY A. SR", "Address": "732 E Turmont St", "City": "Carson", "State": "California", "Zip": 90746, "Country": "United States", "Land_Value": 37500, "Improved_V": 27200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.392593078, "SHAPE_Area": 646.53198330600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357033.678099997341633, 256555.081999998539686 ], [ 357033.82379999756813, 256537.984600000083447 ], [ 357020.920999996364117, 256538.09010000154376 ], [ 357020.483999997377396, 256589.382199998944998 ], [ 357032.582299999892712, 256589.059099998325109 ], [ 357033.678099997341633, 256555.081999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94757544, "LATITUDE": 18.33865085, "OBJECTID_1": 10904, "PARCEL_NO_": "105303041100", "Tax_Legal_": "CONTANT 25A 7B SOUTHSIDE QTR", "Name": "CAROL A JACOBS TRUST", "Address": "PO Box 303949", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48300, "Improved_V": 118300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.56507595, "SHAPE_Area": 776.06149714799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357054.787900000810623, 256538.156199999153614 ], [ 357045.112199999392033, 256538.076999999582767 ], [ 357043.352099999785423, 256555.37220000103116 ], [ 357033.678099997341633, 256555.081999998539686 ], [ 357032.582299999892712, 256589.059099998325109 ], [ 357049.518500000238419, 256588.775499999523163 ], [ 357054.787900000810623, 256538.156199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404111600", "MAP": "MB.B", "PARCEL_NAM": "16 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91737382, "LATITUDE": 18.33873324, "OBJECTID_1": 19459, "PARCEL_NO_": "105404111600", "Tax_Legal_": "16 EIGHT ST KINGS QTR", "Name": "RICHARDS, CHARLES & THE ESTATE OF LUCILLE HINES", "Address": "257-22 144th Ave", "City": "ROSEDALE", "State": "New York", "Zip": 11422, "Country": "United States", "Land_Value": 11500, "Improved_V": 112100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.438870601299996, "SHAPE_Area": 483.55895659100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360244.351400002837181, 256588.748100001364946 ], [ 360220.907200001180172, 256595.733399998396635 ], [ 360227.998599998652935, 256615.212000001221895 ], [ 360250.649099998176098, 256606.742600001394749 ], [ 360244.351400002837181, 256588.748100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303170100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94314968, "LATITUDE": 18.33876132, "OBJECTID_1": 11064, "PARCEL_NO_": "105303170100", "Tax_Legal_": "ALTONA 33 CROWN PRINCE QTR", "Name": "JAMIL, LISA MONIQUE, & M. MAGRAS", "Address": "PO Box 308752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 25500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.689141749400001, "SHAPE_Area": 194.97276013499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357515.567100003361702, 256592.589899998158216 ], [ 357518.138899996876717, 256574.668000001460314 ], [ 357506.053199999034405, 256573.513599999248981 ], [ 357505.133599996566772, 256586.804999999701977 ], [ 357505.914700001478195, 256589.766699999570847 ], [ 357515.567100003361702, 256592.589899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303290400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94214413, "LATITUDE": 18.33866978, "OBJECTID_1": 11231, "PARCEL_NO_": "105303290400", "Tax_Legal_": "DEMARARA 2-3 KRONP QTR", "Name": "BROWN, DALE", "Address": "173-330 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29500, "Improved_V": 31400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.551735011299996, "SHAPE_Area": 431.136123306 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357627.961000002920628, 256556.357299998402596 ], [ 357623.95099999755621, 256553.791400000452995 ], [ 357611.784400001168251, 256562.135499998927116 ], [ 357609.905599996447563, 256593.361999999731779 ], [ 357618.787699997425079, 256591.956999998539686 ], [ 357627.961000002920628, 256556.357299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9502255, "LATITUDE": 18.33872632, "OBJECTID_1": 10905, "PARCEL_NO_": "105303050100", "Tax_Legal_": "CONTANT 39A 7B SOUTHSIDE QTR", "Name": "JOHN THOMAS MEM. CHAPEL", "Address": "1100 Lincoln Way", "City": "White Oak", "State": "Pennsylvania", "Zip": 15131, "Country": "United States", "Land_Value": 46100, "Improved_V": 674800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.581155989300001, "SHAPE_Area": 302.03241664900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356772.154200002551079, 256585.660999998450279 ], [ 356765.138300001621246, 256557.317099999636412 ], [ 356755.44820000231266, 256558.926500000059605 ], [ 356760.856799997389317, 256586.624000001698732 ], [ 356772.154200002551079, 256585.660999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95013635, "LATITUDE": 18.33870359, "OBJECTID_1": 10916, "PARCEL_NO_": "105303051000", "Tax_Legal_": "CONTANT 39B 7B SOUTHSIDE QTR", "Name": "JOHN THOMAS MEMORIAL CHAPEL, IN", "Address": "3019 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30400, "Improved_V": 459900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.156396604199998, "SHAPE_Area": 263.99247928900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356779.414599999785423, 256585.298300001770258 ], [ 356775.636600002646446, 256555.503100000321865 ], [ 356765.138300001621246, 256557.317099999636412 ], [ 356772.154200002551079, 256585.660999998450279 ], [ 356779.414599999785423, 256585.298300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303050200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95000238, "LATITUDE": 18.33869442, "OBJECTID_1": 10906, "PARCEL_NO_": "105303050200", "Tax_Legal_": "38 CONTANT 7B SOUTHSIDE QTR", "Name": "BATISTA, XIOMARA", "Address": "PO BOX 305703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49800, "Improved_V": 116000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.552170072, "SHAPE_Area": 594.78995275299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356797.970600001513958, 256584.183600001037121 ], [ 356795.01860000193119, 256552.07319999858737 ], [ 356775.636600002646446, 256555.503100000321865 ], [ 356779.414599999785423, 256585.298300001770258 ], [ 356797.970600001513958, 256584.183600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303290500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94203603, "LATITUDE": 18.33868327, "OBJECTID_1": 11232, "PARCEL_NO_": "105303290500", "Tax_Legal_": "DEMARARA 2-04 KRONPRINDSENS QTR", "Name": "HARRIS, DORIS D", "Address": "PO Box 305411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22700, "Improved_V": 31800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.125959969600004, "SHAPE_Area": 385.43278604599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357640.003499999642372, 256562.577599998563528 ], [ 357632.771899998188019, 256559.563099998980761 ], [ 357627.961000002920628, 256556.357299998402596 ], [ 357618.787699997425079, 256591.956999998539686 ], [ 357630.092200003564358, 256590.149700000882149 ], [ 357640.003499999642372, 256562.577599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90944713, "LATITUDE": 18.33865765, "OBJECTID_1": 20134, "PARCEL_NO_": "105503041000", "Tax_Legal_": "ESTATE THOMAS 30 NEW QUARTER", "Name": "CHRISTIAN, LAUREL", "Address": "4527 29th St NW", "City": "Washington", "State": "District of Columbia", "Zip": 20008, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.47573381800001, "SHAPE_Area": 791.12339407299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361079.014300003647804, 256580.380699999630451 ], [ 361070.890100002288818, 256587.491399999707937 ], [ 361065.985600002110004, 256595.261700000613928 ], [ 361045.638999998569489, 256617.260000001639128 ], [ 361045.619199998676777, 256619.581799998879433 ], [ 361047.230099998414516, 256619.806099999696016 ], [ 361099.818400003015995, 256599.338300000876188 ], [ 361079.014300003647804, 256580.380699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90854462, "LATITUDE": 18.338557, "OBJECTID_1": 20137, "PARCEL_NO_": "105503041300", "Tax_Legal_": "ESTATE THOMAS 19A 6A NEW QUARTER", "Name": "DEGRASSE, ALISON", "Address": "PO Box 308471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25600, "Improved_V": 207800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.67757419399999, "SHAPE_Area": 1863.3664231600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361197.585400000214577, 256576.28489999845624 ], [ 361155.74889999628067, 256565.176699999719858 ], [ 361145.959799997508526, 256578.395500000566244 ], [ 361140.261699996888638, 256584.681600000709295 ], [ 361137.018500000238419, 256586.765999998897314 ], [ 361147.423199996352196, 256595.928199999034405 ], [ 361153.026000000536442, 256600.829199999570847 ], [ 361176.240099996328354, 256620.861999999731779 ], [ 361178.685400001704693, 256622.972199998795986 ], [ 361180.410700000822544, 256619.972899999469519 ], [ 361197.585400000214577, 256576.28489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404140500", "MAP": "D9112-T56", "PARCEL_NAM": "23 of 1st AVENUE", "ACRE": "4,800 sq ft", "LONGITUDE": -64.91913252000001, "LATITUDE": 18.33869251, "OBJECTID_1": 19529, "PARCEL_NO_": "105404140500", "Tax_Legal_": "23 FIRST AVE KINGS QUARTER", "Name": "ST ANDREWS EPISCOPAL CHURCH INC", "Address": "PO Box 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.332121556299995, "SHAPE_Area": 466.02853693600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360065.245800003409386, 256599.525600001215935 ], [ 360049.28320000320673, 256580.185499999672174 ], [ 360034.67059999704361, 256591.675999999046326 ], [ 360050.633299998939037, 256611.016199998557568 ], [ 360065.245800003409386, 256599.525600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94982877, "LATITUDE": 18.33867362, "OBJECTID_1": 10907, "PARCEL_NO_": "105303050300", "Tax_Legal_": "37 CONTANT NO 7B SOUTHSIDE QTR", "Name": "EVANS JR., LINDSAY Y., RODNEY B.,ROSANA C., & OSTIA V.", "Address": "37 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46000, "Improved_V": 591100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.11319030600001, "SHAPE_Area": 599.98109119699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356814.906700000166893, 256583.899999998509884 ], [ 356813.592600002884865, 256548.847699999809265 ], [ 356795.01860000193119, 256552.07319999858737 ], [ 356797.970600001513958, 256584.183600001037121 ], [ 356814.906700000166893, 256583.899999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404121400", "MAP": "MB.B", "PARCEL_NAM": "14 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91679604, "LATITUDE": 18.33871608, "OBJECTID_1": 19481, "PARCEL_NO_": "105404121400", "Tax_Legal_": "14 NINTH STREET KINGS QUARTER", "Name": "BRACES PLUS PC", "Address": "PO Box 302969", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72000, "Improved_V": 31500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.067036612400003, "SHAPE_Area": 422.53978493099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360304.837499998509884, 256587.765500001609325 ], [ 360282.996899999678135, 256595.819400001317263 ], [ 360288.49719999730587, 256612.751899998635054 ], [ 360311.145900003612041, 256604.493500001728535 ], [ 360304.837499998509884, 256587.765500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94965874, "LATITUDE": 18.33866002, "OBJECTID_1": 10908, "PARCEL_NO_": "105303050400", "Tax_Legal_": "36 ESTATE CONTANT 7B SOUTHSIDE QTR", "Name": "SCATLIFFE, PATRICIA N", "Address": "7701 Locust Ln", "City": "Fort Washington", "State": "Maryland", "Zip": 20744, "Country": "United States", "Land_Value": 50200, "Improved_V": 51800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.758579271, "SHAPE_Area": 666.36160015400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356833.45549999922514, 256583.629599999636412 ], [ 356831.360200002789497, 256545.615600001066923 ], [ 356813.592600002884865, 256548.847699999809265 ], [ 356814.906700000166893, 256583.899999998509884 ], [ 356833.45549999922514, 256583.629599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303050500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94948738, "LATITUDE": 18.33864036, "OBJECTID_1": 10910, "PARCEL_NO_": "105303050500", "Tax_Legal_": "CONTANT 35 7B SOUTHSIDE", "Name": "WILLIAMS, NAOMI H.", "Address": "2617 Gamle Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.65022269799999, "SHAPE_Area": 719.97783546699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356851.197999998927116, 256583.352600000798702 ], [ 356849.934199996292591, 256542.3902000002563 ], [ 356831.360200002789497, 256545.615600001066923 ], [ 356833.45549999922514, 256583.629599999636412 ], [ 356851.197999998927116, 256583.352600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303290600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9419153, "LATITUDE": 18.33870264, "OBJECTID_1": 11233, "PARCEL_NO_": "105303290600", "Tax_Legal_": "DEMARARA PCL. 2-5 KRONP. QTR.", "Name": "FELICIANO, SERGIO & VIRGINIA", "Address": "PO Box 306041", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 30800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.231256974499999, "SHAPE_Area": 359.98895879399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357652.071199998259544, 256565.842799998819828 ], [ 357640.003499999642372, 256562.577599998563528 ], [ 357630.092200003564358, 256590.149700000882149 ], [ 357647.048199996352196, 256587.544300001114607 ], [ 357652.071199998259544, 256565.842799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105503012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91270175, "LATITUDE": 18.33816325, "OBJECTID_1": 19976, "PARCEL_NO_": "105503012400", "Tax_Legal_": "6D ESTATE THOMAS NEW QUARTER", "Name": "FINLEY, LENNARD & PAMELA T.", "Address": "6745 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 295700, "Improved_V": 75600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.16083736000002, "SHAPE_Area": 4791.7583532799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360768.262100003659725, 256615.623100001364946 ], [ 360747.489699997007847, 256498.296100001782179 ], [ 360737.817500002682209, 256497.794799998402596 ], [ 360720.101999998092651, 256494.905600000172853 ], [ 360696.718999996781349, 256494.714200001209974 ], [ 360694.592100001871586, 256555.069499999284744 ], [ 360694.478799998760223, 256568.367499999701977 ], [ 360702.504199996590614, 256572.866099998354912 ], [ 360703.457900002598763, 256555.564300000667572 ], [ 360740.535700000822544, 256557.345400001853704 ], [ 360732.9695999994874, 256593.591600000858307 ], [ 360757.038500003516674, 256607.931800000369549 ], [ 360768.262100003659725, 256615.623100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303050600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94932938, "LATITUDE": 18.33862605, "OBJECTID_1": 10912, "PARCEL_NO_": "105303050600", "Tax_Legal_": "CONTANT 34 7B SOUTHSIDE QTR", "Name": "SANCHEZ, MARTIN M.", "Address": "PO Box 308024", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47500, "Improved_V": 298800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.17570367899999, "SHAPE_Area": 647.72275175499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356866.521499998867512, 256583.055900000035763 ], [ 356865.277500003576279, 256539.771499998867512 ], [ 356849.934199996292591, 256542.3902000002563 ], [ 356851.197999998927116, 256583.352600000798702 ], [ 356866.521499998867512, 256583.055900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94921754000001, "LATITUDE": 18.33861409, "OBJECTID_1": 10913, "PARCEL_NO_": "105303050700", "Tax_Legal_": "CONTANT 33 7B SOUTHSIDE QTR", "Name": "BENJAMIN, GERTRUDE, AUSTIN, CLARICE & OTHERS", "Address": "PO Box 306311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.963022166, "SHAPE_Area": 368.668045463 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356874.586400002241135, 256582.910799998790026 ], [ 356874.152300000190735, 256539.210900001227856 ], [ 356865.277500003576279, 256539.771499998867512 ], [ 356866.521499998867512, 256583.055900000035763 ], [ 356874.586400002241135, 256582.910799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94907185, "LATITUDE": 18.33861852, "OBJECTID_1": 10914, "PARCEL_NO_": "105303050800", "Tax_Legal_": "CONTANT 32 7B SOUTHSIDE QTR", "Name": "BENJAMIN, GERTRUDE, AUSTIN, CLARICE & OTHERS", "Address": "PO Box 306311", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47600, "Improved_V": 50900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.34617076000001, "SHAPE_Area": 979.71404514899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356895.780699998140335, 256556.064300000667572 ], [ 356893.518200002610683, 256537.680599998682737 ], [ 356874.152300000190735, 256539.210900001227856 ], [ 356874.586400002241135, 256582.910799998790026 ], [ 356899.587499998509884, 256582.482099998742342 ], [ 356895.780699998140335, 256556.064300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94888405, "LATITUDE": 18.33868317, "OBJECTID_1": 10915, "PARCEL_NO_": "105303050900", "Tax_Legal_": "CONTANT 31 7B SOUTHSIDE QUARTER", "Name": "BENJAMIN, EARL & OTHERS", "Address": "PO Box 305243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31600, "Improved_V": 27300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.996275306000001, "SHAPE_Area": 400.24319967500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356912.716899998486042, 256555.780699998140335 ], [ 356899.806900002062321, 256556.730500001460314 ], [ 356898.201499998569489, 256555.872999999672174 ], [ 356895.780699998140335, 256556.064300000667572 ], [ 356899.587499998509884, 256582.482099998742342 ], [ 356913.29839999973774, 256582.172200001776218 ], [ 356912.716899998486042, 256555.780699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404101300", "MAP": "MB.B", "PARCEL_NAM": "19 of 6th Street", "ACRE": "0.11", "LONGITUDE": -64.91822244, "LATITUDE": 18.33869351, "OBJECTID_1": 19436, "PARCEL_NO_": "105404101300", "Tax_Legal_": "19 SIXTH STREET KINGS QUARTER", "Name": "ESSA LLC", "Address": "PO Box 302682", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72000, "Improved_V": 180000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.191665572299996, "SHAPE_Area": 425.26416190200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360160.385300002992153, 256600.937600001692772 ], [ 360154.078599996864796, 256583.998500000685453 ], [ 360145.990299999713898, 256586.887600000947714 ], [ 360132.237999998033047, 256592.052400000393391 ], [ 360137.738399997353554, 256608.984900001436472 ], [ 360160.385300002992153, 256600.937600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303160400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94335179, "LATITUDE": 18.3386994, "OBJECTID_1": 11056, "PARCEL_NO_": "105303160400", "Tax_Legal_": "34 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "ALIE, ROOPANEE", "Address": "34 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103700, "Improved_V": 181000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.436673728499997, "SHAPE_Area": 392.15676793599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357485.178900003433228, 256562.788100000470877 ], [ 357476.151299998164177, 256581.290399998426437 ], [ 357497.875, 256586.956599999219179 ], [ 357500.364000000059605, 256578.74439999833703 ], [ 357501.242299996316433, 256570.307799998670816 ], [ 357500.452100001275539, 256568.401500001549721 ], [ 357485.178900003433228, 256562.788100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303060100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94864476, "LATITUDE": 18.33860923, "OBJECTID_1": 10918, "PARCEL_NO_": "105303060100", "Tax_Legal_": "30 ESTATE CONTANT 7B SOUTHSIDE QTR", "Name": "GOTTLIEB, LEROY A.", "Address": "3001 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55500, "Improved_V": 43800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.188732898, "SHAPE_Area": 759.20929679599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356941.524700000882149, 256581.769900001585484 ], [ 356937.0591000020504, 256538.037000000476837 ], [ 356922.543700002133846, 256538.129299998283386 ], [ 356921.722999997437, 256539.811299998313189 ], [ 356922.178599998354912, 256580.978300001472235 ], [ 356923.782300002872944, 256582.046900000423193 ], [ 356941.524700000882149, 256581.769900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404131200", "MAP": "MB.B", "PARCEL_NAM": "12 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91622623000001, "LATITUDE": 18.33868235, "OBJECTID_1": 19507, "PARCEL_NO_": "105404131200", "Tax_Legal_": "12 TENTH STREET KINGS QUARTER", "Name": "LIMA, LYDIA E.", "Address": "1012 Tenth Street Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 113700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.031958719599999, "SHAPE_Area": 443.56133961699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360365.345100000500679, 256584.249899998307228 ], [ 360342.696400001645088, 256592.508299998939037 ], [ 360348.999399997293949, 256609.869600001722574 ], [ 360371.649899996817112, 256601.400100000202656 ], [ 360365.345100000500679, 256584.249899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303060200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94848801000001, "LATITUDE": 18.33859211, "OBJECTID_1": 10919, "PARCEL_NO_": "105303060200", "Tax_Legal_": "29 ESTATE CONTANT 7B SOUTHSIDE QTR", "Name": "METHODIST TRAINING AND OUTREACH CENTER INC", "Address": "Po Box 306816", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58000, "Improved_V": 158100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.73578043400001, "SHAPE_Area": 700.744905023 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356955.386699996888638, 256563.729299999773502 ], [ 356954.799800001084805, 256537.971099998801947 ], [ 356937.0591000020504, 256538.037000000476837 ], [ 356941.524700000882149, 256581.769900001585484 ], [ 356956.042000003159046, 256581.466499999165535 ], [ 356955.386699996888638, 256563.729299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303290700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94176778000001, "LATITUDE": 18.33869835, "OBJECTID_1": 11234, "PARCEL_NO_": "105303290700", "Tax_Legal_": "DEMARARA 2-6 KRONP.QTR.", "Name": "LIBURD, HYACINTH", "Address": "P.O. BOX 4334, VETERANS DRIVE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19200, "Improved_V": 36200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.096180586399996, "SHAPE_Area": 326.88248700700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357667.234700001776218, 256584.331999998539686 ], [ 357664.171300001442432, 256565.308499999344349 ], [ 357652.071199998259544, 256565.842799998819828 ], [ 357647.048199996352196, 256587.544300001114607 ], [ 357667.234700001776218, 256584.331999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303060700", "MAP": "G9-2474-T75", "PARCEL_NAM": "28A", "ACRE": null, "LONGITUDE": -64.94832488, "LATITUDE": 18.33871061, "OBJECTID_1": 10924, "PARCEL_NO_": "105303060700", "Tax_Legal_": "28A ESTATE CONTANT 7B SOUTHSIDE QTR.", "Name": "KIMBALL, ESTHER M.", "Address": "PO Box 302964", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23400, "Improved_V": 66200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.381134190099999, "SHAPE_Area": 309.43653124799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356972.978100001811981, 256581.18299999833107 ], [ 356973.130999997258186, 256563.241300001740456 ], [ 356955.386699996888638, 256563.729299999773502 ], [ 356956.042000003159046, 256581.466499999165535 ], [ 356972.978100001811981, 256581.18299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303060800", "MAP": "D9-6775-T000", "PARCEL_NAM": "27A", "ACRE": "3,394 sq ft", "LONGITUDE": -64.9481785, "LATITUDE": 18.33867758, "OBJECTID_1": 10925, "PARCEL_NO_": "105303060800", "Tax_Legal_": "27A ESTATE CONTANT 7B SOUTHSIDE QTR", "Name": "FENNER, KEVIN L", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22600, "Improved_V": 129100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.234057282899997, "SHAPE_Area": 317.75276818600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356988.542900003492832, 256557.575100000947714 ], [ 356973.360100001096725, 256557.564899999648333 ], [ 356973.130999997258186, 256563.241300001740456 ], [ 356972.978100001811981, 256581.18299999833107 ], [ 356984.732400000095367, 256580.937399998307228 ], [ 356987.07150000333786, 256566.596000000834465 ], [ 356988.183899998664856, 256559.77589999884367 ], [ 356988.542900003492832, 256557.575100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303060500", "MAP": "G9-1179-T68", "PARCEL_NAM": "26A", "ACRE": null, "LONGITUDE": -64.94803304, "LATITUDE": 18.33869045, "OBJECTID_1": 10922, "PARCEL_NO_": "105303060500", "Tax_Legal_": "26A ESTATE CONTANT 7B SOUTHSIDE QTR", "Name": "PRINCE, WAYNE, SR. & CHERYL (TRUSTEES)", "Address": "PO Box 303978", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27000, "Improved_V": 104400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.905994787899999, "SHAPE_Area": 371.92346565999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357003.626999996602535, 256580.378299999982119 ], [ 357004.613099999725819, 256559.277100000530481 ], [ 356989.287799999117851, 256559.78489999845624 ], [ 356988.183899998664856, 256559.77589999884367 ], [ 356987.07150000333786, 256566.596000000834465 ], [ 356984.732400000095367, 256580.937399998307228 ], [ 356987.495300002396107, 256580.879599999636412 ], [ 357003.626999996602535, 256580.378299999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303290800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94160609, "LATITUDE": 18.33866523, "OBJECTID_1": 11235, "PARCEL_NO_": "105303290800", "Tax_Legal_": "DEMARARA 2-7 KRONP. QTR.", "Name": "SCARBRIEL, RUDOLPH & LINOLA", "Address": "PO Box 10015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 35300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.537248070199993, "SHAPE_Area": 363.13772485499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357685.805100001394749, 256581.5287000015378 ], [ 357680.338899999856949, 256560.585700001567602 ], [ 357664.171300001442432, 256565.308499999344349 ], [ 357667.234700001776218, 256584.331999998539686 ], [ 357685.805100001394749, 256581.5287000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404111700", "MAP": "MB.B", "PARCEL_NAM": "17 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91765443, "LATITUDE": 18.33864996, "OBJECTID_1": 19460, "PARCEL_NO_": "105404111700", "Tax_Legal_": "17 SEVENTH STREET KINGS QUARTER", "Name": "MYERS, E. , I. , I. , K. , A. , A", "Address": "PO Box 305019", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13100, "Improved_V": 53600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.020823151200005, "SHAPE_Area": 416.15620563599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360220.907200001180172, 256595.733399998396635 ], [ 360214.589800000190735, 256580.0608000010252 ], [ 360191.941100001335144, 256588.319099999964237 ], [ 360197.448700003325939, 256604.407299999147654 ], [ 360220.907200001180172, 256595.733399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303160300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94352896, "LATITUDE": 18.33864302, "OBJECTID_1": 11055, "PARCEL_NO_": "105303160300", "Tax_Legal_": "ALTONA 35 CROWN PRINCE QTR", "Name": "QUEEMAN, HUBERT", "Address": "35 EST ALTONA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29700, "Improved_V": 45400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.263023069900001, "SHAPE_Area": 407.47690908200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357485.178900003433228, 256562.788100000470877 ], [ 357476.338299997150898, 256559.338199999183416 ], [ 357468.302100002765656, 256556.105999998748302 ], [ 357458.489699997007847, 256572.068799998611212 ], [ 357456.850100003182888, 256575.221799999475479 ], [ 357476.151299998164177, 256581.290399998426437 ], [ 357485.178900003433228, 256562.788100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404121500", "MAP": "MB.B", "PARCEL_NAM": "15 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.9170741, "LATITUDE": 18.33863674, "OBJECTID_1": 19482, "PARCEL_NO_": "105404121500", "Tax_Legal_": "15 EIGHTH STREET KINGS QUARTER", "Name": "BRACES PLUS PC", "Address": "PO Box 302969", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.529754368499994, "SHAPE_Area": 479.30219664200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360282.996899999678135, 256595.819400001317263 ], [ 360275.891099996864796, 256578.029399998486042 ], [ 360252.432599999010563, 256586.703299999237061 ], [ 360258.733800001442432, 256604.275600001215935 ], [ 360282.996899999678135, 256595.819400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303170900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94250333, "LATITUDE": 18.33867757, "OBJECTID_1": 11075, "PARCEL_NO_": "105303170900", "Tax_Legal_": "ALTONA & WELGUNST 28&27B CROWN PRINCE QTR", "Name": "MORTON, MELISE", "Address": "PO Box 302462", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17000, "Improved_V": 25700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.242493951900002, "SHAPE_Area": 319.30780134700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357595.627599999308586, 256565.591899998486042 ], [ 357568.193199999630451, 256567.689399998635054 ], [ 357568.916799999773502, 256577.405600000172853 ], [ 357568.880800001323223, 256581.627199999988079 ], [ 357576.943899996578693, 256581.693199999630451 ], [ 357586.617899999022484, 256581.983399998396635 ], [ 357589.105099998414516, 256573.982200000435114 ], [ 357590.73929999768734, 256571.462499998509884 ], [ 357595.627599999308586, 256565.591899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303290900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94144997, "LATITUDE": 18.33863222, "OBJECTID_1": 11236, "PARCEL_NO_": "105303290900", "Tax_Legal_": "DEMARARA PCL. 2-8 KRONP. QTR.", "Name": "GREAUX, L. & FARLEY, C", "Address": "PO Box 10253", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 34400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.697673541300006, "SHAPE_Area": 364.07313980399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357702.760999999940395, 256578.923200000077486 ], [ 357694.88849999755621, 256556.482900001108646 ], [ 357680.338899999856949, 256560.585700001567602 ], [ 357685.805100001394749, 256581.5287000015378 ], [ 357702.760999999940395, 256578.923200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404101400", "MAP": "MB.B", "PARCEL_NAM": "20 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.9180065, "LATITUDE": 18.33861745, "OBJECTID_1": 19437, "PARCEL_NO_": "105404101400", "Tax_Legal_": "THOMAS ESTATE 20-7th STREET KINGS QUARTER", "Name": "CAROL A JACOBS TRUST", "Address": "PO Box 303949", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72000, "Improved_V": 180600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.845570603699997, "SHAPE_Area": 446.878656767 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360178.338100001215935, 256575.964400000870228 ], [ 360163.783100001513958, 256580.700399998575449 ], [ 360154.078599996864796, 256583.998500000685453 ], [ 360160.385300002992153, 256600.937600001692772 ], [ 360183.843800000846386, 256592.263599999248981 ], [ 360178.338100001215935, 256575.964400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404140600", "MAP": "D9-112-T56", "PARCEL_NAM": "25 of 1st AVENUE", "ACRE": "4,800 sq ft", "LONGITUDE": -64.91898738, "LATITUDE": 18.33857889, "OBJECTID_1": 19530, "PARCEL_NO_": "105404140600", "Tax_Legal_": "FIRST AVENUE 25 KINGS QUARTER", "Name": "DOWNING, MYRA & SIMONE O. HEYLIGER", "Address": "PO BOX 303761", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11500, "Improved_V": 133000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.239610870099995, "SHAPE_Area": 526.70604366600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360080.670000001788139, 256587.408399999141693 ], [ 360067.140699997544289, 256566.399399999529123 ], [ 360049.28320000320673, 256580.185499999672174 ], [ 360065.245800003409386, 256599.525600001215935 ], [ 360080.670000001788139, 256587.408399999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404131300", "MAP": "MB.B", "PARCEL_NAM": "13 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91650466, "LATITUDE": 18.33860514, "OBJECTID_1": 19508, "PARCEL_NO_": "105404131300", "Tax_Legal_": "NINTH STREET 13 KINGS QUARTER", "Name": "BERNE, BERNICE (LIFE ESTATE)", "Address": "PO Box 10169", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 138200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.689880434800003, "SHAPE_Area": 458.79293631299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360342.696400001645088, 256592.508299998939037 ], [ 360336.391500003635883, 256575.3581000007689 ], [ 360312.934799998998642, 256583.820999998599291 ], [ 360319.237800002098083, 256601.182199999690056 ], [ 360342.696400001645088, 256592.508299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303291000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94131323000001, "LATITUDE": 18.33859761, "OBJECTID_1": 11237, "PARCEL_NO_": "105303291000", "Tax_Legal_": "DEMARARA 2-9 KRONP.QTR.", "Name": "FRANK A. & JULIA R. OLDUM MD LIVING TRUST", "Address": "PO Box 12138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 38400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.183506407500005, "SHAPE_Area": 347.22302050399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357716.488099999725819, 256576.713599998503923 ], [ 357707.832699999213219, 256551.522599998861551 ], [ 357694.88849999755621, 256556.482900001108646 ], [ 357702.760999999940395, 256578.923200000077486 ], [ 357716.488099999725819, 256576.713599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303170800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94271607, "LATITUDE": 18.33857825, "OBJECTID_1": 11074, "PARCEL_NO_": "105303170800", "Tax_Legal_": "ALTONA & WELGUNST 27A&49 CROWN PRINCE QTR", "Name": "CALLWOOD, CLIFFORD B.", "Address": "PO Box 8029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 122700, "Improved_V": 114200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.60444159, "SHAPE_Area": 657.08548803400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357544.732799999415874, 256576.574400000274181 ], [ 357559.242799997329712, 256577.115299999713898 ], [ 357568.916799999773502, 256577.405600000172853 ], [ 357568.193199999630451, 256567.689399998635054 ], [ 357567.577500000596046, 256545.308400001376867 ], [ 357547.387299999594688, 256548.942899998277426 ], [ 357544.732799999415874, 256576.574400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303291100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94119028, "LATITUDE": 18.33856541, "OBJECTID_1": 11238, "PARCEL_NO_": "105303291100", "Tax_Legal_": "DEMERARA 2-10 KRONP. QTR", "Name": "WILLIAMS, ALFORD & THELMA", "Address": "3210 Demarara Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22400, "Improved_V": 31000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.333961458299996, "SHAPE_Area": 378.11594825700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357727.063699997961521, 256565.82319999858737 ], [ 357716.76860000193119, 256543.785300001502037 ], [ 357713.503799997270107, 256548.40260000154376 ], [ 357707.832699999213219, 256551.522599998861551 ], [ 357716.488099999725819, 256576.713599998503923 ], [ 357731.021499998867512, 256574.510499998927116 ], [ 357727.063699997961521, 256565.82319999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404111800", "MAP": "MB.B", "PARCEL_NAM": "18 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91743379, "LATITUDE": 18.33857385, "OBJECTID_1": 19461, "PARCEL_NO_": "105404111800", "Tax_Legal_": "EIGHTH STREET 18 KINGS QUARTER", "Name": "BARNES G E & I", "Address": "21 E 48th St", "City": "Minneapolis", "State": "Minnesota", "Zip": 55419, "Country": "United States", "Land_Value": 13100, "Improved_V": 95200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.569794875400007, "SHAPE_Area": 433.60310321999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360238.046599999070168, 256571.597899999469519 ], [ 360214.589800000190735, 256580.0608000010252 ], [ 360220.907200001180172, 256595.733399998396635 ], [ 360244.351400002837181, 256588.748100001364946 ], [ 360238.046599999070168, 256571.597899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303170500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94313929, "LATITUDE": 18.33858309, "OBJECTID_1": 11068, "PARCEL_NO_": "105303170500", "Tax_Legal_": "ALTONA 47 CROWN PRINCE QTR", "Name": "ADINA WILLIAMS FAMILY REVOCABLE TRUST", "Address": "3582 Honduras 5B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69300, "Improved_V": 100500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.352139995300007, "SHAPE_Area": 321.095297432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357518.968500003218651, 256571.930500000715256 ], [ 357522.351999998092651, 256553.381999999284744 ], [ 357499.771700002253056, 256553.61939999833703 ], [ 357504.553800001740456, 256560.202399998903275 ], [ 357506.134099997580051, 256564.015000000596046 ], [ 357506.913400001823902, 256567.187800001353025 ], [ 357506.053199999034405, 256573.513599999248981 ], [ 357518.138899996876717, 256574.668000001460314 ], [ 357518.968500003218651, 256571.930500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303080400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94541444, "LATITUDE": 18.33862024, "OBJECTID_1": 10949, "PARCEL_NO_": "105303080400", "Tax_Legal_": "ALTONA & WELGUNST #215 KRONP. QTR.", "Name": "CARIBBEAN ASS. LTD P/SHIP", "Address": "69 Spring St", "City": "Ramsey", "State": "New Jersey", "Zip": 7446, "Country": "United States", "Land_Value": 12400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.681389643800003, "SHAPE_Area": 248.67253380400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357259.355700001120567, 256567.48369999974966 ], [ 357269.812600001692772, 256570.524599999189377 ], [ 357276.255900003015995, 256571.421700000762939 ], [ 357282.715400002896786, 256570.419100001454353 ], [ 357284.336999997496605, 256569.376899998635054 ], [ 357285.177500002086163, 256565.372999999672174 ], [ 357284.383799999952316, 256563.888900000602007 ], [ 357265.100599996745586, 256555.709499999880791 ], [ 357259.355700001120567, 256567.48369999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404121600", "MAP": "MB.B", "PARCEL_NAM": "16 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91685755, "LATITUDE": 18.33855885, "OBJECTID_1": 19483, "PARCEL_NO_": "105404121600", "Tax_Legal_": "16 NINTH STREET KINGS QUARTER", "Name": "BRACES PLUS PC", "Address": "PO Box 302969", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 13200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.606951208300003, "SHAPE_Area": 452.66731728399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360298.539800003170967, 256569.771000001579523 ], [ 360275.891099996864796, 256578.029399998486042 ], [ 360282.996899999678135, 256595.819400001317263 ], [ 360304.837499998509884, 256587.765500001609325 ], [ 360298.539800003170967, 256569.771000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303170600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94301818, "LATITUDE": 18.33855557, "OBJECTID_1": 11069, "PARCEL_NO_": "105303170600", "Tax_Legal_": "ALTONA & WELGUNST 48A CROWN PRINCE QUARTER", "Name": "HODGE, IVAN", "Address": "ALTONA 48A-BOX 3793", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12700, "Improved_V": 67000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.165072569100005, "SHAPE_Area": 209.69602383399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357532.076300002634525, 256547.762099999934435 ], [ 357524.020400002598763, 256546.851799998432398 ], [ 357522.351999998092651, 256553.381999999284744 ], [ 357518.968500003218651, 256571.930500000715256 ], [ 357527.026299998164177, 256572.629799999296665 ], [ 357532.076300002634525, 256547.762099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303160200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94370014, "LATITUDE": 18.33852298, "OBJECTID_1": 11054, "PARCEL_NO_": "105303160200", "Tax_Legal_": "ALTONA 36 CROWN PRINCE QTR", "Name": "GREAUX, LOUIS J, G E & J", "Address": "BOX 4018", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43600, "Improved_V": 87100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.067068781, "SHAPE_Area": 701.42370754199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357468.302100002765656, 256556.105999998748302 ], [ 357461.997299998998642, 256538.955899998545647 ], [ 357453.151199996471405, 256536.139199998229742 ], [ 357434.356100000441074, 256565.327399998903275 ], [ 357458.489699997007847, 256572.068799998611212 ], [ 357468.302100002765656, 256556.105999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404101500", "MAP": "MB.B", "PARCEL_NAM": "32 of 1st Ave", "ACRE": "0.13", "LONGITUDE": -64.91833865, "LATITUDE": 18.33850345, "OBJECTID_1": 19438, "PARCEL_NO_": "105404101500", "Tax_Legal_": "FIRST AVE 32 KINGS QUARTER", "Name": "DAVID, B & E S", "Address": "PO Box 7563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13900, "Improved_V": 55300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.253103761999995, "SHAPE_Area": 430.02986580499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360132.237999998033047, 256592.052400000393391 ], [ 360145.990299999713898, 256586.887600000947714 ], [ 360134.152800001204014, 256556.604299999773502 ], [ 360123.598800003528595, 256564.96169999986887 ], [ 360123.575400002300739, 256567.705699998885393 ], [ 360132.237999998033047, 256592.052400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90915041, "LATITUDE": 18.33845913, "OBJECTID_1": 20136, "PARCEL_NO_": "105503041200", "Tax_Legal_": "ESTATE THOMAS 29 NEW QUARTER", "Name": "CHRISTIAN, CLAUDETTE M", "Address": "2928 Ellicott Ter NW", "City": "Washington", "State": "District of Columbia", "Zip": 20008, "Country": "United States", "Land_Value": 18800, "Improved_V": 190500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.12464710200001, "SHAPE_Area": 1233.4079777899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361129.776000000536442, 256585.01799999922514 ], [ 361109.893399998545647, 256552.55799999833107 ], [ 361107.454599998891354, 256554.859999999403954 ], [ 361079.014300003647804, 256580.380699999630451 ], [ 361099.818400003015995, 256599.338300000876188 ], [ 361108.718400001525879, 256595.822500001639128 ], [ 361117.616599999368191, 256592.517799999564886 ], [ 361129.776000000536442, 256585.01799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404131400", "MAP": "MB.B", "PARCEL_NAM": "14 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91628538000001, "LATITUDE": 18.33852641, "OBJECTID_1": 19509, "PARCEL_NO_": "105404131400", "Tax_Legal_": "14 TENTH STREET KINGS QUARTER", "Name": "FRANCIS, E & M C", "Address": "PO Box 662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11500, "Improved_V": 64100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.520814066300005, "SHAPE_Area": 447.04991052399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360359.848300002515316, 256566.895300000905991 ], [ 360336.391500003635883, 256575.3581000007689 ], [ 360342.696400001645088, 256592.508299998939037 ], [ 360365.345100000500679, 256584.249899998307228 ], [ 360359.848300002515316, 256566.895300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303160700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94332517, "LATITUDE": 18.3385637, "OBJECTID_1": 11059, "PARCEL_NO_": "105303160700", "Tax_Legal_": "ALTONA 34A CROWN PRINCE QTR", "Name": "LAKE, THOMAS", "Address": "PO Box 302995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9500, "Improved_V": 4900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.126375668400001, "SHAPE_Area": 121.01845169800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357494.172499999403954, 256548.29619999974966 ], [ 357485.178900003433228, 256562.788100000470877 ], [ 357500.452100001275539, 256568.401500001549721 ], [ 357499.681800000369549, 256564.173300001770258 ], [ 357494.897900000214577, 256557.801399998366833 ], [ 357494.172499999403954, 256548.29619999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303060300", "MAP": "A3-39-T39", "PARCEL_NAM": "28 REM", "ACRE": null, "LONGITUDE": -64.9483271, "LATITUDE": 18.33851362, "OBJECTID_1": 10920, "PARCEL_NO_": "105303060300", "Tax_Legal_": "CONTANT 28 7B SOUHSIDE QTR", "Name": "SOTO FAMILY TRUST", "Address": "PO Box 302668", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33300, "Improved_V": 42200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.212785255399993, "SHAPE_Area": 473.68772567399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356974.153099998831749, 256537.918400000780821 ], [ 356954.799800001084805, 256537.971099998801947 ], [ 356955.386699996888638, 256563.729299999773502 ], [ 356973.130999997258186, 256563.241300001740456 ], [ 356974.153099998831749, 256537.918400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303171400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94249696, "LATITUDE": 18.33849531, "OBJECTID_1": 11080, "PARCEL_NO_": "105303171400", "Tax_Legal_": "ALTONA & WELGUNST 27 CROWN PRINCE QTR", "Name": "CALLWOOD, CLIFFORD B.", "Address": "PO Box 8029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.980868008, "SHAPE_Area": 588.23622113800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357595.627599999308586, 256565.591899998486042 ], [ 357588.500200003385544, 256550.334800001233816 ], [ 357588.609899997711182, 256537.458999998867512 ], [ 357588.645900003612041, 256533.237399999052286 ], [ 357576.48650000244379, 256540.737300001084805 ], [ 357570.0, 256544.906100001186132 ], [ 357567.577500000596046, 256545.308400001376867 ], [ 357570.694799996912479, 256557.999499998986721 ], [ 357568.193199999630451, 256567.689399998635054 ], [ 357595.627599999308586, 256565.591899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105503012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91277567, "LATITUDE": 18.3384116, "OBJECTID_1": 19977, "PARCEL_NO_": "105503012500", "Tax_Legal_": "1OF 6D EST THOMAS NEW QTR", "Name": "FRANCIS, C. ABRAMSON & OTHERS", "Address": "PO Box 709", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 64300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.38216361100001, "SHAPE_Area": 933.24648068099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360703.457900002598763, 256555.564300000667572 ], [ 360702.504199996590614, 256572.866099998354912 ], [ 360715.342200003564358, 256580.359499998390675 ], [ 360732.9695999994874, 256593.591600000858307 ], [ 360740.535700000822544, 256557.345400001853704 ], [ 360703.457900002598763, 256555.564300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404140700", "MAP": "D9-112-T56", "PARCEL_NAM": "37 of 1st AVENUE", "ACRE": "4,732 sq ft", "LONGITUDE": -64.91883376, "LATITUDE": 18.33846774, "OBJECTID_1": 19531, "PARCEL_NO_": "105404140700", "Tax_Legal_": "27, 29, 31, & 33 1ST AVENUE ESTATE THOMAS", "Name": "ST ANDREWS EPISCOPAL CHURCH", "Address": "C/O RECTOR & WARDENS BOX 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 285200, "Improved_V": 277700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.081512410900004, "SHAPE_Area": 488.06840887099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360096.907700002193451, 256574.453499998897314 ], [ 360081.753200002014637, 256554.908900000154972 ], [ 360067.140699997544289, 256566.399399999529123 ], [ 360080.670000001788139, 256587.408399999141693 ], [ 360096.907700002193451, 256574.453499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404111900", "MAP": "MB.B", "PARCEL_NAM": "19 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91771086, "LATITUDE": 18.3385027, "OBJECTID_1": 19462, "PARCEL_NO_": "105404111900", "Tax_Legal_": "SEVENTH STREET 19 KINGS QUARTER", "Name": "COLBOURNE, ANN", "Address": "Ross Taarenberg Bldg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.095734106600005, "SHAPE_Area": 422.11366620199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360214.589800000190735, 256580.0608000010252 ], [ 360208.28320000320673, 256563.121700000017881 ], [ 360186.437200002372265, 256571.808800000697374 ], [ 360191.941100001335144, 256588.319099999964237 ], [ 360214.589800000190735, 256580.0608000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404101600", "MAP": "MB.B", "PARCEL_NAM": "34 of 1st Ave", "ACRE": "0.15", "LONGITUDE": -64.9182028, "LATITUDE": 18.33843021, "OBJECTID_1": 19439, "PARCEL_NO_": "105404101600", "Tax_Legal_": "34 FIRST AVE KINGS QUARTER", "Name": "GARVEY, DORIS V", "Address": "9034 First Ave", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 347800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.2433068, "SHAPE_Area": 649.34163782099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360145.990299999713898, 256586.887600000947714 ], [ 360154.078599996864796, 256583.998500000685453 ], [ 360163.783100001513958, 256580.700399998575449 ], [ 360154.298000000417233, 256558.246800001710653 ], [ 360148.76349999755621, 256545.324799999594688 ], [ 360134.152800001204014, 256556.604299999773502 ], [ 360145.990299999713898, 256586.887600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303150400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9438804, "LATITUDE": 18.3384815, "OBJECTID_1": 11031, "PARCEL_NO_": "105303150400", "Tax_Legal_": "ALTONA 37 CROWN PRINCE", "Name": "CALLWOOD, VIRGINIA", "Address": "PO Box 4623", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16000, "Improved_V": 98000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.909854224599997, "SHAPE_Area": 254.545545309 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357445.847699999809265, 256541.567899998277426 ], [ 357434.593400001525879, 256537.464999999850988 ], [ 357431.281900003552437, 256547.57039999961853 ], [ 357423.091099999845028, 256562.49100000038743 ], [ 357425.490199998021126, 256564.832699999213219 ], [ 357425.517200000584126, 256561.666499998420477 ], [ 357431.136200003325939, 256564.66780000180006 ], [ 357445.847699999809265, 256541.567899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303171500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94234646, "LATITUDE": 18.33845635, "OBJECTID_1": 11081, "PARCEL_NO_": "105303171500", "Tax_Legal_": "ALTONA 26 CROWN PRINCE QTR", "Name": "STOLLIARD, ALBERTO", "Address": "PO Box 1604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12100, "Improved_V": 49000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.305123663700002, "SHAPE_Area": 365.77710821800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357599.883900001645088, 256539.239999998360872 ], [ 357596.710799999535084, 256533.092300001531839 ], [ 357588.609899997711182, 256537.458999998867512 ], [ 357588.500200003385544, 256550.334800001233816 ], [ 357595.627599999308586, 256565.591899998486042 ], [ 357606.987899996340275, 256557.241099998354912 ], [ 357601.4695999994874, 256542.419399999082088 ], [ 357599.883900001645088, 256539.239999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91044005000001, "LATITUDE": 18.33825248, "OBJECTID_1": 19970, "PARCEL_NO_": "105503011800", "Tax_Legal_": "3 ESTATE THOMAS NEW QUARTER", "Name": "MARJORIE A PETERSEN TRUSTEE", "Address": "PO Box 723", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 108000, "Improved_V": 326600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 325.42188787499998, "SHAPE_Area": 6330.94543247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360928.116999998688698, 256592.866700001060963 ], [ 360992.710100002586842, 256583.05180000141263 ], [ 361045.363200001418591, 256554.985100001096725 ], [ 361030.905299998819828, 256548.322900000959635 ], [ 361022.086199998855591, 256542.34010000154376 ], [ 361015.695100001990795, 256535.321699999272823 ], [ 360998.830799996852875, 256527.162099998444319 ], [ 360983.545000001788139, 256523.026200000196695 ], [ 360946.490599997341633, 256518.5011 ], [ 360941.652800001204014, 256518.461500000208616 ], [ 360935.187899999320507, 256520.097300000488758 ], [ 360927.893299996852875, 256524.470600001513958 ], [ 360923.003300003707409, 256530.552299998700619 ], [ 360920.532200001180172, 256536.653799999505281 ], [ 360917.996399998664856, 256550.354100000113249 ], [ 360919.45440000295639, 256568.520100001245737 ], [ 360925.73759999871254, 256588.203200001269579 ], [ 360928.116999998688698, 256592.866700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303060600", "MAP": "A3-39-T39", "PARCEL_NAM": "26 REM", "ACRE": null, "LONGITUDE": -64.94801577, "LATITUDE": 18.33849908, "OBJECTID_1": 10923, "PARCEL_NO_": "105303060600", "Tax_Legal_": "26 CONTANT 2 7B SOUTHSIDE QUARTER", "Name": "GUMBS, CELIA R", "Address": "P.O. BOX 4574", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.351771177100005, "SHAPE_Area": 317.05014905500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357004.789300002157688, 256538.591299999505281 ], [ 357003.182099997997284, 256537.944899998605251 ], [ 356991.732799999415874, 256538.017700001597404 ], [ 356989.123099997639656, 256554.017900001257658 ], [ 356988.542900003492832, 256557.575100000947714 ], [ 356988.183899998664856, 256559.77589999884367 ], [ 356989.287799999117851, 256559.78489999845624 ], [ 357004.613099999725819, 256559.277100000530481 ], [ 357004.789300002157688, 256538.591299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404121700", "MAP": "MB.B", "PARCEL_NAM": "17 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91713633000001, "LATITUDE": 18.33848, "OBJECTID_1": 19484, "PARCEL_NO_": "105404121700", "Tax_Legal_": "17 EIGHTH STREET KINGS QUARTER", "Name": "ROGER, ALPHEUS A & CENITA", "Address": "PO Box 8798", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73300, "Improved_V": 195100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.781079197500006, "SHAPE_Area": 457.17630810600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360275.891099996864796, 256578.029399998486042 ], [ 360270.390799999237061, 256561.096900001168251 ], [ 360246.127700001001358, 256569.553100001066923 ], [ 360252.432599999010563, 256586.703299999237061 ], [ 360275.891099996864796, 256578.029399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303150200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94402384, "LATITUDE": 18.33847196, "OBJECTID_1": 11030, "PARCEL_NO_": "105303150200", "Tax_Legal_": "ALTONA 38 CROWN PRINCE QTR", "Name": "RIVERA, FELIX", "Address": "PO Box 306684", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24400, "Improved_V": 61400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.968099857799999, "SHAPE_Area": 374.79656132000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357428.920500002801418, 256540.796100001782179 ], [ 357417.682499997317791, 256534.793499998748302 ], [ 357407.013400003314018, 256556.65989999845624 ], [ 357419.865800000727177, 256562.464600000530481 ], [ 357423.091099999845028, 256562.49100000038743 ], [ 357429.674699999392033, 256546.9239999987185 ], [ 357427.270099997520447, 256545.215500000864267 ], [ 357428.920500002801418, 256540.796100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303160600", "MAP": null, "PARCEL_NAM": "46", "ACRE": null, "LONGITUDE": -64.94339474, "LATITUDE": 18.33843492, "OBJECTID_1": 11058, "PARCEL_NO_": "105303160600", "Tax_Legal_": "ALTONA 46 CROWN PRINCE QTR", "Name": "LAKE, THOMAS M.", "Address": "PO Box 306322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15400, "Improved_V": 62600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.897199391800001, "SHAPE_Area": 406.795734401 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357496.706500001251698, 256534.807000000029802 ], [ 357481.422499999403954, 256530.46000000089407 ], [ 357476.338299997150898, 256559.338199999183416 ], [ 357485.178900003433228, 256562.788100000470877 ], [ 357494.172499999403954, 256548.29619999974966 ], [ 357493.403899997472763, 256543.85700000077486 ], [ 357496.706500001251698, 256534.807000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94890115, "LATITUDE": 18.33848373, "OBJECTID_1": 10917, "PARCEL_NO_": "105303051100", "Tax_Legal_": "31A ESTATE CONTANT 7B SOUTHSIDE QUARTER", "Name": "BRUNN, ELLA", "Address": "PO Box 6251", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16900, "Improved_V": 43100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.222528551699995, "SHAPE_Area": 336.67093973599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356893.518200002610683, 256537.680599998682737 ], [ 356895.780699998140335, 256556.064300000667572 ], [ 356898.201499998569489, 256555.872999999672174 ], [ 356899.806900002062321, 256556.730500001460314 ], [ 356912.716899998486042, 256555.780699998140335 ], [ 356912.871500000357628, 256537.627900000661612 ], [ 356893.518200002610683, 256537.680599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303070100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9505874, "LATITUDE": 18.33846107, "OBJECTID_1": 10926, "PARCEL_NO_": "105303070100", "Tax_Legal_": "CONTANT 12,13&14 7B SOUTHSIDE QTR", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 634000, "Improved_V": 2660300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.400558644399993, "SHAPE_Area": 403.901352379 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356710.325300000607967, 256554.968600001186132 ], [ 356734.530799999833107, 256553.2668999992311 ], [ 356731.587899997830391, 256520.101100001484156 ], [ 356710.325300000607967, 256554.968600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404131500", "MAP": "MB.B", "PARCEL_NAM": "15 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91656511, "LATITUDE": 18.33844605, "OBJECTID_1": 19510, "PARCEL_NO_": "105404131500", "Tax_Legal_": "15 NINTH STREET KINGS QUARTER", "Name": "RITTER, KIMBERLEY R.", "Address": "PO Box 7312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.152875494200003, "SHAPE_Area": 476.75069409600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360336.391500003635883, 256575.3581000007689 ], [ 360330.09570000320673, 256557.152499999850988 ], [ 360306.635300002992153, 256566.037599999457598 ], [ 360312.934799998998642, 256583.820999998599291 ], [ 360336.391500003635883, 256575.3581000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303070100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95037488, "LATITUDE": 18.33828621, "OBJECTID_1": 10926, "PARCEL_NO_": "105303070100", "Tax_Legal_": "CONTANT 12,13&14 7B SOUTHSIDE QTR", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 634000, "Improved_V": 2660300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.983753006, "SHAPE_Area": 1487.58930771 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356762.920800000429153, 256548.194699998944998 ], [ 356757.014200001955032, 256478.420299999415874 ], [ 356753.667599998414516, 256483.973700001835823 ], [ 356731.587899997830391, 256520.101100001484156 ], [ 356734.530799999833107, 256553.2668999992311 ], [ 356757.143500000238419, 256549.230099998414516 ], [ 356762.920800000429153, 256548.194699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303160500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94354952, "LATITUDE": 18.33838019, "OBJECTID_1": 11057, "PARCEL_NO_": "105303160500", "Tax_Legal_": "ALTONA 45 CROWN PRINCE QTR", "Name": "SANTIAGO, A. , A. , K. , U. , & CARROTHE", "Address": "2615 Hallie Mill Rd", "City": "College Park", "State": "Georgia", "Zip": 30349, "Country": "United States", "Land_Value": 72700, "Improved_V": 158000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.028498332, "SHAPE_Area": 512.3238353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357481.422499999403954, 256530.46000000089407 ], [ 357457.269100002944469, 256526.040500000119209 ], [ 357455.62049999833107, 256530.248799998313189 ], [ 357454.790799997746944, 256532.986299999058247 ], [ 357453.151199996471405, 256536.139199998229742 ], [ 357461.997299998998642, 256538.955899998545647 ], [ 357468.302100002765656, 256556.105999998748302 ], [ 357476.338299997150898, 256559.338199999183416 ], [ 357481.422499999403954, 256530.46000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94762097, "LATITUDE": 18.33847092, "OBJECTID_1": 10901, "PARCEL_NO_": "105303040800", "Tax_Legal_": "CONTANT 25 A A 7B SOUTHSIDE QTR", "Name": "JACOBS, COURTNEY A.", "Address": "732 E Turmont St", "City": "Carson", "State": "California", "Zip": 90746, "Country": "United States", "Land_Value": 12700, "Improved_V": 38600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.4496810208, "SHAPE_Area": 180.42014936699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357033.82379999756813, 256537.984600000083447 ], [ 357033.678099997341633, 256555.081999998539686 ], [ 357043.352099999785423, 256555.37220000103116 ], [ 357045.112199999392033, 256538.076999999582767 ], [ 357033.82379999756813, 256537.984600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404101800", "MAP": null, "PARCEL_NAM": "36A of 7th Street", "ACRE": "0.08", "LONGITUDE": -64.91803228000001, "LATITUDE": 18.33842323, "OBJECTID_1": 19441, "PARCEL_NO_": "105404101800", "Tax_Legal_": "36A 1ST AVENUE SUB DIVISION EST THOMAS", "Name": "JENNINGS, HILDA & ELVA & S", "Address": "129 W 147th St", "City": "New York", "State": "New York", "Zip": 10039, "Country": "United States", "Land_Value": 9400, "Improved_V": 70200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.882131152699998, "SHAPE_Area": 389.00941130199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360169.666500002145767, 256552.673099998384714 ], [ 360154.298000000417233, 256558.246800001710653 ], [ 360163.783100001513958, 256580.700399998575449 ], [ 360178.338100001215935, 256575.964400000870228 ], [ 360169.666500002145767, 256552.673099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303291300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94188181, "LATITUDE": 18.33844056, "OBJECTID_1": 11240, "PARCEL_NO_": "105303291300", "Tax_Legal_": "DEMARARA PCL. 2-12 KRONP. QTR", "Name": "GREAUX, ROMEA", "Address": "2-12 Estate Demerara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 27100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.137216569200007, "SHAPE_Area": 352.32719404599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357629.627599999308586, 256550.038100000470877 ], [ 357641.664700001478195, 256556.891600001603365 ], [ 357653.734200000762939, 256559.945700000971556 ], [ 357653.975199997425079, 256531.661200001835823 ], [ 357641.792400002479553, 256541.905099999159575 ], [ 357629.627599999308586, 256550.038100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303291400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94174342, "LATITUDE": 18.33843957, "OBJECTID_1": 11241, "PARCEL_NO_": "105303291400", "Tax_Legal_": "DEMERARA 2-13 KRONP. QTR", "Name": "JNO PIERRE, JOANN", "Address": "2-13 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19400, "Improved_V": 30500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.116386353199999, "SHAPE_Area": 322.031947823 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357665.202399998903275, 256538.93019999936223 ], [ 357653.975199997425079, 256531.661200001835823 ], [ 357653.734200000762939, 256559.945700000971556 ], [ 357661.800899997353554, 256559.589600000530481 ], [ 357669.883799999952316, 256557.333700001239777 ], [ 357665.202399998903275, 256538.93019999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105503010100", "MAP": "G9-1562-T70", "PARCEL_NAM": "3 of 10th Street", "ACRE": "2.43", "LONGITUDE": -64.91594679000001, "LATITUDE": 18.33792714, "OBJECTID_1": 19952, "PARCEL_NO_": "105503010100", "Tax_Legal_": "3-10TH STREET, KMART STORE NEW QTR", "Name": "LOCKHART GARDENS, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1071300, "Improved_V": 5138800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 490.33153612199999, "SHAPE_Area": 9525.7346155899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360375.038800001144409, 256582.218299999833107 ], [ 360473.70380000025034, 256548.406500000506639 ], [ 360317.607500001788139, 256413.928899999707937 ], [ 360315.174199998378754, 256415.597699999809265 ], [ 360375.038800001144409, 256582.218299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90940592, "LATITUDE": 18.3382248, "OBJECTID_1": 20135, "PARCEL_NO_": "105503041100", "Tax_Legal_": "7 ESTATE THOMAS NO. 6A NEW QUARTER", "Name": "AUBIN FAMILY REVOCABLE TRUST", "Address": "PO Box 304865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33300, "Improved_V": 221800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.54727006100001, "SHAPE_Area": 1736.7971063499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361107.454599998891354, 256554.859999999403954 ], [ 361080.300700001418591, 256524.029199998825788 ], [ 361050.308899998664856, 256542.359999999403954 ], [ 361070.997900001704693, 256574.82660000026226 ], [ 361071.779100000858307, 256577.78830000013113 ], [ 361070.890100002288818, 256587.491399999707937 ], [ 361079.014300003647804, 256580.380699999630451 ], [ 361107.454599998891354, 256554.859999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404112000", "MAP": "MB.B", "PARCEL_NAM": "20 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91749614, "LATITUDE": 18.33842442, "OBJECTID_1": 19463, "PARCEL_NO_": "105404112000", "Tax_Legal_": "THOMAS ESTATE 20-8th STREET KINGS QUARTER", "Name": "HODGE, MARIE & GERARD-LIFE ESTATE", "Address": "PO Box 7373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13100, "Improved_V": 123200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.023563776100005, "SHAPE_Area": 450.70920600900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360231.740000002086163, 256554.6587999984622 ], [ 360208.28320000320673, 256563.121700000017881 ], [ 360214.589800000190735, 256580.0608000010252 ], [ 360238.046599999070168, 256571.597899999469519 ], [ 360231.740000002086163, 256554.6587999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303150100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94417179, "LATITUDE": 18.3383817, "OBJECTID_1": 11029, "PARCEL_NO_": "105303150100", "Tax_Legal_": "ALTONA & WELGUNST 39 CROWN PRINCE QTR", "Name": "GREAUX, LOUIS P & OTHERS", "Address": "66 Commonwealth Ave", "City": "Middletown", "State": "New York", "Zip": 10940, "Country": "United States", "Land_Value": 33300, "Improved_V": 28800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.339217584099998, "SHAPE_Area": 502.11285006100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357407.013400003314018, 256556.65989999845624 ], [ 357417.682499997317791, 256534.793499998748302 ], [ 357396.824400000274181, 256522.168200001120567 ], [ 357392.609499998390675, 256543.665300000458956 ], [ 357392.580700002610683, 256547.042599998414516 ], [ 357407.013400003314018, 256556.65989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303291500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9415932, "LATITUDE": 18.33841942, "OBJECTID_1": 11242, "PARCEL_NO_": "105303291500", "Tax_Legal_": "DEMERARA 2-14 KRONP. QTR", "Name": "DINZEY, KELVIN & SYLVENA", "Address": "PO Box 303931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19600, "Improved_V": 41000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.016990284100004, "SHAPE_Area": 332.84054790200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357687.66950000077486, 256551.990800000727177 ], [ 357682.170900002121925, 256534.847300000488758 ], [ 357665.202399998903275, 256538.93019999936223 ], [ 357669.883799999952316, 256557.333700001239777 ], [ 357687.66950000077486, 256551.990800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303070100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95008935, "LATITUDE": 18.33804025, "OBJECTID_1": 10926, "PARCEL_NO_": "105303070100", "Tax_Legal_": "CONTANT 12,13&14 7B SOUTHSIDE QTR", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 634000, "Improved_V": 2660300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.65198237800001, "SHAPE_Area": 3541.4427036699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356757.014200001955032, 256478.420299999415874 ], [ 356762.920800000429153, 256548.194699998944998 ], [ 356799.946400001645088, 256541.558800000697374 ], [ 356791.864600002765656, 256449.033700000494719 ], [ 356791.117600001394749, 256442.061500001698732 ], [ 356775.052500002086163, 256434.752900000661612 ], [ 356764.300700001418591, 256466.328899998217821 ], [ 356757.014200001955032, 256478.420299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404121800", "MAP": "MB.B", "PARCEL_NAM": "18 of 9th Street", "ACRE": "0..11", "LONGITUDE": -64.91691802, "LATITUDE": 18.33840333, "OBJECTID_1": 19485, "PARCEL_NO_": "105404121800", "Tax_Legal_": "18 NINTH STREET KINGS QUARTER", "Name": "HERNANDEZ, NORMA A", "Address": "PO Box 10134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 119500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.067036612400003, "SHAPE_Area": 422.53978493099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360292.23139999806881, 256553.043000001460314 ], [ 360270.390799999237061, 256561.096900001168251 ], [ 360275.891099996864796, 256578.029399998486042 ], [ 360298.539800003170967, 256569.771000001579523 ], [ 360292.23139999806881, 256553.043000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503042100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90890531, "LATITUDE": 18.33827625, "OBJECTID_1": 20145, "PARCEL_NO_": "105503042100", "Tax_Legal_": "28 ESTATE THOMAS NEW QUARTER", "Name": "GEIGER, TRACY E. & ANGELA M", "Address": "4028 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22300, "Improved_V": 355900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.09424894099999, "SHAPE_Area": 1151.45158352 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361152.582999996840954, 256558.18470000103116 ], [ 361131.022900000214577, 256533.310300000011921 ], [ 361109.893399998545647, 256552.55799999833107 ], [ 361129.776000000536442, 256585.01799999922514 ], [ 361136.26969999819994, 256580.004900000989437 ], [ 361146.042499996721745, 256568.6858000010252 ], [ 361152.582999996840954, 256558.18470000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303171600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94222666, "LATITUDE": 18.33841569, "OBJECTID_1": 11082, "PARCEL_NO_": "105303171600", "Tax_Legal_": "ALTONA 25 CROWN PRINCE QTR", "Name": "BEVERLY ANNE MAGRAS REVOCABLE LIVING TRUST", "Address": "PO Box 304650", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12700, "Improved_V": 119600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.523804269700001, "SHAPE_Area": 201.61019407000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357612.0253000035882, 256533.850999999791384 ], [ 357599.883900001645088, 256539.239999998360872 ], [ 357601.4695999994874, 256542.419399999082088 ], [ 357609.417599998414516, 256555.99439999833703 ], [ 357618.337399996817112, 256550.156800001859665 ], [ 357611.186700001358986, 256537.643800001591444 ], [ 357612.0253000035882, 256533.850999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303171000", "MAP": null, "PARCEL_NAM": "88", "ACRE": ".099", "LONGITUDE": -64.94316275, "LATITUDE": 18.33841472, "OBJECTID_1": 11076, "PARCEL_NO_": "105303171000", "Tax_Legal_": "88 ESTATE ALTONA & WELGUNST KRONPRINDSENS QUARTER", "Name": "KEMP, PATRICIA SELANIE", "Address": "11 Mountain Top Ter", "City": "Woodland Park", "State": "New Jersey", "Zip": 7424, "Country": "United States", "Land_Value": 23400, "Improved_V": 29000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.284243177600004, "SHAPE_Area": 413.77354139900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357524.020400002598763, 256546.851799998432398 ], [ 357508.8496999964118, 256529.206799998879433 ], [ 357503.997500002384186, 256530.855900000780821 ], [ 357499.024700000882149, 256546.647199999541044 ], [ 357499.771700002253056, 256553.61939999833703 ], [ 357522.351999998092651, 256553.381999999284744 ], [ 357524.020400002598763, 256546.851799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404140700", "MAP": "D9-112-T56", "PARCEL_NAM": "29 of 1st AVENUE", "ACRE": "4,698 sq ft", "LONGITUDE": -64.91870143, "LATITUDE": 18.3383635, "OBJECTID_1": 19531, "PARCEL_NO_": "105404140700", "Tax_Legal_": "27, 29, 31, & 33 1ST AVENUE ESTATE THOMAS", "Name": "ST ANDREWS EPISCOPAL CHURCH", "Address": "C/O RECTOR & WARDENS BOX 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 285200, "Improved_V": 277700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.540123758600004, "SHAPE_Area": 409.00977282700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360109.896899998188019, 256564.216299999505281 ], [ 360094.742399998009205, 256544.671599999070168 ], [ 360081.753200002014637, 256554.908900000154972 ], [ 360096.907700002193451, 256574.453499998897314 ], [ 360109.896899998188019, 256564.216299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404131600", "MAP": "G9-1622-T70", "PARCEL_NAM": "16 of 10th Street", "ACRE": ".11", "LONGITUDE": -64.91634422, "LATITUDE": 18.3383671, "OBJECTID_1": 19511, "PARCEL_NO_": "105404131600", "Tax_Legal_": "16 TENTH STREET ESTATE THOMAS KINGS QUARTER", "Name": "BAIG, IMRAN & UZMA I.", "Address": "PO Box 9285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 137400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.400381914099995, "SHAPE_Area": 480.325214324 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360353.552500002086163, 256548.689699999988079 ], [ 360330.09570000320673, 256557.152499999850988 ], [ 360336.391500003635883, 256575.3581000007689 ], [ 360359.848300002515316, 256566.895300000905991 ], [ 360353.552500002086163, 256548.689699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071800", "MAP": "A9-504-T98", "PARCEL_NAM": "193", "ACRE": "0.36", "LONGITUDE": -64.94553262, "LATITUDE": 18.33826546, "OBJECTID_1": 10940, "PARCEL_NO_": "105303071800", "Tax_Legal_": "ALTONA 193, 194, 201 & 203 KRONP. QTR.", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "66 Boetzberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 570000, "Improved_V": 8285800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.59687707699999, "SHAPE_Area": 2213.62125436 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357189.267700001597404, 256526.817800000309944 ], [ 357209.189499996602535, 256527.2989999987185 ], [ 357225.540799997746944, 256529.680300001055002 ], [ 357241.733400002121925, 256534.284099999815226 ], [ 357258.8783999979496, 256540.475299999117851 ], [ 357277.928400002419949, 256545.714099999517202 ], [ 357282.701499998569489, 256548.219500001519918 ], [ 357286.946599997580051, 256547.022399999201298 ], [ 357291.008699998259544, 256543.467000000178814 ], [ 357294.277099996805191, 256538.427499998360872 ], [ 357296.038999997079372, 256520.92119999974966 ], [ 357292.070299997925758, 256513.500399999320507 ], [ 357288.074699997901917, 256509.245799999684095 ], [ 357274.381800003349781, 256507.445000000298023 ], [ 357258.239399999380112, 256509.212799999862909 ], [ 357238.853699997067451, 256513.064899999648333 ], [ 357189.267700001597404, 256526.817800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404150100", "MAP": null, "PARCEL_NAM": "PAUL M. PEARSON GARDENS", "ACRE": null, "LONGITUDE": -64.91932053, "LATITUDE": 18.33776395, "OBJECTID_1": 19551, "PARCEL_NO_": "105404150100", "Tax_Legal_": "PCL. OF ESTATE THOMAS 6 G NEW QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4087700, "Improved_V": 8567900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1955.2055234500001, "SHAPE_Area": 56627.754552500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360049.28320000320673, 256580.185499999672174 ], [ 360067.140699997544289, 256566.399399999529123 ], [ 360081.753200002014637, 256554.908900000154972 ], [ 360094.742399998009205, 256544.671599999070168 ], [ 360107.731499999761581, 256534.434300001710653 ], [ 360121.530500002205372, 256523.781500000506639 ], [ 360135.331299997866154, 256512.917599998414516 ], [ 360149.943800002336502, 256501.427000001072884 ], [ 360164.55460000038147, 256490.147599998861551 ], [ 360179.165299996733665, 256478.868099998682737 ], [ 360193.776000000536442, 256467.588599998503923 ], [ 360197.836300000548363, 256464.24439999833703 ], [ 360207.578599996864796, 256456.513599999248981 ], [ 360221.377599999308586, 256445.860800001770258 ], [ 360234.365000002086163, 256435.834600001573563 ], [ 360239.237000003457069, 256431.863699998706579 ], [ 360241.520999997854233, 256430.100499998778105 ], [ 360140.387199997901917, 256364.18299999833107 ], [ 360132.340300001204014, 256359.367600001394749 ], [ 360120.703599996864796, 256352.403999999165535 ], [ 360111.55179999768734, 256346.927499998360872 ], [ 360101.180100001394749, 256340.720899999141693 ], [ 360073.290600001811981, 256324.031500000506639 ], [ 360068.423900000751019, 256321.119199998676777 ], [ 360062.810300000011921, 256317.484700001776218 ], [ 360052.189800001680851, 256333.651999998837709 ], [ 360049.722300000488758, 256339.331300001591444 ], [ 360038.29900000244379, 256355.06980000063777 ], [ 360037.478299997746944, 256356.751899998635054 ], [ 360112.786200001835823, 256414.363499999046326 ], [ 360120.764799997210503, 256424.35020000115037 ], [ 360123.918099999427795, 256432.819699998944998 ], [ 360123.817400000989437, 256444.640099998563528 ], [ 360122.14190000295639, 256452.014699999243021 ], [ 360118.031199999153614, 256461.269200000911951 ], [ 360113.148400001227856, 256466.506499998271465 ], [ 359967.107600003480911, 256571.491300001740456 ], [ 359959.004900000989437, 256576.069099999964237 ], [ 359942.036399997770786, 256580.152100000530481 ], [ 359933.17059999704361, 256579.657299999147654 ], [ 359923.510999999940395, 256577.678399998694658 ], [ 359913.066699996590614, 256573.160000000149012 ], [ 359905.853100001811981, 256568.034699998795986 ], [ 359869.903499998152256, 256528.477000001817942 ], [ 359852.861199997365475, 256541.214299999177456 ], [ 359838.834899999201298, 256550.994100000709295 ], [ 359838.788500003516674, 256551.172400001436472 ], [ 359839.090400002896786, 256555.35530000180006 ], [ 359846.90429999679327, 256566.6233000010252 ], [ 359872.710400000214577, 256599.276399999856949 ], [ 359872.3699000030756, 256599.775199998170137 ], [ 359871.354999996721745, 256600.435699999332428 ], [ 359925.126299999654293, 256669.103799998760223 ], [ 359920.795100003480911, 256671.845899999141693 ], [ 359925.081200003623962, 256677.327399998903275 ], [ 359939.691899999976158, 256666.048000000417233 ], [ 359953.492700003087521, 256655.184000000357628 ], [ 359976.222300000488758, 256637.427099999040365 ], [ 359977.845799997448921, 256636.173799999058247 ], [ 359992.45830000191927, 256624.683299999684095 ], [ 360006.259099997580051, 256613.819400001317263 ], [ 360020.869800001382828, 256602.539900001138449 ], [ 360034.67059999704361, 256591.675999999046326 ], [ 360049.28320000320673, 256580.185499999672174 ] ] ], [ [ [ 360107.080899998545647, 256421.493999999016523 ], [ 360031.771200001239777, 256364.093400001525879 ], [ 360018.726400002837181, 256380.874099999666214 ], [ 359999.988799996674061, 256403.307799998670816 ], [ 359998.367200002074242, 256404.350000001490116 ], [ 359987.768200002610683, 256417.984299998730421 ], [ 359982.888999998569489, 256422.799499999731779 ], [ 359977.991800002753735, 256429.725499998778105 ], [ 359956.836999997496605, 256451.928300000727177 ], [ 359923.501299999654293, 256484.163899999111891 ], [ 359908.062700003385544, 256497.969700001180172 ], [ 359877.207000002264977, 256523.04839999973774 ], [ 359911.560199998319149, 256560.69310000166297 ], [ 359921.984700001776218, 256567.533399999141693 ], [ 359930.830799996852875, 256570.350000001490116 ], [ 359942.921800002455711, 256570.871199999004602 ], [ 359955.043499998748302, 256567.804000001400709 ], [ 359963.149800002574921, 256562.804099999368191 ], [ 360107.56530000269413, 256459.283700000494719 ], [ 360110.822899997234344, 256455.510600000619888 ], [ 360114.100299999117851, 256449.415800001472235 ], [ 360115.030699998140335, 256434.857900001108646 ], [ 360112.663900002837181, 256428.71680000051856 ], [ 360107.080899998545647, 256421.493999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105503015600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91120279, "LATITUDE": 18.338282, "OBJECTID_1": 19984, "PARCEL_NO_": "105503015600", "Tax_Legal_": "6MB EST THOMAS NEW QTR", "Name": "WILKINSON, LAURA A. & FRANK B.", "Address": "2956 Valley of Hearts Delight Pl", "City": "San Jose", "State": "California", "Zip": 951365017, "Country": "United States", "Land_Value": 93100, "Improved_V": 91100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.37479331, "SHAPE_Area": 1355.3824669000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360909.992600001394749, 256543.322500001639128 ], [ 360910.727200001478195, 256539.881999999284744 ], [ 360879.320100001990795, 256541.306099999696016 ], [ 360871.517899997532368, 256541.69480000063777 ], [ 360865.937299996614456, 256541.972899999469519 ], [ 360871.351000003516674, 256577.082299999892712 ], [ 360909.758799999952316, 256570.762699998915195 ], [ 360909.010099999606609, 256564.001600001007318 ], [ 360909.152099996805191, 256547.326400000602007 ], [ 360909.992600001394749, 256543.322500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303291600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94140041, "LATITUDE": 18.3383798, "OBJECTID_1": 11243, "PARCEL_NO_": "105303291600", "Tax_Legal_": "DEMERARA 2-15 KRONP. QTR", "Name": "DANET, CHRISTINE P.", "Address": "PO BOX 302357", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21000, "Improved_V": 27200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.359666275099997, "SHAPE_Area": 358.03078464599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357687.66950000077486, 256551.990800000727177 ], [ 357705.453299999237061, 256546.859099999070168 ], [ 357711.144199997186661, 256541.417199999094009 ], [ 357712.809000000357628, 256535.309099998325109 ], [ 357682.170900002121925, 256534.847300000488758 ], [ 357687.66950000077486, 256551.990800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404112100", "MAP": "MB.B", "PARCEL_NAM": "21 of 7th Street", "ACRE": "0.11", "LONGITUDE": -64.91776962, "LATITUDE": 18.33835101, "OBJECTID_1": 19464, "PARCEL_NO_": "105404112100", "Tax_Legal_": "SEVENTH STREET 21 KINGS QUARTER", "Name": "COLBOURNE, ANN", "Address": "Ross Taarenberg Bldg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.493066717900007, "SHAPE_Area": 426.45486907100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360208.28320000320673, 256563.121700000017881 ], [ 360202.781000003218651, 256546.400199998170137 ], [ 360195.500799998641014, 256549.084899999201298 ], [ 360180.132399998605251, 256554.658599998801947 ], [ 360186.437200002372265, 256571.808800000697374 ], [ 360208.28320000320673, 256563.121700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303210100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9421368, "LATITUDE": 18.33837482, "OBJECTID_1": 11104, "PARCEL_NO_": "105303210100", "Tax_Legal_": "ALTONA 24 CROWN PRINCE QTR", "Name": "MAGRAS, CARMEN", "Address": "PO Box 503154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 9100, "Improved_V": 47700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.538565686600002, "SHAPE_Area": 132.08125528900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357626.447300001978874, 256544.7347999997437 ], [ 357618.481200002133846, 256533.270500000566244 ], [ 357618.506399996578693, 256530.315400000661612 ], [ 357612.0253000035882, 256533.850999999791384 ], [ 357618.337399996817112, 256550.156800001859665 ], [ 357626.447300001978874, 256544.7347999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303171200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94287051000001, "LATITUDE": 18.33839446, "OBJECTID_1": 11078, "PARCEL_NO_": "105303171200", "Tax_Legal_": "ALTONA & WELGUNST 89A CROWN PRINCE QTR", "Name": "MOHAMMED, GAIL & BRITTANY HAMM", "Address": "P.O.BOX 4473", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 51400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.293494729199999, "SHAPE_Area": 200.76054592 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357550.718599997460842, 256536.515599999576807 ], [ 357534.603200003504753, 256535.11710000038147 ], [ 357532.076300002634525, 256547.762099999934435 ], [ 357547.387299999594688, 256548.942899998277426 ], [ 357550.718599997460842, 256536.515599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303171300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94267406, "LATITUDE": 18.33833519, "OBJECTID_1": 11079, "PARCEL_NO_": "105303171300", "Tax_Legal_": "ALTONA & WELGUNST 50 CROWN PRINCE QTR", "Name": "HASTINGS, MARY B.", "Address": "PO Box 9436", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.837613524199995, "SHAPE_Area": 533.60101017199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357572.593400001525879, 256524.451200000941753 ], [ 357564.5337999984622, 256523.963100001215935 ], [ 357554.877899996936321, 256521.561999998986721 ], [ 357550.718599997460842, 256536.515599999576807 ], [ 357547.387299999594688, 256548.942899998277426 ], [ 357567.577500000596046, 256545.308400001376867 ], [ 357570.0, 256544.906100001186132 ], [ 357576.48650000244379, 256540.737300001084805 ], [ 357572.593400001525879, 256524.451200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303171100", "MAP": null, "PARCEL_NAM": "89", "ACRE": ".21", "LONGITUDE": -64.94297947, "LATITUDE": 18.33826156, "OBJECTID_1": 11077, "PARCEL_NO_": "105303171100", "Tax_Legal_": "89 ALTONA & WELGUNST KRONPRINDSENS QUARTER", "Name": "GUMBS, RAYMOND U D & OTHERS", "Address": "PO Box 1046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53400, "Improved_V": 10100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.14328675600001, "SHAPE_Area": 1028.0531179100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357554.877899996936321, 256521.561999998986721 ], [ 357529.934299997985363, 256515.236099999397993 ], [ 357529.982900001108646, 256509.537000000476837 ], [ 357519.52419999986887, 256506.70719999819994 ], [ 357512.137900002300739, 256521.845499999821186 ], [ 357508.8496999964118, 256529.206799998879433 ], [ 357524.020400002598763, 256546.851799998432398 ], [ 357532.076300002634525, 256547.762099999934435 ], [ 357534.603200003504753, 256535.11710000038147 ], [ 357550.718599997460842, 256536.515599999576807 ], [ 357554.877899996936321, 256521.561999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303070400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94975732, "LATITUDE": 18.33803059, "OBJECTID_1": 10927, "PARCEL_NO_": "105303070400", "Tax_Legal_": "CONTANT 11 7B SOUTHSIDE QTR", "Name": "BIMA CORPORATION", "Address": "11 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 410000, "Improved_V": 226200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.681388613, "SHAPE_Area": 3188.7957807399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356828.358400002121925, 256462.838799998164177 ], [ 356827.917900003492832, 256462.058899998664856 ], [ 356791.692100003361702, 256442.32880000025034 ], [ 356791.117600001394749, 256442.061500001698732 ], [ 356791.864600002765656, 256449.033700000494719 ], [ 356799.946400001645088, 256541.558800000697374 ], [ 356838.712399996817112, 256534.487799998372793 ], [ 356828.811099998652935, 256466.223600000143051 ], [ 356828.414200000464916, 256466.020700000226498 ], [ 356828.358400002121925, 256462.838799998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404121900", "MAP": "MB.B", "PARCEL_NAM": "19 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.9171946, "LATITUDE": 18.33832464, "OBJECTID_1": 19486, "PARCEL_NO_": "105404121900", "Tax_Legal_": "EIGHTH STREET 19 KINGS QUARTER", "Name": "Lisa A. Callwood & Others", "Address": "1819 Eighth St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022678, "Country": "United States", "Land_Value": 11500, "Improved_V": 136500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.598911370099998, "SHAPE_Area": 477.77265309699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360270.390799999237061, 256561.096900001168251 ], [ 360264.089599996805191, 256543.524500001221895 ], [ 360239.824699997901917, 256552.191799998283386 ], [ 360246.127700001001358, 256569.553100001066923 ], [ 360270.390799999237061, 256561.096900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503043800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90840996, "LATITUDE": 18.33828148, "OBJECTID_1": 20162, "PARCEL_NO_": "105503043800", "Tax_Legal_": "19B ESTATE THOMAS 6A NEW QUARTER", "Name": "GUMBS, MAURITZER Y", "Address": "PO Box 308471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25600, "Improved_V": 154800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.81610888599999, "SHAPE_Area": 1065.32799514 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361209.107500001788139, 256548.936999998986721 ], [ 361167.20269999653101, 256545.849800001829863 ], [ 361166.369400002062321, 256549.009399998933077 ], [ 361164.745999999344349, 256550.262699998915195 ], [ 361155.74889999628067, 256565.176699999719858 ], [ 361197.585400000214577, 256576.28489999845624 ], [ 361199.215999998152256, 256574.187300000339746 ], [ 361209.107500001788139, 256548.936999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303210300", "MAP": null, "PARCEL_NAM": "23", "ACRE": ".11", "LONGITUDE": -64.94204191, "LATITUDE": 18.33828146, "OBJECTID_1": 11106, "PARCEL_NO_": "105303210300", "Tax_Legal_": "23 ALTONA & WELGUNST KRONPRINDSENS QUARTER", "Name": "GUMBS, RAYMOND U D & OTHERS", "Address": "PO Box 1046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30300, "Improved_V": 38900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.130931981700002, "SHAPE_Area": 433.434049012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357617.804399996995926, 256518.066199999302626 ], [ 357618.506399996578693, 256530.315400000661612 ], [ 357618.481200002133846, 256533.270500000566244 ], [ 357626.447300001978874, 256544.7347999997437 ], [ 357637.798600003123283, 256537.439399998635054 ], [ 357643.48589999973774, 256532.419700000435114 ], [ 357634.717200003564358, 256520.526700001209974 ], [ 357617.804399996995926, 256518.066199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105503012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91335035, "LATITUDE": 18.33806966, "OBJECTID_1": 19978, "PARCEL_NO_": "105503012800", "Tax_Legal_": "6L-6 THRU 6L-9 EST THOMS NEW QTR", "Name": "SUGAR ESTATE ASSOCIATES", "Address": "PO Box 8583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 823300, "Improved_V": 992600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.391120296, "SHAPE_Area": 4789.2958549799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360694.478799998760223, 256568.367499999701977 ], [ 360694.592100001871586, 256555.069499999284744 ], [ 360696.718999996781349, 256494.714200001209974 ], [ 360663.660199999809265, 256494.443599998950958 ], [ 360641.875399999320507, 256495.954100001603365 ], [ 360636.204199999570847, 256499.074000000953674 ], [ 360633.761900000274181, 256501.798300001770258 ], [ 360632.100699998438358, 256507.484200000762939 ], [ 360622.767300002276897, 256561.870000001043081 ], [ 360622.73139999806881, 256566.091499999165535 ], [ 360625.135899998247623, 256567.800000000745058 ], [ 360626.739600002765656, 256568.868500001728535 ], [ 360671.126299999654293, 256564.587799999862909 ], [ 360685.634499996900558, 256565.339800000190735 ], [ 360694.478799998760223, 256568.367499999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404131700", "MAP": "MB.B", "PARCEL_NAM": "17 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91662428, "LATITUDE": 18.33829264, "OBJECTID_1": 19512, "PARCEL_NO_": "105404131700", "Tax_Legal_": "17 NINTH STREET KINGS QUARTER", "Name": "RITTER, KIMBERLEY R.", "Address": "PO Box 7312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.838009282100003, "SHAPE_Area": 425.34785326600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360330.09570000320673, 256557.152499999850988 ], [ 360323.781900003552437, 256541.057799998670816 ], [ 360301.129600003361702, 256549.738299999386072 ], [ 360306.635300002992153, 256566.037599999457598 ], [ 360330.09570000320673, 256557.152499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404140700", "MAP": "D9-112-T56", "PARCEL_NAM": "31 of 1st AVENUE", "ACRE": "4,677 sq ft", "LONGITUDE": -64.91857669, "LATITUDE": 18.33826947, "OBJECTID_1": 19531, "PARCEL_NO_": "105404140700", "Tax_Legal_": "27, 29, 31, & 33 1ST AVENUE ESTATE THOMAS", "Name": "ST ANDREWS EPISCOPAL CHURCH", "Address": "C/O RECTOR & WARDENS BOX 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 285200, "Improved_V": 277700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.588901563199997, "SHAPE_Area": 421.77477843299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360123.697700001299381, 256553.352299999445677 ], [ 360107.731499999761581, 256534.434300001710653 ], [ 360094.742399998009205, 256544.671599999070168 ], [ 360109.896899998188019, 256564.216299999505281 ], [ 360123.697700001299381, 256553.352299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303150800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94378678, "LATITUDE": 18.33829558, "OBJECTID_1": 11041, "PARCEL_NO_": "105303150800", "Tax_Legal_": "ALTONA 44 CROWN PRINCE QTR", "Name": "GREAUX, ELIZABETH", "Address": "BOX 4018", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.545852851600003, "SHAPE_Area": 261.35366018100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357455.685199998319149, 256522.649999998509884 ], [ 357440.381499998271465, 256520.624899998307228 ], [ 357434.593400001525879, 256537.464999999850988 ], [ 357445.847699999809265, 256541.567899998277426 ], [ 357455.685199998319149, 256522.649999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303150600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94396977, "LATITUDE": 18.33832024, "OBJECTID_1": 11039, "PARCEL_NO_": "105303150600", "Tax_Legal_": "ALTONA 43 CROWN PRINCE QTR", "Name": "RICHARDS, MONROE E. & ELICIA A", "Address": "3619 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10600, "Improved_V": 18200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.135232094000003, "SHAPE_Area": 130.378677786 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357432.246399998664856, 256529.002099998295307 ], [ 357420.173299998044968, 256526.370099999010563 ], [ 357417.682499997317791, 256534.793499998748302 ], [ 357428.920500002801418, 256540.796100001782179 ], [ 357432.246399998664856, 256529.002099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404112200", "MAP": "MB.B", "PARCEL_NAM": "22 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91755459, "LATITUDE": 18.33827251, "OBJECTID_1": 19465, "PARCEL_NO_": "105404112200", "Tax_Legal_": "22 EIGHTH STREET KINGS QUARTER", "Name": "WATLEY JR., ALEXANDER & OTHERS", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 230900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.873865004600006, "SHAPE_Area": 438.6264406 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360225.433300003409386, 256537.719700001180172 ], [ 360210.871100001037121, 256543.300000000745058 ], [ 360202.781000003218651, 256546.400199998170137 ], [ 360208.28320000320673, 256563.121700000017881 ], [ 360231.740000002086163, 256554.6587999984622 ], [ 360225.433300003409386, 256537.719700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303171800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94246606, "LATITUDE": 18.33825362, "OBJECTID_1": 11084, "PARCEL_NO_": "105303171800", "Tax_Legal_": "ALTONA 51 CROWN PRINCE QTR", "Name": "BYDEN, WILLIAM & GLADYS", "Address": "PO Box 9436", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12700, "Improved_V": 65900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.629097576299998, "SHAPE_Area": 364.15268228799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357589.617600001394749, 256513.824799999594688 ], [ 357589.195600003004074, 256513.125700000673532 ], [ 357584.117299996316433, 256517.183499999344349 ], [ 357580.773299999535084, 256519.855599999427795 ], [ 357572.624099999666214, 256522.818900000303984 ], [ 357572.302500002086163, 256522.864399999380112 ], [ 357572.593400001525879, 256524.451200000941753 ], [ 357576.48650000244379, 256540.737300001084805 ], [ 357588.645900003612041, 256533.237399999052286 ], [ 357594.322400003671646, 256529.484200000762939 ], [ 357597.565700002014637, 256527.39979999884963 ], [ 357589.617600001394749, 256513.824799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303070500", "MAP": null, "PARCEL_NAM": "10", "ACRE": "21,333 sq ft", "LONGITUDE": -64.94941647, "LATITUDE": 18.33807234, "OBJECTID_1": 10928, "PARCEL_NO_": "105303070500", "Tax_Legal_": "CONTANT 1O 7B SOUTHSIDE QTR", "Name": "BIMA CORPORATION", "Address": "11 CONTANT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 312300, "Improved_V": 394700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.26278724599999, "SHAPE_Area": 2032.92687043 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356870.069399997591972, 256484.392599999904633 ], [ 356828.344700001180172, 256462.056699998676777 ], [ 356828.414200000464916, 256466.020700000226498 ], [ 356828.811099998652935, 256466.223600000143051 ], [ 356838.712399996817112, 256534.487799998372793 ], [ 356866.159299999475479, 256530.912799999117851 ], [ 356869.742399998009205, 256488.934500001370907 ], [ 356869.502499997615814, 256488.833500001579523 ], [ 356870.069399997591972, 256484.392599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303171700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94227954, "LATITUDE": 18.33828576, "OBJECTID_1": 11083, "PARCEL_NO_": "105303171700", "Tax_Legal_": "ALTONA 96 CROWN PRINCE QTR", "Name": "AUBAIN, BERNADETTE", "Address": "3670 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9300, "Improved_V": 72700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.549420888699998, "SHAPE_Area": 180.33412916200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357594.322400003671646, 256529.484200000762939 ], [ 357596.710799999535084, 256533.092300001531839 ], [ 357599.883900001645088, 256539.239999998360872 ], [ 357612.0253000035882, 256533.850999999791384 ], [ 357608.10530000180006, 256520.731100000441074 ], [ 357597.565700002014637, 256527.39979999884963 ], [ 357594.322400003671646, 256529.484200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404122000", "MAP": "MB.B", "PARCEL_NAM": "20 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91697735, "LATITUDE": 18.33824797, "OBJECTID_1": 19487, "PARCEL_NO_": "105404122000", "Tax_Legal_": "20 NINTH STREET 6A NEW QUARTER", "Name": "20 NINTH STREET MANAGEMENT LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 182300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.892455573399999, "SHAPE_Area": 434.54051821799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360285.930100001394749, 256535.470600001513958 ], [ 360264.089599996805191, 256543.524500001221895 ], [ 360270.390799999237061, 256561.096900001168251 ], [ 360292.23139999806881, 256553.043000001460314 ], [ 360285.930100001394749, 256535.470600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303291900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94169992, "LATITUDE": 18.33821945, "OBJECTID_1": 11246, "PARCEL_NO_": "105303291900", "Tax_Legal_": "DEMARARA PCL.2-18 KRONP. QTR.", "Name": "TURBE, STEVEN & DANIELLA", "Address": "2 18th Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19100, "Improved_V": 34800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.604047092900004, "SHAPE_Area": 318.11607321600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357664.644199997186661, 256509.794799998402596 ], [ 357657.24719999730587, 256526.199499998241663 ], [ 357653.975199997425079, 256531.661200001835823 ], [ 357665.202399998903275, 256538.93019999936223 ], [ 357675.907399997115135, 256512.842300001531839 ], [ 357664.644199997186661, 256509.794799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303291800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94158245, "LATITUDE": 18.33824064, "OBJECTID_1": 11245, "PARCEL_NO_": "105303291800", "Tax_Legal_": "DEMERARA 2-17 KRONP. QTR", "Name": "TURBE (LIFE ESTATE), JOHN B", "Address": "3217 Demarara Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 30200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.836126087300002, "SHAPE_Area": 326.11757684399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357675.907399997115135, 256512.842300001531839 ], [ 357665.202399998903275, 256538.93019999936223 ], [ 357682.170900002121925, 256534.847300000488758 ], [ 357688.768899999558926, 256517.591600000858307 ], [ 357675.907399997115135, 256512.842300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404101700", "MAP": null, "PARCEL_NAM": "36 of 1st Ave", "ACRE": "0.08", "LONGITUDE": -64.9181021, "LATITUDE": 18.33824979, "OBJECTID_1": 19440, "PARCEL_NO_": "105404101700", "Tax_Legal_": "THOMAS ESTATE 36-1st AVENUE KINGS QUARTER", "Name": "HODGE, BEULAH IOLA", "Address": "PO Box 8071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8300, "Improved_V": 121700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.516084811, "SHAPE_Area": 279.73562283199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360148.76349999755621, 256545.324799999594688 ], [ 360154.298000000417233, 256558.246800001710653 ], [ 360169.666500002145767, 256552.673099998384714 ], [ 360164.157200001180172, 256536.796000000089407 ], [ 360159.317500002682209, 256536.967500001192093 ], [ 360148.76349999755621, 256545.324799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303070600", "MAP": null, "PARCEL_NAM": "9", "ACRE": "8,250 sq ft", "LONGITUDE": -64.94914544, "LATITUDE": 18.33813574, "OBJECTID_1": 10929, "PARCEL_NO_": "105303070600", "Tax_Legal_": "CONTANT 9 7B SOUTHSIDE QTR", "Name": "3P INC", "Address": "3004 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 123800, "Improved_V": 137600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.011802195, "SHAPE_Area": 887.83996524700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356886.678800001740456, 256528.758699998259544 ], [ 356886.537000000476837, 256528.443500000983477 ], [ 356890.858900003135204, 256488.929000001400709 ], [ 356883.52250000089407, 256487.047899998724461 ], [ 356871.938199996948242, 256485.39299999922514 ], [ 356870.069399997591972, 256484.392599999904633 ], [ 356869.502499997615814, 256488.833500001579523 ], [ 356869.742399998009205, 256488.934500001370907 ], [ 356866.159299999475479, 256530.912799999117851 ], [ 356883.917999997735023, 256528.736099999397993 ], [ 356886.678800001740456, 256528.758699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94410833000001, "LATITUDE": 18.33824753, "OBJECTID_1": 11052, "PARCEL_NO_": "105303151900", "Tax_Legal_": "ALTONA & WELGUNST 103 A KRONPRINDSENS QTR", "Name": "HATCHETT, JEAN A", "Address": "PO Box 302724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 34700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.279153171700003, "SHAPE_Area": 217.69549629700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357420.173299998044968, 256526.370099999010563 ], [ 357421.820100001990795, 256522.372800000011921 ], [ 357415.38400000333786, 256520.631400000303984 ], [ 357401.70549999922514, 256517.1418999992311 ], [ 357396.824400000274181, 256522.168200001120567 ], [ 357417.682499997317791, 256534.793499998748302 ], [ 357420.173299998044968, 256526.370099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303160900", "MAP": "G9-2751-T78", "PARCEL_NAM": "86", "ACRE": ".10", "LONGITUDE": -64.94334888, "LATITUDE": 18.33823486, "OBJECTID_1": 11061, "PARCEL_NO_": "105303160900", "Tax_Legal_": "86 ALTONA & WELGUNST KRONPRINDSENS QUARTER", "Name": "MAGRAS, GEORGE & OTHERS", "Address": "BOX 4733", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 62300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.139068736900001, "SHAPE_Area": 295.991534387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357504.051399998366833, 256524.523499999195337 ], [ 357484.82039999961853, 256510.222800001502037 ], [ 357481.422499999403954, 256530.46000000089407 ], [ 357496.706500001251698, 256534.807000000029802 ], [ 357497.532600000500679, 256532.491700001060963 ], [ 357498.373099997639656, 256528.487799998372793 ], [ 357500.817199997603893, 256525.552499998360872 ], [ 357504.051399998366833, 256524.523499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404131800", "MAP": "D9-3787-T86", "PARCEL_NAM": "18 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91640482, "LATITUDE": 18.33821145, "OBJECTID_1": 19513, "PARCEL_NO_": "105404131800", "Tax_Legal_": "18 TENTH STREET KINGS QUARTER", "Name": "NO 18 TENTH STREET MANAGEMENT LLC", "Address": "PO Box 10735", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72000, "Improved_V": 169200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.993396403199995, "SHAPE_Area": 437.26200361500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360347.242200002074242, 256532.172699999064207 ], [ 360323.781900003552437, 256541.057799998670816 ], [ 360330.09570000320673, 256557.152499999850988 ], [ 360353.552500002086163, 256548.689699999988079 ], [ 360347.242200002074242, 256532.172699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303070800", "MAP": "A3-39-T39", "PARCEL_NAM": "7", "ACRE": "4,366 sq ft", "LONGITUDE": -64.94880118, "LATITUDE": 18.33817504, "OBJECTID_1": 10931, "PARCEL_NO_": "105303070800", "Tax_Legal_": "CONTANT 7 7B SOUTHSIDE QTR", "Name": "MITCHELL, ABERTINA", "Address": "PO Box 301742", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31700, "Improved_V": 5400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.338136541, "SHAPE_Area": 563.408643858 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356921.814699999988079, 256529.046300001442432 ], [ 356924.494400002062321, 256498.459699999541044 ], [ 356924.844800002872944, 256498.525199998170137 ], [ 356924.729400001466274, 256498.466699998825788 ], [ 356909.338899999856949, 256493.667500000447035 ], [ 356908.869400002062321, 256493.547100000083447 ], [ 356908.279600001871586, 256495.775199998170137 ], [ 356908.389700002968311, 256495.794700000435114 ], [ 356904.075800001621246, 256528.901099998503923 ], [ 356921.814699999988079, 256529.046300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303070900", "MAP": "A3-39-T39", "PARCEL_NAM": "6", "ACRE": "3,480 sq ft", "LONGITUDE": -64.94863188, "LATITUDE": 18.33819352, "OBJECTID_1": 10932, "PARCEL_NO_": "105303070900", "Tax_Legal_": "CONTANT 6 7B SOUTHSIDE QTR", "Name": "FENNER, ELODIA", "Address": "202 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52200, "Improved_V": 30900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.112372282300001, "SHAPE_Area": 549.76958803499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356942.206299997866154, 256501.771000001579523 ], [ 356924.494400002062321, 256498.459699999541044 ], [ 356921.814699999988079, 256529.046300001442432 ], [ 356941.974299997091293, 256529.000199999660254 ], [ 356942.206299997866154, 256501.771000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303291700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94139853, "LATITUDE": 18.33826043, "OBJECTID_1": 11244, "PARCEL_NO_": "105303291700", "Tax_Legal_": "DEMERARA 2-16 KRONP. QTR", "Name": "SALIDO, LILIBETH H. (LIFE ESTATE)", "Address": "3216 Demerara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19400, "Improved_V": 31200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.393514812600003, "SHAPE_Area": 356.75511738900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357682.170900002121925, 256534.847300000488758 ], [ 357712.809000000357628, 256535.309099998325109 ], [ 357711.252099998295307, 256528.752500001341105 ], [ 357706.45380000025034, 256524.069099999964237 ], [ 357688.768899999558926, 256517.591600000858307 ], [ 357682.170900002121925, 256534.847300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303072100", "MAP": "D9-2247-T82", "PARCEL_NAM": "4", "ACRE": "6,224 sq ft", "LONGITUDE": -64.94800069, "LATITUDE": 18.33821542, "OBJECTID_1": 10943, "PARCEL_NO_": "105303072100", "Tax_Legal_": "CROWN BAY FILL #4 SOUTHSIDE QTR.", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 667100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.219945747, "SHAPE_Area": 588.40476420899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357010.802000001072884, 256529.35249999910593 ], [ 357011.966700002551079, 256501.238899998366833 ], [ 357001.837399996817112, 256506.480900000780821 ], [ 356985.678800001740456, 256510.148400001227856 ], [ 356984.710699997842312, 256529.138900000602007 ], [ 357001.643200002610683, 256529.277499999850988 ], [ 357010.802000001072884, 256529.35249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071800", "MAP": "A9-504-T98", "PARCEL_NAM": "201", "ACRE": "2376 sq ft", "LONGITUDE": -64.94658488, "LATITUDE": 18.33825985, "OBJECTID_1": 10940, "PARCEL_NO_": "105303071800", "Tax_Legal_": "ALTONA 193, 194, 201 & 203 KRONP. QTR.", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "66 Boetzberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 570000, "Improved_V": 8285800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.798818732, "SHAPE_Area": 458.62249471899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357112.917900003492832, 256529.765999998897314 ], [ 357165.331799998879433, 256529.772799998521805 ], [ 357167.899999998509884, 256512.27309999987483 ], [ 357112.917900003492832, 256529.765999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303210200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94217145, "LATITUDE": 18.3382312, "OBJECTID_1": 11105, "PARCEL_NO_": "105303210200", "Tax_Legal_": "ALTONA 53 CROWN PRINCE QTR", "Name": "AUBAIN, PIERRE E", "Address": "ALTONA 117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3800, "Improved_V": 1200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.335039031500003, "SHAPE_Area": 74.635587576500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357612.0253000035882, 256533.850999999791384 ], [ 357618.506399996578693, 256530.315400000661612 ], [ 357617.804399996995926, 256518.066199999302626 ], [ 357610.540399998426437, 256518.851199999451637 ], [ 357614.478500001132488, 256529.860300000756979 ], [ 357612.0253000035882, 256533.850999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404112300", "MAP": "MB.B", "PARCEL_NAM": "38 OF 1ST Ave", "ACRE": "0.14", "LONGITUDE": -64.91788081, "LATITUDE": 18.33815621, "OBJECTID_1": 19466, "PARCEL_NO_": "105404112300", "Tax_Legal_": "38 FIRST AVE KINGS QUARTER", "Name": "MOORE, MURAT H", "Address": "202 Lew Dr", "City": "Winter Springs", "State": "Florida", "Zip": 32708, "Country": "United States", "Land_Value": 14300, "Improved_V": 82600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.2217166967, "SHAPE_Area": 494.961920319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360180.132399998605251, 256554.658599998801947 ], [ 360195.500799998641014, 256549.084899999201298 ], [ 360183.67230000346899, 256517.746199999004602 ], [ 360171.496699996292591, 256527.145799998193979 ], [ 360171.471500001847744, 256530.100900001823902 ], [ 360180.132399998605251, 256554.658599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071800", "MAP": "A9-504-T98", "PARCEL_NAM": "203", "ACRE": "0.37", "LONGITUDE": -64.94598098, "LATITUDE": 18.33813946, "OBJECTID_1": 10940, "PARCEL_NO_": "105303071800", "Tax_Legal_": "ALTONA 193, 194, 201 & 203 KRONP. QTR.", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "66 Boetzberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 570000, "Improved_V": 8285800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.72795129799999, "SHAPE_Area": 1771.89624478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357189.267700001597404, 256526.817800000309944 ], [ 357238.853699997067451, 256513.064899999648333 ], [ 357258.239399999380112, 256509.212799999862909 ], [ 357274.381800003349781, 256507.445000000298023 ], [ 357288.074699997901917, 256509.245799999684095 ], [ 357281.660199999809265, 256504.971500001847744 ], [ 357268.786200001835823, 256501.699700001627207 ], [ 357227.701999999582767, 256496.930500000715256 ], [ 357222.835400000214577, 256500.268199998885393 ], [ 357213.940800003707409, 256503.150699999183416 ], [ 357201.027199998497963, 256504.522599998861551 ], [ 357180.873000003397465, 256503.935499999672174 ], [ 357168.763899996876717, 256505.525100000202656 ], [ 357167.899999998509884, 256512.27309999987483 ], [ 357165.707400001585484, 256527.213300000876188 ], [ 357176.328199997544289, 256526.505300000309944 ], [ 357189.267700001597404, 256526.817800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404140700", "MAP": "D9-112-T56", "PARCEL_NAM": "33 of 1st AVENUE", "ACRE": "4,683 sq ft", "LONGITUDE": -64.91844611, "LATITUDE": 18.33816728, "OBJECTID_1": 19531, "PARCEL_NO_": "105404140700", "Tax_Legal_": "27, 29, 31, & 33 1ST AVENUE ESTATE THOMAS", "Name": "ST ANDREWS EPISCOPAL CHURCH", "Address": "C/O RECTOR & WARDENS BOX 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 285200, "Improved_V": 277700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.658172910700003, "SHAPE_Area": 460.04062129499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360137.936599999666214, 256542.131299998611212 ], [ 360122.924699999392033, 256522.684000000357628 ], [ 360121.530500002205372, 256523.781500000506639 ], [ 360107.731499999761581, 256534.434300001710653 ], [ 360123.697700001299381, 256553.352299999445677 ], [ 360136.686800003051758, 256543.115100000053644 ], [ 360137.936599999666214, 256542.131299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303160800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94352104, "LATITUDE": 18.33819504, "OBJECTID_1": 11060, "PARCEL_NO_": "105303160800", "Tax_Legal_": "ALTONA & WELGUNST 85 CROWN PRINCE QTR", "Name": "TIRADO, ROBERTO S. & MARIA MELENDEZ TIRADO", "Address": "PO Box 305122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28400, "Improved_V": 89800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.869011822999994, "SHAPE_Area": 415.987769614 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357484.82039999961853, 256510.222800001502037 ], [ 357467.902199998497963, 256508.395599998533726 ], [ 357462.995999999344349, 256516.377000000327826 ], [ 357461.372599996626377, 256517.630300000309944 ], [ 357457.269100002944469, 256526.040500000119209 ], [ 357481.422499999403954, 256530.46000000089407 ], [ 357484.82039999961853, 256510.222800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303150700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94395173, "LATITUDE": 18.33817904, "OBJECTID_1": 11040, "PARCEL_NO_": "105303150700", "Tax_Legal_": "1O2 ALTONA KRONPDINDSENS GADE", "Name": "FORBES, VERNA", "Address": "BOX 4183", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.411364771799995, "SHAPE_Area": 326.88417310599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357438.04169999808073, 256511.317600000649691 ], [ 357422.772100001573563, 256505.282000001519918 ], [ 357415.38400000333786, 256520.631400000303984 ], [ 357421.820100001990795, 256522.372800000011921 ], [ 357420.173299998044968, 256526.370099999010563 ], [ 357432.246399998664856, 256529.002099998295307 ], [ 357438.04169999808073, 256511.317600000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404122100", "MAP": "MB.B", "PARCEL_NAM": "21 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91725577, "LATITUDE": 18.33816885, "OBJECTID_1": 19488, "PARCEL_NO_": "105404122100", "Tax_Legal_": "21 EIGHTH STREET KINGS QUARTER", "Name": "MASJID NUR AHL-US SYNMAH - ISL", "Address": "PO Box 12028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72000, "Improved_V": 79200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.077571941900004, "SHAPE_Area": 470.79344969300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360264.089599996805191, 256543.524500001221895 ], [ 360257.784699998795986, 256526.374299999326468 ], [ 360233.519799999892712, 256535.041700001806021 ], [ 360239.824699997901917, 256552.191799998283386 ], [ 360264.089599996805191, 256543.524500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303210400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94187731, "LATITUDE": 18.3381762, "OBJECTID_1": 11107, "PARCEL_NO_": "105303210400", "Tax_Legal_": "ALTONA 22 CROWN PRINCE QTR", "Name": "ETIENNE, ZILLA & JAMAL T. & MELVIN E. MARGAS", "Address": "PO BOX 304296", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8300, "Improved_V": 100700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.080225724800002, "SHAPE_Area": 193.01559478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357637.971199996769428, 256517.175799999386072 ], [ 357639.544299997389317, 256521.832800000905991 ], [ 357645.922799997031689, 256530.328699998557568 ], [ 357654.910999998450279, 256516.470100000500679 ], [ 357648.528800003230572, 256508.396299999207258 ], [ 357637.971199996769428, 256517.175799999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503043500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90872114, "LATITUDE": 18.33804949, "OBJECTID_1": 20159, "PARCEL_NO_": "105503043500", "Tax_Legal_": "27 ESTATE THOMAS NEW QUARTER", "Name": "PEARLIE WHITE TRUST", "Address": "PO Box 7313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11900, "Improved_V": 220000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.684350839, "SHAPE_Area": 874.44061206799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361157.022699996829033, 256510.302799999713898 ], [ 361131.022900000214577, 256533.310300000011921 ], [ 361152.582999996840954, 256558.18470000103116 ], [ 361161.578299999237061, 256543.481800001114607 ], [ 361164.061899997293949, 256535.902699999511242 ], [ 361164.95099999755621, 256526.199700001627207 ], [ 361164.177000001072884, 256522.393699999898672 ], [ 361161.014700002968311, 256514.979499999433756 ], [ 361157.022699996829033, 256510.302799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404112400", "MAP": "MB.B", "PARCEL_NAM": "40 of 1st Ave", "ACRE": "0.15", "LONGITUDE": -64.91774627, "LATITUDE": 18.33808084, "OBJECTID_1": 19467, "PARCEL_NO_": "105404112400", "Tax_Legal_": "FIRST AVE, ESTATE THOMAS 40- KINGS QUARTER", "Name": "MUGHAL PROPERTIES LLC", "Address": "PO Box 9285", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 97600, "Improved_V": 309400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.28773688, "SHAPE_Area": 599.55521052899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360210.871100001037121, 256543.300000000745058 ], [ 360197.473099999129772, 256506.88230000063777 ], [ 360183.67230000346899, 256517.746199999004602 ], [ 360195.500799998641014, 256549.084899999201298 ], [ 360202.781000003218651, 256546.400199998170137 ], [ 360210.871100001037121, 256543.300000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404131900", "MAP": "MB.B", "PARCEL_NAM": "19 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91668234, "LATITUDE": 18.33814143, "OBJECTID_1": 19514, "PARCEL_NO_": "105404131900", "Tax_Legal_": "19 NINTH STREET KINGS QUARTER", "Name": "JEPPENSEN, NIELS & PATRICIA", "Address": "PO Box 10858", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.669190964600006, "SHAPE_Area": 448.32749205900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360323.781900003552437, 256541.057799998670816 ], [ 360318.283299997448921, 256523.914200000464916 ], [ 360294.826499998569489, 256532.377000000327826 ], [ 360301.129600003361702, 256549.738299999386072 ], [ 360323.781900003552437, 256541.057799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303171900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94232512000001, "LATITUDE": 18.33815503, "OBJECTID_1": 11085, "PARCEL_NO_": "105303171900", "Tax_Legal_": "52 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "YASMEH, MARIE A. M. & LISA M.", "Address": "PO Box 308752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31700, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.043478247000003, "SHAPE_Area": 240.24090951100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357601.778800003230572, 256506.113800000399351 ], [ 357600.598999999463558, 256504.013900000602007 ], [ 357589.195600003004074, 256513.125700000673532 ], [ 357589.617600001394749, 256513.824799999594688 ], [ 357597.565700002014637, 256527.39979999884963 ], [ 357608.10530000180006, 256520.731100000441074 ], [ 357607.329499997198582, 256517.136100001633167 ], [ 357601.778800003230572, 256506.113800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503041900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90924579, "LATITUDE": 18.33804925, "OBJECTID_1": 20143, "PARCEL_NO_": "105503041900", "Tax_Legal_": "26A ESTATE THOMAS NO.6A NEW QUARTER", "Name": "AUBIN FAMILY REVOCABLE TRUST", "Address": "PO Box 304865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.648089309, "SHAPE_Area": 388.67105513899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361109.893399998545647, 256552.55799999833107 ], [ 361094.079999998211861, 256515.69819999858737 ], [ 361080.300700001418591, 256524.029199998825788 ], [ 361107.454599998891354, 256554.859999999403954 ], [ 361109.893399998545647, 256552.55799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303161100", "MAP": null, "PARCEL_NAM": "87", "ACRE": null, "LONGITUDE": -64.94325439000001, "LATITUDE": 18.33809835, "OBJECTID_1": 11063, "PARCEL_NO_": "105303161100", "Tax_Legal_": "ALTONA #87 CROWN PRINCE", "Name": "LYNCH, JOHN & LORRAINE", "Address": "3582 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 108700, "Improved_V": 142400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.307581638, "SHAPE_Area": 637.85123510799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357489.818300001323223, 256491.476399999111891 ], [ 357487.35080000013113, 256497.155699998140335 ], [ 357484.82039999961853, 256510.222800001502037 ], [ 357504.051399998366833, 256524.523499999195337 ], [ 357512.137900002300739, 256521.845499999821186 ], [ 357519.52419999986887, 256506.70719999819994 ], [ 357505.863600000739098, 256501.10700000077486 ], [ 357489.818300001323223, 256491.476399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94368164, "LATITUDE": 18.33807416, "OBJECTID_1": 11044, "PARCEL_NO_": "105303151100", "Tax_Legal_": "100 ALTONA CROWN PRINCE QUARTER", "Name": "FRANKE, ROXANNE M", "Address": "PO Box 302232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32300, "Improved_V": 148700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.888075841, "SHAPE_Area": 561.51337910300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357474.500200003385544, 256491.140000000596046 ], [ 357456.777500003576279, 256489.095100000500679 ], [ 357442.060599997639656, 256512.828200001269579 ], [ 357440.381499998271465, 256520.624899998307228 ], [ 357455.685199998319149, 256522.649999998509884 ], [ 357458.969800002872944, 256515.710799999535084 ], [ 357465.501299999654293, 256506.265000000596046 ], [ 357468.004699997603893, 256496.364100001752377 ], [ 357474.500200003385544, 256491.140000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303150500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94412202, "LATITUDE": 18.33811511, "OBJECTID_1": 11032, "PARCEL_NO_": "105303150500", "Tax_Legal_": "ALTONA 1O3 CROWN PRINCE QUARTER", "Name": "DAVIS, ARTHUR", "Address": "P.O. BOX 5856", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59500, "Improved_V": 220700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.795281798399998, "SHAPE_Area": 366.37138001599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357422.772100001573563, 256505.282000001519918 ], [ 357403.479900002479553, 256498.158100001513958 ], [ 357399.365599997341633, 256507.834699999541044 ], [ 357396.824400000274181, 256522.168200001120567 ], [ 357401.70549999922514, 256517.1418999992311 ], [ 357415.38400000333786, 256520.631400000303984 ], [ 357422.772100001573563, 256505.282000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503042000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9089907, "LATITUDE": 18.33792448, "OBJECTID_1": 20144, "PARCEL_NO_": "105503042000", "Tax_Legal_": "26 ESTATE THOMAS NEW QUARTER", "Name": "CARTY, MARMION A. & YVANE", "Address": "PO Box 4258", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38600, "Improved_V": 169500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.227554634, "SHAPE_Area": 1808.5406567499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361128.940200001001358, 256493.81870000064373 ], [ 361094.079999998211861, 256515.69819999858737 ], [ 361109.893399998545647, 256552.55799999833107 ], [ 361131.022900000214577, 256533.310300000011921 ], [ 361157.022699996829033, 256510.302799999713898 ], [ 361149.812600001692772, 256504.755300000309944 ], [ 361128.940200001001358, 256493.81870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404141100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91831739, "LATITUDE": 18.33807091, "OBJECTID_1": 19532, "PARCEL_NO_": "105404141100", "Tax_Legal_": "FIRST AVE 35 ESTATE THOMAS", "Name": "BLYDEN, IDA L. & PEARL L.", "Address": "PO Box 8346", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11100, "Improved_V": 78400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.896279522300006, "SHAPE_Area": 390.14443276700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360122.924699999392033, 256522.684000000357628 ], [ 360137.936599999666214, 256542.131299998611212 ], [ 360150.48759999871254, 256532.251200001686811 ], [ 360135.331299997866154, 256512.917599998414516 ], [ 360122.924699999392033, 256522.684000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404112500", "MAP": "MB.B", "PARCEL_NAM": "42 of 1st Ave", "ACRE": "0.11", "LONGITUDE": -64.91761244, "LATITUDE": 18.33800675, "OBJECTID_1": 19468, "PARCEL_NO_": "105404112500", "Tax_Legal_": "42 FIRST AVE EST THOMA KINGS QTR", "Name": "JON B. STRAIN & MELONITA N. STRAIN FAMILY TRUST", "Address": "P.O. BOX 4170", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72000, "Improved_V": 768600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.520244061, "SHAPE_Area": 651.12901460800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360197.473099999129772, 256506.88230000063777 ], [ 360210.871100001037121, 256543.300000000745058 ], [ 360225.433300003409386, 256537.719700001180172 ], [ 360212.047899998724461, 256499.824400000274181 ], [ 360210.446000002324581, 256498.544700000435114 ], [ 360208.027099996805191, 256498.524900000542402 ], [ 360197.473099999129772, 256506.88230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404122200", "MAP": "MB.B", "PARCEL_NAM": "22 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91703834, "LATITUDE": 18.33809159, "OBJECTID_1": 19489, "PARCEL_NO_": "105404122200", "Tax_Legal_": "22 NINTH STREET KINGS QUARTER", "Name": "MARGARITA KOUNS and IRIS M HERNANDEZ", "Address": "PO Box 9355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 114600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.101208445799998, "SHAPE_Area": 425.34843210100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360279.625299997627735, 256518.32039999961853 ], [ 360257.784699998795986, 256526.374299999326468 ], [ 360264.089599996805191, 256543.524500001221895 ], [ 360285.930100001394749, 256535.470600001513958 ], [ 360279.625299997627735, 256518.32039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071700", "MAP": "A9-504-T98", "PARCEL_NAM": "194-1", "ACRE": "5363 sq ft", "LONGITUDE": -64.94720654, "LATITUDE": 18.33805996, "OBJECTID_1": 10939, "PARCEL_NO_": "105303071700", "Tax_Legal_": "ALTONA & WELGUNST 194-1 CROWN PRINCE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.265779061900005, "SHAPE_Area": 577.49494942199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357095.331000000238419, 256490.012800000607967 ], [ 357074.525100000202656, 256485.237100001424551 ], [ 357074.109300002455711, 256489.395199999213219 ], [ 357071.605999998748302, 256514.428399998694658 ], [ 357092.070699997246265, 256515.874299999326468 ], [ 357094.665799997746944, 256495.208399999886751 ], [ 357095.331000000238419, 256490.012800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503042200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90840666, "LATITUDE": 18.33802415, "OBJECTID_1": 20146, "PARCEL_NO_": "105503042200", "Tax_Legal_": "20 ESTATE THOMAS NEW QUARTER", "Name": "WENNER, FYAMA", "Address": "1580 Niskey Lake Rd SW", "City": "Atlanta", "State": "Georgia", "Zip": 30331, "Country": "United States", "Land_Value": 49100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.110620737, "SHAPE_Area": 1029.83735669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361209.107500001788139, 256548.936999998986721 ], [ 361181.266000002622604, 256504.168400000780821 ], [ 361168.267899997532368, 256515.461100000888109 ], [ 361169.840999998152256, 256520.118000000715256 ], [ 361170.541199997067451, 256532.578299999237061 ], [ 361169.681000001728535, 256538.903999999165535 ], [ 361167.20269999653101, 256545.849800001829863 ], [ 361209.107500001788139, 256548.936999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503045300", "MAP": "D9-5706-T94", "PARCEL_NAM": "5B", "ACRE": "0.37", "LONGITUDE": -64.90847212, "LATITUDE": 18.33759394, "OBJECTID_1": 20167, "PARCEL_NO_": "105503045300", "Tax_Legal_": "5B ESTATE THOMAS NEW QUARTER", "Name": "DOMINIQUES VILLAS LLC", "Address": "PO Box 11781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.040239525, "SHAPE_Area": 1195.2886024899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361181.266000002622604, 256504.168400000780821 ], [ 361212.114100001752377, 256506.336800001561642 ], [ 361210.314900003373623, 256501.872999999672174 ], [ 361204.737199999392033, 256494.0168999992311 ], [ 361195.936099998652935, 256485.923300001770258 ], [ 361184.721400000154972, 256477.176699999719858 ], [ 361175.087099999189377, 256472.24269999936223 ], [ 361167.8716000020504, 256467.328499998897314 ], [ 361156.667700000107288, 256457.315400000661612 ], [ 361151.079300001263618, 256450.72580000013113 ], [ 361144.506499998271465, 256465.026299998164177 ], [ 361173.32880000025034, 256489.326900001615286 ], [ 361181.266000002622604, 256504.168400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404132000", "MAP": "MB.B", "PARCEL_NAM": "20 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91646403, "LATITUDE": 18.33806189, "OBJECTID_1": 19515, "PARCEL_NO_": "105404132000", "Tax_Legal_": "2O TENTH STREET KINGS QUARTER", "Name": "JEPPESEN, NIELS & PATRICIA", "Address": "PO Box 10858", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 86300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.423902160699996, "SHAPE_Area": 444.75212839300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360340.935599997639656, 256515.233600001782179 ], [ 360318.283299997448921, 256523.914200000464916 ], [ 360323.781900003552437, 256541.057799998670816 ], [ 360347.242200002074242, 256532.172699999064207 ], [ 360340.935599997639656, 256515.233600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303180900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94244466000001, "LATITUDE": 18.33806856, "OBJECTID_1": 11094, "PARCEL_NO_": "105303180900", "Tax_Legal_": "ALTONA 94A & 93-A CROWN PRINCE QTR", "Name": "SARGENT, KRISTIE A.", "Address": "3697 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12100, "Improved_V": 51400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.201586675900003, "SHAPE_Area": 199.83898200100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357587.363799996674061, 256500.781199999153614 ], [ 357586.511900000274181, 256501.505300000309944 ], [ 357583.836900003254414, 256498.2314000017941 ], [ 357574.815600000321865, 256501.541700001806021 ], [ 357585.540700003504753, 256516.046100001782179 ], [ 357600.598999999463558, 256504.013900000602007 ], [ 357599.395900003612041, 256501.872499998658895 ], [ 357589.689599998295307, 256505.381599999964237 ], [ 357587.363799996674061, 256500.781199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303220300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94197096000001, "LATITUDE": 18.33809119, "OBJECTID_1": 11111, "PARCEL_NO_": "105303220300", "Tax_Legal_": "55 ALTONA & WELGUNST CROWN PRINCE QUARTER", "Name": "JULES MARCELOLIVE REVOCABLE FAMILY TRUST", "Address": "PO Box 303522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14200, "Improved_V": 22700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.352264199499999, "SHAPE_Area": 255.530383954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357632.67790000140667, 256498.938900001347065 ], [ 357625.8800999969244, 256516.654699999839067 ], [ 357636.349600002169609, 256518.217999998480082 ], [ 357637.971199996769428, 256517.175799999386072 ], [ 357648.528800003230572, 256508.396299999207258 ], [ 357645.655000001192093, 256504.103999998420477 ], [ 357632.67790000140667, 256498.938900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303220200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94213175, "LATITUDE": 18.33804169, "OBJECTID_1": 11110, "PARCEL_NO_": "105303220200", "Tax_Legal_": "54 REM ALTONA KRONPRINDSENS QTR", "Name": "JOHN E. GUMBS REV. FAM. TRST", "Address": "PO Box 454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33700, "Improved_V": 18800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.991744877100004, "SHAPE_Area": 441.58797460199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357632.67790000140667, 256498.938900001347065 ], [ 357633.325699999928474, 256494.550799999386072 ], [ 357615.592299997806549, 256493.772399999201298 ], [ 357601.820200003683567, 256501.25899999961257 ], [ 357605.801399998366833, 256507.202199999243021 ], [ 357611.470799997448921, 256504.293299999088049 ], [ 357613.864500001072884, 256507.268199998885393 ], [ 357613.799800001084805, 256514.86710000038147 ], [ 357625.8800999969244, 256516.654699999839067 ], [ 357632.67790000140667, 256498.938900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303072200", "MAP": "D9-2247-T82", "PARCEL_NAM": "3 CROWN BAY", "ACRE": "7,020 sq ft", "LONGITUDE": -64.94794572000001, "LATITUDE": 18.33792888, "OBJECTID_1": 10944, "PARCEL_NO_": "105303072200", "Tax_Legal_": "CROWN BAY FILL #3 7B SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 265700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.78738130599999, "SHAPE_Area": 1466.8438989599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357045.642599999904633, 256475.808699999004602 ], [ 356983.623099997639656, 256467.490699999034405 ], [ 356985.678800001740456, 256510.148400001227856 ], [ 357001.837399996817112, 256506.480900000780821 ], [ 357011.966700002551079, 256501.238899998366833 ], [ 357020.42119999974966, 256493.261799998581409 ], [ 357029.439099997282028, 256484.753100000321865 ], [ 357045.642599999904633, 256475.808699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303220100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94221809, "LATITUDE": 18.33809825, "OBJECTID_1": 11109, "PARCEL_NO_": "105303220100", "Tax_Legal_": "ALTONA & WELGUNST 54A KRONP QTR", "Name": "Steven Mark Olive, Successor Trustee", "Address": "PO Box 303522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033522, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.8423968249, "SHAPE_Area": 61.444909087399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357605.801399998366833, 256507.202199999243021 ], [ 357608.160999998450279, 256514.187600001692772 ], [ 357613.799800001084805, 256514.86710000038147 ], [ 357613.864500001072884, 256507.268199998885393 ], [ 357611.470799997448921, 256504.293299999088049 ], [ 357605.801399998366833, 256507.202199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94384195000001, "LATITUDE": 18.33800341, "OBJECTID_1": 11043, "PARCEL_NO_": "105303151000", "Tax_Legal_": "ALTONA 101 CROWN PRINCE QTR", "Name": "PETER, JR, HESKETH S", "Address": "PO Box 502234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 85400, "Improved_V": 118000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.043876843000007, "SHAPE_Area": 555.13023319000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357456.777500003576279, 256489.095100000500679 ], [ 357431.814099997282028, 256485.091099999845028 ], [ 357422.772100001573563, 256505.282000001519918 ], [ 357438.04169999808073, 256511.317600000649691 ], [ 357442.060599997639656, 256512.828200001269579 ], [ 357456.777500003576279, 256489.095100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503041800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90957355, "LATITUDE": 18.33788107, "OBJECTID_1": 20142, "PARCEL_NO_": "105503041800", "Tax_Legal_": "ESTATE THOMAS 24 NEW QUARTER", "Name": "BONDE-HENRIKSEN, ERIK", "Address": "PO Box 783", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23900, "Improved_V": 230100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.17261372199999, "SHAPE_Area": 1669.5635765300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361094.079999998211861, 256515.69819999858737 ], [ 361060.446800000965595, 256488.191899999976158 ], [ 361038.57209999859333, 256500.256299998611212 ], [ 361041.576200000941753, 256526.245400000363588 ], [ 361050.308899998664856, 256542.359999999403954 ], [ 361080.300700001418591, 256524.029199998825788 ], [ 361094.079999998211861, 256515.69819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404122300", "MAP": "MB.B", "PARCEL_NAM": "23 of 8th Street", "ACRE": "0.11", "LONGITUDE": -64.91731673, "LATITUDE": 18.33801455, "OBJECTID_1": 19490, "PARCEL_NO_": "105404122300", "Tax_Legal_": "23 EIGHTH STREET KINGS QUARTER", "Name": "MASJID NUR AHL-US SYNMAH - ISL", "Address": "PO Box 12028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72000, "Improved_V": 440500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.078081975399996, "SHAPE_Area": 469.771646492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360257.784699998795986, 256526.374299999326468 ], [ 360251.479900002479553, 256509.224199999123812 ], [ 360244.199699997901917, 256511.9087999984622 ], [ 360227.215000003576279, 256517.891499999910593 ], [ 360233.519799999892712, 256535.041700001806021 ], [ 360257.784699998795986, 256526.374299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105503013600", "MAP": "A9-606-T003", "PARCEL_NAM": "OSWALD HARRIS COURT (1)", "ACRE": null, "LONGITUDE": -64.91473065, "LATITUDE": 18.33684028, "OBJECTID_1": 19981, "PARCEL_NO_": "105503013600", "Tax_Legal_": "1 OF 6E ESTATE THOMAS 6E NEW QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81366000, "Improved_V": 3717600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1259.8792111299999, "SHAPE_Area": 76672.009995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360627.588299997150898, 256469.23930000141263 ], [ 360634.380500003695488, 256429.187199998646975 ], [ 360644.043600000441074, 256430.743900001049042 ], [ 360636.436200000345707, 256471.844900000840425 ], [ 360634.679700002074242, 256488.717999998480082 ], [ 360672.597900003194809, 256486.495200000703335 ], [ 360710.496399998664856, 256486.594300001859665 ], [ 360714.545999996364117, 256484.516499999910593 ], [ 360728.150100000202656, 256402.090300001204014 ], [ 360728.212999999523163, 256394.702500000596046 ], [ 360727.500200003385544, 256383.719799999147654 ], [ 360713.385799996554852, 256336.741500001400709 ], [ 360708.605400003492832, 256329.947399999946356 ], [ 360702.990000002086163, 256326.523899998515844 ], [ 360454.998199999332428, 256283.119899999350309 ], [ 360442.935900002717972, 256279.221500001847744 ], [ 360370.143200002610683, 256272.906800001859665 ], [ 360360.204700000584126, 256281.586399998515844 ], [ 360333.9087999984622, 256306.670000001788139 ], [ 360333.840999998152256, 256306.826200000941753 ], [ 360332.215800002217293, 256308.290600001811981 ], [ 360326.485299997031689, 256318.376200001686811 ], [ 360315.076399996876717, 256332.426100000739098 ], [ 360284.973099999129772, 256363.843699999153614 ], [ 360284.937100000679493, 256368.06529999896884 ], [ 360310.534199997782707, 256392.339499998837709 ], [ 360312.141400001943111, 256392.98589999973774 ], [ 360477.848700001835823, 256535.141499999910593 ], [ 360512.635200001299381, 256521.916299998760223 ], [ 360543.377599999308586, 256510.135499998927116 ], [ 360576.528099998831749, 256499.641100000590086 ], [ 360580.56139999628067, 256499.462999999523163 ], [ 360624.111299999058247, 256498.763999998569489 ], [ 360627.588299997150898, 256469.23930000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303161000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9434628, "LATITUDE": 18.33802784, "OBJECTID_1": 11062, "PARCEL_NO_": "105303161000", "Tax_Legal_": "ESTATE ALTONA & WELGUNST 84 CROWN PRINCE QTR", "Name": "BERNIER, THEODORE G. & ROBERT D.", "Address": "PO BOX 303992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19000, "Improved_V": 28600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.755784351000003, "SHAPE_Area": 280.33032018300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357467.902199998497963, 256508.395599998533726 ], [ 357484.82039999961853, 256510.222800001502037 ], [ 357487.35080000013113, 256497.155699998140335 ], [ 357489.818300001323223, 256491.476399999111891 ], [ 357477.718199998140335, 256492.01069999858737 ], [ 357471.226400002837181, 256496.812699999660254 ], [ 357467.902199998497963, 256508.395599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404141200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91819021000001, "LATITUDE": 18.33797313, "OBJECTID_1": 19533, "PARCEL_NO_": "105404141200", "Tax_Legal_": "37 FIRST AVENUE ESTATE THOMAS", "Name": "JACOBS, ARTHUR R. & OTHERS", "Address": "PO Box 11631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.278931547, "SHAPE_Area": 456.75235064999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360165.101899996399879, 256520.549499999731779 ], [ 360149.943800002336502, 256501.427000001072884 ], [ 360135.331299997866154, 256512.917599998414516 ], [ 360150.48759999871254, 256532.251200001686811 ], [ 360165.101899996399879, 256520.549499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404132100", "MAP": "MB.B", "PARCEL_NAM": "21 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91674228, "LATITUDE": 18.33798317, "OBJECTID_1": 19516, "PARCEL_NO_": "105404132100", "Tax_Legal_": "21 NINTH STREET KINGS QUARTER", "Name": "JEPPESEN, A L & M T", "Address": "1785 N Jog Rd", "City": "West Palm Beach", "State": "Florida", "Zip": 33411, "Country": "United States", "Land_Value": 12500, "Improved_V": 66500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.535674369600002, "SHAPE_Area": 471.64420153600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360318.283299997448921, 256523.914200000464916 ], [ 360311.179399996995926, 256505.913100000470877 ], [ 360288.528899997472763, 256514.382500000298023 ], [ 360294.826499998569489, 256532.377000000327826 ], [ 360318.283299997448921, 256523.914200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303220700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94191326000001, "LATITUDE": 18.3379586, "OBJECTID_1": 11115, "PARCEL_NO_": "105303220700", "Tax_Legal_": "56 ALTONA CROWN PRINCE QUARTER", "Name": "MAGRAS(life estate), IRENE", "Address": "PO Box 305495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14400, "Improved_V": 96900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.947141752600004, "SHAPE_Area": 294.47847390200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357633.803599998354912, 256486.868999999016523 ], [ 357633.325699999928474, 256494.550799999386072 ], [ 357632.67790000140667, 256498.938900001347065 ], [ 357645.655000001192093, 256504.103999998420477 ], [ 357648.528800003230572, 256508.396299999207258 ], [ 357651.856499999761581, 256496.391199998557568 ], [ 357648.553800001740456, 256484.550200000405312 ], [ 357633.803599998354912, 256486.868999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050300", "MAP": "D9-4101-T87", "PARCEL_NAM": "5G", "ACRE": "2.88", "LONGITUDE": -64.9219154, "LATITUDE": 18.33746454, "OBJECTID_1": 19337, "PARCEL_NO_": "105404050300", "Tax_Legal_": "5A-1,5D,5E,5F, & 5G EST. THOMAS MARINA AREA, NEW QTR", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27482000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 429.992393494, "SHAPE_Area": 10085.507165200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359842.367899999022484, 256442.365299999713898 ], [ 359812.182599999010563, 256398.391800001263618 ], [ 359810.5287000015378, 256399.012899998575449 ], [ 359789.481899999082088, 256408.550999999046326 ], [ 359757.571999996900558, 256417.760000001639128 ], [ 359743.178599998354912, 256424.956700000911951 ], [ 359715.344400003552437, 256436.651299998164177 ], [ 359675.964800000190735, 256457.114799998700619 ], [ 359714.763099998235703, 256523.320300001651049 ], [ 359750.833499997854233, 256502.538499999791384 ], [ 359785.67509999871254, 256479.708599999547005 ], [ 359792.387299999594688, 256475.287300001829863 ], [ 359842.367899999022484, 256442.365299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303150900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94403358, "LATITUDE": 18.33796737, "OBJECTID_1": 11042, "PARCEL_NO_": "105303150900", "Tax_Legal_": "ALTONA 1O4 CROWN PRINCE QUARTER", "Name": "WELGUNST APARTMENTS, LLC", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65800, "Improved_V": 88400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.347922510700002, "SHAPE_Area": 343.73286916699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357431.814099997282028, 256485.091099999845028 ], [ 357416.503200002014637, 256483.910300001502037 ], [ 357403.479900002479553, 256498.158100001513958 ], [ 357422.772100001573563, 256505.282000001519918 ], [ 357431.814099997282028, 256485.091099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303180300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94298877, "LATITUDE": 18.33785409, "OBJECTID_1": 11088, "PARCEL_NO_": "105303180300", "Tax_Legal_": "90 ALTONA & WELGUNST CROWN PRINCE QTR", "Name": "OSTEEN ONEILL, ELISA M. &RICHARD SR.", "Address": "207 Spring Valley Rd", "City": "Henderson", "State": "Texas", "Zip": 75652, "Country": "United States", "Land_Value": 17000, "Improved_V": 28200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.457962326, "SHAPE_Area": 858.78172628599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357521.496500000357628, 256464.504599999636412 ], [ 357513.964500002563, 256496.740299999713898 ], [ 357520.366499997675419, 256502.492199998348951 ], [ 357530.018799997866154, 256505.315400000661612 ], [ 357533.271099999547005, 256502.175599999725819 ], [ 357537.468099996447563, 256482.78940000012517 ], [ 357539.923000000417233, 256478.587600000202656 ], [ 357543.162600003182888, 256476.925400000065565 ], [ 357549.724600002169609, 256463.89130000025034 ], [ 357521.496500000357628, 256464.504599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303220400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94240806000001, "LATITUDE": 18.33795458, "OBJECTID_1": 11112, "PARCEL_NO_": "105303220400", "Tax_Legal_": "ALTONA&WELGUNST 95 CROWN PRINCE QTR.", "Name": "L. L. HOLDING, LLC", "Address": "PO Box 304998", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 148200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.342332320200001, "SHAPE_Area": 266.16028988 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357601.820200003683567, 256501.25899999961257 ], [ 357590.697300001978874, 256481.747400000691414 ], [ 357580.168499998748302, 256487.149599999189377 ], [ 357578.697999998927116, 256487.872299998998642 ], [ 357584.862199999392033, 256495.926300000399351 ], [ 357588.099399998784065, 256500.155900001525879 ], [ 357587.363799996674061, 256500.781199999153614 ], [ 357589.689599998295307, 256505.381599999964237 ], [ 357599.395900003612041, 256501.872499998658895 ], [ 357601.820200003683567, 256501.25899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303180700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94255724, "LATITUDE": 18.33798272, "OBJECTID_1": 11092, "PARCEL_NO_": "105303180700", "Tax_Legal_": "ALTONA&WELGUNST 93&94-A-1 CROWN PRINCE QTR", "Name": "ST ANNES CHAPEL", "Address": "3701 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.366844991599997, "SHAPE_Area": 131.848222738 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357583.836900003254414, 256498.2314000017941 ], [ 357576.325499996542931, 256489.03830000013113 ], [ 357570.451300002634525, 256491.925299998372793 ], [ 357567.118199996650219, 256504.5636 ], [ 357572.782200001180172, 256502.287900000810623 ], [ 357583.836900003254414, 256498.2314000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404122400", "MAP": "MB.B", "PARCEL_NAM": "24 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.91709927, "LATITUDE": 18.33793725, "OBJECTID_1": 19491, "PARCEL_NO_": "105404122400", "Tax_Legal_": "NINTH STREET 24 KINGS QUARTER", "Name": "BENGOA, VICENTE & LISSET", "Address": "PO Box 301765", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11500, "Improved_V": 71500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.101397136000003, "SHAPE_Area": 424.58080442699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360273.32039999961853, 256501.170299999415874 ], [ 360261.186200000345707, 256505.714999999850988 ], [ 360251.479900002479553, 256509.224199999123812 ], [ 360257.784699998795986, 256526.374299999326468 ], [ 360279.625299997627735, 256518.32039999961853 ], [ 360273.32039999961853, 256501.170299999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303140800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94449107, "LATITUDE": 18.3377347, "OBJECTID_1": 11028, "PARCEL_NO_": "105303140800", "Tax_Legal_": "ALTONA & WELGUNST 210-3B KRONP. QTR", "Name": "CARIB(VI)INC.", "Address": "PO Box 51985", "City": "Toa Baja", "State": "Puerto Rico", "Zip": 950, "Country": "United States", "Land_Value": 387800, "Improved_V": 702200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.35194476500001, "SHAPE_Area": 2786.99848931 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357317.559900000691414, 256455.64469999819994 ], [ 357394.72860000282526, 256501.552999999374151 ], [ 357398.67620000243187, 256494.107999999076128 ], [ 357403.566200003027916, 256488.026299998164177 ], [ 357410.067100003361702, 256482.1689000017941 ], [ 357414.964299999177456, 256475.242800001055002 ], [ 357415.790399998426437, 256472.927600000053644 ], [ 357404.543399997055531, 256467.980399999767542 ], [ 357397.311700001358986, 256464.965900000184774 ], [ 357385.375299997627735, 256446.291999999433756 ], [ 357359.573299996554852, 256446.080800000578165 ], [ 357347.478000000119209, 256445.968199998140335 ], [ 357333.491899996995926, 256445.687100000679493 ], [ 357324.121299996972084, 256448.540699999779463 ], [ 357317.559900000691414, 256455.64469999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404132200", "MAP": "MB.B", "PARCEL_NAM": "22 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91652572, "LATITUDE": 18.33790338, "OBJECTID_1": 19517, "PARCEL_NO_": "105404132200", "Tax_Legal_": "22 TENTH STREET KINGS QUARTER", "Name": "JEPPESEN, ARTHUR L", "Address": "1785 N Jog Rd", "City": "West Palm Beach", "State": "Florida", "Zip": 33411, "Country": "United States", "Land_Value": 12500, "Improved_V": 146700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.6862229348, "SHAPE_Area": 473.09132998299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360334.637900002300739, 256497.239100001752377 ], [ 360311.179399996995926, 256505.913100000470877 ], [ 360318.283299997448921, 256523.914200000464916 ], [ 360340.935599997639656, 256515.233600001782179 ], [ 360334.637900002300739, 256497.239100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303220500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94228785, "LATITUDE": 18.33789565, "OBJECTID_1": 11113, "PARCEL_NO_": "105303220500", "Tax_Legal_": "ALTONA 1 CROWN PRINCE QTR", "Name": "ROBERT VANTE TRUST", "Address": "PO BOX 305395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23100, "Improved_V": 51000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.344210407899993, "SHAPE_Area": 368.49783038599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357611.621799997985363, 256486.562699999660254 ], [ 357605.286399997770786, 256473.000900000333786 ], [ 357590.697300001978874, 256481.747400000691414 ], [ 357601.820200003683567, 256501.25899999961257 ], [ 357615.592299997806549, 256493.772399999201298 ], [ 357611.621799997985363, 256486.562699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105303180200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94319657, "LATITUDE": 18.337839, "OBJECTID_1": 11087, "PARCEL_NO_": "105303180200", "Tax_Legal_": "ALTONA & WELGUNST 201 FORMERLY 98-KROMP QT", "Name": "TURBE, ANTHONY & LOLA", "Address": "52 HONDURAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.690003925, "SHAPE_Area": 666.44889199800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357521.496500000357628, 256464.504599999636412 ], [ 357495.669299997389317, 256467.248500000685453 ], [ 357495.615299999713898, 256473.580899998545647 ], [ 357495.510999999940395, 256485.823499999940395 ], [ 357496.266999997198582, 256491.740299999713898 ], [ 357503.480700001120567, 256496.865600001066923 ], [ 357508.302299998700619, 256498.804900001734495 ], [ 357513.964500002563, 256496.740299999713898 ], [ 357521.496500000357628, 256464.504599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404141300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91805287, "LATITUDE": 18.33786823, "OBJECTID_1": 19534, "PARCEL_NO_": "105404141300", "Tax_Legal_": "THOMAS ESTATE 39-1st AVENUE 6A NEW QTR.", "Name": "ST ANDREWS EPISCOPAL CHURCH INC", "Address": "PO Box 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68700, "Improved_V": 106100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.686552226200007, "SHAPE_Area": 450.45442539700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360179.714500002563, 256509.059000000357628 ], [ 360164.55460000038147, 256490.147599998861551 ], [ 360149.943800002336502, 256501.427000001072884 ], [ 360165.101899996399879, 256520.549499999731779 ], [ 360179.714500002563, 256509.059000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503030900", "MAP": null, "PARCEL_NAM": "6E-3", "ACRE": null, "LONGITUDE": -64.90998379, "LATITUDE": 18.3377969, "OBJECTID_1": 20069, "PARCEL_NO_": "105503030900", "Tax_Legal_": "6E-3 EST THOMAS NEW QTR", "Name": "LOCKHART, ALFRED", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72300, "Improved_V": 247800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.47047659500001, "SHAPE_Area": 1063.7845024400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361030.348899997770786, 256518.976300001144409 ], [ 361029.085199996829033, 256478.013799998909235 ], [ 361015.338299997150898, 256482.545400001108646 ], [ 361011.483800001442432, 256483.808800000697374 ], [ 361006.478900000452995, 256497.118299998342991 ], [ 361000.89919999986887, 256511.956199999898672 ], [ 360998.785300001502037, 256517.577599998563528 ], [ 361002.129799999296665, 256518.534299999475479 ], [ 361012.574100002646446, 256523.052700001746416 ], [ 361017.384999997913837, 256526.258499998599291 ], [ 361020.603100001811981, 256527.129200000315905 ], [ 361026.252599999308586, 256526.542199999094009 ], [ 361028.685999996960163, 256524.8733000010252 ], [ 361030.327399998903275, 256521.509300000965595 ], [ 361030.348899997770786, 256518.976300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404122500", "MAP": "MB.B", "PARCEL_NAM": "44 of 1st Ave", "ACRE": "0.13", "LONGITUDE": -64.91743155, "LATITUDE": 18.33781711, "OBJECTID_1": 19492, "PARCEL_NO_": "105404122500", "Tax_Legal_": "44 1ST AVE ESTATE THOMAS", "Name": "BAIG, SHAKIL & SEEMA", "Address": "PO Box 10447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14200, "Improved_V": 363200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.097595501399994, "SHAPE_Area": 544.83385698300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360227.215000003576279, 256517.891499999910593 ], [ 360244.199699997901917, 256511.9087999984622 ], [ 360231.570200003683567, 256479.930300001055002 ], [ 360218.58110000193119, 256490.167599998414516 ], [ 360218.559500001370907, 256492.700500000268221 ], [ 360227.215000003576279, 256517.891499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303220900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94179969, "LATITUDE": 18.33785143, "OBJECTID_1": 11116, "PARCEL_NO_": "105303220900", "Tax_Legal_": "20A ALTONA CROWN PRINCE QTR", "Name": "OLIVE, EDWIN L. & AUREA CRUZ-OLIVE", "Address": "PO Box 801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42800, "Improved_V": 231000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.067908565699994, "SHAPE_Area": 319.64486339000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357645.601999998092651, 256473.330800000578165 ], [ 357648.553800001740456, 256484.550200000405312 ], [ 357651.856499999761581, 256496.391199998557568 ], [ 357663.323100000619888, 256494.014199998229742 ], [ 357660.885999999940395, 256477.677799999713898 ], [ 357656.929999999701977, 256468.779500000178814 ], [ 357645.601999998092651, 256473.330800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303220600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94208462, "LATITUDE": 18.33789838, "OBJECTID_1": 11114, "PARCEL_NO_": "105303220600", "Tax_Legal_": "58 ALTONA CROWN PRINCE QTR", "Name": "QUETEL, ELIZABETH", "Address": "PO Box 304542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14400, "Improved_V": 51300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.609671981999995, "SHAPE_Area": 242.66364646400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357633.803599998354912, 256486.868999999016523 ], [ 357633.464199997484684, 256478.297699999064207 ], [ 357611.621799997985363, 256486.562699999660254 ], [ 357615.592299997806549, 256493.772399999201298 ], [ 357633.325699999928474, 256494.550799999386072 ], [ 357633.803599998354912, 256486.868999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94356809, "LATITUDE": 18.33784896, "OBJECTID_1": 11046, "PARCEL_NO_": "105303151300", "Tax_Legal_": "82 ALTONA &WELGUNST CROWN PRINCE QTR", "Name": "ROBERT ANDREW DANET AND ROSE MARIE DANET FAMILY RE", "Address": "PO Box 304158", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21300, "Improved_V": 54800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.628972349700007, "SHAPE_Area": 401.60493645700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357470.61599999666214, 256473.798500001430511 ], [ 357464.997000001370907, 256470.797200001776218 ], [ 357457.756399996578693, 256468.838100001215935 ], [ 357456.777500003576279, 256489.095100000500679 ], [ 357474.500200003385544, 256491.140000000596046 ], [ 357478.558700002729893, 256488.006799999624491 ], [ 357480.218099996447563, 256482.531899999827147 ], [ 357482.687399998307228, 256476.641499999910593 ], [ 357470.61599999666214, 256473.798500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503031700", "MAP": "G9-1000-T67", "PARCEL_NAM": "14RCA", "ACRE": ".23", "LONGITUDE": -64.91027432, "LATITUDE": 18.33768965, "OBJECTID_1": 20075, "PARCEL_NO_": "105503031700", "Tax_Legal_": "14 RCA EST THOMAS 6E NEW QTR", "Name": "LOCKHART, ALFRED H", "Address": "PO Box 714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 84300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.269959513, "SHAPE_Area": 970.59665937199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360996.28490000218153, 256475.960200000554323 ], [ 360974.399800002574921, 256464.842999998480082 ], [ 360975.36879999935627, 256477.272799998521805 ], [ 360978.17620000243187, 256513.281399998813868 ], [ 360988.454899996519089, 256514.622699998319149 ], [ 360998.785300001502037, 256517.577599998563528 ], [ 360998.697599999606609, 256500.188000001013279 ], [ 360998.587700001895428, 256478.378600001335144 ], [ 360998.581399999558926, 256477.126800000667572 ], [ 360996.28490000218153, 256475.960200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503030800", "MAP": "G9-1000-T67", "PARCEL_NAM": "14RC", "ACRE": null, "LONGITUDE": -64.91012487, "LATITUDE": 18.33769242, "OBJECTID_1": 20068, "PARCEL_NO_": "105503030800", "Tax_Legal_": "14RC ESTATE THOMAS 6E NEW QUARTER", "Name": "LOCKHART, DOROTHY A", "Address": "PO Box 714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.061075118600002, "SHAPE_Area": 260.968997726 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361003.557099997997284, 256479.654399998486042 ], [ 360998.581399999558926, 256477.126800000667572 ], [ 360998.587700001895428, 256478.378600001335144 ], [ 360998.697599999606609, 256500.188000001013279 ], [ 360998.785300001502037, 256517.577599998563528 ], [ 361000.89919999986887, 256511.956199999898672 ], [ 361006.478900000452995, 256497.118299998342991 ], [ 361011.483800001442432, 256483.808800000697374 ], [ 361009.420500002801418, 256482.63289999961853 ], [ 361003.557099997997284, 256479.654399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94383858, "LATITUDE": 18.33780498, "OBJECTID_1": 11045, "PARCEL_NO_": "105303151200", "Tax_Legal_": "ALTONA & WELGUNST 105 CROWN PRINCE", "Name": "SOPHIA E STARR REVOCABLE TRUST", "Address": "PO Box 306018", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 41200, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.28075686299999, "SHAPE_Area": 774.61531781899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357457.756399996578693, 256468.838100001215935 ], [ 357440.0625, 256463.415899999439716 ], [ 357430.39750000089407, 256462.070300001651049 ], [ 357424.701200000941753, 256468.145399998873472 ], [ 357416.503200002014637, 256483.910300001502037 ], [ 357431.814099997282028, 256485.091099999845028 ], [ 357456.777500003576279, 256489.095100000500679 ], [ 357457.756399996578693, 256468.838100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404122600", "MAP": "MB.B", "PARCEL_NAM": "46 of 1st Ave", "ACRE": "0.15", "LONGITUDE": -64.91728742, "LATITUDE": 18.33773944, "OBJECTID_1": 19494, "PARCEL_NO_": "105404122600", "Tax_Legal_": "46 FIRST AVE FIRST DIV 6A NEW QTR", "Name": "GUSTAV M SAMUEL TRUST", "Address": "PO Box 298", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 99700, "Improved_V": 110300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.94188191800001, "SHAPE_Area": 649.25614113500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360261.186200000345707, 256505.714999999850988 ], [ 360245.370999999344349, 256469.066399998962879 ], [ 360231.570200003683567, 256479.930300001055002 ], [ 360244.199699997901917, 256511.9087999984622 ], [ 360251.479900002479553, 256509.224199999123812 ], [ 360261.186200000345707, 256505.714999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503015300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91094752, "LATITUDE": 18.33774659, "OBJECTID_1": 19982, "PARCEL_NO_": "105503015300", "Tax_Legal_": "2 6E ESTATE THOMAS NEW QUARTER", "Name": "ELSKOE, LOCKHART DOROTHY", "Address": "PO Box 7566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79500, "Improved_V": 233600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.86048925599999, "SHAPE_Area": 1413.5718360799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360944.154399998486042, 256508.771699998527765 ], [ 360928.274499997496605, 256479.721900001168251 ], [ 360923.434799998998642, 256479.893300000578165 ], [ 360896.014799997210503, 256480.302200000733137 ], [ 360894.123499996960163, 256513.00620000064373 ], [ 360922.321000002324581, 256515.981199998408556 ], [ 360923.931900002062321, 256516.20549999922514 ], [ 360929.606600001454353, 256512.663400001823902 ], [ 360944.154399998486042, 256508.771699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303221900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94193348, "LATITUDE": 18.3378339, "OBJECTID_1": 11126, "PARCEL_NO_": "105303221900", "Tax_Legal_": "57 ALTONA CROWN PRINCE QTR", "Name": "MAGRAS, FLAVEL & IRENE & PLANTE E. & OTHERS", "Address": "PO Box 305495", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10200, "Improved_V": 13400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.225312515100001, "SHAPE_Area": 139.02775938400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357645.601999998092651, 256473.330800000578165 ], [ 357633.464199997484684, 256478.297699999064207 ], [ 357633.803599998354912, 256486.868999999016523 ], [ 357648.553800001740456, 256484.550200000405312 ], [ 357645.601999998092651, 256473.330800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404141400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91791553, "LATITUDE": 18.33776428, "OBJECTID_1": 19535, "PARCEL_NO_": "105404141400", "Tax_Legal_": "41 FIRST AVE ESTATE THOMAS", "Name": "RABSATT, ECEDRO (LIFE ESTATE)", "Address": "PO Box 1212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34300, "Improved_V": 200200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.359352922400006, "SHAPE_Area": 447.390023891 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360194.326999999582767, 256497.568399999290705 ], [ 360179.165299996733665, 256478.868099998682737 ], [ 360164.55460000038147, 256490.147599998861551 ], [ 360179.714500002563, 256509.059000000357628 ], [ 360194.326999999582767, 256497.568399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503042600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90926594, "LATITUDE": 18.33768913, "OBJECTID_1": 20150, "PARCEL_NO_": "105503042600", "Tax_Legal_": "25 ESTATE THOMAS NEW QUARTER", "Name": "SNELL, JR., KEITH", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26000, "Improved_V": 227800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.37479636899999, "SHAPE_Area": 1461.3976623200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361088.802599996328354, 256472.592000000178814 ], [ 361060.446800000965595, 256488.191899999976158 ], [ 361094.079999998211861, 256515.69819999858737 ], [ 361128.940200001001358, 256493.81870000064373 ], [ 361088.802599996328354, 256472.592000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105204050100", "MAP": "C3-99-T65", "PARCEL_NAM": "1", "ACRE": "13.74", "LONGITUDE": -64.94646701000001, "LATITUDE": 18.33692904, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1035.6571750799999, "SHAPE_Area": 60848.962730599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357303.77589999884367, 256464.622499998658895 ], [ 357312.212999999523163, 256420.784099999815226 ], [ 357313.876000002026558, 256414.887099999934435 ], [ 357316.386699996888638, 256404.1418999992311 ], [ 357330.663999997079372, 256337.342099998146296 ], [ 357338.212099999189377, 256303.206700000911951 ], [ 357341.554300002753735, 256289.513000000268221 ], [ 357297.345499999821186, 256272.896899998188019 ], [ 357284.473300002515316, 256269.414099998772144 ], [ 357253.045100003480911, 256267.045899998396635 ], [ 357202.890100002288818, 256285.844900000840425 ], [ 357160.875500001013279, 256295.633600000292063 ], [ 357141.502499997615814, 256298.008099999278784 ], [ 357113.265299998223782, 256299.676899999380112 ], [ 357075.363300003111362, 256299.999899998307228 ], [ 357068.909199997782707, 256300.369300000369549 ], [ 357060.840599998831749, 256300.936500001698732 ], [ 356986.672499999403954, 256298.85190000012517 ], [ 356971.71000000089407, 256446.072700001299381 ], [ 357272.97240000218153, 256483.579900000244379 ], [ 357286.674300000071526, 256484.325300000607967 ], [ 357293.954499997198582, 256481.640700001269579 ], [ 357298.018399998545647, 256477.874299999326468 ], [ 357299.647200003266335, 256475.987799998372793 ], [ 357302.107500001788139, 256471.152800001204014 ], [ 357303.77589999884367, 256464.622499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303180100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94336957, "LATITUDE": 18.33782572, "OBJECTID_1": 11086, "PARCEL_NO_": "105303180100", "Tax_Legal_": "83 ALTONA CROWN PRINCE QUARTER", "Name": "DANET, ANN LILLIAN, THEODORE P. III, & MARIELA GARCIA", "Address": "P O BOX 3771", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15200, "Improved_V": 45000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.275532693700001, "SHAPE_Area": 159.56903478800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357495.615299999713898, 256473.580899998545647 ], [ 357484.344899997115135, 256471.377700001001358 ], [ 357482.687399998307228, 256476.641499999910593 ], [ 357480.218099996447563, 256482.531899999827147 ], [ 357495.510999999940395, 256485.823499999940395 ], [ 357495.615299999713898, 256473.580899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303221700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94209914, "LATITUDE": 18.33779919, "OBJECTID_1": 11124, "PARCEL_NO_": "105303221700", "Tax_Legal_": "ALTONA 59 CROWN PRINCE QTR", "Name": "QUETEL, LEON & MARGARITA", "Address": "3680 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41800, "Improved_V": 810200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.556338535000002, "SHAPE_Area": 175.313912711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357624.702600002288818, 256465.560400001704693 ], [ 357611.621799997985363, 256486.562699999660254 ], [ 357633.464199997484684, 256478.297699999064207 ], [ 357624.702600002288818, 256465.560400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503042500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90865755, "LATITUDE": 18.33766316, "OBJECTID_1": 20149, "PARCEL_NO_": "105503042500", "Tax_Legal_": "21 EST.THOMAS NEW QTR.", "Name": "DOMINIQUES VILLAS LLC", "Address": "PO Box 11781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94700, "Improved_V": 453500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.109515528, "SHAPE_Area": 1006.0969298 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361144.506499998271465, 256465.026299998164177 ], [ 361136.223999999463558, 256490.712000001221895 ], [ 361157.897399999201298, 256502.288400001823902 ], [ 361164.286700002849102, 256509.517900001257658 ], [ 361168.267899997532368, 256515.461100000888109 ], [ 361181.266000002622604, 256504.168400000780821 ], [ 361173.32880000025034, 256489.326900001615286 ], [ 361144.506499998271465, 256465.026299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035200", "MAP": "G9-1778-T71", "PARCEL_NAM": "14B", "ACRE": null, "LONGITUDE": -64.91126465000001, "LATITUDE": 18.33763784, "OBJECTID_1": 20106, "PARCEL_NO_": "105503035200", "Tax_Legal_": "14B EST THOMAS 6 E NEW QTR", "Name": "ELSKOE, DOROTHY", "Address": "PO Box 7566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 318700, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.62281142500001, "SHAPE_Area": 1997.5938433399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360928.274499997496605, 256479.721900001168251 ], [ 360925.285099998116493, 256475.130399998277426 ], [ 360910.848399996757507, 256468.087099999189377 ], [ 360904.99040000140667, 256467.92119999974966 ], [ 360896.928999997675419, 256467.644099999219179 ], [ 360889.697400003671646, 256464.629599999636412 ], [ 360884.897299997508526, 256460.157299999147654 ], [ 360880.912500001490116, 256454.636300001293421 ], [ 360880.79559999704361, 256468.3564000017941 ], [ 360859.862000003457069, 256464.596500001847744 ], [ 360859.416799999773502, 256464.497400000691414 ], [ 360859.314999997615814, 256472.073699999600649 ], [ 360859.177699998021126, 256482.294199999421835 ], [ 360858.812200002372265, 256509.487300001084805 ], [ 360868.341300003230572, 256510.473200000822544 ], [ 360894.123499996960163, 256513.00620000064373 ], [ 360896.014799997210503, 256480.302200000733137 ], [ 360923.434799998998642, 256479.893300000578165 ], [ 360928.274499997496605, 256479.721900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303180500", "MAP": "D9-5496-T93", "PARCEL_NAM": "91", "ACRE": "0.48", "LONGITUDE": -64.94273503, "LATITUDE": 18.33802033, "OBJECTID_1": 11091, "PARCEL_NO_": "105303180500", "Tax_Legal_": "ALTONA 91 CROWN PRINCE QTR", "Name": "THE CATHOLIC DIOCESE STT", "Address": "P.O. BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 45600, "Improved_V": 137800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.24792463599999, "SHAPE_Area": 1811.3665543100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357585.540700003504753, 256516.046100001782179 ], [ 357574.815600000321865, 256501.541700001806021 ], [ 357572.782200001180172, 256502.287900000810623 ], [ 357567.118199996650219, 256504.5636 ], [ 357570.451300002634525, 256491.925299998372793 ], [ 357571.311599999666214, 256485.599500000476837 ], [ 357573.818599998950958, 256475.276399999856949 ], [ 357568.176299996674061, 256475.019200000911951 ], [ 357548.832000002264977, 256474.016499999910593 ], [ 357543.91499999910593, 256483.264299999922514 ], [ 357537.468099996447563, 256482.78940000012517 ], [ 357533.271099999547005, 256502.175599999725819 ], [ 357530.018799997866154, 256505.315400000661612 ], [ 357529.982900001108646, 256509.537000000476837 ], [ 357529.934299997985363, 256515.236099999397993 ], [ 357554.877899996936321, 256521.561999998986721 ], [ 357564.5337999984622, 256523.963100001215935 ], [ 357572.624099999666214, 256522.818900000303984 ], [ 357580.773299999535084, 256519.855599999427795 ], [ 357584.117299996316433, 256517.183499999344349 ], [ 357585.540700003504753, 256516.046100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503031800", "MAP": "G9-1000-T67", "PARCEL_NAM": "14RO", "ACRE": ".26", "LONGITUDE": -64.91051512, "LATITUDE": 18.33770194, "OBJECTID_1": 20076, "PARCEL_NO_": "105503031800", "Tax_Legal_": "ESTATE THOMAS 14RO 6E NEW QTR", "Name": "BERNIER, R KENT", "Address": "P.O. BOX 2516", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.25333322099999, "SHAPE_Area": 1002.44787472 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360978.17620000243187, 256513.281399998813868 ], [ 360975.36879999935627, 256477.272799998521805 ], [ 360973.579199999570847, 256477.363400001078844 ], [ 360937.955700002610683, 256479.16780000180006 ], [ 360941.929700002074242, 256485.955299999564886 ], [ 360955.430200003087521, 256510.341600000858307 ], [ 360976.372800000011921, 256513.046100001782179 ], [ 360978.17620000243187, 256513.281399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303221600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94219333, "LATITUDE": 18.33774067, "OBJECTID_1": 11123, "PARCEL_NO_": "105303221600", "Tax_Legal_": "ALTONA & WELGUNST 6 CROWN PRINCE QTR", "Name": "QUETEL, MARGARITA", "Address": "3680 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.798900918499996, "SHAPE_Area": 320.07490737099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357622.307099997997284, 256462.796599999070168 ], [ 357617.510600000619888, 256457.902199998497963 ], [ 357605.352899998426437, 256465.190900001674891 ], [ 357601.299800001084805, 256467.690900001674891 ], [ 357605.286399997770786, 256473.000900000333786 ], [ 357611.621799997985363, 256486.562699999660254 ], [ 357624.702600002288818, 256465.560400001704693 ], [ 357622.307099997997284, 256462.796599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404122700", "MAP": "MB.B", "PARCEL_NAM": "48 of 1st Ave", "ACRE": "0.17", "LONGITUDE": -64.91715854, "LATITUDE": 18.33765851, "OBJECTID_1": 19495, "PARCEL_NO_": "105404122700", "Tax_Legal_": "48 FIRST AVE KINGS QUARTER", "Name": "SIMMONS, ELDRA & ESTATE OF BERYL SAMUEL", "Address": "7744 Mandan Rd", "City": "Greenbelt", "State": "Maryland", "Zip": 20770, "Country": "United States", "Land_Value": 19400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.7431086, "SHAPE_Area": 621.85210867399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360245.370999999344349, 256469.066399998962879 ], [ 360261.186200000345707, 256505.714999999850988 ], [ 360273.32039999961853, 256501.170299999415874 ], [ 360259.953000001609325, 256461.164200000464916 ], [ 360256.734899997711182, 256460.293499998748302 ], [ 360245.370999999344349, 256469.066399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404132400", "MAP": "MB.B", "PARCEL_NAM": "24 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91659735, "LATITUDE": 18.33771633, "OBJECTID_1": 19519, "PARCEL_NO_": "105404132400", "Tax_Legal_": "24 TENTH STREET KINGS QUARTER", "Name": "PRYER, LEONA", "Address": "PO Box 22252", "City": "Baltimore", "State": "Maryland", "Zip": 21203, "Country": "United States", "Land_Value": 36000, "Improved_V": 58000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.4938104326, "SHAPE_Area": 618.70323866000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360325.969899997115135, 256473.525699999183416 ], [ 360303.3175999969244, 256482.206300001591444 ], [ 360305.675399996340275, 256489.402699999511242 ], [ 360311.179399996995926, 256505.913100000470877 ], [ 360334.637900002300739, 256497.239100001752377 ], [ 360325.969899997115135, 256473.525699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503037600", "MAP": "D9-2458-T83", "PARCEL_NAM": "14B-3", "ACRE": null, "LONGITUDE": -64.91160405, "LATITUDE": 18.33770738, "OBJECTID_1": 20123, "PARCEL_NO_": "105503037600", "Tax_Legal_": "14B-3 EST. THOMAS NEW QTR.", "Name": "RAWLINS, SR., PATRICIA F. & JEROME L.", "Address": "PO Box 10887", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53200, "Improved_V": 167200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.135504471, "SHAPE_Area": 680.87927891100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360859.177699998021126, 256482.294199999421835 ], [ 360849.194600000977516, 256480.554000001400709 ], [ 360829.929099999368191, 256477.195799998939037 ], [ 360831.243600003421307, 256481.033500000834465 ], [ 360839.44879999756813, 256507.522399999201298 ], [ 360841.75450000166893, 256507.722500000149012 ], [ 360858.812200002372265, 256509.487300001084805 ], [ 360859.177699998021126, 256482.294199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503037700", "MAP": "G9-1000-T67", "PARCEL_NAM": "14RN", "ACRE": ".09", "LONGITUDE": -64.91072154, "LATITUDE": 18.33768486, "OBJECTID_1": 20124, "PARCEL_NO_": "105503037700", "Tax_Legal_": "14RN EST. THOMAS NEW QTR.", "Name": "ELSKOE, DOROTHY", "Address": "P.O. 7566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 197800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.801976483, "SHAPE_Area": 373.52587602599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360937.955700002610683, 256479.16780000180006 ], [ 360933.639200001955032, 256471.355799999088049 ], [ 360925.285099998116493, 256475.130399998277426 ], [ 360928.274499997496605, 256479.721900001168251 ], [ 360944.154399998486042, 256508.771699998527765 ], [ 360955.430200003087521, 256510.341600000858307 ], [ 360941.929700002074242, 256485.955299999564886 ], [ 360937.955700002610683, 256479.16780000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303221000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94237833, "LATITUDE": 18.33775015, "OBJECTID_1": 11117, "PARCEL_NO_": "105303221000", "Tax_Legal_": "ALTONA 62 CROWN PRINCE QTR", "Name": "HUTCHINSON, LUCINA", "Address": "62 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13300, "Improved_V": 72500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.267254387599998, "SHAPE_Area": 246.97169532800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357594.087899997830391, 256462.354499999433756 ], [ 357582.749200001358986, 256468.1722999997437 ], [ 357590.697300001978874, 256481.747400000691414 ], [ 357605.286399997770786, 256473.000900000333786 ], [ 357601.299800001084805, 256467.690900001674891 ], [ 357596.519500002264977, 256460.896800000220537 ], [ 357594.087899997830391, 256462.354499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404141500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91778077, "LATITUDE": 18.33766096, "OBJECTID_1": 19536, "PARCEL_NO_": "105404141500", "Tax_Legal_": "43 FIRST AVE ESTATE THOMAS", "Name": "WALTERS, MARIO & OTHERS", "Address": "7908 Clearview Cir", "City": "Riverdale", "State": "Georgia", "Zip": 302963388, "Country": "United States", "Land_Value": 68900, "Improved_V": 243800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.000069641899998, "SHAPE_Area": 431.986050654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360208.12780000269413, 256486.704500000923872 ], [ 360193.776000000536442, 256467.588599998503923 ], [ 360179.165299996733665, 256478.868099998682737 ], [ 360194.326999999582767, 256497.568399999290705 ], [ 360208.12780000269413, 256486.704500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404132500", "MAP": "MB.B", "PARCEL_NAM": "25 of 9th Street", "ACRE": "0.11", "LONGITUDE": -64.9168665, "LATITUDE": 18.33766151, "OBJECTID_1": 19520, "PARCEL_NO_": "105404132500", "Tax_Legal_": "25 9THST 1ST SUBDIVISION KINGS QTR", "Name": "R. & W. ST. ANDREW CHURCH", "Address": "PO Box 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72000, "Improved_V": 97000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.502384926100007, "SHAPE_Area": 534.02549338100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360291.309199996292591, 256471.975499998778105 ], [ 360275.148800000548363, 256475.853999998420477 ], [ 360283.023100003600121, 256498.083299998193979 ], [ 360305.675399996340275, 256489.402699999511242 ], [ 360303.3175999969244, 256482.206300001591444 ], [ 360298.58219999819994, 256470.135200001299381 ], [ 360291.309199996292591, 256471.975499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303180400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94270358, "LATITUDE": 18.33773352, "OBJECTID_1": 11090, "PARCEL_NO_": "105303180400", "Tax_Legal_": "ALTONA & WELGUNST 92 CROWN PRINCE QTR", "Name": "LIBURD, ERNEST & MARGARET", "Address": "ALTONA 92", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14700, "Improved_V": 68000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.314574461600003, "SHAPE_Area": 181.86804427600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357548.832000002264977, 256474.016499999910593 ], [ 357568.176299996674061, 256475.019200000911951 ], [ 357565.067900002002716, 256461.272599998861551 ], [ 357554.567800000309944, 256463.297600001096725 ], [ 357548.832000002264977, 256474.016499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94359252, "LATITUDE": 18.3377114, "OBJECTID_1": 11048, "PARCEL_NO_": "105303151500", "Tax_Legal_": "ALTONA 81A KROMP GADE", "Name": "AUBAIN, EVELYN", "Address": "3710 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.9267045749, "SHAPE_Area": 146.123224857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357474.726700000464916, 256464.543999999761581 ], [ 357457.03999999910593, 256458.277499999850988 ], [ 357457.776199996471405, 256466.516199998557568 ], [ 357464.997000001370907, 256470.797200001776218 ], [ 357470.61599999666214, 256473.798500001430511 ], [ 357474.726700000464916, 256464.543999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303221800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94190866, "LATITUDE": 18.33768537, "OBJECTID_1": 11125, "PARCEL_NO_": "105303221800", "Tax_Legal_": "ALTONA 19 CROWN PRINCE QTR", "Name": "PIERRE L. LEDEE FAMILY TRUST", "Address": "PO Box 591", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16200, "Improved_V": 69400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.444686732099996, "SHAPE_Area": 298.20282568800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357651.413500003516674, 256453.746700000017881 ], [ 357630.370200000703335, 256462.86259999871254 ], [ 357635.913699999451637, 256474.729200001806021 ], [ 357656.143399998545647, 256466.4510000012815 ], [ 357651.413500003516674, 256453.746700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303140700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94404282000001, "LATITUDE": 18.33760579, "OBJECTID_1": 11027, "PARCEL_NO_": "105303140700", "Tax_Legal_": "ALTONA 108 CROWN PRINCE QTR", "Name": "MAGRAS, ANN FLORIE", "Address": "PO Box 301701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32100, "Improved_V": 140900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.256519963, "SHAPE_Area": 580.49871994199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357413.823399998247623, 256435.201299998909235 ], [ 357404.543399997055531, 256467.980399999767542 ], [ 357415.790399998426437, 256472.927600000053644 ], [ 357420.711000002920628, 256463.257599998265505 ], [ 357434.538800001144409, 256449.22749999910593 ], [ 357434.562200002372265, 256446.483399998396635 ], [ 357413.823399998247623, 256435.201299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503042800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90955693, "LATITUDE": 18.33736924, "OBJECTID_1": 20152, "PARCEL_NO_": "105503042800", "Tax_Legal_": "23 ESTATE THOMAS NEW QUARTER", "Name": "PRESTON MELENDEZ, SHEYLA", "Address": "RR10", "City": "San Juan", "State": "Puerto Rico", "Zip": 926, "Country": "United States", "Land_Value": 81300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.69411362299999, "SHAPE_Area": 3148.3219291700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361103.472699999809265, 256454.346900001168251 ], [ 361084.279399998486042, 256435.613600000739098 ], [ 361032.813900001347065, 256418.938200000673532 ], [ 361032.786899998784065, 256422.104299999773502 ], [ 361034.376199997961521, 256424.861600000411272 ], [ 361035.93129999935627, 256431.629299998283386 ], [ 361039.102600000798702, 256437.988000001758337 ], [ 361041.436999998986721, 256447.92850000038743 ], [ 361040.48139999806881, 256465.441500000655651 ], [ 361037.949199996888638, 256478.719700001180172 ], [ 361038.57209999859333, 256500.256299998611212 ], [ 361060.446800000965595, 256488.191899999976158 ], [ 361088.802599996328354, 256472.592000000178814 ], [ 361095.283699996769428, 256469.056400001049042 ], [ 361103.472699999809265, 256454.346900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94376628000001, "LATITUDE": 18.33763787, "OBJECTID_1": 11047, "PARCEL_NO_": "105303151400", "Tax_Legal_": "ALTONA 1O6 CROWN PRINCE QUARTER", "Name": "CERGE (LIFE ESTATE), INGER and DERRICK EDMUND", "Address": "P O BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25600, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.954338173699995, "SHAPE_Area": 360.83974922800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357457.03999999910593, 256458.277499999850988 ], [ 357456.316399998962879, 256448.561299998313189 ], [ 357441.817199997603893, 256446.753899998962879 ], [ 357440.9712999984622, 256451.390999998897314 ], [ 357430.39750000089407, 256462.070300001651049 ], [ 357440.0625, 256463.415899999439716 ], [ 357457.756399996578693, 256468.838100001215935 ], [ 357457.776199996471405, 256466.516199998557568 ], [ 357457.03999999910593, 256458.277499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303140600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94422908, "LATITUDE": 18.33752513, "OBJECTID_1": 11026, "PARCEL_NO_": "105303140600", "Tax_Legal_": "ALTONA&WELGUNST 109 KROMP GADE", "Name": "CERGE, PATRICK & DORA", "Address": "109 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49700, "Improved_V": 52200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.642112121, "SHAPE_Area": 801.14497427000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357379.806599996984005, 256437.380399998277426 ], [ 357385.375299997627735, 256446.291999999433756 ], [ 357397.311700001358986, 256464.965900000184774 ], [ 357404.543399997055531, 256467.980399999767542 ], [ 357413.823399998247623, 256435.201299998909235 ], [ 357402.466099999845028, 256427.855599999427795 ], [ 357396.825499996542931, 256427.387200001627207 ], [ 357392.78320000320673, 256428.620700001716614 ], [ 357379.806599996984005, 256437.380399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303221100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94246407, "LATITUDE": 18.33763291, "OBJECTID_1": 11118, "PARCEL_NO_": "105303221100", "Tax_Legal_": "ALTONA 63\nCROWN PRINCE QUARTER", "Name": "MAGRAS, CLEMENT", "Address": "PO Box 306392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12300, "Improved_V": 65700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.752593555099999, "SHAPE_Area": 208.92922353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357582.749200001358986, 256468.1722999997437 ], [ 357594.087899997830391, 256462.354499999433756 ], [ 357586.150700002908707, 256447.513000000268221 ], [ 357580.490299999713898, 256449.366500001400709 ], [ 357578.053400002419949, 256451.457499999552965 ], [ 357578.026399999856949, 256454.623700000345707 ], [ 357581.127599999308586, 256469.214499998837709 ], [ 357582.749200001358986, 256468.1722999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303221400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94231147000001, "LATITUDE": 18.33767519, "OBJECTID_1": 11121, "PARCEL_NO_": "105303221400", "Tax_Legal_": "ALTONA 61 CROWN PRINCE QTR", "Name": "MAGRAS, ANNETTE", "Address": "3676 Altona 50A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2000, "Improved_V": 9200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 26.7228647606, "SHAPE_Area": 41.3599351473 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357605.352899998426437, 256465.190900001674891 ], [ 357600.576200000941753, 256457.974700000137091 ], [ 357596.519500002264977, 256460.896800000220537 ], [ 357601.299800001084805, 256467.690900001674891 ], [ 357605.352899998426437, 256465.190900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034900", "MAP": "G9-1778-T71", "PARCEL_NAM": "14A", "ACRE": null, "LONGITUDE": -64.91219453, "LATITUDE": 18.3375942, "OBJECTID_1": 20105, "PARCEL_NO_": "105503034900", "Tax_Legal_": "ESTATE THOMAS 14A 6E NEW QTR", "Name": "BRYAN, CALVIN & MAYSEL", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.293239073099997, "SHAPE_Area": 557.399919329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360798.336300000548363, 256471.688900001347065 ], [ 360777.769299998879433, 256468.103900000452995 ], [ 360775.944399997591972, 256471.086800001561642 ], [ 360769.407600000500679, 256481.165800001472235 ], [ 360765.305900000035763, 256489.364900000393391 ], [ 360792.848600000143051, 256490.124800000339746 ], [ 360794.4003000035882, 256490.167599998414516 ], [ 360797.160700000822544, 256484.048599999397993 ], [ 360802.415700003504753, 256472.399999998509884 ], [ 360798.509300000965595, 256471.719099998474121 ], [ 360798.336300000548363, 256471.688900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94357168000001, "LATITUDE": 18.33761726, "OBJECTID_1": 11049, "PARCEL_NO_": "105303151600", "Tax_Legal_": "ALTONA 81 KROMP QTR", "Name": "AUBAIN, JOHN & MARIE", "Address": "3710 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14200, "Improved_V": 54900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.131727327299998, "SHAPE_Area": 270.62309905900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357479.566399998962879, 256452.832899998873472 ], [ 357456.273299999535084, 256446.375900000333786 ], [ 357456.316399998962879, 256448.561299998313189 ], [ 357457.03999999910593, 256458.277499999850988 ], [ 357474.726700000464916, 256464.543999999761581 ], [ 357481.770599998533726, 256453.770300000905991 ], [ 357479.566399998962879, 256452.832899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404141600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91764603, "LATITUDE": 18.33756008, "OBJECTID_1": 19537, "PARCEL_NO_": "105404141600", "Tax_Legal_": "45 - 1ST. AVE., ESTATE THOMAS", "Name": "MAYNARD, PAUL V", "Address": "PO Box 11125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67500, "Improved_V": 107400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.264619854700001, "SHAPE_Area": 435.73062378999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360222.740299999713898, 256475.214000001549721 ], [ 360207.578599996864796, 256456.513599999248981 ], [ 360197.836300000548363, 256464.24439999833703 ], [ 360193.776000000536442, 256467.588599998503923 ], [ 360208.12780000269413, 256486.704500000923872 ], [ 360222.740299999713898, 256475.214000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303221500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94223753, "LATITUDE": 18.33763422, "OBJECTID_1": 11122, "PARCEL_NO_": "105303221500", "Tax_Legal_": "60 ALTONA CROWN PRINCE QTR", "Name": "CERGE, PATRICK A.,KENNETH A., & CAROL", "Address": "3717 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4800, "Improved_V": 33200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.593200364799998, "SHAPE_Area": 110.123730618 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357617.510600000619888, 256457.902199998497963 ], [ 357611.914899997413158, 256452.156899999827147 ], [ 357607.055500000715256, 256454.650199998170137 ], [ 357600.576200000941753, 256457.974700000137091 ], [ 357605.352899998426437, 256465.190900001674891 ], [ 357617.510600000619888, 256457.902199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9125823, "LATITUDE": 18.33758064, "OBJECTID_1": 19992, "PARCEL_NO_": "105503020100", "Tax_Legal_": "14-81 EST THOMAS 6E NEW QTR", "Name": "MARY E GRIFFITH TRUST", "Address": "12713 Nani Dr", "City": "Madison", "State": "Alabama", "Zip": 35756, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.759828482, "SHAPE_Area": 732.06100170100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360747.739600002765656, 256468.956199999898672 ], [ 360726.800700001418591, 256465.829500000923872 ], [ 360725.078400000929832, 256478.692099999636412 ], [ 360728.231700003147125, 256487.16160000115633 ], [ 360732.247100003063679, 256489.094300001859665 ], [ 360748.362499997019768, 256490.492800001055002 ], [ 360755.644500002264977, 256487.597100000828505 ], [ 360760.523800000548363, 256482.781899999827147 ], [ 360766.263300001621246, 256471.640900000929832 ], [ 360750.961300000548363, 256469.404699999839067 ], [ 360747.739600002765656, 256468.956199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303221200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94235395, "LATITUDE": 18.33757742, "OBJECTID_1": 11119, "PARCEL_NO_": "105303221200", "Tax_Legal_": "64 ALTONA&WELGUNST CROWN PRINCE QUARTER", "Name": "DANET, JAMES ALPHONSO & BARBARA ANN (TRUSTEES)", "Address": "PO Box 304433", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11700, "Improved_V": 30000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.866516460200003, "SHAPE_Area": 218.207081746 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357594.087899997830391, 256462.354499999433756 ], [ 357596.519500002264977, 256460.896800000220537 ], [ 357600.576200000941753, 256457.974700000137091 ], [ 357607.055500000715256, 256454.650199998170137 ], [ 357599.89580000191927, 256443.192499998956919 ], [ 357586.150700002908707, 256447.513000000268221 ], [ 357594.087899997830391, 256462.354499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303230700", "MAP": null, "PARCEL_NAM": "8", "ACRE": "2,039 sq ft", "LONGITUDE": -64.94207791, "LATITUDE": 18.33758842, "OBJECTID_1": 11132, "PARCEL_NO_": "105303230700", "Tax_Legal_": "8 ALTONA & WELGUNST KRON. QTR", "Name": "DANET, LEON & VIRGINIA M.", "Address": "PO Box 307092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12900, "Improved_V": 50500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.307291021399998, "SHAPE_Area": 134.62662222700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357618.337899997830391, 256449.1739999987185 ], [ 357624.453299999237061, 256461.866900000721216 ], [ 357632.828699998557568, 256458.238600000739098 ], [ 357627.295999996364117, 256445.105599999427795 ], [ 357624.868100002408028, 256446.141199998557568 ], [ 357618.337899997830391, 256449.1739999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303190100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94329806, "LATITUDE": 18.33760211, "OBJECTID_1": 11095, "PARCEL_NO_": "105303190100", "Tax_Legal_": "ALTONA 79 CROWN PRINCE QUARTER", "Name": "WILLIAMS, WINSTON M.A., TRUSTEE", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26400, "Improved_V": 78600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.268164891799998, "SHAPE_Area": 207.227587379 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357505.51410000026226, 256447.486299999058247 ], [ 357488.576099999248981, 256447.980999998748302 ], [ 357488.466399997472763, 256460.856800001114607 ], [ 357504.603399999439716, 256459.722300000488758 ], [ 357505.51410000026226, 256447.486299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90900602000001, "LATITUDE": 18.33748264, "OBJECTID_1": 20151, "PARCEL_NO_": "105503042700", "Tax_Legal_": "THOMAS ESTATE 22 6A NEW QTR.", "Name": "BAYNES, VIRGINIA I.", "Address": "PO Box 8403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011403, "Country": "United States", "Land_Value": 24200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.53907543400001, "SHAPE_Area": 960.99152928000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361144.506499998271465, 256465.026299998164177 ], [ 361103.472699999809265, 256454.346900001168251 ], [ 361095.283699996769428, 256469.056400001049042 ], [ 361136.223999999463558, 256490.712000001221895 ], [ 361144.506499998271465, 256465.026299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303200100", "MAP": null, "PARCEL_NAM": "73", "ACRE": null, "LONGITUDE": -64.9428647, "LATITUDE": 18.33758587, "OBJECTID_1": 11101, "PARCEL_NO_": "105303200100", "Tax_Legal_": "ESTATE ALTONA 73 CROWN PRINCE QTR", "Name": "CRUZ-OLIVE, EDWIN & AUREA", "Address": "PO Box 801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8300, "Improved_V": 105400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.477839985200006, "SHAPE_Area": 381.434413334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357555.545000001788139, 256443.2516999989748 ], [ 357542.620600000023842, 256445.8902000002563 ], [ 357526.467399999499321, 256448.924400001764297 ], [ 357528.789200000464916, 256460.342399999499321 ], [ 357557.031700000166893, 256458.040500000119209 ], [ 357555.545000001788139, 256443.2516999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303190200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94312946, "LATITUDE": 18.33754639, "OBJECTID_1": 11096, "PARCEL_NO_": "105303190200", "Tax_Legal_": "ALTONA 76 CROWN PRINCE QTR", "Name": "LAWRENCE GREAUX & DONNA GREAUX (LIFE ESTATE)", "Address": "3716 Altona & Wegunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 36200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.856948408700006, "SHAPE_Area": 425.769381469 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357522.50959999859333, 256440.237199999392033 ], [ 357521.68639999628067, 256435.434999998658895 ], [ 357506.441399998962879, 256435.535100001841784 ], [ 357506.406700000166893, 256437.361099999397993 ], [ 357506.368900001049042, 256441.793800000101328 ], [ 357505.51410000026226, 256447.486299999058247 ], [ 357504.603399999439716, 256459.722300000488758 ], [ 357525.580200001597404, 256458.416299998760223 ], [ 357522.50959999859333, 256440.237199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404132600", "MAP": "MB.B", "PARCEL_NAM": "26 of 10th Street", "ACRE": "0.11", "LONGITUDE": -64.91666225, "LATITUDE": 18.33756286, "OBJECTID_1": 19521, "PARCEL_NO_": "105404132600", "Tax_Legal_": "26 TENTH STREET KINGS QUARTER", "Name": "PRYOR, LEONA", "Address": "PO Box 22252", "City": "Baltimore", "State": "Maryland", "Zip": 21203, "Country": "United States", "Land_Value": 72000, "Improved_V": 11200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.7608141571, "SHAPE_Area": 276.58804619900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360322.821999996900558, 256464.422899998724461 ], [ 360298.58219999819994, 256470.135200001299381 ], [ 360303.3175999969244, 256482.206300001591444 ], [ 360325.969899997115135, 256473.525699999183416 ], [ 360322.821999996900558, 256464.422899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503032000", "MAP": "B9-283-T70", "PARCEL_NAM": "14R-2", "ACRE": ".16", "LONGITUDE": -64.91057895, "LATITUDE": 18.33748252, "OBJECTID_1": 20077, "PARCEL_NO_": "105503032000", "Tax_Legal_": "14R-2 EST. THOMAS NEW QTR", "Name": "SMITH, HENRY", "Address": "9329 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.349274278, "SHAPE_Area": 706.26788740200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360975.36879999935627, 256477.272799998521805 ], [ 360974.399800002574921, 256464.842999998480082 ], [ 360958.717500001192093, 256453.921500001102686 ], [ 360955.879799999296665, 256457.571899998933077 ], [ 360949.391500003635883, 256461.951699998229742 ], [ 360941.310400001704693, 256463.996500000357628 ], [ 360936.46169999986887, 256465.223400000482798 ], [ 360930.808499999344349, 256466.232599999755621 ], [ 360937.955700002610683, 256479.16780000180006 ], [ 360973.579199999570847, 256477.363400001078844 ], [ 360975.36879999935627, 256477.272799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303230200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94199506, "LATITUDE": 18.33755657, "OBJECTID_1": 11127, "PARCEL_NO_": "105303230200", "Tax_Legal_": "ALTONA 67 CROWN PRINCE QUARTER", "Name": "OLIVE, AUREA C. & EDWIN L.", "Address": "PO Box 801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9700, "Improved_V": 27800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.6251903649, "SHAPE_Area": 130.88900085700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357641.732299998402596, 256454.300700001418591 ], [ 357636.190600000321865, 256442.223000001162291 ], [ 357633.764499999582767, 256443.047600001096725 ], [ 357627.295999996364117, 256445.105599999427795 ], [ 357632.828699998557568, 256458.238600000739098 ], [ 357641.732299998402596, 256454.300700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303240100", "MAP": null, "PARCEL_NAM": "72", "ACRE": null, "LONGITUDE": -64.94263316, "LATITUDE": 18.33753291, "OBJECTID_1": 11133, "PARCEL_NO_": "105303240100", "Tax_Legal_": "ALTONA 72 CROWN PRINCE QTR", "Name": "MAGRAS, MARJORIE M.", "Address": "3695 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9100, "Improved_V": 21800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.657296046699997, "SHAPE_Area": 149.56001625900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357574.050499998033047, 256448.062800001353025 ], [ 357574.081600002944469, 256444.417300000786781 ], [ 357571.748199999332428, 256439.8935999982059 ], [ 357567.683899998664856, 256438.966600000858307 ], [ 357567.080700002610683, 256438.044100001454353 ], [ 357566.856700003147125, 256440.600099999457598 ], [ 357566.115199998021126, 256442.389199998229742 ], [ 357559.198700003325939, 256444.456999998539686 ], [ 357562.105999998748302, 256454.796500001102686 ], [ 357571.534299999475479, 256451.373500000685453 ], [ 357574.050499998033047, 256448.062800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94354373, "LATITUDE": 18.33745255, "OBJECTID_1": 11051, "PARCEL_NO_": "105303151800", "Tax_Legal_": "80 ALTONA CROWN PRINCE", "Name": "GREAUX, VINCENT L. & DONNA A.", "Address": "PO Box 306081", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26600, "Improved_V": 188500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.42530186499999, "SHAPE_Area": 754.74251582600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357456.273299999535084, 256446.375900000333786 ], [ 357479.566399998962879, 256452.832899998873472 ], [ 357481.770599998533726, 256453.770300000905991 ], [ 357484.677799999713898, 256448.17960000038147 ], [ 357486.765000000596046, 256438.861600000411272 ], [ 357486.46679999679327, 256433.6435999982059 ], [ 357481.994199998676777, 256427.978300001472235 ], [ 357476.179799996316433, 256424.772900000214577 ], [ 357471.259999997913837, 256421.716600000858307 ], [ 357464.264300003647804, 256423.195199999958277 ], [ 357459.538800001144409, 256423.716400001198053 ], [ 357457.394900001585484, 256423.952899999916553 ], [ 357455.829599998891354, 256423.876299999654293 ], [ 357456.273299999535084, 256446.375900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303221300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94226523, "LATITUDE": 18.3375407, "OBJECTID_1": 11120, "PARCEL_NO_": "105303221300", "Tax_Legal_": "ALTONA & WELGUNST 7(65) CROWN PRINCE QUARTER", "Name": "DANET, SR. , BRUCE M. & THEON T", "Address": "119 Merchant Man Ct", "City": "Williamsburg", "State": "Virginia", "Zip": 23185, "Country": "United States", "Land_Value": 2800, "Improved_V": 12600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.664716401500002, "SHAPE_Area": 67.146008490200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357599.89580000191927, 256443.192499998956919 ], [ 357607.055500000715256, 256454.650199998170137 ], [ 357611.914899997413158, 256452.156899999827147 ], [ 357604.746200002729893, 256441.754599999636412 ], [ 357599.89580000191927, 256443.192499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035200", "MAP": null, "PARCEL_NAM": "14BA", "ACRE": null, "LONGITUDE": -64.91170238, "LATITUDE": 18.33737292, "OBJECTID_1": 20106, "PARCEL_NO_": "105503035200", "Tax_Legal_": "14B EST THOMAS 6 E NEW QTR", "Name": "ELSKOE, DOROTHY", "Address": "PO Box 7566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 318700, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.89919962, "SHAPE_Area": 1292.1192709500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360859.177699998021126, 256482.294199999421835 ], [ 360859.314999997615814, 256472.073699999600649 ], [ 360859.696999996900558, 256443.651900000870228 ], [ 360851.98589999973774, 256442.578299999237061 ], [ 360811.717100001871586, 256436.760299999266863 ], [ 360810.894599996507168, 256438.653400000184774 ], [ 360821.478399999439716, 256470.471599999815226 ], [ 360822.032700002193451, 256472.137899998575449 ], [ 360823.332599997520447, 256476.046000000089407 ], [ 360829.929099999368191, 256477.195799998939037 ], [ 360849.194600000977516, 256480.554000001400709 ], [ 360859.177699998021126, 256482.294199999421835 ] ], [ [ 360830.1875, 256471.404199998825788 ], [ 360843.416599996387959, 256456.852099999785423 ], [ 360857.571900002658367, 256466.244800001382828 ], [ 360849.237499997019768, 256478.018800001591444 ], [ 360836.802000001072884, 256476.43129999935627 ], [ 360830.1875, 256471.404199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503030200", "MAP": null, "PARCEL_NAM": "14RA", "ACRE": null, "LONGITUDE": -64.91003279, "LATITUDE": 18.33738558, "OBJECTID_1": 20062, "PARCEL_NO_": "105503030200", "Tax_Legal_": "EST THOMAS 14RA 6E NEW QTR", "Name": "RAPHUNE APARTMENTS LLC", "Address": "PO Box 12139", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 94700, "Improved_V": 204500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.194870141, "SHAPE_Area": 1523.0519513500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361032.542400002479553, 256450.811099998652935 ], [ 361029.424999997019768, 256438.119899999350309 ], [ 360996.358999997377396, 256438.69370000064373 ], [ 360992.75, 256438.770599998533726 ], [ 360996.28490000218153, 256475.960200000554323 ], [ 361003.557099997997284, 256479.654399998486042 ], [ 361009.420500002801418, 256482.63289999961853 ], [ 361011.483800001442432, 256483.808800000697374 ], [ 361015.338299997150898, 256482.545400001108646 ], [ 361029.085199996829033, 256478.013799998909235 ], [ 361031.633599996566772, 256462.835999999195337 ], [ 361032.542400002479553, 256450.811099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303230300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94190957000001, "LATITUDE": 18.33752357, "OBJECTID_1": 11128, "PARCEL_NO_": "105303230300", "Tax_Legal_": "ALTONA 18 KROMP GADE", "Name": "DANET, MARIE HELEN", "Address": "3678 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7600, "Improved_V": 27100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.764393651100001, "SHAPE_Area": 128.421024711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357645.895099997520447, 256438.925000000745058 ], [ 357636.190600000321865, 256442.223000001162291 ], [ 357641.732299998402596, 256454.300700001418591 ], [ 357650.634099997580051, 256450.573899999260902 ], [ 357645.895099997520447, 256438.925000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404141700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91751757, "LATITUDE": 18.33745969, "OBJECTID_1": 19538, "PARCEL_NO_": "105404141700", "Tax_Legal_": "47 FIRST AVE ESTATE THOMAS", "Name": "ALTON U GEORGE", "Address": "620 Yensid Drive", "City": "Middletown", "State": "Delaware", "Zip": 197092602, "Country": "United States", "Land_Value": 43500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.9492967738, "SHAPE_Area": 407.39169815700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360235.729400001466274, 256464.976700000464916 ], [ 360221.377599999308586, 256445.860800001770258 ], [ 360207.578599996864796, 256456.513599999248981 ], [ 360222.740299999713898, 256475.214000001549721 ], [ 360235.729400001466274, 256464.976700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404132700", "MAP": "MB.B", "PARCEL_NAM": "50 of 1st Ave", "ACRE": "0.14", "LONGITUDE": -64.91698042, "LATITUDE": 18.33745272, "OBJECTID_1": 19522, "PARCEL_NO_": "105404132700", "Tax_Legal_": "50 FIRST AVE EST THOMAS KINGS QTR", "Name": "R & W. ST ANDREWS CHURCH", "Address": "PO Box 7386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 89700, "Improved_V": 63800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.198821798500006, "SHAPE_Area": 472.83689686899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360284.212499998509884, 256453.130100000649691 ], [ 360280.279799997806549, 256441.487700000405312 ], [ 360267.292499996721745, 256451.513900000602007 ], [ 360267.267300002276897, 256454.469000000506639 ], [ 360275.148800000548363, 256475.853999998420477 ], [ 360291.309199996292591, 256471.975499998778105 ], [ 360284.212499998509884, 256453.130100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105304011200", "MAP": "G9-2650-T77", "PARCEL_NAM": "24A", "ACRE": "0.24", "LONGITUDE": -64.94068742, "LATITUDE": 18.33732488, "OBJECTID_1": 11319, "PARCEL_NO_": "105304011200", "Tax_Legal_": "ESTATE HONDURAS 24A", "Name": "TELARG, LLC", "Address": "PO Box 1013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.60062103000001, "SHAPE_Area": 1076.50536511 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357787.264200001955032, 256409.051300000399351 ], [ 357787.510999999940395, 256406.146000001579523 ], [ 357785.3412000015378, 256406.146200001239777 ], [ 357759.040700003504753, 256406.149500001221895 ], [ 357757.187799997627735, 256437.302700001746416 ], [ 357776.461999997496605, 256446.537500001490116 ], [ 357783.645099997520447, 256455.2511 ], [ 357787.264200001955032, 256409.051300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94055038, "LATITUDE": 18.33737962, "OBJECTID_1": 11315, "PARCEL_NO_": "105304010900", "Tax_Legal_": "ALTONA & WELGUNST LOT A KRONP QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63100, "Improved_V": 482500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.418526461300004, "SHAPE_Area": 100.47529378500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357791.897100001573563, 256420.794199999421835 ], [ 357786.479999996721745, 256419.061999998986721 ], [ 357783.645099997520447, 256455.2511 ], [ 357791.897100001573563, 256420.794199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303230400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94216987, "LATITUDE": 18.33750201, "OBJECTID_1": 11129, "PARCEL_NO_": "105303230400", "Tax_Legal_": "66 ALTONA CROWN PRINCE QTR.", "Name": "FRANKE, ROXANNE", "Address": "PO Box 302232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8600, "Improved_V": 75600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.845545256800001, "SHAPE_Area": 165.696921059 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357611.914899997413158, 256452.156899999827147 ], [ 357624.868100002408028, 256446.141199998557568 ], [ 357620.920999996364117, 256436.1875 ], [ 357607.174199998378754, 256440.719000000506639 ], [ 357611.914899997413158, 256452.156899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303251000", "MAP": "D3-390-T82", "PARCEL_NAM": "18-7", "ACRE": "1,829 sq ft", "LONGITUDE": -64.94261633000001, "LATITUDE": 18.33729471, "OBJECTID_1": 11152, "PARCEL_NO_": "105303251000", "Tax_Legal_": "HONDURAS 18-7 KRONPRINDSENS QTR", "Name": "OLIVE, EDWIN L. & AUREA C.", "Address": "PO Box 801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10700, "Improved_V": 11700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.512089336599999, "SHAPE_Area": 168.81921362700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357573.578400000929832, 256427.729699999094009 ], [ 357577.567199997603893, 256413.878899998962879 ], [ 357571.880199998617172, 256415.035500001162291 ], [ 357567.418799996376038, 256414.855399999767542 ], [ 357562.486000001430511, 256413.154800001531839 ], [ 357561.950900003314018, 256414.341600000858307 ], [ 357562.180600002408028, 256417.008000001311302 ], [ 357563.318300001323223, 256427.3108000010252 ], [ 357573.578400000929832, 256427.729699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404133000", "MAP": "MB.B", "PARCEL_NAM": "52A & 54A of 10th Street", "ACRE": "0.23", "LONGITUDE": -64.91674375, "LATITUDE": 18.33740842, "OBJECTID_1": 19524, "PARCEL_NO_": "105404133000", "Tax_Legal_": "FIRST AVE. 52A & 54A EST. THOMAS/NEW QTR.", "Name": "St. Thomas/St. John Federation of Teachers Local 1825", "Address": "PO Box 302607", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032607, "Country": "United States", "Land_Value": 151100, "Improved_V": 243600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.29569051, "SHAPE_Area": 832.14425901899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360311.785300001502037, 256434.779500000178814 ], [ 360284.212499998509884, 256453.130100000649691 ], [ 360291.309199996292591, 256471.975499998778105 ], [ 360298.58219999819994, 256470.135200001299381 ], [ 360322.821999996900558, 256464.422899998724461 ], [ 360311.785300001502037, 256434.779500000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151800", "MAP": null, "PARCEL_NAM": "80", "ACRE": null, "LONGITUDE": -64.94376122, "LATITUDE": 18.3374393, "OBJECTID_1": 11051, "PARCEL_NO_": "105303151800", "Tax_Legal_": "80 ALTONA CROWN PRINCE", "Name": "GREAUX, VINCENT L. & DONNA A.", "Address": "PO Box 306081", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26600, "Improved_V": 188500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.505029877799998, "SHAPE_Area": 395.12000644099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357440.031800001859665, 256423.223799999803305 ], [ 357438.853299997746944, 256441.811500001698732 ], [ 357441.817199997603893, 256446.753899998962879 ], [ 357456.316399998962879, 256448.561299998313189 ], [ 357455.829599998891354, 256423.876299999654293 ], [ 357441.489500001072884, 256423.174400001764297 ], [ 357440.031800001859665, 256423.223799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303200200", "MAP": null, "PARCEL_NAM": "75", "ACRE": null, "LONGITUDE": -64.94296026000001, "LATITUDE": 18.33746108, "OBJECTID_1": 11102, "PARCEL_NO_": "105303200200", "Tax_Legal_": "ALTONA & WELGUNST 75 KRONPRINDSENS QTR", "Name": "GRACE M VANTE FAMILY TRUST", "Address": "PO BOX 305395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21000, "Improved_V": 46800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.216032118499996, "SHAPE_Area": 284.67109026999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357538.723899997770786, 256430.026299998164177 ], [ 357523.411200001835823, 256429.056600000709295 ], [ 357526.467399999499321, 256448.924400001764297 ], [ 357542.620600000023842, 256445.8902000002563 ], [ 357538.723899997770786, 256430.026299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303190300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94329123, "LATITUDE": 18.33749338, "OBJECTID_1": 11098, "PARCEL_NO_": "105303190300", "Tax_Legal_": "ALTONA 78 CROWN PRINCE QUARTER", "Name": "LA PLACE, LILAS & LIVET", "Address": "3646 Turkey Creek Rd", "City": "Plant City", "State": "Florida", "Zip": 33567, "Country": "United States", "Land_Value": 15900, "Improved_V": 24700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.107893476000001, "SHAPE_Area": 197.82965605000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357506.427500002086163, 256436.267700001597404 ], [ 357489.583599999547005, 256435.990100000053644 ], [ 357489.468699999153614, 256437.855799999088049 ], [ 357488.576099999248981, 256447.980999998748302 ], [ 357505.51410000026226, 256447.486299999058247 ], [ 357506.368900001049042, 256441.793800000101328 ], [ 357506.406700000166893, 256437.361099999397993 ], [ 357506.427500002086163, 256436.267700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303200300", "MAP": null, "PARCEL_NAM": "74", "ACRE": null, "LONGITUDE": -64.94281731, "LATITUDE": 18.33743448, "OBJECTID_1": 11103, "PARCEL_NO_": "105303200300", "Tax_Legal_": "ALTONA & WELGUNST 74 & 18B CROWN PRINCE QTR", "Name": "GREEN, SUZY AMBER", "Address": "PO Box 308185", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14500, "Improved_V": 36600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.085121367399999, "SHAPE_Area": 248.16232272299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357551.664499998092651, 256425.488099999725819 ], [ 357538.723899997770786, 256430.026299998164177 ], [ 357542.620600000023842, 256445.8902000002563 ], [ 357555.545000001788139, 256443.2516999989748 ], [ 357554.06360000371933, 256427.829799998551607 ], [ 357551.664499998092651, 256425.488099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303230500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94206362, "LATITUDE": 18.33746309, "OBJECTID_1": 11130, "PARCEL_NO_": "105303230500", "Tax_Legal_": "17A REM ALTONA KRONPRINDSEN'S QTR", "Name": "JOHN EVAN GUMBS REVOCABLE FAMILY TRUST", "Address": "PO Box 454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040454, "Country": "United States", "Land_Value": 6100, "Improved_V": 18000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.997881574600001, "SHAPE_Area": 98.550601688699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357633.764499999582767, 256443.047600001096725 ], [ 357629.815600000321865, 256433.304900001734495 ], [ 357620.920999996364117, 256436.1875 ], [ 357624.868100002408028, 256446.141199998557568 ], [ 357627.295999996364117, 256445.105599999427795 ], [ 357633.764499999582767, 256443.047600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91239477000001, "LATITUDE": 18.33740627, "OBJECTID_1": 19994, "PARCEL_NO_": "105503020300", "Tax_Legal_": "THOMAS 14-83 NEW QTR", "Name": "DAZLE, GEDIS & RUTH", "Address": "9312 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20600, "Improved_V": 112200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.901978004, "SHAPE_Area": 427.56098358499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360779.342299997806549, 256450.849700000137091 ], [ 360755.984399996697903, 256447.703200001269579 ], [ 360750.961300000548363, 256469.404699999839067 ], [ 360766.263300001621246, 256471.640900000929832 ], [ 360772.812700003385544, 256460.084300000220537 ], [ 360779.342299997806549, 256450.849700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404141800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91739287, "LATITUDE": 18.33736661, "OBJECTID_1": 19541, "PARCEL_NO_": "105404141800", "Tax_Legal_": "FIRST AVE 49 ESTATE THOMAS", "Name": "BENJAMIN, GLACILDA", "Address": "PO Box 11764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11200, "Improved_V": 200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.585797606300005, "SHAPE_Area": 392.328640071 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360248.718500003218651, 256454.739399999380112 ], [ 360234.365000002086163, 256435.834600001573563 ], [ 360221.377599999308586, 256445.860800001770258 ], [ 360235.729400001466274, 256464.976700000464916 ], [ 360248.718500003218651, 256454.739399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91261905, "LATITUDE": 18.33737789, "OBJECTID_1": 19993, "PARCEL_NO_": "105503020200", "Tax_Legal_": "14-82 EST THOMAS 6E NEW QTR", "Name": "MARY E GRIFFITH TRUST", "Address": "12713 Nani Dr", "City": "Madison", "State": "Alabama", "Zip": 35756, "Country": "United States", "Land_Value": 35900, "Improved_V": 255500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.313548526700004, "SHAPE_Area": 519.55711910800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360753.576200000941753, 256446.416900001466274 ], [ 360730.222000002861023, 256442.848299998790026 ], [ 360726.800700001418591, 256465.829500000923872 ], [ 360747.739600002765656, 256468.956199999898672 ], [ 360753.576200000941753, 256446.416900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303230600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94196456, "LATITUDE": 18.33743186, "OBJECTID_1": 11131, "PARCEL_NO_": "105303230600", "Tax_Legal_": "ALTONA & WELGUNST 17 CROWN PRINCE QTR", "Name": "CASTELLANOS, JOSE FORTUNATO", "Address": "3676 Altona 17", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6500, "Improved_V": 29800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.437746640299999, "SHAPE_Area": 131.230006616 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357633.764499999582767, 256443.047600001096725 ], [ 357636.190600000321865, 256442.223000001162291 ], [ 357645.895099997520447, 256438.925000000745058 ], [ 357642.738200001418591, 256430.877599999308586 ], [ 357639.518399998545647, 256430.2179000005126 ], [ 357629.815600000321865, 256433.304900001734495 ], [ 357633.764499999582767, 256443.047600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303190500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94314057, "LATITUDE": 18.33736754, "OBJECTID_1": 11100, "PARCEL_NO_": "105303190500", "Tax_Legal_": "ALTONA 77 CROWN PRINCE QUARTER", "Name": "MAGRAS, HARRY L", "Address": "PO Box 301701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9000, "Improved_V": 32600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.240854371899999, "SHAPE_Area": 210.126351215 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357518.979599997401237, 256419.644400000572205 ], [ 357506.719899997115135, 256420.885499998927116 ], [ 357506.441399998962879, 256435.535100001841784 ], [ 357521.68639999628067, 256435.434999998658895 ], [ 357518.979599997401237, 256419.644400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303240400", "MAP": null, "PARCEL_NAM": "70", "ACRE": null, "LONGITUDE": -64.94249732, "LATITUDE": 18.33742675, "OBJECTID_1": 11136, "PARCEL_NO_": "105303240400", "Tax_Legal_": "ALTONA 70 (100) KRONPRINDSENS QTR", "Name": "IMFRE FAMILY TRUST AGREEMENT 2015", "Address": "1291 Blue Dahlia Rd", "City": "Oconomowoc", "State": "Wisconsin", "Zip": 53066, "Country": "United States", "Land_Value": 12800, "Improved_V": 44600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.983575548300003, "SHAPE_Area": 216.041068688 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357587.724399998784065, 256426.929000001400709 ], [ 357575.493500001728535, 256427.807900000363588 ], [ 357574.145900003612041, 256436.860100001096725 ], [ 357574.081299997866154, 256444.203600000590086 ], [ 357590.194399997591972, 256440.353900000452995 ], [ 357587.921599999070168, 256428.951299998909235 ], [ 357587.724399998784065, 256426.929000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503036000", "MAP": null, "PARCEL_NAM": "14B-1", "ACRE": "0.07", "LONGITUDE": -64.91138766, "LATITUDE": 18.33737184, "OBJECTID_1": 20113, "PARCEL_NO_": "105503036000", "Tax_Legal_": "14B-1 EST THOMAS 6E NEW QTR", "Name": "NILES, ORPHA", "Address": "PO Box 1261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15500, "Improved_V": 150300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.238666183299998, "SHAPE_Area": 429.336668772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360863.261699996888638, 256444.148200001567602 ], [ 360859.696999996900558, 256443.651900000870228 ], [ 360859.416799999773502, 256464.497400000691414 ], [ 360859.862000003457069, 256464.596500001847744 ], [ 360880.79559999704361, 256468.3564000017941 ], [ 360880.912500001490116, 256454.636300001293421 ], [ 360874.537500001490116, 256445.718199998140335 ], [ 360863.261699996888638, 256444.148200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303190400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94328601, "LATITUDE": 18.3373853, "OBJECTID_1": 11099, "PARCEL_NO_": "105303190400", "Tax_Legal_": "ALTONA 78A CROUN PRINCE QTR", "Name": "LA PLACE, EMANUEL L", "Address": "3646 Turkey Creek Rd", "City": "Plant City", "State": "Florida", "Zip": 33567, "Country": "United States", "Land_Value": 8600, "Improved_V": 38200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.919500392300002, "SHAPE_Area": 205.162958914 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357506.656800001859665, 256424.208999998867512 ], [ 357490.364200003445148, 256423.318599998950958 ], [ 357489.583599999547005, 256435.990100000053644 ], [ 357506.427500002086163, 256436.267700001597404 ], [ 357506.656800001859665, 256424.208999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303270500", "MAP": "D9-5504-T93", "PARCEL_NAM": "REM 24", "ACRE": "0.16", "LONGITUDE": -64.94095164, "LATITUDE": 18.33726937, "OBJECTID_1": 11205, "PARCEL_NO_": "105303270500", "Tax_Legal_": "REM 24 HONDURAS CROWN PRINCE QUARTER", "Name": "TELARG, LLC", "Address": "PO Box 1013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 105000, "Improved_V": 637700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.638736507, "SHAPE_Area": 718.67480829199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357759.040700003504753, 256406.149500001221895 ], [ 357755.636500000953674, 256406.146000001579523 ], [ 357728.917400002479553, 256407.238699998706579 ], [ 357729.189900003373623, 256410.897999998182058 ], [ 357729.868500001728535, 256425.891199998557568 ], [ 357757.187799997627735, 256437.302700001746416 ], [ 357759.040700003504753, 256406.149500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503043300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90901173, "LATITUDE": 18.33734119, "OBJECTID_1": 20157, "PARCEL_NO_": "105503043300", "Tax_Legal_": "22A EST THOMAS NEW QTR", "Name": "SMITH, BLANKA", "Address": "PO Box 7505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.481136463300004, "SHAPE_Area": 245.01325788299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361114.83839999884367, 256445.362900000065565 ], [ 361103.472699999809265, 256454.346900001168251 ], [ 361144.506499998271465, 256465.026299998164177 ], [ 361114.83839999884367, 256445.362900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503045200", "MAP": "D9-6984-T001", "PARCEL_NAM": "4-A", "ACRE": null, "LONGITUDE": -64.9091659, "LATITUDE": 18.33648254, "OBJECTID_1": 20166, "PARCEL_NO_": "105503045200", "Tax_Legal_": "THOMAS ESTATE 4A 6A NEW QUARTER", "Name": "SMITH, BLANKA", "Address": "PO Box 7505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 89900, "Improved_V": 670900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.53052491099999, "SHAPE_Area": 6047.2608807500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361133.649700000882149, 256414.274999998509884 ], [ 361131.345899999141693, 256400.746199999004602 ], [ 361130.710400000214577, 256380.687100000679493 ], [ 361136.59910000115633, 256352.026599999517202 ], [ 361136.705200001597404, 256339.572900000959635 ], [ 361134.354599997401237, 256331.5320999994874 ], [ 361130.391400001943111, 256323.478100001811981 ], [ 361122.409199997782707, 256313.913600001484156 ], [ 361105.615099996328354, 256297.521899998188019 ], [ 361095.194099999964237, 256290.259399998933077 ], [ 361090.550700001418591, 256290.875199999660254 ], [ 361082.816699996590614, 256310.054900001734495 ], [ 361076.863600000739098, 256359.267499998211861 ], [ 361078.451099999248981, 256398.161299999803305 ], [ 361092.738600000739098, 256420.78319999948144 ], [ 361133.649700000882149, 256414.274999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303262000", "MAP": "F9-3704-T79", "PARCEL_NAM": "4-4", "ACRE": "0.09", "LONGITUDE": -64.94463734, "LATITUDE": 18.33730729, "OBJECTID_1": 11192, "PARCEL_NO_": "105303262000", "Tax_Legal_": "4-4 HONDURAS No. 8C SOUTHSIDE QTR", "Name": "TURBE, RALPH & F, NANCY WATTS, LYDIA SCOTT & OTHERS", "Address": "PO Box 307301", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17900, "Improved_V": 20000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.085281085800005, "SHAPE_Area": 452.72958995300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357346.474399998784065, 256407.870000001043081 ], [ 357342.989100001752377, 256406.024000000208616 ], [ 357341.857400000095367, 256407.935300000011921 ], [ 357340.799099996685982, 256416.13740000128746 ], [ 357342.042999997735023, 256421.450399998575449 ], [ 357345.1875, 256423.29619999974966 ], [ 357354.078400000929832, 256428.515000000596046 ], [ 357365.325400002300739, 256433.462200000882149 ], [ 357371.050499998033047, 256424.009899999946356 ], [ 357372.76519999653101, 256420.886300001293421 ], [ 357346.474399998784065, 256407.870000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9111063, "LATITUDE": 18.33733551, "OBJECTID_1": 20087, "PARCEL_NO_": "105503033100", "Tax_Legal_": "14R-13&14R-14 EST.THOMAS NEW QTR", "Name": "FAHIE, HAROLD & MARY", "Address": "PO Box 306351", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35300, "Improved_V": 127000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.6045382203, "SHAPE_Area": 414.90230096499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360917.075800001621246, 256455.906899999827147 ], [ 360897.385399997234344, 256440.528499998152256 ], [ 360895.537600003182888, 256441.668200001120567 ], [ 360890.676299996674061, 256444.372600000351667 ], [ 360882.598800003528595, 256445.995200000703335 ], [ 360888.968400001525879, 256455.546599999070168 ], [ 360894.571199998259544, 256460.447599999606609 ], [ 360898.592000000178814, 256461.747099999338388 ], [ 360909.882200002670288, 256461.628400001674891 ], [ 360914.750600002706051, 256458.079599998891354 ], [ 360917.075800001621246, 256455.906899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91079186, "LATITUDE": 18.33733165, "OBJECTID_1": 20086, "PARCEL_NO_": "105503033000", "Tax_Legal_": "14R-12 EST THOMAS NEW QTR", "Name": "REY, STENNETH & ALICE", "Address": "PO Box 9256", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.20494115299999, "SHAPE_Area": 464.24087907199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360951.077799998223782, 256453.310699999332428 ], [ 360936.697300001978874, 256437.57209999859333 ], [ 360914.750600002706051, 256458.079599998891354 ], [ 360909.882200002670288, 256461.628400001674891 ], [ 360925.203900001943111, 256461.542700000107288 ], [ 360938.126500003039837, 256459.115299999713898 ], [ 360946.211199998855591, 256456.648400001227856 ], [ 360951.077799998223782, 256453.310699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404141900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91725193000001, "LATITUDE": 18.33725896, "OBJECTID_1": 19542, "PARCEL_NO_": "105404141900", "Tax_Legal_": "51 FIRST AVE ESTATE THOMAS", "Name": "PROSPER, MALCOLM", "Address": "PO Box 1181", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 11200, "Improved_V": 84200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.805141157700007, "SHAPE_Area": 515.47198158699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360265.766199998557568, 256441.368999999016523 ], [ 360251.412600003182888, 256422.464200001209974 ], [ 360239.237000003457069, 256431.863699998706579 ], [ 360234.365000002086163, 256435.834600001573563 ], [ 360248.718500003218651, 256454.739399999380112 ], [ 360265.766199998557568, 256441.368999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404132900", "MAP": "D9-1936-T82", "PARCEL_NAM": "52&54 of 1st Ave", "ACRE": ".08", "LONGITUDE": -64.91681489, "LATITUDE": 18.33724353, "OBJECTID_1": 19523, "PARCEL_NO_": "105404132900", "Tax_Legal_": "54&52 FIRST AVE KINGS QTR", "Name": "LAPLANTE, SERGIO,ABRAHAM & MOISE", "Address": "PO Box 308117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57600, "Improved_V": 81100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.9541686341, "SHAPE_Area": 434.54064495199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360280.279799997806549, 256441.487700000405312 ], [ 360284.212499998509884, 256453.130100000649691 ], [ 360311.785300001502037, 256434.779500000178814 ], [ 360308.649999998509884, 256424.199200000613928 ], [ 360307.049999997019768, 256422.708399999886751 ], [ 360304.632799997925758, 256422.47749999910593 ], [ 360280.279799997806549, 256441.487700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9109323, "LATITUDE": 18.3372171, "OBJECTID_1": 20070, "PARCEL_NO_": "105503031100", "Tax_Legal_": "14RH EST THOMAS 6E NEW QTR", "Name": "SHOY, ALICE & ALFORD R", "Address": "PO Box 9256", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21000, "Improved_V": 204900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.149104656700004, "SHAPE_Area": 530.10822898599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360901.954000003635883, 256436.795400001108646 ], [ 360917.075800001621246, 256455.906899999827147 ], [ 360936.697300001978874, 256437.57209999859333 ], [ 360912.612199999392033, 256425.131499998271465 ], [ 360907.723999999463558, 256431.002199999988079 ], [ 360901.954000003635883, 256436.795400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303251400", "MAP": "D3-390-T82", "PARCEL_NAM": "18-4", "ACRE": null, "LONGITUDE": -64.94292419, "LATITUDE": 18.33726933, "OBJECTID_1": 11155, "PARCEL_NO_": "105303251400", "Tax_Legal_": "18-4 HONDURAS CROWN PRINCE QUARTER", "Name": "QUETEL, ALENA E. & LYNETTE T.", "Address": "PO Box 654", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 35400, "Improved_V": 31500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.206809712500004, "SHAPE_Area": 517.25324091899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357548.561499997973442, 256411.108399998396635 ], [ 357546.089500002563, 256406.644000001251698 ], [ 357535.704499997198582, 256406.577799998223782 ], [ 357522.87219999730587, 256409.422100000083447 ], [ 357523.344999998807907, 256414.297499999403954 ], [ 357523.930600002408028, 256420.336199998855591 ], [ 357524.195200003683567, 256422.849700000137091 ], [ 357524.258900001645088, 256428.912000000476837 ], [ 357538.75450000166893, 256426.437899999320507 ], [ 357538.723899997770786, 256430.026299998164177 ], [ 357551.691399998962879, 256422.321899998933077 ], [ 357548.561499997973442, 256411.108399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303261400", "MAP": null, "PARCEL_NAM": "4A", "ACRE": null, "LONGITUDE": -64.94432149, "LATITUDE": 18.33727915, "OBJECTID_1": 11185, "PARCEL_NO_": "105303261400", "Tax_Legal_": "HONDURAS 4A CROWN PRINCE ST THOS", "Name": "CERGE (LIFE ESTATE), INGER", "Address": "P O BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 63900, "Improved_V": 175400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.020102224599995, "SHAPE_Area": 210.63248479399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357400.952399998903275, 256416.2331000007689 ], [ 357388.943999998271465, 256406.002300001680851 ], [ 357384.025200001895428, 256415.461199998855591 ], [ 357382.401799999177456, 256416.714499998837709 ], [ 357380.744199998676777, 256421.978300001472235 ], [ 357378.296499997377396, 256425.335799999535084 ], [ 357379.07940000295639, 256428.086399998515844 ], [ 357380.693899996578693, 256427.8885000012815 ], [ 357400.952399998903275, 256416.2331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303152000", "MAP": "F9-354-T58", "PARCEL_NAM": "4E", "ACRE": ".09", "LONGITUDE": -64.94395121, "LATITUDE": 18.33727408, "OBJECTID_1": 11053, "PARCEL_NO_": "105303152000", "Tax_Legal_": "HONDURAS 4E CROWN PRINCE QTR", "Name": "O'GARRO, REGINALD & INEZ", "Address": "PO Box 821", "City": "BOWIE", "State": "Maryland", "Zip": 20720, "Country": "United States", "Land_Value": 61200, "Improved_V": 146200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.184650240899998, "SHAPE_Area": 386.64155916099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357433.913699999451637, 256423.431099999696016 ], [ 357441.489500001072884, 256423.174400001764297 ], [ 357442.059799998998642, 256406.126800000667572 ], [ 357417.906499996781349, 256413.838700000196695 ], [ 357409.803800001740456, 256418.416400000452995 ], [ 357408.173199996352196, 256420.513999998569489 ], [ 357408.952600002288818, 256423.686799999326468 ], [ 357433.913699999451637, 256423.431099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250200", "MAP": null, "PARCEL_NAM": "58", "ACRE": "5,939 sq ft", "LONGITUDE": -64.94231026, "LATITUDE": 18.33723376, "OBJECTID_1": 11141, "PARCEL_NO_": "105303250200", "Tax_Legal_": "HONDURAS #58 CROWN PRINCE QTR", "Name": "FRENCHTOWN VILLAS INC", "Address": "PO Box 12232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 89100, "Improved_V": 429300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.262337145, "SHAPE_Area": 471.92122320800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357612.245800003409386, 256413.318300001323223 ], [ 357611.918499998748302, 256408.440600000321865 ], [ 357602.041799999773502, 256408.855700001120567 ], [ 357601.817699998617172, 256406.900199998170137 ], [ 357601.866200000047684, 256401.201099999248981 ], [ 357602.704899996519089, 256397.40819999948144 ], [ 357602.722900003194809, 256395.297499999403954 ], [ 357602.820500001311302, 256394.049199998378754 ], [ 357596.288599997758865, 256393.344900000840425 ], [ 357595.773500002920628, 256393.186200000345707 ], [ 357596.043499998748302, 256395.211399998515844 ], [ 357594.826399996876717, 256408.440600000321865 ], [ 357591.12219999730587, 256409.234299998730421 ], [ 357591.278099998831749, 256413.568900000303984 ], [ 357592.606700003147125, 256426.785500001162291 ], [ 357595.620099999010563, 256426.696899998933077 ], [ 357603.226199999451637, 256426.314500000327826 ], [ 357603.322700001299381, 256426.309599999338388 ], [ 357613.752300001680851, 256425.785199999809265 ], [ 357612.245800003409386, 256413.318300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503032900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91064417, "LATITUDE": 18.33718877, "OBJECTID_1": 20085, "PARCEL_NO_": "105503032900", "Tax_Legal_": "14R-11 EST THOMAS 6E NEW QTR", "Name": "JOSEPH, CLAYTON,WAYNE,THELMA BLYDEN,ENA FRASER FOY & OTHER", "Address": "PO Box 306223", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.362964770999994, "SHAPE_Area": 439.37127354500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360962.01070000231266, 256435.041799999773502 ], [ 360942.489699997007847, 256419.844900000840425 ], [ 360941.664599999785423, 256422.414000000804663 ], [ 360936.697300001978874, 256437.57209999859333 ], [ 360951.077799998223782, 256453.310699999332428 ], [ 360953.512999996542931, 256451.430799998342991 ], [ 360960.085699997842312, 256437.130199998617172 ], [ 360962.01070000231266, 256435.041799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503043400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90920243, "LATITUDE": 18.33725412, "OBJECTID_1": 20158, "PARCEL_NO_": "105503043400", "Tax_Legal_": "23A EST THOMAS NEW QTR", "Name": "SMITH, BLANKA", "Address": "PO Box 7505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.384249349399994, "SHAPE_Area": 192.67483751500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361103.472699999809265, 256454.346900001168251 ], [ 361114.83839999884367, 256445.362900000065565 ], [ 361084.279399998486042, 256435.613600000739098 ], [ 361103.472699999809265, 256454.346900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503020600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91233374, "LATITUDE": 18.33724501, "OBJECTID_1": 19997, "PARCEL_NO_": "105503020600", "Tax_Legal_": "EST THOMAS 14-85 NEW QTR. 6E", "Name": "KEITH HUSBAND, ALDA A. GARFIELD & GLORIA WEBB", "Address": "P.O. BOX 2396", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.387929166800006, "SHAPE_Area": 410.37126370499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360786.697999998927116, 256439.299699999392033 ], [ 360760.172399997711182, 256429.372299998998642 ], [ 360755.984399996697903, 256447.703200001269579 ], [ 360779.342299997806549, 256450.849700000137091 ], [ 360786.697999998927116, 256439.299699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303252200", "MAP": "D3-390-T82", "PARCEL_NAM": "18-2", "ACRE": "3,685 sq ft", "LONGITUDE": -64.94343958, "LATITUDE": 18.3371466, "OBJECTID_1": 11162, "PARCEL_NO_": "105303252200", "Tax_Legal_": "HONDURAS 18-1 SOUTHSIDE QTR.", "Name": "CADET, LUZ C.", "Address": "PO Box 305441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.777337549400002, "SHAPE_Area": 347.62105257500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357468.37610000371933, 256399.246599998325109 ], [ 357469.207999996840954, 256403.2043999992311 ], [ 357470.901299998164177, 256408.496100001037121 ], [ 357473.388400003314018, 256413.840700000524521 ], [ 357475.120200000703335, 256416.6114999987185 ], [ 357475.994000002741814, 256416.235599998384714 ], [ 357478.36259999871254, 256415.216499999165535 ], [ 357479.579700000584126, 256406.220600001513958 ], [ 357499.406999997794628, 256407.119199998676777 ], [ 357499.4628000035882, 256400.574000000953674 ], [ 357499.74099999666214, 256398.812300000339746 ], [ 357489.845600001513958, 256397.7010000012815 ], [ 357478.627199999988079, 256396.748500000685453 ], [ 357472.383000001311302, 256396.113499999046326 ], [ 357469.366800002753735, 256395.690200001001358 ], [ 357468.8462999984622, 256397.579199999570847 ], [ 357468.37610000371933, 256399.246599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91257976, "LATITUDE": 18.33718258, "OBJECTID_1": 19995, "PARCEL_NO_": "105503020400", "Tax_Legal_": "ESTATE THOMAS 14-84 NEW QTR", "Name": "DALY, EDRIS V. B. & SAMUEL D.", "Address": "PO Box 304541", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27500, "Improved_V": 134900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.995180963799996, "SHAPE_Area": 513.59947541500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360758.584899999201298, 256426.403999999165535 ], [ 360733.626999996602535, 256421.766800001263618 ], [ 360730.222000002861023, 256442.848299998790026 ], [ 360753.576200000941753, 256446.416900001466274 ], [ 360758.584899999201298, 256426.403999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404142000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91711925, "LATITUDE": 18.33715956, "OBJECTID_1": 19543, "PARCEL_NO_": "105404142000", "Tax_Legal_": "FIRST AVE 53 ESTATE THOMAS", "Name": "FRETT, MARILYN", "Address": "9053 FIRST AVE TRLR2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11200, "Improved_V": 4900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.436669999200006, "SHAPE_Area": 331.73481429700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360277.131899997591972, 256432.385000001639128 ], [ 360261.966600000858307, 256414.106800001114607 ], [ 360251.412600003182888, 256422.464200001209974 ], [ 360265.766199998557568, 256441.368999999016523 ], [ 360277.131899997591972, 256432.385000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250400", "MAP": "F9-749-T61", "PARCEL_NAM": "12", "ACRE": "1,890 sq ft", "LONGITUDE": -64.94260007, "LATITUDE": 18.33717727, "OBJECTID_1": 11143, "PARCEL_NO_": "105303250400", "Tax_Legal_": "HONDURAS 12 CROWN PRINCE QUARTER", "Name": "OLIVE, EDWIN & AUREA CRUZ-OLIVE", "Address": "PO Box 801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12000, "Improved_V": 35600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.333428226199999, "SHAPE_Area": 199.542546461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357577.63910000026226, 256405.435699999332428 ], [ 357577.663099996745586, 256398.850099999457598 ], [ 357574.024700000882149, 256399.545099999755621 ], [ 357571.766500003635883, 256400.030000001192093 ], [ 357565.439999997615814, 256400.688099998980761 ], [ 357565.434399999678135, 256403.147599998861551 ], [ 357562.302100002765656, 256411.558499999344349 ], [ 357561.86259999871254, 256412.738699998706579 ], [ 357562.486000001430511, 256413.154800001531839 ], [ 357567.418799996376038, 256414.855399999767542 ], [ 357571.880199998617172, 256415.035500001162291 ], [ 357577.567199997603893, 256413.878899998962879 ], [ 357577.63910000026226, 256405.435699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303261300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94419875, "LATITUDE": 18.33715022, "OBJECTID_1": 11184, "PARCEL_NO_": "105303261300", "Tax_Legal_": "4-C ESTATE HONDURAS CROWN PRINCE QTR", "Name": "THE DIOCESE OF ST THOMAS", "Address": "PO Box 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 126200, "Improved_V": 235800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.509813330699998, "SHAPE_Area": 415.47650740300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357417.146999999880791, 256408.344099998474121 ], [ 357399.595100000500679, 256386.246700000017881 ], [ 357388.943999998271465, 256406.002300001680851 ], [ 357400.952399998903275, 256416.2331000007689 ], [ 357412.294699996709824, 256409.993099998682737 ], [ 357417.146999999880791, 256408.344099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303270100", "MAP": "G9-2333-T74", "PARCEL_NAM": "25", "ACRE": null, "LONGITUDE": -64.94161455, "LATITUDE": 18.33715284, "OBJECTID_1": 11200, "PARCEL_NO_": "105303270100", "Tax_Legal_": "2,26-1,27-1 & 25 ESTATE HONDURAS KRONPRINDSENS QTR.", "Name": "NORMANDIE INVESTMENT PARTNERS LLC", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 350400, "Improved_V": 189600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.857864756600001, "SHAPE_Area": 187.613604377 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357681.881599999964237, 256412.964400000870228 ], [ 357680.11089999973774, 256398.041799999773502 ], [ 357668.155199997127056, 256397.276000000536442 ], [ 357670.732799999415874, 256414.659400001168251 ], [ 357681.881599999964237, 256412.964400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91226953, "LATITUDE": 18.33707783, "OBJECTID_1": 19998, "PARCEL_NO_": "105503020700", "Tax_Legal_": "14-87 ESTATE THOMAS NO 6E NEW QTR", "Name": "MCKAY, LANCE & STACEY", "Address": "14-2BA Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.04041926799999, "SHAPE_Area": 734.87610392299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360799.348300002515316, 256430.172600001096725 ], [ 360767.325699999928474, 256400.441599998623133 ], [ 360765.181100003421307, 256409.359400000423193 ], [ 360760.172399997711182, 256429.372299998998642 ], [ 360786.697999998927116, 256439.299699999392033 ], [ 360789.151100002229214, 256435.309000000357628 ], [ 360797.255599997937679, 256430.520199999213219 ], [ 360799.348300002515316, 256430.172600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303251800", "MAP": "D3-390-T82", "PARCEL_NAM": "18-3", "ACRE": "4,024 sq ft", "LONGITUDE": -64.94320481, "LATITUDE": 18.3372027, "OBJECTID_1": 11159, "PARCEL_NO_": "105303251800", "Tax_Legal_": "HONDURAS 18-3 KRONPRINDSENS QTR", "Name": "OLIVE, EUGENE & IRMA", "Address": "P.O. BOX 5302", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25400, "Improved_V": 53500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.658427818099995, "SHAPE_Area": 353.80277746399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357493.642599999904633, 256420.572000000625849 ], [ 357493.847900003194809, 256420.958200000226498 ], [ 357494.456900000572205, 256420.789799999445677 ], [ 357495.666400000452995, 256420.455299999564886 ], [ 357502.492700003087521, 256418.867800001055002 ], [ 357504.956600002944469, 256418.258400000631809 ], [ 357507.413900002837181, 256417.650699999183416 ], [ 357513.922700002789497, 256417.015700001269579 ], [ 357518.449799999594688, 256416.247099999338388 ], [ 357517.149499997496605, 256406.840500000864267 ], [ 357517.180100001394749, 256403.252199999988079 ], [ 357517.194499999284744, 256401.563400000333786 ], [ 357499.74099999666214, 256398.812300000339746 ], [ 357499.4628000035882, 256400.574000000953674 ], [ 357499.375299997627735, 256410.844399999827147 ], [ 357496.460100002586842, 256413.629000000655651 ], [ 357493.867200002074242, 256418.550299998372793 ], [ 357493.642599999904633, 256420.572000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303251200", "MAP": "D3-390-T82", "PARCEL_NAM": "18-8", "ACRE": "1,890 sq ft", "LONGITUDE": -64.94271854, "LATITUDE": 18.33713233, "OBJECTID_1": 11154, "PARCEL_NO_": "105303251200", "Tax_Legal_": "HONDURAS 18-8 CROWN PRINCE QTR.", "Name": "TURBE, PHILLIP", "Address": "PO Box 307011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 15700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.752577637400002, "SHAPE_Area": 179.028447516 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357565.439999997615814, 256400.688099998980761 ], [ 357564.790200002491474, 256399.20890000090003 ], [ 357562.392899997532368, 256396.656100001186132 ], [ 357557.583800002932549, 256393.23930000141263 ], [ 357555.981899999082088, 256391.959600001573563 ], [ 357551.039800003170967, 256404.162599999457598 ], [ 357551.014600001275539, 256407.11769999936223 ], [ 357562.302100002765656, 256411.558499999344349 ], [ 357565.434399999678135, 256403.147599998861551 ], [ 357565.439999997615814, 256400.688099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91007311, "LATITUDE": 18.33710499, "OBJECTID_1": 20063, "PARCEL_NO_": "105503030300", "Tax_Legal_": "14RB EST THOMAS NEW QTR", "Name": "SHOY, DOROTHY", "Address": "217 Old Haverstraw", "City": "Congers", "State": "New York", "Zip": 10920, "Country": "United States", "Land_Value": 49500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.320355478, "SHAPE_Area": 743.87649254300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360990.739900000393391, 256417.622099999338388 ], [ 360992.75, 256438.770599998533726 ], [ 360996.358999997377396, 256438.69370000064373 ], [ 361029.424999997019768, 256438.119899999350309 ], [ 361024.704000003635883, 256424.360199999064207 ], [ 361023.161499999463558, 256416.114900000393391 ], [ 360996.542400002479553, 256417.163600001484156 ], [ 360990.739900000393391, 256417.622099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404142100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91700252, "LATITUDE": 18.33706716, "OBJECTID_1": 19546, "PARCEL_NO_": "105404142100", "Tax_Legal_": "FIRST AVE 55 ESTATE THOMAS", "Name": "FRETT, MARILYN", "Address": "9053 FIRST AVE TRLR2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.639819923499999, "SHAPE_Area": 429.093733982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360290.932700000703335, 256421.521000001579523 ], [ 360276.579099997878075, 256402.616200000047684 ], [ 360261.966600000858307, 256414.106800001114607 ], [ 360277.131899997591972, 256432.385000001639128 ], [ 360290.932700000703335, 256421.521000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404150200", "MAP": "D9-7270-T003", "PARCEL_NAM": "3", "ACRE": "1.951", "LONGITUDE": -64.91759127, "LATITUDE": 18.33661855, "OBJECTID_1": 19552, "PARCEL_NO_": "105404150200", "Tax_Legal_": "ESTATE THOMAS 3,7, & 8 KINGS QTR", "Name": "ST. THOMAS PROPERTIES, LLC", "Address": "8000 NISKY CENTER", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1074200, "Improved_V": 3365000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 414.63736800499998, "SHAPE_Area": 9749.8506413199993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360132.340300001204014, 256359.367600001394749 ], [ 360140.387199997901917, 256364.18299999833107 ], [ 360241.520999997854233, 256430.100499998778105 ], [ 360251.412600003182888, 256422.464200001209974 ], [ 360261.966600000858307, 256414.106800001114607 ], [ 360276.579099997878075, 256402.616200000047684 ], [ 360292.0033999979496, 256390.499099999666214 ], [ 360247.231100000441074, 256345.380800001323223 ], [ 360207.303900003433228, 256299.457800000905991 ], [ 360132.340300001204014, 256359.367600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91083583, "LATITUDE": 18.33705745, "OBJECTID_1": 20071, "PARCEL_NO_": "105503031200", "Tax_Legal_": "14RJ EST THOMAS 6E NEW QTR", "Name": "SMITH, VERNA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29400, "Improved_V": 150300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.533609800099995, "SHAPE_Area": 516.83668439099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360942.489699997007847, 256419.844900000840425 ], [ 360923.05179999768734, 256404.712699998170137 ], [ 360922.446199998259544, 256406.635800000280142 ], [ 360918.333700001239777, 256416.101300001144409 ], [ 360916.708499997854233, 256417.565699998289347 ], [ 360914.246399998664856, 256422.611800000071526 ], [ 360912.612199999392033, 256425.131499998271465 ], [ 360936.697300001978874, 256437.57209999859333 ], [ 360941.664599999785423, 256422.414000000804663 ], [ 360942.489699997007847, 256419.844900000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303261200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94405984, "LATITUDE": 18.33701436, "OBJECTID_1": 11183, "PARCEL_NO_": "105303261200", "Tax_Legal_": "HONDURAS 4L CROWN PRINCE QTR", "Name": "ADINA WILLIAMS FAMILY REVOCABLE TRUST", "Address": "3582 Honduras 5B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62400, "Improved_V": 62900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.496424527, "SHAPE_Area": 854.86626008799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357429.4358000010252, 256385.646499998867512 ], [ 357409.472199998795986, 256362.684999998658895 ], [ 357408.637199997901917, 256366.055700000375509 ], [ 357407.008299998939037, 256367.942200001329184 ], [ 357406.171499997377396, 256371.523899998515844 ], [ 357402.075199998915195, 256379.089800000190735 ], [ 357399.595100000500679, 256386.246700000017881 ], [ 357417.146999999880791, 256408.344099998474121 ], [ 357435.749700002372265, 256401.741300001740456 ], [ 357429.4358000010252, 256385.646499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503032800", "MAP": "B9-283-T70", "PARCEL_NAM": "14R-10", "ACRE": null, "LONGITUDE": -64.91053131, "LATITUDE": 18.33696172, "OBJECTID_1": 20084, "PARCEL_NO_": "105503032800", "Tax_Legal_": "14R-10 EST THOMAS NEW QTR", "Name": "JOSEPH, CLAYTON,WAYNE,THELMA BLYDEN,ENA FRASER FOY & OTHER", "Address": "PO Box 306223", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42500, "Improved_V": 175900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.71511096099999, "SHAPE_Area": 935.58983278000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360972.45440000295639, 256393.96000000089407 ], [ 360958.962300002574921, 256387.069499999284744 ], [ 360950.548500001430511, 256403.810400001704693 ], [ 360942.489699997007847, 256419.844900000840425 ], [ 360962.01070000231266, 256435.041799999773502 ], [ 360971.480200000107288, 256424.769000001251698 ], [ 360973.139600001275539, 256419.294100001454353 ], [ 360974.010600000619888, 256411.701900001615286 ], [ 360972.45440000295639, 256393.96000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035200", "MAP": null, "PARCEL_NAM": "14BA-2", "ACRE": null, "LONGITUDE": -64.91171071, "LATITUDE": 18.33709212, "OBJECTID_1": 20106, "PARCEL_NO_": "105503035200", "Tax_Legal_": "14B EST THOMAS 6 E NEW QTR", "Name": "ELSKOE, DOROTHY", "Address": "PO Box 7566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 318700, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.821513571, "SHAPE_Area": 454.35640984499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360807.253200002014637, 256406.337400000542402 ], [ 360829.70610000193119, 256431.462699998170137 ], [ 360856.080399997532368, 256435.223499998450279 ], [ 360865.800399996340275, 256436.24100000038743 ], [ 360869.901500001549721, 256436.637899998575449 ], [ 360807.253200002014637, 256406.337400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503021600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91120836, "LATITUDE": 18.3370888, "OBJECTID_1": 20007, "PARCEL_NO_": "105503021600", "Tax_Legal_": "14QR EST THOMAS 6E NEW QTR", "Name": "HENDRICKS, DELVIN SR., DENISE FELTON, I. LETTSOME & I. SMITH", "Address": "PO Box 11543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.821587424300006, "SHAPE_Area": 401.60548912399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360907.020199999213219, 256418.964099999517202 ], [ 360881.239699997007847, 256416.219900000840425 ], [ 360879.598300002515316, 256419.583999998867512 ], [ 360872.267800003290176, 256428.178800001740456 ], [ 360882.701300002634525, 256433.963799998164177 ], [ 360889.14639999717474, 256434.64979999884963 ], [ 360895.618500001728535, 256432.169599998742342 ], [ 360902.938299998641014, 256424.841299999505281 ], [ 360907.020199999213219, 256418.964099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91185836, "LATITUDE": 18.33690504, "OBJECTID_1": 20003, "PARCEL_NO_": "105503021200", "Tax_Legal_": "14QJ EST THOMAS 6E NEW QTR", "Name": "Eugene,Vernon,Gilroy,Bernard Thomas & C Nibbs", "Address": "PO Box 10470", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 152600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.45298916799999, "SHAPE_Area": 1005.09459946 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360818.595499999821186, 256386.576299998909235 ], [ 360798.522200003266335, 256376.490600001066923 ], [ 360789.471199996769428, 256397.736999999731779 ], [ 360869.901500001549721, 256436.637899998575449 ], [ 360872.150499999523163, 256436.10869999974966 ], [ 360871.753600001335144, 256433.330600000917912 ], [ 360869.240000002086163, 256430.684799998998642 ], [ 360860.641099996864796, 256425.922200001776218 ], [ 360822.937899999320507, 256404.094099998474121 ], [ 360816.853399999439716, 256401.760800000280142 ], [ 360816.140600003302097, 256390.778099998831749 ], [ 360818.595499999821186, 256386.576299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250800", "MAP": "D3-390-T82", "PARCEL_NAM": "18-10", "ACRE": "3,338 sq ft", "LONGITUDE": -64.94244438, "LATITUDE": 18.33711122, "OBJECTID_1": 11150, "PARCEL_NO_": "105303250800", "Tax_Legal_": "HONDURAS 18-10 CROWN PRINCE", "Name": "STANLEY OLIVE AND ERMIN OLIVE AMENDED AND RESTATED", "Address": "PO Box 304583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21100, "Improved_V": 54000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.3559303933, "SHAPE_Area": 336.45791022600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357579.829499997198582, 256399.282699998468161 ], [ 357580.059799998998642, 256405.244500000029802 ], [ 357579.999700002372265, 256406.83669999986887 ], [ 357579.825699999928474, 256411.443900000303984 ], [ 357586.307800002396107, 256412.162200000137091 ], [ 357591.278099998831749, 256413.568900000303984 ], [ 357591.12219999730587, 256409.234299998730421 ], [ 357594.826399996876717, 256408.440600000321865 ], [ 357596.043499998748302, 256395.211399998515844 ], [ 357595.773500002920628, 256393.186200000345707 ], [ 357594.191399998962879, 256391.666000001132488 ], [ 357586.253899998962879, 256388.067600000649691 ], [ 357582.496799997985363, 256386.532999999821186 ], [ 357581.722300000488758, 256388.8564000017941 ], [ 357580.962200000882149, 256391.136799998581409 ], [ 357579.829499997198582, 256399.282699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303261100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94382542, "LATITUDE": 18.33702242, "OBJECTID_1": 11182, "PARCEL_NO_": "105303261100", "Tax_Legal_": "HONDURAS 4K CROWN PRINCE QTR", "Name": "BRYAN, LEO & MARIE", "Address": "4K-3564 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17500, "Improved_V": 26600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.803378196799997, "SHAPE_Area": 314.94972314900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357455.231799997389317, 256393.4358000010252 ], [ 357444.820500001311302, 256378.173099998384714 ], [ 357429.4358000010252, 256385.646499998867512 ], [ 357434.909199997782707, 256399.598799999803305 ], [ 357455.231799997389317, 256393.4358000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503021500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91142238, "LATITUDE": 18.33701291, "OBJECTID_1": 20006, "PARCEL_NO_": "105503021500", "Tax_Legal_": "14QM EST THOMAS NEW QTR", "Name": "HENDRICKS, DELVIN SR., DENISE FELTON, I. LETTSOME & I. SMITH", "Address": "PO Box 11543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 212600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.937593866699999, "SHAPE_Area": 313.17961958699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360869.197200000286102, 256409.999699998646975 ], [ 360861.19879999756813, 256402.334800001233816 ], [ 360854.613499999046326, 256418.112900000065565 ], [ 360872.267800003290176, 256428.178800001740456 ], [ 360879.598300002515316, 256419.583999998867512 ], [ 360869.197200000286102, 256409.999699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91254216, "LATITUDE": 18.33699466, "OBJECTID_1": 19999, "PARCEL_NO_": "105503020800", "Tax_Legal_": "THOMAS ESTATE 14-86 No.6A NEW QTR.", "Name": "ABDELGANI, NADIR", "Address": "14-68 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29800, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.817752530600004, "SHAPE_Area": 566.10881877600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360763.602600000798702, 256405.335700001567602 ], [ 360736.223999999463558, 256400.889800000935793 ], [ 360733.626999996602535, 256421.766800001263618 ], [ 360758.584899999201298, 256426.403999999165535 ], [ 360763.602600000798702, 256405.335700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404142200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91685838, "LATITUDE": 18.3369585, "OBJECTID_1": 19550, "PARCEL_NO_": "105404142200", "Tax_Legal_": "LOT NO 57 1ST AVENUE ESTATE THOMAS # 6A NEW QUARTERS", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.674324370700006, "SHAPE_Area": 489.77107597100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360276.579099997878075, 256402.616200000047684 ], [ 360290.932700000703335, 256421.521000001579523 ], [ 360304.735299997031689, 256410.446100000292063 ], [ 360305.595600001513958, 256404.120299998670816 ], [ 360292.0033999979496, 256390.499099999666214 ], [ 360276.579099997878075, 256402.616200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303251100", "MAP": "D3-390-T82", "PARCEL_NAM": "18-9", "ACRE": "3,200 sq ft", "LONGITUDE": -64.94264208, "LATITUDE": 18.33702286, "OBJECTID_1": 11153, "PARCEL_NO_": "105303251100", "Tax_Legal_": "HONDURAS 18-9 CROWN PRINCE QTR", "Name": "OLIVE, EDWIN L. & AUREA C.", "Address": "PO Box 801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18700, "Improved_V": 16800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.210076353100007, "SHAPE_Area": 281.68588232299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357576.313699997961521, 256384.245000001043081 ], [ 357559.406800001859665, 256380.752500001341105 ], [ 357555.981899999082088, 256391.959600001573563 ], [ 357557.583800002932549, 256393.23930000141263 ], [ 357560.511799998581409, 256395.319699998944998 ], [ 357562.392899997532368, 256396.656100001186132 ], [ 357564.23369999974966, 256398.616300001740456 ], [ 357564.790200002491474, 256399.20890000090003 ], [ 357565.439999997615814, 256400.688099998980761 ], [ 357571.766500003635883, 256400.030000001192093 ], [ 357574.024700000882149, 256399.545099999755621 ], [ 357574.462999999523163, 256394.126499999314547 ], [ 357575.121299996972084, 256390.508099999278784 ], [ 357575.732600003480911, 256387.148400001227856 ], [ 357576.313699997961521, 256384.245000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303261000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94370028, "LATITUDE": 18.33696227, "OBJECTID_1": 11181, "PARCEL_NO_": "105303261000", "Tax_Legal_": "HONDURAS 4-1 KROMP QTR", "Name": "MAGRAS FAMILY TRUST", "Address": "78 Applewood Dr", "City": "Chicopee", "State": "Massachusetts", "Zip": 1022, "Country": "United States", "Land_Value": 14800, "Improved_V": 45100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.243845171499999, "SHAPE_Area": 223.44756006599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357465.550899997353554, 256389.413699999451637 ], [ 357452.948399998247623, 256370.6402000002563 ], [ 357444.820500001311302, 256378.173099998384714 ], [ 357455.231799997389317, 256393.4358000010252 ], [ 357465.550899997353554, 256389.413699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303270700", "MAP": "D3-390-T82", "PARCEL_NAM": "19-13", "ACRE": "1,482 sq ft", "LONGITUDE": -64.94193588, "LATITUDE": 18.33697261, "OBJECTID_1": 11208, "PARCEL_NO_": "105303270700", "Tax_Legal_": "HONDURAS 19-13 CROWN PRINCE QTR.", "Name": "HUMPHREY, DENISE R.", "Address": "3529 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9400, "Improved_V": 23200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.931707864700002, "SHAPE_Area": 171.32909361399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357634.291400000452995, 256381.201499998569489 ], [ 357632.67509999871254, 256381.610399998724461 ], [ 357635.1621999964118, 256393.136100001633167 ], [ 357637.367299996316433, 256392.478399999439716 ], [ 357649.246699996292591, 256388.544799998402596 ], [ 357650.464199997484684, 256387.848200000822544 ], [ 357647.48759999871254, 256378.521600000560284 ], [ 357646.407600000500679, 256378.767499998211861 ], [ 357634.291400000452995, 256381.201499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503031300", "MAP": null, "PARCEL_NAM": "14RK", "ACRE": null, "LONGITUDE": -64.91076202000001, "LATITUDE": 18.33688928, "OBJECTID_1": 20072, "PARCEL_NO_": "105503031300", "Tax_Legal_": "14 RK EST THOMAS 6 E NEW QTR", "Name": "TROTMAN, ELVIS & ERNEST", "Address": "6148 Peacock Ct", "City": "Woodbridge", "State": "Virginia", "Zip": 22193, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.365941373599995, "SHAPE_Area": 485.34224779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360951.525100000202656, 256401.867199998348951 ], [ 360925.838699996471405, 256387.031899999827147 ], [ 360924.962200000882149, 256395.25730000063777 ], [ 360924.103799998760223, 256401.372000001370907 ], [ 360923.05179999768734, 256404.712699998170137 ], [ 360942.489699997007847, 256419.844900000840425 ], [ 360947.034699998795986, 256410.80180000141263 ], [ 360950.548500001430511, 256403.810400001704693 ], [ 360951.525100000202656, 256401.867199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303271600", "MAP": "D3-390-T82", "PARCEL_NAM": "19-12", "ACRE": "3,040 sq ft", "LONGITUDE": -64.94226275, "LATITUDE": 18.33692336, "OBJECTID_1": 11218, "PARCEL_NO_": "105303271600", "Tax_Legal_": "HONDURAS 19-12 SOUTHSIDE QTR.", "Name": "HERMAN A RICHARDSON", "Address": "1501 Church St", "City": "Lynchburg", "State": "Virginia", "Zip": 245044607, "Country": "United States", "Land_Value": 19200, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.6685347, "SHAPE_Area": 294.188201623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357596.418099999427795, 256378.147300001233816 ], [ 357598.768299996852875, 256384.943500000983477 ], [ 357609.850500002503395, 256388.443500000983477 ], [ 357618.851499997079372, 256391.182000000029802 ], [ 357618.581799998879433, 256390.560199998319149 ], [ 357614.510799996554852, 256379.885800000280142 ], [ 357610.8766999989748, 256370.357200000435114 ], [ 357610.578100003302097, 256368.401299998164177 ], [ 357597.216700002551079, 256373.097699999809265 ], [ 357595.959899999201298, 256373.692999999970198 ], [ 357595.761399999260902, 256374.949799999594688 ], [ 357595.761399999260902, 256376.735700000077486 ], [ 357596.418099999427795, 256378.147300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503022000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91128469, "LATITUDE": 18.33687757, "OBJECTID_1": 20011, "PARCEL_NO_": "105503022000", "Tax_Legal_": "EST THOMAS 14 QD NEW QTR", "Name": "FAHIE, HENRY R & CLEONE", "Address": "PO Box 9529", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24400, "Improved_V": 277500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.272465483700003, "SHAPE_Area": 414.02930879500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360871.673699997365475, 256403.264899998903275 ], [ 360869.197200000286102, 256409.999699998646975 ], [ 360879.598300002515316, 256419.583999998867512 ], [ 360881.239699997007847, 256416.219900000840425 ], [ 360889.448499999940395, 256399.188499998301268 ], [ 360894.369099996984005, 256389.518500000238419 ], [ 360892.792499996721745, 256385.283700000494719 ], [ 360874.168099999427795, 256394.419399999082088 ], [ 360871.673699997365475, 256403.264899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303260900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94349916, "LATITUDE": 18.33688545, "OBJECTID_1": 11180, "PARCEL_NO_": "105303260900", "Tax_Legal_": "4D HONDURAS 8C SOUTHSIDE QTR", "Name": "CERGE, INGER, BRANDY A. & TORY G. SERGE", "Address": "P O BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21800, "Improved_V": 26200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.804126795, "SHAPE_Area": 687.61474717900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357497.279100000858307, 256376.657299999147654 ], [ 357495.694899998605251, 256369.481100000441074 ], [ 357476.439300000667572, 256358.166900001466274 ], [ 357472.361000001430511, 256363.621899999678135 ], [ 357472.308899998664856, 256369.743200000375509 ], [ 357452.948399998247623, 256370.6402000002563 ], [ 357465.550899997353554, 256389.413699999451637 ], [ 357497.279100000858307, 256376.657299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503022100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91111732, "LATITUDE": 18.33694437, "OBJECTID_1": 20012, "PARCEL_NO_": "105503022100", "Tax_Legal_": "14QB EST THOMAS 6E NEW QTR", "Name": "FREEMAN, PETE", "Address": "470 Park Ave", "City": "East Orange", "State": "New Jersey", "Zip": 7017, "Country": "United States", "Land_Value": 35900, "Improved_V": 243700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.648727563500003, "SHAPE_Area": 476.923561447 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360916.031700000166893, 256402.361400000751019 ], [ 360889.448499999940395, 256399.188499998301268 ], [ 360881.239699997007847, 256416.219900000840425 ], [ 360907.020199999213219, 256418.964099999517202 ], [ 360911.103900000452995, 256412.875799998641014 ], [ 360914.374099999666214, 256407.625199999660254 ], [ 360915.198399998247623, 256405.521000001579523 ], [ 360916.031700000166893, 256402.361400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91157252000001, "LATITUDE": 18.33690864, "OBJECTID_1": 20005, "PARCEL_NO_": "105503021400", "Tax_Legal_": "14QL EST THOMAS 6E NEW QTR", "Name": "TURNBULL, RANDOLPH", "Address": "PO Box 304771", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29400, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.722166891200004, "SHAPE_Area": 324.83973688899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360861.19879999756813, 256402.334800001233816 ], [ 360847.597599998116493, 256389.769000001251698 ], [ 360840.168200001120567, 256409.973200000822544 ], [ 360854.613499999046326, 256418.112900000065565 ], [ 360861.19879999756813, 256402.334800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91029982000001, "LATITUDE": 18.3368354, "OBJECTID_1": 20078, "PARCEL_NO_": "105503032100", "Tax_Legal_": "14-R EST THOMAS 6E NEW QTR", "Name": "LOCKHART, ALFRED", "Address": "PO Box 714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.442902749, "SHAPE_Area": 476.50608047999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360990.122000001370907, 256383.847500000149012 ], [ 360988.87780000269413, 256377.8429000005126 ], [ 360977.810999996960163, 256378.725499998778105 ], [ 360978.263400003314018, 256385.772199999541044 ], [ 360980.479099996387959, 256409.643899999558926 ], [ 360979.597300000488758, 256418.502599999308586 ], [ 360990.739900000393391, 256417.622099999338388 ], [ 360992.529100000858307, 256395.464200001209974 ], [ 360990.122000001370907, 256383.847500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303251600", "MAP": "D3-390-T82", "PARCEL_NAM": "18-6", "ACRE": "3,008 sq ft", "LONGITUDE": -64.94294553, "LATITUDE": 18.33693802, "OBJECTID_1": 11157, "PARCEL_NO_": "105303251600", "Tax_Legal_": "HONDURAS 18-6 SOUTHSIDE QTR.", "Name": "METZGER, DOUGLAS", "Address": "Villa Olga", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17500, "Improved_V": 43200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.308382598099996, "SHAPE_Area": 347.34379455800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357522.163599997758865, 256386.194400001317263 ], [ 357542.290799997746944, 256389.947700001299381 ], [ 357544.311999998986721, 256387.290199998766184 ], [ 357548.965300001204014, 256380.055100001394749 ], [ 357549.800300002098083, 256378.756799999624491 ], [ 357539.957699999213219, 256374.735199999064207 ], [ 357532.866899996995926, 256372.406800001859665 ], [ 357526.51690000295639, 256371.24269999936223 ], [ 357524.188500002026558, 256371.983500000089407 ], [ 357523.878700003027916, 256374.176100000739098 ], [ 357522.163599997758865, 256386.194400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91009522, "LATITUDE": 18.3369075, "OBJECTID_1": 20064, "PARCEL_NO_": "105503030400", "Tax_Legal_": "14RD EST THOMAS 6E NEW QTR", "Name": "HODGE, EVADNEY VARLACK", "Address": "PO Box 397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 61700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.923310988, "SHAPE_Area": 667.34206992700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361021.70889999717474, 256397.315699998289347 ], [ 361021.513400003314018, 256394.039500001817942 ], [ 360997.390600003302097, 256395.22520000115037 ], [ 360992.529100000858307, 256395.464200001209974 ], [ 360990.739900000393391, 256417.622099999338388 ], [ 360996.542400002479553, 256417.163600001484156 ], [ 361023.161499999463558, 256416.114900000393391 ], [ 361021.624399997293949, 256407.236400000751019 ], [ 361021.70889999717474, 256397.315699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303261800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94380898, "LATITUDE": 18.33679996, "OBJECTID_1": 11191, "PARCEL_NO_": "105303261800", "Tax_Legal_": "HONDURAS ESTATE 4-3 No.8 SOUTHSIDE QTR.", "Name": "RHYMER, AMBROZINE & OVINS, GEORGE", "Address": "404 Chamberlain St", "City": "Holliston", "State": "Massachusetts", "Zip": 1746, "Country": "United States", "Land_Value": 36700, "Improved_V": 44700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.440337919, "SHAPE_Area": 1208.72852403 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357409.472199998795986, 256362.684999998658895 ], [ 357429.4358000010252, 256385.646499998867512 ], [ 357444.820500001311302, 256378.173099998384714 ], [ 357452.948399998247623, 256370.6402000002563 ], [ 357472.308899998664856, 256369.743200000375509 ], [ 357472.361000001430511, 256363.621899999678135 ], [ 357476.439300000667572, 256358.166900001466274 ], [ 357450.766800001263618, 256342.758000001311302 ], [ 357437.6283999979496, 256370.514800000935793 ], [ 357413.595499999821186, 256351.953000001609325 ], [ 357409.472199998795986, 256362.684999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105303040400", "MAP": "G9-1221-T69", "PARCEL_NAM": "41", "ACRE": null, "LONGITUDE": -64.95236585000001, "LATITUDE": 18.33658434, "OBJECTID_1": 10897, "PARCEL_NO_": "105303040400", "Tax_Legal_": "CONTANT 41 7B SOUTHSIDE QTR", "Name": "CAROL M HENDRICKS IRREVOCABLE TRUST", "Address": "683 Manderley Run", "City": "Lake Mary", "State": "Florida", "Zip": 32746, "Country": "United States", "Land_Value": 46900, "Improved_V": 33800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.19909228, "SHAPE_Area": 4504.7158373599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356521.376199997961521, 256301.376400001347065 ], [ 356511.641099996864796, 256308.262800000607967 ], [ 356510.529100000858307, 256344.139699999243021 ], [ 356510.246799997985363, 256377.278999999165535 ], [ 356527.19200000166893, 256375.940099999308586 ], [ 356550.57320000231266, 256376.342500001192093 ], [ 356557.821099996566772, 256377.457299999892712 ], [ 356572.132600001990795, 256306.646999999880791 ], [ 356557.744800001382828, 256291.752700001001358 ], [ 356549.76799999922514, 256281.554900001734495 ], [ 356521.376199997961521, 256301.376400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503031400", "MAP": null, "PARCEL_NAM": "14RL", "ACRE": null, "LONGITUDE": -64.9107242, "LATITUDE": 18.33673298, "OBJECTID_1": 20073, "PARCEL_NO_": "105503031400", "Tax_Legal_": "14RL EST THOMAS 6E NEW QTR", "Name": "THOMAS, CAROL", "Address": "PO Box 303715", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45700, "Improved_V": 138700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.948955658, "SHAPE_Area": 538.10188717599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360925.838699996471405, 256387.031899999827147 ], [ 360951.525100000202656, 256401.867199998348951 ], [ 360958.962300002574921, 256387.069499999284744 ], [ 360939.964500002563, 256377.36710000038147 ], [ 360924.258199997246265, 256369.34569999948144 ], [ 360925.838699996471405, 256387.031899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9117199, "LATITUDE": 18.33680916, "OBJECTID_1": 20004, "PARCEL_NO_": "105503021300", "Tax_Legal_": "EST THOMAS 14QH NEW QTR", "Name": "FAHIE, EIREN", "Address": "807 W Shiawassee St", "City": "Lansing", "State": "Michigan", "Zip": 48915, "Country": "United States", "Land_Value": 20600, "Improved_V": 166900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.426998254400004, "SHAPE_Area": 478.28248814900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360840.168200001120567, 256409.973200000822544 ], [ 360847.597599998116493, 256389.769000001251698 ], [ 360833.998199999332428, 256376.99210000038147 ], [ 360829.9324000030756, 256380.9695999994874 ], [ 360825.836199998855591, 256388.535399999469519 ], [ 360823.377700001001358, 256393.159400001168251 ], [ 360824.130000002682209, 256399.4983000010252 ], [ 360826.525600001215935, 256402.262099999934435 ], [ 360840.168200001120567, 256409.973200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91154483, "LATITUDE": 18.33671658, "OBJECTID_1": 20010, "PARCEL_NO_": "105503021900", "Tax_Legal_": "EST THOMAS 14Q 6E NEW QTR", "Name": "DEPT. CON. & CULTURAL AFF.", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.631577378, "SHAPE_Area": 724.233410564 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360847.597599998116493, 256389.769000001251698 ], [ 360861.19879999756813, 256402.334800001233816 ], [ 360869.197200000286102, 256409.999699998646975 ], [ 360871.673699997365475, 256403.264899998903275 ], [ 360851.888099998235703, 256359.406599998474121 ], [ 360833.998199999332428, 256376.99210000038147 ], [ 360847.597599998116493, 256389.769000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303271700", "MAP": "D3-390-T82", "PARCEL_NAM": "19-6", "ACRE": "1,296 sq ft", "LONGITUDE": -64.94246747, "LATITUDE": 18.33687771, "OBJECTID_1": 11219, "PARCEL_NO_": "105303271700", "Tax_Legal_": "HONDURAS 19-6 CROWN PRINCE QTR", "Name": "CERGE, INGER AND TORY SERGE", "Address": "P O BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8200, "Improved_V": 24900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.526001594900002, "SHAPE_Area": 153.253001461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357592.436800003051758, 256372.204100001603365 ], [ 357592.464000001549721, 256369.0135000012815 ], [ 357580.010999999940395, 256370.445000000298023 ], [ 357579.693499997258186, 256367.905000001192093 ], [ 357577.148299999535084, 256368.385299999266863 ], [ 357577.11150000244379, 256372.711899999529123 ], [ 357577.662699997425079, 256378.195099998265505 ], [ 357592.36150000244379, 256381.044199999421835 ], [ 357592.436800003051758, 256372.204100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303260800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94322381000001, "LATITUDE": 18.33682178, "OBJECTID_1": 11179, "PARCEL_NO_": "105303260800", "Tax_Legal_": "HONDURAS 4H CROWN PRINCE QTR", "Name": "GREAUX, GAIL M.", "Address": "4H Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15400, "Improved_V": 79900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.899197753599999, "SHAPE_Area": 211.83387749100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357516.153300002217293, 256369.432199999690056 ], [ 357516.677599996328354, 256367.57319999858737 ], [ 357515.883900001645088, 256366.089099999517202 ], [ 357504.665700003504753, 256357.764600001275539 ], [ 357495.694899998605251, 256369.481100000441074 ], [ 357497.279100000858307, 256376.657299999147654 ], [ 357516.153300002217293, 256369.432199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303271400", "MAP": "D3-390-T82", "PARCEL_NAM": "19-27", "ACRE": "1,600 sq ft", "LONGITUDE": -64.94211657, "LATITUDE": 18.33683572, "OBJECTID_1": 11216, "PARCEL_NO_": "105303271400", "Tax_Legal_": "19-27 ESTATE HONDURAS CROWN PRINCE QTR.", "Name": "CERGE (LIFE ESTATE), INGER", "Address": "P O BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10100, "Improved_V": 64100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.619512542099997, "SHAPE_Area": 229.95194483099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357633.625200003385544, 256364.401099998503923 ], [ 357617.166299998760223, 256365.195500001311302 ], [ 357614.264799997210503, 256365.624699998646975 ], [ 357610.121299996972084, 256367.109600000083447 ], [ 357610.578100003302097, 256368.401299998164177 ], [ 357610.8766999989748, 256370.357200000435114 ], [ 357613.275399997830391, 256376.64640000090003 ], [ 357632.665399998426437, 256374.424899999052286 ], [ 357631.958700001239777, 256371.049899999052286 ], [ 357634.381300002336502, 256370.64750000089407 ], [ 357633.616300001740456, 256365.786100000143051 ], [ 357633.625200003385544, 256364.401099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302252300", "MAP": "D-390-T82", "PARCEL_NAM": "JODE GADE 9B", "ACRE": "1,530 sq ft", "LONGITUDE": -64.94265228, "LATITUDE": 18.3368519, "OBJECTID_1": 10365, "PARCEL_NO_": "105302252300", "Tax_Legal_": "JODE GADE 9B CROWN PRINCE QTR", "Name": "JONES, VIOLET & OTHERS", "Address": "PO Box 894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.639084830100003, "SHAPE_Area": 135.83895886299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357572.322999998927116, 256366.878100000321865 ], [ 357558.701899997889996, 256366.775199998170137 ], [ 357557.792400002479553, 256368.754099998623133 ], [ 357557.148800000548363, 256374.218699999153614 ], [ 357573.567100003361702, 256377.401200000196695 ], [ 357572.307800002396107, 256368.661800000816584 ], [ 357572.322999998927116, 256366.878100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91249969, "LATITUDE": 18.33682877, "OBJECTID_1": 19996, "PARCEL_NO_": "105503020500", "Tax_Legal_": "14-88 EST THOMAS 6E NEW QTR", "Name": "SHULTERBRANDT, EVE J. & CHERLYN", "Address": "PO Box 551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24800, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.366411677200006, "SHAPE_Area": 434.540099317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360736.223999999463558, 256400.889800000935793 ], [ 360763.602600000798702, 256405.335700001567602 ], [ 360766.955600000917912, 256390.375500001013279 ], [ 360749.276000000536442, 256383.264699999243021 ], [ 360740.329300001263618, 256392.268500000238419 ], [ 360736.223999999463558, 256400.889800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303270600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94141447, "LATITUDE": 18.33679689, "OBJECTID_1": 11207, "PARCEL_NO_": "105303270600", "Tax_Legal_": "HONDURAS 28 CROWN PRINCE QTR", "Name": "ANQUET INC", "Address": "PO Box 223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.946928678700004, "SHAPE_Area": 504.06817869000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357687.534999996423721, 256378.470800001174212 ], [ 357708.502700001001358, 256378.220300000160933 ], [ 357706.27250000089407, 256356.037200000137091 ], [ 357693.389499999582767, 256353.820799998939037 ], [ 357684.509300000965595, 256355.014699999243021 ], [ 357687.534999996423721, 256378.470800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303271300", "MAP": "D3-390-T82", "PARCEL_NAM": "19-11", "ACRE": "3,562 sq ft", "LONGITUDE": -64.94228554, "LATITUDE": 18.33674899, "OBJECTID_1": 11215, "PARCEL_NO_": "105303271300", "Tax_Legal_": "HONDURAS 19-11 S.S.QTR.", "Name": "PEREZ, TIMOTHY C.", "Address": "PO Box 10154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23400, "Improved_V": 61300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.160415819199997, "SHAPE_Area": 320.65762781299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357595.893700003623962, 256351.137200001627207 ], [ 357595.791900001466274, 256372.244600001722574 ], [ 357614.264799997210503, 256365.624699998646975 ], [ 357614.278899997472763, 256363.967799998819828 ], [ 357615.142200000584126, 256352.526299998164177 ], [ 357595.893700003623962, 256351.137200001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303270400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9411076, "LATITUDE": 18.33674411, "OBJECTID_1": 11204, "PARCEL_NO_": "105303270400", "Tax_Legal_": "HONDURAS 10 CROWN PRINCE", "Name": "Carreon Family Trust & S Jedlicka Enterprises", "Address": "3916 Rock River Lane", "City": "Bonita", "State": "California", "Zip": 919023057, "Country": "United States", "Land_Value": 31800, "Improved_V": 46500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.716866381800003, "SHAPE_Area": 565.93800941200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357722.229800000786781, 256376.010600000619888 ], [ 357727.88289999961853, 256375.001400001347065 ], [ 357744.8783999979496, 256367.752199999988079 ], [ 357735.371699996292591, 256347.831599999219179 ], [ 357720.85809999704361, 256347.712799999862909 ], [ 357715.170800000429153, 256352.732500001788139 ], [ 357722.229800000786781, 256376.010600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503022500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91105902, "LATITUDE": 18.33680272, "OBJECTID_1": 20016, "PARCEL_NO_": "105503022500", "Tax_Legal_": "14QA EST THOMAS 6E NEW QTR", "Name": "HENRY, EULALIE & OTHERS", "Address": "7385 High Lake Dr", "City": "Orlando", "State": "Florida", "Zip": 32818, "Country": "United States", "Land_Value": 24400, "Improved_V": 198000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.333063293500004, "SHAPE_Area": 378.711535078 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360917.780900001525879, 256386.332600001245737 ], [ 360892.792499996721745, 256385.283700000494719 ], [ 360894.369099996984005, 256389.518500000238419 ], [ 360889.448499999940395, 256399.188499998301268 ], [ 360916.031700000166893, 256402.361400000751019 ], [ 360917.723399996757507, 256393.087200000882149 ], [ 360917.780900001525879, 256386.332600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302272400", "MAP": "D3-390-T82", "PARCEL_NAM": "19-3", "ACRE": "2,080 sq ft", "LONGITUDE": -64.94284992, "LATITUDE": 18.33677895, "OBJECTID_1": 10434, "PARCEL_NO_": "105302272400", "Tax_Legal_": "GAMLE GADE 12 CROWN PRINCE QUARTER", "Name": "DUNLOP, L B & OTHERS", "Address": "140 Debs Pl", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 8400, "Improved_V": 55400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.911645055400001, "SHAPE_Area": 214.094000583 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357553.777099996805191, 256364.401900000870228 ], [ 357553.298500001430511, 256362.649599999189377 ], [ 357549.964800000190735, 256357.781300000846386 ], [ 357538.428900003433228, 256354.288800001144409 ], [ 357535.140900000929832, 256366.330200001597404 ], [ 357551.852799996733665, 256372.054000001400709 ], [ 357553.777000002563, 256366.821400001645088 ], [ 357553.777099996805191, 256364.401900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303271800", "MAP": "D3-390-T82", "PARCEL_NAM": "19-24", "ACRE": "930 sq ft", "LONGITUDE": -64.94246827000001, "LATITUDE": 18.3367967, "OBJECTID_1": 11220, "PARCEL_NO_": "105303271800", "Tax_Legal_": "HONDURAS 19-24 SOUTHSIDE QTR.", "Name": "JAFFERALI, VALERIE NELLIE", "Address": "PO Box 304976", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5900, "Improved_V": 21000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.777617898000003, "SHAPE_Area": 120.371290014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357592.464000001549721, 256369.0135000012815 ], [ 357592.51240000128746, 256363.338799998164177 ], [ 357592.532300002872944, 256361.003299999982119 ], [ 357578.009499996900558, 256361.953499998897314 ], [ 357577.172600001096725, 256365.535199999809265 ], [ 357577.148299999535084, 256368.385299999266863 ], [ 357579.693499997258186, 256367.905000001192093 ], [ 357580.010999999940395, 256370.445000000298023 ], [ 357592.464000001549721, 256369.0135000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303261700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94336378, "LATITUDE": 18.33672889, "OBJECTID_1": 11190, "PARCEL_NO_": "105303261700", "Tax_Legal_": "HONDURAS 4N SOUTHSIDE QTR", "Name": "WILLIAMS, E & TRUSTEE", "Address": "PO Box 7171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28700, "Improved_V": 47900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.872271846499999, "SHAPE_Area": 357.07871415199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357476.439300000667572, 256358.166900001466274 ], [ 357495.694899998605251, 256369.481100000441074 ], [ 357504.665700003504753, 256357.764600001275539 ], [ 357486.233800001442432, 256344.314899999648333 ], [ 357476.439300000667572, 256358.166900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303261600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94393058, "LATITUDE": 18.33665814, "OBJECTID_1": 11186, "PARCEL_NO_": "105303261600", "Tax_Legal_": "HONDURAS 4-2 SOUTHSIDE QTR", "Name": "PETERSEN, KAREN E", "Address": "ALTONA 178-15", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57800, "Improved_V": 16000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.439821479, "SHAPE_Area": 842.78086621 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357430.668300002813339, 256335.627399999648333 ], [ 357416.197899997234344, 256330.442800000309944 ], [ 357413.595499999821186, 256351.953000001609325 ], [ 357437.6283999979496, 256370.514800000935793 ], [ 357450.766800001263618, 256342.758000001311302 ], [ 357430.668300002813339, 256335.627399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91220236, "LATITUDE": 18.33672446, "OBJECTID_1": 20002, "PARCEL_NO_": "105503021100", "Tax_Legal_": "14CA EST THOMAS NEW QTR", "Name": "MADURO, GOODWIN & ALICIA", "Address": "9102 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16800, "Improved_V": 93500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.045374779699998, "SHAPE_Area": 449.68941430500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360798.522200003266335, 256376.490600001066923 ], [ 360781.632799997925758, 256371.286100000143051 ], [ 360767.787000000476837, 256387.427000001072884 ], [ 360770.196999996900558, 256388.502199999988079 ], [ 360783.848600000143051, 256395.157900001853704 ], [ 360789.471199996769428, 256397.736999999731779 ], [ 360798.522200003266335, 256376.490600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9101049, "LATITUDE": 18.3367269, "OBJECTID_1": 20065, "PARCEL_NO_": "105503030500", "Tax_Legal_": "14RE EST THOMAS 6E NEW QTR", "Name": "HODGE, EVADNEY VARLACK", "Address": "PO Box 397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.609206011699996, "SHAPE_Area": 531.15454229800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361021.840199999511242, 256381.907000001519918 ], [ 361022.580600000917912, 256377.323100000619888 ], [ 361006.941200003027916, 256377.564300000667572 ], [ 360988.87780000269413, 256377.8429000005126 ], [ 360990.122000001370907, 256383.847500000149012 ], [ 360992.529100000858307, 256395.464200001209974 ], [ 360997.390600003302097, 256395.22520000115037 ], [ 361021.513400003314018, 256394.039500001817942 ], [ 361021.003300003707409, 256385.488699998706579 ], [ 361021.840199999511242, 256381.907000001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302272500", "MAP": "D3-390-T82", "PARCEL_NAM": "19-26", "ACRE": "3,192 sq ft", "LONGITUDE": -64.9428724, "LATITUDE": 18.33667992, "OBJECTID_1": 10435, "PARCEL_NO_": "105302272500", "Tax_Legal_": "PILE STRAEDE 15B CROWN PRINCE QUARTER", "Name": "CALLWOOD, HORACE & OTHERS", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14800, "Improved_V": 119400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.710640223, "SHAPE_Area": 427.44013903299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357528.744300000369549, 256363.88230000063777 ], [ 357535.140900000929832, 256366.330200001597404 ], [ 357538.428900003433228, 256354.288800001144409 ], [ 357545.943099997937679, 256356.61710000038147 ], [ 357549.964800000190735, 256357.781300000846386 ], [ 357553.298500001430511, 256362.649599999189377 ], [ 357553.777099996805191, 256364.401900000870228 ], [ 357556.2246999964118, 256363.463899999856949 ], [ 357556.275100000202656, 256357.553700000047684 ], [ 357555.564000003039837, 256346.359999999403954 ], [ 357554.444099999964237, 256345.253400001674891 ], [ 357549.508599996566772, 256343.211100000888109 ], [ 357544.362099997699261, 256342.213700000196695 ], [ 357544.206200003623962, 256342.183499999344349 ], [ 357542.190499998629093, 256341.79280000180006 ], [ 357540.375100001692772, 256341.395700000226498 ], [ 357535.723300002515316, 256341.452500000596046 ], [ 357533.348899997770786, 256344.552099999040365 ], [ 357532.290600001811981, 256347.727099999785423 ], [ 357530.438500002026558, 256352.912900000810623 ], [ 357528.480599999427795, 256360.691700000315905 ], [ 357528.744300000369549, 256363.88230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303272200", "MAP": "D3-390-T82", "PARCEL_NAM": "19-5", "ACRE": "1,576 sq ft", "LONGITUDE": -64.94264889, "LATITUDE": 18.3367787, "OBJECTID_1": 11221, "PARCEL_NO_": "105303272200", "Tax_Legal_": "HONDURAS 19-5 CROWN PRINCE QUARTER", "Name": "LAPLACE, JOSEPH RUDY", "Address": "PO Box 1201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10000, "Improved_V": 21300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.771776039899997, "SHAPE_Area": 89.718493167899993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357572.36710000038147, 256361.696199998259544 ], [ 357572.604999996721745, 256359.332100000232458 ], [ 357559.475199997425079, 256360.527899999171495 ], [ 357559.451800003647804, 256363.27930000051856 ], [ 357559.435599997639656, 256365.179000001400709 ], [ 357558.701899997889996, 256366.775199998170137 ], [ 357572.322999998927116, 256366.878100000321865 ], [ 357572.36710000038147, 256361.696199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503022400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91129632000001, "LATITUDE": 18.3366991, "OBJECTID_1": 20015, "PARCEL_NO_": "105503022400", "Tax_Legal_": "ESTATE THOMAS 14QN 6E NEW QTR", "Name": "MARLENE BENJAMIN & OTHERS", "Address": "P O BOX 4368", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.820844319800003, "SHAPE_Area": 364.92532741899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360892.792499996721745, 256385.283700000494719 ], [ 360886.476800002157688, 256369.399999998509884 ], [ 360867.048000000417233, 256378.317999999970198 ], [ 360874.168099999427795, 256394.419399999082088 ], [ 360892.792499996721745, 256385.283700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303321900", "MAP": "D3-390-T82", "PARCEL_NAM": "19-7", "ACRE": "2,108 sq ft", "LONGITUDE": -64.9424707, "LATITUDE": 18.33669881, "OBJECTID_1": 11295, "PARCEL_NO_": "105303321900", "Tax_Legal_": "HONDURAS 19-7 SOUTHSIDE QTR.", "Name": "CERGE, INGER (LIFE ESTATE)", "Address": "P O BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12300, "Improved_V": 35900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.187869927999998, "SHAPE_Area": 202.06826220299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357577.291299998760223, 256351.603999998420477 ], [ 357578.009499996900558, 256361.953499998897314 ], [ 357592.532300002872944, 256361.003299999982119 ], [ 357592.613099999725819, 256351.518300000578165 ], [ 357592.406000003218651, 256347.976500000804663 ], [ 357579.500699996948242, 256348.009700000286102 ], [ 357578.166599996387959, 256347.896099999547005 ], [ 357577.108300000429153, 256349.880399998277426 ], [ 357577.291299998760223, 256351.603999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302270900", "MAP": "D3-390-T82", "PARCEL_NAM": "19-16", "ACRE": "1,906 sq ft", "LONGITUDE": -64.94207122, "LATITUDE": 18.33673082, "OBJECTID_1": 10419, "PARCEL_NO_": "105302270900", "Tax_Legal_": "GENERAL GADE 3A CROWN PRINCE QTR", "Name": "ANTHON W ADAMS (TRUSTEE), F BROWNLOW, J & P ADAMS", "Address": "PO Box 304417", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3000, "Improved_V": 20500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.072762281099997, "SHAPE_Area": 189.56558774000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357617.596199996769428, 256353.200500000268221 ], [ 357618.242600001394749, 256364.036200001835823 ], [ 357633.200099997222424, 256363.241900000721216 ], [ 357637.631800003349781, 256362.844999998807907 ], [ 357637.537900000810623, 256362.14979999884963 ], [ 357636.435199998319149, 256353.991300001740456 ], [ 357617.596199996769428, 256353.200500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303320100", "MAP": null, "PARCEL_NAM": "16", "ACRE": "2,518 sq ft", "LONGITUDE": -64.94264712, "LATITUDE": 18.33667979, "OBJECTID_1": 11275, "PARCEL_NO_": "105303320100", "Tax_Legal_": "HONDURAS 16 KROMP QTR", "Name": "MAGRAS, JULIAN PIERRE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15900, "Improved_V": 43400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.589472715100001, "SHAPE_Area": 207.11965317600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357572.604999996721745, 256359.332100000232458 ], [ 357574.129000000655651, 256344.189899999648333 ], [ 357559.59740000218153, 256346.18189999833703 ], [ 357558.715599998831749, 256355.040600001811981 ], [ 357559.502099998295307, 256357.369100000709295 ], [ 357559.475199997425079, 256360.527899999171495 ], [ 357572.604999996721745, 256359.332100000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503021000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91236557000001, "LATITUDE": 18.33666391, "OBJECTID_1": 20001, "PARCEL_NO_": "105503021000", "Tax_Legal_": "14C EST THOMAS 6E NEW QTR", "Name": "LEWIS, ELENORA", "Address": "9105 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18300, "Improved_V": 38300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.448310611500006, "SHAPE_Area": 305.43629049800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360767.787000000476837, 256387.427000001072884 ], [ 360781.632799997925758, 256371.286100000143051 ], [ 360767.961499996483326, 256366.952399998903275 ], [ 360751.712899997830391, 256381.173799999058247 ], [ 360767.787000000476837, 256387.427000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503021800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91193085, "LATITUDE": 18.3366299, "OBJECTID_1": 20009, "PARCEL_NO_": "105503021800", "Tax_Legal_": "14QE EST THOMAS 6E NEW QTR", "Name": "DUNCAN, NEILSON H & LEONA", "Address": "P.O. BOX 3334", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.447400574699998, "SHAPE_Area": 405.94484931599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360809.126599997282028, 256362.223099999129772 ], [ 360806.716600000858307, 256361.147900000214577 ], [ 360798.522200003266335, 256376.490600001066923 ], [ 360818.595499999821186, 256386.576299998909235 ], [ 360822.702600002288818, 256377.743999999016523 ], [ 360829.20889999717474, 256371.253299999982119 ], [ 360809.126599997282028, 256362.223099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303260700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94357845, "LATITUDE": 18.33659755, "OBJECTID_1": 11178, "PARCEL_NO_": "105303260700", "Tax_Legal_": "4M HONDURAS KROMP QTR", "Name": "ADINA WILLIAMS FAMILY REVOCABLE TRUST", "Address": "3582 Honduras 5B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24900, "Improved_V": 37200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.499411024400004, "SHAPE_Area": 559.132447168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357458.973800003528595, 256325.937699999660254 ], [ 357450.766800001263618, 256342.758000001311302 ], [ 357476.439300000667572, 256358.166900001466274 ], [ 357486.233800001442432, 256344.314899999648333 ], [ 357483.829199999570847, 256342.6064000017941 ], [ 357458.973800003528595, 256325.937699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503023100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91107812, "LATITUDE": 18.3366059, "OBJECTID_1": 20022, "PARCEL_NO_": "105503023100", "Tax_Legal_": "14QC EST THOMAS 6E NEW QTR", "Name": "LETTSOME (LIFE ESTATE), MAVIS", "Address": "PO Box 9053", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45700, "Improved_V": 194900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.11370315000001, "SHAPE_Area": 780.65494077899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360895.425399996340275, 256360.185199998319149 ], [ 360884.10639999806881, 256363.681099999696016 ], [ 360886.476800002157688, 256369.399999998509884 ], [ 360892.792499996721745, 256385.283700000494719 ], [ 360917.780900001525879, 256386.332600001245737 ], [ 360917.861900001764297, 256376.834100000560284 ], [ 360914.022699996829033, 256354.215599998831749 ], [ 360895.425399996340275, 256360.185199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91024123, "LATITUDE": 18.33655633, "OBJECTID_1": 20080, "PARCEL_NO_": "105503032400", "Tax_Legal_": "14R-6 EST THOMAS NEW QTR", "Name": "EVERARD FAULKNER & CATHERINE FAULKNER (LIFE ESTATE", "Address": "PO Box 9444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29300, "Improved_V": 120800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.576644512, "SHAPE_Area": 638.50345441399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360988.87780000269413, 256377.8429000005126 ], [ 361006.941200003027916, 256377.564300000667572 ], [ 361005.139600001275539, 256354.539200000464916 ], [ 361001.910800002515316, 256354.934999998658895 ], [ 360975.277300000190735, 256357.6722999997437 ], [ 360976.839599996805191, 256363.59569999948144 ], [ 360977.810999996960163, 256378.725499998778105 ], [ 360988.87780000269413, 256377.8429000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302272700", "MAP": "D3-390-T82", "PARCEL_NAM": "19-1", "ACRE": "2,230 sq ft", "LONGITUDE": -64.94299535, "LATITUDE": 18.33658455, "OBJECTID_1": 10437, "PARCEL_NO_": "105302272700", "Tax_Legal_": "GAMLE GADE 13B CROWN PRINCE QUARTER", "Name": "SHEPPARD, ROSEMARY", "Address": "PO BOX 303567", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7200, "Improved_V": 21400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.982524251500003, "SHAPE_Area": 197.196192333 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357542.190499998629093, 256341.79280000180006 ], [ 357542.303900003433228, 256338.502500001341105 ], [ 357524.887900002300739, 256333.680500000715256 ], [ 357519.952399998903275, 256345.650499999523163 ], [ 357529.256099998950958, 256350.188900001347065 ], [ 357531.10639999806881, 256351.042700000107288 ], [ 357533.348899997770786, 256344.552099999040365 ], [ 357535.723300002515316, 256341.452500000596046 ], [ 357540.375100001692772, 256341.395700000226498 ], [ 357542.190499998629093, 256341.79280000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91000859, "LATITUDE": 18.33652933, "OBJECTID_1": 20066, "PARCEL_NO_": "105503030600", "Tax_Legal_": "14RF EST THOMAS 6E NEW QTR", "Name": "HALL, OSWALD & JUANITA", "Address": "PO Box 7102", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44100, "Improved_V": 284900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.157863741900002, "SHAPE_Area": 483.251985875 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361022.580600000917912, 256377.323100000619888 ], [ 361023.542700000107288, 256371.366200000047684 ], [ 361026.033600002527237, 256362.942899998277426 ], [ 361030.970399998128414, 256351.373100001364946 ], [ 361005.139600001275539, 256354.539200000464916 ], [ 361006.941200003027916, 256377.564300000667572 ], [ 361022.580600000917912, 256377.323100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302271000", "MAP": "D3-390-T82", "PARCEL_NAM": "19-17", "ACRE": "2,080 sq ft", "LONGITUDE": -64.94201741000001, "LATITUDE": 18.33662843, "OBJECTID_1": 10420, "PARCEL_NO_": "105302271000", "Tax_Legal_": "GENERAL GADE 2AB QUEENS QUARTER", "Name": "PHILLIPS, DORIS & MARIA - GUAR", "Address": "PO Box 7911", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.242391914699994, "SHAPE_Area": 251.93603603299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357645.888999998569489, 256344.988299999386072 ], [ 357646.131099998950958, 256340.870299998670816 ], [ 357644.180299997329712, 256341.14919999986887 ], [ 357627.379699997603893, 256340.61939999833703 ], [ 357627.361800000071526, 256342.725699998438358 ], [ 357617.596199996769428, 256353.200500000268221 ], [ 357636.435199998319149, 256353.991300001740456 ], [ 357645.888999998569489, 256344.988299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503062100", "MAP": "D9-8588-T010", "PARCEL_NAM": "13-1", "ACRE": ".09", "LONGITUDE": -64.9126492, "LATITUDE": 18.33654416, "OBJECTID_1": 20227, "PARCEL_NO_": "105503062100", "Tax_Legal_": "THOMAS ESTATE 13-1&13-5A 6E NEW QTR", "Name": "HODGE, JR. , STEDMANN & ETHAN A", "Address": "PO Box 9910", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27300, "Improved_V": 199400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.255975144199994, "SHAPE_Area": 387.45594089899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360747.753799997270107, 256371.443999998271465 ], [ 360741.497000001370907, 256349.848299998790026 ], [ 360726.14469999819994, 256353.522300001233816 ], [ 360732.3158999979496, 256375.012899998575449 ], [ 360734.749399997293949, 256376.301199998706579 ], [ 360740.702600002288818, 256376.830400001257658 ], [ 360746.655699998140335, 256372.596999999135733 ], [ 360747.753799997270107, 256371.443999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303321500", "MAP": "D3-390-T82", "PARCEL_NAM": "19-8", "ACRE": "1,520 sq ft", "LONGITUDE": -64.94246174, "LATITUDE": 18.33659093, "OBJECTID_1": 11294, "PARCEL_NO_": "105303321500", "Tax_Legal_": "HONDURAS 19-18 CROWN PRINCE QTR.", "Name": "TURBE, JOHN", "Address": "702 Falkirk Dr", "City": "Warner Robins", "State": "Georgia", "Zip": 31088, "Country": "United States", "Land_Value": 18800, "Improved_V": 28600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.715762211700003, "SHAPE_Area": 135.423125903 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357592.406000003218651, 256347.976500000804663 ], [ 357591.792700000107288, 256336.585099998861551 ], [ 357582.730700001120567, 256336.915800001472235 ], [ 357580.217100001871586, 256340.950699999928474 ], [ 357578.166599996387959, 256347.896099999547005 ], [ 357579.500699996948242, 256348.009700000286102 ], [ 357592.406000003218651, 256347.976500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503022900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91139817, "LATITUDE": 18.33653489, "OBJECTID_1": 20020, "PARCEL_NO_": "105503022900", "Tax_Legal_": "14 QO EST THOMAS NEW QTR", "Name": "WATTLEY, AARON", "Address": "9129 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25100, "Improved_V": 142000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.403996414900007, "SHAPE_Area": 437.176540897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360867.301500000059605, 256348.555900000035763 ], [ 360865.719499997794628, 256344.9543999992311 ], [ 360862.45830000191927, 256349.149599999189377 ], [ 360857.584399998188019, 256353.331500001251698 ], [ 360856.752899996936321, 256356.280000001192093 ], [ 360867.048000000417233, 256378.317999999970198 ], [ 360886.476800002157688, 256369.399999998509884 ], [ 360884.10639999806881, 256363.681099999696016 ], [ 360874.436099998652935, 256362.968699999153614 ], [ 360867.301500000059605, 256348.555900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303271100", "MAP": "D3-390-T82", "PARCEL_NAM": "19-22", "ACRE": "1,600 sq ft", "LONGITUDE": -64.9422282, "LATITUDE": 18.33659885, "OBJECTID_1": 11213, "PARCEL_NO_": "105303271100", "Tax_Legal_": "HONDURAS 19-22 & 19-30 CROWN PRINCE QTR.", "Name": "DEAN GREAUX and TIMOTHY GREAUX", "Address": "PO Box 306931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10900, "Improved_V": 64600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.500547470400001, "SHAPE_Area": 144.27170055900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357610.132100000977516, 256336.809099998325109 ], [ 357605.965499997138977, 256337.211899999529123 ], [ 357604.955700002610683, 256342.009100001305342 ], [ 357600.59009999781847, 256345.117899999022484 ], [ 357616.729699999094009, 256351.534099999815226 ], [ 357617.391199998557568, 256344.721000000834465 ], [ 357617.704099997878075, 256340.535700000822544 ], [ 357614.972199998795986, 256340.1554000005126 ], [ 357610.132100000977516, 256336.809099998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503021700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91216136, "LATITUDE": 18.33655366, "OBJECTID_1": 20008, "PARCEL_NO_": "105503021700", "Tax_Legal_": "14D EST THOMAS 6E NEW QTR", "Name": "LEIGH, C., HERBERT, J., HERMAN, E., & OTHERS", "Address": "21230 NE 14th Ave", "City": "Miami", "State": "Florida", "Zip": 33179, "Country": "United States", "Land_Value": 39200, "Improved_V": 54800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.335740612500004, "SHAPE_Area": 481.25973211799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360806.716600000858307, 256361.147900000214577 ], [ 360781.780299998819828, 256353.977699998766184 ], [ 360774.458700001239777, 256361.517099998891354 ], [ 360767.961499996483326, 256366.952399998903275 ], [ 360781.632799997925758, 256371.286100000143051 ], [ 360798.522200003266335, 256376.490600001066923 ], [ 360806.716600000858307, 256361.147900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303310300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94325953000001, "LATITUDE": 18.3364786, "OBJECTID_1": 11268, "PARCEL_NO_": "105303310300", "Tax_Legal_": "HONDURAS 6A CROWN PRINCE QTR", "Name": "GIL, JOSE R. & MARIA A", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 52100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.096588716300005, "SHAPE_Area": 467.21786555599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357515.455200001597404, 256321.755899999290705 ], [ 357500.2162000015378, 256312.131999999284744 ], [ 357489.505800001323223, 256338.853199999779463 ], [ 357500.718599997460842, 256347.810899998992682 ], [ 357515.455200001597404, 256321.755899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503062200", "MAP": "B9-107-T64", "PARCEL_NAM": "13-2", "ACRE": null, "LONGITUDE": -64.91252565000001, "LATITUDE": 18.33645233, "OBJECTID_1": 20228, "PARCEL_NO_": "105503062200", "Tax_Legal_": "13 2 ESTATE THOMAS NEW QTR", "Name": "PINNEY, JR. , MELVILLE & CLAXTO", "Address": "9541 S 94th East Ave", "City": "Tulsa", "State": "Oklahoma", "Zip": 74133, "Country": "United States", "Land_Value": 24800, "Improved_V": 141400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.178536846699998, "SHAPE_Area": 385.42642223600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360760.491400003433228, 256359.034699998795986 ], [ 360754.496899999678135, 256338.3445999994874 ], [ 360739.929300002753735, 256344.558100000023842 ], [ 360741.497000001370907, 256349.848299998790026 ], [ 360747.753799997270107, 256371.443999998271465 ], [ 360754.593199998140335, 256364.262600000947714 ], [ 360760.491400003433228, 256359.034699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303321200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9427636, "LATITUDE": 18.33651514, "OBJECTID_1": 11291, "PARCEL_NO_": "105303321200", "Tax_Legal_": "HONDURAS 19-21 CROWN PRINCE QUARTER", "Name": "MAGRAS, DANA", "Address": "PO BOX 307976", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 94000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.34815183800001, "SHAPE_Area": 464.25155079400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357564.471199996769428, 256341.999899998307228 ], [ 357562.09910000115633, 256336.491999998688698 ], [ 357563.774599999189377, 256329.117499999701977 ], [ 357563.775700002908707, 256322.933600001037121 ], [ 357557.280599996447563, 256322.901799999177456 ], [ 357545.083700001239777, 256321.19990000128746 ], [ 357544.288599997758865, 256326.148800000548363 ], [ 357542.303900003433228, 256338.502500001341105 ], [ 357542.190499998629093, 256341.79280000180006 ], [ 357544.206200003623962, 256342.183499999344349 ], [ 357544.362099997699261, 256342.213700000196695 ], [ 357549.508599996566772, 256343.211100000888109 ], [ 357554.444099999964237, 256345.253400001674891 ], [ 357555.564000003039837, 256346.359999999403954 ], [ 357559.59740000218153, 256346.18189999833703 ], [ 357574.129000000655651, 256344.189899999648333 ], [ 357564.471199996769428, 256341.999899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303321300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94258437000001, "LATITUDE": 18.33649575, "OBJECTID_1": 11292, "PARCEL_NO_": "105303321300", "Tax_Legal_": "HONDURAS 19-9 CROWN PRINCE QTR.", "Name": "GREAUX, GENE H", "Address": "3537 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18700, "Improved_V": 23500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.175462307299995, "SHAPE_Area": 250.87083880099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357574.964400000870228, 256342.86089999973774 ], [ 357585.480700001120567, 256326.130399998277426 ], [ 357575.883699998259544, 256327.527800001204014 ], [ 357574.650100000202656, 256321.723900001496077 ], [ 357568.853500001132488, 256322.958500001579523 ], [ 357565.997100003063679, 256322.944499999284744 ], [ 357567.0016999989748, 256328.932799998670816 ], [ 357564.519799999892712, 256336.300799999386072 ], [ 357566.10360000282526, 256339.691199999302626 ], [ 357574.964400000870228, 256342.86089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303271200", "MAP": "D3-390-T82", "PARCEL_NAM": "19-10", "ACRE": "1,092 sq ft", "LONGITUDE": -64.94233872, "LATITUDE": 18.33656684, "OBJECTID_1": 11214, "PARCEL_NO_": "105303271200", "Tax_Legal_": "19-10 HONDURAS CROWN PRINCE QTR.", "Name": "JOHN EVAN GUMBS REVOCABLE FAMILY TRUST", "Address": "PO Box 454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040454, "Country": "United States", "Land_Value": 6400, "Improved_V": 4000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.9090461706, "SHAPE_Area": 89.325451883100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357593.180299997329712, 256343.095800001174212 ], [ 357600.59009999781847, 256345.117899999022484 ], [ 357604.955700002610683, 256342.009100001305342 ], [ 357605.965499997138977, 256337.211899999529123 ], [ 357593.241400003433228, 256335.919100001454353 ], [ 357593.180299997329712, 256343.095800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91183823, "LATITUDE": 18.33651219, "OBJECTID_1": 20014, "PARCEL_NO_": "105503022300", "Tax_Legal_": "THOMAS ESTATE 14QF 6E NEW QTR", "Name": "GOODWIN, HILDA", "Address": "P.O.BOX 1951", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.854325346899998, "SHAPE_Area": 329.69139625600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360821.313000001013279, 256351.557000000029802 ], [ 360816.500299997627735, 256348.562300000339746 ], [ 360809.126599997282028, 256362.223099999129772 ], [ 360829.20889999717474, 256371.253299999982119 ], [ 360838.155599996447563, 256362.249499998986721 ], [ 360821.313000001013279, 256351.557000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303260600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9438026, "LATITUDE": 18.33647931, "OBJECTID_1": 11176, "PARCEL_NO_": "105303260600", "Tax_Legal_": "HONDURAS 4G CROWN PRINCE ATR", "Name": "CARTER, GRETHEL", "Address": "4G Estate Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.111763879199998, "SHAPE_Area": 472.24050428800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357437.295100003480911, 256314.994500000029802 ], [ 357430.668300002813339, 256335.627399999648333 ], [ 357450.766800001263618, 256342.758000001311302 ], [ 357458.973800003528595, 256325.937699999660254 ], [ 357450.955600000917912, 256320.594700001180172 ], [ 357437.295100003480911, 256314.994500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303321500", "MAP": "D3-390-T82", "PARCEL_NAM": "19-18", "ACRE": null, "LONGITUDE": -64.94214768000001, "LATITUDE": 18.33648739, "OBJECTID_1": 11294, "PARCEL_NO_": "105303321500", "Tax_Legal_": "HONDURAS 19-18 CROWN PRINCE QTR.", "Name": "TURBE, JOHN", "Address": "702 Falkirk Dr", "City": "Warner Robins", "State": "Georgia", "Zip": 31088, "Country": "United States", "Land_Value": 18800, "Improved_V": 28600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.863220812599998, "SHAPE_Area": 216.60934576700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357626.68860000371933, 256327.099300000816584 ], [ 357627.198100000619888, 256324.755199998617172 ], [ 357614.251199997961521, 256323.993599999696016 ], [ 357614.227799996733665, 256323.992199998348951 ], [ 357612.451999999582767, 256323.887800000607967 ], [ 357612.185699999332428, 256325.714000001549721 ], [ 357610.549500003457069, 256334.553800001740456 ], [ 357613.554700002074242, 256337.709600001573563 ], [ 357616.332800000905991, 256338.304900001734495 ], [ 357625.394799999892712, 256339.297100000083447 ], [ 357627.379699997603893, 256340.61939999833703 ], [ 357627.424800001084805, 256335.337999999523163 ], [ 357625.828299999237061, 256333.42509999871254 ], [ 357626.68860000371933, 256327.099300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404150200", "MAP": "D9-7270-T003", "PARCEL_NAM": "7", "ACRE": ".314", "LONGITUDE": -64.91806505, "LATITUDE": 18.33623739, "OBJECTID_1": 19552, "PARCEL_NO_": "105404150200", "Tax_Legal_": "ESTATE THOMAS 3,7, & 8 KINGS QTR", "Name": "ST. THOMAS PROPERTIES, LLC", "Address": "8000 NISKY CENTER", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1074200, "Improved_V": 3365000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.20432222599999, "SHAPE_Area": 1283.9550301899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360120.703599996864796, 256352.403999999165535 ], [ 360132.340300001204014, 256359.367600001394749 ], [ 360207.303900003433228, 256299.457800000905991 ], [ 360198.520700000226498, 256289.253400001674891 ], [ 360120.703599996864796, 256352.403999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303310300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94335243, "LATITUDE": 18.33639332, "OBJECTID_1": 11268, "PARCEL_NO_": "105303310300", "Tax_Legal_": "HONDURAS 6A CROWN PRINCE QTR", "Name": "GIL, JOSE R. & MARIA A", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48700, "Improved_V": 52100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.442240321300005, "SHAPE_Area": 342.96656596299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357504.328699998557568, 256302.666400000452995 ], [ 357497.082699999213219, 256301.340599998831749 ], [ 357479.887599997222424, 256332.019499998539686 ], [ 357489.505800001323223, 256338.853199999779463 ], [ 357500.2162000015378, 256312.131999999284744 ], [ 357504.328699998557568, 256302.666400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303321400", "MAP": "D3-390-T82", "PARCEL_NAM": "19-29", "ACRE": "3,122 sq ft", "LONGITUDE": -64.94232879, "LATITUDE": 18.3364624, "OBJECTID_1": 11293, "PARCEL_NO_": "105303321400", "Tax_Legal_": "HONDURAS 19-29 CROWN PRINCE QTR.", "Name": "JOHN EVAN GUMBS REVOCABLE FAMILY TRUST", "Address": "PO Box 454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040454, "Country": "United States", "Land_Value": 19200, "Improved_V": 27400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.141569073900001, "SHAPE_Area": 249.81124923600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357604.095799997448921, 256334.20380000025034 ], [ 357610.549500003457069, 256334.553800001740456 ], [ 357612.185699999332428, 256325.714000001549721 ], [ 357612.451999999582767, 256323.887800000607967 ], [ 357611.840400002896786, 256323.851799998432398 ], [ 357606.256899997591972, 256323.048900000751019 ], [ 357599.696000002324581, 256322.105500001460314 ], [ 357594.585299998521805, 256323.049100000411272 ], [ 357589.411399997770786, 256326.927799999713898 ], [ 357585.905699998140335, 256330.830400001257658 ], [ 357584.582800000905991, 256332.94709999859333 ], [ 357588.612499997019768, 256333.138999998569489 ], [ 357592.917199999094009, 256333.343899998813868 ], [ 357604.095799997448921, 256334.20380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303260400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94397794, "LATITUDE": 18.33641531, "OBJECTID_1": 11174, "PARCEL_NO_": "105303260400", "Tax_Legal_": "HONDURAS 4F CROWN PRINCE QTR", "Name": "FRENCHTOWN VILLAS INC", "Address": "PO Box 12232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74700, "Improved_V": 143800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.02830085, "SHAPE_Area": 378.62629072599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357416.197899997234344, 256330.442800000309944 ], [ 357430.668300002813339, 256335.627399999648333 ], [ 357437.295100003480911, 256314.994500000029802 ], [ 357425.241700001060963, 256310.040699999779463 ], [ 357420.4003000035882, 256310.423300001770258 ], [ 357417.959700003266335, 256312.9364 ], [ 357416.197899997234344, 256330.442800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404190100", "MAP": "D9-7282-T003", "PARCEL_NAM": "14-94", "ACRE": ".27", "LONGITUDE": -64.91696256, "LATITUDE": 18.33632727, "OBJECTID_1": 19600, "PARCEL_NO_": "105404190100", "Tax_Legal_": "14-94 REM.ESTATE THOMAS 6E NEW QTR", "Name": "LOCKHART, ALFRED H", "Address": "PO Box 714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 274400, "Improved_V": 302700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.790820212, "SHAPE_Area": 919.941731 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360260.967699997127056, 256335.643300000578165 ], [ 360268.190700002014637, 256341.782800000160933 ], [ 360267.463100001215935, 256343.7010000012815 ], [ 360280.99549999833107, 256357.478399999439716 ], [ 360303.782600000500679, 256332.966899998486042 ], [ 360289.385899998247623, 256319.127999998629093 ], [ 360283.678800001740456, 256326.4695999994874 ], [ 360273.28660000115633, 256315.829799998551607 ], [ 360261.838200002908707, 256334.523499999195337 ], [ 360260.967699997127056, 256335.643300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503062300", "MAP": "B9-107-T64", "PARCEL_NAM": "13-3", "ACRE": null, "LONGITUDE": -64.91239852, "LATITUDE": 18.33635529, "OBJECTID_1": 20229, "PARCEL_NO_": "105503062300", "Tax_Legal_": "EST THOMAS 13 3 NEW QTR", "Name": "BROWN, JOHN", "Address": "PO Box 303602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22300, "Improved_V": 146300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.1039598837, "SHAPE_Area": 345.86244425699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360773.940099999308586, 256346.046000000089407 ], [ 360768.277999997138977, 256329.802499998360872 ], [ 360767.579599998891354, 256328.192600000649691 ], [ 360753.912299998104572, 256336.573800001293421 ], [ 360754.496899999678135, 256338.3445999994874 ], [ 360760.491400003433228, 256359.034699998795986 ], [ 360766.234899997711182, 256353.943900000303984 ], [ 360773.940099999308586, 256346.046000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503023000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91127831, "LATITUDE": 18.33644418, "OBJECTID_1": 20021, "PARCEL_NO_": "105503023000", "Tax_Legal_": "14P-9 EST THOMAS 6E NEW QTR", "Name": "PRINCE, ARTHUR E", "Address": "PO Box 10093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17100, "Improved_V": 220300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.202478938699997, "SHAPE_Area": 406.11562672000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360895.425399996340275, 256360.185199998319149 ], [ 360889.9358000010252, 256341.986200001090765 ], [ 360878.618699997663498, 256345.271000001579523 ], [ 360867.301500000059605, 256348.555900000035763 ], [ 360874.436099998652935, 256362.968699999153614 ], [ 360884.10639999806881, 256363.681099999696016 ], [ 360895.425399996340275, 256360.185199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503022200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91205338, "LATITUDE": 18.33641784, "OBJECTID_1": 20013, "PARCEL_NO_": "105503022200", "Tax_Legal_": "14E EST THOMAS 6E NEW QTR", "Name": "JORDAN, HENDRICKSON & URIS", "Address": "14E Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24800, "Improved_V": 148800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.090612475300006, "SHAPE_Area": 476.4970173 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360816.500299997627735, 256348.562300000339746 ], [ 360808.478500001132488, 256343.641499999910593 ], [ 360796.448499999940395, 256335.94370000064373 ], [ 360788.290100000798702, 256347.064899999648333 ], [ 360781.780299998819828, 256353.977699998766184 ], [ 360806.716600000858307, 256361.147900000214577 ], [ 360809.126599997282028, 256362.223099999129772 ], [ 360816.500299997627735, 256348.562300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91170323, "LATITUDE": 18.33640417, "OBJECTID_1": 20019, "PARCEL_NO_": "105503022800", "Tax_Legal_": "14QG EST THOMAS 6E NEW QTR", "Name": "FRANCIS, ALBERT E.", "Address": "PO Box 7432", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18900, "Improved_V": 138600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.450582854999993, "SHAPE_Area": 439.64468014400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360852.791500002145767, 256348.015000000596046 ], [ 360837.58669999986887, 256334.380499999970198 ], [ 360821.313000001013279, 256351.557000000029802 ], [ 360838.155599996447563, 256362.249499998986721 ], [ 360852.791500002145767, 256348.015000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503031600", "MAP": "F9-2227-T68", "PARCEL_NAM": "14NA", "ACRE": null, "LONGITUDE": -64.91073229, "LATITUDE": 18.33628046, "OBJECTID_1": 20074, "PARCEL_NO_": "105503031600", "Tax_Legal_": "14NA&14NC ESTATE THOMAS 6E NEW QTR", "Name": "CALLWOOD, ALEXIS & CHERISSE CALLWOOD LETTSOME", "Address": "PO Box 1624", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75300, "Improved_V": 171200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.41592706200001, "SHAPE_Area": 1174.7573134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360963.898100003600121, 256344.8108000010252 ], [ 360957.068400003015995, 256318.048799999058247 ], [ 360919.357699997723103, 256325.281100001186132 ], [ 360919.097900003194809, 256326.392799999564886 ], [ 360919.063799999654293, 256330.403299998492002 ], [ 360919.755000002682209, 256343.918999999761581 ], [ 360921.959399998188019, 256354.384399998933077 ], [ 360963.898100003600121, 256344.8108000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404150200", "MAP": "D9-7270-T003", "PARCEL_NAM": "8", "ACRE": ".143", "LONGITUDE": -64.91816003, "LATITUDE": 18.33618049, "OBJECTID_1": 19552, "PARCEL_NO_": "105404150200", "Tax_Legal_": "ESTATE THOMAS 3,7, & 8 KINGS QTR", "Name": "ST. THOMAS PROPERTIES, LLC", "Address": "8000 NISKY CENTER", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1074200, "Improved_V": 3365000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.22436221300001, "SHAPE_Area": 960.03414805099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360111.55179999768734, 256346.927499998360872 ], [ 360120.703599996864796, 256352.403999999165535 ], [ 360198.520700000226498, 256289.253400001674891 ], [ 360192.932300001382828, 256282.663800001144409 ], [ 360190.498999997973442, 256284.332600001245737 ], [ 360111.55179999768734, 256346.927499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91108563, "LATITUDE": 18.33639036, "OBJECTID_1": 20026, "PARCEL_NO_": "105503023500", "Tax_Legal_": "14P-10 EST THOMAS NEW QTR", "Name": "NORFORD, FREDERICK S. & JENNIFER", "Address": "PO Box 842", "City": "CHARLOTTE AMALIE", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17100, "Improved_V": 211000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.534594520900001, "SHAPE_Area": 388.83857713100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360912.566500000655651, 256335.838599998503923 ], [ 360902.059299997985363, 256338.707899998873472 ], [ 360889.9358000010252, 256341.986200001090765 ], [ 360895.425399996340275, 256360.185199998319149 ], [ 360914.022699996829033, 256354.215599998831749 ], [ 360912.471199996769428, 256347.025800000876188 ], [ 360912.566500000655651, 256335.838599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105303310200", "MAP": "D3-328-T75", "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.94345056, "LATITUDE": 18.33585278, "OBJECTID_1": 11267, "PARCEL_NO_": "105303310200", "Tax_Legal_": "HONDURAS ESTATE 1 CROWN PRINCE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 657900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 549.22183231600002, "SHAPE_Area": 6817.6766871199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357476.092600002884865, 256209.554200001060963 ], [ 357472.888999998569489, 256206.994800001382828 ], [ 357444.450400002300739, 256249.603900000452995 ], [ 357445.037399999797344, 256258.062600001692772 ], [ 357450.284199997782707, 256304.757199998944998 ], [ 357452.633000001311302, 256313.009100001305342 ], [ 357479.887599997222424, 256332.019499998539686 ], [ 357497.082699999213219, 256301.340599998831749 ], [ 357520.002899996936321, 256261.209300000220537 ], [ 357509.616099998354912, 256249.936299998313189 ], [ 357498.460799999535084, 256234.22410000115633 ], [ 357492.055200003087521, 256228.894299998879433 ], [ 357486.472199998795986, 256221.671500001102686 ], [ 357478.473800003528595, 256214.006599999964237 ], [ 357476.092600002884865, 256209.554200001060963 ] ] ], [ [ [ 357505.145099997520447, 256206.83669999986887 ], [ 357487.623800002038479, 256181.15089999884367 ], [ 357475.343900002539158, 256202.793099999427795 ], [ 357478.526000000536442, 256207.885299999266863 ], [ 357487.3378000035882, 256214.712499998509884 ], [ 357501.797499999403954, 256221.163600001484156 ], [ 357521.917599998414516, 256225.761300001293421 ], [ 357515.526399999856949, 256218.742899999022484 ], [ 357505.145099997520447, 256206.83669999986887 ] ] ], [ [ [ 357507.393200002610683, 256226.908900000154972 ], [ 357494.535300001502037, 256221.737500000745058 ], [ 357494.513700000941753, 256224.270399998873472 ], [ 357504.124799996614456, 256231.948399998247623 ], [ 357521.642499998211861, 256258.05629999935627 ], [ 357533.099899999797344, 256238.307300001382828 ], [ 357526.706900000572205, 256231.5 ], [ 357507.393200002610683, 256226.908900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91025205, "LATITUDE": 18.33639585, "OBJECTID_1": 20081, "PARCEL_NO_": "105503032500", "Tax_Legal_": "14R-7 EST THOMAS NEW QTR", "Name": "NORMIL, MANETA & LEWIS, C & W", "Address": "PO Box 302382", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.678938385199999, "SHAPE_Area": 412.92546743700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361001.910800002515316, 256354.934999998658895 ], [ 361010.112400002777576, 256338.747900001704693 ], [ 361006.879900000989437, 256339.565799999982119 ], [ 360972.140100002288818, 256347.302999999374151 ], [ 360975.277300000190735, 256357.6722999997437 ], [ 361001.910800002515316, 256354.934999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303300200", "MAP": "F9-1867-T66", "PARCEL_NAM": "8A", "ACRE": null, "LONGITUDE": -64.94423747, "LATITUDE": 18.33637166, "OBJECTID_1": 11249, "PARCEL_NO_": "105303300200", "Tax_Legal_": "HONDURAS 8A CROWN PRINCE QTR", "Name": "SERGE, WILLIAM, MONA, BRANDY, T", "Address": "P.O. BOX 1705", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53100, "Improved_V": 75400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.273552885100003, "SHAPE_Area": 360.04876500300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357405.89919999986887, 256308.826900001615286 ], [ 357404.211499996483326, 256306.277399998158216 ], [ 357387.688699997961521, 256309.835299998521805 ], [ 357387.726599998772144, 256311.776500001549721 ], [ 357387.978299997746944, 256324.660799998790026 ], [ 357408.974200002849102, 256326.490299999713898 ], [ 357409.070500001311302, 256315.185699999332428 ], [ 357405.89919999986887, 256308.826900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503063100", "MAP": "B9-107-T64", "PARCEL_NAM": "13-5", "ACRE": null, "LONGITUDE": -64.91271899, "LATITUDE": 18.3363119, "OBJECTID_1": 20236, "PARCEL_NO_": "105503063100", "Tax_Legal_": "THOMAS ESTATE 13-5 & 13-1A NEW QTR", "Name": "MORGAN, MALCOLM & MERLE", "Address": "PO Box 8415", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 155200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.497107253300001, "SHAPE_Area": 452.49582366800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360739.929300002753735, 256344.558100000023842 ], [ 360732.087399996817112, 256318.529399998486042 ], [ 360719.091099999845028, 256329.611000001430511 ], [ 360726.14469999819994, 256353.522300001233816 ], [ 360741.497000001370907, 256349.848299998790026 ], [ 360739.929300002753735, 256344.558100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303320200", "MAP": "D9-7280-T003", "PARCEL_NAM": "22", "ACRE": ".04", "LONGITUDE": -64.94250255, "LATITUDE": 18.33637751, "OBJECTID_1": 11276, "PARCEL_NO_": "105303320200", "Tax_Legal_": "22&23 HONDURAS KRONP QTR", "Name": "ILLIS, DAPHNE", "Address": "GAMLE GADE 7A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9800, "Improved_V": 46000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.947229344999997, "SHAPE_Area": 222.97068617400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357589.653899997472763, 256320.252300001680851 ], [ 357589.729500003159046, 256311.386999998241663 ], [ 357572.782499998807907, 256312.936999998986721 ], [ 357575.883699998259544, 256327.527800001204014 ], [ 357589.608999997377396, 256325.529199998825788 ], [ 357589.653899997472763, 256320.252300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404150500", "MAP": "D9-6359-T97", "PARCEL_NAM": "9 REM", "ACRE": "1.8", "LONGITUDE": -64.91834211, "LATITUDE": 18.33589431, "OBJECTID_1": 19553, "PARCEL_NO_": "105404150500", "Tax_Legal_": "6 & 9 EST. THOMAS NEW QTR", "Name": "PLESSEN ENTERPRISES INC", "Address": "P.o. Box 8707", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 1635800, "Improved_V": 157400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.21436889400002, "SHAPE_Area": 5842.7190307299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360101.180100001394749, 256340.720899999141693 ], [ 360111.55179999768734, 256346.927499998360872 ], [ 360190.498999997973442, 256284.332600001245737 ], [ 360154.570900000631809, 256242.241999998688698 ], [ 360148.163599997758865, 256237.1233000010252 ], [ 360142.5337999984622, 256235.3885000012815 ], [ 360136.08330000191927, 256235.335700001567602 ], [ 360127.993199996650219, 256238.435899998992682 ], [ 360123.115800000727177, 256243.03999999910593 ], [ 360087.125500001013279, 256302.9070999994874 ], [ 360114.408900000154972, 256318.540300000458956 ], [ 360101.180100001394749, 256340.720899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90996583, "LATITUDE": 18.33634851, "OBJECTID_1": 20067, "PARCEL_NO_": "105503030700", "Tax_Legal_": "14RM EST THOMAS 6E NEW QTR", "Name": "HALPERN, ARTHUR & TERRY", "Address": "306 Whittaker Point Rd", "City": "Oriental", "State": "North Carolina", "Zip": 28571, "Country": "United States", "Land_Value": 31000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.553139339699996, "SHAPE_Area": 477.08895054099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361010.112400002777576, 256338.747900001704693 ], [ 361001.910800002515316, 256354.934999998658895 ], [ 361005.139600001275539, 256354.539200000464916 ], [ 361030.970399998128414, 256351.373100001364946 ], [ 361039.200699999928474, 256331.808800000697374 ], [ 361012.536700002849102, 256338.134500000625849 ], [ 361010.112400002777576, 256338.747900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503022700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91183854000001, "LATITUDE": 18.33630736, "OBJECTID_1": 20018, "PARCEL_NO_": "105503022700", "Tax_Legal_": "ESTATE 14GA 6E NEW QTR", "Name": "DONOVAN, JENNETTAH & TAMARCA T", "Address": "PO Box 7365", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010365, "Country": "United States", "Land_Value": 18300, "Improved_V": 158600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.443320814499998, "SHAPE_Area": 391.98811875500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360837.58669999986887, 256334.380499999970198 ], [ 360824.777400001883507, 256323.509899999946356 ], [ 360808.478500001132488, 256343.641499999910593 ], [ 360816.500299997627735, 256348.562300000339746 ], [ 360821.313000001013279, 256351.557000000029802 ], [ 360837.58669999986887, 256334.380499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503062400", "MAP": null, "PARCEL_NAM": "13-4", "ACRE": null, "LONGITUDE": -64.91225184, "LATITUDE": 18.33624113, "OBJECTID_1": 20230, "PARCEL_NO_": "105503062400", "Tax_Legal_": "13 4 ESTATE THOMAS NEW QTR", "Name": "PETERS, GENEVIEVE", "Address": "PO Box 8928", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.423598301699997, "SHAPE_Area": 350.60508484399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360793.254199996590614, 256324.184900000691414 ], [ 360786.252499997615814, 256319.772100001573563 ], [ 360783.81530000269413, 256318.236000001430511 ], [ 360782.095799997448921, 256319.290500000119209 ], [ 360769.132399998605251, 256327.240299999713898 ], [ 360767.579599998891354, 256328.192600000649691 ], [ 360768.277999997138977, 256329.802499998360872 ], [ 360773.940099999308586, 256346.046000000089407 ], [ 360776.818300001323223, 256343.095899999141693 ], [ 360789.650600001215935, 256329.734400000423193 ], [ 360793.254199996590614, 256324.184900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303310400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94316775, "LATITUDE": 18.33630954, "OBJECTID_1": 11269, "PARCEL_NO_": "105303310400", "Tax_Legal_": "HONURAS 6B CROWN PRINCE QTR", "Name": "WILLIAMS, JR. , HENRY H", "Address": "PO Box 10471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.271400150999995, "SHAPE_Area": 254.29003240399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357523.647799998521805, 256306.624200001358986 ], [ 357504.328699998557568, 256302.666400000452995 ], [ 357500.2162000015378, 256312.131999999284744 ], [ 357515.455200001597404, 256321.755899999290705 ], [ 357523.647799998521805, 256306.624200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503023300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91156908000001, "LATITUDE": 18.33622475, "OBJECTID_1": 20024, "PARCEL_NO_": "105503023300", "Tax_Legal_": "EST THOMAS 14QK NEW QTR", "Name": "DESSUITT, M & CHILDREN", "Address": "PO Box 304572", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22800, "Improved_V": 160100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.220165117500002, "SHAPE_Area": 579.21615249299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360850.707000002264977, 256308.734499998390675 ], [ 360837.58669999986887, 256334.380499999970198 ], [ 360852.791500002145767, 256348.015000000596046 ], [ 360858.484300002455711, 256342.361999999731779 ], [ 360860.94990000128746, 256336.893800001591444 ], [ 360862.675899997353554, 256323.609000001102686 ], [ 360861.099200002849102, 256319.374200001358986 ], [ 360857.915299996733665, 256314.493000000715256 ], [ 360850.707000002264977, 256308.734499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303320200", "MAP": "D9-7280-T003", "PARCEL_NAM": "23", "ACRE": ".0048", "LONGITUDE": -64.94241895, "LATITUDE": 18.33633324, "OBJECTID_1": 11276, "PARCEL_NO_": "105303320200", "Tax_Legal_": "22&23 HONDURAS KRONP QTR", "Name": "ILLIS, DAPHNE", "Address": "GAMLE GADE 7A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9800, "Improved_V": 46000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 21.731681136300001, "SHAPE_Area": 14.2971798867 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357589.729500003159046, 256311.386999998241663 ], [ 357589.653899997472763, 256320.252300001680851 ], [ 357592.956500001251698, 256311.202300000935793 ], [ 357589.729500003159046, 256311.386999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91028683, "LATITUDE": 18.33626225, "OBJECTID_1": 20109, "PARCEL_NO_": "105503035600", "Tax_Legal_": "14N-11 EST THOMAS 6E NEW QTR", "Name": "GAULVE, JUANITA R", "Address": "4820 Osgood St", "City": "Bronx", "State": "New York", "Zip": 10470, "Country": "United States", "Land_Value": 32000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.82930962099999, "SHAPE_Area": 665.59518335099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360972.140100002288818, 256347.302999999374151 ], [ 361006.879900000989437, 256339.565799999982119 ], [ 361006.896099999547005, 256337.66609999909997 ], [ 361000.587700001895428, 256320.938099998980761 ], [ 360967.451499998569489, 256329.743900001049042 ], [ 360972.140100002288818, 256347.302999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503063000", "MAP": "B9-107-T64", "PARCEL_NAM": "13-6", "ACRE": null, "LONGITUDE": -64.91259664, "LATITUDE": 18.33622159, "OBJECTID_1": 20235, "PARCEL_NO_": "105503063000", "Tax_Legal_": "13-6 ESTATE THOMAS NEW QUARTER", "Name": "MADURO, DAISY YVONNE", "Address": "Po Box 623101", "City": "Oviedo", "State": "Florida", "Zip": 32762, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.769726004600003, "SHAPE_Area": 440.66688791899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360754.496899999678135, 256338.3445999994874 ], [ 360745.063900001347065, 256309.76969999819994 ], [ 360732.087399996817112, 256318.529399998486042 ], [ 360739.929300002753735, 256344.558100000023842 ], [ 360754.496899999678135, 256338.3445999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503023400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91126307, "LATITUDE": 18.33623127, "OBJECTID_1": 20025, "PARCEL_NO_": "105503023400", "Tax_Legal_": "14P-11 EST THOMAS NEW QTR", "Name": "Tatem, Darion & Yvette M. (Evans)", "Address": "18202 S Bradshaw Ct", "City": "Accokeek", "State": "Maryland", "Zip": 20607, "Country": "United States", "Land_Value": 30400, "Improved_V": 67700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.853841446800004, "SHAPE_Area": 636.06493874900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360869.07599999755621, 256329.572000000625849 ], [ 360878.618699997663498, 256345.271000001579523 ], [ 360889.9358000010252, 256341.986200001090765 ], [ 360902.059299997985363, 256338.707899998873472 ], [ 360886.958700001239777, 256312.830899998545647 ], [ 360869.950599998235703, 256321.557599999010563 ], [ 360869.07599999755621, 256329.572000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503022600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91195678, "LATITUDE": 18.33622566, "OBJECTID_1": 20017, "PARCEL_NO_": "105503022600", "Tax_Legal_": "14G EST THOMAS LE NEW QTR", "Name": "TURNBULL, MAXWELL", "Address": "P.O. BOX 4811", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20800, "Improved_V": 169000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.889218855899998, "SHAPE_Area": 403.39167082799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360824.777400001883507, 256323.509899999946356 ], [ 360812.769000001251698, 256313.279199998825788 ], [ 360796.448499999940395, 256335.94370000064373 ], [ 360808.478500001132488, 256343.641499999910593 ], [ 360824.777400001883507, 256323.509899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303300300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94428701, "LATITUDE": 18.33625201, "OBJECTID_1": 11250, "PARCEL_NO_": "105303300300", "Tax_Legal_": "HONDURAS 8D KROMP QTR", "Name": "CAMILLE VICTORIA EMANUEL TRUST", "Address": "PO Box 1484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10000, "Improved_V": 31400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.507358711499997, "SHAPE_Area": 122.808976372 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357404.211499996483326, 256306.277399998158216 ], [ 357403.510799996554852, 256305.218800000846386 ], [ 357396.288199998438358, 256301.148899998515844 ], [ 357388.282600000500679, 256294.328400000929832 ], [ 357388.243100002408028, 256298.972100000828505 ], [ 357387.641599997878075, 256307.423000000417233 ], [ 357387.688699997961521, 256309.835299998521805 ], [ 357404.211499996483326, 256306.277399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503062900", "MAP": "B9-107-T64", "PARCEL_NAM": "13-7", "ACRE": null, "LONGITUDE": -64.91247099, "LATITUDE": 18.33614497, "OBJECTID_1": 20234, "PARCEL_NO_": "105503062900", "Tax_Legal_": "13-7&13-8A EST THOMAS 6E NEW QTR", "Name": "TURNBULL, EVELYN", "Address": "PO Box 12064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32700, "Improved_V": 105000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.024954906399998, "SHAPE_Area": 437.33659419600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360769.132399998605251, 256327.240299999713898 ], [ 360756.418799996376038, 256302.052200000733137 ], [ 360745.063900001347065, 256309.76969999819994 ], [ 360753.912299998104572, 256336.573800001293421 ], [ 360769.132399998605251, 256327.240299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404181100", "MAP": "D9-7279-T003", "PARCEL_NAM": "2", "ACRE": "2.10", "LONGITUDE": -64.91739528, "LATITUDE": 18.33564256, "OBJECTID_1": 19587, "PARCEL_NO_": "105404181100", "Tax_Legal_": "ESTATE THOMAS 2 6H NEW QTR.", "Name": "P. D. C. M. ASSOCIATES SE", "Address": "PO Box 190858", "City": "San Juan", "State": "Puerto Rico", "Zip": 919, "Country": "United States", "Land_Value": 1038900, "Improved_V": 2409700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 369.43909046700003, "SHAPE_Area": 8345.77401732 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360252.359499998390675, 256216.655699998140335 ], [ 360233.180699996650219, 256196.23369999974966 ], [ 360209.684299997985363, 256209.340300001204014 ], [ 360171.543099999427795, 256237.736900001764297 ], [ 360233.804300002753735, 256312.340300001204014 ], [ 360254.586800001561642, 256333.830800000578165 ], [ 360264.386600002646446, 256319.345600001513958 ], [ 360271.762100003659725, 256305.473799999803305 ], [ 360279.141199998557568, 256291.179800000041723 ], [ 360279.967299997806549, 256288.864500001072884 ], [ 360279.985299997031689, 256286.753800000995398 ], [ 360283.289599999785423, 256277.49269999936223 ], [ 360289.120800003409386, 256255.58669999986887 ], [ 360252.359499998390675, 256216.655699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91108504, "LATITUDE": 18.33616258, "OBJECTID_1": 20029, "PARCEL_NO_": "105503023800", "Tax_Legal_": "14P-12 EST THOMAS NEW QTR", "Name": "LETTSOME, PETRONELLA ADELLA", "Address": "PO Box 11731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22800, "Improved_V": 73100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.017924058899993, "SHAPE_Area": 485.68711599599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360903.095799997448921, 256311.696400001645088 ], [ 360895.030799999833107, 256311.841499999165535 ], [ 360888.578500002622604, 256311.999800000339746 ], [ 360886.958700001239777, 256312.830899998545647 ], [ 360902.059299997985363, 256338.707899998873472 ], [ 360912.566500000655651, 256335.838599998503923 ], [ 360911.864500001072884, 256323.589400000870228 ], [ 360915.192299999296665, 256311.584300000220537 ], [ 360903.095799997448921, 256311.696400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404190300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91676458000001, "LATITUDE": 18.33614312, "OBJECTID_1": 19603, "PARCEL_NO_": "105404190300", "Tax_Legal_": "11E EST THOMAS 6E NEW QTR", "Name": "LOCKHART, SR. , ALFRED H", "Address": "PO Box 714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 196000, "Improved_V": 61400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.023372166, "SHAPE_Area": 568.15181567800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360302.416400000452995, 256304.035900000482798 ], [ 360294.38740000128746, 256299.959399998188019 ], [ 360287.058700002729893, 256308.343199998140335 ], [ 360293.462399996817112, 256313.88399999961257 ], [ 360289.385899998247623, 256319.127999998629093 ], [ 360303.782600000500679, 256332.966899998486042 ], [ 360320.885999999940395, 256313.052999999374151 ], [ 360302.416400000452995, 256304.035900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503036400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90990305, "LATITUDE": 18.33615565, "OBJECTID_1": 20117, "PARCEL_NO_": "105503036400", "Tax_Legal_": "14N-14 EST THOMAS NEW QTR", "Name": "BROWNE, CARLTON J", "Address": "PO Box 12125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.95499142600001, "SHAPE_Area": 669.93818118399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361049.076099999248981, 256308.458200000226498 ], [ 361006.255199998617172, 256318.240200001746416 ], [ 361009.431900002062321, 256323.965799998492002 ], [ 361015.85360000282526, 256327.395799998193979 ], [ 361015.835699997842312, 256329.506599999964237 ], [ 361016.615000002086163, 256332.679400000721216 ], [ 361014.190700002014637, 256333.29280000180006 ], [ 361012.563699997961521, 256334.968299999833107 ], [ 361012.536700002849102, 256338.134500000625849 ], [ 361039.200699999928474, 256331.808800000697374 ], [ 361046.623000003397465, 256312.448899999260902 ], [ 361049.076099999248981, 256308.458200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91175273, "LATITUDE": 18.33607491, "OBJECTID_1": 20023, "PARCEL_NO_": "105503023200", "Tax_Legal_": "ESTATE THOMAS 14F 6E NEW QTR", "Name": "FOY, JULIAN", "Address": "PO Box 7031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.670997931, "SHAPE_Area": 835.12036901299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360850.707000002264977, 256308.734499998390675 ], [ 360831.486800000071526, 256293.167399998754263 ], [ 360826.639899998903275, 256294.183200001716614 ], [ 360812.769000001251698, 256313.279199998825788 ], [ 360824.777400001883507, 256323.509899999946356 ], [ 360837.58669999986887, 256334.380499999970198 ], [ 360850.707000002264977, 256308.734499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304070100", "MAP": "B3-145-T45", "PARCEL_NAM": "1 (MARINE RAILWAY)", "ACRE": "6.54", "LONGITUDE": -64.93814743, "LATITUDE": 18.33482888, "OBJECTID_1": 11392, "PARCEL_NO_": "105304070100", "Tax_Legal_": "HASSEL ISLAND 1 SOUTHSIDE QTR", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 466100, "Improved_V": 288400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1145.9697423299999, "SHAPE_Area": 32454.5711925 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358210.781199999153614, 256282.569200001657009 ], [ 358176.376599997282028, 256215.565200001001358 ], [ 358097.691200003027916, 256222.663199998438358 ], [ 357990.264300003647804, 255959.816899999976158 ], [ 357987.028200000524521, 255961.057000000029802 ], [ 357920.364000000059605, 256024.683800000697374 ], [ 357921.848899997770786, 256039.683600001037121 ], [ 357915.265299998223782, 256055.250599998980761 ], [ 357914.367299996316433, 256066.00899999961257 ], [ 357916.712499998509884, 256074.683100000023842 ], [ 357923.816500000655651, 256092.684200000017881 ], [ 357929.387000001966953, 256101.38459999859333 ], [ 357933.389799997210503, 256104.794900000095367 ], [ 357947.034100003540516, 256112.294799998402596 ], [ 357951.841399997472763, 256115.922699999064207 ], [ 357958.27759999781847, 256117.664200000464916 ], [ 357972.679700002074242, 256130.869800001382828 ], [ 357983.053900003433228, 256143.620400000363588 ], [ 357998.984099999070168, 256166.759899999946356 ], [ 358010.173600003123283, 256178.46169999986887 ], [ 358014.948499999940395, 256185.888999998569489 ], [ 358016.521600000560284, 256190.545899998396635 ], [ 358017.229000002145767, 256202.161899998784065 ], [ 358021.217399999499321, 256207.260800000280142 ], [ 358026.024700000882149, 256210.888700000941753 ], [ 358038.072599999606609, 256216.475699998438358 ], [ 358040.461000002920628, 256220.08390000090003 ], [ 358040.432199999690056, 256223.461100000888109 ], [ 358042.766699999570847, 256233.401700001209974 ], [ 358045.938000001013279, 256239.760400000959635 ], [ 358047.471500001847744, 256249.061099998652935 ], [ 358057.797100000083447, 256267.51069999858737 ], [ 358072.174099996685982, 256283.671500001102686 ], [ 358088.964599996805191, 256300.485300000756979 ], [ 358094.581799998879433, 256303.697700001299381 ], [ 358094.527800001204014, 256310.030099999159575 ], [ 358100.168399997055531, 256310.498399998992682 ], [ 358104.241300001740456, 256305.676600001752377 ], [ 358082.002599999308586, 256265.809000000357628 ], [ 358085.251299999654293, 256263.091400001198053 ], [ 358089.237899996340275, 256268.401299998164177 ], [ 358094.039800003170967, 256272.662500001490116 ], [ 358096.458700001239777, 256272.682300001382828 ], [ 358097.282999999821186, 256270.578099999576807 ], [ 358096.496500000357628, 256268.249699998646975 ], [ 358097.398100003600121, 256257.069099999964237 ], [ 358099.811700001358986, 256257.722100000828505 ], [ 358103.760499998927116, 256267.464699998497963 ], [ 358127.584799997508526, 256310.511700000613928 ], [ 358129.994800001382828, 256311.586899999529123 ], [ 358190.543700002133846, 256303.216499999165535 ], [ 358190.561700001358986, 256301.105799999088049 ], [ 358188.968900002539158, 256298.770700000226498 ], [ 358198.678800001740456, 256294.839400000870228 ], [ 358208.442699998617172, 256284.575699999928474 ], [ 358210.781199999153614, 256282.569200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303310500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94310158, "LATITUDE": 18.33615399, "OBJECTID_1": 11270, "PARCEL_NO_": "105303310500", "Tax_Legal_": "ESTATE HONDURAS 7A REM. & 7B-1 CROWN PRINCE QTR", "Name": "VENTURA, IGNACIO & FONSECA, ALTAGRACIA", "Address": "PO BOX 1882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.453109712300005, "SHAPE_Area": 479.21761882300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357534.29169999808073, 256287.712900001555681 ], [ 357515.001299999654293, 256280.377900000661612 ], [ 357513.394100002944469, 256279.7314000017941 ], [ 357504.328699998557568, 256302.666400000452995 ], [ 357523.647799998521805, 256306.624200001358986 ], [ 357534.29169999808073, 256287.712900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404190200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91694083, "LATITUDE": 18.3360986, "OBJECTID_1": 19602, "PARCEL_NO_": "105404190200", "Tax_Legal_": "11D EST THOMAS 6E NEW QTR", "Name": "LOCKHART, ALFRED", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 196000, "Improved_V": 185800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.92313226, "SHAPE_Area": 352.244861754 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360294.38740000128746, 256299.959399998188019 ], [ 360283.147600002586842, 256294.167899999767542 ], [ 360275.737899996340275, 256312.050200000405312 ], [ 360273.28660000115633, 256315.829799998551607 ], [ 360283.678800001740456, 256326.4695999994874 ], [ 360289.385899998247623, 256319.127999998629093 ], [ 360293.462399996817112, 256313.88399999961257 ], [ 360287.058700002729893, 256308.343199998140335 ], [ 360294.38740000128746, 256299.959399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303310700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9430083, "LATITUDE": 18.33589777, "OBJECTID_1": 11272, "PARCEL_NO_": "105303310700", "Tax_Legal_": "HONDURAS 7 CROWN PRINCE QTR", "Name": "BLANCHARD, GEO & MARI", "Address": "PO Box 302714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32100, "Improved_V": 47800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.07098271199999, "SHAPE_Area": 888.90545687300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357521.642499998211861, 256258.05629999935627 ], [ 357520.002899996936321, 256261.209300000220537 ], [ 357497.082699999213219, 256301.340599998831749 ], [ 357504.328699998557568, 256302.666400000452995 ], [ 357513.394100002944469, 256279.7314000017941 ], [ 357515.001299999654293, 256280.377900000661612 ], [ 357519.948899999260902, 256267.541700001806021 ], [ 357539.208700001239777, 256278.46510000154376 ], [ 357550.669699996709824, 256258.2939000017941 ], [ 357533.099899999797344, 256238.307300001382828 ], [ 357521.642499998211861, 256258.05629999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503031600", "MAP": "F9-2688-T70", "PARCEL_NAM": "14NC", "ACRE": null, "LONGITUDE": -64.91075971, "LATITUDE": 18.33609235, "OBJECTID_1": 20074, "PARCEL_NO_": "105503031600", "Tax_Legal_": "14NA&14NC ESTATE THOMAS 6E NEW QTR", "Name": "CALLWOOD, ALEXIS & CHERISSE CALLWOOD LETTSOME", "Address": "PO Box 1624", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75300, "Improved_V": 171200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.492378110700002, "SHAPE_Area": 469.250919598 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360957.068400003015995, 256318.048799999058247 ], [ 360954.735699996352196, 256307.897199999541044 ], [ 360924.062600001692772, 256307.915500000119209 ], [ 360921.608599998056889, 256315.647599998861551 ], [ 360919.357699997723103, 256325.281100001186132 ], [ 360957.068400003015995, 256318.048799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503062800", "MAP": "B9-107-T64", "PARCEL_NAM": "13-8", "ACRE": null, "LONGITUDE": -64.91234596, "LATITUDE": 18.33605854, "OBJECTID_1": 20233, "PARCEL_NO_": "105503062800", "Tax_Legal_": "THOMAS ESTATE 13-8&13-7A No.6E NEW QTR.", "Name": "HODGE, ERIC & OTHERS", "Address": "Mario Hodge", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24800, "Improved_V": 263600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.670782430100004, "SHAPE_Area": 464.15177008699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360782.095799997448921, 256319.290500000119209 ], [ 360771.817900002002716, 256292.890099998563528 ], [ 360756.418799996376038, 256302.052200000733137 ], [ 360769.132399998605251, 256327.240299999713898 ], [ 360782.095799997448921, 256319.290500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303300400", "MAP": "F9-366-T59", "PARCEL_NAM": "5C", "ACRE": null, "LONGITUDE": -64.94423357, "LATITUDE": 18.33607803, "OBJECTID_1": 11251, "PARCEL_NO_": "105303300400", "Tax_Legal_": "HONDURAS 5C CROWN PRINCE QTR", "Name": "Geraldine Quetel, Stanley Quetel, and Joshua Quetel", "Address": "3Q-1 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.612587170400005, "SHAPE_Area": 319.99048704400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357403.775200001895428, 256274.190200001001358 ], [ 357386.842600002884865, 256274.051600001752377 ], [ 357388.433700002729893, 256276.597800001502037 ], [ 357390.780699998140335, 256285.060699999332428 ], [ 357394.765500001609325, 256290.581799998879433 ], [ 357401.174599997699261, 256295.489399999380112 ], [ 357410.015299998223782, 256298.9391999989748 ], [ 357403.775200001895428, 256274.190200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91032834000001, "LATITUDE": 18.33606644, "OBJECTID_1": 20110, "PARCEL_NO_": "105503035700", "Tax_Legal_": "14N-12 EST THOMAS 6E NEW QTR", "Name": "PETERSEN, K. & N. BLD. #17", "Address": "5700 P M P Gdns", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26600, "Improved_V": 156000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.162491053, "SHAPE_Area": 689.85070426899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360999.167400002479553, 256298.339400000870228 ], [ 360967.656499996781349, 256305.680900000035763 ], [ 360965.986299999058247, 256312.422200001776218 ], [ 360967.4712999984622, 256327.421999998390675 ], [ 360999.801100000739098, 256318.609600000083447 ], [ 360999.167400002479553, 256298.339400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503062700", "MAP": null, "PARCEL_NAM": "13-9", "ACRE": "0.10", "LONGITUDE": -64.91219946, "LATITUDE": 18.33599382, "OBJECTID_1": 20232, "PARCEL_NO_": "105503062700", "Tax_Legal_": "13 9 ESTATE THOMAS NEW QTR", "Name": "FOUR WINDS INVESTMENTS INC", "Address": "333 US Highway 46", "City": "Fairfield", "State": "New Jersey", "Zip": 7004, "Country": "United States", "Land_Value": 32700, "Improved_V": 208300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.39650337, "SHAPE_Area": 460.41711708999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360798.287699997425079, 256309.361000001430511 ], [ 360790.391800001263618, 256289.664599999785423 ], [ 360771.817900002002716, 256292.890099998563528 ], [ 360782.095799997448921, 256319.290500000119209 ], [ 360798.287699997425079, 256309.361000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503062000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91277633, "LATITUDE": 18.33603894, "OBJECTID_1": 20226, "PARCEL_NO_": "105503062000", "Tax_Legal_": "14-19 ESTATE THOMAS 6E NEW QTR", "Name": "MALONE, JOSEPH and MAVIS O.", "Address": "PO Box 7146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14700, "Improved_V": 165200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.052851554300005, "SHAPE_Area": 341.605785239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360716.941899999976158, 256297.929400000721216 ], [ 360712.725100003182888, 256319.637499999254942 ], [ 360717.555799998342991, 256320.52140000090003 ], [ 360729.734999999403954, 256310.699700001627207 ], [ 360743.52139999717474, 256301.524399999529123 ], [ 360716.941899999976158, 256297.929400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503027000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91136217, "LATITUDE": 18.33600512, "OBJECTID_1": 20059, "PARCEL_NO_": "105503027000", "Tax_Legal_": "14P-8 EST THOMAS NEW QTR", "Name": "DARON LETTSOME", "Address": "PO Box 8881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011881, "Country": "United States", "Land_Value": 17100, "Improved_V": 209600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.660798536800002, "SHAPE_Area": 552.06520488800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360876.701399996876717, 256286.360300000756979 ], [ 360857.198899999260902, 256303.932500001043081 ], [ 360861.203500002622604, 256307.131700001657009 ], [ 360865.197300001978874, 256311.597300000488758 ], [ 360868.377599999308586, 256316.900699999183416 ], [ 360869.950599998235703, 256321.557599999010563 ], [ 360886.958700001239777, 256312.830899998545647 ], [ 360888.578500002622604, 256311.999800000339746 ], [ 360876.701399996876717, 256286.360300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503061900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91293723, "LATITUDE": 18.33604167, "OBJECTID_1": 20225, "PARCEL_NO_": "105503061900", "Tax_Legal_": "ESTATE THOMAS 14 18 NEW QTR", "Name": "CONCEPCION, SARAH", "Address": "4038 Bounce Dr", "City": "Orlando", "State": "Florida", "Zip": 32812, "Country": "United States", "Land_Value": 16000, "Improved_V": 164600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.570155722899997, "SHAPE_Area": 337.18045202799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360701.638099998235703, 256295.90430000051856 ], [ 360697.42679999768734, 256316.979200001806021 ], [ 360712.725100003182888, 256319.637499999254942 ], [ 360716.941899999976158, 256297.929400000721216 ], [ 360701.638099998235703, 256295.90430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404080700", "MAP": null, "PARCEL_NAM": "20 of 1st AVENUE", "ACRE": null, "LONGITUDE": -64.91927951, "LATITUDE": 18.33918953, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.980592701199996, "SHAPE_Area": 312.84096522099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360031.633100003004074, 256664.267299998551607 ], [ 360043.763800002634525, 256660.14469999819994 ], [ 360035.110100001096725, 256634.74269999936223 ], [ 360025.369599997997284, 256642.262299999594688 ], [ 360025.342699997127056, 256645.42850000038743 ], [ 360031.633100003004074, 256664.267299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404080700", "MAP": null, "PARCEL_NAM": "22 of 1st AVENUE", "ACRE": null, "LONGITUDE": -64.91916282, "LATITUDE": 18.33912788, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.622692161900005, "SHAPE_Area": 442.11411817499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360058.322400003671646, 256654.986600000411272 ], [ 360047.287500001490116, 256625.131999999284744 ], [ 360035.110100001096725, 256634.74269999936223 ], [ 360043.763800002634525, 256660.14469999819994 ], [ 360054.278200000524521, 256656.431099999696016 ], [ 360058.322400003671646, 256654.986600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404080700", "MAP": null, "PARCEL_NAM": "24 of 1st AVENUE", "ACRE": null, "LONGITUDE": -64.91901162000001, "LATITUDE": 18.33904386, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.88385382200001, "SHAPE_Area": 740.9981458 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360047.287500001490116, 256625.131999999284744 ], [ 360058.322400003671646, 256654.986600000411272 ], [ 360077.738600000739098, 256647.546100001782179 ], [ 360066.727099999785423, 256614.947599999606609 ], [ 360062.71000000089407, 256613.225900001823902 ], [ 360047.287500001490116, 256625.131999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94042959, "LATITUDE": 18.33806142, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 518.23073498500003, "SHAPE_Area": 10822.219766099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357801.205200001597404, 256411.327799998223782 ], [ 357794.48650000244379, 256421.399399999529123 ], [ 357785.214599996805191, 256460.330200001597404 ], [ 357769.517499998211861, 256451.061799999326468 ], [ 357769.364500001072884, 256459.808800000697374 ], [ 357769.21000000089407, 256468.972300000488758 ], [ 357768.034400001168251, 256487.452300000935793 ], [ 357765.461499996483326, 256498.685100000351667 ], [ 357764.298100002110004, 256506.902199998497963 ], [ 357762.958599999547005, 256516.812600001692772 ], [ 357758.878499999642372, 256522.478799998760223 ], [ 357755.590300001204014, 256529.84010000154376 ], [ 357752.327299997210503, 256534.246399998664856 ], [ 357746.076800003647804, 256556.562800001353025 ], [ 357745.812200002372265, 256556.166000001132488 ], [ 357743.762699998915195, 256555.118900001049042 ], [ 357742.428599998354912, 256560.340999998152256 ], [ 357741.51799999922514, 256572.576900001615286 ], [ 357738.255000002682209, 256576.983199998736382 ], [ 357744.142499998211861, 256577.552799999713898 ], [ 357755.990199998021126, 256577.550500001758337 ], [ 357770.503899998962879, 256577.669300001114607 ], [ 357789.034699998795986, 256579.509700000286102 ], [ 357802.611900001764297, 256581.901700001209974 ], [ 357862.147799998521805, 256481.187600001692772 ], [ 357852.851300001144409, 256471.530000001192093 ], [ 357835.054700002074242, 256445.430300001055002 ], [ 357822.59009999781847, 256461.536400001496077 ], [ 357818.950199998915195, 256459.034499999135733 ], [ 357828.139799997210503, 256447.554299999028444 ], [ 357823.852799996733665, 256443.997299998998642 ], [ 357808.894799999892712, 256424.201400000602007 ], [ 357807.307199999690056, 256421.233199998736382 ], [ 357806.536899998784065, 256417.004900000989437 ], [ 357801.205200001597404, 256411.327799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303160100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94376278, "LATITUDE": 18.33865779, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.324738837300004, "SHAPE_Area": 76.252816558800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357456.850100003182888, 256575.221799999475479 ], [ 357458.489699997007847, 256572.068799998611212 ], [ 357434.356100000441074, 256565.327399998903275 ], [ 357435.140799999237061, 256567.866999998688698 ], [ 357436.742700003087521, 256569.146600000560284 ], [ 357456.850100003182888, 256575.221799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303150300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94394031, "LATITUDE": 18.33860363, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 16.466349665, "SHAPE_Area": 13.616575750699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357431.136200003325939, 256564.66780000180006 ], [ 357425.517200000584126, 256561.666499998420477 ], [ 357425.490199998021126, 256564.832699999213219 ], [ 357430.315499998629093, 256566.349800001829863 ], [ 357431.136200003325939, 256564.66780000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303220800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94178992000001, "LATITUDE": 18.33803712, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.003274474400001, "SHAPE_Area": 176.35518199800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357663.323100000619888, 256494.014199998229742 ], [ 357651.856499999761581, 256496.391199998557568 ], [ 357648.528800003230572, 256508.396299999207258 ], [ 357656.539800003170967, 256514.583599999547005 ], [ 357659.949000000953674, 256506.635499998927116 ], [ 357663.323100000619888, 256494.014199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "14", "ACRE": null, "LONGITUDE": -64.947182, "LATITUDE": 18.33790499, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.140554417399997, "SHAPE_Area": 153.21472931400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357074.525100000202656, 256485.237100001424551 ], [ 357095.331000000238419, 256490.012800000607967 ], [ 357096.39360000193119, 256481.712499998509884 ], [ 357078.670900002121925, 256479.667599998414516 ], [ 357075.123499996960163, 256479.253199998289347 ], [ 357074.525100000202656, 256485.237100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94053591, "LATITUDE": 18.33745064, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.577662700499999, "SHAPE_Area": 100.93102718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357794.48650000244379, 256421.399399999529123 ], [ 357794.364000000059605, 256421.583000000566244 ], [ 357791.897100001573563, 256420.794199999421835 ], [ 357783.645099997520447, 256455.2511 ], [ 357785.214599996805191, 256460.330200001597404 ], [ 357794.48650000244379, 256421.399399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": "G9-1778-T71", "PARCEL_NAM": "14-89", "ACRE": null, "LONGITUDE": -64.91209387000001, "LATITUDE": 18.33741563, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.776815450800001, "SHAPE_Area": 505.42022739700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360804.765100002288818, 256451.467500001192093 ], [ 360790.473200000822544, 256447.339299999177456 ], [ 360777.769299998879433, 256468.103900000452995 ], [ 360798.336300000548363, 256471.688900001347065 ], [ 360798.517599999904633, 256471.693799998611212 ], [ 360798.509300000965595, 256471.719099998474121 ], [ 360802.415700003504753, 256472.399999998509884 ], [ 360811.04110000282526, 256453.2804000005126 ], [ 360804.765100002288818, 256451.467500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105304011000", "MAP": "A9-422-T93", "PARCEL_NAM": "61", "ACRE": "0.12", "LONGITUDE": -64.94075637, "LATITUDE": 18.33701885, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.89865938600001, "SHAPE_Area": 621.26151728900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357771.428800001740456, 256377.169199999421835 ], [ 357770.559500001370907, 256373.836800001561642 ], [ 357750.822300001978874, 256380.565099999308586 ], [ 357751.998599998652935, 256383.85359999909997 ], [ 357755.508799999952316, 256393.419100001454353 ], [ 357757.515100002288818, 256398.886399999260902 ], [ 357759.070200003683567, 256405.654100000858307 ], [ 357759.040700003504753, 256406.149500001221895 ], [ 357781.135999999940395, 256406.146699998527765 ], [ 357779.805900000035763, 256402.251200001686811 ], [ 357775.050899997353554, 256388.325199998915195 ], [ 357771.428800001740456, 256377.169199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "10530271500", "MAP": "D3-390-T82", "PARCEL_NAM": "19-14", "ACRE": "1,425 sq ft", "LONGITUDE": -64.94208757, "LATITUDE": 18.33695721, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.093570716000002, "SHAPE_Area": 299.34187648699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357633.508400000631809, 256378.450800001621246 ], [ 357632.665399998426437, 256374.424899999052286 ], [ 357613.275399997830391, 256376.64640000090003 ], [ 357614.510799996554852, 256379.885800000280142 ], [ 357618.581799998879433, 256390.560199998319149 ], [ 357618.851499997079372, 256391.182000000029802 ], [ 357628.768299996852875, 256392.809200000017881 ], [ 357633.596900001168251, 256393.602899998426437 ], [ 357635.1621999964118, 256393.136100001633167 ], [ 357632.67509999871254, 256381.610399998724461 ], [ 357634.291400000452995, 256381.201499998569489 ], [ 357633.508400000631809, 256378.450800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303321600", "MAP": "D3-390-T82", "PARCEL_NAM": "19-19", "ACRE": null, "LONGITUDE": -64.94198554, "LATITUDE": 18.33650134, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.930998673800005, "SHAPE_Area": 296.45027823300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357646.131099998950958, 256340.870299998670816 ], [ 357646.832000002264977, 256328.952899999916553 ], [ 357646.899099998176098, 256327.143699999898672 ], [ 357628.032999999821186, 256324.804299999028444 ], [ 357627.198100000619888, 256324.755199998617172 ], [ 357626.68860000371933, 256327.099300000816584 ], [ 357625.828299999237061, 256333.42509999871254 ], [ 357627.424800001084805, 256335.337999999523163 ], [ 357627.379699997603893, 256340.61939999833703 ], [ 357644.180299997329712, 256341.14919999986887 ], [ 357646.131099998950958, 256340.870299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": "F9-2740-T71 / B9-107-T64", "PARCEL_NAM": "REM PORTION OF 14", "ACRE": null, "LONGITUDE": -64.91210725000001, "LATITUDE": 18.33610485, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.701485827799999, "SHAPE_Area": 152.42206713300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360804.2516999989748, 256310.203099999576807 ], [ 360795.786899998784065, 256303.122800000011921 ], [ 360798.287699997425079, 256309.361000001430511 ], [ 360785.418099999427795, 256317.253100000321865 ], [ 360783.81530000269413, 256318.236000001430511 ], [ 360786.252499997615814, 256319.772100001573563 ], [ 360793.254199996590614, 256324.184900000691414 ], [ 360796.794299997389317, 256320.341699998825788 ], [ 360804.2516999989748, 256310.203099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503061800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9130768, "LATITUDE": 18.33601924, "OBJECTID_1": 20224, "PARCEL_NO_": "105503061800", "Tax_Legal_": "14 17 ESTATE THOMAS NEW QTR", "Name": "REY, ANDRIC & MARION", "Address": "PO Box 9185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14700, "Improved_V": 143400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.112905360300005, "SHAPE_Area": 311.904836897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360701.638099998235703, 256295.90430000051856 ], [ 360694.393899999558926, 256294.367400001734495 ], [ 360687.147900000214577, 256293.041499998420477 ], [ 360683.737400002777576, 256314.75620000064373 ], [ 360697.42679999768734, 256316.979200001806021 ], [ 360701.638099998235703, 256295.90430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404190500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91664545, "LATITUDE": 18.3360111, "OBJECTID_1": 19605, "PARCEL_NO_": "105404190500", "Tax_Legal_": "11C ESTATE THOMAS 6E NEW QUARTER", "Name": "JAMIL. MOHAMMED & ABDULGHANI, Y.", "Address": "PO Box 11669", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.2407837648, "SHAPE_Area": 368.14531363200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360312.838200002908707, 256289.011199999600649 ], [ 360312.092799998819828, 256288.541299998760223 ], [ 360310.49099999666214, 256290.523899998515844 ], [ 360300.461000002920628, 256302.937199998646975 ], [ 360300.367499999701977, 256302.995600000023842 ], [ 360302.416400000452995, 256304.035900000482798 ], [ 360320.885999999940395, 256313.052999999374151 ], [ 360327.429999999701977, 256302.129700001329184 ], [ 360328.739000000059605, 256299.034499999135733 ], [ 360312.838200002908707, 256289.011199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503062600", "MAP": "F9-2740-T71", "PARCEL_NAM": "14-91", "ACRE": "3,978 sq ft", "LONGITUDE": -64.91200687, "LATITUDE": 18.3359209, "OBJECTID_1": 20231, "PARCEL_NO_": "105503062600", "Tax_Legal_": "14-91 ESTATE THOMAS 6E NEW QTR", "Name": "FAHIE, CELIA L.& CRAWLEY,C.& TURNBULL,C.& BLAIR,C.", "Address": "PO Box 2775", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 20600, "Improved_V": 171300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.381606618299998, "SHAPE_Area": 430.605857544 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360825.11540000140667, 256283.827100001275539 ], [ 360790.391800001263618, 256289.664599999785423 ], [ 360795.786899998784065, 256303.122800000011921 ], [ 360804.2516999989748, 256310.203099999576807 ], [ 360808.568300001323223, 256304.334399998188019 ], [ 360825.11540000140667, 256283.827100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90992911, "LATITUDE": 18.33598478, "OBJECTID_1": 20111, "PARCEL_NO_": "105503035800", "Tax_Legal_": "14N-15 EST THOMAS 6E NEW QTR", "Name": "DUCREAY, JOSEPH & VICTORIA MYRIAM", "Address": "PO Box 7932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26600, "Improved_V": 270300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.33443951700001, "SHAPE_Area": 846.69163455299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361051.228399999439716, 256300.59180000051856 ], [ 361047.548000000417233, 256298.524300001561642 ], [ 361042.7550999969244, 256293.207800000905991 ], [ 361004.843999996781349, 256294.586199998855591 ], [ 361005.475900001823902, 256315.067499998956919 ], [ 361006.255199998617172, 256318.240200001746416 ], [ 361049.076099999248981, 256308.458200000226498 ], [ 361049.224399998784065, 256304.652399998158216 ], [ 361051.228399999439716, 256300.59180000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503061700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9132176, "LATITUDE": 18.33599786, "OBJECTID_1": 20223, "PARCEL_NO_": "105503061700", "Tax_Legal_": "14-16 ESTATE THOMAS NEW QTR", "Name": "WADE, REBECCA", "Address": "PO Box 502213", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 14700, "Improved_V": 54200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.467935056499996, "SHAPE_Area": 347.05277910799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360687.147900000214577, 256293.041499998420477 ], [ 360671.041400000452995, 256290.587600000202656 ], [ 360668.439099997282028, 256312.097899999469519 ], [ 360683.737400002777576, 256314.75620000064373 ], [ 360687.147900000214577, 256293.041499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033200", "MAP": "F9-2688-T70", "PARCEL_NAM": "14NM", "ACRE": null, "LONGITUDE": -64.91074571, "LATITUDE": 18.33598275, "OBJECTID_1": 20088, "PARCEL_NO_": "105503033200", "Tax_Legal_": "THOMAS ESTATE 14NM NEW QTR.", "Name": "CALLWOOD-DANIELS, CHANEEL", "Address": "PO Box 1624", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16500, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.793663862499997, "SHAPE_Area": 283.59956718199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360957.303199999034405, 256303.223000001162291 ], [ 360929.02929999679327, 256294.600400000810623 ], [ 360925.751599997282028, 256302.593699999153614 ], [ 360924.062600001692772, 256307.915500000119209 ], [ 360954.735699996352196, 256307.897199999541044 ], [ 360956.371699996292591, 256305.166400000452995 ], [ 360957.303199999034405, 256303.223000001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303310600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94302787, "LATITUDE": 18.33601251, "OBJECTID_1": 11271, "PARCEL_NO_": "105303310600", "Tax_Legal_": "7B REM. & 7A-1 HONDURAS KRONPRINDSENS QTR", "Name": "CHRISTINE J. GREAUX & CHRISTINA L. SHOW", "Address": "PO BOX 308176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 21000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.010114030899999, "SHAPE_Area": 257.863607366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357515.001299999654293, 256280.377900000661612 ], [ 357534.29169999808073, 256287.712900001555681 ], [ 357539.208700001239777, 256278.46510000154376 ], [ 357519.948899999260902, 256267.541700001806021 ], [ 357515.001299999654293, 256280.377900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503061600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91336384, "LATITUDE": 18.33597961, "OBJECTID_1": 20222, "PARCEL_NO_": "105503061600", "Tax_Legal_": "14-15 ESTATE THOMAS NEW QTR", "Name": "JOSEPH, LISA & KNIGHT, B.", "Address": "14-15 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13300, "Improved_V": 126000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.753966757300006, "SHAPE_Area": 323.64907156800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360669.430600002408028, 256290.363400001078844 ], [ 360655.730499997735023, 256289.406899999827147 ], [ 360653.140699997544289, 256309.439599998295307 ], [ 360668.439099997282028, 256312.097899999469519 ], [ 360671.041400000452995, 256290.587600000202656 ], [ 360669.430600002408028, 256290.363400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503023900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91116434, "LATITUDE": 18.33590091, "OBJECTID_1": 20030, "PARCEL_NO_": "105503023900", "Tax_Legal_": "14PG EST THOMAS 6E NEW QTR", "Name": "LOWE, LUCIA SEWER", "Address": "3313 Cilly Ave", "City": "Spring Hill", "State": "Florida", "Zip": 34609, "Country": "United States", "Land_Value": 24700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.441370132000003, "SHAPE_Area": 487.98595363499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360895.030799999833107, 256311.841499999165535 ], [ 360903.095799997448921, 256311.696400001645088 ], [ 360903.356499999761581, 256281.089999999850988 ], [ 360879.982400000095367, 256279.843199998140335 ], [ 360895.030799999833107, 256311.841499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503024000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91100148, "LATITUDE": 18.33591214, "OBJECTID_1": 20031, "PARCEL_NO_": "105503024000", "Tax_Legal_": "14PH EST THOMAS 6E NEW QTR", "Name": "MICHEL, ORLRICHE & MASELORE JOLYS", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 59000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.708119808700005, "SHAPE_Area": 510.19626477100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360903.095799997448921, 256311.696400001645088 ], [ 360915.192299999296665, 256311.584300000220537 ], [ 360917.69030000269413, 256302.316700000315905 ], [ 360925.926100000739098, 256282.119100000709295 ], [ 360903.356499999761581, 256281.089999999850988 ], [ 360903.095799997448921, 256311.696400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503061500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91352715, "LATITUDE": 18.3359515, "OBJECTID_1": 20221, "PARCEL_NO_": "105503061500", "Tax_Legal_": "14-14 EST THOMAS 6E NEW QTR", "Name": "SCATLIFFE, ERNEST EDWIN", "Address": "PO Box 12416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32700, "Improved_V": 206000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.656578769099994, "SHAPE_Area": 411.98735491500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360655.730499997735023, 256289.406899999827147 ], [ 360638.041900001466274, 256283.351500000804663 ], [ 360633.816200003027916, 256306.114999998360872 ], [ 360653.140699997544289, 256309.439599998295307 ], [ 360655.730499997735023, 256289.406899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404150700", "MAP": "D9-6359-T97", "PARCEL_NAM": "9A", "ACRE": ".41", "LONGITUDE": -64.91849233000001, "LATITUDE": 18.33559182, "OBJECTID_1": 19555, "PARCEL_NO_": "105404150700", "Tax_Legal_": "6A & 9A EST. THOMAS 6G KINGS QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 370.634395966, "SHAPE_Area": 1598.07468137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360190.498999997973442, 256284.332600001245737 ], [ 360192.932300001382828, 256282.663800001144409 ], [ 360159.396200001239777, 256243.759199999272823 ], [ 360157.00789999961853, 256240.151000000536442 ], [ 360155.416799999773502, 256237.604899998754263 ], [ 360137.863200001418591, 256215.718600001186132 ], [ 360134.654100000858307, 256213.792500000447035 ], [ 360129.006300002336502, 256214.168400000780821 ], [ 360125.764899998903275, 256216.041799999773502 ], [ 360087.3125, 256280.954900000244379 ], [ 360077.51630000025034, 256295.01799999922514 ], [ 360076.693800002336502, 256296.911100000143051 ], [ 360082.310999996960163, 256300.123500000685453 ], [ 360087.125500001013279, 256302.9070999994874 ], [ 360123.115800000727177, 256243.03999999910593 ], [ 360127.993199996650219, 256238.435899998992682 ], [ 360136.08330000191927, 256235.335700001567602 ], [ 360142.5337999984622, 256235.3885000012815 ], [ 360148.163599997758865, 256237.1233000010252 ], [ 360154.570900000631809, 256242.241999998688698 ], [ 360190.498999997973442, 256284.332600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404190400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91682346, "LATITUDE": 18.33591019, "OBJECTID_1": 19604, "PARCEL_NO_": "105404190400", "Tax_Legal_": "4AA ESTATE THOMAS NEW QUARTER", "Name": "JAMIL MOHAMMED, SAYR JAMIL and EISA JAMIL", "Address": "PO Box 11669", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 245000, "Improved_V": 629000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.262001858399998, "SHAPE_Area": 435.39590604099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360312.092799998819828, 256288.541299998760223 ], [ 360290.378499999642372, 256274.853399999439716 ], [ 360289.747299998998642, 256276.701200000941753 ], [ 360283.147600002586842, 256294.167899999767542 ], [ 360294.38740000128746, 256299.959399998188019 ], [ 360300.367499999701977, 256302.995600000023842 ], [ 360300.461000002920628, 256302.937199998646975 ], [ 360310.49099999666214, 256290.523899998515844 ], [ 360312.092799998819828, 256288.541299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503061400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91369596, "LATITUDE": 18.33591321, "OBJECTID_1": 20220, "PARCEL_NO_": "105503061400", "Tax_Legal_": "ESTATE THOMAS 14 13 NEW QTR", "Name": "BERNICE TURNBULL FRANCIS", "Address": "PO Box 305525", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035525, "Country": "United States", "Land_Value": 20900, "Improved_V": 206300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.092932669800007, "SHAPE_Area": 431.39068744999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360625.977799996733665, 256279.664099998772144 ], [ 360621.150700002908707, 256278.3581000007689 ], [ 360616.100699998438358, 256303.22580000013113 ], [ 360633.816200003027916, 256306.114999998360872 ], [ 360638.041900001466274, 256283.351500000804663 ], [ 360625.977799996733665, 256279.664099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404190400", "MAP": "D9-6867-T000", "PARCEL_NAM": "4A REM", "ACRE": "0.24", "LONGITUDE": -64.91666247000001, "LATITUDE": 18.33579591, "OBJECTID_1": 19604, "PARCEL_NO_": "105404190400", "Tax_Legal_": "4AA ESTATE THOMAS NEW QUARTER", "Name": "JAMIL MOHAMMED, SAYR JAMIL and EISA JAMIL", "Address": "PO Box 11669", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 245000, "Improved_V": 629000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.49455228100001, "SHAPE_Area": 960.40144556300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360318.049199998378754, 256267.433600001037121 ], [ 360296.377599999308586, 256255.646099999547005 ], [ 360294.709299996495247, 256262.176300000399351 ], [ 360290.378499999642372, 256274.853399999439716 ], [ 360312.838200002908707, 256289.011199999600649 ], [ 360328.739000000059605, 256299.034499999135733 ], [ 360337.305399999022484, 256278.779100000858307 ], [ 360318.049199998378754, 256267.433600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503061300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91387194000001, "LATITUDE": 18.3358782, "OBJECTID_1": 20219, "PARCEL_NO_": "105503061300", "Tax_Legal_": "14 12 ESTATE THOMAS NEW QTR", "Name": "TESTAMARK, JR., JOSEPH A. & MELVIN SR. & HODGE, JUDITH T.", "Address": "PO Box 11392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 40200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.664844304499994, "SHAPE_Area": 537.00439751700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360621.150700002908707, 256278.3581000007689 ], [ 360602.650499999523163, 256272.929299999028444 ], [ 360595.165299996733665, 256299.676899999380112 ], [ 360616.100699998438358, 256303.22580000013113 ], [ 360621.150700002908707, 256278.3581000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91029483, "LATITUDE": 18.33583381, "OBJECTID_1": 20108, "PARCEL_NO_": "105503035400", "Tax_Legal_": "14N-13 EST THOMAS NEW QTR", "Name": "THOMAS, LEONA", "Address": "1360 E 102nd St", "City": "Brooklyn", "State": "New York", "Zip": 11236, "Country": "United States", "Land_Value": 42500, "Improved_V": 187200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.05138426800001, "SHAPE_Area": 777.84454988599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360967.656499996781349, 256305.680900000035763 ], [ 360999.167400002479553, 256298.339400000870228 ], [ 360998.661399997770786, 256263.082699999213219 ], [ 360995.438000001013279, 256262.845199998468161 ], [ 360993.006399996578693, 256264.302999999374151 ], [ 360976.720200002193451, 256282.956999998539686 ], [ 360971.806800000369549, 256291.782699998468161 ], [ 360967.656499996781349, 256305.680900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91065858, "LATITUDE": 18.33587148, "OBJECTID_1": 20089, "PARCEL_NO_": "105503033300", "Tax_Legal_": "EST.THOMAS 14 NO & 14 N-19 6E NEW QTR", "Name": "AUSTIN BLYDEN & DELITA BLYDEN REVOC LIVING TRUST", "Address": "PO Box 1645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27200, "Improved_V": 189000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.992427158, "SHAPE_Area": 615.72331207000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360947.773800000548363, 256280.848200000822544 ], [ 360936.54559999704361, 256276.617199998348951 ], [ 360934.809900000691414, 256280.502999998629093 ], [ 360929.02929999679327, 256294.600400000810623 ], [ 360957.303199999034405, 256303.223000001162291 ], [ 360962.071199998259544, 256304.607799999415874 ], [ 360962.877999998629093, 256298.675700001418591 ], [ 360964.535599999129772, 256293.411899998784065 ], [ 360966.166199997067451, 256291.314399998635054 ], [ 360966.182300001382828, 256289.414599999785423 ], [ 360967.286100000143051, 256287.338599998503923 ], [ 360964.654200002551079, 256286.451099999248981 ], [ 360963.78320000320673, 256286.157400000840425 ], [ 360947.773800000548363, 256280.848200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503023700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91146629000001, "LATITUDE": 18.33584874, "OBJECTID_1": 20028, "PARCEL_NO_": "105503023700", "Tax_Legal_": "14PA-2 EST THOMAS NEW QTR", "Name": "PRINCE, ELIZABETH, CHARLES &", "Address": "P.O. BOX 4842", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15200, "Improved_V": 152400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.855787741399993, "SHAPE_Area": 471.21891205899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360867.988399997353554, 256267.923799999058247 ], [ 360857.380500003695488, 256282.613499999046326 ], [ 360847.587899997830391, 256296.25450000166893 ], [ 360857.198899999260902, 256303.932500001043081 ], [ 360876.701399996876717, 256286.360300000756979 ], [ 360867.988399997353554, 256267.923799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503061200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9140482, "LATITUDE": 18.33583872, "OBJECTID_1": 20218, "PARCEL_NO_": "105503061200", "Tax_Legal_": "14-11 ESTATE THOMAS NEW QTR", "Name": "FREEMAN, MARJORIE", "Address": "P.O. BOX 5365", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42500, "Improved_V": 163300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.761583759100006, "SHAPE_Area": 520.74895965600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360602.650499999523163, 256272.929299999028444 ], [ 360584.953000001609325, 256267.929299999028444 ], [ 360577.45160000026226, 256296.57660000026226 ], [ 360595.165299996733665, 256299.676899999380112 ], [ 360602.650499999523163, 256272.929299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91255185, "LATITUDE": 18.33584378, "OBJECTID_1": 20248, "PARCEL_NO_": "105503064300", "Tax_Legal_": "14 24 ESTATE THOMAS NEW QTR", "Name": "MARTENBOROUGH, COUSINS M", "Address": "PO Box 7683", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.83700349, "SHAPE_Area": 680.32096111700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360734.901900000870228, 256272.111900001764297 ], [ 360731.460900001227856, 256297.41499999910593 ], [ 360745.95830000191927, 256299.433499999344349 ], [ 360771.889799997210503, 256284.447000000625849 ], [ 360772.728500001132488, 256280.654100000858307 ], [ 360752.599500000476837, 256277.111900001764297 ], [ 360734.901900000870228, 256272.111900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503061100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91420704, "LATITUDE": 18.33580342, "OBJECTID_1": 20217, "PARCEL_NO_": "105503061100", "Tax_Legal_": "14 10 EST THOMAS NEW QTR", "Name": "MOLETO TURNBULL", "Address": "PO Box 12064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 151800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.7728722035, "SHAPE_Area": 496.66345322699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360584.953000001609325, 256267.929299999028444 ], [ 360571.276199996471405, 256264.228799998760223 ], [ 360568.058200001716614, 256263.3581000007689 ], [ 360565.51519999653101, 256277.902699999511242 ], [ 360562.153300002217293, 256293.918299999088049 ], [ 360577.45160000026226, 256296.57660000026226 ], [ 360584.953000001609325, 256267.929299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91276206000001, "LATITUDE": 18.33582454, "OBJECTID_1": 20254, "PARCEL_NO_": "105503064900", "Tax_Legal_": "14 23 ESTATE THOMAS NEW QTR", "Name": "JAMES, EULALIE", "Address": "P.O. BOX 4805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 148800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.346492668899998, "SHAPE_Area": 373.77482041899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360720.404500000178814, 256270.093400001525879 ], [ 360716.963500000536442, 256295.396499998867512 ], [ 360731.460900001227856, 256297.41499999910593 ], [ 360734.901900000870228, 256272.111900001764297 ], [ 360720.404500000178814, 256270.093400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304070200", "MAP": "D9-1419-T78", "PARCEL_NAM": "REM 2", "ACRE": "1.67", "LONGITUDE": -64.93646165, "LATITUDE": 18.3352995, "OBJECTID_1": 11393, "PARCEL_NO_": "105304070200", "Tax_Legal_": "HASSEL ISLAND 8A SOUTHSIDE QTR", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 351100, "Improved_V": 453600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 526.87585415199999, "SHAPE_Area": 9641.5245111299992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358225.760399997234344, 256269.638000000268221 ], [ 358229.54730000346899, 256269.393699999898672 ], [ 358251.990199998021126, 256271.2820999994874 ], [ 358253.297600001096725, 256270.628400001674891 ], [ 358255.766999997198582, 256266.706399999558926 ], [ 358259.180699996650219, 256261.767499998211861 ], [ 358263.756399996578693, 256255.666499998420477 ], [ 358269.058499999344349, 256247.967599999159575 ], [ 358272.835299998521805, 256243.246599998325109 ], [ 358277.12049999833107, 256236.128800000995398 ], [ 358280.025700002908707, 256230.971999999135733 ], [ 358282.785700000822544, 256227.122600000351667 ], [ 358283.547399997711182, 256226.417599998414516 ], [ 358262.184600003063679, 256198.992400001734495 ], [ 358224.055100001394749, 256133.214899998158216 ], [ 358216.888899996876717, 256120.852299999445677 ], [ 358163.401000000536442, 256190.294799998402596 ], [ 358176.376599997282028, 256215.565200001001358 ], [ 358204.946699999272823, 256271.206399999558926 ], [ 358214.585299998521805, 256261.1864 ], [ 358216.255800001323223, 256259.225400000810623 ], [ 358214.367399998009205, 256257.845400001853704 ], [ 358217.708499997854233, 256255.158100001513958 ], [ 358219.015799999237061, 256256.465399999171495 ], [ 358221.340000003576279, 256254.794900000095367 ], [ 358226.278899997472763, 256259.443300001323223 ], [ 358224.317900002002716, 256261.1864 ], [ 358223.809399999678135, 256260.968499999493361 ], [ 358223.30009999871254, 256261.388000000268221 ], [ 358224.76349999755621, 256262.28999999910593 ], [ 358234.486199997365475, 256251.671799998730421 ], [ 358237.246200002729893, 256252.325500000268221 ], [ 358245.919100001454353, 256261.057399999350309 ], [ 358246.025799997150898, 256269.417199999094009 ], [ 358233.251500003039837, 256268.231600001454353 ], [ 358225.591700002551079, 256268.39469999819994 ], [ 358224.489900000393391, 256268.935400001704693 ], [ 358213.158900000154972, 256278.708999998867512 ], [ 358211.171999998390675, 256279.084899999201298 ], [ 358209.759300000965595, 256280.579100001603365 ], [ 358210.781199999153614, 256282.569200001657009 ], [ 358211.752700001001358, 256279.561999998986721 ], [ 358213.423199996352196, 256279.344099998474121 ], [ 358217.635799996554852, 256276.293600000441074 ], [ 358225.044200003147125, 256269.684200000017881 ], [ 358225.760399997234344, 256269.638000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503065400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9129024, "LATITUDE": 18.33581421, "OBJECTID_1": 20259, "PARCEL_NO_": "105503065400", "Tax_Legal_": "14 22 EST THOMAS NEW QTR", "Name": "GRANT, CARMEN J", "Address": "3033 Bent Bow Ln", "City": "Middleburg", "State": "Florida", "Zip": 32068, "Country": "United States", "Land_Value": 24800, "Improved_V": 70700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.427238517899994, "SHAPE_Area": 397.09429083700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360705.905299998819828, 256268.285999998450279 ], [ 360701.638099998235703, 256295.90430000051856 ], [ 360716.963500000536442, 256295.396499998867512 ], [ 360720.404500000178814, 256270.093400001525879 ], [ 360705.905299998819828, 256268.285999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503061000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9143826, "LATITUDE": 18.33583957, "OBJECTID_1": 20216, "PARCEL_NO_": "105503061000", "Tax_Legal_": "14 9 EST THOMAS NEW QTR", "Name": "FREEMAN, UNELL & NATASHA", "Address": "2361 Cimmaron Ash Way", "City": "Apopka", "State": "Florida", "Zip": 32703, "Country": "United States", "Land_Value": 22900, "Improved_V": 320600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.406259346300004, "SHAPE_Area": 317.86157523700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360565.51519999653101, 256277.902699999511242 ], [ 360547.814099997282028, 256273.32490000128746 ], [ 360543.633299998939037, 256290.8114 ], [ 360562.153300002217293, 256293.918299999088049 ], [ 360565.51519999653101, 256277.902699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91163002, "LATITUDE": 18.3358221, "OBJECTID_1": 20027, "PARCEL_NO_": "105503023600", "Tax_Legal_": "14PA-1 EST THOMAS 6E NEW QTR", "Name": "DENNIS MACTAVIOUS SR. & OTHERS", "Address": "14PA-1 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14700, "Improved_V": 209200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.925168826100006, "SHAPE_Area": 272.41724587200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360847.587899997830391, 256296.25450000166893 ], [ 360857.380500003695488, 256282.613499999046326 ], [ 360842.942400000989437, 256273.629399999976158 ], [ 360835.615500003099442, 256281.802099999040365 ], [ 360835.575900003314018, 256286.445799998939037 ], [ 360847.587899997830391, 256296.25450000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303320300", "MAP": "G9-889-T66", "PARCEL_NAM": "21", "ACRE": null, "LONGITUDE": -64.9421252, "LATITUDE": 18.33562293, "OBJECTID_1": 11277, "PARCEL_NO_": "105303320300", "Tax_Legal_": "21 HONDURAS KRONPRINDSENS QUARTER", "Name": "BILKATPAT TRUST", "Address": "PO Box 1013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.09229749100001, "SHAPE_Area": 2104.3578709799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357606.889700002968311, 256190.148600000888109 ], [ 357607.205099999904633, 256247.779699999839067 ], [ 357607.179899998009205, 256250.7347999997437 ], [ 357608.634300000965595, 256269.322999998927116 ], [ 357641.714699998497963, 256267.060600001364946 ], [ 357638.910199999809265, 256217.641800001263618 ], [ 357606.889700002968311, 256190.148600000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503065500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9130413, "LATITUDE": 18.33580279, "OBJECTID_1": 20260, "PARCEL_NO_": "105503065500", "Tax_Legal_": "14 21 ESTATE THOMAS NEW QTR", "Name": "FAHIE, OLGA-LIFE INTEREST", "Address": "394-360 Hidden Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17400, "Improved_V": 166500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.796467297000007, "SHAPE_Area": 402.11474105999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360690.590700000524521, 256267.527399998158216 ], [ 360687.147900000214577, 256293.041499998420477 ], [ 360694.393899999558926, 256294.367400001734495 ], [ 360701.638099998235703, 256295.90430000051856 ], [ 360705.905299998819828, 256268.285999998450279 ], [ 360690.590700000524521, 256267.527399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503066100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9131953, "LATITUDE": 18.33579674, "OBJECTID_1": 20266, "PARCEL_NO_": "105503066100", "Tax_Legal_": "14 20 ESTATE THOMAS NEW QTR", "Name": "SMITH JONES, LISA L. & ROCHELLE M. SMITH", "Address": "PO Box 101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17400, "Improved_V": 202700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.644124996800002, "SHAPE_Area": 412.83636209500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360690.590700000524521, 256267.527399998158216 ], [ 360672.020400002598763, 256270.330699998885393 ], [ 360669.430600002408028, 256290.363400001078844 ], [ 360671.041400000452995, 256290.587600000202656 ], [ 360687.147900000214577, 256293.041499998420477 ], [ 360690.590700000524521, 256267.527399998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503060900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91452919, "LATITUDE": 18.33573274, "OBJECTID_1": 20215, "PARCEL_NO_": "105503060900", "Tax_Legal_": "THOMAS ESTATE 14-8 NEW QTR", "Name": "STOUT, DAVID A", "Address": "9354 Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.84669044100001, "SHAPE_Area": 602.78966509300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360551.971500001847744, 256258.582400001585484 ], [ 360543.931800000369549, 256255.772300001233816 ], [ 360534.284800000488758, 256252.315900001674891 ], [ 360527.528599999845028, 256288.146499998867512 ], [ 360543.633299998939037, 256290.8114 ], [ 360547.814099997282028, 256273.32490000128746 ], [ 360551.971500001847744, 256258.582400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90998039, "LATITUDE": 18.33580577, "OBJECTID_1": 20112, "PARCEL_NO_": "105503035900", "Tax_Legal_": "14N-16 ESTATE THOMAS 6E NEW QTR", "Name": "LIVERPOOL, CARMEN & ROLAND", "Address": "9256 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38200, "Improved_V": 222000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.057050019, "SHAPE_Area": 650.53404959500006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361042.7550999969244, 256293.207800000905991 ], [ 361034.772900000214577, 256283.643199998885393 ], [ 361028.417700000107288, 256272.403200000524521 ], [ 361004.221100002527237, 256273.049600001424551 ], [ 361004.843999996781349, 256294.586199998855591 ], [ 361042.7550999969244, 256293.207800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503066200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91347952, "LATITUDE": 18.33572639, "OBJECTID_1": 20267, "PARCEL_NO_": "105503066200", "Tax_Legal_": "EST THOMAS 14-25 NEW QTR", "Name": "DICKERSON, VIOLET", "Address": "PO Box 8446", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81900, "Improved_V": 49800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.287830512, "SHAPE_Area": 1103.2867602900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360671.269799999892712, 256263.780600000172853 ], [ 360656.815499998629093, 256256.696199998259544 ], [ 360642.361199997365475, 256249.611900001764297 ], [ 360636.630699999630451, 256259.697399999946356 ], [ 360625.977799996733665, 256279.664099998772144 ], [ 360638.041900001466274, 256283.351500000804663 ], [ 360655.730499997735023, 256289.406899999827147 ], [ 360669.430600002408028, 256290.363400001078844 ], [ 360672.020400002598763, 256270.330699998885393 ], [ 360659.078000001609325, 256275.079900000244379 ], [ 360656.722000002861023, 256267.6722999997437 ], [ 360671.269799999892712, 256263.780600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503060800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91470247, "LATITUDE": 18.33570106, "OBJECTID_1": 20214, "PARCEL_NO_": "105503060800", "Tax_Legal_": "14-7 EST THOMAS NEW QTR", "Name": "STOUT, HAROLD", "Address": "9354 Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.302031996, "SHAPE_Area": 759.04059886200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360524.637800000607967, 256248.859400000423193 ], [ 360517.40259999781847, 256246.267099998891354 ], [ 360505.788699999451637, 256284.379999998956919 ], [ 360527.528599999845028, 256288.146499998867512 ], [ 360534.284800000488758, 256252.315900001674891 ], [ 360524.637800000607967, 256248.859400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91060081000001, "LATITUDE": 18.33570377, "OBJECTID_1": 20090, "PARCEL_NO_": "105503033400", "Tax_Legal_": "14 NP&14N-18 EST.THOMAS 6E NEW QTR", "Name": "LETTSOME, WHITMORE & ELTERAH", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018580, "Country": "United States", "Land_Value": 45700, "Improved_V": 222500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.070785267700003, "SHAPE_Area": 572.31631517899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360971.624600000679493, 256266.880699999630451 ], [ 360945.935699999332428, 256258.678800001740456 ], [ 360945.469999998807907, 256259.69200000166893 ], [ 360943.018700003623962, 256263.471599999815226 ], [ 360941.361100003123283, 256268.735399998724461 ], [ 360938.098099999129772, 256273.141699999570847 ], [ 360936.54559999704361, 256276.617199998348951 ], [ 360947.773800000548363, 256280.848200000822544 ], [ 360963.78320000320673, 256286.157400000840425 ], [ 360971.013700000941753, 256268.382599998265505 ], [ 360971.624600000679493, 256266.880699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503060700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91487734, "LATITUDE": 18.33565061, "OBJECTID_1": 20213, "PARCEL_NO_": "105503060700", "Tax_Legal_": "14 6 ESTATE THOMAS NEW QTR", "Name": "LOPEZ, EULALIE", "Address": "14-6 Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.481067619, "SHAPE_Area": 774.95603539399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360501.323100000619888, 256240.647100001573563 ], [ 360498.911300003528595, 256239.782900001853704 ], [ 360488.07320000231266, 256281.490800000727177 ], [ 360505.788699999451637, 256284.379999998956919 ], [ 360517.40259999781847, 256246.267099998891354 ], [ 360501.323100000619888, 256240.647100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503060100", "MAP": "D9-679-T67", "PARCEL_NAM": "14-93", "ACRE": "0.63", "LONGITUDE": -64.91601826, "LATITUDE": 18.33562631, "OBJECTID_1": 20208, "PARCEL_NO_": "105503060100", "Tax_Legal_": "14-93 EST THOM&S 6E NEW QTR", "Name": "RAYDIA INC", "Address": "PO Box 1354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 184600, "Improved_V": 84700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.66243129600002, "SHAPE_Area": 3058.0584197399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360360.204700000584126, 256281.586399998515844 ], [ 360370.143200002610683, 256272.906800001859665 ], [ 360442.935900002717972, 256279.221500001847744 ], [ 360436.506999999284744, 256276.635800000280142 ], [ 360426.894199997186661, 256269.168800000101328 ], [ 360420.501199997961521, 256262.3614999987185 ], [ 360417.324500001966953, 256256.635999999940395 ], [ 360409.338699996471405, 256247.493599999696016 ], [ 360385.334600001573563, 256225.554499998688698 ], [ 360378.891199998557568, 256224.657400000840425 ], [ 360374.040799997746944, 256226.095300000160933 ], [ 360361.865199998021126, 256235.494899999350309 ], [ 360356.976999998092651, 256241.365499999374151 ], [ 360355.333800002932549, 256244.940600000321865 ], [ 360350.344800002872944, 256262.631700001657009 ], [ 360347.018899999558926, 256274.425700001418591 ], [ 360345.341499999165535, 256282.011300001293421 ], [ 360343.714500002563, 256283.686799999326468 ], [ 360342.873999997973442, 256287.690699998289347 ], [ 360341.243400000035763, 256289.788199998438358 ], [ 360333.9087999984622, 256306.670000001788139 ], [ 360360.204700000584126, 256281.586399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303310100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94370319, "LATITUDE": 18.33543668, "OBJECTID_1": 11266, "PARCEL_NO_": "105303310100", "Tax_Legal_": "5E HONDURAS KRONPRINDSENS QTR", "Name": "WILLIAMS, ADINA", "Address": "PO Box 8071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50800, "Improved_V": 59800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.651477669, "SHAPE_Area": 786.76433058199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357472.888999998569489, 256206.994800001382828 ], [ 357460.088699996471405, 256195.068799998611212 ], [ 357456.908399999141693, 256189.765500001609325 ], [ 357454.494800001382828, 256189.112399999052286 ], [ 357452.063299998641014, 256190.570199999958277 ], [ 357449.597599998116493, 256196.038400001823902 ], [ 357446.273500002920628, 256207.621399998664856 ], [ 357446.808200001716614, 256239.500900000333786 ], [ 357444.319200001657009, 256247.713199999183416 ], [ 357444.450400002300739, 256249.603900000452995 ], [ 357472.888999998569489, 256206.994800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503060600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91505125, "LATITUDE": 18.33561054, "OBJECTID_1": 20212, "PARCEL_NO_": "105503060600", "Tax_Legal_": "14 5 ESTATE THOMAS NEW QTR", "Name": "PICKERING, LEAYLE", "Address": "PO Box 10520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.843218366, "SHAPE_Area": 855.12143425900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360498.911300003528595, 256239.782900001853704 ], [ 360480.420100003480911, 256233.298799999058247 ], [ 360469.553199999034405, 256278.383900001645088 ], [ 360488.07320000231266, 256281.490800000727177 ], [ 360498.911300003528595, 256239.782900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503060500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91522507000001, "LATITUDE": 18.33556317, "OBJECTID_1": 20211, "PARCEL_NO_": "105503060500", "Tax_Legal_": "EST THOMAS 14 4 NEW QTR", "Name": "VAN BEVERHOUDT, STEVEN GERARD & MYRNA VELAZQUEZ", "Address": "PO Box 56", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41900, "Improved_V": 37300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.905738195, "SHAPE_Area": 903.54716019600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360477.20380000025034, 256232.217000000178814 ], [ 360460.312600001692772, 256227.223600000143051 ], [ 360452.649400003254414, 256274.868000000715256 ], [ 360469.553199999034405, 256278.383900001645088 ], [ 360480.420100003480911, 256233.298799999058247 ], [ 360477.20380000025034, 256232.217000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503066500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91384303, "LATITUDE": 18.33568026, "OBJECTID_1": 20270, "PARCEL_NO_": "105503066500", "Tax_Legal_": "REM OF 9 EST.THOMAS NEW QTR", "Name": "LEE, SARAH M", "Address": "PO Box 8123", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.51920071799999, "SHAPE_Area": 697.51092913499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360636.630699999630451, 256259.697399999946356 ], [ 360588.257399998605251, 256258.668200001120567 ], [ 360584.953000001609325, 256267.929299999028444 ], [ 360602.650499999523163, 256272.929299999028444 ], [ 360621.150700002908707, 256278.3581000007689 ], [ 360625.977799996733665, 256279.664099998772144 ], [ 360636.630699999630451, 256259.697399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503063200", "MAP": "F9-2575-T70", "PARCEL_NAM": "14-92C", "ACRE": "4,413 sq ft", "LONGITUDE": -64.91173177, "LATITUDE": 18.33561221, "OBJECTID_1": 20237, "PARCEL_NO_": "105503063200", "Tax_Legal_": "THOMAS ESTATE 14-92C NEW QTR", "Name": "ASFOUR, DANEAL K.& KHALIL", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32700, "Improved_V": 113100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.082374777, "SHAPE_Area": 540.53609542699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360853.220200002193451, 256253.002900000661612 ], [ 360840.529899999499321, 256242.181699998676777 ], [ 360838.347300000488758, 256245.094200000166893 ], [ 360831.00959999859333, 256254.533300001174212 ], [ 360817.962899997830391, 256271.525100000202656 ], [ 360821.949500001966953, 256276.835099998861551 ], [ 360827.561300002038479, 256280.680700000375509 ], [ 360834.904500000178814, 256270.608300000429153 ], [ 360838.973800003528595, 256266.208700001239777 ], [ 360843.842200003564358, 256262.65989999845624 ], [ 360849.536799997091293, 256256.795899998396635 ], [ 360853.220200002193451, 256253.002900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503067700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91434952, "LATITUDE": 18.33569833, "OBJECTID_1": 20279, "PARCEL_NO_": "105503067700", "Tax_Legal_": "14-9A ESTATE THOMAS NEW QTR", "Name": "FREEMAN, UNELL & NATASHA", "Address": "2361 Cimmaron Ash Way", "City": "Apopka", "State": "Florida", "Zip": 32703, "Country": "United States", "Land_Value": 22900, "Improved_V": 137700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.147013061799996, "SHAPE_Area": 262.71421959200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360558.405799999833107, 256260.53489999845624 ], [ 360551.971500001847744, 256258.582400001585484 ], [ 360547.814099997282028, 256273.32490000128746 ], [ 360565.51519999653101, 256277.902699999511242 ], [ 360568.058200001716614, 256263.3581000007689 ], [ 360558.405799999833107, 256260.53489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105502060400", "MAP": "D9-7017-T002", "PARCEL_NAM": "14-3 REM", "ACRE": null, "LONGITUDE": -64.91539393, "LATITUDE": 18.33542724, "OBJECTID_1": 19951, "PARCEL_NO_": "105502060400", "Tax_Legal_": "THOMAS ESTATE 14-3 REM. 6E NEW QTR.", "Name": "PICKERING, CHRISTINE E", "Address": "PO Box 7518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32300, "Improved_V": 179800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.671027815299993, "SHAPE_Area": 540.08038498300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360434.537900000810623, 256246.950500000268221 ], [ 360456.218699999153614, 256252.676699999719858 ], [ 360460.312600001692772, 256227.223600000143051 ], [ 360441.812399998307228, 256221.794900000095367 ], [ 360434.537900000810623, 256246.950500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503024200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91093256000001, "LATITUDE": 18.33567204, "OBJECTID_1": 20033, "PARCEL_NO_": "105503024200", "Tax_Legal_": "EST THOMAS 14PJ NEW QTR. 6E", "Name": "AMARO, FELIPE SERRANO", "Address": "14PJ Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30400, "Improved_V": 152900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.2352074426, "SHAPE_Area": 385.94529726500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360907.582299999892712, 256258.326499998569489 ], [ 360908.233900003135204, 256276.485800001770258 ], [ 360928.386399999260902, 256277.284099999815226 ], [ 360930.027800001204014, 256273.920000001788139 ], [ 360933.306999996304512, 256267.614000000059605 ], [ 360934.951899997889996, 256263.827799998223782 ], [ 360907.582299999892712, 256258.326499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503024100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91120764, "LATITUDE": 18.33564656, "OBJECTID_1": 20032, "PARCEL_NO_": "105503024100", "Tax_Legal_": "14PB EST THOMAS 6E NEW QTR", "Name": "MAYNARD, CHARLES", "Address": "9137 Estate Thomas 6E New Qtr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23100, "Improved_V": 113500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.62040345200001, "SHAPE_Area": 674.10500145399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360908.233900003135204, 256276.485800001770258 ], [ 360907.582299999892712, 256258.326499998569489 ], [ 360871.341399997472763, 256252.963599998503923 ], [ 360873.661399997770786, 256264.592700000852346 ], [ 360877.603100001811981, 256275.179699998348951 ], [ 360908.233900003135204, 256276.485800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503063900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91209269, "LATITUDE": 18.33551937, "OBJECTID_1": 20244, "PARCEL_NO_": "105503063900", "Tax_Legal_": "14-34 EST THOMAS NEW QTR", "Name": "RICHARDS, ALICIA", "Address": "PO Box 8594", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29300, "Improved_V": 48100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.445389785, "SHAPE_Area": 605.77008358499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360806.733900003135204, 256264.467199999839067 ], [ 360802.198100000619888, 256228.966299999505281 ], [ 360788.471000000834465, 256231.175999999046326 ], [ 360789.165799997746944, 256244.269499998539686 ], [ 360791.322200000286102, 256275.106800001114607 ], [ 360806.733900003135204, 256264.467199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303320900", "MAP": null, "PARCEL_NAM": "30-4", "ACRE": "7,955 sq ft", "LONGITUDE": -64.94243117000001, "LATITUDE": 18.33544577, "OBJECTID_1": 11283, "PARCEL_NO_": "105303320900", "Tax_Legal_": "HONDURAS 30-4 CROWN PRINCE QUARTER", "Name": "CERGE (LIFE ESTATE), INGER", "Address": "P O BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44900, "Improved_V": 83400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.95880493300001, "SHAPE_Area": 1819.7913769100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357585.131800003349781, 256188.492899999022484 ], [ 357575.174500003457069, 256187.759399998933077 ], [ 357570.20099999755621, 256237.344399999827147 ], [ 357574.229000002145767, 256237.799499999731779 ], [ 357581.480400003492832, 256238.492199998348951 ], [ 357607.205099999904633, 256247.779699999839067 ], [ 357606.889700002968311, 256190.148600000888109 ], [ 357585.131800003349781, 256188.492899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91230729, "LATITUDE": 18.33559116, "OBJECTID_1": 20247, "PARCEL_NO_": "105503064200", "Tax_Legal_": "14-32A EST THOMAS 6E NEW QTR", "Name": "RICHARDS, ALICIA", "Address": "PO Box 8594", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32300, "Improved_V": 198200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.585708193, "SHAPE_Area": 717.25332610299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360785.940600000321865, 256244.243099998682737 ], [ 360768.196299999952316, 256244.731100000441074 ], [ 360760.131399996578693, 256244.876200001686811 ], [ 360761.5371999964118, 256269.163499999791384 ], [ 360762.330899998545647, 256270.647599998861551 ], [ 360776.828400000929832, 256272.66609999909997 ], [ 360784.891500003635883, 256272.732099998742342 ], [ 360787.324799999594688, 256271.063299998641014 ], [ 360788.145499996840954, 256269.381299998611212 ], [ 360785.940600000321865, 256244.243099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404190900", "MAP": "F9-849-T61", "PARCEL_NAM": "REM 4", "ACRE": null, "LONGITUDE": -64.91645973, "LATITUDE": 18.33524749, "OBJECTID_1": 19609, "PARCEL_NO_": "105404190900", "Tax_Legal_": "4 & 11A ESTATE THOMAS NEW QUARTER", "Name": "COUSINS & SONS DEVELOPMENT", "Address": "PO Box 11669", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 490100, "Improved_V": 476000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.286561068, "SHAPE_Area": 2171.25025878 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360354.634800001978874, 256200.7331000007689 ], [ 360321.819499999284744, 256185.692200001329184 ], [ 360321.140600003302097, 256188.509899999946356 ], [ 360319.486699998378754, 256193.351500000804663 ], [ 360313.725599996745586, 256207.025400001555681 ], [ 360307.143799997866154, 256222.381400000303984 ], [ 360306.301500000059605, 256226.596400000154972 ], [ 360305.594800002872944, 256228.8114 ], [ 360332.869599997997284, 256240.299600001424551 ], [ 360347.145599998533726, 256246.312800001353025 ], [ 360348.920999996364117, 256240.455200001597404 ], [ 360351.37950000166893, 256235.831300001591444 ], [ 360357.075900003314018, 256229.75620000064373 ], [ 360363.314599998295307, 256224.832600001245737 ], [ 360363.494099996984005, 256205.707899998873472 ], [ 360358.729500003159046, 256203.032400000840425 ], [ 360354.634800001978874, 256200.7331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503036500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91000638, "LATITUDE": 18.33555579, "OBJECTID_1": 20118, "PARCEL_NO_": "105503036500", "Tax_Legal_": "THOMAS ESTATE 14N-17 6E NEW QTR.", "Name": "HARRIGAN, CLARENCE & ISMAY", "Address": "PO Box 74", "City": "BRONX", "State": "New York", "Zip": 10470, "Country": "United States", "Land_Value": 22900, "Improved_V": 121300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.08939215300001, "SHAPE_Area": 709.76674343000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361004.221100002527237, 256273.049600001424551 ], [ 361028.417700000107288, 256272.403200000524521 ], [ 361026.252300001680851, 256242.621300000697374 ], [ 361026.397900000214577, 256225.523899998515844 ], [ 361014.951300002634525, 256244.006499998271465 ], [ 361006.00450000166893, 256253.010299999266863 ], [ 361004.368500001728535, 256255.741099998354912 ], [ 361004.221100002527237, 256273.049600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503068400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91249839, "LATITUDE": 18.33558011, "OBJECTID_1": 20284, "PARCEL_NO_": "105503068400", "Tax_Legal_": "EST THOMAS 14-31A NEW QTR", "Name": "BRATHWAITE, EARLRICK & B", "Address": "PO Box 7042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.4110014643, "SHAPE_Area": 175.398489356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360756.906099997460842, 256244.849800001829863 ], [ 360749.649300001561642, 256244.790399998426437 ], [ 360751.062399998307228, 256268.233399998396635 ], [ 360756.693999998271465, 256269.757100000977516 ], [ 360758.315600000321865, 256268.714899998158216 ], [ 360756.906099997460842, 256244.849800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503066600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91410283, "LATITUDE": 18.3355576, "OBJECTID_1": 20271, "PARCEL_NO_": "105503066600", "Tax_Legal_": "9B EST THOMAS 6E NEW QTR", "Name": "ETIEN AND NIDIA FRETT FAMILY TRUST", "Address": "PO Box 11824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.823057980499996, "SHAPE_Area": 328.501390415 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360588.257399998605251, 256258.668200001120567 ], [ 360595.722800001502037, 256234.242499999701977 ], [ 360590.069600000977516, 256235.2516999989748 ], [ 360571.276199996471405, 256264.228799998760223 ], [ 360584.953000001609325, 256267.929299999028444 ], [ 360588.257399998605251, 256258.668200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91262562, "LATITUDE": 18.33549079, "OBJECTID_1": 20253, "PARCEL_NO_": "105503064800", "Tax_Legal_": "14 30 EST THOMAS 6E NEW QTR", "Name": "ROSENBERG, NELLARINE", "Address": "14-30 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36600, "Improved_V": 110000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.652900886, "SHAPE_Area": 698.61737659799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360748.977899998426437, 256228.952899999916553 ], [ 360729.635399997234344, 256227.739100001752377 ], [ 360732.556699998676777, 256263.437899999320507 ], [ 360751.062399998307228, 256268.233399998396635 ], [ 360749.649300001561642, 256244.790399998426437 ], [ 360748.977899998426437, 256228.952899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033500", "MAP": "G9-1671-T70", "PARCEL_NAM": "14NQ", "ACRE": "0.11", "LONGITUDE": -64.91051772, "LATITUDE": 18.33554085, "OBJECTID_1": 20091, "PARCEL_NO_": "105503033500", "Tax_Legal_": "14 NQ EST THOMAS 6E NEW QTR", "Name": "TRUST AGREEMENT OF THOMAS RECALDO LETTSOME", "Address": "PO Box 12181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.646670889099994, "SHAPE_Area": 473.49926756000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360956.011799998581409, 256244.651900000870228 ], [ 360955.26799999922514, 256245.417899999767542 ], [ 360947.113200001418591, 256256.116900000721216 ], [ 360945.935699999332428, 256258.678800001740456 ], [ 360971.624600000679493, 256266.880699999630451 ], [ 360978.485799998044968, 256245.072000000625849 ], [ 360956.011799998581409, 256244.651900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503068000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91420636, "LATITUDE": 18.33551728, "OBJECTID_1": 20282, "PARCEL_NO_": "105503068000", "Tax_Legal_": "9A ESTATE THOMAS NEW QTR", "Name": "FRETT, ETIEN O.,SR. & NIDIA OCANA-FRETT (TRUSTEES)", "Address": "PO Box 11824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.428091357699998, "SHAPE_Area": 441.09307716299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360573.138800002634525, 256234.901999998837709 ], [ 360558.405799999833107, 256260.53489999845624 ], [ 360568.058200001716614, 256263.3581000007689 ], [ 360571.276199996471405, 256264.228799998760223 ], [ 360590.069600000977516, 256235.2516999989748 ], [ 360573.138800002634525, 256234.901999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91556241000001, "LATITUDE": 18.33543019, "OBJECTID_1": 20210, "PARCEL_NO_": "105503060300", "Tax_Legal_": "EST THOMAS 14-2 NEW QTR", "Name": "EL-HAJ FAMILY TRUST", "Address": "2316 Kronprindens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30400, "Improved_V": 225600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.88414488799999, "SHAPE_Area": 512.92118232999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360441.812399998307228, 256221.794900000095367 ], [ 360428.13740000128746, 256217.883200000971556 ], [ 360419.811800003051758, 256248.634799998253584 ], [ 360430.180600002408028, 256262.018500000238419 ], [ 360441.812399998307228, 256221.794900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303320700", "MAP": null, "PARCEL_NAM": "30-3", "ACRE": "6,610 sq ft", "LONGITUDE": -64.94268027, "LATITUDE": 18.33539634, "OBJECTID_1": 11281, "PARCEL_NO_": "105303320700", "Tax_Legal_": "HONDURAS 30-3 REMAINDER KRONPRINDSEN QUARTER", "Name": "CERGE (LIFE ESTATE), INGER", "Address": "P O BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.425744146, "SHAPE_Area": 805.45207474300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357558.426700003445148, 256186.524000000208616 ], [ 357558.001900002360344, 256198.2483000010252 ], [ 357555.301299996674061, 256210.261199999600649 ], [ 357551.511900000274181, 256215.2043999992311 ], [ 357551.734999999403954, 256227.905099999159575 ], [ 357556.553000003099442, 256230.266600001603365 ], [ 357563.80629999935627, 256230.748100001364946 ], [ 357566.203599996864796, 256233.300900001078844 ], [ 357570.20099999755621, 256237.344399999827147 ], [ 357575.174500003457069, 256187.759399998933077 ], [ 357559.344200000166893, 256186.593100000172853 ], [ 357558.426700003445148, 256186.524000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503066000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91330361, "LATITUDE": 18.33557361, "OBJECTID_1": 20265, "PARCEL_NO_": "105503066000", "Tax_Legal_": "14 26 ESTATE THOMAS NEW QTR", "Name": "GUMBS, LECIA F", "Address": "PO Box 8800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.5502011082, "SHAPE_Area": 211.39709848699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360678.544600002467632, 256261.729200001806021 ], [ 360671.435199998319149, 256244.361400000751019 ], [ 360656.815499998629093, 256256.696199998259544 ], [ 360671.269799999892712, 256263.780600000172853 ], [ 360678.544600002467632, 256261.729200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503063800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91194091, "LATITUDE": 18.33544366, "OBJECTID_1": 20243, "PARCEL_NO_": "105503063800", "Tax_Legal_": "THOMAS ESTATE 14-35&14-95 NEW QTR", "Name": "CHARLES, HELEN", "Address": "61 Oatfield Rd", "City": "BRAMPTON", "State": "Ontario", "Zip": 0, "Country": "Canada", "Land_Value": 32000, "Improved_V": 87700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.56458485500001, "SHAPE_Area": 589.002203162 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360821.339199997484684, 256253.820900000631809 ], [ 360824.000900000333786, 256225.345100000500679 ], [ 360802.198100000619888, 256228.966299999505281 ], [ 360806.733900003135204, 256264.467199999839067 ], [ 360821.339199997484684, 256253.820900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503065000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91280735, "LATITUDE": 18.33547854, "OBJECTID_1": 20255, "PARCEL_NO_": "105503065000", "Tax_Legal_": "14-29 EST THOMAS NEW QTR", "Name": "TODMAN, SOLOMON & CLEMENTNA", "Address": "14-29 EST THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32000, "Improved_V": 292600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.634095574, "SHAPE_Area": 682.36188759300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360729.635399997234344, 256227.739100001752377 ], [ 360711.9037000015378, 256226.749600000679493 ], [ 360711.605200000107288, 256261.788699999451637 ], [ 360732.556699998676777, 256263.437899999320507 ], [ 360729.635399997234344, 256227.739100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503068300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9117199, "LATITUDE": 18.3352737, "OBJECTID_1": 20283, "PARCEL_NO_": "105503068300", "Tax_Legal_": "EST THOMAS 14-90 6E NEW QTR", "Name": "BELL, NIDA, BAPTISTE, LINDA D. & ELLIS, LAVERNE BAPTISTE", "Address": "PO Box 9176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47100, "Improved_V": 136400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.28626860700001, "SHAPE_Area": 889.07698264400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360837.171599999070168, 256193.788800001144409 ], [ 360838.579300001263618, 256217.864999998360872 ], [ 360824.029700003564358, 256221.967799998819828 ], [ 360824.000900000333786, 256225.345100000500679 ], [ 360821.339199997484684, 256253.820900000631809 ], [ 360821.319399997591972, 256256.142799999564886 ], [ 360820.446599997580051, 256263.946100000292063 ], [ 360840.0641999989748, 256232.864799998700619 ], [ 360848.17230000346899, 256227.653799999505281 ], [ 360849.862199999392033, 256218.590599998831749 ], [ 360850.886100001633167, 256193.056699998676777 ], [ 360837.171599999070168, 256193.788800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503063500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91160756, "LATITUDE": 18.33529894, "OBJECTID_1": 20240, "PARCEL_NO_": "105503063500", "Tax_Legal_": "14-92 EST THOMAS 6E NEW QTR", "Name": "LOCKHART, ALFRED H", "Address": "PO Box 714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.33521672099999, "SHAPE_Area": 394.54270736299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360820.446599997580051, 256263.946100000292063 ], [ 360831.00959999859333, 256254.533300001174212 ], [ 360838.347300000488758, 256245.094200000166893 ], [ 360851.39750000089407, 256227.68019999936223 ], [ 360857.104699999094009, 256220.338700000196695 ], [ 360881.38570000231266, 256209.771600000560284 ], [ 360881.412699997425079, 256206.605399999767542 ], [ 360853.08389999717474, 256219.039200000464916 ], [ 360854.113200001418591, 256192.872000001370907 ], [ 360850.886100001633167, 256193.056699998676777 ], [ 360849.862199999392033, 256218.590599998831749 ], [ 360848.17230000346899, 256227.653799999505281 ], [ 360840.0641999989748, 256232.864799998700619 ], [ 360820.446599997580051, 256263.946100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503065600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91314628000001, "LATITUDE": 18.33549383, "OBJECTID_1": 20261, "PARCEL_NO_": "105503065600", "Tax_Legal_": "14-27 ESTATE THOMAS NO.6E NEW QTR", "Name": "GUMBS, LAURIEL, LIONEL,LINCOLN,OTHNELL & LORRAINE", "Address": "PO Box 8800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.989766739499998, "SHAPE_Area": 559.47069237599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360695.487899996340275, 256260.601300001144409 ], [ 360694.171999998390675, 256225.760099999606609 ], [ 360671.435199998319149, 256244.361400000751019 ], [ 360678.544600002467632, 256261.729200001806021 ], [ 360695.487899996340275, 256260.601300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503024400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91090054, "LATITUDE": 18.33552028, "OBJECTID_1": 20035, "PARCEL_NO_": "105503024400", "Tax_Legal_": "14PK EST THOMAS 6E NEW QTR", "Name": "JENNINGS, F, A. & DUBLAN, J", "Address": "9283 Estate Thomas Nq 14PK", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30400, "Improved_V": 158800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.432048209, "SHAPE_Area": 594.78900901099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360943.957999996840954, 256247.858399998396635 ], [ 360906.133299998939037, 256239.105099998414516 ], [ 360907.582299999892712, 256258.326499998569489 ], [ 360934.951899997889996, 256263.827799998223782 ], [ 360935.781599998474121, 256261.090399999171495 ], [ 360943.957999996840954, 256247.858399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503066700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91435764000001, "LATITUDE": 18.33548698, "OBJECTID_1": 20272, "PARCEL_NO_": "105503066700", "Tax_Legal_": "8E EST THOMAS NEW QTR", "Name": "VANTERPOOL, EUNICE", "Address": "P.O. BOX 1932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.987149732299997, "SHAPE_Area": 486.792196601 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360553.825099997222424, 256230.311000000685453 ], [ 360543.931800000369549, 256255.772300001233816 ], [ 360551.971500001847744, 256258.582400001585484 ], [ 360558.405799999833107, 256260.53489999845624 ], [ 360573.138800002634525, 256234.901999998837709 ], [ 360565.088299997150898, 256233.358500000089407 ], [ 360553.825099997222424, 256230.311000000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503065300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91297933, "LATITUDE": 18.33546209, "OBJECTID_1": 20258, "PARCEL_NO_": "105503065300", "Tax_Legal_": "14 28 EST THOMAS NEW QTR", "Name": "IVAN E & OLIVE C FRANCIS FAMILY REVOCABLE TRUST", "Address": "PO Box 7413", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32000, "Improved_V": 200100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.826680067, "SHAPE_Area": 590.79087428499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360711.9037000015378, 256226.749600000679493 ], [ 360694.171999998390675, 256225.760099999606609 ], [ 360695.487899996340275, 256260.601300001144409 ], [ 360711.605200000107288, 256261.788699999451637 ], [ 360711.9037000015378, 256226.749600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503068500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91386475, "LATITUDE": 18.33550824, "OBJECTID_1": 20285, "PARCEL_NO_": "105503068500", "Tax_Legal_": "9F EST THOMAS NEW QTR", "Name": "NORFORD, VICTOR & BEVERLY", "Address": "PO Box 11524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 219300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.04538971599999, "SHAPE_Area": 891.20374245799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360636.630699999630451, 256259.697399999946356 ], [ 360613.492200002074242, 256230.799300000071526 ], [ 360595.722800001502037, 256234.242499999701977 ], [ 360588.257399998605251, 256258.668200001120567 ], [ 360636.630699999630451, 256259.697399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503066300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91368217, "LATITUDE": 18.33545114, "OBJECTID_1": 20268, "PARCEL_NO_": "105503066300", "Tax_Legal_": "ESTATE THOMAS 9C NEW QTR", "Name": "BROWN, CHARLES", "Address": "PO Box 603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040603, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.797505683599994, "SHAPE_Area": 368.66726314900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360642.361199997365475, 256249.611900001764297 ], [ 360624.818300001323223, 256226.459100000560284 ], [ 360613.492200002074242, 256230.799300000071526 ], [ 360636.630699999630451, 256259.697399999946356 ], [ 360642.361199997365475, 256249.611900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503066800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91453261, "LATITUDE": 18.33544291, "OBJECTID_1": 20273, "PARCEL_NO_": "105503066800", "Tax_Legal_": "8D ESTATE THOMAS NEW QTR", "Name": "STOUT, OLIVER & VIOLA", "Address": "3750 Hudson Manor Ter", "City": "Bronx", "State": "New York", "Zip": 10463, "Country": "United States", "Land_Value": 22200, "Improved_V": 56400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.296255375000001, "SHAPE_Area": 545.77104069699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360533.712200000882149, 256224.868999999016523 ], [ 360524.637800000607967, 256248.859400000423193 ], [ 360534.284800000488758, 256252.315900001674891 ], [ 360543.931800000369549, 256255.772300001233816 ], [ 360553.825099997222424, 256230.311000000685453 ], [ 360533.712200000882149, 256224.868999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503065900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91341155000001, "LATITUDE": 18.33543822, "OBJECTID_1": 20264, "PARCEL_NO_": "105503065900", "Tax_Legal_": "14-26A ESTATE THOMAS NEW QTR", "Name": "FARRINGTON, LUELLA", "Address": "PO Box 8642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19000, "Improved_V": 17700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.405867223599998, "SHAPE_Area": 567.04536888099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360661.95549999922514, 256221.274599999189377 ], [ 360657.931100003421307, 256220.397300001233816 ], [ 360642.361199997365475, 256249.611900001764297 ], [ 360656.815499998629093, 256256.696199998259544 ], [ 360671.435199998319149, 256244.361400000751019 ], [ 360661.95549999922514, 256221.274599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503024300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91120922, "LATITUDE": 18.33547603, "OBJECTID_1": 20034, "PARCEL_NO_": "105503024300", "Tax_Legal_": "14PC EST THOMAS 6E NEW QTR", "Name": "MAYNARD, CHARLES", "Address": "9137 Estate Thomas 6E New Qtr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23100, "Improved_V": 463600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.879139396, "SHAPE_Area": 630.95865260899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360871.341399997472763, 256252.963599998503923 ], [ 360907.582299999892712, 256258.326499998569489 ], [ 360906.133299998939037, 256239.105099998414516 ], [ 360878.756399996578693, 256234.448100000619888 ], [ 360873.850199997425079, 256242.429499998688698 ], [ 360871.341399997472763, 256252.963599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503063300", "MAP": "F9-2769-T71", "PARCEL_NAM": "14-92B", "ACRE": "3,104 sq ft", "LONGITUDE": -64.91155743, "LATITUDE": 18.33541681, "OBJECTID_1": 20238, "PARCEL_NO_": "105503063300", "Tax_Legal_": "14-92B EST THOMAS 6E NEW QTR", "Name": "FREEMAN, MABEL", "Address": "9134 Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16000, "Improved_V": 139800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.403923767600006, "SHAPE_Area": 365.22759092299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360867.260499998927116, 256238.171700000762939 ], [ 360852.742600001394749, 256225.94990000128746 ], [ 360851.39750000089407, 256227.68019999936223 ], [ 360840.529899999499321, 256242.181699998676777 ], [ 360853.220200002193451, 256253.002900000661612 ], [ 360865.806900002062321, 256240.041600000113249 ], [ 360867.260499998927116, 256238.171700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303320800", "MAP": null, "PARCEL_NAM": "30-2", "ACRE": "7,791 sq ft", "LONGITUDE": -64.94291271, "LATITUDE": 18.33536645, "OBJECTID_1": 11282, "PARCEL_NO_": "105303320800", "Tax_Legal_": "HONDURAS 30-2 CROWN PRINCE", "Name": "SERGE, W. & INGER/LIFE INT.", "Address": "BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45400, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.025424413, "SHAPE_Area": 1020.57905992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357551.734999999403954, 256227.905099999159575 ], [ 357550.998199999332428, 256185.964200001209974 ], [ 357527.916000001132488, 256184.224899999797344 ], [ 357527.543799996376038, 256227.918200001120567 ], [ 357537.214100003242493, 256228.630699999630451 ], [ 357551.734999999403954, 256227.905099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303320600", "MAP": null, "PARCEL_NAM": "30-1", "ACRE": "8,928 sq ft", "LONGITUDE": -64.9431585, "LATITUDE": 18.33529532, "OBJECTID_1": 11280, "PARCEL_NO_": "105303320600", "Tax_Legal_": "HONDURAS 30-1 SOUTHSIDE QTR", "Name": "CERGE, WILLIAM", "Address": "BOX 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.366398438, "SHAPE_Area": 997.41581407499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357487.623800002038479, 256181.15089999884367 ], [ 357505.145099997520447, 256206.83669999986887 ], [ 357515.526399999856949, 256218.742899999022484 ], [ 357521.148999996483326, 256221.322000000625849 ], [ 357527.543799996376038, 256227.918200001120567 ], [ 357527.916000001132488, 256184.224899999797344 ], [ 357487.623800002038479, 256181.15089999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503060200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91575664, "LATITUDE": 18.33530996, "OBJECTID_1": 20209, "PARCEL_NO_": "105503060200", "Tax_Legal_": "14-1 EST THOMAS 6E NEW QTR", "Name": "WEBSTER, DUDLEY A", "Address": "P.O. BOX 4043", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39200, "Improved_V": 391100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.74280256, "SHAPE_Area": 773.67586474699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360412.851700000464916, 256213.747400000691414 ], [ 360400.785800002515316, 256210.271099999547005 ], [ 360391.131599999964237, 256207.659000001847744 ], [ 360388.673100002110004, 256212.282900001853704 ], [ 360389.425499998033047, 256218.621899999678135 ], [ 360408.63849999755621, 256235.033300001174212 ], [ 360419.811800003051758, 256248.634799998253584 ], [ 360428.13740000128746, 256217.883200000971556 ], [ 360424.114900000393391, 256216.794900000095367 ], [ 360412.851700000464916, 256213.747400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503066400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91356293, "LATITUDE": 18.33534696, "OBJECTID_1": 20269, "PARCEL_NO_": "105503066400", "Tax_Legal_": "9D ESTATE THOMAS NEW QTR", "Name": "LEONARD, ENID & JOYCE SMITH", "Address": "PO Box 10177", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20600, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.781418778100004, "SHAPE_Area": 533.85679314100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360657.931100003421307, 256220.397300001233816 ], [ 360642.63629999756813, 256217.316799998283386 ], [ 360624.818300001323223, 256226.459100000560284 ], [ 360642.361199997365475, 256249.611900001764297 ], [ 360657.931100003421307, 256220.397300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503024600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91083168, "LATITUDE": 18.33536659, "OBJECTID_1": 20037, "PARCEL_NO_": "105503024600", "Tax_Legal_": "14PL EST THOMAS 6E NEW QTR", "Name": "KELLEY AND FEDORA FAMILY TRUST", "Address": "PO Box 8264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55500, "Improved_V": 367800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.155391784, "SHAPE_Area": 787.89125911300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360930.439499996602535, 256225.582899998873472 ], [ 360911.917700000107288, 256222.687100000679493 ], [ 360906.133299998939037, 256239.105099998414516 ], [ 360943.957999996840954, 256247.858399998396635 ], [ 360946.414700001478195, 256243.445599999278784 ], [ 360949.665200002491474, 256240.516800001263618 ], [ 360957.011900000274181, 256230.022300001233816 ], [ 360930.439499996602535, 256225.582899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503067800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91324157, "LATITUDE": 18.33535017, "OBJECTID_1": 20280, "PARCEL_NO_": "105503067800", "Tax_Legal_": "14-27A ESTATE THOMAS NO. 6E NEW QTR", "Name": "LAURIEL GUMBS & OTHERS", "Address": "PO Box 8800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42500, "Improved_V": 193100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.944371327200002, "SHAPE_Area": 331.90450227299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360680.470100000500679, 256225.014699999243021 ], [ 360661.95549999922514, 256221.274599999189377 ], [ 360671.435199998319149, 256244.361400000751019 ], [ 360694.171999998390675, 256225.760099999606609 ], [ 360680.470100000500679, 256225.014699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9124578, "LATITUDE": 18.33540094, "OBJECTID_1": 20249, "PARCEL_NO_": "105503064400", "Tax_Legal_": "14-31 EST THOMAS 6E NEW QTR", "Name": "TURNBULL, JUSTIN", "Address": "PO Box 502921", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 17400, "Improved_V": 98000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.762874314699999, "SHAPE_Area": 284.67183716699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360768.196299999952316, 256244.731100000441074 ], [ 360767.515900000929832, 256229.949000000953674 ], [ 360748.977899998426437, 256228.952899999916553 ], [ 360749.649300001561642, 256244.790399998426437 ], [ 360756.906099997460842, 256244.849800001829863 ], [ 360760.131399996578693, 256244.876200001686811 ], [ 360768.196299999952316, 256244.731100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91227203, "LATITUDE": 18.33540283, "OBJECTID_1": 20246, "PARCEL_NO_": "105503064100", "Tax_Legal_": "14-32 EST THOMAS 6E NEW QTR", "Name": "RICHARDS, ALICIA", "Address": "PO Box 8594", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55500, "Improved_V": 78000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.876981515400004, "SHAPE_Area": 290.884026834 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360788.471000000834465, 256231.175999999046326 ], [ 360767.515900000929832, 256229.949000000953674 ], [ 360768.196299999952316, 256244.731100000441074 ], [ 360785.940600000321865, 256244.243099998682737 ], [ 360789.165799997746944, 256244.269499998539686 ], [ 360788.471000000834465, 256231.175999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304070200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93642373, "LATITUDE": 18.33188732, "OBJECTID_1": 11393, "PARCEL_NO_": "105304070200", "Tax_Legal_": "HASSEL ISLAND 8A SOUTHSIDE QTR", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 351100, "Improved_V": 453600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3143.3433743400001, "SHAPE_Area": 154477.81291000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358163.401000000536442, 256190.294799998402596 ], [ 358237.957299999892712, 256093.499400001019239 ], [ 358254.098499998450279, 256051.907600000500679 ], [ 358265.427100002765656, 256022.716600000858307 ], [ 358275.348999999463558, 256008.825899999588728 ], [ 358262.011200003325939, 256000.204900000244379 ], [ 358267.004000000655651, 255991.572700001299381 ], [ 358337.451099999248981, 255869.77479999884963 ], [ 358415.917400002479553, 255878.018899999558926 ], [ 358417.792599998414516, 255847.214499998837709 ], [ 358415.521099999547005, 255829.886300001293421 ], [ 358415.636200003325939, 255816.377199999988079 ], [ 358418.119800001382828, 255808.798200000077486 ], [ 358421.395400002598763, 255802.91440000012517 ], [ 358427.095399998128414, 255796.417100001126528 ], [ 358431.1503000035882, 255793.7060999982059 ], [ 358409.976899996399879, 255723.449700001627207 ], [ 358397.04169999808073, 255727.354699999094009 ], [ 358386.048199996352196, 255692.645300000905991 ], [ 358399.793300002813339, 255688.32490000128746 ], [ 358397.421099998056889, 255682.81700000166893 ], [ 358391.85249999910593, 255673.905499998480082 ], [ 358385.475699998438358, 255665.198499999940395 ], [ 358377.484499998390675, 255656.689300000667572 ], [ 358373.508699998259544, 255650.112900000065565 ], [ 358371.930200003087521, 255646.089200001209974 ], [ 358372.788699999451637, 255639.974500000476837 ], [ 358368.062299996614456, 255626.848000001162291 ], [ 358367.29730000346899, 255621.986600000411272 ], [ 358368.999899998307228, 255611.445900000631809 ], [ 358371.458400003612041, 255606.821899998933077 ], [ 358375.596000000834465, 255594.401299998164177 ], [ 358381.304899998009205, 255586.848600000143051 ], [ 358384.609300002455711, 255577.587600000202656 ], [ 358385.4695999994874, 255571.261799998581409 ], [ 358391.183899998664856, 255563.075899999588728 ], [ 358398.487499997019768, 255557.647300001233816 ], [ 358407.392899997532368, 255553.4983000010252 ], [ 358421.134300000965595, 255549.600000001490116 ], [ 358438.084899999201298, 255547.62779999896884 ], [ 358456.595899999141693, 255551.790100000798702 ], [ 358459.020199999213219, 255551.176600001752377 ], [ 358459.893100000917912, 255543.3733000010252 ], [ 358462.321000002324581, 255542.337699998170137 ], [ 358469.764799997210503, 255520.444899998605251 ], [ 358241.257600001990795, 255461.5793999992311 ], [ 358236.290299996733665, 255476.737500000745058 ], [ 358223.214800000190735, 255497.106600001454353 ], [ 358215.078000001609325, 255505.69480000063777 ], [ 358211.841899998486042, 255506.934900000691414 ], [ 358206.163599997758865, 255510.89919999986887 ], [ 358194.677400000393391, 255534.025499999523163 ], [ 358192.19370000064373, 255541.604499999433756 ], [ 358192.915500000119209, 255551.531800001859665 ], [ 358200.84740000218153, 255567.006499998271465 ], [ 358205.631300002336502, 255573.378499999642372 ], [ 358206.279399998486042, 255591.96000000089407 ], [ 358202.949799999594688, 255604.176199998706579 ], [ 358195.550999999046326, 255620.792100001126528 ], [ 358169.571000002324581, 255641.477699998766184 ], [ 358163.070100001990795, 255647.335099998861551 ], [ 358153.300899997353554, 255658.23200000077486 ], [ 358152.415399998426437, 255667.512899998575449 ], [ 358150.747100003063679, 255674.043099999427795 ], [ 358153.864399999380112, 255686.734200000762939 ], [ 358154.582599997520447, 255697.083700001239777 ], [ 358157.793499998748302, 255698.798700001090765 ], [ 358167.494400002062321, 255695.922800000756979 ], [ 358169.092600002884865, 255697.624699998646975 ], [ 358166.648500002920628, 255700.559999998658895 ], [ 358164.184600003063679, 255705.817099999636412 ], [ 358175.237400002777576, 255733.5608000010252 ], [ 358171.180699996650219, 255736.482999999076128 ], [ 358170.349200002849102, 255739.431499999016523 ], [ 358171.918700002133846, 255744.510600000619888 ], [ 358183.811999998986721, 255768.250399999320507 ], [ 358188.54559999704361, 255780.532499998807907 ], [ 358193.187399998307228, 255803.579700000584126 ], [ 358193.084899999201298, 255815.611200001090765 ], [ 358189.771600000560284, 255825.927700001746416 ], [ 358183.196999996900558, 255840.439300000667572 ], [ 358166.912500001490116, 255858.88230000063777 ], [ 358151.47749999910593, 255872.265900000929832 ], [ 358136.082000002264977, 255881.005899999290705 ], [ 358107.740599997341633, 255894.917199999094009 ], [ 358060.027900002896786, 255910.991999998688698 ], [ 358043.871100001037121, 255914.448300000280142 ], [ 358039.042199999094009, 255913.353300001472235 ], [ 358034.227700002491474, 255910.569699998944998 ], [ 358031.002499997615814, 255910.543299999088049 ], [ 358030.982699997723103, 255912.865200001746416 ], [ 358025.273800000548363, 255920.41780000180006 ], [ 358000.256499998271465, 255922.746199999004602 ], [ 358000.222300000488758, 255926.756700001657009 ], [ 358001.811599999666214, 255929.513900000602007 ], [ 357999.336900003254414, 255936.037599999457598 ], [ 357992.897200003266335, 255934.718299999833107 ], [ 357981.576499998569489, 255938.425299998372793 ], [ 357962.170999996364117, 255944.599300000816584 ], [ 357951.667400002479553, 255947.046500001102686 ], [ 357930.701399996876717, 255947.085999999195337 ], [ 357921.8175999969244, 255948.701999999582767 ], [ 357919.368100002408028, 255952.270500000566244 ], [ 357927.263999998569489, 255971.966899998486042 ], [ 357928.007399998605251, 255979.361200001090765 ], [ 357926.319200001657009, 255988.213300000876188 ], [ 357922.228299997746944, 255995.145899999886751 ], [ 357921.393200002610683, 255998.516600001603365 ], [ 357919.690700002014637, 256009.057300001382828 ], [ 357919.638599999248981, 256015.178599998354912 ], [ 357985.48929999768734, 255952.389499999582767 ], [ 357987.107400000095367, 255951.769499998539686 ], [ 357990.343400001525879, 255950.529399998486042 ], [ 357994.375, 255950.562399998307228 ], [ 358149.497000001370907, 256010.093800000846386 ], [ 358151.899700000882149, 256012.013300001621246 ], [ 358153.469200000166893, 256017.092399999499321 ], [ 358160.328599996864796, 256063.800200000405312 ], [ 358165.89190000295639, 256073.344999998807907 ], [ 358184.399300001561642, 256077.929400000721216 ], [ 358194.454800002276897, 256081.133200000971556 ], [ 358200.011100001633167, 256108.120799999684095 ], [ 358193.959100000560284, 256115.5168999992311 ], [ 358169.749600000679493, 256137.741900000721216 ], [ 358147.524599999189377, 256141.710700001567602 ], [ 358145.219800002872944, 256133.548599999397993 ], [ 358130.286399997770786, 256088.041200000792742 ], [ 358153.02139999717474, 256069.651099998503923 ], [ 358146.948600001633167, 256025.271699998527765 ], [ 358145.373700000345707, 256020.825899999588728 ], [ 358138.964500002563, 256015.918200001120567 ], [ 357994.295800000429153, 255959.849899999797344 ], [ 357990.264300003647804, 255959.816899999976158 ], [ 358097.691200003027916, 256222.663199998438358 ], [ 358176.376599997282028, 256215.565200001001358 ], [ 358163.401000000536442, 256190.294799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404190800", "MAP": null, "PARCEL_NAM": "REM 6I-1", "ACRE": "0.79", "LONGITUDE": -64.91694523, "LATITUDE": 18.33520695, "OBJECTID_1": 19608, "PARCEL_NO_": "105404190800", "Tax_Legal_": "THOMAS ESTATE 6I-1 NEW QTR", "Name": "BELLAVISTA PROPERTIES INC", "Address": "PO Box 305048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 632200, "Improved_V": 808200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.00423069499999, "SHAPE_Area": 3269.4298784299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360292.991599999368191, 256179.835799999535084 ], [ 360280.108599998056889, 256177.61939999833703 ], [ 360270.427500002086163, 256178.17339999973774 ], [ 360265.571599997580051, 256180.244600001722574 ], [ 360261.505900003015995, 256184.222100000828505 ], [ 360256.578100003302097, 256194.7364999987185 ], [ 360254.081799998879433, 256203.793099999427795 ], [ 360254.818000003695488, 256212.031700000166893 ], [ 360252.359499998390675, 256216.655699998140335 ], [ 360289.120800003409386, 256255.58669999986887 ], [ 360294.709299996495247, 256262.176300000399351 ], [ 360296.377599999308586, 256255.646099999547005 ], [ 360296.404600001871586, 256252.479899998754263 ], [ 360298.049599997699261, 256248.69370000064373 ], [ 360298.870300002396107, 256247.011599998921156 ], [ 360302.165700003504753, 256238.806000001728535 ], [ 360302.993600003421307, 256236.279599998146296 ], [ 360303.816100001335144, 256234.386500000953674 ], [ 360306.301500000059605, 256226.596400000154972 ], [ 360307.143799997866154, 256222.381400000303984 ], [ 360313.725599996745586, 256207.025400001555681 ], [ 360313.833499997854233, 256194.360700000077486 ], [ 360311.454099997878075, 256189.697200000286102 ], [ 360302.633199997246265, 256183.925500001758337 ], [ 360292.991599999368191, 256179.835799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503067000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9149706, "LATITUDE": 18.33531575, "OBJECTID_1": 20274, "PARCEL_NO_": "105503067000", "Tax_Legal_": "8A,8B&8C ESTATE THOMAS 6E NEW QTR.", "Name": "THOMAS, GLADSTON & VELMA", "Address": "PO Box 303726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 104500, "Improved_V": 457200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.388494849799997, "SHAPE_Area": 589.85513345100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360508.774099998176098, 256217.90989999845624 ], [ 360483.834100000560284, 256211.161899998784065 ], [ 360477.20380000025034, 256232.217000000178814 ], [ 360480.420100003480911, 256233.298799999058247 ], [ 360498.911300003528595, 256239.782900001853704 ], [ 360501.323100000619888, 256240.647100001573563 ], [ 360508.774099998176098, 256217.90989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404181400", "MAP": null, "PARCEL_NAM": "16-2", "ACRE": null, "LONGITUDE": -64.91774105, "LATITUDE": 18.33506157, "OBJECTID_1": 19589, "PARCEL_NO_": "105404181400", "Tax_Legal_": "16-2 EST. THOMAS 6H NEW QTR.", "Name": "MARSHALL, A. & KATZ, S", "Address": "275 Dodge St", "City": "Beverly", "State": "Massachusetts", "Zip": 1915, "Country": "United States", "Land_Value": 612600, "Improved_V": 769400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.78861453799999, "SHAPE_Area": 3236.06206363 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360239.839699998497963, 256171.801399998366833 ], [ 360244.851999998092651, 256151.366300001740456 ], [ 360245.723099999129772, 256143.774099998176098 ], [ 360206.759400002658367, 256174.063799999654293 ], [ 360154.916199997067451, 256201.714899998158216 ], [ 360158.820100001990795, 256216.734499998390675 ], [ 360161.212099999189377, 256219.920499999076128 ], [ 360164.372599996626377, 256227.545699998736382 ], [ 360171.543099999427795, 256237.736900001764297 ], [ 360209.684299997985363, 256209.340300001204014 ], [ 360233.180699996650219, 256196.23369999974966 ], [ 360239.839699998497963, 256171.801399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503063400", "MAP": "D9-3566-T86", "PARCEL_NAM": "14-92A", "ACRE": "3,520 sq ft", "LONGITUDE": -64.9114249, "LATITUDE": 18.33527206, "OBJECTID_1": 20239, "PARCEL_NO_": "105503063400", "Tax_Legal_": "EST THOMAS 14-92A 6E NEW QTR", "Name": "CHRISTOPHER, CALVIN", "Address": "PO Box 8885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 209600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.999471402400005, "SHAPE_Area": 384.66531490400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360852.742600001394749, 256225.94990000128746 ], [ 360867.260499998927116, 256238.171700000762939 ], [ 360870.698700003325939, 256233.748799998313189 ], [ 360871.524800002574921, 256231.433600001037121 ], [ 360873.14639999717474, 256230.391399998217821 ], [ 360878.056199997663498, 256221.987799998372793 ], [ 360880.534500002861023, 256215.041999999433756 ], [ 360881.38570000231266, 256209.771600000560284 ], [ 360857.104699999094009, 256220.338700000196695 ], [ 360852.742600001394749, 256225.94990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91115133, "LATITUDE": 18.33530686, "OBJECTID_1": 20036, "PARCEL_NO_": "105503024500", "Tax_Legal_": "14PD EST THOMAS 6E NEW QTR", "Name": "RABSATT, SYHANIA I", "Address": "#6E 14PD EST.THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 274000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.511981875900005, "SHAPE_Area": 447.30552585300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360906.133299998939037, 256239.105099998414516 ], [ 360911.917700000107288, 256222.687100000679493 ], [ 360887.782300002872944, 256216.156800001859665 ], [ 360885.287799999117851, 256225.002300001680851 ], [ 360882.026600003242493, 256229.197500001639128 ], [ 360880.381599999964237, 256232.98369999974966 ], [ 360906.133299998939037, 256239.105099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304071300", "MAP": "D9-1419-T78", "PARCEL_NAM": "2-3", "ACRE": "1.06", "LONGITUDE": -64.93602541, "LATITUDE": 18.33486897, "OBJECTID_1": 11401, "PARCEL_NO_": "105304071300", "Tax_Legal_": "ORKANSHULLET 2-3 HASSEL ISLAND SOUTHSIDE QTR", "Name": "AMALIE HOLDING II LLLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025819, "Country": "United States", "Land_Value": 507300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 341.97796766300002, "SHAPE_Area": 6109.57268415 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358252.865099996328354, 256106.102600000798702 ], [ 358237.957299999892712, 256093.499400001019239 ], [ 358216.888899996876717, 256120.852299999445677 ], [ 358224.055100001394749, 256133.214899998158216 ], [ 358262.184600003063679, 256198.992400001734495 ], [ 358284.131499998271465, 256227.167500000447035 ], [ 358298.583499997854233, 256210.164200000464916 ], [ 358301.02759999781847, 256207.228900000452995 ], [ 358302.690600000321865, 256201.331799998879433 ], [ 358301.999399997293949, 256187.816199999302626 ], [ 358310.20269999653101, 256171.418000001460314 ], [ 358315.107100002467632, 256163.647700000554323 ], [ 358317.634700000286102, 256160.859299998730421 ], [ 358252.865099996328354, 256106.102600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303301200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94357863, "LATITUDE": 18.33518504, "OBJECTID_1": 11261, "PARCEL_NO_": "105303301200", "Tax_Legal_": "HONDURAS 5-H KRONP. PRINCE QTR.", "Name": "BLANCHARD, ROBERT & THERESA", "Address": "P.O. BOX 2714", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23400, "Improved_V": 77400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.988183537, "SHAPE_Area": 520.58059103100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357451.391800001263618, 256174.732700001448393 ], [ 357448.877599999308586, 256185.900100000202656 ], [ 357451.310900002717972, 256184.231199998408556 ], [ 357456.148800000548363, 256184.270799998193979 ], [ 357459.359700001776218, 256185.985800001770258 ], [ 357461.744400002062321, 256190.016100000590086 ], [ 357469.733800001442432, 256198.736400000751019 ], [ 357475.343900002539158, 256202.793099999427795 ], [ 357487.623800002038479, 256181.15089999884367 ], [ 357451.391800001263618, 256174.732700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503067200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91534229, "LATITUDE": 18.33521627, "OBJECTID_1": 20275, "PARCEL_NO_": "105503067200", "Tax_Legal_": "EST THOMAS 7E NEW QTR", "Name": "BEDFORD, GEORGE, SR. & JOCELYN E. (CO-TRUSTEES)", "Address": "6231 SW 20th St", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33317, "Country": "United States", "Land_Value": 25200, "Improved_V": 257500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.772668116399998, "SHAPE_Area": 405.689336443 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360447.632799997925758, 256201.155299998819828 ], [ 360441.812399998307228, 256221.794900000095367 ], [ 360460.312600001692772, 256227.223600000143051 ], [ 360465.330300003290176, 256206.155299998819828 ], [ 360447.632799997925758, 256201.155299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503078100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91412533, "LATITUDE": 18.33524532, "OBJECTID_1": 20352, "PARCEL_NO_": "105503078100", "Tax_Legal_": "8FA ESTATE THOMAS NEW QTR", "Name": "FAHIE, GERTRUDE", "Address": "PO Box 11638", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014638, "Country": "United States", "Land_Value": 18300, "Improved_V": 82700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.597125229, "SHAPE_Area": 451.47531258800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360579.817699998617172, 256208.147799998521805 ], [ 360574.189699999988079, 256206.201900001615286 ], [ 360567.566600002348423, 256226.41270000115037 ], [ 360576.427000001072884, 256227.540699999779463 ], [ 360592.555100001394749, 256227.461599998176098 ], [ 360598.317900002002716, 256213.57660000026226 ], [ 360579.817699998617172, 256208.147799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503072200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91391743, "LATITUDE": 18.3352628, "OBJECTID_1": 20305, "PARCEL_NO_": "105503072200", "Tax_Legal_": "EST. THOMAS 9E NEW QTR", "Name": "ALI, FAIKA", "Address": "PO Box 9068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012068, "Country": "United States", "Land_Value": 29800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.8749787932, "SHAPE_Area": 195.39739582000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360592.555100001394749, 256227.461599998176098 ], [ 360609.516400001943111, 256224.222899999469519 ], [ 360620.846100002527237, 256219.460499998182058 ], [ 360598.317900002002716, 256213.57660000026226 ], [ 360592.555100001394749, 256227.461599998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503025000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91068233, "LATITUDE": 18.3352241, "OBJECTID_1": 20040, "PARCEL_NO_": "105503025000", "Tax_Legal_": "14PI ESTATE THOMAS NO.6E QTR", "Name": "KELLY AND FEDORA FAMILY TRUST", "Address": "9275 Estate Thomas 14-P R", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65300, "Improved_V": 207400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.015127191199994, "SHAPE_Area": 498.62327186800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360935.435699999332428, 256207.047600001096725 ], [ 360930.439499996602535, 256225.582899998873472 ], [ 360957.011900000274181, 256230.022300001233816 ], [ 360963.593699999153614, 256214.666299998760223 ], [ 360935.435699999332428, 256207.047600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91228744, "LATITUDE": 18.33522984, "OBJECTID_1": 20250, "PARCEL_NO_": "105503064500", "Tax_Legal_": "14-42 EST THOMAS 6E NEW QTR", "Name": "TRUST AGREEMENT OF ELRETH THOMAS AND CHERYL J THOM", "Address": "9154 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29400, "Improved_V": 159200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.672644079099996, "SHAPE_Area": 365.43603757099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360786.881800003349781, 256228.418800000101328 ], [ 360785.438199996948242, 256208.5641999989748 ], [ 360766.079499997198582, 256209.250100001692772 ], [ 360767.539200000464916, 256227.204999998211861 ], [ 360786.881800003349781, 256228.418800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91212904, "LATITUDE": 18.33515175, "OBJECTID_1": 20245, "PARCEL_NO_": "105503064000", "Tax_Legal_": "14-43 ESTATE THOMAS NEW QTR", "Name": "GEORGE, LEANDER", "Address": "9153 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29300, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.285606278, "SHAPE_Area": 562.78995944099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360783.974799998104572, 256191.031399998813868 ], [ 360785.438199996948242, 256208.5641999989748 ], [ 360786.881800003349781, 256228.418800000101328 ], [ 360803.03320000320673, 256225.595600001513958 ], [ 360800.878600001335144, 256194.5472999997437 ], [ 360783.974799998104572, 256191.031399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503072000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91429005000001, "LATITUDE": 18.3352123, "OBJECTID_1": 20303, "PARCEL_NO_": "105503072000", "Tax_Legal_": "8F ESTATE THOMAS 6E NEW QUARTER", "Name": "ROMNEY, ADINA T. & DOROTHY J. TODMAN", "Address": "PO Box 10466", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19300, "Improved_V": 104100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.539049341799995, "SHAPE_Area": 262.54570481000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360574.189699999988079, 256206.201900001615286 ], [ 360562.931900002062321, 256202.521200001239777 ], [ 360555.498800002038479, 256223.14750000089407 ], [ 360567.566600002348423, 256226.41270000115037 ], [ 360574.189699999988079, 256206.201900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303300900", "MAP": "G9-1059-T68", "PARCEL_NAM": "5F", "ACRE": "0.09", "LONGITUDE": -64.94387557, "LATITUDE": 18.33518085, "OBJECTID_1": 11258, "PARCEL_NO_": "105303300900", "Tax_Legal_": "HONDURAS 5F KROMP QTR", "Name": "QUETEL, AUGUSTIN & FLORENCE", "Address": "PO Box 306423", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23100, "Improved_V": 47000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.779895904300005, "SHAPE_Area": 548.83288425800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357430.45830000191927, 256170.972800001502037 ], [ 357424.598300002515316, 256196.256000000983477 ], [ 357443.915700003504753, 256200.424899999052286 ], [ 357448.877599999308586, 256185.900100000202656 ], [ 357451.391800001263618, 256174.732700001448393 ], [ 357430.45830000191927, 256170.972800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064600", "MAP": "D9-8078-T008", "PARCEL_NAM": "14-41 REM", "ACRE": ".10", "LONGITUDE": -64.91249222, "LATITUDE": 18.33501181, "OBJECTID_1": 20251, "PARCEL_NO_": "105503064600", "Tax_Legal_": "14-41 ESTATE THOMAS NEW QTR", "Name": "PENNYFEATHER, GARFIELD J & ERNIE M", "Address": "14-41 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.135077511700004, "SHAPE_Area": 466.69541576099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360747.441699996590614, 256207.990899998694658 ], [ 360765.750600002706051, 256206.454500000923872 ], [ 360763.071800000965595, 256183.683200001716614 ], [ 360752.625699996948242, 256179.375799998641014 ], [ 360746.185999996960163, 256178.056499999016523 ], [ 360747.441699996590614, 256207.990899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064700", "MAP": "B9-107-T64", "PARCEL_NAM": "14-40", "ACRE": null, "LONGITUDE": -64.91264906000001, "LATITUDE": 18.33508426, "OBJECTID_1": 20252, "PARCEL_NO_": "105503064700", "Tax_Legal_": "14 40 ESTATE THOMAS NEW QTR", "Name": "EVANS, ROOSEVELT & EDRA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68600, "Improved_V": 193900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.768596446, "SHAPE_Area": 822.52627457699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360746.185999996960163, 256178.056499999016523 ], [ 360729.2533999979496, 256177.917899999767542 ], [ 360730.46509999781847, 256225.0016999989748 ], [ 360748.196699999272823, 256225.991200000047684 ], [ 360746.185999996960163, 256178.056499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503065800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91334657, "LATITUDE": 18.33520632, "OBJECTID_1": 20263, "PARCEL_NO_": "105503065800", "Tax_Legal_": "14-36 THOMAS 6E NEW QUARTER", "Name": "THE NELLIE L. ROGERS LIVING TRUST", "Address": "PO Box 11133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21000, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.460919118800007, "SHAPE_Area": 412.15871556100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360657.931100003421307, 256220.397300001233816 ], [ 360661.95549999922514, 256221.274599999189377 ], [ 360680.470100000500679, 256225.014699999243021 ], [ 360680.497100003063679, 256221.848499998450279 ], [ 360669.377700001001358, 256201.914700001478195 ], [ 360642.63629999756813, 256217.316799998283386 ], [ 360657.931100003421307, 256220.397300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503063700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91196429, "LATITUDE": 18.33514703, "OBJECTID_1": 20242, "PARCEL_NO_": "105503063700", "Tax_Legal_": "14-44 ESTATE THOMAS NEW QTR", "Name": "RALPH THOMAS REVOCABLE LIVING TRUST", "Address": "PO Box 306226", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.553123688900001, "SHAPE_Area": 537.08870081700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360821.607100002467632, 256222.370200000703335 ], [ 360818.617499999701977, 256194.692400000989437 ], [ 360800.878600001335144, 256194.5472999997437 ], [ 360803.03320000320673, 256225.595600001513958 ], [ 360821.607100002467632, 256222.370200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503065100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91280396000001, "LATITUDE": 18.33507677, "OBJECTID_1": 20256, "PARCEL_NO_": "105503065100", "Tax_Legal_": "14-39 ESTATE THOMAS No. 6E NEW QTR", "Name": "DAWN S BROOKS LIVING REVOCABLE TRUST", "Address": "PO Box 11524", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42100, "Improved_V": 187700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.56542842499999, "SHAPE_Area": 694.61543512799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360729.2533999979496, 256177.917899999767542 ], [ 360716.329099997878075, 256180.556400001049042 ], [ 360711.473200000822544, 256182.627599999308586 ], [ 360717.569499999284744, 256224.262899998575449 ], [ 360730.46509999781847, 256225.0016999989748 ], [ 360729.2533999979496, 256177.917899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503071800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91442548000001, "LATITUDE": 18.33517191, "OBJECTID_1": 20301, "PARCEL_NO_": "105503071800", "Tax_Legal_": "8G ESTATE THOMAS NEW QTR", "Name": "FRETT, DAWN", "Address": "PO Box 8375", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 174400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.538471737199998, "SHAPE_Area": 399.306345298 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360562.931900002062321, 256202.521200001239777 ], [ 360546.049699999392033, 256196.47239999845624 ], [ 360538.605800002813339, 256218.365200001746416 ], [ 360555.498800002038479, 256223.14750000089407 ], [ 360562.931900002062321, 256202.521200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503065200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91296388000001, "LATITUDE": 18.33511605, "OBJECTID_1": 20257, "PARCEL_NO_": "105503065200", "Tax_Legal_": "14 38 ESTATE THOMAS NEW QTR", "Name": "NIBBS, ALVIN", "Address": "PO Box 8612", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 38900, "Improved_V": 244000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.09128427500001, "SHAPE_Area": 733.67974206099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360711.473200000822544, 256182.627599999308586 ], [ 360692.856100000441074, 256190.9189000017941 ], [ 360697.42059999704361, 256223.042500000447035 ], [ 360717.569499999284744, 256224.262899998575449 ], [ 360711.473200000822544, 256182.627599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033600", "MAP": "F9-3906-T80", "PARCEL_NAM": "14NK", "ACRE": "0.11", "LONGITUDE": -64.91035213000001, "LATITUDE": 18.33510151, "OBJECTID_1": 20092, "PARCEL_NO_": "105503033600", "Tax_Legal_": "14NK ESTATE THOMAS NEW QTR.", "Name": "RAWLINS, R & M & DN", "Address": "14-NK-6E Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 68000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.449815040100006, "SHAPE_Area": 334.42907603700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360991.1503000035882, 256198.215500000864267 ], [ 360991.242899999022484, 256196.606300000101328 ], [ 360972.030199997127056, 256197.125599998980761 ], [ 360972.592600002884865, 256199.541299998760223 ], [ 360971.681999996304512, 256211.777199998497963 ], [ 360971.646700002253056, 256211.976500000804663 ], [ 360971.071199998259544, 256215.222699999809265 ], [ 360980.129699997603893, 256214.842099998146296 ], [ 360987.132100000977516, 256214.547899998724461 ], [ 360990.189099997282028, 256214.419399999082088 ], [ 360990.221699997782707, 256212.562199998646975 ], [ 360991.1503000035882, 256198.215500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503067300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91551349, "LATITUDE": 18.33516999, "OBJECTID_1": 20276, "PARCEL_NO_": "105503067300", "Tax_Legal_": "THOMAS ESTATE 7D 6E NEW QTR..", "Name": "MARTIN, AGNOLA & IRA", "Address": "7D ESTATE THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 225700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.250666635000002, "SHAPE_Area": 400.32787941200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360429.129000000655651, 256196.148699998855591 ], [ 360424.114900000393391, 256216.794900000095367 ], [ 360428.13740000128746, 256217.883200000971556 ], [ 360441.812399998307228, 256221.794900000095367 ], [ 360447.632799997925758, 256201.155299998819828 ], [ 360429.129000000655651, 256196.148699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303300800", "MAP": "F9-3774-T079", "PARCEL_NAM": "5D", "ACRE": "0.08", "LONGITUDE": -64.9440593, "LATITUDE": 18.33515042, "OBJECTID_1": 11257, "PARCEL_NO_": "105303300800", "Tax_Legal_": "HONDURAS 5D CROWN PRINCE ST THOS", "Name": "MAGRAS, AIAH", "Address": "PO BOX 711", "City": "Odessa", "State": "Florida", "Zip": 33556, "Country": "United States", "Land_Value": 27000, "Improved_V": 90800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.592830789299995, "SHAPE_Area": 476.154302067 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357412.746399998664856, 256167.661400001496077 ], [ 357406.083700001239777, 256192.515900000929832 ], [ 357424.598300002515316, 256196.256000000983477 ], [ 357430.45830000191927, 256170.972800001502037 ], [ 357412.746399998664856, 256167.661400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503065700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91315173, "LATITUDE": 18.33514547, "OBJECTID_1": 20262, "PARCEL_NO_": "105503065700", "Tax_Legal_": "14 37 EST THOMAS NEW QTR", "Name": "HARRIGAN, ERMINE", "Address": "14-37 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33000, "Improved_V": 192100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.162923082000006, "SHAPE_Area": 564.23707987800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360692.856100000441074, 256190.9189000017941 ], [ 360669.377700001001358, 256201.914700001478195 ], [ 360680.497100003063679, 256221.848499998450279 ], [ 360697.42059999704361, 256223.042500000447035 ], [ 360692.856100000441074, 256190.9189000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503024900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91089287, "LATITUDE": 18.3351853, "OBJECTID_1": 20039, "PARCEL_NO_": "105503024900", "Tax_Legal_": "14PIA ESTATE THOMAS NO.6E NEW QTR", "Name": "RICHARDS, IDALYN & OTHERS", "Address": "9141 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15500, "Improved_V": 172600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.940807174900002, "SHAPE_Area": 355.90366355899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360919.345399998128414, 256202.693999998271465 ], [ 360911.917700000107288, 256222.687100000679493 ], [ 360930.439499996602535, 256225.582899998873472 ], [ 360935.435699999332428, 256207.047600001096725 ], [ 360919.345399998128414, 256202.693999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503063600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9117953, "LATITUDE": 18.33512447, "OBJECTID_1": 20241, "PARCEL_NO_": "105503063600", "Tax_Legal_": "14-45 EST THOMAS 6E NEW QTR", "Name": "TAVERNIER, JULIEN & AVANELL", "Address": "14-45 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 298300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.104996659500003, "SHAPE_Area": 467.64540367799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360837.171599999070168, 256193.788800001144409 ], [ 360818.617499999701977, 256194.692400000989437 ], [ 360821.607100002467632, 256222.370200000703335 ], [ 360824.029700003564358, 256221.967799998819828 ], [ 360838.579300001263618, 256217.864999998360872 ], [ 360837.171599999070168, 256193.788800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503024800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91110149, "LATITUDE": 18.33513333, "OBJECTID_1": 20038, "PARCEL_NO_": "105503024800", "Tax_Legal_": "14PE EST THOMAS 6E NEW QTR", "Name": "FRETT, JOAN V. & OTHERS", "Address": "7785 Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39200, "Improved_V": 265400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.042543507, "SHAPE_Area": 590.95983451400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360885.537799999117851, 256195.662300001829863 ], [ 360888.689300000667572, 256204.342999998480082 ], [ 360888.619199998676777, 256212.574999999254942 ], [ 360887.782300002872944, 256216.156800001859665 ], [ 360911.917700000107288, 256222.687100000679493 ], [ 360919.345399998128414, 256202.693999998271465 ], [ 360907.277699999511242, 256199.428899999707937 ], [ 360885.537799999117851, 256195.662300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404193400", "MAP": "C9-286-T84", "PARCEL_NAM": "6I-1A", "ACRE": "0.15", "LONGITUDE": -64.91729441, "LATITUDE": 18.33502451, "OBJECTID_1": 19626, "PARCEL_NO_": "105404193400", "Tax_Legal_": "6I-1A EST. THOMAS 6I NEW QTR.", "Name": "ISLAND DEV. ASSOCIATES", "Address": "P,.O. BOX 4906", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52300, "Improved_V": 63600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.623318161, "SHAPE_Area": 750.52833679299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360265.571599997580051, 256180.244600001722574 ], [ 360239.839699998497963, 256171.801399998366833 ], [ 360233.180699996650219, 256196.23369999974966 ], [ 360252.359499998390675, 256216.655699998140335 ], [ 360254.818000003695488, 256212.031700000166893 ], [ 360254.081799998879433, 256203.793099999427795 ], [ 360256.578100003302097, 256194.7364999987185 ], [ 360261.505900003015995, 256184.222100000828505 ], [ 360265.571599997580051, 256180.244600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503072300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91383207, "LATITUDE": 18.33510224, "OBJECTID_1": 20306, "PARCEL_NO_": "105503072300", "Tax_Legal_": "EST THOMAS 14-46 NEW QTR. 6E", "Name": "ALI, FAIKA", "Address": "PO Box 9068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012068, "Country": "United States", "Land_Value": 34300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.233151965, "SHAPE_Area": 648.3223882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360625.701999999582767, 256217.389299999922514 ], [ 360620.34910000115633, 256183.148299999535084 ], [ 360609.04450000077486, 256184.955600000917912 ], [ 360598.317900002002716, 256213.57660000026226 ], [ 360620.846100002527237, 256219.460499998182058 ], [ 360625.701999999582767, 256217.389299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503071600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91459168, "LATITUDE": 18.33512452, "OBJECTID_1": 20299, "PARCEL_NO_": "105503071600", "Tax_Legal_": "8H ESTATE THOMAS NEW QTR", "Name": "PINNEY, CALVIN", "Address": "7786 UPPER LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 199800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.372232779900003, "SHAPE_Area": 449.09278120300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360546.049699999392033, 256196.47239999845624 ], [ 360528.361100003123283, 256190.416999999433756 ], [ 360520.101999998092651, 256213.358600001782179 ], [ 360538.605800002813339, 256218.365200001746416 ], [ 360546.049699999392033, 256196.47239999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303300700", "MAP": "D9-7935-T007", "PARCEL_NAM": "5A", "ACRE": ".08", "LONGITUDE": -64.94424925, "LATITUDE": 18.3351152, "OBJECTID_1": 11256, "PARCEL_NO_": "105303300700", "Tax_Legal_": "HONDURAS 5A & 5K (COMBINED) CROWN PRINCE", "Name": "DANET, LEON & VIRGINIA M.", "Address": "PO Box 307092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29400, "Improved_V": 65400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.766609598700001, "SHAPE_Area": 570.19539606599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357406.083700001239777, 256192.515900000929832 ], [ 357412.746399998664856, 256167.661400001496077 ], [ 357390.201999999582767, 256163.677200000733137 ], [ 357384.351000003516674, 256187.905099999159575 ], [ 357406.083700001239777, 256192.515900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503067400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91565125, "LATITUDE": 18.33513875, "OBJECTID_1": 20277, "PARCEL_NO_": "105503067400", "Tax_Legal_": "7C ESTATE THOMAS NEW QTR", "Name": "BAA, JULIEN K", "Address": "PO Box 305988", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 226600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.237923426699993, "SHAPE_Area": 233.86601174399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360418.664899997413158, 256193.952100001275539 ], [ 360412.851700000464916, 256213.747400000691414 ], [ 360424.114900000393391, 256216.794900000095367 ], [ 360429.129000000655651, 256196.148699998855591 ], [ 360418.664899997413158, 256193.952100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503072400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91364193, "LATITUDE": 18.33503708, "OBJECTID_1": 20307, "PARCEL_NO_": "105503072400", "Tax_Legal_": "THOMAS ESTATE 14-47 NEW QTR", "Name": "ROLANDO R & CLARICE E MONSTANTO ROPER LIV TRUST", "Address": "PO Box 672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38400, "Improved_V": 343900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.711574001, "SHAPE_Area": 753.420945244 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360648.384800001978874, 256205.120400000363588 ], [ 360640.573399998247623, 256175.503400001674891 ], [ 360620.34910000115633, 256183.148299999535084 ], [ 360625.701999999582767, 256217.389299999922514 ], [ 360627.320000000298023, 256216.769200000911951 ], [ 360648.384800001978874, 256205.120400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105404170200", "MAP": "A9-605-T003", "PARCEL_NAM": "7 REM", "ACRE": null, "LONGITUDE": -64.92008761, "LATITUDE": 18.33406695, "OBJECTID_1": 19577, "PARCEL_NO_": "105404170200", "Tax_Legal_": "7 ESTATE THOMAS, 6F NEW QUARTER", "Name": "Virgin Islands Finance Authority", "Address": "7 ESTATE THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3659100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 851.23989205500004, "SHAPE_Area": 11235.806164600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359773.741099998354912, 255984.546300001442432 ], [ 359877.190800003707409, 256051.676300000399351 ], [ 360023.143100000917912, 256146.385299999266863 ], [ 359990.4662000015378, 256195.936000000685453 ], [ 360016.131599999964237, 256212.189100001007318 ], [ 360049.614699997007847, 256162.645100001245737 ], [ 359981.935900002717972, 256061.399599999189377 ], [ 359973.959100000560284, 256051.201799999922514 ], [ 359961.96509999781847, 256039.282400000840425 ], [ 359902.697200000286102, 255991.934500001370907 ], [ 359871.661700002849102, 256038.121100001037121 ], [ 359869.210400000214577, 256041.900699999183416 ], [ 359777.005900003015995, 255979.928899999707937 ], [ 359773.741099998354912, 255984.546300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503068600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91145666, "LATITUDE": 18.33509324, "OBJECTID_1": 20286, "PARCEL_NO_": "105503068600", "Tax_Legal_": "EST THOMAS 14-92D NEW QTR", "Name": "BLYDEN, VIOLET", "Address": "9145 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022605, "Country": "United States", "Land_Value": 22300, "Improved_V": 211200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.145165482199999, "SHAPE_Area": 492.919901702 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360854.113200001418591, 256192.872000001370907 ], [ 360853.08389999717474, 256219.039200000464916 ], [ 360881.412699997425079, 256206.605399999767542 ], [ 360878.246799997985363, 256199.613400001078844 ], [ 360871.038599997758865, 256193.854899998754263 ], [ 360864.600599996745586, 256192.324599999934435 ], [ 360854.113200001418591, 256192.872000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503071400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91475498, "LATITUDE": 18.33507525, "OBJECTID_1": 20297, "PARCEL_NO_": "105503071400", "Tax_Legal_": "8I ESTATE THOMAS NEW QTR", "Name": "ST JOHN, ALBON & ANITA", "Address": "PO Box 307695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.580775990199996, "SHAPE_Area": 432.15668594800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360528.361100003123283, 256190.416999999433756 ], [ 360511.478900000452995, 256184.368200000375509 ], [ 360504.01349999755621, 256208.793999999761581 ], [ 360520.101999998092651, 256213.358600001782179 ], [ 360528.361100003123283, 256190.416999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503078200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91401619, "LATITUDE": 18.33505978, "OBJECTID_1": 20353, "PARCEL_NO_": "105503078200", "Tax_Legal_": "8P EST THOMAS NEW QTR", "Name": "SYLVIA V MILLS BROWNE LIV TR", "Address": "PO Box 303941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24100, "Improved_V": 179800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.117810007900005, "SHAPE_Area": 534.02481693300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360588.083999998867512, 256184.361900001764297 ], [ 360579.817699998617172, 256208.147799998521805 ], [ 360598.317900002002716, 256213.57660000026226 ], [ 360609.04450000077486, 256184.955600000917912 ], [ 360596.13629999756813, 256185.694400001317263 ], [ 360588.083999998867512, 256184.361900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404191600", "MAP": "G9-2200-T73", "PARCEL_NAM": "5C", "ACRE": "0.17", "LONGITUDE": -64.91614879, "LATITUDE": 18.33508226, "OBJECTID_1": 19611, "PARCEL_NO_": "105404191600", "Tax_Legal_": "5C ESTATE THOMAS 6E NEW QTR", "Name": "SLACK, RUDOLPH", "Address": "PO Box 7673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55500, "Improved_V": 192500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.90456731099999, "SHAPE_Area": 694.68509744999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360374.416599996387959, 256181.979899998754263 ], [ 360362.347099997103214, 256178.925799999386072 ], [ 360354.634800001978874, 256200.7331000007689 ], [ 360358.729500003159046, 256203.032400000840425 ], [ 360363.494099996984005, 256205.707899998873472 ], [ 360363.314599998295307, 256224.832600001245737 ], [ 360363.734600000083447, 256224.5011 ], [ 360370.499899998307228, 256219.161699999123812 ], [ 360370.885499998927116, 256218.857400000095367 ], [ 360375.052000001072884, 256213.188099998980761 ], [ 360378.237800002098083, 256206.709100000560284 ], [ 360379.482500001788139, 256202.382199998944998 ], [ 360380.454999998211861, 256192.440799999982119 ], [ 360377.62389999628067, 256184.116999998688698 ], [ 360374.416599996387959, 256181.979899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503067500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91587689000001, "LATITUDE": 18.33507897, "OBJECTID_1": 20278, "PARCEL_NO_": "105503067500", "Tax_Legal_": "ESTATE THOMAS 7A & 7B NEW QUARTER", "Name": "WEBSTER, DUDULEY", "Address": "PO Box 4043", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44300, "Improved_V": 324500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.9178104824, "SHAPE_Area": 256.24782476799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360391.131599999964237, 256207.659000001847744 ], [ 360400.785800002515316, 256210.271099999547005 ], [ 360406.59179999679327, 256191.320199999958277 ], [ 360393.712399996817112, 256188.681699998676777 ], [ 360391.291599996387959, 256188.872999999672174 ], [ 360389.662799999117851, 256190.759500000625849 ], [ 360391.198100000619888, 256199.84910000115633 ], [ 360391.131599999964237, 256207.659000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503071100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91492585, "LATITUDE": 18.33502744, "OBJECTID_1": 20294, "PARCEL_NO_": "105503071100", "Tax_Legal_": "8J ESTATE THOMAS NEW QTR", "Name": "GEORGE,WILMA, &CHARLES&TURNBULL,V.,TODMAN,L.,CHRISTOPHER,C.&L.", "Address": "9176 Estate Thomas J-8, Apt. 1", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 164000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.281476664699994, "SHAPE_Area": 533.76928662700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360511.478900000452995, 256184.368200000375509 ], [ 360492.989500001072884, 256177.673000000417233 ], [ 360483.900700002908707, 256203.352000001817942 ], [ 360504.01349999755621, 256208.793999999761581 ], [ 360511.478900000452995, 256184.368200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503025200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91065587, "LATITUDE": 18.3350195, "OBJECTID_1": 20042, "PARCEL_NO_": "105503025200", "Tax_Legal_": "14PR EST THOMAS 6E NEW QTR", "Name": "LAMBERTIS, LUCIA & TODMAN, LEROY, LESLIE,LINCOLN,LIONEL&LORNA", "Address": "PO BOX 306933", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52300, "Improved_V": 115800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.159316378, "SHAPE_Area": 705.51978430300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360933.306000001728535, 256184.0456000007689 ], [ 360932.517099998891354, 256203.084499999880791 ], [ 360964.42509999871254, 256211.717799998819828 ], [ 360965.301600001752377, 256203.492400001734495 ], [ 360964.547399997711182, 256197.364500001072884 ], [ 360961.424699999392033, 256185.306600000709295 ], [ 360933.306000001728535, 256184.0456000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503072100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91419207, "LATITUDE": 18.33502033, "OBJECTID_1": 20304, "PARCEL_NO_": "105503072100", "Tax_Legal_": "8N ESTATE THOMAS NEW QTR", "Name": "FAHIE, IDA", "Address": "8N Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 155400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.696741979799995, "SHAPE_Area": 444.92212383399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360571.196400001645088, 256178.946299999952316 ], [ 360562.931900002062321, 256202.521200001239777 ], [ 360574.189699999988079, 256206.201900001615286 ], [ 360579.817699998617172, 256208.147799998521805 ], [ 360588.083999998867512, 256184.361900001764297 ], [ 360571.196400001645088, 256178.946299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503067900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91231402, "LATITUDE": 18.33504816, "OBJECTID_1": 20281, "PARCEL_NO_": "105503067900", "Tax_Legal_": "14-42A EST THOMAS NEW QTR", "Name": "TRUST AGREEMENT OF ELRETH THOMAS AND CHERYL J THOM", "Address": "9154 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 155100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.956908824600006, "SHAPE_Area": 415.816840603 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360763.071800000965595, 256183.683200001716614 ], [ 360766.079499997198582, 256209.250100001692772 ], [ 360785.438199996948242, 256208.5641999989748 ], [ 360783.974799998104572, 256191.031399998813868 ], [ 360776.730599999427795, 256189.494500000029802 ], [ 360763.071800000965595, 256183.683200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404181600", "MAP": null, "PARCEL_NAM": "16-1", "ACRE": null, "LONGITUDE": -64.91779459, "LATITUDE": 18.33475895, "OBJECTID_1": 19591, "PARCEL_NO_": "105404181600", "Tax_Legal_": "THOMAS ESTATE 16-1 6H NEW QTR.", "Name": "SHERPA, INC.", "Address": "6H-16 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 588100, "Improved_V": 983900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.76308726399998, "SHAPE_Area": 3123.0550918200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360207.876800000667572, 256137.553700000047684 ], [ 360194.115500003099442, 256143.773899998515844 ], [ 360171.446999996900558, 256154.354100000113249 ], [ 360152.016400001943111, 256163.483199998736382 ], [ 360152.637500002980232, 256185.230900000780821 ], [ 360154.916199997067451, 256201.714899998158216 ], [ 360206.759400002658367, 256174.063799999654293 ], [ 360245.723099999129772, 256143.774099998176098 ], [ 360246.619300000369549, 256133.226700000464916 ], [ 360244.270499996840954, 256124.974899999797344 ], [ 360207.876800000667572, 256137.553700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503072500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91346516, "LATITUDE": 18.33494499, "OBJECTID_1": 20308, "PARCEL_NO_": "105503072500", "Tax_Legal_": "14 48 ESTATE THOMAS NEW QTR", "Name": "FRETT, LEONELL", "Address": "9229 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27500, "Improved_V": 197900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.119706685400004, "SHAPE_Area": 532.06905283200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360662.968599997460842, 256197.007100000977516 ], [ 360658.384199999272823, 256167.205400001257658 ], [ 360640.573399998247623, 256175.503400001674891 ], [ 360648.384800001978874, 256205.120400000363588 ], [ 360662.968599997460842, 256197.007100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404191400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91640299, "LATITUDE": 18.33494957, "OBJECTID_1": 19610, "PARCEL_NO_": "105404191400", "Tax_Legal_": "5A & 5B ESTATE THOMAS 6E NEW QTR.", "Name": "Ann Hughes, Keith Turnbull and Others", "Address": "10925 E Golf Dr", "City": "Miami", "State": "Florida", "Zip": 33167, "Country": "United States", "Land_Value": 71900, "Improved_V": 543000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.239541582, "SHAPE_Area": 743.51923136599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360321.819499999284744, 256185.692200001329184 ], [ 360354.634800001978874, 256200.7331000007689 ], [ 360362.347099997103214, 256178.925799999386072 ], [ 360348.666799999773502, 256175.647399999201298 ], [ 360326.060999996960163, 256168.089000001549721 ], [ 360321.819499999284744, 256185.692200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503071000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91509052000001, "LATITUDE": 18.3349763, "OBJECTID_1": 20293, "PARCEL_NO_": "105503071000", "Tax_Legal_": "THOMAS ESTATE 7F 6E NEW QTR.", "Name": "DONOVAN, DENNIS & JANICE", "Address": "PO Box 11662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 153900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.781841629300004, "SHAPE_Area": 459.30432763699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360492.989500001072884, 256177.673000000417233 ], [ 360476.911799997091293, 256171.841899998486042 ], [ 360468.614900000393391, 256199.216099999845028 ], [ 360483.900700002908707, 256203.352000001817942 ], [ 360492.989500001072884, 256177.673000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503071900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91435371, "LATITUDE": 18.33496983, "OBJECTID_1": 20302, "PARCEL_NO_": "105503071900", "Tax_Legal_": "8M ESTATE THOMAS NEW QTR", "Name": "ESTICK, ALFRED", "Address": "PO Box 53", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 21000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.811425420899994, "SHAPE_Area": 449.85819440199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360553.504299998283386, 256173.313099998980761 ], [ 360546.049699999392033, 256196.47239999845624 ], [ 360562.931900002062321, 256202.521200001239777 ], [ 360571.196400001645088, 256178.946299999952316 ], [ 360553.504299998283386, 256173.313099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503070800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9152498, "LATITUDE": 18.33493259, "OBJECTID_1": 20291, "PARCEL_NO_": "105503070800", "Tax_Legal_": "7G ESTATE THOMAS NEW QTR", "Name": "MERCER, ALBERT & HERMIA", "Address": "P.O. BOX 4275", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26500, "Improved_V": 124900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.658521844000006, "SHAPE_Area": 542.95991707899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360476.911799997091293, 256171.841899998486042 ], [ 360460.029600001871586, 256165.793099999427795 ], [ 360450.112899996340275, 256193.998399998992682 ], [ 360468.614900000393391, 256199.216099999845028 ], [ 360476.911799997091293, 256171.841899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503071700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9145184, "LATITUDE": 18.33492031, "OBJECTID_1": 20300, "PARCEL_NO_": "105503071700", "Tax_Legal_": "8L ESTATE THOMAS NEW QTR", "Name": "HUNTLEY, NORMA I., & RIVERA JUANITA", "Address": "PO Box 7262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.745502556899993, "SHAPE_Area": 439.90149994400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360536.616700001060963, 256167.897599998861551 ], [ 360528.361100003123283, 256190.416999999433756 ], [ 360546.049699999392033, 256196.47239999845624 ], [ 360553.504299998283386, 256173.313099998980761 ], [ 360536.616700001060963, 256167.897599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503072600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91330735, "LATITUDE": 18.33487352, "OBJECTID_1": 20309, "PARCEL_NO_": "105503072600", "Tax_Legal_": "ESTATE THOMAS 14-49 NEW QTR", "Name": "FRETT, SIMON & ISA & STEVEN", "Address": "8214 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 220500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.850974687000004, "SHAPE_Area": 542.53718102200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360679.973099999129772, 256188.702599998563528 ], [ 360675.386900000274181, 256159.111900001764297 ], [ 360658.384199999272823, 256167.205400001257658 ], [ 360662.968599997460842, 256197.007100000977516 ], [ 360679.973099999129772, 256188.702599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503025100", "MAP": "F9-2768-T71", "PARCEL_NAM": "14PF", "ACRE": "0.11", "LONGITUDE": -64.91113604, "LATITUDE": 18.33496735, "OBJECTID_1": 20041, "PARCEL_NO_": "105503025100", "Tax_Legal_": "14PF EST THOMAS 6E NEW QTR", "Name": "SKELTON, CYRIL A", "Address": "9142 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20900, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.028034885599993, "SHAPE_Area": 396.86109810900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360909.279200002551079, 256183.057599999010563 ], [ 360899.356600001454353, 256182.687600001692772 ], [ 360889.673600003123283, 256183.452799998223782 ], [ 360884.82320000231266, 256184.890700001269579 ], [ 360883.196199998259544, 256186.566199999302626 ], [ 360881.531400002539158, 256192.674199998378754 ], [ 360883.136799998581409, 256193.531800001859665 ], [ 360883.927000001072884, 256195.438099998980761 ], [ 360885.537799999117851, 256195.662300001829863 ], [ 360910.519100002944469, 256197.555599998682737 ], [ 360916.279600001871586, 256198.777699999511242 ], [ 360909.279200002551079, 256183.057599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404193500", "MAP": "D9-6729-T000", "PARCEL_NAM": "CONS 6I-1B,C,D", "ACRE": "1.31", "LONGITUDE": -64.91692546, "LATITUDE": 18.33463423, "OBJECTID_1": 19627, "PARCEL_NO_": "105404193500", "Tax_Legal_": "6I-1B,1C,& 1D EST.THOMAS 6I NEW QTR.", "Name": "HODGE, JOSEPH & ZULMA", "Address": "P.O. BOX 5048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 255300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.93789001300001, "SHAPE_Area": 5546.3634721300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360321.140600003302097, 256188.509899999946356 ], [ 360326.060999996960163, 256168.089000001549721 ], [ 360322.132200002670288, 256166.775400001555681 ], [ 360323.003200002014637, 256159.183100000023842 ], [ 360327.820900000631809, 256160.78489999845624 ], [ 360334.038500003516674, 256136.342300001531839 ], [ 360334.788500003516674, 256133.393699999898672 ], [ 360329.698299996554852, 256130.529199998825788 ], [ 360275.099200002849102, 256103.062399998307228 ], [ 360255.621799997985363, 256117.679499998688698 ], [ 360247.504699997603893, 256123.945900000631809 ], [ 360244.270499996840954, 256124.974899999797344 ], [ 360246.619300000369549, 256133.226700000464916 ], [ 360245.723099999129772, 256143.774099998176098 ], [ 360244.851999998092651, 256151.366300001740456 ], [ 360239.839699998497963, 256171.801399998366833 ], [ 360265.571599997580051, 256180.244600001722574 ], [ 360270.427500002086163, 256178.17339999973774 ], [ 360280.108599998056889, 256177.61939999833703 ], [ 360292.991599999368191, 256179.835799999535084 ], [ 360302.633199997246265, 256183.925500001758337 ], [ 360311.454099997878075, 256189.697200000286102 ], [ 360313.833499997854233, 256194.360700000077486 ], [ 360313.725599996745586, 256207.025400001555681 ], [ 360319.486699998378754, 256193.351500000804663 ], [ 360321.140600003302097, 256188.509899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503070700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91541802, "LATITUDE": 18.33487834, "OBJECTID_1": 20290, "PARCEL_NO_": "105503070700", "Tax_Legal_": "7H ESTATE THOMAS NEW QTR", "Name": "ONEAL, MARGUERITE", "Address": "7 Calle Dr Santiago Veve", "City": "San German", "State": "Puerto Rico", "Zip": 683, "Country": "United States", "Land_Value": 34300, "Improved_V": 156500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.234283801999993, "SHAPE_Area": 578.87604938100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360460.029600001871586, 256165.793099999427795 ], [ 360440.733800001442432, 256159.0912000015378 ], [ 360433.216300003230572, 256189.638300001621246 ], [ 360441.263199999928474, 256191.603999998420477 ], [ 360450.112899996340275, 256193.998399998992682 ], [ 360460.029600001871586, 256165.793099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034500", "MAP": "G9-1970-T72", "PARCEL_NAM": "14N-6", "ACRE": "0.11", "LONGITUDE": -64.91015364, "LATITUDE": 18.33475541, "OBJECTID_1": 20101, "PARCEL_NO_": "105503034500", "Tax_Legal_": "14N-6 ESTATE THOMAS 6E NEW QTR.", "Name": "ROBERTS, LUBIN & DELREASE", "Address": "PO Box 11762", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 106200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.940178244600006, "SHAPE_Area": 623.56091164999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361016.374399997293949, 256171.613000001758337 ], [ 361015.710100002586842, 256154.931200001388788 ], [ 360995.894299998879433, 256157.122600000351667 ], [ 360988.131099998950958, 256157.981199998408556 ], [ 360987.808899998664856, 256158.016800001263618 ], [ 360988.145300000905991, 256161.796999998390675 ], [ 360989.739100001752377, 256179.707499999552965 ], [ 360992.243199996650219, 256179.613299999386072 ], [ 361016.0016999989748, 256178.719500001519918 ], [ 361016.374399997293949, 256171.613000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503070500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91561688, "LATITUDE": 18.33489005, "OBJECTID_1": 20288, "PARCEL_NO_": "105503070500", "Tax_Legal_": "7I ESTATE THOMAS 6A NEW QTR", "Name": "RABSATT, LOUIS", "Address": "PO Box 7012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.36239469500001, "SHAPE_Area": 470.02693058699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360433.216300003230572, 256189.638300001621246 ], [ 360440.733800001442432, 256159.0912000015378 ], [ 360435.851000003516674, 256164.328600000590086 ], [ 360404.264600001275539, 256180.535399999469519 ], [ 360404.243000000715256, 256183.068300001323223 ], [ 360433.216300003230572, 256189.638300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503071500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91468215, "LATITUDE": 18.33486499, "OBJECTID_1": 20298, "PARCEL_NO_": "105503071500", "Tax_Legal_": "8K ESTATE THOMAS NEW QTR", "Name": "ROGERS, ANTONIO L.", "Address": "PO Box 1377", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27500, "Improved_V": 133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.15350158, "SHAPE_Area": 444.75280239900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360518.933499999344349, 256161.20890000090003 ], [ 360511.478900000452995, 256184.368200000375509 ], [ 360528.361100003123283, 256190.416999999433756 ], [ 360536.616700001060963, 256167.897599998861551 ], [ 360518.933499999344349, 256161.20890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503072700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91315709, "LATITUDE": 18.33481122, "OBJECTID_1": 20310, "PARCEL_NO_": "105503072700", "Tax_Legal_": "14-50 EST THOMAS NEW QTR", "Name": "LEONARD, HELMIE", "Address": "330 Frank Baum Dr", "City": "Schertz", "State": "Texas", "Zip": 781541161, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.825021999100002, "SHAPE_Area": 454.79363027800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360695.352300003170967, 256181.862300001084805 ], [ 360689.940099999308586, 256154.587000001221895 ], [ 360684.281499996781349, 256156.229400001466274 ], [ 360675.386900000274181, 256159.111900001764297 ], [ 360679.973099999129772, 256188.702599998563528 ], [ 360695.352300003170967, 256181.862300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503026700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91137413, "LATITUDE": 18.33479912, "OBJECTID_1": 20056, "PARCEL_NO_": "105503026700", "Tax_Legal_": "14P-1ESTATE THOMAS No.6E NEW QTR", "Name": "ILLIDGE, CYIRYL & PETRONELLA", "Address": "18 West 129th St.", "City": "New York", "State": "New York", "Zip": 100272318, "Country": "United States", "Land_Value": 35900, "Improved_V": 146200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.086728635, "SHAPE_Area": 569.76851027199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360879.954700000584126, 256188.439500000327826 ], [ 360885.109099999070168, 256151.329199999570847 ], [ 360868.099200002849102, 256160.267000000923872 ], [ 360864.848800003528595, 256163.195700000971556 ], [ 360863.209200002253056, 256166.348700001835823 ], [ 360861.447300001978874, 256183.855000000447035 ], [ 360872.715899996459484, 256186.269299998879433 ], [ 360879.13400000333786, 256190.121500000357628 ], [ 360879.954700000584126, 256188.439500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503026800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91119629000001, "LATITUDE": 18.33476619, "OBJECTID_1": 20057, "PARCEL_NO_": "105503026800", "Tax_Legal_": "EST THOMAS 14P-2 6 E NEW QTR", "Name": "HENRY, VERONICA-TRUSTEE", "Address": "PO Box 502636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23100, "Improved_V": 361400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.61324434, "SHAPE_Area": 626.10807921599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360879.954700000584126, 256188.439500000327826 ], [ 360883.196199998259544, 256186.566199999302626 ], [ 360884.82320000231266, 256184.890700001269579 ], [ 360887.267300002276897, 256181.955400001257658 ], [ 360896.151100002229214, 256180.339400000870228 ], [ 360906.634999997913837, 256180.214099999517202 ], [ 360899.604699999094009, 256153.558800000697374 ], [ 360894.799199998378754, 256149.719700001180172 ], [ 360889.155000001192093, 256149.673599999397993 ], [ 360885.109099999070168, 256151.329199999570847 ], [ 360879.954700000584126, 256188.439500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503073400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91197026, "LATITUDE": 18.3347935, "OBJECTID_1": 20317, "PARCEL_NO_": "105503073400", "Tax_Legal_": "THOMAS ESTATE 14-57 6E NEW QTR.", "Name": "CHALWELL, HOISTINE & IVAN C", "Address": "PO Box 303694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49000, "Improved_V": 166600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.426847545, "SHAPE_Area": 593.51123840800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360822.717299997806549, 256186.7043999992311 ], [ 360814.956299997866154, 256151.177200000733137 ], [ 360810.913999997079372, 256152.410700000822544 ], [ 360799.616599999368191, 256153.373700000345707 ], [ 360804.168600000441074, 256186.974800001829863 ], [ 360810.615500003099442, 256187.449799999594688 ], [ 360822.717299997806549, 256186.7043999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503073300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91212966000001, "LATITUDE": 18.33478862, "OBJECTID_1": 20316, "PARCEL_NO_": "105503073300", "Tax_Legal_": "14-56 ESTATE THOMAS NEW QTR", "Name": "PENN, LUCIA & CLARENCE", "Address": "69243 Estate Thomas Nq 14-56", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42500, "Improved_V": 145200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.3723873, "SHAPE_Area": 525.856147416 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360782.691200003027916, 256152.390799999237061 ], [ 360788.058499999344349, 256184.94310000166297 ], [ 360804.168600000441074, 256186.974800001829863 ], [ 360799.616599999368191, 256153.373700000345707 ], [ 360789.931900002062321, 256154.349899999797344 ], [ 360782.691200003027916, 256152.390799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503071300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91485059, "LATITUDE": 18.33480834, "OBJECTID_1": 20296, "PARCEL_NO_": "105503071300", "Tax_Legal_": "7M ESTATE THOMAS NEW QTR", "Name": "ESTHER I JAMES & ALFREDO B JAMES FAM TRUST & OTHER", "Address": "PO Box 1222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22200, "Improved_V": 121500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.755438497200004, "SHAPE_Area": 474.112053715 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360501.252199999988079, 256154.309200000017881 ], [ 360492.989500001072884, 256177.673000000417233 ], [ 360511.478900000452995, 256184.368200000375509 ], [ 360518.933499999344349, 256161.20890000090003 ], [ 360501.252199999988079, 256154.309200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503073500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91178948, "LATITUDE": 18.33473087, "OBJECTID_1": 20318, "PARCEL_NO_": "105503073500", "Tax_Legal_": "14 58 ESTATE THOMAS NEW QTR", "Name": "JAMES, ARTURO L", "Address": "PO Box 8988", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32000, "Improved_V": 200400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.96733878400001, "SHAPE_Area": 914.52523001999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360814.956299997866154, 256151.177200000733137 ], [ 360822.717299997806549, 256186.7043999992311 ], [ 360832.398500002920628, 256186.150400001555681 ], [ 360837.248999997973442, 256184.712400000542402 ], [ 360839.685900002717972, 256182.621500000357628 ], [ 360840.519199997186661, 256179.461899999529123 ], [ 360840.036499999463558, 256141.461100000888109 ], [ 360837.635600000619888, 256139.33049999922514 ], [ 360833.602200001478195, 256139.508600000292063 ], [ 360823.05179999768734, 256147.443799998611212 ], [ 360814.956299997866154, 256151.177200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503073200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91228441, "LATITUDE": 18.33475626, "OBJECTID_1": 20315, "PARCEL_NO_": "105503073200", "Tax_Legal_": "14-55 ESTATE THOMAS NEW QUARTER", "Name": "CHRISTOPHER, BRYAN, BRENT & BRYCE", "Address": "1427 Londra Ln", "City": "Kissimmee", "State": "Florida", "Zip": 34744, "Country": "United States", "Land_Value": 25200, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.292419057100005, "SHAPE_Area": 480.836262783 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360766.602700002491474, 256147.826099999248981 ], [ 360771.984399996697903, 256178.689899999648333 ], [ 360788.058499999344349, 256184.94310000166297 ], [ 360782.691200003027916, 256152.390799999237061 ], [ 360766.602700002491474, 256147.826099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503025400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91142302, "LATITUDE": 18.33455968, "OBJECTID_1": 20044, "PARCEL_NO_": "105503025400", "Tax_Legal_": "THOMAS ESTATE 14P-6 6 E NEW QTR", "Name": "RAMSEY, LEONARD", "Address": "PO Box 9168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.587584494, "SHAPE_Area": 654.02212448700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360885.168399997055531, 256144.363600000739098 ], [ 360884.497000001370907, 256128.526099998503923 ], [ 360865.928400002419949, 256131.118299998342991 ], [ 360859.47070000320673, 256131.909800000488758 ], [ 360852.567100003361702, 256185.048900000751019 ], [ 360855.794100001454353, 256184.864199999719858 ], [ 360855.896600000560284, 256172.832699999213219 ], [ 360857.586599998176098, 256163.769499998539686 ], [ 360859.228000000119209, 256160.405499998480082 ], [ 360863.293700002133846, 256156.427999999374151 ], [ 360885.168399997055531, 256144.363600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503027100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91158402000001, "LATITUDE": 18.33463144, "OBJECTID_1": 20060, "PARCEL_NO_": "105503027100", "Tax_Legal_": "REM 14P EST. THOMAS 6E NEW QTR", "Name": "RAMSEY, LEONARD", "Address": "PO Box 9168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.707272227, "SHAPE_Area": 417.688900413 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360859.47070000320673, 256131.909800000488758 ], [ 360851.396799996495247, 256133.110300000756979 ], [ 360846.594899997115135, 256128.84910000115633 ], [ 360847.752599999308586, 256182.265299998223782 ], [ 360850.956299997866154, 256184.824599999934435 ], [ 360859.47070000320673, 256131.909800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503072800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91299767, "LATITUDE": 18.3347539, "OBJECTID_1": 20311, "PARCEL_NO_": "105503072800", "Tax_Legal_": "14-51 EST THOMAS NEW QTR", "Name": "PETERSEN, ALVIN", "Address": "7067 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 181700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.000304938300005, "SHAPE_Area": 526.11183480499994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360714.77759999781847, 256173.366500001400709 ], [ 360708.530299998819828, 256149.461800001561642 ], [ 360689.940099999308586, 256154.587000001221895 ], [ 360695.352300003170967, 256181.862300001084805 ], [ 360714.77759999781847, 256173.366500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404193000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91588978, "LATITUDE": 18.33476887, "OBJECTID_1": 19622, "PARCEL_NO_": "105404193000", "Tax_Legal_": "EST THOMAS 5N 6E NEW QTR", "Name": "BLYDEN, EDWARD & V", "Address": "PO Box 7592", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.530827254399995, "SHAPE_Area": 413.77449694500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360408.528099998831749, 256153.339200001209974 ], [ 360393.236900001764297, 256149.836599998176098 ], [ 360384.133699998259544, 256177.204199999570847 ], [ 360392.189599998295307, 256178.114500001072884 ], [ 360401.906800001859665, 256173.338899999856949 ], [ 360408.528099998831749, 256153.339200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503026500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91068083, "LATITUDE": 18.33481409, "OBJECTID_1": 20055, "PARCEL_NO_": "105503026500", "Tax_Legal_": "14PS EST THOMAS 6E NEW QTR", "Name": "RICHARDSON (LIFE ESTATE), ARESTLE", "Address": "PO Box 8183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13300, "Improved_V": 151600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.777983836600001, "SHAPE_Area": 373.18127931499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360933.385300002992153, 256163.756599999964237 ], [ 360937.267700001597404, 256181.309200000017881 ], [ 360960.643500000238419, 256182.344900000840425 ], [ 360957.542400002479553, 256167.754000000655651 ], [ 360933.385300002992153, 256163.756599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404192700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91607573, "LATITUDE": 18.33474108, "OBJECTID_1": 19619, "PARCEL_NO_": "105404192700", "Tax_Legal_": "ESTATE THOMAS 5D 6E NEW QTR", "Name": "BLYDEN, EDWARD & V", "Address": "PO Box 7592", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25200, "Improved_V": 231800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.866133602, "SHAPE_Area": 684.57375545699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360393.236900001764297, 256149.836599998176098 ], [ 360372.312299996614456, 256145.021299999207258 ], [ 360357.584700003266335, 256170.020899999886751 ], [ 360376.898500002920628, 256174.611900001764297 ], [ 360384.133699998259544, 256177.204199999570847 ], [ 360393.236900001764297, 256149.836599998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503071200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91501556, "LATITUDE": 18.3347483, "OBJECTID_1": 20295, "PARCEL_NO_": "105503071200", "Tax_Legal_": "7L ESTATE THOMAS NEW QTR", "Name": "HERBERT, SONIA EST. OF & DONOVAN, E", "Address": "PO Box 1405", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21000, "Improved_V": 139400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.909633889000006, "SHAPE_Area": 448.32624207100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360483.569099999964237, 256147.620600000023842 ], [ 360476.911799997091293, 256171.841899998486042 ], [ 360492.989500001072884, 256177.673000000417233 ], [ 360501.252199999988079, 256154.309200000017881 ], [ 360483.569099999964237, 256147.620600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503025700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91089665, "LATITUDE": 18.33479229, "OBJECTID_1": 20047, "PARCEL_NO_": "105503025700", "Tax_Legal_": "EST THOMAS 14P-3 6 E NEW QTR", "Name": "HARRIS, ILVA", "Address": "44 Deerborne Trl", "City": "Newark", "State": "Delaware", "Zip": 19702, "Country": "United States", "Land_Value": 19000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.260244128799997, "SHAPE_Area": 451.22001102000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360932.623999997973442, 256158.473099999129772 ], [ 360908.377099998295307, 256165.029599998146296 ], [ 360910.769000001251698, 256168.215599998831749 ], [ 360913.186200000345707, 256168.44649999961257 ], [ 360913.952899999916553, 256173.096799999475479 ], [ 360912.334899999201298, 256173.71680000051856 ], [ 360911.514200001955032, 256175.398899998515844 ], [ 360912.28999999910593, 256178.99379999935627 ], [ 360914.696299999952316, 256180.491200000047684 ], [ 360937.267700001597404, 256181.309200000017881 ], [ 360933.385300002992153, 256163.756599999964237 ], [ 360932.623999997973442, 256158.473099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075000", "MAP": "B9-109-T64", "PARCEL_NAM": "14-67", "ACRE": "0.11", "LONGITUDE": -64.91402236, "LATITUDE": 18.33473305, "OBJECTID_1": 20333, "PARCEL_NO_": "105503075000", "Tax_Legal_": "14-66&67 EST. THOMAS NEW QTR", "Name": "LAKE, BERNICE & GEORGE", "Address": "PO Box 10783", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.1344734, "SHAPE_Area": 680.403710596 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360602.912299998104572, 256147.541900001466274 ], [ 360589.266099996864796, 256140.252999998629093 ], [ 360579.30629999935627, 256173.524300001561642 ], [ 360591.370399996638298, 256177.211599998176098 ], [ 360605.876800000667572, 256178.174699999392033 ], [ 360604.37389999628067, 256165.285700000822544 ], [ 360602.912299998104572, 256147.541900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503074800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91381988000001, "LATITUDE": 18.33479773, "OBJECTID_1": 20331, "PARCEL_NO_": "105503074800", "Tax_Legal_": "14 68 ESTATE THOMAS NEW QTR", "Name": "EMANUEL, TONY", "Address": "PO BOX 9841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12600, "Improved_V": 160800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.801070904200003, "SHAPE_Area": 280.67218279100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360626.887699998915195, 256172.858199998736382 ], [ 360622.164899997413158, 256159.309599999338388 ], [ 360604.37389999628067, 256165.285700000822544 ], [ 360605.876800000667572, 256178.174699999392033 ], [ 360614.76070000231266, 256176.558699999004602 ], [ 360626.887699998915195, 256172.858199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503073100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91245529, "LATITUDE": 18.33470629, "OBJECTID_1": 20314, "PARCEL_NO_": "105503073100", "Tax_Legal_": "14-54 ESTATE THOMAS NEW QTR", "Name": "NOREEN E. STOUT, LEAL A. STRIDIRON JR. & CALMA BLYDEN", "Address": "BOX 3944", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27200, "Improved_V": 222100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.84345378899999, "SHAPE_Area": 562.280540911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360747.281800001859665, 256144.0793999992311 ], [ 360751.081399999558926, 256171.341600000858307 ], [ 360755.910300001502037, 256172.436599999666214 ], [ 360771.984399996697903, 256178.689899999648333 ], [ 360766.602700002491474, 256147.826099999248981 ], [ 360753.730499997735023, 256144.343299999833107 ], [ 360747.281800001859665, 256144.0793999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404193300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91569248, "LATITUDE": 18.33467902, "OBJECTID_1": 19625, "PARCEL_NO_": "105404193300", "Tax_Legal_": "THOMAS ESTATE 7N 6E NEW QTR", "Name": "HARRIGAN, PAULETTE & JOSEPH, N", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 212400, "Improved_V": 47500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.284847154, "SHAPE_Area": 548.57782343500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360414.335900001227856, 256134.177200000733137 ], [ 360408.528099998831749, 256153.339200001209974 ], [ 360401.906800001859665, 256173.338899999856949 ], [ 360422.152699999511242, 256163.160999998450279 ], [ 360431.878799997270107, 256157.329999998211861 ], [ 360433.538199998438358, 256151.855200000107288 ], [ 360423.120800003409386, 256144.170499999076128 ], [ 360419.143200002610683, 256137.80519999936223 ], [ 360414.335900001227856, 256134.177200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075000", "MAP": "B9-109-T64", "PARCEL_NAM": "14-66", "ACRE": "0.11", "LONGITUDE": -64.91419126, "LATITUDE": 18.33465819, "OBJECTID_1": 20333, "PARCEL_NO_": "105503075000", "Tax_Legal_": "14-66&67 EST. THOMAS NEW QTR", "Name": "LAKE, BERNICE & GEORGE", "Address": "PO Box 10783", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.503940184, "SHAPE_Area": 645.25526324800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360582.04169999808073, 256136.394200000911951 ], [ 360573.21000000089407, 256131.888999998569489 ], [ 360562.416900001466274, 256168.31980000063777 ], [ 360579.30629999935627, 256173.524300001561642 ], [ 360589.266099996864796, 256140.252999998629093 ], [ 360582.04169999808073, 256136.394200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503070900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91517307, "LATITUDE": 18.33469792, "OBJECTID_1": 20292, "PARCEL_NO_": "105503070900", "Tax_Legal_": "ESTATE THOMAS 7K 6E NEW QTR", "Name": "BROWN, DORIS", "Address": "PO Box 5156", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.778522634599994, "SHAPE_Area": 431.90142055299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360468.297700002789497, 256141.796100001782179 ], [ 360460.029600001871586, 256165.793099999427795 ], [ 360476.911799997091293, 256171.841899998486042 ], [ 360483.569099999964237, 256147.620600000023842 ], [ 360468.297700002789497, 256141.796100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503074700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91367473, "LATITUDE": 18.3346691, "OBJECTID_1": 20330, "PARCEL_NO_": "105503074700", "Tax_Legal_": "14-69 ESTATE THOMAS 6E NEW QTR", "Name": "FAULKNER, JUNEAU & DORIS", "Address": "PO Box 7681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.527621499099993, "SHAPE_Area": 562.70490143300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360643.881399996578693, 256165.820199999958277 ], [ 360635.245700001716614, 256138.307300001382828 ], [ 360616.653800003230572, 256143.6435999982059 ], [ 360622.164899997413158, 256159.309599999338388 ], [ 360626.887699998915195, 256172.858199998736382 ], [ 360643.881399996578693, 256165.820199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503072900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91281896, "LATITUDE": 18.33470246, "OBJECTID_1": 20312, "PARCEL_NO_": "105503072900", "Tax_Legal_": "EST THOMAS 14 52 NEW QTR", "Name": "BREWELEY, ILVA, CHARLENE & J", "Address": "9234 Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 220700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.470254902899995, "SHAPE_Area": 466.536422351 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360733.346100002527237, 256170.77419999986887 ], [ 360727.109600000083447, 256145.603100001811981 ], [ 360708.530299998819828, 256149.461800001561642 ], [ 360714.77759999781847, 256173.366500001400709 ], [ 360723.666799999773502, 256171.117199998348951 ], [ 360733.346100002527237, 256170.77419999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404192400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9162327, "LATITUDE": 18.33468732, "OBJECTID_1": 19616, "PARCEL_NO_": "105404192400", "Tax_Legal_": "5E EST THOMAS NEW QTR", "Name": "MARTIN, RUFUS & IRIS", "Address": "PO Box 421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.891467257499997, "SHAPE_Area": 307.90452528100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360372.312299996614456, 256145.021299999207258 ], [ 360357.825699999928474, 256141.736299999058247 ], [ 360350.342299997806549, 256168.272799998521805 ], [ 360357.584700003266335, 256170.020899999886751 ], [ 360372.312299996614456, 256145.021299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404192200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91639791, "LATITUDE": 18.33466088, "OBJECTID_1": 19614, "PARCEL_NO_": "105404192200", "Tax_Legal_": "5F ESTATE THOMAS NEW QTR", "Name": "MARTIN, RUFUS & I", "Address": "8 KHAVES CT.", "City": "BALTIMORE", "State": "Maryland", "Zip": 21236, "Country": "United States", "Land_Value": 24800, "Improved_V": 108000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.91717116700001, "SHAPE_Area": 634.31641542399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360334.038500003516674, 256136.342300001531839 ], [ 360327.820900000631809, 256160.78489999845624 ], [ 360350.342299997806549, 256168.272799998521805 ], [ 360357.825699999928474, 256141.736299999058247 ], [ 360334.038500003516674, 256136.342300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503073000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91264222, "LATITUDE": 18.33467914, "OBJECTID_1": 20313, "PARCEL_NO_": "105503073000", "Tax_Legal_": "14 53 ESTATE THOMAS NEW QTR", "Name": "THOMAS, ISSA DOWE", "Address": "PO Box 1143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 25100, "Improved_V": 186300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.679430029000002, "SHAPE_Area": 503.72838565799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360747.281800001859665, 256144.0793999992311 ], [ 360737.609700001776218, 256143.578099999576807 ], [ 360727.109600000083447, 256145.603100001811981 ], [ 360733.346100002527237, 256170.77419999986887 ], [ 360744.639899998903275, 256170.233399998396635 ], [ 360751.081399999558926, 256171.341600000858307 ], [ 360747.281800001859665, 256144.0793999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91433682, "LATITUDE": 18.33460899, "OBJECTID_1": 20334, "PARCEL_NO_": "105503075200", "Tax_Legal_": "14-65 EST THOMAS NEW QTR", "Name": "TRUST AGREEMENT OF EDITH MAE RAMSAY JOHNSON", "Address": "PO Box 7065", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.281615937, "SHAPE_Area": 579.98112296700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360573.21000000089407, 256131.888999998569489 ], [ 360560.355800002813339, 256126.295299999415874 ], [ 360547.140100002288818, 256163.128499999642372 ], [ 360562.416900001466274, 256168.31980000063777 ], [ 360573.21000000089407, 256131.888999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404181700", "MAP": "D9-3412-T86", "PARCEL_NAM": "8A-1", "ACRE": ".20", "LONGITUDE": -64.91816388, "LATITUDE": 18.33462909, "OBJECTID_1": 19592, "PARCEL_NO_": "105404181700", "Tax_Legal_": "8A-1, 8A-2 & 8B ESTATE THOMAS 6H NEW QUARTER", "Name": "JNS HOLDINGS LLC", "Address": "PO Box 9608", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 573400, "Improved_V": 304800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.846451664100002, "SHAPE_Area": 447.78325493699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360150.127499997615814, 256127.561999998986721 ], [ 360144.161300003528595, 256131.622699998319149 ], [ 360148.162900000810623, 256142.553399998694658 ], [ 360152.016400001943111, 256163.483199998736382 ], [ 360171.446999996900558, 256154.354100000113249 ], [ 360150.127499997615814, 256127.561999998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503070600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91537736, "LATITUDE": 18.33462208, "OBJECTID_1": 20289, "PARCEL_NO_": "105503070600", "Tax_Legal_": "7J ESTATE THOMAS NEW QTR", "Name": "SMALLS, C. & MILLS, K", "Address": "PO Box 1062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58800, "Improved_V": 208600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.389885908, "SHAPE_Area": 683.38308356599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360440.733800001442432, 256159.0912000015378 ], [ 360460.029600001871586, 256165.793099999427795 ], [ 360468.297700002789497, 256141.796100001782179 ], [ 360453.013700000941753, 256137.449099998921156 ], [ 360439.322599999606609, 256135.437199998646975 ], [ 360428.030599996447563, 256135.767000000923872 ], [ 360428.00900000333786, 256138.299899999052286 ], [ 360436.829899996519089, 256144.071600001305342 ], [ 360440.022799998521805, 256147.89750000089407 ], [ 360441.594099998474121, 256152.765500001609325 ], [ 360440.733800001442432, 256159.0912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304070500", "MAP": "D9-1419-T78", "PARCEL_NAM": "10", "ACRE": "1.88", "LONGITUDE": -64.93587242, "LATITUDE": 18.33411459, "OBJECTID_1": 11394, "PARCEL_NO_": "105304070500", "Tax_Legal_": "ORKANSHULLET ESTATE 10 HASSEL ISLAND SOUTHSIDE QTR", "Name": "AMALIE HOLDING II LLLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025819, "Country": "United States", "Land_Value": 758000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 404.61134013700001, "SHAPE_Area": 6878.3776895600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358283.617299996316433, 256012.860800001770258 ], [ 358275.348999999463558, 256008.825899999588728 ], [ 358265.427100002765656, 256022.716600000858307 ], [ 358254.098499998450279, 256051.907600000500679 ], [ 358237.957299999892712, 256093.499400001019239 ], [ 358252.865099996328354, 256106.102600000798702 ], [ 358317.634700000286102, 256160.859299998730421 ], [ 358320.805299997329712, 256157.361600000411272 ], [ 358320.82150000333786, 256155.461800001561642 ], [ 358309.324799999594688, 256134.214899998158216 ], [ 358293.437600001692772, 256104.853900000452995 ], [ 358298.291000001132488, 256098.009300000965595 ], [ 358299.273400001227856, 256096.623799998313189 ], [ 358335.436499997973442, 256045.624499998986721 ], [ 358331.228399999439716, 256042.963899999856949 ], [ 358283.617299996316433, 256012.860800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503074600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91352515, "LATITUDE": 18.33461791, "OBJECTID_1": 20329, "PARCEL_NO_": "105503074600", "Tax_Legal_": "ESTATE THOMAS 14-70 6E NEW QTR.", "Name": "GREER, JOSEPHINE E.", "Address": "9231 Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.902209895200002, "SHAPE_Area": 407.47832963000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360657.646300002932549, 256159.177799999713898 ], [ 360648.989000000059605, 256134.197900000959635 ], [ 360635.245700001716614, 256138.307300001382828 ], [ 360643.881399996578693, 256165.820199999958277 ], [ 360657.646300002932549, 256159.177799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503074900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91385436, "LATITUDE": 18.3346639, "OBJECTID_1": 20332, "PARCEL_NO_": "105503074900", "Tax_Legal_": "14-68A EST THOMAS 6E NEW QTR", "Name": "EMANUEL, TONY", "Address": "PO BOX 9841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.462631595199994, "SHAPE_Area": 280.58643689100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360616.653800003230572, 256143.6435999982059 ], [ 360602.912299998104572, 256147.541900001466274 ], [ 360604.37389999628067, 256165.285700000822544 ], [ 360622.164899997413158, 256159.309599999338388 ], [ 360616.653800003230572, 256143.6435999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503026400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91071519, "LATITUDE": 18.33466344, "OBJECTID_1": 20054, "PARCEL_NO_": "105503026400", "Tax_Legal_": "EST THOMAS 14PT NEW QTR", "Name": "Stout, Daisy (Life Interest)", "Address": "PO Box 303955", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 247300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.486682260600006, "SHAPE_Area": 390.71011518400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360952.859099999070168, 256149.561700001358986 ], [ 360929.497599996626377, 256146.83729999884963 ], [ 360932.623999997973442, 256158.473099999129772 ], [ 360933.385300002992153, 256163.756599999964237 ], [ 360957.542400002479553, 256167.754000000655651 ], [ 360955.191699996590614, 256159.713199999183416 ], [ 360953.597099997103214, 256157.589299999177456 ], [ 360952.859099999070168, 256149.561700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075600", "MAP": "D9-4096-T87", "PARCEL_NAM": "14-64-A", "ACRE": null, "LONGITUDE": -64.91456207, "LATITUDE": 18.3345177, "OBJECTID_1": 20338, "PARCEL_NO_": "105503075600", "Tax_Legal_": "THOMAS 14-63 & PART OF 14-64 NEW QTR.", "Name": "BURTON, RHODA", "Address": "PO Box 303732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.702067263199993, "SHAPE_Area": 45.471284011100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360528.647100001573563, 256156.855500001460314 ], [ 360539.305699996650219, 256135.505699999630451 ], [ 360542.667300000786781, 256120.239900000393391 ], [ 360528.647100001573563, 256156.855500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503025600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91094946, "LATITUDE": 18.33465097, "OBJECTID_1": 20046, "PARCEL_NO_": "105503025600", "Tax_Legal_": "14P-4 EST THOMAS 6E NEW QTR", "Name": "THOMAS, GLASTON & EVA", "Address": "14P-4 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.059770927900004, "SHAPE_Area": 326.96900527899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360932.623999997973442, 256158.473099999129772 ], [ 360929.497599996626377, 256146.83729999884963 ], [ 360905.270499996840954, 256151.072000000625849 ], [ 360908.377099998295307, 256165.029599998146296 ], [ 360932.623999997973442, 256158.473099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033900", "MAP": "F9-2978-T72", "PARCEL_NAM": "14NE", "ACRE": "0.11", "LONGITUDE": -64.91043108, "LATITUDE": 18.33459823, "OBJECTID_1": 20095, "PARCEL_NO_": "105503033900", "Tax_Legal_": "14NE EST THOMAS 6E NEW QTR", "Name": "FRAZER, ROOSEVELT", "Address": "9272 NE Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23100, "Improved_V": 113000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.177792775699999, "SHAPE_Area": 461.16627449200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360987.808899998664856, 256158.016800001263618 ], [ 360983.506399996578693, 256139.673300001770258 ], [ 360983.520099997520447, 256139.501200001686811 ], [ 360979.745600000023842, 256139.897199999541044 ], [ 360962.915500000119209, 256141.662999998778105 ], [ 360960.01860000193119, 256141.966899998486042 ], [ 360960.168099999427795, 256143.499800000339746 ], [ 360960.599600002169609, 256149.304900001734495 ], [ 360961.679999999701977, 256155.333399999886751 ], [ 360963.163199998438358, 256160.407200001180172 ], [ 360987.808899998664856, 256158.016800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503074500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91337057, "LATITUDE": 18.33455819, "OBJECTID_1": 20328, "PARCEL_NO_": "105503074500", "Tax_Legal_": "EST THOMAS 14-71 NEW QTR", "Name": "GREER, M. & POPONNE, C", "Address": "9231 Estate Thomas Nq", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25200, "Improved_V": 183400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.015898779300002, "SHAPE_Area": 511.72833005799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360676.268799997866154, 256150.253199998289347 ], [ 360669.197200000286102, 256128.4527000002563 ], [ 360648.989000000059605, 256134.197900000959635 ], [ 360657.646300002932549, 256159.177799999713898 ], [ 360664.123700000345707, 256156.064399998635054 ], [ 360676.268799997866154, 256150.253199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034700", "MAP": "D9-4298-T88", "PARCEL_NAM": "14N-4", "ACRE": "0.12", "LONGITUDE": -64.91019786, "LATITUDE": 18.33439868, "OBJECTID_1": 20103, "PARCEL_NO_": "105503034700", "Tax_Legal_": "14N-4 EST THOMAS NEW QTR", "Name": "FONSECA, LINELLE I. & CHARLES", "Address": "4900 Gladeview Dr", "City": "Austin", "State": "Texas", "Zip": 78745, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.215121103200005, "SHAPE_Area": 567.87683073300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361007.983300000429153, 256115.393500000238419 ], [ 361007.371299996972084, 256113.89299999922514 ], [ 360984.760200001299381, 256121.175700001418591 ], [ 360984.87049999833107, 256122.621899999678135 ], [ 360983.520099997520447, 256139.501200001686811 ], [ 360986.136799998581409, 256139.226599998772144 ], [ 361013.227899998426437, 256137.364799998700619 ], [ 361011.13120000064373, 256124.496300000697374 ], [ 361007.983300000429153, 256115.393500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404181700", "MAP": "D9-3412-T86", "PARCEL_NAM": "8A-2", "ACRE": ".22", "LONGITUDE": -64.91802464, "LATITUDE": 18.3345358, "OBJECTID_1": 19592, "PARCEL_NO_": "105404181700", "Tax_Legal_": "8A-1, 8A-2 & 8B ESTATE THOMAS 6H NEW QUARTER", "Name": "JNS HOLDINGS LLC", "Address": "PO Box 9608", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 573400, "Improved_V": 304800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.00951850600001, "SHAPE_Area": 747.16536255200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360164.459200002253056, 256117.807399999350309 ], [ 360150.127499997615814, 256127.561999998986721 ], [ 360171.446999996900558, 256154.354100000113249 ], [ 360194.115500003099442, 256143.773899998515844 ], [ 360164.459200002253056, 256117.807399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075600", "MAP": "F9-2275-68", "PARCEL_NAM": "14-63", "ACRE": null, "LONGITUDE": -64.91465635, "LATITUDE": 18.33449491, "OBJECTID_1": 20338, "PARCEL_NO_": "105503075600", "Tax_Legal_": "THOMAS 14-63 & PART OF 14-64 NEW QTR.", "Name": "BURTON, RHODA", "Address": "PO Box 303732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.573785495, "SHAPE_Area": 735.46946430800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360528.647100001573563, 256156.855500001460314 ], [ 360542.667300000786781, 256120.239900000393391 ], [ 360524.177799999713898, 256113.544700000435114 ], [ 360511.771999999880791, 256149.962400000542402 ], [ 360528.647100001573563, 256156.855500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404193100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91581977, "LATITUDE": 18.3345654, "OBJECTID_1": 19623, "PARCEL_NO_": "105404193100", "Tax_Legal_": "5J ESTATE THOMAS 6E NEW QTR", "Name": "FORBES, RAWLEIGH & J", "Address": "PO Box 8476", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 109200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.417106878300004, "SHAPE_Area": 320.24604183000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360399.861800000071526, 256129.414700001478195 ], [ 360393.236900001764297, 256149.836599998176098 ], [ 360408.528099998831749, 256153.339200001209974 ], [ 360414.335900001227856, 256134.177200000733137 ], [ 360399.861800000071526, 256129.414700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503036100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90997037, "LATITUDE": 18.33447359, "OBJECTID_1": 20114, "PARCEL_NO_": "105503036100", "Tax_Legal_": "EST THOMAS 14N-9 6E NEW QTR", "Name": "BROWN, JAMES", "Address": "PO Box 307195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27500, "Improved_V": 197100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.338558719700004, "SHAPE_Area": 195.68757999300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361024.527800001204014, 256121.531199999153614 ], [ 361024.0574000030756, 256121.646800000220537 ], [ 361016.789800003170967, 256122.853799998760223 ], [ 361019.871200002729893, 256139.766499999910593 ], [ 361020.632500000298023, 256145.05009999871254 ], [ 361021.350699998438358, 256155.399599999189377 ], [ 361025.385899998247623, 256155.010400000959635 ], [ 361025.576499998569489, 256132.636100001633167 ], [ 361024.527800001204014, 256121.531199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404192800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91597826, "LATITUDE": 18.33452964, "OBJECTID_1": 19620, "PARCEL_NO_": "105404192800", "Tax_Legal_": "5I EST THOMAS NEW QTR", "Name": "HENRY, FRANKLIN EUGENE", "Address": "5I Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.977310281599998, "SHAPE_Area": 417.434213844 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360384.58330000191927, 256124.434500001370907 ], [ 360372.312299996614456, 256145.021299999207258 ], [ 360393.236900001764297, 256149.836599998176098 ], [ 360399.861800000071526, 256129.414700001478195 ], [ 360384.58330000191927, 256124.434500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91482364, "LATITUDE": 18.33443953, "OBJECTID_1": 20340, "PARCEL_NO_": "105503075800", "Tax_Legal_": "ESTATE THOMAS 14 62 NEW QTR", "Name": "BURTON, BEATRICE E", "Address": "PO Box 303732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28900, "Improved_V": 147000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.20231935, "SHAPE_Area": 704.403399799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360524.177799999713898, 256113.544700000435114 ], [ 360507.29559999704361, 256107.495900001376867 ], [ 360494.092500001192093, 256142.851599998772144 ], [ 360511.771999999880791, 256149.962400000542402 ], [ 360524.177799999713898, 256113.544700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503074400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91320844000001, "LATITUDE": 18.33450285, "OBJECTID_1": 20327, "PARCEL_NO_": "105503074400", "Tax_Legal_": "14 72 ESTATE THOMAS NEW QTR", "Name": "FRETT, ALDIN", "Address": "PO Box 7601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22300, "Improved_V": 95000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.434008028500003, "SHAPE_Area": 348.92587131599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360690.008500002324581, 256146.565999999642372 ], [ 360684.556699998676777, 256123.934300001710653 ], [ 360669.197200000286102, 256128.4527000002563 ], [ 360676.268799997866154, 256150.253199998289347 ], [ 360690.008500002324581, 256146.565999999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304070800", "MAP": "D9-1268-T76", "PARCEL_NAM": "8-1", "ACRE": "2.3", "LONGITUDE": -64.93512972000001, "LATITUDE": 18.33408002, "OBJECTID_1": 11397, "PARCEL_NO_": "105304070800", "Tax_Legal_": "ORKANSHULLET 8-1 HASSEL ISLAND SOUTHSIDE QTR", "Name": "AMALIE HOLDING II LLLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025819, "Country": "United States", "Land_Value": 892200, "Improved_V": 168200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 431.90302852299999, "SHAPE_Area": 9667.5730789400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358345.141599997878075, 256128.403000000864267 ], [ 358353.29730000346899, 256113.813400000333786 ], [ 358363.049999997019768, 256120.554800000041723 ], [ 358379.894500002264977, 256131.036299999803305 ], [ 358427.343900002539158, 256051.209100000560284 ], [ 358400.056900002062321, 256035.998100001364946 ], [ 358402.92509999871254, 256020.762800000607967 ], [ 358373.44539999961853, 255991.747699998319149 ], [ 358368.284100003540516, 255999.300900001078844 ], [ 358299.273400001227856, 256096.623799998313189 ], [ 358298.291000001132488, 256098.009300000965595 ], [ 358293.437600001692772, 256104.853900000452995 ], [ 358310.826399996876717, 256116.111999999731779 ], [ 358333.950000002980232, 256131.083099998533726 ], [ 358341.611000001430511, 256134.718800000846386 ], [ 358345.141599997878075, 256128.403000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503080200", "MAP": "D9-6661-T99", "PARCEL_NAM": "14K", "ACRE": null, "LONGITUDE": -64.91308634000001, "LATITUDE": 18.33281965, "OBJECTID_1": 20355, "PARCEL_NO_": "105503080200", "Tax_Legal_": "EST THOMAS 14K 6E NEW QTR", "Name": "BENJAMIN, LUTHER & DELIA", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 1399100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1132.5011419099999, "SHAPE_Area": 73168.309349699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360733.059500001370907, 256109.765900000929832 ], [ 360756.431800000369549, 256111.223700001835823 ], [ 360774.968000002205372, 256112.430900000035763 ], [ 360800.759199999272823, 256113.908500000834465 ], [ 360799.997100003063679, 256014.055100001394749 ], [ 360799.383500002324581, 255802.112100001424551 ], [ 360798.845200002193451, 255770.654800001531839 ], [ 360605.335600003600121, 255768.437699999660254 ], [ 360583.945600003004074, 256102.212600000202656 ], [ 360583.069200001657009, 256110.438099998980761 ], [ 360582.04169999808073, 256136.394200000911951 ], [ 360589.266099996864796, 256140.252999998629093 ], [ 360602.912299998104572, 256147.541900001466274 ], [ 360616.653800003230572, 256143.6435999982059 ], [ 360635.245700001716614, 256138.307300001382828 ], [ 360648.989000000059605, 256134.197900000959635 ], [ 360669.197200000286102, 256128.4527000002563 ], [ 360684.556699998676777, 256123.934300001710653 ], [ 360703.150399997830391, 256118.386999998241663 ], [ 360719.318000003695488, 256113.664200000464916 ], [ 360733.059500001370907, 256109.765900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91115352, "LATITUDE": 18.33448186, "OBJECTID_1": 20045, "PARCEL_NO_": "105503025500", "Tax_Legal_": "14P-5 EST THOMAS NEW QTR", "Name": "MALONE, IMA", "Address": "PO Box 420", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19000, "Improved_V": 67400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.224465821899997, "SHAPE_Area": 423.81691845699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360899.829499997198582, 256127.173900000751019 ], [ 360886.917700000107288, 256128.334800001233816 ], [ 360884.497000001370907, 256128.526099998503923 ], [ 360885.168399997055531, 256144.363600000739098 ], [ 360889.205399997532368, 256143.763300001621246 ], [ 360895.650499999523163, 256144.449400000274181 ], [ 360905.270499996840954, 256151.072000000625849 ], [ 360909.512500002980232, 256126.4087999984622 ], [ 360899.829499997198582, 256127.173900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503026900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91096532, "LATITUDE": 18.33449457, "OBJECTID_1": 20058, "PARCEL_NO_": "105503026900", "Tax_Legal_": "14P-5A EST THOMAS 6E NEW QTR", "Name": "VENZEN, OTHELIA", "Address": "PO Box 9941", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15200, "Improved_V": 180400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.983928990899997, "SHAPE_Area": 457.77076713100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360915.970100000500679, 256125.617300000041723 ], [ 360909.512500002980232, 256126.4087999984622 ], [ 360905.270499996840954, 256151.072000000625849 ], [ 360929.497599996626377, 256146.83729999884963 ], [ 360924.812600001692772, 256128.855999998748302 ], [ 360926.462999999523163, 256124.436599999666214 ], [ 360915.970100000500679, 256125.617300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404181700", "MAP": "D9-3385-T86", "PARCEL_NAM": "8B", "ACRE": ".24", "LONGITUDE": -64.91783271, "LATITUDE": 18.33439114, "OBJECTID_1": 19592, "PARCEL_NO_": "105404181700", "Tax_Legal_": "8A-1, 8A-2 & 8B ESTATE THOMAS 6H NEW QUARTER", "Name": "JNS HOLDINGS LLC", "Address": "PO Box 9608", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 573400, "Improved_V": 304800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.47928366799999, "SHAPE_Area": 1215.1904664599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360204.369400002062321, 256114.525199998170137 ], [ 360199.871899999678135, 256093.704599998891354 ], [ 360196.016999997198582, 256096.328299999237061 ], [ 360164.459200002253056, 256117.807399999350309 ], [ 360194.115500003099442, 256143.773899998515844 ], [ 360207.876800000667572, 256137.553700000047684 ], [ 360212.508599996566772, 256135.952799998223782 ], [ 360204.369400002062321, 256114.525199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404192500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91614072, "LATITUDE": 18.33448123, "OBJECTID_1": 19617, "PARCEL_NO_": "105404192500", "Tax_Legal_": "5H ESTATE THOMAS NEW QTR", "Name": "SMITH, R. , CHESTERFIELD, M. , &", "Address": "PO Box 7042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26500, "Improved_V": 161700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.591716816499996, "SHAPE_Area": 407.64752293399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360364.465000003576279, 256119.625799998641014 ], [ 360357.825699999928474, 256141.736299999058247 ], [ 360372.312299996614456, 256145.021299999207258 ], [ 360384.58330000191927, 256124.434500001370907 ], [ 360364.465000003576279, 256119.625799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503026300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91075139, "LATITUDE": 18.33450227, "OBJECTID_1": 20053, "PARCEL_NO_": "105503026300", "Tax_Legal_": "14PU EST THOMAS 6E NEW QTR", "Name": "TURNBULL, GEORGE", "Address": "9269 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19000, "Improved_V": 159500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.960497334899998, "SHAPE_Area": 435.90195698299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360950.589400000870228, 256132.022300001233816 ], [ 360924.812600001692772, 256128.855999998748302 ], [ 360929.497599996626377, 256146.83729999884963 ], [ 360952.859099999070168, 256149.561700001358986 ], [ 360952.171499997377396, 256135.6239 ], [ 360950.589400000870228, 256132.022300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503074300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91304485000001, "LATITUDE": 18.33446183, "OBJECTID_1": 20326, "PARCEL_NO_": "105503074300", "Tax_Legal_": "14-73 ESTATE THOMAS NEW QUARTER", "Name": "BENJAMIN, ALDA, RONALD & ULRIC Jr.", "Address": "P.O. BOX 2721", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.390001510700003, "SHAPE_Area": 485.26034968800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360711.021099999547005, 256141.038400001823902 ], [ 360703.150399997830391, 256118.386999998241663 ], [ 360684.556699998676777, 256123.934300001710653 ], [ 360690.008500002324581, 256146.565999999642372 ], [ 360711.021099999547005, 256141.038400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503073800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91218995, "LATITUDE": 18.33442437, "OBJECTID_1": 20321, "PARCEL_NO_": "105503073800", "Tax_Legal_": "THOMAS ESTATE 14-78 6E NEW QTR.", "Name": "LEWIS, GARY", "Address": "PO Box 305165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.741256818, "SHAPE_Area": 840.31433479700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360774.968000002205372, 256112.430900000035763 ], [ 360773.908100001513958, 256142.1864 ], [ 360789.9966000020504, 256146.7511 ], [ 360800.48759999871254, 256145.781500000506639 ], [ 360800.759199999272823, 256113.908500000834465 ], [ 360774.968000002205372, 256112.430900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503073700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91200858000001, "LATITUDE": 18.33443189, "OBJECTID_1": 20320, "PARCEL_NO_": "105503073700", "Tax_Legal_": "14 79 ESTATE THOMAS NEW QTR", "Name": "HUGHES, LOUIS", "Address": "747 10th Ave", "City": "New York", "State": "New York", "Zip": 10019, "Country": "United States", "Land_Value": 22900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.673291131400006, "SHAPE_Area": 395.98895598199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360816.644500002264977, 256142.325100000947714 ], [ 360808.046599999070168, 256110.379599999636412 ], [ 360800.759199999272823, 256113.908500000834465 ], [ 360800.48759999871254, 256145.781500000506639 ], [ 360809.366099998354912, 256144.798599999397993 ], [ 360816.644500002264977, 256142.325100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404192300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91633992, "LATITUDE": 18.33444341, "OBJECTID_1": 19615, "PARCEL_NO_": "105404192300", "Tax_Legal_": "5G ESTATE THOMAS NEW QTR", "Name": "GUMBS, FREEMAN (TRUSTEE)", "Address": "5G Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27500, "Improved_V": 183600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.272114388600002, "SHAPE_Area": 578.01335415400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360339.813799999654293, 256113.638099998235703 ], [ 360334.788500003516674, 256133.393699999898672 ], [ 360334.038500003516674, 256136.342300001531839 ], [ 360357.825699999928474, 256141.736299999058247 ], [ 360364.465000003576279, 256119.625799998641014 ], [ 360339.813799999654293, 256113.638099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503076000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91498423, "LATITUDE": 18.33438473, "OBJECTID_1": 20342, "PARCEL_NO_": "105503076000", "Tax_Legal_": "EST THOMAS 14 61 NEW QTR", "Name": "BARNES, ATHNEL E", "Address": "PO Box 303732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.27256706199999, "SHAPE_Area": 651.55371799700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360507.29559999704361, 256107.495900001376867 ], [ 360489.594499997794628, 256102.918099999427795 ], [ 360478.012999996542931, 256137.231499999761581 ], [ 360494.092500001192093, 256142.851599998772144 ], [ 360507.29559999704361, 256107.495900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503073900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91240297, "LATITUDE": 18.33439464, "OBJECTID_1": 20322, "PARCEL_NO_": "105503073900", "Tax_Legal_": "14 77 ESTATE THPMAS NEW QTR", "Name": "BROWNE, FREDERICA & DAVIS, RANDALL", "Address": "PO Box 8386", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21000, "Improved_V": 194900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.999768768500005, "SHAPE_Area": 527.81292231800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360756.431800000369549, 256111.223700001835823 ], [ 360754.601599998772144, 256136.7511 ], [ 360773.908100001513958, 256142.1864 ], [ 360774.968000002205372, 256112.430900000035763 ], [ 360756.431800000369549, 256111.223700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503073600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91185727, "LATITUDE": 18.33433403, "OBJECTID_1": 20319, "PARCEL_NO_": "105503073600", "Tax_Legal_": "THOMAS ESTATE 14-79-A&14-80 6E NEW QTR", "Name": "JOLLY, ANTHONY & MILLS, EARLINE O", "Address": "PO Box 8835", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25100, "Improved_V": 173800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.506438755, "SHAPE_Area": 753.67519497499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360836.933499999344349, 256127.081300001591444 ], [ 360831.530299998819828, 256098.750599998980761 ], [ 360808.046599999070168, 256110.379599999636412 ], [ 360816.644500002264977, 256142.325100000947714 ], [ 360836.933499999344349, 256127.081300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503074200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9128843, "LATITUDE": 18.33441334, "OBJECTID_1": 20325, "PARCEL_NO_": "105503074200", "Tax_Legal_": "ESTATE THOMAS 14 74 NEW QTR", "Name": "BLACKMAN, FRANK", "Address": "418 Lakeside Way", "City": "Newnan", "State": "Georgia", "Zip": 30265, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.512024714000006, "SHAPE_Area": 369.34974518400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360723.941899999976158, 256138.822200000286102 ], [ 360719.318000003695488, 256113.664200000464916 ], [ 360703.150399997830391, 256118.386999998241663 ], [ 360711.021099999547005, 256141.038400001823902 ], [ 360723.941899999976158, 256138.822200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503076200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9151493, "LATITUDE": 18.33434034, "OBJECTID_1": 20344, "PARCEL_NO_": "105503076200", "Tax_Legal_": "14-60 ESTATE THOMAS NEW QTR", "Name": "IVY A CREQUE (LIFE ESTATE)", "Address": "PO Box 7393", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010393, "Country": "United States", "Land_Value": 25100, "Improved_V": 168700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.043859868, "SHAPE_Area": 666.19044092199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360489.594499997794628, 256102.918099999427795 ], [ 360471.898800000548363, 256097.706999998539686 ], [ 360460.320900000631809, 256131.598299998790026 ], [ 360478.012999996542931, 256137.231499999761581 ], [ 360489.594499997794628, 256102.918099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503074100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.912741, "LATITUDE": 18.33438903, "OBJECTID_1": 20324, "PARCEL_NO_": "105503074100", "Tax_Legal_": "14-75 ESTATE THOMAS NEW QTR", "Name": "HYMAN, DONIA P & KIMBA GEORGE,SR.", "Address": "6786 Potomac Pl", "City": "Fairburn", "State": "Georgia", "Zip": 30213, "Country": "United States", "Land_Value": 22900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.275114470600002, "SHAPE_Area": 414.45494017499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360740.901399999856949, 256135.794599998742342 ], [ 360733.059500001370907, 256109.765900000929832 ], [ 360719.318000003695488, 256113.664200000464916 ], [ 360723.941899999976158, 256138.822200000286102 ], [ 360740.901399999856949, 256135.794599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91421833, "LATITUDE": 18.33435486, "OBJECTID_1": 20335, "PARCEL_NO_": "105503075300", "Tax_Legal_": "14J-11 EST THOMAS 6E NEW QTR", "Name": "ERSKINE, CARMEN", "Address": "PO Box 11785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 89600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.389453609499995, "SHAPE_Area": 477.43234199900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360568.614900000393391, 256103.353700000792742 ], [ 360560.355800002813339, 256126.295299999415874 ], [ 360573.21000000089407, 256131.888999998569489 ], [ 360582.04169999808073, 256136.394200000911951 ], [ 360583.069200001657009, 256110.438099998980761 ], [ 360568.614900000393391, 256103.353700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503074000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91258372, "LATITUDE": 18.33436404, "OBJECTID_1": 20323, "PARCEL_NO_": "105503074000", "Tax_Legal_": "ESTATE THOMAS 14 76 NEW QTR", "Name": "CHINNERY, BROW", "Address": "PO Box 11752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 79200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.928538260099998, "SHAPE_Area": 474.19986741899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360733.059500001370907, 256109.765900000929832 ], [ 360740.901399999856949, 256135.794599998742342 ], [ 360754.601599998772144, 256136.7511 ], [ 360756.431800000369549, 256111.223700001835823 ], [ 360733.059500001370907, 256109.765900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503076400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91536003, "LATITUDE": 18.33428304, "OBJECTID_1": 20346, "PARCEL_NO_": "105503076400", "Tax_Legal_": "EST THOMAS 14-59 & 14J-7 NEW QUARTER", "Name": "RODRIGUEZ, RIGOBERTO A. & TARA M.", "Address": "PO Box 307381", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64300, "Improved_V": 128900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.76224680200001, "SHAPE_Area": 997.75671316700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360471.898800000548363, 256097.706999998539686 ], [ 360444.545299999415874, 256090.305900000035763 ], [ 360434.612400002777576, 256120.410999998450279 ], [ 360437.807099997997284, 256124.025800000876188 ], [ 360442.616200000047684, 256127.442600000649691 ], [ 360460.320900000631809, 256131.598299998790026 ], [ 360471.898800000548363, 256097.706999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404193200", "MAP": "C9-56-T63", "PARCEL_NAM": "5K", "ACRE": "0.17", "LONGITUDE": -64.9158052, "LATITUDE": 18.33427739, "OBJECTID_1": 19624, "PARCEL_NO_": "105404193200", "Tax_Legal_": "5K ESTATE THOMAS NEW QUARTER", "Name": "MILLS, MELVILLE", "Address": "PO Box 367", "City": "Tarpon Springs", "State": "Florida", "Zip": 34688, "Country": "United States", "Land_Value": 55500, "Improved_V": 127800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.57691068700001, "SHAPE_Area": 913.97175690200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360403.414399996399879, 256091.02479999884963 ], [ 360397.016000002622604, 256084.850699998438358 ], [ 360390.412699997425079, 256102.739599999040365 ], [ 360387.789899997413158, 256109.903499998152256 ], [ 360384.633599996566772, 256118.524300001561642 ], [ 360401.75, 256120.967799998819828 ], [ 360419.294399999082088, 256124.692400000989437 ], [ 360433.604400001466274, 256125.770500000566244 ], [ 360432.526299998164177, 256123.026099998503923 ], [ 360426.547399997711182, 256117.243299998342991 ], [ 360404.087700001895428, 256091.787900000810623 ], [ 360403.414399996399879, 256091.02479999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503025300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91151427, "LATITUDE": 18.33438099, "OBJECTID_1": 20043, "PARCEL_NO_": "105503025300", "Tax_Legal_": "14P7 EST THOMAS NEW QTR", "Name": "RAMSEY, LEONARD A", "Address": "PO Box 9168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13100, "Improved_V": 222800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.618782075499993, "SHAPE_Area": 239.48074682500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360865.928400002419949, 256131.118299998342991 ], [ 360869.30290000140667, 256113.625199999660254 ], [ 360855.536300003528595, 256120.47859999909997 ], [ 360850.66780000180006, 256124.027300000190735 ], [ 360846.594899997115135, 256128.84910000115633 ], [ 360851.396799996495247, 256133.110300000756979 ], [ 360859.47070000320673, 256131.909800000488758 ], [ 360865.928400002419949, 256131.118299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034800", "MAP": "F9-2893-T71", "PARCEL_NAM": "14N-2", "ACRE": "0.13", "LONGITUDE": -64.91024909, "LATITUDE": 18.33418786, "OBJECTID_1": 20104, "PARCEL_NO_": "105503034800", "Tax_Legal_": "14N-2 EST THOMAS NEW QTR", "Name": "FRETT, ALAN K", "Address": "1827 Tillstream Dr", "City": "Orlando", "State": "Florida", "Zip": 32818, "Country": "United States", "Land_Value": 27200, "Improved_V": 63900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.33869325400001, "SHAPE_Area": 507.94357971599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361007.371299996972084, 256113.89299999922514 ], [ 361002.454199999570847, 256101.838199999183416 ], [ 360998.75110000371933, 256097.256599999964237 ], [ 360992.104800000786781, 256088.797699999064207 ], [ 360985.217500001192093, 256082.563099998980761 ], [ 360984.951999999582767, 256097.224300000816584 ], [ 360984.672499999403954, 256112.660399999469519 ], [ 360984.564699999988079, 256118.612500000745058 ], [ 360984.760200001299381, 256121.175700001418591 ], [ 361007.371299996972084, 256113.89299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503026200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91077828, "LATITUDE": 18.3343438, "OBJECTID_1": 20052, "PARCEL_NO_": "105503026200", "Tax_Legal_": "14PV EST THOMAS 6E NEW QTR", "Name": "PICKERING (LIFE ESTATE), ARTHUR & CREQUE, E", "Address": "14 Pv Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13300, "Improved_V": 146300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.821265501300005, "SHAPE_Area": 367.13689477899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360932.27080000191927, 256105.274599999189377 ], [ 360926.462999999523163, 256124.436599999666214 ], [ 360924.812600001692772, 256128.855999998748302 ], [ 360950.589400000870228, 256132.022300001233816 ], [ 360949.822700001299381, 256127.372000001370907 ], [ 360947.436099998652935, 256123.552799999713898 ], [ 360938.672799997031689, 256111.026500001549721 ], [ 360932.27080000191927, 256105.274599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503025800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91133213000001, "LATITUDE": 18.33433389, "OBJECTID_1": 20048, "PARCEL_NO_": "105503025800", "Tax_Legal_": "EST THOMAS 14PZ 6E NEW QTR", "Name": "HALL-WILLIAMS, MARION, ULDRINE D. WILLIAMS & OTHERS", "Address": "PO Box 307935", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26100, "Improved_V": 282900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.311698840099993, "SHAPE_Area": 388.24315141 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360886.917700000107288, 256128.334800001233816 ], [ 360890.322800002992153, 256107.253299999982119 ], [ 360869.30290000140667, 256113.625199999660254 ], [ 360865.928400002419949, 256131.118299998342991 ], [ 360884.497000001370907, 256128.526099998503923 ], [ 360886.917700000107288, 256128.334800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91438587, "LATITUDE": 18.3342786, "OBJECTID_1": 20337, "PARCEL_NO_": "105503075500", "Tax_Legal_": "14J-10 EST THOMAS 6E NEW QTR", "Name": "LETTSOME, URLINE & JOSEPH", "Address": "PO Box 10763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37700, "Improved_V": 241300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.455806372699996, "SHAPE_Area": 476.15446840499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360551.750699996948242, 256095.194099999964237 ], [ 360542.667300000786781, 256120.239900000393391 ], [ 360560.355800002813339, 256126.295299999415874 ], [ 360568.614900000393391, 256103.353700000792742 ], [ 360551.750699996948242, 256095.194099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91118, "LATITUDE": 18.33430607, "OBJECTID_1": 20049, "PARCEL_NO_": "105503025900", "Tax_Legal_": "EST THOMAS 14PY 6E NEW QTR", "Name": "BLYDEN, DIONIOSIO & ELLIS R.", "Address": "PO Box 307935", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.566539394700001, "SHAPE_Area": 254.45993824799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360899.829499997198582, 256127.173900000751019 ], [ 360900.833599999547005, 256103.961800001561642 ], [ 360890.322800002992153, 256107.253299999982119 ], [ 360886.917700000107288, 256128.334800001233816 ], [ 360899.829499997198582, 256127.173900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503026100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91091035, "LATITUDE": 18.33426965, "OBJECTID_1": 20051, "PARCEL_NO_": "105503026100", "Tax_Legal_": "14PW EST THOMAS 6E NEW QTR", "Name": "PICKERING (LIFE ESTATE), ARTHUR & ALDEN", "Address": "14 Pv Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.540958033600006, "SHAPE_Area": 280.757199722 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360917.785999998450279, 256101.778599999845028 ], [ 360915.970100000500679, 256125.617300000041723 ], [ 360926.462999999523163, 256124.436599999666214 ], [ 360932.27080000191927, 256105.274599999189377 ], [ 360924.232900001108646, 256102.253499999642372 ], [ 360917.785999998450279, 256101.778599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034100", "MAP": null, "PARCEL_NAM": "14NG", "ACRE": "0.15", "LONGITUDE": -64.91044972, "LATITUDE": 18.33423847, "OBJECTID_1": 20097, "PARCEL_NO_": "105503034100", "Tax_Legal_": "14NG EST THOMAS 6E NEW QTR", "Name": "ENRIQUE, ANTONIO", "Address": "PO Box 11971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.975133578, "SHAPE_Area": 636.61844177199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360984.951999999582767, 256097.224300000816584 ], [ 360984.970899999141693, 256096.183200001716614 ], [ 360962.022900000214577, 256099.551699999719858 ], [ 360958.269100002944469, 256100.018699999898672 ], [ 360958.614399999380112, 256107.355599999427795 ], [ 360958.799999997019768, 256114.779800001531839 ], [ 360958.741499997675419, 256121.64469999819994 ], [ 360958.722900003194809, 256123.83049999922514 ], [ 360984.760200001299381, 256121.175700001418591 ], [ 360984.564699999988079, 256118.612500000745058 ], [ 360984.672499999403954, 256112.660399999469519 ], [ 360984.951999999582767, 256097.224300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503081800", "MAP": "D9-6794-T000", "PARCEL_NAM": "14HC-1", "ACRE": "0.34", "LONGITUDE": -64.91166868000001, "LATITUDE": 18.33403738, "OBJECTID_1": 20368, "PARCEL_NO_": "105503081800", "Tax_Legal_": "14HC-1 ESTATE THOMAS 6E NEW QTR", "Name": "WILLIE, BIBIANA, SUSANNA PACQUETTE AND FELIX WILLIE", "Address": "PO Box 10009", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013009, "Country": "United States", "Land_Value": 71300, "Improved_V": 92300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.06692995200001, "SHAPE_Area": 1459.78613505 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360852.87389999628067, 256054.384500000625849 ], [ 360831.91330000013113, 256053.790800001472235 ], [ 360831.530299998819828, 256098.750599998980761 ], [ 360836.933499999344349, 256127.081300001591444 ], [ 360847.503700003027916, 256116.824299998581409 ], [ 360856.419900000095367, 256111.4087999984622 ], [ 360852.87389999628067, 256054.384500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503026000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91104658, "LATITUDE": 18.33428036, "OBJECTID_1": 20050, "PARCEL_NO_": "105503026000", "Tax_Legal_": "14PX EST THOMAS 6E NEW QTR", "Name": "WILLIAMS, N. U. & SCHOUTEN, W. E", "Address": "14PX Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16800, "Improved_V": 154900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.561610522899997, "SHAPE_Area": 395.39223458399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360917.785999998450279, 256101.778599999845028 ], [ 360912.94990000128746, 256101.527899999171495 ], [ 360900.833599999547005, 256103.961800001561642 ], [ 360899.829499997198582, 256127.173900000751019 ], [ 360909.512500002980232, 256126.4087999984622 ], [ 360915.970100000500679, 256125.617300000041723 ], [ 360917.785999998450279, 256101.778599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503076400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91557647, "LATITUDE": 18.3341735, "OBJECTID_1": 20346, "PARCEL_NO_": "105503076400", "Tax_Legal_": "EST THOMAS 14-59 & 14J-7 NEW QUARTER", "Name": "RODRIGUEZ, RIGOBERTO A. & TARA M.", "Address": "PO Box 307381", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64300, "Improved_V": 128900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.46633397, "SHAPE_Area": 567.47137670200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360438.911899998784065, 256088.993299998342991 ], [ 360421.208999998867512, 256084.626499999314547 ], [ 360413.09009999781847, 256091.103999998420477 ], [ 360434.612400002777576, 256120.410999998450279 ], [ 360444.545299999415874, 256090.305900000035763 ], [ 360438.911899998784065, 256088.993299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91455522, "LATITUDE": 18.33421157, "OBJECTID_1": 20339, "PARCEL_NO_": "105503075700", "Tax_Legal_": "EST THOMAS 14J-9 6E NEW QTR", "Name": "CHARLESWELL, MALCOLM & J", "Address": "PO Box 10065", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46700, "Improved_V": 211800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.701708068299993, "SHAPE_Area": 555.72858601799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360533.281000003218651, 256086.177000001072884 ], [ 360524.177799999713898, 256113.544700000435114 ], [ 360542.667300000786781, 256120.239900000393391 ], [ 360551.750699996948242, 256095.194099999964237 ], [ 360533.281000003218651, 256086.177000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404192900", "MAP": "F9-1620-T65", "PARCEL_NAM": "5L", "ACRE": null, "LONGITUDE": -64.91605395000001, "LATITUDE": 18.33425596, "OBJECTID_1": 19621, "PARCEL_NO_": "105404192900", "Tax_Legal_": "5L EST THOMAS 6E NEW QTR", "Name": "TODMAN, ALUDUS", "Address": "PO Box 306435", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.615195283299997, "SHAPE_Area": 325.195061399 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360379.181800000369549, 256095.892700001597404 ], [ 360375.809500001370907, 256093.973799999803305 ], [ 360372.422600001096725, 256103.026799999177456 ], [ 360368.17119999974966, 256114.390700001269579 ], [ 360380.881700001657009, 256117.58219999819994 ], [ 360384.633599996566772, 256118.524300001561642 ], [ 360387.789899997413158, 256109.903499998152256 ], [ 360390.412699997425079, 256102.739599999040365 ], [ 360379.181800000369549, 256095.892700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404192600", "MAP": "C9-56-T63", "PARCEL_NAM": "5M", "ACRE": "0.17", "LONGITUDE": -64.91622867, "LATITUDE": 18.33411423, "OBJECTID_1": 19618, "PARCEL_NO_": "105404192600", "Tax_Legal_": "5M ESTATE THOMAS 6E NEW QTR", "Name": "SLACK, RUDOLPH", "Address": "PO Box 7673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68400, "Improved_V": 213400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.201709935, "SHAPE_Area": 1176.2063220299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360358.442500002682209, 256069.336199998855591 ], [ 360353.145199999213219, 256067.410900000482798 ], [ 360341.355800002813339, 256107.576099999248981 ], [ 360350.034100003540516, 256109.797400001436472 ], [ 360362.908100001513958, 256113.069200001657009 ], [ 360368.17119999974966, 256114.390700001269579 ], [ 360372.422600001096725, 256103.026799999177456 ], [ 360381.88459999859333, 256077.735399998724461 ], [ 360358.442500002682209, 256069.336199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91472123, "LATITUDE": 18.33414683, "OBJECTID_1": 20341, "PARCEL_NO_": "105503075900", "Tax_Legal_": "14J-6 EST THOMAS 6E NEW QTR", "Name": "PARSONS, ONA I", "Address": "PO Box 11424", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46700, "Improved_V": 75600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.589662858699995, "SHAPE_Area": 532.91950396000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360517.2212999984622, 256078.235100001096725 ], [ 360507.29559999704361, 256107.495900001376867 ], [ 360524.177799999713898, 256113.544700000435114 ], [ 360533.281000003218651, 256086.177000001072884 ], [ 360517.2212999984622, 256078.235100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503080300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9119333, "LATITUDE": 18.33393428, "OBJECTID_1": 20356, "PARCEL_NO_": "105503080300", "Tax_Legal_": "14HC-2 ESTATE THOMAS 6E NEW QTR", "Name": "SPENCELEY, KENNETH W. & MARIA J. (TRUSTEES)", "Address": "PO Box 292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.09638182399999, "SHAPE_Area": 1943.08109223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360831.171800002455711, 256046.185300000011921 ], [ 360800.210100002586842, 256041.967099998146296 ], [ 360800.759199999272823, 256113.908500000834465 ], [ 360808.046599999070168, 256110.379599999636412 ], [ 360831.530299998819828, 256098.750599998980761 ], [ 360831.91330000013113, 256053.790800001472235 ], [ 360831.171800002455711, 256046.185300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503080500", "MAP": "F9-2118-T67", "PARCEL_NAM": "14NB", "ACRE": "0.10", "LONGITUDE": -64.91067208, "LATITUDE": 18.33407113, "OBJECTID_1": 20358, "PARCEL_NO_": "105503080500", "Tax_Legal_": "14NB EST THOMAS 6E NEW QTR", "Name": "LEWIS, STEVEN", "Address": "PO Box 306663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.45697613500001, "SHAPE_Area": 391.35082269600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360953.330899998545647, 256071.852400001138449 ], [ 360943.014600001275539, 256071.535500001162291 ], [ 360943.663500003516674, 256093.124400001019239 ], [ 360942.837399996817112, 256095.439699999988079 ], [ 360943.5574000030756, 256105.578099999576807 ], [ 360950.735100001096725, 256114.924899999052286 ], [ 360953.157600000500679, 256114.522599998861551 ], [ 360953.229599997401237, 256106.0793999992311 ], [ 360953.060699999332428, 256087.725600000470877 ], [ 360953.263300001621246, 256080.700800001621246 ], [ 360953.330899998545647, 256071.852400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503080900", "MAP": "D9-6203-T97", "PARCEL_NAM": "14HB-1", "ACRE": null, "LONGITUDE": -64.91147184, "LATITUDE": 18.33398564, "OBJECTID_1": 20362, "PARCEL_NO_": "105503080900", "Tax_Legal_": "14 HB-3 ESTATE THOMAS NEW QTR.", "Name": "GERON, JOEL MICHEL", "Address": "15059 SW 113th Ter", "City": "Miami", "State": "Florida", "Zip": 33196, "Country": "United States", "Land_Value": 50200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.49343660400001, "SHAPE_Area": 1008.98669168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360873.774999998509884, 256061.943900000303984 ], [ 360868.974899999797344, 256057.471599999815226 ], [ 360865.760499998927116, 256056.178700000047684 ], [ 360861.741499997675419, 256054.668200001120567 ], [ 360852.87389999628067, 256054.384500000625849 ], [ 360856.419900000095367, 256111.4087999984622 ], [ 360865.328900001943111, 256106.837699998170137 ], [ 360875.029799997806549, 256103.96169999986887 ], [ 360873.774999998509884, 256061.943900000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503076100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91488034, "LATITUDE": 18.33409266, "OBJECTID_1": 20343, "PARCEL_NO_": "105503076100", "Tax_Legal_": "14-J-5 EST THOMAS 6E NEW QTR", "Name": "JOSEPH, STANFORD & LAUREL", "Address": "PO Box 306636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.969165194400006, "SHAPE_Area": 572.91789116099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360500.333700001239777, 256072.819600000977516 ], [ 360489.594499997794628, 256102.918099999427795 ], [ 360507.29559999704361, 256107.495900001376867 ], [ 360517.2212999984622, 256078.235100001096725 ], [ 360510.795999996364117, 256075.227200001478195 ], [ 360500.333700001239777, 256072.819600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034200", "MAP": "F9-2893-T71", "PARCEL_NAM": "14N-1", "ACRE": "0.11", "LONGITUDE": -64.9104654, "LATITUDE": 18.33402663, "OBJECTID_1": 20098, "PARCEL_NO_": "105503034200", "Tax_Legal_": "14N-1 EST THOMAS NEW QTR 6E", "Name": "FREEMAN (LIFE ESTATE), ELAINE IONA", "Address": "6540 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 218300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.0014935401, "SHAPE_Area": 589.36472103100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360963.534400001168251, 256070.671500001102686 ], [ 360961.4628000035882, 256069.980900000780821 ], [ 360959.391199998557568, 256071.534600000828505 ], [ 360959.045999996364117, 256076.282000001519918 ], [ 360958.787000000476837, 256082.496700000017881 ], [ 360958.269100002944469, 256100.018699999898672 ], [ 360960.371699996292591, 256099.793999999761581 ], [ 360962.022900000214577, 256099.551699999719858 ], [ 360984.970899999141693, 256096.183200001716614 ], [ 360985.217500001192093, 256082.563099998980761 ], [ 360981.660599999129772, 256079.561999998986721 ], [ 360973.633299998939037, 256077.058800000697374 ], [ 360966.987000003457069, 256073.778799999505281 ], [ 360963.534400001168251, 256070.671500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503077100", "MAP": "F9-1620-T65", "PARCEL_NAM": "5La", "ACRE": "0.07", "LONGITUDE": -64.91598821, "LATITUDE": 18.33409623, "OBJECTID_1": 20351, "PARCEL_NO_": "105503077100", "Tax_Legal_": "5 LA ESTATE THOMAS NEW QTR", "Name": "HAMM, STANLEY & BERYL", "Address": "3566 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025726, "Country": "United States", "Land_Value": 16000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.3040309525, "SHAPE_Area": 311.99990458500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360389.795199997723103, 256080.569699998944998 ], [ 360381.88459999859333, 256077.735399998724461 ], [ 360375.809500001370907, 256093.973799999803305 ], [ 360379.181800000369549, 256095.892700001597404 ], [ 360390.412699997425079, 256102.739599999040365 ], [ 360397.016000002622604, 256084.850699998438358 ], [ 360392.206900000572205, 256081.433800000697374 ], [ 360389.795199997723103, 256080.569699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503076300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9150491, "LATITUDE": 18.33405975, "OBJECTID_1": 20345, "PARCEL_NO_": "105503076300", "Tax_Legal_": "14J-4 EST THOMAS 6E NEW QTR", "Name": "JOHN BAPTISTE, CLARINE", "Address": "PO Box 1642", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33200, "Improved_V": 180000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.148976055899993, "SHAPE_Area": 550.45093590399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360480.177699998021126, 256072.443500000983477 ], [ 360471.898800000548363, 256097.706999998539686 ], [ 360489.594499997794628, 256102.918099999427795 ], [ 360500.333700001239777, 256072.819600000977516 ], [ 360480.177699998021126, 256072.443500000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503081700", "MAP": "D9-6477-T98", "PARCEL_NAM": "14HB REM CONS", "ACRE": "0.24", "LONGITUDE": -64.91114799, "LATITUDE": 18.33403046, "OBJECTID_1": 20367, "PARCEL_NO_": "105503081700", "Tax_Legal_": "THOMAS 14HB REMAINDER CONSOLIDATED REM 14HB & 14HA NEW QRT #6E", "Name": "WYATT, EDWIN & JENIFER", "Address": "PO Box 309600", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45700, "Improved_V": 103000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.32023243800001, "SHAPE_Area": 1224.13262461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360903.326300002634525, 256095.327399998903275 ], [ 360912.210100002586842, 256093.711399998515844 ], [ 360921.876900002360344, 256094.845899999141693 ], [ 360929.128300003707409, 256095.538600001484156 ], [ 360934.747299998998642, 256098.539900001138449 ], [ 360935.569799996912479, 256096.646800000220537 ], [ 360935.623700000345707, 256090.314399998635054 ], [ 360934.833599999547005, 256088.408100001513958 ], [ 360930.037100002169609, 256083.513700000941753 ], [ 360921.990199998021126, 256081.548000000417233 ], [ 360895.258299998939037, 256075.653499998152256 ], [ 360888.186200000345707, 256074.094099998474121 ], [ 360879.363499999046326, 256068.533500000834465 ], [ 360873.774999998509884, 256061.943900000303984 ], [ 360875.029799997806549, 256103.96169999986887 ], [ 360891.199199996888638, 256099.027800001204014 ], [ 360895.902099996805191, 256097.592799998819828 ], [ 360903.326300002634525, 256095.327399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503076500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91527155, "LATITUDE": 18.33402382, "OBJECTID_1": 20347, "PARCEL_NO_": "105503076500", "Tax_Legal_": "14J-3 EST THOMAS 6E NEW QTR", "Name": "YISRAEL, SHAMBA & EMANUEL", "Address": "PO Box 11508", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.626225593, "SHAPE_Area": 700.404518704 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360452.813400000333786, 256066.308899998664856 ], [ 360444.545299999415874, 256090.305900000035763 ], [ 360471.898800000548363, 256097.706999998539686 ], [ 360480.177699998021126, 256072.443500000983477 ], [ 360467.285700000822544, 256071.282499998807907 ], [ 360459.23870000243187, 256069.316799998283386 ], [ 360452.813400000333786, 256066.308899998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503076900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91574072, "LATITUDE": 18.33395374, "OBJECTID_1": 20350, "PARCEL_NO_": "105503076900", "Tax_Legal_": "EST THOMAS 14J-8 6E NEW QTR", "Name": "BELL, PAULETTE", "Address": "3234 Shingler Ter", "City": "Deltona", "State": "Florida", "Zip": 32738, "Country": "United States", "Land_Value": 21700, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.105131359599994, "SHAPE_Area": 525.77009608900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360413.09009999781847, 256091.103999998420477 ], [ 360421.208999998867512, 256084.626499999314547 ], [ 360426.25, 256060.8141999989748 ], [ 360418.991400003433228, 256060.965900000184774 ], [ 360410.094999998807907, 256064.059500001370907 ], [ 360404.431100003421307, 256066.335099998861551 ], [ 360395.513099998235703, 256071.96169999986887 ], [ 360395.491499997675419, 256074.494600001722574 ], [ 360400.306000001728535, 256077.278200000524521 ], [ 360406.711499996483326, 256082.607999999076128 ], [ 360413.09009999781847, 256091.103999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503076700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91543839000001, "LATITUDE": 18.33396375, "OBJECTID_1": 20348, "PARCEL_NO_": "105503076700", "Tax_Legal_": "14J-2 EST.THOMAS NEW QTR 6E", "Name": "RHYMER, RIEL & MARILYN V", "Address": "PO Box 8582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.064785132899999, "SHAPE_Area": 229.864117905 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360441.559199996292591, 256062.2060999982059 ], [ 360438.911899998784065, 256088.993299998342991 ], [ 360444.545299999415874, 256090.305900000035763 ], [ 360452.813400000333786, 256066.308899998664856 ], [ 360449.598899997770786, 256065.016100000590086 ], [ 360441.559199996292591, 256062.2060999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503076800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91555818, "LATITUDE": 18.33395411, "OBJECTID_1": 20349, "PARCEL_NO_": "105503076800", "Tax_Legal_": "14J-1 EST THOMAS NEW QTR 6E", "Name": "SMITH, DORIS & EDWARDO", "Address": "PO Box 101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24400, "Improved_V": 149000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.016303299499995, "SHAPE_Area": 437.00824970399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360421.208999998867512, 256084.626499999314547 ], [ 360438.911899998784065, 256088.993299998342991 ], [ 360441.559199996292591, 256062.2060999982059 ], [ 360434.316799998283386, 256060.458000000566244 ], [ 360426.25, 256060.8141999989748 ], [ 360421.208999998867512, 256084.626499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105503090100", "MAP": null, "PARCEL_NAM": "14J-12", "ACRE": "0.12", "LONGITUDE": -64.91451896, "LATITUDE": 18.33384778, "OBJECTID_1": 20371, "PARCEL_NO_": "105503090100", "Tax_Legal_": "THOMAS 14J-12 NEW QTR", "Name": "TESTMARK, BEVERLY A", "Address": "963 Central Hills Ln", "City": "Hyattsville", "State": "Maryland", "Zip": 20785, "Country": "United States", "Land_Value": 33000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.94829998100001, "SHAPE_Area": 678.27605482800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360534.459600001573563, 256042.490299999713898 ], [ 360530.944799996912479, 256076.447599999606609 ], [ 360549.414499998092651, 256085.464699998497963 ], [ 360552.950800001621246, 256048.974500000476837 ], [ 360534.459600001573563, 256042.490299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105503090200", "MAP": "F9-3453-T76", "PARCEL_NAM": "14J-13", "ACRE": "0.13", "LONGITUDE": -64.91469568, "LATITUDE": 18.33378805, "OBJECTID_1": 20372, "PARCEL_NO_": "105503090200", "Tax_Legal_": "14J-13 EST. THOMAS NEW QTR.", "Name": "FARRINGTON, BERYL", "Address": "P.O. BOX 1932", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.359045997, "SHAPE_Area": 607.386242681 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360514.319700002670288, 256040.214600000530481 ], [ 360512.473300002515316, 256067.641600001603365 ], [ 360530.944799996912479, 256076.447599999606609 ], [ 360534.459600001573563, 256042.490299999713898 ], [ 360514.319700002670288, 256040.214600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404210300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91747163, "LATITUDE": 18.33343327, "OBJECTID_1": 19632, "PARCEL_NO_": "105404210300", "Tax_Legal_": "A-1-25 EST. THOMAS 6K NEW QTR.", "Name": "MASJID NUR AHL US SUNNAA", "Address": "PO Box 12028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 249300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 412.91231817900001, "SHAPE_Area": 8222.4604907600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360259.290500000119209, 255970.999499998986721 ], [ 360253.658900000154972, 255969.47580000013113 ], [ 360240.820799998939037, 255961.982400000095367 ], [ 360229.571999996900558, 255957.246300000697374 ], [ 360203.023000001907349, 255950.062899999320507 ], [ 360183.117700003087521, 256014.916799999773502 ], [ 360198.126599997282028, 256051.558800000697374 ], [ 360217.336000002920628, 256068.392400000244379 ], [ 360226.174900002777576, 256072.053399998694658 ], [ 360235.044299997389317, 256072.125999998301268 ], [ 360277.040899999439716, 256064.448100000619888 ], [ 360289.142800003290176, 256063.702799998223782 ], [ 360267.39750000089407, 256060.569499999284744 ], [ 360275.843599997460842, 256015.675700001418591 ], [ 360291.957299999892712, 256017.285300001502037 ], [ 360266.293799996376038, 256000.820999998599291 ], [ 360263.104500003159046, 255996.572999998927116 ], [ 360260.714299999177456, 255993.175999999046326 ], [ 360259.159199997782707, 255986.408300001174212 ], [ 360258.453599996864796, 255974.581199999898672 ], [ 360259.290500000119209, 255970.999499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404210200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9168654, "LATITUDE": 18.33369951, "OBJECTID_1": 19631, "PARCEL_NO_": "105404210200", "Tax_Legal_": "A-1-24 EST. THOMAS 6K NEW QTR.", "Name": "ISLAMIC CENTER INC", "Address": "PO Box 12028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 109300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.94093474100001, "SHAPE_Area": 1973.7242236699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360289.142800003290176, 256063.702799998223782 ], [ 360307.677199997007847, 256065.121100001037121 ], [ 360321.353900000452995, 256068.821600001305342 ], [ 360324.580899998545647, 256068.636900000274181 ], [ 360327.01969999819994, 256066.334800001233816 ], [ 360327.04839999973774, 256062.957600001245737 ], [ 360322.284299999475479, 256054.263799998909235 ], [ 360321.504900000989437, 256051.090999998152256 ], [ 360311.940700002014637, 256037.924899999052286 ], [ 360305.542300000786781, 256031.750799998641014 ], [ 360299.964699998497963, 256023.89469999819994 ], [ 360293.560900002717972, 256018.353900000452995 ], [ 360291.957299999892712, 256017.285300001502037 ], [ 360275.843599997460842, 256015.675700001418591 ], [ 360267.39750000089407, 256060.569499999284744 ], [ 360289.142800003290176, 256063.702799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503081400", "MAP": "D9-6255-T97", "PARCEL_NAM": "14HA-1", "ACRE": "0.23", "LONGITUDE": -64.91090294, "LATITUDE": 18.33381769, "OBJECTID_1": 20365, "PARCEL_NO_": "105503081400", "Tax_Legal_": "ESTATE THOMAS 14HA-1 6E NEW QTR.", "Name": "DAVIS, WILMA A. B. & GLENN A", "Address": "PO Box 304274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.44518613899999, "SHAPE_Area": 1036.8950336099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360942.707400001585484, 256061.314699999988079 ], [ 360942.221100002527237, 256045.134100001305342 ], [ 360928.619999997317791, 256049.225000001490116 ], [ 360920.660999998450279, 256051.618900001049042 ], [ 360896.449299998581409, 256058.901399999856949 ], [ 360894.781400002539158, 256059.403000000864267 ], [ 360895.027000002563, 256067.772100001573563 ], [ 360897.105999998748302, 256068.256499998271465 ], [ 360921.252199999988079, 256073.520399998873472 ], [ 360933.330700002610683, 256075.519099999219179 ], [ 360942.112000003457069, 256085.934500001370907 ], [ 360943.663500003516674, 256093.124400001019239 ], [ 360942.757299996912479, 256062.974700000137091 ], [ 360942.30799999833107, 256062.926899999380112 ], [ 360942.707400001585484, 256061.314699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105503090500", "MAP": "F9-3453-T76", "PARCEL_NAM": "14J-14", "ACRE": "0.14", "LONGITUDE": -64.91488841, "LATITUDE": 18.33375502, "OBJECTID_1": 20373, "PARCEL_NO_": "105503090500", "Tax_Legal_": "14J-14 ESTATE THOMAS 6E NEW QUARTER", "Name": "WEEKS, LORIEL L. & LINDA A", "Address": "PO Box 6023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.266411249100003, "SHAPE_Area": 547.72666693099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360491.530799999833107, 256064.937100000679493 ], [ 360499.593900002539158, 256065.003100000321865 ], [ 360512.473300002515316, 256067.641600001603365 ], [ 360514.319700002670288, 256040.214600000530481 ], [ 360493.361000001430511, 256039.409699998795986 ], [ 360491.530799999833107, 256064.937100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503080400", "MAP": "D9-6255-T97", "PARCEL_NAM": "14HA-3", "ACRE": "0.27", "LONGITUDE": -64.91103601, "LATITUDE": 18.33346488, "OBJECTID_1": 20357, "PARCEL_NO_": "105503080400", "Tax_Legal_": "14HA-3 EST THOMAS 6E NEW QTR", "Name": "SPENCELEY, KENNETH W", "Address": "PO Box 292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.417667491, "SHAPE_Area": 1063.5463168799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360941.116599999368191, 256014.158599998801947 ], [ 360940.904899999499321, 256008.655200000852346 ], [ 360918.573600001633167, 256009.3260000012815 ], [ 360893.342600002884865, 256010.371700000017881 ], [ 360893.469400003552437, 256014.690900001674891 ], [ 360893.901199996471405, 256029.405299998819828 ], [ 360894.781400002539158, 256059.403000000864267 ], [ 360896.318499997258186, 256057.038600001484156 ], [ 360904.835400000214577, 256043.937800001353025 ], [ 360916.351499997079372, 256026.223600000143051 ], [ 360919.489900000393391, 256025.117300000041723 ], [ 360941.247900001704693, 256017.447200000286102 ], [ 360941.116599999368191, 256014.158599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404181000", "MAP": "D9-3585-T86", "PARCEL_NAM": "9 & 10 (COMBINED)", "ACRE": "2.014", "LONGITUDE": -64.9187422, "LATITUDE": 18.33317975, "OBJECTID_1": 19585, "PARCEL_NO_": "105404181000", "Tax_Legal_": "THOMAS ESTATE 9&10 6H NEW QTR.", "Name": "A. H. RIISE INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1030100, "Improved_V": 1601300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 370.664731975, "SHAPE_Area": 8048.2647282099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360129.900399997830391, 255919.911299999803305 ], [ 360129.923699997365475, 255917.167300000786781 ], [ 360035.312899999320507, 255972.778400000184774 ], [ 360035.904200002551079, 255973.604200001806021 ], [ 360055.021899998188019, 256001.202799998223782 ], [ 360056.591399997472763, 256006.281899999827147 ], [ 360058.985100001096725, 256009.256799999624491 ], [ 360063.738499999046326, 256019.217099998146296 ], [ 360080.160700000822544, 256051.522900000214577 ], [ 360141.180500000715256, 256015.629000000655651 ], [ 360137.44200000166893, 255981.190200001001358 ], [ 360129.900399997830391, 255919.911299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503081500", "MAP": "D9-6204-T97", "PARCEL_NAM": "14HA-2", "ACRE": "0.23", "LONGITUDE": -64.91091415, "LATITUDE": 18.333595, "OBJECTID_1": 20366, "PARCEL_NO_": "105503081500", "Tax_Legal_": "14HA-2 ESTATE THOMAS No.6E NEW QTR", "Name": "WILKINSON, MICHELLE L", "Address": "7285 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43800, "Improved_V": 80700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.21601594399999, "SHAPE_Area": 982.98666838099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360941.818599998950958, 256031.741500001400709 ], [ 360941.247900001704693, 256017.447200000286102 ], [ 360919.489900000393391, 256025.117300000041723 ], [ 360916.351499997079372, 256026.223600000143051 ], [ 360904.835400000214577, 256043.937800001353025 ], [ 360896.318499997258186, 256057.038600001484156 ], [ 360894.781400002539158, 256059.403000000864267 ], [ 360896.449299998581409, 256058.901399999856949 ], [ 360920.660999998450279, 256051.618900001049042 ], [ 360928.619999997317791, 256049.225000001490116 ], [ 360942.221100002527237, 256045.134100001305342 ], [ 360941.818599998950958, 256031.741500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105404210600", "MAP": "D9-4351-T88", "PARCEL_NAM": "A-1-21", "ACRE": "0.77", "LONGITUDE": -64.91637927, "LATITUDE": 18.33354619, "OBJECTID_1": 19633, "PARCEL_NO_": "105404210600", "Tax_Legal_": "A-1-20,-21,-22 ESTATE THOMAS NEW QUARTER", "Name": "TUSCALOOSA ANESTHESIA SERVICES,P.C,WALTER E. LARIS", "Address": "7724 River Ridge Rd", "City": "Tuscaloosa", "State": "Alabama", "Zip": 35406, "Country": "United States", "Land_Value": 266300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.33655096299998, "SHAPE_Area": 3636.7315063599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360335.63120000064373, 256002.021800000220537 ], [ 360300.95440000295639, 256002.371300000697374 ], [ 360272.781999997794628, 255996.441199999302626 ], [ 360280.79839999973774, 256001.995200000703335 ], [ 360292.038199998438358, 256007.786699999123812 ], [ 360304.050200000405312, 256017.595300000160933 ], [ 360323.997599996626377, 256042.456500001251698 ], [ 360329.578900001943111, 256049.890500001609325 ], [ 360332.744800001382828, 256056.882500000298023 ], [ 360347.280000001192093, 256054.468299999833107 ], [ 360357.770999997854233, 256053.498700000345707 ], [ 360385.968599997460842, 256056.473700001835823 ], [ 360397.508699998259544, 256027.015099998563528 ], [ 360365.35869999974966, 256014.7195999994874 ], [ 360357.31360000371933, 256012.54280000180006 ], [ 360335.63120000064373, 256002.021800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404182000", "MAP": "D9-4355-T88", "PARCEL_NAM": "A-1-26", "ACRE": "3.95", "LONGITUDE": -64.91789874, "LATITUDE": 18.33255323, "OBJECTID_1": 19595, "PARCEL_NO_": "105404182000", "Tax_Legal_": "THOMAS A-1 6K NEW QTR.", "Name": "TRAMWAY PROPERTIES, INC.", "Address": "713 Indian Hills Dr", "City": "Tuscaloosa", "State": "Alabama", "Zip": 35406, "Country": "United States", "Land_Value": 1500000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 653.26309798299997, "SHAPE_Area": 14935.605499699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360183.117700003087521, 256014.916799999773502 ], [ 360203.023000001907349, 255950.062899999320507 ], [ 360229.571999996900558, 255957.246300000697374 ], [ 360240.820799998939037, 255961.982400000095367 ], [ 360253.658900000154972, 255969.47580000013113 ], [ 360259.290500000119209, 255970.999499998986721 ], [ 360260.177699998021126, 255961.507599998265505 ], [ 360242.784100003540516, 255920.835200000554323 ], [ 360234.565600000321865, 255844.352099999785423 ], [ 360232.144900001585484, 255844.543400000780821 ], [ 360185.348200000822544, 255847.749000001698732 ], [ 360127.324299998581409, 255843.685499999672174 ], [ 360107.827100001275539, 255860.624499998986721 ], [ 360117.434500001370907, 255868.724700000137091 ], [ 360123.827500000596046, 255875.532000001519918 ], [ 360130.999799996614456, 255885.512099999934435 ], [ 360138.123499996960163, 255901.191300000995398 ], [ 360143.609499998390675, 255919.812399998307228 ], [ 360145.925899997353554, 255931.863699998706579 ], [ 360148.983900003135204, 255951.520500000566244 ], [ 360149.74889999628067, 255956.381900001317263 ], [ 360151.264399997889996, 255967.793299999088049 ], [ 360151.588600002229214, 255972.251800000667572 ], [ 360153.429799996316433, 255997.575300000607967 ], [ 360157.342699997127056, 256011.539500001817942 ], [ 360163.710500001907349, 256021.301899999380112 ], [ 360172.49719999730587, 256031.084100000560284 ], [ 360198.126599997282028, 256051.558800000697374 ], [ 360183.117700003087521, 256014.916799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503081100", "MAP": "D9-6245-T97", "PARCEL_NAM": "14HB-2", "ACRE": "0.24", "LONGITUDE": -64.91128592, "LATITUDE": 18.33357567, "OBJECTID_1": 20364, "PARCEL_NO_": "105503081100", "Tax_Legal_": "14HB-2 ESTATE THOMAS 6E NEW QTR.", "Name": "REID, CAROLINE A. & SKETA P", "Address": "19 VESTER GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.060204935, "SHAPE_Area": 1078.51706932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360893.469400003552437, 256014.690900001674891 ], [ 360893.342600002884865, 256010.371700000017881 ], [ 360871.787699997425079, 256011.265099998563528 ], [ 360871.9054000005126, 256014.93189999833703 ], [ 360873.062200002372265, 256050.961199998855591 ], [ 360877.867700003087521, 256054.800200000405312 ], [ 360879.457000002264977, 256057.557399999350309 ], [ 360885.85530000180006, 256063.731499999761581 ], [ 360891.472599998116493, 256066.943799998611212 ], [ 360895.027000002563, 256067.772100001573563 ], [ 360893.901199996471405, 256029.405299998819828 ], [ 360893.469400003552437, 256014.690900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304070600", "MAP": "D9-1268-T76", "PARCEL_NAM": "REM 8", "ACRE": "1.20", "LONGITUDE": -64.93545238, "LATITUDE": 18.33344967, "OBJECTID_1": 11395, "PARCEL_NO_": "105304070600", "Tax_Legal_": "8 REMAINDER ORKANSHULLET ESTATE HASSEL ISLAND SOUTHSIDE QTR", "Name": "AMALIE HOLDING II LLLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 618900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.38858040100001, "SHAPE_Area": 4229.6512481999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358321.773999996483326, 255963.964099999517202 ], [ 358297.563000001013279, 255991.651599999517202 ], [ 358289.31530000269413, 256004.195000000298023 ], [ 358283.617299996316433, 256012.860800001770258 ], [ 358331.228399999439716, 256042.963899999856949 ], [ 358335.436499997973442, 256045.624499998986721 ], [ 358368.284100003540516, 255999.300900001078844 ], [ 358373.44539999961853, 255991.747699998319149 ], [ 358369.643299996852875, 255988.005499999970198 ], [ 358343.148699998855591, 255961.928399998694658 ], [ 358321.773999996483326, 255963.964099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503081100", "MAP": "D9-6203-T97", "PARCEL_NAM": "14HB-3", "ACRE": null, "LONGITUDE": -64.91152355, "LATITUDE": 18.33350548, "OBJECTID_1": 20364, "PARCEL_NO_": "105503081100", "Tax_Legal_": "14HB-2 ESTATE THOMAS 6E NEW QTR.", "Name": "REID, CAROLINE A. & SKETA P", "Address": "19 VESTER GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.375627503, "SHAPE_Area": 950.22873166099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360873.062200002372265, 256050.961199998855591 ], [ 360871.787699997425079, 256011.265099998563528 ], [ 360858.881300002336502, 256011.79280000180006 ], [ 360837.909400001168251, 256012.650199998170137 ], [ 360853.7449000030756, 256046.792300000786781 ], [ 360862.612499997019768, 256047.075899999588728 ], [ 360868.245899997651577, 256048.388599999248981 ], [ 360873.062200002372265, 256050.961199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105404170100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92116005, "LATITUDE": 18.33339579, "OBJECTID_1": 19574, "PARCEL_NO_": "105404170100", "Tax_Legal_": "1, 2, 3, & ESTATE THOMAS 6F & 6B NEW QUARTER", "Name": "EMPLOYEES RETIREMENT SYSTEM OF THE GOVT OF THE VI", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 347.87774533200002, "SHAPE_Area": 755.21308493900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359889.896899998188019, 255980.008499998599291 ], [ 359857.230800002813339, 256028.292700000107288 ], [ 359779.459100000560284, 255975.938200000673532 ], [ 359777.005900003015995, 255979.928899999707937 ], [ 359869.210400000214577, 256041.900699999183416 ], [ 359871.661700002849102, 256038.121100001037121 ], [ 359860.438100002706051, 256030.429900001734495 ], [ 359893.095200002193451, 255983.201099999248981 ], [ 359889.896899998188019, 255980.008499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105404170100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92076909, "LATITUDE": 18.33342462, "OBJECTID_1": 19574, "PARCEL_NO_": "105404170100", "Tax_Legal_": "1, 2, 3, & ESTATE THOMAS 6F & 6B NEW QUARTER", "Name": "EMPLOYEES RETIREMENT SYSTEM OF THE GOVT OF THE VI", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.65089543100001, "SHAPE_Area": 747.88930803000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359871.661700002849102, 256038.121100001037121 ], [ 359902.697200000286102, 255991.934500001370907 ], [ 359893.095200002193451, 255983.201099999248981 ], [ 359860.438100002706051, 256030.429900001734495 ], [ 359871.661700002849102, 256038.121100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105404170100", "MAP": "A9-431-T93", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.92118472, "LATITUDE": 18.33311237, "OBJECTID_1": 19574, "PARCEL_NO_": "105404170100", "Tax_Legal_": "1, 2, 3, & ESTATE THOMAS 6F & 6B NEW QUARTER", "Name": "EMPLOYEES RETIREMENT SYSTEM OF THE GOVT OF THE VI", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.11515255199998, "SHAPE_Area": 5656.8547117199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359823.270599998533726, 255920.886799998581409 ], [ 359785.423199996352196, 255979.953200001269579 ], [ 359857.230800002813339, 256028.292700000107288 ], [ 359889.896899998188019, 255980.008499998599291 ], [ 359869.90089999884367, 255960.846500001847744 ], [ 359823.270599998533726, 255920.886799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105404211100", "MAP": "D9-4351-T88", "PARCEL_NAM": "A-1-19", "ACRE": "0.76", "LONGITUDE": -64.91626934, "LATITUDE": 18.33323189, "OBJECTID_1": 19637, "PARCEL_NO_": "105404211100", "Tax_Legal_": "A-1-19 ESTATE THOMAS NEW QUARTER", "Name": "DOUGLAS, TERRY R.", "Address": "1429 39th Ave E", "City": "Tuscaloosa", "State": "Alabama", "Zip": 35404, "Country": "United States", "Land_Value": 134200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.49795269800001, "SHAPE_Area": 2463.8374989399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360405.744499996304512, 256006.817499998956919 ], [ 360399.304700002074242, 256005.498199999332428 ], [ 360389.659599997103214, 256001.830699998885393 ], [ 360380.027000002563, 255996.685600001364946 ], [ 360372.014200001955032, 255990.709399998188019 ], [ 360364.003200002014637, 255984.522100001573563 ], [ 360352.810199998319149, 255973.242600001394749 ], [ 360348.031599998474121, 255966.237399999052286 ], [ 360346.428000003099442, 255965.168800000101328 ], [ 360344.849500000476837, 255961.145100001245737 ], [ 360340.859300002455711, 255956.25730000063777 ], [ 360315.736000001430511, 255971.039299998432398 ], [ 360335.63120000064373, 256002.021800000220537 ], [ 360357.31360000371933, 256012.54280000180006 ], [ 360365.35869999974966, 256014.7195999994874 ], [ 360397.508699998259544, 256027.015099998563528 ], [ 360405.744499996304512, 256006.817499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304070700", "MAP": "B3-145-T45", "PARCEL_NAM": "9", "ACRE": "3.42", "LONGITUDE": -64.93522735000001, "LATITUDE": 18.33287805, "OBJECTID_1": 11396, "PARCEL_NO_": "105304070700", "Tax_Legal_": "ORKANSHULLET No.9 No.9 SOUTHSIDE QTR.", "Name": "AMALIE HOLDING II LLLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025819, "Country": "United States", "Land_Value": 761200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 566.02276281900004, "SHAPE_Area": 12299.763262500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358406.134499996900558, 255985.174300000071526 ], [ 358406.465400002896786, 255946.335799999535084 ], [ 358407.36879999935627, 255934.944099999964237 ], [ 358409.965700000524521, 255914.067099999636412 ], [ 358415.917400002479553, 255878.018899999558926 ], [ 358337.451099999248981, 255869.77479999884963 ], [ 358267.004000000655651, 255991.572700001299381 ], [ 358262.011200003325939, 256000.204900000244379 ], [ 358275.348999999463558, 256008.825899999588728 ], [ 358283.617299996316433, 256012.860800001770258 ], [ 358289.31530000269413, 256004.195000000298023 ], [ 358297.563000001013279, 255991.651599999517202 ], [ 358321.773999996483326, 255963.964099999517202 ], [ 358343.148699998855591, 255961.928399998694658 ], [ 358369.643299996852875, 255988.005499999970198 ], [ 358402.92509999871254, 256020.762800000607967 ], [ 358405.969099998474121, 256004.593600001186132 ], [ 358406.919200003147125, 255987.713899999856949 ], [ 358406.134499996900558, 255985.174300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105404210600", "MAP": "D9-4351-T88", "PARCEL_NAM": "A-1-22", "ACRE": "0.78", "LONGITUDE": -64.91688414, "LATITUDE": 18.33301668, "OBJECTID_1": 19633, "PARCEL_NO_": "105404210600", "Tax_Legal_": "A-1-20,-21,-22 ESTATE THOMAS NEW QUARTER", "Name": "TUSCALOOSA ANESTHESIA SERVICES,P.C,WALTER E. LARIS", "Address": "7724 River Ridge Rd", "City": "Tuscaloosa", "State": "Alabama", "Zip": 35406, "Country": "United States", "Land_Value": 266300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.84379865699998, "SHAPE_Area": 3238.37190689 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360315.736000001430511, 255971.039299998432398 ], [ 360288.700800001621246, 255926.277300000190735 ], [ 360284.037299998104572, 255905.763000000268221 ], [ 360282.381499998271465, 255910.815699998289347 ], [ 360277.450099997222424, 255921.752199999988079 ], [ 360269.108300000429153, 255954.403499998152256 ], [ 360268.607299998402596, 255957.739399999380112 ], [ 360265.688799999654293, 255977.173599999397993 ], [ 360267.202600002288818, 255988.796100001782179 ], [ 360272.781999997794628, 255996.441199999302626 ], [ 360300.95440000295639, 256002.371300000697374 ], [ 360335.63120000064373, 256002.021800000220537 ], [ 360315.736000001430511, 255971.039299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105404210800", "MAP": null, "PARCEL_NAM": "A-1-18", "ACRE": null, "LONGITUDE": -64.91593206, "LATITUDE": 18.33296131, "OBJECTID_1": 19634, "PARCEL_NO_": "105404210800", "Tax_Legal_": "A-1-18 EST.THOMAS 6K NEW QTR.", "Name": "TUSCALOOSA ANESTHESIA SERVICES,P.C., WALTER E. LAR", "Address": "7724 River Ridge Rd", "City": "Tuscaloosa", "State": "Alabama", "Zip": 35406, "Country": "United States", "Land_Value": 133000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.09963971, "SHAPE_Area": 3103.7286245099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360431.304799996316433, 255940.743299998342991 ], [ 360412.014399997889996, 255933.408300001174212 ], [ 360348.116099998354912, 255956.316700000315905 ], [ 360349.701800003647804, 255959.496100001037121 ], [ 360356.085799999535084, 255967.358800001442432 ], [ 360364.071599997580051, 255976.5011 ], [ 360371.274400003254414, 255982.892900001257658 ], [ 360382.494499996304512, 255991.006299998611212 ], [ 360391.322499997913837, 255995.933699999004602 ], [ 360398.564999997615814, 255997.681699998676777 ], [ 360401.802799999713898, 255996.230599999427795 ], [ 360403.440600000321865, 255993.288699999451637 ], [ 360409.871299996972084, 255995.66330000013113 ], [ 360431.304799996316433, 255940.743299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404180800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91896039, "LATITUDE": 18.33261082, "OBJECTID_1": 19583, "PARCEL_NO_": "105404180800", "Tax_Legal_": "THOMAS ESTATE 15 6H NEW QTR", "Name": "GUARDIAN INSURANCE CO, INC.", "Address": "PO Box 9109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 882100, "Improved_V": 95000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 324.103468905, "SHAPE_Area": 5100.2476556399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360129.923699997365475, 255917.167300000786781 ], [ 360098.086599998176098, 255868.144099999219179 ], [ 360059.106700003147125, 255900.333500001579523 ], [ 360060.65820000320673, 255907.523400001227856 ], [ 360048.444799996912479, 255921.355599999427795 ], [ 360012.794399999082088, 255941.32880000025034 ], [ 360035.312899999320507, 255972.778400000184774 ], [ 360129.923699997365475, 255917.167300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105404210600", "MAP": "D9-4351-T88", "PARCEL_NAM": "A-1-20", "ACRE": "0.76", "LONGITUDE": -64.91671371, "LATITUDE": 18.33258227, "OBJECTID_1": 19633, "PARCEL_NO_": "105404210600", "Tax_Legal_": "A-1-20,-21,-22 ESTATE THOMAS NEW QUARTER", "Name": "TUSCALOOSA ANESTHESIA SERVICES,P.C,WALTER E. LARIS", "Address": "7724 River Ridge Rd", "City": "Tuscaloosa", "State": "Alabama", "Zip": 35406, "Country": "United States", "Land_Value": 266300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.470542604, "SHAPE_Area": 3117.6880876 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360317.520499996840954, 255856.219000000506639 ], [ 360300.41889999806881, 255875.921799998730421 ], [ 360288.952500000596046, 255896.726300001144409 ], [ 360286.506599999964237, 255899.872600000351667 ], [ 360284.85980000346899, 255903.869899999350309 ], [ 360284.037299998104572, 255905.763000000268221 ], [ 360288.700800001621246, 255926.277300000190735 ], [ 360315.736000001430511, 255971.039299998432398 ], [ 360340.859300002455711, 255956.25730000063777 ], [ 360339.288099996745586, 255951.389299999922514 ], [ 360336.894299998879433, 255948.41440000012517 ], [ 360335.387800000607967, 255935.947500001639128 ], [ 360331.465899996459484, 255923.038699999451637 ], [ 360327.508100003004074, 255914.351500000804663 ], [ 360317.949199996888638, 255900.552200000733137 ], [ 360314.837200000882149, 255887.227800000458956 ], [ 360314.160400003194809, 255872.023499999195337 ], [ 360318.305200003087521, 255858.758600000292063 ], [ 360317.520499996840954, 255856.219000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404182000", "MAP": "D9-4355-T88", "PARCEL_NAM": "A-1-27", "ACRE": "2.91", "LONGITUDE": -64.91728716, "LATITUDE": 18.33175558, "OBJECTID_1": 19595, "PARCEL_NO_": "105404182000", "Tax_Legal_": "THOMAS A-1 6K NEW QTR.", "Name": "TRAMWAY PROPERTIES, INC.", "Address": "713 Indian Hills Dr", "City": "Tuscaloosa", "State": "Alabama", "Zip": 35406, "Country": "United States", "Land_Value": 1500000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 713.85793079099994, "SHAPE_Area": 16026.4676882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360303.076999999582767, 255847.868099998682737 ], [ 360325.916299998760223, 255817.235399998724461 ], [ 360326.742399998009205, 255814.920200001448393 ], [ 360331.637800000607967, 255808.205200001597404 ], [ 360334.927799999713898, 255800.632800001651049 ], [ 360345.573499999940395, 255781.510400000959635 ], [ 360347.238200001418591, 255775.402300000190735 ], [ 360346.496699996292591, 255767.796900000423193 ], [ 360335.229900002479553, 255765.171500001102686 ], [ 360323.943300001323223, 255764.868099998682737 ], [ 360312.629699997603893, 255767.730799999088049 ], [ 360305.335199996829033, 255772.103999998420477 ], [ 360283.492799997329712, 255780.368999999016523 ], [ 360256.029600001871586, 255785.843800000846386 ], [ 360250.439400002360344, 255779.465199999511242 ], [ 360229.673100002110004, 255756.074999999254942 ], [ 360127.324299998581409, 255843.685499999672174 ], [ 360185.348200000822544, 255847.749000001698732 ], [ 360232.144900001585484, 255844.543400000780821 ], [ 360234.565600000321865, 255844.352099999785423 ], [ 360242.784100003540516, 255920.835200000554323 ], [ 360260.177699998021126, 255961.507599998265505 ], [ 360261.865500003099442, 255954.120200000703335 ], [ 360268.553700000047684, 255924.845800001174212 ], [ 360273.515699997544289, 255910.320999998599291 ], [ 360275.148100003600121, 255908.012299999594688 ], [ 360279.273199997842312, 255897.069200001657009 ], [ 360284.994699999690056, 255888.039000000804663 ], [ 360285.838699996471405, 255883.613000001758337 ], [ 360291.545900002121925, 255876.27140000090003 ], [ 360291.603399999439716, 255869.5168999992311 ], [ 360303.076999999582767, 255847.868099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105404210900", "MAP": "D9-4351-T88", "PARCEL_NAM": "A-1-17", "ACRE": "0.77", "LONGITUDE": -64.91619493, "LATITUDE": 18.33257399, "OBJECTID_1": 19635, "PARCEL_NO_": "105404210900", "Tax_Legal_": "EST.THOMAS A-1-17 6K NEW QTR.", "Name": "TURNER, RONALD R. & J. RUSSELL GIBSON,III", "Address": "2123 9th St", "City": "Tuscaloosa", "State": "Alabama", "Zip": 35401, "Country": "United States", "Land_Value": 133000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.02690126300001, "SHAPE_Area": 3452.7445569299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360401.766099996864796, 255905.882199998944998 ], [ 360320.476000003516674, 255887.907200001180172 ], [ 360323.616700001060963, 255897.854299999773502 ], [ 360333.171999998390675, 255912.075800001621246 ], [ 360337.124499998986721, 255921.396299999207258 ], [ 360340.27419999986887, 255930.287999998778105 ], [ 360343.362800002098083, 255946.3564000017941 ], [ 360348.116099998354912, 255956.316700000315905 ], [ 360412.014399997889996, 255933.408300001174212 ], [ 360401.766099996864796, 255905.882199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105503100100", "MAP": null, "PARCEL_NAM": "A-2", "ACRE": null, "LONGITUDE": -64.91562079000001, "LATITUDE": 18.33231308, "OBJECTID_1": 20374, "PARCEL_NO_": "105503100100", "Tax_Legal_": "A-1-A&A-2 EST. THOMAS 6K NEW QTR.", "Name": "KAZI, ZUBAIR & KATHIJA", "Address": "PO Box 11239", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014239, "Country": "United States", "Land_Value": 264600, "Improved_V": 877000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.643658257, "SHAPE_Area": 3312.1524069000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360458.495700001716614, 255872.571600001305342 ], [ 360435.285300001502037, 255852.116599999368191 ], [ 360428.037399999797344, 255851.001800000667572 ], [ 360419.1554000005126, 255852.406800001859665 ], [ 360404.449400000274181, 255874.873399998992682 ], [ 360401.766099996864796, 255905.882199998944998 ], [ 360412.014399997889996, 255933.408300001174212 ], [ 360431.304799996316433, 255940.743299998342991 ], [ 360458.495700001716614, 255872.571600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404182100", "MAP": ".85", "PARCEL_NAM": "14A REM", "ACRE": "0.70", "LONGITUDE": -64.91942512, "LATITUDE": 18.33207177, "OBJECTID_1": 19596, "PARCEL_NO_": "105404182100", "Tax_Legal_": "14A EST. THOMAS 6H NEW QTR.", "Name": "INSURANCE UNLIMITED INC", "Address": "PO Box 9109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 588100, "Improved_V": 1045400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.25236170900001, "SHAPE_Area": 2909.8062200999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360045.699799999594688, 255826.790699999779463 ], [ 359995.490099996328354, 255844.969500001519918 ], [ 359995.848600000143051, 255848.097800001502037 ], [ 359996.262599997222424, 255852.583500001579523 ], [ 360000.193300001323223, 255895.165800001472235 ], [ 360011.573399998247623, 255888.724300000816584 ], [ 360014.876400001347065, 255895.633600000292063 ], [ 360029.386399999260902, 255886.791400000452995 ], [ 360045.083800002932549, 255885.675400000065565 ], [ 360056.012699998915195, 255884.898400001227856 ], [ 360046.00900000333786, 255828.665600001811981 ], [ 360045.699799999594688, 255826.790699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404181300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91902402, "LATITUDE": 18.33204341, "OBJECTID_1": 19588, "PARCEL_NO_": "105404181300", "Tax_Legal_": "THOMAS 6C-1 6C NEW QTR.", "Name": "MCCS LLC", "Address": "PO Box 9608", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 514600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.04516831500001, "SHAPE_Area": 2097.8041165599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360056.012699998915195, 255884.898400001227856 ], [ 360059.106700003147125, 255900.333500001579523 ], [ 360098.086599998176098, 255868.144099999219179 ], [ 360101.335199996829033, 255865.426500000059605 ], [ 360078.911300003528595, 255847.300000000745058 ], [ 360048.532200001180172, 255816.442800000309944 ], [ 360043.708700001239777, 255814.714600000530481 ], [ 360046.00900000333786, 255828.665600001811981 ], [ 360056.012699998915195, 255884.898400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105503100100", "MAP": "D9-4351-T88", "PARCEL_NAM": "A-1-A", "ACRE": null, "LONGITUDE": -64.91577874, "LATITUDE": 18.33194282, "OBJECTID_1": 20374, "PARCEL_NO_": "105503100100", "Tax_Legal_": "A-1-A&A-2 EST. THOMAS 6K NEW QTR.", "Name": "KAZI, ZUBAIR & KATHIJA", "Address": "PO Box 11239", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014239, "Country": "United States", "Land_Value": 264600, "Improved_V": 877000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.859710421, "SHAPE_Area": 492.40859712399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360422.439999997615814, 255845.467599999159575 ], [ 360399.958599999547005, 255834.095600001513958 ], [ 360404.449400000274181, 255874.873399998992682 ], [ 360419.1554000005126, 255852.406800001859665 ], [ 360428.037399999797344, 255851.001800000667572 ], [ 360435.285300001502037, 255852.116599999368191 ], [ 360422.439999997615814, 255845.467599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91524302000001, "LATITUDE": 18.3315895, "OBJECTID_1": 33102, "PARCEL_NO_": "107401040800", "Tax_Legal_": "THOMAS ESTATE A-1-11 6K NEW QTR.", "Name": "HUBBELL, CLIFF", "Address": "PO Box 1264", "City": "Poway", "State": "California", "Zip": 92074, "Country": "United States", "Land_Value": 111400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.86573644200001, "SHAPE_Area": 4670.406791 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360500.769199997186661, 255832.387600000947714 ], [ 360486.069600000977516, 255759.440000001341105 ], [ 360456.192900002002716, 255764.261700000613928 ], [ 360437.300200000405312, 255810.017400000244379 ], [ 360437.255699999630451, 255810.125100001692772 ], [ 360438.746100001037121, 255824.491700001060963 ], [ 360440.344300001859665, 255826.193500000983477 ], [ 360443.499399997293949, 255834.451999999582767 ], [ 360445.82490000128746, 255845.447900000959635 ], [ 360444.169100001454353, 255850.500599998980761 ], [ 360441.733999997377396, 255852.380499999970198 ], [ 360439.309600003063679, 255852.993900001049042 ], [ 360435.285300001502037, 255852.116599999368191 ], [ 360458.495700001716614, 255872.571600001305342 ], [ 360462.620800003409386, 255861.628499999642372 ], [ 360500.769199997186661, 255832.387600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107302011000", "MAP": "A9-836-T018", "PARCEL_NAM": "6C", "ACRE": "13.06", "LONGITUDE": -64.91855305, "LATITUDE": 18.33080164, "OBJECTID_1": 24774, "PARCEL_NO_": "107302011000", "Tax_Legal_": "THOMAS 1 6C NEW QTR", "Name": "LAGO COMPANY", "Address": "1020 Park Ave", "City": "New York", "State": "New York", "Zip": 10028, "Country": "United States", "Land_Value": 2450000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 959.22834834399998, "SHAPE_Area": 46708.744719900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359978.887599997222424, 255661.985599998384714 ], [ 359950.45269999653101, 255686.872999999672174 ], [ 359939.079800002276897, 255696.701299998909235 ], [ 359942.294200003147125, 255697.994199998676777 ], [ 359947.920400001108646, 255700.151200000196695 ], [ 359989.697599999606609, 255718.225000001490116 ], [ 360006.412600003182888, 255743.904100000858307 ], [ 360039.833599999547005, 255796.317699998617172 ], [ 360042.160800002515316, 255807.102600000798702 ], [ 360048.605899997055531, 255807.788600001484156 ], [ 360054.2212999984622, 255811.212000001221895 ], [ 360080.597699999809265, 255838.659000001847744 ], [ 360107.827100001275539, 255860.624499998986721 ], [ 360127.324299998581409, 255843.685499999672174 ], [ 360229.673100002110004, 255756.074999999254942 ], [ 360250.439400002360344, 255779.465199999511242 ], [ 360309.753300003707409, 255726.755100000649691 ], [ 360315.440700002014637, 255721.735399998724461 ], [ 360266.539700001478195, 255687.982400000095367 ], [ 360181.331399999558926, 255656.676399998366833 ], [ 360043.068199999630451, 255605.937800001353025 ], [ 360041.444799996912479, 255607.191100001335144 ], [ 360006.50900000333786, 255637.935899998992682 ], [ 359978.887599997222424, 255661.985599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105404211000", "MAP": "D9-4348-T88", "PARCEL_NAM": "A-1-28", "ACRE": ".75", "LONGITUDE": -64.91611622000001, "LATITUDE": 18.33146697, "OBJECTID_1": 19636, "PARCEL_NO_": "105404211000", "Tax_Legal_": "THOMAS A-1-28,A-1-29,A-1-30 6K NEW QTR.", "Name": "MOHANANI, SUNIL R. & RONITA S.", "Address": "2329 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 373900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.32994654499998, "SHAPE_Area": 3792.1324954199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360316.795100003480911, 255846.713899999856949 ], [ 360324.92119999974966, 255839.392099998891354 ], [ 360341.947200000286102, 255828.55460000038147 ], [ 360352.477799996733665, 255822.941199999302626 ], [ 360362.997699998319149, 255818.594399999827147 ], [ 360383.200400002300739, 255813.482400000095367 ], [ 360409.016800001263618, 255812.004900000989437 ], [ 360417.083499997854233, 255811.648800000548363 ], [ 360422.74210000038147, 255810.006299998611212 ], [ 360429.226800002157688, 255806.048700001090765 ], [ 360434.120399996638298, 255799.544799998402596 ], [ 360422.921899996697903, 255788.898499999195337 ], [ 360409.273999996483326, 255781.820700000971556 ], [ 360402.852200001478195, 255778.390599999576807 ], [ 360396.410700000822544, 255777.282400000840425 ], [ 360380.374399997293949, 255766.596500001847744 ], [ 360365.876900002360344, 255764.578000001609325 ], [ 360353.7787000015378, 255764.901200000196695 ], [ 360354.541799999773502, 255769.973700001835823 ], [ 360351.181699998676777, 255785.778200000524521 ], [ 360348.73759999871254, 255788.713500000536442 ], [ 360328.270499996840954, 255824.854100000113249 ], [ 360317.678700000047684, 255837.644099999219179 ], [ 360314.401299998164177, 255843.739000000059605 ], [ 360314.383400000631809, 255845.849800001829863 ], [ 360316.795100003480911, 255846.713899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105404180300", "MAP": "F9-1840-T66", "PARCEL_NAM": "11", "ACRE": null, "LONGITUDE": -64.91950504, "LATITUDE": 18.33168154, "OBJECTID_1": 19580, "PARCEL_NO_": "105404180300", "Tax_Legal_": "11&12 EST THOMAS NEW QTR", "Name": "LAGA CO", "Address": "1020 Park Ave", "City": "New York", "State": "New York", "Zip": 10028, "Country": "United States", "Land_Value": 19000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.254173377, "SHAPE_Area": 353.970595575 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360041.929200001060963, 255806.029199998825788 ], [ 359989.19820000231266, 255826.913800001144409 ], [ 359989.572499997913837, 255827.57039999961853 ], [ 359992.280799999833107, 255832.269200000911951 ], [ 360043.276600003242493, 255812.589699998497963 ], [ 360042.160800002515316, 255807.102600000798702 ], [ 360041.929200001060963, 255806.029199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91481996, "LATITUDE": 18.33136133, "OBJECTID_1": 33101, "PARCEL_NO_": "107401040700", "Tax_Legal_": "THOMAS A-1-9 6K NEW QTR.", "Name": "PRAKASH BIMLA TRUST", "Address": "9001 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.901890818, "SHAPE_Area": 2809.4438821600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360499.909999996423721, 255743.932399999350309 ], [ 360486.069600000977516, 255759.440000001341105 ], [ 360500.769199997186661, 255832.387600000947714 ], [ 360549.471600003540516, 255794.78940000012517 ], [ 360529.53320000320673, 255768.872800000011921 ], [ 360525.490800000727177, 255770.106199998408556 ], [ 360519.864600002765656, 255767.949200000613928 ], [ 360499.909999996423721, 255743.932399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302010900", "MAP": "D9-9220-T017", "PARCEL_NAM": "18 REM", "ACRE": "1.35", "LONGITUDE": -64.91977315, "LATITUDE": 18.33134055, "OBJECTID_1": 24773, "PARCEL_NO_": "107302010900", "Tax_Legal_": "18 REM & 19-1 & 19-2 ESTATE THOMAS NO. 6H NEW QUARTER", "Name": "CARIBBEAN OFF THE GRID PLAZA, LLC", "Address": "9718 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022672, "Country": "United States", "Land_Value": 936000, "Improved_V": 2169400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.41608679299998, "SHAPE_Area": 5105.0328665099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359975.371100001037121, 255746.46510000154376 ], [ 359970.465800002217293, 255755.049400001764297 ], [ 359958.343199998140335, 255747.870000001043081 ], [ 359952.665299996733665, 255748.33839999884367 ], [ 359935.540700003504753, 255783.465700000524521 ], [ 359935.279200002551079, 255783.884100001305342 ], [ 359955.984300002455711, 255794.787099998444319 ], [ 359973.629699997603893, 255805.908399999141693 ], [ 359984.010999999940395, 255817.814599998295307 ], [ 359987.852700002491474, 255824.553599998354912 ], [ 360001.5912000015378, 255818.829300001263618 ], [ 360012.646499998867512, 255814.2347999997437 ], [ 360040.912900000810623, 255801.319400001317263 ], [ 360039.833599999547005, 255796.317699998617172 ], [ 360006.412600003182888, 255743.904100000858307 ], [ 359975.371100001037121, 255746.46510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91563976, "LATITUDE": 18.33112472, "OBJECTID_1": 33105, "PARCEL_NO_": "107401041100", "Tax_Legal_": "THOMAS ESTATE A-1-14 NEW QTR.", "Name": "PRAKASH BIMLA TRUST", "Address": "9001 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.76300749000001, "SHAPE_Area": 2252.1018307 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360439.609200000762939, 255723.173799999058247 ], [ 360394.97070000320673, 255757.005699999630451 ], [ 360409.273999996483326, 255781.820700000971556 ], [ 360422.921899996697903, 255788.898499999195337 ], [ 360434.120399996638298, 255799.544799998402596 ], [ 360447.310900002717972, 255765.666700001806021 ], [ 360447.359499998390675, 255759.967599999159575 ], [ 360448.257500000298023, 255749.209100000560284 ], [ 360439.609200000762939, 255723.173799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105404211000", "MAP": "D9-4348-T88", "PARCEL_NAM": "A-1-30", "ACRE": ".76", "LONGITUDE": -64.91693051, "LATITUDE": 18.33113147, "OBJECTID_1": 19636, "PARCEL_NO_": "105404211000", "Tax_Legal_": "THOMAS A-1-28,A-1-29,A-1-30 6K NEW QTR.", "Name": "MOHANANI, SUNIL R. & RONITA S.", "Address": "2329 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 373900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.38774865799999, "SHAPE_Area": 1721.3073152899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360320.797200001776218, 255755.554200001060963 ], [ 360309.753300003707409, 255726.755100000649691 ], [ 360250.439400002360344, 255779.465199999511242 ], [ 360256.029600001871586, 255785.843800000846386 ], [ 360283.492799997329712, 255780.368999999016523 ], [ 360305.335199996829033, 255772.103999998420477 ], [ 360302.966600000858307, 255766.1739999987185 ], [ 360314.307099997997284, 255760.145100001245737 ], [ 360314.337700001895428, 255756.556800000369549 ], [ 360320.797200001776218, 255755.554200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302010500", "MAP": "D9-277-T61", "PARCEL_NAM": "18D", "ACRE": null, "LONGITUDE": -64.92159597, "LATITUDE": 18.33125258, "OBJECTID_1": 24769, "PARCEL_NO_": "107302010500", "Tax_Legal_": "18D HAVENSIGHT NO. 6 FRENCHMAN'S BAY QTR", "Name": "CAMPISANO, KATHLEEN L. & ARTILIO F.", "Address": "4603 Windbrook Dr", "City": "Murrysville", "State": "Pennsylvania", "Zip": 15668, "Country": "United States", "Land_Value": 205800, "Improved_V": 171400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.865053188399997, "SHAPE_Area": 462.28282274499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359793.425700001418591, 255756.304200001060963 ], [ 359780.359200000762939, 255775.617800001055002 ], [ 359784.369199998676777, 255778.183800000697374 ], [ 359791.60980000346899, 255780.142900001257658 ], [ 359806.936999998986721, 255779.423900000751019 ], [ 359809.51410000026226, 255760.86879999935627 ], [ 359803.868199996650219, 255761.033700000494719 ], [ 359798.238399997353554, 255759.298900000751019 ], [ 359793.425700001418591, 255756.304200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302010600", "MAP": "D9-6128-T96", "PARCEL_NAM": "18A", "ACRE": ".10", "LONGITUDE": -64.92135949, "LATITUDE": 18.33121163, "OBJECTID_1": 24770, "PARCEL_NO_": "107302010600", "Tax_Legal_": "HAVENSIGHT 18A FRENCHMAN BAY QTR", "Name": "AMI TRADING(VI)LLLP", "Address": "187A Est. Hasvensight", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107800, "Improved_V": 317400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.310109961500004, "SHAPE_Area": 487.98402135700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359832.803700000047684, 255772.036299999803305 ], [ 359834.605099998414516, 255749.886199999600649 ], [ 359815.172700002789497, 255759.226399999111891 ], [ 359809.51410000026226, 255760.86879999935627 ], [ 359806.936999998986721, 255779.423900000751019 ], [ 359832.803700000047684, 255772.036299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302010800", "MAP": "D9-9220-T017", "PARCEL_NAM": "19 REM", "ACRE": "0.97", "LONGITUDE": -64.92026919, "LATITUDE": 18.33096061, "OBJECTID_1": 24772, "PARCEL_NO_": "107302010800", "Tax_Legal_": "19 REM, 18-1 & 18-2 ESTATE THOMAS NO.6H NEW QUARTER", "Name": "ST THOMAS LIQUOR COMPANY LTD", "Address": "6862 E Tawa St", "City": "Tucson", "State": "Arizona", "Zip": 85715, "Country": "United States", "Land_Value": 779175, "Improved_V": 2054200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.92411626299997, "SHAPE_Area": 3791.6099654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359952.665299996733665, 255748.33839999884367 ], [ 359954.114500001072884, 255745.365600001066923 ], [ 359958.343199998140335, 255747.870000001043081 ], [ 359975.371100001037121, 255746.46510000154376 ], [ 359983.800800003111362, 255731.713100001215935 ], [ 359977.609600000083447, 255728.379299998283386 ], [ 359983.959600001573563, 255715.837999999523163 ], [ 359983.949100002646446, 255715.738000001758337 ], [ 359947.920400001108646, 255700.151200000196695 ], [ 359879.674099996685982, 255760.176500000059605 ], [ 359887.729999996721745, 255761.086800001561642 ], [ 359900.591499999165535, 255765.836100000888109 ], [ 359927.88740000128746, 255779.991700001060963 ], [ 359945.892399996519089, 255748.897199999541044 ], [ 359952.665299996733665, 255748.33839999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105404211000", "MAP": "D9-4348-T88", "PARCEL_NAM": "A-2-29", "ACRE": ".77", "LONGITUDE": -64.91631569, "LATITUDE": 18.33101689, "OBJECTID_1": 19636, "PARCEL_NO_": "105404211000", "Tax_Legal_": "THOMAS A-1-28,A-1-29,A-1-30 6K NEW QTR.", "Name": "MOHANANI, SUNIL R. & RONITA S.", "Address": "2329 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 373900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.954601185, "SHAPE_Area": 2496.9399869899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360320.797200001776218, 255755.554200001060963 ], [ 360325.602700002491474, 255759.393199998885393 ], [ 360336.892800003290176, 255759.274500001221895 ], [ 360351.381300002336502, 255762.348400000482798 ], [ 360353.7787000015378, 255764.901200000196695 ], [ 360365.876900002360344, 255764.578000001609325 ], [ 360380.374399997293949, 255766.596500001847744 ], [ 360396.410700000822544, 255777.282400000840425 ], [ 360402.852200001478195, 255778.390599999576807 ], [ 360409.273999996483326, 255781.820700000971556 ], [ 360394.97070000320673, 255757.005699999630451 ], [ 360357.32940000295639, 255726.722300000488758 ], [ 360309.753300003707409, 255726.755100000649691 ], [ 360320.797200001776218, 255755.554200001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302010400", "MAP": null, "PARCEL_NAM": "18 REM", "ACRE": null, "LONGITUDE": -64.92172867, "LATITUDE": 18.33115903, "OBJECTID_1": 24768, "PARCEL_NO_": "107302010400", "Tax_Legal_": "18 HAVENSIGHT NO.6 FRENCHMAN'S BAY QTR", "Name": "SUNIL & RONIA MOHANANI & SHERWIN & JACQUELINE REY", "Address": "2329 Commandant Gadr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32700, "Improved_V": 295100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.347620870900002, "SHAPE_Area": 365.26434643699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359789.527199998497963, 255740.651299998164177 ], [ 359770.796800002455711, 255762.240699999034405 ], [ 359773.960900001227856, 255769.44370000064373 ], [ 359780.359200000762939, 255775.617800001055002 ], [ 359793.425700001418591, 255756.304200001060963 ], [ 359791.825599998235703, 255754.813400000333786 ], [ 359790.245399996638298, 255751.000799998641014 ], [ 359789.527199998497963, 255740.651299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302010700", "MAP": "D9-277-T61", "PARCEL_NAM": "17D", "ACRE": null, "LONGITUDE": -64.92116295, "LATITUDE": 18.33112349, "OBJECTID_1": 24771, "PARCEL_NO_": "107302010700", "Tax_Legal_": "HAVENSIGHT 17D & 20 FRENCHMAN BAY QTR", "Name": "CARIBBEAN PUBLICATIONS, INC.", "Address": "27 Abercorn St", "City": "Savannah", "State": "Georgia", "Zip": 31401, "Country": "United States", "Land_Value": 107800, "Improved_V": 28100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.794940232000002, "SHAPE_Area": 325.18073234799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359834.605099998414516, 255749.886199999600649 ], [ 359832.803700000047684, 255772.036299999803305 ], [ 359835.231600001454353, 255771.000700000673532 ], [ 359842.538800001144409, 255765.149900000542402 ], [ 359847.430600002408028, 255758.857099998742342 ], [ 359852.306199997663498, 255754.464000001549721 ], [ 359854.757500000298023, 255750.684399999678135 ], [ 359853.979999996721745, 255747.300599999725819 ], [ 359850.774499997496605, 255744.952300000935793 ], [ 359847.549300000071526, 255744.925900001078844 ], [ 359841.077200002968311, 255747.406100001186132 ], [ 359834.605099998414516, 255749.886199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302011600", "MAP": "D9-277-T61", "PARCEL_NAM": "17C", "ACRE": null, "LONGITUDE": -64.92106576, "LATITUDE": 18.33084901, "OBJECTID_1": 24780, "PARCEL_NO_": "107302011600", "Tax_Legal_": "HAVENSIGHT 17 C FRENCHMAN BAY QTR", "Name": "RIVERA, SANDRA & LUZ", "Address": "PO Box 9009", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23100, "Improved_V": 73500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.692867526, "SHAPE_Area": 850.94932684399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359862.287799999117851, 255743.780000001192093 ], [ 359868.822700001299381, 255708.791900001466274 ], [ 359849.471199996769428, 255708.633499998599291 ], [ 359842.988300003111362, 255712.380199998617172 ], [ 359835.454599998891354, 255744.826900001615286 ], [ 359845.160899996757507, 255741.317800000309944 ], [ 359851.615000002086163, 255740.948399998247623 ], [ 359858.862800002098083, 255742.063200000673532 ], [ 359862.287799999117851, 255743.780000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302010300", "MAP": "F9-1470-T64", "PARCEL_NAM": "26", "ACRE": "0.57", "LONGITUDE": -64.92176194, "LATITUDE": 18.33082931, "OBJECTID_1": 24767, "PARCEL_NO_": "107302010300", "Tax_Legal_": "HAVENSIGHT 26 6 FRENCHMAN BAY", "Name": "BARBEL, ANNA E. WILLIAMSON", "Address": "PO Box 384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65400, "Improved_V": 340400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.047244949, "SHAPE_Area": 2108.0203012500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359808.259400002658367, 255718.850900001823902 ], [ 359789.136200003325939, 255691.885499998927116 ], [ 359785.08669999986887, 255693.963300000876188 ], [ 359777.881999999284744, 255687.782600000500679 ], [ 359752.535700000822544, 255728.738400001078844 ], [ 359759.702600002288818, 255739.351799998432398 ], [ 359762.069399997591972, 255745.492800001055002 ], [ 359766.050599999725819, 255751.436099998652935 ], [ 359770.796800002455711, 255762.240699999034405 ], [ 359789.527199998497963, 255740.651299998164177 ], [ 359793.609099999070168, 255734.774099998176098 ], [ 359798.482900001108646, 255730.592099998146296 ], [ 359808.259400002658367, 255718.850900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105404182200", "MAP": "D9-2708-T84", "PARCEL_NAM": "20", "ACRE": "0.06", "LONGITUDE": -64.92057353, "LATITUDE": 18.33087217, "OBJECTID_1": 19597, "PARCEL_NO_": "105404182200", "Tax_Legal_": "20 EST THOMAS 6H NEW QTR.", "Name": "LAZARE, PAUL & FAMILY TRUST", "Address": "277 Madison Ave", "City": "New York", "State": "New York", "Zip": 10016, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.87247603500001, "SHAPE_Area": 291.30929007200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359939.079800002276897, 255696.701299998909235 ], [ 359902.520599998533726, 255728.699400000274181 ], [ 359864.332599997520447, 255762.583999998867512 ], [ 359870.801100000739098, 255760.526000000536442 ], [ 359942.294200003147125, 255697.994199998676777 ], [ 359939.079800002276897, 255696.701299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107302011200", "MAP": "D9-2708-T84", "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.92052543, "LATITUDE": 18.33088229, "OBJECTID_1": 24776, "PARCEL_NO_": "107302011200", "Tax_Legal_": "HAVENSIGHT 23&21A FRENCHMAN BAY QTR", "Name": "PENN, ROMNEY A. & CECELIA", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 164300, "Improved_V": 280100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.77472265599999, "SHAPE_Area": 507.38971731399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359942.294200003147125, 255697.994199998676777 ], [ 359870.801100000739098, 255760.526000000536442 ], [ 359879.674099996685982, 255760.176500000059605 ], [ 359947.920400001108646, 255700.151200000196695 ], [ 359942.294200003147125, 255697.994199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91530316, "LATITUDE": 18.33076889, "OBJECTID_1": 33100, "PARCEL_NO_": "107401040600", "Tax_Legal_": "THOMAS ESTATE A-1-10 6K NEW QTR.", "Name": "PRAKASH BIMLA TRUST", "Address": "9001 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.18934767799999, "SHAPE_Area": 2954.03195551 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360456.192900002002716, 255764.261700000613928 ], [ 360486.069600000977516, 255759.440000001341105 ], [ 360499.909999996423721, 255743.932399999350309 ], [ 360485.547399997711182, 255726.082899998873472 ], [ 360481.571599997580051, 255719.506499998271465 ], [ 360473.652400001883507, 255702.554200001060963 ], [ 360467.259400002658367, 255695.746899999678135 ], [ 360425.505599997937679, 255674.929099999368191 ], [ 360413.427100002765656, 255672.930399999022484 ], [ 360413.405500002205372, 255675.463300000876188 ], [ 360436.583599999547005, 255699.717700000852346 ], [ 360443.723499998450279, 255713.49720000103116 ], [ 360445.318099997937679, 255715.621199999004602 ], [ 360456.311599999666214, 255750.33049999922514 ], [ 360456.192900002002716, 255764.261700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302011700", "MAP": null, "PARCEL_NAM": "18B", "ACRE": null, "LONGITUDE": -64.92137043, "LATITUDE": 18.3309611, "OBJECTID_1": 24781, "PARCEL_NO_": "107302011700", "Tax_Legal_": "18B HAVENSIGHT FRENCHMAN'S BAY QTR", "Name": "CAMPISANO, KATHLEEN L. & ARTILIO F.", "Address": "4603 Windbrook Dr", "City": "Murrysville", "State": "Pennsylvania", "Zip": 15668, "Country": "United States", "Land_Value": 32500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.77348672700001, "SHAPE_Area": 1023.28626074 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359835.454599998891354, 255744.826900001615286 ], [ 359842.988300003111362, 255712.380199998617172 ], [ 359817.062299996614456, 255726.733399998396635 ], [ 359800.822700001299381, 255739.899399999529123 ], [ 359798.375, 255743.256900001317263 ], [ 359796.740800000727177, 255745.776599999517202 ], [ 359795.898500002920628, 255749.991599999368191 ], [ 359798.285099998116493, 255753.8108000010252 ], [ 359805.523900002241135, 255755.980999998748302 ], [ 359816.016800001263618, 255754.800299998372793 ], [ 359835.454599998891354, 255744.826900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401040400", "MAP": "D9-3854-T87", "PARCEL_NAM": "A-1-7", "ACRE": null, "LONGITUDE": -64.91492219, "LATITUDE": 18.33060557, "OBJECTID_1": 33098, "PARCEL_NO_": "107401040400", "Tax_Legal_": "THOMAS A-1-7 NEW QTR.", "Name": "PRAKASH BIMLA TRUST", "Address": "9001 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 134200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.35340985600001, "SHAPE_Area": 2913.8659731500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360469.928300000727177, 255666.426699999719858 ], [ 360470.543999999761581, 255688.807700000703335 ], [ 360476.945900000631809, 255694.559599999338388 ], [ 360480.930699996650219, 255700.080699998885393 ], [ 360488.850000001490116, 255717.032999999821186 ], [ 360500.80799999833107, 255733.173900000751019 ], [ 360523.165399998426437, 255759.110300000756979 ], [ 360526.396099999547005, 255758.503499999642372 ], [ 360526.431999996304512, 255754.281899999827147 ], [ 360528.156099997460842, 255741.208200000226498 ], [ 360527.432499997317791, 255731.491999998688698 ], [ 360525.863099999725819, 255726.412900000810623 ], [ 360523.478299997746944, 255722.382599998265505 ], [ 360520.395099997520447, 255705.681000001728535 ], [ 360519.743400000035763, 255687.521600000560284 ], [ 360522.270300000905991, 255674.8766999989748 ], [ 360469.928300000727177, 255666.426699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401041000", "MAP": "D9-4061-T87", "PARCEL_NAM": "A-1-13", "ACRE": ".75", "LONGITUDE": -64.91587403, "LATITUDE": 18.3307813, "OBJECTID_1": 33104, "PARCEL_NO_": "107401041000", "Tax_Legal_": "THOMAS ESTATE A-1-13 6K NEW QTR.", "Name": "PRAKASH BIMLA TRUST", "Address": "9001 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.64678338900001, "SHAPE_Area": 2894.2907867899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360414.913800001144409, 255687.719099998474121 ], [ 360357.32940000295639, 255726.722300000488758 ], [ 360394.97070000320673, 255757.005699999630451 ], [ 360439.609200000762939, 255723.173799999058247 ], [ 360437.251400001347065, 255715.977400001138449 ], [ 360429.298000000417233, 255703.035599999129772 ], [ 360414.913800001144409, 255687.719099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302011500", "MAP": "D9-5517-T93", "PARCEL_NAM": "18C REM", "ACRE": ".131", "LONGITUDE": -64.92131452, "LATITUDE": 18.3307111, "OBJECTID_1": 24779, "PARCEL_NO_": "107302011500", "Tax_Legal_": "HAVENSIGHT 18C & 17B-1 FRENCHMAN BAY QTR", "Name": "FRETT, ETIEN O.,SR. & NIDIA OCANA-FRETT (TRUSTEES)", "Address": "PO Box 11824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19000, "Improved_V": 272200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.01344313499999, "SHAPE_Area": 585.20755344899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359838.743900001049042, 255711.441399998962879 ], [ 359843.577299997210503, 255701.604899998754263 ], [ 359844.838299997150898, 255684.530999999493361 ], [ 359839.977099999785423, 255687.235399998724461 ], [ 359835.103200003504753, 255691.417399998754263 ], [ 359822.862899996340275, 255708.415800001472235 ], [ 359820.427799999713898, 255710.295699998736382 ], [ 359809.836000002920628, 255723.085700001567602 ], [ 359799.265799999237061, 255733.342799998819828 ], [ 359792.732600003480911, 255742.999600000679493 ], [ 359795.149800002574921, 255743.230500001460314 ], [ 359798.410999998450279, 255739.035300001502037 ], [ 359817.906300000846386, 255722.307399999350309 ], [ 359838.743900001049042, 255711.441399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302010200", "MAP": "F9-1470-T64", "PARCEL_NAM": "27", "ACRE": "0.46", "LONGITUDE": -64.92203251, "LATITUDE": 18.33054955, "OBJECTID_1": 24766, "PARCEL_NO_": "107302010200", "Tax_Legal_": "HAVENSIGHT 27 FRENCHMAN BAY QTR", "Name": "WHEATLEY, RUBEN B. , TRUSTEE", "Address": "PO Box 546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 62500, "Improved_V": 302600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.701517276, "SHAPE_Area": 1835.94161394 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359744.273999996483326, 255657.321199998259544 ], [ 359726.25280000269413, 255690.315400000661612 ], [ 359752.535700000822544, 255728.738400001078844 ], [ 359777.881999999284744, 255687.782600000500679 ], [ 359765.869999997317791, 255677.973999999463558 ], [ 359744.273999996483326, 255657.321199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012200", "MAP": "D9-6036-T96", "PARCEL_NAM": "1A", "ACRE": null, "LONGITUDE": -64.9204281, "LATITUDE": 18.33056854, "OBJECTID_1": 24785, "PARCEL_NO_": "107302012200", "Tax_Legal_": "HAVENSIGHT 1 FRENCHMAN BAY QTR", "Name": "MACHOVER, FRANK & CHANTAL", "Address": "PO Box 41", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 193200, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.342422648, "SHAPE_Area": 1272.5561885899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359950.45269999653101, 255686.872999999672174 ], [ 359929.556900002062321, 255678.680399999022484 ], [ 359908.662900000810623, 255670.276799999177456 ], [ 359905.169699996709824, 255701.701099999248981 ], [ 359903.411399997770786, 255718.785300001502037 ], [ 359903.384400002658367, 255721.951499998569489 ], [ 359902.520599998533726, 255728.699400000274181 ], [ 359939.079800002276897, 255696.701299998909235 ], [ 359950.45269999653101, 255686.872999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107302015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92435473, "LATITUDE": 18.33059644, "OBJECTID_1": 24817, "PARCEL_NO_": "107302015100", "Tax_Legal_": "LIVERPOOL /THOMAS #6A FRENCHMAN BAY", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.845370704, "SHAPE_Area": 1005.41383992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359542.505300000309944, 255678.045699998736382 ], [ 359499.754600003361702, 255679.59569999948144 ], [ 359495.597099997103214, 255694.338199999183416 ], [ 359493.968299999833107, 255696.224700000137091 ], [ 359493.927000001072884, 255701.079500000923872 ], [ 359481.862800002098083, 255697.392200000584126 ], [ 359481.828699998557568, 255701.402699999511242 ], [ 359480.198100000619888, 255703.500300001353025 ], [ 359477.780900001525879, 255703.269400000572205 ], [ 359477.761200003325939, 255705.591299999505281 ], [ 359479.366599999368191, 255706.448800001293421 ], [ 359479.3378000035882, 255709.8260000012815 ], [ 359481.753200002014637, 255710.26799999922514 ], [ 359483.338799998164177, 255713.447399999946356 ], [ 359482.458800002932549, 255722.094999998807907 ], [ 359542.505300000309944, 255678.045699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401040900", "MAP": "D9-4061-T87", "PARCEL_NAM": "A-1-12", "ACRE": ".75", "LONGITUDE": -64.91619257000001, "LATITUDE": 18.33055995, "OBJECTID_1": 33103, "PARCEL_NO_": "107401040900", "Tax_Legal_": "THOMAS ESTATE A-1-12 6K NEW QTR.", "Name": "PRAKASH BIMLA TRUST", "Address": "9001 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.70388642500001, "SHAPE_Area": 2991.9896962500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360407.822400003671646, 255668.24040000140667 ], [ 360382.864500001072884, 255663.603199999779463 ], [ 360324.3766999989748, 255713.998100001364946 ], [ 360315.440700002014637, 255721.735399998724461 ], [ 360309.753300003707409, 255726.755100000649691 ], [ 360357.32940000295639, 255726.722300000488758 ], [ 360414.913800001144409, 255687.719099998474121 ], [ 360406.127099998295307, 255677.936900001019239 ], [ 360405.360299997031689, 255673.286499999463558 ], [ 360406.191799998283386, 255670.337999999523163 ], [ 360407.822400003671646, 255668.24040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302011400", "MAP": null, "PARCEL_NAM": "25", "ACRE": "0.44", "LONGITUDE": -64.92138892, "LATITUDE": 18.33042337, "OBJECTID_1": 24778, "PARCEL_NO_": "107302011400", "Tax_Legal_": "25 HAVENSIGHT 6 NO. FRENCHMAN'S BAY QTR", "Name": "NORMAN, RICKIE & LISA W.", "Address": "PO Box 7458", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 65000, "Improved_V": 284700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.84500981900001, "SHAPE_Area": 2405.4562090700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359844.86710000038147, 255681.1537000015378 ], [ 359845.696800000965595, 255678.416299998760223 ], [ 359846.670299999415874, 255658.792500000447035 ], [ 359824.260799996554852, 255638.977400001138449 ], [ 359789.161399997770786, 255688.930399999022484 ], [ 359789.136200003325939, 255691.885499998927116 ], [ 359808.259400002658367, 255718.850900001823902 ], [ 359810.705300003290176, 255715.704500000923872 ], [ 359822.088899999856949, 255704.609700001776218 ], [ 359826.165500000119209, 255699.365800000727177 ], [ 359826.989799998700619, 255697.261599998921156 ], [ 359830.261799998581409, 255691.799899999052286 ], [ 359837.576099999248981, 255685.104800000786781 ], [ 359844.86710000038147, 255681.1537000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014400", "MAP": "F9-2463-T69", "PARCEL_NAM": "15BA", "ACRE": null, "LONGITUDE": -64.92073168, "LATITUDE": 18.33065841, "OBJECTID_1": 24811, "PARCEL_NO_": "107302014400", "Tax_Legal_": "HAVENSIGHT 15BA&CA FRENCHMAN BAY QTR", "Name": "MACHOVER, FRANK L. & CHANTEL G", "Address": "PO Box 41", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22200, "Improved_V": 249800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.888479309, "SHAPE_Area": 500.83515575799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359905.169699996709824, 255701.701099999248981 ], [ 359871.372900001704693, 255693.403000000864267 ], [ 359869.652400001883507, 255706.054499998688698 ], [ 359886.541799999773502, 255711.25899999961257 ], [ 359903.411399997770786, 255718.785300001502037 ], [ 359905.169699996709824, 255701.701099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302016500", "MAP": "D9-5764-T94", "PARCEL_NAM": "1A-6", "ACRE": ".50", "LONGITUDE": -64.91686799, "LATITUDE": 18.33047697, "OBJECTID_1": 24829, "PARCEL_NO_": "107302016500", "Tax_Legal_": "THOMAS 1A-5A & 1A-6 6C NEW QUARTER", "Name": "SILVEIRA, BRAD & KIM", "Address": "11261 La Vereda Dr", "City": "Santa Ana", "State": "California", "Zip": 92705, "Country": "United States", "Land_Value": 118500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.93015844600001, "SHAPE_Area": 2318.6500606599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360328.250699996948242, 255687.300900001078844 ], [ 360306.209100000560284, 255669.51969999819994 ], [ 360301.367600001394749, 255669.902300000190735 ], [ 360266.782499998807907, 255659.486699998378754 ], [ 360261.95719999819994, 255657.9695999994874 ], [ 360266.539700001478195, 255687.982400000095367 ], [ 360315.440700002014637, 255721.735399998724461 ], [ 360324.3766999989748, 255713.998100001364946 ], [ 360328.250699996948242, 255687.300900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105404182000", "MAP": "D9-4350-T88", "PARCEL_NAM": "A-1-3", "ACRE": "0.52", "LONGITUDE": -64.9136045, "LATITUDE": 18.33029047, "OBJECTID_1": 19595, "PARCEL_NO_": "105404182000", "Tax_Legal_": "THOMAS A-1 6K NEW QTR.", "Name": "TRAMWAY PROPERTIES, INC.", "Address": "713 Indian Hills Dr", "City": "Tuscaloosa", "State": "Alabama", "Zip": 35406, "Country": "United States", "Land_Value": 1500000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.21960630799998, "SHAPE_Area": 3603.28999535 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360682.152099996805191, 255648.954199999570847 ], [ 360615.298299998044968, 255640.174300000071526 ], [ 360607.244199998676777, 255639.052999999374151 ], [ 360611.081500001251698, 255661.882500000298023 ], [ 360617.242499999701977, 255695.918999999761581 ], [ 360618.032600000500679, 255697.825300000607967 ], [ 360625.097000002861023, 255720.470100000500679 ], [ 360695.844999998807907, 255650.754999998956919 ], [ 360682.152099996805191, 255648.954199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91634455000001, "LATITUDE": 18.33025544, "OBJECTID_1": 24804, "PARCEL_NO_": "107302013700", "Tax_Legal_": "1B ESTATE THOMAS 6C NEW QTR.", "Name": "ALWANI, DEVI & PITAMBER", "Address": "5120 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 123300, "Improved_V": 724800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.42831449299999, "SHAPE_Area": 2659.0630940800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360347.665500000119209, 255630.595600001513958 ], [ 360333.787299998104572, 255650.535900000482798 ], [ 360331.229999996721745, 255666.769200000911951 ], [ 360324.3766999989748, 255713.998100001364946 ], [ 360382.864500001072884, 255663.603199999779463 ], [ 360385.297799997031689, 255661.934399999678135 ], [ 360371.059299997985363, 255629.520500000566244 ], [ 360360.571900002658367, 255630.067999999970198 ], [ 360347.665500000119209, 255630.595600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302011800", "MAP": "D9-5517-T93", "PARCEL_NAM": "REM 17B", "ACRE": ".181", "LONGITUDE": -64.92099157, "LATITUDE": 18.33051545, "OBJECTID_1": 24782, "PARCEL_NO_": "107302011800", "Tax_Legal_": "HAVENSIGHT 17B & 18C-1 FRENCHMAN BAY QTR", "Name": "MACHOVER, FRANK & CHANTAL", "Address": "PO Box 41", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28100, "Improved_V": 363500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.85406306, "SHAPE_Area": 825.95498565699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359851.589500002563, 255680.950300000607967 ], [ 359843.577299997210503, 255701.604899998754263 ], [ 359843.015299998223782, 255709.214000001549721 ], [ 359849.496399998664856, 255705.678399998694658 ], [ 359853.533299997448921, 255705.078200001269579 ], [ 359869.652400001883507, 255706.054499998688698 ], [ 359871.372900001704693, 255693.403000000864267 ], [ 359875.636399999260902, 255666.206799998879433 ], [ 359868.386799998581409, 255665.303100001066923 ], [ 359864.335500001907349, 255667.592000000178814 ], [ 359862.683300003409386, 255672.222500000149012 ], [ 359856.988799996674061, 255678.086500000208616 ], [ 359851.589500002563, 255680.950300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012100", "MAP": "F9-2463-T69", "PARCEL_NAM": "15B", "ACRE": null, "LONGITUDE": -64.92071164, "LATITUDE": 18.33046013, "OBJECTID_1": 24784, "PARCEL_NO_": "107302012100", "Tax_Legal_": "HAVENSIGHT 15B FRENCHMAN BAY QTR", "Name": "MACHOVER, FRANK & CHANTEL", "Address": "PO Box 41", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23800, "Improved_V": 342800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.223164938, "SHAPE_Area": 1003.28772472 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359908.662900000810623, 255670.276799999177456 ], [ 359875.636399999260902, 255666.206799998879433 ], [ 359871.372900001704693, 255693.403000000864267 ], [ 359905.169699996709824, 255701.701099999248981 ], [ 359908.662900000810623, 255670.276799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "107101010300", "MAP": "D9-3031-T85", "PARCEL_NAM": "158A", "ACRE": "0.48", "LONGITUDE": -64.95822228, "LATITUDE": 18.3301173, "OBJECTID_1": 24753, "PARCEL_NO_": "107101010300", "Tax_Legal_": "SUB BASE 158 & 158-A SOUTHSIDE QTR.", "Name": "Virgin Islands Public TV System", "Address": "158 SUB BASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 763200, "Improved_V": 698000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.68457734200001, "SHAPE_Area": 2130.4027557700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355897.064099997282028, 255660.241900000721216 ], [ 355904.624799996614456, 255624.628899998962879 ], [ 355949.773000001907349, 255625.631700001657009 ], [ 355963.365199998021126, 255639.252999998629093 ], [ 355971.552400000393391, 255624.75450000166893 ], [ 355946.770700000226498, 255599.431499999016523 ], [ 355918.530000001192093, 255601.522399999201298 ], [ 355906.588100001215935, 255583.481699999421835 ], [ 355890.388099998235703, 255592.004000000655651 ], [ 355894.25789999961853, 255611.034099999815226 ], [ 355899.74379999935627, 255629.655200000852346 ], [ 355897.064099997282028, 255660.241900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "107101010300", "MAP": null, "PARCEL_NAM": "REM 158", "ACRE": "0.48", "LONGITUDE": -64.95819383, "LATITUDE": 18.33039073, "OBJECTID_1": 24753, "PARCEL_NO_": "107101010300", "Tax_Legal_": "SUB BASE 158 & 158-A SOUTHSIDE QTR.", "Name": "Virgin Islands Public TV System", "Address": "158 SUB BASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 763200, "Improved_V": 698000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.76915876300001, "SHAPE_Area": 1968.3678021000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355962.54450000077486, 255640.934999998658895 ], [ 355963.365199998021126, 255639.252999998629093 ], [ 355949.773000001907349, 255625.631700001657009 ], [ 355904.624799996614456, 255624.628899998962879 ], [ 355897.064099997282028, 255660.241900000721216 ], [ 355949.474500000476837, 255660.670800000429153 ], [ 355951.927599996328354, 255656.680100001394749 ], [ 355955.192400000989437, 255652.062800001353025 ], [ 355962.54450000077486, 255640.934999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302010100", "MAP": "F9-1470-T64", "PARCEL_NAM": "28", "ACRE": "0.44", "LONGITUDE": -64.92239791, "LATITUDE": 18.33021251, "OBJECTID_1": 24765, "PARCEL_NO_": "107302010100", "Tax_Legal_": "HAVENSIGHT 28 FRENCHMAN BAY 6", "Name": "THOMAS, A. A. & FABIAN, LEONARD", "Address": "PO Box 302023", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 118300, "Improved_V": 745000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.38503016600001, "SHAPE_Area": 1721.9027197299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359726.25280000269413, 255690.315400000661612 ], [ 359744.273999996483326, 255657.321199998259544 ], [ 359736.273800000548363, 255649.867400001734495 ], [ 359723.444799996912479, 255641.31870000064373 ], [ 359712.993299998342991, 255637.644600000232458 ], [ 359705.749099999666214, 255636.107599999755621 ], [ 359683.188500002026558, 255634.02309999987483 ], [ 359675.962200000882149, 255630.375399999320507 ], [ 359668.775600001215935, 255622.08390000090003 ], [ 359665.553900003433228, 255621.635400000959635 ], [ 359664.724200002849102, 255624.372800000011921 ], [ 359665.5, 255627.967700000852346 ], [ 359669.481200002133846, 255633.910900000482798 ], [ 359674.286700002849102, 255637.75 ], [ 359686.329199999570847, 255643.970199998468161 ], [ 359701.543099999427795, 255656.549300000071526 ], [ 359726.25280000269413, 255690.315400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302011300", "MAP": "F9-1470-T64", "PARCEL_NAM": "REM of HAVENSIGHT", "ACRE": "1.64", "LONGITUDE": -64.92172702000001, "LATITUDE": 18.32994488, "OBJECTID_1": 24777, "PARCEL_NO_": "107302011300", "Tax_Legal_": "HAVENSIGHT FRENCHMAN BAY QTR", "Name": "Eleanor Adams Hoffman & Maxwell Adams Hoffman", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040870, "Country": "United States", "Land_Value": 200000, "Improved_V": 684900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.28317741799998, "SHAPE_Area": 7251.5984533399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359826.944099999964237, 255607.968600001186132 ], [ 359828.714900001883507, 255589.406899999827147 ], [ 359765.197899997234344, 255567.566599998623133 ], [ 359733.118699997663498, 255641.609000001102686 ], [ 359740.32880000025034, 255647.156399998813868 ], [ 359758.721100002527237, 255665.249899998307228 ], [ 359771.528599999845028, 255676.331599999219179 ], [ 359784.343299999833107, 255686.568999998271465 ], [ 359789.161399997770786, 255688.930399999022484 ], [ 359824.260799996554852, 255638.977400001138449 ], [ 359826.944099999964237, 255607.968600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107202010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93336731, "LATITUDE": 18.32981301, "OBJECTID_1": 24757, "PARCEL_NO_": "107202010100", "Tax_Legal_": "HASSEL ISLAND 3 SOUTHSIDE QTR", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1015500, "Improved_V": 35800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 638.28429411699994, "SHAPE_Area": 17213.2403964 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358682.664399996399879, 255612.957600001245737 ], [ 358661.079199999570847, 255591.03830000013113 ], [ 358603.222499996423721, 255567.344500001519918 ], [ 358469.764799997210503, 255520.444899998605251 ], [ 358462.321000002324581, 255542.337699998170137 ], [ 358464.730899997055531, 255543.412900000810623 ], [ 358466.318400003015995, 255546.38120000064373 ], [ 358465.463500000536442, 255552.073699999600649 ], [ 358467.921999998390675, 255547.449799999594688 ], [ 358471.147299997508526, 255547.476199999451637 ], [ 358471.116700001060963, 255551.064500000327826 ], [ 358469.462700001895428, 255555.906100001186132 ], [ 358458.829599998891354, 255573.550999999046326 ], [ 358477.401799999177456, 255570.53660000115633 ], [ 358488.652400001883507, 255575.061599999666214 ], [ 358482.85360000282526, 255593.168200001120567 ], [ 358475.512199997901917, 255603.029500000178814 ], [ 358474.682499997317791, 255605.7668999992311 ], [ 358496.251599997282028, 255629.585999999195337 ], [ 358498.605800002813339, 255637.204599998891354 ], [ 358516.985500000417233, 255656.775600001215935 ], [ 358525.000100001692772, 255662.540699999779463 ], [ 358531.438000001013279, 255664.071100000292063 ], [ 358561.980800002813339, 255675.720100000500679 ], [ 358574.059299997985363, 255677.718800000846386 ], [ 358582.995300002396107, 255669.981499999761581 ], [ 358607.407600000500679, 255644.005699999630451 ], [ 358637.457000002264977, 255618.920400001108646 ], [ 358644.756899997591972, 255613.913899999111891 ], [ 358655.258799999952316, 255611.677799999713898 ], [ 358658.514600001275539, 255608.115899998694658 ], [ 358665.784000001847744, 255606.697700001299381 ], [ 358677.012999996542931, 255613.755699999630451 ], [ 358682.664399996399879, 255612.957600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302013400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91751709, "LATITUDE": 18.33011738, "OBJECTID_1": 24801, "PARCEL_NO_": "107302013400", "Tax_Legal_": "4 ESTATE THOMAS NEW QTR", "Name": "AFJ HOLDINGS LLC", "Address": "PO Box 302966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 149300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.28051988099998, "SHAPE_Area": 3895.0272322800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360257.398100003600121, 255625.212799999862909 ], [ 360226.676399998366833, 255608.507500000298023 ], [ 360218.921899996697903, 255615.1233000010252 ], [ 360173.559399999678135, 255653.824299998581409 ], [ 360181.331399999558926, 255656.676399998366833 ], [ 360266.539700001478195, 255687.982400000095367 ], [ 360261.95719999819994, 255657.9695999994874 ], [ 360257.398100003600121, 255625.212799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401040500", "MAP": "D9-3854-T87", "PARCEL_NAM": "A-1-6", "ACRE": null, "LONGITUDE": -64.91553318, "LATITUDE": 18.33016172, "OBJECTID_1": 33099, "PARCEL_NO_": "107401040500", "Tax_Legal_": "THOMAS ESTATE A-1-6 NEW QTR.", "Name": "MOHANANI, HEENA & MONESH", "Address": "9001 Havensight Mall Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 158800, "Improved_V": 1507500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.232175461, "SHAPE_Area": 2647.9153274199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360428.26799999922514, 255634.632800001651049 ], [ 360385.297799997031689, 255661.934399999678135 ], [ 360382.864500001072884, 255663.603199999779463 ], [ 360407.822400003671646, 255668.24040000140667 ], [ 360409.451300002634525, 255666.353900000452995 ], [ 360414.30349999666214, 255664.704900000244379 ], [ 360429.5929000005126, 255668.418600000441074 ], [ 360467.338500000536442, 255686.459399998188019 ], [ 360470.543999999761581, 255688.807700000703335 ], [ 360469.928300000727177, 255666.426699999719858 ], [ 360453.402099996805191, 255618.584300000220537 ], [ 360428.26799999922514, 255634.632800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107302020100", "MAP": null, "PARCEL_NAM": "REM of LIVERPOOL (WHARF)", "ACRE": "3.70", "LONGITUDE": -64.92382336, "LATITUDE": 18.32979321, "OBJECTID_1": 24832, "PARCEL_NO_": "107302020100", "Tax_Legal_": "LIVERPOOL (REM) FRENCHMAN BAY QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 313100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 597.660804773, "SHAPE_Area": 12946.2106675 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359583.889799997210503, 255647.564800001680851 ], [ 359647.759300000965595, 255628.033599998801947 ], [ 359645.378100000321865, 255623.581199999898672 ], [ 359617.103200003504753, 255629.682599999010563 ], [ 359612.933499999344349, 255589.422600001096725 ], [ 359611.456900000572205, 255575.164700001478195 ], [ 359619.197800002992153, 255573.126600001007318 ], [ 359620.54389999806881, 255553.671399999409914 ], [ 359612.244300000369549, 255510.071400001645088 ], [ 359564.736699998378754, 255552.592000000178814 ], [ 359549.872800000011921, 255545.942899998277426 ], [ 359549.214000001549721, 255553.133200000971556 ], [ 359547.560000002384186, 255557.974899999797344 ], [ 359539.448399998247623, 255563.607999999076128 ], [ 359534.592500001192093, 255565.679200001060963 ], [ 359527.280000001192093, 255572.163199998438358 ], [ 359526.453900001943111, 255574.478500001132488 ], [ 359526.414300002157688, 255579.12220000103116 ], [ 359531.237800002098083, 255580.850499998778105 ], [ 359531.221600003540516, 255582.750199999660254 ], [ 359526.353200003504753, 255586.298900000751019 ], [ 359513.448600001633167, 255586.615499999374151 ], [ 359511.825199998915195, 255587.86879999935627 ], [ 359511.767599999904633, 255594.6233000010252 ], [ 359509.319899998605251, 255597.980799999088049 ], [ 359506.89919999986887, 255598.171999998390675 ], [ 359506.069499999284744, 255600.909499999135733 ], [ 359504.442500002682209, 255602.584899999201298 ], [ 359505.227200001478195, 255605.124400001019239 ], [ 359506.019100002944469, 255606.819699998944998 ], [ 359503.560599997639656, 255611.443599998950958 ], [ 359501.940800003707409, 255612.274700000882149 ], [ 359496.154600001871586, 255628.903799999505281 ], [ 359492.918499998748302, 255630.143800001591444 ], [ 359485.674300000071526, 255628.606899999082088 ], [ 359483.221199996769428, 255632.597600001841784 ], [ 359488.825800001621246, 255637.287500001490116 ], [ 359496.062899999320507, 255639.668800000101328 ], [ 359505.628899998962879, 255652.623799998313189 ], [ 359505.605499997735023, 255655.367800001055002 ], [ 359503.958800002932549, 255659.365100000053644 ], [ 359499.900200001895428, 255662.4983000010252 ], [ 359499.754600003361702, 255679.59569999948144 ], [ 359542.505300000309944, 255678.045699998736382 ], [ 359583.889799997210503, 255647.564800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014500", "MAP": "D9-277-T61", "PARCEL_NAM": "17A", "ACRE": null, "LONGITUDE": -64.92099537, "LATITUDE": 18.33020333, "OBJECTID_1": 24812, "PARCEL_NO_": "107302014500", "Tax_Legal_": "HAVENSIGHT 17A FRENCHMAN BAY QTR", "Name": "PURGUY, ANDRE & MONIQUE (TRUSTEE)", "Address": "PO Box 600173", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30300, "Improved_V": 197600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.554498333, "SHAPE_Area": 976.13772473699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359876.4679000005126, 255663.258299998939037 ], [ 359879.91610000282526, 255637.11089999973774 ], [ 359848.455600000917912, 255638.542199999094009 ], [ 359846.670299999415874, 255658.792500000447035 ], [ 359845.696800000965595, 255678.416299998760223 ], [ 359844.86710000038147, 255681.1537000015378 ], [ 359857.829199999570847, 255674.082600001245737 ], [ 359860.276900000870228, 255670.725099999457598 ], [ 359861.113799996674061, 255667.143399998545647 ], [ 359864.369599997997284, 255663.581500001251698 ], [ 359868.413800001144409, 255662.136900000274181 ], [ 359876.4679000005126, 255663.258299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401040300", "MAP": "D9-3854-T87", "PARCEL_NAM": "A-1-5", "ACRE": null, "LONGITUDE": -64.91501843, "LATITUDE": 18.33008169, "OBJECTID_1": 33097, "PARCEL_NO_": "107401040300", "Tax_Legal_": "THOMAS A-1-5 6K NEW QTR.", "Name": "MOHANANI, RAJESH & VANDANA", "Address": "9001 Havensight Mall Bay A/B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 137700, "Improved_V": 708500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.16050866200001, "SHAPE_Area": 2870.8029436800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360519.449600003659725, 255627.357500001788139 ], [ 360492.063799999654293, 255623.755899999290705 ], [ 360453.402099996805191, 255618.584300000220537 ], [ 360469.928300000727177, 255666.426699999719858 ], [ 360522.270300000905991, 255674.8766999989748 ], [ 360525.753899998962879, 255655.944899998605251 ], [ 360526.497800000011921, 255651.902100000530481 ], [ 360519.449600003659725, 255627.357500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014800", "MAP": "D9-277-T61", "PARCEL_NAM": "15A", "ACRE": null, "LONGITUDE": -64.92066961, "LATITUDE": 18.33016743, "OBJECTID_1": 24814, "PARCEL_NO_": "107302014800", "Tax_Legal_": "HAVENSIGHT 15&15A FRENCHMAN BAY", "Name": "MARISSA BORNN TRUST", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 78600, "Improved_V": 477400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.23144439399999, "SHAPE_Area": 966.44039552499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359913.799300000071526, 255635.277300000190735 ], [ 359879.91610000282526, 255637.11089999973774 ], [ 359876.4679000005126, 255663.258299998939037 ], [ 359908.688100002706051, 255667.321699999272823 ], [ 359913.799300000071526, 255635.277300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302015600", "MAP": "D9-1873-T81", "PARCEL_NAM": "1A-1", "ACRE": null, "LONGITUDE": -64.91663741000001, "LATITUDE": 18.32995194, "OBJECTID_1": 24821, "PARCEL_NO_": "107302015600", "Tax_Legal_": "THOMAS 1A-1 6C NEW QTR", "Name": "DAGGETT, JOHN & BARBARA", "Address": "7301 Flagg Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 182500, "Improved_V": 492300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.51944789000001, "SHAPE_Area": 3178.44960799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360365.604000002145767, 255607.311099998652935 ], [ 360301.167300000786781, 255598.762099999934435 ], [ 360291.1841000020504, 255634.777399998158216 ], [ 360306.209100000560284, 255669.51969999819994 ], [ 360331.229999996721745, 255666.769200000911951 ], [ 360333.787299998104572, 255650.535900000482798 ], [ 360347.665500000119209, 255630.595600001513958 ], [ 360365.604000002145767, 255607.311099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012300", "MAP": "D9-1533-T79", "PARCEL_NAM": "5A", "ACRE": null, "LONGITUDE": -64.91984749, "LATITUDE": 18.32977833, "OBJECTID_1": 24786, "PARCEL_NO_": "107302012300", "Tax_Legal_": "HAVENSIGHT 5A FRENCHMANS BAY QTR", "Name": "PUNJABI, DALIP & LOVINA (TRUSTEES)", "Address": "PO Box 304848", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70100, "Improved_V": 380400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.95049626100001, "SHAPE_Area": 2757.3587694299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360006.50900000333786, 255637.935899998992682 ], [ 359987.821000002324581, 255559.889400001615286 ], [ 359973.249899998307228, 255566.525199998170137 ], [ 359957.886799998581409, 255571.465700000524521 ], [ 359974.225900001823902, 255641.260299999266863 ], [ 359978.887599997222424, 255661.985599998384714 ], [ 360006.50900000333786, 255637.935899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302015000", "MAP": "F9-1470-T64", "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.92120763, "LATITUDE": 18.32992623, "OBJECTID_1": 24816, "PARCEL_NO_": "107302015000", "Tax_Legal_": "HAVENSIGHT 24&17E FRENCHMAN BAY QTR", "Name": "Eleanor Adams Hoffman & Maxwell Adams Hoffman", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040870, "Country": "United States", "Land_Value": 99600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.34800598699999, "SHAPE_Area": 1217.9203695399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359826.944099999964237, 255607.968600001186132 ], [ 359824.260799996554852, 255638.977400001138449 ], [ 359846.670299999415874, 255658.792500000447035 ], [ 359848.455600000917912, 255638.542199999094009 ], [ 359852.044100001454353, 255595.930599998682737 ], [ 359843.984499998390675, 255595.442499998956919 ], [ 359839.933200001716614, 255597.7314000017941 ], [ 359835.829700000584126, 255606.141499999910593 ], [ 359832.59009999781847, 255607.803700000047684 ], [ 359826.944099999964237, 255607.968600001186132 ] ] ], [ [ [ 359826.944099999964237, 255607.968600001186132 ], [ 359829.415200002491474, 255601.86710000038147 ], [ 359832.652999997138977, 255600.416000001132488 ], [ 359834.319600000977516, 255594.096799999475479 ], [ 359831.927599996328354, 255590.910799998790026 ], [ 359828.714900001883507, 255589.406899999827147 ], [ 359826.944099999964237, 255607.968600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91593094, "LATITUDE": 18.32995615, "OBJECTID_1": 24820, "PARCEL_NO_": "107302015500", "Tax_Legal_": "THOMAS 1C 6C NEW QTR", "Name": "T & J VASANDMALANI REVOCABLE TRUST", "Address": "PO BOX 308655", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82900, "Improved_V": 498300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.02687218400001, "SHAPE_Area": 1909.3020796599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360413.140399999916553, 255611.921999998390675 ], [ 360399.472699999809265, 255607.16609999909997 ], [ 360393.83389999717474, 255606.486600000411272 ], [ 360360.571900002658367, 255630.067999999970198 ], [ 360371.059299997985363, 255629.520500000566244 ], [ 360385.297799997031689, 255661.934399999678135 ], [ 360428.26799999922514, 255634.632800001651049 ], [ 360413.140399999916553, 255611.921999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91839508, "LATITUDE": 18.3297156, "OBJECTID_1": 24800, "PARCEL_NO_": "107302013300", "Tax_Legal_": "3 ESTATE THOMAS 6C NEW QTR.", "Name": "THE LAKHWANI 2011 REVOCABLE LIVING TRUST", "Address": "PO Box 6826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 190800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 429.09025270199999, "SHAPE_Area": 9734.9323170999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360142.132799997925758, 255563.758200000971556 ], [ 360109.542199999094009, 255547.804000001400709 ], [ 360098.310999996960163, 255557.83839999884367 ], [ 360083.687700003385544, 255570.595499999821186 ], [ 360075.563400000333786, 255577.7060999982059 ], [ 360043.068199999630451, 255605.937800001353025 ], [ 360173.559399999678135, 255653.824299998581409 ], [ 360218.921899996697903, 255615.1233000010252 ], [ 360226.676399998366833, 255608.507500000298023 ], [ 360194.841300003230572, 255591.196899998933077 ], [ 360164.669299997389317, 255574.790699999779463 ], [ 360142.132799997925758, 255563.758200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91308108, "LATITUDE": 18.32968643, "OBJECTID_1": 32947, "PARCEL_NO_": "107401010600", "Tax_Legal_": "BAKKERO 3HAC No.5 FRENCHMAN BAY QTR.", "Name": "McQUAID, CHARLES P", "Address": "1341 Turvey Rd", "City": "Downers Grove", "State": "Illinois", "Zip": 60515, "Country": "United States", "Land_Value": 120900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 398.90385728699999, "SHAPE_Area": 3339.1321024099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360643.450199998915195, 255553.8564000017941 ], [ 360682.152099996805191, 255648.954199999570847 ], [ 360695.844999998807907, 255650.754999998956919 ], [ 360746.356100000441074, 255590.162399999797344 ], [ 360735.22410000115633, 255571.7060999982059 ], [ 360717.416900001466274, 255579.581900000572205 ], [ 360712.548500001430511, 255583.130699999630451 ], [ 360684.066799998283386, 255613.506099998950958 ], [ 360675.98929999768734, 255615.128800000995398 ], [ 360671.970299996435642, 255613.618200000375509 ], [ 360668.773900002241135, 255610.214499998837709 ], [ 360654.895000003278255, 255535.584899999201298 ], [ 360647.517700001597404, 255549.66780000180006 ], [ 360643.450199998915195, 255553.8564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302011200", "MAP": "F9-2456-T69", "PARCEL_NAM": "21A", "ACRE": "0.0603", "LONGITUDE": -64.92231478, "LATITUDE": 18.33001274, "OBJECTID_1": 24776, "PARCEL_NO_": "107302011200", "Tax_Legal_": "HAVENSIGHT 23&21A FRENCHMAN BAY QTR", "Name": "PENN, ROMNEY A. & CECELIA", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 164300, "Improved_V": 280100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.479473357700002, "SHAPE_Area": 118.80474457699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359719.566100001335144, 255623.344000000506639 ], [ 359712.228299997746944, 255632.78319999948144 ], [ 359722.683399997651577, 255636.035100001841784 ], [ 359733.118699997663498, 255641.609000001102686 ], [ 359719.566100001335144, 255623.344000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302011200", "MAP": "F9-2456-T69", "PARCEL_NAM": "23", "ACRE": "0.53", "LONGITUDE": -64.9221928, "LATITUDE": 18.32965062, "OBJECTID_1": 24776, "PARCEL_NO_": "107302011200", "Tax_Legal_": "HAVENSIGHT 23&21A FRENCHMAN BAY QTR", "Name": "PENN, ROMNEY A. & CECELIA", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 164300, "Improved_V": 280100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.34612423900001, "SHAPE_Area": 2587.3344256300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359725.778499998152256, 255556.689300000667572 ], [ 359716.615099996328354, 255574.346400000154972 ], [ 359710.948399998247623, 255593.720400001853704 ], [ 359719.566100001335144, 255623.344000000506639 ], [ 359733.118699997663498, 255641.609000001102686 ], [ 359765.197899997234344, 255567.566599998623133 ], [ 359745.902099996805191, 255560.864799998700619 ], [ 359725.778499998152256, 255556.689300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91356363, "LATITUDE": 18.3297783, "OBJECTID_1": 32946, "PARCEL_NO_": "107401010500", "Tax_Legal_": "BAKERO 3 HAB FRENCHMAN BAY", "Name": "CHARLES P MCQUAID 1995 TRUST", "Address": "1341 Turvey Rd", "City": "Downers Grove", "State": "Illinois", "Zip": 60515, "Country": "United States", "Land_Value": 161200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.13604076399997, "SHAPE_Area": 3055.56200967 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360643.450199998915195, 255553.8564000017941 ], [ 360641.82320000231266, 255555.531800001859665 ], [ 360615.298299998044968, 255640.174300000071526 ], [ 360682.152099996805191, 255648.954199999570847 ], [ 360643.450199998915195, 255553.8564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014700", "MAP": "D9-5996-T95", "PARCEL_NAM": "17 REM", "ACRE": ".282", "LONGITUDE": -64.92094213, "LATITUDE": 18.32986203, "OBJECTID_1": 24813, "PARCEL_NO_": "107302014700", "Tax_Legal_": "HAVENSIGHT (REM) 17 FRENCHMAN BAY QTR", "Name": "KANSTRUP, PALLE", "Address": "PO Box 7787", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39300, "Improved_V": 384800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.299225901, "SHAPE_Area": 1368.8916395799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359879.91610000282526, 255637.11089999973774 ], [ 359886.729900002479553, 255594.525800000876188 ], [ 359868.967600002884865, 255597.124600000679493 ], [ 359852.044100001454353, 255595.930599998682737 ], [ 359848.455600000917912, 255638.542199999094009 ], [ 359879.91610000282526, 255637.11089999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014800", "MAP": "D9-277-T61", "PARCEL_NAM": "15", "ACRE": null, "LONGITUDE": -64.92061379, "LATITUDE": 18.32981925, "OBJECTID_1": 24814, "PARCEL_NO_": "107302014800", "Tax_Legal_": "HAVENSIGHT 15&15A FRENCHMAN BAY", "Name": "MARISSA BORNN TRUST", "Address": "PO Box 1542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 78600, "Improved_V": 477400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.59810197, "SHAPE_Area": 1615.4393562299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359923.116400003433228, 255582.791200000792742 ], [ 359886.729900002479553, 255594.525800000876188 ], [ 359879.91610000282526, 255637.11089999973774 ], [ 359913.799300000071526, 255635.277300000190735 ], [ 359923.116400003433228, 255582.791200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91955684, "LATITUDE": 18.3296145, "OBJECTID_1": 24787, "PARCEL_NO_": "107302012400", "Tax_Legal_": "HAVENSIGHT 5B FRENCHMAN BAY", "Name": "THE MOTIANI FAMILY TRUST", "Address": "PO Box 600210", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70100, "Improved_V": 497700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.25362212900001, "SHAPE_Area": 2663.0663302600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360041.444799996912479, 255607.191100001335144 ], [ 360019.3462999984622, 255550.859299998730421 ], [ 359997.534500002861023, 255555.535999998450279 ], [ 359987.821000002324581, 255559.889400001615286 ], [ 360006.50900000333786, 255637.935899998992682 ], [ 360041.444799996912479, 255607.191100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302011100", "MAP": "F9-2456-T69", "PARCEL_NAM": "21", "ACRE": "0.453", "LONGITUDE": -64.92257262, "LATITUDE": 18.32984999, "OBJECTID_1": 24775, "PARCEL_NO_": "107302011100", "Tax_Legal_": "HAVENSIGHT 21-22A FRENCHMAN BAY QTR", "Name": "HESTER, ERIN", "Address": "PO Box 302472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78600, "Improved_V": 538400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.19418070399999, "SHAPE_Area": 1448.72056217 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359710.948399998247623, 255593.720400001853704 ], [ 359666.505900003015995, 255604.544599998742342 ], [ 359664.049199998378754, 255608.957400001585484 ], [ 359664.808700002729893, 255614.452100001275539 ], [ 359674.430500000715256, 255620.863600000739098 ], [ 359677.614399999380112, 255625.744899999350309 ], [ 359680.024400003254414, 255626.820099998265505 ], [ 359687.255999997258186, 255629.834499999880791 ], [ 359699.345299996435642, 255630.566799998283386 ], [ 359712.228299997746944, 255632.78319999948144 ], [ 359719.566100001335144, 255623.344000000506639 ], [ 359710.948399998247623, 255593.720400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91382354, "LATITUDE": 18.32975718, "OBJECTID_1": 32945, "PARCEL_NO_": "107401010400", "Tax_Legal_": "BAKKERO 3HAA FRENCHMAN BAY", "Name": "KAC357 INC", "Address": "14 Plessen", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 840, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.58588159199999, "SHAPE_Area": 640.31724922900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360641.82320000231266, 255555.531800001859665 ], [ 360600.800899997353554, 255638.155900001525879 ], [ 360607.244199998676777, 255639.052999999374151 ], [ 360615.298299998044968, 255640.174300000071526 ], [ 360641.82320000231266, 255555.531800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91395878, "LATITUDE": 18.32964091, "OBJECTID_1": 32944, "PARCEL_NO_": "107401010300", "Tax_Legal_": "BAKKERO 3J OF 3 FRENCHMANS BAY QTR", "Name": "KAC357 INC", "Address": "14 Plessen", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 840, "Country": "United States", "Land_Value": 143400, "Improved_V": 664000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.19359062199999, "SHAPE_Area": 2335.3358530700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360641.82320000231266, 255555.531800001859665 ], [ 360633.716899998486042, 255560.531700000166893 ], [ 360628.05290000140667, 255562.807399999350309 ], [ 360615.139300003647804, 255564.179400000721216 ], [ 360604.675200000405312, 255561.982799999415874 ], [ 360573.41499999910593, 255634.554200001060963 ], [ 360600.800899997353554, 255638.155900001525879 ], [ 360641.82320000231266, 255555.531800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302020500", "MAP": "F9-677-T61", "PARCEL_NAM": "19", "ACRE": ".71", "LONGITUDE": -64.92340752, "LATITUDE": 18.32877055, "OBJECTID_1": 24837, "PARCEL_NO_": "107302020500", "Tax_Legal_": "HAVENSIGHT ESTATE 19 6A FRENCHMAN BAY QTR.", "Name": "RICHARD H DRIEHAUS 2003 REVOC TR", "Address": "25 E Erie St", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 168300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 541.65033787799996, "SHAPE_Area": 3778.1427854200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359549.872800000011921, 255545.942899998277426 ], [ 359564.736699998378754, 255552.592000000178814 ], [ 359612.244300000369549, 255510.071400001645088 ], [ 359620.54389999806881, 255553.671399999409914 ], [ 359621.037000000476837, 255546.5439000017941 ], [ 359624.400700002908707, 255530.317200001329184 ], [ 359627.697899997234344, 255521.900499999523163 ], [ 359625.298699997365475, 255519.558800000697374 ], [ 359625.36879999935627, 255511.326699998229742 ], [ 359632.180799998342991, 255468.9527000002563 ], [ 359632.286899998784065, 255456.499000001698732 ], [ 359638.748199999332428, 255455.285300001502037 ], [ 359639.487899996340275, 255463.10190000012517 ], [ 359638.668999999761581, 255464.572799999266863 ], [ 359631.808499999344349, 255512.646000001579523 ], [ 359646.088899999856949, 255446.357400000095367 ], [ 359610.788000002503395, 255424.447900000959635 ], [ 359612.281900003552437, 255438.392299998551607 ], [ 359612.204599998891354, 255447.468699999153614 ], [ 359610.45889999717474, 255463.075399998575449 ], [ 359606.312200002372265, 255476.551399998366833 ], [ 359600.587099999189377, 255486.003800000995398 ], [ 359592.432300001382828, 255496.702799998223782 ], [ 359585.107199996709824, 255504.66440000012517 ], [ 359580.20269999653101, 255512.43470000103116 ], [ 359574.513599999248981, 255517.665500000119209 ], [ 359559.859700001776218, 255534.010899998247623 ], [ 359551.744400002062321, 255540.066199999302626 ], [ 359550.103100001811981, 255543.43019999936223 ], [ 359549.872800000011921, 255545.942899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025000", "MAP": "F9-400-T59", "PARCEL_NAM": "12", "ACRE": "0.99", "LONGITUDE": -64.92324918, "LATITUDE": 18.32979596, "OBJECTID_1": 24883, "PARCEL_NO_": "107302025000", "Tax_Legal_": "HAVENSIGHT 12 FRENCHMAN BAY QTR", "Name": "BODIES, SCOTTISH R", "Address": "PO Box 780", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19600, "Improved_V": 60100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.16419972700001, "SHAPE_Area": 734.79116604700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359620.698899999260902, 255586.226700000464916 ], [ 359619.197800002992153, 255573.126600001007318 ], [ 359611.456900000572205, 255575.164700001478195 ], [ 359612.933499999344349, 255589.422600001096725 ], [ 359617.103200003504753, 255629.682599999010563 ], [ 359645.378100000321865, 255623.581199999898672 ], [ 359634.172499999403954, 255613.779199998825788 ], [ 359627.779500000178814, 255606.971799999475479 ], [ 359623.033299997448921, 255596.167199999094009 ], [ 359620.698899999260902, 255586.226700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015300", "MAP": "D9-1777-T81", "PARCEL_NAM": "1D", "ACRE": ".14", "LONGITUDE": -64.91559678, "LATITUDE": 18.32986898, "OBJECTID_1": 32991, "PARCEL_NO_": "107401015300", "Tax_Legal_": "1D and 1C-1 Estate Thomas 6C NEW QTR", "Name": "AMER Y DAAS and SUZAN DAAS", "Address": "Po Box 8650", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51700, "Improved_V": 573300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.022196317699994, "SHAPE_Area": 384.668251865 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360428.26799999922514, 255634.632800001651049 ], [ 360453.402099996805191, 255618.584300000220537 ], [ 360419.572999998927116, 255614.08559999987483 ], [ 360413.140399999916553, 255611.921999998390675 ], [ 360428.26799999922514, 255634.632800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91450347, "LATITUDE": 18.32960768, "OBJECTID_1": 32943, "PARCEL_NO_": "107401010200", "Tax_Legal_": "BAKKERO 3N OF 3 FRENCHMANS BAY QTR", "Name": "DASWANI, MURLI & ROOPA", "Address": "PO Box 8028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 147000, "Improved_V": 549500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.65317103000001, "SHAPE_Area": 6140.4837360399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360604.675200000405312, 255561.982799999415874 ], [ 360593.404899999499321, 255559.779599998146296 ], [ 360568.403800003230572, 255560.208299998193979 ], [ 360548.265699997544289, 255557.721400000154972 ], [ 360534.55120000243187, 255558.453499998897314 ], [ 360512.735799998044968, 255563.552299998700619 ], [ 360492.063799999654293, 255623.755899999290705 ], [ 360519.449600003659725, 255627.357500001788139 ], [ 360573.41499999910593, 255634.554200001060963 ], [ 360604.675200000405312, 255561.982799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107202010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93327796, "LATITUDE": 18.3265394, "OBJECTID_1": 24758, "PARCEL_NO_": "107202010200", "Tax_Legal_": "HASSEL ISLAND 8E,8F&8G S S QTR", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13414400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4065.00716453, "SHAPE_Area": 278153.81217799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358652.935500003397465, 254937.848200000822544 ], [ 358652.147100001573563, 254935.730799999088049 ], [ 358656.182300001382828, 254935.341600000858307 ], [ 358655.428099997341633, 254929.213799998164177 ], [ 358657.86150000244379, 254927.544900000095367 ], [ 358657.88120000064373, 254925.223099999129772 ], [ 358656.306400001049042, 254920.777199998497963 ], [ 358657.136100001633167, 254918.039799999445677 ], [ 358662.787399999797344, 254917.241700001060963 ], [ 358665.229800000786781, 254914.517400000244379 ], [ 358665.256700001657009, 254911.351199999451637 ], [ 358662.873800002038479, 254907.109900001436472 ], [ 358658.039499998092651, 254906.64809999987483 ], [ 358658.091600000858307, 254900.526799999177456 ], [ 358655.672700002789497, 254900.506999999284744 ], [ 358656.543700002133846, 254892.914799999445677 ], [ 358650.145400002598763, 254886.740699999034405 ], [ 358646.99210000038147, 254878.271200001239777 ], [ 358644.578500002622604, 254877.618099998682737 ], [ 358643.802799999713898, 254874.023200001567602 ], [ 358639.7837999984622, 254872.512600000947714 ], [ 358638.187399998307228, 254870.599700000137091 ], [ 358634.963899999856949, 254870.362300001084805 ], [ 358632.535999998450279, 254871.397799998521805 ], [ 358631.790799997746944, 254864.214600000530481 ], [ 358625.374499998986721, 254860.151299998164177 ], [ 358627.006899997591972, 254857.842599999159575 ], [ 358625.433799996972084, 254853.185699999332428 ], [ 358623.038199998438358, 254850.421900000423193 ], [ 358619.814800001680851, 254850.184399999678135 ], [ 358621.488600000739098, 254843.020899999886751 ], [ 358623.30799999833107, 254818.760000001639128 ], [ 358624.979900002479553, 254811.807599999010563 ], [ 358625.080600000917912, 254799.987199999392033 ], [ 358622.026199996471405, 254779.908300001174212 ], [ 358617.288999997079372, 254768.048300001770258 ], [ 358614.103399999439716, 254763.378199998289347 ], [ 358606.079800002276897, 254758.668499998748302 ], [ 358583.490500003099442, 254759.961199998855591 ], [ 358559.934799998998642, 254780.033399999141693 ], [ 358544.443999998271465, 254799.960499998182058 ], [ 358531.300200000405312, 254828.350600000470877 ], [ 358518.944799996912479, 254858.857999999076128 ], [ 358504.308899998664856, 254873.092599999159575 ], [ 358501.729900002479553, 254891.858800001442432 ], [ 358503.231100000441074, 254904.95890000090003 ], [ 358507.133199997246265, 254920.189599998295307 ], [ 358525.4391999989748, 254948.414799999445677 ], [ 358531.749399997293949, 254964.931800000369549 ], [ 358524.411700002849102, 254974.370900001376867 ], [ 358504.221500001847744, 254978.005399998277426 ], [ 358472.753799997270107, 254980.280900001525879 ], [ 358434.783399999141693, 254988.625 ], [ 358425.037500001490116, 254996.777899999171495 ], [ 358424.180799998342991, 255002.681499999016523 ], [ 358431.266800001263618, 255022.793400000780821 ], [ 358449.763400003314018, 255028.644299998879433 ], [ 358458.593299999833107, 255033.360599998384714 ], [ 358468.895599998533726, 255054.554299999028444 ], [ 358465.609200000762939, 255061.704599998891354 ], [ 358459.925399996340275, 255066.302099999040365 ], [ 358452.668600000441074, 255066.24269999936223 ], [ 358445.451399996876717, 255061.539599999785423 ], [ 358430.955700002610683, 255059.309999998658895 ], [ 358419.676299996674061, 255058.162200000137091 ], [ 358401.926700003445148, 255059.283500000834465 ], [ 358393.832999996840954, 255062.805900000035763 ], [ 358384.913199998438358, 255068.643500000238419 ], [ 358375.943000003695488, 255080.39130000025034 ], [ 358376.688199996948242, 255087.574599999934435 ], [ 358381.427199997007847, 255099.223499998450279 ], [ 358387.816600002348423, 255106.453000001609325 ], [ 358395.024800002574921, 255112.211500000208616 ], [ 358398.995200000703335, 255119.42119999974966 ], [ 358402.080200001597404, 255135.911699999123812 ], [ 358397.798699997365475, 255165.218699999153614 ], [ 358388.656000003218651, 255197.230099998414516 ], [ 358381.975299999117851, 255224.19539999961853 ], [ 358364.114100001752377, 255238.403599999845028 ], [ 358344.690700002014637, 255246.688299998641014 ], [ 358322.8699000030756, 255252.420400001108646 ], [ 358312.377099998295307, 255253.601100001484156 ], [ 358302.789399996399879, 255243.179000001400709 ], [ 358293.029200002551079, 255253.020500000566244 ], [ 358288.93469999730587, 255260.375300001353025 ], [ 358284.858199998736382, 255265.619300000369549 ], [ 358285.554799996316433, 255278.5016999989748 ], [ 358280.688100002706051, 255281.839299999177456 ], [ 358277.462899997830391, 255281.812899999320507 ], [ 358275.054700002074242, 255280.526700001209974 ], [ 358273.454700000584126, 255279.035900000482798 ], [ 358273.472699999809265, 255276.92509999871254 ], [ 358274.329300001263618, 255271.021499998867512 ], [ 358282.500399999320507, 255258.422800000756979 ], [ 358281.715599998831749, 255255.883200000971556 ], [ 358264.822599999606609, 255251.100900001823902 ], [ 358263.184799998998642, 255254.04280000180006 ], [ 358260.629199996590614, 255270.065000001341105 ], [ 358258.994999997317791, 255272.584800001233816 ], [ 358250.86540000140667, 255280.328699998557568 ], [ 358250.015900000929832, 255285.388000000268221 ], [ 358257.193599998950958, 255294.7347999997437 ], [ 358257.135999999940395, 255301.489399999380112 ], [ 358252.17230000346899, 255316.225299999117851 ], [ 358250.413999997079372, 255333.309500001370907 ], [ 358244.688900001347065, 255342.761799998581409 ], [ 358247.822499997913837, 255353.553199999034405 ], [ 358248.569399997591972, 255360.525400001555681 ], [ 358245.148199997842312, 255383.506599999964237 ], [ 358243.352099999785423, 255405.023499999195337 ], [ 358246.534199997782707, 255410.115800000727177 ], [ 358250.545999996364117, 255412.470600001513958 ], [ 358251.318199999630451, 255416.487700000405312 ], [ 358250.432700000703335, 255425.7685999982059 ], [ 358241.257600001990795, 255461.5793999992311 ], [ 358469.764799997210503, 255520.444899998605251 ], [ 358603.222499996423721, 255567.344500001519918 ], [ 358661.079199999570847, 255591.03830000013113 ], [ 358682.664399996399879, 255612.957600001245737 ], [ 358688.335600003600121, 255609.837600000202656 ], [ 358705.293300002813339, 255607.021099999547005 ], [ 358710.15990000218153, 255603.683400001376867 ], [ 358714.232900001108646, 255598.861600000411272 ], [ 358715.890500001609325, 255593.597800001502037 ], [ 358715.913800001144409, 255590.853799998760223 ], [ 358713.574000000953674, 255581.546599999070168 ], [ 358718.480200000107288, 255573.565200001001358 ], [ 358720.884800001978874, 255575.273600000888109 ], [ 358721.658699996769428, 255579.079599998891354 ], [ 358723.262299999594688, 255580.148200001567602 ], [ 358728.902900002896786, 255580.616500001400709 ], [ 358731.334499999880791, 255579.1587999984622 ], [ 358732.98309999704361, 255574.950399998575449 ], [ 358729.792000003159046, 255570.913499999791384 ], [ 358725.762199997901917, 255570.669399999082088 ], [ 358722.526199996471405, 255571.909499999135733 ], [ 358719.30629999935627, 255571.249899998307228 ], [ 358716.912500001490116, 255568.274999998509884 ], [ 358716.939499996602535, 255565.108800001442432 ], [ 358717.762000001966953, 255563.215700000524521 ], [ 358719.380000002682209, 255562.59569999948144 ], [ 358721.034000001847744, 255557.754000000655651 ], [ 358725.079999998211861, 255556.098400000482798 ], [ 358729.9628000035882, 255550.861000001430511 ], [ 358725.301100000739098, 255530.13569999858737 ], [ 358726.224299997091293, 255516.422200001776218 ], [ 358729.48200000077486, 255512.64919999986887 ], [ 358733.527900002896786, 255510.993500001728535 ], [ 358738.398100003600121, 255507.23369999974966 ], [ 358740.062899999320507, 255501.125599998980761 ], [ 358740.971699997782707, 255489.100699998438358 ], [ 358744.189800001680851, 255489.971400000154972 ], [ 358746.657300002872944, 255484.292100001126528 ], [ 358749.893299996852875, 255483.052000001072884 ], [ 358753.154500000178814, 255478.856800001114607 ], [ 358753.179700002074242, 255475.901700001209974 ], [ 358751.58330000191927, 255473.988800000399351 ], [ 358737.123599998652935, 255467.53770000115037 ], [ 358734.724399998784065, 255465.195999998599291 ], [ 358732.413400001823902, 255452.511500000953674 ], [ 358729.421899996697903, 255425.044799998402596 ], [ 358729.52080000191927, 255413.435499999672174 ], [ 358733.7466000020504, 255390.671999998390675 ], [ 358736.176299996674061, 255389.425299998372793 ], [ 358740.211400002241135, 255389.036100000143051 ], [ 358745.031300000846386, 255391.186500001698732 ], [ 358746.616999998688698, 255394.365899998694658 ], [ 358751.454899996519089, 255394.405499998480082 ], [ 358753.094499997794628, 255391.252500001341105 ], [ 358745.054700002074242, 255388.442499998956919 ], [ 358738.641999997198582, 255383.957100000232458 ], [ 358733.856200002133846, 255377.79619999974966 ], [ 358731.543399997055531, 255365.322700001299381 ], [ 358741.326999999582767, 255352.737199999392033 ], [ 358778.710500001907349, 255318.634899999946356 ], [ 358821.734600000083447, 255285.000999998301268 ], [ 358796.890000000596046, 255267.065799999982119 ], [ 358816.4662000015378, 255240.839299999177456 ], [ 358840.524300001561642, 255256.445999998599291 ], [ 358852.806000001728535, 255234.592799998819828 ], [ 358859.423799999058247, 255215.015299998223782 ], [ 358853.784999996423721, 255214.335900001227856 ], [ 358813.359700001776218, 255226.881700001657009 ], [ 358801.250600002706051, 255228.4712999984622 ], [ 358784.316200003027916, 255228.543800000101328 ], [ 358778.661200001835823, 255229.76410000026226 ], [ 358755.989200003445148, 255240.766499999910593 ], [ 358743.869300000369549, 255243.622600000351667 ], [ 358730.163800001144409, 255243.299400001764297 ], [ 358702.790600001811981, 255238.220199998468161 ], [ 358673.822599999606609, 255231.017000000923872 ], [ 358648.907899998128414, 255221.313900001347065 ], [ 358635.274300001561642, 255212.547400001436472 ], [ 358624.864200003445148, 255204.018500000238419 ], [ 358619.272100001573563, 255197.850999999791384 ], [ 358613.715999998152256, 255187.462000001221895 ], [ 358608.341600000858307, 255155.753899998962879 ], [ 358584.980099998414516, 255153.029599998146296 ], [ 358595.7516999989748, 255119.131700001657009 ], [ 358611.091399997472763, 255116.935199998319149 ], [ 358638.42509999871254, 255126.65819999948144 ], [ 358650.390299998223782, 255141.954799998551607 ], [ 358642.984200000762939, 255159.41499999910593 ], [ 358617.20380000025034, 255156.670899998396635 ], [ 358621.83669999986887, 255180.773400001227856 ], [ 358625.780199997127056, 255191.149300001561642 ], [ 358629.770400002598763, 255196.037099998444319 ], [ 358634.574100002646446, 255200.087200000882149 ], [ 358650.603200003504753, 255211.617400001734495 ], [ 358671.493600003421307, 255220.443300001323223 ], [ 358683.555900000035763, 255224.341699998825788 ], [ 358711.7246999964118, 255230.693900000303984 ], [ 358735.879900000989437, 255234.902399998158216 ], [ 358742.330399997532368, 255234.955200001597404 ], [ 358747.985399998724461, 255233.734900001436472 ], [ 358774.699799999594688, 255221.499000001698732 ], [ 358782.779100000858307, 255219.665300000458956 ], [ 358799.715300001204014, 255219.381799999624491 ], [ 358811.019799999892712, 255217.574400000274181 ], [ 358853.867700003087521, 255204.626200001686811 ], [ 358857.89919999986887, 255204.659200001507998 ], [ 358861.111900001764297, 255206.163199998438358 ], [ 358864.340800002217293, 255205.767400000244379 ], [ 358866.77589999884367, 255203.887499999254942 ], [ 358870.895599998533726, 255193.577599998563528 ], [ 358856.42509999871254, 255188.39299999922514 ], [ 358882.561499997973442, 255149.343499999493361 ], [ 358880.164200000464916, 255146.790699999779463 ], [ 358882.599299997091293, 255144.910799998790026 ], [ 358882.619099996984005, 255142.588899999856949 ], [ 358880.20549999922514, 255141.935899998992682 ], [ 358878.578500002622604, 255143.611299999058247 ], [ 358875.365900002419949, 255142.107400000095367 ], [ 358871.37389999628067, 255137.430700000375509 ], [ 358871.390100002288818, 255135.530999999493361 ], [ 358874.615299999713898, 255135.557399999350309 ], [ 358874.678199999034405, 255128.169599998742342 ], [ 358873.889899998903275, 255126.052200000733137 ], [ 358871.476400002837181, 255125.39919999986887 ], [ 358860.063900001347065, 255139.871199999004602 ], [ 358859.232400000095367, 255142.819699998944998 ], [ 358856.802699998021126, 255144.066399998962879 ], [ 358856.010799996554852, 255142.371199999004602 ], [ 358853.602600000798702, 255141.084899999201298 ], [ 358851.986400000751019, 255141.493900001049042 ], [ 358851.20889999717474, 255138.109999999403954 ], [ 358841.565499998629093, 255134.2314000017941 ], [ 358840.773599997162819, 255132.536200001835823 ], [ 358849.696900002658367, 255126.276399999856949 ], [ 358853.782399997115135, 255119.977000001817942 ], [ 358855.456200003623962, 255112.813499998301268 ], [ 358854.682300001382828, 255109.007500000298023 ], [ 358851.48759999871254, 255105.392799999564886 ], [ 358842.675700001418591, 255098.565699998289347 ], [ 358837.8378000035882, 255098.526099998503923 ], [ 358831.412500001490116, 255095.518199998885393 ], [ 358828.183600001037121, 255095.913899999111891 ], [ 358824.935000002384186, 255098.631599999964237 ], [ 358820.107900001108646, 255097.325500000268221 ], [ 358817.681800000369549, 255098.149999998509884 ], [ 358816.097900003194809, 255094.759500000625849 ], [ 358813.696999996900558, 255092.629000000655651 ], [ 358812.912299998104572, 255090.089400000870228 ], [ 358814.5320999994874, 255089.258299998939037 ], [ 358832.278099998831749, 255088.559200000017881 ], [ 358835.510600000619888, 255087.741200000047684 ], [ 358837.945699997246265, 255085.861299999058247 ], [ 358840.43299999833107, 255077.860100001096725 ], [ 358836.475100003182888, 255069.172899998724461 ], [ 358834.869699999690056, 255068.315400000661612 ], [ 358831.644500002264977, 255068.289000000804663 ], [ 358829.214699998497963, 255069.535700000822544 ], [ 358829.185999996960163, 255072.912900000810623 ], [ 358833.170800000429153, 255078.434000000357628 ], [ 358826.722099997103214, 255078.170099999755621 ], [ 358825.930100001394749, 255076.474899999797344 ], [ 358823.521999999880791, 255075.1886 ], [ 358823.545400001108646, 255072.444600000977516 ], [ 358825.168799996376038, 255071.191300000995398 ], [ 358824.420000001788139, 255064.43019999936223 ], [ 358826.050599999725819, 255062.332600001245737 ], [ 358823.6891999989748, 255055.558299999684095 ], [ 358820.489100001752377, 255052.576799999922514 ], [ 358812.445799998939037, 255050.188900001347065 ], [ 358805.962899997830391, 255053.935499999672174 ], [ 358800.322300001978874, 255053.467199999839067 ], [ 358797.163599997758865, 255045.630899999290705 ], [ 358798.014899998903275, 255040.360500000417233 ], [ 358791.611100003123283, 255034.819699998944998 ], [ 358788.384099997580051, 255035.004299998283386 ], [ 358784.334600001573563, 255037.082100000232458 ], [ 358781.928199999034405, 255035.584800001233816 ], [ 358771.465899996459484, 255033.177099999040365 ], [ 358767.482900001108646, 255027.445000000298023 ], [ 358764.257700003683567, 255027.418600000441074 ], [ 358758.597300000488758, 255029.272100001573563 ], [ 358756.181999996304512, 255028.830200001597404 ], [ 358751.370999999344349, 255025.624400001019239 ], [ 358750.593500003218651, 255022.240499999374151 ], [ 358755.440399996936321, 255021.224700000137091 ], [ 358757.900700002908707, 255016.389699999243021 ], [ 358761.924999997019768, 255017.267000000923872 ], [ 358762.75110000371933, 255014.951699998229742 ], [ 358758.732199996709824, 255013.441199999302626 ], [ 358757.938400000333786, 255011.956999998539686 ], [ 358755.519500002264977, 255011.937300000339746 ], [ 358749.895099997520447, 255009.569200001657009 ], [ 358746.687799997627735, 255007.432000000029802 ], [ 358745.897699996829033, 255005.525699999183416 ], [ 358744.288699999451637, 255005.090300001204014 ], [ 358741.056199997663498, 255005.908300001174212 ], [ 358739.452600002288818, 255004.839699998497963 ], [ 358736.221900001168251, 255005.44649999961257 ], [ 358732.231700003147125, 255000.558699999004602 ], [ 358724.188400000333786, 254998.170800000429153 ], [ 358721.767700001597404, 254998.362100001424551 ], [ 358715.282999999821186, 255002.31980000063777 ], [ 358715.310000002384186, 254999.153599999845028 ], [ 358716.92620000243187, 254998.744699999690056 ], [ 358713.765699997544289, 254991.11939999833703 ], [ 358713.799800001084805, 254987.108899999409914 ], [ 358714.634900003671646, 254983.738299999386072 ], [ 358716.267300002276897, 254981.42960000038147 ], [ 358716.290700003504753, 254978.685600001364946 ], [ 358713.900499999523163, 254975.288499999791384 ], [ 358711.492399998009205, 254974.002300001680851 ], [ 358710.712999999523163, 254970.829500000923872 ], [ 358709.116599999368191, 254968.916600000113249 ], [ 358705.893200002610683, 254968.679099999368191 ], [ 358703.465199999511242, 254969.714699998497963 ], [ 358699.392300002276897, 254974.536499999463558 ], [ 358696.167099997401237, 254974.510099999606609 ], [ 358694.563400000333786, 254973.441500000655651 ], [ 358695.396700002253056, 254970.281899999827147 ], [ 358698.638099998235703, 254968.408599998801947 ], [ 358698.656099997460842, 254966.297800000756979 ], [ 358700.292099997401237, 254963.56700000166893 ], [ 358693.85419999808073, 254962.036699999123812 ], [ 358693.071299999952316, 254959.285999998450279 ], [ 358690.664899997413158, 254957.788699999451637 ], [ 358687.439699999988079, 254957.762299999594688 ], [ 358681.745099999010563, 254963.626299999654293 ], [ 358681.725400000810623, 254965.94819999858737 ], [ 358683.316399998962879, 254968.494300000369549 ], [ 358680.901100002229214, 254968.052400000393391 ], [ 358679.274099998176098, 254969.727800000458956 ], [ 358678.420999996364117, 254975.209199998527765 ], [ 358675.186700001358986, 254976.238200001418591 ], [ 358671.96509999781847, 254975.789700001478195 ], [ 358674.428999997675419, 254970.532499998807907 ], [ 358675.271300002932549, 254966.317499998956919 ], [ 358677.724399998784065, 254962.326799999922514 ], [ 358687.482799999415874, 254952.696400001645088 ], [ 358689.935900002717972, 254948.705699998885393 ], [ 358693.168399997055531, 254947.887800000607967 ], [ 358695.601700000464916, 254946.218899998813868 ], [ 358695.630500003695488, 254942.841699998825788 ], [ 358693.24210000038147, 254939.233500000089407 ], [ 358690.833999998867512, 254937.947299998253584 ], [ 358689.260899998247623, 254933.290300000458956 ], [ 358689.287900000810623, 254930.124200001358986 ], [ 358680.456200003623962, 254925.618900001049042 ], [ 358676.428199999034405, 254925.163800001144409 ], [ 358667.618100002408028, 254918.125599998980761 ], [ 358657.836300000548363, 254930.5 ], [ 358656.182300001382828, 254935.341600000858307 ], [ 358652.935500003397465, 254937.848200000822544 ] ] ], [ [ [ 358740.274400003254414, 255381.648400001227856 ], [ 358753.094499997794628, 255391.252500001341105 ], [ 358754.743000000715256, 255387.044100001454353 ], [ 358748.362700000405312, 255378.759300000965595 ], [ 358747.622900001704693, 255370.942800000309944 ], [ 358750.104800000786781, 255363.574799999594688 ], [ 358752.565099999308586, 255358.739799998700619 ], [ 358756.639799997210503, 255353.706900000572205 ], [ 358757.476700000464916, 255350.125100001692772 ], [ 358747.725400000810623, 255358.911299999803305 ], [ 358738.753499999642372, 255370.870200000703335 ], [ 358740.274400003254414, 255381.648400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302013500", "MAP": "F9-546-T60", "PARCEL_NAM": "2A", "ACRE": ".75", "LONGITUDE": -64.91762553, "LATITUDE": 18.32952629, "OBJECTID_1": 24802, "PARCEL_NO_": "107302013500", "Tax_Legal_": "2A ESTATE THOMAS 6C NEW QUARTER", "Name": "MOHANANI, PRAKASH T & BIMLA P(TRUSTEES)", "Address": "9001 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138900, "Improved_V": 737500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.14850699700003, "SHAPE_Area": 3407.2809630699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360221.674999997019768, 255559.059200000017881 ], [ 360196.053300000727177, 255550.30460000038147 ], [ 360181.762999996542931, 255560.354699999094009 ], [ 360171.3175999969244, 255567.700800001621246 ], [ 360162.645300000905991, 255573.799899999052286 ], [ 360164.669299997389317, 255574.790699999779463 ], [ 360194.841300003230572, 255591.196899998933077 ], [ 360257.398100003600121, 255625.212799999862909 ], [ 360249.81139999628067, 255569.210900001227856 ], [ 360221.674999997019768, 255559.059200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9151168, "LATITUDE": 18.32962928, "OBJECTID_1": 32942, "PARCEL_NO_": "107401010100", "Tax_Legal_": "BAKEROE 3Q FRENCHMANS BAY QTR", "Name": "AMER Y DAAS and SUZAN DAAS", "Address": "Po Box 8650", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.758949008, "SHAPE_Area": 2025.042395 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360512.735799998044968, 255563.552299998700619 ], [ 360475.537600003182888, 255575.913499999791384 ], [ 360466.637599997222424, 255579.429200001060963 ], [ 360453.402099996805191, 255618.584300000220537 ], [ 360492.063799999654293, 255623.755899999290705 ], [ 360512.735799998044968, 255563.552299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302020200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92305115000001, "LATITUDE": 18.3296656, "OBJECTID_1": 24833, "PARCEL_NO_": "107302020200", "Tax_Legal_": "HAVENSIGHT 2 FRENCHMAN BAY QTR", "Name": "HAVENSIGHT MANOR LLC", "Address": "PO Box 11600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32500, "Improved_V": 269900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.303474386, "SHAPE_Area": 907.63079802799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359664.219999998807907, 255588.905000001192093 ], [ 359627.284299999475479, 255570.448600001633167 ], [ 359629.505400002002716, 255593.687100000679493 ], [ 359632.673100002110004, 255600.467999998480082 ], [ 359638.25620000064373, 255607.690900001674891 ], [ 359639.863399997353554, 255608.33729999884963 ], [ 359645.460799999535084, 255613.871599998325109 ], [ 359649.485200002789497, 255614.7489 ], [ 359651.913099996745586, 255613.713300000876188 ], [ 359664.219999998807907, 255588.905000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302016200", "MAP": "D9-5764-T94", "PARCEL_NAM": "1A-4", "ACRE": null, "LONGITUDE": -64.91710037, "LATITUDE": 18.32961708, "OBJECTID_1": 24827, "PARCEL_NO_": "107302016200", "Tax_Legal_": "THOMAS ESTATE 1A-2,3&4 6C NEW QTR.", "Name": "SILVEIRA, BRADFORD J. & KIMBERLY", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.36907824, "SHAPE_Area": 1116.7288063000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360293.226400002837181, 255584.342799998819828 ], [ 360254.634900003671646, 255570.939100001007318 ], [ 360257.180100001394749, 255588.518399998545647 ], [ 360261.489000000059605, 255618.280200000852346 ], [ 360298.787900000810623, 255594.098600000143051 ], [ 360297.953100003302097, 255592.634300000965595 ], [ 360293.226400002837181, 255584.342799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302011100", "MAP": "F9-2456-T69", "PARCEL_NAM": "22A", "ACRE": "0.0354", "LONGITUDE": -64.92268743, "LATITUDE": 18.32971216, "OBJECTID_1": 24775, "PARCEL_NO_": "107302011100", "Tax_Legal_": "HAVENSIGHT 21-22A FRENCHMAN BAY QTR", "Name": "HESTER, ERIN", "Address": "PO Box 302472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78600, "Improved_V": 538400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.930795315699996, "SHAPE_Area": 141.10227843199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359710.948399998247623, 255593.720400001853704 ], [ 359669.792300000786781, 255597.394299998879433 ], [ 359666.505900003015995, 255604.544599998742342 ], [ 359710.948399998247623, 255593.720400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91922122, "LATITUDE": 18.32940488, "OBJECTID_1": 24788, "PARCEL_NO_": "107302012500", "Tax_Legal_": "5C ESTATE HAVENSIGHT FRENCHMAN BAY QTR", "Name": "THE LAKHWANI 2011 REVOCABLE LIVING TRUST", "Address": "PO Box 6826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 90100, "Improved_V": 524000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.146192646, "SHAPE_Area": 2455.6647797400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360041.444799996912479, 255607.191100001335144 ], [ 360043.068199999630451, 255605.937800001353025 ], [ 360075.563400000333786, 255577.7060999982059 ], [ 360083.687700003385544, 255570.595499999821186 ], [ 360046.928199999034405, 255531.453400000929832 ], [ 360033.112999998033047, 255544.005899999290705 ], [ 360019.3462999984622, 255550.859299998730421 ], [ 360041.444799996912479, 255607.191100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91325176, "LATITUDE": 18.32923085, "OBJECTID_1": 32948, "PARCEL_NO_": "107401010700", "Tax_Legal_": "BAKKERO 3Hb & 3HC No.5 FRENCHMAN BAY QTR.", "Name": "McQUAID, CHARLES P", "Address": "1341 Turvey Rd", "City": "Downers Grove", "State": "Illinois", "Zip": 60515, "Country": "United States", "Land_Value": 210800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.59173059899999, "SHAPE_Area": 2753.7833041200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360698.608499996364117, 255515.677700001746416 ], [ 360652.673900000751019, 255512.346500001847744 ], [ 360654.270300000905991, 255514.259399998933077 ], [ 360655.049599997699261, 255517.432199999690056 ], [ 360658.276699997484684, 255517.247499998658895 ], [ 360674.441399998962879, 255607.516699999570847 ], [ 360677.652300000190735, 255609.231699999421835 ], [ 360680.074799999594688, 255608.8293999992311 ], [ 360693.909800000488758, 255593.954999998211861 ], [ 360696.614600002765656, 255560.413199998438358 ], [ 360698.608499996364117, 255515.677700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014900", "MAP": "D9-5949-T95", "PARCEL_NAM": "22", "ACRE": "0.336", "LONGITUDE": -64.92253862, "LATITUDE": 18.32951169, "OBJECTID_1": 24815, "PARCEL_NO_": "107302014900", "Tax_Legal_": "22 HAVENSIGHT FRENCHMAN BAY QUARTER", "Name": "SPELLEN, MICHAEL & CHERYL ANN", "Address": "PO Box 10141", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79500, "Improved_V": 258800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.61739644400001, "SHAPE_Area": 1426.0369965699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359669.792300000786781, 255597.394299998879433 ], [ 359710.948399998247623, 255593.720400001853704 ], [ 359716.615099996328354, 255573.963199999183416 ], [ 359725.778499998152256, 255556.689300000667572 ], [ 359705.631499998271465, 255555.257800001651049 ], [ 359695.939499996602535, 255557.078299999237061 ], [ 359691.890000000596046, 255559.156100001186132 ], [ 359684.568400003015995, 255566.695599999278784 ], [ 359669.792300000786781, 255597.394299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302013900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91651299, "LATITUDE": 18.32923383, "OBJECTID_1": 24806, "PARCEL_NO_": "107302013900", "Tax_Legal_": "BAKKERO 3G OF 3 FRENCHMANS BAY QTR", "Name": "SILVEIRA, BRADFORD J. & KIMBERLY", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 269200, "Improved_V": 444900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 417.80089688200002, "SHAPE_Area": 7150.7539534699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360402.43469999730587, 255543.440099999308586 ], [ 360422.727300003170967, 255527.774099998176098 ], [ 360442.210100002586842, 255512.523800000548363 ], [ 360416.336199998855591, 255520.755699999630451 ], [ 360392.875799998641014, 255529.640700001269579 ], [ 360387.222599998116493, 255530.649900000542402 ], [ 360374.319799996912479, 255530.755399998277426 ], [ 360357.4358000010252, 255524.917700000107288 ], [ 360324.44709999859333, 255516.415100000798702 ], [ 360298.672100000083447, 255513.03770000115037 ], [ 360271.776100002229214, 255546.592599999159575 ], [ 360293.226400002837181, 255584.342799998819828 ], [ 360299.6554000005126, 255586.92850000038743 ], [ 360319.165399998426437, 255594.775499999523163 ], [ 360331.799999997019768, 255599.857200000435114 ], [ 360335.279399998486042, 255596.402100000530481 ], [ 360337.492700003087521, 255594.204300001263618 ], [ 360347.24040000140667, 255585.840300001204014 ], [ 360353.743000000715256, 255579.771800000220537 ], [ 360359.412399999797344, 255576.862900000065565 ], [ 360402.43469999730587, 255543.440099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92301317, "LATITUDE": 18.32942511, "OBJECTID_1": 24835, "PARCEL_NO_": "107302020300", "Tax_Legal_": "HAVENSIGHT 3 FRENCHMAN BAY QTR", "Name": "ANGELA A BAIRD CARTY FAMILY REVOCABLE TRUST", "Address": "PO Box 307162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45000, "Improved_V": 321100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.596856906, "SHAPE_Area": 1158.9430608 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359674.07379999756813, 255568.08729999884963 ], [ 359629.947800002992153, 255541.761700000613928 ], [ 359627.394000001251698, 255557.572799999266863 ], [ 359627.284299999475479, 255570.448600001633167 ], [ 359664.219999998807907, 255588.905000001192093 ], [ 359674.07379999756813, 255568.08729999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91567756000001, "LATITUDE": 18.32932289, "OBJECTID_1": 32958, "PARCEL_NO_": "107401011700", "Tax_Legal_": "BAKKERO 3P-1 FRENCHMAN BAY", "Name": "CUSTOM RENTAL SOLUTIONS LLC", "Address": "6531 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 129200, "Improved_V": 371500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.33337368100001, "SHAPE_Area": 3791.4558739899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360462.659999996423721, 255573.063900001347065 ], [ 360460.76969999819994, 255510.986900001764297 ], [ 360449.396799996495247, 255520.815200001001358 ], [ 360425.887900002300739, 255535.399399999529123 ], [ 360417.769000001251698, 255541.876800000667572 ], [ 360400.690800003707409, 255558.83559999987483 ], [ 360390.147600002586842, 255565.926500000059605 ], [ 360377.968400001525879, 255575.748199999332428 ], [ 360357.72070000320673, 255586.137200001627207 ], [ 360358.505400002002716, 255588.676699999719858 ], [ 360365.733400002121925, 255592.113400001078844 ], [ 360374.588500000536442, 255593.874600000679493 ], [ 360385.8733000010252, 255594.389199998229742 ], [ 360395.568800002336502, 255592.146499998867512 ], [ 360409.322899997234344, 255586.770599998533726 ], [ 360419.830099999904633, 255583.901299998164177 ], [ 360444.055399999022484, 255579.877700001001358 ], [ 360462.659999996423721, 255573.063900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302021000", "MAP": "D9-1681-T81", "PARCEL_NAM": "7", "ACRE": ".396", "LONGITUDE": -64.92100067, "LATITUDE": 18.32930395, "OBJECTID_1": 24842, "PARCEL_NO_": "107302021000", "Tax_Legal_": "HAVENSIGHT 7 FRENCHMAN BAY QTR", "Name": "LIBERTY RENTALS LLC", "Address": "PO BOX 503268", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 130700, "Improved_V": 417800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.07016465000001, "SHAPE_Area": 1910.5749263600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359852.725599996745586, 255515.931800000369549 ], [ 359842.465400002896786, 255584.453200001269579 ], [ 359856.955700002610683, 255587.315999999642372 ], [ 359875.500799998641014, 255587.467799998819828 ], [ 359875.225000001490116, 255525.192899998277426 ], [ 359868.022100001573563, 255518.801199998706579 ], [ 359852.725599996745586, 255515.931800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302021100", "MAP": "D9-5056-T91", "PARCEL_NAM": "11", "ACRE": null, "LONGITUDE": -64.92072955, "LATITUDE": 18.32936516, "OBJECTID_1": 24843, "PARCEL_NO_": "107302021100", "Tax_Legal_": "HAVENSIGHT 11 FRENCHMAN BAY QTR", "Name": "ROWLAND, PAMELA E", "Address": "7156 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94700, "Improved_V": 235200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.09599121100001, "SHAPE_Area": 1407.1895542300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359875.500799998641014, 255587.467799998819828 ], [ 359890.847800001502037, 255584.427000001072884 ], [ 359910.256800003349781, 255577.830800000578165 ], [ 359911.903599999845028, 255573.833500001579523 ], [ 359909.518799997866154, 255569.803300000727177 ], [ 359903.246299996972084, 255548.853700000792742 ], [ 359900.858000002801418, 255545.24549999833107 ], [ 359898.455200001597404, 255543.3260000012815 ], [ 359894.432599999010563, 255542.23759999871254 ], [ 359888.800999999046326, 255540.713899999856949 ], [ 359883.1891999989748, 255536.868299998342991 ], [ 359880.795500002801418, 255533.893399998545647 ], [ 359879.227799996733665, 255528.603199999779463 ], [ 359875.225000001490116, 255525.192899998277426 ], [ 359875.500799998641014, 255587.467799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302020900", "MAP": null, "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.92129682, "LATITUDE": 18.32922709, "OBJECTID_1": 24841, "PARCEL_NO_": "107302020900", "Tax_Legal_": "HAVENSIGHT 9 FRENCHMAN BAY QTR", "Name": "HAVENSITE PROPERTIES LLC", "Address": "25 E Erie St", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 56100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.68799987899999, "SHAPE_Area": 2425.4534658699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359815.67119999974966, 255511.406599998474121 ], [ 359807.086599998176098, 255572.55350000038743 ], [ 359842.465400002896786, 255584.453200001269579 ], [ 359852.725599996745586, 255515.931800000369549 ], [ 359815.67119999974966, 255511.406599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401016300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91247979000001, "LATITUDE": 18.32914514, "OBJECTID_1": 33000, "PARCEL_NO_": "107401016300", "Tax_Legal_": "BAKKERO ESTATE 3hd No.5 FRENCHMAN'S BAY QTR.", "Name": "WHITAKER, LEE C. & CASSANDRA D.", "Address": "PO Box 7425", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120900, "Improved_V": 600900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.103029096, "SHAPE_Area": 2732.7651993200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360749.379199996590614, 255519.259700000286102 ], [ 360729.657300002872944, 255562.583500001579523 ], [ 360732.040299996733665, 255566.82490000128746 ], [ 360735.22410000115633, 255571.7060999982059 ], [ 360746.356100000441074, 255590.162399999797344 ], [ 360795.25450000166893, 255529.556499999016523 ], [ 360806.569799996912479, 255526.482700001448393 ], [ 360800.211099997162819, 255515.664900001138449 ], [ 360760.6891999989748, 255516.819099999964237 ], [ 360749.379199996590614, 255519.259700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302021200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92036778000001, "LATITUDE": 18.32921609, "OBJECTID_1": 24844, "PARCEL_NO_": "107302021200", "Tax_Legal_": "HAVENSIGHT 30 FRENCHMAN BAY QTR", "Name": "LYMAN, SARAH MARGARET", "Address": "PO Box 10214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74900, "Improved_V": 202200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.367992047, "SHAPE_Area": 1989.29879624 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359953.928900003433228, 255562.778499998152256 ], [ 359955.026600003242493, 255528.590300001204014 ], [ 359884.890000000596046, 255526.538600001484156 ], [ 359886.461199998855591, 255531.406599998474121 ], [ 359892.875799998641014, 255535.681000001728535 ], [ 359900.119999997317791, 255537.2179000005126 ], [ 359905.728200003504753, 255541.485700000077486 ], [ 359908.910300001502037, 255546.578000001609325 ], [ 359913.607900001108646, 255563.081700000911951 ], [ 359916.829599998891354, 255563.530299998819828 ], [ 359919.270099997520447, 255561.017099998891354 ], [ 359921.631499998271465, 255567.791499998420477 ], [ 359919.19820000231266, 255569.460299998521805 ], [ 359918.377499997615814, 255571.142299998551607 ], [ 359919.968500003218651, 255573.688499998301268 ], [ 359922.38740000128746, 255573.708299998193979 ], [ 359953.928900003433228, 255562.778499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302020800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92165673, "LATITUDE": 18.3291618, "OBJECTID_1": 24840, "PARCEL_NO_": "107302020800", "Tax_Legal_": "HAVENSIGHT 13 FRENCHMAN BAY QTR", "Name": "HAVENSITE PROPERTIES LLC", "Address": "PO Box 11600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51700, "Improved_V": 398700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.91031076900001, "SHAPE_Area": 2297.1233463200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359776.17620000243187, 255509.394600000232458 ], [ 359766.079700000584126, 255558.707899998873472 ], [ 359807.086599998176098, 255572.55350000038743 ], [ 359815.67119999974966, 255511.406599998474121 ], [ 359776.17620000243187, 255509.394600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302020400", "MAP": "F9-619-T60", "PARCEL_NAM": "16", "ACRE": null, "LONGITUDE": -64.92287008, "LATITUDE": 18.32913797, "OBJECTID_1": 24836, "PARCEL_NO_": "107302020400", "Tax_Legal_": "HAVENSIGHT 16 FRENCHMAN BAY QTR", "Name": "HAVENSITE VILLAS LLC", "Address": "PO Box 11600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 102300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.609087972, "SHAPE_Area": 2380.01125976 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359689.546599999070168, 255550.271000001579523 ], [ 359683.495300002396107, 255503.35869999974966 ], [ 359672.183499999344349, 255506.010400000959635 ], [ 359656.807800002396107, 255512.428399998694658 ], [ 359640.609600000083447, 255520.739599999040365 ], [ 359633.279100000858307, 255529.334399998188019 ], [ 359631.634099997580051, 255533.120600000023842 ], [ 359629.947800002992153, 255541.761700000613928 ], [ 359674.07379999756813, 255568.08729999884963 ], [ 359676.541299998760223, 255562.407999999821186 ], [ 359679.804300002753735, 255558.0016999989748 ], [ 359683.060099996626377, 255554.439800001680851 ], [ 359689.546599999070168, 255550.271000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91894208, "LATITUDE": 18.32914207, "OBJECTID_1": 24789, "PARCEL_NO_": "107302012600", "Tax_Legal_": "5D&5F-1 ESTATE HAVENSIGHT PANORAMA VIEW CONDOS UNIT No.1A", "Name": "SURESH H VASANDMALANI LIVING TRUST", "Address": "PO Box 1630", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041630, "Country": "United States", "Land_Value": 0, "Improved_V": 221900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.11012089900001, "SHAPE_Area": 1993.1275920600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360112.124399997293949, 255545.497000001370907 ], [ 360068.92339999973774, 255505.246700000017881 ], [ 360065.647799998521805, 255511.130499999970198 ], [ 360058.310099996626377, 255520.569699998944998 ], [ 360046.928199999034405, 255531.453400000929832 ], [ 360083.687700003385544, 255570.595499999821186 ], [ 360098.310999996960163, 255557.83839999884367 ], [ 360112.124399997293949, 255545.497000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91512286, "LATITUDE": 18.32905216, "OBJECTID_1": 32957, "PARCEL_NO_": "107401011600", "Tax_Legal_": "BAKERO 3P-2 FRENCHMAN BAY QTR", "Name": "MCKEAN, KAY", "Address": "PO Box 11208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184900, "Improved_V": 496400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.58266716, "SHAPE_Area": 2775.9951836099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360504.715899996459484, 255558.420499999076128 ], [ 360501.279500000178814, 255488.520399998873472 ], [ 360496.407499998807907, 255492.491300001740456 ], [ 360469.705700002610683, 255503.249600000679493 ], [ 360460.76969999819994, 255510.986900001764297 ], [ 360462.659999996423721, 255573.063900001347065 ], [ 360484.507700003683567, 255564.165699999779463 ], [ 360504.715899996459484, 255558.420499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302013800", "MAP": "G9-363-T56", "PARCEL_NAM": "3E", "ACRE": "1.00", "LONGITUDE": -64.91735701, "LATITUDE": 18.32904204, "OBJECTID_1": 24805, "PARCEL_NO_": "107302013800", "Tax_Legal_": "3E OF 3 ESTATE BAKKERO FRENCHMANS BAY QTR", "Name": "KEAN, CATHERINE A", "Address": "PO Box 6406", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 123500, "Improved_V": 336900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.76885456100001, "SHAPE_Area": 4660.2398912199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360248.821000002324581, 255496.16440000012517 ], [ 360223.185699999332428, 255493.142599999904633 ], [ 360203.633900001645088, 255541.695500001311302 ], [ 360201.124499998986721, 255547.927099999040365 ], [ 360199.669600002467632, 255551.540199998766184 ], [ 360221.674999997019768, 255559.059200000017881 ], [ 360249.81139999628067, 255569.210900001227856 ], [ 360253.027699999511242, 255570.292700000107288 ], [ 360271.776100002229214, 255546.592599999159575 ], [ 360298.672100000083447, 255513.03770000115037 ], [ 360302.762999996542931, 255506.105099998414516 ], [ 360285.832299999892712, 255505.755399998277426 ], [ 360259.281499996781349, 255498.783100001513958 ], [ 360256.867899999022484, 255498.130100000649691 ], [ 360248.821000002324581, 255496.16440000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302013200", "MAP": "D9-2976-T85", "PARCEL_NAM": "2B", "ACRE": ".407", "LONGITUDE": -64.91822156000001, "LATITUDE": 18.32928961, "OBJECTID_1": 24799, "PARCEL_NO_": "107302013200", "Tax_Legal_": "2B ESTATE THOMAS 6C NEW QTR", "Name": "ORVILLE AND JULIETTE KEAN FAMILY TRUST", "Address": "PO Box 6046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 73900, "Improved_V": 122900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.13992106399999, "SHAPE_Area": 1238.3915345099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360174.337399996817112, 255542.873100001364946 ], [ 360164.047600001096725, 255552.777300000190735 ], [ 360159.390900000929832, 255551.50730000063777 ], [ 360116.186599999666214, 255541.941599998623133 ], [ 360112.124399997293949, 255545.497000001370907 ], [ 360109.542199999094009, 255547.804000001400709 ], [ 360142.132799997925758, 255563.758200000971556 ], [ 360162.645300000905991, 255573.799899999052286 ], [ 360171.3175999969244, 255567.700800001621246 ], [ 360181.762999996542931, 255560.354699999094009 ], [ 360196.053300000727177, 255550.30460000038147 ], [ 360191.925999999046326, 255548.894299998879433 ], [ 360174.337399996817112, 255542.873100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302021300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92007836000001, "LATITUDE": 18.32920582, "OBJECTID_1": 24845, "PARCEL_NO_": "107302021300", "Tax_Legal_": "HAVENSIGHT 8 FRENCHMANS BAY QTR", "Name": "MOOLENAAR III, LUCIEN A", "Address": "Brookside", "City": "Hook Norton", "State": "Oxfordshire", "Zip": 0, "Country": "United Kingdom", "Land_Value": 59100, "Improved_V": 231700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.8797455431, "SHAPE_Area": 275.30978258 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359963.894199997186661, 255528.8739 ], [ 359955.026600003242493, 255528.590300001204014 ], [ 359953.928900003433228, 255562.778499998152256 ], [ 359958.781199999153614, 255561.129399999976158 ], [ 359962.015399999916553, 255560.100400000810623 ], [ 359963.894199997186661, 255528.8739 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302021400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91987606000001, "LATITUDE": 18.32917303, "OBJECTID_1": 24846, "PARCEL_NO_": "107302021400", "Tax_Legal_": "HAVENSIGHT 4 FRENCHMANS BAY QTR", "Name": "MOOLENAAR III, LUCIEN A", "Address": "Brookside", "City": "Hook Norton", "State": "Oxfordshire", "Zip": 0, "Country": "United Kingdom", "Land_Value": 23600, "Improved_V": 900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.58301761000001, "SHAPE_Area": 875.12406083400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359962.015399999916553, 255560.100400000810623 ], [ 359977.382100000977516, 255554.737799998372793 ], [ 359994.386600002646446, 255546.433200001716614 ], [ 360001.70099999755621, 255539.738099999725819 ], [ 360008.225199997425079, 255531.136599998921156 ], [ 359963.894199997186661, 255528.8739 ], [ 359962.015399999916553, 255560.100400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302020700", "MAP": "G9-452-T57", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.92224785000001, "LATITUDE": 18.32906595, "OBJECTID_1": 24839, "PARCEL_NO_": "107302020700", "Tax_Legal_": "HAVENSIGHT 6 FRENCHMAN BAY QTR", "Name": "RICHARD H DRIEHAUS 2003 REVOC TR", "Address": "25 E Erie St", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 128300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.72790910499998, "SHAPE_Area": 3759.4565007000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359689.546599999070168, 255550.271000001579523 ], [ 359692.786200001835823, 255548.608800001442432 ], [ 359701.673600003123283, 255546.570599999278784 ], [ 359721.833200000226498, 255546.524500001221895 ], [ 359737.133400000631809, 255548.971799999475479 ], [ 359766.079700000584126, 255558.707899998873472 ], [ 359776.17620000243187, 255509.394600000232458 ], [ 359752.800399996340275, 255508.358899999409914 ], [ 359689.150200001895428, 255502.138399999588728 ], [ 359683.495300002396107, 255503.35869999974966 ], [ 359689.546599999070168, 255550.271000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302016100", "MAP": "D9-2976-T85", "PARCEL_NAM": "3DB", "ACRE": ".72", "LONGITUDE": -64.91809705, "LATITUDE": 18.32893482, "OBJECTID_1": 24826, "PARCEL_NO_": "107302016100", "Tax_Legal_": "BAKKERO 3DB FRENCHMAN BAY QTR.", "Name": "ORVILLE & JULIETTE KEAN FAMILY TRUST", "Address": "PO Box 6046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 129400, "Improved_V": 239000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.628117694, "SHAPE_Area": 2853.3574204699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360192.775399997830391, 255543.83500000089407 ], [ 360201.011200003325939, 255523.637499999254942 ], [ 360203.455300003290176, 255520.702199999243021 ], [ 360202.699299998581409, 255514.785300001502037 ], [ 360190.692800000309944, 255504.343499999493361 ], [ 360174.706799998879433, 255487.747400000691414 ], [ 360152.156999997794628, 255484.39640000090003 ], [ 360139.040200002491474, 255509.620299998670816 ], [ 360130.016099996864796, 255527.700500000268221 ], [ 360188.586000002920628, 255547.750900000333786 ], [ 360192.775399997830391, 255543.83500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91456455, "LATITUDE": 18.32891988, "OBJECTID_1": 32956, "PARCEL_NO_": "107401011500", "Tax_Legal_": "BAKKERO 3P-3 5 FRENCHMAN BAY QTR", "Name": "MARKS, GREGORY", "Address": "BOX 2782", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 155500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.31891555, "SHAPE_Area": 5423.3193556400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360582.983900003135204, 255552.517099998891354 ], [ 360578.748499996960163, 255481.766100000590086 ], [ 360506.961499996483326, 255484.133900001645088 ], [ 360501.279500000178814, 255488.520399998873472 ], [ 360504.715899996459484, 255558.420499999076128 ], [ 360531.388899996876717, 255551.03940000012517 ], [ 360549.136799998581409, 255550.129200000315905 ], [ 360568.468500003218651, 255552.609400000423193 ], [ 360582.983900003135204, 255552.517099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.913912, "LATITUDE": 18.32892374, "OBJECTID_1": 32955, "PARCEL_NO_": "107401011400", "Tax_Legal_": "BAKKERO 3P-4 FRENCHMAN BAY QTR", "Name": "CHARLOTTE A HARTHMAN LA BARRE TRUST", "Address": "PO Box 8420", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 157900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.422788819, "SHAPE_Area": 4258.6715143800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360620.694700002670288, 255479.998500000685453 ], [ 360578.748499996960163, 255481.766100000590086 ], [ 360582.983900003135204, 255552.517099998891354 ], [ 360597.497599996626377, 255552.635899998247623 ], [ 360615.207699999213219, 255556.158399999141693 ], [ 360621.656400002539158, 255556.422200001776218 ], [ 360629.73929999768734, 255554.166400000452995 ], [ 360634.600500002503395, 255551.461899999529123 ], [ 360640.287900000810623, 255546.442200001329184 ], [ 360643.552699998021126, 255541.82490000128746 ], [ 360646.849799998104572, 255533.408100001513958 ], [ 360648.564999997615814, 255521.389899998903275 ], [ 360646.991899996995926, 255516.732900001108646 ], [ 360622.278499998152256, 255483.388999998569489 ], [ 360620.694700002670288, 255479.998500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91929725, "LATITUDE": 18.32888502, "OBJECTID_1": 24791, "PARCEL_NO_": "107302012700", "Tax_Legal_": "5E ESTATE HAVENSIGHT FRENCHMAN BAY QTR.", "Name": "MAY, ANDREW R. & FATMA N.", "Address": "10321 Beaumont St", "City": "Fairfax", "State": "Virginia", "Zip": 22030, "Country": "United States", "Land_Value": 80600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.83358466300001, "SHAPE_Area": 1785.2205652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360070.613399997353554, 255496.183499999344349 ], [ 360043.427100002765656, 255469.152100000530481 ], [ 360037.608499996364117, 255489.580600000917912 ], [ 360030.175499998033047, 255510.206900000572205 ], [ 360013.808200001716614, 255538.359499998390675 ], [ 360007.289399996399879, 255546.3277000002563 ], [ 360008.075900003314018, 255548.656199999153614 ], [ 360017.773299999535084, 255546.202399998903275 ], [ 360026.676899999380112, 255542.264499999582767 ], [ 360037.221900001168251, 255534.962499998509884 ], [ 360052.671300001442432, 255519.8902000002563 ], [ 360062.451300002634525, 255507.72690000012517 ], [ 360066.545800000429153, 255500.372099999338388 ], [ 360070.613399997353554, 255496.183499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91612789, "LATITUDE": 18.32869126, "OBJECTID_1": 24822, "PARCEL_NO_": "107302015700", "Tax_Legal_": "3SA BAKKERO NO 5 FRENCHMAN BAY QTR", "Name": "CHARLES, SEVERIN K", "Address": "PO BOX 3160", "City": "Southfield", "State": "Michigan", "Zip": 48037, "Country": "United States", "Land_Value": 119700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.932142099, "SHAPE_Area": 3652.9884760999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360428.537000000476837, 255508.401099998503923 ], [ 360375.751900002360344, 255457.306600000709295 ], [ 360353.149999998509884, 255460.076900001615286 ], [ 360338.630999997258186, 255460.591400001198053 ], [ 360332.191299997270107, 255459.272100001573563 ], [ 360357.504199996590614, 255516.896699998527765 ], [ 360375.1908999979496, 255523.163199998438358 ], [ 360386.479299999773502, 255523.25560000166297 ], [ 360428.537000000476837, 255508.401099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91662647, "LATITUDE": 18.32864453, "OBJECTID_1": 24807, "PARCEL_NO_": "107302014000", "Tax_Legal_": "3T ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "ORVILLE & JULIETTE KEAN FAMILY TRUST", "Address": "PO Box 6046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.54415605, "SHAPE_Area": 2217.2951993400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360302.436800003051758, 255449.740499999374151 ], [ 360302.762999996542931, 255506.105099998414516 ], [ 360322.901000000536442, 255508.592000000178814 ], [ 360357.504199996590614, 255516.896699998527765 ], [ 360332.191299997270107, 255459.272100001573563 ], [ 360322.529899999499321, 255457.504299998283386 ], [ 360302.436800003051758, 255449.740499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91831943, "LATITUDE": 18.32851593, "OBJECTID_1": 24823, "PARCEL_NO_": "107302015800", "Tax_Legal_": "5 I HAVENSIGHT FRENCHMAN BAY QUARTER", "Name": "VISHINDAS, RAJ & HARDEVI NAGRANI", "Address": "5332 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90100, "Improved_V": 427600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.691660891, "SHAPE_Area": 1839.51848978 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360142.900200001895428, 255435.135800000280142 ], [ 360138.570200003683567, 255470.1418999992311 ], [ 360111.812600001692772, 255487.44370000064373 ], [ 360139.040200002491474, 255509.620299998670816 ], [ 360152.156999997794628, 255484.39640000090003 ], [ 360175.118600003421307, 255439.410300001502037 ], [ 360142.900200001895428, 255435.135800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9156034, "LATITUDE": 18.32857722, "OBJECTID_1": 24808, "PARCEL_NO_": "107302014100", "Tax_Legal_": "BAKKERO 3S FRENCHMANS BAY QTR", "Name": "Danton & Amy Durand & Todd & Ayishih Bellew", "Address": "PO BOX 600180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 154800, "Improved_V": 297400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.38626128599998, "SHAPE_Area": 3194.37026741 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360494.866800002753735, 255484.03489999845624 ], [ 360404.83669999986887, 255450.789599999785423 ], [ 360403.218699999153614, 255451.409699998795986 ], [ 360384.630300000309944, 255456.323800001293421 ], [ 360375.751900002360344, 255457.306600000709295 ], [ 360428.537000000476837, 255508.401099998503923 ], [ 360430.153200000524521, 255507.99210000038147 ], [ 360458.442500002682209, 255500.202100001275539 ], [ 360469.781199999153614, 255494.384300000965595 ], [ 360489.190200001001358, 255487.788100000470877 ], [ 360494.866800002753735, 255484.03489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91701913, "LATITUDE": 18.32855096, "OBJECTID_1": 24825, "PARCEL_NO_": "107302016000", "Tax_Legal_": "3TC ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "KEAN, CATHERINE A", "Address": "PO Box 6406", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 119700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.64367652300001, "SHAPE_Area": 2375.75130248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360267.038199998438358, 255440.162599999457598 ], [ 360259.281499996781349, 255498.783100001513958 ], [ 360285.832299999892712, 255505.755399998277426 ], [ 360302.762999996542931, 255506.105099998414516 ], [ 360302.436800003051758, 255449.740499999374151 ], [ 360290.379900000989437, 255445.208799999207258 ], [ 360267.038199998438358, 255440.162599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302015900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91739971, "LATITUDE": 18.32849222, "OBJECTID_1": 24824, "PARCEL_NO_": "107302015900", "Tax_Legal_": "3TB ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "MORRIS, KENNETH E. & CORLETTE L", "Address": "PO Box 11732", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99800, "Improved_V": 400500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.63900826, "SHAPE_Area": 2348.9467738100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360267.038199998438358, 255440.162599999457598 ], [ 360251.723600000143051, 255439.403999999165535 ], [ 360228.335199996829033, 255439.845899999141693 ], [ 360214.181900002062321, 255492.081199999898672 ], [ 360248.821000002324581, 255496.16440000012517 ], [ 360256.867899999022484, 255498.130100000649691 ], [ 360259.281499996781349, 255498.783100001513958 ], [ 360267.038199998438358, 255440.162599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9180416, "LATITUDE": 18.32845837, "OBJECTID_1": 24810, "PARCEL_NO_": "107302014300", "Tax_Legal_": "3TA BAKKERO FRENCHMAN'S BAY QTR", "Name": "ORVILLE & JULIETTE KEAN FAMILY TRUST", "Address": "PO Box 6046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.106166734, "SHAPE_Area": 923.46027707899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360152.156999997794628, 255484.39640000090003 ], [ 360174.706799998879433, 255487.747400000691414 ], [ 360172.309399999678135, 255485.194600000977516 ], [ 360170.779500000178814, 255475.471799999475479 ], [ 360173.232600003480911, 255471.481100000441074 ], [ 360175.667700000107288, 255469.601199999451637 ], [ 360198.296599999070168, 255463.664700001478195 ], [ 360199.918300002813339, 255462.622499998658895 ], [ 360199.939800001680851, 255460.089499998837709 ], [ 360188.725199997425079, 255451.3429000005126 ], [ 360177.535700000822544, 255439.641199998557568 ], [ 360175.118600003421307, 255439.410300001502037 ], [ 360152.156999997794628, 255484.39640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025800", "MAP": "D9-8986-T015", "PARCEL_NAM": "2A", "ACRE": ".148", "LONGITUDE": -64.91983467, "LATITUDE": 18.3285594, "OBJECTID_1": 24891, "PARCEL_NO_": "107302025800", "Tax_Legal_": "BELLEVUE 2B & 3A (CONS) NO.7 FRENCHMAN'S BAY QTR", "Name": "ENEZ IONE HARVEY TRUST", "Address": "PO Box 893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040893, "Country": "United States", "Land_Value": 59500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.19772946699999, "SHAPE_Area": 975.96519507899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359993.993699997663498, 255458.020199999213219 ], [ 359987.057899996638298, 255457.320500001311302 ], [ 359972.753200002014637, 255455.545499999076128 ], [ 359966.76630000025034, 255475.701900001615286 ], [ 359963.903899997472763, 255484.847699999809265 ], [ 359974.720799997448921, 255485.663499999791384 ], [ 360007.444099999964237, 255488.131299998611212 ], [ 360008.075300000607967, 255486.124299999326468 ], [ 359993.993699997663498, 255458.020199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401011800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9152659, "LATITUDE": 18.32826593, "OBJECTID_1": 32959, "PARCEL_NO_": "107401011800", "Tax_Legal_": "BAKKERO (REM) 3R FRENCHMANS BAY QTR", "Name": "THE ELAINE FAHIE TRUST", "Address": "PO Box 51", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 150500, "Improved_V": 317600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.05216860600001, "SHAPE_Area": 4754.8273430500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360513.906499996781349, 255426.140000000596046 ], [ 360437.461400002241135, 255407.360300000756979 ], [ 360436.556199997663498, 255418.962999999523163 ], [ 360434.06530000269413, 255427.386399999260902 ], [ 360429.978000000119209, 255433.896800000220537 ], [ 360420.221400000154972, 255443.316199999302626 ], [ 360404.83669999986887, 255450.789599999785423 ], [ 360494.866800002753735, 255484.03489999845624 ], [ 360501.374799996614456, 255477.333200000226498 ], [ 360502.206299997866154, 255474.384700000286102 ], [ 360503.83330000191927, 255472.709199998527765 ], [ 360508.793499998748302, 255458.395500000566244 ], [ 360511.305900000035763, 255447.4391999989748 ], [ 360513.906499996781349, 255426.140000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91435141, "LATITUDE": 18.32846887, "OBJECTID_1": 32954, "PARCEL_NO_": "107401011300", "Tax_Legal_": "BAKKERO 3M OF 3 FRENCHMANS BAY QTR", "Name": "CHARLOTTE A HARTHMAN LA BARRE TR", "Address": "PO Box 8420", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 166200, "Improved_V": 575100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.30046640500001, "SHAPE_Area": 2982.89378648 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360616.09570000320673, 255451.924300000071526 ], [ 360519.854299999773502, 255454.93189999833703 ], [ 360516.026900000870228, 255461.198899999260902 ], [ 360516.01070000231266, 255463.098600000143051 ], [ 360508.626199997961521, 255478.025800000876188 ], [ 360506.961499996483326, 255484.133900001645088 ], [ 360578.748499996960163, 255481.766100000590086 ], [ 360620.694700002670288, 255479.998500000685453 ], [ 360617.519799999892712, 255474.061900001019239 ], [ 360616.000699996948242, 255463.072599999606609 ], [ 360616.09570000320673, 255451.924300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025800", "MAP": "D9-8986-T015", "PARCEL_NAM": "3B", "ACRE": ".28", "LONGITUDE": -64.92014288, "LATITUDE": 18.32851433, "OBJECTID_1": 24891, "PARCEL_NO_": "107302025800", "Tax_Legal_": "BELLEVUE 2B & 3A (CONS) NO.7 FRENCHMAN'S BAY QTR", "Name": "ENEZ IONE HARVEY TRUST", "Address": "PO Box 893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040893, "Country": "United States", "Land_Value": 59500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.769994236, "SHAPE_Area": 967.25893615400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359972.753200002014637, 255455.545499999076128 ], [ 359940.778999999165535, 255451.604100000113249 ], [ 359934.535400003194809, 255472.905000001192093 ], [ 359932.6925999969244, 255480.996500000357628 ], [ 359963.903899997472763, 255484.847699999809265 ], [ 359966.76630000025034, 255475.701900001615286 ], [ 359972.753200002014637, 255455.545499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022500", "MAP": "F9-1298-T63", "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.92036863, "LATITUDE": 18.32813043, "OBJECTID_1": 24857, "PARCEL_NO_": "107302022500", "Tax_Legal_": "BELLEVUE 3A & 5 REM NO. 7 FRENCHMAN'S BAY QTR", "Name": "SPRAUVE, GAYLORD A.", "Address": "3201 Southgreen Rd", "City": "Windsor Mill", "State": "Maryland", "Zip": 21244, "Country": "United States", "Land_Value": 138700, "Improved_V": 285600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.398488743, "SHAPE_Area": 3078.7951904800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359920.139200001955032, 255380.170899998396635 ], [ 359903.129299998283386, 255477.348600000143051 ], [ 359913.651000000536442, 255478.646899998188019 ], [ 359920.750399999320507, 255471.569699998944998 ], [ 359940.778999999165535, 255451.604100000113249 ], [ 359943.670900002121925, 255441.737900000065565 ], [ 359957.775600001215935, 255395.201699998229742 ], [ 359947.365500003099442, 255386.672699999064207 ], [ 359939.336499996483326, 255382.596200000494719 ], [ 359932.095899999141693, 255380.637099999934435 ], [ 359920.139200001955032, 255380.170899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022400", "MAP": "G3-97-T61", "PARCEL_NAM": "4", "ACRE": null, "LONGITUDE": -64.92071847, "LATITUDE": 18.32812291, "OBJECTID_1": 24856, "PARCEL_NO_": "107302022400", "Tax_Legal_": "BELLEVUE 4 FRENCHMAN BAY QTR", "Name": "INGE VERWEIZ AUSTIN TRUST", "Address": "18285 Blue Ridge Tpke", "City": "Gordonsville", "State": "Virginia", "Zip": 22942, "Country": "United States", "Land_Value": 132700, "Improved_V": 484800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.02788041600002, "SHAPE_Area": 3906.4617699700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359903.07769999653101, 255379.344099998474121 ], [ 359880.526100002229214, 255376.204300001263618 ], [ 359876.485500000417233, 255377.226700000464916 ], [ 359873.858900003135204, 255379.084699999541044 ], [ 359872.612300001084805, 255405.754000000655651 ], [ 359869.46000000089407, 255473.193999998271465 ], [ 359873.83839999884367, 255473.734299998730421 ], [ 359890.111000001430511, 255475.742199998348951 ], [ 359903.129299998283386, 255477.348600000143051 ], [ 359920.139200001955032, 255380.170899998396635 ], [ 359918.392200000584126, 255380.102800000458956 ], [ 359903.07769999653101, 255379.344099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92109876000001, "LATITUDE": 18.32815684, "OBJECTID_1": 24855, "PARCEL_NO_": "107302022300", "Tax_Legal_": "BELLEVUE 6 FRENCHMAN BAY QTR", "Name": "CRUMP, CARL H", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 150700, "Improved_V": 530700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.79241111799999, "SHAPE_Area": 3394.9254347400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359872.612300001084805, 255405.754000000655651 ], [ 359873.858900003135204, 255379.084699999541044 ], [ 359872.152999997138977, 255380.291400000452995 ], [ 359869.99549999833107, 255381.817600000649691 ], [ 359854.618000000715256, 255388.446699999272823 ], [ 359839.267499998211861, 255391.909699998795986 ], [ 359827.543799996376038, 255392.580600000917912 ], [ 359829.896600000560284, 255422.560100000351667 ], [ 359833.522399999201298, 255468.75959999859333 ], [ 359854.390000000596046, 255471.334499999880791 ], [ 359869.46000000089407, 255473.193999998271465 ], [ 359872.612300001084805, 255405.754000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022200", "MAP": null, "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.92148709, "LATITUDE": 18.32816124, "OBJECTID_1": 24854, "PARCEL_NO_": "107302022200", "Tax_Legal_": "BELLEVUE 7 7 FRENCHMAN BAY", "Name": "HEATH, ALFRED (TRUSTEE)", "Address": "PO Box 8237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 137700, "Improved_V": 406300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.55848965600001, "SHAPE_Area": 2989.4128066600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359829.896600000560284, 255422.560100000351667 ], [ 359827.543799996376038, 255392.580600000917912 ], [ 359823.132200002670288, 255392.833099998533726 ], [ 359809.442900002002716, 255390.610100001096725 ], [ 359795.777000002563, 255385.643100000917912 ], [ 359788.801700003445148, 255383.067400000989437 ], [ 359790.127599999308586, 255405.248100001364946 ], [ 359793.612899996340275, 255463.556600000709295 ], [ 359809.112000003457069, 255465.747499998658895 ], [ 359816.359899997711182, 255466.641800001263618 ], [ 359833.522399999201298, 255468.75959999859333 ], [ 359829.896600000560284, 255422.560100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302035000", "MAP": "A9-88-T68", "PARCEL_NAM": "1-19", "ACRE": "0.66", "LONGITUDE": -64.91591185, "LATITUDE": 18.32798879, "OBJECTID_1": 31697, "PARCEL_NO_": "107302035000", "Tax_Legal_": "BAKKERO 1-19 FRENCHMAN BAY", "Name": "ADONNA P HARGRAVE and ANNETTE A PETERS", "Address": "2307 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 128200, "Improved_V": 133800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.67808545, "SHAPE_Area": 3189.6113091399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360431.179999999701977, 255387.466099999845028 ], [ 360431.719099998474121, 255377.94029999896884 ], [ 360386.076800003647804, 255381.186299998313189 ], [ 360385.177000001072884, 255392.155799999833107 ], [ 360384.282600000500679, 255402.49210000038147 ], [ 360376.048600003123283, 255422.47859999909997 ], [ 360358.11370000243187, 255445.340999998152256 ], [ 360358.083200000226498, 255448.929299999028444 ], [ 360359.685000002384186, 255450.208999998867512 ], [ 360363.720200002193451, 255449.81980000063777 ], [ 360383.899599999189377, 255447.451900001615286 ], [ 360397.63740000128746, 255443.975699998438358 ], [ 360408.155500002205372, 255439.839899998158216 ], [ 360414.638300001621246, 255436.093299999833107 ], [ 360421.956299997866154, 255428.975999999791384 ], [ 360425.221100002527237, 255424.35869999974966 ], [ 360428.546999998390675, 255412.564699999988079 ], [ 360431.179999999701977, 255387.466099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022600", "MAP": "D9-8986-T015", "PARCEL_NAM": "3 REM", "ACRE": ".48", "LONGITUDE": -64.92003652, "LATITUDE": 18.32818519, "OBJECTID_1": 24858, "PARCEL_NO_": "107302022600", "Tax_Legal_": "BELLEVUE (REM) 3 FRENCHMAN BAY QTR", "Name": "FONSECA FAMILY TRUST", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 73800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.8421709, "SHAPE_Area": 1310.1606416 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359957.775600001215935, 255395.201699998229742 ], [ 359959.83219999819994, 255402.948499999940395 ], [ 359955.466600000858307, 255424.644400000572205 ], [ 359950.836400002241135, 255432.449599999934435 ], [ 359942.575599998235703, 255445.474599998444319 ], [ 359940.778999999165535, 255451.604100000113249 ], [ 359972.753200002014637, 255455.545499999076128 ], [ 359975.898299999535084, 255444.956999998539686 ], [ 359976.726099997758865, 255442.430599998682737 ], [ 359978.38910000026226, 255436.533599998801947 ], [ 359983.36370000243187, 255420.531199999153614 ], [ 359957.775600001215935, 255395.201699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "NL", "PARCEL_NO": "107301010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92609079, "LATITUDE": 18.32803681, "OBJECTID_1": 24763, "PARCEL_NO_": "107301010400", "Tax_Legal_": "RUPERT ROCK RED OOK", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 460300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.55595430299999, "SHAPE_Area": 836.48380411400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359323.355200000107288, 255372.699499998241663 ], [ 359320.916500002145767, 255375.001600001007318 ], [ 359320.893100000917912, 255377.745600000023842 ], [ 359324.04280000180006, 255386.63740000128746 ], [ 359322.395999997854233, 255390.634700000286102 ], [ 359322.360100001096725, 255394.856199998408556 ], [ 359324.744800001382828, 255398.886500000953674 ], [ 359325.502599999308586, 255404.592300001531839 ], [ 359320.635899998247623, 255407.929900001734495 ], [ 359314.986400000751019, 255408.517000000923872 ], [ 359312.554799996316433, 255409.974700000137091 ], [ 359310.927799999713898, 255411.650100000202656 ], [ 359309.277400001883507, 255416.069600000977516 ], [ 359310.852300003170967, 255420.515500001609325 ], [ 359314.048799999058247, 255423.919100001454353 ], [ 359313.993000000715256, 255430.462600000202656 ], [ 359315.576899997889996, 255433.853000000119209 ], [ 359318.785999998450279, 255435.779100000858307 ], [ 359322.009400002658367, 255436.016600001603365 ], [ 359327.662600003182888, 255435.007399998605251 ], [ 359332.532799996435642, 255431.247600000351667 ], [ 359333.378700003027916, 255426.610399998724461 ], [ 359331.015500001609325, 255420.047200001776218 ], [ 359335.936099998652935, 255410.377199999988079 ], [ 359334.359399996697903, 255406.142400000244379 ], [ 359331.953100003302097, 255404.644999999552965 ], [ 359329.580899998545647, 255399.137200001627207 ], [ 359330.45549999922514, 255391.122800000011921 ], [ 359332.908600002527237, 255387.132100000977516 ], [ 359332.167099997401237, 255379.526700001209974 ], [ 359329.7787000015378, 255375.918499998748302 ], [ 359325.772299997508526, 255372.930399999022484 ], [ 359323.355200000107288, 255372.699499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91426325, "LATITUDE": 18.32816455, "OBJECTID_1": 32953, "PARCEL_NO_": "107401011200", "Tax_Legal_": "BAKKERO 3L OF 3 FRENCHMANS BAY QTR", "Name": "LABORDE, ALPHONSO & CLAUDIA", "Address": "PO Box 8503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 143400, "Improved_V": 443600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.37806006099999, "SHAPE_Area": 3363.55268901 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360616.1841000020504, 255441.542599998414516 ], [ 360620.261399999260902, 255410.491599999368191 ], [ 360536.437100000679493, 255419.592599999159575 ], [ 360525.03660000115633, 255444.807300001382828 ], [ 360522.569099999964237, 255450.486699998378754 ], [ 360519.854299999773502, 255454.93189999833703 ], [ 360616.09570000320673, 255451.924300000071526 ], [ 360616.1841000020504, 255441.542599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023100", "MAP": "D9-8980-T015", "PARCEL_NAM": "35", "ACRE": "4.1", "LONGITUDE": -64.92025618, "LATITUDE": 18.32738133, "OBJECTID_1": 24862, "PARCEL_NO_": "107302023100", "Tax_Legal_": "BELLEVUE FRENCHMANS BAY QTR", "Name": "BULOW, HORST H", "Address": "PO Box 11727", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 351800, "Improved_V": 2712300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 561.72942488000001, "SHAPE_Area": 17235.119994199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359974.75959999859333, 255294.649000000208616 ], [ 359894.310000002384186, 255272.670099999755621 ], [ 359889.450499996542931, 255275.163499999791384 ], [ 359879.767599999904633, 255275.928599998354912 ], [ 359874.108999997377396, 255277.570999998599291 ], [ 359854.6621999964118, 255288.599800001829863 ], [ 359848.159599997103214, 255294.668299999088049 ], [ 359844.079499997198582, 255300.334499999880791 ], [ 359840.784100003540516, 255308.540100000798702 ], [ 359840.731899999082088, 255314.661400001496077 ], [ 359839.855499997735023, 255322.886900000274181 ], [ 359843.705399997532368, 255344.238899998366833 ], [ 359849.274099998176098, 255353.150400001555681 ], [ 359854.876900002360344, 255358.051399998366833 ], [ 359871.753700003027916, 255364.733399998396635 ], [ 359888.648500002920628, 255369.304699998348951 ], [ 359904.756800003349781, 255371.547400001436472 ], [ 359928.138099998235703, 255371.94990000128746 ], [ 359945.032899998128414, 255376.521099999547005 ], [ 359957.865500003099442, 255384.647700000554323 ], [ 359986.653599999845028, 255412.958799999207258 ], [ 359990.654600001871586, 255416.580099999904633 ], [ 359997.081799998879433, 255419.376899998635054 ], [ 360018.809000000357628, 255424.620999999344349 ], [ 360026.044299997389317, 255427.213300000876188 ], [ 360029.258699998259544, 255428.50620000064373 ], [ 360035.750600002706051, 255423.704199999570847 ], [ 360037.384800001978874, 255421.184399999678135 ], [ 360038.254000000655651, 255413.803300000727177 ], [ 360038.273800000548363, 255411.4814000017941 ], [ 360038.534599997103214, 255380.875 ], [ 360033.046800002455711, 255362.464899998158216 ], [ 360029.880900003015995, 255355.472899999469519 ], [ 360026.693400003015995, 255351.013900000602007 ], [ 360025.910499997437, 255348.263300001621246 ], [ 360020.318400003015995, 255342.095800001174212 ], [ 360003.479400001466274, 255330.981100000441074 ], [ 359994.676500000059605, 255323.098600000143051 ], [ 359982.702299997210503, 255308.857299998402596 ], [ 359974.75959999859333, 255294.649000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302024400", "MAP": "D9-446-T88", "PARCEL_NAM": "25", "ACRE": null, "LONGITUDE": -64.91925933, "LATITUDE": 18.32735323, "OBJECTID_1": 24876, "PARCEL_NO_": "107302024400", "Tax_Legal_": "BELLEVUE 25 FRENCHMAN BAY QTR", "Name": "HUNTE, RONALD B", "Address": "PO Box 307205", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 209800, "Improved_V": 850100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 374.04315273999998, "SHAPE_Area": 5177.3635036300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360095.386399999260902, 255333.210999999195337 ], [ 360052.873000003397465, 255306.898499999195337 ], [ 360027.205899998545647, 255290.8564000017941 ], [ 359990.837300002574921, 255300.480099998414516 ], [ 359989.192299999296665, 255304.266399998217821 ], [ 359998.765600003302097, 255316.377000000327826 ], [ 360005.165700003504753, 255322.34010000154376 ], [ 360026.808499999344349, 255337.504799999296665 ], [ 360034.779899999499321, 255348.335799999535084 ], [ 360037.159299999475479, 255352.999400001019239 ], [ 360041.898299999535084, 255364.648299999535084 ], [ 360046.55629999935627, 255385.795800000429153 ], [ 360046.329800002276897, 255412.391699999570847 ], [ 360045.48929999768734, 255416.395599998533726 ], [ 360047.015600003302097, 255426.540600001811981 ], [ 360049.430900000035763, 255426.982599999755621 ], [ 360051.052500002086163, 255425.940400000661612 ], [ 360065.896999999880791, 255387.220600001513958 ], [ 360069.170800000429153, 255381.547899998724461 ], [ 360070.828400000929832, 255376.284099999815226 ], [ 360087.218999996781349, 255345.387499999254942 ], [ 360095.386399999260902, 255333.210999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022100", "MAP": "F9-1480-T64", "PARCEL_NAM": "12", "ACRE": ".89", "LONGITUDE": -64.9220842, "LATITUDE": 18.32782026, "OBJECTID_1": 24853, "PARCEL_NO_": "107302022100", "Tax_Legal_": "12 BELLEVUE 7 FRENCHMAN BAY QTR", "Name": "12 BELLEVUE LLC", "Address": "PO Box 8888", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011888, "Country": "United States", "Land_Value": 153100, "Improved_V": 444400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.00302788, "SHAPE_Area": 4654.3154841300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359751.726499997079372, 255350.452199999243021 ], [ 359745.320900000631809, 255345.122400000691414 ], [ 359705.014899998903275, 255369.949700001627207 ], [ 359706.504105552798137, 255372.421835579560138 ], [ 359707.572860830056015, 255375.102684261364629 ], [ 359708.192893072438892, 255377.921327111369465 ], [ 359708.347800001502037, 255380.803199999034405 ], [ 359709.991746412531938, 255394.163076427008491 ], [ 359711.999099999666214, 255407.473200000822544 ], [ 359713.290299996733665, 255413.465599998831749 ], [ 359714.067900002002716, 255416.849500000476837 ], [ 359784.974799998104572, 255423.129399999976158 ], [ 359791.229000002145767, 255423.673599999397993 ], [ 359790.127599999308586, 255405.248100001364946 ], [ 359788.801700003445148, 255383.067400000989437 ], [ 359782.915500000119209, 255380.893800001591444 ], [ 359774.895599998533726, 255375.761900000274181 ], [ 359751.726499997079372, 255350.452199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9151588, "LATITUDE": 18.32781704, "OBJECTID_1": 32990, "PARCEL_NO_": "107401015200", "Tax_Legal_": "BAKKERO 3RA FRENCHMAN BAY", "Name": "OLIVER, CHARLOTTE & MAURICE", "Address": "PO Box 9557", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 119700, "Improved_V": 470300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.69728684899999, "SHAPE_Area": 3415.9768938699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360519.161499999463558, 255377.209300000220537 ], [ 360441.814900003373623, 255369.610199999064207 ], [ 360437.461400002241135, 255407.360300000756979 ], [ 360513.906499996781349, 255426.140000000596046 ], [ 360519.091399997472763, 255385.441399998962879 ], [ 360519.161499999463558, 255377.209300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401011000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91456086, "LATITUDE": 18.32746961, "OBJECTID_1": 32951, "PARCEL_NO_": "107401011000", "Tax_Legal_": "3F REM. BAKKERO REM FRENCHMAN'S BAY QTR", "Name": "DURAND, DANTON and AMY", "Address": "PO BOX 600180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 116200, "Improved_V": 797700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.62369182600003, "SHAPE_Area": 2581.8786257199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360566.937200002372265, 255353.746800001710653 ], [ 360569.557499997317791, 255330.125700000673532 ], [ 360534.243400000035763, 255310.627199999988079 ], [ 360529.063799999654293, 255350.692600000649691 ], [ 360522.792099997401237, 255424.312899999320507 ], [ 360525.216399997472763, 255423.699499998241663 ], [ 360528.513599999248981, 255415.282699998468161 ], [ 360545.694300003349781, 255386.292399998754263 ], [ 360561.231799997389317, 255360.877300001680851 ], [ 360564.484099999070168, 255357.737500000745058 ], [ 360566.937200002372265, 255353.746800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91635084000001, "LATITUDE": 18.32761957, "OBJECTID_1": 31648, "PARCEL_NO_": "107302030200", "Tax_Legal_": "BAKKERO 1-18 FRENCHMANS BAY QTR", "Name": "HODGE, JR, VERNE A.", "Address": "PO Box 7603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.38893326199999, "SHAPE_Area": 1824.7949677399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360370.225699998438358, 255348.759300000965595 ], [ 360320.149800002574921, 255358.270799998193979 ], [ 360320.875200003385544, 255367.776000000536442 ], [ 360373.773500002920628, 255405.572500001639128 ], [ 360376.269799999892712, 255396.515900000929832 ], [ 360377.1858000010252, 255383.646699998527765 ], [ 360370.225699998438358, 255348.759300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401012900", "MAP": null, "PARCEL_NAM": "3C-1", "ACRE": "0.76", "LONGITUDE": -64.91416407, "LATITUDE": 18.32776244, "OBJECTID_1": 32970, "PARCEL_NO_": "107401012900", "Tax_Legal_": "3C-1 ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "COUNTS-GEORGE, DENISE", "Address": "PO Box 301812", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 115000, "Improved_V": 169000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.255852108, "SHAPE_Area": 3374.3532864200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360622.220299996435642, 255395.573600001633167 ], [ 360627.430399999022484, 255351.919799998402596 ], [ 360614.392700001597404, 255367.856199998408556 ], [ 360613.545000001788139, 255372.704500000923872 ], [ 360611.100900001823902, 255375.639800000935793 ], [ 360608.631599999964237, 255381.530200000852346 ], [ 360603.765000000596046, 255384.867800001055002 ], [ 360600.539700001478195, 255384.841400001198053 ], [ 360593.317100003361702, 255380.771600000560284 ], [ 360590.932300001382828, 255376.741300001740456 ], [ 360590.160199999809265, 255372.724199999123812 ], [ 360593.4358000010252, 255366.840399999171495 ], [ 360588.621299996972084, 255364.056699998676777 ], [ 360587.832900002598763, 255361.939300000667572 ], [ 360588.846100002527237, 255337.671900000423193 ], [ 360579.874099999666214, 255349.630800001323223 ], [ 360570.067100003361702, 255364.960299998521805 ], [ 360566.811300002038479, 255368.522300001233816 ], [ 360559.455600000917912, 255380.072200000286102 ], [ 360556.169200003147125, 255387.222500000149012 ], [ 360552.092699997127056, 255392.466499999165535 ], [ 360550.433300003409386, 255397.941300000995398 ], [ 360548.001800000667572, 255399.399099998176098 ], [ 360538.166000001132488, 255418.105900000780821 ], [ 360536.542599998414516, 255419.359200000762939 ], [ 360536.437100000679493, 255419.592599999159575 ], [ 360620.261399999260902, 255410.491599999368191 ], [ 360622.220299996435642, 255395.573600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91584025, "LATITUDE": 18.32751309, "OBJECTID_1": 31696, "PARCEL_NO_": "107302034900", "Tax_Legal_": "BAKKERO 1-20 FRENCHMAN BAY QTR", "Name": "MIRPURI, ROMESH A", "Address": "9A MAIN STREET", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.83943717599999, "SHAPE_Area": 1793.0401379100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360431.719099998474121, 255377.94029999896884 ], [ 360433.078500002622604, 255353.91780000180006 ], [ 360435.583700001239777, 255343.805799998342991 ], [ 360436.41160000115633, 255341.279399998486042 ], [ 360413.008799999952316, 255343.40989999845624 ], [ 360379.92119999974966, 255346.516600001603365 ], [ 360386.076800003647804, 255381.186299998313189 ], [ 360431.719099998474121, 255377.94029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023000", "MAP": "D9-4711-T89", "PARCEL_NAM": "19", "ACRE": ".8457", "LONGITUDE": -64.92150798, "LATITUDE": 18.32752714, "OBJECTID_1": 24861, "PARCEL_NO_": "107302023000", "Tax_Legal_": "BELLEVUE 19 No.7 FRENCHMAN'S BAY QTR.", "Name": "McKENNA, ANDREW & JACQUIE", "Address": "740 Willowbrook Rd", "City": "Boulder", "State": "Colorado", "Zip": 80302, "Country": "United States", "Land_Value": 147200, "Improved_V": 361700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.42315479000001, "SHAPE_Area": 3665.0742998699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359834.074600003659725, 255338.882699999958277 ], [ 359768.055900000035763, 255326.732200000435114 ], [ 359762.242700003087521, 255346.527399998158216 ], [ 359763.806800000369549, 255352.239799998700619 ], [ 359775.795400001108646, 255364.792399998754263 ], [ 359777.382799997925758, 255367.76069999858737 ], [ 359783.792000003159046, 255372.668299999088049 ], [ 359805.486900001764297, 255381.711800001561642 ], [ 359826.422200001776218, 255385.26069999858737 ], [ 359840.943000003695488, 255384.535100001841784 ], [ 359852.258400000631809, 255381.461300000548363 ], [ 359864.399800002574921, 255376.072299998253584 ], [ 359865.240299999713898, 255372.068399999290705 ], [ 359862.029399998486042, 255370.353300001472235 ], [ 359851.592299997806549, 255364.990600001066923 ], [ 359841.193000003695488, 255355.195199999958277 ], [ 359835.636900000274181, 255344.806099999696016 ], [ 359834.074600003659725, 255338.882699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401011100", "MAP": null, "PARCEL_NAM": "REM 3C", "ACRE": null, "LONGITUDE": -64.91393165, "LATITUDE": 18.32737216, "OBJECTID_1": 32952, "PARCEL_NO_": "107401011100", "Tax_Legal_": "BAKKERO REM 3C FRENCHMANS BAY QTR", "Name": "MAYNARD, RANDOLPH & HELGA", "Address": "5143 Palm Psge", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 204300, "Improved_V": 492900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.385801947, "SHAPE_Area": 2120.3580662099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360588.846100002527237, 255337.671900000423193 ], [ 360587.832900002598763, 255361.939300000667572 ], [ 360588.621299996972084, 255364.056699998676777 ], [ 360593.4358000010252, 255366.840399999171495 ], [ 360590.160199999809265, 255372.724199999123812 ], [ 360590.932300001382828, 255376.741300001740456 ], [ 360593.317100003361702, 255380.771600000560284 ], [ 360600.539700001478195, 255384.841400001198053 ], [ 360603.765000000596046, 255384.867800001055002 ], [ 360608.631599999964237, 255381.530200000852346 ], [ 360611.100900001823902, 255375.639800000935793 ], [ 360613.545000001788139, 255372.704500000923872 ], [ 360614.392700001597404, 255367.856199998408556 ], [ 360627.430399999022484, 255351.919799998402596 ], [ 360628.256499998271465, 255349.604600001126528 ], [ 360629.079000003635883, 255347.711500000208616 ], [ 360638.149800002574921, 255324.143199998885393 ], [ 360638.203699998557568, 255317.810899998992682 ], [ 360636.603699997067451, 255316.320099998265505 ], [ 360630.961300000548363, 255316.062800001353025 ], [ 360605.092799998819828, 255323.66160000115633 ], [ 360596.176600001752377, 255329.076999999582767 ], [ 360588.846100002527237, 255337.671900000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022000", "MAP": "F9-1480-T64", "PARCEL_NAM": "13", "ACRE": ".71", "LONGITUDE": -64.92256683, "LATITUDE": 18.32741356, "OBJECTID_1": 24852, "PARCEL_NO_": "107302022000", "Tax_Legal_": "13 BELLEVUE NO.7 FRENCHMAN'S BAY QTR", "Name": "KLAUS WILLEMS FAMILY TRUST AGREEMENT & D WILLEMS", "Address": "PO Box 7631", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 134200, "Improved_V": 259800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.914475229, "SHAPE_Area": 2380.8654694000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359705.014899998903275, 255369.949700001627207 ], [ 359745.320900000631809, 255345.122400000691414 ], [ 359737.31360000371933, 255338.512899998575449 ], [ 359723.658399999141693, 255332.279500000178814 ], [ 359713.196099996566772, 255329.871800001710653 ], [ 359684.195799998939037, 255326.468100000172853 ], [ 359670.481299996376038, 255327.200199998915195 ], [ 359658.354299999773502, 255330.900600001215935 ], [ 359651.875, 255334.225099999457598 ], [ 359650.163099996745586, 255335.546700000762939 ], [ 359649.656912540085614, 255335.829574125848012 ], [ 359649.197908637695946, 255336.183917080576066 ], [ 359648.796099998056889, 255336.602000001817942 ], [ 359648.501059181871824, 255337.008724571525818 ], [ 359648.26037858001655, 255337.449799176014494 ], [ 359648.078000001609325, 255337.918000001460314 ], [ 359647.934401628212072, 255338.543671190942405 ], [ 359647.894676128868014, 255339.184379248385085 ], [ 359647.959885428950656, 255339.822997034993023 ], [ 359648.128286380844656, 255340.442453288182151 ], [ 359648.395377360924613, 255341.026188963413006 ], [ 359648.754018605279271, 255341.558599883690476 ], [ 359649.194623066752683, 255342.025453863781877 ], [ 359649.705412691750098, 255342.414271159068448 ], [ 359650.272733266581781, 255342.714658068900462 ], [ 359650.881419415702112, 255342.918584776431089 ], [ 359651.51519999653101, 255343.020599998533726 ], [ 359661.222900003194809, 255346.5320999994874 ], [ 359669.003947718709242, 255349.816828622424509 ], [ 359676.621619183279108, 255353.46446170922718 ], [ 359684.059000000357628, 255357.466899998486042 ], [ 359694.714441009797156, 255363.410331286373548 ], [ 359705.014899998903275, 255369.949700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91511203, "LATITUDE": 18.32737508, "OBJECTID_1": 32961, "PARCEL_NO_": "107401012000", "Tax_Legal_": "BAKKERO 3B OF B FRENCHMANS BAY QTR", "Name": "VANTERPOOL, CLEMENT ATHLEE & ROSLIN ROXANNA (TRUSTEES)", "Address": "PO Box 8825", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 143400, "Improved_V": 660400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.387536802, "SHAPE_Area": 4151.6977819000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360524.48309999704361, 255320.468699999153614 ], [ 360467.283500000834465, 255314.300999999046326 ], [ 360450.172899998724461, 255335.059200000017881 ], [ 360443.607299998402596, 255348.515500001609325 ], [ 360441.928199999034405, 255356.312199998646975 ], [ 360441.814900003373623, 255369.610199999064207 ], [ 360519.161499999463558, 255377.209300000220537 ], [ 360524.48309999704361, 255320.468699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107202010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93057508, "LATITUDE": 18.32671065, "OBJECTID_1": 24758, "PARCEL_NO_": "107202010200", "Tax_Legal_": "HASSEL ISLAND 8E,8F&8G S S QTR", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13414400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 451.06856688400001, "SHAPE_Area": 2117.9686319399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358762.350500002503395, 255345.943199999630451 ], [ 358783.429700002074242, 255332.605700001120567 ], [ 358797.17119999974966, 255328.707400001585484 ], [ 358804.456799998879433, 255325.389499999582767 ], [ 358819.870200000703335, 255314.538800001144409 ], [ 358829.634099997580051, 255304.275100000202656 ], [ 358837.790700003504753, 255293.364999998360872 ], [ 358844.352700002491474, 255280.330899998545647 ], [ 358850.140699997544289, 255263.490800000727177 ], [ 358859.963899999856949, 255246.261599998921156 ], [ 358860.79900000244379, 255242.890900000929832 ], [ 358862.415200002491474, 255242.481899999082088 ], [ 358864.805399999022484, 255245.879000000655651 ], [ 358868.019900001585484, 255247.171900000423193 ], [ 358868.871100001037121, 255241.901500001549721 ], [ 358870.516099996864796, 255238.115299999713898 ], [ 358872.904500000178814, 255241.723400000482798 ], [ 358876.918099999427795, 255243.867199998348951 ], [ 358880.145099997520447, 255243.682500001043081 ], [ 358885.00280000269413, 255241.400199998170137 ], [ 358886.669399999082088, 255235.0810999982059 ], [ 358889.903599999845028, 255234.052099999040365 ], [ 358892.338699996471405, 255232.172200001776218 ], [ 358893.996299996972084, 255226.908399999141693 ], [ 358894.016099996864796, 255224.586500000208616 ], [ 358892.439400002360344, 255220.351700000464916 ], [ 358894.062799997627735, 255219.098499998450279 ], [ 358897.273699998855591, 255220.813499998301268 ], [ 358898.893500000238419, 255219.982400000095367 ], [ 358897.33839999884367, 255213.214699998497963 ], [ 358899.010399997234344, 255206.262299999594688 ], [ 358898.229299999773502, 255203.300599999725819 ], [ 358878.130800001323223, 255196.170000001788139 ], [ 358860.838600002229214, 255238.24720000103116 ], [ 358833.813100002706051, 255286.999699998646975 ], [ 358785.101700000464916, 255325.653299998492002 ], [ 358762.350500002503395, 255345.943199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302030300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91647128, "LATITUDE": 18.32727584, "OBJECTID_1": 31649, "PARCEL_NO_": "107302030300", "Tax_Legal_": "BAKKERO 1-17 FRENCHMAN BAY QTR", "Name": "GEORGE, PEDRITO & ESME", "Address": "PO Box 301872", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 73800, "Improved_V": 146700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.432346585, "SHAPE_Area": 1976.9613167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360364.086300000548363, 255312.189800001680851 ], [ 360314.04450000077486, 255317.690900001674891 ], [ 360320.149800002574921, 255358.270799998193979 ], [ 360370.225699998438358, 255348.759300000965595 ], [ 360364.086300000548363, 255312.189800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015800", "MAP": "D9-5528-T93", "PARCEL_NAM": "3F-1", "ACRE": null, "LONGITUDE": -64.91397941, "LATITUDE": 18.3268761, "OBJECTID_1": 32996, "PARCEL_NO_": "107401015800", "Tax_Legal_": "BAKKERO 3F-1 FRENCHMANS BAY QTR.", "Name": "GONDALIA FAMILY TRUST", "Address": "Al Cohens Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88000, "Improved_V": 585700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.779146234, "SHAPE_Area": 3401.4222246200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360648.885399997234344, 255294.466899998486042 ], [ 360624.947800002992153, 255264.7179000005126 ], [ 360623.344099998474121, 255263.649300001561642 ], [ 360619.337700001895428, 255260.661200001835823 ], [ 360616.116099998354912, 255260.212600000202656 ], [ 360609.652999997138977, 255261.63740000128746 ], [ 360608.05120000243187, 255260.357700001448393 ], [ 360605.625, 255261.182199999690056 ], [ 360596.832900002598763, 255252.033300001174212 ], [ 360581.394299998879433, 255265.839099999517202 ], [ 360575.672799997031689, 255274.869300000369549 ], [ 360587.627199999988079, 255291.432399999350309 ], [ 360579.470600001513958, 255302.342500001192093 ], [ 360582.665299996733665, 255305.957299999892712 ], [ 360569.557499997317791, 255330.125700000673532 ], [ 360566.937200002372265, 255353.746800001710653 ], [ 360582.451300002634525, 255331.075599998235703 ], [ 360589.783600002527237, 255322.26969999819994 ], [ 360596.271899998188019, 255317.889899998903275 ], [ 360606.793499998748302, 255313.331900000572205 ], [ 360624.579099997878075, 255307.989000000059605 ], [ 360635.077399998903275, 255306.17509999871254 ], [ 360648.793700002133846, 255305.231899999082088 ], [ 360648.885399997234344, 255294.466899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91594839, "LATITUDE": 18.32710012, "OBJECTID_1": 31695, "PARCEL_NO_": "107302034800", "Tax_Legal_": "BAKKERO 1-21 FRENCHMAN BAY QTR", "Name": "MELCHIOR, ELINOR EUGENIE BLYDEN (TRUSTEE)", "Address": "PO Box 7254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 114000, "Improved_V": 135100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.27236039499999, "SHAPE_Area": 2428.7739445799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360413.008799999952316, 255343.40989999845624 ], [ 360425.561999998986721, 255289.683800000697374 ], [ 360373.148100003600121, 255289.677000001072884 ], [ 360374.489200003445148, 255321.563099998980761 ], [ 360379.92119999974966, 255346.516600001603365 ], [ 360413.008799999952316, 255343.40989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023400", "MAP": null, "PARCEL_NAM": "20", "ACRE": null, "LONGITUDE": -64.92155857, "LATITUDE": 18.32707666, "OBJECTID_1": 24865, "PARCEL_NO_": "107302023400", "Tax_Legal_": "BELLEVUE 20 FRENCHMAN BAY QTR", "Name": "MIRPURI, PREM S. & SWETA P", "Address": "PO Box 9608", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 119700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.80630189799999, "SHAPE_Area": 3071.7328868499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359839.29730000346899, 255293.751400001347065 ], [ 359787.07039999961853, 255271.792399998754263 ], [ 359777.180699996650219, 255296.831599999219179 ], [ 359768.055900000035763, 255326.732200000435114 ], [ 359834.074600003659725, 255338.882699999958277 ], [ 359832.63459999859333, 255318.605900000780821 ], [ 359831.842699997127056, 255316.910700000822544 ], [ 359832.713799998164177, 255309.318500000983477 ], [ 359835.202799998223782, 255301.106199998408556 ], [ 359839.29730000346899, 255293.751400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91558335000001, "LATITUDE": 18.32708757, "OBJECTID_1": 32960, "PARCEL_NO_": "107401011900", "Tax_Legal_": "BAKKERO 1-22 FRENCHMAN BAY QTR", "Name": "JEAN PIERRE JOSEPH MONTEGUT REVOCABLE FAMILY TRUST", "Address": "PO Box 305867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85400, "Improved_V": 272300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.24059417000001, "SHAPE_Area": 1665.90429122 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360465.7787000015378, 255301.623100001364946 ], [ 360427.221400000154972, 255284.20890000090003 ], [ 360425.561999998986721, 255289.683800000697374 ], [ 360413.008799999952316, 255343.40989999845624 ], [ 360436.41160000115633, 255341.279399998486042 ], [ 360440.515100002288818, 255332.869300000369549 ], [ 360465.7787000015378, 255301.623100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91891808, "LATITUDE": 18.32700947, "OBJECTID_1": 24888, "PARCEL_NO_": "107302025500", "Tax_Legal_": "BELLEVUE 26A FRENCHMAN BAY QTR", "Name": "STEPHEN, FRANCES L. & MARY R", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70300, "Improved_V": 476700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.89566389399999, "SHAPE_Area": 1956.7056174 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360112.601300001144409, 255300.210200000554323 ], [ 360073.34009999781847, 255270.75789999961853 ], [ 360052.873000003397465, 255306.898499999195337 ], [ 360095.386399999260902, 255333.210999999195337 ], [ 360106.843800000846386, 255313.461899999529123 ], [ 360110.13740000128746, 255305.467300001531839 ], [ 360112.601300001144409, 255300.210200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401016000", "MAP": "D9-5528-T93", "PARCEL_NAM": "3F-3", "ACRE": null, "LONGITUDE": -64.91441922, "LATITUDE": 18.32687818, "OBJECTID_1": 32998, "PARCEL_NO_": "107401016000", "Tax_Legal_": "BAKKERO 3F-3 FRENCHMANS BAY QTR.", "Name": "LLOYD ONEAL NORFORD REVOCABLE TRUST", "Address": "P.O. BOX 2640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 140100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.134120233, "SHAPE_Area": 2592.08615986 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360575.672799997031689, 255274.869300000369549 ], [ 360572.487099997699261, 255270.199099998921156 ], [ 360570.951800003647804, 255261.109600000083447 ], [ 360541.154200002551079, 255256.643800001591444 ], [ 360539.412100002169609, 255271.828299999237061 ], [ 360534.243400000035763, 255310.627199999988079 ], [ 360569.557499997317791, 255330.125700000673532 ], [ 360582.665299996733665, 255305.957299999892712 ], [ 360579.470600001513958, 255302.342500001192093 ], [ 360587.627199999988079, 255291.432399999350309 ], [ 360575.672799997031689, 255274.869300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401012200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91487363, "LATITUDE": 18.32671263, "OBJECTID_1": 32963, "PARCEL_NO_": "107401012200", "Tax_Legal_": "BAKKERO 3K OF 3 FRENCHMANS BAY QTR", "Name": "SCHNEIDER, ROY L. & BARBARA M.", "Address": "PO Box 22", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 160000, "Improved_V": 1146200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.04780752800002, "SHAPE_Area": 3988.0380507 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360467.283500000834465, 255314.300999999046326 ], [ 360524.48309999704361, 255320.468699999153614 ], [ 360530.476099997758865, 255279.565600000321865 ], [ 360538.303000003099442, 255212.712999999523163 ], [ 360538.362300001084805, 255205.747400000691414 ], [ 360536.769500002264977, 255203.412300001829863 ], [ 360531.949600003659725, 255201.261999998241663 ], [ 360529.505500003695488, 255204.197299998253584 ], [ 360500.052100002765656, 255253.985399998724461 ], [ 360495.162000000476837, 255260.067099999636412 ], [ 360479.527400001883507, 255296.880499999970198 ], [ 360473.804099999368191, 255306.121700000017881 ], [ 360467.283500000834465, 255314.300999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302030400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91649317, "LATITUDE": 18.3269209, "OBJECTID_1": 31650, "PARCEL_NO_": "107302030400", "Tax_Legal_": "BAKKERO 1-16 5 FRENCHMAN BAY QTR", "Name": "MARY J PEDROSA REVOC LIV TR", "Address": "3090 NE 48th St", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33308, "Country": "United States", "Land_Value": 104600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.940085106, "SHAPE_Area": 1943.7692444199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360364.415299996733665, 255273.562399998307228 ], [ 360317.627599999308586, 255275.712600000202656 ], [ 360314.04450000077486, 255317.690900001674891 ], [ 360364.086300000548363, 255312.189800001680851 ], [ 360364.415299996733665, 255273.562399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92280696, "LATITUDE": 18.32677774, "OBJECTID_1": 24863, "PARCEL_NO_": "107302023200", "Tax_Legal_": "BELLEVUE 15 FRENCHMAN BAY QTR", "Name": "VILLA RTCD PROPERTIES LLC", "Address": "25 E Erie St", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 201000, "Improved_V": 827600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.10413683199999, "SHAPE_Area": 3147.4175351899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359642.904100000858307, 255251.403000000864267 ], [ 359620.332800000905991, 255250.58500000089407 ], [ 359659.44650000333786, 255297.34569999948144 ], [ 359685.955899998545647, 255309.172800000756979 ], [ 359689.244099996984005, 255301.8114 ], [ 359696.587200000882149, 255291.739000000059605 ], [ 359702.278200000524521, 255286.297200001776218 ], [ 359712.011399999260902, 255279.621899999678135 ], [ 359717.700599998235703, 255274.391100000590086 ], [ 359686.486299999058247, 255246.904399998486042 ], [ 359684.096799999475479, 255247.199799999594688 ], [ 359675.154399998486042, 255250.329599998891354 ], [ 359664.572599999606609, 255253.757500000298023 ], [ 359658.163900002837181, 255253.310400001704693 ], [ 359652.947499997913837, 255253.012299999594688 ], [ 359649.338299997150898, 255253.355399999767542 ], [ 359642.904100000858307, 255251.403000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91930716, "LATITUDE": 18.32678207, "OBJECTID_1": 24877, "PARCEL_NO_": "107302024500", "Tax_Legal_": "26 BELLEVUE FRENCHMAN BAY QTR", "Name": "WILLIAMS, DALE & CARMEN", "Address": "PO Box 8662", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 86500, "Improved_V": 345300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.52323859800001, "SHAPE_Area": 1915.6800071 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360073.34009999781847, 255270.75789999961853 ], [ 360058.914599999785423, 255260.296300001442432 ], [ 360017.033100001513958, 255254.46510000154376 ], [ 360015.976899996399879, 255283.79839999973774 ], [ 360021.590499997138977, 255287.432900000363588 ], [ 360027.205899998545647, 255290.8564000017941 ], [ 360052.873000003397465, 255306.898499999195337 ], [ 360073.34009999781847, 255270.75789999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302024700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91876449, "LATITUDE": 18.32663165, "OBJECTID_1": 24880, "PARCEL_NO_": "107302024700", "Tax_Legal_": "BELLEVUE 27 FRENCHMAN BAY QTR", "Name": "MIRPURI, MANOJ R. & DHITIKA M.", "Address": "9001 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 149600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.978303313, "SHAPE_Area": 2776.4248606599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360130.030199997127056, 255242.090999998152256 ], [ 360097.082800000905991, 255228.733500000089407 ], [ 360058.914599999785423, 255260.296300001442432 ], [ 360073.34009999781847, 255270.75789999961853 ], [ 360112.601300001144409, 255300.210200000554323 ], [ 360117.523699998855591, 255290.329100001603365 ], [ 360118.344400003552437, 255288.646999999880791 ], [ 360124.152199998497963, 255269.484999999403954 ], [ 360128.316799998283386, 255253.898200001567602 ], [ 360130.030199997127056, 255242.090999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023700", "MAP": "D9-3886-T87", "PARCEL_NAM": "21", "ACRE": null, "LONGITUDE": -64.92131, "LATITUDE": 18.32663435, "OBJECTID_1": 24868, "PARCEL_NO_": "107302023700", "Tax_Legal_": "21 REM.ESTATE BELLEVUE FRENCHMAN BAY QTR", "Name": "JS MIRPURI TRUST", "Address": "PO Box 9608", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 176600, "Improved_V": 1061300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.79874539799999, "SHAPE_Area": 3507.4261783299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359876.630500003695488, 255265.559399999678135 ], [ 359855.10530000180006, 255249.670899998396635 ], [ 359858.666000001132488, 255246.262600000947714 ], [ 359831.084200002253056, 255216.635099999606609 ], [ 359814.810500003397465, 255233.811500001698732 ], [ 359795.275600001215935, 255255.183200001716614 ], [ 359792.001800000667572, 255260.855900000780821 ], [ 359792.772200003266335, 255265.084100000560284 ], [ 359790.308300003409386, 255270.341299999505281 ], [ 359787.07039999961853, 255271.792399998754263 ], [ 359839.29730000346899, 255293.751400001347065 ], [ 359849.061200000345707, 255283.487799998372793 ], [ 359870.131399996578693, 255271.205699998885393 ], [ 359876.630500003695488, 255265.559399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107301010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93087898, "LATITUDE": 18.32674426, "OBJECTID_1": 24760, "PARCEL_NO_": "107301010100", "Tax_Legal_": "HASSEL ISLAND 7 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66700, "Improved_V": 25100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.633468304, "SHAPE_Area": 1025.6686338100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358821.734600000083447, 255285.000999998301268 ], [ 358826.604800000786781, 255281.241200000047684 ], [ 358840.524300001561642, 255256.445999998599291 ], [ 358816.4662000015378, 255240.839299999177456 ], [ 358796.890000000596046, 255267.065799999982119 ], [ 358821.734600000083447, 255285.000999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302024000", "MAP": "G9-2941-T79", "PARCEL_NAM": "23", "ACRE": null, "LONGITUDE": -64.92040099, "LATITUDE": 18.32657995, "OBJECTID_1": 24872, "PARCEL_NO_": "107302024000", "Tax_Legal_": "BELLEVUE 23 FRENCHMAN BAY QTR", "Name": "BULOW, MONIK & HORST", "Address": "PO Box 11727", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 136500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.45075668499999, "SHAPE_Area": 3401.9516430399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359903.357400000095367, 255201.916499998420477 ], [ 359898.195200003683567, 255258.416799999773502 ], [ 359898.914858930918854, 255259.406846218014834 ], [ 359899.455366930342279, 255260.505004489066778 ], [ 359899.800927192380186, 255261.679180196166271 ], [ 359899.941440422146115, 255262.895057047688169 ], [ 359899.872800000011921, 255264.11710000038147 ], [ 359899.317236537812278, 255266.131552590115461 ], [ 359898.459674681711476, 255268.037138499959838 ], [ 359897.320353200193495, 255269.788885216432391 ], [ 359895.926160490489565, 255271.345450886408798 ], [ 359894.310000002384186, 255272.670099999755621 ], [ 359974.75959999859333, 255294.649000000208616 ], [ 359950.915500000119209, 255253.923900000751019 ], [ 359933.392399996519089, 255228.449299998581409 ], [ 359918.214500002563, 255211.648699998855591 ], [ 359912.611699998378754, 255206.747600000351667 ], [ 359906.19539999961853, 255202.684399999678135 ], [ 359903.357400000095367, 255201.916499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302024300", "MAP": "A9-126-T69", "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.91975425, "LATITUDE": 18.32666322, "OBJECTID_1": 24875, "PARCEL_NO_": "107302024300", "Tax_Legal_": "BELLEVUE 24 FRENCHMAN BAY QTR", "Name": "SINGH, INDER J. & CAUR, GURJIET", "Address": "9007 Havensite Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 143600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.16561159299999, "SHAPE_Area": 2447.49688225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360017.033100001513958, 255254.46510000154376 ], [ 360017.274099998176098, 255226.180500000715256 ], [ 359961.379600003361702, 255256.12049999833107 ], [ 359979.651399999856949, 255288.356300000101328 ], [ 359986.060599997639656, 255293.263900000602007 ], [ 359993.311999998986721, 255293.956500001251698 ], [ 360021.590499997138977, 255287.432900000363588 ], [ 360015.976899996399879, 255283.79839999973774 ], [ 360017.033100001513958, 255254.46510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92239526, "LATITUDE": 18.3263544, "OBJECTID_1": 24866, "PARCEL_NO_": "107302023500", "Tax_Legal_": "BELLEVUE 16 7 FRENCHMAN BAY", "Name": "THE TRIPP,MALLORY & GILLIAN STEWART 2011 TRUST", "Address": "22 W 68th St", "City": "New York", "State": "New York", "Zip": 10023, "Country": "United States", "Land_Value": 215200, "Improved_V": 1647500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.58274468100001, "SHAPE_Area": 3441.0839349399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359748.003499999642372, 255219.543699998408556 ], [ 359703.249200001358986, 255172.314599998295307 ], [ 359699.124099999666214, 255183.257699999958277 ], [ 359698.951499998569489, 255203.521299999207258 ], [ 359694.050700001418591, 255210.86939999833703 ], [ 359693.192199997603893, 255216.984099999070168 ], [ 359693.165200002491474, 255220.150299999862909 ], [ 359696.298799999058247, 255230.941700000315905 ], [ 359693.005199998617172, 255238.936299998313189 ], [ 359688.923299998044968, 255244.813499998301268 ], [ 359686.486400000751019, 255246.904500000178814 ], [ 359717.700599998235703, 255274.391100000590086 ], [ 359729.905000001192093, 255261.61430000141263 ], [ 359738.871500000357628, 255250.288600001484156 ], [ 359741.342600002884865, 255244.187100000679493 ], [ 359744.731499999761581, 255225.005300000309944 ], [ 359748.003499999642372, 255219.543699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302030500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9164626, "LATITUDE": 18.32654471, "OBJECTID_1": 31651, "PARCEL_NO_": "107302030500", "Tax_Legal_": "BAKKERO 1-15 FRENCHMAN BAY QTR", "Name": "MEYERS, ISHMAEL A., JR. & MICOL L. MORGAN", "Address": "PO Box 10001", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.7528741, "SHAPE_Area": 1974.74726609 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360367.219099998474121, 255228.411299999803305 ], [ 360321.192699998617172, 255235.845100000500679 ], [ 360317.627599999308586, 255275.712600000202656 ], [ 360364.415299996733665, 255273.562399998307228 ], [ 360366.162799999117851, 255257.744699999690056 ], [ 360367.219099998474121, 255228.411299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023800", "MAP": "G9-2941-T79", "PARCEL_NAM": "22", "ACRE": null, "LONGITUDE": -64.92090876, "LATITUDE": 18.32635171, "OBJECTID_1": 24869, "PARCEL_NO_": "107302023800", "Tax_Legal_": "21A & 22 BELLEVUE No.7 FRENCHMAN'S BAY QTR.", "Name": "21A & 22 ESTATE BELLEVUE LLC", "Address": "PO Box 8839", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 119700, "Improved_V": 811300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.91353732900001, "SHAPE_Area": 2850.2888755700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359894.5658999979496, 255256.171500001102686 ], [ 359895.590882133110426, 255256.519203153322451 ], [ 359896.55173791461857, 255257.017442078649765 ], [ 359897.426507886615582, 255257.654829994688043 ], [ 359898.195200003683567, 255258.416799999773502 ], [ 359903.357400000095367, 255201.916499998420477 ], [ 359899.759300000965595, 255200.942899998277426 ], [ 359896.534000001847744, 255200.916499998420477 ], [ 359890.085299998521805, 255200.652699999511242 ], [ 359882.801500000059605, 255203.759399998933077 ], [ 359883.570100001990795, 255208.198699999600649 ], [ 359878.710600003600121, 255210.692099999636412 ], [ 359876.30969999730587, 255208.561500001698732 ], [ 359873.894299998879433, 255208.119500000029802 ], [ 359871.520300000905991, 255202.822700001299381 ], [ 359838.403999999165535, 255209.306699998676777 ], [ 359831.084200002253056, 255216.635099999606609 ], [ 359876.630500003695488, 255265.559399999678135 ], [ 359877.562267267494462, 255263.557036794140004 ], [ 359878.773400001227856, 255261.710200000554323 ], [ 359880.181500002741814, 255260.113499999046326 ], [ 359880.661899998784065, 255259.660000000149012 ], [ 359881.778800003230572, 255258.742800001055002 ], [ 359883.672328772663604, 255257.538321527477819 ], [ 359885.72207797964802, 255256.624676200997783 ], [ 359887.883689035603311, 255256.021636204968672 ], [ 359890.110382551618386, 255255.742251917894464 ], [ 359892.35397069028113, 255255.792569490527967 ], [ 359894.5658999979496, 255256.171500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302024600", "MAP": null, "PARCEL_NAM": "28", "ACRE": null, "LONGITUDE": -64.91916151, "LATITUDE": 18.32633251, "OBJECTID_1": 24878, "PARCEL_NO_": "107302024600", "Tax_Legal_": "BELLEVUE 28 FRENCHMAN BAY QTR", "Name": "THOMAS, M. & NIBBS, C. A", "Address": "394-139 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 162600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.524440255, "SHAPE_Area": 4360.1167956999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360125.366700001060963, 255221.576699998229742 ], [ 360031.234899997711182, 255196.530600000172853 ], [ 360018.404100000858307, 255188.192899998277426 ], [ 360017.274099998176098, 255226.180500000715256 ], [ 360017.033100001513958, 255254.46510000154376 ], [ 360058.914599999785423, 255260.296300001442432 ], [ 360097.082800000905991, 255228.733500000089407 ], [ 360130.030199997127056, 255242.090999998152256 ], [ 360129.293999999761581, 255233.852299999445677 ], [ 360125.366700001060963, 255221.576699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302024200", "MAP": null, "PARCEL_NAM": "29", "ACRE": null, "LONGITUDE": -64.91987605, "LATITUDE": 18.32619102, "OBJECTID_1": 24874, "PARCEL_NO_": "107302024200", "Tax_Legal_": "BELLEVUE 29 FRENCHMAN BAY QTR", "Name": "JENNINGS, B. & C", "Address": "PO Box 10046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 179000, "Improved_V": 653800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.01131243999998, "SHAPE_Area": 4189.1458144099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360018.404100000858307, 255188.192899998277426 ], [ 359975.097000002861023, 255160.396299999207258 ], [ 359966.726300001144409, 255196.424800001084805 ], [ 359939.882500000298023, 255223.858300000429153 ], [ 359950.233300000429153, 255239.352899998426437 ], [ 359961.379600003361702, 255256.12049999833107 ], [ 360017.274099998176098, 255226.180500000715256 ], [ 360018.404100000858307, 255188.192899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023900", "MAP": null, "PARCEL_NAM": "31", "ACRE": null, "LONGITUDE": -64.92121488, "LATITUDE": 18.32598913, "OBJECTID_1": 24871, "PARCEL_NO_": "107302023900", "Tax_Legal_": "BELLEVUE 31 FRENCHMAN BAY QTR.", "Name": "OKIYE, MARIBEL & STEPHEN & IBADIN, B", "Address": "PO Box 8839", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 176800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.7569481, "SHAPE_Area": 4262.3326339699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359788.549300000071526, 255192.855500001460314 ], [ 359810.818499997258186, 255229.134799998253584 ], [ 359814.810500003397465, 255233.811500001698732 ], [ 359831.084200002253056, 255216.635099999606609 ], [ 359838.403999999165535, 255209.306699998676777 ], [ 359871.520300000905991, 255202.822700001299381 ], [ 359872.339199997484684, 255201.351799998432398 ], [ 359878.017599999904633, 255197.387499999254942 ], [ 359885.294200003147125, 255195.125 ], [ 359880.902300000190735, 255142.737900000065565 ], [ 359811.255500003695488, 255177.842599999159575 ], [ 359811.228500001132488, 255181.008799999952316 ], [ 359807.177199997007847, 255183.297699999064207 ], [ 359804.763599999248981, 255182.64469999819994 ], [ 359788.549300000071526, 255192.855500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9164562, "LATITUDE": 18.32616769, "OBJECTID_1": 31652, "PARCEL_NO_": "107302030600", "Tax_Legal_": "BAKKERO 1-14 FRENCHMAN BAY QTR", "Name": "RAFFA, MATTHEW M", "Address": "PO Box 8117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84700, "Improved_V": 301400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.78903985, "SHAPE_Area": 1889.29907417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360357.163199998438358, 255178.299899999052286 ], [ 360316.56530000269413, 255211.109299998730421 ], [ 360321.192699998617172, 255235.845100000500679 ], [ 360367.219099998474121, 255228.411299999803305 ], [ 360367.3378000035882, 255214.480099998414516 ], [ 360365.831200003623962, 255202.013300001621246 ], [ 360362.701300002634525, 255190.799699999392033 ], [ 360357.163199998438358, 255178.299899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302024100", "MAP": "D9-4871-T90", "PARCEL_NAM": "30 REM", "ACRE": ".72", "LONGITUDE": -64.92054199, "LATITUDE": 18.32580312, "OBJECTID_1": 24873, "PARCEL_NO_": "107302024100", "Tax_Legal_": "30A&30REMAINDER BELLEVUE No.7 FRENCHMAN'S BAY QTR.", "Name": "GRANDVIEW TRUST", "Address": "PO Box 9953", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 195800, "Improved_V": 69000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.626522061, "SHAPE_Area": 3096.03525236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359919.372100003063679, 255203.114700000733137 ], [ 359945.984399996697903, 255173.188000001013279 ], [ 359943.80179999768734, 255142.408300001174212 ], [ 359880.902300000190735, 255142.737900000065565 ], [ 359885.294200003147125, 255195.125 ], [ 359890.954599998891354, 255193.271499998867512 ], [ 359901.436599999666214, 255193.357299998402596 ], [ 359907.874499998986721, 255194.887600000947714 ], [ 359911.888099998235703, 255197.031399998813868 ], [ 359919.372100003063679, 255203.114700000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023600", "MAP": null, "PARCEL_NAM": "32", "ACRE": null, "LONGITUDE": -64.92199879, "LATITUDE": 18.32591578, "OBJECTID_1": 24867, "PARCEL_NO_": "107302023600", "Tax_Legal_": "BELLEVUE 32 FRENCHMAN BAY QTR", "Name": "PENTHER, UDO & LESLIE ANN", "Address": "PO Box 600247", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 185800, "Improved_V": 425000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.19446019899999, "SHAPE_Area": 3755.3703321399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359814.536499999463558, 255171.325599998235703 ], [ 359789.736800000071526, 255148.113400001078844 ], [ 359779.22240000218153, 255151.827100001275539 ], [ 359759.867299996316433, 255152.090799998492002 ], [ 359755.022200003266335, 255152.895599998533726 ], [ 359751.780799999833107, 255154.768899999558926 ], [ 359750.079999998211861, 255165.098499998450279 ], [ 359745.229599997401237, 255166.536499999463558 ], [ 359737.153899997472763, 255167.947999998927116 ], [ 359710.561700001358986, 255165.830600000917912 ], [ 359707.32209999859333, 255167.492800001055002 ], [ 359703.249200001358986, 255172.314599998295307 ], [ 359748.003499999642372, 255219.543699998408556 ], [ 359761.825900003314018, 255206.146800000220537 ], [ 359779.688799999654293, 255191.727600000798702 ], [ 359797.528399996459484, 255180.052299998700619 ], [ 359808.86710000038147, 255174.234499998390675 ], [ 359814.536499999463558, 255171.325599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302024800", "MAP": "D9-2145-T82", "PARCEL_NAM": "34", "ACRE": null, "LONGITUDE": -64.92004957, "LATITUDE": 18.3252567, "OBJECTID_1": 24881, "PARCEL_NO_": "107302024800", "Tax_Legal_": "BELLEVUE 34 FRENCHMAN BAY QTR.", "Name": "LIBERTY MARINE SERVICES, INC.", "Address": "10 Old Sunbeam Dr", "City": "Daytona Beach", "State": "Florida", "Zip": 32119, "Country": "United States", "Land_Value": 378100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 930.59107266900003, "SHAPE_Area": 18048.2005961 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359829.844899997115135, 255078.14750000089407 ], [ 359828.149599999189377, 255087.844000000506639 ], [ 359861.984099999070168, 255091.709499999880791 ], [ 359864.914499998092651, 255126.352800000458956 ], [ 359880.902300000190735, 255142.737900000065565 ], [ 359943.80179999768734, 255142.408300001174212 ], [ 359975.097000002861023, 255160.396299999207258 ], [ 360018.404100000858307, 255188.192899998277426 ], [ 360031.234899997711182, 255196.530600000172853 ], [ 360125.366700001060963, 255221.576699998229742 ], [ 360116.597999997437, 255209.683699999004602 ], [ 360107.804099999368191, 255200.745799999684095 ], [ 360065.252899996936321, 255178.86600000038743 ], [ 360053.246299996972084, 255168.424199998378754 ], [ 360048.462399996817112, 255162.052200000733137 ], [ 360044.495600000023842, 255154.420400001108646 ], [ 360034.909699998795986, 255143.787200000137091 ], [ 360024.485200002789497, 255136.946899998933077 ], [ 360006.008400000631809, 255128.77419999986887 ], [ 359997.191100001335144, 255122.580299999564886 ], [ 359991.593599997460842, 255117.046000000089407 ], [ 359984.423100002110004, 255106.854899998754263 ], [ 359978.915600001811981, 255090.766699999570847 ], [ 359977.502599999308586, 255067.323699999600649 ], [ 359986.661499999463558, 255033.412599999457598 ], [ 359986.686700001358986, 255030.457499999552965 ], [ 359990.81360000371933, 255019.303300000727177 ], [ 359992.440600000321865, 255017.627900000661612 ], [ 359994.899099998176098, 255013.004000000655651 ], [ 359996.549500003457069, 255008.584499999880791 ], [ 360004.70610000193119, 254997.674400001764297 ], [ 360008.768200002610683, 254994.119100000709295 ], [ 360010.425800003111362, 254988.85530000180006 ], [ 360012.893299996852875, 254983.175999999046326 ], [ 360012.970600001513958, 254974.099599998444319 ], [ 360009.768700003623962, 254971.329100001603365 ], [ 359995.98589999973774, 254980.082299999892712 ], [ 359983.03999999910593, 254985.253600001335144 ], [ 359976.555299997329712, 254989.211300000548363 ], [ 359959.507600001990795, 255002.581799998879433 ], [ 359956.228399999439716, 255008.887800000607967 ], [ 359954.50789999961853, 255021.539299998432398 ], [ 359951.259300000965595, 255024.256900001317263 ], [ 359948.809799998998642, 255027.825500000268221 ], [ 359943.957500003278255, 255029.474500000476837 ], [ 359927.755800001323223, 255038.207800000905991 ], [ 359922.867499999701977, 255044.078499998897314 ], [ 359919.501999996602535, 255060.516199998557568 ], [ 359917.871399998664856, 255062.613800000399351 ], [ 359909.765100002288818, 255067.613699998706579 ], [ 359905.68860000371933, 255072.857700001448393 ], [ 359900.008500002324581, 255077.032999999821186 ], [ 359891.104900002479553, 255080.971000000834465 ], [ 359886.25620000064373, 255082.197799999266863 ], [ 359858.029899999499321, 255082.600099999457598 ], [ 359837.098099999129772, 255078.629099998623133 ], [ 359829.844899997115135, 255078.14750000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107301010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93027645, "LATITUDE": 18.32597652, "OBJECTID_1": 24762, "PARCEL_NO_": "107301010300", "Tax_Legal_": "HASSEL ISLAND 6 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 127700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.87052807500001, "SHAPE_Area": 1443.0188840400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358898.229299999773502, 255203.300599999725819 ], [ 358902.289599999785423, 255199.956300001591444 ], [ 358902.327399998903275, 255195.523600000888109 ], [ 358899.962399996817112, 255189.171500001102686 ], [ 358900.935900002717972, 255169.547699999064207 ], [ 358893.794200003147125, 255155.979299999773502 ], [ 358882.561499997973442, 255149.343499999493361 ], [ 358856.42509999871254, 255188.39299999922514 ], [ 358870.895599998533726, 255193.577599998563528 ], [ 358878.130800001323223, 255196.170000001788139 ], [ 358898.229299999773502, 255203.300599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91664636, "LATITUDE": 18.32586335, "OBJECTID_1": 31653, "PARCEL_NO_": "107302030700", "Tax_Legal_": "BAKKERO 1-13 FRENCHMAN BAY QTR", "Name": "TRUST AGREEMENT OF THOMAS RECALDO LETTSOME", "Address": "PO Box 12181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 109300, "Improved_V": 695600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.91699745599999, "SHAPE_Area": 2159.0809703199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360333.24889999628067, 255145.806800000369549 ], [ 360291.875299997627735, 255175.021299999207258 ], [ 360316.56530000269413, 255211.109299998730421 ], [ 360357.163199998438358, 255178.299899999052286 ], [ 360333.24889999628067, 255145.806800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302031300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91847052, "LATITUDE": 18.32583039, "OBJECTID_1": 31659, "PARCEL_NO_": "107302031300", "Tax_Legal_": "BAKKERO 1-59 FRENCHMANS BAY QTR", "Name": "SHAPIRO, ADAM & BERKOWSKY, P. B", "Address": "PO Box 12390", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.50731627299999, "SHAPE_Area": 1931.0348990699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360116.341899998486042, 255145.087000001221895 ], [ 360102.276699997484684, 255186.979499999433756 ], [ 360151.384499996900558, 255196.458500001579523 ], [ 360160.467799998819828, 255163.019900001585484 ], [ 360143.670199997723103, 255155.443199999630451 ], [ 360116.341899998486042, 255145.087000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91887086, "LATITUDE": 18.32568838, "OBJECTID_1": 31660, "PARCEL_NO_": "107302031400", "Tax_Legal_": "BAKKERO ESTATE 1-60 No.5 FRENCHMAN'S BAY QTR.", "Name": "BERKOWSKY, PAMELA B. & SHAPIRO, A", "Address": "PO Box 12390", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 108500, "Improved_V": 736900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.05922679899999, "SHAPE_Area": 1925.46831623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360083.439499996602535, 255126.452599998563528 ], [ 360059.76519999653101, 255160.456000000238419 ], [ 360065.357199996709824, 255166.623500000685453 ], [ 360074.174500003457069, 255172.817299999296665 ], [ 360102.276699997484684, 255186.979499999433756 ], [ 360116.341899998486042, 255145.087000001221895 ], [ 360111.520199999213219, 255143.147700000554323 ], [ 360083.439499996602535, 255126.452599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302026000", "MAP": "D9-5350-T92", "PARCEL_NAM": "33-2", "ACRE": ".58", "LONGITUDE": -64.92115732000001, "LATITUDE": 18.32540781, "OBJECTID_1": 24893, "PARCEL_NO_": "107302026000", "Tax_Legal_": "33-2 BELLEVUE No.7 FRENCHMAN'S BAY QUARTER", "Name": "HANSEN, F CHRYSTOPHER", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 309.95218524500001, "SHAPE_Area": 2250.5684081300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359817.478699997067451, 255109.921500001102686 ], [ 359847.994499996304512, 255124.736699998378754 ], [ 359840.590199999511242, 255141.985700000077486 ], [ 359847.739100001752377, 255154.709899999201298 ], [ 359814.536499999463558, 255171.325599998235703 ], [ 359808.86710000038147, 255174.234499998390675 ], [ 359811.255500003695488, 255177.842599999159575 ], [ 359880.902300000190735, 255142.737900000065565 ], [ 359864.914499998092651, 255126.352800000458956 ], [ 359861.984099999070168, 255091.709499999880791 ], [ 359828.149599999189377, 255087.844000000506639 ], [ 359828.109999999403954, 255092.487700000405312 ], [ 359820.738099999725819, 255105.937399998307228 ], [ 359817.478699997067451, 255109.921500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025400", "MAP": "D9-5350-T92", "PARCEL_NAM": "33-1", "ACRE": ".53", "LONGITUDE": -64.92141051, "LATITUDE": 18.32557296, "OBJECTID_1": 24887, "PARCEL_NO_": "107302025400", "Tax_Legal_": "BELLEVUE 33-1 No.7 FRENCHMAN'S BAY QTR.", "Name": "TURCO, GIOVANNA & PAOLA ELENA EMY", "Address": "PO Box 9064", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 153400, "Improved_V": 625800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.78946666100001, "SHAPE_Area": 2105.8881147000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359817.478699997067451, 255109.921500001102686 ], [ 359794.610600002110004, 255143.931499999016523 ], [ 359789.736800000071526, 255148.113400001078844 ], [ 359814.536499999463558, 255171.325599998235703 ], [ 359847.739100001752377, 255154.709899999201298 ], [ 359840.590199999511242, 255141.985700000077486 ], [ 359847.994499996304512, 255124.736699998378754 ], [ 359817.478699997067451, 255109.921500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9169058, "LATITUDE": 18.32553609, "OBJECTID_1": 31654, "PARCEL_NO_": "107302030800", "Tax_Legal_": "BAKKERO 1-12 FRENCHMAN BAY QTR", "Name": "VERNE A HODGE TRUST", "Address": "PO Box 7603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 110500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.001343585, "SHAPE_Area": 2281.79536465 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360322.941299997270107, 255125.246399998664856 ], [ 360259.312799997627735, 255116.493000000715256 ], [ 360291.875299997627735, 255175.021299999207258 ], [ 360333.24889999628067, 255145.806800000369549 ], [ 360329.262299999594688, 255140.496899999678135 ], [ 360322.941299997270107, 255125.246399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107301010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93279785, "LATITUDE": 18.3256442, "OBJECTID_1": 24761, "PARCEL_NO_": "107301010200", "Tax_Legal_": "HASSEL ISLAND 5 SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 170100, "Improved_V": 40500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.817600656, "SHAPE_Area": 1969.04366983 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358608.341600000858307, 255155.753899998962879 ], [ 358617.20380000025034, 255156.670899998396635 ], [ 358642.984200000762939, 255159.41499999910593 ], [ 358650.390299998223782, 255141.954799998551607 ], [ 358638.42509999871254, 255126.65819999948144 ], [ 358611.091399997472763, 255116.935199998319149 ], [ 358595.7516999989748, 255119.131700001657009 ], [ 358584.980099998414516, 255153.029599998146296 ], [ 358608.341600000858307, 255155.753899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91924008, "LATITUDE": 18.32540524, "OBJECTID_1": 31661, "PARCEL_NO_": "107302031500", "Tax_Legal_": "BAKKERO 1-61 FRENCHMAN BAY QTR", "Name": "FRANCIS, D'JOI RAE", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75800, "Improved_V": 286800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.64457289000001, "SHAPE_Area": 2015.59767255 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360036.156599998474121, 255092.079500000923872 ], [ 360018.137199997901917, 255124.86259999871254 ], [ 360028.586900003254414, 255128.747900001704693 ], [ 360040.615099996328354, 255136.656800001859665 ], [ 360051.003600001335144, 255147.718699999153614 ], [ 360054.973999999463558, 255154.928300000727177 ], [ 360059.76519999653101, 255160.456000000238419 ], [ 360083.439499996602535, 255126.452599998563528 ], [ 360072.208700001239777, 255119.605700001120567 ], [ 360057.795800000429153, 255107.666499998420477 ], [ 360036.156599998474121, 255092.079500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9163415, "LATITUDE": 18.32538508, "OBJECTID_1": 31691, "PARCEL_NO_": "107302034400", "Tax_Legal_": "BAKKERO 1-29 FRENCHMAN BAY QTR", "Name": "MARK CHONG, MILDRED M BOUGH and ALFREDO A BOUGH", "Address": "4005 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93600, "Improved_V": 270800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.50288237300001, "SHAPE_Area": 1981.1276975599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360380.362099997699261, 255105.451400000602007 ], [ 360329.5608000010252, 255105.457800000905991 ], [ 360329.506899997591972, 255111.790100000798702 ], [ 360331.053000003099442, 255119.613299999386072 ], [ 360338.156900003552437, 255137.61430000141263 ], [ 360354.103399999439716, 255158.854200001806021 ], [ 360388.292199999094009, 255121.137200001627207 ], [ 360380.362099997699261, 255105.451400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.918859, "LATITUDE": 18.32501483, "OBJECTID_1": 31667, "PARCEL_NO_": "107302032100", "Tax_Legal_": "BAKKERO 1-56 FRENCHMAN BAY QTR.", "Name": "SHARMILA R MOHANANI LIVING TRUST", "Address": "PO Box 305146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.86875609500001, "SHAPE_Area": 2324.858639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360110.258199997246265, 255101.97410000115633 ], [ 360100.843199998140335, 255071.288499999791384 ], [ 360109.213799998164177, 255035.260000001639128 ], [ 360101.192100003361702, 255030.339200001209974 ], [ 360087.335500001907349, 255047.746599998325109 ], [ 360076.740199998021126, 255060.958700001239777 ], [ 360071.492299996316433, 255109.045099999755621 ], [ 360078.69879999756813, 255115.014699999243021 ], [ 360097.153999999165535, 255125.720499999821186 ], [ 360110.258199997246265, 255101.97410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91963475, "LATITUDE": 18.32510232, "OBJECTID_1": 31662, "PARCEL_NO_": "107302031600", "Tax_Legal_": "BAKKERO 1-62 FRENCHMANS BAY QTR", "Name": "HODGE, EVERILDA M", "Address": "PO Box 8299", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120800, "Improved_V": 381700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.95872173399999, "SHAPE_Area": 1980.3603847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360026.651699997484684, 255071.947900000959635 ], [ 359988.841300003230572, 255061.505899999290705 ], [ 359986.346799999475479, 255070.351399999111891 ], [ 359987.038099996745586, 255083.86710000038147 ], [ 359990.936599999666214, 255099.519900001585484 ], [ 359997.304399996995926, 255109.282299999147654 ], [ 360002.898199997842312, 255115.238699998706579 ], [ 360010.108300000429153, 255120.786200001835823 ], [ 360018.137199997901917, 255124.86259999871254 ], [ 360036.156599998474121, 255092.079500000923872 ], [ 360032.150200001895428, 255089.091400001198053 ], [ 360028.168999999761581, 255083.148200001567602 ], [ 360026.610299997031689, 255076.802700001746416 ], [ 360026.651699997484684, 255071.947900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302030900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91687343, "LATITUDE": 18.32506842, "OBJECTID_1": 31655, "PARCEL_NO_": "107302030900", "Tax_Legal_": "BAKKERO 1-11 FRENCHMANS BAY QTR.", "Name": "VERNE A HODGE TRUST", "Address": "PO Box 7603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 154100, "Improved_V": 583600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.04446603700001, "SHAPE_Area": 3094.1985239300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360329.027800001204014, 255073.367199998348951 ], [ 360316.455899998545647, 255034.634199999272823 ], [ 360274.825099997222424, 255094.032900001853704 ], [ 360259.312799997627735, 255116.493000000715256 ], [ 360322.941299997270107, 255125.246399998664856 ], [ 360319.863499999046326, 255107.911499999463558 ], [ 360319.989399999380112, 255093.135999999940395 ], [ 360324.944099999964237, 255079.45549999922514 ], [ 360329.027800001204014, 255073.367199998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91849114, "LATITUDE": 18.32499755, "OBJECTID_1": 31669, "PARCEL_NO_": "107302032300", "Tax_Legal_": "BAKKERO 1-57 FRENCHMAN BAY QTR", "Name": "SHARMILA R MOHANANI LIVING TRUST", "Address": "PO Box 305146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 141100, "Improved_V": 779300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.57087804099999, "SHAPE_Area": 3010.6264967299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360126.056500002741814, 255045.952599998563528 ], [ 360109.213799998164177, 255035.260000001639128 ], [ 360100.843199998140335, 255071.288499999791384 ], [ 360110.258199997246265, 255101.97410000115633 ], [ 360172.202200002968311, 255119.157499998807907 ], [ 360137.30349999666214, 255050.89979999884963 ], [ 360135.678300000727177, 255052.364100001752377 ], [ 360134.886399999260902, 255050.6689000017941 ], [ 360133.280900001525879, 255049.8114 ], [ 360130.860200002789497, 255050.002599999308586 ], [ 360126.056500002741814, 255045.952599998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302031200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91777366, "LATITUDE": 18.32484742, "OBJECTID_1": 31658, "PARCEL_NO_": "107302031200", "Tax_Legal_": "BAKKERO 1-10 FRENCHMAN BAY QTR.", "Name": "KURELL A.,EVADNEY V T HODGE & NELLIE C. VARLACK", "Address": "PO Box 397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 324500, "Improved_V": 568900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 413.53798026800001, "SHAPE_Area": 11525.9372647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360274.825099997222424, 255094.032900001853704 ], [ 360228.902300000190735, 254994.654199998825788 ], [ 360172.273400001227856, 255016.144400000572205 ], [ 360160.929300002753735, 255022.595499999821186 ], [ 360149.565399996936321, 255031.368400000035763 ], [ 360138.178099997341633, 255042.885400000959635 ], [ 360138.928700000047684, 255049.435400001704693 ], [ 360137.30349999666214, 255050.89979999884963 ], [ 360172.202200002968311, 255119.157499998807907 ], [ 360259.312799997627735, 255116.493000000715256 ], [ 360274.825099997222424, 255094.032900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91917129, "LATITUDE": 18.32485949, "OBJECTID_1": 31666, "PARCEL_NO_": "107302032000", "Tax_Legal_": "BAKKERO 1-55 FRENCHMAN BAY QTR", "Name": "LAURIE McPEARCE McCORMICK & AMY REIN", "Address": "1425 Phoenix Dr", "City": "Iowa City", "State": "Iowa", "Zip": 52246, "Country": "United States", "Land_Value": 128000, "Improved_V": 324900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.455096492, "SHAPE_Area": 2525.9627458300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360071.492299996316433, 255109.045099999755621 ], [ 360076.740199998021126, 255060.958700001239777 ], [ 360087.335500001907349, 255047.746599998325109 ], [ 360054.474500000476837, 255024.25730000063777 ], [ 360041.388300001621246, 255045.892900001257658 ], [ 360038.928000003099442, 255050.727899998426437 ], [ 360038.100100003182888, 255053.254200000315905 ], [ 360033.971400000154972, 255064.619500000029802 ], [ 360033.890500001609325, 255074.118000000715256 ], [ 360035.447400003671646, 255080.674699999392033 ], [ 360040.238499999046326, 255086.202300000935793 ], [ 360057.8766999989748, 255098.167899999767542 ], [ 360071.492299996316433, 255109.045099999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034300", "MAP": "A9-88-T68", "PARCEL_NAM": "1-30", "ACRE": null, "LONGITUDE": -64.91630715, "LATITUDE": 18.32497923, "OBJECTID_1": 31690, "PARCEL_NO_": "107302034300", "Tax_Legal_": "BAKKERO 1-30 FRENCHMANS BAY QTR", "Name": "WILLIAMS FAMILY REVOCABLE TRUST", "Address": "PO Box 304563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98400, "Improved_V": 228900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.65111298100001, "SHAPE_Area": 2356.4390224600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360384.814499996602535, 255056.091899998486042 ], [ 360373.759800001978874, 255028.559300001710653 ], [ 360372.843800000846386, 255041.42850000038743 ], [ 360368.727799996733665, 255051.316199999302626 ], [ 360365.473700001835823, 255054.667100001126528 ], [ 360341.935999996960163, 255072.628499999642372 ], [ 360332.152400001883507, 255085.214000001549721 ], [ 360328.839000001549721, 255095.530499998480082 ], [ 360329.5608000010252, 255105.457800000905991 ], [ 360380.362099997699261, 255105.451400000602007 ], [ 360384.814499996602535, 255056.091899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302031100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91712017, "LATITUDE": 18.32444315, "OBJECTID_1": 31657, "PARCEL_NO_": "107302031100", "Tax_Legal_": "BAKKERO 1-9 FRENCHMAN BAY QTR.", "Name": "SYMKENS, SANDY M", "Address": "PO Box 10380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 246500, "Improved_V": 1030700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.49578977700003, "SHAPE_Area": 6311.7991829000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360316.455899998545647, 255034.634199999272823 ], [ 360293.650100000202656, 254966.686500001698732 ], [ 360289.629299998283386, 254965.386999998241663 ], [ 360280.002099998295307, 254959.60869999974966 ], [ 360276.767899997532368, 254960.637699998915195 ], [ 360263.76799999922514, 254972.141399998217821 ], [ 360245.104099996387959, 254985.920899998396635 ], [ 360228.902300000190735, 254994.654199998825788 ], [ 360274.825099997222424, 255094.032900001853704 ], [ 360316.455899998545647, 255034.634199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107304013300", "MAP": "A9-656-T005", "PARCEL_NAM": "4-E", "ACRE": ".944", "LONGITUDE": -64.92071453, "LATITUDE": 18.32312602, "OBJECTID_1": 31736, "PARCEL_NO_": "107304013300", "Tax_Legal_": "BAKKERO ESTATE 4-C REM, 4-D & 4-E NO. 5 FRENCHMAN'S BAY QTR", "Name": "MARRIOTT OWNERSHIP RESORTS STT INC", "Address": "6649 Westwood Blvd", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 1312100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.67251463700001, "SHAPE_Area": 3496.20819235 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359873.920699998736382, 254857.530000001192093 ], [ 359874.272100001573563, 254897.505699999630451 ], [ 359874.439599998295307, 254904.733800001442432 ], [ 359873.271999999880791, 254908.563299998641014 ], [ 359872.353900000452995, 254909.684900000691414 ], [ 359921.894500002264977, 254908.513300001621246 ], [ 359918.4949000030756, 254852.478100001811981 ], [ 359918.107699997723103, 254844.344900000840425 ], [ 359920.024099998176098, 254832.391399998217821 ], [ 359875.036499999463558, 254832.471500001847744 ], [ 359873.920699998736382, 254857.530000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302031700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91960833, "LATITUDE": 18.32467235, "OBJECTID_1": 31663, "PARCEL_NO_": "107302031700", "Tax_Legal_": "1-63 ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "CALMEZE H & VANESSA G DUDLEY REVOCABLE LIVING TRUST", "Address": "4232 Wabeek Lake Dr S", "City": "Bloomfield Hills", "State": "Michigan", "Zip": 483021663, "Country": "United States", "Land_Value": 106000, "Improved_V": 395600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.360241831, "SHAPE_Area": 1817.73268446 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360038.244000002741814, 255036.367899999022484 ], [ 360007.018899999558926, 255010.147799998521805 ], [ 360002.940600000321865, 255015.602899998426437 ], [ 359999.646999999880791, 255023.597500000149012 ], [ 359998.016400001943111, 255025.695099998265505 ], [ 359994.708499997854233, 255035.378299999982119 ], [ 359988.841300003230572, 255061.505899999290705 ], [ 360026.651699997484684, 255071.947900000959635 ], [ 360025.901100002229214, 255065.397799998521805 ], [ 360028.368600003421307, 255059.718499999493361 ], [ 360033.330600000917912, 255045.193599998950958 ], [ 360038.244000002741814, 255036.367899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302031000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91658808, "LATITUDE": 18.32439419, "OBJECTID_1": 31656, "PARCEL_NO_": "107302031000", "Tax_Legal_": "BAKKERO 1-8 FRENCHMAN BAY QTR", "Name": "TOMLINSON, DANIEL & MONICA", "Address": "PO Box 10705", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 189600, "Improved_V": 376000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.70749633100002, "SHAPE_Area": 4035.1910713399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360316.455899998545647, 255034.634199999272823 ], [ 360329.027800001204014, 255073.367199998348951 ], [ 360336.353000000119209, 255065.405600000172853 ], [ 360360.704199999570847, 255046.606499999761581 ], [ 360363.1537000015378, 255043.037900000810623 ], [ 360363.994199998676777, 255039.034000001847744 ], [ 360364.870600000023842, 255030.808600001037121 ], [ 360362.4966000020504, 255025.511799998581409 ], [ 360346.735399998724461, 254982.530799999833107 ], [ 360344.339900001883507, 254979.767000000923872 ], [ 360337.117200002074242, 254975.69709999859333 ], [ 360308.125900000333786, 254971.237900000065565 ], [ 360293.650100000202656, 254966.686500001698732 ], [ 360316.455899998545647, 255034.634199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401016100", "MAP": "D9-7860-T006", "PARCEL_NAM": "1-3 REM", "ACRE": "1.143", "LONGITUDE": -64.91582736, "LATITUDE": 18.32442185, "OBJECTID_1": 32999, "PARCEL_NO_": "107401016100", "Tax_Legal_": "BAKKERO 1-3 FRENCHMAN BAY QTR.", "Name": "ALWANI, SATISH & SHALINI", "Address": "5120 Dronnigens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.64974151300001, "SHAPE_Area": 3603.4609839200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360456.037900000810623, 255025.221900001168251 ], [ 360440.283900000154972, 254981.396600000560284 ], [ 360368.241499997675419, 255013.73759999871254 ], [ 360373.759800001978874, 255028.559300001710653 ], [ 360384.814499996602535, 255056.091899998486042 ], [ 360456.037900000810623, 255025.221900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91889512, "LATITUDE": 18.32439149, "OBJECTID_1": 31665, "PARCEL_NO_": "107302031900", "Tax_Legal_": "1-53 ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "SAKHRANI, VASHI G. & VIDYA V. TRUS", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 108100, "Improved_V": 392300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.112692369, "SHAPE_Area": 2407.49743936 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360124.013400003314018, 255001.817299999296665 ], [ 360083.085600003600121, 254978.684200000017881 ], [ 360074.884099997580051, 254994.871300000697374 ], [ 360058.560000002384186, 255017.958000000566244 ], [ 360054.474500000476837, 255024.25730000063777 ], [ 360087.335500001907349, 255047.746599998325109 ], [ 360101.192100003361702, 255030.339200001209974 ], [ 360124.013400003314018, 255001.817299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91843826, "LATITUDE": 18.32438947, "OBJECTID_1": 31670, "PARCEL_NO_": "107302032400", "Tax_Legal_": "1-54 ESTATE BEKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "NOSE, KURT DOUGLAS & MICHELLE CELLURA", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022623, "Country": "United States", "Land_Value": 98400, "Improved_V": 244400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.16742569600001, "SHAPE_Area": 2076.4438904600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360101.192100003361702, 255030.339200001209974 ], [ 360109.213799998164177, 255035.260000001639128 ], [ 360126.056500002741814, 255045.952599998563528 ], [ 360145.589599996805191, 255024.791999999433756 ], [ 360156.141800001263618, 255016.645700000226498 ], [ 360169.913800001144409, 255009.159000001847744 ], [ 360152.442900002002716, 254977.563099998980761 ], [ 360124.013400003314018, 255001.817299999296665 ], [ 360101.192100003361702, 255030.339200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91942064, "LATITUDE": 18.32436516, "OBJECTID_1": 31664, "PARCEL_NO_": "107302031800", "Tax_Legal_": "BEKKERO ESTATE 1-64 FRENCHMANS BAY QTR", "Name": "NAGPAL, APARNA", "Address": "9004 Havensight Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.038655272, "SHAPE_Area": 1336.2121120899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360058.669699996709824, 255005.08219999819994 ], [ 360027.387100003659725, 254985.616599999368191 ], [ 360014.365699999034405, 254999.653299998492002 ], [ 360007.018899999558926, 255010.147799998521805 ], [ 360038.244000002741814, 255036.367899999022484 ], [ 360054.600400000810623, 255009.481800001114607 ], [ 360058.669699996709824, 255005.08219999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034200", "MAP": "A9-88-T68", "PARCEL_NAM": "1-4", "ACRE": null, "LONGITUDE": -64.91598561000001, "LATITUDE": 18.32393211, "OBJECTID_1": 31689, "PARCEL_NO_": "107302034200", "Tax_Legal_": "BAKKERO 1-4 & 1-3A FRENCHMAN BAY QTR", "Name": "CAPTAINSOY FAMILY TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 170600, "Improved_V": 746400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.70370059599998, "SHAPE_Area": 4799.9929336900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360418.225000001490116, 254920.421100001782179 ], [ 360417.666599996387959, 254918.921399999409914 ], [ 360378.198700003325939, 254932.120600000023842 ], [ 360376.437200002372265, 254934.893300000578165 ], [ 360351.30799999833107, 254974.448600001633167 ], [ 360353.236299999058247, 254976.67339999973774 ], [ 360355.628200002014637, 254979.859400000423193 ], [ 360363.619800001382828, 255001.324000000953674 ], [ 360399.028899997472763, 254999.916600000113249 ], [ 360440.283900000154972, 254981.396600000560284 ], [ 360429.26519999653101, 254949.642400000244379 ], [ 360418.225000001490116, 254920.421100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302033200", "MAP": "A9-88-T68", "PARCEL_NAM": "1-49", "ACRE": null, "LONGITUDE": -64.91792146, "LATITUDE": 18.3241067, "OBJECTID_1": 31678, "PARCEL_NO_": "107302033200", "Tax_Legal_": "1-49 ESTATE BAKKERO FRENCHMAN BAY QTR", "Name": "LYNCH, BERISFORD F. & JOANN F", "Address": "PO Box 7474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 130400, "Improved_V": 463600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.15859709200001, "SHAPE_Area": 2211.5898817399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360229.782399997115135, 254986.006599999964237 ], [ 360214.712399996817112, 254956.541200000792742 ], [ 360152.442900002002716, 254977.563099998980761 ], [ 360169.913800001144409, 255009.159000001847744 ], [ 360193.383199997246265, 254999.218600001186132 ], [ 360213.598600000143051, 254992.629099998623133 ], [ 360229.782399997115135, 254986.006599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91916351, "LATITUDE": 18.32398367, "OBJECTID_1": 31672, "PARCEL_NO_": "107302032600", "Tax_Legal_": "BAKKERO 1-65 FRENCHMAN BAY QTR", "Name": "GONZALEZ, DARIO & BARBARA", "Address": "GPO BOX 4785", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 106000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.729994033, "SHAPE_Area": 2440.7745181099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360094.040600001811981, 254923.256299998611212 ], [ 360027.531000003218651, 254968.73030000180006 ], [ 360029.915799997746944, 254972.760600000619888 ], [ 360029.037500001490116, 254981.19709999859333 ], [ 360027.387100003659725, 254985.616599999368191 ], [ 360058.669699996709824, 255005.08219999819994 ], [ 360071.741499997675419, 254985.135299999266863 ], [ 360082.423199996352196, 254961.791299998760223 ], [ 360089.04450000077486, 254941.791600000113249 ], [ 360091.512000001966953, 254936.112300001084805 ], [ 360093.959700003266335, 254932.754799999296665 ], [ 360094.040600001811981, 254923.256299998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91860063, "LATITUDE": 18.32403519, "OBJECTID_1": 31671, "PARCEL_NO_": "107302032500", "Tax_Legal_": "BAKKERO 1-52 FRENCHMAN BAY QTR", "Name": "SAKHRANI, CHANDRU G. & KAVITA C", "Address": "5177 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 123300, "Improved_V": 624000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.026512236, "SHAPE_Area": 2301.8870303499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360155.023699998855591, 254958.585799999535084 ], [ 360092.984399996697903, 254952.589600000530481 ], [ 360092.149300001561642, 254955.960299998521805 ], [ 360088.82150000333786, 254967.965399999171495 ], [ 360087.192699998617172, 254969.85190000012517 ], [ 360083.085600003600121, 254978.684200000017881 ], [ 360124.013400003314018, 255001.817299999296665 ], [ 360152.442900002002716, 254977.563099998980761 ], [ 360155.023699998855591, 254958.585799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302033300", "MAP": "A9-88-T68", "PARCEL_NAM": "1-48", "ACRE": null, "LONGITUDE": -64.9174366, "LATITUDE": 18.32384647, "OBJECTID_1": 31679, "PARCEL_NO_": "107302033300", "Tax_Legal_": "1-48 BAKKERO FRENCHMANS BAY QTR", "Name": "GEORGE, SIDNEY & BETTY", "Address": "2002 Gamble Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93600, "Improved_V": 239200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.23777514099999, "SHAPE_Area": 1928.7906567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360249.711099997162819, 254918.408599998801947 ], [ 360239.929200001060963, 254930.783100001513958 ], [ 360225.298699997365475, 254944.384399998933077 ], [ 360225.2466000020504, 254950.505699999630451 ], [ 360221.193400003015995, 254953.005699999630451 ], [ 360217.169100001454353, 254952.128400001674891 ], [ 360214.712399996817112, 254956.541200000792742 ], [ 360229.782399997115135, 254986.006599999964237 ], [ 360244.371500000357628, 254977.260000001639128 ], [ 360266.291199997067451, 254959.918699998408556 ], [ 360267.914599999785423, 254958.665399998426437 ], [ 360269.604599997401237, 254949.602200001478195 ], [ 360262.430500000715256, 254939.833200000226498 ], [ 360258.470799997448921, 254931.35700000077486 ], [ 360249.711099997162819, 254918.408599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302033100", "MAP": "D9-7353-T004", "PARCEL_NAM": "1-50", "ACRE": ".590", "LONGITUDE": -64.91804589, "LATITUDE": 18.32376106, "OBJECTID_1": 31677, "PARCEL_NO_": "107302033100", "Tax_Legal_": "BAKKERO 1-50 FRENCHMAN BAY QTR", "Name": "MIRPURI, HARSH & NAMEETA", "Address": "9A MAIN STREET", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 119900, "Improved_V": 865100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.30484606900001, "SHAPE_Area": 2486.8983129500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360161.058100000023842, 254912.827899999916553 ], [ 360155.023699998855591, 254958.585799999535084 ], [ 360152.442900002002716, 254977.563099998980761 ], [ 360214.712399996817112, 254956.541200000792742 ], [ 360209.14190000295639, 254947.840799998492002 ], [ 360183.656400002539158, 254910.479699999094009 ], [ 360161.058100000023842, 254912.827899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91662504, "LATITUDE": 18.32367817, "OBJECTID_1": 31686, "PARCEL_NO_": "107302034000", "Tax_Legal_": "BAKKERO 1-6 FRENCHMAN BAY QTR", "Name": "BAKKEROE INVESTMENT LLC", "Address": "8939 Woodsboro Pike", "City": "Walkersville", "State": "Maryland", "Zip": 21793, "Country": "United States", "Land_Value": 193200, "Improved_V": 539800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.97652366199998, "SHAPE_Area": 4489.7097930199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360378.198700003325939, 254932.120600000023842 ], [ 360320.638599999248981, 254892.101300001144409 ], [ 360320.623400002717972, 254892.119899999350309 ], [ 360277.760799996554852, 254944.594099998474121 ], [ 360277.542999997735023, 254944.853799998760223 ], [ 360279.303700000047684, 254946.937399998307228 ], [ 360288.112000003457069, 254954.186599999666214 ], [ 360300.161700002849102, 254959.562600001692772 ], [ 360310.620399996638298, 254962.392400000244379 ], [ 360342.021600000560284, 254967.92680000141263 ], [ 360348.445200003683567, 254971.145700000226498 ], [ 360351.30799999833107, 254974.448600001633167 ], [ 360376.437200002372265, 254934.893300000578165 ], [ 360378.198700003325939, 254932.120600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032900", "MAP": "A9-88-T68", "PARCEL_NAM": "1-43", "ACRE": null, "LONGITUDE": -64.91931555, "LATITUDE": 18.32362942, "OBJECTID_1": 31675, "PARCEL_NO_": "107302032900", "Tax_Legal_": "BAKKERO 1-43 FRENCHMAN BAY QTR.", "Name": "RAWLINS, ANGELA C. & ALAFIA C. (CO-TRUSTEE)", "Address": "PO Box 11307", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 118800, "Improved_V": 889600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.69004293099999, "SHAPE_Area": 3468.91157776 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360012.782899998128414, 254901.481800001114607 ], [ 360017.108300000429153, 254961.678899999707937 ], [ 360025.938199996948242, 254966.395199999213219 ], [ 360027.531000003218651, 254968.73030000180006 ], [ 360094.040600001811981, 254923.256299998611212 ], [ 360094.056800000369549, 254921.356499999761581 ], [ 360087.660300001502037, 254914.971400000154972 ], [ 360055.506700001657009, 254903.098099999129772 ], [ 360042.636200003325939, 254899.404100000858307 ], [ 360030.554099999368191, 254897.827599998563528 ], [ 360016.821599997580051, 254900.670499999076128 ], [ 360012.782899998128414, 254901.481800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032700", "MAP": "D9-7528-T005", "PARCEL_NAM": "1-42 REM", "ACRE": ".591", "LONGITUDE": -64.91978927, "LATITUDE": 18.32368291, "OBJECTID_1": 31673, "PARCEL_NO_": "107302032700", "Tax_Legal_": "BAKKERO 1-42 FRENCHMAN BAY QTR", "Name": "DAVIS JR., THOMAS", "Address": "424 E Central Blvd", "City": "Orlando", "State": "Florida", "Zip": 32801, "Country": "United States", "Land_Value": 144600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.75864180799999, "SHAPE_Area": 2156.5629352400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359965.282799996435642, 254930.383299998939037 ], [ 359967.118100002408028, 254944.389400001615286 ], [ 359969.721699997782707, 254952.371199999004602 ], [ 359973.42960000038147, 254955.939699999988079 ], [ 359984.459899999201298, 254956.384700000286102 ], [ 359996.035899996757507, 254955.418999999761581 ], [ 360011.474899999797344, 254960.366200000047684 ], [ 360017.108300000429153, 254961.678899999707937 ], [ 360012.782899998128414, 254901.481800001114607 ], [ 360007.941399998962879, 254901.864399999380112 ], [ 360003.922399997711182, 254900.353900000452995 ], [ 359965.282799996435642, 254930.383299998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302033000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9185052, "LATITUDE": 18.32369325, "OBJECTID_1": 31676, "PARCEL_NO_": "107302033000", "Tax_Legal_": "1-51 ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "Thomas and Deborah Dupar Family Trust", "Address": "9715 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91300, "Improved_V": 1049000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.44583794499999, "SHAPE_Area": 2350.31022222 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360161.058100000023842, 254912.827899999916553 ], [ 360125.548000000417233, 254916.336899999529123 ], [ 360101.335199996829033, 254918.883000001311302 ], [ 360102.892099998891354, 254925.439599998295307 ], [ 360101.196699999272823, 254935.136100001633167 ], [ 360096.285099998116493, 254943.750700000673532 ], [ 360092.984399996697903, 254952.589600000530481 ], [ 360155.023699998855591, 254958.585799999535084 ], [ 360161.058100000023842, 254912.827899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302033400", "MAP": "A9-88-T68", "PARCEL_NAM": "1-47", "ACRE": null, "LONGITUDE": -64.91770153, "LATITUDE": 18.32350907, "OBJECTID_1": 31680, "PARCEL_NO_": "107302033400", "Tax_Legal_": "1-47 BAKKERO NO.5 FRENCHMAN'S BAY QTR", "Name": "LOVELACE, DOUGLAS ANTHONY", "Address": "508 Sandy Valley Ct", "City": "Virginia Beach", "State": "Virginia", "Zip": 23452, "Country": "United States", "Land_Value": 130400, "Improved_V": 924600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.27276581000001, "SHAPE_Area": 1884.7907563000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360224.965300001204014, 254888.864100001752377 ], [ 360183.656400002539158, 254910.479699999094009 ], [ 360209.14190000295639, 254947.840799998492002 ], [ 360225.384999997913837, 254934.252599999308586 ], [ 360245.728100001811981, 254912.676500000059605 ], [ 360224.965300001204014, 254888.864100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302033900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91709061, "LATITUDE": 18.32331602, "OBJECTID_1": 31685, "PARCEL_NO_": "107302033900", "Tax_Legal_": "1-7 ESTATE BAKKERO No.2 FRENCHMAN'S BAY QTR.", "Name": "RICE, FRED & SUE R", "Address": "4211 Norbourne Blvd", "City": "Louisville", "State": "Kentucky", "Zip": 40207, "Country": "United States", "Land_Value": 168500, "Improved_V": 880300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.18971202400002, "SHAPE_Area": 4017.23988577 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360320.623400002717972, 254892.119899999350309 ], [ 360319.489100001752377, 254867.895100001245737 ], [ 360297.711499996483326, 254868.561200000345707 ], [ 360266.279700003564358, 254866.615200001746416 ], [ 360257.403099998831749, 254867.386900000274181 ], [ 360247.693099997937679, 254871.318199999630451 ], [ 360240.391400001943111, 254876.535799998790026 ], [ 360235.510300002992153, 254881.562100000679493 ], [ 360236.259099997580051, 254888.32319999858737 ], [ 360260.205700002610683, 254917.0168999992311 ], [ 360261.787799999117851, 254920.618400000035763 ], [ 360265.776199996471405, 254925.717300001531839 ], [ 360272.11879999935627, 254938.434799998998642 ], [ 360277.542999997735023, 254944.853799998760223 ], [ 360277.760799996554852, 254944.594099998474121 ], [ 360320.623400002717972, 254892.119899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91623263, "LATITUDE": 18.32328549, "OBJECTID_1": 31688, "PARCEL_NO_": "107302034100", "Tax_Legal_": "BAKKERO 1-5 FRENCHMAN BAY QTR", "Name": "SIMMONS, ROBERT", "Address": "222 N Ocean Blvd", "City": "Delray Beach", "State": "Florida", "Zip": 33483, "Country": "United States", "Land_Value": 174400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.85854223500002, "SHAPE_Area": 4690.5573472100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360417.666599996387959, 254918.921399999409914 ], [ 360416.648299999535084, 254916.186299998313189 ], [ 360400.118600003421307, 254868.766100000590086 ], [ 360396.176899999380112, 254858.179200001060963 ], [ 360340.460400000214577, 254867.22239999845624 ], [ 360319.489100001752377, 254867.895100001245737 ], [ 360320.623400002717972, 254892.119899999350309 ], [ 360320.638599999248981, 254892.101300001144409 ], [ 360378.198700003325939, 254932.120600000023842 ], [ 360417.666599996387959, 254918.921399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032800", "MAP": "A9-88-T68", "PARCEL_NAM": "1-41", "ACRE": null, "LONGITUDE": -64.91995341000001, "LATITUDE": 18.32327225, "OBJECTID_1": 31674, "PARCEL_NO_": "107302032800", "Tax_Legal_": "BAKKERO 1-41 FRENCHMAN BAY QTR", "Name": "MOTIANI, GIRDHAR & MALA", "Address": "9005 Haven Sight Shopping Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91000, "Improved_V": 743200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.141771697, "SHAPE_Area": 2055.1678035099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359963.335299998521805, 254931.896800000220537 ], [ 360003.922399997711182, 254900.353900000452995 ], [ 360001.512500002980232, 254899.2787000015378 ], [ 359999.12049999833107, 254896.092700000852346 ], [ 359994.352799996733665, 254887.820999998599291 ], [ 359986.498199999332428, 254863.269900001585484 ], [ 359981.752099998295307, 254852.465300001204014 ], [ 359976.982500001788139, 254844.404699999839067 ], [ 359975.380699999630451, 254843.125 ], [ 359972.157200001180172, 254842.887499999254942 ], [ 359968.9121999964118, 254845.18299999833107 ], [ 359964.751199997961521, 254860.347699999809265 ], [ 359962.906599998474121, 254887.5636 ], [ 359962.606299996376038, 254922.813799999654293 ], [ 359963.335299998521805, 254931.896800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91883745, "LATITUDE": 18.32331132, "OBJECTID_1": 31682, "PARCEL_NO_": "107302033600", "Tax_Legal_": "1-44 ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "LLOYD, CHRISTINE A", "Address": "PO BOX 12328", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92400, "Improved_V": 349000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.83066703599999, "SHAPE_Area": 2288.69510382 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360101.335199996829033, 254918.883000001311302 ], [ 360125.548000000417233, 254916.336899999529123 ], [ 360121.120099999010563, 254868.171399999409914 ], [ 360088.799199998378754, 254875.928399998694658 ], [ 360067.765000000596046, 254883.988899998366833 ], [ 360040.316200003027916, 254887.774999998509884 ], [ 360038.696400001645088, 254888.606100000441074 ], [ 360039.481100000441074, 254891.145700000226498 ], [ 360061.201200000941753, 254897.234099999070168 ], [ 360094.1503000035882, 254910.380399998277426 ], [ 360101.335199996829033, 254918.883000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302033500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91838408, "LATITUDE": 18.32326812, "OBJECTID_1": 31681, "PARCEL_NO_": "107302033500", "Tax_Legal_": "BAKKERO 1-45 FRENCHMAN BAY QTR", "Name": "LOUISE A ARGUIN REVOCABLE TRUST", "Address": "PO Box 7758", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79100, "Improved_V": 323100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.57800221900001, "SHAPE_Area": 1951.4262986399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360161.058100000023842, 254912.827899999916553 ], [ 360164.713100001215935, 254862.406399998813868 ], [ 360121.120099999010563, 254868.171399999409914 ], [ 360125.548000000417233, 254916.336899999529123 ], [ 360161.058100000023842, 254912.827899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302033800", "MAP": "A9-88-T68", "PARCEL_NAM": "1-46", "ACRE": null, "LONGITUDE": -64.91797224, "LATITUDE": 18.32324093, "OBJECTID_1": 31684, "PARCEL_NO_": "107302033800", "Tax_Legal_": "BAKKERO 1-46 FRENCHMAN BAY QTR", "Name": "HANCOCK, MICHAEL J. (TRUSTEE)", "Address": "8102 Lindberg Bay Dr", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 112800, "Improved_V": 570400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.58884980400001, "SHAPE_Area": 2182.14131714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360164.713100001215935, 254862.406399998813868 ], [ 360161.058100000023842, 254912.827899999916553 ], [ 360183.656400002539158, 254910.479699999094009 ], [ 360224.965300001204014, 254888.864100001752377 ], [ 360211.387500002980232, 254873.554200001060963 ], [ 360200.160300001502037, 254866.285199999809265 ], [ 360191.312399998307228, 254863.67960000038147 ], [ 360183.252899996936321, 254863.191500000655651 ], [ 360164.713100001215935, 254862.406399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302033700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91947776000001, "LATITUDE": 18.32308642, "OBJECTID_1": 31683, "PARCEL_NO_": "107302033700", "Tax_Legal_": "BAKKERO 1-40 FRENCHMAN BAY QTR", "Name": "ELIZABETH A. CALLENDER- JOHNSON, TRUSTEE & MONICA", "Address": "PO Box 11250", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 101900, "Improved_V": 584600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.78134300900001, "SHAPE_Area": 2119.4250650399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360063.920400001108646, 254862.003699999302626 ], [ 360053.508500002324581, 254853.6858000010252 ], [ 359990.643100000917912, 254850.004900000989437 ], [ 359991.42059999704361, 254853.388799998909235 ], [ 359993.017099998891354, 254855.301699999719858 ], [ 359996.946099996566772, 254867.366200000047684 ], [ 360005.617799997329712, 254890.657400000840425 ], [ 360008.825000002980232, 254892.794599998742342 ], [ 360016.089100003242493, 254892.009700000286102 ], [ 360020.944899998605251, 254889.938499998301268 ], [ 360029.877300001680851, 254882.6233000010252 ], [ 360037.972800001502037, 254878.889899998903275 ], [ 360064.613499999046326, 254875.308299999684095 ], [ 360074.316200003027916, 254872.2212999984622 ], [ 360075.934199996292591, 254871.601199999451637 ], [ 360075.952200002968311, 254869.49040000140667 ], [ 360063.920400001108646, 254862.003699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9175475, "LATITUDE": 18.32288051, "OBJECTID_1": 31711, "PARCEL_NO_": "107304010600", "Tax_Legal_": "BAKKERO 1-34\nFRENCHMANS BAY QTR", "Name": "TRUST AGREEMENT OF APARNA VED", "Address": "9003B Havensight Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 126600, "Improved_V": 700800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.24807918299999, "SHAPE_Area": 1911.5119236099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360239.278599999845028, 254817.842700000852346 ], [ 360230.412799999117851, 254817.348000001162291 ], [ 360210.841899998486042, 254842.941199999302626 ], [ 360205.062899999320507, 254858.725900001823902 ], [ 360211.484600000083447, 254862.155999999493361 ], [ 360217.092799998819828, 254866.423700001090765 ], [ 360226.67509999871254, 254877.478999998420477 ], [ 360228.280500002205372, 254878.336500000208616 ], [ 360230.701200000941753, 254878.145300000905991 ], [ 360237.212899997830391, 254871.02140000090003 ], [ 360246.946199998259544, 254864.346000000834465 ], [ 360252.606499999761581, 254862.492499999701977 ], [ 360249.757100000977516, 254818.350699998438358 ], [ 360239.278599999845028, 254817.842700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304010200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91907235, "LATITUDE": 18.32276762, "OBJECTID_1": 31707, "PARCEL_NO_": "107304010200", "Tax_Legal_": "BAKKERO 1-38 FRENCHMAN BAY QTR", "Name": "GILLIAN F FISCHER REVOCABLE TRUST", "Address": "PO BOX 306832", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111100, "Improved_V": 506700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.46477688100001, "SHAPE_Area": 2273.5424920099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360093.380999997258186, 254811.371300000697374 ], [ 360070.820500001311302, 254809.286800000816584 ], [ 360038.566200003027916, 254809.233899999409914 ], [ 360041.679899998009205, 254822.347199998795986 ], [ 360049.59740000218153, 254839.510600000619888 ], [ 360055.977799996733665, 254847.795400001108646 ], [ 360071.196999996900558, 254859.741200000047684 ], [ 360079.220600001513958, 254864.450899999588728 ], [ 360088.880199998617172, 254866.429800000041723 ], [ 360092.920699998736382, 254865.407499998807907 ], [ 360093.380999997258186, 254811.371300000697374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304010300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91868519000001, "LATITUDE": 18.32279308, "OBJECTID_1": 31708, "PARCEL_NO_": "107304010300", "Tax_Legal_": "EST BAKKERO 1-37 FRENCHMAN BAY QTR", "Name": "MAYNARD, DESMOND & IRENE", "Address": "PO Box 8388", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 102700, "Improved_V": 228300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.44033139699999, "SHAPE_Area": 1899.59821014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360131.697400003671646, 254857.070000000298023 ], [ 360131.281300000846386, 254811.259300000965595 ], [ 360093.380999997258186, 254811.371300000697374 ], [ 360092.920699998736382, 254865.407499998807907 ], [ 360112.315399996936321, 254860.499899998307228 ], [ 360131.697400003671646, 254857.070000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91715448, "LATITUDE": 18.32281657, "OBJECTID_1": 31712, "PARCEL_NO_": "107304010700", "Tax_Legal_": "1-33 BAKKERO NO.5 RENCHMAN'S BAY QTR", "Name": "BATTISTE-MOORE, ROSE & OTHERS", "Address": "PO Box 7602", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 111600, "Improved_V": 349700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.56483472, "SHAPE_Area": 1922.9167796300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360294.906999997794628, 254819.142400000244379 ], [ 360249.757100000977516, 254818.350699998438358 ], [ 360252.606499999761581, 254862.492499999701977 ], [ 360258.265100002288818, 254860.850099999457598 ], [ 360263.907499998807907, 254861.107400000095367 ], [ 360296.95549999922514, 254862.644400000572205 ], [ 360294.906999997794628, 254819.142400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91675419000001, "LATITUDE": 18.32281773, "OBJECTID_1": 31713, "PARCEL_NO_": "107304010800", "Tax_Legal_": "BAKKERO 1-32 FRENCHMAN BAY QTR", "Name": "KRA, SIEGFRIED J", "Address": "PO Box 3703", "City": "New Haven", "State": "Connecticut", "Zip": 6525, "Country": "United States", "Land_Value": 107100, "Improved_V": 333800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.26357179300001, "SHAPE_Area": 1703.2649467599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360311.031499996781349, 254819.485399998724461 ], [ 360294.906999997794628, 254819.142400000244379 ], [ 360296.95549999922514, 254862.644400000572205 ], [ 360337.289099998772144, 254860.863600000739098 ], [ 360335.218999996781349, 254819.894499998539686 ], [ 360311.031499996781349, 254819.485399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91632198000001, "LATITUDE": 18.32280463, "OBJECTID_1": 31714, "PARCEL_NO_": "107304010900", "Tax_Legal_": "BAKKERO 1-31 FRENCHMANS BAY QTR", "Name": "BROWNING, WILLIAM S. & LEAH M.", "Address": "7101 Estate Bolongo", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 126600, "Improved_V": 381800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.28377075500001, "SHAPE_Area": 1962.23699293 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360382.786100000143051, 254820.917100001126528 ], [ 360335.218999996781349, 254819.894499998539686 ], [ 360337.289099998772144, 254860.863600000739098 ], [ 360357.463100001215935, 254859.128899998962879 ], [ 360394.612800002098083, 254852.46680000051856 ], [ 360382.786100000143051, 254820.917100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304010500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91789031, "LATITUDE": 18.32272956, "OBJECTID_1": 31710, "PARCEL_NO_": "107304010500", "Tax_Legal_": "1-35 ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "HUGH, JANET REVOCABLE TRUST", "Address": "PO Box 600168", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 86500, "Improved_V": 450300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.354188319, "SHAPE_Area": 2134.9124154800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360171.613099999725819, 254809.689500000327826 ], [ 360172.849899999797344, 254853.818199999630451 ], [ 360183.332000002264977, 254853.903999999165535 ], [ 360194.607799999415874, 254855.473900001496077 ], [ 360205.062899999320507, 254858.725900001823902 ], [ 360210.841899998486042, 254842.941199999302626 ], [ 360230.412799999117851, 254817.348000001162291 ], [ 360223.985699996352196, 254814.551100000739098 ], [ 360215.967500001192093, 254809.208200000226498 ], [ 360207.116099998354912, 254807.02479999884963 ], [ 360171.613099999725819, 254809.689500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.918308, "LATITUDE": 18.32275899, "OBJECTID_1": 31709, "PARCEL_NO_": "107304010400", "Tax_Legal_": "EST BAKKERO 1-36 FRENCHMAN BAY QTR", "Name": "MURPHY, ROBERT & OTHERS", "Address": "1470 W 35th St", "City": "Minneapolis", "State": "Minnesota", "Zip": 55408, "Country": "United States", "Land_Value": 96200, "Improved_V": 328800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.660493643, "SHAPE_Area": 1813.8997759199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360171.613099999725819, 254809.689500000327826 ], [ 360131.281300000846386, 254811.259300000965595 ], [ 360131.697400003671646, 254857.070000000298023 ], [ 360161.561599999666214, 254853.72580000013113 ], [ 360172.849899999797344, 254853.818199999630451 ], [ 360171.613099999725819, 254809.689500000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.919637, "LATITUDE": 18.32273947, "OBJECTID_1": 31706, "PARCEL_NO_": "107304010100", "Tax_Legal_": "BAKKERO 1-39 FRENCHMAN BAY QTR", "Name": "ARCTURUS LLC", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 158200, "Improved_V": 1389600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.48462131799999, "SHAPE_Area": 2601.6124018199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360033.455399997532368, 254806.584100000560284 ], [ 359980.780100002884865, 254806.461800001561642 ], [ 359978.886500000953674, 254810.223099999129772 ], [ 359977.228900000452995, 254815.486900001764297 ], [ 359977.950699999928474, 254825.414200000464916 ], [ 359990.643100000917912, 254850.004900000989437 ], [ 360053.508500002324581, 254853.6858000010252 ], [ 360045.526299998164177, 254844.121300000697374 ], [ 360037.589000001549721, 254829.279800001531839 ], [ 360034.45549999922514, 254818.488400001078844 ], [ 360033.703100003302097, 254812.149399999529123 ], [ 360033.455399997532368, 254806.584100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304011900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91652823, "LATITUDE": 18.3224719, "OBJECTID_1": 31723, "PARCEL_NO_": "107304011900", "Tax_Legal_": "ESTATE BAKKERO 2-I FRENCHMAN BAY QTR", "Name": "HARRIS, MICHAEL", "Address": "PO Box 223764", "City": "ST. CROIX", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 141100, "Improved_V": 187000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.23133524299999, "SHAPE_Area": 2469.7100511499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360380.426500000059605, 254813.931699998676777 ], [ 360369.353900000452995, 254788.509799998253584 ], [ 360334.722000002861023, 254783.582299999892712 ], [ 360315.374099999666214, 254783.001800000667572 ], [ 360300.039800003170967, 254784.565000001341105 ], [ 360311.031499996781349, 254819.485399998724461 ], [ 360335.218999996781349, 254819.894499998539686 ], [ 360382.786100000143051, 254820.917100001126528 ], [ 360380.426500000059605, 254813.931699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304015100", "MAP": "F9-701-T61", "PARCEL_NAM": "2IA", "ACRE": ".50", "LONGITUDE": -64.91716692, "LATITUDE": 18.32246557, "OBJECTID_1": 32929, "PARCEL_NO_": "107304015100", "Tax_Legal_": "2IA ESTATE BAKKERO NO.3 FRENCHMAN'S BAY QTR", "Name": "BAKKEROE PROJECT LLC", "Address": "PO Box 223764", "City": "ST. CROIX", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 73800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.724442439, "SHAPE_Area": 2281.2072956500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360300.039800003170967, 254784.565000001341105 ], [ 360283.092799998819828, 254786.115100000053644 ], [ 360273.420699998736382, 254785.613699998706579 ], [ 360262.960199996829033, 254782.995000001043081 ], [ 360256.540299996733665, 254779.353900000452995 ], [ 360246.936499997973442, 254770.831500001251698 ], [ 360240.137100003659725, 254811.728000000119209 ], [ 360239.278599999845028, 254817.842700000852346 ], [ 360249.757100000977516, 254818.350699998438358 ], [ 360294.906999997794628, 254819.142400000244379 ], [ 360311.031499996781349, 254819.485399998724461 ], [ 360300.039800003170967, 254784.565000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304013800", "MAP": "F9-3757-T79", "PARCEL_NAM": "2A-1", "ACRE": ".5", "LONGITUDE": -64.91955669, "LATITUDE": 18.32232198, "OBJECTID_1": 32390, "PARCEL_NO_": "107304013800", "Tax_Legal_": "BAKKERO 2A-1 FRENCHMAN BAY", "Name": "MMS LLC", "Address": "7340 Estate Bakkero", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.38248514499998, "SHAPE_Area": 1881.9788671199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360035.536899998784065, 254786.19990000128746 ], [ 360037.210699997842312, 254779.036400001496077 ], [ 360039.638599999248981, 254778.000799998641014 ], [ 360043.756499998271465, 254767.901999998837709 ], [ 360047.832999996840954, 254762.658100001513958 ], [ 360053.515000000596046, 254758.271600000560284 ], [ 360062.422200001776218, 254753.911499999463558 ], [ 360065.659999996423721, 254752.460400000214577 ], [ 360064.880699999630451, 254749.287599999457598 ], [ 360043.646200001239777, 254738.132599998265505 ], [ 360047.262299999594688, 254751.360399998724461 ], [ 360043.611100003123283, 254761.837900001555681 ], [ 360006.781000003218651, 254779.300400000065565 ], [ 359994.811300002038479, 254764.234600000083447 ], [ 359995.390299998223782, 254766.028499998152256 ], [ 359996.103100001811981, 254777.011199999600649 ], [ 359992.780799999833107, 254788.383099999278784 ], [ 359990.324100002646446, 254792.795899998396635 ], [ 359988.698899999260902, 254794.260299999266863 ], [ 359987.053900003433228, 254798.046500001102686 ], [ 359985.432300001382828, 254799.088700000196695 ], [ 359982.167499996721745, 254803.706000000238419 ], [ 359980.780100002884865, 254806.461800001561642 ], [ 360033.455399997532368, 254806.584100000560284 ], [ 360033.026299998164177, 254796.945099998265505 ], [ 360035.536899998784065, 254786.19990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304011700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91763734, "LATITUDE": 18.32232393, "OBJECTID_1": 31721, "PARCEL_NO_": "107304011700", "Tax_Legal_": "2-C-a BAKERO & ELISENLUND NO.5 FRENCHMAN'S BAY QTR", "Name": "DOOGARSINGH, HENRY & BERNADETTE L.", "Address": "217 E Riverside Dr", "City": "Jeffersonville", "State": "Indiana", "Zip": 47130, "Country": "United States", "Land_Value": 163400, "Improved_V": 818200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.023419292, "SHAPE_Area": 1870.2391142 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360213.998099997639656, 254756.418699998408556 ], [ 360191.839299999177456, 254801.833500001579523 ], [ 360201.523999996483326, 254800.857299998402596 ], [ 360211.997100003063679, 254801.998500000685453 ], [ 360218.433200001716614, 254803.739900000393391 ], [ 360230.464900001883507, 254811.226700000464916 ], [ 360234.48929999768734, 254812.103999998420477 ], [ 360240.137100003659725, 254811.728000000119209 ], [ 360246.936499997973442, 254770.831500001251698 ], [ 360238.916500002145767, 254765.699599999934435 ], [ 360230.068599998950958, 254763.094099998474121 ], [ 360213.998099997639656, 254756.418699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91860863, "LATITUDE": 18.32231353, "OBJECTID_1": 31717, "PARCEL_NO_": "107304011300", "Tax_Legal_": "2C-C BAKKERO NO. 3 FRENCHMANS BAY QTR", "Name": "SCOTT BERGSTROM, ANNA & SEAN MICHAEL", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 106000, "Improved_V": 257900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.83252610299999, "SHAPE_Area": 1744.1147749300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360100.293700002133846, 254757.17680000141263 ], [ 360100.96509999781847, 254773.014299999922514 ], [ 360101.494499996304512, 254805.527100000530481 ], [ 360141.819099999964237, 254804.801600001752377 ], [ 360139.748999997973442, 254763.832499999552965 ], [ 360127.659699998795986, 254763.100299999117851 ], [ 360100.293700002133846, 254757.17680000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91926392000001, "LATITUDE": 18.32238906, "OBJECTID_1": 31716, "PARCEL_NO_": "107304011100", "Tax_Legal_": "2D ESTATE BAKKERO No.3 FRENCHMAN'S BAY QTR.", "Name": "SMITH, ALVERY R. & ANA R. GARCIA", "Address": "PO Box 7633", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 139900, "Improved_V": 465200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.737856729699999, "SHAPE_Area": 515.38877323400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360060.622500002384186, 254775.850499998778105 ], [ 360046.098099999129772, 254776.998199999332428 ], [ 360040.329899996519089, 254791.516499999910593 ], [ 360039.413800001144409, 254804.38569999858737 ], [ 360060.387000001966953, 254803.501899998635054 ], [ 360060.622500002384186, 254775.850499998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304011400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91833784000001, "LATITUDE": 18.32231593, "OBJECTID_1": 31718, "PARCEL_NO_": "107304011400", "Tax_Legal_": "2C-CA BAKKERO NO.3 FRENCHMAN BAY QTR", "Name": "SEMPER, AUCKLAND", "Address": "P/O.BOX 303530", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.828425577, "SHAPE_Area": 683.55573483800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360158.758900001645088, 254804.095899999141693 ], [ 360155.094200000166893, 254761.00279999896884 ], [ 360139.748999997973442, 254763.832499999552965 ], [ 360141.819099999964237, 254804.801600001752377 ], [ 360158.758900001645088, 254804.095899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304011500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91809455000001, "LATITUDE": 18.32224009, "OBJECTID_1": 31719, "PARCEL_NO_": "107304011500", "Tax_Legal_": "2C-b BAKKERO NO. 3 FRENCHMAN'S BAY QTR.", "Name": "SEMPER, AUCKLAND", "Address": "PO Box 303530", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82700, "Improved_V": 567300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.719426707, "SHAPE_Area": 1616.97007889 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360178.925700001418591, 254803.20549999922514 ], [ 360201.140299998223782, 254751.24720000103116 ], [ 360195.503300003707409, 254750.356699999421835 ], [ 360184.207699999213219, 254751.108600001782179 ], [ 360155.094200000166893, 254761.00279999896884 ], [ 360158.758900001645088, 254804.095899999141693 ], [ 360178.925700001418591, 254803.20549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91788633, "LATITUDE": 18.32225413, "OBJECTID_1": 31720, "PARCEL_NO_": "107304011600", "Tax_Legal_": "2Cba BAKKERO NO. 3 FRENCHMAN BAY QTR", "Name": "DOOGARSINGH, HENRY & BERNADETTE L.", "Address": "217 E Riverside Dr", "City": "Jeffersonville", "State": "Indiana", "Zip": 47130, "Country": "United States", "Land_Value": 18000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.88544383799999, "SHAPE_Area": 669.50946059299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360201.140299998223782, 254751.24720000103116 ], [ 360178.925700001418591, 254803.20549999922514 ], [ 360191.839299999177456, 254801.833500001579523 ], [ 360213.998099997639656, 254756.418699998408556 ], [ 360201.140299998223782, 254751.24720000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304011000", "MAP": "F9-3757-T79", "PARCEL_NAM": "2A-REM", "ACRE": ".5", "LONGITUDE": -64.91961141, "LATITUDE": 18.32200998, "OBJECTID_1": 31715, "PARCEL_NO_": "107304011000", "Tax_Legal_": "BAKKERO 2A REM FRENCHMAN BAY QTR", "Name": "ISOLA MORNING STAR LLC", "Address": "PO BOX 8207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 160100, "Improved_V": 250500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.74609451399999, "SHAPE_Area": 2368.0048600300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360043.646200001239777, 254738.132599998265505 ], [ 360040.797399997711182, 254736.635999999940395 ], [ 360035.17119999974966, 254734.478999998420477 ], [ 360024.725100003182888, 254730.171599999070168 ], [ 360018.317699998617172, 254725.05290000140667 ], [ 360016.232699997723103, 254721.604100000113249 ], [ 360009.590899996459484, 254722.253100000321865 ], [ 360001.018399998545647, 254724.316899999976158 ], [ 359995.779700003564358, 254726.698100000619888 ], [ 359988.159699998795986, 254731.301899999380112 ], [ 359981.426100000739098, 254738.307300001382828 ], [ 359984.305200003087521, 254742.084199998527765 ], [ 359993.819099999964237, 254761.160500001162291 ], [ 359994.811300002038479, 254764.234600000083447 ], [ 360006.781000003218651, 254779.300400000065565 ], [ 360043.611100003123283, 254761.837900001555681 ], [ 360047.262299999594688, 254751.360399998724461 ], [ 360043.646200001239777, 254738.132599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107304013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92115671000001, "LATITUDE": 18.32168832, "OBJECTID_1": 31735, "PARCEL_NO_": "107304013200", "Tax_Legal_": "4B ESTATE BAKKERO FRENCHMAN'S BAY QTR.", "Name": "DiamondRock Frenchman's Owner Inc", "Address": "2 Bethesda Metro Ctr Fl 14", "City": "Bethesda", "State": "Maryland", "Zip": 208145390, "Country": "United States", "Land_Value": 653400, "Improved_V": 47631000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 554.11385033099998, "SHAPE_Area": 10722.223016899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359789.111599996685982, 254741.489199999719858 ], [ 359973.648900002241135, 254742.249000001698732 ], [ 359972.23200000077486, 254739.452300000935793 ], [ 359941.107699997723103, 254701.411800000816584 ], [ 359939.473499998450279, 254703.931499999016523 ], [ 359862.204199999570847, 254687.256000000983477 ], [ 359825.354800000786781, 254658.667899999767542 ], [ 359806.635200001299381, 254678.990800000727177 ], [ 359732.355499997735023, 254689.993000000715256 ], [ 359744.423199996352196, 254693.258099999278784 ], [ 359746.012500002980232, 254696.015399999916553 ], [ 359749.138800002634525, 254707.651099998503923 ], [ 359750.737099997699261, 254709.352899998426437 ], [ 359760.436200000345707, 254706.688099998980761 ], [ 359762.8496999964118, 254707.341099999845028 ], [ 359766.055200003087521, 254709.689399998635054 ], [ 359789.111599996685982, 254741.489199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91872971, "LATITUDE": 18.32181522, "OBJECTID_1": 31728, "PARCEL_NO_": "107304012400", "Tax_Legal_": "ESTATE BAKKERO 2E FRENCHMANS BAY QTR", "Name": "POURZAL FAMILY TRUST", "Address": "7340 Estate Bakkaroe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 122100, "Improved_V": 785500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.916653021, "SHAPE_Area": 2997.1641861600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360138.547600001096725, 254757.247000001370907 ], [ 360135.246100001037121, 254706.691100001335144 ], [ 360133.784100003540516, 254706.788499999791384 ], [ 360096.781800001859665, 254696.142000000923872 ], [ 360087.111400000751019, 254695.42960000038147 ], [ 360080.360600002110004, 254730.627000000327826 ], [ 360064.146300002932549, 254740.837799999862909 ], [ 360078.613099999725819, 254746.444699998944998 ], [ 360126.905599996447563, 254756.97239999845624 ], [ 360138.547600001096725, 254757.247000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012300", "MAP": null, "PARCEL_NAM": "2F", "ACRE": null, "LONGITUDE": -64.9192468, "LATITUDE": 18.32172571, "OBJECTID_1": 31727, "PARCEL_NO_": "107304012300", "Tax_Legal_": "EST BAKKERO 2F & 2EA FRENCHMAN BAY QTR", "Name": "LFG AKG LIVING REVOCABLE TRUST", "Address": "9053 Sugar Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124100, "Improved_V": 205300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.05867506000001, "SHAPE_Area": 1458.3356918699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360064.146300002932549, 254740.837799999862909 ], [ 360087.111400000751019, 254695.42960000038147 ], [ 360074.991599999368191, 254698.285700000822544 ], [ 360053.133000001311302, 254708.450399998575449 ], [ 360041.022200003266335, 254710.2511 ], [ 360034.573499999940395, 254709.987199999392033 ], [ 360026.531900003552437, 254707.388300001621246 ], [ 360016.085799999535084, 254703.080899998545647 ], [ 360020.808600001037121, 254716.629599999636412 ], [ 360023.987099997699261, 254722.144000001251698 ], [ 360029.598899997770786, 254725.989599999040365 ], [ 360042.462200000882149, 254730.527899999171495 ], [ 360064.146300002932549, 254740.837799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91902131000001, "LATITUDE": 18.32176622, "OBJECTID_1": 31727, "PARCEL_NO_": "107304012300", "Tax_Legal_": "EST BAKKERO 2F & 2EA FRENCHMAN BAY QTR", "Name": "LFG AKG LIVING REVOCABLE TRUST", "Address": "9053 Sugar Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 124100, "Improved_V": 205300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.885641166, "SHAPE_Area": 250.88506708400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360064.146300002932549, 254740.837799999862909 ], [ 360080.360600002110004, 254730.627000000327826 ], [ 360087.111400000751019, 254695.42960000038147 ], [ 360064.146300002932549, 254740.837799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107304012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92205501, "LATITUDE": 18.32057804, "OBJECTID_1": 31724, "PARCEL_NO_": "107304012000", "Tax_Legal_": "BAKKERO ESTATE No.5a FRENCHMAN'S BAY QTR.", "Name": "MIFR(VIRGIN ISLANDS), INC.", "Address": "2 Bethesda Metro Ctr", "City": "Bethesda", "State": "Maryland", "Zip": 20814, "Country": "United States", "Land_Value": 480900, "Improved_V": 22386900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1105.54574594, "SHAPE_Area": 35260.328303900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359862.951499998569489, 254504.877300001680851 ], [ 359858.979299999773502, 254497.878699999302626 ], [ 359859.042199999094009, 254490.49100000038743 ], [ 359855.068199999630451, 254483.703400000929832 ], [ 359852.652900002896786, 254483.261500000953674 ], [ 359844.577200002968311, 254484.673000000417233 ], [ 359838.913199998438358, 254486.948699999600649 ], [ 359835.668200001120567, 254489.244199998676777 ], [ 359832.435699999332428, 254490.062100000679493 ], [ 359816.304099999368191, 254490.563299998641014 ], [ 359812.26349999755621, 254491.585700001567602 ], [ 359795.280599996447563, 254497.357400000095367 ], [ 359787.176100000739098, 254502.146200001239777 ], [ 359778.279700003564358, 254505.239799998700619 ], [ 359770.207599997520447, 254506.229200001806021 ], [ 359766.195799998939037, 254503.874299999326468 ], [ 359764.603000000119209, 254501.539200000464916 ], [ 359760.621799997985363, 254495.596099998801947 ], [ 359755.79110000282526, 254494.712099999189377 ], [ 359752.565800003707409, 254494.685699999332428 ], [ 359746.905500002205372, 254496.539200000464916 ], [ 359736.367700003087521, 254502.996899999678135 ], [ 359733.972099997103214, 254500.2331000007689 ], [ 359728.338699996471405, 254498.920400001108646 ], [ 359713.789099998772144, 254503.023200001567602 ], [ 359712.196299999952316, 254500.688099998980761 ], [ 359712.215999998152256, 254498.366300001740456 ], [ 359709.064499996602535, 254489.685600001364946 ], [ 359706.668999999761581, 254486.921799998730421 ], [ 359701.048100002110004, 254484.131599999964237 ], [ 359693.785999998450279, 254484.705400001257658 ], [ 359688.122000001370907, 254486.981100000441074 ], [ 359675.102300003170967, 254500.806699998676777 ], [ 359672.643799997866154, 254505.430700000375509 ], [ 359670.214100003242493, 254506.677299998700619 ], [ 359667.800499998033047, 254506.024300001561642 ], [ 359667.829300001263618, 254502.646999999880791 ], [ 359668.648199997842312, 254501.176100000739098 ], [ 359667.881499998271465, 254496.525699999183416 ], [ 359663.066899999976158, 254493.74210000038147 ], [ 359660.651600003242493, 254493.300200000405312 ], [ 359657.419200003147125, 254494.118099998682737 ], [ 359645.216600000858307, 254506.683899998664856 ], [ 359645.929399996995926, 254517.666499998420477 ], [ 359647.506099998950958, 254521.901299998164177 ], [ 359647.482699997723103, 254524.645300000905991 ], [ 359649.851300001144409, 254530.575300000607967 ], [ 359653.074699997901917, 254530.812800001353025 ], [ 359660.469999998807907, 254514.619100000709295 ], [ 359664.523100003600121, 254512.119199998676777 ], [ 359666.112400002777576, 254514.876400001347065 ], [ 359670.131399996578693, 254516.386999998241663 ], [ 359670.92509999871254, 254517.871100001037121 ], [ 359670.088200002908707, 254521.452899999916553 ], [ 359670.826200000941753, 254529.480500001460314 ], [ 359673.228900000452995, 254531.399999998509884 ], [ 359678.063199996948242, 254531.861699998378754 ], [ 359678.039800003170967, 254534.605700001120567 ], [ 359675.56700000166893, 254540.918299999088049 ], [ 359665.801299996674061, 254551.393100000917912 ], [ 359662.498700000345707, 254560.44310000166297 ], [ 359662.4628000035882, 254564.664599999785423 ], [ 359667.912699997425079, 254587.50730000063777 ], [ 359675.578500002622604, 254634.221799999475479 ], [ 359680.335400000214577, 254643.759899999946356 ], [ 359681.084200002253056, 254650.521000001579523 ], [ 359681.001500003039837, 254660.230700001120567 ], [ 359677.71509999781847, 254667.380899999290705 ], [ 359664.648699998855591, 254686.694600000977516 ], [ 359650.786700002849102, 254704.735199999064207 ], [ 359645.878700003027916, 254712.927700001746416 ], [ 359646.577100001275539, 254725.598999999463558 ], [ 359650.579899996519089, 254729.009300000965595 ], [ 359662.631399996578693, 254734.174100000411272 ], [ 359674.063699997961521, 254717.380199998617172 ], [ 359686.941299997270107, 254720.229800000786781 ], [ 359686.959299996495247, 254718.119100000709295 ], [ 359674.085199996829033, 254714.847300000488758 ], [ 359673.296899996697903, 254712.729899998754263 ], [ 359681.462499998509884, 254700.764400001615286 ], [ 359687.148100003600121, 254695.955800000578165 ], [ 359693.623800002038479, 254693.05350000038743 ], [ 359708.171499997377396, 254689.161699999123812 ], [ 359723.493299998342991, 254689.0760000012815 ], [ 359732.355499997735023, 254689.993000000715256 ], [ 359806.635200001299381, 254678.990800000727177 ], [ 359825.354800000786781, 254658.667899999767542 ], [ 359828.617799997329712, 254654.261599998921156 ], [ 359827.086099997162819, 254644.749899998307228 ], [ 359827.908600002527237, 254642.856800001114607 ], [ 359845.857900001108646, 254618.305700000375509 ], [ 359853.969499997794628, 254612.672600001096725 ], [ 359865.28490000218153, 254609.598799999803305 ], [ 359862.951499998569489, 254504.877300001680851 ] ], [ [ 359723.949299998581409, 254540.892099998891354 ], [ 359735.973899997770786, 254549.223200000822544 ], [ 359709.869800001382828, 254584.473200000822544 ], [ 359698.651500001549721, 254576.148800000548363 ], [ 359723.949299998581409, 254540.892099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92078402, "LATITUDE": 18.32144661, "OBJECTID_1": 31734, "PARCEL_NO_": "107304013100", "Tax_Legal_": "BAKKERO 5 FRENCHMAN BAY QTR", "Name": "MS DEVELOPMENT CORP.", "Address": "7340 Estate Bakkaroe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.93020641499999, "SHAPE_Area": 1215.1913665899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359825.354800000786781, 254658.667899999767542 ], [ 359862.204199999570847, 254687.256000000983477 ], [ 359939.473499998450279, 254703.931499999016523 ], [ 359941.107699997723103, 254701.411800000816584 ], [ 359927.506499998271465, 254688.846000000834465 ], [ 359915.476599998772144, 254681.14809999987483 ], [ 359906.625100001692772, 254678.964800000190735 ], [ 359896.953000001609325, 254678.46339999884367 ], [ 359879.185300000011921, 254681.695500001311302 ], [ 359868.708599999547005, 254680.976500000804663 ], [ 359863.082400001585484, 254678.819499999284744 ], [ 359855.048100002110004, 254675.376200001686811 ], [ 359828.617799997329712, 254654.261599998921156 ], [ 359825.354800000786781, 254658.667899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304013700", "MAP": "G9-3048-T80", "PARCEL_NAM": "2N-1", "ACRE": "0.79", "LONGITUDE": -64.91906614, "LATITUDE": 18.3213122, "OBJECTID_1": 32389, "PARCEL_NO_": "107304013700", "Tax_Legal_": "BAKKERO 2N FRENCHMAN BAY", "Name": "POURZAL FAMILY TRUST", "Address": "7340 Estate Bakkaroe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 199300, "Improved_V": 806300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.61098381900001, "SHAPE_Area": 3974.7663082399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360120.990900002419949, 254694.018100000917912 ], [ 360110.21509999781847, 254633.768300000578165 ], [ 360095.649300001561642, 254639.770799998193979 ], [ 360068.171700000762939, 254646.934200000017881 ], [ 360060.06360000371933, 254652.145100001245737 ], [ 360050.292599998414516, 254663.253100000321865 ], [ 360042.985399998724461, 254669.103900000452995 ], [ 360026.79619999974966, 254676.359700001776218 ], [ 360002.533100001513958, 254684.815999999642372 ], [ 360025.012800000607967, 254696.399000000208616 ], [ 360037.069700002670288, 254700.930599998682737 ], [ 360041.905799999833107, 254701.18129999935627 ], [ 360050.785999998450279, 254699.987399999052286 ], [ 360072.649999998509884, 254689.189500000327826 ], [ 360083.96169999986887, 254686.537900000810623 ], [ 360097.665399998426437, 254687.072200000286102 ], [ 360120.990900002419949, 254694.018100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012100", "MAP": "G9-334-T55", "PARCEL_NAM": "2B", "ACRE": "1.05", "LONGITUDE": -64.92076468, "LATITUDE": 18.32106131, "OBJECTID_1": 31725, "PARCEL_NO_": "107304012100", "Tax_Legal_": "ESTATE BAKKERO 2B FRENCHMAN'S BAY QTR", "Name": "MS DEVELOPMENT CORP.", "Address": "7340 Estate Bakkaroe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 194400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.724856123, "SHAPE_Area": 3056.0725136599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359917.666400000452995, 254613.405000001192093 ], [ 359896.716700002551079, 254611.544799998402596 ], [ 359886.220200002193451, 254613.147700000554323 ], [ 359866.013899996876717, 254618.681800000369549 ], [ 359867.180500000715256, 254671.042500000447035 ], [ 359877.649999998509884, 254672.605900000780821 ], [ 359895.415899999439716, 254669.584899999201298 ], [ 359900.250100001692772, 254670.046599999070168 ], [ 359912.337600000202656, 254670.989999998360872 ], [ 359921.986400000751019, 254674.235300000756979 ], [ 359917.666400000452995, 254613.405000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503026600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91152265, "LATITUDE": 18.33569, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.000033574300005, "SHAPE_Area": 320.83949129600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360842.942400000989437, 256273.629399999976158 ], [ 360857.380500003695488, 256282.613499999046326 ], [ 360867.988399997353554, 256267.923799999058247 ], [ 360861.647600002586842, 256254.995200000703335 ], [ 360851.876599997282028, 256266.103199999779463 ], [ 360842.942400000989437, 256273.629399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503066900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91473993, "LATITUDE": 18.33538182, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.185979381, "SHAPE_Area": 625.85221585 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360508.774099998176098, 256217.90989999845624 ], [ 360501.323100000619888, 256240.647100001573563 ], [ 360517.40259999781847, 256246.267099998891354 ], [ 360524.637800000607967, 256248.859400000423193 ], [ 360533.712200000882149, 256224.868999999016523 ], [ 360508.774099998176098, 256217.90989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503051500", "MAP": "D9-1876-T81", "PARCEL_NAM": "14N-28", "ACRE": "0.11", "LONGITUDE": -64.91017032000001, "LATITUDE": 18.33532442, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.90833292799999, "SHAPE_Area": 625.81041317100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361014.086900003254414, 256213.771200001239777 ], [ 360997.435699999332428, 256214.114900000393391 ], [ 360994.903599999845028, 256219.832600001245737 ], [ 360989.676100000739098, 256233.718299999833107 ], [ 360983.853399999439716, 256245.531599998474121 ], [ 361003.385600000619888, 256247.204100001603365 ], [ 361009.082800000905991, 256235.946600001305342 ], [ 361013.951099999248981, 256216.261599998921156 ], [ 361014.086900003254414, 256213.771200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503067100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91517185, "LATITUDE": 18.33525902, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.514932175200002, "SHAPE_Area": 401.85943573499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360465.330300003290176, 256206.155299998819828 ], [ 360460.312600001692772, 256227.223600000143051 ], [ 360477.20380000025034, 256232.217000000178814 ], [ 360483.834100000560284, 256211.161899998784065 ], [ 360465.330300003290176, 256206.155299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503067600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91575954, "LATITUDE": 18.33511292, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.364907491099999, "SHAPE_Area": 251.56672978399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360406.59179999679327, 256191.320199999958277 ], [ 360400.785800002515316, 256210.271099999547005 ], [ 360412.851700000464916, 256213.747400000691414 ], [ 360418.664899997413158, 256193.952100001275539 ], [ 360406.59179999679327, 256191.320199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304070300", "MAP": "B3-145-T45", "PARCEL_NAM": "4 (SHIPLEY'S BATTERY)", "ACRE": "0.60", "LONGITUDE": -64.93700598, "LATITUDE": 18.33438806, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.17929138900001, "SHAPE_Area": 3381.3987588300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358165.89190000295639, 256073.344999998807907 ], [ 358153.02139999717474, 256069.651099998503923 ], [ 358130.286399997770786, 256088.041200000792742 ], [ 358145.219800002872944, 256133.548599999397993 ], [ 358147.524599999189377, 256141.710700001567602 ], [ 358169.749600000679493, 256137.741900000721216 ], [ 358193.959100000560284, 256115.5168999992311 ], [ 358200.011100001633167, 256108.120799999684095 ], [ 358194.454800002276897, 256081.133200000971556 ], [ 358184.399300001561642, 256077.929400000721216 ], [ 358165.89190000295639, 256073.344999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "1111111111111", "MAP": "F9-1665-T65", "PARCEL_NAM": "REM 14N", "ACRE": null, "LONGITUDE": -64.91051633, "LATITUDE": 18.33355928, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.680543943, "SHAPE_Area": 1820.85408738 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361009.314300000667572, 256024.184799998998642 ], [ 361008.276699997484684, 256016.553599998354912 ], [ 360941.247900001704693, 256017.447200000286102 ], [ 360941.818599998950958, 256031.741500001400709 ], [ 360942.707400001585484, 256061.314699999988079 ], [ 360942.757299996912479, 256062.974700000137091 ], [ 360943.014600001275539, 256071.535500001162291 ], [ 360953.330899998545647, 256071.852400001138449 ], [ 360953.128200002014637, 256066.651399999856949 ], [ 360954.816899999976158, 256062.396099999547005 ], [ 360958.126599997282028, 256061.855700001120567 ], [ 360962.7871999964118, 256062.9364 ], [ 360968.08839999884367, 256065.671100001782179 ], [ 360954.559799998998642, 256049.121399998664856 ], [ 360956.510999999940395, 256048.215700000524521 ], [ 360983.828900001943111, 256035.535700000822544 ], [ 360988.038900002837181, 256034.479400001466274 ], [ 361009.314300000667572, 256024.184799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105503081300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91157634, "LATITUDE": 18.33371448, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.505364929, "SHAPE_Area": 332.32976334199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360873.062200002372265, 256050.961199998855591 ], [ 360868.245899997651577, 256048.388599999248981 ], [ 360862.612499997019768, 256047.075899999588728 ], [ 360853.7449000030756, 256046.792300000786781 ], [ 360831.171800002455711, 256046.185300000011921 ], [ 360831.91330000013113, 256053.790800001472235 ], [ 360852.87389999628067, 256054.384500000625849 ], [ 360861.741499997675419, 256054.668200001120567 ], [ 360865.760499998927116, 256056.178700000047684 ], [ 360868.974899999797344, 256057.471599999815226 ], [ 360873.774999998509884, 256061.943900000303984 ], [ 360873.062200002372265, 256050.961199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105503100300", "MAP": "D9-4351-T88", "PARCEL_NAM": "A-1-15 GREENBELT", "ACRE": null, "LONGITUDE": -64.91584444, "LATITUDE": 18.33176344, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.72834903699999, "SHAPE_Area": 1370.5959717400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360362.117600001394749, 255827.241999998688698 ], [ 360377.290100000798702, 255844.675900001078844 ], [ 360399.958599999547005, 255834.095600001513958 ], [ 360422.439999997615814, 255845.467599999159575 ], [ 360439.363600000739098, 255846.66160000115633 ], [ 360439.399499997496605, 255842.440000001341105 ], [ 360434.678599998354912, 255828.680300001055002 ], [ 360431.491099998354912, 255824.221200000494719 ], [ 360427.479299999773502, 255821.866300001740456 ], [ 360410.566500000655651, 255819.405900001525879 ], [ 360396.051100000739098, 255819.498199999332428 ], [ 360380.713200002908707, 255821.483600001782179 ], [ 360362.117600001394749, 255827.241999998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91868864, "LATITUDE": 18.32887609, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.16112343200001, "SHAPE_Area": 2304.7750439000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360139.040200002491474, 255509.620299998670816 ], [ 360111.812600001692772, 255487.44370000064373 ], [ 360104.606100000441074, 255481.47410000115633 ], [ 360098.960199996829033, 255481.638999998569489 ], [ 360094.914200000464916, 255483.294599998742342 ], [ 360088.442100003361702, 255485.77479999884963 ], [ 360083.575499996542931, 255489.112399999052286 ], [ 360068.92339999973774, 255505.246700000017881 ], [ 360116.186599999666214, 255541.941599998623133 ], [ 360127.563000001013279, 255531.691199999302626 ], [ 360130.016099996864796, 255527.700500000268221 ], [ 360139.040200002491474, 255509.620299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91903735, "LATITUDE": 18.32847388, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.77296881199999, "SHAPE_Area": 1829.6421944900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360098.999700002372265, 255476.995200000703335 ], [ 360085.385899998247623, 255465.907000001519918 ], [ 360084.831399999558926, 255436.349300000816584 ], [ 360073.535800002515316, 255437.101199999451637 ], [ 360066.264600001275539, 255438.730500001460314 ], [ 360056.538500003516674, 255444.561500001698732 ], [ 360052.471000000834465, 255448.750100001692772 ], [ 360049.200800001621246, 255454.000700000673532 ], [ 360043.427100002765656, 255469.152100000530481 ], [ 360070.613399997353554, 255496.183499999344349 ], [ 360079.563699997961521, 255486.757599998265505 ], [ 360084.434000000357628, 255482.997699998319149 ], [ 360089.295199997723103, 255480.293299999088049 ], [ 360098.999700002372265, 255476.995200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91862187, "LATITUDE": 18.32839518, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.96374936199999, "SHAPE_Area": 2361.6288611499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360142.900200001895428, 255435.135800000280142 ], [ 360116.299099996685982, 255434.073699999600649 ], [ 360084.831399999558926, 255436.349300000816584 ], [ 360085.385899998247623, 255465.907000001519918 ], [ 360098.999700002372265, 255476.995200000703335 ], [ 360104.606100000441074, 255481.47410000115633 ], [ 360111.812600001692772, 255487.44370000064373 ], [ 360138.570200003683567, 255470.1418999992311 ], [ 360142.900200001895428, 255435.135800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022700", "MAP": "D9-8986-T015", "PARCEL_NAM": "2 REM", "ACRE": ".572", "LONGITUDE": -64.9195762, "LATITUDE": 18.32838443, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.68073283000001, "SHAPE_Area": 2339.3275406299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359988.172799997031689, 255423.948100000619888 ], [ 359983.36370000243187, 255420.531199999153614 ], [ 359981.396700002253056, 255426.85869999974966 ], [ 359980.241700001060963, 255430.574200000613928 ], [ 359987.572999998927116, 255445.205899998545647 ], [ 359993.288400001823902, 255456.612700000405312 ], [ 360008.075300000607967, 255486.124299999326468 ], [ 360027.979999996721745, 255488.614999998360872 ], [ 360028.021099999547005, 255488.820700000971556 ], [ 360030.420000001788139, 255481.500199999660254 ], [ 360032.084799997508526, 255475.392099998891354 ], [ 360032.669200003147125, 255473.657200001180172 ], [ 360037.048500001430511, 255460.656199999153614 ], [ 360039.532200001180172, 255453.077100001275539 ], [ 360040.397900000214577, 255446.118099998682737 ], [ 360038.814000003039837, 255442.727699998766184 ], [ 360035.615699999034405, 255439.535100001841784 ], [ 360022.75789999961853, 255434.363600000739098 ], [ 359992.992600001394749, 255426.098499998450279 ], [ 359988.172799997031689, 255423.948100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401016200", "MAP": "D9-4603-T88", "PARCEL_NAM": "1-66", "ACRE": null, "LONGITUDE": -64.91488014, "LATITUDE": 18.3261209, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.482682583, "SHAPE_Area": 425.17746653099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360497.191899999976158, 255213.98759999871254 ], [ 360496.733599998056889, 255218.863800000399351 ], [ 360496.184399999678135, 255223.747400000691414 ], [ 360497.354599997401237, 255225.779800001531839 ], [ 360501.934399999678135, 255225.649300001561642 ], [ 360508.603000000119209, 255221.457699999213219 ], [ 360531.92509999871254, 255183.1587999984622 ], [ 360530.827399998903275, 255181.99100000038743 ], [ 360497.191899999976158, 255213.98759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304011200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91897569, "LATITUDE": 18.32237132, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.81436048, "SHAPE_Area": 1208.3034192800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360101.494499996304512, 254805.527100000530481 ], [ 360100.96509999781847, 254773.014299999922514 ], [ 360060.622500002384186, 254775.850499998778105 ], [ 360060.387000001966953, 254803.501899998635054 ], [ 360070.066299997270107, 254803.158900000154972 ], [ 360101.494499996304512, 254805.527100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92112217, "LATITUDE": 18.32108096, "OBJECTID_1": 31724, "PARCEL_NO_": "107304012000", "Tax_Legal_": "BAKKERO ESTATE No.5a FRENCHMAN'S BAY QTR.", "Name": "MIFR(VIRGIN ISLANDS), INC.", "Address": "2 Bethesda Metro Ctr", "City": "Bethesda", "State": "Maryland", "Zip": 20814, "Country": "United States", "Land_Value": 480900, "Improved_V": 22386900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.55802656, "SHAPE_Area": 959.71401113900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359867.180500000715256, 254671.042599998414516 ], [ 359866.013899996876717, 254618.681800000369549 ], [ 359857.931000001728535, 254620.937699999660254 ], [ 359852.250799998641014, 254625.113099999725819 ], [ 359837.562799997627735, 254645.468899998813868 ], [ 359839.123199999332428, 254651.603399999439716 ], [ 359859.950699999928474, 254667.81700000166893 ], [ 359867.180500000715256, 254671.042599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91730075, "LATITUDE": 18.32044588, "OBJECTID_1": 31731, "PARCEL_NO_": "107304012800", "Tax_Legal_": "2K BAKKEROE FRENCHMAN'S BAY QTR", "Name": "MIFR (VIRGIN ISLANDS) INC", "Address": "2 Bethesda Metro Ctr", "City": "Bethesda", "State": "Maryland", "Zip": 20814, "Country": "United States", "Land_Value": 514000, "Improved_V": 5508300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.49343518699999, "SHAPE_Area": 557.09102200699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360244.436899997293949, 254590.959399998188019 ], [ 360277.495800003409386, 254591.229899998754263 ], [ 360261.590700000524521, 254565.135200001299381 ], [ 360256.973999999463558, 254539.133000001311302 ], [ 360256.005800001323223, 254558.123399998992682 ], [ 360254.297899998724461, 254569.297400001436472 ], [ 360250.968400001525879, 254581.513599999248981 ], [ 360244.436899997293949, 254590.959399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107304013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92243905, "LATITUDE": 18.32034991, "OBJECTID_1": 31733, "PARCEL_NO_": "107304013000", "Tax_Legal_": "BAKKERO ESTATE PARCEL OF P1 No.5a FRENCHMAN'S BAY QTR.", "Name": "MIFR(VIRGIN ISLANDS), INC.", "Address": "2 Bethesda Metro Ctr", "City": "Bethesda", "State": "Maryland", "Zip": 20814, "Country": "United States", "Land_Value": 15200, "Improved_V": 3523700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.855116506, "SHAPE_Area": 623.72613071299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359723.949299998581409, 254540.892099998891354 ], [ 359698.651500001549721, 254576.148800000548363 ], [ 359709.869800001382828, 254584.473200000822544 ], [ 359735.973899997770786, 254549.223200000822544 ], [ 359723.949299998581409, 254540.892099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": null, "PARCEL_NAM": "B-14", "ACRE": "6.578", "LONGITUDE": -64.9553588, "LATITUDE": 18.31303794, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1570.5603189000001, "SHAPE_Area": 31847.740479100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356326.907700002193451, 253761.384799998253584 ], [ 356336.610399998724461, 253758.297800000756979 ], [ 356342.283399999141693, 253754.966699998825788 ], [ 356346.377899996936321, 253747.611999999731779 ], [ 356349.628300003707409, 253744.683299999684095 ], [ 356366.771300002932549, 253720.125599998980761 ], [ 356307.273199997842312, 253699.795899998396635 ], [ 356318.807899996638298, 253670.970400001853704 ], [ 356332.003799997270107, 253636.459100000560284 ], [ 356401.16330000013113, 253658.556699998676777 ], [ 356402.14580000191927, 253637.877599999308586 ], [ 356400.592500001192093, 253630.898800000548363 ], [ 356394.262500002980232, 253616.703699998557568 ], [ 356379.876500003039837, 253601.598299998790026 ], [ 356378.290899999439716, 253598.4189000017941 ], [ 356372.69709999859333, 253592.462499998509884 ], [ 356313.550399996340275, 253547.591899998486042 ], [ 356312.627950496796984, 253552.35673017782392 ], [ 356311.400700002908707, 253557.052299998700619 ], [ 356310.106480961490888, 253560.826192247448489 ], [ 356308.230025196855422, 253564.347013088612584 ], [ 356305.818846876441967, 253567.525611008983105 ], [ 356302.934000000357628, 253570.281500000506639 ], [ 356296.215492084331345, 253575.782051379414042 ], [ 356289.175599999725819, 253580.864799998700619 ], [ 356286.306125897681341, 253584.048975604906445 ], [ 356283.788240267604124, 253587.517852637480246 ], [ 356281.649991771671921, 253591.232788610417629 ], [ 356279.915200002491474, 253595.152399998158216 ], [ 356272.506899997591972, 253619.494100000709295 ], [ 356272.655430307961069, 253627.676581533014541 ], [ 356273.539756011858117, 253635.812491643708199 ], [ 356275.152699999511242, 253643.835799999535084 ], [ 356279.5092484333436, 253655.848469860939076 ], [ 356284.413099996745586, 253667.648299999535084 ], [ 356286.706131324346643, 253676.060838785313535 ], [ 356289.622010687424336, 253684.278286627028137 ], [ 356293.144400000572205, 253692.254599999636412 ], [ 356293.211019930313341, 253696.754160072276136 ], [ 356292.557058630452957, 253701.206441923277453 ], [ 356291.1993563377182, 253705.496794303500792 ], [ 356289.172875408257823, 253709.514735829288838 ], [ 356286.529799997806549, 253713.156800001859665 ], [ 356283.175676396174822, 253718.047943086217856 ], [ 356279.390299835067708, 253722.613504398672376 ], [ 356275.205093586060684, 253726.81558417659835 ], [ 356270.654799997806549, 253730.619300000369549 ], [ 356267.320334113377612, 253734.445535438862862 ], [ 356263.483383069920819, 253737.767665336374193 ], [ 356259.219410654099192, 253740.520351225219201 ], [ 356254.612279156746808, 253742.6494542597502 ], [ 356249.752599999308586, 253744.113099999725819 ], [ 356244.697564471804071, 253744.403931425214978 ], [ 356239.654603351838887, 253743.949497442430584 ], [ 356234.73299594927812, 253742.759645486366935 ], [ 356230.039391878875904, 253740.860159257834312 ], [ 356225.675499998033047, 253738.292199999094009 ], [ 356214.699031786934938, 253732.337913869909244 ], [ 356203.450499996542931, 253726.915100000798702 ], [ 356200.538839286775328, 253725.22292390151415 ], [ 356197.399467819486745, 253724.004082308150828 ], [ 356194.108756998146418, 253723.288225946685998 ], [ 356190.746759854839183, 253723.092769435257651 ], [ 356187.395263601792976, 253723.422467639058596 ], [ 356184.135799996554852, 253724.269299998879433 ], [ 356178.926870571449399, 253724.30483867766452 ], [ 356173.74886359233642, 253723.73698968582903 ], [ 356168.671438094053883, 253722.573392219783273 ], [ 356163.762900002300739, 253720.829700000584126 ], [ 356159.216154126392212, 253719.740105524979299 ], [ 356154.823218360834289, 253718.139408945135074 ], [ 356150.641341826878488, 253716.048470678157173 ], [ 356146.725023103645071, 253713.494540013605729 ], [ 356143.125299997627735, 253710.510899998247623 ], [ 356139.904342653113417, 253708.213608871737961 ], [ 356136.401709783356637, 253706.374131849530386 ], [ 356132.68205928732641, 253705.026425307820318 ], [ 356128.814055165625177, 253704.195367638516473 ], [ 356124.869099996984005, 253703.896299999207258 ], [ 356116.86734521627659, 253701.226306056807516 ], [ 356109.09126527630724, 253697.956821695348481 ], [ 356101.585699997842312, 253694.106699999421835 ], [ 356096.726356589468196, 253692.017333780182526 ], [ 356091.682392247661483, 253690.424508216237882 ], [ 356086.504399999976158, 253689.344200000166893 ], [ 356078.380233022209723, 253686.049129386403365 ], [ 356070.435762105509639, 253682.341709625063231 ], [ 356062.691899999976158, 253678.231699999421835 ], [ 356060.261290780443233, 253677.77206268068403 ], [ 356057.788222944771405, 253677.716717193863587 ], [ 356055.339484752272256, 253678.067158212390495 ], [ 356052.981207410164643, 253678.813921642606147 ], [ 356050.777079118473921, 253679.93684021331137 ], [ 356048.78662509098649, 253681.405588118010201 ], [ 356047.06360000371933, 253683.180500000715256 ], [ 356041.130699999630451, 253704.583700001239777 ], [ 356041.827399998903275, 253717.466099999845028 ], [ 356062.782499998807907, 253718.69310000166297 ], [ 356080.463799998164177, 253725.592799998819828 ], [ 356094.930699996650219, 253731.199599999934435 ], [ 356112.612000003457069, 253738.099300000816584 ], [ 356132.775200001895428, 253737.631099998950958 ], [ 356150.519500002264977, 253737.14299999922514 ], [ 356165.843000002205372, 253736.846200000494719 ], [ 356181.9746999964118, 253736.344999998807907 ], [ 356198.106299996376038, 253735.843699999153614 ], [ 356214.236199997365475, 253735.553599998354912 ], [ 356214.038400001823902, 253758.772199999541044 ], [ 356206.16780000180006, 253758.489900000393391 ], [ 356206.030000001192093, 253762.331700000911951 ], [ 356204.860399998724461, 253762.3597999997437 ], [ 356205.917700000107288, 253765.460799999535084 ], [ 356213.784800000488758, 253788.534400001168251 ], [ 356193.596400000154972, 253791.957699999213219 ], [ 356179.867499999701977, 253794.378499999642372 ], [ 356165.332299999892712, 253796.792599998414516 ], [ 356149.180900000035763, 253799.615800000727177 ], [ 356134.645700000226498, 253802.029899999499321 ], [ 356120.916799999773502, 253804.450699999928474 ], [ 356104.765399999916553, 253807.273800000548363 ], [ 356099.117600001394749, 253807.64979999884963 ], [ 356090.863899998366833, 253829.958099998533726 ], [ 356130.23650000244379, 253846.323499999940395 ], [ 356147.125900000333786, 253851.528000000864267 ], [ 356164.8378000035882, 253854.839299999177456 ], [ 356191.426399998366833, 253857.379000000655651 ], [ 356205.911200001835823, 253860.875 ], [ 356213.968999996781349, 253861.574200000613928 ], [ 356219.618500001728535, 253860.987199999392033 ], [ 356230.133000001311302, 253857.273600000888109 ], [ 356238.233900003135204, 253852.906899999827147 ], [ 356247.986900001764297, 253843.909699998795986 ], [ 356252.876900002360344, 253837.828000001609325 ], [ 356261.055200003087521, 253824.385000001639128 ], [ 356263.527999997138977, 253818.072399999946356 ], [ 356265.970399998128414, 253815.348200000822544 ], [ 356269.256700001657009, 253808.197900000959635 ], [ 356272.552100002765656, 253799.992199998348951 ], [ 356286.44820000231266, 253777.941100001335144 ], [ 356298.632799997925758, 253767.486200001090765 ], [ 356309.15089999884367, 253763.350400000810623 ], [ 356326.907700002193451, 253761.384799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402091200", "MAP": "D9-4607-T88", "PARCEL_NAM": "C-10", "ACRE": ".23", "LONGITUDE": -64.92156664, "LATITUDE": 18.34731415, "OBJECTID_1": 12601, "PARCEL_NO_": "105402091200", "Tax_Legal_": "C-10 & C-42-A ROSS KINGS QUARTER", "Name": "BARTLETTE, KENRICK & ILEASE", "Address": "P.O. Box 7095", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010095, "Country": "United States", "Land_Value": 26100, "Improved_V": 88100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.77264309, "SHAPE_Area": 994.81017814799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359768.353799998760223, 257563.48200000077486 ], [ 359780.423299998044968, 257566.536100000143051 ], [ 359792.330600000917912, 257569.517000000923872 ], [ 359802.587499998509884, 257534.239500001072884 ], [ 359798.442699998617172, 257533.752999998629093 ], [ 359788.007399998605251, 257528.179099999368191 ], [ 359775.928900003433228, 257526.180399999022484 ], [ 359768.353799998760223, 257563.48200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092400", "MAP": "D9-6852-T000", "PARCEL_NAM": "C-42 REM", "ACRE": ".24", "LONGITUDE": -64.92127144, "LATITUDE": 18.3473594, "OBJECTID_1": 12613, "PARCEL_NO_": "105402092400", "Tax_Legal_": "ROSS ESTATE C-42 REM NEW QTR", "Name": "MARIUS, MARIE", "Address": "PO Box 3080241", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.26872745099999, "SHAPE_Area": 1115.7726425400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359792.330600000917912, 257569.517000000923872 ], [ 359811.804799996316433, 257574.392299998551607 ], [ 359830.488399997353554, 257558.291000001132488 ], [ 359837.001900002360344, 257550.9560999982059 ], [ 359838.663000002503395, 257545.270100001245737 ], [ 359837.109700001776218, 257538.291299998760223 ], [ 359802.591499999165535, 257534.239900000393391 ], [ 359803.114399999380112, 257554.85530000180006 ], [ 359792.627599999308586, 257568.495299998670816 ], [ 359792.330600000917912, 257569.517000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402091200", "MAP": "D9-6852-T000", "PARCEL_NAM": "C-42-A", "ACRE": ".02", "LONGITUDE": -64.92142773, "LATITUDE": 18.34735648, "OBJECTID_1": 12601, "PARCEL_NO_": "105402091200", "Tax_Legal_": "C-10 & C-42-A ROSS KINGS QUARTER", "Name": "BARTLETTE, KENRICK & ILEASE", "Address": "P.O. Box 7095", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010095, "Country": "United States", "Land_Value": 26100, "Improved_V": 88100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.505709725599999, "SHAPE_Area": 111.731469957 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359792.627599999308586, 257568.495299998670816 ], [ 359803.114399999380112, 257554.85530000180006 ], [ 359802.591499999165535, 257534.239900000393391 ], [ 359802.587499998509884, 257534.239500001072884 ], [ 359792.627599999308586, 257568.495299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105503081900", "MAP": "D9-7742-T006", "PARCEL_NAM": "14J-A", "ACRE": "1.03", "LONGITUDE": -64.9121551, "LATITUDE": 18.32934121, "OBJECTID_1": 20369, "PARCEL_NO_": "105503081900", "Tax_Legal_": "14JA ESTATE THOMAS 6E NEW QTR", "Name": "MCQUAID, CHARLES P. (TRUSTEE)", "Address": "1341 Turvey Rd", "City": "Downers Grove", "State": "Illinois", "Zip": 60515, "Country": "United States", "Land_Value": 222900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.82855647000002, "SHAPE_Area": 4137.64080216 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360744.930900000035763, 255591.872000001370907 ], [ 360803.605499997735023, 255606.22859999909997 ], [ 360814.776699997484684, 255587.609999999403954 ], [ 360826.240099996328354, 255586.261399999260902 ], [ 360827.622100003063679, 255516.311500001698732 ], [ 360806.569799996912479, 255526.482700001448393 ], [ 360795.25450000166893, 255529.556499999016523 ], [ 360746.356100000441074, 255590.162399999797344 ], [ 360744.930900000035763, 255591.872000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401020600", "MAP": "D9-7742-T006", "PARCEL_NAM": "14J-B", "ACRE": "1.07", "LONGITUDE": -64.91257837000001, "LATITUDE": 18.32990602, "OBJECTID_1": 33009, "PARCEL_NO_": "107401020600", "Tax_Legal_": "14JB EST THOMAS 6E NEW QTR", "Name": "MCQUAID, CHARLES P.", "Address": "1341 Turvey Rd", "City": "Downers Grove", "State": "Illinois", "Zip": 60515, "Country": "United States", "Land_Value": 247500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.61963952000002, "SHAPE_Area": 4421.8960112100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360688.959399998188019, 255657.540100000798702 ], [ 360774.843500003218651, 255656.576299998909235 ], [ 360790.586300000548363, 255627.722699999809265 ], [ 360801.153899997472763, 255610.314599998295307 ], [ 360803.605499997735023, 255606.22859999909997 ], [ 360744.930900000035763, 255591.872000001370907 ], [ 360695.844999998807907, 255650.754999998956919 ], [ 360688.959399998188019, 255657.540100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401020700", "MAP": "D9-7742-T006", "PARCEL_NAM": "14J-C", "ACRE": "1.09", "LONGITUDE": -64.91297051, "LATITUDE": 18.33043249, "OBJECTID_1": 33010, "PARCEL_NO_": "107401020700", "Tax_Legal_": "14J-C EST THOMAS 6E NEW QTR", "Name": "CHARLES P MCQUAID 1995 TRUST", "Address": "1341 Turvey Rd", "City": "Downers Grove", "State": "Illinois", "Zip": 60515, "Country": "United States", "Land_Value": 234600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 371.73261200600001, "SHAPE_Area": 5738.2173824700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360625.097000002861023, 255720.470100000500679 ], [ 360769.976999998092651, 255702.758600000292063 ], [ 360764.413500003516674, 255689.290600001811981 ], [ 360763.038000002503395, 255679.688900001347065 ], [ 360768.328100003302097, 255669.011999998241663 ], [ 360774.843500003218651, 255656.576299998909235 ], [ 360688.959399998188019, 255657.540100000798702 ], [ 360625.097000002861023, 255720.470100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302030100", "MAP": "D9-4606-T88", "PARCEL_NAM": "1-67", "ACRE": null, "LONGITUDE": -64.91820437, "LATITUDE": 18.32635356, "OBJECTID_1": 31647, "PARCEL_NO_": "107302030100", "Tax_Legal_": "BAKKERO 1-67 FRENCHMAN BAY QTR", "Name": "SOHLBERG, LINDA", "Address": "9999 Manitou Beach Drive", "City": "Bainbridge Island", "State": "Washington", "Zip": 981101374, "Country": "United States", "Land_Value": 118800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.098212762, "SHAPE_Area": 3585.16651589 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360102.276699997484684, 255186.979499999433756 ], [ 360117.531999997794628, 255194.703699998557568 ], [ 360127.141199998557568, 255202.592799998819828 ], [ 360134.313500002026558, 255212.572900000959635 ], [ 360138.267700001597404, 255221.682300001382828 ], [ 360139.828199997544289, 255227.816799998283386 ], [ 360139.695100001990795, 255243.436700001358986 ], [ 360138.843800000846386, 255248.706999998539686 ], [ 360134.664800003170967, 255265.982500001788139 ], [ 360134.016099996864796, 255268.140900000929832 ], [ 360185.977300003170967, 255264.601599998772144 ], [ 360192.879000000655651, 255214.312399998307228 ], [ 360151.384499996900558, 255196.458500001579523 ], [ 360102.276699997484684, 255186.979499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302035100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91780235, "LATITUDE": 18.32577475, "OBJECTID_1": 31698, "PARCEL_NO_": "107302035100", "Tax_Legal_": "BAKKERO 1-68 FRENCHMAN BAY QTR.", "Name": "C & N HOLDING, INC.", "Address": "7340 Estate Bakkeaoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023001, "Country": "United States", "Land_Value": 741100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.42030199499999, "SHAPE_Area": 597.34174939000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360160.386399999260902, 255163.061799999326468 ], [ 360160.467799998819828, 255163.019900001585484 ], [ 360165.657300002872944, 255164.959399998188019 ], [ 360171.647699996829033, 255166.755899999290705 ], [ 360177.794200003147125, 255167.389199998229742 ], [ 360207.090899996459484, 255167.049300000071526 ], [ 360213.526699997484684, 255168.121599998325109 ], [ 360220.381300002336502, 255171.672400001436472 ], [ 360227.815800003707409, 255175.955899998545647 ], [ 360241.352200001478195, 255186.258900001645088 ], [ 360245.639300003647804, 255181.490100000053644 ], [ 360236.030799999833107, 255174.422499999403954 ], [ 360225.39469999819994, 255167.637499999254942 ], [ 360217.375600002706051, 255163.203600000590086 ], [ 360213.878600001335144, 255160.990899998694658 ], [ 360208.908699996769428, 255159.785000000149012 ], [ 360203.047899998724461, 255160.027699999511242 ], [ 360174.631099998950958, 255160.229299999773502 ], [ 360169.811200000345707, 255158.587999999523163 ], [ 360162.287500001490116, 255155.937699999660254 ], [ 360162.167300000786781, 255155.908100001513958 ], [ 360161.3766999989748, 255159.387800000607967 ], [ 360160.386399999260902, 255163.061799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012200", "MAP": "A9-726-T008", "PARCEL_NAM": "2-Q", "ACRE": "4.29", "LONGITUDE": -64.91848556, "LATITUDE": 18.32100148, "OBJECTID_1": 31726, "PARCEL_NO_": "107304012200", "Tax_Legal_": "2Q BAKKERO FRENCHMAN'S BAY QTR", "Name": "MS DEVELOPMENT CORP", "Address": "7340 Estate Bakkero", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 417800, "Improved_V": 268000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1079.9056870500001, "SHAPE_Area": 15632.910876600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360146.584700003266335, 254608.595800001174212 ], [ 360151.414700001478195, 254609.241099998354912 ], [ 360160.376000002026558, 254611.960999999195337 ], [ 360169.983599998056889, 254617.001400001347065 ], [ 360179.255800001323223, 254622.369800001382828 ], [ 360183.570100001990795, 254623.728399999439716 ], [ 360194.887699998915195, 254623.160599999129772 ], [ 360207.197999998927116, 254623.26240000128746 ], [ 360218.180299997329712, 254623.022599998861551 ], [ 360229.476000003516674, 254625.100499998778105 ], [ 360239.097300000488758, 254628.487399999052286 ], [ 360250.030199997127056, 254634.200199998915195 ], [ 360257.635999999940395, 254639.885499998927116 ], [ 360263.223700001835823, 254648.19990000128746 ], [ 360266.495999999344349, 254654.841499999165535 ], [ 360267.436599999666214, 254661.79450000077486 ], [ 360271.688000001013279, 254670.759300000965595 ], [ 360277.248199999332428, 254682.380699999630451 ], [ 360282.51410000026226, 254689.369500000029802 ], [ 360283.158100001513958, 254695.278000000864267 ], [ 360282.313500002026558, 254699.301399998366833 ], [ 360304.093000002205372, 254698.424100000411272 ], [ 360316.281900003552437, 254698.523899998515844 ], [ 360330.701300002634525, 254698.6418999992311 ], [ 360341.989699997007847, 254698.734299998730421 ], [ 360334.045199997723103, 254684.737100001424551 ], [ 360277.465599998831749, 254591.181800000369549 ], [ 360259.929799996316433, 254591.03830000013113 ], [ 360244.531199999153614, 254590.912200000137091 ], [ 360236.372800000011921, 254602.033399999141693 ], [ 360231.270599998533726, 254610.771299999207258 ], [ 360214.566399998962879, 254606.076799999922514 ], [ 360205.722099997103214, 254603.049100000411272 ], [ 360191.230099998414516, 254600.397399999201298 ], [ 360180.740900002419949, 254595.471700001507998 ], [ 360168.663400001823902, 254589.80009999871254 ], [ 360158.5929000005126, 254585.070999998599291 ], [ 360150.259199999272823, 254582.330200001597404 ], [ 360143.002400003373623, 254582.270799998193979 ], [ 360133.545900002121925, 254585.959399998188019 ], [ 360121.333499997854233, 254595.124499998986721 ], [ 360108.154700003564358, 254602.672699999064207 ], [ 360093.942299999296665, 254603.128499999642372 ], [ 360084.225000001490116, 254602.011599998921156 ], [ 360076.719300001859665, 254601.148899998515844 ], [ 360067.031000003218651, 254602.5472999997437 ], [ 360059.736400000751019, 254606.920499999076128 ], [ 360054.85360000282526, 254612.157900001853704 ], [ 360047.067400000989437, 254624.78319999948144 ], [ 360041.770999997854233, 254633.371300000697374 ], [ 360036.085400000214577, 254638.179900001734495 ], [ 360028.798000000417233, 254641.708799999207258 ], [ 360023.265699997544289, 254642.331399999558926 ], [ 360011.775100000202656, 254642.665100000798702 ], [ 359995.814800001680851, 254642.116500001400709 ], [ 359986.059900000691414, 254641.781199999153614 ], [ 359978.813900001347065, 254640.455400001257658 ], [ 359965.146099999547005, 254635.699400000274181 ], [ 359956.453400000929832, 254631.112399999052286 ], [ 359939.182199999690056, 254621.998599998652935 ], [ 359928.654500000178814, 254617.101700000464916 ], [ 359917.76070000231266, 254613.357900001108646 ], [ 359920.072499997913837, 254645.910700000822544 ], [ 359922.080700002610683, 254674.188200000673532 ], [ 359928.431100003421307, 254677.468299999833107 ], [ 359935.465199999511242, 254680.690200001001358 ], [ 359944.587300002574921, 254682.605000000447035 ], [ 359953.283900000154972, 254682.478300001472235 ], [ 359969.693499997258186, 254681.408599998801947 ], [ 359984.136200003325939, 254678.284699998795986 ], [ 360026.16330000013113, 254667.018500000238419 ], [ 360032.635399997234344, 254664.538400001823902 ], [ 360042.366899996995926, 254658.074099998921156 ], [ 360055.388400003314018, 254644.037399999797344 ], [ 360069.158600002527237, 254636.761799998581409 ], [ 360080.137100003659725, 254633.983899999409914 ], [ 360089.549800001084805, 254631.602200001478195 ], [ 360098.250600002706051, 254629.400600001215935 ], [ 360109.198299996554852, 254624.830800000578165 ], [ 360121.671400003135204, 254618.634899999946356 ], [ 360129.018100000917912, 254614.664700001478195 ], [ 360137.102899998426437, 254612.197799999266863 ], [ 360146.584700003266335, 254608.595800001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302333100", "MAP": null, "PARCEL_NAM": "5D", "ACRE": null, "LONGITUDE": -64.93484857, "LATITUDE": 18.34413062, "OBJECTID_1": 10594, "PARCEL_NO_": "105302333100", "Tax_Legal_": "TAMARIND GADE 5D QUEENS QTR", "Name": "HARLEY, CHARLES & ALTHEA", "Address": "Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3600, "Improved_V": 88200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.652185764499997, "SHAPE_Area": 192.78066347800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358385.513800002634525, 257192.743200000375509 ], [ 358392.871699996292591, 257178.470100000500679 ], [ 358392.744099996984005, 257178.376600001007318 ], [ 358385.532200001180172, 257173.040199998766184 ], [ 358373.291900001466274, 257190.038600001484156 ], [ 358385.513800002634525, 257192.743200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302332100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93489946, "LATITUDE": 18.34431405, "OBJECTID_1": 10584, "PARCEL_NO_": "105302332100", "Tax_Legal_": "TAMARIND GADE 5A QUEENS QTR", "Name": "MADDOX, HEZEKIAH ILLAGE", "Address": "2207 Tamarind Gade 5A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15900, "Improved_V": 93200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.081822310700005, "SHAPE_Area": 372.44735935400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358390.901799999177456, 257197.667700000107288 ], [ 358373.291900001466274, 257190.038600001484156 ], [ 358368.258000001311302, 257213.006599999964237 ], [ 358379.499600000679493, 257218.587099999189377 ], [ 358386.869699999690056, 257205.348499998450279 ], [ 358390.901799999177456, 257197.667700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303340300", "MAP": "F9-4032-T73", "PARCEL_NAM": "1", "ACRE": ".49", "LONGITUDE": -64.94064595, "LATITUDE": 18.33634927, "OBJECTID_1": 11305, "PARCEL_NO_": "105303340300", "Tax_Legal_": "CAREENING HOLE 1 8A SOUTHSIDE QTR.", "Name": "CARPENTER(TRUSTEES), KENNETH & MARCIA", "Address": "PO Box 414", "City": "WILMINGTON", "State": "Illinois", "Zip": 60481, "Country": "United States", "Land_Value": 131100, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.95238089599999, "SHAPE_Area": 1038.0898385400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357794.253300003707409, 256302.494899999350309 ], [ 357768.899999998509884, 256298.876600001007318 ], [ 357756.723200000822544, 256318.848400000482798 ], [ 357784.603500001132488, 256342.746100001037121 ], [ 357793.807099997997284, 256322.278299998492002 ], [ 357794.253300003707409, 256302.494899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304011101", "MAP": "A9-422-T93", "PARCEL_NAM": "62", "ACRE": ".59", "LONGITUDE": -64.94055167, "LATITUDE": 18.33688693, "OBJECTID_1": 11318, "PARCEL_NO_": "105304011101", "Tax_Legal_": "62 HONDURAS CROWN PRINCE QUARTER", "Name": "ANQUET INC", "Address": "PO Box 223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 569800, "Improved_V": 305900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.58565330800002, "SHAPE_Area": 2260.6012339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357797.759099997580051, 256407.6587999984622 ], [ 357798.588500000536442, 256404.922100000083447 ], [ 357796.265000000596046, 256402.297699999064207 ], [ 357799.432599999010563, 256400.495999999344349 ], [ 357804.896999999880791, 256392.381999999284744 ], [ 357810.3108000010252, 256379.409400001168251 ], [ 357818.527999997138977, 256379.688000001013279 ], [ 357818.695200003683567, 256376.642499998211861 ], [ 357810.669299997389317, 256376.430399999022484 ], [ 357808.808899998664856, 256375.285700000822544 ], [ 357806.056100003421307, 256362.535900000482798 ], [ 357804.655000001192093, 256358.021099999547005 ], [ 357803.44820000231266, 256354.132599998265505 ], [ 357803.303300000727177, 256345.439599998295307 ], [ 357805.582800000905991, 256345.602400001138449 ], [ 357806.361400000751019, 256344.401799999177456 ], [ 357805.580300003290176, 256341.440099999308586 ], [ 357803.16669999808073, 256340.787099998444319 ], [ 357803.174699999392033, 256339.847500000149012 ], [ 357798.733900003135204, 256341.445700000971556 ], [ 357790.290200002491474, 256346.203200001269579 ], [ 357786.964900001883507, 256349.520399998873472 ], [ 357748.060500003397465, 256372.844500001519918 ], [ 357750.822300001978874, 256380.565099999308586 ], [ 357770.559500001370907, 256373.836800001561642 ], [ 357771.428800001740456, 256377.169199999421835 ], [ 357775.050899997353554, 256388.325199998915195 ], [ 357779.805900000035763, 256402.251200001686811 ], [ 357781.135999999940395, 256406.146699998527765 ], [ 357785.3412000015378, 256406.146200001239777 ], [ 357787.510999999940395, 256406.146000001579523 ], [ 357787.264200001955032, 256409.051300000399351 ], [ 357786.479999996721745, 256419.061999998986721 ], [ 357791.897100001573563, 256420.794199999421835 ], [ 357794.364000000059605, 256421.583000000566244 ], [ 357794.48650000244379, 256421.399399999529123 ], [ 357801.205200001597404, 256411.327799998223782 ], [ 357797.759099997580051, 256407.6587999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105303340100", "MAP": "D9-8291-T009", "PARCEL_NAM": "VILLA OLGA", "ACRE": "5.75", "LONGITUDE": -64.94070204000001, "LATITUDE": 18.33505744, "OBJECTID_1": 11301, "PARCEL_NO_": "105303340100", "Tax_Legal_": "VILLA OLGA CAREENING HOLE NO.8A SOUTHSIDE QUARTER", "Name": "MARIE PANITZ REVOCABLE TRUST", "Address": "237 SW 13th St", "City": "Miami", "State": "Florida", "Zip": 33130, "Country": "United States", "Land_Value": 1323100, "Improved_V": 2500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 603.23783202699997, "SHAPE_Area": 14328.114143299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357705.346100002527237, 256180.821899998933077 ], [ 357730.861000001430511, 256203.874600000679493 ], [ 357758.15990000218153, 256228.539200000464916 ], [ 357772.565700002014637, 256241.322700001299381 ], [ 357773.269500002264977, 256253.360800001770258 ], [ 357778.947800002992153, 256249.396499998867512 ], [ 357781.071900002658367, 256284.03319999948144 ], [ 357794.026799999177456, 256277.806400001049042 ], [ 357806.132299996912479, 256276.638900000602007 ], [ 357806.3462999984622, 256251.520599998533726 ], [ 357811.308200001716614, 256236.995700001716614 ], [ 357819.49719999730587, 256222.286200001835823 ], [ 357834.021600000560284, 256221.1385000012815 ], [ 357834.041400000452995, 256218.816599998623133 ], [ 357820.328699998557568, 256219.337699998170137 ], [ 357821.988099999725819, 256213.862799998372793 ], [ 357827.704199999570847, 256205.465900000184774 ], [ 357829.352799996733665, 256201.257500000298023 ], [ 357832.316100001335144, 256197.964699998497963 ], [ 357835.580099999904633, 256194.602299999445677 ], [ 357837.866800002753735, 256189.379399999976158 ], [ 357839.286499999463558, 256183.667899999767542 ], [ 357839.323899999260902, 256179.083000000566244 ], [ 357838.98870000243187, 256173.4983000010252 ], [ 357836.554499998688698, 256168.494600001722574 ], [ 357832.603799998760223, 256162.681000001728535 ], [ 357828.272399999201298, 256156.864399999380112 ], [ 357819.949699997901917, 256150.217799998819828 ], [ 357813.345100000500679, 256142.987100001424551 ], [ 357804.277199998497963, 256134.340799998492002 ], [ 357797.295100003480911, 256126.708399999886751 ], [ 357784.129199996590614, 256114.595100000500679 ], [ 357777.278099998831749, 256106.609600000083447 ], [ 357771.812600001692772, 256099.786899998784065 ], [ 357768.605499997735023, 256096.172400001436472 ], [ 357765.024099998176098, 256091.75730000063777 ], [ 357767.903300002217293, 256090.415699999779463 ], [ 357777.793799996376038, 256090.067200001329184 ], [ 357784.650399997830391, 256089.724399998784065 ], [ 357786.375200003385544, 256088.342999998480082 ], [ 357787.312399998307228, 256082.61540000140667 ], [ 357766.343800000846386, 256082.023699998855591 ], [ 357754.350100003182888, 256080.181800000369549 ], [ 357742.509499996900558, 256077.901399999856949 ], [ 357728.320799998939037, 256117.195599999278784 ], [ 357705.346100002527237, 256180.821899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304060300", "MAP": "B9-305-T70", "PARCEL_NAM": "CURACOA GADE 11", "ACRE": ".176", "LONGITUDE": -64.93411944, "LATITUDE": 18.34072456, "OBJECTID_1": 11383, "PARCEL_NO_": "105304060300", "Tax_Legal_": "CURACOA GADE 11 & 11A 1/3 OF 1/4 UNDIV INT", "Name": "CHRISTENSEN, WILLIAM C", "Address": "PO Box 7427", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 397300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.839226801, "SHAPE_Area": 774.81902029499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358478.721500001847744, 256791.982900001108646 ], [ 358455.804700002074242, 256788.690900001674891 ], [ 358450.597900003194809, 256823.790699999779463 ], [ 358470.730499997735023, 256826.910799998790026 ], [ 358478.721500001847744, 256791.982900001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304060300", "MAP": "B9-305-T70", "PARCEL_NAM": "CURACOA GADE 11B", "ACRE": ".04", "LONGITUDE": -64.93408061, "LATITUDE": 18.34051422, "OBJECTID_1": 11383, "PARCEL_NO_": "105304060300", "Tax_Legal_": "CURACOA GADE 11 & 11A 1/3 OF 1/4 UNDIV INT", "Name": "CHRISTENSEN, WILLIAM C", "Address": "PO Box 7427", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 397300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.920085123800007, "SHAPE_Area": 291.03249810599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358481.429099999368191, 256780.14809999987483 ], [ 358457.64360000193119, 256776.294700000435114 ], [ 358455.804700002074242, 256788.690900001674891 ], [ 358478.721500001847744, 256791.982900001108646 ], [ 358481.429099999368191, 256780.14809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302131700", "MAP": "D9-8512-T010", "PARCEL_NAM": "96-REM", "ACRE": ".10", "LONGITUDE": -64.94020808, "LATITUDE": 18.34310219, "OBJECTID_1": 9888, "PARCEL_NO_": "105302131700", "Tax_Legal_": "96 REM ANNA'S FANCY KRONPRINDSENS QTR", "Name": "BROOKS, DORIS & DERON", "Address": "PO Box 305651", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32000, "Improved_V": 41800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.005630561, "SHAPE_Area": 516.77528064499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357817.264600001275539, 257052.287799999117851 ], [ 357814.501999996602535, 257058.450500000268221 ], [ 357804.377999998629093, 257050.493599999696016 ], [ 357806.60809999704361, 257072.676600001752377 ], [ 357829.935500003397465, 257079.411499999463558 ], [ 357830.917999997735023, 257058.732299998402596 ], [ 357817.264600001275539, 257052.287799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301099000", "MAP": "D9-8469-T010", "PARCEL_NAM": "1A-3-1B", "ACRE": ".22", "LONGITUDE": -64.94733048000001, "LATITUDE": 18.34788129, "OBJECTID_1": 9372, "PARCEL_NO_": "105301099000", "Tax_Legal_": "1A-3-1B SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "KALEEL, ABDEL K. M. & IKRAM M.", "Address": "PO Box 302116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.614614487, "SHAPE_Area": 1034.62792904 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357045.344099998474121, 257576.921700000762939 ], [ 357047.223200000822544, 257609.851300001144409 ], [ 357078.214500002563, 257599.16780000180006 ], [ 357076.54450000077486, 257572.843600001186132 ], [ 357072.599500000476837, 257570.971599999815226 ], [ 357065.35530000180006, 257569.43470000103116 ], [ 357061.318300001323223, 257570.03489999845624 ], [ 357055.665100000798702, 257571.044100001454353 ], [ 357045.344099998474121, 257576.921700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094100", "MAP": "C9-305-T87", "PARCEL_NAM": "1A-2", "ACRE": null, "LONGITUDE": -64.94594836, "LATITUDE": 18.34767375, "OBJECTID_1": 9325, "PARCEL_NO_": "105301094100", "Tax_Legal_": "1A-2 SOLBERG No.1 LITTLE NORTHSIDE QTR", "Name": "GORE, EULET R. & ROMAINE M. & A. DJAOUGA", "Address": "2513 Ross Rd", "City": "Silver Spring", "State": "Maryland", "Zip": 20910, "Country": "United States", "Land_Value": 95200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.249750318, "SHAPE_Area": 1858.2204447900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357227.291000001132488, 257586.381000000983477 ], [ 357231.340499997138977, 257584.303199999034405 ], [ 357221.94709999859333, 257551.084600001573563 ], [ 357234.279200002551079, 257523.321199998259544 ], [ 357226.998999997973442, 257526.005800001323223 ], [ 357222.132299996912479, 257529.343499999493361 ], [ 357217.247699998319149, 257534.791900001466274 ], [ 357213.955899998545647, 257542.575500000268221 ], [ 357207.428099997341633, 257551.59910000115633 ], [ 357199.314599998295307, 257557.443300001323223 ], [ 357195.272299997508526, 257558.67680000141263 ], [ 357185.571299999952316, 257561.552700001746416 ], [ 357165.060900002717972, 257564.959300000220537 ], [ 357176.781300000846386, 257573.759799998253584 ], [ 357209.07490000128746, 257593.537300001829863 ], [ 357227.291000001132488, 257586.381000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303321000", "MAP": "D9-9422-T020", "PARCEL_NAM": "CONS. 65", "ACRE": "0.36", "LONGITUDE": -64.941751, "LATITUDE": 18.33680599, "OBJECTID_1": 11284, "PARCEL_NO_": "105303321000", "Tax_Legal_": "REM HONDURAS \nCROWN PRINCE QUARTER", "Name": "William Quetel, Louis Arguin & Telarg, LLC", "Address": "PO Box 7758", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 360900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.833707844, "SHAPE_Area": 992.26493242900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357682.617799997329712, 256378.581599999219179 ], [ 357681.615500003099442, 256371.094099998474121 ], [ 357679.554799996316433, 256363.33669999986887 ], [ 357666.682099997997284, 256354.385400000959635 ], [ 357649.126199997961521, 256349.215999998152256 ], [ 357649.255999997258186, 256345.698600001633167 ], [ 357645.888999998569489, 256344.988299999386072 ], [ 357642.604400001466274, 256351.927499998360872 ], [ 357642.584700003266335, 256354.249400001019239 ], [ 357651.974500000476837, 256387.890099998563528 ], [ 357664.931199997663498, 256381.452199999243021 ], [ 357682.617799997329712, 256378.581599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303320400", "MAP": "F9-1839-T66", "PARCEL_NAM": "20", "ACRE": ".04", "LONGITUDE": -64.94138637, "LATITUDE": 18.33655475, "OBJECTID_1": 11278, "PARCEL_NO_": "105303320400", "Tax_Legal_": "HONDURAS 20 CROWN PRINCE QTR", "Name": "GREAUX, EMMA E", "Address": "212 W Statesville Ave", "City": "Mooresville", "State": "North Carolina", "Zip": 28115, "Country": "United States", "Land_Value": 11100, "Improved_V": 23600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.5405343913, "SHAPE_Area": 182.016180655 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357694.321199998259544, 256350.891100000590086 ], [ 357701.234999999403954, 256346.423700001090765 ], [ 357702.455899998545647, 256345.528900001198053 ], [ 357703.783699996769428, 256343.931200001388788 ], [ 357704.398699998855591, 256342.931000001728535 ], [ 357709.573499999940395, 256333.002199999988079 ], [ 357693.356200002133846, 256332.788199998438358 ], [ 357694.321199998259544, 256350.891100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302033600", "MAP": "D9-8387-T009", "PARCEL_NAM": "2-REM", "ACRE": ".489", "LONGITUDE": -64.93680324, "LATITUDE": 18.34552655, "OBJECTID_1": 9655, "PARCEL_NO_": "105302033600", "Tax_Legal_": "2-REM STAABI 9A GREAT NORTHSIDE", "Name": "DE JONGH, ROBERT C. & DONNA", "Address": "2200 Estate Staabi", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 160100, "Improved_V": 113000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.15911315100001, "SHAPE_Area": 2176.26518171 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358149.796999998390675, 257338.492600001394749 ], [ 358162.968000002205372, 257374.910900000482798 ], [ 358169.350199997425079, 257371.176500000059605 ], [ 358177.474500000476837, 257364.065799999982119 ], [ 358184.801399998366833, 257355.893100000917912 ], [ 358197.014799997210503, 257342.060899998992682 ], [ 358201.098499998450279, 257335.972600001841784 ], [ 358204.414499998092651, 257328.479299999773502 ], [ 358194.310099996626377, 257326.720400001853704 ], [ 358199.199799999594688, 257296.35359999909997 ], [ 358198.602399997413158, 257296.291400000452995 ], [ 358190.676700003445148, 257304.066899999976158 ], [ 358162.62780000269413, 257317.82149999961257 ], [ 358149.796999998390675, 257338.492600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302033400", "MAP": "A9-502A-T97", "PARCEL_NAM": "8-A", "ACRE": null, "LONGITUDE": -64.9365705, "LATITUDE": 18.34517215, "OBJECTID_1": 9653, "PARCEL_NO_": "105302033400", "Tax_Legal_": "STAABI 8A, 2A & 11A GREAT NORTHSIDE QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 15.732919305499999, "SHAPE_Area": 9.3149317613899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358198.688100002706051, 257299.531500000506639 ], [ 358204.973600000143051, 257296.955200001597404 ], [ 358199.417300000786781, 257296.376299999654293 ], [ 358199.180500000715256, 257296.473200000822544 ], [ 358198.688100002706051, 257299.531500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302033400", "MAP": "A9-502A-T97", "PARCEL_NAM": "11A", "ACRE": ".5110", "LONGITUDE": -64.93704821, "LATITUDE": 18.34545937, "OBJECTID_1": 9653, "PARCEL_NO_": "105302033400", "Tax_Legal_": "STAABI 8A, 2A & 11A GREAT NORTHSIDE QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.58297926500001, "SHAPE_Area": 1222.9336835 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358149.796999998390675, 257338.492600001394749 ], [ 358161.02759999781847, 257315.635800000280142 ], [ 358184.865699999034405, 257303.176199998706579 ], [ 358192.095499999821186, 257295.613499999046326 ], [ 358167.904700003564358, 257293.093299999833107 ], [ 358132.895300000905991, 257338.115899998694658 ], [ 358126.549900002777576, 257348.614199999719858 ], [ 358124.271200001239777, 257347.774500001221895 ], [ 358120.877999998629093, 257354.999499998986721 ], [ 358123.514499999582767, 257356.23589999973774 ], [ 358129.938000001013279, 257359.454900000244379 ], [ 358125.012000001966953, 257369.758099999278784 ], [ 358117.778599999845028, 257366.954700000584126 ], [ 358118.529200002551079, 257373.504799999296665 ], [ 358126.92400000244379, 257377.513799998909235 ], [ 358142.9037000015378, 257345.8277000002563 ], [ 358149.796999998390675, 257338.492600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105302030200", "MAP": "F9-763-T61", "PARCEL_NAM": "6", "ACRE": ".89", "LONGITUDE": -64.93872483, "LATITUDE": 18.34576093, "OBJECTID_1": 9625, "PARCEL_NO_": "105302030200", "Tax_Legal_": "6 STAABI NO. 9A GREAT NORTHSIDE QTR", "Name": "MMPP FAMILY REVOCABLE TRUST", "Address": "PO BOX 308275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 182200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.98365783899999, "SHAPE_Area": 2594.5567756599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357946.626900002360344, 257393.066899999976158 ], [ 357970.296800002455711, 257393.844700001180172 ], [ 357994.155199997127056, 257376.914599999785423 ], [ 357999.009700000286102, 257344.777300000190735 ], [ 357997.252400003373623, 257338.470300000160933 ], [ 357999.757700003683567, 257336.243299998342991 ], [ 357999.981200002133846, 257333.915100000798702 ], [ 357987.673199996352196, 257332.431000001728535 ], [ 357981.530599996447563, 257331.690400000661612 ], [ 357957.157899998128414, 257328.751600001007318 ], [ 357950.866499997675419, 257366.221900001168251 ], [ 357946.626900002360344, 257393.066899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105302033500", "MAP": "D9-8388-T010", "PARCEL_NAM": "13", "ACRE": ".225", "LONGITUDE": -64.93808092, "LATITUDE": 18.34643145, "OBJECTID_1": 9654, "PARCEL_NO_": "105302033500", "Tax_Legal_": "13 STAABI 9A GREAT NORTHSIDE", "Name": "DE JONGH, JAMES", "Address": "6 Fordham Hill Oval", "City": "BRONX", "State": "New York", "Zip": 10468, "Country": "United States", "Land_Value": 57100, "Improved_V": 76300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.57080252099999, "SHAPE_Area": 3114.8472019400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358029.045699998736382, 257405.647100001573563 ], [ 358022.889700002968311, 257410.820799998939037 ], [ 358017.651199996471405, 257415.497499998658895 ], [ 358011.500900000333786, 257421.065799999982119 ], [ 358006.16330000013113, 257437.877599999308586 ], [ 358006.806699998676777, 257442.152899999171495 ], [ 358009.030900001525879, 257446.665800001472235 ], [ 358015.31360000371933, 257452.560300000011921 ], [ 358016.157499998807907, 257459.983500000089407 ], [ 358058.1216000020504, 257471.113600000739098 ], [ 358057.735500000417233, 257463.019900001585484 ], [ 358066.984600000083447, 257437.924699999392033 ], [ 358077.972599998116493, 257421.383799999952316 ], [ 358059.822300001978874, 257408.829199999570847 ], [ 358029.045699998736382, 257405.647100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105302033000", "MAP": "A9-502B-T97", "PARCEL_NAM": "REM STAABI", "ACRE": ".02", "LONGITUDE": -64.93755461000001, "LATITUDE": 18.34617652, "OBJECTID_1": 9649, "PARCEL_NO_": "105302033000", "Tax_Legal_": "REM STAABI 9A GREAT NORTHSIDE", "Name": "DE JONGH, MAVIS", "Address": "1000 Estate Staabi", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1203400, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.714810172900002, "SHAPE_Area": 101.094461455 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358101.934500001370907, 257398.354400001466274 ], [ 358099.181699998676777, 257400.9386 ], [ 358095.478299997746944, 257404.84569999948144 ], [ 358092.270499996840954, 257407.220400001853704 ], [ 358087.90259999781847, 257409.681600000709295 ], [ 358084.506700001657009, 257411.381299998611212 ], [ 358100.42509999871254, 257413.027199998497963 ], [ 358101.934500001370907, 257398.354400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302033400", "MAP": "A9-502A-T97", "PARCEL_NAM": "2A", "ACRE": ".04741", "LONGITUDE": -64.93679367, "LATITUDE": 18.34527925, "OBJECTID_1": 9653, "PARCEL_NO_": "105302033400", "Tax_Legal_": "STAABI 8A, 2A & 11A GREAT NORTHSIDE QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 132000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.04166303100001, "SHAPE_Area": 172.21388125799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358192.095499999821186, 257295.613499999046326 ], [ 358184.865699999034405, 257303.176199998706579 ], [ 358161.02759999781847, 257315.635800000280142 ], [ 358149.796999998390675, 257338.492600001394749 ], [ 358162.62780000269413, 257317.82149999961257 ], [ 358190.676700003445148, 257304.066899999976158 ], [ 358198.602399997413158, 257296.291400000452995 ], [ 358192.095499999821186, 257295.613499999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105503010400", "MAP": "D9-9236-T018", "PARCEL_NAM": "56 A", "ACRE": "0.06", "LONGITUDE": -64.91439401, "LATITUDE": 18.33924502, "OBJECTID_1": 19956, "PARCEL_NO_": "105503010400", "Tax_Legal_": "10 REM ,56A-1 REM& 56A REM. ESTATE THOMAS 6A NEW QUARTER", "Name": "KAC PROPERTIES LLC", "Address": "14 Plessen", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 840, "Country": "United States", "Land_Value": 2408000, "Improved_V": 90000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.759965622300001, "SHAPE_Area": 356.55451194900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360530.020499996840954, 256658.213899999856949 ], [ 360531.207000002264977, 256660.422400001436472 ], [ 360531.998400002717972, 256660.923200000077486 ], [ 360536.265600003302097, 256662.045899998396635 ], [ 360550.355599999427795, 256665.919199999421835 ], [ 360564.535599999129772, 256670.517799999564886 ], [ 360567.0371999964118, 256667.171700000762939 ], [ 360567.080399997532368, 256662.105799999088049 ], [ 360562.278399996459484, 256657.8445999994874 ], [ 360556.652199998497963, 256655.687699999660254 ], [ 360535.702500000596046, 256653.827399998903275 ], [ 360532.470100000500679, 256654.645399998873472 ], [ 360530.020499996840954, 256658.213899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105503010400", "MAP": "D9-9236-T018", "PARCEL_NAM": "56A-1", "ACRE": ".10", "LONGITUDE": -64.91437068, "LATITUDE": 18.33918083, "OBJECTID_1": 19956, "PARCEL_NO_": "105503010400", "Tax_Legal_": "10 REM ,56A-1 REM& 56A REM. ESTATE THOMAS 6A NEW QUARTER", "Name": "KAC PROPERTIES LLC", "Address": "14 Plessen", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 840, "Country": "United States", "Land_Value": 2408000, "Improved_V": 90000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.17390487599999, "SHAPE_Area": 269.78137685199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360530.124799996614456, 256645.9712999984622 ], [ 360530.020499996840954, 256658.213899999856949 ], [ 360532.470100000500679, 256654.645399998873472 ], [ 360535.702500000596046, 256653.827399998903275 ], [ 360556.652199998497963, 256655.687699999660254 ], [ 360562.278399996459484, 256657.8445999994874 ], [ 360567.080399997532368, 256662.105799999088049 ], [ 360567.0371999964118, 256667.171700000762939 ], [ 360573.609999999403954, 256652.871100001037121 ], [ 360550.252099998295307, 256649.724599998444319 ], [ 360532.520400002598763, 256648.735100001096725 ], [ 360530.124799996614456, 256645.9712999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503010400", "MAP": "D9-8433-T010", "PARCEL_NAM": "10-REM", "ACRE": "2.38", "LONGITUDE": -64.91393633, "LATITUDE": 18.3389095, "OBJECTID_1": 19956, "PARCEL_NO_": "105503010400", "Tax_Legal_": "10 REM ,56A-1 REM& 56A REM. ESTATE THOMAS 6A NEW QUARTER", "Name": "KAC PROPERTIES LLC", "Address": "14 Plessen", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 840, "Country": "United States", "Land_Value": 2408000, "Improved_V": 90000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 379.243083238, "SHAPE_Area": 8359.9794741400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360648.235200002789497, 256581.092500001192093 ], [ 360629.929799996316433, 256583.138000000268221 ], [ 360625.777800001204014, 256583.927600000053644 ], [ 360547.758299998939037, 256594.26799999922514 ], [ 360544.152199998497963, 256595.886199999600649 ], [ 360539.975199997425079, 256599.697299998253584 ], [ 360536.222999997437, 256604.848000001162291 ], [ 360533.108199998736382, 256609.644600000232458 ], [ 360532.175399996340275, 256615.002700001001358 ], [ 360530.160800002515316, 256641.749699998646975 ], [ 360530.124799996614456, 256645.9712999984622 ], [ 360532.520400002598763, 256648.735100001096725 ], [ 360550.252099998295307, 256649.724599998444319 ], [ 360573.609999999403954, 256652.871100001037121 ], [ 360582.470399998128414, 256653.999099999666214 ], [ 360583.292900003492832, 256652.105999998748302 ], [ 360588.933499999344349, 256652.574400000274181 ], [ 360595.340800002217293, 256657.692999999970198 ], [ 360625.912399999797344, 256665.964800000190735 ], [ 360645.254900000989437, 256667.178599998354912 ], [ 360658.978399999439716, 256665.391100000590086 ], [ 360648.235200002789497, 256581.092500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402091500", "MAP": "D9-8613-T011", "PARCEL_NAM": "C-26-REM", "ACRE": ".158", "LONGITUDE": -64.92194345, "LATITUDE": 18.34516894, "OBJECTID_1": 12604, "PARCEL_NO_": "105402091500", "Tax_Legal_": "C-26 REM ROSS NO.8 NEW QUARTER", "Name": "GOKOOL, JOSHUA A. & MARLENE A. PARROTT", "Address": "14P ESTATE THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24100, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.220794574, "SHAPE_Area": 699.87951280899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359726.98870000243187, 257307.720199998468161 ], [ 359753.409999996423721, 257329.8902000002563 ], [ 359756.629900000989437, 257330.549899999052286 ], [ 359758.249700002372265, 257329.718699999153614 ], [ 359759.10639999806881, 257323.815099999308586 ], [ 359758.321599997580051, 257321.275600001215935 ], [ 359754.324199996888638, 257317.232099998742342 ], [ 359755.961999997496605, 257314.290199998766184 ], [ 359757.571099996566772, 257314.725499998778105 ], [ 359759.1908999979496, 257313.894400000572205 ], [ 359759.979400001466274, 257300.940799999982119 ], [ 359756.786300003528595, 257300.443599998950958 ], [ 359748.758199997246265, 257290.706000000238419 ], [ 359726.98870000243187, 257307.720199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090700", "MAP": "D9-8613-T011", "PARCEL_NAM": "C-26-1", "ACRE": ".008", "LONGITUDE": -64.92186896, "LATITUDE": 18.34503429, "OBJECTID_1": 12596, "PARCEL_NO_": "105402090700", "Tax_Legal_": "C-30, D-30 & C-26-1 ROSS 8 NEW QUARTER", "Name": "LANNS GRIFFIN, RUBYLETTE A.", "Address": "PO Box 307901", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16700, "Improved_V": 120200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.178060735800003, "SHAPE_Area": 52.1421100098 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359748.758199997246265, 257290.706000000238419 ], [ 359756.786300003528595, 257300.443599998950958 ], [ 359759.979400001466274, 257300.940799999982119 ], [ 359760.128499999642372, 257298.492300000041723 ], [ 359753.312899999320507, 257289.685899998992682 ], [ 359752.166900001466274, 257289.909499999135733 ], [ 359749.334100000560284, 257290.287500001490116 ], [ 359748.758199997246265, 257290.706000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302382100", "MAP": "D9-7388-T004", "PARCEL_NAM": null, "ACRE": ".04", "LONGITUDE": -64.93398384, "LATITUDE": 18.34208044, "OBJECTID_1": 10658, "PARCEL_NO_": "105302382100", "Tax_Legal_": "NORRE GADE 12B (3AA VESTER GADE) QUEENS QUARTER", "Name": "WARNER, JOANN T.", "Address": "PO Box 307004", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.854711075300003, "SHAPE_Area": 179.713631822 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358485.680799998342991, 256962.538100000470877 ], [ 358477.954300001263618, 256947.281300000846386 ], [ 358475.031700000166893, 256948.853500001132488 ], [ 358473.180699996650219, 256950.919199999421835 ], [ 358468.62049999833107, 256954.622000001370907 ], [ 358476.535199999809265, 256967.668299999088049 ], [ 358478.101899996399879, 256966.370900001376867 ], [ 358485.680799998342991, 256962.538100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105304010200", "MAP": "C9-266-T81", "PARCEL_NAM": "47C-1", "ACRE": "0.23", "LONGITUDE": -64.93993954, "LATITUDE": 18.33975692, "OBJECTID_1": 11307, "PARCEL_NO_": "105304010200", "Tax_Legal_": "GASVERKS 1A&47B-2,POR.OF 47B-3,47C-1&2 CROWN PRINCE QTR.", "Name": "Q CHARLOTTE HOTEL CORP", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 720000, "Improved_V": 1859000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.884460992, "SHAPE_Area": 746.44551591499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357867.13400000333786, 256694.928700000047684 ], [ 357835.236000001430511, 256672.338300000876188 ], [ 357835.756599999964237, 256680.070099998265505 ], [ 357835.591099999845028, 256699.48930000141263 ], [ 357839.601099997758865, 256702.055300001055002 ], [ 357861.247500002384186, 256716.797899998724461 ], [ 357863.765299998223782, 256705.208399999886751 ], [ 357867.13400000333786, 256694.928700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105304010200", "MAP": "C9-266-T81", "PARCEL_NAM": "1A GASVERKS", "ACRE": "0.83", "LONGITUDE": -64.94034192, "LATITUDE": 18.3402387, "OBJECTID_1": 11307, "PARCEL_NO_": "105304010200", "Tax_Legal_": "GASVERKS 1A&47B-2,POR.OF 47B-3,47C-1&2 CROWN PRINCE QTR.", "Name": "Q CHARLOTTE HOTEL CORP", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 720000, "Improved_V": 1859000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.11331487799998, "SHAPE_Area": 3214.14917977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357785.848999999463558, 256717.33839999884367 ], [ 357763.171499997377396, 256716.462099999189377 ], [ 357762.322899997234344, 256719.997900001704693 ], [ 357753.321599997580051, 256740.250900000333786 ], [ 357752.871200002729893, 256740.611099999397993 ], [ 357835.735699996352196, 256777.173000000417233 ], [ 357857.427000001072884, 256786.638599999248981 ], [ 357858.997400000691414, 256761.145899999886751 ], [ 357785.848999999463558, 256717.33839999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93914257, "LATITUDE": 18.34097079, "OBJECTID_1": 11328, "PARCEL_NO_": "105304020300", "Tax_Legal_": "49A,BA,50A&50BA,51A,51AA 51B KROMP GADE", "Name": "I T T COMMUNICATION INC", "Address": "PO Box 192830", "City": "San Juan", "State": "Puerto Rico", "Zip": 919, "Country": "United States", "Land_Value": 197300, "Improved_V": 1400800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.582874230199998, "SHAPE_Area": 164.59049915599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357940.16610000282526, 256823.83500000089407 ], [ 357928.080399997532368, 256822.680599998682737 ], [ 357927.115900002419949, 256841.2489 ], [ 357936.033900000154972, 256835.622400000691414 ], [ 357936.854599997401237, 256833.940400000661612 ], [ 357939.287900000810623, 256832.271499998867512 ], [ 357940.16610000282526, 256823.83500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105304020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93912352, "LATITUDE": 18.34082201, "OBJECTID_1": 11328, "PARCEL_NO_": "105304020300", "Tax_Legal_": "49A,BA,50A&50BA,51A,51AA 51B KROMP GADE", "Name": "I T T COMMUNICATION INC", "Address": "PO Box 192830", "City": "San Juan", "State": "Puerto Rico", "Zip": 919, "Country": "United States", "Land_Value": 197300, "Improved_V": 1400800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.772311014099998, "SHAPE_Area": 237.2695568 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357939.518100000917912, 256805.253400001674891 ], [ 357929.041400000452995, 256804.534400001168251 ], [ 357928.080399997532368, 256822.680599998682737 ], [ 357940.16610000282526, 256823.83500000089407 ], [ 357942.743299998342991, 256805.279800001531839 ], [ 357939.518100000917912, 256805.253400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302321900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93571258, "LATITUDE": 18.34379674, "OBJECTID_1": 10559, "PARCEL_NO_": "105302321900", "Tax_Legal_": "GENERAL GADE 10B CROWN PRINCE QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89200, "Improved_V": 254200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.474334097400003, "SHAPE_Area": 510.79169579699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358279.411899998784065, 257135.441399998962879 ], [ 358280.16780000180006, 257141.358199998736382 ], [ 358281.647399999201298, 257156.991200000047684 ], [ 358299.398800000548363, 257155.658900000154972 ], [ 358305.046599999070168, 257155.282900001853704 ], [ 358307.474600002169609, 257154.247299998998642 ], [ 358307.494300000369549, 257151.925500001758337 ], [ 358305.199500001966953, 257137.3412000015378 ], [ 358292.287699997425079, 257138.502099998295307 ], [ 358292.327200002968311, 257133.858399998396635 ], [ 358279.411899998784065, 257135.441399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071000", "MAP": "A3-39-T39", "PARCEL_NAM": "5", "ACRE": "7,020 sq ft", "LONGITUDE": -64.94835329, "LATITUDE": 18.33822266, "OBJECTID_1": 10933, "PARCEL_NO_": "105303071000", "Tax_Legal_": "CONTANT 5 7B SOUTHSIDE", "Name": "GOTTLIEB, GERDA & MARK A.", "Address": "3001 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 105300, "Improved_V": 506000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.50800354500001, "SHAPE_Area": 903.54691275499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356984.710699997842312, 256529.138900000602007 ], [ 356985.678800001740456, 256510.148400001227856 ], [ 356983.25450000166893, 256510.761799998581409 ], [ 356967.925499998033047, 256511.691799998283386 ], [ 356959.920000001788139, 256507.812100000679493 ], [ 356957.284400001168251, 256506.534800000488758 ], [ 356955.076700001955032, 256505.464999999850988 ], [ 356942.206299997866154, 256501.771000001579523 ], [ 356941.974299997091293, 256529.000199999660254 ], [ 356955.914800003170967, 256529.045400001108646 ], [ 356959.189800001680851, 256529.056099999696016 ], [ 356984.710699997842312, 256529.138900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301152600", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-17", "ACRE": ".21", "LONGITUDE": -64.94696272, "LATITUDE": 18.3430698, "OBJECTID_1": 9524, "PARCEL_NO_": "105301152600", "Tax_Legal_": "ALTONA & WELGUNST 200-5FA&220-17 WELGUNST/CROWN P.QTR", "Name": "CALLENDER LIVING TRUST, CASWIL D & JACQUELINE L", "Address": "PO Box 303593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 92500, "Improved_V": 114400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.47852366199999, "SHAPE_Area": 882.35489955800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357119.890600003302097, 257036.447599999606609 ], [ 357097.276100002229214, 257040.695500001311302 ], [ 357099.659100003540516, 257044.936900001019239 ], [ 357079.299900002777576, 257068.41270000115037 ], [ 357079.281900003552437, 257070.523499999195337 ], [ 357111.554200001060963, 257068.465599998831749 ], [ 357122.045299999415874, 257067.495999999344349 ], [ 357120.457800000905991, 257064.527699999511242 ], [ 357119.010600000619888, 257045.095199998468161 ], [ 357119.890600003302097, 257036.447599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301151500", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-1", "ACRE": ".22", "LONGITUDE": -64.9477631, "LATITUDE": 18.34259921, "OBJECTID_1": 9513, "PARCEL_NO_": "105301151500", "Tax_Legal_": "ALTONA & WEL. 220-1 & 212-A-9-1 KRONP. PRINCE QTR.", "Name": "HERMAN, JANE & JOHN & JAMES", "Address": "PO Box 302792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78400, "Improved_V": 287800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.72568979499999, "SHAPE_Area": 1114.5341381000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357035.511200003325939, 256992.334600001573563 ], [ 357009.841600000858307, 256986.729499999433756 ], [ 357001.238200001418591, 256983.697399999946356 ], [ 357001.529700003564358, 256996.192499998956919 ], [ 357000.953199997544289, 257013.450599998235703 ], [ 357012.010200001299381, 257016.144099999219179 ], [ 357034.531199999153614, 257022.872299998998642 ], [ 357042.838899999856949, 256994.231499999761581 ], [ 357042.9037000015378, 256993.948800001293421 ], [ 357035.511200003325939, 256992.334600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105301151600", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-2", "ACRE": ".26", "LONGITUDE": -64.94778834, "LATITUDE": 18.34288427, "OBJECTID_1": 9514, "PARCEL_NO_": "105301151600", "Tax_Legal_": "ALTONA & WELGUNST 220-2 KRONP. QTR.", "Name": "EDWARD, CHRISTIANE", "Address": "PO Box 307582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51400, "Improved_V": 162100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.87928416099999, "SHAPE_Area": 1132.3157834199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357000.959499999880791, 257013.263900000602007 ], [ 357000.341300003230572, 257031.767000000923872 ], [ 356999.908399999141693, 257044.721400000154972 ], [ 357010.921599999070168, 257049.276799999177456 ], [ 357030.203000001609325, 257057.667300000786781 ], [ 357033.48929999768734, 257050.517000000923872 ], [ 357034.531199999153614, 257022.87220000103116 ], [ 357012.010200001299381, 257016.144000001251698 ], [ 357000.959499999880791, 257013.263900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105301152100", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-4", "ACRE": ".23", "LONGITUDE": -64.94795319000001, "LATITUDE": 18.34349183, "OBJECTID_1": 9519, "PARCEL_NO_": "105301152100", "Tax_Legal_": "ALTONA & WELGUNST 220-8 SOUTHSIDE QTR.", "Name": "HUGGINS (LIFE ESTATE), JACQUELINE C A", "Address": "PO Box 8564", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48200, "Improved_V": 43300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.861992929, "SHAPE_Area": 1723.8743612400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357025.470100000500679, 257089.379399999976158 ], [ 356988.260600000619888, 257073.039599999785423 ], [ 356988.139799997210503, 257073.155000001192093 ], [ 356980.848899997770786, 257077.106100000441074 ], [ 356979.988600000739098, 257083.431800000369549 ], [ 356981.443000003695488, 257102.019999999552965 ], [ 356983.820600003004074, 257106.894600000232458 ], [ 356984.603500001132488, 257109.645199999213219 ], [ 356986.207099996507168, 257110.713899999856949 ], [ 356987.763999998569489, 257117.270500000566244 ], [ 356989.35869999974966, 257119.394499998539686 ], [ 356990.931699998676777, 257124.051399998366833 ], [ 356990.031900003552437, 257135.020899999886751 ], [ 356993.323600001633167, 257141.152800001204014 ], [ 356994.626599997282028, 257144.095100000500679 ], [ 356999.709499999880791, 257134.888999998569489 ], [ 357022.600900001823902, 257098.135000001639128 ], [ 357025.470100000500679, 257089.379399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105301151700", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-3", "ACRE": ".22", "LONGITUDE": -64.94783111, "LATITUDE": 18.34318006, "OBJECTID_1": 9515, "PARCEL_NO_": "105301151700", "Tax_Legal_": "ALTONA & WELGUNST 220-3 CROWN PRINCE QTR.", "Name": "LETTSOME, JOSETTE", "Address": "P.O. BOX 5523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75100, "Improved_V": 208100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.10489833899999, "SHAPE_Area": 1098.5026499400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356988.260600000619888, 257073.039599999785423 ], [ 357025.470100000500679, 257089.379399999976158 ], [ 357030.051899999380112, 257075.397900000214577 ], [ 357030.203000001609325, 257057.667199999094009 ], [ 357010.921599999070168, 257049.276799999177456 ], [ 356999.911799997091293, 257044.621300000697374 ], [ 356999.072300001978874, 257056.528799999505281 ], [ 356996.48030000180006, 257063.763000000268221 ], [ 356991.501199997961521, 257069.940699998289347 ], [ 356988.260600000619888, 257073.039599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93193213000001, "LATITUDE": 18.34133464, "OBJECTID_1": 12113, "PARCEL_NO_": "105401440200", "Tax_Legal_": "DRONNINGENS GADE REM 34&34A QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1833800, "Improved_V": 664000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.47784078500001, "SHAPE_Area": 1084.6114383399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358702.218099996447563, 256829.362900000065565 ], [ 358706.859300002455711, 256811.96059999987483 ], [ 358704.445799998939037, 256811.307599999010563 ], [ 358700.263199999928474, 256829.005199998617172 ], [ 358678.480899997055531, 256924.874499998986721 ], [ 358689.753100000321865, 256926.866599999368191 ], [ 358709.924500003457069, 256830.772999998182058 ], [ 358702.218099996447563, 256829.362900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.931742, "LATITUDE": 18.34084431, "OBJECTID_1": 12114, "PARCEL_NO_": "105401440300", "Tax_Legal_": "DRONNINGENS GADE REM 35A&35 QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1921200, "Improved_V": 197900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.382458065599998, "SHAPE_Area": 128.243904423 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358720.539700001478195, 256815.239000000059605 ], [ 358716.934799998998642, 256814.230099998414516 ], [ 358713.297200001776218, 256813.490899998694658 ], [ 358709.924500003457069, 256830.772999998182058 ], [ 358717.17230000346899, 256831.887800000607967 ], [ 358720.539700001478195, 256815.239000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93184653, "LATITUDE": 18.34137425, "OBJECTID_1": 12114, "PARCEL_NO_": "105401440300", "Tax_Legal_": "DRONNINGENS GADE REM 35A&35 QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1921200, "Improved_V": 197900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.822707396, "SHAPE_Area": 837.48535547799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358717.17230000346899, 256831.887800000607967 ], [ 358709.924500003457069, 256830.772999998182058 ], [ 358689.753100000321865, 256926.866599999368191 ], [ 358699.311599999666214, 256927.924400001764297 ], [ 358707.21339999884367, 256885.985100001096725 ], [ 358714.761600002646446, 256845.922800000756979 ], [ 358717.17230000346899, 256831.887800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303330100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94243174, "LATITUDE": 18.33467038, "OBJECTID_1": 11300, "PARCEL_NO_": "105303330100", "Tax_Legal_": "CAREENING HOLE 2 CROWN PRINCE ST THOS", "Name": "SORAYA DIASE COFFELT TRUST", "Address": "7003 Estae Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1000200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 996.647580565, "SHAPE_Area": 43155.371609299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357462.614500001072884, 256096.109099999070168 ], [ 357404.186099998652935, 256131.283300001174212 ], [ 357385.502599999308586, 256147.384500000625849 ], [ 357376.566600002348423, 256155.121800001710653 ], [ 357374.9037000015378, 256161.018899999558926 ], [ 357390.201999999582767, 256163.677200000733137 ], [ 357412.746399998664856, 256167.661400001496077 ], [ 357430.45830000191927, 256170.972800001502037 ], [ 357451.391800001263618, 256174.732700001448393 ], [ 357487.623800002038479, 256181.15089999884367 ], [ 357527.916000001132488, 256184.224899999797344 ], [ 357559.344200000166893, 256186.593100000172853 ], [ 357585.131800003349781, 256188.492899999022484 ], [ 357606.889700002968311, 256190.148600000888109 ], [ 357638.910199999809265, 256217.641800001263618 ], [ 357687.398299999535084, 256259.338500000536442 ], [ 357730.861000001430511, 256203.874600000679493 ], [ 357705.346100002527237, 256180.821899998933077 ], [ 357742.509499996900558, 256077.901399999856949 ], [ 357715.919200003147125, 256075.572799999266863 ], [ 357704.661399997770786, 256071.892099998891354 ], [ 357696.646799996495247, 256066.126899998635054 ], [ 357687.089699998497963, 256052.116500001400709 ], [ 357680.678800001740456, 256047.420000001788139 ], [ 357664.581299997866154, 256043.910799998790026 ], [ 357630.714400000870228, 256043.844700001180172 ], [ 357618.628700003027916, 256042.69029999896884 ], [ 357613.812399998307228, 256040.117800001055002 ], [ 357609.012299999594688, 256035.645500000566244 ], [ 357608.220299996435642, 256033.950300000607967 ], [ 357603.398599997162819, 256032.010999999940395 ], [ 357597.759900003671646, 256031.331500001251698 ], [ 357589.682300001382828, 256032.954199999570847 ], [ 357583.980599999427795, 256039.662500001490116 ], [ 357579.135499998927116, 256040.467199999839067 ], [ 357573.493199996650219, 256040.209899999201298 ], [ 357563.038099996745586, 256036.958000000566244 ], [ 357556.542599998414516, 256042.182199999690056 ], [ 357550.89299999922514, 256042.769200000911951 ], [ 357536.391999997198582, 256041.172899998724461 ], [ 357530.738799996674061, 256042.182100001722574 ], [ 357520.955200001597404, 256054.767599999904633 ], [ 357518.521899998188019, 256056.4364 ], [ 357516.092100001871586, 256057.683100000023842 ], [ 357507.228100001811981, 256056.977299999445677 ], [ 357502.370399996638298, 256059.259500000625849 ], [ 357498.27589999884367, 256066.61430000141263 ], [ 357493.277999997138977, 256085.360700000077486 ], [ 357490.837499998509884, 256087.8739 ], [ 357480.294299997389317, 256094.964800000190735 ], [ 357471.424900002777576, 256094.892200000584126 ], [ 357464.96000000089407, 256096.528000000864267 ], [ 357462.614500001072884, 256096.109099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105302033000", "MAP": "A9-502B-T97", "PARCEL_NAM": "REM STAABI", "ACRE": "0.53", "LONGITUDE": -64.93755386, "LATITUDE": 18.34641799, "OBJECTID_1": 9649, "PARCEL_NO_": "105302033000", "Tax_Legal_": "REM STAABI 9A GREAT NORTHSIDE", "Name": "DE JONGH, MAVIS", "Address": "1000 Estate Staabi", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1203400, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 343.05621662499999, "SHAPE_Area": 3384.5237722900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358084.001500003039837, 257411.329100001603365 ], [ 358083.934799998998642, 257419.4983000010252 ], [ 358070.210699997842312, 257444.030000001192093 ], [ 358062.933899998664856, 257467.654199998825788 ], [ 358062.884199999272823, 257473.7347999997437 ], [ 358064.122500002384186, 257479.825800001621246 ], [ 358061.737999998033047, 257495.808800000697374 ], [ 358063.298199996352196, 257501.902499999850988 ], [ 358062.329700000584126, 257502.214600000530481 ], [ 358076.794799998402596, 257505.213199999183416 ], [ 358080.032799996435642, 257502.999299999326468 ], [ 358082.064000003039837, 257490.853999998420477 ], [ 358084.403999999165535, 257480.311500001698732 ], [ 358084.487700000405312, 257470.070599999278784 ], [ 358083.571400001645088, 257463.982200000435114 ], [ 358083.948299996554852, 257457.264199998229742 ], [ 358093.691100001335144, 257447.102200001478195 ], [ 358113.789300002157688, 257430.623799998313189 ], [ 358124.17339999973774, 257420.787099998444319 ], [ 358135.26690000295639, 257402.954900000244379 ], [ 358144.695799998939037, 257389.142200000584126 ], [ 358140.155699998140335, 257390.569200001657009 ], [ 358120.881599999964237, 257381.334499999880791 ], [ 358111.216600000858307, 257379.988800000399351 ], [ 358103.092299997806549, 257387.099500000476837 ], [ 358100.42509999871254, 257413.027199998497963 ], [ 358084.001500003039837, 257411.329100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302033300", "MAP": "A9-502A-T97", "PARCEL_NAM": "10", "ACRE": ".06", "LONGITUDE": -64.93738774000001, "LATITUDE": 18.3457566, "OBJECTID_1": 9652, "PARCEL_NO_": "105302033300", "Tax_Legal_": "STAABI 10 9A GREAT NORTHSIDE QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.993274126, "SHAPE_Area": 524.758434642 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358123.514499999582767, 257356.23589999973774 ], [ 358120.877999998629093, 257354.999499998986721 ], [ 358124.271200001239777, 257347.774500001221895 ], [ 358114.521300002932549, 257346.790699999779463 ], [ 358106.653200000524521, 257345.996800001710653 ], [ 358104.749700002372265, 257367.968800000846386 ], [ 358103.092299997806549, 257387.099500000476837 ], [ 358110.433700002729893, 257377.238200001418591 ], [ 358115.615099996328354, 257366.205600000917912 ], [ 358117.778599999845028, 257366.954700000584126 ], [ 358125.012000001966953, 257369.758099999278784 ], [ 358129.938000001013279, 257359.454900000244379 ], [ 358123.514499999582767, 257356.23589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105302033000", "MAP": "A9-502A/B-T97", "PARCEL_NAM": "REM STAABI", "ACRE": "12.83", "LONGITUDE": -64.93870929000001, "LATITUDE": 18.34749743, "OBJECTID_1": 9649, "PARCEL_NO_": "105302033000", "Tax_Legal_": "REM STAABI 9A GREAT NORTHSIDE", "Name": "DE JONGH, MAVIS", "Address": "1000 Estate Staabi", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1203400, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2069.4893531600001, "SHAPE_Area": 42615.798509699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358215.9358000010252, 257298.097199998795986 ], [ 358210.714500002563, 257297.553199999034405 ], [ 358208.653800003230572, 257300.992899999022484 ], [ 358207.752199999988079, 257312.173500001430511 ], [ 358207.70719999819994, 257317.450500000268221 ], [ 358206.031700000166893, 257324.824999999254942 ], [ 358201.098499998450279, 257335.972600001841784 ], [ 358197.014799997210503, 257342.060899998992682 ], [ 358184.801399998366833, 257355.893100000917912 ], [ 358177.474500000476837, 257364.065799999982119 ], [ 358169.350199997425079, 257371.176500000059605 ], [ 358154.762900002300739, 257379.711899999529123 ], [ 358141.016000002622604, 257384.243500001728535 ], [ 358135.198600001633167, 257378.726500000804663 ], [ 358137.530100002884865, 257363.962699998170137 ], [ 358144.694499999284744, 257348.039700001478195 ], [ 358149.796999998390675, 257338.492600001394749 ], [ 358142.9037000015378, 257345.8277000002563 ], [ 358126.92400000244379, 257377.513799998909235 ], [ 358118.529200002551079, 257373.504799999296665 ], [ 358117.778599999845028, 257366.954700000584126 ], [ 358115.615099996328354, 257366.205600000917912 ], [ 358113.293099999427795, 257371.149599999189377 ], [ 358110.433700002729893, 257377.238200001418591 ], [ 358103.092299997806549, 257387.099500000476837 ], [ 358111.216600000858307, 257379.988800000399351 ], [ 358120.881599999964237, 257381.334499999880791 ], [ 358140.155699998140335, 257390.569200001657009 ], [ 358144.695799998939037, 257389.142099998891354 ], [ 358135.26690000295639, 257402.954900000244379 ], [ 358124.17339999973774, 257420.787099998444319 ], [ 358113.789300002157688, 257430.623799998313189 ], [ 358093.691100001335144, 257447.102200001478195 ], [ 358083.948299996554852, 257457.264199998229742 ], [ 358083.571400001645088, 257463.982200000435114 ], [ 358084.487700000405312, 257470.070599999278784 ], [ 358084.403999999165535, 257480.311500001698732 ], [ 358082.064000003039837, 257490.853999998420477 ], [ 358080.032799996435642, 257502.999299999326468 ], [ 358076.794799998402596, 257505.213199999183416 ], [ 358062.329700000584126, 257502.214600000530481 ], [ 358063.298199996352196, 257501.902499999850988 ], [ 358061.737999998033047, 257495.808800000697374 ], [ 358064.122500002384186, 257479.825800001621246 ], [ 358062.884199999272823, 257473.7347999997437 ], [ 358062.933899998664856, 257467.654199998825788 ], [ 358070.210699997842312, 257444.030000001192093 ], [ 358083.934799998998642, 257419.4983000010252 ], [ 358084.001500003039837, 257411.329100001603365 ], [ 358060.010799996554852, 257408.848700001835823 ], [ 358060.029500000178814, 257408.972500000149012 ], [ 358077.972599998116493, 257421.383799999952316 ], [ 358066.984600000083447, 257437.924699999392033 ], [ 358057.735500000417233, 257463.019900001585484 ], [ 358058.1216000020504, 257471.113600000739098 ], [ 358016.157499998807907, 257459.983500000089407 ], [ 358015.31360000371933, 257452.560300000011921 ], [ 358009.030900001525879, 257446.665800001472235 ], [ 358006.806699998676777, 257442.152899999171495 ], [ 358006.16330000013113, 257437.877599999308586 ], [ 358011.500900000333786, 257421.065799999982119 ], [ 358017.651199996471405, 257415.497499998658895 ], [ 358022.889700002968311, 257410.820799998939037 ], [ 358028.674400001764297, 257405.959199998527765 ], [ 358028.573100000619888, 257405.598299998790026 ], [ 357989.502099998295307, 257401.558699999004602 ], [ 357994.394900001585484, 257377.096700001507998 ], [ 357994.155199997127056, 257376.914599999785423 ], [ 357970.296800002455711, 257393.844700001180172 ], [ 357946.626900002360344, 257393.066899999976158 ], [ 357946.604800000786781, 257393.206999998539686 ], [ 357940.807700000703335, 257411.10249999910593 ], [ 357939.144799999892712, 257416.999499998986721 ], [ 357944.828500002622604, 257412.401999998837709 ], [ 357946.451899997889996, 257411.148699998855591 ], [ 357953.757299996912479, 257405.50899999961257 ], [ 357962.680699996650219, 257399.249200001358986 ], [ 357977.023500002920628, 257419.420499999076128 ], [ 357982.498599998652935, 257439.308100000023842 ], [ 357974.225100003182888, 257463.938299998641014 ], [ 357963.466099999845028, 257496.358600001782179 ], [ 357900.320200003683567, 257525.605999998748302 ], [ 357898.065099999308586, 257533.11939999833703 ], [ 357860.549699999392033, 257608.982299998402596 ], [ 357856.80349999666214, 257609.693300001323223 ], [ 357853.63570000231266, 257610.294599998742342 ], [ 357810.295199997723103, 257681.078400000929832 ], [ 357801.181199997663498, 257709.712600000202656 ], [ 357871.197300001978874, 257725.906500000506639 ], [ 357938.450300000607967, 257687.826900001615286 ], [ 357985.934000000357628, 257587.053199999034405 ], [ 358032.447400003671646, 257595.062399998307228 ], [ 358032.798900000751019, 257592.762600000947714 ], [ 358061.386699996888638, 257549.933499999344349 ], [ 358097.321199998259544, 257496.6097999997437 ], [ 358100.57880000025034, 257492.836800001561642 ], [ 358109.570500001311302, 257478.556000001728535 ], [ 358118.556900002062321, 257464.908500000834465 ], [ 358140.593400001525879, 257433.846999999135733 ], [ 358151.170800000429153, 257422.745600000023842 ], [ 358170.671499997377396, 257405.384500000625849 ], [ 358221.292300000786781, 257331.916000001132488 ], [ 358214.164899997413158, 257316.658900000154972 ], [ 358213.491700001060963, 257301.032499998807907 ], [ 358215.9358000010252, 257298.097199998795986 ] ], [ [ 358166.929700002074242, 257392.066300000995398 ], [ 358153.900799997150898, 257386.248799998313189 ], [ 358153.95099999755621, 257386.224500000476837 ], [ 358168.475599996745586, 257379.190900001674891 ], [ 358178.214299999177456, 257371.88230000063777 ], [ 358166.929700002074242, 257392.066300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404181800", "MAP": null, "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.9181099, "LATITUDE": 18.33416028, "OBJECTID_1": 19593, "PARCEL_NO_": "105404181800", "Tax_Legal_": "6 ESTATE THOMAS 6H NEW QTR.", "Name": "TRAMWAY PROP INC", "Address": "9617 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 563600, "Improved_V": 331400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.35706281099999, "SHAPE_Area": 2977.7946113399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360189.147399999201298, 256064.362100001424551 ], [ 360181.446400001645088, 256056.894400000572205 ], [ 360119.400399997830391, 256101.484099999070168 ], [ 360128.267599999904633, 256111.570900000631809 ], [ 360137.038099996745586, 256123.252900000661612 ], [ 360138.620200000703335, 256126.854400001466274 ], [ 360141.508100003004074, 256133.428599998354912 ], [ 360144.161300003528595, 256131.622699998319149 ], [ 360150.127499997615814, 256127.561999998986721 ], [ 360164.459200002253056, 256117.807399999350309 ], [ 360196.016999997198582, 256096.328299999237061 ], [ 360199.871899999678135, 256093.704599998891354 ], [ 360196.972000002861023, 256080.279899999499321 ], [ 360189.147399999201298, 256064.362100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404181900", "MAP": "D9-3287-T85", "PARCEL_NAM": "17-1", "ACRE": ".92", "LONGITUDE": -64.9184715, "LATITUDE": 18.33383132, "OBJECTID_1": 19594, "PARCEL_NO_": "105404181900", "Tax_Legal_": "17-1 ESTATE THOMAS 6H NEW QTR.", "Name": "TRAMWAY PROPERTIES, INC.", "Address": "713 Indian Hills Dr", "City": "Tuscaloosa", "State": "Alabama", "Zip": 35406, "Country": "United States", "Land_Value": 695900, "Improved_V": 379600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.910883689, "SHAPE_Area": 3862.2246353099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360141.162500001490116, 256017.739799998700619 ], [ 360141.180500000715256, 256015.629000000655651 ], [ 360080.160700000822544, 256051.522900000214577 ], [ 360083.565399996936321, 256058.220600001513958 ], [ 360090.730599999427795, 256069.045000001788139 ], [ 360110.697800002992153, 256091.584300000220537 ], [ 360119.400399997830391, 256101.484099999070168 ], [ 360162.381099998950958, 256070.595800001174212 ], [ 360159.093999996781349, 256067.115800000727177 ], [ 360145.343199998140335, 256052.107500001788139 ], [ 360162.166199997067451, 256038.182000000029802 ], [ 360141.162500001490116, 256017.739799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404182300", "MAP": "D9-3287-T85", "PARCEL_NAM": "17-2", "ACRE": ".15", "LONGITUDE": -64.91810537000001, "LATITUDE": 18.33379542, "OBJECTID_1": 19598, "PARCEL_NO_": "105404182300", "Tax_Legal_": "17-2 ESTATE THOMAS NEW QUARTER", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 196000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.326765208899999, "SHAPE_Area": 585.22760066299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360166.754100002348423, 256042.647199999541044 ], [ 360162.166199997067451, 256038.182000000029802 ], [ 360145.343199998140335, 256052.107500001788139 ], [ 360159.093999996781349, 256067.115800000727177 ], [ 360162.381099998950958, 256070.595800001174212 ], [ 360181.446400001645088, 256056.894400000572205 ], [ 360176.471199996769428, 256052.069899998605251 ], [ 360166.754100002348423, 256042.647199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503011400", "MAP": "D9-9214-T017", "PARCEL_NAM": "34 REM", "ACRE": ".38", "LONGITUDE": -64.91049181, "LATITUDE": 18.33932129, "OBJECTID_1": 19966, "PARCEL_NO_": "105503011400", "Tax_Legal_": "34 REM ESTATE THOMAS NEW QUARTER", "Name": "ROBERT G. MORON & LUZ A. MORON REVOC FAMILY TRUST", "Address": "PO BOX 11022", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.77528113100001, "SHAPE_Area": 1512.560342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360981.765900000929832, 256663.647900000214577 ], [ 360947.14919999986887, 256655.987700000405312 ], [ 360937.857600003480911, 256661.779100000858307 ], [ 360926.668700002133846, 256668.215300001204014 ], [ 360916.964199997484684, 256671.513300001621246 ], [ 360917.748999997973442, 256674.05290000140667 ], [ 360993.412900000810623, 256689.870900001376867 ], [ 361001.037000000476837, 256677.532600000500679 ], [ 360989.271300002932549, 256669.055399999022484 ], [ 360981.772399999201298, 256663.652499999850988 ], [ 360981.765900000929832, 256663.647900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503043700", "MAP": "D9-5020-T90", "PARCEL_NAM": "32A-1", "ACRE": "0.003", "LONGITUDE": -64.91020746, "LATITUDE": 18.33926993, "OBJECTID_1": 20161, "PARCEL_NO_": "105503043700", "Tax_Legal_": "32A-1&34A-1 EST.THOMAS 6A NEW QTR.", "Name": "MONSANTO FAMILY TRUST", "Address": "PO Box 7513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.410314614000001, "SHAPE_Area": 47.827416243499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360981.790500000119209, 256663.653299998492002 ], [ 360981.772399999201298, 256663.652499999850988 ], [ 360989.271300002932549, 256669.055399999022484 ], [ 361007.296400003135204, 256669.297400001436472 ], [ 360981.790500000119209, 256663.653299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303291200", "MAP": "D9-4958-T90", "PARCEL_NAM": "2-11", "ACRE": ".08", "LONGITUDE": -64.94110833000001, "LATITUDE": 18.33845879, "OBJECTID_1": 11239, "PARCEL_NO_": "105303291200", "Tax_Legal_": "2-11 DEMARARA KRONPRINDSENS QUARTER", "Name": "CARABALLO, ROBERTO", "Address": "PO Box 5442", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22000, "Improved_V": 33000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.289771917400003, "SHAPE_Area": 394.88275652300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357717.607299998402596, 256539.992400001734495 ], [ 357716.76860000193119, 256543.785300001502037 ], [ 357727.063699997961521, 256565.82319999858737 ], [ 357729.487999998033047, 256565.209800001233816 ], [ 357737.569099999964237, 256563.16499999910593 ], [ 357738.467200003564358, 256552.406599998474121 ], [ 357718.49099999666214, 256530.922600001096725 ], [ 357717.607299998402596, 256539.992400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303321000", "MAP": "A9-765-T011", "PARCEL_NAM": "CONS REM 30", "ACRE": "3.311", "LONGITUDE": -64.94190041, "LATITUDE": 18.33615791, "OBJECTID_1": 11284, "PARCEL_NO_": "105303321000", "Tax_Legal_": "REM HONDURAS \nCROWN PRINCE QUARTER", "Name": "William Quetel, Louis Arguin & Telarg, LLC", "Address": "PO Box 7758", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 360900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 926.89875249500005, "SHAPE_Area": 16430.655518399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357545.083700001239777, 256321.19990000128746 ], [ 357557.280599996447563, 256322.901799999177456 ], [ 357568.853500001132488, 256322.958500001579523 ], [ 357574.650100000202656, 256321.723900001496077 ], [ 357572.782499998807907, 256312.936999998986721 ], [ 357589.729500003159046, 256311.386999998241663 ], [ 357592.956500001251698, 256311.202300000935793 ], [ 357594.610500000417233, 256306.360700000077486 ], [ 357597.267800003290176, 256297.556400001049042 ], [ 357613.561999998986721, 256298.285999998450279 ], [ 357619.277099996805191, 256299.137200001627207 ], [ 357617.172899998724461, 256308.234099999070168 ], [ 357614.635200001299381, 256322.145500000566244 ], [ 357614.227799996733665, 256323.992199998348951 ], [ 357614.251199997961521, 256323.993599999696016 ], [ 357627.198100000619888, 256324.755199998617172 ], [ 357628.032999999821186, 256324.804299999028444 ], [ 357646.899099998176098, 256327.143699999898672 ], [ 357647.8766999989748, 256327.264899998903275 ], [ 357663.961800001561642, 256329.723900001496077 ], [ 357664.396200001239777, 256324.610599998384714 ], [ 357680.869099996984005, 256326.152199998497963 ], [ 357683.98369999974966, 256328.690799999982119 ], [ 357690.965400002896786, 256331.743000000715256 ], [ 357693.356200002133846, 256332.788199998438358 ], [ 357709.573499999940395, 256333.002199999988079 ], [ 357704.398699998855591, 256342.931000001728535 ], [ 357703.783699996769428, 256343.931200001388788 ], [ 357702.455899998545647, 256345.528900001198053 ], [ 357701.234999999403954, 256346.423700001090765 ], [ 357694.321199998259544, 256350.891100000590086 ], [ 357693.389499999582767, 256353.820799998939037 ], [ 357706.27250000089407, 256356.037200000137091 ], [ 357708.502700001001358, 256378.220300000160933 ], [ 357722.229800000786781, 256376.010600000619888 ], [ 357715.170800000429153, 256352.732500001788139 ], [ 357720.85809999704361, 256347.712799999862909 ], [ 357735.371699996292591, 256347.831599999219179 ], [ 357744.8783999979496, 256367.752199999988079 ], [ 357775.67119999974966, 256350.061299998313189 ], [ 357784.603500001132488, 256342.746100001037121 ], [ 357718.960600003600121, 256286.480200000107288 ], [ 357638.910199999809265, 256217.641800001263618 ], [ 357641.714699998497963, 256267.060600001364946 ], [ 357608.634300000965595, 256269.322999998927116 ], [ 357607.179899998009205, 256250.7347999997437 ], [ 357581.462399996817112, 256240.603000000119209 ], [ 357574.229000002145767, 256237.799499999731779 ], [ 357570.20099999755621, 256237.344399999827147 ], [ 357566.203599996864796, 256233.300900001078844 ], [ 357559.758500002324581, 256232.614900000393391 ], [ 357552.507100000977516, 256231.922200001776218 ], [ 357526.706900000572205, 256231.5 ], [ 357533.099899999797344, 256238.307300001382828 ], [ 357550.669699996709824, 256258.2939000017941 ], [ 357539.208700001239777, 256278.46510000154376 ], [ 357534.29169999808073, 256287.712900001555681 ], [ 357523.647799998521805, 256306.624200001358986 ], [ 357516.91950000077486, 256319.051300000399351 ], [ 357545.083700001239777, 256321.19990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303320500", "MAP": "G9-2710-T78", "PARCEL_NAM": "29", "ACRE": null, "LONGITUDE": -64.94231988, "LATITUDE": 18.33629958, "OBJECTID_1": 11279, "PARCEL_NO_": "105303320500", "Tax_Legal_": "HONDURAS 29 S S QTR", "Name": "MAGRAS, AXEL L., MARIE A., and DENIS AXEL", "Address": "BOX 5120", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37900, "Improved_V": 62200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.763910689799999, "SHAPE_Area": 420.86064002199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357606.256899997591972, 256323.048900000751019 ], [ 357606.687399998307228, 256321.512600000947714 ], [ 357610.562299996614456, 256307.685199998319149 ], [ 357613.561999998986721, 256298.285999998450279 ], [ 357597.267800003290176, 256297.556400001049042 ], [ 357594.610500000417233, 256306.360700000077486 ], [ 357592.956500001251698, 256311.202300000935793 ], [ 357589.653899997472763, 256320.252300001680851 ], [ 357589.608999997377396, 256325.529199998825788 ], [ 357589.788000002503395, 256325.530699998140335 ], [ 357594.53660000115633, 256323.05799999833107 ], [ 357599.696000002324581, 256322.105500001460314 ], [ 357606.256899997591972, 256323.048900000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303322200", "MAP": "A9-765-T011", "PARCEL_NAM": "30-5", "ACRE": ".08", "LONGITUDE": -64.94220853, "LATITUDE": 18.33630945, "OBJECTID_1": 11298, "PARCEL_NO_": "105303322200", "Tax_Legal_": "30-5 HONDURAS KRONPRINDENSENS QUARTER", "Name": "MAGRAS, AXEL L., MARIE A., and DENIS AXEL", "Address": "BOX 5120", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.001579271400004, "SHAPE_Area": 175.99354795100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357606.281000003218651, 256323.052400000393391 ], [ 357611.840400002896786, 256323.851799998432398 ], [ 357614.227799996733665, 256323.992199998348951 ], [ 357614.635200001299381, 256322.145500000566244 ], [ 357617.172899998724461, 256308.234099999070168 ], [ 357619.277099996805191, 256299.137200001627207 ], [ 357613.561999998986721, 256298.285999998450279 ], [ 357610.562299996614456, 256307.685199998319149 ], [ 357606.687399998307228, 256321.512600000947714 ], [ 357606.256899997591972, 256323.048900000751019 ], [ 357606.281000003218651, 256323.052400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303151700", "MAP": null, "PARCEL_NAM": "107", "ACRE": null, "LONGITUDE": -64.9439456, "LATITUDE": 18.33739085, "OBJECTID_1": 11050, "PARCEL_NO_": "105303151700", "Tax_Legal_": "ALTONA&WELGUNST 107 CROWN PRINCE QTR", "Name": "THOMAS A & FLORINDA JAMES REVOCABLE TRUST", "Address": "5516 Daywalt Ave", "City": "Baltimore", "State": "Maryland", "Zip": 21206, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.102796309599995, "SHAPE_Area": 328.07857628 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357429.437700003385544, 256423.477000001817942 ], [ 357408.952600002288818, 256423.686799999326468 ], [ 357421.763700000941753, 256434.3462999984622 ], [ 357436.463799998164177, 256440.535599999129772 ], [ 357438.636900000274181, 256441.450500000268221 ], [ 357438.853299997746944, 256441.811500001698732 ], [ 357440.031800001859665, 256423.223799999803305 ], [ 357429.437700003385544, 256423.477000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303270100", "MAP": "D9-7803-T006", "PARCEL_NAM": "26-1", "ACRE": ".04", "LONGITUDE": -64.94149251, "LATITUDE": 18.33714518, "OBJECTID_1": 11200, "PARCEL_NO_": "105303270100", "Tax_Legal_": "2,26-1,27-1 & 25 ESTATE HONDURAS KRONPRINDSENS QTR.", "Name": "NORMANDIE INVESTMENT PARTNERS LLC", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 350400, "Improved_V": 189600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.173110000299999, "SHAPE_Area": 209.17662508000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357696.000799998641014, 256397.528000000864267 ], [ 357680.11089999973774, 256398.041799999773502 ], [ 357681.881599999964237, 256412.964400000870228 ], [ 357693.850599996745586, 256412.650400001555681 ], [ 357696.000799998641014, 256397.528000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303270100", "MAP": "D9-7803-T006", "PARCEL_NAM": "27-1", "ACRE": ".07", "LONGITUDE": -64.9413556, "LATITUDE": 18.33716934, "OBJECTID_1": 11200, "PARCEL_NO_": "105303270100", "Tax_Legal_": "2,26-1,27-1 & 25 ESTATE HONDURAS KRONPRINDSENS QTR.", "Name": "NORMANDIE INVESTMENT PARTNERS LLC", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 350400, "Improved_V": 189600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.196976231199997, "SHAPE_Area": 229.352571625 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357708.429399996995926, 256417.199599999934435 ], [ 357711.881099998950958, 256404.242800001055002 ], [ 357707.456900000572205, 256402.402199998497963 ], [ 357696.000799998641014, 256397.528000000864267 ], [ 357693.850599996745586, 256412.650400001555681 ], [ 357708.429399996995926, 256417.199599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303270200", "MAP": "C9-36-T61", "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.94135504, "LATITUDE": 18.3370243, "OBJECTID_1": 11201, "PARCEL_NO_": "105303270200", "Tax_Legal_": "HONDURAS 9 CROWN PRINCE QTR", "Name": "HICKSON SMITH, MARLITA", "Address": "PO Box 897", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 13400, "Improved_V": 19800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.340618341700001, "SHAPE_Area": 203.49945249800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357708.373199999332428, 256393.417899999767542 ], [ 357709.263999998569489, 256383.503800000995398 ], [ 357696.36150000244379, 256383.529399998486042 ], [ 357696.000799998641014, 256397.528000000864267 ], [ 357707.456900000572205, 256402.402199998497963 ], [ 357708.373199999332428, 256393.417899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105303270300", "MAP": "D3-248-T59", "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.94117708, "LATITUDE": 18.33704932, "OBJECTID_1": 11203, "PARCEL_NO_": "105303270300", "Tax_Legal_": "HONDURAS 3 CROWN PRINCE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62200, "Improved_V": 271000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.732181530600002, "SHAPE_Area": 364.28103007099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357727.836199998855591, 256380.489399999380112 ], [ 357714.105499997735023, 256383.121300000697374 ], [ 357714.022799998521805, 256392.830899998545647 ], [ 357714.20549999922514, 256405.945000000298023 ], [ 357716.640000000596046, 256407.448600001633167 ], [ 357728.917400002479553, 256407.238699998706579 ], [ 357728.466300003230572, 256401.181800000369549 ], [ 357728.534599997103214, 256393.160799998790026 ], [ 357727.836199998855591, 256380.489399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303252700", "MAP": "D9-7810-T006", "PARCEL_NAM": "4B CONS", "ACRE": ".119", "LONGITUDE": -64.94369978, "LATITUDE": 18.33723886, "OBJECTID_1": 11166, "PARCEL_NO_": "105303252700", "Tax_Legal_": "4P & 4B ESTATE HONDURAS KRONPRINDSEN'S QTR.", "Name": "FARRINGTON, SYBIL", "Address": "PO Box 304601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 25700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.525091494600005, "SHAPE_Area": 521.80677991100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357441.489500001072884, 256423.174400001764297 ], [ 357457.394900001585484, 256423.952899999916553 ], [ 357464.264300003647804, 256423.195199999958277 ], [ 357471.259999997913837, 256421.716600000858307 ], [ 357468.65089999884367, 256418.287599999457598 ], [ 357460.786399997770786, 256399.059399999678135 ], [ 357457.534299999475479, 256400.230999998748302 ], [ 357450.256099998950958, 256402.7043999992311 ], [ 357442.080099999904633, 256405.518500000238419 ], [ 357441.489500001072884, 256423.174400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303300500", "MAP": "F9-366-T59", "PARCEL_NAM": "5B", "ACRE": null, "LONGITUDE": -64.94404173, "LATITUDE": 18.33610792, "OBJECTID_1": 11252, "PARCEL_NO_": "105303300500", "Tax_Legal_": "HONDURAS 5B-(97) KROMP QTR", "Name": "ADINA WILLIAMS FAMILY REVOCABLE TRUST", "Address": "3582 Honduras 5B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28900, "Improved_V": 88200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.512343727, "SHAPE_Area": 658.313341057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357431.647799998521805, 256305.577300000935793 ], [ 357430.839199997484684, 256275.317699998617172 ], [ 357414.255400002002716, 256274.487100001424551 ], [ 357407.806699998676777, 256274.223200000822544 ], [ 357403.775200001895428, 256274.190200001001358 ], [ 357410.015299998223782, 256298.9391999989748 ], [ 357431.647799998521805, 256305.577300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105303301400", "MAP": "D9-7871-T006", "PARCEL_NAM": "1-D", "ACRE": ".09", "LONGITUDE": -64.94386934000001, "LATITUDE": 18.33614347, "OBJECTID_1": 11263, "PARCEL_NO_": "105303301400", "Tax_Legal_": "HONDURAS ESTATE 1D CROWN PRINCE QTR.", "Name": "WILLIAMS, ADINA", "Address": "Estate Honduras No", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.374239231499999, "SHAPE_Area": 399.20025829100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357430.839199997484684, 256275.317699998617172 ], [ 357431.647799998521805, 256305.577300000935793 ], [ 357433.339000001549721, 256306.096200000494719 ], [ 357441.380599997937679, 256308.695099998265505 ], [ 357444.604000002145767, 256308.932599999010563 ], [ 357444.711900003254414, 256296.267900001257658 ], [ 357441.573899999260902, 256275.257699999958277 ], [ 357434.406099997460842, 256275.496399998664856 ], [ 357430.839199997484684, 256275.317699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303310200", "MAP": "C9-36-T61", "PARCEL_NAM": "1 PORTION", "ACRE": null, "LONGITUDE": -64.94387558, "LATITUDE": 18.33593508, "OBJECTID_1": 11267, "PARCEL_NO_": "105303310200", "Tax_Legal_": "HONDURAS ESTATE 1 CROWN PRINCE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 657900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.093397124, "SHAPE_Area": 101.981823607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357439.642099998891354, 256255.635200001299381 ], [ 357430.804499998688698, 256275.315999999642372 ], [ 357434.406099997460842, 256275.496399998664856 ], [ 357441.573899999260902, 256275.257699999958277 ], [ 357440.134800001978874, 256265.621899999678135 ], [ 357439.642099998891354, 256255.635200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303301600", "MAP": "D9-9101-T016", "PARCEL_NAM": "5M", "ACRE": "0.30", "LONGITUDE": -64.94400089, "LATITUDE": 18.33546617, "OBJECTID_1": 11265, "PARCEL_NO_": "105303301600", "Tax_Legal_": "5M HONDURAS NO.8C SOUTHSIDE QTR", "Name": "ADINA WILLIAMS FAMILY REVOCABLE TRUST", "Address": "3582 Honduras 5B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.844601324, "SHAPE_Area": 1041.12621401 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357441.434600003063679, 256214.046500001102686 ], [ 357432.769000001251698, 256202.00789999961853 ], [ 357423.722900003194809, 256200.166400000452995 ], [ 357405.504900000989437, 256196.660799998790026 ], [ 357412.930200003087521, 256233.784200001507998 ], [ 357442.068800002336502, 256234.255499999970198 ], [ 357442.124099999666214, 256227.773299999535084 ], [ 357441.434600003063679, 256214.046500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303300600", "MAP": "D9-9388-T019", "PARCEL_NAM": "5 REM WESTERN PORTION", "ACRE": "0.39", "LONGITUDE": -64.94455454, "LATITUDE": 18.33528911, "OBJECTID_1": 11253, "PARCEL_NO_": "105303300600", "Tax_Legal_": "5 REM HONDURAS\nNO.8C SOUTHSIDE QTR", "Name": "DANET JOSEPH, GAIL", "Address": "PO Box 302973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.74488743800001, "SHAPE_Area": 2299.1410235799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357375.520199999213219, 256255.011700000613928 ], [ 357378.226300001144409, 256254.313400000333786 ], [ 357380.63400000333786, 256251.164900001138449 ], [ 357373.596000000834465, 256207.455699998885393 ], [ 357373.596000000834465, 256203.195900000631809 ], [ 357373.040399998426437, 256194.120700001716614 ], [ 357374.151699997484684, 256189.86089999973774 ], [ 357377.115000002086163, 256186.527199998497963 ], [ 357380.63400000333786, 256187.26799999922514 ], [ 357384.351000003516674, 256187.905099999159575 ], [ 357390.201999999582767, 256163.677200000733137 ], [ 357374.9037000015378, 256161.018899999558926 ], [ 357363.652999997138977, 256156.49379999935627 ], [ 357361.241300001740456, 256155.629700001329184 ], [ 357341.55349999666214, 256194.94310000166297 ], [ 357357.482900001108646, 256224.680100001394749 ], [ 357375.520199999213219, 256255.011700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303300600", "MAP": "D9-8430-T010", "PARCEL_NAM": "5J", "ACRE": ".304", "LONGITUDE": -64.94435725, "LATITUDE": 18.33550654, "OBJECTID_1": 11253, "PARCEL_NO_": "105303300600", "Tax_Legal_": "5 REM HONDURAS\nNO.8C SOUTHSIDE QTR", "Name": "DANET JOSEPH, GAIL", "Address": "PO Box 302973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.88626895, "SHAPE_Area": 1364.4039102500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357380.63400000333786, 256187.26799999922514 ], [ 357377.115000002086163, 256186.527199998497963 ], [ 357374.151699997484684, 256189.86089999973774 ], [ 357373.040399998426437, 256194.120700001716614 ], [ 357373.596000000834465, 256203.195900000631809 ], [ 357373.596000000834465, 256207.455699998885393 ], [ 357380.63400000333786, 256251.164900001138449 ], [ 357378.226300001144409, 256254.313400000333786 ], [ 357375.520199999213219, 256255.011700000613928 ], [ 357386.842600002884865, 256274.051600001752377 ], [ 357384.583700001239777, 256255.245799999684095 ], [ 357391.746500000357628, 256242.83049999922514 ], [ 357396.3766999989748, 256233.384899999946356 ], [ 357400.451300002634525, 256221.3462999984622 ], [ 357406.933499999344349, 256218.753400001674891 ], [ 357405.637100003659725, 256210.233800001442432 ], [ 357396.932300001382828, 256207.826099999248981 ], [ 357397.169299997389317, 256195.263000000268221 ], [ 357392.116899996995926, 256194.491099998354912 ], [ 357380.63400000333786, 256194.8614999987185 ], [ 357380.63400000333786, 256187.26799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402180100", "MAP": "D9-7638-T005", "PARCEL_NAM": "1 & 3A of 6th Street", "ACRE": "0.12", "LONGITUDE": -64.91769506, "LATITUDE": 18.34006238, "OBJECTID_1": 19296, "PARCEL_NO_": "105402180100", "Tax_Legal_": "1 & 3A SIXTH STREET KING QTR.", "Name": "LESS, M.D., GARFIELD ALEXANDER", "Address": "PO Box 10727", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 119400, "Improved_V": 308600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.890330628300006, "SHAPE_Area": 522.63198094400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360186.584299996495247, 256743.851199999451637 ], [ 360192.88740000128746, 256761.212499998509884 ], [ 360196.105400003492832, 256762.083200000226498 ], [ 360215.51630000025034, 256755.276000000536442 ], [ 360208.423100002110004, 256736.008400000631809 ], [ 360207.873000003397465, 256734.44480000063777 ], [ 360191.634800001978874, 256739.353999998420477 ], [ 360185.89130000025034, 256741.88120000064373 ], [ 360186.584299996495247, 256743.851199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501020500", "MAP": "A9-657-T005", "PARCEL_NAM": "61", "ACRE": "75", "LONGITUDE": -64.91463803000001, "LATITUDE": 18.34440996, "OBJECTID_1": 19714, "PARCEL_NO_": "105501020500", "Tax_Legal_": "REM ESTATE THOMAS NO 6A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3549900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4655.9681385100002, "SHAPE_Area": 289967.43101499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360420.909400001168251, 257161.87220000103116 ], [ 360227.51349999755621, 257291.414799999445677 ], [ 360102.2246999964118, 257351.781300000846386 ], [ 359981.491800002753735, 257170.682000000029802 ], [ 359869.737300001084805, 257159.640999998897314 ], [ 359865.019000001251698, 257179.189100001007318 ], [ 359864.122800000011921, 257189.736400000751019 ], [ 359879.254699997603893, 257274.652100000530481 ], [ 359889.406900003552437, 257346.050299998372793 ], [ 359892.583800002932549, 257368.392799999564886 ], [ 359925.645199999213219, 257463.022300001233816 ], [ 359957.388800002634525, 257523.021499998867512 ], [ 359963.568000003695488, 257531.307100001722574 ], [ 359995.159699998795986, 257508.961800001561642 ], [ 360135.255400002002716, 257551.104400001466274 ], [ 360410.890799999237061, 257356.337200000882149 ], [ 360425.697700001299381, 257347.225299999117851 ], [ 360437.087600000202656, 257344.947299998253584 ], [ 360453.033399999141693, 257344.947299998253584 ], [ 360466.701300002634525, 257349.503299999982119 ], [ 360490.620099999010563, 257360.893199998885393 ], [ 360547.569499999284744, 257406.4527000002563 ], [ 360621.603799998760223, 257363.171100001782179 ], [ 360722.973899997770786, 257355.19819999858737 ], [ 360745.753700003027916, 257385.950899999588728 ], [ 360933.686899997293949, 257340.391399998217821 ], [ 360954.188699997961521, 257309.638599999248981 ], [ 361033.69709999859333, 257298.918400000780821 ], [ 361037.613300003111362, 257275.38399999961257 ], [ 361037.666299998760223, 257275.1537000015378 ], [ 361156.520700000226498, 256758.544700000435114 ], [ 361156.3496999964118, 256744.115499999374151 ], [ 361149.771899998188019, 256744.115699999034405 ], [ 361144.04167668329319, 256744.369732179387938 ], [ 361138.32148411514936, 256743.946189299487742 ], [ 361132.691163089184556, 256742.850983048469061 ], [ 361127.229299999773502, 256741.099399998784065 ], [ 361125.567965897673275, 256740.625041434454033 ], [ 361124.001400001347065, 256739.89640000090003 ], [ 361121.975100003182888, 256743.485399998724461 ], [ 361125.801700003445148, 256752.051399998366833 ], [ 361122.229800000786781, 256758.00450000166893 ], [ 361078.297600001096725, 256759.171000000089407 ], [ 361067.064099997282028, 256758.269099999219179 ], [ 361048.652800001204014, 256736.763599999248981 ], [ 360980.865000002086163, 256742.963799998164177 ], [ 360971.988399997353554, 256743.735500000417233 ], [ 360937.254000000655651, 256750.839499998837709 ], [ 360897.674599997699261, 256758.748199999332428 ], [ 360869.455399997532368, 256758.306099999696016 ], [ 360829.055299997329712, 256767.896899998188019 ], [ 360762.865800000727177, 256775.798900000751019 ], [ 360722.505199998617172, 256780.745900001376867 ], [ 360728.596000000834465, 256823.014499999582767 ], [ 360735.016000002622604, 256826.655600000172853 ], [ 360810.859700001776218, 256821.365699999034405 ], [ 360864.142800003290176, 256813.991399999707937 ], [ 360873.81139999628067, 256814.914900001138449 ], [ 360881.035800002515316, 256818.773699998855591 ], [ 360918.05179999768734, 256860.705200001597404 ], [ 361104.535300001502037, 256891.629599999636412 ], [ 361080.616499997675419, 256999.833599999547005 ], [ 361020.250100001692772, 257034.003199998289347 ], [ 360981.524499997496605, 257122.844399999827147 ], [ 360809.537100002169609, 257195.739700000733137 ], [ 360673.997299998998642, 257182.071800000965595 ], [ 360584.017200000584126, 257216.241500001400709 ], [ 360420.909400001168251, 257161.87220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501020500", "MAP": "A9-657-T005", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91137189, "LATITUDE": 18.34076076, "OBJECTID_1": 19714, "PARCEL_NO_": "105501020500", "Tax_Legal_": "REM ESTATE THOMAS NO 6A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3549900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.82413858499999, "SHAPE_Area": 489.15619320899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360899.948100000619888, 256857.703099999576807 ], [ 360911.862700000405312, 256859.678800001740456 ], [ 360879.396200001239777, 256821.926699999719858 ], [ 360873.782600000500679, 256818.292100001126528 ], [ 360864.92400000244379, 256816.953099999576807 ], [ 360810.836300000548363, 256824.109700001776218 ], [ 360811.613899998366833, 256827.493599999696016 ], [ 360864.889799997210503, 256820.963599998503923 ], [ 360870.528599999845028, 256821.64299999922514 ], [ 360873.741300001740456, 256823.146899998188019 ], [ 360899.302299998700619, 256851.642700001597404 ], [ 360899.948100000619888, 256857.703099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501021600", "MAP": null, "PARCEL_NAM": "52F-4", "ACRE": null, "LONGITUDE": -64.91155383, "LATITUDE": 18.34089207, "OBJECTID_1": 19748, "PARCEL_NO_": "105501021600", "Tax_Legal_": "52F-4 ESTATE THOMAS 6A NEW QTR.", "Name": "PRIME STORAGE ST THOMAS LLC", "Address": "83-85 Railroad Pl", "City": "Saratoga Springs", "State": "New York", "Zip": 12866, "Country": "United States", "Land_Value": 622400, "Improved_V": 1385200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.395473049, "SHAPE_Area": 3403.38754148 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360808.858400002121925, 256868.655200000852346 ], [ 360900.297499999403954, 256860.982700001448393 ], [ 360899.302299998700619, 256851.642700001597404 ], [ 360873.741300001740456, 256823.146899998188019 ], [ 360870.528599999845028, 256821.64299999922514 ], [ 360864.889799997210503, 256820.963599998503923 ], [ 360811.613899998366833, 256827.493599999696016 ], [ 360811.581500001251698, 256831.293000001460314 ], [ 360809.1554000005126, 256832.117499999701977 ], [ 360806.712999999523163, 256834.84180000051856 ], [ 360805.863600000739098, 256839.901099998503923 ], [ 360808.858400002121925, 256868.655200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501020900", "MAP": null, "PARCEL_NAM": "52F-1", "ACRE": null, "LONGITUDE": -64.91135832000001, "LATITUDE": 18.34219027, "OBJECTID_1": 19718, "PARCEL_NO_": "105501020900", "Tax_Legal_": "52F-1, 52F-2, 52F-3 & 52G-1 ESTATE THOMAS 6A NEW QUARTER", "Name": "PRIME STORAGE ST THOMAS LLC", "Address": "83-85 Railroad Pl", "City": "Saratoga Springs", "State": "New York", "Zip": 12866, "Country": "United States", "Land_Value": 1193800, "Improved_V": 8320300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.71152258699999, "SHAPE_Area": 6429.9735190900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360909.767300002276897, 256949.854600001126528 ], [ 360818.329599998891354, 256959.592300001531839 ], [ 360823.753100000321865, 257011.666499998420477 ], [ 360826.947800002992153, 257015.281300000846386 ], [ 360832.590199999511242, 257015.538600001484156 ], [ 360835.687799997627735, 257030.551600001752377 ], [ 360917.222499996423721, 257019.81980000063777 ], [ 360909.767300002276897, 256949.854600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501020900", "MAP": null, "PARCEL_NAM": "52F-2", "ACRE": null, "LONGITUDE": -64.91142926000001, "LATITUDE": 18.34168537, "OBJECTID_1": 19718, "PARCEL_NO_": "105501020900", "Tax_Legal_": "52F-1, 52F-2, 52F-3 & 52G-1 ESTATE THOMAS 6A NEW QUARTER", "Name": "PRIME STORAGE ST THOMAS LLC", "Address": "83-85 Railroad Pl", "City": "Saratoga Springs", "State": "New York", "Zip": 12866, "Country": "United States", "Land_Value": 1193800, "Improved_V": 8320300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.96253459500002, "SHAPE_Area": 3911.8568472900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360905.3766999989748, 256908.649500001221895 ], [ 360813.803599998354912, 256916.136599998921156 ], [ 360818.329599998891354, 256959.592300001531839 ], [ 360909.767300002276897, 256949.854600001126528 ], [ 360905.3766999989748, 256908.649500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501060100", "MAP": "D9-7688-T005", "PARCEL_NAM": "60-1", "ACRE": ".23", "LONGITUDE": -64.91002687, "LATITUDE": 18.34598297, "OBJECTID_1": 19784, "PARCEL_NO_": "105501060100", "Tax_Legal_": "60-1 ESTATE THOMAS 6A NEW QTR.", "Name": "DONOHOO, APRIL D. & JOSEPH T.", "Address": "6878 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.851928368, "SHAPE_Area": 764.74668414099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361018.916000001132488, 257387.74379999935627 ], [ 360993.762500002980232, 257398.123700000345707 ], [ 360996.578500002622604, 257431.915899999439716 ], [ 361012.102300003170967, 257430.328999999910593 ], [ 361018.916000001132488, 257387.74379999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105501020100", "MAP": "D9-7854-T006", "PARCEL_NAM": "45A", "ACRE": "3.50", "LONGITUDE": -64.91437049, "LATITUDE": 18.34203085, "OBJECTID_1": 19710, "PARCEL_NO_": "105501020100", "Tax_Legal_": "45 ESTATE THOMAS 6A NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3724400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 591.88814841700002, "SHAPE_Area": 13781.348862299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360649.35700000077486, 256942.900400001555681 ], [ 360647.146200001239777, 256923.343400001525879 ], [ 360641.88849999755621, 256924.148800000548363 ], [ 360405.512999996542931, 256960.35530000180006 ], [ 360409.520700000226498, 256983.367199998348951 ], [ 360413.995813540066592, 256985.403923890553415 ], [ 360418.637845476216171, 256987.024548742861953 ], [ 360423.40820000320673, 256988.215599998831749 ], [ 360480.558300003409386, 256994.565600000321865 ], [ 360582.723300002515316, 257002.938799999654293 ], [ 360605.280199997127056, 257005.445500001311302 ], [ 360632.687700003385544, 257006.514199998229742 ], [ 360641.555299997329712, 257006.797800000756979 ], [ 360648.023800000548363, 257004.739900000393391 ], [ 360650.466099999845028, 257002.015599999576807 ], [ 360652.910199999809265, 256999.080299999564886 ], [ 360653.077399998903275, 256979.449999999254942 ], [ 360649.35700000077486, 256942.900400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503064600", "MAP": "G9-1943-T71", "PARCEL_NAM": "14-41A", "ACRE": null, "LONGITUDE": -64.91246883, "LATITUDE": 18.33521886, "OBJECTID_1": 20251, "PARCEL_NO_": "105503064600", "Tax_Legal_": "14-41 ESTATE THOMAS NEW QTR", "Name": "PENNYFEATHER, GARFIELD J & ERNIE M", "Address": "14-41 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.598943612599996, "SHAPE_Area": 365.87292376800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360765.750600002706051, 256206.454500000923872 ], [ 360747.441699996590614, 256207.990899998694658 ], [ 360748.196699999272823, 256225.991200000047684 ], [ 360767.539200000464916, 256227.204999998211861 ], [ 360766.079499997198582, 256209.250100001692772 ], [ 360765.750600002706051, 256206.454500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404180500", "MAP": "D9-2603-T84", "PARCEL_NAM": "13 REM", "ACRE": "0.344", "LONGITUDE": -64.91945192, "LATITUDE": 18.33254255, "OBJECTID_1": 19582, "PARCEL_NO_": "105404180500", "Tax_Legal_": "13 EST THOMAS 6H NEW QTR", "Name": "INS. UNLTD. CARIB. INC.", "Address": "PO Box 9109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 333200, "Improved_V": 1198200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.673018961, "SHAPE_Area": 1485.48763945 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360046.827200002968311, 255922.261900000274181 ], [ 360029.386399999260902, 255886.791400000452995 ], [ 360001.016199998557568, 255904.079900000244379 ], [ 360002.495800003409386, 255919.712999999523163 ], [ 360007.215000003576279, 255933.683800000697374 ], [ 360012.794399999082088, 255941.32880000025034 ], [ 360046.827200002968311, 255922.261900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404150600", "MAP": "A9-605-T003", "PARCEL_NAM": "1a", "ACRE": ".76", "LONGITUDE": -64.91870532, "LATITUDE": 18.33472863, "OBJECTID_1": 19554, "PARCEL_NO_": "105404150600", "Tax_Legal_": "1A&2 ESTATE THOMAS 6G NEW QTR.", "Name": "PEARSONS GARDEN COOP. INC", "Address": "PEARSON GARDEN CO-OP BLDG 22", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2042500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.98278758000001, "SHAPE_Area": 3177.31453444 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360113.112099997699261, 256117.381499998271465 ], [ 360053.241599999368191, 256154.251800000667572 ], [ 360056.101199999451637, 256158.476300001144409 ], [ 360113.284800000488758, 256196.391800001263618 ], [ 360115.037900000810623, 256193.229400001466274 ], [ 360118.74210000038147, 256195.346099998801947 ], [ 360120.594200000166893, 256192.832600001245737 ], [ 360124.827500000596046, 256178.2804000005126 ], [ 360127.208800002932549, 256162.934599999338388 ], [ 360119.932700000703335, 256128.274099998176098 ], [ 360113.112099997699261, 256117.381499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402150800", "MAP": "D9-8223-T008", "PARCEL_NAM": "8 REM of 4th Street", "ACRE": ".09", "LONGITUDE": -64.91921633, "LATITUDE": 18.34008922, "OBJECTID_1": 19273, "PARCEL_NO_": "105402150800", "Tax_Legal_": "FOURTH STREET 8 KINGS QUARTER", "Name": "DONASTORG, JUANA & OTHERS", "Address": "PO Box 6411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11800, "Improved_V": 48100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.588903154500002, "SHAPE_Area": 395.14658259100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360048.94650000333786, 256738.507399998605251 ], [ 360025.371899999678135, 256746.827899999916553 ], [ 360030.802400000393391, 256761.785700000822544 ], [ 360054.259199999272823, 256753.322900000959635 ], [ 360048.94650000333786, 256738.507399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503016200", "MAP": "D9-8320-T009", "PARCEL_NAM": "37-1", "ACRE": ".007", "LONGITUDE": -64.91242626, "LATITUDE": 18.33902662, "OBJECTID_1": 19988, "PARCEL_NO_": "105503016200", "Tax_Legal_": "37-1 ESTATE THOMAS NO.6A NEW QTR", "Name": "VIANA INVESTMENTS, LLC", "Address": "NISKY CENTER BOX 618", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.249213323900001, "SHAPE_Area": 45.491940149400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360767.264700002968311, 256644.104100000113249 ], [ 360752.061499997973442, 256630.871599998325109 ], [ 360756.121100001037121, 256640.389499999582767 ], [ 360767.264700002968311, 256644.104100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503010600", "MAP": "A9-371-T90", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.91300213, "LATITUDE": 18.33888906, "OBJECTID_1": 19958, "PARCEL_NO_": "105503010600", "Tax_Legal_": "2 ESTATE THOMAS NO.6A NEW QTR", "Name": "VIANA INVESTMENTS, LLC", "Address": "NISKY CENTER BOX 618", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81900, "Improved_V": 298200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 364.52210519, "SHAPE_Area": 7291.6825699499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360764.955799996852875, 256660.652199998497963 ], [ 360767.447999998927116, 256644.165199998766184 ], [ 360756.121100001037121, 256640.389499999582767 ], [ 360743.309600003063679, 256610.352600000798702 ], [ 360726.457999996840954, 256600.715500000864267 ], [ 360708.031499996781349, 256586.632500000298023 ], [ 360691.984300002455711, 256577.212999999523163 ], [ 360681.525600001215935, 256574.383200000971556 ], [ 360666.207500003278255, 256574.046700000762939 ], [ 360647.640699997544289, 256576.42790000140667 ], [ 360658.978399999439716, 256665.391100000590086 ], [ 360738.086900003254414, 256655.483899999409914 ], [ 360746.958200000226498, 256655.345400001853704 ], [ 360757.42400000244379, 256657.330899998545647 ], [ 360764.955799996852875, 256660.652199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503016300", "MAP": "D9-8320-T009", "PARCEL_NAM": "2-1", "ACRE": ".005", "LONGITUDE": -64.91233674, "LATITUDE": 18.33915932, "OBJECTID_1": 19989, "PARCEL_NO_": "105503016300", "Tax_Legal_": "2-1 ESTATE THOMAS NO.6A NEW QTR", "Name": "ANDUZE JR., ROY A.", "Address": "PO Box 696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040696, "Country": "United States", "Land_Value": 500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.830037154400003, "SHAPE_Area": 57.804074245400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360767.447999998927116, 256644.165199998766184 ], [ 360764.955799996852875, 256660.652199998497963 ], [ 360768.411200001835823, 256662.175999999046326 ], [ 360769.084499999880791, 256656.826799999922514 ], [ 360770.548199996352196, 256645.198600001633167 ], [ 360767.447999998927116, 256644.165199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503010700", "MAP": "B9-27-T57", "PARCEL_NAM": "37", "ACRE": null, "LONGITUDE": -64.91220609, "LATITUDE": 18.33911822, "OBJECTID_1": 19959, "PARCEL_NO_": "105503010700", "Tax_Legal_": "THOMAS ESTATE 37A NEW QTR. 6A", "Name": "ANDUZE, JR. , ROY A", "Address": "PO Box 7776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.11641326, "SHAPE_Area": 1538.2754431000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360752.061499997973442, 256630.871599998325109 ], [ 360767.264700002968311, 256644.104100000113249 ], [ 360770.548199996352196, 256645.198600001633167 ], [ 360769.084499999880791, 256656.826799999922514 ], [ 360768.411200001835823, 256662.175999999046326 ], [ 360771.081000000238419, 256663.353300001472235 ], [ 360787.149700000882149, 256670.239799998700619 ], [ 360808.06530000269413, 256676.110500000417233 ], [ 360810.478799998760223, 256676.7635000012815 ], [ 360805.124099999666214, 256642.733600001782179 ], [ 360795.441200003027916, 256643.498799998313189 ], [ 360784.183399997651577, 256639.817999999970198 ], [ 360764.160499997437, 256623.82209999859333 ], [ 360743.309600003063679, 256610.352600000798702 ], [ 360752.061499997973442, 256630.871599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503075400", "MAP": "D9-8492-T010", "PARCEL_NAM": "14-64-REM", "ACRE": ".11", "LONGITUDE": -64.91448338, "LATITUDE": 18.33455775, "OBJECTID_1": 20336, "PARCEL_NO_": "105503075400", "Tax_Legal_": "14 64 ESTATE THOMAS NEW QTR", "Name": "LLOYD ONEAL NORFORD REVOCABLE TRUST", "Address": "P.O. BOX 2640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39200, "Improved_V": 170300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.85063647600001, "SHAPE_Area": 702.844422721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360542.667300000786781, 256120.239900000393391 ], [ 360539.305699996650219, 256135.505699999630451 ], [ 360528.647100001573563, 256156.855500001460314 ], [ 360547.140100002288818, 256163.128499999642372 ], [ 360560.355800002813339, 256126.295299999415874 ], [ 360542.667300000786781, 256120.239900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501020500", "MAP": "D9-8665-T012", "PARCEL_NAM": "62 REM ( EASEMENT A)", "ACRE": null, "LONGITUDE": -64.91318754, "LATITUDE": 18.34273059, "OBJECTID_1": 19714, "PARCEL_NO_": "105501020500", "Tax_Legal_": "REM ESTATE THOMAS NO 6A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3549900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.509825498, "SHAPE_Area": 547.67217051399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360656.333999998867512, 257053.682799998670816 ], [ 360693.129299998283386, 257057.047400001436472 ], [ 360693.724399998784065, 257043.910999998450279 ], [ 360692.040100000798702, 257043.941300000995398 ], [ 360678.354400001466274, 257041.29619999974966 ], [ 360667.915500000119209, 257036.144499998539686 ], [ 360657.940099999308586, 257040.531100001186132 ], [ 360656.333999998867512, 257053.682799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501021900", "MAP": "D9-8643-T012", "PARCEL_NAM": "62-3 REM", "ACRE": ".833", "LONGITUDE": -64.91570614, "LATITUDE": 18.34279782, "OBJECTID_1": 19766, "PARCEL_NO_": "105501021900", "Tax_Legal_": "62-7 & 62-3 REM EST THOMAS 6A NEW QTR", "Name": "MASJID NUR AHL-US-SUNNAH ISLAMIC CENTER INC", "Address": "PO Box 12028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 344000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.60656468, "SHAPE_Area": 3299.2398759399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360428.518299996852875, 257076.185499999672174 ], [ 360433.816299997270107, 257017.59569999948144 ], [ 360390.023800000548363, 257014.125799998641014 ], [ 360382.403599999845028, 257087.903099998831749 ], [ 360427.384300000965595, 257091.68299999833107 ], [ 360428.518299996852875, 257076.185499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301101500", "MAP": "A9-617-T003", "PARCEL_NAM": "33", "ACRE": "5.426", "LONGITUDE": -64.95023859, "LATITUDE": 18.34544195, "OBJECTID_1": 9388, "PARCEL_NO_": "105301101500", "Tax_Legal_": "ROW 34 & 33,35 LOWER JOHN DUNKOE NO. 3B & 3C LITTLE NORTHSIDE QUARTER", "Name": "QUEEN CHARLOTTE HOTEL CORPORATION INC", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 323400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.7443894341, "SHAPE_Area": 1.54121751138 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356757.750600002706051, 257329.859000001102686 ], [ 356754.748400002717972, 257303.6587999984622 ], [ 356755.775600001215935, 257313.649900000542402 ], [ 356757.750600002706051, 257329.859000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105401120100", "MAP": null, "PARCEL_NAM": "8GFA", "ACRE": null, "LONGITUDE": -64.93241471, "LATITUDE": 18.34825472, "OBJECTID_1": 11644, "PARCEL_NO_": "105401120100", "Tax_Legal_": "PCL OF 8G,8GB,8GDB&8GFA LYTTONS FANCY", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 673300, "Improved_V": 206500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.079824505, "SHAPE_Area": 1851.02997011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358616.969099998474121, 257620.958999998867512 ], [ 358617.425899997353554, 257670.89979999884963 ], [ 358619.992899999022484, 257668.918099999427795 ], [ 358627.273100003600121, 257666.233500000089407 ], [ 358635.347099997103214, 257665.032999999821186 ], [ 358658.414200000464916, 257661.271000001579523 ], [ 358658.299699999392033, 257620.046000000089407 ], [ 358649.446400001645088, 257619.129999998956919 ], [ 358639.882200002670288, 257615.283300001174212 ], [ 358640.043399997055531, 257621.368700001388788 ], [ 358616.969099998474121, 257620.958999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105401120100", "MAP": null, "PARCEL_NAM": "8GFA", "ACRE": null, "LONGITUDE": -64.9325119, "LATITUDE": 18.34795059, "OBJECTID_1": 11644, "PARCEL_NO_": "105401120100", "Tax_Legal_": "PCL OF 8G,8GB,8GDB&8GFA LYTTONS FANCY", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 673300, "Improved_V": 206500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.34776666099999, "SHAPE_Area": 538.74896728800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358616.733400002121925, 257595.195099998265505 ], [ 358616.969099998474121, 257620.958999998867512 ], [ 358640.043399997055531, 257621.368700001388788 ], [ 358639.882200002670288, 257615.283300001174212 ], [ 358639.803000003099442, 257615.251400001347065 ], [ 358637.409199997782707, 257612.276500001549721 ], [ 358636.649700000882149, 257606.781800001859665 ], [ 358635.890100002288818, 257601.287200000137091 ], [ 358636.708999998867512, 257599.816199999302626 ], [ 358639.156700000166893, 257596.458799999207258 ], [ 358640.167099997401237, 257595.94029999896884 ], [ 358631.121799997985363, 257595.652699999511242 ], [ 358616.733400002121925, 257595.195099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9217473, "LATITUDE": 18.34652795, "OBJECTID_1": 12630, "PARCEL_NO_": "105402094200", "Tax_Legal_": "ESTATE ROSS C-54 NEW QTR.", "Name": "MOYLES, JAMES", "Address": "600 Druid Rd E", "City": "CLEARWATER", "State": "Florida", "Zip": 33756, "Country": "United States", "Land_Value": 25200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.42042335, "SHAPE_Area": 1204.50328801 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359777.906599998474121, 257483.3445999994874 ], [ 359782.303099997341633, 257440.528599999845028 ], [ 359769.772100001573563, 257432.112100001424551 ], [ 359760.484200000762939, 257446.049600001424551 ], [ 359747.453699998557568, 257461.141699999570847 ], [ 359746.552100002765656, 257472.322200000286102 ], [ 359748.143100000917912, 257474.868400000035763 ], [ 359751.346799999475479, 257477.427700001746416 ], [ 359762.60639999806881, 257480.897399999201298 ], [ 359777.906599998474121, 257483.3445999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094500", "MAP": "C9-257-T80", "PARCEL_NAM": "35", "ACRE": null, "LONGITUDE": -64.9212182, "LATITUDE": 18.3464651, "OBJECTID_1": 12633, "PARCEL_NO_": "105402094500", "Tax_Legal_": "PARCEL #35 OF PARCEL C EST ROSS KINGS QUARTER", "Name": "FRANCIS, DONIA BROWN", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 56600, "Improved_V": 100900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.35935279899999, "SHAPE_Area": 2286.1421052000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359861.107799999415874, 257466.293699998408556 ], [ 359830.791599996387959, 257428.048799999058247 ], [ 359812.997000001370907, 257434.447000000625849 ], [ 359794.44820000231266, 257434.717399999499321 ], [ 359782.303099997341633, 257440.528599999845028 ], [ 359785.495999999344349, 257444.354400001466274 ], [ 359818.24379999935627, 257481.141699999570847 ], [ 359823.094200000166893, 257479.703699998557568 ], [ 359841.689800001680851, 257473.945300001651049 ], [ 359861.107799999415874, 257466.293699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094800", "MAP": "A9-516-T98", "PARCEL_NAM": "B-6", "ACRE": "1.25", "LONGITUDE": -64.92020314, "LATITUDE": 18.3471185, "OBJECTID_1": 12636, "PARCEL_NO_": "105402094800", "Tax_Legal_": "ROSS 6-B # 8 NEW QRT", "Name": "GREEN, ROSE M", "Address": "22 Sycamore St", "City": "Central Islip", "State": "New York", "Zip": 11722, "Country": "United States", "Land_Value": 128600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.185277171, "SHAPE_Area": 3915.8820986300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359940.522900000214577, 257491.143100000917912 ], [ 359884.226400002837181, 257497.513599999248981 ], [ 359892.203299999237061, 257507.711500000208616 ], [ 359899.366599999368191, 257518.747000001370907 ], [ 359903.212999999523163, 257540.521099999547005 ], [ 359904.690700002014637, 257556.365200001746416 ], [ 359906.273000001907349, 257562.806800000369549 ], [ 359978.196299999952316, 257550.921799998730421 ], [ 359957.388800002634525, 257523.021499998867512 ], [ 359940.522900000214577, 257491.143100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094900", "MAP": "A9-516-T98", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9209472, "LATITUDE": 18.34663335, "OBJECTID_1": 12637, "PARCEL_NO_": "105402094900", "Tax_Legal_": "ROSS B-7 # 8 NEW QRT", "Name": "VANTERPOOL, BENITOR", "Address": "232 Delmar Ave", "City": "Pemberton", "State": "New Jersey", "Zip": 8068, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.810724313500003, "SHAPE_Area": 75.431525600699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359849.884099997580051, 257478.485599998384714 ], [ 359861.107799999415874, 257466.293699998408556 ], [ 359841.689800001680851, 257473.945300001651049 ], [ 359849.884099997580051, 257478.485599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094900", "MAP": "A9-516-T98", "PARCEL_NAM": "B-7", "ACRE": "1.01", "LONGITUDE": -64.92050739, "LATITUDE": 18.34656567, "OBJECTID_1": 12637, "PARCEL_NO_": "105402094900", "Tax_Legal_": "ROSS B-7 # 8 NEW QRT", "Name": "VANTERPOOL, BENITOR", "Address": "232 Delmar Ave", "City": "Pemberton", "State": "New Jersey", "Zip": 8068, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.37730760300002, "SHAPE_Area": 3842.8302865300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359861.107799999415874, 257466.293699998408556 ], [ 359849.884099997580051, 257478.485599998384714 ], [ 359884.226400002837181, 257497.513599999248981 ], [ 359940.522900000214577, 257491.143100000917912 ], [ 359925.645199999213219, 257463.022300001233816 ], [ 359908.170900002121925, 257413.006799999624491 ], [ 359861.107799999415874, 257466.293699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402095000", "MAP": "A9-516-T98", "PARCEL_NAM": "B-8", "ACRE": "1.0", "LONGITUDE": -64.92078956, "LATITUDE": 18.34615696, "OBJECTID_1": 12638, "PARCEL_NO_": "105402095000", "Tax_Legal_": "ROSS B-8 # 8 NEW QRT.", "Name": "FRANICIS BROWN, DONIA", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 106600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.37094490599998, "SHAPE_Area": 3770.6348425199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359895.221000000834465, 257375.941199999302626 ], [ 359812.242799997329712, 257428.319099999964237 ], [ 359812.997000001370907, 257434.447000000625849 ], [ 359830.791599996387959, 257428.048799999058247 ], [ 359861.107799999415874, 257466.293699998408556 ], [ 359908.170900002121925, 257413.006799999624491 ], [ 359895.221000000834465, 257375.941199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402098400", "MAP": "A9-516-T98", "PARCEL_NAM": "B-9", "ACRE": "1.01", "LONGITUDE": -64.9209122, "LATITUDE": 18.34580112, "OBJECTID_1": 12670, "PARCEL_NO_": "105402098400", "Tax_Legal_": "B-9 ROSS NO. #8 NEW QTR", "Name": "THOMAS, EARL G. & JAMILA A. CROOKE", "Address": "6469 Estate Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.41330690199999, "SHAPE_Area": 2926.3095054400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359889.38289999961853, 257345.881700001657009 ], [ 359838.292000003159046, 257360.959699999541044 ], [ 359832.880699999630451, 257372.1261 ], [ 359819.657899998128414, 257409.803599998354912 ], [ 359812.242799997329712, 257428.319099999964237 ], [ 359895.221000000834465, 257375.941199999302626 ], [ 359892.583800002932549, 257368.392799999564886 ], [ 359889.38289999961853, 257345.881700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402093500", "MAP": "D9-6734-T000", "PARCEL_NAM": "C-56", "ACRE": ".403", "LONGITUDE": -64.92146225, "LATITUDE": 18.34611839, "OBJECTID_1": 12624, "PARCEL_NO_": "105402093500", "Tax_Legal_": "ROSS ESTATE C-56 No.8 NEW QTR", "Name": "THOMAS, MICHAEL A", "Address": "7614 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.95705248199999, "SHAPE_Area": 1645.6579078899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359823.2820999994874, 257399.476500000804663 ], [ 359789.995600000023842, 257388.96339999884367 ], [ 359775.655799999833107, 257421.806800000369549 ], [ 359769.619199998676777, 257432.009399998933077 ], [ 359782.303099997341633, 257440.528599999845028 ], [ 359794.44820000231266, 257434.717399999499321 ], [ 359812.997000001370907, 257434.447000000625849 ], [ 359812.242799997329712, 257428.319099999964237 ], [ 359819.657899998128414, 257409.803599998354912 ], [ 359823.2820999994874, 257399.476500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094000", "MAP": "D9-6734-T000", "PARCEL_NAM": "C-57", "ACRE": ".232", "LONGITUDE": -64.9213244, "LATITUDE": 18.34582602, "OBJECTID_1": 12629, "PARCEL_NO_": "105402094000", "Tax_Legal_": "ROSS ESTATE C-57 No.8 NEW QTR", "Name": "ROYER, HEFLYN", "Address": "PO Box 10146", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.45405334100001, "SHAPE_Area": 799.85440678099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359805.995300002396107, 257367.043499998748302 ], [ 359802.291199997067451, 257370.261500000953674 ], [ 359799.90990000218153, 257372.325199998915195 ], [ 359798.163699999451637, 257375.024000000208616 ], [ 359789.995600000023842, 257388.96339999884367 ], [ 359823.2820999994874, 257399.476500000804663 ], [ 359831.247599996626377, 257376.779599998146296 ], [ 359805.995300002396107, 257367.043499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105403020600", "MAP": "A3-30-T37", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92511023, "LATITUDE": 18.33812395, "OBJECTID_1": 19307, "PARCEL_NO_": "105403020600", "Tax_Legal_": "40BA TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 415200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.790755422, "SHAPE_Area": 842.67659778699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359440.019599996507168, 256536.163600001484156 ], [ 359439.078400000929832, 256515.940000001341105 ], [ 359425.492899999022484, 256516.251899998635054 ], [ 359423.0625, 256516.347300000488758 ], [ 359418.8108000010252, 256516.705800000578165 ], [ 359414.586499996483326, 256517.306400001049042 ], [ 359410.403399996459484, 256518.147399999201298 ], [ 359406.275200001895428, 256519.225900001823902 ], [ 359402.215300001204014, 256520.538400001823902 ], [ 359398.237000003457069, 256522.080600000917912 ], [ 359394.353299997746944, 256523.847600001841784 ], [ 359400.75959999859333, 256539.667899999767542 ], [ 359401.059600003063679, 256540.793800000101328 ], [ 359406.285199999809265, 256539.1402000002563 ], [ 359417.133100003004074, 256537.288100000470877 ], [ 359429.568599998950958, 256536.163600001484156 ], [ 359440.019599996507168, 256536.163600001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050200", "MAP": "D9-4102-T87", "PARCEL_NAM": "5-3", "ACRE": "2.2", "LONGITUDE": -64.92296135, "LATITUDE": 18.33794055, "OBJECTID_1": 19336, "PARCEL_NO_": "105404050200", "Tax_Legal_": "5-1,2,3,5-A-2&5-A-3 EST. THOMAS/KINGS QT", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16622500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 380.74433852599998, "SHAPE_Area": 7702.8767866799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359700.139700002968311, 256531.74549999833107 ], [ 359714.763099998235703, 256523.320300001651049 ], [ 359675.964800000190735, 256457.114799998700619 ], [ 359555.849399998784065, 256515.176600001752377 ], [ 359617.9983000010252, 256542.225600000470877 ], [ 359629.264300003647804, 256543.864599999040365 ], [ 359664.748800002038479, 256543.739100001752377 ], [ 359676.824199996888638, 256545.178599998354912 ], [ 359700.139700002968311, 256531.74549999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404020100", "MAP": "A3-30-T37", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9242285, "LATITUDE": 18.33821422, "OBJECTID_1": 19321, "PARCEL_NO_": "105404020100", "Tax_Legal_": "38B TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 486000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.95711676299999, "SHAPE_Area": 1526.4358019900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359483.602700002491474, 256517.948100000619888 ], [ 359479.1908999979496, 256516.962699998170137 ], [ 359475.767399996519089, 256538.618200000375509 ], [ 359482.948299996554852, 256539.603199999779463 ], [ 359485.726499997079372, 256540.727699998766184 ], [ 359489.695200003683567, 256541.6537000015378 ], [ 359499.749399997293949, 256544.564100001007318 ], [ 359510.134300000965595, 256548.665199998766184 ], [ 359518.865599997341633, 256551.707899998873472 ], [ 359524.355700001120567, 256553.758400000631809 ], [ 359529.184399999678135, 256555.676699999719858 ], [ 359536.526600003242493, 256558.719399999827147 ], [ 359542.612000003457069, 256560.968299999833107 ], [ 359544.464100003242493, 256561.431400001049042 ], [ 359544.728699997067451, 256561.629799999296665 ], [ 359544.61540000140667, 256560.722899999469519 ], [ 359544.756800003349781, 256537.158500000834465 ], [ 359490.247299998998642, 256519.894400000572205 ], [ 359488.4391999989748, 256519.321699999272823 ], [ 359487.954999998211861, 256519.170000001788139 ], [ 359483.602700002491474, 256517.948100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050200", "MAP": "D9-4102-T87", "PARCEL_NAM": "5-1", "ACRE": "1.315", "LONGITUDE": -64.92191562, "LATITUDE": 18.33809405, "OBJECTID_1": 19336, "PARCEL_NO_": "105404050200", "Tax_Legal_": "5-1,2,3,5-A-2&5-A-3 EST. THOMAS/KINGS QT", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16622500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.95640648300002, "SHAPE_Area": 4884.0777599000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359811.288900002837181, 256520.419700000435114 ], [ 359785.67509999871254, 256479.708599999547005 ], [ 359750.833499997854233, 256502.538499999791384 ], [ 359714.763099998235703, 256523.320300001651049 ], [ 359700.139700002968311, 256531.74549999833107 ], [ 359725.085900001227856, 256571.560899998992682 ], [ 359725.122900001704693, 256571.566100001335144 ], [ 359774.322800002992153, 256547.088700000196695 ], [ 359782.463500000536442, 256541.950699999928474 ], [ 359797.414599999785423, 256528.978799998760223 ], [ 359811.288900002837181, 256520.419700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404020200", "MAP": null, "PARCEL_NAM": "D of 37a TAARNEBERG", "ACRE": null, "LONGITUDE": -64.92380046, "LATITUDE": 18.33859762, "OBJECTID_1": 19322, "PARCEL_NO_": "105404020200", "Tax_Legal_": "37B TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 312000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 19.223192203, "SHAPE_Area": 8.3133543844000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359555.508000001311302, 256576.9864999987185 ], [ 359555.208599999547005, 256577.99720000103116 ], [ 359555.148699998855591, 256579.049600001424551 ], [ 359555.331299997866154, 256580.087699998170137 ], [ 359555.746899999678135, 256581.056499999016523 ], [ 359555.810000002384186, 256581.163100000470877 ], [ 359556.566299997270107, 256582.328400000929832 ], [ 359557.386100001633167, 256583.44990000128746 ], [ 359558.267099998891354, 256584.52419999986887 ], [ 359559.206299997866154, 256585.547800000756979 ], [ 359555.508000001311302, 256576.9864999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404030500", "MAP": null, "PARCEL_NAM": "32 TAARNNEBERG (CEMETARY)", "ACRE": null, "LONGITUDE": -64.92275601, "LATITUDE": 18.33875386, "OBJECTID_1": 19327, "PARCEL_NO_": "105404030500", "Tax_Legal_": "32 TAARNEBERG (CEMETARY) KINGS QTR", "Name": "ICMC LIMITED LIABILITY LIMITED PARTNERSHIP", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026733, "Country": "United States", "Land_Value": 74200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.451301816200001, "SHAPE_Area": 296.06709864300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359678.719099998474121, 256593.987700000405312 ], [ 359676.810300000011921, 256593.178399998694658 ], [ 359674.923299998044968, 256592.319499999284744 ], [ 359673.059500001370907, 256591.411499999463558 ], [ 359671.219999998807907, 256590.455099999904633 ], [ 359669.578199997544289, 256589.614799998700619 ], [ 359667.904700003564358, 256588.839200001209974 ], [ 359666.202299997210503, 256588.12950000166893 ], [ 359664.473499998450279, 256587.486900001764297 ], [ 359654.983400002121925, 256607.505300000309944 ], [ 359670.67679999768734, 256608.826200000941753 ], [ 359678.719099998474121, 256593.987700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404030600", "MAP": null, "PARCEL_NAM": "II-1", "ACRE": "4,221 sq ft", "LONGITUDE": -64.92226771, "LATITUDE": 18.33883856, "OBJECTID_1": 19328, "PARCEL_NO_": "105404030600", "Tax_Legal_": "TRACT 2 TAARNEBERG KINGS QTR.", "Name": "ICMC LIMITED LIABILITY LIMITED PARTNERSHIP", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026733, "Country": "United States", "Land_Value": 67100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.929683948999994, "SHAPE_Area": 51.387308514600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359728.08500000089407, 256614.317299999296665 ], [ 359727.155699998140335, 256612.872000001370907 ], [ 359725.927699998021126, 256611.387299999594688 ], [ 359724.522100001573563, 256610.069400001317263 ], [ 359722.961499996483326, 256608.939500000327826 ], [ 359721.27080000191927, 256608.015399999916553 ], [ 359719.476999998092651, 256607.312100000679493 ], [ 359695.655299998819828, 256599.670400001108646 ], [ 359719.35530000180006, 256609.336800001561642 ], [ 359723.82039999961853, 256612.025499999523163 ], [ 359731.980099998414516, 256620.929999999701977 ], [ 359730.984899997711182, 256619.289500001817942 ], [ 359730.003899998962879, 256617.640500001609325 ], [ 359729.037299998104572, 256615.9831000007689 ], [ 359728.08500000089407, 256614.317299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404020200", "MAP": null, "PARCEL_NAM": "D of 37a TAARNEBERG", "ACRE": null, "LONGITUDE": -64.92361845000001, "LATITUDE": 18.33874178, "OBJECTID_1": 19322, "PARCEL_NO_": "105404020200", "Tax_Legal_": "37B TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 312000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.90038198799999, "SHAPE_Area": 403.11993799300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359592.808399997651577, 256608.208000000566244 ], [ 359561.830399997532368, 256578.55970000103116 ], [ 359561.889300003647804, 256574.540300000458956 ], [ 359560.562700003385544, 256574.28940000012517 ], [ 359559.511200003325939, 256574.214099999517202 ], [ 359558.470600001513958, 256574.381700001657009 ], [ 359557.495899997651577, 256574.783100001513958 ], [ 359556.63910000026226, 256575.397100001573563 ], [ 359555.945600003004074, 256576.190999999642372 ], [ 359555.508000001311302, 256576.9864999987185 ], [ 359559.206299997866154, 256585.547800000756979 ], [ 359594.745099999010563, 256622.181400001049042 ], [ 359592.808399997651577, 256608.208000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105403020500", "MAP": "A3-30-T37", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92563437, "LATITUDE": 18.3385848, "OBJECTID_1": 19306, "PARCEL_NO_": "105403020500", "Tax_Legal_": "40AB TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 821700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.48554939399997, "SHAPE_Area": 2148.04519119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359400.75959999859333, 256539.667899999767542 ], [ 359394.353299997746944, 256523.847600001841784 ], [ 359390.576800003647804, 256525.833500001579523 ], [ 359386.919900000095367, 256528.031800001859665 ], [ 359383.394599996507168, 256530.435400001704693 ], [ 359380.012299999594688, 256533.036400001496077 ], [ 359376.784000001847744, 256535.826299998909235 ], [ 359373.720399998128414, 256538.796100001782179 ], [ 359370.831399999558926, 256541.936000000685453 ], [ 359368.126400001347065, 256545.235700000077486 ], [ 359366.354599997401237, 256547.624499998986721 ], [ 359362.671899996697903, 256552.936099998652935 ], [ 359359.118100002408028, 256558.334600001573563 ], [ 359355.695100001990795, 256563.817099999636412 ], [ 359352.404899999499321, 256569.380300000309944 ], [ 359349.858300000429153, 256574.200599998235703 ], [ 359347.529700003564358, 256579.129999998956919 ], [ 359345.423799999058247, 256584.158500000834465 ], [ 359343.544900000095367, 256589.276099998503923 ], [ 359341.896700002253056, 256594.472699999809265 ], [ 359340.482400000095367, 256599.737700000405312 ], [ 359339.424199998378754, 256604.466299999505281 ], [ 359335.248400002717972, 256626.589000001549721 ], [ 359352.877400003373623, 256629.747600000351667 ], [ 359358.104900002479553, 256615.265000000596046 ], [ 359363.115599997341633, 256600.705899998545647 ], [ 359367.90820000320673, 256586.073699999600649 ], [ 359372.481700003147125, 256571.371399998664856 ], [ 359373.581200003623962, 256568.070099998265505 ], [ 359374.909100003540516, 256564.853900000452995 ], [ 359376.45889999717474, 256561.738499999046326 ], [ 359378.222999997437, 256558.73930000141263 ], [ 359380.192800000309944, 256555.870900001376867 ], [ 359382.358599998056889, 256553.14750000089407 ], [ 359384.709799997508526, 256550.582400001585484 ], [ 359387.234700001776218, 256548.188200000673532 ], [ 359389.921099998056889, 256545.976700000464916 ], [ 359392.755699999630451, 256543.958700001239777 ], [ 359395.7246999964118, 256542.144000001251698 ], [ 359398.813400000333786, 256540.541799999773502 ], [ 359400.75959999859333, 256539.667899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105403020300", "MAP": null, "PARCEL_NAM": "40B", "ACRE": null, "LONGITUDE": -64.9255435, "LATITUDE": 18.33895964, "OBJECTID_1": 19304, "PARCEL_NO_": "105403020300", "Tax_Legal_": "40B TAARNEBERG VILLA OCCIDENT", "Name": "HODGE, LAWRENCE & MARIA T", "Address": "BOX 4511", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 342900, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.724269780399993, "SHAPE_Area": 336.63582214399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359377.88120000064373, 256626.605099998414516 ], [ 359377.280100002884865, 256622.083500001579523 ], [ 359376.921400003135204, 256617.536200001835823 ], [ 359376.806100003421307, 256612.976199999451637 ], [ 359376.93469999730587, 256608.416600000113249 ], [ 359377.006300002336502, 256607.25789999961853 ], [ 359377.107699997723103, 256604.931000001728535 ], [ 359377.093000002205372, 256602.60190000012517 ], [ 359376.961999997496605, 256600.276399999856949 ], [ 359376.715199999511242, 256597.960400000214577 ], [ 359373.756700001657009, 256597.683200001716614 ], [ 359370.930799998342991, 256606.146200001239777 ], [ 359368.032399997115135, 256614.584699999541044 ], [ 359365.061800003051758, 256622.997999999672174 ], [ 359362.019000001251698, 256631.385499998927116 ], [ 359379.138800002634525, 256634.452799998223782 ], [ 359377.88120000064373, 256626.605099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92213538, "LATITUDE": 18.33903431, "OBJECTID_1": 19328, "PARCEL_NO_": "105404030600", "Tax_Legal_": "TRACT 2 TAARNEBERG KINGS QTR.", "Name": "ICMC LIMITED LIABILITY LIMITED PARTNERSHIP", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026733, "Country": "United States", "Land_Value": 67100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.820672730799998, "SHAPE_Area": 94.493779272400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359740.340800002217293, 256633.58559999987483 ], [ 359738.824299998581409, 256631.425400000065565 ], [ 359737.333700001239777, 256629.247299998998642 ], [ 359735.869099996984005, 256627.051600001752377 ], [ 359734.430699996650219, 256624.838700000196695 ], [ 359725.647900000214577, 256629.071299999952316 ], [ 359726.383900001645088, 256632.807500001043081 ], [ 359726.361400000751019, 256635.414700001478195 ], [ 359740.340800002217293, 256633.58559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404030100", "MAP": null, "PARCEL_NAM": "36A,36B & C OF 37A", "ACRE": "0.93", "LONGITUDE": -64.92318534, "LATITUDE": 18.3388004, "OBJECTID_1": 19325, "PARCEL_NO_": "105404030100", "Tax_Legal_": "LOTS 36A,36B &C OF 37A TAARNEBJG KINGS QTR.", "Name": "ICMC LIMITED LIABILITY LIMITED PARTNERSHIP", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026733, "Country": "United States", "Land_Value": 700800, "Improved_V": 761000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.62456345300001, "SHAPE_Area": 3702.8644695900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359628.388800002634525, 256630.135000001639128 ], [ 359634.167000003159046, 256626.206900000572205 ], [ 359641.356299996376038, 256624.582800000905991 ], [ 359650.475000001490116, 256624.508400000631809 ], [ 359662.448499999940395, 256630.493500001728535 ], [ 359663.716300003230572, 256629.604100000113249 ], [ 359669.495700001716614, 256612.919799998402596 ], [ 359669.780799999833107, 256612.096999999135733 ], [ 359670.67679999768734, 256608.826200000941753 ], [ 359654.983400002121925, 256607.505300000309944 ], [ 359664.473499998450279, 256587.486900001764297 ], [ 359662.924999997019768, 256586.97520000115037 ], [ 359661.35980000346899, 256586.517299998551607 ], [ 359659.779700003564358, 256586.113699998706579 ], [ 359658.186599999666214, 256585.764899998903275 ], [ 359652.147600002586842, 256584.675700001418591 ], [ 359646.070100001990795, 256583.827300000935793 ], [ 359639.963699996471405, 256583.220899999141693 ], [ 359633.837999999523163, 256582.857700001448393 ], [ 359627.702799998223782, 256582.738000001758337 ], [ 359627.16780000180006, 256582.739199999719858 ], [ 359623.58330000191927, 256582.83390000090003 ], [ 359617.61089999973774, 256582.869800001382828 ], [ 359611.64190000295639, 256582.662000000476837 ], [ 359605.686499997973442, 256582.210700001567602 ], [ 359599.754399999976158, 256581.516600001603365 ], [ 359593.855599999427795, 256580.5810999982059 ], [ 359592.522699996829033, 256580.335400000214577 ], [ 359561.889300003647804, 256574.540300000458956 ], [ 359561.830399997532368, 256578.55970000103116 ], [ 359592.808399997651577, 256608.208000000566244 ], [ 359594.745099999010563, 256622.181400001049042 ], [ 359600.80120000243187, 256623.744500000029802 ], [ 359609.167599998414516, 256630.726500000804663 ], [ 359614.787500001490116, 256637.24720000103116 ], [ 359628.178900003433228, 256636.630300000309944 ], [ 359628.388800002634525, 256630.135000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404040100", "MAP": "D9-7269-T003", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92139575, "LATITUDE": 18.33882722, "OBJECTID_1": 19331, "PARCEL_NO_": "105404040100", "Tax_Legal_": "8B ESTATE ROSS", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 995800, "Improved_V": 2514800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.93743687, "SHAPE_Area": 6993.2682056800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359854.58389999717474, 256632.447200000286102 ], [ 359856.414300002157688, 256625.978500001132488 ], [ 359875.435099996626377, 256613.835499998182058 ], [ 359859.841600000858307, 256593.472100000828505 ], [ 359831.21679999679327, 256556.305799998342991 ], [ 359788.593699999153614, 256581.377599999308586 ], [ 359754.163000002503395, 256599.934200000017881 ], [ 359754.046999998390675, 256599.993599999696016 ], [ 359752.677199997007847, 256600.8429000005126 ], [ 359751.450900003314018, 256601.888700000941753 ], [ 359750.396200001239777, 256603.107400000095367 ], [ 359749.537100002169609, 256604.471099998801947 ], [ 359748.893299996852875, 256605.948600001633167 ], [ 359748.479400001466274, 256607.50620000064373 ], [ 359748.304799996316433, 256609.108500000089407 ], [ 359748.373700000345707, 256610.718699999153614 ], [ 359748.684299997985363, 256612.300200000405312 ], [ 359749.229599997401237, 256613.816799998283386 ], [ 359749.99719999730587, 256615.234000001102686 ], [ 359753.877499997615814, 256621.040100000798702 ], [ 359757.954800002276897, 256626.709600001573563 ], [ 359762.224200002849102, 256632.235800001770258 ], [ 359766.680699996650219, 256637.612399999052286 ], [ 359768.262100003659725, 256639.427099999040365 ], [ 359780.178700000047684, 256653.070900000631809 ], [ 359854.58389999717474, 256632.447200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404020200", "MAP": null, "PARCEL_NAM": "36aa-2 TAARNEBERG", "ACRE": null, "LONGITUDE": -64.9233201, "LATITUDE": 18.33905578, "OBJECTID_1": 19322, "PARCEL_NO_": "105404020200", "Tax_Legal_": "37B TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 312000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.787343718700001, "SHAPE_Area": 98.534656387799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359616.475599996745586, 256639.205899998545647 ], [ 359614.787500001490116, 256637.24720000103116 ], [ 359609.167599998414516, 256630.726500000804663 ], [ 359600.80120000243187, 256623.744500000029802 ], [ 359594.745099999010563, 256622.181400001049042 ], [ 359608.200000002980232, 256636.050799999386072 ], [ 359609.695000000298023, 256637.643500000238419 ], [ 359611.135600000619888, 256639.285500001162291 ], [ 359612.520099997520447, 256640.975099999457598 ], [ 359613.847000002861023, 256642.710299998521805 ], [ 359616.475599996745586, 256639.205899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404030600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92244127, "LATITUDE": 18.33895055, "OBJECTID_1": 19328, "PARCEL_NO_": "105404030600", "Tax_Legal_": "TRACT 2 TAARNEBERG KINGS QTR.", "Name": "ICMC LIMITED LIABILITY LIMITED PARTNERSHIP", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026733, "Country": "United States", "Land_Value": 67100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.482824843, "SHAPE_Area": 1967.21279383 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359716.898599997162819, 256642.631400000303984 ], [ 359709.113099999725819, 256638.28770000115037 ], [ 359726.383900001645088, 256632.807500001043081 ], [ 359725.647900000214577, 256629.071299999952316 ], [ 359734.430699996650219, 256624.838700000196695 ], [ 359733.810400001704693, 256623.866300001740456 ], [ 359733.195200003683567, 256622.890700001269579 ], [ 359732.585100002586842, 256621.911899998784065 ], [ 359731.980099998414516, 256620.929999999701977 ], [ 359723.82039999961853, 256612.025499999523163 ], [ 359719.35530000180006, 256609.336800001561642 ], [ 359695.655299998819828, 256599.670400001108646 ], [ 359684.488399997353554, 256596.088199999183416 ], [ 359683.031099997460842, 256595.605099998414516 ], [ 359681.583400003612041, 256595.093800000846386 ], [ 359680.145900003612041, 256594.55460000038147 ], [ 359678.719099998474121, 256593.987700000405312 ], [ 359670.67679999768734, 256608.826200000941753 ], [ 359669.780799999833107, 256612.096999999135733 ], [ 359669.495700001716614, 256612.919799998402596 ], [ 359674.169799998402596, 256616.284099999815226 ], [ 359681.308700002729893, 256624.408399999141693 ], [ 359686.517200000584126, 256632.837499998509884 ], [ 359687.597999997437, 256635.475999999791384 ], [ 359688.961499996483326, 256639.733300000429153 ], [ 359690.91889999806881, 256648.988800000399351 ], [ 359693.048100002110004, 256651.834800001233816 ], [ 359716.898599997162819, 256642.631400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404030800", "MAP": null, "PARCEL_NAM": "30B", "ACRE": "4,590 sq ft", "LONGITUDE": -64.92232843, "LATITUDE": 18.33926169, "OBJECTID_1": 19330, "PARCEL_NO_": "105404030800", "Tax_Legal_": "30A & 30BTAARNEBERG KINGS QUARTER", "Name": "LIMA ENTERPRISES INC.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 139200, "Improved_V": 236000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.970599279799998, "SHAPE_Area": 531.64159093700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359730.47410000115633, 256660.699799999594688 ], [ 359716.898599997162819, 256642.631400000303984 ], [ 359693.048100002110004, 256651.834800001233816 ], [ 359705.376199997961521, 256668.312399998307228 ], [ 359730.47410000115633, 256660.699799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404020200", "MAP": null, "PARCEL_NAM": "8 of TRACT II", "ACRE": null, "LONGITUDE": -64.92317605, "LATITUDE": 18.33925019, "OBJECTID_1": 19322, "PARCEL_NO_": "105404020200", "Tax_Legal_": "37B TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 312000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.9126445781, "SHAPE_Area": 122.393931873 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359616.475599996745586, 256639.205899998545647 ], [ 359613.847000002861023, 256642.710299998521805 ], [ 359616.11089999973774, 256645.981600001454353 ], [ 359618.170199997723103, 256649.385499998927116 ], [ 359620.017200000584126, 256652.909099999815226 ], [ 359621.644900001585484, 256656.539200000464916 ], [ 359623.047200001776218, 256660.262200001627207 ], [ 359624.218800000846386, 256664.064100001007318 ], [ 359625.155299998819828, 256667.930599998682737 ], [ 359625.644799999892712, 256670.521699998527765 ], [ 359628.404899999499321, 256666.150100000202656 ], [ 359626.140699997544289, 256655.562199998646975 ], [ 359618.285300001502037, 256641.305599998682737 ], [ 359616.475599996745586, 256639.205899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9220486, "LATITUDE": 18.33924724, "OBJECTID_1": 19329, "PARCEL_NO_": "105404030700", "Tax_Legal_": "30 REM & REM PARCEL 1 OF TRACT 1 TAARNEBERG KING'S QTR", "Name": "OLIVER EXTERMINATING INC", "Address": "PO BOX 302702", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.697419438, "SHAPE_Area": 1004.94909724 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359766.277099996805191, 256664.986000001430511 ], [ 359754.952500000596046, 256651.99040000140667 ], [ 359751.117899999022484, 256647.535999998450279 ], [ 359747.402699999511242, 256642.981699999421835 ], [ 359743.809500001370907, 256638.330400001257658 ], [ 359740.340800002217293, 256633.58559999987483 ], [ 359716.898599997162819, 256642.631400000303984 ], [ 359730.47410000115633, 256660.699799999594688 ], [ 359741.500299997627735, 256675.375199999660254 ], [ 359766.277099996805191, 256664.986000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404030400", "MAP": null, "PARCEL_NAM": "31AB", "ACRE": "0.73", "LONGITUDE": -64.92287257, "LATITUDE": 18.33917282, "OBJECTID_1": 19326, "PARCEL_NO_": "105404030400", "Tax_Legal_": "LOT 31AB ESTATE TAARNEBERG KINGS QTR.", "Name": "ICMC LIMITED LIABILITY LIMITED PARTNERSHIP", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026733, "Country": "United States", "Land_Value": 602800, "Improved_V": 983000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.56484116499999, "SHAPE_Area": 2627.4787467000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359693.048100002110004, 256651.834800001233816 ], [ 359690.91889999806881, 256648.988800000399351 ], [ 359688.961499996483326, 256639.733300000429153 ], [ 359687.597999997437, 256635.475999999791384 ], [ 359686.517200000584126, 256632.837499998509884 ], [ 359681.308700002729893, 256624.408399999141693 ], [ 359674.169799998402596, 256616.284099999815226 ], [ 359669.495700001716614, 256612.919799998402596 ], [ 359663.716300003230572, 256629.604100000113249 ], [ 359662.448499999940395, 256630.493500001728535 ], [ 359650.475000001490116, 256624.508400000631809 ], [ 359641.356299996376038, 256624.582800000905991 ], [ 359634.167000003159046, 256626.206900000572205 ], [ 359628.388800002634525, 256630.135000001639128 ], [ 359628.178900003433228, 256636.630300000309944 ], [ 359614.787500001490116, 256637.24720000103116 ], [ 359616.475599996745586, 256639.205899998545647 ], [ 359618.285300001502037, 256641.305599998682737 ], [ 359626.140699997544289, 256655.562199998646975 ], [ 359628.404899999499321, 256666.150100000202656 ], [ 359625.644799999892712, 256670.521699998527765 ], [ 359625.658600002527237, 256670.604200001806021 ], [ 359625.67230000346899, 256670.686799999326468 ], [ 359625.685900002717972, 256670.769299998879433 ], [ 359625.699299998581409, 256670.851799998432398 ], [ 359625.961099997162819, 256672.497699998319149 ], [ 359626.211499996483326, 256674.145300000905991 ], [ 359626.450300000607967, 256675.794700000435114 ], [ 359626.677599996328354, 256677.445599999278784 ], [ 359693.048100002110004, 256651.834800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92221436, "LATITUDE": 18.33941166, "OBJECTID_1": 19330, "PARCEL_NO_": "105404030800", "Tax_Legal_": "30A & 30BTAARNEBERG KINGS QUARTER", "Name": "LIMA ENTERPRISES INC.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 139200, "Improved_V": 236000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.152929047900003, "SHAPE_Area": 486.824364946 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359735.29110000282526, 256677.978799998760223 ], [ 359741.500299997627735, 256675.375199999660254 ], [ 359730.47410000115633, 256660.699799999594688 ], [ 359705.376199997961521, 256668.312399998307228 ], [ 359718.024999998509884, 256685.218699999153614 ], [ 359735.29110000282526, 256677.978799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105403020900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92589057000001, "LATITUDE": 18.33929832, "OBJECTID_1": 19310, "PARCEL_NO_": "105403020900", "Tax_Legal_": "40AAB TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 740700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.70527320299999, "SHAPE_Area": 835.49310611099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359343.000600002706051, 256655.424300000071526 ], [ 359348.024599999189377, 256642.618900001049042 ], [ 359352.877400003373623, 256629.747600000351667 ], [ 359335.248400002717972, 256626.589000001549721 ], [ 359333.72919999808073, 256634.637600000947714 ], [ 359331.945000000298023, 256644.153400000184774 ], [ 359329.921599999070168, 256653.621300000697374 ], [ 359327.660499997437, 256663.035199999809265 ], [ 359325.163099996745586, 256672.389199998229742 ], [ 359324.695100001990795, 256674.043200001120567 ], [ 359323.198899999260902, 256678.841899998486042 ], [ 359321.471900001168251, 256683.562399998307228 ], [ 359319.517899997532368, 256688.193599998950958 ], [ 359317.34179999679327, 256692.724700000137091 ], [ 359316.62950000166893, 256694.094700001180172 ], [ 359325.194300003349781, 256695.904199998825788 ], [ 359327.199299998581409, 256691.13120000064373 ], [ 359335.374899998307228, 256671.128699999302626 ], [ 359343.000600002706051, 256655.424300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105403020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92561028, "LATITUDE": 18.33940894, "OBJECTID_1": 19303, "PARCEL_NO_": "105403020100", "Tax_Legal_": "TAARNEBJERG ESTATE 40AA KINGS QUARTER", "Name": "M & S ST. THOMAS REALTY ASSC. , LLC", "Address": "1336 Beltjen Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 593000, "Improved_V": 1433100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.01527380900001, "SHAPE_Area": 2029.9093100600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359380.723800003528595, 256676.056000001728535 ], [ 359381.017899997532368, 256673.743299998342991 ], [ 359381.513800002634525, 256668.452500000596046 ], [ 359381.766500003635883, 256663.144499998539686 ], [ 359381.775499999523163, 256657.830400001257658 ], [ 359381.540799997746944, 256652.521600000560284 ], [ 359381.062799997627735, 256647.229100000113249 ], [ 359380.342500001192093, 256641.964099999517202 ], [ 359379.138800002634525, 256634.452799998223782 ], [ 359362.019000001251698, 256631.385499998927116 ], [ 359356.999200001358986, 256644.755499999970198 ], [ 359351.796300001442432, 256658.055399999022484 ], [ 359346.411200001835823, 256671.282600000500679 ], [ 359340.844999998807907, 256684.434599999338388 ], [ 359338.126999996602535, 256690.591400001198053 ], [ 359354.506300002336502, 256696.157600000500679 ], [ 359376.915799997746944, 256703.772999998182058 ], [ 359380.723800003528595, 256676.056000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9212269, "LATITUDE": 18.33935362, "OBJECTID_1": 19332, "PARCEL_NO_": "105404040200", "Tax_Legal_": "8A ROSS EST KINGS QUARTER", "Name": "ROSS EST. LTD. PARTNERSHIP", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 208800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.919685356, "SHAPE_Area": 3440.5670078200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359861.375200003385544, 256685.529199998825788 ], [ 359854.58389999717474, 256632.447200000286102 ], [ 359780.178700000047684, 256653.070900000631809 ], [ 359768.262100003659725, 256639.427099999040365 ], [ 359807.094999998807907, 256683.989999998360872 ], [ 359809.834799997508526, 256687.220899999141693 ], [ 359812.384199999272823, 256690.604100000113249 ], [ 359814.734700001776218, 256694.128299999982119 ], [ 359816.878700003027916, 256697.781899999827147 ], [ 359818.808799996972084, 256701.552799999713898 ], [ 359820.518899999558926, 256705.42850000038743 ], [ 359820.898000001907349, 256706.377999998629093 ], [ 359861.375200003385544, 256685.529199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105403021100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92526358000001, "LATITUDE": 18.33895009, "OBJECTID_1": 19312, "PARCEL_NO_": "105403021100", "Tax_Legal_": "40A ESTATE TAARNEBERG KG. QTR.", "Name": "TAARNEBERG LAND CORP", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 109300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 366.608623212, "SHAPE_Area": 4611.4546093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359411.048500001430511, 256565.076299998909235 ], [ 359407.580700002610683, 256546.888599999248981 ], [ 359407.086800001561642, 256547.035599999129772 ], [ 359404.192199997603893, 256548.144600000232458 ], [ 359402.682099997997284, 256548.827199999243021 ], [ 359399.899800002574921, 256550.289099998772144 ], [ 359397.239200003445148, 256551.962200000882149 ], [ 359394.7162000015378, 256553.836500000208616 ], [ 359392.346100002527237, 256555.900600001215935 ], [ 359390.143100000917912, 256558.142200000584126 ], [ 359388.120399996638298, 256560.547800000756979 ], [ 359386.290200002491474, 256563.102899998426437 ], [ 359384.663599997758865, 256565.792199999094009 ], [ 359383.250200003385544, 256568.599399998784065 ], [ 359382.058700002729893, 256571.507699999958277 ], [ 359381.096100002527237, 256574.499699998646975 ], [ 359380.584100000560284, 256576.667899999767542 ], [ 359380.2128000035882, 256579.226700000464916 ], [ 359380.083999998867512, 256581.809099998325109 ], [ 359380.199000000953674, 256584.392200000584126 ], [ 359380.556599996984005, 256586.952899999916553 ], [ 359381.153800003230572, 256589.468600001186132 ], [ 359381.280500002205372, 256589.916499998420477 ], [ 359382.123999997973442, 256593.40260000154376 ], [ 359382.728699997067451, 256596.937899999320507 ], [ 359383.091899998486042, 256600.506099998950958 ], [ 359383.211800001561642, 256604.090799998492002 ], [ 359383.087999999523163, 256607.675299998372793 ], [ 359383.059199996292591, 256608.11259999871254 ], [ 359382.90429999679327, 256612.505300000309944 ], [ 359382.993199996650219, 256616.899900000542402 ], [ 359383.325599998235703, 256621.282800000160933 ], [ 359383.900399997830391, 256625.640500001609325 ], [ 359386.361699998378754, 256640.999499998986721 ], [ 359387.103900000452995, 256646.40089999884367 ], [ 359387.603699997067451, 256651.829999998211861 ], [ 359387.860399998724461, 256657.276099998503923 ], [ 359387.8733000010252, 256662.728100001811981 ], [ 359387.642499998211861, 256668.175400000065565 ], [ 359387.168399997055531, 256673.606800001114607 ], [ 359386.763099998235703, 256676.88569999858737 ], [ 359381.50110000371933, 256715.186000000685453 ], [ 359382.444700002670288, 256713.461399998515844 ], [ 359383.427699998021126, 256711.75899999961257 ], [ 359384.449600003659725, 256710.079599998891354 ], [ 359385.509999997913837, 256708.424300000071526 ], [ 359387.666500002145767, 256705.10869999974966 ], [ 359393.119400002062321, 256696.415100000798702 ], [ 359398.364200003445148, 256687.594500001519918 ], [ 359403.397900000214577, 256678.651700001209974 ], [ 359408.217799998819828, 256669.591899998486042 ], [ 359412.821000002324581, 256660.420099999755621 ], [ 359425.00280000269413, 256634.604400001466274 ], [ 359425.211000002920628, 256634.254999998956919 ], [ 359426.380300000309944, 256627.802200000733137 ], [ 359429.400600001215935, 256625.752700001001358 ], [ 359428.848099999129772, 256609.0320999994874 ], [ 359415.843199998140335, 256576.916600000113249 ], [ 359411.048500001430511, 256565.076299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402111300", "MAP": "D9-112-T56", "PARCEL_NAM": "5 of 1st AVENUE", "ACRE": "4,515 sq ft", "LONGITUDE": -64.92045252, "LATITUDE": 18.33969828, "OBJECTID_1": 19213, "PARCEL_NO_": "105402111300", "Tax_Legal_": "5 FIRST AVE KINGS QTR", "Name": "Virgin Islands Public Works Department", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 135500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.621787766099999, "SHAPE_Area": 583.26315241400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359926.360299997031689, 256707.513099998235703 ], [ 359911.824500001966953, 256688.693599998950958 ], [ 359910.656499996781349, 256689.62779999896884 ], [ 359892.673900000751019, 256704.010800000280142 ], [ 359907.220200002193451, 256722.843899998813868 ], [ 359926.360299997031689, 256707.513099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401591800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92609305000001, "LATITUDE": 18.3398008, "OBJECTID_1": 12415, "PARCEL_NO_": "105401591800", "Tax_Legal_": "TAARNEBERG 40D KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 450000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.100417340899995, "SHAPE_Area": 347.47562484600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359325.194300003349781, 256695.904199998825788 ], [ 359316.62950000166893, 256694.094700001180172 ], [ 359301.204000003635883, 256725.983899999409914 ], [ 359310.9746999964118, 256730.315900001674891 ], [ 359318.229900002479553, 256712.4831000007689 ], [ 359325.194300003349781, 256695.904199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402111200", "MAP": "D9-112-T56", "PARCEL_NAM": "3 of 1st AVENUE", "ACRE": "4,512 sq ft", "LONGITUDE": -64.92062978, "LATITUDE": 18.33983596, "OBJECTID_1": 19212, "PARCEL_NO_": "105402111200", "Tax_Legal_": "3 1ST AVE 1ST SUB DIV ESTATE THOMAS", "Name": "VI PUL W ACCEL AUTH.", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.167189018900004, "SHAPE_Area": 565.98591506100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359907.220200002193451, 256722.843899998813868 ], [ 359892.673900000751019, 256704.010800000280142 ], [ 359874.05629999935627, 256718.901700001209974 ], [ 359888.707800000905991, 256737.671999998390675 ], [ 359907.220200002193451, 256722.843899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401602300", "MAP": "D9-3660-T86", "PARCEL_NAM": "40CB", "ACRE": null, "LONGITUDE": -64.92598268, "LATITUDE": 18.33997861, "OBJECTID_1": 12438, "PARCEL_NO_": "105401602300", "Tax_Legal_": "TAARNEBERG 40CB KINGS QTR", "Name": "40-CB LLC", "Address": "PO Box 600177", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9400, "Improved_V": 169600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.782625099100002, "SHAPE_Area": 160.39800302099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359315.538000002503395, 256737.475400000810623 ], [ 359330.045800000429153, 256737.747999999672174 ], [ 359333.629399999976158, 256728.614799998700619 ], [ 359321.528999999165535, 256724.187300000339746 ], [ 359315.538000002503395, 256737.475400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401602500", "MAP": "F9-2204-T68", "PARCEL_NAM": "40C", "ACRE": "5,405 sq ft", "LONGITUDE": -64.92576714, "LATITUDE": 18.33993495, "OBJECTID_1": 12440, "PARCEL_NO_": "105401602500", "Tax_Legal_": "TAARNEBERG 40C KINGS QUARTER", "Name": "FRANCIS, MARION", "Address": "1351 Est Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.71507961, "SHAPE_Area": 614.04010673799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359355.472300000488758, 256712.498399998992682 ], [ 359338.87780000269413, 256715.238699998706579 ], [ 359337.611000001430511, 256718.467300001531839 ], [ 359330.045800000429153, 256737.747999999672174 ], [ 359361.118600003421307, 256738.380899999290705 ], [ 359363.275399997830391, 256722.522199999541044 ], [ 359356.023900002241135, 256721.829500000923872 ], [ 359355.472300000488758, 256712.498399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401602200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92561585, "LATITUDE": 18.34011291, "OBJECTID_1": 12437, "PARCEL_NO_": "105401602200", "Tax_Legal_": "NORRE GADE 24 DDD\nKINGS QTR", "Name": "AJ LAND HOLDINGS LLC", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023641, "Country": "United States", "Land_Value": 13600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.348119818699999, "SHAPE_Area": 123.306798912 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359370.472099997103214, 256750.674600001424551 ], [ 359371.506300002336502, 256743.147199999541044 ], [ 359356.52250000089407, 256742.782299999147654 ], [ 359356.145000003278255, 256752.135099999606609 ], [ 359370.472099997103214, 256750.674600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402111100", "MAP": null, "PARCEL_NAM": "1 of 1st AVENUE", "ACRE": "7,702 sq ft", "LONGITUDE": -64.92078056, "LATITUDE": 18.33997201, "OBJECTID_1": 19211, "PARCEL_NO_": "105402111100", "Tax_Legal_": "1 FIRST AVENUE KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 115500, "Improved_V": 1589900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.040240445600006, "SHAPE_Area": 449.75713273600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359888.707800000905991, 256737.671999998390675 ], [ 359874.05629999935627, 256718.901700001209974 ], [ 359865.273100003600121, 256725.926699999719858 ], [ 359865.483199998736382, 256728.103999998420477 ], [ 359867.120099999010563, 256745.068199999630451 ], [ 359868.006399996578693, 256754.253400001674891 ], [ 359888.707800000905991, 256737.671999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105403010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9295549, "LATITUDE": 18.33998903, "OBJECTID_1": 19302, "PARCEL_NO_": "105403010100", "Tax_Legal_": "SENATE BUILDING KINGS QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2186200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.14792287399999, "SHAPE_Area": 757.97974350599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358956.213899999856949, 256753.706300001591444 ], [ 358953.400200001895428, 256704.551899999380112 ], [ 358938.069499999284744, 256705.692999999970198 ], [ 358940.949500001966953, 256746.246599998325109 ], [ 358939.33500000089407, 256746.444400001317263 ], [ 358940.091700002551079, 256755.453699998557568 ], [ 358956.213899999856949, 256753.706300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401601800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92605428, "LATITUDE": 18.34017072, "OBJECTID_1": 12433, "PARCEL_NO_": "105401601800", "Tax_Legal_": "BJERGE GADE 1BA KINGS QTR", "Name": "RHYMER, DARIL RICHARDSON", "Address": "PO Box 303273", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11700, "Improved_V": 46300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.574918305500006, "SHAPE_Area": 275.91102267399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359327.120600000023842, 256742.066300000995398 ], [ 359315.526799999177456, 256741.784000001847744 ], [ 359311.736000001430511, 256750.370700001716614 ], [ 359310.416599996387959, 256753.700500000268221 ], [ 359309.253799997270107, 256757.088199999183416 ], [ 359308.250200003385544, 256760.526399999856949 ], [ 359306.106299996376038, 256764.126200001686811 ], [ 359319.41499999910593, 256764.105900000780821 ], [ 359327.120600000023842, 256742.066300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401601900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92592093, "LATITUDE": 18.34017684, "OBJECTID_1": 12434, "PARCEL_NO_": "105401601900", "Tax_Legal_": "BJERGE GADE 1B KINGS QUARTER", "Name": "CHLODAN INVESTMENTS LLC", "Address": "PO Box 7937", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.228697572300007, "SHAPE_Area": 352.05716220199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359339.739500001072884, 256742.373599998652935 ], [ 359327.120600000023842, 256742.066300000995398 ], [ 359319.41499999910593, 256764.105900000780821 ], [ 359338.760099999606609, 256764.264199998229742 ], [ 359339.739500001072884, 256742.373599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401602000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92576433000001, "LATITUDE": 18.34017108, "OBJECTID_1": 12435, "PARCEL_NO_": "105401602000", "Tax_Legal_": "NORRE GADE 24D KINGS QUARTER", "Name": "CHLODAN INVESTMENTS LLC", "Address": "PO Box 7937", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75300, "Improved_V": 147200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.228642441600002, "SHAPE_Area": 366.53569146699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359356.145000003278255, 256752.135099999606609 ], [ 359356.52250000089407, 256742.782299999147654 ], [ 359339.739500001072884, 256742.373599998652935 ], [ 359338.760099999606609, 256764.264199998229742 ], [ 359355.649899996817112, 256764.402499999850988 ], [ 359356.145000003278255, 256752.135099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401602100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92562019, "LATITUDE": 18.34020931, "OBJECTID_1": 12436, "PARCEL_NO_": "105401602100", "Tax_Legal_": "NORRE GADE 24DD KINGS QUARTER", "Name": "MARTIN, CHRISTINA", "Address": "155 E 2nd St", "City": "New York", "State": "New York", "Zip": 10009, "Country": "United States", "Land_Value": 5600, "Improved_V": 300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.564406011800003, "SHAPE_Area": 176.99384244300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359370.472099997103214, 256750.674600001424551 ], [ 359356.145000003278255, 256752.135099999606609 ], [ 359355.649899996817112, 256764.402499999850988 ], [ 359368.571599997580051, 256764.508200000971556 ], [ 359370.472099997103214, 256750.674600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401591900", "MAP": null, "PARCEL_NAM": null, "ACRE": "87,270 sq ft", "LONGITUDE": -64.92644669000001, "LATITUDE": 18.34014406, "OBJECTID_1": 12416, "PARCEL_NO_": "105401591900", "Tax_Legal_": "VETERANS DRIVE PCL KINGS QTR", "Name": "GEN. SER. ADM. C/O TURETSKY", "Address": "26 Federal Plz", "City": "New York", "State": "New York", "Zip": 10278, "Country": "United States", "Land_Value": 1372600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.44136875100003, "SHAPE_Area": 2196.5978505600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359300.079999998211861, 256754.317499998956919 ], [ 359303.386699996888638, 256748.122600000351667 ], [ 359305.529899999499321, 256741.772599998861551 ], [ 359307.276100002229214, 256739.073800001293421 ], [ 359309.736699998378754, 256733.358800001442432 ], [ 359310.9746999964118, 256730.315900001674891 ], [ 359301.204000003635883, 256725.983899999409914 ], [ 359316.62950000166893, 256694.094700001180172 ], [ 359314.170500002801418, 256698.478700000792742 ], [ 359311.501900002360344, 256702.738299999386072 ], [ 359308.629900000989437, 256706.863600000739098 ], [ 359305.561200000345707, 256710.844700001180172 ], [ 359302.303099997341633, 256714.6722999997437 ], [ 359298.863200001418591, 256718.337400000542402 ], [ 359295.249700002372265, 256721.831500001251698 ], [ 359291.471000000834465, 256725.146200001239777 ], [ 359287.535999998450279, 256728.273800000548363 ], [ 359283.453900001943111, 256731.206900000572205 ], [ 359279.234499998390675, 256733.9386 ], [ 359274.887599997222424, 256736.462499998509884 ], [ 359270.423299998044968, 256738.772599998861551 ], [ 359267.185999996960163, 256740.281100001186132 ], [ 359264.116400003433228, 256741.662999998778105 ], [ 359261.058399997651577, 256743.070500001311302 ], [ 359258.012299999594688, 256744.503499999642372 ], [ 359254.978299997746944, 256745.962000001221895 ], [ 359249.980999998748302, 256748.348900001496077 ], [ 359244.952100001275539, 256750.668699998408556 ], [ 359239.892599999904633, 256752.921000000089407 ], [ 359234.80349999666214, 256755.105399999767542 ], [ 359232.945600003004074, 256758.116599999368191 ], [ 359233.905100002884865, 256772.534499999135733 ], [ 359247.035499997437, 256768.005199998617172 ], [ 359247.269799999892712, 256771.310600001364946 ], [ 359265.252599999308586, 256770.129099998623133 ], [ 359283.484999999403954, 256768.925400000065565 ], [ 359283.339400000870228, 256765.98030000180006 ], [ 359296.949600003659725, 256765.154599998146296 ], [ 359300.079999998211861, 256754.317499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105403010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92956359, "LATITUDE": 18.33988104, "OBJECTID_1": 19302, "PARCEL_NO_": "105403010100", "Tax_Legal_": "SENATE BUILDING KINGS QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2186200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 591.85932203200002, "SHAPE_Area": 6266.8434162900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358867.079899996519089, 256682.826799999922514 ], [ 358867.282200001180172, 256684.0945999994874 ], [ 358901.769000001251698, 256682.719999998807907 ], [ 358903.692900002002716, 256737.625199999660254 ], [ 358892.366800002753735, 256744.565900001674891 ], [ 358898.123599998652935, 256745.232700001448393 ], [ 358904.308300003409386, 256746.185400001704693 ], [ 358910.451200000941753, 256747.378299999982119 ], [ 358916.542999997735023, 256748.80970000103116 ], [ 358922.574400000274181, 256750.477200001478195 ], [ 358928.536200001835823, 256752.378400001674891 ], [ 358929.805500000715256, 256752.795200001448393 ], [ 358931.083599999547005, 256753.184000000357628 ], [ 358932.3699000030756, 256753.544700000435114 ], [ 358933.663699999451637, 256753.877099998295307 ], [ 358940.091700002551079, 256755.453699998557568 ], [ 358939.33500000089407, 256746.444400001317263 ], [ 358940.949500001966953, 256746.246599998325109 ], [ 358938.069499999284744, 256705.692999999970198 ], [ 358953.400200001895428, 256704.551899999380112 ], [ 358956.213899999856949, 256753.706300001591444 ], [ 358940.091700002551079, 256755.453699998557568 ], [ 359008.133100003004074, 256772.142700001597404 ], [ 359009.011200003325939, 256772.355599999427795 ], [ 359009.890399999916553, 256772.563799999654293 ], [ 359010.770700000226498, 256772.767299998551607 ], [ 359011.652099996805191, 256772.966099999845028 ], [ 359009.939300000667572, 256757.772700000554323 ], [ 358987.469800002872944, 256747.600999999791384 ], [ 358982.427799999713898, 256719.817200001329184 ], [ 358983.36599999666214, 256719.111200001090765 ], [ 358984.138700000941753, 256718.227099999785423 ], [ 358984.712600000202656, 256717.2027000002563 ], [ 358985.063299998641014, 256716.082100000232458 ], [ 358985.175499998033047, 256714.91330000013113 ], [ 358985.044600002467632, 256713.746500000357628 ], [ 358984.676100000739098, 256712.631599999964237 ], [ 358984.283500000834465, 256711.905699998140335 ], [ 358983.866200000047684, 256711.027199998497963 ], [ 358983.679700002074242, 256710.072799999266863 ], [ 358983.735399998724461, 256709.10190000012517 ], [ 358984.030000001192093, 256708.175000000745058 ], [ 358984.545100003480911, 256707.350099999457598 ], [ 358985.248499996960163, 256706.67850000038743 ], [ 358986.096400000154972, 256706.202199999243021 ], [ 358986.874700002372265, 256705.976399999111891 ], [ 358988.101400002837181, 256705.667899999767542 ], [ 358989.274700000882149, 256705.195199999958277 ], [ 358990.372800000011921, 256704.567200001329184 ], [ 358991.375100001692772, 256703.795499999076128 ], [ 358991.859700001776218, 256703.204999998211861 ], [ 358992.134999997913837, 256702.492400001734495 ], [ 358992.17339999973774, 256701.729400001466274 ], [ 358991.970799997448921, 256700.992800001055002 ], [ 358991.547799997031689, 256700.356600001454353 ], [ 358991.102300003170967, 256699.978999998420477 ], [ 358968.64019999653101, 256685.209399998188019 ], [ 358966.635399997234344, 256683.888000000268221 ], [ 358964.507100000977516, 256682.776599999517202 ], [ 358962.277000002563, 256681.886599998921156 ], [ 358959.968199998140335, 256681.227299999445677 ], [ 358959.047399997711182, 256681.033399999141693 ], [ 358946.245200000703335, 256678.602699998766184 ], [ 358944.899800002574921, 256678.220899999141693 ], [ 358943.618600003421307, 256677.660100001841784 ], [ 358942.425399996340275, 256676.930599998682737 ], [ 358941.342200003564358, 256676.046000000089407 ], [ 358935.202799998223782, 256670.293299999088049 ], [ 358928.731299996376038, 256666.936599999666214 ], [ 358924.127400003373623, 256665.950599998235703 ], [ 358920.948600001633167, 256665.950599998235703 ], [ 358918.537000000476837, 256667.265299998223782 ], [ 358916.892800003290176, 256669.346900001168251 ], [ 358910.754399999976158, 256675.8108000010252 ], [ 358907.465899996459484, 256678.002000000327826 ], [ 358904.067800000309944, 256679.097600001841784 ], [ 358867.079899996519089, 256682.826799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401591400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9270394, "LATITUDE": 18.3403228, "OBJECTID_1": 12411, "PARCEL_NO_": "105401591400", "Tax_Legal_": "NORRE GADE 28-29 KINGS QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 772100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.255204112300007, "SHAPE_Area": 335.440482734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359227.833999998867512, 256773.111000001430511 ], [ 359227.128600001335144, 256762.510999999940395 ], [ 359222.990900002419949, 256759.86939999833703 ], [ 359215.756800003349781, 256762.581000000238419 ], [ 359208.473399996757507, 256765.157000001519918 ], [ 359201.143200002610683, 256767.596599999815226 ], [ 359193.768700003623962, 256769.898899998515844 ], [ 359194.189999997615814, 256775.941899999976158 ], [ 359227.833999998867512, 256773.111000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401601700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92571438, "LATITUDE": 18.34033133, "OBJECTID_1": 12432, "PARCEL_NO_": "105401601700", "Tax_Legal_": "NORRE GADE 24CB KINGS QUARTER", "Name": "WILKINSON BURNER, ERMA", "Address": "PO BOX 7242", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8400, "Improved_V": 34900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.163090706700004, "SHAPE_Area": 403.07963039200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359347.478100001811981, 256778.416900001466274 ], [ 359366.631399996578693, 256777.598600000143051 ], [ 359367.455399997532368, 256772.632100000977516 ], [ 359368.571599997580051, 256764.508200000971556 ], [ 359355.649899996817112, 256764.402499999850988 ], [ 359338.760099999606609, 256764.264199998229742 ], [ 359338.108999997377396, 256778.817200001329184 ], [ 359347.478100001811981, 256778.416900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401601600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92593743, "LATITUDE": 18.34033575, "OBJECTID_1": 12431, "PARCEL_NO_": "105401601600", "Tax_Legal_": "NORRE GADE 24cba KINGS QUARTER", "Name": "WILKINSON BURNER, ERMA", "Address": "PO BOX 7242", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.635843631200004, "SHAPE_Area": 274.108368364 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359324.128700003027916, 256779.414500001817942 ], [ 359338.108999997377396, 256778.817200001329184 ], [ 359338.760099999606609, 256764.264199998229742 ], [ 359319.41499999910593, 256764.105900000780821 ], [ 359320.921099998056889, 256779.551600001752377 ], [ 359324.128700003027916, 256779.414500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401601500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92609541, "LATITUDE": 18.3403433, "OBJECTID_1": 12430, "PARCEL_NO_": "105401601500", "Tax_Legal_": "BJERGE GADE 1A KINGS QUARTER", "Name": "RICHARDSON, DALE", "Address": "PO Box 1161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7100, "Improved_V": 31300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.6643450774, "SHAPE_Area": 240.34791339399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359320.921099998056889, 256779.551600001752377 ], [ 359319.41499999910593, 256764.105900000780821 ], [ 359306.106299996376038, 256764.126200001686811 ], [ 359305.233999997377396, 256766.393399998545647 ], [ 359304.353900000452995, 256780.193199999630451 ], [ 359320.921099998056889, 256779.551600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401601300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92587368, "LATITUDE": 18.34046604, "OBJECTID_1": 12428, "PARCEL_NO_": "105401601300", "Tax_Legal_": "NORRE GADE 24CD KINGS QUARTER", "Name": "LEWIS, JUTA GUILER", "Address": "PO Box 7127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.386570728600006, "SHAPE_Area": 326.67222002599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359347.362000003457069, 256792.052799999713898 ], [ 359347.478100001811981, 256778.416900001466274 ], [ 359338.108999997377396, 256778.817200001329184 ], [ 359324.128700003027916, 256779.414500001817942 ], [ 359325.052299998700619, 256794.338899999856949 ], [ 359347.362000003457069, 256792.052799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401601200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92607624, "LATITUDE": 18.34048204, "OBJECTID_1": 12427, "PARCEL_NO_": "105401601200", "Tax_Legal_": "BJERGE GADE 2 KINGS QTR", "Name": "FRANCIS, O. E. , PAYNE, JR. D. R. & R. G", "Address": "PO Box 1603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37500, "Improved_V": 35000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.4223660671, "SHAPE_Area": 312.83370389599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359325.052299998700619, 256794.338899999856949 ], [ 359324.128700003027916, 256779.414500001817942 ], [ 359320.921099998056889, 256779.551600001752377 ], [ 359304.353900000452995, 256780.193199999630451 ], [ 359304.525200001895428, 256796.255199998617172 ], [ 359325.052299998700619, 256794.338899999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105401431100", "MAP": null, "PARCEL_NAM": "WATERFRONT", "ACRE": null, "LONGITUDE": -64.93681348, "LATITUDE": 18.33919246, "OBJECTID_1": 12110, "PARCEL_NO_": "105401431100", "Tax_Legal_": "WATERFRONT KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7106900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1424.67489329, "SHAPE_Area": 9456.30939812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357961.552599996328354, 256563.363299999386072 ], [ 357944.71169999986887, 256552.459699999541044 ], [ 357943.114699997007847, 256555.230000000447035 ], [ 357916.634300000965595, 256597.711599998176098 ], [ 357918.544900000095367, 256597.850999999791384 ], [ 358009.636900000274181, 256613.66780000180006 ], [ 358027.644000001251698, 256616.79450000077486 ], [ 358090.965700000524521, 256628.158500000834465 ], [ 358478.890799999237061, 256696.21059999987483 ], [ 358485.229099996387959, 256697.446299999952316 ], [ 358491.516199998557568, 256698.920299999415874 ], [ 358497.743199996650219, 256700.630699999630451 ], [ 358503.901199996471405, 256702.57490000128746 ], [ 358509.98139999806881, 256704.750199999660254 ], [ 358515.975199997425079, 256707.153400000184774 ], [ 358521.873999997973442, 256709.781199999153614 ], [ 358527.669299997389317, 256712.629799999296665 ], [ 358533.353000000119209, 256715.695199999958277 ], [ 358538.917000003159046, 256718.972899999469519 ], [ 358544.353200003504753, 256722.458399999886751 ], [ 358547.141400001943111, 256724.361299999058247 ], [ 358580.110600002110004, 256747.342599999159575 ], [ 358586.006399996578693, 256739.191300000995398 ], [ 358585.862400002777576, 256739.090999998152256 ], [ 358552.893200002610683, 256716.109700001776218 ], [ 358547.3733000010252, 256712.410599999129772 ], [ 358541.7212999984622, 256708.916499998420477 ], [ 358535.944899998605251, 256705.632100000977516 ], [ 358530.052000001072884, 256702.561799999326468 ], [ 358524.050399996340275, 256699.709800001233816 ], [ 358517.948100000619888, 256697.079900000244379 ], [ 358511.753499999642372, 256694.675700001418591 ], [ 358505.474899999797344, 256692.500300001353025 ], [ 358499.120700001716614, 256690.556699998676777 ], [ 358492.699400000274181, 256688.847500000149012 ], [ 358486.219800002872944, 256687.375100001692772 ], [ 358480.628799997270107, 256686.30350000038743 ], [ 358098.521700002253056, 256619.271999999880791 ], [ 358080.44990000128746, 256615.632100000977516 ], [ 358044.259300000965595, 256604.359099999070168 ], [ 358014.205700002610683, 256591.228900000452995 ], [ 357998.466700002551079, 256584.352600000798702 ], [ 357961.552599996328354, 256563.363299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402110400", "MAP": "C9-175-T74", "PARCEL_NAM": "1A", "ACRE": null, "LONGITUDE": -64.92109884, "LATITUDE": 18.34025369, "OBJECTID_1": 19204, "PARCEL_NO_": "105402110400", "Tax_Legal_": "8AC&1A ROSS EST KINGS QTR", "Name": "ROSS EST. LTD. PARTNERSHIP", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 632000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.992896223, "SHAPE_Area": 1636.24676574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359853.589599996805191, 256774.608800001442432 ], [ 359868.800200000405312, 256763.380499999970198 ], [ 359868.006399996578693, 256754.253400001674891 ], [ 359867.120099999010563, 256745.068199999630451 ], [ 359824.497000001370907, 256748.42509999871254 ], [ 359816.648500002920628, 256801.878400001674891 ], [ 359853.589599996805191, 256774.608800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402110500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92074813000001, "LATITUDE": 18.34045225, "OBJECTID_1": 19206, "PARCEL_NO_": "105402110500", "Tax_Legal_": "8 FIRST STREET EST THOMAS KINGS QTR", "Name": "JACOBS, NORA WILLIAMS", "Address": "PO Box 302490", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90000, "Improved_V": 187700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.41120869700001, "SHAPE_Area": 593.81095432200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359873.296899996697903, 256761.104299999773502 ], [ 359872.437399998307228, 256761.076499998569489 ], [ 359871.604400001466274, 256761.289799999445677 ], [ 359870.864000000059605, 256761.727400001138449 ], [ 359868.800200000405312, 256763.380499999970198 ], [ 359872.7820999994874, 256809.162900000810623 ], [ 359873.006700001657009, 256811.745700001716614 ], [ 359890.539599999785423, 256805.276299998164177 ], [ 359875.64360000193119, 256763.091499999165535 ], [ 359875.371799997985363, 256762.519299998879433 ], [ 359874.82490000128746, 256761.855599999427795 ], [ 359874.114399999380112, 256761.371100001037121 ], [ 359873.296899996697903, 256761.104299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401601100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92583266, "LATITUDE": 18.34061272, "OBJECTID_1": 12426, "PARCEL_NO_": "105401601100", "Tax_Legal_": "NORRE GADE 24CAA KINGS QUARTER", "Name": "REED, JANET", "Address": "5923 Radecke Ave", "City": "Baltimore", "State": "Maryland", "Zip": 21206, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.372808639, "SHAPE_Area": 421.867959472 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359363.068599998950958, 256805.269099999219179 ], [ 359346.684299997985363, 256804.936000000685453 ], [ 359347.362000003457069, 256792.052799999713898 ], [ 359325.052299998700619, 256794.338899999856949 ], [ 359325.943999998271465, 256808.746199999004602 ], [ 359363.114100001752377, 256810.289000000804663 ], [ 359363.07880000025034, 256809.034299999475479 ], [ 359363.059399999678135, 256807.77930000051856 ], [ 359363.056000001728535, 256806.52419999986887 ], [ 359363.068599998950958, 256805.269099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401601000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92606722, "LATITUDE": 18.34061622, "OBJECTID_1": 12425, "PARCEL_NO_": "105401601000", "Tax_Legal_": "BJERGE GADE 3 KINGS", "Name": "PENN, LEONIE & CHILDREN", "Address": "1203 Bjerge Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6400, "Improved_V": 52600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.039979759900007, "SHAPE_Area": 296.56446388099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359325.943999998271465, 256808.746199999004602 ], [ 359325.052299998700619, 256794.338899999856949 ], [ 359304.525200001895428, 256796.255199998617172 ], [ 359305.326499998569489, 256810.527199998497963 ], [ 359325.943999998271465, 256808.746199999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401440900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93148569, "LATITUDE": 18.34073867, "OBJECTID_1": 12120, "PARCEL_NO_": "105401440900", "Tax_Legal_": "WATERFRONT PROPERTY KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8847000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.85878311299999, "SHAPE_Area": 1398.18926341 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358766.133000001311302, 256823.645500000566244 ], [ 358769.068199999630451, 256823.292199999094009 ], [ 358771.976599998772144, 256822.761799998581409 ], [ 358774.847499996423721, 256822.056099999696016 ], [ 358777.670299999415874, 256821.177700001746416 ], [ 358778.130599997937679, 256821.016399998217821 ], [ 358778.589299999177456, 256820.850600000470877 ], [ 358779.046300001442432, 256820.680100001394749 ], [ 358779.501500003039837, 256820.505100000649691 ], [ 358781.978500001132488, 256819.538800001144409 ], [ 358782.032200001180172, 256819.520599998533726 ], [ 358782.086000002920628, 256819.502399999648333 ], [ 358782.139700002968311, 256819.484200000762939 ], [ 358782.193499997258186, 256819.466099999845028 ], [ 358783.327799998223782, 256819.093699999153614 ], [ 358784.467299997806549, 256818.737799998372793 ], [ 358785.611800000071526, 256818.398499999195337 ], [ 358786.761200003325939, 256818.075899999588728 ], [ 358789.815999999642372, 256817.304699998348951 ], [ 358792.898199997842312, 256816.651200000196695 ], [ 358796.003100000321865, 256816.116200000047684 ], [ 358799.126199997961521, 256815.700500000268221 ], [ 358807.47749999910593, 256814.471000000834465 ], [ 358700.146799996495247, 256797.490299999713898 ], [ 358699.674599997699261, 256797.427099999040365 ], [ 358698.457000002264977, 256797.43470000103116 ], [ 358697.265100002288818, 256797.684000000357628 ], [ 358696.146600000560284, 256798.165300000458956 ], [ 358695.145999997854233, 256798.859299998730421 ], [ 358694.303300000727177, 256799.738299999386072 ], [ 358693.652199998497963, 256800.767200000584126 ], [ 358693.218500003218651, 256801.905099999159575 ], [ 358691.579300001263618, 256807.967099998146296 ], [ 358720.564000003039837, 256815.126499999314547 ], [ 358723.891199998557568, 256815.948399998247623 ], [ 358739.362400002777576, 256819.769799999892712 ], [ 358750.081500001251698, 256822.417500000447035 ], [ 358750.182099997997284, 256822.442299999296665 ], [ 358750.282700002193451, 256822.46680000051856 ], [ 358750.383400000631809, 256822.491099998354912 ], [ 358750.484200000762939, 256822.5152000002563 ], [ 358751.01860000193119, 256822.639199998229742 ], [ 358751.554300002753735, 256822.757199998944998 ], [ 358752.091399997472763, 256822.869199998676777 ], [ 358752.629600003361702, 256822.975099999457598 ], [ 358753.761399999260902, 256823.177400000393391 ], [ 358754.897600002586842, 256823.353000000119209 ], [ 358756.037699997425079, 256823.5016999989748 ], [ 358757.180900000035763, 256823.623500000685453 ], [ 358759.416199997067451, 256823.783300001174212 ], [ 358761.656499996781349, 256823.840300001204014 ], [ 358763.896999999880791, 256823.794300001114607 ], [ 358766.133000001311302, 256823.645500000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401600900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9257852, "LATITUDE": 18.34074675, "OBJECTID_1": 12424, "PARCEL_NO_": "105401600900", "Tax_Legal_": "NORRE GADE 24CC KINGS QUARTER", "Name": "REED, JUDITH", "Address": "807 Somerset Pl NW", "City": "Washington", "State": "District of Columbia", "Zip": 20011, "Country": "United States", "Land_Value": 14800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.594822283, "SHAPE_Area": 567.911355426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359363.902199998497963, 256819.779399998486042 ], [ 359363.619300000369549, 256817.414599999785423 ], [ 359363.393500000238419, 256815.043699998408556 ], [ 359363.225100003182888, 256812.668000001460314 ], [ 359363.114100001752377, 256810.289000000804663 ], [ 359325.943999998271465, 256808.746199999004602 ], [ 359326.913199998438358, 256824.4070999994874 ], [ 359345.368500001728535, 256824.76630000025034 ], [ 359364.664899997413158, 256825.1418999992311 ], [ 359363.902199998497963, 256819.779399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401600800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92605942, "LATITUDE": 18.34075099, "OBJECTID_1": 12423, "PARCEL_NO_": "105401600800", "Tax_Legal_": "BJERGE GADE 4 KINGS QUARTER", "Name": "REED, JUDITH & JANET", "Address": "807 Somerset Pl NW", "City": "Washington", "State": "District of Columbia", "Zip": 20011, "Country": "United States", "Land_Value": 8300, "Improved_V": 33600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.208300998300004, "SHAPE_Area": 326.12013989000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359326.913199998438358, 256824.4070999994874 ], [ 359325.943999998271465, 256808.746199999004602 ], [ 359305.326499998569489, 256810.527199998497963 ], [ 359305.262900002300739, 256825.663499999791384 ], [ 359326.913199998438358, 256824.4070999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401591700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92630684, "LATITUDE": 18.340574, "OBJECTID_1": 12414, "PARCEL_NO_": "105401591700", "Tax_Legal_": "BJERGE GADE 22&22A KINGS QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 364400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.23641922199999, "SHAPE_Area": 630.22306203899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359296.585699997842312, 256828.256000000983477 ], [ 359296.095600001513958, 256815.808800000697374 ], [ 359295.166000001132488, 256790.707600001245737 ], [ 359292.642599999904633, 256786.457699999213219 ], [ 359292.90820000320673, 256770.254799999296665 ], [ 359294.634700000286102, 256768.129799999296665 ], [ 359296.949600003659725, 256765.154599998146296 ], [ 359283.339400000870228, 256765.98030000180006 ], [ 359283.484999999403954, 256768.925400000065565 ], [ 359286.461000002920628, 256829.112900000065565 ], [ 359296.585699997842312, 256828.256000000983477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401591600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92660688, "LATITUDE": 18.3406055, "OBJECTID_1": 12413, "PARCEL_NO_": "105401591600", "Tax_Legal_": "NORRE GADE 26 KINGS QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 282100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.786554534, "SHAPE_Area": 1071.9174536099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359268.788599997758865, 256830.60869999974966 ], [ 359265.252599999308586, 256770.129099998623133 ], [ 359247.269799999892712, 256771.310600001364946 ], [ 359251.575300000607967, 256832.065499998629093 ], [ 359268.788599997758865, 256830.60869999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402110400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92114558, "LATITUDE": 18.34061996, "OBJECTID_1": 19204, "PARCEL_NO_": "105402110400", "Tax_Legal_": "8AC&1A ROSS EST KINGS QTR", "Name": "ROSS EST. LTD. PARTNERSHIP", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 632000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.56378093800001, "SHAPE_Area": 1493.43126409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359853.589599996805191, 256774.608800001442432 ], [ 359816.648500002920628, 256801.878400001674891 ], [ 359812.591700002551079, 256829.507399998605251 ], [ 359812.496299996972084, 256830.178700000047684 ], [ 359812.4070999994874, 256830.850900001823902 ], [ 359812.324199996888638, 256831.523800000548363 ], [ 359812.247500002384186, 256832.197500001639128 ], [ 359842.941600002348423, 256826.911899998784065 ], [ 359855.550800003111362, 256805.949599999934435 ], [ 359853.589599996805191, 256774.608800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401591500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92675362, "LATITUDE": 18.34061327, "OBJECTID_1": 12412, "PARCEL_NO_": "105401591500", "Tax_Legal_": "NORRE GADE 27E KINGS QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 292900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.60977417500001, "SHAPE_Area": 846.79294429300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359251.575300000607967, 256832.065499998629093 ], [ 359247.269799999892712, 256771.310600001364946 ], [ 359247.035499997437, 256768.005199998617172 ], [ 359233.905100002884865, 256772.534499999135733 ], [ 359237.943800002336502, 256833.219200000166893 ], [ 359251.575300000607967, 256832.065499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401541700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92542203, "LATITUDE": 18.34079881, "OBJECTID_1": 12338, "PARCEL_NO_": "105401541700", "Tax_Legal_": "TAARNEBERG 41A KINGS QTR", "Name": "FREDERCK LUTHERAN CHURCH", "Address": "PO Box 58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 137700, "Improved_V": 95800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.639180163999995, "SHAPE_Area": 503.49474619599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359369.343400001525879, 256812.843199998140335 ], [ 359369.454999998211861, 256814.3739 ], [ 359369.592000000178814, 256815.90260000154376 ], [ 359369.754299998283386, 256817.428700000047684 ], [ 359369.941899999976158, 256818.951999999582767 ], [ 359371.902999997138977, 256832.740200001746416 ], [ 359395.889399997889996, 256833.921300001442432 ], [ 359396.177799999713898, 256814.236299999058247 ], [ 359369.343400001525879, 256812.843199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93168956, "LATITUDE": 18.34087193, "OBJECTID_1": 12115, "PARCEL_NO_": "105401440400", "Tax_Legal_": "DRONNINGENS GADE 36A-1,36-1&2 QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1275800, "Improved_V": 398700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.796237711099998, "SHAPE_Area": 84.000815842600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358723.891199998557568, 256815.948399998247623 ], [ 358720.564000003039837, 256815.126499999314547 ], [ 358716.893399998545647, 256834.608300000429153 ], [ 358722.027800001204014, 256835.230999998748302 ], [ 358723.891199998557568, 256815.948399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401591300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92628762, "LATITUDE": 18.34088639, "OBJECTID_1": 12410, "PARCEL_NO_": "105401591300", "Tax_Legal_": "NORRE GADE 24 AAA KINGS QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.266179112499998, "SHAPE_Area": 70.920808761299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359296.860699996352196, 256835.30350000038743 ], [ 359296.759700000286102, 256832.675799999386072 ], [ 359296.585699997842312, 256828.256000000983477 ], [ 359286.461000002920628, 256829.112900000065565 ], [ 359286.805100001394749, 256836.071899998933077 ], [ 359296.860699996352196, 256835.30350000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105401440400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93159687000001, "LATITUDE": 18.34089302, "OBJECTID_1": 12115, "PARCEL_NO_": "105401440400", "Tax_Legal_": "DRONNINGENS GADE 36A-1,36-1&2 QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1275800, "Improved_V": 398700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.9744427941, "SHAPE_Area": 333.917433168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358739.362400002777576, 256819.769799999892712 ], [ 358723.891199998557568, 256815.948399998247623 ], [ 358722.027800001204014, 256835.230999998748302 ], [ 358721.731499999761581, 256838.296799998730421 ], [ 358737.870300002396107, 256839.137499999254942 ], [ 358739.362400002777576, 256819.769799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401441400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93146879, "LATITUDE": 18.3409102, "OBJECTID_1": 12122, "PARCEL_NO_": "105401441400", "Tax_Legal_": "36A-2&37A DRONNINGENS GADE QUEENS QTR", "Name": "D G PORTFOLIO, INC.", "Address": "PO Box 6280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1100000, "Improved_V": 636000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.500522117800003, "SHAPE_Area": 206.406535647 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358750.484200000762939, 256822.5152000002563 ], [ 358750.383400000631809, 256822.491099998354912 ], [ 358750.282700002193451, 256822.46680000051856 ], [ 358750.182099997997284, 256822.442299999296665 ], [ 358750.081500001251698, 256822.417500000447035 ], [ 358739.362400002777576, 256819.769799999892712 ], [ 358737.870300002396107, 256839.137499999254942 ], [ 358738.011200003325939, 256839.144900001585484 ], [ 358748.763599999248981, 256840.114000000059605 ], [ 358750.484200000762939, 256822.5152000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401600700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92605791, "LATITUDE": 18.34088746, "OBJECTID_1": 12422, "PARCEL_NO_": "105401600700", "Tax_Legal_": "BJERGE GADE 5 KINGS QTR", "Name": "ROBLES, IDALIA", "Address": "PO Box 12", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6900, "Improved_V": 45100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.170845493000002, "SHAPE_Area": 308.42581783999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359325.208599999547005, 256839.756999999284744 ], [ 359326.913199998438358, 256824.4070999994874 ], [ 359305.262900002300739, 256825.663499999791384 ], [ 359306.503799997270107, 256840.912500001490116 ], [ 359325.208599999547005, 256839.756999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401591700", "MAP": null, "PARCEL_NAM": "24AAA BJERGE GADE", "ACRE": null, "LONGITUDE": -64.9262846, "LATITUDE": 18.34094609, "OBJECTID_1": 12414, "PARCEL_NO_": "105401591700", "Tax_Legal_": "BJERGE GADE 22&22A KINGS QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 364400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.541864682000003, "SHAPE_Area": 62.461169884100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359297.097499996423721, 256841.459300000220537 ], [ 359296.860699996352196, 256835.30350000038743 ], [ 359286.805100001394749, 256836.071899998933077 ], [ 359287.115000002086163, 256842.339600000530481 ], [ 359297.097499996423721, 256841.459300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401591000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92658123, "LATITUDE": 18.34094108, "OBJECTID_1": 12408, "PARCEL_NO_": "105401591000", "Tax_Legal_": "NORRE GADE 26B KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.045980968099997, "SHAPE_Area": 229.12409992299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359269.564900003373623, 256843.887299999594688 ], [ 359268.788599997758865, 256830.60869999974966 ], [ 359251.575300000607967, 256832.065499998629093 ], [ 359252.047399997711182, 256838.728000000119209 ], [ 359252.519599996507168, 256845.390500001609325 ], [ 359269.564900003373623, 256843.887299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93170567, "LATITUDE": 18.34100879, "OBJECTID_1": 12115, "PARCEL_NO_": "105401440400", "Tax_Legal_": "DRONNINGENS GADE 36A-1,36-1&2 QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1275800, "Improved_V": 398700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.7294011627, "SHAPE_Area": 71.220966106299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358721.557499997317791, 256840.097300000488758 ], [ 358721.731499999761581, 256838.296799998730421 ], [ 358722.027800001204014, 256835.230999998748302 ], [ 358716.893399998545647, 256834.608300000429153 ], [ 358714.761600002646446, 256845.922800000756979 ], [ 358722.211400002241135, 256846.568399999290705 ], [ 358722.653300002217293, 256843.44200000166893 ], [ 358721.557499997317791, 256840.097300000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401590800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92672454, "LATITUDE": 18.34098419, "OBJECTID_1": 12407, "PARCEL_NO_": "105401590800", "Tax_Legal_": "NORRE GADE 27C KINGS QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.965176846399999, "SHAPE_Area": 92.751637257300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359252.519599996507168, 256845.390500001609325 ], [ 359252.047399997711182, 256838.728000000119209 ], [ 359238.379900000989437, 256839.77250000089407 ], [ 359238.834100000560284, 256846.59739999845624 ], [ 359252.519599996507168, 256845.390500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402110200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92119833, "LATITUDE": 18.34096536, "OBJECTID_1": 19201, "PARCEL_NO_": "105402110200", "Tax_Legal_": "8AB ROSS ESTATE KINGS QTR", "Name": "ROSS EST. LTD. PARTNERSHIP", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 583200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.132698172800005, "SHAPE_Area": 247.74212194200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359848.299699999392033, 256845.866200000047684 ], [ 359846.779899999499321, 256839.511100001633167 ], [ 359811.928700000047684, 256844.200500000268221 ], [ 359812.054799996316433, 256846.044700000435114 ], [ 359812.227399997413158, 256847.885200001299381 ], [ 359812.44650000333786, 256849.720800001174212 ], [ 359812.711900003254414, 256851.550200000405312 ], [ 359848.299699999392033, 256845.866200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401600600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92567104, "LATITUDE": 18.34093113, "OBJECTID_1": 12421, "PARCEL_NO_": "105401600600", "Tax_Legal_": "NORRE GADE 24BC KINGS QTR", "Name": "FREDERICK LUTHERAN CH.", "Address": "PO Box 58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.390115301799995, "SHAPE_Area": 481.46013088500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359365.916599996387959, 256850.857299998402596 ], [ 359366.334399998188019, 256848.956500001251698 ], [ 359366.732100002467632, 256846.185600001364946 ], [ 359366.887299999594688, 256843.390700001269579 ], [ 359366.798799999058247, 256840.5929000005126 ], [ 359366.467200003564358, 256837.813400000333786 ], [ 359364.664899997413158, 256825.1418999992311 ], [ 359345.368500001728535, 256824.76630000025034 ], [ 359349.231899999082088, 256848.197999998927116 ], [ 359350.915299996733665, 256848.232700001448393 ], [ 359351.692800000309944, 256851.616599999368191 ], [ 359365.916599996387959, 256850.857299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105401581300", "MAP": null, "PARCEL_NAM": "30A & 31A NORRE GADE", "ACRE": null, "LONGITUDE": -64.9273561, "LATITUDE": 18.34072477, "OBJECTID_1": 12400, "PARCEL_NO_": "105401581300", "Tax_Legal_": "NORRE GADE 30A&31A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 456900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.978165295, "SHAPE_Area": 1837.4666145000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359193.315600000321865, 256851.042300000786781 ], [ 359187.780699998140335, 256771.657999999821186 ], [ 359181.974600002169609, 256773.270599998533726 ], [ 359176.145599998533726, 256774.798500001430511 ], [ 359170.294900000095367, 256776.241300001740456 ], [ 359164.423799999058247, 256777.598700001835823 ], [ 359169.663199998438358, 256852.982400000095367 ], [ 359193.315600000321865, 256851.042300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401600500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92586855, "LATITUDE": 18.3409395, "OBJECTID_1": 12420, "PARCEL_NO_": "105401600500", "Tax_Legal_": "24BA&24BB NORRE GADE KINGS QUARTER", "Name": "YOUNG, CHRISTOPHER & RAMONA", "Address": "1711 W Jetton Ave", "City": "Tampa", "State": "Florida", "Zip": 33606, "Country": "United States", "Land_Value": 18300, "Improved_V": 74300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.85192437000001, "SHAPE_Area": 562.15598730299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359334.660199999809265, 256855.65430000051856 ], [ 359333.984499998390675, 256847.883099999278784 ], [ 359349.231899999082088, 256848.197999998927116 ], [ 359345.368500001728535, 256824.76630000025034 ], [ 359326.913199998438358, 256824.4070999994874 ], [ 359325.208599999547005, 256839.756999999284744 ], [ 359327.004799999296665, 256856.137800000607967 ], [ 359334.660199999809265, 256855.65430000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401581200", "MAP": null, "PARCEL_NAM": "33A & 32A NORRE GADE", "ACRE": null, "LONGITUDE": -64.92767943, "LATITUDE": 18.34077232, "OBJECTID_1": 12399, "PARCEL_NO_": "105401581200", "Tax_Legal_": "NORRE GADE 33A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 642100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.25175330499999, "SHAPE_Area": 3327.1705395700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359144.203699998557568, 256855.070599999278784 ], [ 359169.663199998438358, 256852.982400000095367 ], [ 359164.423799999058247, 256777.598700001835823 ], [ 359155.244599997997284, 256779.541799999773502 ], [ 359146.023599997162819, 256781.276200000196695 ], [ 359136.765699997544289, 256782.801100000739098 ], [ 359127.475500002503395, 256784.115600001066923 ], [ 359127.017200000584126, 256784.187100000679493 ], [ 359125.57599999755621, 256784.572999998927116 ], [ 359124.216700002551079, 256785.188099998980761 ], [ 359122.975599996745586, 256786.016100000590086 ], [ 359121.88570000231266, 256787.03489999845624 ], [ 359120.975900001823902, 256788.217399999499321 ], [ 359120.270499996840954, 256789.5320999994874 ], [ 359119.788400001823902, 256790.943999998271465 ], [ 359119.542199999094009, 256792.415600001811981 ], [ 359119.538599997758865, 256793.907499998807907 ], [ 359124.525700002908707, 256856.684599999338388 ], [ 359144.203699998557568, 256855.070599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401600400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92605197, "LATITUDE": 18.34103326, "OBJECTID_1": 12419, "PARCEL_NO_": "105401600400", "Tax_Legal_": "BJERGE GADE 6 KINGS QUARTER", "Name": "DAVID, ESANTIS", "Address": "321 Nuber Ave", "City": "Mount Vernon", "State": "New York", "Zip": 10553, "Country": "United States", "Land_Value": 5900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.660658742500004, "SHAPE_Area": 318.72713313899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359327.004799999296665, 256856.137800000607967 ], [ 359325.208599999547005, 256839.756999999284744 ], [ 359306.503799997270107, 256840.912500001490116 ], [ 359307.124700002372265, 256857.4206000007689 ], [ 359327.004799999296665, 256856.137800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401461000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92898952, "LATITUDE": 18.3411053, "OBJECTID_1": 12133, "PARCEL_NO_": "105401461000", "Tax_Legal_": "NORRE GADE 38B&39A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 123000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.257499471100004, "SHAPE_Area": 207.78484136399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359019.506800003349781, 256856.806499999016523 ], [ 359018.800599999725819, 256849.245799999684095 ], [ 359014.229099996387959, 256849.543299999088049 ], [ 358992.6587999984622, 256850.947200000286102 ], [ 358993.255300000309944, 256857.384799998253584 ], [ 358993.422200001776218, 256859.1858000010252 ], [ 359019.506800003349781, 256856.806499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401460300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92922184, "LATITUDE": 18.34111578, "OBJECTID_1": 12131, "PARCEL_NO_": "105401460300", "Tax_Legal_": "NORRE GADE 40C&40CA KINGS QTR", "Name": "VINAKA, INC.", "Address": "PO Box 303830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.444381026499997, "SHAPE_Area": 153.552112075 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358993.255300000309944, 256857.384799998253584 ], [ 358992.6587999984622, 256850.947200000286102 ], [ 358969.641099996864796, 256852.445300001651049 ], [ 358970.273400001227856, 256859.269799999892712 ], [ 358993.255300000309944, 256857.384799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401591100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92627789, "LATITUDE": 18.34106144, "OBJECTID_1": 12409, "PARCEL_NO_": "105401591100", "Tax_Legal_": "NORRE GADE 24A KINGS QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.704109548799998, "SHAPE_Area": 192.87373557199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359297.98369999974966, 256860.80629999935627 ], [ 359297.290899999439716, 256846.488099999725819 ], [ 359297.097499996423721, 256841.459300000220537 ], [ 359287.115000002086163, 256842.339600000530481 ], [ 359288.071299999952316, 256861.680500000715256 ], [ 359297.98369999974966, 256860.80629999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401590700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92671609, "LATITUDE": 18.3410859, "OBJECTID_1": 12406, "PARCEL_NO_": "105401590700", "Tax_Legal_": "NORRE GADE 27B KINGS QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.17727002, "SHAPE_Area": 217.78680482600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359246.794799998402596, 256861.769799999892712 ], [ 359253.637599997222424, 256861.166299998760223 ], [ 359252.519599996507168, 256845.390500001609325 ], [ 359238.834100000560284, 256846.59739999845624 ], [ 359239.884400002658367, 256862.379200000315905 ], [ 359246.794799998402596, 256861.769799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401581100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92804336, "LATITUDE": 18.34094097, "OBJECTID_1": 12397, "PARCEL_NO_": "105401581100", "Tax_Legal_": "NORRE GADE 34A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 451300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.81398154199999, "SHAPE_Area": 1046.1701410200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359103.489699997007847, 256870.700100000947714 ], [ 359116.372800000011921, 256869.519099999219179 ], [ 359111.283399999141693, 256805.453200001269579 ], [ 359111.17620000243187, 256804.453000001609325 ], [ 359111.014200001955032, 256803.460200000554323 ], [ 359110.797799997031689, 256802.477800000458956 ], [ 359110.527699999511242, 256801.508799999952316 ], [ 359096.3445999994874, 256802.808899998664856 ], [ 359100.452899999916553, 256870.978500001132488 ], [ 359103.489699997007847, 256870.700100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401600300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92575745000001, "LATITUDE": 18.34112382, "OBJECTID_1": 12418, "PARCEL_NO_": "105401600300", "Tax_Legal_": "24B NORRE GADE KINGS QTR", "Name": "YOUNG, CHRISTOPHER & RAMONA", "Address": "1711 W Jetton Ave", "City": "Tampa", "State": "Florida", "Zip": 33606, "Country": "United States", "Land_Value": 147400, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.428113894600003, "SHAPE_Area": 546.14649871400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359347.826399996876717, 256870.398299999535084 ], [ 359348.425200000405312, 256870.331399999558926 ], [ 359350.315700002014637, 256869.959399998188019 ], [ 359352.144199997186661, 256869.351700000464916 ], [ 359353.881300002336502, 256868.518300000578165 ], [ 359355.499499998986721, 256867.472300000488758 ], [ 359356.972699999809265, 256866.230500001460314 ], [ 359357.837700001895428, 256865.370400000363588 ], [ 359359.69539999961853, 256863.276399999856949 ], [ 359361.363899998366833, 256861.028799999505281 ], [ 359362.830600000917912, 256858.644600000232458 ], [ 359364.084299996495247, 256856.141800001263618 ], [ 359365.115599997341633, 256853.539500001817942 ], [ 359365.916599996387959, 256850.857299998402596 ], [ 359351.692800000309944, 256851.616599999368191 ], [ 359350.915299996733665, 256848.232700001448393 ], [ 359349.231899999082088, 256848.197999998927116 ], [ 359333.984499998390675, 256847.883099999278784 ], [ 359334.660199999809265, 256855.65430000051856 ], [ 359336.036200001835823, 256871.48030000180006 ], [ 359347.826399996876717, 256870.398299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401460300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92921191000001, "LATITUDE": 18.34120246, "OBJECTID_1": 12131, "PARCEL_NO_": "105401460300", "Tax_Legal_": "NORRE GADE 40C&40CA KINGS QTR", "Name": "VINAKA, INC.", "Address": "PO Box 303830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.395161543, "SHAPE_Area": 291.430928838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358994.411899998784065, 256869.867300000041723 ], [ 358993.422200001776218, 256859.1858000010252 ], [ 358993.255300000309944, 256857.384799998253584 ], [ 358970.273400001227856, 256859.269799999892712 ], [ 358971.449100002646446, 256871.957800000905991 ], [ 358994.411899998784065, 256869.867300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401600500", "MAP": null, "PARCEL_NAM": "24BB", "ACRE": null, "LONGITUDE": -64.92590755000001, "LATITUDE": 18.34117071, "OBJECTID_1": 12420, "PARCEL_NO_": "105401600500", "Tax_Legal_": "24BA&24BB NORRE GADE KINGS QUARTER", "Name": "YOUNG, CHRISTOPHER & RAMONA", "Address": "1711 W Jetton Ave", "City": "Tampa", "State": "Florida", "Zip": 33606, "Country": "United States", "Land_Value": 18300, "Improved_V": 74300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.744619874800001, "SHAPE_Area": 122.29785244200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359336.036200001835823, 256871.48030000180006 ], [ 359334.660199999809265, 256855.65430000051856 ], [ 359327.004799999296665, 256856.137800000607967 ], [ 359328.884099997580051, 256872.924699999392033 ], [ 359336.036200001835823, 256871.48030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401581000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92821832, "LATITUDE": 18.34095184, "OBJECTID_1": 12396, "PARCEL_NO_": "105401581000", "Tax_Legal_": "NORRE GADE 35A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 229500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.06221813600001, "SHAPE_Area": 1484.32289799 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359100.452899999916553, 256870.978500001132488 ], [ 359096.3445999994874, 256802.808899998664856 ], [ 359074.424300000071526, 256804.818300001323223 ], [ 359079.064499996602535, 256872.939100001007318 ], [ 359100.452899999916553, 256870.978500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402110300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92063848, "LATITUDE": 18.34092153, "OBJECTID_1": 19203, "PARCEL_NO_": "105402110300", "Tax_Legal_": "FIRST ST. 1ST SUB 2 4 6 EST THOMAS KINGS QTR", "Name": "CENTRAL PROPERTY, INC.", "Address": "PO Box 9068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 360000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.87965510500001, "SHAPE_Area": 1584.8473639199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359890.539599999785423, 256805.276299998164177 ], [ 359873.006700001657009, 256811.745700001716614 ], [ 359878.373199999332428, 256873.447500001639128 ], [ 359910.545900002121925, 256861.933299999684095 ], [ 359890.539599999785423, 256805.276299998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401600100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92603946, "LATITUDE": 18.34118339, "OBJECTID_1": 12417, "PARCEL_NO_": "105401600100", "Tax_Legal_": "BJERGE GADE 7 KINGS QTR", "Name": "TIWONI, R. HABIB & TECUMTHA & GLORIA", "Address": "2569 Seventh Ave", "City": "New York", "State": "New York", "Zip": 10039, "Country": "United States", "Land_Value": 37500, "Improved_V": 171700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.004746811299995, "SHAPE_Area": 347.57194318199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359328.884099997580051, 256872.924699999392033 ], [ 359327.004799999296665, 256856.137800000607967 ], [ 359307.124700002372265, 256857.4206000007689 ], [ 359307.5016999989748, 256874.188200000673532 ], [ 359328.884099997580051, 256872.924699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401590600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92627301, "LATITUDE": 18.34120224, "OBJECTID_1": 12405, "PARCEL_NO_": "105401590600", "Tax_Legal_": "24AA&PORTION 24A NORRE GADE KINGS QUARTER", "Name": "TERR. COURT OF THE V. I.", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 298500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.260461760399998, "SHAPE_Area": 113.77754544699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359293.132500000298023, 256873.887299999594688 ], [ 359295.700599998235703, 256872.503400001674891 ], [ 359297.288099996745586, 256870.320599999278784 ], [ 359297.954999998211861, 256867.870600000023842 ], [ 359298.0878000035882, 256862.956599999219179 ], [ 359297.98369999974966, 256860.80629999935627 ], [ 359288.071299999952316, 256861.680500000715256 ], [ 359288.695000000298023, 256874.29450000077486 ], [ 359293.132500000298023, 256873.887299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401441200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93095451000001, "LATITUDE": 18.34113266, "OBJECTID_1": 12121, "PARCEL_NO_": "105401441200", "Tax_Legal_": "NORRE GADE 48AB KINGS QUARTER", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 2101300, "Improved_V": 940500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.311499938, "SHAPE_Area": 939.17772053299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358822.598800003528595, 256867.521699998527765 ], [ 358818.963699996471405, 256850.157900001853704 ], [ 358793.21169999986887, 256854.153000000864267 ], [ 358786.761200003325939, 256818.075899999588728 ], [ 358785.611800000071526, 256818.398499999195337 ], [ 358784.467299997806549, 256818.737799998372793 ], [ 358783.327799998223782, 256819.093699999153614 ], [ 358782.193499997258186, 256819.466099999845028 ], [ 358783.696800000965595, 256870.107599999755621 ], [ 358791.176100000739098, 256868.410100001841784 ], [ 358792.738399997353554, 256874.333500001579523 ], [ 358822.598800003528595, 256867.521699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401590500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92642563, "LATITUDE": 18.34079402, "OBJECTID_1": 12404, "PARCEL_NO_": "105401590500", "Tax_Legal_": "NORRE GADE 25 KINGS QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 508300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.03202444300001, "SHAPE_Area": 1881.19899205 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359288.695000000298023, 256874.29450000077486 ], [ 359288.071299999952316, 256861.680500000715256 ], [ 359287.115000002086163, 256842.339600000530481 ], [ 359286.805100001394749, 256836.071899998933077 ], [ 359286.461000002920628, 256829.112900000065565 ], [ 359283.484999999403954, 256768.925400000065565 ], [ 359265.252599999308586, 256770.129099998623133 ], [ 359268.788599997758865, 256830.60869999974966 ], [ 359269.564900003373623, 256843.887299999594688 ], [ 359271.435300000011921, 256875.878400001674891 ], [ 359288.695000000298023, 256874.29450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401590400", "MAP": null, "PARCEL_NAM": "26A", "ACRE": "4,920 sq ft", "LONGITUDE": -64.92656561, "LATITUDE": 18.34114515, "OBJECTID_1": 12403, "PARCEL_NO_": "105401590400", "Tax_Legal_": "NORRE GADE 26A KINGS QTR", "Name": "FC HOLDINGS III, LLC", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 110700, "Improved_V": 50700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.969926412299998, "SHAPE_Area": 542.267357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359271.435300000011921, 256875.878400001674891 ], [ 359269.564900003373623, 256843.887299999594688 ], [ 359252.519599996507168, 256845.390500001609325 ], [ 359253.637599997222424, 256861.166299998760223 ], [ 359254.788400001823902, 256877.406100001186132 ], [ 359271.435300000011921, 256875.878400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401590200", "MAP": null, "PARCEL_NAM": "27AA", "ACRE": "1,562 sq ft", "LONGITUDE": -64.92667135000001, "LATITUDE": 18.3412272, "OBJECTID_1": 12402, "PARCEL_NO_": "105401590200", "Tax_Legal_": "NORRE GADE 27,27A&27AA KINGS QTR", "Name": "TERRITORIAL COURT OF V I", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 193700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.2029999863, "SHAPE_Area": 110.929335857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359254.788400001823902, 256877.406100001186132 ], [ 359253.637599997222424, 256861.166299998760223 ], [ 359246.794799998402596, 256861.769799999892712 ], [ 359248.066399998962879, 256878.022999998182058 ], [ 359254.788400001823902, 256877.406100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401590200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92673647, "LATITUDE": 18.34123386, "OBJECTID_1": 12402, "PARCEL_NO_": "105401590200", "Tax_Legal_": "NORRE GADE 27,27A&27AA KINGS QTR", "Name": "TERRITORIAL COURT OF V I", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 193700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.698756625500003, "SHAPE_Area": 114.72710795099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359248.066399998962879, 256878.022999998182058 ], [ 359246.794799998402596, 256861.769799999892712 ], [ 359239.884400002658367, 256862.379200000315905 ], [ 359240.968800000846386, 256878.674400001764297 ], [ 359248.066399998962879, 256878.022999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401580200", "MAP": null, "PARCEL_NAM": "36X NORRE GADE", "ACRE": "2,187 sq ft", "LONGITUDE": -64.92846224, "LATITUDE": 18.34124875, "OBJECTID_1": 12388, "PARCEL_NO_": "105401580200", "Tax_Legal_": "36A&36X NORRE GADE KINGS QUARTER", "Name": "ST. THOMAS FEDERAL CREDIT UNION", "Address": "PO Box 1138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 135200, "Improved_V": 188000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.465060793700005, "SHAPE_Area": 308.70648529 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359071.480200000107288, 256877.811900001019239 ], [ 359070.369300000369549, 256861.502199999988079 ], [ 359051.542199999094009, 256862.980399999767542 ], [ 359052.653099998831749, 256879.290100000798702 ], [ 359071.480200000107288, 256877.811900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401460200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92920063, "LATITUDE": 18.3413077, "OBJECTID_1": 12130, "PARCEL_NO_": "105401460200", "Tax_Legal_": "NORRE GADE 40B KINGS QTR", "Name": "VINAKA, INC.", "Address": "PO Box 303830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59600, "Improved_V": 646200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.670421896400001, "SHAPE_Area": 248.50303840199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358995.402500003576279, 256880.558499999344349 ], [ 358994.411899998784065, 256869.867300000041723 ], [ 358971.449100002646446, 256871.957800000905991 ], [ 358972.44709999859333, 256882.729499999433756 ], [ 358995.402500003576279, 256880.558499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402110200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92093544, "LATITUDE": 18.34083221, "OBJECTID_1": 19201, "PARCEL_NO_": "105402110200", "Tax_Legal_": "8AB ROSS ESTATE KINGS QTR", "Name": "ROSS EST. LTD. PARTNERSHIP", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 583200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 336.26437878500002, "SHAPE_Area": 2984.3511242499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359878.373199999332428, 256873.447500001639128 ], [ 359872.7820999994874, 256809.162900000810623 ], [ 359868.800200000405312, 256763.380499999970198 ], [ 359853.589599996805191, 256774.608800001442432 ], [ 359855.550800003111362, 256805.949599999934435 ], [ 359842.941600002348423, 256826.911899998784065 ], [ 359812.247500002384186, 256832.197500001639128 ], [ 359811.982900001108646, 256835.190799999982119 ], [ 359811.841399997472763, 256838.192400000989437 ], [ 359811.823399998247623, 256841.197399999946356 ], [ 359811.928700000047684, 256844.200500000268221 ], [ 359846.779899999499321, 256839.511100001633167 ], [ 359848.299699999392033, 256845.866200000047684 ], [ 359852.218199998140335, 256883.712600000202656 ], [ 359878.373199999332428, 256873.447500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401580800", "MAP": null, "PARCEL_NAM": "30 & 31 NORRE GADE", "ACRE": null, "LONGITUDE": -64.92731699, "LATITUDE": 18.34121786, "OBJECTID_1": 12395, "PARCEL_NO_": "105401580800", "Tax_Legal_": "30&31 NORRE GADE KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 255000, "Improved_V": 1600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.462368704, "SHAPE_Area": 759.32743543100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359195.532899998128414, 256882.844099998474121 ], [ 359193.315600000321865, 256851.042300000786781 ], [ 359169.663199998438358, 256852.982400000095367 ], [ 359171.889499999582767, 256885.013900000602007 ], [ 359195.532899998128414, 256882.844099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401580700", "MAP": null, "PARCEL_NAM": "32 NORRE GADE", "ACRE": null, "LONGITUDE": -64.92754918, "LATITUDE": 18.34123899, "OBJECTID_1": 12394, "PARCEL_NO_": "105401580700", "Tax_Legal_": "32 NORRE GADE KINGS QUARTER", "Name": "PETERSEN, DONALD & GERMAIN M.", "Address": "PO Box 305065", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 169000, "Improved_V": 576600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.597153306, "SHAPE_Area": 823.91497909199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359171.889499999582767, 256885.013900000602007 ], [ 359169.663199998438358, 256852.982400000095367 ], [ 359144.203699998557568, 256855.070599999278784 ], [ 359146.410099998116493, 256887.352200001478195 ], [ 359171.889499999582767, 256885.013900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401580600", "MAP": null, "PARCEL_NAM": "33 NORRE GADE", "ACRE": null, "LONGITUDE": -64.92776145000001, "LATITUDE": 18.34125732, "OBJECTID_1": 12393, "PARCEL_NO_": "105401580600", "Tax_Legal_": "33 NORRE GADE KINGS QUARTER", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 126700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.670248516, "SHAPE_Area": 632.70171637500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359146.410099998116493, 256887.352200001478195 ], [ 359144.203699998557568, 256855.070599999278784 ], [ 359124.525700002908707, 256856.684599999338388 ], [ 359126.858300000429153, 256886.048200000077486 ], [ 359126.941200003027916, 256886.55180000141263 ], [ 359127.26690000295639, 256887.347699999809265 ], [ 359127.802000001072884, 256888.020899999886751 ], [ 359128.503700003027916, 256888.517900001257658 ], [ 359129.316399998962879, 256888.799100000411272 ], [ 359130.175300002098083, 256888.842099998146296 ], [ 359146.410099998116493, 256887.352200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401450600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92967175, "LATITUDE": 18.34139482, "OBJECTID_1": 12128, "PARCEL_NO_": "105401450600", "Tax_Legal_": "NORRE GADE PCL KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 150000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.374338265399999, "SHAPE_Area": 220.54792812400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358934.910400003194809, 256889.600299999117851 ], [ 358957.660999998450279, 256888.331199999898672 ], [ 358920.608900003135204, 256877.907400000840425 ], [ 358922.347099997103214, 256890.301199998706579 ], [ 358934.910400003194809, 256889.600299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402110100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92115622, "LATITUDE": 18.34116675, "OBJECTID_1": 19200, "PARCEL_NO_": "105402110100", "Tax_Legal_": "ROSS ESTATE 8AA KINGS QTR", "Name": "DOMINO OIL CO.", "Address": "1000 Estate Ross", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 323400, "Improved_V": 147700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.47402079099999, "SHAPE_Area": 1315.2819895299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359830.238399997353554, 256890.674300000071526 ], [ 359852.218199998140335, 256883.712600000202656 ], [ 359848.299699999392033, 256845.866200000047684 ], [ 359812.711900003254414, 256851.550200000405312 ], [ 359813.111000001430511, 256853.839899998158216 ], [ 359813.582699999213219, 256856.115699999034405 ], [ 359814.126400001347065, 256858.375399999320507 ], [ 359814.741599999368191, 256860.616700001060963 ], [ 359822.332099996507168, 256886.641600001603365 ], [ 359822.385999999940395, 256886.816500000655651 ], [ 359822.875699996948242, 256887.931400001049042 ], [ 359823.577200002968311, 256888.926699999719858 ], [ 359824.462499998509884, 256889.762800000607967 ], [ 359825.496299996972084, 256890.406199999153614 ], [ 359826.63740000128746, 256890.831300001591444 ], [ 359827.84009999781847, 256891.021099999547005 ], [ 359829.056699998676777, 256890.967999998480082 ], [ 359830.238399997353554, 256890.674300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401580500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92799659000001, "LATITUDE": 18.34133538, "OBJECTID_1": 12391, "PARCEL_NO_": "105401580500", "Tax_Legal_": "NORRE GADE 34 REM. KINGS QTR", "Name": "ZORA OF ST. THOMAS, INC.", "Address": "5040 Norre Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 123800, "Improved_V": 267100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.283315240999997, "SHAPE_Area": 269.26341469699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359117.9966000020504, 256889.959300000220537 ], [ 359116.372800000011921, 256869.519099999219179 ], [ 359103.489699997007847, 256870.700100000947714 ], [ 359104.723700001835823, 256891.175999999046326 ], [ 359117.9966000020504, 256889.959300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401580500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9280728, "LATITUDE": 18.34134219, "OBJECTID_1": 12391, "PARCEL_NO_": "105401580500", "Tax_Legal_": "NORRE GADE 34 REM. KINGS QTR", "Name": "ZORA OF ST. THOMAS, INC.", "Address": "5040 Norre Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 123800, "Improved_V": 267100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.125169846399999, "SHAPE_Area": 62.5247587315 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359104.723700001835823, 256891.175999999046326 ], [ 359103.489699997007847, 256870.700100000947714 ], [ 359100.452899999916553, 256870.978500001132488 ], [ 359101.686899997293949, 256891.4543999992311 ], [ 359104.723700001835823, 256891.175999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401580400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92818788, "LATITUDE": 18.34135306, "OBJECTID_1": 12390, "PARCEL_NO_": "105401580400", "Tax_Legal_": "NORRE GADE 34B & 35 KINGS QTR", "Name": "ST THOMAS FED. CREDIT UNION", "Address": "PO Box 1138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 169000, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.817540100200006, "SHAPE_Area": 438.72252972699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359101.686899997293949, 256891.4543999992311 ], [ 359100.452899999916553, 256870.978500001132488 ], [ 359079.064499996602535, 256872.939100001007318 ], [ 359080.458200000226498, 256893.400400001555681 ], [ 359101.686899997293949, 256891.4543999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401580200", "MAP": null, "PARCEL_NAM": "36A NORRE GADE", "ACRE": "3,587 sq ft", "LONGITUDE": -64.92845064, "LATITUDE": 18.34139659, "OBJECTID_1": 12388, "PARCEL_NO_": "105401580200", "Tax_Legal_": "36A&36X NORRE GADE KINGS QUARTER", "Name": "ST. THOMAS FEDERAL CREDIT UNION", "Address": "PO Box 1138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 135200, "Improved_V": 188000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.7158723549, "SHAPE_Area": 311.03543164799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359072.5912000015378, 256894.121599998325109 ], [ 359071.480200000107288, 256877.811900001019239 ], [ 359052.653099998831749, 256879.290100000798702 ], [ 359053.780900001525879, 256895.845899999141693 ], [ 359072.5912000015378, 256894.121599998325109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401573200", "MAP": null, "PARCEL_NAM": "8C BJERGE GADE", "ACRE": null, "LONGITUDE": -64.92576358, "LATITUDE": 18.34138978, "OBJECTID_1": 12386, "PARCEL_NO_": "105401573200", "Tax_Legal_": "BJERGE GADE 8C KINGS QUARTER", "Name": "LEE, DONALD L.", "Address": "1914 Amber Ln", "City": "Greensboro", "State": "North Carolina", "Zip": 27407, "Country": "United States", "Land_Value": 20900, "Improved_V": 24200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.734325244300003, "SHAPE_Area": 35.654558014400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359349.718999996781349, 256896.765700001269579 ], [ 359348.091600000858307, 256890.028599999845028 ], [ 359347.277699999511242, 256886.659000001847744 ], [ 359346.569200001657009, 256883.725900001823902 ], [ 359345.616899996995926, 256879.783500000834465 ], [ 359343.646700002253056, 256879.964299999177456 ], [ 359345.162699997425079, 256886.690400000661612 ], [ 359347.353200003504753, 256896.409200001507998 ], [ 359348.235200002789497, 256896.341600000858307 ], [ 359349.718999996781349, 256896.765700001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401573200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92581126, "LATITUDE": 18.34139214, "OBJECTID_1": 12386, "PARCEL_NO_": "105401573200", "Tax_Legal_": "BJERGE GADE 8C KINGS QUARTER", "Name": "LEE, DONALD L.", "Address": "1914 Amber Ln", "City": "Greensboro", "State": "North Carolina", "Zip": 27407, "Country": "United States", "Land_Value": 20900, "Improved_V": 24200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.370080486100001, "SHAPE_Area": 131.561642275 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359347.353200003504753, 256896.409200001507998 ], [ 359345.162699997425079, 256886.690400000661612 ], [ 359343.646700002253056, 256879.964299999177456 ], [ 359335.935300000011921, 256880.671999998390675 ], [ 359339.305900000035763, 256897.026200000196695 ], [ 359347.353200003504753, 256896.409200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401450500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93004566, "LATITUDE": 18.34138903, "OBJECTID_1": 12127, "PARCEL_NO_": "105401450500", "Tax_Legal_": "NORRE GADE 46 KINGS QUARTER", "Name": "GRAND GALLERIA INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1125500, "Improved_V": 505900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.238641402, "SHAPE_Area": 573.733262029 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358911.456000000238419, 256889.807799998670816 ], [ 358909.048799999058247, 256872.908700000494719 ], [ 358908.230499997735023, 256872.242600001394749 ], [ 358907.443800002336502, 256871.539500001817942 ], [ 358906.690399996936321, 256870.800799999386072 ], [ 358905.971900001168251, 256870.028099998831749 ], [ 358873.005300000309944, 256885.800500001758337 ], [ 358879.377599999308586, 256897.060400001704693 ], [ 358893.605099998414516, 256893.927200000733137 ], [ 358893.133500002324581, 256891.473499998450279 ], [ 358911.456000000238419, 256889.807799998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401580100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92864119, "LATITUDE": 18.34108031, "OBJECTID_1": 12387, "PARCEL_NO_": "105401580100", "Tax_Legal_": "NORRE GADE 37 KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 170100, "Improved_V": 447400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.53320058200001, "SHAPE_Area": 1419.35553211 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359053.780900001525879, 256895.845899999141693 ], [ 359052.653099998831749, 256879.290100000798702 ], [ 359051.542199999094009, 256862.980399999767542 ], [ 359047.747000001370907, 256807.263799998909235 ], [ 359031.082699999213219, 256808.791400000452995 ], [ 359035.042099997401237, 256855.389400001615286 ], [ 359038.597900003194809, 256897.237700000405312 ], [ 359053.780900001525879, 256895.845899999141693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402105000", "MAP": "D9-8409-T010", "PARCEL_NAM": "CONS 100-1B", "ACRE": "2.1", "LONGITUDE": -64.92198108, "LATITUDE": 18.34080695, "OBJECTID_1": 19196, "PARCEL_NO_": "105402105000", "Tax_Legal_": "100-1B CONS TAARNEBERG KINGS QTR", "Name": "V.I. FIRE SERVICE DEPT", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 166000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 387.69071676300001, "SHAPE_Area": 8399.6335487699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359720.902400001883507, 256888.102099999785423 ], [ 359737.222900003194809, 256878.726100001484156 ], [ 359741.279200002551079, 256876.395799998193979 ], [ 359754.23929999768734, 256868.950399998575449 ], [ 359766.023999996483326, 256863.221599999815226 ], [ 359786.043300002813339, 256853.489900000393391 ], [ 359794.905299998819828, 256849.18189999833703 ], [ 359794.376000002026558, 256844.507599998265505 ], [ 359794.089599996805191, 256839.812199998646975 ], [ 359794.046800002455711, 256835.108199998736382 ], [ 359794.247800000011921, 256830.408399999141693 ], [ 359794.69200000166893, 256825.725299999117851 ], [ 359794.965400002896786, 256823.665100000798702 ], [ 359799.94539999961853, 256789.7483000010252 ], [ 359786.244199998676777, 256787.891600001603365 ], [ 359785.357100002467632, 256786.68019999936223 ], [ 359785.387199997901917, 256784.582800000905991 ], [ 359786.618900001049042, 256782.802400000393391 ], [ 359789.960600003600121, 256781.052400000393391 ], [ 359750.725699998438358, 256773.681200001388788 ], [ 359724.239500001072884, 256768.705299999564886 ], [ 359708.102099999785423, 256819.855500001460314 ], [ 359704.768799997866154, 256827.19649999961257 ], [ 359701.007600001990795, 256897.366700001060963 ], [ 359720.902400001883507, 256888.102099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401573100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92591735000001, "LATITUDE": 18.34140162, "OBJECTID_1": 12385, "PARCEL_NO_": "105401573100", "Tax_Legal_": "BJERGE GADE 8B KINGS QUARTER", "Name": "LEE, ERIC M. & PAULINE N", "Address": "PO Box 791", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 30000, "Improved_V": 122700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.3866708559, "SHAPE_Area": 241.125895302 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359331.5641999989748, 256897.619800001382828 ], [ 359339.305900000035763, 256897.026200000196695 ], [ 359335.935300000011921, 256880.671999998390675 ], [ 359321.731499999761581, 256881.975499998778105 ], [ 359324.330700002610683, 256898.174400001764297 ], [ 359331.5641999989748, 256897.619800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401461100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92876805, "LATITUDE": 18.34131024, "OBJECTID_1": 12134, "PARCEL_NO_": "105401461100", "Tax_Legal_": "NORRE GADE 38 KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 170100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.852681268, "SHAPE_Area": 647.84167952400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359038.597900003194809, 256897.237700000405312 ], [ 359035.042099997401237, 256855.389400001615286 ], [ 359019.506800003349781, 256856.806499999016523 ], [ 359023.413000002503395, 256898.629700001329184 ], [ 359038.597900003194809, 256897.237700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401573000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92605849, "LATITUDE": 18.34141522, "OBJECTID_1": 12384, "PARCEL_NO_": "105401573000", "Tax_Legal_": "BJERGE GADE 8A KINGS QUARTER", "Name": "LEE, PAULINE N. & ERIC M", "Address": "PO Box 791", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.1374664127, "SHAPE_Area": 248.53744631000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359324.330700002610683, 256898.174400001764297 ], [ 359321.731499999761581, 256881.975499998778105 ], [ 359307.344800002872944, 256883.449400000274181 ], [ 359308.104400001466274, 256899.426199998706579 ], [ 359324.330700002610683, 256898.174400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401460100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9291853, "LATITUDE": 18.3414477, "OBJECTID_1": 12129, "PARCEL_NO_": "105401460100", "Tax_Legal_": "NORRE GADE 4OA KINGS QUARTER", "Name": "FORTY NORRE GADE CORP. /TIM IRE", "Address": "1501 Hillcrest Rd", "City": "Fairmont", "State": "West Virginia", "Zip": 26554, "Country": "United States", "Land_Value": 119200, "Improved_V": 305100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.857532755400001, "SHAPE_Area": 470.003796244 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358991.512699998915195, 256901.553899999707937 ], [ 358997.298699997365475, 256901.023499999195337 ], [ 358995.402500003576279, 256880.558499999344349 ], [ 358972.44709999859333, 256882.729499999433756 ], [ 358974.309500001370907, 256902.8293999992311 ], [ 358978.607500001788139, 256902.473099999129772 ], [ 358982.907399997115135, 256902.141699999570847 ], [ 358987.209200002253056, 256901.835299998521805 ], [ 358991.512699998915195, 256901.553899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401572700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92671648, "LATITUDE": 18.34147015, "OBJECTID_1": 12381, "PARCEL_NO_": "105401572700", "Tax_Legal_": "NORRE GADE 2O KINGS QUARTER", "Name": "LORRAINE BAA & ORLANDO BAA, JR.", "Address": "P.O. BOX 5988 VDS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30600, "Improved_V": 165200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.780733091000002, "SHAPE_Area": 208.28654808 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359252.622000001370907, 256888.574299998581409 ], [ 359238.460199996829033, 256889.384399998933077 ], [ 359239.321800000965595, 256904.331199999898672 ], [ 359252.902800001204014, 256903.594900000840425 ], [ 359252.622000001370907, 256888.574299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401572600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92581243, "LATITUDE": 18.34151406, "OBJECTID_1": 12380, "PARCEL_NO_": "105401572600", "Tax_Legal_": "BJERGE GADE 9C KINGS QUARTER", "Name": "GEORGE, M", "Address": "64 N 15th St", "City": "Wheatley Heights", "State": "New York", "Zip": 11798, "Country": "United States", "Land_Value": 3000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.725210709400002, "SHAPE_Area": 191.45203767000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359351.953199997544289, 256906.0152000002563 ], [ 359349.718999996781349, 256896.765700001269579 ], [ 359348.235200002789497, 256896.341600000858307 ], [ 359347.353200003504753, 256896.409200001507998 ], [ 359339.305900000035763, 256897.026200000196695 ], [ 359331.5641999989748, 256897.619800001382828 ], [ 359332.605400003492832, 256908.059099998325109 ], [ 359351.953199997544289, 256906.0152000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401450400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9295388, "LATITUDE": 18.34151333, "OBJECTID_1": 12126, "PARCEL_NO_": "105401450400", "Tax_Legal_": "NORRE GADE 41 KINGS QUARTER", "Name": "CYRIL V. FRANCOIS ASSOC.", "Address": "PO Box 6050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24000, "Improved_V": 103400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.515812558199997, "SHAPE_Area": 443.83154481100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358959.830099999904633, 256907.683499999344349 ], [ 358957.660999998450279, 256888.331199999898672 ], [ 358934.910400003194809, 256889.600299999117851 ], [ 358937.795000001788139, 256909.536200001835823 ], [ 358959.830099999904633, 256907.683499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92211033, "LATITUDE": 18.34141262, "OBJECTID_1": 12702, "PARCEL_NO_": "105402102100", "Tax_Legal_": "101 TAARNEBERG KINGS QTR", "Name": "STEPHENS, LUDVIG", "Address": "PO Box 10782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.366358502899999, "SHAPE_Area": 414.58847896899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359744.543700002133846, 256901.098900001496077 ], [ 359737.222900003194809, 256878.726100001484156 ], [ 359720.902400001883507, 256888.102099999785423 ], [ 359727.825099997222424, 256908.63289999961853 ], [ 359744.543700002133846, 256901.098900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401572800", "MAP": null, "PARCEL_NAM": "21A NORRE GADE", "ACRE": null, "LONGITUDE": -64.92662208, "LATITUDE": 18.34147363, "OBJECTID_1": 12382, "PARCEL_NO_": "105401572800", "Tax_Legal_": "NORRE GADE 21A&B KINGS QTR", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70300, "Improved_V": 23900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.177952790299997, "SHAPE_Area": 108.92024826700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359259.895499996840954, 256888.158300001174212 ], [ 359252.622000001370907, 256888.574299998581409 ], [ 359252.902800001204014, 256903.594900000840425 ], [ 359253.276500001549721, 256909.550000000745058 ], [ 359256.629799999296665, 256909.694099999964237 ], [ 359255.755900003015995, 256898.392799999564886 ], [ 359260.32880000025034, 256897.74040000140667 ], [ 359259.895499996840954, 256888.158300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401450300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92970348, "LATITUDE": 18.34152653, "OBJECTID_1": 12125, "PARCEL_NO_": "105401450300", "Tax_Legal_": "NORRE GADE 42 KINGS QUARTER", "Name": "CYRIL V. FRANCOIS ASSOC.", "Address": "PO Box 6050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14700, "Improved_V": 312100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.984177259099994, "SHAPE_Area": 255.99145051299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358937.795000001788139, 256909.536200001835823 ], [ 358934.910400003194809, 256889.600299999117851 ], [ 358922.347099997103214, 256890.301199998706579 ], [ 358925.328400000929832, 256910.811799999326468 ], [ 358937.795000001788139, 256909.536200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401561400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92706522, "LATITUDE": 18.34151578, "OBJECTID_1": 12356, "PARCEL_NO_": "105401561400", "Tax_Legal_": "NORRE GADE 18 KINGS QTR", "Name": "MARILYN PENN REVOCABLE TRUST", "Address": "PO Box 7261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 261500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.211073664799997, "SHAPE_Area": 325.65721133 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359218.633799999952316, 256909.243999999016523 ], [ 359217.548299998044968, 256891.53660000115633 ], [ 359199.285199999809265, 256893.102899998426437 ], [ 359200.203000001609325, 256910.728799998760223 ], [ 359218.633799999952316, 256909.243999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401561600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92689664, "LATITUDE": 18.34151734, "OBJECTID_1": 12358, "PARCEL_NO_": "105401561600", "Tax_Legal_": "NORRE GADE 19 KINGS", "Name": "KLB REALTY, LLC", "Address": "1217 Bjerge Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60900, "Improved_V": 616100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.329528241399998, "SHAPE_Area": 368.60542019100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359235.777800001204014, 256911.655900001525879 ], [ 359234.714800000190735, 256889.961199998855591 ], [ 359217.548299998044968, 256891.53660000115633 ], [ 359218.633799999952316, 256909.243999999016523 ], [ 359218.858000002801418, 256912.901099998503923 ], [ 359235.777800001204014, 256911.655900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401450200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93001221, "LATITUDE": 18.34155801, "OBJECTID_1": 12124, "PARCEL_NO_": "105401450200", "Tax_Legal_": "NORRE GADE 43 KINGS QTR", "Name": "GRAND GALLERIA INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 777200, "Improved_V": 548400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.45347510400001, "SHAPE_Area": 703.10229201899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358914.60700000077486, 256911.928100001066923 ], [ 358911.456000000238419, 256889.807799998670816 ], [ 358893.133500002324581, 256891.473499998450279 ], [ 358893.605099998414516, 256893.927200000733137 ], [ 358879.377599999308586, 256897.060400001704693 ], [ 358882.01519999653101, 256915.702300000935793 ], [ 358884.793999999761581, 256915.482299998402596 ], [ 358889.559900000691414, 256915.052700001746416 ], [ 358895.8378000035882, 256914.406700000166893 ], [ 358902.105899997055531, 256913.670499999076128 ], [ 358908.362700000405312, 256912.844200000166893 ], [ 358914.60700000077486, 256911.928100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401572500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92579636000001, "LATITUDE": 18.34159147, "OBJECTID_1": 12379, "PARCEL_NO_": "105401572500", "Tax_Legal_": "BJERGE GADE 9B KINGS QUARTER", "Name": "GEORGE, E", "Address": "64 N 15th St", "City": "Wheatley Heights", "State": "New York", "Zip": 11798, "Country": "United States", "Land_Value": 3300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.525461380300001, "SHAPE_Area": 144.917001562 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359353.710299998521805, 256913.289299998432398 ], [ 359351.953199997544289, 256906.0152000002563 ], [ 359332.605400003492832, 256908.059099998325109 ], [ 359333.310500003397465, 256915.128199998289347 ], [ 359353.710299998521805, 256913.289299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401572800", "MAP": null, "PARCEL_NAM": "21B NORRE GADE", "ACRE": null, "LONGITUDE": -64.92656037, "LATITUDE": 18.34153866, "OBJECTID_1": 12382, "PARCEL_NO_": "105401572800", "Tax_Legal_": "NORRE GADE 21A&B KINGS QTR", "Name": "LESTER ASHBY SR LIVING TRUST", "Address": "PO Box 302356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70300, "Improved_V": 23900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.800438202799995, "SHAPE_Area": 317.01875528699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359267.238499999046326, 256887.738200001418591 ], [ 359259.895499996840954, 256888.158300001174212 ], [ 359260.32880000025034, 256897.74040000140667 ], [ 359255.755900003015995, 256898.392799999564886 ], [ 359256.629799999296665, 256909.694099999964237 ], [ 359253.276500001549721, 256909.550000000745058 ], [ 359253.853399999439716, 256916.712600000202656 ], [ 359260.570500001311302, 256916.180300001055002 ], [ 359269.145400002598763, 256915.704100001603365 ], [ 359267.238499999046326, 256887.738200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401572400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92600888, "LATITUDE": 18.34156379, "OBJECTID_1": 12378, "PARCEL_NO_": "105401572400", "Tax_Legal_": "BJERGE GADE 9A KINGS QUARTER", "Name": "LEE, DONALD L.", "Address": "1914 Amber Ln", "City": "Greensboro", "State": "North Carolina", "Zip": 27407, "Country": "United States", "Land_Value": 9200, "Improved_V": 115500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.136027776199995, "SHAPE_Area": 422.62209740499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359333.310500003397465, 256915.128199998289347 ], [ 359332.605400003492832, 256908.059099998325109 ], [ 359331.5641999989748, 256897.619800001382828 ], [ 359324.330700002610683, 256898.174400001764297 ], [ 359308.104400001466274, 256899.426199998706579 ], [ 359309.263300001621246, 256917.258699998259544 ], [ 359333.310500003397465, 256915.128199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402105100", "MAP": "F9-2842-T71", "PARCEL_NAM": "24B", "ACRE": "3,578 sq ft", "LONGITUDE": -64.92228199, "LATITUDE": 18.34149326, "OBJECTID_1": 19197, "PARCEL_NO_": "105402105100", "Tax_Legal_": "24,24A & 24B TAARNEBERG KINGS QTR", "Name": "V.I. FIRE SERVICE DEPT", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.397894634099998, "SHAPE_Area": 464.46284509100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359717.861599996685982, 256913.122900001704693 ], [ 359727.825099997222424, 256908.63289999961853 ], [ 359720.902400001883507, 256888.102099999785423 ], [ 359701.007600001990795, 256897.366700001060963 ], [ 359703.614500001072884, 256904.559099998325109 ], [ 359708.282899998128414, 256917.439300000667572 ], [ 359717.861599996685982, 256913.122900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401572000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92671025, "LATITUDE": 18.34159935, "OBJECTID_1": 12375, "PARCEL_NO_": "105401572000", "Tax_Legal_": "KONGENS TVER GADE 1 KINGS QUARTER", "Name": "AL SAMMAN, GINA", "Address": "6632 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5000, "Improved_V": 54000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.200920503600003, "SHAPE_Area": 186.91832218600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359260.570500001311302, 256916.180300001055002 ], [ 359253.853399999439716, 256916.712600000202656 ], [ 359253.276500001549721, 256909.550000000745058 ], [ 359252.902800001204014, 256903.594900000840425 ], [ 359239.321800000965595, 256904.331199999898672 ], [ 359239.562700003385544, 256917.955600000917912 ], [ 359260.570500001311302, 256916.180300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401450100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93033717, "LATITUDE": 18.34157209, "OBJECTID_1": 12123, "PARCEL_NO_": "105401450100", "Tax_Legal_": "NORRE GADE 44 45 KINGS QTR", "Name": "GRAND GALLERIA INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1819100, "Improved_V": 1267300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.70888765, "SHAPE_Area": 895.48347247900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358882.01519999653101, 256915.702300000935793 ], [ 358879.377599999308586, 256897.060400001704693 ], [ 358873.005300000309944, 256885.800500001758337 ], [ 358842.764799997210503, 256900.268699999898672 ], [ 358845.052199997007847, 256918.471000000834465 ], [ 358849.874899998307228, 256917.916999999433756 ], [ 358854.706699997186661, 256917.449400000274181 ], [ 358859.546099998056889, 256917.068300001323223 ], [ 358864.391500003635883, 256916.773899998515844 ], [ 358870.472099997103214, 256916.458999998867512 ], [ 358875.249499998986721, 256916.185499999672174 ], [ 358880.023699998855591, 256915.859900001436472 ], [ 358882.01519999653101, 256915.702300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92161914, "LATITUDE": 18.34134785, "OBJECTID_1": 12703, "PARCEL_NO_": "105402102400", "Tax_Legal_": "26A TAARNEBERG KINGS QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 291200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.61016457599999, "SHAPE_Area": 1440.60248456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359794.905299998819828, 256849.18189999833703 ], [ 359786.043300002813339, 256853.489900000393391 ], [ 359778.144400000572205, 256883.328400000929832 ], [ 359764.766800001263618, 256899.791900001466274 ], [ 359753.316299997270107, 256913.883900001645088 ], [ 359754.79110000282526, 256918.477000001817942 ], [ 359791.793399997055531, 256903.271899998188019 ], [ 359793.296099998056889, 256902.620200000703335 ], [ 359794.772399999201298, 256901.910799998790026 ], [ 359796.220200002193451, 256901.144799999892712 ], [ 359797.637199997901917, 256900.323399998247623 ], [ 359798.558399997651577, 256899.718699999153614 ], [ 359800.05629999935627, 256898.506799999624491 ], [ 359801.389300003647804, 256897.115600001066923 ], [ 359802.536100000143051, 256895.567299999296665 ], [ 359803.478399999439716, 256893.886599998921156 ], [ 359804.201099999248981, 256892.100600000470877 ], [ 359804.692699998617172, 256890.237500000745058 ], [ 359804.945200003683567, 256888.327399998903275 ], [ 359804.954800002276897, 256886.400699999183416 ], [ 359804.721100002527237, 256884.488099999725819 ], [ 359804.248000003397465, 256882.620299998670816 ], [ 359798.360799998044968, 256864.325300000607967 ], [ 359797.254299998283386, 256860.598400000482798 ], [ 359796.308499999344349, 256856.827599998563528 ], [ 359795.524999998509884, 256853.019799999892712 ], [ 359794.905299998819828, 256849.18189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402101500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92241242, "LATITUDE": 18.3415866, "OBJECTID_1": 12699, "PARCEL_NO_": "105402101500", "Tax_Legal_": "22B TAARNEBERG KINGS QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36700, "Improved_V": 4800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.096805622799998, "SHAPE_Area": 160.56013288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359708.282899998128414, 256917.439300000667572 ], [ 359703.614500001072884, 256904.559099998325109 ], [ 359692.939999997615814, 256908.043099999427795 ], [ 359698.021600000560284, 256922.063499998301268 ], [ 359708.282899998128414, 256917.439300000667572 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402105100", "MAP": "F9-2841-T71", "PARCEL_NAM": "24A", "ACRE": "1,057 sq ft", "LONGITUDE": -64.92218249, "LATITUDE": 18.34162056, "OBJECTID_1": 19197, "PARCEL_NO_": "105402105100", "Tax_Legal_": "24,24A & 24B TAARNEBERG KINGS QTR", "Name": "V.I. FIRE SERVICE DEPT", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.8637798958, "SHAPE_Area": 141.83218526799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359732.076300002634525, 256921.240800000727177 ], [ 359727.825099997222424, 256908.63289999961853 ], [ 359717.861599996685982, 256913.122900001704693 ], [ 359721.647100001573563, 256925.060400001704693 ], [ 359732.076300002634525, 256921.240800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401561500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92688592, "LATITUDE": 18.34167359, "OBJECTID_1": 12357, "PARCEL_NO_": "105401561500", "Tax_Legal_": "KONGENS TVER 3 KINGS QTR", "Name": "KLB REALTY, LLC", "Address": "1217 Bjerge Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.902578689000002, "SHAPE_Area": 220.592537599 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359236.430399999022484, 256924.975400000810623 ], [ 359235.777800001204014, 256911.655900001525879 ], [ 359218.858000002801418, 256912.901099998503923 ], [ 359219.641099996864796, 256925.674800001084805 ], [ 359236.430399999022484, 256924.975400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92204632000001, "LATITUDE": 18.34159391, "OBJECTID_1": 12701, "PARCEL_NO_": "105402102000", "Tax_Legal_": "TAARNEBERG 25 KINGS QUARTER", "Name": "PARKS, NELLIE MESCUS", "Address": "PO Box 10782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10000, "Improved_V": 55900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.863553787300006, "SHAPE_Area": 357.76914708100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359750.77080000191927, 256920.129000000655651 ], [ 359744.543700002133846, 256901.098900001496077 ], [ 359727.825099997222424, 256908.63289999961853 ], [ 359732.076300002634525, 256921.240800000727177 ], [ 359734.022100001573563, 256927.011399999260902 ], [ 359750.77080000191927, 256920.129000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401411500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92855456, "LATITUDE": 18.3416886, "OBJECTID_1": 12093, "PARCEL_NO_": "105401411500", "Tax_Legal_": "NORRE GADE 14A KINGS QUARTER", "Name": "ANDUZE, JR. , ROY A", "Address": "PO Box 7776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46000, "Improved_V": 293900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.490500011199998, "SHAPE_Area": 271.10662651799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359059.609099999070168, 256925.516499999910593 ], [ 359058.763800002634525, 256925.446800000965595 ], [ 359058.373400002717972, 256910.708399999886751 ], [ 359057.560400001704693, 256910.023400001227856 ], [ 359043.427400000393391, 256910.045099999755621 ], [ 359042.830600000917912, 256924.846599999815226 ], [ 359048.943000003695488, 256925.137200001627207 ], [ 359048.912500001490116, 256928.714600000530481 ], [ 359059.690700002014637, 256928.927499998360872 ], [ 359059.609099999070168, 256925.516499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93178837000001, "LATITUDE": 18.34156994, "OBJECTID_1": 12115, "PARCEL_NO_": "105401440400", "Tax_Legal_": "DRONNINGENS GADE 36A-1,36-1&2 QUEENS QUARTER", "Name": "RALPH PAIEWONSKY ASSOC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1275800, "Improved_V": 398700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.62937656099999, "SHAPE_Area": 610.70203879200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358718.013800002634525, 256874.849700000137091 ], [ 358709.565099999308586, 256873.503400001674891 ], [ 358699.311599999666214, 256927.924400001764297 ], [ 358702.371899999678135, 256928.424800001084805 ], [ 358705.437700003385544, 256928.890700001269579 ], [ 358708.508500002324581, 256929.32209999859333 ], [ 358711.583999998867512, 256929.718800000846386 ], [ 358716.545400001108646, 256896.994500000029802 ], [ 358718.013800002634525, 256874.849700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402101300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92254356, "LATITUDE": 18.3416004, "OBJECTID_1": 12697, "PARCEL_NO_": "105402101300", "Tax_Legal_": "21 TAANEBERG KINGS QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 120200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.05795955000001, "SHAPE_Area": 519.24420378800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359698.021600000560284, 256922.063499998301268 ], [ 359692.939999997615814, 256908.043099999427795 ], [ 359703.614500001072884, 256904.559099998325109 ], [ 359701.007600001990795, 256897.366700001060963 ], [ 359672.077299997210503, 256910.839000001549721 ], [ 359678.570600003004074, 256930.82880000025034 ], [ 359698.021600000560284, 256922.063499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401571700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92628332, "LATITUDE": 18.34170886, "OBJECTID_1": 12372, "PARCEL_NO_": "105401571700", "Tax_Legal_": "BJERGE GADE 21A KINGS QUARTER", "Name": "RANGER AMERICAN OF VI INC", "Address": "PO Box 29105", "City": "San Juan", "State": "Puerto Rico", "Zip": 929, "Country": "United States", "Land_Value": 6400, "Improved_V": 107200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.767133017500001, "SHAPE_Area": 302.023504737 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359302.346500001847744, 256929.677999999374151 ], [ 359301.251800000667572, 256915.098099999129772 ], [ 359286.140000000596046, 256916.433499999344349 ], [ 359284.352700002491474, 256916.591400001198053 ], [ 359280.552100002765656, 256916.927299998700619 ], [ 359281.19200000166893, 256931.077899999916553 ], [ 359302.346500001847744, 256929.677999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402105100", "MAP": "F9-2842-T72", "PARCEL_NAM": "24 REM", "ACRE": "801 sq ft", "LONGITUDE": -64.92215446, "LATITUDE": 18.34170273, "OBJECTID_1": 19197, "PARCEL_NO_": "105402105100", "Tax_Legal_": "24,24A & 24B TAARNEBERG KINGS QTR", "Name": "V.I. FIRE SERVICE DEPT", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.7853568401, "SHAPE_Area": 69.618071341100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359731.954099997878075, 256927.861200001090765 ], [ 359734.022100001573563, 256927.011399999260902 ], [ 359732.076300002634525, 256921.240800000727177 ], [ 359721.647100001573563, 256925.060400001704693 ], [ 359723.568499997258186, 256931.119699999690056 ], [ 359725.664899997413158, 256930.304999999701977 ], [ 359727.76129999756813, 256929.490299999713898 ], [ 359729.857699997723103, 256928.675700001418591 ], [ 359731.954099997878075, 256927.861200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93119054, "LATITUDE": 18.34134294, "OBJECTID_1": 12119, "PARCEL_NO_": "105401440800", "Tax_Legal_": "DRONNINGENS GADE 39 QUEENS QTR", "Name": "DOWLING, JR. , WILLIAM C. -TRUSTEE", "Address": "90 Broad Street LLP", "City": "New York", "State": "New York", "Zip": 10004, "Country": "United States", "Land_Value": 2446900, "Improved_V": 679100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.287449616, "SHAPE_Area": 1372.63144171 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358780.935099996626377, 256931.165100000798702 ], [ 358777.670299999415874, 256821.177700001746416 ], [ 358774.847499996423721, 256822.056099999696016 ], [ 358771.976599998772144, 256822.761799998581409 ], [ 358769.068199999630451, 256823.292199999094009 ], [ 358766.133000001311302, 256823.645500000566244 ], [ 358767.262699998915195, 256931.39130000025034 ], [ 358780.66669999808073, 256931.179299999028444 ], [ 358780.733800001442432, 256931.175999999046326 ], [ 358780.800999999046326, 256931.172499999403954 ], [ 358780.868100002408028, 256931.168800000101328 ], [ 358780.935099996626377, 256931.165100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105401440500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93164954, "LATITUDE": 18.34138828, "OBJECTID_1": 12116, "PARCEL_NO_": "105401440500", "Tax_Legal_": "36 REM&REM 37 DRONNINGENS GADE QUEENS QUARTER", "Name": "ISIDOR PAIEWONSKY ASSOC.", "Address": "PO Box 6280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4582900, "Improved_V": 3490100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.83432323100001, "SHAPE_Area": 1789.60591052 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358737.870300002396107, 256839.137499999254942 ], [ 358721.731499999761581, 256838.296799998730421 ], [ 358721.557499997317791, 256840.097300000488758 ], [ 358722.653300002217293, 256843.44200000166893 ], [ 358722.211400002241135, 256846.568399999290705 ], [ 358714.761600002646446, 256845.922800000756979 ], [ 358709.565099999308586, 256873.503400001674891 ], [ 358718.013800002634525, 256874.849700000137091 ], [ 358716.545400001108646, 256896.994500000029802 ], [ 358711.583999998867512, 256929.718800000846386 ], [ 358716.366800002753735, 256930.266100000590086 ], [ 358721.158399999141693, 256930.729600001126528 ], [ 358725.957400001585484, 256931.109400000423193 ], [ 358730.762299999594688, 256931.405200000852346 ], [ 358737.870300002396107, 256839.137499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93130109000001, "LATITUDE": 18.34133851, "OBJECTID_1": 12118, "PARCEL_NO_": "105401440700", "Tax_Legal_": "38A DRONNINGENS GADE QUEENS QUARTER", "Name": "D G PORTFOLIO, INC.", "Address": "PO Box 6280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1567600, "Improved_V": 504400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.09718138900001, "SHAPE_Area": 1136.34326319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358767.262699998915195, 256931.39130000025034 ], [ 358766.133000001311302, 256823.645500000566244 ], [ 358763.896999999880791, 256823.794300001114607 ], [ 358761.656499996781349, 256823.840300001204014 ], [ 358759.416199997067451, 256823.783300001174212 ], [ 358757.180900000035763, 256823.623500000685453 ], [ 358753.89639999717474, 256886.270500000566244 ], [ 358757.581200003623962, 256886.458299998193979 ], [ 358756.424400001764297, 256931.562699999660254 ], [ 358767.262699998915195, 256931.39130000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93149008, "LATITUDE": 18.34139505, "OBJECTID_1": 12116, "PARCEL_NO_": "105401440500", "Tax_Legal_": "36 REM&REM 37 DRONNINGENS GADE QUEENS QUARTER", "Name": "ISIDOR PAIEWONSKY ASSOC.", "Address": "PO Box 6280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4582900, "Improved_V": 3490100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.99787072199999, "SHAPE_Area": 1284.4918019900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358752.629600003361702, 256822.975099999457598 ], [ 358752.091399997472763, 256822.869199998676777 ], [ 358751.554300002753735, 256822.757199998944998 ], [ 358751.01860000193119, 256822.639199998229742 ], [ 358750.484200000762939, 256822.5152000002563 ], [ 358748.763599999248981, 256840.114000000059605 ], [ 358738.011200003325939, 256839.144900001585484 ], [ 358737.870300002396107, 256839.137499999254942 ], [ 358730.762299999594688, 256931.405200000852346 ], [ 358734.13629999756813, 256931.562600001692772 ], [ 358737.511900000274181, 256931.678599998354912 ], [ 358740.888700000941753, 256931.753199998289347 ], [ 358744.266199998557568, 256931.786299999803305 ], [ 358752.629600003361702, 256822.975099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401440600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93138912000001, "LATITUDE": 18.34143273, "OBJECTID_1": 12117, "PARCEL_NO_": "105401440600", "Tax_Legal_": "DRONNINGENS GADE 38 QUEENS QUARTER", "Name": "SHARP PROPERTIES INC.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3223100, "Improved_V": 702600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.43403004499999, "SHAPE_Area": 836.41239943400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358756.424400001764297, 256931.562699999660254 ], [ 358757.581200003623962, 256886.458299998193979 ], [ 358753.89639999717474, 256886.270500000566244 ], [ 358757.180900000035763, 256823.623500000685453 ], [ 358756.037699997425079, 256823.5016999989748 ], [ 358754.897600002586842, 256823.353000000119209 ], [ 358753.761399999260902, 256823.177400000393391 ], [ 358752.629600003361702, 256822.975099999457598 ], [ 358744.266199998557568, 256931.786299999803305 ], [ 358747.306500002741814, 256931.780699998140335 ], [ 358750.346500001847744, 256931.741599999368191 ], [ 358753.385999999940395, 256931.6689000017941 ], [ 358756.424400001764297, 256931.562699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401571600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92647986, "LATITUDE": 18.34171611, "OBJECTID_1": 12371, "PARCEL_NO_": "105401571600", "Tax_Legal_": "BJERGE GADE 21B KINGS QUARTER", "Name": "RANGER AMERICAN OF VI INC", "Address": "PO Box 29105", "City": "San Juan", "State": "Puerto Rico", "Zip": 929, "Country": "United States", "Land_Value": 9900, "Improved_V": 38900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.26145004, "SHAPE_Area": 308.97753313300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359280.199100002646446, 256931.1435999982059 ], [ 359281.19200000166893, 256931.077899999916553 ], [ 359280.552100002765656, 256916.927299998700619 ], [ 359269.145400002598763, 256915.704100001603365 ], [ 359260.570500001311302, 256916.180300001055002 ], [ 359260.875299997627735, 256931.88060000166297 ], [ 359280.199100002646446, 256931.1435999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401411000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9289708, "LATITUDE": 18.34171809, "OBJECTID_1": 12088, "PARCEL_NO_": "105401411000", "Tax_Legal_": "NORRE GADE 11 B KINGS QTR", "Name": "BATTISTE, LLOYD J", "Address": "PO Box 418", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5600, "Improved_V": 49400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.625594766500001, "SHAPE_Area": 223.16306943800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359012.798799999058247, 256932.682199999690056 ], [ 359011.85980000346899, 256910.450899999588728 ], [ 359009.362700000405312, 256910.60530000180006 ], [ 359006.865599997341633, 256910.759399998933077 ], [ 359004.368500001728535, 256910.913400001823902 ], [ 359001.871299996972084, 256911.067200001329184 ], [ 359002.814699999988079, 256933.404100000858307 ], [ 359012.798799999058247, 256932.682199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401410800", "MAP": "MB", "PARCEL_NAM": "10 NORRE GADE", "ACRE": "3,182 sq ft", "LONGITUDE": -64.9292063, "LATITUDE": 18.34172889, "OBJECTID_1": 12086, "PARCEL_NO_": "105401410800", "Tax_Legal_": "NORRE GADE 1O KINGS QUARTER", "Name": "BENJAMIN, R & R INC", "Address": "PO Box 7501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69700, "Improved_V": 594000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.8552311718, "SHAPE_Area": 290.99540132800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358990.096400000154972, 256933.296700000762939 ], [ 358988.439499996602535, 256911.8935999982059 ], [ 358974.807800002396107, 256912.732299998402596 ], [ 358976.248499996960163, 256933.562699999660254 ], [ 358990.096400000154972, 256933.296700000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402101600", "MAP": null, "PARCEL_NAM": "23", "ACRE": null, "LONGITUDE": -64.92226586, "LATITUDE": 18.34168398, "OBJECTID_1": 12700, "PARCEL_NO_": "105402101600", "Tax_Legal_": "23 TAANABERG KINGS QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75000, "Improved_V": 12800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.391725989400001, "SHAPE_Area": 187.317151658 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359723.568499997258186, 256931.119699999690056 ], [ 359721.647100001573563, 256925.060400001704693 ], [ 359717.861599996685982, 256913.122900001704693 ], [ 359708.282899998128414, 256917.439300000667572 ], [ 359714.516599997878075, 256934.638199999928474 ], [ 359716.779600001871586, 256933.758499998599291 ], [ 359719.042499996721745, 256932.878800000995398 ], [ 359721.305500000715256, 256931.999200001358986 ], [ 359723.568499997258186, 256931.119699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402101200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92271009, "LATITUDE": 18.34168473, "OBJECTID_1": 12696, "PARCEL_NO_": "105402101200", "Tax_Legal_": "18 TAARNEBERG KINGS QUARTER", "Name": "THOMPSON, W,D,G & J. FULLER & D. DORSETT", "Address": "1308 Taanerberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4600, "Improved_V": 64600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.266292309099995, "SHAPE_Area": 285.14750928000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359678.570600003004074, 256930.82880000025034 ], [ 359672.077299997210503, 256910.839000001549721 ], [ 359659.526500001549721, 256916.683699999004602 ], [ 359666.186499997973442, 256936.409600000828505 ], [ 359678.570600003004074, 256930.82880000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401561000", "MAP": null, "PARCEL_NAM": "15A NORRE GADE", "ACRE": null, "LONGITUDE": -64.9276655, "LATITUDE": 18.34163805, "OBJECTID_1": 12353, "PARCEL_NO_": "105401561000", "Tax_Legal_": "NORRE GADE-SCHOOL 15A, 16 & 17A KINGS QTR", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 332200, "Improved_V": 363200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.559710843, "SHAPE_Area": 987.58892014900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359151.769599996507168, 256936.545200001448393 ], [ 359161.683100000023842, 256935.918499998748302 ], [ 359158.491899996995926, 256896.956199999898672 ], [ 359128.845100000500679, 256899.677000001072884 ], [ 359126.082599997520447, 256902.917700000107288 ], [ 359127.492200002074242, 256923.7820999994874 ], [ 359148.051600001752377, 256923.501299999654293 ], [ 359149.073299996554852, 256936.785700000822544 ], [ 359151.769599996507168, 256936.545200001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401561300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.927051, "LATITUDE": 18.34172, "OBJECTID_1": 12355, "PARCEL_NO_": "105401561300", "Tax_Legal_": "KANAL GADE 1 KINGS QUARTER", "Name": "PENN, MARILYN A", "Address": "PO Box 7261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.371738067400003, "SHAPE_Area": 513.04810583699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359220.341399997472763, 256937.098200000822544 ], [ 359219.641099996864796, 256925.674800001084805 ], [ 359218.858000002801418, 256912.901099998503923 ], [ 359218.633799999952316, 256909.243999999016523 ], [ 359200.203000001609325, 256910.728799998760223 ], [ 359201.641699999570847, 256937.946600001305342 ], [ 359220.341399997472763, 256937.098200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401560900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92773252000001, "LATITUDE": 18.34178636, "OBJECTID_1": 12352, "PARCEL_NO_": "105401560900", "Tax_Legal_": "NORRE GADE 15B KINGS QTR", "Name": "RYAN W GREENE REVOCABLE LIVING TRUST", "Address": "PO Box 1197", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31600, "Improved_V": 275400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.810450700900006, "SHAPE_Area": 284.073643393 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359149.073299996554852, 256936.785700000822544 ], [ 359148.051600001752377, 256923.501299999654293 ], [ 359127.492200002074242, 256923.7820999994874 ], [ 359128.454000003635883, 256938.019000001251698 ], [ 359149.073299996554852, 256936.785700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402101400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9223582, "LATITUDE": 18.34172301, "OBJECTID_1": 12698, "PARCEL_NO_": "105402101400", "Tax_Legal_": "22 TAARNEBERG KINGS QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 114700, "Improved_V": 4500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.477502403700001, "SHAPE_Area": 201.99076938799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359714.516599997878075, 256934.638199999928474 ], [ 359708.282899998128414, 256917.439300000667572 ], [ 359698.021600000560284, 256922.063499998301268 ], [ 359704.053999997675419, 256938.706799998879433 ], [ 359706.669600002467632, 256937.689500000327826 ], [ 359709.285199999809265, 256936.6722999997437 ], [ 359711.90089999884367, 256935.655200000852346 ], [ 359714.516599997878075, 256934.638199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402101000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92284486, "LATITUDE": 18.34173292, "OBJECTID_1": 12694, "PARCEL_NO_": "105402101000", "Tax_Legal_": "15B TAARNEBERG KINGS QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.918476281700002, "SHAPE_Area": 195.57229617300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359662.754600003361702, 256935.773200001567602 ], [ 359656.746500000357628, 256917.978300001472235 ], [ 359647.050200000405312, 256922.493700001388788 ], [ 359652.351599998772144, 256939.168699998408556 ], [ 359662.754600003361702, 256935.773200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401400100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93077288000001, "LATITUDE": 18.34185063, "OBJECTID_1": 12071, "PARCEL_NO_": "105401400100", "Tax_Legal_": "GOVERNMENT PARK KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9880700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.118980429700002, "SHAPE_Area": 183.15370833 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358796.575400002300739, 256937.080600000917912 ], [ 358798.162500001490116, 256937.682399999350309 ], [ 358800.971900001168251, 256938.542100001126528 ], [ 358803.842799998819828, 256939.166000001132488 ], [ 358806.755599997937679, 256939.549800001084805 ], [ 358809.690200001001358, 256939.690799999982119 ], [ 358812.626299999654293, 256939.587999999523163 ], [ 358815.54389999806881, 256939.242300000041723 ], [ 358818.422700002789497, 256938.655900001525879 ], [ 358821.243100002408028, 256937.832899998873472 ], [ 358823.985500000417233, 256936.778900001198053 ], [ 358826.631099998950958, 256935.501299999654293 ], [ 358829.161700002849102, 256934.008799999952316 ], [ 358831.559900000691414, 256932.311599999666214 ], [ 358833.8091000020504, 256930.421500001102686 ], [ 358835.894000001251698, 256928.351500000804663 ], [ 358825.989200003445148, 256930.182500001043081 ], [ 358816.130900003015995, 256932.248500000685453 ], [ 358806.324400000274181, 256934.548300001770258 ], [ 358796.575400002300739, 256937.080600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401411400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92855758, "LATITUDE": 18.34184893, "OBJECTID_1": 12092, "PARCEL_NO_": "105401411400", "Tax_Legal_": "NORRE GADE 14B KINGS QUARTER", "Name": "BLACK SWAN ENTERTAINMENT LLC", "Address": "PO Box 307806", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67300, "Improved_V": 176600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.207420058899999, "SHAPE_Area": 328.16100306300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359059.690700002014637, 256928.927499998360872 ], [ 359048.912500001490116, 256928.714600000530481 ], [ 359048.943000003695488, 256925.137200001627207 ], [ 359042.830600000917912, 256924.846599999815226 ], [ 359041.925899997353554, 256945.281199999153614 ], [ 359060.459600001573563, 256946.605500001460314 ], [ 359059.690700002014637, 256928.927499998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401401000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92959993, "LATITUDE": 18.3418001, "OBJECTID_1": 12078, "PARCEL_NO_": "105401401000", "Tax_Legal_": "NORRE GADE 8 KINGS QTR", "Name": "BORNN, EDITH L", "Address": "Po Box 6408", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 88200, "Improved_V": 290000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.98380466899999, "SHAPE_Area": 838.84763392599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358960.498800002038479, 256940.247900001704693 ], [ 358950.001199997961521, 256914.528900001198053 ], [ 358943.581299997866154, 256915.331900000572205 ], [ 358937.168600000441074, 256916.191500000655651 ], [ 358930.763800002634525, 256917.107700001448393 ], [ 358924.367299996316433, 256918.080299999564886 ], [ 358926.381099998950958, 256944.670899998396635 ], [ 358942.513099998235703, 256942.804400000721216 ], [ 358944.102300003170967, 256945.561700001358986 ], [ 358960.498800002038479, 256940.247900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92249997, "LATITUDE": 18.34178146, "OBJECTID_1": 12706, "PARCEL_NO_": "105402102800", "Tax_Legal_": "20 TAARNEBERG KINGS QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 224800, "Improved_V": 32600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.485463195199998, "SHAPE_Area": 369.360326848 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359704.053999997675419, 256938.706799998879433 ], [ 359698.021600000560284, 256922.063499998301268 ], [ 359678.570600003004074, 256930.82880000025034 ], [ 359683.701999999582767, 256946.625799998641014 ], [ 359688.789800003170967, 256944.645599998533726 ], [ 359693.877700001001358, 256942.665600001811981 ], [ 359698.965800002217293, 256940.686000000685453 ], [ 359704.053999997675419, 256938.706799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402100700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92300954, "LATITUDE": 18.34180589, "OBJECTID_1": 12691, "PARCEL_NO_": "105402100700", "Tax_Legal_": "14 TAARNEBERG KING QTR", "Name": "NORMIL, VINCENT", "Address": "1313 Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.4152484898, "SHAPE_Area": 149.91538045499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359644.259499996900558, 256943.604800000786781 ], [ 359638.123800002038479, 256926.650600001215935 ], [ 359630.538000002503395, 256930.183100000023842 ], [ 359636.241099998354912, 256946.660199999809265 ], [ 359644.259499996900558, 256943.604800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401392000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93144529, "LATITUDE": 18.34194133, "OBJECTID_1": 12068, "PARCEL_NO_": "105401392000", "Tax_Legal_": "DRONNINGENS GADE 3B QUEENS QUARTER", "Name": "SPENCELEY, KENNETH W. & MARIA", "Address": "PO Box 292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 124900, "Improved_V": 221100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.824244079700001, "SHAPE_Area": 41.162752448200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358748.614900000393391, 256940.91270000115037 ], [ 358747.248499996960163, 256940.925400000065565 ], [ 358745.882100000977516, 256940.931600000709295 ], [ 358744.515600003302097, 256940.931200001388788 ], [ 358743.14919999986887, 256940.924199998378754 ], [ 358742.047899998724461, 256947.772799998521805 ], [ 358748.555900000035763, 256947.826099999248981 ], [ 358748.614900000393391, 256940.91270000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401570700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92660702000001, "LATITUDE": 18.34181102, "OBJECTID_1": 12364, "PARCEL_NO_": "105401570700", "Tax_Legal_": "KONGENS GADE 49&50&KONGENS TVER2 KINGS QUARTER", "Name": "THE ESTATE LUTHER BENJAMIN", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 127500, "Improved_V": 522200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.03909659799999, "SHAPE_Area": 905.84752649799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359262.258000001311302, 256946.813299998641014 ], [ 359280.851999998092651, 256945.582800000905991 ], [ 359280.199100002646446, 256931.1435999982059 ], [ 359260.875299997627735, 256931.88060000166297 ], [ 359260.570500001311302, 256916.180300001055002 ], [ 359239.562700003385544, 256917.955600000917912 ], [ 359241.607699997723103, 256948.026900000870228 ], [ 359262.258000001311302, 256946.813299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401400600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93042146000001, "LATITUDE": 18.34186457, "OBJECTID_1": 12074, "PARCEL_NO_": "105401400600", "Tax_Legal_": "NORRE GADE 4B KINGS QTR", "Name": "4B NORRE GADE INC.", "Address": "PO Box 302605", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1074400, "Improved_V": 701800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.144689952899995, "SHAPE_Area": 443.68464507700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358864.936499997973442, 256946.912200000137091 ], [ 358862.618199996650219, 256924.611299999058247 ], [ 358858.296999998390675, 256925.098799999803305 ], [ 358853.980999998748302, 256925.630499999970198 ], [ 358849.670800000429153, 256926.206599999219179 ], [ 358845.366599999368191, 256926.826799999922514 ], [ 358844.542499996721745, 256927.072599999606609 ], [ 358843.819899998605251, 256927.538699999451637 ], [ 358843.25620000064373, 256928.188099998980761 ], [ 358842.896300002932549, 256928.969200000166893 ], [ 358842.768899999558926, 256929.819600000977516 ], [ 358842.792999997735023, 256930.224500000476837 ], [ 358845.149099998176098, 256948.820500001311302 ], [ 358864.936499997973442, 256946.912200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401410600", "MAP": "MB", "PARCEL_NAM": "9B NORRE GADE", "ACRE": "3,325 sq ft", "LONGITUDE": -64.92923425, "LATITUDE": 18.34190088, "OBJECTID_1": 12084, "PARCEL_NO_": "105401410600", "Tax_Legal_": "NORRE GADE 9B KINGS QUARTER", "Name": "BENJAMIN, R & R INC", "Address": "PO Box 7501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66800, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.745522985899996, "SHAPE_Area": 310.26488031000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358990.253799997270107, 256935.330400001257658 ], [ 358964.355599999427795, 256935.555799998342991 ], [ 358971.150700002908707, 256948.616200000047684 ], [ 358988.546899996697903, 256949.192499998956919 ], [ 358991.32940000295639, 256949.224399998784065 ], [ 358990.253799997270107, 256935.330400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401410900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92904515, "LATITUDE": 18.3418197, "OBJECTID_1": 12087, "PARCEL_NO_": "105401410900", "Tax_Legal_": "NORRE GADE 11-A KINGS QUARTER", "Name": "SMOORE PROPERTY LLC", "Address": "PO Box 1498", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 174900, "Improved_V": 236700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.010787132, "SHAPE_Area": 656.43344766400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359012.798799999058247, 256932.682199999690056 ], [ 359002.814699999988079, 256933.404100000858307 ], [ 359001.871299996972084, 256911.067200001329184 ], [ 359001.613300003111362, 256911.083099998533726 ], [ 359001.35530000180006, 256911.098999999463558 ], [ 359001.097300000488758, 256911.114900000393391 ], [ 359000.839299999177456, 256911.130699999630451 ], [ 358988.439499996602535, 256911.8935999982059 ], [ 358990.096400000154972, 256933.296700000762939 ], [ 358990.253799997270107, 256935.330400001257658 ], [ 358991.32940000295639, 256949.224399998784065 ], [ 359013.537900000810623, 256950.181600000709295 ], [ 359012.798799999058247, 256932.682199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402101100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92265306, "LATITUDE": 18.34184365, "OBJECTID_1": 12695, "PARCEL_NO_": "105402101100", "Tax_Legal_": "E & 19 TAARNEBERG KINGS QUARTER", "Name": "THOMPSON, WALTER & JOYCE (LIFE ESTATE)", "Address": "1308 Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.425766846999998, "SHAPE_Area": 218.027737796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359683.701999999582767, 256946.625799998641014 ], [ 359678.570600003004074, 256930.82880000025034 ], [ 359666.186499997973442, 256936.409600000828505 ], [ 359671.270099997520447, 256951.466299999505281 ], [ 359674.377999998629093, 256950.256000000983477 ], [ 359677.48589999973774, 256949.045800000429153 ], [ 359680.593999996781349, 256947.835799999535084 ], [ 359683.701999999582767, 256946.625799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401570900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92627915, "LATITUDE": 18.34184001, "OBJECTID_1": 12365, "PARCEL_NO_": "105401570900", "Tax_Legal_": "51B KONGENS GADE KINGS QUARTER", "Name": "RANGER AMERICAN OF VI INC", "Address": "PO Box 29105", "City": "San Juan", "State": "Puerto Rico", "Zip": 929, "Country": "United States", "Land_Value": 51800, "Improved_V": 314500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.889458304800002, "SHAPE_Area": 326.996942069 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359303.204999998211861, 256944.513799998909235 ], [ 359302.553300000727177, 256932.431699998676777 ], [ 359302.346500001847744, 256929.677999999374151 ], [ 359281.19200000166893, 256931.077899999916553 ], [ 359280.199100002646446, 256931.1435999982059 ], [ 359280.851999998092651, 256945.582800000905991 ], [ 359303.204999998211861, 256944.513799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401541500", "MAP": "D9-4883-T90", "PARCEL_NAM": "1", "ACRE": ".15", "LONGITUDE": -64.92552293, "LATITUDE": 18.341372, "OBJECTID_1": 12336, "PARCEL_NO_": "105401541500", "Tax_Legal_": "FREDERIKSTED GADE REMAINDER 1 KINGS QTR.", "Name": "W. S. B. , INC.", "Address": "PO Box 11720", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 102600, "Improved_V": 395500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.322839243, "SHAPE_Area": 597.38430020299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359360.382200002670288, 256901.966699998825788 ], [ 359363.998199999332428, 256899.971599999815226 ], [ 359369.349899999797344, 256895.580400001257658 ], [ 359391.717399999499321, 256892.14979999884963 ], [ 359383.928700000047684, 256874.807000000029802 ], [ 359354.942100003361702, 256879.317499998956919 ], [ 359354.964699998497963, 256879.466899998486042 ], [ 359354.99099999666214, 256879.615600001066923 ], [ 359355.020999997854233, 256879.763700000941753 ], [ 359355.05460000038147, 256879.910999998450279 ], [ 359360.382200002670288, 256901.966699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401391900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93144961, "LATITUDE": 18.34199136, "OBJECTID_1": 12067, "PARCEL_NO_": "105401391900", "Tax_Legal_": "DRONNINGENS GADE 3AA KINGS QUARTER", "Name": "SPENCELEY, KENNETH W. & MARIA", "Address": "PO Box 292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.3970911135, "SHAPE_Area": 29.5785738159 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358748.555900000035763, 256947.826099999248981 ], [ 358742.047899998724461, 256947.772799998521805 ], [ 358741.336300000548363, 256952.197799999266863 ], [ 358748.520000003278255, 256952.047699999064207 ], [ 358748.555900000035763, 256947.826099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401560800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92771076, "LATITUDE": 18.34191253, "OBJECTID_1": 12351, "PARCEL_NO_": "105401560800", "Tax_Legal_": "KONGENS GADE 43B KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.747512358400002, "SHAPE_Area": 331.03676779699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359151.635799996554852, 256951.213100001215935 ], [ 359151.769599996507168, 256936.545200001448393 ], [ 359149.073299996554852, 256936.785700000822544 ], [ 359128.454000003635883, 256938.019000001251698 ], [ 359129.429700002074242, 256952.460799999535084 ], [ 359151.635799996554852, 256951.213100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402101200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92275743, "LATITUDE": 18.34178465, "OBJECTID_1": 12696, "PARCEL_NO_": "105402101200", "Tax_Legal_": "18 TAARNEBERG KINGS QUARTER", "Name": "THOMPSON, W,D,G & J. FULLER & D. DORSETT", "Address": "1308 Taanerberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4600, "Improved_V": 64600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.343521525300005, "SHAPE_Area": 111.596686303 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359671.270099997520447, 256951.466299999505281 ], [ 359666.186499997973442, 256936.409600000828505 ], [ 359659.526500001549721, 256916.683699999004602 ], [ 359656.746500000357628, 256917.978300001472235 ], [ 359662.754600003361702, 256935.773200001567602 ], [ 359668.426899999380112, 256952.573699999600649 ], [ 359669.137699998915195, 256952.296799998730421 ], [ 359669.848499998450279, 256952.019999999552965 ], [ 359670.559299997985363, 256951.743200000375509 ], [ 359671.270099997520447, 256951.466299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402100600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92294436, "LATITUDE": 18.34190198, "OBJECTID_1": 12690, "PARCEL_NO_": "105402100600", "Tax_Legal_": "13 TAARNEBERG KINGS QUARTER", "Name": "NORMIL, ELSIE", "Address": "1313 Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2700, "Improved_V": 48000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.739211508099999, "SHAPE_Area": 101.805467382 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359647.880699999630451, 256949.951299998909235 ], [ 359651.984999999403954, 256948.500999998301268 ], [ 359649.665100000798702, 256941.712400000542402 ], [ 359644.259499996900558, 256943.604800000786781 ], [ 359636.241099998354912, 256946.660199999809265 ], [ 359638.524499997496605, 256953.257199998944998 ], [ 359647.880699999630451, 256949.951299998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402100900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92279105, "LATITUDE": 18.34188813, "OBJECTID_1": 12693, "PARCEL_NO_": "105402100900", "Tax_Legal_": "16 TAARNEBERG KINGS QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.319752487300001, "SHAPE_Area": 200.38626171600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359668.426899999380112, 256952.573699999600649 ], [ 359662.754600003361702, 256935.773200001567602 ], [ 359652.351599998772144, 256939.168699998408556 ], [ 359657.915200002491474, 256956.668800000101328 ], [ 359660.543099999427795, 256955.644900001585484 ], [ 359663.170999996364117, 256954.621100001037121 ], [ 359665.798900000751019, 256953.597300000488758 ], [ 359668.426899999380112, 256952.573699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401411200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92871748, "LATITUDE": 18.34182761, "OBJECTID_1": 12090, "PARCEL_NO_": "105401411200", "Tax_Legal_": "13 NORRE GADE KINGS QUARTER", "Name": "RICHARDSON, DESIREE M., DAWN M., DARIN M. & DANA M.", "Address": "PO Box 303895", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 213100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.133992041, "SHAPE_Area": 851.92813836599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359041.771799996495247, 256960.467599999159575 ], [ 359041.925899997353554, 256945.281199999153614 ], [ 359042.830600000917912, 256924.846599999815226 ], [ 359043.427400000393391, 256910.045099999755621 ], [ 359024.750100001692772, 256909.651299998164177 ], [ 359026.406800001859665, 256960.254700001329184 ], [ 359028.671899996697903, 256960.315799999982119 ], [ 359041.771799996495247, 256960.467599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401542000", "MAP": "D9-7376-T004", "PARCEL_NAM": "1A-1", "ACRE": ".031", "LONGITUDE": -64.92537748, "LATITUDE": 18.34196361, "OBJECTID_1": 12341, "PARCEL_NO_": "105401542000", "Tax_Legal_": "1A-1 KONGENS GADE KINGS QTR. CHARLOTTE AMALIE", "Name": "DUDLEY TOPPER AND FEUERZEIG LLP", "Address": "1336 Beltjen Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8024701, "Country": "United States", "Land_Value": 3100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.836207440600006, "SHAPE_Area": 170.44629457400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359399.715999998152256, 256952.781899999827147 ], [ 359401.496100001037121, 256946.203200001269579 ], [ 359372.48309999704361, 256952.063499998301268 ], [ 359373.915399998426437, 256957.993299998342991 ], [ 359399.715999998152256, 256952.781899999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401411300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92855654, "LATITUDE": 18.34199587, "OBJECTID_1": 12091, "PARCEL_NO_": "105401411300", "Tax_Legal_": "TORVET STRAEDE 1 KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87600, "Improved_V": 61700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.982457335399999, "SHAPE_Area": 265.36064690699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359061.262999996542931, 256959.088100001215935 ], [ 359060.459600001573563, 256946.605500001460314 ], [ 359041.925899997353554, 256945.281199999153614 ], [ 359041.771799996495247, 256960.467599999159575 ], [ 359041.95380000025034, 256961.57880000025034 ], [ 359056.505300000309944, 256958.80460000038147 ], [ 359060.667099997401237, 256959.065699998289347 ], [ 359061.262999996542931, 256959.088100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401400100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93063187, "LATITUDE": 18.34197811, "OBJECTID_1": 12071, "PARCEL_NO_": "105401400100", "Tax_Legal_": "GOVERNMENT PARK KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9880700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.899124539, "SHAPE_Area": 334.40931908599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358841.841399997472763, 256961.31529999896884 ], [ 358839.076200000941753, 256936.773899998515844 ], [ 358824.105400003492832, 256944.015999998897314 ], [ 358821.593800000846386, 256945.349300000816584 ], [ 358819.189000003039837, 256946.866799999028444 ], [ 358816.904500000178814, 256948.559900000691414 ], [ 358814.752999998629093, 256950.419300001114607 ], [ 358841.841399997472763, 256961.31529999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401392100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93128546, "LATITUDE": 18.3420175, "OBJECTID_1": 12069, "PARCEL_NO_": "105401392100", "Tax_Legal_": "DRONNINGENS GADE 2 QUEENS QUARTER", "Name": "SABASHDAMAN LLC", "Address": "PO Box 8882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1008500, "Improved_V": 105200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.925441449399997, "SHAPE_Area": 305.38183052300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358769.692400000989437, 256940.497999999672174 ], [ 358757.032600000500679, 256940.69819999858737 ], [ 358755.628200002014637, 256965.753100000321865 ], [ 358756.493299998342991, 256965.740499999374151 ], [ 358757.358599998056889, 256965.739000000059605 ], [ 358758.223700001835823, 256965.748700000345707 ], [ 358759.088699996471405, 256965.769499998539686 ], [ 358767.149700000882149, 256966.015799999237061 ], [ 358769.692400000989437, 256940.497999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401392200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93116496, "LATITUDE": 18.34201865, "OBJECTID_1": 12070, "PARCEL_NO_": "105401392200", "Tax_Legal_": "DRONNINGENS GADE 1 QUEENS QUARTER", "Name": "QUEEN QUARTER, INC.", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1748900, "Improved_V": 910200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.852806714500005, "SHAPE_Area": 346.05757479900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358783.234999999403954, 256940.160999998450279 ], [ 358782.666400000452995, 256940.210700001567602 ], [ 358782.097199998795986, 256940.253800000995398 ], [ 358781.52759999781847, 256940.290199998766184 ], [ 358780.957599997520447, 256940.319899998605251 ], [ 358769.692400000989437, 256940.497999999672174 ], [ 358767.149700000882149, 256966.015799999237061 ], [ 358780.389499999582767, 256966.420200001448393 ], [ 358783.234999999403954, 256940.160999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401411100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9288539, "LATITUDE": 18.34186916, "OBJECTID_1": 12089, "PARCEL_NO_": "105401411100", "Tax_Legal_": "NORRE GADE 12 KINGS QUARTER", "Name": "LEOPOLD BARBEL, JR. TRUST", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 163600, "Improved_V": 118700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.18552172400001, "SHAPE_Area": 732.32594085400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359028.62780000269413, 256967.213100001215935 ], [ 359028.671899996697903, 256960.315799999982119 ], [ 359026.406800001859665, 256960.254700001329184 ], [ 359024.750100001692772, 256909.651299998164177 ], [ 359021.52759999781847, 256909.851700000464916 ], [ 359018.304999999701977, 256910.051699999719858 ], [ 359015.082400001585484, 256910.251499999314547 ], [ 359011.85980000346899, 256910.450899999588728 ], [ 359012.798799999058247, 256932.682199999690056 ], [ 359013.537900000810623, 256950.181600000709295 ], [ 359014.225199997425079, 256966.454999998211861 ], [ 359028.62780000269413, 256967.213100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401391800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93141015, "LATITUDE": 18.34204316, "OBJECTID_1": 12066, "PARCEL_NO_": "105401391800", "Tax_Legal_": "DRONNINGENS GADE 3A QUEENS QTR", "Name": "GAD PROPERTIES LTD", "Address": "3A Dronningens Gade Queens Quarter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 783700, "Improved_V": 899000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.059813595600005, "SHAPE_Area": 321.431150409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358755.628200002014637, 256965.753100000321865 ], [ 358757.032600000500679, 256940.69819999858737 ], [ 358756.680799998342991, 256940.70380000025034 ], [ 358754.664899997413158, 256940.777499999850988 ], [ 358752.648599997162819, 256940.836800001561642 ], [ 358750.631800003349781, 256940.881900001317263 ], [ 358748.614900000393391, 256940.91270000115037 ], [ 358748.555900000035763, 256947.826099999248981 ], [ 358748.520000003278255, 256952.047699999064207 ], [ 358741.336300000548363, 256952.197799999266863 ], [ 358738.770199999213219, 256968.154699999839067 ], [ 358742.626000002026558, 256967.306000001728535 ], [ 358745.844200000166893, 256966.679699998348951 ], [ 358749.089100003242493, 256966.211399998515844 ], [ 358752.353100001811981, 256965.902300000190735 ], [ 358755.628200002014637, 256965.753100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401570300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92627142000001, "LATITUDE": 18.34201663, "OBJECTID_1": 12360, "PARCEL_NO_": "105401570300", "Tax_Legal_": "KONGENS GADE 51A KINGS QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65700, "Improved_V": 153500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.812991698800005, "SHAPE_Area": 556.50060360700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359304.511600002646446, 256968.7347999997437 ], [ 359303.204999998211861, 256944.513799998909235 ], [ 359280.851999998092651, 256945.582800000905991 ], [ 359281.126900002360344, 256951.594399999827147 ], [ 359280.482900001108646, 256969.69539999961853 ], [ 359304.511600002646446, 256968.7347999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401570100", "MAP": null, "PARCEL_NAM": "50A KONGENS", "ACRE": "5,051 sq ft", "LONGITUDE": -64.92646547, "LATITUDE": 18.34202375, "OBJECTID_1": 12359, "PARCEL_NO_": "105401570100", "Tax_Legal_": "KONGENS GADE 49A & 50A KINGS QUARTER", "Name": "DESVI, INC.", "Address": "PO Box 8388", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184400, "Improved_V": 338200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.434005886799994, "SHAPE_Area": 430.10989956999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359280.482900001108646, 256969.69539999961853 ], [ 359281.126900002360344, 256951.594399999827147 ], [ 359280.851999998092651, 256945.582800000905991 ], [ 359262.258000001311302, 256946.813299998641014 ], [ 359263.319399997591972, 256970.284699998795986 ], [ 359280.482900001108646, 256969.69539999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401570100", "MAP": null, "PARCEL_NAM": "49A KONGENS", "ACRE": "7,242 sq ft", "LONGITUDE": -64.92664879, "LATITUDE": 18.34203694, "OBJECTID_1": 12359, "PARCEL_NO_": "105401570100", "Tax_Legal_": "KONGENS GADE 49A & 50A KINGS QUARTER", "Name": "DESVI, INC.", "Address": "PO Box 8388", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184400, "Improved_V": 338200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.534645184, "SHAPE_Area": 487.61518571599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359263.319399997591972, 256970.284699998795986 ], [ 359262.258000001311302, 256946.813299998641014 ], [ 359241.607699997723103, 256948.026900000870228 ], [ 359242.753899998962879, 256971.73589999973774 ], [ 359263.319399997591972, 256970.284699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402100400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92313212000001, "LATITUDE": 18.34193733, "OBJECTID_1": 12688, "PARCEL_NO_": "105402100400", "Tax_Legal_": "14 TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 134400, "Improved_V": 150700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.39228853, "SHAPE_Area": 873.39256398500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359641.870099999010563, 256962.923000000417233 ], [ 359638.524499997496605, 256953.257199998944998 ], [ 359636.241099998354912, 256946.660199999809265 ], [ 359630.538000002503395, 256930.183100000023842 ], [ 359605.321999996900558, 256941.925700001418591 ], [ 359619.513099998235703, 256971.644099999219179 ], [ 359625.102099999785423, 256969.463199999183416 ], [ 359630.691299997270107, 256967.282699998468161 ], [ 359636.280599996447563, 256965.102600000798702 ], [ 359641.870099999010563, 256962.923000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401391700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93159097, "LATITUDE": 18.3420417, "OBJECTID_1": 12065, "PARCEL_NO_": "105401391700", "Tax_Legal_": "DRONNINGENS GADE 4 QUEENS QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 654100, "Improved_V": 568100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.334474051, "SHAPE_Area": 621.88447553100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358738.770199999213219, 256968.154699999839067 ], [ 358741.336300000548363, 256952.197799999266863 ], [ 358742.047899998724461, 256947.772799998521805 ], [ 358743.14919999986887, 256940.924199998378754 ], [ 358737.86599999666214, 256940.83559999987483 ], [ 358732.585299998521805, 256940.648800000548363 ], [ 358727.309000000357628, 256940.364000000059605 ], [ 358722.038900002837181, 256939.981300000101328 ], [ 358717.738899998366833, 256972.784099999815226 ], [ 358738.770199999213219, 256968.154699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401400800", "MAP": null, "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.93001488, "LATITUDE": 18.34195616, "OBJECTID_1": 12076, "PARCEL_NO_": "105401400800", "Tax_Legal_": "NORRE GADE 6 KINGS QTR", "Name": "EVANGELICAL LUTHERAN CHURCH", "Address": "PO Box 58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4033500, "Improved_V": 474400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.28348524899999, "SHAPE_Area": 1281.7283024799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358910.245899997651577, 256972.505199998617172 ], [ 358908.3074000030756, 256920.544199999421835 ], [ 358902.017099998891354, 256921.359400000423193 ], [ 358895.715899996459484, 256922.085200000554323 ], [ 358889.404899999499321, 256922.721400000154972 ], [ 358883.085600003600121, 256923.267900001257658 ], [ 358885.014200001955032, 256972.910199999809265 ], [ 358910.245899997651577, 256972.505199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401560700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92687077, "LATITUDE": 18.34193441, "OBJECTID_1": 12350, "PARCEL_NO_": "105401560700", "Tax_Legal_": "48 KONGENS GADE KINGS QTR", "Name": "PETERSEN, DONALD & GERMAIN M.", "Address": "PO Box 305065", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17800, "Improved_V": 80000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.583737586, "SHAPE_Area": 742.17839526099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359229.13400000333786, 256972.493299998342991 ], [ 359228.896700002253056, 256968.623100001364946 ], [ 359238.549500003457069, 256968.221000000834465 ], [ 359236.430399999022484, 256924.975400000810623 ], [ 359219.641099996864796, 256925.674800001084805 ], [ 359220.341399997472763, 256937.098200000822544 ], [ 359222.537399999797344, 256972.91950000077486 ], [ 359229.13400000333786, 256972.493299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401400900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92954897, "LATITUDE": 18.34202708, "OBJECTID_1": 12077, "PARCEL_NO_": "105401400900", "Tax_Legal_": "LILLE TARNE GADE 1 KINGS QTR", "Name": "PROPERTY OF THE CHURCH", "Address": "PO Box 58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 205900, "Improved_V": 218200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.69636382300001, "SHAPE_Area": 870.29157764399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358967.040100000798702, 256961.582600001245737 ], [ 358963.480099998414516, 256947.552000001072884 ], [ 358960.498800002038479, 256940.247900001704693 ], [ 358944.102300003170967, 256945.561700001358986 ], [ 358942.513099998235703, 256942.804400000721216 ], [ 358926.381099998950958, 256944.670899998396635 ], [ 358926.6587999984622, 256948.338300000876188 ], [ 358929.156400002539158, 256948.084800001233816 ], [ 358930.1216000020504, 256972.928899999707937 ], [ 358967.040100000798702, 256961.582600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401560500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92703521, "LATITUDE": 18.34201013, "OBJECTID_1": 12349, "PARCEL_NO_": "105401560500", "Tax_Legal_": "47 KONGENS GADE KINGS QTR", "Name": "LEGAL SERVICES OF THE V. I.", "Address": "3017 Estate Orange Grv", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 92000, "Improved_V": 273000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.707767585, "SHAPE_Area": 709.67448961499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359222.537399999797344, 256972.91950000077486 ], [ 359220.341399997472763, 256937.098200000822544 ], [ 359201.641699999570847, 256937.946600001305342 ], [ 359202.164300002157688, 256974.60080000013113 ], [ 359222.537399999797344, 256972.91950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401400700", "MAP": null, "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.93021985, "LATITUDE": 18.34196696, "OBJECTID_1": 12075, "PARCEL_NO_": "105401400700", "Tax_Legal_": "NORRE GADE 5 KINGS QTR", "Name": "OMNI SYSTEMS INC", "Address": "8201 Greensboro Dr", "City": "Mc Lean", "State": "Virginia", "Zip": 22102, "Country": "United States", "Land_Value": 434600, "Improved_V": 336200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.37283547800001, "SHAPE_Area": 891.68454615999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358885.014200001955032, 256972.910199999809265 ], [ 358883.085600003600121, 256923.267900001257658 ], [ 358880.032899998128414, 256923.499600000679493 ], [ 358876.97860000282526, 256923.710299998521805 ], [ 358873.923000000417233, 256923.899999998509884 ], [ 358870.866200000047684, 256924.068900000303984 ], [ 358864.785599999129772, 256924.383699998259544 ], [ 358864.622599996626377, 256924.400499999523163 ], [ 358864.459600001573563, 256924.417300000786781 ], [ 358864.296700000762939, 256924.434099998325109 ], [ 358864.133699998259544, 256924.4510000012815 ], [ 358866.453500002622604, 256946.765900000929832 ], [ 358865.703699998557568, 256946.838199999183416 ], [ 358868.146799996495247, 256974.318300001323223 ], [ 358885.014200001955032, 256972.910199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401560400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92725579, "LATITUDE": 18.34200032, "OBJECTID_1": 12348, "PARCEL_NO_": "105401560400", "Tax_Legal_": "KONGENS GADE 46 KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 105000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.28489469900001, "SHAPE_Area": 576.90970650099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359196.688299998641014, 256975.113600000739098 ], [ 359194.020400002598763, 256933.83559999987483 ], [ 359179.659699998795986, 256934.782200001180172 ], [ 359182.992499999701977, 256975.474300000816584 ], [ 359196.688299998641014, 256975.113600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401391600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93176904000001, "LATITUDE": 18.34205647, "OBJECTID_1": 12064, "PARCEL_NO_": "105401391600", "Tax_Legal_": "DRONNINGENS GADE 5 QUEENS QUARTER", "Name": "CENTER MALL CORP.", "Address": "PO Box 1207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1193400, "Improved_V": 2437400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.50341295, "SHAPE_Area": 592.13773757199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358717.738899998366833, 256972.784099999815226 ], [ 358722.038900002837181, 256939.981300000101328 ], [ 358717.933700002729893, 256939.614900000393391 ], [ 358713.834399998188019, 256939.189100001007318 ], [ 358709.741599999368191, 256938.703999999910593 ], [ 358705.656300000846386, 256938.159600000828505 ], [ 358700.550899997353554, 256976.212900001555681 ], [ 358701.724399998784065, 256976.109600000083447 ], [ 358702.893299996852875, 256975.963100001215935 ], [ 358704.056000001728535, 256975.773800000548363 ], [ 358705.211000002920628, 256975.541700001806021 ], [ 358717.738899998366833, 256972.784099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401560300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92740713000001, "LATITUDE": 18.34201121, "OBJECTID_1": 12347, "PARCEL_NO_": "105401560300", "Tax_Legal_": "KONGENS GADE 45 KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 106600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.70634189899999, "SHAPE_Area": 735.51947722700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359182.992499999701977, 256975.474300000816584 ], [ 359179.659699998795986, 256934.782200001180172 ], [ 359161.683100000023842, 256935.918499998748302 ], [ 359165.017899997532368, 256976.635600000619888 ], [ 359182.992499999701977, 256975.474300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402100300", "MAP": "M.B.", "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.92335237, "LATITUDE": 18.34204413, "OBJECTID_1": 12687, "PARCEL_NO_": "105402100300", "Tax_Legal_": "8 TAARNEBERG KINGS QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.877263924399998, "SHAPE_Area": 343.56700160499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359612.332500003278255, 256974.446800000965595 ], [ 359598.868000000715256, 256945.302499998360872 ], [ 359590.247299998998642, 256952.088799998164177 ], [ 359601.212300002574921, 256978.788800001144409 ], [ 359603.992299996316433, 256977.703099999576807 ], [ 359606.772299997508526, 256976.617600001394749 ], [ 359609.552400000393391, 256975.5320999994874 ], [ 359612.332500003278255, 256974.446800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401550100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92816096, "LATITUDE": 18.34189405, "OBJECTID_1": 12343, "PARCEL_NO_": "105401550100", "Tax_Legal_": "FRANKLIN D ROOSEVELT PK KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 530100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.80488158200001, "SHAPE_Area": 3998.8555043199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359118.932199999690056, 256978.085900001227856 ], [ 359121.776799999177456, 256974.838799998164177 ], [ 359117.297200001776218, 256908.534800000488758 ], [ 359117.11089999973774, 256907.383799999952316 ], [ 359116.686200000345707, 256906.244500000029802 ], [ 359116.043300002813339, 256905.212499998509884 ], [ 359115.207800000905991, 256904.329100001603365 ], [ 359114.213299997150898, 256903.629599999636412 ], [ 359113.099399998784065, 256903.142200000584126 ], [ 359111.910700000822544, 256902.886100001633167 ], [ 359110.694899998605251, 256902.871800001710653 ], [ 359065.815700002014637, 256906.985800001770258 ], [ 359063.057700000703335, 256910.289299998432398 ], [ 359069.328500002622604, 256981.290600001811981 ], [ 359118.932199999690056, 256978.085900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401410500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9284653, "LATITUDE": 18.34215367, "OBJECTID_1": 12083, "PARCEL_NO_": "105401410500", "Tax_Legal_": "KONGENS GADE 42 KINGS QUARTER", "Name": "ELEANOR ADAMS HOFFMAN and MAXWELL ADAMS HOFFMAN", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55800, "Improved_V": 241000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.742710404999997, "SHAPE_Area": 121.733288637 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359064.001000002026558, 256982.596999999135733 ], [ 359061.962099999189377, 256959.11430000141263 ], [ 359061.262999996542931, 256959.088100001215935 ], [ 359060.667099997401237, 256959.065699998289347 ], [ 359056.505300000309944, 256958.80460000038147 ], [ 359059.07209999859333, 256982.440000001341105 ], [ 359064.001000002026558, 256982.596999999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401410400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9285599, "LATITUDE": 18.34216299, "OBJECTID_1": 12082, "PARCEL_NO_": "105401410400", "Tax_Legal_": "41 KONGENS GADE KINGS QTR", "Name": "ELEANOR ADAMS HOFFMAN and MAXWELL ADAMS HOFFMAN", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.735742065699995, "SHAPE_Area": 342.65680427199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359054.529399998486042, 256982.551899999380112 ], [ 359059.07209999859333, 256982.440000001341105 ], [ 359056.505300000309944, 256958.80460000038147 ], [ 359041.95380000025034, 256961.57880000025034 ], [ 359043.306100003421307, 256982.902699999511242 ], [ 359047.048500001430511, 256982.691199999302626 ], [ 359050.634700000286102, 256982.469700001180172 ], [ 359054.529399998486042, 256982.551899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401410300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92869879, "LATITUDE": 18.34216813, "OBJECTID_1": 12081, "PARCEL_NO_": "105401410300", "Tax_Legal_": "KONGENS GADE 40 KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7800, "Improved_V": 64600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.028768340799999, "SHAPE_Area": 315.04372819899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359040.534000001847744, 256983.053800001740456 ], [ 359041.226999998092651, 256983.016499999910593 ], [ 359041.920100003480911, 256982.978799998760223 ], [ 359042.613099999725819, 256982.940900001674891 ], [ 359043.306100003421307, 256982.902699999511242 ], [ 359041.95380000025034, 256961.57880000025034 ], [ 359041.771799996495247, 256960.467599999159575 ], [ 359028.671899996697903, 256960.315799999982119 ], [ 359028.62780000269413, 256967.213100001215935 ], [ 359029.167599998414516, 256983.586899999529123 ], [ 359040.534000001847744, 256983.053800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401410200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92883119, "LATITUDE": 18.3422, "OBJECTID_1": 12080, "PARCEL_NO_": "105401410200", "Tax_Legal_": "KONGENS GADE 39 KINGS QUARTER", "Name": "THOMPSON, PEARL", "Address": "6815 Niumalu Loop", "City": "Honolulu", "State": "Hawaii", "Zip": 96825, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.8249019573, "SHAPE_Area": 244.23769220700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359029.167599998414516, 256983.586899999529123 ], [ 359028.62780000269413, 256967.213100001215935 ], [ 359014.225199997425079, 256966.454999998211861 ], [ 359014.976899996399879, 256984.252500001341105 ], [ 359029.167599998414516, 256983.586899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401541000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92591063, "LATITUDE": 18.34220332, "OBJECTID_1": 12333, "PARCEL_NO_": "105401541000", "Tax_Legal_": "KONGENS GADE 2A&2B KINGS QTR", "Name": "SHE-CAT INVESTMENTS LLC", "Address": "PO Box 307782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31500, "Improved_V": 291000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.525123146600002, "SHAPE_Area": 123.560964419 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359336.100400000810623, 256983.50560000166297 ], [ 359335.236800000071526, 256971.896000001579523 ], [ 359332.533500000834465, 256972.246899999678135 ], [ 359329.828699998557568, 256972.585900001227856 ], [ 359327.122400000691414, 256972.912900000810623 ], [ 359324.414700001478195, 256973.227899998426437 ], [ 359325.4966000020504, 256984.504900000989437 ], [ 359336.100400000810623, 256983.50560000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401410100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92902205, "LATITUDE": 18.34213192, "OBJECTID_1": 12079, "PARCEL_NO_": "105401410100", "Tax_Legal_": "KONGENS GADE 38 KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 268400, "Improved_V": 158000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.04985351800001, "SHAPE_Area": 902.292523727 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358989.765699997544289, 256986.400800000876188 ], [ 359014.816100001335144, 256984.870299998670816 ], [ 359014.225199997425079, 256966.454999998211861 ], [ 359013.537900000810623, 256950.181600000709295 ], [ 358991.32940000295639, 256949.224399998784065 ], [ 358988.546899996697903, 256949.192499998956919 ], [ 358989.765699997544289, 256986.400800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401400500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92950308, "LATITUDE": 18.34222153, "OBJECTID_1": 12073, "PARCEL_NO_": "105401400500", "Tax_Legal_": "KONGENS GADE 35 36 KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 267000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.407077566, "SHAPE_Area": 768.45568794899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358968.842299997806549, 256986.422200001776218 ], [ 358967.040100000798702, 256961.582600001245737 ], [ 358930.1216000020504, 256972.928899999707937 ], [ 358930.731200002133846, 256988.622000001370907 ], [ 358968.842299997806549, 256986.422200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401391400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93126063, "LATITUDE": 18.34225614, "OBJECTID_1": 12063, "PARCEL_NO_": "105401391400", "Tax_Legal_": "COMMANDANT GADE 1A QUEENS QTR", "Name": "STEELE WIMMELSKAFTS, LLC", "Address": "4026 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.513475761400002, "SHAPE_Area": 443.46716892500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358779.730800002813339, 256972.499000001698732 ], [ 358758.90259999781847, 256971.862700000405312 ], [ 358756.140000000596046, 256971.840900000184774 ], [ 358753.379199996590614, 256971.944400001317263 ], [ 358750.626000002026558, 256972.172800000756979 ], [ 358747.885999999940395, 256972.525699999183416 ], [ 358747.804099999368191, 256982.143100000917912 ], [ 358758.075699999928474, 256982.640999998897314 ], [ 358758.030900001525879, 256987.907400000840425 ], [ 358778.018399998545647, 256988.856199998408556 ], [ 358778.169600002467632, 256987.218600001186132 ], [ 358778.328199997544289, 256985.581700000911951 ], [ 358778.494199998676777, 256983.945599999278784 ], [ 358778.667700000107288, 256982.310199998319149 ], [ 358779.730800002813339, 256972.499000001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401400400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92980809, "LATITUDE": 18.34204918, "OBJECTID_1": 12072, "PARCEL_NO_": "105401400400", "Tax_Legal_": "NORRE GADE 7 KINGS QTR", "Name": "PROPERTY OF THE CHURCH", "Address": "PO Box 58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3922800, "Improved_V": 286100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.38816852599999, "SHAPE_Area": 1220.4992769800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358930.731200002133846, 256988.622000001370907 ], [ 358930.1216000020504, 256972.928899999707937 ], [ 358929.156400002539158, 256948.084800001233816 ], [ 358926.6587999984622, 256948.338300000876188 ], [ 358923.626400001347065, 256948.646000001579523 ], [ 358921.350699998438358, 256918.559099998325109 ], [ 358920.391500003635883, 256918.714000001549721 ], [ 358919.432499997317791, 256918.870200000703335 ], [ 358918.473700001835823, 256919.027699999511242 ], [ 358917.51519999653101, 256919.1864 ], [ 358915.215899996459484, 256919.5439000017941 ], [ 358912.914800003170967, 256919.889299999922514 ], [ 358910.612000003457069, 256920.222800001502037 ], [ 358908.3074000030756, 256920.544199999421835 ], [ 358910.245899997651577, 256972.505199998617172 ], [ 358909.898400001227856, 256990.484000001102686 ], [ 358930.731200002133846, 256988.622000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401540800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92594583, "LATITUDE": 18.34228289, "OBJECTID_1": 12331, "PARCEL_NO_": "105401540800", "Tax_Legal_": "KONGENS GADE 2C KINGS QTR", "Name": "SMITH, LEROY, DIANA, MARGUERITE, JEFFREY, GARY, AND JUEL", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32000, "Improved_V": 32000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.538924932299999, "SHAPE_Area": 106.009445578 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359336.743400000035763, 256988.891600001603365 ], [ 359336.100400000810623, 256983.50560000166297 ], [ 359325.4966000020504, 256984.504900000989437 ], [ 359316.429999999701977, 256985.150199998170137 ], [ 359316.79110000282526, 256990.495700001716614 ], [ 359336.743400000035763, 256988.891600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401400100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93071604, "LATITUDE": 18.34219858, "OBJECTID_1": 12071, "PARCEL_NO_": "105401400100", "Tax_Legal_": "GOVERNMENT PARK KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9880700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.876011514, "SHAPE_Area": 953.05752088500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358811.955099999904633, 256953.97580000013113 ], [ 358810.650200001895428, 256956.609900001436472 ], [ 358809.332599997520447, 256959.255800001323223 ], [ 358808.237400002777576, 256962.001299999654293 ], [ 358807.37219999730587, 256964.8277000002563 ], [ 358806.742799997329712, 256967.715700000524521 ], [ 358806.353399999439716, 256970.645799998193979 ], [ 358806.206799998879433, 256973.598000001162291 ], [ 358806.303999997675419, 256976.552299998700619 ], [ 358806.644199997186661, 256979.488499999046326 ], [ 358807.225100003182888, 256982.386700000613928 ], [ 358808.042900003492832, 256985.227200001478195 ], [ 358808.869699999690056, 256987.459100000560284 ], [ 358809.495399996638298, 256988.668600000441074 ], [ 358810.326399996876717, 256989.747299998998642 ], [ 358811.336199998855591, 256990.660999998450279 ], [ 358812.492399998009205, 256991.380300000309944 ], [ 358813.758199997246265, 256991.88230000063777 ], [ 358815.093199998140335, 256992.151000000536442 ], [ 358816.454700000584126, 256992.177799999713898 ], [ 358817.175399996340275, 256992.092799998819828 ], [ 358820.075000002980232, 256991.6097999997437 ], [ 358821.250200003385544, 256991.290800001472235 ], [ 358822.33839999884367, 256990.744500000029802 ], [ 358823.296400003135204, 256989.992899999022484 ], [ 358824.086000002920628, 256989.065900001674891 ], [ 358824.675499998033047, 256988.000399999320507 ], [ 358824.840999998152256, 256987.570500001311302 ], [ 358825.437600001692772, 256986.203000001609325 ], [ 358826.248700000345707, 256984.950699999928474 ], [ 358827.252599999308586, 256983.846999999135733 ], [ 358828.422600001096725, 256982.921300001442432 ], [ 358829.727600000798702, 256982.19819999858737 ], [ 358831.132799997925758, 256981.696800000965595 ], [ 358832.600900001823902, 256981.430700000375509 ], [ 358834.092699997127056, 256981.406899999827147 ], [ 358835.568400003015995, 256981.625900000333786 ], [ 358836.989000000059605, 256982.082100000232458 ], [ 358838.316399998962879, 256982.763199999928474 ], [ 358839.515399999916553, 256983.651000000536442 ], [ 358840.554099999368191, 256984.722100000828505 ], [ 358841.324199996888638, 256985.8114 ], [ 358841.700000002980232, 256986.201799999922514 ], [ 358842.207800000905991, 256986.390700001269579 ], [ 358842.747400000691414, 256986.340999998152256 ], [ 358843.212099999189377, 256986.062300000339746 ], [ 358843.510099999606609, 256985.609900001436472 ], [ 358843.582800000905991, 256985.072999998927116 ], [ 358843.578000001609325, 256985.028900001198053 ], [ 358841.579700000584126, 256969.256499998271465 ], [ 358841.306699998676777, 256968.06980000063777 ], [ 358840.803400002419949, 256966.961100000888109 ], [ 358840.089699998497963, 256965.974500000476837 ], [ 358839.194200001657009, 256965.149399999529123 ], [ 358838.152500003576279, 256964.518699999898672 ], [ 358837.806900002062321, 256964.36710000038147 ], [ 358811.955099999904633, 256953.97580000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402100200", "MAP": "M.B.", "PARCEL_NAM": "7A", "ACRE": "0.09", "LONGITUDE": -64.92360459, "LATITUDE": 18.34215091, "OBJECTID_1": 12686, "PARCEL_NO_": "105402100200", "Tax_Legal_": "7A TAARNEBERG KINGS QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94000, "Improved_V": 11900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.389691030500003, "SHAPE_Area": 452.94710153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359559.896099999547005, 256967.689599998295307 ], [ 359573.120600000023842, 256989.6537000015378 ], [ 359577.17790000140667, 256988.141600001603365 ], [ 359581.223399996757507, 256986.598400000482798 ], [ 359582.602399997413158, 256986.059399999678135 ], [ 359583.981299996376038, 256985.520500000566244 ], [ 359585.360299997031689, 256984.981600001454353 ], [ 359586.73929999768734, 256984.442699998617172 ], [ 359577.476700000464916, 256958.653000000864267 ], [ 359559.896099999547005, 256967.689599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401532900", "MAP": null, "PARCEL_NAM": "3A KONGENS GADE", "ACRE": null, "LONGITUDE": -64.92618724, "LATITUDE": 18.34225304, "OBJECTID_1": 12324, "PARCEL_NO_": "105401532900", "Tax_Legal_": "KONGENS GADE 3A&3BA KINGS QTR", "Name": "PETERSEN, GLENCIA & ELIZABETH", "Address": "PO BOX 12057", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5000, "Improved_V": 99900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.010490947500003, "SHAPE_Area": 158.99667460800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359298.478900000452995, 256991.775499999523163 ], [ 359298.484099999070168, 256990.796900000423193 ], [ 359307.744499996304512, 256990.093100000172853 ], [ 359305.864200003445148, 256978.350499998778105 ], [ 359303.223200000822544, 256975.944400001317263 ], [ 359299.335400000214577, 256975.572399999946356 ], [ 359295.311899997293949, 256975.828999999910593 ], [ 359296.430900000035763, 256992.064800001680851 ], [ 359298.478900000452995, 256991.775499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401532700", "MAP": null, "PARCEL_NAM": "4A KONGENS GADE", "ACRE": null, "LONGITUDE": -64.92636072000001, "LATITUDE": 18.34226299, "OBJECTID_1": 12323, "PARCEL_NO_": "105401532700", "Tax_Legal_": "KONGENS GADE 4A KINGS QUARTER", "Name": "ABBOTT, L", "Address": "PO Box 7402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47500, "Improved_V": 226200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.715424682299997, "SHAPE_Area": 197.76670121699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359288.292900003492832, 256976.101500000804663 ], [ 359275.650799997150898, 256977.1239 ], [ 359277.230700001120567, 256992.530000001192093 ], [ 359289.45160000026226, 256992.383699998259544 ], [ 359288.292900003492832, 256976.101500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401552800", "MAP": null, "PARCEL_NAM": "3AA KONGENS", "ACRE": "1,124 sq ft", "LONGITUDE": -64.92626935, "LATITUDE": 18.34225873, "OBJECTID_1": 12344, "PARCEL_NO_": "105401552800", "Tax_Legal_": "KONGENS GADE 3AA KINGS QTR", "Name": "PETERSEN, MAUD", "Address": "P.O. BOX 2276", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16900, "Improved_V": 32500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.608562102100002, "SHAPE_Area": 114.135937739 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359296.430900000035763, 256992.064800001680851 ], [ 359295.311899997293949, 256975.828999999910593 ], [ 359288.292900003492832, 256976.101500000804663 ], [ 359289.45160000026226, 256992.383699998259544 ], [ 359296.430900000035763, 256992.064800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401400100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9309768, "LATITUDE": 18.34214435, "OBJECTID_1": 12071, "PARCEL_NO_": "105401400100", "Tax_Legal_": "GOVERNMENT PARK KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9880700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.802179438, "SHAPE_Area": 599.78356822900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358785.928999997675419, 256985.743200000375509 ], [ 358798.85639999806881, 256986.184799998998642 ], [ 358800.719700001180172, 256995.152100000530481 ], [ 358804.854000002145767, 256995.118299998342991 ], [ 358804.311899997293949, 256994.043699998408556 ], [ 358803.856299996376038, 256992.92960000038147 ], [ 358803.490099996328354, 256991.783100001513958 ], [ 358803.215499997138977, 256990.611200001090765 ], [ 358801.180200003087521, 256980.730399999767542 ], [ 358800.653200000524521, 256977.567600000649691 ], [ 358800.367899999022484, 256974.374000001698732 ], [ 358800.326099999248981, 256971.167899999767542 ], [ 358800.527999997138977, 256967.9679000005126 ], [ 358800.97240000218153, 256964.792399998754263 ], [ 358801.656700000166893, 256961.660000000149012 ], [ 358802.576999999582767, 256958.588500000536442 ], [ 358803.007500000298023, 256957.387699998915195 ], [ 358803.416500002145767, 256955.952899999916553 ], [ 358803.586800001561642, 256954.47069999948144 ], [ 358803.513700000941753, 256952.980500001460314 ], [ 358803.199299998581409, 256951.522100001573563 ], [ 358802.651900000870228, 256950.134199999272823 ], [ 358801.886100001633167, 256948.853700000792742 ], [ 358800.92230000346899, 256947.714899998158216 ], [ 358799.786100000143051, 256946.747900001704693 ], [ 358798.507799997925758, 256945.97859999909997 ], [ 358798.384999997913837, 256945.9189000017941 ], [ 358789.478200003504753, 256943.687800001353025 ], [ 358785.928999997675419, 256985.743200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401400100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93099832, "LATITUDE": 18.34235597, "OBJECTID_1": 12071, "PARCEL_NO_": "105401400100", "Tax_Legal_": "GOVERNMENT PARK KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9880700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.850213459000003, "SHAPE_Area": 135.07280522600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358800.719700001180172, 256995.152100000530481 ], [ 358798.85639999806881, 256986.184799998998642 ], [ 358785.461800001561642, 256985.739399999380112 ], [ 358785.108300000429153, 256995.4087999984622 ], [ 358800.719700001180172, 256995.152100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401391100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93168966, "LATITUDE": 18.34234493, "OBJECTID_1": 12060, "PARCEL_NO_": "105401391100", "Tax_Legal_": "WIMMELSKAFTS GADE 2 3 QUEENS QUARTER", "Name": "TOPA PROPERTIES LTD", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 166600, "Improved_V": 47800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.425555145, "SHAPE_Area": 757.46947709200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358736.661799997091293, 256974.860800001770258 ], [ 358706.521499998867512, 256981.495200000703335 ], [ 358704.838899999856949, 256981.826099999248981 ], [ 358703.143299996852875, 256982.080899998545647 ], [ 358701.437799997627735, 256982.259100001305342 ], [ 358699.726099997758865, 256982.360500000417233 ], [ 358697.715999998152256, 256997.342599999159575 ], [ 358720.864500001072884, 256999.281399998813868 ], [ 358728.278999999165535, 256999.902300000190735 ], [ 358736.4425999969244, 257000.586100000888109 ], [ 358736.661799997091293, 256974.860800001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401531900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92703605, "LATITUDE": 18.34231077, "OBJECTID_1": 12316, "PARCEL_NO_": "105401531900", "Tax_Legal_": "KONGENS GADE 9 KINGS QUARTER", "Name": "TODMAN, A & MITCHELL, A L", "Address": "1833 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2700, "Improved_V": 22500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.569365304900003, "SHAPE_Area": 109.75218591300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359215.296400003135204, 256996.861000001430511 ], [ 359214.1537000015378, 256980.924899999052286 ], [ 359207.439099997282028, 256981.462000001221895 ], [ 359208.202500000596046, 256997.197900000959635 ], [ 359215.296400003135204, 256996.861000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401531800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92710764, "LATITUDE": 18.34231319, "OBJECTID_1": 12315, "PARCEL_NO_": "105401531800", "Tax_Legal_": "9B KONGENS GADE KINGS QUARTER", "Name": "HODGE, SR., IRVINE & JERYL", "Address": "PO Box 306043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.239412465699999, "SHAPE_Area": 126.901117736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359208.202500000596046, 256997.197900000959635 ], [ 359207.439099997282028, 256981.462000001221895 ], [ 359199.216300003230572, 256981.979400001466274 ], [ 359199.848700001835823, 256996.850900001823902 ], [ 359208.202500000596046, 256997.197900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401391200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93147303000001, "LATITUDE": 18.34233036, "OBJECTID_1": 12061, "PARCEL_NO_": "105401391200", "Tax_Legal_": "WIMMELSKAFTS GADE 1 QUEENS QUARTER", "Name": "TOPA PROPERTIES LTD", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 114100, "Improved_V": 9600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.485209084499999, "SHAPE_Area": 310.51913288399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358747.759099997580051, 256987.419900000095367 ], [ 358747.804099999368191, 256982.143100000917912 ], [ 358747.885999999940395, 256972.525699999183416 ], [ 358746.894199997186661, 256972.68470000103116 ], [ 358745.905199997127056, 256972.859999999403954 ], [ 358744.919200003147125, 256973.051699999719858 ], [ 358743.936499997973442, 256973.259500000625849 ], [ 358736.661799997091293, 256974.860800001770258 ], [ 358736.4425999969244, 257000.586100000888109 ], [ 358740.386900000274181, 257000.916400000452995 ], [ 358747.631099998950958, 257002.453400000929832 ], [ 358747.759099997580051, 256987.419900000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401391300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93128082, "LATITUDE": 18.34240178, "OBJECTID_1": 12062, "PARCEL_NO_": "105401391300", "Tax_Legal_": "1AA & 1B COMMANDANT GADE OVER VANDET QUEENS QUARTER", "Name": "BROWN, RUDOLFO A", "Address": "PO Box 521", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.596584676500001, "SHAPE_Area": 445.43862115899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358778.018399998545647, 256988.856199998408556 ], [ 358758.030900001525879, 256987.907400000840425 ], [ 358747.759099997580051, 256987.419900000095367 ], [ 358747.631099998950958, 257002.453400000929832 ], [ 358776.987899996340275, 257003.705200001597404 ], [ 358777.188400000333786, 256999.989100001752377 ], [ 358777.427000001072884, 256996.275400001555681 ], [ 358777.703599996864796, 256992.564300000667572 ], [ 358778.018399998545647, 256988.856199998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401532400", "MAP": null, "PARCEL_NAM": "4B KONGENS", "ACRE": null, "LONGITUDE": -64.92635288, "LATITUDE": 18.34239073, "OBJECTID_1": 12320, "PARCEL_NO_": "105401532400", "Tax_Legal_": "KONGENS GADE 4B KINGS QUARTER", "Name": "ABBOTT, ALBERTO & GLADYS", "Address": "PO Box 7402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.0675478267, "SHAPE_Area": 143.51122087900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359288.814400002360344, 257004.766699999570847 ], [ 359289.45160000026226, 256992.383699998259544 ], [ 359277.230700001120567, 256992.530000001192093 ], [ 359278.387100003659725, 257005.473600000143051 ], [ 359288.814400002360344, 257004.766699999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401532200", "MAP": null, "PARCEL_NAM": "5 KONGENS GADE", "ACRE": "3,893 sq ft", "LONGITUDE": -64.92646598, "LATITUDE": 18.34233395, "OBJECTID_1": 12319, "PARCEL_NO_": "105401532200", "Tax_Legal_": "KONGENS GADE 5&6 KINGS QUARTER", "Name": "BROWN, E & OTHERS", "Address": "PO Box 10121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120200, "Improved_V": 644300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.529579382700007, "SHAPE_Area": 319.485377916 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359278.387100003659725, 257005.473600000143051 ], [ 359277.230700001120567, 256992.530000001192093 ], [ 359275.650799997150898, 256977.1239 ], [ 359265.748400002717972, 256977.763599999248981 ], [ 359266.115000002086163, 257006.565200001001358 ], [ 359278.387100003659725, 257005.473600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401532200", "MAP": null, "PARCEL_NAM": "6 KONGENS GADE", "ACRE": "4,138 sq ft", "LONGITUDE": -64.92660917000001, "LATITUDE": 18.34233789, "OBJECTID_1": 12319, "PARCEL_NO_": "105401532200", "Tax_Legal_": "KONGENS GADE 5&6 KINGS QUARTER", "Name": "BROWN, E & OTHERS", "Address": "PO Box 10121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 120200, "Improved_V": 644300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.872019717800001, "SHAPE_Area": 550.49290253499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359266.115000002086163, 257006.565200001001358 ], [ 359265.748400002717972, 256977.763599999248981 ], [ 359245.69820000231266, 256979.059000000357628 ], [ 359248.01860000193119, 257007.80290000140667 ], [ 359266.115000002086163, 257006.565200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401532100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92678881000001, "LATITUDE": 18.34235328, "OBJECTID_1": 12318, "PARCEL_NO_": "105401532100", "Tax_Legal_": "KONGENS GADE 7 KINGS QUARTER", "Name": "PENHA, DEBORAH & JENNIFER", "Address": "PO Box 10919", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 58200, "Improved_V": 196400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.398370404000005, "SHAPE_Area": 428.670231145 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359245.695299997925758, 257008.1587999984622 ], [ 359243.872699998319149, 256979.177000001072884 ], [ 359229.218999996781349, 256980.123700000345707 ], [ 359230.237300001084805, 257000.553100001066923 ], [ 359230.643500000238419, 257008.701699998229742 ], [ 359245.695299997925758, 257008.1587999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401540200", "MAP": null, "PARCEL_NAM": "1C DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92579018000001, "LATITUDE": 18.34230972, "OBJECTID_1": 12325, "PARCEL_NO_": "105401540200", "Tax_Legal_": "KONGENS 1C&1D DRONNINGENS 2A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 92400, "Improved_V": 262400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.335474286099995, "SHAPE_Area": 457.51576750700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359351.441399998962879, 257007.883799999952316 ], [ 359346.516699999570847, 256970.390299998223782 ], [ 359336.14190000295639, 256971.775800000876188 ], [ 359335.915700003504753, 256971.806000001728535 ], [ 359335.689400002360344, 256971.836100000888109 ], [ 359335.463100001215935, 256971.866099998354912 ], [ 359335.236800000071526, 256971.896000001579523 ], [ 359336.100400000810623, 256983.50560000166297 ], [ 359336.743400000035763, 256988.891600001603365 ], [ 359337.166400000452995, 256993.663899999111891 ], [ 359338.519000001251698, 257008.923000000417233 ], [ 359351.441399998962879, 257007.883799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401540600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92593232, "LATITUDE": 18.34241961, "OBJECTID_1": 12329, "PARCEL_NO_": "105401540600", "Tax_Legal_": "DRONNINGENS GADE 2B&2C KINGS QTR", "Name": "PETERS, CLEAVIAN, FRANKLIN & PHILL", "Address": "18400 Robertson Street", "City": "Orlando", "State": "Florida", "Zip": 32833, "Country": "United States", "Land_Value": 25700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.653758423799999, "SHAPE_Area": 305.90118002399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359338.519000001251698, 257008.923000000417233 ], [ 359337.166400000452995, 256993.663899999111891 ], [ 359317.193599998950958, 256995.554699998348951 ], [ 359318.389200001955032, 257010.581900000572205 ], [ 359338.519000001251698, 257008.923000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401531700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92706567, "LATITUDE": 18.34244231, "OBJECTID_1": 12314, "PARCEL_NO_": "105401531700", "Tax_Legal_": "9A KONGENS GADE KINGS QUARTER", "Name": "HODGE, SR., IRVINE & JERYL", "Address": "PO Box 306043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2800, "Improved_V": 40600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.445319048199998, "SHAPE_Area": 202.56981893400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359215.826300002634525, 257010.394499998539686 ], [ 359215.480700001120567, 257001.569099999964237 ], [ 359215.296400003135204, 256996.861000001430511 ], [ 359208.202500000596046, 256997.197900000959635 ], [ 359199.848700001835823, 256996.850900001823902 ], [ 359201.284000001847744, 257010.670200001448393 ], [ 359215.826300002634525, 257010.394499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401390400", "MAP": null, "PARCEL_NAM": "2C CRYSTAL GADE", "ACRE": null, "LONGITUDE": -64.9315738, "LATITUDE": 18.3424991, "OBJECTID_1": 12057, "PARCEL_NO_": "105401390400", "Tax_Legal_": "CRYSTAL GADE 1,2A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 461200, "Improved_V": 236700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.164222532700002, "SHAPE_Area": 103.393052905 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358728.278999999165535, 256999.902300000190735 ], [ 358727.399999998509884, 256999.828699998557568 ], [ 358726.909699998795986, 257011.810600001364946 ], [ 358727.816500000655651, 257011.839299999177456 ], [ 358735.543999999761581, 257012.239900000393391 ], [ 358736.203900001943111, 257000.566100001335144 ], [ 358728.278999999165535, 256999.902300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401391000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9317975, "LATITUDE": 18.34249351, "OBJECTID_1": 12059, "PARCEL_NO_": "105401391000", "Tax_Legal_": "CRYSTAL GADE 4A QUEENS QUARTER", "Name": "TOPA PROPERTIES LTD", "Address": "PO Box 840", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41800, "Improved_V": 75400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.016740274499995, "SHAPE_Area": 308.34402522400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358719.283100001513958, 256999.149000000208616 ], [ 358697.715999998152256, 256997.342599999159575 ], [ 358695.915200002491474, 257010.765000000596046 ], [ 358718.013800002634525, 257013.640000000596046 ], [ 358718.026399999856949, 257013.55350000038743 ], [ 358719.283100001513958, 256999.149000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401541800", "MAP": null, "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.92436672, "LATITUDE": 18.34239787, "OBJECTID_1": 12339, "PARCEL_NO_": "105401541800", "Tax_Legal_": "TAARNEBERG 2 KINGS QTR", "Name": "ISAAC, AGNES", "Address": "PO Box 503175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8053175, "Country": "United States", "Land_Value": 9500, "Improved_V": 41800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.263933915600006, "SHAPE_Area": 479.61918030300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359484.843999996781349, 257016.348900001496077 ], [ 359499.763800002634525, 257013.594099998474121 ], [ 359503.177599996328354, 257012.877599999308586 ], [ 359501.26349999755621, 256991.414000000804663 ], [ 359500.818400003015995, 256985.874899998307228 ], [ 359484.656199999153614, 256988.17680000141263 ], [ 359484.843999996781349, 257016.348900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401312100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92963385, "LATITUDE": 18.3424622, "OBJECTID_1": 11961, "PARCEL_NO_": "105401312100", "Tax_Legal_": "KONGENS GADE 24 KINGS QTR", "Name": "CIRCA 1675 LLP", "Address": "PO Box 10764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30300, "Improved_V": 319400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.357164814200004, "SHAPE_Area": 316.88542652000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358945.520599998533726, 257009.971200000494719 ], [ 358944.361599996685982, 256993.330800000578165 ], [ 358928.259099997580051, 256994.260200001299381 ], [ 358929.530500002205372, 257015.121399998664856 ], [ 358940.826099999248981, 257014.369500000029802 ], [ 358940.435500003397465, 257010.149099998176098 ], [ 358945.520599998533726, 257009.971200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401520700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92798314, "LATITUDE": 18.34242746, "OBJECTID_1": 12297, "PARCEL_NO_": "105401520700", "Tax_Legal_": "KONGENS GADE 14 CROWN PRINCE QUARTER", "Name": "APOLLO REALTY CORPORATION", "Address": "PO Box 6280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 112100, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.56209565899999, "SHAPE_Area": 668.43211361 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359124.293200001120567, 257013.727699998766184 ], [ 359122.518299996852875, 256987.017299998551607 ], [ 359097.441500000655651, 256988.63740000128746 ], [ 359100.333700001239777, 257016.07490000128746 ], [ 359124.293200001120567, 257013.727699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401532500", "MAP": null, "PARCEL_NAM": "4B DRONNINGENS GADE", "ACRE": "1,730 sq ft", "LONGITUDE": -64.92624273, "LATITUDE": 18.34243804, "OBJECTID_1": 12321, "PARCEL_NO_": "105401532500", "Tax_Legal_": "DRONNINGENS GADE 4B KINGS QUARTER", "Name": "PETERSEN, MAUD", "Address": "P.O. BOX 2276", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.736516492800007, "SHAPE_Area": 214.855573878 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359294.768899999558926, 257017.294199999421835 ], [ 359300.511500000953674, 257017.333099998533726 ], [ 359298.879100002348423, 256998.674600001424551 ], [ 359298.478900000452995, 256991.775499999523163 ], [ 359296.430900000035763, 256992.064800001680851 ], [ 359289.45160000026226, 256992.383699998259544 ], [ 359288.814400002360344, 257004.766699999570847 ], [ 359292.411899998784065, 257004.695599999278784 ], [ 359292.826200000941753, 257017.0287000015378 ], [ 359294.768899999558926, 257017.294199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401520600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92814166, "LATITUDE": 18.34244518, "OBJECTID_1": 12296, "PARCEL_NO_": "105401520600", "Tax_Legal_": "KONGENS GADE 15 KINGS QUARTER", "Name": "APOLLO REALTY INC", "Address": "PO Box 6280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.6063952067, "SHAPE_Area": 261.77524181500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359100.333700001239777, 257016.07490000128746 ], [ 359097.441500000655651, 256988.63740000128746 ], [ 359088.192699998617172, 256989.234900001436472 ], [ 359091.489100001752377, 257018.600999999791384 ], [ 359100.333700001239777, 257016.07490000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401520500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92826346, "LATITUDE": 18.3424573, "OBJECTID_1": 12295, "PARCEL_NO_": "105401520500", "Tax_Legal_": "KONGENS GADE 16 KINGS QUARTER", "Name": "APOLLO REALTY INC", "Address": "PO Box 6280", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.208040844600006, "SHAPE_Area": 492.97171222899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359091.489100001752377, 257018.600999999791384 ], [ 359088.192699998617172, 256989.234900001436472 ], [ 359071.514700002968311, 256990.312399998307228 ], [ 359074.31870000064373, 257018.946299999952316 ], [ 359091.489100001752377, 257018.600999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401520400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92841287, "LATITUDE": 18.34246323, "OBJECTID_1": 12294, "PARCEL_NO_": "105401520400", "Tax_Legal_": "KONGENS GADE 17 KINGS QUARTER", "Name": "REHAB INC.", "Address": "7003 Esate Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64700, "Improved_V": 366400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.205452387999998, "SHAPE_Area": 415.72068363199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359074.31870000064373, 257018.946299999952316 ], [ 359071.514700002968311, 256990.312399998307228 ], [ 359058.862300001084805, 256991.129900000989437 ], [ 359058.3141999989748, 256991.165199998766184 ], [ 359057.766099996864796, 256991.200300000607967 ], [ 359057.218000002205372, 256991.235300000756979 ], [ 359056.669900000095367, 256991.269999999552965 ], [ 359059.916500002145767, 257019.236000001430511 ], [ 359074.31870000064373, 257018.946299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401531400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9275406, "LATITUDE": 18.34243136, "OBJECTID_1": 12311, "PARCEL_NO_": "105401531400", "Tax_Legal_": "12 KONGENS GADE KING'S QTR", "Name": "SMITH, DIANA ,LEROY,MAGUERITE,JEFFREY,GARY,JUEL", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12500, "Improved_V": 70700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.980986299199998, "SHAPE_Area": 528.008099184 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359166.612099997699261, 257018.995099999010563 ], [ 359164.233300000429153, 256984.322200000286102 ], [ 359148.853500001132488, 256985.315799999982119 ], [ 359151.744199998676777, 257020.101599998772144 ], [ 359166.612099997699261, 257018.995099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401390900", "MAP": null, "PARCEL_NAM": "2A COMMANDANT GADE O.V.", "ACRE": null, "LONGITUDE": -64.9313114, "LATITUDE": 18.34254888, "OBJECTID_1": 12058, "PARCEL_NO_": "105401390900", "Tax_Legal_": "COMMANDANT GADE 2A QUEENS QUARTER", "Name": "BROWN, RUDOLFO A", "Address": "PO Box 521", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 105600, "Improved_V": 159400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.226894504, "SHAPE_Area": 630.42289384799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358747.631099998950958, 257002.453400000929832 ], [ 358741.7820999994874, 257001.212400000542402 ], [ 358741.210199996829033, 257019.417599998414516 ], [ 358748.480800002813339, 257019.974599998444319 ], [ 358776.342299997806549, 257022.10869999974966 ], [ 358776.747699998319149, 257009.618400000035763 ], [ 358776.798699997365475, 257008.139699999243021 ], [ 358776.855800002813339, 257006.661299999803305 ], [ 358776.918799996376038, 257005.183100000023842 ], [ 358776.987899996340275, 257003.705200001597404 ], [ 358747.631099998950958, 257002.453400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401370900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92872423, "LATITUDE": 18.34257993, "OBJECTID_1": 12042, "PARCEL_NO_": "105401370900", "Tax_Legal_": "KONGENS GADE 19B KINGS QUARTER", "Name": "COMISSIONG, JOEL & DAWN", "Address": "PO BOX 9423", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2900, "Improved_V": 42600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.355127390600003, "SHAPE_Area": 87.089564515600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359032.508699998259544, 257022.357400000095367 ], [ 359037.54389999806881, 257021.876800000667572 ], [ 359036.69539999961853, 257012.389299999922514 ], [ 359027.776699997484684, 257012.952799998223782 ], [ 359028.505500003695488, 257022.739500001072884 ], [ 359032.508699998259544, 257022.357400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401303600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93100035000001, "LATITUDE": 18.34254959, "OBJECTID_1": 11943, "PARCEL_NO_": "105401303600", "Tax_Legal_": "COMMANDANT GADE 2AC KINGS QTR", "Name": "MOHANANI, SUNIL", "Address": "2329 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37700, "Improved_V": 490600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.615524936100002, "SHAPE_Area": 458.208873246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358801.557499997317791, 256999.872600000351667 ], [ 358782.766699999570847, 256999.967300001531839 ], [ 358782.777199998497963, 257002.911200001835823 ], [ 358782.958200000226498, 257006.166900001466274 ], [ 358782.850199997425079, 257008.80180000141263 ], [ 358782.758500002324581, 257011.592000000178814 ], [ 358782.465599998831749, 257024.605200000107288 ], [ 358801.350599996745586, 257024.155900001525879 ], [ 358801.557499997317791, 256999.872600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401370800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92881414, "LATITUDE": 18.342484, "OBJECTID_1": 12041, "PARCEL_NO_": "105401370800", "Tax_Legal_": "KONGENS GADE 19A & 20 KINGS QUARTER", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Building Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 136300, "Improved_V": 582600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.73604969, "SHAPE_Area": 625.89941835499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359024.479400001466274, 257023.123799998313189 ], [ 359028.505500003695488, 257022.739500001072884 ], [ 359027.776699997484684, 257012.952799998223782 ], [ 359036.69539999961853, 257012.389299999922514 ], [ 359034.914099998772144, 256992.471500001847744 ], [ 359011.661200001835823, 256993.562100000679493 ], [ 359013.527400001883507, 257024.169100001454353 ], [ 359024.479400001466274, 257023.123799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401303400", "MAP": null, "PARCEL_NAM": "2B COMMANDANT GADE", "ACRE": null, "LONGITUDE": -64.93080652, "LATITUDE": 18.34254826, "OBJECTID_1": 11941, "PARCEL_NO_": "105401303400", "Tax_Legal_": "COMMANDANT GADE 2B 3B KINGS QUARTER", "Name": "CHRISTMAS, RITA BARBEL", "Address": "PO Box 8208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73200, "Improved_V": 471500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.438457865100006, "SHAPE_Area": 268.20867550899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358818.430699996650219, 257002.960499998182058 ], [ 358816.506099998950958, 257002.870400000363588 ], [ 358814.60809999704361, 257002.538199998438358 ], [ 358812.767300002276897, 257001.969200000166893 ], [ 358811.012999996542931, 257001.172499999403954 ], [ 358809.373199999332428, 257000.160799998790026 ], [ 358808.90089999884367, 256999.812600001692772 ], [ 358805.969099998474121, 256999.836599998176098 ], [ 358806.192800000309944, 257020.294100001454353 ], [ 358811.262999996542931, 257019.837900001555681 ], [ 358811.225500002503395, 257024.246100001037121 ], [ 358819.226800002157688, 257024.27250000089407 ], [ 358818.430699996650219, 257002.960499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401531300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92769503, "LATITUDE": 18.34246001, "OBJECTID_1": 12310, "PARCEL_NO_": "105401531300", "Tax_Legal_": "KONGENS GADE 13 KINGS QUARTER", "Name": "KALEEL, ABDEL K . M", "Address": "PO Box 302116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.67269176800001, "SHAPE_Area": 688.99566336199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359152.039899997413158, 257023.659600000828505 ], [ 359151.744199998676777, 257020.101599998772144 ], [ 359148.853500001132488, 256985.315799999982119 ], [ 359131.405699998140335, 256986.315000001341105 ], [ 359133.623499996960163, 257024.533900000154972 ], [ 359152.039899997413158, 257023.659600000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401540200", "MAP": null, "PARCEL_NAM": "2A DRONNINGENS GADE", "ACRE": "3,422 sq ft", "LONGITUDE": -64.92591505, "LATITUDE": 18.34255859, "OBJECTID_1": 12325, "PARCEL_NO_": "105401540200", "Tax_Legal_": "KONGENS 1C&1D DRONNINGENS 2A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 92400, "Improved_V": 262400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.630055323099995, "SHAPE_Area": 317.194227856 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359338.519000001251698, 257008.923000000417233 ], [ 359318.389200001955032, 257010.581900000572205 ], [ 359319.266199998557568, 257021.604400001466274 ], [ 359323.895099997520447, 257025.813299998641014 ], [ 359327.695299997925758, 257025.769499998539686 ], [ 359331.495600000023842, 257025.756700001657009 ], [ 359335.295999996364117, 257025.774900000542402 ], [ 359339.096100002527237, 257025.824000000953674 ], [ 359340.019400000572205, 257025.849700000137091 ], [ 359338.519000001251698, 257008.923000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401540200", "MAP": null, "PARCEL_NAM": "1D DRONNINGENS GADE", "ACRE": "1,500 sq ft", "LONGITUDE": -64.92575884, "LATITUDE": 18.34255482, "OBJECTID_1": 12325, "PARCEL_NO_": "105401540200", "Tax_Legal_": "KONGENS 1C&1D DRONNINGENS 2A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 92400, "Improved_V": 262400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.303560881400003, "SHAPE_Area": 236.601138351 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359351.441399998962879, 257007.883799999952316 ], [ 359338.519000001251698, 257008.923000000417233 ], [ 359340.019400000572205, 257025.849700000137091 ], [ 359353.851700000464916, 257026.234900001436472 ], [ 359351.441399998962879, 257007.883799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401540300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92563593, "LATITUDE": 18.3425518, "OBJECTID_1": 12326, "PARCEL_NO_": "105401540300", "Tax_Legal_": "1B DRONNINGENS GADE KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.321752021499996, "SHAPE_Area": 238.52748698799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359363.916599996387959, 257007.419399999082088 ], [ 359351.441399998962879, 257007.883799999952316 ], [ 359353.851700000464916, 257026.234900001436472 ], [ 359366.78660000115633, 257026.595100000500679 ], [ 359363.916599996387959, 257007.419399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401531200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92616447, "LATITUDE": 18.34260412, "OBJECTID_1": 12309, "PARCEL_NO_": "105401531200", "Tax_Legal_": "DRONNINGENS GADE 3 KINGS QUARTER", "Name": "CALISTRO ALEXANDER CH OF", "Address": "1660 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4200, "Improved_V": 36500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.569265925400003, "SHAPE_Area": 164.21123606200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359311.068099997937679, 257027.429699998348951 ], [ 359311.281900003552437, 257017.324499998241663 ], [ 359300.511500000953674, 257017.333099998533726 ], [ 359294.768899999558926, 257017.294199999421835 ], [ 359295.64469999819994, 257027.778999999165535 ], [ 359311.068099997937679, 257027.429699998348951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401540400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92550975, "LATITUDE": 18.34254706, "OBJECTID_1": 12327, "PARCEL_NO_": "105401540400", "Tax_Legal_": "DRONNINGENS GADE 1C KINGS QTR", "Name": "SMITH, JOHN", "Address": "PO Box 504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7200, "Improved_V": 53000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.514169548200002, "SHAPE_Area": 275.20697285799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359379.23480000346899, 257006.90989999845624 ], [ 359363.916599996387959, 257007.419399999082088 ], [ 359366.78660000115633, 257026.595100000500679 ], [ 359378.233300000429153, 257026.913899999111891 ], [ 359378.556599996984005, 257026.926199998706579 ], [ 359378.879799999296665, 257026.938099998980761 ], [ 359379.203100003302097, 257026.949700001627207 ], [ 359379.526399999856949, 257026.960900001227856 ], [ 359379.23480000346899, 257006.90989999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401541200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92538869000001, "LATITUDE": 18.34234366, "OBJECTID_1": 12334, "PARCEL_NO_": "105401541200", "Tax_Legal_": "KONGENS GADE 1B KINGS QUARTER", "Name": "ICMC LLLP", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 190800, "Improved_V": 379500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.68688419700001, "SHAPE_Area": 2673.1638597400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359419.722099997103214, 257025.5472999997437 ], [ 359414.229299999773502, 256974.408900000154972 ], [ 359368.915899999439716, 256976.239399999380112 ], [ 359366.847199998795986, 256967.67509999871254 ], [ 359346.516699999570847, 256970.390299998223782 ], [ 359351.441399998962879, 257007.883799999952316 ], [ 359363.916599996387959, 257007.419399999082088 ], [ 359379.23480000346899, 257006.90989999845624 ], [ 359396.967500001192093, 257006.320099998265505 ], [ 359397.268700003623962, 257027.024500001221895 ], [ 359402.891699999570847, 257026.818300001323223 ], [ 359408.509700000286102, 257026.503400001674891 ], [ 359414.12049999833107, 257026.079599998891354 ], [ 359419.722099997103214, 257025.5472999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401540500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92535927, "LATITUDE": 18.34254755, "OBJECTID_1": 12328, "PARCEL_NO_": "105401540500", "Tax_Legal_": "DRONNINGENS GADE 1A KINGS QUARTER", "Name": "VICARS, LOLA", "Address": "PO Box 11512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8400, "Improved_V": 36500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.247217082999995, "SHAPE_Area": 363.02985171199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359397.268700003623962, 257027.024500001221895 ], [ 359396.967500001192093, 257006.320099998265505 ], [ 359379.23480000346899, 257006.90989999845624 ], [ 359379.526399999856949, 257026.960900001227856 ], [ 359383.961099997162819, 257027.078400000929832 ], [ 359388.396999999880791, 257027.128199998289347 ], [ 359392.833200000226498, 257027.110199999064207 ], [ 359397.268700003623962, 257027.024500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401370600", "MAP": null, "PARCEL_NAM": "18B DRONNINGENS GADE", "ACRE": "748 sq ft", "LONGITUDE": -64.92853751, "LATITUDE": 18.34263658, "OBJECTID_1": 12039, "PARCEL_NO_": "105401370600", "Tax_Legal_": "DRONNINGENS GADE 18A & 18B(Combined) KINGS QUARTER", "Name": "FLUCK, PHILBERT & DENISE S. KURG", "Address": "PO Box 6456", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 45500, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.5534668803, "SHAPE_Area": 74.481603274099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359059.201300002634525, 257026.290399998426437 ], [ 359058.563500002026558, 257020.797200001776218 ], [ 359045.481600001454353, 257021.398299999535084 ], [ 359046.201399996876717, 257027.246800001710653 ], [ 359059.201300002634525, 257026.290399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401531100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92632845, "LATITUDE": 18.34255437, "OBJECTID_1": 12308, "PARCEL_NO_": "105401531100", "Tax_Legal_": "DRONNINGENS GADE 4A KINGS QUARTER", "Name": "FRANCIS, LEONARD B.,JR. & YVONNE PHILLIPS", "Address": "PO Box 8838", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62000, "Improved_V": 75800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.982642673000001, "SHAPE_Area": 328.64228738100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359293.446000002324581, 257027.816500000655651 ], [ 359292.826200000941753, 257017.0287000015378 ], [ 359292.411899998784065, 257004.695599999278784 ], [ 359288.814400002360344, 257004.766699999570847 ], [ 359278.387100003659725, 257005.473600000143051 ], [ 359279.405599996447563, 257029.136900000274181 ], [ 359293.446000002324581, 257027.816500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401531000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92644841000001, "LATITUDE": 18.34256365, "OBJECTID_1": 12307, "PARCEL_NO_": "105401531000", "Tax_Legal_": "DRONNINGENS GADE 5 KINGS QUARTER", "Name": "JOSEPH, ALICE E., KHENITA JAMES-ESEKIE & BLAKE ESEKIE", "Address": "PO Box 7212", "City": "WESLEY CHAPEL", "State": "Florida", "Zip": 33544, "Country": "United States", "Land_Value": 9200, "Improved_V": 12100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.949760732900003, "SHAPE_Area": 274.37991391200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359279.405599996447563, 257029.136900000274181 ], [ 359278.387100003659725, 257005.473600000143051 ], [ 359266.115000002086163, 257006.565200001001358 ], [ 359268.978500001132488, 257030.784099999815226 ], [ 359279.405599996447563, 257029.136900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401370700", "MAP": null, "PARCEL_NAM": "21 & 22 KONGENS GADE (Governor's House)", "ACRE": null, "LONGITUDE": -64.92911341, "LATITUDE": 18.34251247, "OBJECTID_1": 12040, "PARCEL_NO_": "105401370700", "Tax_Legal_": "KONGENS GADE 21 22 KINGS QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 161100, "Improved_V": 1849000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.99013018299999, "SHAPE_Area": 1279.18111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358999.332599997520447, 257029.187300000339746 ], [ 358998.657700002193451, 257023.480200000107288 ], [ 359010.987199999392033, 257022.573100000619888 ], [ 359009.231899999082088, 256993.784499999135733 ], [ 359007.669100001454353, 256993.075699999928474 ], [ 359006.896899998188019, 256990.742499999701977 ], [ 358973.723300002515316, 256992.496399998664856 ], [ 358974.798500001430511, 257029.588199999183416 ], [ 358999.332599997520447, 257029.187300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401530900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92659266, "LATITUDE": 18.34258044, "OBJECTID_1": 12306, "PARCEL_NO_": "105401530900", "Tax_Legal_": "DRONNINGENS GADE 6 KINGS QUARTER", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17500, "Improved_V": 36600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.5333816367, "SHAPE_Area": 467.37693559000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359268.978500001132488, 257030.784099999815226 ], [ 359266.115000002086163, 257006.565200001001358 ], [ 359248.01860000193119, 257007.80290000140667 ], [ 359247.976000003516674, 257022.159400001168251 ], [ 359248.83049999922514, 257031.606600001454353 ], [ 359268.978500001132488, 257030.784099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401304000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93024566, "LATITUDE": 18.34254958, "OBJECTID_1": 11945, "PARCEL_NO_": "105401304000", "Tax_Legal_": "KONGENS GADE 28-29 KINGS QUARTER", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 167800, "Improved_V": 84700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.453274253, "SHAPE_Area": 772.33937470900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358881.766500003635883, 257030.699099998921156 ], [ 358883.491700001060963, 256998.398800000548363 ], [ 358883.416000001132488, 256997.542199999094009 ], [ 358883.104000002145767, 256996.740899998694658 ], [ 358882.580600000917912, 256996.058499999344349 ], [ 358881.887500002980232, 256995.549600001424551 ], [ 358881.079800002276897, 256995.254399999976158 ], [ 358880.478299997746944, 256995.188400000333786 ], [ 358861.211300000548363, 256994.997499998658895 ], [ 358860.903999999165535, 257031.064699999988079 ], [ 358881.766500003635883, 257030.699099998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401303900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93045899000001, "LATITUDE": 18.34253692, "OBJECTID_1": 11944, "PARCEL_NO_": "105401303900", "Tax_Legal_": "KONGENS GADE 3O KINGS QUARTER", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 157600, "Improved_V": 531000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.902168464, "SHAPE_Area": 808.29051424399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358860.903999999165535, 257031.064699999988079 ], [ 358861.211300000548363, 256994.997499998658895 ], [ 358859.976800002157688, 256994.985300000756979 ], [ 358856.372699998319149, 256995.006400000303984 ], [ 358852.770999997854233, 256995.141100000590086 ], [ 358849.175399996340275, 256995.389299999922514 ], [ 358845.589500002563, 256995.750799998641014 ], [ 358836.02419999986887, 256996.867600001394749 ], [ 358834.567500002682209, 256997.0760000012815 ], [ 358833.137599997222424, 256997.423900000751019 ], [ 358831.748000003397465, 256997.908100001513958 ], [ 358830.411499999463558, 256998.524099998176098 ], [ 358830.29450000077486, 256998.58500000089407 ], [ 358847.202200002968311, 257031.304800000041723 ], [ 358860.903999999165535, 257031.064699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401520800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92824452000001, "LATITUDE": 18.34264154, "OBJECTID_1": 12298, "PARCEL_NO_": "105401520800", "Tax_Legal_": "DRONNINGENS GADE 16A KINGS QTR", "Name": "PLASKETT, ADELE", "Address": "PO Box 181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.791599386199998, "SHAPE_Area": 202.899945417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359092.040500000119209, 257030.204599998891354 ], [ 359091.548900000751019, 257019.133799999952316 ], [ 359091.489100001752377, 257018.600999999791384 ], [ 359074.31870000064373, 257018.946299999952316 ], [ 359075.532399997115135, 257031.339800000190735 ], [ 359092.040500000119209, 257030.204599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401530700", "MAP": null, "PARCEL_NAM": "7A DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92671812, "LATITUDE": 18.34265145, "OBJECTID_1": 12305, "PARCEL_NO_": "105401530700", "Tax_Legal_": "7A&B DRONNINGENS GADE KINGS QUARTER", "Name": "KATHLEEN L RODGERS & COREEN RODGERS REED", "Address": "PO BOX 9467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8200, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.099943043000003, "SHAPE_Area": 71.972385655899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359248.83049999922514, 257031.606600001454353 ], [ 359247.976000003516674, 257022.159400001168251 ], [ 359240.180100001394749, 257022.933100000023842 ], [ 359241.25620000064373, 257032.061900001019239 ], [ 359248.83049999922514, 257031.606600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401530700", "MAP": null, "PARCEL_NAM": "7B DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92677314, "LATITUDE": 18.34257405, "OBJECTID_1": 12305, "PARCEL_NO_": "105401530700", "Tax_Legal_": "7A&B DRONNINGENS GADE KINGS QUARTER", "Name": "KATHLEEN L RODGERS & COREEN RODGERS REED", "Address": "PO BOX 9467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8200, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.671893856599993, "SHAPE_Area": 321.39596096600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359241.25620000064373, 257032.061900001019239 ], [ 359240.180100001394749, 257022.933100000023842 ], [ 359247.976000003516674, 257022.159400001168251 ], [ 359248.01860000193119, 257007.80290000140667 ], [ 359245.695299997925758, 257008.1587999984622 ], [ 359230.643500000238419, 257008.701699998229742 ], [ 359232.789399996399879, 257032.968899998813868 ], [ 359241.25620000064373, 257032.061900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401312000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92943049, "LATITUDE": 18.34254206, "OBJECTID_1": 11960, "PARCEL_NO_": "105401312000", "Tax_Legal_": "KONGENS GADE 23 KINGS QTR", "Name": "LUTHERAN CHURCH PROP", "Address": "PO Box 58", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 145900, "Improved_V": 208500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.75156393, "SHAPE_Area": 987.186548991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358971.163999997079372, 257032.883499998599291 ], [ 358969.116099998354912, 256991.901999998837709 ], [ 358944.361599996685982, 256993.330800000578165 ], [ 358945.520599998533726, 257009.971200000494719 ], [ 358947.133299998939037, 257033.125700000673532 ], [ 358971.163999997079372, 257032.883499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401390100", "MAP": null, "PARCEL_NAM": "4B & C CRYSTAL GADE", "ACRE": "6,454 sq ft", "LONGITUDE": -64.93181696000001, "LATITUDE": 18.34264224, "OBJECTID_1": 12056, "PARCEL_NO_": "105401390100", "Tax_Legal_": "4B&C CRYSTAL GADE QUEENS QTR.", "Name": "ST. THOMAS REFORMED CHURCH", "Address": "PO Box 301769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.832484450199999, "SHAPE_Area": 426.63602108200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358718.013800002634525, 257013.640000000596046 ], [ 358695.915200002491474, 257010.765000000596046 ], [ 358693.379799999296665, 257029.662300001829863 ], [ 358715.228100001811981, 257032.841600000858307 ], [ 358718.013800002634525, 257013.640000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401311900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92970669, "LATITUDE": 18.342582, "OBJECTID_1": 11959, "PARCEL_NO_": "105401311900", "Tax_Legal_": "KONGENS GADE 25 KINGS QTR", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 15300, "Improved_V": 26600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.917166084, "SHAPE_Area": 828.59898990299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358947.133299998939037, 257033.125700000673532 ], [ 358945.520599998533726, 257009.971200000494719 ], [ 358940.435500003397465, 257010.149099998176098 ], [ 358940.826099999248981, 257014.369500000029802 ], [ 358929.530500002205372, 257015.121399998664856 ], [ 358928.259099997580051, 256994.260200001299381 ], [ 358915.926299996674061, 256994.972100000828505 ], [ 358915.538599997758865, 256994.994100000709295 ], [ 358915.151000000536442, 256995.015599999576807 ], [ 358914.763300001621246, 256995.03660000115633 ], [ 358914.375500001013279, 256995.05689999833703 ], [ 358916.991200000047684, 257032.160500001162291 ], [ 358931.860500000417233, 257031.4695999994874 ], [ 358935.128100000321865, 257031.317699998617172 ], [ 358936.724600002169609, 257033.230599999427795 ], [ 358947.133299998939037, 257033.125700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401370400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92875313, "LATITUDE": 18.34267312, "OBJECTID_1": 12037, "PARCEL_NO_": "105401370400", "Tax_Legal_": "DRONNINGENS GADE 2OB KINGS QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.514237401199999, "SHAPE_Area": 81.559859280200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359034.342299997806549, 257032.159299999475479 ], [ 359032.508699998259544, 257022.357400000095367 ], [ 359028.505500003695488, 257022.739500001072884 ], [ 359024.479400001466274, 257023.123799998313189 ], [ 359026.76799999922514, 257033.636999998241663 ], [ 359034.342299997806549, 257032.159299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401530500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92704811, "LATITUDE": 18.34260949, "OBJECTID_1": 12303, "PARCEL_NO_": "105401530500", "Tax_Legal_": "DRONNINGENS GADE 9 KINGS QTR", "Name": "HEIRS OF ADINA WILLIAMS", "Address": "8600 Level Gauge Ln", "City": "Chesterfield", "State": "Virginia", "Zip": 23832, "Country": "United States", "Land_Value": 8900, "Improved_V": 41500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.7663232198, "SHAPE_Area": 334.71843469700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359217.832400001585484, 257033.868599999696016 ], [ 359215.826300002634525, 257010.394499998539686 ], [ 359201.284000001847744, 257010.670200001448393 ], [ 359204.1233000010252, 257034.441899999976158 ], [ 359217.832400001585484, 257033.868599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401390400", "MAP": null, "PARCEL_NAM": "3 CRYSTAL GADE", "ACRE": null, "LONGITUDE": -64.93166246, "LATITUDE": 18.34260223, "OBJECTID_1": 12057, "PARCEL_NO_": "105401390400", "Tax_Legal_": "CRYSTAL GADE 1,2A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 461200, "Improved_V": 236700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.571772048200003, "SHAPE_Area": 317.16795900599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358720.864500001072884, 256999.281399998813868 ], [ 358719.283100001513958, 256999.149000000208616 ], [ 358718.026399999856949, 257013.55350000038743 ], [ 358718.013800002634525, 257013.640000000596046 ], [ 358715.228100001811981, 257032.841600000858307 ], [ 358717.592299997806549, 257033.185600001364946 ], [ 358725.984999999403954, 257034.406800001859665 ], [ 358727.399999998509884, 256999.828699998557568 ], [ 358720.864500001072884, 256999.281399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401303300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93097332000001, "LATITUDE": 18.34270696, "OBJECTID_1": 11940, "PARCEL_NO_": "105401303300", "Tax_Legal_": "COMMANDANT GADE 3A KINGS QUARTER", "Name": "FC HOLDINGS III, LLC", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58400, "Improved_V": 154700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.459122904500006, "SHAPE_Area": 271.217547717 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358807.266099996864796, 257035.019900001585484 ], [ 358807.717200003564358, 257024.214099999517202 ], [ 358807.010499998927116, 257024.207600001245737 ], [ 358801.350599996745586, 257024.155900001525879 ], [ 358782.154200002551079, 257024.602600000798702 ], [ 358781.336199998855591, 257034.713300000876188 ], [ 358807.266099996864796, 257035.019900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401530300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92738868000001, "LATITUDE": 18.34250522, "OBJECTID_1": 12301, "PARCEL_NO_": "105401530300", "Tax_Legal_": "11 KONGENS GADE KINGS QTR", "Name": "SMITH, DIANA ,LEROY,MAGUERITE,JEFFREY,GARY,JUEL", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 143700, "Improved_V": 63900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.59131072400001, "SHAPE_Area": 830.34043156200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359183.526000000536442, 257036.173500001430511 ], [ 359179.729599997401237, 256983.320999998599291 ], [ 359164.233300000429153, 256984.322200000286102 ], [ 359166.612099997699261, 257018.995099999010563 ], [ 359167.886399999260902, 257037.569299999624491 ], [ 359183.526000000536442, 257036.173500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401390400", "MAP": null, "PARCEL_NAM": "1 CRYSTAL GADE", "ACRE": null, "LONGITUDE": -64.93143375, "LATITUDE": 18.3427017, "OBJECTID_1": 12057, "PARCEL_NO_": "105401390400", "Tax_Legal_": "CRYSTAL GADE 1,2A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 461200, "Improved_V": 236700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.662732908199999, "SHAPE_Area": 259.185835682 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358748.480800002813339, 257019.974599998444319 ], [ 358739.395000003278255, 257019.278599999845028 ], [ 358739.278300002217293, 257021.438799999654293 ], [ 358737.880000002682209, 257036.137699998915195 ], [ 358738.220799997448921, 257036.187300000339746 ], [ 358741.902900002896786, 257036.760999999940395 ], [ 358745.589100003242493, 257037.308499999344349 ], [ 358749.278999999165535, 257037.829700000584126 ], [ 358752.972499996423721, 257038.324599999934435 ], [ 358753.819899998605251, 257021.70160000026226 ], [ 358753.876599997282028, 257020.387899998575449 ], [ 358748.480800002813339, 257019.974599998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401530200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92751938000001, "LATITUDE": 18.34267305, "OBJECTID_1": 12300, "PARCEL_NO_": "105401530200", "Tax_Legal_": "12 DRONNINGENS GADE KING'S QTR", "Name": "SMITH, DIANA ,LEROY,MAGUERITE,JEFFREY,GARY,JUEL", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.001036194199997, "SHAPE_Area": 276.648777155 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359167.886399999260902, 257037.569299999624491 ], [ 359166.612099997699261, 257018.995099999010563 ], [ 359151.744199998676777, 257020.101599998772144 ], [ 359152.039899997413158, 257023.659600000828505 ], [ 359153.303999997675419, 257038.870700001716614 ], [ 359167.886399999260902, 257037.569299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401530100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9276755, "LATITUDE": 18.34270233, "OBJECTID_1": 12299, "PARCEL_NO_": "105401530100", "Tax_Legal_": "DRONNINGENS GADE 13 KINGS QUARTER", "Name": "LEWIS, F.&SCHMEDES,F.W.&L.A.&S.E.&MOORE.J.S.(CO-TRUSTEES)", "Address": "22125 Senna Hills Dr", "City": "San Antonio", "State": "Texas", "Zip": 78266, "Country": "United States", "Land_Value": 5200, "Improved_V": 89400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.534766132000001, "SHAPE_Area": 291.50878331500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359153.303999997675419, 257038.870700001716614 ], [ 359152.039899997413158, 257023.659600000828505 ], [ 359133.623499996960163, 257024.533900000154972 ], [ 359134.769599996507168, 257040.7027000002563 ], [ 359153.303999997675419, 257038.870700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401520300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92800379000001, "LATITUDE": 18.3426704, "OBJECTID_1": 12293, "PARCEL_NO_": "105401520300", "Tax_Legal_": "DRONNINGENS GADE 14&15 KINGS QUARTER", "Name": "TERRITORIAL PUBLIC DEFENDER", "Address": "1-B CLIFTON HILL", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 850, "Country": "United States", "Land_Value": 137500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.785268554, "SHAPE_Area": 834.85765627900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359125.770499996840954, 257039.214800000190735 ], [ 359124.293200001120567, 257013.727699998766184 ], [ 359100.333700001239777, 257016.07490000128746 ], [ 359091.489100001752377, 257018.600999999791384 ], [ 359091.548900000751019, 257019.133799999952316 ], [ 359092.040500000119209, 257030.204599998891354 ], [ 359092.574199996888638, 257042.225299999117851 ], [ 359125.770499996840954, 257039.214800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401513600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92442974, "LATITUDE": 18.34267958, "OBJECTID_1": 12284, "PARCEL_NO_": "105401513600", "Tax_Legal_": "73B DRONNINGENS GADE KINGS QTR", "Name": "PHILLIP, MALCOLM & ROMA", "Address": "PO Box 246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6800, "Improved_V": 84600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.776207187700003, "SHAPE_Area": 241.843116149 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359494.797499999403954, 257039.744199998676777 ], [ 359491.392700001597404, 257022.264699999243021 ], [ 359478.073600001633167, 257024.776599999517202 ], [ 359481.42059999704361, 257042.261700000613928 ], [ 359494.797499999403954, 257039.744199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401520200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92823484, "LATITUDE": 18.34275061, "OBJECTID_1": 12292, "PARCEL_NO_": "105401520200", "Tax_Legal_": "DRONNINGENS GADE 16 KINGS QUARTER", "Name": "PLASKETT, ADEL", "Address": "PO Box 181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4100, "Improved_V": 60800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.860351985699999, "SHAPE_Area": 197.94628625799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359092.574199996888638, 257042.225299999117851 ], [ 359092.040500000119209, 257030.204599998891354 ], [ 359075.532399997115135, 257031.339800000190735 ], [ 359076.739000000059605, 257043.661400001496077 ], [ 359092.574199996888638, 257042.225299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401520100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92838439000001, "LATITUDE": 18.34270485, "OBJECTID_1": 12291, "PARCEL_NO_": "105401520100", "Tax_Legal_": "DRONNINGENS GADE 17 KINGS QUARTER", "Name": "BOSCHULTE, JAMES T. & BRENDA C", "Address": "PO Box 303190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.989528975799999, "SHAPE_Area": 357.92269552499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359076.739000000059605, 257043.661400001496077 ], [ 359075.532399997115135, 257031.339800000190735 ], [ 359074.31870000064373, 257018.946299999952316 ], [ 359059.916500002145767, 257019.236000001430511 ], [ 359062.897900000214577, 257044.916700001806021 ], [ 359076.739000000059605, 257043.661400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401513300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92456278, "LATITUDE": 18.34270472, "OBJECTID_1": 12280, "PARCEL_NO_": "105401513300", "Tax_Legal_": "DRONNINGENS GADE 73A KINGS QTR", "Name": "PEB ENTERPRISES LLC", "Address": "PO BOX 9841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41800, "Improved_V": 333500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.774784240100004, "SHAPE_Area": 268.55044706400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359481.42059999704361, 257042.261700000613928 ], [ 359478.073600001633167, 257024.776599999517202 ], [ 359463.345399998128414, 257027.554099999368191 ], [ 359466.495600000023842, 257045.070500001311302 ], [ 359481.42059999704361, 257042.261700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401370600", "MAP": null, "PARCEL_NAM": "18A DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92851873, "LATITUDE": 18.34274495, "OBJECTID_1": 12039, "PARCEL_NO_": "105401370600", "Tax_Legal_": "DRONNINGENS GADE 18A & 18B(Combined) KINGS QUARTER", "Name": "FLUCK, PHILBERT & DENISE S. KURG", "Address": "PO Box 6456", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 45500, "Improved_V": 118600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.46232627, "SHAPE_Area": 231.002626201 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359061.379600003361702, 257045.054299999028444 ], [ 359059.201300002634525, 257026.290399998426437 ], [ 359046.201399996876717, 257027.246800001710653 ], [ 359050.120600000023842, 257046.075399998575449 ], [ 359061.379600003361702, 257045.054299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401370500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92864149, "LATITUDE": 18.34273079, "OBJECTID_1": 12038, "PARCEL_NO_": "105401370500", "Tax_Legal_": "DRONNINGENS GADE 19 KINGS QUARTER", "Name": "DINZEY, VERNA", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6900, "Improved_V": 19000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.471671519300003, "SHAPE_Area": 322.659254557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359050.120600000023842, 257046.075399998575449 ], [ 359046.201399996876717, 257027.246800001710653 ], [ 359045.481600001454353, 257021.398299999535084 ], [ 359039.057599999010563, 257021.693399999290705 ], [ 359037.54389999806881, 257021.876800000667572 ], [ 359032.508699998259544, 257022.357400000095367 ], [ 359034.342299997806549, 257032.159299999475479 ], [ 359037.165200002491474, 257047.250300001353025 ], [ 359050.120600000023842, 257046.075399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401513000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92496213, "LATITUDE": 18.34275235, "OBJECTID_1": 12277, "PARCEL_NO_": "105401513000", "Tax_Legal_": "DRONNINGENS GADE 71B KINGS QTR", "Name": "DUVERGEE, ADOLPH", "Address": "PO Box 7402", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5300, "Improved_V": 11800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.23442437, "SHAPE_Area": 281.74103889499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359438.082299999892712, 257045.312600001692772 ], [ 359440.935500003397465, 257044.962900001555681 ], [ 359441.047899998724461, 257031.759199999272823 ], [ 359438.881099998950958, 257032.16780000180006 ], [ 359433.960799999535084, 257032.948899999260902 ], [ 359429.028300002217293, 257033.64809999987483 ], [ 359424.084700003266335, 257034.2652000002563 ], [ 359419.131599999964237, 257034.800000000745058 ], [ 359419.047600001096725, 257047.645700000226498 ], [ 359438.082299999892712, 257045.312600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401311800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92949261, "LATITUDE": 18.34278706, "OBJECTID_1": 11958, "PARCEL_NO_": "105401311800", "Tax_Legal_": "25 DRONNINGENS GADE 25 KINGS QUARTER", "Name": "MJB CARIBBEAN VENTURES INC", "Address": "PO Box 522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15400, "Improved_V": 142300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.819855203, "SHAPE_Area": 538.85879359800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358971.785999998450279, 257045.331900000572205 ], [ 358971.163999997079372, 257032.883499998599291 ], [ 358947.133299998939037, 257033.125700000673532 ], [ 358936.724600002169609, 257033.230599999427795 ], [ 358935.128100000321865, 257031.317699998617172 ], [ 358931.860500000417233, 257031.4695999994874 ], [ 358932.498599998652935, 257045.332100000232458 ], [ 358935.702299997210503, 257047.891499999910593 ], [ 358971.785999998450279, 257045.331900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401370300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92872771, "LATITUDE": 18.34278468, "OBJECTID_1": 12036, "PARCEL_NO_": "105401370300", "Tax_Legal_": "DRONNINGENS GADE 2OA KINGS QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.998464214000002, "SHAPE_Area": 112.294692504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359037.165200002491474, 257047.250300001353025 ], [ 359034.342299997806549, 257032.159299999475479 ], [ 359026.76799999922514, 257033.636999998241663 ], [ 359029.875299997627735, 257047.911499999463558 ], [ 359037.165200002491474, 257047.250300001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401513100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9247214, "LATITUDE": 18.3427341, "OBJECTID_1": 12278, "PARCEL_NO_": "105401513100", "Tax_Legal_": "DRONNINGENS GADE 72B KINGS QTR", "Name": "FURLONGE, CHRISTOBELE", "Address": "PO Box 8294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2900, "Improved_V": 70600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.478344282199998, "SHAPE_Area": 221.44603175200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359463.241599999368191, 257045.682900000363588 ], [ 359460.091600000858307, 257028.16780000180006 ], [ 359447.739100001752377, 257030.497299998998642 ], [ 359451.133199997246265, 257047.961599998176098 ], [ 359463.241599999368191, 257045.682900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401513800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92429871, "LATITUDE": 18.34269697, "OBJECTID_1": 12286, "PARCEL_NO_": "105401513800", "Tax_Legal_": "74 DRONNINGENS GADE KINGS QTR", "Name": "SMITH, EDITH & SKELTON, S. & L", "Address": "5874 Bridgemont Pl", "City": "Acworth", "State": "Georgia", "Zip": 30101, "Country": "United States", "Land_Value": 6000, "Improved_V": 91900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.039226500699996, "SHAPE_Area": 352.66635883499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359508.403800003230572, 257047.451499998569489 ], [ 359504.943499997258186, 257021.070300001651049 ], [ 359503.100199997425079, 257019.781199999153614 ], [ 359500.248099997639656, 257020.410700000822544 ], [ 359497.392800003290176, 257021.025600001215935 ], [ 359494.534400001168251, 257021.625999998301268 ], [ 359491.392700001597404, 257022.264699999243021 ], [ 359494.797499999403954, 257039.744199998676777 ], [ 359495.035199999809265, 257040.964699998497963 ], [ 359496.615000002086163, 257049.075199998915195 ], [ 359508.403800003230572, 257047.451499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401303400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93079827, "LATITUDE": 18.34276977, "OBJECTID_1": 11941, "PARCEL_NO_": "105401303400", "Tax_Legal_": "COMMANDANT GADE 2B 3B KINGS QUARTER", "Name": "CHRISTMAS, RITA BARBEL", "Address": "PO Box 8208", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73200, "Improved_V": 471500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.223245172399999, "SHAPE_Area": 295.11059622499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358819.226800002157688, 257024.27250000089407 ], [ 358811.225500002503395, 257024.246100001037121 ], [ 358807.717200003564358, 257024.214099999517202 ], [ 358807.266099996864796, 257035.019900001585484 ], [ 358806.701399996876717, 257048.546799998730421 ], [ 358810.8175999969244, 257048.743999999016523 ], [ 358819.174699999392033, 257049.144400000572205 ], [ 358819.226800002157688, 257024.27250000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401370200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92890347, "LATITUDE": 18.342753, "OBJECTID_1": 12035, "PARCEL_NO_": "105401370200", "Tax_Legal_": "DRONNINGENS GADE 21-22-23 KINGS QTR.", "Name": "GOVERNMENT HEIGHTS LLC & PAI HOUSE LLC", "Address": "4029 Ironboard Rd", "City": "Williamsburg", "State": "Virginia", "Zip": 23188, "Country": "United States", "Land_Value": 21100, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.307696557, "SHAPE_Area": 700.26013520399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359029.875299997627735, 257047.911499999463558 ], [ 359026.76799999922514, 257033.636999998241663 ], [ 359024.479400001466274, 257023.123799998313189 ], [ 359013.527400001883507, 257024.169100001454353 ], [ 359011.098700001835823, 257024.40089999884367 ], [ 359010.987199999392033, 257022.573100000619888 ], [ 358998.657700002193451, 257023.480200000107288 ], [ 358999.332599997520447, 257029.187300000339746 ], [ 359001.84740000218153, 257050.453299999237061 ], [ 359029.875299997627735, 257047.911499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401513500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92440375, "LATITUDE": 18.34279886, "OBJECTID_1": 12283, "PARCEL_NO_": "105401513500", "Tax_Legal_": "PRINCE STREET 3B KINGS QUARTER", "Name": "PETERSEN, ANN", "Address": "PO Box 3534", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 3000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.614295840799997, "SHAPE_Area": 124.963656309 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359496.615000002086163, 257049.075199998915195 ], [ 359495.035199999809265, 257040.964699998497963 ], [ 359494.797499999403954, 257039.744199998676777 ], [ 359481.42059999704361, 257042.261700000613928 ], [ 359483.081600002944469, 257050.9391999989748 ], [ 359496.615000002086163, 257049.075199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401503800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92632562, "LATITUDE": 18.3427998, "OBJECTID_1": 12236, "PARCEL_NO_": "105401503800", "Tax_Legal_": "DRONNINGENS GADE 61 KINGS QTR", "Name": "BOARD OF EDUCATION-GOV'T V. I.", "Address": "PO Box 11900", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.780685870799999, "SHAPE_Area": 96.624364780099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359286.528499998152256, 257051.034200001507998 ], [ 359289.783100001513958, 257050.798200000077486 ], [ 359288.997800000011921, 257036.825199998915195 ], [ 359287.157799996435642, 257036.976100001484156 ], [ 359285.317900002002716, 257037.126800000667572 ], [ 359283.477899998426437, 257037.277300000190735 ], [ 359281.637900002300739, 257037.427600000053644 ], [ 359283.340999998152256, 257051.265299998223782 ], [ 359286.528499998152256, 257051.034200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401511700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92592155, "LATITUDE": 18.34278686, "OBJECTID_1": 12263, "PARCEL_NO_": "105401511700", "Tax_Legal_": "QUEENS 64 KINGS QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 46100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.449382315700007, "SHAPE_Area": 307.95270471100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359339.294600002467632, 257049.465700000524521 ], [ 359337.962399996817112, 257034.951099999248981 ], [ 359333.531099997460842, 257034.906700000166893 ], [ 359329.099500000476837, 257034.905299998819828 ], [ 359324.668200001120567, 257034.946800000965595 ], [ 359318.427000001072884, 257035.2162000015378 ], [ 359319.82039999961853, 257051.868299998342991 ], [ 359339.294600002467632, 257049.465700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401503700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92638628, "LATITUDE": 18.34280771, "OBJECTID_1": 12235, "PARCEL_NO_": "105401503700", "Tax_Legal_": "DRONNINGENS GADE 60C KINGS QTR", "Name": "MEM. MORAVIAN CHURCH", "Address": "PO Box 8330", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.842153764199999, "SHAPE_Area": 83.565691201899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359283.340999998152256, 257051.265299998223782 ], [ 359281.637900002300739, 257037.427600000053644 ], [ 359280.25110000371933, 257037.540699999779463 ], [ 359278.864200003445148, 257037.6537000015378 ], [ 359277.477300003170967, 257037.766600001603365 ], [ 359276.090400002896786, 257037.879299998283386 ], [ 359276.900499999523163, 257051.732400000095367 ], [ 359283.340999998152256, 257051.265299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401503600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92644459, "LATITUDE": 18.34281351, "OBJECTID_1": 12234, "PARCEL_NO_": "105401503600", "Tax_Legal_": "DRONNINGENS GADE 60A KINGS QTR", "Name": "MEM. MORAVIAN CHURCH", "Address": "PO Box 8330", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.138793554499998, "SHAPE_Area": 87.633879474799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359276.900499999523163, 257051.732400000095367 ], [ 359276.090400002896786, 257037.879299998283386 ], [ 359274.72240000218153, 257037.99040000140667 ], [ 359273.354400001466274, 257038.101300001144409 ], [ 359271.986299999058247, 257038.212099999189377 ], [ 359270.618299998342991, 257038.322900000959635 ], [ 359269.85869999974966, 257049.891800001263618 ], [ 359269.857699997723103, 257050.480000000447035 ], [ 359269.896600000560284, 257051.066899999976158 ], [ 359269.975100003182888, 257051.64979999884963 ], [ 359270.093000002205372, 257052.226100001484156 ], [ 359276.900499999523163, 257051.732400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401370100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92914806, "LATITUDE": 18.34279316, "OBJECTID_1": 12034, "PARCEL_NO_": "105401370100", "Tax_Legal_": "DRONNINGENS GADE 24 KINGS QUARTER", "Name": "GOVERNMENT HEIGHTS LLC & PAI HOUSE LLC", "Address": "4029 Ironboard Rd", "City": "Williamsburg", "State": "Virginia", "Zip": 23188, "Country": "United States", "Land_Value": 13700, "Improved_V": 188300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.190707028399999, "SHAPE_Area": 574.60127502 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358976.696999996900558, 257052.967700000852346 ], [ 359001.84740000218153, 257050.453299999237061 ], [ 358999.332599997520447, 257029.187300000339746 ], [ 358974.798500001430511, 257029.588199999183416 ], [ 358975.102899998426437, 257051.074400000274181 ], [ 358976.696999996900558, 257052.967700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401303500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93061397, "LATITUDE": 18.34270387, "OBJECTID_1": 11942, "PARCEL_NO_": "105401303500", "Tax_Legal_": "KINGS ST 31 KINGS QUARTER", "Name": "FOSTER HOUSE INC", "Address": "PO Box 502097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 191000, "Improved_V": 45800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.66773317100001, "SHAPE_Area": 1228.51810252 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358847.202200002968311, 257031.304800000041723 ], [ 358830.29450000077486, 256998.58500000089407 ], [ 358824.740800000727177, 257001.477699998766184 ], [ 358823.232100002467632, 257002.100499998778105 ], [ 358821.665500000119209, 257002.558400001376867 ], [ 358820.058899998664856, 257002.846200000494719 ], [ 358818.430699996650219, 257002.960499998182058 ], [ 358819.226800002157688, 257024.27250000089407 ], [ 358819.174699999392033, 257049.144400000572205 ], [ 358823.709100000560284, 257049.361699998378754 ], [ 358836.464900001883507, 257049.972800001502037 ], [ 358855.702100001275539, 257052.780999999493361 ], [ 358847.202200002968311, 257031.304800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401361000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93189351, "LATITUDE": 18.34285796, "OBJECTID_1": 12028, "PARCEL_NO_": "105401361000", "Tax_Legal_": "CRYSTAL GADE 2O QUEENS QUARTER", "Name": "CYRIL V. FRANCOIS ASSOC.", "Address": "PO Box 6050", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26100, "Improved_V": 324300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.031741203000003, "SHAPE_Area": 217.43876801 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358704.335600003600121, 257037.416700001806021 ], [ 358692.569099999964237, 257035.704500000923872 ], [ 358691.840999998152256, 257041.131400000303984 ], [ 358691.431900002062321, 257044.294700000435114 ], [ 358691.052799999713898, 257047.461800001561642 ], [ 358690.703900001943111, 257050.632399998605251 ], [ 358690.385099999606609, 257053.806099999696016 ], [ 358702.489000000059605, 257055.058800000697374 ], [ 358704.335600003600121, 257037.416700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401512600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92527484, "LATITUDE": 18.34280839, "OBJECTID_1": 12273, "PARCEL_NO_": "105401512600", "Tax_Legal_": "DRONNINGENS GADE 68,69&70A KINGS QTR.", "Name": "MICHAEL, E", "Address": "240 Lombard St", "City": "San Francisco", "State": "California", "Zip": 94111, "Country": "United States", "Land_Value": 9100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.113564580499997, "SHAPE_Area": 416.87401276999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359407.540100000798702, 257055.19819999858737 ], [ 359408.006599999964237, 257035.698899999260902 ], [ 359403.085600003600121, 257035.963799998164177 ], [ 359398.160899996757507, 257036.147799998521805 ], [ 359393.233900003135204, 257036.250700000673532 ], [ 359388.305900000035763, 257036.272599998861551 ], [ 359386.61540000140667, 257036.260400000959635 ], [ 359385.728900000452995, 257055.630399998277426 ], [ 359387.728200003504753, 257055.590799998492002 ], [ 359407.540100000798702, 257055.19819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401514000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92541644000001, "LATITUDE": 18.3428109, "OBJECTID_1": 12288, "PARCEL_NO_": "105401514000", "Tax_Legal_": "DRONNINGENS GADE 67B KINGS QUARTER", "Name": "GABRIEL, RAMON, THEODORE & JACQUELINE & VIOLET VANTERPOOL", "Address": "PO Box 186", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040186, "Country": "United States", "Land_Value": 4100, "Improved_V": 85400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.705806715599998, "SHAPE_Area": 161.92122017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359378.470899999141693, 257036.074000000953674 ], [ 359378.323700003325939, 257036.068500000983477 ], [ 359377.439000003039837, 257055.7787000015378 ], [ 359378.916599996387959, 257055.765399999916553 ], [ 359385.728900000452995, 257055.630399998277426 ], [ 359386.61540000140667, 257036.260400000959635 ], [ 359386.239000000059605, 257036.257699999958277 ], [ 359384.172399997711182, 257036.228500001132488 ], [ 359382.105899997055531, 257036.184999998658895 ], [ 359380.039899997413158, 257036.127300001680851 ], [ 359379.51690000295639, 257036.110500000417233 ], [ 359378.993900001049042, 257036.092700000852346 ], [ 359378.470899999141693, 257036.074000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401361100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93179754000001, "LATITUDE": 18.34286478, "OBJECTID_1": 12029, "PARCEL_NO_": "105401361100", "Tax_Legal_": "CRYSTAL GADE 21 QUEENS QUARTER", "Name": "EASTHERS, BEATRICE", "Address": "PO Box 6457", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20100, "Improved_V": 29400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.5795814174, "SHAPE_Area": 143.57269846400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358713.501500003039837, 257038.750500001013279 ], [ 358704.335600003600121, 257037.416700001806021 ], [ 358702.489000000059605, 257055.058800000697374 ], [ 358709.5371999964118, 257055.788199998438358 ], [ 358713.501500003039837, 257038.750500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401303200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93099227, "LATITUDE": 18.34284487, "OBJECTID_1": 11939, "PARCEL_NO_": "105401303200", "Tax_Legal_": "COMMANDANT GADE 4 A KINGS QUARTER", "Name": "LEWIS ENTERPRISES INC", "Address": "PO Box 1088", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 86400, "Improved_V": 228700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.467359853800005, "SHAPE_Area": 492.058367815 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358805.995800003409386, 257048.513000000268221 ], [ 358806.701399996876717, 257048.546799998730421 ], [ 358807.266099996864796, 257035.019900001585484 ], [ 358781.648900002241135, 257034.561000000685453 ], [ 358780.766199998557568, 257056.958099998533726 ], [ 358796.299999997019768, 257057.604400001466274 ], [ 358796.30179999768734, 257057.403900001198053 ], [ 358797.993600003421307, 257048.129599999636412 ], [ 358805.995800003409386, 257048.513000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401303100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93088531, "LATITUDE": 18.34291899, "OBJECTID_1": 11938, "PARCEL_NO_": "105401303100", "Tax_Legal_": "COMMANDANT GADE 4B KINGS QUARTER", "Name": "GENEVIEVE ADRENA HICKS REV TRUST", "Address": "2709 Beethoven Ave", "City": "BALTIMORE", "State": "Maryland", "Zip": 21207, "Country": "United States", "Land_Value": 3700, "Improved_V": 31300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.953368248700002, "SHAPE_Area": 126.74669686 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358810.8175999969244, 257048.743999999016523 ], [ 358806.701399996876717, 257048.546799998730421 ], [ 358805.995800003409386, 257048.513000000268221 ], [ 358797.993600003421307, 257048.129599999636412 ], [ 358796.30179999768734, 257057.403900001198053 ], [ 358796.299999997019768, 257057.604400001466274 ], [ 358810.740500003099442, 257057.788800001144409 ], [ 358810.8175999969244, 257048.743999999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401361200", "MAP": null, "PARCEL_NAM": "22", "ACRE": null, "LONGITUDE": -64.93168882000001, "LATITUDE": 18.34288349, "OBJECTID_1": 12030, "PARCEL_NO_": "105401361200", "Tax_Legal_": "22 CRYSTAL GADE QUEENS QUARTER", "Name": "CARMEN R SIBILLY & PATRICIA N JONES REV TRST", "Address": "PO Box 1101", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31100, "Improved_V": 180700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.270629216800003, "SHAPE_Area": 264.45250172599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358727.645599998533726, 257040.808699999004602 ], [ 358713.501500003039837, 257038.750500001013279 ], [ 358709.5371999964118, 257055.788199998438358 ], [ 358725.398699998855591, 257058.116700001060963 ], [ 358727.645599998533726, 257040.808699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402199900", "MAP": null, "PARCEL_NAM": "2C", "ACRE": null, "LONGITUDE": -64.92099833, "LATITUDE": 18.34214751, "OBJECTID_1": 19301, "PARCEL_NO_": "105402199900", "Tax_Legal_": "2C ROSS ESTATE #8 NEW QUARTER", "Name": "GOV'T OF THE VI, DEPT. OF HOUSING,PARKS & REC", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 207700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 475.43818133799999, "SHAPE_Area": 12347.222047499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359876.821599997580051, 257055.378499999642372 ], [ 359884.745099999010563, 257054.921799998730421 ], [ 359893.267200000584126, 257054.430500000715256 ], [ 359883.383400000631809, 256887.841699998825788 ], [ 359793.338600002229214, 256920.065900001674891 ], [ 359804.538699999451637, 256958.62950000166893 ], [ 359808.345499999821186, 256971.736800000071526 ], [ 359809.124799996614456, 256976.633600000292063 ], [ 359813.235600002110004, 257002.467099998146296 ], [ 359817.737700000405312, 257030.759799998253584 ], [ 359822.156700000166893, 257058.529500000178814 ], [ 359876.821599997580051, 257055.378499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401361300", "MAP": null, "PARCEL_NAM": "23", "ACRE": ".05", "LONGITUDE": -64.93154544, "LATITUDE": 18.34290171, "OBJECTID_1": 12031, "PARCEL_NO_": "105401361300", "Tax_Legal_": "23 CRYSTAL GADE QUEENS QUARTER", "Name": "JENS GIRLZ LLC", "Address": "PO Box 10934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32700, "Improved_V": 120600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.726938922900004, "SHAPE_Area": 268.76620489499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358742.407499998807907, 257043.002000000327826 ], [ 358741.130500003695488, 257042.809599999338388 ], [ 358739.853799998760223, 257042.614199999719858 ], [ 358738.57769999653101, 257042.415600001811981 ], [ 358737.302000001072884, 257042.213899999856949 ], [ 358727.645599998533726, 257040.808699999004602 ], [ 358725.398699998855591, 257058.116700001060963 ], [ 358741.110500000417233, 257060.423200000077486 ], [ 358742.407499998807907, 257043.002000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401472200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92789862, "LATITUDE": 18.3428962, "OBJECTID_1": 12155, "PARCEL_NO_": "105401472200", "Tax_Legal_": "DRONNINGENS GADE 51 KINGS QUARTER", "Name": "RHYMER, LIVIA C. T.", "Address": "PO Box 96", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.475491605800002, "SHAPE_Area": 206.35527634900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359127.069300003349781, 257060.05970000103116 ], [ 359126.149800002574921, 257045.301399998366833 ], [ 359112.134900003671646, 257046.572399999946356 ], [ 359112.84179999679327, 257060.91780000180006 ], [ 359127.069300003349781, 257060.05970000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401303000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93029275000001, "LATITUDE": 18.3428332, "OBJECTID_1": 11937, "PARCEL_NO_": "105401303000", "Tax_Legal_": "DRONNINGENS GADE 3O 31 KINGS QUARTER", "Name": "BLACKBEARDS CASTLE, LLP", "Address": "PO Box 1567", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8041567, "Country": "United States", "Land_Value": 20600, "Improved_V": 153000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.236225616, "SHAPE_Area": 805.83598879600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358880.264600001275539, 257058.817999999970198 ], [ 358881.766500003635883, 257030.699099998921156 ], [ 358860.903999999165535, 257031.064699999988079 ], [ 358847.202200002968311, 257031.304800000041723 ], [ 358855.702100001275539, 257052.780999999493361 ], [ 358857.530799999833107, 257061.028499998152256 ], [ 358860.03999999910593, 257060.225400000810623 ], [ 358862.606799997389317, 257059.631400000303984 ], [ 358865.213799998164177, 257059.250599998980761 ], [ 358867.843299999833107, 257059.085499998182058 ], [ 358880.264600001275539, 257058.817999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401511600", "MAP": null, "PARCEL_NAM": "13 BJERGE GADE", "ACRE": "1,680 sq ft", "LONGITUDE": -64.92590765, "LATITUDE": 18.34289664, "OBJECTID_1": 12261, "PARCEL_NO_": "105401511600", "Tax_Legal_": "BJERGE GADE 13 KINGS QUARTER", "Name": "LIMA, GENEVIEVE", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.960489538200001, "SHAPE_Area": 171.97730113399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359339.998800002038479, 257058.692899998277426 ], [ 359339.294600002467632, 257049.465700000524521 ], [ 359319.82039999961853, 257051.868299998342991 ], [ 359320.12389999628067, 257060.02760000154376 ], [ 359339.998800002038479, 257058.692899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401311600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92995484, "LATITUDE": 18.3426891, "OBJECTID_1": 11956, "PARCEL_NO_": "105401311600", "Tax_Legal_": "KONGENS GADE 26 27 KINGS QUARTER", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 37100, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.95829351899999, "SHAPE_Area": 1813.8489293800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358916.991200000047684, 257032.160500001162291 ], [ 358914.375500001013279, 256995.05689999833703 ], [ 358909.50959999859333, 256995.262699998915195 ], [ 358904.640600003302097, 256995.376899998635054 ], [ 358899.770300000905991, 256995.399599999189377 ], [ 358894.900399997830391, 256995.330800000578165 ], [ 358889.762999996542931, 256995.2804000005126 ], [ 358886.376299999654293, 257058.686299998313189 ], [ 358905.817500002682209, 257058.267499998211861 ], [ 358908.329300001263618, 257058.335299998521805 ], [ 358910.822800002992153, 257058.646099999547005 ], [ 358913.274300001561642, 257059.196899998933077 ], [ 358915.660999998450279, 257059.982700001448393 ], [ 358917.470299996435642, 257060.757399998605251 ], [ 358919.060300000011921, 257061.510800000280142 ], [ 358916.991200000047684, 257032.160500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401361400", "MAP": null, "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.93141965, "LATITUDE": 18.34291685, "OBJECTID_1": 12032, "PARCEL_NO_": "105401361400", "Tax_Legal_": "CRYSTAL GADE 24 QUEENS QUARTER", "Name": "HYMAN, ALVERA", "Address": "BOX 243-M.CHERRY", "City": "OAK CITY", "State": "North Carolina", "Zip": 27857, "Country": "United States", "Land_Value": 10400, "Improved_V": 53200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.803983045099997, "SHAPE_Area": 198.98831049699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358753.972499996423721, 257044.599500000476837 ], [ 358751.078000001609325, 257044.22410000115633 ], [ 358748.185599997639656, 257043.832600001245737 ], [ 358745.295400001108646, 257043.425299998372793 ], [ 358742.407499998807907, 257043.002000000327826 ], [ 358741.110500000417233, 257060.423200000077486 ], [ 358742.1841000020504, 257060.580800000578165 ], [ 358752.114399999380112, 257062.038499999791384 ], [ 358753.972499996423721, 257044.599500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401511900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92568767, "LATITUDE": 18.3428405, "OBJECTID_1": 12266, "PARCEL_NO_": "105401511900", "Tax_Legal_": "QUEENS 65B KINGS QTR", "Name": "LIMA ENTERPRISES INC.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45000, "Improved_V": 195700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.730515258300002, "SHAPE_Area": 337.19274085400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359349.092200003564358, 257035.249800000339746 ], [ 359347.512500002980232, 257035.205699998885393 ], [ 359346.951499998569489, 257063.115800000727177 ], [ 359348.854999996721745, 257063.08390000090003 ], [ 359352.075800001621246, 257063.029899999499321 ], [ 359354.489200003445148, 257062.989500001072884 ], [ 359358.587700001895428, 257062.920800000429153 ], [ 359360.273400001227856, 257035.561599999666214 ], [ 359349.092200003564358, 257035.249800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401511800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92578332, "LATITUDE": 18.34283321, "OBJECTID_1": 12265, "PARCEL_NO_": "105401511800", "Tax_Legal_": "DRONINGENS GADE 65A KINGS QTR", "Name": "BENJAMIN, ALBERT E", "Address": "PO Box 10443", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7300, "Improved_V": 42500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.441735769800005, "SHAPE_Area": 222.54373062100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359346.951499998569489, 257063.115800000727177 ], [ 359347.512500002980232, 257035.205699998885393 ], [ 359338.940600000321865, 257034.966699998825788 ], [ 359338.696000002324581, 257034.962600000202656 ], [ 359338.451499998569489, 257034.958599999547005 ], [ 359338.206900000572205, 257034.954799998551607 ], [ 359337.962399996817112, 257034.951099999248981 ], [ 359339.294600002467632, 257049.465700000524521 ], [ 359339.998800002038479, 257058.692899998277426 ], [ 359341.596699997782707, 257063.205600000917912 ], [ 359344.814699999988079, 257063.151700001209974 ], [ 359346.951499998569489, 257063.115800000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401513700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92430009, "LATITUDE": 18.34290926, "OBJECTID_1": 12285, "PARCEL_NO_": "105401513700", "Tax_Legal_": "PRINDSENS GADE 1A&2A KINGS QTR", "Name": "FELIX, ALIYA T.", "Address": "PO Box 502261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 7600, "Improved_V": 101200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.652532321700001, "SHAPE_Area": 209.63379304200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359510.292700000107288, 257061.852400001138449 ], [ 359508.877499997615814, 257051.062699999660254 ], [ 359489.54280000180006, 257053.951200000941753 ], [ 359490.490299999713898, 257062.598900001496077 ], [ 359490.679099999368191, 257064.339699998497963 ], [ 359490.718000002205372, 257064.334699999541044 ], [ 359510.292700000107288, 257061.852400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401361500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93126167, "LATITUDE": 18.34293626, "OBJECTID_1": 12033, "PARCEL_NO_": "105401361500", "Tax_Legal_": "COMMANDANT GADE OV 4 QUEENS QUARTER", "Name": "SPRAUVE, G. , G. , G. , D. R. , & C. A. -", "Address": "6841 Estate Smith", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17200, "Improved_V": 72800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.705052757399997, "SHAPE_Area": 395.46438669700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358775.062799997627735, 257061.529800001531839 ], [ 358775.538000002503395, 257046.88910000026226 ], [ 358770.138099998235703, 257046.399500001221895 ], [ 358764.743500001728535, 257045.854699999094009 ], [ 358759.354800000786781, 257045.254700001329184 ], [ 358753.972499996423721, 257044.599500000476837 ], [ 358752.114399999380112, 257062.038499999791384 ], [ 358772.279700003564358, 257064.998799998313189 ], [ 358772.940700002014637, 257064.104200001806021 ], [ 358773.625299997627735, 257063.227400001138449 ], [ 358774.332800000905991, 257062.369100000709295 ], [ 358775.062799997627735, 257061.529800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471900", "MAP": null, "PARCEL_NAM": "50A DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.928052, "LATITUDE": 18.34292297, "OBJECTID_1": 12153, "PARCEL_NO_": "105401471900", "Tax_Legal_": "DRONNINGENS GADE 50A & 50 KINGS QUARTER", "Name": "WILLIAMS, WINSTON M.A., TRUSTEE", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10400, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.366008682599997, "SHAPE_Area": 265.86248367500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359110.487700000405312, 257046.721799999475479 ], [ 359095.058300003409386, 257048.121100001037121 ], [ 359096.255699999630451, 257065.053700000047684 ], [ 359111.363799996674061, 257064.479600001126528 ], [ 359110.487700000405312, 257046.721799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401513400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92443549, "LATITUDE": 18.34292837, "OBJECTID_1": 12281, "PARCEL_NO_": "105401513400", "Tax_Legal_": "PRINCE STREET 3A KINGS QTR", "Name": "PICKERING, ULRIC & RUTH", "Address": "BOX 3544", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.104139073600003, "SHAPE_Area": 94.880097695499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359490.679099999368191, 257064.339699998497963 ], [ 359490.490299999713898, 257062.598900001496077 ], [ 359489.54280000180006, 257053.951200000941753 ], [ 359483.831900000572205, 257054.804400000721216 ], [ 359480.664200000464916, 257055.204500000923872 ], [ 359481.404700003564358, 257065.515799999237061 ], [ 359482.210400000214577, 257065.413600001484156 ], [ 359490.679099999368191, 257064.339699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401512000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92558417, "LATITUDE": 18.34285813, "OBJECTID_1": 12267, "PARCEL_NO_": "105401512000", "Tax_Legal_": "QUEENS STREET 66 KINGS QUARTER", "Name": "LIMA ENTERPRISES INC.", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42000, "Improved_V": 331800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.745338661199995, "SHAPE_Area": 303.73188358599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359370.246799997985363, 257035.839699998497963 ], [ 359362.265100002288818, 257035.61710000038147 ], [ 359360.273400001227856, 257035.561599999666214 ], [ 359358.587700001895428, 257062.920800000429153 ], [ 359358.05460000038147, 257066.393699999898672 ], [ 359360.405799999833107, 257066.337000001221895 ], [ 359366.287600003182888, 257066.503600001335144 ], [ 359368.104299999773502, 257066.554999999701977 ], [ 359370.246799997985363, 257035.839699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401503300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92678341, "LATITUDE": 18.34289213, "OBJECTID_1": 12231, "PARCEL_NO_": "105401503300", "Tax_Legal_": "DRONNINGENS GADE 57 KINGS QUARTER", "Name": "ALMESTICA, P., L. VIALET & B. GIFFT", "Address": "PO Box 471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 64300, "Improved_V": 653800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.876383178500006, "SHAPE_Area": 357.60217999299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359245.859700001776218, 257065.515599999576807 ], [ 359243.148500002920628, 257040.519200000911951 ], [ 359240.829300001263618, 257040.702399998903275 ], [ 359237.005699999630451, 257041.003499999642372 ], [ 359233.182099997997284, 257041.303700000047684 ], [ 359229.358300000429153, 257041.602899998426437 ], [ 359231.494400002062321, 257066.974599998444319 ], [ 359239.431199997663498, 257066.168499998748302 ], [ 359245.859700001776218, 257065.515599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401503900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92623478, "LATITUDE": 18.34287311, "OBJECTID_1": 12237, "PARCEL_NO_": "105401503900", "Tax_Legal_": "DRONNINGENS GADE 62 KINGS QUARTER", "Name": "BOARD OF EDUCATION-GOV'T V. I.", "Address": "PO Box 11900", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52600, "Improved_V": 257800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.695412093399995, "SHAPE_Area": 420.77467276499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359303.334899999201298, 257066.351599998772144 ], [ 359301.449799999594688, 257035.86879999935627 ], [ 359300.429999999701977, 257035.934999998658895 ], [ 359298.158299997448921, 257036.093699999153614 ], [ 359295.887299999594688, 257036.263799998909235 ], [ 359293.617299996316433, 257036.445199999958277 ], [ 359292.462399996817112, 257036.540300000458956 ], [ 359291.307499997317791, 257036.635400000959635 ], [ 359290.152699999511242, 257036.73030000180006 ], [ 359288.997800000011921, 257036.825199998915195 ], [ 359289.783100001513958, 257050.798200000077486 ], [ 359286.528499998152256, 257051.034200001507998 ], [ 359289.092000000178814, 257066.980000000447035 ], [ 359303.334899999201298, 257066.351599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401504100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92767894000001, "LATITUDE": 18.34293702, "OBJECTID_1": 12239, "PARCEL_NO_": "105401504100", "Tax_Legal_": "52 DRONNINGENS GADE KINGS QUARTER", "Name": "MOOREHEAD, VALERIE", "Address": "Po Box 182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31700, "Improved_V": 216600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.896956544699997, "SHAPE_Area": 242.76906230500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359150.168099999427795, 257066.203099999576807 ], [ 359148.934000000357628, 257048.440999999642372 ], [ 359135.340000003576279, 257049.657499998807907 ], [ 359136.637599997222424, 257067.464800000190735 ], [ 359150.168099999427795, 257066.203099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401513200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92456966, "LATITUDE": 18.34289095, "OBJECTID_1": 12279, "PARCEL_NO_": "105401513200", "Tax_Legal_": "PRINCE STREET 4A KINGS QTR", "Name": "LEWIS ENTERPRISES INC", "Address": "PO Box 1088", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11700, "Improved_V": 24900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.273279248799994, "SHAPE_Area": 478.669902073 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359481.404700003564358, 257065.515799999237061 ], [ 359480.664200000464916, 257055.204500000923872 ], [ 359483.831900000572205, 257054.804400000721216 ], [ 359483.081600002944469, 257050.9391999989748 ], [ 359481.42059999704361, 257042.261700000613928 ], [ 359466.495600000023842, 257045.070500001311302 ], [ 359463.241599999368191, 257045.682900000363588 ], [ 359460.207299999892712, 257054.466099999845028 ], [ 359460.177799999713898, 257066.442999999970198 ], [ 359460.141999997198582, 257068.212200000882149 ], [ 359481.404700003564358, 257065.515799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401512200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9254973, "LATITUDE": 18.34286544, "OBJECTID_1": 12269, "PARCEL_NO_": "105401512200", "Tax_Legal_": "DRONNINGENS GADE 67A KINGS QUARTER", "Name": "SMITH, DELPHINE", "Address": "PO Box 504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5900, "Improved_V": 84600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.359847982800005, "SHAPE_Area": 266.45336652499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359371.649999998509884, 257035.878800000995398 ], [ 359370.246799997985363, 257035.839699998497963 ], [ 359368.104299999773502, 257066.554999999701977 ], [ 359369.790600001811981, 257066.602800000458956 ], [ 359375.422200001776218, 257068.126499999314547 ], [ 359376.867600001394749, 257068.509300000965595 ], [ 359378.323700003325939, 257036.068500000983477 ], [ 359377.947999998927116, 257036.054400000721216 ], [ 359371.649999998509884, 257035.878800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401514100", "MAP": null, "PARCEL_NAM": "71 & 72AB", "ACRE": null, "LONGITUDE": -64.92497076, "LATITUDE": 18.3429152, "OBJECTID_1": 12289, "PARCEL_NO_": "105401514100", "Tax_Legal_": "DRONNINGENS GADE 71A & 72AB KINGS QTR", "Name": "MARTINEZ, JULIO C. & CARLOS R.", "Address": "3248 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9100, "Improved_V": 112500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.924153024199995, "SHAPE_Area": 447.845806837 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359439.5608000010252, 257068.595499999821186 ], [ 359438.082299999892712, 257045.312600001692772 ], [ 359419.047600001096725, 257047.645700000226498 ], [ 359418.9054000005126, 257069.391699999570847 ], [ 359439.5608000010252, 257068.595499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401504400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9271679, "LATITUDE": 18.34292513, "OBJECTID_1": 12242, "PARCEL_NO_": "105401504400", "Tax_Legal_": "DRONNINGENS GADE 55A KINGS QTR", "Name": "SEVENTH DAY ADVENTIST CHURCH", "Address": "PO Box 886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040886, "Country": "United States", "Land_Value": 29600, "Improved_V": 280300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.518922371800002, "SHAPE_Area": 276.28121854900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359202.897200003266335, 257069.879000000655651 ], [ 359201.231700003147125, 257043.773800000548363 ], [ 359190.099200002849102, 257044.767299998551607 ], [ 359193.042000003159046, 257070.879999998956919 ], [ 359202.897200003266335, 257069.879000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401512400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92541073, "LATITUDE": 18.34296265, "OBJECTID_1": 12271, "PARCEL_NO_": "105401512400", "Tax_Legal_": "DRONNINGENS GADE 67 BB KINGS QUARTER", "Name": "WATLINGTON, ARTURO", "Address": "PO Box 261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.003320831800004, "SHAPE_Area": 145.698157874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359387.270900003612041, 257070.881599999964237 ], [ 359387.728200003504753, 257055.590799998492002 ], [ 359378.916599996387959, 257055.765399999916553 ], [ 359377.439000003039837, 257055.7787000015378 ], [ 359376.867600001394749, 257068.509300000965595 ], [ 359378.167900003492832, 257068.85359999909997 ], [ 359387.270900003612041, 257070.881599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401311700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92960231000001, "LATITUDE": 18.34290714, "OBJECTID_1": 11957, "PARCEL_NO_": "105401311700", "Tax_Legal_": "DRONNINGENS GADE 26 27 KINGS QUARTER", "Name": "DEJONGH, ROBERT & DONNA", "Address": "PO Box 810", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 32900, "Improved_V": 150300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.33757454299999, "SHAPE_Area": 1159.9274003800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358972.221199996769428, 257054.041299998760223 ], [ 358971.785999998450279, 257045.331900000572205 ], [ 358935.702299997210503, 257047.891499999910593 ], [ 358932.498599998652935, 257045.332100000232458 ], [ 358931.860500000417233, 257031.4695999994874 ], [ 358916.991200000047684, 257032.160500001162291 ], [ 358919.060300000011921, 257061.510800000280142 ], [ 358937.034699998795986, 257070.028799999505281 ], [ 358938.539099998772144, 257070.60700000077486 ], [ 358940.113499999046326, 257070.951900001615286 ], [ 358941.721799999475479, 257071.055799998342991 ], [ 358943.327500000596046, 257070.916200000792742 ], [ 358944.893799997866154, 257070.536299999803305 ], [ 358946.384900003671646, 257069.924800001084805 ], [ 358947.766999997198582, 257069.095600001513958 ], [ 358948.45830000191927, 257068.5625 ], [ 358954.48650000244379, 257063.506900001317263 ], [ 358957.204999998211861, 257061.386100001633167 ], [ 358960.066500000655651, 257059.462699998170137 ], [ 358963.056800000369549, 257057.746300000697374 ], [ 358966.160899996757507, 257056.24549999833107 ], [ 358969.363300003111362, 257054.967700000852346 ], [ 358972.221199996769428, 257054.041299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401510200", "MAP": null, "PARCEL_NAM": "14 BJERGE GADE", "ACRE": "2,623 sq ft", "LONGITUDE": -64.92588845, "LATITUDE": 18.34300593, "OBJECTID_1": 12246, "PARCEL_NO_": "105401510200", "Tax_Legal_": "BJERGE GADE 16B,15&14 KINGS QTR", "Name": "JRJ DEV ENTERP INC", "Address": "PO Box 7272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 95500, "Improved_V": 344700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.8292860086, "SHAPE_Area": 150.88955736299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359341.596699997782707, 257063.205600000917912 ], [ 359320.368199996650219, 257064.524099998176098 ], [ 359320.781599998474121, 257071.155200000852346 ], [ 359343.619199998676777, 257069.666799999773502 ], [ 359343.12049999833107, 257063.180100001394749 ], [ 359341.596699997782707, 257063.205600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401331400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92848377, "LATITUDE": 18.34296843, "OBJECTID_1": 11981, "PARCEL_NO_": "105401331400", "Tax_Legal_": "DRONNINGENS GADE 48 KINGS QUARTER", "Name": "DEMMING, GWENDOLIN C", "Address": "1600 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9000, "Improved_V": 55000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.869529444799994, "SHAPE_Area": 432.013974389 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359070.185300000011921, 257068.126899998635054 ], [ 359068.875900000333786, 257050.49549999833107 ], [ 359045.401299998164177, 257052.624400001019239 ], [ 359046.761699996888638, 257071.525299999862909 ], [ 359070.185300000011921, 257068.126899998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502900", "MAP": null, "PARCEL_NAM": "54A & B DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92732585, "LATITUDE": 18.34294649, "OBJECTID_1": 12228, "PARCEL_NO_": "105401502900", "Tax_Legal_": "DRONNINGENS GADE 54A,B&C KINGS QTR", "Name": "N. CARIB. CONF. OF 7TH DAY ADV", "Address": "PO Box 886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75200, "Improved_V": 64200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.540874106000004, "SHAPE_Area": 483.23983565600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359190.615900002419949, 257071.126400001347065 ], [ 359187.669799998402596, 257044.984099999070168 ], [ 359170.49099999666214, 257046.681200001388788 ], [ 359171.546899996697903, 257073.424100000411272 ], [ 359190.615900002419949, 257071.126400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401512900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92478309000001, "LATITUDE": 18.34289316, "OBJECTID_1": 12276, "PARCEL_NO_": "105401512900", "Tax_Legal_": "QUEENS STREET 71A&72A KINGS QUARTER", "Name": "DEPARTMENT OF PROPERTY & PROCU", "Address": "71 & 72A DRONNINGENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 180200, "Improved_V": 70600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.49003882, "SHAPE_Area": 697.48679795199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359460.052699998021126, 257072.618900001049042 ], [ 359460.141999997198582, 257068.212200000882149 ], [ 359460.177799999713898, 257066.442999999970198 ], [ 359460.207299999892712, 257054.466099999845028 ], [ 359463.241599999368191, 257045.682900000363588 ], [ 359451.133199997246265, 257047.961599998176098 ], [ 359447.739100001752377, 257030.497299998998642 ], [ 359441.047899998724461, 257031.759199999272823 ], [ 359440.935500003397465, 257044.962900001555681 ], [ 359438.082299999892712, 257045.312600001692772 ], [ 359439.5608000010252, 257068.595499999821186 ], [ 359439.846100002527237, 257073.088100001215935 ], [ 359460.052699998021126, 257072.618900001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401512800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92511986, "LATITUDE": 18.34288441, "OBJECTID_1": 12275, "PARCEL_NO_": "105401512800", "Tax_Legal_": "DRONNINGENS GADE 70 KINGS QTR", "Name": "CARTY, NOLA, TRIBENA, TERRANCE & CARLENE GILLON", "Address": "PO Box 303942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55600, "Improved_V": 141800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.522933791499995, "SHAPE_Area": 431.89139156900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359418.882700003683567, 257072.854299999773502 ], [ 359418.9054000005126, 257069.391699999570847 ], [ 359419.047600001096725, 257047.645700000226498 ], [ 359419.131599999964237, 257034.800000000745058 ], [ 359416.35360000282526, 257035.0636 ], [ 359413.573299996554852, 257035.301300000399351 ], [ 359410.790899999439716, 257035.513000000268221 ], [ 359408.006599999964237, 257035.698899999260902 ], [ 359407.540100000798702, 257055.19819999858737 ], [ 359407.527699999511242, 257055.718100000172853 ], [ 359407.109099999070168, 257073.214999999850988 ], [ 359418.882700003683567, 257072.854299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401360600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93187421, "LATITUDE": 18.34302379, "OBJECTID_1": 12024, "PARCEL_NO_": "105401360600", "Tax_Legal_": "LILLE GRONNE 3A & B QUEENS QUARTER", "Name": "WESTBRIDGE HOLDINGS LLC", "Address": "11195 Whitehawk St", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33324, "Country": "United States", "Land_Value": 17300, "Improved_V": 150700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.913074152500002, "SHAPE_Area": 351.72520329299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358709.5371999964118, 257055.788199998438358 ], [ 358702.489000000059605, 257055.058800000697374 ], [ 358690.385099999606609, 257053.806099999696016 ], [ 358689.982199996709824, 257058.341400001198053 ], [ 358689.640900000929832, 257062.881700001657009 ], [ 358689.361199997365475, 257067.426199998706579 ], [ 358689.143100000917912, 257071.97410000115633 ], [ 358708.115500003099442, 257074.089299999177456 ], [ 358709.5371999964118, 257055.788199998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401302800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93088797, "LATITUDE": 18.3430358, "OBJECTID_1": 11935, "PARCEL_NO_": "105401302800", "Tax_Legal_": "COMMANDANT GADE 5B KINGS QUARTER", "Name": "BUNKERS HILL VIEW INC", "Address": "2307 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7700, "Improved_V": 74000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.881197063199998, "SHAPE_Area": 243.46027726400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358811.313299998641014, 257074.076900001615286 ], [ 358810.678000003099442, 257065.128800000995398 ], [ 358810.740500003099442, 257057.788800001144409 ], [ 358796.299999997019768, 257057.604400001466274 ], [ 358796.155599996447563, 257074.566799998283386 ], [ 358811.313299998641014, 257074.076900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401302700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93102763, "LATITUDE": 18.34303429, "OBJECTID_1": 11934, "PARCEL_NO_": "105401302700", "Tax_Legal_": "COMMANDANT GADE 5A KINGS QUARTER", "Name": "BUNKERS HILL VIEW INC", "Address": "2307 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 172500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.017084931400007, "SHAPE_Area": 257.841091479 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358796.155599996447563, 257074.566799998283386 ], [ 358796.299999997019768, 257057.604400001466274 ], [ 358780.766199998557568, 257056.958099998533726 ], [ 358781.028599999845028, 257062.114900000393391 ], [ 358781.16780000180006, 257065.9087999984622 ], [ 358781.623199999332428, 257069.699700001627207 ], [ 358782.093000002205372, 257072.237300001084805 ], [ 358782.565800003707409, 257074.750199999660254 ], [ 358796.155599996447563, 257074.566799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92617047, "LATITUDE": 18.34303798, "OBJECTID_1": 12225, "PARCEL_NO_": "105401502600", "Tax_Legal_": "BJERGE GADE 2O KINGS QUARTER", "Name": "MICHAEL, E", "Address": "240 Lombard St", "City": "San Francisco", "State": "California", "Zip": 94111, "Country": "United States", "Land_Value": 41900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.993266935999998, "SHAPE_Area": 200.59692853199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359314.909500002861023, 257073.744800001382828 ], [ 359314.445000000298023, 257065.943399999290705 ], [ 359305.010399997234344, 257066.277699999511242 ], [ 359304.851599998772144, 257066.284699998795986 ], [ 359289.092000000178814, 257066.980000000447035 ], [ 359290.40259999781847, 257075.132800001651049 ], [ 359314.909500002861023, 257073.744800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92636871000001, "LATITUDE": 18.34296986, "OBJECTID_1": 12224, "PARCEL_NO_": "105401502500", "Tax_Legal_": "DRONNINGENS GADE 6OB KINGS QUARTER", "Name": "BOARD OF EDUCATION-GOV'T V. I.", "Address": "PO Box 11900", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10400, "Improved_V": 82700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.914186178600005, "SHAPE_Area": 340.10124876399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359290.40259999781847, 257075.132800001651049 ], [ 359289.092000000178814, 257066.980000000447035 ], [ 359286.528499998152256, 257051.034200001507998 ], [ 359283.340999998152256, 257051.265299998223782 ], [ 359276.900499999523163, 257051.732400000095367 ], [ 359270.093000002205372, 257052.226100001484156 ], [ 359270.138599999248981, 257052.407400000840425 ], [ 359270.188100002706051, 257052.587699998170137 ], [ 359270.241499997675419, 257052.767000000923872 ], [ 359270.298699997365475, 257052.945000000298023 ], [ 359274.15990000218153, 257064.524399999529123 ], [ 359274.486699998378754, 257065.327899999916553 ], [ 359274.838500000536442, 257066.120799999684095 ], [ 359275.214800000190735, 257066.902300000190735 ], [ 359275.61540000140667, 257067.671599999070168 ], [ 359279.969499997794628, 257075.723700001835823 ], [ 359290.40259999781847, 257075.132800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401360700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93170791, "LATITUDE": 18.34304159, "OBJECTID_1": 12025, "PARCEL_NO_": "105401360700", "Tax_Legal_": "LILLE GRIONNE 2 QUEENS QUARTER", "Name": "WESTBRIDGE HOLDINGS LLC", "Address": "11195 Whitehawk St", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33324, "Country": "United States", "Land_Value": 16200, "Improved_V": 70500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.644428145500001, "SHAPE_Area": 293.00462146900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358725.398699998855591, 257058.116700001060963 ], [ 358709.5371999964118, 257055.788199998438358 ], [ 358708.115500003099442, 257074.089299999177456 ], [ 358711.14580000191927, 257074.427000001072884 ], [ 358724.453199997544289, 257075.909499999135733 ], [ 358725.398699998855591, 257058.116700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401503000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92715906, "LATITUDE": 18.3430687, "OBJECTID_1": 12229, "PARCEL_NO_": "105401503000", "Tax_Legal_": "DRONNINGENS GADE 55B KINGS QTR", "Name": "SEVENTH DAY ADVENTIST CHURCH", "Address": "PO Box 886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040886, "Country": "United States", "Land_Value": 38200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.119187137799997, "SHAPE_Area": 55.7334737073 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359203.220499999821186, 257074.946600001305342 ], [ 359202.897200003266335, 257069.879000000655651 ], [ 359193.042000003159046, 257070.879999998956919 ], [ 359191.885899998247623, 257070.997400000691414 ], [ 359192.377300001680851, 257076.047899998724461 ], [ 359203.220499999821186, 257074.946600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401472100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92788907000001, "LATITUDE": 18.34303617, "OBJECTID_1": 12154, "PARCEL_NO_": "105401472100", "Tax_Legal_": "HOSPITAL GADE 2 KINGS QTR", "Name": "BUTLER, S & BRYAN, B & B", "Address": "BOX 3763", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4700, "Improved_V": 110200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.662223220900003, "SHAPE_Area": 236.421141656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359128.114600002765656, 257076.837200000882149 ], [ 359127.069300003349781, 257060.05970000103116 ], [ 359112.84179999679327, 257060.91780000180006 ], [ 359113.634999997913837, 257077.016399998217821 ], [ 359128.114600002765656, 257076.837200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401360800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93155416, "LATITUDE": 18.34305823, "OBJECTID_1": 12026, "PARCEL_NO_": "105401360800", "Tax_Legal_": "LILLE GRONNE GADE 1 QUEENS QTR", "Name": "BLACKMAN, FRANK", "Address": "418 Lakeside Way", "City": "Newnan", "State": "Georgia", "Zip": 30265, "Country": "United States", "Land_Value": 15800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.009683822499994, "SHAPE_Area": 288.31948297399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358742.1841000020504, 257060.580800000578165 ], [ 358741.110500000417233, 257060.423200000077486 ], [ 358725.398699998855591, 257058.116700001060963 ], [ 358724.453199997544289, 257075.909499999135733 ], [ 358729.953199997544289, 257076.522199999541044 ], [ 358740.382799997925758, 257077.684500001370907 ], [ 358742.1841000020504, 257060.580800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92679674, "LATITUDE": 18.34305754, "OBJECTID_1": 12220, "PARCEL_NO_": "105401502100", "Tax_Legal_": "PRINDSENS GADE 15C KINGS QUARTER", "Name": "MASSAC, CHRISTOPH K. & PHYLLIS K", "Address": "PO Box 243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.839425758099999, "SHAPE_Area": 87.0976132885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359240.240900002419949, 257077.186900001019239 ], [ 359239.431199997663498, 257066.168499998748302 ], [ 359231.494400002062321, 257066.974599998444319 ], [ 359232.413400001823902, 257077.890599999576807 ], [ 359240.240900002419949, 257077.186900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92766834, "LATITUDE": 18.34306469, "OBJECTID_1": 12226, "PARCEL_NO_": "105401502700", "Tax_Legal_": "DRONNINGENS GADE 53B KINGS QUARTER", "Name": "LETTSOME, ROXANNE", "Address": "PO Box 306533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17500, "Improved_V": 9500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.235970789299998, "SHAPE_Area": 142.95371723400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359150.901699997484684, 257076.762499999254942 ], [ 359150.168099999427795, 257066.203099999576807 ], [ 359136.637599997222424, 257067.464800000190735 ], [ 359137.297399997711182, 257077.857500001788139 ], [ 359150.901699997484684, 257076.762499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471900", "MAP": null, "PARCEL_NAM": "50 DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92802801000001, "LATITUDE": 18.34304143, "OBJECTID_1": 12153, "PARCEL_NO_": "105401471900", "Tax_Legal_": "DRONNINGENS GADE 50A & 50 KINGS QUARTER", "Name": "WILLIAMS, WINSTON M.A., TRUSTEE", "Address": "PO Box 302364", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10400, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.698677740099996, "SHAPE_Area": 241.38014184900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359108.718599997460842, 257077.077300000935793 ], [ 359113.634999997913837, 257077.016399998217821 ], [ 359112.84179999679327, 257060.91780000180006 ], [ 359112.134900003671646, 257046.572399999946356 ], [ 359110.487700000405312, 257046.721799999475479 ], [ 359111.363799996674061, 257064.479600001126528 ], [ 359096.255699999630451, 257065.053700000047684 ], [ 359097.184199996292591, 257078.182300001382828 ], [ 359108.718599997460842, 257077.077300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92818052, "LATITUDE": 18.34299132, "OBJECTID_1": 12152, "PARCEL_NO_": "105401471800", "Tax_Legal_": "DRONNINGENS GADE 49B KINGS QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8000, "Improved_V": 49800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.217255937199994, "SHAPE_Area": 383.59768689499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359097.022299997508526, 257078.197799999266863 ], [ 359097.184199996292591, 257078.182300001382828 ], [ 359096.255699999630451, 257065.053700000047684 ], [ 359095.058300003409386, 257048.121100001037121 ], [ 359082.193000003695488, 257049.287799999117851 ], [ 359084.23650000244379, 257078.428599998354912 ], [ 359097.022299997508526, 257078.197799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105401512500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92531448, "LATITUDE": 18.34299954, "OBJECTID_1": 12272, "PARCEL_NO_": "105401512500", "Tax_Legal_": "PRINSENS GADE 8AA-1 KINGS QUARTER", "Name": "GOMEZ, RICHARD V. & AASA A.", "Address": "PO Box 10736", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6500, "Improved_V": 60600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.951099141200004, "SHAPE_Area": 240.446593334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359397.326700001955032, 257078.338199999183416 ], [ 359398.380699999630451, 257055.379700001329184 ], [ 359387.728200003504753, 257055.590799998492002 ], [ 359387.270900003612041, 257070.881599999964237 ], [ 359387.03999999910593, 257078.604200001806021 ], [ 359388.870999999344349, 257078.55689999833703 ], [ 359397.326700001955032, 257078.338199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401513900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92573941000001, "LATITUDE": 18.34304324, "OBJECTID_1": 12287, "PARCEL_NO_": "105401513900", "Tax_Legal_": "PRINDSENS GADE 10B KINGS QUARTER", "Name": "TURNBULL, WALLACE & LOUISA", "Address": "PO Box 304324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3300, "Improved_V": 89800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.573646832800002, "SHAPE_Area": 129.016600119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359352.378899998962879, 257079.2516999989748 ], [ 359350.807199999690056, 257063.051199998706579 ], [ 359348.854999996721745, 257063.08390000090003 ], [ 359344.814699999988079, 257063.151700001209974 ], [ 359343.12049999833107, 257063.180100001394749 ], [ 359343.619199998676777, 257069.666799999773502 ], [ 359344.215800002217293, 257077.428800001740456 ], [ 359344.393399998545647, 257079.739100001752377 ], [ 359346.299300000071526, 257079.679200001060963 ], [ 359352.378899998962879, 257079.2516999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502900", "MAP": null, "PARCEL_NAM": "54C DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92730619, "LATITUDE": 18.34309432, "OBJECTID_1": 12228, "PARCEL_NO_": "105401502900", "Tax_Legal_": "DRONNINGENS GADE 54A,B&C KINGS QTR", "Name": "N. CARIB. CONF. OF 7TH DAY ADV", "Address": "PO Box 886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 75200, "Improved_V": 64200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.008378157099997, "SHAPE_Area": 142.86644288100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359191.394100002944469, 257078.032200001180172 ], [ 359192.559600003063679, 257077.921300001442432 ], [ 359192.377300001680851, 257076.047899998724461 ], [ 359191.885899998247623, 257070.997400000691414 ], [ 359190.615900002419949, 257071.126400001347065 ], [ 359171.546899996697903, 257073.424100000411272 ], [ 359172.102899998426437, 257080.367400001734495 ], [ 359191.394100002944469, 257078.032200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92829877, "LATITUDE": 18.3430032, "OBJECTID_1": 12151, "PARCEL_NO_": "105401471700", "Tax_Legal_": "DRONNINGENS GADE 49A KINGS QUARTER", "Name": "BANFIELD, CLIVE E. C. , TRUSTEE", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7800, "Improved_V": 62600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.970935116000007, "SHAPE_Area": 356.03161554899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359072.589900001883507, 257079.927600000053644 ], [ 359084.23650000244379, 257078.428599998354912 ], [ 359082.193000003695488, 257049.287799999117851 ], [ 359070.393899999558926, 257050.357900001108646 ], [ 359071.697200000286102, 257067.907499998807907 ], [ 359070.941200003027916, 257068.017200000584126 ], [ 359071.833200000226498, 257080.027399998158216 ], [ 359072.589900001883507, 257079.927600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401360900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93134917, "LATITUDE": 18.34308034, "OBJECTID_1": 12027, "PARCEL_NO_": "105401360900", "Tax_Legal_": "5 COMMANDANT GADE O. V. QUEENS QUARTER", "Name": "RICHARD L OBYMACHOW REVOCABLE LIVING TRUST", "Address": "2315 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62700, "Improved_V": 145300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.817410028099999, "SHAPE_Area": 454.83204524400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358772.279700003564358, 257064.998799998313189 ], [ 358752.114399999380112, 257062.038499999791384 ], [ 358742.1841000020504, 257060.580800000578165 ], [ 358740.382799997925758, 257077.684500001370907 ], [ 358753.306699998676777, 257079.124800000339746 ], [ 358765.373400002717972, 257080.4695999994874 ], [ 358766.179300002753735, 257077.374499998986721 ], [ 358767.218599997460842, 257074.349700000137091 ], [ 358768.485200002789497, 257071.412900000810623 ], [ 358769.971799999475479, 257068.5810999982059 ], [ 358771.669699996709824, 257065.870700001716614 ], [ 358772.279700003564358, 257064.998799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401302900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93060749, "LATITUDE": 18.34297988, "OBJECTID_1": 11936, "PARCEL_NO_": "105401302900", "Tax_Legal_": "COMMANDANT GADE 4C KINGS QUARTER", "Name": "FOSTER HOUSE INC", "Address": "PO Box 502097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 176900, "Improved_V": 513000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.44913810200001, "SHAPE_Area": 828.31249050600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358857.530799999833107, 257061.028499998152256 ], [ 358855.702100001275539, 257052.780999999493361 ], [ 358836.464900001883507, 257049.972800001502037 ], [ 358823.709100000560284, 257049.361699998378754 ], [ 358819.174699999392033, 257049.144400000572205 ], [ 358810.8175999969244, 257048.743999999016523 ], [ 358810.740500003099442, 257057.788800001144409 ], [ 358810.678000003099442, 257065.128800000995398 ], [ 358828.690700002014637, 257063.821899998933077 ], [ 358829.467500001192093, 257075.377300001680851 ], [ 358830.478000000119209, 257080.589200001209974 ], [ 358834.696400001645088, 257077.663100000470877 ], [ 358838.784400001168251, 257074.557700000703335 ], [ 358842.734600000083447, 257071.278599999845028 ], [ 358846.539499998092651, 257067.831999998539686 ], [ 358848.650200001895428, 257066.003100000321865 ], [ 358850.912399999797344, 257064.365200001746416 ], [ 358853.308799996972084, 257062.930799998342991 ], [ 358855.821099996566772, 257061.710700001567602 ], [ 358857.530799999833107, 257061.028499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401512300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9254182, "LATITUDE": 18.34307961, "OBJECTID_1": 12270, "PARCEL_NO_": "105401512300", "Tax_Legal_": "PRINDSENS GADE 9D KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.332624361999997, "SHAPE_Area": 134.36237391200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359386.935300000011921, 257082.104800000786781 ], [ 359387.03999999910593, 257078.604200001806021 ], [ 359387.270900003612041, 257070.881599999964237 ], [ 359378.167900003492832, 257068.85359999909997 ], [ 359375.422200001776218, 257068.126499999314547 ], [ 359377.55629999935627, 257082.518899999558926 ], [ 359386.935300000011921, 257082.104800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401512100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92551118, "LATITUDE": 18.34307365, "OBJECTID_1": 12268, "PARCEL_NO_": "105401512100", "Tax_Legal_": "PRINDSENS GADE 9C KINGS QTR", "Name": "AFF REALTY INCORPORATED", "Address": "PO Box 6226", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33310, "Country": "United States", "Land_Value": 2900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.753646341200003, "SHAPE_Area": 143.291184972 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359377.55629999935627, 257082.518899999558926 ], [ 359375.422200001776218, 257068.126499999314547 ], [ 359369.790600001811981, 257066.602800000458956 ], [ 359366.287600003182888, 257066.503600001335144 ], [ 359368.242499999701977, 257082.93019999936223 ], [ 359377.55629999935627, 257082.518899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401331200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.928467, "LATITUDE": 18.34310392, "OBJECTID_1": 11980, "PARCEL_NO_": "105401331200", "Tax_Legal_": "DRONNINGENS GADE 48A KINGS QUARTER", "Name": "WALCOTT, N", "Address": "PO Box 1395", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 5100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.767428989099997, "SHAPE_Area": 291.20647934 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359071.076499998569489, 257080.127199999988079 ], [ 359071.833200000226498, 257080.027399998158216 ], [ 359070.941200003027916, 257068.017200000584126 ], [ 359070.185300000011921, 257068.126899998635054 ], [ 359046.761699996888638, 257071.525299999862909 ], [ 359047.612000003457069, 257083.339600000530481 ], [ 359071.076499998569489, 257080.127199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401331100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92865959, "LATITUDE": 18.34304461, "OBJECTID_1": 11979, "PARCEL_NO_": "105401331100", "Tax_Legal_": "DRONNINGENS GADE 47 KINGS QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.405766813200003, "SHAPE_Area": 467.78571151699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359039.524700000882149, 257084.446800000965595 ], [ 359047.612000003457069, 257083.339600000530481 ], [ 359046.761699996888638, 257071.525299999862909 ], [ 359045.401299998164177, 257052.624400001019239 ], [ 359030.877999998629093, 257053.941500000655651 ], [ 359032.257399998605251, 257085.441700000315905 ], [ 359039.524700000882149, 257084.446800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401511500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92428326, "LATITUDE": 18.34305232, "OBJECTID_1": 12259, "PARCEL_NO_": "105401511500", "Tax_Legal_": "PRINDSENS GADE 1&2 KINGS QTR", "Name": "HOBSON, ANTHONY (Trustee)", "Address": "1590 Prindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8024721, "Country": "United States", "Land_Value": 10400, "Improved_V": 40700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.357379627200004, "SHAPE_Area": 421.82505678400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359507.176100000739098, 257083.824999999254942 ], [ 359508.123000003397465, 257083.602299999445677 ], [ 359509.23929999768734, 257083.115899998694658 ], [ 359510.236699998378754, 257082.417399998754263 ], [ 359511.075400002300739, 257081.534499999135733 ], [ 359511.721799999475479, 257080.502599999308586 ], [ 359512.1503000035882, 257079.362799998372793 ], [ 359512.343699999153614, 257078.160599999129772 ], [ 359512.294299997389317, 257076.943900000303984 ], [ 359512.145099997520447, 257075.880399998277426 ], [ 359511.998700000345707, 257074.816500000655651 ], [ 359511.854900002479553, 257073.752300001680851 ], [ 359511.713899999856949, 257072.687699999660254 ], [ 359510.292700000107288, 257061.852400001138449 ], [ 359490.718000002205372, 257064.334699999541044 ], [ 359490.679099999368191, 257064.339699998497963 ], [ 359493.00280000269413, 257085.773499999195337 ], [ 359496.551299996674061, 257085.32490000128746 ], [ 359500.096500001847744, 257084.850499998778105 ], [ 359503.638099998235703, 257084.350600000470877 ], [ 359507.176100000739098, 257083.824999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401302100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93017413, "LATITUDE": 18.34312212, "OBJECTID_1": 11928, "PARCEL_NO_": "105401302100", "Tax_Legal_": "DRONNINGENS GADE 34 KINGS QUARTER", "Name": "MICHELE SHULTERBRANDT AGURKIS TRUST", "Address": "P.O. BOX 5325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23000, "Improved_V": 98500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.863591102399994, "SHAPE_Area": 511.97293104599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358891.653200000524521, 257066.194400001317263 ], [ 358868.007399998605251, 257066.70380000025034 ], [ 358867.125500001013279, 257066.738699998706579 ], [ 358866.245399996638298, 257066.805599998682737 ], [ 358865.368400000035763, 257066.90430000051856 ], [ 358864.49549999833107, 257067.034600000828505 ], [ 358867.517200000584126, 257086.374899998307228 ], [ 358891.236599996685982, 257086.568999998271465 ], [ 358891.531999997794628, 257081.480900000780821 ], [ 358891.700000002980232, 257076.386900000274181 ], [ 358891.74040000140667, 257071.290399998426437 ], [ 358891.653200000524521, 257066.194400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401511400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92442064, "LATITUDE": 18.34307268, "OBJECTID_1": 12258, "PARCEL_NO_": "105401511400", "Tax_Legal_": "PRINDSENS GADE 3 KINGS QUARTER", "Name": "FAULKNER, LEONARD", "Address": "PO Box 111", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6200, "Improved_V": 14900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.477551093099997, "SHAPE_Area": 209.40128078699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359493.00280000269413, 257085.773499999195337 ], [ 359490.679099999368191, 257064.339699998497963 ], [ 359482.210400000214577, 257065.413600001484156 ], [ 359481.404700003564358, 257065.515799999237061 ], [ 359482.940499998629093, 257086.904399998486042 ], [ 359485.458200000226498, 257086.640999998897314 ], [ 359487.974600002169609, 257086.364700000733137 ], [ 359490.489500001072884, 257086.075599998235703 ], [ 359493.00280000269413, 257085.773499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401302500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93072474, "LATITUDE": 18.34310896, "OBJECTID_1": 11932, "PARCEL_NO_": "105401302500", "Tax_Legal_": "COMMANDANT GADE 4CA KINGS QTR", "Name": "BUNKER HILL VIEW INC.", "Address": "7A COMMANDANT GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50800, "Improved_V": 688300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.088484132100007, "SHAPE_Area": 347.31656956500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358830.478000000119209, 257080.589200001209974 ], [ 358829.467500001192093, 257075.377300001680851 ], [ 358828.690700002014637, 257063.821899998933077 ], [ 358810.678000003099442, 257065.128800000995398 ], [ 358811.313299998641014, 257074.076900001615286 ], [ 358812.792199999094009, 257077.364000000059605 ], [ 358816.137500002980232, 257084.799400001764297 ], [ 358817.582400001585484, 257088.010999999940395 ], [ 358820.89190000295639, 257086.307900000363588 ], [ 358824.146499998867512, 257084.502000000327826 ], [ 358827.3429000005126, 257082.595199998468161 ], [ 358830.478000000119209, 257080.589200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107104020700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95054943, "LATITUDE": 18.31946456, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 12.523549107, "SHAPE_Area": 7.23362062105 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356745.252300001680851, 254442.8412000015378 ], [ 356747.685599997639656, 254441.172400001436472 ], [ 356747.701800003647804, 254439.272700000554323 ], [ 356746.10360000282526, 254437.570900000631809 ], [ 356745.252300001680851, 254442.8412000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303340200", "MAP": "D9-8291-T009", "PARCEL_NAM": "1A", "ACRE": "1.74", "LONGITUDE": -64.94101357, "LATITUDE": 18.33583981, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.310493968, "SHAPE_Area": 5818.9001026799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357756.723200000822544, 256318.848400000482798 ], [ 357773.515399999916553, 256291.306499999016523 ], [ 357781.071900002658367, 256284.03319999948144 ], [ 357778.947800002992153, 256249.396499998867512 ], [ 357773.269500002264977, 256253.360800001770258 ], [ 357772.565700002014637, 256241.322700001299381 ], [ 357758.15990000218153, 256228.539200000464916 ], [ 357730.861000001430511, 256203.874600000679493 ], [ 357687.398299999535084, 256259.338500000536442 ], [ 357718.960600003600121, 256286.480200000107288 ], [ 357756.723200000822544, 256318.848400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303340400", "MAP": "D9-8291-T009", "PARCEL_NAM": "1B", "ACRE": ".63", "LONGITUDE": -64.94049336, "LATITUDE": 18.33624414, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.70811530700001, "SHAPE_Area": 1248.59825342 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357790.290200002491474, 256346.203200001269579 ], [ 357798.733900003135204, 256341.445700000971556 ], [ 357803.174699999392033, 256339.847500000149012 ], [ 357803.197300001978874, 256337.198800001293421 ], [ 357805.652199998497963, 256332.997000001370907 ], [ 357805.695299997925758, 256327.931099999696016 ], [ 357804.167199999094009, 256317.99720000103116 ], [ 357805.824799999594688, 256312.733399998396635 ], [ 357805.8716000020504, 256307.245400000363588 ], [ 357807.543499998748302, 256300.293000001460314 ], [ 357807.58049999922514, 256295.951400000602007 ], [ 357807.608300000429153, 256292.694099999964237 ], [ 357805.266599997878075, 256283.597899999469519 ], [ 357805.309799998998642, 256278.532000001519918 ], [ 357805.578000001609325, 256277.914799999445677 ], [ 357806.132299996912479, 256276.638900000602007 ], [ 357794.026799999177456, 256277.806400001049042 ], [ 357781.071900002658367, 256284.03319999948144 ], [ 357773.515399999916553, 256291.306499999016523 ], [ 357768.942500002682209, 256298.80689999833703 ], [ 357768.899999998509884, 256298.876600001007318 ], [ 357794.253300003707409, 256302.494899999350309 ], [ 357793.807099997997284, 256322.278299998492002 ], [ 357784.603500001132488, 256342.746100001037121 ], [ 357790.290200002491474, 256346.203200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "1053321009", "MAP": "D9-8034-T007", "PARCEL_NAM": "30B-1", "ACRE": ".165", "LONGITUDE": -64.94157983, "LATITUDE": 18.3366546, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.81034034800001, "SHAPE_Area": 679.79079420699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357693.389499999582767, 256353.820799998939037 ], [ 357694.321199998259544, 256350.891100000590086 ], [ 357693.356200002133846, 256332.788199998438358 ], [ 357683.98369999974966, 256328.690799999982119 ], [ 357683.478500001132488, 256336.212900001555681 ], [ 357679.0287000015378, 256341.015299998223782 ], [ 357678.674500003457069, 256347.245099999010563 ], [ 357669.47410000115633, 256346.868599999696016 ], [ 357666.516699999570847, 256349.860300000756979 ], [ 357662.469800002872944, 256350.028400000184774 ], [ 357657.538900002837181, 256346.97239999845624 ], [ 357652.491400003433228, 256345.825500000268221 ], [ 357651.096799999475479, 256343.200399998575449 ], [ 357646.171099998056889, 256340.192099999636412 ], [ 357645.888999998569489, 256344.988299999386072 ], [ 357649.255999997258186, 256345.698600001633167 ], [ 357649.126199997961521, 256349.215999998152256 ], [ 357666.682099997997284, 256354.385400000959635 ], [ 357679.554799996316433, 256363.33669999986887 ], [ 357681.615500003099442, 256371.094099998474121 ], [ 357682.617799997329712, 256378.581599999219179 ], [ 357683.5033999979496, 256378.437800001353025 ], [ 357687.534999996423721, 256378.470800001174212 ], [ 357684.509300000965595, 256355.014699999243021 ], [ 357693.389499999582767, 256353.820799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "1053321009", "MAP": "D9-8034-T007", "PARCEL_NAM": "30B", "ACRE": ".178", "LONGITUDE": -64.94171249, "LATITUDE": 18.33652978, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.53349614699999, "SHAPE_Area": 697.78064735400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357666.516699999570847, 256349.860300000756979 ], [ 357669.47410000115633, 256346.868599999696016 ], [ 357678.674500003457069, 256347.245099999010563 ], [ 357679.0287000015378, 256341.015299998223782 ], [ 357683.478500001132488, 256336.212900001555681 ], [ 357683.98369999974966, 256328.690799999982119 ], [ 357680.869099996984005, 256326.152199998497963 ], [ 357664.396200001239777, 256324.610599998384714 ], [ 357663.961800001561642, 256329.723900001496077 ], [ 357647.8766999989748, 256327.264899998903275 ], [ 357646.899099998176098, 256327.143699999898672 ], [ 357646.832000002264977, 256328.952899999916553 ], [ 357646.171099998056889, 256340.192099999636412 ], [ 357651.096799999475479, 256343.200399998575449 ], [ 357652.491400003433228, 256345.825500000268221 ], [ 357657.538900002837181, 256346.97239999845624 ], [ 357662.469800002872944, 256350.028400000184774 ], [ 357666.516699999570847, 256349.860300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501021700", "MAP": "D9-8514-T010", "PARCEL_NAM": null, "ACRE": ".003", "LONGITUDE": -64.91331267, "LATITUDE": 18.34263778, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.441374760599999, "SHAPE_Area": 24.200707841300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360657.940099999308586, 257040.531100001186132 ], [ 360667.915500000119209, 257036.144499998539686 ], [ 360658.566200003027916, 257035.4037000015378 ], [ 360657.940099999308586, 257040.531100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303273200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94118608, "LATITUDE": 18.33723048, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.242223663199994, "SHAPE_Area": 291.64936895099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357711.881099998950958, 256404.242800001055002 ], [ 357708.429399996995926, 256417.199599999934435 ], [ 357729.868500001728535, 256425.891199998557568 ], [ 357729.189900003373623, 256410.897999998182058 ], [ 357728.917400002479553, 256407.238699998706579 ], [ 357716.640000000596046, 256407.448600001633167 ], [ 357714.20549999922514, 256405.945000000298023 ], [ 357711.881099998950958, 256404.242800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303306000", "MAP": "D9-7935-T007", "PARCEL_NAM": "5K", "ACRE": ".02", "LONGITUDE": -64.94431029, "LATITUDE": 18.33524567, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.621672782700003, "SHAPE_Area": 134.42315615699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357384.351000003516674, 256187.905099999159575 ], [ 357380.63400000333786, 256187.26799999922514 ], [ 357380.63400000333786, 256194.8614999987185 ], [ 357392.116899996995926, 256194.491099998354912 ], [ 357405.451899997889996, 256196.528400000184774 ], [ 357406.083700001239777, 256192.515900000929832 ], [ 357384.351000003516674, 256187.905099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501021300", "MAP": null, "PARCEL_NAM": "52C-A", "ACRE": null, "LONGITUDE": -64.91306464, "LATITUDE": 18.34045839, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.58290560099999, "SHAPE_Area": 3858.6597299599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360712.88289999961853, 256758.589299999177456 ], [ 360659.146300002932549, 256763.381099998950958 ], [ 360666.411100000143051, 256834.115699999034405 ], [ 360669.630900003015995, 256834.775299999862909 ], [ 360713.222199998795986, 256829.221400000154972 ], [ 360718.076200000941753, 256827.361299999058247 ], [ 360720.520300000905991, 256824.425999999046326 ], [ 360712.88289999961853, 256758.589299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501021700", "MAP": "D9-8340-T009", "PARCEL_NAM": "62-1", "ACRE": "1.56", "LONGITUDE": -64.9138938, "LATITUDE": 18.34284647, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.96701656499999, "SHAPE_Area": 6450.8334161599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360542.452299997210503, 257079.323399998247623 ], [ 360541.881899997591972, 257084.831799998879433 ], [ 360651.531900003552437, 257093.195000000298023 ], [ 360652.11599999666214, 257088.224199999123812 ], [ 360658.566200003027916, 257035.4037000015378 ], [ 360547.634499996900558, 257026.614100001752377 ], [ 360542.452299997210503, 257079.323399998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501023200", "MAP": "D9-8514-T011", "PARCEL_NAM": "62-2", "ACRE": ".24", "LONGITUDE": -64.91451932, "LATITUDE": 18.34273951, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.10613621499999, "SHAPE_Area": 1124.97922434 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360518.381700001657009, 257049.357700001448393 ], [ 360541.881899997591972, 257084.831799998879433 ], [ 360542.452299997210503, 257079.323399998247623 ], [ 360547.634499996900558, 257026.614100001752377 ], [ 360520.651199996471405, 257024.475999999791384 ], [ 360518.381700001657009, 257049.357700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105501023400", "MAP": "D9-8624-T012", "PARCEL_NAM": "62-3A", "ACRE": "1.350", "LONGITUDE": -64.91497522, "LATITUDE": 18.34279068, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.31582390800003, "SHAPE_Area": 4741.1211574099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360447.628300003707409, 257018.690099999308586 ], [ 360442.430399999022484, 257077.246599998325109 ], [ 360541.881899997591972, 257084.831799998879433 ], [ 360518.381700001657009, 257049.357700001448393 ], [ 360520.651199996471405, 257024.475999999791384 ], [ 360447.628300003707409, 257018.690099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404031000", "MAP": null, "PARCEL_NAM": null, "ACRE": "0.156", "LONGITUDE": -64.92223242, "LATITUDE": 18.33909594, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.867459936800003, "SHAPE_Area": 112.88551796500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359740.340800002217293, 256633.58559999987483 ], [ 359726.361400000751019, 256635.414700001478195 ], [ 359726.383900001645088, 256632.807500001043081 ], [ 359709.113099999725819, 256638.28770000115037 ], [ 359716.898599997162819, 256642.631400000303984 ], [ 359740.340800002217293, 256633.58559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404040400", "MAP": "D9-7432-T004", "PARCEL_NAM": "1A-1", "ACRE": ".278", "LONGITUDE": -64.92069498, "LATITUDE": 18.33962538, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.81449667499999, "SHAPE_Area": 1121.5585854799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359874.05629999935627, 256718.901700001209974 ], [ 359892.673900000751019, 256704.010800000280142 ], [ 359910.656499996781349, 256689.62779999896884 ], [ 359896.297100000083447, 256672.675999999046326 ], [ 359862.731499999761581, 256699.585400000214577 ], [ 359865.273100003600121, 256725.926699999719858 ], [ 359874.05629999935627, 256718.901700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105403010200", "MAP": null, "PARCEL_NAM": "COAST GUARD BUILDING", "ACRE": null, "LONGITUDE": -64.93012405, "LATITUDE": 18.33983019, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.782895768, "SHAPE_Area": 1836.50832036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358903.692900002002716, 256737.625199999660254 ], [ 358901.769000001251698, 256682.719999998807907 ], [ 358867.282200001180172, 256684.0945999994874 ], [ 358876.812600001692772, 256743.806600000709295 ], [ 358880.706900000572205, 256743.854899998754263 ], [ 358884.598899997770786, 256743.997600000351667 ], [ 358888.486299999058247, 256744.234600000083447 ], [ 358892.366800002753735, 256744.565900001674891 ], [ 358903.692900002002716, 256737.625199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401450700", "MAP": null, "PARCEL_NAM": "TOLBOD PLASDEN (Fire Station)", "ACRE": null, "LONGITUDE": -64.93001256, "LATITUDE": 18.34049334, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.794373273299996, "SHAPE_Area": 233.952833849 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358904.128700003027916, 256798.394099999219179 ], [ 358901.985799998044968, 256779.692800000309944 ], [ 358901.008599996566772, 256771.165399998426437 ], [ 358892.121100001037121, 256773.203600000590086 ], [ 358896.212600000202656, 256800.071299999952316 ], [ 358904.128700003027916, 256798.394099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401450700", "MAP": null, "PARCEL_NAM": "TOLBOD PLASDEN (Fire Station)", "ACRE": null, "LONGITUDE": -64.92998617000001, "LATITUDE": 18.34067179, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.117442730999997, "SHAPE_Area": 95.575919322100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358904.128700003027916, 256798.394099999219179 ], [ 358896.212600000202656, 256800.071299999952316 ], [ 358898.053199999034405, 256812.158500000834465 ], [ 358905.512000001966953, 256810.465700000524521 ], [ 358904.128700003027916, 256798.394099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401460700", "MAP": null, "PARCEL_NAM": "1B FORTETS STRAEDE", "ACRE": "8,467 sq ft", "LONGITUDE": -64.9290456, "LATITUDE": 18.34074751, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.1579154593, "SHAPE_Area": 430.89097953200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359011.444700002670288, 256824.314599998295307 ], [ 359009.067100003361702, 256802.771299999207258 ], [ 358990.302699998021126, 256804.111900001764297 ], [ 358990.311200000345707, 256825.610300000756979 ], [ 359011.444700002670288, 256824.314599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401450700", "MAP": null, "PARCEL_NAM": "TOLBOD PLASDEN (Fire Station)", "ACRE": null, "LONGITUDE": -64.93004928000001, "LATITUDE": 18.34074536, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.483668155199993, "SHAPE_Area": 199.395024861 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358900.039599999785423, 256825.202799998223782 ], [ 358898.053199999034405, 256812.158500000834465 ], [ 358896.212600000202656, 256800.071299999952316 ], [ 358888.587300002574921, 256801.686799999326468 ], [ 358890.671700000762939, 256817.709899999201298 ], [ 358891.009300000965595, 256819.859600000083447 ], [ 358891.460199996829033, 256821.988400001078844 ], [ 358892.022900000214577, 256824.090399999171495 ], [ 358892.696000002324581, 256826.159699998795986 ], [ 358900.039599999785423, 256825.202799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401450700", "MAP": null, "PARCEL_NAM": "TOLBOD PLASDEN (Fort Christian)", "ACRE": null, "LONGITUDE": -64.92972004000001, "LATITUDE": 18.34060828, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.52861535599999, "SHAPE_Area": 2889.94337567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358954.019400000572205, 256772.41499999910593 ], [ 358953.796899996697903, 256771.08729999884963 ], [ 358946.198600001633167, 256770.086899999529123 ], [ 358939.899999998509884, 256771.951099999248981 ], [ 358939.704300001263618, 256775.193799998611212 ], [ 358921.555200003087521, 256772.483800001442432 ], [ 358922.401100002229214, 256767.846599999815226 ], [ 358905.278999999165535, 256762.119899999350309 ], [ 358907.209700003266335, 256779.389899998903275 ], [ 358901.985799998044968, 256779.692800000309944 ], [ 358904.128700003027916, 256798.394099999219179 ], [ 358905.512000001966953, 256810.465700000524521 ], [ 358898.053199999034405, 256812.158500000834465 ], [ 358900.039599999785423, 256825.202799998223782 ], [ 358925.206000000238419, 256821.923799999058247 ], [ 358939.476099997758865, 256825.379799999296665 ], [ 358939.432899996638298, 256828.334699999541044 ], [ 358954.520700000226498, 256830.960999999195337 ], [ 358955.198299996554852, 256827.763199999928474 ], [ 358956.546899996697903, 256821.398899998515844 ], [ 358954.019400000572205, 256772.41499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401590900", "MAP": null, "PARCEL_NAM": "27D NORRE GADE", "ACRE": "993 sq ft", "LONGITUDE": -64.92672897, "LATITUDE": 18.34092388, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.634587722900001, "SHAPE_Area": 90.693632356799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359252.047399997711182, 256838.728000000119209 ], [ 359251.575300000607967, 256832.065499998629093 ], [ 359237.943800002336502, 256833.219200000166893 ], [ 359238.379900000989437, 256839.77250000089407 ], [ 359252.047399997711182, 256838.728000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401450700", "MAP": null, "PARCEL_NAM": "TOLBOD PLASDEN (Vendors Plaza)", "ACRE": null, "LONGITUDE": -64.93041609, "LATITUDE": 18.34063101, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.47541063, "SHAPE_Area": 1264.5159180799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358824.945000000298023, 256819.266399998217821 ], [ 358878.659500002861023, 256809.77589999884367 ], [ 358872.994499996304512, 256776.333099998533726 ], [ 358872.882200002670288, 256775.820300001651049 ], [ 358872.513300001621246, 256775.043499998748302 ], [ 358871.942199997603893, 256774.400600001215935 ], [ 358871.214199997484684, 256773.942899998277426 ], [ 358870.387299999594688, 256773.706700000911951 ], [ 358869.527400001883507, 256773.710900001227856 ], [ 358868.702799998223782, 256773.955099999904633 ], [ 358867.979299999773502, 256774.419900000095367 ], [ 358837.054799996316433, 256801.137499999254942 ], [ 358834.670500002801418, 256803.096700001507998 ], [ 358832.192400000989437, 256804.935899998992682 ], [ 358829.626400001347065, 256806.650400001555681 ], [ 358826.979000002145767, 256808.236200001090765 ], [ 358826.657499998807907, 256808.431400001049042 ], [ 358825.708200000226498, 256809.193900000303984 ], [ 358824.929300002753735, 256810.129999998956919 ], [ 358824.352099999785423, 256811.202100001275539 ], [ 358823.999399997293949, 256812.367600001394749 ], [ 358823.885399997234344, 256813.579900000244379 ], [ 358824.014600001275539, 256814.790699999779463 ], [ 358824.945000000298023, 256819.266399998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401460600", "MAP": null, "PARCEL_NAM": "1BA FORTETS STRAEDE", "ACRE": null, "LONGITUDE": -64.92906334, "LATITUDE": 18.34094394, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.754225515, "SHAPE_Area": 653.61083505299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359014.229099996387959, 256849.543299999088049 ], [ 359011.444700002670288, 256824.314599998295307 ], [ 358990.311200000345707, 256825.610300000756979 ], [ 358967.285499997437, 256827.022100001573563 ], [ 358967.726899996399879, 256831.785799998790026 ], [ 358990.752499997615814, 256830.374000001698732 ], [ 358992.6587999984622, 256850.947200000286102 ], [ 359014.229099996387959, 256849.543299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401460500", "MAP": null, "PARCEL_NAM": "1A FORTETS STRAEDE", "ACRE": "7,257 sq ft", "LONGITUDE": -64.92923386, "LATITUDE": 18.34099272, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.544561221899997, "SHAPE_Area": 477.40171226000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358992.6587999984622, 256850.947200000286102 ], [ 358990.752499997615814, 256830.374000001698732 ], [ 358967.726899996399879, 256831.785799998790026 ], [ 358969.641099996864796, 256852.445300001651049 ], [ 358992.6587999984622, 256850.947200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401441300", "MAP": null, "PARCEL_NAM": "48B NORRE GADE", "ACRE": "9,375 sq ft", "LONGITUDE": -64.93091504, "LATITUDE": 18.34094105, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.687239742, "SHAPE_Area": 938.96738820899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358818.963699996471405, 256850.157900001853704 ], [ 358812.491599999368191, 256819.243000000715256 ], [ 358812.482699997723103, 256819.201099999248981 ], [ 358812.107199996709824, 256818.04280000180006 ], [ 358811.509099997580051, 256816.982200000435114 ], [ 358810.711999997496605, 256816.061599999666214 ], [ 358809.747900001704693, 256815.317800000309944 ], [ 358808.655199997127056, 256814.7804000005126 ], [ 358807.47749999910593, 256814.471000000834465 ], [ 358799.126199997961521, 256815.700500000268221 ], [ 358796.003100000321865, 256816.116200000047684 ], [ 358792.898199997842312, 256816.651200000196695 ], [ 358789.815999999642372, 256817.304699998348951 ], [ 358786.761200003325939, 256818.075899999588728 ], [ 358793.21169999986887, 256854.153000000864267 ], [ 358818.963699996471405, 256850.157900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401460800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92881046, "LATITUDE": 18.34090937, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.866176916, "SHAPE_Area": 753.16853390699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359035.042099997401237, 256855.389400001615286 ], [ 359031.082699999213219, 256808.791400000452995 ], [ 359014.418399997055531, 256810.318999998271465 ], [ 359018.800599999725819, 256849.245799999684095 ], [ 359019.506800003349781, 256856.806499999016523 ], [ 359035.042099997401237, 256855.389400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401450700", "MAP": null, "PARCEL_NAM": "TOLBOD PLASDEN (Fort Christian)", "ACRE": null, "LONGITUDE": -64.92988683, "LATITUDE": 18.34097651, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.601455283999996, "SHAPE_Area": 504.56068409699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358916.271499998867512, 256854.92509999871254 ], [ 358925.189400002360344, 256826.563099998980761 ], [ 358894.491999998688698, 256830.439399998635054 ], [ 358895.10809999704361, 256831.651500001549721 ], [ 358895.763999998569489, 256832.842500001192093 ], [ 358896.458800002932549, 256834.011199999600649 ], [ 358897.191899999976158, 256835.156399998813868 ], [ 358910.824199996888638, 256855.696299999952316 ], [ 358911.364600002765656, 256856.311500001698732 ], [ 358912.08669999986887, 256856.778400000184774 ], [ 358912.910599999129772, 256857.024900000542402 ], [ 358913.770499996840954, 256857.031500000506639 ], [ 358914.598099999129772, 256856.797699999064207 ], [ 358915.327399998903275, 256856.342000000178814 ], [ 358915.900399997830391, 256855.700800001621246 ], [ 358916.271499998867512, 256854.92509999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401450700", "MAP": null, "PARCEL_NAM": "TOLBOD PLASDEN (Fort Christian)", "ACRE": null, "LONGITUDE": -64.92958354, "LATITUDE": 18.341107, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.167085015, "SHAPE_Area": 1221.3211482300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358956.900700002908707, 256836.015999998897314 ], [ 358931.590199999511242, 256831.610300000756979 ], [ 358923.652699999511242, 256856.854100000113249 ], [ 358923.518700003623962, 256857.353500001132488 ], [ 358923.373199999332428, 256858.5625 ], [ 358923.470899999141693, 256859.776200000196695 ], [ 358923.807899996638298, 256860.946400001645088 ], [ 358924.370700001716614, 256862.026200000196695 ], [ 358924.687700003385544, 256862.536400001496077 ], [ 358924.97919999808073, 256863.061500001698732 ], [ 358925.244400002062321, 256863.600400000810623 ], [ 358925.482799999415874, 256864.151799999177456 ], [ 358925.7753000035882, 256864.773400001227856 ], [ 358926.459100000560284, 256865.780999999493361 ], [ 358927.329499997198582, 256866.632500000298023 ], [ 358928.351800002157688, 256867.294100001454353 ], [ 358929.485200002789497, 256867.73930000141263 ], [ 358956.930100001394749, 256875.460299998521805 ], [ 358958.042400002479553, 256875.811799999326468 ], [ 358959.130000002682209, 256876.233600001782179 ], [ 358960.188500002026558, 256876.723799999803305 ], [ 358961.213500000536442, 256877.280499998480082 ], [ 358956.900700002908707, 256836.015999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102500", "MAP": null, "PARCEL_NAM": "104 TAARNEBERG (Emergency Housing)", "ACRE": "3,544 sq ft", "LONGITUDE": -64.92169613, "LATITUDE": 18.34116195, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.603029631799998, "SHAPE_Area": 260.23739567699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359786.043300002813339, 256853.489900000393391 ], [ 359766.023999996483326, 256863.221599999815226 ], [ 359772.237499997019768, 256873.529199998825788 ], [ 359778.144400000572205, 256883.328400000929832 ], [ 359786.043300002813339, 256853.489900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401450700", "MAP": null, "PARCEL_NAM": "TOLBOD PLASDEN (Emancipation Garden)", "ACRE": null, "LONGITUDE": -64.93034463, "LATITUDE": 18.34119901, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.894440772, "SHAPE_Area": 1936.73404751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358887.011600002646446, 256841.817699998617172 ], [ 358830.71509999781847, 256853.179499998688698 ], [ 358839.00450000166893, 256886.392099998891354 ], [ 358844.4324000030756, 256889.334199998527765 ], [ 358900.661700002849102, 256862.432000000029802 ], [ 358887.011600002646446, 256841.817699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401460400", "MAP": null, "PARCEL_NAM": "39 NORRE GADE", "ACRE": null, "LONGITUDE": -64.92896394, "LATITUDE": 18.34132966, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.43880011, "SHAPE_Area": 1101.0386834400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359023.413000002503395, 256898.629700001329184 ], [ 359019.506800003349781, 256856.806499999016523 ], [ 358993.422200001776218, 256859.1858000010252 ], [ 358994.411899998784065, 256869.867300000041723 ], [ 358995.402500003576279, 256880.558499999344349 ], [ 358997.298699997365475, 256901.023499999195337 ], [ 359023.413000002503395, 256898.629700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102200", "MAP": null, "PARCEL_NAM": "102 TAARNEBERG (Emergency Housing)", "ACRE": "4,594 sq ft", "LONGITUDE": -64.92192143, "LATITUDE": 18.34136133, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.740050838399995, "SHAPE_Area": 490.70428627699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359763.761900000274181, 256896.847800001502037 ], [ 359757.544699996709824, 256878.633900001645088 ], [ 359754.23929999768734, 256868.950399998575449 ], [ 359741.279200002551079, 256876.395799998193979 ], [ 359752.354099996387959, 256910.887200001627207 ], [ 359763.761900000274181, 256896.847800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92186517, "LATITUDE": 18.3415127, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.5057108775, "SHAPE_Area": 47.783466419900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359764.766800001263618, 256899.791900001466274 ], [ 359763.761900000274181, 256896.847800001502037 ], [ 359752.354099996387959, 256910.887200001627207 ], [ 359753.316299997270107, 256913.883900001645088 ], [ 359764.766800001263618, 256899.791900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401441100", "MAP": null, "PARCEL_NAM": "47 NORRE GADE", "ACRE": "2,990 sq ft", "LONGITUDE": -64.93070769000001, "LATITUDE": 18.34158445, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.664655328199999, "SHAPE_Area": 164.90132777299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358831.062100000679493, 256907.948100000619888 ], [ 358828.821400001645088, 256897.245099999010563 ], [ 358818.542700000107288, 256899.175900001078844 ], [ 358818.396899998188019, 256916.284099999815226 ], [ 358831.062100000679493, 256907.948100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92198484, "LATITUDE": 18.34144937, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.784898067100002, "SHAPE_Area": 195.508375132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359754.79110000282526, 256918.477000001817942 ], [ 359753.316299997270107, 256913.883900001645088 ], [ 359752.354099996387959, 256910.887200001627207 ], [ 359741.279200002551079, 256876.395799998193979 ], [ 359737.222900003194809, 256878.726100001484156 ], [ 359744.543700002133846, 256901.098900001496077 ], [ 359750.77080000191927, 256920.129000000655651 ], [ 359754.79110000282526, 256918.477000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401441000", "MAP": null, "PARCEL_NAM": "48AA NORRE GADE", "ACRE": "13,500 sq ft", "LONGITUDE": -64.93090408, "LATITUDE": 18.34150308, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.13790093399999, "SHAPE_Area": 2052.6737649199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358791.350400000810623, 256929.155499998480082 ], [ 358807.505199998617172, 256923.4527000002563 ], [ 358818.396899998188019, 256916.284099999815226 ], [ 358818.542700000107288, 256899.175900001078844 ], [ 358828.821400001645088, 256897.245099999010563 ], [ 358822.598800003528595, 256867.521699998527765 ], [ 358792.738399997353554, 256874.333500001579523 ], [ 358791.176100000739098, 256868.410100001841784 ], [ 358783.696800000965595, 256870.107599999755621 ], [ 358785.493600003421307, 256930.6418999992311 ], [ 358786.978000000119209, 256930.354400001466274 ], [ 358788.450400002300739, 256930.010499998927116 ], [ 358789.908600002527237, 256929.610599998384714 ], [ 358791.350400000810623, 256929.155499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401560600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92682471000001, "LATITUDE": 18.34213856, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 26.8098234932, "SHAPE_Area": 36.303585750800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359238.728399999439716, 256971.873399998992682 ], [ 359238.549500003457069, 256968.221000000834465 ], [ 359228.896700002253056, 256968.623100001364946 ], [ 359229.13400000333786, 256972.493299998342991 ], [ 359238.728399999439716, 256971.873399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401054060", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92600377, "LATITUDE": 18.34221322, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.400515782399999, "SHAPE_Area": 100.760225773 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359325.4966000020504, 256984.504900000989437 ], [ 359324.414700001478195, 256973.227899998426437 ], [ 359322.185599997639656, 256973.478199999779463 ], [ 359319.955600000917912, 256973.720300000160933 ], [ 359317.7246999964118, 256973.9543999992311 ], [ 359315.493100002408028, 256974.180300001055002 ], [ 359316.429999999701977, 256985.150199998170137 ], [ 359325.4966000020504, 256984.504900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401391500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93137281, "LATITUDE": 18.34230727, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.110604692300001, "SHAPE_Area": 54.170415967700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358747.804099999368191, 256982.143100000917912 ], [ 358747.759099997580051, 256987.419900000095367 ], [ 358758.030900001525879, 256987.907400000840425 ], [ 358758.075699999928474, 256982.640999998897314 ], [ 358747.804099999368191, 256982.143100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401400200", "MAP": "D9-8803-T013", "PARCEL_NAM": "3 NORRE GADE", "ACRE": "8,605 sq ft", "LONGITUDE": -64.93038771000001, "LATITUDE": 18.34215621, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.368867329, "SHAPE_Area": 901.67016318799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358868.146799996495247, 256974.318300001323223 ], [ 358865.703699998557568, 256946.838199999183416 ], [ 358864.936499997973442, 256946.912200000137091 ], [ 358845.149099998176098, 256948.820500001311302 ], [ 358845.041299998760223, 256952.147199999541044 ], [ 358848.258799999952316, 256990.314699999988079 ], [ 358869.497299998998642, 256990.521699998527765 ], [ 358868.146799996495247, 256974.318300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401040030", "MAP": "D9-8803-T013", "PARCEL_NAM": "32 & 33 KONGENS GADE", "ACRE": "7,698 sq ft", "LONGITUDE": -64.93007912, "LATITUDE": 18.34226861, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.265535071, "SHAPE_Area": 733.34226169399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358909.898400001227856, 256990.484000001102686 ], [ 358910.245899997651577, 256972.505199998617172 ], [ 358885.014200001955032, 256972.910199999809265 ], [ 358868.146799996495247, 256974.318300001323223 ], [ 358869.339000001549721, 256990.829999998211861 ], [ 358902.538400001823902, 256990.833000000566244 ], [ 358909.898400001227856, 256990.484000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401540700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92594225000001, "LATITUDE": 18.3423291, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.9447749152, "SHAPE_Area": 98.850168830200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359337.166400000452995, 256993.663899999111891 ], [ 359336.743400000035763, 256988.891600001603365 ], [ 359316.79110000282526, 256990.495700001716614 ], [ 359317.193599998950958, 256995.554699998348951 ], [ 359337.166400000452995, 256993.663899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401371000", "MAP": null, "PARCEL_NAM": "18 KONGENS GADE (Office of the Lt. Governor)", "ACRE": "5,529 sq ft", "LONGITUDE": -64.92858587000001, "LATITUDE": 18.34248101, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.303771242600007, "SHAPE_Area": 563.46226392200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359045.481600001454353, 257021.398299999535084 ], [ 359058.563500002026558, 257020.797200001776218 ], [ 359055.146799996495247, 256991.365699999034405 ], [ 359051.609099999070168, 256991.582299999892712 ], [ 359048.070900000631809, 256991.791299998760223 ], [ 359044.532200001180172, 256991.99269999936223 ], [ 359040.993199996650219, 256992.1864 ], [ 359036.437799997627735, 256992.399999998509884 ], [ 359039.057599999010563, 257021.693399999290705 ], [ 359045.481600001454353, 257021.398299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401303700", "MAP": null, "PARCEL_NAM": "2C COMMANDANT", "ACRE": null, "LONGITUDE": -64.930882, "LATITUDE": 18.34256311, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.529005092299997, "SHAPE_Area": 133.97457573299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358805.969099998474121, 256999.836599998176098 ], [ 358801.557499997317791, 256999.872600000351667 ], [ 358801.350599996745586, 257024.155900001525879 ], [ 358807.010499998927116, 257024.207600001245737 ], [ 358807.717200003564358, 257024.214099999517202 ], [ 358811.225500002503395, 257024.246100001037121 ], [ 358811.262999996542931, 257019.837900001555681 ], [ 358806.192800000309944, 257020.294100001454353 ], [ 358805.969099998474121, 256999.836599998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401029020", "MAP": null, "PARCEL_NAM": "3 COMMANDANT GADE O.V.", "ACRE": null, "LONGITUDE": -64.93125652000001, "LATITUDE": 18.34271832, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.657601658600001, "SHAPE_Area": 422.44661957699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358776.342299997806549, 257022.10869999974966 ], [ 358753.876599997282028, 257020.387899998575449 ], [ 358753.819899998605251, 257021.70160000026226 ], [ 358752.972499996423721, 257038.324599999934435 ], [ 358754.984300002455711, 257038.583000000566244 ], [ 358756.997000001370907, 257038.833500001579523 ], [ 358759.01070000231266, 257039.076200000941753 ], [ 358770.391099996864796, 257040.968299999833107 ], [ 358775.471100002527237, 257041.524000000208616 ], [ 358776.342299997806549, 257022.10869999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401051020", "MAP": null, "PARCEL_NAM": "15 BJERGE GADE", "ACRE": "2,037 sq ft", "LONGITUDE": -64.92588334, "LATITUDE": 18.34307079, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.627603839300001, "SHAPE_Area": 179.18359486899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359344.215800002217293, 257077.428800001740456 ], [ 359343.619199998676777, 257069.666799999773502 ], [ 359320.781599998474121, 257071.155200000852346 ], [ 359321.084899999201298, 257078.926600001752377 ], [ 359344.215800002217293, 257077.428800001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401510200", "MAP": null, "PARCEL_NAM": "16B BJERGE GADE", "ACRE": "2,037 sq ft", "LONGITUDE": -64.92587532, "LATITUDE": 18.34315088, "OBJECTID_1": 12246, "PARCEL_NO_": "105401510200", "Tax_Legal_": "BJERGE GADE 16B,15&14 KINGS QTR", "Name": "JRJ DEV ENTERP INC", "Address": "PO Box 7272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 95500, "Improved_V": 344700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.270407581499995, "SHAPE_Area": 231.93779022499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359345.009099997580051, 257087.748599998652935 ], [ 359344.215800002217293, 257077.428800001740456 ], [ 359321.084899999201298, 257078.926600001752377 ], [ 359322.053000003099442, 257088.645700000226498 ], [ 359345.009099997580051, 257087.748599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401511300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92456885, "LATITUDE": 18.34308864, "OBJECTID_1": 12257, "PARCEL_NO_": "105401511300", "Tax_Legal_": "PRINDSENS GADE 4 KINGS QUARTER", "Name": "STANFIELD, FLOYD & ROSE D", "Address": "1029 Charminvgon Ct", "City": "Wesley Chapel", "State": "Florida", "Zip": 33543, "Country": "United States", "Land_Value": 10800, "Improved_V": 123800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.624155063499998, "SHAPE_Area": 461.05083799800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359482.940499998629093, 257086.904399998486042 ], [ 359481.404700003564358, 257065.515799999237061 ], [ 359460.141999997198582, 257068.212200000882149 ], [ 359460.052699998021126, 257072.618900001049042 ], [ 359460.733000002801418, 257088.665399998426437 ], [ 359466.291900001466274, 257088.318999998271465 ], [ 359471.846699997782707, 257087.910000000149012 ], [ 359477.39639999717474, 257087.438499998301268 ], [ 359482.940499998629093, 257086.904399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401331000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92886701, "LATITUDE": 18.34306648, "OBJECTID_1": 11978, "PARCEL_NO_": "105401331000", "Tax_Legal_": "DRONNINGENS GADE 45 46 KINGS QUARTER", "Name": "HAZELL, LINCOLN, S. , J. , S. & R", "Address": "PO Box 12394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11200, "Improved_V": 53200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.91307694, "SHAPE_Area": 929.40239786899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359025.463699996471405, 257086.371800001710653 ], [ 359032.257399998605251, 257085.441700000315905 ], [ 359030.877999998629093, 257053.941500000655651 ], [ 359006.806599996984005, 257056.124600000679493 ], [ 359005.61089999973774, 257056.355099998414516 ], [ 359004.484999999403954, 257056.81870000064373 ], [ 359003.473600000143051, 257057.496800001710653 ], [ 359002.617200002074242, 257058.362399999052286 ], [ 359001.94990000128746, 257059.381000000983477 ], [ 359001.4983000010252, 257060.511900000274181 ], [ 359001.280500002205372, 257061.709899999201298 ], [ 359001.305200003087521, 257062.927299998700619 ], [ 359001.307099997997284, 257062.942299999296665 ], [ 359004.551700003445148, 257089.234700001776218 ], [ 359025.463699996471405, 257086.371800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401360100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93188304, "LATITUDE": 18.34317649, "OBJECTID_1": 12019, "PARCEL_NO_": "105401360100", "Tax_Legal_": "NYE GADE 2 QUEENS QUARTER", "Name": "THE QBY TRUST", "Address": "PO Box 10121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8400, "Improved_V": 154300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.528034113399997, "SHAPE_Area": 291.696526017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358708.115500003099442, 257074.089299999177456 ], [ 358689.143100000917912, 257071.97410000115633 ], [ 358689.004199996590614, 257075.909600000828505 ], [ 358688.911499999463558, 257079.846599999815226 ], [ 358688.865000002086163, 257083.784299999475479 ], [ 358688.864600002765656, 257087.722300000488758 ], [ 358706.782899998128414, 257089.692299999296665 ], [ 358708.115500003099442, 257074.089299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401511200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92476752, "LATITUDE": 18.34312265, "OBJECTID_1": 12256, "PARCEL_NO_": "105401511200", "Tax_Legal_": "PRINDSENS GADE 5A KINGS QTR", "Name": "JOSHUA, PATRICIA M.", "Address": "PO Box 303380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 6300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.8388454225, "SHAPE_Area": 328.17362240099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359459.908399999141693, 257088.711500000208616 ], [ 359460.114600002765656, 257088.700100000947714 ], [ 359460.320699997246265, 257088.6886 ], [ 359460.526799999177456, 257088.677099999040365 ], [ 359460.733000002801418, 257088.665399998426437 ], [ 359460.052699998021126, 257072.618900001049042 ], [ 359439.846100002527237, 257073.088100001215935 ], [ 359440.904899999499321, 257089.761999998241663 ], [ 359459.908399999141693, 257088.711500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501900", "MAP": null, "PARCEL_NAM": "17B PRINDSENS GADE", "ACRE": null, "LONGITUDE": -64.92709227, "LATITUDE": 18.34314847, "OBJECTID_1": 12218, "PARCEL_NO_": "105401501900", "Tax_Legal_": "PRINDSENS GADE 17AB&C KINGS QTR", "Name": "MARIO and OLGA LIMA FAMILY TRUST", "Address": "PO Box 7218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010218, "Country": "United States", "Land_Value": 103200, "Improved_V": 341900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.079296949300002, "SHAPE_Area": 294.56706368200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359215.36879999935627, 257088.073100000619888 ], [ 359214.442900002002716, 257073.806800000369549 ], [ 359206.058300003409386, 257074.658399999141693 ], [ 359192.377300001680851, 257076.047899998724461 ], [ 359192.559600003063679, 257077.921300001442432 ], [ 359193.821900002658367, 257077.801100000739098 ], [ 359195.186800003051758, 257089.912399999797344 ], [ 359203.108199998736382, 257089.190499998629093 ], [ 359215.36879999935627, 257088.073100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401302400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9308343, "LATITUDE": 18.34319868, "OBJECTID_1": 11931, "PARCEL_NO_": "105401302400", "Tax_Legal_": "COMMANDANT GADE 7B KINGS QTR", "Name": "BUNKERS HILL VIEW, INC.", "Address": "9 COMMANDANT GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19900, "Improved_V": 21100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.626025478400003, "SHAPE_Area": 100.242486082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358816.137500002980232, 257084.799400001764297 ], [ 358812.792199999094009, 257077.364000000059605 ], [ 358801.918099999427795, 257083.7652000002563 ], [ 358804.450000002980232, 257090.170000001788139 ], [ 358808.330399997532368, 257089.222300000488758 ], [ 358816.137500002980232, 257084.799400001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401302600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93095819, "LATITUDE": 18.34316303, "OBJECTID_1": 11933, "PARCEL_NO_": "105401302600", "Tax_Legal_": "COMMANDANT GADE 6 KINGS QUARTER", "Name": "BUNKERS HILL VIEW INC", "Address": "2307 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6600, "Improved_V": 124900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.2385505596, "SHAPE_Area": 284.56993820600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358801.918099999427795, 257083.7652000002563 ], [ 358812.792199999094009, 257077.364000000059605 ], [ 358811.313299998641014, 257074.076900001615286 ], [ 358796.155599996447563, 257074.566799998283386 ], [ 358782.565800003707409, 257074.750199999660254 ], [ 358783.414599999785423, 257076.665399998426437 ], [ 358784.428400002419949, 257080.388199999928474 ], [ 358785.931599996984005, 257083.897900000214577 ], [ 358788.168099999427795, 257090.648299999535084 ], [ 358801.918099999427795, 257083.7652000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92757002, "LATITUDE": 18.34315913, "OBJECTID_1": 12216, "PARCEL_NO_": "105401501700", "Tax_Legal_": "1 HOSPITAL GADE KINGS QUARTER", "Name": "HUNT, ANTONIO", "Address": "1660 Calvin Cir", "City": "Kissimmee", "State": "Florida", "Zip": 34746, "Country": "United States", "Land_Value": 10700, "Improved_V": 92800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.362848313200004, "SHAPE_Area": 413.03838643900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359153.730700001120567, 257088.924800001084805 ], [ 359170.987400002777576, 257087.083700001239777 ], [ 359170.238099999725819, 257074.699499998241663 ], [ 359152.878499999642372, 257076.551600001752377 ], [ 359137.297399997711182, 257077.857500001788139 ], [ 359138.0658999979496, 257090.588899999856949 ], [ 359153.730700001120567, 257088.924800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401511100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92496449, "LATITUDE": 18.34311333, "OBJECTID_1": 12254, "PARCEL_NO_": "105401511100", "Tax_Legal_": "PRINDSENS GADE 6 KINGS QTR", "Name": "FRETT, ARIEL A. & HOLDER, BRENDA D", "Address": "PO Box 307994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15800, "Improved_V": 57400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.649136778599996, "SHAPE_Area": 458.10692224500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359440.904899999499321, 257089.761999998241663 ], [ 359439.846100002527237, 257073.088100001215935 ], [ 359439.5608000010252, 257068.595499999821186 ], [ 359418.9054000005126, 257069.391699999570847 ], [ 359418.882700003683567, 257072.854299999773502 ], [ 359418.76410000026226, 257090.98589999973774 ], [ 359440.904899999499321, 257089.761999998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401511000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92512199, "LATITUDE": 18.34313633, "OBJECTID_1": 12253, "PARCEL_NO_": "105401511000", "Tax_Legal_": "PRINDSENS GADE 7 KINGS QUARTER", "Name": "MARCUS, E. & LEE, P. & D", "Address": "PO Box 686", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6400, "Improved_V": 38300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.470556482200003, "SHAPE_Area": 218.09209883 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359418.76410000026226, 257090.98589999973774 ], [ 359418.882700003683567, 257072.854299999773502 ], [ 359407.109099999070168, 257073.214999999850988 ], [ 359406.992499999701977, 257078.088199999183416 ], [ 359406.667999997735023, 257091.654599998146296 ], [ 359418.76410000026226, 257090.98589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92730208, "LATITUDE": 18.34317967, "OBJECTID_1": 12217, "PARCEL_NO_": "105401501800", "Tax_Legal_": "PRINDSENS GADE 18B KINGS QUARTER", "Name": "NORTH CARIBBEAN CONFERENCE OF SEVENTH DAY AD INC", "Address": "PO Box 886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7100, "Improved_V": 30200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.063534783500003, "SHAPE_Area": 233.51955509000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359183.653800003230572, 257090.963500000536442 ], [ 359192.75789999961853, 257090.133799999952316 ], [ 359191.394100002944469, 257078.032200001180172 ], [ 359172.102899998426437, 257080.367400001734495 ], [ 359172.831699997186661, 257091.801199998706579 ], [ 359183.653800003230572, 257090.963500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401360200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93167851, "LATITUDE": 18.34319695, "OBJECTID_1": 12020, "PARCEL_NO_": "105401360200", "Tax_Legal_": "BRED GADE 2&3 QUEENS GADE", "Name": "FORDE, ALDEN A. E", "Address": "PO Box 6676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 17800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.778322918100002, "SHAPE_Area": 293.18795986600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358729.953199997544289, 257076.522199999541044 ], [ 358724.453199997544289, 257075.909499999135733 ], [ 358711.14580000191927, 257074.427000001072884 ], [ 358709.81360000371933, 257090.025499999523163 ], [ 358728.278300002217293, 257092.055500000715256 ], [ 358729.953199997544289, 257076.522199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401510900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92526511, "LATITUDE": 18.34316483, "OBJECTID_1": 12251, "PARCEL_NO_": "105401510900", "Tax_Legal_": "PRINDSENS GADE 8A KINGS QUARTER", "Name": "FRETT, ARIEL A.", "Address": "PO Box 307994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8100, "Improved_V": 38100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.055560186099996, "SHAPE_Area": 251.11957995899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359406.667999997735023, 257091.654599998146296 ], [ 359406.992499999701977, 257078.088199999183416 ], [ 359388.870999999344349, 257078.55689999833703 ], [ 359388.449199996888638, 257092.661699999123812 ], [ 359406.667999997735023, 257091.654599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401311400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92933647, "LATITUDE": 18.34313774, "OBJECTID_1": 11954, "PARCEL_NO_": "105401311400", "Tax_Legal_": "42 DRONNINGENS GADE KINGS QTR.", "Name": "ST. THOMAS REFORM CHURCH", "Address": "PO Box 301769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33800, "Improved_V": 224000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.883323059199995, "SHAPE_Area": 616.41651245900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358979.460400000214577, 257091.234900001436472 ], [ 358976.781099997460842, 257060.731699999421835 ], [ 358973.720600001513958, 257061.546100001782179 ], [ 358970.731799997389317, 257062.593400001525879 ], [ 358967.832400001585484, 257063.867499999701977 ], [ 358965.039599999785423, 257065.36089999973774 ], [ 358962.3699000030756, 257067.064599998295307 ], [ 358959.839100003242493, 257068.968499999493361 ], [ 358959.383000001311302, 257069.345499999821186 ], [ 358954.717699997127056, 257073.258000001311302 ], [ 358955.340800002217293, 257092.666200000792742 ], [ 358979.460400000214577, 257091.234900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401302000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93016869, "LATITUDE": 18.34324252, "OBJECTID_1": 11927, "PARCEL_NO_": "105401302000", "Tax_Legal_": "DRONNINGENS GADE 35A KINGS QUARTER", "Name": "MICHELE SHULTERBRANDT AGURKIS TRUST", "Address": "P.O. BOX 5325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.593995084, "SHAPE_Area": 144.58550689800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358890.72240000218153, 257092.579799998551607 ], [ 358890.867600001394749, 257091.078600000590086 ], [ 358891.0016999989748, 257089.576299998909235 ], [ 358891.124700002372265, 257088.073100000619888 ], [ 358891.236599996685982, 257086.568999998271465 ], [ 358867.517200000584126, 257086.374899998307228 ], [ 358868.545500002801418, 257092.955800000578165 ], [ 358890.72240000218153, 257092.579799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401510800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92540575, "LATITUDE": 18.34319792, "OBJECTID_1": 12250, "PARCEL_NO_": "105401510800", "Tax_Legal_": "PRINDSENS GADE 8B KINGS QUARTER", "Name": "DAVIS, CATHERINE", "Address": "PO Box 302096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2800, "Improved_V": 35000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.4814120379, "SHAPE_Area": 65.736208257900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359386.616499997675419, 257092.763000000268221 ], [ 359386.864500001072884, 257084.472600001841784 ], [ 359378.896499998867512, 257084.784400001168251 ], [ 359378.82490000128746, 257093.193799998611212 ], [ 359386.616499997675419, 257092.763000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401360300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93154081, "LATITUDE": 18.34321068, "OBJECTID_1": 12021, "PARCEL_NO_": "105401360300", "Tax_Legal_": "BRED GADE 1 QUEENS QUARTER", "Name": "BRADSHAW (LIFE ESTATE), ELITA", "Address": "PO Box 308263", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24700, "Improved_V": 37900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.258422099199997, "SHAPE_Area": 164.17463237199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358740.382799997925758, 257077.684500001370907 ], [ 358729.953199997544289, 257076.522199999541044 ], [ 358728.278300002217293, 257092.055500000715256 ], [ 358738.748199999332428, 257093.206599999219179 ], [ 358740.382799997925758, 257077.684500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92804746, "LATITUDE": 18.34318739, "OBJECTID_1": 12149, "PARCEL_NO_": "105401471500", "Tax_Legal_": "25 PRINDSENS GADE KINGS QTR", "Name": "CORREA, DANIEL", "Address": "PO Box 12376", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3500, "Improved_V": 18200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.221169465400003, "SHAPE_Area": 180.37799478700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359110.097800001502037, 257092.564699999988079 ], [ 359108.718599997460842, 257077.077300000935793 ], [ 359097.184199996292591, 257078.182300001382828 ], [ 359098.257700003683567, 257093.362700000405312 ], [ 359110.097800001502037, 257092.564699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401302200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93081385000001, "LATITUDE": 18.34324462, "OBJECTID_1": 11929, "PARCEL_NO_": "105401302200", "Tax_Legal_": "COMMANDANT GADE 10 A KINGS QTR", "Name": "RODRIGUEZ, GRAFTON & MARGOT", "Address": "155 Mercerdes Trl", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 4300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.083851000099997, "SHAPE_Area": 41.2410488648 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358817.582400001585484, 257088.010999999940395 ], [ 358816.137500002980232, 257084.799400001764297 ], [ 358808.330399997532368, 257089.222300000488758 ], [ 358804.450000002980232, 257090.170000001788139 ], [ 358805.761200003325939, 257093.486800000071526 ], [ 358814.375600002706051, 257089.539000000804663 ], [ 358815.181500002741814, 257089.166000001132488 ], [ 358815.984700001776218, 257088.787000000476837 ], [ 358816.784999996423721, 257088.401999998837709 ], [ 358817.582400001585484, 257088.010999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401510700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92548965, "LATITUDE": 18.34320179, "OBJECTID_1": 12249, "PARCEL_NO_": "105401510700", "Tax_Legal_": "PUB FRWY-PRIND GD 9A&POR KINGS QTR", "Name": "AFF REALTY INCORPORATED", "Address": "PO Box 6226", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33310, "Country": "United States", "Land_Value": 3200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.688413039700002, "SHAPE_Area": 83.489138526700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359378.82490000128746, 257093.193799998611212 ], [ 359378.896499998867512, 257084.784400001168251 ], [ 359378.887599997222424, 257084.784800000488758 ], [ 359368.512100003659725, 257085.195599999278784 ], [ 359369.525200001895428, 257093.707800000905991 ], [ 359378.82490000128746, 257093.193799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92816448000001, "LATITUDE": 18.34319492, "OBJECTID_1": 12148, "PARCEL_NO_": "105401471400", "Tax_Legal_": "PRINDSENS GADE 27 KINGS QUARTER", "Name": "ALFRED O. HEATH TRUST AGREEMENT", "Address": "PO Box 8237", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3800, "Improved_V": 61000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.954453332699998, "SHAPE_Area": 200.85142458799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359098.257700003683567, 257093.362700000405312 ], [ 359097.184199996292591, 257078.182300001382828 ], [ 359097.022299997508526, 257078.197799999266863 ], [ 359084.23650000244379, 257078.428599998354912 ], [ 359085.344800002872944, 257094.233199998736382 ], [ 359098.257700003683567, 257093.362700000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401510600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92560514, "LATITUDE": 18.34311805, "OBJECTID_1": 12248, "PARCEL_NO_": "105401510600", "Tax_Legal_": "9B PRINDSEN GADE KINGS QUARTER", "Name": "LANDAIS, MARY J. & DENISE GREEN", "Address": "1419 Hospital Line", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9000, "Improved_V": 138600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.895880649000006, "SHAPE_Area": 339.44767766199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359360.405799999833107, 257066.337000001221895 ], [ 359358.05460000038147, 257066.393699999898672 ], [ 359358.587700001895428, 257062.920800000429153 ], [ 359354.489200003445148, 257062.989500001072884 ], [ 359357.416599996387959, 257094.377199999988079 ], [ 359369.525200001895428, 257093.707800000905991 ], [ 359368.512100003659725, 257085.195599999278784 ], [ 359368.242499999701977, 257082.93019999936223 ], [ 359366.287600003182888, 257066.503600001335144 ], [ 359360.405799999833107, 257066.337000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401360400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93143023, "LATITUDE": 18.34322142, "OBJECTID_1": 12022, "PARCEL_NO_": "105401360400", "Tax_Legal_": "COMMANDANT GADE 6B QUEENS QTR", "Name": "SMITH, NELLIE WAYLAN", "Address": "PO Box 1240", "City": "St. JOHN", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 12200, "Improved_V": 47200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.165426666800002, "SHAPE_Area": 202.53305527200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358753.306699998676777, 257079.124800000339746 ], [ 358740.382799997925758, 257077.684500001370907 ], [ 358738.748199999332428, 257093.206599999219179 ], [ 358751.635600000619888, 257094.623500000685453 ], [ 358753.306699998676777, 257079.124800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401510500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.925725, "LATITUDE": 18.34318621, "OBJECTID_1": 12247, "PARCEL_NO_": "105401510500", "Tax_Legal_": "PRINDSENS GADE 10A KINGS QTR", "Name": "TURNBULL, WALLACE & LOUISA", "Address": "PO Box 304324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3600, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.1032443434, "SHAPE_Area": 125.08469021499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359353.865299999713898, 257094.573499999940395 ], [ 359352.378899998962879, 257079.2516999989748 ], [ 359346.299300000071526, 257079.679200001060963 ], [ 359344.393399998545647, 257079.739100001752377 ], [ 359345.009099997580051, 257087.748599998652935 ], [ 359345.57379999756813, 257095.093400001525879 ], [ 359347.667900003492832, 257094.91609999909997 ], [ 359353.865299999713898, 257094.573499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92827981000001, "LATITUDE": 18.34320335, "OBJECTID_1": 12147, "PARCEL_NO_": "105401471300", "Tax_Legal_": "PRINDSENS GADE 29 KINGS QTR", "Name": "GEORGE, JANET & POTTER, ALFRED & HENRIETTA & RHUDEL", "Address": "PO Box 9848", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012848, "Country": "United States", "Land_Value": 3800, "Improved_V": 50600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.378132986200001, "SHAPE_Area": 181.08461537700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359085.344800002872944, 257094.233199998736382 ], [ 359084.23650000244379, 257078.428599998354912 ], [ 359072.589900001883507, 257079.927600000053644 ], [ 359073.710500001907349, 257095.017400000244379 ], [ 359085.344800002872944, 257094.233199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401360500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93131384, "LATITUDE": 18.34323203, "OBJECTID_1": 12023, "PARCEL_NO_": "105401360500", "Tax_Legal_": "COMMANDANT GADE 6A QUEENS QUARTER", "Name": "BROWN, JANET & PHIPPS, LUBIN", "Address": "PO Box 12142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27700, "Improved_V": 119000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.624252715600001, "SHAPE_Area": 182.54503774099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358765.373400002717972, 257080.4695999994874 ], [ 358753.306699998676777, 257079.124800000339746 ], [ 358751.635600000619888, 257094.623500000685453 ], [ 358754.1537000015378, 257094.900299999862909 ], [ 358756.367799997329712, 257095.135499998927116 ], [ 358758.583499997854233, 257095.354100000113249 ], [ 358760.800800003111362, 257095.556400001049042 ], [ 358763.019599996507168, 257095.742199998348951 ], [ 358764.789399996399879, 257083.732799999415874 ], [ 358764.911200001835823, 257082.912799999117851 ], [ 358765.049199998378754, 257082.095400001853704 ], [ 358765.203299999237061, 257081.280900001525879 ], [ 358765.373400002717972, 257080.4695999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92790156, "LATITUDE": 18.34319293, "OBJECTID_1": 12150, "PARCEL_NO_": "105401471600", "Tax_Legal_": "PRINDSENS GADE 23 22 KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 106200, "Improved_V": 106200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.097079418299998, "SHAPE_Area": 350.55047942300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359129.218599997460842, 257094.555700000375509 ], [ 359128.114600002765656, 257076.837200000882149 ], [ 359113.634999997913837, 257077.016399998217821 ], [ 359108.718599997460842, 257077.077300000935793 ], [ 359110.097800001502037, 257092.564699999988079 ], [ 359110.2195999994874, 257095.913100000470877 ], [ 359129.218599997460842, 257094.555700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401302300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93095255, "LATITUDE": 18.34325491, "OBJECTID_1": 11930, "PARCEL_NO_": "105401302300", "Tax_Legal_": "COMMANDANT GADE 7A KINGS QTR", "Name": "BUNKERS HILL VIEW, INC.", "Address": "9 COMMANDANT GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.662349962699999, "SHAPE_Area": 102.390201314 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358804.450000002980232, 257090.170000001788139 ], [ 358801.918099999427795, 257083.7652000002563 ], [ 358788.168099999427795, 257090.648299999535084 ], [ 358791.378300003707409, 257096.651999998837709 ], [ 358804.450000002980232, 257090.170000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401510100", "MAP": null, "PARCEL_NAM": "16A & 16AA BJERGE GADE", "ACRE": "1,019 sq ft", "LONGITUDE": -64.92587499, "LATITUDE": 18.34323251, "OBJECTID_1": 12245, "PARCEL_NO_": "105401510100", "Tax_Legal_": "BJERGE GADE 16A&16AA KINGS QTR", "Name": "JRJ DEV ENTPRS INC", "Address": "PO Box 7272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5000, "Improved_V": 42800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.6616586138, "SHAPE_Area": 187.81656837200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359345.57379999756813, 257095.093400001525879 ], [ 359345.009099997580051, 257087.748599998652935 ], [ 359322.053000003099442, 257088.645700000226498 ], [ 359321.064900003373623, 257095.639600001275539 ], [ 359322.262500002980232, 257097.067299999296665 ], [ 359345.57379999756813, 257095.093400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401291800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93114026000001, "LATITUDE": 18.34323638, "OBJECTID_1": 11910, "PARCEL_NO_": "105401291800", "Tax_Legal_": "COMMANDANT GADE OV 2O QUEENS QUARTER", "Name": "VIALET, LORRAINE & GIFFT, JUNE, JAMES, JR., JOHN, & JOEL", "Address": "PO Box 471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7200, "Improved_V": 9000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.387446497400006, "SHAPE_Area": 262.76892813199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358783.403399996459484, 257088.661400001496077 ], [ 358781.738799996674061, 257084.98589999973774 ], [ 358780.259999997913837, 257081.231699999421835 ], [ 358778.769900001585484, 257077.864199999719858 ], [ 358776.950199998915195, 257073.975099999457598 ], [ 358772.236900001764297, 257076.436900001019239 ], [ 358771.120300002396107, 257078.141499999910593 ], [ 358770.968999996781349, 257080.181200001388788 ], [ 358770.80009999871254, 257082.665100000798702 ], [ 358770.355700001120567, 257085.38120000064373 ], [ 358769.196000002324581, 257096.700399998575449 ], [ 358773.844200000166893, 257097.336300000548363 ], [ 358777.57769999653101, 257097.401599999517202 ], [ 358780.983300000429153, 257097.489500001072884 ], [ 358784.458099998533726, 257097.210999999195337 ], [ 358786.673000000417233, 257096.771299999207258 ], [ 358783.403399996459484, 257088.661400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501600", "MAP": null, "PARCEL_NAM": "19Bb PRINDSENS GADE", "ACRE": null, "LONGITUDE": -64.92748851, "LATITUDE": 18.3432429, "OBJECTID_1": 12215, "PARCEL_NO_": "105401501600", "Tax_Legal_": "PRINDSENS GADE 19BB KINGS QUARTER", "Name": "SMITH, ENRIQUE", "Address": "2370 Second Ave", "City": "New York", "State": "New York", "Zip": 10035, "Country": "United States", "Land_Value": 1500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.490888825100001, "SHAPE_Area": 137.133686119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359171.465999998152256, 257094.994500000029802 ], [ 359170.987400002777576, 257087.083700001239777 ], [ 359153.730700001120567, 257088.924800001084805 ], [ 359154.275100000202656, 257096.828600000590086 ], [ 359171.465999998152256, 257094.994500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92611406, "LATITUDE": 18.34319001, "OBJECTID_1": 12213, "PARCEL_NO_": "105401501400", "Tax_Legal_": "PRINDSENS GADE 11 KINGS QUARTER", "Name": "MICHAEL, E", "Address": "240 Lombard St", "City": "San Francisco", "State": "California", "Zip": 94111, "Country": "United States", "Land_Value": 55500, "Improved_V": 34700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.063917517099995, "SHAPE_Area": 295.11968579400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359316.256599999964237, 257096.365600001066923 ], [ 359315.126999996602535, 257077.395899999886751 ], [ 359299.526100002229214, 257078.279500000178814 ], [ 359300.827299997210503, 257097.21680000051856 ], [ 359316.256599999964237, 257096.365600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9276451, "LATITUDE": 18.34326055, "OBJECTID_1": 12214, "PARCEL_NO_": "105401501500", "Tax_Legal_": "PRINDSENS GADE 19B KINGS QUARTER", "Name": "CAMERON, ALCEDES", "Address": "1209 Loring Ave", "City": "Brooklyn", "State": "New York", "Zip": 11208, "Country": "United States", "Land_Value": 4300, "Improved_V": 23000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.932546175200002, "SHAPE_Area": 127.41774162199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359154.275100000202656, 257096.828600000590086 ], [ 359153.730700001120567, 257088.924800001084805 ], [ 359138.0658999979496, 257090.588899999856949 ], [ 359138.205600000917912, 257098.670099999755621 ], [ 359154.275100000202656, 257096.828600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401304100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93092651000001, "LATITUDE": 18.34329131, "OBJECTID_1": 11946, "PARCEL_NO_": "105401304100", "Tax_Legal_": "COMMANDANT GADE 7AA&7BA KINGS QTR", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 29900, "Improved_V": 113700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.210980046700001, "SHAPE_Area": 38.839565765800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358805.761200003325939, 257093.486800000071526 ], [ 358804.450000002980232, 257090.170000001788139 ], [ 358791.378300003707409, 257096.651999998837709 ], [ 358792.393200002610683, 257098.22410000115633 ], [ 358805.761200003325939, 257093.486800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401330900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92849615, "LATITUDE": 18.34322881, "OBJECTID_1": 11977, "PARCEL_NO_": "105401330900", "Tax_Legal_": "PRINDSENS GADE 30,31 &32 KINGS QTR.", "Name": "WALCOTT, NILDA", "Address": "P.O.BOX 1395", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.399053007399999, "SHAPE_Area": 461.119914354 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359042.293300002813339, 257098.352000001817942 ], [ 359051.992600001394749, 257097.322500001639128 ], [ 359060.873400002717972, 257096.379900000989437 ], [ 359072.194300003349781, 257095.178300000727177 ], [ 359071.076499998569489, 257080.127199999988079 ], [ 359047.612000003457069, 257083.339600000530481 ], [ 359039.524700000882149, 257084.446800000965595 ], [ 359041.0287000015378, 257098.486200001090765 ], [ 359042.293300002813339, 257098.352000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401300800", "MAP": null, "PARCEL_NAM": "23 COMMANDANT GADE", "ACRE": "5,655 sq ft", "LONGITUDE": -64.93039378, "LATITUDE": 18.34319401, "OBJECTID_1": 11916, "PARCEL_NO_": "105401300800", "Tax_Legal_": "COMMANDANT GADE 23 KINGS QUARTER", "Name": "MICHELE SHULTERBRANDT AGURKIS TRUST", "Address": "P.O. BOX 5325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.510896434499998, "SHAPE_Area": 566.89954576900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358851.96509999781847, 257097.1064000017941 ], [ 358868.545500002801418, 257092.955800000578165 ], [ 358867.517200000584126, 257086.374899998307228 ], [ 358864.49549999833107, 257067.034600000828505 ], [ 358862.321199998259544, 257067.502500001341105 ], [ 358859.997900001704693, 257068.240499999374151 ], [ 358857.759999997913837, 257069.206700000911951 ], [ 358855.629699997603893, 257070.391600001603365 ], [ 358853.628300003707409, 257071.783300001174212 ], [ 358851.77589999884367, 257073.367800001055002 ], [ 358849.001400001347065, 257075.91499999910593 ], [ 358846.152400001883507, 257078.378600001335144 ], [ 358843.231200002133846, 257080.75620000064373 ], [ 358840.240599997341633, 257083.045800000429153 ], [ 358846.949299998581409, 257099.028499998152256 ], [ 358851.96509999781847, 257097.1064000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401331500", "MAP": null, "PARCEL_NAM": "33 PRINDSENS GADE", "ACRE": "1,901 sq ft", "LONGITUDE": -64.92871149, "LATITUDE": 18.34325548, "OBJECTID_1": 11982, "PARCEL_NO_": "105401331500", "Tax_Legal_": "PRINDSENS GADE 33 & 41 KING QTR", "Name": "KING, JOSEPH", "Address": "PO Box 4333", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 6500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.893764276299997, "SHAPE_Area": 195.21735895800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359035.826300002634525, 257099.038400001823902 ], [ 359041.0287000015378, 257098.486200001090765 ], [ 359039.524700000882149, 257084.446800000965595 ], [ 359032.257399998605251, 257085.441700000315905 ], [ 359025.463699996471405, 257086.371800001710653 ], [ 359027.217600002884865, 257099.952199999243021 ], [ 359035.826300002634525, 257099.038400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401500900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92671674, "LATITUDE": 18.34316076, "OBJECTID_1": 12208, "PARCEL_NO_": "105401500900", "Tax_Legal_": "PRINDSENS GADE 15A KINGS QUARTER", "Name": "SIMMONDS, ALRIC & MAHONEY, J. & HILL, L.", "Address": "1525 Prindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6300, "Improved_V": 91400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.245166975299995, "SHAPE_Area": 243.97306687099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359249.604599997401237, 257100.04280000180006 ], [ 359245.859700001776218, 257065.515599999576807 ], [ 359239.431199997663498, 257066.168499998748302 ], [ 359240.240900002419949, 257077.186900001019239 ], [ 359241.951300002634525, 257100.464999999850988 ], [ 359249.604599997401237, 257100.04280000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401500800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92678821, "LATITUDE": 18.34321406, "OBJECTID_1": 12207, "PARCEL_NO_": "105401500800", "Tax_Legal_": "PRINDSENS GADE 15B KINGS QUARTER", "Name": "MASSAC, CHISTOPH K. & PHYLLIS K", "Address": "PO Box 243", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5200, "Improved_V": 37500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.607673351000003, "SHAPE_Area": 206.88072981600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359241.951300002634525, 257100.464999999850988 ], [ 359240.240900002419949, 257077.186900001019239 ], [ 359232.413400001823902, 257077.890599999576807 ], [ 359231.803099997341633, 257083.550999999046326 ], [ 359232.581900000572205, 257100.869899999350309 ], [ 359241.951300002634525, 257100.464999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501900", "MAP": null, "PARCEL_NAM": "17A PRINDSENS GADE", "ACRE": null, "LONGITUDE": -64.92704324, "LATITUDE": 18.34327098, "OBJECTID_1": 12218, "PARCEL_NO_": "105401501900", "Tax_Legal_": "PRINDSENS GADE 17AB&C KINGS QTR", "Name": "MARIO and OLGA LIMA FAMILY TRUST", "Address": "PO Box 7218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010218, "Country": "United States", "Land_Value": 103200, "Improved_V": 341900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.107111516499998, "SHAPE_Area": 169.28774830399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359216.265100002288818, 257101.882100000977516 ], [ 359215.36879999935627, 257088.073100000619888 ], [ 359203.108199998736382, 257089.190499998629093 ], [ 359203.724200002849102, 257102.574000000953674 ], [ 359216.265100002288818, 257101.882100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501900", "MAP": null, "PARCEL_NAM": "17C PRINDSENS GADE", "ACRE": null, "LONGITUDE": -64.92713761, "LATITUDE": 18.34327696, "OBJECTID_1": 12218, "PARCEL_NO_": "105401501900", "Tax_Legal_": "PRINDSENS GADE 17AB&C KINGS QTR", "Name": "MARIO and OLGA LIMA FAMILY TRUST", "Address": "PO Box 7218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010218, "Country": "United States", "Land_Value": 103200, "Improved_V": 341900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.563355621900001, "SHAPE_Area": 99.631971056400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359203.724200002849102, 257102.574000000953674 ], [ 359203.108199998736382, 257089.190499998629093 ], [ 359195.186800003051758, 257089.912399999797344 ], [ 359196.657600000500679, 257102.963899999856949 ], [ 359203.724200002849102, 257102.574000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401500400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92723994000001, "LATITUDE": 18.34328655, "OBJECTID_1": 12205, "PARCEL_NO_": "105401500400", "Tax_Legal_": "PRINCE 18A KINGS", "Name": "FREDERICKS, THELMA", "Address": "PO Box 181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3800, "Improved_V": 23800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.465446526299999, "SHAPE_Area": 120.413982101 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359192.75789999961853, 257090.133799999952316 ], [ 359183.653800003230572, 257090.963500000536442 ], [ 359184.6587999984622, 257103.625900000333786 ], [ 359194.218900002539158, 257103.098499998450279 ], [ 359192.75789999961853, 257090.133799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401500300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92733653000001, "LATITUDE": 18.34329374, "OBJECTID_1": 12204, "PARCEL_NO_": "105401500300", "Tax_Legal_": "PRINDSENS GADE 18AA KINGS QUARTER", "Name": "FREDERICKS, THELMA", "Address": "PO Box 181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.411741816499998, "SHAPE_Area": 139.90335766800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359184.6587999984622, 257103.625900000333786 ], [ 359183.653800003230572, 257090.963500000536442 ], [ 359172.831699997186661, 257091.801199998706579 ], [ 359173.305399999022484, 257104.275299999862909 ], [ 359184.6587999984622, 257103.625900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401310900", "MAP": null, "PARCEL_NAM": "36BB DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92975627, "LATITUDE": 18.34318245, "OBJECTID_1": 11950, "PARCEL_NO_": "105401310900", "Tax_Legal_": "DRONGNS GADE 36A,36BB&41 KINGS QTR", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 317800, "Improved_V": 293300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.241464090400001, "SHAPE_Area": 291.18135155700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358920.053800001740456, 257070.414799999445677 ], [ 358915.594200000166893, 257081.239700000733137 ], [ 358916.308799996972084, 257092.011300001293421 ], [ 358921.806000001728535, 257104.468299999833107 ], [ 358921.598300002515316, 257102.988200001418591 ], [ 358921.487899996340275, 257100.743700001388788 ], [ 358921.621200002729893, 257098.500300001353025 ], [ 358921.9966000020504, 257096.284600000828505 ], [ 358922.609600000083447, 257094.122600000351667 ], [ 358923.453100003302097, 257092.039700001478195 ], [ 358924.517200000584126, 257090.060300000011921 ], [ 358925.789300002157688, 257088.207699999213219 ], [ 358927.254600003361702, 257086.503800000995398 ], [ 358928.895599998533726, 257084.968499999493361 ], [ 358933.150799997150898, 257081.399900000542402 ], [ 358933.196599997580051, 257081.360800001770258 ], [ 358933.758199997246265, 257080.709600001573563 ], [ 358934.115599997341633, 257079.927400000393391 ], [ 358934.240199998021126, 257079.076499998569489 ], [ 358934.122299998998642, 257078.224700000137091 ], [ 358933.771099999547005, 257077.439699999988079 ], [ 358933.214699998497963, 257076.784099999815226 ], [ 358932.49719999730587, 257076.309999998658895 ], [ 358920.053800001740456, 257070.414799999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401310900", "MAP": null, "PARCEL_NAM": "41 DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.9299044, "LATITUDE": 18.34321106, "OBJECTID_1": 11950, "PARCEL_NO_": "105401310900", "Tax_Legal_": "DRONGNS GADE 36A,36BB&41 KINGS QTR", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 317800, "Improved_V": 293300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.38174711400001, "SHAPE_Area": 788.39314253299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358921.806000001728535, 257104.468299999833107 ], [ 358916.308799996972084, 257092.011300001293421 ], [ 358915.594200000166893, 257081.239700000733137 ], [ 358920.053800001740456, 257070.414799999445677 ], [ 358914.202299997210503, 257067.642499998211861 ], [ 358914.168799996376038, 257067.6266999989748 ], [ 358912.210600003600121, 257066.838500000536442 ], [ 358910.174599997699261, 257066.281199999153614 ], [ 358908.087999999523163, 257065.96229999884963 ], [ 358905.97860000282526, 257065.885899998247623 ], [ 358897.748000003397465, 257066.063099998980761 ], [ 358897.836199998855591, 257073.212699998170137 ], [ 358897.680600002408028, 257080.361099999397993 ], [ 358897.281400002539158, 257087.5 ], [ 358896.638999998569489, 257094.621100001037121 ], [ 358895.754100002348423, 257101.716299999505281 ], [ 358894.118699997663498, 257104.960200000554323 ], [ 358921.806000001728535, 257104.468299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401500200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92748139, "LATITUDE": 18.34331859, "OBJECTID_1": 12203, "PARCEL_NO_": "105401500200", "Tax_Legal_": "PRINDSENS GADE 19AA KINGS QTR", "Name": "SMITH, E", "Address": "PO Box 304701", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11500, "Improved_V": 14200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.295044758099998, "SHAPE_Area": 153.45860213200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359172.0304000005126, 257104.322599999606609 ], [ 359171.465999998152256, 257094.994500000029802 ], [ 359154.275100000202656, 257096.828600000590086 ], [ 359154.856600001454353, 257105.270100001245737 ], [ 359172.0304000005126, 257104.322599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401500100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92763966, "LATITUDE": 18.34333334, "OBJECTID_1": 12202, "PARCEL_NO_": "105401500100", "Tax_Legal_": "PRINDSENS GADE 19A KINGS QUARTER", "Name": "JAMES, CHILDREN VALDIMI", "Address": "PO Box 9017", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.932508670700003, "SHAPE_Area": 133.06505936 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359154.856600001454353, 257105.270100001245737 ], [ 359154.275100000202656, 257096.828600000590086 ], [ 359138.205600000917912, 257098.670099999755621 ], [ 359138.509300000965595, 257106.562300000339746 ], [ 359154.856600001454353, 257105.270100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92789121, "LATITUDE": 18.34332755, "OBJECTID_1": 12146, "PARCEL_NO_": "105401471200", "Tax_Legal_": "PRINDSENS GADE 2O 21 KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 86800, "Improved_V": 256000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.317871228199998, "SHAPE_Area": 219.92279878 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359129.924999997019768, 257105.894000001251698 ], [ 359129.218599997460842, 257094.555700000375509 ], [ 359110.2195999994874, 257095.913100000470877 ], [ 359110.640000000596046, 257107.466600000858307 ], [ 359129.924999997019768, 257105.894000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92803818, "LATITUDE": 18.34332401, "OBJECTID_1": 12145, "PARCEL_NO_": "105401471100", "Tax_Legal_": "PRINDSENS GADE 24 KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58500, "Improved_V": 1500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.713536986999998, "SHAPE_Area": 177.738230534 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359110.640000000596046, 257107.466600000858307 ], [ 359110.2195999994874, 257095.913100000470877 ], [ 359110.097800001502037, 257092.564699999988079 ], [ 359098.257700003683567, 257093.362700000405312 ], [ 359098.822599999606609, 257108.430300001055002 ], [ 359110.640000000596046, 257107.466600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401311500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92913816, "LATITUDE": 18.34319918, "OBJECTID_1": 11955, "PARCEL_NO_": "105401311500", "Tax_Legal_": "DRONNINGENS GADE 44 KINGS QUARTER", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 21600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.667029716, "SHAPE_Area": 899.68422140899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358996.275799997150898, 257071.944600000977516 ], [ 358996.050399996340275, 257070.640000000596046 ], [ 358995.534699998795986, 257068.886500000953674 ], [ 358994.790399998426437, 257067.217099998146296 ], [ 358993.830799996852875, 257065.661499999463558 ], [ 358992.672799997031689, 257064.247299998998642 ], [ 358991.337099999189377, 257062.999600000679493 ], [ 358989.84740000218153, 257061.940600000321865 ], [ 358988.230099998414516, 257061.089099999517202 ], [ 358986.513899996876717, 257060.460200000554323 ], [ 358984.729299999773502, 257060.065000001341105 ], [ 358982.908100001513958, 257059.910700000822544 ], [ 358981.082500003278255, 257059.999899998307228 ], [ 358980.000200003385544, 257060.140000000596046 ], [ 358978.922100000083447, 257060.308699999004602 ], [ 358977.848800003528595, 257060.506000000983477 ], [ 358976.781099997460842, 257060.731699999421835 ], [ 358979.460400000214577, 257091.234900001436472 ], [ 358980.997299998998642, 257108.731600001454353 ], [ 359000.901900000870228, 257109.431000001728535 ], [ 358996.275799997150898, 257071.944600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401471000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92815513, "LATITUDE": 18.34333326, "OBJECTID_1": 12144, "PARCEL_NO_": "105401471000", "Tax_Legal_": "PRINDSENS GADE 26 KINGS QUARTER", "Name": "SMITH, RAHEEM, ALLEN, URSULA", "Address": "1500 Dronningen Capital Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4600, "Improved_V": 79400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.220839855299999, "SHAPE_Area": 196.172022083 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359098.822599999606609, 257108.430300001055002 ], [ 359098.257700003683567, 257093.362700000405312 ], [ 359085.344800002872944, 257094.233199998736382 ], [ 359085.924900002777576, 257109.482099998742342 ], [ 359098.822599999606609, 257108.430300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401492100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92419945, "LATITUDE": 18.34328914, "OBJECTID_1": 12201, "PARCEL_NO_": "105401492100", "Tax_Legal_": "PRINDSENS GADE 74 KINGS QTR.", "Name": "DAWSON, NORMAN A. SR., E. F., B.L., B.BURT & NORMAN A. JR.", "Address": "PO Box 7621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.863193124399999, "SHAPE_Area": 215.92922944700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359508.732199996709824, 257109.625799998641014 ], [ 359517.572899997234344, 257109.085799999535084 ], [ 359515.179700002074242, 257094.923500001430511 ], [ 359515.016699999570847, 257094.217500001192093 ], [ 359514.557899996638298, 257093.089600000530481 ], [ 359513.88400000333786, 257092.075399998575449 ], [ 359513.021999999880791, 257091.215300001204014 ], [ 359512.00620000064373, 257090.543800000101328 ], [ 359510.877300001680851, 257090.087499998509884 ], [ 359509.680200003087521, 257089.864700000733137 ], [ 359508.462600000202656, 257089.884300000965595 ], [ 359505.81530000269413, 257090.19310000166297 ], [ 359505.105700001120567, 257090.297200001776218 ], [ 359504.395999997854233, 257090.400400001555681 ], [ 359503.686200000345707, 257090.502500001341105 ], [ 359502.976199999451637, 257090.603700000792742 ], [ 359506.33669999986887, 257109.772100001573563 ], [ 359508.732199996709824, 257109.625799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401491900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92429388, "LATITUDE": 18.34329634, "OBJECTID_1": 12199, "PARCEL_NO_": "105401491900", "Tax_Legal_": "PRINDSENS GADE 73 KINGS QUARTER", "Name": "STEWART, JUNE & OTHERS", "Address": "975 Walton Ave", "City": "Bronx", "State": "New York", "Zip": 10452, "Country": "United States", "Land_Value": 31800, "Improved_V": 36400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.236111577599999, "SHAPE_Area": 171.19837633399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359506.33669999986887, 257109.772100001573563 ], [ 359502.976199999451637, 257090.603700000792742 ], [ 359500.777400001883507, 257090.910300001502037 ], [ 359498.577200002968311, 257091.207100000232458 ], [ 359496.375699996948242, 257091.494199998676777 ], [ 359494.173000000417233, 257091.771499998867512 ], [ 359497.26969999819994, 257110.325899999588728 ], [ 359506.33669999986887, 257109.772100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401470900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92826982, "LATITUDE": 18.34334176, "OBJECTID_1": 12143, "PARCEL_NO_": "105401470900", "Tax_Legal_": "PRINDSENS GADE 28 KINGS QUARTER", "Name": "SKEETE, CLEVELAND", "Address": "2600 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026310, "Country": "United States", "Land_Value": 28700, "Improved_V": 117400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.440401540099998, "SHAPE_Area": 174.53132153199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359085.924900002777576, 257109.482099998742342 ], [ 359085.344800002872944, 257094.233199998736382 ], [ 359073.710500001907349, 257095.017400000244379 ], [ 359074.851800002157688, 257110.385000001639128 ], [ 359085.924900002777576, 257109.482099998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401491800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92439515, "LATITUDE": 18.34330564, "OBJECTID_1": 12198, "PARCEL_NO_": "105401491800", "Tax_Legal_": "PRINDSENS GADE 72 KINGS QUARTER", "Name": "STEWART, JUNE & OTHERS", "Address": "975 Walton Ave", "City": "Bronx", "State": "New York", "Zip": 10452, "Country": "United States", "Land_Value": 31800, "Improved_V": 38100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.103908908500003, "SHAPE_Area": 231.068414889 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359497.26969999819994, 257110.325899999588728 ], [ 359494.173000000417233, 257091.771499998867512 ], [ 359491.059500001370907, 257092.146499998867512 ], [ 359487.943599998950958, 257092.502099998295307 ], [ 359484.825599998235703, 257092.838100001215935 ], [ 359481.705600000917912, 257093.154500000178814 ], [ 359484.735600002110004, 257111.091600000858307 ], [ 359497.26969999819994, 257110.325899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401351000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93189119, "LATITUDE": 18.3433677, "OBJECTID_1": 12013, "PARCEL_NO_": "105401351000", "Tax_Legal_": "BRED GADE 7A QUEENS QTR", "Name": "SHELDON TURNBULL", "Address": "PO Box 307713", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037713, "Country": "United States", "Land_Value": 15700, "Improved_V": 102700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.186233530500004, "SHAPE_Area": 281.69469512000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358705.654500000178814, 257094.16780000180006 ], [ 358688.922799997031689, 257092.328200001269579 ], [ 358688.970600001513958, 257094.438499998301268 ], [ 358689.031599998474121, 257096.54839999973774 ], [ 358689.105899997055531, 257098.657999999821186 ], [ 358689.193499997258186, 257100.767000000923872 ], [ 358690.020900003612041, 257110.80689999833703 ], [ 358704.647900000214577, 257111.338100001215935 ], [ 358705.654500000178814, 257094.16780000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401330600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92839072, "LATITUDE": 18.34335294, "OBJECTID_1": 11976, "PARCEL_NO_": "105401330600", "Tax_Legal_": "PRINDSENS GADE 37 KINGS QUARTER", "Name": "SKEETE, CLEVELAND", "Address": "21 Ny Nordesidevel", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2700, "Improved_V": 63400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.059365446000001, "SHAPE_Area": 172.04649784200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359073.332800000905991, 257110.508900001645088 ], [ 359072.194300003349781, 257095.178300000727177 ], [ 359060.873400002717972, 257096.379900000989437 ], [ 359062.162900000810623, 257111.419799998402596 ], [ 359073.332800000905991, 257110.508900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401491700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92452373, "LATITUDE": 18.34331636, "OBJECTID_1": 12197, "PARCEL_NO_": "105401491700", "Tax_Legal_": "PRINDSENS GADE 71 KINGS QUARTER", "Name": "AUGUSTE, LEO A.", "Address": "4 Prindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5500, "Improved_V": 27300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.485468394600005, "SHAPE_Area": 263.53554338499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359484.735600002110004, 257111.091600000858307 ], [ 359481.705600000917912, 257093.154500000178814 ], [ 359478.043399997055531, 257093.500799998641014 ], [ 359474.378700003027916, 257093.820099998265505 ], [ 359470.711800001561642, 257094.112500000745058 ], [ 359467.04280000180006, 257094.377999998629093 ], [ 359470.048299998044968, 257111.988699998706579 ], [ 359484.735600002110004, 257111.091600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401330500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92848586, "LATITUDE": 18.34336236, "OBJECTID_1": 11975, "PARCEL_NO_": "105401330500", "Tax_Legal_": "PRINDSENS GADE 38 KINGS QUARTER", "Name": "DENNIS, JACQUELINE & MARIO", "Address": "PO Box 305236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3000, "Improved_V": 46600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.797015328599997, "SHAPE_Area": 133.5478079 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359062.162900000810623, 257111.419799998402596 ], [ 359060.873400002717972, 257096.379900000989437 ], [ 359051.992600001394749, 257097.322500001639128 ], [ 359053.298600003123283, 257112.142599999904633 ], [ 359062.162900000810623, 257111.419799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401491600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92465178, "LATITUDE": 18.34332784, "OBJECTID_1": 12196, "PARCEL_NO_": "105401491600", "Tax_Legal_": "PRINDSENS GADE 70 KINGS QUARTER", "Name": "STOUT, GARFIELD & DAISY (LIFE ESTATE)", "Address": "PO Box 303955", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 33600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.488967039499997, "SHAPE_Area": 220.938207495 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359470.048299998044968, 257111.988699998706579 ], [ 359467.04280000180006, 257094.377999998629093 ], [ 359465.343500003218651, 257094.491700001060963 ], [ 359463.643700003623962, 257094.599700000137091 ], [ 359461.943599998950958, 257094.701900001615286 ], [ 359460.243100002408028, 257094.798300001770258 ], [ 359455.723700001835823, 257095.048099998384714 ], [ 359456.516400001943111, 257112.517299998551607 ], [ 359456.576300002634525, 257112.811599999666214 ], [ 359470.048299998044968, 257111.988699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401351200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93162459, "LATITUDE": 18.34338904, "OBJECTID_1": 12015, "PARCEL_NO_": "105401351200", "Tax_Legal_": "COMMANDANT GADE OV 7AA QUEENS QUARTER", "Name": "GREAUX, FRED L", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8000, "Improved_V": 34200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.717639597599998, "SHAPE_Area": 121.96557012700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358729.008100003004074, 257112.651099998503923 ], [ 358729.145599998533726, 257096.750399999320507 ], [ 358721.715000003576279, 257095.933499999344349 ], [ 358721.571099996566772, 257112.834600001573563 ], [ 358729.008100003004074, 257112.651099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401330400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92857354, "LATITUDE": 18.34337089, "OBJECTID_1": 11974, "PARCEL_NO_": "105401330400", "Tax_Legal_": "PRINDSENS GADE 39 KINGS QUARTER", "Name": "JR. , MCCLEVERTY, JOHN & J.", "Address": "PO Box 306180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1800, "Improved_V": 57000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.968864723000003, "SHAPE_Area": 143.526203737 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359053.298600003123283, 257112.142599999904633 ], [ 359051.992600001394749, 257097.322500001639128 ], [ 359042.293300002813339, 257098.352000001817942 ], [ 359043.633400000631809, 257112.930799998342991 ], [ 359053.298600003123283, 257112.142599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401351100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93173859, "LATITUDE": 18.34338533, "OBJECTID_1": 12014, "PARCEL_NO_": "105401351100", "Tax_Legal_": "BRED GADE 7B QUEENS QUARTER", "Name": "BRYAN, CLARICE", "Address": "PO Box 9885", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 14500, "Improved_V": 111900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.674736232599997, "SHAPE_Area": 295.01946609100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358721.571099996566772, 257112.834600001573563 ], [ 358721.715000003576279, 257095.933499999344349 ], [ 358705.654500000178814, 257094.16780000180006 ], [ 358704.647900000214577, 257111.338100001215935 ], [ 358707.848999999463558, 257113.173000000417233 ], [ 358721.571099996566772, 257112.834600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401491500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92476539, "LATITUDE": 18.3433301, "OBJECTID_1": 12195, "PARCEL_NO_": "105401491500", "Tax_Legal_": "PRINDSENS GADE 69 KINGS QUARTER", "Name": "FRANCIS, ACIA", "Address": "PO Box 502906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 5500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.791633433299999, "SHAPE_Area": 204.84072546 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359456.576300002634525, 257112.811599999666214 ], [ 359456.516400001943111, 257112.517299998551607 ], [ 359455.723700001835823, 257095.048099998384714 ], [ 359443.123099997639656, 257095.744699999690056 ], [ 359446.174699999392033, 257113.446899998933077 ], [ 359456.576300002634525, 257112.811599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401330300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92864988, "LATITUDE": 18.34337834, "OBJECTID_1": 11973, "PARCEL_NO_": "105401330300", "Tax_Legal_": "PRINDSENS GADE 4O KINGS QUARTER", "Name": "JR. , MCCLEVERTY, J. & J.", "Address": "PO Box 306180", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3100, "Improved_V": 23100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.089691455400001, "SHAPE_Area": 94.402670033500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359043.633400000631809, 257112.930799998342991 ], [ 359042.293300002813339, 257098.352000001817942 ], [ 359041.0287000015378, 257098.486200001090765 ], [ 359035.826300002634525, 257099.038400001823902 ], [ 359037.190800003707409, 257113.4560999982059 ], [ 359043.633400000631809, 257112.930799998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401311000", "MAP": null, "PARCEL_NAM": "39 DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92964229, "LATITUDE": 18.34338234, "OBJECTID_1": 11951, "PARCEL_NO_": "105401311000", "Tax_Legal_": "DRONNINGENS GADE 38&39 KINGS QUARTER", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 516900, "Improved_V": 235000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.130228840400001, "SHAPE_Area": 182.88657432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358939.548000000417233, 257094.731499999761581 ], [ 358935.516099996864796, 257095.727699998766184 ], [ 358932.175399996340275, 257098.154899999499321 ], [ 358928.282399997115135, 257101.539099998772144 ], [ 358928.1283999979496, 257102.791400000452995 ], [ 358928.153499998152256, 257104.577799998223782 ], [ 358928.421400003135204, 257106.344300001859665 ], [ 358928.927000001072884, 257108.057900000363588 ], [ 358929.661100000143051, 257109.686799999326468 ], [ 358930.60980000346899, 257111.200800001621246 ], [ 358931.755599997937679, 257112.571699999272823 ], [ 358933.077200002968311, 257113.774000000208616 ], [ 358934.549999997019768, 257114.785399999469519 ], [ 358936.146700002253056, 257115.587000001221895 ], [ 358937.837600000202656, 257116.164099998772144 ], [ 358939.591300003230572, 257116.505899999290705 ], [ 358939.548000000417233, 257094.731499999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401491400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92486276, "LATITUDE": 18.34333991, "OBJECTID_1": 12193, "PARCEL_NO_": "105401491400", "Tax_Legal_": "PRINDSENS GADE 68 KINGS QUARTER", "Name": "ESANNASON, FERNANDO", "Address": "2 Old Mamaroneck Rd", "City": "White Plains", "State": "New York", "Zip": 10605, "Country": "United States", "Land_Value": 5100, "Improved_V": 25600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.390448327599998, "SHAPE_Area": 165.13322361 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359438.101300001144409, 257113.940099999308586 ], [ 359446.174699999392033, 257113.446899998933077 ], [ 359443.123099997639656, 257095.744699999690056 ], [ 359434.244599997997284, 257096.235500000417233 ], [ 359436.609600000083447, 257114.031199999153614 ], [ 359438.101300001144409, 257113.940099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401331500", "MAP": null, "PARCEL_NAM": "41 PRINDSENS GADE", "ACRE": "1,379 sq ft", "LONGITUDE": -64.92872002, "LATITUDE": 18.34338462, "OBJECTID_1": 11982, "PARCEL_NO_": "105401331500", "Tax_Legal_": "PRINDSENS GADE 33 & 41 KING QTR", "Name": "KING, JOSEPH", "Address": "PO Box 4333", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 6500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.595379748500001, "SHAPE_Area": 120.978372921 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359037.190800003707409, 257113.4560999982059 ], [ 359035.826300002634525, 257099.038400001823902 ], [ 359027.217600002884865, 257099.952199999243021 ], [ 359029.04730000346899, 257114.120200000703335 ], [ 359037.190800003707409, 257113.4560999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401301700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93033005, "LATITUDE": 18.34336621, "OBJECTID_1": 11925, "PARCEL_NO_": "105401301700", "Tax_Legal_": "COMMANDANT GADE 24 KINGS QTR", "Name": "RODRIGUEZ, GRAFTON & MARGOT", "Address": "155 Mercerdes Trl", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 5800, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.736829728399996, "SHAPE_Area": 266.838963455 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358871.042999997735023, 257108.940900001674891 ], [ 358868.545500002801418, 257092.955800000578165 ], [ 358851.96509999781847, 257097.1064000017941 ], [ 358858.111100003123283, 257114.456700000911951 ], [ 358871.042999997735023, 257108.940900001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401351300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93153981, "LATITUDE": 18.34339988, "OBJECTID_1": 12016, "PARCEL_NO_": "105401351300", "Tax_Legal_": "COMMANDANT GADE OV 7A QUEENS QUARTER", "Name": "SIMMONDS, DENISE", "Address": "140 Carver Loop", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 9400, "Improved_V": 25300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.690723056300001, "SHAPE_Area": 185.76693806599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358741.161799997091293, 257098.07149999961257 ], [ 358729.145599998533726, 257096.750399999320507 ], [ 358729.008100003004074, 257112.651099998503923 ], [ 358729.000399999320507, 257113.541600000113249 ], [ 358728.988899998366833, 257114.890799999237061 ], [ 358737.684399999678135, 257115.473499998450279 ], [ 358741.161799997091293, 257098.07149999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401330100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92886726, "LATITUDE": 18.34333908, "OBJECTID_1": 11972, "PARCEL_NO_": "105401330100", "Tax_Legal_": "PRINDSENS GADE 34,35,36,42&43 KINGS QUARTER", "Name": "FOSTER HOUSE INC", "Address": "PO Box 302866", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27800, "Improved_V": 152900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.184427039599996, "SHAPE_Area": 580.375803152 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359029.04730000346899, 257114.120200000703335 ], [ 359027.217600002884865, 257099.952199999243021 ], [ 359025.463699996471405, 257086.371800001710653 ], [ 359004.551700003445148, 257089.234700001776218 ], [ 359007.836300000548363, 257115.849899999797344 ], [ 359029.04730000346899, 257114.120200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401351400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93144508, "LATITUDE": 18.34341444, "OBJECTID_1": 12017, "PARCEL_NO_": "105401351400", "Tax_Legal_": "COMMANDANT GADE O V 7B QUEENS QUARTER", "Name": "SANTIAGO PETERSEN, CLAUDETTE", "Address": "PO Box 600136", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8400, "Improved_V": 32200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.810739349099997, "SHAPE_Area": 171.98311204199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358749.94030000269413, 257099.036699999123812 ], [ 358741.161799997091293, 257098.07149999961257 ], [ 358737.684399999678135, 257115.473499998450279 ], [ 358743.315200001001358, 257115.85080000013113 ], [ 358748.512100003659725, 257116.347199998795986 ], [ 358749.94030000269413, 257099.036699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401311100", "MAP": null, "PARCEL_NAM": "40 A & B DRONNINGENS GADE", "ACRE": "8,686 sq ft", "LONGITUDE": -64.92938686, "LATITUDE": 18.34333988, "OBJECTID_1": 11952, "PARCEL_NO_": "105401311100", "Tax_Legal_": "DRONNINGENS GADE 4OAB KINGS QUARTER", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 130300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.44951655700001, "SHAPE_Area": 962.67164372399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358980.997299998998642, 257108.731600001454353 ], [ 358979.460400000214577, 257091.234900001436472 ], [ 358955.340800002217293, 257092.666200000792742 ], [ 358954.717699997127056, 257073.258000001311302 ], [ 358945.166599996387959, 257081.26799999922514 ], [ 358946.7162000015378, 257114.361600000411272 ], [ 358968.627300001680851, 257116.173900000751019 ], [ 358975.186800003051758, 257116.716400001198053 ], [ 358981.746399998664856, 257117.25899999961257 ], [ 358980.997299998998642, 257108.731600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401351500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93133865, "LATITUDE": 18.34342148, "OBJECTID_1": 12018, "PARCEL_NO_": "105401351500", "Tax_Legal_": "COMMANDANT GADE OV 7BA QUEENS QUARTER", "Name": "ROGERS, DEAN A.", "Address": "PO Box 305431", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29500, "Improved_V": 83500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.335548042100001, "SHAPE_Area": 219.034412559 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358749.94030000269413, 257099.036699999123812 ], [ 358748.512100003659725, 257116.347199998795986 ], [ 358761.487499997019768, 257117.586599998176098 ], [ 358761.594499997794628, 257112.521800000220537 ], [ 358761.697899997234344, 257109.455200001597404 ], [ 358761.8783999979496, 257106.392299998551607 ], [ 358762.135999999940395, 257103.334800001233816 ], [ 358762.470399998128414, 257100.284800000488758 ], [ 358760.26410000026226, 257100.098900001496077 ], [ 358758.059199996292591, 257099.896899998188019 ], [ 358755.855800002813339, 257099.678899999707937 ], [ 358753.653999999165535, 257099.445000000298023 ], [ 358749.94030000269413, 257099.036699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401311200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92910463, "LATITUDE": 18.34345126, "OBJECTID_1": 11953, "PARCEL_NO_": "105401311200", "Tax_Legal_": "DRONNINGENS GADE 43 KINGS QUARTER", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 86800, "Improved_V": 214100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.457072546699997, "SHAPE_Area": 180.277017594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359000.901900000870228, 257109.431000001728535 ], [ 358980.997299998998642, 257108.731600001454353 ], [ 358981.746399998664856, 257117.25899999961257 ], [ 359002.075400002300739, 257118.940400000661612 ], [ 359000.901900000870228, 257109.431000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401483000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92607175000001, "LATITUDE": 18.34340445, "OBJECTID_1": 12184, "PARCEL_NO_": "105401483000", "Tax_Legal_": "64B PRINDSENS GADE KINGS QTR", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31300, "Improved_V": 54300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.878616020499997, "SHAPE_Area": 162.97713261499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359317.598899997770786, 257118.907900001853704 ], [ 359316.618900001049042, 257102.450899999588728 ], [ 359306.977700002491474, 257102.982799999415874 ], [ 359307.700800001621246, 257119.768399998545647 ], [ 359317.598899997770786, 257118.907900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401301800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93071262, "LATITUDE": 18.34337416, "OBJECTID_1": 11926, "PARCEL_NO_": "105401301800", "Tax_Legal_": "8 COMMANDANT GADE KINGS QUARTER", "Name": "RAWLINS, ANGELA", "Address": "2307 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9000, "Improved_V": 19400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.003394945, "SHAPE_Area": 801.07729451700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358820.276299998164177, 257113.831199999898672 ], [ 358845.547399997711182, 257103.563799999654293 ], [ 358837.704800002276897, 257084.879700001329184 ], [ 358836.831500001251698, 257085.489500001072884 ], [ 358832.196599997580051, 257088.548599999397993 ], [ 358827.431999996304512, 257091.401399999856949 ], [ 358822.546700000762939, 257094.042300000786781 ], [ 358817.550200000405312, 257096.4662000015378 ], [ 358796.586800001561642, 257105.367300000041723 ], [ 358804.562399998307228, 257120.68189999833703 ], [ 358820.276299998164177, 257113.831199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402080600", "MAP": null, "PARCEL_NAM": "1AAB MADAMBERG", "ACRE": null, "LONGITUDE": -64.9230666, "LATITUDE": 18.34323385, "OBJECTID_1": 12554, "PARCEL_NO_": "105402080600", "Tax_Legal_": "MADAMBERG 1AAB KINGS QUARTER", "Name": "WALLACE, DARRYL", "Address": "2222 Austin Lake Drive SE", "City": "Smyrna", "State": "Georgia", "Zip": 30082, "Country": "United States", "Land_Value": 67300, "Improved_V": 183100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.39956402300001, "SHAPE_Area": 1077.3135894699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359625.844300001859665, 257119.620099999010563 ], [ 359644.352700002491474, 257118.103100001811981 ], [ 359642.434500001370907, 257108.756999999284744 ], [ 359637.972900003194809, 257069.146499998867512 ], [ 359637.233599998056889, 257069.189100001007318 ], [ 359617.146999999880791, 257070.346900001168251 ], [ 359621.112499997019768, 257120.00789999961853 ], [ 359625.844300001859665, 257119.620099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401482900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92615911, "LATITUDE": 18.34341019, "OBJECTID_1": 12183, "PARCEL_NO_": "105401482900", "Tax_Legal_": "PRINDSENS GADE 64A KINGS QUARTER", "Name": "EVELYN LIMA REVOCABLE FAMILY TRUST", "Address": "PO Box 9282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20700, "Improved_V": 32800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.158109434499998, "SHAPE_Area": 147.18355843800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359307.700800001621246, 257119.768399998545647 ], [ 359306.977700002491474, 257102.982799999415874 ], [ 359298.225100003182888, 257103.465700000524521 ], [ 359298.997299998998642, 257120.318199999630451 ], [ 359307.700800001621246, 257119.768399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401291700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93102572, "LATITUDE": 18.34344056, "OBJECTID_1": 11909, "PARCEL_NO_": "105401291700", "Tax_Legal_": "22 COMMANDANT GADE KINGS QUARTER", "Name": "GARDEN ST #22 COMMANDANT GADE LLC", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21700, "Improved_V": 196700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.805040046000002, "SHAPE_Area": 183.772841384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358796.941699996590614, 257115.954199999570847 ], [ 358789.67400000244379, 257101.302600000053644 ], [ 358784.49099999666214, 257101.260499998927116 ], [ 358783.743299998342991, 257101.253499999642372 ], [ 358782.995700001716614, 257101.244699999690056 ], [ 358782.248000003397465, 257101.234099999070168 ], [ 358781.500399999320507, 257101.221599999815226 ], [ 358786.1216000020504, 257121.721799999475479 ], [ 358796.941699996590614, 257115.954199999570847 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401291600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93116142, "LATITUDE": 18.34345109, "OBJECTID_1": 11908, "PARCEL_NO_": "105401291600", "Tax_Legal_": "COMMANDANT GADE 19 QUEENS QUARTER", "Name": "FORDE, ALDEN A. E", "Address": "PO Box 6676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 40700, "Improved_V": 111200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.0202628097, "SHAPE_Area": 290.37497910399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358783.483599998056889, 257121.107799999415874 ], [ 358778.988399997353554, 257101.166200000792742 ], [ 358775.998499996960163, 257101.07319999858737 ], [ 358773.00959999859333, 257100.9510000012815 ], [ 358770.022100001573563, 257100.799400001764297 ], [ 358767.036300003528595, 257100.618400000035763 ], [ 358767.462300002574921, 257122.1706000007689 ], [ 358783.483599998056889, 257121.107799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401482800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92626853, "LATITUDE": 18.34342655, "OBJECTID_1": 12182, "PARCEL_NO_": "105401482800", "Tax_Legal_": "PRINDSENS GADE 63 KINGS QTR", "Name": "COPPER, G. & STEWART, J & OTHERS", "Address": "301 W 110th St", "City": "New York", "State": "New York", "Zip": 10026, "Country": "United States", "Land_Value": 6500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.986405831300004, "SHAPE_Area": 275.43243085699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359299.08669999986887, 257122.270300000905991 ], [ 359298.997299998998642, 257120.318199999630451 ], [ 359298.225100003182888, 257103.465700000524521 ], [ 359283.727899998426437, 257104.265500001609325 ], [ 359284.603900000452995, 257123.364199999719858 ], [ 359299.08669999986887, 257122.270300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401482700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92638265, "LATITUDE": 18.343436, "OBJECTID_1": 12181, "PARCEL_NO_": "105401482700", "Tax_Legal_": "PRINDSENS GADE 62B KINGS QUARTER", "Name": "COOPER, GLORIA", "Address": "PO Box 371", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.626781119699999, "SHAPE_Area": 189.32764067799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359284.603900000452995, 257123.364199999719858 ], [ 359283.727899998426437, 257104.265500001609325 ], [ 359274.07039999961853, 257104.698300000280142 ], [ 359275.061999998986721, 257124.856800001114607 ], [ 359284.603900000452995, 257123.364199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401482600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92646891, "LATITUDE": 18.34344557, "OBJECTID_1": 12180, "PARCEL_NO_": "105401482600", "Tax_Legal_": "PRINDSENS GADE 62A KINGS QUARTER", "Name": "SAUNDERS, BASIL & EVA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49400, "Improved_V": 145100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.094274237299999, "SHAPE_Area": 180.87877568799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359275.061999998986721, 257124.856800001114607 ], [ 359274.07039999961853, 257104.698300000280142 ], [ 359265.464400000870228, 257104.978100001811981 ], [ 359266.358599998056889, 257126.418000001460314 ], [ 359275.061999998986721, 257124.856800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401482400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92661169, "LATITUDE": 18.34345063, "OBJECTID_1": 12178, "PARCEL_NO_": "105401482400", "Tax_Legal_": "PRINDSENS GADE 61A KINGS QUARTER", "Name": "CASSIMERE, RUDOLPH & OTHERS", "Address": "PO Box 957", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4100, "Improved_V": 21700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.1801384846, "SHAPE_Area": 102.01241362499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359258.027699999511242, 257125.902199998497963 ], [ 359257.276799999177456, 257105.724800001829863 ], [ 359251.965599998831749, 257106.017799999564886 ], [ 359253.118900001049042, 257125.742199998348951 ], [ 359258.027699999511242, 257125.902199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401481600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92763419000001, "LATITUDE": 18.34348828, "OBJECTID_1": 12170, "PARCEL_NO_": "105401481600", "Tax_Legal_": "PRINDSENS GADE 55A KINGS QUARTER", "Name": "SMITH, WARREN C", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3000, "Improved_V": 114300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.120848386, "SHAPE_Area": 160.74758641599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359153.086300000548363, 257125.375999998301268 ], [ 359152.1925999969244, 257111.522399999201298 ], [ 359141.00280000269413, 257112.139699999243021 ], [ 359141.921099998056889, 257126.877099998295307 ], [ 359153.086300000548363, 257125.375999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401482300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92671335, "LATITUDE": 18.34345704, "OBJECTID_1": 12177, "PARCEL_NO_": "105401482300", "Tax_Legal_": "PRINDSENS GADE 6O KINGS QUARTER", "Name": "BENJAMIN, CONCHITA, ACACIA & JOHN", "Address": "PO Box 8815", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9000, "Improved_V": 37500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.091760883700005, "SHAPE_Area": 325.14623662100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359244.759800001978874, 257126.373599998652935 ], [ 359253.118900001049042, 257125.742199998348951 ], [ 359251.965599998831749, 257106.017799999564886 ], [ 359235.530100002884865, 257106.924600001424551 ], [ 359236.662000000476837, 257126.283500000834465 ], [ 359244.759800001978874, 257126.373599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401482200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92687969000001, "LATITUDE": 18.34346595, "OBJECTID_1": 12176, "PARCEL_NO_": "105401482200", "Tax_Legal_": "PRINDSENS GADE 59 KINGS QUARTER", "Name": "LIMA, DIEGO A", "Address": "2-3E ESTATE BOVONI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42400, "Improved_V": 252200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.5912283798, "SHAPE_Area": 366.24882345499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359236.662000000476837, 257126.283500000834465 ], [ 359235.530100002884865, 257106.924600001424551 ], [ 359216.604000002145767, 257107.909400001168251 ], [ 359218.441399998962879, 257127.789500001817942 ], [ 359236.662000000476837, 257126.283500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402080100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92397244, "LATITUDE": 18.34335184, "OBJECTID_1": 12548, "PARCEL_NO_": "105402080100", "Tax_Legal_": "MADAMBERG 4BC KINGS QTR", "Name": "BENJAMIN, SR., KENNETH R. & KENNETH R. BENJAMIN JR.", "Address": "PO Box 7814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23700, "Improved_V": 75200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.93901555, "SHAPE_Area": 849.56714524699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359548.288999997079372, 257125.976700000464916 ], [ 359540.83389999717474, 257085.699200000613928 ], [ 359520.278300002217293, 257088.50959999859333 ], [ 359526.905900001525879, 257127.729299999773502 ], [ 359548.288999997079372, 257125.976700000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401301600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93055854000001, "LATITUDE": 18.34347342, "OBJECTID_1": 11924, "PARCEL_NO_": "105401301600", "Tax_Legal_": "COMMANDANT GADE 9A KINGS QUARTER", "Name": "RODRIGUEZ, GRAFTON R. & MARGOT P", "Address": "9A Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42300, "Improved_V": 161300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.406450813000006, "SHAPE_Area": 485.31399125199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358855.301899999380112, 257115.654899999499321 ], [ 358850.33049999922514, 257101.62049999833107 ], [ 358845.547399997711182, 257103.563799999654293 ], [ 358820.276299998164177, 257113.831199999898672 ], [ 358826.182300001382828, 257128.075100000947714 ], [ 358855.301899999380112, 257115.654899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401492000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92416057, "LATITUDE": 18.34345963, "OBJECTID_1": 12200, "PARCEL_NO_": "105401492000", "Tax_Legal_": "HOSPITAL LINE 1 KING QTR", "Name": "LANDAIS, MARY J. & DENISE GREEN", "Address": "1419 Hospital Line", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4200, "Improved_V": 86200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.701534405499999, "SHAPE_Area": 188.11919698899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359520.724799998104572, 257127.737500000745058 ], [ 359517.572899997234344, 257109.085799999535084 ], [ 359508.119099996984005, 257109.620700001716614 ], [ 359510.108000002801418, 257128.203999999910593 ], [ 359520.724799998104572, 257127.737500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401491000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92425722, "LATITUDE": 18.34346212, "OBJECTID_1": 12191, "PARCEL_NO_": "105401491000", "Tax_Legal_": "HOSPITAL LINE 2 KINGS QUARTER", "Name": "FREDERICKS, CAROL & EGIDIO", "Address": "PO Box 8568", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4200, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.872846865299998, "SHAPE_Area": 191.28857054299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359510.108000002801418, 257128.203999999910593 ], [ 359508.119099996984005, 257109.620700001716614 ], [ 359506.33669999986887, 257109.772100001573563 ], [ 359497.26969999819994, 257110.325899999588728 ], [ 359500.317199997603893, 257128.585799999535084 ], [ 359510.108000002801418, 257128.203999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401350600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93187238, "LATITUDE": 18.34352714, "OBJECTID_1": 12009, "PARCEL_NO_": "105401350600", "Tax_Legal_": "NYE GADE 1 QUEENS QUARTER", "Name": "CLEC LLLP", "Address": "PO Box 1338", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 16300, "Improved_V": 121800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.655029670900007, "SHAPE_Area": 284.95296464099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358707.848999999463558, 257113.173000000417233 ], [ 358704.647900000214577, 257111.338100001215935 ], [ 358690.020900003612041, 257110.80689999833703 ], [ 358691.447300001978874, 257128.115699999034405 ], [ 358706.962499998509884, 257128.586399998515844 ], [ 358707.848999999463558, 257113.173000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401482100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92703717000001, "LATITUDE": 18.34347952, "OBJECTID_1": 12175, "PARCEL_NO_": "105401482100", "Tax_Legal_": "PRINDSENS GADE 58 KINGS QUARTER", "Name": "ALBERT E. HARTHMAN & ROSA L. HARTHMAN REVOCABLE TR", "Address": "PO Box 7068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41200, "Improved_V": 300000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.073698915600005, "SHAPE_Area": 299.67065714900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359218.441399998962879, 257127.789500001817942 ], [ 359216.604000002145767, 257107.909400001168251 ], [ 359202.160800002515316, 257108.860800001770258 ], [ 359203.289700001478195, 257129.24269999936223 ], [ 359218.441399998962879, 257127.789500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401490900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92436506, "LATITUDE": 18.34346967, "OBJECTID_1": 12190, "PARCEL_NO_": "105401490900", "Tax_Legal_": "HOSPITAL LINE 3 KINGS QTR", "Name": "DAWSON, CONSTANCE & PEDRO, E", "Address": "1425 Hospital Line", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8024748, "Country": "United States", "Land_Value": 4300, "Improved_V": 58300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.889676373599997, "SHAPE_Area": 229.336866093 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359500.317199997603893, 257128.585799999535084 ], [ 359497.26969999819994, 257110.325899999588728 ], [ 359484.735600002110004, 257111.091600000858307 ], [ 359487.778800003230572, 257129.106899999082088 ], [ 359500.317199997603893, 257128.585799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401350700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93169322, "LATITUDE": 18.34353721, "OBJECTID_1": 12010, "PARCEL_NO_": "105401350700", "Tax_Legal_": "NYE STRAEDE 2 QUEENS QUARTER", "Name": "AUBRYANT and KATHIA AUGUSTIN ELIEN", "Address": "PO BOX 584", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19300, "Improved_V": 51200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.698694448699996, "SHAPE_Area": 333.63113519900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358728.988899998366833, 257114.890799999237061 ], [ 358729.000399999320507, 257113.541600000113249 ], [ 358729.008100003004074, 257112.651099998503923 ], [ 358721.571099996566772, 257112.834600001573563 ], [ 358707.848999999463558, 257113.173000000417233 ], [ 358706.962499998509884, 257128.586399998515844 ], [ 358710.174300000071526, 257128.683899998664856 ], [ 358714.375500001013279, 257128.835299998521805 ], [ 358718.574799999594688, 257129.034800000488758 ], [ 358722.771499998867512, 257129.2820999994874 ], [ 358726.965000003576279, 257129.577399998903275 ], [ 358728.988899998366833, 257114.890799999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401490800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92449377, "LATITUDE": 18.34347701, "OBJECTID_1": 12189, "PARCEL_NO_": "105401490800", "Tax_Legal_": "HOSPITAL LINE 4 KINGS QUARTER", "Name": "DAWSON, CONSTANCE & PEDRO, E", "Address": "1425 Hospital Line", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8024748, "Country": "United States", "Land_Value": 5600, "Improved_V": 72700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.688609910099999, "SHAPE_Area": 264.94312217100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359487.778800003230572, 257129.106899999082088 ], [ 359484.735600002110004, 257111.091600000858307 ], [ 359470.048299998044968, 257111.988699998706579 ], [ 359473.073899999260902, 257129.718199998140335 ], [ 359487.778800003230572, 257129.106899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401490700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92462587, "LATITUDE": 18.34348399, "OBJECTID_1": 12188, "PARCEL_NO_": "105401490700", "Tax_Legal_": "HOSPITAL LINE 5 KINGS QUARTER", "Name": "ADAMS, LINDA", "Address": "8352 Meadowdale Dr", "City": "Grand Blanc", "State": "Michigan", "Zip": 48439, "Country": "United States", "Land_Value": 9100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.246127811900003, "SHAPE_Area": 234.582224895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359473.073899999260902, 257129.718199998140335 ], [ 359470.048299998044968, 257111.988699998706579 ], [ 359456.576300002634525, 257112.811599999666214 ], [ 359460.123700000345707, 257130.256400000303984 ], [ 359473.073899999260902, 257129.718199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401482000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92718025000001, "LATITUDE": 18.34349016, "OBJECTID_1": 12174, "PARCEL_NO_": "105401482000", "Tax_Legal_": "PRINDSENS GADE 57 KINGS QUARTER", "Name": "MARILYN PENN REVOCABLE LVING TRUST", "Address": "PO Box 7261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41200, "Improved_V": 239200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.181935282799998, "SHAPE_Area": 319.34115015899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359195.226999998092651, 257129.928100001066923 ], [ 359203.289700001478195, 257129.24269999936223 ], [ 359202.160800002515316, 257108.860800001770258 ], [ 359186.631999999284744, 257109.772300001233816 ], [ 359187.89190000295639, 257130.4983000010252 ], [ 359195.226999998092651, 257129.928100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401490600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92473866, "LATITUDE": 18.34349164, "OBJECTID_1": 12187, "PARCEL_NO_": "105401490600", "Tax_Legal_": "HOSPITAL LINE 6A KINGS", "Name": "RAMSEY, ELMOSA R. & ALPHONSO", "Address": "PO Box 2550", "City": "Richmond Hill", "State": "Georgia", "Zip": 31324, "Country": "United States", "Land_Value": 3600, "Improved_V": 48200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.725157908500002, "SHAPE_Area": 187.25677675899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359460.123700000345707, 257130.256400000303984 ], [ 359456.576300002634525, 257112.811599999666214 ], [ 359446.174699999392033, 257113.446899998933077 ], [ 359449.151100002229214, 257130.712499998509884 ], [ 359460.123700000345707, 257130.256400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401350800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93153105, "LATITUDE": 18.34355283, "OBJECTID_1": 12011, "PARCEL_NO_": "105401350800", "Tax_Legal_": "NYE STRAEDE 1 QUEENS QUARTER", "Name": "BERGBREITER, DEANIE", "Address": "PO BOX 621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13200, "Improved_V": 31200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.346028056000002, "SHAPE_Area": 211.41649718799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358743.315200001001358, 257115.85080000013113 ], [ 358737.684399999678135, 257115.473499998450279 ], [ 358728.988899998366833, 257114.890799999237061 ], [ 358726.965000003576279, 257129.577399998903275 ], [ 358730.431400001049042, 257129.857799999415874 ], [ 358733.895000003278255, 257130.171000000089407 ], [ 358737.355400003492832, 257130.516800001263618 ], [ 358740.8125, 257130.895399998873472 ], [ 358743.315200001001358, 257115.85080000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401490500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92482964, "LATITUDE": 18.3434976, "OBJECTID_1": 12186, "PARCEL_NO_": "105401490500", "Tax_Legal_": "HOSPITAL LINE 6B KINGS", "Name": "JOSE, ALPHEAS R", "Address": "1462 E 233rd St", "City": "Bronx", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 22900, "Improved_V": 54100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.942292480100001, "SHAPE_Area": 148.50532477199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359449.151100002229214, 257130.712499998509884 ], [ 359446.174699999392033, 257113.446899998933077 ], [ 359438.101300001144409, 257113.940099999308586 ], [ 359440.089299999177456, 257131.089200001209974 ], [ 359449.151100002229214, 257130.712499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401481400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92610494, "LATITUDE": 18.34353096, "OBJECTID_1": 12168, "PARCEL_NO_": "105401481400", "Tax_Legal_": "19 BJERGE GADE KINGS QUARTER", "Name": "RICHEMOND, EMLYNNE RICHARDS", "Address": "PO Box 1582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5000, "Improved_V": 28100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.064750406199998, "SHAPE_Area": 201.245607366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359318.241400003433228, 257129.69709999859333 ], [ 359317.598899997770786, 257118.907900001853704 ], [ 359307.700800001621246, 257119.768399998545647 ], [ 359298.997299998998642, 257120.318199999630451 ], [ 359299.08669999986887, 257122.270300000905991 ], [ 359299.491499997675419, 257131.104400001466274 ], [ 359318.241400003433228, 257129.69709999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401481900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92731737, "LATITUDE": 18.34350009, "OBJECTID_1": 12173, "PARCEL_NO_": "105401481900", "Tax_Legal_": "PRINDSENS GADE 56 KINGS QUARTER", "Name": "JONES, URA", "Address": "PO Box 10873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42500, "Improved_V": 189600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.895065949100001, "SHAPE_Area": 283.461502134 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359187.89190000295639, 257130.4983000010252 ], [ 359186.631999999284744, 257109.772300001233816 ], [ 359172.859499998390675, 257110.670699998736382 ], [ 359174.546999998390675, 257131.545699998736382 ], [ 359187.89190000295639, 257130.4983000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401470800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92794535, "LATITUDE": 18.34351703, "OBJECTID_1": 12142, "PARCEL_NO_": "105401470800", "Tax_Legal_": "PRINDSENS GADE 53 54 KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.434975890299995, "SHAPE_Area": 558.78323373299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359131.339800000190735, 257128.601399999111891 ], [ 359130.497400000691414, 257115.080299999564886 ], [ 359127.207599997520447, 257112.231899999082088 ], [ 359097.219999998807907, 257114.677200000733137 ], [ 359098.451899997889996, 257132.017599999904633 ], [ 359131.339800000190735, 257128.601399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401470500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92832216, "LATITUDE": 18.34354168, "OBJECTID_1": 12139, "PARCEL_NO_": "105401470500", "Tax_Legal_": "51A PRINDSENS GADE KINGS QUARTER", "Name": "ROGERS, ALFRED", "Address": "1600 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5300, "Improved_V": 40300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.982169846200001, "SHAPE_Area": 224.642684825 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359082.0253000035882, 257131.588199999183416 ], [ 359080.952799998223782, 257116.003800000995398 ], [ 359066.64919999986887, 257117.170200001448393 ], [ 359067.112899996340275, 257132.245999999344349 ], [ 359082.0253000035882, 257131.588199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401320800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92846368, "LATITUDE": 18.3435502, "OBJECTID_1": 11969, "PARCEL_NO_": "105401320800", "Tax_Legal_": "PRINDSENS GADE 50 KINGS QUARTER", "Name": "VARLACK, ELIZABETH M., JACQUENETTE E. & YVONNE", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5000, "Improved_V": 30900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.302712622900003, "SHAPE_Area": 227.058207549 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359067.112899996340275, 257132.245999999344349 ], [ 359066.64919999986887, 257117.170200001448393 ], [ 359050.909199997782707, 257118.453699998557568 ], [ 359052.207900002598763, 257132.903499998152256 ], [ 359067.112899996340275, 257132.245999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401470700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92814394, "LATITUDE": 18.34353523, "OBJECTID_1": 12141, "PARCEL_NO_": "105401470700", "Tax_Legal_": "PRINDSENS GADE 52B KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68500, "Improved_V": 157000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.054159177800003, "SHAPE_Area": 166.79184905599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359098.451899997889996, 257132.017599999904633 ], [ 359097.219999998807907, 257114.677200000733137 ], [ 359087.561999998986721, 257115.464800000190735 ], [ 359089.113499999046326, 257132.98759999871254 ], [ 359098.451899997889996, 257132.017599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401291500", "MAP": null, "PARCEL_NAM": "21COMMANDANT GADE", "ACRE": null, "LONGITUDE": -64.9309776, "LATITUDE": 18.34356437, "OBJECTID_1": 11907, "PARCEL_NO_": "105401291500", "Tax_Legal_": "COMMANDANT GADE 21 KINGS QUARTER", "Name": "BRYAN, MARIO & BUTLER, SHEILA", "Address": "PO BOX 3769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2900, "Improved_V": 84700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.763491587700003, "SHAPE_Area": 157.29720414600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358802.085400000214577, 257126.323699999600649 ], [ 358796.941699996590614, 257115.954199999570847 ], [ 358786.1216000020504, 257121.721799999475479 ], [ 358788.730200000107288, 257133.293800000101328 ], [ 358802.085400000214577, 257126.323699999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401350900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93137301, "LATITUDE": 18.34356843, "OBJECTID_1": 12012, "PARCEL_NO_": "105401350900", "Tax_Legal_": "COMMANDANT GADE O V 7C QUEENS QUARTER", "Name": "HYPOLITE RESIDENTIAL INC", "Address": "PO Box 301826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15300, "Improved_V": 61500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.976030886800004, "SHAPE_Area": 301.05881689500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358761.487499997019768, 257117.586599998176098 ], [ 358748.512100003659725, 257116.347199998795986 ], [ 358743.315200001001358, 257115.85080000013113 ], [ 358740.8125, 257130.895399998873472 ], [ 358742.537500001490116, 257131.096599999815226 ], [ 358744.261500000953674, 257131.306000001728535 ], [ 358745.984499998390675, 257131.523499999195337 ], [ 358747.706500001251698, 257131.749099999666214 ], [ 358761.1503000035882, 257133.543000001460314 ], [ 358761.487499997019768, 257117.586599998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401301500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93076983, "LATITUDE": 18.34355941, "OBJECTID_1": 11923, "PARCEL_NO_": "105401301500", "Tax_Legal_": "COMMANDANT GADE 9 KINGS QUARTER", "Name": "ANTHONY RODRIGUEZ", "Address": "11018 SEMINOLE SPRING LANE", "City": "Houston", "State": "Texas", "Zip": 770895864, "Country": "United States", "Land_Value": 5500, "Improved_V": 23400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.126767576800006, "SHAPE_Area": 256.25541357100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358826.182300001382828, 257128.075100000947714 ], [ 358820.276299998164177, 257113.831199999898672 ], [ 358804.409199997782707, 257120.680599998682737 ], [ 358811.244000002741814, 257134.302400000393391 ], [ 358826.182300001382828, 257128.075100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401311000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92963779, "LATITUDE": 18.34357499, "OBJECTID_1": 11951, "PARCEL_NO_": "105401311000", "Tax_Legal_": "DRONNINGENS GADE 38&39 KINGS QUARTER", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 516900, "Improved_V": 235000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.766760417999997, "SHAPE_Area": 185.44428527100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358942.596500001847744, 257121.784699998795986 ], [ 358939.645499996840954, 257121.41609999909997 ], [ 358939.456200003623962, 257121.391600001603365 ], [ 358937.248400002717972, 257120.972300000488758 ], [ 358935.098999999463558, 257120.316399998962879 ], [ 358933.03320000320673, 257119.431600000709295 ], [ 358931.075300000607967, 257118.328400000929832 ], [ 358929.248400002717972, 257117.01969999819994 ], [ 358928.165700003504753, 257133.318900000303984 ], [ 358942.008500002324581, 257133.943999998271465 ], [ 358942.596500001847744, 257121.784699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401310600", "MAP": null, "PARCEL_NAM": "36AA DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92994422, "LATITUDE": 18.34356485, "OBJECTID_1": 11949, "PARCEL_NO_": "105401310600", "Tax_Legal_": "DRONNINGENS GADE 36AA & 36BA KINGS QTR", "Name": "HONZEN, S. & HARRINGTON, R", "Address": "PO Box 6227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046227, "Country": "United States", "Land_Value": 6400, "Improved_V": 153500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.984297999299997, "SHAPE_Area": 410.076085041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358917.300200000405312, 257127.134199999272823 ], [ 358912.072200000286102, 257127.210999999195337 ], [ 358911.837300002574921, 257116.105399999767542 ], [ 358891.573100000619888, 257115.686099998652935 ], [ 358890.809000000357628, 257133.535300001502037 ], [ 358917.130900003015995, 257134.312399998307228 ], [ 358917.300200000405312, 257127.134199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401310900", "MAP": null, "PARCEL_NAM": "36A DRONNINGENS GADE", "ACRE": "12,250 sq ft", "LONGITUDE": -64.92983817, "LATITUDE": 18.34348273, "OBJECTID_1": 11950, "PARCEL_NO_": "105401310900", "Tax_Legal_": "DRONGNS GADE 36A,36BB&41 KINGS QTR", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 317800, "Improved_V": 293300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.073439603, "SHAPE_Area": 618.69160317700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358925.61540000140667, 257133.20380000025034 ], [ 358928.165700003504753, 257133.318900000303984 ], [ 358929.248400002717972, 257117.01969999819994 ], [ 358928.170900002121925, 257116.093299999833107 ], [ 358926.603100001811981, 257114.483300000429153 ], [ 358925.218699999153614, 257112.712999999523163 ], [ 358924.034199997782707, 257110.803300000727177 ], [ 358923.063400000333786, 257108.776500001549721 ], [ 358922.317800000309944, 257106.656500000506639 ], [ 358921.806000001728535, 257104.468299999833107 ], [ 358894.118699997663498, 257104.960200000554323 ], [ 358891.573100000619888, 257115.686099998652935 ], [ 358911.837300002574921, 257116.105399999767542 ], [ 358912.072200000286102, 257127.210999999195337 ], [ 358917.300200000405312, 257127.134199999272823 ], [ 358917.130900003015995, 257134.312399998307228 ], [ 358925.582299999892712, 257134.529100000858307 ], [ 358925.61540000140667, 257133.20380000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401481800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92745491, "LATITUDE": 18.34351846, "OBJECTID_1": 12172, "PARCEL_NO_": "105401481800", "Tax_Legal_": "PRINDSENS GADE 55B KINGS QUARTER", "Name": "HAMLIN, BRUCE B and EDELL H", "Address": "PO Box 2449", "City": "Umatilla", "State": "Florida", "Zip": 32784, "Country": "United States", "Land_Value": 31400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.236183218299999, "SHAPE_Area": 155.75335084899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359169.851000003516674, 257133.948300000280142 ], [ 359168.627999998629093, 257110.725099999457598 ], [ 359161.838200002908707, 257110.990200001746416 ], [ 359163.407300002872944, 257134.64299999922514 ], [ 359169.851000003516674, 257133.948300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401301400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93016312, "LATITUDE": 18.34343669, "OBJECTID_1": 11922, "PARCEL_NO_": "105401301400", "Tax_Legal_": "DRONNINGENS GADE 35BB KINGS QUARTER", "Name": "MICHELE SHULTERBRANDT AGURKIS TRUST", "Address": "P.O. BOX 5325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.30067872799999, "SHAPE_Area": 668.98800838299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358886.17509999871254, 257134.535500001162291 ], [ 358885.812399998307228, 257131.0 ], [ 358885.693000003695488, 257127.447999998927116 ], [ 358885.817199997603893, 257123.896099999547005 ], [ 358886.18469999730587, 257120.361200001090765 ], [ 358886.793600000441074, 257116.859700001776218 ], [ 358886.920299999415874, 257116.271699998527765 ], [ 358888.132399998605251, 257110.393399998545647 ], [ 358889.170699998736382, 257104.481899999082088 ], [ 358890.034299999475479, 257098.542300000786781 ], [ 358890.72240000218153, 257092.579799998551607 ], [ 358868.545500002801418, 257092.955800000578165 ], [ 358871.042999997735023, 257108.940900001674891 ], [ 358875.134700000286102, 257135.128699999302626 ], [ 358886.17509999871254, 257134.535500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401320600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92873531, "LATITUDE": 18.34357274, "OBJECTID_1": 11967, "PARCEL_NO_": "105401320600", "Tax_Legal_": "PRINDSENS GADE 48 KINGS QTR", "Name": "CHARLES, KATHERINE E. & AMOS J", "Address": "PO Box 6125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3500, "Improved_V": 34800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.089145928299999, "SHAPE_Area": 152.852992769 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359036.468900002539158, 257133.806400001049042 ], [ 359035.177100002765656, 257119.736600000411272 ], [ 359024.652400001883507, 257120.594900000840425 ], [ 359026.01349999755621, 257135.362300001084805 ], [ 359036.468900002539158, 257133.806400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401481700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92753179, "LATITUDE": 18.34352546, "OBJECTID_1": 12171, "PARCEL_NO_": "105401481700", "Tax_Legal_": "PRINDSENS GADE 55AA KINGS QUARTER", "Name": "PRINDSENS GADE CORPORATION & A.& L. THOMAS", "Address": "1730 Santana", "City": "Arecibo", "State": "Puerto Rico", "Zip": 612, "Country": "United States", "Land_Value": 5700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.171297203600005, "SHAPE_Area": 231.40413376399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359163.407300002872944, 257134.64299999922514 ], [ 359161.838200002908707, 257110.990200001746416 ], [ 359152.1925999969244, 257111.522399999201298 ], [ 359153.086300000548363, 257125.375999998301268 ], [ 359153.744000002741814, 257135.570900000631809 ], [ 359163.407300002872944, 257134.64299999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401301300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93027865000001, "LATITUDE": 18.34354289, "OBJECTID_1": 11921, "PARCEL_NO_": "105401301300", "Tax_Legal_": "COMMANDANT GADE 25 KINGS QUARTER", "Name": "RODRIGUEZ, GRAFTON & MARGOT", "Address": "155 Mercerdes Trl", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 5900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.571415718500006, "SHAPE_Area": 283.36394325800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358875.134700000286102, 257135.128699999302626 ], [ 358871.042999997735023, 257108.940900001674891 ], [ 358858.111100003123283, 257114.456700000911951 ], [ 358865.614900000393391, 257135.6402000002563 ], [ 358875.134700000286102, 257135.128699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401491200", "MAP": "D9-8636-T012", "PARCEL_NAM": "9 HOSPITAL LINE (RECONF.)", "ACRE": "0.91", "LONGITUDE": -64.92545419, "LATITUDE": 18.34344334, "OBJECTID_1": 12192, "PARCEL_NO_": "105401491200", "Tax_Legal_": "PRINDSENS GADE 66 KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.71580911199999, "SHAPE_Area": 3538.7455995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359422.219800002872944, 257131.831900000572205 ], [ 359420.628700003027916, 257114.018800001591444 ], [ 359436.609600000083447, 257114.031199999153614 ], [ 359434.244599997997284, 257096.235500000417233 ], [ 359325.765900000929832, 257102.232200000435114 ], [ 359324.334799997508526, 257103.837600000202656 ], [ 359326.239399999380112, 257135.821400001645088 ], [ 359422.219800002872944, 257131.831900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401481500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92762505, "LATITUDE": 18.34359778, "OBJECTID_1": 12169, "PARCEL_NO_": "105401481500", "Tax_Legal_": "PRINDSENS GADE 55AB KINGS QUARTER", "Name": "SMITH, WARREN C", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2700, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.5370699311, "SHAPE_Area": 112.520140879 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359153.744000002741814, 257135.570900000631809 ], [ 359153.086300000548363, 257125.375999998301268 ], [ 359141.921099998056889, 257126.877099998295307 ], [ 359142.529799997806549, 257136.647700000554323 ], [ 359153.744000002741814, 257135.570900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401320700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92860929, "LATITUDE": 18.34357457, "OBJECTID_1": 11968, "PARCEL_NO_": "105401320700", "Tax_Legal_": "PRINDSENS GADE 49 KINGS QUARTER", "Name": "GEORGES, CHARLES W", "Address": "PO Box 962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.085454784600003, "SHAPE_Area": 272.31371412099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359052.472000002861023, 257135.842999998480082 ], [ 359052.207900002598763, 257132.903499998152256 ], [ 359050.909199997782707, 257118.453699998557568 ], [ 359035.177100002765656, 257119.736600000411272 ], [ 359036.468900002539158, 257133.806400001049042 ], [ 359036.739000000059605, 257136.747800000011921 ], [ 359052.472000002861023, 257135.842999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401321000", "MAP": null, "PARCEL_NAM": "47A PRINDSENS GADE", "ACRE": "1,555 sq ft", "LONGITUDE": -64.92890706, "LATITUDE": 18.34359207, "OBJECTID_1": 11971, "PARCEL_NO_": "105401321000", "Tax_Legal_": "PRINDSENS GADE 47A KINGS QTR.", "Name": "PERKINS, JR. & OTHERS", "Address": "PO Box 298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.789251386799997, "SHAPE_Area": 89.419881532900007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359015.961400002241135, 257136.8581000007689 ], [ 359014.475000001490116, 257121.424800001084805 ], [ 359008.583499997854233, 257121.905200000852346 ], [ 359010.528599999845028, 257137.666499998420477 ], [ 359015.961400002241135, 257136.8581000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401470600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9282195, "LATITUDE": 18.34356066, "OBJECTID_1": 12140, "PARCEL_NO_": "105401470600", "Tax_Legal_": "PRINDSENS GADE 52A KINGS QUARTER", "Name": "FORD, HERMAN & SCHEMBRI, HELEN", "Address": "309 Lafayette Ave", "City": "Brooklyn", "State": "New York", "Zip": 11238, "Country": "United States", "Land_Value": 4300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.512412965499998, "SHAPE_Area": 146.00726488399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359089.383799999952316, 257136.039500001817942 ], [ 359089.113499999046326, 257132.98759999871254 ], [ 359087.561999998986721, 257115.464800000190735 ], [ 359080.952799998223782, 257116.003800000995398 ], [ 359082.0253000035882, 257131.588199999183416 ], [ 359082.465899996459484, 257137.990200001746416 ], [ 359089.383799999952316, 257136.039500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401480500", "MAP": null, "PARCEL_NAM": "17B HOSPITAL LINE", "ACRE": "1,490 sq ft", "LONGITUDE": -64.92702679, "LATITUDE": 18.34361296, "OBJECTID_1": 12160, "PARCEL_NO_": "105401480500", "Tax_Legal_": "HOSPITAL LINE 17A&17B KINGS QUARTER", "Name": "IGLESIA DE DIOS PENTECOSTAL INC", "Address": "1520 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42100, "Improved_V": 498200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.123219752700003, "SHAPE_Area": 147.90153102 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359219.114900000393391, 257137.383499998599291 ], [ 359218.441399998962879, 257127.789500001817942 ], [ 359203.289700001478195, 257129.24269999936223 ], [ 359203.379000000655651, 257138.732999999076128 ], [ 359219.114900000393391, 257137.383499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401291300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93113668, "LATITUDE": 18.34362153, "OBJECTID_1": 11905, "PARCEL_NO_": "105401291300", "Tax_Legal_": "COMMANDANT GADE OV 18 QUEENS QUARTER", "Name": "LGN ENTERPRISES LLC", "Address": "PO Box 6756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53800, "Improved_V": 250700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.977002961799997, "SHAPE_Area": 312.53165177300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358787.425700001418591, 257138.595400001853704 ], [ 358783.483599998056889, 257121.107799999415874 ], [ 358767.462300002574921, 257122.1706000007689 ], [ 358767.491800002753735, 257123.659400001168251 ], [ 358767.70440000295639, 257127.704799998551607 ], [ 358767.887500002980232, 257131.7516999989748 ], [ 358768.041199997067451, 257135.799699999392033 ], [ 358768.165399998426437, 257139.848799999803305 ], [ 358787.425700001418591, 257138.595400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401302200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93051174, "LATITUDE": 18.34359098, "OBJECTID_1": 11929, "PARCEL_NO_": "105401302200", "Tax_Legal_": "COMMANDANT GADE 10 A KINGS QTR", "Name": "RODRIGUEZ, GRAFTON & MARGOT", "Address": "155 Mercerdes Trl", "City": "Fayetteville", "State": "Georgia", "Zip": 30214, "Country": "United States", "Land_Value": 4300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.025797378099995, "SHAPE_Area": 395.9097417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358843.433399997651577, 257134.551300000399351 ], [ 358859.311999998986721, 257126.975299999117851 ], [ 358855.301899999380112, 257115.654899999499321 ], [ 358826.182300001382828, 257128.075100000947714 ], [ 358831.273299999535084, 257140.353199999779463 ], [ 358843.433399997651577, 257134.551300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401291400", "MAP": null, "PARCEL_NAM": "20 COMMANDANT GADE", "ACRE": null, "LONGITUDE": -64.93094042, "LATITUDE": 18.34366221, "OBJECTID_1": 11906, "PARCEL_NO_": "105401291400", "Tax_Legal_": "COMMANDANT GADE 20 KINGS QTR", "Name": "FC HOLDINGS IV LLC, NIELSEN, R. &", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2600, "Improved_V": 75000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.021072250099998, "SHAPE_Area": 187.04865446700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358807.165100000798702, 257136.564399998635054 ], [ 358802.085400000214577, 257126.323699999600649 ], [ 358788.730200000107288, 257133.293800000101328 ], [ 358791.302199997007847, 257144.703499998897314 ], [ 358807.165100000798702, 257136.564399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105401490100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92511293, "LATITUDE": 18.34362047, "OBJECTID_1": 12185, "PARCEL_NO_": "105401490100", "Tax_Legal_": "HOSPITAL GROUND 9 KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 482400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 403.77030300299998, "SHAPE_Area": 1359.1799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359521.517300002276897, 257132.426899999380112 ], [ 359520.724799998104572, 257127.737500000745058 ], [ 359511.641500003635883, 257128.115100000053644 ], [ 359500.317199997603893, 257128.585799999535084 ], [ 359487.778800003230572, 257129.106899999082088 ], [ 359473.073899999260902, 257129.718199998140335 ], [ 359460.123700000345707, 257130.256400000303984 ], [ 359449.151100002229214, 257130.712499998509884 ], [ 359440.089299999177456, 257131.089200001209974 ], [ 359326.239399999380112, 257135.821400001645088 ], [ 359326.787699997425079, 257145.029199998825788 ], [ 359521.517300002276897, 257132.426899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401301200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93071336, "LATITUDE": 18.34367872, "OBJECTID_1": 11920, "PARCEL_NO_": "105401301200", "Tax_Legal_": "COMMANDANT GADE 10 KINGS QUARTER", "Name": "LA BEET, SHANA & SHAWN", "Address": "PO Box 6242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4300, "Improved_V": 87400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.322742741900001, "SHAPE_Area": 218.707772643 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358831.273299999535084, 257140.353199999779463 ], [ 358826.182300001382828, 257128.075100000947714 ], [ 358811.092000000178814, 257134.148899998515844 ], [ 358817.415700003504753, 257147.054299999028444 ], [ 358831.273299999535084, 257140.353199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401350100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93185663, "LATITUDE": 18.3436956, "OBJECTID_1": 12004, "PARCEL_NO_": "105401350100", "Tax_Legal_": "STORE GADE 3 QUEEN QUARTER", "Name": "WATLINGTON, ELESA", "Address": "PO Box 261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13800, "Improved_V": 32700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.011185005199998, "SHAPE_Area": 246.109254596 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358708.653200000524521, 257131.077199999243021 ], [ 358691.648800000548363, 257130.561299998313189 ], [ 358692.848499998450279, 257145.118500001728535 ], [ 358708.520000003278255, 257146.716299999505281 ], [ 358708.653200000524521, 257131.077199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401310600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92993136, "LATITUDE": 18.34370013, "OBJECTID_1": 11949, "PARCEL_NO_": "105401310600", "Tax_Legal_": "DRONNINGENS GADE 36AA & 36BA KINGS QTR", "Name": "HONZEN, S. & HARRINGTON, R", "Address": "PO Box 6227", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046227, "Country": "United States", "Land_Value": 6400, "Improved_V": 153500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.829410303299994, "SHAPE_Area": 338.163107588 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358916.828000001609325, 257147.151099998503923 ], [ 358916.860799998044968, 257145.756999999284744 ], [ 358917.130900003015995, 257134.312399998307228 ], [ 358890.809000000357628, 257133.535300001502037 ], [ 358891.620600000023842, 257146.956399999558926 ], [ 358916.828000001609325, 257147.151099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401481300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92609693, "LATITUDE": 18.34365369, "OBJECTID_1": 12167, "PARCEL_NO_": "105401481300", "Tax_Legal_": "HOSPITAL LINE 11 KINGS QUARTER", "Name": "JAMES, ROBERT", "Address": "PO Box 9354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3900, "Improved_V": 31900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.7367480642, "SHAPE_Area": 311.16620539000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359319.226400002837181, 257146.238000001758337 ], [ 359318.241400003433228, 257129.69709999859333 ], [ 359299.491499997675419, 257131.104400001466274 ], [ 359300.23929999768734, 257147.426899999380112 ], [ 359319.226400002837181, 257146.238000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401350200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9317406, "LATITUDE": 18.34370295, "OBJECTID_1": 12005, "PARCEL_NO_": "105401350200", "Tax_Legal_": "STORE GRONNE GADE 2B QUEENS QUARTER", "Name": "CONNELL, SARA C. & OLMAN", "Address": "2B Store Gronne Gade", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7800, "Improved_V": 75700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.5262414607, "SHAPE_Area": 132.731290406 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358716.988499999046326, 257131.395100001245737 ], [ 358715.26690000295639, 257131.314500000327826 ], [ 358713.545100003480911, 257131.241900000721216 ], [ 358711.822899997234344, 257131.177499998360872 ], [ 358710.100400000810623, 257131.121100001037121 ], [ 358708.653200000524521, 257131.077199999243021 ], [ 358708.520000003278255, 257146.716299999505281 ], [ 358716.85080000013113, 257147.565600000321865 ], [ 358716.988499999046326, 257131.395100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401481200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92625701, "LATITUDE": 18.34362528, "OBJECTID_1": 12166, "PARCEL_NO_": "105401481200", "Tax_Legal_": "HOSPITAL LINE 12 KINGS QUARTER", "Name": "LUTHER BENJAMIN", "Address": "1645 Lincoln Place", "City": "Brooklyn", "State": "New York", "Zip": 112335102, "Country": "United States", "Land_Value": 7500, "Improved_V": 72700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.221762028699999, "SHAPE_Area": 364.22890697299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359300.23929999768734, 257147.426899999380112 ], [ 359299.491499997675419, 257131.104400001466274 ], [ 359299.08669999986887, 257122.270300000905991 ], [ 359284.603900000452995, 257123.364199999719858 ], [ 359285.749099999666214, 257148.334100000560284 ], [ 359300.23929999768734, 257147.426899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105402090300", "MAP": null, "PARCEL_NAM": "D", "ACRE": null, "LONGITUDE": -64.92085064, "LATITUDE": 18.34300748, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.15758513200001, "SHAPE_Area": 399.19235211900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359833.599500000476837, 257072.443300001323223 ], [ 359833.66330000013113, 257078.547600001096725 ], [ 359840.244800001382828, 257078.809000000357628 ], [ 359847.189499996602535, 257078.841699998825788 ], [ 359854.130999997258186, 257078.630699999630451 ], [ 359861.060900002717972, 257078.176100000739098 ], [ 359867.970499999821186, 257077.47859999909997 ], [ 359874.851400002837181, 257076.538899999111891 ], [ 359876.184199996292591, 257076.349700000137091 ], [ 359877.951399996876717, 257075.885499998927116 ], [ 359879.641199998557568, 257075.190400000661612 ], [ 359881.223399996757507, 257074.276700001209974 ], [ 359882.670100003480911, 257073.160700000822544 ], [ 359883.95549999922514, 257071.862199999392033 ], [ 359885.056800000369549, 257070.404199998825788 ], [ 359885.954300001263618, 257068.812699999660254 ], [ 359886.632200002670288, 257067.11600000038743 ], [ 359887.078299999237061, 257065.344200000166893 ], [ 359887.28490000218153, 257063.5287000015378 ], [ 359887.248099997639656, 257061.701999999582767 ], [ 359886.968699999153614, 257059.89640000090003 ], [ 359886.45160000026226, 257058.143899999558926 ], [ 359885.706000000238419, 257056.47580000013113 ], [ 359884.745099999010563, 257054.921799998730421 ], [ 359876.821599997580051, 257055.378499999642372 ], [ 359878.94650000333786, 257057.481300000101328 ], [ 359879.824400000274181, 257058.521099999547005 ], [ 359880.502999998629093, 257059.700699999928474 ], [ 359880.960600003600121, 257060.982299998402596 ], [ 359881.182700000703335, 257062.324999999254942 ], [ 359881.162100002169609, 257063.685699999332428 ], [ 359880.899499997496605, 257065.021000001579523 ], [ 359880.403200000524521, 257066.288100000470877 ], [ 359879.6891999989748, 257067.446600001305342 ], [ 359878.780299998819828, 257068.459499999880791 ], [ 359877.70549999922514, 257069.294199999421835 ], [ 359876.499300003051758, 257069.924199998378754 ], [ 359875.200099997222424, 257070.329199999570847 ], [ 359874.13120000064373, 257070.481699999421835 ], [ 359867.358000002801418, 257071.412500001490116 ], [ 359860.555900000035763, 257072.101100001484156 ], [ 359853.733499996364117, 257072.546700000762939 ], [ 359846.899599999189377, 257072.748799998313189 ], [ 359840.062799997627735, 257072.707100000232458 ], [ 359833.599500000476837, 257072.443300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401350300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93166122, "LATITUDE": 18.34370753, "OBJECTID_1": 12006, "PARCEL_NO_": "105401350300", "Tax_Legal_": "STORE GRONNE GADE 2A QUEENS QUARTER", "Name": "CONNELL, OLMAN & SARA", "Address": "PO Box 304933", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8000, "Improved_V": 12100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.629709029300002, "SHAPE_Area": 138.377807367 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358725.623599998652935, 257131.922600001096725 ], [ 358723.465999998152256, 257131.771499998867512 ], [ 358721.307599999010563, 257131.633299998939037 ], [ 358719.148400001227856, 257131.507800001651049 ], [ 358716.988499999046326, 257131.395100001245737 ], [ 358716.85080000013113, 257147.565600000321865 ], [ 358725.121200002729893, 257148.408900000154972 ], [ 358725.623599998652935, 257131.922600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401320400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92859711, "LATITUDE": 18.34370316, "OBJECTID_1": 11965, "PARCEL_NO_": "105401320400", "Tax_Legal_": "HOSPITAL LINE 26A KINGS QUARTER", "Name": "GEORGES, CHARLES & ANNA", "Address": "PO Box 962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3700, "Improved_V": 19500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.109030637899998, "SHAPE_Area": 178.00341010599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359053.447999998927116, 257146.702100001275539 ], [ 359052.472000002861023, 257135.842999998480082 ], [ 359036.739000000059605, 257136.747800000011921 ], [ 359037.810199998319149, 257148.414599999785423 ], [ 359053.447999998927116, 257146.702100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401301100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93040504, "LATITUDE": 18.34368049, "OBJECTID_1": 11919, "PARCEL_NO_": "105401301100", "Tax_Legal_": "COMMANDANT GADE 11B KINGS QUARTER", "Name": "CONNOR, DUNCAN & LEORTHA", "Address": "3566 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.323378989099993, "SHAPE_Area": 264.18428947699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358855.50959999859333, 257145.404100000858307 ], [ 358864.461000002920628, 257141.511199999600649 ], [ 358859.311999998986721, 257126.975299999117851 ], [ 358843.433399997651577, 257134.551300000399351 ], [ 358848.406599998474121, 257148.493099998682737 ], [ 358855.50959999859333, 257145.404100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401481100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9263703, "LATITUDE": 18.34363452, "OBJECTID_1": 12165, "PARCEL_NO_": "105401481100", "Tax_Legal_": "13A HOSPITAL LINE KINGS QUARTER", "Name": "SEWER ROBERTS, ANDREA & A. SEWER (ESTATE)", "Address": "PO Box 10845", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3400, "Improved_V": 85400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.966392812600006, "SHAPE_Area": 233.33702193600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359285.749099999666214, 257148.334100000560284 ], [ 359284.603900000452995, 257123.364199999719858 ], [ 359275.061999998986721, 257124.856800001114607 ], [ 359276.215499997138977, 257148.603700000792742 ], [ 359285.749099999666214, 257148.334100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401481000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92645745, "LATITUDE": 18.34364519, "OBJECTID_1": 12164, "PARCEL_NO_": "105401481000", "Tax_Legal_": "HOSPITAL LINE 13B KINGS QUARTER", "Name": "FRANCIS, SIMONE R. D. & STEPHANIE M. D.", "Address": "PO Box 334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.670658585799998, "SHAPE_Area": 208.572694974 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359276.215499997138977, 257148.603700000792742 ], [ 359275.061999998986721, 257124.856800001114607 ], [ 359266.358599998056889, 257126.418000001460314 ], [ 359267.144100002944469, 257149.355500001460314 ], [ 359276.215499997138977, 257148.603700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401291200", "MAP": null, "PARCEL_NAM": "19 COMMANDANT GADE", "ACRE": null, "LONGITUDE": -64.93090689, "LATITUDE": 18.34373417, "OBJECTID_1": 11904, "PARCEL_NO_": "105401291200", "Tax_Legal_": "COMMANDANT GADE 19 KINGS QUARTER", "Name": "FC HOLDINGS IV LLC, NIELSEN, R. &", "Address": "PO Box 236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.543372997600002, "SHAPE_Area": 114.897466917 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358810.439099997282028, 257143.164700001478195 ], [ 358807.165100000798702, 257136.564399998635054 ], [ 358791.302199997007847, 257144.703499998897314 ], [ 358792.441200003027916, 257149.756299998611212 ], [ 358810.439099997282028, 257143.164700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401350400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93154676, "LATITUDE": 18.34371666, "OBJECTID_1": 12007, "PARCEL_NO_": "105401350400", "Tax_Legal_": "1 STORE GRONNE GADE QUEENS QUARTER", "Name": "SCHULTERBRANDT, GAIL", "Address": "PO Box 303584", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15100, "Improved_V": 85000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.688034091399999, "SHAPE_Area": 261.891741164 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358741.616300001740456, 257133.44310000166297 ], [ 358737.624600000679493, 257132.997099999338388 ], [ 358733.628300003707409, 257132.594999998807907 ], [ 358729.62780000269413, 257132.236800000071526 ], [ 358725.623599998652935, 257131.922600001096725 ], [ 358725.121200002729893, 257148.408900000154972 ], [ 358740.594200000166893, 257149.986400000751019 ], [ 358741.616300001740456, 257133.44310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401480900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92656156, "LATITUDE": 18.3436504, "OBJECTID_1": 12163, "PARCEL_NO_": "105401480900", "Tax_Legal_": "HOSPITAL LINE 14 KINGS QUARTER", "Name": "BRATHWAITE, JAMES", "Address": "601 W 176th St", "City": "New York", "State": "New York", "Zip": 10033, "Country": "United States", "Land_Value": 7500, "Improved_V": 63500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.419434494699999, "SHAPE_Area": 306.75863381800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359267.144100002944469, 257149.355500001460314 ], [ 359266.358599998056889, 257126.418000001460314 ], [ 359253.118900001049042, 257125.742199998348951 ], [ 359254.553999997675419, 257150.287300001829863 ], [ 359267.144100002944469, 257149.355500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401480800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92666142, "LATITUDE": 18.34365516, "OBJECTID_1": 12162, "PARCEL_NO_": "105401480800", "Tax_Legal_": "15 HOSPITAL GROUND KINGS QUARTER", "Name": "EMANUEL JESSICA & MEYERS", "Address": "328 Highland Ave", "City": "Mount Vernon", "State": "New York", "Zip": 10553, "Country": "United States", "Land_Value": 3900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.830946541100005, "SHAPE_Area": 205.629467672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359254.553999997675419, 257150.287300001829863 ], [ 359253.118900001049042, 257125.742199998348951 ], [ 359244.759800001978874, 257126.373599998652935 ], [ 359246.18860000371933, 257150.811099998652935 ], [ 359254.553999997675419, 257150.287300001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401350500", "MAP": null, "PARCEL_NAM": "8 COMMANDANT GADE O.V.", "ACRE": "2,748 sq ft", "LONGITUDE": -64.93136458, "LATITUDE": 18.34373525, "OBJECTID_1": 12008, "PARCEL_NO_": "105401350500", "Tax_Legal_": "8 COMMANDANT GADE O.V. QUEENS QUARTER", "Name": "MORAGNE, JERRY", "Address": "1611 Hotel Cir S", "City": "San Diego", "State": "California", "Zip": 92108, "Country": "United States", "Land_Value": 41200, "Improved_V": 114500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.413131866100002, "SHAPE_Area": 274.58329582200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358761.098499998450279, 257135.996100001037121 ], [ 358747.38400000333786, 257134.16609999909997 ], [ 358746.700000002980232, 257134.075500000268221 ], [ 358746.015900000929832, 257133.986200001090765 ], [ 358745.331600002944469, 257133.898200001567602 ], [ 358744.647200003266335, 257133.811500001698732 ], [ 358743.630400002002716, 257150.296000000089407 ], [ 358760.790600001811981, 257152.045499999076128 ], [ 358760.8141999989748, 257150.281199999153614 ], [ 358760.841700002551079, 257148.5168999992311 ], [ 358760.873099997639656, 257146.752700001001358 ], [ 358760.908500000834465, 257144.988600000739098 ], [ 358761.098499998450279, 257135.996100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401480700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92682512, "LATITUDE": 18.34366445, "OBJECTID_1": 12161, "PARCEL_NO_": "105401480700", "Tax_Legal_": "HOSPITAL LINE 16A KINGS QUARTER", "Name": "WETTACH, NATIVIDAD C", "Address": "PO Box 302474", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68000, "Improved_V": 28200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.77744229, "SHAPE_Area": 651.82327903099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359246.18860000371933, 257150.811099998652935 ], [ 359244.759800001978874, 257126.373599998652935 ], [ 359236.662000000476837, 257126.283500000834465 ], [ 359218.441399998962879, 257127.789500001817942 ], [ 359219.114900000393391, 257137.383499998599291 ], [ 359219.882799997925758, 257152.314599998295307 ], [ 359246.18860000371933, 257150.811099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401480500", "MAP": null, "PARCEL_NAM": "17A HOSPITAL LINE", "ACRE": "6,490 sq ft", "LONGITUDE": -64.92702093, "LATITUDE": 18.34372278, "OBJECTID_1": 12160, "PARCEL_NO_": "105401480500", "Tax_Legal_": "HOSPITAL LINE 17A&17B KINGS QUARTER", "Name": "IGLESIA DE DIOS PENTECOSTAL INC", "Address": "1520 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42100, "Improved_V": 498200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.434512848600001, "SHAPE_Area": 235.45390869799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359219.882799997925758, 257152.314599998295307 ], [ 359219.114900000393391, 257137.383499998599291 ], [ 359203.379000000655651, 257138.732999999076128 ], [ 359203.917400002479553, 257153.410199999809265 ], [ 359219.882799997925758, 257152.314599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401480400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92713422, "LATITUDE": 18.34368783, "OBJECTID_1": 12159, "PARCEL_NO_": "105401480400", "Tax_Legal_": "HOSPITAL LINE 18A KINGS QTR", "Name": "SMITH, C WARREN", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.8782929702, "SHAPE_Area": 186.84475247099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359203.917400002479553, 257153.410199999809265 ], [ 359203.379000000655651, 257138.732999999076128 ], [ 359203.289700001478195, 257129.24269999936223 ], [ 359195.226999998092651, 257129.928100001066923 ], [ 359196.348399996757507, 257153.924199998378754 ], [ 359203.917400002479553, 257153.410199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401470400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92792803, "LATITUDE": 18.34369468, "OBJECTID_1": 12138, "PARCEL_NO_": "105401470400", "Tax_Legal_": "H.LINE 21,22&23B P.GDE 52B,53,54 KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 92900, "Improved_V": 1167500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.970391169, "SHAPE_Area": 745.24029073500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359131.339800000190735, 257128.601399999111891 ], [ 359098.451899997889996, 257132.017599999904633 ], [ 359100.016500003635883, 257154.043299999088049 ], [ 359129.76129999756813, 257152.047100000083447 ], [ 359130.602700002491474, 257151.868999999016523 ], [ 359131.360799998044968, 257151.463100001215935 ], [ 359131.975299999117851, 257150.8614999987185 ], [ 359132.397399999201298, 257150.112300001084805 ], [ 359132.593400001525879, 257149.274999998509884 ], [ 359132.599399998784065, 257148.816399998962879 ], [ 359131.339800000190735, 257128.601399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401480300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9272061, "LATITUDE": 18.34369576, "OBJECTID_1": 12158, "PARCEL_NO_": "105401480300", "Tax_Legal_": "HOSPITAL LINE 18B KINGS QUARTER", "Name": "CHRISTOPHER, ROMEO & ARLENE N. SMITH-CHRISTOPHER", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21400, "Improved_V": 1100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.179094235800001, "SHAPE_Area": 180.48021368400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359196.348399996757507, 257153.924199998378754 ], [ 359195.226999998092651, 257129.928100001066923 ], [ 359187.89190000295639, 257130.4983000010252 ], [ 359188.739200003445148, 257154.6402000002563 ], [ 359196.348399996757507, 257153.924199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401470300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92812742, "LATITUDE": 18.34371224, "OBJECTID_1": 12137, "PARCEL_NO_": "105401470300", "Tax_Legal_": "HOSPITAL LINE 23B KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.218696173200001, "SHAPE_Area": 201.48261537900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359100.016500003635883, 257154.043299999088049 ], [ 359098.451899997889996, 257132.017599999904633 ], [ 359089.113499999046326, 257132.98759999871254 ], [ 359089.383799999952316, 257136.039500001817942 ], [ 359091.031300000846386, 257154.646299999207258 ], [ 359100.016500003635883, 257154.043299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401480200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9273032, "LATITUDE": 18.34370206, "OBJECTID_1": 12157, "PARCEL_NO_": "105401480200", "Tax_Legal_": "HOSPITAL LINE 19 KINGS QUARTER", "Name": "SMITH, URDLEY & MARGARITA", "Address": "PO Box 9274", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43200, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.269606353599997, "SHAPE_Area": 314.88572679800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359188.739200003445148, 257154.6402000002563 ], [ 359187.89190000295639, 257130.4983000010252 ], [ 359174.546999998390675, 257131.545699998736382 ], [ 359175.920800000429153, 257155.392599999904633 ], [ 359188.739200003445148, 257154.6402000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401470200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92820262, "LATITUDE": 18.34373697, "OBJECTID_1": 12136, "PARCEL_NO_": "105401470200", "Tax_Legal_": "HOSPITAL LINE 23A KINGS QUARTER", "Name": "FORD, HERMAN & SCHEMBRI, HELEN", "Address": "309 Lafayette Ave", "City": "Brooklyn", "State": "New York", "Zip": 11238, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.461143986800003, "SHAPE_Area": 129.59203535399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359091.031300000846386, 257154.646299999207258 ], [ 359089.383799999952316, 257136.039500001817942 ], [ 359082.465899996459484, 257137.990200001746416 ], [ 359083.646300002932549, 257155.1418999992311 ], [ 359091.031300000846386, 257154.646299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401261000", "MAP": null, "PARCEL_NAM": "1A", "ACRE": null, "LONGITUDE": -64.92417672000001, "LATITUDE": 18.3437354, "OBJECTID_1": 11861, "PARCEL_NO_": "105401261000", "Tax_Legal_": "1A HOSPITAL GROUND NEW QTR", "Name": "ROY SASSO & OTHERS", "Address": "7844 Cherry Field Dr", "City": "Jacksonville", "State": "Florida", "Zip": 32216, "Country": "United States", "Land_Value": 5300, "Improved_V": 87100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.927517538499998, "SHAPE_Area": 271.675211424 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359525.187799997627735, 257154.147900000214577 ], [ 359523.304099999368191, 257143.000500001013279 ], [ 359499.061300002038479, 257144.567600000649691 ], [ 359501.287600003182888, 257155.724199999123812 ], [ 359525.187799997627735, 257154.147900000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401300900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9301792, "LATITUDE": 18.34374775, "OBJECTID_1": 11917, "PARCEL_NO_": "105401300900", "Tax_Legal_": "35B DRONNINGENS GADE KINGS QUARTER", "Name": "CHANTICLEER LLC", "Address": "PO Box 457", "City": "Edinburg", "State": "Virginia", "Zip": 22824, "Country": "United States", "Land_Value": 13500, "Improved_V": 94100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.207577066799999, "SHAPE_Area": 432.02584233499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358886.17509999871254, 257134.535500001162291 ], [ 358875.134700000286102, 257135.128699999302626 ], [ 358865.614900000393391, 257135.6402000002563 ], [ 358869.123700000345707, 257155.9070999994874 ], [ 358889.411799997091293, 257156.042700000107288 ], [ 358888.950199998915195, 257151.5011 ], [ 358888.35530000180006, 257146.974899999797344 ], [ 358887.627899996936321, 257142.468299999833107 ], [ 358886.768399998545647, 257137.984900001436472 ], [ 358886.598200000822544, 257137.126400001347065 ], [ 358886.4425999969244, 257136.2652000002563 ], [ 358886.301600001752377, 257135.401500001549721 ], [ 358886.17509999871254, 257134.535500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401470100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92831198, "LATITUDE": 18.34371879, "OBJECTID_1": 12135, "PARCEL_NO_": "105401470100", "Tax_Legal_": "HOSPITAL LINE 51B & 24 KINGS QTR", "Name": "FORD, HERMAN R", "Address": "309 Lafayette Ave", "City": "Brooklyn", "State": "New York", "Zip": 11238, "Country": "United States", "Land_Value": 8100, "Improved_V": 55800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.335580886499997, "SHAPE_Area": 365.75423004300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359083.646300002932549, 257155.1418999992311 ], [ 359082.465899996459484, 257137.990200001746416 ], [ 359082.0253000035882, 257131.588199999183416 ], [ 359067.112899996340275, 257132.245999999344349 ], [ 359067.849899999797344, 257156.201999999582767 ], [ 359083.646300002932549, 257155.1418999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401480100", "MAP": null, "PARCEL_NAM": "20", "ACRE": ".11", "LONGITUDE": -64.92753292, "LATITUDE": 18.34372359, "OBJECTID_1": 12156, "PARCEL_NO_": "105401480100", "Tax_Legal_": "HOSPITAL LINE 2O KINGS QUARTER", "Name": "MY BROTHERS WORKSHOP INC", "Address": "PO Box 301769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.578662985799994, "SHAPE_Area": 529.50653543600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359170.530599996447563, 257155.388799998909235 ], [ 359169.851000003516674, 257133.948300000280142 ], [ 359163.407300002872944, 257134.64299999922514 ], [ 359153.744000002741814, 257135.570900000631809 ], [ 359142.529799997806549, 257136.647700000554323 ], [ 359143.102899998426437, 257145.845199998468161 ], [ 359143.316799998283386, 257147.321800000965595 ], [ 359143.768100000917912, 257148.743900001049042 ], [ 359144.444499999284744, 257150.073699999600649 ], [ 359145.328199997544289, 257151.275800000876188 ], [ 359146.395700000226498, 257152.31810000166297 ], [ 359147.618400000035763, 257153.173099998384714 ], [ 359148.963899999856949, 257153.817800000309944 ], [ 359149.678800001740456, 257154.057799998670816 ], [ 359150.751500003039837, 257154.388099998235703 ], [ 359151.813199996948242, 257154.752500001341105 ], [ 359152.86259999871254, 257155.150800000876188 ], [ 359153.898800000548363, 257155.582499999552965 ], [ 359154.913900002837181, 257155.954900000244379 ], [ 359155.965999998152256, 257156.204900000244379 ], [ 359157.040100000798702, 257156.328899998217821 ], [ 359158.121500000357628, 257156.325199998915195 ], [ 359170.530599996447563, 257155.388799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401320300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92845182000001, "LATITUDE": 18.34372443, "OBJECTID_1": 11964, "PARCEL_NO_": "105401320300", "Tax_Legal_": "HOSPITAL LINE 25 KINGS QUARTER", "Name": "MCCANTS, ANGELA", "Address": "1215 Jasmine Way", "City": "Hampton", "State": "Georgia", "Zip": 30228, "Country": "United States", "Land_Value": 7100, "Improved_V": 33300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.683866597999994, "SHAPE_Area": 342.72284648 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359067.849899999797344, 257156.201999999582767 ], [ 359067.112899996340275, 257132.245999999344349 ], [ 359052.207900002598763, 257132.903499998152256 ], [ 359052.472000002861023, 257135.842999998480082 ], [ 359053.447999998927116, 257146.702100001275539 ], [ 359054.383000001311302, 257157.105799999088049 ], [ 359067.849899999797344, 257156.201999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401291100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93111817, "LATITUDE": 18.34377391, "OBJECTID_1": 11903, "PARCEL_NO_": "105401291100", "Tax_Legal_": "COMMANDANT GADE OV 16B QUEENS QUARTER", "Name": "DO RIGHT CONSTRUCTION INC.", "Address": "PO Box 301826", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40800, "Improved_V": 218900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.474258789900006, "SHAPE_Area": 341.59358242000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358787.425700001418591, 257138.595400001853704 ], [ 358768.165399998426437, 257139.848799999803305 ], [ 358768.265500001609325, 257144.175500001758337 ], [ 358768.332000002264977, 257148.50279999896884 ], [ 358768.364799998700619, 257152.83049999922514 ], [ 358768.363899998366833, 257157.158399999141693 ], [ 358787.614900000393391, 257154.379700001329184 ], [ 358788.440200001001358, 257154.138000000268221 ], [ 358789.165200002491474, 257153.675400000065565 ], [ 358789.73200000077486, 257153.028799999505281 ], [ 358790.09570000320673, 257152.249499998986721 ], [ 358790.227300003170967, 257151.399700000882149 ], [ 358790.145199999213219, 257150.659200001507998 ], [ 358787.425700001418591, 257138.595400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401260900", "MAP": null, "PARCEL_NAM": "1", "ACRE": null, "LONGITUDE": -64.92441302, "LATITUDE": 18.34375251, "OBJECTID_1": 11860, "PARCEL_NO_": "105401260900", "Tax_Legal_": "HOSPITAL GROUND 1 NEW QTR", "Name": "MILLS, AUBREY", "Address": "417 E 19th St", "City": "Brooklyn", "State": "New York", "Zip": 11226, "Country": "United States", "Land_Value": 7200, "Improved_V": 71500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.838181914000003, "SHAPE_Area": 296.80954024699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359501.287600003182888, 257155.724199999123812 ], [ 359499.061300002038479, 257144.567600000649691 ], [ 359473.240900002419949, 257146.132399998605251 ], [ 359475.566200003027916, 257157.697799999266863 ], [ 359501.287600003182888, 257155.724199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401320200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92858542, "LATITUDE": 18.34379932, "OBJECTID_1": 11963, "PARCEL_NO_": "105401320200", "Tax_Legal_": "HOSPITAL LINE 26 KINGS QUARTER", "Name": "GEORGE, C & A", "Address": "PO Box 962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3800, "Improved_V": 12200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.674770545100003, "SHAPE_Area": 158.99621966500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359054.383000001311302, 257157.105799999088049 ], [ 359053.447999998927116, 257146.702100001275539 ], [ 359037.810199998319149, 257148.414599999785423 ], [ 359038.704800002276897, 257158.157999999821186 ], [ 359054.383000001311302, 257157.105799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401301000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93059946, "LATITUDE": 18.34376681, "OBJECTID_1": 11918, "PARCEL_NO_": "105401301000", "Tax_Legal_": "COMMANDANT GADE 11A KINGS QUARTER", "Name": "CONNOR, DUNCAN & LEORTHA", "Address": "3566 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7000, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.518489559900004, "SHAPE_Area": 399.01556299200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358843.607100002467632, 257150.580299999564886 ], [ 358848.406599998474121, 257148.493099998682737 ], [ 358843.433399997651577, 257134.551300000399351 ], [ 358831.273299999535084, 257140.353199999779463 ], [ 358817.568899996578693, 257147.055500000715256 ], [ 358823.409000001847744, 257159.444200001657009 ], [ 358843.607100002467632, 257150.580299999564886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401320900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92871644, "LATITUDE": 18.34374574, "OBJECTID_1": 11970, "PARCEL_NO_": "105401320900", "Tax_Legal_": "HOSPITAL LINE 27 KINGS QTR", "Name": "KRIGGER, SEAN L.", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.174973767300003, "SHAPE_Area": 253.48719966199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359038.704800002276897, 257158.157999999821186 ], [ 359037.810199998319149, 257148.414599999785423 ], [ 359036.739000000059605, 257136.747800000011921 ], [ 359036.468900002539158, 257133.806400001049042 ], [ 359026.01349999755621, 257135.362300001084805 ], [ 359026.076800003647804, 257136.048700001090765 ], [ 359028.179799996316433, 257158.864399999380112 ], [ 359038.704800002276897, 257158.157999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401320100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92883767, "LATITUDE": 18.34375855, "OBJECTID_1": 11962, "PARCEL_NO_": "105401320100", "Tax_Legal_": "HOSPITAL LINE 28 KINGS QUARTER", "Name": "KRIGGER, SEAN L.", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7400, "Improved_V": 37300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.6342648169, "SHAPE_Area": 351.812200378 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359028.179799996316433, 257158.864399999380112 ], [ 359026.076800003647804, 257136.048700001090765 ], [ 359026.01349999755621, 257135.362300001084805 ], [ 359010.528599999845028, 257137.666499998420477 ], [ 359012.170900002121925, 257150.974300000816584 ], [ 359012.406000003218651, 257153.200699999928474 ], [ 359012.655799999833107, 257155.425400000065565 ], [ 359012.92059999704361, 257157.648499999195337 ], [ 359013.200099997222424, 257159.869699999690056 ], [ 359028.179799996316433, 257158.864399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401310500", "MAP": null, "PARCEL_NAM": "46 PRINDSENS GADE", "ACRE": "9,216 sq ft", "LONGITUDE": -64.92907946, "LATITUDE": 18.34368766, "OBJECTID_1": 11948, "PARCEL_NO_": "105401310500", "Tax_Legal_": "PRINDSENS GADE 45&46(INCLS 29&30 Hospital Line) KINGS QUARTER", "Name": "CORNERSTONE HOLDINGS LIMITED LIABILITY COMPANY", "Address": "1692 Prindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 179600, "Improved_V": 293200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.175933418, "SHAPE_Area": 896.70265269499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359007.106499999761581, 257160.278599999845028 ], [ 359006.837600000202656, 257158.125900000333786 ], [ 359006.582400001585484, 257155.971400000154972 ], [ 359006.340800002217293, 257153.815400000661612 ], [ 359006.112999998033047, 257151.657900001853704 ], [ 359002.075400002300739, 257118.940400000661612 ], [ 358981.746399998664856, 257117.25899999961257 ], [ 358985.651600003242493, 257161.718499999493361 ], [ 359007.106499999761581, 257160.278599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401310500", "MAP": null, "PARCEL_NAM": "45 PRINDSENS GADE", "ACRE": "5,753 sq ft", "LONGITUDE": -64.92920841, "LATITUDE": 18.34368562, "OBJECTID_1": 11948, "PARCEL_NO_": "105401310500", "Tax_Legal_": "PRINDSENS GADE 45&46(INCLS 29&30 Hospital Line) KINGS QUARTER", "Name": "CORNERSTONE HOLDINGS LIMITED LIABILITY COMPANY", "Address": "1692 Prindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 179600, "Improved_V": 293200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.312499714, "SHAPE_Area": 292.69731247200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358985.651600003242493, 257161.718499999493361 ], [ 358981.746399998664856, 257117.25899999961257 ], [ 358975.186800003051758, 257116.716400001198053 ], [ 358979.17790000140667, 257162.153000000864267 ], [ 358985.651600003242493, 257161.718499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401311500", "MAP": null, "PARCEL_NAM": "44 PRINDSENS GADE", "ACRE": "9,866 sq ft", "LONGITUDE": -64.92927006, "LATITUDE": 18.34368562, "OBJECTID_1": 11955, "PARCEL_NO_": "105401311500", "Tax_Legal_": "DRONNINGENS GADE 44 KINGS QUARTER", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 21600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.273914342, "SHAPE_Area": 299.0571432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358972.704199999570847, 257162.587400000542402 ], [ 358979.17790000140667, 257162.153000000864267 ], [ 358975.186800003051758, 257116.716400001198053 ], [ 358968.627300001680851, 257116.173900000751019 ], [ 358972.704199999570847, 257162.587400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401252400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92473902, "LATITUDE": 18.34379362, "OBJECTID_1": 11846, "PARCEL_NO_": "105401252400", "Tax_Legal_": "HOSPITAL GROUND 15 NEW QUARTER", "Name": "DANIELS OLAFFE 9 HEIRS", "Address": "1715 Popham Ave", "City": "Bronx", "State": "New York", "Zip": 10453, "Country": "United States", "Land_Value": 11800, "Improved_V": 31100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.590001160400007, "SHAPE_Area": 337.31167825 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359469.431999996304512, 257158.648800000548363 ], [ 359467.942199997603893, 257151.183400001376867 ], [ 359464.767200000584126, 257149.278400000184774 ], [ 359459.687200002372265, 257149.119600001722574 ], [ 359437.069099999964237, 257150.474599998444319 ], [ 359439.937799997627735, 257162.884199999272823 ], [ 359469.431999996304512, 257158.648800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401290700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93114621, "LATITUDE": 18.34391182, "OBJECTID_1": 11900, "PARCEL_NO_": "105401290700", "Tax_Legal_": "COMMANDANT GADE O.V. 16 A QUEENS QUARTER", "Name": "DANIEL, KIRTLEY & WINSOR, JUEL", "Address": "PO Box 9033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15000, "Improved_V": 256300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.9780025333, "SHAPE_Area": 106.15899945 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358780.402999997138977, 257157.884300000965595 ], [ 358768.353699997067451, 257159.623500000685453 ], [ 358768.35080000013113, 257161.270899999886751 ], [ 358768.351400002837181, 257162.918299999088049 ], [ 358768.355400003492832, 257164.565699998289347 ], [ 358768.362800002098083, 257166.213100001215935 ], [ 358782.916199997067451, 257167.179299999028444 ], [ 358780.402999997138977, 257157.884300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401290800", "MAP": "D9-5757-T94", "PARCEL_NAM": "17", "ACRE": null, "LONGITUDE": -64.93100303, "LATITUDE": 18.34389129, "OBJECTID_1": 11901, "PARCEL_NO_": "105401290800", "Tax_Legal_": "COMMANDANT GADE OV 17 QUEENS QUARTER", "Name": "DANIEL, KIRTLEY & WINSOR, JUEL", "Address": "PO Box 9033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 18000, "Improved_V": 180000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.495317055999998, "SHAPE_Area": 173.02532772399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358800.667400002479553, 257163.458999998867512 ], [ 358797.974200002849102, 257154.557100001722574 ], [ 358791.696999996900558, 257154.476300001144409 ], [ 358790.964699998497963, 257155.334499999880791 ], [ 358790.072200000286102, 257156.02479999884963 ], [ 358789.057499997317791, 257156.51799999922514 ], [ 358787.963299997150898, 257156.793099999427795 ], [ 358780.402999997138977, 257157.884300000965595 ], [ 358782.916199997067451, 257167.179299999028444 ], [ 358800.667400002479553, 257163.458999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401252300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92503713000001, "LATITUDE": 18.34381586, "OBJECTID_1": 11844, "PARCEL_NO_": "105401252300", "Tax_Legal_": "HOSPITAL GROUND 21 NEW QUARTER", "Name": "PICKERING, CATHERINE", "Address": "70 Pitt St", "City": "New York", "State": "New York", "Zip": 10002, "Country": "United States", "Land_Value": 12000, "Improved_V": 50600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.418947549099997, "SHAPE_Area": 518.49085564300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359439.937799997627735, 257162.884199999272823 ], [ 359436.636399999260902, 257148.602899998426437 ], [ 359403.629900000989437, 257151.077399998903275 ], [ 359405.68860000371933, 257167.099899999797344 ], [ 359439.937799997627735, 257162.884199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401260800", "MAP": "A3-84-T52", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.92427725, "LATITUDE": 18.34384475, "OBJECTID_1": 11859, "PARCEL_NO_": "105401260800", "Tax_Legal_": "2 HOSPITAL GROUND NEW QUARTER", "Name": "MALONE, ELTON", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13000, "Improved_V": 96300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.087390892, "SHAPE_Area": 551.25575838700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359527.040799997746944, 257165.113000001758337 ], [ 359525.187799997627735, 257154.147900000214577 ], [ 359501.287600003182888, 257155.724199999123812 ], [ 359475.566200003027916, 257157.697799999266863 ], [ 359478.257600001990795, 257168.677200000733137 ], [ 359527.040799997746944, 257165.113000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401300600", "MAP": null, "PARCEL_NAM": "12B COMMANDANT", "ACRE": null, "LONGITUDE": -64.93042251, "LATITUDE": 18.34385601, "OBJECTID_1": 11915, "PARCEL_NO_": "105401300600", "Tax_Legal_": "COMMANDANT GADE 12A&12B KINGS QUARTER", "Name": "CONNOR, DUNCAN A. & LEORTHA F", "Address": "3100 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7600, "Improved_V": 78600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.056964474399997, "SHAPE_Area": 226.43809480799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358859.106799997389317, 257165.660500001162291 ], [ 358857.360799998044968, 257155.828499998897314 ], [ 358855.50959999859333, 257145.404100000858307 ], [ 358848.406599998474121, 257148.493099998682737 ], [ 358843.607100002467632, 257150.580299999564886 ], [ 358849.949000000953674, 257169.212400000542402 ], [ 358859.106799997389317, 257165.660500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401252200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92531556, "LATITUDE": 18.34385284, "OBJECTID_1": 11843, "PARCEL_NO_": "105401252200", "Tax_Legal_": "HOSPITAL GROUND 34A NEW QUARTER", "Name": "MONSANTO, CLEVELAND", "Address": "PO Box 672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6900, "Improved_V": 52700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.747900767700003, "SHAPE_Area": 313.19919199600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359402.359200000762939, 257170.545499999076128 ], [ 359401.085699997842312, 257165.680599998682737 ], [ 359399.762900002300739, 257160.828899998217821 ], [ 359398.390799999237061, 257155.990899998694658 ], [ 359396.9695999994874, 257151.167100001126528 ], [ 359381.439999997615814, 257152.170899998396635 ], [ 359385.796800002455711, 257171.174199998378754 ], [ 359402.359200000762939, 257170.545499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401252100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92546939, "LATITUDE": 18.34386076, "OBJECTID_1": 11842, "PARCEL_NO_": "105401252100", "Tax_Legal_": "HOSPITAL GROUND 34 NEW QUARTER", "Name": "MONSANTO, VIOLA & OTHERS", "Address": "PO Box 672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6300, "Improved_V": 62700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.3481991556, "SHAPE_Area": 311.37878295299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359385.796800002455711, 257171.174199998378754 ], [ 359381.439999997615814, 257152.170899998396635 ], [ 359365.137299999594688, 257153.224800001829863 ], [ 359369.336599998176098, 257171.799100000411272 ], [ 359385.796800002455711, 257171.174199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401300600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93056016, "LATITUDE": 18.34391436, "OBJECTID_1": 11915, "PARCEL_NO_": "105401300600", "Tax_Legal_": "COMMANDANT GADE 12A&12B KINGS QUARTER", "Name": "CONNOR, DUNCAN A. & LEORTHA F", "Address": "3100 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7600, "Improved_V": 78600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.747185652400006, "SHAPE_Area": 396.1668673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358849.949000000953674, 257169.212400000542402 ], [ 358843.607100002467632, 257150.580299999564886 ], [ 358823.564699999988079, 257159.140799999237061 ], [ 358832.584299996495247, 257176.403099998831749 ], [ 358849.949000000953674, 257169.212400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251800", "MAP": "F9-1098-T63", "PARCEL_NAM": "22 REM", "ACRE": null, "LONGITUDE": -64.92501356, "LATITUDE": 18.34392351, "OBJECTID_1": 11839, "PARCEL_NO_": "105401251800", "Tax_Legal_": "22 HOSPITAL GROUND KING'S QTR", "Name": "SMITH, LEBURN & DIANE P.", "Address": "11381 SW 21st", "City": "MIRAMAR", "State": "Florida", "Zip": 33026, "Country": "United States", "Land_Value": 19900, "Improved_V": 86200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.183087943499999, "SHAPE_Area": 311.34586912499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359426.70160000026226, 257173.550999999046326 ], [ 359441.89919999986887, 257171.368599999696016 ], [ 359439.937799997627735, 257162.884199999272823 ], [ 359405.68860000371933, 257167.099899999797344 ], [ 359407.657200001180172, 257176.267499998211861 ], [ 359426.70160000026226, 257173.550999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401252600", "MAP": null, "PARCEL_NAM": "16 REM", "ACRE": "2,069 sq ft", "LONGITUDE": -64.92466006, "LATITUDE": 18.34393834, "OBJECTID_1": 11848, "PARCEL_NO_": "105401252600", "Tax_Legal_": "HOSPITAL GROUND 16 REM. NEW QTR.", "Name": "JOSEPH, CARMELITA", "Address": "1340 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5000, "Improved_V": 43200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.051731886100001, "SHAPE_Area": 317.72396426199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359473.505400002002716, 257176.811700001358986 ], [ 359470.255500003695488, 257162.775199998170137 ], [ 359448.540500000119209, 257165.893399998545647 ], [ 359451.406000003218651, 257179.985100001096725 ], [ 359473.505400002002716, 257176.811700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92475433, "LATITUDE": 18.34390613, "OBJECTID_1": 11840, "PARCEL_NO_": "105401251900", "Tax_Legal_": "HOSPITAL GROUND 16A NEW QTR", "Name": "LEBLANC SR., ALLEN J.", "Address": "PO Box 7084", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.294407076400006, "SHAPE_Area": 233.163648556 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359470.255500003695488, 257162.775199998170137 ], [ 359469.431999996304512, 257158.648800000548363 ], [ 359439.937799997627735, 257162.884199999272823 ], [ 359441.89919999986887, 257171.368599999696016 ], [ 359444.132500000298023, 257181.029599998146296 ], [ 359451.406000003218651, 257179.985100001096725 ], [ 359448.540500000119209, 257165.893399998545647 ], [ 359470.255500003695488, 257162.775199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401192000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92781827, "LATITUDE": 18.34398065, "OBJECTID_1": 11756, "PARCEL_NO_": "105401192000", "Tax_Legal_": "114 HOSPITAL GROUND NEW QUARTER", "Name": "DOMECK, WILBUR PATRICK", "Address": "605 Main St", "City": "New Rochelle", "State": "New York", "Zip": 10801, "Country": "United States", "Land_Value": 11500, "Improved_V": 42600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.257839960600002, "SHAPE_Area": 238.64447529399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359134.159400001168251, 257180.396200001239777 ], [ 359134.572599999606609, 257165.592999998480082 ], [ 359131.257399998605251, 257163.280000001192093 ], [ 359127.893700003623962, 257164.661499999463558 ], [ 359124.587399996817112, 257166.175400000065565 ], [ 359121.343800000846386, 257167.819099999964237 ], [ 359118.16780000180006, 257169.590199999511242 ], [ 359120.682099997997284, 257181.954700000584126 ], [ 359120.770499996840954, 257182.620000001043081 ], [ 359134.159400001168251, 257180.396200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401201900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92765427, "LATITUDE": 18.34398759, "OBJECTID_1": 11773, "PARCEL_NO_": "105401201900", "Tax_Legal_": "9C-4 HOSPITAL GROUND KINGS QTR", "Name": "FREEMAN, ETHLYN", "Address": "1312 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5600, "Improved_V": 35500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.544114147999998, "SHAPE_Area": 206.75451615200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359151.2533999979496, 257167.8761 ], [ 359149.146899998188019, 257166.811500001698732 ], [ 359146.94200000166893, 257165.969700001180172 ], [ 359144.661899998784065, 257165.3597999997437 ], [ 359142.331200003623962, 257164.988200001418591 ], [ 359139.974500000476837, 257164.858800001442432 ], [ 359139.166599996387959, 257164.870600000023842 ], [ 359139.166400000452995, 257164.875599998980761 ], [ 359139.166199997067451, 257164.880699999630451 ], [ 359139.16610000282526, 257164.88569999858737 ], [ 359139.165899999439716, 257164.890799999237061 ], [ 359137.89299999922514, 257182.705200001597404 ], [ 359149.91889999806881, 257182.845100000500679 ], [ 359151.2533999979496, 257167.8761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401252700", "MAP": "D9-8425-T010", "PARCEL_NAM": "22-1E", "ACRE": "0.02", "LONGITUDE": -64.92490296, "LATITUDE": 18.34399427, "OBJECTID_1": 11849, "PARCEL_NO_": "105401252700", "Tax_Legal_": "22-1E HOSPITAL GROUND KING'S QTR", "Name": "WILLIAMS, ELLIS A. & CAROL H.", "Address": "PO Box 9255", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3500, "Improved_V": 110200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.382805278, "SHAPE_Area": 156.04320729099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359444.132500000298023, 257181.029599998146296 ], [ 359441.89919999986887, 257171.368599999696016 ], [ 359426.70160000026226, 257173.550999999046326 ], [ 359428.0641999989748, 257183.337000001221895 ], [ 359444.132500000298023, 257181.029599998146296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92536059, "LATITUDE": 18.34399872, "OBJECTID_1": 11837, "PARCEL_NO_": "105401251600", "Tax_Legal_": "HOSPITAL GROUND 33 NEW QTR", "Name": "LALANNE, DHIONY", "Address": "PO BOX 9247", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12700, "Improved_V": 153000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.507321704199995, "SHAPE_Area": 417.57854322100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359388.792099997401237, 257184.238699998706579 ], [ 359404.99889999628067, 257181.345800001174212 ], [ 359404.361699998378754, 257178.6402000002563 ], [ 359403.709399998188019, 257175.938299998641014 ], [ 359403.041900001466274, 257173.239999998360872 ], [ 359402.359200000762939, 257170.545499999076128 ], [ 359385.796800002455711, 257171.174199998378754 ], [ 359369.336599998176098, 257171.799100000411272 ], [ 359372.282600000500679, 257184.829700000584126 ], [ 359388.792099997401237, 257184.238699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401080900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9283066, "LATITUDE": 18.34395849, "OBJECTID_1": 11505, "PARCEL_NO_": "105401080900", "Tax_Legal_": "HOSPITAL GROUND 104 KINGS QUARTER", "Name": "CARL ALFRED PENN REVOCABLE FAMILY TRUST", "Address": "PO Box 1046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.14519586399999, "SHAPE_Area": 1106.9453095399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359041.946800000965595, 257164.050200000405312 ], [ 359040.920100003480911, 257173.913600001484156 ], [ 359083.108400002121925, 257185.546100001782179 ], [ 359103.318800002336502, 257168.543800000101328 ], [ 359106.990800000727177, 257165.876200001686811 ], [ 359110.779200002551079, 257163.376499999314547 ], [ 359114.676299996674061, 257161.049800001084805 ], [ 359118.674099996685982, 257158.90089999884367 ], [ 359041.946800000965595, 257164.050200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401061000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9310083, "LATITUDE": 18.34402119, "OBJECTID_1": 11485, "PARCEL_NO_": "105401061000", "Tax_Legal_": "15 COMMANDANT GADE KINGS QTR", "Name": "BLYDEN, ELEANOR,GERUT, JANET", "Address": "PO Box 45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.635416574, "SHAPE_Area": 544.31106761299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358798.935199998319149, 257184.717300001531839 ], [ 358806.852300003170967, 257183.902199998497963 ], [ 358802.666199997067451, 257170.065799999982119 ], [ 358800.667400002479553, 257163.458999998867512 ], [ 358782.916199997067451, 257167.179299999028444 ], [ 358768.377400003373623, 257168.328200001269579 ], [ 358768.392700001597404, 257169.975600000470877 ], [ 358768.411399997770786, 257171.622999999672174 ], [ 358768.433499999344349, 257173.270300000905991 ], [ 358768.459100000560284, 257174.917599998414516 ], [ 358780.178400002419949, 257173.918600000441074 ], [ 358781.445000000298023, 257186.517900001257658 ], [ 358798.935199998319149, 257184.717300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401300500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93017121, "LATITUDE": 18.34397392, "OBJECTID_1": 11914, "PARCEL_NO_": "105401300500", "Tax_Legal_": "DRONNINGENS GADE 35BBB KINGS QUARTER", "Name": "BENJAMIN, ALECIA G", "Address": "PO Box 7906", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 176700, "Improved_V": 90100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.740984797, "SHAPE_Area": 687.74569912899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358889.411799997091293, 257156.042700000107288 ], [ 358869.123700000345707, 257155.9070999994874 ], [ 358864.78660000115633, 257155.878199998289347 ], [ 358868.909000001847744, 257185.09180000051856 ], [ 358889.473999999463558, 257186.978799998760223 ], [ 358889.897799998521805, 257174.976700000464916 ], [ 358889.992799997329712, 257170.239799998700619 ], [ 358889.943400003015995, 257165.502300001680851 ], [ 358889.749700002372265, 257160.768399998545647 ], [ 358889.411799997091293, 257156.042700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401191800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92791912, "LATITUDE": 18.34404672, "OBJECTID_1": 11754, "PARCEL_NO_": "105401191800", "Tax_Legal_": "HOSPITAL GROUND 115 NEW QUARTER", "Name": "MC COY, JANE", "Address": "115 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2900, "Improved_V": 23000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.610153807300001, "SHAPE_Area": 133.986240971 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359121.498099997639656, 257188.23030000180006 ], [ 359121.439900003373623, 257187.660399999469519 ], [ 359120.770499996840954, 257182.620000001043081 ], [ 359120.682099997997284, 257181.954700000584126 ], [ 359118.16780000180006, 257169.590199999511242 ], [ 359116.789700001478195, 257170.411299999803305 ], [ 359115.426100000739098, 257171.256299998611212 ], [ 359114.077500000596046, 257172.125100001692772 ], [ 359112.744300000369549, 257173.017299998551607 ], [ 359111.952100001275539, 257188.6875 ], [ 359121.498099997639656, 257188.23030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401260700", "MAP": "A3-84-T52", "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.92425202, "LATITUDE": 18.34394665, "OBJECTID_1": 11858, "PARCEL_NO_": "105401260700", "Tax_Legal_": "HOSPITAL GROUND 3 NEW QUARTER", "Name": "SALINO M VAN HOLTEN LIVING TRUST", "Address": "1339 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 125000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.897164495, "SHAPE_Area": 569.897037931 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359529.066799998283386, 257177.102200001478195 ], [ 359527.040799997746944, 257165.113000001758337 ], [ 359478.257600001990795, 257168.677200000733137 ], [ 359480.813000001013279, 257179.880499999970198 ], [ 359529.066799998283386, 257177.102200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401201800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92753454, "LATITUDE": 18.3440631, "OBJECTID_1": 11772, "PARCEL_NO_": "105401201800", "Tax_Legal_": "HOSPITAL GROUND 9C-3 KINGS QTR", "Name": "ONEAL, ADRIANO & ANNA", "Address": "PO Box 10419", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6000, "Improved_V": 39100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.032908708199997, "SHAPE_Area": 168.619938171 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359163.748999997973442, 257190.862399999052286 ], [ 359161.357100002467632, 257180.763000000268221 ], [ 359160.831900000572205, 257178.962699998170137 ], [ 359160.125100001692772, 257177.225600000470877 ], [ 359159.244099996984005, 257175.570099998265505 ], [ 359158.19820000231266, 257174.0135000012815 ], [ 359157.101899996399879, 257172.660599999129772 ], [ 359155.905799999833107, 257171.395100001245737 ], [ 359154.616899996995926, 257170.224300000816584 ], [ 359153.242600001394749, 257169.155000001192093 ], [ 359152.269900001585484, 257191.804000001400709 ], [ 359163.748999997973442, 257190.862399999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105401201800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92758771, "LATITUDE": 18.34404831, "OBJECTID_1": 11772, "PARCEL_NO_": "105401201800", "Tax_Legal_": "HOSPITAL GROUND 9C-3 KINGS QTR", "Name": "ONEAL, ADRIANO & ANNA", "Address": "PO Box 10419", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6000, "Improved_V": 39100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.472025288700003, "SHAPE_Area": 61.244362608700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359152.269900001585484, 257191.804000001400709 ], [ 359153.242600001394749, 257169.155000001192093 ], [ 359152.75789999961853, 257168.816100001335144 ], [ 359152.264499999582767, 257168.489799998700619 ], [ 359151.762900002300739, 257168.176399998366833 ], [ 359151.2533999979496, 257167.8761 ], [ 359149.91889999806881, 257182.845100000500679 ], [ 359149.099399998784065, 257192.037500001490116 ], [ 359152.269900001585484, 257191.804000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401300300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93045162, "LATITUDE": 18.34405645, "OBJECTID_1": 11913, "PARCEL_NO_": "105401300300", "Tax_Legal_": "13A COMMANDANT GADE KINGS QTR", "Name": "BLYDEN, ELEANOR", "Address": "PO Box 45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6700, "Improved_V": 76200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.092963418599993, "SHAPE_Area": 479.32997517299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358862.452299997210503, 257184.499400001019239 ], [ 358859.106799997389317, 257165.660500001162291 ], [ 358849.949000000953674, 257169.212400000542402 ], [ 358832.73870000243187, 257176.252000000327826 ], [ 358840.57660000026226, 257192.668200001120567 ], [ 358862.452299997210503, 257184.499400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401290400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93073483000001, "LATITUDE": 18.3441092, "OBJECTID_1": 11898, "PARCEL_NO_": "105401290400", "Tax_Legal_": "COMMANDANT GADE 16A KINGS QUARTER", "Name": "DeReese, Dwayne and James Maduro, Jr.", "Address": "PO Box 7635", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010635, "Country": "United States", "Land_Value": 4700, "Improved_V": 85400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.758137780499993, "SHAPE_Area": 225.37955033099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358831.388099998235703, 257185.397300001233816 ], [ 358826.993299998342991, 257176.537599999457598 ], [ 358806.852300003170967, 257183.902199998497963 ], [ 358809.835500001907349, 257193.762800000607967 ], [ 358810.691799998283386, 257193.471200000494719 ], [ 358811.545400001108646, 257193.171999998390675 ], [ 358812.396300002932549, 257192.865299999713898 ], [ 358813.244400002062321, 257192.550999999046326 ], [ 358831.388099998235703, 257185.397300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401191400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92802003, "LATITUDE": 18.34409555, "OBJECTID_1": 11750, "PARCEL_NO_": "105401191400", "Tax_Legal_": "HOSPITAL GROUND 116 NEW QUARTER", "Name": "BERG, ELITA", "Address": "PO Box 7916", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9100, "Improved_V": 76300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.061221995099999, "SHAPE_Area": 215.321516522 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359111.301600001752377, 257193.453499998897314 ], [ 359111.952100001275539, 257188.6875 ], [ 359112.744300000369549, 257173.017299998551607 ], [ 359111.803599998354912, 257173.667399998754263 ], [ 359110.870999999344349, 257174.329300001263618 ], [ 359109.946800000965595, 257175.002700001001358 ], [ 359109.031099997460842, 257175.687600001692772 ], [ 359096.651600003242493, 257186.102099999785423 ], [ 359097.185199998319149, 257193.772700000554323 ], [ 359111.301600001752377, 257193.453499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92466416000001, "LATITUDE": 18.34406571, "OBJECTID_1": 11836, "PARCEL_NO_": "105401251500", "Tax_Legal_": "HOSPITAL GROUND 17 NEW QUARTER", "Name": "JACOBS, VALERIE, LIFE ESTATE", "Address": "4215 Annas Retreat N0.242", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13600, "Improved_V": 47300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.331607886499995, "SHAPE_Area": 398.56711030399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359476.572700001299381, 257190.059200000017881 ], [ 359473.505400002002716, 257176.811700001358986 ], [ 359451.406000003218651, 257179.985100001096725 ], [ 359444.132500000298023, 257181.029599998146296 ], [ 359447.141500003635883, 257194.045800000429153 ], [ 359476.572700001299381, 257190.059200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401290300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9308733, "LATITUDE": 18.34415438, "OBJECTID_1": 11897, "PARCEL_NO_": "105401290300", "Tax_Legal_": "TVER COMMANDANT 4 KINGS QTR", "Name": "CANCRYN, ADELITA", "Address": "PO Box 25432", "City": "Brooklyn", "State": "New York", "Zip": 11202, "Country": "United States", "Land_Value": 1800, "Improved_V": 10700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.508437933300002, "SHAPE_Area": 96.222190596999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358809.835500001907349, 257193.762800000607967 ], [ 358806.852300003170967, 257183.902199998497963 ], [ 358798.935199998319149, 257184.717300001531839 ], [ 358800.727099999785423, 257196.354499999433756 ], [ 358803.026199996471405, 257195.786299999803305 ], [ 358805.311499997973442, 257195.164700001478195 ], [ 358807.581699997186661, 257194.489999998360872 ], [ 358809.835500001907349, 257193.762800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92488196, "LATITUDE": 18.34409717, "OBJECTID_1": 11835, "PARCEL_NO_": "105401251400", "Tax_Legal_": "23 HOSPITAL GROUND NEW QTR", "Name": "ABAD, LUIS & JOAQUINA PILLIER", "Address": "TORVE GADE #6", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 174800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.183499993700003, "SHAPE_Area": 222.76710690300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359447.141500003635883, 257194.045800000429153 ], [ 359444.132500000298023, 257181.029599998146296 ], [ 359428.0641999989748, 257183.337000001221895 ], [ 359429.880900003015995, 257196.383799999952316 ], [ 359447.141500003635883, 257194.045800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401252500", "MAP": "D9-7588-T005", "PARCEL_NAM": "23A", "ACRE": ".004", "LONGITUDE": -64.9250611, "LATITUDE": 18.34406693, "OBJECTID_1": 11847, "PARCEL_NO_": "105401252500", "Tax_Legal_": "HOSPITAL GROUND 23A KINGS QTR.", "Name": "RICHARDS, ALTHEA", "Address": "PO Box 8094", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.284553263100001, "SHAPE_Area": 25.297054963400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359410.262999996542931, 257187.309300001710653 ], [ 359428.212200000882149, 257184.399599999189377 ], [ 359428.0641999989748, 257183.337000001221895 ], [ 359409.886799998581409, 257185.646699998527765 ], [ 359410.262999996542931, 257187.309300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401201600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92766293, "LATITUDE": 18.34413282, "OBJECTID_1": 11770, "PARCEL_NO_": "105401201600", "Tax_Legal_": "HOSPITAL GROUND 9C-1 KINGS QTR", "Name": "LILLIAN IBLE, LIFE INT.", "Address": "1118 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5900, "Improved_V": 68700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.985366758799998, "SHAPE_Area": 179.09653804600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359149.099399998784065, 257192.037500001490116 ], [ 359149.91889999806881, 257182.845100000500679 ], [ 359137.89299999922514, 257182.705200001597404 ], [ 359136.966899998486042, 257197.580400001257658 ], [ 359148.546400003135204, 257198.24040000140667 ], [ 359149.099399998784065, 257192.037500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92524851, "LATITUDE": 18.34411104, "OBJECTID_1": 11834, "PARCEL_NO_": "105401251300", "Tax_Legal_": "HOSPITAL GROUND 32 NEW QUARTER", "Name": "HAYNES, MADIA V. & BRIN, M. A. & M. A", "Address": "PO Box 9996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6600, "Improved_V": 70300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.384240598799998, "SHAPE_Area": 242.63455882700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359408.19650000333786, 257196.120299998670816 ], [ 359408.123800002038479, 257195.754299998283386 ], [ 359407.38289999961853, 257192.1435999982059 ], [ 359406.615000002086163, 257188.538499999791384 ], [ 359405.82039999961853, 257184.939100001007318 ], [ 359404.99889999628067, 257181.345800001174212 ], [ 359388.792099997401237, 257184.238699998706579 ], [ 359392.028499998152256, 257198.354899998754263 ], [ 359408.19650000333786, 257196.120299998670816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401290200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93099831000001, "LATITUDE": 18.34417286, "OBJECTID_1": 11896, "PARCEL_NO_": "105401290200", "Tax_Legal_": "COMMANDANT TVER GADE 3 KINGS QUARTER", "Name": "RICHARDSON, CELIA P", "Address": "PO Box 307966", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2900, "Improved_V": 49600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.470590552099999, "SHAPE_Area": 223.58236898600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358800.727099999785423, 257196.354499999433756 ], [ 358798.935199998319149, 257184.717300001531839 ], [ 358781.445000000298023, 257186.517900001257658 ], [ 358781.665100000798702, 257188.707299999892712 ], [ 358782.276000000536442, 257198.946199998259544 ], [ 358783.090700000524521, 257198.8935999982059 ], [ 358787.537399999797344, 257198.549499999731779 ], [ 358791.964599996805191, 257198.010899998247623 ], [ 358796.364000000059605, 257197.2787000015378 ], [ 358800.727099999785423, 257196.354499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401310100", "MAP": null, "PARCEL_NAM": "36B", "ACRE": "8,544 sq ft", "LONGITUDE": -64.9298877, "LATITUDE": 18.34392984, "OBJECTID_1": 11947, "PARCEL_NO_": "105401310100", "Tax_Legal_": "DRONNINGENS GADE 36B KINGS QTR", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 192200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.75137708299999, "SHAPE_Area": 1259.4484823099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358893.114600002765656, 257186.232500001788139 ], [ 358912.989799998700619, 257185.499800000339746 ], [ 358923.763599999248981, 257185.427999999374151 ], [ 358925.303199999034405, 257145.725699998438358 ], [ 358916.860799998044968, 257145.756999999284744 ], [ 358916.828000001609325, 257147.151099998503923 ], [ 358891.620600000023842, 257146.956399999558926 ], [ 358891.596400000154972, 257153.561900001019239 ], [ 358893.114600002765656, 257186.232500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401290100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93114726, "LATITUDE": 18.34413131, "OBJECTID_1": 11895, "PARCEL_NO_": "105401290100", "Tax_Legal_": "14 & 15 COMMANDANT GADE OV QUEENS QTR", "Name": "RICHARDSON, DESIREE M", "Address": "PO Box 207", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.803474698499997, "SHAPE_Area": 314.45073357299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358782.276000000536442, 257198.946199998259544 ], [ 358781.665100000798702, 257188.707299999892712 ], [ 358781.445000000298023, 257186.517900001257658 ], [ 358780.178400002419949, 257173.918600000441074 ], [ 358768.459100000560284, 257174.917599998414516 ], [ 358768.586800001561642, 257181.136799998581409 ], [ 358768.76349999755621, 257187.354699999094009 ], [ 358768.989100001752377, 257193.571100000292063 ], [ 358769.263700000941753, 257199.785599999129772 ], [ 358782.276000000536442, 257198.946199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92540436, "LATITUDE": 18.34413061, "OBJECTID_1": 11833, "PARCEL_NO_": "105401251200", "Tax_Legal_": "HOSPITAL GROUND 32A NEW QUARTER", "Name": "ROBLES, ELRIDGE A.", "Address": "1441 St Georges Avene", "City": "Colonia", "State": "New Jersey", "Zip": 7067, "Country": "United States", "Land_Value": 6100, "Improved_V": 80600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.4982519279, "SHAPE_Area": 248.998009024 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359392.028499998152256, 257198.354899998754263 ], [ 359388.792099997401237, 257184.238699998706579 ], [ 359372.282600000500679, 257184.829700000584126 ], [ 359375.846100002527237, 257200.591400001198053 ], [ 359392.028499998152256, 257198.354899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401300200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93018016000001, "LATITUDE": 18.34416388, "OBJECTID_1": 11912, "PARCEL_NO_": "105401300200", "Tax_Legal_": "COMMANDANT GADE 13BC KINGS QUARTER", "Name": "RIVERS, VERNA & CLIVE C.", "Address": "PO Box 308473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.475580174100003, "SHAPE_Area": 246.83426691599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358889.235399998724461, 257193.734499998390675 ], [ 358889.473999999463558, 257186.978799998760223 ], [ 358868.909000001847744, 257185.09180000051856 ], [ 358865.201099999248981, 257184.751600001007318 ], [ 358871.399400003254414, 257200.7635000012815 ], [ 358889.235399998724461, 257193.734499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401280400", "MAP": null, "PARCEL_NAM": "9A COMMANDANT GADE O.V.", "ACRE": "0.04", "LONGITUDE": -64.93134504, "LATITUDE": 18.34399297, "OBJECTID_1": 11888, "PARCEL_NO_": "105401280400", "Tax_Legal_": "9A COMMANDANT GADE OVER VANDET QUEEN'S QTR", "Name": "GERUT, JANET", "Address": "PO Box 45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4500, "Improved_V": 43400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.019488659300002, "SHAPE_Area": 196.35487043200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358748.02080000191927, 257178.54839999973774 ], [ 358760.9121999964118, 257178.54839999973774 ], [ 358760.769799999892712, 257169.7331000007689 ], [ 358760.733199998736382, 257159.792199999094009 ], [ 358749.179300002753735, 257168.739399999380112 ], [ 358747.689099997282028, 257169.980000000447035 ], [ 358746.290299996733665, 257171.322799999266863 ], [ 358744.989900000393391, 257172.761100001633167 ], [ 358743.794299997389317, 257174.287599999457598 ], [ 358748.02080000191927, 257178.54839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401080800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92846839000001, "LATITUDE": 18.34410961, "OBJECTID_1": 11504, "PARCEL_NO_": "105401080800", "Tax_Legal_": "HOSPITAL GROUND 103 KINGS QUARTER", "Name": "CARL ALFRED PENN REVOCABLE FAMILY TRUST", "Address": "PO Box 1046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12900, "Improved_V": 91000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.586630743, "SHAPE_Area": 636.17159716200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359083.108400002121925, 257185.546100001782179 ], [ 359040.920100003480911, 257173.913600001484156 ], [ 359036.798600003123283, 257184.434599999338388 ], [ 359049.62950000166893, 257192.772199999541044 ], [ 359063.59009999781847, 257201.9662000015378 ], [ 359083.108400002121925, 257185.546100001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401260600", "MAP": "A3-84-T52", "PARCEL_NAM": "5", "ACRE": null, "LONGITUDE": -64.92421475, "LATITUDE": 18.34414388, "OBJECTID_1": 11855, "PARCEL_NO_": "105401260600", "Tax_Legal_": "HOSPITAL GROUND 4 NEW QUARTER", "Name": "FRETT, ENID, MARIO FRETT & OTHER", "Address": "PO Box 12374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12700, "Improved_V": 50200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.055782196, "SHAPE_Area": 539.01634539700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359531.063699997961521, 257188.919199999421835 ], [ 359530.741200000047684, 257187.010499998927116 ], [ 359483.2804000005126, 257190.698300000280142 ], [ 359486.552599996328354, 257202.619800001382828 ], [ 359532.54619999974966, 257197.691700000315905 ], [ 359531.063699997961521, 257188.919199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401191700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92791513, "LATITUDE": 18.34418505, "OBJECTID_1": 11753, "PARCEL_NO_": "105401191700", "Tax_Legal_": "HOSPITAL GROUND 132 NEW QTR", "Name": "WILLIAMS, JULIUS", "Address": "227 Ranchlands", "City": "Bushkill", "State": "Pennsylvania", "Zip": 18324, "Country": "United States", "Land_Value": 5500, "Improved_V": 11500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.864138499299997, "SHAPE_Area": 158.23389911500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359121.498099997639656, 257188.23030000180006 ], [ 359111.952100001275539, 257188.6875 ], [ 359111.301600001752377, 257193.453499998897314 ], [ 359110.073499999940395, 257202.452399998903275 ], [ 359122.97240000218153, 257202.669199999421835 ], [ 359121.498099997639656, 257188.23030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401191900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92780849, "LATITUDE": 18.34414659, "OBJECTID_1": 11755, "PARCEL_NO_": "105401191900", "Tax_Legal_": "HOSPITAL GROUND 114A NEW QUARTER", "Name": "REESE (LIFE ESTATE), ELAINE P.", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3600, "Improved_V": 68200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.764949014799996, "SHAPE_Area": 254.104091302 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359134.159400001168251, 257180.396200001239777 ], [ 359120.770499996840954, 257182.620000001043081 ], [ 359121.439900003373623, 257187.660399999469519 ], [ 359121.498099997639656, 257188.23030000180006 ], [ 359122.97240000218153, 257202.669199999421835 ], [ 359133.532799996435642, 257202.846700001507998 ], [ 359134.159400001168251, 257180.396200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401061000", "MAP": null, "PARCEL_NAM": "15 COMMANDANT GADE", "ACRE": null, "LONGITUDE": -64.93059507, "LATITUDE": 18.34422105, "OBJECTID_1": 11485, "PARCEL_NO_": "105401061000", "Tax_Legal_": "15 COMMANDANT GADE KINGS QTR", "Name": "BLYDEN, ELEANOR,GERUT, JANET", "Address": "PO Box 45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.442237472000002, "SHAPE_Area": 114.871902359 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358840.117200002074242, 257202.995099999010563 ], [ 358833.019299998879433, 257188.6858000010252 ], [ 358827.19879999756813, 257190.980700001120567 ], [ 358832.678199999034405, 257206.152800001204014 ], [ 358840.117200002074242, 257202.995099999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401201100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92767125, "LATITUDE": 18.34423988, "OBJECTID_1": 11765, "PARCEL_NO_": "105401201100", "Tax_Legal_": "HOSPITAL GROUND 106B KINGS QTR", "Name": "EMANUEL, CORNELIUS", "Address": "PO Box 1484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2400, "Improved_V": 22700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.932608942199998, "SHAPE_Area": 97.410248422099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359148.546400003135204, 257198.24040000140667 ], [ 359136.966899998486042, 257197.580400001257658 ], [ 359136.554799996316433, 257206.461500000208616 ], [ 359147.820200003683567, 257206.386100001633167 ], [ 359148.546400003135204, 257198.24040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401201700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92753416, "LATITUDE": 18.34420768, "OBJECTID_1": 11771, "PARCEL_NO_": "105401201700", "Tax_Legal_": "HOSPITAL GROUND 9C-2 KINGS QTR", "Name": "LYNCH (LIFE ESTATE), MERCEDES", "Address": "1315 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6400, "Improved_V": 59000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.929699272599997, "SHAPE_Area": 234.940081843 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359155.182899996638298, 257205.178300000727177 ], [ 359165.857799999415874, 257205.278799999505281 ], [ 359166.061499997973442, 257200.626299999654293 ], [ 359163.748999997973442, 257190.862399999052286 ], [ 359152.269900001585484, 257191.804000001400709 ], [ 359149.099399998784065, 257192.037500001490116 ], [ 359148.546400003135204, 257198.24040000140667 ], [ 359147.820200003683567, 257206.386100001633167 ], [ 359155.182899996638298, 257205.178300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401080700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92878412, "LATITUDE": 18.34406925, "OBJECTID_1": 11503, "PARCEL_NO_": "105401080700", "Tax_Legal_": "102 HOSPITAL GROUND KINGS QUARTER", "Name": "QUESTEL, SHERIDAN", "Address": "PO Box 304175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.15000089599999, "SHAPE_Area": 841.87503816799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359036.798600003123283, 257184.434599999338388 ], [ 359040.920100003480911, 257173.913600001484156 ], [ 359041.946800000965595, 257164.050200000405312 ], [ 359014.027900002896786, 257165.923799999058247 ], [ 359014.324500001966953, 257168.950399998575449 ], [ 359014.641599997878075, 257173.429299999028444 ], [ 359014.676100000739098, 257177.877500001341105 ], [ 359014.466899998486042, 257182.320900000631809 ], [ 359014.014600001275539, 257186.746100001037121 ], [ 359013.320500001311302, 257191.139899998903275 ], [ 359012.386699996888638, 257195.489100001752377 ], [ 359011.216099999845028, 257199.780600000172853 ], [ 359009.812100000679493, 257204.001600001007318 ], [ 359019.675499998033047, 257206.670299999415874 ], [ 359036.798600003123283, 257184.434599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401081100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92869053, "LATITUDE": 18.34420149, "OBJECTID_1": 11507, "PARCEL_NO_": "105401081100", "Tax_Legal_": "HOSPITAL GROUND 101 KINGS QUARTER", "Name": "ISAAC, URSULA", "Address": "69 Beachway Dr", "City": "Palm Coast", "State": "Florida", "Zip": 32137, "Country": "United States", "Land_Value": 10200, "Improved_V": 300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.666482860499997, "SHAPE_Area": 307.05309033499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359049.62950000166893, 257192.772199999541044 ], [ 359036.798600003123283, 257184.434599999338388 ], [ 359019.675499998033047, 257206.670299999415874 ], [ 359030.146700002253056, 257208.022599998861551 ], [ 359049.62950000166893, 257192.772199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401300100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93037873, "LATITUDE": 18.3442122, "OBJECTID_1": 11911, "PARCEL_NO_": "105401300100", "Tax_Legal_": "13B COMMANDANT GADE KINGS QUARTER", "Name": "FLEMING, CECIL & EDWARD", "Address": "2303 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7300, "Improved_V": 46600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.895450209200007, "SHAPE_Area": 469.59015446799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358871.399400003254414, 257200.7635000012815 ], [ 358865.201099999248981, 257184.751600001007318 ], [ 358862.452299997210503, 257184.499400001019239 ], [ 358840.423299998044968, 257192.666999999433756 ], [ 358849.072899997234344, 257209.951400000602007 ], [ 358871.399400003254414, 257200.7635000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401060900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9306752, "LATITUDE": 18.34424799, "OBJECTID_1": 11484, "PARCEL_NO_": "105401060900", "Tax_Legal_": "COMMANDANT TVER 1A &1B-1 KINGS QTR", "Name": "WILLIAMS, CHRISTOPHER", "Address": "1A Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2600, "Improved_V": 55600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.0087943176, "SHAPE_Area": 174.44986244 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358816.542499996721745, 257195.182199999690056 ], [ 358823.463899999856949, 257210.0641999989748 ], [ 358832.678199999034405, 257206.152800001204014 ], [ 358827.19879999756813, 257190.980700001120567 ], [ 358816.542499996721745, 257195.182199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92462864, "LATITUDE": 18.34420929, "OBJECTID_1": 11832, "PARCEL_NO_": "105401251100", "Tax_Legal_": "HOSPITAL GROUND 18 NEW QTR", "Name": "ESANNASON, JUNE YVONNE (TRUSTEE)", "Address": "1332 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39400, "Improved_V": 72300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.778205867400004, "SHAPE_Area": 567.58906295400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359480.888599999248981, 257208.699599999934435 ], [ 359476.572700001299381, 257190.059200000017881 ], [ 359447.141500003635883, 257194.045800000429153 ], [ 359449.966700002551079, 257206.267000000923872 ], [ 359451.476899996399879, 257212.799800001084805 ], [ 359480.888599999248981, 257208.699599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401260500", "MAP": "A3-84-T52", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.92418755, "LATITUDE": 18.34424274, "OBJECTID_1": 11854, "PARCEL_NO_": "105401260500", "Tax_Legal_": "HOSPITAL GROUND 5 NEW QTR", "Name": "HOWARD, TERRANCE & L & SMITH, J", "Address": "5 Estate Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13000, "Improved_V": 21600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.15284292699999, "SHAPE_Area": 500.631075791 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359534.372000001370907, 257208.567299999296665 ], [ 359532.54619999974966, 257197.691700000315905 ], [ 359486.552599996328354, 257202.619800001382828 ], [ 359488.416400000452995, 257213.141499999910593 ], [ 359534.372000001370907, 257208.567299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401201200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92767354, "LATITUDE": 18.34431121, "OBJECTID_1": 11766, "PARCEL_NO_": "105401201200", "Tax_Legal_": "HOSPITAL GROUND 106C KINGS QTR", "Name": "EMANUEL, MARTIN & ROBERT", "Address": "PO Box 1484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2400, "Improved_V": 49300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.442939047599999, "SHAPE_Area": 79.638934653500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359147.820200003683567, 257206.386100001633167 ], [ 359136.554799996316433, 257206.461500000208616 ], [ 359136.611000001430511, 257213.568300001323223 ], [ 359147.152000002563, 257213.881000000983477 ], [ 359147.820200003683567, 257206.386100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401201500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92758101, "LATITUDE": 18.34431096, "OBJECTID_1": 11769, "PARCEL_NO_": "105401201500", "Tax_Legal_": "HOSPITAL GROUND 106F KINGS QTR", "Name": "MOLYNEAUX, AUGUSTA", "Address": "PO Box 1484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.820049429199997, "SHAPE_Area": 70.1288792796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359155.182899996638298, 257205.178300000727177 ], [ 359147.820200003683567, 257206.386100001633167 ], [ 359147.152000002563, 257213.881000000983477 ], [ 359153.469400003552437, 257214.098200000822544 ], [ 359156.692800000309944, 257214.335700001567602 ], [ 359155.182899996638298, 257205.178300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401280200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93144828, "LATITUDE": 18.34432352, "OBJECTID_1": 11886, "PARCEL_NO_": "105401280200", "Tax_Legal_": "COMMANDANT GADE OV 1O QUEENS QUARTER", "Name": "SMITH, JOHN F", "Address": "PO Box 504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33400, "Improved_V": 35400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.976593416, "SHAPE_Area": 522.17340089799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358762.329499997198582, 257213.354200001806021 ], [ 358761.791400000452995, 257202.934799998998642 ], [ 358761.748000003397465, 257202.08669999986887 ], [ 358761.705600000917912, 257201.238600000739098 ], [ 358761.663999997079372, 257200.390399999916553 ], [ 358761.623400002717972, 257199.542199999094009 ], [ 358729.849399998784065, 257201.671700000762939 ], [ 358719.315200001001358, 257216.480700001120567 ], [ 358762.329499997198582, 257213.354200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401061200", "MAP": null, "PARCEL_NAM": "1B COMMANDANT TVAER GADE", "ACRE": null, "LONGITUDE": -64.93074748, "LATITUDE": 18.34428516, "OBJECTID_1": 11487, "PARCEL_NO_": "105401061200", "Tax_Legal_": "DOMINI TVER GADE 2 & 1B-4 KINGS QTR.", "Name": "GIRAUD, THOMAS", "Address": "210 S Rush St", "City": "Itasca", "State": "Illinois", "Zip": 60143, "Country": "United States", "Land_Value": 5500, "Improved_V": 99100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.343895136299999, "SHAPE_Area": 106.9603331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358814.157799996435642, 257207.376299999654293 ], [ 358816.567400000989437, 257212.991599999368191 ], [ 358823.463899999856949, 257210.0641999989748 ], [ 358816.542499996721745, 257195.182199999690056 ], [ 358814.558600001037121, 257195.964400000870228 ], [ 358813.984700001776218, 257196.178300000727177 ], [ 358813.409599997103214, 257196.388799998909235 ], [ 358812.833200000226498, 257196.596000000834465 ], [ 358812.255599997937679, 257196.799899999052286 ], [ 358814.157799996435642, 257207.376299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401250800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9252931, "LATITUDE": 18.34426228, "OBJECTID_1": 11829, "PARCEL_NO_": "105401250800", "Tax_Legal_": "31 HOSPITAL GROUND NEW QTR", "Name": "JUANA A CORCINO", "Address": "1355 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39800, "Improved_V": 211800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.963659314799997, "SHAPE_Area": 551.88525885399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359395.845100000500679, 257215.002000000327826 ], [ 359411.478100001811981, 257212.647599998861551 ], [ 359408.19650000333786, 257196.120299998670816 ], [ 359392.028499998152256, 257198.354899998754263 ], [ 359375.846100002527237, 257200.591400001198053 ], [ 359379.655299998819828, 257217.44029999896884 ], [ 359395.845100000500679, 257215.002000000327826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401060600", "MAP": null, "PARCEL_NAM": "COMMANDANT TVAER GADE 2", "ACRE": null, "LONGITUDE": -64.93085151, "LATITUDE": 18.34432645, "OBJECTID_1": 11481, "PARCEL_NO_": "105401060600", "Tax_Legal_": "COMMANDANT TVER 2 KINGS QUARTER", "Name": "WARE, HANNIBAL M. & ELISE M.", "Address": "43221 Whisperwood Ter", "City": "Ashburn", "State": "Virginia", "Zip": 20147, "Country": "United States", "Land_Value": 7800, "Improved_V": 113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.332024419500001, "SHAPE_Area": 316.434830885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358814.157799996435642, 257207.376299999654293 ], [ 358809.945600003004074, 257197.560499999672174 ], [ 358808.598899997770786, 257198.004000000655651 ], [ 358804.900700002908707, 257199.073800001293421 ], [ 358801.165799997746944, 257200.007800001651049 ], [ 358797.399400003254414, 257200.804800000041723 ], [ 358795.907899998128414, 257201.066100001335144 ], [ 358799.393200002610683, 257218.699000000953674 ], [ 358800.594200000166893, 257218.5793999992311 ], [ 358808.732500001788139, 257217.769299998879433 ], [ 358811.999799996614456, 257217.444099999964237 ], [ 358815.988099999725819, 257217.047100000083447 ], [ 358818.212600000202656, 257216.825599998235703 ], [ 358817.51860000193119, 257215.208399999886751 ], [ 358816.567400000989437, 257212.991599999368191 ], [ 358814.157799996435642, 257207.376299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401060700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93059116000001, "LATITUDE": 18.34434076, "OBJECTID_1": 11482, "PARCEL_NO_": "105401060700", "Tax_Legal_": "14 & 1B-2 COMMANDANT GADE KINGS QTR", "Name": "BLYDEN, ELEANOR,GERUT, JANET", "Address": "PO Box 45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2900, "Improved_V": 65000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.952266716899999, "SHAPE_Area": 168.73722138299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358823.463899999856949, 257210.0641999989748 ], [ 358827.539599999785423, 257218.827399998903275 ], [ 358844.068000003695488, 257210.959699999541044 ], [ 358840.117200002074242, 257202.995099999010563 ], [ 358832.678199999034405, 257206.152800001204014 ], [ 358823.463899999856949, 257210.0641999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401191200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92824047000001, "LATITUDE": 18.34428542, "OBJECTID_1": 11748, "PARCEL_NO_": "105401191200", "Tax_Legal_": "HOSPITAL GROUND 118 NEW QTR", "Name": "MARVIN & MARILYN AGNES CREQUE FAMILY TRUST", "Address": "PO Box 12380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5700, "Improved_V": 81800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.587389458000004, "SHAPE_Area": 210.638607831 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359088.019199997186661, 257193.364199999719858 ], [ 359071.338100001215935, 257207.397399999201298 ], [ 359087.207400001585484, 257219.301899999380112 ], [ 359088.019199997186661, 257193.364199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401081000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92857993, "LATITUDE": 18.34428207, "OBJECTID_1": 11506, "PARCEL_NO_": "105401081000", "Tax_Legal_": "HOSPITAL GROUND 101 KINGS QUARTER", "Name": "RICHARDS, VICTOR", "Address": "PO Box 7295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9900, "Improved_V": 600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.017230025299995, "SHAPE_Area": 438.57109119900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359063.59009999781847, 257201.9662000015378 ], [ 359049.62950000166893, 257192.772199999541044 ], [ 359030.146700002253056, 257208.022599998861551 ], [ 359041.578400000929832, 257220.398400001227856 ], [ 359042.951899997889996, 257219.328099999576807 ], [ 359044.305200003087521, 257218.232400000095367 ], [ 359045.637699998915195, 257217.1114999987185 ], [ 359046.948899999260902, 257215.965799998492002 ], [ 359063.59009999781847, 257201.9662000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401200500", "MAP": null, "PARCEL_NAM": "108", "ACRE": null, "LONGITUDE": -64.92741497, "LATITUDE": 18.34434546, "OBJECTID_1": 11762, "PARCEL_NO_": "105401200500", "Tax_Legal_": "HOSPITAL GROUND 1O8 NEW QUARTER", "Name": "ALLEN, SR. (TRUSTEE), RANDOLPH", "Address": "PO Box 304313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.955852125200003, "SHAPE_Area": 83.850626365500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359173.756999999284744, 257219.893199998885393 ], [ 359168.751800000667572, 257198.760000001639128 ], [ 359167.958599999547005, 257212.096000000834465 ], [ 359164.137599997222424, 257221.477200001478195 ], [ 359173.756999999284744, 257219.893199998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401032000", "MAP": null, "PARCEL_NAM": "COMMANDANT GADE O.V. 13", "ACRE": "4,569 sq ft", "LONGITUDE": -64.93106102, "LATITUDE": 18.34434738, "OBJECTID_1": 11439, "PARCEL_NO_": "105401032000", "Tax_Legal_": "13 COMMANDANT GADE O.V. QUEENS QTR", "Name": "THE EPISCOPAL CHURCH OF THE VI", "Address": "#2 DOMINI GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.030027013700007, "SHAPE_Area": 476.61386607600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358799.393200002610683, 257218.699000000953674 ], [ 358795.907899998128414, 257201.066100001335144 ], [ 358793.90089999884367, 257201.417599998414516 ], [ 358790.383900001645088, 257201.912200000137091 ], [ 358786.852099999785423, 257202.287999998778105 ], [ 358783.30969999730587, 257202.544700000435114 ], [ 358769.447599999606609, 257203.438900001347065 ], [ 358770.289599999785423, 257219.743099998682737 ], [ 358770.479500003159046, 257219.730500001460314 ], [ 358790.969700001180172, 257219.537500001490116 ], [ 358799.393200002610683, 257218.699000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401060800", "MAP": null, "PARCEL_NAM": "1B COMMANDANT TVAER GADE", "ACRE": null, "LONGITUDE": -64.93069875, "LATITUDE": 18.34438636, "OBJECTID_1": 11483, "PARCEL_NO_": "105401060800", "Tax_Legal_": "COMMANDANT TVER 1B&2-1 KINGS QUARTER", "Name": "VICTOR, FRANKLYN", "Address": "PO Box 308034", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3800, "Improved_V": 49300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.005330477199998, "SHAPE_Area": 67.433668918799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358816.567400000989437, 257212.991599999368191 ], [ 358817.51860000193119, 257215.208399999886751 ], [ 358819.432099997997284, 257216.704199999570847 ], [ 358821.578100003302097, 257221.665100000798702 ], [ 358827.539599999785423, 257218.827399998903275 ], [ 358823.463899999856949, 257210.0641999989748 ], [ 358816.567400000989437, 257212.991599999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105401201800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92750484, "LATITUDE": 18.34409632, "OBJECTID_1": 11772, "PARCEL_NO_": "105401201800", "Tax_Legal_": "HOSPITAL GROUND 9C-3 KINGS QTR", "Name": "ONEAL, ADRIANO & ANNA", "Address": "PO Box 10419", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6000, "Improved_V": 39100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.71831151800001, "SHAPE_Area": 210.22838313400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359164.137599997222424, 257221.477200001478195 ], [ 359167.958599999547005, 257212.096000000834465 ], [ 359168.751800000667572, 257198.760000001639128 ], [ 359164.322999998927116, 257180.060499999672174 ], [ 359163.710299998521805, 257177.960200000554323 ], [ 359162.88570000231266, 257175.933600001037121 ], [ 359161.857900001108646, 257174.002199999988079 ], [ 359160.637699998915195, 257172.186099998652935 ], [ 359159.035499997437, 257170.250500001013279 ], [ 359157.253300003707409, 257168.479200001806021 ], [ 359155.307899996638298, 257166.888799998909235 ], [ 359153.217699997127056, 257165.49439999833703 ], [ 359151.002099998295307, 257164.309000000357628 ], [ 359148.682199999690056, 257163.343800000846386 ], [ 359146.279600001871586, 257162.607900001108646 ], [ 359143.817100003361702, 257162.108199998736382 ], [ 359142.520900003612041, 257161.943399999290705 ], [ 359141.66160000115633, 257161.978100001811981 ], [ 359140.846199996769428, 257162.251299999654293 ], [ 359140.139600001275539, 257162.741399999707937 ], [ 359139.597999997437, 257163.409400001168251 ], [ 359139.264600001275539, 257164.202100001275539 ], [ 359139.166599996387959, 257164.870600000023842 ], [ 359139.974500000476837, 257164.858800001442432 ], [ 359142.331200003623962, 257164.988200001418591 ], [ 359144.661899998784065, 257165.3597999997437 ], [ 359146.94200000166893, 257165.969700001180172 ], [ 359149.146899998188019, 257166.811500001698732 ], [ 359151.2533999979496, 257167.8761 ], [ 359151.762900002300739, 257168.176399998366833 ], [ 359152.264499999582767, 257168.489799998700619 ], [ 359152.75789999961853, 257168.816100001335144 ], [ 359153.242600001394749, 257169.155000001192093 ], [ 359154.616899996995926, 257170.224300000816584 ], [ 359155.905799999833107, 257171.395100001245737 ], [ 359157.101899996399879, 257172.660599999129772 ], [ 359158.19820000231266, 257174.0135000012815 ], [ 359159.244099996984005, 257175.570099998265505 ], [ 359160.125100001692772, 257177.225600000470877 ], [ 359160.831900000572205, 257178.962699998170137 ], [ 359161.357100002467632, 257180.763000000268221 ], [ 359163.748999997973442, 257190.862399999052286 ], [ 359166.061499997973442, 257200.626299999654293 ], [ 359165.857799999415874, 257205.278799999505281 ], [ 359165.587499998509884, 257211.453200001269579 ], [ 359161.315399996936321, 257221.941899999976158 ], [ 359164.137599997222424, 257221.477200001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401191300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92808685, "LATITUDE": 18.34427841, "OBJECTID_1": 11749, "PARCEL_NO_": "105401191300", "Tax_Legal_": "117 HOSPITAL GROUND NEW QUARTER", "Name": "CHARLES, MARVLYN", "Address": "PO Box 9380", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33800, "Improved_V": 133400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.554141433, "SHAPE_Area": 629.53612274600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359110.073499999940395, 257202.452399998903275 ], [ 359111.301600001752377, 257193.453499998897314 ], [ 359097.185199998319149, 257193.772700000554323 ], [ 359096.651600003242493, 257186.102099999785423 ], [ 359088.019199997186661, 257193.364199999719858 ], [ 359087.207400001585484, 257219.301899999380112 ], [ 359107.284800000488758, 257222.377999998629093 ], [ 359110.073499999940395, 257202.452399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401201000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92750781, "LATITUDE": 18.34434112, "OBJECTID_1": 11764, "PARCEL_NO_": "105401201000", "Tax_Legal_": "HOSPITAL GROUND 106A KINGS QTR", "Name": "EMANUEL, LESMORE E", "Address": "PO Box 1484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.977751106100001, "SHAPE_Area": 160.68702365300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359161.315399996936321, 257221.941899999976158 ], [ 359165.587499998509884, 257211.453200001269579 ], [ 359165.857799999415874, 257205.278799999505281 ], [ 359155.182899996638298, 257205.178300000727177 ], [ 359156.692800000309944, 257214.335700001567602 ], [ 359153.469400003552437, 257214.098200000822544 ], [ 359154.17509999871254, 257223.11769999936223 ], [ 359161.315399996936321, 257221.941899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401261200", "MAP": "D9-778-T68", "PARCEL_NAM": "7A", "ACRE": null, "LONGITUDE": -64.92406008, "LATITUDE": 18.34432933, "OBJECTID_1": 11863, "PARCEL_NO_": "105401261200", "Tax_Legal_": "HOSPITAL GROUND 6A NEW QTR", "Name": "BAILEY, JAMES SAMUEL", "Address": "317 Manfield Way", "City": "Stockbridge", "State": "Georgia", "Zip": 30281, "Country": "United States", "Land_Value": 5700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.222566901799993, "SHAPE_Area": 255.66231624599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359536.26630000025034, 257219.718299999833107 ], [ 359534.372000001370907, 257208.567299999296665 ], [ 359511.04619999974966, 257210.888999998569489 ], [ 359511.265100002288818, 257211.700800001621246 ], [ 359514.260099999606609, 257221.791999999433756 ], [ 359536.26630000025034, 257219.718299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401201400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92759651, "LATITUDE": 18.34439457, "OBJECTID_1": 11768, "PARCEL_NO_": "105401201400", "Tax_Legal_": "HOSPITAL GROUND 106E KINGS QTR", "Name": "HEIRS OF EMILE LUDVIG", "Address": "PO Box 1484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.088978035799997, "SHAPE_Area": 72.649246151499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359154.17509999871254, 257223.11769999936223 ], [ 359153.469400003552437, 257214.098200000822544 ], [ 359147.152000002563, 257213.881000000983477 ], [ 359146.338699996471405, 257225.408700000494719 ], [ 359148.596400000154972, 257224.748599998652935 ], [ 359154.17509999871254, 257223.11769999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401260300", "MAP": "D9-778-T68", "PARCEL_NAM": "7", "ACRE": null, "LONGITUDE": -64.92427281000001, "LATITUDE": 18.34434747, "OBJECTID_1": 11852, "PARCEL_NO_": "105401260300", "Tax_Legal_": "7 & 8-A-1 HOSPITAL GROUND KING'S QUARTER", "Name": "MEMBERS, PEDRITA", "Address": "2615 Dakota Rock Dr", "City": "Ruskin", "State": "Florida", "Zip": 33570, "Country": "United States", "Land_Value": 6800, "Improved_V": 108200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.874160583899993, "SHAPE_Area": 234.19351285799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359514.260099999606609, 257221.791999999433756 ], [ 359511.265100002288818, 257211.700800001621246 ], [ 359511.04619999974966, 257210.888999998569489 ], [ 359488.416400000452995, 257213.141499999910593 ], [ 359488.60639999806881, 257214.213899999856949 ], [ 359490.986400000751019, 257222.267400000244379 ], [ 359514.260099999606609, 257221.791999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401250700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92459143000001, "LATITUDE": 18.34435272, "OBJECTID_1": 11827, "PARCEL_NO_": "105401250700", "Tax_Legal_": "19 HOSPITAL GROUND KING'S QTR", "Name": "CANTON, JR., ROY F. & MAXWELL, C.", "Address": "PO Box 25652", "City": "St Croix", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 13300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.445644036600001, "SHAPE_Area": 399.245392396 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359483.997000001370907, 257222.124600000679493 ], [ 359480.888599999248981, 257208.699599999934435 ], [ 359451.476899996399879, 257212.799800001084805 ], [ 359454.452899999916553, 257225.673200000077486 ], [ 359483.997000001370907, 257222.124600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401201300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.927678, "LATITUDE": 18.34439741, "OBJECTID_1": 11767, "PARCEL_NO_": "105401201300", "Tax_Legal_": "HOSPITAL GROUND 106D KINGS QTR", "Name": "LUDVIG, INDIANA", "Address": "PO Box 1484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.2883108503, "SHAPE_Area": 121.892724015 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359146.338699996471405, 257225.408700000494719 ], [ 359147.152000002563, 257213.881000000983477 ], [ 359136.611000001430511, 257213.568300001323223 ], [ 359136.178099997341633, 257225.584699999541044 ], [ 359146.338699996471405, 257225.408700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401070500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93013503, "LATITUDE": 18.34432306, "OBJECTID_1": 11492, "PARCEL_NO_": "105401070500", "Tax_Legal_": "COMMANDANT GADE 13 BAA KINGS QTR", "Name": "FRANK MCLAUGHLIN REVOC ST THOMAS REAL ESTATE TRUST", "Address": "18 Starr St", "City": "New London", "State": "Connecticut", "Zip": 6320, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.136832181000003, "SHAPE_Area": 379.65264313300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358889.284199997782707, 257221.088599998503923 ], [ 358888.955399997532368, 257217.842500001192093 ], [ 358888.753100000321865, 257214.586100000888109 ], [ 358888.677799999713898, 257211.324299998581409 ], [ 358888.729500003159046, 257208.061999998986721 ], [ 358889.235399998724461, 257193.734499998390675 ], [ 358871.399400003254414, 257200.7635000012815 ], [ 358871.503899998962879, 257201.033500000834465 ], [ 358879.348200000822544, 257226.025499999523163 ], [ 358889.284199997782707, 257221.088599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401200500", "MAP": "D3-70-T44", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.92742012, "LATITUDE": 18.34443495, "OBJECTID_1": 11762, "PARCEL_NO_": "105401200500", "Tax_Legal_": "HOSPITAL GROUND 1O8 NEW QUARTER", "Name": "ALLEN, SR. (TRUSTEE), RANDOLPH", "Address": "PO Box 304313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.507082872399998, "SHAPE_Area": 71.148349187799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359175.227099999785423, 257226.100400000810623 ], [ 359173.756999999284744, 257219.893199998885393 ], [ 359164.137599997222424, 257221.477200001478195 ], [ 359161.617700003087521, 257227.664000000804663 ], [ 359175.227099999785423, 257226.100400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401070500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93010793000001, "LATITUDE": 18.34446439, "OBJECTID_1": 11492, "PARCEL_NO_": "105401070500", "Tax_Legal_": "COMMANDANT GADE 13 BAA KINGS QTR", "Name": "FRANK MCLAUGHLIN REVOC ST THOMAS REAL ESTATE TRUST", "Address": "18 Starr St", "City": "New London", "State": "Connecticut", "Zip": 6320, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.215611646799999, "SHAPE_Area": 29.009819761599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358889.680399999022484, 257223.948800001293421 ], [ 358889.57209999859333, 257223.235100001096725 ], [ 358889.469899997115135, 257222.520399998873472 ], [ 358889.373999997973442, 257221.804900001734495 ], [ 358889.284199997782707, 257221.088599998503923 ], [ 358879.348200000822544, 257226.025499999523163 ], [ 358880.139499999582767, 257228.546399999409914 ], [ 358889.680399999022484, 257223.948800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93145024, "LATITUDE": 18.34444367, "OBJECTID_1": 11438, "PARCEL_NO_": "105401031900", "Tax_Legal_": "COMMANDANT GADE 11 O V KINGS QUARTER", "Name": "CANCRYN, E V & WALLACE, D E", "Address": "PO Box 337", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 78000, "Improved_V": 108100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.62896208799999, "SHAPE_Area": 554.23554616900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358763.064099997282028, 257227.578899998217821 ], [ 358762.329499997198582, 257213.354200001806021 ], [ 358719.315200001001358, 257216.480700001120567 ], [ 358719.471199996769428, 257221.639699999243021 ], [ 358728.652999997138977, 257227.933899998664856 ], [ 358729.132700003683567, 257228.27419999986887 ], [ 358729.601199999451637, 257228.629799999296665 ], [ 358730.058100000023842, 257229.000300001353025 ], [ 358730.50280000269413, 257229.385299999266863 ], [ 358763.064099997282028, 257227.578899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401191600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92788798, "LATITUDE": 18.34434562, "OBJECTID_1": 11752, "PARCEL_NO_": "105401191600", "Tax_Legal_": "HOSPITAL GROUND 131 NEW QTR", "Name": "VANTERPOOL, J", "Address": "50 Tide Vlg", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 8800, "Improved_V": 40400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.169613592299996, "SHAPE_Area": 495.69693970899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359133.345600001513958, 257209.553599998354912 ], [ 359133.532799996435642, 257202.846700001507998 ], [ 359122.97240000218153, 257202.669199999421835 ], [ 359110.073499999940395, 257202.452399998903275 ], [ 359107.284800000488758, 257222.377999998629093 ], [ 359119.403300002217293, 257229.86259999871254 ], [ 359133.345600001513958, 257209.553599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401191500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92780251000001, "LATITUDE": 18.3444194, "OBJECTID_1": 11751, "PARCEL_NO_": "105401191500", "Tax_Legal_": "HOSPITAL GROUND 13O NEW QTR", "Name": "VANTERPOOL, M", "Address": "50 Tide Vlg", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 6500, "Improved_V": 41000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.270963355699998, "SHAPE_Area": 110.014681025 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359129.362400002777576, 257227.695300001651049 ], [ 359132.960400000214577, 257223.355399999767542 ], [ 359133.345600001513958, 257209.553599998354912 ], [ 359119.403300002217293, 257229.86259999871254 ], [ 359129.362400002777576, 257227.695300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401250500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92518229, "LATITUDE": 18.34439585, "OBJECTID_1": 11825, "PARCEL_NO_": "105401250500", "Tax_Legal_": "HOSPITAL GROUND 30A KINGS QTR", "Name": "SHERIDAN, SHIRLEY, ELVA RICHARDS-HUGGINS & MONALY RICHARDS", "Address": "PO Box 10196", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5200, "Improved_V": 105900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.994573847700003, "SHAPE_Area": 247.483418986 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359414.578000001609325, 257228.249499998986721 ], [ 359414.512900002300739, 257227.925799999386072 ], [ 359414.447899997234344, 257227.60190000012517 ], [ 359414.383299998939037, 257227.278099998831749 ], [ 359414.318800002336502, 257226.954100001603365 ], [ 359411.478100001811981, 257212.647599998861551 ], [ 359395.845100000500679, 257215.002000000327826 ], [ 359399.406199999153614, 257230.534499999135733 ], [ 359414.578000001609325, 257228.249499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401080600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92883142, "LATITUDE": 18.34439815, "OBJECTID_1": 11502, "PARCEL_NO_": "105401080600", "Tax_Legal_": "HOSPITAL GROUND 101A KINGS QUARTER", "Name": "GEORGE, SPRAUVE, BENJAMIN, GEO", "Address": "PO Box 7295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16300, "Improved_V": 46100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.09457179100001, "SHAPE_Area": 728.06103771300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359041.578400000929832, 257220.398400001227856 ], [ 359030.146700002253056, 257208.022599998861551 ], [ 359019.675499998033047, 257206.670299999415874 ], [ 359009.812100000679493, 257204.001600001007318 ], [ 359009.221799999475479, 257205.575300000607967 ], [ 359007.503300003707409, 257209.678199999034405 ], [ 359005.562700003385544, 257213.680900000035763 ], [ 359003.405599996447563, 257217.571199998259544 ], [ 359001.038699999451637, 257221.337499998509884 ], [ 358998.468999996781349, 257224.968499999493361 ], [ 359021.427299998700619, 257232.298799999058247 ], [ 359026.390900000929832, 257229.840300001204014 ], [ 359030.354000002145767, 257227.757100000977516 ], [ 359034.212200000882149, 257225.485399998724461 ], [ 359037.956600002944469, 257223.030600000172853 ], [ 359041.578400000929832, 257220.398400001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401250400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92533156, "LATITUDE": 18.34441892, "OBJECTID_1": 11824, "PARCEL_NO_": "105401250400", "Tax_Legal_": "HOSPITAL GROUND 3O NEW QUARTER", "Name": "AMORY, STEPHANIE & LOWELL", "Address": "PO Box 222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7400, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.660391404199999, "SHAPE_Area": 260.53416569400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359399.406199999153614, 257230.534499999135733 ], [ 359395.845100000500679, 257215.002000000327826 ], [ 359379.655299998819828, 257217.44029999896884 ], [ 359383.168600000441074, 257232.979899998754263 ], [ 359399.406199999153614, 257230.534499999135733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401060200", "MAP": null, "PARCEL_NAM": "COMMANDANT GADE O.V. 12C", "ACRE": null, "LONGITUDE": -64.93108964, "LATITUDE": 18.34448776, "OBJECTID_1": 11479, "PARCEL_NO_": "105401060200", "Tax_Legal_": "COMMANDANT 12C QUEENS QTR", "Name": "JACKSON, ANATH & BIANCE", "Address": "PO Box 98", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9400, "Improved_V": 70200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.87025437, "SHAPE_Area": 286.15816030399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358791.170299999415874, 257233.575500000268221 ], [ 358790.969700001180172, 257219.537500001490116 ], [ 358770.479500003159046, 257219.730500001460314 ], [ 358770.289599999785423, 257219.743099998682737 ], [ 358770.384800001978874, 257221.586599998176098 ], [ 358771.011100001633167, 257233.714200001209974 ], [ 358791.170299999415874, 257233.575500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401070400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93029066, "LATITUDE": 18.34441067, "OBJECTID_1": 11491, "PARCEL_NO_": "105401070400", "Tax_Legal_": "COMMANDANT GADE 13BA KINGS QTR", "Name": "HANSEN, ELISA", "Address": "PO Box 161", "City": "Rescue", "State": "California", "Zip": 95672, "Country": "United States", "Land_Value": 13300, "Improved_V": 44600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.984650698, "SHAPE_Area": 659.24956543799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358880.139499999582767, 257228.546399999409914 ], [ 358879.348200000822544, 257226.025499999523163 ], [ 358871.503899998962879, 257201.033500000834465 ], [ 358871.399400003254414, 257200.7635000012815 ], [ 358849.074199996888638, 257209.799100000411272 ], [ 358861.866400003433228, 257237.435899998992682 ], [ 358880.139499999582767, 257228.546399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401191100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92808091000001, "LATITUDE": 18.344476, "OBJECTID_1": 11747, "PARCEL_NO_": "105401191100", "Tax_Legal_": "HOSPITAL GROUND 133 NEW QTR", "Name": "CINTRON, GLADYS", "Address": "PO Box 847", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7100, "Improved_V": 53000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.861175546400005, "SHAPE_Area": 344.28127695299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359088.761799998581409, 257236.530799999833107 ], [ 359119.403300002217293, 257229.86259999871254 ], [ 359107.284800000488758, 257222.377999998629093 ], [ 359087.207400001585484, 257219.301899999380112 ], [ 359086.642899997532368, 257237.056800000369549 ], [ 359087.170000001788139, 257236.914799999445677 ], [ 359087.698899999260902, 257236.779800001531839 ], [ 359088.229500003159046, 257236.651799999177456 ], [ 359088.761799998581409, 257236.530799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401190800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92830208, "LATITUDE": 18.34442258, "OBJECTID_1": 11744, "PARCEL_NO_": "105401190800", "Tax_Legal_": "HOSPITAL GROUND 119 KINGS QTR", "Name": "HEYLIGER & SANDRA SARGENT, MURPHY", "Address": "312 West Chamberlin Ave", "City": "Hampton", "State": "Virginia", "Zip": 236631456, "Country": "United States", "Land_Value": 11300, "Improved_V": 65800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.317929500199995, "SHAPE_Area": 453.21741317200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359086.642899997532368, 257237.056800000369549 ], [ 359087.207400001585484, 257219.301899999380112 ], [ 359071.338100001215935, 257207.397399999201298 ], [ 359058.529799997806549, 257218.172600001096725 ], [ 359074.276299998164177, 257230.360599998384714 ], [ 359083.998000003397465, 257237.885299999266863 ], [ 359084.653899997472763, 257237.661499999463558 ], [ 359085.313500002026558, 257237.448800001293421 ], [ 359085.976599998772144, 257237.24720000103116 ], [ 359086.642899997532368, 257237.056800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401061300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93051674, "LATITUDE": 18.3444784, "OBJECTID_1": 11488, "PARCEL_NO_": "105401061300", "Tax_Legal_": "DOMINI TVER 1 KINGS QTR", "Name": "HAZEL, RUEL & DEBBIE T. D", "Address": "PO Box 11968", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 47400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.256353221799998, "SHAPE_Area": 462.42601003499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358827.539599999785423, 257218.827399998903275 ], [ 358837.273699998855591, 257239.757100000977516 ], [ 358855.88910000026226, 257234.790800001472235 ], [ 358844.068000003695488, 257210.959699999541044 ], [ 358827.539599999785423, 257218.827399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401250300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92455939, "LATITUDE": 18.34448263, "OBJECTID_1": 11823, "PARCEL_NO_": "105401250300", "Tax_Legal_": "20 HOSPITAL GROUND NO. 9 NEW QUARTER", "Name": "Josephine Arnold & Others", "Address": "PO Box 8083", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.583894669100005, "SHAPE_Area": 475.04566106300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359485.797600001096725, 257238.292399998754263 ], [ 359487.30969999730587, 257236.432300001382828 ], [ 359483.997000001370907, 257222.124600000679493 ], [ 359454.452899999916553, 257225.673200000077486 ], [ 359458.016599997878075, 257241.089299999177456 ], [ 359485.797600001096725, 257238.292399998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401190500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92846179, "LATITUDE": 18.34450159, "OBJECTID_1": 11741, "PARCEL_NO_": "105401190500", "Tax_Legal_": "HOSPITAL GROUND 12O NEW QUARTER", "Name": "ESTATE OF PAULETTE JOSEPH", "Address": "PO Box 307305", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7100, "Improved_V": 116400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.183708238400001, "SHAPE_Area": 376.404818546 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359074.276299998164177, 257230.360599998384714 ], [ 359058.529799997806549, 257218.172600001096725 ], [ 359052.931400001049042, 257222.88230000063777 ], [ 359050.545999996364117, 257224.935899998992682 ], [ 359048.098300002515316, 257226.91499999910593 ], [ 359045.590899996459484, 257228.817699998617172 ], [ 359043.026000000536442, 257230.642200000584126 ], [ 359058.021300002932549, 257242.467199999839067 ], [ 359074.276299998164177, 257230.360599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401031800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93138737, "LATITUDE": 18.34457461, "OBJECTID_1": 11437, "PARCEL_NO_": "105401031800", "Tax_Legal_": "COMMANDANT GADE 12A & 12AA QUEENS GTR", "Name": "EPISCOPAL CHURCH", "Address": "PO BOX 1148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 141400, "Improved_V": 776700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.710890387600003, "SHAPE_Area": 448.49769212000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358763.908600002527237, 257243.932199999690056 ], [ 358763.064099997282028, 257227.578899998217821 ], [ 358730.50280000269413, 257229.385299999266863 ], [ 358731.992499999701977, 257230.880699999630451 ], [ 358733.299999997019768, 257232.537900000810623 ], [ 358734.407799996435642, 257234.334699999541044 ], [ 358735.301100000739098, 257236.24720000103116 ], [ 358735.968199998140335, 257238.249800000339746 ], [ 358736.399999998509884, 257240.315999999642372 ], [ 358736.590899996459484, 257242.418200001120567 ], [ 358736.572700001299381, 257244.030600000172853 ], [ 358763.908600002527237, 257243.932199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401250200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92486136, "LATITUDE": 18.3445184, "OBJECTID_1": 11822, "PARCEL_NO_": "105401250200", "Tax_Legal_": "HOSPITAL GROUND 26 NEW QUARTER", "Name": "DENTON, JUANITO", "Address": "4012 Nicholson St", "City": "Hyattsville", "State": "Maryland", "Zip": 20782, "Country": "United States", "Land_Value": 39400, "Improved_V": 349000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.56069416299999, "SHAPE_Area": 541.72002922599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359458.016599997878075, 257241.089299999177456 ], [ 359454.452899999916553, 257225.673200000077486 ], [ 359420.193000003695488, 257229.760400000959635 ], [ 359423.831000000238419, 257245.145899999886751 ], [ 359458.016599997878075, 257241.089299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401061200", "MAP": null, "PARCEL_NAM": "DOMINI TVAER GADE 2", "ACRE": null, "LONGITUDE": -64.93069453, "LATITUDE": 18.34452781, "OBJECTID_1": 11487, "PARCEL_NO_": "105401061200", "Tax_Legal_": "DOMINI TVER GADE 2 & 1B-4 KINGS QTR.", "Name": "GIRAUD, THOMAS", "Address": "210 S Rush St", "City": "Itasca", "State": "Illinois", "Zip": 60143, "Country": "United States", "Land_Value": 5500, "Improved_V": 99100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.224718813799996, "SHAPE_Area": 471.52356006000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358837.273699998855591, 257239.757100000977516 ], [ 358827.539599999785423, 257218.827399998903275 ], [ 358821.578100003302097, 257221.665100000798702 ], [ 358820.439699999988079, 257222.015500001609325 ], [ 358818.212600000202656, 257216.825599998235703 ], [ 358815.988099999725819, 257217.047100000083447 ], [ 358811.999799996614456, 257217.444099999964237 ], [ 358810.728200003504753, 257217.570700000971556 ], [ 358815.741400003433228, 257245.09910000115633 ], [ 358815.953100003302097, 257245.071699999272823 ], [ 358817.610399998724461, 257244.807799998670816 ], [ 358818.367600001394749, 257244.6706000007689 ], [ 358819.122900001704693, 257244.523200001567602 ], [ 358819.87610000371933, 257244.365699999034405 ], [ 358820.627199999988079, 257244.198100000619888 ], [ 358837.273699998855591, 257239.757100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401061100", "MAP": null, "PARCEL_NAM": "DOMINI TVAER GADE 3A", "ACRE": null, "LONGITUDE": -64.93080874, "LATITUDE": 18.34454169, "OBJECTID_1": 11486, "PARCEL_NO_": "105401061100", "Tax_Legal_": "DOMINI TVER GADE 3A & B KINGS", "Name": "BANFIELD, CLIVE E. C. , TRUSTEE", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9900, "Improved_V": 83700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.344354807800002, "SHAPE_Area": 161.659704554 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358815.741400003433228, 257245.09910000115633 ], [ 358810.728200003504753, 257217.570700000971556 ], [ 358808.732500001788139, 257217.769299998879433 ], [ 358806.464599996805191, 257217.995000001043081 ], [ 358808.457099996507168, 257245.69029999896884 ], [ 358810.474399998784065, 257245.594999998807907 ], [ 358810.592000000178814, 257245.589299999177456 ], [ 358810.709700003266335, 257245.583399999886751 ], [ 358810.827299997210503, 257245.577300000935793 ], [ 358810.944899998605251, 257245.570900000631809 ], [ 358812.618900001049042, 257245.453400000929832 ], [ 358814.288800001144409, 257245.287000000476837 ], [ 358815.741400003433228, 257245.09910000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401250100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92522328, "LATITUDE": 18.34454036, "OBJECTID_1": 11821, "PARCEL_NO_": "105401250100", "Tax_Legal_": "HOSPITAL GROUND 29 NEW QUARTER", "Name": "MICHAEL T VANTERPOOL & OTHERS", "Address": "PO Box 334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.249863208500003, "SHAPE_Area": 450.94022766500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359417.905599996447563, 257243.376600001007318 ], [ 359417.023999996483326, 257239.605900000780821 ], [ 359416.175499998033047, 257235.8277000002563 ], [ 359415.360200002789497, 257232.042100001126528 ], [ 359414.578000001609325, 257228.249499998986721 ], [ 359399.406199999153614, 257230.534499999135733 ], [ 359383.168600000441074, 257232.979899998754263 ], [ 359386.046899996697903, 257245.711199998855591 ], [ 359417.905599996447563, 257243.376600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401061100", "MAP": null, "PARCEL_NAM": "DOMINI TVAER GADE 3B", "ACRE": null, "LONGITUDE": -64.93086957, "LATITUDE": 18.3445334, "OBJECTID_1": 11486, "PARCEL_NO_": "105401061100", "Tax_Legal_": "DOMINI TVER GADE 3A & B KINGS", "Name": "BANFIELD, CLIVE E. C. , TRUSTEE", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9900, "Improved_V": 83700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.810522570800003, "SHAPE_Area": 186.103279706 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358808.457099996507168, 257245.69029999896884 ], [ 358806.464599996805191, 257217.995000001043081 ], [ 358800.594200000166893, 257218.5793999992311 ], [ 358799.393200002610683, 257218.699000000953674 ], [ 358801.951300002634525, 257244.658599998801947 ], [ 358801.951300002634525, 257245.997499998658895 ], [ 358803.174300000071526, 257245.939699999988079 ], [ 358808.457099996507168, 257245.69029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401060300", "MAP": null, "PARCEL_NAM": "12BB", "ACRE": ".06", "LONGITUDE": -64.93094601, "LATITUDE": 18.3445463, "OBJECTID_1": 11480, "PARCEL_NO_": "105401060300", "Tax_Legal_": "12BB OV COMMANDANT GADE KINGS QUARTER", "Name": "THOMAS, ANTHONY D. & JANICE M.", "Address": "4192 Medlock River Ct", "City": "Snellville", "State": "Georgia", "Zip": 30039, "Country": "United States", "Land_Value": 6300, "Improved_V": 39200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.460726033, "SHAPE_Area": 260.69714090399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358801.951300002634525, 257244.658599998801947 ], [ 358799.393200002610683, 257218.699000000953674 ], [ 358790.969700001180172, 257219.537500001490116 ], [ 358791.170299999415874, 257233.575500000268221 ], [ 358791.354900002479553, 257246.497900001704693 ], [ 358793.235799998044968, 257246.409099999815226 ], [ 358801.951300002634525, 257245.997499998658895 ], [ 358801.951300002634525, 257244.658599998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105401200400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9275152, "LATITUDE": 18.3445283, "OBJECTID_1": 11761, "PARCEL_NO_": "105401200400", "Tax_Legal_": "HOSPITAL GROUND 1O7 NEW QUARTER", "Name": "ALLEN, SR. (TRUSTEE), RANDOLPH", "Address": "PO Box 304313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.3750449717, "SHAPE_Area": 64.664252726200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359158.227099999785423, 257247.00620000064373 ], [ 359157.993400000035763, 257239.67509999871254 ], [ 359158.345200002193451, 257236.610700000077486 ], [ 359158.696000002324581, 257235.325899999588728 ], [ 359159.100400000810623, 257233.8445999994874 ], [ 359161.617700003087521, 257227.664000000804663 ], [ 359164.137599997222424, 257221.477200001478195 ], [ 359161.315399996936321, 257221.941899999976158 ], [ 359156.786700002849102, 257233.0608000010252 ], [ 359155.943899996578693, 257236.147900000214577 ], [ 359155.550300002098083, 257239.576299998909235 ], [ 359155.810400001704693, 257247.348600000143051 ], [ 359158.227099999785423, 257247.00620000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401060100", "MAP": null, "PARCEL_NAM": "COMMANDANT GADE O.V. 12B", "ACRE": null, "LONGITUDE": -64.93108529, "LATITUDE": 18.34461122, "OBJECTID_1": 11478, "PARCEL_NO_": "105401060100", "Tax_Legal_": "COMMANDANT 12B\nQUEENS QTR", "Name": "AUBAIN FAMILY REVOCABLE TRUST", "Address": "PO Box 304865", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5200, "Improved_V": 54300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.470147407200002, "SHAPE_Area": 265.20525976499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358791.354900002479553, 257246.497900001704693 ], [ 358791.170299999415874, 257233.575500000268221 ], [ 358771.011100001633167, 257233.714200001209974 ], [ 358771.719200000166893, 257247.42509999871254 ], [ 358791.354900002479553, 257246.497900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401190400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92834674, "LATITUDE": 18.34457956, "OBJECTID_1": 11740, "PARCEL_NO_": "105401190400", "Tax_Legal_": "HOSPITAL GROUND 135 KING QTR", "Name": "LADZEKPO, ELIZABETH", "Address": "16711 Parthenia Street Unit 9", "City": "North Hills", "State": "California", "Zip": 91343, "Country": "United States", "Land_Value": 6000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.529695613500003, "SHAPE_Area": 196.729553538 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359080.052799999713898, 257239.502700001001358 ], [ 359081.023000001907349, 257239.060100000351667 ], [ 359082.004399999976158, 257238.642799999564886 ], [ 359082.996299996972084, 257238.2511 ], [ 359083.998000003397465, 257237.885299999266863 ], [ 359074.276299998164177, 257230.360599998384714 ], [ 359058.021300002932549, 257242.467199999839067 ], [ 359064.4037000015378, 257247.500199999660254 ], [ 359080.052799999713898, 257239.502700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401230200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92571227000001, "LATITUDE": 18.34422578, "OBJECTID_1": 11799, "PARCEL_NO_": "105401230200", "Tax_Legal_": "GOVT PROPERTY KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.94733798799999, "SHAPE_Area": 3019.6428239900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359328.320799998939037, 257155.744699999690056 ], [ 359334.251599997282028, 257236.128800000995398 ], [ 359334.433200001716614, 257237.861099999397993 ], [ 359347.768200002610683, 257240.639199998229742 ], [ 359355.005199998617172, 257247.347199998795986 ], [ 359357.144000001251698, 257247.104800000786781 ], [ 359359.285899996757507, 257246.890799999237061 ], [ 359361.430399999022484, 257246.705299999564886 ], [ 359363.577100001275539, 257246.548200000077486 ], [ 359375.980599999427795, 257245.639299999922514 ], [ 359355.23200000077486, 257153.865100000053644 ], [ 359328.320799998939037, 257155.744699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401191000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92787658, "LATITUDE": 18.34460391, "OBJECTID_1": 11746, "PARCEL_NO_": "105401191000", "Tax_Legal_": "HOSPITAL GROUND 129 NEW QTR", "Name": "THOMAS, JUDITH & OTHERS", "Address": "1404 Wigeon Way", "City": "Gambrills", "State": "Maryland", "Zip": 21054, "Country": "United States", "Land_Value": 10900, "Improved_V": 19400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.374287107499995, "SHAPE_Area": 313.65314244000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359130.293300002813339, 257248.980200000107288 ], [ 359130.121500000357628, 257242.623599998652935 ], [ 359130.121500000357628, 257232.209100000560284 ], [ 359110.856600001454353, 257236.401500001549721 ], [ 359109.290600001811981, 257251.094500001519918 ], [ 359130.293300002813339, 257248.980200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401190200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92853767, "LATITUDE": 18.34459926, "OBJECTID_1": 11738, "PARCEL_NO_": "105401190200", "Tax_Legal_": "HOSPITAL GROUND 121 NEW QUARTER", "Name": "BENJAMIN, PRINCE C", "Address": "121 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9300, "Improved_V": 6400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.169358659599993, "SHAPE_Area": 195.819343076 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359064.4037000015378, 257247.500199999660254 ], [ 359058.021300002932549, 257242.467199999839067 ], [ 359043.026000000536442, 257230.642200000584126 ], [ 359041.501000002026558, 257231.671799998730421 ], [ 359039.957699999213219, 257232.673799999058247 ], [ 359038.396600000560284, 257233.647799998521805 ], [ 359036.818199999630451, 257234.593499999493361 ], [ 359056.881700001657009, 257251.344399999827147 ], [ 359064.4037000015378, 257247.500199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401080500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92903161, "LATITUDE": 18.34456907, "OBJECTID_1": 11501, "PARCEL_NO_": "105401080500", "Tax_Legal_": "HOSPITAL GROUND-PCL OF KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.659456414, "SHAPE_Area": 436.97932428600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359021.427299998700619, 257232.298799999058247 ], [ 358998.468999996781349, 257224.968499999493361 ], [ 358998.331699997186661, 257225.151099998503923 ], [ 358998.193899996578693, 257225.333299998193979 ], [ 358998.055500000715256, 257225.5152000002563 ], [ 358997.91669999808073, 257225.696600001305342 ], [ 358993.879399999976158, 257231.12220000103116 ], [ 358991.812600001692772, 257233.297899998724461 ], [ 358988.253600001335144, 257237.320300001651049 ], [ 358984.880800001323223, 257241.5 ], [ 358981.701200000941753, 257245.828400000929832 ], [ 358978.7212999984622, 257250.296799998730421 ], [ 358978.589000001549721, 257250.557500001043081 ], [ 358978.484600000083447, 257251.155000001192093 ], [ 358978.621500000357628, 257251.745900001376867 ], [ 358978.978100001811981, 257252.236600000411272 ], [ 358979.497699998319149, 257252.549400001764297 ], [ 358980.098200000822544, 257252.634700000286102 ], [ 358980.684500001370907, 257252.478999998420477 ], [ 359021.427299998700619, 257232.298799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401190700", "MAP": null, "PARCEL_NAM": "134", "ACRE": null, "LONGITUDE": -64.92813551, "LATITUDE": 18.34464478, "OBJECTID_1": 11743, "PARCEL_NO_": "105401190700", "Tax_Legal_": "HOSPITAL GROUND 134 NEW QTR", "Name": "ROBLES, BERNICE THOMAS", "Address": "PO Box 9287", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4500, "Improved_V": 43200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.665351588699998, "SHAPE_Area": 215.90533031000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359102.273599997162819, 257251.7483000010252 ], [ 359100.699000000953674, 257238.612100001424551 ], [ 359089.745300002396107, 257240.995799999684095 ], [ 359088.108999997377396, 257241.395899999886751 ], [ 359086.492899999022484, 257241.870999999344349 ], [ 359084.900399997830391, 257242.419900000095367 ], [ 359083.334899999201298, 257243.041499998420477 ], [ 359084.290200002491474, 257253.423599999397993 ], [ 359102.273599997162819, 257251.7483000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401052200", "MAP": null, "PARCEL_NAM": "DOMINI TVER 6Ab", "ACRE": "902 sq. ft.", "LONGITUDE": -64.93063029, "LATITUDE": 18.34469017, "OBJECTID_1": 11474, "PARCEL_NO_": "105401052200", "Tax_Legal_": "DOMINI TVER 6AB KINGS QTR", "Name": "WILLIAMS, PERLA", "Address": "PO Box 1323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1800, "Improved_V": 19200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.682244192100001, "SHAPE_Area": 72.699518714899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358834.366200000047684, 257252.012600000947714 ], [ 358833.736299999058247, 257244.486400000751019 ], [ 358823.843500003218651, 257247.125500001013279 ], [ 358824.817800000309944, 257254.162000000476837 ], [ 358834.366200000047684, 257252.012600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401052400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93039024, "LATITUDE": 18.34465941, "OBJECTID_1": 11476, "PARCEL_NO_": "105401052400", "Tax_Legal_": "7B DOMINI GADE TVAER GADE KINGS QUARTER", "Name": "HUNTER, SUSAN E", "Address": "2103 Jeppes Gang", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.218221333899997, "SHAPE_Area": 174.330144273 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358863.5608000010252, 257250.256799999624491 ], [ 358857.547399997711182, 257238.133900001645088 ], [ 358845.710100002586842, 257241.291900001466274 ], [ 358852.075599998235703, 257254.917899999767542 ], [ 358863.5608000010252, 257250.256799999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401052100", "MAP": null, "PARCEL_NAM": "DOMINI TVER 6A", "ACRE": "711 sq ft", "LONGITUDE": -64.93071577000001, "LATITUDE": 18.34471096, "OBJECTID_1": 11473, "PARCEL_NO_": "105401052100", "Tax_Legal_": "DOMINI TVER 6A KINGS QUARTER", "Name": "PERSAD, JEAN ANNIE", "Address": "PO Box 782375", "City": "Orlando", "State": "Florida", "Zip": 32878, "Country": "United States", "Land_Value": 1600, "Improved_V": 46600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.4099305027, "SHAPE_Area": 59.912125108700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358824.817800000309944, 257254.162000000476837 ], [ 358823.843500003218651, 257247.125500001013279 ], [ 358823.015600003302097, 257247.346400000154972 ], [ 358821.510099999606609, 257247.748100001364946 ], [ 358820.109700001776218, 257248.054699998348951 ], [ 358818.702600002288818, 257248.328299999237061 ], [ 358817.289499998092651, 257248.568799998611212 ], [ 358815.870999999344349, 257248.77589999884367 ], [ 358816.207900002598763, 257256.100099999457598 ], [ 358823.5574000030756, 257254.445700000971556 ], [ 358824.817800000309944, 257254.162000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93138944, "LATITUDE": 18.3447188, "OBJECTID_1": 11441, "PARCEL_NO_": "105401040200", "Tax_Legal_": "LYTTONS FANCY 8G 1 LITTLE NORTHSIDE", "Name": "HAY, AMALIA C", "Address": "P.O. BOX 2862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5500, "Improved_V": 25800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.189561680500006, "SHAPE_Area": 461.03797869300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358764.680299997329712, 257258.8733000010252 ], [ 358763.908600002527237, 257243.932199999690056 ], [ 358736.572700001299381, 257244.030600000172853 ], [ 358736.334399998188019, 257246.127900000661612 ], [ 358735.855999998748302, 257248.183800000697374 ], [ 358735.143899999558926, 257250.170899998396635 ], [ 358734.207500003278255, 257252.062699999660254 ], [ 358734.157300002872944, 257252.150499999523163 ], [ 358729.888099998235703, 257259.557300001382828 ], [ 358764.680299997329712, 257258.8733000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401052300", "MAP": null, "PARCEL_NAM": "DOMINI TVER 7A", "ACRE": "2,122.00 sq ft", "LONGITUDE": -64.93051177, "LATITUDE": 18.34470401, "OBJECTID_1": 11475, "PARCEL_NO_": "105401052300", "Tax_Legal_": "DOMINI TVER 7A KINGS QTR", "Name": "MUSSINGTON, ELLISE", "Address": "PO BOX 5393", "City": "Fredericksburg", "State": "Virginia", "Zip": 22403, "Country": "United States", "Land_Value": 4200, "Improved_V": 25500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.133038909500002, "SHAPE_Area": 239.471417911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358852.075599998235703, 257254.917899999767542 ], [ 358845.710100002586842, 257241.291900001466274 ], [ 358834.825800001621246, 257244.195700000971556 ], [ 358833.736299999058247, 257244.486400000751019 ], [ 358834.366200000047684, 257252.012600000947714 ], [ 358835.825900003314018, 257261.512600000947714 ], [ 358852.075599998235703, 257254.917899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401200200", "MAP": "d3-70-t44", "PARCEL_NAM": "109", "ACRE": null, "LONGITUDE": -64.92740985, "LATITUDE": 18.34469887, "OBJECTID_1": 11759, "PARCEL_NO_": "105401200200", "Tax_Legal_": "HOSPITAL GROUND 109 NEW QUARTER", "Name": "Luella &Eugenie Lafranque&Lillian Lafranque-Ishaan", "Address": "PO Box 306616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7800, "Improved_V": 49800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.52115681, "SHAPE_Area": 348.313837487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359182.74099999666214, 257257.8260000012815 ], [ 359179.43639999628067, 257243.873100001364946 ], [ 359158.227099999785423, 257247.00620000064373 ], [ 359158.741800002753735, 257263.156700000166893 ], [ 359182.74099999666214, 257257.8260000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401242000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92442576000001, "LATITUDE": 18.34468989, "OBJECTID_1": 11817, "PARCEL_NO_": "105401242000", "Tax_Legal_": "HOSPITAL GROUND 27A KINGS QTR", "Name": "GEORGE, ALBERT H,CLEVE ALLAN, ELOI & DENISE GEORGE-COUNTS", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5900, "Improved_V": 140200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.582323488900002, "SHAPE_Area": 355.241209443 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359495.973600000143051, 257263.817099999636412 ], [ 359495.592699997127056, 257261.778999999165535 ], [ 359495.182300001382828, 257259.746500000357628 ], [ 359494.742700003087521, 257257.720199998468161 ], [ 359494.273900002241135, 257255.700500000268221 ], [ 359491.496200002729893, 257243.935600001364946 ], [ 359474.831299997866154, 257245.510999999940395 ], [ 359477.318499997258186, 257265.114700000733137 ], [ 359495.973600000143051, 257263.817099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051600", "MAP": null, "PARCEL_NAM": "DOMINI TVAER GADE 4", "ACRE": "3,183 sq ft", "LONGITUDE": -64.93107767, "LATITUDE": 18.34479743, "OBJECTID_1": 11468, "PARCEL_NO_": "105401051600", "Tax_Legal_": "DOMINI GADE TVER 4 KINGS QTR", "Name": "EPISCOPAL CHURCH OF THE VI", "Address": "PO BOX 1148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7600, "Improved_V": 152700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.694928326500005, "SHAPE_Area": 313.426970719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358791.626999996602535, 257265.340700000524521 ], [ 358790.652900002896786, 257252.484900001436472 ], [ 358771.988099999725819, 257252.633600000292063 ], [ 358772.639200001955032, 257265.239599999040365 ], [ 358772.842100001871586, 257269.170000001788139 ], [ 358791.518399998545647, 257269.241200000047684 ], [ 358791.626999996602535, 257265.340700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93093336, "LATITUDE": 18.34478565, "OBJECTID_1": 11469, "PARCEL_NO_": "105401051700", "Tax_Legal_": "DOMINI TVER 5A KINGS QUARTER", "Name": "BLACKMAN, FRANK", "Address": "418 Lakeside Way", "City": "Newnan", "State": "Georgia", "Zip": 30265, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.5357360195, "SHAPE_Area": 174.54018947599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358802.935300000011921, 257265.400800000876188 ], [ 358803.046099998056889, 257252.386100001633167 ], [ 358790.787900000810623, 257252.483800001442432 ], [ 358790.652900002896786, 257252.484900001436472 ], [ 358791.626999996602535, 257265.340700000524521 ], [ 358791.57769999653101, 257267.112300001084805 ], [ 358803.077500000596046, 257267.35530000180006 ], [ 358802.935300000011921, 257265.400800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93084216, "LATITUDE": 18.34478731, "OBJECTID_1": 11470, "PARCEL_NO_": "105401051800", "Tax_Legal_": "DOMINI TVER 5B KINGS QUARTER", "Name": "GEORGES,DIANE C, & DIANE C.,ELIC A.,DENISE M..LINELL G.&JOHN G.", "Address": "Tax Bill Returned", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.881163989000001, "SHAPE_Area": 113.023819387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358810.679300002753735, 257265.442099999636412 ], [ 358810.256300002336502, 257252.328699998557568 ], [ 358803.046099998056889, 257252.386100001633167 ], [ 358802.935300000011921, 257265.400800000876188 ], [ 358803.077500000596046, 257267.35530000180006 ], [ 358810.577399998903275, 257267.513700000941753 ], [ 358810.679300002753735, 257265.442099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93066233, "LATITUDE": 18.34477621, "OBJECTID_1": 11471, "PARCEL_NO_": "105401051900", "Tax_Legal_": "DOMINI TVER GADE 6B KINGS QTR", "Name": "CHESTERFIELD, IRA", "Address": "PO Box 193", "City": "Machipongo", "State": "Virginia", "Zip": 23405, "Country": "United States", "Land_Value": 3500, "Improved_V": 59100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.612650260599999, "SHAPE_Area": 183.445386877 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358835.825900003314018, 257261.512600000947714 ], [ 358834.366200000047684, 257252.012600000947714 ], [ 358823.5574000030756, 257254.445700000971556 ], [ 358816.207900002598763, 257256.100099999457598 ], [ 358816.655299998819828, 257265.828000001609325 ], [ 358835.825900003314018, 257261.512600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401260100", "MAP": "F9-816-T61", "PARCEL_NAM": "10 REM", "ACRE": "5,400 sq ft", "LONGITUDE": -64.92417048, "LATITUDE": 18.34463052, "OBJECTID_1": 11850, "PARCEL_NO_": "105401260100", "Tax_Legal_": "HOSPITAL GROUND 10 NEW QUARTER", "Name": "ROUMOU, CLAUDIA", "Address": "PO Box 6121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.383674634, "SHAPE_Area": 603.53137534200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359521.485100001096725, 257252.552299998700619 ], [ 359533.497400000691414, 257236.832600001245737 ], [ 359516.768700003623962, 257237.93019999936223 ], [ 359495.151199996471405, 257239.651599999517202 ], [ 359495.709399998188019, 257241.268699999898672 ], [ 359500.20440000295639, 257254.289599999785423 ], [ 359500.213699996471405, 257254.328699998557568 ], [ 359500.223099999129772, 257254.367899999022484 ], [ 359500.232500001788139, 257254.407000001519918 ], [ 359500.241800002753735, 257254.446100000292063 ], [ 359500.271300002932549, 257254.569899998605251 ], [ 359500.300599999725819, 257254.693799998611212 ], [ 359500.329899996519089, 257254.817600000649691 ], [ 359500.359099999070168, 257254.941500000655651 ], [ 359500.89469999819994, 257256.688999999314547 ], [ 359501.657999999821186, 257258.349800001829863 ], [ 359502.635300002992153, 257259.894400000572205 ], [ 359503.809299997985363, 257261.295299999415874 ], [ 359505.159199997782707, 257262.52760000154376 ], [ 359506.660899996757507, 257263.569600000977516 ], [ 359507.156300000846386, 257263.852600000798702 ], [ 359508.365500003099442, 257264.510499998927116 ], [ 359509.076700001955032, 257264.88910000026226 ], [ 359509.794699996709824, 257265.254700001329184 ], [ 359510.519299998879433, 257265.607099998742342 ], [ 359511.250100001692772, 257265.946199998259544 ], [ 359521.485100001096725, 257252.552299998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401241900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92463088, "LATITUDE": 18.34470673, "OBJECTID_1": 11816, "PARCEL_NO_": "105401241900", "Tax_Legal_": "27 HOSPITAL GROUND NEW QUARTER", "Name": "CONNOR, LERA FORD", "Address": "PO Box 8531", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6400, "Improved_V": 63900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.285314015400004, "SHAPE_Area": 498.63677464800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359459.936800003051758, 257266.323600001633167 ], [ 359477.318499997258186, 257265.114700000733137 ], [ 359474.831299997866154, 257245.510999999940395 ], [ 359449.536399997770786, 257248.118700001388788 ], [ 359451.171700000762939, 257266.933299999684095 ], [ 359459.936800003051758, 257266.323600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401200100", "MAP": "D3-70-T44", "PARCEL_NAM": "110", "ACRE": null, "LONGITUDE": -64.92762997, "LATITUDE": 18.34473803, "OBJECTID_1": 11758, "PARCEL_NO_": "105401200100", "Tax_Legal_": "HOSPITAL GROUND 11O NEW QUARTER", "Name": "LINDO, MARIA", "Address": "PO Box 1500", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6700, "Improved_V": 28500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.682587716800001, "SHAPE_Area": 330.360893315 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359156.357100002467632, 257263.6864 ], [ 359155.810400001704693, 257247.348600000143051 ], [ 359144.204599998891354, 257249.093199998140335 ], [ 359136.784699998795986, 257250.208500001579523 ], [ 359136.371299996972084, 257265.018300000578165 ], [ 359139.337499998509884, 257267.46680000051856 ], [ 359156.357100002467632, 257263.6864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92508846, "LATITUDE": 18.34473906, "OBJECTID_1": 11796, "PARCEL_NO_": "105401221800", "Tax_Legal_": "HOSPITAL GROUND 35A NEW QUARTER", "Name": "NIBBS, YVONNE, DENISE, JOHN E. SR. & OTHERS", "Address": "PO Box 306178", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 2800, "Improved_V": 64700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.329079409199998, "SHAPE_Area": 190.471086391 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359423.248199999332428, 257265.416299998760223 ], [ 359419.974899999797344, 257251.922200001776218 ], [ 359407.331299997866154, 257253.085700001567602 ], [ 359409.294799998402596, 257267.579799998551607 ], [ 359410.172100000083447, 257267.445900000631809 ], [ 359423.248199999332428, 257265.416299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105402070100", "MAP": "D3-327-T75", "PARCEL_NAM": "300", "ACRE": "4.11", "LONGITUDE": -64.923236, "LATITUDE": 18.34419137, "OBJECTID_1": 12546, "PARCEL_NO_": "105402070100", "Tax_Legal_": "HOSPITAL GROUND 300 GR NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 274700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 440.87803535, "SHAPE_Area": 12570.1202405 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359673.774400003254414, 257261.4527000002563 ], [ 359650.566299997270107, 257148.377199999988079 ], [ 359649.338799998164177, 257142.396200001239777 ], [ 359647.957299999892712, 257135.665300000458956 ], [ 359563.911499999463558, 257140.585799999535084 ], [ 359543.752499997615814, 257176.546399999409914 ], [ 359588.437899999320507, 257267.670200001448393 ], [ 359673.774400003254414, 257261.4527000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401241700", "MAP": null, "PARCEL_NAM": "28A", "ACRE": null, "LONGITUDE": -64.92485886, "LATITUDE": 18.34472235, "OBJECTID_1": 11814, "PARCEL_NO_": "105401241700", "Tax_Legal_": "HOSPITAL GROUND 28A NEW QUARTER", "Name": "SCHULTERBRANDT, BARBARA & FRANKLIN", "Address": "39 Vester Gade", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12800, "Improved_V": 25900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.067266217300002, "SHAPE_Area": 356.985388849 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359448.020499996840954, 257267.152499999850988 ], [ 359449.536399997770786, 257248.118700001388788 ], [ 359427.428000003099442, 257250.322799999266863 ], [ 359431.784199997782707, 257268.281700000166893 ], [ 359448.020499996840954, 257267.152499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401190900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92788981, "LATITUDE": 18.34474994, "OBJECTID_1": 11745, "PARCEL_NO_": "105401190900", "Tax_Legal_": "HOSPITAL GROUND 128 NEW QTR", "Name": "DOUGLAS, HUGO", "Address": "PO Box 11300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12300, "Improved_V": 74200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.1794434209, "SHAPE_Area": 355.88155484800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359130.587600000202656, 257259.868000000715256 ], [ 359130.293300002813339, 257248.980200000107288 ], [ 359109.290600001811981, 257251.094500001519918 ], [ 359107.35419999808073, 257269.263000000268221 ], [ 359122.552400000393391, 257265.887200001627207 ], [ 359124.203900001943111, 257265.395599998533726 ], [ 359125.769599996507168, 257264.676100000739098 ], [ 359127.218299999833107, 257263.743099998682737 ], [ 359128.520900003612041, 257262.615100000053644 ], [ 359129.651600003242493, 257261.314800001680851 ], [ 359130.587600000202656, 257259.868000000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401261100", "MAP": "F9-816-T61", "PARCEL_NAM": "10A", "ACRE": "5,440 sq ft", "LONGITUDE": -64.92400034000001, "LATITUDE": 18.3447028, "OBJECTID_1": 11862, "PARCEL_NO_": "105401261100", "Tax_Legal_": "HOSPITAL GROUND 10A NEW QTR", "Name": "ROUMO, R. & A. , & JARVIS, R", "Address": "31 LONGFELLOW ST. #2", "City": "BOSTON", "State": "Massachusetts", "Zip": 2122, "Country": "United States", "Land_Value": 13000, "Improved_V": 96600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.60555147300001, "SHAPE_Area": 612.21982906400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359540.496799997985363, 257251.055599998682737 ], [ 359538.571699999272823, 257236.499600000679493 ], [ 359533.497400000691414, 257236.832600001245737 ], [ 359521.485100001096725, 257252.552299998700619 ], [ 359511.250100001692772, 257265.946199998259544 ], [ 359514.288099996745586, 257267.188700001686811 ], [ 359517.40990000218153, 257268.202300000935793 ], [ 359520.598300002515316, 257268.9814000017941 ], [ 359523.835799999535084, 257269.521800000220537 ], [ 359527.104400001466274, 257269.82039999961853 ], [ 359530.386200003325939, 257269.875599998980761 ], [ 359533.663000002503395, 257269.686999998986721 ], [ 359536.916799999773502, 257269.255800001323223 ], [ 359537.718500003218651, 257269.1114999987185 ], [ 359539.296599999070168, 257268.812399998307228 ], [ 359542.097599998116493, 257263.15989999845624 ], [ 359540.496799997985363, 257251.055599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9252411, "LATITUDE": 18.34474657, "OBJECTID_1": 11795, "PARCEL_NO_": "105401221700", "Tax_Legal_": "HOSPITAL GROUND 35 NEW QUARTER", "Name": "MICHAEL T VANTERPOOL & OTHERS", "Address": "PO Box 334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10000, "Improved_V": 52500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.531630724799996, "SHAPE_Area": 348.10338846500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359409.294799998402596, 257267.579799998551607 ], [ 359407.331299997866154, 257253.085700001567602 ], [ 359419.974899999797344, 257251.922200001776218 ], [ 359419.723099999129772, 257250.883900001645088 ], [ 359386.440099999308586, 257253.322799999266863 ], [ 359390.336400002241135, 257270.475099999457598 ], [ 359409.294799998402596, 257267.579799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401190600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92807216, "LATITUDE": 18.34476202, "OBJECTID_1": 11742, "PARCEL_NO_": "105401190600", "Tax_Legal_": "HOSPITAL GROUND 127 NEW QTR", "Name": "DOUGLAS, HUGO", "Address": "PO Box 11300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 81700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.336515183200007, "SHAPE_Area": 300.444044254 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359107.35419999808073, 257269.263000000268221 ], [ 359109.290600001811981, 257251.094500001519918 ], [ 359084.290200002491474, 257253.423599999397993 ], [ 359100.142300002276897, 257270.864900000393391 ], [ 359107.35419999808073, 257269.263000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401080400", "MAP": null, "PARCEL_NAM": "122", "ACRE": null, "LONGITUDE": -64.92868797, "LATITUDE": 18.34469882, "OBJECTID_1": 11500, "PARCEL_NO_": "105401080400", "Tax_Legal_": "HOSPITAL GROUND 122 KINGS QUARTER", "Name": "ESANNASON, E. & OTHERS", "Address": "1109 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19600, "Improved_V": 215400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.796971019, "SHAPE_Area": 877.09249225799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359038.954599998891354, 257263.66950000077486 ], [ 359044.486100003123283, 257260.547400001436472 ], [ 359060.69650000333786, 257254.52930000051856 ], [ 359056.881700001657009, 257251.344399999827147 ], [ 359036.818199999630451, 257234.593499999493361 ], [ 359035.249099999666214, 257235.495900001376867 ], [ 359033.664300002157688, 257236.370400000363588 ], [ 359032.064300000667572, 257237.216600000858307 ], [ 359030.449400000274181, 257238.034299999475479 ], [ 359013.293600000441074, 257246.531700000166893 ], [ 359025.805399999022484, 257271.091299999505281 ], [ 359038.954599998891354, 257263.66950000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401052000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9303966, "LATITUDE": 18.34481147, "OBJECTID_1": 11472, "PARCEL_NO_": "105401052000", "Tax_Legal_": "JEPPE GANG 3 KINGS QUARTER", "Name": "HUNTER, SUSAN E", "Address": "2103 Jeppes Gang", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7100, "Improved_V": 139800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.809356834799999, "SHAPE_Area": 504.85331836199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358872.702200002968311, 257268.685699999332428 ], [ 358863.5608000010252, 257250.256799999624491 ], [ 358852.075599998235703, 257254.917899999767542 ], [ 358835.825900003314018, 257261.512600000947714 ], [ 358836.45269999653101, 257272.364700000733137 ], [ 358872.702200002968311, 257268.685699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401080300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92851216, "LATITUDE": 18.34480413, "OBJECTID_1": 11499, "PARCEL_NO_": "105401080300", "Tax_Legal_": "HOSPITAL GROUND 136 KINGS QUARTER", "Name": "TESTAMARK, OLIVE", "Address": "1126 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6800, "Improved_V": 49800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.2076199097, "SHAPE_Area": 283.26380857800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359067.402999997138977, 257264.987799998372793 ], [ 359060.69650000333786, 257254.52930000051856 ], [ 359044.486100003123283, 257260.547400001436472 ], [ 359038.954599998891354, 257263.66950000077486 ], [ 359044.709299996495247, 257273.093800000846386 ], [ 359067.402999997138977, 257264.987799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401190300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92821726, "LATITUDE": 18.34476687, "OBJECTID_1": 11739, "PARCEL_NO_": "105401190300", "Tax_Legal_": "126 HOSPITAL GROUND KINGS QUARTER", "Name": "THOMAS, NEVILLE, RACHEL J. & LAWRENCE", "Address": "PO Box 372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.884958568200005, "SHAPE_Area": 359.20938911000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359100.142300002276897, 257270.864900000393391 ], [ 359084.290200002491474, 257253.423599999397993 ], [ 359083.334899999201298, 257243.041499998420477 ], [ 359083.016599997878075, 257243.178300000727177 ], [ 359082.699600003659725, 257243.317999999970198 ], [ 359082.383900001645088, 257243.460799999535084 ], [ 359082.069600000977516, 257243.606499999761581 ], [ 359070.650799997150898, 257249.442099999636412 ], [ 359085.66780000180006, 257274.079900000244379 ], [ 359100.142300002276897, 257270.864900000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105402070100", "MAP": "D3-327-T75", "PARCEL_NAM": "300", "ACRE": null, "LONGITUDE": -64.92369692, "LATITUDE": 18.34436351, "OBJECTID_1": 12546, "PARCEL_NO_": "105402070100", "Tax_Legal_": "HOSPITAL GROUND 300 GR NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 274700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 518.34323975300003, "SHAPE_Area": 3288.0463946599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359674.446299999952316, 257264.726199999451637 ], [ 359673.774400003254414, 257261.4527000002563 ], [ 359588.437899999320507, 257267.670200001448393 ], [ 359543.752499997615814, 257176.546399999409914 ], [ 359563.911499999463558, 257140.585799999535084 ], [ 359529.419699996709824, 257142.605099998414516 ], [ 359545.948899999260902, 257240.418800000101328 ], [ 359557.740900002419949, 257274.299300000071526 ], [ 359674.446299999952316, 257264.726199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401190100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92832326, "LATITUDE": 18.3447993, "OBJECTID_1": 11737, "PARCEL_NO_": "105401190100", "Tax_Legal_": "125 HOSPITAL GROUND KINGS QUARTER", "Name": "THOMAS, NEVILLE, RACHEL J. & LAWRENCE", "Address": "PO Box 372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8900, "Improved_V": 42500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.2788830004, "SHAPE_Area": 297.404996165 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359085.66780000180006, 257274.079900000244379 ], [ 359070.650799997150898, 257249.442099999636412 ], [ 359060.69650000333786, 257254.52930000051856 ], [ 359067.402999997138977, 257264.987799998372793 ], [ 359074.783600002527237, 257276.497499998658895 ], [ 359085.66780000180006, 257274.079900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401230100", "MAP": null, "PARCEL_NAM": "LIONEL ROBERTS STADIUM", "ACRE": null, "LONGITUDE": -64.92664523000001, "LATITUDE": 18.34433486, "OBJECTID_1": 11798, "PARCEL_NO_": "105401230100", "Tax_Legal_": "BASEBALL PARK KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 257900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 479.97082790399998, "SHAPE_Area": 14786.6557025 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359315.723099999129772, 257255.989799998700619 ], [ 359324.956299997866154, 257244.197999998927116 ], [ 359318.520599998533726, 257156.971099998801947 ], [ 359179.821000002324581, 257165.655499998480082 ], [ 359172.352099999785423, 257174.971500001847744 ], [ 359172.597800001502037, 257175.708399999886751 ], [ 359172.824500001966953, 257176.451299998909235 ], [ 359173.032300002872944, 257177.199700001627207 ], [ 359173.220899999141693, 257177.953200001269579 ], [ 359196.109700001776218, 257274.595800001174212 ], [ 359196.507299996912479, 257275.746800001710653 ], [ 359197.125699996948242, 257276.795800000429153 ], [ 359197.940200001001358, 257277.700899999588728 ], [ 359198.918399997055531, 257278.426100000739098 ], [ 359200.021200001239777, 257278.942400000989437 ], [ 359201.204599998891354, 257279.229200001806021 ], [ 359202.421400003135204, 257279.275100000202656 ], [ 359203.271899998188019, 257279.161499999463558 ], [ 359315.723099999129772, 257255.989799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401061300", "MAP": null, "PARCEL_NAM": "1 DOMINI GADE (AllSaints)", "ACRE": null, "LONGITUDE": -64.93142363, "LATITUDE": 18.34487773, "OBJECTID_1": 11488, "PARCEL_NO_": "105401061300", "Tax_Legal_": "DOMINI TVER 1 KINGS QTR", "Name": "HAZEL, RUEL & DEBBIE T. D", "Address": "PO Box 11968", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 47400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.242696929, "SHAPE_Area": 790.05768406200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358765.671899996697903, 257278.075399998575449 ], [ 358764.680299997329712, 257258.8733000010252 ], [ 358729.888099998235703, 257259.557300001382828 ], [ 358722.182099997997284, 257272.927099999040365 ], [ 358729.374700002372265, 257280.452100001275539 ], [ 358765.671899996697903, 257278.075399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93089237, "LATITUDE": 18.34491872, "OBJECTID_1": 11467, "PARCEL_NO_": "105401051500", "Tax_Legal_": "ADELE GADE 1A KINGS QTR.", "Name": "BEDFORD, CALEB E. & ROSALIE A.", "Address": "PO Box 306685", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42100, "Improved_V": 200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.745600551099997, "SHAPE_Area": 274.84542741199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358810.577399998903275, 257267.513700000941753 ], [ 358791.57769999653101, 257267.112300001084805 ], [ 358791.518399998545647, 257269.241200000047684 ], [ 358792.019100002944469, 257280.714800000190735 ], [ 358792.050700001418591, 257281.438999999314547 ], [ 358801.481299996376038, 257281.758799999952316 ], [ 358811.239399999380112, 257281.563299998641014 ], [ 358811.207299999892712, 257280.961100000888109 ], [ 358810.888700000941753, 257270.317499998956919 ], [ 358810.465400002896786, 257269.78830000013113 ], [ 358810.577399998903275, 257267.513700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401241400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92447577, "LATITUDE": 18.34484981, "OBJECTID_1": 11811, "PARCEL_NO_": "105401241400", "Tax_Legal_": "HOSPITAL GROUND 153 NEW QTR", "Name": "GOMEZ, JOSEPH", "Address": "PO Box 3728", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 11000, "Improved_V": 65200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.138833181199999, "SHAPE_Area": 522.22367695800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359497.762999996542931, 257277.588500000536442 ], [ 359497.440700002014637, 257274.130399998277426 ], [ 359497.034800000488758, 257270.681200001388788 ], [ 359496.545699998736382, 257267.24269999936223 ], [ 359495.973600000143051, 257263.817099999636412 ], [ 359477.318499997258186, 257265.114700000733137 ], [ 359459.936800003051758, 257266.323600001633167 ], [ 359465.082900002598763, 257280.467199999839067 ], [ 359475.513899996876717, 257281.4989 ], [ 359497.762999996542931, 257277.588500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401080200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92844718000001, "LATITUDE": 18.34489518, "OBJECTID_1": 11498, "PARCEL_NO_": "105401080200", "Tax_Legal_": "HOSPITAL GROUND 124 KINGS QTR", "Name": "JOSEPH, MARIE", "Address": "PO Box 1582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7800, "Improved_V": 61100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.427975855100001, "SHAPE_Area": 284.807524188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359074.783600002527237, 257276.497499998658895 ], [ 359067.402999997138977, 257264.987799998372793 ], [ 359044.709299996495247, 257273.093800000846386 ], [ 359050.13120000064373, 257281.973299998790026 ], [ 359074.783600002527237, 257276.497499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401091800", "MAP": null, "PARCEL_NAM": "310B", "ACRE": "0.03", "LONGITUDE": -64.92920842, "LATITUDE": 18.34487623, "OBJECTID_1": 11525, "PARCEL_NO_": "105401091800", "Tax_Legal_": "HOSPITAL GROUND 31OB KINGS QUARTER", "Name": "LARSEN (LIFE ESTATE), ALBERTHA", "Address": "PO Box 9157", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2900, "Improved_V": 78500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.228013274000006, "SHAPE_Area": 297.74083893400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358987.9662000015378, 257259.076499998569489 ], [ 358969.141099996864796, 257268.400699999183416 ], [ 358970.587099999189377, 257283.298200000077486 ], [ 358989.560999996960163, 257274.205200001597404 ], [ 358987.9662000015378, 257259.076499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401241600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92477529, "LATITUDE": 18.34487411, "OBJECTID_1": 11813, "PARCEL_NO_": "105401241600", "Tax_Legal_": "HOSPITAL GROUND 28B NEW QTR", "Name": "CHRISTIAN, MARIA", "Address": "PO Box 7998", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13000, "Improved_V": 127500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.116852311399995, "SHAPE_Area": 442.171286775 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359465.082900002598763, 257280.467199999839067 ], [ 359459.936800003051758, 257266.323600001633167 ], [ 359451.171700000762939, 257266.933299999684095 ], [ 359431.784199997782707, 257268.281700000166893 ], [ 359435.590199999511242, 257283.971999999135733 ], [ 359465.082900002598763, 257280.467199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051400", "MAP": null, "PARCEL_NAM": "2A JEPPES GANG GADE", "ACRE": null, "LONGITUDE": -64.93033043, "LATITUDE": 18.34493056, "OBJECTID_1": 11466, "PARCEL_NO_": "105401051400", "Tax_Legal_": "2A&2B JEPPE GANG GADE KINGS QTR", "Name": "PLAIR, JUDITH (TRUSTEE)", "Address": "PO BOX 1712", "City": "ST JOHN", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 3000, "Improved_V": 103700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 26.237058782399998, "SHAPE_Area": 13.7922946395 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358861.221100002527237, 257272.249600000679493 ], [ 358858.909699998795986, 257272.477699998766184 ], [ 358861.990699999034405, 257284.107799999415874 ], [ 358861.221100002527237, 257272.249600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93034041, "LATITUDE": 18.34496689, "OBJECTID_1": 11464, "PARCEL_NO_": "105401051200", "Tax_Legal_": "JEEPE GANG 2 KINGS QTR", "Name": "CARTY, ANNE", "Address": "642 SW Sarazen Ave", "City": "Port Saint Lucie", "State": "Florida", "Zip": 34953, "Country": "United States", "Land_Value": 6600, "Improved_V": 80000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.915051978800001, "SHAPE_Area": 23.728204203099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358861.990699999034405, 257284.107799999415874 ], [ 358858.909699998795986, 257272.477699998766184 ], [ 358857.957400001585484, 257284.285900000482798 ], [ 358861.990699999034405, 257284.107799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92515037, "LATITUDE": 18.34487814, "OBJECTID_1": 11794, "PARCEL_NO_": "105401221600", "Tax_Legal_": "HOSPITAL GROUND 36 NEW QUARTER", "Name": "THOMAS, IAN A. O.", "Address": "PO Box 422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13500, "Improved_V": 74100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.462868328900001, "SHAPE_Area": 477.83082971099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359426.521999999880791, 257278.912799999117851 ], [ 359423.248199999332428, 257265.416299998760223 ], [ 359410.172100000083447, 257267.445900000631809 ], [ 359409.294799998402596, 257267.579799998551607 ], [ 359390.336400002241135, 257270.475099999457598 ], [ 359393.621200002729893, 257284.9358000010252 ], [ 359426.521999999880791, 257278.912799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401080100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9286583, "LATITUDE": 18.34491079, "OBJECTID_1": 11497, "PARCEL_NO_": "105401080100", "Tax_Legal_": "HOSPITAL GROUND 123 KINGS QUARTER", "Name": "JOSEPH, MARIE Y.", "Address": "PO Box 1582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.1793766742, "SHAPE_Area": 296.67476314300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359050.13120000064373, 257281.973299998790026 ], [ 359044.709299996495247, 257273.093800000846386 ], [ 359038.954599998891354, 257263.66950000077486 ], [ 359025.805399999022484, 257271.091299999505281 ], [ 359031.610699996352196, 257282.486800000071526 ], [ 359032.177299998700619, 257283.375599998980761 ], [ 359032.9324000030756, 257284.111099999397993 ], [ 359033.835900001227856, 257284.654100000858307 ], [ 359034.839699998497963, 257284.97580000013113 ], [ 359035.890600003302097, 257285.059000000357628 ], [ 359036.71509999781847, 257284.953299999237061 ], [ 359050.13120000064373, 257281.973299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9306495, "LATITUDE": 18.34491322, "OBJECTID_1": 11463, "PARCEL_NO_": "105401051100", "Tax_Legal_": "5 ADELE GADE KING'S QTR", "Name": "OTTLEY, JANINE", "Address": "PO Box 6166", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11100, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.019072665600007, "SHAPE_Area": 406.847463645 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358837.10809999704361, 257283.712799999862909 ], [ 358836.586400002241135, 257274.68019999936223 ], [ 358836.45269999653101, 257272.364700000733137 ], [ 358835.825900003314018, 257261.512600000947714 ], [ 358816.655299998819828, 257265.828000001609325 ], [ 358817.551600001752377, 257285.316799998283386 ], [ 358837.10809999704361, 257283.712799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401050800", "MAP": null, "PARCEL_NAM": "DOMINI GADE 2", "ACRE": null, "LONGITUDE": -64.9310693, "LATITUDE": 18.34494688, "OBJECTID_1": 11460, "PARCEL_NO_": "105401050800", "Tax_Legal_": "DOMINI GADE 2 KINGS QUARTER", "Name": "EPISCOPAL CHURCH OF THE VI", "Address": "PO BOX 1148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55800, "Improved_V": 83600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.263899257299997, "SHAPE_Area": 306.91359146100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358791.518399998545647, 257269.241200000047684 ], [ 358772.842100001871586, 257269.170000001788139 ], [ 358773.686899997293949, 257285.527100000530481 ], [ 358792.244300000369549, 257285.8733000010252 ], [ 358791.518399998545647, 257269.241200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401091700", "MAP": "F9-433-T59", "PARCEL_NAM": "310", "ACRE": "0.15", "LONGITUDE": -64.92904785, "LATITUDE": 18.34482865, "OBJECTID_1": 11524, "PARCEL_NO_": "105401091700", "Tax_Legal_": "HOSPITAL GROUND 310 KINGS QTR", "Name": "THOMAS, NEVILLE, RACHEL J. & LAWRENCE", "Address": "PO Box 372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38300, "Improved_V": 101800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.12655315400001, "SHAPE_Area": 483.42084928499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359013.611400000751019, 257263.967300001531839 ], [ 359006.466099999845028, 257249.913400001823902 ], [ 358987.9662000015378, 257259.076499998569489 ], [ 358989.560999996960163, 257274.205200001597404 ], [ 358970.587099999189377, 257283.298200000077486 ], [ 358970.959299996495247, 257287.133099999278784 ], [ 358993.060900002717972, 257276.642799999564886 ], [ 359013.611400000751019, 257263.967300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93024022, "LATITUDE": 18.34496458, "OBJECTID_1": 11465, "PARCEL_NO_": "105401051300", "Tax_Legal_": "1 JEPPE GANG GADE KINGS QUARTER", "Name": "PLAIR, JUDITH (TRUSTEE)", "Address": "PO BOX 1712", "City": "ST JOHN", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 6100, "Improved_V": 52000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.305164959600006, "SHAPE_Area": 262.160238558 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358863.441899999976158, 257287.352000001817942 ], [ 358882.554999999701977, 257287.536499999463558 ], [ 358880.578000001609325, 257283.99379999935627 ], [ 358878.650399997830391, 257280.4239999987185 ], [ 358876.772399999201298, 257276.827799998223782 ], [ 358874.944399997591972, 257273.205899998545647 ], [ 358873.851899996399879, 257271.003499999642372 ], [ 358861.221100002527237, 257272.249600000679493 ], [ 358861.990699999034405, 257284.107799999415874 ], [ 358861.961499996483326, 257287.544199999421835 ], [ 358863.441899999976158, 257287.352000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051400", "MAP": null, "PARCEL_NAM": "2B JEPPES GANG GADE", "ACRE": null, "LONGITUDE": -64.93033706, "LATITUDE": 18.34501849, "OBJECTID_1": 11466, "PARCEL_NO_": "105401051400", "Tax_Legal_": "2A&2B JEPPE GANG GADE KINGS QTR", "Name": "PLAIR, JUDITH (TRUSTEE)", "Address": "PO BOX 1712", "City": "ST JOHN", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 3000, "Improved_V": 103700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 15.3265883704, "SHAPE_Area": 14.552628540300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358861.961499996483326, 257287.544199999421835 ], [ 358861.990699999034405, 257284.107799999415874 ], [ 358857.957400001585484, 257284.285900000482798 ], [ 358857.925200000405312, 257288.068399999290705 ], [ 358861.961499996483326, 257287.544199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401070700", "MAP": "G9-2658-T77", "PARCEL_NAM": "32A", "ACRE": null, "LONGITUDE": -64.92980406, "LATITUDE": 18.34485337, "OBJECTID_1": 11494, "PARCEL_NO_": "105401070700", "Tax_Legal_": "HOSPITAL LINE 32A KINGS QTR", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.736509793, "SHAPE_Area": 841.25578683399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358909.420299999415874, 257287.776599999517202 ], [ 358935.963600002229214, 257274.62950000166893 ], [ 358915.232100002467632, 257242.413699999451637 ], [ 358914.244999997317791, 257243.124200001358986 ], [ 358912.977700002491474, 257244.291700001806021 ], [ 358911.887699998915195, 257245.626299999654293 ], [ 358910.996699996292591, 257247.101199999451637 ], [ 358910.322599999606609, 257248.686999998986721 ], [ 358903.906599998474121, 257267.342500001192093 ], [ 358904.017700001597404, 257270.944699998944998 ], [ 358903.981799997389317, 257274.54839999973774 ], [ 358903.799099996685982, 257278.147700000554323 ], [ 358903.469800002872944, 257281.736600000411272 ], [ 358903.337200000882149, 257283.065200001001358 ], [ 358903.237499997019768, 257284.396600000560284 ], [ 358903.170900002121925, 257285.730200000107288 ], [ 358903.137299999594688, 257287.064899999648333 ], [ 358906.824000000953674, 257289.190499998629093 ], [ 358907.462600000202656, 257288.818199999630451 ], [ 358908.108400002121925, 257288.458399999886751 ], [ 358908.760999999940395, 257288.111099999397993 ], [ 358909.420299999415874, 257287.776599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402050600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92268737000001, "LATITUDE": 18.34489746, "OBJECTID_1": 12523, "PARCEL_NO_": "105402050600", "Tax_Legal_": "HOSPITAL GROUND 163 NEW QUARTER", "Name": "BRATHWAITE, CONRAD", "Address": "CHARLOTTE APARTMENTS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.858590211700005, "SHAPE_Area": 329.22846033399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359679.184000000357628, 257287.809399999678135 ], [ 359675.37219999730587, 257269.23759999871254 ], [ 359658.1216000020504, 257270.652699999511242 ], [ 359661.501000002026558, 257289.200800001621246 ], [ 359679.184000000357628, 257287.809399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402050800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92285389, "LATITUDE": 18.34491123, "OBJECTID_1": 12525, "PARCEL_NO_": "105402050800", "Tax_Legal_": "HOSPITAL GROUND 162 KINGS QTR", "Name": "FOY, ADELINE", "Address": "1405 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8000, "Improved_V": 29000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.249158125899996, "SHAPE_Area": 333.420399788 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359661.501000002026558, 257289.200800001621246 ], [ 359658.1216000020504, 257270.652699999511242 ], [ 359640.39190000295639, 257272.10700000077486 ], [ 359643.741700001060963, 257290.598299998790026 ], [ 359661.501000002026558, 257289.200800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93045396, "LATITUDE": 18.34497759, "OBJECTID_1": 11464, "PARCEL_NO_": "105401051200", "Tax_Legal_": "JEEPE GANG 2 KINGS QTR", "Name": "CARTY, ANNE", "Address": "642 SW Sarazen Ave", "City": "Port Saint Lucie", "State": "Florida", "Zip": 34953, "Country": "United States", "Land_Value": 6600, "Improved_V": 80000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.710264913499998, "SHAPE_Area": 336.24618631499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358857.925200000405312, 257288.068399999290705 ], [ 358857.957400001585484, 257284.285900000482798 ], [ 358858.909699998795986, 257272.477699998766184 ], [ 358836.586400002241135, 257274.68019999936223 ], [ 358837.10809999704361, 257283.712799999862909 ], [ 358837.512699998915195, 257290.719000000506639 ], [ 358857.925200000405312, 257288.068399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402051000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92302162, "LATITUDE": 18.34492542, "OBJECTID_1": 12527, "PARCEL_NO_": "105402051000", "Tax_Legal_": "HOSPITAL GROUND 161 NEW QTR", "Name": "MULCARE, NAN", "Address": "P.O.BOX 3917", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.112056994499994, "SHAPE_Area": 332.21407252199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359643.741700001060963, 257290.598299998790026 ], [ 359640.39190000295639, 257272.10700000077486 ], [ 359622.660499997437, 257273.561500001698732 ], [ 359626.000699996948242, 257291.994300000369549 ], [ 359643.741700001060963, 257290.598299998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401052500", "MAP": null, "PARCEL_NAM": "1C ADEL GADE", "ACRE": null, "LONGITUDE": -64.93094153, "LATITUDE": 18.34503275, "OBJECTID_1": 11477, "PARCEL_NO_": "105401052500", "Tax_Legal_": "1C ADEL GADE KING'S QTR", "Name": "THE REPRESENTATIVES OF ALL SAINTS CHURCH", "Address": "1C Adel Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.497703987900003, "SHAPE_Area": 84.6313369561 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358799.984700001776218, 257281.708099998533726 ], [ 358792.050700001418591, 257281.438999999314547 ], [ 358792.244300000369549, 257285.8733000010252 ], [ 358792.277199998497963, 257292.557900000363588 ], [ 358793.909800000488758, 257292.646299999207258 ], [ 358799.721600003540516, 257292.693900000303984 ], [ 358799.984700001776218, 257281.708099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051000", "MAP": null, "PARCEL_NAM": "1B ADEL GADE", "ACRE": null, "LONGITUDE": -64.93084976, "LATITUDE": 18.34503398, "OBJECTID_1": 11462, "PARCEL_NO_": "105401051000", "Tax_Legal_": "ADELE GADE 1B KINGS", "Name": "SMITH, E & R C/O E. DONOVAN", "Address": "7718 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2500, "Improved_V": 42800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.609331559700003, "SHAPE_Area": 129.41232617 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358811.838299997150898, 257292.793099999427795 ], [ 358811.239399999380112, 257281.563299998641014 ], [ 358801.481299996376038, 257281.758799999952316 ], [ 358799.984700001776218, 257281.708099998533726 ], [ 358799.721600003540516, 257292.693900000303984 ], [ 358801.387999996542931, 257292.707499999552965 ], [ 358811.838299997150898, 257292.793099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402051200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92317571, "LATITUDE": 18.34494786, "OBJECTID_1": 12529, "PARCEL_NO_": "105402051200", "Tax_Legal_": "HOSPITAL GROUND 160", "Name": "RAYMO, ROY & OTHERS", "Address": "7812 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9600, "Improved_V": 18400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.472681331999993, "SHAPE_Area": 274.51596947899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359626.000699996948242, 257291.994300000369549 ], [ 359622.660499997437, 257273.561500001698732 ], [ 359612.888899996876717, 257274.363000001758337 ], [ 359606.377099998295307, 257293.538499999791384 ], [ 359626.000699996948242, 257291.994300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401241200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92448025, "LATITUDE": 18.34496731, "OBJECTID_1": 11809, "PARCEL_NO_": "105401241200", "Tax_Legal_": "HOSPITAL GROUND 151 NEW QTR", "Name": "BEAL, ALBERTHA", "Address": "PO Box 304129", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.144778956699994, "SHAPE_Area": 270.064938407 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359497.92339999973774, 257279.776200000196695 ], [ 359497.886500000953674, 257279.228999998420477 ], [ 359497.84740000218153, 257278.682000000029802 ], [ 359497.806199997663498, 257278.135200001299381 ], [ 359497.762999996542931, 257277.588500000536442 ], [ 359475.513899996876717, 257281.4989 ], [ 359465.082900002598763, 257280.467199999839067 ], [ 359467.208200000226498, 257286.308400001376867 ], [ 359470.931199997663498, 257296.540800001472235 ], [ 359497.92339999973774, 257279.776200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401070200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93010812, "LATITUDE": 18.34473489, "OBJECTID_1": 11490, "PARCEL_NO_": "105401070200", "Tax_Legal_": "COMMANDANT GADE 13BB KINGS QTR", "Name": "TRUST AGREEMENT OF GIGI A CAINES", "Address": "PO Box 6756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.91173622599999, "SHAPE_Area": 1269.2864898299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358889.680399999022484, 257223.948800001293421 ], [ 358880.139499999582767, 257228.546399999409914 ], [ 358861.867600001394749, 257237.283599998801947 ], [ 358894.663800001144409, 257295.908100001513958 ], [ 358895.082699999213219, 257296.346700001507998 ], [ 358895.639600001275539, 257296.587200000882149 ], [ 358896.246100001037121, 257296.591400001198053 ], [ 358896.806199997663498, 257296.35869999974966 ], [ 358897.231299996376038, 257295.925900001078844 ], [ 358897.45380000025034, 257295.361699998378754 ], [ 358897.466300003230572, 257294.913699999451637 ], [ 358897.151500001549721, 257291.456300001591444 ], [ 358897.037399999797344, 257287.986400000751019 ], [ 358897.124300003051758, 257284.515700001269579 ], [ 358897.411899998784065, 257281.055900000035763 ], [ 358897.790700003504753, 257276.592799998819828 ], [ 358897.926100000739098, 257272.115600001066923 ], [ 358897.817699998617172, 257267.637699998915195 ], [ 358897.465899996459484, 257263.1722999997437 ], [ 358896.8716000020504, 257258.732700001448393 ], [ 358896.111299999058247, 257254.677799999713898 ], [ 358890.526100002229214, 257228.527800001204014 ], [ 358890.290799997746944, 257227.387499999254942 ], [ 358890.071400001645088, 257226.244199998676777 ], [ 358889.867899999022484, 257225.097899999469519 ], [ 358889.680399999022484, 257223.948800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401031400", "MAP": null, "PARCEL_NAM": "1 DOMINI GADE (AllSaints)", "ACRE": null, "LONGITUDE": -64.93138691, "LATITUDE": 18.34504666, "OBJECTID_1": 11434, "PARCEL_NO_": "105401031400", "Tax_Legal_": "1 DOMINI GADE KINGS QTR.", "Name": "EPISCOPAL CHURCH OF 1191", "Address": "PO BOX 1148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 94500, "Improved_V": 329400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.795011773, "SHAPE_Area": 639.24389081300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358766.607400000095367, 257297.243099998682737 ], [ 358766.567900002002716, 257296.018199998885393 ], [ 358766.521700002253056, 257294.793499998748302 ], [ 358766.468699999153614, 257293.568999998271465 ], [ 358766.408900000154972, 257292.344900000840425 ], [ 358765.671899996697903, 257278.075399998575449 ], [ 358729.374700002372265, 257280.452100001275539 ], [ 358732.892099998891354, 257297.607200000435114 ], [ 358766.607400000095367, 257297.243099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402051400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92360241, "LATITUDE": 18.34496835, "OBJECTID_1": 12531, "PARCEL_NO_": "105402051400", "Tax_Legal_": "HOSPITAL GROUND 157 NEW QTR", "Name": "ADAMS, CHARLES, ROSA RIOS & BERYL PLASKETT", "Address": "PO BOX 305151", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.691347583199999, "SHAPE_Area": 335.175030214 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359581.773199997842312, 257276.915300000458956 ], [ 359559.293200001120567, 257278.759300000965595 ], [ 359564.260999999940395, 257293.032800000160933 ], [ 359579.003600001335144, 257298.897700000554323 ], [ 359581.773199997842312, 257276.915300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93064209000001, "LATITUDE": 18.34507188, "OBJECTID_1": 11459, "PARCEL_NO_": "105401050700", "Tax_Legal_": "6 ADELE GADE KINGS QUARTER", "Name": "BRANFORD & OTHERS, LORRAINE INNIS", "Address": "6109 St Joseph and Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6800, "Improved_V": 34900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.947252563999996, "SHAPE_Area": 280.799426122 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358837.914599999785423, 257297.67790000140667 ], [ 358837.512699998915195, 257290.719000000506639 ], [ 358837.10809999704361, 257283.712799999862909 ], [ 358817.551600001752377, 257285.316799998283386 ], [ 358818.218999996781349, 257299.825800001621246 ], [ 358837.914599999785423, 257297.67790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401241000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92438489, "LATITUDE": 18.34503289, "OBJECTID_1": 11807, "PARCEL_NO_": "105401241000", "Tax_Legal_": "HOSPITAL GROUND 149 NEW QTR", "Name": "GRIFFITH, PHILLIP", "Address": "5079 Norre Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026785, "Country": "United States", "Land_Value": 4900, "Improved_V": 83300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.426554683899994, "SHAPE_Area": 305.22503787199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359497.92339999973774, 257279.776200000196695 ], [ 359470.931199997663498, 257296.540800001472235 ], [ 359497.649899996817112, 257302.111900001764297 ], [ 359498.044299997389317, 257296.536200001835823 ], [ 359498.221500001847744, 257290.949400000274181 ], [ 359498.181199997663498, 257285.359900001436472 ], [ 359497.92339999973774, 257279.776200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401050600", "MAP": null, "PARCEL_NAM": "2 ADEL GADE", "ACRE": "1,910 sq ft", "LONGITUDE": -64.93088318, "LATITUDE": 18.34513609, "OBJECTID_1": 11458, "PARCEL_NO_": "105401050600", "Tax_Legal_": "ADELE GADE 2 KINGS", "Name": "BERNADINE TODMAN REVOCABLE TRUST", "Address": "2 Adel Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4200, "Improved_V": 58200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.583700743999998, "SHAPE_Area": 228.532166539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358811.838299997150898, 257292.793099999427795 ], [ 358801.387999996542931, 257292.707499999552965 ], [ 358793.909800000488758, 257292.646299999207258 ], [ 358792.277199998497963, 257292.557900000363588 ], [ 358792.329899996519089, 257303.246800001710653 ], [ 358792.33500000089407, 257304.292300000786781 ], [ 358811.947400003671646, 257304.464499998837709 ], [ 358811.838299997150898, 257292.793099999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401050500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93020179, "LATITUDE": 18.34509645, "OBJECTID_1": 11457, "PARCEL_NO_": "105401050500", "Tax_Legal_": "ALEXANDER GADE 1 KINGS QTR", "Name": "POTTER, EVERARD & DAWN HENRY", "Address": "PO BOX 1165", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7900, "Improved_V": 143700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.816983914399998, "SHAPE_Area": 310.58868177900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358888.944899998605251, 257298.263399999588728 ], [ 358887.30460000038147, 257295.607400000095367 ], [ 358885.692699998617172, 257292.934000000357628 ], [ 358884.109499998390675, 257290.243599999696016 ], [ 358882.554999999701977, 257287.536499999463558 ], [ 358863.441899999976158, 257287.352000001817942 ], [ 358864.076499998569489, 257304.028299998492002 ], [ 358888.944899998605251, 257298.263399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401091600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92906915, "LATITUDE": 18.34498388, "OBJECTID_1": 11523, "PARCEL_NO_": "105401091600", "Tax_Legal_": "310A HOSPITAL GROUND KINGS QTR", "Name": "THOMAS, NEVILLE, RACHEL J. & LAWRENCE", "Address": "PO Box 372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15100, "Improved_V": 109600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.887926878, "SHAPE_Area": 700.43173627299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359019.987999998033047, 257276.509300000965595 ], [ 359013.611400000751019, 257263.967300001531839 ], [ 358993.060900002717972, 257276.642799999564886 ], [ 358970.959299996495247, 257287.133099999278784 ], [ 358972.623700000345707, 257304.280699998140335 ], [ 358989.40089999884367, 257292.846700001507998 ], [ 359019.987999998033047, 257276.509300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92511275, "LATITUDE": 18.34502963, "OBJECTID_1": 11793, "PARCEL_NO_": "105401221500", "Tax_Legal_": "HOSPITAL GROUND 37 NEW QUARTER", "Name": "LABORDE, ALPHONSE, MEDINA, EDWARD, NEVILLE & ALPHONSO", "Address": "PO Box 392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 39800, "Improved_V": 265800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.329373605, "SHAPE_Area": 674.06642207200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359414.249099999666214, 257301.583999998867512 ], [ 359431.017899997532368, 257297.447299998253584 ], [ 359426.521999999880791, 257278.912799999117851 ], [ 359393.621200002729893, 257284.9358000010252 ], [ 359398.296899996697903, 257305.519299998879433 ], [ 359414.249099999666214, 257301.583999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401241500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92476567, "LATITUDE": 18.34500445, "OBJECTID_1": 11812, "PARCEL_NO_": "105401241500", "Tax_Legal_": "HOSPITAL GROUND 137 NEW QTR", "Name": "ROGERS, PATRICIA, INGRID ROGERS-LAKE & OTHERS", "Address": "PO Box 307625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27400, "Improved_V": 160300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.122080724300005, "SHAPE_Area": 357.29646219199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359466.460400000214577, 257284.253400001674891 ], [ 359465.082900002598763, 257280.467199999839067 ], [ 359435.590199999511242, 257283.971999999135733 ], [ 359440.300200000405312, 257303.389600001275539 ], [ 359466.460400000214577, 257284.253400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401050400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93042223, "LATITUDE": 18.3451251, "OBJECTID_1": 11456, "PARCEL_NO_": "105401050400", "Tax_Legal_": "ALEXANDER GADE 2 KINGS QUARTER", "Name": "HODGE, CRECIDA,CONRAD L., MAXINE & YVONNE WELLS & OTHERS", "Address": "PO Box 1207", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.843790050300001, "SHAPE_Area": 451.116889641 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358864.076499998569489, 257304.028299998492002 ], [ 358863.441899999976158, 257287.352000001817942 ], [ 358861.961499996483326, 257287.544199999421835 ], [ 358857.925200000405312, 257288.068399999290705 ], [ 358837.512699998915195, 257290.719000000506639 ], [ 358837.914599999785423, 257297.67790000140667 ], [ 358838.497900001704693, 257307.776599999517202 ], [ 358841.357100002467632, 257307.693599998950958 ], [ 358845.288699999451637, 257307.481499999761581 ], [ 358849.204999998211861, 257307.074400000274181 ], [ 358853.096199996769428, 257306.473400000482798 ], [ 358856.95269999653101, 257305.679800000041723 ], [ 358864.076499998569489, 257304.028299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402051300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92338348, "LATITUDE": 18.34499228, "OBJECTID_1": 12530, "PARCEL_NO_": "105402051300", "Tax_Legal_": "HOSPITAL GROUND 159 NEW QTR", "Name": "BRATHWAITE, MYRTLE", "Address": "601 W 176th St", "City": "New York", "State": "New York", "Zip": 10033, "Country": "United States", "Land_Value": 8800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.97364353499999, "SHAPE_Area": 766.36656750199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359606.377099998295307, 257293.538499999791384 ], [ 359612.888899996876717, 257274.363000001758337 ], [ 359581.773199997842312, 257276.915300000458956 ], [ 359579.003600001335144, 257298.897700000554323 ], [ 359601.515799999237061, 257307.85359999909997 ], [ 359606.377099998295307, 257293.538499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93063283, "LATITUDE": 18.34517812, "OBJECTID_1": 11455, "PARCEL_NO_": "105401050300", "Tax_Legal_": "ADELE GADE 7 KINGS QUARTER", "Name": "WILLIAMS, E. & GUMBS, E", "Address": "PO Box 962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6800, "Improved_V": 23000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.940321682899999, "SHAPE_Area": 186.25555688700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358838.497900001704693, 257307.776599999517202 ], [ 358837.914599999785423, 257297.67790000140667 ], [ 358818.218999996781349, 257299.825800001621246 ], [ 358818.29619999974966, 257301.505499999970198 ], [ 358818.348899997770786, 257303.22410000115633 ], [ 358818.325800001621246, 257304.943399999290705 ], [ 358818.227200001478195, 257306.65989999845624 ], [ 358818.053199999034405, 257308.37049999833107 ], [ 358838.497900001704693, 257307.776599999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402050500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92265081, "LATITUDE": 18.34507017, "OBJECTID_1": 12522, "PARCEL_NO_": "105402050500", "Tax_Legal_": "HOSPITAL GROUND 164 NEW QUARTER", "Name": "CLEMENT, ADELLA", "Address": "735 Magneta St", "City": "Bronx", "State": "New York", "Zip": 10467, "Country": "United States", "Land_Value": 7800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.117940554499995, "SHAPE_Area": 358.63752674699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359683.23200000077486, 257307.532299999147654 ], [ 359681.716499999165535, 257300.148400001227856 ], [ 359681.184900000691414, 257297.558499999344349 ], [ 359679.184000000357628, 257287.809399999678135 ], [ 359661.501000002026558, 257289.200800001621246 ], [ 359665.095899999141693, 257308.932199999690056 ], [ 359683.23200000077486, 257307.532299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401050200", "MAP": null, "PARCEL_NAM": "3 ADEL GADE", "ACRE": "1,592 sq ft", "LONGITUDE": -64.93088662, "LATITUDE": 18.34522047, "OBJECTID_1": 11454, "PARCEL_NO_": "105401050200", "Tax_Legal_": "ADEL GADE 3 KINGS QUARTER", "Name": "PICKERING, ULRIC S. & RUTH", "Address": "PO Box 9100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3200, "Improved_V": 63100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.163064368100002, "SHAPE_Area": 134.12788692800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358810.581600002944469, 257311.219799999147654 ], [ 358811.947400003671646, 257304.464499998837709 ], [ 358792.33500000089407, 257304.292300000786781 ], [ 358792.371699996292591, 257311.732999999076128 ], [ 358793.637800000607967, 257311.698399998247623 ], [ 358810.581600002944469, 257311.219799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401050800", "MAP": null, "PARCEL_NAM": "3 DOMINI GADE", "ACRE": null, "LONGITUDE": -64.9310626, "LATITUDE": 18.34510498, "OBJECTID_1": 11460, "PARCEL_NO_": "105401050800", "Tax_Legal_": "DOMINI GADE 2 KINGS QUARTER", "Name": "EPISCOPAL CHURCH OF THE VI", "Address": "PO BOX 1148", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55800, "Improved_V": 83600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.776448734599995, "SHAPE_Area": 338.20942474200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358774.315200001001358, 257304.290300000458956 ], [ 358792.33500000089407, 257304.292300000786781 ], [ 358792.244300000369549, 257285.8733000010252 ], [ 358773.686899997293949, 257285.527100000530481 ], [ 358774.018700003623962, 257291.951900001615286 ], [ 358774.204199999570847, 257296.37220000103116 ], [ 358774.303999997675419, 257300.795200001448393 ], [ 358774.315200001001358, 257304.290300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402050700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92281956, "LATITUDE": 18.34508371, "OBJECTID_1": 12524, "PARCEL_NO_": "105402050700", "Tax_Legal_": "HOSPITAL GROUND 165 NEW QUARTER", "Name": "JAMES, PAUL, JOYCE & JOHN", "Address": "PO Box 221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.735050037899995, "SHAPE_Area": 355.40517413700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359665.095899999141693, 257308.932199999690056 ], [ 359661.501000002026558, 257289.200800001621246 ], [ 359643.741700001060963, 257290.598299998790026 ], [ 359647.311599999666214, 257310.304999999701977 ], [ 359665.095899999141693, 257308.932199999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402050900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92298745, "LATITUDE": 18.34509752, "OBJECTID_1": 12526, "PARCEL_NO_": "105402050900", "Tax_Legal_": "HOSPITAL GROUND 166 NEW QUARTER", "Name": "DE VALLEY, ELMIDA", "Address": "2240 Bpston Rd", "City": "Bronx", "State": "New York", "Zip": 10467, "Country": "United States", "Land_Value": 8700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.621682687299995, "SHAPE_Area": 354.35393161299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359647.311599999666214, 257310.304999999701977 ], [ 359643.741700001060963, 257290.598299998790026 ], [ 359626.000699996948242, 257291.994300000369549 ], [ 359629.56700000166893, 257311.674800001084805 ], [ 359647.311599999666214, 257310.304999999701977 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401242300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92442294, "LATITUDE": 18.34514234, "OBJECTID_1": 11820, "PARCEL_NO_": "105401242300", "Tax_Legal_": "HOSPITAL GROUND 140-3 KINGS QTR.", "Name": "LEONARD, MARCIA & CLARENCE", "Address": "1424 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8700, "Improved_V": 51400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.349839237500007, "SHAPE_Area": 268.50807091399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359497.649899996817112, 257302.111900001764297 ], [ 359470.931199997663498, 257296.540800001472235 ], [ 359473.48589999973774, 257303.562100000679493 ], [ 359475.579099997878075, 257309.315200001001358 ], [ 359496.28999999910593, 257312.524900000542402 ], [ 359496.493299998342991, 257311.350900001823902 ], [ 359496.682700000703335, 257310.174600001424551 ], [ 359496.858199998736382, 257308.996100001037121 ], [ 359497.01969999819994, 257307.815600000321865 ], [ 359497.198600001633167, 257306.392099998891354 ], [ 359497.363300003111362, 257304.966899998486042 ], [ 359497.513700000941753, 257303.540100000798702 ], [ 359497.649899996817112, 257302.111900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402051100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92318133000001, "LATITUDE": 18.34511496, "OBJECTID_1": 12528, "PARCEL_NO_": "105402051100", "Tax_Legal_": "HOSPITAL GROUND 167 NEW QTR", "Name": "MOOLENAAR, LESMORA", "Address": "2386 Morris Ave", "City": "Bronx", "State": "New York", "Zip": 10468, "Country": "United States", "Land_Value": 7500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.564622110599998, "SHAPE_Area": 461.42951583199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359629.56700000166893, 257311.674800001084805 ], [ 359626.000699996948242, 257291.994300000369549 ], [ 359606.377099998295307, 257293.538499999791384 ], [ 359601.515799999237061, 257307.85359999909997 ], [ 359602.370800003409386, 257308.19370000064373 ], [ 359604.425300002098083, 257309.140099998563528 ], [ 359606.368100002408028, 257310.298700001090765 ], [ 359608.177299998700619, 257311.656399998813868 ], [ 359609.832599997520447, 257313.198100000619888 ], [ 359629.56700000166893, 257311.674800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401091500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92900662, "LATITUDE": 18.34509634, "OBJECTID_1": 11522, "PARCEL_NO_": "105401091500", "Tax_Legal_": "HOSPITAL GROUND 309 KINGS QTR", "Name": "FRANCIS, MYRIL & ADELIA RODRIGUEZ HENNEMAN", "Address": "215-237 Annas Retreat", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25700, "Improved_V": 66500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.67909983000001, "SHAPE_Area": 822.34694086800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359027.405699998140335, 257291.613600000739098 ], [ 359026.566699996590614, 257289.738200001418591 ], [ 359025.701099999248981, 257287.874899998307228 ], [ 359024.809199996292591, 257286.024099998176098 ], [ 359023.891099996864796, 257284.186099998652935 ], [ 359019.987999998033047, 257276.509300000965595 ], [ 358989.40089999884367, 257292.846700001507998 ], [ 358972.623700000345707, 257304.280699998140335 ], [ 358973.622900001704693, 257314.575199998915195 ], [ 359002.723800003528595, 257303.423500001430511 ], [ 359027.405699998140335, 257291.613600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92499365, "LATITUDE": 18.34517334, "OBJECTID_1": 11792, "PARCEL_NO_": "105401221400", "Tax_Legal_": "HOSPITAL GROUND 255 KINGS QUARTER", "Name": "FELIX, ANTHONY", "Address": "1455 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.432383311699994, "SHAPE_Area": 292.059060655 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359434.836000002920628, 257313.187600001692772 ], [ 359431.017899997532368, 257297.447299998253584 ], [ 359414.249099999666214, 257301.583999998867512 ], [ 359418.056800000369549, 257316.625500001013279 ], [ 359418.201700001955032, 257317.197799999266863 ], [ 359418.614799998700619, 257318.829700000584126 ], [ 359434.836000002920628, 257313.187600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401120800", "MAP": null, "PARCEL_NAM": "8GD", "ACRE": ".06", "LONGITUDE": -64.93019929, "LATITUDE": 18.34525125, "OBJECTID_1": 11647, "PARCEL_NO_": "105401120800", "Tax_Legal_": "LYTTONS FANCY 8GD QUEENS QTR", "Name": "DIVERSE DEVELOPMENT GLOBAL LLC", "Address": "PO Box 603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040603, "Country": "United States", "Land_Value": 6600, "Improved_V": 92600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.548907953599993, "SHAPE_Area": 448.541221157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358885.373700000345707, 257319.099500000476837 ], [ 358890.182300001382828, 257309.154500000178814 ], [ 358889.291299998760223, 257301.311900001019239 ], [ 358857.641099996864796, 257308.649000000208616 ], [ 358857.581699997186661, 257308.662799999117851 ], [ 358857.522299997508526, 257308.676500000059605 ], [ 358857.462899997830391, 257308.690099999308586 ], [ 358857.403499998152256, 257308.703699998557568 ], [ 358857.854800000786781, 257320.035900000482798 ], [ 358885.373700000345707, 257319.099500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92511798, "LATITUDE": 18.34526988, "OBJECTID_1": 11791, "PARCEL_NO_": "105401221300", "Tax_Legal_": "HOSPITAL GROUND 256 NEW QUARTER", "Name": "RICHARDS, STRICKLAND", "Address": "PO Box 340736", "City": "Jamaica", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 25800, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.312748498800001, "SHAPE_Area": 10.6847929264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359418.056800000369549, 257316.625500001013279 ], [ 359407.149800002574921, 257318.382399998605251 ], [ 359408.748099997639656, 257320.084199998527765 ], [ 359418.056800000369549, 257316.625500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401241100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92468603, "LATITUDE": 18.34514128, "OBJECTID_1": 11808, "PARCEL_NO_": "105401241100", "Tax_Legal_": "HOSPITAL GROUND 138A KINGS QUARTER", "Name": "PENN (LIFE ESTATE), TILFORD V.", "Address": "PO Box 306952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.681481932, "SHAPE_Area": 547.181654643 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359473.48589999973774, 257303.562100000679493 ], [ 359470.931199997663498, 257296.540800001472235 ], [ 359467.208200000226498, 257286.308400001376867 ], [ 359441.102799996733665, 257306.697999998927116 ], [ 359444.878899998962879, 257322.265000000596046 ], [ 359473.48589999973774, 257303.562100000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92515068, "LATITUDE": 18.34520681, "OBJECTID_1": 11791, "PARCEL_NO_": "105401221300", "Tax_Legal_": "HOSPITAL GROUND 256 NEW QUARTER", "Name": "RICHARDS, STRICKLAND", "Address": "PO Box 340736", "City": "Jamaica", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 25800, "Improved_V": 129000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.654476641100004, "SHAPE_Area": 262.94555198199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359408.748099997639656, 257320.084199998527765 ], [ 359407.149800002574921, 257318.382399998605251 ], [ 359418.056800000369549, 257316.625500001013279 ], [ 359414.249099999666214, 257301.583999998867512 ], [ 359398.296899996697903, 257305.519299998879433 ], [ 359402.132500000298023, 257322.40430000051856 ], [ 359408.748099997639656, 257320.084199998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401240700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92440523, "LATITUDE": 18.34524307, "OBJECTID_1": 11805, "PARCEL_NO_": "105401240700", "Tax_Legal_": "HOSPITAL GROUND 140-4 KINGS QTR.", "Name": "LEONARD, CLARENCE", "Address": "1424 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.450220664699998, "SHAPE_Area": 185.213599582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359496.28999999910593, 257312.524900000542402 ], [ 359475.579099997878075, 257309.315200001001358 ], [ 359478.269199997186661, 257316.708599999547005 ], [ 359478.985799998044968, 257318.678199999034405 ], [ 359493.47580000013113, 257324.204700000584126 ], [ 359493.847300000488758, 257322.930799998342991 ], [ 359494.561499997973442, 257320.354600001126528 ], [ 359495.207000002264977, 257317.760299999266863 ], [ 359495.783299997448921, 257315.14979999884963 ], [ 359496.28999999910593, 257312.524900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401031200", "MAP": null, "PARCEL_NAM": "8AA", "ACRE": null, "LONGITUDE": -64.93159012, "LATITUDE": 18.34512605, "OBJECTID_1": 11432, "PARCEL_NO_": "105401031200", "Tax_Legal_": "DOMINI GADE PCL QUEENS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.510413335, "SHAPE_Area": 467.93595259900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358729.374700002372265, 257280.452100001275539 ], [ 358722.182099997997284, 257272.927099999040365 ], [ 358717.840300001204014, 257280.460099998861551 ], [ 358717.561700001358986, 257280.990699999034405 ], [ 358717.088699996471405, 257282.267700001597404 ], [ 358716.850599996745586, 257283.608399998396635 ], [ 358716.854900002479553, 257284.970199998468161 ], [ 358717.101499997079372, 257286.309399999678135 ], [ 358717.582599997520447, 257287.583299998193979 ], [ 358717.976499997079372, 257288.397599998861551 ], [ 358732.406300000846386, 257322.835099998861551 ], [ 358734.871100001037121, 257322.774500001221895 ], [ 358734.946999996900558, 257322.772599998861551 ], [ 358738.036399997770786, 257322.696600001305342 ], [ 358732.892099998891354, 257297.607200000435114 ], [ 358729.374700002372265, 257280.452100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401051700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93101174, "LATITUDE": 18.34533037, "OBJECTID_1": 11469, "PARCEL_NO_": "105401051700", "Tax_Legal_": "DOMINI TVER 5A KINGS QUARTER", "Name": "BLACKMAN, FRANK", "Address": "418 Lakeside Way", "City": "Newnan", "State": "Georgia", "Zip": 30265, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.247230882899999, "SHAPE_Area": 113.56488917900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358793.296099998056889, 257313.050000000745058 ], [ 358784.64190000295639, 257313.26069999858737 ], [ 358783.764899998903275, 257327.156100001186132 ], [ 358788.258699998259544, 257326.910999998450279 ], [ 358791.645000003278255, 257326.726300001144409 ], [ 358793.296099998056889, 257313.050000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401091400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92898109, "LATITUDE": 18.3452212, "OBJECTID_1": 11521, "PARCEL_NO_": "105401091400", "Tax_Legal_": "HOSPITAL GROUND 308 KINGS QTR", "Name": "JOSHUA, PATRICE & OTHERS", "Address": "PO Box 7341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 5900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.58679501200001, "SHAPE_Area": 767.27576928500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359005.611199997365475, 257315.417100001126528 ], [ 359032.689300000667572, 257305.043400000780821 ], [ 359030.287000000476837, 257298.678199999034405 ], [ 359029.601599998772144, 257296.897999998182058 ], [ 359028.892899997532368, 257295.126899998635054 ], [ 359028.160899996757507, 257293.36540000140667 ], [ 359027.405699998140335, 257291.613600000739098 ], [ 359002.723800003528595, 257303.423500001430511 ], [ 358973.622900001704693, 257314.575199998915195 ], [ 358974.848499998450279, 257327.202399998903275 ], [ 359005.611199997365475, 257315.417100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401040800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93110088, "LATITUDE": 18.34533556, "OBJECTID_1": 11447, "PARCEL_NO_": "105401040800", "Tax_Legal_": "DOMINI GADE 5B KINGS QUARTER", "Name": "GEORGES, OTHERS, MELONITA", "Address": "P.O.BOX 3824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 69700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.444091780900003, "SHAPE_Area": 147.871730875 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358784.64190000295639, 257313.26069999858737 ], [ 358774.108599998056889, 257313.517200000584126 ], [ 358773.968800000846386, 257316.462499998509884 ], [ 358773.727899998426437, 257320.226500000804663 ], [ 358773.424800001084805, 257323.986000001430511 ], [ 358773.059900000691414, 257327.739999998360872 ], [ 358783.764899998903275, 257327.156100001186132 ], [ 358784.64190000295639, 257313.26069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401180200", "MAP": null, "PARCEL_NAM": "9D", "ACRE": "65,610 sq ft", "LONGITUDE": -64.92792711, "LATITUDE": 18.34507246, "OBJECTID_1": 11736, "PARCEL_NO_": "105401180200", "Tax_Legal_": "9D HOSPITAL GROUND KINGS QTR.", "Name": "MORAVIAN MISSION", "Address": "PO Box 8330", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 653800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.54394474399999, "SHAPE_Area": 5245.0912350199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359189.628799997270107, 257294.844700001180172 ], [ 359181.847499996423721, 257260.522300001233816 ], [ 359042.609499998390675, 257291.449700001627207 ], [ 359042.03830000013113, 257297.23030000180006 ], [ 359046.488300003111362, 257320.024599999189377 ], [ 359049.563900001347065, 257328.173599999397993 ], [ 359064.328699998557568, 257324.660300001502037 ], [ 359078.968400001525879, 257321.17680000141263 ], [ 359094.530199997127056, 257317.473799999803305 ], [ 359189.628799997270107, 257294.844700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401041000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93091028000001, "LATITUDE": 18.34533385, "OBJECTID_1": 11448, "PARCEL_NO_": "105401041000", "Tax_Legal_": "ADELE GADE 4A KINGS QTR", "Name": "BASTIEN, ALBERT and LINDA ALEXANDER", "Address": "8082 Caret Bay", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 8023435, "Country": "United States", "Land_Value": 2300, "Improved_V": 38800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.3005122044, "SHAPE_Area": 207.720393113 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358808.972599998116493, 257312.668299999088049 ], [ 358793.296099998056889, 257313.050000000745058 ], [ 358791.645000003278255, 257326.726300001144409 ], [ 358798.5287000015378, 257331.386999998241663 ], [ 358800.194399997591972, 257328.138799998909235 ], [ 358801.805200003087521, 257328.363099999725819 ], [ 358808.972599998116493, 257312.668299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401041100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93084141, "LATITUDE": 18.34534863, "OBJECTID_1": 11449, "PARCEL_NO_": "105401041100", "Tax_Legal_": "ADELE GADE 4 KINGS QTR", "Name": "HERNANDEZ, CELECIA", "Address": "8002 Patriot Manor", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023902, "Country": "United States", "Land_Value": 3100, "Improved_V": 90700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.724836932800002, "SHAPE_Area": 73.655099071099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358812.563799999654293, 257312.580899998545647 ], [ 358808.972599998116493, 257312.668299999088049 ], [ 358801.805200003087521, 257328.363099999725819 ], [ 358800.194399997591972, 257328.138799998909235 ], [ 358798.5287000015378, 257331.386999998241663 ], [ 358803.873499996960163, 257330.789599999785423 ], [ 358810.145199999213219, 257318.971999999135733 ], [ 358810.975500002503395, 257317.182599999010563 ], [ 358811.702100001275539, 257315.348600000143051 ], [ 358812.322800002992153, 257313.476199999451637 ], [ 358812.563799999654293, 257312.580899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401041300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93048493000001, "LATITUDE": 18.34533231, "OBJECTID_1": 11451, "PARCEL_NO_": "105401041300", "Tax_Legal_": "ADELE GADE 8B KINGS QUARTER", "Name": "HODGE, JENS", "Address": "10700 City Center Blvd", "City": "PEMBROKE PINES", "State": "Florida", "Zip": 33025, "Country": "United States", "Land_Value": 49400, "Improved_V": 213400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.197985151599994, "SHAPE_Area": 438.93830274800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358843.044900000095367, 257331.378499999642372 ], [ 358852.644900001585484, 257331.247699998319149 ], [ 358853.306199997663498, 257329.559500001370907 ], [ 358854.965599998831749, 257324.084600001573563 ], [ 358854.378300003707409, 257309.336100000888109 ], [ 358851.168499998748302, 257309.878800000995398 ], [ 358847.939699999988079, 257310.294100001454353 ], [ 358844.69709999859333, 257310.581399999558926 ], [ 358841.445600003004074, 257310.740299999713898 ], [ 358832.178700000047684, 257311.009500000625849 ], [ 358834.668999999761581, 257331.49269999936223 ], [ 358843.044900000095367, 257331.378499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401041200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93067316, "LATITUDE": 18.34534431, "OBJECTID_1": 11450, "PARCEL_NO_": "105401041200", "Tax_Legal_": "8A ADELE GADE KINGS QTR", "Name": "SONIA E. HODGE & OTHERS", "Address": "8A Adel Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5500, "Improved_V": 27100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.809736345299996, "SHAPE_Area": 371.96889095099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358834.668999999761581, 257331.49269999936223 ], [ 358832.178700000047684, 257311.009500000625849 ], [ 358817.548799999058247, 257311.434399999678135 ], [ 358816.952299997210503, 257313.919300001114607 ], [ 358816.194600000977516, 257316.359900001436472 ], [ 358815.279100000858307, 257318.745700001716614 ], [ 358814.209499999880791, 257321.066599998623133 ], [ 358810.574100002646446, 257327.916700001806021 ], [ 358825.056199997663498, 257331.623700000345707 ], [ 358834.668999999761581, 257331.49269999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401242100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92464098000001, "LATITUDE": 18.3452668, "OBJECTID_1": 11818, "PARCEL_NO_": "105401242100", "Tax_Legal_": "HOSPITAL GROUND 140-1 KINGS QTR", "Name": "ENRIQUE, KARLEEN B.", "Address": "PO Box 11971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8700, "Improved_V": 59000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.6864565881, "SHAPE_Area": 414.35115328500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359478.269199997186661, 257316.708599999547005 ], [ 359475.579099997878075, 257309.315200001001358 ], [ 359473.48589999973774, 257303.562100000679493 ], [ 359444.878899998962879, 257322.265000000596046 ], [ 359447.414800003170967, 257332.719200000166893 ], [ 359478.269199997186661, 257316.708599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92494835, "LATITUDE": 18.3453346, "OBJECTID_1": 11790, "PARCEL_NO_": "105401221200", "Tax_Legal_": "257 HOSPITAL GROUND KINGS QTR", "Name": "MURRAINE, LAWRENCE,PARRY-MURRAINE, MELISSA.", "Address": "PO BOX 302121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16300, "Improved_V": 161300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.214569152800003, "SHAPE_Area": 238.92489350400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359438.983199998736382, 257330.284699998795986 ], [ 359435.557899996638298, 257316.163400001823902 ], [ 359419.328699998557568, 257321.649500001221895 ], [ 359422.448100000619888, 257334.716099999845028 ], [ 359438.983199998736382, 257330.284699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401091300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92817163, "LATITUDE": 18.34536348, "OBJECTID_1": 11520, "PARCEL_NO_": "105401091300", "Tax_Legal_": "HOSPITAL GROUND 199 AB KINGS QTR", "Name": "CHINNERY, BERECIA", "Address": "ESTATE THOMAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6800, "Improved_V": 104200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.018688789700001, "SHAPE_Area": 216.27035945700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359097.527900002896786, 257330.004700001329184 ], [ 359094.530199997127056, 257317.473799999803305 ], [ 359078.968400001525879, 257321.17680000141263 ], [ 359083.878499999642372, 257335.712900001555681 ], [ 359097.527900002896786, 257330.004700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401120700", "MAP": null, "PARCEL_NAM": "8GE", "ACRE": ".09", "LONGITUDE": -64.93024311000001, "LATITUDE": 18.34539241, "OBJECTID_1": 11646, "PARCEL_NO_": "105401120700", "Tax_Legal_": "8GE LYTTONS FANCY QUEENS QUARTER", "Name": "THE TRESTAMENTARY TRUST OF", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9900, "Improved_V": 201400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.5710841163, "SHAPE_Area": 396.49242030400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358885.373700000345707, 257319.099500000476837 ], [ 358857.854800000786781, 257320.035900000482798 ], [ 358858.031599998474121, 257324.476799998432398 ], [ 358856.188199996948242, 257330.559000000357628 ], [ 358854.708700001239777, 257334.335700001567602 ], [ 358866.146200001239777, 257335.812699999660254 ], [ 358876.637599997222424, 257337.167599998414516 ], [ 358885.373700000345707, 257319.099500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92510109, "LATITUDE": 18.34539191, "OBJECTID_1": 11789, "PARCEL_NO_": "105401221100", "Tax_Legal_": "HOSPITAL GROUND 258 NEW QUARTER", "Name": "RICHARDS, KETURAH", "Address": "PO Box 9273", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7500, "Improved_V": 41700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.840300457399998, "SHAPE_Area": 176.825232529 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359420.058100000023842, 257324.704799998551607 ], [ 359403.614399999380112, 257328.92790000140667 ], [ 359405.934500001370907, 257339.141699999570847 ], [ 359422.448100000619888, 257334.716099999845028 ], [ 359420.058100000023842, 257324.704799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401240600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9244213, "LATITUDE": 18.34536114, "OBJECTID_1": 11804, "PARCEL_NO_": "105401240600", "Tax_Legal_": "HOSPITAL GROUND 145 KINGS QTR", "Name": "CHARLESWELL, C. J. , M. L. & GEORGE, C", "Address": "PO Box 1054", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5700, "Improved_V": 35900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.157917511800001, "SHAPE_Area": 219.274638592 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359493.47580000013113, 257324.204700000584126 ], [ 359478.985799998044968, 257318.678199999034405 ], [ 359477.877599999308586, 257332.880499999970198 ], [ 359477.710900001227856, 257335.017400000244379 ], [ 359488.973300002515316, 257339.646099999547005 ], [ 359493.47580000013113, 257324.204700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401091200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92830862, "LATITUDE": 18.34540871, "OBJECTID_1": 11519, "PARCEL_NO_": "105401091200", "Tax_Legal_": "HOSPITAL GROUND 199AA KINGS QTR", "Name": "CHINNERY, WALLACE", "Address": "11 Jayne Lee Dr", "City": "Hampton", "State": "Virginia", "Zip": 23664, "Country": "United States", "Land_Value": 20100, "Improved_V": 95700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.003608591299994, "SHAPE_Area": 254.75431096200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359083.878499999642372, 257335.712900001555681 ], [ 359078.968400001525879, 257321.17680000141263 ], [ 359064.328699998557568, 257324.660300001502037 ], [ 359069.337499998509884, 257341.793999999761581 ], [ 359083.878499999642372, 257335.712900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93045384, "LATITUDE": 18.34547195, "OBJECTID_1": 11446, "PARCEL_NO_": "105401040700", "Tax_Legal_": "ADELE GADE 9 KINGS QUARTER", "Name": "DICKERSON, MECEDES & CHLON", "Address": "P.O. BOX 2358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.708105843299997, "SHAPE_Area": 75.124588536000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358852.644900001585484, 257331.247699998319149 ], [ 358843.044900000095367, 257331.378499999642372 ], [ 358844.332500003278255, 257342.615100000053644 ], [ 358848.360500000417233, 257342.184599999338388 ], [ 358852.644900001585484, 257331.247699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93108937, "LATITUDE": 18.3454662, "OBJECTID_1": 11444, "PARCEL_NO_": "105401040500", "Tax_Legal_": "DOMINI GADE 6A KINGS QTR", "Name": "SMITH, ANNIE I & LEROY", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9000, "Improved_V": 77100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.328336737000001, "SHAPE_Area": 232.34764952099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358788.258699998259544, 257326.910999998450279 ], [ 358783.764899998903275, 257327.156100001186132 ], [ 358773.059900000691414, 257327.739999998360872 ], [ 358772.781900003552437, 257330.240899998694658 ], [ 358772.476499997079372, 257332.738499999046326 ], [ 358772.14360000193119, 257335.232700001448393 ], [ 358771.783299997448921, 257337.723000001162291 ], [ 358771.132799997925758, 257342.050500001758337 ], [ 358786.994000002741814, 257342.653400000184774 ], [ 358788.258699998259544, 257326.910999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401242200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92461593, "LATITUDE": 18.34538173, "OBJECTID_1": 11819, "PARCEL_NO_": "105401242200", "Tax_Legal_": "140-2 HOSPITAL GROUND KINGS QUARTER", "Name": "PARKER, GWENDOLYN & PAULINE", "Address": "PO Box 303378", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9600, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.974644941099996, "SHAPE_Area": 432.09763419699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359477.877599999308586, 257332.880499999970198 ], [ 359478.985799998044968, 257318.678199999034405 ], [ 359478.269199997186661, 257316.708599999547005 ], [ 359447.414800003170967, 257332.719200000166893 ], [ 359449.364200003445148, 257340.755899999290705 ], [ 359453.728900000452995, 257343.57039999961853 ], [ 359477.877599999308586, 257332.880499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401091000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92879855, "LATITUDE": 18.34534807, "OBJECTID_1": 11516, "PARCEL_NO_": "105401091000", "Tax_Legal_": "HOSPITAL GROUND 308A KINGS QTR", "Name": "JOSHUA (LIFE ESTATE), SARAH", "Address": "308 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82400, "Improved_V": 67800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.955012815, "SHAPE_Area": 840.09414542699994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359041.075099997222424, 257327.261799998581409 ], [ 359032.689300000667572, 257305.043400000780821 ], [ 359005.611199997365475, 257315.417100001126528 ], [ 359011.230400003492832, 257345.253699999302626 ], [ 359041.075099997222424, 257327.261799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93095906000001, "LATITUDE": 18.34547451, "OBJECTID_1": 11445, "PARCEL_NO_": "105401040600", "Tax_Legal_": "DOMINI GADE 6B KINGS QTR", "Name": "HERNANDEZ, CELECIA", "Address": "8002 Patriot Manor", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023902, "Country": "United States", "Land_Value": 5300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.911922825399998, "SHAPE_Area": 195.972169546 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358803.873499996960163, 257330.789599999785423 ], [ 358798.5287000015378, 257331.386999998241663 ], [ 358791.645000003278255, 257326.726300001144409 ], [ 358788.258699998259544, 257326.910999998450279 ], [ 358786.994000002741814, 257342.653400000184774 ], [ 358796.139700002968311, 257345.362399999052286 ], [ 358803.873499996960163, 257330.789599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401040700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93067353000001, "LATITUDE": 18.34548705, "OBJECTID_1": 11446, "PARCEL_NO_": "105401040700", "Tax_Legal_": "ADELE GADE 9 KINGS QUARTER", "Name": "DICKERSON, MECEDES & CHLON", "Address": "P.O. BOX 2358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.98361884400001, "SHAPE_Area": 506.79494813600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358828.182899996638298, 257344.341499999165535 ], [ 358844.332500003278255, 257342.615100000053644 ], [ 358843.044900000095367, 257331.378499999642372 ], [ 358834.668999999761581, 257331.49269999936223 ], [ 358825.056199997663498, 257331.623700000345707 ], [ 358810.574100002646446, 257327.916700001806021 ], [ 358803.631399996578693, 257340.9989 ], [ 358814.359099999070168, 257345.85530000180006 ], [ 358828.182899996638298, 257344.341499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401091100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92844236000001, "LATITUDE": 18.3454492, "OBJECTID_1": 11518, "PARCEL_NO_": "105401091100", "Tax_Legal_": "HOSPITAL GROUND 199A KINGS QUARTER", "Name": "CHINNERY, BERECIA", "Address": "9015 First Ave", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022630, "Country": "United States", "Land_Value": 7900, "Improved_V": 108000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.9340644973, "SHAPE_Area": 273.60922801599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359069.337499998509884, 257341.793999999761581 ], [ 359064.328699998557568, 257324.660300001502037 ], [ 359049.563900001347065, 257328.173599999397993 ], [ 359056.699400000274181, 257347.079300001263618 ], [ 359069.337499998509884, 257341.793999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401120600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93024698000001, "LATITUDE": 18.3455194, "OBJECTID_1": 11645, "PARCEL_NO_": "105401120600", "Tax_Legal_": "LYTTON FANCY 8K QUEENS QTR", "Name": "QUESTEL, VANBORNE", "Address": "PO Box 304175", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.549447668399999, "SHAPE_Area": 114.401810736 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358876.637599997222424, 257337.167599998414516 ], [ 358866.146200001239777, 257335.812699999660254 ], [ 358861.234600000083447, 257344.427299998700619 ], [ 358871.280500002205372, 257348.247299998998642 ], [ 358876.637599997222424, 257337.167599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92491096000001, "LATITUDE": 18.34547762, "OBJECTID_1": 11788, "PARCEL_NO_": "105401221000", "Tax_Legal_": "HOSPITAL GROUND 259 NEW QUARTER", "Name": "ENRIQUE, ANTONIO", "Address": "PO Box 11971", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5900, "Improved_V": 96700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.392242574699999, "SHAPE_Area": 215.04869641100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359442.777999997138977, 257345.928599998354912 ], [ 359439.701800003647804, 257333.246800001710653 ], [ 359423.155900001525879, 257337.681099999696016 ], [ 359425.950199998915195, 257349.385800000280142 ], [ 359442.777999997138977, 257345.928599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401220900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92507335000001, "LATITUDE": 18.34551394, "OBJECTID_1": 11787, "PARCEL_NO_": "105401220900", "Tax_Legal_": "HOSPITAL GROUND 260 NEW QUARTER", "Name": "CLENN, LILLIAN", "Address": "PO Box 9753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8600, "Improved_V": 31700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.253483424699994, "SHAPE_Area": 294.30935632400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359425.950199998915195, 257349.385800000280142 ], [ 359423.155900001525879, 257337.681099999696016 ], [ 359422.448100000619888, 257334.716099999845028 ], [ 359405.934500001370907, 257339.141699999570847 ], [ 359409.409999996423721, 257354.441700000315905 ], [ 359410.183600001037121, 257357.846900001168251 ], [ 359425.950199998915195, 257349.385800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401220800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92493709, "LATITUDE": 18.3455811, "OBJECTID_1": 11786, "PARCEL_NO_": "105401220800", "Tax_Legal_": "HOSPITAL GROUND 261 NEW QTR", "Name": "WILLIAMS, A", "Address": "2333 5th Ave", "City": "New York", "State": "New York", "Zip": 10037, "Country": "United States", "Land_Value": 5100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.561701732800003, "SHAPE_Area": 220.54430105500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359444.512599997222424, 257353.079599998891354 ], [ 359442.777999997138977, 257345.928599998354912 ], [ 359425.950199998915195, 257349.385800000280142 ], [ 359410.183600001037121, 257357.846900001168251 ], [ 359428.068800002336502, 257358.260400000959635 ], [ 359444.512599997222424, 257353.079599998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401090800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92825413, "LATITUDE": 18.34554046, "OBJECTID_1": 11514, "PARCEL_NO_": "105401090800", "Tax_Legal_": "HOSPITAL GROUND 199B KINGS QUARTER", "Name": "LETTSOME, JEFFREY & SYLVIA", "Address": "BOX 4931", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18900, "Improved_V": 92300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.726198431, "SHAPE_Area": 650.12852560900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359101.230099998414516, 257345.480599999427795 ], [ 359097.527900002896786, 257330.004700001329184 ], [ 359083.878499999642372, 257335.712900001555681 ], [ 359069.337499998509884, 257341.793999999761581 ], [ 359056.699400000274181, 257347.079300001263618 ], [ 359061.760099999606609, 257360.487900000065565 ], [ 359101.230099998414516, 257345.480599999427795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130700", "MAP": "G9-2861-T73", "PARCEL_NAM": "REM 8GDA", "ACRE": "0.44", "LONGITUDE": -64.92978411, "LATITUDE": 18.34533811, "OBJECTID_1": 11665, "PARCEL_NO_": "105401130700", "Tax_Legal_": "LYTTONS FANCY 8GDA QUEENS QTR", "Name": "O'MAHONEY DE SOSA, MARIA", "Address": "34 Street SW 1565", "City": "San Juan", "State": "Puerto Rico", "Zip": 921, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.536219332, "SHAPE_Area": 1331.7721547000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358933.332999996840954, 257359.948800001293421 ], [ 358927.410499997437, 257289.070099998265505 ], [ 358913.478799998760223, 257295.970600001513958 ], [ 358912.087300002574921, 257296.707600001245737 ], [ 358909.836800001561642, 257298.118999999016523 ], [ 358907.725100003182888, 257299.730799999088049 ], [ 358905.770099997520447, 257301.52930000051856 ], [ 358903.987999998033047, 257303.499400001019239 ], [ 358912.778399996459484, 257329.271000001579523 ], [ 358914.328000001609325, 257333.592599999159575 ], [ 358916.01129999756813, 257337.863800000399351 ], [ 358917.826899997889996, 257342.080600000917912 ], [ 358919.772900000214577, 257346.238800000399351 ], [ 358926.899400003254414, 257360.005399998277426 ], [ 358933.332999996840954, 257359.948800001293421 ] ] ], [ [ [ 358908.451200000941753, 257330.746899999678135 ], [ 358900.787900000810623, 257308.279599998146296 ], [ 358900.652500003576279, 257308.536200001835823 ], [ 358900.519799999892712, 257308.793999999761581 ], [ 358900.389600001275539, 257309.053199999034405 ], [ 358900.262100003659725, 257309.313700001686811 ], [ 358891.029899999499321, 257328.407900001853704 ], [ 358908.551100000739098, 257331.038899999111891 ], [ 358908.526100002229214, 257330.965900000184774 ], [ 358908.50110000371933, 257330.892900001257658 ], [ 358908.476099997758865, 257330.819899998605251 ], [ 358908.451200000941753, 257330.746899999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105401130700", "MAP": null, "PARCEL_NAM": "8GDA", "ACRE": null, "LONGITUDE": -64.92983625, "LATITUDE": 18.34544159, "OBJECTID_1": 11665, "PARCEL_NO_": "105401130700", "Tax_Legal_": "LYTTONS FANCY 8GDA QUEENS QTR", "Name": "O'MAHONEY DE SOSA, MARIA", "Address": "34 Street SW 1565", "City": "San Juan", "State": "Puerto Rico", "Zip": 921, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.951214644, "SHAPE_Area": 268.123479191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358926.899400003254414, 257360.005399998277426 ], [ 358919.772900000214577, 257346.238800000399351 ], [ 358917.826899997889996, 257342.080600000917912 ], [ 358916.01129999756813, 257337.863800000399351 ], [ 358914.328000001609325, 257333.592599999159575 ], [ 358912.778399996459484, 257329.271000001579523 ], [ 358903.987999998033047, 257303.499400001019239 ], [ 358903.0996999964118, 257304.633200000971556 ], [ 358902.268899999558926, 257305.809799998998642 ], [ 358901.497699998319149, 257307.026299998164177 ], [ 358900.787900000810623, 257308.279599998146296 ], [ 358908.451200000941753, 257330.746899999678135 ], [ 358908.476099997758865, 257330.819899998605251 ], [ 358908.50110000371933, 257330.892900001257658 ], [ 358908.526100002229214, 257330.965900000184774 ], [ 358908.551100000739098, 257331.038899999111891 ], [ 358910.135399997234344, 257335.432300001382828 ], [ 358911.854000002145767, 257339.774900000542402 ], [ 358913.705200001597404, 257344.062600001692772 ], [ 358915.687200002372265, 257348.291499998420477 ], [ 358921.774400003254414, 257360.050500001758337 ], [ 358926.899400003254414, 257360.005399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401040300", "MAP": null, "PARCEL_NAM": "7A", "ACRE": ".07", "LONGITUDE": -64.93109898, "LATITUDE": 18.34561998, "OBJECTID_1": 11442, "PARCEL_NO_": "105401040300", "Tax_Legal_": "7A REM DOMINI GADE KINGS QTR", "Name": "CLIVE E.C. BANFIELD REV TRUST & OTHERS", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 7100, "Improved_V": 76700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.119120614600007, "SHAPE_Area": 333.188663319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358788.700000002980232, 257359.380899999290705 ], [ 358786.994000002741814, 257342.653400000184774 ], [ 358771.132799997925758, 257342.050500001758337 ], [ 358768.52929999679327, 257359.370299998670816 ], [ 358782.086300000548363, 257361.990499999374151 ], [ 358788.700000002980232, 257359.380899999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401240400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9244518, "LATITUDE": 18.34553009, "OBJECTID_1": 11803, "PARCEL_NO_": "105401240400", "Tax_Legal_": "HOSPITAL GROUND 143 KINGS QTR", "Name": "HENDRICKS, F & DONADELLE, A", "Address": "PO Box 11754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6000, "Improved_V": 20800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.220165703600003, "SHAPE_Area": 219.58357554299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359488.973300002515316, 257339.646099999547005 ], [ 359477.710900001227856, 257335.017400000244379 ], [ 359475.926500000059605, 257357.883900001645088 ], [ 359482.431999996304512, 257362.07880000025034 ], [ 359488.973300002515316, 257339.646099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9308059, "LATITUDE": 18.34561422, "OBJECTID_1": 11443, "PARCEL_NO_": "105401040400", "Tax_Legal_": "ADELE GADE 10 KINGS QUARTER", "Name": "LEWIS, JOSEPH & DORIS", "Address": "2419 Adele Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9600, "Improved_V": 111800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.853105617799997, "SHAPE_Area": 355.86664504700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358828.182899996638298, 257344.341499999165535 ], [ 358814.359099999070168, 257345.85530000180006 ], [ 358803.631399996578693, 257340.9989 ], [ 358795.38849999755621, 257356.530900001525879 ], [ 358811.954700000584126, 257362.150400001555681 ], [ 358828.182899996638298, 257344.341499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401131500", "MAP": "G9-2861-T73", "PARCEL_NAM": "8GDA-2", "ACRE": "0.23", "LONGITUDE": -64.92996261, "LATITUDE": 18.34557109, "OBJECTID_1": 11672, "PARCEL_NO_": "105401131500", "Tax_Legal_": "LYTTONS FANCY 8GDA-2 CROWN PRINCE QTR", "Name": "GEORGE, ALPHONSE & UNA", "Address": "PO Box 6011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27600, "Improved_V": 137700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.842689167, "SHAPE_Area": 969.68362273499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358895.624300003051758, 257363.085299998521805 ], [ 358903.4121999964118, 257363.630800001323223 ], [ 358903.4087999984622, 257363.563299998641014 ], [ 358903.239000000059605, 257360.213500000536442 ], [ 358921.774400003254414, 257360.050500001758337 ], [ 358915.687200002372265, 257348.291499998420477 ], [ 358913.705200001597404, 257344.062600001692772 ], [ 358911.854000002145767, 257339.774900000542402 ], [ 358910.135399997234344, 257335.432300001382828 ], [ 358908.551100000739098, 257331.038899999111891 ], [ 358891.029899999499321, 257328.407900001853704 ], [ 358878.668099999427795, 257353.974700000137091 ], [ 358877.486199997365475, 257356.418999999761581 ], [ 358883.586400002241135, 257358.660999998450279 ], [ 358895.624300003051758, 257363.085299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401090900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92908274, "LATITUDE": 18.34548493, "OBJECTID_1": 11515, "PARCEL_NO_": "105401090900", "Tax_Legal_": "HOSPITAL GROUND 308A-1 KINGS QTR", "Name": "TODMAN, JUREEN", "Address": "PO Box 11898", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.455991907, "SHAPE_Area": 1146.08974687 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359011.230400003492832, 257345.253699999302626 ], [ 359005.611199997365475, 257315.417100001126528 ], [ 358974.848499998450279, 257327.202399998903275 ], [ 358978.515000000596046, 257364.976300001144409 ], [ 359011.230400003492832, 257345.253699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401090700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92883486, "LATITUDE": 18.34558864, "OBJECTID_1": 11513, "PARCEL_NO_": "105401090700", "Tax_Legal_": "HOSPITAL GROUND 305 KINGS QTR", "Name": "TUITT, JOSEPH &", "Address": "451 Fulton Ave", "City": "Hempstead", "State": "New York", "Zip": 11550, "Country": "United States", "Land_Value": 20400, "Improved_V": 83000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.22015646, "SHAPE_Area": 1062.0231518099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359029.290700003504753, 257357.566599998623133 ], [ 359047.731799997389317, 257344.899000000208616 ], [ 359041.075099997222424, 257327.261799998581409 ], [ 359011.230400003492832, 257345.253699999302626 ], [ 358978.515000000596046, 257364.976300001144409 ], [ 358979.010799996554852, 257370.084399998188019 ], [ 359029.290700003504753, 257357.566599998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401220700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92486137, "LATITUDE": 18.34566526, "OBJECTID_1": 11785, "PARCEL_NO_": "105401220700", "Tax_Legal_": "HOSPITAL GROUND 262 NEW QTR", "Name": "WILLIAMS, C W & OTHERS", "Address": "PO Box 10475", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4700, "Improved_V": 38200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.143064646799999, "SHAPE_Area": 238.09207694 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359447.969999998807907, 257367.333099998533726 ], [ 359444.512599997222424, 257353.079599998891354 ], [ 359428.068800002336502, 257358.260400000959635 ], [ 359431.082500003278255, 257370.884399998933077 ], [ 359447.969999998807907, 257367.333099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401090600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92821291, "LATITUDE": 18.34567168, "OBJECTID_1": 11512, "PARCEL_NO_": "105401090600", "Tax_Legal_": "HOSPITAL GROUND 199C KINGS QUARTER", "Name": "ALICE BABROW", "Address": "Hospital Ground 199C", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18000, "Improved_V": 121200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.95344063500001, "SHAPE_Area": 625.83650659299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359084.653800003230572, 257367.984600000083447 ], [ 359104.865500003099442, 257360.677499998360872 ], [ 359101.230099998414516, 257345.480599999427795 ], [ 359061.760099999606609, 257360.487900000065565 ], [ 359066.998599998652935, 257374.367600001394749 ], [ 359084.653800003230572, 257367.984600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401220600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92502812, "LATITUDE": 18.3456943, "OBJECTID_1": 11784, "PARCEL_NO_": "105401220600", "Tax_Legal_": "HOSPITAL GROUND 263 KINGS QTR.", "Name": "PICKERING, SR. , E. A. & C. A. -LIFE I", "Address": "PO Box 7518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6400, "Improved_V": 42000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.424204940099997, "SHAPE_Area": 261.48575737499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359431.082500003278255, 257370.884399998933077 ], [ 359428.068800002336502, 257358.260400000959635 ], [ 359410.183600001037121, 257357.846900001168251 ], [ 359413.962899997830391, 257374.484499998390675 ], [ 359431.082500003278255, 257370.884399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401131700", "MAP": "G3-6-T", "PARCEL_NAM": "Section 4 of 8G", "ACRE": ".06", "LONGITUDE": -64.93018321, "LATITUDE": 18.34579454, "OBJECTID_1": 11673, "PARCEL_NO_": "105401131700", "Tax_Legal_": "LYTTONS FANCY 8G-SEC 4 QUEENS QTR", "Name": "PETERSEN, MAUD", "Address": "P.O. BOX 2276", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.9179946796, "SHAPE_Area": 204.82737556399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358882.652999997138977, 257363.152699999511242 ], [ 358875.69709999859333, 257360.119300000369549 ], [ 358869.538599997758865, 257372.8564000017941 ], [ 358869.234600000083447, 257373.49549999833107 ], [ 358868.938900001347065, 257374.138599999248981 ], [ 358868.651600003242493, 257374.785300001502037 ], [ 358868.372599996626377, 257375.4358000010252 ], [ 358868.204199999570847, 257375.839899998158216 ], [ 358868.038999997079372, 257376.245400000363588 ], [ 358867.877099998295307, 257376.652199998497963 ], [ 358867.718500003218651, 257377.060199998319149 ], [ 358866.6503000035882, 257380.0287000015378 ], [ 358878.709100000560284, 257381.973700001835823 ], [ 358879.371299996972084, 257378.94370000064373 ], [ 358882.652999997138977, 257363.152699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93092493, "LATITUDE": 18.34576792, "OBJECTID_1": 11441, "PARCEL_NO_": "105401040200", "Tax_Legal_": "LYTTONS FANCY 8G 1 LITTLE NORTHSIDE", "Name": "HAY, AMALIA C", "Address": "P.O. BOX 2862", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5500, "Improved_V": 25800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.178753183799998, "SHAPE_Area": 331.36888761 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358811.954700000584126, 257362.150400001555681 ], [ 358795.38849999755621, 257356.530900001525879 ], [ 358783.83219999819994, 257378.30629999935627 ], [ 358795.834299996495247, 257379.840900000184774 ], [ 358811.954700000584126, 257362.150400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401131800", "MAP": "D9-3561-T86", "PARCEL_NAM": "8GA", "ACRE": "0.06", "LONGITUDE": -64.93007438, "LATITUDE": 18.34580994, "OBJECTID_1": 11674, "PARCEL_NO_": "105401131800", "Tax_Legal_": "LYTTONS FANCY 8GA GT. NORTHSIDE QTR", "Name": "HAZELL, EVERINE & ORAL", "Address": "P.O. BOX 4283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.344642849700001, "SHAPE_Area": 242.54432938599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358895.071099996566772, 257366.019000001251698 ], [ 358882.652999997138977, 257363.152699999511242 ], [ 358879.371299996972084, 257378.94370000064373 ], [ 358878.709100000560284, 257381.973700001835823 ], [ 358891.544600002467632, 257384.0439000017941 ], [ 358892.241800002753735, 257381.024000000208616 ], [ 358895.071099996566772, 257366.019000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401131200", "MAP": "F9-4052-T73", "PARCEL_NAM": "8GDA-1", "ACRE": "0.16", "LONGITUDE": -64.92976998, "LATITUDE": 18.34580455, "OBJECTID_1": 11669, "PARCEL_NO_": "105401131200", "Tax_Legal_": "8GDA-1 LYTTONS FANCY KINGS QTR", "Name": "8GDA-1 LYTTONS FANCY LLC", "Address": "PO Box 10241", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52300, "Improved_V": 303800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.35553737399999, "SHAPE_Area": 816.11643143799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358935.102300003170967, 257381.12220000103116 ], [ 358933.332999996840954, 257359.948800001293421 ], [ 358926.899400003254414, 257360.005399998277426 ], [ 358921.774400003254414, 257360.050500001758337 ], [ 358903.239000000059605, 257360.213500000536442 ], [ 358903.4087999984622, 257363.563299998641014 ], [ 358903.531900003552437, 257365.991599999368191 ], [ 358904.339400000870228, 257381.9206000007689 ], [ 358904.300899997353554, 257387.125100001692772 ], [ 358904.622699998319149, 257387.115699999034405 ], [ 358936.077899999916553, 257386.317699998617172 ], [ 358935.102300003170967, 257381.12220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401090300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92826606, "LATITUDE": 18.34582688, "OBJECTID_1": 11510, "PARCEL_NO_": "105401090300", "Tax_Legal_": "HOSPITAL GRND 199DA&199D KINGS QTR", "Name": "WILLIAMS, JENNIFER & ALVIN", "Address": "PO Box 10441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 7900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.977982602700003, "SHAPE_Area": 238.36481778500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359077.726499997079372, 257384.954500000923872 ], [ 359080.241800002753735, 257383.929499998688698 ], [ 359082.77139999717474, 257382.940400000661612 ], [ 359085.314800001680851, 257381.987500000745058 ], [ 359087.8716000020504, 257381.070999998599291 ], [ 359088.379100002348423, 257380.900400001555681 ], [ 359084.653800003230572, 257367.984600000083447 ], [ 359066.998599998652935, 257374.367600001394749 ], [ 359069.6824000030756, 257381.478399999439716 ], [ 359069.689599998295307, 257381.497499998658895 ], [ 359070.234899997711182, 257382.586300000548363 ], [ 359070.985699996352196, 257383.545000001788139 ], [ 359071.912000000476837, 257384.335299998521805 ], [ 359072.976899996399879, 257384.925799999386072 ], [ 359074.137999996542931, 257385.29280000180006 ], [ 359075.348800003528595, 257385.421799998730421 ], [ 359076.561099998652935, 257385.307500001043081 ], [ 359077.726499997079372, 257384.954500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401092100", "MAP": null, "PARCEL_NAM": "305A", "ACRE": null, "LONGITUDE": -64.92897382, "LATITUDE": 18.34578341, "OBJECTID_1": 11579, "PARCEL_NO_": "105401092100", "Tax_Legal_": "HOSPITAL GROUND 305A&305B KINGS QTR.", "Name": "CHARLES, MICHEL L", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29100, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.37403794599999, "SHAPE_Area": 777.93667608500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359030.798100002110004, 257369.548099998384714 ], [ 359029.290700003504753, 257357.566599998623133 ], [ 358979.010799996554852, 257370.084399998188019 ], [ 358980.760600000619888, 257388.112700000405312 ], [ 359030.798100002110004, 257369.548099998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401092100", "MAP": null, "PARCEL_NAM": "305B", "ACRE": null, "LONGITUDE": -64.92895382, "LATITUDE": 18.34586107, "OBJECTID_1": 11579, "PARCEL_NO_": "105401092100", "Tax_Legal_": "HOSPITAL GROUND 305A&305B KINGS QTR.", "Name": "CHARLES, MICHEL L", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29100, "Improved_V": 101600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.615136132, "SHAPE_Area": 147.51166500400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359031.127700001001358, 257372.168000001460314 ], [ 359030.798100002110004, 257369.548099998384714 ], [ 358980.760600000619888, 257388.112700000405312 ], [ 358981.055699996650219, 257391.152499999850988 ], [ 359031.127700001001358, 257372.168000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401090500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92859332, "LATITUDE": 18.34576398, "OBJECTID_1": 11511, "PARCEL_NO_": "105401090500", "Tax_Legal_": "HOSPITAL GROUND 307 KINGS QUARTER", "Name": "HAZEL, JACINTH, NORMA & SYLVIA", "Address": "PO Box 12394", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25500, "Improved_V": 93100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.897851624, "SHAPE_Area": 936.305395664 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359061.347599998116493, 257380.974800001829863 ], [ 359047.731799997389317, 257344.899000000208616 ], [ 359029.290700003504753, 257357.566599998623133 ], [ 359030.798100002110004, 257369.548099998384714 ], [ 359031.127700001001358, 257372.168000001460314 ], [ 359033.762800000607967, 257393.114000000059605 ], [ 359061.347599998116493, 257380.974800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401090200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92854506, "LATITUDE": 18.34597183, "OBJECTID_1": 11509, "PARCEL_NO_": "105401090200", "Tax_Legal_": "HOSPITAL GROUND 306, KINGS QTR.", "Name": "JOSEPH AND SUSAN CRANSTON FAMILY TRUST", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8500, "Improved_V": 61500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.248172062999998, "SHAPE_Area": 364.07189884500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359054.545000001788139, 257396.557399999350309 ], [ 359062.737199999392033, 257392.131000000983477 ], [ 359064.139899998903275, 257388.373100001364946 ], [ 359061.347599998116493, 257380.974800001829863 ], [ 359033.762800000607967, 257393.114000000059605 ], [ 359035.338699996471405, 257405.640099998563528 ], [ 359040.229900002479553, 257403.563499998301268 ], [ 359045.063699997961521, 257401.3564000017941 ], [ 359049.836499996483326, 257399.020500000566244 ], [ 359054.545000001788139, 257396.557399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401090100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92892837, "LATITUDE": 18.34602625, "OBJECTID_1": 11508, "PARCEL_NO_": "105401090100", "Tax_Legal_": "HOSPITAL GROUND 304 NEW QUARTER", "Name": "CHARLES, MITCHELL", "Address": "PO Box 10485", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37800, "Improved_V": 131700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.78207660199999, "SHAPE_Area": 1792.7663603599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359033.040600001811981, 257406.563000001013279 ], [ 359033.616200000047684, 257406.33500000089407 ], [ 359034.191100001335144, 257406.105200000107288 ], [ 359034.765299998223782, 257405.873500000685453 ], [ 359035.338699996471405, 257405.640099998563528 ], [ 359033.762800000607967, 257393.114000000059605 ], [ 359031.127700001001358, 257372.168000001460314 ], [ 358981.055699996650219, 257391.152499999850988 ], [ 358984.412600003182888, 257425.73759999871254 ], [ 359033.040600001811981, 257406.563000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102700", "MAP": "D9-8409-T010", "PARCEL_NAM": "CONS REM 100-1", "ACRE": "9.966", "LONGITUDE": -64.92282863, "LATITUDE": 18.34057724, "OBJECTID_1": 12705, "PARCEL_NO_": "105402102700", "Tax_Legal_": "100-1 REM & EASEMENT \"A\" TAARNEBERG KINGS QTR", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 681300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 878.99305476899997, "SHAPE_Area": 30618.525708699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359750.725699998438358, 256773.681200001388788 ], [ 359735.29110000282526, 256677.978799998760223 ], [ 359718.024999998509884, 256685.218699999153614 ], [ 359705.376199997961521, 256668.312399998307228 ], [ 359693.048100002110004, 256651.834800001233816 ], [ 359626.677599996328354, 256677.445599999278784 ], [ 359627.571699999272823, 256685.027899999171495 ], [ 359628.223200000822544, 256692.634799998253584 ], [ 359628.631399996578693, 256700.258699998259544 ], [ 359628.796099998056889, 256707.891699999570847 ], [ 359628.780500002205372, 256712.268800001591444 ], [ 359628.192400000989437, 256722.624099999666214 ], [ 359627.594200000166893, 256731.005300000309944 ], [ 359626.753200002014637, 256739.365699999034405 ], [ 359625.669900000095367, 256747.698100000619888 ], [ 359624.345299996435642, 256755.995600000023842 ], [ 359622.780500002205372, 256764.251200001686811 ], [ 359620.976899996399879, 256772.457899998873472 ], [ 359618.935900002717972, 256780.608800001442432 ], [ 359617.781800001859665, 256784.820900000631809 ], [ 359615.966700002551079, 256791.091699998825788 ], [ 359614.813900001347065, 256794.615499999374151 ], [ 359613.431900002062321, 256798.055900000035763 ], [ 359611.826899997889996, 256801.397999998182058 ], [ 359610.005699999630451, 256804.627500001341105 ], [ 359607.976300001144409, 256807.730200000107288 ], [ 359605.747299998998642, 256810.692899998277426 ], [ 359603.328500002622604, 256813.50279999896884 ], [ 359600.730200000107288, 256816.147599998861551 ], [ 359597.963699996471405, 256818.615899998694658 ], [ 359595.041000001132488, 256820.897100001573563 ], [ 359591.9746999964118, 256822.981300000101328 ], [ 359588.778099998831749, 256824.859499998390675 ], [ 359586.838600002229214, 256825.866700001060963 ], [ 359551.719400003552437, 256843.248199999332428 ], [ 359598.868000000715256, 256945.302499998360872 ], [ 359612.332500003278255, 256974.446800000965595 ], [ 359614.127599999308586, 256973.746100001037121 ], [ 359615.922799997031689, 256973.045400001108646 ], [ 359617.7179000005126, 256972.344700001180172 ], [ 359619.513099998235703, 256971.644099999219179 ], [ 359605.321999996900558, 256941.925700001418591 ], [ 359630.538000002503395, 256930.183100000023842 ], [ 359638.123800002038479, 256926.650600001215935 ], [ 359647.050200000405312, 256922.493700001388788 ], [ 359656.746500000357628, 256917.978300001472235 ], [ 359659.526500001549721, 256916.683699999004602 ], [ 359672.077299997210503, 256910.839000001549721 ], [ 359701.007600001990795, 256897.366700001060963 ], [ 359704.768799997866154, 256827.19649999961257 ], [ 359708.102099999785423, 256819.855500001460314 ], [ 359724.239500001072884, 256768.705299999564886 ], [ 359750.725699998438358, 256773.681200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401602900", "MAP": "G9-656-T62", "PARCEL_NAM": "40CC", "ACRE": "5,000 sq ft", "LONGITUDE": -64.9255906, "LATITUDE": 18.33984059, "OBJECTID_1": 12443, "PARCEL_NO_": "105401602900", "Tax_Legal_": "TAARNEBERG 40CC KINGS QTR", "Name": "FENNEL, ROSALIA", "Address": "123-25 82nd Ave", "City": "Kew Gardens", "State": "New York", "Zip": 11415, "Country": "United States", "Land_Value": 15400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.00567501800001, "SHAPE_Area": 599.16947400100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359358.960400000214577, 256697.671300001442432 ], [ 359355.472300000488758, 256712.498399998992682 ], [ 359356.023900002241135, 256721.829500000923872 ], [ 359363.275399997830391, 256722.522199999541044 ], [ 359361.118600003421307, 256738.380899999290705 ], [ 359372.130300000309944, 256738.605200000107288 ], [ 359374.196599997580051, 256723.56529999896884 ], [ 359376.915799997746944, 256703.772999998182058 ], [ 359358.960400000214577, 256697.671300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401460900", "MAP": null, "PARCEL_NAM": "1 FORTETS STRAEDE", "ACRE": "20,525 sq ft", "LONGITUDE": -64.92945136, "LATITUDE": 18.34053717, "OBJECTID_1": 12132, "PARCEL_NO_": "105401460900", "Tax_Legal_": "FORTETS STAEDE 1 KINGS QTR", "Name": "VIRIN ISLANDS GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 615800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 454.88597098399998, "SHAPE_Area": 3169.3080881000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358967.285499997437, 256827.022100001573563 ], [ 358990.311200000345707, 256825.610300000756979 ], [ 358990.302699998021126, 256804.111900001764297 ], [ 359009.067100003361702, 256802.771299999207258 ], [ 359006.686099998652935, 256781.197399999946356 ], [ 359006.353100001811981, 256781.118099998682737 ], [ 359006.020199999213219, 256781.038199998438358 ], [ 359005.6875, 256780.957600001245737 ], [ 359005.354999996721745, 256780.876299999654293 ], [ 358962.849399998784065, 256770.450699999928474 ], [ 358960.6199000030756, 256769.947999998927116 ], [ 358958.373199999332428, 256769.529199998825788 ], [ 358956.112300001084805, 256769.194899998605251 ], [ 358953.840400002896786, 256768.945599999278784 ], [ 358953.065700002014637, 256768.880199998617172 ], [ 358952.290200002491474, 256768.824700001627207 ], [ 358951.513999998569489, 256768.779199998825788 ], [ 358950.737400002777576, 256768.743500001728535 ], [ 358946.892099998891354, 256768.469399999827147 ], [ 358943.071900002658367, 256767.952799998223782 ], [ 358939.292000003159046, 256767.195799998939037 ], [ 358935.567500002682209, 256766.201400000602007 ], [ 358931.91330000013113, 256764.973499998450279 ], [ 358931.069700002670288, 256764.652899999171495 ], [ 358926.577299997210503, 256762.989599999040365 ], [ 358920.835100002586842, 256761.096400000154972 ], [ 358915.021300002932549, 256759.436299998313189 ], [ 358909.145199999213219, 256758.011999998241663 ], [ 358903.216499999165535, 256756.825699999928474 ], [ 358902.546499997377396, 256756.715799998492002 ], [ 358900.197200000286102, 256756.489700000733137 ], [ 358897.836999997496605, 256756.506900001317263 ], [ 358895.491300001740456, 256756.767499998211861 ], [ 358893.184900000691414, 256757.268500000238419 ], [ 358890.942400000989437, 256758.004599999636412 ], [ 358888.787799999117851, 256758.967999998480082 ], [ 358886.744000002741814, 256760.148499999195337 ], [ 358884.832900002598763, 256761.533399999141693 ], [ 358884.29559999704361, 256762.093600001186132 ], [ 358883.917300000786781, 256762.77140000090003 ], [ 358883.722499996423721, 256763.522799998521805 ], [ 358883.723800003528595, 256764.299100000411272 ], [ 358888.587300002574921, 256801.686799999326468 ], [ 358896.212600000202656, 256800.071299999952316 ], [ 358892.121100001037121, 256773.203600000590086 ], [ 358901.008599996566772, 256771.165399998426437 ], [ 358901.985799998044968, 256779.692800000309944 ], [ 358907.209700003266335, 256779.389899998903275 ], [ 358905.278999999165535, 256762.119899999350309 ], [ 358922.401100002229214, 256767.846599999815226 ], [ 358921.555200003087521, 256772.483800001442432 ], [ 358939.704300001263618, 256775.193799998611212 ], [ 358939.899999998509884, 256771.951099999248981 ], [ 358946.198600001633167, 256770.086899999529123 ], [ 358953.796899996697903, 256771.08729999884963 ], [ 358954.019400000572205, 256772.41499999910593 ], [ 358956.546899996697903, 256821.398899998515844 ], [ 358955.198299996554852, 256827.763199999928474 ], [ 358967.285499997437, 256827.022100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401580300", "MAP": null, "PARCEL_NAM": "36B NORRE GADE", "ACRE": null, "LONGITUDE": -64.92848823, "LATITUDE": 18.34077912, "OBJECTID_1": 12389, "PARCEL_NO_": "105401580300", "Tax_Legal_": "NORRE GADE 36B KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 654900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 407.543722796, "SHAPE_Area": 3538.19573107 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359080.458200000226498, 256893.400400001555681 ], [ 359079.064499996602535, 256872.939100001007318 ], [ 359074.424300000071526, 256804.818300001323223 ], [ 359096.3445999994874, 256802.808899998664856 ], [ 359110.527699999511242, 256801.508799999952316 ], [ 359110.521600000560284, 256801.489100001752377 ], [ 359109.781599998474121, 256799.512299999594688 ], [ 359108.81870000064373, 256797.633799999952316 ], [ 359107.64580000191927, 256795.878899998962879 ], [ 359106.278399996459484, 256794.270799998193979 ], [ 359104.734899997711182, 256792.830899998545647 ], [ 359103.035800002515316, 256791.578499998897314 ], [ 359101.203599996864796, 256790.530200000852346 ], [ 359099.262900002300739, 256789.700100000947714 ], [ 359097.239399999380112, 256789.09910000115633 ], [ 359095.160099998116493, 256788.735300000756979 ], [ 359093.052799999713898, 256788.613400001078844 ], [ 359071.747599996626377, 256788.613400001078844 ], [ 359068.913000002503395, 256788.579199999570847 ], [ 359066.080099999904633, 256788.476500000804663 ], [ 359063.250500001013279, 256788.305399999022484 ], [ 359060.425899997353554, 256788.065999999642372 ], [ 359030.627700001001358, 256785.177600000053644 ], [ 359025.755800001323223, 256784.637699998915195 ], [ 359020.900600001215935, 256783.964000001549721 ], [ 359016.065800003707409, 256783.157200001180172 ], [ 359011.254900000989437, 256782.217799998819828 ], [ 359014.418399997055531, 256810.318999998271465 ], [ 359031.082699999213219, 256808.791400000452995 ], [ 359047.747000001370907, 256807.263799998909235 ], [ 359051.542199999094009, 256862.980399999767542 ], [ 359070.369300000369549, 256861.502199999988079 ], [ 359071.480200000107288, 256877.811900001019239 ], [ 359072.5912000015378, 256894.121599998325109 ], [ 359080.458200000226498, 256893.400400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402080400", "MAP": "C9-212-T76", "PARCEL_NAM": "1A MADAMBERG", "ACRE": ".07", "LONGITUDE": -64.92325551, "LATITUDE": 18.34338013, "OBJECTID_1": 12552, "PARCEL_NO_": "105402080400", "Tax_Legal_": "MADAMBERG 1A KINGS QUARTER", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 169100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.840345173200006, "SHAPE_Area": 410.63998166900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359599.427500002086163, 257100.06810000166297 ], [ 359600.545999996364117, 257121.693599998950958 ], [ 359608.912900000810623, 257121.007800001651049 ], [ 359621.112499997019768, 257120.00789999961853 ], [ 359619.662799999117851, 257101.853399999439716 ], [ 359617.606899999082088, 257101.558699999004602 ], [ 359616.389799997210503, 257101.346999999135733 ], [ 359614.25110000371933, 257101.002999998629093 ], [ 359612.88849999755621, 257100.870700001716614 ], [ 359611.459700003266335, 257100.7516999989748 ], [ 359610.467500001192093, 257100.698800001293421 ], [ 359609.845799997448921, 257100.659099999815226 ], [ 359607.834899999201298, 257100.473900001496077 ], [ 359606.842699997127056, 257100.420899998396635 ], [ 359605.480099998414516, 257100.354800000786781 ], [ 359604.461499996483326, 257100.275400001555681 ], [ 359603.535400003194809, 257100.196100000292063 ], [ 359602.490299999713898, 257100.143100000917912 ], [ 359601.273199997842312, 257100.129900000989437 ], [ 359600.281099997460842, 257100.063799999654293 ], [ 359599.447599999606609, 257100.063799999654293 ], [ 359599.427500002086163, 257100.06810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105402070100", "MAP": "D3-327-T75", "PARCEL_NAM": "300", "ACRE": null, "LONGITUDE": -64.92346455000001, "LATITUDE": 18.34357144, "OBJECTID_1": 12546, "PARCEL_NO_": "105402070100", "Tax_Legal_": "HOSPITAL GROUND 300 GR NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 274700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.49145939700003, "SHAPE_Area": 1701.8063475399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359647.957299999892712, 257135.665300000458956 ], [ 359644.352700002491474, 257118.103100001811981 ], [ 359625.844300001859665, 257119.620099999010563 ], [ 359621.112499997019768, 257120.00789999961853 ], [ 359621.258699998259544, 257124.723000001162291 ], [ 359609.708999998867512, 257126.066799998283386 ], [ 359596.569600000977516, 257127.0287000015378 ], [ 359573.707999996840954, 257128.702399998903275 ], [ 359572.917300000786781, 257123.958099998533726 ], [ 359548.288999997079372, 257125.976700000464916 ], [ 359526.905900001525879, 257127.729299999773502 ], [ 359529.419699996709824, 257142.605099998414516 ], [ 359563.911499999463558, 257140.585799999535084 ], [ 359647.957299999892712, 257135.665300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105402082300", "MAP": "D3-327-T75", "PARCEL_NAM": "354", "ACRE": null, "LONGITUDE": -64.92324641, "LATITUDE": 18.34349321, "OBJECTID_1": 12570, "PARCEL_NO_": "105402082300", "Tax_Legal_": "HOSPITAL GORUND 354 KINGS QTR", "Name": "WALLACE, DARRYL", "Address": "2222 Austin Lake Dr", "City": "Smyrna", "State": "Georgia", "Zip": 30082, "Country": "United States", "Land_Value": 2200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.186510127600002, "SHAPE_Area": 103.103517246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359600.381700001657009, 257121.706999998539686 ], [ 359600.721100002527237, 257126.724800001829863 ], [ 359609.708999998867512, 257126.066799998283386 ], [ 359621.258699998259544, 257124.723000001162291 ], [ 359621.112499997019768, 257120.00789999961853 ], [ 359608.912900000810623, 257121.007800001651049 ], [ 359600.381700001657009, 257121.706999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094700", "MAP": "D9-8881-T014", "PARCEL_NAM": "B-5 REM", "ACRE": "1.12", "LONGITUDE": -64.92005477, "LATITUDE": 18.34756414, "OBJECTID_1": 12635, "PARCEL_NO_": "105402094700", "Tax_Legal_": "ROSS B-5 # 8 NEW QRT", "Name": "CHINNERY, R.A., SR., NIBBS, Y., D., J.E., SR. & OTHERS", "Address": "PO Box 507", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 166400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.74983883900001, "SHAPE_Area": 3175.5938826199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359993.660899996757507, 257571.658100001513958 ], [ 359978.196299999952316, 257550.921799998730421 ], [ 359906.273000001907349, 257562.806800000369549 ], [ 359905.560000002384186, 257572.957600001245737 ], [ 359903.799400001764297, 257598.022799998521805 ], [ 359945.510099999606609, 257603.330200001597404 ], [ 359993.660899996757507, 257571.658100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402093400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92094983, "LATITUDE": 18.34754474, "OBJECTID_1": 12623, "PARCEL_NO_": "105402093400", "Tax_Legal_": "ROSS C-50 KINGS QUARTER", "Name": "LEWIS, RAMONA", "Address": "7204 Bovoni Homes", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.95062824199999, "SHAPE_Area": 1469.6667421499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359821.44820000231266, 257578.270899999886751 ], [ 359826.163699999451637, 257592.663899999111891 ], [ 359839.898000001907349, 257589.609900001436472 ], [ 359847.955799996852875, 257590.309099998325109 ], [ 359850.313000001013279, 257590.998599998652935 ], [ 359874.187100000679493, 257586.451099999248981 ], [ 359873.034199997782707, 257580.804099999368191 ], [ 359865.239000000059605, 257549.287300001829863 ], [ 359845.846100002527237, 257553.98369999974966 ], [ 359844.202899999916553, 257557.558899998664856 ], [ 359821.44820000231266, 257578.270899999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402093300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92059482000001, "LATITUDE": 18.34744881, "OBJECTID_1": 12622, "PARCEL_NO_": "105402093300", "Tax_Legal_": "ROSS C-49 NEW QTR.", "Name": "THIBOU, SHURLA", "Address": "1905 Lakeway Dr", "City": "Bellingham", "State": "Washington", "Zip": 98229, "Country": "United States", "Land_Value": 28500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.955039016, "SHAPE_Area": 1397.2708326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359873.034199997782707, 257580.804099999368191 ], [ 359874.187100000679493, 257586.451099999248981 ], [ 359905.024800002574921, 257580.577300000935793 ], [ 359905.560000002384186, 257572.957600001245737 ], [ 359906.273000001907349, 257562.806800000369549 ], [ 359904.690700002014637, 257556.365200001746416 ], [ 359903.212999999523163, 257540.521099999547005 ], [ 359865.239000000059605, 257549.287300001829863 ], [ 359873.034199997782707, 257580.804099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402093000", "MAP": "D9-5306-T92", "PARCEL_NAM": "C-45", "ACRE": ".34", "LONGITUDE": -64.92065979, "LATITUDE": 18.34781769, "OBJECTID_1": 12619, "PARCEL_NO_": "105402093000", "Tax_Legal_": "ROSS ESTATE C-45 KINGS QUARTER", "Name": "FRANCIS, CECIL L. & GLENDORA", "Address": "171 Echo Pl", "City": "Bronx", "State": "New York", "Zip": 10453, "Country": "United States", "Land_Value": 38400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.08183154700001, "SHAPE_Area": 1758.4365977800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359901.070600003004074, 257620.782800000160933 ], [ 359903.227300003170967, 257606.166900001466274 ], [ 359905.024800002574921, 257580.577300000935793 ], [ 359850.313000001013279, 257590.998599998652935 ], [ 359857.60809999704361, 257593.13230000063777 ], [ 359861.596500001847744, 257598.231199998408556 ], [ 359860.741700001060963, 257603.923700001090765 ], [ 359859.093099996447563, 257608.132100000977516 ], [ 359853.384199999272823, 257615.684799998998642 ], [ 359852.719499997794628, 257616.962900001555681 ], [ 359848.256800003349781, 257625.544900000095367 ], [ 359865.570299997925758, 257623.983800001442432 ], [ 359901.070600003004074, 257620.782800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": null, "PARCEL_NAM": "D", "ACRE": null, "LONGITUDE": -64.92065643, "LATITUDE": 18.34298908, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.366936144299999, "SHAPE_Area": 203.18379517299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359868.270499996840954, 257080.646499998867512 ], [ 359889.420000001788139, 257078.095800001174212 ], [ 359891.130000002682209, 257071.011100001633167 ], [ 359893.267200000584126, 257054.430500000715256 ], [ 359884.745099999010563, 257054.921799998730421 ], [ 359885.706000000238419, 257056.47580000013113 ], [ 359886.45160000026226, 257058.143899999558926 ], [ 359886.968699999153614, 257059.89640000090003 ], [ 359887.248099997639656, 257061.701999999582767 ], [ 359887.28490000218153, 257063.5287000015378 ], [ 359887.078299999237061, 257065.344200000166893 ], [ 359886.632200002670288, 257067.11600000038743 ], [ 359885.954300001263618, 257068.812699999660254 ], [ 359885.056800000369549, 257070.404199998825788 ], [ 359883.95549999922514, 257071.862199999392033 ], [ 359882.670100003480911, 257073.160700000822544 ], [ 359881.223399996757507, 257074.276700001209974 ], [ 359879.641199998557568, 257075.190400000661612 ], [ 359877.951399996876717, 257075.885499998927116 ], [ 359876.184199996292591, 257076.349700000137091 ], [ 359874.851400002837181, 257076.538899999111891 ], [ 359867.970499999821186, 257077.47859999909997 ], [ 359867.382299996912479, 257077.537999998778105 ], [ 359868.270499996840954, 257080.646499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099200", "MAP": "D9-6973-T001", "PARCEL_NAM": "D-13", "ACRE": "0.30", "LONGITUDE": -64.92097997, "LATITUDE": 18.34461582, "OBJECTID_1": 12677, "PARCEL_NO_": "105402099200", "Tax_Legal_": "D-13 ROSS NO. 8 NEW QUARTER", "Name": "CAMPBELL, LaASIA M. & LAVELLE M.", "Address": "PO Box 10738", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.62958122200001, "SHAPE_Area": 2179.26625767 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359815.792700000107288, 257273.577799998223782 ], [ 359878.196000002324581, 257268.710700001567602 ], [ 359870.503600001335144, 257225.543400000780821 ], [ 359839.062200002372265, 257227.809399999678135 ], [ 359833.144199997186661, 257224.544300001114607 ], [ 359830.69539999961853, 257224.952399998903275 ], [ 359827.430299997329712, 257227.197200000286102 ], [ 359826.001900002360344, 257229.0337999984622 ], [ 359818.859499998390675, 257226.380899999290705 ], [ 359834.776799999177456, 257255.970800001174212 ], [ 359813.333400003612041, 257270.206399999558926 ], [ 359814.574000000953674, 257272.092199999839067 ], [ 359815.792700000107288, 257273.577799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402095100", "MAP": "D9-6973-T001", "PARCEL_NAM": "D-1", "ACRE": ".39", "LONGITUDE": -64.92139689, "LATITUDE": 18.3445229, "OBJECTID_1": 12639, "PARCEL_NO_": "105402095100", "Tax_Legal_": "D-1 ESTATE ROSS #8 NEW QTR", "Name": "SBA TOWERS USVI II INC", "Address": "8051 Congress Ave", "City": "Boca Raton", "State": "Florida", "Zip": 33487, "Country": "United States", "Land_Value": 127400, "Improved_V": 161700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.57690074600001, "SHAPE_Area": 1855.7732271 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359813.333400003612041, 257270.206399999558926 ], [ 359834.776799999177456, 257255.970800001174212 ], [ 359818.859499998390675, 257226.380899999290705 ], [ 359821.10419999808073, 257220.258900001645088 ], [ 359810.492700003087521, 257216.789700001478195 ], [ 359798.04450000077486, 257215.769400000572205 ], [ 359784.167900003492832, 257218.01410000026226 ], [ 359775.392899997532368, 257221.279199998825788 ], [ 359773.55629999935627, 257224.544300001114607 ], [ 359773.760399997234344, 257228.0135000012815 ], [ 359775.188900001347065, 257232.094799999147654 ], [ 359778.657999999821186, 257234.951799999922514 ], [ 359809.472300000488758, 257264.337600000202656 ], [ 359813.333400003612041, 257270.206399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099300", "MAP": "D9-6973-T001", "PARCEL_NAM": "D-2", "ACRE": "0.40", "LONGITUDE": -64.92100353, "LATITUDE": 18.3441921, "OBJECTID_1": 12678, "PARCEL_NO_": "105402099300", "Tax_Legal_": "D-2 ROSS No. 8 NEW QUARTER", "Name": "WADE, SHARON", "Address": "PO Box 91", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 55800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.135888988, "SHAPE_Area": 1704.8726964299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359827.654500000178814, 257177.683600001037121 ], [ 359823.456399999558926, 257210.544199999421835 ], [ 359825.389700002968311, 257211.075800001621246 ], [ 359838.041900001466274, 257215.973400000482798 ], [ 359842.939499996602535, 257219.442600000649691 ], [ 359839.062200002372265, 257227.809399999678135 ], [ 359870.503600001335144, 257225.543400000780821 ], [ 359864.122800000011921, 257189.736400000751019 ], [ 359864.616700001060963, 257183.923900000751019 ], [ 359827.654500000178814, 257177.683600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-7190-T003", "PARCEL_NAM": "D14", "ACRE": ".27", "LONGITUDE": -64.92137061, "LATITUDE": 18.34409878, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.16124874499999, "SHAPE_Area": 1008.39949032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359827.654500000178814, 257177.683600001037121 ], [ 359826.001900002360344, 257177.404599998146296 ], [ 359792.014799997210503, 257180.276700001209974 ], [ 359786.826899997889996, 257181.218800000846386 ], [ 359782.450499996542931, 257182.013599999248981 ], [ 359798.452600002288818, 257206.178199999034405 ], [ 359800.248999997973442, 257206.247299998998642 ], [ 359809.0641999989748, 257206.586300000548363 ], [ 359823.456399999558926, 257210.544199999421835 ], [ 359827.654500000178814, 257177.683600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402098600", "MAP": "D9-6972-T001", "PARCEL_NAM": "C-58", "ACRE": ".408", "LONGITUDE": -64.92111374, "LATITUDE": 18.34541975, "OBJECTID_1": 12671, "PARCEL_NO_": "105402098600", "Tax_Legal_": "C-58 ESTATE ROSS #8 NEW QTR.", "Name": "ANSELM, EDWARD G. &SHERLY", "Address": "PO Box 8152", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.467494776, "SHAPE_Area": 1396.9575664900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359827.215000003576279, 257285.80629999935627 ], [ 359821.535899996757507, 257280.514899998903275 ], [ 359823.780299998819828, 257283.115299999713898 ], [ 359827.850000001490116, 257289.457600001245737 ], [ 359828.28320000320673, 257298.444899998605251 ], [ 359829.913699999451637, 257313.746399998664856 ], [ 359831.183700002729893, 257324.223900001496077 ], [ 359831.81870000064373, 257334.22520000115037 ], [ 359831.501199997961521, 257341.210200000554323 ], [ 359829.755000002682209, 257345.655200000852346 ], [ 359827.532499998807907, 257348.988899998366833 ], [ 359825.786200001835823, 257351.370200000703335 ], [ 359822.611199997365475, 257355.339000001549721 ], [ 359819.118699997663498, 257358.672699999064207 ], [ 359805.995300002396107, 257367.043499998748302 ], [ 359831.247599996626377, 257376.779599998146296 ], [ 359832.880699999630451, 257372.1261 ], [ 359848.68860000371933, 257339.506000000983477 ], [ 359854.724600002169609, 257329.089600000530481 ], [ 359827.215000003576279, 257285.80629999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404040300", "MAP": "D9-7432-T004", "PARCEL_NAM": "1A REM", "ACRE": ".785", "LONGITUDE": -64.92071592000001, "LATITUDE": 18.33926169, "OBJECTID_1": 19334, "PARCEL_NO_": "105404040300", "Tax_Legal_": "1A REM.ESTATE THOMAS No.6 NEW QTR.", "Name": "VI HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 842900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 313.01252002899997, "SHAPE_Area": 3102.4399725399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359854.58389999717474, 256632.447200000286102 ], [ 359861.375200003385544, 256685.529199998825788 ], [ 359862.731499999761581, 256699.585400000214577 ], [ 359896.297100000083447, 256672.675999999046326 ], [ 359910.656499996781349, 256689.62779999896884 ], [ 359911.824500001966953, 256688.693599998950958 ], [ 359925.081200003623962, 256677.327399998903275 ], [ 359859.841600000858307, 256593.472100000828505 ], [ 359875.435099996626377, 256613.835499998182058 ], [ 359856.414300002157688, 256625.978500001132488 ], [ 359854.58389999717474, 256632.447200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402111000", "MAP": "D9-639-T67", "PARCEL_NAM": "1 REM", "ACRE": null, "LONGITUDE": -64.92099208, "LATITUDE": 18.34000215, "OBJECTID_1": 19210, "PARCEL_NO_": "105402111000", "Tax_Legal_": "8Ad REM & 1 ROSS NO.8 NEW QTR", "Name": "JOHN M LYNCH SR TRUST & ERNA M. LYNCH TRUST", "Address": "PO Box 1523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.320904257, "SHAPE_Area": 467.68926208400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359851.329800002276897, 256731.779899999499321 ], [ 359824.497000001370907, 256748.42509999871254 ], [ 359867.120099999010563, 256745.068199999630451 ], [ 359865.483199998736382, 256728.103999998420477 ], [ 359865.273100003600121, 256725.926699999719858 ], [ 359865.018500000238419, 256723.288400001823902 ], [ 359851.329800002276897, 256731.779899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402112700", "MAP": "D9-8251-T009", "PARCEL_NAM": "8AD-1", "ACRE": ".03", "LONGITUDE": -64.92109478, "LATITUDE": 18.33962597, "OBJECTID_1": 19215, "PARCEL_NO_": "105402112700", "Tax_Legal_": "8AD-1 ESTATE ROSS NO.8 NEW QTR", "Name": "ROSS ESTATES LIMITED PARTNERSHIP", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.0000151558, "SHAPE_Area": 123.856806288 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359821.794200003147125, 256708.878899998962879 ], [ 359861.670000001788139, 256688.584100000560284 ], [ 359861.375200003385544, 256685.529199998825788 ], [ 359820.898000001907349, 256706.377999998629093 ], [ 359821.794200003147125, 256708.878899998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402111000", "MAP": "C9-175-T74", "PARCEL_NAM": "8Ad", "ACRE": "18,249 sq ft", "LONGITUDE": -64.92107397, "LATITUDE": 18.33980546, "OBJECTID_1": 19210, "PARCEL_NO_": "105402111000", "Tax_Legal_": "8Ad REM & 1 ROSS NO.8 NEW QTR", "Name": "JOHN M LYNCH SR TRUST & ERNA M. LYNCH TRUST", "Address": "PO Box 1523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 67400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.39956901, "SHAPE_Area": 1491.55110577 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359861.670000001788139, 256688.584100000560284 ], [ 359821.794200003147125, 256708.878899998962879 ], [ 359822.326999999582767, 256710.365899998694658 ], [ 359823.524300001561642, 256714.429400000721216 ], [ 359824.485799998044968, 256718.554999999701977 ], [ 359825.208499997854233, 256722.729100000113249 ], [ 359825.689800001680851, 256726.937899999320507 ], [ 359825.928099997341633, 256731.167300000786781 ], [ 359825.922799997031689, 256735.403499998152256 ], [ 359825.770400002598763, 256738.418200001120567 ], [ 359825.688500002026558, 256739.462900001555681 ], [ 359825.591899998486042, 256740.506400000303984 ], [ 359825.48030000180006, 256741.54839999973774 ], [ 359825.354000002145767, 256742.588599998503923 ], [ 359824.497000001370907, 256748.42509999871254 ], [ 359851.329800002276897, 256731.779899999499321 ], [ 359865.018500000238419, 256723.288400001823902 ], [ 359862.731499999761581, 256699.585400000214577 ], [ 359861.670000001788139, 256688.584100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251700", "MAP": "D9-7588-T005", "PARCEL_NAM": "22-1W", "ACRE": null, "LONGITUDE": -64.92506448, "LATITUDE": 18.34401622, "OBJECTID_1": 11838, "PARCEL_NO_": "105401251700", "Tax_Legal_": "HOSPITAL GROUND W POR OF 22-1 KINGS QTR", "Name": "RICHARDS, ALTHEA", "Address": "PO Box 8094", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3200, "Improved_V": 97800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.081692847399999, "SHAPE_Area": 182.85459357900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359407.657200001180172, 257176.267499998211861 ], [ 359409.886799998581409, 257185.646699998527765 ], [ 359428.0641999989748, 257183.337000001221895 ], [ 359426.859999999403954, 257174.6886 ], [ 359426.70160000026226, 257173.550999999046326 ], [ 359407.657200001180172, 257176.267499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251400", "MAP": null, "PARCEL_NAM": "23", "ACRE": null, "LONGITUDE": -64.92504158, "LATITUDE": 18.34412294, "OBJECTID_1": 11835, "PARCEL_NO_": "105401251400", "Tax_Legal_": "23 HOSPITAL GROUND NEW QTR", "Name": "ABAD, LUIS & JOAQUINA PILLIER", "Address": "TORVE GADE #6", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 174800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.498122903499997, "SHAPE_Area": 204.38025300800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359428.212200000882149, 257184.399599999189377 ], [ 359410.262999996542931, 257187.309300001710653 ], [ 359412.968199998140335, 257198.184399999678135 ], [ 359429.880900003015995, 257196.383799999952316 ], [ 359428.212200000882149, 257184.399599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401251000", "MAP": "F9-1069-T63", "PARCEL_NAM": "24A", "ACRE": null, "LONGITUDE": -64.9248865, "LATITUDE": 18.34421132, "OBJECTID_1": 11831, "PARCEL_NO_": "105401251000", "Tax_Legal_": "HOSPITAL GROUND 24A KINGS QTR", "Name": "HARRIGAN, DEBORAH", "Address": "81 White House Ave", "City": "Roosevelt", "State": "New York", "Zip": 11575, "Country": "United States", "Land_Value": 6200, "Improved_V": 58300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.31570971399999, "SHAPE_Area": 298.992621896 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359446.997699998319149, 257206.680900000035763 ], [ 359447.894299998879433, 257211.164000000804663 ], [ 359451.014499999582767, 257210.799600001424551 ], [ 359447.141500003635883, 257194.045800000429153 ], [ 359429.880900003015995, 257196.383799999952316 ], [ 359412.968199998140335, 257198.184399999678135 ], [ 359413.457400001585484, 257200.942299999296665 ], [ 359428.377599999308586, 257199.146000001579523 ], [ 359429.199600003659725, 257208.381700001657009 ], [ 359446.997699998319149, 257206.680900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401250900", "MAP": "D9-7758-T006", "PARCEL_NAM": "24& 25 COMBINED", "ACRE": ".18", "LONGITUDE": -64.92492521, "LATITUDE": 18.3443424, "OBJECTID_1": 11830, "PARCEL_NO_": "105401250900", "Tax_Legal_": "HOSPITAL GROUND 24 NEW QUARTER", "Name": "WILLIAMS, IRENE", "Address": "PO Box 7458", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6700, "Improved_V": 200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.256102234, "SHAPE_Area": 810.21062090800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359454.452899999916553, 257225.673200000077486 ], [ 359451.476899996399879, 257212.799800001084805 ], [ 359451.014499999582767, 257210.799600001424551 ], [ 359447.894299998879433, 257211.164000000804663 ], [ 359446.997699998319149, 257206.680900000035763 ], [ 359429.199600003659725, 257208.381700001657009 ], [ 359428.377599999308586, 257199.146000001579523 ], [ 359413.457400001585484, 257200.942299999296665 ], [ 359420.193000003695488, 257229.760400000959635 ], [ 359454.452899999916553, 257225.673200000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401200400", "MAP": "D9-7966-T007", "PARCEL_NAM": "107", "ACRE": ".08", "LONGITUDE": -64.92757208, "LATITUDE": 18.34453586, "OBJECTID_1": 11761, "PARCEL_NO_": "105401200400", "Tax_Legal_": "HOSPITAL GROUND 1O7 NEW QUARTER", "Name": "ALLEN, SR. (TRUSTEE), RANDOLPH", "Address": "PO Box 304313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.266038323499998, "SHAPE_Area": 230.01902760499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359148.596400000154972, 257224.748599998652935 ], [ 359148.819799996912479, 257235.434300001710653 ], [ 359146.631999999284744, 257235.396999999880791 ], [ 359146.575099997222424, 257237.75 ], [ 359147.258000001311302, 257248.634199999272823 ], [ 359155.810400001704693, 257247.348600000143051 ], [ 359155.550300002098083, 257239.576299998909235 ], [ 359155.943899996578693, 257236.147900000214577 ], [ 359156.786700002849102, 257233.0608000010252 ], [ 359161.315399996936321, 257221.941899999976158 ], [ 359154.17509999871254, 257223.11769999936223 ], [ 359148.596400000154972, 257224.748599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401200300", "MAP": "D3-70-T44", "PARCEL_NAM": "111", "ACRE": null, "LONGITUDE": -64.9276734, "LATITUDE": 18.34460467, "OBJECTID_1": 11760, "PARCEL_NO_": "105401200300", "Tax_Legal_": "HOSPITAL GROUND 111 NEW QUARTER", "Name": "LESPIERRE, EDITH", "Address": "PO Box 962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.2591521294, "SHAPE_Area": 139.32197454600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359146.631999999284744, 257235.396999999880791 ], [ 359137.202600002288818, 257235.236200001090765 ], [ 359137.141699999570847, 257237.417700000107288 ], [ 359136.784699998795986, 257250.208500001579523 ], [ 359144.204599998891354, 257249.093199998140335 ], [ 359147.258000001311302, 257248.634199999272823 ], [ 359146.575099997222424, 257237.75 ], [ 359146.631999999284744, 257235.396999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401200600", "MAP": "D3-70-T44", "PARCEL_NAM": "112", "ACRE": null, "LONGITUDE": -64.92766548, "LATITUDE": 18.3444944, "OBJECTID_1": 11763, "PARCEL_NO_": "105401200600", "Tax_Legal_": "HOSPITAL GROUND 112 NEW QUARTER", "Name": "HENDRICKS, MALVINA", "Address": "1789 Randall Ave", "City": "Bronx", "State": "New York", "Zip": 10473, "Country": "United States", "Land_Value": 3200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.526991282200001, "SHAPE_Area": 119.247945075 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359146.631999999284744, 257235.396999999880791 ], [ 359148.819799996912479, 257235.434300001710653 ], [ 359148.596400000154972, 257224.748599998652935 ], [ 359146.338699996471405, 257225.408700000494719 ], [ 359136.178099997341633, 257225.584699999541044 ], [ 359137.202600002288818, 257235.236200001090765 ], [ 359146.631999999284744, 257235.396999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401200500", "MAP": "D9-7966-T007", "PARCEL_NAM": "108", "ACRE": ".07", "LONGITUDE": -64.92742555, "LATITUDE": 18.34455164, "OBJECTID_1": 11762, "PARCEL_NO_": "105401200500", "Tax_Legal_": "HOSPITAL GROUND 1O8 NEW QUARTER", "Name": "ALLEN, SR. (TRUSTEE), RANDOLPH", "Address": "PO Box 304313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 8300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.363027183900002, "SHAPE_Area": 343.31122413399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359176.517800003290176, 257231.550000000745058 ], [ 359175.227099999785423, 257226.100400000810623 ], [ 359161.617700003087521, 257227.664000000804663 ], [ 359159.100400000810623, 257233.8445999994874 ], [ 359158.696000002324581, 257235.325899999588728 ], [ 359158.345200002193451, 257236.610700000077486 ], [ 359157.993400000035763, 257239.67509999871254 ], [ 359158.227099999785423, 257247.00620000064373 ], [ 359179.43639999628067, 257243.873100001364946 ], [ 359176.517800003290176, 257231.550000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401261400", "MAP": "D9-8295-T009", "PARCEL_NAM": "8-A REM", "ACRE": ".08", "LONGITUDE": -64.9242438, "LATITUDE": 18.34447149, "OBJECTID_1": 11865, "PARCEL_NO_": "105401261400", "Tax_Legal_": "8 REM HOSPITAL GROUND KING'S QTR", "Name": "JACKSON, GERTRUDIS P", "Address": "PO Box 9172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.975730651800006, "SHAPE_Area": 360.03054228799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359516.579300001263618, 257236.522399999201298 ], [ 359514.260099999606609, 257221.791999999433756 ], [ 359491.545999996364117, 257223.920499999076128 ], [ 359494.884700000286102, 257238.87950000166893 ], [ 359495.151199996471405, 257239.651599999517202 ], [ 359516.768700003623962, 257237.93019999936223 ], [ 359516.579300001263618, 257236.522399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401210400", "MAP": "A9-768-T012", "PARCEL_NAM": "A-8", "ACRE": ".10", "LONGITUDE": -64.92671022, "LATITUDE": 18.347057, "OBJECTID_1": 11776, "PARCEL_NO_": "105401210400", "Tax_Legal_": "HOSPITAL GROUND PCL A-8 KINGS QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.966915564700003, "SHAPE_Area": 302.19658112299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359252.487199999392033, 257513.455099999904633 ], [ 359246.983800001442432, 257502.236699998378754 ], [ 359226.028800003230572, 257517.688400000333786 ], [ 359244.232199996709824, 257525.520100001245737 ], [ 359252.487199999392033, 257513.455099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401210200", "MAP": "A9-768-T012", "PARCEL_NAM": "A-1", "ACRE": "3,955 sq ft", "LONGITUDE": -64.92575003, "LATITUDE": 18.34732668, "OBJECTID_1": 11775, "PARCEL_NO_": "105401210200", "Tax_Legal_": "HOSPITAL GROUND A 1 KINGS QTR", "Name": "KING, GIRLEEN & OTHERS", "Address": "PO Box 8568", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7900, "Improved_V": 26300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.05589875299999, "SHAPE_Area": 581.43971441300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359350.64580000191927, 257563.776999998837709 ], [ 359351.479500003159046, 257561.336599998176098 ], [ 359350.709100000560284, 257557.108500000089407 ], [ 359351.626900002360344, 257544.028200000524521 ], [ 359352.524899996817112, 257533.269799999892712 ], [ 359353.107799999415874, 257529.936000000685453 ], [ 359327.690099999308586, 257532.477800000458956 ], [ 359341.801600001752377, 257565.84739999845624 ], [ 359346.938100002706051, 257565.008799999952316 ], [ 359350.64580000191927, 257563.776999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401211300", "MAP": "A9-768-T012", "PARCEL_NAM": "A-2", "ACRE": null, "LONGITUDE": -64.92590482, "LATITUDE": 18.34737764, "OBJECTID_1": 11777, "PARCEL_NO_": "105401211300", "Tax_Legal_": "A-13 HOSPITAL GROUND KINGS QTR", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 219300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.66611108399999, "SHAPE_Area": 577.64610830699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359341.801600001752377, 257565.84739999845624 ], [ 359327.690099999308586, 257532.477800000458956 ], [ 359316.833999998867512, 257533.563400000333786 ], [ 359316.028800003230572, 257563.099899999797344 ], [ 359323.625100001692772, 257564.200300000607967 ], [ 359340.33500000089407, 257566.086899999529123 ], [ 359341.801600001752377, 257565.84739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302351000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93402006, "LATITUDE": 18.3432406, "OBJECTID_1": 10625, "PARCEL_NO_": "105302351000", "Tax_Legal_": "BJERGE GADE 2K &L QUEENS QTR", "Name": "HANSEN, ELLEN", "Address": "PO Box 144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040144, "Country": "United States", "Land_Value": 94900, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.576618328, "SHAPE_Area": 1161.0769529500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358486.246799997985363, 257087.949499998241663 ], [ 358499.699799999594688, 257077.376899998635054 ], [ 358493.645700000226498, 257071.333599999547005 ], [ 358481.649899996817112, 257059.625300001353025 ], [ 358472.704999998211861, 257068.418000001460314 ], [ 358445.02139999717474, 257101.847199998795986 ], [ 358460.675499998033047, 257112.283300001174212 ], [ 358470.815399996936321, 257100.910999998450279 ], [ 358486.246799997985363, 257087.949499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302350700", "MAP": "D9-8519-T010", "PARCEL_NAM": "2M", "ACRE": "1.425", "LONGITUDE": -64.93374315, "LATITUDE": 18.34342667, "OBJECTID_1": 10623, "PARCEL_NO_": "105302350700", "Tax_Legal_": "2M BJERGE GADE(CONS) QUEENS QTR", "Name": "JESM GROUP LLC", "Address": "2602 Bjerge Gade #2D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 452.12268919600001, "SHAPE_Area": 6339.5332374400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358455.841399997472763, 257154.828400000929832 ], [ 358480.761600002646446, 257163.898200001567602 ], [ 358486.524499997496605, 257150.013199999928474 ], [ 358494.706299997866154, 257136.147999998182058 ], [ 358497.148599997162819, 257133.423799999058247 ], [ 358506.92679999768734, 257121.471500001847744 ], [ 358510.998000003397465, 257116.860800001770258 ], [ 358515.873599998652935, 257112.467700000852346 ], [ 358524.788000002503395, 257107.263300001621246 ], [ 358529.63849999755621, 257105.825399998575449 ], [ 358535.296999998390675, 257104.182900000363588 ], [ 358545.780900001525879, 257104.057599999010563 ], [ 358559.464800000190735, 257106.913800001144409 ], [ 358569.898299999535084, 257112.698800001293421 ], [ 358573.886699996888638, 257117.797699999064207 ], [ 358587.477200001478195, 257131.629999998956919 ], [ 358574.003600001335144, 257104.077500000596046 ], [ 358570.817900002002716, 257099.407400000840425 ], [ 358570.036799997091293, 257096.445700000971556 ], [ 358567.670000001788139, 257090.30460000038147 ], [ 358562.895099997520447, 257082.877300001680851 ], [ 358546.89469999819994, 257067.969799999147654 ], [ 358536.461199998855591, 257062.184799998998642 ], [ 358525.208800002932549, 257057.870900001376867 ], [ 358518.756499998271465, 257058.029199998825788 ], [ 358493.645700000226498, 257071.333599999547005 ], [ 358499.699799999594688, 257077.376899998635054 ], [ 358486.246799997985363, 257087.949499998241663 ], [ 358470.815399996936321, 257100.910999998450279 ], [ 358460.675499998033047, 257112.283300001174212 ], [ 358445.02139999717474, 257101.847199998795986 ], [ 358440.929700002074242, 257106.788100000470877 ], [ 358432.769500002264977, 257118.120299998670816 ], [ 358450.270999997854233, 257146.127900000661612 ], [ 358455.841399997472763, 257154.828400000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401041400", "MAP": null, "PARCEL_NAM": "7A-A", "ACRE": null, "LONGITUDE": -64.93098793, "LATITUDE": 18.34559395, "OBJECTID_1": 11452, "PARCEL_NO_": "105401041400", "Tax_Legal_": "7A-A DOMINI GADE KINGS QTR", "Name": "JACKSON, RAKIIBA J.", "Address": "2512 Domini Gade", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.223078989199998, "SHAPE_Area": 74.181571373400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358786.994000002741814, 257342.653400000184774 ], [ 358788.700000002980232, 257359.380899999290705 ], [ 358796.139700002968311, 257345.362399999052286 ], [ 358786.994000002741814, 257342.653400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401040100", "MAP": "D9-7529-T005", "PARCEL_NAM": "7B", "ACRE": ".04", "LONGITUDE": -64.93112598, "LATITUDE": 18.34575716, "OBJECTID_1": 11440, "PARCEL_NO_": "105401040100", "Tax_Legal_": "7B DOMINI GADE KINGS QUARTER", "Name": "JACKSON, J. RAKIIBA", "Address": "2512 Domini Gade", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4400, "Improved_V": 23000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.607828087499996, "SHAPE_Area": 230.734335996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358782.086300000548363, 257361.990499999374151 ], [ 358768.52929999679327, 257359.370299998670816 ], [ 358767.078100003302097, 257369.02419999986887 ], [ 358766.860500000417233, 257370.182599999010563 ], [ 358766.5591000020504, 257371.321899998933077 ], [ 358766.175399996340275, 257372.436299998313189 ], [ 358765.711400002241135, 257373.51969999819994 ], [ 358780.597300000488758, 257374.648699998855591 ], [ 358788.700000002980232, 257359.380899999290705 ], [ 358782.086300000548363, 257361.990499999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302093500", "MAP": "D9-7547-T005", "PARCEL_NAM": "CONS 6", "ACRE": ".13", "LONGITUDE": -64.9325007, "LATITUDE": 18.34489382, "OBJECTID_1": 9812, "PARCEL_NO_": "105302093500", "Tax_Legal_": "MURPHY GADE 6 consolidated(formerly known as lots 6&7 Murphy Gade) QUEENS", "Name": "P & E FRANCIS PROPERTIES LLC", "Address": "PO Box 302471", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.691064243, "SHAPE_Area": 716.99928750200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358644.332299999892712, 257272.89469999819994 ], [ 358642.86710000038147, 257255.572999998927116 ], [ 358617.858800001442432, 257256.846000000834465 ], [ 358618.535700000822544, 257272.050299998372793 ], [ 358618.443999998271465, 257282.81529999896884 ], [ 358643.414499998092651, 257285.975000001490116 ], [ 358644.332299999892712, 257272.89469999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401541900", "MAP": "D9-8361-T009", "PARCEL_NAM": "1A-REM", "ACRE": ".765", "LONGITUDE": -64.92529907, "LATITUDE": 18.34158256, "OBJECTID_1": 12340, "PARCEL_NO_": "105401541900", "Tax_Legal_": "1A FREDERIKSBERG GADE KINGS QTR", "Name": "DUDLEY, TOPPER, & FEUERZEIG", "Address": "PO Box 756", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 414900, "Improved_V": 1616600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.40550361300001, "SHAPE_Area": 3653.7311902599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359409.230200000107288, 256944.640999998897314 ], [ 359414.359300002455711, 256929.474700000137091 ], [ 359417.103799998760223, 256921.790199998766184 ], [ 359414.359300002455711, 256906.695599999278784 ], [ 359431.05460000038147, 256904.076699998229742 ], [ 359423.502899996936321, 256868.649000000208616 ], [ 359383.928700000047684, 256874.807000000029802 ], [ 359391.717399999499321, 256892.14979999884963 ], [ 359369.349899999797344, 256895.580400001257658 ], [ 359363.998199999332428, 256899.971599999815226 ], [ 359360.382200002670288, 256901.966699998825788 ], [ 359372.48309999704361, 256952.063499998301268 ], [ 359409.230200000107288, 256944.640999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401542100", "MAP": "D9-8361-T009", "PARCEL_NAM": "1A-1", "ACRE": ".17", "LONGITUDE": -64.9250245, "LATITUDE": 18.3417179, "OBJECTID_1": 12342, "PARCEL_NO_": "105401542100", "Tax_Legal_": "1A-1 FREDERIKSBERG GADE KINGS QTR", "Name": "1A KONGENS CORP", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.65711266, "SHAPE_Area": 748.48028485500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359431.05460000038147, 256904.076699998229742 ], [ 359414.359300002455711, 256906.695599999278784 ], [ 359417.103799998760223, 256921.790199998766184 ], [ 359414.359300002455711, 256929.474700000137091 ], [ 359409.230200000107288, 256944.640999998897314 ], [ 359438.443499997258186, 256938.740200001746416 ], [ 359433.692500002682209, 256916.451699998229742 ], [ 359431.05460000038147, 256904.076699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401541300", "MAP": "D9-7376-T004", "PARCEL_NAM": "1A REM", "ACRE": "1.473", "LONGITUDE": -64.92497393, "LATITUDE": 18.34212604, "OBJECTID_1": 12335, "PARCEL_NO_": "105401541300", "Tax_Legal_": "KONGENS GADE 1A KINGS QUARTER", "Name": "LAW HOUSE INVESTMENTS LTD", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 654300, "Improved_V": 248200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 390.82103642099997, "SHAPE_Area": 5198.4782785199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359457.504799999296665, 257020.265599999576807 ], [ 359459.942199997603893, 256910.5489999987185 ], [ 359433.692500002682209, 256916.451699998229742 ], [ 359438.443499997258186, 256938.740200001746416 ], [ 359409.230200000107288, 256944.640999998897314 ], [ 359401.496100001037121, 256946.203200001269579 ], [ 359399.715999998152256, 256952.781899999827147 ], [ 359373.915399998426437, 256957.993299998342991 ], [ 359365.048199996352196, 256960.227699998766184 ], [ 359366.847199998795986, 256967.67509999871254 ], [ 359368.915899999439716, 256976.239399999380112 ], [ 359414.229299999773502, 256974.408900000154972 ], [ 359419.722099997103214, 257025.5472999997437 ], [ 359424.133599996566772, 257025.050900001078844 ], [ 359428.537000000476837, 257024.486999999731779 ], [ 359432.93129999935627, 257023.855999998748302 ], [ 359437.315399996936321, 257023.157900001853704 ], [ 359457.504799999296665, 257020.265599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302081100", "MAP": null, "PARCEL_NAM": "94", "ACRE": null, "LONGITUDE": -64.93296674, "LATITUDE": 18.34678675, "OBJECTID_1": 9774, "PARCEL_NO_": "105302081100", "Tax_Legal_": "AGNES FANCY 94 QUEENS QUARTER", "Name": "DERORE, INC.", "Address": "PO Box 11176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.885332396, "SHAPE_Area": 741.9352989 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358588.739500001072884, 257456.724399998784065 ], [ 358578.109499998390675, 257467.450699999928474 ], [ 358566.362000003457069, 257474.594399999827147 ], [ 358565.726999998092651, 257494.914500001817942 ], [ 358591.731899999082088, 257493.989999998360872 ], [ 358591.755300000309944, 257481.344999998807907 ], [ 358591.835299998521805, 257471.948499999940395 ], [ 358591.966600000858307, 257456.539700001478195 ], [ 358588.739500001072884, 257456.724399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302081500", "MAP": "D9-5892-T95", "PARCEL_NAM": "88", "ACRE": ".09", "LONGITUDE": -64.93298911, "LATITUDE": 18.34699522, "OBJECTID_1": 9778, "PARCEL_NO_": "105302081500", "Tax_Legal_": "AGNES FANCY 88 QUEENS QUARTER", "Name": "RICHARDSON, ELVIS & SAMUEL, GA", "Address": "PO Box 9100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.533631736999993, "SHAPE_Area": 413.19362575600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358565.726999998092651, 257494.914500001817942 ], [ 358565.092000000178814, 257503.486999999731779 ], [ 358566.203199997544289, 257513.170800000429153 ], [ 358591.096900001168251, 257507.642499998211861 ], [ 358591.614100001752377, 257497.911200001835823 ], [ 358591.731899999082088, 257493.989999998360872 ], [ 358588.677100002765656, 257494.164500001817942 ], [ 358565.726999998092651, 257494.914500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302080600", "MAP": null, "PARCEL_NAM": "83", "ACRE": null, "LONGITUDE": -64.93354712, "LATITUDE": 18.346886, "OBJECTID_1": 9769, "PARCEL_NO_": "105302080600", "Tax_Legal_": "83 AGNES FANCY QUEENS QUARTER", "Name": "CRANSTON, SONJA T. & TODMAN, JR", "Address": "1022 Longfellow Ave", "City": "Bronx", "State": "New York", "Zip": 10459, "Country": "United States", "Land_Value": 11900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.092644743500003, "SHAPE_Area": 244.66051424299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358508.671800002455711, 257484.566700000315905 ], [ 358507.838500000536442, 257487.726300001144409 ], [ 358522.224500000476837, 257502.831700000911951 ], [ 358528.003499999642372, 257487.046900000423193 ], [ 358529.428400002419949, 257483.344500001519918 ], [ 358527.732699997723103, 257483.140500001609325 ], [ 358508.874899998307228, 257482.957400001585484 ], [ 358508.671800002455711, 257484.566700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302080900", "MAP": null, "PARCEL_NAM": "78", "ACRE": null, "LONGITUDE": -64.93337662, "LATITUDE": 18.34646911, "OBJECTID_1": 9772, "PARCEL_NO_": "105302080900", "Tax_Legal_": "AGNES FANCY 78 QUEENS QUARTER", "Name": "LEE, VERTALIE,ROBERT & RICHARD", "Address": "90 AGNES FANCY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.478846905399998, "SHAPE_Area": 188.588602167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358529.137900002300739, 257447.031800001859665 ], [ 358548.454499997198582, 257452.806099999696016 ], [ 358538.529799997806549, 257434.081399999558926 ], [ 358533.262199997901917, 257437.694099999964237 ], [ 358527.387500002980232, 257441.659800000488758 ], [ 358529.137900002300739, 257447.031800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302081000", "MAP": null, "PARCEL_NAM": "77", "ACRE": null, "LONGITUDE": -64.93318158, "LATITUDE": 18.34643176, "OBJECTID_1": 9773, "PARCEL_NO_": "105302081000", "Tax_Legal_": "AGNES FANCY 77 QUEENS QUARTER", "Name": "JOHN M LYNCH SR TRUST & MILTON A. LYNCH", "Address": "PO Box 1523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31300, "Improved_V": 35400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.26406003300001, "SHAPE_Area": 883.96057149700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358538.529799997806549, 257434.081399999558926 ], [ 358548.454499997198582, 257452.806099999696016 ], [ 358574.204300001263618, 257459.1385000012815 ], [ 358579.88629999756813, 257454.752099998295307 ], [ 358575.073600001633167, 257451.757399998605251 ], [ 358572.678000003099442, 257448.993599999696016 ], [ 358568.727399997413158, 257439.462000001221895 ], [ 358565.629799999296665, 257424.449000000953674 ], [ 358561.643200002610683, 257419.138999998569489 ], [ 358557.626000002026558, 257417.417399998754263 ], [ 358549.496299996972084, 257425.161299999803305 ], [ 358542.99549999833107, 257431.018800001591444 ], [ 358538.529799997806549, 257434.081399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302080800", "MAP": null, "PARCEL_NAM": "90", "ACRE": null, "LONGITUDE": -64.93326904, "LATITUDE": 18.34664556, "OBJECTID_1": 9771, "PARCEL_NO_": "105302080800", "Tax_Legal_": "AGNES FANCY 90 QUEENS QUARTER", "Name": "SMITH, MILDRED", "Address": "2190 Agnes Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28500, "Improved_V": 25000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.286855984, "SHAPE_Area": 895.02931760199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358553.767800003290176, 257470.652100000530481 ], [ 358570.912799999117851, 257463.667100001126528 ], [ 358577.05120000243187, 257464.513799998909235 ], [ 358585.754299998283386, 257456.059300001710653 ], [ 358579.88629999756813, 257454.752099998295307 ], [ 358574.204300001263618, 257459.1385000012815 ], [ 358548.454499997198582, 257452.806099999696016 ], [ 358529.137900002300739, 257447.031800001859665 ], [ 358530.696099996566772, 257451.813799999654293 ], [ 358530.809299997985363, 257466.640500001609325 ], [ 358530.895999997854233, 257478.003699999302626 ], [ 358546.352600000798702, 257480.880199998617172 ], [ 358553.767800003290176, 257470.652100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302080700", "MAP": null, "PARCEL_NAM": "112", "ACRE": null, "LONGITUDE": -64.93350921, "LATITUDE": 18.34668336, "OBJECTID_1": 9770, "PARCEL_NO_": "105302080700", "Tax_Legal_": "AGNES FANCY 112 QUEENS QUARTER", "Name": "KING, JANET & CURTIS", "Address": "188-77 120 Rd", "City": "Saint Albans", "State": "New York", "Zip": 11412, "Country": "United States", "Land_Value": 71600, "Improved_V": 65400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.24513528099999, "SHAPE_Area": 779.90459561800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358545.896600000560284, 257480.795400001108646 ], [ 358530.895999997854233, 257478.003699999302626 ], [ 358530.809299997985363, 257466.640500001609325 ], [ 358530.696099996566772, 257451.813799999654293 ], [ 358527.387500002980232, 257441.659800000488758 ], [ 358520.285700000822544, 257446.45380000025034 ], [ 358512.130800001323223, 257457.152800001204014 ], [ 358508.874899998307228, 257482.957400001585484 ], [ 358527.732699997723103, 257483.140500001609325 ], [ 358548.374499998986721, 257485.623700000345707 ], [ 358546.17059999704361, 257481.13120000064373 ], [ 358545.896600000560284, 257480.795400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302080200", "MAP": "D9-7687-T005", "PARCEL_NAM": "CONS 89", "ACRE": ".13", "LONGITUDE": -64.93296616000001, "LATITUDE": 18.34725009, "OBJECTID_1": 9767, "PARCEL_NO_": "105302080200", "Tax_Legal_": "89 ESTATE AGNES FANCY QUEENS QTR.", "Name": "ALEXANDER, IGNATIUS & MARGARITA (LIFE ESTATE)", "Address": "PO Box 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22100, "Improved_V": 112700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.678871628, "SHAPE_Area": 917.30839438299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358593.601499997079372, 257548.589899998158216 ], [ 358591.22749999910593, 257543.293099999427795 ], [ 358590.442800000309944, 257540.753600001335144 ], [ 358589.704800002276897, 257532.725999999791384 ], [ 358589.826899997889996, 257529.867499999701977 ], [ 358590.604599997401237, 257521.756499998271465 ], [ 358591.096900001168251, 257507.642499998211861 ], [ 358588.301600001752377, 257508.128199998289347 ], [ 358566.203199997544289, 257513.170800000429153 ], [ 358573.246100001037121, 257556.339000001549721 ], [ 358593.601499997079372, 257548.589899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302100100", "MAP": null, "PARCEL_NAM": "37", "ACRE": null, "LONGITUDE": -64.93401758, "LATITUDE": 18.34815914, "OBJECTID_1": 9816, "PARCEL_NO_": "105302100100", "Tax_Legal_": "AGNES FANCCY 37 QUEENS QTR", "Name": "ROYSTER, ABIGAIL & KELVIN & AVLYNE", "Address": "P O BOX 5019", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.070774077, "SHAPE_Area": 773.28184012500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358472.942100003361702, 257651.914900001138449 ], [ 358487.008000001311302, 257647.593699999153614 ], [ 358467.298900000751019, 257608.351100001484156 ], [ 358447.852099999785423, 257619.379900000989437 ], [ 358472.942100003361702, 257651.914900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302100300", "MAP": null, "PARCEL_NAM": "53", "ACRE": null, "LONGITUDE": -64.93372859, "LATITUDE": 18.3481752, "OBJECTID_1": 9818, "PARCEL_NO_": "105302100300", "Tax_Legal_": "AGNES FANCY 53 QUEENS QTR", "Name": "AUSTIN, CONSUELO & C", "Address": "6 Linden Pl", "City": "Middletown", "State": "New York", "Zip": 10940, "Country": "United States", "Land_Value": 24900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.112648581200006, "SHAPE_Area": 463.28973245600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358492.871899999678135, 257645.792300000786781 ], [ 358513.134400002658367, 257639.567400000989437 ], [ 358501.102899998426437, 257615.804900001734495 ], [ 358484.854299999773502, 257630.026299998164177 ], [ 358492.871899999678135, 257645.792300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401140400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92724754, "LATITUDE": 18.34775807, "OBJECTID_1": 11678, "PARCEL_NO_": "105401140400", "Tax_Legal_": "244 HOSPITAL GROUND NEW QUARTER", "Name": "LEONARD W. BONELLI JR. & OTHERS", "Address": "PO Box 11867", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.070130237599997, "SHAPE_Area": 388.77792072 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359175.635499998927116, 257603.575800001621246 ], [ 359187.902000002563, 257603.513199999928474 ], [ 359192.264700002968311, 257603.602299999445677 ], [ 359192.461499996483326, 257580.511199999600649 ], [ 359178.755999997258186, 257580.188000001013279 ], [ 359175.635499998927116, 257580.060300000011921 ], [ 359175.635499998927116, 257603.575800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401141300", "MAP": null, "PARCEL_NAM": "253", "ACRE": null, "LONGITUDE": -64.92558185, "LATITUDE": 18.34773755, "OBJECTID_1": 11687, "PARCEL_NO_": "105401141300", "Tax_Legal_": "HOSPITAL GROUND 253 NEW QUARTER", "Name": "VANBEVERHOUDT, CECIL & IRIS", "Address": "PO Box 8443", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22600, "Improved_V": 164700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.07613463, "SHAPE_Area": 945.98530816000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359377.260799996554852, 257602.560400001704693 ], [ 359379.006499998271465, 257599.723600000143051 ], [ 359379.661100000143051, 257594.159200001507998 ], [ 359375.624200001358986, 257584.339499998837709 ], [ 359371.259900003671646, 257580.084399998188019 ], [ 359364.277000002563, 257575.720100000500679 ], [ 359360.021799996495247, 257574.629000000655651 ], [ 359342.447800002992153, 257577.406599998474121 ], [ 359344.640600003302097, 257603.994899999350309 ], [ 359350.859200000762939, 257604.86259999871254 ], [ 359362.368600003421307, 257606.053300000727177 ], [ 359369.59179999679327, 257605.576999999582767 ], [ 359372.131800003349781, 257604.677400000393391 ], [ 359377.260799996554852, 257602.560400001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401141200", "MAP": null, "PARCEL_NAM": "252", "ACRE": null, "LONGITUDE": -64.92583227, "LATITUDE": 18.34774048, "OBJECTID_1": 11686, "PARCEL_NO_": "105401141200", "Tax_Legal_": "HOSPITAL GROUND 252 NEW QUARTER", "Name": "FERN P CLARKE REVOCABLE LIVING TRUST", "Address": "6014 NW 201st Ter", "City": "Hialeah", "State": "Florida", "Zip": 33015, "Country": "United States", "Land_Value": 9100, "Improved_V": 30400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.469362723700002, "SHAPE_Area": 492.49323224300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359323.535099998116493, 257602.079500000923872 ], [ 359328.316699996590614, 257602.798900000751019 ], [ 359336.968599997460842, 257603.037000000476837 ], [ 359340.619800001382828, 257603.433899998664856 ], [ 359344.640600003302097, 257603.994899999350309 ], [ 359342.447800002992153, 257577.406599998474121 ], [ 359322.081799998879433, 257581.296700000762939 ], [ 359323.535099998116493, 257602.079500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401141100", "MAP": null, "PARCEL_NAM": "251", "ACRE": null, "LONGITUDE": -64.92604846, "LATITUDE": 18.34774842, "OBJECTID_1": 11685, "PARCEL_NO_": "105401141100", "Tax_Legal_": "HOSPITAL GROUND 251 NEW QUARTER", "Name": "GRANT, AVENEL", "Address": "1556 E 48th St", "City": "Brooklyn", "State": "New York", "Zip": 11234, "Country": "United States", "Land_Value": 11600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.133922753500002, "SHAPE_Area": 498.06826814099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359304.504100002348423, 257602.878199998289347 ], [ 359319.347300000488758, 257601.449499998241663 ], [ 359323.535099998116493, 257602.079500000923872 ], [ 359322.081799998879433, 257581.296700000762939 ], [ 359316.050200000405312, 257582.448800001293421 ], [ 359309.806000001728535, 257580.887699998915195 ], [ 359304.026500001549721, 257579.214999999850988 ], [ 359301.07599999755621, 257578.361000001430511 ], [ 359299.773500002920628, 257590.1864 ], [ 359298.309799998998642, 257603.474500000476837 ], [ 359302.842200003564358, 257603.038199998438358 ], [ 359304.504100002348423, 257602.878199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401141000", "MAP": null, "PARCEL_NAM": "250", "ACRE": null, "LONGITUDE": -64.92626638, "LATITUDE": 18.34779189, "OBJECTID_1": 11684, "PARCEL_NO_": "105401141000", "Tax_Legal_": "HOSPITAL GROUND 250 KINGS QTR", "Name": "VANTERPOOL, ROLAND & VICTOR", "Address": "4149 Owls Head Rd", "City": "Fayetteville", "State": "North Carolina", "Zip": 28306, "Country": "United States", "Land_Value": 3300, "Improved_V": 36100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.466982865999995, "SHAPE_Area": 338.56351861100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359298.309799998998642, 257603.474500000476837 ], [ 359299.773500002920628, 257590.1864 ], [ 359277.802699998021126, 257587.492400001734495 ], [ 359276.494199998676777, 257604.545099999755621 ], [ 359283.707800000905991, 257604.545099999755621 ], [ 359289.660999998450279, 257604.307000000029802 ], [ 359298.309799998998642, 257603.474500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401142300", "MAP": "F3-24-T70", "PARCEL_NAM": "A3", "ACRE": ".047", "LONGITUDE": -64.92623844000001, "LATITUDE": 18.34755376, "OBJECTID_1": 11698, "PARCEL_NO_": "105401142300", "Tax_Legal_": "HOSPITAL GROUND A3 KINGS QTR", "Name": "ROUMO, CLAUDIA", "Address": "PO Box 6121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.030170223200003, "SHAPE_Area": 231.09030234299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359301.954499997198582, 257570.385200001299381 ], [ 359302.086000002920628, 257567.427999999374151 ], [ 359279.937299996614456, 257562.627199999988079 ], [ 359279.431199997663498, 257566.26969999819994 ], [ 359278.99379999935627, 257571.969999998807907 ], [ 359279.401199996471405, 257572.087900001555681 ], [ 359301.07599999755621, 257578.361000001430511 ], [ 359301.954499997198582, 257570.385200001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401142600", "MAP": null, "PARCEL_NAM": "250A", "ACRE": null, "LONGITUDE": -64.92625535000001, "LATITUDE": 18.3476597, "OBJECTID_1": 11700, "PARCEL_NO_": "105401142600", "Tax_Legal_": "HOSPITAL GROUND 250A KINGS QTR", "Name": "VANTERPOOL, ROLANDO A", "Address": "PO Box 6121", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6100, "Improved_V": 52500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.588737926899995, "SHAPE_Area": 306.85184835000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359301.07599999755621, 257578.361000001430511 ], [ 359279.401199996471405, 257572.087900001555681 ], [ 359278.99379999935627, 257571.969999998807907 ], [ 359277.802699998021126, 257587.492400001734495 ], [ 359299.773500002920628, 257590.1864 ], [ 359301.07599999755621, 257578.361000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401141800", "MAP": null, "PARCEL_NAM": "237", "ACRE": null, "LONGITUDE": -64.92709571, "LATITUDE": 18.34753956, "OBJECTID_1": 11692, "PARCEL_NO_": "105401141800", "Tax_Legal_": "HOSPITAL GROUND 237 NEW QUARTER", "Name": "MALONE, CLAUDE D", "Address": "PO Box 411263", "City": "Melbourne", "State": "Florida", "Zip": 32941, "Country": "United States", "Land_Value": 8800, "Improved_V": 66000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.358551522599996, "SHAPE_Area": 372.05519134299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359207.911799997091293, 257554.920699998736382 ], [ 359193.436499997973442, 257555.100699998438358 ], [ 359192.461499996483326, 257580.511199999600649 ], [ 359206.973300002515316, 257580.841099999845028 ], [ 359207.911799997091293, 257554.920699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401141700", "MAP": null, "PARCEL_NAM": "236", "ACRE": null, "LONGITUDE": -64.9272445, "LATITUDE": 18.34753954, "OBJECTID_1": 11691, "PARCEL_NO_": "105401141700", "Tax_Legal_": "HOSPITAL GROUND 236 NEW QUARTER", "Name": "STAGGER, AVA & CAROL", "Address": "7947 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.178248351700006, "SHAPE_Area": 426.43035357600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359193.436499997973442, 257555.100699998438358 ], [ 359178.968199998140335, 257555.280699998140335 ], [ 359176.29450000077486, 257555.2956000007689 ], [ 359175.635499998927116, 257580.060300000011921 ], [ 359178.755999997258186, 257580.188000001013279 ], [ 359192.461499996483326, 257580.511199999600649 ], [ 359193.436499997973442, 257555.100699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401140300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92739686, "LATITUDE": 18.3477564, "OBJECTID_1": 11677, "PARCEL_NO_": "105401140300", "Tax_Legal_": "HOSPITAL GROUND 243 NEW QUARTER", "Name": "WALTER L. THOMPSON", "Address": "1308 Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8900, "Improved_V": 19700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.901866800999997, "SHAPE_Area": 351.655743234 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359175.635499998927116, 257603.575800001621246 ], [ 359175.635499998927116, 257580.060300000011921 ], [ 359172.307300001382828, 257579.924100000411272 ], [ 359164.245899997651577, 257579.646999999880791 ], [ 359160.709600001573563, 257579.540899999439716 ], [ 359160.795699998736382, 257603.143500000238419 ], [ 359172.344499997794628, 257603.592599999159575 ], [ 359175.635499998927116, 257603.575800001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401141600", "MAP": null, "PARCEL_NAM": "235", "ACRE": null, "LONGITUDE": -64.92739728, "LATITUDE": 18.34753841, "OBJECTID_1": 11690, "PARCEL_NO_": "105401141600", "Tax_Legal_": "HOSPITAL GROUND 235 NEW QUARTER", "Name": "Ann, Godfrey, & Carol Hughes & Keith Turnbull", "Address": "10925 E Golf Dr", "City": "Miami", "State": "Florida", "Zip": 33167, "Country": "United States", "Land_Value": 9600, "Improved_V": 95400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.581565923400007, "SHAPE_Area": 374.153991787 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359160.621200002729893, 257555.341600000858307 ], [ 359160.709600001573563, 257579.540899999439716 ], [ 359164.245899997651577, 257579.646999999880791 ], [ 359172.307300001382828, 257579.924100000411272 ], [ 359175.635499998927116, 257580.060300000011921 ], [ 359176.29450000077486, 257555.2956000007689 ], [ 359163.64639999717474, 257555.366399999707937 ], [ 359160.621200002729893, 257555.341600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401141500", "MAP": null, "PARCEL_NAM": "234", "ACRE": null, "LONGITUDE": -64.92753069, "LATITUDE": 18.34753988, "OBJECTID_1": 11689, "PARCEL_NO_": "105401141500", "Tax_Legal_": "HOSPITAL GROUND 234 NEW QUARTER", "Name": "CONNER, LIONEL", "Address": "PO Box 11843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.969626266999995, "SHAPE_Area": 309.50427687199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359154.777000002563, 257555.293800000101328 ], [ 359148.326499998569489, 257555.24100000038743 ], [ 359147.315200001001358, 257579.297400001436472 ], [ 359154.571999996900558, 257579.356699999421835 ], [ 359160.709600001573563, 257579.540899999439716 ], [ 359160.621200002729893, 257555.341600000858307 ], [ 359154.777000002563, 257555.293800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401142200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92767036, "LATITUDE": 18.34779237, "OBJECTID_1": 11697, "PARCEL_NO_": "105401142200", "Tax_Legal_": "HOSPITAL GROUND 241 A KINGS QTR", "Name": "EMANUEL, LEON & ANGELA", "Address": "PO Box 11403", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4700, "Improved_V": 78600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.480733035500002, "SHAPE_Area": 183.91457964200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359131.807499997317791, 257601.217599999159575 ], [ 359142.181900002062321, 257601.846400000154972 ], [ 359146.314099997282028, 257602.156300000846386 ], [ 359146.397399999201298, 257592.377599999308586 ], [ 359146.643700003623962, 257588.86710000038147 ], [ 359132.0962999984622, 257589.129999998956919 ], [ 359131.885600000619888, 257592.047800000756979 ], [ 359131.807499997317791, 257601.217599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302142500", "MAP": null, "PARCEL_NAM": "11", "ACRE": null, "LONGITUDE": -64.94058446, "LATITUDE": 18.34168704, "OBJECTID_1": 9927, "PARCEL_NO_": "105302142500", "Tax_Legal_": "ANNAS FANCY 11 CROWN PRINCE QUARTER", "Name": "SYLVESTER, MYRNA A", "Address": "PO Box 1223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12100, "Improved_V": 49200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.651144385000002, "SHAPE_Area": 190.07493566 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357787.096900001168251, 256901.953299999237061 ], [ 357775.821199998259544, 256900.383400000631809 ], [ 357774.006300002336502, 256900.114799998700619 ], [ 357773.226300001144409, 256915.246700000017881 ], [ 357774.885399997234344, 256915.574499998241663 ], [ 357783.745800003409386, 256916.702500000596046 ], [ 357785.369199998676777, 256915.449200000613928 ], [ 357787.096900001168251, 256901.953299999237061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302145200", "MAP": "F9-3677-T79", "PARCEL_NAM": "12A", "ACRE": ".03", "LONGITUDE": -64.94066529, "LATITUDE": 18.34144974, "OBJECTID_1": 9956, "PARCEL_NO_": "105302145200", "Tax_Legal_": "12A ANNAS FANCY KRONPRINDSENS QTR", "Name": "GEORGE, IVAN L., JR. & JOSEPH U.", "Address": "PO Box 10754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.5649154237, "SHAPE_Area": 65.277478597599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357774.44650000333786, 256886.930599998682737 ], [ 357775.972800001502037, 256878.374200001358986 ], [ 357768.762100003659725, 256877.10530000180006 ], [ 357767.918099999427795, 256881.531399998813868 ], [ 357766.874399997293949, 256885.794799998402596 ], [ 357774.44650000333786, 256886.930599998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302143200", "MAP": "F9-3677-T79", "PARCEL_NAM": "12", "ACRE": ".04", "LONGITUDE": -64.94057118000001, "LATITUDE": 18.34152249, "OBJECTID_1": 9936, "PARCEL_NO_": "105302143200", "Tax_Legal_": "12 ANNAS FANCY KRONPRINDSENS QTR.", "Name": "GEORGE, YVONNE T. & JANICE E.", "Address": "PO Box 10754", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9200, "Improved_V": 62500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.345232974699996, "SHAPE_Area": 286.69924448799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357775.972800001502037, 256878.374200001358986 ], [ 357774.44650000333786, 256886.930599998682737 ], [ 357775.251400001347065, 256887.051300000399351 ], [ 357774.006300002336502, 256900.114799998700619 ], [ 357775.821199998259544, 256900.383400000631809 ], [ 357787.096900001168251, 256901.953299999237061 ], [ 357788.891199998557568, 256880.647599998861551 ], [ 357775.972800001502037, 256878.374200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303290300", "MAP": "D9-7493-T004", "PARCEL_NAM": "3 REM", "ACRE": ".401", "LONGITUDE": -64.9410172, "LATITUDE": 18.3382061, "OBJECTID_1": 11230, "PARCEL_NO_": "105303290300", "Tax_Legal_": "DEMARARA 3 KRONPRINDSENS QTR.", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 104300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.22654768000001, "SHAPE_Area": 1707.80262266 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357738.467200003564358, 256552.406599998474121 ], [ 357743.762699998915195, 256555.449599999934435 ], [ 357745.765299998223782, 256547.611200001090765 ], [ 357749.854400001466274, 256540.889600001275539 ], [ 357752.327299997210503, 256534.577100001275539 ], [ 357755.590300001204014, 256530.170800000429153 ], [ 357758.878499999642372, 256522.809500001370907 ], [ 357762.958599999547005, 256517.143300000578165 ], [ 357764.298000000417233, 256507.232999999076128 ], [ 357715.521099999547005, 256500.923099998384714 ], [ 357712.126800000667572, 256520.738099999725819 ], [ 357716.917900003492832, 256526.265700001269579 ], [ 357718.49099999666214, 256530.922600001096725 ], [ 357738.467200003564358, 256552.406599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303290300", "MAP": "D9-7493-T004", "PARCEL_NAM": "3C", "ACRE": ".007", "LONGITUDE": -64.94092169, "LATITUDE": 18.33844096, "OBJECTID_1": 11230, "PARCEL_NO_": "105303290300", "Tax_Legal_": "DEMARARA 3 KRONPRINDSENS QTR.", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 104300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.691100488700002, "SHAPE_Area": 38.137096159800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357743.762699998915195, 256555.449599999934435 ], [ 357745.812200002372265, 256556.496700000017881 ], [ 357746.076800003647804, 256556.893500000238419 ], [ 357752.327299997210503, 256534.577100001275539 ], [ 357749.854400001466274, 256540.889600001275539 ], [ 357745.765299998223782, 256547.611200001090765 ], [ 357743.762699998915195, 256555.449599999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303290300", "MAP": "D9-7493-T004", "PARCEL_NAM": "3-A", "ACRE": ".004", "LONGITUDE": -64.94125236, "LATITUDE": 18.33809514, "OBJECTID_1": 11230, "PARCEL_NO_": "105303290300", "Tax_Legal_": "DEMARARA 3 KRONPRINDSENS QTR.", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 104300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.480686997, "SHAPE_Area": 54.566742498000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357712.632299996912479, 256500.773299999535084 ], [ 357709.60080000013113, 256518.854100000113249 ], [ 357712.126800000667572, 256520.738099999725819 ], [ 357715.521099999547005, 256500.923099998384714 ], [ 357712.632299996912479, 256500.773299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302390400", "MAP": "D9-8338-T009", "PARCEL_NAM": "9-1", "ACRE": ".0008", "LONGITUDE": -64.93278407, "LATITUDE": 18.34254836, "OBJECTID_1": 10668, "PARCEL_NO_": "105302390400", "Tax_Legal_": "9 REM CRYSTAL GADE QUEENS QTR", "Name": "HEBREW CONGREGATION OF STT. INC", "Address": "PO Box 266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 137300, "Improved_V": 313800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 19.5945976814, "SHAPE_Area": 15.6173469958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358602.274099998176098, 257010.511100001633167 ], [ 358603.715999998152256, 257013.482200000435114 ], [ 358606.215800002217293, 257014.415300000458956 ], [ 358604.350500002503395, 257009.762200001627207 ], [ 358603.166500002145767, 257006.808699999004602 ], [ 358601.091600000858307, 257007.489000000059605 ], [ 358602.274099998176098, 257010.511100001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302212700", "MAP": "D9-8284-T009", "PARCEL_NAM": "JASMINE STRAEDE 1", "ACRE": ".0559", "LONGITUDE": -64.93707172000001, "LATITUDE": 18.34203334, "OBJECTID_1": 10210, "PARCEL_NO_": "105302212700", "Tax_Legal_": "JASMIN STRAEDE 1 CROWN PRINCE QUARTER", "Name": "JASMINE STRAEDE LLC", "Address": "PO Box 9056", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13100, "Improved_V": 88800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.519163853400002, "SHAPE_Area": 196.17196239699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358158.576800003647804, 256956.275499999523163 ], [ 358159.201999999582767, 256944.605500001460314 ], [ 358147.193099997937679, 256943.108500000089407 ], [ 358143.442500002682209, 256942.674600001424551 ], [ 358142.609300002455711, 256955.621800001710653 ], [ 358148.696099996566772, 256955.842199999839067 ], [ 358158.576800003647804, 256956.275499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302212500", "MAP": "D9-8284-T009", "PARCEL_NAM": "GAMLE NORDSIDEVEJ 3", "ACRE": ".06", "LONGITUDE": -64.93734201, "LATITUDE": 18.3420365, "OBJECTID_1": 10208, "PARCEL_NO_": "105302212500", "Tax_Legal_": "3 GAMLE NORDSIDEVEJ CROWN PRINCE QUARTER", "Name": "ACOSTA, WILFRED & IRENE", "Address": "3438 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025749, "Country": "United States", "Land_Value": 41100, "Improved_V": 330300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.668493048299993, "SHAPE_Area": 287.69864701199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358130.646700002253056, 256941.194299999624491 ], [ 358115.775700002908707, 256939.473900001496077 ], [ 358114.311899997293949, 256957.010899998247623 ], [ 358114.059600003063679, 256960.032699998468161 ], [ 358129.41780000180006, 256958.80970000103116 ], [ 358129.541400000452995, 256955.148800000548363 ], [ 358130.646700002253056, 256941.194299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302213400", "MAP": "D9-8284-T009", "PARCEL_NAM": "GAMLE NORDSIDEVEJ 6", "ACRE": null, "LONGITUDE": -64.93734692, "LATITUDE": 18.34216535, "OBJECTID_1": 10217, "PARCEL_NO_": "105302213400", "Tax_Legal_": "GAMLE NORDSIDDEVEJ 6 CROWN PRINCE QTR", "Name": "INFINITY INVESTORS LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33900, "Improved_V": 495500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.100014037699999, "SHAPE_Area": 146.409426868 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358129.41780000180006, 256958.80970000103116 ], [ 358114.059600003063679, 256960.032699998468161 ], [ 358113.979699999094009, 256960.990699999034405 ], [ 358113.269100002944469, 256968.899099998176098 ], [ 358129.081000000238419, 256968.783300001174212 ], [ 358129.41780000180006, 256958.80970000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302212600", "MAP": "D9-8284-T009", "PARCEL_NAM": "JASMINE STRAEDE 3", "ACRE": ".0583", "LONGITUDE": -64.93720749000001, "LATITUDE": 18.3420244, "OBJECTID_1": 10209, "PARCEL_NO_": "105302212600", "Tax_Legal_": "JASMIN STRAEDE 3 CROWN PRINCE QUARTER", "Name": "BENVENUTI, JOSEFINA ARBONIES", "Address": "PO Box 808", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13600, "Improved_V": 49100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.9297857368, "SHAPE_Area": 174.89099261199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358142.609300002455711, 256955.621800001710653 ], [ 358143.442500002682209, 256942.674600001424551 ], [ 358130.646700002253056, 256941.194299999624491 ], [ 358129.541400000452995, 256955.148800000548363 ], [ 358142.609300002455711, 256955.621800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302212500", "MAP": "D9-8284-T009", "PARCEL_NAM": "GAMLE NORDSIDEVEJ 6A REM", "ACRE": ".0173", "LONGITUDE": -64.93719232, "LATITUDE": 18.34220497, "OBJECTID_1": 10208, "PARCEL_NO_": "105302212500", "Tax_Legal_": "3 GAMLE NORDSIDEVEJ CROWN PRINCE QUARTER", "Name": "ACOSTA, WILFRED & IRENE", "Address": "3438 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025749, "Country": "United States", "Land_Value": 41100, "Improved_V": 330300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.642847468500001, "SHAPE_Area": 55.159234545899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358137.659999996423721, 256955.442699998617172 ], [ 358136.07599999755621, 256981.783700000494719 ], [ 358138.259199999272823, 256981.475400000810623 ], [ 358139.709100000560284, 256955.5168999992311 ], [ 358137.659999996423721, 256955.442699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302212100", "MAP": "D9-8284-T009", "PARCEL_NAM": "GAMLE NORDSIDEVEJ 6AB", "ACRE": null, "LONGITUDE": -64.93723938, "LATITUDE": 18.34220498, "OBJECTID_1": 10205, "PARCEL_NO_": "105302212100", "Tax_Legal_": "6 AB GAMLE NORDSIDEVEJ CROWN PRINCE QTR", "Name": "INFINITY INVESTORS LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.921351523599995, "SHAPE_Area": 210.54843420399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358136.07599999755621, 256981.783700000494719 ], [ 358137.659999996423721, 256955.442699998617172 ], [ 358129.541400000452995, 256955.148800000548363 ], [ 358128.601899996399879, 256982.973499998450279 ], [ 358135.573899999260902, 256981.854600001126528 ], [ 358136.07599999755621, 256981.783700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302212300", "MAP": "D9-8284-T009", "PARCEL_NAM": "BORGER GADE 12B", "ACRE": ".0482", "LONGITUDE": -64.93712198, "LATITUDE": 18.34220069, "OBJECTID_1": 10206, "PARCEL_NO_": "105302212300", "Tax_Legal_": "BORGER GADE 12B CROWN PRINCE QUARTER", "Name": "JASMINE STRAEDE LLC", "Address": "PO Box 9056", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7700, "Improved_V": 101700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.751094871000006, "SHAPE_Area": 320.26253348500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358148.696099996566772, 256955.842199999839067 ], [ 358139.709100000560284, 256955.5168999992311 ], [ 358138.259199999272823, 256981.475400000810623 ], [ 358141.225299999117851, 256981.056499999016523 ], [ 358143.647799998521805, 256980.654100000858307 ], [ 358147.545199997723103, 256980.203200001269579 ], [ 358151.563699997961521, 256979.738299999386072 ], [ 358152.282300002872944, 256955.999499998986721 ], [ 358148.696099996566772, 256955.842199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302282200", "MAP": "D9-8284-T009", "PARCEL_NAM": "BORGER GADE 13", "ACRE": ".0564", "LONGITUDE": -64.93690813000001, "LATITUDE": 18.34205146, "OBJECTID_1": 10468, "PARCEL_NO_": "105302282200", "Tax_Legal_": "BORGER GADE 13&12AA CROWN PRINCE QTR", "Name": "JASMINE STRAEDE LLC", "Address": "PO Box 9056", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.388272342500002, "SHAPE_Area": 228.027264884 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358159.201999999582767, 256944.605500001460314 ], [ 358158.576800003647804, 256956.275499999523163 ], [ 358159.443499997258186, 256957.055599998682737 ], [ 358160.743600003421307, 256957.315600000321865 ], [ 358176.924900002777576, 256959.097699999809265 ], [ 358177.802500002086163, 256946.947599999606609 ], [ 358169.746500000357628, 256946.037300001829863 ], [ 358161.692400000989437, 256944.915899999439716 ], [ 358159.201999999582767, 256944.605500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302282200", "MAP": "D9-8284-T009", "PARCEL_NAM": "BORGER GADE 12AA", "ACRE": ".05", "LONGITUDE": -64.9370177, "LATITUDE": 18.34220252, "OBJECTID_1": 10468, "PARCEL_NO_": "105302282200", "Tax_Legal_": "BORGER GADE 13&12AA CROWN PRINCE QTR", "Name": "JASMINE STRAEDE LLC", "Address": "PO Box 9056", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.535135018299997, "SHAPE_Area": 203.592900528 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358152.282300002872944, 256955.999499998986721 ], [ 358151.563699997961521, 256979.738299999386072 ], [ 358158.983900003135204, 256978.879799999296665 ], [ 358161.696999996900558, 256978.665399998426437 ], [ 358161.696999996900558, 256964.942800000309944 ], [ 358159.183499999344349, 256964.942800000309944 ], [ 358159.443499997258186, 256957.055599998682737 ], [ 358158.576800003647804, 256956.275499999523163 ], [ 358152.282300002872944, 256955.999499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302212000", "MAP": "D9-8284-T009", "PARCEL_NAM": "GAMLE NORDSIDEVEJ 6AA", "ACRE": null, "LONGITUDE": -64.9373597, "LATITUDE": 18.34227984, "OBJECTID_1": 10204, "PARCEL_NO_": "105302212000", "Tax_Legal_": "GAMLE NORDSIDEVEJ 6AA CROWN PRINCE QTR", "Name": "INFINITY INVESTORS LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16500, "Improved_V": 85200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.496951445299999, "SHAPE_Area": 260.26093357000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358129.081000000238419, 256968.783300001174212 ], [ 358113.269100002944469, 256968.899099998176098 ], [ 358113.088899999856949, 256970.904800001531839 ], [ 358110.542300000786781, 256985.871599998325109 ], [ 358128.601899996399879, 256982.973499998450279 ], [ 358129.081000000238419, 256968.783300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302060200", "MAP": "G9-1678-T70", "PARCEL_NAM": "2A", "ACRE": ".028", "LONGITUDE": -64.93632815, "LATITUDE": 18.34525472, "OBJECTID_1": 9686, "PARCEL_NO_": "105302060200", "Tax_Legal_": "ANTONIE STRAEDE 2 PUBLIC FREEWY QNS QR", "Name": "KENNINGS, EMILY & BRENDA", "Address": "PO Box 306124", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15200, "Improved_V": 92200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.405029470299993, "SHAPE_Area": 217.048046355 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358223.183600001037121, 257296.76069999858737 ], [ 358224.16160000115633, 257303.304800000041723 ], [ 358218.883299998939037, 257303.611299999058247 ], [ 358220.61710000038147, 257316.241300001740456 ], [ 358233.17119999974966, 257315.428700000047684 ], [ 358230.998000003397465, 257295.319699998944998 ], [ 358223.183600001037121, 257296.76069999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302060400", "MAP": null, "PARCEL_NAM": "ANTONIE STAEDE 1", "ACRE": null, "LONGITUDE": -64.93609346, "LATITUDE": 18.34523327, "OBJECTID_1": 9688, "PARCEL_NO_": "105302060400", "Tax_Legal_": "ANTONIE STAEDE 1 QUEENS QUARTER", "Name": "MARCELLI, JOHN & OTHERS", "Address": "PO Box 543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31500, "Improved_V": 42200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.699432529099994, "SHAPE_Area": 547.77315239799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358236.246799997985363, 257295.155200000852346 ], [ 358237.597499996423721, 257315.142099998891354 ], [ 358263.380599997937679, 257313.473200000822544 ], [ 358266.65259999781847, 257308.011500000953674 ], [ 358266.668700002133846, 257306.111800000071526 ], [ 358269.962300002574921, 257298.117199998348951 ], [ 358244.991800002753735, 257294.957499999552965 ], [ 358236.246799997985363, 257295.155200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302033000", "MAP": null, "PARCEL_NAM": "REM STAABI", "ACRE": null, "LONGITUDE": -64.93640789, "LATITUDE": 18.34565896, "OBJECTID_1": 9649, "PARCEL_NO_": "105302033000", "Tax_Legal_": "REM STAABI 9A GREAT NORTHSIDE", "Name": "DE JONGH, MAVIS", "Address": "1000 Estate Staabi", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1203400, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.69871386599999, "SHAPE_Area": 1707.45783418 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358170.671499997377396, 257405.384500000625849 ], [ 358202.331699997186661, 257380.523400001227856 ], [ 358225.898199997842312, 257359.184799998998642 ], [ 358243.736000001430511, 257347.720600001513958 ], [ 358248.616999998688698, 257342.694299999624491 ], [ 358233.17119999974966, 257315.428700000047684 ], [ 358214.164899997413158, 257316.658900000154972 ], [ 358221.292300000786781, 257331.916000001132488 ], [ 358170.671499997377396, 257405.384500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302060300", "MAP": "D9-8120-T008", "PARCEL_NAM": "3A", "ACRE": ".02", "LONGITUDE": -64.93606899, "LATITUDE": 18.34550997, "OBJECTID_1": 9687, "PARCEL_NO_": "105302060300", "Tax_Legal_": "3A ANTONIE STRAEDE QUEENS QTR", "Name": "MCLEAN, VERA", "Address": "2480 16th St NW", "City": "Washington", "State": "District of Columbia", "Zip": 20009, "Country": "United States", "Land_Value": 5700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.508447131699995, "SHAPE_Area": 32.291981991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358248.616999998688698, 257342.694299999624491 ], [ 358250.728900000452995, 257344.774300001561642 ], [ 358263.380599997937679, 257313.473200000822544 ], [ 358255.162799999117851, 257331.559900000691414 ], [ 358252.914899997413158, 257335.527899999171495 ], [ 358248.616999998688698, 257342.694299999624491 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302302200", "MAP": null, "PARCEL_NAM": "2A & C GAMLE GADE", "ACRE": ".11", "LONGITUDE": -64.93480826, "LATITUDE": 18.34250739, "OBJECTID_1": 10511, "PARCEL_NO_": "105302302200", "Tax_Legal_": "2A & 2C GAMLE GADE KRONDPRINDSENS QTR", "Name": "WEEKES-WILLIAMS, MARSHA", "Address": "PO Box 10349", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71900, "Improved_V": 193400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.569621013, "SHAPE_Area": 513.69189218099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358379.315099999308586, 256990.863400001078844 ], [ 358382.098999999463558, 257006.28999999910593 ], [ 358382.72240000218153, 257026.284600000828505 ], [ 358389.20269999653101, 257026.14919999986887 ], [ 358389.290799997746944, 257015.80629999935627 ], [ 358394.128700003027916, 257015.845899999141693 ], [ 358398.255599997937679, 257004.691700000315905 ], [ 358402.964900001883507, 256989.759300000965595 ], [ 358393.300599999725819, 256990.147300001233816 ], [ 358379.315099999308586, 256990.863400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302302000", "MAP": null, "PARCEL_NAM": "4B GAMLE GADE", "ACRE": "1106 sq ft", "LONGITUDE": -64.93498953, "LATITUDE": 18.34265033, "OBJECTID_1": 10508, "PARCEL_NO_": "105302302000", "Tax_Legal_": "GAMLE GADE 4B&3C CROWN PRINCE QTR", "Name": "GEORGE, ALBERT & BEATRICE", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040035, "Country": "United States", "Land_Value": 9700, "Improved_V": 123900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.182472250899998, "SHAPE_Area": 142.78671948900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358364.127300001680851, 257013.921000000089407 ], [ 358365.851000003516674, 257026.744800001382828 ], [ 358376.298100002110004, 257026.465700000524521 ], [ 358374.804200001060963, 257012.521299999207258 ], [ 358373.189699999988079, 257012.719200000166893 ], [ 358364.127300001680851, 257013.921000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302302000", "MAP": null, "PARCEL_NAM": "3C GAMLE GADE", "ACRE": "820 sq ft", "LONGITUDE": -64.93491696, "LATITUDE": 18.34261433, "OBJECTID_1": 10508, "PARCEL_NO_": "105302302000", "Tax_Legal_": "GAMLE GADE 4B&3C CROWN PRINCE QTR", "Name": "GEORGE, ALBERT & BEATRICE", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040035, "Country": "United States", "Land_Value": 9700, "Improved_V": 123900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.979938303600001, "SHAPE_Area": 93.745097188200006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358380.572200000286102, 257026.340900000184774 ], [ 358380.021899998188019, 257012.052200000733137 ], [ 358379.866700001060963, 257008.022599998861551 ], [ 358379.703100003302097, 257003.776099998503923 ], [ 358379.594800002872944, 257003.194600000977516 ], [ 358376.944300003349781, 257003.550900001078844 ], [ 358376.816899999976158, 257008.363200001418591 ], [ 358376.839199997484684, 257012.33839999884367 ], [ 358374.804200001060963, 257012.521299999207258 ], [ 358376.298100002110004, 257026.465700000524521 ], [ 358380.572200000286102, 257026.340900000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302302100", "MAP": null, "PARCEL_NAM": "4A GAMLE GADE", "ACRE": "1,891 sq ft", "LONGITUDE": -64.93500738, "LATITUDE": 18.34250371, "OBJECTID_1": 10509, "PARCEL_NO_": "105302302100", "Tax_Legal_": "GAMLE GADE 4A CROWN PRINCE QTR", "Name": "SR. , GIMENEZ, JOHN L.", "Address": "PO Box 323", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9900, "Improved_V": 57700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.106221100100001, "SHAPE_Area": 221.894139389 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358376.816899999976158, 257008.363200001418591 ], [ 358376.944300003349781, 257003.550900001078844 ], [ 358371.648999996483326, 257004.262899998575449 ], [ 358369.892300002276897, 256991.046599999070168 ], [ 358362.204599998891354, 256991.912099998444319 ], [ 358364.012999996542931, 257013.070599999278784 ], [ 358364.127300001680851, 257013.921000000089407 ], [ 358373.189699999988079, 257012.719200000166893 ], [ 358374.804200001060963, 257012.521299999207258 ], [ 358376.839199997484684, 257012.33839999884367 ], [ 358376.816899999976158, 257008.363200001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092800", "MAP": "D9-5253-T92", "PARCEL_NAM": "C-44-1", "ACRE": ".25", "LONGITUDE": -64.92114986, "LATITUDE": 18.34787994, "OBJECTID_1": 12617, "PARCEL_NO_": "105402092800", "Tax_Legal_": "ROSS ESTATE C-44-1 KINGS QUARTER", "Name": "WHEATLEY, RENALDO O", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 138500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.21092493099999, "SHAPE_Area": 1206.67911822 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359838.004199996590614, 257629.164500001817942 ], [ 359840.606299996376038, 257628.832800000905991 ], [ 359843.66889999806881, 257620.249299999326468 ], [ 359844.715400002896786, 257618.673799999058247 ], [ 359855.104699999094009, 257603.03319999948144 ], [ 359855.140600003302097, 257598.811700001358986 ], [ 359847.09910000115633, 257596.212699998170137 ], [ 359836.616999998688698, 257596.126899998635054 ], [ 359793.79619999974966, 257605.908900000154972 ], [ 359791.270700000226498, 257607.166200000792742 ], [ 359821.765299998223782, 257623.5793999992311 ], [ 359831.276299998164177, 257630.028999999165535 ], [ 359838.004199996590614, 257629.164500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401031090", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92976867, "LATITUDE": 18.34369559, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.544500610299998, "SHAPE_Area": 95.649431542299993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358925.303199999034405, 257145.725699998438358 ], [ 358925.582299999892712, 257134.529100000858307 ], [ 358917.130900003015995, 257134.312399998307228 ], [ 358916.860799998044968, 257145.756999999284744 ], [ 358925.303199999034405, 257145.725699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401291000", "MAP": "D9-8819-T013", "PARCEL_NAM": "18 COMMANDANT GADE", "ACRE": ".05", "LONGITUDE": -64.93088445, "LATITUDE": 18.34379096, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.430898824300002, "SHAPE_Area": 142.83824772400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358814.17339999973774, 257150.692800000309944 ], [ 358810.439099997282028, 257143.164700001478195 ], [ 358792.441200003027916, 257149.756299998611212 ], [ 358792.521300002932549, 257150.1114999987185 ], [ 358792.664599999785423, 257151.243700001388788 ], [ 358792.570600003004074, 257152.381099998950958 ], [ 358792.243400000035763, 257153.474300000816584 ], [ 358791.696999996900558, 257154.476300001144409 ], [ 358797.974200002849102, 257154.557100001722574 ], [ 358814.17339999973774, 257150.692800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401030050", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93031387000001, "LATITUDE": 18.3439698, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.532288641099996, "SHAPE_Area": 199.41644526499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358864.78660000115633, 257155.878199998289347 ], [ 358857.360799998044968, 257155.828499998897314 ], [ 358859.106799997389317, 257165.660500001162291 ], [ 358862.452299997210503, 257184.499400001019239 ], [ 358865.201099999248981, 257184.751600001007318 ], [ 358868.909000001847744, 257185.09180000051856 ], [ 358864.78660000115633, 257155.878199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401240500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92456853, "LATITUDE": 18.34550421, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.900682095700006, "SHAPE_Area": 291.47189028399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359477.710900001227856, 257335.017400000244379 ], [ 359477.877599999308586, 257332.880499999970198 ], [ 359453.728900000452995, 257343.57039999961853 ], [ 359475.926500000059605, 257357.883900001645088 ], [ 359477.710900001227856, 257335.017400000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401120500", "MAP": "G3-6-T", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93033971, "LATITUDE": 18.3455869, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.78581528, "SHAPE_Area": 391.79922093099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358871.280500002205372, 257348.247299998998642 ], [ 358861.234600000083447, 257344.427299998700619 ], [ 358866.146200001239777, 257335.812699999660254 ], [ 358854.708700001239777, 257334.335700001567602 ], [ 358850.523800000548363, 257345.018699999898672 ], [ 358846.979599997401237, 257350.606600001454353 ], [ 358863.105599999427795, 257365.154800001531839 ], [ 358871.280500002205372, 257348.247299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401018010", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92761814000001, "LATITUDE": 18.34541982, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.29712199300002, "SHAPE_Area": 5260.7315925700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359200.600900001823902, 257343.196699999272823 ], [ 359199.336599998176098, 257337.55629999935627 ], [ 359195.209100000560284, 257319.458700001239777 ], [ 359189.628799997270107, 257294.844700001180172 ], [ 359094.530199997127056, 257317.473799999803305 ], [ 359097.527900002896786, 257330.004700001329184 ], [ 359101.230099998414516, 257345.480599999427795 ], [ 359104.865500003099442, 257360.677499998360872 ], [ 359108.116899996995926, 257374.269000001251698 ], [ 359200.600900001823902, 257343.196699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401120400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93043572000001, "LATITUDE": 18.34575077, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.981938058699996, "SHAPE_Area": 483.81630595299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358863.105599999427795, 257365.154800001531839 ], [ 358846.979599997401237, 257350.606600001454353 ], [ 358832.518899999558926, 257373.405900001525879 ], [ 358857.220299996435642, 257379.747499998658895 ], [ 358858.055500000715256, 257376.962799999862909 ], [ 358859.016199998557568, 257374.218899998813868 ], [ 358860.100599996745586, 257371.521499998867512 ], [ 358861.306400001049042, 257368.875999998301268 ], [ 358863.105599999427795, 257365.154800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401090400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92809179, "LATITUDE": 18.34576795, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.731330046699995, "SHAPE_Area": 289.04952856099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359108.116899996995926, 257374.269000001251698 ], [ 359104.865500003099442, 257360.677499998360872 ], [ 359084.653800003230572, 257367.984600000083447 ], [ 359088.379100002348423, 257380.900400001555681 ], [ 359108.116899996995926, 257374.269000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401450700", "MAP": null, "PARCEL_NAM": "TOLBOD PLASDEN", "ACRE": null, "LONGITUDE": -64.93044421, "LATITUDE": 18.34090998, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.298603607, "SHAPE_Area": 159.61701112399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358827.210799999535084, 256837.667199999094009 ], [ 358882.726800002157688, 256826.570599999278784 ], [ 358882.507299996912479, 256824.476199999451637 ], [ 358826.302100002765656, 256834.257599998265505 ], [ 358827.210799999535084, 256837.667199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102300", "MAP": null, "PARCEL_NAM": "103 TAARNEBERG (Emergency Housing)", "ACRE": "2,931 sq ft", "LONGITUDE": -64.921798, "LATITUDE": 18.34128164, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.382867671300005, "SHAPE_Area": 446.14635439599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359772.237499997019768, 256873.529199998825788 ], [ 359766.023999996483326, 256863.221599999815226 ], [ 359754.23929999768734, 256868.950399998575449 ], [ 359757.544699996709824, 256878.633900001645088 ], [ 359763.761900000274181, 256896.847800001502037 ], [ 359764.766800001263618, 256899.791900001466274 ], [ 359778.144400000572205, 256883.328400000929832 ], [ 359772.237499997019768, 256873.529199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401210300", "MAP": "C3-20-T35", "PARCEL_NAM": "BJERG HOME 'A'", "ACRE": null, "LONGITUDE": -64.92566746, "LATITUDE": 18.34652189, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 798.83206191900001, "SHAPE_Area": 27156.863093299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359222.523000001907349, 257430.909800000488758 ], [ 359223.700499996542931, 257436.196600001305342 ], [ 359242.750500001013279, 257494.828299999237061 ], [ 359246.983800001442432, 257502.236699998378754 ], [ 359252.487199999392033, 257513.455099999904633 ], [ 359254.392200000584126, 257513.878400001674891 ], [ 359299.900600001215935, 257534.410100001841784 ], [ 359316.833999998867512, 257533.563400000333786 ], [ 359353.107799999415874, 257529.936000000685453 ], [ 359352.524899996817112, 257533.269799999892712 ], [ 359351.626900002360344, 257544.028200000524521 ], [ 359350.709100000560284, 257557.108500000089407 ], [ 359351.479500003159046, 257561.336599998176098 ], [ 359349.825499996542931, 257566.178300000727177 ], [ 359361.110299997031689, 257566.692800000309944 ], [ 359359.513800002634525, 257564.779899999499321 ], [ 359359.726000003516674, 257539.872600000351667 ], [ 359359.755400002002716, 257539.683899998664856 ], [ 359418.328400000929832, 257513.375700000673532 ], [ 359409.206799998879433, 257487.414500001817942 ], [ 359421.538000002503395, 257477.894799999892712 ], [ 359441.864900000393391, 257458.218400001525879 ], [ 359462.942299999296665, 257445.092000000178814 ], [ 359464.617799997329712, 257437.717399999499321 ], [ 359462.251000002026558, 257431.576299998909235 ], [ 359461.550800003111362, 257419.116099998354912 ], [ 359472.03830000013113, 257418.568599998950958 ], [ 359481.816500000655651, 257406.616300001740456 ], [ 359487.613600000739098, 257388.720800001174212 ], [ 359490.149400003254414, 257375.020500000566244 ], [ 359491.794399999082088, 257371.234299998730421 ], [ 359488.574500001966953, 257370.574700001627207 ], [ 359484.534000001847744, 257371.597100000828505 ], [ 359478.879000000655651, 257372.817299999296665 ], [ 359454.642899997532368, 257378.107400000095367 ], [ 359444.977899998426437, 257376.761700000613928 ], [ 359338.323499999940395, 257401.853300001472235 ], [ 359297.129600003361702, 257409.959899999201298 ], [ 359262.38629999756813, 257418.119300000369549 ], [ 359250.275399997830391, 257419.920000001788139 ], [ 359251.056500002741814, 257422.881700001657009 ], [ 359222.523000001907349, 257430.909800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302080100", "MAP": null, "PARCEL_NAM": "113", "ACRE": null, "LONGITUDE": -64.93339819000001, "LATITUDE": 18.34712351, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.168673238, "SHAPE_Area": 1645.6580255 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358513.968999996781349, 257525.351100001484156 ], [ 358540.773100003600121, 257556.696299999952316 ], [ 358542.853100001811981, 257558.637699998915195 ], [ 358550.435900002717972, 257485.871700000017881 ], [ 358548.682899996638298, 257485.660799998790026 ], [ 358529.428400002419949, 257483.344500001519918 ], [ 358528.003499999642372, 257487.046900000423193 ], [ 358522.224500000476837, 257502.831700000911951 ], [ 358513.968999996781349, 257525.351100001484156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092800", "MAP": "D9-5253-T92", "PARCEL_NAM": "C-44 REM", "ACRE": ".11", "LONGITUDE": -64.92135352, "LATITUDE": 18.34799939, "OBJECTID_1": 12617, "PARCEL_NO_": "105402092800", "Tax_Legal_": "ROSS ESTATE C-44-1 KINGS QUARTER", "Name": "WHEATLEY, RENALDO O", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28500, "Improved_V": 138500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.923817024, "SHAPE_Area": 506.55515498699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359821.765299998223782, 257623.5793999992311 ], [ 359791.270700000226498, 257607.166200000792742 ], [ 359795.513999998569489, 257629.190600000321865 ], [ 359796.593599997460842, 257634.485500000417233 ], [ 359831.276299998164177, 257630.028999999165535 ], [ 359821.765299998223782, 257623.5793999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402092900", "MAP": null, "PARCEL_NAM": "C-43", "ACRE": null, "LONGITUDE": -64.92170173, "LATITUDE": 18.34801446, "OBJECTID_1": 12618, "PARCEL_NO_": "105402092900", "Tax_Legal_": "ROSS ESTATE C-43 KINGS QUARTER", "Name": "TODMAN, RUBY", "Address": "PO Box 303464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30300, "Improved_V": 116600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.84115688099999, "SHAPE_Area": 1211.4269919799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359795.513999998569489, 257629.190600000321865 ], [ 359791.270700000226498, 257607.166200000792742 ], [ 359780.029500000178814, 257612.76240000128746 ], [ 359767.913199998438358, 257615.196299999952316 ], [ 359742.942699998617172, 257612.03660000115633 ], [ 359743.713100001215935, 257616.264800000935793 ], [ 359748.969200000166893, 257639.139499999582767 ], [ 359749.155900001525879, 257639.951799999922514 ], [ 359749.287900000810623, 257640.563799999654293 ], [ 359796.593599997460842, 257634.485500000417233 ], [ 359795.513999998569489, 257629.190600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401140700", "MAP": null, "PARCEL_NAM": "247", "ACRE": null, "LONGITUDE": -64.9268206, "LATITUDE": 18.34776863, "OBJECTID_1": 11681, "PARCEL_NO_": "105401140700", "Tax_Legal_": "HOSPITAL GROUND 247 NEW QUARTER", "Name": "HODGE, D", "Address": "6 Apt 182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11600, "Improved_V": 2000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.181112693399996, "SHAPE_Area": 361.33163220199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359221.182199999690056, 257604.701099999248981 ], [ 359230.208999998867512, 257605.497600000351667 ], [ 359236.542700000107288, 257606.028400000184774 ], [ 359236.542700000107288, 257581.471900001168251 ], [ 359222.291500002145767, 257581.177600000053644 ], [ 359221.881899997591972, 257581.168600000441074 ], [ 359221.182199999690056, 257604.701099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401142000", "MAP": null, "PARCEL_NAM": "239", "ACRE": null, "LONGITUDE": -64.92682132, "LATITUDE": 18.34755287, "OBJECTID_1": 11694, "PARCEL_NO_": "105401142000", "Tax_Legal_": "HOSPITAL GROUND 239 KINGS QTR", "Name": "LEONARD, HICKBIE IRVIN", "Address": "330 Frank Baum Dr", "City": "Schertz", "State": "Texas", "Zip": 78154, "Country": "United States", "Land_Value": 7700, "Improved_V": 81300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.429854117399998, "SHAPE_Area": 338.56100074599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359222.639799997210503, 257555.672400001436472 ], [ 359221.881899997591972, 257581.168600000441074 ], [ 359222.291500002145767, 257581.177600000053644 ], [ 359236.542700000107288, 257581.471900001168251 ], [ 359236.542700000107288, 257559.683499999344349 ], [ 359223.313500002026558, 257555.854699999094009 ], [ 359222.639799997210503, 257555.672400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401140600", "MAP": null, "PARCEL_NAM": "246", "ACRE": null, "LONGITUDE": -64.92696291, "LATITUDE": 18.34776228, "OBJECTID_1": 11680, "PARCEL_NO_": "105401140600", "Tax_Legal_": "HOSPITAL GROUND 246 NEW QUARTER", "Name": "ANDREWS, HELEN", "Address": "33 Macdougal St", "City": "Brooklyn", "State": "New York", "Zip": 11233, "Country": "United States", "Land_Value": 11600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.666775501900005, "SHAPE_Area": 348.22494906499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359206.066699996590614, 257603.889600001275539 ], [ 359214.016400001943111, 257604.068900000303984 ], [ 359221.182199999690056, 257604.701099999248981 ], [ 359221.881899997591972, 257581.168600000441074 ], [ 359220.292499996721745, 257581.133699998259544 ], [ 359206.973300002515316, 257580.841099999845028 ], [ 359206.066699996590614, 257603.889600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401141900", "MAP": null, "PARCEL_NAM": "238", "ACRE": null, "LONGITUDE": -64.92695724, "LATITUDE": 18.34753976, "OBJECTID_1": 11693, "PARCEL_NO_": "105401141900", "Tax_Legal_": "238 HOSPITAL GROUND NEW QUARTER", "Name": "VANTERPOOL, WILLIAM", "Address": "4244 Bronxwood Ave", "City": "Bronx", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 8800, "Improved_V": 47800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.204712646399997, "SHAPE_Area": 386.75149761500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359219.336499996483326, 257554.778599999845028 ], [ 359207.911799997091293, 257554.920699998736382 ], [ 359206.973300002515316, 257580.841099999845028 ], [ 359220.292499996721745, 257581.133699998259544 ], [ 359221.881899997591972, 257581.168600000441074 ], [ 359222.639799997210503, 257555.672400001436472 ], [ 359219.336499996483326, 257554.778599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401140900", "MAP": null, "PARCEL_NAM": "249", "ACRE": null, "LONGITUDE": -64.92644795, "LATITUDE": 18.34770561, "OBJECTID_1": 11683, "PARCEL_NO_": "105401140900", "Tax_Legal_": "HOSPITAL GROUND 249 NEW QUARTER", "Name": "CHESTERFIELD, RAYMOND", "Address": "P.O. BOX 2803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15200, "Improved_V": 37600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.90318024699999, "SHAPE_Area": 637.36176795300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359258.586499996483326, 257605.112799998372793 ], [ 359265.927799999713898, 257604.148200001567602 ], [ 359273.789499998092651, 257604.470400001853704 ], [ 359275.611599996685982, 257604.545099999755621 ], [ 359276.494199998676777, 257604.545099999755621 ], [ 359277.802699998021126, 257587.492400001734495 ], [ 359278.99379999935627, 257571.969999998807907 ], [ 359275.703500002622604, 257571.017700001597404 ], [ 359260.925499998033047, 257566.740499999374151 ], [ 359258.586499996483326, 257605.112799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401142500", "MAP": "F9-2962-T72", "PARCEL_NAM": "248A", "ACRE": ".07", "LONGITUDE": -64.92664242, "LATITUDE": 18.34781784, "OBJECTID_1": 11699, "PARCEL_NO_": "105401142500", "Tax_Legal_": "HOSPITAL GROUND 248A KINGS QTR", "Name": "KING, DELANO J. & EVA E. SAUNDERS", "Address": "PO Box 305422", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4400, "Improved_V": 82900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.163880741300005, "SHAPE_Area": 314.09267778499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359258.586499996483326, 257605.112799998372793 ], [ 359259.441200003027916, 257591.092999998480082 ], [ 359255.67119999974966, 257591.443300001323223 ], [ 359236.542700000107288, 257593.053100001066923 ], [ 359236.542700000107288, 257606.028400000184774 ], [ 359244.417099997401237, 257606.688299998641014 ], [ 359249.576499998569489, 257606.212000001221895 ], [ 359255.053400002419949, 257605.576999999582767 ], [ 359258.586499996483326, 257605.112799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401140800", "MAP": "F9-2962-T72", "PARCEL_NAM": "248", "ACRE": null, "LONGITUDE": -64.92664507000001, "LATITUDE": 18.34770784, "OBJECTID_1": 11682, "PARCEL_NO_": "105401140800", "Tax_Legal_": "HOSPITAL GROUND 248 NEW QUARTER", "Name": "THOMAS, EDWIN", "Address": "248 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36000, "Improved_V": 213000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.198316925399993, "SHAPE_Area": 241.279745956 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359252.555200003087521, 257591.70549999922514 ], [ 359255.67119999974966, 257591.443300001323223 ], [ 359259.441200003027916, 257591.092999998480082 ], [ 359259.999200001358986, 257581.937399998307228 ], [ 359255.64360000193119, 257581.76630000025034 ], [ 359252.6824000030756, 257581.723200000822544 ], [ 359239.222199998795986, 257581.527199998497963 ], [ 359236.542700000107288, 257581.471900001168251 ], [ 359236.542700000107288, 257593.053100001066923 ], [ 359252.555200003087521, 257591.70549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401142100", "MAP": null, "PARCEL_NAM": "240", "ACRE": null, "LONGITUDE": -64.92664517, "LATITUDE": 18.34757586, "OBJECTID_1": 11695, "PARCEL_NO_": "105401142100", "Tax_Legal_": "HOSPITAL GROUND 24O NEW QUARTER", "Name": "HENDRICKS, DERICK, CLETIS, ELMO HENDRICKS JR.", "Address": "3608 Keene Ave", "City": "Baltimore", "State": "Maryland", "Zip": 21214, "Country": "United States", "Land_Value": 9400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.859177048199996, "SHAPE_Area": 443.22017576000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359252.351899996399879, 257581.718400001525879 ], [ 359252.6824000030756, 257581.723200000822544 ], [ 359255.64360000193119, 257581.76630000025034 ], [ 359259.999200001358986, 257581.937399998307228 ], [ 359260.925499998033047, 257566.740499999374151 ], [ 359255.596400000154972, 257565.198100000619888 ], [ 359252.743100002408028, 257564.372299998998642 ], [ 359241.096600003540516, 257561.001600001007318 ], [ 359240.226999998092651, 257560.749899998307228 ], [ 359236.542700000107288, 257559.683499999344349 ], [ 359236.542700000107288, 257581.471900001168251 ], [ 359239.222199998795986, 257581.527199998497963 ], [ 359252.351899996399879, 257581.718400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302282900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93633459, "LATITUDE": 18.34206855, "OBJECTID_1": 10475, "PARCEL_NO_": "105302282900", "Tax_Legal_": "REGJERINGS GADE 9B CROWN PRINCE QTR", "Name": "MONSANTO (LIFE ESTATE), ALDA", "Address": "PO Box 7513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6200, "Improved_V": 41400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.416939648499998, "SHAPE_Area": 120.80598530899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358233.73030000180006, 256960.82880000025034 ], [ 358232.574199996888638, 256954.15089999884367 ], [ 358232.636200003325939, 256946.864100001752377 ], [ 358224.13459999859333, 256947.146600000560284 ], [ 358225.10249999910593, 256962.222300000488758 ], [ 358233.73030000180006, 256960.82880000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302283000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93628101, "LATITUDE": 18.34198342, "OBJECTID_1": 10476, "PARCEL_NO_": "105302283000", "Tax_Legal_": "REGJERINGS GADE 9A CROWN PRINCE QTR", "Name": "MONSANTO, STEPHEN,TREVORE & EDWIN", "Address": "PO Box 7513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13500, "Improved_V": 50200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.442249435899996, "SHAPE_Area": 348.45027914299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358241.4695999994874, 256959.578699998557568 ], [ 358241.50789999961853, 256958.5625 ], [ 358242.41889999806881, 256934.388700000941753 ], [ 358224.680100001394749, 256934.243500001728535 ], [ 358223.857600003480911, 256936.136599998921156 ], [ 358223.807199999690056, 256942.046799998730421 ], [ 358224.13459999859333, 256947.146600000560284 ], [ 358232.636200003325939, 256946.864100001752377 ], [ 358232.574199996888638, 256954.15089999884367 ], [ 358233.73030000180006, 256960.82880000025034 ], [ 358241.4695999994874, 256959.578699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220900", "MAP": null, "PARCEL_NAM": "PRINDCESSE 24,25,26A,27A&27B", "ACRE": null, "LONGITUDE": -64.93765282, "LATITUDE": 18.34136805, "OBJECTID_1": 10226, "PARCEL_NO_": "105302220900", "Tax_Legal_": "PRINDCESSE 24,25,26A,27A&27B GADE", "Name": "MADURO, CLAUDE J.,WINTHROP L.,MABEL J., & OTHERS", "Address": "PO Box 302033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65700, "Improved_V": 40000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.49534609299999, "SHAPE_Area": 768.10495640800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358100.125200003385544, 256892.982599999755621 ], [ 358102.013099998235703, 256875.665500000119209 ], [ 358103.536499999463558, 256861.691300000995398 ], [ 358099.510300002992153, 256861.024999998509884 ], [ 358090.655199997127056, 256859.263799998909235 ], [ 358087.435400001704693, 256858.604200001806021 ], [ 358080.268700003623962, 256857.192499998956919 ], [ 358079.195699997246265, 256867.066100001335144 ], [ 358077.814599998295307, 256879.773899998515844 ], [ 358077.284400001168251, 256884.652499999850988 ], [ 358076.6266999989748, 256890.703999999910593 ], [ 358078.290799997746944, 256890.82660000026226 ], [ 358094.404500000178814, 256892.436200000345707 ], [ 358100.125200003385544, 256892.982599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220900", "MAP": null, "PARCEL_NAM": "PRINDCESSE 24,25,26A,27A&27B", "ACRE": null, "LONGITUDE": -64.93778361, "LATITUDE": 18.34134544, "OBJECTID_1": 10226, "PARCEL_NO_": "105302220900", "Tax_Legal_": "PRINDCESSE 24,25,26A,27A&27B GADE", "Name": "MADURO, CLAUDE J.,WINTHROP L.,MABEL J., & OTHERS", "Address": "PO Box 302033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65700, "Improved_V": 40000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.335967344599993, "SHAPE_Area": 157.80009966 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358074.404799997806549, 256866.618599999696016 ], [ 358072.464100003242493, 256890.339000001549721 ], [ 358072.650200001895428, 256890.358300000429153 ], [ 358074.705200001597404, 256890.55460000038147 ], [ 358076.6266999989748, 256890.703999999910593 ], [ 358079.195699997246265, 256867.066100001335144 ], [ 358079.680399999022484, 256862.606100000441074 ], [ 358080.268700003623962, 256857.192499998956919 ], [ 358078.494699999690056, 256856.842999998480082 ], [ 358075.175700001418591, 256856.1891999989748 ], [ 358074.404799997806549, 256866.618599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220700", "MAP": null, "PARCEL_NAM": "PRINDCESSE 22, 23A, & 23AA", "ACRE": null, "LONGITUDE": -64.93787701, "LATITUDE": 18.34138903, "OBJECTID_1": 10225, "PARCEL_NO_": "105302220700", "Tax_Legal_": "PRINDCESSE 22 & 23A &23AA CROWN PRINCE QUARTER", "Name": "DANIEL, OSSIE LOCKHART", "Address": "831", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29400, "Improved_V": 75800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.972870973100001, "SHAPE_Area": 247.80786470800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358069.09179999679327, 256866.122400000691414 ], [ 358067.184299997985363, 256865.944200001657009 ], [ 358061.737199999392033, 256865.988499999046326 ], [ 358060.299800001084805, 256889.124200001358986 ], [ 358067.806599996984005, 256889.857200000435114 ], [ 358070.530900001525879, 256890.138999998569489 ], [ 358072.444799996912479, 256866.435600001364946 ], [ 358069.09179999679327, 256866.122400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220700", "MAP": null, "PARCEL_NAM": "PRINDCESSE 22, 23A, & 23AA", "ACRE": null, "LONGITUDE": -64.93786747, "LATITUDE": 18.34123294, "OBJECTID_1": 10225, "PARCEL_NO_": "105302220700", "Tax_Legal_": "PRINDCESSE 22 & 23A &23AA CROWN PRINCE QUARTER", "Name": "DANIEL, OSSIE LOCKHART", "Address": "831", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29400, "Improved_V": 75800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.6971845562, "SHAPE_Area": 120.40527826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358069.67230000346899, 256855.105099998414516 ], [ 358067.309900000691414, 256854.639800000935793 ], [ 358062.44030000269413, 256854.670699998736382 ], [ 358061.737199999392033, 256865.988499999046326 ], [ 358067.184299997985363, 256865.944200001657009 ], [ 358072.444799996912479, 256866.435600001364946 ], [ 358073.301899999380112, 256855.820099998265505 ], [ 358069.67230000346899, 256855.105099998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220900", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 24,25,26A,27A&27B", "ACRE": null, "LONGITUDE": -64.93748996, "LATITUDE": 18.34129119, "OBJECTID_1": 10226, "PARCEL_NO_": "105302220900", "Tax_Legal_": "PRINDCESSE 24,25,26A,27A&27B GADE", "Name": "MADURO, CLAUDE J.,WINTHROP L.,MABEL J., & OTHERS", "Address": "PO Box 302033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65700, "Improved_V": 40000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.228178520599997, "SHAPE_Area": 86.221224064799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358102.417900003492832, 256871.951699998229742 ], [ 358111.10639999806881, 256872.368200000375509 ], [ 358112.393299996852875, 256863.241399999707937 ], [ 358103.536499999463558, 256861.691300000995398 ], [ 358102.417900003492832, 256871.951699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220900", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 24,25,26A,27A&27B", "ACRE": null, "LONGITUDE": -64.93750597, "LATITUDE": 18.34142995, "OBJECTID_1": 10226, "PARCEL_NO_": "105302220900", "Tax_Legal_": "PRINDCESSE 24,25,26A,27A&27B GADE", "Name": "MADURO, CLAUDE J.,WINTHROP L.,MABEL J., & OTHERS", "Address": "PO Box 302033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 65700, "Improved_V": 40000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.444114670200001, "SHAPE_Area": 178.13572411600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358111.10639999806881, 256872.368200000375509 ], [ 358102.417900003492832, 256871.951699998229742 ], [ 358102.013099998235703, 256875.665500000119209 ], [ 358100.125200003385544, 256892.982599999755621 ], [ 358101.655900001525879, 256893.128800000995398 ], [ 358108.092200003564358, 256893.743599999696016 ], [ 358110.324299998581409, 256877.914299998432398 ], [ 358111.10639999806881, 256872.368200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302221100", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 27Aaa", "ACRE": null, "LONGITUDE": -64.93741748, "LATITUDE": 18.34142072, "OBJECTID_1": 10227, "PARCEL_NO_": "105302221100", "Tax_Legal_": "PRINDCESSE GADE 27Aaa CROWN PRINCE QUARTER", "Name": "MORALES, MICHEAL", "Address": "PO BOX 1661", "City": "Oakdale", "State": "Connecticut", "Zip": 6379, "Country": "United States", "Land_Value": 29600, "Improved_V": 246300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.822053905600001, "SHAPE_Area": 185.29035239800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358124.211800001561642, 256874.949799999594688 ], [ 358111.861699998378754, 256872.404500000178814 ], [ 358111.10639999806881, 256872.368200000375509 ], [ 358110.324299998581409, 256877.914299998432398 ], [ 358108.092200003564358, 256893.743599999696016 ], [ 358113.142200000584126, 256894.410500001162291 ], [ 358115.027300000190735, 256883.829300001263618 ], [ 358120.218999996781349, 256884.904699999839067 ], [ 358124.211800001561642, 256874.949799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302221700", "MAP": null, "PARCEL_NAM": "PRINDSESSE GADE 17B", "ACRE": "1,353 sq ft", "LONGITUDE": -64.93828858000001, "LATITUDE": 18.34126636, "OBJECTID_1": 10231, "PARCEL_NO_": "105302221700", "Tax_Legal_": "PRINDCESSE GADE 17B CROWN PRINCE", "Name": "LINDO, ISAAC", "Address": "1917 Double Cedar Dr", "City": "Charlotte", "State": "North Carolina", "Zip": 28214, "Country": "United States", "Land_Value": 6900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.754830994099997, "SHAPE_Area": 113.24991147599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358030.120300002396107, 256865.988099999725819 ], [ 358030.160199999809265, 256861.30180000141263 ], [ 358029.315700002014637, 256859.494199998676777 ], [ 358016.955600000917912, 256859.370700001716614 ], [ 358016.681000001728535, 256870.042199999094009 ], [ 358030.120300002396107, 256865.988099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220100", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 8A", "ACRE": "1,080 sq ft", "LONGITUDE": -64.93846146, "LATITUDE": 18.34139545, "OBJECTID_1": 10219, "PARCEL_NO_": "105302220100", "Tax_Legal_": "NYE NORDSIDEVEJ 8A CROWN PRINCE QUARTER", "Name": "NEWTON, KEITH", "Address": "911 Studer Ave", "City": "Columbus", "State": "Ohio", "Zip": 43206, "Country": "United States", "Land_Value": 5200, "Improved_V": 51800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.194152054200003, "SHAPE_Area": 115.273739656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357999.697400003671646, 256883.070799998939037 ], [ 358010.151299998164177, 256883.844200000166893 ], [ 358009.993500001728535, 256882.205400001257658 ], [ 358009.705899998545647, 256879.219300001859665 ], [ 358008.968800000846386, 256871.565900001674891 ], [ 357998.298900000751019, 256873.673900000751019 ], [ 357999.353100001811981, 256880.681400001049042 ], [ 357999.654700003564358, 256882.773899998515844 ], [ 357999.697400003671646, 256883.070799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302220200", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 8C", "ACRE": "1,080 sq ft", "LONGITUDE": -64.93837666, "LATITUDE": 18.34138941, "OBJECTID_1": 10220, "PARCEL_NO_": "105302220200", "Tax_Legal_": "NYE NORDSIDEVEJ 8C CROWN PRINCE QUARTER", "Name": "WARNER, DAMAIN", "Address": "3J Green St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4700, "Improved_V": 23400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.108947082100002, "SHAPE_Area": 102.371793408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358010.151299998164177, 256883.844200000166893 ], [ 358017.649599999189377, 256884.398899998515844 ], [ 358017.429499998688698, 256881.796599999070168 ], [ 358017.142399996519089, 256874.916299998760223 ], [ 358016.681000001728535, 256870.042199999094009 ], [ 358013.283600002527237, 256870.71339999884367 ], [ 358011.759400002658367, 256871.014600001275539 ], [ 358008.968800000846386, 256871.565900001674891 ], [ 358009.705899998545647, 256879.219300001859665 ], [ 358009.993500001728535, 256882.205400001257658 ], [ 358010.151299998164177, 256883.844200000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302420100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93689492, "LATITUDE": 18.34149384, "OBJECTID_1": 10714, "PARCEL_NO_": "105302420100", "Tax_Legal_": "PRINCESSE GADE 29A & 30A CROWN PRINCE QTR", "Name": "THE DIOCESE OF ST. THOMAS, INC.", "Address": "P O BOX 1825", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111000, "Improved_V": 354400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.427862145600002, "SHAPE_Area": 226.269058489 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358177.266199998557568, 256881.813999999314547 ], [ 358164.68129999935627, 256880.298500001430511 ], [ 358163.761799998581409, 256891.315099999308586 ], [ 358163.694700002670288, 256899.183299999684095 ], [ 358174.596799999475479, 256900.474399998784065 ], [ 358177.266199998557568, 256881.813999999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401311000", "MAP": null, "PARCEL_NAM": "38 DRONNINGENS GADE", "ACRE": "38,600 sq ft", "LONGITUDE": -64.92955989, "LATITUDE": 18.34384681, "OBJECTID_1": 11951, "PARCEL_NO_": "105401311000", "Tax_Legal_": "DRONNINGENS GADE 38&39 KINGS QUARTER", "Name": "CIRCA 1675 LLP", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 516900, "Improved_V": 235000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.55693629199999, "SHAPE_Area": 2079.4893277699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358949.221799999475479, 257187.610500000417233 ], [ 358952.961900003254414, 257184.799100000411272 ], [ 358957.486699998378754, 257178.858300000429153 ], [ 358959.789200000464916, 257168.881299998611212 ], [ 358960.533299997448921, 257157.804200001060963 ], [ 358962.362899996340275, 257157.857099998742342 ], [ 358962.915899999439716, 257139.463300000876188 ], [ 358962.919299997389317, 257139.138900000602007 ], [ 358962.799400001764297, 257137.121599998325109 ], [ 358962.437600001692772, 257135.133400000631809 ], [ 358961.839100003242493, 257133.203099999576807 ], [ 358961.012800000607967, 257131.358899999409914 ], [ 358959.970499999821186, 257129.627500001341105 ], [ 358958.72749999910593, 257128.034099999815226 ], [ 358957.30179999768734, 257126.601799998432398 ], [ 358955.714000001549721, 257125.351599998772144 ], [ 358953.987400002777576, 257124.301399998366833 ], [ 358952.146999999880791, 257123.466699998825788 ], [ 358950.219400003552437, 257122.859499998390675 ], [ 358948.232900001108646, 257122.488600000739098 ], [ 358942.596500001847744, 257121.784699998795986 ], [ 358942.008500002324581, 257133.943999998271465 ], [ 358928.165700003504753, 257133.318900000303984 ], [ 358925.61540000140667, 257133.20380000025034 ], [ 358925.582299999892712, 257134.529100000858307 ], [ 358925.303199999034405, 257145.725699998438358 ], [ 358923.763599999248981, 257185.427999999374151 ], [ 358923.67849999666214, 257187.622999999672174 ], [ 358949.221799999475479, 257187.610500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401070100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92895073, "LATITUDE": 18.34396295, "OBJECTID_1": 11489, "PARCEL_NO_": "105401070100", "Tax_Legal_": "100 REM.&100B HOSPITAL GROUND& 37A DRON.&POR 31,32&33 HOSP.LINE", "Name": "MANAGEMENT ASSOCIATES LLC", "Address": "PO Box 1027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 447000, "Improved_V": 489800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.545128877900002, "SHAPE_Area": 15.7944573228 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359005.441699996590614, 257166.500100001692772 ], [ 359008.555100001394749, 257177.714200001209974 ], [ 359008.582299999892712, 257174.860700000077486 ], [ 359008.379399999976158, 257170.587499998509884 ], [ 359007.933399997651577, 257166.332899998873472 ], [ 359005.441699996590614, 257166.500100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401070100", "MAP": null, "PARCEL_NAM": "100 REM", "ACRE": null, "LONGITUDE": -64.92925716000001, "LATITUDE": 18.34413512, "OBJECTID_1": 11489, "PARCEL_NO_": "105401070100", "Tax_Legal_": "100 REM.&100B HOSPITAL GROUND& 37A DRON.&POR 31,32&33 HOSP.LINE", "Name": "MANAGEMENT ASSOCIATES LLC", "Address": "PO Box 1027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 447000, "Improved_V": 489800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.90879892500001, "SHAPE_Area": 1820.6704932299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358963.403999999165535, 257215.082400001585484 ], [ 358973.043300002813339, 257208.219999998807907 ], [ 358975.828400000929832, 257210.410000000149012 ], [ 358987.909199997782707, 257199.519099999219179 ], [ 358991.398599997162819, 257191.808200001716614 ], [ 359007.911700002849102, 257186.070599999278784 ], [ 359002.646600000560284, 257166.687699999660254 ], [ 358973.165200002491474, 257168.666200000792742 ], [ 358972.704199999570847, 257162.587400000542402 ], [ 358970.22580000013113, 257158.25620000064373 ], [ 358970.177299998700619, 257164.170899998396635 ], [ 358970.021099999547005, 257168.39469999819994 ], [ 358968.2871999964118, 257172.484900001436472 ], [ 358965.45440000295639, 257177.290300000458956 ], [ 358959.938000001013279, 257183.522199999541044 ], [ 358954.922700002789497, 257187.607799999415874 ], [ 358951.258299998939037, 257190.840799998492002 ], [ 358944.479500003159046, 257195.202500000596046 ], [ 358938.224399998784065, 257199.024399999529123 ], [ 358954.000299997627735, 257213.334399998188019 ], [ 358957.773800000548363, 257210.424300000071526 ], [ 358963.403999999165535, 257215.082400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401070100", "MAP": "F9-3845-T80", "PARCEL_NAM": "100B", "ACRE": ".22", "LONGITUDE": -64.92913054, "LATITUDE": 18.34431014, "OBJECTID_1": 11489, "PARCEL_NO_": "105401070100", "Tax_Legal_": "100 REM.&100B HOSPITAL GROUND& 37A DRON.&POR 31,32&33 HOSP.LINE", "Name": "MANAGEMENT ASSOCIATES LLC", "Address": "PO Box 1027", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 447000, "Improved_V": 489800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.292060435, "SHAPE_Area": 769.57124102700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358963.403999999165535, 257215.082400001585484 ], [ 358983.981700003147125, 257229.52760000154376 ], [ 359000.548799999058247, 257208.337699998170137 ], [ 359003.72580000013113, 257203.092199999839067 ], [ 359005.713299997150898, 257195.920000001788139 ], [ 359007.911700002849102, 257186.070599999278784 ], [ 358991.398599997162819, 257191.808200001716614 ], [ 358987.909199997782707, 257199.519099999219179 ], [ 358975.828400000929832, 257210.410000000149012 ], [ 358973.043300002813339, 257208.219999998807907 ], [ 358963.403999999165535, 257215.082400001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401482500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92654805, "LATITUDE": 18.34345088, "OBJECTID_1": 12179, "PARCEL_NO_": "105401482500", "Tax_Legal_": "61B PRINDSENS GADE KINGS QTR", "Name": "DE FREITAS, TRUSTEE, AUSSELITA", "Address": "PO Box 993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4100, "Improved_V": 97100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.220039353399997, "SHAPE_Area": 171.663652039 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359266.358599998056889, 257126.418000001460314 ], [ 359265.464400000870228, 257104.978100001811981 ], [ 359259.276799999177456, 257105.614500001072884 ], [ 359257.276799999177456, 257105.724800001829863 ], [ 359258.027699999511242, 257125.902199998497963 ], [ 359266.358599998056889, 257126.418000001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402080200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92374996, "LATITUDE": 18.34332711, "OBJECTID_1": 12550, "PARCEL_NO_": "105402080200", "Tax_Legal_": "MADAMBERG 4BB KINGS QTR", "Name": "MARIAN A RAIMER and LAVERNE A RAIMER", "Address": "PO BOX 307962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.87283466, "SHAPE_Area": 1067.62796187 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359572.917300000786781, 257123.958099998533726 ], [ 359569.112700000405312, 257084.255300000309944 ], [ 359566.324000000953674, 257084.397700000554323 ], [ 359540.83389999717474, 257085.699200000613928 ], [ 359548.288999997079372, 257125.976700000464916 ], [ 359572.917300000786781, 257123.958099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402080900", "MAP": "D9-8011-T007", "PARCEL_NAM": "4BA", "ACRE": ".22", "LONGITUDE": -64.92379017, "LATITUDE": 18.34301879, "OBJECTID_1": 12557, "PARCEL_NO_": "105402080900", "Tax_Legal_": "MADAMSBERG 4BA KINGS QTR", "Name": "MARIAN A RAIMER and LAVERNE A RAIMER", "Address": "PO BOX 307962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23700, "Improved_V": 75000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.243450819, "SHAPE_Area": 926.59401663100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359561.438199996948242, 257055.082899998873472 ], [ 359536.460900001227856, 257058.348900001496077 ], [ 359538.506499998271465, 257086.017400000244379 ], [ 359540.83389999717474, 257085.699200000613928 ], [ 359566.324000000953674, 257084.397700000554323 ], [ 359569.112700000405312, 257084.255300000309944 ], [ 359569.715700000524521, 257060.521000001579523 ], [ 359569.845499999821186, 257055.413400001823902 ], [ 359569.685999996960163, 257053.953499998897314 ], [ 359566.641099996864796, 257054.402499999850988 ], [ 359561.438199996948242, 257055.082899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402080700", "MAP": "D9-8011-T007", "PARCEL_NAM": "4B", "ACRE": ".24", "LONGITUDE": -64.9237766, "LATITUDE": 18.34266339, "OBJECTID_1": 12555, "PARCEL_NO_": "105402080700", "Tax_Legal_": "MADAMBERG 4B KINGS QTR", "Name": "BENJAMIN, SR., KENNETH R. & KENNETH R. BENJAMIN JR.", "Address": "PO Box 7814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25500, "Improved_V": 77300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.40475081400001, "SHAPE_Area": 1169.34923282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359541.733199998736382, 257009.725000001490116 ], [ 359544.414800003170967, 257044.330600000917912 ], [ 359546.212300002574921, 257057.073800001293421 ], [ 359561.438199996948242, 257055.082899998873472 ], [ 359566.641099996864796, 257054.402499999850988 ], [ 359569.685999996960163, 257053.953499998897314 ], [ 359567.899400003254414, 257037.598600000143051 ], [ 359564.072999998927116, 257002.572299998253584 ], [ 359562.82940000295639, 257002.999600000679493 ], [ 359559.653599999845028, 257004.070000000298023 ], [ 359556.471699997782707, 257005.121899999678135 ], [ 359553.283699996769428, 257006.155099999159575 ], [ 359550.611100003123283, 257007.005399998277426 ], [ 359547.934299997985363, 257007.842700000852346 ], [ 359545.2533999979496, 257008.666900001466274 ], [ 359542.568599998950958, 257009.478000000119209 ], [ 359542.20610000193119, 257009.585200000554323 ], [ 359541.733199998736382, 257009.725000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402081600", "MAP": "D9-8011-T007", "PARCEL_NAM": "4E", "ACRE": ".10", "LONGITUDE": -64.92395983, "LATITUDE": 18.34263851, "OBJECTID_1": 12563, "PARCEL_NO_": "105402081600", "Tax_Legal_": "MADAMBERG 4E KINGS QTR", "Name": "GEORGE, THELMA & LAMBERT", "Address": "PO Box 7514", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10900, "Improved_V": 26000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.351058103699998, "SHAPE_Area": 473.59003656099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359527.229999996721745, 257013.838500000536442 ], [ 359530.838200002908707, 257045.567200001329184 ], [ 359544.414800003170967, 257044.330600000917912 ], [ 359541.733199998736382, 257009.725000001490116 ], [ 359538.794299997389317, 257010.594000000506639 ], [ 359535.012500002980232, 257011.684000000357628 ], [ 359531.223300002515316, 257012.748100001364946 ], [ 359527.750799998641014, 257013.697599999606609 ], [ 359527.42679999768734, 257013.786200001835823 ], [ 359527.229999996721745, 257013.838500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402081000", "MAP": null, "PARCEL_NAM": "5A MADAMBERG", "ACRE": null, "LONGITUDE": -64.92351083, "LATITUDE": 18.34301135, "OBJECTID_1": 12558, "PARCEL_NO_": "105402081000", "Tax_Legal_": "MADAMBERG 5A KINGS QTR", "Name": "HODGE, ALVIN S.", "Address": "PO Box 7142", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13500, "Improved_V": 136600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.332887648, "SHAPE_Area": 634.06487037500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359590.5304000005126, 257079.244699999690056 ], [ 359598.256899997591972, 257077.437199998646975 ], [ 359597.828900001943111, 257071.460499998182058 ], [ 359596.735600002110004, 257056.195599999278784 ], [ 359587.849399998784065, 257057.618099998682737 ], [ 359569.715700000524521, 257060.521000001579523 ], [ 359569.112800002098083, 257084.255300000309944 ], [ 359590.5304000005126, 257079.244699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402081800", "MAP": "A3-110-T70", "PARCEL_NAM": "2 MADAMBERG", "ACRE": null, "LONGITUDE": -64.92348887, "LATITUDE": 18.3425321, "OBJECTID_1": 12565, "PARCEL_NO_": "105402081800", "Tax_Legal_": "MADAMBERG 2 & 3A KINGS QTR.", "Name": "MADURO, CLAUDE J.,WINTHROP L.,MABEL J., & OTHERS", "Address": "PO Box 302033", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12700, "Improved_V": 149400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.893192427, "SHAPE_Area": 633.62604064499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359594.947999998927116, 257017.152100000530481 ], [ 359586.944600000977516, 256994.179900001734495 ], [ 359584.51519999653101, 256995.129299998283386 ], [ 359582.877099998295307, 256995.758499998599291 ], [ 359581.237099997699261, 256996.382699999958277 ], [ 359579.595100000500679, 256997.001899998635054 ], [ 359577.951300002634525, 256997.61600000038743 ], [ 359574.972199998795986, 256998.714499998837709 ], [ 359573.57320000231266, 256999.221500001847744 ], [ 359582.970399998128414, 257035.874299999326468 ], [ 359583.623400002717972, 257038.421399999409914 ], [ 359591.413699999451637, 257036.925900001078844 ], [ 359597.394599996507168, 257035.777699999511242 ], [ 359594.947999998927116, 257017.152100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402100500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92294481, "LATITUDE": 18.34198486, "OBJECTID_1": 12689, "PARCEL_NO_": "105402100500", "Tax_Legal_": "12A TAARNEBERG KINGS QTR", "Name": "NORMIL, ELSIE", "Address": "1313 Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.527673609700003, "SHAPE_Area": 82.422127828399994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359649.461199998855591, 256959.963700000196695 ], [ 359646.241099998354912, 256950.530600000172853 ], [ 359638.524499997496605, 256953.257199998944998 ], [ 359641.870099999010563, 256962.923000000417233 ], [ 359644.11429999768734, 256962.048000000417233 ], [ 359646.358599998056889, 256961.173000000417233 ], [ 359648.602899998426437, 256960.298200000077486 ], [ 359649.461199998855591, 256959.963700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402100800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92290674, "LATITUDE": 18.34183864, "OBJECTID_1": 12692, "PARCEL_NO_": "105402100800", "Tax_Legal_": "15A TAARNEBERG KINGS QUARTER", "Name": "NORMIL, ELSIE", "Address": "1313 Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6000, "Improved_V": 66500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.772016396, "SHAPE_Area": 287.87340982299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359646.241099998354912, 256950.530600000172853 ], [ 359649.461199998855591, 256959.963700000196695 ], [ 359650.847199998795986, 256959.42339999973774 ], [ 359652.614200003445148, 256958.734700001776218 ], [ 359654.38120000064373, 256958.046000000089407 ], [ 359656.148199997842312, 256957.357400000095367 ], [ 359657.915200002491474, 256956.668800000101328 ], [ 359652.351599998772144, 256939.168699998408556 ], [ 359647.050200000405312, 256922.493700001388788 ], [ 359638.123800002038479, 256926.650600001215935 ], [ 359644.259499996900558, 256943.604800000786781 ], [ 359649.665100000798702, 256941.712400000542402 ], [ 359651.984999999403954, 256948.500999998301268 ], [ 359647.880699999630451, 256949.951299998909235 ], [ 359646.241099998354912, 256950.530600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401504000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9261166, "LATITUDE": 18.34286055, "OBJECTID_1": 12238, "PARCEL_NO_": "105401504000", "Tax_Legal_": "DRONNINGENS GADE 63 KINGS QUARTER", "Name": "KO987FLA INC", "Address": "PO Box 9355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35200, "Improved_V": 243700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.564454061199996, "SHAPE_Area": 341.69857966799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359314.445000000298023, 257065.943399999290705 ], [ 359312.618900001049042, 257035.276999998837709 ], [ 359310.138800002634525, 257035.384399998933077 ], [ 359307.659299999475479, 257035.505399998277426 ], [ 359305.180500000715256, 257035.639699999243021 ], [ 359302.702500000596046, 257035.787500001490116 ], [ 359301.449799999594688, 257035.86879999935627 ], [ 359303.334899999201298, 257066.351599998772144 ], [ 359304.851599998772144, 257066.284699998795986 ], [ 359305.010399997234344, 257066.277699999511242 ], [ 359314.445000000298023, 257065.943399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401503400", "MAP": null, "PARCEL_NAM": "58A", "ACRE": "0.07", "LONGITUDE": -64.92665305, "LATITUDE": 18.34285414, "OBJECTID_1": 12232, "PARCEL_NO_": "105401503400", "Tax_Legal_": "DRONNINGENS GADE 58A KINGS QUARTER", "Name": "REY, THOMAS, EVADNEY & SHERWIN", "Address": "16750 SW 248 St", "City": "Homestead", "State": "Florida", "Zip": 33031, "Country": "United States", "Land_Value": 43200, "Improved_V": 41800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.471390592099993, "SHAPE_Area": 277.92113992100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359259.337899997830391, 257058.666000001132488 ], [ 359257.413400001823902, 257039.384799998253584 ], [ 359255.438199996948242, 257039.54280000180006 ], [ 359251.843199998140335, 257039.829500000923872 ], [ 359248.248099997639656, 257040.115299999713898 ], [ 359243.148500002920628, 257040.519200000911951 ], [ 359245.266699999570847, 257060.048599999397993 ], [ 359246.781000003218651, 257059.964899998158216 ], [ 359259.337899997830391, 257058.666000001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401503100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92705438, "LATITUDE": 18.34305778, "OBJECTID_1": 12230, "PARCEL_NO_": "105401503100", "Tax_Legal_": "DRONNINGENS GADE 55D KINGS QUARTER", "Name": "SEVEN DAY ADVENTIST, INC.", "Address": "PO Box 886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.710200156200003, "SHAPE_Area": 57.224591216599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359214.442900002002716, 257073.806800000369549 ], [ 359214.114000000059605, 257068.739799998700619 ], [ 359205.569799996912479, 257069.607599999755621 ], [ 359202.897200003266335, 257069.879000000655651 ], [ 359203.220499999821186, 257074.946600001305342 ], [ 359206.058300003409386, 257074.658399999141693 ], [ 359214.442900002002716, 257073.806800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401504500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92706512, "LATITUDE": 18.34291773, "OBJECTID_1": 12243, "PARCEL_NO_": "105401504500", "Tax_Legal_": "DRONNINGENS GADE 55C KINGS QUARTER", "Name": "SEVEN DAY ADVENTIST, INC.", "Address": "PO Box 886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18000, "Improved_V": 395400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.5508631764, "SHAPE_Area": 292.76774232899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359214.114000000059605, 257068.739799998700619 ], [ 359212.437899999320507, 257042.915100000798702 ], [ 359211.14469999819994, 257043.014699999243021 ], [ 359208.449199996888638, 257043.221700001507998 ], [ 359205.753600001335144, 257043.428300000727177 ], [ 359203.058100000023842, 257043.634399998933077 ], [ 359202.601499997079372, 257043.669300001114607 ], [ 359202.144900001585484, 257043.704100001603365 ], [ 359201.688299998641014, 257043.738899998366833 ], [ 359201.231700003147125, 257043.773800000548363 ], [ 359202.897200003266335, 257069.879000000655651 ], [ 359205.569799996912479, 257069.607599999755621 ], [ 359214.114000000059605, 257068.739799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401500700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92690761, "LATITUDE": 18.34324655, "OBJECTID_1": 12206, "PARCEL_NO_": "105401500700", "Tax_Legal_": "PRINDSENS GADE 16 KINGS QUARTER", "Name": "MALONE, CLAUDE D", "Address": "PO Box 411263", "City": "Melbourne", "State": "Florida", "Zip": 32941, "Country": "United States", "Land_Value": 6700, "Improved_V": 59900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.135158931899994, "SHAPE_Area": 280.77784151499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359215.36879999935627, 257088.073100000619888 ], [ 359216.265100002288818, 257101.882100000977516 ], [ 359218.801899999380112, 257101.742199998348951 ], [ 359232.581900000572205, 257100.869899999350309 ], [ 359231.803099997341633, 257083.550999999046326 ], [ 359217.396899998188019, 257085.054099999368191 ], [ 359215.180500000715256, 257085.1706000007689 ], [ 359215.36879999935627, 257088.073100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502000", "MAP": null, "PARCEL_NAM": "56B DRONNINGENS GADE", "ACRE": null, "LONGITUDE": -64.92691537, "LATITUDE": 18.3430949, "OBJECTID_1": 12219, "PARCEL_NO_": "105401502000", "Tax_Legal_": "56B&56A DRONNINGENS GADE KINGS QUARTER", "Name": "MILLINER, KAY R., FAYE BOSCHULTE & OTHERS", "Address": "PO Box 7691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99000, "Improved_V": 566000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.286869488500002, "SHAPE_Area": 288.508314939 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359231.803099997341633, 257083.550999999046326 ], [ 359232.413400001823902, 257077.890599999576807 ], [ 359231.494400002062321, 257066.974599998444319 ], [ 359216.007200002670288, 257068.547499999403954 ], [ 359214.114000000059605, 257068.739799998700619 ], [ 359214.442900002002716, 257073.806800000369549 ], [ 359215.180500000715256, 257085.1706000007689 ], [ 359217.396899998188019, 257085.054099999368191 ], [ 359231.803099997341633, 257083.550999999046326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502000", "MAP": null, "PARCEL_NAM": "56A DRONNINGENS GADE", "ACRE": "4,568 sq ft", "LONGITUDE": -64.92693114, "LATITUDE": 18.34290573, "OBJECTID_1": 12219, "PARCEL_NO_": "105401502000", "Tax_Legal_": "56B&56A DRONNINGENS GADE KINGS QUARTER", "Name": "MILLINER, KAY R., FAYE BOSCHULTE & OTHERS", "Address": "PO Box 7691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 99000, "Improved_V": 566000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.781512793299996, "SHAPE_Area": 441.92626814099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359212.437899999320507, 257042.915100000798702 ], [ 359214.114000000059605, 257068.739799998700619 ], [ 359216.007200002670288, 257068.547499999403954 ], [ 359231.494400002062321, 257066.974599998444319 ], [ 359229.358300000429153, 257041.602899998426437 ], [ 359225.478900000452995, 257041.9054000005126 ], [ 359221.599399998784065, 257042.206999998539686 ], [ 359217.719800002872944, 257042.507599998265505 ], [ 359213.84009999781847, 257042.807100001722574 ], [ 359212.437899999320507, 257042.915100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401503500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92654491, "LATITUDE": 18.34281841, "OBJECTID_1": 12233, "PARCEL_NO_": "105401503500", "Tax_Legal_": "DRONNINGENS GADE 59A KINGS QUARTER", "Name": "POWELL, MT. VERNON JOSHUA", "Address": "1042 Manchester Cir", "City": "Winter Park", "State": "Florida", "Zip": 32792, "Country": "United States", "Land_Value": 5900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.5585210188, "SHAPE_Area": 129.81675054600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359258.791000001132488, 257053.186700001358986 ], [ 359260.279200002551079, 257053.160700000822544 ], [ 359268.076999999582767, 257052.615499999374151 ], [ 359267.472499996423721, 257051.30799999833107 ], [ 359267.2449000030756, 257050.368299998342991 ], [ 359267.137500002980232, 257048.254000000655651 ], [ 359267.547399997711182, 257038.570900000631809 ], [ 359265.41889999806881, 257038.742400001734495 ], [ 359263.290299996733665, 257038.913699999451637 ], [ 359261.161799997091293, 257039.084600001573563 ], [ 359259.03320000320673, 257039.255300000309944 ], [ 359257.413400001823902, 257039.384799998253584 ], [ 359258.791000001132488, 257053.186700001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92651788000001, "LATITUDE": 18.34296823, "OBJECTID_1": 12223, "PARCEL_NO_": "105401502400", "Tax_Legal_": "DRONNINGENS GADE 59C KINGS QUARTER", "Name": "HENRY, ST. CLAIR E.", "Address": "1655 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3300, "Improved_V": 94100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.301876772, "SHAPE_Area": 201.82217236100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359273.267200000584126, 257068.799199998378754 ], [ 359272.801700003445148, 257067.583000000566244 ], [ 359272.361699998378754, 257066.404100000858307 ], [ 359272.010399997234344, 257064.844399999827147 ], [ 359270.043499998748302, 257058.565400000661612 ], [ 359268.701800003647804, 257055.217300001531839 ], [ 359268.245099999010563, 257053.810899998992682 ], [ 359268.076999999582767, 257052.615499999374151 ], [ 359260.279200002551079, 257053.160700000822544 ], [ 359258.791000001132488, 257053.186700001358986 ], [ 359259.337899997830391, 257058.666000001132488 ], [ 359260.895599998533726, 257071.332600001245737 ], [ 359273.868600003421307, 257070.376299999654293 ], [ 359273.267200000584126, 257068.799199998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92662731, "LATITUDE": 18.34306028, "OBJECTID_1": 12221, "PARCEL_NO_": "105401502200", "Tax_Legal_": "DRONNINGENS GADE 58B KINGS QUARTER", "Name": "CHARLES, JASON", "Address": "2B Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40300, "Improved_V": 85100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.088660880999996, "SHAPE_Area": 375.32933868700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359262.223300002515316, 257085.232400000095367 ], [ 359260.895599998533726, 257071.332600001245737 ], [ 359259.337899997830391, 257058.666000001132488 ], [ 359246.781000003218651, 257059.964899998158216 ], [ 359245.266699999570847, 257060.048599999397993 ], [ 359245.859700001776218, 257065.515599999576807 ], [ 359248.076499998569489, 257085.954199999570847 ], [ 359249.602799996733665, 257085.906100001186132 ], [ 359262.223300002515316, 257085.232400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92660627, "LATITUDE": 18.34324196, "OBJECTID_1": 12209, "PARCEL_NO_": "105401501000", "Tax_Legal_": "14 PRINDSENS GADE KINGS QUARTER", "Name": "BENJAMIN, COLLEEN & ADELBERT D. MOLYNEAUX, SR", "Address": "1527 Prindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4200, "Improved_V": 82200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.421781821400003, "SHAPE_Area": 198.510359814 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359263.564300000667572, 257099.272599998861551 ], [ 359262.223300002515316, 257085.232400000095367 ], [ 359249.602799996733665, 257085.906100001186132 ], [ 359248.076499998569489, 257085.954199999570847 ], [ 359249.604599997401237, 257100.04280000180006 ], [ 359251.131399996578693, 257099.958599999547005 ], [ 359263.564300000667572, 257099.272599998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92646058, "LATITUDE": 18.34324833, "OBJECTID_1": 12210, "PARCEL_NO_": "105401501100", "Tax_Legal_": "13A PRINDSENS GADE KINGS QTR", "Name": "THOMAS-EMMANUEL, ANGELA,EMMANUEL, BRIAN", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3100, "Improved_V": 49000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.176830232599997, "SHAPE_Area": 175.426351321 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359279.645300000905991, 257098.385400000959635 ], [ 359279.123599998652935, 257087.531700000166893 ], [ 359263.460600003600121, 257088.665300000458956 ], [ 359262.556900002062321, 257088.725099999457598 ], [ 359263.564300000667572, 257099.272599998861551 ], [ 359264.406900003552437, 257099.226100001484156 ], [ 359279.645300000905991, 257098.385400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92646846, "LATITUDE": 18.34316321, "OBJECTID_1": 12211, "PARCEL_NO_": "105401501200", "Tax_Legal_": "13B PRINDSENS GADE KINGS QTR", "Name": "THOMAS-EMMANUEL, ANGELA,EMMANUEL, BRIAN", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021736, "Country": "United States", "Land_Value": 3100, "Improved_V": 34100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.988413748799999, "SHAPE_Area": 138.010861998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359279.123599998652935, 257087.531700000166893 ], [ 359278.735500000417233, 257079.456999998539686 ], [ 359262.71679999679327, 257080.36430000141263 ], [ 359261.768100000917912, 257080.466499999165535 ], [ 359262.223300002515316, 257085.232400000095367 ], [ 359262.556900002062321, 257088.725099999457598 ], [ 359263.460600003600121, 257088.665300000458956 ], [ 359279.123599998652935, 257087.531700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92648615, "LATITUDE": 18.34307043, "OBJECTID_1": 12222, "PARCEL_NO_": "105401502300", "Tax_Legal_": "DRONNINGENS GADE 59B KINGS QUARTER", "Name": "CLENDINEN, CLETIS A", "Address": "PO Box 423", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.303047144899999, "SHAPE_Area": 84.394962295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359261.419200003147125, 257076.8136 ], [ 359262.39019999653101, 257076.719300001859665 ], [ 359278.101700000464916, 257076.061500001698732 ], [ 359273.868600003421307, 257070.376299999654293 ], [ 359260.895599998533726, 257071.332600001245737 ], [ 359261.419200003147125, 257076.8136 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401501300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9262866, "LATITUDE": 18.34320101, "OBJECTID_1": 12212, "PARCEL_NO_": "105401501300", "Tax_Legal_": "PRINDSENS GADE 12 KINGS QUARTER", "Name": "MICHAEL, E", "Address": "240 Lombard St", "City": "San Francisco", "State": "California", "Zip": 94111, "Country": "United States", "Land_Value": 41200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.970331907399995, "SHAPE_Area": 398.62717917999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359300.827299997210503, 257097.21680000051856 ], [ 359299.526100002229214, 257078.279500000178814 ], [ 359280.462899997830391, 257079.359200000762939 ], [ 359278.735500000417233, 257079.456999998539686 ], [ 359279.123599998652935, 257087.531700000166893 ], [ 359279.645300000905991, 257098.385400000959635 ], [ 359281.773500002920628, 257098.26799999922514 ], [ 359300.827299997210503, 257097.21680000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401502800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92751278, "LATITUDE": 18.34304874, "OBJECTID_1": 12227, "PARCEL_NO_": "105401502800", "Tax_Legal_": "DRONNINGENS GADE 53C KINGS QUARTER", "Name": "MCLEAN, LEROY", "Address": "53C DRONNINGENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3000, "Improved_V": 35100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.1606933021, "SHAPE_Area": 206.19595391799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359150.168099999427795, 257066.203099999576807 ], [ 359150.901699997484684, 257076.762499999254942 ], [ 359152.878499999642372, 257076.551600001752377 ], [ 359170.238099999725819, 257074.699499998241663 ], [ 359169.598700001835823, 257064.129999998956919 ], [ 359152.151199996471405, 257065.991500001400709 ], [ 359150.168099999427795, 257066.203099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401504200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92752284, "LATITUDE": 18.34292154, "OBJECTID_1": 12241, "PARCEL_NO_": "105401504200", "Tax_Legal_": "DRONNINGENS GADE 53A KINGS QUARTER", "Name": "ROBERTS, LIONEL V", "Address": "PO Box 9782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42300, "Improved_V": 141500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.504220590499997, "SHAPE_Area": 345.75192843000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359169.598700001835823, 257064.129999998956919 ], [ 359168.543600000441074, 257046.690999999642372 ], [ 359150.930100001394749, 257048.262899998575449 ], [ 359148.934000000357628, 257048.440999999642372 ], [ 359150.168099999427795, 257066.203099999576807 ], [ 359152.151199996471405, 257065.991500001400709 ], [ 359169.598700001835823, 257064.129999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401561000", "MAP": null, "PARCEL_NAM": "16 & 17A NORRE GADE", "ACRE": "7,427 sq ft", "LONGITUDE": -64.92741839, "LATITUDE": 18.34166109, "OBJECTID_1": 12353, "PARCEL_NO_": "105401561000", "Tax_Legal_": "NORRE GADE-SCHOOL 15A, 16 & 17A KINGS QTR", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 332200, "Improved_V": 363200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.10476718300001, "SHAPE_Area": 853.13015504600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359194.299599997699261, 256928.586500000208616 ], [ 359181.17059999704361, 256929.318900000303984 ], [ 359178.39190000295639, 256895.206900000572205 ], [ 359158.491899996995926, 256896.956199999898672 ], [ 359161.683100000023842, 256935.918499998748302 ], [ 359179.659699998795986, 256934.782200001180172 ], [ 359194.020400002598763, 256933.83559999987483 ], [ 359194.299599997699261, 256928.586500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401561200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92727638, "LATITUDE": 18.34161146, "OBJECTID_1": 12354, "PARCEL_NO_": "105401561200", "Tax_Legal_": "NORRE GADE 17B KINGS QUARTER", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24800, "Improved_V": 767400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.103738160500001, "SHAPE_Area": 466.402307264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359194.299599997699261, 256928.586500000208616 ], [ 359192.181100003421307, 256893.784000001847744 ], [ 359178.39190000295639, 256895.206900000572205 ], [ 359181.17059999704361, 256929.318900000303984 ], [ 359194.299599997699261, 256928.586500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401560100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92769908, "LATITUDE": 18.34209671, "OBJECTID_1": 12345, "PARCEL_NO_": "105401560100", "Tax_Legal_": "KONGENS GADE 43A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 54400, "Improved_V": 221400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.666562005800003, "SHAPE_Area": 581.41654644799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359153.252599999308586, 256977.395700000226498 ], [ 359151.635799996554852, 256951.213100001215935 ], [ 359129.429700002074242, 256952.460799999535084 ], [ 359131.005699999630451, 256975.787599999457598 ], [ 359131.072200000286102, 256976.247099999338388 ], [ 359131.376299999654293, 256977.051500000059605 ], [ 359131.89299999922514, 256977.738899998366833 ], [ 359132.58110000193119, 256978.254700001329184 ], [ 359133.385899998247623, 256978.557700000703335 ], [ 359134.243299998342991, 256978.6239 ], [ 359153.252599999308586, 256977.395700000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401560200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92754461, "LATITUDE": 18.34202528, "OBJECTID_1": 12346, "PARCEL_NO_": "105401560200", "Tax_Legal_": "KONGENS GADE 44 KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.47753376, "SHAPE_Area": 457.35139934099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359165.017899997532368, 256976.635600000619888 ], [ 359161.683100000023842, 256935.918499998748302 ], [ 359151.769599996507168, 256936.545200001448393 ], [ 359151.635799996554852, 256951.213100001215935 ], [ 359153.252599999308586, 256977.395700000226498 ], [ 359165.017899997532368, 256976.635600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401571800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92599288, "LATITUDE": 18.34171043, "OBJECTID_1": 12373, "PARCEL_NO_": "105401571800", "Tax_Legal_": "BJERGE GADE 1OA KINGS QUARTER", "Name": "CREQUE, CLEONE & HODGE, TANYA C", "Address": "PO Box 306072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59500, "Improved_V": 123400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.4104283076, "SHAPE_Area": 362.39632025700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359310.550999999046326, 256931.809399999678135 ], [ 359312.112700000405312, 256931.692999999970198 ], [ 359334.832800000905991, 256930.390500001609325 ], [ 359334.716600000858307, 256929.225499998778105 ], [ 359333.310500003397465, 256915.128199998289347 ], [ 359309.263300001621246, 256917.258699998259544 ], [ 359310.550999999046326, 256931.809399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401571900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92577675, "LATITUDE": 18.34169479, "OBJECTID_1": 12374, "PARCEL_NO_": "105401571900", "Tax_Legal_": "BJERGE GADE 10B KINGS QUARTER", "Name": "HASSELL, GISMONDA", "Address": "PO Box 7805", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.806405784199995, "SHAPE_Area": 338.84103101699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359334.832800000905991, 256930.390500001609325 ], [ 359357.526799999177456, 256929.089499998837709 ], [ 359356.972800001502037, 256926.796000000089407 ], [ 359353.710299998521805, 256913.289299998432398 ], [ 359333.310500003397465, 256915.128199998289347 ], [ 359334.716600000858307, 256929.225499998778105 ], [ 359334.832800000905991, 256930.390500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401570400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92597538, "LATITUDE": 18.34204267, "OBJECTID_1": 12361, "PARCEL_NO_": "105401570400", "Tax_Legal_": "BJERGE GADE 12B KINGS QUARTER", "Name": "RAMOS, LUZ", "Address": "1147 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27200, "Improved_V": 54400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.503254750699995, "SHAPE_Area": 225.69608712199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359334.998999997973442, 256955.010499998927116 ], [ 359312.464000001549721, 256955.712499998509884 ], [ 359313.199000000953674, 256966.439599998295307 ], [ 359319.957000002264977, 256966.05629999935627 ], [ 359325.02080000191927, 256965.487500000745058 ], [ 359330.079599998891354, 256964.876299999654293 ], [ 359335.061200000345707, 256964.232200000435114 ], [ 359334.998999997973442, 256955.010499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401571400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92575238000001, "LATITUDE": 18.34184485, "OBJECTID_1": 12370, "PARCEL_NO_": "105401571400", "Tax_Legal_": "BJERGE GADE 11AA KINGS QTR", "Name": "TORRES, FLORICE CORBIER", "Address": "8713 Windsor Mill Rd", "City": "Windsor Mill", "State": "Maryland", "Zip": 21244, "Country": "United States", "Land_Value": 7700, "Improved_V": 130300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.122856002999995, "SHAPE_Area": 436.02990002299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359346.182700000703335, 256947.310300000011921 ], [ 359361.812100000679493, 256946.830099999904633 ], [ 359360.913500003516674, 256943.109999999403954 ], [ 359357.526799999177456, 256929.089499998837709 ], [ 359334.832800000905991, 256930.390500001609325 ], [ 359334.937899999320507, 256945.958500001579523 ], [ 359334.949299998581409, 256947.6554000005126 ], [ 359346.182700000703335, 256947.310300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401571200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92599613, "LATITUDE": 18.34189573, "OBJECTID_1": 12368, "PARCEL_NO_": "105401571200", "Tax_Legal_": "BJERGE GADE 11B KINGS QUARTER", "Name": "CUMMINGS, S. & CHRISTIAN, J", "Address": "PO Box 2045", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 4800, "Improved_V": 42200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.172830399699997, "SHAPE_Area": 154.93926393199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359313.435300000011921, 256948.316399998962879 ], [ 359331.504600003361702, 256947.761199999600649 ], [ 359331.42400000244379, 256946.343800000846386 ], [ 359331.035400003194809, 256939.511300001293421 ], [ 359311.420400001108646, 256940.961599998176098 ], [ 359311.614500001072884, 256948.301399998366833 ], [ 359313.435300000011921, 256948.316399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401571300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9259728, "LATITUDE": 18.34182688, "OBJECTID_1": 12369, "PARCEL_NO_": "105401571300", "Tax_Legal_": "BJERGE GADE 11A KINGS QUARTER", "Name": "CREQUE, CLEONE & HODGE, TANYA C. C", "Address": "PO Box 306072", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.160229584800007, "SHAPE_Area": 246.28312645 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359331.504600003361702, 256947.761199999600649 ], [ 359334.949299998581409, 256947.6554000005126 ], [ 359334.937899999320507, 256945.958500001579523 ], [ 359334.832800000905991, 256930.390500001609325 ], [ 359312.112700000405312, 256931.692999999970198 ], [ 359310.550999999046326, 256931.809399999678135 ], [ 359311.420400001108646, 256940.961599998176098 ], [ 359331.035400003194809, 256939.511300001293421 ], [ 359331.42400000244379, 256946.343800000846386 ], [ 359331.504600003361702, 256947.761199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401570500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92582012, "LATITUDE": 18.34203051, "OBJECTID_1": 12362, "PARCEL_NO_": "105401570500", "Tax_Legal_": "BJERGE GADE 12C KINGS QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1200, "Improved_V": 69700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.016382269899999, "SHAPE_Area": 89.399386111799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359345.457500003278255, 256962.844000000506639 ], [ 359345.113600000739098, 256954.665800001472235 ], [ 359336.680799998342991, 256954.953200001269579 ], [ 359334.998999997973442, 256955.010499998927116 ], [ 359335.061200000345707, 256964.232200000435114 ], [ 359335.133199997246265, 256964.222899999469519 ], [ 359337.168999999761581, 256963.9510000012815 ], [ 359345.457500003278255, 256962.844000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401570600", "MAP": null, "PARCEL_NAM": "12D KONGENS GADE", "ACRE": null, "LONGITUDE": -64.92568466, "LATITUDE": 18.34201864, "OBJECTID_1": 12363, "PARCEL_NO_": "105401570600", "Tax_Legal_": "BJERGE GADE 12D&12AA CROWN PRINCE QTR", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41700, "Improved_V": 506500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.7683753114, "SHAPE_Area": 138.099665649 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359363.553000003099442, 256954.037500001490116 ], [ 359346.576300002634525, 256954.61600000038743 ], [ 359345.113600000739098, 256954.665800001472235 ], [ 359345.457500003278255, 256962.844000000506639 ], [ 359347.008500002324581, 256962.636900000274181 ], [ 359365.048199996352196, 256960.227699998766184 ], [ 359363.553000003099442, 256954.037500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401570600", "MAP": null, "PARCEL_NAM": "12AA KONGENS GADE", "ACRE": null, "LONGITUDE": -64.92569062, "LATITUDE": 18.34195317, "OBJECTID_1": 12363, "PARCEL_NO_": "105401570600", "Tax_Legal_": "BJERGE GADE 12D&12AA CROWN PRINCE QTR", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41700, "Improved_V": 506500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.198459058600001, "SHAPE_Area": 129.26169689299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359346.576300002634525, 256954.61600000038743 ], [ 359363.553000003099442, 256954.037500001490116 ], [ 359362.808399997651577, 256950.954999998211861 ], [ 359361.812100000679493, 256946.830099999904633 ], [ 359346.182700000703335, 256947.310300000011921 ], [ 359344.806100003421307, 256947.352600000798702 ], [ 359345.113600000739098, 256954.665800001472235 ], [ 359346.576300002634525, 256954.61600000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471600", "MAP": null, "PARCEL_NAM": "25A-W", "ACRE": ".008", "LONGITUDE": -64.9329825, "LATITUDE": 18.34062638, "OBJECTID_1": 10830, "PARCEL_NO_": "105302471600", "Tax_Legal_": "DRONNINGENS GADE 25A QUEENS QUARTER", "Name": "LORILIN ENTERPRISES LTD.", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1575000, "Improved_V": 1533300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.194523572000001, "SHAPE_Area": 48.538034283599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358588.120700001716614, 256795.44990000128746 ], [ 358588.517099998891354, 256793.825399998575449 ], [ 358588.460699997842312, 256793.855599999427795 ], [ 358587.141428885050118, 256794.181078971800162 ], [ 358585.786262639041524, 256794.280764858587645 ], [ 358584.433565304847434, 256794.151835604687221 ], [ 358583.121631034067832, 256793.797941129596438 ], [ 358581.887599997222424, 256793.229100000113249 ], [ 358581.540500000119209, 256794.598000001162291 ], [ 358580.146300002932549, 256800.096200000494719 ], [ 358586.483199998736382, 256802.160199999809265 ], [ 358588.120700001716614, 256795.44990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471600", "MAP": null, "PARCEL_NAM": "25A", "ACRE": ".18", "LONGITUDE": -64.93309614, "LATITUDE": 18.3410585, "OBJECTID_1": 10830, "PARCEL_NO_": "105302471600", "Tax_Legal_": "DRONNINGENS GADE 25A QUEENS QUARTER", "Name": "LORILIN ENTERPRISES LTD.", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1575000, "Improved_V": 1533300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.13811371599999, "SHAPE_Area": 582.65400367200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358586.483199998736382, 256802.160199999809265 ], [ 358580.146300002932549, 256800.096200000494719 ], [ 358557.164599999785423, 256890.726599998772144 ], [ 358562.801600001752377, 256892.237900000065565 ], [ 358586.483199998736382, 256802.160199999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401431200", "MAP": "D9-8749-T013", "PARCEL_NAM": "25B-W", "ACRE": ".02", "LONGITUDE": -64.9329025, "LATITUDE": 18.34060296, "OBJECTID_1": 12111, "PARCEL_NO_": "105401431200", "Tax_Legal_": "25B-W,26A-W,27B-W & 28A-W DRONNINGENS GADE QUEEN'S QUARTER", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 510300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.110085819600002, "SHAPE_Area": 108.351329456 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358598.620800003409386, 256785.1570999994874 ], [ 358599.448299996554852, 256782.053800001740456 ], [ 358598.660448486509267, 256782.727752667851746 ], [ 358597.957952919881791, 256783.490263111656532 ], [ 358597.350699998438358, 256784.330600000917912 ], [ 358594.52648173738271, 256787.786325007735286 ], [ 358592.100699998438358, 256791.532499998807907 ], [ 358588.517099998891354, 256793.825399998575449 ], [ 358588.120700001716614, 256795.44990000128746 ], [ 358586.483199998736382, 256802.160199999809265 ], [ 358593.815200001001358, 256803.122900001704693 ], [ 358593.844099998474121, 256803.1266999989748 ], [ 358598.248000003397465, 256786.55519999936223 ], [ 358598.620800003409386, 256785.1570999994874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401572100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92642983, "LATITUDE": 18.34151577, "OBJECTID_1": 12376, "PARCEL_NO_": "105401572100", "Tax_Legal_": "NORRE GADE 22A & 22B KINGS QUARTER", "Name": "VENTURA, IGNACIO", "Address": "PO BOX 301882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69200, "Improved_V": 186300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.127184635899994, "SHAPE_Area": 454.597853337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359283.23200000077486, 256886.823300000280142 ], [ 359267.238499999046326, 256887.738200001418591 ], [ 359269.145400002598763, 256915.704100001603365 ], [ 359280.552100002765656, 256916.927299998700619 ], [ 359284.352700002491474, 256916.591400001198053 ], [ 359283.644100002944469, 256897.769499998539686 ], [ 359283.23200000077486, 256886.823300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401572900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92631538000001, "LATITUDE": 18.34142721, "OBJECTID_1": 12383, "PARCEL_NO_": "105401572900", "Tax_Legal_": "NORRE GADE 23B KINGS QUARTER", "Name": "WALTERS, HYLLIS", "Address": "9E Thomasville", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1900, "Improved_V": 20200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.187855059500002, "SHAPE_Area": 105.688993272 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359292.8496999964118, 256886.27309999987483 ], [ 359283.23200000077486, 256886.823300000280142 ], [ 359283.644100002944469, 256897.769499998539686 ], [ 359285.291900001466274, 256897.677700001746416 ], [ 359293.341399997472763, 256897.144999999552965 ], [ 359292.8496999964118, 256886.27309999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401572300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9262697, "LATITUDE": 18.34153387, "OBJECTID_1": 12377, "PARCEL_NO_": "105401572300", "Tax_Legal_": "NORRE GADE 23A KINGS QUARTER", "Name": "FRANCIS (LIFE ESTATE), JAMES A. D.", "Address": "PO Box 54", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 57900, "Improved_V": 87000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.8842479196, "SHAPE_Area": 378.61132711900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359301.251800000667572, 256915.098099999129772 ], [ 359299.0608000010252, 256885.917899999767542 ], [ 359292.8496999964118, 256886.27309999987483 ], [ 359293.341399997472763, 256897.144999999552965 ], [ 359285.291900001466274, 256897.677700001746416 ], [ 359283.644100002944469, 256897.769499998539686 ], [ 359284.352700002491474, 256916.591400001198053 ], [ 359286.140000000596046, 256916.433499999344349 ], [ 359301.251800000667572, 256915.098099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401531500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9272, "LATITUDE": 18.34244423, "OBJECTID_1": 12312, "PARCEL_NO_": "105401531500", "Tax_Legal_": "KONGENS GADE 1OA KINGS QUARTER", "Name": "ORTIZ, RAMON L & OTHERS", "Address": "PO Box 7871", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2700, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.412422942699997, "SHAPE_Area": 68.403837492999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359197.506599999964237, 257009.107200000435114 ], [ 359196.638199999928474, 256998.479200001806021 ], [ 359190.008799999952316, 256998.907499998807907 ], [ 359189.967000000178814, 257003.800999999046326 ], [ 359191.561700001358986, 257005.925000000745058 ], [ 359191.531300000846386, 257009.493200000375509 ], [ 359197.506599999964237, 257009.107200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401530400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92722712, "LATITUDE": 18.34261703, "OBJECTID_1": 12302, "PARCEL_NO_": "105401530400", "Tax_Legal_": "DRONNINGENS GADE 1O KINGS QUARTER", "Name": "THOMAS B. ROMNEY & OTHERS", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021736, "Country": "United States", "Land_Value": 67900, "Improved_V": 144700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.805142812499994, "SHAPE_Area": 432.717916006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359200.392599999904633, 257035.73930000141263 ], [ 359197.506599999964237, 257009.107200000435114 ], [ 359191.531300000846386, 257009.493200000375509 ], [ 359183.534500002861023, 257010.009899999946356 ], [ 359181.645000003278255, 257009.986900001764297 ], [ 359183.526000000536442, 257036.173500001430511 ], [ 359200.392599999904633, 257035.73930000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401531600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92726027, "LATITUDE": 18.34236325, "OBJECTID_1": 12313, "PARCEL_NO_": "105401531600", "Tax_Legal_": "KONGENS GADE 1O KINGS QUARTER", "Name": "FREDERICKSEN, ENID S", "Address": "PO Box 215", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4800, "Improved_V": 70400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.238435891099996, "SHAPE_Area": 354.85976002299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359196.638199999928474, 256998.479200001806021 ], [ 359195.317400000989437, 256982.313900001347065 ], [ 359181.491800002753735, 256983.20719999819994 ], [ 359179.729599997401237, 256983.320999998599291 ], [ 359181.645000003278255, 257009.986900001764297 ], [ 359183.534500002861023, 257010.009899999946356 ], [ 359191.531300000846386, 257009.493200000375509 ], [ 359191.561700001358986, 257005.925000000745058 ], [ 359189.967000000178814, 257003.800999999046326 ], [ 359190.008799999952316, 256998.907499998807907 ], [ 359196.638199999928474, 256998.479200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401571000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9260074, "LATITUDE": 18.34196433, "OBJECTID_1": 12366, "PARCEL_NO_": "105401571000", "Tax_Legal_": "BJERGE GADE 12A KINGS QUARTER", "Name": "BENJAMIN, COLLEEN", "Address": "1527 Prindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3200, "Improved_V": 27000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.045658062800001, "SHAPE_Area": 122.90888008500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359328.569300003349781, 256955.218199998140335 ], [ 359328.699400000274181, 256947.837400000542402 ], [ 359311.614500001072884, 256948.301399998366833 ], [ 359312.464000001549721, 256955.712499998509884 ], [ 359328.569300003349781, 256955.218199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401571100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92585168, "LATITUDE": 18.34195912, "OBJECTID_1": 12367, "PARCEL_NO_": "105401571100", "Tax_Legal_": "BJERGE GADE 12AA KINGS QUARTER", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.369152272599997, "SHAPE_Area": 119.99823711099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359345.113600000739098, 256954.665800001472235 ], [ 359344.806100003421307, 256947.352600000798702 ], [ 359334.949299998581409, 256947.6554000005126 ], [ 359331.504600003361702, 256947.761199999600649 ], [ 359328.699400000274181, 256947.837400000542402 ], [ 359328.569300003349781, 256955.218199998140335 ], [ 359331.953000001609325, 256955.11430000141263 ], [ 359334.998999997973442, 256955.010499998927116 ], [ 359336.680799998342991, 256954.953200001269579 ], [ 359345.113600000739098, 256954.665800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401532900", "MAP": null, "PARCEL_NAM": "3Ba KONGENS GADE", "ACRE": "2,420 sq ft", "LONGITUDE": -64.9261641, "LATITUDE": 18.34235121, "OBJECTID_1": 12324, "PARCEL_NO_": "105401532900", "Tax_Legal_": "KONGENS GADE 3A&3BA KINGS QTR", "Name": "PETERSEN, GLENCIA & ELIZABETH", "Address": "PO BOX 12057", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5000, "Improved_V": 99900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.814814659100001, "SHAPE_Area": 75.307795411100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359298.879100002348423, 256998.674600001424551 ], [ 359308.557199999690056, 256997.987300001084805 ], [ 359307.744499996304512, 256990.093100000172853 ], [ 359298.484099999070168, 256990.796900000423193 ], [ 359298.478900000452995, 256991.775499999523163 ], [ 359298.879100002348423, 256998.674600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401532600", "MAP": null, "PARCEL_NAM": "3B KONGENS GADE", "ACRE": "2,420 sq ft", "LONGITUDE": -64.92614935, "LATITUDE": 18.34247371, "OBJECTID_1": 12322, "PARCEL_NO_": "105401532600", "Tax_Legal_": "KONGENS GADE 3B KINGS QUARTER", "Name": "JACKSON, BERNICE P", "Address": "BOX 2776", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36300, "Improved_V": 34400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.730867083900002, "SHAPE_Area": 194.996794306 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359308.557199999690056, 256997.987300001084805 ], [ 359298.879100002348423, 256998.674600001424551 ], [ 359300.511500000953674, 257017.333099998533726 ], [ 359311.281900003552437, 257017.324499998241663 ], [ 359308.557199999690056, 256997.987300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401530600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92691396, "LATITUDE": 18.34256369, "OBJECTID_1": 12304, "PARCEL_NO_": "105401530600", "Tax_Legal_": "8 DRONNINGENS GADE KINGS QUARTER", "Name": "KATHLEEN L RODGERS & COREEN RODGERS REED", "Address": "PO BOX 9467", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 77000, "Improved_V": 163100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.688011046699998, "SHAPE_Area": 484.06107476800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359230.237300001084805, 257000.553100001066923 ], [ 359227.953100003302097, 257000.710400000214577 ], [ 359215.480700001120567, 257001.569099999964237 ], [ 359215.826300002634525, 257010.394499998539686 ], [ 359217.832400001585484, 257033.868599999696016 ], [ 359232.789399996399879, 257032.968899998813868 ], [ 359230.643500000238419, 257008.701699998229742 ], [ 359230.237300001084805, 257000.553100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401532000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92694232, "LATITUDE": 18.34232486, "OBJECTID_1": 12317, "PARCEL_NO_": "105401532000", "Tax_Legal_": "KONGENS GADE 8 KINGS QUARTER", "Name": "ENID EIMMEL, LIFE INT.", "Address": "316 W Village Ln", "City": "Boise", "State": "Idaho", "Zip": 83702, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.470281340400007, "SHAPE_Area": 260.40631463800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359226.950300000607967, 256980.270300000905991 ], [ 359214.1537000015378, 256980.924899999052286 ], [ 359215.296400003135204, 256996.861000001430511 ], [ 359215.480700001120567, 257001.569099999964237 ], [ 359227.953100003302097, 257000.710400000214577 ], [ 359227.770300000905991, 256994.578000001609325 ], [ 359226.950300000607967, 256980.270300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401601400", "MAP": null, "PARCEL_NAM": "24CA NORRE GADE", "ACRE": null, "LONGITUDE": -64.92568283, "LATITUDE": 18.34051111, "OBJECTID_1": 12429, "PARCEL_NO_": "105401601400", "Tax_Legal_": "NORRE GADE 24CA KINGS QUARTER", "Name": "LEWIS, WALTER JUTA", "Address": "PO Box 7127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16100, "Improved_V": 56600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.0287580225, "SHAPE_Area": 467.34997850399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359347.362000003457069, 256792.052799999713898 ], [ 359346.684299997985363, 256804.936000000685453 ], [ 359363.068599998950958, 256805.269099999219179 ], [ 359363.24719999730587, 256800.737399999052286 ], [ 359363.63400000333786, 256796.218600001186132 ], [ 359364.228200003504753, 256791.722500000149012 ], [ 359365.028599999845028, 256787.258400000631809 ], [ 359366.631399996578693, 256777.598600000143051 ], [ 359347.478100001811981, 256778.416900001466274 ], [ 359347.362000003457069, 256792.052799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401590100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92698998, "LATITUDE": 18.34118644, "OBJECTID_1": 12401, "PARCEL_NO_": "105401590100", "Tax_Legal_": "NORRE GADE 28-29 KINGS QTR", "Name": "SMITH, LEROY V", "Address": "P.O.BOX 2028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 227100, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.99724253299999, "SHAPE_Area": 1071.59614977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359232.763999998569489, 256847.190099999308586 ], [ 359199.384499996900558, 256850.449700001627207 ], [ 359201.60419999808073, 256882.286899998784065 ], [ 359234.89639999717474, 256879.231600001454353 ], [ 359232.763999998569489, 256847.190099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401591400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9270287, "LATITUDE": 18.34070655, "OBJECTID_1": 12411, "PARCEL_NO_": "105401591400", "Tax_Legal_": "NORRE GADE 28-29 KINGS QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 772100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.23278674700001, "SHAPE_Area": 2505.1201473000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359231.868500001728535, 256833.733399998396635 ], [ 359227.833999998867512, 256773.111000001430511 ], [ 359194.189999997615814, 256775.941899999976158 ], [ 359198.416500002145767, 256836.564699999988079 ], [ 359199.384499996900558, 256850.449700001627207 ], [ 359232.763999998569489, 256847.190099999308586 ], [ 359231.868500001728535, 256833.733399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401070800", "MAP": "G9-2658-T77", "PARCEL_NAM": "33A", "ACRE": null, "LONGITUDE": -64.92959158, "LATITUDE": 18.3447129, "OBJECTID_1": 11495, "PARCEL_NO_": "105401070800", "Tax_Legal_": "HOSPITAL LINE 33A KINGS QTR", "Name": "HODGE, SYLVIA", "Address": "PO Box 10621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23500, "Improved_V": 62500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.554950977, "SHAPE_Area": 1088.3210066900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358950.335900001227856, 257267.510800000280142 ], [ 358964.568400003015995, 257260.178800001740456 ], [ 358938.959399998188019, 257231.827799998223782 ], [ 358926.929799996316433, 257236.934900000691414 ], [ 358916.791599996387959, 257241.559799998998642 ], [ 358916.390299998223782, 257241.751800000667572 ], [ 358915.996299996972084, 257241.958299998193979 ], [ 358915.610100001096725, 257242.179000001400709 ], [ 358915.232100002467632, 257242.413699999451637 ], [ 358935.963600002229214, 257274.62950000166893 ], [ 358950.335900001227856, 257267.510800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401070900", "MAP": "G9-2983-T80", "PARCEL_NAM": "100A", "ACRE": ".233", "LONGITUDE": -64.92937114, "LATITUDE": 18.34455714, "OBJECTID_1": 11496, "PARCEL_NO_": "105401070900", "Tax_Legal_": "HOSPITAL GROUND 100A KINGS QTR", "Name": "CROLL, L & PHIPPS, A.", "Address": "73 Leighton Rd", "City": "Hyde Park", "State": "Massachusetts", "Zip": 2136, "Country": "United States", "Land_Value": 23500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.33018549299999, "SHAPE_Area": 1001.54608627 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358944.005400002002716, 257228.665399998426437 ], [ 358938.959399998188019, 257231.827799998223782 ], [ 358964.568400003015995, 257260.178800001740456 ], [ 358968.34570000320673, 257258.28830000013113 ], [ 358970.396099999547005, 257251.725299999117851 ], [ 358974.960299998521805, 257241.913600001484156 ], [ 358983.981700003147125, 257229.52760000154376 ], [ 358963.403999999165535, 257215.082400001585484 ], [ 358954.627899996936321, 257222.577199999243021 ], [ 358944.005400002002716, 257228.665399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401070600", "MAP": "D9-1270-T76", "PARCEL_NAM": "37", "ACRE": ".62", "LONGITUDE": -64.92979945, "LATITUDE": 18.34435246, "OBJECTID_1": 11493, "PARCEL_NO_": "105401070600", "Tax_Legal_": "DRONNIGENS 36B-1&37B & POR 31 ,32&33 HOSP. LINE", "Name": "DOVER CARIBBEAN, INC.", "Address": "111 Payne St", "City": "Dallas", "State": "Texas", "Zip": 75207, "Country": "United States", "Land_Value": 51000, "Improved_V": 260200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.480293421, "SHAPE_Area": 2620.2442443199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358901.619199998676777, 257251.280600000172853 ], [ 358903.906599998474121, 257267.342500001192093 ], [ 358910.322599999606609, 257248.686999998986721 ], [ 358910.996699996292591, 257247.101199999451637 ], [ 358911.887699998915195, 257245.626299999654293 ], [ 358912.977700002491474, 257244.291700001806021 ], [ 358914.244999997317791, 257243.124200001358986 ], [ 358915.232100002467632, 257242.413699999451637 ], [ 358922.052299998700619, 257229.903599999845028 ], [ 358922.878899998962879, 257230.140999998897314 ], [ 358923.738799996674061, 257230.138099998235703 ], [ 358924.563699997961521, 257229.895199999213219 ], [ 358936.876000002026558, 257224.278400000184774 ], [ 358937.201300002634525, 257224.115899998694658 ], [ 358937.526000000536442, 257223.952100001275539 ], [ 358937.850000001490116, 257223.787099998444319 ], [ 358938.17339999973774, 257223.620900001376867 ], [ 358939.632700003683567, 257222.851500000804663 ], [ 358943.841899998486042, 257220.447500001639128 ], [ 358947.924999997019768, 257217.834899999201298 ], [ 358951.871500000357628, 257215.020399998873472 ], [ 358954.000299997627735, 257213.334399998188019 ], [ 358938.224399998784065, 257199.024399999529123 ], [ 358944.479500003159046, 257195.202500000596046 ], [ 358951.258299998939037, 257190.840799998492002 ], [ 358954.922700002789497, 257187.607799999415874 ], [ 358923.67849999666214, 257187.622999999672174 ], [ 358923.763599999248981, 257185.427999999374151 ], [ 358912.989799998700619, 257185.499800000339746 ], [ 358893.114600002765656, 257186.232500001788139 ], [ 358893.188100002706051, 257189.449999999254942 ], [ 358893.5591000020504, 257200.268100000917912 ], [ 358893.761799998581409, 257212.91270000115037 ], [ 358894.87389999628067, 257226.783399999141693 ], [ 358898.588600002229214, 257240.980000000447035 ], [ 358901.619199998676777, 257251.280600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105401120100", "MAP": null, "PARCEL_NAM": "8GDB", "ACRE": null, "LONGITUDE": -64.9317632, "LATITUDE": 18.34752497, "OBJECTID_1": 11644, "PARCEL_NO_": "105401120100", "Tax_Legal_": "PCL OF 8G,8GB,8GDB&8GFA LYTTONS FANCY", "Name": "THE TESTAMENTARY TRUST OF GEORGE CONRAD", "Address": "PO Box 187", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 673300, "Improved_V": 206500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.42060314399998, "SHAPE_Area": 4632.4694184800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358652.460199996829033, 257552.323100000619888 ], [ 358650.060900002717972, 257593.31870000064373 ], [ 358664.992899999022484, 257592.659400001168251 ], [ 358674.684799998998642, 257590.838899999856949 ], [ 358698.148800000548363, 257581.531800001859665 ], [ 358711.076800003647804, 257578.471200000494719 ], [ 358726.402099996805191, 257577.963300000876188 ], [ 358744.114000000059605, 257581.274700000882149 ], [ 358749.759999997913837, 257581.1097999997437 ], [ 358759.453699998557568, 257579.078200001269579 ], [ 358763.753200002014637, 257547.660500001162291 ], [ 358758.922499999403954, 257546.776500001549721 ], [ 358742.067299999296665, 257537.561599999666214 ], [ 358723.590400002896786, 257529.388799998909235 ], [ 358717.145300000905991, 257528.702799998223782 ], [ 358697.709299996495247, 257538.46510000154376 ], [ 358674.198600001633167, 257553.260299999266863 ], [ 358663.703900001943111, 257554.652100000530481 ], [ 358652.460199996829033, 257552.323100000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302101500", "MAP": null, "PARCEL_NAM": "73", "ACRE": null, "LONGITUDE": -64.93245603, "LATITUDE": 18.34762046, "OBJECTID_1": 9829, "PARCEL_NO_": "105302101500", "Tax_Legal_": "AGNES FANCY 73 QUEENS QTR", "Name": "SCHNEIDER, ROY L", "Address": "PO Box 22", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.23398205199999, "SHAPE_Area": 1573.0330117200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358650.060900002717972, 257593.31870000064373 ], [ 358652.460199996829033, 257552.323100000619888 ], [ 358640.360399998724461, 257549.816899999976158 ], [ 358628.272900000214577, 257548.873599998652935 ], [ 358616.314499996602535, 257549.401599999517202 ], [ 358616.733400002121925, 257595.195099998265505 ], [ 358631.121799997985363, 257595.652699999511242 ], [ 358640.167099997401237, 257595.94029999896884 ], [ 358644.826099999248981, 257593.549899999052286 ], [ 358650.060900002717972, 257593.31870000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302101200", "MAP": "F9-1005-T62", "PARCEL_NAM": "93", "ACRE": ".0752", "LONGITUDE": -64.93294438, "LATITUDE": 18.34792228, "OBJECTID_1": 9826, "PARCEL_NO_": "105302101200", "Tax_Legal_": "93 AGNES FANCY QUEENS QUARTER", "Name": "STOUT, GARFIELD & DAISY (LIFE ESTATE)", "Address": "PO Box 303955", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12600, "Improved_V": 168200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.79089216200001, "SHAPE_Area": 949.11546597400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358599.647399999201298, 257596.135400000959635 ], [ 358564.222699999809265, 257589.46680000051856 ], [ 358564.738600000739098, 257623.714000001549721 ], [ 358581.723300002515316, 257617.731300000101328 ], [ 358600.329599998891354, 257610.706399999558926 ], [ 358605.991800002753735, 257608.641800001263618 ], [ 358605.761399999260902, 257597.297400001436472 ], [ 358599.647399999201298, 257596.135400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302101500", "MAP": null, "PARCEL_NAM": "73", "ACRE": null, "LONGITUDE": -64.93266955, "LATITUDE": 18.34768095, "OBJECTID_1": 9829, "PARCEL_NO_": "105302101500", "Tax_Legal_": "AGNES FANCY 73 QUEENS QTR", "Name": "SCHNEIDER, ROY L", "Address": "PO Box 22", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.898065132, "SHAPE_Area": 624.52051853900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358616.771799996495247, 257599.390099998563528 ], [ 358616.733400002121925, 257595.195099998265505 ], [ 358616.425999999046326, 257561.589099999517202 ], [ 358616.314499996602535, 257549.401599999517202 ], [ 358616.172799997031689, 257549.407900001853704 ], [ 358604.855700001120567, 257552.692800000309944 ], [ 358605.146700002253056, 257567.024099998176098 ], [ 358605.711599998176098, 257594.844700001180172 ], [ 358605.761399999260902, 257597.297400001436472 ], [ 358605.991800002753735, 257608.641800001263618 ], [ 358616.822899997234344, 257604.976199999451637 ], [ 358616.771799996495247, 257599.390099998563528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302101300", "MAP": "F9-1005-T62", "PARCEL_NAM": "93A", "ACRE": ".04", "LONGITUDE": -64.93285171, "LATITUDE": 18.34773487, "OBJECTID_1": 9827, "PARCEL_NO_": "105302101300", "Tax_Legal_": "AGNES FANCY 93A QUEENS QTR", "Name": "TODMAN, AUSTIN ROMEO", "Address": "PO Box 303464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 17600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.234656739, "SHAPE_Area": 634.43709577799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358599.647399999201298, 257596.135400000959635 ], [ 358605.761399999260902, 257597.297400001436472 ], [ 358605.146700002253056, 257567.024099998176098 ], [ 358599.064099997282028, 257569.954999998211861 ], [ 358564.222699999809265, 257589.46680000051856 ], [ 358599.647399999201298, 257596.135400000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302101400", "MAP": null, "PARCEL_NAM": "87", "ACRE": null, "LONGITUDE": -64.93292783, "LATITUDE": 18.34760687, "OBJECTID_1": 9828, "PARCEL_NO_": "105302101400", "Tax_Legal_": "AGNES FANCY 87 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.13743722300001, "SHAPE_Area": 679.85929019900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358599.064099997282028, 257569.954999998211861 ], [ 358605.146700002253056, 257567.024099998176098 ], [ 358604.855700001120567, 257552.692800000309944 ], [ 358598.383599996566772, 257555.172899998724461 ], [ 358588.673699997365475, 257559.104200001806021 ], [ 358563.566500000655651, 257571.9864999987185 ], [ 358564.222699999809265, 257589.46680000051856 ], [ 358599.064099997282028, 257569.954999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302062500", "MAP": "B9-79-T62", "PARCEL_NAM": "1A", "ACRE": ".10", "LONGITUDE": -64.93387114, "LATITUDE": 18.34499907, "OBJECTID_1": 9706, "PARCEL_NO_": "105302062500", "Tax_Legal_": "1A CATHERINEBERG QUEENS QUARTER", "Name": "BURNETT, LYNIQUE", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.14079529, "SHAPE_Area": 439.541845448 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358479.659299999475479, 257293.289599999785423 ], [ 358494.148699998855591, 257296.255100000649691 ], [ 358494.219700001180172, 257287.920299999415874 ], [ 358495.978000000119209, 257270.836100000888109 ], [ 358476.669600002467632, 257265.611800000071526 ], [ 358479.659299999475479, 257293.289599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302062700", "MAP": null, "PARCEL_NAM": "1AB", "ACRE": null, "LONGITUDE": -64.93416461, "LATITUDE": 18.34493303, "OBJECTID_1": 9708, "PARCEL_NO_": "105302062700", "Tax_Legal_": "CATHERINEBERG 1AB QUEENS QTR", "Name": "ROBINSON, FAYE", "Address": "PO Box 7991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23800, "Improved_V": 88300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.904039655700004, "SHAPE_Area": 305.945958588 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358449.096799999475479, 257283.962400000542402 ], [ 358461.965400002896786, 257287.867400001734495 ], [ 358460.58110000193119, 257261.047200001776218 ], [ 358450.122500002384186, 257258.217399999499321 ], [ 358449.096799999475479, 257283.962400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501023300", "MAP": "D9-8665-T012", "PARCEL_NAM": "62-5", "ACRE": "5.422", "LONGITUDE": -64.91103847, "LATITUDE": 18.34329362, "OBJECTID_1": 19768, "PARCEL_NO_": "105501023300", "Tax_Legal_": "62-4 & 62-5 ESTATE THOMAS NO. 6A NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 241600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 715.36026531499999, "SHAPE_Area": 17540.450845200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360904.951200000941753, 257069.260299999266863 ], [ 360885.777199998497963, 257102.282299999147654 ], [ 360799.899499997496605, 257123.101100001484156 ], [ 360749.346000000834465, 257108.787799999117851 ], [ 360753.749399997293949, 257112.23369999974966 ], [ 360765.821099996566772, 257125.518899999558926 ], [ 360771.704899996519089, 257134.178300000727177 ], [ 360783.212899997830391, 257150.149500001221895 ], [ 360809.537100002169609, 257195.739700000733137 ], [ 360981.524499997496605, 257122.844399999827147 ], [ 361020.250100001692772, 257034.003199998289347 ], [ 361025.17119999974966, 257027.039099998772144 ], [ 360951.237800002098083, 257030.460299998521805 ], [ 360938.588899999856949, 257054.034200001507998 ], [ 360904.951200000941753, 257069.260299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501021900", "MAP": "D9-8831-T013", "PARCEL_NAM": "62-7", "ACRE": "14.17", "LONGITUDE": -64.91758613, "LATITUDE": 18.34333107, "OBJECTID_1": 19766, "PARCEL_NO_": "105501021900", "Tax_Legal_": "62-7 & 62-3 REM EST THOMAS 6A NEW QTR", "Name": "MASJID NUR AHL-US-SUNNAH ISLAMIC CENTER INC", "Address": "PO Box 12028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 344000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1179.42957129, "SHAPE_Area": 47686.6532296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360390.023800000548363, 257014.125799998641014 ], [ 360360.436999998986721, 257008.948800001293421 ], [ 360178.5878000035882, 257083.415300000458956 ], [ 359963.258500002324581, 257064.788100000470877 ], [ 359981.491800002753735, 257170.682000000029802 ], [ 360420.909400001168251, 257161.87220000103116 ], [ 360427.384300000965595, 257091.68299999833107 ], [ 360382.403599999845028, 257087.903099998831749 ], [ 360390.023800000548363, 257014.125799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501020500", "MAP": "A9-657-T005", "PARCEL_NAM": "62", "ACRE": "55", "LONGITUDE": -64.91020672000001, "LATITUDE": 18.34181625, "OBJECTID_1": 19714, "PARCEL_NO_": "105501020500", "Tax_Legal_": "REM ESTATE THOMAS NO 6A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3549900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1044.7566642100001, "SHAPE_Area": 28228.5181935 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360729.1554000005126, 257040.958399999886751 ], [ 360858.897100001573563, 257033.728799998760223 ], [ 360951.237800002098083, 257030.460299998521805 ], [ 361025.17119999974966, 257027.039099998772144 ], [ 361020.250100001692772, 257034.003199998289347 ], [ 361080.616499997675419, 256999.833599999547005 ], [ 361104.535300001502037, 256891.629599999636412 ], [ 360918.05179999768734, 256860.705200001597404 ], [ 360911.862700000405312, 256859.678800001740456 ], [ 360899.948100000619888, 256857.703099999576807 ], [ 360917.222499996423721, 257019.81980000063777 ], [ 360835.687799997627735, 257030.551600001752377 ], [ 360729.1554000005126, 257040.958399999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501023300", "MAP": "D9-8665-T012", "PARCEL_NAM": "62-4", "ACRE": "3.175", "LONGITUDE": -64.91190277, "LATITUDE": 18.34286414, "OBJECTID_1": 19768, "PARCEL_NO_": "105501023300", "Tax_Legal_": "62-4 & 62-5 ESTATE THOMAS NO. 6A NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 241600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 577.28606547699997, "SHAPE_Area": 12545.8160212 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360749.346000000834465, 257108.787799999117851 ], [ 360767.852300003170967, 257109.121899999678135 ], [ 360891.306800000369549, 257075.436500001698732 ], [ 360938.588899999856949, 257054.034200001507998 ], [ 360951.237800002098083, 257030.460299998521805 ], [ 360858.897100001573563, 257033.728799998760223 ], [ 360729.1554000005126, 257040.958399999886751 ], [ 360700.104999996721745, 257043.79619999974966 ], [ 360693.724399998784065, 257043.910999998450279 ], [ 360693.129299998283386, 257057.047400001436472 ], [ 360691.111000001430511, 257059.512200001627207 ], [ 360690.287699997425079, 257060.850699998438358 ], [ 360691.887299999594688, 257063.823899999260902 ], [ 360749.346000000834465, 257108.787799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303270100", "MAP": "G9-941-T67", "PARCEL_NAM": "2", "ACRE": null, "LONGITUDE": -64.94177188, "LATITUDE": 18.33721435, "OBJECTID_1": 11200, "PARCEL_NO_": "105303270100", "Tax_Legal_": "2,26-1,27-1 & 25 ESTATE HONDURAS KRONPRINDSENS QTR.", "Name": "NORMANDIE INVESTMENT PARTNERS LLC", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 350400, "Improved_V": 189600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.898657884, "SHAPE_Area": 781.13206155900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357651.645000003278255, 256423.503400001674891 ], [ 357673.114200003445148, 256434.507399998605251 ], [ 357671.633599996566772, 256422.880199998617172 ], [ 357670.732799999415874, 256414.659400001168251 ], [ 357668.155199997127056, 256397.276000000536442 ], [ 357659.137800000607967, 256398.925599999725819 ], [ 357658.347699999809265, 256397.019299998879433 ], [ 357653.50620000064373, 256397.401799999177456 ], [ 357652.984300002455711, 256391.529899999499321 ], [ 357647.503100000321865, 256395.933200001716614 ], [ 357644.913900002837181, 256398.668299999088049 ], [ 357642.790899999439716, 256402.156199999153614 ], [ 357642.496200002729893, 256405.587900001555681 ], [ 357645.749600000679493, 256414.583599999547005 ], [ 357647.371899999678135, 256419.890900000929832 ], [ 357648.87049999833107, 256423.610399998724461 ], [ 357651.645000003278255, 256423.503400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303280100", "MAP": null, "PARCEL_NAM": "JOSEPH AUBAIN BALL PARK", "ACRE": null, "LONGITUDE": -64.94119695000001, "LATITUDE": 18.33767333, "OBJECTID_1": 11228, "PARCEL_NO_": "105303280100", "Tax_Legal_": "JOSEPH AUBAIN BALL PARK ALTON & WELGUNST", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 172000, "Improved_V": 159000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.27399807500001, "SHAPE_Area": 5799.2889633200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357673.114200003445148, 256434.507399998605251 ], [ 357677.689300000667572, 256444.318599998950958 ], [ 357675.014799997210503, 256455.077199999243021 ], [ 357673.077299997210503, 256468.107099998742342 ], [ 357676.025600001215935, 256480.8733000010252 ], [ 357677.809900000691414, 256486.652100000530481 ], [ 357682.670900002121925, 256489.422200001776218 ], [ 357689.668499998748302, 256492.209699999541044 ], [ 357692.720499999821186, 256492.234499998390675 ], [ 357697.814499996602535, 256496.978500001132488 ], [ 357718.499399997293949, 256498.546100001782179 ], [ 357719.268100000917912, 256493.877300001680851 ], [ 357765.461499996483326, 256499.015799999237061 ], [ 357768.034500002861023, 256487.782900001853704 ], [ 357769.21000000089407, 256469.302999999374151 ], [ 357769.517499998211861, 256451.061799999326468 ], [ 357749.078000001609325, 256442.724800001829863 ], [ 357699.23759999871254, 256424.58500000089407 ], [ 357687.967200003564358, 256422.381799999624491 ], [ 357682.834600001573563, 256422.47859999909997 ], [ 357671.633599996566772, 256422.880199998617172 ], [ 357673.114200003445148, 256434.507399998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401280300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93170886, "LATITUDE": 18.34415608, "OBJECTID_1": 11887, "PARCEL_NO_": "105401280300", "Tax_Legal_": "PALM STRAEDE 7 QUEENS QUARTER", "Name": "CANCRYN, ADELITA", "Address": "PO Box 25432", "City": "Brooklyn", "State": "New York", "Zip": 11202, "Country": "United States", "Land_Value": 20100, "Improved_V": 51900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.883757488800001, "SHAPE_Area": 387.06363429700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358731.209100000560284, 257181.570099998265505 ], [ 358703.971699997782707, 257181.979299999773502 ], [ 358703.025100000202656, 257198.436900001019239 ], [ 358724.003600001335144, 257196.919799998402596 ], [ 358729.732299998402596, 257187.045299999415874 ], [ 358730.574600003659725, 257182.830299999564886 ], [ 358731.209100000560284, 257181.570099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401280500", "MAP": "A-479-T95", "PARCEL_NAM": "(7 & 8) REM STORE GRONNE GADE", "ACRE": "9,675 sq ft", "LONGITUDE": -64.93163685, "LATITUDE": 18.34396707, "OBJECTID_1": 11889, "PARCEL_NO_": "105401280500", "Tax_Legal_": "7&8 REMAINDER STORE GRONNE GADE QUEENS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 145100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.01813154300001, "SHAPE_Area": 862.59789350699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358703.971699997782707, 257181.979299999773502 ], [ 358731.209100000560284, 257181.570099998265505 ], [ 358733.855599999427795, 257176.313299998641014 ], [ 358741.994300000369549, 257167.513999998569489 ], [ 358746.047399997711182, 257165.013999998569489 ], [ 358755.552199997007847, 257159.380800001323223 ], [ 358707.414499998092651, 257156.465199999511242 ], [ 358706.595600001513958, 257157.936099998652935 ], [ 358703.971699997782707, 257181.979299999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402080300", "MAP": "C9-212-T76", "PARCEL_NAM": "5 MADAMBERG", "ACRE": ".10", "LONGITUDE": -64.92345011, "LATITUDE": 18.34340064, "OBJECTID_1": 12551, "PARCEL_NO_": "105402080300", "Tax_Legal_": "MADAMBERG 5 KINGS QTR", "Name": "V.I. HOUSING FINANCE AUTHORTY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 121900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.049891034799998, "SHAPE_Area": 440.18162478900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359600.545999996364117, 257121.693599998950958 ], [ 359599.427500002086163, 257100.06810000166297 ], [ 359595.783299997448921, 257100.853500001132488 ], [ 359593.306800000369549, 257101.446100000292063 ], [ 359591.528800003230572, 257101.975299999117851 ], [ 359591.415799997746944, 257102.006400000303984 ], [ 359589.835500001907349, 257102.440999999642372 ], [ 359588.184500001370907, 257102.843100000172853 ], [ 359584.882500000298023, 257103.541600000113249 ], [ 359583.252599999308586, 257104.092000000178814 ], [ 359582.278899997472763, 257104.557599999010563 ], [ 359581.36879999935627, 257105.213799998164177 ], [ 359580.204599998891354, 257106.462600000202656 ], [ 359579.421400003135204, 257107.626800000667572 ], [ 359578.722900003194809, 257109.2989999987185 ], [ 359578.04559999704361, 257111.0135000012815 ], [ 359577.304799996316433, 257115.924199998378754 ], [ 359577.241300001740456, 257117.554000001400709 ], [ 359577.008400000631809, 257120.178700000047684 ], [ 359576.796800002455711, 257122.147199999541044 ], [ 359576.610200002789497, 257123.6554000005126 ], [ 359596.496899999678135, 257122.025400001555681 ], [ 359600.545999996364117, 257121.693599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012500", "MAP": "D9-915-T70", "PARCEL_NAM": "2GB", "ACRE": null, "LONGITUDE": -64.91827179000001, "LATITUDE": 18.32163138, "OBJECTID_1": 31729, "PARCEL_NO_": "107304012500", "Tax_Legal_": "2Gb BAKKERO NO.5 FRENCHMAN'S BAY QTR.", "Name": "FELDEAR I WEBSTER REVOCABLE TRUST", "Address": "PO Box 11335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47500, "Improved_V": 434800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.57957037599999, "SHAPE_Area": 1168.7113775299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360173.284299999475479, 254721.716699998825788 ], [ 360170.6570999994874, 254676.776999998837709 ], [ 360158.129900000989437, 254688.622600000351667 ], [ 360152.444300003349781, 254693.431200001388788 ], [ 360149.998400002717972, 254696.577599998563528 ], [ 360148.347999997437, 254700.997000001370907 ], [ 360145.909299999475479, 254703.299100000411272 ], [ 360144.287699997425079, 254704.341299999505281 ], [ 360139.431800000369549, 254706.412500001490116 ], [ 360135.246100001037121, 254706.691100001335144 ], [ 360136.6891999989748, 254728.78940000012517 ], [ 360173.284299999475479, 254721.716699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304014200", "MAP": "D9-7321-T003", "PARCEL_NAM": "2GA", "ACRE": ".236", "LONGITUDE": -64.91827755, "LATITUDE": 18.32191544, "OBJECTID_1": 32394, "PARCEL_NO_": "107304014200", "Tax_Legal_": "2Ga ESTATE BAKKERO No.5 FRENCHMAN'S BAY QUARTER", "Name": "ESTATE BAKKEROE LLC", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59200, "Improved_V": 469600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.14243681900001, "SHAPE_Area": 1053.0717811500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360175.406900003552437, 254747.679099999368191 ], [ 360173.284299999475479, 254721.716699998825788 ], [ 360136.6891999989748, 254728.78940000012517 ], [ 360138.547600001096725, 254757.247000001370907 ], [ 360140.611100003123283, 254757.295699998736382 ], [ 360145.456200003623962, 254756.49100000038743 ], [ 360152.722000002861023, 254755.495000001043081 ], [ 360175.406900003552437, 254747.679099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304013900", "MAP": "D9-2393-T83", "PARCEL_NAM": "2M-2", "ACRE": ".594", "LONGITUDE": -64.91661249000001, "LATITUDE": 18.32192291, "OBJECTID_1": 32391, "PARCEL_NO_": "107304013900", "Tax_Legal_": "BAKKERO 2M-2 FRENCHMAN BAY QTR.", "Name": "LePAGE, STEPHEN C. & KAREN M. HUTCHISON", "Address": "1007 Grant St", "City": "Herndon", "State": "Virginia", "Zip": 20170, "Country": "United States", "Land_Value": 139900, "Improved_V": 189400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.81056026700003, "SHAPE_Area": 3954.2112064799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360366.188000001013279, 254781.517900001257658 ], [ 360370.212300002574921, 254782.395199999213219 ], [ 360360.765000000596046, 254755.50899999961257 ], [ 360358.419799998402596, 254746.834899999201298 ], [ 360341.989699997007847, 254698.734299998730421 ], [ 360330.60700000077486, 254698.688999999314547 ], [ 360303.998700000345707, 254698.4712999984622 ], [ 360308.163999997079372, 254777.4543999992311 ], [ 360347.667999997735023, 254778.410999998450279 ], [ 360366.188000001013279, 254781.517900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012500", "MAP": "D9-8309-T009", "PARCEL_NAM": "2GC", "ACRE": ".231", "LONGITUDE": -64.91799273, "LATITUDE": 18.32149556, "OBJECTID_1": 31729, "PARCEL_NO_": "107304012500", "Tax_Legal_": "2Gb BAKKERO NO.5 FRENCHMAN'S BAY QTR.", "Name": "FELDEAR I WEBSTER REVOCABLE TRUST", "Address": "PO Box 11335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47500, "Improved_V": 434800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.42924727400001, "SHAPE_Area": 1020.2094694800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360172.74210000038147, 254712.442200001329184 ], [ 360201.498499996960163, 254708.872999999672174 ], [ 360200.584200002253056, 254676.185499999672174 ], [ 360194.413000002503395, 254675.352099999785423 ], [ 360170.6570999994874, 254676.776999998837709 ], [ 360172.74210000038147, 254712.442200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304013600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91775718, "LATITUDE": 18.32112701, "OBJECTID_1": 32388, "PARCEL_NO_": "107304013600", "Tax_Legal_": "ESTATE BAKKERO 2P FRENCHMAN'S BAY QTR.", "Name": "MS DEVELOPMENT CORP.", "Address": "7340 Estate Bakkaroe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 123500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 318.230024603, "SHAPE_Area": 4493.4639556499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360157.436099998652935, 254615.738000001758337 ], [ 360165.379199996590614, 254672.232099998742342 ], [ 360166.389300003647804, 254671.486000001430511 ], [ 360179.453000001609325, 254670.418299999088049 ], [ 360207.112899996340275, 254671.041999999433756 ], [ 360220.621899999678135, 254673.853900000452995 ], [ 360242.289200000464916, 254679.948499999940395 ], [ 360258.963899999856949, 254684.170499999076128 ], [ 360271.830700002610683, 254688.28660000115633 ], [ 360271.427199997007847, 254686.643899999558926 ], [ 360270.271999999880791, 254681.940999999642372 ], [ 360267.11150000244379, 254674.315799999982119 ], [ 360264.723200000822544, 254670.707699999213219 ], [ 360260.781499996781349, 254660.120700001716614 ], [ 360260.014700002968311, 254655.470400001853704 ], [ 360254.455099999904633, 254645.503499999642372 ], [ 360250.466700002551079, 254640.404599998146296 ], [ 360244.860200002789497, 254635.925700001418591 ], [ 360235.218699999153614, 254631.836100000888109 ], [ 360223.448499999940395, 254628.442699998617172 ], [ 360209.825699999928474, 254628.445999998599291 ], [ 360199.165100000798702, 254629.118400000035763 ], [ 360191.809799998998642, 254629.858500000089407 ], [ 360181.707699999213219, 254627.99210000038147 ], [ 360171.976199999451637, 254623.368700001388788 ], [ 360162.809000000357628, 254617.809799998998642 ], [ 360157.436099998652935, 254615.738000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304013700", "MAP": "G9-3048-T80", "PARCEL_NAM": "2N-2", "ACRE": "0.58", "LONGITUDE": -64.91845049, "LATITUDE": 18.32115023, "OBJECTID_1": 32389, "PARCEL_NO_": "107304013700", "Tax_Legal_": "BAKKERO 2N FRENCHMAN BAY", "Name": "POURZAL FAMILY TRUST", "Address": "7340 Estate Bakkaroe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 199300, "Improved_V": 806300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.689877997, "SHAPE_Area": 3265.6858768799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360146.610399998724461, 254615.336300000548363 ], [ 360138.718500003218651, 254617.275699999183416 ], [ 360127.28660000115633, 254622.149700000882149 ], [ 360118.078699998557568, 254628.738000001758337 ], [ 360110.21509999781847, 254633.768300000578165 ], [ 360120.990900002419949, 254694.018100000917912 ], [ 360134.664099998772144, 254698.140799999237061 ], [ 360137.891099996864796, 254697.9560999982059 ], [ 360141.137999996542931, 254695.449599999934435 ], [ 360143.605400003492832, 254689.770300000905991 ], [ 360148.491899996995926, 254684.110700000077486 ], [ 360155.790100000798702, 254679.31529999896884 ], [ 360165.379199996590614, 254672.232099998742342 ], [ 360157.436099998652935, 254615.738000001758337 ], [ 360152.957599997520447, 254614.010899998247623 ], [ 360146.610399998724461, 254615.336300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304014100", "MAP": "D9-8309-T009", "PARCEL_NAM": "2G", "ACRE": ".503", "LONGITUDE": -64.91769168, "LATITUDE": 18.32159912, "OBJECTID_1": 32393, "PARCEL_NO_": "107304014100", "Tax_Legal_": "BAKKERO ESTATE 2G FRENCHMAN'S BAY QTR. NO. 5", "Name": "MATTHEW FAMILY TRUST", "Address": "PO BOX 238", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.54589001300002, "SHAPE_Area": 2466.3122260300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360248.5337999984622, 254730.749800000339746 ], [ 360250.524099998176098, 254688.566100001335144 ], [ 360247.509800001978874, 254686.89130000025034 ], [ 360221.696800000965595, 254679.037000000476837 ], [ 360200.584200002253056, 254676.185499999672174 ], [ 360201.498499996960163, 254708.872999999672174 ], [ 360172.74210000038147, 254712.442200001329184 ], [ 360173.284299999475479, 254721.716699998825788 ], [ 360174.625399999320507, 254738.120000001043081 ], [ 360198.075199998915195, 254718.921900000423193 ], [ 360199.97749999910593, 254717.062100000679493 ], [ 360216.484200000762939, 254717.511300001293421 ], [ 360239.676899999380112, 254727.080899998545647 ], [ 360248.5337999984622, 254730.749800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012600", "MAP": "D9-8309-T009", "PARCEL_NAM": "2H", "ACRE": ".520", "LONGITUDE": -64.91770012000001, "LATITUDE": 18.32189223, "OBJECTID_1": 31730, "PARCEL_NO_": "107304012600", "Tax_Legal_": "ESTATE BAKKERO 2H & 2HA-1 FRENCHMANS BAY QTR", "Name": "ARELLANO, JOSEPH B. & VIPHAWAN BOONTAWEESUK", "Address": "PO Box 10333", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013333, "Country": "United States", "Land_Value": 158800, "Improved_V": 476600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.918283363, "SHAPE_Area": 1988.7171929199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360247.001199997961521, 254763.232700001448393 ], [ 360248.5337999984622, 254730.749800000339746 ], [ 360239.676899999380112, 254727.080899998545647 ], [ 360216.484200000762939, 254717.511300001293421 ], [ 360199.97749999910593, 254717.062100000679493 ], [ 360198.075199998915195, 254718.921900000423193 ], [ 360174.625399999320507, 254738.120000001043081 ], [ 360175.406900003552437, 254747.679099999368191 ], [ 360182.645400002598763, 254745.185199998319149 ], [ 360190.717600002884865, 254744.195799998939037 ], [ 360202.801500000059605, 254745.561200000345707 ], [ 360209.23759999871254, 254747.302700001746416 ], [ 360224.494599997997284, 254754.815799999982119 ], [ 360237.355999998748302, 254759.565099999308586 ], [ 360247.001199997961521, 254763.232700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304013400", "MAP": "D9-2393-T83", "PARCEL_NAM": "2M-1", "ACRE": ".666", "LONGITUDE": -64.91703283, "LATITUDE": 18.32191173, "OBJECTID_1": 32386, "PARCEL_NO_": "107304013400", "Tax_Legal_": "2M-1 & 2HA-REM. ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "SAYEGH, ALFRED G", "Address": "7336 Estate Bakkeroe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 189600, "Improved_V": 427500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.92352137, "SHAPE_Area": 3005.9883149399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360269.115800000727177, 254698.005399998277426 ], [ 360267.744800001382828, 254778.074599999934435 ], [ 360278.30349999666214, 254780.376400001347065 ], [ 360308.163999997079372, 254777.4543999992311 ], [ 360303.998700000345707, 254698.4712999984622 ], [ 360282.219300001859665, 254699.348499998450279 ], [ 360278.979599997401237, 254701.01069999858737 ], [ 360275.754399999976158, 254700.984299998730421 ], [ 360269.115800000727177, 254698.005399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304013400", "MAP": "D9-7948-T007", "PARCEL_NAM": "2HA-REM", "ACRE": ".3733", "LONGITUDE": -64.91730389, "LATITUDE": 18.32184988, "OBJECTID_1": 32386, "PARCEL_NO_": "107304013400", "Tax_Legal_": "2M-1 & 2HA-REM. ESTATE BAKKERO No.5 FRENCHMAN'S BAY QTR.", "Name": "SAYEGH, ALFRED G", "Address": "7336 Estate Bakkeroe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 189600, "Improved_V": 427500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.36312921199999, "SHAPE_Area": 1553.3644688899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360250.524099998176098, 254688.566100001335144 ], [ 360248.5337999984622, 254730.749800000339746 ], [ 360247.001199997961521, 254763.232700001448393 ], [ 360251.812100000679493, 254766.438499998301268 ], [ 360260.648800000548363, 254773.752999998629093 ], [ 360262.436800003051758, 254775.031599998474121 ], [ 360266.230400003492832, 254777.74439999833703 ], [ 360267.744800001382828, 254778.074599999934435 ], [ 360269.115800000727177, 254698.005399998277426 ], [ 360265.532200001180172, 254696.397399999201298 ], [ 360260.491999998688698, 254694.104400001466274 ], [ 360250.524099998176098, 254688.566100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015900", "MAP": "D9-5528-T93", "PARCEL_NAM": "3F-2", "ACRE": null, "LONGITUDE": -64.91426069000001, "LATITUDE": 18.32643676, "OBJECTID_1": 32997, "PARCEL_NO_": "107401015900", "Tax_Legal_": "BAKKERO 3F-2 FRENCHMANS BAY QTR.", "Name": "NICHOLAS B WASSUM and KERRIE K WASSUM", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 113800, "Improved_V": 393600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.53060198700001, "SHAPE_Area": 2796.0918152499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360648.885399997234344, 255294.466899998486042 ], [ 360653.01410000026226, 255283.101599998772144 ], [ 360595.142499998211861, 255239.650499999523163 ], [ 360590.36540000140667, 255235.789599999785423 ], [ 360592.963200002908707, 255233.003199998289347 ], [ 360544.067699998617172, 255198.616900000721216 ], [ 360546.398500002920628, 255208.979600001126528 ], [ 360545.574199996888638, 255211.083799999207258 ], [ 360542.95380000025034, 255234.704799998551607 ], [ 360541.154200002551079, 255256.643800001591444 ], [ 360570.951800003647804, 255261.109600000083447 ], [ 360572.487099997699261, 255270.199099998921156 ], [ 360575.672799997031689, 255274.869300000369549 ], [ 360581.394299998879433, 255265.839099999517202 ], [ 360596.832900002598763, 255252.033300001174212 ], [ 360605.625, 255261.182199999690056 ], [ 360608.05120000243187, 255260.357700001448393 ], [ 360609.652999997138977, 255261.63740000128746 ], [ 360616.116099998354912, 255260.212600000202656 ], [ 360619.337700001895428, 255260.661200001835823 ], [ 360624.947800002992153, 255264.7179000005126 ], [ 360648.885399997234344, 255294.466899998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401010900", "MAP": null, "PARCEL_NAM": "3A-1", "ACRE": null, "LONGITUDE": -64.91345264, "LATITUDE": 18.32720443, "OBJECTID_1": 32950, "PARCEL_NO_": "107401010900", "Tax_Legal_": "BAKKERO/ROADWAY 3A-1 FRENCHMAN BAY QTR", "Name": "FRENCHMANS COVE ASSOC", "Address": "PO Box 2372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.01073820100001, "SHAPE_Area": 992.90499517800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360648.793700002133846, 255305.231899999082088 ], [ 360642.094999998807907, 255334.30799999833107 ], [ 360642.861800000071526, 255338.958299998193979 ], [ 360644.465400002896786, 255340.026900000870228 ], [ 360669.444899998605251, 255342.13120000064373 ], [ 360679.883799999952316, 255347.282900001853704 ], [ 360685.495700001716614, 255351.128499999642372 ], [ 360695.882399998605251, 255362.401500001549721 ], [ 360691.928199999034405, 255353.292100001126528 ], [ 360661.613799996674061, 255314.836100000888109 ], [ 360655.244199998676777, 255305.284699998795986 ], [ 360648.885399997234344, 255294.466899998486042 ], [ 360648.793700002133846, 255305.231899999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302062300", "MAP": "B9-79-T62", "PARCEL_NAM": "107", "ACRE": ".69", "LONGITUDE": -64.93407312, "LATITUDE": 18.34535116, "OBJECTID_1": 9704, "PARCEL_NO_": "105302062300", "Tax_Legal_": "107 AGNES FANCY QUEENS QTR", "Name": "JEAN E BURNETT REVOCABLE TRUST", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 169900, "Improved_V": 129300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.2384581, "SHAPE_Area": 2968.0118957899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358444.91950000077486, 257301.026799999177456 ], [ 358441.595399998128414, 257312.609700001776218 ], [ 358438.273000001907349, 257323.981600001454353 ], [ 358432.45440000295639, 257344.410000000149012 ], [ 358440.487000003457069, 257348.064399998635054 ], [ 358449.334799997508526, 257350.669900000095367 ], [ 358459.80969999730587, 257351.600000001490116 ], [ 358471.121500000357628, 257348.948399998247623 ], [ 358473.64469999819994, 257336.725600000470877 ], [ 358478.491599999368191, 257335.709800001233816 ], [ 358493.754000000655651, 257342.589699998497963 ], [ 358493.786300003528595, 257338.790300000458956 ], [ 358494.148699998855591, 257296.255100000649691 ], [ 358479.659299999475479, 257293.289599999785423 ], [ 358461.965400002896786, 257287.867400001734495 ], [ 358449.096799999475479, 257283.962400000542402 ], [ 358449.071599997580051, 257286.917500000447035 ], [ 358444.91950000077486, 257301.026799999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032700", "MAP": "D9-7528-T005", "PARCEL_NAM": "1-42-1", "ACRE": ".08", "LONGITUDE": -64.91992303000001, "LATITUDE": 18.323878, "OBJECTID_1": 31673, "PARCEL_NO_": "107302032700", "Tax_Legal_": "BAKKERO 1-42 FRENCHMAN BAY QTR", "Name": "DAVIS JR., THOMAS", "Address": "424 E Central Blvd", "City": "Orlando", "State": "Florida", "Zip": 32801, "Country": "United States", "Land_Value": 144600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.323832154, "SHAPE_Area": 310.50638027799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360011.474899999797344, 254960.366200000047684 ], [ 359996.035899996757507, 254955.418999999761581 ], [ 359984.459899999201298, 254956.384700000286102 ], [ 359973.42960000038147, 254955.939699999988079 ], [ 359969.721699997782707, 254952.371199999004602 ], [ 359967.118100002408028, 254944.389400001615286 ], [ 359965.282799996435642, 254930.383299998939037 ], [ 359963.335299998521805, 254931.896800000220537 ], [ 359964.742899999022484, 254955.973000001162291 ], [ 359968.736699998378754, 254960.4386 ], [ 359974.364699997007847, 254962.384500000625849 ], [ 359988.878300003707409, 254962.503299999982119 ], [ 360005.024400003254414, 254960.313400000333786 ], [ 360011.474899999797344, 254960.366200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107304014000", "MAP": "D9-3040-T85", "PARCEL_NAM": "4-C-1", "ACRE": ".06", "LONGITUDE": -64.92154415, "LATITUDE": 18.32200638, "OBJECTID_1": 32392, "PARCEL_NO_": "107304014000", "Tax_Legal_": "BAKKERO 4C-1 FRENCHMANS BAY QTR.", "Name": "DiamondRock Frenchman's Owner Inc", "Address": "2 Bethesda Metro Ctr Fl 14", "City": "Bethesda", "State": "Maryland", "Zip": 208145390, "Country": "United States", "Land_Value": 12600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.793998340300007, "SHAPE_Area": 209.045334285 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359797.997400000691414, 254741.525699999183416 ], [ 359807.590599998831749, 254756.864100001752377 ], [ 359825.325599998235703, 254741.638300001621246 ], [ 359797.997400000691414, 254741.525699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107304013300", "MAP": "A9-646-T005", "PARCEL_NAM": "4-C-REM", "ACRE": "2.197", "LONGITUDE": -64.92095724000001, "LATITUDE": 18.32230658, "OBJECTID_1": 31736, "PARCEL_NO_": "107304013300", "Tax_Legal_": "BAKKERO ESTATE 4-C REM, 4-D & 4-E NO. 5 FRENCHMAN'S BAY QTR", "Name": "MARRIOTT OWNERSHIP RESORTS STT INC", "Address": "6649 Westwood Blvd", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 1312100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 571.88058949000003, "SHAPE_Area": 10265.0839698 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359920.210100002586842, 254827.538100000470877 ], [ 359920.294200003147125, 254827.199400000274181 ], [ 359921.95549999922514, 254818.631400000303984 ], [ 359924.084100000560284, 254808.486400000751019 ], [ 359924.156900003552437, 254799.679400000721216 ], [ 359921.082599997520447, 254786.781300000846386 ], [ 359913.9746999964118, 254767.07490000128746 ], [ 359977.753200002014637, 254750.35020000115037 ], [ 359973.648900002241135, 254742.249000001698732 ], [ 359825.325599998235703, 254741.638300001621246 ], [ 359807.590599998831749, 254756.864100001752377 ], [ 359797.997400000691414, 254741.525699999183416 ], [ 359789.111599996685982, 254741.489199999719858 ], [ 359793.153399996459484, 254747.0636 ], [ 359794.719200000166893, 254752.564899999648333 ], [ 359793.885899998247623, 254755.724500000476837 ], [ 359789.807599999010563, 254761.179499998688698 ], [ 359791.398699998855591, 254763.725699998438358 ], [ 359800.269900001585484, 254763.587200000882149 ], [ 359801.862800002098083, 254765.922200001776218 ], [ 359805.005300000309944, 254775.658300001174212 ], [ 359815.381300002336502, 254788.197700001299381 ], [ 359820.145400002598763, 254796.891499999910593 ], [ 359820.096900001168251, 254802.590700000524521 ], [ 359818.468000002205372, 254804.477200001478195 ], [ 359815.23200000077486, 254805.717300001531839 ], [ 359800.696800000965595, 254808.131400000303984 ], [ 359801.467200003564358, 254812.359600000083447 ], [ 359819.227600000798702, 254809.971799999475479 ], [ 359821.639399997889996, 254810.835900001227856 ], [ 359824.82320000231266, 254815.717199999839067 ], [ 359827.143299996852875, 254827.3462999984622 ], [ 359920.210100002586842, 254827.538100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107304013300", "MAP": "A9-646-T005", "PARCEL_NAM": "4-C-2", "ACRE": ".722", "LONGITUDE": -64.92021296, "LATITUDE": 18.32238108, "OBJECTID_1": 31736, "PARCEL_NO_": "107304013300", "Tax_Legal_": "BAKKERO ESTATE 4-C REM, 4-D & 4-E NO. 5 FRENCHMAN'S BAY QTR", "Name": "MARRIOTT OWNERSHIP RESORTS STT INC", "Address": "6649 Westwood Blvd", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 1312100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.67120503199999, "SHAPE_Area": 3948.8930069899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359977.753200002014637, 254750.35020000115037 ], [ 359913.9746999964118, 254767.07490000128746 ], [ 359921.082599997520447, 254786.781300000846386 ], [ 359924.156900003552437, 254799.679400000721216 ], [ 359924.084100000560284, 254808.486400000751019 ], [ 359921.95549999922514, 254818.631400000303984 ], [ 359920.294200003147125, 254827.199400000274181 ], [ 359920.210100002586842, 254827.538100000470877 ], [ 359965.029899999499321, 254827.630399998277426 ], [ 359969.210699997842312, 254810.143899999558926 ], [ 359972.504299998283386, 254802.149300001561642 ], [ 359979.845600001513958, 254792.287999998778105 ], [ 359983.1283999979496, 254785.559900000691414 ], [ 359984.753600001335144, 254784.095499999821186 ], [ 359986.50110000371933, 254768.277800001204014 ], [ 359982.541500002145767, 254759.801600001752377 ], [ 359977.753200002014637, 254750.35020000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107304013300", "MAP": "A9-646-T005", "PARCEL_NAM": "4-D", "ACRE": ".856", "LONGITUDE": -64.92115125, "LATITUDE": 18.32291871, "OBJECTID_1": 31736, "PARCEL_NO_": "107304013300", "Tax_Legal_": "BAKKERO ESTATE 4-C REM, 4-D & 4-E NO. 5 FRENCHMAN'S BAY QTR", "Name": "MARRIOTT OWNERSHIP RESORTS STT INC", "Address": "6649 Westwood Blvd", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 1312100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.87307918900001, "SHAPE_Area": 2269.4733115499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359815.585900001227856, 254877.536200001835823 ], [ 359844.882799997925758, 254879.647799998521805 ], [ 359845.205099999904633, 254868.13289999961853 ], [ 359850.883000001311302, 254868.405600000172853 ], [ 359850.940800003707409, 254861.405200000852346 ], [ 359855.937100000679493, 254861.6722999997437 ], [ 359855.976300001144409, 254856.930100001394749 ], [ 359873.920699998736382, 254857.530000001192093 ], [ 359875.036499999463558, 254832.471500001847744 ], [ 359920.024099998176098, 254832.391399998217821 ], [ 359920.210100002586842, 254827.538100000470877 ], [ 359827.143299996852875, 254827.3462999984622 ], [ 359827.87950000166893, 254835.58500000089407 ], [ 359825.338299997150898, 254849.918499998748302 ], [ 359825.300499998033047, 254854.351199999451637 ], [ 359821.159199997782707, 254867.193999998271465 ], [ 359817.052199997007847, 254876.026299998164177 ], [ 359815.585900001227856, 254877.536200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302032200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91842942, "LATITUDE": 18.32541549, "OBJECTID_1": 31668, "PARCEL_NO_": "107302032200", "Tax_Legal_": "BAKKERO 1-58 FRENCHMANS BAY QTR", "Name": "RAIMER, CRESIDA MCCLEAN & LORRIE PETERSON", "Address": "PO Box 11508", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 106900, "Improved_V": 216600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.76838705, "SHAPE_Area": 2237.1243060100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360159.288699999451637, 255155.199700001627207 ], [ 360162.287500001490116, 255155.937699999660254 ], [ 360163.052299998700619, 255152.013199999928474 ], [ 360172.202200002968311, 255119.157499998807907 ], [ 360110.258199997246265, 255101.97410000115633 ], [ 360097.153999999165535, 255125.720499999821186 ], [ 360114.804799996316433, 255136.208500001579523 ], [ 360128.46000000089407, 255142.44200000166893 ], [ 360150.171099998056889, 255149.585799999535084 ], [ 360154.770099997520447, 255152.0472999997437 ], [ 360155.820600003004074, 255148.998700000345707 ], [ 360160.636900000274181, 255151.571299999952316 ], [ 360159.288699999451637, 255155.199700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302035100", "MAP": "D9-7792-T006", "PARCEL_NAM": "1-68-1", "ACRE": ".501", "LONGITUDE": -64.91804081, "LATITUDE": 18.32595364, "OBJECTID_1": 31698, "PARCEL_NO_": "107302035100", "Tax_Legal_": "BAKKERO 1-68 FRENCHMAN BAY QTR.", "Name": "C & N HOLDING, INC.", "Address": "7340 Estate Bakkeaoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023001, "Country": "United States", "Land_Value": 741100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.34876597499999, "SHAPE_Area": 1655.2724178000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360192.879000000655651, 255214.312399998307228 ], [ 360199.654700003564358, 255167.135499998927116 ], [ 360177.794200003147125, 255167.389199998229742 ], [ 360171.647699996829033, 255166.755899999290705 ], [ 360165.657300002872944, 255164.959399998188019 ], [ 360160.467799998819828, 255163.019900001585484 ], [ 360160.386399999260902, 255163.061799999326468 ], [ 360151.384499996900558, 255196.458500001579523 ], [ 360192.879000000655651, 255214.312399998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302035100", "MAP": "D9-7792-T006", "PARCEL_NAM": "1-68-2", "ACRE": ".501", "LONGITUDE": -64.91795492, "LATITUDE": 18.3255256, "OBJECTID_1": 31698, "PARCEL_NO_": "107302035100", "Tax_Legal_": "BAKKERO 1-68 FRENCHMAN BAY QTR.", "Name": "C & N HOLDING, INC.", "Address": "7340 Estate Bakkeaoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023001, "Country": "United States", "Land_Value": 741100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.70322615800001, "SHAPE_Area": 1593.8373455200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360201.625900000333786, 255160.037799999117851 ], [ 360209.785300001502037, 255118.00789999961853 ], [ 360172.202200002968311, 255119.157499998807907 ], [ 360163.052299998700619, 255152.013199999928474 ], [ 360162.167300000786781, 255155.908100001513958 ], [ 360162.287500001490116, 255155.937699999660254 ], [ 360169.811200000345707, 255158.587999999523163 ], [ 360174.631099998950958, 255160.229299999773502 ], [ 360201.625900000333786, 255160.037799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302035100", "MAP": "D9-7792-T006", "PARCEL_NAM": "1-68-3", "ACRE": ".506", "LONGITUDE": -64.91755069, "LATITUDE": 18.32551447, "OBJECTID_1": 31698, "PARCEL_NO_": "107302035100", "Tax_Legal_": "BAKKERO 1-68 FRENCHMAN BAY QTR.", "Name": "C & N HOLDING, INC.", "Address": "7340 Estate Bakkeaoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023001, "Country": "United States", "Land_Value": 741100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.56918907799999, "SHAPE_Area": 2060.9405823699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360228.453400000929832, 255169.588700000196695 ], [ 360263.315600000321865, 255123.687699999660254 ], [ 360259.312799997627735, 255116.493000000715256 ], [ 360209.785300001502037, 255118.00789999961853 ], [ 360201.625900000333786, 255160.037799999117851 ], [ 360203.047899998724461, 255160.027699999511242 ], [ 360208.908699996769428, 255159.785000000149012 ], [ 360213.878600001335144, 255160.990899998694658 ], [ 360217.375600002706051, 255163.203600000590086 ], [ 360225.39469999819994, 255167.637499999254942 ], [ 360228.453400000929832, 255169.588700000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302035100", "MAP": "D9-8140-T008", "PARCEL_NAM": "1-61-4", "ACRE": "5.151", "LONGITUDE": -64.91703521, "LATITUDE": 18.32675868, "OBJECTID_1": 31698, "PARCEL_NO_": "107302035100", "Tax_Legal_": "BAKKERO 1-68 FRENCHMAN BAY QTR.", "Name": "C & N HOLDING, INC.", "Address": "7340 Estate Bakkeaoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023001, "Country": "United States", "Land_Value": 741100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 900.31712695500005, "SHAPE_Area": 19938.999874100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360189.970600001513958, 255235.504700001329184 ], [ 360190.769900001585484, 255235.24720000103116 ], [ 360259.620200000703335, 255236.387499999254942 ], [ 360262.614399999380112, 255290.597100000828505 ], [ 360280.210600003600121, 255383.1418999992311 ], [ 360310.944799996912479, 255413.625599998980761 ], [ 360317.926100000739098, 255445.863800000399351 ], [ 360328.240599997341633, 255449.740600001066923 ], [ 360337.108300000429153, 255450.02419999986887 ], [ 360341.956900000572205, 255448.797400001436472 ], [ 360346.823600001633167, 255445.459699999541044 ], [ 360363.935900002717972, 255424.49040000140667 ], [ 360373.773500002920628, 255405.572500001639128 ], [ 360320.875200003385544, 255367.776000000536442 ], [ 360320.149800002574921, 255358.270799998193979 ], [ 360314.04450000077486, 255317.690900001674891 ], [ 360317.627599999308586, 255275.712600000202656 ], [ 360321.192699998617172, 255235.845100000500679 ], [ 360316.56530000269413, 255211.109299998730421 ], [ 360291.875299997627735, 255175.021299999207258 ], [ 360263.315600000321865, 255123.687699999660254 ], [ 360228.453400000929832, 255169.588700000196695 ], [ 360236.030799999833107, 255174.422499999403954 ], [ 360245.639300003647804, 255181.490100000053644 ], [ 360241.352200001478195, 255186.258900001645088 ], [ 360227.815800003707409, 255175.955899998545647 ], [ 360220.381300002336502, 255171.672400001436472 ], [ 360213.526699997484684, 255168.121599998325109 ], [ 360207.090899996459484, 255167.049300000071526 ], [ 360199.654700003564358, 255167.135499998927116 ], [ 360192.879000000655651, 255214.312399998307228 ], [ 360189.970600001513958, 255235.504700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107302024900", "MAP": "A9-732-T008", "PARCEL_NAM": "4-REM", "ACRE": "1.87", "LONGITUDE": -64.9205718, "LATITUDE": 18.32456608, "OBJECTID_1": 24882, "PARCEL_NO_": "107302024900", "Tax_Legal_": "4 REMAINDER BAKKERO ESTATE FRENCHMAN BAY QTR", "Name": "MARRIOTT OWNERSHIP RESORTS STT", "Address": "PO Box 24747", "City": "LAKELAND", "State": "Florida", "Zip": 33145, "Country": "United States", "Land_Value": 4753000, "Improved_V": 262700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 482.47930317599997, "SHAPE_Area": 6597.2026759199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359912.346000000834465, 255003.455099999904633 ], [ 359903.850900001823902, 255017.859299998730421 ], [ 359896.109899997711182, 255028.172100000083447 ], [ 359887.016999997198582, 255033.631299998611212 ], [ 359876.207099996507168, 255036.309099998325109 ], [ 359873.42620000243187, 255035.94029999896884 ], [ 359871.951499998569489, 255045.95890000090003 ], [ 359831.668600000441074, 255053.379799999296665 ], [ 359831.619400002062321, 255059.163600001484156 ], [ 359829.844899997115135, 255078.14750000089407 ], [ 359837.098099999129772, 255078.629099998623133 ], [ 359858.029899999499321, 255082.600099999457598 ], [ 359886.25620000064373, 255082.197799999266863 ], [ 359891.104900002479553, 255080.971000000834465 ], [ 359900.008500002324581, 255077.032999999821186 ], [ 359905.68860000371933, 255072.857700001448393 ], [ 359909.765100002288818, 255067.613699998706579 ], [ 359917.871399998664856, 255062.613800000399351 ], [ 359919.501999996602535, 255060.516199998557568 ], [ 359922.867499999701977, 255044.078499998897314 ], [ 359927.755800001323223, 255038.207800000905991 ], [ 359943.957500003278255, 255029.474500000476837 ], [ 359948.809799998998642, 255027.825500000268221 ], [ 359951.259300000965595, 255024.256900001317263 ], [ 359954.50789999961853, 255021.539299998432398 ], [ 359956.228399999439716, 255008.887800000607967 ], [ 359959.507600001990795, 255002.581799998879433 ], [ 359976.555299997329712, 254989.211300000548363 ], [ 359983.03999999910593, 254985.253600001335144 ], [ 359995.98589999973774, 254980.082299999892712 ], [ 360009.768700003623962, 254971.329100001603365 ], [ 360007.364200003445148, 254969.620700001716614 ], [ 359990.415399998426437, 254971.381799999624491 ], [ 359977.510899998247623, 254971.698399998247623 ], [ 359970.259400002658367, 254971.005800001323223 ], [ 359963.029600001871586, 254967.780200000852346 ], [ 359957.437600001692772, 254961.612700000405312 ], [ 359953.981600001454353, 254968.753299999982119 ], [ 359948.963699996471405, 254974.7652000002563 ], [ 359942.347099997103214, 254980.285999998450279 ], [ 359934.445900000631809, 254986.114799998700619 ], [ 359928.486100003123283, 254989.729400001466274 ], [ 359922.690600000321865, 254992.867499999701977 ], [ 359919.626000002026558, 254995.231699999421835 ], [ 359915.745600000023842, 254999.341400001198053 ], [ 359912.346000000834465, 255003.455099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034200", "MAP": "F9-2596-T70", "PARCEL_NAM": "1-3-A", "ACRE": null, "LONGITUDE": -64.91616361, "LATITUDE": 18.32429779, "OBJECTID_1": 31689, "PARCEL_NO_": "107302034200", "Tax_Legal_": "BAKKERO 1-4 & 1-3A FRENCHMAN BAY QTR", "Name": "CAPTAINSOY FAMILY TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 170600, "Improved_V": 746400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.430454855899995, "SHAPE_Area": 223.029492105 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360399.028899997472763, 254999.916600000113249 ], [ 360363.619800001382828, 255001.324000000953674 ], [ 360368.241499997675419, 255013.73759999871254 ], [ 360399.028899997472763, 254999.916600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401012400", "MAP": "A9-88-T68", "PARCEL_NAM": "1-27", "ACRE": ".644", "LONGITUDE": -64.91552574000001, "LATITUDE": 18.32591168, "OBJECTID_1": 32965, "PARCEL_NO_": "107401012400", "Tax_Legal_": "BAKKERO 1-27 FRENCHMAN BAY QTR", "Name": "RIMPEL FAMILY REALTY TRUST", "Address": "30 Border Rd", "City": "Concord", "State": "Massachusetts", "Zip": 1742, "Country": "United States", "Land_Value": 90400, "Improved_V": 712900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.91957543800001, "SHAPE_Area": 2789.5542697300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360432.449100002646446, 255221.166400000452995 ], [ 360484.69539999961853, 255190.432000000029802 ], [ 360482.288900002837181, 255185.942699998617172 ], [ 360477.409500002861023, 255180.461899999529123 ], [ 360477.358599998056889, 255180.404699999839067 ], [ 360472.838500000536442, 255176.854299999773502 ], [ 360466.446299999952316, 255172.666400000452995 ], [ 360461.832900002598763, 255170.043699998408556 ], [ 360452.508299998939037, 255164.315999999642372 ], [ 360441.040500000119209, 255157.65430000051856 ], [ 360424.653999999165535, 255151.25730000063777 ], [ 360408.898500002920628, 255163.313499998301268 ], [ 360418.380000002682209, 255186.1891999989748 ], [ 360432.449100002646446, 255221.166400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91591667, "LATITUDE": 18.32613823, "OBJECTID_1": 31693, "PARCEL_NO_": "107302034600", "Tax_Legal_": "BAKKERO 1-25 FRENCHMAN BAY QTR", "Name": "WHEATLEY, CARDIFF & VALARIA", "Address": "PO Box 10778", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 89200, "Improved_V": 271400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.25476458399999, "SHAPE_Area": 3231.4724071800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360375.9746999964118, 255241.843100000172853 ], [ 360431.86089999973774, 255236.814300000667572 ], [ 360432.449100002646446, 255221.166400000452995 ], [ 360418.380000002682209, 255186.1891999989748 ], [ 360408.898500002920628, 255163.313499998301268 ], [ 360372.375200003385544, 255191.089999999850988 ], [ 360376.241400003433228, 255210.542199999094009 ], [ 360375.9746999964118, 255241.843100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107401012300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91529798000001, "LATITUDE": 18.32628293, "OBJECTID_1": 32964, "PARCEL_NO_": "107401012300", "Tax_Legal_": "1-26 ESTATE BAKKERO FRENCHMAN BAY QTR.", "Name": "SALLER, HELEN R", "Address": "343 Walnut Ln", "City": "Princeton", "State": "New Jersey", "Zip": 8540, "Country": "United States", "Land_Value": 80200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.10778013300001, "SHAPE_Area": 2562.23975169 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360431.562299996614456, 255244.75899999961257 ], [ 360492.039300002157688, 255248.547899998724461 ], [ 360502.665200002491474, 255231.208700001239777 ], [ 360499.429200001060963, 255232.448699999600649 ], [ 360495.402999997138977, 255231.782499998807907 ], [ 360492.20830000191927, 255228.16780000180006 ], [ 360489.850500002503395, 255220.9712999984622 ], [ 360491.38570000231266, 255211.770700000226498 ], [ 360491.630300000309944, 255208.163400001823902 ], [ 360489.375299997627735, 255202.188999999314547 ], [ 360486.071400001645088, 255192.998799998313189 ], [ 360484.69539999961853, 255190.432000000029802 ], [ 360432.449100002646446, 255221.166400000452995 ], [ 360431.562299996614456, 255244.75899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91589723, "LATITUDE": 18.32663872, "OBJECTID_1": 31694, "PARCEL_NO_": "107302034700", "Tax_Legal_": "BAKKERO 1-23 FRENCHMAN BAY QTR", "Name": "FOY, RUDOLPH", "Address": "Po Box 12019", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 122300, "Improved_V": 87900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.033837164, "SHAPE_Area": 2777.9238228 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360430.554499998688698, 255271.570599999278784 ], [ 360431.528300002217293, 255245.663699999451637 ], [ 360431.86089999973774, 255236.814300000667572 ], [ 360375.9746999964118, 255241.843100000172853 ], [ 360375.9375, 255246.214600000530481 ], [ 360375.879900000989437, 255252.969099998474121 ], [ 360373.148100003600121, 255289.677000001072884 ], [ 360425.561999998986721, 255289.683800000697374 ], [ 360427.221400000154972, 255284.20890000090003 ], [ 360430.554499998688698, 255271.570599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91538711, "LATITUDE": 18.32667815, "OBJECTID_1": 32962, "PARCEL_NO_": "107401012100", "Tax_Legal_": "BAKKERO 1-24 FRENCHMAN BAY QTR", "Name": "MANSUKHANI, MANOJ & NISHA M.", "Address": "PO BOX 8737", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 106700, "Improved_V": 5900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.194050054, "SHAPE_Area": 2459.1285489299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360427.221400000154972, 255284.20890000090003 ], [ 360465.7787000015378, 255301.623100001364946 ], [ 360474.367899999022484, 255288.528299998492002 ], [ 360479.82660000026226, 255275.622099999338388 ], [ 360483.39130000025034, 255266.631900001317263 ], [ 360492.039300002157688, 255248.547899998724461 ], [ 360431.562299996614456, 255244.75899999961257 ], [ 360430.554499998688698, 255271.570599999278784 ], [ 360427.221400000154972, 255284.20890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401012600", "MAP": "D9-7960-T007", "PARCEL_NAM": "1-2-REM", "ACRE": "2.325", "LONGITUDE": -64.91560845, "LATITUDE": 18.3250909, "OBJECTID_1": 32967, "PARCEL_NO_": "107401012600", "Tax_Legal_": "1-2 REM BAKKERO NO.5 FRENCHMAN'S BAY QTR", "Name": "MARTIN, MICHAEL & MARGARET SPRAUVE", "Address": "PO Box 7133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 273300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 437.73884815000002, "SHAPE_Area": 10245.8485719 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360472.991800002753735, 255170.090300001204014 ], [ 360455.228299997746944, 255155.385299999266863 ], [ 360465.208700001239777, 255124.90819999948144 ], [ 360500.343000002205372, 255102.822599999606609 ], [ 360497.962300002574921, 255098.769000001251698 ], [ 360485.130500003695488, 255076.0 ], [ 360457.890299998223782, 255028.192499998956919 ], [ 360456.037900000810623, 255025.221900001168251 ], [ 360384.814499996602535, 255056.091899998486042 ], [ 360380.362099997699261, 255105.451400000602007 ], [ 360388.292199999094009, 255121.137200001627207 ], [ 360397.812100000679493, 255140.622400000691414 ], [ 360424.653999999165535, 255151.25730000063777 ], [ 360441.040500000119209, 255157.65430000051856 ], [ 360452.508299998939037, 255164.315999999642372 ], [ 360454.251199997961521, 255165.386599998921156 ], [ 360456.220799997448921, 255161.292500000447035 ], [ 360463.108800001442432, 255164.403900001198053 ], [ 360466.964299999177456, 255166.627700001001358 ], [ 360472.994499996304512, 255170.105900000780821 ], [ 360472.991800002753735, 255170.090300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91607498, "LATITUDE": 18.32566918, "OBJECTID_1": 31692, "PARCEL_NO_": "107302034500", "Tax_Legal_": "BAKKERO ESTATE 1-28 No.5 FRENCHMAN'S BAY QTR.", "Name": "SMITH, LEROY & OTHERS", "Address": "PO Box 6244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 70200, "Improved_V": 543200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.45888159099999, "SHAPE_Area": 2160.5868224300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360408.898500002920628, 255163.313499998301268 ], [ 360424.653999999165535, 255151.25730000063777 ], [ 360397.812100000679493, 255140.622400000691414 ], [ 360388.292199999094009, 255121.137200001627207 ], [ 360354.103399999439716, 255158.854200001806021 ], [ 360364.465000003576279, 255173.082299999892712 ], [ 360372.375200003385544, 255191.089999999850988 ], [ 360408.898500002920628, 255163.313499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107401012500", "MAP": "D9-7960-T007", "PARCEL_NAM": "1-1", "ACRE": ".505", "LONGITUDE": -64.91492944, "LATITUDE": 18.3258486, "OBJECTID_1": 32966, "PARCEL_NO_": "107401012500", "Tax_Legal_": "CONSOLIDATED 1-1 BAKKERO NO. 5 FRENCHMANS BAY QUARTER", "Name": "LEWIS, LORIN", "Address": "PO BOX 306464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.952321668, "SHAPE_Area": 1825.61520653 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360516.279799997806549, 255144.564800001680851 ], [ 360480.231700003147125, 255170.625599998980761 ], [ 360485.350000001490116, 255183.608300000429153 ], [ 360486.669299997389317, 255185.068599998950958 ], [ 360490.00900000333786, 255191.333000000566244 ], [ 360492.663500003516674, 255198.434500001370907 ], [ 360495.821000002324581, 255206.214299999177456 ], [ 360497.191899999976158, 255213.98759999871254 ], [ 360530.827399998903275, 255181.99100000038743 ], [ 360516.279799997806549, 255144.564800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401016700", "MAP": "D9-8457-T010", "PARCEL_NAM": "1-2-1", "ACRE": ".501", "LONGITUDE": -64.91512672, "LATITUDE": 18.32550904, "OBJECTID_1": 33003, "PARCEL_NO_": "107401016700", "Tax_Legal_": "1-2-1 (REVISED) BAKKERO NO. 5 FRENCHMANS BAY QUARTER", "Name": "LEWIS, LORIN", "Address": "PO BOX 306464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.06160037399999, "SHAPE_Area": 2480.41511674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360500.343000002205372, 255102.822599999606609 ], [ 360465.208700001239777, 255124.90819999948144 ], [ 360455.228299997746944, 255155.385299999266863 ], [ 360472.994499996304512, 255170.105900000780821 ], [ 360485.350000001490116, 255183.608300000429153 ], [ 360480.231700003147125, 255170.625599998980761 ], [ 360516.279799997806549, 255144.564800001680851 ], [ 360500.343000002205372, 255102.822599999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107302024900", "MAP": "A9-673-T006", "PARCEL_NAM": "4-F", "ACRE": "1.006", "LONGITUDE": -64.92032348, "LATITUDE": 18.32307045, "OBJECTID_1": 24882, "PARCEL_NO_": "107302024900", "Tax_Legal_": "4 REMAINDER BAKKERO ESTATE FRENCHMAN BAY QTR", "Name": "MARRIOTT OWNERSHIP RESORTS STT", "Address": "PO Box 24747", "City": "LAKELAND", "State": "Florida", "Zip": 33145, "Country": "United States", "Land_Value": 4753000, "Improved_V": 262700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.98656273899999, "SHAPE_Area": 2973.62785536 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359921.894500002264977, 254908.513300001621246 ], [ 359953.861000001430511, 254908.167399998754263 ], [ 359954.170199997723103, 254871.871199999004602 ], [ 359957.568099997937679, 254851.63399999961257 ], [ 359965.029899999499321, 254827.630399998277426 ], [ 359920.210100002586842, 254827.538100000470877 ], [ 359920.024099998176098, 254832.391399998217821 ], [ 359918.107699997723103, 254844.344900000840425 ], [ 359918.4949000030756, 254852.478100001811981 ], [ 359921.894500002264977, 254908.513300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107302024900", "MAP": "A9-712-T007", "PARCEL_NAM": "4-G", "ACRE": ".674", "LONGITUDE": -64.92035961000001, "LATITUDE": 18.32382104, "OBJECTID_1": 24882, "PARCEL_NO_": "107302024900", "Tax_Legal_": "4 REMAINDER BAKKERO ESTATE FRENCHMAN BAY QTR", "Name": "MARRIOTT OWNERSHIP RESORTS STT", "Address": "PO Box 24747", "City": "LAKELAND", "State": "Florida", "Zip": 33145, "Country": "United States", "Land_Value": 4753000, "Improved_V": 262700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.385170257, "SHAPE_Area": 2994.91770137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359921.894500002264977, 254908.513300001621246 ], [ 359924.399599999189377, 254916.099199999123812 ], [ 359924.241700001060963, 254921.51410000026226 ], [ 359920.521600000560284, 254925.625199999660254 ], [ 359916.476999998092651, 254930.211399998515844 ], [ 359906.952100001275539, 254938.575599998235703 ], [ 359918.374499998986721, 254972.122999999672174 ], [ 359912.346000000834465, 255003.455099999904633 ], [ 359915.745600000023842, 254999.341400001198053 ], [ 359919.626000002026558, 254995.231699999421835 ], [ 359922.690600000321865, 254992.867499999701977 ], [ 359928.486100003123283, 254989.729400001466274 ], [ 359934.445900000631809, 254986.114799998700619 ], [ 359942.347099997103214, 254980.285999998450279 ], [ 359948.963699996471405, 254974.7652000002563 ], [ 359953.981600001454353, 254968.753299999982119 ], [ 359957.437600001692772, 254961.612700000405312 ], [ 359955.871699996292591, 254956.1114999987185 ], [ 359953.835799999535084, 254911.131900001317263 ], [ 359953.861000001430511, 254908.167399998754263 ], [ 359921.894500002264977, 254908.513300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304012800", "MAP": "A9-726-T008", "PARCEL_NAM": "2-K", "ACRE": "9.1", "LONGITUDE": -64.91922146, "LATITUDE": 18.32025644, "OBJECTID_1": 31731, "PARCEL_NO_": "107304012800", "Tax_Legal_": "2K BAKKEROE FRENCHMAN'S BAY QTR", "Name": "MIFR (VIRGIN ISLANDS) INC", "Address": "2 Bethesda Metro Ctr", "City": "Bethesda", "State": "Maryland", "Zip": 20814, "Country": "United States", "Land_Value": 514000, "Improved_V": 5508300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1239.5121115100001, "SHAPE_Area": 33745.9735764 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359862.951499998569489, 254504.877300001680851 ], [ 359865.28490000218153, 254609.598799999803305 ], [ 359890.338100001215935, 254603.048900000751019 ], [ 359901.633699998259544, 254602.296900000423193 ], [ 359913.724799998104572, 254602.81810000166297 ], [ 359927.405100002884865, 254606.096400000154972 ], [ 359935.441200003027916, 254609.328600000590086 ], [ 359965.937299996614456, 254626.465700000524521 ], [ 359981.217699997127056, 254631.2347999997437 ], [ 360021.509900003671646, 254634.308800000697374 ], [ 360027.974799998104572, 254632.673000000417233 ], [ 360032.839599996805191, 254629.546399999409914 ], [ 360036.097199998795986, 254625.773400001227856 ], [ 360047.545699998736382, 254607.079700000584126 ], [ 360058.929300002753735, 254595.984999999403954 ], [ 360067.017599999904633, 254593.095800001174212 ], [ 360077.506899997591972, 254592.33729999884963 ], [ 360102.490000002086163, 254594.019499998539686 ], [ 360108.146799996495247, 254592.588100001215935 ], [ 360130.050300002098083, 254577.14640000090003 ], [ 360135.717799998819828, 254574.448600001633167 ], [ 360143.795299999415874, 254572.8260000012815 ], [ 360149.439499996602535, 254572.87220000103116 ], [ 360156.683700002729893, 254574.409099999815226 ], [ 360188.808600001037121, 254589.659699998795986 ], [ 360199.263700000941753, 254592.911699999123812 ], [ 360208.122299998998642, 254594.250700000673532 ], [ 360219.378300003707409, 254598.142499998211861 ], [ 360228.278300002217293, 254594.626800000667572 ], [ 360234.773800000548363, 254589.40260000154376 ], [ 360240.482699997723103, 254581.850000001490116 ], [ 360244.609600000083447, 254570.695799998939037 ], [ 360247.15259999781847, 254556.151099998503923 ], [ 360248.072200000286102, 254542.8597999997437 ], [ 360244.990800000727177, 254525.94709999859333 ], [ 360244.369699999690056, 254504.199400000274181 ], [ 360246.059600003063679, 254495.136199999600649 ], [ 360247.708200000226498, 254490.927799999713898 ], [ 360240.888400003314018, 254439.576200000941753 ], [ 360237.917599998414516, 254421.642499998211861 ], [ 360235.70099999755621, 254385.915899999439716 ], [ 360238.985500000417233, 254378.97690000012517 ], [ 360233.692100003361702, 254377.739399999380112 ], [ 360227.170999996364117, 254383.114700000733137 ], [ 360223.691200003027916, 254387.02930000051856 ], [ 360214.035300001502037, 254396.663899999111891 ], [ 360210.356700003147125, 254401.710799999535084 ], [ 360213.112499997019768, 254412.727000001817942 ], [ 360225.333099998533726, 254427.849300000816584 ], [ 360230.60249999910593, 254441.392799999564886 ], [ 360232.547100000083447, 254454.14469999819994 ], [ 360234.218500003218651, 254468.932000000029802 ], [ 360233.715300001204014, 254482.13399999961257 ], [ 360226.792599998414516, 254485.057100001722574 ], [ 360216.231499999761581, 254494.258799999952316 ], [ 360178.982900001108646, 254512.530099999159575 ], [ 360162.0016999989748, 254518.090700000524521 ], [ 360139.383599996566772, 254522.76069999858737 ], [ 360127.288900002837181, 254522.661699999123812 ], [ 360119.209600001573563, 254524.495400000363588 ], [ 360101.481600001454353, 254523.083799999207258 ], [ 360002.258400000631809, 254527.760099999606609 ], [ 359990.95380000025034, 254529.567400000989437 ], [ 359958.730099998414516, 254525.926199998706579 ], [ 359952.279600001871586, 254525.873399998992682 ], [ 359945.0371999964118, 254524.125399999320507 ], [ 359938.570500001311302, 254525.972300000488758 ], [ 359932.139799997210503, 254523.597600001841784 ], [ 359928.104599997401237, 254523.986800000071526 ], [ 359902.327799998223782, 254520.820500001311302 ], [ 359894.295199997723103, 254517.166200000792742 ], [ 359877.407600000500679, 254511.750599998980761 ], [ 359874.202100001275539, 254509.402399998158216 ], [ 359862.951499998569489, 254504.877300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302035100", "MAP": "D9-8140-T008", "PARCEL_NAM": "1-68", "ACRE": "7.147", "LONGITUDE": -64.91788483000001, "LATITUDE": 18.32743722, "OBJECTID_1": 31698, "PARCEL_NO_": "107302035100", "Tax_Legal_": "BAKKERO 1-68 FRENCHMAN BAY QTR.", "Name": "C & N HOLDING, INC.", "Address": "7340 Estate Bakkeaoe", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023001, "Country": "United States", "Land_Value": 741100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 802.07443713400005, "SHAPE_Area": 31904.7048135 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360317.926100000739098, 255445.863800000399351 ], [ 360310.944799996912479, 255413.625599998980761 ], [ 360280.210600003600121, 255383.1418999992311 ], [ 360262.614399999380112, 255290.597100000828505 ], [ 360259.620200000703335, 255236.387499999254942 ], [ 360190.769900001585484, 255235.24720000103116 ], [ 360189.970600001513958, 255235.504700001329184 ], [ 360185.977300003170967, 255264.601599998772144 ], [ 360134.016099996864796, 255268.140900000929832 ], [ 360127.195799998939037, 255290.830400001257658 ], [ 360125.565200001001358, 255292.927999999374151 ], [ 360119.791599996387959, 255308.079500000923872 ], [ 360118.150200001895428, 255311.443500000983477 ], [ 360115.702500000596046, 255314.800999999046326 ], [ 360114.050300002098083, 255319.431499999016523 ], [ 360112.410700000822544, 255322.584499999880791 ], [ 360110.785499997437, 255324.048900000751019 ], [ 360105.864900000393391, 255333.718899998813868 ], [ 360100.976700000464916, 255339.589499998837709 ], [ 360096.869599997997284, 255348.421799998730421 ], [ 360093.608400002121925, 255352.616999998688698 ], [ 360091.140900000929832, 255358.296300001442432 ], [ 360089.513899996876717, 255359.971799999475479 ], [ 360082.141999997198582, 255373.421399999409914 ], [ 360065.68299999833107, 255412.339000001549721 ], [ 360067.212999999523163, 255422.061900001019239 ], [ 360069.606700003147125, 255425.036800000816584 ], [ 360076.0337999984622, 255427.833599999547005 ], [ 360094.587999999523163, 255426.929999999701977 ], [ 360114.765600003302097, 255424.77309999987483 ], [ 360130.89190000295639, 255424.905099999159575 ], [ 360184.059900000691414, 255431.039700001478195 ], [ 360205.826800003647804, 255431.640099998563528 ], [ 360259.864100001752377, 255430.3935999982059 ], [ 360271.946199998259544, 255431.970100000500679 ], [ 360292.069799996912479, 255436.145599998533726 ], [ 360317.926100000739098, 255445.863800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107302024900", "MAP": "A9-732-T008", "PARCEL_NAM": "4-J", "ACRE": "1.09", "LONGITUDE": -64.92129192, "LATITUDE": 18.3234907, "OBJECTID_1": 24882, "PARCEL_NO_": "107302024900", "Tax_Legal_": "4 REMAINDER BAKKERO ESTATE FRENCHMAN BAY QTR", "Name": "MARRIOTT OWNERSHIP RESORTS STT", "Address": "PO Box 24747", "City": "LAKELAND", "State": "Florida", "Zip": 33145, "Country": "United States", "Land_Value": 4753000, "Improved_V": 262700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.55873536000001, "SHAPE_Area": 5214.71829523 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359813.594700001180172, 254968.745799999684095 ], [ 359837.37219999730587, 254977.186700001358986 ], [ 359840.589599996805191, 254966.836500000208616 ], [ 359838.54169999808073, 254961.977099999785423 ], [ 359839.263400003314018, 254958.870000001043081 ], [ 359839.987899996340275, 254955.417100001126528 ], [ 359841.747699998319149, 254953.010299999266863 ], [ 359842.115699999034405, 254950.592099998146296 ], [ 359842.837300002574921, 254947.485100001096725 ], [ 359842.221400000154972, 254937.794900000095367 ], [ 359843.64750000089407, 254933.655999999493361 ], [ 359847.888899996876717, 254925.735500000417233 ], [ 359852.806199997663498, 254920.241799999028444 ], [ 359859.446199998259544, 254916.837699998170137 ], [ 359866.074799999594688, 254914.817099999636412 ], [ 359870.267499998211861, 254912.776299998164177 ], [ 359872.353900000452995, 254909.684900000691414 ], [ 359873.271999999880791, 254908.563299998641014 ], [ 359874.439599998295307, 254904.733800001442432 ], [ 359874.272100001573563, 254897.505699999630451 ], [ 359873.920699998736382, 254857.530000001192093 ], [ 359855.976300001144409, 254856.930100001394749 ], [ 359855.937100000679493, 254861.6722999997437 ], [ 359850.940800003707409, 254861.405200000852346 ], [ 359850.883000001311302, 254868.405600000172853 ], [ 359845.205099999904633, 254868.13289999961853 ], [ 359844.882799997925758, 254879.647799998521805 ], [ 359815.585900001227856, 254877.536200001835823 ], [ 359813.798100002110004, 254879.377199999988079 ], [ 359803.249499998986721, 254887.101300001144409 ], [ 359799.984700001776218, 254891.718600001186132 ], [ 359798.300200000405312, 254900.148600000888109 ], [ 359798.229999996721745, 254908.380699999630451 ], [ 359799.785099998116493, 254915.148400001227856 ], [ 359806.104400001466274, 254930.609900001436472 ], [ 359812.335500001907349, 254956.414299998432398 ], [ 359813.594700001180172, 254968.745799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107302024900", "MAP": "A9-732-T008", "PARCEL_NAM": "4-K", "ACRE": "1.15", "LONGITUDE": -64.92143239000001, "LATITUDE": 18.32441159, "OBJECTID_1": 24882, "PARCEL_NO_": "107302024900", "Tax_Legal_": "4 REMAINDER BAKKERO ESTATE FRENCHMAN BAY QTR", "Name": "MARRIOTT OWNERSHIP RESORTS STT", "Address": "PO Box 24747", "City": "LAKELAND", "State": "Florida", "Zip": 33145, "Country": "United States", "Land_Value": 4753000, "Improved_V": 262700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.17762123199998, "SHAPE_Area": 3223.7771154900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359831.668600000441074, 255053.379799999296665 ], [ 359871.951499998569489, 255045.95890000090003 ], [ 359867.787299998104572, 255044.541000001132488 ], [ 359861.906099997460842, 255040.341699998825788 ], [ 359856.042099997401237, 255034.067200001329184 ], [ 359843.655100002884865, 255017.016199998557568 ], [ 359836.767200000584126, 255008.312100000679493 ], [ 359832.651500001549721, 255001.014299999922514 ], [ 359832.705799996852875, 254994.442800000309944 ], [ 359833.433100000023842, 254990.644000001251698 ], [ 359835.230099998414516, 254983.74100000038743 ], [ 359837.37219999730587, 254977.186700001358986 ], [ 359813.594700001180172, 254968.745799999684095 ], [ 359813.824000000953674, 254970.991999998688698 ], [ 359812.967399999499321, 254976.895599998533726 ], [ 359804.022399999201298, 254985.688299998641014 ], [ 359795.917900003492832, 254990.477099999785423 ], [ 359786.962200000882149, 255000.536299999803305 ], [ 359781.168700002133846, 255018.009700000286102 ], [ 359780.297700002789497, 255025.60190000012517 ], [ 359781.890500001609325, 255027.936999998986721 ], [ 359786.701399996876717, 255031.142799999564886 ], [ 359793.135799996554852, 255033.095300000160933 ], [ 359806.069099999964237, 255029.401399999856949 ], [ 359810.924999997019768, 255027.330200001597404 ], [ 359813.365500003099442, 255024.817099999636412 ], [ 359824.659299999475479, 255024.276200000196695 ], [ 359827.061999998986721, 255026.195799998939037 ], [ 359829.452200002968311, 255029.592799998819828 ], [ 359830.994699999690056, 255037.838100001215935 ], [ 359831.700300000607967, 255049.665100000798702 ], [ 359831.668600000441074, 255053.379799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107302024900", "MAP": "A9-732-T008", "PARCEL_NAM": "4-L", "ACRE": "2.090", "LONGITUDE": -64.92089075, "LATITUDE": 18.32403329, "OBJECTID_1": 24882, "PARCEL_NO_": "107302024900", "Tax_Legal_": "4 REMAINDER BAKKERO ESTATE FRENCHMAN BAY QTR", "Name": "MARRIOTT OWNERSHIP RESORTS STT", "Address": "PO Box 24747", "City": "LAKELAND", "State": "Florida", "Zip": 33145, "Country": "United States", "Land_Value": 4753000, "Improved_V": 262700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 388.84467851099998, "SHAPE_Area": 8774.3031735099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359871.951499998569489, 255045.95890000090003 ], [ 359873.42620000243187, 255035.94029999896884 ], [ 359876.207099996507168, 255036.309099998325109 ], [ 359887.016999997198582, 255033.631299998611212 ], [ 359896.109899997711182, 255028.172100000083447 ], [ 359903.850900001823902, 255017.859299998730421 ], [ 359912.346000000834465, 255003.455099999904633 ], [ 359918.374499998986721, 254972.122999999672174 ], [ 359906.952100001275539, 254938.575599998235703 ], [ 359916.476999998092651, 254930.211399998515844 ], [ 359920.521600000560284, 254925.625199999660254 ], [ 359924.241700001060963, 254921.51410000026226 ], [ 359924.399599999189377, 254916.099199999123812 ], [ 359921.894500002264977, 254908.513300001621246 ], [ 359872.353900000452995, 254909.684900000691414 ], [ 359870.267499998211861, 254912.776299998164177 ], [ 359866.074799999594688, 254914.817099999636412 ], [ 359859.446199998259544, 254916.837699998170137 ], [ 359852.806199997663498, 254920.241799999028444 ], [ 359847.888899996876717, 254925.735500000417233 ], [ 359843.64750000089407, 254933.655999999493361 ], [ 359842.221400000154972, 254937.794900000095367 ], [ 359842.837300002574921, 254947.485100001096725 ], [ 359842.115699999034405, 254950.592099998146296 ], [ 359841.747699998319149, 254953.010299999266863 ], [ 359839.987899996340275, 254955.417100001126528 ], [ 359839.263400003314018, 254958.870000001043081 ], [ 359838.54169999808073, 254961.977099999785423 ], [ 359840.589599996805191, 254966.836500000208616 ], [ 359837.37219999730587, 254977.186700001358986 ], [ 359835.230099998414516, 254983.74100000038743 ], [ 359833.433100000023842, 254990.644000001251698 ], [ 359832.705799996852875, 254994.442800000309944 ], [ 359832.651500001549721, 255001.014299999922514 ], [ 359836.767200000584126, 255008.312100000679493 ], [ 359843.655100002884865, 255017.016199998557568 ], [ 359856.042099997401237, 255034.067200001329184 ], [ 359861.906099997460842, 255040.341699998825788 ], [ 359867.787299998104572, 255044.541000001132488 ], [ 359871.951499998569489, 255045.95890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401016400", "MAP": "D9-8687-T012", "PARCEL_NAM": "3A-2 REM", "ACRE": ".527", "LONGITUDE": -64.91360291, "LATITUDE": 18.3278399, "OBJECTID_1": 33001, "PARCEL_NO_": "107401016400", "Tax_Legal_": "PAR 3a-2a, 3a-A (ROW) & EASEMENT \"A\" BAKKERO 5 FRENCHMANS BAY QTR", "Name": "MCQUAID, CHARLES P. (TRUSTEE)", "Address": "1341 Turvey Rd", "City": "Downers Grove", "State": "Illinois", "Zip": 60515, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.259892619, "SHAPE_Area": 1900.9079377600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360670.582699999213219, 255399.346900001168251 ], [ 360660.574699997901917, 255370.238099999725819 ], [ 360632.036200001835823, 255370.893100000917912 ], [ 360624.26519999653101, 255439.497800000011921 ], [ 360624.213200002908707, 255445.600400000810623 ], [ 360655.795100003480911, 255410.180799998342991 ], [ 360670.582699999213219, 255399.346900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401010800", "MAP": "D9-8687-T012", "PARCEL_NAM": "3A-REM", "ACRE": "3.170", "LONGITUDE": -64.91308615, "LATITUDE": 18.32844944, "OBJECTID_1": 32949, "PARCEL_NO_": "107401010800", "Tax_Legal_": "BAKKERO 3A REM FRENCHMANS BAY QTR", "Name": "McQUAID, CHARLES P", "Address": "1341 Turvey Rd", "City": "Downers Grove", "State": "Illinois", "Zip": 60515, "Country": "United States", "Land_Value": 375200, "Improved_V": 979900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 490.93001885000001, "SHAPE_Area": 13160.1478864 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360721.981799997389317, 255422.354600001126528 ], [ 360712.508699998259544, 255396.168699998408556 ], [ 360706.792900003492832, 255396.59010000154376 ], [ 360670.582699999213219, 255399.346900001168251 ], [ 360655.795100003480911, 255410.180799998342991 ], [ 360624.213200002908707, 255445.600400000810623 ], [ 360624.038599997758865, 255466.093699999153614 ], [ 360624.816200003027916, 255469.477600000798702 ], [ 360625.586499996483326, 255473.705699998885393 ], [ 360628.766800001263618, 255479.009100001305342 ], [ 360652.673900000751019, 255512.346500001847744 ], [ 360698.608499996364117, 255515.677700001746416 ], [ 360742.932300001382828, 255518.784699998795986 ], [ 360749.379199996590614, 255519.259700000286102 ], [ 360760.6891999989748, 255516.819099999964237 ], [ 360800.211099997162819, 255515.664900001138449 ], [ 360779.556199997663498, 255479.187800001353025 ], [ 360752.256700001657009, 255465.4543999992311 ], [ 360730.094800002872944, 255456.862300001084805 ], [ 360725.11540000140667, 255433.146000001579523 ], [ 360721.981799997389317, 255422.354600001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401016400", "MAP": "D9-8687-T012", "PARCEL_NAM": "3A-2A", "ACRE": ".503", "LONGITUDE": -64.91335794, "LATITUDE": 18.327589, "OBJECTID_1": 33001, "PARCEL_NO_": "107401016400", "Tax_Legal_": "PAR 3a-2a, 3a-A (ROW) & EASEMENT \"A\" BAKKERO 5 FRENCHMANS BAY QTR", "Name": "MCQUAID, CHARLES P. (TRUSTEE)", "Address": "1341 Turvey Rd", "City": "Downers Grove", "State": "Illinois", "Zip": 60515, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.456526798, "SHAPE_Area": 2111.5467539299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360632.036200001835823, 255370.893100000917912 ], [ 360660.574699997901917, 255370.238099999725819 ], [ 360670.582699999213219, 255399.346900001168251 ], [ 360706.792900003492832, 255396.59010000154376 ], [ 360705.30460000038147, 255392.242800001055002 ], [ 360703.744099996984005, 255386.108300000429153 ], [ 360698.171899996697903, 255377.618999999016523 ], [ 360690.216600000858307, 255364.888199999928474 ], [ 360678.220899999141693, 255353.179900001734495 ], [ 360667.776600003242493, 255348.661499999463558 ], [ 360643.601599998772144, 255346.774900000542402 ], [ 360640.372699998319149, 255347.1706000007689 ], [ 360636.310599997639656, 255350.725999999791384 ], [ 360632.984600000083447, 255362.519999999552965 ], [ 360632.036200001835823, 255370.893100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012200", "MAP": "D9-7918-T007", "PARCEL_NAM": "1B", "ACRE": ".503", "LONGITUDE": -64.92018429, "LATITUDE": 18.33018239, "OBJECTID_1": 24785, "PARCEL_NO_": "107302012200", "Tax_Legal_": "HAVENSIGHT 1 FRENCHMAN BAY QTR", "Name": "MACHOVER, FRANK & CHANTAL", "Address": "PO Box 41", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 193200, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.87560901699999, "SHAPE_Area": 2960.0996305799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359919.730599999427795, 255639.74210000038147 ], [ 359915.043399997055531, 255669.87779999896884 ], [ 359921.545900002121925, 255672.493200000375509 ], [ 359924.776500001549721, 255671.886300001293421 ], [ 359927.188299998641014, 255672.750399999320507 ], [ 359927.976599998772144, 255674.867800001055002 ], [ 359930.388400003314018, 255675.731899999082088 ], [ 359929.556900002062321, 255678.680399999022484 ], [ 359950.45269999653101, 255686.872999999672174 ], [ 359978.887599997222424, 255661.985599998384714 ], [ 359974.225900001823902, 255641.260299999266863 ], [ 359970.306500002741814, 255624.518100000917912 ], [ 359921.791500002145767, 255626.491900000721216 ], [ 359919.730599999427795, 255639.74210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302012200", "MAP": "D9-7918-T007", "PARCEL_NAM": "1C", "ACRE": ".611", "LONGITUDE": -64.9202541, "LATITUDE": 18.32977896, "OBJECTID_1": 24785, "PARCEL_NO_": "107302012200", "Tax_Legal_": "HAVENSIGHT 1 FRENCHMAN BAY QTR", "Name": "MACHOVER, FRANK & CHANTAL", "Address": "PO Box 41", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 193200, "Improved_V": 86600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.12402635799998, "SHAPE_Area": 2472.3210155800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359915.043399997055531, 255669.87779999896884 ], [ 359919.730599999427795, 255639.74210000038147 ], [ 359921.791500002145767, 255626.491900000721216 ], [ 359970.306500002741814, 255624.518100000917912 ], [ 359957.886799998581409, 255571.465700000524521 ], [ 359923.116400003433228, 255582.791200000792742 ], [ 359913.799300000071526, 255635.277300000190735 ], [ 359908.688100002706051, 255667.321699999272823 ], [ 359915.043399997055531, 255669.87779999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302011900", "MAP": "D9-5538-T93", "PARCEL_NAM": "15C", "ACRE": ".217", "LONGITUDE": -64.9208054, "LATITUDE": 18.33088066, "OBJECTID_1": 24783, "PARCEL_NO_": "107302011900", "Tax_Legal_": "HAVENSIGHT 15C REM., 15D & 17F FRENCHMAN BAY QTR", "Name": "HECTOR CARDONA LUCIANO", "Address": "PO Box 9009", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274400, "Improved_V": 302000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.81109429899999, "SHAPE_Area": 1053.17711751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359862.287799999117851, 255743.780000001192093 ], [ 359877.32660000026226, 255751.054299999028444 ], [ 359902.520599998533726, 255728.699400000274181 ], [ 359903.384400002658367, 255721.951499998569489 ], [ 359883.298600003123283, 255713.343400001525879 ], [ 359868.822700001299381, 255708.791900001466274 ], [ 359862.287799999117851, 255743.780000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302011900", "MAP": "D9-5538-T93", "PARCEL_NAM": "15D", "ACRE": ".04", "LONGITUDE": -64.92094235, "LATITUDE": 18.33110314, "OBJECTID_1": 24783, "PARCEL_NO_": "107302011900", "Tax_Legal_": "HAVENSIGHT 15C REM., 15D & 17F FRENCHMAN BAY QTR", "Name": "HECTOR CARDONA LUCIANO", "Address": "PO Box 9009", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274400, "Improved_V": 302000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.217578296500001, "SHAPE_Area": 206.42556459799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359860.313100002706051, 255750.814699999988079 ], [ 359857.144199997186661, 255764.777499999850988 ], [ 359864.332599997520447, 255762.583999998867512 ], [ 359877.32660000026226, 255751.054299999028444 ], [ 359862.287799999117851, 255743.780000001192093 ], [ 359860.313100002706051, 255750.814699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302011900", "MAP": "D9-5538-T93", "PARCEL_NAM": "17F", "ACRE": ".015", "LONGITUDE": -64.92104084, "LATITUDE": 18.33116808, "OBJECTID_1": 24783, "PARCEL_NO_": "107302011900", "Tax_Legal_": "HAVENSIGHT 15C REM., 15D & 17F FRENCHMAN BAY QTR", "Name": "HECTOR CARDONA LUCIANO", "Address": "PO Box 9009", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274400, "Improved_V": 302000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.355898564999997, "SHAPE_Area": 56.652478627599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359857.144199997186661, 255764.777499999850988 ], [ 359860.313100002706051, 255750.814699999988079 ], [ 359854.683799996972084, 255759.338700000196695 ], [ 359849.811800003051758, 255763.309599999338388 ], [ 359849.78660000115633, 255766.264699999243021 ], [ 359852.20549999922514, 255766.284499999135733 ], [ 359857.144199997186661, 255764.777499999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302011500", "MAP": "D9-5517-T93", "PARCEL_NAM": "17B-1", "ACRE": ".003", "LONGITUDE": -64.92117137, "LATITUDE": 18.33068383, "OBJECTID_1": 24779, "PARCEL_NO_": "107302011500", "Tax_Legal_": "HAVENSIGHT 18C & 17B-1 FRENCHMAN BAY QTR", "Name": "FRETT, ETIEN O.,SR. & NIDIA OCANA-FRETT (TRUSTEES)", "Address": "PO Box 11824", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19000, "Improved_V": 272200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.406962293799999, "SHAPE_Area": 15.6248554671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359843.577299997210503, 255701.604899998754263 ], [ 359838.743900001049042, 255711.441399998962879 ], [ 359843.015299998223782, 255709.214000001549721 ], [ 359843.577299997210503, 255701.604899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025300", "MAP": "D9-6602-T99", "PARCEL_NAM": "9-1", "ACRE": ".50", "LONGITUDE": -64.9229366, "LATITUDE": 18.32767871, "OBJECTID_1": 24886, "PARCEL_NO_": "107302025300", "Tax_Legal_": "BELLVUE STATE 9-1 No.7 FRENCHMAN'S BAY QTR", "Name": "FERRERAS, PAUL & MARIA & GRANALTELL", "Address": "PO BOX 600122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 129200, "Improved_V": 310300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.377652848, "SHAPE_Area": 1906.8367616600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359638.112800002098083, 255397.244199998676777 ], [ 359645.223099999129772, 255403.770700000226498 ], [ 359650.646300002932549, 255408.748599998652935 ], [ 359680.816899999976158, 255372.872499998658895 ], [ 359694.218999996781349, 255365.721900001168251 ], [ 359689.29545440612128, 255363.551644418941578 ], [ 359684.526010676054284, 255361.060918223316548 ], [ 359679.931500002741814, 255358.260600000619888 ], [ 359672.720492360065691, 255354.351349074189784 ], [ 359665.234459556580987, 255350.998710278625367 ], [ 359657.516289494349621, 255348.221891069813864 ], [ 359649.610200002789497, 255346.036800000816584 ], [ 359646.514156407036353, 255345.509604065591702 ], [ 359643.376907393219881, 255345.364379667356843 ], [ 359640.245399996638298, 255345.603300001472235 ], [ 359641.268899999558926, 255348.703699998557568 ], [ 359638.112800002098083, 255397.244199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302021500", "MAP": "D9-7201-T003", "PARCEL_NAM": "8A CON", "ACRE": "1.98", "LONGITUDE": -64.92355518, "LATITUDE": 18.3274429, "OBJECTID_1": 24847, "PARCEL_NO_": "107302021500", "Tax_Legal_": "BELLEVUE 8A FRENCHMAN BAY QTR", "Name": "RICHARD H DRIEHAUS 2003 REVOC TR", "Address": "25 E Erie St", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 255900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 367.55995614699998, "SHAPE_Area": 8927.6919797299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359634.384099997580051, 255324.399700000882149 ], [ 359581.71339999884367, 255272.359000001102686 ], [ 359575.724899999797344, 255280.828400000929832 ], [ 359572.443899996578693, 255287.345499999821186 ], [ 359554.507200002670288, 255310.418999999761581 ], [ 359549.582999996840954, 255320.511199999600649 ], [ 359548.711999997496605, 255328.103399999439716 ], [ 359545.439999997615814, 255333.565099999308586 ], [ 359542.038500003516674, 255354.224399998784065 ], [ 359547.47410000115633, 255378.755699999630451 ], [ 359549.869599997997284, 255381.519499998539686 ], [ 359557.086900003254414, 255386.222699999809265 ], [ 359575.606899999082088, 255389.329599998891354 ], [ 359590.878300003707409, 255395.154100000858307 ], [ 359598.093699999153614, 255400.068300001323223 ], [ 359601.28660000115633, 255403.894099999219179 ], [ 359603.958400003612041, 255407.631700001657009 ], [ 359638.112800002098083, 255397.244199998676777 ], [ 359641.268899999558926, 255348.703699998557568 ], [ 359638.124499998986721, 255339.178800001740456 ], [ 359634.384099997580051, 255324.399700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022800", "MAP": "G9-893-T67", "PARCEL_NAM": "14", "ACRE": null, "LONGITUDE": -64.9232046, "LATITUDE": 18.32694225, "OBJECTID_1": 24859, "PARCEL_NO_": "107302022800", "Tax_Legal_": "BELLEVUE 14 FRENCHMAN BAY", "Name": "VILLA RTCD PROPERTIES LLC", "Address": "25 E Erie St", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 201000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.69503887100001, "SHAPE_Area": 3726.9679441100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359581.71339999884367, 255272.359000001102686 ], [ 359634.384099997580051, 255324.399700000882149 ], [ 359638.124499998986721, 255339.178800001740456 ], [ 359639.773100003600121, 255334.970400001853704 ], [ 359643.842399999499321, 255330.570799998939037 ], [ 359654.378499999642372, 255324.324200000613928 ], [ 359679.429899998009205, 255317.985300000756979 ], [ 359684.303700000047684, 255313.803300000727177 ], [ 359685.955899998545647, 255309.172800000756979 ], [ 359659.44650000333786, 255297.34569999948144 ], [ 359620.332800000905991, 255250.58500000089407 ], [ 359611.463299997150898, 255250.51240000128746 ], [ 359604.987700000405312, 255253.414700001478195 ], [ 359587.151699997484684, 255264.66780000180006 ], [ 359581.71339999884367, 255272.359000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022500", "MAP": "A9-560-T000", "PARCEL_NAM": "5A", "ACRE": ".065", "LONGITUDE": -64.9203657, "LATITUDE": 18.32853647, "OBJECTID_1": 24857, "PARCEL_NO_": "107302022500", "Tax_Legal_": "BELLEVUE 3A & 5 REM NO. 7 FRENCHMAN'S BAY QTR", "Name": "SPRAUVE, GAYLORD A.", "Address": "3201 Southgreen Rd", "City": "Windsor Mill", "State": "Maryland", "Zip": 21244, "Country": "United States", "Land_Value": 138700, "Improved_V": 285600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.986385301799999, "SHAPE_Area": 283.70679196399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359934.535400003194809, 255472.905000001192093 ], [ 359940.778999999165535, 255451.604100000113249 ], [ 359920.750399999320507, 255471.569699998944998 ], [ 359913.651000000536442, 255478.646899998188019 ], [ 359924.882700003683567, 255480.032800000160933 ], [ 359928.165799997746944, 255480.437899999320507 ], [ 359932.6925999969244, 255480.996500000357628 ], [ 359934.535400003194809, 255472.905000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302021600", "MAP": "D9-6602-T99", "PARCEL_NAM": "9 REM", "ACRE": ".50", "LONGITUDE": -64.92270277, "LATITUDE": 18.32788805, "OBJECTID_1": 24848, "PARCEL_NO_": "107302021600", "Tax_Legal_": "BELLEVUE (REM) 9 No.7 FRENCHMAN BAY QTR.", "Name": "OLIVE, LOUIS & ROSEMARY & KIMBERLY ANN (TRUSTEES)", "Address": "PO BOX 11445", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 123300, "Improved_V": 436800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.308649987, "SHAPE_Area": 1797.31942471 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359650.646300002932549, 255408.748599998652935 ], [ 359660.836900003254414, 255418.102600000798702 ], [ 359698.751500003039837, 255416.302000001072884 ], [ 359699.172619282326195, 255415.064801187982084 ], [ 359699.789599999785423, 255413.91270000115037 ], [ 359700.544321397261228, 255412.922665537509602 ], [ 359701.443530317395926, 255412.061738162534311 ], [ 359702.465442238899413, 255411.3507749766286 ], [ 359703.585299998521805, 255410.807000000029802 ], [ 359703.166711141704582, 255407.375879712984897 ], [ 359703.166711141704582, 255403.919320288463496 ], [ 359703.585299998521805, 255400.488200001418591 ], [ 359703.799164595198818, 255392.624717016587965 ], [ 359703.321701680659316, 255384.772829862311482 ], [ 359702.156599998474121, 255376.993200000375509 ], [ 359699.991782190278172, 255372.912222746497719 ], [ 359697.33189407835016, 255369.135212457767921 ], [ 359694.218999996781349, 255365.721900001168251 ], [ 359680.816899999976158, 255372.872499998658895 ], [ 359650.646300002932549, 255408.748599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025600", "MAP": "D9-1674-T81", "PARCEL_NAM": "1-A", "ACRE": null, "LONGITUDE": -64.91980112, "LATITUDE": 18.3288698, "OBJECTID_1": 24889, "PARCEL_NO_": "107302025600", "Tax_Legal_": "BELLEVUE 1-A FRENCHMAN BAY QTR", "Name": "ROBINSON, WILLIAM V", "Address": "PO Box 11366", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 168300, "Improved_V": 670200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.82008385399999, "SHAPE_Area": 2714.30943312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360027.979999996721745, 255488.614999998360872 ], [ 360008.075300000607967, 255486.124299999326468 ], [ 360007.444099999964237, 255488.131299998611212 ], [ 359974.720799997448921, 255485.663499999791384 ], [ 359963.903899997472763, 255484.847699999809265 ], [ 359954.32039999961853, 255515.468100000172853 ], [ 359950.257100000977516, 255528.450800001621246 ], [ 359955.026600003242493, 255528.590300001204014 ], [ 359963.894199997186661, 255528.8739 ], [ 360008.225199997425079, 255531.136599998921156 ], [ 360013.147600002586842, 255521.255499999970198 ], [ 360021.324000000953674, 255508.023499999195337 ], [ 360021.340199999511242, 255506.123799998313189 ], [ 360025.45269999653101, 255496.658300001174212 ], [ 360028.021099999547005, 255488.820700000971556 ], [ 360027.979999996721745, 255488.614999998360872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025700", "MAP": "D9-2532-T83", "PARCEL_NAM": "1-B-1", "ACRE": ".012", "LONGITUDE": -64.92047824, "LATITUDE": 18.32896464, "OBJECTID_1": 24890, "PARCEL_NO_": "107302025700", "Tax_Legal_": "BELLEVUE 1-B&1-C FRENCHMAN BAY QTR.", "Name": "DELAUBANQUE, YVETTE", "Address": "PO Box 6544", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 174800, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.4432725275, "SHAPE_Area": 77.935186852300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359916.735699996352196, 255527.470199998468161 ], [ 359921.719300001859665, 255498.452399998903275 ], [ 359921.683499999344349, 255498.552200000733137 ], [ 359916.993600003421307, 255511.657900001853704 ], [ 359911.391099996864796, 255527.313799999654293 ], [ 359916.735699996352196, 255527.470199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025700", "MAP": "D9-2532-T83", "PARCEL_NAM": "1-B", "ACRE": ".515", "LONGITUDE": -64.92026615, "LATITUDE": 18.32884659, "OBJECTID_1": 24890, "PARCEL_NO_": "107302025700", "Tax_Legal_": "BELLEVUE 1-B&1-C FRENCHMAN BAY QTR.", "Name": "DELAUBANQUE, YVETTE", "Address": "PO Box 6544", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 174800, "Improved_V": 143200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.80951351900001, "SHAPE_Area": 1651.77742771 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359963.903899997472763, 255484.847699999809265 ], [ 359928.165799997746944, 255480.437899999320507 ], [ 359921.719300001859665, 255498.452399998903275 ], [ 359916.735699996352196, 255527.470199998468161 ], [ 359950.257100000977516, 255528.450800001621246 ], [ 359954.32039999961853, 255515.468100000172853 ], [ 359963.903899997472763, 255484.847699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302021800", "MAP": "G9-481-T58", "PARCEL_NAM": "1 REM", "ACRE": "3.496", "LONGITUDE": -64.92140783000001, "LATITUDE": 18.32873046, "OBJECTID_1": 24850, "PARCEL_NO_": "107302021800", "Tax_Legal_": "BELLEVUE (REM) 1 & 1-B-1 FRENCHMAN BAY QTR", "Name": "THE INDIA ASSOC. OF THE V. I.", "Address": "PO Box 1267", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 241800, "Improved_V": 1401800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 505.32583516, "SHAPE_Area": 9608.6189210800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359924.882700003683567, 255480.032800000160933 ], [ 359809.112000003457069, 255465.747499998658895 ], [ 359733.09570000320673, 255455.002099998295307 ], [ 359712.628600001335144, 255491.142599999904633 ], [ 359709.672799997031689, 255497.838700000196695 ], [ 359707.604900002479553, 255504.077599998563528 ], [ 359752.800399996340275, 255508.358899999409914 ], [ 359776.17620000243187, 255509.394600000232458 ], [ 359815.67119999974966, 255511.406599998474121 ], [ 359852.725599996745586, 255515.931800000369549 ], [ 359868.022100001573563, 255518.801199998706579 ], [ 359875.225000001490116, 255525.192899998277426 ], [ 359884.890000000596046, 255526.538600001484156 ], [ 359911.391099996864796, 255527.313799999654293 ], [ 359916.993600003421307, 255511.657900001853704 ], [ 359921.683499999344349, 255498.552200000733137 ], [ 359921.719300001859665, 255498.452399998903275 ], [ 359924.882700003683567, 255480.032800000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302020600", "MAP": "F9-335-T58", "PARCEL_NAM": "10", "ACRE": ".473", "LONGITUDE": -64.9229668, "LATITUDE": 18.32870042, "OBJECTID_1": 24838, "PARCEL_NO_": "107302020600", "Tax_Legal_": "HAVENSIGHT 10 FRENCHMAN BAY QTR", "Name": "HAVENSITE PROPERTIES LLC", "Address": "25 E Erie St", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 79100, "Improved_V": 691500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.116786486, "SHAPE_Area": 1687.92680275 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359654.905000001192093, 255451.828999999910593 ], [ 359646.088899999856949, 255446.357400000095367 ], [ 359631.808499999344349, 255512.646000001579523 ], [ 359631.767200000584126, 255517.500799998641014 ], [ 359633.377999998629093, 255517.725099999457598 ], [ 359637.431199997663498, 255515.225099999457598 ], [ 359650.395099997520447, 255507.942999999970198 ], [ 359673.857299998402596, 255498.846900001168251 ], [ 359689.377300001680851, 255490.883699998259544 ], [ 359679.911499999463558, 255485.679400000721216 ], [ 359671.665799997746944, 255480.329500000923872 ], [ 359659.411399997770786, 255471.354800000786781 ], [ 359655.857400000095367, 255464.142099998891354 ], [ 359654.905000001192093, 255451.828999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302021700", "MAP": "D9-8988-T015", "PARCEL_NAM": "10", "ACRE": "1.88", "LONGITUDE": -64.92237809, "LATITUDE": 18.32835428, "OBJECTID_1": 24849, "PARCEL_NO_": "107302021700", "Tax_Legal_": "BELLEVUE 10 FRENCHMAN BAY QTR", "Name": "RICHARD H DRIEHAUS 2003 REVOC TR", "Address": "25 E Erie St", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 122300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 413.537469203, "SHAPE_Area": 7058.2101085100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359712.628600001335144, 255491.142599999904633 ], [ 359733.09570000320673, 255455.002099998295307 ], [ 359773.463699996471405, 255460.708399999886751 ], [ 359793.612899996340275, 255463.556600000709295 ], [ 359791.229000002145767, 255423.673599999397993 ], [ 359784.974799998104572, 255423.129399999976158 ], [ 359714.067900002002716, 255416.849500000476837 ], [ 359714.431714019272476, 255417.337213685939787 ], [ 359714.714527960750274, 255417.875954395945882 ], [ 359714.909340887505095, 255418.452385833079461 ], [ 359715.011330288194586, 255419.052238681906601 ], [ 359715.01797145861201, 255419.660663840011694 ], [ 359714.929099999368191, 255420.262600000947714 ], [ 359714.882811511808541, 255421.697392478876282 ], [ 359714.596509894472547, 255423.104091971559683 ], [ 359714.078307995805517, 255424.442837231472367 ], [ 359713.342889957071748, 255425.675692611112026 ], [ 359712.411095112212934, 255426.767723034601659 ], [ 359711.309327469381969, 255427.687983943294967 ], [ 359710.068807508214377, 255428.410398162843194 ], [ 359708.724687493522651, 255428.914494844939327 ], [ 359707.315055375802331, 255429.185989543766482 ], [ 359705.879855503560975, 255429.21718899050029 ], [ 359704.459756731521338, 255429.007209095172584 ], [ 359703.094999998807907, 255428.561999998986721 ], [ 359701.949149749707431, 255428.137857624795288 ], [ 359700.878863302175887, 255427.548488074156921 ], [ 359699.907806526520289, 255426.806923319440102 ], [ 359699.057451154687442, 255425.929560630087508 ], [ 359698.346600003540516, 255424.9358000010252 ], [ 359697.82060494000325, 255423.917272867984138 ], [ 359697.441478577326052, 255422.83545424696058 ], [ 359697.216600000858307, 255421.711399998515844 ], [ 359697.181291581538972, 255420.560373796906788 ], [ 359697.322471085120924, 255419.41749307300779 ], [ 359697.636815385252703, 255418.309659302874934 ], [ 359698.116925349575467, 255417.262949016614584 ], [ 359698.751500003039837, 255416.302000001072884 ], [ 359660.836900003254414, 255418.102600000798702 ], [ 359654.905000001192093, 255451.828999999910593 ], [ 359655.857400000095367, 255464.142099998891354 ], [ 359659.411399997770786, 255471.354800000786781 ], [ 359671.665799997746944, 255480.329500000923872 ], [ 359679.911499999463558, 255485.679400000721216 ], [ 359689.377300001680851, 255490.883699998259544 ], [ 359692.39580000191927, 255492.543200001120567 ], [ 359709.672799997031689, 255497.838700000196695 ], [ 359712.628600001335144, 255491.142599999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022900", "MAP": "D9-5397-T92", "PARCEL_NAM": "18 REM", "ACRE": ".55", "LONGITUDE": -64.92213176, "LATITUDE": 18.32705247, "OBJECTID_1": 24860, "PARCEL_NO_": "107302022900", "Tax_Legal_": "BELLEVUE ESTATE 18 REMAINDER No.7 FRENCHMAN'S BAY QTR.", "Name": "LIEMANDT, JR., DANIEL", "Address": "5404 Store Tver Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 73900, "Improved_V": 545200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.08198188200001, "SHAPE_Area": 2672.2504560699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359741.601499997079372, 255271.926699999719858 ], [ 359739.319300003349781, 255271.007800001651049 ], [ 359718.561599999666214, 255294.888599999248981 ], [ 359710.285400003194809, 255322.063499998301268 ], [ 359718.093299999833107, 255322.945799998939037 ], [ 359737.383699998259544, 255330.280900001525879 ], [ 359748.612700000405312, 255337.338899999856949 ], [ 359753.416400000452995, 255341.388999998569489 ], [ 359755.835400000214577, 255341.4087999984622 ], [ 359762.451300002634525, 255322.042300000786781 ], [ 359771.552699998021126, 255294.88569999858737 ], [ 359774.888400003314018, 255285.328899998217821 ], [ 359747.236199997365475, 255274.19539999961853 ], [ 359741.601499997079372, 255271.926699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025900", "MAP": "D9-5397-T92", "PARCEL_NAM": "18-1", "ACRE": ".20", "LONGITUDE": -64.92243746, "LATITUDE": 18.32699984, "OBJECTID_1": 24892, "PARCEL_NO_": "107302025900", "Tax_Legal_": "18-1 ESTATE BELLEVUE No.7 FRENCHMAN'S BAY QTR.", "Name": "VILLA RTCD PROPERTIES LLC", "Address": "25 E Erie St", "City": "Chicago", "State": "Illinois", "Zip": 60611, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.424031009, "SHAPE_Area": 853.06890020499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359739.319300003349781, 255271.007800001651049 ], [ 359730.946599997580051, 255267.636700000613928 ], [ 359714.378200002014637, 255285.762899998575449 ], [ 359707.080099999904633, 255290.558400001376867 ], [ 359698.946800000965595, 255298.724399998784065 ], [ 359692.413599997758865, 255308.381299998611212 ], [ 359690.765000000596046, 255312.589699998497963 ], [ 359690.729000002145767, 255316.811200000345707 ], [ 359693.925499998033047, 255320.214899998158216 ], [ 359710.285400003194809, 255322.063499998301268 ], [ 359718.561599999666214, 255294.888599999248981 ], [ 359739.319300003349781, 255271.007800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023300", "MAP": "G9-893-T67", "PARCEL_NAM": "17", "ACRE": null, "LONGITUDE": -64.92186118, "LATITUDE": 18.32647094, "OBJECTID_1": 24864, "PARCEL_NO_": "107302023300", "Tax_Legal_": "17 ESTATE BELLEVUE FRENCHMANS BAY QTR", "Name": "OKIYE, MARIBEL, BEATRICE & STEPHEN", "Address": "PO Box 8839", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 158800, "Improved_V": 615500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.71209758699999, "SHAPE_Area": 3591.5641897400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359730.946599997580051, 255267.636700000613928 ], [ 359741.601499997079372, 255271.926699999719858 ], [ 359774.888400003314018, 255285.328899998217821 ], [ 359781.471199996769428, 255266.469300001859665 ], [ 359790.466499999165535, 255251.76630000025034 ], [ 359810.818499997258186, 255229.134799998253584 ], [ 359788.549300000071526, 255192.855500001460314 ], [ 359769.066500000655651, 255208.105900000780821 ], [ 359756.064800001680851, 255219.820700000971556 ], [ 359751.180200003087521, 255225.269200000911951 ], [ 359748.692900002002716, 255233.270399998873472 ], [ 359746.133699998259544, 255249.714699998497963 ], [ 359741.23650000244379, 255256.640799999237061 ], [ 359737.168999999761581, 255260.829300001263618 ], [ 359730.946599997580051, 255267.636700000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302024100", "MAP": "D9-4871-T90", "PARCEL_NAM": "30A", "ACRE": ".56", "LONGITUDE": -64.92018671, "LATITUDE": 18.32595551, "OBJECTID_1": 24873, "PARCEL_NO_": "107302024100", "Tax_Legal_": "30A&30REMAINDER BELLEVUE No.7 FRENCHMAN'S BAY QTR.", "Name": "GRANDVIEW TRUST", "Address": "PO Box 9953", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 195800, "Improved_V": 69000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.63194112799999, "SHAPE_Area": 2096.1373454499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359943.80179999768734, 255142.408300001174212 ], [ 359945.984399996697903, 255173.188000001013279 ], [ 359919.372100003063679, 255203.114700000733137 ], [ 359927.103699997067451, 255209.399399999529123 ], [ 359937.486900001764297, 255221.094500001519918 ], [ 359939.882500000298023, 255223.858300000429153 ], [ 359966.726300001144409, 255196.424800001084805 ], [ 359975.097000002861023, 255160.396299999207258 ], [ 359943.80179999768734, 255142.408300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402105200", "MAP": "D9-8595-T011", "PARCEL_NAM": "100-1C", "ACRE": "2.00", "LONGITUDE": -64.92174684, "LATITUDE": 18.33990181, "OBJECTID_1": 19198, "PARCEL_NO_": "105402105200", "Tax_Legal_": "100-1C ESTATE TAARNEBERG KINGS QTR", "Name": "ST THOMAS FEDERAL CREDIT UNION", "Address": "PO Box 1138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 163100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.84423472499998, "SHAPE_Area": 6138.3564845399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359735.29110000282526, 256677.978799998760223 ], [ 359750.725699998438358, 256773.681200001388788 ], [ 359789.960600003600121, 256781.052400000393391 ], [ 359786.618900001049042, 256782.802400000393391 ], [ 359785.387199997901917, 256784.582800000905991 ], [ 359785.357100002467632, 256786.68019999936223 ], [ 359786.244199998676777, 256787.891600001603365 ], [ 359799.94539999961853, 256789.7483000010252 ], [ 359807.234600000083447, 256740.104400001466274 ], [ 359807.572200000286102, 256736.447700001299381 ], [ 359807.666400000452995, 256732.776500001549721 ], [ 359807.51690000295639, 256729.107299998402596 ], [ 359807.124300003051758, 256725.456000000238419 ], [ 359806.490199998021126, 256721.838799998164177 ], [ 359805.617600001394749, 256718.271699998527765 ], [ 359804.510300002992153, 256714.770300000905991 ], [ 359803.173100002110004, 256711.350099999457598 ], [ 359801.611900001764297, 256708.026099998503923 ], [ 359799.833700001239777, 256704.813099998980761 ], [ 359797.846199996769428, 256701.725099999457598 ], [ 359795.65820000320673, 256698.775699999183416 ], [ 359793.405900001525879, 256696.117800001055002 ], [ 359766.277099996805191, 256664.986000001430511 ], [ 359741.500299997627735, 256675.375199999660254 ], [ 359735.29110000282526, 256677.978799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096700", "MAP": "D9-7906-T007", "PARCEL_NAM": "58 REM", "ACRE": ".279", "LONGITUDE": -64.94107382, "LATITUDE": 18.34543842, "OBJECTID_1": 9350, "PARCEL_NO_": "105301096700", "Tax_Legal_": "58 REM SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "SIMON, ANWAR", "Address": "PO BOX 308444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.001972784, "SHAPE_Area": 1175.4255466499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357707.814000003039837, 257342.820000000298023 ], [ 357737.233300000429153, 257343.420899998396635 ], [ 357741.527199998497963, 257302.460700001567602 ], [ 357720.778999999165535, 257303.543800000101328 ], [ 357711.752099998295307, 257304.481800001114607 ], [ 357708.820500001311302, 257333.021200001239777 ], [ 357707.814000003039837, 257342.820000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301090900", "MAP": "D9-331-T62", "PARCEL_NAM": "57A", "ACRE": ".105", "LONGITUDE": -64.94135452, "LATITUDE": 18.34541177, "OBJECTID_1": 9298, "PARCEL_NO_": "105301090900", "Tax_Legal_": "SOLBERG 57A LITTLE NORTHSIDE", "Name": "DELIA, BENJAMIN", "Address": "PO Box 8717", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011717, "Country": "United States", "Land_Value": 21000, "Improved_V": 379400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.522769055, "SHAPE_Area": 826.49106678600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357678.520000003278255, 257334.035000000149012 ], [ 357708.834899999201298, 257332.880899999290705 ], [ 357711.752099998295307, 257304.481800001114607 ], [ 357698.180699996650219, 257305.892000000923872 ], [ 357679.25, 257310.54839999973774 ], [ 357678.520000003278255, 257334.035000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301090600", "MAP": "D3-115-T45", "PARCEL_NAM": "6", "ACRE": ".39", "LONGITUDE": -64.94204003, "LATITUDE": 18.34561058, "OBJECTID_1": 9295, "PARCEL_NO_": "105301090600", "Tax_Legal_": "SOLBERG 6 LITTLE NORTHSIDE", "Name": "BOSCHULTE, LOUIS J", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 85900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.040272558, "SHAPE_Area": 1608.50496094 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357619.322800002992153, 257381.029100000858307 ], [ 357646.971699997782707, 257312.712699998170137 ], [ 357644.098399996757507, 257312.415399998426437 ], [ 357627.20719999819994, 257307.421999998390675 ], [ 357598.576300002634525, 257355.31700000166893 ], [ 357619.322800002992153, 257381.029100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301093000", "MAP": "G9-2095-T72", "PARCEL_NAM": "64A", "ACRE": "0.17", "LONGITUDE": -64.94167585, "LATITUDE": 18.34545347, "OBJECTID_1": 9311, "PARCEL_NO_": "105301093000", "Tax_Legal_": "SOLBERG 64A LITTLE NORTHSIDE QTR", "Name": "MARCELLY, FLOVILLE & OTHERS", "Address": "123 Meadow Hill Rd", "City": "Newburgh", "State": "New York", "Zip": 12550, "Country": "United States", "Land_Value": 35700, "Improved_V": 61800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.077655503, "SHAPE_Area": 836.96263494699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357678.446099996566772, 257336.411299999803305 ], [ 357679.25, 257310.54839999973774 ], [ 357673.9391999989748, 257311.81529999896884 ], [ 357667.485100001096725, 257312.184599999338388 ], [ 357652.960699997842312, 257313.332299999892712 ], [ 357646.971699997782707, 257312.712699998170137 ], [ 357638.197499997913837, 257334.392400000244379 ], [ 357641.051299996674061, 257334.535599999129772 ], [ 357663.804700002074242, 257335.676899999380112 ], [ 357678.446099996566772, 257336.411299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301090700", "MAP": "G9-608-T62", "PARCEL_NAM": "64 REM", "ACRE": ".17", "LONGITUDE": -64.94172689, "LATITUDE": 18.34566081, "OBJECTID_1": 9296, "PARCEL_NO_": "105301090700", "Tax_Legal_": "SOLBERG 64 LITTLE NORTHSIDE QTR", "Name": "MCEVOY, TIANA & ANISSA MARIE SAUNDERS", "Address": "PO Box 8627", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35700, "Improved_V": 226300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.14832708500001, "SHAPE_Area": 1034.0443115099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357667.174099996685982, 257358.734200000762939 ], [ 357677.744099996984005, 257358.997699998319149 ], [ 357678.206600002944469, 257344.116200000047684 ], [ 357678.446099996566772, 257336.411299999803305 ], [ 357663.804700002074242, 257335.676899999380112 ], [ 357641.051299996674061, 257334.535599999129772 ], [ 357638.197499997913837, 257334.392400000244379 ], [ 357628.73369999974966, 257357.776099998503923 ], [ 357630.094200000166893, 257357.809999998658895 ], [ 357667.174099996685982, 257358.734200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301090800", "MAP": "D9-331-T62", "PARCEL_NAM": "57", "ACRE": ".328", "LONGITUDE": -64.94137987000001, "LATITUDE": 18.34576112, "OBJECTID_1": 9297, "PARCEL_NO_": "105301090800", "Tax_Legal_": "SOLBERG 57 LITTLE NORTHSIDE QTR", "Name": "LINDESAY, WILBERT & ENA M", "Address": "PO Box 272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 58200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.135072511, "SHAPE_Area": 1462.3395045899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357676.966499999165535, 257384.0135000012815 ], [ 357703.387900002300739, 257385.90819999948144 ], [ 357708.820500001311302, 257333.021200001239777 ], [ 357708.834899999201298, 257332.880899999290705 ], [ 357678.520000003278255, 257334.035000000149012 ], [ 357678.206600002944469, 257344.116200000047684 ], [ 357676.966499999165535, 257384.0135000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302165800", "MAP": "F9-3844-T80", "PARCEL_NAM": "16A TEMPLE ST", "ACRE": null, "LONGITUDE": -64.93920751, "LATITUDE": 18.34342362, "OBJECTID_1": 10049, "PARCEL_NO_": "105302165800", "Tax_Legal_": "TEMPLE STREET 16A KRONP QTR", "Name": "SIMMONDS, DESMOND & YOLA", "Address": "PO Box 741", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 8700, "Improved_V": 32500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.6245877462, "SHAPE_Area": 163.235349289 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357921.973999999463558, 257110.181200001388788 ], [ 357927.990900002419949, 257104.349599998444319 ], [ 357935.432899996638298, 257095.473600000143051 ], [ 357919.299500003457069, 257096.186000000685453 ], [ 357915.168999999761581, 257107.762299999594688 ], [ 357921.973999999463558, 257110.181200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091000", "MAP": "G9-647-T62", "PARCEL_NAM": "65", "ACRE": ".335", "LONGITUDE": -64.94195689, "LATITUDE": 18.34618114, "OBJECTID_1": 9299, "PARCEL_NO_": "105301091000", "Tax_Legal_": "SOLBERG 65 LITTLE NORTHSIDE QTR", "Name": "BRYANT, BERNADETTE,YVETTE COLGUHOUN & STEPHANIE SIMEON", "Address": "222-21 141st", "City": "Springfield Gardens", "State": "New York", "Zip": 11413, "Country": "United States", "Land_Value": 72700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.26247118500001, "SHAPE_Area": 1017.15965384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357644.247900001704693, 257416.475299999117851 ], [ 357654.001900002360344, 257417.112199999392033 ], [ 357654.074500001966953, 257395.000399999320507 ], [ 357651.458499997854233, 257395.013199999928474 ], [ 357645.64130000025034, 257394.650600001215935 ], [ 357607.483900003135204, 257392.271899998188019 ], [ 357607.869000002741814, 257400.355999998748302 ], [ 357606.143100000917912, 257413.640799999237061 ], [ 357644.247900001704693, 257416.475299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301090500", "MAP": "D9-7484-T004", "PARCEL_NAM": "77- REM", "ACRE": "1.374", "LONGITUDE": -64.9417029, "LATITUDE": 18.34655209, "OBJECTID_1": 9294, "PARCEL_NO_": "105301090500", "Tax_Legal_": "SOLBERG 77 No.1 LITTLE NORTHSIDE QTR.", "Name": "BOSCHULTE, LOUIS J", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 195100, "Improved_V": 901000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.80926081400003, "SHAPE_Area": 5401.8474288799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357636.187799997627735, 257483.758600000292063 ], [ 357684.570100001990795, 257475.850299999117851 ], [ 357710.606899999082088, 257463.472500000149012 ], [ 357697.790100000798702, 257419.338100001215935 ], [ 357659.655500002205372, 257417.399599999189377 ], [ 357654.001900002360344, 257417.112199999392033 ], [ 357644.247900001704693, 257416.475299999117851 ], [ 357606.143100000917912, 257413.640799999237061 ], [ 357605.254100002348423, 257423.343800000846386 ], [ 357606.746200002729893, 257437.499299999326468 ], [ 357609.912100002169609, 257444.491300001740456 ], [ 357615.493400000035763, 257451.925200000405312 ], [ 357631.443400003015995, 257472.742899999022484 ], [ 357636.187799997627735, 257483.758600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098800", "MAP": "D9-7906-T007", "PARCEL_NAM": "58A", "ACRE": ".279", "LONGITUDE": -64.94111234, "LATITUDE": 18.34581664, "OBJECTID_1": 9370, "PARCEL_NO_": "105301098800", "Tax_Legal_": "58A SOLBERG NO. 1 LITTLE NORTHSIDE QTR", "Name": "PARATORE, FILIPPO & CHRISTINE L.", "Address": "8252 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43000, "Improved_V": 265400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.730072667, "SHAPE_Area": 1290.25188387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357732.451399996876717, 257387.992300000041723 ], [ 357732.583499997854233, 257387.775800000876188 ], [ 357737.233300000429153, 257343.420899998396635 ], [ 357707.814000003039837, 257342.820000000298023 ], [ 357703.387900002300739, 257385.90819999948144 ], [ 357732.451399996876717, 257387.992300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098500", "MAP": "D9-7484-T004", "PARCEL_NAM": "102", "ACRE": null, "LONGITUDE": -64.94136345, "LATITUDE": 18.34620672, "OBJECTID_1": 9367, "PARCEL_NO_": "105301098500", "Tax_Legal_": "SOLBERG 102 LT.NORTHSIDE QTR.", "Name": "BOSCHULTE, LOUIS J", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 117200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.53742770899999, "SHAPE_Area": 2399.45181013 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357710.606899999082088, 257463.472500000149012 ], [ 357715.193499997258186, 257461.292100001126528 ], [ 357713.955899998545647, 257450.969399999827147 ], [ 357710.273400001227856, 257420.254200000315905 ], [ 357729.307199999690056, 257392.566100001335144 ], [ 357732.451399996876717, 257387.992300000041723 ], [ 357703.387900002300739, 257385.90819999948144 ], [ 357676.966499999165535, 257384.0135000012815 ], [ 357676.6283999979496, 257394.889800000935793 ], [ 357660.982600003480911, 257394.966499999165535 ], [ 357654.074500001966953, 257395.000399999320507 ], [ 357654.001900002360344, 257417.112199999392033 ], [ 357659.655500002205372, 257417.399599999189377 ], [ 357697.790100000798702, 257419.338100001215935 ], [ 357710.606899999082088, 257463.472500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098500", "MAP": "D9-7484-T004", "PARCEL_NAM": "102-1", "ACRE": ".02", "LONGITUDE": -64.94115559, "LATITUDE": 18.34678548, "OBJECTID_1": 9367, "PARCEL_NO_": "105301098500", "Tax_Legal_": "SOLBERG 102 LT.NORTHSIDE QTR.", "Name": "BOSCHULTE, LOUIS J", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 117200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.517543527399994, "SHAPE_Area": 74.205586252200007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357715.193499997258186, 257461.292100001126528 ], [ 357710.606899999082088, 257463.472500000149012 ], [ 357718.86370000243187, 257491.904899999499321 ], [ 357715.193499997258186, 257461.292100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301092000", "MAP": "D9-7484-T004", "PARCEL_NAM": "77-1", "ACRE": "1.562", "LONGITUDE": -64.94147446, "LATITUDE": 18.34723101, "OBJECTID_1": 9307, "PARCEL_NO_": "105301092000", "Tax_Legal_": "77-1 ESTATE SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "BOSCHULTE, JOSEPH B. & AISHA B.", "Address": "PO Box 10844", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 166800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 343.19069911899999, "SHAPE_Area": 7216.2803876799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357708.703699998557568, 257580.119800001382828 ], [ 357717.038500003516674, 257559.609000001102686 ], [ 357718.86370000243187, 257491.904899999499321 ], [ 357710.606899999082088, 257463.472500000149012 ], [ 357684.570100001990795, 257475.850299999117851 ], [ 357636.187799997627735, 257483.758600000292063 ], [ 357637.746500000357628, 257490.104200001806021 ], [ 357639.154100000858307, 257514.180399999022484 ], [ 357638.254299998283386, 257525.149900000542402 ], [ 357635.791900001466274, 257550.55799999833107 ], [ 357700.173600003123283, 257576.661299999803305 ], [ 357708.703699998557568, 257580.119800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098900", "MAP": "D9-8469-T010", "PARCEL_NAM": "1A-3-1 REM", "ACRE": ".45", "LONGITUDE": -64.94743542000001, "LATITUDE": 18.34823006, "OBJECTID_1": 9371, "PARCEL_NO_": "105301098900", "Tax_Legal_": "1A-3-1 REM SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "ABUSAOUD, MUSTAFA", "Address": "PO Box 305126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035126, "Country": "United States", "Land_Value": 64600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.76377042199999, "SHAPE_Area": 2048.4358178000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357019.859999999403954, 257619.284099999815226 ], [ 357021.952100001275539, 257637.664900001138449 ], [ 357023.929799996316433, 257655.040100000798702 ], [ 357029.110799998044968, 257654.630100000649691 ], [ 357038.231600001454353, 257651.437800001353025 ], [ 357051.905900001525879, 257642.020199999213219 ], [ 357068.119699999690056, 257636.162999998778105 ], [ 357080.566699996590614, 257633.75959999859333 ], [ 357079.415399998426437, 257618.0962999984622 ], [ 357078.214500002563, 257599.16780000180006 ], [ 357019.859999999403954, 257619.284099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094200", "MAP": "D9-8937-T014", "PARCEL_NAM": "1A-3-2-REM", "ACRE": ".467", "LONGITUDE": -64.94664638, "LATITUDE": 18.34809241, "OBJECTID_1": 9326, "PARCEL_NO_": "105301094200", "Tax_Legal_": "1A-3-2 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, LOUIS J.", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 113200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.306076445, "SHAPE_Area": 2045.10800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357107.698700003325939, 257586.252399999648333 ], [ 357122.750699996948242, 257641.377199999988079 ], [ 357126.332299999892712, 257642.337099999189377 ], [ 357134.423199996352196, 257642.420899998396635 ], [ 357147.737400002777576, 257639.456599999219179 ], [ 357157.421300001442432, 257636.647999998182058 ], [ 357154.184000000357628, 257623.389400001615286 ], [ 357152.54900000244379, 257617.741799999028444 ], [ 357141.306599996984005, 257574.010999999940395 ], [ 357139.49099999666214, 257575.318799998611212 ], [ 357132.162299998104572, 257583.702500000596046 ], [ 357124.8766999989748, 257587.020399998873472 ], [ 357118.415399998426437, 257588.234099999070168 ], [ 357112.773000001907349, 257587.976799998432398 ], [ 357107.698700003325939, 257586.252399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094200", "MAP": "D9-7741-T006", "PARCEL_NAM": "1A-3 REM", "ACRE": ".915", "LONGITUDE": -64.94623314, "LATITUDE": 18.34798706, "OBJECTID_1": 9326, "PARCEL_NO_": "105301094200", "Tax_Legal_": "1A-3-2 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, LOUIS J.", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 113200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.84347147, "SHAPE_Area": 3369.5337016100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357152.54900000244379, 257617.741799999028444 ], [ 357154.184000000357628, 257623.389400001615286 ], [ 357157.421300001442432, 257636.647999998182058 ], [ 357170.070699997246265, 257630.563700001686811 ], [ 357189.316799998283386, 257624.221400000154972 ], [ 357212.789399996399879, 257621.021099999547005 ], [ 357225.867799997329712, 257620.458500001579523 ], [ 357214.134199999272823, 257600.499699998646975 ], [ 357209.07490000128746, 257593.537300001829863 ], [ 357176.781300000846386, 257573.759799998253584 ], [ 357165.060900002717972, 257564.959300000220537 ], [ 357163.768500000238419, 257565.173900000751019 ], [ 357147.604500003159046, 257569.474599998444319 ], [ 357141.306599996984005, 257574.010999999940395 ], [ 357152.54900000244379, 257617.741799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091300", "MAP": "G9-572-T61", "PARCEL_NAM": "61", "ACRE": ".637", "LONGITUDE": -64.94551873, "LATITUDE": 18.34796225, "OBJECTID_1": 9301, "PARCEL_NO_": "105301091300", "Tax_Legal_": "SOLBERG 61 GREAT NORTHSIDE QTR", "Name": "CALLWOOD, KEITH", "Address": "PO Box 502431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 124300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.25643458, "SHAPE_Area": 2908.24931419 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357286.286799997091293, 257616.095300000160933 ], [ 357285.149499997496605, 257609.863699998706579 ], [ 357274.254900000989437, 257563.545099999755621 ], [ 357231.340499997138977, 257584.303199999034405 ], [ 357227.291000001132488, 257586.381000000983477 ], [ 357209.07490000128746, 257593.537300001829863 ], [ 357214.134199999272823, 257600.499699998646975 ], [ 357225.867799997329712, 257620.458500001579523 ], [ 357236.201499998569489, 257621.964299999177456 ], [ 357248.967100001871586, 257622.13569999858737 ], [ 357264.054499998688698, 257621.927999999374151 ], [ 357278.933600001037121, 257621.197700001299381 ], [ 357287.078599996864796, 257620.433899998664856 ], [ 357286.286799997091293, 257616.095300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091200", "MAP": "G9-572-T61", "PARCEL_NAM": "62", "ACRE": ".727", "LONGITUDE": -64.94501851, "LATITUDE": 18.34785748, "OBJECTID_1": 9300, "PARCEL_NO_": "105301091200", "Tax_Legal_": "SOLBERG 62 LITTLE NORTHSIDE QTR", "Name": "MORCIGLIO, RAFAEL A. & LUZ M", "Address": "PO Box 7282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 86700, "Improved_V": 299400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.96125720200001, "SHAPE_Area": 2953.5089167800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357329.55009999871254, 257591.091400001198053 ], [ 357333.185900002717972, 257555.794700000435114 ], [ 357324.305600002408028, 257556.988600000739098 ], [ 357274.254900000989437, 257563.545099999755621 ], [ 357285.149499997496605, 257609.863699998706579 ], [ 357286.286799997091293, 257616.095300000160933 ], [ 357287.078599996864796, 257620.433899998664856 ], [ 357292.320000000298023, 257620.054900001734495 ], [ 357308.458800002932549, 257618.709300000220537 ], [ 357318.433200001716614, 257620.803100001066923 ], [ 357327.776600003242493, 257615.203699998557568 ], [ 357329.55009999871254, 257591.091400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302480400", "MAP": "D9-8115-T008", "PARCEL_NAM": "86-D", "ACRE": ".500", "LONGITUDE": -64.94042478, "LATITUDE": 18.34613837, "OBJECTID_1": 10838, "PARCEL_NO_": "105302480400", "Tax_Legal_": "SOLBERG 86 LITTLE NORTHSIDE", "Name": "BOSCHULTE, EVELYN S", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 254900, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.51307481800001, "SHAPE_Area": 2108.56980286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357833.408299997448921, 257434.910300001502037 ], [ 357831.116700001060963, 257431.092199999839067 ], [ 357821.030199997127056, 257414.001200001686811 ], [ 357810.56530000269413, 257399.250399999320507 ], [ 357803.68639999628067, 257388.917399998754263 ], [ 357797.426700003445148, 257380.267299998551607 ], [ 357791.347300000488758, 257375.393899999558926 ], [ 357777.696000002324581, 257367.52250000089407 ], [ 357756.16160000115633, 257399.790600001811981 ], [ 357832.810900002717972, 257437.931699998676777 ], [ 357833.408299997448921, 257434.910300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302480400", "MAP": "D9-8115-T008", "PARCEL_NAM": "86-C", "ACRE": ".502", "LONGITUDE": -64.94078513, "LATITUDE": 18.34578043, "OBJECTID_1": 10838, "PARCEL_NO_": "105302480400", "Tax_Legal_": "SOLBERG 86 LITTLE NORTHSIDE", "Name": "BOSCHULTE, EVELYN S", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 254900, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.62937672800001, "SHAPE_Area": 2431.6170178500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357777.696000002324581, 257367.52250000089407 ], [ 357780.844899997115135, 257362.612700000405312 ], [ 357770.607299998402596, 257357.306400001049042 ], [ 357784.268899999558926, 257334.936500001698732 ], [ 357738.788199998438358, 257328.58839999884367 ], [ 357732.5591000020504, 257388.008799999952316 ], [ 357732.451399996876717, 257387.992300000041723 ], [ 357756.16160000115633, 257399.790600001811981 ], [ 357777.696000002324581, 257367.52250000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302480400", "MAP": "D9-8016-T007", "PARCEL_NAM": "86-B", "ACRE": null, "LONGITUDE": -64.9405967, "LATITUDE": 18.3453786, "OBJECTID_1": 10838, "PARCEL_NO_": "105302480400", "Tax_Legal_": "SOLBERG 86 LITTLE NORTHSIDE", "Name": "BOSCHULTE, EVELYN S", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 254900, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.18491505, "SHAPE_Area": 2076.6828001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357784.268899999558926, 257334.936500001698732 ], [ 357794.558300003409386, 257333.885000001639128 ], [ 357799.340899996459484, 257335.740699999034405 ], [ 357814.635499998927116, 257305.943799998611212 ], [ 357807.072400003671646, 257302.13910000026226 ], [ 357752.241400003433228, 257301.901500001549721 ], [ 357741.527199998497963, 257302.460700001567602 ], [ 357738.788199998438358, 257328.58839999884367 ], [ 357784.268899999558926, 257334.936500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302480400", "MAP": "D9-8115-T008", "PARCEL_NAM": "86-A", "ACRE": null, "LONGITUDE": -64.94008017, "LATITUDE": 18.34556913, "OBJECTID_1": 10838, "PARCEL_NO_": "105302480400", "Tax_Legal_": "SOLBERG 86 LITTLE NORTHSIDE", "Name": "BOSCHULTE, EVELYN S", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 254900, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.39171196199999, "SHAPE_Area": 2004.5977240300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357799.340899996459484, 257335.740699999034405 ], [ 357811.402300000190735, 257341.516100000590086 ], [ 357844.331699997186661, 257380.337499998509884 ], [ 357845.146099999547005, 257376.333500001579523 ], [ 357852.724799998104572, 257338.6097999997437 ], [ 357852.775100000202656, 257332.699599999934435 ], [ 357849.585799999535084, 257328.45160000026226 ], [ 357834.372000001370907, 257315.872600000351667 ], [ 357814.635499998927116, 257305.943799998611212 ], [ 357799.340899996459484, 257335.740699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302480400", "MAP": "D9-8166-T008", "PARCEL_NAM": "86-REM", "ACRE": ".899", "LONGITUDE": -64.94024514, "LATITUDE": 18.34589697, "OBJECTID_1": 10838, "PARCEL_NO_": "105302480400", "Tax_Legal_": "SOLBERG 86 LITTLE NORTHSIDE", "Name": "BOSCHULTE, EVELYN S", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 254900, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.00786783299998, "SHAPE_Area": 3241.7066553 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357844.331699997186661, 257380.337499998509884 ], [ 357811.402300000190735, 257341.516100000590086 ], [ 357799.340899996459484, 257335.740699999034405 ], [ 357794.558300003409386, 257333.885000001639128 ], [ 357784.268899999558926, 257334.936500001698732 ], [ 357770.607299998402596, 257357.306400001049042 ], [ 357780.844899997115135, 257362.612700000405312 ], [ 357777.696000002324581, 257367.52250000089407 ], [ 357791.347300000488758, 257375.393899999558926 ], [ 357797.426700003445148, 257380.267299998551607 ], [ 357803.68639999628067, 257388.917399998754263 ], [ 357810.56530000269413, 257399.250399999320507 ], [ 357821.030199997127056, 257414.001200001686811 ], [ 357831.116700001060963, 257431.092199999839067 ], [ 357833.408299997448921, 257434.910300001502037 ], [ 357839.531700000166893, 257403.938900001347065 ], [ 357844.331699997186661, 257380.337499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302120300", "MAP": null, "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.94039028, "LATITUDE": 18.34476645, "OBJECTID_1": 9843, "PARCEL_NO_": "105302120300", "Tax_Legal_": "SOLBERG 10 KRONP QTR", "Name": "VANBEVERHOUDT, LESTER & RUBY", "Address": "PO Box 807", "City": "Darlington", "State": "South Carolina", "Zip": 29540, "Country": "United States", "Land_Value": 50000, "Improved_V": 47000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.513825002, "SHAPE_Area": 952.01625172399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357797.869400002062321, 257280.133400000631809 ], [ 357807.078900001943111, 257250.240600001066923 ], [ 357814.936999998986721, 257230.853900000452995 ], [ 357812.532499998807907, 257229.145399998873472 ], [ 357793.199000000953674, 257226.876299999654293 ], [ 357789.961099997162819, 257228.327399998903275 ], [ 357785.737199999392033, 257250.879900000989437 ], [ 357786.440999999642372, 257262.918000001460314 ], [ 357787.200499996542931, 257268.412599999457598 ], [ 357788.782600000500679, 257272.014199998229742 ], [ 357794.363799996674061, 257279.448100000619888 ], [ 357797.869400002062321, 257280.133400000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302040700", "MAP": "D9-8186-T008", "PARCEL_NAM": "14A & 5A", "ACRE": ".22", "LONGITUDE": -64.94012016000001, "LATITUDE": 18.34483736, "OBJECTID_1": 9660, "PARCEL_NO_": "105302040700", "Tax_Legal_": "SOLBERG 14A & 5A (COMBINED) KRONPRINDSENS QTR", "Name": "COLAIRE, MCDONALD M. & CLAVIA K.", "Address": "PO Box 305099", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27900, "Improved_V": 347400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.661285816, "SHAPE_Area": 818.25657590499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357816.827500000596046, 257265.692699998617172 ], [ 357822.4054000005126, 257267.405600000172853 ], [ 357822.109300002455711, 257269.440600000321865 ], [ 357837.162699997425079, 257273.905099999159575 ], [ 357841.223499998450279, 257268.854800000786781 ], [ 357851.781099997460842, 257260.075199998915195 ], [ 357842.936800003051758, 257257.047499999403954 ], [ 357830.105899997055531, 257248.709899999201298 ], [ 357822.111100003123283, 257240.622900001704693 ], [ 357817.318199999630451, 257235.30629999935627 ], [ 357809.930100001394749, 257250.655699998140335 ], [ 357806.035700000822544, 257262.378600001335144 ], [ 357816.827500000596046, 257265.692699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302040800", "MAP": "D9-8186-T008", "PARCEL_NAM": "14 & 5", "ACRE": ".15", "LONGITUDE": -64.94023316000001, "LATITUDE": 18.34494857, "OBJECTID_1": 9661, "PARCEL_NO_": "105302040800", "Tax_Legal_": "SOLBERG 14 & 5 KRONPRINDSENS QTR", "Name": "JACOBS, SR, CORDELL & ELAINE", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19100, "Improved_V": 87600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.42275623, "SHAPE_Area": 606.19397345000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357837.162699997425079, 257273.905099999159575 ], [ 357822.109300002455711, 257269.440600000321865 ], [ 357822.4054000005126, 257267.405600000172853 ], [ 357816.827500000596046, 257265.692699998617172 ], [ 357806.035700000822544, 257262.378600001335144 ], [ 357809.930100001394749, 257250.655699998140335 ], [ 357817.318199999630451, 257235.30629999935627 ], [ 357814.936999998986721, 257230.853900000452995 ], [ 357807.078900001943111, 257250.240600001066923 ], [ 357797.869400002062321, 257280.133400000631809 ], [ 357811.271200001239777, 257282.541799999773502 ], [ 357821.738899998366833, 257284.316199999302626 ], [ 357836.333499997854233, 257274.936500001698732 ], [ 357837.162699997425079, 257273.905099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105302481000", "MAP": "D9-1625-T80", "PARCEL_NAM": "101", "ACRE": null, "LONGITUDE": -64.94080821, "LATITUDE": 18.34719644, "OBJECTID_1": 10844, "PARCEL_NO_": "105302481000", "Tax_Legal_": "SOLBERG 101 LT. NORTHSIDE", "Name": "BOSCHULTE, C. RANDOLPH & F", "Address": "PO Box 2101", "City": "Maple Grove", "State": "Minnesota", "Zip": 55311, "Country": "United States", "Land_Value": 375900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 362.713695551, "SHAPE_Area": 6506.5830457700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357771.2820999994874, 257476.153499998152256 ], [ 357716.046099998056889, 257468.401999998837709 ], [ 357718.86370000243187, 257491.904899999499321 ], [ 357717.038500003516674, 257559.609000001102686 ], [ 357708.703699998557568, 257580.119800001382828 ], [ 357759.468900002539158, 257559.819200001657009 ], [ 357789.6503000035882, 257545.583200000226498 ], [ 357787.029500000178814, 257501.89299999922514 ], [ 357793.740099996328354, 257494.66160000115633 ], [ 357804.603299997746944, 257480.103799998760223 ], [ 357771.2820999994874, 257476.153499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105302481300", "MAP": "D9-4725-T89", "PARCEL_NAM": "101A", "ACRE": "1.96", "LONGITUDE": -64.94069105, "LATITUDE": 18.34649011, "OBJECTID_1": 10858, "PARCEL_NO_": "105302481300", "Tax_Legal_": "SOLBERG 101A LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, FAYE & RANDOLPH", "Address": "PO Box 2101", "City": "Maple Grove", "State": "Minnesota", "Zip": 55311, "Country": "United States", "Land_Value": 412500, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.42822086799998, "SHAPE_Area": 7189.3556903400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357716.045900002121925, 257468.401900000870228 ], [ 357771.2820999994874, 257476.153499998152256 ], [ 357804.603299997746944, 257480.103799998760223 ], [ 357813.153899997472763, 257468.645100001245737 ], [ 357820.854699999094009, 257458.610500000417233 ], [ 357831.452799998223782, 257444.800700001418591 ], [ 357832.810900002717972, 257437.931699998676777 ], [ 357732.451399996876717, 257387.992300000041723 ], [ 357729.307199999690056, 257392.566100001335144 ], [ 357710.273400001227856, 257420.254200000315905 ], [ 357713.955899998545647, 257450.969399999827147 ], [ 357715.193499997258186, 257461.291999999433756 ], [ 357716.045900002121925, 257468.401900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105302480900", "MAP": "D9-2570-T84", "PARCEL_NAM": "100-2", "ACRE": ".30", "LONGITUDE": -64.93989597, "LATITUDE": 18.34511589, "OBJECTID_1": 10843, "PARCEL_NO_": "105302480900", "Tax_Legal_": "SOLBERG 100-2 LT. NORTHSIDE", "Name": "BOSCHULTE, C. RANDOLPH & F", "Address": "PO Box 2101", "City": "Maple Grove", "State": "Minnesota", "Zip": 55311, "Country": "United States", "Land_Value": 70900, "Improved_V": 33200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.40105127699999, "SHAPE_Area": 1588.4703218899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357844.319899998605251, 257315.949000000953674 ], [ 357876.965999998152256, 257280.530900001525879 ], [ 357874.18469999730587, 257268.585900001227856 ], [ 357868.7246999964118, 257258.999800000339746 ], [ 357854.269900001585484, 257268.156300000846386 ], [ 357841.36540000140667, 257278.151999998837709 ], [ 357831.680100001394749, 257287.449200000613928 ], [ 357812.795999996364117, 257296.801899999380112 ], [ 357816.769799999892712, 257299.685400001704693 ], [ 357834.43129999935627, 257308.906899999827147 ], [ 357840.847699999809265, 257312.970199998468161 ], [ 357844.319899998605251, 257315.949000000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302332500", "MAP": "F9-1174-T63", "PARCEL_NAM": "5C", "ACRE": ".30", "LONGITUDE": -64.93476713, "LATITUDE": 18.34415885, "OBJECTID_1": 10588, "PARCEL_NO_": "105302332500", "Tax_Legal_": "5C TAMARIND GADE QUEENS QUARTER", "Name": "PINNEY, NORTON E. & GLYNIS T.", "Address": "PO Box 10127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5900, "Improved_V": 75900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.235088736500003, "SHAPE_Area": 107.465441501 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358392.871699996292591, 257178.470100000500679 ], [ 358385.513800002634525, 257192.743200000375509 ], [ 358386.16950000077486, 257192.888199999928474 ], [ 358392.607400000095367, 257194.418600000441074 ], [ 358399.155000001192093, 257183.073100000619888 ], [ 358392.871699996292591, 257178.470100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091400", "MAP": "D9-8290-T009", "PARCEL_NAM": "78-1", "ACRE": ".770", "LONGITUDE": -64.9425258, "LATITUDE": 18.34703722, "OBJECTID_1": 9302, "PARCEL_NO_": "105301091400", "Tax_Legal_": "SOLBERG 78 LITTLE NORTHSIDE", "Name": "BOSCHULTE, ELLEN", "Address": "BOX 2298", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 204100, "Improved_V": 214400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.04496155800001, "SHAPE_Area": 3197.0365041800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357591.400100000202656, 257538.988400001078844 ], [ 357585.549800001084805, 257507.679200001060963 ], [ 357586.63400000333786, 257452.176300000399351 ], [ 357563.981600001454353, 257452.850400000810623 ], [ 357548.664599999785423, 257452.530299998819828 ], [ 357559.342500001192093, 257557.438900001347065 ], [ 357568.461800001561642, 257550.2489 ], [ 357581.816399998962879, 257542.582299999892712 ], [ 357591.400100000202656, 257538.988400001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091400", "MAP": "D9-8290-T009", "PARCEL_NAM": "78 REM", "ACRE": ".725", "LONGITUDE": -64.94218627, "LATITUDE": 18.34701387, "OBJECTID_1": 9302, "PARCEL_NO_": "105301091400", "Tax_Legal_": "SOLBERG 78 LITTLE NORTHSIDE", "Name": "BOSCHULTE, ELLEN", "Address": "BOX 2298", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 204100, "Improved_V": 214400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.58300496800001, "SHAPE_Area": 3057.26149721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357627.798799999058247, 257530.437800001353025 ], [ 357629.474799998104572, 257514.523299999535084 ], [ 357628.830300003290176, 257495.51969999819994 ], [ 357629.145000003278255, 257487.130899999290705 ], [ 357624.996899999678135, 257479.738499999046326 ], [ 357614.459600001573563, 257465.109299998730421 ], [ 357605.357299998402596, 257453.113600000739098 ], [ 357594.295800000429153, 257451.948300000280142 ], [ 357586.63400000333786, 257452.176300000399351 ], [ 357585.549800001084805, 257507.679200001060963 ], [ 357591.400100000202656, 257538.988400001078844 ], [ 357595.665700003504753, 257537.388799998909235 ], [ 357618.170800000429153, 257531.947999998927116 ], [ 357627.798799999058247, 257530.437800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302480800", "MAP": "D9-8383-T009", "PARCEL_NAM": "100-1 (AREA B)", "ACRE": ".23", "LONGITUDE": -64.9395275, "LATITUDE": 18.34494725, "OBJECTID_1": 10842, "PARCEL_NO_": "105302480800", "Tax_Legal_": "SOLBERG 100-1 LT. NORTHSIDE", "Name": "AYAH PLAZA LLC", "Address": "PO Box 302761", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 156800, "Improved_V": 39600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.89866273199999, "SHAPE_Area": 738.91822249500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357902.584700003266335, 257293.227600000798702 ], [ 357891.964100003242493, 257272.277499999850988 ], [ 357897.940700002014637, 257240.910399999469519 ], [ 357874.39919999986887, 257255.405200000852346 ], [ 357879.951700001955032, 257266.216400001198053 ], [ 357885.708099998533726, 257297.057300001382828 ], [ 357902.584700003266335, 257293.227600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097700", "MAP": "D9-8578-T010", "PARCEL_NAM": "1B-9-1", "ACRE": ".003", "LONGITUDE": -64.9465274, "LATITUDE": 18.34722267, "OBJECTID_1": 9359, "PARCEL_NO_": "105301097700", "Tax_Legal_": "SOLBERG 1B-9 LT. NORTHSIDE QTR.", "Name": "HUSEIN, HUSEIN A. & AMINA", "Address": "PO Box 7956", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 59900, "Improved_V": 335000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.309134119399999, "SHAPE_Area": 15.211121800400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357141.982199996709824, 257508.812699999660254 ], [ 357148.08219999819994, 257520.155799999833107 ], [ 357150.149800002574921, 257519.013300001621246 ], [ 357141.982199996709824, 257508.812699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301097300", "MAP": "D9-8578-T010", "PARCEL_NAM": "90G REM", "ACRE": ".26", "LONGITUDE": -64.94646454, "LATITUDE": 18.34708626, "OBJECTID_1": 9356, "PARCEL_NO_": "105301097300", "Tax_Legal_": "SOLBERG 90G LT.NORTHISDE QTR.", "Name": "PENN, CHERISE A. & NAOMI J.", "Address": "PO Box 307636", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.67812228299999, "SHAPE_Area": 958.59152902400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357133.581799998879433, 257498.321199998259544 ], [ 357135.737700000405312, 257497.200699999928474 ], [ 357141.982199996709824, 257508.812699999660254 ], [ 357150.149800002574921, 257519.013300001621246 ], [ 357152.046099998056889, 257521.381599999964237 ], [ 357169.8496999964118, 257513.92790000140667 ], [ 357169.248400002717972, 257489.858399998396635 ], [ 357154.786899998784065, 257483.618299998342991 ], [ 357128.907600000500679, 257492.483500000089407 ], [ 357133.581799998879433, 257498.321199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301082800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94370424, "LATITUDE": 18.34562855, "OBJECTID_1": 9278, "PARCEL_NO_": "105301082800", "Tax_Legal_": "SOLBERG 83 LT. NORTHSIDE QTR.", "Name": "WHEATLEY, VERA & WINSTON", "Address": "BOX 3201", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 233700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 507.93082142999998, "SHAPE_Area": 9156.4081672800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357492.726499997079372, 257443.031300000846386 ], [ 357478.556199997663498, 257397.53660000115633 ], [ 357473.371299996972084, 257380.890099998563528 ], [ 357465.480800002813339, 257360.560499999672174 ], [ 357463.925700001418591, 257353.79280000180006 ], [ 357462.428199999034405, 257340.270500000566244 ], [ 357464.956799998879433, 257327.414500001817942 ], [ 357469.89360000193119, 257315.844799999147654 ], [ 357475.607900001108646, 257307.658900000154972 ], [ 357503.259900003671646, 257280.020899999886751 ], [ 357487.205600000917912, 257271.445700000971556 ], [ 357482.389300003647804, 257268.873199999332428 ], [ 357436.314400002360344, 257282.006099998950958 ], [ 357381.348399996757507, 257297.599300000816584 ], [ 357383.727799996733665, 257302.262800000607967 ], [ 357390.88570000231266, 257313.931600000709295 ], [ 357392.485799998044968, 257315.4222999997437 ], [ 357397.239100001752377, 257325.382599998265505 ], [ 357401.220299996435642, 257331.325800001621246 ], [ 357407.577299997210503, 257342.354699999094009 ], [ 357410.771999999880791, 257345.969500001519918 ], [ 357418.705700002610683, 257361.2331000007689 ], [ 357423.482400000095367, 257368.449400000274181 ], [ 357424.259999997913837, 257371.833299998193979 ], [ 357428.251999996602535, 257376.510000001639128 ], [ 357432.209799997508526, 257385.197200000286102 ], [ 357440.965899996459484, 257398.567800000309944 ], [ 357446.511200003325939, 257410.223299998790026 ], [ 357457.650399997830391, 257427.835299998521805 ], [ 357462.409100003540516, 257437.162300001829863 ], [ 357463.170500002801418, 257442.445900000631809 ], [ 357472.045299999415874, 257441.885200001299381 ], [ 357492.726499997079372, 257443.031300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094200", "MAP": "D9-4948-T90", "PARCEL_NAM": "1A-3", "ACRE": null, "LONGITUDE": -64.94868878, "LATITUDE": 18.34834606, "OBJECTID_1": 9326, "PARCEL_NO_": "105301094200", "Tax_Legal_": "1A-3-2 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, LOUIS J.", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 113200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.34620067499998, "SHAPE_Area": 3490.2494364099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356907.865099996328354, 257615.253800000995398 ], [ 356895.805900000035763, 257620.488299999386072 ], [ 356880.815099999308586, 257626.995299998670816 ], [ 356876.190999999642372, 257634.889899998903275 ], [ 356875.048600003123283, 257637.867800001055002 ], [ 356868.314099997282028, 257655.423000000417233 ], [ 356901.976899996399879, 257664.034499999135733 ], [ 356933.968800000846386, 257658.49379999935627 ], [ 356934.288599997758865, 257658.703400000929832 ], [ 356934.316600002348423, 257658.457499999552965 ], [ 356936.891099996864796, 257658.188900001347065 ], [ 356963.418999999761581, 257655.420800000429153 ], [ 356963.016800001263618, 257655.204199999570847 ], [ 356957.306800000369549, 257651.449099998921156 ], [ 356953.661499999463558, 257646.667500000447035 ], [ 356951.0574000030756, 257639.848799999803305 ], [ 356956.021200001239777, 257625.112900000065565 ], [ 356959.305699996650219, 257618.173700001090765 ], [ 356963.384099997580051, 257612.718699999153614 ], [ 356963.410999998450279, 257609.552499998360872 ], [ 356951.309199996292591, 257610.297800000756979 ], [ 356920.604500003159046, 257617.645899999886751 ], [ 356915.766699999570847, 257617.606300000101328 ], [ 356908.526000000536442, 257615.647199999541044 ], [ 356907.865099996328354, 257615.253800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094500", "MAP": "D9-4363-T88", "PARCEL_NAM": "1A-4", "ACRE": null, "LONGITUDE": -64.94904485000001, "LATITUDE": 18.34808444, "OBJECTID_1": 9329, "PARCEL_NO_": "105301094500", "Tax_Legal_": "SOLBERG 1A-4 LITTLE NORTHSIDE", "Name": "IVAN PATRICK RAMPERSAD REVOCABLE LIVING TRUST", "Address": "PO Box 9249", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 454700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.898924927, "SHAPE_Area": 831.87531739600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356895.805900000035763, 257620.488299999386072 ], [ 356907.865099996328354, 257615.253800000995398 ], [ 356898.096100002527237, 257609.440099999308586 ], [ 356861.990099996328354, 257588.246300000697374 ], [ 356857.947700001299381, 257589.479800000786781 ], [ 356861.875, 257601.755399998277426 ], [ 356864.266999997198582, 257604.941300000995398 ], [ 356869.814099997282028, 257616.385800000280142 ], [ 356873.804300002753735, 257621.273600000888109 ], [ 356880.815099999308586, 257626.995299998670816 ], [ 356895.805900000035763, 257620.488299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302185000", "MAP": "G9-2066-T72", "PARCEL_NAM": "9A", "ACRE": null, "LONGITUDE": -64.93724334, "LATITUDE": 18.34516264, "OBJECTID_1": 10143, "PARCEL_NO_": "105302185000", "Tax_Legal_": "LERKE GADE 9A KRONPRINDSENS QTR.", "Name": "OTTLEY, CLARENCE L", "Address": "PO Box 11996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.346823506900002, "SHAPE_Area": 79.4199924041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358127.221600003540516, 257289.277699999511242 ], [ 358126.298699997365475, 257301.866700001060963 ], [ 358132.840700000524521, 257302.694499999284744 ], [ 358132.937799997627735, 257291.29619999974966 ], [ 358133.205300003290176, 257289.576900001615286 ], [ 358127.221600003540516, 257289.277699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302032500", "MAP": null, "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.93735985000001, "LATITUDE": 18.34515227, "OBJECTID_1": 9644, "PARCEL_NO_": "105302032500", "Tax_Legal_": "LAERKE STREET 9 CROWN PRINCE QUARTER", "Name": "OTTLEY, CLARENCE", "Address": "PO Box 11996", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12200, "Improved_V": 51200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.496123858600001, "SHAPE_Area": 224.80471385800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358126.298699997365475, 257301.866700001060963 ], [ 358127.221600003540516, 257289.277699999511242 ], [ 358120.983300000429153, 257288.965799998492002 ], [ 358108.165600001811981, 257288.324799999594688 ], [ 358107.936700001358986, 257291.724899999797344 ], [ 358107.870099999010563, 257299.534800000488758 ], [ 358126.298699997365475, 257301.866700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401092000", "MAP": "D9-4829-T89", "PARCEL_NAM": "303A", "ACRE": "2.3596", "LONGITUDE": -64.92840192, "LATITUDE": 18.34755131, "OBJECTID_1": 11527, "PARCEL_NO_": "105401092000", "Tax_Legal_": "HOSPITAL GROUND 303A SPRING HILLS HOMES", "Name": "SPRING HILL HOME OWNER ASSOCIA", "Address": "PO Box 11776", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29200, "Improved_V": 11000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 401.97668171599997, "SHAPE_Area": 9145.0181744500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358999.799999997019768, 257603.717799998819828 ], [ 359125.327200002968311, 257604.659699998795986 ], [ 359124.623400002717972, 257592.621599998325109 ], [ 359124.162299998104572, 257552.087900001555681 ], [ 359126.746699996292591, 257532.688400000333786 ], [ 359101.747400000691414, 257532.905999999493361 ], [ 359081.586000002920628, 257533.163199998438358 ], [ 359082.462399996817112, 257524.937699999660254 ], [ 359063.895599998533726, 257527.318900000303984 ], [ 359046.943300001323223, 257529.502199999988079 ], [ 359035.629799999296665, 257532.364900000393391 ], [ 359021.082000002264977, 257536.256599999964237 ], [ 358994.412500001490116, 257543.215500000864267 ], [ 358999.799999997019768, 257603.717799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303031000", "MAP": "A9-535-T99", "PARCEL_NAM": "64 REM", "ACRE": ".08", "LONGITUDE": -64.94837569000001, "LATITUDE": 18.33986037, "OBJECTID_1": 10893, "PARCEL_NO_": "105303031000", "Tax_Legal_": "CONTANT 64 SOUTHSIDE QTR", "Name": "ROEBUCK, NICOLE, KASIM & ELMO JR.", "Address": "PO Box 1134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.853912158900002, "SHAPE_Area": 264.767560033 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356965.335900001227856, 256705.504000000655651 ], [ 356965.219499997794628, 256689.705200001597404 ], [ 356952.053599998354912, 256689.34010000154376 ], [ 356951.332800000905991, 256713.819400001317263 ], [ 356958.516199998557568, 256708.46680000051856 ], [ 356965.335900001227856, 256705.504000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303031000", "MAP": null, "PARCEL_NAM": "64C", "ACRE": null, "LONGITUDE": -64.94838173, "LATITUDE": 18.33996559, "OBJECTID_1": 10893, "PARCEL_NO_": "105303031000", "Tax_Legal_": "CONTANT 64 SOUTHSIDE QTR", "Name": "ROEBUCK, NICOLE, KASIM & ELMO JR.", "Address": "PO Box 1134", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.913551546299999, "SHAPE_Area": 37.744941642800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356965.272299997508526, 256707.59180000051856 ], [ 356965.335900001227856, 256705.504000000655651 ], [ 356958.516199998557568, 256708.46680000051856 ], [ 356951.332800000905991, 256713.819400001317263 ], [ 356951.220600001513958, 256717.629000000655651 ], [ 356954.41669999808073, 256714.756999999284744 ], [ 356963.438900001347065, 256707.644400000572205 ], [ 356965.272299997508526, 256707.59180000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303011100", "MAP": null, "PARCEL_NAM": "74", "ACRE": null, "LONGITUDE": -64.94969699000001, "LATITUDE": 18.33973697, "OBJECTID_1": 10869, "PARCEL_NO_": "105303011100", "Tax_Legal_": "CONTANT 74 SOUTHSIDE QTR", "Name": "RICHARDSON, M. & JACKSON, G. &", "Address": "P.O.BOX 4378", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.53766674000001, "SHAPE_Area": 218.11240122699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356803.120999999344349, 256686.815600000321865 ], [ 356848.815200001001358, 256690.165899999439716 ], [ 356803.414399996399879, 256677.290500000119209 ], [ 356803.120999999344349, 256686.815600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301102100", "MAP": "D9-4482-T88", "PARCEL_NAM": "218", "ACRE": "1.002", "LONGITUDE": -64.94763435, "LATITUDE": 18.34151447, "OBJECTID_1": 9392, "PARCEL_NO_": "105301102100", "Tax_Legal_": "ALTONA & WELGNUST 217&218 SOUTHSIDE QTR.", "Name": "CHURCH OF GOD OF PROPHECY FOR THE VI INC", "Address": "PO Box 304363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 340300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.37136445499999, "SHAPE_Area": 4164.00538177 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357062.902099996805191, 256832.749200001358986 ], [ 357021.418999999761581, 256831.768300000578165 ], [ 357009.426899999380112, 256940.762499999254942 ], [ 357006.89469999819994, 256954.040699999779463 ], [ 357044.256599999964237, 256922.4712999984622 ], [ 357049.153800003230572, 256915.545299999415874 ], [ 357052.447400003671646, 256907.550700001418591 ], [ 357054.101400002837181, 256902.709100000560284 ], [ 357062.700400002300739, 256839.873599998652935 ], [ 357062.902099996805191, 256832.749200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301102100", "MAP": "D9-4482-T88", "PARCEL_NAM": "217", "ACRE": ".502", "LONGITUDE": -64.94749657, "LATITUDE": 18.34060975, "OBJECTID_1": 9392, "PARCEL_NO_": "105301102100", "Tax_Legal_": "ALTONA & WELGNUST 217&218 SOUTHSIDE QTR.", "Name": "CHURCH OF GOD OF PROPHECY FOR THE VI INC", "Address": "PO Box 304363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 340300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.23944170700003, "SHAPE_Area": 2834.13391082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357066.858900003135204, 256730.350099999457598 ], [ 357041.88120000064373, 256728.034699998795986 ], [ 357034.833700001239777, 256798.060100000351667 ], [ 357032.0016999989748, 256832.018500000238419 ], [ 357062.902099996805191, 256832.749200001358986 ], [ 357063.853699997067451, 256799.142000000923872 ], [ 357064.89019999653101, 256772.130499999970198 ], [ 357063.444799996912479, 256752.486999999731779 ], [ 357064.339199997484684, 256742.150699999183416 ], [ 357066.858900003135204, 256730.350099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105301102200", "MAP": "D9-4482-T88", "PARCEL_NAM": "28", "ACRE": "1.232", "LONGITUDE": -64.9487015, "LATITUDE": 18.34067446, "OBJECTID_1": 9393, "PARCEL_NO_": "105301102200", "Tax_Legal_": "LOWER JOHN DUNKOE 28&29 LT.NORTHSIDE QTR.", "Name": "CH. AMALIE CONG OF JEHOVAH WIT.", "Address": "P.O. BOX 2492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 188400, "Improved_V": 6060100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.90063861099998, "SHAPE_Area": 4292.88300325 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356882.476599998772144, 256776.525699999183416 ], [ 356878.753300003707409, 256794.924699999392033 ], [ 356895.124399997293949, 256814.596799999475479 ], [ 356906.732600003480911, 256815.578999999910593 ], [ 356954.256700001657009, 256822.625500001013279 ], [ 356958.769900001585484, 256822.905699998140335 ], [ 356960.278499998152256, 256768.719000000506639 ], [ 356967.903499998152256, 256761.823499999940395 ], [ 356941.858599998056889, 256761.926100000739098 ], [ 356882.437799997627735, 256762.15989999845624 ], [ 356882.476599998772144, 256776.525699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105301101900", "MAP": "D9-1727-T81", "PARCEL_NAM": "26", "ACRE": null, "LONGITUDE": -64.94803786, "LATITUDE": 18.34070083, "OBJECTID_1": 9390, "PARCEL_NO_": "105301101900", "Tax_Legal_": "LOWER JOHN DUNKOE 26 LT.NORTHSIDE", "Name": "SUNRISE COVE LTD.", "Address": "710 W New York Ave", "City": "Deland", "State": "Florida", "Zip": 32720, "Country": "United States", "Land_Value": 245000, "Improved_V": 713600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.59460504, "SHAPE_Area": 4101.26669958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356967.903499998152256, 256761.823499999940395 ], [ 356960.278499998152256, 256768.719000000506639 ], [ 356958.769900001585484, 256822.905699998140335 ], [ 356983.059000000357628, 256824.413400001823902 ], [ 357022.146099999547005, 256825.159800000488758 ], [ 357025.159699998795986, 256797.769799999892712 ], [ 357026.063100002706051, 256786.378199998289347 ], [ 357028.666599996387959, 256761.584399998188019 ], [ 356967.903499998152256, 256761.823499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105301102000", "MAP": "D9-4482-T86", "PARCEL_NAM": "30", "ACRE": null, "LONGITUDE": -64.94829356, "LATITUDE": 18.34152518, "OBJECTID_1": 9391, "PARCEL_NO_": "105301102000", "Tax_Legal_": "30 & 27 ROW LOWER JOHN DUNKO & 216 ROW ALTONA & WELGUNST 3B & 3C LITTLE NORTHSIDE QUARTER & KRONPRI", "Name": "CHURCH OF GOD OF PROHECY INC", "Address": "PO Box 304363", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 568400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 476.134027, "SHAPE_Area": 12145.3302695 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356908.463699996471405, 256822.476199999451637 ], [ 356895.257299996912479, 256820.49100000038743 ], [ 356893.092799998819828, 256835.929999999701977 ], [ 356904.296400003135204, 256837.541200000792742 ], [ 356913.707699999213219, 256871.571199998259544 ], [ 356913.559500001370907, 256916.878800000995398 ], [ 356926.840899996459484, 256920.594999998807907 ], [ 356997.830300003290176, 256969.771200001239777 ], [ 357003.619099996984005, 256959.924499999731779 ], [ 357006.8766999989748, 256956.151500001549721 ], [ 357006.89469999819994, 256954.040699999779463 ], [ 357009.426899999380112, 256940.762499999254942 ], [ 357021.418999999761581, 256831.768300000578165 ], [ 356957.558700002729893, 256828.647300001233816 ], [ 356908.463699996471405, 256822.476199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105301101700", "MAP": "A9-272-T78", "PARCEL_NAM": "23", "ACRE": "1.5", "LONGITUDE": -64.94928408, "LATITUDE": 18.3419023, "OBJECTID_1": 9389, "PARCEL_NO_": "105301101700", "Tax_Legal_": "LOWER JOHN DUNKOE 23,31&32 LT NORTHSIDE QTR", "Name": "F. K. ASSOCIATES", "Address": "69 Spring St", "City": "Ramsey", "State": "New Jersey", "Zip": 7446, "Country": "United States", "Land_Value": 754500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.608726934, "SHAPE_Area": 5510.1734448699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356793.260899998247623, 256928.85190000012517 ], [ 356914.176500000059605, 256962.706399999558926 ], [ 356923.280900001525879, 256932.432599999010563 ], [ 356926.840899996459484, 256920.594999998807907 ], [ 356806.364000000059605, 256886.885400000959635 ], [ 356802.546300001442432, 256898.961500000208616 ], [ 356793.260899998247623, 256928.85190000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105301101700", "MAP": "D9-5611-T93", "PARCEL_NAM": "31", "ACRE": "2.046", "LONGITUDE": -64.94839469, "LATITUDE": 18.34252148, "OBJECTID_1": 9389, "PARCEL_NO_": "105301101700", "Tax_Legal_": "LOWER JOHN DUNKOE 23,31&32 LT NORTHSIDE QTR", "Name": "F. K. ASSOCIATES", "Address": "69 Spring St", "City": "Ramsey", "State": "New Jersey", "Zip": 7446, "Country": "United States", "Land_Value": 754500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 388.95539640700002, "SHAPE_Area": 8210.5040468000007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356997.830300003290176, 256969.771200001239777 ], [ 356926.840899996459484, 256920.594999998807907 ], [ 356923.280900001525879, 256932.432599999010563 ], [ 356900.193400003015995, 257009.202599998563528 ], [ 356906.431800000369549, 257009.580400001257658 ], [ 356912.86429999768734, 257011.743999999016523 ], [ 356928.119499996304512, 257019.468199998140335 ], [ 356949.738899998366833, 257037.377000000327826 ], [ 356955.311200000345707, 257045.866399999707937 ], [ 356964.8125, 257066.420200001448393 ], [ 356968.016199998557568, 257068.979600001126528 ], [ 356973.656800001859665, 257069.447900000959635 ], [ 356982.554999999701977, 257066.143199998885393 ], [ 356989.070200003683567, 257058.597199998795986 ], [ 356990.74040000140667, 257051.855900000780821 ], [ 356992.914099998772144, 256986.012499999254942 ], [ 356997.073299996554852, 256971.058899998664856 ], [ 356997.830300003290176, 256969.771200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105301101700", "MAP": "D9-5611-T93", "PARCEL_NAM": "32", "ACRE": "1.994", "LONGITUDE": -64.94925116, "LATITUDE": 18.34122408, "OBJECTID_1": 9389, "PARCEL_NO_": "105301101700", "Tax_Legal_": "LOWER JOHN DUNKOE 23,31&32 LT NORTHSIDE QTR", "Name": "F. K. ASSOCIATES", "Address": "69 Spring St", "City": "Ramsey", "State": "New Jersey", "Zip": 7446, "Country": "United States", "Land_Value": 754500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 454.26523926599998, "SHAPE_Area": 9923.0339499300007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356913.559500001370907, 256916.878800000995398 ], [ 356913.707699999213219, 256871.571199998259544 ], [ 356904.296400003135204, 256837.541200000792742 ], [ 356893.092799998819828, 256835.929999999701977 ], [ 356895.257299996912479, 256820.49100000038743 ], [ 356908.463699996471405, 256822.476199999451637 ], [ 356906.732500001788139, 256815.578999999910593 ], [ 356895.124399997293949, 256814.596799999475479 ], [ 356878.753300003707409, 256794.924699999392033 ], [ 356882.476599998772144, 256776.525699999183416 ], [ 356841.286100000143051, 256774.485300000756979 ], [ 356832.375500001013279, 256805.057900000363588 ], [ 356819.120300002396107, 256846.53489999845624 ], [ 356806.364000000059605, 256886.885400000959635 ], [ 356913.559500001370907, 256916.878800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301101500", "MAP": "A9-617-T003", "PARCEL_NAM": "33", "ACRE": "5.426", "LONGITUDE": -64.95108425, "LATITUDE": 18.34404294, "OBJECTID_1": 9388, "PARCEL_NO_": "105301101500", "Tax_Legal_": "ROW 34 & 33,35 LOWER JOHN DUNKOE NO. 3B & 3C LITTLE NORTHSIDE QUARTER", "Name": "QUEEN CHARLOTTE HOTEL CORPORATION INC", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 323400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 749.90520618599999, "SHAPE_Area": 23011.908217100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356719.267300002276897, 257292.360700000077486 ], [ 356714.651199996471405, 257250.456199999898672 ], [ 356721.044299997389317, 257189.814699999988079 ], [ 356720.266800001263618, 257186.430799998342991 ], [ 356718.670400001108646, 257184.517900001257658 ], [ 356703.988799996674061, 257109.459499999880791 ], [ 356686.006399996578693, 257043.240100000053644 ], [ 356682.235600002110004, 257012.600600000470877 ], [ 356681.601999998092651, 256993.133099999278784 ], [ 356629.509900003671646, 256996.343499999493361 ], [ 356629.891800001263618, 257004.361800000071526 ], [ 356630.511100001633167, 257026.320599999278784 ], [ 356631.14299999922514, 257046.80180000141263 ], [ 356631.054899998009205, 257057.14469999819994 ], [ 356630.819300003349781, 257084.796000000089407 ], [ 356629.741499997675419, 257116.662300001829863 ], [ 356628.670900002121925, 257147.684300001710653 ], [ 356627.612800002098083, 257177.228700000792742 ], [ 356627.474299997091293, 257193.481800001114607 ], [ 356626.513400003314018, 257211.627999998629093 ], [ 356625.471500001847744, 257239.272700000554323 ], [ 356623.416199997067451, 257293.484900001436472 ], [ 356628.708999998867512, 257293.422800000756979 ], [ 356719.267300002276897, 257292.360700000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301100100", "MAP": "F9-173-T57", "PARCEL_NAM": "7", "ACRE": ".85", "LONGITUDE": -64.9498519, "LATITUDE": 18.34486794, "OBJECTID_1": 9376, "PARCEL_NO_": "105301100100", "Tax_Legal_": "LOWER JOHN DUNKOE 7 LITTLE NORTHSIDE QTR", "Name": "LA PLACE, EMANUEL and AGATHA", "Address": "PO Box 305089", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 112200, "Improved_V": 423100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.27425505599999, "SHAPE_Area": 2939.23716229 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356820.882100000977516, 257263.659000001847744 ], [ 356796.345100000500679, 257203.041600000113249 ], [ 356778.260600000619888, 257199.204799998551607 ], [ 356781.753300003707409, 257291.62779999896884 ], [ 356822.269500002264977, 257291.15260000154376 ], [ 356824.0033999979496, 257291.13230000063777 ], [ 356820.882100000977516, 257263.659000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301100600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94947698, "LATITUDE": 18.34415329, "OBJECTID_1": 9381, "PARCEL_NO_": "105301100600", "Tax_Legal_": "9 LOWER JOHN DUNKOE NO.3B&3C LITTLE NORTHSIDE QTR", "Name": "CARTY, MICHAEL A.", "Address": "PO Box 9257", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84900, "Improved_V": 412000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.07718594799999, "SHAPE_Area": 2811.0494409799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356866.384199999272823, 257152.776000000536442 ], [ 356836.731799997389317, 257145.587499998509884 ], [ 356824.313100002706051, 257143.450599998235703 ], [ 356824.090000003576279, 257143.183800000697374 ], [ 356797.746799997985363, 257196.842399999499321 ], [ 356808.054200001060963, 257198.970499999821186 ], [ 356817.746100001037121, 257197.149999998509884 ], [ 356837.128200002014637, 257193.720100000500679 ], [ 356848.416500002145767, 257193.8125 ], [ 356869.350100003182888, 257197.572399999946356 ], [ 356870.612199999392033, 257197.527699999511242 ], [ 356866.384199999272823, 257152.776000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301100700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94880374, "LATITUDE": 18.34422624, "OBJECTID_1": 9382, "PARCEL_NO_": "105301100700", "Tax_Legal_": "LOWER JOHN DUNKOE 12 LITTLE NORTHSIDE QTR", "Name": "THOMPSON, C & HUFF, III. W. J", "Address": "PO Box 8016", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 109300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.63109346100001, "SHAPE_Area": 2819.9993588399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356956.438500002026558, 257182.359999999403954 ], [ 356872.192100003361702, 257154.184000000357628 ], [ 356871.406000003218651, 257153.993400000035763 ], [ 356866.384199999272823, 257152.776000000536442 ], [ 356870.612199999392033, 257197.527699999511242 ], [ 356879.029399998486042, 257197.229400001466274 ], [ 356904.842200003564358, 257196.174100000411272 ], [ 356920.961300000548363, 257197.150400001555681 ], [ 356932.229900002479553, 257199.564699999988079 ], [ 356934.614699997007847, 257203.594999998807907 ], [ 356960.407700002193451, 257204.8614999987185 ], [ 356959.739799998700619, 257188.60190000012517 ], [ 356956.557700000703335, 257183.50959999859333 ], [ 356956.438500002026558, 257182.359999999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301100900", "MAP": "D9-848-T69", "PARCEL_NAM": "16", "ACRE": ".32", "LONGITUDE": -64.94937085, "LATITUDE": 18.34361231, "OBJECTID_1": 9383, "PARCEL_NO_": "105301100900", "Tax_Legal_": "LOWER JOHN DUNKOE 16&17 LITTLE NORTHSIDE QTR", "Name": "INNER CITY CHRISTIAN CENTER(ST", "Address": "PO Box 305214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 144800, "Improved_V": 31600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.600455458, "SHAPE_Area": 1714.69304476 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356833.436300002038479, 257144.960900001227856 ], [ 356836.731799997389317, 257145.587499998509884 ], [ 356866.384199999272823, 257152.776000000536442 ], [ 356848.499799996614456, 257044.293699998408556 ], [ 356833.436300002038479, 257144.960900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301101000", "MAP": "D9-848-T69", "PARCEL_NAM": "15", "ACRE": "1.0", "LONGITUDE": -64.94909166, "LATITUDE": 18.34333584, "OBJECTID_1": 9384, "PARCEL_NO_": "105301101000", "Tax_Legal_": "LOWER JOHN DUNKOE 15 LITTLE NORTHSIDE QTR", "Name": "INNER CITY CHRISTIAN CENTER(ST", "Address": "PO Box 305214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 245000, "Improved_V": 1763800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.80483607100001, "SHAPE_Area": 5487.6756198499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356892.357799999415874, 257160.928300000727177 ], [ 356893.069300003349781, 257153.787399999797344 ], [ 356898.853200003504753, 257095.74040000140667 ], [ 356906.472000002861023, 257019.278499998152256 ], [ 356903.937399998307228, 257018.425900001078844 ], [ 356895.87780000269413, 257017.937800001353025 ], [ 356892.64360000193119, 257018.96680000051856 ], [ 356885.366999998688698, 257021.229299999773502 ], [ 356851.314900003373623, 257042.90430000051856 ], [ 356848.499799996614456, 257044.293699998408556 ], [ 356866.384199999272823, 257152.776000000536442 ], [ 356871.406000003218651, 257153.993400000035763 ], [ 356872.192100003361702, 257154.184000000357628 ], [ 356892.357799999415874, 257160.928300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301100900", "MAP": "D9-848-T69", "PARCEL_NAM": "17", "ACRE": ".50", "LONGITUDE": -64.94880314, "LATITUDE": 18.34321303, "OBJECTID_1": 9383, "PARCEL_NO_": "105301100900", "Tax_Legal_": "LOWER JOHN DUNKOE 16&17 LITTLE NORTHSIDE QTR", "Name": "INNER CITY CHRISTIAN CENTER(ST", "Address": "PO Box 305214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 144800, "Improved_V": 31600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.194640435, "SHAPE_Area": 1799.4856695399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356910.599600002169609, 257099.074799999594688 ], [ 356930.223399996757507, 257032.535000000149012 ], [ 356927.225100003182888, 257029.804499998688698 ], [ 356913.586099997162819, 257021.671300001442432 ], [ 356906.472000002861023, 257019.278499998152256 ], [ 356898.853200003504753, 257095.74040000140667 ], [ 356893.069300003349781, 257153.787399999797344 ], [ 356892.357799999415874, 257160.928300000727177 ], [ 356894.385399997234344, 257154.053199999034405 ], [ 356902.653200000524521, 257126.019000001251698 ], [ 356909.58330000191927, 257102.520500000566244 ], [ 356909.699199996888638, 257099.321899998933077 ], [ 356910.599600002169609, 257099.074799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301101200", "MAP": "D9-848-T69", "PARCEL_NAM": "21", "ACRE": ".64", "LONGITUDE": -64.94848459000001, "LATITUDE": 18.34370197, "OBJECTID_1": 9386, "PARCEL_NO_": "105301101200", "Tax_Legal_": "LOWER JOHN DUNKOE 21 LITTLE NORTHSIDE", "Name": "JAMES, CARMEN E", "Address": "PO Box 11785", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73900, "Improved_V": 15700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.868516199, "SHAPE_Area": 2508.9361550100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356962.971799999475479, 257144.115600001066923 ], [ 356972.95719999819994, 257145.260999999940395 ], [ 356974.648999996483326, 257142.283300001174212 ], [ 356977.089599996805191, 257139.770199999213219 ], [ 356978.75789999961853, 257133.239900000393391 ], [ 356979.614600002765656, 257127.336300000548363 ], [ 356976.463100001215935, 257118.655699998140335 ], [ 356970.921899996697903, 257102.251400001347065 ], [ 356909.251000002026558, 257111.699999999254942 ], [ 356906.763800002634525, 257112.0810999982059 ], [ 356902.653200000524521, 257126.019000001251698 ], [ 356899.464500002563, 257136.8310999982059 ], [ 356904.487099997699261, 257137.407200001180172 ], [ 356908.296599999070168, 257137.844200000166893 ], [ 356962.971799999475479, 257144.115600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301101100", "MAP": "D9-848-T69", "PARCEL_NAM": "22", "ACRE": ".57", "LONGITUDE": -64.94858734, "LATITUDE": 18.34398951, "OBJECTID_1": 9385, "PARCEL_NO_": "105301101100", "Tax_Legal_": "LOWER JOHN DUNKOE 22 LITTLE NORTHSIDE", "Name": "ELIE, DANIEL E", "Address": "PO BOX 307801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 174800, "Improved_V": 374900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.33775544299999, "SHAPE_Area": 2201.35907481 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356972.95719999819994, 257145.260999999940395 ], [ 356962.971799999475479, 257144.115600001066923 ], [ 356908.296599999070168, 257137.844200000166893 ], [ 356904.487099997699261, 257137.407200001180172 ], [ 356899.464500002563, 257136.8310999982059 ], [ 356894.385399997234344, 257154.053199999034405 ], [ 356892.357799999415874, 257160.928300000727177 ], [ 356956.438500002026558, 257182.359999999403954 ], [ 356955.8125, 257176.326299998909235 ], [ 356957.468299999833107, 257171.273600000888109 ], [ 356965.651900000870228, 257157.197299998253584 ], [ 356968.918499998748302, 257152.368900001049042 ], [ 356972.95719999819994, 257145.260999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301101300", "MAP": "D9-848-T69", "PARCEL_NAM": "20", "ACRE": ".76", "LONGITUDE": -64.94853301000001, "LATITUDE": 18.34330279, "OBJECTID_1": 9387, "PARCEL_NO_": "105301101300", "Tax_Legal_": "LOWER JOHN DUNKOE 20 LITTLE NORTHSIDE", "Name": "INNER CITY CHRISTIAN CENTER", "Address": "PO Box 305214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.51713156299999, "SHAPE_Area": 2795.5087550500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356909.251000002026558, 257111.699999999254942 ], [ 356970.921899996697903, 257102.251400001347065 ], [ 356970.170800000429153, 257100.027899999171495 ], [ 356969.409400001168251, 257094.74439999833703 ], [ 356968.701999999582767, 257083.128400001674891 ], [ 356968.737999998033047, 257078.906899999827147 ], [ 356962.3091000020504, 257076.321100000292063 ], [ 356956.711599998176098, 257070.786899998784065 ], [ 356946.418399997055531, 257048.537799999117851 ], [ 356942.428199999034405, 257043.649999998509884 ], [ 356930.223399996757507, 257032.535000000149012 ], [ 356910.599600002169609, 257099.074799999594688 ], [ 356909.58330000191927, 257102.520500000566244 ], [ 356906.763800002634525, 257112.0810999982059 ], [ 356909.251000002026558, 257111.699999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301100300", "MAP": "F9-276-T58", "PARCEL_NAM": "11", "ACRE": "1.16", "LONGITUDE": -64.94865043, "LATITUDE": 18.34481434, "OBJECTID_1": 9378, "PARCEL_NO_": "105301100300", "Tax_Legal_": "LOWER JOHN DUNKOE 11 LITTLE NORTHSIDE QTR", "Name": "MONTI, ANDREW S.", "Address": "388 Hinton Byp", "City": "Hinton", "State": "West Virginia", "Zip": 25951, "Country": "United States", "Land_Value": 143500, "Improved_V": 443000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 335.146674136, "SHAPE_Area": 7066.6832511599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356940.900700002908707, 257203.903599999845028 ], [ 356934.614699997007847, 257203.594999998807907 ], [ 356916.07490000128746, 257202.809900000691414 ], [ 356904.790100000798702, 257202.295400001108646 ], [ 356884.785599999129772, 257202.946100000292063 ], [ 356883.777400001883507, 257252.905600000172853 ], [ 356883.695799998939037, 257256.951200000941753 ], [ 356883.020000003278255, 257290.440099999308586 ], [ 356893.036300003528595, 257290.322599999606609 ], [ 356940.331500001251698, 257289.767900001257658 ], [ 356952.650799997150898, 257289.10530000180006 ], [ 356970.987499997019768, 257288.118999999016523 ], [ 356960.407700002193451, 257204.8614999987185 ], [ 356940.900700002908707, 257203.903599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071800", "MAP": "A9-504-T98", "PARCEL_NAM": "194 REM", "ACRE": null, "LONGITUDE": -64.94685709, "LATITUDE": 18.3381575, "OBJECTID_1": 10940, "PARCEL_NO_": "105303071800", "Tax_Legal_": "ALTONA 193, 194, 201 & 203 KRONP. QTR.", "Name": "BANCO POPULAR DE PUERTO RICO", "Address": "66 Boetzberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 570000, "Improved_V": 8285800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.85212206899999, "SHAPE_Area": 1731.0114468 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357167.899999998509884, 256512.27309999987483 ], [ 357168.763899996876717, 256505.525100000202656 ], [ 357152.626800000667572, 256506.659600000828505 ], [ 357146.181699998676777, 256505.973600000143051 ], [ 357104.20269999653101, 256493.684999998658895 ], [ 357095.331000000238419, 256490.012800000607967 ], [ 357094.665799997746944, 256495.208399999886751 ], [ 357092.070699997246265, 256515.874299999326468 ], [ 357089.682700000703335, 256529.718899998813868 ], [ 357112.917900003492832, 256529.765999998897314 ], [ 357167.899999998509884, 256512.27309999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071400", "MAP": "A9-39-T39", "PARCEL_NAM": "1", "ACRE": "7,314 sq ft", "LONGITUDE": -64.94751098, "LATITUDE": 18.33808017, "OBJECTID_1": 10937, "PARCEL_NO_": "105303071400", "Tax_Legal_": "CONTANT 1 CROWN PRINCE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.34392852, "SHAPE_Area": 772.53213764999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357059.914700001478195, 256477.476199999451637 ], [ 357057.6891999989748, 256477.2162000015378 ], [ 357045.642599999904633, 256475.808699999004602 ], [ 357041.911499999463558, 256529.607099998742342 ], [ 357044.37780000269413, 256529.627199999988079 ], [ 357056.682599999010563, 256529.652100000530481 ], [ 357059.914700001478195, 256477.476199999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301100200", "MAP": "F9-31-T56", "PARCEL_NAM": "10", "ACRE": ".39", "LONGITUDE": -64.94932974, "LATITUDE": 18.34508898, "OBJECTID_1": 9377, "PARCEL_NO_": "105301100200", "Tax_Legal_": "LOWER JOHN DUNKOE 1O LITTLE NORTHSIDE QTR", "Name": "RONALD H. & MARY P. SMITH REVOC TR", "Address": "9005 Havensight Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.76171763299999, "SHAPE_Area": 1608.2923311100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356883.533100001513958, 257265.014800000935793 ], [ 356820.885799996554852, 257263.668200001120567 ], [ 356820.882700003683567, 257263.664799999445677 ], [ 356824.0033999979496, 257291.13230000063777 ], [ 356830.427599996328354, 257291.05689999833703 ], [ 356883.020000003278255, 257290.440099999308586 ], [ 356883.533100001513958, 257265.014800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301100500", "MAP": "G9-437-T56", "PARCEL_NAM": "8", "ACRE": ".87", "LONGITUDE": -64.9496296, "LATITUDE": 18.34496689, "OBJECTID_1": 9380, "PARCEL_NO_": "105301100500", "Tax_Legal_": "LOWER JOHN DUNKOE 8 LITTLE NORTHSIDE QTR", "Name": "RONALD H. & MARY P. SMITH REVOC TR", "Address": "9005 Havensight Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109100, "Improved_V": 325000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.02034817917, "SHAPE_Area": 7.96997e-06 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356820.885799996554852, 257263.668200001120567 ], [ 356820.882100000977516, 257263.659000001847744 ], [ 356820.882700003683567, 257263.664799999445677 ], [ 356820.885799996554852, 257263.668200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301100500", "MAP": "G9-437-T56", "PARCEL_NAM": "8", "ACRE": ".87", "LONGITUDE": -64.94935038, "LATITUDE": 18.3446815, "OBJECTID_1": 9380, "PARCEL_NO_": "105301100500", "Tax_Legal_": "LOWER JOHN DUNKOE 8 LITTLE NORTHSIDE QTR", "Name": "RONALD H. & MARY P. SMITH REVOC TR", "Address": "9005 Havensight Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109100, "Improved_V": 325000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.05032124500002, "SHAPE_Area": 4187.28060181 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356820.882100000977516, 257263.659000001847744 ], [ 356820.885799996554852, 257263.668200001120567 ], [ 356883.533100001513958, 257265.014800000935793 ], [ 356883.695799998939037, 257256.951200000941753 ], [ 356883.777400001883507, 257252.905600000172853 ], [ 356884.785599999129772, 257202.946100000292063 ], [ 356868.493400000035763, 257203.475999999791384 ], [ 356852.388800002634525, 257200.811099998652935 ], [ 356842.725599996745586, 257199.254299998283386 ], [ 356835.467000000178814, 257199.405999999493361 ], [ 356825.776900000870228, 257201.015399999916553 ], [ 356818.844700001180172, 257202.995299998670816 ], [ 356814.142399996519089, 257204.338300000876188 ], [ 356817.759800001978874, 257236.177400000393391 ], [ 356820.882100000977516, 257263.659000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301100400", "MAP": "G9-437-T56", "PARCEL_NAM": "7A", "ACRE": ".13", "LONGITUDE": -64.94973131, "LATITUDE": 18.34460642, "OBJECTID_1": 9379, "PARCEL_NO_": "105301100400", "Tax_Legal_": "LOWER JOHN DUNKOE 7A LITTLE NORTHSIDE QTR", "Name": "RONALD H. & MARY P. SMITH REVOC TR", "Address": "9005 Havensight Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.94202298499999, "SHAPE_Area": 523.504821494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356796.345100000500679, 257203.041600000113249 ], [ 356820.882100000977516, 257263.659000001847744 ], [ 356817.759800001978874, 257236.177400000393391 ], [ 356814.142399996519089, 257204.338300000876188 ], [ 356796.345100000500679, 257203.041600000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301093200", "MAP": "D9-2273-T83", "PARCEL_NAM": "94-4", "ACRE": null, "LONGITUDE": -64.94290737, "LATITUDE": 18.34730136, "OBJECTID_1": 9313, "PARCEL_NO_": "105301093200", "Tax_Legal_": "94-4 SOLBERG NO.1 LT NORTHSIDE QTR", "Name": "BOSHCULTE, LAWRENCE T.", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 165900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 387.07221323800002, "SHAPE_Area": 5418.7273371800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357559.342500001192093, 257557.438900001347065 ], [ 357548.664599999785423, 257452.530299998819828 ], [ 357513.876400001347065, 257453.6266999989748 ], [ 357509.951200000941753, 257453.194600000977516 ], [ 357515.051700003445148, 257457.019999999552965 ], [ 357518.010799996554852, 257459.23930000141263 ], [ 357526.666599996387959, 257467.153200000524521 ], [ 357530.376199997961521, 257474.572399999946356 ], [ 357525.681599996984005, 257487.709300000220537 ], [ 357519.98929999768734, 257497.077500000596046 ], [ 357516.774300001561642, 257500.045200001448393 ], [ 357510.344200000166893, 257506.47520000115037 ], [ 357507.871200002729893, 257509.442999999970198 ], [ 357509.096600003540516, 257514.636199999600649 ], [ 357510.096900001168251, 257532.442699998617172 ], [ 357506.387299999594688, 257541.098499998450279 ], [ 357502.677699998021126, 257553.711199998855591 ], [ 357496.742299996316433, 257565.581999998539686 ], [ 357489.322999998927116, 257580.173200000077486 ], [ 357489.322999998927116, 257587.592500001192093 ], [ 357490.064900003373623, 257591.054800000041723 ], [ 357488.722800001502037, 257594.575399998575449 ], [ 357491.054200001060963, 257594.517099998891354 ], [ 357507.623800002038479, 257588.087099999189377 ], [ 357522.21509999781847, 257581.904399998486042 ], [ 357535.569700002670288, 257573.495900001376867 ], [ 357559.342500001192093, 257557.438900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301090100", "MAP": "G3-61-T51", "PARCEL_NAM": "12", "ACRE": ".18", "LONGITUDE": -64.94257063000001, "LATITUDE": 18.34789561, "OBJECTID_1": 9290, "PARCEL_NO_": "105301090100", "Tax_Legal_": "SOLBERG ESTATE 12 LITTLE NORTHSIDE QTR", "Name": "OSORIO, URSULA", "Address": "30326 Colthurst St", "City": "Wesley Chapel", "State": "Florida", "Zip": 33545, "Country": "United States", "Land_Value": 25500, "Improved_V": 166500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.246434451, "SHAPE_Area": 829.50058900299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357578.7449000030756, 257599.612199999392033 ], [ 357570.879199996590614, 257567.464600000530481 ], [ 357547.014799997210503, 257593.586399998515844 ], [ 357562.1554000005126, 257618.172499999403954 ], [ 357574.6858000010252, 257604.000799998641014 ], [ 357578.7449000030756, 257599.612199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301091500", "MAP": "F9-4001-T72", "PARCEL_NAM": "88", "ACRE": ".502", "LONGITUDE": -64.94458085, "LATITUDE": 18.34743986, "OBJECTID_1": 9303, "PARCEL_NO_": "105301091500", "Tax_Legal_": "88 SOLBERG LITTLE NORTHSIDE QUARTER", "Name": "GREAUX, MICHAEL J.A., & MARIE F.A.", "Address": "PO Box 303204", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 110200, "Improved_V": 368300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.15394592199999, "SHAPE_Area": 2148.0377695100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357318.422600001096725, 257525.443900000303984 ], [ 357317.947899997234344, 257557.82149999961257 ], [ 357324.305600002408028, 257556.988600000739098 ], [ 357333.185900002717972, 257555.794700000435114 ], [ 357377.502499997615814, 257559.745999999344349 ], [ 357394.630999997258186, 257536.877000000327826 ], [ 357386.607500001788139, 257532.167300000786781 ], [ 357369.714500002563, 257527.385000001639128 ], [ 357348.771899998188019, 257524.680500000715256 ], [ 357329.41499999910593, 257525.155299998819828 ], [ 357318.422600001096725, 257525.443900000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301092100", "MAP": "F9-3764-T79", "PARCEL_NAM": "91-B-1", "ACRE": ".23", "LONGITUDE": -64.94508688000001, "LATITUDE": 18.34714231, "OBJECTID_1": 9308, "PARCEL_NO_": "105301092100", "Tax_Legal_": "91-B-1 SOLBERG NO.1 LITTLE NORTHSIDE QTR.", "Name": "HALL, JR., SAMUEL H. & DIANA C.", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50500, "Improved_V": 610800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.05752021799999, "SHAPE_Area": 873.95319166199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357314.349600002169609, 257495.650800000876188 ], [ 357277.319799996912479, 257498.356300000101328 ], [ 357277.080399997532368, 257498.255800001323223 ], [ 357281.887500002980232, 257519.489000000059605 ], [ 357299.624600000679493, 257519.845199998468161 ], [ 357321.404100000858307, 257518.967999998480082 ], [ 357314.349600002169609, 257495.650800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501014500", "MAP": "B9-383-T73", "PARCEL_NAM": "3AB", "ACRE": null, "LONGITUDE": -64.91447543, "LATITUDE": 18.34726356, "OBJECTID_1": 19698, "PARCEL_NO_": "105501014500", "Tax_Legal_": "3AB JOSEPH & ROSENDAHL GREAT NORTHSIDE QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.33120487799999, "SHAPE_Area": 1008.41301859 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360514.394900001585484, 257529.377300001680851 ], [ 360533.488600000739098, 257576.288199998438358 ], [ 360540.80120000243187, 257569.804099999368191 ], [ 360549.70830000191927, 257565.444099999964237 ], [ 360542.763999998569489, 257526.024000000208616 ], [ 360525.730099998414516, 257530.393399998545647 ], [ 360514.394900001585484, 257529.377300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501015100", "MAP": "D9-1823-T81", "PARCEL_NAM": "2A-4", "ACRE": "0.432", "LONGITUDE": -64.91479951, "LATITUDE": 18.34758182, "OBJECTID_1": 19703, "PARCEL_NO_": "105501015100", "Tax_Legal_": "2A-4 & 3-AC ST JOSEPH & ROSENDAL GT. NORTHSIDE", "Name": "ELGADI, JARRAH", "Address": "46B Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022603, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.45188235200001, "SHAPE_Area": 2063.3303517300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360467.918999999761581, 257583.480700001120567 ], [ 360500.073700003325939, 257617.811200000345707 ], [ 360502.152300000190735, 257615.203899998217821 ], [ 360513.115000002086163, 257601.452599998563528 ], [ 360523.708499997854233, 257588.451499998569489 ], [ 360519.561899997293949, 257553.529199998825788 ], [ 360491.231200002133846, 257561.299400001764297 ], [ 360467.918999999761581, 257583.480700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501020500", "MAP": "A9-657-T005", "PARCEL_NAM": "REM 60", "ACRE": "39.3", "LONGITUDE": -64.91500742, "LATITUDE": 18.34682105, "OBJECTID_1": 19714, "PARCEL_NO_": "105501020500", "Tax_Legal_": "REM ESTATE THOMAS NO 6A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3549900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2775.1587910799999, "SHAPE_Area": 171045.93851800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360598.260999999940395, 257521.241799999028444 ], [ 360597.22860000282526, 257501.36769999936223 ], [ 360636.254699997603893, 257496.0760000012815 ], [ 360707.030900001525879, 257491.445799998939037 ], [ 360707.030900001525879, 257515.941899999976158 ], [ 360725.619400002062321, 257514.950500000268221 ], [ 360738.450199998915195, 257514.266199998557568 ], [ 360758.180500000715256, 257511.209300000220537 ], [ 360778.569700002670288, 257508.050500001758337 ], [ 360785.413800001144409, 257506.990100000053644 ], [ 360866.444399997591972, 257497.398699998855591 ], [ 360913.7871999964118, 257491.794900000095367 ], [ 360947.471400000154972, 257487.807799998670816 ], [ 360949.112899996340275, 257487.528000000864267 ], [ 361005.679899998009205, 257477.885899998247623 ], [ 361006.3429000005126, 257478.416299998760223 ], [ 361006.107500001788139, 257471.44310000166297 ], [ 361006.973099999129772, 257464.484099999070168 ], [ 361012.102300003170967, 257430.328999999910593 ], [ 360996.578500002622604, 257431.915899999439716 ], [ 360993.762500002980232, 257398.123700000345707 ], [ 361018.916000001132488, 257387.74379999935627 ], [ 361027.401500001549721, 257338.206300001591444 ], [ 361033.69709999859333, 257298.918400000780821 ], [ 360954.188699997961521, 257309.638599999248981 ], [ 360933.686899997293949, 257340.391399998217821 ], [ 360745.753700003027916, 257385.950899999588728 ], [ 360722.973899997770786, 257355.19819999858737 ], [ 360621.603799998760223, 257363.171100001782179 ], [ 360547.569499999284744, 257406.4527000002563 ], [ 360490.620099999010563, 257360.893199998885393 ], [ 360466.701300002634525, 257349.503299999982119 ], [ 360453.033399999141693, 257344.947299998253584 ], [ 360437.087600000202656, 257344.947299998253584 ], [ 360425.697700001299381, 257347.225299999117851 ], [ 360410.890799999237061, 257356.337200000882149 ], [ 360135.255400002002716, 257551.104400001466274 ], [ 359995.159699998795986, 257508.961800001561642 ], [ 359963.568000003695488, 257531.307100001722574 ], [ 360029.142300002276897, 257619.234200000762939 ], [ 360069.724799998104572, 257682.894400000572205 ], [ 360079.254900000989437, 257700.070999998599291 ], [ 360082.40820000320673, 257708.540500000119209 ], [ 360089.481600001454353, 257730.129999998956919 ], [ 360108.951700001955032, 257788.186700001358986 ], [ 360124.363399997353554, 257781.612500000745058 ], [ 360136.531400002539158, 257776.422100000083447 ], [ 360129.554099999368191, 257759.112700000405312 ], [ 360156.292000003159046, 257739.845400001853704 ], [ 360192.849600002169609, 257712.188700001686811 ], [ 360219.60360000282526, 257695.309099998325109 ], [ 360249.60080000013113, 257676.345100000500679 ], [ 360279.597999997437, 257657.381099998950958 ], [ 360303.920400001108646, 257641.959199998527765 ], [ 360332.297799997031689, 257623.826299998909235 ], [ 360363.916599996387959, 257603.820099998265505 ], [ 360393.103900000452995, 257585.271699998527765 ], [ 360415.804700002074242, 257570.892000000923872 ], [ 360449.856899999082088, 257549.217000000178814 ], [ 360477.26969999819994, 257528.9695999994874 ], [ 360500.814900003373623, 257528.160000000149012 ], [ 360525.730099998414516, 257530.393399998545647 ], [ 360542.763999998569489, 257526.024000000208616 ], [ 360598.260999999940395, 257521.241799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302023300", "MAP": null, "PARCEL_NAM": "8A", "ACRE": null, "LONGITUDE": -64.93675106000001, "LATITUDE": 18.34631039, "OBJECTID_1": 9622, "PARCEL_NO_": "105302023300", "Tax_Legal_": "AGNES FANCY 8A QUEENS QTR", "Name": "CHARLES, ADINA", "Address": "PO Box 9814", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4800, "Improved_V": 22000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.358656320199998, "SHAPE_Area": 155.11069017200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358179.70889999717474, 257432.739199999719858 ], [ 358187.252499997615814, 257424.671599999070168 ], [ 358189.268299996852875, 257422.515700001269579 ], [ 358181.63459999859333, 257413.920699998736382 ], [ 358172.549199998378754, 257424.865499999374151 ], [ 358177.714400000870228, 257430.562199998646975 ], [ 358179.70889999717474, 257432.739199999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302022100", "MAP": "D9-8761-T013", "PARCEL_NAM": "8 REM", "ACRE": ".17", "LONGITUDE": -64.93669514, "LATITUDE": 18.3462618, "OBJECTID_1": 9608, "PARCEL_NO_": "105302022100", "Tax_Legal_": "AGNES FANCY 8 QUEENS QTR", "Name": "DAVIS, AMY P.", "Address": "6103 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34200, "Improved_V": 23100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.53014199899999, "SHAPE_Area": 608.16131878700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358187.252499997615814, 257424.671599999070168 ], [ 358179.70889999717474, 257432.739199999719858 ], [ 358185.70380000025034, 257439.282499998807907 ], [ 358193.838799998164177, 257430.905299998819828 ], [ 358204.637599997222424, 257419.921500001102686 ], [ 358185.681800000369549, 257399.328099999576807 ], [ 358181.203699998557568, 257403.532200001180172 ], [ 358166.530299998819828, 257418.227299999445677 ], [ 358172.549199998378754, 257424.865499999374151 ], [ 358181.63459999859333, 257413.920699998736382 ], [ 358189.268299996852875, 257422.515700001269579 ], [ 358187.252499997615814, 257424.671599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105401514200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92522049, "LATITUDE": 18.34299828, "OBJECTID_1": 12290, "PARCEL_NO_": "105401514200", "Tax_Legal_": "PRINDSENS GADE 8AA-2 KINGS QTR.", "Name": "GOMEZ, RAUL R", "Address": "PO Box 6391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3200, "Improved_V": 50700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.709461084099999, "SHAPE_Area": 215.604562039 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359398.380699999630451, 257055.379700001329184 ], [ 359397.326700001955032, 257078.338199999183416 ], [ 359406.992499999701977, 257078.088199999183416 ], [ 359407.109099999070168, 257073.214999999850988 ], [ 359407.527699999511242, 257055.718100000172853 ], [ 359407.540100000798702, 257055.19819999858737 ], [ 359398.380699999630451, 257055.379700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105301090200", "MAP": "G9-233-T52", "PARCEL_NAM": "16", "ACRE": ".86", "LONGITUDE": -64.94156096, "LATITUDE": 18.34790671, "OBJECTID_1": 9291, "PARCEL_NO_": "105301090200", "Tax_Legal_": "SOLBERG 16 LITTLE NORTHSIDE QTR", "Name": "NEMAR LLLP", "Address": "PO Box 1338", "City": "Frederiksted", "State": "U.S.Virgin Islands", "Zip": 841, "Country": "United States", "Land_Value": 98900, "Improved_V": 506700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.30497403200002, "SHAPE_Area": 4646.4928366699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357700.173600003123283, 257576.661299999803305 ], [ 357635.791900001466274, 257550.55799999833107 ], [ 357634.7179000005126, 257561.640099998563528 ], [ 357632.920100003480911, 257583.368000000715256 ], [ 357632.07599999755621, 257587.794100001454353 ], [ 357629.622900001704693, 257591.784800000488758 ], [ 357623.937399998307228, 257596.593400001525879 ], [ 357617.465300001204014, 257599.073600001633167 ], [ 357613.485799998044968, 257599.431400001049042 ], [ 357630.95610000193119, 257604.348099999129772 ], [ 357676.362899996340275, 257626.745600000023842 ], [ 357682.180900000035763, 257629.615499999374151 ], [ 357703.253300003707409, 257647.588599998503923 ], [ 357707.698299996554852, 257645.260299999266863 ], [ 357708.703699998557568, 257580.119800001382828 ], [ 357700.173600003123283, 257576.661299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401290600", "MAP": "D9-6771-T000", "PARCEL_NAM": "16B & 17 COMMANDANT GADE", "ACRE": ".14", "LONGITUDE": -64.93080328000001, "LATITUDE": 18.34394745, "OBJECTID_1": 11899, "PARCEL_NO_": "105401290600", "Tax_Legal_": "16B COMMANDANT GADE KINGS QUARTER", "Name": "FAMILY RESOURCE CENTER, INC.", "Address": "2317 Commandant Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29700, "Improved_V": 376400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.607315099900006, "SHAPE_Area": 562.31349065200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358826.993299998342991, 257176.537599999457598 ], [ 358821.713600002229214, 257165.893899999558926 ], [ 358814.17339999973774, 257150.692800000309944 ], [ 358797.974200002849102, 257154.557100001722574 ], [ 358800.667400002479553, 257163.458999998867512 ], [ 358802.666199997067451, 257170.065799999982119 ], [ 358806.852300003170967, 257183.902199998497963 ], [ 358826.993299998342991, 257176.537599999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302130400", "MAP": "B9-157-T67", "PARCEL_NAM": "117", "ACRE": null, "LONGITUDE": -64.94046411, "LATITUDE": 18.34354772, "OBJECTID_1": 9875, "PARCEL_NO_": "105302130400", "Tax_Legal_": "117 & 118-1 ANNAS FANCY KRONPRINDSENS GADE", "Name": "FLORIAN, DAMIAN FELIX", "Address": "PO BOX 531", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33700, "Improved_V": 186800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.797219464500003, "SHAPE_Area": 437.68518744699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357800.52139999717474, 257126.322200000286102 ], [ 357800.06360000371933, 257102.885200001299381 ], [ 357795.062600001692772, 257102.768500000238419 ], [ 357783.784999996423721, 257101.409699998795986 ], [ 357779.552100002765656, 257125.017499998211861 ], [ 357795.671099998056889, 257125.99379999935627 ], [ 357800.52139999717474, 257126.322200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302130400", "MAP": "D9-8795-T013", "PARCEL_NAM": "118-1", "ACRE": ".002", "LONGITUDE": -64.94037302, "LATITUDE": 18.34353756, "OBJECTID_1": 9875, "PARCEL_NO_": "105302130400", "Tax_Legal_": "117 & 118-1 ANNAS FANCY KRONPRINDSENS GADE", "Name": "FLORIAN, DAMIAN FELIX", "Address": "PO BOX 531", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 33700, "Improved_V": 186800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 19.2489497989, "SHAPE_Area": 3.6094609753600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357800.389399997889996, 257119.565200001001358 ], [ 357800.992600001394749, 257110.334199998527765 ], [ 357800.209399998188019, 257110.352099999785423 ], [ 357800.389399997889996, 257119.565200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302130500", "MAP": "D9-8795-T013", "PARCEL_NAM": "118", "ACRE": ".12", "LONGITUDE": -64.94024957000001, "LATITUDE": 18.34359917, "OBJECTID_1": 9876, "PARCEL_NO_": "105302130500", "Tax_Legal_": "118 REM ANNA'S FANCY KRONPRINDSENS QTR", "Name": "RICHARDSON SR., & OTHERS, BINGLEY G.", "Address": "PO Box 304463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.72398476399999, "SHAPE_Area": 453.36935794099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357800.209399998188019, 257110.352099999785423 ], [ 357800.992600001394749, 257110.334199998527765 ], [ 357800.389399997889996, 257119.565200001001358 ], [ 357800.52139999717474, 257126.322200000286102 ], [ 357808.972099997103214, 257127.257100000977516 ], [ 357819.804799996316433, 257128.922400001436472 ], [ 357828.692199997603893, 257130.697000000625849 ], [ 357832.252599999308586, 257131.418800000101328 ], [ 357835.146499998867512, 257131.202100001275539 ], [ 357836.476099997758865, 257129.396000001579523 ], [ 357835.030299998819828, 257127.766199998557568 ], [ 357831.38740000128746, 257126.0 ], [ 357824.108000002801418, 257120.317899998277426 ], [ 357800.06360000371933, 257102.885200001299381 ], [ 357800.174999997019768, 257108.589400000870228 ], [ 357800.209399998188019, 257110.352099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105503013500", "MAP": "D9-8799-T013", "PARCEL_NAM": "6L,6L-1,THRU 6L-5", "ACRE": "1.891", "LONGITUDE": -64.91429377, "LATITUDE": 18.33813543, "OBJECTID_1": 19980, "PARCEL_NO_": "105503013500", "Tax_Legal_": "6L & 6L-1 THRU 6L-5 EST. THOMAS NEW QUARTER", "Name": "SUGAR ESTATE ASSOCIATES", "Address": "PO Box 8583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1028100, "Improved_V": 1871800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 371.44301003099997, "SHAPE_Area": 7765.4581451399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360580.56139999628067, 256499.462999999523163 ], [ 360576.528099998831749, 256499.641100000590086 ], [ 360543.377599999308586, 256510.135499998927116 ], [ 360512.635200001299381, 256521.916299998760223 ], [ 360477.848700001835823, 256535.141499999910593 ], [ 360501.066299997270107, 256554.752199999988079 ], [ 360517.075699999928474, 256568.604299999773502 ], [ 360528.317299999296665, 256574.18470000103116 ], [ 360541.202100001275539, 256576.190000001341105 ], [ 360572.678900003433228, 256572.859099999070168 ], [ 360611.419600002467632, 256568.743200000375509 ], [ 360616.448100000619888, 256546.408399999141693 ], [ 360618.125500001013279, 256538.822799999266863 ], [ 360623.23309999704361, 256507.200500000268221 ], [ 360624.111299999058247, 256498.763999998569489 ], [ 360580.56139999628067, 256499.462999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303301500", "MAP": "D9-8744-T013", "PARCEL_NAM": "5L", "ACRE": ".209", "LONGITUDE": -64.94408543, "LATITUDE": 18.33571371, "OBJECTID_1": 11264, "PARCEL_NO_": "105303301500", "Tax_Legal_": "5L HONDURAS KRONPRINDSENS QTR", "Name": "ADINA WILLIAMS FAMILY REVOCABLE TRUST", "Address": "3582 Honduras 5B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51700, "Improved_V": 134200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.72404794600001, "SHAPE_Area": 1026.6410765400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357442.015799999237061, 256234.123100001364946 ], [ 357396.3766999989748, 256233.384899999946356 ], [ 357391.746500000357628, 256242.83049999922514 ], [ 357384.583700001239777, 256255.245799999684095 ], [ 357407.167700000107288, 256254.586300000548363 ], [ 357415.086499996483326, 256254.033100001513958 ], [ 357432.68129999935627, 256253.477400001138449 ], [ 357439.516099996864796, 256253.081399999558926 ], [ 357439.44709999859333, 256251.684099998325109 ], [ 357441.959600001573563, 256240.727800000458956 ], [ 357442.015799999237061, 256234.123100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303301100", "MAP": "D9-8431-T010", "PARCEL_NAM": "5G", "ACRE": ".23", "LONGITUDE": -64.94411881000001, "LATITUDE": 18.33589187, "OBJECTID_1": 11260, "PARCEL_NO_": "105303301100", "Tax_Legal_": "HONDURAS 5G SOUTHSIDE QTR", "Name": "ADINA WILLIAMS FAMILY REVOCABLE TRUST", "Address": "3582 Honduras 5B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.04218516399999, "SHAPE_Area": 1010.8450594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357415.586999997496605, 256254.017299998551607 ], [ 357415.086499996483326, 256254.033100001513958 ], [ 357407.167700000107288, 256254.586300000548363 ], [ 357384.583700001239777, 256255.245799999684095 ], [ 357386.842600002884865, 256274.051600001752377 ], [ 357403.775200001895428, 256274.190200001001358 ], [ 357407.806699998676777, 256274.223200000822544 ], [ 357414.255400002002716, 256274.487100001424551 ], [ 357416.417900003492832, 256274.595400001853704 ], [ 357416.745999999344349, 256274.611800000071526 ], [ 357430.804499998688698, 256275.315999999642372 ], [ 357439.642099998891354, 256255.635200001299381 ], [ 357439.516099996864796, 256253.081399999558926 ], [ 357432.68129999935627, 256253.477400001138449 ], [ 357415.586999997496605, 256254.017299998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401431200", "MAP": "D9-8749-T013", "PARCEL_NAM": "28A-W", "ACRE": ".004", "LONGITUDE": -64.93267837, "LATITUDE": 18.34050952, "OBJECTID_1": 12111, "PARCEL_NO_": "105401431200", "Tax_Legal_": "25B-W,26A-W,27B-W & 28A-W DRONNINGENS GADE QUEEN'S QUARTER", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 510300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17.394516489400001, "SHAPE_Area": 16.2645137646 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358614.005900003015995, 256782.649999998509884 ], [ 358613.357299998402596, 256785.0760000012815 ], [ 358618.951499998569489, 256787.361000001430511 ], [ 358619.534299999475479, 256784.969700001180172 ], [ 358619.637599997222424, 256784.546000000089407 ], [ 358614.005900003015995, 256782.649999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401431200", "MAP": "D9-8749-T013", "PARCEL_NAM": "27B-W", "ACRE": ".004", "LONGITUDE": -64.93274848, "LATITUDE": 18.34049688, "OBJECTID_1": 12111, "PARCEL_NO_": "105401431200", "Tax_Legal_": "25B-W,26A-W,27B-W & 28A-W DRONNINGENS GADE QUEEN'S QUARTER", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 510300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.378719099600001, "SHAPE_Area": 31.938208072599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358613.357299998402596, 256785.0760000012815 ], [ 358614.005900003015995, 256782.649999998509884 ], [ 358612.973700001835823, 256782.339200001209974 ], [ 358606.275100000202656, 256780.587999999523163 ], [ 358605.854999996721745, 256782.179999999701977 ], [ 358604.902400001883507, 256785.789599999785423 ], [ 358613.357299998402596, 256785.0760000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401431200", "MAP": "D9-8749-T013", "PARCEL_NAM": "26A-W", "ACRE": ".008", "LONGITUDE": -64.93281359, "LATITUDE": 18.34050069, "OBJECTID_1": 12111, "PARCEL_NO_": "105401431200", "Tax_Legal_": "25B-W,26A-W,27B-W & 28A-W DRONNINGENS GADE QUEEN'S QUARTER", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 510300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 26.073110197599998, "SHAPE_Area": 39.892842287999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358604.89130000025034, 256780.282400000840425 ], [ 358603.438113976619206, 256780.376127143739723 ], [ 358602.020663723989855, 256780.709847352729412 ], [ 358600.678302796499338, 256781.274295345763676 ], [ 358599.448299996554852, 256782.053800001740456 ], [ 358598.620800003409386, 256785.1570999994874 ], [ 358598.248000003397465, 256786.55519999936223 ], [ 358603.313299998641014, 256787.8581000007689 ], [ 358603.329499997198582, 256785.877700001001358 ], [ 358604.902400001883507, 256785.789599999785423 ], [ 358605.854999996721745, 256782.179999999701977 ], [ 358606.275100000202656, 256780.587999999523163 ], [ 358604.89130000025034, 256780.282400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302471800", "MAP": null, "PARCEL_NAM": "26", "ACRE": ".04", "LONGITUDE": -64.9330487, "LATITUDE": 18.34140406, "OBJECTID_1": 10832, "PARCEL_NO_": "105302471800", "Tax_Legal_": "QUEENS STREET 26 QUEENS QUARTER", "Name": "KALEEL, ABDEL K. M", "Address": "PO Box 302116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 488900, "Improved_V": 257700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.970206061599995, "SHAPE_Area": 200.85086715599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358575.710500001907349, 256870.835999999195337 ], [ 358575.703199997544289, 256870.834300000220537 ], [ 358569.497800000011921, 256894.033100001513958 ], [ 358575.933799996972084, 256895.758600000292063 ], [ 358577.854800000786781, 256896.273600000888109 ], [ 358583.491200000047684, 256872.624099999666214 ], [ 358582.059900000691414, 256872.339400000870228 ], [ 358575.710500001907349, 256870.835999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401430100", "MAP": null, "PARCEL_NAM": "27", "ACRE": ".04", "LONGITUDE": -64.93297408, "LATITUDE": 18.34140515, "OBJECTID_1": 12101, "PARCEL_NO_": "105401430100", "Tax_Legal_": "DRONNINGENS GADE 27 QUEENS QUARTER", "Name": "QUIMICA BRONEX-VI, LLC", "Address": "5142 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 434000, "Improved_V": 273800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.413824397400006, "SHAPE_Area": 199.5672241 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358584.402300000190735, 256868.801199998706579 ], [ 358577.854800000786781, 256896.273600000888109 ], [ 358582.369999997317791, 256897.484099999070168 ], [ 358584.827500000596046, 256898.14299999922514 ], [ 358590.878499999642372, 256873.274099998176098 ], [ 358588.47919999808073, 256872.751499999314547 ], [ 358589.245800003409386, 256869.921999998390675 ], [ 358584.402300000190735, 256868.801199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401430200", "MAP": null, "PARCEL_NAM": "28", "ACRE": ".04", "LONGITUDE": -64.93291345, "LATITUDE": 18.34141657, "OBJECTID_1": 12102, "PARCEL_NO_": "105401430200", "Tax_Legal_": "DRONNINGENS GADE 28 QUEENS QUARTER", "Name": "QUEEN'S QUARTER REAL ESTATELLC", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 438500, "Improved_V": 246900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.1426275858, "SHAPE_Area": 149.124776467 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358590.878499999642372, 256873.274099998176098 ], [ 358584.827500000596046, 256898.14299999922514 ], [ 358589.679099999368191, 256899.44370000064373 ], [ 358595.273800000548363, 256879.014800000935793 ], [ 358597.313900001347065, 256871.437899999320507 ], [ 358594.042099997401237, 256870.511799998581409 ], [ 358593.534000001847744, 256873.852600000798702 ], [ 358590.878499999642372, 256873.274099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401430900", "MAP": "B9-347-T72", "PARCEL_NAM": "28A", "ACRE": ".15", "LONGITUDE": -64.93278248, "LATITUDE": 18.34090762, "OBJECTID_1": 12108, "PARCEL_NO_": "105401430900", "Tax_Legal_": "DRONNINGENS GADE 28A QUEENS QTR", "Name": "SBP ROYAL DANE MALL LLC", "Address": "5600 Royal Dane Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026410, "Country": "United States", "Land_Value": 835400, "Improved_V": 372300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.386332079, "SHAPE_Area": 567.46264847400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358618.951499998569489, 256787.361000001430511 ], [ 358613.357299998402596, 256785.0760000012815 ], [ 358613.292199999094009, 256785.319400001317263 ], [ 358602.028300002217293, 256827.449700001627207 ], [ 358590.878499999642372, 256873.274099998176098 ], [ 358593.534000001847744, 256873.852600000798702 ], [ 358594.042099997401237, 256870.511799998581409 ], [ 358597.313900001347065, 256871.437899999320507 ], [ 358609.4070999994874, 256826.524500001221895 ], [ 358618.951499998569489, 256787.361000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401430800", "MAP": "B9-347-T72", "PARCEL_NAM": "27B", "ACRE": ".12", "LONGITUDE": -64.93284656, "LATITUDE": 18.34089316, "OBJECTID_1": 12107, "PARCEL_NO_": "105401430800", "Tax_Legal_": "DRONNINGENS GADE 27B QUEENS QTR", "Name": "SBP ROYAL DANE MALL LLC", "Address": "5600 Royal Dane Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026410, "Country": "United States", "Land_Value": 648800, "Improved_V": 161800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.37787548899999, "SHAPE_Area": 672.23382498900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358613.292199999094009, 256785.319400001317263 ], [ 358613.357299998402596, 256785.0760000012815 ], [ 358604.902400001883507, 256785.789599999785423 ], [ 358597.518700003623962, 256813.766100000590086 ], [ 358584.402300000190735, 256868.801199998706579 ], [ 358589.245800003409386, 256869.921999998390675 ], [ 358588.47919999808073, 256872.751499999314547 ], [ 358590.878499999642372, 256873.274099998176098 ], [ 358602.028300002217293, 256827.449700001627207 ], [ 358613.292199999094009, 256785.319400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401430700", "MAP": "B9-347-T72", "PARCEL_NAM": "26A", "ACRE": ".15", "LONGITUDE": -64.93292709000001, "LATITUDE": 18.34093025, "OBJECTID_1": 12106, "PARCEL_NO_": "105401430700", "Tax_Legal_": "DRONNINGENS GADE 26A QUEENS QTR", "Name": "SBP ROYAL DANE MALL LLC", "Address": "5600 Royal Dane Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026410, "Country": "United States", "Land_Value": 848900, "Improved_V": 1000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.46230222299999, "SHAPE_Area": 603.50765808000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358597.518700003623962, 256813.766100000590086 ], [ 358604.902400001883507, 256785.789599999785423 ], [ 358603.329499997198582, 256785.877700001001358 ], [ 358603.313299998641014, 256787.8581000007689 ], [ 358598.246899999678135, 256786.554900001734495 ], [ 358575.703199997544289, 256870.834300000220537 ], [ 358582.059900000691414, 256872.339400000870228 ], [ 358583.491200000047684, 256872.624099999666214 ], [ 358584.402300000190735, 256868.801199998706579 ], [ 358597.518700003623962, 256813.766100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401211300", "MAP": "A9-768-T012", "PARCEL_NAM": "A-13", "ACRE": "1.567", "LONGITUDE": -64.92673727, "LATITUDE": 18.3469507, "OBJECTID_1": 11777, "PARCEL_NO_": "105401211300", "Tax_Legal_": "A-13 HOSPITAL GROUND KINGS QTR", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 219300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 509.02566720900001, "SHAPE_Area": 6520.4787377100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359316.028800003230572, 257563.099899999797344 ], [ 359316.833999998867512, 257533.563400000333786 ], [ 359299.900600001215935, 257534.410100001841784 ], [ 359254.392200000584126, 257513.878400001674891 ], [ 359252.487199999392033, 257513.455099999904633 ], [ 359244.232199996709824, 257525.520100001245737 ], [ 359226.028800003230572, 257517.688400000333786 ], [ 359246.983800001442432, 257502.236699998378754 ], [ 359242.750500001013279, 257494.828299999237061 ], [ 359223.700499996542931, 257436.196600001305342 ], [ 359222.523000001907349, 257430.909800000488758 ], [ 359221.62219999730587, 257426.86540000140667 ], [ 359214.186200000345707, 257425.822999998927116 ], [ 359210.298000000417233, 257425.277899999171495 ], [ 359182.358000002801418, 257432.368700001388788 ], [ 359182.709600001573563, 257435.229299999773502 ], [ 359184.686300002038479, 257451.312899999320507 ], [ 359185.774899996817112, 257453.235500000417233 ], [ 359189.458499997854233, 257459.741099998354912 ], [ 359189.92790000140667, 257460.80970000103116 ], [ 359190.206399999558926, 257461.443799998611212 ], [ 359196.857199996709824, 257459.567999999970198 ], [ 359197.662900000810623, 257462.253600001335144 ], [ 359201.302199997007847, 257474.38459999859333 ], [ 359196.155799999833107, 257476.209300000220537 ], [ 359197.348999999463558, 257480.070700000971556 ], [ 359201.076999999582767, 257490.879200000315905 ], [ 359202.226999998092651, 257494.213500000536442 ], [ 359204.431400001049042, 257500.604699999094009 ], [ 359206.168999999761581, 257504.954999998211861 ], [ 359208.009400002658367, 257509.381099998950958 ], [ 359210.254600003361702, 257516.731800001114607 ], [ 359214.336800001561642, 257538.326900001615286 ], [ 359217.031900003552437, 257543.312899999320507 ], [ 359224.713100001215935, 257546.412300001829863 ], [ 359260.289099998772144, 257553.28489999845624 ], [ 359294.787000000476837, 257560.022799998521805 ], [ 359316.028800003230572, 257563.099899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401170900", "MAP": null, "PARCEL_NAM": "207", "ACRE": null, "LONGITUDE": -64.9274121, "LATITUDE": 18.34653042, "OBJECTID_1": 11727, "PARCEL_NO_": "105401170900", "Tax_Legal_": "HOSPITAL GROUND 207 NEW QUARTER", "Name": "PARILLA, ESTALINE & JOAQUIN", "Address": "PO Box 6463", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 10600, "Improved_V": 77600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.53579965, "SHAPE_Area": 586.05022164100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359189.458499997854233, 257459.741099998354912 ], [ 359185.774899996817112, 257453.235500000417233 ], [ 359154.930900000035763, 257442.571100000292063 ], [ 359152.461599998176098, 257448.461500000208616 ], [ 359151.583400003612041, 257456.897999998182058 ], [ 359149.461199998855591, 257464.632399998605251 ], [ 359170.071000002324581, 257463.804299999028444 ], [ 359191.040500000119209, 257463.342700000852346 ], [ 359189.458499997854233, 257459.741099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401170800", "MAP": "D9-8800-T013", "PARCEL_NAM": "208", "ACRE": ".13", "LONGITUDE": -64.92739664, "LATITUDE": 18.3466688, "OBJECTID_1": 11726, "PARCEL_NO_": "105401170800", "Tax_Legal_": "208 & A-12 HOSPITAL GROUND KRONPRINDSENS QTR", "Name": "SMITH, DOROTHY L.", "Address": "PO Box 9428", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52300, "Improved_V": 169300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.214801988, "SHAPE_Area": 647.6714683 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359172.876400001347065, 257477.568599998950958 ], [ 359195.615699999034405, 257474.461500000208616 ], [ 359193.425300002098083, 257467.372999999672174 ], [ 359191.040500000119209, 257463.342700000852346 ], [ 359170.071000002324581, 257463.804299999028444 ], [ 359149.461199998855591, 257464.632399998605251 ], [ 359147.422399997711182, 257472.062699999660254 ], [ 359147.398999996483326, 257474.806699998676777 ], [ 359145.012599997222424, 257481.375900000333786 ], [ 359148.974899999797344, 257480.834499999880791 ], [ 359151.466899998486042, 257480.493999999016523 ], [ 359165.473899997770786, 257478.580099999904633 ], [ 359172.876400001347065, 257477.568599998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401170400", "MAP": "D9-8800-T013", "PARCEL_NAM": "210", "ACRE": ".13", "LONGITUDE": -64.9272631, "LATITUDE": 18.34680466, "OBJECTID_1": 11722, "PARCEL_NO_": "105401170400", "Tax_Legal_": "HOSPITAL GROUND 210 KINGS QUARTER", "Name": "SMITH, DOROTHY L.", "Address": "PO Box 9428", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43000, "Improved_V": 158200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.737690562, "SHAPE_Area": 642.23732654699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359195.615699999034405, 257474.461500000208616 ], [ 359172.876400001347065, 257477.568599998950958 ], [ 359166.972800001502037, 257478.375300001353025 ], [ 359163.663699999451637, 257495.694899998605251 ], [ 359168.994999997317791, 257495.459600001573563 ], [ 359192.390600003302097, 257494.17339999973774 ], [ 359199.625900000333786, 257496.765700001269579 ], [ 359204.431400001049042, 257500.604699999094009 ], [ 359197.348999999463558, 257480.070700000971556 ], [ 359195.615699999034405, 257474.461500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401170300", "MAP": "G9-1151-T68", "PARCEL_NAM": "209C", "ACRE": null, "LONGITUDE": -64.92746082, "LATITUDE": 18.34679951, "OBJECTID_1": 11721, "PARCEL_NO_": "105401170300", "Tax_Legal_": "HOSPITAL GROUND 209C KINGS QTR", "Name": "MOTT, DELORES APT", "Address": "140-10 CASAL PL", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 2800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.259701346100002, "SHAPE_Area": 99.723311918999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359161.207400001585484, 257494.757199998944998 ], [ 359161.478799998760223, 257495.791400000452995 ], [ 359163.663699999451637, 257495.694899998605251 ], [ 359166.972800001502037, 257478.375300001353025 ], [ 359165.473899997770786, 257478.580099999904633 ], [ 359157.256599999964237, 257479.702899999916553 ], [ 359161.207400001585484, 257494.757199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401170100", "MAP": null, "PARCEL_NAM": "209A", "ACRE": null, "LONGITUDE": -64.92760816000001, "LATITUDE": 18.3468512, "OBJECTID_1": 11719, "PARCEL_NO_": "105401170100", "Tax_Legal_": "HOSPITAL GROUND 209A KINGS QTR", "Name": "KRIGGER, P & MOTT, D. APT#10L", "Address": "140-10 CASALS PLACE", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 2800, "Improved_V": 12400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.803979415599997, "SHAPE_Area": 90.729217347599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359151.584600001573563, 257486.53830000013113 ], [ 359148.169100001454353, 257486.387800000607967 ], [ 359143.270300000905991, 257486.171999998390675 ], [ 359141.623499996960163, 257490.169300001114607 ], [ 359141.58219999819994, 257495.024099998176098 ], [ 359143.99210000038147, 257496.099300000816584 ], [ 359149.638099998235703, 257495.934399999678135 ], [ 359151.293700002133846, 257495.893800001591444 ], [ 359151.584600001573563, 257486.53830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401170500", "MAP": "G9-1151-T68", "PARCEL_NAM": "209", "ACRE": "457 sq ft", "LONGITUDE": -64.92759663, "LATITUDE": 18.34678377, "OBJECTID_1": 11723, "PARCEL_NO_": "105401170500", "Tax_Legal_": "HOSPITAL GROUND 2O9 NEW QUARTER", "Name": "MOTT, DOLORES", "Address": "140-10 CASAL PL", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 1100, "Improved_V": 12800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.984845094099999, "SHAPE_Area": 39.814837677200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359151.584600001573563, 257486.53830000013113 ], [ 359151.466899998486042, 257480.493999999016523 ], [ 359149.758199997246265, 257480.72749999910593 ], [ 359148.974899999797344, 257480.834499999880791 ], [ 359145.012599997222424, 257481.375900000333786 ], [ 359143.270300000905991, 257486.171999998390675 ], [ 359148.169100001454353, 257486.387800000607967 ], [ 359151.584600001573563, 257486.53830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401170200", "MAP": "G9-1151-T68", "PARCEL_NAM": "209E", "ACRE": null, "LONGITUDE": -64.92752448, "LATITUDE": 18.34682748, "OBJECTID_1": 11720, "PARCEL_NO_": "105401170200", "Tax_Legal_": "HOSPITAL GROUND 209B KINGS QTR", "Name": "GEORGE, EVALDIMO", "Address": "209B Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3900, "Improved_V": 17000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.069511145699998, "SHAPE_Area": 124.945522927 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359161.478799998760223, 257495.791400000452995 ], [ 359161.207400001585484, 257494.757199998944998 ], [ 359157.256599999964237, 257479.702899999916553 ], [ 359151.466899998486042, 257480.493999999016523 ], [ 359151.584600001573563, 257486.53830000013113 ], [ 359151.293700002133846, 257495.893800001591444 ], [ 359156.090400002896786, 257495.776099998503923 ], [ 359160.928300000727177, 257495.815699998289347 ], [ 359161.478799998760223, 257495.791400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404210100", "MAP": "D9-3890-T87", "PARCEL_NAM": "A-1-32", "ACRE": null, "LONGITUDE": -64.91697267000001, "LATITUDE": 18.33416735, "OBJECTID_1": 19630, "PARCEL_NO_": "105404210100", "Tax_Legal_": "A-1-32 EST. THOMAS 6K NEW QTR.", "Name": "HODGE, JOSEPH & ZULMA", "Address": "PO Box 5048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 240900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 527.48947460399995, "SHAPE_Area": 5573.87481862 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360237.004799999296665, 256088.83839999884367 ], [ 360278.280199997127056, 256077.985100001096725 ], [ 360275.227399997413158, 256101.989399999380112 ], [ 360275.736699998378754, 256103.383099999278784 ], [ 360329.698299996554852, 256130.529199998825788 ], [ 360334.788500003516674, 256133.393699999898672 ], [ 360339.813799999654293, 256113.638099998235703 ], [ 360333.88629999756813, 256112.198300000280142 ], [ 360335.550999999046326, 256106.090300001204014 ], [ 360341.355800002813339, 256107.576099999248981 ], [ 360353.145199999213219, 256067.410900000482798 ], [ 360357.770999997854233, 256053.498700000345707 ], [ 360347.280000001192093, 256054.468299999833107 ], [ 360332.744800001382828, 256056.882500000298023 ], [ 360335.106200002133846, 256063.656800001859665 ], [ 360333.428800001740456, 256071.242499999701977 ], [ 360331.798199996352196, 256073.339999999850988 ], [ 360326.130599997937679, 256076.037900000810623 ], [ 360321.287399999797344, 256076.631499998271465 ], [ 360304.387199997901917, 256072.693500000983477 ], [ 360295.519500002264977, 256072.409800000488758 ], [ 360281.009499996900558, 256071.868900001049042 ], [ 360279.012199997901917, 256072.229600001126528 ], [ 360266.472499996423721, 256074.494100000709295 ], [ 360234.167900003492832, 256080.351399999111891 ], [ 360232.509900003671646, 256080.229299999773502 ], [ 360228.911799997091293, 256079.964200001209974 ], [ 360224.497500002384186, 256079.638999998569489 ], [ 360221.862700000405312, 256078.736999999731779 ], [ 360199.871899999678135, 256093.704599998891354 ], [ 360204.369400002062321, 256114.525199998170137 ], [ 360212.508599996566772, 256135.952799998223782 ], [ 360244.270499996840954, 256124.974899999797344 ], [ 360246.141400001943111, 256119.641800001263618 ], [ 360246.180799998342991, 256114.88569999858737 ], [ 360245.097699999809265, 256108.081799998879433 ], [ 360243.325499996542931, 256101.951699998229742 ], [ 360241.091899998486042, 256096.497299998998642 ], [ 360238.578000001609325, 256091.255100000649691 ], [ 360237.004799999296665, 256088.83839999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404191700", "MAP": "F9-2043-T67", "PARCEL_NAM": "6", "ACRE": ".32", "LONGITUDE": -64.91719831, "LATITUDE": 18.33418279, "OBJECTID_1": 19612, "PARCEL_NO_": "105404191700", "Tax_Legal_": "6 ESTATE THOMAS No.6K NEW QTR", "Name": "HODGE, JOSEPH E.", "Address": "5600 Royal Dane Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 87900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.34440927, "SHAPE_Area": 1050.98048085 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360278.280199997127056, 256077.985100001096725 ], [ 360237.004799999296665, 256088.83839999884367 ], [ 360238.578000001609325, 256091.255100000649691 ], [ 360241.091899998486042, 256096.497299998998642 ], [ 360243.325499996542931, 256101.951699998229742 ], [ 360245.097699999809265, 256108.081799998879433 ], [ 360246.180799998342991, 256114.88569999858737 ], [ 360246.141400001943111, 256119.641800001263618 ], [ 360244.270499996840954, 256124.974899999797344 ], [ 360247.504699997603893, 256123.945900000631809 ], [ 360255.621799997985363, 256117.679499998688698 ], [ 360275.099200002849102, 256103.062399998307228 ], [ 360275.736699998378754, 256103.383099999278784 ], [ 360275.227399997413158, 256101.989399999380112 ], [ 360278.280199997127056, 256077.985100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302123200", "MAP": "F9-3788-T79", "PARCEL_NAM": "111-A", "ACRE": ".03", "LONGITUDE": -64.94040326, "LATITUDE": 18.3440995, "OBJECTID_1": 9872, "PARCEL_NO_": "105302123200", "Tax_Legal_": "ANNAS FANCY 111A CROWN PRINCE QTR.", "Name": "B VALENTINE TRUST", "Address": "PO Box 304200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.926190953900004, "SHAPE_Area": 208.34001504400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357800.139899998903275, 257169.361999999731779 ], [ 357800.9695999994874, 257159.910399999469519 ], [ 357793.723800003528595, 257160.533399999141693 ], [ 357793.602399997413158, 257167.25730000063777 ], [ 357793.166299998760223, 257191.405999999493361 ], [ 357798.242200002074242, 257190.978900000452995 ], [ 357799.957000002264977, 257190.834600001573563 ], [ 357800.139899998903275, 257169.361999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302121900", "MAP": "F9-3803-T80", "PARCEL_NAM": "111", "ACRE": ".14", "LONGITUDE": -64.94068814000001, "LATITUDE": 18.34401446, "OBJECTID_1": 9858, "PARCEL_NO_": "105302121900", "Tax_Legal_": "ANNAS FANCY 111 CROWN PRINCE", "Name": "B VALENTINE TRUST", "Address": "PO Box 304200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.73592353, "SHAPE_Area": 346.18004201899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357738.038000002503395, 257170.709800001233816 ], [ 357771.92119999974966, 257168.862500000745058 ], [ 357793.602399997413158, 257167.25730000063777 ], [ 357793.723800003528595, 257160.533399999141693 ], [ 357784.080700002610683, 257161.36259999871254 ], [ 357770.36259999871254, 257162.5168999992311 ], [ 357751.803000003099442, 257164.053800001740456 ], [ 357738.084899999201298, 257165.208099998533726 ], [ 357738.038000002503395, 257170.709800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302122000", "MAP": null, "PARCEL_NAM": "111-2", "ACRE": null, "LONGITUDE": -64.94070844, "LATITUDE": 18.34415649, "OBJECTID_1": 9859, "PARCEL_NO_": "105302122000", "Tax_Legal_": "ANNAS FANCY 111-2 KRONP QTR", "Name": "COMISSIONG, RICHARD & JOYCE", "Address": "PO Box 185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31700, "Improved_V": 119400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.747551694099997, "SHAPE_Area": 414.21193444300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357774.135200001299381, 257192.945300001651049 ], [ 357771.92119999974966, 257168.862500000745058 ], [ 357755.725000001490116, 257169.74549999833107 ], [ 357755.762599997222424, 257172.529899999499321 ], [ 357756.383699998259544, 257194.27760000154376 ], [ 357768.487400002777576, 257193.321199998259544 ], [ 357774.135200001299381, 257192.945300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302122100", "MAP": null, "PARCEL_NAM": "111-3", "ACRE": null, "LONGITUDE": -64.94087313, "LATITUDE": 18.34416698, "OBJECTID_1": 9860, "PARCEL_NO_": "105302122100", "Tax_Legal_": "ANNAS FANCY 111-3 KRONP QTR", "Name": "DELZID & OTHERS", "Address": "671 Antoinette St", "City": "Deltona", "State": "Florida", "Zip": 32725, "Country": "United States", "Land_Value": 30200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.196963477899999, "SHAPE_Area": 442.71926447599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357755.762599997222424, 257172.529899999499321 ], [ 357755.725000001490116, 257169.74549999833107 ], [ 357738.038000002503395, 257170.709800001233816 ], [ 357737.987800002098083, 257176.606300000101328 ], [ 357738.630500003695488, 257195.821100000292063 ], [ 357749.927799999713898, 257194.8581000007689 ], [ 357756.383699998259544, 257194.27760000154376 ], [ 357755.762599997222424, 257172.529899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302121700", "MAP": null, "PARCEL_NAM": "111-B", "ACRE": null, "LONGITUDE": -64.94017485000001, "LATITUDE": 18.344081, "OBJECTID_1": 9856, "PARCEL_NO_": "105302121700", "Tax_Legal_": "ANNAS FANCY 111-B CROWN PRINCE QTR", "Name": "C. E. BRATHWAITE ASSOC.", "Address": "5013 Vantage Ct", "City": "Saint Cloud", "State": "Florida", "Zip": 34772, "Country": "United States", "Land_Value": 103700, "Improved_V": 446100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.80186705599999, "SHAPE_Area": 1284.6974140100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357816.902099996805191, 257189.495600000023842 ], [ 357827.391400001943111, 257188.737100001424551 ], [ 357841.915799997746944, 257187.589400000870228 ], [ 357841.9391999989748, 257184.845400001853704 ], [ 357840.60700000077486, 257151.903900001198053 ], [ 357838.971000000834465, 257154.634700000286102 ], [ 357835.726000003516674, 257156.93019999936223 ], [ 357817.164599999785423, 257158.678100001066923 ], [ 357804.254699997603893, 257159.627900000661612 ], [ 357800.9695999994874, 257159.910399999469519 ], [ 357800.139899998903275, 257169.361999999731779 ], [ 357799.957000002264977, 257190.834600001573563 ], [ 357804.79839999973774, 257190.451999999582767 ], [ 357816.902099996805191, 257189.495600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105303101000", "MAP": null, "PARCEL_NAM": "178-218", "ACRE": null, "LONGITUDE": -64.94299086, "LATITUDE": 18.34057466, "OBJECTID_1": 11015, "PARCEL_NO_": "105303101000", "Tax_Legal_": "ALTONA & WELGUNST 178-218 CROWN PRINCE QUARTER", "Name": "CHAPMAN, SAMUEL N. DELITA", "Address": "3514 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46100, "Improved_V": 38800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.232934677, "SHAPE_Area": 1006.38917114 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357543.385899998247623, 256762.381400000303984 ], [ 357537.204700000584126, 256763.404800001531839 ], [ 357517.496299996972084, 256766.160300001502037 ], [ 357509.307599999010563, 256785.8141999989748 ], [ 357512.474200002849102, 256797.444299999624491 ], [ 357534.235299997031689, 256807.29450000077486 ], [ 357539.568899996578693, 256781.115899998694658 ], [ 357541.447400003671646, 256771.895799998193979 ], [ 357543.385899998247623, 256762.381400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105303100900", "MAP": "D9-2174-T82", "PARCEL_NAM": "178-220", "ACRE": ".16", "LONGITUDE": -64.94329968, "LATITUDE": 18.34054728, "OBJECTID_1": 11014, "PARCEL_NO_": "105303100900", "Tax_Legal_": "178-220 ALTONA & WELGUNST CROWN PRINCE QUARTER", "Name": "ALVIN & VALARIE GRANT (LIFE ESTATE)", "Address": "3515 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38500, "Improved_V": 95300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.899798557, "SHAPE_Area": 641.970736429 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357472.527800001204014, 256778.375100001692772 ], [ 357476.087099999189377, 256792.716899998486042 ], [ 357487.394500002264977, 256788.829300001263618 ], [ 357497.326499998569489, 256791.799499999731779 ], [ 357499.417300000786781, 256786.884700000286102 ], [ 357501.112499997019768, 256787.282200001180172 ], [ 357501.961000002920628, 256787.365800000727177 ], [ 357502.501999996602535, 256787.293499998748302 ], [ 357503.355499997735023, 256786.763300001621246 ], [ 357504.208999998867512, 256786.2331000007689 ], [ 357504.677799999713898, 256785.546300001442432 ], [ 357504.913800001144409, 256785.011100001633167 ], [ 357506.027000002563, 256781.030000001192093 ], [ 357510.733300000429153, 256782.392299998551607 ], [ 357517.496299996972084, 256766.160300001502037 ], [ 357472.523900002241135, 256777.473999999463558 ], [ 357472.527800001204014, 256778.375100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105303100300", "MAP": "A9-548-T000", "PARCEL_NAM": "173-REM", "ACRE": ".17", "LONGITUDE": -64.94304306, "LATITUDE": 18.34029437, "OBJECTID_1": 11009, "PARCEL_NO_": "105303100300", "Tax_Legal_": "ALTONA & WELGUNST 173", "Name": "GUMBS, DORETH B", "Address": "8AC Barbel Plaza", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39200, "Improved_V": 70000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.727182361, "SHAPE_Area": 707.52778115399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357515.159599997103214, 256735.074700001627207 ], [ 357498.844499997794628, 256766.111600000411272 ], [ 357509.847800001502037, 256763.485500000417233 ], [ 357528.278200000524521, 256760.481199998408556 ], [ 357539.450300000607967, 256758.048700001090765 ], [ 357544.657799996435642, 256756.1385000012815 ], [ 357545.423199996352196, 256752.381900001317263 ], [ 357543.245700001716614, 256751.136599998921156 ], [ 357515.159599997103214, 256735.074700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105303100800", "MAP": "D9-2169-T82", "PARCEL_NAM": "178-217", "ACRE": ".14", "LONGITUDE": -64.94336806, "LATITUDE": 18.34007473, "OBJECTID_1": 11013, "PARCEL_NO_": "105303100800", "Tax_Legal_": "ALTONA WELGUNST 178-217 CROWN PRINCE QTR", "Name": "FARRELL (LIFE ESTATE), LEVI E. and VENETTA", "Address": "PO Box 7235", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35300, "Improved_V": 55900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.993802551, "SHAPE_Area": 554.365581324 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357476.733900003135204, 256711.716400001198053 ], [ 357468.261799998581409, 256726.196899998933077 ], [ 357498.4070999994874, 256743.204999998211861 ], [ 357505.782799996435642, 256729.553700000047684 ], [ 357476.733900003135204, 256711.716400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105303100700", "MAP": null, "PARCEL_NAM": "178-216", "ACRE": null, "LONGITUDE": -64.9435841, "LATITUDE": 18.34000859, "OBJECTID_1": 11012, "PARCEL_NO_": "105303100700", "Tax_Legal_": "ALTONA & WELGUNST 178-216 CROWN PRINCE QTR", "Name": "MAGRAS, MAURICE", "Address": "5305 Cochran Dr", "City": "Nashville", "State": "Tennessee", "Zip": 37220, "Country": "United States", "Land_Value": 17200, "Improved_V": 25700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.719617875899999, "SHAPE_Area": 339.92811029500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357451.848300002515316, 256727.273499999195337 ], [ 357463.116499997675419, 256734.536499999463558 ], [ 357468.261799998581409, 256726.196899998933077 ], [ 357476.733900003135204, 256711.716400001198053 ], [ 357475.04900000244379, 256710.681699998676777 ], [ 357469.433600001037121, 256707.258299998939037 ], [ 357463.7804000005126, 256708.267499998211861 ], [ 357451.848300002515316, 256727.273499999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105303100200", "MAP": null, "PARCEL_NAM": "9", "ACRE": null, "LONGITUDE": -64.94372743, "LATITUDE": 18.34037804, "OBJECTID_1": 11008, "PARCEL_NO_": "105303100200", "Tax_Legal_": "ALTONA & WELGUNST 9 KRONPRINDSES GADE", "Name": "CARTY, RUDOLPH & MICHELE", "Address": "PO Box 304930", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.24853067500001, "SHAPE_Area": 1868.41537154 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357472.420400001108646, 256772.283300001174212 ], [ 357470.000600002706051, 256757.663800001144409 ], [ 357471.864699997007847, 256740.285399999469519 ], [ 357463.116499997675419, 256734.536499999463558 ], [ 357451.848300002515316, 256727.273499999195337 ], [ 357451.518500000238419, 256727.798799999058247 ], [ 357425.365800000727177, 256768.747999999672174 ], [ 357419.053700000047684, 256778.882599998265505 ], [ 357424.299300000071526, 256788.429299999028444 ], [ 357429.82660000026226, 256788.307799998670816 ], [ 357472.420400001108646, 256772.283300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401020100", "MAP": "D9-7180-T003", "PARCEL_NAM": "14M-2", "ACRE": "6.30", "LONGITUDE": -64.91085209000001, "LATITUDE": 18.32904148, "OBJECTID_1": 33005, "PARCEL_NO_": "107401020100", "Tax_Legal_": "THOMAS 14M 6E NEW QTR", "Name": "LOCKHART, ALFRED", "Address": "PO Box 714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 996700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 715.72310477799999, "SHAPE_Area": 27186.780629100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361020.759499996900558, 255562.221799999475479 ], [ 361031.611199997365475, 255424.255499999970198 ], [ 361014.644500002264977, 255428.127399999648333 ], [ 361005.746299996972084, 255431.432000000029802 ], [ 360827.622100003063679, 255516.311500001698732 ], [ 360826.20440000295639, 255588.071699999272823 ], [ 360825.1300999969244, 255619.515799999237061 ], [ 360946.020499996840954, 255604.520399998873472 ], [ 360983.0675999969244, 255598.228500001132488 ], [ 360991.053000003099442, 255588.552000001072884 ], [ 361010.538699999451637, 255602.605700001120567 ], [ 361017.401199996471405, 255607.55519999936223 ], [ 361018.011399999260902, 255600.829500000923872 ], [ 361020.759499996900558, 255562.221799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401020200", "MAP": "D9-7180-T003", "PARCEL_NAM": "16", "ACRE": "2.004", "LONGITUDE": -64.910988, "LATITUDE": 18.3299236, "OBJECTID_1": 33006, "PARCEL_NO_": "107401020200", "Tax_Legal_": "THOMAS-FORMELY 16 14M -NEW QTR", "Name": "LOCKHART, VIOLET M", "Address": "PO Box 1354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 343000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 475.90694918399998, "SHAPE_Area": 9465.3312787399991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361010.538699999451637, 255602.605700001120567 ], [ 360991.053000003099442, 255588.552000001072884 ], [ 360983.0675999969244, 255598.228500001132488 ], [ 360946.020499996840954, 255604.520399998873472 ], [ 360825.1300999969244, 255619.515799999237061 ], [ 360824.193999998271465, 255665.689300000667572 ], [ 360831.655199997127056, 255668.941199999302626 ], [ 360902.23200000077486, 255661.042100001126528 ], [ 360982.973499998450279, 255647.570599999278784 ], [ 361014.721000000834465, 255638.780600000172853 ], [ 361015.342600002884865, 255630.149599999189377 ], [ 361016.231600001454353, 255620.446600001305342 ], [ 361017.401199996471405, 255607.55519999936223 ], [ 361010.538699999451637, 255602.605700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401020400", "MAP": "D9-7180-T003", "PARCEL_NAM": "14M-1", "ACRE": "3.00", "LONGITUDE": -64.91094572, "LATITUDE": 18.33045788, "OBJECTID_1": 33008, "PARCEL_NO_": "107401020400", "Tax_Legal_": "THOMAS 14M-1 NEW QTR.", "Name": "IDEAL DEVELOPMENT, LLC", "Address": "9009 First Ave", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 441800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 528.95136476300002, "SHAPE_Area": 13093.8314897 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360822.990099996328354, 255729.131400000303984 ], [ 361008.09740000218153, 255724.91270000115037 ], [ 361014.721000000834465, 255638.780600000172853 ], [ 360982.973499998450279, 255647.570599999278784 ], [ 360902.23200000077486, 255661.042100001126528 ], [ 360831.655199997127056, 255668.941199999302626 ], [ 360824.193999998271465, 255665.689300000667572 ], [ 360823.739399999380112, 255688.1097999997437 ], [ 360822.990099996328354, 255729.131400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105503080100", "MAP": "D9-8101-T008", "PARCEL_NAM": "14J-REM", "ACRE": "18.34", "LONGITUDE": -64.91209688000001, "LATITUDE": 18.33022684, "OBJECTID_1": 20354, "PARCEL_NO_": "105503080100", "Tax_Legal_": "14J REM.ESTATE THOMAS 6E NEW QTR", "Name": "IDEAL DEVELOPMENT, LLC", "Address": "9009 First Ave", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1352400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.19912870299999, "SHAPE_Area": 5524.7667162500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360769.976999998092651, 255702.758600000292063 ], [ 360773.378200002014637, 255707.127500001341105 ], [ 360822.990099996328354, 255729.131400000303984 ], [ 360823.712600000202656, 255689.578000001609325 ], [ 360823.739399999380112, 255688.1097999997437 ], [ 360825.1300999969244, 255619.515799999237061 ], [ 360826.20440000295639, 255588.071699999272823 ], [ 360826.240099996328354, 255586.261399999260902 ], [ 360814.776699997484684, 255587.609999999403954 ], [ 360801.153899997472763, 255610.314599998295307 ], [ 360790.586300000548363, 255627.722699999809265 ], [ 360774.843500003218651, 255656.576299998909235 ], [ 360768.328100003302097, 255669.011999998241663 ], [ 360763.038000002503395, 255679.688900001347065 ], [ 360764.413500003516674, 255689.290600001811981 ], [ 360769.976999998092651, 255702.758600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105503080100", "MAP": "D9-8101-T008", "PARCEL_NAM": "14J-REM", "ACRE": "18.34", "LONGITUDE": -64.91435586, "LATITUDE": 18.33235153, "OBJECTID_1": 20354, "PARCEL_NO_": "105503080100", "Tax_Legal_": "14J REM.ESTATE THOMAS 6E NEW QTR", "Name": "IDEAL DEVELOPMENT, LLC", "Address": "9009 First Ave", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1352400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1588.49875155, "SHAPE_Area": 54101.2844768 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360357.770999997854233, 256053.498700000345707 ], [ 360353.145199999213219, 256067.410900000482798 ], [ 360358.442500002682209, 256069.336199998855591 ], [ 360389.795199997723103, 256080.569699998944998 ], [ 360387.437399998307228, 256073.373199999332428 ], [ 360388.277800001204014, 256069.369300000369549 ], [ 360390.723700001835823, 256066.223000001162291 ], [ 360404.506599999964237, 256057.469799999147654 ], [ 360418.246299996972084, 256053.782600000500679 ], [ 360431.958999998867512, 256053.261599998921156 ], [ 360439.210400000214577, 256053.954199999570847 ], [ 360448.866400003433228, 256056.355200000107288 ], [ 360468.158500000834465, 256063.479200001806021 ], [ 360476.210799999535084, 256064.811700001358986 ], [ 360491.530799999833107, 256064.937100000679493 ], [ 360493.361000001430511, 256039.409699998795986 ], [ 360514.319700002670288, 256040.214600000530481 ], [ 360534.459600001573563, 256042.490299999713898 ], [ 360552.950800001621246, 256048.974500000476837 ], [ 360549.414499998092651, 256085.464699998497963 ], [ 360583.945600003004074, 256102.212600000202656 ], [ 360605.335600003600121, 255768.437699999660254 ], [ 360798.845200002193451, 255770.654800001531839 ], [ 360822.228200003504753, 255770.846099998801947 ], [ 360822.990099996328354, 255729.131400000303984 ], [ 360773.378200002014637, 255707.127500001341105 ], [ 360769.976999998092651, 255702.758600000292063 ], [ 360625.097000002861023, 255720.470100000500679 ], [ 360549.471600003540516, 255794.78940000012517 ], [ 360500.769199997186661, 255832.387600000947714 ], [ 360462.620800003409386, 255861.628499999642372 ], [ 360458.495700001716614, 255872.571600001305342 ], [ 360431.304799996316433, 255940.743299998342991 ], [ 360409.871299996972084, 255995.66330000013113 ], [ 360405.744499996304512, 256006.817499998956919 ], [ 360397.508699998259544, 256027.015099998563528 ], [ 360385.968599997460842, 256056.473700001835823 ], [ 360357.770999997854233, 256053.498700000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302401100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93275516, "LATITUDE": 18.34307974, "OBJECTID_1": 10695, "PARCEL_NO_": "105302401100", "Tax_Legal_": "15 MURPHY GADE QUEENS QUARTER", "Name": "BOLT, THOMAS A. W. & SMITH J. , TRUS", "Address": "PO Box 7625", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 174000, "Improved_V": 307100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.237861665, "SHAPE_Area": 1099.61852763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358615.724500000476837, 257051.410700000822544 ], [ 358610.737199999392033, 257051.604800000786781 ], [ 358591.367700003087521, 257053.557199999690056 ], [ 358580.8766999989748, 257054.526799999177456 ], [ 358592.910800002515316, 257073.900400001555681 ], [ 358603.149599999189377, 257090.383900001645088 ], [ 358623.352300003170967, 257085.271899998188019 ], [ 358627.547100000083447, 257084.210499998182058 ], [ 358615.724500000476837, 257051.410700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401341300", "MAP": null, "PARCEL_NAM": "3B NYE GADE", "ACRE": null, "LONGITUDE": -64.93245165, "LATITUDE": 18.34303764, "OBJECTID_1": 11995, "PARCEL_NO_": "105401341300", "Tax_Legal_": "NYE GADE 3B QUEENS QUARTER", "Name": "DOUGLAS, HUGO E", "Address": "PO Box 11300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 66500, "Improved_V": 46500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.336470308, "SHAPE_Area": 1090.6946405799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358650.414499998092651, 257048.284299999475479 ], [ 358642.325099997222424, 257049.013399999588728 ], [ 358627.419200003147125, 257050.356699999421835 ], [ 358615.724500000476837, 257051.410700000822544 ], [ 358627.547100000083447, 257084.210499998182058 ], [ 358634.665899999439716, 257082.409200001507998 ], [ 358637.898299999535084, 257081.591299999505281 ], [ 358648.407300002872944, 257078.510899998247623 ], [ 358661.342500001192093, 257074.605999998748302 ], [ 358650.414499998092651, 257048.284299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401341800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93251385000001, "LATITUDE": 18.34279722, "OBJECTID_1": 11999, "PARCEL_NO_": "105401341800", "Tax_Legal_": "CRYSTAL GADE 16C QUEENS QUARTER", "Name": "BORNN, STEVEN A", "Address": "PO Box 12200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60700, "Improved_V": 15500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.764617114100005, "SHAPE_Area": 350.72218343700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358642.325099997222424, 257049.013399999588728 ], [ 358637.869099996984005, 257029.037900000810623 ], [ 358636.735200002789497, 257028.808400001376867 ], [ 358621.171599999070168, 257024.969300001859665 ], [ 358627.419200003147125, 257050.356699999421835 ], [ 358642.325099997222424, 257049.013399999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401342100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93228674, "LATITUDE": 18.34281248, "OBJECTID_1": 12002, "PARCEL_NO_": "105401342100", "Tax_Legal_": "CRYSTAL GADE 18 QUEENS QUARTER", "Name": "ST THOMAS REFORMED CHURCH", "Address": "PO Box 301769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15400, "Improved_V": 76300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.161064247699997, "SHAPE_Area": 34.8311859286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358651.113399997353554, 257049.967799998819828 ], [ 358655.838100001215935, 257042.806200001388788 ], [ 358660.868000000715256, 257031.97239999845624 ], [ 358658.745800003409386, 257031.639299999922514 ], [ 358654.169900000095367, 257042.293800000101328 ], [ 358650.414499998092651, 257048.284299999475479 ], [ 358651.113399997353554, 257049.967799998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401341900", "MAP": null, "PARCEL_NAM": "16D", "ACRE": null, "LONGITUDE": -64.93238323, "LATITUDE": 18.34280133, "OBJECTID_1": 12000, "PARCEL_NO_": "105401341900", "Tax_Legal_": "CRYSTAL GADE 16D QUEENS QUARTER", "Name": "DE CASTRO, FRANCES W", "Address": "PO Box 247", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 11500, "Improved_V": 69400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.655236797599997, "SHAPE_Area": 215.433249413 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358654.169900000095367, 257042.293800000101328 ], [ 358650.898500002920628, 257039.384100001305342 ], [ 358650.331900000572205, 257030.318799998611212 ], [ 358646.958700001239777, 257029.789299998432398 ], [ 358637.869099996984005, 257029.037900000810623 ], [ 358642.325099997222424, 257049.013399999588728 ], [ 358650.414499998092651, 257048.284299999475479 ], [ 358654.169900000095367, 257042.293800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401342100", "MAP": null, "PARCEL_NAM": "18", "ACRE": null, "LONGITUDE": -64.9321573, "LATITUDE": 18.34278078, "OBJECTID_1": 12002, "PARCEL_NO_": "105401342100", "Tax_Legal_": "CRYSTAL GADE 18 QUEENS QUARTER", "Name": "ST THOMAS REFORMED CHURCH", "Address": "PO Box 301769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15400, "Improved_V": 76300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.2272516592, "SHAPE_Area": 135.224936262 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358658.276600003242493, 257037.553899999707937 ], [ 358677.832400001585484, 257042.404699999839067 ], [ 358679.266000002622604, 257034.141399998217821 ], [ 358669.786700002849102, 257033.37220000103116 ], [ 358660.868000000715256, 257031.97239999845624 ], [ 358658.276600003242493, 257037.553899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401341600", "MAP": null, "PARCEL_NAM": "3E", "ACRE": null, "LONGITUDE": -64.93229706, "LATITUDE": 18.34289233, "OBJECTID_1": 11998, "PARCEL_NO_": "105401341600", "Tax_Legal_": "NYE GADE 3E QUEENS QUARTER", "Name": "DOUGLAS, HUGO E", "Address": "PO Box 11300", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.311648831799999, "SHAPE_Area": 40.049413210499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358652.771099999547005, 257053.960499998182058 ], [ 358658.201499998569489, 257050.305599998682737 ], [ 358655.838100001215935, 257042.806200001388788 ], [ 358651.113399997353554, 257049.967799998819828 ], [ 358652.771099999547005, 257053.960499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401342200", "MAP": null, "PARCEL_NAM": "19", "ACRE": null, "LONGITUDE": -64.93206699, "LATITUDE": 18.34284503, "OBJECTID_1": 12003, "PARCEL_NO_": "105401342200", "Tax_Legal_": "CRYSTAL GADE 19 QUEENS QUARTER", "Name": "ST THOMAS REFORMED CHURCH", "Address": "PO Box 301769", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 70700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.165897589700002, "SHAPE_Area": 174.381549487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358671.752700001001358, 257040.896600000560284 ], [ 358670.906900003552437, 257050.825300000607967 ], [ 358683.621899999678135, 257051.453299999237061 ], [ 358686.017200000584126, 257034.567099999636412 ], [ 358680.310099996626377, 257034.226100001484156 ], [ 358679.266000002622604, 257034.141399998217821 ], [ 358677.832400001585484, 257042.404699999839067 ], [ 358671.752700001001358, 257040.896600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401341500", "MAP": null, "PARCEL_NAM": "3A", "ACRE": null, "LONGITUDE": -64.93212526000001, "LATITUDE": 18.34295866, "OBJECTID_1": 11997, "PARCEL_NO_": "105401341500", "Tax_Legal_": "NYE GADE 3A QUEENS QUARTER", "Name": "JONES, JR., CHARLES & MEDINA WOODSON", "Address": "PO Box 9915", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 37600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.2555032195, "SHAPE_Area": 371.11508155000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358663.154600001871586, 257038.763900000602007 ], [ 358664.802599996328354, 257050.858399998396635 ], [ 358663.963799998164177, 257051.183899998664856 ], [ 358670.238899998366833, 257071.51240000128746 ], [ 358680.746200002729893, 257068.643100000917912 ], [ 358683.621899999678135, 257051.453299999237061 ], [ 358670.906900003552437, 257050.825300000607967 ], [ 358671.752700001001358, 257040.896600000560284 ], [ 358663.154600001871586, 257038.763900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401341400", "MAP": null, "PARCEL_NAM": "3D", "ACRE": null, "LONGITUDE": -64.9322332, "LATITUDE": 18.34296647, "OBJECTID_1": 11996, "PARCEL_NO_": "105401341400", "Tax_Legal_": "NYE GADE 3D QUEENS QTR", "Name": "THOMAS, WINNE A., ADELBERT A. NICO,JR. & OTHERS", "Address": "PO Box 811", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 22100, "Improved_V": 9800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.401265723799995, "SHAPE_Area": 326.56064606299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358655.838100001215935, 257042.806200001388788 ], [ 358658.201499998569489, 257050.305599998682737 ], [ 358652.771099999547005, 257053.960499998182058 ], [ 358661.342500001192093, 257074.605999998748302 ], [ 358662.962300002574921, 257073.774900000542402 ], [ 358670.238899998366833, 257071.51240000128746 ], [ 358663.963799998164177, 257051.183899998664856 ], [ 358664.802599996328354, 257050.858399998396635 ], [ 358663.154600001871586, 257038.763900000602007 ], [ 358658.276600003242493, 257037.553899999707937 ], [ 358655.838100001215935, 257042.806200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302400900", "MAP": null, "PARCEL_NAM": "2DE", "ACRE": "2356 sq ft", "LONGITUDE": -64.93293706, "LATITUDE": 18.34324623, "OBJECTID_1": 10693, "PARCEL_NO_": "105302400900", "Tax_Legal_": "BJERGE GADE 2DE QUEENS QTR", "Name": "2DE BJERGE GADE LLC", "Address": "3716 221 St", "City": "Bayside", "State": "New York", "Zip": 11361, "Country": "United States", "Land_Value": 18200, "Improved_V": 120300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.566689244900004, "SHAPE_Area": 463.094263915 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358592.910800002515316, 257073.900400001555681 ], [ 358571.521499998867512, 257084.83559999987483 ], [ 358573.333999998867512, 257088.028900001198053 ], [ 358578.863099999725819, 257101.584199998527765 ], [ 358599.108999997377396, 257091.406300000846386 ], [ 358603.149599999189377, 257090.383900001645088 ], [ 358592.910800002515316, 257073.900400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304041200", "MAP": "D9-8845-T014", "PARCEL_NAM": "74B KRONPRINSENS GADE", "ACRE": ".10", "LONGITUDE": -64.93594389, "LATITUDE": 18.34025829, "OBJECTID_1": 11360, "PARCEL_NO_": "105304041200", "Tax_Legal_": "KRONPRINDSENS GADE 74B & 75 CROWN PRINCE QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 328700, "Improved_V": 935000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.546735923, "SHAPE_Area": 451.58844978399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358264.239500001072884, 256780.265299998223782 ], [ 358270.935999996960163, 256780.772700000554323 ], [ 358270.177699998021126, 256787.921599999070168 ], [ 358273.075300000607967, 256788.144099999219179 ], [ 358273.631999999284744, 256781.192200001329184 ], [ 358272.334799997508526, 256780.883499998599291 ], [ 358278.598899997770786, 256723.991799999028444 ], [ 358271.631800003349781, 256723.534200001507998 ], [ 358264.239500001072884, 256780.265299998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105302472200", "MAP": null, "PARCEL_NAM": "74A KRONPRINDSENS GADE", "ACRE": "1,910 sq ft", "LONGITUDE": -64.93600894, "LATITUDE": 18.340934, "OBJECTID_1": 10835, "PARCEL_NO_": "105302472200", "Tax_Legal_": "KRONPRINDSENS GADE 74A CROWN PRINCE QUARTER", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28700, "Improved_V": 260900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.275706917800001, "SHAPE_Area": 145.15639157499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358270.045999996364117, 256835.324799999594688 ], [ 358270.695900000631809, 256823.523299999535084 ], [ 358258.690099999308586, 256822.853300001472235 ], [ 358256.982199996709824, 256834.027300000190735 ], [ 358270.045999996364117, 256835.324799999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304041200", "MAP": "D9-8845-T014", "PARCEL_NAM": "75 KRONPRINSENS GADE", "ACRE": ".56", "LONGITUDE": -64.93590997, "LATITUDE": 18.34046318, "OBJECTID_1": 11360, "PARCEL_NO_": "105304041200", "Tax_Legal_": "KRONPRINDSENS GADE 74B & 75 CROWN PRINCE QTR", "Name": "FEDERAL GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 328700, "Improved_V": 935000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 327.03938646699999, "SHAPE_Area": 1628.2051561200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358271.631800003349781, 256723.534200001507998 ], [ 358278.598899997770786, 256723.991799999028444 ], [ 358272.334799997508526, 256780.883499998599291 ], [ 358273.631999999284744, 256781.192200001329184 ], [ 358273.075300000607967, 256788.144099999219179 ], [ 358270.177699998021126, 256787.921599999070168 ], [ 358270.935999996960163, 256780.772700000554323 ], [ 358264.239500001072884, 256780.265299998223782 ], [ 358258.690099999308586, 256822.853300001472235 ], [ 358270.695900000631809, 256823.523299999535084 ], [ 358270.045999996364117, 256835.324799999594688 ], [ 358275.512999996542931, 256835.86769999936223 ], [ 358278.736400000751019, 256836.105200000107288 ], [ 358284.414099998772144, 256737.570999998599291 ], [ 358287.9037000015378, 256706.568799998611212 ], [ 358274.207099996507168, 256705.190099999308586 ], [ 358271.631800003349781, 256723.534200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402091100", "MAP": "G9-2421-T74", "PARCEL_NAM": "C-21", "ACRE": "0.32", "LONGITUDE": -64.92231601, "LATITUDE": 18.34529666, "OBJECTID_1": 12600, "PARCEL_NO_": "105402091100", "Tax_Legal_": "ROSS C-21 KINGS QTR", "Name": "CODRINGTON, D. & THIBOU, A", "Address": "PO Box 7203", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32300, "Improved_V": 142500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.037602545, "SHAPE_Area": 1264.5078431100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359716.518200002610683, 257306.542599998414516 ], [ 359700.13120000064373, 257308.755100000649691 ], [ 359684.024999998509884, 257310.875500001013279 ], [ 359686.552599996328354, 257321.532600000500679 ], [ 359691.196299999952316, 257344.368700001388788 ], [ 359709.793600000441074, 257338.39919999986887 ], [ 359729.200900003314018, 257332.01410000026226 ], [ 359734.067500002682209, 257328.676399998366833 ], [ 359734.125100001692772, 257321.921900000423193 ], [ 359723.722099997103214, 257312.548700001090765 ], [ 359716.518200002610683, 257306.542599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099900", "MAP": "D9-8441-T010", "PARCEL_NAM": "C-25-1", "ACRE": ".04", "LONGITUDE": -64.92200833, "LATITUDE": 18.34492653, "OBJECTID_1": 12684, "PARCEL_NO_": "105402099900", "Tax_Legal_": "PAR C ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS, INC.", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.2150375907, "SHAPE_Area": 113.359185881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359741.002300001680851, 257277.975099999457598 ], [ 359726.20269999653101, 257279.351799998432398 ], [ 359747.420299999415874, 257289.10249999910593 ], [ 359748.758199997246265, 257290.706000000238419 ], [ 359749.334100000560284, 257290.287500001490116 ], [ 359752.166900001466274, 257289.909499999135733 ], [ 359741.002300001680851, 257277.975099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099900", "MAP": "D9-8441-T010", "PARCEL_NAM": "C-25 REM", "ACRE": ".133", "LONGITUDE": -64.92210528, "LATITUDE": 18.34500496, "OBJECTID_1": 12684, "PARCEL_NO_": "105402099900", "Tax_Legal_": "PAR C ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS, INC.", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.779322723199996, "SHAPE_Area": 511.88183855300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359716.570799998939037, 257280.247800000011921 ], [ 359717.450699999928474, 257290.449200000613928 ], [ 359721.51070000231266, 257299.009899999946356 ], [ 359724.013300001621246, 257303.767900001257658 ], [ 359726.98870000243187, 257307.720199998468161 ], [ 359748.758199997246265, 257290.706000000238419 ], [ 359747.420299999415874, 257289.10249999910593 ], [ 359726.20269999653101, 257279.351799998432398 ], [ 359716.570799998939037, 257280.247800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402091900", "MAP": null, "PARCEL_NAM": "C-29", "ACRE": null, "LONGITUDE": -64.92164435, "LATITUDE": 18.34518858, "OBJECTID_1": 12608, "PARCEL_NO_": "105402091900", "Tax_Legal_": "ROSS C-29 FO PAR.C KINGS QTR.", "Name": "PICKERING, HUGO", "Address": "PO Box 6373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26100, "Improved_V": 127500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.449740585, "SHAPE_Area": 786.08577714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359764.154600001871586, 257299.158500000834465 ], [ 359764.014399997889996, 257315.622600000351667 ], [ 359766.408100001513958, 257318.597500000149012 ], [ 359772.80290000140667, 257325.193799998611212 ], [ 359779.224600002169609, 257328.623799998313189 ], [ 359784.049900002777576, 257330.140999998897314 ], [ 359799.127300001680851, 257320.618200000375509 ], [ 359775.634300000965595, 257292.32880000025034 ], [ 359774.459700003266335, 257290.914299998432398 ], [ 359764.154600001871586, 257299.158500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-8719-T012", "PARCEL_NAM": "D", "ACRE": null, "LONGITUDE": -64.92181547, "LATITUDE": 18.34470103, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.46599436773000003, "SHAPE_Area": 0.01020755023 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359760.82209999859333, 257258.208099998533726 ], [ 359760.8716000020504, 257258.361600000411272 ], [ 359760.976800002157688, 257258.275400001555681 ], [ 359760.82209999859333, 257258.208099998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105402090300", "MAP": "D9-8719-T012", "PARCEL_NAM": "D-B", "ACRE": ".26", "LONGITUDE": -64.92236264, "LATITUDE": 18.34443201, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.78478541199999, "SHAPE_Area": 825.80041647400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359698.673299998044968, 257178.650499999523163 ], [ 359689.447599999606609, 257179.995600000023842 ], [ 359691.912500001490116, 257189.332699999213219 ], [ 359709.254199996590614, 257280.928399998694658 ], [ 359711.129299998283386, 257280.754000000655651 ], [ 359716.570799998939037, 257280.247800000011921 ], [ 359712.298100002110004, 257256.232999999076128 ], [ 359706.574400000274181, 257224.063299998641014 ], [ 359701.701899997889996, 257196.677499998360872 ], [ 359701.306395905383397, 257190.576023214758607 ], [ 359700.293371769250371, 257184.546245065605035 ], [ 359698.673299998044968, 257178.650499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-8719-T012", "PARCEL_NAM": "D-8", "ACRE": ".27", "LONGITUDE": -64.92218056, "LATITUDE": 18.34452946, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.45040062699999, "SHAPE_Area": 825.12513228900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359733.263199999928474, 257222.722699999809265 ], [ 359706.574400000274181, 257224.063299998641014 ], [ 359712.298100002110004, 257256.232999999076128 ], [ 359744.726499997079372, 257251.201200000941753 ], [ 359736.428099997341633, 257247.786899998784065 ], [ 359733.263199999928474, 257222.722699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099000", "MAP": "D9-9121-T016", "PARCEL_NAM": "D-11", "ACRE": "0.29", "LONGITUDE": -64.92191476000001, "LATITUDE": 18.34449409, "OBJECTID_1": 12675, "PARCEL_NO_": "105402099000", "Tax_Legal_": "D-11 ROSS NO.8 NEW QTR", "Name": "STUARD, PRINCESS", "Address": "PO Box 304405", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.72269434899999, "SHAPE_Area": 852.54890843700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359764.555200003087521, 257245.249299999326468 ], [ 359766.951099999248981, 257241.206000000238419 ], [ 359775.303099997341633, 257242.023200001567602 ], [ 359776.460199996829033, 257241.675900001078844 ], [ 359772.390000000596046, 257238.038600001484156 ], [ 359770.007100000977516, 257235.909200001507998 ], [ 359768.250600002706051, 257234.339600000530481 ], [ 359763.352899998426437, 257229.850099999457598 ], [ 359760.0878000035882, 257225.156500000506639 ], [ 359761.51630000025034, 257219.646699998527765 ], [ 359733.263199999928474, 257222.722699999809265 ], [ 359736.428099997341633, 257247.786899998784065 ], [ 359744.726499997079372, 257251.201200000941753 ], [ 359764.555200003087521, 257245.249299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402114100", "MAP": "D9-8719-T012", "PARCEL_NAM": "D-5", "ACRE": ".23", "LONGITUDE": -64.92252646, "LATITUDE": 18.34456065, "OBJECTID_1": 19217, "PARCEL_NO_": "105402114100", "Tax_Legal_": "D-5 ROSS No. 8 NEW QUARTER", "Name": "EMANUEL, WHITFIELD", "Address": "10-46 Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.049202299, "SHAPE_Area": 779.72099504799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359699.417599998414516, 257228.973499998450279 ], [ 359667.531199999153614, 257231.034200001507998 ], [ 359672.508900001645088, 257255.286899998784065 ], [ 359704.023699998855591, 257253.302099999040365 ], [ 359699.417599998414516, 257228.973499998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402114000", "MAP": "D9-8719-T012", "PARCEL_NAM": "D-4", "ACRE": ".23", "LONGITUDE": -64.92257348, "LATITUDE": 18.34434185, "OBJECTID_1": 19216, "PARCEL_NO_": "105402114000", "Tax_Legal_": "D-4 Ross No. 8 New Quarter", "Name": "BENJAMIN, MICHAEL & CORDELIA", "Address": "11-9 Sorgenfri", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.64822828299999, "SHAPE_Area": 786.97187457400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359694.8108000010252, 257204.641100000590086 ], [ 359662.58110000193119, 257206.916200000792742 ], [ 359667.531199999153614, 257231.034200001507998 ], [ 359699.417599998414516, 257228.973499998450279 ], [ 359694.8108000010252, 257204.641100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099100", "MAP": "D9-8719-T012", "PARCEL_NAM": "D-3", "ACRE": ".23", "LONGITUDE": -64.92262226, "LATITUDE": 18.34412099, "OBJECTID_1": 12676, "PARCEL_NO_": "105402099100", "Tax_Legal_": "D-3 ROSS NO.8 NEW QTR", "Name": "ANTHONY, SIMON & ALEXANDRINA", "Address": "11-13 Estate Dorothea", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.10884084600001, "SHAPE_Area": 813.28856252499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359662.58110000193119, 257206.916200000792742 ], [ 359694.8108000010252, 257204.641100000590086 ], [ 359691.912500001490116, 257189.332699999213219 ], [ 359689.447599999606609, 257179.995600000023842 ], [ 359657.452600002288818, 257181.928800001740456 ], [ 359662.58110000193119, 257206.916200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402114400", "MAP": "D9-8719-T012", "PARCEL_NAM": "D-9", "ACRE": ".26", "LONGITUDE": -64.92222538, "LATITUDE": 18.34425553, "OBJECTID_1": 19219, "PARCEL_NO_": "105402114400", "Tax_Legal_": "D-9 ROSS No. 8 NEW QUARTER", "Name": "VARLACK, JAMES J.", "Address": "10-M Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.940158432, "SHAPE_Area": 807.84798294100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359729.88570000231266, 257195.974800001829863 ], [ 359729.340599998831749, 257191.658300001174212 ], [ 359701.701899997889996, 257196.677499998360872 ], [ 359706.574400000274181, 257224.063299998641014 ], [ 359733.263199999928474, 257222.722699999809265 ], [ 359732.869099996984005, 257219.601500000804663 ], [ 359729.88570000231266, 257195.974800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099700", "MAP": "D9-7190-T003", "PARCEL_NAM": "D-10", "ACRE": ".45", "LONGITUDE": -64.92182566, "LATITUDE": 18.34419362, "OBJECTID_1": 12682, "PARCEL_NO_": "105402099700", "Tax_Legal_": "D-10 ROSS NO.8 NEW QTR", "Name": "HOSTON, KIRA", "Address": "146-36 Anna's Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.408602707, "SHAPE_Area": 1854.208816 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359798.452600002288818, 257206.178199999034405 ], [ 359782.450499996542931, 257182.013599999248981 ], [ 359729.340599998831749, 257191.658300001174212 ], [ 359729.88570000231266, 257195.974800001829863 ], [ 359732.869099996984005, 257219.601500000804663 ], [ 359733.263199999928474, 257222.722699999809265 ], [ 359761.51630000025034, 257219.646699998527765 ], [ 359764.787699997425079, 257216.637299999594688 ], [ 359787.43299999833107, 257209.035100001841784 ], [ 359794.609200000762939, 257207.174600001424551 ], [ 359798.452600002288818, 257206.178199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-8719-T012", "PARCEL_NAM": "D-6", "ACRE": ".26", "LONGITUDE": -64.92247571, "LATITUDE": 18.34479459, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.779424651, "SHAPE_Area": 874.54536264299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359709.254199996590614, 257280.928399998694658 ], [ 359704.023699998855591, 257253.302099999040365 ], [ 359672.508900001645088, 257255.286899998784065 ], [ 359673.774400003254414, 257261.4527000002563 ], [ 359674.446299999952316, 257264.726199999451637 ], [ 359675.37219999730587, 257269.23759999871254 ], [ 359678.117700003087521, 257282.614199999719858 ], [ 359694.795299999415874, 257281.878800000995398 ], [ 359702.859600000083447, 257281.523200001567602 ], [ 359709.254199996590614, 257280.928399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "G9-2421-T74", "PARCEL_NAM": "C-22", "ACRE": "0.19", "LONGITUDE": -64.92242488, "LATITUDE": 18.34504283, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.93243361, "SHAPE_Area": 841.95209474299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359709.076700001955032, 257284.853199999779463 ], [ 359709.254199996590614, 257280.928399998694658 ], [ 359702.859600000083447, 257281.523200001567602 ], [ 359694.795299999415874, 257281.878800000995398 ], [ 359678.117700003087521, 257282.614199999719858 ], [ 359679.184000000357628, 257287.809399999678135 ], [ 359681.184900000691414, 257297.558499999344349 ], [ 359681.716499999165535, 257300.148400001227856 ], [ 359684.035199999809265, 257310.918800000101328 ], [ 359700.13120000064373, 257308.755100000649691 ], [ 359716.518200002610683, 257306.542599998414516 ], [ 359715.747400000691414, 257304.331399999558926 ], [ 359713.085900001227856, 257299.57209999859333 ], [ 359711.370999999344349, 257295.610100001096725 ], [ 359710.137900002300739, 257291.020500000566244 ], [ 359709.076700001955032, 257284.853199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090700", "MAP": "D9-8419-T010", "PARCEL_NAM": "C-30/C-30", "ACRE": null, "LONGITUDE": -64.92183641, "LATITUDE": 18.34489865, "OBJECTID_1": 12596, "PARCEL_NO_": "105402090700", "Tax_Legal_": "C-30, D-30 & C-26-1 ROSS 8 NEW QUARTER", "Name": "LANNS GRIFFIN, RUBYLETTE A.", "Address": "PO Box 307901", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16700, "Improved_V": 120200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.78102086, "SHAPE_Area": 706.91668913800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359774.459700003266335, 257290.914299998432398 ], [ 359762.785800002515316, 257264.294199999421835 ], [ 359760.8716000020504, 257258.361600000411272 ], [ 359741.894400000572205, 257273.912300001829863 ], [ 359743.769400000572205, 257277.717700000852346 ], [ 359741.002300001680851, 257277.975099999457598 ], [ 359752.166900001466274, 257289.909499999135733 ], [ 359753.312899999320507, 257289.685899998992682 ], [ 359760.128499999642372, 257298.492300000041723 ], [ 359764.154600001871586, 257299.158500000834465 ], [ 359774.459700003266335, 257290.914299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099500", "MAP": "D9-8719-T012", "PARCEL_NAM": "D-7", "ACRE": ".27", "LONGITUDE": -64.92207666, "LATITUDE": 18.3447628, "OBJECTID_1": 12680, "PARCEL_NO_": "105402099500", "Tax_Legal_": "D-7 ROSS NO.8 NEW QTR", "Name": "CHERYL NADINE BELL", "Address": "PO Box 307564", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037564, "Country": "United States", "Land_Value": 27300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.017427704, "SHAPE_Area": 927.38341811500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359760.8716000020504, 257258.361600000411272 ], [ 359760.82209999859333, 257258.208099998533726 ], [ 359744.726499997079372, 257251.201200000941753 ], [ 359712.298100002110004, 257256.232999999076128 ], [ 359716.570799998939037, 257280.247800000011921 ], [ 359726.20269999653101, 257279.351799998432398 ], [ 359741.002300001680851, 257277.975099999457598 ], [ 359743.769400000572205, 257277.717700000852346 ], [ 359741.894400000572205, 257273.912300001829863 ], [ 359757.229299999773502, 257261.3462999984622 ], [ 359760.8716000020504, 257258.361600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402098700", "MAP": "D9-6972-T001", "PARCEL_NAM": "C-61", "ACRE": ".35", "LONGITUDE": -64.92140791, "LATITUDE": 18.34510297, "OBJECTID_1": 12672, "PARCEL_NO_": "105402098700", "Tax_Legal_": "PARCEL C-61 EST.ROSS No.8 NEW QTR.", "Name": "SIERRA, KIMBERLY E. & DAVID", "Address": "PO Box 781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.85081210600001, "SHAPE_Area": 2182.4389546000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359826.351400002837181, 257318.212900001555681 ], [ 359822.921700000762939, 257295.963700000196695 ], [ 359807.687100000679493, 257274.209899999201298 ], [ 359784.185999996960163, 257276.04280000180006 ], [ 359768.293099999427795, 257276.852600000798702 ], [ 359774.459700003266335, 257290.914299998432398 ], [ 359799.127300001680851, 257320.618200000375509 ], [ 359805.100299999117851, 257327.810699999332428 ], [ 359816.868400000035763, 257342.472600001841784 ], [ 359820.291500002145767, 257346.670299999415874 ], [ 359821.1824000030756, 257347.870700001716614 ], [ 359822.233800001442432, 257347.028400000184774 ], [ 359826.096699997782707, 257340.625399999320507 ], [ 359825.775100000202656, 257336.310400001704693 ], [ 359826.448700003325939, 257323.587600000202656 ], [ 359826.351400002837181, 257318.212900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402098800", "MAP": "D9-7964-T007", "PARCEL_NAM": "D-12", "ACRE": ".26", "LONGITUDE": -64.92165972, "LATITUDE": 18.34472336, "OBJECTID_1": 12673, "PARCEL_NO_": "105402098800", "Tax_Legal_": "D-12 ESTATE ROSS NO.8 NEW QTR", "Name": "RIVERS, CLIVE & VERNA", "Address": "PO Box 308473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.58746805199999, "SHAPE_Area": 1104.87725411 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359776.460199996829033, 257241.675900001078844 ], [ 359744.726499997079372, 257251.201200000941753 ], [ 359760.976800002157688, 257258.275400001555681 ], [ 359760.8716000020504, 257258.361600000411272 ], [ 359762.785800002515316, 257264.294199999421835 ], [ 359768.293099999427795, 257276.852600000798702 ], [ 359784.185999996960163, 257276.04280000180006 ], [ 359807.687100000679493, 257274.209899999201298 ], [ 359805.594999998807907, 257271.071899998933077 ], [ 359794.983499996364117, 257260.25620000064373 ], [ 359777.84179999679327, 257242.910500001162291 ], [ 359776.460199996829033, 257241.675900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404170100", "MAP": "A9-793-T014", "PARCEL_NAM": "1 REM", "ACRE": "12.475", "LONGITUDE": -64.92029743000001, "LATITUDE": 18.3326663, "OBJECTID_1": 19574, "PARCEL_NO_": "105404170100", "Tax_Legal_": "1, 2, 3, & ESTATE THOMAS 6F & 6B NEW QUARTER", "Name": "EMPLOYEES RETIREMENT SYSTEM OF THE GOVT OF THE VI", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1149.2911516900001, "SHAPE_Area": 49984.677599499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359801.131700001657009, 255892.94480000063777 ], [ 359832.685900002717972, 255914.088799998164177 ], [ 359872.108900003135204, 255947.95549999922514 ], [ 359909.997299998998642, 255985.155999999493361 ], [ 359940.741899996995926, 256010.609000001102686 ], [ 359966.853299997746944, 256033.411800000816584 ], [ 359978.044600002467632, 256044.902399998158216 ], [ 359990.004399999976158, 256060.832299999892712 ], [ 360053.241599999368191, 256154.251800000667572 ], [ 360118.872800000011921, 256113.833799999207258 ], [ 360085.023400001227856, 256076.386599998921156 ], [ 360077.84570000320673, 256067.039700001478195 ], [ 360050.08330000191927, 256012.983600001782179 ], [ 360040.554999999701977, 255995.596000000834465 ], [ 359999.911399997770786, 255939.112399999052286 ], [ 359995.958999998867512, 255929.791999999433756 ], [ 359992.837999999523163, 255917.522999998182058 ], [ 359989.266099996864796, 255884.492499999701977 ], [ 359987.686499997973442, 255859.641199998557568 ], [ 359987.972599998116493, 255851.954599998891354 ], [ 359987.021700002253056, 255841.367400001734495 ], [ 359985.155199997127056, 255833.578999999910593 ], [ 359981.694200001657009, 255826.357599999755621 ], [ 359976.551700003445148, 255820.380399998277426 ], [ 359965.51799999922514, 255811.541499998420477 ], [ 359959.900799997150898, 255808.329100001603365 ], [ 359933.420100003480911, 255793.124800000339746 ], [ 359894.083400003612041, 255772.537799999117851 ], [ 359885.23200000077486, 255770.354400001466274 ], [ 359873.947200000286102, 255769.839899998158216 ], [ 359867.489500001072884, 255770.631400000303984 ], [ 359847.270599998533726, 255777.643100000917912 ], [ 359831.912900000810623, 255781.950399998575449 ], [ 359827.814800001680851, 255789.727299999445677 ], [ 359802.765100002288818, 255795.855099998414516 ], [ 359809.192299999296665, 255798.651900000870228 ], [ 359797.85530000180006, 255804.258699998259544 ], [ 359787.258199997246265, 255817.68189999833703 ], [ 359771.923900000751019, 255819.245200000703335 ], [ 359754.950000002980232, 255823.961399998515844 ], [ 359739.392700001597404, 255851.698399998247623 ], [ 359801.131700001657009, 255892.94480000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404160100", "MAP": "D9-9320-T019", "PARCEL_NAM": "4 REM", "ACRE": "3.45", "LONGITUDE": -64.9193502, "LATITUDE": 18.33571767, "OBJECTID_1": 19556, "PARCEL_NO_": "105404160100", "Tax_Legal_": "4 ESTATE THOMAS KINGS QTR", "Name": "IN-USVI, LLC", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11457400, "Improved_V": 3938100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 771.72678609399998, "SHAPE_Area": 14020.8268209 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360022.301299996674061, 256346.158900000154972 ], [ 360036.059600003063679, 256329.093199998140335 ], [ 360055.771099999547005, 256298.930700000375509 ], [ 360071.513899996876717, 256275.118099998682737 ], [ 360077.599299997091293, 256265.989999998360872 ], [ 360079.319099999964237, 256254.083700001239777 ], [ 360085.139899998903275, 256244.426399998366833 ], [ 360092.528800003230572, 256237.809200000017881 ], [ 360109.132299996912479, 256202.859600000083447 ], [ 360053.617499999701977, 256166.055399999022484 ], [ 360049.614699997007847, 256162.645100001245737 ], [ 360016.131599999964237, 256212.189100001007318 ], [ 359990.466099999845028, 256195.936200000345707 ], [ 359969.518100000917912, 256234.9989 ], [ 359994.696900002658367, 256248.378899998962879 ], [ 360011.365699999034405, 256217.263900000602007 ], [ 360036.765699997544289, 256230.122600000351667 ], [ 360023.430699996650219, 256254.252700001001358 ], [ 360030.574500001966953, 256258.538899999111891 ], [ 360027.716899998486042, 256263.9364 ], [ 360033.749499998986721, 256267.270199999213219 ], [ 360025.653200000524521, 256282.9864999987185 ], [ 359998.189400002360344, 256270.603999998420477 ], [ 359997.395599998533726, 256269.969000000506639 ], [ 359995.490599997341633, 256270.762699998915195 ], [ 359993.903099998831749, 256271.239000000059605 ], [ 359979.123499996960163, 256285.026900000870228 ], [ 359974.942800000309944, 256289.030999999493361 ], [ 359971.767800003290176, 256287.125999998301268 ], [ 359971.608999997377396, 256290.777199998497963 ], [ 359972.561499997973442, 256289.507199998944998 ], [ 359979.546499997377396, 256293.793499998748302 ], [ 359977.165299996733665, 256297.127300001680851 ], [ 359978.381099998950958, 256297.953999999910593 ], [ 359979.796999998390675, 256298.916900001466274 ], [ 359981.13400000333786, 256299.8260000012815 ], [ 359978.542700000107288, 256303.356300000101328 ], [ 359968.6891999989748, 256316.780200000852346 ], [ 359966.052299998700619, 256337.178300000727177 ], [ 359970.156700000166893, 256339.464299999177456 ], [ 359968.291299998760223, 256342.355099998414516 ], [ 359967.114000000059605, 256344.179400000721216 ], [ 359966.687799997627735, 256343.958599999547005 ], [ 359965.79110000282526, 256343.486699998378754 ], [ 359965.79110000282526, 256351.725400000810623 ], [ 359967.325699999928474, 256356.170400001108646 ], [ 359969.336499996483326, 256358.604600001126528 ], [ 359970.236100003123283, 256361.779599998146296 ], [ 359971.241499997675419, 256364.637099999934435 ], [ 359971.256999999284744, 256364.856899999082088 ], [ 359971.496399998664856, 256368.256499998271465 ], [ 359974.488799996674061, 256369.614799998700619 ], [ 359985.065700002014637, 256374.415800001472235 ], [ 359994.30969999730587, 256380.815000001341105 ], [ 359995.682700000703335, 256379.235199999064207 ], [ 360013.966899998486042, 256358.197500001639128 ], [ 360022.301299996674061, 256346.158900000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404160100", "MAP": "F9-3125", "PARCEL_NAM": "4B", "ACRE": null, "LONGITUDE": -64.91869611, "LATITUDE": 18.33539053, "OBJECTID_1": 19556, "PARCEL_NO_": "105404160100", "Tax_Legal_": "4 ESTATE THOMAS KINGS QTR", "Name": "IN-USVI, LLC", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11457400, "Improved_V": 3938100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.758036804, "SHAPE_Area": 365.88863586299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360083.654200002551079, 256256.489799998700619 ], [ 360071.990800000727177, 256281.040600001811981 ], [ 360085.895900003612041, 256257.934200000017881 ], [ 360104.70719999819994, 256226.8462999984622 ], [ 360116.161100000143051, 256207.519400000572205 ], [ 360109.132299996912479, 256202.859600000083447 ], [ 360083.654200002551079, 256256.489799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404160400", "MAP": "D9-7958-T007", "PARCEL_NAM": "4C-1", "ACRE": ".457", "LONGITUDE": -64.92012173000001, "LATITUDE": 18.33633965, "OBJECTID_1": 19571, "PARCEL_NO_": "105404160400", "Tax_Legal_": "4D,4E&5B ESTATE THOMAS 3/4 UNDIVIDED INT.", "Name": "IN-USVI, LLC", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1730300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.4602019, "SHAPE_Area": 2833.0109603199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359936.04900000244379, 256381.899900000542402 ], [ 359937.160199999809265, 256379.042399998754263 ], [ 359943.192699998617172, 256381.264899998903275 ], [ 359952.241499997675419, 256359.516100000590086 ], [ 359954.824799999594688, 256360.688700001686811 ], [ 359957.129900000989437, 256355.077399998903275 ], [ 359959.385200001299381, 256349.197399999946356 ], [ 359957.32150000333786, 256347.7685999982059 ], [ 359960.655299998819828, 256340.783599998801947 ], [ 359966.687799997627735, 256343.958599999547005 ], [ 359967.114000000059605, 256344.179400000721216 ], [ 359968.291299998760223, 256342.355099998414516 ], [ 359970.156700000166893, 256339.464299999177456 ], [ 359959.940499998629093, 256333.774300001561642 ], [ 359957.863600000739098, 256332.425200000405312 ], [ 359968.6891999989748, 256316.780200000852346 ], [ 359978.542700000107288, 256303.356300000101328 ], [ 359981.13400000333786, 256299.8260000012815 ], [ 359979.796999998390675, 256298.916900001466274 ], [ 359978.381099998950958, 256297.953999999910593 ], [ 359977.165299996733665, 256297.127300001680851 ], [ 359979.546499997377396, 256293.793499998748302 ], [ 359972.561499997973442, 256289.507199998944998 ], [ 359971.608999997377396, 256290.777199998497963 ], [ 359963.036499999463558, 256286.014699999243021 ], [ 359962.083999998867512, 256287.284699998795986 ], [ 359957.638999998569489, 256285.221000000834465 ], [ 359937.795199997723103, 256313.31980000063777 ], [ 359940.811499997973442, 256314.907299999147654 ], [ 359937.636500000953674, 256318.717300001531839 ], [ 359914.935199998319149, 256371.581199999898672 ], [ 359916.205200001597404, 256371.739900000393391 ], [ 359919.062700003385544, 256372.692400000989437 ], [ 359918.961000002920628, 256373.031399998813868 ], [ 359918.586400002241135, 256374.279899999499321 ], [ 359928.270199999213219, 256377.772399999201298 ], [ 359927.635200001299381, 256379.042399998754263 ], [ 359936.04900000244379, 256381.899900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050200", "MAP": "D9-4102-T87", "PARCEL_NAM": "5A-2", "ACRE": ".372", "LONGITUDE": -64.92168203, "LATITUDE": 18.33831612, "OBJECTID_1": 19336, "PARCEL_NO_": "105404050200", "Tax_Legal_": "5-1,2,3,5-A-2&5-A-3 EST. THOMAS/KINGS QT", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16622500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.12657763600001, "SHAPE_Area": 1711.4363728000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359728.3158999979496, 256569.97749999910593 ], [ 359725.085900001227856, 256571.560899998992682 ], [ 359735.430900000035763, 256573.503199998289347 ], [ 359745.086599998176098, 256574.917500000447035 ], [ 359759.056199997663498, 256574.232099998742342 ], [ 359765.520499996840954, 256571.883200000971556 ], [ 359770.369300000369549, 256570.054800000041723 ], [ 359795.999899998307228, 256555.585900001227856 ], [ 359814.08110000193119, 256544.791600000113249 ], [ 359822.995399996638298, 256539.026399999856949 ], [ 359811.288900002837181, 256520.419700000435114 ], [ 359797.414599999785423, 256528.978799998760223 ], [ 359782.463500000536442, 256541.950699999928474 ], [ 359774.322800002992153, 256547.088700000196695 ], [ 359728.3158999979496, 256569.97749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050300", "MAP": "D9-4101-T87", "PARCEL_NAM": "5F", "ACRE": "1.23", "LONGITUDE": -64.92094685000001, "LATITUDE": 18.33688213, "OBJECTID_1": 19337, "PARCEL_NO_": "105404050300", "Tax_Legal_": "5A-1,5D,5E,5F, & 5G EST. THOMAS MARINA AREA, NEW QTR", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27482000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.77085548600002, "SHAPE_Area": 4737.1371870399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359912.430900000035763, 256380.224800001829863 ], [ 359909.730999998748302, 256379.319400001317263 ], [ 359913.867700003087521, 256374.428199999034405 ], [ 359879.5371999964118, 256359.673200000077486 ], [ 359868.70830000191927, 256348.038899999111891 ], [ 359859.390100002288818, 256356.966699998825788 ], [ 359843.708400003612041, 256371.539000000804663 ], [ 359833.438400000333786, 256379.461800001561642 ], [ 359826.956399999558926, 256383.945900000631809 ], [ 359821.566200003027916, 256386.303700000047684 ], [ 359812.139200001955032, 256389.695799998939037 ], [ 359807.697300001978874, 256391.857799999415874 ], [ 359812.182499997317791, 256398.391800001263618 ], [ 359842.367899999022484, 256442.365299999713898 ], [ 359842.436700001358986, 256442.465599998831749 ], [ 359875.019299998879433, 256417.173900000751019 ], [ 359905.604800000786781, 256388.065499998629093 ], [ 359912.430900000035763, 256380.224800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050300", "MAP": "D9-4101-T87", "PARCEL_NAM": "5D", "ACRE": "1.418", "LONGITUDE": -64.92058546, "LATITUDE": 18.3371794, "OBJECTID_1": 19337, "PARCEL_NO_": "105404050300", "Tax_Legal_": "5A-1,5D,5E,5F, & 5G EST. THOMAS MARINA AREA, NEW QTR", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27482000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 312.69460399500002, "SHAPE_Area": 4956.8517504199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359959.236900001764297, 256395.921599999070168 ], [ 359912.430900000035763, 256380.224800001829863 ], [ 359905.604800000786781, 256388.065499998629093 ], [ 359875.019299998879433, 256417.173900000751019 ], [ 359842.436700001358986, 256442.465599998831749 ], [ 359867.750699996948242, 256479.342599999159575 ], [ 359891.286200001835823, 256463.485300000756979 ], [ 359943.785199999809265, 256414.806000001728535 ], [ 359944.890100002288818, 256411.078200001269579 ], [ 359959.236900001764297, 256395.921599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050100", "MAP": "D9-4101-T87", "PARCEL_NAM": "5C REM", "ACRE": ".649", "LONGITUDE": -64.92036303, "LATITUDE": 18.33733841, "OBJECTID_1": 19335, "PARCEL_NO_": "105404050100", "Tax_Legal_": "5C EST. THOMAS KINGS QTR", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5749800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.20708900099999, "SHAPE_Area": 1937.76243989 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359975.947700001299381, 256401.525699999183416 ], [ 359959.236900001764297, 256395.921599999070168 ], [ 359944.890100002288818, 256411.078200001269579 ], [ 359943.785199999809265, 256414.806000001728535 ], [ 359891.286200001835823, 256463.485300000756979 ], [ 359867.750699996948242, 256479.342599999159575 ], [ 359870.85419999808073, 256483.863800000399351 ], [ 359877.361699998378754, 256493.343899998813868 ], [ 359897.366700001060963, 256477.566700000315905 ], [ 359919.115500003099442, 256457.881599999964237 ], [ 359941.181800000369549, 256436.609099999070168 ], [ 359948.325599998235703, 256429.782800000160933 ], [ 359958.326899997889996, 256418.987799998372793 ], [ 359973.090599998831749, 256404.382800001651049 ], [ 359975.947700001299381, 256401.525699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050300", "MAP": "D9-4101-T87", "PARCEL_NAM": "5E", "ACRE": ".75", "LONGITUDE": -64.92121969, "LATITUDE": 18.33765165, "OBJECTID_1": 19337, "PARCEL_NO_": "105404050300", "Tax_Legal_": "5A-1,5D,5E,5F, & 5G EST. THOMAS MARINA AREA, NEW QTR", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27482000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.72330694300001, "SHAPE_Area": 2818.2955239200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359828.129900000989437, 256509.981100000441074 ], [ 359867.750699996948242, 256479.342599999159575 ], [ 359842.436700001358986, 256442.465599998831749 ], [ 359792.387299999594688, 256475.287300001829863 ], [ 359820.016400001943111, 256515.825300000607967 ], [ 359828.129900000989437, 256509.981100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050300", "MAP": "D9-4101-T87", "PARCEL_NAM": "5A-1 REM", "ACRE": ".375", "LONGITUDE": -64.92104175, "LATITUDE": 18.33787571, "OBJECTID_1": 19337, "PARCEL_NO_": "105404050300", "Tax_Legal_": "5A-1,5D,5E,5F, & 5G EST. THOMAS MARINA AREA, NEW QTR", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27482000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.776894645, "SHAPE_Area": 918.08541933000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359851.961499996483326, 256510.203099999576807 ], [ 359877.361699998378754, 256493.343899998813868 ], [ 359870.85419999808073, 256483.863800000399351 ], [ 359867.750699996948242, 256479.342599999159575 ], [ 359828.129900000989437, 256509.981100000441074 ], [ 359820.016400001943111, 256515.825300000607967 ], [ 359827.472599998116493, 256527.757599998265505 ], [ 359846.008400000631809, 256515.097899999469519 ], [ 359851.961499996483326, 256510.203099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050200", "MAP": "D9-4102-T87", "PARCEL_NAM": "5-2", "ACRE": ".285", "LONGITUDE": -64.92243919000001, "LATITUDE": 18.33833935, "OBJECTID_1": 19336, "PARCEL_NO_": "105404050200", "Tax_Legal_": "5-1,2,3,5-A-2&5-A-3 EST. THOMAS/KINGS QT", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16622500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.604198368, "SHAPE_Area": 929.55400929899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359676.824199996888638, 256545.178599998354912 ], [ 359697.36150000244379, 256567.256499998271465 ], [ 359707.047499999403954, 256571.35700000077486 ], [ 359725.085900001227856, 256571.560899998992682 ], [ 359700.139700002968311, 256531.74549999833107 ], [ 359676.824199996888638, 256545.178599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404010400", "MAP": "A3-30-T37", "PARCEL_NAM": "31B", "ACRE": null, "LONGITUDE": -64.92258832, "LATITUDE": 18.33850241, "OBJECTID_1": 19319, "PARCEL_NO_": "105404010400", "Tax_Legal_": "31A&B TAARNEBERG KINGS QTR", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 165000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.216552909, "SHAPE_Area": 996.27140509399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359703.741700001060963, 256591.060899998992682 ], [ 359705.413000002503395, 256590.388099998235703 ], [ 359706.810199998319149, 256588.931099999696016 ], [ 359706.919900000095367, 256583.393800001591444 ], [ 359697.36150000244379, 256567.256499998271465 ], [ 359676.824199996888638, 256545.178599998354912 ], [ 359669.085199996829033, 256564.201900001615286 ], [ 359663.41950000077486, 256578.178399998694658 ], [ 359664.242200002074242, 256578.419399999082088 ], [ 359665.063100002706051, 256578.666400000452995 ], [ 359665.882200002670288, 256578.919399999082088 ], [ 359666.699500001966953, 256579.178199999034405 ], [ 359703.741700001060963, 256591.060899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404020400", "MAP": "A3-30-T37", "PARCEL_NAM": "36A", "ACRE": null, "LONGITUDE": -64.92293981, "LATITUDE": 18.33839036, "OBJECTID_1": 19324, "PARCEL_NO_": "105404020400", "Tax_Legal_": "36AA TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 216000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.985941207, "SHAPE_Area": 1463.82628937 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359669.085199996829033, 256564.201900001615286 ], [ 359676.824199996888638, 256545.178599998354912 ], [ 359664.748800002038479, 256543.739100001752377 ], [ 359629.264300003647804, 256543.864599999040365 ], [ 359624.800399996340275, 256543.215199999511242 ], [ 359623.353799998760223, 256561.992800001055002 ], [ 359623.1824000030756, 256573.697200000286102 ], [ 359623.222199998795986, 256573.696199998259544 ], [ 359623.262000001966953, 256573.695199999958277 ], [ 359623.301899999380112, 256573.694099999964237 ], [ 359623.341700002551079, 256573.69310000166297 ], [ 359627.551700003445148, 256573.581799998879433 ], [ 359632.914399996399879, 256573.561999998986721 ], [ 359638.27250000089407, 256573.785900000482798 ], [ 359643.614799998700619, 256574.253199998289347 ], [ 359648.930500000715256, 256574.962799999862909 ], [ 359654.20830000191927, 256575.91330000013113 ], [ 359659.4375, 256577.102600000798702 ], [ 359663.41950000077486, 256578.178399998694658 ], [ 359669.085199996829033, 256564.201900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404020300", "MAP": "A3-30-T37", "PARCEL_NAM": "36B", "ACRE": null, "LONGITUDE": -64.92327497, "LATITUDE": 18.33837161, "OBJECTID_1": 19323, "PARCEL_NO_": "105404020300", "Tax_Legal_": "36BA TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 109000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.25458871799999, "SHAPE_Area": 738.18549716099994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359623.1824000030756, 256573.697200000286102 ], [ 359623.353799998760223, 256561.992800001055002 ], [ 359624.800399996340275, 256543.215199999511242 ], [ 359617.9983000010252, 256542.225600000470877 ], [ 359602.449199996888638, 256535.458200000226498 ], [ 359601.658600002527237, 256556.649099998176098 ], [ 359601.426100000739098, 256572.515900000929832 ], [ 359606.843299999833107, 256573.135499998927116 ], [ 359612.280799999833107, 256573.539200000464916 ], [ 359617.729999996721745, 256573.726599998772144 ], [ 359623.1824000030756, 256573.697200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404020200", "MAP": "A3-30-T37", "PARCEL_NAM": "37B", "ACRE": null, "LONGITUDE": -64.92365598000001, "LATITUDE": 18.33827083, "OBJECTID_1": 19322, "PARCEL_NO_": "105404020200", "Tax_Legal_": "37B TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 312000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.17104624800001, "SHAPE_Area": 2501.2813587400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359601.658600002527237, 256556.649099998176098 ], [ 359602.449199996888638, 256535.458200000226498 ], [ 359555.849399998784065, 256515.176600001752377 ], [ 359545.806900002062321, 256515.605399999767542 ], [ 359544.756800003349781, 256537.158500000834465 ], [ 359544.61540000140667, 256560.722899999469519 ], [ 359548.275700002908707, 256561.958700001239777 ], [ 359551.982100002467632, 256563.048599999397993 ], [ 359555.728699997067451, 256563.990800000727177 ], [ 359559.509700000286102, 256564.784000001847744 ], [ 359594.22240000218153, 256571.350699998438358 ], [ 359596.017399996519089, 256571.67790000140667 ], [ 359597.816500000655651, 256571.981199998408556 ], [ 359599.619599997997284, 256572.260600000619888 ], [ 359601.426100000739098, 256572.515900000929832 ], [ 359601.658600002527237, 256556.649099998176098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050200", "MAP": "D9-4102-T87", "PARCEL_NAM": "5A-3", "ACRE": ".047", "LONGITUDE": -64.92209, "LATITUDE": 18.33854815, "OBJECTID_1": 19336, "PARCEL_NO_": "105404050200", "Tax_Legal_": "5-1,2,3,5-A-2&5-A-3 EST. THOMAS/KINGS QT", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16622500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.357499949900003, "SHAPE_Area": 164.64203044499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359725.085900001227856, 256571.560899998992682 ], [ 359730.844899997115135, 256583.612300001084805 ], [ 359759.056199997663498, 256574.232099998742342 ], [ 359745.086599998176098, 256574.917500000447035 ], [ 359735.430900000035763, 256573.503199998289347 ], [ 359725.085900001227856, 256571.560899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-8676-T012", "PARCEL_NAM": "D-17", "ACRE": ".07", "LONGITUDE": -64.9207989, "LATITUDE": 18.34293213, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.6155116937, "SHAPE_Area": 296.460401262 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359860.071699999272823, 257056.344000000506639 ], [ 359860.555900000035763, 257072.101100001484156 ], [ 359867.358000002801418, 257071.412500001490116 ], [ 359874.13120000064373, 257070.481699999421835 ], [ 359875.200099997222424, 257070.329199999570847 ], [ 359876.499300003051758, 257069.924199998378754 ], [ 359877.70549999922514, 257069.294199999421835 ], [ 359878.780299998819828, 257068.459499999880791 ], [ 359879.6891999989748, 257067.446600001305342 ], [ 359880.403200000524521, 257066.288100000470877 ], [ 359880.899499997496605, 257065.021000001579523 ], [ 359881.162100002169609, 257063.685699999332428 ], [ 359881.182700000703335, 257062.324999999254942 ], [ 359880.960600003600121, 257060.982299998402596 ], [ 359880.502999998629093, 257059.700699999928474 ], [ 359879.824400000274181, 257058.521099999547005 ], [ 359878.94650000333786, 257057.481300000101328 ], [ 359876.821599997580051, 257055.378499999642372 ], [ 359860.071699999272823, 257056.344000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402116700", "MAP": "D9-9073-T016", "PARCEL_NAM": "D-27", "ACRE": "0.33", "LONGITUDE": -64.92262534, "LATITUDE": 18.34320429, "OBJECTID_1": 19226, "PARCEL_NO_": "105402116700", "Tax_Legal_": "D-27 ROSS No. 8 NEW QUARTER", "Name": "MARK, PHILLIP", "Address": "1409 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.736756533, "SHAPE_Area": 1325.5408662499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359691.211999997496605, 257116.639800000935793 ], [ 359688.293399997055531, 257066.245799999684095 ], [ 359680.19650000333786, 257066.712600000202656 ], [ 359660.985200002789497, 257067.820000000298023 ], [ 359666.347999997437, 257118.507800001651049 ], [ 359691.211999997496605, 257116.639800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105402090300", "MAP": null, "PARCEL_NAM": "D", "ACRE": null, "LONGITUDE": -64.92178769, "LATITUDE": 18.34324992, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.35099010800002, "SHAPE_Area": 871.66276408900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359829.750100001692772, 257078.585999999195337 ], [ 359833.361199997365475, 257078.535599999129772 ], [ 359833.66330000013113, 257078.547600001096725 ], [ 359833.599500000476837, 257072.443300001323223 ], [ 359832.137100003659725, 257072.429400000721216 ], [ 359830.674800001084805, 257072.451299998909235 ], [ 359829.213500000536442, 257072.509199999272823 ], [ 359827.754000000655651, 257072.602899998426437 ], [ 359810.615199998021126, 257076.514699999243021 ], [ 359810.332500003278255, 257076.625900000333786 ], [ 359810.050399996340275, 257076.738600000739098 ], [ 359809.768899999558926, 257076.852800000458956 ], [ 359809.487999998033047, 257076.968299999833107 ], [ 359801.776100002229214, 257080.069099999964237 ], [ 359792.583599999547005, 257083.522599998861551 ], [ 359783.308200001716614, 257086.746700000017881 ], [ 359773.955600000917912, 257089.739599999040365 ], [ 359764.531599998474121, 257092.499400001019239 ], [ 359760.858900003135204, 257093.382199998944998 ], [ 359755.091700002551079, 257094.973099999129772 ], [ 359749.394100002944469, 257096.797600001096725 ], [ 359743.775499999523163, 257098.852800000458956 ], [ 359738.245300002396107, 257101.135200001299381 ], [ 359732.812700003385544, 257103.640999998897314 ], [ 359727.824600003659725, 257106.184799998998642 ], [ 359722.601400002837181, 257109.113200001418591 ], [ 359704.677199997007847, 257128.692400000989437 ], [ 359701.258299998939037, 257132.273699998855591 ], [ 359704.987400002777576, 257136.412999998778105 ], [ 359725.157999999821186, 257114.683200001716614 ], [ 359730.260300002992153, 257111.796000000089407 ], [ 359735.478299997746944, 257109.123399998992682 ], [ 359738.330399997532368, 257107.77589999884367 ], [ 359743.703699998557568, 257105.444899998605251 ], [ 359749.169299997389317, 257103.339499998837709 ], [ 359754.717799998819828, 257101.46339999884367 ], [ 359760.339599996805191, 257099.81980000063777 ], [ 359766.024899996817112, 257098.41160000115633 ], [ 359774.567299999296665, 257095.925999999046326 ], [ 359784.001199997961521, 257092.939800001680851 ], [ 359793.358599998056889, 257089.722100000828505 ], [ 359802.633900001645088, 257086.27479999884963 ], [ 359811.821400001645088, 257082.600099999457598 ], [ 359812.194499999284744, 257082.44709999859333 ], [ 359815.585100002586842, 257081.203600000590086 ], [ 359819.051899999380112, 257080.191700000315905 ], [ 359822.579099997878075, 257079.415899999439716 ], [ 359826.150600001215935, 257078.879900000989437 ], [ 359829.750100001692772, 257078.585999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": null, "PARCEL_NAM": "D-16", "ACRE": ".54", "LONGITUDE": -64.92139875, "LATITUDE": 18.34299561, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.37361288599999, "SHAPE_Area": 1861.9479713799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359764.937899999320507, 257061.827799998223782 ], [ 359766.486199997365475, 257091.927000001072884 ], [ 359773.955600000917912, 257089.739599999040365 ], [ 359783.308200001716614, 257086.746700000017881 ], [ 359792.583599999547005, 257083.522599998861551 ], [ 359801.776100002229214, 257080.069099999964237 ], [ 359809.487999998033047, 257076.968299999833107 ], [ 359809.768899999558926, 257076.852800000458956 ], [ 359810.050399996340275, 257076.738600000739098 ], [ 359810.332500003278255, 257076.625900000333786 ], [ 359810.615199998021126, 257076.514699999243021 ], [ 359827.754000000655651, 257072.602899998426437 ], [ 359829.213500000536442, 257072.509199999272823 ], [ 359830.674800001084805, 257072.451299998909235 ], [ 359832.137100003659725, 257072.429400000721216 ], [ 359833.599500000476837, 257072.443300001323223 ], [ 359840.062799997627735, 257072.707100000232458 ], [ 359846.899599999189377, 257072.748799998313189 ], [ 359853.733499996364117, 257072.546700000762939 ], [ 359860.555900000035763, 257072.101100001484156 ], [ 359860.071699999272823, 257056.344000000506639 ], [ 359822.156700000166893, 257058.529500000178814 ], [ 359789.974399998784065, 257060.38459999859333 ], [ 359776.357299998402596, 257061.169599998742342 ], [ 359773.030199997127056, 257061.361299999058247 ], [ 359764.937899999320507, 257061.827799998223782 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-9061-T016", "PARCEL_NAM": "D-22", "ACRE": ".38", "LONGITUDE": -64.92171467, "LATITUDE": 18.34383432, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.13306328600001, "SHAPE_Area": 1465.56761723 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359743.957299999892712, 257151.099500000476837 ], [ 359752.402199998497963, 257153.140999998897314 ], [ 359756.10419999808073, 257186.798000000417233 ], [ 359785.146799996495247, 257181.523899998515844 ], [ 359796.042700000107288, 257138.419100001454353 ], [ 359743.957299999892712, 257151.099500000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-8860-T014", "PARCEL_NAM": "D-15", "ACRE": "2.0", "LONGITUDE": -64.92107115, "LATITUDE": 18.3435571, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.47605130800002, "SHAPE_Area": 7147.9928510099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359819.051899999380112, 257080.191700000315905 ], [ 359826.750299997627735, 257100.621100001037121 ], [ 359816.748999997973442, 257124.116099998354912 ], [ 359798.38120000064373, 257129.167899999767542 ], [ 359785.146799996495247, 257181.523899998515844 ], [ 359786.826899997889996, 257181.218800000846386 ], [ 359792.014799997210503, 257180.276700001209974 ], [ 359826.001900002360344, 257177.404599998146296 ], [ 359864.616700001060963, 257183.923900000751019 ], [ 359865.019000001251698, 257179.189100001007318 ], [ 359880.052199997007847, 257116.906300000846386 ], [ 359889.420000001788139, 257078.095800001174212 ], [ 359868.270499996840954, 257080.646499998867512 ], [ 359867.382299996912479, 257077.537999998778105 ], [ 359861.060900002717972, 257078.176100000739098 ], [ 359854.130999997258186, 257078.630699999630451 ], [ 359847.189499996602535, 257078.841699998825788 ], [ 359840.244800001382828, 257078.809000000357628 ], [ 359833.66330000013113, 257078.547600001096725 ], [ 359833.361199997365475, 257078.535599999129772 ], [ 359829.750100001692772, 257078.585999999195337 ], [ 359826.150600001215935, 257078.879900000989437 ], [ 359822.579099997878075, 257079.415899999439716 ], [ 359819.051899999380112, 257080.191700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401160400", "MAP": "D3-284-T67", "PARCEL_NAM": "339", "ACRE": "0.26", "LONGITUDE": -64.92422346, "LATITUDE": 18.34771694, "OBJECTID_1": 11714, "PARCEL_NO_": "105401160400", "Tax_Legal_": "HOSPITAL GROUND 339 9 NEW QTR", "Name": "FARRINGTON, M. & LORELEI, M", "Address": "PO Box 302066", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28200, "Improved_V": 129900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.16913331800001, "SHAPE_Area": 1633.50854845 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359525.913500003516674, 257611.756099998950958 ], [ 359531.310500003397465, 257577.510000001639128 ], [ 359500.552000001072884, 257573.744699999690056 ], [ 359477.8074000030756, 257571.120400000363588 ], [ 359478.343000002205372, 257606.516699999570847 ], [ 359482.003499999642372, 257604.851700000464916 ], [ 359485.604099996387959, 257603.978799998760223 ], [ 359490.620899997651577, 257603.638700000941753 ], [ 359502.710199996829033, 257604.370900001376867 ], [ 359510.7516999989748, 257606.969900000840425 ], [ 359525.913500003516674, 257611.756099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92386169, "LATITUDE": 18.34779699, "OBJECTID_1": 12444, "PARCEL_NO_": "105402010100", "Tax_Legal_": "HOSPITAL GROUND 329 NEW QUARTER", "Name": "LIBURD, MAUVERNEEN & ALEXANDER, DAREN", "Address": "PO Box 201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29400, "Improved_V": 65800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.809097529, "SHAPE_Area": 938.44940393000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359552.87780000269413, 257584.094300001859665 ], [ 359531.967600002884865, 257577.590399999171495 ], [ 359531.310500003397465, 257577.510000001639128 ], [ 359525.913500003516674, 257611.756099998950958 ], [ 359538.898900002241135, 257615.855099998414516 ], [ 359546.1503000035882, 257616.547699999064207 ], [ 359558.248599998652935, 257616.224500000476837 ], [ 359552.87780000269413, 257584.094300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401160100", "MAP": "D3-284-T67", "PARCEL_NAM": "344", "ACRE": "10,175 sq ft", "LONGITUDE": -64.92488353, "LATITUDE": 18.34750203, "OBJECTID_1": 11713, "PARCEL_NO_": "105401160100", "Tax_Legal_": "341,342,344,345&346 HOSPITAL GRND", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 329600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.400915767800001, "SHAPE_Area": 578.622488718 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359448.086999997496605, 257573.272399999201298 ], [ 359447.664700001478195, 257571.778099998831749 ], [ 359446.965899996459484, 257569.305100001394749 ], [ 359441.520000003278255, 257549.438200000673532 ], [ 359420.130999997258186, 257557.185199998319149 ], [ 359423.679999999701977, 257570.597500000149012 ], [ 359425.277999997138977, 257576.626499999314547 ], [ 359426.737700000405312, 257582.133799999952316 ], [ 359438.405299998819828, 257577.572000000625849 ], [ 359448.086999997496605, 257573.272399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401160100", "MAP": "D3-284-T67", "PARCEL_NAM": "345", "ACRE": "8,700 sq ft", "LONGITUDE": -64.92460745, "LATITUDE": 18.34737768, "OBJECTID_1": 11713, "PARCEL_NO_": "105401160100", "Tax_Legal_": "341,342,344,345&346 HOSPITAL GRND", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 329600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.53906225, "SHAPE_Area": 1002.94342003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359479.359700001776218, 257540.247499998658895 ], [ 359466.683799996972084, 257531.182399999350309 ], [ 359460.261100001633167, 257538.278799999505281 ], [ 359455.094800002872944, 257544.52140000090003 ], [ 359441.520000003278255, 257549.438200000673532 ], [ 359445.79110000282526, 257565.274900000542402 ], [ 359446.965899996459484, 257569.305100001394749 ], [ 359447.664700001478195, 257571.778099998831749 ], [ 359448.086999997496605, 257573.272399999201298 ], [ 359453.00110000371933, 257570.822399999946356 ], [ 359471.850400000810623, 257561.561700001358986 ], [ 359478.256899997591972, 257557.219500001519918 ], [ 359485.233000002801418, 257551.453600000590086 ], [ 359489.189499996602535, 257547.277300000190735 ], [ 359487.083700001239777, 257545.771299999207258 ], [ 359486.383500002324581, 257545.270599998533726 ], [ 359479.359700001776218, 257540.247499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401160100", "MAP": "D3-284-T67", "PARCEL_NAM": "346", "ACRE": "6,800 sq ft", "LONGITUDE": -64.92428227000001, "LATITUDE": 18.34751215, "OBJECTID_1": 11713, "PARCEL_NO_": "105401160100", "Tax_Legal_": "341,342,344,345&346 HOSPITAL GRND", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 329600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.83987820300001, "SHAPE_Area": 675.24863931499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359496.191799998283386, 257552.28489999845624 ], [ 359491.070000000298023, 257556.436500001698732 ], [ 359483.666900001466274, 257562.059999998658895 ], [ 359477.758699998259544, 257566.117400001734495 ], [ 359468.697700001299381, 257570.069299999624491 ], [ 359464.909999996423721, 257572.452799998223782 ], [ 359453.075699999928474, 257580.710099998861551 ], [ 359461.833499997854233, 257576.687300000339746 ], [ 359469.270000003278255, 257573.27140000090003 ], [ 359477.8074000030756, 257571.120400000363588 ], [ 359486.874899998307228, 257572.166600000113249 ], [ 359500.552000001072884, 257573.744699999690056 ], [ 359531.967600002884865, 257577.590399999171495 ], [ 359513.860399998724461, 257564.786899998784065 ], [ 359511.127499997615814, 257562.854400001466274 ], [ 359502.310300000011921, 257556.660500001162291 ], [ 359496.278999999165535, 257552.347300000488758 ], [ 359496.191799998283386, 257552.28489999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401160900", "MAP": "D3-284-T67", "PARCEL_NAM": "340", "ACRE": "0.23", "LONGITUDE": -64.9246267, "LATITUDE": 18.34777689, "OBJECTID_1": 11716, "PARCEL_NO_": "105401160900", "Tax_Legal_": "340 HOSPITAL GROUND NO.9 NEW QTR", "Name": "FRANCIS, JURGEN, SEATTS, LUNA& WATKINS", "Address": "PO Box 55", "City": "Southfield", "State": "Michigan", "Zip": 48037, "Country": "United States", "Land_Value": 25300, "Improved_V": 89600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.35838894599999, "SHAPE_Area": 1335.3678755599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359478.332000002264977, 257605.788100000470877 ], [ 359477.8074000030756, 257571.120400000363588 ], [ 359469.270000003278255, 257573.27140000090003 ], [ 359461.833499997854233, 257576.687300000339746 ], [ 359453.075699999928474, 257580.710099998861551 ], [ 359439.739500001072884, 257586.446899998933077 ], [ 359440.712300002574921, 257590.146299999207258 ], [ 359449.040299996733665, 257621.81529999896884 ], [ 359460.4003000035882, 257618.708299998193979 ], [ 359466.073899999260902, 257615.544199999421835 ], [ 359474.256899997591972, 257609.652399998158216 ], [ 359478.332000002264977, 257605.788100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401161000", "MAP": "D3-284-T67", "PARCEL_NAM": "GOV. CISTERN PARCEL", "ACRE": "7,300 sq ft", "LONGITUDE": -64.92491571, "LATITUDE": 18.34788207, "OBJECTID_1": 11717, "PARCEL_NO_": "105401161000", "Tax_Legal_": "PCL OF HOSPITAL GRND KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.46388749499999, "SHAPE_Area": 1044.4496305499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359449.040299996733665, 257621.81529999896884 ], [ 359440.503600001335144, 257589.352899998426437 ], [ 359439.710900001227856, 257586.33839999884367 ], [ 359408.596900001168251, 257596.848600000143051 ], [ 359410.018500000238419, 257599.67339999973774 ], [ 359424.579599998891354, 257628.606699999421835 ], [ 359437.70610000193119, 257625.036499999463558 ], [ 359447.634800001978874, 257622.199700001627207 ], [ 359449.040299996733665, 257621.81529999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401161100", "MAP": "D3-284-T67", "PARCEL_NAM": "341", "ACRE": "9,875 sq ft", "LONGITUDE": -64.92513684, "LATITUDE": 18.34801053, "OBJECTID_1": 11718, "PARCEL_NO_": "105401161100", "Tax_Legal_": "HOSPITAL GROUND 341 KINGS QTR", "Name": "PROCTER, ELBERT B", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74100, "Improved_V": 126600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.47388139500001, "SHAPE_Area": 900.79638817499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359413.375200003385544, 257637.802000001072884 ], [ 359420.030699998140335, 257631.801100000739098 ], [ 359424.395000003278255, 257628.636999998241663 ], [ 359424.579599998891354, 257628.606699999421835 ], [ 359410.017899997532368, 257599.672200001776218 ], [ 359408.739200003445148, 257597.131499998271465 ], [ 359408.596900001168251, 257596.848600000143051 ], [ 359390.946900002658367, 257611.037200000137091 ], [ 359402.795500002801418, 257648.136900000274181 ], [ 359405.596600003540516, 257645.372600000351667 ], [ 359413.375200003385544, 257637.802000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401160500", "MAP": "D3-284-T67", "PARCEL_NAM": "343", "ACRE": "7,575 sq ft", "LONGITUDE": -64.92509441, "LATITUDE": 18.34757566, "OBJECTID_1": 11715, "PARCEL_NO_": "105401160500", "Tax_Legal_": "HOSPITAL GROUND 343 9 NEW QTR", "Name": "SMITH, ANTONIO P", "Address": "2420 Hunter Ave", "City": "Bronx", "State": "New York", "Zip": 10475, "Country": "United States", "Land_Value": 16600, "Improved_V": 81000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.212310898, "SHAPE_Area": 633.67126032199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359425.277999997138977, 257576.626499999314547 ], [ 359423.679999999701977, 257570.597500000149012 ], [ 359420.125500001013279, 257557.187199998646975 ], [ 359395.7483000010252, 257566.016499999910593 ], [ 359399.725199997425079, 257577.352400001138449 ], [ 359402.088299997150898, 257583.915699999779463 ], [ 359404.996799997985363, 257589.695199999958277 ], [ 359426.737700000405312, 257582.133799999952316 ], [ 359425.277999997138977, 257576.626499999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401160100", "MAP": "D3-284-T67", "PARCEL_NAM": "342", "ACRE": "6,775 sq ft", "LONGITUDE": -64.92529385, "LATITUDE": 18.34767454, "OBJECTID_1": 11713, "PARCEL_NO_": "105401160100", "Tax_Legal_": "341,342,344,345&346 HOSPITAL GRND", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 329600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.981354772499998, "SHAPE_Area": 595.89805194400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359386.574100002646446, 257603.312600001692772 ], [ 359394.064400002360344, 257598.434900000691414 ], [ 359399.616700001060963, 257593.594399999827147 ], [ 359404.996799997985363, 257589.695199999958277 ], [ 359402.088299997150898, 257583.915699999779463 ], [ 359399.725199997425079, 257577.352400001138449 ], [ 359395.7483000010252, 257566.016499999910593 ], [ 359376.436700001358986, 257576.754000000655651 ], [ 359384.695900000631809, 257599.994899999350309 ], [ 359386.574100002646446, 257603.312600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903037700", "MAP": "G9-1416-T69", "PARCEL_NAM": "297", "ACRE": "0.29", "LONGITUDE": -64.92537449, "LATITUDE": 18.34812514, "OBJECTID_1": 4889, "PARCEL_NO_": "102903037700", "Tax_Legal_": "HOSPITAL GROUND 297 GREAT NORTHSIDE QTR", "Name": "GEORGE, GORDON", "Address": "Po Box 180237", "City": "Tallahassee", "State": "Florida", "Zip": 32318, "Country": "United States", "Land_Value": 82700, "Improved_V": 64600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.420859194, "SHAPE_Area": 882.69725569599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359384.320900000631809, 257659.370400000363588 ], [ 359381.952399998903275, 257646.639699999243021 ], [ 359398.777800001204014, 257635.557000000029802 ], [ 359390.946900002658367, 257611.037200000137091 ], [ 359382.506700001657009, 257610.775400001555681 ], [ 359373.769299998879433, 257615.435100000351667 ], [ 359375.991400003433228, 257618.321400001645088 ], [ 359378.376199997961521, 257622.351700000464916 ], [ 359377.481799997389317, 257632.688000001013279 ], [ 359364.186999998986721, 257634.317499998956919 ], [ 359363.429999999701977, 257638.353100001811981 ], [ 359363.70610000193119, 257640.596799999475479 ], [ 359364.757399998605251, 257647.584300000220537 ], [ 359372.592600002884865, 257649.263300001621246 ], [ 359375.624200001358986, 257649.912900000810623 ], [ 359373.639600001275539, 257658.361299999058247 ], [ 359373.428700000047684, 257659.259199999272823 ], [ 359374.158399999141693, 257659.362500000745058 ], [ 359378.460900001227856, 257660.059799998998642 ], [ 359384.320900000631809, 257659.370400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301080300", "MAP": "A9-141-T70", "PARCEL_NAM": "79-21", "ACRE": "0.426", "LONGITUDE": -64.94680943, "LATITUDE": 18.34566491, "OBJECTID_1": 9253, "PARCEL_NO_": "105301080300", "Tax_Legal_": "79-21 ESTATE SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "THOMAS, CLAYTON J. & DAPHNE D. G", "Address": "20 Mj Kirwan Ter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66000, "Improved_V": 175000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.007837349, "SHAPE_Area": 1618.97470477 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357094.602200001478195, 257354.569699998944998 ], [ 357127.486000001430511, 257357.793499998748302 ], [ 357130.756800003349781, 257370.064399998635054 ], [ 357131.918499998748302, 257369.067600000649691 ], [ 357137.234300002455711, 257366.9510000012815 ], [ 357142.072200000286102, 257366.990600001066923 ], [ 357150.918200001120567, 257369.807199999690056 ], [ 357128.715499997138977, 257325.717999998480082 ], [ 357127.131700001657009, 257322.327599998563528 ], [ 357093.261100001633167, 257322.683600001037121 ], [ 357094.602200001478195, 257354.569699998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301080200", "MAP": "A9-141-T70", "PARCEL_NAM": "79-20", "ACRE": "0.245", "LONGITUDE": -64.94685361000001, "LATITUDE": 18.34588911, "OBJECTID_1": 9252, "PARCEL_NO_": "105301080200", "Tax_Legal_": "SOLBERG 79-20&82 LITTLE NORTHSIDE", "Name": "WHITE, NATALIE E", "Address": "PO Box 8859", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46100, "Improved_V": 150600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.760054592, "SHAPE_Area": 757.57397997099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357127.486000001430511, 257357.793499998748302 ], [ 357094.602200001478195, 257354.569699998944998 ], [ 357098.07039999961853, 257369.245600000023842 ], [ 357100.050399996340275, 257377.623500000685453 ], [ 357129.027300000190735, 257383.771299999207258 ], [ 357127.481200002133846, 257375.94819999858737 ], [ 357130.756800003349781, 257370.064399998635054 ], [ 357127.486000001430511, 257357.793499998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105301085100", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-35 CONSERVATION", "ACRE": "0.55", "LONGITUDE": -64.94804912, "LATITUDE": 18.34420506, "OBJECTID_1": 9288, "PARCEL_NO_": "105301085100", "Tax_Legal_": "ALTONA & WELGUNST 220 CROWN PRINCE QTR.", "Name": "VIRCO LTD", "Address": "P.O. BOX 1709", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 197600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 518.08408328500002, "SHAPE_Area": 3071.9071171400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357014.726300001144409, 257286.477099999785423 ], [ 357023.542400002479553, 257286.168499998748302 ], [ 357023.539899997413158, 257271.872699998319149 ], [ 357020.393799997866154, 257262.558800000697374 ], [ 357016.427000001072884, 257254.927000001072884 ], [ 357016.513300001621246, 257244.795200001448393 ], [ 357019.005900003015995, 257236.160799998790026 ], [ 357019.900399997830391, 257225.824499998241663 ], [ 357016.009099997580051, 257209.327399998903275 ], [ 357007.996299996972084, 257203.351199999451637 ], [ 357004.788999997079372, 257201.214000001549721 ], [ 356983.8716000020504, 257195.554400000721216 ], [ 356977.457099996507168, 257191.280000001192093 ], [ 356971.056999996304512, 257185.31700000166893 ], [ 356985.786399997770786, 257160.106300000101328 ], [ 356994.626599997282028, 257144.095100000500679 ], [ 356993.323600001633167, 257141.152800001204014 ], [ 356990.989200003445148, 257136.804400000721216 ], [ 356990.031900003552437, 257135.020899999886751 ], [ 356990.931699998676777, 257124.051399998366833 ], [ 356989.35869999974966, 257119.394499998539686 ], [ 356987.763999998569489, 257117.270500000566244 ], [ 356986.207099996507168, 257110.713899999856949 ], [ 356984.603500001132488, 257109.645199999213219 ], [ 356984.216600000858307, 257108.285999998450279 ], [ 356983.820600003004074, 257106.894600000232458 ], [ 356981.443000003695488, 257102.019999999552965 ], [ 356979.988600000739098, 257083.431800000369549 ], [ 356980.848899997770786, 257077.106100000441074 ], [ 356974.458999998867512, 257079.104400001466274 ], [ 356968.737999998033047, 257078.906899999827147 ], [ 356968.701999999582767, 257083.128400001674891 ], [ 356969.409400001168251, 257094.74439999833703 ], [ 356970.921899996697903, 257102.251400001347065 ], [ 356976.463100001215935, 257118.655699998140335 ], [ 356979.614600002765656, 257127.336300000548363 ], [ 356978.75789999961853, 257133.239900000393391 ], [ 356977.089599996805191, 257139.770199999213219 ], [ 356974.648999996483326, 257142.283300001174212 ], [ 356972.95719999819994, 257145.260999999940395 ], [ 356968.918499998748302, 257152.368900001049042 ], [ 356965.651900000870228, 257157.197299998253584 ], [ 356957.468299999833107, 257171.273600000888109 ], [ 356955.8125, 257176.326299998909235 ], [ 356956.438500002026558, 257182.359999999403954 ], [ 356961.100199997425079, 257190.258000001311302 ], [ 356965.326499998569489, 257195.40260000154376 ], [ 356973.335600003600121, 257201.800900001078844 ], [ 356982.975400000810623, 257206.101700000464916 ], [ 356988.771799996495247, 257207.589899998158216 ], [ 356998.262999996542931, 257210.026500001549721 ], [ 357002.274800002574921, 257212.381400000303984 ], [ 357005.472999997437, 257215.574000000953674 ], [ 357007.787699997425079, 257227.836300000548363 ], [ 357007.696000002324581, 257238.601399999111891 ], [ 357006.067199997603893, 257240.487900000065565 ], [ 357004.407799996435642, 257245.962699998170137 ], [ 357005.10980000346899, 257258.211899999529123 ], [ 357006.691899999976158, 257261.813400000333786 ], [ 357008.277500003576279, 257264.992800001055002 ], [ 357012.265900000929832, 257270.091699998825788 ], [ 357013.847999997437, 257273.693199999630451 ], [ 357014.630900003015995, 257276.443900000303984 ], [ 357014.726300001144409, 257286.477099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301153900", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-21", "ACRE": ".23", "LONGITUDE": -64.94689805, "LATITUDE": 18.34398877, "OBJECTID_1": 9537, "PARCEL_NO_": "105301153900", "Tax_Legal_": "ALTONA & WELGUNST 220-21 CROWN PRINCE QTR.", "Name": "BENJAMIN, JOSEPH T, JOSEPH H & RAQUEL BERRY", "Address": "PO Box 306496", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77600, "Improved_V": 199000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.89155429, "SHAPE_Area": 1293.28890804 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357089.028499998152256, 257156.940499998629093 ], [ 357107.37049999833107, 257180.944200001657009 ], [ 357112.233599998056889, 257178.0287000015378 ], [ 357125.966099999845028, 257175.1858000010252 ], [ 357130.024599999189377, 257172.052600000053644 ], [ 357130.875900000333786, 257166.782200001180172 ], [ 357123.82940000295639, 257142.026599999517202 ], [ 357120.576099999248981, 257134.473000001162291 ], [ 357083.325000002980232, 257149.461300000548363 ], [ 357089.028499998152256, 257156.940499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301153800", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-20", "ACRE": ".23", "LONGITUDE": -64.94700066, "LATITUDE": 18.34372763, "OBJECTID_1": 9536, "PARCEL_NO_": "105301153800", "Tax_Legal_": "ALTONA 220-20 SOUTHSIDE QTR", "Name": "CHARLES, MATEO", "Address": "2337 93rd St", "City": "East Elmhurst", "State": "New York", "Zip": 11369, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.89841348, "SHAPE_Area": 965.87500347499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357083.325000002980232, 257149.461300000548363 ], [ 357120.576099999248981, 257134.473000001162291 ], [ 357109.5962999984622, 257108.979499999433756 ], [ 357104.7871999964118, 257105.562699999660254 ], [ 357100.746699996292591, 257106.585099998861551 ], [ 357090.962999999523163, 257119.1706000007689 ], [ 357090.131499998271465, 257122.119100000709295 ], [ 357087.669399999082088, 257127.165199998766184 ], [ 357086.042400002479553, 257128.840599998831749 ], [ 357078.661499999463558, 257143.34569999948144 ], [ 357083.325000002980232, 257149.461300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301089900", "MAP": "A9-141-T70", "PARCEL_NAM": "ROW 79", "ACRE": null, "LONGITUDE": -64.94938701, "LATITUDE": 18.34603538, "OBJECTID_1": 9289, "PARCEL_NO_": "105301089900", "Tax_Legal_": "SOLBERG REM 79 (ROADS) LITTLE NORTHSIDE QTR", "Name": "BALL, VERNON", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 260500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 572.36037614300005, "SHAPE_Area": 1800.1618739 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356891.498499996960163, 257437.344799999147654 ], [ 356897.176899999380112, 257433.380499999970198 ], [ 356898.161200001835823, 257412.490299999713898 ], [ 356904.028399996459484, 257386.362700000405312 ], [ 356907.37950000166893, 257371.613600000739098 ], [ 356906.607400000095367, 257367.596500001847744 ], [ 356905.840599998831749, 257362.946199998259544 ], [ 356898.659299999475479, 257354.021499998867512 ], [ 356893.844800002872944, 257351.237900000065565 ], [ 356884.176299996674061, 257350.314399998635054 ], [ 356868.86710000038147, 257348.922499999403954 ], [ 356853.131399996578693, 257350.513199999928474 ], [ 356834.602799996733665, 257353.495799999684095 ], [ 356819.619099996984005, 257355.907699998468161 ], [ 356809.104699999094009, 257359.621300000697374 ], [ 356803.429899998009205, 257363.163499999791384 ], [ 356800.998400002717972, 257364.621199999004602 ], [ 356790.923500001430511, 257374.696899998933077 ], [ 356779.852700002491474, 257385.7685999982059 ], [ 356779.782499998807907, 257394.000700000673532 ], [ 356781.353799998760223, 257398.868700001388788 ], [ 356786.159299999475479, 257402.707699999213219 ], [ 356795.001800000667572, 257405.94649999961257 ], [ 356795.178800001740456, 257405.946400001645088 ], [ 356811.871299996972084, 257405.937399998307228 ], [ 356819.192900002002716, 257405.933400001376867 ], [ 356822.409199997782707, 257407.0152000002563 ], [ 356828.803999997675419, 257413.611400000751019 ], [ 356835.22749999910593, 257416.830400001257658 ], [ 356836.922799997031689, 257407.13399999961257 ], [ 356835.346199996769428, 257402.89919999986887 ], [ 356834.56139999628067, 257400.359600000083447 ], [ 356832.946999996900558, 257400.557500001043081 ], [ 356828.928000003099442, 257399.046999998390675 ], [ 356827.329800002276897, 257397.345199998468161 ], [ 356822.506300002336502, 257395.616900000721216 ], [ 356819.281099997460842, 257395.590500000864267 ], [ 356817.645000003278255, 257398.321400001645088 ], [ 356814.407200001180172, 257399.77250000089407 ], [ 356806.923699997365475, 257399.792899999767542 ], [ 356801.399400003254414, 257399.80799999833107 ], [ 356795.053900003433228, 257399.825199998915195 ], [ 356791.031300000846386, 257398.736800000071526 ], [ 356786.220399998128414, 257395.530999999493361 ], [ 356785.468099996447563, 257389.192099999636412 ], [ 356804.992200002074242, 257369.086899999529123 ], [ 356813.093099996447563, 257364.720199998468161 ], [ 356821.168799996376038, 257363.308699999004602 ], [ 356850.537799999117851, 257357.792100001126528 ], [ 356866.397799998521805, 257354.812899999320507 ], [ 356887.354800000786781, 257355.82880000025034 ], [ 356893.787299998104572, 257357.992400001734495 ], [ 356900.178400002419949, 257365.010800000280142 ], [ 356901.742499999701977, 257370.723099999129772 ], [ 356900.88400000333786, 257376.837799999862909 ], [ 356894.233900003135204, 257400.214800000190735 ], [ 356891.6908999979496, 257414.759399998933077 ], [ 356891.498499996960163, 257437.344799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301089900", "MAP": "A9-141-T70", "PARCEL_NAM": "ROW 79", "ACRE": null, "LONGITUDE": -64.94728179000001, "LATITUDE": 18.3457773, "OBJECTID_1": 9289, "PARCEL_NO_": "105301089900", "Tax_Legal_": "SOLBERG REM 79 (ROADS) LITTLE NORTHSIDE QTR", "Name": "BALL, VERNON", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 260500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 524.58096915900001, "SHAPE_Area": 1518.0221458599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357104.672499999403954, 257402.992600001394749 ], [ 357109.600199997425079, 257399.375999998301268 ], [ 357104.764200001955032, 257392.22749999910593 ], [ 357101.605499997735023, 257384.391199998557568 ], [ 357100.050399996340275, 257377.623500000685453 ], [ 357098.07039999961853, 257369.245600000023842 ], [ 357094.602200001478195, 257354.569699998944998 ], [ 357093.261100001633167, 257322.683600001037121 ], [ 357095.003200002014637, 257307.499099999666214 ], [ 357094.243699997663498, 257302.00450000166893 ], [ 357092.64360000193119, 257300.513700000941753 ], [ 357090.244499996304512, 257298.172100000083447 ], [ 357082.987700000405312, 257298.112700000405312 ], [ 357074.051700003445148, 257305.850000001490116 ], [ 357064.237499997019768, 257322.023899998515844 ], [ 357051.970200002193451, 257342.188499998301268 ], [ 357043.793799996376038, 257355.420400001108646 ], [ 357040.505599997937679, 257362.781800001859665 ], [ 357038.851599998772144, 257367.623399998992682 ], [ 357036.018799997866154, 257384.616399999707937 ], [ 357033.776399999856949, 257395.446199998259544 ], [ 357027.292199999094009, 257408.341899998486042 ], [ 357011.747900001704693, 257427.976799998432398 ], [ 357024.685699999332428, 257421.336300000548363 ], [ 357033.715499997138977, 257408.758000001311302 ], [ 357041.072700001299381, 257390.861900001764297 ], [ 357046.135399997234344, 257364.516600001603365 ], [ 357047.782200001180172, 257360.519299998879433 ], [ 357052.677599996328354, 257353.804400000721216 ], [ 357078.858999997377396, 257309.477899998426437 ], [ 357084.551700003445148, 257303.824999999254942 ], [ 357087.777000002563, 257303.851399999111891 ], [ 357089.3716000020504, 257305.975400000810623 ], [ 357086.815999999642372, 257321.997600000351667 ], [ 357087.438900001347065, 257343.534200001507998 ], [ 357088.940099999308586, 257356.634300000965595 ], [ 357092.042999997735023, 257371.01410000026226 ], [ 357097.538000002503395, 257388.579799998551607 ], [ 357104.672499999403954, 257402.992600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301089900", "MAP": "A9-141-T70", "PARCEL_NAM": "ROW 79", "ACRE": null, "LONGITUDE": -64.94511528, "LATITUDE": 18.34612349, "OBJECTID_1": 9289, "PARCEL_NO_": "105301089900", "Tax_Legal_": "SOLBERG REM 79 (ROADS) LITTLE NORTHSIDE QTR", "Name": "BALL, VERNON", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 260500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1566.1642293800001, "SHAPE_Area": 5479.6116162899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357463.170500002801418, 257442.445900000631809 ], [ 357422.459100000560284, 257443.983600001782179 ], [ 357409.939499996602535, 257443.699000000953674 ], [ 357371.281400002539158, 257438.105200000107288 ], [ 357354.801600001752377, 257434.211500000208616 ], [ 357352.772200003266335, 257433.731899999082088 ], [ 357336.651299998164177, 257432.966600000858307 ], [ 357321.318800002336502, 257434.318799998611212 ], [ 357303.536799997091293, 257439.239500001072884 ], [ 357294.64580000191927, 257441.69990000128746 ], [ 357280.93129999935627, 257442.432000000029802 ], [ 357265.631099998950958, 257439.984700001776218 ], [ 357259.198600001633167, 257437.821199998259544 ], [ 357246.360500000417233, 257430.327799998223782 ], [ 357235.945000000298023, 257422.432100001722574 ], [ 357220.758100003004074, 257406.686900001019239 ], [ 357216.010200001299381, 257396.093299999833107 ], [ 357214.456900000572205, 257389.114500001072884 ], [ 357213.83219999819994, 257367.789000000804663 ], [ 357215.505900003015995, 257360.625500001013279 ], [ 357217.9662000015378, 257355.790500000119209 ], [ 357226.900399997830391, 257348.264199998229742 ], [ 357230.697599999606609, 257346.338799998164177 ], [ 357253.582400001585484, 257339.827799998223782 ], [ 357262.256300002336502, 257340.656399998813868 ], [ 357265.668099999427795, 257340.982200000435114 ], [ 357272.093500003218651, 257343.990100000053644 ], [ 357275.282799996435642, 257348.238000001758337 ], [ 357278.340800002217293, 257367.894799999892712 ], [ 357279.833599999547005, 257375.874400001019239 ], [ 357282.244699999690056, 257382.91440000012517 ], [ 357286.236699998378754, 257387.591099999845028 ], [ 357290.243100002408028, 257390.579199999570847 ], [ 357292.647600002586842, 257392.287599999457598 ], [ 357300.694499999284744, 257394.253299999982119 ], [ 357308.764899998903275, 257393.475000001490116 ], [ 357327.328000001609325, 257391.515999998897314 ], [ 357338.619999997317791, 257391.186200000345707 ], [ 357359.564300000667572, 257393.679699998348951 ], [ 357362.811200000345707, 257391.173099998384714 ], [ 357365.249899998307228, 257388.871100001037121 ], [ 357365.293099999427795, 257383.80519999936223 ], [ 357361.297499999403954, 257379.550599999725819 ], [ 357340.679300002753735, 257364.022199999541044 ], [ 357330.985399998724461, 257356.814699999988079 ], [ 357323.638099998235703, 257351.377999998629093 ], [ 357323.816100001335144, 257330.481199998408556 ], [ 357323.232799999415874, 257304.300799999386072 ], [ 357320.048900000751019, 257299.419599998742342 ], [ 357308.130500003695488, 257278.634899999946356 ], [ 357299.356299996376038, 257267.375100001692772 ], [ 357292.093500003218651, 257268.798599999397993 ], [ 357300.583200000226498, 257278.784800000488758 ], [ 357309.622599996626377, 257292.790399998426437 ], [ 357315.198499999940395, 257300.857599999755621 ], [ 357317.568800002336502, 257306.576499998569489 ], [ 357317.282899998128414, 257340.138099998235703 ], [ 357317.201999999582767, 257349.636599998921156 ], [ 357317.974200002849102, 257353.6537000015378 ], [ 357322.77250000089407, 257358.337000001221895 ], [ 357357.229900002479553, 257383.739199999719858 ], [ 357356.394799999892712, 257387.1097999997437 ], [ 357334.642399996519089, 257384.820900000631809 ], [ 357305.588200002908707, 257387.749499998986721 ], [ 357298.331399999558926, 257387.690099999308586 ], [ 357292.706900000572205, 257385.322000000625849 ], [ 357288.706000000238419, 257381.700699999928474 ], [ 357285.54900000244379, 257373.653299998492002 ], [ 357284.811099998652935, 257365.625700000673532 ], [ 357282.525200001895428, 257349.986099999397993 ], [ 357279.357500001788139, 257343.205099999904633 ], [ 357273.759999997913837, 257337.670899998396635 ], [ 357264.113099999725819, 257334.214400000870228 ], [ 357251.208499997854233, 257334.530999999493361 ], [ 357239.090400002896786, 257337.176100000739098 ], [ 357222.917400002479553, 257342.5320999994874 ], [ 357211.582299999892712, 257347.927799999713898 ], [ 357201.865199998021126, 257352.703400000929832 ], [ 357179.945500001311302, 257370.044799998402596 ], [ 357176.696900002658367, 257372.76240000128746 ], [ 357172.65089999884367, 257374.418000001460314 ], [ 357166.196800000965595, 257374.787399999797344 ], [ 357150.918200001120567, 257369.807199999690056 ], [ 357142.072200000286102, 257366.990600001066923 ], [ 357137.234300002455711, 257366.9510000012815 ], [ 357131.918499998748302, 257369.067600000649691 ], [ 357130.756800003349781, 257370.064399998635054 ], [ 357128.328299999237061, 257374.426600001752377 ], [ 357127.481200002133846, 257375.94819999858737 ], [ 357129.027300000190735, 257383.771299999207258 ], [ 357130.557199999690056, 257393.494100000709295 ], [ 357136.168999999761581, 257397.339699998497963 ], [ 357136.221199996769428, 257391.218400001525879 ], [ 357133.758299998939037, 257377.9543999992311 ], [ 357136.068899996578693, 257372.925500001758337 ], [ 357139.7516999989748, 257370.255499999970198 ], [ 357145.27589999884367, 257372.833399999886751 ], [ 357163.137599997222424, 257379.094200000166893 ], [ 357172.620800003409386, 257377.713199999183416 ], [ 357174.64639999717474, 257376.976599998772144 ], [ 357188.825199998915195, 257367.401299998164177 ], [ 357205.121699996292591, 257355.063900001347065 ], [ 357208.159999996423721, 257354.603500001132488 ], [ 357208.98870000243187, 257359.575300000607967 ], [ 357206.226499997079372, 257375.319400001317263 ], [ 357205.703100003302097, 257392.172100000083447 ], [ 357208.675999999046326, 257405.110300000756979 ], [ 357211.059000000357628, 257409.351700000464916 ], [ 357215.056400001049042, 257413.395199999213219 ], [ 357217.443000003695488, 257417.214400000870228 ], [ 357231.839699998497963, 257431.053300000727177 ], [ 357244.66160000115633, 257440.446400001645088 ], [ 357253.491499997675419, 257445.16270000115037 ], [ 357271.185400001704693, 257450.584899999201298 ], [ 357288.917099997401237, 257451.574400000274181 ], [ 357297.799099996685982, 257450.169399999082088 ], [ 357300.223399996757507, 257449.556000001728535 ], [ 357325.278399996459484, 257442.795000001788139 ], [ 357334.965000003576279, 257441.607700001448393 ], [ 357347.057899996638298, 257441.917700000107288 ], [ 357355.916500002145767, 257443.256799999624491 ], [ 357369.587899997830391, 257447.590599998831749 ], [ 357375.226700000464916, 257448.269999999552965 ], [ 357401.80799999833107, 257451.653999999165535 ], [ 357426.794699996709824, 257452.913899999111891 ], [ 357475.997699998319149, 257451.205699998885393 ], [ 357463.170500002801418, 257442.445900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301094400", "MAP": "D9-1657-T81", "PARCEL_NAM": "91-A-1", "ACRE": "0.332", "LONGITUDE": -64.94555884, "LATITUDE": 18.34682469, "OBJECTID_1": 9328, "PARCEL_NO_": "105301094400", "Tax_Legal_": "SOLBERG 91-A-1&91-C LT. NORTHSIDE", "Name": "HALL, SAMUEL H", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.36316608, "SHAPE_Area": 281.17492935899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357271.701999999582767, 257471.510899998247623 ], [ 357225.79559999704361, 257467.745600000023842 ], [ 357226.656599998474121, 257471.540899999439716 ], [ 357227.171099998056889, 257473.842099998146296 ], [ 357272.489399999380112, 257477.977400001138449 ], [ 357271.78490000218153, 257474.865499999374151 ], [ 357271.701999999582767, 257471.510899998247623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301092200", "MAP": "D9-9400-T019", "PARCEL_NAM": "91-A-2", "ACRE": "0.37", "LONGITUDE": -64.94549752, "LATITUDE": 18.34707457, "OBJECTID_1": 9309, "PARCEL_NO_": "105301092200", "Tax_Legal_": "SOLBERG 91A LT. NORTHSIDE", "Name": "HALL, SAMUEL H", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.46458348600001, "SHAPE_Area": 1439.63764229 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357274.269799999892712, 257485.841400001198053 ], [ 357229.124200001358986, 257482.577899999916553 ], [ 357232.093999996781349, 257495.861099999397993 ], [ 357237.570900000631809, 257515.53770000115037 ], [ 357250.477300003170967, 257515.010000001639128 ], [ 357269.801899999380112, 257518.334600001573563 ], [ 357281.887500002980232, 257519.489000000059605 ], [ 357274.269799999892712, 257485.841400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094400", "MAP": "D9-9400-T019", "PARCEL_NAM": "91-C", "ACRE": "0.332", "LONGITUDE": -64.94563673, "LATITUDE": 18.34662606, "OBJECTID_1": 9328, "PARCEL_NO_": "105301094400", "Tax_Legal_": "SOLBERG 91-A-1&91-C LT. NORTHSIDE", "Name": "HALL, SAMUEL H", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.80643155300001, "SHAPE_Area": 1597.3627340099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357225.79559999704361, 257467.745600000023842 ], [ 357271.701999999582767, 257471.510899998247623 ], [ 357271.185400001704693, 257450.584899999201298 ], [ 357253.491499997675419, 257445.16270000115037 ], [ 357244.66160000115633, 257440.446400001645088 ], [ 357231.839699998497963, 257431.053300000727177 ], [ 357217.443000003695488, 257417.214400000870228 ], [ 357215.056400001049042, 257413.395199999213219 ], [ 357211.059000000357628, 257409.351700000464916 ], [ 357218.884800001978874, 257437.280099999159575 ], [ 357225.79559999704361, 257467.745600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096400", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-16", "ACRE": "0.237", "LONGITUDE": -64.94748533000001, "LATITUDE": 18.34672578, "OBJECTID_1": 9347, "PARCEL_NO_": "105301096400", "Tax_Legal_": "SOLBERG 1B-16 LT. NORTHSIDE QTR.", "Name": "HENDRICKSON, CHARLES & JOYCE", "Address": "PO Box 307295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 36900, "Improved_V": 391500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.57812432599999, "SHAPE_Area": 1102.6108963700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357024.122599996626377, 257445.756099998950958 ], [ 357024.122599996626377, 257446.049499999731779 ], [ 357039.468199998140335, 257482.064599998295307 ], [ 357039.468199998140335, 257482.265700001269579 ], [ 357039.487800002098083, 257482.252399999648333 ], [ 357047.574299998581409, 257479.574400000274181 ], [ 357058.061800003051758, 257479.026900000870228 ], [ 357061.338299997150898, 257479.827300000935793 ], [ 357060.546899996697903, 257441.044399999082088 ], [ 357051.117799997329712, 257442.239799998700619 ], [ 357024.122599996626377, 257445.756099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096200", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-17", "ACRE": "0.32", "LONGITUDE": -64.94776871000001, "LATITUDE": 18.34682697, "OBJECTID_1": 9345, "PARCEL_NO_": "105301096200", "Tax_Legal_": "SOLBERG 1B-17 LT. NORTHSIDE QTR.", "Name": "BREWLEY, JOYCELYN", "Address": "16 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37100, "Improved_V": 22600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.343512882, "SHAPE_Area": 1501.0124105299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357023.670800000429153, 257445.814899999648333 ], [ 357004.292400002479553, 257448.822700001299381 ], [ 357000.210400000214577, 257454.69990000128746 ], [ 356998.554700002074242, 257459.752599999308586 ], [ 356995.111800000071526, 257485.266699999570847 ], [ 357023.244699999690056, 257495.840599998831749 ], [ 357026.507700003683567, 257491.434300001710653 ], [ 357032.999499998986721, 257486.63230000063777 ], [ 357039.468199998140335, 257482.265700001269579 ], [ 357039.468199998140335, 257482.064599998295307 ], [ 357024.122599996626377, 257446.049499999731779 ], [ 357024.122599996626377, 257445.756099998950958 ], [ 357023.670800000429153, 257445.814899999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096500", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-15", "ACRE": "0.297", "LONGITUDE": -64.94723032, "LATITUDE": 18.34675229, "OBJECTID_1": 9348, "PARCEL_NO_": "105301096500", "Tax_Legal_": "SOLBERG 1B-15 LT.NORTHSIDE QTR.", "Name": "MARTIN, ALVIN & MARIE", "Address": "PO Box 9714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32900, "Improved_V": 253300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.485073755, "SHAPE_Area": 983.58097120699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357060.546899996697903, 257441.044399999082088 ], [ 357061.338299997150898, 257479.827300000935793 ], [ 357066.10869999974966, 257480.992600001394749 ], [ 357072.546599999070168, 257482.522999998182058 ], [ 357084.571199998259544, 257490.854100000113249 ], [ 357085.636399999260902, 257460.465300001204014 ], [ 357076.142300002276897, 257439.067200001329184 ], [ 357060.546899996697903, 257441.044399999082088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301095800", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-20", "ACRE": "0.242", "LONGITUDE": -64.94842026000001, "LATITUDE": 18.3473372, "OBJECTID_1": 9341, "PARCEL_NO_": "105301095800", "Tax_Legal_": "SOLBERG 1B-20 LT.NORTHSIDE QTR.", "Name": "GRIFFIN, MARITZA A. & KIRTHLEY", "Address": "PO Box 302314", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18800, "Improved_V": 234200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.53565151699999, "SHAPE_Area": 1217.61760959 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356975.515799999237061, 257532.398800000548363 ], [ 356955.460799999535084, 257505.499200001358986 ], [ 356948.142499998211861, 257508.73589999973774 ], [ 356944.087600000202656, 257511.446899998933077 ], [ 356926.290200002491474, 257522.693199999630451 ], [ 356924.630000002682209, 257523.742199998348951 ], [ 356919.788500003516674, 257524.124699998646975 ], [ 356929.277300000190735, 257546.156100001186132 ], [ 356939.738600000739098, 257543.035100001841784 ], [ 356966.464699998497963, 257535.0614 ], [ 356975.515799999237061, 257532.398800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301096000", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-19", "ACRE": "0.264", "LONGITUDE": -64.94811916, "LATITUDE": 18.34722468, "OBJECTID_1": 9343, "PARCEL_NO_": "105301096000", "Tax_Legal_": "SOLBERG 1B-19 LT.NORTHSIDE QTR.", "Name": "PRESCOD, MARIAN", "Address": "3004 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.083108982, "SHAPE_Area": 833.80225529400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356955.460799999535084, 257505.499200001358986 ], [ 356975.515799999237061, 257532.398800000548363 ], [ 356997.183700002729893, 257526.024700000882149 ], [ 356987.752499997615814, 257497.238800000399351 ], [ 356980.463299997150898, 257500.978900000452995 ], [ 356975.618299998342991, 257501.783599998801947 ], [ 356957.046099998056889, 257504.798000000417233 ], [ 356955.460799999535084, 257505.499200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301079800", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-34", "ACRE": "0.317", "LONGITUDE": -64.94970408, "LATITUDE": 18.34699589, "OBJECTID_1": 9251, "PARCEL_NO_": "105301079800", "Tax_Legal_": "SOLBERG 1B No.1 LT. NORTHSIDE", "Name": "Aubain, Dean & Saitah N.", "Address": "PO Box 307153", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.24928761800001, "SHAPE_Area": 1245.5110697099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356826.063699997961521, 257476.456000000238419 ], [ 356789.642599999904633, 257467.090999998152256 ], [ 356789.523699998855591, 257481.050999999046326 ], [ 356789.471600003540516, 257487.172200001776218 ], [ 356792.6537000015378, 257492.264499999582767 ], [ 356814.280299998819828, 257509.328999999910593 ], [ 356835.310900002717972, 257501.690699998289347 ], [ 356834.567500002682209, 257494.296300001442432 ], [ 356833.775600001215935, 257492.601100001484156 ], [ 356831.371100001037121, 257490.892700001597404 ], [ 356826.063699997961521, 257476.456000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094600", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-33", "ACRE": "0.29", "LONGITUDE": -64.94974624, "LATITUDE": 18.34666966, "OBJECTID_1": 9330, "PARCEL_NO_": "105301094600", "Tax_Legal_": "1B-33 SOLBERG LT.NORTHSIDE QTR.", "Name": "MARCHENA, CLARICE (LIFE ESTATE)", "Address": "PO Box 7804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23800, "Improved_V": 475600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.23295204799999, "SHAPE_Area": 1337.2796525000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356825.030500002205372, 257433.625399999320507 ], [ 356786.849600002169609, 257431.437899999320507 ], [ 356789.073499999940395, 257439.250799998641014 ], [ 356789.83839999884367, 257444.112199999392033 ], [ 356789.642599999904633, 257467.090999998152256 ], [ 356826.063699997961521, 257476.456000000238419 ], [ 356825.066200003027916, 257473.742499999701977 ], [ 356823.525499999523163, 257465.286100000143051 ], [ 356822.882799997925758, 257446.071400001645088 ], [ 356823.748499996960163, 257439.112399999052286 ], [ 356825.030500002205372, 257433.625399999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301098600", "MAP": "A9-372-T90", "PARCEL_NAM": "1B-32", "ACRE": "0.29", "LONGITUDE": -64.94977737000001, "LATITUDE": 18.34636881, "OBJECTID_1": 9368, "PARCEL_NO_": "105301098600", "Tax_Legal_": "SOLBERG 1B-32 LT.NORTHSIDE QTR.", "Name": "SCABRIEL, PATRICE", "Address": "PO Box 9431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36500, "Improved_V": 384300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.90385479700001, "SHAPE_Area": 1210.65276356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356786.849600002169609, 257431.437899999320507 ], [ 356825.030500002205372, 257433.625399999320507 ], [ 356828.769799999892712, 257417.621899999678135 ], [ 356828.803999997675419, 257413.611400000751019 ], [ 356822.409199997782707, 257407.0152000002563 ], [ 356819.192900002002716, 257405.933400001376867 ], [ 356811.871299996972084, 257405.937399998307228 ], [ 356795.178800001740456, 257405.946400001645088 ], [ 356795.19200000166893, 257406.589499998837709 ], [ 356775.332900002598763, 257405.254399999976158 ], [ 356778.002700001001358, 257413.617800001055002 ], [ 356780.378499999642372, 257418.703499998897314 ], [ 356784.363300003111362, 257424.224599998444319 ], [ 356784.347099997103214, 257426.124299999326468 ], [ 356785.941699996590614, 257428.2483000010252 ], [ 356786.849600002169609, 257431.437899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301120100", "MAP": "C9-237-T79", "PARCEL_NAM": "200-4", "ACRE": "2.54", "LONGITUDE": -64.94340829, "LATITUDE": 18.34417272, "OBJECTID_1": 9428, "PARCEL_NO_": "105301120100", "Tax_Legal_": "ALTONA & WELGUNST 200-4 KRONP. QTR.-ROAD", "Name": "WALK-IN HOMES, INC.", "Address": "BOX 2463", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 406300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 421.09027806500001, "SHAPE_Area": 1716.0236723600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357426.303400002419949, 257226.617600001394749 ], [ 357444.974500000476837, 257211.993900001049042 ], [ 357451.489699997007847, 257204.447799999266863 ], [ 357458.031900003552437, 257193.735599998384714 ], [ 357460.47240000218153, 257191.222500000149012 ], [ 357466.213699996471405, 257179.870400000363588 ], [ 357476.839599996805191, 257163.069899998605251 ], [ 357481.357900001108646, 257156.461800001561642 ], [ 357483.32599999755621, 257154.826400000602007 ], [ 357485.686499997973442, 257152.999800000339746 ], [ 357489.221400000154972, 257150.988400001078844 ], [ 357493.047100000083447, 257149.270899999886751 ], [ 357498.63120000064373, 257147.664799999445677 ], [ 357504.204300001263618, 257147.418699998408556 ], [ 357509.278399996459484, 257148.431499999016523 ], [ 357512.388400003314018, 257150.594099998474121 ], [ 357514.3074000030756, 257154.981300000101328 ], [ 357514.090599998831749, 257158.844500001519918 ], [ 357511.480499997735023, 257166.94200000166893 ], [ 357503.318499997258186, 257178.485300000756979 ], [ 357491.078100003302097, 257195.48369999974966 ], [ 357488.63400000333786, 257198.418999999761581 ], [ 357482.970100000500679, 257200.694699998944998 ], [ 357480.520599998533726, 257204.263300001621246 ], [ 357481.278300002217293, 257209.969000000506639 ], [ 357484.483800001442432, 257212.317299999296665 ], [ 357488.509999997913837, 257212.983500000089407 ], [ 357491.742399998009205, 257212.165600001811981 ], [ 357493.367600001394749, 257210.701200000941753 ], [ 357495.028800003230572, 257205.015299998223782 ], [ 357497.467500001192093, 257202.713199999183416 ], [ 357518.696000002324581, 257171.856199998408556 ], [ 357520.353500001132488, 257166.592399999499321 ], [ 357521.224600002169609, 257159.000199999660254 ], [ 357519.671300001442432, 257152.02140000090003 ], [ 357515.695500001311302, 257145.445000000298023 ], [ 357513.292700000107288, 257143.525400001555681 ], [ 357506.858400002121925, 257141.572900000959635 ], [ 357497.990800000727177, 257141.289299998432398 ], [ 357490.715999998152256, 257143.340700000524521 ], [ 357485.865500003099442, 257144.778599999845028 ], [ 357476.139399997889996, 257150.609600000083447 ], [ 357471.265600003302097, 257154.791600000113249 ], [ 357459.003700003027916, 257174.322999998927116 ], [ 357446.734600000083447, 257194.698600001633167 ], [ 357441.840899996459484, 257201.202500000596046 ], [ 357428.034699998795986, 257212.699599999934435 ], [ 357426.303400002419949, 257226.617600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301120300", "MAP": "D9-2770-T84", "PARCEL_NAM": "200-5A-8", "ACRE": null, "LONGITUDE": -64.94642672000001, "LATITUDE": 18.34087329, "OBJECTID_1": 9429, "PARCEL_NO_": "105301120300", "Tax_Legal_": "ALTONA & WELGUNST 200-5A CROWN PRINCE QTR", "Name": "WALK-IN HOMES, INC.", "Address": "BOX 2463", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.2974895455, "SHAPE_Area": 157.868011185 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357157.163000002503395, 256826.081300001591444 ], [ 357162.071000002324581, 256817.888799998909235 ], [ 357163.690800003707409, 256817.057700000703335 ], [ 357164.513300001621246, 256815.164599999785423 ], [ 357171.016000002622604, 256809.096099998801947 ], [ 357175.042099997401237, 256809.762299999594688 ], [ 357169.462700001895428, 256802.117300000041723 ], [ 357162.963600002229214, 256807.763599999248981 ], [ 357154.815999999642372, 256817.618299998342991 ], [ 357154.752999998629093, 256825.006099998950958 ], [ 357157.163000002503395, 256826.081300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301121700", "MAP": null, "PARCEL_NAM": "200-5C-7", "ACRE": null, "LONGITUDE": -64.94519357, "LATITUDE": 18.34427007, "OBJECTID_1": 9441, "PARCEL_NO_": "105301121700", "Tax_Legal_": "ALTONA & WELGUNST 200-5C-7 CROWN PRINCE QTR.", "Name": "ANDRE, CASEY & CINDY NOEL & STAYSEY", "Address": "PO Box 10513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 81700, "Improved_V": 635300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.62157458900001, "SHAPE_Area": 1115.30306578 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357293.60530000180006, 257213.753299999982119 ], [ 357310.969499997794628, 257180.513300001621246 ], [ 357296.182499997317791, 257166.657499998807907 ], [ 357292.043399997055531, 257163.960299998521805 ], [ 357267.234600000083447, 257203.252000000327826 ], [ 357274.072200000286102, 257206.3733000010252 ], [ 357290.956200003623962, 257212.210999999195337 ], [ 357293.60530000180006, 257213.753299999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301122300", "MAP": "D9-5955-T95", "PARCEL_NAM": "200-5C-8A", "ACRE": "0.15", "LONGITUDE": -64.9450189, "LATITUDE": 18.34437785, "OBJECTID_1": 9445, "PARCEL_NO_": "105301122300", "Tax_Legal_": "200-5C-8A&8B ALTONA&WELGUNST CROWN PRINCE QTR.", "Name": "MAYNARD, WINGROVES & MAZIE M", "Address": "PO Box 307586", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43900, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.79374068, "SHAPE_Area": 591.58130358200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357307.355200000107288, 257223.39919999986887 ], [ 357322.957900002598763, 257193.335499998182058 ], [ 357316.182099997997284, 257185.39750000089407 ], [ 357310.969499997794628, 257180.513300001621246 ], [ 357293.60530000180006, 257213.753299999982119 ], [ 357299.782499998807907, 257217.349500000476837 ], [ 357307.355200000107288, 257223.39919999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301120100", "MAP": "C9-237-T79", "PARCEL_NAM": "200-4", "ACRE": "2.54", "LONGITUDE": -64.94542716, "LATITUDE": 18.34303817, "OBJECTID_1": 9428, "PARCEL_NO_": "105301120100", "Tax_Legal_": "ALTONA & WELGUNST 200-4 KRONP. QTR.-ROAD", "Name": "WALK-IN HOMES, INC.", "Address": "BOX 2463", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 406300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3346.0690548699999, "SHAPE_Area": 13183.7130055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357560.693599998950958, 257069.397399999201298 ], [ 357558.208200000226498, 257077.1875 ], [ 357558.19200000166893, 257079.087200000882149 ], [ 357554.914599999785423, 257085.182100001722574 ], [ 357550.812899999320507, 257093.38120000064373 ], [ 357547.564300000667572, 257096.098799999803305 ], [ 357542.710199996829033, 257097.95890000090003 ], [ 357538.680399999022484, 257097.714800000190735 ], [ 357531.745200000703335, 257094.823899999260902 ], [ 357524.217200003564358, 257091.6858000010252 ], [ 357515.378300003707409, 257088.024900000542402 ], [ 357498.828699998557568, 257081.181699998676777 ], [ 357487.25450000166893, 257076.395700000226498 ], [ 357479.205700002610683, 257074.641100000590086 ], [ 357467.917300000786781, 257074.548700001090765 ], [ 357451.756899997591972, 257078.427200000733137 ], [ 357441.244300000369549, 257081.929699998348951 ], [ 357431.489399999380112, 257091.138000000268221 ], [ 357428.211999997496605, 257097.232900001108646 ], [ 357427.3733000010252, 257101.025699999183416 ], [ 357422.289099998772144, 257129.903900001198053 ], [ 357417.244499996304512, 257154.138399999588728 ], [ 357409.782600000500679, 257178.142000000923872 ], [ 357402.310099996626377, 257203.412099998444319 ], [ 357390.829300001263618, 257225.905099999159575 ], [ 357385.129299998283386, 257232.402300000190735 ], [ 357378.633900001645088, 257237.626499999314547 ], [ 357372.975299999117851, 257239.269000001251698 ], [ 357366.528399996459484, 257238.793999999761581 ], [ 357356.884999997913837, 257234.915399998426437 ], [ 357352.89299999922514, 257230.238699998706579 ], [ 357348.487000003457069, 257221.432700000703335 ], [ 357343.851700000464916, 257212.168299999088049 ], [ 357336.242799997329712, 257196.960700001567602 ], [ 357330.44539999961853, 257188.332299999892712 ], [ 357326.6875, 257182.739199999719858 ], [ 357314.695299997925758, 257170.60869999974966 ], [ 357309.898800000548363, 257165.714299999177456 ], [ 357298.680600002408028, 257157.389899998903275 ], [ 357289.856100000441074, 257152.040300000458956 ], [ 357281.819899998605251, 257148.808100000023842 ], [ 357275.630900003015995, 257146.286299999803305 ], [ 357261.730400003492832, 257140.62220000103116 ], [ 357244.891400001943111, 257129.507500000298023 ], [ 357238.939300000667572, 257127.375 ], [ 357232.219800002872944, 257124.967399999499321 ], [ 357225.59740000218153, 257122.5945999994874 ], [ 357216.776500001549721, 257116.822799999266863 ], [ 357212.782700002193451, 257112.357200000435114 ], [ 357206.445500001311302, 257099.006400000303984 ], [ 357204.87610000371933, 257093.927299998700619 ], [ 357203.279600001871586, 257092.014400001615286 ], [ 357200.158699996769428, 257079.74549999833107 ], [ 357194.956200003623962, 257067.760499998927116 ], [ 357192.250200003385544, 257061.526700001209974 ], [ 357188.344499997794628, 257046.718199998140335 ], [ 357188.3733000010252, 257043.340900000184774 ], [ 357187.754000000655651, 257021.382100000977516 ], [ 357189.733400002121925, 256978.335200000554323 ], [ 357189.848499998450279, 256964.826200000941753 ], [ 357192.436499997973442, 256945.004599999636412 ], [ 357194.169600002467632, 256930.875500001013279 ], [ 357195.93860000371933, 256912.52479999884963 ], [ 357192.857199996709824, 256895.612100001424551 ], [ 357190.583999998867512, 256878.494899999350309 ], [ 357187.509800001978874, 256860.737900000065565 ], [ 357186.031999997794628, 256844.893800001591444 ], [ 357186.211800001561642, 256823.785900000482798 ], [ 357184.142899997532368, 256807.7162000015378 ], [ 357182.430200003087521, 256794.412999998778105 ], [ 357181.658100001513958, 256790.395899999886751 ], [ 357181.724600002169609, 256782.585099998861551 ], [ 357181.814499996602535, 256772.032000001519918 ], [ 357181.909800000488758, 256760.844799999147654 ], [ 357183.417700000107288, 256750.921000000089407 ], [ 357184.472599998116493, 256743.978300001472235 ], [ 357186.859300002455711, 256737.786100000143051 ], [ 357189.420199997723103, 256731.142099998891354 ], [ 357195.949799999594688, 256721.907400000840425 ], [ 357200.358400002121925, 256717.367600001394749 ], [ 357211.406400002539158, 256705.990800000727177 ], [ 357220.335199996829033, 256699.097800001502037 ], [ 357226.01349999755621, 256695.133499998599291 ], [ 357236.535099998116493, 256690.575599998235703 ], [ 357242.200900003314018, 256688.088799998164177 ], [ 357250.280199997127056, 256686.255100000649691 ], [ 357259.956000000238419, 256686.334300000220537 ], [ 357266.393899999558926, 256687.864599999040365 ], [ 357275.655699998140335, 256690.022799998521805 ], [ 357283.294100001454353, 256691.802600000053644 ], [ 357299.387900002300739, 256695.734099999070168 ], [ 357302.593400001525879, 256698.082299999892712 ], [ 357303.369199998676777, 256701.677299998700619 ], [ 357308.359899997711182, 256683.775199998170137 ], [ 357306.740099996328354, 256684.606300000101328 ], [ 357302.694099999964237, 256686.261900000274181 ], [ 357262.448600001633167, 256677.69990000128746 ], [ 357246.318800002336502, 256677.989999998360872 ], [ 357237.431400001049042, 256680.028200000524521 ], [ 357229.334100000560284, 256683.972699999809265 ], [ 357218.806999996304512, 256689.163899999111891 ], [ 357206.638599999248981, 256697.719200000166893 ], [ 357187.11089999973774, 256718.246500000357628 ], [ 357183.020000003278255, 256725.179099999368191 ], [ 357180.579499997198582, 256727.692299999296665 ], [ 357178.932700000703335, 256731.689599998295307 ], [ 357175.621100001037121, 256741.794900000095367 ], [ 357173.065499998629093, 256757.817099999636412 ], [ 357172.072200000286102, 256779.762699998915195 ], [ 357171.988899998366833, 256789.540899999439716 ], [ 357171.937399998307228, 256795.593699999153614 ], [ 357169.462700001895428, 256802.117300000041723 ], [ 357175.042099997401237, 256809.762299999594688 ], [ 357175.823299996554852, 256812.723999999463558 ], [ 357177.311800003051758, 256827.301699999719858 ], [ 357177.866400003433228, 256856.859299998730421 ], [ 357178.633100003004074, 256861.50959999859333 ], [ 357187.101599998772144, 256908.652800001204014 ], [ 357184.445299997925758, 256936.495400000363588 ], [ 357180.968299999833107, 256966.020100001245737 ], [ 357178.250799998641014, 257001.03940000012517 ], [ 357178.110600002110004, 257017.503499999642372 ], [ 357179.471500001847744, 257047.067699998617172 ], [ 357184.943000003695488, 257067.377500001341105 ], [ 357185.726000003516674, 257070.128100000321865 ], [ 357190.463100001215935, 257081.988099999725819 ], [ 357192.842500001192093, 257086.651700001209974 ], [ 357195.185900002717972, 257095.536800000816584 ], [ 357206.276500001549721, 257118.847800001502037 ], [ 357213.472199998795986, 257126.08390000090003 ], [ 357220.694799996912479, 257130.153799999505281 ], [ 357243.197800002992153, 257138.992800001055002 ], [ 357246.405100002884865, 257141.129999998956919 ], [ 357258.431500002741814, 257149.25 ], [ 357272.092000000178814, 257154.85020000115037 ], [ 357288.965199999511242, 257161.9543999992311 ], [ 357296.182499997317791, 257166.657499998807907 ], [ 357316.182099997997284, 257185.39750000089407 ], [ 357324.16610000282526, 257194.750900000333786 ], [ 357329.72749999910593, 257204.506700001657009 ], [ 357331.318599998950958, 257207.05290000140667 ], [ 357345.483199998736382, 257230.603300001472235 ], [ 357333.759499996900558, 257229.388099998235703 ], [ 357321.737199999392033, 257227.050400000065565 ], [ 357309.077899999916553, 257224.759700000286102 ], [ 357309.071800000965595, 257224.770599998533726 ], [ 357299.782499998807907, 257217.349500000476837 ], [ 357290.956200003623962, 257212.210999999195337 ], [ 357274.072200000286102, 257206.3733000010252 ], [ 357246.761900000274181, 257193.906300000846386 ], [ 357238.729299999773502, 257190.252000000327826 ], [ 357233.896799996495247, 257189.579199999570847 ], [ 357225.038199998438358, 257188.240100000053644 ], [ 357214.543499998748302, 257189.631799999624491 ], [ 357208.083999998867512, 257190.634399998933077 ], [ 357199.219999998807907, 257189.928599998354912 ], [ 357194.405500002205372, 257187.144999999552965 ], [ 357192.011699996888638, 257184.170099999755621 ], [ 357188.077299997210503, 257172.738800000399351 ], [ 357173.899899996817112, 257133.148299999535084 ], [ 357166.74379999935627, 257121.268500000238419 ], [ 357159.569700002670288, 257111.499499998986721 ], [ 357145.993699997663498, 257095.978500001132488 ], [ 357137.212300002574921, 257085.563099998980761 ], [ 357133.23650000244379, 257078.986600000411272 ], [ 357127.701999999582767, 257066.064599998295307 ], [ 357126.181100003421307, 257055.286400001496077 ], [ 357125.504299998283386, 257040.082100000232458 ], [ 357128.984899997711182, 257010.135299999266863 ], [ 357123.362300001084805, 257007.556200001388788 ], [ 357119.890600003302097, 257036.447599999606609 ], [ 357119.010600000619888, 257045.095199998468161 ], [ 357120.457800000905991, 257064.527699999511242 ], [ 357122.045299999415874, 257067.495999999344349 ], [ 357122.810199998319149, 257072.357400000095367 ], [ 357125.198600001633167, 257075.965500000864267 ], [ 357125.977899998426437, 257079.138300001621246 ], [ 357137.925200000405312, 257096.545800000429153 ], [ 357153.104800000786781, 257113.135299999266863 ], [ 357156.292300000786781, 257117.594399999827147 ], [ 357164.263700000941753, 257128.425400000065565 ], [ 357167.411700002849102, 257137.528200000524521 ], [ 357176.101300001144409, 257158.708599999547005 ], [ 357183.20160000026226, 257177.131900001317263 ], [ 357183.135099999606609, 257184.941799998283386 ], [ 357183.851499997079372, 257195.502399999648333 ], [ 357182.15259999781847, 257205.620900001376867 ], [ 357164.009099997580051, 257252.968499999493361 ], [ 357161.584799997508526, 257253.581900000572205 ], [ 357159.979400001466274, 257252.724399998784065 ], [ 357158.325400002300739, 257257.565999999642372 ], [ 357160.729900002479553, 257259.274500001221895 ], [ 357163.145300000905991, 257259.716400001198053 ], [ 357168.814599998295307, 257256.807500001043081 ], [ 357172.10639999806881, 257249.024000000208616 ], [ 357173.728000000119209, 257247.981800001114607 ], [ 357178.567699998617172, 257247.810300000011921 ], [ 357192.276799999177456, 257247.711399998515844 ], [ 357206.817400000989437, 257244.664000000804663 ], [ 357214.808200001716614, 257241.311000000685453 ], [ 357227.048900000751019, 257236.174800001084805 ], [ 357239.951700001955032, 257236.069299999624491 ], [ 357244.780599996447563, 257237.164299998432398 ], [ 357255.930699996650219, 257243.736800000071526 ], [ 357266.350500002503395, 257249.878600001335144 ], [ 357279.281199999153614, 257257.500500001013279 ], [ 357292.093500003218651, 257268.798599999397993 ], [ 357299.356299996376038, 257267.375100001692772 ], [ 357284.950599998235703, 257254.591600000858307 ], [ 357262.487099997699261, 257241.108899999409914 ], [ 357246.439999997615814, 257231.689399998635054 ], [ 357237.592100001871586, 257229.08390000090003 ], [ 357227.909199997782707, 257229.848999999463558 ], [ 357217.387599997222424, 257234.407000001519918 ], [ 357209.29389999806881, 257237.929299999028444 ], [ 357195.557800002396107, 257241.194400001317263 ], [ 357178.618000000715256, 257241.900100000202656 ], [ 357177.824299998581409, 257240.416000001132488 ], [ 357177.885499998927116, 257233.23930000141263 ], [ 357187.789599999785423, 257206.511500000953674 ], [ 357195.904799997806549, 257200.456199999898672 ], [ 357207.225599996745586, 257196.749099999666214 ], [ 357218.70830000191927, 257195.478100001811981 ], [ 357224.982400000095367, 257194.783500000834465 ], [ 357234.652800001204014, 257195.495999999344349 ], [ 357242.689000003039837, 257198.728100001811981 ], [ 357253.937799997627735, 257203.464299999177456 ], [ 357266.781199999153614, 257210.324400000274181 ], [ 357277.232699997723103, 257213.998500000685453 ], [ 357287.685999996960163, 257217.461599998176098 ], [ 357296.512299999594688, 257222.600000001490116 ], [ 357305.322400003671646, 257229.638199999928474 ], [ 357310.941399998962879, 257232.639499999582767 ], [ 357327.013300001621246, 257236.047699999064207 ], [ 357332.423699997365475, 257236.901999998837709 ], [ 357345.781800001859665, 257241.744300000369549 ], [ 357348.67059999704361, 257242.127500001341105 ], [ 357354.809900000691414, 257246.109999999403954 ], [ 357364.815099999308586, 257250.601199999451637 ], [ 357384.207900002598763, 257245.904800001531839 ], [ 357389.907899998128414, 257239.407499998807907 ], [ 357398.068099997937679, 257228.075300000607967 ], [ 357402.180600002408028, 257218.609700001776218 ], [ 357405.449000000953674, 257213.570199999958277 ], [ 357420.961300000548363, 257191.110199999064207 ], [ 357420.255699999630451, 257179.28319999948144 ], [ 357421.096199996769428, 257175.27930000051856 ], [ 357422.778899997472763, 257167.060400001704693 ], [ 357426.166000001132488, 257148.089699998497963 ], [ 357428.726999998092651, 257131.434300001710653 ], [ 357432.979800000786781, 257105.504599999636412 ], [ 357435.457999996840954, 257098.558800000697374 ], [ 357439.536399997770786, 257093.103700000792742 ], [ 357445.225500002503395, 257087.872900001704693 ], [ 357450.08500000089407, 257085.379599999636412 ], [ 357458.979599997401237, 257082.497099999338388 ], [ 357471.093999996781349, 257080.27419999986887 ], [ 357479.1554000005126, 257080.551300000399351 ], [ 357503.270999997854233, 257089.403499998152256 ], [ 357535.404799997806549, 257103.598700001835823 ], [ 357537.814800001680851, 257104.673799999058247 ], [ 357542.652699999511242, 257104.71339999884367 ], [ 357548.307599999010563, 257103.493200000375509 ], [ 357553.16889999806881, 257100.788699999451637 ], [ 357556.430100001394749, 257096.593600001186132 ], [ 357559.667900003492832, 257095.142400000244379 ], [ 357566.037500001490116, 257104.693799998611212 ], [ 357567.752599999308586, 257092.675500001758337 ], [ 357566.168799996376038, 257089.285000000149012 ], [ 357563.832599997520447, 257079.555599998682737 ], [ 357567.930699996650219, 257071.778599999845028 ], [ 357560.693599998950958, 257069.397399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301160100", "MAP": "D9-2721-T84", "PARCEL_NAM": "200-5D-5", "ACRE": ".26", "LONGITUDE": -64.94490933, "LATITUDE": 18.34480586, "OBJECTID_1": 9545, "PARCEL_NO_": "105301160100", "Tax_Legal_": "ALTONA & WELGUNST 200-5D-5 CROWN PRINCE QUARTER", "Name": "COOPER, PHILARINE V.", "Address": "3623-17 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71400, "Improved_V": 171500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.168977251, "SHAPE_Area": 1453.92542048 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357310.941399998962879, 257232.639499999582767 ], [ 357284.950599998235703, 257254.591600000858307 ], [ 357296.221900001168251, 257264.593699999153614 ], [ 357299.356299996376038, 257267.375100001692772 ], [ 357347.036700002849102, 257255.099800001829863 ], [ 357364.815099999308586, 257250.601199999451637 ], [ 357354.809900000691414, 257246.109999999403954 ], [ 357348.67059999704361, 257242.127500001341105 ], [ 357345.781800001859665, 257241.744300000369549 ], [ 357332.423699997365475, 257236.901999998837709 ], [ 357327.013300001621246, 257236.047699999064207 ], [ 357310.941399998962879, 257232.639499999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301122600", "MAP": "D9-6155-T97", "PARCEL_NAM": "200-5C-8 REM", "ACRE": "0.19", "LONGITUDE": -64.94484918000001, "LATITUDE": 18.34451214, "OBJECTID_1": 9447, "PARCEL_NO_": "105301122600", "Tax_Legal_": "ALTONA & WELGUNST REM. 200-5C-8 KRONPRINDSENS QTR.", "Name": "ABBOTT, SHIRWIN L. & DORETTA M", "Address": "PO Box 10772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.69155766599999, "SHAPE_Area": 574.99967260999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357309.077899999916553, 257224.759700000286102 ], [ 357321.737199999392033, 257227.050400000065565 ], [ 357333.759499996900558, 257229.388099998235703 ], [ 357345.483300000429153, 257230.603399999439716 ], [ 357331.318599998950958, 257207.05290000140667 ], [ 357329.72749999910593, 257204.506700001657009 ], [ 357327.654100000858307, 257200.869699999690056 ], [ 357325.937200002372265, 257197.857799999415874 ], [ 357324.975199997425079, 257196.170200001448393 ], [ 357309.077899999916553, 257224.759700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301122300", "MAP": "D9-6195-T97", "PARCEL_NAM": "200-5C-8B", "ACRE": "468 sq ft", "LONGITUDE": -64.94494413, "LATITUDE": 18.34443202, "OBJECTID_1": 9445, "PARCEL_NO_": "105301122300", "Tax_Legal_": "200-5C-8A&8B ALTONA&WELGUNST CROWN PRINCE QTR.", "Name": "MAYNARD, WINGROVES & MAZIE M", "Address": "PO Box 307586", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43900, "Improved_V": 68600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.287815626799997, "SHAPE_Area": 88.175721563500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357309.071800000965595, 257224.770599998533726 ], [ 357324.975199997425079, 257196.170200001448393 ], [ 357324.16610000282526, 257194.750900000333786 ], [ 357322.957900002598763, 257193.335499998182058 ], [ 357307.355200000107288, 257223.39919999986887 ], [ 357309.071800000965595, 257224.770599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301152900", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-14", "ACRE": ".23", "LONGITUDE": -64.94734956000001, "LATITUDE": 18.3437272, "OBJECTID_1": 9527, "PARCEL_NO_": "105301152900", "Tax_Legal_": "ALTONA 220-14 SOUTHSIDE QTR", "Name": "CHARLES, CARLTON L", "Address": "5350 Vermillion Blvd", "City": "New Orleans", "State": "Louisiana", "Zip": 70122, "Country": "United States", "Land_Value": 48200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.08914208300001, "SHAPE_Area": 1032.89906197 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357081.723300002515316, 257124.212099999189377 ], [ 357060.629100002348423, 257099.987300001084805 ], [ 357058.827399998903275, 257105.186500001698732 ], [ 357057.184199996292591, 257108.761700000613928 ], [ 357057.167999997735023, 257110.661400001496077 ], [ 357046.50789999961853, 257131.47239999845624 ], [ 357044.026100002229214, 257138.840399999171495 ], [ 357066.487700000405312, 257152.534200001507998 ], [ 357073.037100002169609, 257140.977600000798702 ], [ 357080.414399996399879, 257126.89469999819994 ], [ 357081.723300002515316, 257124.212099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301153100", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-12", "ACRE": ".22", "LONGITUDE": -64.94760308, "LATITUDE": 18.34426388, "OBJECTID_1": 9529, "PARCEL_NO_": "105301153100", "Tax_Legal_": "ALTONA & WELGUNST 220-12 CROWN PRINCE QTR.", "Name": "ALEXANDER, FITZROY I.", "Address": "PO Box 9992", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43800, "Improved_V": 15600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.262078672, "SHAPE_Area": 894.25610508700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357017.467000000178814, 257191.483899999409914 ], [ 357012.891699999570847, 257196.636300001293421 ], [ 357046.744699999690056, 257206.223299998790026 ], [ 357049.231499999761581, 257190.389800000935793 ], [ 357051.715199999511242, 257182.810699999332428 ], [ 357053.77929999679327, 257177.246399998664856 ], [ 357030.927599996328354, 257166.919199999421835 ], [ 357028.416599996387959, 257172.698699999600649 ], [ 357026.766199998557568, 257177.118099998682737 ], [ 357019.405100002884865, 257189.301300000399351 ], [ 357017.467000000178814, 257191.483899999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301153200", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-11", "ACRE": ".29", "LONGITUDE": -64.947668, "LATITUDE": 18.34463631, "OBJECTID_1": 9530, "PARCEL_NO_": "105301153200", "Tax_Legal_": "ALTONA & WELGUNST 220-11 SOUTHSIDE QUARTER", "Name": "HUTCHINSON, DORIS & OSLEY, SARAH", "Address": "28904 Ridge Rd", "City": "Mount Airy", "State": "Maryland", "Zip": 21771, "Country": "United States", "Land_Value": 57100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.149206346, "SHAPE_Area": 1516.69443458 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357023.539899997413158, 257271.872699998319149 ], [ 357034.968599997460842, 257255.500999998301268 ], [ 357037.4324000030756, 257250.24379999935627 ], [ 357039.935900002717972, 257240.3429000005126 ], [ 357045.821000002324581, 257212.104499999433756 ], [ 357046.744699999690056, 257206.223299998790026 ], [ 357012.891699999570847, 257196.636300001293421 ], [ 357007.996299996972084, 257203.351199999451637 ], [ 357016.009099997580051, 257209.327399998903275 ], [ 357019.900399997830391, 257225.824499998241663 ], [ 357019.005900003015995, 257236.160799998790026 ], [ 357016.513300001621246, 257244.795200001448393 ], [ 357016.427000001072884, 257254.927000001072884 ], [ 357020.393799997866154, 257262.558800000697374 ], [ 357023.539899997413158, 257271.872699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301153000", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-13", "ACRE": ".22", "LONGITUDE": -64.94748552, "LATITUDE": 18.34400019, "OBJECTID_1": 9528, "PARCEL_NO_": "105301153000", "Tax_Legal_": "ALTONA & WELGUNST 220-13 CROWN PRINCE QTR.", "Name": "PROSPER, LUCILLE", "Address": "OHC BLDG #7, APT. 69", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.281107554, "SHAPE_Area": 736.94592344199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357030.927599996328354, 257166.919199999421835 ], [ 357053.77929999679327, 257177.246399998664856 ], [ 357057.492399998009205, 257167.237100001424551 ], [ 357066.487700000405312, 257152.534200001507998 ], [ 357044.026100002229214, 257138.840399999171495 ], [ 357032.529100000858307, 257163.2331000007689 ], [ 357030.927599996328354, 257166.919199999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301161100", "MAP": null, "PARCEL_NAM": "200-5F-1", "ACRE": "0.24", "LONGITUDE": -64.94672068, "LATITUDE": 18.34352142, "OBJECTID_1": 9554, "PARCEL_NO_": "105301161100", "Tax_Legal_": "ALTONA & WELGUNST 200-5F-1 CROWN PRINCE QTR.", "Name": "CARTY, TERRANCE", "Address": "PO Box 303942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 80900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.16697966199999, "SHAPE_Area": 1236.0849588399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357125.011399999260902, 257075.682900000363588 ], [ 357111.263899996876717, 257093.886999998241663 ], [ 357106.421599999070168, 257099.397199999541044 ], [ 357106.031400002539158, 257099.701299998909235 ], [ 357108.86370000243187, 257100.31870000064373 ], [ 357109.034599997103214, 257100.455200001597404 ], [ 357112.067400000989437, 257102.878100000321865 ], [ 357115.262100003659725, 257106.492800001055002 ], [ 357123.120200000703335, 257130.621800001710653 ], [ 357156.292300000786781, 257117.594399999827147 ], [ 357153.104800000786781, 257113.135299999266863 ], [ 357137.925200000405312, 257096.545800000429153 ], [ 357125.977899998426437, 257079.138300001621246 ], [ 357125.198600001633167, 257075.965500000864267 ], [ 357125.011399999260902, 257075.682900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301152800", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-15", "ACRE": ".23", "LONGITUDE": -64.94721948, "LATITUDE": 18.34346474, "OBJECTID_1": 9526, "PARCEL_NO_": "105301152800", "Tax_Legal_": "220-15 ALTONA&WELGUNST CROWN PRINCE QTR.", "Name": "FELICIANO, LAURA", "Address": "P.O. BOX 2097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 78400, "Improved_V": 111700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.286700045, "SHAPE_Area": 856.07662861200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357087.435199998319149, 257092.165399998426437 ], [ 357078.620099999010563, 257075.185699999332428 ], [ 357078.534199997782707, 257075.153000000864267 ], [ 357078.430699996650219, 257075.7939000017941 ], [ 357079.190200001001358, 257081.288499999791384 ], [ 357073.538800001144409, 257082.086599998176098 ], [ 357068.717100001871586, 257080.147300001233816 ], [ 357066.298199996352196, 257080.127500001341105 ], [ 357061.307499997317791, 257098.029599998146296 ], [ 357060.629100002348423, 257099.987300001084805 ], [ 357081.723300002515316, 257124.212099999189377 ], [ 357085.338600002229214, 257116.802600000053644 ], [ 357093.278300002217293, 257106.745600000023842 ], [ 357087.435199998319149, 257092.165399998426437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301152700", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-16", "ACRE": ".18", "LONGITUDE": -64.94702913, "LATITUDE": 18.34332171, "OBJECTID_1": 9525, "PARCEL_NO_": "105301152700", "Tax_Legal_": "220-16&200-5FB ALTONA&WELGUNST KRONPRINDSENS QTR.", "Name": "Eddy Sanchez Medrano & Margarita Sanchez Hiciano", "Address": "PO Box 306888", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036888, "Country": "United States", "Land_Value": 63200, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.95856641100001, "SHAPE_Area": 855.36884068400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357111.24889999628067, 257093.903999999165535 ], [ 357111.738499999046326, 257068.448600001633167 ], [ 357111.554200001060963, 257068.465599998831749 ], [ 357079.281900003552437, 257070.523499999195337 ], [ 357079.133599996566772, 257071.441700000315905 ], [ 357078.534199997782707, 257075.153000000864267 ], [ 357078.620099999010563, 257075.185699999332428 ], [ 357087.435199998319149, 257092.165399998426437 ], [ 357093.278300002217293, 257106.745600000023842 ], [ 357095.9358000010252, 257103.379299998283386 ], [ 357099.994300000369549, 257100.246100001037121 ], [ 357104.839400000870228, 257099.441399998962879 ], [ 357106.031400002539158, 257099.701299998909235 ], [ 357106.421599999070168, 257099.397199999541044 ], [ 357111.24889999628067, 257093.903999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301153300", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-26", "ACRE": ".29", "LONGITUDE": -64.94746969000001, "LATITUDE": 18.34500858, "OBJECTID_1": 9531, "PARCEL_NO_": "105301153300", "Tax_Legal_": "ALTONA & WELGUNST 220-26 SOUTHSIDE QTR.", "Name": "PETTY, KATHLEEN & JOSEPH", "Address": "2600 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60800, "Improved_V": 14600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.81085160500001, "SHAPE_Area": 1398.66258214 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357034.968599997460842, 257255.500999998301268 ], [ 357023.539899997413158, 257271.872699998319149 ], [ 357023.542400002479553, 257286.168499998748302 ], [ 357066.168399997055531, 257284.676100000739098 ], [ 357075.203299999237061, 257265.329500000923872 ], [ 357078.829800002276897, 257257.515399999916553 ], [ 357036.291500002145767, 257252.678199999034405 ], [ 357034.968599997460842, 257255.500999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301153400", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-25", "ACRE": ".23", "LONGITUDE": -64.94733756, "LATITUDE": 18.34479086, "OBJECTID_1": 9532, "PARCEL_NO_": "105301153400", "Tax_Legal_": "ALTONA & WELGUNST 220-25 SOUTHSIDE QUARTER", "Name": "PETTY, CALVIN A. & ROZINA R", "Address": "2600 Nye Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.139595071, "SHAPE_Area": 802.87771638599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357036.291500002145767, 257252.678199999034405 ], [ 357078.829800002276897, 257257.515399999916553 ], [ 357085.060599997639656, 257244.089699998497963 ], [ 357088.058700002729893, 257237.283300001174212 ], [ 357056.695500001311302, 257234.990200001746416 ], [ 357056.080099999904633, 257238.364100001752377 ], [ 357052.847699999809265, 257239.182000000029802 ], [ 357051.217100001871586, 257241.279599998146296 ], [ 357039.935900002717972, 257240.3429000005126 ], [ 357037.4324000030756, 257250.24379999935627 ], [ 357036.291500002145767, 257252.678199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301153500", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-24", "ACRE": ".25", "LONGITUDE": -64.94725234000001, "LATITUDE": 18.34457455, "OBJECTID_1": 9533, "PARCEL_NO_": "105301153500", "Tax_Legal_": "220-24 ALTONA&WELGUNST KRONPRINDSENS GADE", "Name": "PETTY, JAMES & JULIETTE", "Address": "PO BOX 304262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 55400, "Improved_V": 213400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.28563164100001, "SHAPE_Area": 1056.1618678299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357093.660499997437, 257210.134199999272823 ], [ 357055.023199997842312, 257207.529399998486042 ], [ 357054.717399999499321, 257209.010899998247623 ], [ 357051.301600001752377, 257231.358899999409914 ], [ 357052.896200001239777, 257233.482900001108646 ], [ 357056.925999999046326, 257233.72690000012517 ], [ 357056.695500001311302, 257234.990200001746416 ], [ 357088.058700002729893, 257237.283300001174212 ], [ 357091.638800002634525, 257229.155900001525879 ], [ 357092.536799997091293, 257218.39750000089407 ], [ 357093.660499997437, 257210.134199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301153600", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-23", "ACRE": ".22", "LONGITUDE": -64.94722627, "LATITUDE": 18.34432703, "OBJECTID_1": 9534, "PARCEL_NO_": "105301153600", "Tax_Legal_": "220-23 Estate Altona & Welgunst CROWN PRINCE QTR", "Name": "ILLIS, JOECIPHASE & ALECIA", "Address": "PO Box 12162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96500, "Improved_V": 71800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.099104006, "SHAPE_Area": 1049.8562181699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357055.023199997842312, 257207.529399998486042 ], [ 357093.660499997437, 257210.134199999272823 ], [ 357095.117600001394749, 257199.420200001448393 ], [ 357096.780599996447563, 257193.523200001567602 ], [ 357098.518299996852875, 257190.578499998897314 ], [ 357063.21509999781847, 257173.674800001084805 ], [ 357062.247599996626377, 257176.986299999058247 ], [ 357059.763899996876717, 257184.565400000661612 ], [ 357055.023199997842312, 257207.529399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301152400", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-19", "ACRE": ".22", "LONGITUDE": -64.94717321, "LATITUDE": 18.34287852, "OBJECTID_1": 9522, "PARCEL_NO_": "105301152400", "Tax_Legal_": "220-19 ALTONA&WELGUNST KRONP. PRINCE QTR.", "Name": "AUGUSTUS, KENRICK & MONIQUE", "Address": "PO Box 11411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63200, "Improved_V": 130600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.93676019200001, "SHAPE_Area": 1115.0956714500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357097.276100002229214, 257040.695500001311302 ], [ 357093.488499999046326, 257004.600699998438358 ], [ 357086.262900002300739, 257008.30799999833107 ], [ 357077.33049999922514, 257015.623199999332428 ], [ 357073.255800001323223, 257020.656100001186132 ], [ 357069.139700002968311, 257030.543800000101328 ], [ 357069.667300000786781, 257063.267599999904633 ], [ 357072.073700003325939, 257064.765000000596046 ], [ 357075.307899996638298, 257063.736000001430511 ], [ 357097.276100002229214, 257040.695500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301152500", "MAP": "D9-2927-T85", "PARCEL_NAM": "220-18", "ACRE": ".22", "LONGITUDE": -64.94693267, "LATITUDE": 18.34275215, "OBJECTID_1": 9523, "PARCEL_NO_": "105301152500", "Tax_Legal_": "ALTONA & WELGUNST 220-18 SOUTHSIDE QTR.", "Name": "JEWEL C PENN TRUST", "Address": "PO BOX 305604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.017957053, "SHAPE_Area": 892.84104324800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357093.488499999046326, 257004.600699998438358 ], [ 357097.276100002229214, 257040.695500001311302 ], [ 357119.890600003302097, 257036.447599999606609 ], [ 357123.362300001084805, 257007.556200001388788 ], [ 357101.631399996578693, 257002.734299998730421 ], [ 357093.552100002765656, 257004.567999999970198 ], [ 357093.488499999046326, 257004.600699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301159900", "MAP": "D9-2927-T85", "PARCEL_NAM": "200-5FB", "ACRE": "0.04", "LONGITUDE": -64.94684615, "LATITUDE": 18.34326483, "OBJECTID_1": 9544, "PARCEL_NO_": "105301159900", "Tax_Legal_": "ALTONA & WELGUNST 200-5FB CROWN PRINCE GADE", "Name": "VIRCO LTD", "Address": "P.O. BOX 1709", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.554631103099993, "SHAPE_Area": 210.24862749499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357111.738499999046326, 257068.448600001633167 ], [ 357111.24889999628067, 257093.903999999165535 ], [ 357111.263899996876717, 257093.886999998241663 ], [ 357125.011399999260902, 257075.682900000363588 ], [ 357122.810199998319149, 257072.357400000095367 ], [ 357122.045299999415874, 257067.495999999344349 ], [ 357111.738499999046326, 257068.448600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105302012800", "MAP": "F9-2554-T70", "PARCEL_NAM": "128", "ACRE": "743 sq ft", "LONGITUDE": -64.93745809000001, "LATITUDE": 18.34791853, "OBJECTID_1": 9584, "PARCEL_NO_": "105302012800", "Tax_Legal_": "AGNES FANCY 128 LITTLE NORTHSIDE", "Name": "WARNER, EVERETTE K", "Address": "PO Box 972", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.966612371300002, "SHAPE_Area": 170.67651210099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358096.906499996781349, 257601.270300000905991 ], [ 358085.020400002598763, 257615.354800000786781 ], [ 358097.995200000703335, 257606.806200001388788 ], [ 358111.759999997913837, 257600.163800001144409 ], [ 358124.749099999666214, 257589.926600001752377 ], [ 358110.196000002324581, 257594.451499998569489 ], [ 358096.906499996781349, 257601.270300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105302013100", "MAP": "F9-2553-T70", "PARCEL_NAM": "129", "ACRE": "422 sq ft", "LONGITUDE": -64.93764627, "LATITUDE": 18.34801933, "OBJECTID_1": 9586, "PARCEL_NO_": "105302013100", "Tax_Legal_": "AGNES FANCY 129 QUEENS QTR", "Name": "LEBLANC, BRYON", "Address": "PO Box 306993", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.1513718291, "SHAPE_Area": 88.972805994400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358085.020400002598763, 257615.354800000786781 ], [ 358096.906499996781349, 257601.270300000905991 ], [ 358092.377999998629093, 257603.593800000846386 ], [ 358082.642899997532368, 257610.480200000107288 ], [ 358072.065499998629093, 257621.581599999219179 ], [ 358085.020400002598763, 257615.354800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105302033000", "MAP": "D3-255-T61", "PARCEL_NAM": "REM STAABI", "ACRE": ".63", "LONGITUDE": -64.93808099, "LATITUDE": 18.3454609, "OBJECTID_1": 9649, "PARCEL_NO_": "105302033000", "Tax_Legal_": "REM STAABI 9A GREAT NORTHSIDE", "Name": "DE JONGH, MAVIS", "Address": "1000 Estate Staabi", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1203400, "Improved_V": 172300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.60250485799997, "SHAPE_Area": 2738.0039130099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358022.071999996900558, 257337.462699998170137 ], [ 358114.521300002932549, 257346.790699999779463 ], [ 358115.550300002098083, 257344.560600001364946 ], [ 358099.037299998104572, 257334.712200000882149 ], [ 358079.371500000357628, 257322.983399998396635 ], [ 358076.306800000369549, 257321.155499998480082 ], [ 358070.39919999986887, 257319.450199998915195 ], [ 358063.402099996805191, 257317.430500000715256 ], [ 358061.5253000035882, 257316.888700000941753 ], [ 358054.777900002896786, 257310.355599999427795 ], [ 358051.924900002777576, 257307.593100000172853 ], [ 358051.50110000371933, 257307.660700000822544 ], [ 358036.012999996542931, 257310.13459999859333 ], [ 358020.651699997484684, 257314.864000000059605 ], [ 358011.758900001645088, 257317.535500001162291 ], [ 357989.153399996459484, 257320.728000000119209 ], [ 357984.313699997961521, 257320.899399999529123 ], [ 357957.662299998104572, 257325.747600000351667 ], [ 357957.157899998128414, 257328.751600001007318 ], [ 358000.048000000417233, 257333.925799999386072 ], [ 358022.071999996900558, 257337.462699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302031800", "MAP": null, "PARCEL_NAM": "5 & 6 CIRCLE STREET", "ACRE": null, "LONGITUDE": -64.93760221, "LATITUDE": 18.34540608, "OBJECTID_1": 9638, "PARCEL_NO_": "105302031800", "Tax_Legal_": "5 & 6 CIRCLE STREET CROWN PRINCE QTR", "Name": "SHELLD CORP", "Address": "PO Box 1222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21800, "Improved_V": 365900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.197484188999994, "SHAPE_Area": 300.97683297100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358079.371500000357628, 257322.983399998396635 ], [ 358099.037299998104572, 257334.712200000882149 ], [ 358103.6587999984622, 257320.609700001776218 ], [ 358087.593699999153614, 257313.300999999046326 ], [ 358083.578299999237061, 257311.368299998342991 ], [ 358079.371500000357628, 257322.983399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302033200", "MAP": "D9-5427-T92", "PARCEL_NAM": "1C CIRCLE ST", "ACRE": "638 sq ft", "LONGITUDE": -64.93792862, "LATITUDE": 18.34525729, "OBJECTID_1": 9651, "PARCEL_NO_": "105302033200", "Tax_Legal_": "CIRCLE STREET 1B & 1C KRONPRINDSENS QTR.", "Name": "VANTERPOOL, S; GREEN-SMITH, J & OTHERS", "Address": "1-A Circle St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.970212035800003, "SHAPE_Area": 77.436975440300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358058.982900001108646, 257314.427000001072884 ], [ 358060.383799999952316, 257312.821400001645088 ], [ 358059.667300000786781, 257298.580200001597404 ], [ 358053.721500001847744, 257299.738499999046326 ], [ 358054.777900002896786, 257310.355599999427795 ], [ 358058.982900001108646, 257314.427000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302032200", "MAP": null, "PARCEL_NAM": "LAERKE GADE 12", "ACRE": null, "LONGITUDE": -64.93742292, "LATITUDE": 18.34549183, "OBJECTID_1": 9641, "PARCEL_NO_": "105302032200", "Tax_Legal_": "LAERKE GADE 12 CROWN PRINCE QTR", "Name": "TODMAN, RAYMOND & HELENA", "Address": "PO Box 307035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28400, "Improved_V": 123100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.213367879200007, "SHAPE_Area": 318.932801224 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358099.037299998104572, 257334.712200000882149 ], [ 358115.550300002098083, 257344.560600001364946 ], [ 358122.938299998641014, 257329.211199998855591 ], [ 358103.6587999984622, 257320.609700001776218 ], [ 358099.037299998104572, 257334.712200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302031600", "MAP": null, "PARCEL_NAM": "1A CIRCLE ST", "ACRE": null, "LONGITUDE": -64.93783417, "LATITUDE": 18.34531076, "OBJECTID_1": 9636, "PARCEL_NO_": "105302031600", "Tax_Legal_": "CIRCLE STREET 1A CROWN PRINCE QTR", "Name": "VANTERPOOL, WALTER", "Address": "1-A Circle St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4600, "Improved_V": 78700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.940340654499998, "SHAPE_Area": 106.989574402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358063.402099996805191, 257317.430500000715256 ], [ 358070.39919999986887, 257319.450199998915195 ], [ 358072.633299998939037, 257308.002500001341105 ], [ 358062.744400002062321, 257304.088199999183416 ], [ 358063.402099996805191, 257317.430500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302031100", "MAP": null, "PARCEL_NAM": "12 GYLLINGS STREET", "ACRE": null, "LONGITUDE": -64.93825602, "LATITUDE": 18.34521312, "OBJECTID_1": 9631, "PARCEL_NO_": "105302031100", "Tax_Legal_": "12 GYLLINGS STREET KRONDPRINDSENS QTR", "Name": "LANG, ARIENNE & MYRTLE", "Address": "PO Box 6193", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.335281839000004, "SHAPE_Area": 454.45326600200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358036.012999996542931, 257310.13459999859333 ], [ 358034.486699998378754, 257299.989599999040365 ], [ 358033.739799998700619, 257293.017400000244379 ], [ 358020.01630000025034, 257294.804999999701977 ], [ 358018.484499998390675, 257285.293200001120567 ], [ 358015.246699996292591, 257286.74439999833703 ], [ 358007.169200003147125, 257288.366999998688698 ], [ 358014.305500000715256, 257302.56870000064373 ], [ 358020.651699997484684, 257314.864000000059605 ], [ 358036.012999996542931, 257310.13459999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302031700", "MAP": null, "PARCEL_NAM": "CIRCLE STREET 3", "ACRE": null, "LONGITUDE": -64.93773068, "LATITUDE": 18.34519683, "OBJECTID_1": 9637, "PARCEL_NO_": "105302031700", "Tax_Legal_": "CIRCLE STREET 3 CROWN PRINCE QUARTER", "Name": "WHEATLEY, CHARLES, WINSTON, RALSTON, LEROY & TAYLOR, P. W.", "Address": "PO BOX 303201", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 82300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.58558147399999, "SHAPE_Area": 497.63951571799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358070.39919999986887, 257319.450199998915195 ], [ 358076.306800000369549, 257321.155499998480082 ], [ 358079.371500000357628, 257322.983399998396635 ], [ 358083.578299999237061, 257311.368299998342991 ], [ 358086.911399997770786, 257298.730000000447035 ], [ 358083.002099998295307, 257284.343600001186132 ], [ 358080.622800000011921, 257279.680100001394749 ], [ 358073.436099998652935, 257271.388599999248981 ], [ 358073.209499999880791, 257297.984499998390675 ], [ 358073.146600000560284, 257305.372299998998642 ], [ 358070.39919999986887, 257319.450199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302033200", "MAP": "D9-5427-T92", "PARCEL_NAM": "1B CIRCLE ST", "ACRE": "1,303 sq ft", "LONGITUDE": -64.93784743000001, "LATITUDE": 18.34523835, "OBJECTID_1": 9651, "PARCEL_NO_": "105302033200", "Tax_Legal_": "CIRCLE STREET 1B & 1C KRONPRINDSENS QTR.", "Name": "VANTERPOOL, S; GREEN-SMITH, J & OTHERS", "Address": "1-A Circle St", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.804556640800001, "SHAPE_Area": 150.363681023 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358059.667300000786781, 257298.580200001597404 ], [ 358060.383799999952316, 257312.821400001645088 ], [ 358058.982900001108646, 257314.427000001072884 ], [ 358061.5253000035882, 257316.888700000941753 ], [ 358063.402099996805191, 257317.430500000715256 ], [ 358062.744400002062321, 257304.088199999183416 ], [ 358072.633299998939037, 257308.002500001341105 ], [ 358073.146600000560284, 257305.372299998998642 ], [ 358073.209499999880791, 257297.984499998390675 ], [ 358073.226899996399879, 257295.938700001686811 ], [ 358059.667300000786781, 257298.580200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302031400", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 11", "ACRE": null, "LONGITUDE": -64.93807096, "LATITUDE": 18.34509803, "OBJECTID_1": 9634, "PARCEL_NO_": "105302031400", "Tax_Legal_": "GYLLINGS STREET 11\nCROWN PRINCE QTR", "Name": "ANDREWS, MICHELLE LIZETTE", "Address": "8518 Sagekirk Ct", "City": "Charlotte", "State": "North Carolina", "Zip": 28278, "Country": "United States", "Land_Value": 29500, "Improved_V": 75000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.455773406800006, "SHAPE_Area": 332.63068524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358051.109200000762939, 257278.123500000685453 ], [ 358032.597099997103214, 257280.409200001507998 ], [ 358033.739799998700619, 257293.017400000244379 ], [ 358034.486699998378754, 257299.989599999040365 ], [ 358049.337300002574921, 257294.718699999153614 ], [ 358049.696099996566772, 257294.591400001198053 ], [ 358053.089500002563, 257293.386900000274181 ], [ 358051.109200000762939, 257278.123500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302031300", "MAP": null, "PARCEL_NAM": "GYLLINGS STREET 11A", "ACRE": null, "LONGITUDE": -64.93804448, "LATITUDE": 18.34522896, "OBJECTID_1": 9633, "PARCEL_NO_": "105302031300", "Tax_Legal_": "GYLLINGS STREET 11A CROWN PRINCE", "Name": "FRANCIS, ELSA LEONA", "Address": "3566 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10500, "Improved_V": 48200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.136330678899995, "SHAPE_Area": 232.818104992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358051.50110000371933, 257307.660700000822544 ], [ 358051.924900002777576, 257307.593100000172853 ], [ 358054.777900002896786, 257310.355599999427795 ], [ 358053.089500002563, 257293.386900000274181 ], [ 358049.696099996566772, 257294.591400001198053 ], [ 358049.337300002574921, 257294.718699999153614 ], [ 358034.486699998378754, 257299.989599999040365 ], [ 358036.012999996542931, 257310.13459999859333 ], [ 358051.50110000371933, 257307.660700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105302040900", "MAP": "G3-167-T78", "PARCEL_NAM": "21A", "ACRE": "525 sq ft", "LONGITUDE": -64.94156336, "LATITUDE": 18.34463203, "OBJECTID_1": 9662, "PARCEL_NO_": "105302040900", "Tax_Legal_": "SOLBERG 21A&21B LT. NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.172960473900002, "SHAPE_Area": 14.328406749699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357678.717299997806549, 257230.3733000010252 ], [ 357671.643899999558926, 257232.503100000321865 ], [ 357672.031900003552437, 257237.94990000128746 ], [ 357674.854400001466274, 257233.151099998503923 ], [ 357678.717299997806549, 257230.3733000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105302040900", "MAP": "G3-167-T78", "PARCEL_NAM": "21B", "ACRE": "150 sq ft", "LONGITUDE": -64.94106056, "LATITUDE": 18.34465317, "OBJECTID_1": 9662, "PARCEL_NO_": "105302040900", "Tax_Legal_": "SOLBERG 21A&21B LT. NORTHSIDE", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 3700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.119362308300001, "SHAPE_Area": 4.8663694625199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357721.148599997162819, 257234.38910000026226 ], [ 357726.68639999628067, 257236.683299999684095 ], [ 357729.266099996864796, 257237.357999999076128 ], [ 357732.626599997282028, 257237.990699999034405 ], [ 357725.16499999910593, 257235.41330000013113 ], [ 357721.148599997162819, 257234.38910000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302072000", "MAP": "D9-6894-T001", "PARCEL_NAM": "31A", "ACRE": "579 sq ft", "LONGITUDE": -64.93436848, "LATITUDE": 18.34721814, "OBJECTID_1": 9753, "PARCEL_NO_": "105302072000", "Tax_Legal_": "AGNES FANCY ESTATE 31A QUEENS QUARTER", "Name": "GRIFFITH, JANET N. & OTHERS", "Address": "PO Box 7391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.352592351799998, "SHAPE_Area": 59.125925728399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358439.965300001204014, 257520.950100000947714 ], [ 358424.694300003349781, 257525.533100001513958 ], [ 358430.861199997365475, 257531.425900001078844 ], [ 358439.965300001204014, 257520.950100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302153400", "MAP": null, "PARCEL_NAM": "1A", "ACRE": "542 sq ft", "LONGITUDE": -64.93934617, "LATITUDE": 18.34239962, "OBJECTID_1": 9990, "PARCEL_NO_": "105302153400", "Tax_Legal_": "HODGES STREET 1A CROWN PRINCE QTR.", "Name": "ESLYN CHESTERFIELD TRUST (TRUSTEE)", "Address": "PO BOX 428", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 2800, "Improved_V": 37800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.526977252000002, "SHAPE_Area": 67.576086862099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357918.150799997150898, 256987.873500000685453 ], [ 357907.290700003504753, 256985.388599999248981 ], [ 357903.320900000631809, 256984.064500000327826 ], [ 357903.274999998509884, 256989.452599998563528 ], [ 357916.154399998486042, 256992.091099999845028 ], [ 357918.150799997150898, 256987.873500000685453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302174700", "MAP": null, "PARCEL_NAM": "10 GYLLINGS ST", "ACRE": "3,860 sq ft", "LONGITUDE": -64.93797853, "LATITUDE": 18.34495376, "OBJECTID_1": 10091, "PARCEL_NO_": "105302174700", "Tax_Legal_": "GYLLING STREET 10 CROWN PRINCE QTR", "Name": "HODGE, YVONNE", "Address": "129-19 132nd St", "City": "South Ozone Park", "State": "New York", "Zip": 11420, "Country": "United States", "Land_Value": 20300, "Improved_V": 139700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.680074769499996, "SHAPE_Area": 429.00754081600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358061.393500000238419, 257265.168299999088049 ], [ 358049.306000001728535, 257264.225000001490116 ], [ 358044.484399996697903, 257264.973400000482798 ], [ 358044.331500001251698, 257264.997099999338388 ], [ 358042.846500001847744, 257265.227600000798702 ], [ 358035.514200001955032, 257274.033500000834465 ], [ 358032.265600003302097, 257276.751200001686811 ], [ 358032.597099997103214, 257280.409200001507998 ], [ 358051.109200000762939, 257278.123500000685453 ], [ 358073.402099996805191, 257275.370999999344349 ], [ 358073.436099998652935, 257271.388599999248981 ], [ 358061.393500000238419, 257265.168299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302193200", "MAP": "G9-2769-T78", "PARCEL_NAM": "1AA BJERGE GADE", "ACRE": "339 sq ft", "LONGITUDE": -64.9368668, "LATITUDE": 18.34342953, "OBJECTID_1": 10174, "PARCEL_NO_": "105302193200", "Tax_Legal_": "BJERGE GADE 1AA KINGS", "Name": "ABBOTT, SHIRWIN L. & DORETTA M. BENJAMIN", "Address": "PO Box 10772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.253534198899999, "SHAPE_Area": 49.987011011299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358178.887100003659725, 257103.587900001555681 ], [ 358178.69370000064373, 257101.72410000115633 ], [ 358164.149099998176098, 257103.796500001102686 ], [ 358164.351899996399879, 257106.002099998295307 ], [ 358162.737499997019768, 257106.19990000128746 ], [ 358162.846699997782707, 257107.388099998235703 ], [ 358178.992499999701977, 257104.901099998503923 ], [ 358178.887100003659725, 257103.587900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302201100", "MAP": null, "PARCEL_NAM": "PRINDCESSE GADE 12A", "ACRE": "122 sq ft", "LONGITUDE": -64.93786283, "LATITUDE": 18.3416153, "OBJECTID_1": 10184, "PARCEL_NO_": "105302201100", "Tax_Legal_": "PRINDCESSE GADE 12A CROWN PRINCE QTR", "Name": "NEWTON, KEITH & DAVIS, MAE N", "Address": "9229 Kensington Forest Dr", "City": "Harrisburg", "State": "North Carolina", "Zip": 28075, "Country": "United States", "Land_Value": 600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.694284026399998, "SHAPE_Area": 24.1379310622 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358068.456799998879433, 256909.322399999946356 ], [ 358068.566500000655651, 256896.446600001305342 ], [ 358066.682899996638298, 256896.280999999493361 ], [ 358066.623099997639656, 256909.373599998652935 ], [ 358068.456799998879433, 256909.322399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302201200", "MAP": null, "PARCEL_NAM": "PRINDSESSE GADE 11AA-1", "ACRE": "3,536 sq ft", "LONGITUDE": -64.9377854, "LATITUDE": 18.34162096, "OBJECTID_1": 10185, "PARCEL_NO_": "105302201200", "Tax_Legal_": "11AA-1 PRINDSESSE GADE CROWN PRINCE QTR.", "Name": "PEDEREAUX, JOHN W", "Address": "PO BOX 10096", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19600, "Improved_V": 49900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.882066766900003, "SHAPE_Area": 187.07952741099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358083.162500001490116, 256897.72690000012517 ], [ 358068.566500000655651, 256896.446600001305342 ], [ 358068.456799998879433, 256909.322399999946356 ], [ 358082.827600002288818, 256910.644799999892712 ], [ 358083.162500001490116, 256897.72690000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302221200", "MAP": null, "PARCEL_NAM": "PRINDSESSE GADE 27AA", "ACRE": "116 sq ft", "LONGITUDE": -64.93740114000001, "LATITUDE": 18.34148908, "OBJECTID_1": 10228, "PARCEL_NO_": "105302221200", "Tax_Legal_": "PRINDCESSE GADE 27AA CROWN PRINCE QUARTER", "Name": "MORALES, MICHEAL", "Address": "PO BOX 1661", "City": "Oakdale", "State": "Connecticut", "Zip": 6379, "Country": "United States", "Land_Value": 1700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.483734038200001, "SHAPE_Area": 50.004722812399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358113.142200000584126, 256894.410500001162291 ], [ 358117.560599997639656, 256894.558499999344349 ], [ 358120.218999996781349, 256884.904699999839067 ], [ 358115.027300000190735, 256883.829300001263618 ], [ 358113.142200000584126, 256894.410500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302221900", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 8D", "ACRE": "1,308 sq ft", "LONGITUDE": -64.93845328, "LATITUDE": 18.34129528, "OBJECTID_1": 10233, "PARCEL_NO_": "105302221900", "Tax_Legal_": "NYE NORDSIDEVEJ 8D&9B CROWN PRINCE QTR", "Name": "FRANCIS, VELMA & OTHERS", "Address": "PO Box 8551", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13300, "Improved_V": 95000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.633067475200001, "SHAPE_Area": 162.04375509900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358013.283600002527237, 256870.713500000536442 ], [ 358012.6587999984622, 256860.079900000244379 ], [ 358012.106700003147125, 256860.171000000089407 ], [ 358010.142499998211861, 256860.495200000703335 ], [ 358008.002300001680851, 256860.945599999278784 ], [ 357997.890299998223782, 256863.073600001633167 ], [ 357997.826800003647804, 256870.536400001496077 ], [ 357998.298900000751019, 256873.673900000751019 ], [ 358008.968800000846386, 256871.565999999642372 ], [ 358011.759400002658367, 256871.014600001275539 ], [ 358013.283600002527237, 256870.713500000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302221600", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 8B", "ACRE": "462 sq ft", "LONGITUDE": -64.93836427, "LATITUDE": 18.34127605, "OBJECTID_1": 10230, "PARCEL_NO_": "105302221600", "Tax_Legal_": "NYE NORDSIDEVEJ 8B CROWN PRINCE QUARTER", "Name": "LINDO, ISAAC", "Address": "1917 Double Cedar Dr", "City": "Charlotte", "State": "North Carolina", "Zip": 28214, "Country": "United States", "Land_Value": 2200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.1449937302, "SHAPE_Area": 41.102287886 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358012.6587999984622, 256860.079900000244379 ], [ 358013.283600002527237, 256870.713500000536442 ], [ 358016.681000001728535, 256870.042199999094009 ], [ 358016.955600000917912, 256859.370700001716614 ], [ 358012.6587999984622, 256860.079900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302222900", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 9C", "ACRE": "1,604 sq ft", "LONGITUDE": -64.93847817, "LATITUDE": 18.34109927, "OBJECTID_1": 10243, "PARCEL_NO_": "105302222900", "Tax_Legal_": "NYE NORDSIDEVEJ 9C CROWN PRINCE QUARTER", "Name": "ERNEST, TIMOTHY L", "Address": "9C Nye Norsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026212, "Country": "United States", "Land_Value": 7700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.221252157800002, "SHAPE_Area": 157.029321815 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358007.701800003647804, 256845.116500001400709 ], [ 358010.167300000786781, 256836.296599999070168 ], [ 357997.288400001823902, 256839.078999999910593 ], [ 357998.078599996864796, 256840.985300000756979 ], [ 357998.017899997532368, 256848.098700001835823 ], [ 357997.994000002741814, 256850.906100001186132 ], [ 357997.964400000870228, 256854.383900001645088 ], [ 358005.244099996984005, 256853.9087999984622 ], [ 358007.701800003647804, 256845.116500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302221800", "MAP": null, "PARCEL_NAM": "NYE NORDSIDEVEJ 9A", "ACRE": "4,574 sq ft", "LONGITUDE": -64.93837329, "LATITUDE": 18.34114711, "OBJECTID_1": 10232, "PARCEL_NO_": "105302221800", "Tax_Legal_": "NYE NORDSIDEVEJ 9A CROWN PRINCE QUARTER", "Name": "ERNEST, TIMOTHY", "Address": "9A Nye Norsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026212, "Country": "United States", "Land_Value": 24700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.31179026, "SHAPE_Area": 484.13471149399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358010.142499998211861, 256860.495200000703335 ], [ 358016.955600000917912, 256859.370700001716614 ], [ 358029.315700002014637, 256859.494199998676777 ], [ 358019.087200000882149, 256834.369500000029802 ], [ 358011.312200002372265, 256836.049300000071526 ], [ 358010.167300000786781, 256836.296599999070168 ], [ 358007.701800003647804, 256845.116500001400709 ], [ 358005.244099996984005, 256853.9087999984622 ], [ 357997.964400000870228, 256854.383900001645088 ], [ 357997.905900001525879, 256861.2489 ], [ 357997.890299998223782, 256863.073600001633167 ], [ 358010.142499998211861, 256860.495200000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302223400", "MAP": "D9-6865-T000", "PARCEL_NAM": "30A", "ACRE": "2,088 sq ft", "LONGITUDE": -64.93766145, "LATITUDE": 18.34072236, "OBJECTID_1": 10247, "PARCEL_NO_": "105302223400", "Tax_Legal_": "30A KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "SAUNDERS, BASIL & EVA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11000, "Improved_V": 17700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.531428511000001, "SHAPE_Area": 171.78547762 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358097.927500002086163, 256799.961399998515844 ], [ 358086.360399998724461, 256795.478399999439716 ], [ 358081.33669999986887, 256808.931000001728535 ], [ 358093.403800003230572, 256812.379000000655651 ], [ 358097.927500002086163, 256799.961399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105302223400", "MAP": "D9-6865-T000", "PARCEL_NAM": "30 REM ROW", "ACRE": "360 sq ft", "LONGITUDE": -64.93759008000001, "LATITUDE": 18.3407459, "OBJECTID_1": 10247, "PARCEL_NO_": "105302223400", "Tax_Legal_": "30A KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "SAUNDERS, BASIL & EVA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11000, "Improved_V": 17700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.807084688899998, "SHAPE_Area": 43.597784942499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358097.927500002086163, 256799.961399998515844 ], [ 358093.403800003230572, 256812.379000000655651 ], [ 358096.840499997138977, 256813.361000001430511 ], [ 358100.827299997210503, 256801.085200000554323 ], [ 358097.927500002086163, 256799.961399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302226200", "MAP": "G9-734-T64", "PARCEL_NAM": "PRINDSESSE GADE 26BA", "ACRE": "1,205 sq f", "LONGITUDE": -64.93767655000001, "LATITUDE": 18.34116996, "OBJECTID_1": 10272, "PARCEL_NO_": "105302226200", "Tax_Legal_": "PRINCESSE GADE 26BA CROWN PRINCE QTR", "Name": "PAYNE, HUNTER & DELCINE", "Address": "PO Box 6672", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18100, "Improved_V": 144600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.358565333500003, "SHAPE_Area": 157.28091881500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358095.992200002074242, 256851.839400000870228 ], [ 358081.827399998903275, 256846.161200001835823 ], [ 358079.417199999094009, 256853.6689000017941 ], [ 358079.401199996471405, 256857.021600000560284 ], [ 358087.435400001704693, 256858.604200001806021 ], [ 358090.655199997127056, 256859.263799998909235 ], [ 358093.796800002455711, 256859.888700000941753 ], [ 358094.789499998092651, 256860.086100000888109 ], [ 358096.968000002205372, 256852.289799999445677 ], [ 358095.992200002074242, 256851.839400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302222800", "MAP": "G9-734-T64", "PARCEL_NAM": "KRONPRINDSENS GADE 26B", "ACRE": "4,338 sq ft", "LONGITUDE": -64.93764653, "LATITUDE": 18.34107224, "OBJECTID_1": 10242, "PARCEL_NO_": "105302222800", "Tax_Legal_": "KRONPRINDSENS GADE 26B CROWN PRINCE QUARTER", "Name": "DAWSON, LAWRENCE & IDA A. & LANETTE BAKER", "Address": "P.O. BOX 4312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22800, "Improved_V": 163400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.796093699499998, "SHAPE_Area": 192.66183818799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358081.827399998903275, 256846.161200001835823 ], [ 358095.992200002074242, 256851.839400000870228 ], [ 358099.704499997198582, 256838.228500001132488 ], [ 358095.680100001394749, 256837.351199999451637 ], [ 358089.242200002074242, 256835.820900000631809 ], [ 358085.427500002086163, 256834.94709999859333 ], [ 358081.827399998903275, 256846.161200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302222400", "MAP": null, "PARCEL_NAM": "KRONPRINDSENS GADE 27C", "ACRE": "837 sq ft", "LONGITUDE": -64.93752561, "LATITUDE": 18.34120924, "OBJECTID_1": 10238, "PARCEL_NO_": "105302222400", "Tax_Legal_": "KRONPRINDSENS GADE 27C CROWN PRINCE QUARTER", "Name": "JONES, CHARLES R. & OTHERS", "Address": "PO Box 305294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.7351241442, "SHAPE_Area": 116.93369013 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358103.358300000429153, 256854.427799999713898 ], [ 358096.968000002205372, 256852.289799999445677 ], [ 358094.789499998092651, 256860.086100000888109 ], [ 358099.510300002992153, 256861.024999998509884 ], [ 358101.368299998342991, 256861.332499999552965 ], [ 358103.536499999463558, 256861.691300000995398 ], [ 358111.486100003123283, 256863.082699999213219 ], [ 358113.131999999284744, 256857.697799999266863 ], [ 358103.358300000429153, 256854.427799999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302282100", "MAP": "D9-8284-T009", "PARCEL_NAM": "BORGER GADE 12A", "ACRE": "2,040 sq ft", "LONGITUDE": -64.93690539000001, "LATITUDE": 18.34219271, "OBJECTID_1": 10467, "PARCEL_NO_": "105302282100", "Tax_Legal_": "BORGER GADE 12A CROWN PRINCE QTR", "Name": "FRANCIS, JUELLA", "Address": "8131 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13800, "Improved_V": 53000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.863261642400005, "SHAPE_Area": 305.68715897599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358159.183499999344349, 256964.942800000309944 ], [ 358161.696999996900558, 256964.942800000309944 ], [ 358161.696999996900558, 256978.665399998426437 ], [ 358171.089400000870228, 256977.71229999884963 ], [ 358175.113799996674061, 256978.589600000530481 ], [ 358176.924900002777576, 256959.097699999809265 ], [ 358159.443499997258186, 256957.055599998682737 ], [ 358159.183499999344349, 256964.942800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302213100", "MAP": null, "PARCEL_NAM": "GAMLE NORDSIDEVEJ 1BA", "ACRE": "2,904 sq ft", "LONGITUDE": -64.93717406, "LATITUDE": 18.34173454, "OBJECTID_1": 10214, "PARCEL_NO_": "105302213100", "Tax_Legal_": "GAMLE NORDSIDEVEJ 1BA CROWN PRINCE QUARTER", "Name": "FRANCOIS, PEDRITO-TRUSTEE", "Address": "PO Box 66", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 14800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.260272582499994, "SHAPE_Area": 305.01301045299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358134.620300002396107, 256904.562600001692772 ], [ 358132.721699997782707, 256927.195300001651049 ], [ 358145.80799999833107, 256928.870200000703335 ], [ 358146.438699997961521, 256925.345300000160933 ], [ 358147.429200001060963, 256905.434300001710653 ], [ 358134.620300002396107, 256904.562600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102804027000", "MAP": "D9-5856-T95", "PARCEL_NAM": "4B", "ACRE": null, "LONGITUDE": -64.93542321, "LATITUDE": 18.34804226, "OBJECTID_1": 4574, "PARCEL_NO_": "102804027000", "Tax_Legal_": "AGNES FANCY 4B GR NORTHSIDE", "Name": "SIBILLY, ANN BERRY", "Address": "325 Manhattan Ave", "City": "Spotswood", "State": "New Jersey", "Zip": 8884, "Country": "United States", "Land_Value": 116400, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.286324272, "SHAPE_Area": 2931.7749153300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358357.280299998819828, 257623.504900000989437 ], [ 358320.121200002729893, 257564.443799998611212 ], [ 358311.867600001394749, 257585.125199999660254 ], [ 358281.386699996888638, 257660.86939999833703 ], [ 358291.103799998760223, 257656.093800000846386 ], [ 358315.397399999201298, 257644.049199998378754 ], [ 358324.30460000038147, 257639.6891999989748 ], [ 358349.406400002539158, 257627.440099999308586 ], [ 358357.280299998819828, 257623.504900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303060400", "MAP": "D9-6775-T000", "PARCEL_NAM": "27 REM", "ACRE": "3,472 sq ft", "LONGITUDE": -64.94816062, "LATITUDE": 18.3384853, "OBJECTID_1": 10921, "PARCEL_NO_": "105303060400", "Tax_Legal_": "CONTANT 27 REMAINDER 7B SOUTHSIDE QTR", "Name": "SMITH BAY PLAZA LLC", "Address": "PO Box 7395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26000, "Improved_V": 46800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.241385235099997, "SHAPE_Area": 320.88988696299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356989.123099997639656, 256554.017900001257658 ], [ 356991.732799999415874, 256538.017700001597404 ], [ 356988.66669999808073, 256538.037200000137091 ], [ 356974.153099998831749, 256537.918400000780821 ], [ 356973.360100001096725, 256557.564899999648333 ], [ 356988.542900003492832, 256557.575100000947714 ], [ 356989.123099997639656, 256554.017900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071200", "MAP": "D9-2247-T82", "PARCEL_NAM": "3 CONTANT", "ACRE": "5,190 sq ft", "LONGITUDE": -64.94779828, "LATITUDE": 18.33815127, "OBJECTID_1": 10935, "PARCEL_NO_": "105303071200", "Tax_Legal_": "CONTANT 3 7B SOUTHSIDE QTR", "Name": "GOTTLIEB, GERDA (Life Estate)", "Address": "3001 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66800, "Improved_V": 410300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.583590435, "SHAPE_Area": 608.41155971299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357027.445200003683567, 256529.488600000739098 ], [ 357029.439099997282028, 256484.753100000321865 ], [ 357020.42119999974966, 256493.261799998581409 ], [ 357011.966700002551079, 256501.238899998366833 ], [ 357010.802000001072884, 256529.35249999910593 ], [ 357019.382100000977516, 256529.422600001096725 ], [ 357027.445200003683567, 256529.488600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071300", "MAP": "D9-2247-T82", "PARCEL_NAM": "2", "ACRE": "7,233 sq ft", "LONGITUDE": -64.94764936, "LATITUDE": 18.33809266, "OBJECTID_1": 10936, "PARCEL_NO_": "105303071300", "Tax_Legal_": "CONTANT 2 7B SOUTHSIDE QTR", "Name": "GOTTLIEB, GERDA (Life Estate)", "Address": "3001 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94900, "Improved_V": 544000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.68258559099999, "SHAPE_Area": 742.87168214999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357045.642599999904633, 256475.808699999004602 ], [ 357029.439099997282028, 256484.753100000321865 ], [ 357027.445200003683567, 256529.488600000739098 ], [ 357041.911499999463558, 256529.607099998742342 ], [ 357045.642599999904633, 256475.808699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105303240200", "MAP": "F9-4049-T73", "PARCEL_NAM": "199", "ACRE": null, "LONGITUDE": -64.94448518, "LATITUDE": 18.33877348, "OBJECTID_1": 11134, "PARCEL_NO_": "105303240200", "Tax_Legal_": "ALTONA & WELGUNST 199 KRONPRINDSENS GADE", "Name": "BERRY, JOSEPH & RIVERA, MARIE R", "Address": "PO Box 10222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.022371855, "SHAPE_Area": 307.28731843899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357358.197700001299381, 256607.556099999696016 ], [ 357385.183600001037121, 256563.447299998253584 ], [ 357388.41610000282526, 256562.629399999976158 ], [ 357380.392499998211861, 256557.919700000435114 ], [ 357380.370899997651577, 256560.452599998563528 ], [ 357354.202100001275539, 256603.301500000059605 ], [ 357353.466600000858307, 256603.742499999701977 ], [ 357358.197700001299381, 256607.556099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250300", "MAP": "D9-9234-T018", "PARCEL_NAM": "11", "ACRE": "0.07", "LONGITUDE": -64.9420808, "LATITUDE": 18.33727615, "OBJECTID_1": 11142, "PARCEL_NO_": "105303250300", "Tax_Legal_": "HONDURAS 11 CROWN PRINCE QTR", "Name": "TRUST AGREEMENT OF CHARLES A BERRY", "Address": "PO Box 11583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 56700, "Improved_V": 95800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.151650757100001, "SHAPE_Area": 346.273226894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357635.456200003623962, 256412.888199999928474 ], [ 357633.539399996399879, 256409.377300001680851 ], [ 357618.153399996459484, 256413.137699998915195 ], [ 357612.394000001251698, 256414.545299999415874 ], [ 357613.752300001680851, 256425.785199999809265 ], [ 357626.811599999666214, 256427.024599999189377 ], [ 357640.187600001692772, 256422.688900001347065 ], [ 357635.456200003623962, 256412.888199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303240300", "MAP": null, "PARCEL_NAM": "71", "ACRE": null, "LONGITUDE": -64.94263547, "LATITUDE": 18.33740337, "OBJECTID_1": 11135, "PARCEL_NO_": "105303240300", "Tax_Legal_": "ALTONA & WELGUNST 71 KRONPRINDSENS QTR", "Name": "RIVERA, MARIE ROSE", "Address": "PO Box 10222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11700, "Improved_V": 32700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.498494398099993, "SHAPE_Area": 174.25641403500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357557.409000001847744, 256435.162099998444319 ], [ 357564.047399997711182, 256433.404899999499321 ], [ 357567.683899998664856, 256438.966600000858307 ], [ 357571.748199999332428, 256439.8935999982059 ], [ 357574.081600002944469, 256444.417300000786781 ], [ 357574.102799996733665, 256441.925999999046326 ], [ 357574.145900003612041, 256436.860100001096725 ], [ 357575.493500001728535, 256427.807900000363588 ], [ 357555.805699996650219, 256427.004099998623133 ], [ 357557.409000001847744, 256435.162099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250700", "MAP": "D3-390-T82", "PARCEL_NAM": "17-1", "ACRE": "1,193 sq ft", "LONGITUDE": -64.94223634, "LATITUDE": 18.33712159, "OBJECTID_1": 11149, "PARCEL_NO_": "105303250700", "Tax_Legal_": "HONDURAS 17-1 CROWN PRINCE QTR.", "Name": "GREAUX, ANN PAULINE", "Address": "3560 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12100, "Improved_V": 31300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.272551473999997, "SHAPE_Area": 206.12666052599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357611.918499998748302, 256408.440600000321865 ], [ 357615.141999997198582, 256408.539900001138449 ], [ 357616.293099999427795, 256406.024500001221895 ], [ 357619.703299999237061, 256398.571800000965595 ], [ 357602.869699999690056, 256392.618500001728535 ], [ 357602.704899996519089, 256397.40819999948144 ], [ 357601.866200000047684, 256401.201099999248981 ], [ 357601.817699998617172, 256406.900199998170137 ], [ 357602.041799999773502, 256408.855700001120567 ], [ 357611.918499998748302, 256408.440600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250600", "MAP": "D-390-T82", "PARCEL_NAM": "17 REM", "ACRE": "3,850 sq ft", "LONGITUDE": -64.94211257000001, "LATITUDE": 18.33717567, "OBJECTID_1": 11148, "PARCEL_NO_": "105303250600", "Tax_Legal_": "HONDURAS 17 KRONPRINDSENS GADE", "Name": "FRENCHTOWN VILLAS INC", "Address": "PO Box 12232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.901057542799997, "SHAPE_Area": 129.056086048 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357619.703299999237061, 256398.571800000965595 ], [ 357619.468099996447563, 256408.399399999529123 ], [ 357615.141999997198582, 256408.539900001138449 ], [ 357612.394000001251698, 256414.545299999415874 ], [ 357618.153399996459484, 256413.137699998915195 ], [ 357632.784299999475479, 256409.561799999326468 ], [ 357630.227700002491474, 256407.011799998581409 ], [ 357627.264399997889996, 256404.20719999819994 ], [ 357620.226400002837181, 256398.756799999624491 ], [ 357619.703299999237061, 256398.571800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250500", "MAP": "D3-390-T82", "PARCEL_NAM": "18E", "ACRE": "1,920 sq ft", "LONGITUDE": -64.94272252, "LATITUDE": 18.33726998, "OBJECTID_1": 11145, "PARCEL_NO_": "105303250500", "Tax_Legal_": "HONDURAS 4P 17 18 19 KRONP QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Building Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 542300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.469728958600001, "SHAPE_Area": 152.437332048 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357562.302100002765656, 256411.558499999344349 ], [ 357551.014600001275539, 256407.11769999936223 ], [ 357554.142800003290176, 256418.542300000786781 ], [ 357555.805699996650219, 256427.004099998623133 ], [ 357563.318300001323223, 256427.3108000010252 ], [ 357562.180600002408028, 256417.008000001311302 ], [ 357561.950900003314018, 256414.341600000858307 ], [ 357562.486000001430511, 256413.154800001531839 ], [ 357561.86259999871254, 256412.738699998706579 ], [ 357562.302100002765656, 256411.558499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303251500", "MAP": "D3-390-T82", "PARCEL_NAM": "18-5", "ACRE": "3,040 sq ft", "LONGITUDE": -64.94298257, "LATITUDE": 18.33706558, "OBJECTID_1": 11156, "PARCEL_NO_": "105303251500", "Tax_Legal_": "HONDURAS 18-5 SOUTHSIDE QTR.", "Name": "TURBE, ANTHONY & LOLA", "Address": "52 HONDURAS", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 14800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.0293414936, "SHAPE_Area": 252.92715493200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357522.163599997758865, 256386.194400001317263 ], [ 357522.089900001883507, 256394.848600000143051 ], [ 357523.630599997937679, 256403.304999999701977 ], [ 357534.922499999403954, 256402.97520000115037 ], [ 357539.00620000064373, 256396.886900000274181 ], [ 357541.232699997723103, 256392.183100000023842 ], [ 357542.290799997746944, 256389.947700001299381 ], [ 357522.163599997758865, 256386.194400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105303250500", "MAP": "D3-390-T81", "PARCEL_NAM": "18 PLAYGROUND", "ACRE": "4,560 sq ft", "LONGITUDE": -64.94322136, "LATITUDE": 18.33701714, "OBJECTID_1": 11145, "PARCEL_NO_": "105303250500", "Tax_Legal_": "HONDURAS 4P 17 18 19 KRONP QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Building Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 542300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.846029291199997, "SHAPE_Area": 509.32783490399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357486.811499997973442, 256388.033500000834465 ], [ 357489.05179999768734, 256396.219399999827147 ], [ 357517.204800002276897, 256400.345100000500679 ], [ 357518.156000003218651, 256384.313099998980761 ], [ 357518.473499998450279, 256378.333500001579523 ], [ 357518.050200000405312, 256376.534299999475479 ], [ 357516.885999999940395, 256375.634700000286102 ], [ 357509.689300000667572, 256378.280600000172853 ], [ 357486.811499997973442, 256388.033500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105303250500", "MAP": null, "PARCEL_NAM": "18 GARBAGE AREA", "ACRE": null, "LONGITUDE": -64.94344349000001, "LATITUDE": 18.33705337, "OBJECTID_1": 11145, "PARCEL_NO_": "105303250500", "Tax_Legal_": "HONDURAS 4P 17 18 19 KRONP QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Building Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 542300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.3683197959, "SHAPE_Area": 78.733898867799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357486.811499997973442, 256388.033500000834465 ], [ 357486.353000000119209, 256388.228900000452995 ], [ 357469.684299997985363, 256394.949400000274181 ], [ 357484.289300002157688, 256396.007699999958277 ], [ 357489.05179999768734, 256396.219399999827147 ], [ 357486.811499997973442, 256388.033500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303252200", "MAP": "D3-390-T82", "PARCEL_NAM": "18-1", "ACRE": "3,128 sq ft", "LONGITUDE": -64.94339171, "LATITUDE": 18.33725034, "OBJECTID_1": 11162, "PARCEL_NO_": "105303252200", "Tax_Legal_": "HONDURAS 18-1 SOUTHSIDE QTR.", "Name": "CADET, LUZ C.", "Address": "PO Box 305441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.176443226399996, "SHAPE_Area": 312.91644316200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357475.120200000703335, 256416.6114999987185 ], [ 357476.828000001609325, 256419.344000000506639 ], [ 357478.101000003516674, 256421.628699999302626 ], [ 357490.115599997341633, 256427.354299999773502 ], [ 357490.404500000178814, 256422.664700001478195 ], [ 357490.880500003695488, 256421.778999999165535 ], [ 357493.847900003194809, 256420.958200000226498 ], [ 357493.642599999904633, 256420.572000000625849 ], [ 357493.783299997448921, 256419.305300001055002 ], [ 357493.867200002074242, 256418.550299998372793 ], [ 357496.460100002586842, 256413.629000000655651 ], [ 357498.759999997913837, 256411.432100001722574 ], [ 357499.375299997627735, 256410.844399999827147 ], [ 357499.399099998176098, 256408.047800000756979 ], [ 357499.406999997794628, 256407.119199998676777 ], [ 357479.579700000584126, 256406.220600001513958 ], [ 357478.997599996626377, 256410.93019999936223 ], [ 357478.36259999871254, 256415.216499999165535 ], [ 357475.120200000703335, 256416.6114999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303252400", "MAP": "D3-390-T82", "PARCEL_NAM": "18C", "ACRE": "1,021 sq ft", "LONGITUDE": -64.94326697, "LATITUDE": 18.33730967, "OBJECTID_1": 11164, "PARCEL_NO_": "105303252400", "Tax_Legal_": "HONDURAS 18C KRONP.PRINCE QTR.", "Name": "LA PLACE, LIVET & LILAS", "Address": "3646 Turkey Creek Rd", "City": "Plant City", "State": "Florida", "Zip": 33567, "Country": "United States", "Land_Value": 6500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.712348046000002, "SHAPE_Area": 64.313228941899993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357490.880500003695488, 256421.778999999165535 ], [ 357490.404500000178814, 256422.664700001478195 ], [ 357490.364200003445148, 256423.318599998950958 ], [ 357506.656800001859665, 256424.208999998867512 ], [ 357506.742899999022484, 256419.676899999380112 ], [ 357506.734499998390675, 256417.81870000064373 ], [ 357504.956600002944469, 256418.258400000631809 ], [ 357502.492700003087521, 256418.867800001055002 ], [ 357495.666400000452995, 256420.455299999564886 ], [ 357494.456900000572205, 256420.789799999445677 ], [ 357490.880500003695488, 256421.778999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303251700", "MAP": "D3-390-2T", "PARCEL_NAM": "18D", "ACRE": "780 sq ft", "LONGITUDE": -64.94314858, "LATITUDE": 18.33728214, "OBJECTID_1": 11158, "PARCEL_NO_": "105303251700", "Tax_Legal_": "18D ESTATE HONDURAS KRONP. QTR", "Name": "MAGRAS, HARRY", "Address": "18D Estate Honduras", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.659655932500002, "SHAPE_Area": 38.418672186099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357518.979599997401237, 256419.644400000572205 ], [ 357518.668600000441074, 256417.829799998551607 ], [ 357518.449799999594688, 256416.247099999338388 ], [ 357513.922700002789497, 256417.015700001269579 ], [ 357507.413900002837181, 256417.650699999183416 ], [ 357506.734499998390675, 256417.81870000064373 ], [ 357506.742899999022484, 256419.676899999380112 ], [ 357506.719899997115135, 256420.885499998927116 ], [ 357518.979599997401237, 256419.644400000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303271100", "MAP": "170 sq ft", "PARCEL_NAM": "19-30", "ACRE": "1,770 sq ft", "LONGITUDE": -64.94224763, "LATITUDE": 18.33664985, "OBJECTID_1": 11213, "PARCEL_NO_": "105303271100", "Tax_Legal_": "HONDURAS 19-22 & 19-30 CROWN PRINCE QTR.", "Name": "DEAN GREAUX and TIMOTHY GREAUX", "Address": "PO Box 306931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10900, "Improved_V": 64600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.635026709200002, "SHAPE_Area": 20.560049754800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357616.729699999094009, 256351.534099999815226 ], [ 357604.984700001776218, 256346.864999998360872 ], [ 357604.095799997448921, 256350.012699998915195 ], [ 357616.729699999094009, 256351.534099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250600", "MAP": "D9-4506-T86", "PARCEL_NAM": "17-2", "ACRE": "116 sq ft", "LONGITUDE": -64.94215345000001, "LATITUDE": 18.33715237, "OBJECTID_1": 11148, "PARCEL_NO_": "105303250600", "Tax_Legal_": "HONDURAS 17 KRONPRINDSENS GADE", "Name": "FRENCHTOWN VILLAS INC", "Address": "PO Box 12232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.120933262200001, "SHAPE_Area": 21.240674419000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357619.703299999237061, 256398.571800000965595 ], [ 357616.293099999427795, 256406.024500001221895 ], [ 357615.141999997198582, 256408.539900001138449 ], [ 357619.468099996447563, 256408.399399999529123 ], [ 357619.703299999237061, 256398.571800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303252500", "MAP": "D9-4506-T86", "PARCEL_NAM": "17-1-A", "ACRE": "118 sq ft", "LONGITUDE": -64.94220004, "LATITUDE": 18.3372012, "OBJECTID_1": 11165, "PARCEL_NO_": "105303252500", "Tax_Legal_": "HONDURAS 17-1-A CROWN PRINCE QTR.", "Name": "FRENCHTOWN VILLAS INC", "Address": "PO Box 12232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 15.953881750300001, "SHAPE_Area": 9.9762806557600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357615.141999997198582, 256408.539900001138449 ], [ 357611.918499998748302, 256408.440600000321865 ], [ 357612.245800003409386, 256413.318300001323223 ], [ 357612.394000001251698, 256414.545299999415874 ], [ 357615.141999997198582, 256408.539900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303322000", "MAP": "D9-4513-T88", "PARCEL_NAM": "19B-1", "ACRE": "938 sq ft", "LONGITUDE": -64.94294309, "LATITUDE": 18.33640615, "OBJECTID_1": 11296, "PARCEL_NO_": "105303322000", "Tax_Legal_": "HONDURAS 19B-1 CROWN PRINCE QTR", "Name": "MAGRAS, DANA", "Address": "PO BOX 307976", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.384122950200002, "SHAPE_Area": 56.285243642399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357525.909100003540516, 256319.737100001424551 ], [ 357524.511799998581409, 256322.221200000494719 ], [ 357544.588600002229214, 256324.281800001859665 ], [ 357545.083700001239777, 256321.19990000128746 ], [ 357525.909100003540516, 256319.737100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250500", "MAP": "D9-4513-", "PARCEL_NAM": "19B-2", "ACRE": "5,104 sq ft", "LONGITUDE": -64.94296772, "LATITUDE": 18.33647545, "OBJECTID_1": 11145, "PARCEL_NO_": "105303250500", "Tax_Legal_": "HONDURAS 4P 17 18 19 KRONP QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Building Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 542300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.368941479300005, "SHAPE_Area": 286.82223782400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357544.588600002229214, 256324.281800001859665 ], [ 357524.511799998581409, 256322.221200000494719 ], [ 357517.349200002849102, 256331.767799999564886 ], [ 357524.887900002300739, 256333.680500000715256 ], [ 357542.303900003433228, 256338.502500001341105 ], [ 357544.588600002229214, 256324.281800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303250500", "MAP": "D9-4513-T88", "PARCEL_NAM": "19B REM ROW", "ACRE": "1,112 sq ft", "LONGITUDE": -64.94309734, "LATITUDE": 18.33643161, "OBJECTID_1": 11145, "PARCEL_NO_": "105303250500", "Tax_Legal_": "HONDURAS 4P 17 18 19 KRONP QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Building Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 542300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.794260924, "SHAPE_Area": 82.2800289674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357524.511799998581409, 256322.221200000494719 ], [ 357525.909100003540516, 256319.737100001424551 ], [ 357516.91950000077486, 256319.051300000399351 ], [ 357513.693800002336502, 256330.840300001204014 ], [ 357517.349200002849102, 256331.767799999564886 ], [ 357524.511799998581409, 256322.221200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303272600", "MAP": "D9-2059-T82", "PARCEL_NAM": "19A", "ACRE": "3,681 sq ft", "LONGITUDE": -64.9431029, "LATITUDE": 18.33662762, "OBJECTID_1": 11224, "PARCEL_NO_": "105303272600", "Tax_Legal_": "HONDURAS 19A CROWN PRINCE", "Name": "MAGRAS, JEAN LIONEL", "Address": "Honduras 19A", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.774693580800005, "SHAPE_Area": 349.36423372100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357524.887900002300739, 256333.680500000715256 ], [ 357513.693800002336502, 256330.840300001204014 ], [ 357508.198399998247623, 256350.924300000071526 ], [ 357513.825499996542931, 256354.727299999445677 ], [ 357524.887900002300739, 256361.648299999535084 ], [ 357529.256099998950958, 256350.188900001347065 ], [ 357519.952399998903275, 256345.650499999523163 ], [ 357524.887900002300739, 256333.680500000715256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303290100", "MAP": null, "PARCEL_NAM": "2-19", "ACRE": "0.126", "LONGITUDE": -64.94146693, "LATITUDE": 18.33803478, "OBJECTID_1": 11229, "PARCEL_NO_": "105303290100", "Tax_Legal_": "DEMARARA 2-19 & 2-20 CROWN PRINCE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 225400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.60886114100001, "SHAPE_Area": 658.92354472299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357709.60080000013113, 256518.854100000113249 ], [ 357712.632299996912479, 256500.773400001227856 ], [ 357703.396700002253056, 256499.690900001674891 ], [ 357698.357799999415874, 256499.100400000810623 ], [ 357694.331699997186661, 256498.628499999642372 ], [ 357676.886399999260902, 256492.585299998521805 ], [ 357668.494999997317791, 256486.765099998563528 ], [ 357666.319799996912479, 256502.420299999415874 ], [ 357708.120399996638298, 256517.75 ], [ 357709.60080000013113, 256518.854100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303301000", "MAP": "F9-3632-T78", "PARCEL_NAM": "8F", "ACRE": "588 sq ft", "LONGITUDE": -64.94438289, "LATITUDE": 18.33619435, "OBJECTID_1": 11259, "PARCEL_NO_": "105303301000", "Tax_Legal_": "HONDURAS 8E&8F S S QTR", "Name": "TURBE, REYNALDO & GLORIA (TRUSTEES)", "Address": "P.O. BOX 4999", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.425250206199998, "SHAPE_Area": 64.771894811799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357378.773000001907349, 256293.766800001263618 ], [ 357378.212600000202656, 256300.389400001615286 ], [ 357388.124600000679493, 256300.636700000613928 ], [ 357388.243100002408028, 256298.972100000828505 ], [ 357388.282600000500679, 256294.328400000929832 ], [ 357382.420900002121925, 256293.645799998193979 ], [ 357378.773000001907349, 256293.766800001263618 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303301000", "MAP": "F9-3632-T78", "PARCEL_NAM": "8E", "ACRE": "657 sq ft", "LONGITUDE": -64.94442866, "LATITUDE": 18.33632721, "OBJECTID_1": 11259, "PARCEL_NO_": "105303301000", "Tax_Legal_": "HONDURAS 8E&8F S S QTR", "Name": "TURBE, REYNALDO & GLORIA (TRUSTEES)", "Address": "P.O. BOX 4999", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.111768971799997, "SHAPE_Area": 67.164396481599994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357378.212600000202656, 256300.389400001615286 ], [ 357375.59009999781847, 256323.961500000208616 ], [ 357376.2179000005126, 256323.961599998176098 ], [ 357378.218500003218651, 256323.96169999986887 ], [ 357381.282799996435642, 256300.465999998152256 ], [ 357378.212600000202656, 256300.389400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303300100", "MAP": "F9-1886-T66", "PARCEL_NAM": "8B", "ACRE": "0.04", "LONGITUDE": -64.94437756000001, "LATITUDE": 18.33633866, "OBJECTID_1": 11248, "PARCEL_NO_": "105303300100", "Tax_Legal_": "HONDURAS 8B CROWN PRINCE QTR", "Name": "TURBE, REYNALDO & GLORIA (TRUSTEES)", "Address": "P.O. BOX 4999", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12300, "Improved_V": 48200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.367969916600003, "SHAPE_Area": 192.61868254000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357381.282799996435642, 256300.465999998152256 ], [ 357378.218500003218651, 256323.96169999986887 ], [ 357385.571599997580051, 256324.488400001078844 ], [ 357387.978299997746944, 256324.660799998790026 ], [ 357387.726599998772144, 256311.776500001549721 ], [ 357387.641599997878075, 256307.423000000417233 ], [ 357388.124600000679493, 256300.636700000613928 ], [ 357385.115699999034405, 256300.561599999666214 ], [ 357381.282799996435642, 256300.465999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303262200", "MAP": "G9-2577-T76", "PARCEL_NAM": "101 [TRACT A]", "ACRE": "16,081 sq ft", "LONGITUDE": -64.94505339, "LATITUDE": 18.33747279, "OBJECTID_1": 11194, "PARCEL_NO_": "105303262200", "Tax_Legal_": "101 CROWN BAY FILL (TRACT A) No.6 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 51300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.0162824688, "SHAPE_Area": 184.30524791900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357312.212999999523163, 256420.784099999815226 ], [ 357303.77589999884367, 256464.622499998658895 ], [ 357310.337899997830391, 256451.588500000536442 ], [ 357318.395000003278255, 256421.039700001478195 ], [ 357312.212999999523163, 256420.784099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303262500", "MAP": null, "PARCEL_NAM": "101 [TRACT D]", "ACRE": null, "LONGITUDE": -64.94445114, "LATITUDE": 18.33751429, "OBJECTID_1": 11197, "PARCEL_NO_": "105303262500", "Tax_Legal_": "101 CROWN BAY FILL(TRACT D) No.6 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.335775595400001, "SHAPE_Area": 114.37920678099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357359.573299996554852, 256446.080800000578165 ], [ 357385.375299997627735, 256446.291999999433756 ], [ 357379.806599996984005, 256437.380499999970198 ], [ 357359.573299996554852, 256446.080800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303262400", "MAP": null, "PARCEL_NAM": "101 [TRACT C]", "ACRE": null, "LONGITUDE": -64.94482743, "LATITUDE": 18.33742996, "OBJECTID_1": 11196, "PARCEL_NO_": "105303262400", "Tax_Legal_": "101 CROWN BAY FILL(TRACT C) No.6 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.668647442700006, "SHAPE_Area": 285.43340687300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357358.543700002133846, 256436.040500000119209 ], [ 357353.648800000548363, 256434.453600000590086 ], [ 357331.07599999755621, 256426.074400000274181 ], [ 357327.044399999082088, 256426.041499998420477 ], [ 357323.795800000429153, 256428.759100001305342 ], [ 357321.317500002682209, 256435.704900000244379 ], [ 357321.268899999558926, 256441.403999999165535 ], [ 357325.318499997258186, 256439.326200000941753 ], [ 357326.56700000166893, 256439.050999999046326 ], [ 357331.781599998474121, 256437.901500001549721 ], [ 357332.986699998378754, 256437.885099999606609 ], [ 357351.136699996888638, 256437.637699998915195 ], [ 357358.543700002133846, 256436.040500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303322100", "MAP": "D9-6870-T000", "PARCEL_NAM": "30-3A", "ACRE": "1,099 sq ft", "LONGITUDE": -64.94277319, "LATITUDE": 18.33528539, "OBJECTID_1": 11297, "PARCEL_NO_": "105303322100", "Tax_Legal_": "30-3A REMAINDER HONDURAS KRONPRINDSEN QUARTER", "Name": "CERGE, INGER - LIFE ESTATE", "Address": "P O Box 2594", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.967531012899997, "SHAPE_Area": 158.99154477100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357558.426700003445148, 256186.524000000208616 ], [ 357550.998199999332428, 256185.964200001209974 ], [ 357551.511900000274181, 256215.2043999992311 ], [ 357555.301299996674061, 256210.261199999600649 ], [ 357558.001900002360344, 256198.2483000010252 ], [ 357558.426700003445148, 256186.524000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304011800", "MAP": "D9-7059-T002", "PARCEL_NAM": "47E-6", "ACRE": "0.27", "LONGITUDE": -64.93965252, "LATITUDE": 18.33924484, "OBJECTID_1": 11325, "PARCEL_NO_": "105304011800", "Tax_Legal_": "47E-6 KRONPRINDSEN'S GADE KRONPRINDSEN QTR.", "Name": "VIRGIN ISLANDS GOVERNMENT", "Address": "Cyril King Terminal E", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 176000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.402741241, "SHAPE_Area": 991.33124649700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357878.505699999630451, 256614.951400000602007 ], [ 357878.189499996602535, 256615.80350000038743 ], [ 357864.454899996519089, 256652.821600001305342 ], [ 357862.407600000500679, 256658.085999999195337 ], [ 357876.691699996590614, 256667.118500001728535 ], [ 357877.61599999666214, 256665.690200001001358 ], [ 357898.235100001096725, 256626.499400001019239 ], [ 357899.55120000243187, 256620.211300000548363 ], [ 357897.357699997723103, 256618.310199998319149 ], [ 357878.505699999630451, 256614.951400000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304010500", "MAP": "D9-7059-T002", "PARCEL_NAM": "47E REM", "ACRE": "14,185 sq ft", "LONGITUDE": -64.93994706, "LATITUDE": 18.33915174, "OBJECTID_1": 11308, "PARCEL_NO_": "105304010500", "Tax_Legal_": "KRONPRINDSENS GADE 47E REMAINDER CROWN PRINCE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 679000, "Improved_V": 1635800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 470.86855269900002, "SHAPE_Area": 1039.7663028100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357900.799199998378754, 256617.485500000417233 ], [ 357886.309000000357628, 256614.622600000351667 ], [ 357879.071999996900558, 256613.42509999871254 ], [ 357837.994999997317791, 256606.62779999896884 ], [ 357801.768399998545647, 256599.576400000602007 ], [ 357763.106799997389317, 256594.404800001531839 ], [ 357755.756099998950958, 256594.850699998438358 ], [ 357761.411200001835823, 256604.133099999278784 ], [ 357762.123599998652935, 256605.155600000172853 ], [ 357769.8412000015378, 256600.615899998694658 ], [ 357784.02589999884367, 256602.224399998784065 ], [ 357812.103000000119209, 256605.295400001108646 ], [ 357851.439999997615814, 256611.291000001132488 ], [ 357878.189499996602535, 256615.80350000038743 ], [ 357878.505699999630451, 256614.951400000602007 ], [ 357897.357699997723103, 256618.310199998319149 ], [ 357899.55120000243187, 256620.211300000548363 ], [ 357898.235100001096725, 256626.499400001019239 ], [ 357877.61599999666214, 256665.690200001001358 ], [ 357876.691699996590614, 256667.118500001728535 ], [ 357865.556000001728535, 256684.324799999594688 ], [ 357867.904799997806549, 256692.57660000026226 ], [ 357881.396099999547005, 256670.093299999833107 ], [ 357906.349899999797344, 256628.507800001651049 ], [ 357906.412799999117851, 256621.120000001043081 ], [ 357904.814599998295307, 256619.418200001120567 ], [ 357900.799199998378754, 256617.485500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304011900", "MAP": "D9-7059-T002", "PARCEL_NAM": "47E-7", "ACRE": "4,440 sq ft", "LONGITUDE": -64.9398042, "LATITUDE": 18.33952531, "OBJECTID_1": 11326, "PARCEL_NO_": "105304011900", "Tax_Legal_": "KRONPRINDSENS GADE 47E-7 KRONPRINDSENS QUARTER", "Name": "VIRGINS ISLANDS GOVERNMENT", "Address": "CYRIL E.KING AIRPORT TERMINAL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.572403981799994, "SHAPE_Area": 328.38730255299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357876.691699996590614, 256667.118500001728535 ], [ 357862.407600000500679, 256658.085999999195337 ], [ 357851.652300000190735, 256667.045699998736382 ], [ 357865.556000001728535, 256684.324799999594688 ], [ 357876.691699996590614, 256667.118500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304010500", "MAP": "D9-7059-T002", "PARCEL_NAM": "ROW 47E-8", "ACRE": "11,210 sq ft", "LONGITUDE": -64.94030002, "LATITUDE": 18.3392095, "OBJECTID_1": 11308, "PARCEL_NO_": "105304010500", "Tax_Legal_": "KRONPRINDSENS GADE 47E REMAINDER CROWN PRINCE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 679000, "Improved_V": 1635800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.571373757, "SHAPE_Area": 1130.5301287499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357767.313400000333786, 256612.603399999439716 ], [ 357769.377499997615814, 256615.565499998629093 ], [ 357790.996899999678135, 256633.474300000816584 ], [ 357799.029399998486042, 256637.128600001335144 ], [ 357810.29619999974966, 256639.753899998962879 ], [ 357823.171999998390675, 256642.814599998295307 ], [ 357833.609200000762939, 256648.177400000393391 ], [ 357844.012100003659725, 256657.550599999725819 ], [ 357851.652300000190735, 256667.045699998736382 ], [ 357859.429700002074242, 256660.566700000315905 ], [ 357856.412000000476837, 256656.331199999898672 ], [ 357848.369099996984005, 256647.703400000929832 ], [ 357829.212399996817112, 256636.443300001323223 ], [ 357822.193099997937679, 256633.372400000691414 ], [ 357822.631800003349781, 256629.277800001204014 ], [ 357814.442699998617172, 256627.669199999421835 ], [ 357808.739600002765656, 256626.938099998980761 ], [ 357801.427799999713898, 256624.890799999237061 ], [ 357799.088100001215935, 256624.159600000828505 ], [ 357797.771999999880791, 256621.673599999397993 ], [ 357798.649400003254414, 256614.069400001317263 ], [ 357775.105599999427795, 256611.291000001132488 ], [ 357767.313400000333786, 256612.603399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304011600", "MAP": "D9-7059-T002", "PARCEL_NAM": "47E-4", "ACRE": "2,950 sq ft", "LONGITUDE": -64.94031093, "LATITUDE": 18.33909298, "OBJECTID_1": 11323, "PARCEL_NO_": "105304011600", "Tax_Legal_": "KRONPRINDSENS GADE 47E-4 KRONPRINDSENS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.846895335300005, "SHAPE_Area": 274.66252676800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357798.649400003254414, 256614.069400001317263 ], [ 357797.771999999880791, 256621.673599999397993 ], [ 357799.088100001215935, 256624.159600000828505 ], [ 357801.427799999713898, 256624.890799999237061 ], [ 357808.739600002765656, 256626.938099998980761 ], [ 357814.442699998617172, 256627.669199999421835 ], [ 357822.631800003349781, 256629.277800001204014 ], [ 357824.532899998128414, 256618.456500001251698 ], [ 357798.649400003254414, 256614.069400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304011500", "MAP": null, "PARCEL_NAM": "47-3", "ACRE": "4,280 sq ft", "LONGITUDE": -64.94030847000001, "LATITUDE": 18.33899584, "OBJECTID_1": 11322, "PARCEL_NO_": "105304011500", "Tax_Legal_": "47E-3 KRONPRINDSENS GADE CROWN PRINCE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.246828986099999, "SHAPE_Area": 300.600483236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357797.914300002157688, 256603.743500001728535 ], [ 357796.867600001394749, 256613.859200000762939 ], [ 357798.649400003254414, 256614.069400001317263 ], [ 357824.532899998128414, 256618.456500001251698 ], [ 357825.546499997377396, 256607.344399999827147 ], [ 357812.103000000119209, 256605.295400001108646 ], [ 357797.914300002157688, 256603.743500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304011400", "MAP": "D9-7059-T002", "PARCEL_NAM": "47E-2", "ACRE": "2,870 sq ft", "LONGITUDE": -64.94054714000001, "LATITUDE": 18.33896783, "OBJECTID_1": 11321, "PARCEL_NO_": "105304011400", "Tax_Legal_": "KRONPRINDSENS GADE 47E-2 KRONPRINDSENS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.2400369, "SHAPE_Area": 226.68281797 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357797.914300002157688, 256603.743500001728535 ], [ 357784.02589999884367, 256602.224399998784065 ], [ 357774.989699997007847, 256601.199700001627207 ], [ 357775.105599999427795, 256611.291000001132488 ], [ 357796.867600001394749, 256613.859200000762939 ], [ 357797.914300002157688, 256603.743500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304011300", "MAP": "D9-7059-T002", "PARCEL_NAM": "47E-1", "ACRE": "1,705 sq ft", "LONGITUDE": -64.94070307, "LATITUDE": 18.33896049, "OBJECTID_1": 11320, "PARCEL_NO_": "105304011300", "Tax_Legal_": "KRONPRINDSENS GADE 47E-1 KRONPRINDSENS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 25600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.206840373699997, "SHAPE_Area": 111.509092364 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357762.123599998652935, 256605.155600000172853 ], [ 357767.313400000333786, 256612.603399999439716 ], [ 357775.105599999427795, 256611.291000001132488 ], [ 357774.989699997007847, 256601.199700001627207 ], [ 357769.8412000015378, 256600.615899998694658 ], [ 357762.123599998652935, 256605.155600000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304041000", "MAP": null, "PARCEL_NAM": "73 KRONPRINDSENS GADE", "ACRE": "12,760 sq ft", "LONGITUDE": -64.9361051, "LATITUDE": 18.34073328, "OBJECTID_1": 11359, "PARCEL_NO_": "105304041000", "Tax_Legal_": "73 KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "SPENCELEY, RICHARD c.", "Address": "PO Box 308790", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 239400, "Improved_V": 1316900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.405071572, "SHAPE_Area": 669.63830942200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358244.311200000345707, 256831.209800001233816 ], [ 358257.146499998867512, 256832.951900001615286 ], [ 358258.690099999308586, 256822.853300001472235 ], [ 358263.947700001299381, 256782.504799999296665 ], [ 358251.124499998986721, 256780.152899999171495 ], [ 358244.311200000345707, 256831.209800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304041000", "MAP": null, "PARCEL_NAM": "73W KRONPRINDSENS GADE", "ACRE": null, "LONGITUDE": -64.93598597, "LATITUDE": 18.33988075, "OBJECTID_1": 11359, "PARCEL_NO_": "105304041000", "Tax_Legal_": "73 KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "SPENCELEY, RICHARD c.", "Address": "PO Box 308790", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 239400, "Improved_V": 1316900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.848869926900001, "SHAPE_Area": 122.14150328 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358259.5945999994874, 256716.680700000375509 ], [ 358272.401799999177456, 256718.049100000411272 ], [ 358274.207099996507168, 256705.190099999308586 ], [ 358267.258699998259544, 256708.065499998629093 ], [ 358261.755400002002716, 256709.1239 ], [ 358259.5945999994874, 256716.680700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304041800", "MAP": "F9-3674-T79", "PARCEL_NAM": "72-1 KRONPRINSENS GADE", "ACRE": "4,326 sq ft", "LONGITUDE": -64.93614357, "LATITUDE": 18.34005641, "OBJECTID_1": 11366, "PARCEL_NO_": "105304041800", "Tax_Legal_": "72-1 KRONPRINDSENS GADE KRONPRINDSENS QTR.", "Name": "KRONPRINDSENS PASSAGE LLC", "Address": "7615 SOUTHDOWN RD", "City": "ALEXANDRIA", "State": "Virginia", "Zip": 22308, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.130819118600002, "SHAPE_Area": 454.340008184 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358245.607199996709824, 256714.140500001609325 ], [ 358244.263899996876717, 256728.039500001817942 ], [ 358242.369800001382828, 256747.650699999183416 ], [ 358255.196599997580051, 256749.637800000607967 ], [ 358259.5945999994874, 256716.680700000375509 ], [ 358245.608300000429153, 256714.123199999332428 ], [ 358245.607199996709824, 256714.140500001609325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304041800", "MAP": null, "PARCEL_NAM": "72W KRONPRINSENS GADE", "ACRE": null, "LONGITUDE": -64.93610965000001, "LATITUDE": 18.33988763, "OBJECTID_1": 11366, "PARCEL_NO_": "105304041800", "Tax_Legal_": "72-1 KRONPRINDSENS GADE KRONPRINDSENS QTR.", "Name": "KRONPRINDSENS PASSAGE LLC", "Address": "7615 SOUTHDOWN RD", "City": "ALEXANDRIA", "State": "Virginia", "Zip": 22308, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.675063073300002, "SHAPE_Area": 67.469984766799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358261.755400002002716, 256709.1239 ], [ 358255.282899998128414, 256711.228100001811981 ], [ 358246.529899999499321, 256711.228100001811981 ], [ 358245.608300000429153, 256714.123199999332428 ], [ 358259.5945999994874, 256716.680700000375509 ], [ 358261.755400002002716, 256709.1239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040900", "MAP": null, "PARCEL_NAM": "71AA KRONPRINDSENS GADE", "ACRE": "2,011 sq ft", "LONGITUDE": -64.93627921, "LATITUDE": 18.34048778, "OBJECTID_1": 11358, "PARCEL_NO_": "105304040900", "Tax_Legal_": "70B,71AA,71AA-1,71B KRONPRINDSEN CROWN PRINCE", "Name": "SHALOM PROPERTIES, L. L. C.", "Address": "PO Box 640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 144500, "Improved_V": 1243000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.2772632, "SHAPE_Area": 328.17398351700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358234.451300002634525, 256750.567999999970198 ], [ 358231.979599997401237, 256773.187300000339746 ], [ 358236.457299999892712, 256773.758000001311302 ], [ 358229.60639999806881, 256829.213899999856949 ], [ 358231.509700000286102, 256829.472199998795986 ], [ 358234.608999997377396, 256809.235599998384714 ], [ 358238.884800001978874, 256781.316899999976158 ], [ 358239.782200001180172, 256774.443500000983477 ], [ 358241.988899998366833, 256751.594300001859665 ], [ 358234.451300002634525, 256750.567999999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040700", "MAP": null, "PARCEL_NAM": "71A KRONPRINDSENS GADE", "ACRE": null, "LONGITUDE": -64.93632385, "LATITUDE": 18.34067728, "OBJECTID_1": 11357, "PARCEL_NO_": "105304040700", "Tax_Legal_": "KRONPRINDSENS GADE 70A&71A CROWN PRINCE QTR", "Name": "BERNE CORPORATION", "Address": "BOX 3560", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67900, "Improved_V": 5900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.975071482, "SHAPE_Area": 230.19123886899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358231.979599997401237, 256773.187300000339746 ], [ 358225.912299998104572, 256828.712499998509884 ], [ 358229.60639999806881, 256829.213899999856949 ], [ 358236.457299999892712, 256773.758000001311302 ], [ 358231.979599997401237, 256773.187300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304042800", "MAP": null, "PARCEL_NAM": "71BW KRONPRINSENS GADE", "ACRE": "750 sq ft", "LONGITUDE": -64.93622618000001, "LATITUDE": 18.33987405, "OBJECTID_1": 11371, "PARCEL_NO_": "105304042800", "Tax_Legal_": "KRONPRINDSENS GADE 70BW&71-BW KRONP. QTR", "Name": "SHALOM PROPERTIES, L. L. C.", "Address": "PO Box 640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.464497548499999, "SHAPE_Area": 30.856882804800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358243.287399999797344, 256709.811799999326468 ], [ 358239.099600002169609, 256708.028499998152256 ], [ 358238.534500002861023, 256713.200199998915195 ], [ 358242.835199996829033, 256713.761300001293421 ], [ 358245.608300000429153, 256714.123199999332428 ], [ 358246.529899999499321, 256711.228100001811981 ], [ 358243.287399999797344, 256709.811799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040700", "MAP": null, "PARCEL_NAM": "70A KRONPRINDSENS GADE", "ACRE": null, "LONGITUDE": -64.93638651000001, "LATITUDE": 18.3408279, "OBJECTID_1": 11357, "PARCEL_NO_": "105304040700", "Tax_Legal_": "KRONPRINDSENS GADE 70A&71A CROWN PRINCE QTR", "Name": "BERNE CORPORATION", "Address": "BOX 3560", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 67900, "Improved_V": 5900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.511153250500001, "SHAPE_Area": 133.193813076 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358223.115699999034405, 256804.535999998450279 ], [ 358222.659500002861023, 256808.958000000566244 ], [ 358221.204300001263618, 256819.012200001627207 ], [ 358219.802799999713898, 256827.883200000971556 ], [ 358220.2533999979496, 256827.944400001317263 ], [ 358225.912299998104572, 256828.712499998509884 ], [ 358228.447599999606609, 256805.51069999858737 ], [ 358223.115699999034405, 256804.535999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304041500", "MAP": null, "PARCEL_NAM": "70BA", "ACRE": "2,343 sq ft", "LONGITUDE": -64.93635867, "LATITUDE": 18.34057364, "OBJECTID_1": 11363, "PARCEL_NO_": "105304041500", "Tax_Legal_": "KRONPRINDSENS GADE 70BA CROWN PRINCE", "Name": "BERNE CORPORATION", "Address": "P O BOX 3560", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.764483543699995, "SHAPE_Area": 178.12555377499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358226.423199996352196, 256772.479100000113249 ], [ 358223.115699999034405, 256804.535999998450279 ], [ 358228.447599999606609, 256805.51069999858737 ], [ 358231.979599997401237, 256773.187300000339746 ], [ 358226.423199996352196, 256772.479100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040900", "MAP": null, "PARCEL_NAM": "70B KRONPRINDSENS GADE", "ACRE": "5,213 sq ft", "LONGITUDE": -64.93631523000001, "LATITUDE": 18.34015769, "OBJECTID_1": 11358, "PARCEL_NO_": "105304040900", "Tax_Legal_": "70B,71AA,71AA-1,71B KRONPRINDSEN CROWN PRINCE", "Name": "SHALOM PROPERTIES, L. L. C.", "Address": "PO Box 640", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 144500, "Improved_V": 1243000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.765262374, "SHAPE_Area": 338.60397900300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358232.931900002062321, 256712.644299998879433 ], [ 358226.423199996352196, 256772.479100000113249 ], [ 358231.979599997401237, 256773.187300000339746 ], [ 358234.451300002634525, 256750.567999999970198 ], [ 358238.534500002861023, 256713.200199998915195 ], [ 358236.24210000038147, 256712.901000000536442 ], [ 358232.931900002062321, 256712.644299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304042600", "MAP": null, "PARCEL_NAM": "69A", "ACRE": "10,177 sq ft", "LONGITUDE": -64.93639983, "LATITUDE": 18.34000615, "OBJECTID_1": 11370, "PARCEL_NO_": "105304042600", "Tax_Legal_": "KRONPRINDSENS GADE 69A CROWN PRINCE QTR", "Name": "BERNE CORPORATION", "Address": "P O BOX 3560", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 152700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.21139478000001, "SHAPE_Area": 718.87698550599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358219.012299999594688, 256699.594300001859665 ], [ 358213.610699996352196, 256748.55350000038743 ], [ 358228.847800001502037, 256750.189500000327826 ], [ 358232.931900002062321, 256712.644299998879433 ], [ 358233.684799998998642, 256705.722600001841784 ], [ 358226.697999998927116, 256702.747400000691414 ], [ 358219.012299999594688, 256699.594300001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304071000", "MAP": "D9-1399-T78", "PARCEL_NAM": "2-2", "ACRE": "0.20", "LONGITUDE": -64.9364723, "LATITUDE": 18.33579282, "OBJECTID_1": 11398, "PARCEL_NO_": "105304071000", "Tax_Legal_": "ORKANSHULLET 2-2 S S QTR", "Name": "MONTENEGRO, JOAN R.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025866, "Country": "United States", "Land_Value": 121300, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.3340206122, "SHAPE_Area": 68.079529724300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358218.87049999833107, 256265.035900000482798 ], [ 358223.809399999678135, 256260.968499999493361 ], [ 358224.317900002002716, 256261.1864 ], [ 358226.278899997472763, 256259.443300001323223 ], [ 358221.340000003576279, 256254.794900000095367 ], [ 358219.015799999237061, 256256.465399999171495 ], [ 358217.708499997854233, 256255.158100001513958 ], [ 358214.367399998009205, 256257.845400001853704 ], [ 358216.255800001323223, 256259.225400000810623 ], [ 358214.585299998521805, 256261.1864 ], [ 358218.87049999833107, 256265.181099999696016 ], [ 358218.941799998283386, 256265.122400000691414 ], [ 358218.87049999833107, 256265.035900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304071100", "MAP": "D9-1399-T78", "PARCEL_NAM": "2-1", "ACRE": "0.40", "LONGITUDE": -64.93631334, "LATITUDE": 18.33580955, "OBJECTID_1": 11399, "PARCEL_NO_": "105304071100", "Tax_Legal_": "ORKANDHULLET 2-1 S S QTR", "Name": "AMALIE HOLDING II, LLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 242700, "Improved_V": 153700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.091635766000003, "SHAPE_Area": 237.28611696900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358245.919100001454353, 256261.057399999350309 ], [ 358237.246200002729893, 256252.325500000268221 ], [ 358234.486199997365475, 256251.671799998730421 ], [ 358224.76349999755621, 256262.28999999910593 ], [ 358233.251500003039837, 256268.231600001454353 ], [ 358240.514499999582767, 256268.957899998873472 ], [ 358246.025799997150898, 256269.417199999094009 ], [ 358245.919100001454353, 256261.057399999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401050100", "MAP": null, "PARCEL_NAM": "4 DOMINI GADE", "ACRE": "3,183 sq ft", "LONGITUDE": -64.93106105, "LATITUDE": 18.34522417, "OBJECTID_1": 11453, "PARCEL_NO_": "105401050100", "Tax_Legal_": "DOMINI GADE 4 KINGS QUARTER", "Name": "DENNIS, JACQUELINE", "Address": "PO Box 305236", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7000, "Improved_V": 54600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.506734398600003, "SHAPE_Area": 138.97843264299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358792.33500000089407, 257304.292300000786781 ], [ 358774.315200001001358, 257304.290300000458956 ], [ 358774.318199999630451, 257305.219300001859665 ], [ 358774.246799997985363, 257309.642900001257658 ], [ 358774.270300000905991, 257312.227600000798702 ], [ 358792.371699996292591, 257311.732999999076128 ], [ 358792.33500000089407, 257304.292300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401192100", "MAP": null, "PARCEL_NAM": "134B", "ACRE": "1,870 sq ft", "LONGITUDE": -64.92801387, "LATITUDE": 18.34462104, "OBJECTID_1": 11757, "PARCEL_NO_": "105401192100", "Tax_Legal_": "HOSPITAL GROUND 134B KINGS QTR", "Name": "TESTAMARK, CHRISTIAN", "Address": "BOX 2367", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4500, "Improved_V": 24900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.4492090006, "SHAPE_Area": 119.495003072 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359100.699000000953674, 257238.612100001424551 ], [ 359102.273599997162819, 257251.7483000010252 ], [ 359109.290600001811981, 257251.094500001519918 ], [ 359110.856600001454353, 257236.401500001549721 ], [ 359100.699000000953674, 257238.612100001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402040200", "MAP": "D9-3867-T87", "PARCEL_NAM": "A-1-4", "ACRE": "2.48", "LONGITUDE": -64.91429224, "LATITUDE": 18.3305715, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 460.575450209, "SHAPE_Area": 11312.109130500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360525.753899998962879, 255655.944899998605251 ], [ 360526.85530000180006, 255656.108899999409914 ], [ 360532.321099996566772, 255662.561000000685453 ], [ 360527.822700001299381, 255685.687899999320507 ], [ 360527.686099998652935, 255701.729899998754263 ], [ 360529.208800002932549, 255712.296999998390675 ], [ 360533.924400001764297, 255726.690000001341105 ], [ 360536.2533999979496, 255737.263700000941753 ], [ 360536.152699999511242, 255749.084100000560284 ], [ 360534.405199997127056, 255764.901900000870228 ], [ 360531.959299996495247, 255768.048200000077486 ], [ 360529.53320000320673, 255768.872800000011921 ], [ 360549.471600003540516, 255794.78940000012517 ], [ 360625.097000002861023, 255720.470100000500679 ], [ 360618.032600000500679, 255697.825300000607967 ], [ 360617.242499999701977, 255695.918999999761581 ], [ 360611.081500001251698, 255661.882500000298023 ], [ 360607.244199998676777, 255639.052999999374151 ], [ 360600.800899997353554, 255638.155900001525879 ], [ 360573.41499999910593, 255634.554200001060963 ], [ 360519.449600003659725, 255627.357500001788139 ], [ 360526.497800000011921, 255651.902100000530481 ], [ 360525.753899998962879, 255655.944899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105301101600", "MAP": "A9-272-T78", "PARCEL_NAM": "14", "ACRE": "2.5", "LONGITUDE": -64.94948896, "LATITUDE": 18.34244424, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 397.4603683, "SHAPE_Area": 10113.3356993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356914.176500000059605, 256962.706399999558926 ], [ 356793.260899998247623, 256928.85190000012517 ], [ 356771.869400002062321, 256997.713300000876188 ], [ 356795.070799998939037, 257019.223700001835823 ], [ 356814.291000001132488, 257034.790800001472235 ], [ 356820.714599996805191, 257038.009799998253584 ], [ 356827.152500003576279, 257039.540100000798702 ], [ 356834.409299999475479, 257039.599500000476837 ], [ 356844.112000003457069, 257036.512499999254942 ], [ 356883.027199998497963, 257011.921999998390675 ], [ 356894.342500001192093, 257008.848200000822544 ], [ 356900.193400003015995, 257009.202599998563528 ], [ 356914.176500000059605, 256962.706399999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303119200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94217399, "LATITUDE": 18.34093013, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.21445753699999, "SHAPE_Area": 3568.5805504499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357581.339400000870228, 256842.797899998724461 ], [ 357615.103799998760223, 256857.546100001782179 ], [ 357627.020499996840954, 256863.258299998939037 ], [ 357631.757399998605251, 256867.962499998509884 ], [ 357632.604999996721745, 256863.11430000141263 ], [ 357639.271300002932549, 256837.837600000202656 ], [ 357643.443099997937679, 256821.406399998813868 ], [ 357646.779899999499321, 256808.345899999141693 ], [ 357592.196999996900558, 256778.979400001466274 ], [ 357581.236599996685982, 256835.040600001811981 ], [ 357579.879000000655651, 256842.223700001835823 ], [ 357581.339400000870228, 256842.797899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302401800", "MAP": null, "PARCEL_NAM": "CRYSTAL GADE 16AxB", "ACRE": null, "LONGITUDE": -64.93266454, "LATITUDE": 18.34278842, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.107325041099998, "SHAPE_Area": 451.19391305200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358610.737199999392033, 257051.604800000786781 ], [ 358615.724500000476837, 257051.410700000822544 ], [ 358627.419200003147125, 257050.356699999421835 ], [ 358621.171599999070168, 257024.969300001859665 ], [ 358619.032300002872944, 257024.441599998623133 ], [ 358605.359200000762939, 257020.318900000303984 ], [ 358610.737199999392033, 257051.604800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402098500", "MAP": "D9-8867-T014", "PARCEL_NAM": "B-10", "ACRE": ".34", "LONGITUDE": -64.92094284, "LATITUDE": 18.34504229, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.383517665, "SHAPE_Area": 1478.9853627499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359874.468000002205372, 257300.513000000268221 ], [ 359870.395099997520447, 257277.233800001442432 ], [ 359821.535899996757507, 257280.514899998903275 ], [ 359827.215000003576279, 257285.80629999935627 ], [ 359854.724600002169609, 257329.089600000530481 ], [ 359874.468000002205372, 257300.513000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "D3-284-T67", "PARCEL_NAM": "REM of HOSPITAL GROUND", "ACRE": null, "LONGITUDE": -64.92421116, "LATITUDE": 18.34721801, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.34767206000001, "SHAPE_Area": 2351.7823319700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359517.345399998128414, 257495.566399998962879 ], [ 359466.683799996972084, 257531.182399999350309 ], [ 359479.359700001776218, 257540.247499998658895 ], [ 359486.383500002324581, 257545.270599998533726 ], [ 359487.083700001239777, 257545.771299999207258 ], [ 359494.304099999368191, 257550.934900000691414 ], [ 359502.310300000011921, 257556.660500001162291 ], [ 359511.127499997615814, 257562.854400001466274 ], [ 359513.860399998724461, 257564.786899998784065 ], [ 359531.967600002884865, 257577.590399999171495 ], [ 359528.886200003325939, 257560.677700001746416 ], [ 359523.517099998891354, 257528.336399998515844 ], [ 359517.345399998128414, 257495.566399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D3-284-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92484436, "LATITUDE": 18.3476406, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.47485882699999, "SHAPE_Area": 972.97125667600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359489.189499996602535, 257547.277300000190735 ], [ 359485.233000002801418, 257551.453600000590086 ], [ 359478.256899997591972, 257557.219500001519918 ], [ 359471.850400000810623, 257561.561700001358986 ], [ 359453.00110000371933, 257570.822399999946356 ], [ 359448.086999997496605, 257573.272399999201298 ], [ 359438.39190000295639, 257577.577300000935793 ], [ 359426.737700000405312, 257582.133799999952316 ], [ 359404.996799997985363, 257589.695199999958277 ], [ 359399.616700001060963, 257593.594399999827147 ], [ 359394.064400002360344, 257598.434900000691414 ], [ 359386.61429999768734, 257603.383699998259544 ], [ 359382.506700001657009, 257610.775400001555681 ], [ 359390.946900002658367, 257611.037200000137091 ], [ 359408.596900001168251, 257596.848600000143051 ], [ 359439.710900001227856, 257586.33839999884367 ], [ 359453.075699999928474, 257580.710099998861551 ], [ 359464.909999996423721, 257572.452799998223782 ], [ 359468.697700001299381, 257570.069299999624491 ], [ 359477.758699998259544, 257566.117400001734495 ], [ 359483.666900001466274, 257562.059999998658895 ], [ 359491.070000000298023, 257556.436500001698732 ], [ 359496.191799998283386, 257552.28489999845624 ], [ 359494.304099999368191, 257550.934900000691414 ], [ 359489.189499996602535, 257547.277300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95001078, "LATITUDE": 18.34619182, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.047436182599995, "SHAPE_Area": 160.38580153500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356775.332900002598763, 257405.254399999976158 ], [ 356795.19200000166893, 257406.589499998837709 ], [ 356795.178800001740456, 257405.946400001645088 ], [ 356795.001800000667572, 257405.94649999961257 ], [ 356786.159299999475479, 257402.707699999213219 ], [ 356781.353799998760223, 257398.868700001388788 ], [ 356779.782499998807907, 257394.000700000673532 ], [ 356779.852700002491474, 257385.7685999982059 ], [ 356771.719400003552437, 257393.93470000103116 ], [ 356775.332900002598763, 257405.254399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9384025, "LATITUDE": 18.340763, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.836809946, "SHAPE_Area": 126.500275452 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358017.782700002193451, 256812.647399999201298 ], [ 358014.852099999785423, 256807.141800001263618 ], [ 358017.605800002813339, 256806.557199999690056 ], [ 358015.638800002634525, 256792.656399998813868 ], [ 358013.086199998855591, 256793.486299999058247 ], [ 358013.344999998807907, 256797.766600001603365 ], [ 358013.924099996685982, 256805.268399998545647 ], [ 358003.453100003302097, 256810.414599999785423 ], [ 357995.522200003266335, 256814.312399998307228 ], [ 357995.280100002884865, 256817.188099998980761 ], [ 358012.902500003576279, 256808.488400001078844 ], [ 358015.246699996292591, 256813.472600001841784 ], [ 358018.050300002098083, 256819.708399999886751 ], [ 358020.329000003635883, 256818.254399999976158 ], [ 358017.782700002193451, 256812.647399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "G9-734-T64", "PARCEL_NAM": "ROW 26B", "ACRE": null, "LONGITUDE": -64.93757571, "LATITUDE": 18.34109162, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.6942071631, "SHAPE_Area": 15.7235438838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358095.992200002074242, 256851.839400000870228 ], [ 358096.968000002205372, 256852.289799999445677 ], [ 358100.832500003278255, 256838.459600001573563 ], [ 358099.704499997198582, 256838.228500001132488 ], [ 358095.992200002074242, 256851.839400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "FREEWAY", "ACRE": null, "LONGITUDE": -64.9374471, "LATITUDE": 18.34094871, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.587147037099996, "SHAPE_Area": 58.069743961699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358111.277199998497963, 256840.627999998629093 ], [ 358115.620600000023842, 256827.680100001394749 ], [ 358121.691299997270107, 256809.582800000905991 ], [ 358120.916799999773502, 256809.271200001239777 ], [ 358120.638300001621246, 256809.156399998813868 ], [ 358115.779899999499321, 256823.380499999970198 ], [ 358114.517499998211861, 256827.21510000154376 ], [ 358110.557099997997284, 256839.245000001043081 ], [ 358100.420500002801418, 256835.866200000047684 ], [ 358099.704499997198582, 256838.228500001132488 ], [ 358106.144199997186661, 256839.547800000756979 ], [ 358110.168600000441074, 256840.42509999871254 ], [ 358111.277199998497963, 256840.627999998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105302382400", "MAP": "D9-8446-T010", "PARCEL_NAM": "1A-1 VESTER GADE", "ACRE": "97 sq ft", "LONGITUDE": -64.93372314, "LATITUDE": 18.34202333, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 15.571050449299999, "SHAPE_Area": 8.2438330178299992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358507.586000002920628, 256949.440400000661612 ], [ 358501.585699997842312, 256952.446400001645088 ], [ 358502.020300000905991, 256953.565099999308586 ], [ 358507.572899997234344, 256950.971700001507998 ], [ 358507.586000002920628, 256949.440400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93550244, "LATITUDE": 18.34764258, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 439.23276625199998, "SHAPE_Area": 1090.69291931 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358324.384800001978874, 257535.620700001716614 ], [ 358314.491499997675419, 257561.081999998539686 ], [ 358283.221500001847744, 257540.138900000602007 ], [ 358281.590899996459484, 257542.2364999987185 ], [ 358313.659999996423721, 257564.030499998480082 ], [ 358307.879199996590614, 257580.026299998164177 ], [ 358300.458700001239777, 257599.17509999871254 ], [ 358295.509400002658367, 257612.22239999845624 ], [ 358287.259199999272823, 257634.108600001782179 ], [ 358275.717299997806549, 257663.778299998492002 ], [ 358281.386699996888638, 257660.86939999833703 ], [ 358311.867600001394749, 257585.125199999660254 ], [ 358325.050899997353554, 257552.091400001198053 ], [ 358325.882399998605251, 257549.142900001257658 ], [ 358344.826800003647804, 257502.435199998319149 ], [ 358340.035599999129772, 257496.907600000500679 ], [ 358331.801700003445148, 257516.894099999219179 ], [ 358324.384800001978874, 257535.620700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303230100", "MAP": null, "PARCEL_NAM": "7", "ACRE": "542 sq ft", "LONGITUDE": -64.94214528000001, "LATITUDE": 18.3376072, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.382892120400001, "SHAPE_Area": 66.217206596899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357624.453299999237061, 256461.866900000721216 ], [ 357618.337899997830391, 256449.1739999987185 ], [ 357611.914899997413158, 256452.156899999827147 ], [ 357617.510600000619888, 256457.902199998497963 ], [ 357622.307099997997284, 256462.796599999070168 ], [ 357624.453299999237061, 256461.866900000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303273300", "MAP": "A9-422-T93", "PARCEL_NAM": "60", "ACRE": "0.15", "LONGITUDE": -64.94098957, "LATITUDE": 18.33698839, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.706685184799994, "SHAPE_Area": 524.56585409800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357751.998599998652935, 256383.85359999909997 ], [ 357748.060500003397465, 256372.844500001519918 ], [ 357736.721799999475479, 256378.662300001829863 ], [ 357727.836199998855591, 256380.489399999380112 ], [ 357728.450199998915195, 256391.630699999630451 ], [ 357728.534599997103214, 256393.160799998790026 ], [ 357728.48589999973774, 256398.88230000063777 ], [ 357756.925499998033047, 256397.279899999499321 ], [ 357753.41950000077486, 256387.72580000013113 ], [ 357751.998599998652935, 256383.85359999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "FREEWAY", "ACRE": null, "LONGITUDE": -64.92509943, "LATITUDE": 18.3452917, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.013573901500003, "SHAPE_Area": 35.7358858885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359402.445500001311302, 257323.782400000840425 ], [ 359416.762999996542931, 257318.475000001490116 ], [ 359417.936499997973442, 257325.249699998646975 ], [ 359420.058100000023842, 257324.704799998551607 ], [ 359419.328699998557568, 257321.649500001221895 ], [ 359419.161300003528595, 257320.988299999386072 ], [ 359418.614799998700619, 257318.829700000584126 ], [ 359418.201700001955032, 257317.197799999266863 ], [ 359418.056800000369549, 257316.625500001013279 ], [ 359408.748099997639656, 257320.084199998527765 ], [ 359402.132500000298023, 257322.40430000051856 ], [ 359402.445500001311302, 257323.782400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401221900", "MAP": null, "PARCEL_NAM": "256A", "ACRE": "575 sq ft", "LONGITUDE": -64.92512532000001, "LATITUDE": 18.34532088, "OBJECTID_1": 11797, "PARCEL_NO_": "105401221900", "Tax_Legal_": "HOSPITAL GROUND 256A KINGS QTR", "Name": "RICHARDS, STRICKLAND", "Address": "PO Box 340736", "City": "Jamaica", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 4300, "Improved_V": 231500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.208614314800002, "SHAPE_Area": 90.609319849499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359417.936499997973442, 257325.249699998646975 ], [ 359416.762999996542931, 257318.475000001490116 ], [ 359402.445500001311302, 257323.782400000840425 ], [ 359403.199600003659725, 257327.101799998432398 ], [ 359403.614399999380112, 257328.92790000140667 ], [ 359417.936499997973442, 257325.249699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401241300", "MAP": null, "PARCEL_NAM": "138", "ACRE": "615 sq ft", "LONGITUDE": -64.92472629, "LATITUDE": 18.34506309, "OBJECTID_1": 11810, "PARCEL_NO_": "105401241300", "Tax_Legal_": "HOSPITAL GROUND 138 NEW QTR", "Name": "PERRY, ANDREW", "Address": "PO Box 9266", "City": "Myrtle Beach", "State": "South Carolina", "Zip": 29578, "Country": "United States", "Land_Value": 1500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.127812391299997, "SHAPE_Area": 85.400529772599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359466.460400000214577, 257284.253400001674891 ], [ 359440.300200000405312, 257303.389600001275539 ], [ 359441.102799996733665, 257306.697999998927116 ], [ 359467.208200000226498, 257286.308400001376867 ], [ 359466.460400000214577, 257284.253400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401241800", "MAP": null, "PARCEL_NAM": "28AA", "ACRE": "115 sq ft", "LONGITUDE": -64.92476052000001, "LATITUDE": 18.34474639, "OBJECTID_1": 11815, "PARCEL_NO_": "105401241800", "Tax_Legal_": "HOSPITAL GROUND 28AA KINGS QTR", "Name": "CONNAR, THOMAS & LERA", "Address": "PO Box 8531", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.1384178976, "SHAPE_Area": 29.823512674700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359449.536399997770786, 257248.118700001388788 ], [ 359448.020499996840954, 257267.152499999850988 ], [ 359451.171700000762939, 257266.933299999684095 ], [ 359449.536399997770786, 257248.118700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401280500", "MAP": "D9-1441-T78", "PARCEL_NAM": "9B COMMANDANT GADE O.V.", "ACRE": "0.03", "LONGITUDE": -64.93134197000001, "LATITUDE": 18.34409831, "OBJECTID_1": 11889, "PARCEL_NO_": "105401280500", "Tax_Legal_": "7&8 REMAINDER STORE GRONNE GADE QUEENS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 145100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.833269200099998, "SHAPE_Area": 122.505938614 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358760.9121999964118, 257178.54839999973774 ], [ 358748.02080000191927, 257178.54839999973774 ], [ 358748.155000001192093, 257188.060199998319149 ], [ 358761.167700000107288, 257187.960900001227856 ], [ 358760.930399999022484, 257179.672699999064207 ], [ 358760.9121999964118, 257178.54839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401280900", "MAP": "D9-1441-T78", "PARCEL_NAM": "9D COMMANDANT GADE O.V.", "ACRE": "0.03", "LONGITUDE": -64.93148214, "LATITUDE": 18.34421555, "OBJECTID_1": 11893, "PARCEL_NO_": "105401280900", "Tax_Legal_": "9D COMMANDANT GADE OVER VANDET QUEEN'S QTR", "Name": "BLYDEN, ELEANOR,GERUT, JANET", "Address": "PO Box 45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3400, "Improved_V": 41800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.973454542100001, "SHAPE_Area": 144.716076085 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358746.945799998939037, 257200.52589999884367 ], [ 358746.300999999046326, 257190.057700000703335 ], [ 358734.817400000989437, 257191.015599999576807 ], [ 358732.823700003325939, 257196.5287000015378 ], [ 358732.439499996602535, 257197.488099999725819 ], [ 358731.991200000047684, 257198.419300001114607 ], [ 358731.480800002813339, 257199.317899998277426 ], [ 358730.910599999129772, 257200.179900001734495 ], [ 358729.849399998784065, 257201.671700000762939 ], [ 358746.945799998939037, 257200.52589999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401280800", "MAP": "D9-1441-T78", "PARCEL_NAM": "9C COMMANDANT GADE O.V.", "ACRE": "0.03", "LONGITUDE": -64.93134734, "LATITUDE": 18.34419532, "OBJECTID_1": 11892, "PARCEL_NO_": "105401280800", "Tax_Legal_": "9C COMMANDANT GADE OVER VANDET QUEEN'S QTR", "Name": "BLYDEN, ELEANOR", "Address": "PO Box 45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4500, "Improved_V": 43400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.512474073699998, "SHAPE_Area": 178.215738767 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358761.167700000107288, 257187.960900001227856 ], [ 358746.433300003409386, 257188.073399998247623 ], [ 358746.300999999046326, 257190.057700000703335 ], [ 358746.945799998939037, 257200.52589999884367 ], [ 358761.623400002717972, 257199.542199999094009 ], [ 358761.214900001883507, 257189.609600000083447 ], [ 358761.167700000107288, 257187.960900001227856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401281000", "MAP": "D9-1441-T78", "PARCEL_NAM": "9E COMMANDANT GADE O.V.", "ACRE": "0.04", "LONGITUDE": -64.93145512, "LATITUDE": 18.34410598, "OBJECTID_1": 11894, "PARCEL_NO_": "105401281000", "Tax_Legal_": "9E COMMANDANT GADE OVER VANDET QUEEN'S QTR", "Name": "BLYDEN, ELEANOR,GERUT, JANET", "Address": "PO Box 45", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 4500, "Improved_V": 43400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.891116422400003, "SHAPE_Area": 139.47900726200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358748.155000001192093, 257188.060199998319149 ], [ 358748.02080000191927, 257178.54839999973774 ], [ 358743.794299997389317, 257174.287599999457598 ], [ 358739.382299996912479, 257180.350499998778105 ], [ 358738.781300000846386, 257181.2331000007689 ], [ 358738.236699998378754, 257182.151599999517202 ], [ 358737.750600002706051, 257183.102400001138449 ], [ 358737.32490000128746, 257184.081700000911951 ], [ 358734.817400000989437, 257191.015599999576807 ], [ 358746.300999999046326, 257190.057700000703335 ], [ 358746.433300003409386, 257188.073399998247623 ], [ 358748.155000001192093, 257188.060199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401320500", "MAP": null, "PARCEL_NAM": "47B PRINDSENS GADE", "ACRE": "2,971 sq ft", "LONGITUDE": -64.92883264, "LATITUDE": 18.34358415, "OBJECTID_1": 11966, "PARCEL_NO_": "105401320500", "Tax_Legal_": "PRINDSENS GADE 47B KINGS QTR", "Name": "ARNOLD, ELEANOR", "Address": "PO Box 298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.708668485399997, "SHAPE_Area": 154.39225848800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359026.01349999755621, 257135.362300001084805 ], [ 359024.652400001883507, 257120.594900000840425 ], [ 359016.813500002026558, 257121.234099999070168 ], [ 359014.475000001490116, 257121.424800001084805 ], [ 359015.961400002241135, 257136.8581000007689 ], [ 359017.985299997031689, 257136.557000000029802 ], [ 359026.01349999755621, 257135.362300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401342000", "MAP": null, "PARCEL_NAM": "17 CRYSTAL GADE", "ACRE": null, "LONGITUDE": -64.93230638, "LATITUDE": 18.34276911, "OBJECTID_1": 12001, "PARCEL_NO_": "105401342000", "Tax_Legal_": "CRYSTAL GADE 17 QUEEN QTR", "Name": "PICKERING, LILLIAN A", "Address": "PO Box 247", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.5736246182, "SHAPE_Area": 61.847979959600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358650.331900000572205, 257030.318799998611212 ], [ 358650.898500002920628, 257039.384100001305342 ], [ 358654.169900000095367, 257042.293800000101328 ], [ 358658.745800003409386, 257031.639299999922514 ], [ 358650.331900000572205, 257030.318799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401602800", "MAP": "G9-656-T62", "PARCEL_NAM": "40CCCA", "ACRE": null, "LONGITUDE": -64.92574772, "LATITUDE": 18.33971524, "OBJECTID_1": 12442, "PARCEL_NO_": "105401602800", "Tax_Legal_": "TAARNEBERG 40CCCA KINGS QTR", "Name": "GORDON, ANGELA", "Address": "PO Box 9549", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5200, "Improved_V": 129800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.505479238899994, "SHAPE_Area": 253.45121611900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359342.010999999940395, 256692.521099999547005 ], [ 359340.748199999332428, 256702.767400000244379 ], [ 359346.239100001752377, 256703.682500001043081 ], [ 359344.668999999761581, 256714.282400000840425 ], [ 359355.472300000488758, 256712.498399998992682 ], [ 359358.960400000214577, 256697.671300001442432 ], [ 359354.506300002336502, 256696.157600000500679 ], [ 359342.010999999940395, 256692.521099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401602800", "MAP": "G9-656-T62", "PARCEL_NAM": "40CCC CONS", "ACRE": null, "LONGITUDE": -64.9258749, "LATITUDE": 18.33974138, "OBJECTID_1": 12442, "PARCEL_NO_": "105401602800", "Tax_Legal_": "TAARNEBERG 40CCCA KINGS QTR", "Name": "GORDON, ANGELA", "Address": "PO Box 9549", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 5200, "Improved_V": 129800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.887629177700006, "SHAPE_Area": 325.78032133699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359344.668999999761581, 256714.282400000840425 ], [ 359346.239100001752377, 256703.682500001043081 ], [ 359340.748199999332428, 256702.767400000244379 ], [ 359342.010999999940395, 256692.521099999547005 ], [ 359335.300800003111362, 256690.56810000166297 ], [ 359327.178400002419949, 256710.128499999642372 ], [ 359325.91780000180006, 256714.4527000002563 ], [ 359325.525100000202656, 256715.323699999600649 ], [ 359329.194499999284744, 256716.837799999862909 ], [ 359331.672700002789497, 256716.428599998354912 ], [ 359338.87780000269413, 256715.238699998706579 ], [ 359344.668999999761581, 256714.282400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402021100", "MAP": null, "PARCEL_NAM": "335B", "ACRE": "16,026 sq ft", "LONGITUDE": -64.92325631, "LATITUDE": 18.34725114, "OBJECTID_1": 12482, "PARCEL_NO_": "105402021100", "Tax_Legal_": "HOSPITAL GROUND 335B KINGS QTR.", "Name": "FINCH, VERNON A", "Address": "PO Box 404", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.50907362700001, "SHAPE_Area": 838.26242446699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359622.697599999606609, 257556.627199999988079 ], [ 359613.04839999973774, 257525.480599999427795 ], [ 359600.221100002527237, 257516.720800001174212 ], [ 359593.806599996984005, 257512.446400001645088 ], [ 359595.889300003647804, 257551.938000001013279 ], [ 359607.123700000345707, 257558.362700000405312 ], [ 359611.952600002288818, 257559.457699999213219 ], [ 359620.028300002217293, 257558.04619999974966 ], [ 359622.697599999606609, 257556.627199999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102900", "MAP": "D9-8012-T007", "PARCEL_NAM": "18 of TRACT I", "ACRE": "1.256", "LONGITUDE": -64.92426344, "LATITUDE": 18.34207103, "OBJECTID_1": 12707, "PARCEL_NO_": "105402102900", "Tax_Legal_": "18 OF TRACT 1 ESTATE TAARNEBJERG KINGS QTR.", "Name": "1A KONGENS CORPORATION", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 287500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.81986882500001, "SHAPE_Area": 6205.4511119299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359559.896099999547005, 256967.689599998295307 ], [ 359541.225299999117851, 256927.503400001674891 ], [ 359459.48589999973774, 256931.089000001549721 ], [ 359458.422499999403954, 256978.954700000584126 ], [ 359471.295400001108646, 256982.832600001245737 ], [ 359471.024300001561642, 257018.32880000025034 ], [ 359484.843999996781349, 257016.348900001496077 ], [ 359484.656199999153614, 256988.17680000141263 ], [ 359500.818400003015995, 256985.874899998307228 ], [ 359501.26349999755621, 256991.414000000804663 ], [ 359503.177599996328354, 257012.877599999308586 ], [ 359512.499200001358986, 257010.176300000399351 ], [ 359520.970200002193451, 257007.721799999475479 ], [ 359531.016699999570847, 257004.167199999094009 ], [ 359536.622000001370907, 257001.702300000935793 ], [ 359533.975900001823902, 256981.012899998575449 ], [ 359545.362800002098083, 256975.15989999845624 ], [ 359559.896099999547005, 256967.689599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402120800", "MAP": "D9-4389-T88", "PARCEL_NAM": "46Ba", "ACRE": ".19", "LONGITUDE": -64.91772083, "LATITUDE": 18.34032903, "OBJECTID_1": 19235, "PARCEL_NO_": "105402120800", "Tax_Legal_": "46BA EST. THOMAS 6A N EW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 261400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.798431361799999, "SHAPE_Area": 186.222326971 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360181.406599998474121, 256783.70549999922514 ], [ 360181.83839999884367, 256786.957100000232458 ], [ 360214.883100003004074, 256774.075100000947714 ], [ 360214.569700002670288, 256771.733500000089407 ], [ 360214.193400003015995, 256769.026599999517202 ], [ 360180.828599996864796, 256781.409800000488758 ], [ 360181.406599998474121, 256783.70549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105403021000", "MAP": "A3-30-T37", "PARCEL_NAM": "39b-1", "ACRE": "576 sq ft", "LONGITUDE": -64.92484979, "LATITUDE": 18.33818014, "OBJECTID_1": 19311, "PARCEL_NO_": "105403021000", "Tax_Legal_": "39B-1 TAARNEBERG KINGS QTR.", "Name": "HODGE, LAWRENCE & MARIA T", "Address": "BOX 4511", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.892045038399999, "SHAPE_Area": 64.362548287300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359451.176299996674061, 256531.300500001758337 ], [ 359439.790299996733665, 256531.236400000751019 ], [ 359440.019599996507168, 256536.163600001484156 ], [ 359441.210199996829033, 256536.163600001484156 ], [ 359443.657600000500679, 256536.428199999034405 ], [ 359450.801399998366833, 256536.957400001585484 ], [ 359451.743100002408028, 256536.989999998360872 ], [ 359452.296300001442432, 256531.321699999272823 ], [ 359451.176299996674061, 256531.300500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105403020700", "MAP": "A3-30-T37", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92472005, "LATITUDE": 18.33810457, "OBJECTID_1": 19308, "PARCEL_NO_": "105403020700", "Tax_Legal_": "39B TAARNEBERG KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 180000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.76201255399999, "SHAPE_Area": 752.97317185999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359465.727200001478195, 256515.449999999254942 ], [ 359461.206799998879433, 256515.431800000369549 ], [ 359443.543300002813339, 256515.837400000542402 ], [ 359439.078400000929832, 256515.940000001341105 ], [ 359439.740699999034405, 256530.170499999076128 ], [ 359439.790299996733665, 256531.236400000751019 ], [ 359445.210500001907349, 256531.2668999992311 ], [ 359451.176299996674061, 256531.300500001758337 ], [ 359452.296300001442432, 256531.321699999272823 ], [ 359451.743100002408028, 256536.989999998360872 ], [ 359467.999399997293949, 256537.552700001746416 ], [ 359475.767399996519089, 256538.618200000375509 ], [ 359479.1908999979496, 256516.962699998170137 ], [ 359474.732400000095367, 256516.216499999165535 ], [ 359470.240199998021126, 256515.711800001561642 ], [ 359465.727200001478195, 256515.449999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105402121000", "MAP": "G9-3094-T84", "PARCEL_NAM": "46C", "ACRE": "0.11", "LONGITUDE": -64.91697333, "LATITUDE": 18.34005917, "OBJECTID_1": 19237, "PARCEL_NO_": "105402121000", "Tax_Legal_": "46C ESTATE THOMAS 6A NEW QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 143800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.87334941300003, "SHAPE_Area": 506.73014077800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360349.150499999523163, 256724.260099999606609 ], [ 360348.621299996972084, 256721.48200000077486 ], [ 360214.193400003015995, 256769.026599999517202 ], [ 360214.569700002670288, 256771.733500000089407 ], [ 360214.790700003504753, 256773.384500000625849 ], [ 360349.150499999523163, 256724.260099999606609 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050600", "MAP": "D9-7500-T004", "PARCEL_NAM": "5C-1b", "ACRE": "4,023 sq ft", "LONGITUDE": -64.92032049, "LATITUDE": 18.33740226, "OBJECTID_1": 19340, "PARCEL_NO_": "105404050600", "Tax_Legal_": "5A-1c & 5C-1b ESTATE THOMAS KINGS QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 1211700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.84225528299999, "SHAPE_Area": 221.88814207499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359977.137500002980232, 256401.947200000286102 ], [ 359976.013199999928474, 256401.460200000554323 ], [ 359973.090599998831749, 256404.382800001651049 ], [ 359958.326899997889996, 256418.987799998372793 ], [ 359948.325599998235703, 256429.782800000160933 ], [ 359941.181800000369549, 256436.609099999070168 ], [ 359919.115500003099442, 256457.881599999964237 ], [ 359897.366700001060963, 256477.566700000315905 ], [ 359877.361699998378754, 256493.343899998813868 ], [ 359878.430699996650219, 256494.901200000196695 ], [ 359881.968000002205372, 256492.012899998575449 ], [ 359887.68299999833107, 256487.885400000959635 ], [ 359901.256099998950958, 256476.018800001591444 ], [ 359907.923600003123283, 256470.541999999433756 ], [ 359915.543600000441074, 256463.95380000025034 ], [ 359922.052400000393391, 256457.365699999034405 ], [ 359926.973700001835823, 256452.841299999505281 ], [ 359941.261200003325939, 256438.712499998509884 ], [ 359955.628100000321865, 256423.86939999833703 ], [ 359963.883100003004074, 256415.931800000369549 ], [ 359969.915600001811981, 256409.661200001835823 ], [ 359974.106600001454353, 256404.978100001811981 ], [ 359977.137500002980232, 256401.947200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050300", "MAP": "D9-4101-T87", "PARCEL_NAM": "5A-1", "ACRE": ".375", "LONGITUDE": -64.92086883, "LATITUDE": 18.33785963, "OBJECTID_1": 19337, "PARCEL_NO_": "105404050300", "Tax_Legal_": "5A-1,5D,5E,5F, & 5G EST. THOMAS MARINA AREA, NEW QTR", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27482000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.586865762400002, "SHAPE_Area": 78.503037648700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359877.361699998378754, 256493.343899998813868 ], [ 359851.961499996483326, 256510.203099999576807 ], [ 359866.645900003612041, 256505.308299999684095 ], [ 359874.847999997437, 256498.429099999368191 ], [ 359878.430699996650219, 256494.901200000196695 ], [ 359877.361699998378754, 256493.343899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050300", "MAP": "D9-7500-T004", "PARCEL_NAM": "5A-1b", "ACRE": "1,630 sq ft", "LONGITUDE": -64.92116403, "LATITUDE": 18.33806353, "OBJECTID_1": 19337, "PARCEL_NO_": "105404050300", "Tax_Legal_": "5A-1,5D,5E,5F, & 5G EST. THOMAS MARINA AREA, NEW QTR", "Name": "Government Employee Ret System", "Address": "VI GOVERNMENT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27482000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.317092886399998, "SHAPE_Area": 67.375904087600006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359846.008400000631809, 256515.097899999469519 ], [ 359827.472599998116493, 256527.757599998265505 ], [ 359829.315499998629093, 256530.706799998879433 ], [ 359838.467699997127056, 256525.548900000751019 ], [ 359846.008400000631809, 256515.097899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050500", "MAP": "D9-7500-T004", "PARCEL_NAM": "5A-1a", "ACRE": ".375", "LONGITUDE": -64.92101143, "LATITUDE": 18.33798535, "OBJECTID_1": 19339, "PARCEL_NO_": "105404050500", "Tax_Legal_": "5A-1A ESTATE THOMAS KINGS QTR", "Name": "GOV. OF THE VI PROP & PROCMNT", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.62425187100001, "SHAPE_Area": 231.67665009800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359878.826999999582767, 256495.478500001132488 ], [ 359866.645900003612041, 256505.308299999684095 ], [ 359851.961499996483326, 256510.203099999576807 ], [ 359846.008400000631809, 256515.097899999469519 ], [ 359838.467699997127056, 256525.548900000751019 ], [ 359829.315499998629093, 256530.706799998879433 ], [ 359831.199100002646446, 256533.720899999141693 ], [ 359835.679499998688698, 256530.823300000280142 ], [ 359862.969800002872944, 256510.495999999344349 ], [ 359879.871299996972084, 256496.999800000339746 ], [ 359878.826999999582767, 256495.478500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050600", "MAP": "D9-7500-T004", "PARCEL_NAM": "5A-1c", "ACRE": ".375", "LONGITUDE": -64.92079067, "LATITUDE": 18.33782311, "OBJECTID_1": 19340, "PARCEL_NO_": "105404050600", "Tax_Legal_": "5A-1c & 5C-1b ESTATE THOMAS KINGS QTR.", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 1211700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.085984556699998, "SHAPE_Area": 3.3188100408099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359878.826999999582767, 256495.478500001132488 ], [ 359878.430699996650219, 256494.901200000196695 ], [ 359874.847999997437, 256498.429099999368191 ], [ 359866.645900003612041, 256505.308299999684095 ], [ 359878.826999999582767, 256495.478500001132488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404050400", "MAP": "D9-7500-T004", "PARCEL_NAM": "5C-1a", "ACRE": "5,386 sq ft", "LONGITUDE": -64.92027541, "LATITUDE": 18.33738245, "OBJECTID_1": 19338, "PARCEL_NO_": "105404050400", "Tax_Legal_": "5C-1A ESTATE THOMAS KINGS QTR", "Name": "GOV. OF THE VI PROP & PROCMENT", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1568100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.61602660099999, "SHAPE_Area": 269.649543274 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359977.137500002980232, 256401.947200000286102 ], [ 359974.106600001454353, 256404.978100001811981 ], [ 359969.915600001811981, 256409.661200001835823 ], [ 359963.883100003004074, 256415.931800000369549 ], [ 359955.628100000321865, 256423.86939999833703 ], [ 359941.261200003325939, 256438.712499998509884 ], [ 359926.973700001835823, 256452.841299999505281 ], [ 359922.052400000393391, 256457.365699999034405 ], [ 359915.543600000441074, 256463.95380000025034 ], [ 359907.923600003123283, 256470.541999999433756 ], [ 359901.256099998950958, 256476.018800001591444 ], [ 359887.68299999833107, 256487.885400000959635 ], [ 359881.968000002205372, 256492.012899998575449 ], [ 359878.430699996650219, 256494.901200000196695 ], [ 359879.871299996972084, 256496.999800000339746 ], [ 359885.136200003325939, 256492.7956000007689 ], [ 359888.853500001132488, 256489.507699999958277 ], [ 359913.540399998426437, 256467.673000000417233 ], [ 359942.767899997532368, 256440.421799998730421 ], [ 359960.727300003170967, 256421.902800001204014 ], [ 359979.127999998629093, 256402.929000001400709 ], [ 359979.258000001311302, 256402.865600001066923 ], [ 359977.137500002980232, 256401.947200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404070700", "MAP": "D9-5148-T91", "PARCEL_NAM": "16 & 18-2 of 1st AVENUE", "ACRE": "0.07", "LONGITUDE": -64.91942199, "LATITUDE": 18.33944834, "OBJECTID_1": 19358, "PARCEL_NO_": "105404070700", "Tax_Legal_": "16 & 18-2 ESTATE THOMAS KINGS QTR", "Name": "HENDRICKS (LIFE ESTATE), EVAN", "Address": "PO Box 7974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 7200, "Improved_V": 61200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.400059943599999, "SHAPE_Area": 275.08938942200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360023.511600002646446, 256668.358300000429153 ], [ 360007.925200000405312, 256673.705699998885393 ], [ 360014.481200002133846, 256689.880399998277426 ], [ 360029.043399997055531, 256684.300000000745058 ], [ 360023.511600002646446, 256668.358300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105404070800", "MAP": "D9-5148-T91", "PARCEL_NAM": "16 & 18-3A of 1st AVENUE", "ACRE": "0.06", "LONGITUDE": -64.91961072, "LATITUDE": 18.33937631, "OBJECTID_1": 19359, "PARCEL_NO_": "105404070800", "Tax_Legal_": "16&18-3A 1ST DIVISION EST.THOMAS KINGS QTR", "Name": "HENDRICKS (LIFE ESTATE), EVAN", "Address": "PO Box 7974", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.819225205499997, "SHAPE_Area": 186.19948807899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360007.925200000405312, 256673.705699998885393 ], [ 360002.63459999859333, 256660.652499999850988 ], [ 359989.647299997508526, 256670.678700000047684 ], [ 359993.086400002241135, 256679.445500001311302 ], [ 360007.925200000405312, 256673.705699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404160600", "MAP": "D9-6831-T000", "PARCEL_NAM": "5B-1b", "ACRE": "103 sq ft", "LONGITUDE": -64.91982855000001, "LATITUDE": 18.33692886, "OBJECTID_1": 19573, "PARCEL_NO_": "105404160600", "Tax_Legal_": "5B-1b ESTATE THOMAS KINGS QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 23200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 16.165954792400001, "SHAPE_Area": 4.42934891171 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359980.997400000691414, 256395.830099999904633 ], [ 359975.947700001299381, 256401.525699999183416 ], [ 359977.065700002014637, 256402.019000001251698 ], [ 359980.997400000691414, 256395.830099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404160500", "MAP": "D9-7255-t003", "PARCEL_NAM": "5B-1a", "ACRE": "1,220 sq ft", "LONGITUDE": -64.91973777, "LATITUDE": 18.33685153, "OBJECTID_1": 19572, "PARCEL_NO_": "105404160500", "Tax_Legal_": "4F & 5B-1A ESTATE THOMAS KINGS QTR", "Name": "GOV. OF THE VI PROP & PROCURMNT", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1829400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.237431547299998, "SHAPE_Area": 100.61974072300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359980.997400000691414, 256395.830099999904633 ], [ 359977.065700002014637, 256402.019000001251698 ], [ 359979.127999998629093, 256402.929000001400709 ], [ 359997.940999999642372, 256383.328699998557568 ], [ 359994.30969999730587, 256380.815000001341105 ], [ 359980.997400000691414, 256395.830099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404160500", "MAP": "D9-7513-T005", "PARCEL_NAM": "4F", "ACRE": "0.098", "LONGITUDE": -64.91920605, "LATITUDE": 18.33616581, "OBJECTID_1": 19572, "PARCEL_NO_": "105404160500", "Tax_Legal_": "4F & 5B-1A ESTATE THOMAS KINGS QTR", "Name": "GOV. OF THE VI PROP & PROCURMNT", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1829400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.96243841199998, "SHAPE_Area": 605.981187901 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360092.528800003230572, 256237.809200000017881 ], [ 360085.139899998903275, 256244.426399998366833 ], [ 360079.319099999964237, 256254.083700001239777 ], [ 360077.599299997091293, 256265.989999998360872 ], [ 360071.513899996876717, 256275.118099998682737 ], [ 360055.771099999547005, 256298.930700000375509 ], [ 360036.059600003063679, 256329.093199998140335 ], [ 360022.301299996674061, 256346.158900000154972 ], [ 360013.966899998486042, 256358.197500001639128 ], [ 359994.30969999730587, 256380.815000001341105 ], [ 359997.940999999642372, 256383.328699998557568 ], [ 360013.622900001704693, 256364.360300000756979 ], [ 360030.961599998176098, 256341.828699998557568 ], [ 360055.650799997150898, 256305.537999998778105 ], [ 360071.990800000727177, 256281.040600001811981 ], [ 360083.654200002551079, 256256.489799998700619 ], [ 360092.528800003230572, 256237.809200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105404170300", "MAP": "A9-605-T003", "PARCEL_NAM": "1aa ROW", "ACRE": "10,208 sq ft", "LONGITUDE": -64.91847858, "LATITUDE": 18.33467787, "OBJECTID_1": 19578, "PARCEL_NO_": "105404170300", "Tax_Legal_": "1a-a ESTATE THOMAS 6B NEW QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.35233134399999, "SHAPE_Area": 333.25620746700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360113.112099997699261, 256117.381499998271465 ], [ 360119.932700000703335, 256128.274099998176098 ], [ 360127.208800002932549, 256162.934599999338388 ], [ 360124.827500000596046, 256178.2804000005126 ], [ 360120.594200000166893, 256192.832600001245737 ], [ 360118.74210000038147, 256195.346099998801947 ], [ 360115.037900000810623, 256193.229400001466274 ], [ 360113.284800000488758, 256196.391800001263618 ], [ 360120.248400002717972, 256201.00899999961257 ], [ 360126.029200002551079, 256185.013199999928474 ], [ 360128.57940000295639, 256169.624200001358986 ], [ 360128.70889999717474, 256154.426500000059605 ], [ 360123.355999998748302, 256120.185600001364946 ], [ 360120.971199996769428, 256116.155299998819828 ], [ 360118.872800000011921, 256113.833799999207258 ], [ 360113.112099997699261, 256117.381499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105404170400", "MAP": null, "PARCEL_NAM": "2a", "ACRE": "0.04", "LONGITUDE": -64.92153704, "LATITUDE": 18.33287216, "OBJECTID_1": 19579, "PARCEL_NO_": "105404170400", "Tax_Legal_": "2a ESTATE THOMAS KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.24050733199999, "SHAPE_Area": 465.24266141300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359823.270599998533726, 255920.886799998581409 ], [ 359818.667300000786781, 255916.941899999976158 ], [ 359779.459100000560284, 255975.938200000673532 ], [ 359785.423199996352196, 255979.953200001269579 ], [ 359823.270599998533726, 255920.886799998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404181500", "MAP": "D9-2603-T84", "PARCEL_NAM": "13-A", "ACRE": "0.115", "LONGITUDE": -64.91921465, "LATITUDE": 18.33240898, "OBJECTID_1": 19590, "PARCEL_NO_": "105404181500", "Tax_Legal_": "13-A EST. THOMAS 6H NEW QTR.", "Name": "UNLIMITED HOLDINGS, INC.", "Address": "PO Box 9109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 107800, "Improved_V": 52400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.62421081700001, "SHAPE_Area": 684.23082025799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360029.386399999260902, 255886.791400000452995 ], [ 360046.827200002968311, 255922.261900000274181 ], [ 360048.444799996912479, 255921.355599999427795 ], [ 360060.65820000320673, 255907.523400001227856 ], [ 360059.106700003147125, 255900.333500001579523 ], [ 360056.012699998915195, 255884.898400001227856 ], [ 360029.386399999260902, 255886.791400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404192000", "MAP": "D9-7282-T003", "PARCEL_NAM": "14-94A", "ACRE": "0.17", "LONGITUDE": -64.91708858, "LATITUDE": 18.33643374, "OBJECTID_1": 19613, "PARCEL_NO_": "105404192000", "Tax_Legal_": "14-94A ESTATE THOMAS 6H NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.034740606200003, "SHAPE_Area": 154.57688968599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360280.99549999833107, 256357.478399999439716 ], [ 360267.463100001215935, 256343.7010000012815 ], [ 360268.190700002014637, 256341.782800000160933 ], [ 360260.967699997127056, 256335.643300000578165 ], [ 360256.946400001645088, 256340.816199999302626 ], [ 360276.145000003278255, 256358.916299998760223 ], [ 360278.564000003039837, 256358.936099998652935 ], [ 360280.99549999833107, 256357.478399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501010200", "MAP": "B9-383-T73", "PARCEL_NAM": "2A-3", "ACRE": "0.83", "LONGITUDE": -64.91510488, "LATITUDE": 18.34738542, "OBJECTID_1": 19639, "PARCEL_NO_": "105501010200", "Tax_Legal_": "2A-3 & POR.OF 3A ST.JOSEPH&ROSENAL No.4 GREAT NORTHSIDE QTR.", "Name": "ELGADI, JARRAH", "Address": "46B Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022603, "Country": "United States", "Land_Value": 651800, "Improved_V": 486000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.792206206, "SHAPE_Area": 3782.6829519100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360523.756899997591972, 257552.378699999302626 ], [ 360514.394900001585484, 257529.377300001680851 ], [ 360500.814900003373623, 257528.160000000149012 ], [ 360477.26969999819994, 257528.9695999994874 ], [ 360455.09570000320673, 257545.347600001841784 ], [ 360449.856899999082088, 257549.217000000178814 ], [ 360415.804700002074242, 257570.892000000923872 ], [ 360434.935099996626377, 257597.013099998235703 ], [ 360442.573700003325939, 257607.596599999815226 ], [ 360491.231200002133846, 257561.299400001764297 ], [ 360523.756899997591972, 257552.378699999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501015000", "MAP": "A9-97-T68", "PARCEL_NAM": "2A & 3A REM", "ACRE": "1.80", "LONGITUDE": -64.91506789, "LATITUDE": 18.34787268, "OBJECTID_1": 19702, "PARCEL_NO_": "105501015000", "Tax_Legal_": "2A REM. ST. JOSEPH & ROSENDAHL POR OF 47 EST.THOMAS", "Name": "ELGADI, JARRAH", "Address": "46B Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022603, "Country": "United States", "Land_Value": 84300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.08206554200001, "SHAPE_Area": 1866.3925183900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360500.073700003325939, 257617.811200000345707 ], [ 360467.918999999761581, 257583.480700001120567 ], [ 360442.573700003325939, 257607.596599999815226 ], [ 360450.874300003051758, 257619.097300000488758 ], [ 360454.86089999973774, 257624.407200001180172 ], [ 360473.226899996399879, 257649.25 ], [ 360500.073700003325939, 257617.811200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501015100", "MAP": "D9-1823-T81", "PARCEL_NAM": "3AC", "ACRE": "1.80", "LONGITUDE": -64.91455814, "LATITUDE": 18.34746007, "OBJECTID_1": 19703, "PARCEL_NO_": "105501015100", "Tax_Legal_": "2A-4 & 3-AC ST JOSEPH & ROSENDAL GT. NORTHSIDE", "Name": "ELGADI, JARRAH", "Address": "46B Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022603, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.988911472599995, "SHAPE_Area": 245.398709336 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360531.856200002133846, 257578.596799999475479 ], [ 360531.05120000243187, 257570.299800001084805 ], [ 360523.756899997591972, 257552.378699999302626 ], [ 360519.561899997293949, 257553.529199998825788 ], [ 360523.708499997854233, 257588.451499998569489 ], [ 360531.856200002133846, 257578.596799999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501015000", "MAP": "A9-97-T68", "PARCEL_NAM": "3AD", "ACRE": "1.80", "LONGITUDE": -64.91449413, "LATITUDE": 18.3475053, "OBJECTID_1": 19702, "PARCEL_NO_": "105501015000", "Tax_Legal_": "2A REM. ST. JOSEPH & ROSENDAHL POR OF 47 EST.THOMAS", "Name": "ELGADI, JARRAH", "Address": "46B Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022603, "Country": "United States", "Land_Value": 84300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17.6288261511, "SHAPE_Area": 7.7012228929699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360531.05120000243187, 257570.299800001084805 ], [ 360531.856200002133846, 257578.596799999475479 ], [ 360533.488600000739098, 257576.288199998438358 ], [ 360531.05120000243187, 257570.299800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501015400", "MAP": "D9-3954-T87", "PARCEL_NAM": "4B-1", "ACRE": "0.50", "LONGITUDE": -64.91072262, "LATITUDE": 18.3469911, "OBJECTID_1": 19706, "PARCEL_NO_": "105501015400", "Tax_Legal_": "4B-1 ST.JOSEPH&ROSEDAHL GT.NORTHSIDE", "Name": "YUSUF, NAJAH F. & DAAS, ABDELGADER M.", "Address": "PO Box 502454", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 91700, "Improved_V": 31800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.25003373499999, "SHAPE_Area": 2280.0030967299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360949.112899996340275, 257487.528000000864267 ], [ 360947.471400000154972, 257487.807799998670816 ], [ 360913.7871999964118, 257491.794900000095367 ], [ 360911.899099998176098, 257550.043299999088049 ], [ 360930.410099998116493, 257554.205600000917912 ], [ 360938.476800002157688, 257553.849399998784065 ], [ 360944.939900003373623, 257552.424600001424551 ], [ 360948.98759999871254, 257550.935400001704693 ], [ 360949.112899996340275, 257487.528000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502011300", "MAP": "D9-3366-T86", "PARCEL_NAM": "226-A", "ACRE": "0.32", "LONGITUDE": -64.90202209, "LATITUDE": 18.34749158, "OBJECTID_1": 19798, "PARCEL_NO_": "105502011300", "Tax_Legal_": "226-A WINTBERG No.3 GREAT NORTHSIDE QTR", "Name": "DESMORNES, MARIE & JOSEPH DESMORNES", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43000, "Improved_V": 165000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.12235512000001, "SHAPE_Area": 1309.1205438699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361823.826300002634525, 257595.609700001776218 ], [ 361829.162399999797344, 257599.0625 ], [ 361845.240699999034405, 257605.232599999755621 ], [ 361851.647600002586842, 257606.075100000947714 ], [ 361864.326800003647804, 257607.817699998617172 ], [ 361864.247699998319149, 257546.860599998384714 ], [ 361823.826300002634525, 257595.609700001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014700", "MAP": "D9-3366-T85", "PARCEL_NAM": "226-B", "ACRE": "0.30", "LONGITUDE": -64.90223162, "LATITUDE": 18.34737651, "OBJECTID_1": 19844, "PARCEL_NO_": "105502014700", "Tax_Legal_": "WINTBERG ESTATE 226-B GT. NORTHSIDE", "Name": "FARRELL, JAMES", "Address": "12A-20 Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.08245455700001, "SHAPE_Area": 1174.7971823299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361809.080300003290176, 257586.094999998807907 ], [ 361821.066100001335144, 257593.823800001293421 ], [ 361823.826300002634525, 257595.609700001776218 ], [ 361864.247599996626377, 257546.86089999973774 ], [ 361801.509099997580051, 257569.2043999992311 ], [ 361805.104500003159046, 257579.5185999982059 ], [ 361809.080300003290176, 257586.094999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014800", "MAP": "D9-3435-T86", "PARCEL_NAM": "225-2", "ACRE": "0.48", "LONGITUDE": -64.90212705, "LATITUDE": 18.3467342, "OBJECTID_1": 19845, "PARCEL_NO_": "105502014800", "Tax_Legal_": "WINTBERG ESTATE 225-2 GT. NORTHSIDE", "Name": "VIDA JOHN (LIFE ESTATE)", "Address": "6837 UPPER WINTBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023225, "Country": "United States", "Land_Value": 78900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.73215516900001, "SHAPE_Area": 1715.23383917 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361801.830200001597404, 257506.74040000140667 ], [ 361870.847699999809265, 257518.437699999660254 ], [ 361875.951999999582767, 257492.758499998599291 ], [ 361809.020099997520447, 257483.818999998271465 ], [ 361801.830200001597404, 257506.74040000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502023400", "MAP": "D9-2322-T83", "PARCEL_NAM": "1-V-1A", "ACRE": "0.55", "LONGITUDE": -64.90349319000001, "LATITUDE": 18.34475365, "OBJECTID_1": 19879, "PARCEL_NO_": "105502023400", "Tax_Legal_": "1V-1A ESTATE WINTBERG NO.3 GREAT NORTHSIDE QTR.", "Name": "HUNT, JAMES7RUTH A. D", "Address": "PO Box 8013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67000, "Improved_V": 281800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.93625924, "SHAPE_Area": 1932.8337661200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361717.882700003683567, 257277.790899999439716 ], [ 361709.003100000321865, 257245.869800001382828 ], [ 361703.915100000798702, 257247.062399998307228 ], [ 361692.61599999666214, 257248.2364999987185 ], [ 361686.683600001037121, 257256.636700000613928 ], [ 361681.80179999768734, 257263.549400001764297 ], [ 361680.743500001728535, 257299.7972999997437 ], [ 361679.259499996900558, 257313.298300001770258 ], [ 361685.534299999475479, 257322.272399999201298 ], [ 361692.074699997901917, 257311.771200001239777 ], [ 361702.648500002920628, 257301.092000000178814 ], [ 361711.573700003325939, 257294.621100001037121 ], [ 361720.393299996852875, 257289.660199999809265 ], [ 361717.882700003683567, 257277.790899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502040200", "MAP": "A9-369-T89", "PARCEL_NAM": "1-1", "ACRE": "2.16", "LONGITUDE": -64.90184688, "LATITUDE": 18.33516201, "OBJECTID_1": 19908, "PARCEL_NO_": "105502040200", "Tax_Legal_": "DONOE ESTATE 1-1 NEW QTR", "Name": "MARKET SQUARE EAST INC.", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 236500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1437.0132249000001, "SHAPE_Area": 6003.9644139800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361972.382500000298023, 256188.268100000917912 ], [ 362016.700300000607967, 256184.299400001764297 ], [ 362092.106700003147125, 256205.466099999845028 ], [ 362145.684900000691414, 256223.325500000268221 ], [ 362201.076700001955032, 256230.378299999982119 ], [ 362199.681500002741814, 256223.516600001603365 ], [ 362194.87950000166893, 256219.255399998277426 ], [ 362163.460299998521805, 256215.831799998879433 ], [ 362140.919600002467632, 256211.425500001758337 ], [ 362120.806699998676777, 256205.983500000089407 ], [ 362057.303999997675419, 256182.454599998891354 ], [ 362036.38120000064373, 256177.428199999034405 ], [ 362013.012599997222424, 256175.548200000077486 ], [ 362001.72240000218153, 256175.666900001466274 ], [ 361985.579999998211861, 256177.434599999338388 ], [ 361789.295400001108646, 256216.991300001740456 ], [ 361781.250500001013279, 256219.121199999004602 ], [ 361771.018100000917912, 256221.830200001597404 ], [ 361717.366300001740456, 256236.034299999475479 ], [ 361701.999700002372265, 256241.396999999880791 ], [ 361676.13289999961853, 256248.784699998795986 ], [ 361651.085100002586842, 256254.701400000602007 ], [ 361610.701099999248981, 256262.392400000244379 ], [ 361604.44820000231266, 256263.418299999088049 ], [ 361506.534000001847744, 256279.482799999415874 ], [ 361507.710699997842312, 256286.645899999886751 ], [ 361532.511799998581409, 256282.856899999082088 ], [ 361606.081200003623962, 256269.731800001114607 ], [ 361673.402699999511242, 256257.721400000154972 ], [ 361729.626800000667572, 256240.523400001227856 ], [ 361772.614699997007847, 256230.123100001364946 ], [ 361782.820500001311302, 256227.653999999165535 ], [ 361811.647799998521805, 256220.67960000038147 ], [ 361972.382500000298023, 256188.268100000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105502049900", "MAP": null, "PARCEL_NAM": "ROAD #1", "ACRE": "1.71", "LONGITUDE": -64.90639874, "LATITUDE": 18.34074852, "OBJECTID_1": 19950, "PARCEL_NO_": "105502049900", "Tax_Legal_": "ROAD#1 THROUGH RAPHUNE NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 105000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1615.4255087500001, "SHAPE_Area": 6885.57368425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361230.982699997723103, 256544.136900000274181 ], [ 361252.801100000739098, 256567.105099998414516 ], [ 361290.739600002765656, 256610.473299998790026 ], [ 361301.560300000011921, 256630.302999999374151 ], [ 361308.706000000238419, 256654.858800001442432 ], [ 361314.485200002789497, 256673.854600001126528 ], [ 361316.701899997889996, 256681.140700001269579 ], [ 361321.27139999717474, 256703.526200000196695 ], [ 361326.33049999922514, 256719.039599999785423 ], [ 361332.261399999260902, 256733.700800001621246 ], [ 361338.823100000619888, 256748.059399999678135 ], [ 361343.301600001752377, 256757.859200000762939 ], [ 361345.151000000536442, 256765.576999999582767 ], [ 361354.648800000548363, 256786.552999999374151 ], [ 361363.464199997484684, 256792.957899998873472 ], [ 361373.05009999871254, 256803.591099999845028 ], [ 361381.822400003671646, 256815.061900001019239 ], [ 361397.016500003635883, 256829.962799999862909 ], [ 361398.623700000345707, 256830.609299998730421 ], [ 361405.031099997460842, 256835.727899998426437 ], [ 361416.281700000166893, 256840.252999998629093 ], [ 361428.367399998009205, 256841.407400000840425 ], [ 361438.865599997341633, 256839.593499999493361 ], [ 361448.559299997985363, 256837.561900001019239 ], [ 361467.154899999499321, 256831.803399998694658 ], [ 361471.989200003445148, 256832.2652000002563 ], [ 361476.000900000333786, 256834.620099999010563 ], [ 361479.18299999833107, 256839.71229999884963 ], [ 361482.055799998342991, 256881.110199999064207 ], [ 361483.495800003409386, 256901.386999998241663 ], [ 361482.599600002169609, 256911.934300001710653 ], [ 361479.271899998188019, 256923.939399998635054 ], [ 361476.003499999642372, 256928.978900000452995 ], [ 361467.864799998700619, 256937.778200000524521 ], [ 361452.347099997103214, 256960.871500000357628 ], [ 361449.64360000193119, 256966.241500001400709 ], [ 361435.942100003361702, 256993.456700000911951 ], [ 361432.644900001585484, 257001.873500000685453 ], [ 361429.816100001335144, 257008.345300000160933 ], [ 361422.267800003290176, 257013.833700001239777 ], [ 361415.570299997925758, 257018.410100001841784 ], [ 361422.017200000584126, 257018.885099999606609 ], [ 361432.703199997544289, 257015.062199998646975 ], [ 361440.597800001502037, 257019.125100001692772 ], [ 361443.695900000631809, 257029.828299999237061 ], [ 361444.040100000798702, 257084.082100000232458 ], [ 361442.47410000115633, 257095.754700001329184 ], [ 361440.361100003123283, 257117.200599998235703 ], [ 361439.675899997353554, 257123.098700001835823 ], [ 361442.807599999010563, 257134.101199999451637 ], [ 361443.561800003051758, 257140.229100000113249 ], [ 361442.634999997913837, 257154.364799998700619 ], [ 361451.609099999070168, 257155.010299999266863 ], [ 361450.478000000119209, 257085.612500000745058 ], [ 361452.220100000500679, 257070.427999999374151 ], [ 361451.921700000762939, 257052.401700001209974 ], [ 361450.835900001227856, 257043.607799999415874 ], [ 361449.354500003159046, 257028.1858000010252 ], [ 361442.237999998033047, 257011.662300001829863 ], [ 361441.489200003445148, 257004.901200000196695 ], [ 361444.78999999910593, 256996.062300000339746 ], [ 361448.074600003659725, 256989.123100001364946 ], [ 361450.520499996840954, 256985.976700000464916 ], [ 361459.698299996554852, 256966.631599999964237 ], [ 361461.194899998605251, 256963.477000001817942 ], [ 361463.638999998569489, 256960.541700001806021 ], [ 361477.522600002586842, 256939.968199998140335 ], [ 361483.213500000536442, 256934.526299998164177 ], [ 361488.954800002276897, 256923.174300000071526 ], [ 361491.449299998581409, 256914.32880000025034 ], [ 361492.368900001049042, 256901.037399999797344 ], [ 361490.869099996984005, 256878.846799999475479 ], [ 361488.072300001978874, 256837.463100001215935 ], [ 361487.283900000154972, 256835.34569999948144 ], [ 361483.30629999935627, 256828.98030000180006 ], [ 361479.301700003445148, 256825.781100001186132 ], [ 361476.090899996459484, 256824.066100001335144 ], [ 361472.811700001358986, 256823.302000001072884 ], [ 361470.457500003278255, 256822.753400001674891 ], [ 361464.811499997973442, 256822.918299999088049 ], [ 361449.448399998247623, 256827.858800001442432 ], [ 361430.0591000020504, 256832.133099999278784 ], [ 361422.086800001561642, 256831.746599998325109 ], [ 361419.580600000917912, 256831.625199999660254 ], [ 361412.343599997460842, 256829.243900001049042 ], [ 361393.123400002717972, 256813.67680000141263 ], [ 361388.328699998557568, 256808.571299999952316 ], [ 361377.1554000005126, 256794.969799999147654 ], [ 361365.20269999653101, 256778.195599999278784 ], [ 361362.029600001871586, 256772.047899998724461 ], [ 361359.632299996912479, 256769.495200000703335 ], [ 361358.053800001740456, 256765.471500001847744 ], [ 361354.862700000405312, 256761.434599999338388 ], [ 361341.392800003290176, 256733.46000000089407 ], [ 361339.796300001442432, 256731.547100000083447 ], [ 361337.44030000269413, 256724.139499999582767 ], [ 361335.847499996423721, 256721.804499998688698 ], [ 361335.867299996316433, 256719.482599999755621 ], [ 361322.799500003457069, 256674.23200000077486 ], [ 361322.627099998295307, 256673.635000001639128 ], [ 361321.109499998390675, 256668.379900000989437 ], [ 361318.635499998927116, 256659.813200000673532 ], [ 361318.060000002384186, 256658.581199999898672 ], [ 361317.051600001752377, 256656.422699999064207 ], [ 361316.28490000218153, 256651.772399999201298 ], [ 361309.990800000727177, 256633.355700001120567 ], [ 361308.396200001239777, 256631.231800001114607 ], [ 361304.454499997198582, 256620.644799999892712 ], [ 361302.856299996376038, 256618.942999999970198 ], [ 361299.693999998271465, 256611.528799999505281 ], [ 361286.951200000941753, 256592.848299998790026 ], [ 361285.347599998116493, 256591.779699999839067 ], [ 361261.424400001764297, 256560.342099998146296 ], [ 361255.828699998557568, 256554.596700001507998 ], [ 361246.212300002574921, 256547.551899999380112 ], [ 361228.631700001657009, 256528.831799998879433 ], [ 361224.684600003063679, 256518.878100000321865 ], [ 361230.982699997723103, 256544.136900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105503012100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91130455, "LATITUDE": 18.33845057, "OBJECTID_1": 19973, "PARCEL_NO_": "105503012100", "Tax_Legal_": "6M-C EST. THOMAS NEW QTR", "Name": "MARKS, JOHNNIE", "Address": "4031 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.70261033899999, "SHAPE_Area": 1593.5590219200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360917.682700000703335, 256590.600999999791384 ], [ 360909.758799999952316, 256570.762699998915195 ], [ 360871.351000003516674, 256577.082299999892712 ], [ 360865.937299996614456, 256541.972899999469519 ], [ 360862.503300003707409, 256542.143899999558926 ], [ 360850.867799997329712, 256542.723600000143051 ], [ 360855.725599996745586, 256579.668200001120567 ], [ 360857.607299998402596, 256594.866500001400709 ], [ 360917.682700000703335, 256590.600999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105503012100", "MAP": "D9-3120-T85", "PARCEL_NAM": "6M ROW", "ACRE": null, "LONGITUDE": -64.91157053000001, "LATITUDE": 18.3382507, "OBJECTID_1": 19973, "PARCEL_NO_": "105503012100", "Tax_Legal_": "6M-C EST. THOMAS NEW QTR", "Name": "MARKS, JOHNNIE", "Address": "4031 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.846329578, "SHAPE_Area": 451.10581178899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360846.327799998223782, 256508.195700000971556 ], [ 360841.75450000166893, 256507.722500000149012 ], [ 360850.207099996507168, 256580.58559999987483 ], [ 360851.910700000822544, 256595.271000001579523 ], [ 360857.607299998402596, 256594.866500001400709 ], [ 360855.725599996745586, 256579.668200001120567 ], [ 360846.327799998223782, 256508.195700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105503015700", "MAP": "D9-3120-T85", "PARCEL_NAM": "6M-E", "ACRE": "0.18", "LONGITUDE": -64.911131, "LATITUDE": 18.3380021, "OBJECTID_1": 19985, "PARCEL_NO_": "105503015700", "Tax_Legal_": "6M-E & 6M-D EST. THOMAS 6M NEW QTR.", "Name": "CASTILLO, AMERIGO & WILKINSON, L., F., & OTHERS", "Address": "128 W Alma Ave", "City": "Lake Mary", "State": "Florida", "Zip": 32746, "Country": "United States", "Land_Value": 84200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.59936345599999, "SHAPE_Area": 997.75018472900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360894.123499996960163, 256513.00620000064373 ], [ 360877.600299999117851, 256511.38289999961853 ], [ 360878.152500003576279, 256520.989900000393391 ], [ 360879.320100001990795, 256541.306099999696016 ], [ 360910.727200001478195, 256539.881999999284744 ], [ 360912.512199997901917, 256531.521899998188019 ], [ 360914.976099997758865, 256526.264699999243021 ], [ 360917.420199997723103, 256523.3293999992311 ], [ 360918.2516999989748, 256520.380899999290705 ], [ 360922.321000002324581, 256515.981199998408556 ], [ 360894.123499996960163, 256513.00620000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105503015700", "MAP": "D9-3120-T85", "PARCEL_NAM": "6M-D", "ACRE": "0.204", "LONGITUDE": -64.91144486, "LATITUDE": 18.33799997, "OBJECTID_1": 19985, "PARCEL_NO_": "105503015700", "Tax_Legal_": "6M-E & 6M-D EST. THOMAS 6M NEW QTR.", "Name": "CASTILLO, AMERIGO & WILKINSON, L., F., & OTHERS", "Address": "128 W Alma Ave", "City": "Lake Mary", "State": "Florida", "Zip": 32746, "Country": "United States", "Land_Value": 84200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.719850042, "SHAPE_Area": 959.03242785099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360868.341300003230572, 256510.473200000822544 ], [ 360846.327799998223782, 256508.195700000971556 ], [ 360850.867799997329712, 256542.723600000143051 ], [ 360862.503300003707409, 256542.143899999558926 ], [ 360871.517899997532368, 256541.69480000063777 ], [ 360879.320100001990795, 256541.306099999696016 ], [ 360878.152500003576279, 256520.989900000393391 ], [ 360877.600299999117851, 256511.38289999961853 ], [ 360868.341300003230572, 256510.473200000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503027200", "MAP": "D9-4130-T87", "PARCEL_NAM": "14PR-1", "ACRE": "0.08", "LONGITUDE": -64.91090346, "LATITUDE": 18.33497764, "OBJECTID_1": 20061, "PARCEL_NO_": "105503027200", "Tax_Legal_": "14PR-1 EST. THOMAS 6E NEW QTR", "Name": "LAMBERTIS, LUCIA D. TODMAN", "Address": "PO BOX 306933", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.111915617899996, "SHAPE_Area": 341.57155077499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360921.1216000020504, 256183.499099999666214 ], [ 360909.279200002551079, 256183.057599999010563 ], [ 360916.279600001871586, 256198.777699999511242 ], [ 360917.763300001621246, 256199.092500001192093 ], [ 360932.517099998891354, 256203.084499999880791 ], [ 360933.306000001728535, 256184.0456000007689 ], [ 360921.1216000020504, 256183.499099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503036100", "MAP": "G9-2205-T73", "PARCEL_NAM": "14N-9", "ACRE": "0.12", "LONGITUDE": -64.91005936000001, "LATITUDE": 18.33409163, "OBJECTID_1": 20114, "PARCEL_NO_": "105503036100", "Tax_Legal_": "EST THOMAS 14N-9 6E NEW QTR", "Name": "BROWN, JAMES", "Address": "PO Box 307195", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27500, "Improved_V": 197100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.176599223, "SHAPE_Area": 569.17495366200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361021.049699999392033, 256096.079799998551607 ], [ 361016.690600000321865, 256074.178100001066923 ], [ 360998.928700000047684, 256079.58390000090003 ], [ 361004.154899999499321, 256091.508600000292063 ], [ 361005.729800000786781, 256095.9543999992311 ], [ 361008.123499996960163, 256098.929299999028444 ], [ 361012.858900003135204, 256111.000399999320507 ], [ 361015.324400000274181, 256118.434999998658895 ], [ 361023.860500000417233, 256115.874200001358986 ], [ 361022.547200001776218, 256109.602099999785423 ], [ 361021.049699999392033, 256096.079799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105503013400", "MAP": "D9-5276-T92", "PARCEL_NAM": "1B", "ACRE": "0.03", "LONGITUDE": -64.91554844, "LATITUDE": 18.33941047, "OBJECTID_1": 19979, "PARCEL_NO_": "105503013400", "Tax_Legal_": "THOMAS ESTATE 1B&1A-1A-10th ST. 6A NEW QTR", "Name": "LOCKHART GARDENS, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.555242937000003, "SHAPE_Area": 129.66256201 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360444.927299998700619, 256671.088799998164177 ], [ 360411.019100002944469, 256681.569499999284744 ], [ 360412.06700000166893, 256684.479600001126528 ], [ 360414.484099999070168, 256684.710499998182058 ], [ 360446.021999999880791, 256674.202799998223782 ], [ 360444.927299998700619, 256671.088799998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503043600", "MAP": "G9-2936-T79", "PARCEL_NAM": "13B", "ACRE": "0.28", "LONGITUDE": -64.909724, "LATITUDE": 18.33949664, "OBJECTID_1": 20160, "PARCEL_NO_": "105503043600", "Tax_Legal_": "13B EST THOMAS NEW QTR", "Name": "HUYGHUE, CHERYL", "Address": "PO Box 9565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.192321933, "SHAPE_Area": 682.84998102899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361041.36540000140667, 256670.564599998295307 ], [ 361028.706500001251698, 256706.926199998706579 ], [ 361049.673100002110004, 256711.651799999177456 ], [ 361054.715999998152256, 256687.628400001674891 ], [ 361058.790700003504753, 256682.595499999821186 ], [ 361041.36540000140667, 256670.564599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503043900", "MAP": "D9-6984-T001", "PARCEL_NAM": "4-1", "ACRE": "0.31", "LONGITUDE": -64.9096146, "LATITUDE": 18.336667, "OBJECTID_1": 20163, "PARCEL_NO_": "105503043900", "Tax_Legal_": "THOMAS ESTATE 4-1 6A NEW QTR.", "Name": "SMITH, SHELLY", "Address": "PO Box 7505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.658357575, "SHAPE_Area": 2391.3898194200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361076.863600000739098, 256359.267499998211861 ], [ 361044.355700001120567, 256343.254999998956919 ], [ 361037.340000003576279, 256360.924499999731779 ], [ 361035.709399998188019, 256363.022100001573563 ], [ 361031.555500000715256, 256377.342399999499321 ], [ 361029.829599998891354, 256390.627199999988079 ], [ 361092.738600000739098, 256420.78319999948144 ], [ 361078.451099999248981, 256398.161299999803305 ], [ 361076.863600000739098, 256359.267499998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503042900", "MAP": "D9-6984-T001", "PARCEL_NAM": "4 REM", "ACRE": "0.302", "LONGITUDE": -64.90952262, "LATITUDE": 18.3361826, "OBJECTID_1": 20153, "PARCEL_NO_": "105503042900", "Tax_Legal_": "THOMAS ESTATE 4 REMAINDER 6A NEW QUARTER", "Name": "SMITH, BLANCA", "Address": "PO Box 7505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.887036962, "SHAPE_Area": 1579.3968085 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361044.355700001120567, 256343.254999998956919 ], [ 361076.863600000739098, 256359.267499998211861 ], [ 361082.816699996590614, 256310.054900001734495 ], [ 361090.550700001418591, 256290.875199999660254 ], [ 361084.699500001966953, 256291.651200000196695 ], [ 361069.307599999010563, 256299.969000000506639 ], [ 361064.4391999989748, 256303.517700001597404 ], [ 361057.925700001418591, 256310.852699998766184 ], [ 361055.468999996781349, 256315.265500001609325 ], [ 361044.355700001120567, 256343.254999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503045100", "MAP": "A9-497-T96", "PARCEL_NAM": "4-B", "ACRE": null, "LONGITUDE": -64.90896896, "LATITUDE": 18.33717174, "OBJECTID_1": 20165, "PARCEL_NO_": "105503045100", "Tax_Legal_": "THOMAS ESTATE 4B 6A NEW QUARTER", "Name": "SMITH, BLANKA", "Address": "PO Box 7505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 186200, "Improved_V": 402900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.674026215, "SHAPE_Area": 1407.5308736300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361133.649700000882149, 256414.274999998509884 ], [ 361092.738600000739098, 256420.78319999948144 ], [ 361114.83839999884367, 256445.362900000065565 ], [ 361144.506499998271465, 256465.026299998164177 ], [ 361151.079300001263618, 256450.72580000013113 ], [ 361143.113300003111362, 256439.261500000953674 ], [ 361139.95099999755621, 256431.84739999845624 ], [ 361138.354500003159046, 256429.934399999678135 ], [ 361133.649700000882149, 256414.274999998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503044000", "MAP": "D9-6984-T001", "PARCEL_NAM": "4-2", "ACRE": "0.327", "LONGITUDE": -64.90954513, "LATITUDE": 18.33701675, "OBJECTID_1": 20164, "PARCEL_NO_": "105503044000", "Tax_Legal_": "4-2 ESTATE THOMAS 6A NEW QTR.", "Name": "SMITH, EUGENE H", "Address": "PO Box 7505", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.46271971600001, "SHAPE_Area": 1563.63296064 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361092.738600000739098, 256420.78319999948144 ], [ 361029.829599998891354, 256390.627199999988079 ], [ 361032.07769999653101, 256410.699499998241663 ], [ 361032.813900001347065, 256418.938200000673532 ], [ 361084.279399998486042, 256435.613600000739098 ], [ 361114.83839999884367, 256445.362900000065565 ], [ 361092.738600000739098, 256420.78319999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503042300", "MAP": "D9-5706-T94", "PARCEL_NAM": "5 REM", "ACRE": null, "LONGITUDE": -64.90823692, "LATITUDE": 18.33792784, "OBJECTID_1": 20147, "PARCEL_NO_": "105503042300", "Tax_Legal_": "5 ESTATE THOMAS NEW QUARTER", "Name": "EDWARDS, JANETT", "Address": "Po Box 307158", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.28341270599999, "SHAPE_Area": 758.09865749799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361212.114100001752377, 256506.336800001561642 ], [ 361181.266000002622604, 256504.168400000780821 ], [ 361209.107500001788139, 256548.936999998986721 ], [ 361213.281199999153614, 256532.294799998402596 ], [ 361215.023299999535084, 256517.110300000756979 ], [ 361213.473600000143051, 256509.709300000220537 ], [ 361212.114100001752377, 256506.336800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503068700", "MAP": "D9-7017-T002", "PARCEL_NAM": "14-3A", "ACRE": "0.10", "LONGITUDE": -64.91543249, "LATITUDE": 18.33563083, "OBJECTID_1": 20287, "PARCEL_NO_": "105503068700", "Tax_Legal_": "14-3A ESTATE THOMAS #6E NEW QTR", "Name": "PICKERING, CHRISTINE EDA", "Address": "PO Box 7518", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.687694697200001, "SHAPE_Area": 469.84280215899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360456.218699999153614, 256252.676699999719858 ], [ 360434.537900000810623, 256246.950500000268221 ], [ 360430.180600002408028, 256262.018500000238419 ], [ 360440.596100002527237, 256269.914200000464916 ], [ 360452.649400003254414, 256274.868000000715256 ], [ 360456.218699999153614, 256252.676699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503082000", "MAP": "D9-6794-T000", "PARCEL_NAM": "14HC-3", "ACRE": "0.295", "LONGITUDE": -64.9118543, "LATITUDE": 18.33352567, "OBJECTID_1": 20370, "PARCEL_NO_": "105503082000", "Tax_Legal_": "14HC-3 ESTATE THOMAS\n6E NEW QTR", "Name": "Adolfo Solarte Cortez & Ana L Guerrero Castro", "Address": "Po Box 302543", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 69900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.316060244, "SHAPE_Area": 1441.87015417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360853.7449000030756, 256046.792300000786781 ], [ 360837.909400001168251, 256012.650199998170137 ], [ 360820.162100002169609, 256013.375700000673532 ], [ 360799.997100003063679, 256014.055100001394749 ], [ 360800.210100002586842, 256041.967099998146296 ], [ 360831.171800002455711, 256046.185300000011921 ], [ 360853.7449000030756, 256046.792300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105504012800", "MAP": "D9-6371-T98", "PARCEL_NAM": "5A-1", "ACRE": "0.50", "LONGITUDE": -64.90662428, "LATITUDE": 18.33528105, "OBJECTID_1": 20407, "PARCEL_NO_": "105504012800", "Tax_Legal_": "5A-1 ESTATE RAPHUNE NO. 5A NEW QUARTER", "Name": "IDHEILEH, JAWAD", "Address": "PO Box 5101", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 163400, "Improved_V": 164600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.914978029, "SHAPE_Area": 2509.6632340699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361394.919799998402596, 256197.905999999493361 ], [ 361349.038400001823902, 256204.50899999961257 ], [ 361353.571999996900558, 256250.366500001400709 ], [ 361397.805900000035763, 256264.027499999850988 ], [ 361394.919799998402596, 256197.905999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504031500", "MAP": "A9-568-T001", "PARCEL_NAM": "1-5-CA", "ACRE": "0.08", "LONGITUDE": -64.8991765, "LATITUDE": 18.33681772, "OBJECTID_1": 20436, "PARCEL_NO_": "105504031500", "Tax_Legal_": "1-5-CA ESTATE DONOE #2A NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 104600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.785401479, "SHAPE_Area": 98.645569374700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362171.114600002765656, 256372.363299999386072 ], [ 362158.242600001394749, 256406.633299998939037 ], [ 362154.668099999427795, 256441.995400000363588 ], [ 362157.661200001835823, 256423.289299998432398 ], [ 362162.684199996292591, 256401.587799999862909 ], [ 362171.114600002765656, 256372.363299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601012900", "MAP": "F9-3852-T80", "PARCEL_NAM": "232-A", "ACRE": ".50", "LONGITUDE": -64.89825012, "LATITUDE": 18.34733018, "OBJECTID_1": 20466, "PARCEL_NO_": "105601012900", "Tax_Legal_": "232-A ANNA'S RETREAT NO. 1 NEW QTR", "Name": "MARTIN, CALVERT A.,CELESTIN A.,ALONZO & MACKENLEY", "Address": "PO Box 303694", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.31662371100001, "SHAPE_Area": 1895.9892598199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362237.887299999594688, 257598.7483000010252 ], [ 362261.202299997210503, 257598.294700000435114 ], [ 362263.486199997365475, 257598.524399999529123 ], [ 362268.184500001370907, 257550.09569999948144 ], [ 362268.865000002086163, 257542.4070999994874 ], [ 362267.23480000346899, 257542.414599999785423 ], [ 362238.17849999666214, 257543.798200000077486 ], [ 362231.674699999392033, 257544.107900001108646 ], [ 362231.31360000371933, 257552.4679000005126 ], [ 362232.6554000005126, 257598.939599998295307 ], [ 362234.003100000321865, 257598.823899999260902 ], [ 362237.887299999594688, 257598.7483000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601010500", "MAP": "A9-85-T68", "PARCEL_NAM": "233", "ACRE": "0.75", "LONGITUDE": -64.8978489, "LATITUDE": 18.34733271, "OBJECTID_1": 20442, "PARCEL_NO_": "105601010500", "Tax_Legal_": "233 ANNAS RETREAT NEW QTR", "Name": "LEACOCK, L & E", "Address": "20 Whippoogwill Ln", "City": "Fort Mitchell", "State": "Alabama", "Zip": 36856, "Country": "United States", "Land_Value": 111200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.74358106, "SHAPE_Area": 2878.4333801100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362291.119199998676777, 257542.434000000357628 ], [ 362290.306500002741814, 257542.308800000697374 ], [ 362268.865000002086163, 257542.4070999994874 ], [ 362268.184500001370907, 257550.09569999948144 ], [ 362263.486199997365475, 257598.524399999529123 ], [ 362282.594700001180172, 257600.446199998259544 ], [ 362298.032399997115135, 257601.9989 ], [ 362303.324000000953674, 257603.374699998646975 ], [ 362323.234300002455711, 257558.913199998438358 ], [ 362327.15089999884367, 257549.249499998986721 ], [ 362321.209899999201298, 257547.071299999952316 ], [ 362291.119199998676777, 257542.434000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014400", "MAP": null, "PARCEL_NAM": "230A", "ACRE": "0.50", "LONGITUDE": -64.89983551, "LATITUDE": 18.34739907, "OBJECTID_1": 19841, "PARCEL_NO_": "105502014400", "Tax_Legal_": "WINTBERG ESTATE 230-A\nGT. NORTHSIDE", "Name": "Violet & Fadette Barbier& Jimmy & Faviola Barbier", "Address": "230 Wintberg 6817", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.021693102, "SHAPE_Area": 2037.3260015400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362089.73870000243187, 257547.097699999809265 ], [ 362071.018500000238419, 257545.431499999016523 ], [ 362066.026699997484684, 257568.490699999034405 ], [ 362058.333599999547005, 257604.027300000190735 ], [ 362072.367899999022484, 257606.523800000548363 ], [ 362087.881499998271465, 257609.751400001347065 ], [ 362092.921599999070168, 257594.291499998420477 ], [ 362099.737999998033047, 257573.383200000971556 ], [ 362107.2162000015378, 257550.444600000977516 ], [ 362089.73870000243187, 257547.097699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502014500", "MAP": "D9-4616-T88", "PARCEL_NAM": "229A", "ACRE": "0.50", "LONGITUDE": -64.90017066, "LATITUDE": 18.34735821, "OBJECTID_1": 19842, "PARCEL_NO_": "105502014500", "Tax_Legal_": "WINTBERG ESTATE 229-A GT. NORTHSIDE QTR.", "Name": "TURNBULL, E. & BLAKE, S , L & D", "Address": "PO Box 502746", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 83300, "Improved_V": 106300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.741662322, "SHAPE_Area": 2212.4298556099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362039.203199997544289, 257542.599800001829863 ], [ 362028.529700003564358, 257542.32039999961853 ], [ 362027.46339999884367, 257562.745799999684095 ], [ 362025.504000000655651, 257600.279199998825788 ], [ 362039.347800001502037, 257600.649999998509884 ], [ 362046.358499996364117, 257601.897100001573563 ], [ 362058.333599999547005, 257604.027300000190735 ], [ 362066.026699997484684, 257568.490699999034405 ], [ 362071.018500000238419, 257545.431499999016523 ], [ 362039.203199997544289, 257542.599800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105601045200", "MAP": "A9-651-T005", "PARCEL_NAM": "21", "ACRE": "0.17", "LONGITUDE": -64.8963923, "LATITUDE": 18.34218505, "OBJECTID_1": 20745, "PARCEL_NO_": "105601045200", "Tax_Legal_": "21 CHARLOTTE AMALIE NEW QTR", "Name": "PUBLIC WORK ACCT, AUTHORITY", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 344.983524026, "SHAPE_Area": 1074.93660404 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362461.040500000119209, 257087.840999998152256 ], [ 362446.753700003027916, 256923.853300001472235 ], [ 362439.108400002121925, 256925.404800001531839 ], [ 362440.356799997389317, 256936.449499998241663 ], [ 362455.973099999129772, 257091.097800001502037 ], [ 362461.040500000119209, 257087.840999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105601059400", "MAP": "D9-4288-t88", "PARCEL_NAM": "215-2-2A", "ACRE": null, "LONGITUDE": -64.89399706, "LATITUDE": 18.34804574, "OBJECTID_1": 20834, "PARCEL_NO_": "105601059400", "Tax_Legal_": "215-2-1 INCLUDING 215-2-2A ANNAS RETREAT No.1 NEW QTR.", "Name": "BLUE FIG LLC", "Address": "9B Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 94700, "Improved_V": 220300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.096562644400002, "SHAPE_Area": 59.0559804727 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362698.313199996948242, 257645.315000001341105 ], [ 362693.868500001728535, 257659.127700001001358 ], [ 362697.809600003063679, 257660.501299999654293 ], [ 362702.057099997997284, 257646.731800001114607 ], [ 362698.313199996948242, 257645.315000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105601050300", "MAP": "D9-4288-T88", "PARCEL_NAM": "215-2-2", "ACRE": "0.25", "LONGITUDE": -64.89400099, "LATITUDE": 18.34795381, "OBJECTID_1": 20748, "PARCEL_NO_": "105601050300", "Tax_Legal_": "ANNAS RETREAT 215-2REM&215-2-4A No.1 NEW QTR.", "Name": "EL-HAJ FAMILY TRUST & ASFOUR FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 185400, "Improved_V": 151700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.596260597, "SHAPE_Area": 1138.9303497000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362677.823600001633167, 257628.182500001043081 ], [ 362701.35700000077486, 257635.949700001627207 ], [ 362700.957000002264977, 257637.098900001496077 ], [ 362698.313199996948242, 257645.315000001341105 ], [ 362702.057099997997284, 257646.731800001114607 ], [ 362697.809600003063679, 257660.501299999654293 ], [ 362693.868500001728535, 257659.127700001001358 ], [ 362686.389499999582767, 257682.369899999350309 ], [ 362688.004799999296665, 257682.792199999094009 ], [ 362697.042700000107288, 257687.070900000631809 ], [ 362712.913199998438358, 257643.893699999898672 ], [ 362716.186200000345707, 257636.803199999034405 ], [ 362705.392700001597404, 257633.402499999850988 ], [ 362710.863399997353554, 257619.060499999672174 ], [ 362682.8091000020504, 257610.409699998795986 ], [ 362680.490099996328354, 257618.347199998795986 ], [ 362677.823600001633167, 257628.182500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105601059500", "MAP": "D9-4288-T88", "PARCEL_NAM": "215-2-1A", "ACRE": null, "LONGITUDE": -64.89407748000001, "LATITUDE": 18.34786322, "OBJECTID_1": 20835, "PARCEL_NO_": "105601059500", "Tax_Legal_": "215-2-1&215-2-1A ANNA'S RETREAT No.1 NEW QTR.", "Name": "BLUE FIG LLC", "Address": "9B Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75100, "Improved_V": 195900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.778979767599999, "SHAPE_Area": 28.3353470634 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362677.823600001633167, 257628.182500001043081 ], [ 362677.542199999094009, 257629.220400001853704 ], [ 362700.957000002264977, 257637.098900001496077 ], [ 362701.35700000077486, 257635.949700001627207 ], [ 362677.823600001633167, 257628.182500001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105601059500", "MAP": "D9-4288-T88", "PARCEL_NAM": "215-2-1", "ACRE": "0.256", "LONGITUDE": -64.89414401000001, "LATITUDE": 18.34807393, "OBJECTID_1": 20835, "PARCEL_NO_": "105601059500", "Tax_Legal_": "215-2-1&215-2-1A ANNA'S RETREAT No.1 NEW QTR.", "Name": "BLUE FIG LLC", "Address": "9B Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75100, "Improved_V": 195900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.89352518199999, "SHAPE_Area": 1139.4024123500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362677.542199999094009, 257629.220400001853704 ], [ 362664.672100000083447, 257676.690699998289347 ], [ 362686.389499999582767, 257682.369899999350309 ], [ 362700.957000002264977, 257637.098900001496077 ], [ 362677.542199999094009, 257629.220400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601070200", "MAP": "D9-2164-T82", "PARCEL_NAM": "239A", "ACRE": "0.37", "LONGITUDE": -64.89539435, "LATITUDE": 18.3478508, "OBJECTID_1": 20875, "PARCEL_NO_": "105601070200", "Tax_Legal_": "239A ANNAS RETREAT NEW QTR.", "Name": "BRATHWAITE, CECILY", "Address": "PO Box 503133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 60800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.32825408100001, "SHAPE_Area": 1580.4070035499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362536.936800003051758, 257597.908700000494719 ], [ 362538.92849999666214, 257661.104899998754263 ], [ 362564.811599999666214, 257661.519000001251698 ], [ 362561.314099997282028, 257598.7956000007689 ], [ 362536.936800003051758, 257597.908700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602019400", "MAP": "D9-1351-T77", "PARCEL_NAM": "14-1A", "ACRE": "0.02", "LONGITUDE": -64.88366896, "LATITUDE": 18.34858637, "OBJECTID_1": 21007, "PARCEL_NO_": "105602019400", "Tax_Legal_": "ANNAS RETREAT 14-1A & 14-6A NEW QTR", "Name": "CASSIA REALTY CORP.", "Address": "P.O. BOX 4092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.571662350899999, "SHAPE_Area": 80.109180172199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363800.672200001776218, 257708.688000001013279 ], [ 363798.771799996495247, 257707.314100001007318 ], [ 363798.145999997854233, 257709.610100001096725 ], [ 363794.879399999976158, 257714.438499998301268 ], [ 363789.202799998223782, 257718.191700000315905 ], [ 363782.682199999690056, 257726.370999999344349 ], [ 363780.981499999761581, 257736.700699999928474 ], [ 363783.423799999058247, 257733.976399999111891 ], [ 363784.855800002813339, 257732.460900001227856 ], [ 363784.727399997413158, 257729.373799998313189 ], [ 363788.429899998009205, 257723.26969999819994 ], [ 363790.931599996984005, 257719.967500001192093 ], [ 363796.235100001096725, 257715.964899998158216 ], [ 363800.672200001776218, 257708.688000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602019400", "MAP": "D9-1351-T77", "PARCEL_NAM": "14-6A", "ACRE": "0.04", "LONGITUDE": -64.88363476000001, "LATITUDE": 18.34815202, "OBJECTID_1": 21007, "PARCEL_NO_": "105602019400", "Tax_Legal_": "ANNAS RETREAT 14-1A & 14-6A NEW QTR", "Name": "CASSIA REALTY CORP.", "Address": "P.O. BOX 4092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.073359251, "SHAPE_Area": 278.77558384299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363798.771799996495247, 257707.314100001007318 ], [ 363800.672200001776218, 257708.688000001013279 ], [ 363801.238399997353554, 257707.759399998933077 ], [ 363803.840199999511242, 257699.153599999845028 ], [ 363804.040299996733665, 257690.848099999129772 ], [ 363801.738799996674061, 257682.542599998414516 ], [ 363797.435900002717972, 257675.137600000947714 ], [ 363793.133000001311302, 257664.830699998885393 ], [ 363787.365000002086163, 257656.69819999858737 ], [ 363780.872900001704693, 257646.487199999392033 ], [ 363776.534999996423721, 257647.255199998617172 ], [ 363782.463899999856949, 257657.341600000858307 ], [ 363785.846900001168251, 257663.276000000536442 ], [ 363799.148299999535084, 257686.609099999070168 ], [ 363800.7195999994874, 257691.477099999785423 ], [ 363799.8108000010252, 257703.502000000327826 ], [ 363798.771799996495247, 257707.314100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602019300", "MAP": "G9-2630-T77", "PARCEL_NAM": "14-3A", "ACRE": "0.083", "LONGITUDE": -64.88372231, "LATITUDE": 18.3476414, "OBJECTID_1": 21006, "PARCEL_NO_": "105602019300", "Tax_Legal_": "ANNAS RETREAT 14-3A & 14-5A NEW QTR", "Name": "CASSIA REALTY CORP.", "Address": "P.O. BOX 4092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.92906294599999, "SHAPE_Area": 262.22078934299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363780.872900001704693, 257646.487199999392033 ], [ 363775.614399999380112, 257640.035500001162291 ], [ 363771.952899999916553, 257631.858199998736382 ], [ 363770.488300003111362, 257619.043000001460314 ], [ 363772.319099999964237, 257612.940499998629093 ], [ 363777.079000003635883, 257609.401099998503923 ], [ 363788.795699998736382, 257608.424699999392033 ], [ 363806.126800000667572, 257605.739599999040365 ], [ 363821.53999999910593, 257603.743599999696016 ], [ 363821.260899998247623, 257601.223799999803305 ], [ 363810.886699996888638, 257602.810400001704693 ], [ 363803.6858000010252, 257603.298599999397993 ], [ 363789.039800003170967, 257605.129399999976158 ], [ 363774.393899999558926, 257607.814399998635054 ], [ 363769.267800003290176, 257611.719999998807907 ], [ 363768.311700001358986, 257614.796000000089407 ], [ 363767.48200000077486, 257617.533399999141693 ], [ 363768.187600001692772, 257629.360399998724461 ], [ 363769.746299996972084, 257635.706000000238419 ], [ 363776.534999996423721, 257647.255199998617172 ], [ 363780.872900001704693, 257646.487199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602019300", "MAP": "G9-2630-T77", "PARCEL_NAM": "14-5A", "ACRE": "0.037", "LONGITUDE": -64.88310884000001, "LATITUDE": 18.34738206, "OBJECTID_1": 21006, "PARCEL_NO_": "105602019300", "Tax_Legal_": "ANNAS RETREAT 14-3A & 14-5A NEW QTR", "Name": "CASSIA REALTY CORP.", "Address": "P.O. BOX 4092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.56090932699999, "SHAPE_Area": 180.39568425799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363875.927100002765656, 257571.558200001716614 ], [ 363874.474500000476837, 257569.979100000113249 ], [ 363863.12389999628067, 257578.766699999570847 ], [ 363852.261500000953674, 257586.577799998223782 ], [ 363840.300599999725819, 257594.999299999326468 ], [ 363834.076099999248981, 257598.294599998742342 ], [ 363830.170500002801418, 257599.026900000870228 ], [ 363821.260899998247623, 257601.223799999803305 ], [ 363821.53999999910593, 257603.743599999696016 ], [ 363823.091600000858307, 257603.542700000107288 ], [ 363831.391000002622604, 257602.078099999576807 ], [ 363834.564300000667572, 257600.857599999755621 ], [ 363845.548699997365475, 257595.243400000035763 ], [ 363855.43469999730587, 257587.676300000399351 ], [ 363867.273500002920628, 257579.620999999344349 ], [ 363875.927100002765656, 257571.558200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88538746, "LATITUDE": 18.34046393, "OBJECTID_1": 21276, "PARCEL_NO_": "105602050300", "Tax_Legal_": "ANNAS RETREAT 397 NEW QTR", "Name": "EAST CARIBBEAN CONF OF SEVENTH DAY ADVENTISTS", "Address": "PO Box 886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 169300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.23771483199999, "SHAPE_Area": 1343.0378808299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363633.925700001418591, 256791.798700001090765 ], [ 363628.642300002276897, 256782.577500000596046 ], [ 363602.157999999821186, 256824.192299999296665 ], [ 363588.056999996304512, 256846.34910000115633 ], [ 363595.814400002360344, 256849.858800001442432 ], [ 363606.750299997627735, 256855.03830000013113 ], [ 363622.394400000572205, 256828.6097999997437 ], [ 363638.971500001847744, 256800.605000000447035 ], [ 363633.925700001418591, 256791.798700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105701017400", "MAP": "D9-8442-T010", "PARCEL_NAM": "394A-51", "ACRE": "0.048", "LONGITUDE": -64.88306099, "LATITUDE": 18.34342495, "OBJECTID_1": 21902, "PARCEL_NO_": "105701017400", "Tax_Legal_": "ANNAS RETREAT 394A-41 & 394A-51 NO.1 NEW QTR", "Name": "FABA INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.337332262100006, "SHAPE_Area": 180.699736763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363871.536300003528595, 257158.946699999272823 ], [ 363875.526699997484684, 257153.360100001096725 ], [ 363869.494199998676777, 257150.608500000089407 ], [ 363865.836599998176098, 257155.570199999958277 ], [ 363864.669399999082088, 257154.878699999302626 ], [ 363859.700599998235703, 257151.509799998253584 ], [ 363842.236000001430511, 257139.668600000441074 ], [ 363839.474299997091293, 257143.985500000417233 ], [ 363862.989000000059605, 257157.615899998694658 ], [ 363869.705899998545647, 257161.509300000965595 ], [ 363871.536300003528595, 257158.946699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602075800", "MAP": "D9-1955-T82", "PARCEL_NAM": "394A-42", "ACRE": ".36", "LONGITUDE": -64.88304755, "LATITUDE": 18.343294, "OBJECTID_1": 21367, "PARCEL_NO_": "105602075800", "Tax_Legal_": "ANNAS RETREAT 394A-42 NEW QTR.", "Name": "FABA INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.537343186, "SHAPE_Area": 647.22799276000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363877.167000003159046, 257131.061200000345707 ], [ 363852.886600002646446, 257120.413699999451637 ], [ 363851.523699998855591, 257123.206900000572205 ], [ 363846.604900002479553, 257132.665800001472235 ], [ 363844.968900002539158, 257135.396600000560284 ], [ 363842.924699999392033, 257138.592000000178814 ], [ 363842.236000001430511, 257139.668600000441074 ], [ 363859.700599998235703, 257151.509799998253584 ], [ 363864.669399999082088, 257154.878699999302626 ], [ 363877.167000003159046, 257131.061200000345707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602075900", "MAP": "D9-2382-T83", "PARCEL_NAM": "394A-39A", "ACRE": "2,996 sq ft", "LONGITUDE": -64.88538937, "LATITUDE": 18.3431973, "OBJECTID_1": 21368, "PARCEL_NO_": "105602075900", "Tax_Legal_": "394A-39A ANNAS RETREAT NEW QTR.", "Name": "KINGSTON, JAMES", "Address": "PO Box 11073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.475444107000001, "SHAPE_Area": 233.89189019 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363597.269100002944469, 257116.464699998497963 ], [ 363622.452299997210503, 257136.889499999582767 ], [ 363627.284299999475479, 257131.293000001460314 ], [ 363601.653200000524521, 257111.02930000051856 ], [ 363597.269100002944469, 257116.464699998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065900", "MAP": "F9-1499-T64", "PARCEL_NAM": "135", "ACRE": ".084", "LONGITUDE": -64.8675038, "LATITUDE": 18.3209078, "OBJECTID_1": 39114, "PARCEL_NO_": "107604065900", "Tax_Legal_": "135 FRYDENHOJ RED HOOK QTR", "Name": "GO FAST CHARTERS, LLC", "Address": "PO Box 8336", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 470400, "Improved_V": 573400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.84366109299999, "SHAPE_Area": 555.37516313399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365550.00959999859333, 254671.486400000751019 ], [ 365548.922100000083447, 254663.082800000905991 ], [ 365548.452100001275539, 254661.081399999558926 ], [ 365499.486400000751019, 254673.944299999624491 ], [ 365498.794100001454353, 254678.715599998831749 ], [ 365497.129299998283386, 254684.823699999600649 ], [ 365497.076999999582767, 254685.580099999904633 ], [ 365550.00959999859333, 254671.486400000751019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604065900", "MAP": "F9-1499-T64", "PARCEL_NAM": "135", "ACRE": ".084", "LONGITUDE": -64.8750124, "LATITUDE": 18.32259908, "OBJECTID_1": 39114, "PARCEL_NO_": "107604065900", "Tax_Legal_": "135 FRYDENHOJ RED HOOK QTR", "Name": "GO FAST CHARTERS, LLC", "Address": "PO Box 8336", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 470400, "Improved_V": 573400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.164133995, "SHAPE_Area": 696.98647558499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364715.096500001847744, 254867.821100000292063 ], [ 364717.354500003159046, 254868.054699998348951 ], [ 364719.0337999984622, 254868.228500001132488 ], [ 364736.74210000038147, 254871.962000001221895 ], [ 364737.503899998962879, 254865.022599998861551 ], [ 364740.612999998033047, 254836.699000000953674 ], [ 364720.712999999523163, 254836.589000001549721 ], [ 364720.187899999320507, 254839.508699998259544 ], [ 364717.072999998927116, 254856.829900000244379 ], [ 364715.096500001847744, 254867.821100000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104030300", "MAP": "D9-8222-T008", "PARCEL_NAM": "394-394-B", "ACRE": ".583", "LONGITUDE": -64.89081836, "LATITUDE": 18.34897249, "OBJECTID_1": 6838, "PARCEL_NO_": "103104030300", "Tax_Legal_": "ANNAS RETREAT 394-393 & 394 NEW QUARTER", "Name": "EDGE DEVELOPMENT GROUP LLC", "Address": "4003 Raphune Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022904, "Country": "United States", "Land_Value": 208600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.21456881399999, "SHAPE_Area": 2408.1149870200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363042.51349999755621, 257734.909699998795986 ], [ 363041.072599999606609, 257732.593299999833107 ], [ 363039.291400000452995, 257729.729899998754263 ], [ 363036.754100002348423, 257729.615100000053644 ], [ 363035.384099997580051, 257729.553100001066923 ], [ 363031.729000002145767, 257727.850699998438358 ], [ 363030.824500001966953, 257726.323399998247623 ], [ 363029.764600001275539, 257725.098700001835823 ], [ 363027.778399996459484, 257724.929999999701977 ], [ 363008.669399999082088, 257735.586599998176098 ], [ 363009.697200000286102, 257783.161499999463558 ], [ 363027.450499996542931, 257781.618000000715256 ], [ 363050.838899999856949, 257781.176199998706579 ], [ 363071.002099998295307, 257780.707899998873472 ], [ 363050.016800001263618, 257746.972100000828505 ], [ 363042.51349999755621, 257734.909699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804022700", "MAP": "D3-255-T61", "PARCEL_NAM": "4", "ACRE": ".69", "LONGITUDE": -64.93799757, "LATITUDE": 18.34575209, "OBJECTID_1": 4531, "PARCEL_NO_": "102804022700", "Tax_Legal_": "STAABI #1 GREAT NORTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 864700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.70114576100002, "SHAPE_Area": 4377.0516481100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358081.729299999773502, 257384.946600001305342 ], [ 358084.827100001275539, 257385.258799999952316 ], [ 358088.823600001633167, 257385.661499999463558 ], [ 358090.209299996495247, 257384.883099999278784 ], [ 358095.889499999582767, 257380.707699999213219 ], [ 358103.227200001478195, 257371.2685999982059 ], [ 358104.749700002372265, 257367.968800000846386 ], [ 358106.653200000524521, 257345.996800001710653 ], [ 358022.071999996900558, 257337.462699998170137 ], [ 358000.048000000417233, 257333.925799999386072 ], [ 357999.757700003683567, 257336.243299998342991 ], [ 357997.252400003373623, 257338.470300000160933 ], [ 357999.009700000286102, 257344.777300000190735 ], [ 357994.155199997127056, 257376.914599999785423 ], [ 357994.476999998092651, 257376.686200000345707 ], [ 357995.134199999272823, 257376.219900000840425 ], [ 358068.447800002992153, 257383.6081000007689 ], [ 358081.729299999773502, 257384.946600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032000", "MAP": "D9-2831-T84", "PARCEL_NAM": "9A-2", "ACRE": ".164", "LONGITUDE": -64.94599125000001, "LATITUDE": 18.3549009, "OBJECTID_1": 4374, "PARCEL_NO_": "102803032000", "Tax_Legal_": "SOLBERG 11Q & 9A-2 LERKENLUND GREAT NORTHSIDE QTR", "Name": "DUNNING CHURCH, PETER & OTHERS", "Address": "410 Lenwood Dr", "City": "Costa Mesa", "State": "California", "Zip": 92627, "Country": "United States", "Land_Value": 96200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.223427504, "SHAPE_Area": 1118.91838781 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357232.587600000202656, 258355.163899999111891 ], [ 357233.835199996829033, 258354.311000000685453 ], [ 357235.36540000140667, 258353.265000000596046 ], [ 357222.723600000143051, 258353.392299998551607 ], [ 357219.143700003623962, 258353.428300000727177 ], [ 357173.164200000464916, 258355.374000001698732 ], [ 357177.806000001728535, 258378.42119999974966 ], [ 357179.373700000345707, 258383.711300000548363 ], [ 357180.885999999940395, 258390.506099998950958 ], [ 357200.752400003373623, 258376.925799999386072 ], [ 357232.587600000202656, 258355.163899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701011600", "MAP": "D9-427-T64", "PARCEL_NAM": "12E", "ACRE": ".205", "LONGITUDE": -64.96327937, "LATITUDE": 18.35896523, "OBJECTID_1": 2789, "PARCEL_NO_": "102701011600", "Tax_Legal_": "DOROTHEA 12E LITTLE NORTHSIDE", "Name": "DOUGLAS, BARBARA G. & IAN M.", "Address": "PO Box 10700", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.82808917200001, "SHAPE_Area": 1436.68854534 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355374.961900003254414, 258826.461100000888109 ], [ 355379.996799997985363, 258823.396800000220537 ], [ 355386.093000002205372, 258819.686599999666214 ], [ 355385.561300002038479, 258817.073800001293421 ], [ 355374.968400001525879, 258775.125700000673532 ], [ 355366.523599997162819, 258777.973299998790026 ], [ 355339.028099998831749, 258787.247499998658895 ], [ 355363.703699998557568, 258825.024099998176098 ], [ 355367.501599997282028, 258831.001499999314547 ], [ 355369.582599997520447, 258829.734999999403954 ], [ 355374.961900003254414, 258826.461100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802015700", "MAP": "D9-6463-T98", "PARCEL_NAM": "2J-2", "ACRE": ".5013", "LONGITUDE": -64.93766612, "LATITUDE": 18.36268163, "OBJECTID_1": 4075, "PARCEL_NO_": "102802015700", "Tax_Legal_": "LERKENLUND 2J-2 GT.NORTHSIDE QTR.", "Name": "BRYAN, DENNY", "Address": "PO Box 6407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046407, "Country": "United States", "Land_Value": 81200, "Improved_V": 540800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 259.32241650999998, "SHAPE_Area": 3715.90581337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358108.183100000023842, 259257.459100000560284 ], [ 358110.995800003409386, 259255.615200001746416 ], [ 358093.744599997997284, 259231.580299999564886 ], [ 358062.353299997746944, 259186.93019999936223 ], [ 358056.566500000655651, 259178.699999999254942 ], [ 358034.379299998283386, 259225.039799999445677 ], [ 358069.77419999986887, 259280.2212999984622 ], [ 358079.513999998569489, 259276.253199998289347 ], [ 358108.183100000023842, 259257.459100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801011500", "MAP": "D9-7611-T005", "PARCEL_NAM": "7-2 REM", "ACRE": ".510", "LONGITUDE": -64.94785037, "LATITUDE": 18.36289304, "OBJECTID_1": 3697, "PARCEL_NO_": "102801011500", "Tax_Legal_": "ST PETER 7-2 LITTLE NORTHSIDE", "Name": "DAVID JOHN BERRY REVOCABLE TRUST", "Address": "PO Box 304851", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8034851, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.646872726, "SHAPE_Area": 1887.5954118499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356980.549800001084805, 259282.853700000792742 ], [ 356986.799699999392033, 259283.451799999922514 ], [ 356992.964800000190735, 259284.041700001806021 ], [ 357008.329599998891354, 259284.762899998575449 ], [ 357010.331900000572205, 259284.854600001126528 ], [ 357002.300399996340275, 259229.694200001657009 ], [ 357007.829800002276897, 259212.920899998396635 ], [ 356994.101000003516674, 259213.059200000017881 ], [ 356978.16499999910593, 259213.174600001424551 ], [ 356978.403999999165535, 259220.157499998807907 ], [ 356979.852200001478195, 259262.472199998795986 ], [ 356980.549800001084805, 259282.853700000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803027400", "MAP": "D9-7098-T002", "PARCEL_NAM": "97-21", "ACRE": ".545", "LONGITUDE": -64.94567644, "LATITUDE": 18.34982183, "OBJECTID_1": 4340, "PARCEL_NO_": "102803027400", "Tax_Legal_": "97-21 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, EVELYN & EMILE W.", "Address": "PO Box 305882", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.52886192, "SHAPE_Area": 2222.1448304199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357185.523299999535084, 257815.907999999821186 ], [ 357205.854599997401237, 257816.907200001180172 ], [ 357267.986599996685982, 257819.960700001567602 ], [ 357291.82209999859333, 257820.616700001060963 ], [ 357269.481200002133846, 257805.726799998432398 ], [ 357240.444600000977516, 257786.374299999326468 ], [ 357225.267499998211861, 257776.25899999961257 ], [ 357189.915700003504753, 257811.526099998503923 ], [ 357185.523299999535084, 257815.907999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202012000", "MAP": "D9-2033-T82", "PARCEL_NAM": "27A", "ACRE": ".41", "LONGITUDE": -64.9504464, "LATITUDE": 18.34839125, "OBJECTID_1": 8029, "PARCEL_NO_": "105202012000", "Tax_Legal_": "UPPER JOHN DUNKO 27A SOUTHSIDE QTR", "Name": "CAMPBELL, KEVIN M. & ANGELA E.", "Address": "PO Box 308447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.68960124399999, "SHAPE_Area": 1760.94540723 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356686.44539999961853, 257652.209499999880791 ], [ 356700.97919999808073, 257652.463599998503923 ], [ 356767.895599998533726, 257653.647599998861551 ], [ 356770.00789999961853, 257628.096799999475479 ], [ 356736.71339999884367, 257629.788400001823902 ], [ 356714.926399998366833, 257630.92119999974966 ], [ 356685.532999999821186, 257640.834899999201298 ], [ 356685.719499997794628, 257644.854299999773502 ], [ 356685.910899996757507, 257646.793200001120567 ], [ 356686.44539999961853, 257652.209499999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202061600", "MAP": null, "PARCEL_NAM": "19-1", "ACRE": null, "LONGITUDE": -64.94983112, "LATITUDE": 18.34367265, "OBJECTID_1": 8406, "PARCEL_NO_": "105202061600", "Tax_Legal_": "LOWER JOHN DUNKO 19-1 LT NORTHSIDE QTR", "Name": "LUAY AL SAMMAN & GINA AL SAMMAN", "Address": "6632 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.17603343900001, "SHAPE_Area": 1323.4227977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356776.952100001275539, 257103.505699999630451 ], [ 356784.555100001394749, 257122.890999998897314 ], [ 356787.668399997055531, 257130.82880000025034 ], [ 356789.068000003695488, 257134.397199999541044 ], [ 356824.090000003576279, 257143.183800000697374 ], [ 356824.387299999594688, 257143.240299999713898 ], [ 356828.431100003421307, 257131.793999999761581 ], [ 356797.005800001323223, 257099.774300001561642 ], [ 356790.651799999177456, 257093.300200000405312 ], [ 356788.638199999928474, 257091.46169999986887 ], [ 356781.256399996578693, 257099.069600000977516 ], [ 356776.952100001275539, 257103.505699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802013300", "MAP": "D9-8776-T013", "PARCEL_NAM": "2G REM", "ACRE": "1.760", "LONGITUDE": -64.93779584000001, "LATITUDE": 18.36142259, "OBJECTID_1": 4052, "PARCEL_NO_": "102802013300", "Tax_Legal_": "2G ESTATE LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BRYAN, RONNIE", "Address": "PO Box 302621", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032621, "Country": "United States", "Land_Value": 245300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 387.51849808499998, "SHAPE_Area": 7857.4364052700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358058.773100003600121, 259148.466699998825788 ], [ 358060.531599998474121, 259164.792199999094009 ], [ 358071.071199998259544, 259158.123500000685453 ], [ 358079.179300002753735, 259152.912500001490116 ], [ 358083.165899999439716, 259158.22239999845624 ], [ 358117.300700001418591, 259126.837799999862909 ], [ 358041.561200000345707, 259021.119300000369549 ], [ 357997.29280000180006, 259069.364500001072884 ], [ 358005.583700001239777, 259077.74100000038743 ], [ 358008.98369999974966, 259083.034000001847744 ], [ 358016.558899998664856, 259095.995799999684095 ], [ 358043.297799997031689, 259129.911899998784065 ], [ 358052.998099997639656, 259142.101199999451637 ], [ 358055.190700002014637, 259144.51799999922514 ], [ 358058.773100003600121, 259148.466699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97605136, "LATITUDE": 18.34308507, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 848.097347141, "SHAPE_Area": 7175.3437921499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354167.418200001120567, 256889.004399999976158 ], [ 354148.113499999046326, 256883.357999999076128 ], [ 353911.151500001549721, 257154.362500000745058 ], [ 353908.707400001585484, 257157.297800000756979 ], [ 353904.618299998342991, 257164.019299998879433 ], [ 353902.955300003290176, 257169.916299998760223 ], [ 353916.355099998414516, 257206.122999999672174 ], [ 353914.819799996912479, 257197.033399999141693 ], [ 353914.123199999332428, 257184.151000000536442 ], [ 353917.420400001108646, 257175.734299998730421 ], [ 354167.418200001120567, 256889.004399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97536551, "LATITUDE": 18.34165176, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.27384217300001, "SHAPE_Area": 399.90254501599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354132.831299997866154, 256878.799899999052286 ], [ 354113.526600003242493, 256873.153499998152256 ], [ 354108.688699997961521, 256873.113899998366833 ], [ 354095.028099998831749, 256867.513599999248981 ], [ 354078.941399998962879, 256862.737900000065565 ], [ 354081.326200000941753, 256866.768199998885393 ], [ 354087.717399999499321, 256873.78660000115633 ], [ 354098.145499996840954, 256880.204799998551607 ], [ 354105.386100001633167, 256882.163899999111891 ], [ 354114.253700003027916, 256882.447500001639128 ], [ 354123.94030000269413, 256881.260299999266863 ], [ 354132.831299997866154, 256878.799899999052286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109402010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97257567, "LATITUDE": 18.36113541, "OBJECTID_1": 42229, "PARCEL_NO_": "109402010400", "Tax_Legal_": "16 BOVONI/WESTERN POR. FRENCHMAN BAY QTR", "Name": "VIALET, D & F & DESILVA, F", "Address": "PO Box 354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 383800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.29922821117999998, "SHAPE_Area": 0.00291403018 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354381.327799998223782, 259033.699700001627207 ], [ 354381.409500002861023, 259033.768100000917912 ], [ 354381.3496999964118, 259033.646699998527765 ], [ 354381.327799998223782, 259033.699700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107801010100", "MAP": "B3-149-T45", "PARCEL_NAM": "REM 16", "ACRE": "57 +/-", "LONGITUDE": -64.84801216, "LATITUDE": 18.32991118, "OBJECTID_1": 40036, "PARCEL_NO_": "107801010100", "Tax_Legal_": "16 ESTATE SMITH BAY EAST END QUARTER", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 1797500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2589.4626122300001, "SHAPE_Area": 244211.65369899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367298.923699997365475, 255304.35359999909997 ], [ 367327.569799996912479, 255349.339899998158216 ], [ 367334.747500002384186, 255358.686700001358986 ], [ 367344.342299997806549, 255368.264499999582767 ], [ 367374.760999999940395, 255394.477899998426437 ], [ 367388.346000000834465, 255408.943500000983477 ], [ 367398.707599997520447, 255423.171599999070168 ], [ 367400.311200000345707, 255424.240100000053644 ], [ 367403.475400000810623, 255431.443199999630451 ], [ 367405.075400002300739, 255432.934000000357628 ], [ 367407.453000001609325, 255437.808600001037121 ], [ 367409.812600001692772, 255444.793999999761581 ], [ 367412.98929999768734, 255450.519499998539686 ], [ 367412.973099999129772, 255452.419199999421835 ], [ 367415.35249999910593, 255457.082800000905991 ], [ 367419.279700003564358, 255469.358300000429153 ], [ 367423.169200003147125, 255486.066500000655651 ], [ 367425.451499998569489, 255502.128299999982119 ], [ 367425.291500002145767, 255520.91440000012517 ], [ 367420.158699996769428, 255555.491700001060963 ], [ 367411.870800003409386, 255581.810499999672174 ], [ 367406.863899998366833, 255601.612399999052286 ], [ 367401.777900002896786, 255630.70160000026226 ], [ 367399.071199998259544, 255664.454500000923872 ], [ 367397.37049999833107, 255674.784099999815226 ], [ 367389.933899998664856, 255695.832600001245737 ], [ 367383.398800000548363, 255705.700500000268221 ], [ 367373.631399996578693, 255716.386399999260902 ], [ 367238.959899999201298, 255811.964999999850988 ], [ 367215.370099999010563, 255836.047699999064207 ], [ 367208.032399997115135, 255845.486800000071526 ], [ 367201.461400002241135, 255859.576299998909235 ], [ 367198.122800000011921, 255872.847899999469519 ], [ 367195.434199996292591, 255904.489900000393391 ], [ 367192.117200002074242, 255915.228500001132488 ], [ 367185.531900003552437, 255931.006700001657009 ], [ 367182.268799997866154, 255935.412900000810623 ], [ 367180.622100003063679, 255939.410199999809265 ], [ 367167.568199999630451, 255957.246300000697374 ], [ 367347.387800000607967, 255862.670499999076128 ], [ 367519.555600002408028, 255909.042500000447035 ], [ 367665.174500003457069, 255948.231199998408556 ], [ 367659.996799997985363, 255988.085499998182058 ], [ 367677.796800002455711, 255981.054000001400709 ], [ 367695.622000001370907, 255971.067400000989437 ], [ 367711.854299999773502, 255958.745700001716614 ], [ 367715.111900001764297, 255954.972699999809265 ], [ 367719.982199996709824, 255951.212900001555681 ], [ 367728.939699999988079, 255940.942600000649691 ], [ 367741.939599998295307, 255929.438900001347065 ], [ 367758.972900003194809, 255917.756999999284744 ], [ 367774.361100003123283, 255909.861400000751019 ], [ 367780.822400003671646, 255908.647799998521805 ], [ 367791.342200003564358, 255904.300900001078844 ], [ 367799.452100001275539, 255898.878800000995398 ], [ 367809.221400000154972, 255887.981899999082088 ], [ 367810.05290000140667, 255885.033399999141693 ], [ 367814.134800001978874, 255879.156199999153614 ], [ 367815.783399999141693, 255874.947799999266863 ], [ 367821.503100000321865, 255866.128699999302626 ], [ 367823.124700002372265, 255865.086500000208616 ], [ 367823.950800001621246, 255862.771299999207258 ], [ 367840.237099997699261, 255844.117199998348951 ], [ 367857.313500002026558, 255827.369500000029802 ], [ 367867.097099997103214, 255814.784000001847744 ], [ 367872.001500003039837, 255807.013599999248981 ], [ 367874.470799997448921, 255801.123199999332428 ], [ 367876.097800001502037, 255799.447799999266863 ], [ 367876.932899996638298, 255796.077100001275539 ], [ 367878.561700001358986, 255794.190600000321865 ], [ 367881.029200002551079, 255788.511300001293421 ], [ 367881.045400001108646, 255786.611600000411272 ], [ 367884.333599999547005, 255779.250199999660254 ], [ 367886.856799997389317, 255767.027399998158216 ], [ 367890.299699999392033, 255741.513300001621246 ], [ 367888.75, 255734.112300001084805 ], [ 367887.26860000193119, 255718.690400000661612 ], [ 367887.414300002157688, 255701.592999998480082 ], [ 367891.604099996387959, 255683.051100000739098 ], [ 367896.548000000417233, 255670.636999998241663 ], [ 367898.997500002384186, 255667.068500000983477 ], [ 367899.913500003516674, 255654.199299998581409 ], [ 367899.119800001382828, 255652.71510000154376 ], [ 367898.340499997138977, 255649.542300000786781 ], [ 367895.953900001943111, 255645.723099999129772 ], [ 367890.354699999094009, 255640.399900000542402 ], [ 367882.327500000596046, 255636.112399999052286 ], [ 367865.509999997913837, 255622.464699998497963 ], [ 367863.107299998402596, 255620.545200001448393 ], [ 367851.113300003111362, 255608.625799998641014 ], [ 367848.706900000572205, 255607.128499999642372 ], [ 367835.920999996364117, 255593.513799998909235 ], [ 367821.553099997341633, 255576.297699999064207 ], [ 367820.777300000190735, 255572.7027000002563 ], [ 367818.406900003552437, 255566.983800001442432 ], [ 367816.810500003397465, 255565.070900000631809 ], [ 367816.032899998128414, 255561.686999998986721 ], [ 367806.499300003051758, 255544.932599999010563 ], [ 367804.100100003182888, 255542.590999998152256 ], [ 367800.122500002384186, 255536.225600000470877 ], [ 367782.53999999910593, 255517.716499999165535 ], [ 367772.102899998426437, 255512.353799998760223 ], [ 367752.803599998354912, 255506.074099998921156 ], [ 367743.946699999272823, 255504.524000000208616 ], [ 367727.023199997842312, 255503.329999998211861 ], [ 367685.973200000822544, 255494.550299998372793 ], [ 367628.037299998104572, 255480.143899999558926 ], [ 367611.113799996674061, 255478.94990000128746 ], [ 367594.965899996459484, 255481.350900001823902 ], [ 367582.881999999284744, 255479.985399998724461 ], [ 367568.407999999821186, 255475.222899999469519 ], [ 367552.359099999070168, 255466.014499999582767 ], [ 367537.156000003218651, 255452.168999999761581 ], [ 367525.993500001728535, 255437.301100000739098 ], [ 367522.019500002264977, 255430.513599999248981 ], [ 367514.895700000226498, 255414.834399998188019 ], [ 367510.2179000005126, 255396.008799999952316 ], [ 367507.852899998426437, 255389.656599998474121 ], [ 367506.258299998939037, 255387.532600000500679 ], [ 367503.880699999630451, 255382.657999999821186 ], [ 367502.293200001120567, 255379.689699999988079 ], [ 367493.544299997389317, 255365.474800001829863 ], [ 367481.575499996542931, 255350.600299999117851 ], [ 367473.577100001275539, 255342.935499999672174 ], [ 367460.755199998617172, 255333.542399998754263 ], [ 367459.968699999153614, 255331.214000001549721 ], [ 367452.789200000464916, 255322.078200001269579 ], [ 367451.203500002622604, 255318.898800000548363 ], [ 367449.599899999797344, 255317.830200001597404 ], [ 367448.01240000128746, 255314.861900001764297 ], [ 367442.418600000441074, 255308.905499998480082 ], [ 367433.648100003600121, 255297.223600000143051 ], [ 367430.4425999969244, 255294.875300001353025 ], [ 367425.617299996316433, 255293.358199998736382 ], [ 367401.487300001084805, 255286.194600000977516 ], [ 367383.010399997234344, 255278.021800000220537 ], [ 367298.923699997365475, 255304.35359999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601062400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87900368, "LATITUDE": 18.33134372, "OBJECTID_1": 38140, "PARCEL_NO_": "107601062400", "Tax_Legal_": "7-55 MARIENDAHL RED HOOK QTR.", "Name": "BLAKE, DENRY & MONIQUE", "Address": "PO Box 7835", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.945167723, "SHAPE_Area": 1017.5025239300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364318.368500001728535, 255803.0489999987185 ], [ 364298.298799999058247, 255792.54109999909997 ], [ 364278.618199996650219, 255831.010200001299381 ], [ 364297.860100001096725, 255844.044399999082088 ], [ 364318.368500001728535, 255803.0489999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601061600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88048484, "LATITUDE": 18.33128749, "OBJECTID_1": 38132, "PARCEL_NO_": "107601061600", "Tax_Legal_": "7-37 MARIENDAHL RED HOOK QTR.", "Name": "LARONDE, MARIE C B", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29900, "Improved_V": 65700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.039144648, "SHAPE_Area": 890.77933191600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364158.720399998128414, 255801.531199999153614 ], [ 364135.463299997150898, 255786.564300000667572 ], [ 364125.494400002062321, 255820.890999998897314 ], [ 364147.970399998128414, 255832.896200001239777 ], [ 364158.720399998128414, 255801.531199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601066300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87638628000001, "LATITUDE": 18.33128894, "OBJECTID_1": 38178, "PARCEL_NO_": "107601066300", "Tax_Legal_": "MARIENDAHL ESTATE 7-75 RED HOOK QTR.", "Name": "DANLEBAN, RICHARDSON & MARGARET", "Address": "6075 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27500, "Improved_V": 130900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.258248331, "SHAPE_Area": 973.14014715400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364590.95610000193119, 255798.947200000286102 ], [ 364570.054899998009205, 255791.387800000607967 ], [ 364556.837399996817112, 255828.432100001722574 ], [ 364576.932300001382828, 255835.984900001436472 ], [ 364579.479999996721745, 255836.950399998575449 ], [ 364593.655900001525879, 255799.940900001674891 ], [ 364590.95610000193119, 255798.947200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601062300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87989119, "LATITUDE": 18.33129973, "OBJECTID_1": 38139, "PARCEL_NO_": "107601062300", "Tax_Legal_": "7-48 MARIENDAHL RED HOOK QTR.", "Name": "HODGE FAHIE, JENNIFER (LIFE ESTATE)", "Address": "6032 FRYDENHOJ #1-9-1401", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33200, "Improved_V": 166800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.13500278, "SHAPE_Area": 900.05476113600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364225.599399998784065, 255807.355900000780821 ], [ 364201.544900000095367, 255791.327100001275539 ], [ 364183.584899999201298, 255817.144600000232458 ], [ 364207.64299999922514, 255832.751299999654293 ], [ 364225.599399998784065, 255807.355900000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701041000", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-62", "ACRE": "0.27", "LONGITUDE": -64.85966233000001, "LATITUDE": 18.33122029, "OBJECTID_1": 39342, "PARCEL_NO_": "107701041000", "Tax_Legal_": "SMITH BAY ESTATE 19-2-62 EASTEND QTR.", "Name": "RAHEEM RAYMOND SMITH", "Address": "PO Box 6692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046692, "Country": "United States", "Land_Value": 36100, "Improved_V": 224800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.47873221500001, "SHAPE_Area": 957.24695625499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366341.584499999880791, 255798.709800001233816 ], [ 366320.199600003659725, 255847.930599998682737 ], [ 366322.600599996745586, 255850.061200000345707 ], [ 366363.992200002074242, 255818.736000001430511 ], [ 366362.39580000191927, 255816.823100000619888 ], [ 366361.656000003218651, 255809.006499998271465 ], [ 366358.468500003218651, 255804.547499999403954 ], [ 366355.254100002348423, 255803.254599999636412 ], [ 366341.584499999880791, 255798.709800001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701040900", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-63", "ACRE": "0.27", "LONGITUDE": -64.85986985, "LATITUDE": 18.33117848, "OBJECTID_1": 39341, "PARCEL_NO_": "107701040900", "Tax_Legal_": "19-2-63 ESTATE SMITH BAY EASTEND QTR.", "Name": "JAMES F SMITH", "Address": "PO Box 9133", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012133, "Country": "United States", "Land_Value": 36100, "Improved_V": 265900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.877199687, "SHAPE_Area": 1176.7291802300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366315.852600000798702, 255790.266499999910593 ], [ 366303.389300003647804, 255833.438700001686811 ], [ 366320.199600003659725, 255847.930599998682737 ], [ 366341.584499999880791, 255798.709800001233816 ], [ 366315.852600000798702, 255790.266499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601062500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87918929, "LATITUDE": 18.33124197, "OBJECTID_1": 38141, "PARCEL_NO_": "107601062500", "Tax_Legal_": "7-53 ESTATE MARIENDAHL No.4 RED HOOK QTR.", "Name": "BASTIEN, MOSES", "Address": "PO Box 306822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34000, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.99956416200001, "SHAPE_Area": 939.54642682600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364298.298799999058247, 255792.54109999909997 ], [ 364279.031800001859665, 255782.462000001221895 ], [ 364259.370999999344349, 255818.609200000762939 ], [ 364278.618199996650219, 255831.010200001299381 ], [ 364298.298799999058247, 255792.54109999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107702020200", "MAP": "D9-5270-T92", "PARCEL_NAM": "19-2-143", "ACRE": "0.54", "LONGITUDE": -64.85701546, "LATITUDE": 18.3312011, "OBJECTID_1": 39543, "PARCEL_NO_": "107702020200", "Tax_Legal_": "SMITH BAY ESTATE 19-2-143 EASTEND QTR", "Name": "SCOBIE, JAMES D", "Address": "PO BOX 600199", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.52623529799999, "SHAPE_Area": 2571.4054573600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366658.346600003540516, 255815.234499998390675 ], [ 366628.743199996650219, 255787.972199998795986 ], [ 366604.388400003314018, 255807.193500000983477 ], [ 366591.36879999935627, 255821.019099999219179 ], [ 366595.153999999165535, 255849.969900000840425 ], [ 366639.5658999979496, 255842.734000001102686 ], [ 366639.5929000005126, 255839.567899998277426 ], [ 366647.697300001978874, 255834.778999999165535 ], [ 366651.822400003671646, 255823.835900001227856 ], [ 366658.346600003540516, 255815.234499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701040100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86125817, "LATITUDE": 18.33128479, "OBJECTID_1": 39333, "PARCEL_NO_": "107701040100", "Tax_Legal_": "19-2-94 ESTATE SMITH BAY 1,2&3 EASTEND QTR", "Name": "DOVAL BROADBELT", "Address": "PO Box 306062", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036062, "Country": "United States", "Land_Value": 37500, "Improved_V": 157100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.27976704700001, "SHAPE_Area": 1448.8090074700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366195.543099999427795, 255809.124600000679493 ], [ 366152.786899998784065, 255811.307799998670816 ], [ 366153.298299998044968, 255845.931400001049042 ], [ 366195.255300000309944, 255842.897300001233816 ], [ 366195.543099999427795, 255809.124600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601065800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8774643, "LATITUDE": 18.33129984, "OBJECTID_1": 38173, "PARCEL_NO_": "107601065800", "Tax_Legal_": "MARIENDAHL 7-80 RED HOOK QTR.", "Name": "BAILEY, WENDELL & BEAUTEN", "Address": "PO Box 303795", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32400, "Improved_V": 169600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.046549844, "SHAPE_Area": 951.37798188800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364482.017599999904633, 255808.188000001013279 ], [ 364447.461199998855591, 255794.395199999213219 ], [ 364443.154500000178814, 255826.657299999147654 ], [ 364475.3800999969244, 255830.087499998509884 ], [ 364482.017599999904633, 255808.188000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601066200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87664542, "LATITUDE": 18.33120127, "OBJECTID_1": 38177, "PARCEL_NO_": "107601066200", "Tax_Legal_": "7-76 MARIENDAHL RED HOOK QTR.", "Name": "DONOVAN (LIFE ESTATE), MURIEL", "Address": "PO Box 9792", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 214700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.96415996799999, "SHAPE_Area": 1305.6601524099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364570.054899998009205, 255791.387800000607967 ], [ 364539.508500002324581, 255780.160999998450279 ], [ 364524.690999999642372, 255815.714499998837709 ], [ 364556.837399996817112, 255828.432100001722574 ], [ 364570.054899998009205, 255791.387800000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701010500", "MAP": null, "PARCEL_NAM": "141", "ACRE": "0.352", "LONGITUDE": -64.86435955, "LATITUDE": 18.33120068, "OBJECTID_1": 39127, "PARCEL_NO_": "107701010500", "Tax_Legal_": "141C FRYDENHOJ 2 RED HOOK QTR", "Name": "MOHAMMED, HAROLD", "Address": "PO Box 11954", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 80000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.76741298300001, "SHAPE_Area": 1369.3166974200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365861.481499999761581, 255835.52140000090003 ], [ 365861.898699998855591, 255786.551100000739098 ], [ 365859.481600001454353, 255786.320199999958277 ], [ 365856.227600000798702, 255789.671100001782179 ], [ 365849.744699999690056, 255793.417700000107288 ], [ 365829.531099997460842, 255799.79619999974966 ], [ 365830.010200001299381, 255838.219099998474121 ], [ 365861.481499999761581, 255835.52140000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601065600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87772592, "LATITUDE": 18.33124298, "OBJECTID_1": 38171, "PARCEL_NO_": "107601065600", "Tax_Legal_": "MARIENDAHL ESTATE 7-82 #4 RED HOOK QTR", "Name": "CARR, ROLSTON & VERLYN C", "Address": "530 Natchez Lane", "City": "Red Oak", "State": "Texas", "Zip": 751548958, "Country": "United States", "Land_Value": 32400, "Improved_V": 107000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.77808569600001, "SHAPE_Area": 835.46075059299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364447.461199998855591, 255794.395199999213219 ], [ 364424.954599998891354, 255785.978399999439716 ], [ 364419.789499998092651, 255824.355099998414516 ], [ 364443.154500000178814, 255826.657299999147654 ], [ 364447.461199998855591, 255794.395199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601061500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8813133, "LATITUDE": 18.33122667, "OBJECTID_1": 38131, "PARCEL_NO_": "107601061500", "Tax_Legal_": "7-22 EST MARIENDAHL REDHOOK QTR", "Name": "BACHELOR, JAMES, T'KOYA J., and T'KEYAH J.", "Address": "PO Box 305781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035781, "Country": "United States", "Land_Value": 27500, "Improved_V": 58700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.111498019, "SHAPE_Area": 902.43846665599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364074.872900001704693, 255799.789500001817942 ], [ 364073.269299998879433, 255798.720899999141693 ], [ 364068.487199999392033, 255792.137899998575449 ], [ 364063.74099999666214, 255781.333299998193979 ], [ 364029.672700002789497, 255804.907999999821186 ], [ 364055.321800000965595, 255823.060899998992682 ], [ 364074.872900001704693, 255799.789500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701010200", "MAP": null, "PARCEL_NAM": "138", "ACRE": null, "LONGITUDE": -64.86479613, "LATITUDE": 18.33127238, "OBJECTID_1": 39124, "PARCEL_NO_": "107701010200", "Tax_Legal_": "FRYDENHOJ 138 3 RED HOOK QUARTER", "Name": "MOHAMMED, MUNAF", "Address": "PO Box 11954", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.286295771, "SHAPE_Area": 1009.67003072 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365821.225299999117851, 255828.225900001823902 ], [ 365820.636500000953674, 255802.678700000047684 ], [ 365803.651799999177456, 255808.661400001496077 ], [ 365789.881599999964237, 255815.936999998986721 ], [ 365776.089699998497963, 255825.74549999833107 ], [ 365767.960100002586842, 255833.489399999380112 ], [ 365793.731499999761581, 255837.288899999111891 ], [ 365821.225299999117851, 255828.225900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602050100", "MAP": "A9-457-T94", "PARCEL_NAM": "37-46", "ACRE": "0.24", "LONGITUDE": -64.86656456, "LATITUDE": 18.3312538, "OBJECTID_1": 38514, "PARCEL_NO_": "107602050100", "Tax_Legal_": "37-46 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "JOSEPH, ALLEYNE S", "Address": "THOMASVILLE APT 11G", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28100, "Improved_V": 145300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.907057907, "SHAPE_Area": 1192.55898157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365632.740599997341633, 255804.096200000494719 ], [ 365594.852899998426437, 255802.730599999427795 ], [ 365593.773199997842312, 255834.80799999833107 ], [ 365632.483400002121925, 255834.280499998480082 ], [ 365632.740599997341633, 255804.096200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601065400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8779751, "LATITUDE": 18.33119864, "OBJECTID_1": 38169, "PARCEL_NO_": "107601065400", "Tax_Legal_": "7-84 MARIENDAHL RED HOOK QTR.", "Name": "FURET, NEAL B", "Address": "PO Box 304513", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 38100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.619875103, "SHAPE_Area": 1247.961819 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364424.954599998891354, 255785.978399999439716 ], [ 364420.13289999961853, 255784.039099998772144 ], [ 364396.792999997735023, 255778.781800001859665 ], [ 364388.368400000035763, 255821.142700001597404 ], [ 364419.789499998092651, 255824.355099998414516 ], [ 364424.954599998891354, 255785.978399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701050900", "MAP": "A9-457-T94", "PARCEL_NAM": "37-47", "ACRE": "0.25", "LONGITUDE": -64.86617274, "LATITUDE": 18.33117956, "OBJECTID_1": 39383, "PARCEL_NO_": "107701050900", "Tax_Legal_": "FRYDENHOJ ESTATE 37-47 RED HOOK QUARTER", "Name": "GERALD, VASHTI", "Address": "PO Box 306441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.628222894, "SHAPE_Area": 1206.6869027 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365641.354599997401237, 255834.142000000923872 ], [ 365667.968400001525879, 255833.726500000804663 ], [ 365669.101899996399879, 255795.316799998283386 ], [ 365665.891099996864796, 255793.601700000464916 ], [ 365652.252099998295307, 255785.468499999493361 ], [ 365646.615099996328354, 255784.578000001609325 ], [ 365644.183600001037121, 255786.035799998790026 ], [ 365642.543999999761581, 255789.188799999654293 ], [ 365641.354599997401237, 255834.142000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701050200", "MAP": "A9-457-T94", "PARCEL_NAM": "37-48", "ACRE": "0.25", "LONGITUDE": -64.86591695, "LATITUDE": 18.33123329, "OBJECTID_1": 39376, "PARCEL_NO_": "107701050200", "Tax_Legal_": "37-48 ESTATE FRYDENHOJ No.2 RED HOOK QTR.", "Name": "MCCLEAN, JUSTIN", "Address": "PO Box 11962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 91400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.729555269, "SHAPE_Area": 910.86429493399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365669.101899996399879, 255795.316799998283386 ], [ 365667.968400001525879, 255833.726500000804663 ], [ 365693.773900002241135, 255833.515500001609325 ], [ 365696.192900002002716, 255833.535300001502037 ], [ 365697.22580000013113, 255806.945999998599291 ], [ 365687.576999999582767, 255803.700599998235703 ], [ 365669.101899996399879, 255795.316799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601061700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88072719, "LATITUDE": 18.33115848, "OBJECTID_1": 38133, "PARCEL_NO_": "107601061700", "Tax_Legal_": "7-38 MARIENDAHL RED HOOK QTR.", "Name": "PAYNE, JOHN", "Address": "7-38 Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29900, "Improved_V": 109000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.76046165, "SHAPE_Area": 1155.9657334799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364109.801500000059605, 255769.888999998569489 ], [ 364096.625399999320507, 255802.078499998897314 ], [ 364096.605599999427795, 255804.400400001555681 ], [ 364100.612000003457069, 255807.3885000012815 ], [ 364125.494400002062321, 255820.890999998897314 ], [ 364135.463299997150898, 255786.564300000667572 ], [ 364109.801500000059605, 255769.888999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701050100", "MAP": "D9-5779-T94", "PARCEL_NAM": "37-A", "ACRE": null, "LONGITUDE": -64.8655658, "LATITUDE": 18.33128944, "OBJECTID_1": 39375, "PARCEL_NO_": "107701050100", "Tax_Legal_": "FRYDENHOJ ESTAYTE 37-A RED HOOK QUARTER", "Name": "PAIGE, RICHARD & THYRA", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 101000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.556154521, "SHAPE_Area": 932.05620694000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365697.22580000013113, 255806.945999998599291 ], [ 365696.192900002002716, 255833.535300001502037 ], [ 365728.452600002288818, 255832.954999998211861 ], [ 365755.86540000140667, 255833.390399999916553 ], [ 365751.076099999248981, 255827.651700001209974 ], [ 365729.39019999653101, 255817.552799999713898 ], [ 365723.762199997901917, 255815.606899999082088 ], [ 365697.22580000013113, 255806.945999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701041500", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-42", "ACRE": ".26", "LONGITUDE": -64.85826117000001, "LATITUDE": 18.33123626, "OBJECTID_1": 39346, "PARCEL_NO_": "107701041500", "Tax_Legal_": "19-2-42 SMITH BAY NOS. 1,2&3 EAST END QTR.", "Name": "BAILEY, TESS M. & KELVIN S. JR.", "Address": "6521 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34700, "Improved_V": 6100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.424078028, "SHAPE_Area": 1049.24271576 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366490.741499997675419, 255801.19709999859333 ], [ 366468.714000001549721, 255831.203200001269579 ], [ 366470.258199997246265, 255839.237399999052286 ], [ 366508.964800000190735, 255839.131999999284744 ], [ 366507.566200003027916, 255814.000399999320507 ], [ 366490.741499997675419, 255801.19709999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86080832, "LATITUDE": 18.33118878, "OBJECTID_1": 39336, "PARCEL_NO_": "107701040400", "Tax_Legal_": "19-2-89 SMITH BAY No. 1,2 & 3 EAST END QTR", "Name": "MAGRAS, MICHELLE", "Address": "PO Box 6791", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 107800, "Improved_V": 291000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.069627615, "SHAPE_Area": 1322.8529156100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366204.180500000715256, 255836.426399998366833 ], [ 366234.019500002264977, 255836.037300001829863 ], [ 366239.665500000119209, 255835.872499998658895 ], [ 366238.315399996936321, 255805.041700001806021 ], [ 366238.3800999969244, 255797.442899998277426 ], [ 366205.319499999284744, 255797.383400000631809 ], [ 366204.180500000715256, 255836.426399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601065200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87827472, "LATITUDE": 18.33116017, "OBJECTID_1": 38167, "PARCEL_NO_": "107601065200", "Tax_Legal_": "7-86 MARIENDAHL RED HOOK QTR.", "Name": "JULIUS, SAMUEL", "Address": "PO Box 6673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38300, "Improved_V": 19800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.73964794099999, "SHAPE_Area": 1518.6767157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364396.792999997735023, 255778.781800001859665 ], [ 364384.721699997782707, 255775.938799999654293 ], [ 364369.443099997937679, 255770.958599999547005 ], [ 364350.502300001680851, 255817.244100000709295 ], [ 364358.558300003409386, 255818.154500000178814 ], [ 364388.368400000035763, 255821.142700001597404 ], [ 364396.792999997735023, 255778.781800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86047476, "LATITUDE": 18.33121748, "OBJECTID_1": 39337, "PARCEL_NO_": "107701040500", "Tax_Legal_": "SMITH BAY ESTATE 19-2-86 EASTEND QTR.", "Name": "AL-AMEEN, BILAL A", "Address": "PO Box 7183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36100, "Improved_V": 256800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.449384635, "SHAPE_Area": 1109.1564908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366272.189499996602535, 255804.2635000012815 ], [ 366238.315399996936321, 255805.041700001806021 ], [ 366239.665500000119209, 255835.872499998658895 ], [ 366279.183799996972084, 255835.140399999916553 ], [ 366279.205300003290176, 255832.607500001788139 ], [ 366277.607100002467632, 255830.905699998140335 ], [ 366273.686999998986721, 255817.785799998790026 ], [ 366272.91669999808073, 255813.557599999010563 ], [ 366272.189499996602535, 255804.2635000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601062600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87940483, "LATITUDE": 18.33112219, "OBJECTID_1": 38142, "PARCEL_NO_": "107601062600", "Tax_Legal_": "7-51 MARIENDAHL RED HOOK QTR.", "Name": "MITCHELL (LIFE ESTATE), EULALIE", "Address": "7305 Deerwood Dr", "City": "Riverdale", "State": "Georgia", "Zip": 30296, "Country": "United States", "Land_Value": 31500, "Improved_V": 194400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.22900298100001, "SHAPE_Area": 1207.79069869 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364279.031800001859665, 255782.462000001221895 ], [ 364251.734099999070168, 255768.517499998211861 ], [ 364233.712899997830391, 255801.511700000613928 ], [ 364259.370999999344349, 255818.609200000762939 ], [ 364279.031800001859665, 255782.462000001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601062200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88012386, "LATITUDE": 18.33115867, "OBJECTID_1": 38138, "PARCEL_NO_": "107601062200", "Tax_Legal_": "7-46 MARIENDAHL RED HOOK QTR.", "Name": "TURNER (LIFE ESTATE), GENEVIEVE", "Address": "28 Mill Pond Ct", "City": "Owings Mills", "State": "Maryland", "Zip": 21117, "Country": "United States", "Land_Value": 29800, "Improved_V": 201800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.193511453, "SHAPE_Area": 931.37512591200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364201.544900000095367, 255791.327100001275539 ], [ 364176.6841000020504, 255775.291600000113249 ], [ 364158.720399998128414, 255801.531199999153614 ], [ 364183.584899999201298, 255817.144600000232458 ], [ 364201.544900000095367, 255791.327100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701040800", "MAP": "D9-5248-T92", "PARCEL_NAM": "19-2-64", "ACRE": "0.29", "LONGITUDE": -64.86010253000001, "LATITUDE": 18.33106987, "OBJECTID_1": 39340, "PARCEL_NO_": "107701040800", "Tax_Legal_": "SMITH BAY ESTATE 19-2-64 1,2&3 EASTEND QTR", "Name": "FRANCIS,RAYMOND & RENA N. &, FRANCIS-VANHEYNINGEN,FRANCINE", "Address": "3818 Chimney Creek Dr", "City": "Virginia Beach", "State": "Virginia", "Zip": 23462, "Country": "United States", "Land_Value": 41500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.921940423, "SHAPE_Area": 1228.38646685 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366284.143899999558926, 255820.826699998229742 ], [ 366303.389300003647804, 255833.438700001686811 ], [ 366315.852600000798702, 255790.266499999910593 ], [ 366289.318099997937679, 255781.394499998539686 ], [ 366285.275700002908707, 255782.627999998629093 ], [ 366282.849600002169609, 255783.452500000596046 ], [ 366281.197400003671646, 255788.083000000566244 ], [ 366281.769900001585484, 255815.529899999499321 ], [ 366282.554700002074242, 255818.069400001317263 ], [ 366284.143899999558926, 255820.826699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601065000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87853885, "LATITUDE": 18.33109225, "OBJECTID_1": 38165, "PARCEL_NO_": "107601065000", "Tax_Legal_": "7-88 EST. MARIENDAHL RED HOOK QTR.HL", "Name": "VANLOW, ARTHUR", "Address": "PO Box 502384", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 40700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.79640618400001, "SHAPE_Area": 1279.44721364 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364369.443099997937679, 255770.958599999547005 ], [ 364346.123000003397465, 255763.379399999976158 ], [ 364325.594800002872944, 255806.696699999272823 ], [ 364340.047200001776218, 255813.992199998348951 ], [ 364344.863499999046326, 255816.564699999988079 ], [ 364350.502300001680851, 255817.244100000709295 ], [ 364369.443099997937679, 255770.958599999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601066100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87687409, "LATITUDE": 18.33111796, "OBJECTID_1": 38176, "PARCEL_NO_": "107601066100", "Tax_Legal_": "EST MARIENDAHL 7-77 RED HOOK QTR", "Name": "BROWN, ALLEN & MATILDA", "Address": "P.O. BOX 4716", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.681854058, "SHAPE_Area": 691.97770631499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364526.647100001573563, 255775.41160000115633 ], [ 364522.628100000321865, 255773.901099998503923 ], [ 364507.815999999642372, 255808.821400001645088 ], [ 364524.690999999642372, 255815.714499998837709 ], [ 364539.508500002324581, 255780.160999998450279 ], [ 364526.647100001573563, 255775.41160000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701042600", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-29B", "ACRE": "0.30", "LONGITUDE": -64.85772092000001, "LATITUDE": 18.33104478, "OBJECTID_1": 39357, "PARCEL_NO_": "107701042600", "Tax_Legal_": "SMITH BAY ESTATE 19-2-29B EASTEND QTR.", "Name": "LAWRENCE, PAULINE", "Address": "PO Box 8916", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.241031327, "SHAPE_Area": 1552.88772875 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366576.212499998509884, 255801.685600001364946 ], [ 366575.418700002133846, 255800.201400000602007 ], [ 366545.809900000691414, 255773.572399999946356 ], [ 366522.889700002968311, 255813.703699998557568 ], [ 366533.301700003445148, 255822.021499998867512 ], [ 366543.697400003671646, 255832.239100001752377 ], [ 366576.212499998509884, 255801.685600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601084000", "MAP": "D9-8953-T014", "PARCEL_NAM": "10-1-A", "ACRE": ".31", "LONGITUDE": -64.87603305, "LATITUDE": 18.33100002, "OBJECTID_1": 38216, "PARCEL_NO_": "107601084000", "Tax_Legal_": "10-1-A MARIENDAHL NO.4 RED HOOK QTR", "Name": "DORMEVIL, ORDREL & EUGENIE", "Address": "PO Box 8884", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.07146691, "SHAPE_Area": 1354.3178617799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364600.281300000846386, 255747.379099998623133 ], [ 364589.200199998915195, 255788.912799999117851 ], [ 364648.544100001454353, 255810.920000001788139 ], [ 364600.281300000846386, 255747.379099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701010600", "MAP": null, "PARCEL_NAM": "142", "ACRE": null, "LONGITUDE": -64.86398601, "LATITUDE": 18.33109164, "OBJECTID_1": 39128, "PARCEL_NO_": "107701010600", "Tax_Legal_": "FRYDENHOJ 142 2 RED HOOK QTR", "Name": "DAVID, ESTON R. & LYDIA V.", "Address": "PO Box 7695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23400, "Improved_V": 246900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.56054489300001, "SHAPE_Area": 1260.7263853 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365900.635899998247623, 255782.857400000095367 ], [ 365870.796899996697903, 255783.246500000357628 ], [ 365870.430100001394749, 255826.306499999016523 ], [ 365903.548299998044968, 255819.6114999987185 ], [ 365900.635899998247623, 255782.857400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701041400", "MAP": "D9-5249-T92", "PARCEL_NAM": "19-2-41", "ACRE": ".27", "LONGITUDE": -64.85849621, "LATITUDE": 18.33107586, "OBJECTID_1": 39345, "PARCEL_NO_": "107701041400", "Tax_Legal_": "SMITH BAY ESTATE 19-2-41 No.1,2&3 EASTEND QTR", "Name": "ORTIZ, JOSE L. & MARIA N", "Address": "PO Box 9954", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36100, "Improved_V": 240200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.669579298, "SHAPE_Area": 1253.40806228 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366458.658100001513958, 255781.091699998825788 ], [ 366450.418700002133846, 255801.711500000208616 ], [ 366446.225299999117851, 255820.675599999725819 ], [ 366455.069600000977516, 255823.703299999237061 ], [ 366468.714000001549721, 255831.203200001269579 ], [ 366490.741499997675419, 255801.19709999859333 ], [ 366485.131499998271465, 255797.140399999916553 ], [ 366473.103399999439716, 255789.231499999761581 ], [ 366469.894299998879433, 255787.305399999022484 ], [ 366458.658100001513958, 255781.091699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701010700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8621749, "LATITUDE": 18.33068258, "OBJECTID_1": 39129, "PARCEL_NO_": "107701010700", "Tax_Legal_": "38 FRYDENHOJ No.3 RED HOOK QTR", "Name": "BLAZKOVA,MESEKE & OTHERS, TRUSTEES", "Address": "3725 Bonita Dr", "City": "Plano", "State": "Texas", "Zip": 75025, "Country": "United States", "Land_Value": 191500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 415.027818588, "SHAPE_Area": 8883.9779874800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366137.662299998104572, 255693.604899998754263 ], [ 366014.584899999201298, 255753.392499998211861 ], [ 366016.951700001955032, 255759.533599998801947 ], [ 366021.219499997794628, 255826.485199999064207 ], [ 366138.658100001513958, 255766.018199998885393 ], [ 366137.362000003457069, 255728.855099998414516 ], [ 366137.662299998104572, 255693.604899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701010300", "MAP": null, "PARCEL_NAM": "156", "ACRE": null, "LONGITUDE": -64.86509298, "LATITUDE": 18.33111075, "OBJECTID_1": 39125, "PARCEL_NO_": "107701010300", "Tax_Legal_": "FRYDENHOJ ESTATE 156 No.3 RED HOOK QTR.", "Name": "POLEON, MARY F", "Address": "6546 No Estate Nazareth, Box 14", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 37200, "Improved_V": 342200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.43560835300001, "SHAPE_Area": 815.20742297200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365786.064000003039837, 255790.785599999129772 ], [ 365756.232199996709824, 255790.330400001257658 ], [ 365755.319799996912479, 255802.777399998158216 ], [ 365754.371500000357628, 255819.445999998599291 ], [ 365761.601300001144409, 255822.671599999070168 ], [ 365767.252700001001358, 255821.873500000685453 ], [ 365776.998599998652935, 255813.720600001513958 ], [ 365782.671499997377396, 255810.389499999582767 ], [ 365785.115599997341633, 255807.454199999570847 ], [ 365786.064000003039837, 255790.785599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601061400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8814618, "LATITUDE": 18.33100745, "OBJECTID_1": 38130, "PARCEL_NO_": "107601061400", "Tax_Legal_": "7-20 ESTATE MARIENDAHL RED HOOK QTR.", "Name": "ALEXANDER, AUGUSTUS & C", "Address": "PO Box 305773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 27500, "Improved_V": 112800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.814385931, "SHAPE_Area": 1433.8264054399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364063.74099999666214, 255781.333299998193979 ], [ 364050.292599998414516, 255750.825699999928474 ], [ 364012.165799997746944, 255777.533700000494719 ], [ 364029.672700002789497, 255804.907999999821186 ], [ 364063.74099999666214, 255781.333299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601066000", "MAP": null, "PARCEL_NAM": "7-78", "ACRE": "0.23", "LONGITUDE": -64.8770532, "LATITUDE": 18.33104721, "OBJECTID_1": 38175, "PARCEL_NO_": "107601066000", "Tax_Legal_": "7-78 MARIENDAHL RED HOOK QTR", "Name": "UBILES, BENJAMIN", "Address": "PO Box 11029", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 30400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.84260816699999, "SHAPE_Area": 857.07989183500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364520.216399997472763, 255773.037000000476837 ], [ 364512.178400002419949, 255770.015900000929832 ], [ 364499.31700000166893, 255765.266499999910593 ], [ 364488.531000003218651, 255800.853100001811981 ], [ 364507.815999999642372, 255808.821400001645088 ], [ 364522.628100000321865, 255773.901099998503923 ], [ 364520.216399997472763, 255773.037000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601064700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87878432, "LATITUDE": 18.3309971, "OBJECTID_1": 38162, "PARCEL_NO_": "107601064700", "Tax_Legal_": "MARIENDAHL 7-90 RED HOOK QTR.", "Name": "DAVID, ECLAN & PETRONELLA", "Address": "6090 Mariendahl M7-90", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33500, "Improved_V": 132600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.868668861, "SHAPE_Area": 1375.36154121 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364346.123000003397465, 255763.379399999976158 ], [ 364338.081399999558926, 255760.780499998480082 ], [ 364315.546099998056889, 255755.740899998694658 ], [ 364298.298799999058247, 255792.54109999909997 ], [ 364318.368500001728535, 255803.0489999987185 ], [ 364325.594800002872944, 255806.696699999272823 ], [ 364346.123000003397465, 255763.379399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701050300", "MAP": "D9-5779-T94", "PARCEL_NAM": "37-C", "ACRE": null, "LONGITUDE": -64.86534786, "LATITUDE": 18.33100244, "OBJECTID_1": 39377, "PARCEL_NO_": "107701050300", "Tax_Legal_": "FRYDENHOJ ESTATE 37-C RED HOOK QUARTER", "Name": "VANTERPOOL, ELRIC & MERLE", "Address": "PO Box 9656", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29300, "Improved_V": 161700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.06390797200001, "SHAPE_Area": 1134.5170923200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365756.232199996709824, 255790.330400001257658 ], [ 365754.131599999964237, 255752.949599999934435 ], [ 365745.913800001144409, 255771.036400001496077 ], [ 365718.251000002026558, 255799.940900001674891 ], [ 365719.019599996507168, 255804.380100000649691 ], [ 365727.059299997985363, 255807.190200001001358 ], [ 365751.162399999797344, 255817.519900001585484 ], [ 365752.0945999994874, 255802.750999998301268 ], [ 365755.319799996912479, 255802.777399998158216 ], [ 365756.232199996709824, 255790.330400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105501040100", "MAP": "D9-7950-T007", "PARCEL_NAM": "1-4", "ACRE": "9.698", "LONGITUDE": -64.90446417, "LATITUDE": 18.33718956, "OBJECTID_1": 19782, "PARCEL_NO_": "105501040100", "Tax_Legal_": "REM. 1. ESTATE DONOE NEW QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 816.75166383800001, "SHAPE_Area": 31949.6375133 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361514.170100003480911, 256544.767700001597404 ], [ 361541.686099998652935, 256528.265000000596046 ], [ 361546.918300002813339, 256525.311999998986721 ], [ 361553.196800000965595, 256521.768399998545647 ], [ 361574.321800000965595, 256519.247800000011921 ], [ 361606.289599999785423, 256518.01630000025034 ], [ 361625.590899996459484, 256517.278499998152256 ], [ 361650.901399999856949, 256518.988200001418591 ], [ 361668.809799998998642, 256525.178700000047684 ], [ 361682.741499997675419, 256533.038800001144409 ], [ 361686.293999999761581, 256540.8597999997437 ], [ 361719.383799999952316, 256544.225299999117851 ], [ 361719.777400001883507, 256536.397900000214577 ], [ 361719.910700000822544, 256486.601399999111891 ], [ 361695.339699998497963, 256486.315999999642372 ], [ 361698.768700003623962, 256397.456599999219179 ], [ 361676.645300000905991, 256391.911699999123812 ], [ 361655.745099999010563, 256383.399300001561642 ], [ 361642.358499996364117, 256375.247900001704693 ], [ 361625.429200001060963, 256368.15260000154376 ], [ 361603.170800000429153, 256357.476199999451637 ], [ 361590.554999999701977, 256350.067200001329184 ], [ 361570.728299997746944, 256337.61430000141263 ], [ 361546.481799997389317, 256325.719900000840425 ], [ 361519.247500002384186, 256320.7804000005126 ], [ 361513.497100003063679, 256321.86879999935627 ], [ 361513.563900001347065, 256343.994199998676777 ], [ 361514.170100003480911, 256544.767700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702031500", "MAP": "D9-411-T63", "PARCEL_NAM": "40D", "ACRE": "0.26", "LONGITUDE": -64.87030463000001, "LATITUDE": 18.34321924, "OBJECTID_1": 22480, "PARCEL_NO_": "105702031500", "Tax_Legal_": "SMITH BAY 40D EAST END QTR", "Name": "JOSHUA, EDITA", "Address": "PO Box 303556", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30900, "Improved_V": 195900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.56080632000001, "SHAPE_Area": 1130.6016824200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365227.778599999845028, 257148.614100001752377 ], [ 365229.794100001454353, 257149.225699998438358 ], [ 365234.212899997830391, 257150.566599998623133 ], [ 365236.622900001704693, 257151.641800001263618 ], [ 365227.368199996650219, 257140.267200000584126 ], [ 365215.874499998986721, 257126.140799999237061 ], [ 365215.926700003445148, 257120.019499998539686 ], [ 365189.282399997115135, 257124.023299999535084 ], [ 365191.39750000089407, 257159.715399999171495 ], [ 365192.999300003051758, 257160.995099999010563 ], [ 365196.224500000476837, 257161.021499998867512 ], [ 365221.322700001299381, 257149.194600000977516 ], [ 365227.778599999845028, 257148.614100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302015600", "MAP": "D9-5764-T94", "PARCEL_NAM": "1A-1-A", "ACRE": ".092", "LONGITUDE": -64.91663206, "LATITUDE": 18.33035082, "OBJECTID_1": 24821, "PARCEL_NO_": "107302015600", "Tax_Legal_": "THOMAS 1A-1 6C NEW QTR", "Name": "DAGGETT, JOHN & BARBARA", "Address": "7301 Flagg Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 182500, "Improved_V": 492300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.238018798699997, "SHAPE_Area": 252.76352390700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360306.209100000560284, 255669.51969999819994 ], [ 360328.250699996948242, 255687.300900001078844 ], [ 360331.229999996721745, 255666.769200000911951 ], [ 360306.209100000560284, 255669.51969999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302016200", "MAP": "D9-1875-T81", "PARCEL_NAM": "1A-2", "ACRE": null, "LONGITUDE": -64.91674, "LATITUDE": 18.32962334, "OBJECTID_1": 24827, "PARCEL_NO_": "107302016200", "Tax_Legal_": "THOMAS ESTATE 1A-2,3&4 6C NEW QTR.", "Name": "SILVEIRA, BRADFORD J. & KIMBERLY", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.216794345500006, "SHAPE_Area": 114.03903036600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360319.165399998426437, 255594.775499999523163 ], [ 360299.6554000005126, 255586.92850000038743 ], [ 360301.425899997353554, 255592.9847999997437 ], [ 360302.005999997258186, 255594.969300001859665 ], [ 360331.799999997019768, 255599.857200000435114 ], [ 360319.165399998426437, 255594.775499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302013100", "MAP": "D9-2976-T85", "PARCEL_NAM": "3DC", "ACRE": ".21", "LONGITUDE": -64.91777848, "LATITUDE": 18.32878412, "OBJECTID_1": 24798, "PARCEL_NO_": "107302013100", "Tax_Legal_": "3DC ESTATE BAKKERO FRENCHMANS BAY QTR", "Name": "ORVILLE & JULIETTE KEAN FAMILY TRUST", "Address": "PO Box 6046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.43521834400001, "SHAPE_Area": 730.55230291600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360215.131399996578693, 255513.143899999558926 ], [ 360223.185699999332428, 255493.142599999904633 ], [ 360214.181900002062321, 255492.081199999898672 ], [ 360185.987999998033047, 255488.684099998325109 ], [ 360174.706799998879433, 255487.747400000691414 ], [ 360179.957099996507168, 255493.197999998927116 ], [ 360190.692800000309944, 255504.343499999493361 ], [ 360202.699299998581409, 255514.785300001502037 ], [ 360202.889300003647804, 255516.271999999880791 ], [ 360215.131399996578693, 255513.143899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302015400", "MAP": "D9-2976-T85", "PARCEL_NAM": "3DA", "ACRE": ".059", "LONGITUDE": -64.91777391, "LATITUDE": 18.32907783, "OBJECTID_1": 24819, "PARCEL_NO_": "107302015400", "Tax_Legal_": "BAKKERO 3DA FRENCHMAN BAY QTR", "Name": "ORVILLE AND JULIETTE KEAN FAMILY TRUST", "Address": "PO Box 6046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.573941959, "SHAPE_Area": 356.85692642800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360215.131399996578693, 255513.143899999558926 ], [ 360202.889300003647804, 255516.271999999880791 ], [ 360203.455300003290176, 255520.702199999243021 ], [ 360201.011200003325939, 255523.637499999254942 ], [ 360192.775399997830391, 255543.83500000089407 ], [ 360188.586000002920628, 255547.750900000333786 ], [ 360191.925999999046326, 255548.894299998879433 ], [ 360199.669600002467632, 255551.540199998766184 ], [ 360201.124499998986721, 255547.927099999040365 ], [ 360203.633900001645088, 255541.695500001311302 ], [ 360215.131399996578693, 255513.143899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302014200", "MAP": "D9-2976-T85", "PARCEL_NAM": "2D", "ACRE": ".18", "LONGITUDE": -64.9183441, "LATITUDE": 18.32915087, "OBJECTID_1": 24809, "PARCEL_NO_": "107302014200", "Tax_Legal_": "THOMAS 6C-2D NEW QUARTER", "Name": "ORVILLE & JULIETTE KEAN FAMILY TRUST", "Address": "PO Box 6046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 12700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.194282057, "SHAPE_Area": 609.17807634500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360165.726199999451637, 255539.925200000405312 ], [ 360130.016099996864796, 255527.700500000268221 ], [ 360127.563000001013279, 255531.691199999302626 ], [ 360116.186599999666214, 255541.941599998623133 ], [ 360159.390900000929832, 255551.50730000063777 ], [ 360165.726199999451637, 255539.925200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302016300", "MAP": "D9-2976-T85", "PARCEL_NAM": "2C", "ACRE": ".018", "LONGITUDE": -64.91811405, "LATITUDE": 18.32920303, "OBJECTID_1": 24828, "PARCEL_NO_": "107302016300", "Tax_Legal_": "THOMAS 2C 6C NEW QTR.", "Name": "ORVILLE AND JULIETTE KEAN FAMILY TRUST", "Address": "PO Box 6046", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.412053945700002, "SHAPE_Area": 88.800272244699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360174.337399996817112, 255542.873100001364946 ], [ 360165.726199999451637, 255539.925200000405312 ], [ 360159.390900000929832, 255551.50730000063777 ], [ 360164.047600001096725, 255552.777300000190735 ], [ 360174.337399996817112, 255542.873100001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402016000", "MAP": "D9-8872-T014", "PARCEL_NAM": "2-R", "ACRE": ".57", "LONGITUDE": -64.99916455, "LATITUDE": 18.36166329, "OBJECTID_1": 1460, "PARCEL_NO_": "102402016000", "Tax_Legal_": "2R ESTATE HOPE No.5 WEST END QTR", "Name": "FEBRES CARRILLO, CAMELIA", "Address": "PO Box 303117", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 87300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.44937136499999, "SHAPE_Area": 2340.7921793400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351589.204800002276897, 259090.699700001627207 ], [ 351590.077399998903275, 259028.905299998819828 ], [ 351564.695600003004074, 259034.582800000905991 ], [ 351543.09179999679327, 259112.339200001209974 ], [ 351589.204800002276897, 259090.699700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402010600", "MAP": "D9-8872-T014", "PARCEL_NAM": "2-S", "ACRE": ".53", "LONGITUDE": -64.99882603, "LATITUDE": 18.36152676, "OBJECTID_1": 1417, "PARCEL_NO_": "102402010600", "Tax_Legal_": "PAR 2 Rem. HOPE No.5 WEST END QTR.", "Name": "RED BALL GROCERY, INC.", "Address": "PO Box 515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.03899215000001, "SHAPE_Area": 1999.75935519 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351590.077399998903275, 259028.905299998819828 ], [ 351589.204800002276897, 259090.699700001627207 ], [ 351629.446199998259544, 259071.815699998289347 ], [ 351619.648199997842312, 259022.290699999779463 ], [ 351590.077399998903275, 259028.905299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402010600", "MAP": "D9-8872-T014", "PARCEL_NAM": "2-2", "ACRE": null, "LONGITUDE": -64.99899859, "LATITUDE": 18.36188734, "OBJECTID_1": 1417, "PARCEL_NO_": "102402010600", "Tax_Legal_": "PAR 2 Rem. HOPE No.5 WEST END QTR.", "Name": "RED BALL GROCERY, INC.", "Address": "PO Box 515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.149405183, "SHAPE_Area": 640.32890688400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351630.928800001740456, 259079.309599999338388 ], [ 351629.446199998259544, 259071.815699998289347 ], [ 351543.09179999679327, 259112.339200001209974 ], [ 351542.914499998092651, 259118.934399999678135 ], [ 351630.928800001740456, 259079.309599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107302019900", "MAP": "D9-5449-T95", "PARCEL_NAM": "22B", "ACRE": null, "LONGITUDE": -64.92256238, "LATITUDE": 18.32934616, "OBJECTID_1": 24831, "PARCEL_NO_": "107302019900", "Tax_Legal_": "HAVENSIGHT 22B FRENCHMAN'S BAY", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.232642374700006, "SHAPE_Area": 50.981128356900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359682.993400000035763, 255569.967700000852346 ], [ 359684.568400003015995, 255566.695599999278784 ], [ 359686.373499996960163, 255564.836800001561642 ], [ 359688.524800002574921, 255562.621399998664856 ], [ 359691.890000000596046, 255559.156100001186132 ], [ 359693.383299998939037, 255558.389899998903275 ], [ 359695.939499996602535, 255557.078299999237061 ], [ 359698.207500003278255, 255556.652300000190735 ], [ 359702.057199999690056, 255555.929200001060963 ], [ 359705.631499998271465, 255555.257800001651049 ], [ 359706.27419999986887, 255555.30350000038743 ], [ 359715.135300002992153, 255555.933100000023842 ], [ 359709.946900002658367, 255554.550400000065565 ], [ 359701.149499997496605, 255553.955099999904633 ], [ 359697.180799998342991, 255554.947299998253584 ], [ 359692.947400003671646, 255556.402499999850988 ], [ 359689.772399999201298, 255558.916000001132488 ], [ 359686.795900002121925, 255562.090999998152256 ], [ 359684.414599999785423, 255564.670699998736382 ], [ 359682.993400000035763, 255569.967700000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107304013500", "MAP": "F9-2568-T70", "PARCEL_NAM": "2L", "ACRE": ".59", "LONGITUDE": -64.91988563, "LATITUDE": 18.32165623, "OBJECTID_1": 32387, "PARCEL_NO_": "107304013500", "Tax_Legal_": "BAKKERO 2L FRENCHMAN BAY", "Name": "HANCOCK, WILLIAM", "Address": "320 Hart Mews", "City": "Gaithersburg", "State": "Maryland", "Zip": 20878, "Country": "United States", "Land_Value": 99600, "Improved_V": 443000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.70907892299999, "SHAPE_Area": 2025.2704404200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360016.232699997723103, 254721.604100000113249 ], [ 360019.433499999344349, 254721.300599999725819 ], [ 360023.987099997699261, 254722.144000001251698 ], [ 360022.454199999570847, 254719.484499998390675 ], [ 360020.808600001037121, 254716.629599999636412 ], [ 360020.223800003528595, 254714.951799999922514 ], [ 360019.170400001108646, 254711.929900001734495 ], [ 360016.085799999535084, 254703.080899998545647 ], [ 360008.0675999969244, 254697.738000001758337 ], [ 359999.236000001430511, 254693.232700001448393 ], [ 359987.166500002145767, 254690.178599998354912 ], [ 359978.293399997055531, 254690.528200000524521 ], [ 359950.864399999380112, 254691.992400001734495 ], [ 359948.431100003421307, 254693.661299999803305 ], [ 359949.204999998211861, 254697.467300001531839 ], [ 359952.406900003552437, 254700.237700000405312 ], [ 359981.426100000739098, 254738.307300001382828 ], [ 359988.159699998795986, 254731.301899999380112 ], [ 359995.779700003564358, 254726.698100000619888 ], [ 360001.018399998545647, 254724.316899999976158 ], [ 360009.590899996459484, 254722.253100000321865 ], [ 360016.232699997723103, 254721.604100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401038700", "MAP": "D9-6396-T98", "PARCEL_NAM": "16-63-8", "ACRE": ".355", "LONGITUDE": -64.90834468, "LATITUDE": 18.32554374, "OBJECTID_1": 33089, "PARCEL_NO_": "107401038700", "Tax_Legal_": "16-63-8&16-64 REM.FRENCHMANS BAY #4 FRENCHMAN'S BAY QTR", "Name": "GUMBS, VERONICA P", "Address": "PO Box 304074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.25080824599999, "SHAPE_Area": 1492.3357833299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361185.747800000011921, 255126.186299998313189 ], [ 361176.204000003635883, 255158.183100000023842 ], [ 361186.456699997186661, 255161.821199998259544 ], [ 361199.024400003254414, 255167.112799998372793 ], [ 361215.98309999704361, 255173.929800000041723 ], [ 361221.810699999332428, 255152.445999998599291 ], [ 361238.791799999773502, 255146.885499998927116 ], [ 361185.747800000011921, 255126.186299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401038800", "MAP": "D9-8311-T009", "PARCEL_NAM": "16-19-1", "ACRE": null, "LONGITUDE": -64.91289296, "LATITUDE": 18.327274, "OBJECTID_1": 33090, "PARCEL_NO_": "107401038800", "Tax_Legal_": "16-19-1 FRENCHMAN'S BAY 4 FRENCHMAN'S BAY QTR", "Name": "ADVANI, ARUN S. & MUKTA A", "Address": "9001 HAVENSIGHT MALL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.853895999199999, "SHAPE_Area": 21.2153982749 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360722.249499998986721, 255336.287099998444319 ], [ 360721.110100001096725, 255335.376899998635054 ], [ 360717.103699997067451, 255332.388799998909235 ], [ 360720.507100000977516, 255343.165800001472235 ], [ 360722.249499998986721, 255336.287099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401038900", "MAP": "D9-8311-T009", "PARCEL_NAM": "16-18-1", "ACRE": null, "LONGITUDE": -64.9129464, "LATITUDE": 18.32752853, "OBJECTID_1": 33091, "PARCEL_NO_": "107401038900", "Tax_Legal_": "16-18-1 FRENCHMAN'S BAY 4 FRENCHMAN'S BAY QTR", "Name": "BROWNE, DAVID M and ROBYN T", "Address": "PO BOX 600138", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 26.919137021400001, "SHAPE_Area": 44.0224667158 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360718.509300000965595, 255362.310199998319149 ], [ 360710.540799997746944, 255362.299499999731779 ], [ 360710.858300000429153, 255368.861200001090765 ], [ 360716.214800000190735, 255368.948899999260902 ], [ 360718.509300000965595, 255362.310199998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107402028900", "MAP": "A9-176-T76", "PARCEL_NAM": "14-79", "ACRE": null, "LONGITUDE": -64.90500951, "LATITUDE": 18.32333987, "OBJECTID_1": 33268, "PARCEL_NO_": "107402028900", "Tax_Legal_": "FRENCHMAN'S BAY EST.14-79&14-112 FRENCHMAN'S BAY QTR.", "Name": "FRENCHMAN BAY ESTATE, INC.", "Address": "15-1 Frenchmans Bay Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 262900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 899.543270785, "SHAPE_Area": 2722.1866105600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361447.818000003695488, 254747.518500000238419 ], [ 361450.237000003457069, 254747.53830000013113 ], [ 361453.355200000107288, 254751.096200000494719 ], [ 361457.345100000500679, 254755.648800000548363 ], [ 361461.417499996721745, 254760.295400001108646 ], [ 361473.427599996328354, 254770.315099999308586 ], [ 361475.894400000572205, 254772.810400001704693 ], [ 361485.419799998402596, 254782.445599999278784 ], [ 361486.21169999986887, 254784.140799999237061 ], [ 361494.215499997138977, 254791.172400001436472 ], [ 361497.243199996650219, 254793.075399998575449 ], [ 361505.444600000977516, 254798.230399999767542 ], [ 361514.281300000846386, 254802.561500001698732 ], [ 361525.841300003230572, 254808.227299999445677 ], [ 361543.98929999768734, 254817.122099999338388 ], [ 361558.402199998497963, 254829.061299998313189 ], [ 361559.357100002467632, 254830.173599999397993 ], [ 361560.815200001001358, 254831.872099999338388 ], [ 361564.789800003170967, 254836.501899998635054 ], [ 361571.134199999272823, 254849.008299998939037 ], [ 361572.914700001478195, 254854.86879999935627 ], [ 361575.056100003421307, 254861.917100001126528 ], [ 361577.345600001513958, 254877.13459999859333 ], [ 361578.509300000965595, 254889.97520000115037 ], [ 361578.681400001049042, 254891.874200001358986 ], [ 361578.819700002670288, 254893.400800000876188 ], [ 361577.051299996674061, 254920.722600001841784 ], [ 361576.962499998509884, 254922.094399999827147 ], [ 361577.700499996542931, 254930.122000001370907 ], [ 361579.296999998390675, 254932.03489999845624 ], [ 361579.89639999717474, 254933.710499998182058 ], [ 361582.037600003182888, 254939.696400001645088 ], [ 361583.542900003492832, 254944.427600000053644 ], [ 361584.78830000013113, 254950.022799998521805 ], [ 361584.901699997484684, 254952.383099999278784 ], [ 361585.090700000524521, 254956.31529999896884 ], [ 361585.25280000269413, 254959.689100001007318 ], [ 361585.460799999535084, 254964.018300000578165 ], [ 361585.649999998509884, 254967.95549999922514 ], [ 361585.928099997341633, 254973.74269999936223 ], [ 361586.15820000320673, 254978.531599998474121 ], [ 361586.835100002586842, 254986.266699999570847 ], [ 361587.327100001275539, 254991.888399999588728 ], [ 361587.771499998867512, 254996.966499999165535 ], [ 361588.261799998581409, 255002.569899998605251 ], [ 361588.870800003409386, 255009.529399998486042 ], [ 361589.097499996423721, 255012.119500000029802 ], [ 361589.064699999988079, 255015.970400001853704 ], [ 361588.964400000870228, 255027.739399999380112 ], [ 361587.463299997150898, 255051.522199999541044 ], [ 361587.303199999034405, 255054.058699999004602 ], [ 361587.177699998021126, 255056.048300001770258 ], [ 361586.172499999403954, 255065.258299998939037 ], [ 361583.619499996304512, 255087.223999999463558 ], [ 361581.929499998688698, 255096.287200000137091 ], [ 361579.494400002062321, 255098.167100001126528 ], [ 361577.746100001037121, 255098.152800001204014 ], [ 361576.269199997186661, 255098.140700001269579 ], [ 361576.218800000846386, 255104.050900001078844 ], [ 361578.628799997270107, 255105.1261 ], [ 361578.605400003492832, 255107.870099999010563 ], [ 361586.66669999808073, 255108.147199999541044 ], [ 361590.059199996292591, 255088.543299999088049 ], [ 361590.085900001227856, 255085.401399999856949 ], [ 361590.113099999725819, 255082.210900001227856 ], [ 361590.417999997735023, 255079.485399998724461 ], [ 361595.350199997425079, 255035.390999998897314 ], [ 361595.277699999511242, 255031.44480000063777 ], [ 361595.131499998271465, 255023.492499999701977 ], [ 361594.985600002110004, 255015.55180000141263 ], [ 361594.799199998378754, 255005.411200001835823 ], [ 361594.023800000548363, 254996.57039999961853 ], [ 361593.435300000011921, 254989.861699998378754 ], [ 361593.036799997091293, 254985.317999999970198 ], [ 361592.730400003492832, 254981.824499998241663 ], [ 361592.554700002074242, 254979.041200000792742 ], [ 361592.402500003576279, 254974.300599999725819 ], [ 361591.957000002264977, 254960.425000000745058 ], [ 361591.166900001466274, 254958.518699999898672 ], [ 361591.222599998116493, 254951.975299999117851 ], [ 361590.972000002861023, 254950.766399998217821 ], [ 361589.845899999141693, 254945.335200000554323 ], [ 361588.898999996483326, 254940.768300000578165 ], [ 361587.535199999809265, 254936.824599999934435 ], [ 361585.75110000371933, 254931.665500000119209 ], [ 361584.154600001871586, 254929.752599999308586 ], [ 361583.952500000596046, 254926.570199999958277 ], [ 361583.735200002789497, 254923.150199998170137 ], [ 361583.443599998950958, 254918.558800000697374 ], [ 361584.266099996864796, 254916.665699999779463 ], [ 361584.328000001609325, 254909.401700001209974 ], [ 361584.454999998211861, 254894.482900001108646 ], [ 361584.480400003492832, 254891.509899999946356 ], [ 361584.526799999177456, 254886.059300001710653 ], [ 361584.301899999380112, 254884.471900001168251 ], [ 361583.848300002515316, 254881.271099999547005 ], [ 361583.10080000013113, 254875.995400000363588 ], [ 361582.670299999415874, 254872.95719999819994 ], [ 361582.021499998867512, 254868.378400001674891 ], [ 361581.383199997246265, 254863.873799998313189 ], [ 361580.723700001835823, 254859.219300001859665 ], [ 361580.044299997389317, 254857.05180000141263 ], [ 361579.113200001418591, 254854.081799998879433 ], [ 361578.542900003492832, 254852.262299999594688 ], [ 361577.594700001180172, 254849.23759999871254 ], [ 361576.782700002193451, 254846.647199999541044 ], [ 361576.013400003314018, 254844.19310000166297 ], [ 361574.41160000115633, 254842.913400001823902 ], [ 361574.050399996340275, 254841.976300001144409 ], [ 361573.249899998307228, 254839.89919999986887 ], [ 361572.044799998402596, 254836.772300001233816 ], [ 361569.891999997198582, 254833.575100000947714 ], [ 361569.545900002121925, 254833.061000000685453 ], [ 361567.956900000572205, 254830.701200000941753 ], [ 361566.470799997448921, 254828.494100000709295 ], [ 361564.681000001728535, 254826.683699999004602 ], [ 361561.368000000715256, 254823.332499999552965 ], [ 361558.476000003516674, 254820.4070999994874 ], [ 361556.060900002717972, 254818.691100001335144 ], [ 361553.666900001466274, 254816.990200001746416 ], [ 361550.984099999070168, 254815.241900000721216 ], [ 361547.248000003397465, 254812.807399999350309 ], [ 361543.8125, 254810.568599998950958 ], [ 361539.232400000095367, 254807.583999998867512 ], [ 361536.885600000619888, 254806.473499998450279 ], [ 361531.884999997913837, 254804.107099998742342 ], [ 361525.578000001609325, 254801.122600000351667 ], [ 361522.197200000286102, 254799.522799998521805 ], [ 361517.39190000295639, 254797.2489 ], [ 361507.910300001502037, 254792.762099999934435 ], [ 361505.7820999994874, 254791.464699998497963 ], [ 361502.294799998402596, 254789.338700000196695 ], [ 361494.2820999994874, 254783.362500000745058 ], [ 361488.991800002753735, 254777.729299999773502 ], [ 361483.240699999034405, 254771.605500001460314 ], [ 361481.390900000929832, 254769.635800000280142 ], [ 361479.897900000214577, 254768.046000000089407 ], [ 361477.712200000882149, 254766.217000000178814 ], [ 361468.688699997961521, 254758.666200000792742 ], [ 361467.464699998497963, 254757.427999999374151 ], [ 361464.783600002527237, 254754.715999998152256 ], [ 361462.832999996840954, 254752.743000000715256 ], [ 361461.255300000309944, 254751.147100001573563 ], [ 361459.520000003278255, 254749.391800001263618 ], [ 361456.69650000333786, 254746.535700000822544 ], [ 361450.962200000882149, 254739.281599998474121 ], [ 361447.068400003015995, 254734.262699998915195 ], [ 361444.731200002133846, 254731.239000000059605 ], [ 361447.818000003695488, 254747.518500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107402028900", "MAP": "A9-179-T76", "PARCEL_NAM": "14-112", "ACRE": null, "LONGITUDE": -64.90301135, "LATITUDE": 18.32447075, "OBJECTID_1": 33268, "PARCEL_NO_": "107402028900", "Tax_Legal_": "FRENCHMAN'S BAY EST.14-79&14-112 FRENCHMAN'S BAY QTR.", "Name": "FRENCHMAN BAY ESTATE, INC.", "Address": "15-1 Frenchmans Bay Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 262900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2168.09150254, "SHAPE_Area": 8801.1185389000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361702.004299998283386, 255199.650299999862909 ], [ 361709.302500002086163, 255194.854899998754263 ], [ 361720.61599999666214, 255191.992199998348951 ], [ 361724.038099996745586, 255192.303300000727177 ], [ 361735.925200000405312, 255193.384100001305342 ], [ 361743.194600000977516, 255191.965900000184774 ], [ 361748.856700003147125, 255189.901299998164177 ], [ 361759.408900000154972, 255181.754999998956919 ], [ 361761.702899999916553, 255179.245299998670816 ], [ 361764.483800001442432, 255176.202899999916553 ], [ 361765.920500002801418, 255174.631099998950958 ], [ 361770.828599996864796, 255166.438700001686811 ], [ 361783.086900003254414, 255147.329500000923872 ], [ 361786.342699997127056, 255143.767499998211861 ], [ 361787.892700001597404, 255142.838199999183416 ], [ 361791.205700002610683, 255140.852000001817942 ], [ 361796.057599999010563, 255140.43019999936223 ], [ 361800.082400001585484, 255140.080299999564886 ], [ 361802.594300001859665, 255141.090599998831749 ], [ 361806.51129999756813, 255142.666000001132488 ], [ 361808.180699996650219, 255144.177000001072884 ], [ 361810.512299999594688, 255146.287399999797344 ], [ 361815.046700000762939, 255154.910300001502037 ], [ 361817.873000003397465, 255160.28489999845624 ], [ 361820.889899998903275, 255166.021999999880791 ], [ 361824.001999996602535, 255171.940099999308586 ], [ 361822.322899997234344, 255179.736800000071526 ], [ 361838.57320000231266, 255165.304400000721216 ], [ 361832.923600003123283, 255165.891399998217821 ], [ 361829.707299999892712, 255164.809599999338388 ], [ 361826.509099997580051, 255161.616999998688698 ], [ 361818.707000002264977, 255146.217000000178814 ], [ 361816.199600003659725, 255141.267700001597404 ], [ 361810.598600000143051, 255136.155600000172853 ], [ 361805.780500002205372, 255133.794100001454353 ], [ 361798.536300003528595, 255132.257199998944998 ], [ 361792.88849999755621, 255132.633200000971556 ], [ 361788.846100002527237, 255133.866599999368191 ], [ 361783.990299999713898, 255135.937800001353025 ], [ 361779.116499997675419, 255140.119800001382828 ], [ 361778.188000001013279, 255141.572999998927116 ], [ 361773.783500000834465, 255148.4662000015378 ], [ 361766.361699998378754, 255160.081700000911951 ], [ 361762.23589999973774, 255166.538699999451637 ], [ 361759.859600000083447, 255169.761700000613928 ], [ 361757.726199999451637, 255172.271699998527765 ], [ 361755.434900000691414, 255174.967500001192093 ], [ 361751.763700000941753, 255178.117600001394749 ], [ 361748.124099999666214, 255181.240499999374151 ], [ 361744.071000002324581, 255183.74040000140667 ], [ 361740.978000000119209, 255184.623799998313189 ], [ 361737.604299999773502, 255185.58729999884963 ], [ 361731.666400000452995, 255185.268199998885393 ], [ 361719.066299997270107, 255184.5912000015378 ], [ 361711.798699997365475, 255185.798300001770258 ], [ 361706.079000003635883, 255188.237900000065565 ], [ 361702.832599997520447, 255189.913699999451637 ], [ 361699.651900000870228, 255191.820599999278784 ], [ 361697.185099996626377, 255193.997800000011921 ], [ 361693.964500002563, 255196.840300001204014 ], [ 361692.355499997735023, 255196.405000001192093 ], [ 361692.486100003123283, 255195.355000000447035 ], [ 361693.221199996769428, 255189.445999998599291 ], [ 361703.024599999189377, 255174.538600001484156 ], [ 361704.208200000226498, 255173.218400001525879 ], [ 361707.909199997782707, 255169.09010000154376 ], [ 361710.269400000572205, 255164.25279999896884 ], [ 361712.833400003612041, 255158.997900001704693 ], [ 361726.175200000405312, 255123.032800000160933 ], [ 361734.27759999781847, 255102.8114 ], [ 361738.377499997615814, 255094.823399998247623 ], [ 361740.821599997580051, 255091.888099998235703 ], [ 361744.10980000346899, 255084.526799999177456 ], [ 361751.435000002384186, 255076.565200001001358 ], [ 361755.500699996948242, 255072.587699998170137 ], [ 361762.806100003421307, 255066.947900000959635 ], [ 361777.015600003302097, 255058.974599998444319 ], [ 361779.866400003433228, 255057.375 ], [ 361782.294900000095367, 255056.012299999594688 ], [ 361784.682599999010563, 255054.672499999403954 ], [ 361787.480999998748302, 255052.772599998861551 ], [ 361792.242299996316433, 255049.53999999910593 ], [ 361798.892399996519089, 255045.025100000202656 ], [ 361804.959100000560284, 255040.906199999153614 ], [ 361808.509499996900558, 255038.547800000756979 ], [ 361814.690600000321865, 255034.44200000166893 ], [ 361816.881899997591972, 255033.824099998921156 ], [ 361821.965400002896786, 255032.390599999576807 ], [ 361823.334700003266335, 255032.484600000083447 ], [ 361827.0287000015378, 255032.738099999725819 ], [ 361832.44200000166893, 255033.109600000083447 ], [ 361837.054700002074242, 255034.588799998164177 ], [ 361849.329599998891354, 255038.525199998170137 ], [ 361851.269299998879433, 255038.54109999909997 ], [ 361853.361199997365475, 255038.558200001716614 ], [ 361854.568599998950958, 255038.05629999935627 ], [ 361859.835100002586842, 255035.866900000721216 ], [ 361863.112499997019768, 255029.772100001573563 ], [ 361863.933200001716614, 255028.089999999850988 ], [ 361863.990699999034405, 255021.335499998182058 ], [ 361858.468800000846386, 255006.935899998992682 ], [ 361847.291900001466274, 254993.756700001657009 ], [ 361841.674699999392033, 254990.544300001114607 ], [ 361839.596799999475479, 254989.890999998897314 ], [ 361836.849399998784065, 254989.027100000530481 ], [ 361829.252099998295307, 254988.603199999779463 ], [ 361826.600599996745586, 254988.641699999570847 ], [ 361822.06139999628067, 254989.000399999320507 ], [ 361818.695799998939037, 254989.26630000025034 ], [ 361813.459200002253056, 254989.680100001394749 ], [ 361812.670800000429153, 254987.562699999660254 ], [ 361818.342000000178814, 254984.442699998617172 ], [ 361824.678000003099442, 254979.723700001835823 ], [ 361833.760799996554852, 254972.958799999207258 ], [ 361838.652699999511242, 254966.666000001132488 ], [ 361840.270700000226498, 254966.045899998396635 ], [ 361840.292300000786781, 254963.513000000268221 ], [ 361842.840800002217293, 254957.44480000063777 ], [ 361853.366499997675419, 254932.382399998605251 ], [ 361855.930500000715256, 254926.277399998158216 ], [ 361859.971000000834465, 254925.254999998956919 ], [ 361863.183700002729893, 254926.75899999961257 ], [ 361865.652999997138977, 254920.868599999696016 ], [ 361860.039399996399879, 254917.234000001102686 ], [ 361860.062700003385544, 254914.489999998360872 ], [ 361872.472099997103214, 254877.650199998170137 ], [ 361866.9087999984622, 254868.105500001460314 ], [ 361852.690600000321865, 254909.886599998921156 ], [ 361848.713200002908707, 254921.574299998581409 ], [ 361844.070799998939037, 254932.750799998641014 ], [ 361840.023500002920628, 254942.494800001382828 ], [ 361837.425700001418591, 254948.749099999666214 ], [ 361834.9425999969244, 254954.727099999785423 ], [ 361833.071400001645088, 254959.23200000077486 ], [ 361829.793999999761581, 254965.326900001615286 ], [ 361825.730099998414516, 254969.093299999833107 ], [ 361821.851800002157688, 254971.886900000274181 ], [ 361816.808899998664856, 254975.519400000572205 ], [ 361813.559900000691414, 254977.859700001776218 ], [ 361808.271099999547005, 254981.048000000417233 ], [ 361800.094700001180172, 254985.977099999785423 ], [ 361792.486100003123283, 254990.563900001347065 ], [ 361787.075000002980232, 254991.179999999701977 ], [ 361780.378799997270107, 254991.942499998956919 ], [ 361776.35980000346899, 254990.43189999833703 ], [ 361775.64190000295639, 254989.619600001722574 ], [ 361773.165100000798702, 254986.817200001329184 ], [ 361772.893200002610683, 254985.167700000107288 ], [ 361772.398400001227856, 254982.166799999773502 ], [ 361771.956500001251698, 254981.124699998646975 ], [ 361770.39919999986887, 254977.452500000596046 ], [ 361768.445900000631809, 254972.846400000154972 ], [ 361766.847699999809265, 254971.144499998539686 ], [ 361766.060400001704693, 254969.813999999314547 ], [ 361759.693400003015995, 254959.053700000047684 ], [ 361758.623199999332428, 254958.127700001001358 ], [ 361756.491499997675419, 254956.28319999948144 ], [ 361755.998000003397465, 254954.480900000780821 ], [ 361754.927400000393391, 254950.570900000631809 ], [ 361771.229900002479553, 254930.017200000584126 ], [ 361761.611699998378754, 254923.183400001376867 ], [ 361755.89919999986887, 254931.15819999948144 ], [ 361755.848800003528595, 254937.068500000983477 ], [ 361750.145300000905991, 254943.987900000065565 ], [ 361745.29839999973774, 254945.003699999302626 ], [ 361737.758199997246265, 254940.830400001257658 ], [ 361729.438400000333786, 254936.225699998438358 ], [ 361712.392499998211861, 254926.791400000452995 ], [ 361710.674900002777576, 254924.962400000542402 ], [ 361708.396899998188019, 254922.536800000816584 ], [ 361707.602899998426437, 254919.893899999558926 ], [ 361706.04450000077486, 254914.707100000232458 ], [ 361705.896499998867512, 254912.327599998563528 ], [ 361705.60809999704361, 254907.688799999654293 ], [ 361705.335299998521805, 254903.302200000733137 ], [ 361706.73759999871254, 254899.72239999845624 ], [ 361707.808100000023842, 254896.989700000733137 ], [ 361710.641699999570847, 254892.187699999660254 ], [ 361713.398900002241135, 254887.515299998223782 ], [ 361715.989900000393391, 254883.124499998986721 ], [ 361717.271099999547005, 254881.852299999445677 ], [ 361720.406099997460842, 254878.739100001752377 ], [ 361727.375399999320507, 254871.818599998950958 ], [ 361729.229500003159046, 254870.298599999397993 ], [ 361734.020400002598763, 254866.370900001376867 ], [ 361738.195000000298023, 254862.948499999940395 ], [ 361742.680799998342991, 254859.270899999886751 ], [ 361749.300499998033047, 254853.844000000506639 ], [ 361755.857100002467632, 254841.44310000166297 ], [ 361758.189300000667572, 254838.442899998277426 ], [ 361761.829599998891354, 254833.760099999606609 ], [ 361765.640699997544289, 254828.857599999755621 ], [ 361741.384800001978874, 254836.469500001519918 ], [ 361744.599299997091293, 254837.76240000128746 ], [ 361746.195699997246265, 254839.675299998372793 ], [ 361746.147200003266335, 254845.374400001019239 ], [ 361744.523800000548363, 254846.627700001001358 ], [ 361743.699500001966953, 254848.731899999082088 ], [ 361720.154600001871586, 254867.537599999457598 ], [ 361712.832999996840954, 254875.077100001275539 ], [ 361711.195200003683567, 254878.019000001251698 ], [ 361703.03320000320673, 254889.562300000339746 ], [ 361698.100000001490116, 254900.709899999201298 ], [ 361697.993900001049042, 254913.163600001484156 ], [ 361699.531000003218651, 254922.042100001126528 ], [ 361702.707699999213219, 254927.767599999904633 ], [ 361705.023699998855591, 254930.23369999974966 ], [ 361707.54559999704361, 254932.482599999755621 ], [ 361710.899700000882149, 254934.744500000029802 ], [ 361715.251000002026558, 254937.206599999219179 ], [ 361730.565800003707409, 254945.607299998402596 ], [ 361733.189400002360344, 254946.593299999833107 ], [ 361737.53660000115633, 254949.490100000053644 ], [ 361740.785400003194809, 254951.655000001192093 ], [ 361742.811200000345707, 254953.004900000989437 ], [ 361746.300499998033047, 254956.298099998384714 ], [ 361751.610500000417233, 254961.309500001370907 ], [ 361761.963100001215935, 254976.592999998480082 ], [ 361764.331699997186661, 254982.522999998182058 ], [ 361763.424599997699261, 254994.336800001561642 ], [ 361760.156199999153614, 254999.376299999654293 ], [ 361752.041000001132488, 255005.431600000709295 ], [ 361749.223600000143051, 255008.139499999582767 ], [ 361739.845600001513958, 255017.153000000864267 ], [ 361734.977099999785423, 255020.701799999922514 ], [ 361731.083999998867512, 255024.605399999767542 ], [ 361719.524099998176098, 255036.196199998259544 ], [ 361717.092600002884865, 255037.653999999165535 ], [ 361716.273699998855591, 255039.124899998307228 ], [ 361720.267499998211861, 255043.590599998831749 ], [ 361725.11259999871254, 255042.785900000482798 ], [ 361729.937899999320507, 255044.302999999374151 ], [ 361736.440499998629093, 255038.234499998390675 ], [ 361734.858499996364117, 255034.633000001311302 ], [ 361734.887199997901917, 255031.255699999630451 ], [ 361735.70610000193119, 255029.784800000488758 ], [ 361736.445100001990795, 255029.205200001597404 ], [ 361737.970200002193451, 255028.009100001305342 ], [ 361742.258900001645088, 255024.645399998873472 ], [ 361752.753799997270107, 255016.414299998432398 ], [ 361759.357100002467632, 255012.559200000017881 ], [ 361763.120200000703335, 255010.362199999392033 ], [ 361770.582599997520447, 255006.005499999970198 ], [ 361781.111400000751019, 255000.603300001472235 ], [ 361788.384400002658367, 254998.763000000268221 ], [ 361794.244000002741814, 254998.381700001657009 ], [ 361803.032300002872944, 254997.809799998998642 ], [ 361818.480499997735023, 254996.804499998688698 ], [ 361828.725199997425079, 254996.137800000607967 ], [ 361830.777500003576279, 254996.423599999397993 ], [ 361838.390100002288818, 254997.483500000089407 ], [ 361840.482799999415874, 254998.808699999004602 ], [ 361844.806500002741814, 255001.546799998730421 ], [ 361852.776100002229214, 255012.588899999856949 ], [ 361855.93299999833107, 255020.636300001293421 ], [ 361856.710500001907349, 255024.020100001245737 ], [ 361855.047600001096725, 255029.917100001126528 ], [ 361850.200699999928474, 255030.932900000363588 ], [ 361844.221000000834465, 255029.015299998223782 ], [ 361833.313100002706051, 255025.517400000244379 ], [ 361830.289200000464916, 255025.334300000220537 ], [ 361821.223800003528595, 255024.785199999809265 ], [ 361813.142700001597404, 255026.829999998211861 ], [ 361806.381899997591972, 255031.213100001215935 ], [ 361801.333800002932549, 255034.485800001770258 ], [ 361794.493199996650219, 255038.920699998736382 ], [ 361782.027699999511242, 255047.066700000315905 ], [ 361780.236699998378754, 255048.236999999731779 ], [ 361775.031999997794628, 255051.638199999928474 ], [ 361768.161100000143051, 255055.406599998474121 ], [ 361766.502400003373623, 255056.316399998962879 ], [ 361757.208599999547005, 255061.413699999451637 ], [ 361748.274499997496605, 255068.939899999648333 ], [ 361741.789800003170967, 255072.897599998861551 ], [ 361729.488300003111362, 255097.072700001299381 ], [ 361727.040600001811981, 255100.43019999936223 ], [ 361722.103799998760223, 255111.999899998307228 ], [ 361721.555399999022484, 255113.482200000435114 ], [ 361717.976999998092651, 255123.154100000858307 ], [ 361713.189099997282028, 255136.050000000745058 ], [ 361704.772100001573563, 255158.720800001174212 ], [ 361701.492899999022484, 255165.026799999177456 ], [ 361700.596199996769428, 255165.996300000697374 ], [ 361697.423500001430511, 255169.426500000059605 ], [ 361693.649999998509884, 255174.763300001621246 ], [ 361687.629100002348423, 255183.278499998152256 ], [ 361685.157999999821186, 255189.379999998956919 ], [ 361685.113099999725819, 255194.656899999827147 ], [ 361670.487999998033047, 255207.625 ], [ 361667.427199997007847, 255209.931499999016523 ], [ 361659.125900000333786, 255216.186900001019239 ], [ 361658.244000002741814, 255225.0456000007689 ], [ 361674.368500001728535, 255225.388700000941753 ], [ 361688.998999997973442, 255211.787300001829863 ], [ 361690.088799998164177, 255210.97410000115633 ], [ 361697.11429999768734, 255205.73200000077486 ], [ 361702.004299998283386, 255199.650299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402029900", "MAP": "D9-6285-T97", "PARCEL_NAM": "14-66B-1", "ACRE": null, "LONGITUDE": -64.90201929, "LATITUDE": 18.32386325, "OBJECTID_1": 33277, "PARCEL_NO_": "107402029900", "Tax_Legal_": "14-66B ESTATE FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "RYAN, BERYL", "Address": "PO Box 600295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60600, "Improved_V": 200200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.62005651299999, "SHAPE_Area": 609.458595898 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361881.219999998807907, 254986.646099999547005 ], [ 361887.115900002419949, 254957.141199998557568 ], [ 361850.803099997341633, 254960.221500001847744 ], [ 361875.022299997508526, 254986.708599999547005 ], [ 361881.219999998807907, 254986.646099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402028800", "MAP": "D9-6285-T97", "PARCEL_NAM": "14-66A-1", "ACRE": null, "LONGITUDE": -64.90195751, "LATITUDE": 18.32403706, "OBJECTID_1": 33267, "PARCEL_NO_": "107402028800", "Tax_Legal_": "14-66A ESTATE FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "POLE, HENVILLE A. , JR. & BALY, JOSI", "Address": "PO Box 364106", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 54000, "Improved_V": 188100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 20.078293631699999, "SHAPE_Area": 18.267598988500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361881.219999998807907, 254986.646099999547005 ], [ 361875.022299997508526, 254986.708599999547005 ], [ 361880.363300003111362, 254992.549699999392033 ], [ 361881.219999998807907, 254986.646099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403026700", "MAP": "G9-1433-T70", "PARCEL_NAM": "14-33EA", "ACRE": null, "LONGITUDE": -64.90784387, "LATITUDE": 18.32175838, "OBJECTID_1": 37215, "PARCEL_NO_": "107403026700", "Tax_Legal_": "14-33EA&Eb FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "BLANC, AUGUSTINA", "Address": "PO Box 9991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 190200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.17136481, "SHAPE_Area": 946.46655694900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361272.218199998140335, 254713.697700001299381 ], [ 361228.691600002348423, 254723.34910000115633 ], [ 361251.936300002038479, 254739.793600000441074 ], [ 361275.175499998033047, 254756.871300000697374 ], [ 361272.218199998140335, 254713.697700001299381 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403026700", "MAP": "D9-6140-T96", "PARCEL_NAM": "14-33EB", "ACRE": null, "LONGITUDE": -64.90783128, "LATITUDE": 18.32160515, "OBJECTID_1": 37215, "PARCEL_NO_": "107403026700", "Tax_Legal_": "14-33EA&Eb FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "BLANC, AUGUSTINA", "Address": "PO Box 9991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32400, "Improved_V": 190200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.750591383500002, "SHAPE_Area": 49.539464578900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361266.406999997794628, 254714.986200001090765 ], [ 361263.803700000047684, 254709.355000000447035 ], [ 361250.448299996554852, 254718.524900000542402 ], [ 361266.406999997794628, 254714.986200001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403034900", "MAP": "D9-5845-T94", "PARCEL_NAM": "15-4-B", "ACRE": ".535", "LONGITUDE": -64.91110501, "LATITUDE": 18.31543769, "OBJECTID_1": 37256, "PARCEL_NO_": "107403034900", "Tax_Legal_": "15-4B FRENCHMAN'S BAY FRENCHMAN'S BAY QTR", "Name": "DAVIS, WALTER A., JR. & ALISON J.", "Address": "PO Box 171", "City": "Union", "State": "West Virginia", "Zip": 24983, "Country": "United States", "Land_Value": 59100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.876815658, "SHAPE_Area": 2070.1684186000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360892.262100003659725, 254010.160799998790026 ], [ 360904.074799999594688, 254039.979800000786781 ], [ 360907.249799996614456, 254048.2347999997437 ], [ 360917.092399999499321, 254056.013599999248981 ], [ 360927.569899998605251, 254060.617300000041723 ], [ 360927.252400003373623, 254062.363600000739098 ], [ 360928.639300003647804, 254064.694200001657009 ], [ 360931.159100003540516, 254058.713500000536442 ], [ 360935.233800001442432, 254053.680599998682737 ], [ 360941.741800002753735, 254046.978799998760223 ], [ 360944.175200000405312, 254045.309999998658895 ], [ 360948.57209999859333, 254042.800500001758337 ], [ 360928.397799998521805, 254004.228700000792742 ], [ 360922.75, 254004.604699999094009 ], [ 360920.338200002908707, 254003.740600001066923 ], [ 360915.532700002193451, 253999.901599999517202 ], [ 360909.123599998652935, 253994.993999999016523 ], [ 360905.08839999884367, 253995.383099999278784 ], [ 360903.452399998903275, 253998.113899998366833 ], [ 360905.002099998295307, 254005.514899998903275 ], [ 360904.172399997711182, 254008.252300001680851 ], [ 360901.749899998307228, 254008.654699999839067 ], [ 360896.116499997675419, 254007.342000000178814 ], [ 360892.882299996912479, 254008.370999999344349 ], [ 360892.262100003659725, 254010.160799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403035000", "MAP": "D9-4266-T88", "PARCEL_NAM": "15-23A", "ACRE": ".014", "LONGITUDE": -64.91008817, "LATITUDE": 18.31653183, "OBJECTID_1": 37257, "PARCEL_NO_": "107403035000", "Tax_Legal_": "15-23A FRENCHMAN'S BAY FRENCHMANS BAY QTR.", "Name": "HERMAN, JOSEPHINE", "Address": "1522 Frenchmans Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.348894374399997, "SHAPE_Area": 39.856945655399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361025.562299996614456, 254142.75959999859333 ], [ 361024.57880000025034, 254167.346900001168251 ], [ 361028.824299998581409, 254142.261500000953674 ], [ 361025.562299996614456, 254142.75959999859333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403038700", "MAP": "D9-8296-T009", "PARCEL_NAM": "15-9A", "ACRE": ".019", "LONGITUDE": -64.90919354, "LATITUDE": 18.31546383, "OBJECTID_1": 37270, "PARCEL_NO_": "107403038700", "Tax_Legal_": "15-9A FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "SMITH, CONRAD W", "Address": "PO Box 6097", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 3100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.765736622, "SHAPE_Area": 70.310722166900007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361130.225599996745586, 254034.660599999129772 ], [ 361106.526000000536442, 254025.383499998599291 ], [ 361128.878300003707409, 254040.066700000315905 ], [ 361130.225599996745586, 254034.660599999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107403038600", "MAP": "D9-8296-T009", "PARCEL_NAM": "15-10A", "ACRE": ".019", "LONGITUDE": -64.90949085, "LATITUDE": 18.31531485, "OBJECTID_1": 37269, "PARCEL_NO_": "107403038600", "Tax_Legal_": "15-10A FRENCHMAN'S BAY NO.4 FRENCHMAN'S BAY QTR", "Name": "BENNETT, CHRISTOPHER M. & NICOLE M.", "Address": "46331 Pinehurst Dr", "City": "Northville", "State": "Michigan", "Zip": 48168, "Country": "United States", "Land_Value": 2100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.041392109, "SHAPE_Area": 57.7766933885 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361081.256800003349781, 254013.907699998468161 ], [ 361106.526000000536442, 254025.383499998599291 ], [ 361083.972900003194809, 254010.568300001323223 ], [ 361081.256800003349781, 254013.907699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404029900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9034868, "LATITUDE": 18.31517029, "OBJECTID_1": 37385, "PARCEL_NO_": "107404029900", "Tax_Legal_": "FRENCHMAN'S BAY ROADS 21A THRU Y FRENCHMANS BAY QTRS", "Name": "GREN CAY PROPERTY OWNERS ASSOC", "Address": "PO Box 305673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 384600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 739.42898161599999, "SHAPE_Area": 2751.9297188300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361866.543799996376038, 253964.410999998450279 ], [ 361870.629299998283386, 253958.111600000411272 ], [ 361865.366300001740456, 253955.786699999123812 ], [ 361859.233800001442432, 253953.077599998563528 ], [ 361854.562399998307228, 253951.013999998569489 ], [ 361846.314300000667572, 253948.782299999147654 ], [ 361839.276600003242493, 253946.878100000321865 ], [ 361836.861199997365475, 253946.436200000345707 ], [ 361829.582299999892712, 253945.271899998188019 ], [ 361821.561099998652935, 253943.988899998366833 ], [ 361817.001500003039837, 253944.26969999819994 ], [ 361808.31700000166893, 253944.80460000038147 ], [ 361797.357299998402596, 253945.479600001126528 ], [ 361781.672200001776218, 253946.486099999397993 ], [ 361768.820799998939037, 253948.345899999141693 ], [ 361765.072499997913837, 253949.015000000596046 ], [ 361760.223800003528595, 253950.241900000721216 ], [ 361747.163000002503395, 253954.474500000476837 ], [ 361742.434600003063679, 253956.006900001317263 ], [ 361735.191399998962879, 253959.472600001841784 ], [ 361730.289499998092651, 253961.81810000166297 ], [ 361722.818899996578693, 253966.338500000536442 ], [ 361717.139499999582767, 253969.775100000202656 ], [ 361709.156800001859665, 253974.605500001460314 ], [ 361705.162600003182888, 253977.022300001233816 ], [ 361698.66889999806881, 253982.035399999469519 ], [ 361690.818400003015995, 253988.159299999475479 ], [ 361685.857299998402596, 253992.029399998486042 ], [ 361683.075300000607967, 253994.199499998241663 ], [ 361678.348399996757507, 253997.886900000274181 ], [ 361672.692500002682209, 254002.298900000751019 ], [ 361668.759900003671646, 254007.357799999415874 ], [ 361666.170100003480911, 254010.6891999989748 ], [ 361662.804200001060963, 254017.941799998283386 ], [ 361660.064999997615814, 254023.843899998813868 ], [ 361656.312700003385544, 254031.929000001400709 ], [ 361653.287799999117851, 254037.822599999606609 ], [ 361652.2128000035882, 254039.916999999433756 ], [ 361651.124200001358986, 254045.103000000119209 ], [ 361650.531900003552437, 254047.924800001084805 ], [ 361649.652699999511242, 254050.498399998992682 ], [ 361648.877899996936321, 254052.766399998217821 ], [ 361649.052400000393391, 254055.339200001209974 ], [ 361649.225900001823902, 254057.896099999547005 ], [ 361649.383100003004074, 254060.213799998164177 ], [ 361649.594300001859665, 254063.326999999582767 ], [ 361653.314499996602535, 254081.168800000101328 ], [ 361655.800200000405312, 254092.086500000208616 ], [ 361655.776799999177456, 254094.83049999922514 ], [ 361657.360699996352196, 254098.221000000834465 ], [ 361658.065700002014637, 254100.737100001424551 ], [ 361660.553700000047684, 254109.616099998354912 ], [ 361661.273599997162819, 254112.185199998319149 ], [ 361661.253799997270107, 254114.506999999284744 ], [ 361663.730599999427795, 254121.669100001454353 ], [ 361664.401699997484684, 254123.6097999997437 ], [ 361665.991999998688698, 254132.642499998211861 ], [ 361666.709200002253056, 254136.716499999165535 ], [ 361667.486699998378754, 254140.100400000810623 ], [ 361675.558799996972084, 254139.111000001430511 ], [ 361674.781300000846386, 254135.727099999785423 ], [ 361672.344899997115135, 254126.046999998390675 ], [ 361670.31530000269413, 254117.983199998736382 ], [ 361667.89750000089407, 254108.377000000327826 ], [ 361664.677100002765656, 254095.581900000572205 ], [ 361662.608900003135204, 254087.364999998360872 ], [ 361661.005000002682209, 254080.992499999701977 ], [ 361660.002700001001358, 254077.010000001639128 ], [ 361659.181900002062321, 254073.749000001698732 ], [ 361658.049500003457069, 254067.857599999755621 ], [ 361657.534500002861023, 254063.361400000751019 ], [ 361657.368000000715256, 254059.558699999004602 ], [ 361657.175399996340275, 254055.159200001507998 ], [ 361657.174400001764297, 254049.522399999201298 ], [ 361658.033600002527237, 254046.369899999350309 ], [ 361659.449799999594688, 254042.298300001770258 ], [ 361661.156599998474121, 254038.908100001513958 ], [ 361662.730800002813339, 254035.781199999153614 ], [ 361666.980800002813339, 254027.214099999517202 ], [ 361669.672700002789497, 254021.787799999117851 ], [ 361671.312200002372265, 254018.482700001448393 ], [ 361673.247699998319149, 254014.581199999898672 ], [ 361675.037699997425079, 254010.972899999469519 ], [ 361678.235100001096725, 254008.150800000876188 ], [ 361682.455899998545647, 254004.425599999725819 ], [ 361686.620700001716614, 254000.749600000679493 ], [ 361692.0996999964118, 253995.913800001144409 ], [ 361696.090400002896786, 253993.004900000989437 ], [ 361700.982400000095367, 253989.438999999314547 ], [ 361705.736100003123283, 253985.973799999803305 ], [ 361709.496500000357628, 253983.232799999415874 ], [ 361711.573499999940395, 253981.718800000846386 ], [ 361718.714299999177456, 253977.662099998444319 ], [ 361727.95889999717474, 253972.410199999809265 ], [ 361732.570299997925758, 253969.790399998426437 ], [ 361738.313100002706051, 253966.527899999171495 ], [ 361743.880000002682209, 253975.650400001555681 ], [ 361751.982699997723103, 253971.072700001299381 ], [ 361749.587099999189377, 253968.308899998664856 ], [ 361749.612000003457069, 253965.381900001317263 ], [ 361749.633799999952316, 253962.820799998939037 ], [ 361752.074400000274181, 253960.307700000703335 ], [ 361762.575300000607967, 253957.293699998408556 ], [ 361770.666299998760223, 253954.971400000154972 ], [ 361782.508699998259544, 253953.519900001585484 ], [ 361790.039399996399879, 253952.596799999475479 ], [ 361792.855800002813339, 253952.563200000673532 ], [ 361796.881999999284744, 253952.515099998563528 ], [ 361800.523199997842312, 253952.471599999815226 ], [ 361806.619000002741814, 253952.3564000017941 ], [ 361814.667499996721745, 253952.2043999992311 ], [ 361822.085100002586842, 253952.0641999989748 ], [ 361825.675999999046326, 253952.296399999409914 ], [ 361832.770300000905991, 253953.36879999935627 ], [ 361837.601000003516674, 253954.252700001001358 ], [ 361840.360299997031689, 253954.887699998915195 ], [ 361845.353799998760223, 253956.036800000816584 ], [ 361848.063299998641014, 253956.660300001502037 ], [ 361858.886399999260902, 253961.238699998706579 ], [ 361866.543799996376038, 253964.410999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107404030800", "MAP": null, "PARCEL_NAM": "27-L", "ACRE": null, "LONGITUDE": -64.90062265, "LATITUDE": 18.32098288, "OBJECTID_1": 37393, "PARCEL_NO_": "107404030800", "Tax_Legal_": "EST. BOLONGO (ROADWAY) 27-L FRENCHMAN BAY QTR", "Name": "BOLONGO BAY HOTEL CORP", "Address": "7150 Estate Bolongo Bay Hotel Corp", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 718.79503052899997, "SHAPE_Area": 2747.6717240900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361935.677699998021126, 254652.086300000548363 ], [ 361921.896700002253056, 254660.628400001674891 ], [ 361923.22240000218153, 254660.754999998956919 ], [ 361924.313799999654293, 254660.859200000762939 ], [ 361925.915600001811981, 254662.138900000602007 ], [ 361925.391099996864796, 254664.063499998301268 ], [ 361924.250900000333786, 254668.247000001370907 ], [ 361921.141800001263618, 254675.109600000083447 ], [ 361919.74040000140667, 254678.2027000002563 ], [ 361918.788900002837181, 254680.30290000140667 ], [ 361918.317100003361702, 254681.344200000166893 ], [ 361917.676299996674061, 254682.758600000292063 ], [ 361916.016500003635883, 254684.751899998635054 ], [ 361915.232199996709824, 254685.693900000303984 ], [ 361912.887100003659725, 254690.144200000911951 ], [ 361911.54450000077486, 254692.69200000166893 ], [ 361911.134099997580051, 254693.470899999141693 ], [ 361910.374600000679493, 254695.472899999469519 ], [ 361909.673000000417233, 254697.322500001639128 ], [ 361909.085699997842312, 254698.870700001716614 ], [ 361908.659400001168251, 254699.994500000029802 ], [ 361910.086499996483326, 254705.804400000721216 ], [ 361910.997400000691414, 254709.512899998575449 ], [ 361912.578500002622604, 254710.608300000429153 ], [ 361913.519299998879433, 254711.260200001299381 ], [ 361915.005599997937679, 254712.289900001138449 ], [ 361917.564099997282028, 254712.598200000822544 ], [ 361920.644400000572205, 254712.969300001859665 ], [ 361922.283500000834465, 254712.447799999266863 ], [ 361923.878700003027916, 254711.94029999896884 ], [ 361931.20160000026226, 254707.859600000083447 ], [ 361935.329899996519089, 254705.559200000017881 ], [ 361951.23650000244379, 254696.695300001651049 ], [ 361961.958800002932549, 254690.720400001853704 ], [ 361970.131399996578693, 254686.192400000989437 ], [ 361974.238200001418591, 254683.916999999433756 ], [ 361977.352399997413158, 254682.191599998623133 ], [ 361980.618400000035763, 254679.986900001764297 ], [ 361986.399800002574921, 254676.084199998527765 ], [ 361992.56700000166893, 254671.921000000089407 ], [ 361999.208599999547005, 254667.437699999660254 ], [ 362003.305500000715256, 254664.672100000083447 ], [ 362006.109600000083447, 254662.786200001835823 ], [ 362014.073499999940395, 254657.430100001394749 ], [ 362021.216600000858307, 254652.625900000333786 ], [ 362024.39190000295639, 254650.49040000140667 ], [ 362029.362199999392033, 254647.886399999260902 ], [ 362034.294399999082088, 254645.302400000393391 ], [ 362037.123800002038479, 254643.820099998265505 ], [ 362040.899400003254414, 254641.842099998146296 ], [ 362043.831500001251698, 254640.305900000035763 ], [ 362056.858300000429153, 254634.931499999016523 ], [ 362061.344499997794628, 254633.080699998885393 ], [ 362065.894299998879433, 254631.203600000590086 ], [ 362068.917099997401237, 254629.956500001251698 ], [ 362080.602300003170967, 254626.548700001090765 ], [ 362091.319200001657009, 254623.423300001770258 ], [ 362112.569399997591972, 254617.225999999791384 ], [ 362128.733400002121925, 254612.925299998372793 ], [ 362133.969499997794628, 254612.075399998575449 ], [ 362139.70099999755621, 254611.145199999213219 ], [ 362143.44879999756813, 254610.536899998784065 ], [ 362147.305600002408028, 254609.910900000482798 ], [ 362157.523800000548363, 254608.436099998652935 ], [ 362161.490099996328354, 254607.863600000739098 ], [ 362163.389899998903275, 254607.589400000870228 ], [ 362166.682300001382828, 254607.114199999719858 ], [ 362175.842200003564358, 254604.114799998700619 ], [ 362180.516599997878075, 254602.584100000560284 ], [ 362182.56700000166893, 254601.91270000115037 ], [ 362183.663400001823902, 254601.553700000047684 ], [ 362179.687600001692772, 254594.977200001478195 ], [ 362174.012999996542931, 254597.028799999505281 ], [ 362171.391800001263618, 254597.976399999111891 ], [ 362169.981299996376038, 254598.486400000751019 ], [ 362162.159599997103214, 254599.994899999350309 ], [ 362159.481200002133846, 254600.511399999260902 ], [ 362143.985399998724461, 254603.243700001388788 ], [ 362133.946400001645088, 254605.013799998909235 ], [ 362128.317800000309944, 254606.006299998611212 ], [ 362123.617399998009205, 254606.83500000089407 ], [ 362119.927000001072884, 254607.485800001770258 ], [ 362118.29450000077486, 254607.773600000888109 ], [ 362105.63629999756813, 254611.380399998277426 ], [ 362101.022699996829033, 254612.695099998265505 ], [ 362096.838799998164177, 254613.887200001627207 ], [ 362091.889700002968311, 254615.297400001436472 ], [ 362087.643100000917912, 254616.507399998605251 ], [ 362084.329599998891354, 254617.45160000026226 ], [ 362078.686300002038479, 254619.059599999338388 ], [ 362070.343299999833107, 254621.481199998408556 ], [ 362056.052000001072884, 254625.629399999976158 ], [ 362045.527900002896786, 254630.264199998229742 ], [ 362042.083599999547005, 254631.780999999493361 ], [ 362039.966600000858307, 254632.713300000876188 ], [ 362038.256300002336502, 254633.466499999165535 ], [ 362035.816899999976158, 254634.540800001472235 ], [ 362029.337899997830391, 254638.066799998283386 ], [ 362023.996399998664856, 254640.973799999803305 ], [ 362018.576700001955032, 254643.923300001770258 ], [ 362015.563799999654293, 254645.563000001013279 ], [ 362013.943999998271465, 254646.394099999219179 ], [ 362004.789099998772144, 254653.552600000053644 ], [ 361997.7753000035882, 254659.036899998784065 ], [ 361993.859499998390675, 254662.098799999803305 ], [ 361992.8378000035882, 254662.897700000554323 ], [ 361988.640100002288818, 254665.637299999594688 ], [ 361982.648800000548363, 254669.547499999403954 ], [ 361980.528200000524521, 254670.931499999016523 ], [ 361978.611000001430511, 254672.182799998670816 ], [ 361976.749499998986721, 254673.397700000554323 ], [ 361974.311899997293949, 254674.988499999046326 ], [ 361971.755000002682209, 254676.657299999147654 ], [ 361969.086199998855591, 254678.135999999940395 ], [ 361966.941699996590614, 254679.324099998921156 ], [ 361964.42620000243187, 254680.717799998819828 ], [ 361962.160300001502037, 254681.973299998790026 ], [ 361959.166400000452995, 254683.631999999284744 ], [ 361955.875299997627735, 254685.455400001257658 ], [ 361950.88459999859333, 254688.220499999821186 ], [ 361946.379799999296665, 254690.716400001198053 ], [ 361941.23480000346899, 254693.56700000166893 ], [ 361939.036200001835823, 254694.785199999809265 ], [ 361936.015100002288818, 254696.458999998867512 ], [ 361934.524700000882149, 254697.284699998795986 ], [ 361933.310900002717972, 254697.957299999892712 ], [ 361931.908299997448921, 254698.734400000423193 ], [ 361930.916900001466274, 254699.283599998801947 ], [ 361929.089199997484684, 254700.296300001442432 ], [ 361927.875399999320507, 254700.968800000846386 ], [ 361926.655000001192093, 254701.644999999552965 ], [ 361925.574000000953674, 254702.243900001049042 ], [ 361924.366700001060963, 254702.47069999948144 ], [ 361922.343299999833107, 254702.850699998438358 ], [ 361919.130699999630451, 254701.346799999475479 ], [ 361918.369300000369549, 254696.063200000673532 ], [ 361920.201499998569489, 254693.104699999094009 ], [ 361922.18639999628067, 254689.89979999884963 ], [ 361924.092600002884865, 254686.821899998933077 ], [ 361927.504399999976158, 254679.350900001823902 ], [ 361930.184500001370907, 254673.482400000095367 ], [ 361931.487899996340275, 254670.628299999982119 ], [ 361932.939800001680851, 254665.122999999672174 ], [ 361933.51129999756813, 254660.724300000816584 ], [ 361934.036300003528595, 254655.450399998575449 ], [ 361935.677699998021126, 254652.086300000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404033600", "MAP": "D9-1834-T81", "PARCEL_NAM": "26-3", "ACRE": ".037", "LONGITUDE": -64.90060421, "LATITUDE": 18.32086758, "OBJECTID_1": 37421, "PARCEL_NO_": "107404033600", "Tax_Legal_": "26-1A&26-3 BOLONGO FRENCHMAN BAY QTR.", "Name": "HENDRICKS, CLEMENT", "Address": "7171 Estate Bolongo", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 75500, "Improved_V": 262300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.464464291399999, "SHAPE_Area": 59.692321017200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362034.463799998164177, 254632.429099999368191 ], [ 362013.995899997651577, 254643.387899998575449 ], [ 362015.563799999654293, 254645.563000001013279 ], [ 362035.816899999976158, 254634.540800001472235 ], [ 362034.463799998164177, 254632.429099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87332981, "LATITUDE": 18.32451058, "OBJECTID_1": 38324, "PARCEL_NO_": "107602013000", "Tax_Legal_": "MARIENDAHL ESTATE 2-32 No.4 RED HOOK QTR.", "Name": "BREDY, FRITZNOL, RUDY & CHRISTINE", "Address": "P O OX 503201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39400, "Improved_V": 245500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.33040312700001, "SHAPE_Area": 555.94178522599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364922.463200002908707, 255062.040199998766184 ], [ 364870.683200001716614, 255051.432300001382828 ], [ 364872.272399999201298, 255054.189500000327826 ], [ 364882.725699998438358, 255057.65260000154376 ], [ 364889.950199998915195, 255061.511399999260902 ], [ 364899.563000001013279, 255068.978300001472235 ], [ 364910.729099996387959, 255083.424100000411272 ], [ 364910.979999996721745, 255084.075199998915195 ], [ 364913.095799997448921, 255089.565200001001358 ], [ 364914.696099996566772, 255084.796300001442432 ], [ 364918.597499996423721, 255073.95380000025034 ], [ 364922.463200002908707, 255062.040199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87321188, "LATITUDE": 18.324735, "OBJECTID_1": 38327, "PARCEL_NO_": "107602013300", "Tax_Legal_": "MARIENDAHL ESTATE 2-33 No.4 RED HOOK QTR.", "Name": "ALEXIS D JOSPEH and JERELYN WILLIAMS", "Address": "PO Box 9647", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.905451626199998, "SHAPE_Area": 65.286887699499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364914.696099996566772, 255084.796300001442432 ], [ 364913.095799997448921, 255089.565200001001358 ], [ 364915.473399996757507, 255094.439800001680851 ], [ 364917.092299997806549, 255104.727899998426437 ], [ 364919.232500001788139, 255090.252099998295307 ], [ 364920.482400000095367, 255085.919199999421835 ], [ 364914.696099996566772, 255084.796300001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87316704, "LATITUDE": 18.32457351, "OBJECTID_1": 38324, "PARCEL_NO_": "107602013000", "Tax_Legal_": "MARIENDAHL ESTATE 2-32 No.4 RED HOOK QTR.", "Name": "BREDY, FRITZNOL, RUDY & CHRISTINE", "Address": "P O OX 503201", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39400, "Improved_V": 245500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 60.689231826799997, "SHAPE_Area": 140.186024245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364922.463200002908707, 255062.040199998766184 ], [ 364918.597499996423721, 255073.95380000025034 ], [ 364914.696099996566772, 255084.796300001442432 ], [ 364920.482400000095367, 255085.919199999421835 ], [ 364922.407499998807907, 255079.245400000363588 ], [ 364928.956500001251698, 255063.370400000363588 ], [ 364922.463200002908707, 255062.040199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601040100", "MAP": "D9-5063-T91", "PARCEL_NAM": "2H", "ACRE": ".61", "LONGITUDE": -64.87391128, "LATITUDE": 18.32524586, "OBJECTID_1": 38005, "PARCEL_NO_": "107601040100", "Tax_Legal_": "MARIENDAHL ESTATE 2G,2H,2P,2Q&2R No.4 RED HOOK QTR.", "Name": "FOSTER, JOHN & CLAIRE", "Address": "8180 Collier St SW", "City": "Covington", "State": "Georgia", "Zip": 30014, "Country": "United States", "Land_Value": 16700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 528.52662670100005, "SHAPE_Area": 2300.9963369799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364870.683200001716614, 255051.432300001382828 ], [ 364861.737300001084805, 255049.756000000983477 ], [ 364852.666599996387959, 255077.568199999630451 ], [ 364850.299599997699261, 255084.825800001621246 ], [ 364848.581900000572205, 255090.092599999159575 ], [ 364847.519299998879433, 255092.471599999815226 ], [ 364846.212899997830391, 255095.396099999547005 ], [ 364845.293700002133846, 255097.453999999910593 ], [ 364842.762800000607967, 255100.32039999961853 ], [ 364841.222599998116493, 255102.064699999988079 ], [ 364837.171899996697903, 255104.633099999278784 ], [ 364829.061300002038479, 255109.775600001215935 ], [ 364825.076899997889996, 255112.115200001746416 ], [ 364820.847300000488758, 255114.598700001835823 ], [ 364817.459600001573563, 255116.587900001555681 ], [ 364813.859600000083447, 255118.701799999922514 ], [ 364810.601899996399879, 255120.614700000733137 ], [ 364806.369499996304512, 255123.099899999797344 ], [ 364802.305600002408028, 255126.866300001740456 ], [ 364799.856100000441074, 255130.434900000691414 ], [ 364798.205700002610683, 255134.854299999773502 ], [ 364798.578199997544289, 255139.258099999278784 ], [ 364798.938299998641014, 255143.5152000002563 ], [ 364799.696800000965595, 255146.074799999594688 ], [ 364800.505900003015995, 255148.805300001055002 ], [ 364802.252099998295307, 255150.897700000554323 ], [ 364803.623700000345707, 255152.541200000792742 ], [ 364804.787100002169609, 255153.935199998319149 ], [ 364806.891699999570847, 255156.456999998539686 ], [ 364811.944600000977516, 255160.791700001806021 ], [ 364814.096400000154972, 255162.637600000947714 ], [ 364816.940200001001358, 255164.532600000500679 ], [ 364818.845499999821186, 255165.802299998700619 ], [ 364822.114500001072884, 255167.980599999427795 ], [ 364826.07599999755621, 255171.527899999171495 ], [ 364830.917400002479553, 255175.863099999725819 ], [ 364838.910400003194809, 255184.161200001835823 ], [ 364841.447200000286102, 255187.380399998277426 ], [ 364845.067699998617172, 255191.974800001829863 ], [ 364849.776500001549721, 255197.950100000947714 ], [ 364852.472099997103214, 255201.370799999684095 ], [ 364855.897399999201298, 255206.954700000584126 ], [ 364859.630000002682209, 255213.039500001817942 ], [ 364860.961800001561642, 255216.161899998784065 ], [ 364862.792300000786781, 255220.453600000590086 ], [ 364864.388800002634525, 255222.366500001400709 ], [ 364872.26129999756813, 255244.80689999833703 ], [ 364884.287600003182888, 255252.926899999380112 ], [ 364878.113799996674061, 255234.649900000542402 ], [ 364874.664800003170967, 255224.439500000327826 ], [ 364872.489600002765656, 255217.999899998307228 ], [ 364870.891400001943111, 255216.298099998384714 ], [ 364868.394000001251698, 255210.839000001549721 ], [ 364867.140000000596046, 255208.098000001162291 ], [ 364866.141599997878075, 255205.915600001811981 ], [ 364863.224899999797344, 255201.770100001245737 ], [ 364861.361299999058247, 255199.121500000357628 ], [ 364859.285199999809265, 255195.519600000232458 ], [ 364858.182800002396107, 255193.60700000077486 ], [ 364855.930500000715256, 255191.058499999344349 ], [ 364853.148299999535084, 255187.910500001162291 ], [ 364847.701099999248981, 255181.747099999338388 ], [ 364842.310099996626377, 255175.647300001233816 ], [ 364838.712099999189377, 255171.576200000941753 ], [ 364835.820000000298023, 255168.303899999707937 ], [ 364831.330200001597404, 255164.054400000721216 ], [ 364828.620800003409386, 255161.489999998360872 ], [ 364826.811499997973442, 255160.044599998742342 ], [ 364823.014399997889996, 255157.011100001633167 ], [ 364819.801700003445148, 255155.507199998944998 ], [ 364816.550899997353554, 255152.651299998164177 ], [ 364813.857900001108646, 255150.285399999469519 ], [ 364811.797899998724461, 255148.475600000470877 ], [ 364810.210500001907349, 255145.50730000063777 ], [ 364808.606799997389317, 255144.438700001686811 ], [ 364807.0337999984622, 255139.781700000166893 ], [ 364807.066100001335144, 255135.982299998402596 ], [ 364809.517399996519089, 255132.2027000002563 ], [ 364814.021700002253056, 255129.541200000792742 ], [ 364818.735399998724461, 255126.755899999290705 ], [ 364821.980099998414516, 255124.838700000196695 ], [ 364826.073499999940395, 255122.420000001788139 ], [ 364832.106600001454353, 255118.855099998414516 ], [ 364837.825900003314018, 255115.475699998438358 ], [ 364841.935400001704693, 255113.047400001436472 ], [ 364845.256800003349781, 255110.225999999791384 ], [ 364850.057800002396107, 255106.147799998521805 ], [ 364851.481499999761581, 255104.195000000298023 ], [ 364854.953199997544289, 255099.432900000363588 ], [ 364855.786499999463558, 255096.273299999535084 ], [ 364857.417099997401237, 255094.175700001418591 ], [ 364857.433300003409386, 255092.276000000536442 ], [ 364861.737099997699261, 255080.1064000017941 ], [ 364865.696000002324581, 255068.912200000137091 ], [ 364867.332000002264977, 255066.181400001049042 ], [ 364869.751500003039837, 255055.533100001513958 ], [ 364870.683200001716614, 255051.432300001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601040100", "MAP": "A9-297-T82", "PARCEL_NAM": "2G", "ACRE": ".124", "LONGITUDE": -64.87711081, "LATITUDE": 18.32411621, "OBJECTID_1": 38005, "PARCEL_NO_": "107601040100", "Tax_Legal_": "MARIENDAHL ESTATE 2G,2H,2P,2Q&2R No.4 RED HOOK QTR.", "Name": "FOSTER, JOHN & CLAIRE", "Address": "8180 Collier St SW", "City": "Covington", "State": "Georgia", "Zip": 30014, "Country": "United States", "Land_Value": 16700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.65997598600001, "SHAPE_Area": 358.97071822300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364511.285400003194809, 255022.948499999940395 ], [ 364497.854999996721745, 254990.330099999904633 ], [ 364493.781199999153614, 254998.850999999791384 ], [ 364507.785999998450279, 255029.208999998867512 ], [ 364509.170000001788139, 255032.209100000560284 ], [ 364502.026199996471405, 255036.707100000232458 ], [ 364502.999799996614456, 255038.979699999094009 ], [ 364505.15089999884367, 255044.000999998301268 ], [ 364516.653999999165535, 255037.727800000458956 ], [ 364514.436899997293949, 255031.629099998623133 ], [ 364511.285400003194809, 255022.948499999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042800", "MAP": "A9-297-T82", "PARCEL_NAM": "2F", "ACRE": ".090", "LONGITUDE": -64.87705053000001, "LATITUDE": 18.32367037, "OBJECTID_1": 38031, "PARCEL_NO_": "107601042800", "Tax_Legal_": "MARIENDAHL 2F RED HOOK QTR.", "Name": "HASANEIN, YAZAN", "Address": "16202 Spring Garden", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 9000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.24333801900001, "SHAPE_Area": 320.90503042500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364530.212700001895428, 254964.566300000995398 ], [ 364539.197899997234344, 254959.188999999314547 ], [ 364530.988799996674061, 254960.931400001049042 ], [ 364521.896300002932549, 254962.861299999058247 ], [ 364498.747900001704693, 254967.774500001221895 ], [ 364498.378799997270107, 254977.098999999463558 ], [ 364498.114500001072884, 254983.775699999183416 ], [ 364530.212700001895428, 254964.566300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601045800", "MAP": "D9-2748-T84", "PARCEL_NAM": "19A-4B", "ACRE": ".08", "LONGITUDE": -64.87464542, "LATITUDE": 18.32314628, "OBJECTID_1": 38058, "PARCEL_NO_": "107601045800", "Tax_Legal_": "19A-4B NADIR RED HOOK QTR", "Name": "THOMAS, ARTHUR R.", "Address": "6403 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.239315685099996, "SHAPE_Area": 299.42816850299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364775.3733000010252, 254922.972500000149012 ], [ 364775.160999998450279, 254905.629200000315905 ], [ 364758.228500001132488, 254905.490600001066923 ], [ 364758.44709999859333, 254923.515999998897314 ], [ 364775.3733000010252, 254922.972500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "109301010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90806605, "LATITUDE": 18.3096373, "OBJECTID_1": 41828, "PARCEL_NO_": "109301010100", "Tax_Legal_": "GREEN CAY FRENCHMAN BAY QTR", "Name": "GINN-LA FUND IV SANCTUARY LLC", "Address": "215 Celebration Pl", "City": "Celebration", "State": "Florida", "Zip": 34747, "Country": "United States", "Land_Value": 132400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 565.33292605700001, "SHAPE_Area": 12148.2341206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361258.587700001895428, 253485.741200000047684 ], [ 361262.909100003540516, 253473.559099998325109 ], [ 361270.185099996626377, 253464.960099998861551 ], [ 361283.414300002157688, 253447.100699998438358 ], [ 361287.210900001227856, 253439.4695999994874 ], [ 361293.768100000917912, 253426.289599999785423 ], [ 361288.201200000941753, 253417.167100001126528 ], [ 361281.174500003457069, 253390.089600000530481 ], [ 361282.031199999153614, 253384.186000000685453 ], [ 361292.606799997389317, 253373.295699998736382 ], [ 361293.497599996626377, 253363.381499998271465 ], [ 361295.164200000464916, 253357.062399998307228 ], [ 361293.614500001072884, 253349.661400001496077 ], [ 361282.354900002479553, 253346.191799998283386 ], [ 361269.561800003051758, 253333.421500001102686 ], [ 361261.606499999761581, 253320.690699998289347 ], [ 361257.686499997973442, 253307.570799998939037 ], [ 361255.307099997997284, 253302.907299999147654 ], [ 361247.263700000941753, 253300.519499998539686 ], [ 361245.597199998795986, 253306.838599998503923 ], [ 361240.723300002515316, 253311.020599998533726 ], [ 361237.498099997639656, 253310.994199998676777 ], [ 361235.910599999129772, 253308.02589999884367 ], [ 361235.13849999755621, 253304.008799999952316 ], [ 361236.824799999594688, 253295.367800001055002 ], [ 361229.68129999935627, 253282.010400000959635 ], [ 361226.479400001466274, 253279.239999998360872 ], [ 361222.453299999237061, 253278.573800001293421 ], [ 361212.766699999570847, 253279.760999999940395 ], [ 361210.317199997603893, 253283.329599998891354 ], [ 361208.661399997770786, 253288.38230000063777 ], [ 361206.921099998056889, 253303.355700001120567 ], [ 361206.851000003516674, 253311.587699998170137 ], [ 361209.207000002264977, 253318.995299998670816 ], [ 361212.182300001382828, 253348.361699998378754 ], [ 361214.590499997138977, 253349.647900000214577 ], [ 361225.092299997806549, 253347.411899998784065 ], [ 361228.299599997699261, 253349.5489999987185 ], [ 361229.861900001764297, 253355.47239999845624 ], [ 361230.594400003552437, 253364.133299998939037 ], [ 361228.834399998188019, 253381.42850000038743 ], [ 361224.76860000193119, 253385.405999999493361 ], [ 361216.671300001442432, 253389.350499998778105 ], [ 361208.552500002086163, 253395.828000001609325 ], [ 361204.467000000178814, 253402.127399999648333 ], [ 361202.696099996566772, 253420.689100001007318 ], [ 361203.385499998927116, 253434.415800001472235 ], [ 361206.551399998366833, 253441.407800000160933 ], [ 361215.309399999678135, 253454.567299999296665 ], [ 361228.082699999213219, 253469.659499999135733 ], [ 361237.675800003111362, 253479.448300000280142 ], [ 361250.449100002646446, 253494.540500000119209 ], [ 361252.873400002717972, 253493.927099999040365 ], [ 361258.587700001895428, 253485.741200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704042800", "MAP": "D9-8865-T014", "PARCEL_NAM": "5-15A", "ACRE": ".50", "LONGITUDE": -64.95552452, "LATITUDE": 18.35055191, "OBJECTID_1": 3567, "PARCEL_NO_": "102704042800", "Tax_Legal_": "LILLIANDAHL 5-15 LITTLE NORTHSIDE QTR", "Name": "BARKER, ADELINE", "Address": "PO Box 9289", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.42035573699999, "SHAPE_Area": 1377.0396478600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356164.68299999833107, 257879.662500001490116 ], [ 356203.598300002515316, 257894.829799998551607 ], [ 356206.614500001072884, 257897.846099998801947 ], [ 356208.519500002264977, 257900.862399999052286 ], [ 356209.997400000691414, 257904.746800001710653 ], [ 356219.847499996423721, 257904.275100000202656 ], [ 356215.857199996709824, 257899.387299999594688 ], [ 356213.520999997854233, 257889.657800000160933 ], [ 356212.78660000115633, 257881.208099998533726 ], [ 356215.275700002908707, 257872.995799999684095 ], [ 356179.984999999403954, 257850.753199998289347 ], [ 356164.68299999833107, 257879.662500001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017500", "MAP": "D9-8869-T014", "PARCEL_NAM": "17-7-2B", "ACRE": "0.51", "LONGITUDE": -64.94669974, "LATITUDE": 18.37104948, "OBJECTID_1": 774, "PARCEL_NO_": "101203017500", "Tax_Legal_": "ST PETER 17-7-2 No.2 LITTLE NORTHSIDE QTR", "Name": "STIEHLER, MARY", "Address": "3208 Morse Ave S", "City": "Seattle", "State": "Washington", "Zip": 98144, "Country": "United States", "Land_Value": 203300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.74905715700001, "SHAPE_Area": 3135.5979983399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357152.244099996984005, 260169.306800000369549 ], [ 357100.831200003623962, 260111.183499999344349 ], [ 357071.63629999756813, 260143.445500001311302 ], [ 357093.575699999928474, 260186.654599998146296 ], [ 357152.244099996984005, 260169.306800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203017500", "MAP": "D9-8869-T014", "PARCEL_NAM": "17-7-2D", "ACRE": ".050", "LONGITUDE": -64.94673045, "LATITUDE": 18.37142363, "OBJECTID_1": 774, "PARCEL_NO_": "101203017500", "Tax_Legal_": "ST PETER 17-7-2 No.2 LITTLE NORTHSIDE QTR", "Name": "STIEHLER, MARY", "Address": "3208 Morse Ave S", "City": "Seattle", "State": "Washington", "Zip": 98144, "Country": "United States", "Land_Value": 203300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.511642857600002, "SHAPE_Area": 226.60941460399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357104.053400002419949, 260183.556400001049042 ], [ 357093.575699999928474, 260186.654599998146296 ], [ 357103.471799999475479, 260206.14469999819994 ], [ 357113.275399997830391, 260200.815699998289347 ], [ 357104.053400002419949, 260183.556400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202033800", "MAP": "A9-794-T014", "PARCEL_NAM": "107-6", "ACRE": ".057", "LONGITUDE": -64.95479698, "LATITUDE": 18.34450241, "OBJECTID_1": 8224, "PARCEL_NO_": "105202033800", "Tax_Legal_": "CONTANT 107-6&6-1 7B S S QTR", "Name": "CLEAR VIEW VILLAS LIMITED PARTNERSHIP", "Address": "PO Box 24096", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 365300, "Improved_V": 2220400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.45519817600001, "SHAPE_Area": 341.76672565400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356262.383799999952316, 257170.65089999884367 ], [ 356258.386200003325939, 257172.01969999819994 ], [ 356287.468699999153614, 257244.398499999195337 ], [ 356291.522699996829033, 257242.896499998867512 ], [ 356290.658399999141693, 257240.617400001734495 ], [ 356287.658900000154972, 257232.708200000226498 ], [ 356262.383799999952316, 257170.65089999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202033800", "MAP": "A9-794-T014", "PARCEL_NAM": "107-6", "ACRE": ".02", "LONGITUDE": -64.95498536, "LATITUDE": 18.34504475, "OBJECTID_1": 8224, "PARCEL_NO_": "105202033800", "Tax_Legal_": "CONTANT 107-6&6-1 7B S S QTR", "Name": "CLEAR VIEW VILLAS LIMITED PARTNERSHIP", "Address": "PO Box 24096", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 824, "Country": "United States", "Land_Value": 365300, "Improved_V": 2220400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.8475263009, "SHAPE_Area": 75.330740844600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356261.377400003373623, 257261.986900001764297 ], [ 356242.207400001585484, 257270.938400000333786 ], [ 356260.653200000524521, 257270.184300001710653 ], [ 356261.377400003373623, 257261.986900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "A", "ACRE": ".01", "LONGITUDE": -64.87618912000001, "LATITUDE": 18.34645964, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.398527491899998, "SHAPE_Area": 57.210617865899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364582.73030000180006, 257484.081700000911951 ], [ 364577.577500000596046, 257500.089800000190735 ], [ 364581.200400002300739, 257501.345300000160933 ], [ 364583.449299998581409, 257493.80460000038147 ], [ 364585.301399998366833, 257487.322299998253584 ], [ 364582.73030000180006, 257484.081700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-C", "ACRE": ".17", "LONGITUDE": -64.87572135000001, "LATITUDE": 18.34629901, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.43003905399999, "SHAPE_Area": 420.55517334000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364639.291199997067451, 257447.191300000995398 ], [ 364634.646300002932549, 257461.525400001555681 ], [ 364629.22240000218153, 257467.47859999909997 ], [ 364621.549400001764297, 257485.470300000160933 ], [ 364620.094200000166893, 257499.36089999973774 ], [ 364629.246200002729893, 257501.445799998939037 ], [ 364631.573600001633167, 257493.494800001382828 ], [ 364627.358499996364117, 257491.554299999028444 ], [ 364633.178199999034405, 257474.779899999499321 ], [ 364636.661499999463558, 257476.112700000405312 ], [ 364644.635300002992153, 257448.871599998325109 ], [ 364639.291199997067451, 257447.191300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-11", "ACRE": ".32", "LONGITUDE": -64.87641281000001, "LATITUDE": 18.34825054, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.97100304599999, "SHAPE_Area": 1159.5954805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364548.897200003266335, 257672.151200000196695 ], [ 364536.885099999606609, 257712.11430000141263 ], [ 364560.102300003170967, 257716.901799999177456 ], [ 364575.009700000286102, 257670.794300001114607 ], [ 364576.914700001478195, 257664.947200000286102 ], [ 364548.897200003266335, 257672.151200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-D", "ACRE": "1.0", "LONGITUDE": -64.87611869, "LATITUDE": 18.3473981, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 484.83268835400003, "SHAPE_Area": 2022.9799583199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364576.914700001478195, 257664.947200000286102 ], [ 364586.601999998092651, 257635.214400000870228 ], [ 364599.013199999928474, 257598.163499999791384 ], [ 364611.431500002741814, 257560.268300000578165 ], [ 364612.252199999988079, 257558.586300000548363 ], [ 364616.652300000190735, 257543.525499999523163 ], [ 364611.252999998629093, 257539.787500001490116 ], [ 364617.603000000119209, 257529.204199999570847 ], [ 364614.216300003230572, 257527.087499998509884 ], [ 364618.026299998164177, 257519.679200001060963 ], [ 364622.805699996650219, 257522.74100000038743 ], [ 364628.854999996721745, 257502.782400000840425 ], [ 364629.246200002729893, 257501.445799998939037 ], [ 364620.094200000166893, 257499.36089999973774 ], [ 364619.697300001978874, 257501.609900001436472 ], [ 364610.569200001657009, 257522.379700001329184 ], [ 364604.880599997937679, 257532.830800000578165 ], [ 364600.911899998784065, 257541.561999998986721 ], [ 364599.456699997186661, 257546.324499998241663 ], [ 364599.192100003361702, 257547.779800001531839 ], [ 364599.192100003361702, 257549.76410000026226 ], [ 364599.589000001549721, 257551.616200000047684 ], [ 364600.118100002408028, 257553.997499998658895 ], [ 364601.573299996554852, 257555.849599998444319 ], [ 364602.896300002932549, 257556.643300000578165 ], [ 364570.934500001370907, 257658.164099998772144 ], [ 364522.942699998617172, 257669.824000000953674 ], [ 364520.938199996948242, 257676.051300000399351 ], [ 364520.113899998366833, 257678.155499998480082 ], [ 364519.629799999296665, 257679.676600001752377 ], [ 364576.914700001478195, 257664.947200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-10", "ACRE": ".26", "LONGITUDE": -64.87666183, "LATITUDE": 18.34826483, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.829122596, "SHAPE_Area": 913.39203638799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364548.897200003266335, 257672.151200000196695 ], [ 364519.629799999296665, 257679.676600001752377 ], [ 364511.0, 257706.789599999785423 ], [ 364520.659500002861023, 257708.768500000238419 ], [ 364536.885099999606609, 257712.11430000141263 ], [ 364548.897200003266335, 257672.151200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.8762519, "LATITUDE": 18.34667288, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.562362742200001, "SHAPE_Area": 89.057378486199994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364575.306900002062321, 257507.143899999558926 ], [ 364569.402500003576279, 257525.487100001424551 ], [ 364574.562600001692772, 257525.042100001126528 ], [ 364579.960100002586842, 257510.91330000013113 ], [ 364575.306900002062321, 257507.143899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-2", "ACRE": ".23", "LONGITUDE": -64.87603349, "LATITUDE": 18.34658224, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.55439653099999, "SHAPE_Area": 738.78526398600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364579.960100002586842, 257510.91330000013113 ], [ 364610.569200001657009, 257522.379700001329184 ], [ 364619.697300001978874, 257501.609900001436472 ], [ 364583.449299998581409, 257493.80460000038147 ], [ 364581.200400002300739, 257501.345300000160933 ], [ 364577.577500000596046, 257500.089800000190735 ], [ 364575.306900002062321, 257507.143899999558926 ], [ 364579.960100002586842, 257510.91330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-3", "ACRE": ".23", "LONGITUDE": -64.87611282, "LATITUDE": 18.34676245, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.566493076, "SHAPE_Area": 748.64107787199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364567.2162000015378, 257532.279399998486042 ], [ 364600.911899998784065, 257541.561999998986721 ], [ 364604.880599997937679, 257532.830800000578165 ], [ 364610.569200001657009, 257522.379700001329184 ], [ 364579.960100002586842, 257510.91330000013113 ], [ 364574.562600001692772, 257525.042100001126528 ], [ 364569.402500003576279, 257525.487100001424551 ], [ 364567.2162000015378, 257532.279399998486042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020900", "MAP": "A9-795-T014", "PARCEL_NAM": "6-4", "ACRE": "0.26", "LONGITUDE": -64.87617343, "LATITUDE": 18.34695813, "OBJECTID_1": 21920, "PARCEL_NO_": "105701020900", "Tax_Legal_": "6-4 FRYDENDAHL No. 4 EAST END QTR", "Name": "COIPEL, MARIETTA", "Address": "1909 Hospital Ground", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35600, "Improved_V": 127600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.316106854, "SHAPE_Area": 840.83541557299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364561.062200002372265, 257551.397999998182058 ], [ 364599.877599999308586, 257566.231600001454353 ], [ 364602.896300002932549, 257556.643300000578165 ], [ 364601.573299996554852, 257555.849599998444319 ], [ 364600.118100002408028, 257553.997499998658895 ], [ 364599.589000001549721, 257551.616200000047684 ], [ 364599.192100003361702, 257549.76410000026226 ], [ 364599.192100003361702, 257547.779800001531839 ], [ 364599.456699997186661, 257546.324499998241663 ], [ 364600.911899998784065, 257541.561999998986721 ], [ 364567.2162000015378, 257532.279399998486042 ], [ 364561.062200002372265, 257551.397999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-5", "ACRE": ".28", "LONGITUDE": -64.87622619, "LATITUDE": 18.34714923, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.55615392199999, "SHAPE_Area": 941.15340621400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364554.154100000858307, 257572.859400000423193 ], [ 364593.046599999070168, 257587.928899999707937 ], [ 364599.877599999308586, 257566.231600001454353 ], [ 364561.062200002372265, 257551.397999998182058 ], [ 364554.154100000858307, 257572.859400000423193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-6", "ACRE": ".28", "LONGITUDE": -64.87629024, "LATITUDE": 18.34734692, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.90464927799999, "SHAPE_Area": 966.03689646800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364547.080399997532368, 257594.835200000554323 ], [ 364586.067400000989437, 257610.096999999135733 ], [ 364593.046599999070168, 257587.928899999707937 ], [ 364554.154100000858307, 257572.859400000423193 ], [ 364547.080399997532368, 257594.835200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-7", "ACRE": ".28", "LONGITUDE": -64.87635494, "LATITUDE": 18.34754548, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.626311284, "SHAPE_Area": 957.45997943999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364540.048299998044968, 257616.68189999833703 ], [ 364579.2195999994874, 257631.847800001502037 ], [ 364586.067400000989437, 257610.096999999135733 ], [ 364547.080399997532368, 257594.835200000554323 ], [ 364540.048299998044968, 257616.68189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020300", "MAP": "A9-795-T014", "PARCEL_NAM": "6-9", "ACRE": ".23", "LONGITUDE": -64.87652769, "LATITUDE": 18.34792135, "OBJECTID_1": 21914, "PARCEL_NO_": "105701020300", "Tax_Legal_": "6-1,2,4-11 FRYDENDAHL No. 4 EAST END QTR.", "Name": "GEORGE, KOTNIE & VELMA", "Address": "PO Box 502024", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 823300, "Improved_V": 112000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.30299872099999, "SHAPE_Area": 795.54689751700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364572.4341000020504, 257653.400699999183416 ], [ 364532.991099998354912, 257638.6064000017941 ], [ 364522.942699998617172, 257669.824000000953674 ], [ 364570.934500001370907, 257658.164099998772144 ], [ 364572.4341000020504, 257653.400699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020600", "MAP": "D9-2915-T85", "PARCEL_NAM": "3A", "ACRE": "3A", "LONGITUDE": -64.87457103, "LATITUDE": 18.34630132, "OBJECTID_1": 21918, "PARCEL_NO_": "105701020600", "Tax_Legal_": "FRYDENDAHL 3 EAST END QTR", "Name": "HERMAN, HENRY", "Address": "PO Box 503371", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 236900, "Improved_V": 3300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.18364316200001, "SHAPE_Area": 1180.92137452 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364765.906099997460842, 257474.392099998891354 ], [ 364763.832699999213219, 257450.780000001192093 ], [ 364746.054899998009205, 257453.398299999535084 ], [ 364733.541599996387959, 257497.344799999147654 ], [ 364757.321400001645088, 257497.594799999147654 ], [ 364767.953299999237061, 257497.706599999219179 ], [ 364765.906099997460842, 257474.392099998891354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020500", "MAP": "D9-8873-T014", "PARCEL_NAM": "4-1", "ACRE": ".40", "LONGITUDE": -64.8752182, "LATITUDE": 18.34685238, "OBJECTID_1": 21916, "PARCEL_NO_": "105701020500", "Tax_Legal_": "4 FRYDENDAHL RED HOOK QTR", "Name": "JOHNSON, CARRIE M.", "Address": "PO Box 358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59100, "Improved_V": 160300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.07647428799999, "SHAPE_Area": 1321.16291344 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364684.07880000025034, 257497.839499998837709 ], [ 364674.818400003015995, 257504.983300000429153 ], [ 364662.912100002169609, 257552.343800000846386 ], [ 364700.218500003218651, 257559.752199999988079 ], [ 364707.362199999392033, 257535.145899999886751 ], [ 364678.258000001311302, 257520.329199999570847 ], [ 364684.07880000025034, 257497.839499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105701020500", "MAP": "D9-8873-T014", "PARCEL_NAM": "4C", "ACRE": "4C", "LONGITUDE": -64.87537991000001, "LATITUDE": 18.34672107, "OBJECTID_1": 21916, "PARCEL_NO_": "105701020500", "Tax_Legal_": "4 FRYDENDAHL RED HOOK QTR", "Name": "JOHNSON, CARRIE M.", "Address": "PO Box 358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59100, "Improved_V": 160300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.133904186, "SHAPE_Area": 460.829657188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364684.07880000025034, 257497.839499998837709 ], [ 364671.328599996864796, 257494.407699998468161 ], [ 364654.564900003373623, 257549.492800001055002 ], [ 364662.912100002169609, 257552.343800000846386 ], [ 364674.818400003015995, 257504.983300000429153 ], [ 364684.07880000025034, 257497.839499998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020500", "MAP": "A3-54-T44", "PARCEL_NAM": "4", "ACRE": null, "LONGITUDE": -64.87525207, "LATITUDE": 18.34630924, "OBJECTID_1": 21916, "PARCEL_NO_": "105701020500", "Tax_Legal_": "4 FRYDENDAHL RED HOOK QTR", "Name": "JOHNSON, CARRIE M.", "Address": "PO Box 358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59100, "Improved_V": 160300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.781510618400006, "SHAPE_Area": 321.33430310699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364689.920500002801418, 257458.1064000017941 ], [ 364682.458200000226498, 257457.835999999195337 ], [ 364671.328599996864796, 257494.407699998468161 ], [ 364680.207599997520447, 257496.797499999403954 ], [ 364689.920500002801418, 257458.1064000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105701020500", "MAP": "D9-8873-T014", "PARCEL_NAM": "4B", "ACRE": null, "LONGITUDE": -64.87518107, "LATITUDE": 18.34629531, "OBJECTID_1": 21916, "PARCEL_NO_": "105701020500", "Tax_Legal_": "4 FRYDENDAHL RED HOOK QTR", "Name": "JOHNSON, CARRIE M.", "Address": "PO Box 358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59100, "Improved_V": 160300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.567845631200001, "SHAPE_Area": 222.06066452100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364697.035800002515316, 257458.36430000141263 ], [ 364689.920500002801418, 257458.1064000017941 ], [ 364680.207599997520447, 257496.797499999403954 ], [ 364684.07880000025034, 257497.839499998837709 ], [ 364697.035800002515316, 257458.36430000141263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701020500", "MAP": "A3-54-T44", "PARCEL_NAM": "4", "ACRE": null, "LONGITUDE": -64.8749601, "LATITUDE": 18.34645682, "OBJECTID_1": 21916, "PARCEL_NO_": "105701020500", "Tax_Legal_": "4 FRYDENDAHL RED HOOK QTR", "Name": "JOHNSON, CARRIE M.", "Address": "PO Box 358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 59100, "Improved_V": 160300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.59862341, "SHAPE_Area": 3606.9424622000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364707.362199999392033, 257535.145899999886751 ], [ 364721.425399996340275, 257539.896899998188019 ], [ 364746.054899998009205, 257453.398299999535084 ], [ 364715.518799997866154, 257457.895500000566244 ], [ 364705.029600001871586, 257458.653999999165535 ], [ 364697.035800002515316, 257458.36430000141263 ], [ 364684.07880000025034, 257497.839499998837709 ], [ 364678.258000001311302, 257520.329199999570847 ], [ 364707.362199999392033, 257535.145899999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102604021100", "MAP": "A9-797-T014", "PARCEL_NAM": "ROW 2-2", "ACRE": ".03", "LONGITUDE": -64.96761812, "LATITUDE": 18.35200894, "OBJECTID_1": 2701, "PARCEL_NO_": "102604021100", "Tax_Legal_": "41A LINDBERG BAY NO. 4A SOUTHSIDE QTR", "Name": "MCCLEAN, D., M. DOWNING & ESTATE OF L. DOWNING", "Address": "PO Box 308127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.023208625199999, "SHAPE_Area": 135.97671870900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354914.308300003409386, 258021.087799999862909 ], [ 354909.016699999570847, 258020.558600001037121 ], [ 354908.52929999679327, 258037.645899999886751 ], [ 354918.087600000202656, 258031.887099999934435 ], [ 354919.335400000214577, 258020.558600001037121 ], [ 354914.308300003409386, 258021.087799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703067600", "MAP": "D9-8889-T014", "PARCEL_NAM": "11-1 REM", "ACRE": null, "LONGITUDE": -64.87478639, "LATITUDE": 18.33438442, "OBJECTID_1": 23208, "PARCEL_NO_": "105703067600", "Tax_Legal_": "11-1 REM LANGMATH NO. 5 RED HOOK QUARTER", "Name": "GRAHAM, ARLINGTON M. & MONA", "Address": "6230 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.438091931, "SHAPE_Area": 1031.8655048200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364755.957800000905991, 256134.815600000321865 ], [ 364749.611100003123283, 256136.931200001388788 ], [ 364736.858900003135204, 256138.461399998515844 ], [ 364731.720499999821186, 256135.606800001114607 ], [ 364725.98480000346899, 256176.359600000083447 ], [ 364750.652000002563, 256181.239900000393391 ], [ 364755.957800000905991, 256134.815600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703063700", "MAP": "D9-8889-T014", "PARCEL_NAM": "11-1E", "ACRE": ".373", "LONGITUDE": -64.87455085000001, "LATITUDE": 18.33437631, "OBJECTID_1": 23171, "PARCEL_NO_": "105703063700", "Tax_Legal_": "11-A-2,11-A-5,11-A-12 thru 11-A-14 LANGMATH & R.O.W No.5 RED HOOK QTR", "Name": "CALISTRO & OTHERS, ELROY", "Address": "4075 Bay Chester Ave", "City": "Bronx", "State": "New York", "Zip": 10466, "Country": "United States", "Land_Value": 184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.10398439799999, "SHAPE_Area": 1302.39521859 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364780.587200000882149, 256126.318199999630451 ], [ 364775.625399999320507, 256128.259700000286102 ], [ 364755.957800000905991, 256134.815600000321865 ], [ 364750.652000002563, 256181.239900000393391 ], [ 364775.441899999976158, 256186.144600000232458 ], [ 364776.823299996554852, 256170.82149999961257 ], [ 364780.587200000882149, 256126.318199999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402094700", "MAP": "D9-8881-T014", "PARCEL_NAM": "B-5A", "ACRE": ".75", "LONGITUDE": -64.91997705, "LATITUDE": 18.34781655, "OBJECTID_1": 12635, "PARCEL_NO_": "105402094700", "Tax_Legal_": "ROSS B-5 # 8 NEW QRT", "Name": "CHINNERY, R.A., SR., NIBBS, Y., D., J.E., SR. & OTHERS", "Address": "PO Box 507", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 166400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.70202880300002, "SHAPE_Area": 2454.7076167800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359993.660899996757507, 257571.658100001513958 ], [ 359945.510099999606609, 257603.330200001597404 ], [ 359903.799400001764297, 257598.022799998521805 ], [ 359903.227300003170967, 257606.166900001466274 ], [ 359901.070600003004074, 257620.782800000160933 ], [ 359911.056800000369549, 257622.634700000286102 ], [ 359944.996100001037121, 257628.928800001740456 ], [ 359951.186999998986721, 257624.956799998879433 ], [ 360006.80009999871254, 257589.276099998503923 ], [ 360003.781599998474121, 257585.22859999909997 ], [ 359995.63629999756813, 257574.306800000369549 ], [ 359993.660899996757507, 257571.658100001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601033600", "MAP": "D9-8882-T014", "PARCEL_NAM": "2B-12", "ACRE": ".23", "LONGITUDE": -64.87554162000001, "LATITUDE": 18.32513519, "OBJECTID_1": 37988, "PARCEL_NO_": "107601033600", "Tax_Legal_": "REM 2B-12 MARIENDAHL No.4 RED HOOK QUARTER", "Name": "Dorval, Edwin & Tarcia Jones", "Address": "4650 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29000, "Improved_V": 6300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.313381738, "SHAPE_Area": 1016.18393004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364648.694899998605251, 255141.059900000691414 ], [ 364671.914800003170967, 255156.600900001823902 ], [ 364677.94820000231266, 255147.5912000015378 ], [ 364691.837200000882149, 255126.384399998933077 ], [ 364670.183600001037121, 255112.486099999397993 ], [ 364667.777300000190735, 255110.988699998706579 ], [ 364648.694899998605251, 255141.059900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107202010100", "MAP": "D9-8892-T014", "PARCEL_NAM": "6-1", "ACRE": "0.02", "LONGITUDE": -64.88638019, "LATITUDE": 18.33188115, "OBJECTID_1": 24757, "PARCEL_NO_": "107202010100", "Tax_Legal_": "HASSEL ISLAND 3 SOUTHSIDE QTR", "Name": "UNITED STATES GOVERNMENT", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1015500, "Improved_V": 35800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.859911002300002, "SHAPE_Area": 86.498428833199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363514.512599997222424, 255864.786699999123812 ], [ 363514.108199998736382, 255876.187399998307228 ], [ 363522.026500001549721, 255876.235500000417233 ], [ 363522.026500001549721, 255865.228799998760223 ], [ 363514.512599997222424, 255864.786699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104028400", "MAP": "D9-3318-T86", "PARCEL_NAM": "3-5A", "ACRE": ".38", "LONGITUDE": -64.95528554000001, "LATITUDE": 18.36543494, "OBJECTID_1": 648, "PARCEL_NO_": "101104028400", "Tax_Legal_": "HULL BAY 3-5A LITTLE NORTHSIDE QTR", "Name": "BURTON, SHANNON", "Address": "8219 Panola St", "City": "New Orleans", "State": "Louisiana", "Zip": 70118, "Country": "United States", "Land_Value": 47100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.63886989292999996, "SHAPE_Area": 0.00153987504 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356204.796499997377396, 259524.340700000524521 ], [ 356204.806199997663498, 259524.351500000804663 ], [ 356204.806199997663498, 259524.034000001847744 ], [ 356204.796499997377396, 259524.340700000524521 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101104021800", "MAP": "D9-8896-T014", "PARCEL_NAM": "3-5-Z", "ACRE": null, "LONGITUDE": -64.95543909, "LATITUDE": 18.36569014, "OBJECTID_1": 586, "PARCEL_NO_": "101104021800", "Tax_Legal_": "3-5 REM. HULL NO. 4 LITTLE NORTHSIDE QTR", "Name": "BURTON, EMILY", "Address": "6534 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.778496352100007, "SHAPE_Area": 173.470436944 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356175.246399998664856, 259542.840399999171495 ], [ 356181.597999997437, 259554.502500001341105 ], [ 356190.445900000631809, 259557.1081000007689 ], [ 356196.545299999415874, 259561.032000001519918 ], [ 356198.7837999984622, 259558.041600000113249 ], [ 356200.996200002729893, 259554.990299999713898 ], [ 356194.500299997627735, 259551.473999999463558 ], [ 356190.065600000321865, 259549.073600001633167 ], [ 356188.104299999773502, 259548.011900000274181 ], [ 356180.527300000190735, 259544.964400000870228 ], [ 356175.246399998664856, 259542.840399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601026800", "MAP": "A9-798-T014", "PARCEL_NAM": "Q", "ACRE": "9-8", "LONGITUDE": -64.98318479, "LATITUDE": 18.36150688, "OBJECTID_1": 2275, "PARCEL_NO_": "102601026800", "Tax_Legal_": "\"Q\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "VAN BEVERHOUDT, VANBORN, IVE & GREGORY SWAN & OTHERS", "Address": "PO Box 10184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 738000, "Improved_V": 30900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1222.61754819, "SHAPE_Area": 36712.205885099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353316.239100001752377, 259138.891600001603365 ], [ 353310.482699997723103, 259128.692499998956919 ], [ 353306.208400003612041, 259119.083799999207258 ], [ 353306.572999998927116, 259112.291700001806021 ], [ 353306.323399998247623, 259104.56810000166297 ], [ 353306.460400000214577, 259087.272700000554323 ], [ 353309.986000001430511, 259073.71059999987483 ], [ 353313.164200000464916, 259064.7787000015378 ], [ 353318.199299998581409, 259056.787999998778105 ], [ 353323.207599997520447, 259052.194699998944998 ], [ 353332.265000000596046, 259046.397999998182058 ], [ 353340.698499999940395, 259040.905299998819828 ], [ 353350.059299997985363, 259036.037599999457598 ], [ 353357.543600000441074, 259032.699400000274181 ], [ 353361.92059999704361, 259029.336500000208616 ], [ 353365.685999996960163, 259024.733399998396635 ], [ 353369.774300001561642, 259018.588500000536442 ], [ 353373.865099996328354, 259012.134700000286102 ], [ 353378.562600001692772, 259007.538899999111891 ], [ 353382.298600003123283, 259006.6418999992311 ], [ 353387.894100002944469, 259006.377399999648333 ], [ 353393.166599996387959, 259007.654699999839067 ], [ 353396.555100001394749, 259011.387899998575449 ], [ 353394.952600002288818, 259017.552499998360872 ], [ 353394.587999999523163, 259024.344700001180172 ], [ 353392.983000002801418, 259030.818199999630451 ], [ 353392.579199999570847, 259042.551899999380112 ], [ 353390.609600000083447, 259055.817499998956919 ], [ 353389.924500003457069, 259063.842599999159575 ], [ 353389.892700001597404, 259067.857599999755621 ], [ 353390.753899998962879, 259076.82149999961257 ], [ 353391.311700001358986, 259084.8564000017941 ], [ 353393.719099998474121, 259094.759199999272823 ], [ 353395.39019999653101, 259100.458799999207258 ], [ 353441.947700001299381, 259038.438200000673532 ], [ 353435.992600001394749, 259033.052099999040365 ], [ 353435.544100001454353, 259032.642799999564886 ], [ 353421.281199999153614, 259019.623399998992682 ], [ 353409.322499997913837, 259010.999000001698732 ], [ 353399.382799997925758, 259003.924499999731779 ], [ 353385.975500002503395, 258992.615699999034405 ], [ 353371.715199999511242, 258984.456700000911951 ], [ 353364.291199997067451, 258982.613200001418591 ], [ 353362.860200002789497, 258948.181000001728535 ], [ 353360.971699997782707, 258885.89299999922514 ], [ 353316.107900001108646, 258910.78660000115633 ], [ 353300.561300002038479, 258954.084100000560284 ], [ 353284.686300002038479, 258977.102899998426437 ], [ 353269.604999996721745, 259005.677999999374151 ], [ 353254.523800000548363, 259031.078000001609325 ], [ 353238.648699998855591, 259066.003100000321865 ], [ 353193.404899999499321, 259050.127999998629093 ], [ 353156.892300002276897, 259054.890599999576807 ], [ 353129.111000001430511, 259076.321899998933077 ], [ 353121.967200003564358, 259081.878100000321865 ], [ 353107.679700002074242, 259099.340599998831749 ], [ 353082.279700003564358, 259139.822000000625849 ], [ 353181.529500000178814, 259183.660900000482798 ], [ 353316.239100001752377, 259138.891600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904012600", "MAP": "A9-798-T014", "PARCEL_NAM": "R", "ACRE": "19.68", "LONGITUDE": -64.98915075, "LATITUDE": 18.36755276, "OBJECTID_1": 52, "PARCEL_NO_": "100904012600", "Tax_Legal_": "\"R\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "HEIRS OF GERALDINE MILLIN", "Address": "911 Studer Ave", "City": "Columbus", "State": "Ohio", "Zip": 43206, "Country": "United States", "Land_Value": 1122800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1366.2779238600001, "SHAPE_Area": 73944.691118799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352883.663699999451637, 259701.339800000190735 ], [ 352698.897600002586842, 259564.479100000113249 ], [ 352678.260099999606609, 259568.447799999266863 ], [ 352663.972599998116493, 259581.147900000214577 ], [ 352662.385099999606609, 259595.435400001704693 ], [ 352658.416299998760223, 259608.135400000959635 ], [ 352649.685000002384186, 259622.422899998724461 ], [ 352599.678700000047684, 259647.822999998927116 ], [ 352584.59740000218153, 259654.173000000417233 ], [ 352570.309900000691414, 259667.666799999773502 ], [ 352536.178599998354912, 259677.191799998283386 ], [ 352511.572300001978874, 259693.860599998384714 ], [ 352487.759700000286102, 259708.14809999987483 ], [ 352467.12219999730587, 259712.116900000721216 ], [ 352450.453400000929832, 259683.541799999773502 ], [ 352398.951399996876717, 259692.786299999803305 ], [ 352394.938699997961521, 259699.224500000476837 ], [ 352390.651799999177456, 259704.535399999469519 ], [ 352386.367200002074242, 259709.565000001341105 ], [ 352374.934799998998642, 259723.820999998599291 ], [ 352370.344999998807907, 259731.661100000143051 ], [ 352368.607299998402596, 259736.710700001567602 ], [ 352370.559399999678135, 259740.383000001311302 ], [ 352376.205799996852875, 259742.115200001746416 ], [ 352387.255500003695488, 259740.514400001615286 ], [ 352401.146099999547005, 259737.529599998146296 ], [ 352426.648599997162819, 259732.017599999904633 ], [ 352431.273900002241135, 259730.746599998325109 ], [ 352435.530699998140335, 259729.170499999076128 ], [ 352439.646200001239777, 259728.710299998521805 ], [ 352442.297700002789497, 259729.467300001531839 ], [ 352444.82599999755621, 259731.576200000941753 ], [ 352445.627599999308586, 259735.571100000292063 ], [ 352445.507700003683567, 259739.894099999219179 ], [ 352444.776100002229214, 259742.148899998515844 ], [ 352444.570100001990795, 259744.821800000965595 ], [ 352444.230200000107288, 259748.525400001555681 ], [ 352442.569600000977516, 259762.10190000012517 ], [ 352441.853299997746944, 259774.141600001603365 ], [ 352441.770599998533726, 259784.6418999992311 ], [ 352442.938000001013279, 259794.225600000470877 ], [ 352444.059199996292591, 259809.677099999040365 ], [ 352445.520300000905991, 259821.42509999871254 ], [ 352448.238799996674061, 259831.329799998551607 ], [ 352452.149099998176098, 259847.729800000786781 ], [ 352457.018200002610683, 259860.739999998360872 ], [ 352462.542900003492832, 259869.431400001049042 ], [ 352472.987700000405312, 259884.64750000089407 ], [ 352479.155599996447563, 259890.564300000667572 ], [ 352485.641599997878075, 259895.557000000029802 ], [ 352490.911399997770786, 259897.142799999564886 ], [ 352495.892499998211861, 259895.946600001305342 ], [ 352502.150499999523163, 259890.436599999666214 ], [ 352508.092799998819828, 259885.541799999773502 ], [ 352515.273199997842312, 259881.274399999529123 ], [ 352524.95380000025034, 259875.173700001090765 ], [ 352537.739100001752377, 259869.406300000846386 ], [ 352552.080399997532368, 259863.342300001531839 ], [ 352572.347000002861023, 259854.545299999415874 ], [ 352585.741599999368191, 259850.326999999582767 ], [ 352598.818099997937679, 259847.032699998468161 ], [ 352609.734300002455711, 259841.868299998342991 ], [ 352628.114900000393391, 259835.836199998855591 ], [ 352643.730700001120567, 259825.767200000584126 ], [ 352657.770999997854233, 259818.465399999171495 ], [ 352664.327600002288818, 259814.502099998295307 ], [ 352673.379600003361702, 259809.322999998927116 ], [ 352684.31530000269413, 259801.687899999320507 ], [ 352695.877400003373623, 259793.440099999308586 ], [ 352708.997800000011921, 259784.586899999529123 ], [ 352721.169100001454353, 259777.888099998235703 ], [ 352736.459700003266335, 259769.669700000435114 ], [ 352749.568000003695488, 259762.360700000077486 ], [ 352762.664200000464916, 259756.595800001174212 ], [ 352775.755400002002716, 259751.448600001633167 ], [ 352791.334799997508526, 259746.012299999594688 ], [ 352804.731899999082088, 259741.485199999064207 ], [ 352815.308300003409386, 259740.024500001221895 ], [ 352821.840499997138977, 259739.149500001221895 ], [ 352831.819799996912479, 259734.595499999821186 ], [ 352838.699400000274181, 259729.090399999171495 ], [ 352846.200300000607967, 259723.590300001204014 ], [ 352853.070100001990795, 259719.320500001311302 ], [ 352864.610299997031689, 259713.852299999445677 ], [ 352875.521799996495247, 259709.305700000375509 ], [ 352883.663699999451637, 259701.339800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904012700", "MAP": "A9-798-T014", "PARCEL_NAM": "G", "ACRE": "4.88", "LONGITUDE": -64.98738289000001, "LATITUDE": 18.36631048, "OBJECTID_1": 53, "PARCEL_NO_": "100904012700", "Tax_Legal_": "\"G\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "ESTATE OF MAVIS MILLIGAN", "Address": "788 Columbus Ave", "City": "New York", "State": "New York", "Zip": 10025, "Country": "United States", "Land_Value": 365800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 593.77052205300004, "SHAPE_Area": 18588.9241411 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352904.976499997079372, 259602.004700001329184 ], [ 352787.004100002348423, 259509.710200000554323 ], [ 352767.954000003635883, 259521.616500001400709 ], [ 352740.966499999165535, 259524.791499998420477 ], [ 352726.678900003433228, 259530.347800001502037 ], [ 352714.772699996829033, 259535.110300000756979 ], [ 352698.897600002586842, 259564.479100000113249 ], [ 352883.663699999451637, 259701.339800000190735 ], [ 352888.084399998188019, 259692.417899999767542 ], [ 352890.566799998283386, 259653.521600000560284 ], [ 352895.650399997830391, 259639.354400001466274 ], [ 352897.284500002861023, 259629.17509999871254 ], [ 352898.935699999332428, 259616.833799999207258 ], [ 352901.807700000703335, 259607.282000001519918 ], [ 352904.976499997079372, 259602.004700001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904012800", "MAP": "A9-798-T014", "PARCEL_NAM": "H", "ACRE": "9.8", "LONGITUDE": -64.98599412, "LATITUDE": 18.36508198, "OBJECTID_1": 54, "PARCEL_NO_": "100904012800", "Tax_Legal_": "\"H\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "HEIRS OF FRANK MILLIN", "Address": "PO BOX 92692", "City": "LONG BEACH", "State": "California", "Zip": 90809, "Country": "United States", "Land_Value": 737300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 896.03569274300003, "SHAPE_Area": 36488.127128599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353113.085299998521805, 259413.445000000298023 ], [ 352999.729500003159046, 259309.684799998998642 ], [ 352975.916900001466274, 259344.609900001436472 ], [ 352951.310599997639656, 259381.916200000792742 ], [ 352941.785599999129772, 259395.410000000149012 ], [ 352930.673100002110004, 259410.491300001740456 ], [ 352922.735600002110004, 259420.01630000025034 ], [ 352887.810500003397465, 259446.210099998861551 ], [ 352876.697999998927116, 259454.941399998962879 ], [ 352863.204199999570847, 259466.053899999707937 ], [ 352855.266699999570847, 259477.960200000554323 ], [ 352841.772900000214577, 259485.103900000452995 ], [ 352829.866700001060963, 259498.597699999809265 ], [ 352825.897900000214577, 259508.916499998420477 ], [ 352787.004100002348423, 259509.710200000554323 ], [ 352904.976499997079372, 259602.004700001329184 ], [ 352907.160599999129772, 259598.367400001734495 ], [ 352910.962399996817112, 259589.131700001657009 ], [ 352919.119000002741814, 259579.312800001353025 ], [ 352928.219999998807907, 259567.956999998539686 ], [ 352934.813299998641014, 259559.361000001430511 ], [ 352940.763199999928474, 259553.539799999445677 ], [ 352947.951099999248981, 259548.346000000834465 ], [ 352967.941699996590614, 259535.223099999129772 ], [ 352980.737099997699261, 259528.220499999821186 ], [ 352991.362400002777576, 259520.583099998533726 ], [ 352995.756399996578693, 259515.058299999684095 ], [ 353000.483000002801418, 259506.756499998271465 ], [ 353003.952100001275539, 259500.297899998724461 ], [ 353018.014899998903275, 259490.21680000051856 ], [ 353031.441500000655651, 259481.983800001442432 ], [ 353039.877199999988079, 259476.182199999690056 ], [ 353048.628499999642372, 259469.765299998223782 ], [ 353058.02080000191927, 259460.882699999958277 ], [ 353066.779399998486042, 259453.539299998432398 ], [ 353074.906900003552437, 259447.426399998366833 ], [ 353089.299900002777576, 259434.877000000327826 ], [ 353096.492799997329712, 259429.065600000321865 ], [ 353107.118199996650219, 259421.428199999034405 ], [ 353113.085299998521805, 259413.445000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904013000", "MAP": "A9-798-T014", "PARCEL_NAM": "J", "ACRE": "2.00", "LONGITUDE": -64.98492703, "LATITUDE": 18.36403563, "OBJECTID_1": 56, "PARCEL_NO_": "100904013000", "Tax_Legal_": "\"J\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "BOSCHULTE, JOSEPH", "Address": "181 Halleck Pl", "City": "Columbus", "State": "Ohio", "Zip": 43209, "Country": "United States", "Land_Value": 150000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 405.06339491799997, "SHAPE_Area": 7395.2529245300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353146.894299998879433, 259381.899900000542402 ], [ 353142.273999996483326, 259375.103199999779463 ], [ 353033.860799998044968, 259274.759700000286102 ], [ 353024.335799999535084, 259285.872299998998642 ], [ 353009.25450000166893, 259301.747299998998642 ], [ 352999.729500003159046, 259309.684799998998642 ], [ 353113.085299998521805, 259413.445000000298023 ], [ 353119.045100003480911, 259406.388399999588728 ], [ 353125.619000002741814, 259400.263199999928474 ], [ 353131.57880000025034, 259393.206599999219179 ], [ 353142.201800003647804, 259385.877999998629093 ], [ 353146.894299998879433, 259381.899900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904013100", "MAP": "A9-798-T014", "PARCEL_NAM": "K", "ACRE": "2.00", "LONGITUDE": -64.98462908, "LATITUDE": 18.36373983, "OBJECTID_1": 57, "PARCEL_NO_": "100904013100", "Tax_Legal_": "\"K\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "BOSCHULTE, RANDOLPH", "Address": "802 Gabriel Rd", "City": "Springfield", "State": "Illinois", "Zip": 62712, "Country": "United States", "Land_Value": 150000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 443.09818646399998, "SHAPE_Area": 7097.87523478 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353189.693199999630451, 259359.731800001114607 ], [ 353044.17960000038147, 259231.897199999541044 ], [ 353041.004600003361702, 259243.803399998694658 ], [ 353041.004600003361702, 259253.328499998897314 ], [ 353036.24210000038147, 259262.853500001132488 ], [ 353033.860799998044968, 259274.759700000286102 ], [ 353142.273999996483326, 259375.103199999779463 ], [ 353146.894299998879433, 259381.899900000542402 ], [ 353150.659599997103214, 259377.296799998730421 ], [ 353156.59009999781847, 259373.946299999952316 ], [ 353165.94820000231266, 259369.387499999254942 ], [ 353176.233599998056889, 259365.453699998557568 ], [ 353185.278599999845028, 259361.201200000941753 ], [ 353189.693199999630451, 259359.731800001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904012000", "MAP": "A9-798-T014", "PARCEL_NAM": "L", "ACRE": "3.00", "LONGITUDE": -64.9843863, "LATITUDE": 18.36339724, "OBJECTID_1": 46, "PARCEL_NO_": "100904012000", "Tax_Legal_": "\"L\" SORGENFRI(WESTERN HALF) No. 1 SOUTHSIDE QUARTER", "Name": "LEERDAM, EDITH MARIA PENN", "Address": "1217 W KNOXVILLE ST.", "City": "BROKEN ARROW", "State": "Oklahoma", "Zip": 74012, "Country": "United States", "Land_Value": 400600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 534.96477368499995, "SHAPE_Area": 10832.231642299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353230.892599999904633, 259330.058499999344349 ], [ 353057.67339999973774, 259176.334600001573563 ], [ 353052.11710000038147, 259193.797100000083447 ], [ 353048.148299999535084, 259206.497099999338388 ], [ 353044.17960000038147, 259231.897199999541044 ], [ 353189.693199999630451, 259359.731800001114607 ], [ 353195.248499996960163, 259357.882699999958277 ], [ 353203.035899996757507, 259355.473400000482798 ], [ 353208.961499996483326, 259352.740600001066923 ], [ 353212.4087999984622, 259349.061500001698732 ], [ 353214.299999997019768, 259345.679000001400709 ], [ 353218.992499999701977, 259341.7010000012815 ], [ 353224.639200001955032, 259334.950800001621246 ], [ 353230.892599999904633, 259330.058499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904013200", "MAP": "A9-798-T014", "PARCEL_NAM": "M", "ACRE": "4.4", "LONGITUDE": -64.98394521, "LATITUDE": 18.36303317, "OBJECTID_1": 58, "PARCEL_NO_": "100904013200", "Tax_Legal_": "\"M\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "ESTATE OF MAVIS MILLIGAN", "Address": "788 Columbus Ave", "City": "New York", "State": "New York", "Zip": 10025, "Country": "United States", "Land_Value": 333800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 646.44308643900001, "SHAPE_Area": 16882.169349 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353297.996799997985363, 259275.744800001382828 ], [ 353234.314000003039837, 259218.982799999415874 ], [ 353194.229500003159046, 259230.492199998348951 ], [ 353181.529500000178814, 259183.660900000482798 ], [ 353082.279700003564358, 259139.822000000625849 ], [ 353060.848399996757507, 259167.603300001472235 ], [ 353057.67339999973774, 259176.334600001573563 ], [ 353230.892599999904633, 259330.058499999344349 ], [ 353239.656300000846386, 259322.097500000149012 ], [ 353246.856600001454353, 259315.359600000083447 ], [ 353257.790399998426437, 259308.033500000834465 ], [ 353271.547600001096725, 259297.332299999892712 ], [ 353279.364399999380112, 259291.216899998486042 ], [ 353293.126500003039837, 259279.897999998182058 ], [ 353297.996799997985363, 259275.744800001382828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601026600", "MAP": "A9-798-T014", "PARCEL_NAM": "N", "ACRE": "1.05", "LONGITUDE": -64.98282421, "LATITUDE": 18.36297749, "OBJECTID_1": 2273, "PARCEL_NO_": "102601026600", "Tax_Legal_": "\"N\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "Ferguson, Charles & Ann and Richard & Muriel Ferguson, Co Tr", "Address": "185 Sulgrave Ct", "City": "Sterling", "State": "Virginia", "Zip": 20165, "Country": "United States", "Land_Value": 78800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 298.064338496, "SHAPE_Area": 4650.4409638400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353343.240299999713898, 259190.724800001829863 ], [ 353234.314000003039837, 259218.982799999415874 ], [ 353297.996799997985363, 259275.744800001382828 ], [ 353305.32769999653101, 259269.493400000035763 ], [ 353314.729999996721745, 259259.375399999320507 ], [ 353319.444600000977516, 259252.617800001055002 ], [ 353322.612899996340275, 259244.921300001442432 ], [ 353328.575300000607967, 259237.555799998342991 ], [ 353333.306999996304512, 259228.636300001293421 ], [ 353338.356799997389317, 259218.792700000107288 ], [ 353341.199799999594688, 259212.946800000965595 ], [ 353343.7246999964118, 259208.024999998509884 ], [ 353344.402400001883507, 259200.926500000059605 ], [ 353344.749799996614456, 259196.296300001442432 ], [ 353343.240299999713898, 259190.724800001829863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904012500", "MAP": "A9-798-T014", "PARCEL_NAM": "E-1", "ACRE": "9.8", "LONGITUDE": -64.98854414, "LATITUDE": 18.36878672, "OBJECTID_1": 51, "PARCEL_NO_": "100904012500", "Tax_Legal_": "\"E-1\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "HEIRS OF FRITZ MILLIN", "Address": "220 Stockholm St", "City": "Brooklyn", "State": "New York", "Zip": 11237, "Country": "United States", "Land_Value": 737300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1182.68050343, "SHAPE_Area": 38061.761260699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352936.071800000965595, 259678.847100000828505 ], [ 352903.006800003349781, 259646.255100000649691 ], [ 352901.441699996590614, 259653.607599999755621 ], [ 352898.535499997437, 259667.4831000007689 ], [ 352896.573600001633167, 259679.821899998933077 ], [ 352894.929799996316433, 259691.2364999987185 ], [ 352890.824699997901917, 259699.543200001120567 ], [ 352888.583800002932549, 259707.864599999040365 ], [ 352883.879199996590614, 259713.386799998581409 ], [ 352873.246799997985363, 259721.950800001621246 ], [ 352862.024599999189377, 259726.494899999350309 ], [ 352853.909500002861023, 259731.063700001686811 ], [ 352845.7871999964118, 259736.558899998664856 ], [ 352839.849500000476837, 259740.835999999195337 ], [ 352830.180900000035763, 259745.392400000244379 ], [ 352822.08049999922514, 259748.108199998736382 ], [ 352810.239399999380112, 259752.338599998503923 ], [ 352797.483199998736382, 259754.399900000542402 ], [ 352785.960100002586842, 259757.706300001591444 ], [ 352781.289700001478195, 259758.904800001531839 ], [ 352776.609499998390675, 259761.338700000196695 ], [ 352762.586199998855591, 259766.478500001132488 ], [ 352753.541400000452995, 259770.731100000441074 ], [ 352746.368299998342991, 259774.071899998933077 ], [ 352735.75789999961853, 259779.8564000017941 ], [ 352730.441699996590614, 259784.138399999588728 ], [ 352725.759099997580051, 259786.881099998950958 ], [ 352716.090499997138977, 259791.437600001692772 ], [ 352706.096699997782707, 259797.844700001180172 ], [ 352694.226300001144409, 259805.781199999153614 ], [ 352685.470399998128414, 259812.815799999982119 ], [ 352676.095600001513958, 259819.53660000115633 ], [ 352666.732900001108646, 259824.713199999183416 ], [ 352650.828299999237061, 259832.000199999660254 ], [ 352638.336599998176098, 259839.93189999833703 ], [ 352625.553700000047684, 259845.390399999916553 ], [ 352609.350599996745586, 259851.130800001323223 ], [ 352597.499799996614456, 259856.596700001507998 ], [ 352584.110100001096725, 259860.197399999946356 ], [ 352573.203699998557568, 259864.126499999314547 ], [ 352565.110699996352196, 259865.915800001472235 ], [ 352552.949199996888638, 259871.379299998283386 ], [ 352540.472199998795986, 259877.458000000566244 ], [ 352530.184799998998642, 259881.700800001621246 ], [ 352521.438699997961521, 259887.500100001692772 ], [ 352515.491400003433228, 259893.012600000947714 ], [ 352601.240299999713898, 260033.151900000870228 ], [ 352936.071800000965595, 259678.847100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904012900", "MAP": "A9-798-T014", "PARCEL_NAM": "E-2", "ACRE": "4.2", "LONGITUDE": -64.98568142000001, "LATITUDE": 18.36610111, "OBJECTID_1": 55, "PARCEL_NO_": "100904012900", "Tax_Legal_": "\"E-2\" SORGENFRI (WESTERN HALF) SOUTHSIDE QUARTER", "Name": "VAN BEVERHOUDT, VIC INNOCENCIO", "Address": "PO Box 10184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 311300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 585.53641052900002, "SHAPE_Area": 14673.956987600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353096.347699999809265, 259503.690499998629093 ], [ 353066.668200001120567, 259466.906800001859665 ], [ 353058.855200000107288, 259473.243700001388788 ], [ 353045.406599998474121, 259484.25620000064373 ], [ 353039.784400001168251, 259487.918099999427795 ], [ 353027.921099998056889, 259494.927999999374151 ], [ 353017.30799999833107, 259501.021200001239777 ], [ 353014.183700002729893, 259503.158599998801947 ], [ 353009.141500003635883, 259512.075599998235703 ], [ 353004.710900001227856, 259522.232900001108646 ], [ 353000.612999998033047, 259529.613099999725819 ], [ 352993.114399999380112, 259534.804400000721216 ], [ 352976.272399999201298, 259542.701499998569489 ], [ 352959.733800001442432, 259551.527699999511242 ], [ 352949.426600001752377, 259558.241099998354912 ], [ 352942.860100001096725, 259563.439800001680851 ], [ 352936.274099998176098, 259571.109200000762939 ], [ 352929.996399998664856, 259579.089899998158216 ], [ 352921.820200003683567, 259591.37950000166893 ], [ 352914.884499996900558, 259603.987900000065565 ], [ 352911.094899997115135, 259611.679400000721216 ], [ 352907.909699998795986, 259621.537599999457598 ], [ 352905.3141999989748, 259635.415600001811981 ], [ 352903.006800003349781, 259646.255100000649691 ], [ 352936.071800000965595, 259678.847100000828505 ], [ 352974.508199997246265, 259638.175299998372793 ], [ 353096.347699999809265, 259503.690499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904011600", "MAP": "A9-798-T014", "PARCEL_NAM": "E-4", "ACRE": "1.0", "LONGITUDE": -64.98120022000001, "LATITUDE": 18.36273657, "OBJECTID_1": 43, "PARCEL_NO_": "100904011600", "Tax_Legal_": "\"E-4\" SORGENFRI(WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "GEORGES, WARREN (LIFE ESTATE)", "Address": "PO Box 7544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 75000, "Improved_V": 63000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 352.69658648299998, "SHAPE_Area": 6700.0217301100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353530.902300000190735, 259212.83729999884963 ], [ 353527.039700001478195, 259183.223600000143051 ], [ 353525.36089999973774, 259182.769400000572205 ], [ 353516.531000003218651, 259178.053100001066923 ], [ 353510.139899998903275, 259171.034699998795986 ], [ 353502.922600001096725, 259166.331500001251698 ], [ 353496.418300002813339, 259164.571699999272823 ], [ 353494.072999998927116, 259163.937100000679493 ], [ 353484.397200003266335, 259163.857900001108646 ], [ 353459.498499996960163, 259163.196600001305342 ], [ 353458.501563165860716, 259168.714229474280728 ], [ 353456.984310170111712, 259174.112012481491547 ], [ 353454.960500001907349, 259179.340999998152256 ], [ 353453.749726087786257, 259181.389743681502296 ], [ 353452.221028654021211, 259183.213588057289599 ], [ 353450.415343853877857, 259184.763693393586436 ], [ 353448.381025133887306, 259185.99855026655132 ], [ 353446.172548403555993, 259186.885091118747368 ], [ 353443.849053254409228, 259187.39957575709559 ], [ 353441.472759293508716, 259187.528227078641066 ], [ 353439.107299998402596, 259187.267599999904633 ], [ 353405.498700000345707, 259186.5152000002563 ], [ 353404.847099997103214, 259186.544799998402596 ], [ 353426.513400003314018, 259250.940200001001358 ], [ 353530.902300000190735, 259212.83729999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904011700", "MAP": "A9-798-T014", "PARCEL_NAM": "E-5", "ACRE": ".75", "LONGITUDE": -64.98074869, "LATITUDE": 18.3629178, "OBJECTID_1": 44, "PARCEL_NO_": "100904011700", "Tax_Legal_": "\"E-5\"& \"F\" SORGENFRI(WESTERN HALF) NO.1 SOUTHSIDE QUARTER", "Name": "Leal I .& Luz M. Van Beverhoudt, Trustees", "Address": "PO Box 10184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 276000, "Improved_V": 350000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 440.89970900999998, "SHAPE_Area": 4094.0531180399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353527.039700001478195, 259183.223600000143051 ], [ 353530.902300000190735, 259212.83729999884963 ], [ 353426.513400003314018, 259250.940200001001358 ], [ 353433.3800999969244, 259271.348999999463558 ], [ 353434.355599999427795, 259270.853100001811981 ], [ 353610.691600002348423, 259199.721999999135733 ], [ 353608.292400002479553, 259197.380300000309944 ], [ 353595.385999999940395, 259197.907999999821186 ], [ 353583.298500001430511, 259196.964699998497963 ], [ 353571.232600003480911, 259193.488400001078844 ], [ 353551.148500002920628, 259184.669199999421835 ], [ 353530.992499999701977, 259184.293099999427795 ], [ 353527.039700001478195, 259183.223600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702027600", "MAP": "D9-8902-T014", "PARCEL_NAM": "9-1-3", "ACRE": ".23", "LONGITUDE": -64.95271667, "LATITUDE": 18.35848631, "OBJECTID_1": 3052, "PARCEL_NO_": "102702027600", "Tax_Legal_": "9-1-3 LILLIENDAHL & MARIENHOJ NO.3 LTTLE NORTHSIDE QTR", "Name": "BERTRAND, ANNETTE PRISCILLA & EDISON A.", "Address": "PO Box 8843", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.995972452, "SHAPE_Area": 919.17796280699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356499.595799997448921, 258771.855799999088049 ], [ 356497.976000003516674, 258764.224500000476837 ], [ 356496.874899998307228, 258744.054999999701977 ], [ 356467.939300000667572, 258739.522900000214577 ], [ 356467.945200003683567, 258740.219900000840425 ], [ 356467.326999999582767, 258746.425799999386072 ], [ 356469.465899996459484, 258773.915600001811981 ], [ 356499.595799997448921, 258771.855799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507201010300", "MAP": "D9-8903-T014", "PARCEL_NAM": "111-1", "ACRE": ".40", "LONGITUDE": -64.94813897, "LATITUDE": 18.32355071, "OBJECTID_1": 87237, "PARCEL_NO_": "507201010300", "Tax_Legal_": "REM 111 WATER ISLAND NO. 10 SOUTHSIDE QUARTER", "Name": "BUBB, STEPHEN K. & SUSAN J", "Address": "1257 Huntington Rd", "City": "Kansas City", "State": "Missouri", "Zip": 64113, "Country": "United States", "Land_Value": 213200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.664526964, "SHAPE_Area": 1846.92861696 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357014.801100000739098, 254881.520799998193979 ], [ 357010.107600003480911, 254873.106699999421835 ], [ 357008.565099999308586, 254864.861400000751019 ], [ 357006.180399999022484, 254860.8310999982059 ], [ 357001.35869999974966, 254858.891800001263618 ], [ 356989.265799999237061, 254858.581700000911951 ], [ 356978.212499998509884, 254922.7162000015378 ], [ 357010.181100003421307, 254926.6587999984622 ], [ 357014.801100000739098, 254881.520799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103101025500", "MAP": "D9-8904-T014", "PARCEL_NAM": "23-B-1A", "ACRE": ".23", "LONGITUDE": -64.89267942, "LATITUDE": 18.35752082, "OBJECTID_1": 6419, "PARCEL_NO_": "103101025500", "Tax_Legal_": "23-B-1A MANDAHL 1 GREAT NORTHSIDE QTR", "Name": "JOHN BAPTISTE, THOMAS G and MARY D", "Address": "PO Box 305664", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71100, "Improved_V": 265900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.50619371400001, "SHAPE_Area": 978.17770046600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362806.289099998772144, 258695.094099998474121 ], [ 362819.228699997067451, 258708.559399999678135 ], [ 362830.690499998629093, 258728.873199999332428 ], [ 362850.239799998700619, 258705.812899999320507 ], [ 362822.238200001418591, 258679.830299999564886 ], [ 362806.289099998772144, 258695.094099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701024000", "MAP": "D9-8906-T014", "PARCEL_NAM": "53-1A-4", "ACRE": "0.50", "LONGITUDE": -64.87758907, "LATITUDE": 18.34556805, "OBJECTID_1": 21946, "PARCEL_NO_": "105701024000", "Tax_Legal_": "53-1A-4 & 53-1A-5 FRYDENDAHL NO.4 EAST END QTR", "Name": "DAAS, ABDELQADER & NAJAH F. YUSUF", "Address": "PO Box 502454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 85500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.256751662, "SHAPE_Area": 1902.91269668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364454.355499997735023, 257361.739500001072884 ], [ 364433.773400001227856, 257346.443199999630451 ], [ 364415.732299998402596, 257418.457400001585484 ], [ 364433.113600000739098, 257445.949400000274181 ], [ 364454.355499997735023, 257361.739500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701024000", "MAP": "D9-8906-T014", "PARCEL_NAM": "53-1A-5", "ACRE": "0.16", "LONGITUDE": -64.87748375, "LATITUDE": 18.34602828, "OBJECTID_1": 21946, "PARCEL_NO_": "105701024000", "Tax_Legal_": "53-1A-4 & 53-1A-5 FRYDENDAHL NO.4 EAST END QTR", "Name": "DAAS, ABDELQADER & NAJAH F. YUSUF", "Address": "PO Box 502454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 85500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.254345687, "SHAPE_Area": 660.23425120100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364441.274999998509884, 257413.594999998807907 ], [ 364440.643799997866154, 257416.09739999845624 ], [ 364433.113600000739098, 257445.949400000274181 ], [ 364445.053999997675419, 257464.835499998182058 ], [ 364445.871542828681413, 257465.361613530752948 ], [ 364446.763322991493624, 257465.748782577546081 ], [ 364447.705925601825584, 257465.986841495992849 ], [ 364448.674601363716647, 257466.069539729796816 ], [ 364449.643916395842098, 257465.994705925986636 ], [ 364450.588420031708665, 257465.764304946380435 ], [ 364451.483313061587978, 257465.384386277786689 ], [ 364452.305098868557252, 257464.864925194444368 ], [ 364453.032200363930315, 257464.219560843863292 ], [ 364453.645526522770524, 257463.465238132717786 ], [ 364454.128973643993959, 257462.62176281560096 ], [ 364454.469848175009247, 257461.711281468335073 ], [ 364454.659199997782707, 257460.757699999958277 ], [ 364454.500399999320507, 257433.928899999707937 ], [ 364454.563999304140452, 257433.380735811922932 ], [ 364454.537359850830398, 257432.829537854879163 ], [ 364454.421194777532946, 257432.290061697771307 ], [ 364454.218613823351916, 257431.776749117270811 ], [ 364453.935040080279578, 257431.30334149103146 ], [ 364453.578064817411359, 257430.882511941192206 ], [ 364453.157244262460154, 257430.525526074692607 ], [ 364452.683843781705946, 257430.241940403124318 ], [ 364452.170536305813584, 257430.03934651488089 ], [ 364451.631063075910788, 257429.923167848319281 ], [ 364451.079865790321492, 257429.896514506341191 ], [ 364450.531700000166893, 257429.960099998861551 ], [ 364446.562899999320507, 257429.483899999409914 ], [ 364444.628959252731875, 257427.319659957458498 ], [ 364443.072341386869084, 257424.869965570309432 ], [ 364441.9344111745595, 257422.199913772608852 ], [ 364441.245407395239454, 257419.380457164894324 ], [ 364441.023639285529498, 257416.486518555291696 ], [ 364441.274999998509884, 257413.594999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104013800", "MAP": "D9-6442-T98", "PARCEL_NAM": "3-3A-1", "ACRE": ".23", "LONGITUDE": -64.95565898, "LATITUDE": 18.36617267, "OBJECTID_1": 528, "PARCEL_NO_": "101104013800", "Tax_Legal_": "3-3A(REM) & 3-3A-1 HULL LITTLE NORTHSIDE QUARTER", "Name": "BETTY BRYAN TALLMAN FAMILY TRUST", "Address": "7583 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77900, "Improved_V": 203800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.697576322, "SHAPE_Area": 935.465370721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356180.0945999994874, 259631.167700000107288 ], [ 356179.699500001966953, 259588.050900001078844 ], [ 356141.747100003063679, 259594.284200001507998 ], [ 356141.542999997735023, 259618.23759999871254 ], [ 356151.83219999819994, 259607.121399998664856 ], [ 356154.769100002944469, 259606.1689000017941 ], [ 356157.229699999094009, 259606.089499998837709 ], [ 356159.372800000011921, 259606.1689000017941 ], [ 356160.880999997258186, 259606.2483000010252 ], [ 356162.86540000140667, 259606.803899999707937 ], [ 356164.706915962859057, 259608.299335332470946 ], [ 356166.320162846939638, 259610.038571475713979 ], [ 356167.673163692059461, 259611.987134172639344 ], [ 356168.739100001752377, 259614.1064000017941 ], [ 356170.32660000026226, 259627.203299999237061 ], [ 356170.434220328344963, 259628.365413220337359 ], [ 356170.724530429288279, 259629.495815502217738 ], [ 356171.190202449157368, 259630.565973828634014 ], [ 356171.819482141116168, 259631.548875829292228 ], [ 356172.596485560236033, 259632.419711611932144 ], [ 356173.501599997282028, 259633.156500000506639 ], [ 356176.914800003170967, 259632.918299999088049 ], [ 356180.0945999994874, 259631.167700000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021200", "MAP": "B9-384-T73", "PARCEL_NAM": "4C-2", "ACRE": ".09", "LONGITUDE": -64.95304514, "LATITUDE": 18.36740352, "OBJECTID_1": 580, "PARCEL_NO_": "101104021200", "Tax_Legal_": "HULL 1-1&4C-2 LT. NORTHSIDE", "Name": "QUERRARD B. EDITH", "Address": "PO Box 9517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.4423992822, "SHAPE_Area": 187.61510666000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356450.22919999808073, 259730.853300001472235 ], [ 356423.540899999439716, 259752.289700001478195 ], [ 356425.859999999403954, 259751.763300001621246 ], [ 356446.044799998402596, 259748.762099999934435 ], [ 356448.575199998915195, 259735.695000000298023 ], [ 356450.22919999808073, 259730.853300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503037500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91105015, "LATITUDE": 18.33726322, "OBJECTID_1": 20122, "PARCEL_NO_": "105503037500", "Tax_Legal_": "14R-13A EST. THOMAS NEW QTR.", "Name": "SHOYS, ALICE", "Address": "PO Box 9256", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.294602544, "SHAPE_Area": 70.873025841800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360901.954000003635883, 256436.795400001108646 ], [ 360899.590700000524521, 256439.168200001120567 ], [ 360897.385399997234344, 256440.528499998152256 ], [ 360917.075800001621246, 256455.906899999827147 ], [ 360901.954000003635883, 256436.795400001108646 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105702042900", "MAP": "D9-874-T69", "PARCEL_NAM": "56AB", "ACRE": null, "LONGITUDE": -64.87334116, "LATITUDE": 18.34491041, "OBJECTID_1": 22593, "PARCEL_NO_": "105702042900", "Tax_Legal_": "SMITH BAY 56AB EAST END QTR", "Name": "FRANCIS, LEONARD BERNARD", "Address": "P O BOX 4368", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13000, "Improved_V": 126700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 408.74707038499997, "SHAPE_Area": 1208.65652789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364853.709700003266335, 257233.156399998813868 ], [ 364855.551100000739098, 257235.117199998348951 ], [ 364857.705300003290176, 257237.410900000482798 ], [ 364859.445000000298023, 257240.195000000298023 ], [ 364861.586400002241135, 257244.1261 ], [ 364864.982900001108646, 257252.012200001627207 ], [ 364865.631800003349781, 257253.518899999558926 ], [ 364866.141000002622604, 257255.902800001204014 ], [ 364867.097599998116493, 257260.380899999290705 ], [ 364868.744400002062321, 257268.089999999850988 ], [ 364870.974899999797344, 257278.531899999827147 ], [ 364874.937100000679493, 257297.080400001257658 ], [ 364878.311999998986721, 257311.530600000172853 ], [ 364884.273000001907349, 257337.05350000038743 ], [ 364891.261900000274181, 257368.5636 ], [ 364896.98929999768734, 257394.026999998837709 ], [ 364902.916000001132488, 257420.376899998635054 ], [ 364909.377300001680851, 257419.163199998438358 ], [ 364902.363200001418591, 257390.608199998736382 ], [ 364891.497400000691414, 257340.912300001829863 ], [ 364889.282399997115135, 257331.272599998861551 ], [ 364887.292000003159046, 257322.610199999064207 ], [ 364883.722000002861023, 257307.073699999600649 ], [ 364880.377499997615814, 257292.787500001490116 ], [ 364872.829199999570847, 257260.5439000017941 ], [ 364872.430200003087521, 257256.940699998289347 ], [ 364872.304799996316433, 257255.808100000023842 ], [ 364872.08049999922514, 257253.782800000160933 ], [ 364870.788800001144409, 257250.313400000333786 ], [ 364868.138800002634525, 257243.195900000631809 ], [ 364863.829899996519089, 257236.47859999909997 ], [ 364857.793399997055531, 257227.06810000166297 ], [ 364853.709700003266335, 257233.156399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702042300", "MAP": "G9-1210-T69", "PARCEL_NAM": "91", "ACRE": ".19", "LONGITUDE": -64.87332995, "LATITUDE": 18.34389838, "OBJECTID_1": 22587, "PARCEL_NO_": "105702042300", "Tax_Legal_": "91 SMITH BAY NO. 1,2&3 EAST END QTR", "Name": "INDUSTRIOUS, IVAN & MELTON", "Address": "PO Box 8515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.40654573899999, "SHAPE_Area": 704.824006199 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364903.079199999570847, 257214.985300000756979 ], [ 364900.610399998724461, 257197.150800000876188 ], [ 364898.36259999871254, 257197.635899998247623 ], [ 364879.77419999986887, 257202.550000000745058 ], [ 364875.719300001859665, 257205.261100001633167 ], [ 364862.09570000320673, 257221.622600000351667 ], [ 364887.546899996697903, 257223.540699999779463 ], [ 364896.200000002980232, 257224.192800000309944 ], [ 364900.962499998509884, 257217.41950000077486 ], [ 364903.079199999570847, 257214.985300000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702067800", "MAP": "F9-4071-T81", "PARCEL_NAM": "57X-32", "ACRE": ".22", "LONGITUDE": -64.87288189, "LATITUDE": 18.34418381, "OBJECTID_1": 22711, "PARCEL_NO_": "105702067800", "Tax_Legal_": "SMITH BAY 57X-32 EAST END QTR.", "Name": "EITENNE, MARIA & JOSEPH", "Address": "6536 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31000, "Improved_V": 166600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.51352986099999, "SHAPE_Area": 787.23358484599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364920.277099996805191, 257240.693999998271465 ], [ 364921.01799999922514, 257263.977400001138449 ], [ 364936.187700003385544, 257264.039599999785423 ], [ 364937.400799997150898, 257253.261999998241663 ], [ 364943.225400000810623, 257252.971000000834465 ], [ 364947.757100000977516, 257233.973000001162291 ], [ 364949.284299999475479, 257227.570700000971556 ], [ 364949.914899997413158, 257222.990800000727177 ], [ 364945.703000001609325, 257224.769600000232458 ], [ 364922.258000001311302, 257234.67119999974966 ], [ 364918.857199996709824, 257235.905099999159575 ], [ 364920.277099996805191, 257240.693999998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8730615, "LATITUDE": 18.34429275, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.398786968799996, "SHAPE_Area": 422.33295815999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364921.01799999922514, 257263.977400001138449 ], [ 364920.277099996805191, 257240.693999998271465 ], [ 364905.968199998140335, 257240.305599998682737 ], [ 364906.055299997329712, 257241.184200000017881 ], [ 364909.813500002026558, 257273.301100000739098 ], [ 364920.290200002491474, 257274.020199999213219 ], [ 364921.01799999922514, 257263.977400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": "D9-6271-T97", "PARCEL_NAM": "57X-66", "ACRE": ".23", "LONGITUDE": -64.87283893, "LATITUDE": 18.34462234, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.46637535, "SHAPE_Area": 1276.62451857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364936.187700003385544, 257264.039599999785423 ], [ 364921.01799999922514, 257263.977400001138449 ], [ 364920.290200002491474, 257274.020199999213219 ], [ 364919.388599999248981, 257285.200800001621246 ], [ 364917.662699997425079, 257298.485500000417233 ], [ 364928.1266999989748, 257300.682100001722574 ], [ 364934.449600003659725, 257315.721500001847744 ], [ 364959.46679999679327, 257313.393100000917912 ], [ 364958.062799997627735, 257288.894799999892712 ], [ 364952.427599996328354, 257287.793200001120567 ], [ 364933.911200001835823, 257284.26410000026226 ], [ 364936.187700003385544, 257264.039599999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302223000", "MAP": null, "PARCEL_NAM": "33A", "ACRE": null, "LONGITUDE": -64.93843429, "LATITUDE": 18.34099488, "OBJECTID_1": 10244, "PARCEL_NO_": "105302223000", "Tax_Legal_": "KRONPRINDSENS GADE 33A CROWN PRINCE QUARTER", "Name": "GEORGE, RAYMOND", "Address": "PO Box 7804", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.424458177299996, "SHAPE_Area": 132.877276679 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358019.087200000882149, 256834.369500000029802 ], [ 358016.240099996328354, 256827.375999998301268 ], [ 358014.904500000178814, 256827.975499998778105 ], [ 358011.860299997031689, 256829.342000000178814 ], [ 358006.676500000059605, 256831.668800000101328 ], [ 358003.977700002491474, 256830.7956000007689 ], [ 357996.781800001859665, 256833.557399999350309 ], [ 357997.288400001823902, 256839.078999999910593 ], [ 358011.312200002372265, 256836.049300000071526 ], [ 358019.087200000882149, 256834.369500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043000", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-52", "ACRE": "0.34", "LONGITUDE": -64.95749332, "LATITUDE": 18.35057367, "OBJECTID_1": 3568, "PARCEL_NO_": "102704043000", "Tax_Legal_": "CONTANT 108A-52 7B S S QTR", "Name": "HODGE, IRVINE & JERYL", "Address": "PO Box 306043", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25900, "Improved_V": 313800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.71637173299999, "SHAPE_Area": 1764.1661317200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356014.887999996542931, 257879.212699998170137 ], [ 355999.711999997496605, 257851.637499999254942 ], [ 355975.880000002682209, 257861.748399998992682 ], [ 355955.036899998784065, 257870.744899999350309 ], [ 355971.537399999797344, 257905.809300001710653 ], [ 355995.784299999475479, 257891.675500001758337 ], [ 356004.698700003325939, 257886.471099998801947 ], [ 356014.887999996542931, 257879.212699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704043100", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-49", "ACRE": "0.34", "LONGITUDE": -64.9576432, "LATITUDE": 18.35029332, "OBJECTID_1": 3569, "PARCEL_NO_": "102704043100", "Tax_Legal_": "CONTANT 108A-49 7B S S QTR", "Name": "BANK OF NOVA SCOTIA", "Address": "PO Box 420", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 49200, "Improved_V": 246700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.46736301799999, "SHAPE_Area": 1609.00734397 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355999.711999997496605, 257851.637499999254942 ], [ 355984.140000000596046, 257823.342799998819828 ], [ 355962.428099997341633, 257831.662999998778105 ], [ 355955.156900003552437, 257833.292199999094009 ], [ 355939.101400002837181, 257836.880899999290705 ], [ 355955.036899998784065, 257870.744899999350309 ], [ 355975.880000002682209, 257861.748399998992682 ], [ 355999.711999997496605, 257851.637499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703035500", "MAP": "A9-83-T68", "PARCEL_NAM": "108A-53", "ACRE": "0.40", "LONGITUDE": -64.95785212, "LATITUDE": 18.35074728, "OBJECTID_1": 3338, "PARCEL_NO_": "102703035500", "Tax_Legal_": "CONTANT 108A-53 7B SOUTHSIDE QTR.", "Name": "NILES, FELICIA & DALE D", "Address": "#13 ALTONA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.92991804900001, "SHAPE_Area": 1486.1212690899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355971.537399999797344, 257905.809300001710653 ], [ 355955.036899998784065, 257870.744899999350309 ], [ 355934.603399999439716, 257879.564599998295307 ], [ 355920.473800003528595, 257886.913499999791384 ], [ 355941.411799997091293, 257923.430799998342991 ], [ 355953.643899999558926, 257916.239599999040365 ], [ 355971.537399999797344, 257905.809300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031800", "MAP": "D9-5550-T93", "PARCEL_NAM": "26-B-1", "ACRE": ".048", "LONGITUDE": -64.97503463, "LATITUDE": 18.36795947, "OBJECTID_1": 258, "PARCEL_NO_": "101003031800", "Tax_Legal_": "CARET BAY REM.25,-A-2,26-A-1,-B-1,26-C LITTLE NORTHSIDE", "Name": "HARTSHORN, SCOTT L. & CLAUDIA (Trustees)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 242300, "Improved_V": 265800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.106137880199995, "SHAPE_Area": 204.56855298799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354117.104599997401237, 259772.997699998319149 ], [ 354116.743299998342991, 259779.2162000015378 ], [ 354114.954599998891354, 259777.65089999884367 ], [ 354112.936899997293949, 259782.017900001257658 ], [ 354108.007299996912479, 259792.743299998342991 ], [ 354103.902000002563, 259801.364500001072884 ], [ 354103.078199997544289, 259802.948600001633167 ], [ 354110.319200001657009, 259798.954199999570847 ], [ 354119.209299996495247, 259784.50789999961853 ], [ 354123.49549999833107, 259789.270399998873472 ], [ 354126.691699996590614, 259782.890099998563528 ], [ 354117.104599997401237, 259772.997699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003035100", "MAP": null, "PARCEL_NAM": "25-A-2-A", "ACRE": null, "LONGITUDE": -64.97529506, "LATITUDE": 18.36816221, "OBJECTID_1": 287, "PARCEL_NO_": "101003035100", "Tax_Legal_": "CARET BAY 25A-1,25A-2-A,26A-2,26-B REM & 28A", "Name": "NO MORNING PERSON ENTERPRISES LLC", "Address": "1307 Strawbridge Ct", "City": "Naperville", "State": "Illinois", "Zip": 60565, "Country": "United States", "Land_Value": 149500, "Improved_V": 212100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.438650756300007, "SHAPE_Area": 156.496169788 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354103.078199997544289, 259802.948600001633167 ], [ 354068.66780000180006, 259811.107299998402596 ], [ 354072.3496999964118, 259813.5608000010252 ], [ 354098.983199998736382, 259810.823499999940395 ], [ 354103.078199997544289, 259802.948600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031800", "MAP": "D9-5550-T93", "PARCEL_NAM": "26-A-1", "ACRE": ".068", "LONGITUDE": -64.97491921, "LATITUDE": 18.36775589, "OBJECTID_1": 258, "PARCEL_NO_": "101003031800", "Tax_Legal_": "CARET BAY REM.25,-A-2,26-A-1,-B-1,26-C LITTLE NORTHSIDE", "Name": "HARTSHORN, SCOTT L. & CLAUDIA (Trustees)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 242300, "Improved_V": 265800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.1837215993, "SHAPE_Area": 375.76326757300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354130.443199999630451, 259743.676699999719858 ], [ 354121.973499998450279, 259762.460099998861551 ], [ 354117.104599997401237, 259772.997699998319149 ], [ 354126.691699996590614, 259782.890099998563528 ], [ 354137.624300003051758, 259759.425400000065565 ], [ 354130.443199999630451, 259743.676699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031800", "MAP": null, "PARCEL_NAM": "25-B", "ACRE": null, "LONGITUDE": -64.97497317, "LATITUDE": 18.36744312, "OBJECTID_1": 258, "PARCEL_NO_": "101003031800", "Tax_Legal_": "CARET BAY REM.25,-A-2,26-A-1,-B-1,26-C LITTLE NORTHSIDE", "Name": "HARTSHORN, SCOTT L. & CLAUDIA (Trustees)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 242300, "Improved_V": 265800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.762968958599998, "SHAPE_Area": 304.48943096300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354104.105599999427795, 259718.227600000798702 ], [ 354108.890500001609325, 259727.040300000458956 ], [ 354118.891800001263618, 259732.437800001353025 ], [ 354130.443199999630451, 259743.676699999719858 ], [ 354131.836300000548363, 259740.587099999189377 ], [ 354136.616200000047684, 259728.867300000041723 ], [ 354124.042700000107288, 259724.752399999648333 ], [ 354104.105599999427795, 259718.227600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003031800", "MAP": "D9-5550-T93", "PARCEL_NAM": "26-C", "ACRE": ".002", "LONGITUDE": -64.97502791, "LATITUDE": 18.36786632, "OBJECTID_1": 258, "PARCEL_NO_": "101003031800", "Tax_Legal_": "CARET BAY REM.25,-A-2,26-A-1,-B-1,26-C LITTLE NORTHSIDE", "Name": "HARTSHORN, SCOTT L. & CLAUDIA (Trustees)", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 242300, "Improved_V": 265800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 13.7317704177, "SHAPE_Area": 5.8442869209200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354117.104599997401237, 259772.997699998319149 ], [ 354114.954599998891354, 259777.65089999884367 ], [ 354116.743299998342991, 259779.2162000015378 ], [ 354117.104599997401237, 259772.997699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012200", "MAP": "F9-2941-T72", "PARCEL_NAM": "7AE-2", "ACRE": ".28", "LONGITUDE": -64.97230946000001, "LATITUDE": 18.36107417, "OBJECTID_1": 2371, "PARCEL_NO_": "102602012200", "Tax_Legal_": "CARET ABY 7AE-2 LITTLE NORTHSIDE", "Name": "BONNIE J HOOD TRUST", "Address": "P.O.BOX", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.052708086, "SHAPE_Area": 730.456134711 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354438.505900003015995, 259033.97520000115037 ], [ 354407.23139999806881, 259011.401900000870228 ], [ 354391.963799998164177, 259022.042700000107288 ], [ 354391.137699998915195, 259024.357999999076128 ], [ 354390.313400000333786, 259026.462200000882149 ], [ 354389.021700002253056, 259032.459800001233816 ], [ 354389.662399999797344, 259035.232200000435114 ], [ 354403.913000002503395, 259037.390000000596046 ], [ 354438.505900003015995, 259033.97520000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602012500", "MAP": "F9-2941-T72", "PARCEL_NAM": "7AC-2", "ACRE": null, "LONGITUDE": -64.97222394000001, "LATITUDE": 18.36099288, "OBJECTID_1": 2374, "PARCEL_NO_": "102602012500", "Tax_Legal_": "7AC &7 AC-1 CARET BAY LITTLE NORTHSIDE QUARTER", "Name": "KENNETH S COVERT and SUSANNAH H FAIRLY", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 165700, "Improved_V": 346200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.757276679900002, "SHAPE_Area": 66.802693375399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354407.23139999806881, 259011.401900000870228 ], [ 354438.505900003015995, 259033.97520000115037 ], [ 354410.242600001394749, 259009.303300000727177 ], [ 354407.23139999806881, 259011.401900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601040100", "MAP": "D9-3767-T86", "PARCEL_NAM": "39K", "ACRE": ".33", "LONGITUDE": -64.97916406, "LATITUDE": 18.36020177, "OBJECTID_1": 2333, "PARCEL_NO_": "102601040100", "Tax_Legal_": "PEARL 39K SOUTHSIDE QTR.", "Name": "TAYLOR FAMILY TRUST", "Address": "PO Box 7864", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 72800, "Improved_V": 130400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.35597224200001, "SHAPE_Area": 1737.20081486 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353714.5320999994874, 258877.260000001639128 ], [ 353702.072400003671646, 258885.096099998801947 ], [ 353692.324799999594688, 258893.460099998861551 ], [ 353685.820299997925758, 258899.739599999040365 ], [ 353683.377999998629093, 258902.463899999856949 ], [ 353679.301500000059605, 258907.707899998873472 ], [ 353672.762900002300739, 258917.997900001704693 ], [ 353668.637800000607967, 258928.940999999642372 ], [ 353665.351400002837181, 258936.091299999505281 ], [ 353664.518100000917912, 258939.250900000333786 ], [ 353663.68129999935627, 258942.832600001245737 ], [ 353661.575800001621246, 258958.314599998295307 ], [ 353706.319099999964237, 258944.820700000971556 ], [ 353704.038900002837181, 258943.18299999833107 ], [ 353701.527511885738932, 258940.304852054250659 ], [ 353699.531108514813241, 258937.048292605526512 ], [ 353698.105570301297121, 258933.504474514193134 ], [ 353697.29079883149825, 258929.772591167333303 ], [ 353697.109600000083447, 258925.957100000232458 ], [ 353697.344976332795341, 258923.413594456738792 ], [ 353697.862999998033047, 258920.912300001829863 ], [ 353697.881574915489182, 258916.061536261229776 ], [ 353698.359172247815877, 258911.234305721562123 ], [ 353699.291504110500682, 258906.473947416525334 ], [ 353700.670199997723103, 258901.82319999858737 ], [ 353703.514447695866693, 258896.607861184631474 ], [ 353706.895830874738749, 258891.723626166698523 ], [ 353710.776199996471405, 258887.225600000470877 ], [ 353712.07513814594131, 258885.90891233907314 ], [ 353713.13672188273631, 258884.394334284472279 ], [ 353713.931316130503546, 258882.724146661726991 ], [ 353714.436739067605231, 258880.944974278740119 ], [ 353714.638881352555472, 258879.106484352087136 ], [ 353714.5320999994874, 258877.260000001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601040200", "MAP": "D9-5278-T92", "PARCEL_NAM": "39B", "ACRE": ".615", "LONGITUDE": -64.97866105, "LATITUDE": 18.35989002, "OBJECTID_1": 2334, "PARCEL_NO_": "102601040200", "Tax_Legal_": "PEARL REM 39B WEST END QTR.", "Name": "VARLEY, BARBARA J.", "Address": "PO Box 304753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 127700, "Improved_V": 94500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.680641439, "SHAPE_Area": 2545.5078523500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353772.148199997842312, 258905.379000000655651 ], [ 353760.718199998140335, 258885.270599998533726 ], [ 353757.966499999165535, 258879.978900000452995 ], [ 353756.273199997842312, 258875.322299998253584 ], [ 353754.579899996519089, 258870.030600000172853 ], [ 353753.944899998605251, 258866.008900001645088 ], [ 353755.003200002014637, 258862.198899999260902 ], [ 353759.968699999153614, 258843.503899998962879 ], [ 353757.234399996697903, 258846.495299998670816 ], [ 353748.300200000405312, 258854.021499998867512 ], [ 353740.175899997353554, 258861.132199998944998 ], [ 353720.579499997198582, 258873.456700000911951 ], [ 353720.590104568807874, 258876.2856365229527 ], [ 353720.189094442175701, 258879.086026706674602 ], [ 353719.384999997913837, 258881.798300001770258 ], [ 353717.435053132358007, 258885.383516033267369 ], [ 353714.916403868002817, 258888.594819920137525 ], [ 353711.899099998176098, 258891.3429000005126 ], [ 353709.241075107187498, 258894.778701009228826 ], [ 353706.966012223099824, 258898.479229858727194 ], [ 353705.100042949663475, 258902.401981898205122 ], [ 353703.664599999785423, 258906.501899998635054 ], [ 353739.763199999928474, 258919.560699999332428 ], [ 353744.419900000095367, 258918.714000001549721 ], [ 353772.148199997842312, 258905.379000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601041300", "MAP": "D9-5278-T92", "PARCEL_NAM": "39BB", "ACRE": ".25", "LONGITUDE": -64.97874034, "LATITUDE": 18.36018131, "OBJECTID_1": 2344, "PARCEL_NO_": "102601041300", "Tax_Legal_": "PEARL 39BB SOUTHSIDE QTR.", "Name": "SHARON BURKE & TERRY JACKSON", "Address": "PO BOX 303130", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57300, "Improved_V": 130300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.83480890499999, "SHAPE_Area": 1333.4904108799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353779.945200003683567, 258913.122699998319149 ], [ 353776.804899998009205, 258911.517299998551607 ], [ 353775.7466000020504, 258910.458999998867512 ], [ 353772.148199997842312, 258905.379000000655651 ], [ 353744.419900000095367, 258918.714000001549721 ], [ 353739.763199999928474, 258919.560699999332428 ], [ 353703.664599999785423, 258906.501899998635054 ], [ 353702.442175198288169, 258912.198019691946683 ], [ 353701.998776995344087, 258918.006935252487892 ], [ 353702.342500001192093, 258923.822599999606609 ], [ 353702.095224986725952, 258926.634592542832252 ], [ 353702.294810268562287, 258929.450371779792476 ], [ 353702.936254009488039, 258932.19937103826669 ], [ 353704.003480890300125, 258934.812697229295736 ], [ 353705.469744975678623, 258937.224857387336669 ], [ 353707.298299998044968, 258939.375399999320507 ], [ 353710.67679999768734, 258941.728399999439716 ], [ 353726.851499997079372, 258937.340700000524521 ], [ 353754.579899996519089, 258925.487399999052286 ], [ 353779.945200003683567, 258913.122699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601041200", "MAP": "D9-5278-T92", "PARCEL_NAM": "39BA", "ACRE": ".25", "LONGITUDE": -64.97856797, "LATITUDE": 18.36030176, "OBJECTID_1": 2343, "PARCEL_NO_": "102601041200", "Tax_Legal_": "PEARL 39BA SOUTHSIDE QTR.", "Name": "RICHARDS, KEISHA L", "Address": "PO BOX 10716", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 55100, "Improved_V": 62600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.16008905000001, "SHAPE_Area": 1102.55674527 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353779.945200003683567, 258913.122699998319149 ], [ 353754.579899996519089, 258925.487399999052286 ], [ 353726.851499997079372, 258937.340700000524521 ], [ 353710.67679999768734, 258941.728399999439716 ], [ 353715.342200003564358, 258944.551500000059605 ], [ 353721.459899999201298, 258947.596200000494719 ], [ 353723.930643538886216, 258949.533480740792584 ], [ 353726.076853931357618, 258951.8250765290868 ], [ 353727.848267971072346, 258954.417319304309785 ], [ 353729.203400000929832, 258957.249499998986721 ], [ 353743.154200002551079, 258950.778900001198053 ], [ 353751.98480000346899, 258946.683100000023842 ], [ 353760.718199998140335, 258942.632399998605251 ], [ 353780.181500002741814, 258921.69709999859333 ], [ 353785.906599998474121, 258915.539000000804663 ], [ 353779.945200003683567, 258913.122699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102601034200", "MAP": "D9-5465-T93", "PARCEL_NAM": "39-A-A-5", "ACRE": null, "LONGITUDE": -64.97807137, "LATITUDE": 18.35928163, "OBJECTID_1": 2313, "PARCEL_NO_": "102601034200", "Tax_Legal_": "PEARL 39-A-A-4 & -5 SOUTHSIDE QUARTER", "Name": "BELTZ, TIMOTHY J. & PETSCHE, JOLENE C.", "Address": "PO Box 8717", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 79800, "Improved_V": 183500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.48373408500001, "SHAPE_Area": 337.254284224 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353821.151699997484684, 258838.824200000613928 ], [ 353818.66160000115633, 258831.822799999266863 ], [ 353810.054999999701977, 258835.500999998301268 ], [ 353807.920000001788139, 258836.437300000339746 ], [ 353799.453299999237061, 258819.371599998325109 ], [ 353798.310699999332428, 258814.333700001239777 ], [ 353796.542900003492832, 258806.539299998432398 ], [ 353795.66610000282526, 258796.055799998342991 ], [ 353791.480700001120567, 258802.023699998855591 ], [ 353787.669699996709824, 258807.535199999809265 ], [ 353807.816699996590614, 258844.539799999445677 ], [ 353813.717600002884865, 258842.102400001138449 ], [ 353821.151699997484684, 258838.824200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601034300", "MAP": "A9-393-T91", "PARCEL_NAM": "39-A-A-1", "ACRE": null, "LONGITUDE": -64.97781169, "LATITUDE": 18.35968692, "OBJECTID_1": 2314, "PARCEL_NO_": "102601034300", "Tax_Legal_": "PEARL 39A-A-1 SOUTHSIDE QUARTER", "Name": "STEELE, ROBERT", "Address": "4026 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.324742920099993, "SHAPE_Area": 464.38490986699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353833.584600001573563, 258858.530000001192093 ], [ 353824.378600001335144, 258853.011399999260902 ], [ 353820.854800000786781, 258855.447999998927116 ], [ 353815.697200000286102, 258859.014199998229742 ], [ 353832.807700000703335, 258890.441599998623133 ], [ 353836.6300999969244, 258884.701299998909235 ], [ 353837.20830000191927, 258883.832899998873472 ], [ 353837.434799998998642, 258880.920800000429153 ], [ 353837.818000003695488, 258875.992499999701977 ], [ 353838.611699998378754, 258861.308100000023842 ], [ 353833.584600001573563, 258858.530000001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601031500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97810072, "LATITUDE": 18.35921523, "OBJECTID_1": 2289, "PARCEL_NO_": "102601031500", "Tax_Legal_": "PEARL 39A SOUTHSIDE QTR.", "Name": "STEELE, LESLIE", "Address": "PO Box 7963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 181800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 8.1279592836500001, "SHAPE_Area": 1.7705894850699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353800.010899998247623, 258817.39809999987483 ], [ 353798.310699999332428, 258814.333700001239777 ], [ 353799.109700001776218, 258817.856600001454353 ], [ 353800.010899998247623, 258817.39809999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003030200", "MAP": "B9-311-T71", "PARCEL_NAM": "4H-1-B", "ACRE": "0.270", "LONGITUDE": -64.9140603, "LATITUDE": 18.35363021, "OBJECTID_1": 5798, "PARCEL_NO_": "103003030200", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4H-1-B GR NORTHSIDE", "Name": "WALLACE, REGINALD L. & MELISSA S.", "Address": "353 Twelve Oaks Dr", "City": "Winter Springs", "State": "Florida", "Zip": 32708, "Country": "United States", "Land_Value": 25800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.884740724, "SHAPE_Area": 917.48784981999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360582.624399997293949, 258243.994899999350309 ], [ 360568.081000000238419, 258231.69709999859333 ], [ 360551.994300000369549, 258251.805500000715256 ], [ 360573.517200000584126, 258275.458700001239777 ], [ 360589.768299996852875, 258258.369899999350309 ], [ 360594.191500000655651, 258253.775800000876188 ], [ 360582.624399997293949, 258243.994899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003030300", "MAP": "B9-311-T71", "PARCEL_NAM": "4H-1-A", "ACRE": "0.268", "LONGITUDE": -64.91386703000001, "LATITUDE": 18.35342114, "OBJECTID_1": 5799, "PARCEL_NO_": "103003030300", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4H-1A GR NORTHSIDE", "Name": "BARBARA J KING-ANOBILE and ANN MARIE UBELIS", "Address": "11 Marsh Dr", "City": "Beaufort", "State": "South Carolina", "Zip": 29907, "Country": "United States", "Land_Value": 27300, "Improved_V": 164600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.57292923899999, "SHAPE_Area": 1164.5725963299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360592.733000002801418, 258206.795000001788139 ], [ 360592.608000002801418, 258206.679699998348951 ], [ 360568.081000000238419, 258231.69709999859333 ], [ 360582.624399997293949, 258243.994899999350309 ], [ 360594.191500000655651, 258253.775800000876188 ], [ 360613.361800000071526, 258233.864999998360872 ], [ 360617.446699999272823, 258229.5777000002563 ], [ 360599.685699999332428, 258213.2043999992311 ], [ 360592.733000002801418, 258206.795000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102502039900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98749827, "LATITUDE": 18.35891501, "OBJECTID_1": 2039, "PARCEL_NO_": "102502039900", "Tax_Legal_": "5A,B,C REM,D,E&F SANTA MARIA NO.1 WEST END QTR", "Name": "MODERN DAY CONSTRUCTION INC", "Address": "PO Box 132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 497000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 505.155143108, "SHAPE_Area": 5058.5875268099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352751.031900003552437, 258829.394099999219179 ], [ 352753.319681371445768, 258823.628863217512844 ], [ 352756.186973489413504, 258818.128814613504801 ], [ 352759.603505635808688, 258812.952019579010084 ], [ 352763.53320862428518, 258808.153130836959463 ], [ 352767.934595595346764, 258803.782811458746437 ], [ 352772.761200003325939, 258799.887200001627207 ], [ 352778.679008317820262, 258795.29763496722444 ], [ 352784.908784456842113, 258791.141380438231863 ], [ 352791.418862014368642, 258787.43956295933458 ], [ 352798.176149791805074, 258784.210999138478655 ], [ 352805.146300002932549, 258781.472100000828505 ], [ 352816.276693462627009, 258778.871994028042536 ], [ 352827.517921525286511, 258776.802935961633921 ], [ 352838.844661982206162, 258775.269586601963965 ], [ 352850.23139999806881, 258774.275400001555681 ], [ 352875.095045648806263, 258773.292728641623398 ], [ 352899.973099999129772, 258772.793800000101328 ], [ 352916.391620696231257, 258773.875771201244788 ], [ 352932.752812797145452, 258775.622160790924681 ], [ 352949.029799997806549, 258778.030099999159575 ], [ 352941.798199996352196, 258775.015599999576807 ], [ 352900.787699997425079, 258761.592199999839067 ], [ 352879.855999998748302, 258757.621100001037121 ], [ 352847.161700002849102, 258751.681600000709295 ], [ 352836.5337999984622, 258750.666499998420477 ], [ 352829.925700001418591, 258750.035300001502037 ], [ 352824.596000000834465, 258749.875399999320507 ], [ 352820.251800000667572, 258749.745000001043081 ], [ 352815.798900000751019, 258750.535599999129772 ], [ 352789.563400000333786, 258755.193399999290705 ], [ 352786.332699999213219, 258755.800200000405312 ], [ 352727.261500000953674, 258780.014699999243021 ], [ 352740.182300001382828, 258806.855700001120567 ], [ 352751.031900003552437, 258829.394099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102603010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98282148, "LATITUDE": 18.35612379, "OBJECTID_1": 2538, "PARCEL_NO_": "102603010100", "Tax_Legal_": "SANTA MARIA 4B SOUTH SIDE QTR.", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.864794528700003, "SHAPE_Area": 59.557248817800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353306.862899996340275, 258474.03999999910593 ], [ 353306.454199999570847, 258470.225699998438358 ], [ 353303.473999999463558, 258462.145599998533726 ], [ 353297.910599999129772, 258475.387699998915195 ], [ 353306.862899996340275, 258474.03999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99437868, "LATITUDE": 18.356813, "OBJECTID_1": 2053, "PARCEL_NO_": "102503010100", "Tax_Legal_": "PERSEVERANCE WEST END QTR", "Name": "PETER'S FARM INVESTMENT CORP", "Address": "P.O. BOX 763", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 4677800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.52861698200002, "SHAPE_Area": 887.89823011099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352130.855099998414516, 258567.38230000063777 ], [ 352130.497400000691414, 258559.756700001657009 ], [ 352127.771499998867512, 258559.876299999654293 ], [ 352119.513300001621246, 258560.238499999046326 ], [ 352106.284100003540516, 258558.915600001811981 ], [ 352094.113200001418591, 258553.8885000012815 ], [ 352089.350699998438358, 258545.9510000012815 ], [ 352084.417599998414516, 258539.276799999177456 ], [ 352084.334600001573563, 258539.164500001817942 ], [ 352080.354900002479553, 258533.780099999159575 ], [ 352074.282399997115135, 258529.095600001513958 ], [ 352071.094400003552437, 258526.636399999260902 ], [ 352066.331900000572205, 258522.403000000864267 ], [ 352060.511100001633167, 258516.052999999374151 ], [ 352056.277699999511242, 258508.909200001507998 ], [ 352054.161100000143051, 258501.500900000333786 ], [ 352052.309000000357628, 258493.563400000333786 ], [ 352050.813500002026558, 258484.857900001108646 ], [ 352047.509199999272823, 258494.118999999016523 ], [ 352045.327799998223782, 258498.5439000017941 ], [ 352047.546499997377396, 258507.057199999690056 ], [ 352050.456900000572205, 258513.407200001180172 ], [ 352052.044399999082088, 258518.434300001710653 ], [ 352056.013099998235703, 258522.667599998414516 ], [ 352059.981899999082088, 258526.371800001710653 ], [ 352063.686099998652935, 258529.546799998730421 ], [ 352067.919399999082088, 258532.45719999819994 ], [ 352070.829800002276897, 258535.103000000119209 ], [ 352075.531800001859665, 258540.384799998253584 ], [ 352075.744199998676777, 258540.358300000429153 ], [ 352075.784500002861023, 258540.668699998408556 ], [ 352081.413199998438358, 258547.273899998515844 ], [ 352083.794399999082088, 258551.771800000220537 ], [ 352085.646499998867512, 258557.063499998301268 ], [ 352089.002300001680851, 258559.321299999952316 ], [ 352092.790299996733665, 258562.355200000107288 ], [ 352097.552799999713898, 258563.678100001066923 ], [ 352105.490299999713898, 258565.000999998301268 ], [ 352114.221600003540516, 258566.059399999678135 ], [ 352125.069499999284744, 258567.38230000063777 ], [ 352130.855099998414516, 258567.38230000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501011100", "MAP": null, "PARCEL_NAM": "6", "ACRE": null, "LONGITUDE": -64.99417792, "LATITUDE": 18.35706915, "OBJECTID_1": 1964, "PARCEL_NO_": "102501011100", "Tax_Legal_": "BONNE ESPERANCE 6 WEST END QTR", "Name": "ANDERSON, LORI & BARBARA", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 82600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.58037007900001, "SHAPE_Area": 554.32048147900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352075.784500002861023, 258540.668699998408556 ], [ 352075.531800001859665, 258540.384799998253584 ], [ 352069.436700001358986, 258541.144799999892712 ], [ 352077.15429999679327, 258551.222300000488758 ], [ 352095.092000000178814, 258574.644900001585484 ], [ 352096.646999999880791, 258576.675500001758337 ], [ 352103.2550999969244, 258576.268500000238419 ], [ 352131.226400002837181, 258575.299199998378754 ], [ 352130.855099998414516, 258567.38230000063777 ], [ 352125.069499999284744, 258567.38230000063777 ], [ 352114.221600003540516, 258566.059399999678135 ], [ 352105.490299999713898, 258565.000999998301268 ], [ 352097.552799999713898, 258563.678100001066923 ], [ 352092.790299996733665, 258562.355200000107288 ], [ 352089.002300001680851, 258559.321299999952316 ], [ 352085.646499998867512, 258557.063499998301268 ], [ 352083.794399999082088, 258551.771800000220537 ], [ 352081.413199998438358, 258547.273899998515844 ], [ 352075.784500002861023, 258540.668699998408556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501011200", "MAP": null, "PARCEL_NAM": "6C", "ACRE": null, "LONGITUDE": -64.99451589, "LATITUDE": 18.35678598, "OBJECTID_1": 1965, "PARCEL_NO_": "102501011200", "Tax_Legal_": "BONNE ESPERANCE 6C WEST END QTR", "Name": "LEBRON, EDWALDO & JOYCE", "Address": "PO Box 305082", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68500, "Improved_V": 128200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.9998168316, "SHAPE_Area": 77.106955831099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352075.531800001859665, 258540.384799998253584 ], [ 352070.829800002276897, 258535.103000000119209 ], [ 352067.919399999082088, 258532.45719999819994 ], [ 352063.686099998652935, 258529.546799998730421 ], [ 352059.981899999082088, 258526.371800001710653 ], [ 352056.013099998235703, 258522.667599998414516 ], [ 352052.044399999082088, 258518.434300001710653 ], [ 352069.436700001358986, 258541.144799999892712 ], [ 352075.531800001859665, 258540.384799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102501011100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99303117, "LATITUDE": 18.35636014, "OBJECTID_1": 1964, "PARCEL_NO_": "102501011100", "Tax_Legal_": "BONNE ESPERANCE 6 WEST END QTR", "Name": "ANDERSON, LORI & BARBARA", "Address": "PO Box 752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 82600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 559.60456146800004, "SHAPE_Area": 2306.0969260699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352130.497400000691414, 258559.756700001657009 ], [ 352130.855099998414516, 258567.38230000063777 ], [ 352134.594499997794628, 258567.38230000063777 ], [ 352145.442500002682209, 258566.853100001811981 ], [ 352158.4070999994874, 258564.736400000751019 ], [ 352168.99040000140667, 258561.8260000012815 ], [ 352178.891000002622604, 258556.256599999964237 ], [ 352182.34009999781847, 258543.496899999678135 ], [ 352185.959299996495247, 258522.9054000005126 ], [ 352190.157200001180172, 258514.200899999588728 ], [ 352192.803000003099442, 258508.909200001507998 ], [ 352196.943099997937679, 258502.405200000852346 ], [ 352203.915500000119209, 258500.442600000649691 ], [ 352209.736400000751019, 258498.855099998414516 ], [ 352218.203000001609325, 258497.267499998211861 ], [ 352226.994800001382828, 258494.371500000357628 ], [ 352233.548900000751019, 258491.446699999272823 ], [ 352241.385600000619888, 258485.241399999707937 ], [ 352245.221199996769428, 258476.316599998623133 ], [ 352247.037000000476837, 258452.477899998426437 ], [ 352256.544799998402596, 258449.474199999123812 ], [ 352261.374300003051758, 258446.467399999499321 ], [ 352267.991499997675419, 258445.8581000007689 ], [ 352272.727099999785423, 258444.12950000166893 ], [ 352276.686200000345707, 258442.468299999833107 ], [ 352282.721199996769428, 258439.936000000685453 ], [ 352290.716300003230572, 258436.581199999898672 ], [ 352295.066200003027916, 258434.010899998247623 ], [ 352298.820799998939037, 258431.792399998754263 ], [ 352302.829999998211861, 258430.125700000673532 ], [ 352305.294699996709824, 258429.101100001484156 ], [ 352307.068899996578693, 258429.301600001752377 ], [ 352309.322599999606609, 258429.55629999935627 ], [ 352311.310199998319149, 258431.144099999219179 ], [ 352314.128100000321865, 258433.395300000905991 ], [ 352311.910599999129772, 258409.734700001776218 ], [ 352304.970600001513958, 258416.656300000846386 ], [ 352301.494000002741814, 258419.525199998170137 ], [ 352297.908600002527237, 258421.956000000238419 ], [ 352295.843999996781349, 258423.355799999088049 ], [ 352294.044100001454353, 258424.576099999248981 ], [ 352291.147900000214577, 258425.97859999909997 ], [ 352286.756700001657009, 258428.105000000447035 ], [ 352260.058499999344349, 258438.441199999302626 ], [ 352243.070100001990795, 258444.846000000834465 ], [ 352241.27759999781847, 258446.614999998360872 ], [ 352238.1908999979496, 258449.661299999803305 ], [ 352236.866700001060963, 258465.525699999183416 ], [ 352236.394900001585484, 258471.178100001066923 ], [ 352235.899899996817112, 258472.770399998873472 ], [ 352232.954999998211861, 258482.243599999696016 ], [ 352231.420299999415874, 258487.180500000715256 ], [ 352226.669699996709824, 258487.21339999884367 ], [ 352218.996799997985363, 258488.800900001078844 ], [ 352210.530100002884865, 258490.388399999588728 ], [ 352199.682199999690056, 258492.240499999374151 ], [ 352195.520499996840954, 258494.024000000208616 ], [ 352190.421700000762939, 258496.209199998527765 ], [ 352187.77589999884367, 258498.061299998313189 ], [ 352185.923799999058247, 258500.707100000232458 ], [ 352184.336300000548363, 258504.146699998527765 ], [ 352183.013400003314018, 258508.115499999374151 ], [ 352181.425899997353554, 258516.317600000649691 ], [ 352178.194499999284744, 258527.583799999207258 ], [ 352177.014399997889996, 258531.698100000619888 ], [ 352173.458700001239777, 258541.486200001090765 ], [ 352172.88570000231266, 258543.063400000333786 ], [ 352168.196699999272823, 258550.713500000536442 ], [ 352159.465400002896786, 258556.534299999475479 ], [ 352149.675800003111362, 258558.915600001811981 ], [ 352130.497400000691414, 258559.756700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.99442775, "LATITUDE": 18.35684424, "OBJECTID_1": 2053, "PARCEL_NO_": "102503010100", "Tax_Legal_": "PERSEVERANCE WEST END QTR", "Name": "PETER'S FARM INVESTMENT CORP", "Address": "P.O. BOX 763", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 4677800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.9071262696, "SHAPE_Area": 0.0334984543 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352075.744199998676777, 258540.358300000429153 ], [ 352075.531800001859665, 258540.384799998253584 ], [ 352075.784500002861023, 258540.668699998408556 ], [ 352075.744199998676777, 258540.358300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010400", "MAP": "D9-463-T65", "PARCEL_NAM": "6E", "ACRE": ".58", "LONGITUDE": -64.99375159, "LATITUDE": 18.35577858, "OBJECTID_1": 2056, "PARCEL_NO_": "102503010400", "Tax_Legal_": "BONNE ESPERANCE 6E WEST END QTR", "Name": "ROBERTS, BRIAN L.", "Address": "PO Box 11762", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.37174558800001, "SHAPE_Area": 3615.38624557 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352177.251000002026558, 258416.287999998778105 ], [ 352173.776500001549721, 258373.20380000025034 ], [ 352171.901699997484684, 258374.602699998766184 ], [ 352128.082099996507168, 258406.963599998503923 ], [ 352119.96509999781847, 258413.229899998754263 ], [ 352115.755300000309944, 258416.561900001019239 ], [ 352113.938900001347065, 258417.999600000679493 ], [ 352111.322400003671646, 258420.070599999278784 ], [ 352127.148000001907349, 258468.5912000015378 ], [ 352178.861100003123283, 258436.253400001674891 ], [ 352178.435400001704693, 258430.974800001829863 ], [ 352177.251000002026558, 258416.287999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102501011400", "MAP": "D9-463-T65", "PARCEL_NAM": "6B", "ACRE": ".58", "LONGITUDE": -64.9936297, "LATITUDE": 18.35635064, "OBJECTID_1": 1967, "PARCEL_NO_": "102501011400", "Tax_Legal_": "BONNE ESPERANCE 6B WEST END QTR", "Name": "PINNEY, BARBARA T and STEVE A", "Address": "PO Box 307822", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 68500, "Improved_V": 92600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.91786253399999, "SHAPE_Area": 3528.3672489199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352178.861100003123283, 258436.253400001674891 ], [ 352127.148000001907349, 258468.5912000015378 ], [ 352135.031199999153614, 258489.642400000244379 ], [ 352147.491499997675419, 258522.916499998420477 ], [ 352149.410099998116493, 258528.039900001138449 ], [ 352150.530900001525879, 258531.033100001513958 ], [ 352172.57599999755621, 258528.284299999475479 ], [ 352177.028200000524521, 258527.729200001806021 ], [ 352178.194499999284744, 258527.583799999207258 ], [ 352181.425899997353554, 258516.317600000649691 ], [ 352183.013400003314018, 258508.115499999374151 ], [ 352184.336300000548363, 258504.146699998527765 ], [ 352179.423000000417233, 258443.2212999984622 ], [ 352178.861100003123283, 258436.253400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102503010200", "MAP": "D9-463-T65", "PARCEL_NAM": "6D", "ACRE": ".58", "LONGITUDE": -64.99431124, "LATITUDE": 18.35618232, "OBJECTID_1": 2054, "PARCEL_NO_": "102503010200", "Tax_Legal_": "BONNE ESPERANCE 6D WEST END QTR", "Name": "MCEVOY, CELIA R. (LIFE ESTATE)", "Address": "PO Box 8627", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.69879884, "SHAPE_Area": 3436.9643823800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352127.148000001907349, 258468.5912000015378 ], [ 352111.322400003671646, 258420.070599999278784 ], [ 352076.937399998307228, 258447.285999998450279 ], [ 352059.83219999819994, 258467.410999998450279 ], [ 352057.380900003015995, 258471.190600000321865 ], [ 352052.442299999296665, 258482.971400000154972 ], [ 352050.813500002026558, 258484.857900001108646 ], [ 352052.309000000357628, 258493.563400000333786 ], [ 352054.161100000143051, 258501.500900000333786 ], [ 352056.277699999511242, 258508.909200001507998 ], [ 352058.006899997591972, 258511.827199999243021 ], [ 352127.148000001907349, 258468.5912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014600", "MAP": "F9-3567-T78", "PARCEL_NAM": "115", "ACRE": ".07", "LONGITUDE": -64.86481451, "LATITUDE": 18.32525397, "OBJECTID_1": 39164, "PARCEL_NO_": "107701014600", "Tax_Legal_": "115 FRYDENHOJ RED HOOK QTR", "Name": "LEONARD, GRACALIA", "Address": "115 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103200, "Improved_V": 30100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.23574959600001, "SHAPE_Area": 354.47632098299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365815.472099997103214, 255137.400499999523163 ], [ 365804.532200001180172, 255137.391100000590086 ], [ 365802.831399999558926, 255149.668099999427795 ], [ 365792.057499997317791, 255174.24269999936223 ], [ 365794.133400000631809, 255174.727800000458956 ], [ 365800.824600003659725, 255176.291499998420477 ], [ 365802.376900002360344, 255176.65430000051856 ], [ 365802.501999996602535, 255174.703499998897314 ], [ 365803.289300002157688, 255172.002599999308586 ], [ 365806.577291764260735, 255161.615203482913785 ], [ 365810.241109603375662, 255151.354339237703243 ], [ 365814.27589999884367, 255141.233600001782179 ], [ 365814.909800000488758, 255139.150199998170137 ], [ 365815.472099997103214, 255137.400499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014500", "MAP": "F9-1105-T63", "PARCEL_NAM": "119", "ACRE": ".05", "LONGITUDE": -64.86489376, "LATITUDE": 18.32562785, "OBJECTID_1": 39163, "PARCEL_NO_": "107701014500", "Tax_Legal_": "119 FREYDENHOJ RED HOOK QTR", "Name": "EDWARDS, MURIEL", "Address": "24G Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.526472833, "SHAPE_Area": 582.60977716299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365794.133400000631809, 255174.727800000458956 ], [ 365792.057499997317791, 255174.24269999936223 ], [ 365787.295000001788139, 255194.562699999660254 ], [ 365787.1891999989748, 255198.901900000870228 ], [ 365788.762599997222424, 255219.159499999135733 ], [ 365801.317400000989437, 255218.155699998140335 ], [ 365802.692500002682209, 255218.045699998736382 ], [ 365801.957689061120618, 255204.258155863295542 ], [ 365801.852416041889228, 255190.451445972867077 ], [ 365802.376900002360344, 255176.65430000051856 ], [ 365800.824600003659725, 255176.291499998420477 ], [ 365794.133400000631809, 255174.727800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701016000", "MAP": "F9-1146-T63", "PARCEL_NAM": "120", "ACRE": "0.05", "LONGITUDE": -64.86454054, "LATITUDE": 18.32626457, "OBJECTID_1": 39177, "PARCEL_NO_": "107701016000", "Tax_Legal_": "FRYDENHOJ 120 RED HOOK QTR", "Name": "BAXTER, SEDRIC", "Address": "PO Box 7881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.812697973, "SHAPE_Area": 752.42071429700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365811.138800002634525, 255256.034099999815226 ], [ 365810.331047794607002, 255259.971422208735021 ], [ 365808.931199997663498, 255263.739100001752377 ], [ 365821.940099999308586, 255274.943300001323223 ], [ 365828.516500003635883, 255278.079700000584126 ], [ 365847.737000003457069, 255287.246399998664856 ], [ 365848.053700000047684, 255274.587600000202656 ], [ 365848.321000002324581, 255263.907499998807907 ], [ 365848.426100000739098, 255259.705800000578165 ], [ 365841.540399998426437, 255259.042199999094009 ], [ 365830.258599996566772, 255257.940799999982119 ], [ 365811.138800002634525, 255256.034099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701016000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86430663, "LATITUDE": 18.32631107, "OBJECTID_1": 39177, "PARCEL_NO_": "107701016000", "Tax_Legal_": "FRYDENHOJ 120 RED HOOK QTR", "Name": "BAXTER, SEDRIC", "Address": "PO Box 7881", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.302468032500002, "SHAPE_Area": 455.80855849 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365853.451999999582767, 255260.186099998652935 ], [ 365848.426100000739098, 255259.705800000578165 ], [ 365848.321000002324581, 255263.907499998807907 ], [ 365848.053700000047684, 255274.587600000202656 ], [ 365847.737000003457069, 255287.246399998664856 ], [ 365857.800599999725819, 255286.815099999308586 ], [ 365866.25789999961853, 255286.4527000002563 ], [ 365865.475699998438358, 255274.307900000363588 ], [ 365864.88400000333786, 255265.118900001049042 ], [ 365864.65990000218153, 255261.639499999582767 ], [ 365853.451999999582767, 255260.186099998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701010900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86482023000001, "LATITUDE": 18.32617042, "OBJECTID_1": 39131, "PARCEL_NO_": "107701010900", "Tax_Legal_": "ESTATE FRYDENHOJ RED HOOK QTR", "Name": "LINDO, ELIAS", "Address": "Box 1854", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 553800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 9.43576129755, "SHAPE_Area": 0.39012758728000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365803.258699998259544, 255255.761199999600649 ], [ 365801.575900003314018, 255260.164099998772144 ], [ 365802.533205486019142, 255258.006949381408049 ], [ 365803.258699998259544, 255255.761199999600649 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701015900", "MAP": "F9-1190-T63", "PARCEL_NAM": "124", "ACRE": "0.03", "LONGITUDE": -64.86486093000001, "LATITUDE": 18.32607537, "OBJECTID_1": 39176, "PARCEL_NO_": "107701015900", "Tax_Legal_": "EST FRYDENHOJ 124 RED HOOK QTR", "Name": "BOYNES, LOIS, W & P", "Address": "Po Box 302921", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37600, "Improved_V": 72600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.302131811300001, "SHAPE_Area": 180.66709218599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365803.0625, 255239.848400000482798 ], [ 365791.415899999439716, 255239.594900000840425 ], [ 365793.929399996995926, 255255.866799999028444 ], [ 365803.258699998259544, 255255.761199999600649 ], [ 365803.707587378215976, 255253.679736046004109 ], [ 365803.95719999819994, 255251.565099999308586 ], [ 365804.016800001263618, 255247.041999999433756 ], [ 365804.018899999558926, 255246.547800000756979 ], [ 365803.962099999189377, 255239.868000000715256 ], [ 365803.0625, 255239.848400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014300", "MAP": "F9-1180-T63", "PARCEL_NAM": "122", "ACRE": ".05", "LONGITUDE": -64.86487606, "LATITUDE": 18.32594185, "OBJECTID_1": 39161, "PARCEL_NO_": "107701014300", "Tax_Legal_": "122 FRYDENHOJ RED HOOK QTR", "Name": "MORTON, JAMES & OTHERS", "Address": "PO Box 7774", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8200, "Improved_V": 91200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.0442261054, "SHAPE_Area": 196.25628488500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365803.300800003111362, 255225.49439999833703 ], [ 365789.259400002658367, 255225.732099998742342 ], [ 365790.311300002038479, 255239.647799998521805 ], [ 365791.415899999439716, 255239.594900000840425 ], [ 365803.0625, 255239.848400000482798 ], [ 365803.962099999189377, 255239.868000000715256 ], [ 365803.300800003111362, 255225.49439999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014600", "MAP": "F9-2584-T70", "PARCEL_NAM": "115A", "ACRE": ".003", "LONGITUDE": -64.86473822000001, "LATITUDE": 18.32507001, "OBJECTID_1": 39164, "PARCEL_NO_": "107701014600", "Tax_Legal_": "115 FRYDENHOJ RED HOOK QTR", "Name": "LEONARD, GRACALIA", "Address": "115 FRYDENHOJ", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103200, "Improved_V": 30100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 26.939800649599999, "SHAPE_Area": 18.621731427499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365804.532200001180172, 255137.391100000590086 ], [ 365815.472099997103214, 255137.400499999523163 ], [ 365816.507600001990795, 255134.000900000333786 ], [ 365804.532200001180172, 255137.391100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803041500", "MAP": "D9-6524-T97", "PARCEL_NAM": "97-4-1", "ACRE": null, "LONGITUDE": -64.94439504, "LATITUDE": 18.35211993, "OBJECTID_1": 4401, "PARCEL_NO_": "102803041500", "Tax_Legal_": "SOLBERG 97-5 #1 LT.NORTHSIDE QTR.", "Name": "BOSCHULTE, EVELYN", "Address": "PO Box 305882", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.434862087, "SHAPE_Area": 1099.26695982 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357391.276699997484684, 258073.149300001561642 ], [ 357368.262699998915195, 258038.628199998289347 ], [ 357363.791799999773502, 258040.000399999320507 ], [ 357360.732299998402596, 258040.10700000077486 ], [ 357341.512900002300739, 258040.776299998164177 ], [ 357371.279100000858307, 258085.314500000327826 ], [ 357377.628200002014637, 258081.452100001275539 ], [ 357391.276699997484684, 258073.149300001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701015800", "MAP": "F9-2612-T70", "PARCEL_NAM": "106", "ACRE": ".04", "LONGITUDE": -64.86472218, "LATITUDE": 18.32481124, "OBJECTID_1": 39175, "PARCEL_NO_": "107701015800", "Tax_Legal_": "FRYDENHOJ 106 RED HOOK QUARTER", "Name": "ANTHONY, EDMUND", "Address": "6214 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68500, "Improved_V": 74500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.529634075100006, "SHAPE_Area": 278.51670491200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365820.792300000786781, 255116.4239999987185 ], [ 365822.046800002455711, 255108.991399999707937 ], [ 365822.42509999871254, 255106.07039999961853 ], [ 365822.600299999117851, 255102.919700000435114 ], [ 365822.83330000191927, 255098.912799999117851 ], [ 365806.793499998748302, 255098.987100001424551 ], [ 365806.634800001978874, 255101.130199998617172 ], [ 365806.097699999809265, 255108.512899998575449 ], [ 365805.516500003635883, 255116.500900000333786 ], [ 365820.792300000786781, 255116.4239999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701016500", "MAP": null, "PARCEL_NAM": "106A", "ACRE": null, "LONGITUDE": -64.86473332, "LATITUDE": 18.32489967, "OBJECTID_1": 39182, "PARCEL_NO_": "107701016500", "Tax_Legal_": "106A,115A&161 FRYDENHOJ RED HOOK QTR", "Name": "SMITH, MARCELLA N, ROY E & DALE SMITH-ROSS", "Address": "PO Box 7003", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.065176674999996, "SHAPE_Area": 28.7539619609 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365820.792300000786781, 255116.4239999987185 ], [ 365805.516500003635883, 255116.500900000333786 ], [ 365805.498999997973442, 255118.561299998313189 ], [ 365820.43469999730587, 255118.175900001078844 ], [ 365820.792300000786781, 255116.4239999987185 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701015600", "MAP": "F9-2683-T70", "PARCEL_NAM": "164", "ACRE": null, "LONGITUDE": -64.86475511, "LATITUDE": 18.32432297, "OBJECTID_1": 39173, "PARCEL_NO_": "107701015600", "Tax_Legal_": "105&164 FRYDENHOJ 3 RED HOOK QTR", "Name": "RAMOS, PEDRO", "Address": "6202 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13700, "Improved_V": 146500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.178394532499993, "SHAPE_Area": 78.988086435100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365808.728500001132488, 255041.425500001758337 ], [ 365810.682899996638298, 255073.666400000452995 ], [ 365813.881700001657009, 255045.604600001126528 ], [ 365808.728500001132488, 255041.425500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701015000", "MAP": "F9-452-T59", "PARCEL_NAM": "95", "ACRE": ".31", "LONGITUDE": -64.86472663000001, "LATITUDE": 18.32298795, "OBJECTID_1": 39168, "PARCEL_NO_": "107701015000", "Tax_Legal_": "95 FRYDENHOJ NO.3 RED HOOK QTR", "Name": "REOVAN, LILLIAN A. & LESLIE A.", "Address": "1439 Metropolitan Ave", "City": "Bronx", "State": "New York", "Zip": 10462, "Country": "United States", "Land_Value": 57500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.98228119800001, "SHAPE_Area": 1239.8910420300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365842.112000003457069, 254890.930300001055002 ], [ 365842.161200001835823, 254885.166200000792742 ], [ 365783.023299999535084, 254905.622400000691414 ], [ 365792.976300001144409, 254922.949099998921156 ], [ 365833.020400002598763, 254914.645799998193979 ], [ 365837.403899997472763, 254913.736900001764297 ], [ 365842.112000003457069, 254890.930300001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701023900", "MAP": "A9-410-T92", "PARCEL_NAM": "19-A", "ACRE": ".24", "LONGITUDE": -64.8646049, "LATITUDE": 18.32529959, "OBJECTID_1": 39242, "PARCEL_NO_": "107701023900", "Tax_Legal_": "PAR 19-A REM FRYDENHOJ 3 RED HOOK QTR", "Name": "WARRINGTON, INGRID R.", "Address": "2 Amy Ct", "City": "Phoenixville", "State": "Pennsylvania", "Zip": 19460, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.42600581, "SHAPE_Area": 925.15357390600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365834.964000001549721, 255143.127399999648333 ], [ 365825.531499996781349, 255133.430399999022484 ], [ 365824.300160349113867, 255137.001221886428539 ], [ 365822.880400002002716, 255140.501400001347065 ], [ 365820.546599999070168, 255145.334699999541044 ], [ 365809.47860000282526, 255174.939500000327826 ], [ 365808.717100001871586, 255179.435199998319149 ], [ 365820.301700003445148, 255180.075300000607967 ], [ 365825.937899999320507, 255180.386700000613928 ], [ 365835.277199998497963, 255180.902699999511242 ], [ 365837.084299996495247, 255181.002500001341105 ], [ 365837.193400003015995, 255178.590500000864267 ], [ 365838.626999996602535, 255146.893100000917912 ], [ 365834.964000001549721, 255143.127399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701023300", "MAP": "A9-410-T92", "PARCEL_NAM": "19-C", "ACRE": "0.25", "LONGITUDE": -64.86463412000001, "LATITUDE": 18.32595738, "OBJECTID_1": 39237, "PARCEL_NO_": "107701023300", "Tax_Legal_": "FRYDENHOJ ESTATE 19-C RED HOOK QUARTER", "Name": "ADIBE, ANTHONY", "Address": "6152 Windsong Way", "City": "Stone Mountain", "State": "Georgia", "Zip": 30087, "Country": "United States", "Land_Value": 31400, "Improved_V": 84800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.94804999199999, "SHAPE_Area": 815.68808140299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365835.367200002074242, 255218.970400001853704 ], [ 365809.363899998366833, 255217.928300000727177 ], [ 365809.336999997496605, 255219.760499998927116 ], [ 365809.438228467071895, 255228.864928132097702 ], [ 365809.930631747934967, 255237.956594527437119 ], [ 365810.813299998641014, 255247.018699999898672 ], [ 365811.233199998736382, 255250.32149999961257 ], [ 365828.774099998176098, 255252.104800000786781 ], [ 365833.843999996781349, 255252.650400001555681 ], [ 365834.976599998772144, 255227.607999999076128 ], [ 365835.367200002074242, 255218.970400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701023400", "MAP": "A9-410-T92", "PARCEL_NAM": "19-B", "ACRE": "0.26", "LONGITUDE": -64.86463765000001, "LATITUDE": 18.32563553, "OBJECTID_1": 39238, "PARCEL_NO_": "107701023400", "Tax_Legal_": "PAR 19-B & 19-A-1 FRYDENHOJ 3 RED HOOK QTR", "Name": "ELESE ANDREW", "Address": "PO BOX 302877", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8032877, "Country": "United States", "Land_Value": 31400, "Improved_V": 92300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.10613620699999, "SHAPE_Area": 1065.7892387899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365820.301700003445148, 255180.075300000607967 ], [ 365808.717100001871586, 255179.435199998319149 ], [ 365807.871869736874942, 255187.68116961864871 ], [ 365807.727407831058372, 255195.96908612025436 ], [ 365808.284750459017232, 255204.239503182005137 ], [ 365809.539899997413158, 255212.433100000023842 ], [ 365809.363899998366833, 255217.928300000727177 ], [ 365835.367200002074242, 255218.970400001853704 ], [ 365835.577399998903275, 255214.322399999946356 ], [ 365835.933200001716614, 255206.454900000244379 ], [ 365836.240099996328354, 255199.668999999761581 ], [ 365837.084299996495247, 255181.002500001341105 ], [ 365835.277199998497963, 255180.902699999511242 ], [ 365825.937899999320507, 255180.386700000613928 ], [ 365820.301700003445148, 255180.075300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202020400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95681253, "LATITUDE": 18.34617999, "OBJECTID_1": 8095, "PARCEL_NO_": "105202020400", "Tax_Legal_": "CONTANT 125-B 7A SOUTHSIDE", "Name": "HODGE, URIEL CLEOPHAS", "Address": "PO Box 306962", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 53800, "Improved_V": 239600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.20476279799999, "SHAPE_Area": 321.20097207200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356073.41950000077486, 257361.993400000035763 ], [ 356070.5287000015378, 257361.750700000673532 ], [ 356064.531400002539158, 257378.799899999052286 ], [ 356042.859499998390675, 257422.183600001037121 ], [ 356051.446800000965595, 257415.692899998277426 ], [ 356056.353000000119209, 257407.711500000208616 ], [ 356066.204999998211861, 257387.104899998754263 ], [ 356070.308100000023842, 257381.826699998229742 ], [ 356073.41950000077486, 257361.993400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202024500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9566956, "LATITUDE": 18.34586312, "OBJECTID_1": 8133, "PARCEL_NO_": "105202024500", "Tax_Legal_": "CONTANT 125-A 7A SOUTHSIDE QTR.", "Name": "WALTERS, BROWN & WALTERS", "Address": "7908 Clearview Cir", "City": "Riverdale", "State": "Georgia", "Zip": 30296, "Country": "United States", "Land_Value": 174500, "Improved_V": 56100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.290570563000003, "SHAPE_Area": 22.364011884899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356070.5287000015378, 257361.750700000673532 ], [ 356073.41950000077486, 257361.993400000035763 ], [ 356075.81530000269413, 257346.721999999135733 ], [ 356070.5287000015378, 257361.750700000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040500", "MAP": null, "PARCEL_NAM": "68B-W", "ACRE": null, "LONGITUDE": -64.93661375000001, "LATITUDE": 18.33974609, "OBJECTID_1": 11355, "PARCEL_NO_": "105304040500", "Tax_Legal_": "KRONPRINDSENS GADE 68 CROWN PRINCE QUARTER", "Name": "ST. PETER & PAUL ROMAN CATHOLIC", "Address": "P.O. BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 98500, "Improved_V": 247600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.993885659499998, "SHAPE_Area": 45.254727559700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358199.328000001609325, 256691.911699999123812 ], [ 358198.119099996984005, 256700.089000001549721 ], [ 358203.408299997448921, 256702.29450000077486 ], [ 358204.255999997258186, 256693.522999998182058 ], [ 358199.328000001609325, 256691.911699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040500", "MAP": null, "PARCEL_NAM": "68B", "ACRE": null, "LONGITUDE": -64.93662949, "LATITUDE": 18.33987129, "OBJECTID_1": 11355, "PARCEL_NO_": "105304040500", "Tax_Legal_": "KRONPRINDSENS GADE 68 CROWN PRINCE QUARTER", "Name": "ST. PETER & PAUL ROMAN CATHOLIC", "Address": "P.O. BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 98500, "Improved_V": 247600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.248244930399999, "SHAPE_Area": 114.011770316 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358195.196999996900558, 256719.853900000452995 ], [ 358201.671899996697903, 256720.260999999940395 ], [ 358201.746100001037121, 256719.493700001388788 ], [ 358202.88289999961853, 256707.730900000780821 ], [ 358203.408299997448921, 256702.29450000077486 ], [ 358198.119099996984005, 256700.089000001549721 ], [ 358195.301700003445148, 256719.145899999886751 ], [ 358195.196999996900558, 256719.853900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304023700", "MAP": null, "PARCEL_NAM": "64", "ACRE": null, "LONGITUDE": -64.93702634, "LATITUDE": 18.3407114, "OBJECTID_1": 11341, "PARCEL_NO_": "105304023700", "Tax_Legal_": "KRONPRINDSENS GADE 64 CROWN PRINCE QUARTER", "Name": "GEORGE, ALBERT H", "Address": "PO Box 35", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 15700, "Improved_V": 69800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.276482827099997, "SHAPE_Area": 255.89590974000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358154.012000001966953, 256791.978000000119209 ], [ 358147.344400003552437, 256810.393100000917912 ], [ 358160.311599999666214, 256814.877599999308586 ], [ 358165.79389999806881, 256796.216699998825788 ], [ 358154.012000001966953, 256791.978000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040500", "MAP": null, "PARCEL_NAM": "68", "ACRE": null, "LONGITUDE": -64.93671864, "LATITUDE": 18.34061326, "OBJECTID_1": 11355, "PARCEL_NO_": "105304040500", "Tax_Legal_": "KRONPRINDSENS GADE 68 CROWN PRINCE QUARTER", "Name": "ST. PETER & PAUL ROMAN CATHOLIC", "Address": "P.O. BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 98500, "Improved_V": 247600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.61055386800001, "SHAPE_Area": 652.41390909100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358197.678700000047684, 256757.200199998915195 ], [ 358189.735100001096725, 256756.798599999397993 ], [ 358180.075900003314018, 256822.133900001645088 ], [ 358191.692900002002716, 256825.446899998933077 ], [ 358193.604999996721745, 256801.828899998217821 ], [ 358194.964199997484684, 256785.040600001811981 ], [ 358196.374099999666214, 256766.927999999374151 ], [ 358196.684000000357628, 256762.947799999266863 ], [ 358197.678700000047684, 256757.200199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304043100", "MAP": null, "PARCEL_NAM": "66B", "ACRE": null, "LONGITUDE": -64.93671297, "LATITUDE": 18.33988318, "OBJECTID_1": 11373, "PARCEL_NO_": "105304043100", "Tax_Legal_": "66B KRONPRINDSENS GADE KRONPRINDSENS QUARTER", "Name": "BURNET-STERN, MARIE-LOUISE", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.325420039299999, "SHAPE_Area": 43.339100353200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358186.257200002670288, 256719.291799999773502 ], [ 358190.006599999964237, 256719.52760000154376 ], [ 358190.183200001716614, 256718.869699999690056 ], [ 358195.514799997210503, 256699.002999998629093 ], [ 358192.773199997842312, 256704.101500000804663 ], [ 358186.523000001907349, 256718.672200001776218 ], [ 358186.257200002670288, 256719.291799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304041300", "MAP": "A9-707-T007", "PARCEL_NAM": "66 REM", "ACRE": ".05", "LONGITUDE": -64.93685659, "LATITUDE": 18.34028394, "OBJECTID_1": 11361, "PARCEL_NO_": "105304041300", "Tax_Legal_": "66 KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "BURNETT-STERN, MARIE LOUISE, TRU", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.042425234199996, "SHAPE_Area": 218.06751105000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358182.858800001442432, 256746.161699999123812 ], [ 358175.706799998879433, 256743.505899999290705 ], [ 358169.569499999284744, 256757.052999999374151 ], [ 358166.135099999606609, 256764.762899998575449 ], [ 358176.959299996495247, 256768.144299998879433 ], [ 358182.858800001442432, 256746.161699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304041300", "MAP": null, "PARCEL_NAM": "66C", "ACRE": null, "LONGITUDE": -64.9367871, "LATITUDE": 18.34009339, "OBJECTID_1": 11361, "PARCEL_NO_": "105304041300", "Tax_Legal_": "66 KRONPRINDSENS GADE CROWN PRINCE QUARTER", "Name": "BURNETT-STERN, MARIE LOUISE, TRU", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 19300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.672814494100002, "SHAPE_Area": 131.63074187199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358188.765000000596046, 256724.153999999165535 ], [ 358184.483499996364117, 256723.426899999380112 ], [ 358178.787100002169609, 256736.706500001251698 ], [ 358175.706799998879433, 256743.505899999290705 ], [ 358182.858800001442432, 256746.161699999123812 ], [ 358188.765000000596046, 256724.153999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304043000", "MAP": null, "PARCEL_NAM": "67B-W", "ACRE": "215 sq ft", "LONGITUDE": -64.93664818000001, "LATITUDE": 18.33974618, "OBJECTID_1": 11372, "PARCEL_NO_": "105304043000", "Tax_Legal_": "67 KRONPRINDSENS GADE KRONPRINDSENS QUARTER", "Name": "BURNETT-STERN, MARIE-LOUISE", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 19.139361648200001, "SHAPE_Area": 11.3045039015 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358199.328000001609325, 256691.911699999123812 ], [ 358195.514799997210503, 256699.002999998629093 ], [ 358198.119099996984005, 256700.089000001549721 ], [ 358199.328000001609325, 256691.911699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304043000", "MAP": null, "PARCEL_NAM": "67B", "ACRE": "587 sq ft", "LONGITUDE": -64.93667716, "LATITUDE": 18.33986948, "OBJECTID_1": 11372, "PARCEL_NO_": "105304043000", "Tax_Legal_": "67 KRONPRINDSENS GADE KRONPRINDSENS QUARTER", "Name": "BURNETT-STERN, MARIE-LOUISE", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.252916306400003, "SHAPE_Area": 81.487538932999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358190.006599999964237, 256719.52760000154376 ], [ 358195.196999996900558, 256719.853900000452995 ], [ 358195.301700003445148, 256719.145899999886751 ], [ 358198.119099996984005, 256700.089000001549721 ], [ 358195.514799997210503, 256699.002999998629093 ], [ 358190.183200001716614, 256718.869699999690056 ], [ 358190.006599999964237, 256719.52760000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304043000", "MAP": "A9-707-T007", "PARCEL_NAM": "67 REM", "ACRE": null, "LONGITUDE": -64.93681233, "LATITUDE": 18.34051937, "OBJECTID_1": 11372, "PARCEL_NO_": "105304043000", "Tax_Legal_": "67 KRONPRINDSENS GADE KRONPRINDSENS QUARTER", "Name": "BURNETT-STERN, MARIE-LOUISE", "Address": "PO Box 302938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.363344377, "SHAPE_Area": 538.62639426400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358167.026299998164177, 256817.411499999463558 ], [ 358173.321299999952316, 256799.250599998980761 ], [ 358176.719800002872944, 256800.336100000888109 ], [ 358183.001800000667572, 256802.342700000852346 ], [ 358189.735100001096725, 256756.798599999397993 ], [ 358185.280500002205372, 256756.811299998313189 ], [ 358184.539599999785423, 256760.621300000697374 ], [ 358179.303999997675419, 256759.407600000500679 ], [ 358176.959299996495247, 256768.144299998879433 ], [ 358166.007299996912479, 256817.028499998152256 ], [ 358167.026299998164177, 256817.411499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304041700", "MAP": null, "PARCEL_NAM": "68A", "ACRE": null, "LONGITUDE": -64.93666036, "LATITUDE": 18.34012717, "OBJECTID_1": 11365, "PARCEL_NO_": "105304041700", "Tax_Legal_": "KRONP GADE 68A CROWN PRINCE QUARTER", "Name": "BENJAMIN, CLIFFORD", "Address": "PO Box 305868", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62300, "Improved_V": 49400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.944848279200002, "SHAPE_Area": 270.677305934 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358201.671899996697903, 256720.260999999940395 ], [ 358195.196999996900558, 256719.853900000452995 ], [ 358195.015900000929832, 256721.079199999570847 ], [ 358194.894299998879433, 256721.901500001549721 ], [ 358189.735100001096725, 256756.798599999397993 ], [ 358197.678700000047684, 256757.200199998915195 ], [ 358197.874600000679493, 256756.068599998950958 ], [ 358201.049599997699261, 256726.699799999594688 ], [ 358201.483499996364117, 256722.210299998521805 ], [ 358201.602799996733665, 256720.975900001823902 ], [ 358201.671899996697903, 256720.260999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040400", "MAP": null, "PARCEL_NAM": "66A", "ACRE": null, "LONGITUDE": -64.93674339, "LATITUDE": 18.33996977, "OBJECTID_1": 11354, "PARCEL_NO_": "105304040400", "Tax_Legal_": "KRONPRINDSENS GADE 66A CROWN PRINCE QTR", "Name": "BENJAMIN, CLIFFORD", "Address": "PO Box 305868", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17.389168811099999, "SHAPE_Area": 18.316578376399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358190.006599999964237, 256719.52760000154376 ], [ 358186.257200002670288, 256719.291799999773502 ], [ 358185.425999999046326, 256721.229699999094009 ], [ 358184.483499996364117, 256723.426899999380112 ], [ 358188.765000000596046, 256724.153999999165535 ], [ 358189.438199996948242, 256721.645700000226498 ], [ 358189.567299999296665, 256721.164700001478195 ], [ 358190.006599999964237, 256719.52760000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304041400", "MAP": null, "PARCEL_NAM": "67D", "ACRE": null, "LONGITUDE": -64.93674943000001, "LATITUDE": 18.34018045, "OBJECTID_1": 11362, "PARCEL_NO_": "105304041400", "Tax_Legal_": "KRONP GADE 67D CROWN PRINCE QUARTER", "Name": "BENJAMIN, R & C", "Address": "BOX 2144", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.744990101, "SHAPE_Area": 209.12842398199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358191.438299998641014, 256745.278299998492002 ], [ 358187.291299998760223, 256744.322999998927116 ], [ 358192.900499999523163, 256724.637899998575449 ], [ 358188.765000000596046, 256724.153999999165535 ], [ 358179.303999997675419, 256759.407600000500679 ], [ 358184.539599999785423, 256760.621300000697374 ], [ 358185.280500002205372, 256756.811299998313189 ], [ 358189.735100001096725, 256756.798599999397993 ], [ 358191.438299998641014, 256745.278299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304040300", "MAP": null, "PARCEL_NAM": "67C", "ACRE": null, "LONGITUDE": -64.93684653, "LATITUDE": 18.34077606, "OBJECTID_1": 11353, "PARCEL_NO_": "105304040300", "Tax_Legal_": "KROMPRINDSENS GADE 67C CROWN PRINCE QTR", "Name": "STS PETER AND PAUL ROMAN CATHOLIC CONGREGATION INC", "Address": "PO Box 301767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13000, "Improved_V": 30900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.273331832499998, "SHAPE_Area": 234.684651852 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358176.719800002872944, 256800.336100000888109 ], [ 358173.321299999952316, 256799.250599998980761 ], [ 358167.026299998164177, 256817.411499999463558 ], [ 358176.566100001335144, 256820.997099999338388 ], [ 358178.064300000667572, 256821.560199998319149 ], [ 358180.075900003314018, 256822.133900001645088 ], [ 358183.001800000667572, 256802.342700000852346 ], [ 358176.719800002872944, 256800.336100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105304041600", "MAP": null, "PARCEL_NAM": "67A", "ACRE": null, "LONGITUDE": -64.93670388, "LATITUDE": 18.34006232, "OBJECTID_1": 11364, "PARCEL_NO_": "105304041600", "Tax_Legal_": "KRONPRINDSENS GADE 67A CROWN PRINCE QUARTER", "Name": "BENJAMIN, R & C", "Address": "BOX 2144", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.579483455200005, "SHAPE_Area": 86.355896948199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358195.196999996900558, 256719.853900000452995 ], [ 358190.006599999964237, 256719.52760000154376 ], [ 358189.567299999296665, 256721.164700001478195 ], [ 358189.438199996948242, 256721.645700000226498 ], [ 358188.765000000596046, 256724.153999999165535 ], [ 358192.900499999523163, 256724.637899998575449 ], [ 358187.291299998760223, 256744.322999998927116 ], [ 358191.438299998641014, 256745.278299998492002 ], [ 358194.894299998879433, 256721.901500001549721 ], [ 358195.015900000929832, 256721.079199999570847 ], [ 358195.196999996900558, 256719.853900000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105202026900", "MAP": "F9-544-T60", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9577633, "LATITUDE": 18.34525707, "OBJECTID_1": 8157, "PARCEL_NO_": "105202026900", "Tax_Legal_": "CONTANT 131A 7A S.S. QTR.", "Name": "GARBUTT, YVETTE", "Address": "PO Box 8206", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.5480960911, "SHAPE_Area": 51.647514350599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355967.676500000059605, 257289.935300000011921 ], [ 355965.745999999344349, 257288.875 ], [ 355959.340800002217293, 257285.627099998295307 ], [ 355955.120399996638298, 257285.593100000172853 ], [ 355950.160700000822544, 257287.155900001525879 ], [ 355956.576300002634525, 257288.049199998378754 ], [ 355967.211999997496605, 257293.991500001400709 ], [ 355967.676500000059605, 257289.935300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105202026900", "MAP": "D9-3874-T87", "PARCEL_NAM": "131A", "ACRE": ".09", "LONGITUDE": -64.95756544, "LATITUDE": 18.3453102, "OBJECTID_1": 8157, "PARCEL_NO_": "105202026900", "Tax_Legal_": "CONTANT 131A 7A S.S. QTR.", "Name": "GARBUTT, YVETTE", "Address": "PO Box 8206", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.962189707899995, "SHAPE_Area": 114.817227132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355992.526199996471405, 257297.488299999386072 ], [ 355968.030900001525879, 257286.84010000154376 ], [ 355967.676500000059605, 257289.935300000011921 ], [ 355985.734899997711182, 257299.853500001132488 ], [ 356000.043700002133846, 257300.75620000064373 ], [ 355992.526199996471405, 257297.488299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202020100", "MAP": "G9-1280-T69", "PARCEL_NAM": "129A", "ACRE": ".436", "LONGITUDE": -64.95750754, "LATITUDE": 18.3459606, "OBJECTID_1": 8094, "PARCEL_NO_": "105202020100", "Tax_Legal_": "129 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "NATIONAL SPIRITUAL ASSEMBLY OF", "Address": "PO Box 302488", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 139400, "Improved_V": 446700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.368055658, "SHAPE_Area": 1196.17742907 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355980.883400000631809, 257345.165899999439716 ], [ 355965.877300001680851, 257381.215599998831749 ], [ 355968.666400000452995, 257383.351300001144409 ], [ 355972.669100001454353, 257386.761599998921156 ], [ 355973.450300000607967, 257389.723299998790026 ], [ 355975.035899996757507, 257392.902699999511242 ], [ 355976.063799999654293, 257395.875 ], [ 356016.504299998283386, 257354.2685999982059 ], [ 355997.98309999704361, 257349.605200000107288 ], [ 355980.883400000631809, 257345.165899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201090100", "MAP": "D9-8459-T010", "PARCEL_NAM": "130-A", "ACRE": ".738", "LONGITUDE": -64.95808151, "LATITUDE": 18.34558701, "OBJECTID_1": 7899, "PARCEL_NO_": "105201090100", "Tax_Legal_": "CONTANT ESTATE 130 7A SOUTHSIDE QTR.", "Name": "CRANSTON, JOSEPH A. & DANIELLE", "Address": "PO Box 1252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65200, "Improved_V": 199500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.101513504400003, "SHAPE_Area": 57.133897848399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355914.140699997544289, 257322.388000000268221 ], [ 355932.038099996745586, 257328.800500001758337 ], [ 355933.968000002205372, 257329.485199999064207 ], [ 355932.954300001263618, 257323.365299999713898 ], [ 355914.140699997544289, 257322.388000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201090200", "MAP": "D9-8459-T010", "PARCEL_NAM": "135A", "ACRE": null, "LONGITUDE": -64.95830962, "LATITUDE": 18.34555552, "OBJECTID_1": 7900, "PARCEL_NO_": "105201090200", "Tax_Legal_": "CONTANT 135 7A SOUTHSIDE QTR", "Name": "JOSEPH, CLEMENT & FLORENCE", "Address": "PO Box 6473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 64500, "Improved_V": 316100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.1798489651, "SHAPE_Area": 94.030151132200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355914.140699997544289, 257322.388000000268221 ], [ 355894.466700002551079, 257315.338899999856949 ], [ 355897.71169999986887, 257323.047800000756979 ], [ 355899.299199998378754, 257324.794100001454353 ], [ 355901.839199997484684, 257325.746599998325109 ], [ 355904.855499997735023, 257325.587900001555681 ], [ 355910.72919999808073, 257323.682799998670816 ], [ 355914.140699997544289, 257322.388000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": null, "PARCEL_NAM": "REM Of CONTANT 7A", "ACRE": null, "LONGITUDE": -64.96175926, "LATITUDE": 18.34899354, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3022.6079403600002, "SHAPE_Area": 127663.25073299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355396.335600003600121, 257834.206999998539686 ], [ 355562.183499999344349, 257770.547499999403954 ], [ 355602.984899997711182, 257854.87049999833107 ], [ 355633.053599998354912, 257817.827300000935793 ], [ 355674.394799999892712, 257766.69649999961257 ], [ 355687.293300002813339, 257744.868299998342991 ], [ 355748.478299997746944, 257718.079199999570847 ], [ 355771.960100002586842, 257674.092099998146296 ], [ 355827.882100000977516, 257628.545200001448393 ], [ 355808.492899999022484, 257632.819499999284744 ], [ 355801.209100000560284, 257635.926300000399351 ], [ 355789.859600000083447, 257643.010600000619888 ], [ 355777.660599999129772, 257655.154199998825788 ], [ 355738.678900003433228, 257687.55460000038147 ], [ 355720.016800001263618, 257701.122999999672174 ], [ 355693.262800000607967, 257718.002599999308586 ], [ 355690.084299996495247, 257712.488099999725819 ], [ 355704.673500001430511, 257703.741599999368191 ], [ 355728.193199999630451, 257687.890999998897314 ], [ 355746.04900000244379, 257674.316100001335144 ], [ 355764.732600003480911, 257658.214800000190735 ], [ 355785.867600001394749, 257638.33390000090003 ], [ 355794.792700000107288, 257631.863000001758337 ], [ 355803.69990000128746, 257627.502900000661612 ], [ 355810.978299997746944, 257625.029399998486042 ], [ 355822.284699998795986, 257623.010999999940395 ], [ 355833.580300003290176, 257622.259100001305342 ], [ 355811.935699999332428, 257607.305399999022484 ], [ 355842.168399997055531, 257560.690000001341105 ], [ 355824.844999998807907, 257511.785599999129772 ], [ 355820.084399998188019, 257502.669700000435114 ], [ 355820.363099999725819, 257469.952399998903275 ], [ 355820.460199996829033, 257458.554200001060963 ], [ 355787.522200003266335, 257454.132599998265505 ], [ 355779.902199998497963, 257448.973200000822544 ], [ 355775.880500003695488, 257443.681600000709295 ], [ 355759.58219999819994, 257458.28660000115633 ], [ 355736.298799999058247, 257427.806499999016523 ], [ 355714.558100000023842, 257454.633799999952316 ], [ 355682.586999997496605, 257418.774500001221895 ], [ 355680.037432414421346, 257420.963603682670509 ], [ 355677.818215812963899, 257423.487003663729411 ], [ 355675.972759067779407, 257426.295341106131673 ], [ 355674.537160142674111, 257429.333683666598517 ], [ 355673.539499998092651, 257432.542599998414516 ], [ 355674.458709427737631, 257439.625790720951045 ], [ 355675.827456539263949, 257446.63600242472603 ], [ 355677.64017662871629, 257453.544734773342498 ], [ 355679.889499999582767, 257460.323899999260902 ], [ 355683.474705329746939, 257475.962586215871852 ], [ 355687.297899998724461, 257491.544799998402596 ], [ 355688.411918522440828, 257496.897608282975852 ], [ 355688.962600142520387, 257502.337308969261358 ], [ 355688.943959771364462, 257507.804780628008302 ], [ 355688.356200002133846, 257513.240600001066923 ], [ 355687.565999167389236, 257517.48857502816827 ], [ 355686.321902193070855, 257521.626440650521545 ], [ 355684.638445701624732, 257525.605848072649678 ], [ 355682.535300001502037, 257529.380300000309944 ], [ 355674.663349731650669, 257534.770295263646403 ], [ 355667.066659765376244, 257540.541772678057896 ], [ 355659.763700000941753, 257546.680700000375509 ], [ 355649.520900003612041, 257551.936099998652935 ], [ 355626.829099997878075, 257565.260400000959635 ], [ 355615.452600002288818, 257575.510899998247623 ], [ 355606.489600002765656, 257586.41440000012517 ], [ 355594.303199999034405, 257597.080400001257658 ], [ 355578.91499999910593, 257604.975999999791384 ], [ 355557.902300000190735, 257610.503600001335144 ], [ 355553.030299998819828, 257614.474500000476837 ], [ 355551.394299998879433, 257617.205299999564886 ], [ 355545.644000001251698, 257629.612799998372793 ], [ 355550.662399999797344, 257703.114399999380112 ], [ 355518.381099998950958, 257706.227699998766184 ], [ 355515.967600002884865, 257705.574599999934435 ], [ 355490.215899996459484, 257699.453299999237061 ], [ 355463.659800000488758, 257693.114199999719858 ], [ 355435.492799997329712, 257686.550900001078844 ], [ 355435.833999998867512, 257682.681099999696016 ], [ 355435.298500001430511, 257682.781500000506639 ], [ 355405.556699998676777, 257678.500399999320507 ], [ 355374.1199000030756, 257691.391800001263618 ], [ 355347.599899999797344, 257702.068399999290705 ], [ 355349.779500000178814, 257671.55460000038147 ], [ 355350.000200003385544, 257666.346000000834465 ], [ 355347.882299996912479, 257667.193199999630451 ], [ 355345.215400002896786, 257667.771699998527765 ], [ 355347.048000000417233, 257607.748199999332428 ], [ 355347.159400001168251, 257602.661899998784065 ], [ 355357.987199999392033, 257602.956700000911951 ], [ 355363.634900003671646, 257602.580800000578165 ], [ 355350.910199999809265, 257581.789500001817942 ], [ 355347.609700001776218, 257582.107799999415874 ], [ 355342.839900001883507, 257582.567800000309944 ], [ 355333.981200002133846, 257581.228700000792742 ], [ 355326.767499998211861, 257576.103399999439716 ], [ 355323.585500001907349, 257571.011100001633167 ], [ 355322.078900001943111, 257558.544300001114607 ], [ 355327.064300000667572, 257541.275400001555681 ], [ 355329.641400001943111, 257522.720300000160933 ], [ 355332.139499999582767, 257513.452599998563528 ], [ 355334.617799997329712, 257506.506799999624491 ], [ 355309.173600003123283, 257476.154699999839067 ], [ 355304.227200001478195, 257493.857799999415874 ], [ 355274.958400003612041, 257498.078000001609325 ], [ 355280.138099998235703, 257559.678700000047684 ], [ 355289.368600003421307, 257706.675299998372793 ], [ 355290.734899997711182, 257735.606300000101328 ], [ 355290.69709999859333, 257740.039000000804663 ], [ 355292.625200003385544, 257797.683299999684095 ], [ 355300.158500000834465, 257954.587499998509884 ], [ 355301.519400000572205, 257984.151700001209974 ], [ 355362.763199999928474, 257988.874800000339746 ], [ 355371.612899996340275, 257991.269299998879433 ], [ 355406.167400002479553, 258005.273200001567602 ], [ 355415.038599997758865, 258005.134700000286102 ], [ 355421.516099996864796, 258002.021299999207258 ], [ 355427.19990000128746, 257997.423799999058247 ], [ 355435.36370000243187, 257985.669399999082088 ], [ 355396.335600003600121, 257834.206999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201090900", "MAP": "B9-404-T73", "PARCEL_NAM": "142", "ACRE": ".24", "LONGITUDE": -64.96024718, "LATITUDE": 18.34611714, "OBJECTID_1": 7912, "PARCEL_NO_": "105201090900", "Tax_Legal_": "CONTANT 142 7A S S QTR", "Name": "BONELLI, ARTHUR & JUDY", "Address": "BOX 4004", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 254900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.77640938100001, "SHAPE_Area": 1190.25455861 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355726.664399996399879, 257385.015999998897314 ], [ 355699.862300001084805, 257362.245799999684095 ], [ 355672.263800002634525, 257372.571800000965595 ], [ 355690.776699997484684, 257404.029399998486042 ], [ 355693.129299998283386, 257402.766199998557568 ], [ 355701.231700003147125, 257398.851100001484156 ], [ 355709.968740781536326, 257393.651773114339449 ], [ 355718.915100000798702, 257388.82149999961257 ], [ 355721.877400003373623, 257387.326499998569489 ], [ 355726.664399996399879, 257385.015999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": "B9-404-T73", "PARCEL_NAM": "302", "ACRE": ".229", "LONGITUDE": -64.96038817, "LATITUDE": 18.34586299, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.987545746, "SHAPE_Area": 996.72119779499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355699.862300001084805, 257362.245799999684095 ], [ 355703.408100001513958, 257334.827300000935793 ], [ 355700.549099996685982, 257335.982900001108646 ], [ 355672.258000001311302, 257343.984000001102686 ], [ 355661.741800002753735, 257347.908700000494719 ], [ 355658.710900001227856, 257349.542399998754263 ], [ 355672.263800002634525, 257372.571800000965595 ], [ 355699.862300001084805, 257362.245799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201090500", "MAP": "B9-404-T73", "PARCEL_NAM": "140", "ACRE": ".243", "LONGITUDE": -64.95977679000001, "LATITUDE": 18.34591162, "OBJECTID_1": 7909, "PARCEL_NO_": "105201090500", "Tax_Legal_": "CONTANT 140 7A S S QTR", "Name": "RHYMAUN, E. & LINQVIST, E. S", "Address": "2491 Merbrook Rd", "City": "Columbus", "State": "Ohio", "Zip": 43235, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.990085827, "SHAPE_Area": 1021.17959296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355724.948899999260902, 257352.859600000083447 ], [ 355739.120099999010563, 257379.589400000870228 ], [ 355743.938400000333786, 257377.953299999237061 ], [ 355753.289964286843315, 257375.373333039111458 ], [ 355762.810999996960163, 257373.513799998909235 ], [ 355763.496299996972084, 257338.436999998986721 ], [ 355724.948899999260902, 257352.859600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201090600", "MAP": "B9-404-T73", "PARCEL_NAM": "300", "ACRE": ".247", "LONGITUDE": -64.95978516, "LATITUDE": 18.34566842, "OBJECTID_1": 7910, "PARCEL_NO_": "105201090600", "Tax_Legal_": "CONTANT 300 7A S S QTR", "Name": "ELMIRA AGATHA FARRELL FAMILY TRUST", "Address": "PO Box 304006", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.366964005, "SHAPE_Area": 842.08031215400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355736.536300003528595, 257322.375599998980761 ], [ 355724.948899999260902, 257352.859600000083447 ], [ 355763.496299996972084, 257338.436999998986721 ], [ 355763.980700001120567, 257313.643899999558926 ], [ 355736.536300003528595, 257322.375599998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201090800", "MAP": "B9-404-T73", "PARCEL_NAM": "141", "ACRE": ".23", "LONGITUDE": -64.96002264000001, "LATITUDE": 18.34599522, "OBJECTID_1": 7911, "PARCEL_NO_": "105201090800", "Tax_Legal_": "CONTANT 141 7A SOUTHSIDE QTR", "Name": "MULCARE, IRVING & NANIE", "Address": "P.O.BOX 3917", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.79594823, "SHAPE_Area": 615.46025127200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355699.862300001084805, 257362.245799999684095 ], [ 355726.664399996399879, 257385.015999998897314 ], [ 355739.120099999010563, 257379.589400000870228 ], [ 355724.948899999260902, 257352.859600000083447 ], [ 355699.862300001084805, 257362.245799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201091300", "MAP": "B9-404-T73", "PARCEL_NAM": "304", "ACRE": ".24", "LONGITUDE": -64.96083037, "LATITUDE": 18.34627307, "OBJECTID_1": 7914, "PARCEL_NO_": "105201091300", "Tax_Legal_": "CONTANT 304 7A S S QTR", "Name": "SOLIS, LUIS", "Address": "304 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.07275182399999, "SHAPE_Area": 1188.9392359399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355659.046400003135204, 257393.232400000095367 ], [ 355634.115000002086163, 257372.591600000858307 ], [ 355624.302599996328354, 257388.554400000721216 ], [ 355619.376599997282028, 257398.857700001448393 ], [ 355618.546899996697903, 257401.595100000500679 ], [ 355615.237199999392033, 257411.489399999380112 ], [ 355614.194300003349781, 257416.833500001579523 ], [ 355643.902999997138977, 257416.9037000015378 ], [ 355659.046400003135204, 257393.232400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201091200", "MAP": "B9-404-T73", "PARCEL_NAM": "143", "ACRE": ".348", "LONGITUDE": -64.96052298, "LATITUDE": 18.34629621, "OBJECTID_1": 7913, "PARCEL_NO_": "105201091200", "Tax_Legal_": "CONTANT 143 7A S S QTR", "Name": "HATCHETTE, EDWIN E", "Address": "P.O.BOX 2472", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.75389034599999, "SHAPE_Area": 1097.3734738600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355672.263800002634525, 257372.571800000965595 ], [ 355643.902999997138977, 257416.9037000015378 ], [ 355662.953100003302097, 257420.872400000691414 ], [ 355667.588100001215935, 257423.381900001317263 ], [ 355668.636498751933686, 257420.856558352970751 ], [ 355670.066688952734694, 257418.526097803842276 ], [ 355671.843522033654153, 257416.447792103543179 ], [ 355673.923330277262721, 257414.672718006098876 ], [ 355676.255000002682209, 257413.244500000029802 ], [ 355683.370866397046484, 257408.408476256474387 ], [ 355690.776699997484684, 257404.029399998486042 ], [ 355672.263800002634525, 257372.571800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": "B9-404-T73", "PARCEL_NAM": "303", "ACRE": ".24", "LONGITUDE": -64.96065444, "LATITUDE": 18.34602381, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.64200896200001, "SHAPE_Area": 873.75881823500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355634.115000002086163, 257372.591600000858307 ], [ 355659.046400003135204, 257393.232400000095367 ], [ 355672.263800002634525, 257372.571800000965595 ], [ 355658.710900001227856, 257349.542399998754263 ], [ 355653.640900000929832, 257352.275299999862909 ], [ 355641.450900003314018, 257363.363499999046326 ], [ 355634.115000002086163, 257372.591600000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201091800", "MAP": "B9-404-T73", "PARCEL_NAM": "313", "ACRE": ".28", "LONGITUDE": -64.96059214, "LATITUDE": 18.34711922, "OBJECTID_1": 7918, "PARCEL_NO_": "105201091800", "Tax_Legal_": "CONTANT 313 S S QTR. 7A", "Name": "BAKER, HAROLD M & IVY", "Address": "802 Harsworth Dr", "City": "Cary", "State": "North Carolina", "Zip": 27519, "Country": "United States", "Land_Value": 21300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.37822594400001, "SHAPE_Area": 1117.2003412199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355674.095799997448921, 257475.553700000047684 ], [ 355639.002999998629093, 257478.732500001788139 ], [ 355637.648699998855591, 257495.821600001305342 ], [ 355677.313299998641014, 257515.691399998962879 ], [ 355678.212894126132596, 257510.419351334712701 ], [ 355678.579017219657544, 257505.083648888685275 ], [ 355678.407974698639009, 257499.738135707651963 ], [ 355677.701492568303365, 257494.436753839516314 ], [ 355676.466700002551079, 257489.232999999076128 ], [ 355675.430100001394749, 257483.079500000923872 ], [ 355674.095799997448921, 257475.553700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": "B9-404-T73", "PARCEL_NAM": "GUT", "ACRE": null, "LONGITUDE": -64.9607787, "LATITUDE": 18.34718804, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.870381181, "SHAPE_Area": 383.724937044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355677.313299998641014, 257515.691399998962879 ], [ 355607.390500001609325, 257480.663899999111891 ], [ 355605.759900003671646, 257482.761500000953674 ], [ 355603.942199997603893, 257484.633299998939037 ], [ 355675.459700003266335, 257519.94200000166893 ], [ 355677.313299998641014, 257515.691399998962879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201091400", "MAP": "B9-404-T73", "PARCEL_NAM": "305", "ACRE": ".24", "LONGITUDE": -64.96090993, "LATITUDE": 18.34660178, "OBJECTID_1": 7915, "PARCEL_NO_": "105201091400", "Tax_Legal_": "CONTANT 305 7A S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.24720863499999, "SHAPE_Area": 1110.91038925 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355611.480700001120567, 257453.059500001370907 ], [ 355641.020099997520447, 257453.280699998140335 ], [ 355643.902999997138977, 257416.9037000015378 ], [ 355614.194300003349781, 257416.833500001579523 ], [ 355611.864500001072884, 257428.771499998867512 ], [ 355610.991599999368191, 257436.574799999594688 ], [ 355611.480700001120567, 257453.059500001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": "B9-404-T73", "PARCEL_NAM": "306", "ACRE": ".26", "LONGITUDE": -64.96092011, "LATITUDE": 18.34692984, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.244670781, "SHAPE_Area": 1048.42169266 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355641.020099997520447, 257453.280699998140335 ], [ 355611.480700001120567, 257453.059500001370907 ], [ 355611.618100002408028, 257457.689300000667572 ], [ 355610.698499999940395, 257470.980599999427795 ], [ 355607.390500001609325, 257480.663899999111891 ], [ 355637.648699998855591, 257495.821600001305342 ], [ 355641.020099997520447, 257453.280699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201091500", "MAP": "B9-404-T73", "PARCEL_NAM": "144", "ACRE": ".24", "LONGITUDE": -64.96065065000001, "LATITUDE": 18.34661421, "OBJECTID_1": 7916, "PARCEL_NO_": "105201091500", "Tax_Legal_": "CONTANT 144 7A SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.814903602, "SHAPE_Area": 837.06715227899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355669.481700003147125, 257452.191199999302626 ], [ 355667.970107758417726, 257444.436783697194187 ], [ 355667.051109085266944, 257436.590043944917852 ], [ 355666.729999996721745, 257428.696199998259544 ], [ 355666.952793253643904, 257426.005745723756263 ], [ 355667.588100001215935, 257423.381900001317263 ], [ 355662.953100003302097, 257420.872400000691414 ], [ 355643.902999997138977, 257416.9037000015378 ], [ 355641.020099997520447, 257453.280699998140335 ], [ 355669.481700003147125, 257452.191199999302626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201091600", "MAP": "B9-404-T73", "PARCEL_NAM": "145", "ACRE": ".23", "LONGITUDE": -64.96063703, "LATITUDE": 18.34687424, "OBJECTID_1": 7917, "PARCEL_NO_": "105201091600", "Tax_Legal_": "145 CONTANT No.7A SOUTHSIDE QTR", "Name": "DEWINDT & OTHERS, ALICIA", "Address": "1126 S Federal Hwy", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33316, "Country": "United States", "Land_Value": 22600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.06517524, "SHAPE_Area": 779.75557302100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355674.095799997448921, 257475.553700000047684 ], [ 355673.688500002026558, 257473.335999999195337 ], [ 355671.810599997639656, 257463.530099999159575 ], [ 355669.481700003147125, 257452.191199999302626 ], [ 355641.020099997520447, 257453.280699998140335 ], [ 355639.002999998629093, 257478.732500001788139 ], [ 355674.095799997448921, 257475.553700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201091900", "MAP": "B9-404-T73", "PARCEL_NAM": "312", "ACRE": ".336", "LONGITUDE": -64.96073343, "LATITUDE": 18.34738632, "OBJECTID_1": 7919, "PARCEL_NO_": "105201091900", "Tax_Legal_": "CONTANT 312 7A S S QTR", "Name": "BLYDEN, VERNON & PEGGY", "Address": "67 Patchen Ave", "City": "Brooklyn", "State": "New York", "Zip": 11221, "Country": "United States", "Land_Value": 32100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.52952693200001, "SHAPE_Area": 1325.82669801 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355612.357900001108646, 257521.539000000804663 ], [ 355649.579199999570847, 257541.789200000464916 ], [ 355653.658600002527237, 257539.515500001609325 ], [ 355662.081900000572205, 257534.756599999964237 ], [ 355665.550414839759469, 257532.231127231207211 ], [ 355668.715635242755525, 257529.334579683549237 ], [ 355671.538068787951488, 257526.103097550163511 ], [ 355673.982500001788139, 257522.576999999582767 ], [ 355675.459700003266335, 257519.94200000166893 ], [ 355639.193499997258186, 257502.037099998444319 ], [ 355612.357900001108646, 257521.539000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201092000", "MAP": "B9-404-T73", "PARCEL_NAM": "307", "ACRE": ".26", "LONGITUDE": -64.96106565, "LATITUDE": 18.34722012, "OBJECTID_1": 7920, "PARCEL_NO_": "105201092000", "Tax_Legal_": "CONTANT 307 7A S S QTR", "Name": "MARSHAM, KEITH C.", "Address": "178-230 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21500, "Improved_V": 243200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.99690630500001, "SHAPE_Area": 1045.5772962799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355583.359099999070168, 257505.762099999934435 ], [ 355612.357900001108646, 257521.539000000804663 ], [ 355639.193499997258186, 257502.037099998444319 ], [ 355603.942199997603893, 257484.633299998939037 ], [ 355591.930299997329712, 257497.002599999308586 ], [ 355583.359099999070168, 257505.762099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201092200", "MAP": "B9-404-T73", "PARCEL_NAM": "311", "ACRE": ".27", "LONGITUDE": -64.96099927, "LATITUDE": 18.3475547, "OBJECTID_1": 7922, "PARCEL_NO_": "105201092200", "Tax_Legal_": "CONTANT 311 7A S S QTR", "Name": "GOMEZ, KYMBERLY", "Address": "5453 Sandy Shell Dr", "City": "Apollo Beach", "State": "Florida", "Zip": 33572, "Country": "United States", "Land_Value": 26400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.566597325, "SHAPE_Area": 1175.3715392 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355649.579199999570847, 257541.789200000464916 ], [ 355612.357900001108646, 257521.539000000804663 ], [ 355585.068300001323223, 257541.370700001716614 ], [ 355620.439699999988079, 257558.030900001525879 ], [ 355649.579199999570847, 257541.789200000464916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201092100", "MAP": "B9-404-T73", "PARCEL_NAM": "308", "ACRE": ".23", "LONGITUDE": -64.96129683, "LATITUDE": 18.34741009, "OBJECTID_1": 7921, "PARCEL_NO_": "105201092100", "Tax_Legal_": "CONTANT 308 7A S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.86290149200001, "SHAPE_Area": 935.91259824999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355612.357900001108646, 257521.539000000804663 ], [ 355583.359099999070168, 257505.762099999934435 ], [ 355565.086499996483326, 257524.436200000345707 ], [ 355560.662399999797344, 257529.875399999320507 ], [ 355585.068300001323223, 257541.370700001716614 ], [ 355612.357900001108646, 257521.539000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": "B9-404-T73", "PARCEL_NAM": "GREENBELT - REM Of CONTANT 7A", "ACRE": null, "LONGITUDE": -64.96180286000001, "LATITUDE": 18.34795439, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.44220443099999, "SHAPE_Area": 2320.95059911 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355590.456299997866154, 257589.42850000038743 ], [ 355540.539300002157688, 257566.242899999022484 ], [ 355538.21339999884367, 257569.486099999397993 ], [ 355532.706799998879433, 257571.603999998420477 ], [ 355524.235100001096725, 257572.592399999499321 ], [ 355512.798299998044968, 257573.015999998897314 ], [ 355500.231899999082088, 257572.02760000154376 ], [ 355491.19539999961853, 257570.615699999034405 ], [ 355480.182199999690056, 257568.638900000602007 ], [ 355469.027800001204014, 257566.662200000137091 ], [ 355462.67400000244379, 257563.979499999433756 ], [ 355459.70889999717474, 257564.261900000274181 ], [ 355461.262000001966953, 257566.662200000137091 ], [ 355465.074299998581409, 257570.333299998193979 ], [ 355471.569300003349781, 257575.133900001645088 ], [ 355482.723700001835823, 257579.510999999940395 ], [ 355496.701999999582767, 257584.735199999064207 ], [ 355508.957800000905991, 257589.73759999871254 ], [ 355520.564000003039837, 257595.465999998152256 ], [ 355528.04730000346899, 257601.396200001239777 ], [ 355533.695100001990795, 257604.220100000500679 ], [ 355540.190099999308586, 257604.220100000500679 ], [ 355554.027199998497963, 257599.843100000172853 ], [ 355575.912500001490116, 257595.042399998754263 ], [ 355587.089599996805191, 257591.955099999904633 ], [ 355590.456299997866154, 257589.42850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": "B9-404-T73", "PARCEL_NAM": "309", "ACRE": ".23", "LONGITUDE": -64.96151172, "LATITUDE": 18.3476737, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.69438351400001, "SHAPE_Area": 1079.2121127600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355585.068300001323223, 257541.370700001716614 ], [ 355560.662399999797344, 257529.875399999320507 ], [ 355557.752300001680851, 257533.453200001269579 ], [ 355554.48030000180006, 257538.914799999445677 ], [ 355553.645199999213219, 257542.285500001162291 ], [ 355552.016400001943111, 257544.171999998390675 ], [ 355544.612199999392033, 257561.421100001782179 ], [ 355540.539300002157688, 257566.242899999022484 ], [ 355563.299199998378754, 257576.814500000327826 ], [ 355585.068300001323223, 257541.370700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": null, "PARCEL_NAM": "REM of CONTANT 7A", "ACRE": null, "LONGITUDE": -64.95979268000001, "LATITUDE": 18.34624861, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.24519502199999, "SHAPE_Area": 1403.8399258100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355713.357699997723103, 257399.006099998950958 ], [ 355736.298799999058247, 257427.806499999016523 ], [ 355741.378799997270107, 257417.434799998998642 ], [ 355744.553800001740456, 257411.931499999016523 ], [ 355750.057099997997284, 257405.581500001251698 ], [ 355754.290500000119209, 257399.019799999892712 ], [ 355761.910499997437, 257394.151500001549721 ], [ 355768.472199998795986, 257390.976399999111891 ], [ 355775.66889999806881, 257388.8597999997437 ], [ 355790.977099999785423, 257382.653499998152256 ], [ 355783.34179999679327, 257378.831999998539686 ], [ 355775.693726722325664, 257378.238546321284957 ], [ 355768.024273614981212, 257378.395712197088869 ], [ 355760.406933543563355, 257379.301991577085573 ], [ 355752.914700001478195, 257380.948699999600649 ], [ 355745.23433609015774, 257383.106219035893446 ], [ 355737.7304926115321, 257385.814578548714053 ], [ 355730.442618931236211, 257389.059540092770476 ], [ 355723.409029013884719, 257392.824044187145773 ], [ 355716.66669999808073, 257397.088300000876188 ], [ 355713.357699997723103, 257399.006099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201080100", "MAP": "G3-128-T68", "PARCEL_NAM": "200", "ACRE": ".50", "LONGITUDE": -64.96011837, "LATITUDE": 18.34650827, "OBJECTID_1": 7877, "PARCEL_NO_": "105201080100", "Tax_Legal_": "CONTANT 200 7A S S QTR", "Name": "BONELLI, ERIC & MADGA", "Address": "PO Box 7593", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50500, "Improved_V": 229400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.981769265, "SHAPE_Area": 1495.19964437 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355736.298799999058247, 257427.806499999016523 ], [ 355713.357699997723103, 257399.006099998950958 ], [ 355699.478238894545939, 257407.545224042900372 ], [ 355685.974899999797344, 257416.667500000447035 ], [ 355682.586999997496605, 257418.774500001221895 ], [ 355714.558100000023842, 257454.633799999952316 ], [ 355736.298799999058247, 257427.806499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701031600", "MAP": "D9-1482-T79", "PARCEL_NAM": "20b-5", "ACRE": "0.25", "LONGITUDE": -64.87592003, "LATITUDE": 18.34461283, "OBJECTID_1": 21964, "PARCEL_NO_": "105701031600", "Tax_Legal_": "20B-5 EST. SMITH BAY EAST END QUARTER", "Name": "LOITEN, ALFRED & MONICA", "Address": "PO Box 10491", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29700, "Improved_V": 93400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.764563878, "SHAPE_Area": 816.84174035599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364593.479900002479553, 257279.105200000107288 ], [ 364596.228100001811981, 257301.341299999505281 ], [ 364619.143700003623962, 257304.069499999284744 ], [ 364630.694499999284744, 257286.848700001835823 ], [ 364630.739500001072884, 257281.571699999272823 ], [ 364629.148400001227856, 257279.025600001215935 ], [ 364625.944799996912479, 257276.4662000015378 ], [ 364620.313199996948242, 257274.942499998956919 ], [ 364606.844499997794628, 257278.605599999427795 ], [ 364593.479900002479553, 257279.105200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203011600", "MAP": "F9-3205-T74", "PARCEL_NAM": "REM 27", "ACRE": "6,327 sq ft", "LONGITUDE": -64.9599635, "LATITUDE": 18.33962188, "OBJECTID_1": 8481, "PARCEL_NO_": "105203011600", "Tax_Legal_": "27 ESTATE CONTANT 7A SOUTHSIDE QTR.", "Name": "DENYS, JOSEPH A.", "Address": "9016 Westmore Rd", "City": "San Diego", "State": "California", "Zip": 92126, "Country": "United States", "Land_Value": 96000, "Improved_V": 99900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.383245346400003, "SHAPE_Area": 553.89413354099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355745.716099999845028, 256675.412000000476837 ], [ 355739.748199999332428, 256647.129299998283386 ], [ 355736.492799997329712, 256647.661100000143051 ], [ 355734.587499998509884, 256647.97239999845624 ], [ 355731.403300002217293, 256648.492600001394749 ], [ 355720.888899996876717, 256652.206199999898672 ], [ 355727.403300002217293, 256679.539700001478195 ], [ 355745.716099999845028, 256675.412000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403043300", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-51", "ACRE": null, "LONGITUDE": -65.01200107, "LATITUDE": 18.35377293, "OBJECTID_1": 1795, "PARCEL_NO_": "102403043300", "Tax_Legal_": "FORTUNA 3C-51 WEST END QUARTER", "Name": "THOMAS, VINCENT & CHARMAINE", "Address": "PO Box 305359", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.07705871300001, "SHAPE_Area": 1252.8713596499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350239.241200000047684, 258161.201200000941753 ], [ 350238.485299997031689, 258155.284400001168251 ], [ 350228.330099999904633, 258159.802400000393391 ], [ 350220.175899997353554, 258171.515299998223782 ], [ 350203.610399998724461, 258191.214600000530481 ], [ 350188.460500001907349, 258213.42509999871254 ], [ 350190.887800000607967, 258215.764499999582767 ], [ 350196.763199999928474, 258212.649300001561642 ], [ 350244.759999997913837, 258187.200100000947714 ], [ 350243.08219999819994, 258183.608600001782179 ], [ 350242.295699998736382, 258181.280099999159575 ], [ 350240.744199998676777, 258174.090199999511242 ], [ 350239.990000002086163, 258167.96229999884963 ], [ 350239.241200000047684, 258161.201200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403043100", "MAP": "D9-5889-T95", "PARCEL_NAM": "3C-53", "ACRE": null, "LONGITUDE": -65.01207745000001, "LATITUDE": 18.35347056, "OBJECTID_1": 1793, "PARCEL_NO_": "102403043100", "Tax_Legal_": "FORTUNA 3C-53 WESTEND QTR.", "Name": "O'NEAL, ROBERT & BELINDA WEST", "Address": "PO Box 10419", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.638112345, "SHAPE_Area": 974.20572434799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350238.485299997031689, 258155.284400001168251 ], [ 350238.524800002574921, 258150.640700001269579 ], [ 350238.846600003540516, 258146.853799998760223 ], [ 350227.663500003516674, 258150.762600000947714 ], [ 350207.886699996888638, 258130.653900001198053 ], [ 350200.730599999427795, 258138.2989999987185 ], [ 350195.849600002169609, 258143.325300000607967 ], [ 350189.667300000786781, 258149.437100000679493 ], [ 350217.598999999463558, 258174.579700000584126 ], [ 350220.175899997353554, 258171.515299998223782 ], [ 350228.330099999904633, 258159.802400000393391 ], [ 350238.485299997031689, 258155.284400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403040200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.0124771, "LATITUDE": 18.35324269, "OBJECTID_1": 1767, "PARCEL_NO_": "102403040200", "Tax_Legal_": "FORTUNA 3C-56 WESTEND QTR", "Name": "FRANCIS, THERISETA I", "Address": "PO Box 306163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 135800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.69402691000001, "SHAPE_Area": 945.051376312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350195.537900000810623, 258130.519999999552965 ], [ 350162.525799997150898, 258106.004200000315905 ], [ 350151.707400001585484, 258118.899399999529123 ], [ 350147.410099998116493, 258124.021699998527765 ], [ 350179.138800002634525, 258147.483300000429153 ], [ 350180.50450000166893, 258146.155000001192093 ], [ 350182.945000000298023, 258143.6418999992311 ], [ 350195.537900000810623, 258130.519999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403040300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01232933, "LATITUDE": 18.35308347, "OBJECTID_1": 1768, "PARCEL_NO_": "102403040300", "Tax_Legal_": "FORTUNA 3C-57 WESTEND QTR.", "Name": "PHILLIPS, PAULETTE Y", "Address": "PO Box 9863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22900, "Improved_V": 129400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.45659778000001, "SHAPE_Area": 981.223291969 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350211.707999996840954, 258112.891100000590086 ], [ 350177.579700000584126, 258088.22069999948144 ], [ 350167.185599997639656, 258100.449799999594688 ], [ 350162.525799997150898, 258106.004200000315905 ], [ 350195.537900000810623, 258130.519999999552965 ], [ 350200.0304000005126, 258125.838799998164177 ], [ 350201.657399997115135, 258124.16330000013113 ], [ 350211.707999996840954, 258112.891100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01218803, "LATITUDE": 18.352904, "OBJECTID_1": 1769, "PARCEL_NO_": "102403040400", "Tax_Legal_": "FORTUNA 3C-58 WEST END QUARTER", "Name": "BATTISTE, CHARMAINE", "Address": "PO Box 306565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22900, "Improved_V": 139700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.177975882, "SHAPE_Area": 1081.19005494 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350225.765900000929832, 258094.826099999248981 ], [ 350196.740500003099442, 258065.485199999064207 ], [ 350184.290799997746944, 258080.324799999594688 ], [ 350177.579700000584126, 258088.22069999948144 ], [ 350211.707999996840954, 258112.891100000590086 ], [ 350213.055500000715256, 258111.379900000989437 ], [ 350216.323899999260902, 258106.340399999171495 ], [ 350221.226499997079372, 258098.781199999153614 ], [ 350225.765900000929832, 258094.826099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403040500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01200039, "LATITUDE": 18.35273675, "OBJECTID_1": 1770, "PARCEL_NO_": "102403040500", "Tax_Legal_": "FORTUNA 3C-59 WEST END QUARTER", "Name": "PATRICK A WILLIAMS IRREVOCABLE TRUST", "Address": "PO Box 306295", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23900, "Improved_V": 169800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.893315989, "SHAPE_Area": 1133.2951886599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350246.243400000035763, 258079.612199999392033 ], [ 350223.356100000441074, 258048.80689999833703 ], [ 350199.769000001251698, 258061.875300001353025 ], [ 350196.740500003099442, 258065.485199999064207 ], [ 350225.765900000929832, 258094.826099999248981 ], [ 350231.787699997425079, 258089.579500000923872 ], [ 350233.411100000143051, 258088.326200000941753 ], [ 350242.336300000548363, 258081.855399999767542 ], [ 350246.243400000035763, 258079.612199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403040600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.01173787, "LATITUDE": 18.35260195, "OBJECTID_1": 1771, "PARCEL_NO_": "102403040600", "Tax_Legal_": "3C-60 ESTATE FORTUNA WESTEND QUARTER", "Name": "JOSEPH, LESROY E", "Address": "PO Box 302252", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.301112491, "SHAPE_Area": 1247.8221101900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350273.351400002837181, 258067.3761 ], [ 350260.46339999884367, 258035.372900001704693 ], [ 350243.493299998342991, 258040.70160000026226 ], [ 350236.216700002551079, 258042.964099999517202 ], [ 350230.55629999935627, 258044.817600000649691 ], [ 350223.356100000441074, 258048.80689999833703 ], [ 350246.243400000035763, 258079.612199999392033 ], [ 350256.111900001764297, 258073.946600001305342 ], [ 350262.583999998867512, 258071.466400001198053 ], [ 350273.351400002837181, 258067.3761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604025900", "MAP": "D9-624-T66", "PARCEL_NAM": "8C", "ACRE": ".028", "LONGITUDE": -64.97261041, "LATITUDE": 18.35155275, "OBJECTID_1": 2743, "PARCEL_NO_": "102604025900", "Tax_Legal_": "CROWN & HAWK 8C S S QTR", "Name": "ANDREW, ART", "Address": "BOX 3648", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.5014789608, "SHAPE_Area": 97.325384962200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354408.295999996364117, 257956.787200000137091 ], [ 354374.240299999713898, 257978.884399998933077 ], [ 354375.917499996721745, 257983.511799998581409 ], [ 354408.295999996364117, 257956.787200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604024500", "MAP": null, "PARCEL_NAM": "9X", "ACRE": null, "LONGITUDE": -64.9728926, "LATITUDE": 18.35145222, "OBJECTID_1": 2730, "PARCEL_NO_": "102604024500", "Tax_Legal_": "9X REM CROWN & HAWK NO.3 SOUTHSIDE QTR", "Name": "TURBE, JEAN LESLIE & LORRAINE M.", "Address": "PO BOX 4554", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 104900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.27509035899999, "SHAPE_Area": 1036.5846171200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354371.335100002586842, 257941.285999998450279 ], [ 354368.154799997806549, 257935.982599999755621 ], [ 354354.121299996972084, 257947.178899999707937 ], [ 354351.917099997401237, 257948.9375 ], [ 354334.199600003659725, 257963.230200000107288 ], [ 354353.855800002813339, 257989.094700001180172 ], [ 354358.085299998521805, 257982.129700001329184 ], [ 354366.085299998521805, 257969.860500000417233 ], [ 354367.314999997615814, 257967.974599998444319 ], [ 354370.711900003254414, 257962.764800000935793 ], [ 354372.374372344580479, 257956.236606853402918 ], [ 354374.78490000218153, 257949.946100000292063 ], [ 354371.335100002586842, 257941.285999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604025500", "MAP": "G9-711-T63", "PARCEL_NAM": "9B", "ACRE": "1.0", "LONGITUDE": -64.97366391, "LATITUDE": 18.35143024, "OBJECTID_1": 2739, "PARCEL_NO_": "102604025500", "Tax_Legal_": "CROWN & HAWK 9B S S QTR", "Name": "HODGE, GERALDO O., TRUSTEE", "Address": "PO Box 9232", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 109200, "Improved_V": 180900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.41473470300002, "SHAPE_Area": 4128.5585547700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354323.08110000193119, 257948.600000001490116 ], [ 354311.298799999058247, 257933.0962999984622 ], [ 354294.386900000274181, 257910.842799998819828 ], [ 354244.807300001382828, 257954.53489999845624 ], [ 354227.649400003254414, 257969.655299998819828 ], [ 354240.298900000751019, 257988.765000000596046 ], [ 354242.671099998056889, 257994.272900000214577 ], [ 354249.078400000929832, 257999.391600001603365 ], [ 354255.485799998044968, 258004.510299999266863 ], [ 354323.08110000193119, 257948.600000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604023700", "MAP": "D9-6745-T000", "PARCEL_NAM": "9E", "ACRE": ".25", "LONGITUDE": -64.97171152, "LATITUDE": 18.34973577, "OBJECTID_1": 2723, "PARCEL_NO_": "102604023700", "Tax_Legal_": "CROWN & HAWK 9E&9F S S QTR", "Name": "BENJAMIN, CYRIL A. & ARLENE L. PINNEY", "Address": "PO Box 7202", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 61600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.48327245199999, "SHAPE_Area": 1594.8304508599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354464.594499997794628, 257760.302700001746416 ], [ 354460.562799997627735, 257784.751600001007318 ], [ 354466.1925999969244, 257786.486400000751019 ], [ 354475.038699999451637, 257789.302999999374151 ], [ 354494.257100000977516, 257805.081199999898672 ], [ 354500.419399999082088, 257809.840700000524521 ], [ 354493.094099998474121, 257736.492800001055002 ], [ 354482.247400000691414, 257744.649599999189377 ], [ 354464.594499997794628, 257760.302700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102403010700", "MAP": null, "PARCEL_NAM": "3C REM", "ACRE": null, "LONGITUDE": -65.00877255, "LATITUDE": 18.35033257, "OBJECTID_1": 1552, "PARCEL_NO_": "102403010700", "Tax_Legal_": "3C ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1167400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.910741564600002, "SHAPE_Area": 103.49278157800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350569.70889999717474, 257807.493500001728535 ], [ 350575.113399997353554, 257799.622999999672174 ], [ 350572.025952632771805, 257801.322497204382671 ], [ 350569.040700003504753, 257803.195700000971556 ], [ 350566.193599998950958, 257803.577199999243021 ], [ 350561.837999999523163, 257804.182500001043081 ], [ 350558.589699998497963, 257804.65089999884367 ], [ 350559.883000001311302, 257808.606499999761581 ], [ 350562.805799998342991, 257817.546300001442432 ], [ 350569.70889999717474, 257807.493500001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802024100", "MAP": "D9-1537-T80", "PARCEL_NAM": "4-4-28", "ACRE": ".173", "LONGITUDE": -65.02219693000001, "LATITUDE": 18.34726382, "OBJECTID_1": 7304, "PARCEL_NO_": "104802024100", "Tax_Legal_": "4-4-28&5A-35 ESTATE FORTUNA WESTEND QTR.", "Name": "DAVIS, NEVILLE", "Address": "PO Box 931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 108700, "Improved_V": 182200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.795717274, "SHAPE_Area": 744.82529072199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349138.972099997103214, 257448.832299999892712 ], [ 349121.256599999964237, 257445.94310000166297 ], [ 349132.354400001466274, 257468.409800000488758 ], [ 349193.733000002801418, 257457.302000001072884 ], [ 349181.652699999511242, 257455.514400001615286 ], [ 349138.972099997103214, 257448.832299999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021500", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-21A", "ACRE": ".05", "LONGITUDE": -65.01750023, "LATITUDE": 18.34680866, "OBJECTID_1": 7279, "PARCEL_NO_": "104802021500", "Tax_Legal_": "FORTUNA 4-2-5A, 4-2-8A & 4-2-21A WEST END QTR", "Name": "WERNICKE, WERNER & TANYA MULDROW", "Address": "PO Box 302013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.767765022199995, "SHAPE_Area": 277.94212708399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349653.232400000095367, 257408.552600000053644 ], [ 349653.125799998641014, 257396.613699998706579 ], [ 349641.763300001621246, 257399.118599999696016 ], [ 349639.051299996674061, 257433.504599999636412 ], [ 349653.232400000095367, 257408.552600000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021500", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-5-A", "ACRE": ".09", "LONGITUDE": -65.01770957, "LATITUDE": 18.34703901, "OBJECTID_1": 7279, "PARCEL_NO_": "104802021500", "Tax_Legal_": "FORTUNA 4-2-5A, 4-2-8A & 4-2-21A WEST END QTR", "Name": "WERNICKE, WERNER & TANYA MULDROW", "Address": "PO Box 302013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.650535618000006, "SHAPE_Area": 351.48033637700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349604.437399998307228, 257426.466299999505281 ], [ 349616.012100003659725, 257442.499600000679493 ], [ 349638.202200002968311, 257443.795299999415874 ], [ 349639.051299996674061, 257433.504599999636412 ], [ 349604.437399998307228, 257426.466299999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021500", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-8-A", "ACRE": ".02", "LONGITUDE": -65.01793587, "LATITUDE": 18.34677827, "OBJECTID_1": 7279, "PARCEL_NO_": "104802021500", "Tax_Legal_": "FORTUNA 4-2-5A, 4-2-8A & 4-2-21A WEST END QTR", "Name": "WERNICKE, WERNER & TANYA MULDROW", "Address": "PO Box 302013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.229851050999997, "SHAPE_Area": 117.270917094 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349594.819600000977516, 257411.092599999159575 ], [ 349604.537500001490116, 257414.7179000005126 ], [ 349604.649599999189377, 257401.559000000357628 ], [ 349594.445500001311302, 257400.645799998193979 ], [ 349594.819600000977516, 257411.092599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021300", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-7-A", "ACRE": ".06", "LONGITUDE": -65.017953, "LATITUDE": 18.34707687, "OBJECTID_1": 7277, "PARCEL_NO_": "104802021300", "Tax_Legal_": "4-2-5 REM & 4-2-7-A FORTUNA NO.8 WEST END QTR", "Name": "WERNICKE, JOACHIM and ROSE", "Address": "447 W 91st St", "City": "Indianapolis", "State": "Indiana", "Zip": 46260, "Country": "United States", "Land_Value": 20500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.297353408600003, "SHAPE_Area": 304.67486531100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349587.909800000488758, 257429.62220000103116 ], [ 349600.891999997198582, 257464.011900000274181 ], [ 349604.437399998307228, 257426.466299999505281 ], [ 349587.909800000488758, 257429.62220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802021200", "MAP": "D9-6377-T98", "PARCEL_NAM": "4-2-21-B", "ACRE": ".03", "LONGITUDE": -65.01714488, "LATITUDE": 18.34708285, "OBJECTID_1": 7276, "PARCEL_NO_": "104802021200", "Tax_Legal_": "FORTUNA REM OF 4-2-4 & 4-2-21B WEST END QTR", "Name": "WERNICKE, JOACHIM & ROSE", "Address": "447 W 91st St", "City": "Indianapolis", "State": "Indiana", "Zip": 46260, "Country": "United States", "Land_Value": 26500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.937023424499998, "SHAPE_Area": 156.038143668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349693.41780000180006, 257436.285000000149012 ], [ 349664.695299997925758, 257440.339400000870228 ], [ 349691.346500001847744, 257447.442600000649691 ], [ 349693.41780000180006, 257436.285000000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103013500", "MAP": "D9-4272-T88", "PARCEL_NAM": "22-1", "ACRE": null, "LONGITUDE": -64.89766126000001, "LATITUDE": 18.35509201, "OBJECTID_1": 6459, "PARCEL_NO_": "103103013500", "Tax_Legal_": "MANDAHL 22-1 GREAT NORTHSIDE QTR.", "Name": "LETTSOME, R", "Address": "7018 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26300, "Improved_V": 27600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.5854494692, "SHAPE_Area": 94.456700196499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362288.241400003433228, 258417.081300001591444 ], [ 362313.039300002157688, 258440.50450000166893 ], [ 362311.260300002992153, 258431.206000000238419 ], [ 362288.241400003433228, 258417.081300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90849326, "LATITUDE": 18.35374948, "OBJECTID_1": 5646, "PARCEL_NO_": "103003014200", "Tax_Legal_": "WINTBERG 1-109 GR NORTHSIDE QTR", "Name": "FRANCOIS, VICTOR & MARTA", "Address": "PO Box 502265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052265, "Country": "United States", "Land_Value": 25800, "Improved_V": 222100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.0117577296500002, "SHAPE_Area": 0.05280459501 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361160.302400000393391, 258271.423700001090765 ], [ 361161.23929999768734, 258271.606100000441074 ], [ 361160.357699997723103, 258271.309500001370907 ], [ 361160.302400000393391, 258271.423700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103021900", "MAP": "D9-8851-T014", "PARCEL_NAM": "12 REM", "ACRE": ".93", "LONGITUDE": -64.89496065, "LATITUDE": 18.35434641, "OBJECTID_1": 6528, "PARCEL_NO_": "103103021900", "Tax_Legal_": "12 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "LEON JOSEPH BRYAN REVOCABLE TRUST", "Address": "PO Box 11503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 85800, "Improved_V": 75500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.976884787099998, "SHAPE_Area": 24.1998231044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362587.677199997007847, 258336.220100000500679 ], [ 362590.436099998652935, 258356.365800000727177 ], [ 362592.764300003647804, 258355.823399998247623 ], [ 362587.677199997007847, 258336.220100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103022000", "MAP": "D9-5773-T94", "PARCEL_NAM": "12C-3", "ACRE": null, "LONGITUDE": -64.89452335, "LATITUDE": 18.35388667, "OBJECTID_1": 6529, "PARCEL_NO_": "103103022000", "Tax_Legal_": "MANDAHL 12C-3 & 12DA 1 GR NORTHSIDE", "Name": "BRYAN, LEON", "Address": "PO Box 8124", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21300, "Improved_V": 432200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.8128446399, "SHAPE_Area": 26.168522990900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362633.600699998438358, 258296.074700001627207 ], [ 362637.675599999725819, 258303.74269999936223 ], [ 362640.201899997889996, 258300.660799998790026 ], [ 362635.968500003218651, 258294.628299999982119 ], [ 362633.600699998438358, 258296.074700001627207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023300", "MAP": "G9-1511-T70", "PARCEL_NAM": "4-15-1", "ACRE": ".10", "LONGITUDE": -64.88516567000001, "LATITUDE": 18.35187064, "OBJECTID_1": 6804, "PARCEL_NO_": "103104023300", "Tax_Legal_": "TARBOR & HARMONY 4-14&4-15-1 EAST END QTR", "Name": "CRUZ BAY MANAGEMENT CO., LLC", "Address": "PO Box 8336", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 70100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.555603437, "SHAPE_Area": 413.31166995699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363604.948399998247623, 258062.856300000101328 ], [ 363601.557199999690056, 258071.744600001722574 ], [ 363676.937700003385544, 258117.92850000038743 ], [ 363604.948399998247623, 258062.856300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003037200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90906258, "LATITUDE": 18.3515794, "OBJECTID_1": 5868, "PARCEL_NO_": "103003037200", "Tax_Legal_": "WINTBERG 1-20&1-21 GR NORTHSIDE QTR", "Name": "KARLIN, H. & JOHNSON, D", "Address": "PO Box 10422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52200, "Improved_V": 519200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.377983405500004, "SHAPE_Area": 119.822819252 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361103.850000001490116, 258019.186500001698732 ], [ 361100.431000001728535, 258018.036499999463558 ], [ 361100.266500003635883, 258028.109600000083447 ], [ 361099.844400003552437, 258053.956000000238419 ], [ 361107.066299997270107, 258020.268300000578165 ], [ 361103.850000001490116, 258019.186500001698732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103032900", "MAP": "A9-124-T69", "PARCEL_NAM": "5B-12", "ACRE": ".01", "LONGITUDE": -64.89943616, "LATITUDE": 18.35160883, "OBJECTID_1": 6610, "PARCEL_NO_": "103103032900", "Tax_Legal_": "MANDAHL 5B-12 GT. NORTHSIDE", "Name": "KELCH, ROBERT & HAZEL", "Address": "PO Box 655", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.664248865600001, "SHAPE_Area": 98.430980315799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362126.181500002741814, 258035.308600001037121 ], [ 362116.459700003266335, 258036.012800000607967 ], [ 362116.706600002944469, 258047.866500001400709 ], [ 362116.468500003218651, 258053.996100001037121 ], [ 362117.976599998772144, 258054.004900000989437 ], [ 362120.939999997615814, 258047.019900001585484 ], [ 362126.181500002741814, 258035.308600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004043300", "MAP": null, "PARCEL_NAM": "354-1", "ACRE": null, "LONGITUDE": -64.90470735, "LATITUDE": 18.35101973, "OBJECTID_1": 6243, "PARCEL_NO_": "103004043300", "Tax_Legal_": "WINTBERG 353-A & 354-1 GR NORTHSIDE QTR", "Name": "OSBORNE, BERNICE & ARANHA,BERNADINE O.", "Address": "PO Box 503124", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 38400, "Improved_V": 200800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.576176180100006, "SHAPE_Area": 124.071316526 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361552.451700001955032, 257962.445000000298023 ], [ 361581.097000002861023, 257997.121399998664856 ], [ 361577.232699997723103, 257991.096599999815226 ], [ 361556.24379999935627, 257958.372900001704693 ], [ 361552.451700001955032, 257962.445000000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004035600", "MAP": null, "PARCEL_NAM": "5-3", "ACRE": null, "LONGITUDE": -64.90166911, "LATITUDE": 18.35051603, "OBJECTID_1": 6178, "PARCEL_NO_": "103004035600", "Tax_Legal_": "5A-3,5-3&5-4A ESTATE MANDAHL GR NORTHSIDE QTR", "Name": "ARNET, WILLIAM & NIKKI", "Address": "6310 Wintberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41300, "Improved_V": 244400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.666897918100005, "SHAPE_Area": 123.466237578 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361866.798900000751019, 257909.962699998170137 ], [ 361891.712600000202656, 257927.809200000017881 ], [ 361892.45889999717474, 257926.84910000115633 ], [ 361895.736299999058247, 257920.754200000315905 ], [ 361876.444099999964237, 257913.630300000309944 ], [ 361866.798900000751019, 257909.962699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004035800", "MAP": "F9-1161-T63", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90180521000001, "LATITUDE": 18.35089258, "OBJECTID_1": 6179, "PARCEL_NO_": "103004035800", "Tax_Legal_": "5-4 ESTATE MANDAHL GR NORTHSIDE QTR", "Name": "Margaret A W Taylor,Daniel P Taylor & John E White", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35000, "Improved_V": 225400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.426022422499997, "SHAPE_Area": 150.095061077 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361862.492899999022484, 257958.246500000357628 ], [ 361867.078900001943111, 257973.718100000172853 ], [ 361881.088799998164177, 257949.88569999858737 ], [ 361878.537600003182888, 257951.85530000180006 ], [ 361872.873599998652935, 257954.131000000983477 ], [ 361868.010600000619888, 257957.046500001102686 ], [ 361862.492899999022484, 257958.246500000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104042600", "MAP": "C9-217-T77", "PARCEL_NAM": "394-408", "ACRE": ".07", "LONGITUDE": -64.88383344, "LATITUDE": 18.34916443, "OBJECTID_1": 6952, "PARCEL_NO_": "103104042600", "Tax_Legal_": "ANNAS RETREAT 394-408 NER QTR", "Name": "ELLIOTT, CECIL S. & ROSELYN E. (CO-TRUSTEES)", "Address": "6698 Estate Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.508636427, "SHAPE_Area": 169.82650519800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363773.968800000846386, 257752.607200000435114 ], [ 363771.115099996328354, 257758.995799999684095 ], [ 363768.253799997270107, 257810.901399999856949 ], [ 363769.036799997091293, 257813.652100000530481 ], [ 363771.456699997186661, 257813.798599999397993 ], [ 363773.968800000846386, 257752.607200000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052000", "MAP": "B9-329-T71", "PARCEL_NAM": "21C", "ACRE": ".23", "LONGITUDE": -64.87403732, "LATITUDE": 18.34573563, "OBJECTID_1": 22122, "PARCEL_NO_": "105701052000", "Tax_Legal_": "SMITH BAY 21 EAST END", "Name": "BRATHWAITE, EVELYN W", "Address": "BOX 3556", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 135200, "Improved_V": 96400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.98695693099999, "SHAPE_Area": 874.10549235500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364796.743600003421307, 257426.783300001174212 ], [ 364813.21000000089407, 257433.021000001579523 ], [ 364823.796700000762939, 257431.550599999725819 ], [ 364823.184600003063679, 257408.747499998658895 ], [ 364822.911899998784065, 257398.933299999684095 ], [ 364792.982199996709824, 257400.995799999684095 ], [ 364796.743600003421307, 257426.783300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052000", "MAP": "F9-1729-T66", "PARCEL_NAM": "21A", "ACRE": ".10", "LONGITUDE": -64.87423161, "LATITUDE": 18.34508257, "OBJECTID_1": 22122, "PARCEL_NO_": "105701052000", "Tax_Legal_": "SMITH BAY 21 EAST END", "Name": "BRATHWAITE, EVELYN W", "Address": "BOX 3556", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 135200, "Improved_V": 96400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.934194124399994, "SHAPE_Area": 415.84969115500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364781.115299999713898, 257330.298500001430511 ], [ 364781.440999999642372, 257354.540100000798702 ], [ 364797.67059999704361, 257355.590799998492002 ], [ 364798.940600000321865, 257331.037399999797344 ], [ 364781.115299999713898, 257330.298500001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052000", "MAP": "F9-1846-T66", "PARCEL_NAM": "21B", "ACRE": ".11", "LONGITUDE": -64.87406141, "LATITUDE": 18.34480894, "OBJECTID_1": 22122, "PARCEL_NO_": "105701052000", "Tax_Legal_": "SMITH BAY 21 EAST END", "Name": "BRATHWAITE, EVELYN W", "Address": "BOX 3556", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 135200, "Improved_V": 96400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.311979138799998, "SHAPE_Area": 514.47072772199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364820.725199997425079, 257320.231100000441074 ], [ 364820.098800003528595, 257297.686999998986721 ], [ 364805.533100001513958, 257303.689500000327826 ], [ 364792.813100002706051, 257309.014899998903275 ], [ 364796.188900001347065, 257324.899099998176098 ], [ 364820.725199997425079, 257320.231100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701039300", "MAP": "F9-3661-T79", "PARCEL_NAM": "20-22C", "ACRE": ".21", "LONGITUDE": -64.87709856, "LATITUDE": 18.34469226, "OBJECTID_1": 22028, "PARCEL_NO_": "105701039300", "Tax_Legal_": "SMITH BAY 20-22C EAST END QTR", "Name": "DAVIS, ANN", "Address": "PO Box 931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 26200, "Improved_V": 94700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.096723352, "SHAPE_Area": 990.15736335700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364475.17339999973774, 257268.050599999725819 ], [ 364458.987700000405312, 257281.010400000959635 ], [ 364467.191200003027916, 257292.026299998164177 ], [ 364473.505706393509172, 257297.214766931254417 ], [ 364480.054454332799651, 257302.104253662837436 ], [ 364486.823299996554852, 257306.684200000017881 ], [ 364498.480700001120567, 257314.362199999392033 ], [ 364509.768399998545647, 257321.554900001734495 ], [ 364512.223399996757507, 257323.08839999884367 ], [ 364518.378899998962879, 257326.924600001424551 ], [ 364526.722599998116493, 257332.137200001627207 ], [ 364527.25320304534398, 257332.081255459954264 ], [ 364527.768043283256702, 257331.941223624657141 ], [ 364528.253883646277245, 257331.720704856474185 ], [ 364528.698232685099356, 257331.425368916941807 ], [ 364529.089665734441951, 257331.062809193128487 ], [ 364529.418118653004058, 257330.642347463872284 ], [ 364529.675146582536399, 257330.174794227408711 ], [ 364529.854141073767096, 257329.672170752455713 ], [ 364529.950499996542931, 257329.147399999201298 ], [ 364528.407663877995219, 257327.566274099401198 ], [ 364526.643200002610683, 257326.236999999731779 ], [ 364520.747400000691414, 257322.371599998325109 ], [ 364518.333999998867512, 257320.670000001788139 ], [ 364512.457633660873398, 257316.211539968731813 ], [ 364506.810900002717972, 257311.465599998831749 ], [ 364500.854452973289881, 257304.712686044338625 ], [ 364495.288443789409939, 257297.634504790970823 ], [ 364490.130599997937679, 257290.253600001335144 ], [ 364475.17339999973774, 257268.050599999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105701030600", "MAP": "D9-5189-T91", "PARCEL_NAM": "20-37", "ACRE": ".05", "LONGITUDE": -64.87722442, "LATITUDE": 18.34479531, "OBJECTID_1": 21953, "PARCEL_NO_": "105701030600", "Tax_Legal_": "13AB&14REM FRYDHL/SMITH BY 20-37 EAST END QUARTER", "Name": "CASSI LAND CO LLC", "Address": "6812 Est Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125500, "Improved_V": 393200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.538503762799998, "SHAPE_Area": 36.718302735199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364470.875600002706051, 257305.383499998599291 ], [ 364464.407200001180172, 257307.441500000655651 ], [ 364485.649899996817112, 257311.72690000012517 ], [ 364470.875600002706051, 257305.383499998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701031800", "MAP": "F9-2335-T68", "PARCEL_NAM": null, "ACRE": ".30", "LONGITUDE": -64.87649635, "LATITUDE": 18.34485753, "OBJECTID_1": 21966, "PARCEL_NO_": "105701031800", "Tax_Legal_": "SMITH BAY ESTATE 20B-2&20B-4 EAST END QTR", "Name": "WILLIAMS, JR., HENRY H.", "Address": "PO Box 8494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45500, "Improved_V": 23600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17.004465052899999, "SHAPE_Area": 0.56757455824000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364550.665799997746944, 257310.12220000103116 ], [ 364550.594499997794628, 257318.49040000140667 ], [ 364550.729299999773502, 257318.590199999511242 ], [ 364550.665799997746944, 257310.12220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701030700", "MAP": "B9-144-T66", "PARCEL_NAM": "20 REM", "ACRE": null, "LONGITUDE": -64.87653442, "LATITUDE": 18.34505467, "OBJECTID_1": 21954, "PARCEL_NO_": "105701030700", "Tax_Legal_": "20 ESTATE SMITH BAY 1,2&3 EASTEND QTR", "Name": "SMITH, VALENTINE & OTHERS", "Address": "PO Box 8546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 1200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.456978459799998, "SHAPE_Area": 42.612896243999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364550.864399999380112, 257336.58049999922514 ], [ 364540.299699999392033, 257333.404699999839067 ], [ 364542.011268950300291, 257336.269057124969549 ], [ 364544.068099997937679, 257338.896499998867512 ], [ 364545.251170026720501, 257339.768373353843344 ], [ 364546.564767597883474, 257340.427372034493601 ], [ 364547.970969681628048, 257340.854471015773015 ], [ 364549.429179793281946, 257341.037340123119066 ], [ 364550.897299997508526, 257340.97069999948144 ], [ 364550.864399999380112, 257336.58049999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701038400", "MAP": "D9-5169-T91", "PARCEL_NAM": "20-22B-1", "ACRE": ".16", "LONGITUDE": -64.8774818, "LATITUDE": 18.34459735, "OBJECTID_1": 22025, "PARCEL_NO_": "105701038400", "Tax_Legal_": "20-22A & 20-22B SMITH BAY 1,2&3 EAST END QTR", "Name": "SMITH BAY PLAZA LLC", "Address": "PO Box 7395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.50156136699999, "SHAPE_Area": 595.93181252800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364427.158500000834465, 257261.040699999779463 ], [ 364441.48139999806881, 257291.252399999648333 ], [ 364453.632500000298023, 257308.527699999511242 ], [ 364455.544900000095367, 257306.524500001221895 ], [ 364459.605200000107288, 257303.180300001055002 ], [ 364465.272799998521805, 257300.482500001788139 ], [ 364466.106100000441074, 257297.322900000959635 ], [ 364438.124300003051758, 257269.018399998545647 ], [ 364434.943999998271465, 257263.714999999850988 ], [ 364432.548500001430511, 257260.951200000941753 ], [ 364429.827299997210503, 257254.682599999010563 ], [ 364427.158500000834465, 257261.040699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701038400", "MAP": "D9-5169-T91", "PARCEL_NAM": "20-22B-2", "ACRE": ".08", "LONGITUDE": -64.87756572000001, "LATITUDE": 18.34462999, "OBJECTID_1": 22025, "PARCEL_NO_": "105701038400", "Tax_Legal_": "20-22A & 20-22B SMITH BAY 1,2&3 EAST END QTR", "Name": "SMITH BAY PLAZA LLC", "Address": "PO Box 7395", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 105700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.873332332, "SHAPE_Area": 352.676150871 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364424.181800000369549, 257268.132100000977516 ], [ 364433.729099996387959, 257289.34739999845624 ], [ 364438.332800000905991, 257302.920499999076128 ], [ 364450.168200001120567, 257312.156599998474121 ], [ 364452.602700002491474, 257309.6064000017941 ], [ 364453.632500000298023, 257308.527699999511242 ], [ 364441.48139999806881, 257291.252399999648333 ], [ 364427.158500000834465, 257261.040699999779463 ], [ 364424.181800000369549, 257268.132100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701035900", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-7", "ACRE": ".23", "LONGITUDE": -64.87681966, "LATITUDE": 18.34169068, "OBJECTID_1": 22005, "PARCEL_NO_": "105701035900", "Tax_Legal_": "SMITH BAY 20-21-7 EAST END QTR.", "Name": "CHRISTOPHER, ANTONIO & LILLIAN", "Address": "6758 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60100, "Improved_V": 229300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.501862966, "SHAPE_Area": 1340.5434788099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364551.665700003504753, 256963.707100000232458 ], [ 364501.036399997770786, 256944.308100000023842 ], [ 364497.274300001561642, 256951.595600001513958 ], [ 364488.953599996864796, 256967.758499998599291 ], [ 364537.241300001740456, 256984.909400001168251 ], [ 364539.764300003647804, 256980.652100000530481 ], [ 364547.929899998009205, 256968.686599999666214 ], [ 364551.665700003504753, 256963.707100000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701030700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87756166, "LATITUDE": 18.34409765, "OBJECTID_1": 21954, "PARCEL_NO_": "105701030700", "Tax_Legal_": "20 ESTATE SMITH BAY 1,2&3 EASTEND QTR", "Name": "SMITH, VALENTINE & OTHERS", "Address": "PO Box 8546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 1200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.580874997, "SHAPE_Area": 1300.37752862 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364457.705300003290176, 257215.962400000542402 ], [ 364449.392599999904633, 257210.461300000548363 ], [ 364412.2449000030756, 257225.820799998939037 ], [ 364408.347199998795986, 257231.138700000941753 ], [ 364435.053700000047684, 257250.839200001209974 ], [ 364458.535700000822544, 257239.421300001442432 ], [ 364464.13849999755621, 257244.322299998253584 ], [ 364457.705300003290176, 257215.962400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701030700", "MAP": "F9-3833-T80", "PARCEL_NAM": "20-22F", "ACRE": ".23", "LONGITUDE": -64.87766119, "LATITUDE": 18.34389064, "OBJECTID_1": 21954, "PARCEL_NO_": "105701030700", "Tax_Legal_": "20 ESTATE SMITH BAY 1,2&3 EASTEND QTR", "Name": "SMITH, VALENTINE & OTHERS", "Address": "PO Box 8546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 1200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.124348932, "SHAPE_Area": 1073.4536463300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364412.2449000030756, 257225.820799998939037 ], [ 364449.392599999904633, 257210.461300000548363 ], [ 364457.705300003290176, 257215.962400000542402 ], [ 364456.366700001060963, 257210.061500001698732 ], [ 364450.449199996888638, 257196.456300001591444 ], [ 364437.486299999058247, 257190.617499999701977 ], [ 364409.214100003242493, 257203.515900000929832 ], [ 364401.286100000143051, 257207.132800001651049 ], [ 364399.425499998033047, 257207.859200000762939 ], [ 364412.2449000030756, 257225.820799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701030700", "MAP": null, "PARCEL_NAM": "20", "ACRE": null, "LONGITUDE": -64.87772344, "LATITUDE": 18.34338491, "OBJECTID_1": 21954, "PARCEL_NO_": "105701030700", "Tax_Legal_": "20 ESTATE SMITH BAY 1,2&3 EASTEND QTR", "Name": "SMITH, VALENTINE & OTHERS", "Address": "PO Box 8546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 1200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.870369291700001, "SHAPE_Area": 291.70524013599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364413.574699997901917, 257146.031599998474121 ], [ 364400.592100001871586, 257145.513199999928474 ], [ 364399.624300003051758, 257148.631499998271465 ], [ 364409.646700002253056, 257151.511599998921156 ], [ 364423.888599999248981, 257155.604299999773502 ], [ 364426.49719999730587, 257156.353900000452995 ], [ 364439.281400002539158, 257163.280999999493361 ], [ 364437.488099999725819, 257154.389400001615286 ], [ 364435.101499997079372, 257150.570199999958277 ], [ 364433.17790000140667, 257149.237399999052286 ], [ 364431.093400001525879, 257147.793200001120567 ], [ 364424.653599999845028, 257146.473900001496077 ], [ 364413.574699997901917, 257146.031599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701030800", "MAP": "F9-320-T58", "PARCEL_NAM": "20-19", "ACRE": ".02", "LONGITUDE": -64.87798942000001, "LATITUDE": 18.34371018, "OBJECTID_1": 21955, "PARCEL_NO_": "105701030800", "Tax_Legal_": "2O-19 SMITH BAY NOS. 1,2,3 EAST END QUARTER", "Name": "FRANCIS-ESTRILL & OTHERS, CECILE", "Address": "PO Box 8955", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.35803815000003, "SHAPE_Area": 1628.81061703 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364409.646700002253056, 257151.511599998921156 ], [ 364399.624300003051758, 257148.631499998271465 ], [ 364383.956399999558926, 257187.35249999910593 ], [ 364375.552199997007847, 257208.122299998998642 ], [ 364362.274999998509884, 257240.934799998998642 ], [ 364359.413999997079372, 257248.005499999970198 ], [ 364355.682499997317791, 257257.227299999445677 ], [ 364369.781800001859665, 257237.143300000578165 ], [ 364374.037399999797344, 257231.081199999898672 ], [ 364397.385600000619888, 257197.822599999606609 ], [ 364426.49719999730587, 257156.353900000452995 ], [ 364423.888599999248981, 257155.604299999773502 ], [ 364409.646700002253056, 257151.511599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105701030600", "MAP": "D9-5189-T91", "PARCEL_NAM": "13AB", "ACRE": ".011", "LONGITUDE": -64.87748082, "LATITUDE": 18.34497397, "OBJECTID_1": 21953, "PARCEL_NO_": "105701030600", "Tax_Legal_": "13AB&14REM FRYDHL/SMITH BY 20-37 EAST END QUARTER", "Name": "CASSI LAND CO LLC", "Address": "6812 Est Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125500, "Improved_V": 393200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.084781794599998, "SHAPE_Area": 38.026490189699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364457.034299999475479, 257313.837200000882149 ], [ 364441.895599998533726, 257331.410799998790026 ], [ 364440.577799998223782, 257337.964299999177456 ], [ 364457.034299999475479, 257313.837200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105701030600", "MAP": "D9-5189-T91", "PARCEL_NAM": "14 REM", "ACRE": ".40", "LONGITUDE": -64.87716871000001, "LATITUDE": 18.34508012, "OBJECTID_1": 21953, "PARCEL_NO_": "105701030600", "Tax_Legal_": "13AB&14REM FRYDHL/SMITH BY 20-37 EAST END QUARTER", "Name": "CASSI LAND CO LLC", "Address": "6812 Est Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 125500, "Improved_V": 393200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.163730575100004, "SHAPE_Area": 76.822333743000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364492.589800000190735, 257326.013300001621246 ], [ 364490.631899997591972, 257324.558100000023842 ], [ 364464.711999997496605, 257356.037999998778105 ], [ 364466.401699997484684, 257357.27589999884367 ], [ 364479.598800003528595, 257339.586500000208616 ], [ 364480.418999999761581, 257340.247900001704693 ], [ 364492.589800000190735, 257326.013300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105701031400", "MAP": "D9-5705-T94", "PARCEL_NAM": "20B-3A", "ACRE": ".26", "LONGITUDE": -64.87615089000001, "LATITUDE": 18.34514379, "OBJECTID_1": 21962, "PARCEL_NO_": "105701031400", "Tax_Legal_": "20B-3 SMITH BAY NO. 1,2,3 EAST END QTR", "Name": "FRAZER, ARTHUR A. & ALDA B. (LIFE ESTATE)", "Address": "PO Box 302892", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70500, "Improved_V": 14800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.20957212799999, "SHAPE_Area": 1092.6338142499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364608.439400002360344, 257347.936299998313189 ], [ 364608.064900003373623, 257328.531199999153614 ], [ 364605.319399997591972, 257331.181800000369549 ], [ 364596.408600002527237, 257335.964000001549721 ], [ 364587.523000001907349, 257337.79109999909997 ], [ 364581.880599997937679, 257337.5337999984622 ], [ 364576.055177084053867, 257337.971695600397652 ], [ 364570.27862303116126, 257338.842745517380536 ], [ 364564.583099998533726, 257340.142099998891354 ], [ 364559.1875, 257341.854100000113249 ], [ 364553.629299998283386, 257343.952100001275539 ], [ 364552.180734273686539, 257344.51025044551352 ], [ 364550.671948825533036, 257344.875546282040887 ], [ 364549.128499999642372, 257345.041799999773502 ], [ 364548.214000001549721, 257347.146699998527765 ], [ 364556.709399998188019, 257349.74379999935627 ], [ 364576.788000002503395, 257355.881799999624491 ], [ 364597.550599999725819, 257362.228999998420477 ], [ 364608.781599998474121, 257365.662300001829863 ], [ 364608.439400002360344, 257347.936299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9122453, "LATITUDE": 18.33771249, "OBJECTID_1": 20106, "PARCEL_NO_": "105503035200", "Tax_Legal_": "14B EST THOMAS 6 E NEW QTR", "Name": "ELSKOE, DOROTHY", "Address": "PO Box 7566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 318700, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.920505200799994, "SHAPE_Area": 192.99540330799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360792.848600000143051, 256490.124800000339746 ], [ 360765.305900000035763, 256489.364900000393391 ], [ 360762.869000002741814, 256491.455899998545647 ], [ 360760.676399998366833, 256493.431499999016523 ], [ 360790.448399998247623, 256498.757100000977516 ], [ 360791.878200002014637, 256493.804299999028444 ], [ 360792.848600000143051, 256490.124800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91206121, "LATITUDE": 18.33751709, "OBJECTID_1": 20105, "PARCEL_NO_": "105503034900", "Tax_Legal_": "ESTATE THOMAS 14A 6E NEW QTR", "Name": "BRYAN, CALVIN & MAYSEL", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.38360905359000003, "SHAPE_Area": 0.00231377997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360798.336300000548363, 256471.688900001347065 ], [ 360798.509300000965595, 256471.719099998474121 ], [ 360798.517599999904633, 256471.693799998611212 ], [ 360798.336300000548363, 256471.688900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91198334000001, "LATITUDE": 18.33737478, "OBJECTID_1": 20106, "PARCEL_NO_": "105503035200", "Tax_Legal_": "14B EST THOMAS 6 E NEW QTR", "Name": "ELSKOE, DOROTHY", "Address": "PO Box 7566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 318700, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.255258575, "SHAPE_Area": 447.78136195000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360801.262100003659725, 256474.95719999819994 ], [ 360819.867700003087521, 256475.44200000166893 ], [ 360812.099600002169609, 256450.934099998325109 ], [ 360808.468400001525879, 256439.477899998426437 ], [ 360807.683700002729893, 256436.938400000333786 ], [ 360803.657499998807907, 256436.272100001573563 ], [ 360797.99719999730587, 256438.125599998980761 ], [ 360793.935000002384186, 256441.681000001728535 ], [ 360790.473200000822544, 256447.339299999177456 ], [ 360804.765100002288818, 256451.467500001192093 ], [ 360811.04110000282526, 256453.2804000005126 ], [ 360802.415700003504753, 256472.399999998509884 ], [ 360801.262100003659725, 256474.95719999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503035200", "MAP": "D9-5960-T95", "PARCEL_NAM": "14BA-1", "ACRE": ".077", "LONGITUDE": -64.91162913, "LATITUDE": 18.33748596, "OBJECTID_1": 20106, "PARCEL_NO_": "105503035200", "Tax_Legal_": "14B EST THOMAS 6 E NEW QTR", "Name": "ELSKOE, DOROTHY", "Address": "PO Box 7566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 318700, "Improved_V": 119800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.924380617400004, "SHAPE_Area": 330.84185715199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360843.416599996387959, 256456.852099999785423 ], [ 360830.1875, 256471.404199998825788 ], [ 360836.802000001072884, 256476.43129999935627 ], [ 360849.237499997019768, 256478.018800001591444 ], [ 360857.571900002658367, 256466.244800001382828 ], [ 360843.416599996387959, 256456.852099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503032200", "MAP": "B9-283-T70", "PARCEL_NAM": "14R-4", "ACRE": ".10", "LONGITUDE": -64.91031478, "LATITUDE": 18.33712153, "OBJECTID_1": 20079, "PARCEL_NO_": "105503032200", "Tax_Legal_": "14R-3&14R-4 EST THOMAS NEW QTR.", "Name": "WILLIE, THOMAS", "Address": "P.O.BOX 3564", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75100, "Improved_V": 209800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.546578603100002, "SHAPE_Area": 324.258096196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360968.150700002908707, 256436.985100001096725 ], [ 360992.75, 256438.770599998533726 ], [ 360990.739900000393391, 256417.622099999338388 ], [ 360979.597300000488758, 256418.502599999308586 ], [ 360978.744199998676777, 256423.984099999070168 ], [ 360976.285700000822544, 256428.607999999076128 ], [ 360968.150700002908707, 256436.985100001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503032600", "MAP": "B9-283-T70", "PARCEL_NAM": "14R-8", "ACRE": ".15", "LONGITUDE": -64.91068146000001, "LATITUDE": 18.33646755, "OBJECTID_1": 20082, "PARCEL_NO_": "105503032600", "Tax_Legal_": "14R-8 EST THOMAS NEW QTR", "Name": "GREEN, HILLARY & SAMUEL", "Address": "PO Box 11863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36100, "Improved_V": 94500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.730812571, "SHAPE_Area": 673.89488905600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360968.826800003647804, 256357.619500000029802 ], [ 360965.606899999082088, 256344.420699998736382 ], [ 360963.898100003600121, 256344.8108000010252 ], [ 360921.959399998188019, 256354.384399998933077 ], [ 360923.6300999969244, 256362.315799999982119 ], [ 360924.146499998867512, 256368.095199998468161 ], [ 360924.258199997246265, 256369.34569999948144 ], [ 360966.203599996864796, 256359.414299998432398 ], [ 360969.087899997830391, 256358.7314000017941 ], [ 360968.826800003647804, 256357.619500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503032700", "MAP": "B9-283-T70", "PARCEL_NAM": "14R-9", "ACRE": ".14", "LONGITUDE": -64.91058225, "LATITUDE": 18.33662223, "OBJECTID_1": 20083, "PARCEL_NO_": "105503032700", "Tax_Legal_": "14R-9 ESTATE THOMAS 6E NEW QTR", "Name": "OTTLEY, ANTHONY A", "Address": "PO Box 9073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49000, "Improved_V": 292400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.695045384, "SHAPE_Area": 825.38992100999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360971.161200001835823, 256367.559999998658895 ], [ 360969.087899997830391, 256358.7314000017941 ], [ 360966.203599996864796, 256359.414299998432398 ], [ 360924.258199997246265, 256369.34569999948144 ], [ 360939.964500002563, 256377.36710000038147 ], [ 360972.45440000295639, 256393.96000000089407 ], [ 360971.805699996650219, 256386.563700001686811 ], [ 360971.161200001835823, 256367.559999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702040100", "MAP": "F9-319-T58", "PARCEL_NAM": "30", "ACRE": ".03", "LONGITUDE": -64.87410315, "LATITUDE": 18.34588537, "OBJECTID_1": 22567, "PARCEL_NO_": "105702040100", "Tax_Legal_": "FRYDENDAHL 30 EAST END QTR", "Name": "HUSBAND, RICHARD & CYNTHIA", "Address": "Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.446252602800001, "SHAPE_Area": 64.991560078199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364813.21000000089407, 257433.021000001579523 ], [ 364796.743600003421307, 257426.783300001174212 ], [ 364797.962300002574921, 257435.138799998909235 ], [ 364813.21000000089407, 257433.021000001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": "D9-9416-T019", "PARCEL_NAM": "57X-69", "ACRE": "0.15", "LONGITUDE": -64.87277259, "LATITUDE": 18.34335955, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.06675815299999, "SHAPE_Area": 676.77328199500005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364960.926899999380112, 257143.478999998420477 ], [ 364942.546400003135204, 257133.97749999910593 ], [ 364930.0945999994874, 257159.069600000977516 ], [ 364935.38629999756813, 257163.726199999451637 ], [ 364947.027999997138977, 257173.462900001555681 ], [ 364948.727700002491474, 257174.36939999833703 ], [ 364960.926899999380112, 257143.478999998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105502020900", "MAP": "D9-711-T68", "PARCEL_NAM": "1R-1", "ACRE": ".20", "LONGITUDE": -64.90447682, "LATITUDE": 18.34603131, "OBJECTID_1": 19856, "PARCEL_NO_": "105502020900", "Tax_Legal_": "WINTBERG ESTATE 1-R-3 GREAT NORTHSIDE QTR", "Name": "SHARP, ANN MARIE", "Address": "PO Box 502312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 106600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.33095459200001, "SHAPE_Area": 695.13674697199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361620.374099999666214, 257416.844000000506639 ], [ 361613.220799997448921, 257403.923000000417233 ], [ 361577.804099999368191, 257419.789500001817942 ], [ 361573.24099999666214, 257423.842099998146296 ], [ 361556.88629999756813, 257438.366900000721216 ], [ 361554.753600001335144, 257440.506400000303984 ], [ 361557.907799996435642, 257439.368999999016523 ], [ 361577.427299998700619, 257432.330400001257658 ], [ 361620.374099999666214, 257416.844000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105601063400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8916765, "LATITUDE": 18.34556423, "OBJECTID_1": 20869, "PARCEL_NO_": "105601063400", "Tax_Legal_": "215-36&POR 404 ANNAS RET NEW QTR.", "Name": "LEE, THOMAS & OREL", "Address": "215-36 EST TUTU ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18600, "Improved_V": 228200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.69386913282, "SHAPE_Area": 0.10029578518 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362945.662299998104572, 257380.041200000792742 ], [ 362945.394299998879433, 257380.290899999439716 ], [ 362945.652400001883507, 257380.798900000751019 ], [ 362945.662299998104572, 257380.041200000792742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105804040100", "MAP": "D9-3786-T86", "PARCEL_NAM": "19-C-A", "ACRE": "2.58", "LONGITUDE": -64.85482991000001, "LATITUDE": 18.33384078, "OBJECTID_1": 24690, "PARCEL_NO_": "105804040100", "Tax_Legal_": "SMITH BAY 19-C-A EAST END QTR", "Name": "TURNER, THOMAS R & SNYDER, MAX", "Address": "7280 Romero Drive", "City": "La Jolla", "State": "California", "Zip": 92037, "Country": "United States", "Land_Value": 194600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 576.25212049100003, "SHAPE_Area": 10118.7780055 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366915.639499999582767, 256189.655699998140335 ], [ 366840.887800000607967, 256065.978100001811981 ], [ 366855.131599999964237, 256013.916600000113249 ], [ 366823.821999996900558, 255984.619300000369549 ], [ 366814.626999996602535, 256022.752000000327826 ], [ 366808.781499996781349, 256046.346599999815226 ], [ 366806.017300002276897, 256086.853999998420477 ], [ 366805.95610000193119, 256094.030600000172853 ], [ 366805.916599996387959, 256098.674400001764297 ], [ 366809.001599997282028, 256115.164900001138449 ], [ 366812.250200003385544, 256112.447299998253584 ], [ 366817.912399999797344, 256110.382699999958277 ], [ 366828.380000002682209, 256112.1570999994874 ], [ 366842.435099996626377, 256166.100999999791384 ], [ 366845.557899996638298, 256178.158900000154972 ], [ 366853.394400000572205, 256204.820799998939037 ], [ 366854.168399997055531, 256208.626800000667572 ], [ 366858.081299997866154, 256222.590999998152256 ], [ 366882.356899999082088, 256212.657200001180172 ], [ 366896.940700002014637, 256204.543999999761581 ], [ 366909.922600001096725, 256195.151000000536442 ], [ 366913.178400002419949, 256191.589099999517202 ], [ 366915.639499999582767, 256189.655699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804033300", "MAP": "D9-6061-T96", "PARCEL_NAM": "11-N", "ACRE": "2.961", "LONGITUDE": -64.85033139, "LATITUDE": 18.33398286, "OBJECTID_1": 24221, "PARCEL_NO_": "105804033300", "Tax_Legal_": "SMITH BAY 11 REM EAST END QTR", "Name": "BAYSIDE RESORT, INC.", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 972300, "Improved_V": 638100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 626.16338949800002, "SHAPE_Area": 18731.5272606 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367355.44990000128746, 256171.449499998241663 ], [ 367425.079099997878075, 256173.250300001353025 ], [ 367443.065499998629093, 256150.3310999982059 ], [ 367448.589699998497963, 256104.229200001806021 ], [ 367435.346199996769428, 256099.110500000417233 ], [ 367428.723700001835823, 256100.461199998855591 ], [ 367397.342200003564358, 256103.486200001090765 ], [ 367396.306999996304512, 256096.910000000149012 ], [ 367364.515500001609325, 256099.306600000709295 ], [ 367361.640699997544289, 256083.099300000816584 ], [ 367308.223300002515316, 256089.23030000180006 ], [ 367307.391400001943111, 256080.832299999892712 ], [ 367268.985399998724461, 256094.285300001502037 ], [ 367268.236400000751019, 256087.462200000882149 ], [ 367222.049599997699261, 256104.639499999582767 ], [ 367226.554099999368191, 256184.908599998801947 ], [ 367238.725000001490116, 256193.904399998486042 ], [ 367302.754299998283386, 256182.791900001466274 ], [ 367355.44990000128746, 256171.449499998241663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105804032600", "MAP": "D9-6059-T96", "PARCEL_NAM": "16-1-6", "ACRE": "10.94", "LONGITUDE": -64.85103944, "LATITUDE": 18.33260559, "OBJECTID_1": 24219, "PARCEL_NO_": "105804032600", "Tax_Legal_": "SMITH BAY 16-1-6 1,2,3 EASTEND QRT", "Name": "MOREHOUSE REAL ESTATE INVESTMENTS LLC", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 235600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 518.13452632300005, "SHAPE_Area": 17107.458102100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367335.706299997866154, 256003.374299999326468 ], [ 367352.204800002276897, 255959.813000001013279 ], [ 367277.424599997699261, 255925.526299998164177 ], [ 367272.609300002455711, 255923.318399999290705 ], [ 367262.031900003552437, 255918.468699999153614 ], [ 367250.937100000679493, 255913.398600000888109 ], [ 367167.568199999630451, 255957.246300000697374 ], [ 367154.281400002539158, 255970.427700001746416 ], [ 367146.342200003564358, 255982.046500001102686 ], [ 367253.148199997842312, 256060.717199999839067 ], [ 367335.706299997866154, 256003.374299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105804033800", "MAP": "D9-6059-T96", "PARCEL_NAM": "16-1-2", "ACRE": "2.923", "LONGITUDE": -64.85203238, "LATITUDE": 18.33322429, "OBJECTID_1": 24448, "PARCEL_NO_": "105804033800", "Tax_Legal_": "SMITH BAY 16-1-2 EAST END QTR", "Name": "MOREHOUSE REAL ESTATE INVESTMENTS LLC", "Address": "PO Box 609", "City": "Upper Marlboro", "State": "Maryland", "Zip": 20773, "Country": "United States", "Land_Value": 313700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 491.593587899, "SHAPE_Area": 11050.6628346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367253.148199997842312, 256060.717199999839067 ], [ 367146.342200003564358, 255982.046500001102686 ], [ 367137.19709999859333, 255993.654899999499321 ], [ 367129.593000002205372, 256001.380800001323223 ], [ 367122.885499998927116, 256010.0135000012815 ], [ 367116.180699996650219, 256018.346500001847744 ], [ 367108.566299997270107, 256027.271000001579523 ], [ 367101.869199998676777, 256034.704999998211861 ], [ 367094.870700001716614, 256042.136500000953674 ], [ 367088.784299999475479, 256048.67680000141263 ], [ 367083.914200000464916, 256054.028900001198053 ], [ 367077.832999996840954, 256059.969900000840425 ], [ 367072.669200003147125, 256064.420400001108646 ], [ 367064.475199997425079, 256070.642900001257658 ], [ 367061.253799997270107, 256073.159299999475479 ], [ 367058.404399998486042, 256075.385200001299381 ], [ 367054.738099999725819, 256078.557199999690056 ], [ 367073.231200002133846, 256099.412599999457598 ], [ 367080.176500000059605, 256092.798000000417233 ], [ 367094.72860000282526, 256108.011599998921156 ], [ 367115.895300000905991, 256093.128699999302626 ], [ 367253.148199997842312, 256060.717199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601098200", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-82", "ACRE": ".3004", "LONGITUDE": -64.87448266, "LATITUDE": 18.32830006, "OBJECTID_1": 38298, "PARCEL_NO_": "107601098200", "Tax_Legal_": "3G-82 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "MEADE, SR, JASON PATRICK", "Address": "4005 Patriot Manor Unit", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.53609233700001, "SHAPE_Area": 1363.4921405699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364750.604299999773502, 255488.161200001835823 ], [ 364797.051100000739098, 255506.789700001478195 ], [ 364808.978500001132488, 255485.311000000685453 ], [ 364758.100100003182888, 255459.961899999529123 ], [ 364759.035800002515316, 255465.232700001448393 ], [ 364758.003899998962879, 255471.26630000025034 ], [ 364756.985299997031689, 255475.740800000727177 ], [ 364754.580799996852875, 255481.762800000607967 ], [ 364750.604299999773502, 255488.161200001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601098100", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-81", "ACRE": ".35", "LONGITUDE": -64.87439328000001, "LATITUDE": 18.32810704, "OBJECTID_1": 38297, "PARCEL_NO_": "107601098100", "Tax_Legal_": "3G-81 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "RAVARIERRE, WALTON", "Address": "PO Box 307582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40500, "Improved_V": 282500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.745638442, "SHAPE_Area": 1172.1305255499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364758.100100003182888, 255459.961899999529123 ], [ 364808.978500001132488, 255485.311000000685453 ], [ 364818.754799999296665, 255467.706000000238419 ], [ 364777.017200000584126, 255444.988400001078844 ], [ 364775.411700002849102, 255444.130899999290705 ], [ 364771.963899999856949, 255442.289299998432398 ], [ 364770.383699998259544, 255445.252700001001358 ], [ 364768.600599996745586, 255447.381599999964237 ], [ 364766.616499997675419, 255450.093600001186132 ], [ 364764.045800000429153, 255452.605599999427795 ], [ 364760.498000003397465, 255454.719500001519918 ], [ 364758.136600002646446, 255455.6739999987185 ], [ 364757.350599996745586, 255455.862199999392033 ], [ 364756.360200002789497, 255457.023299999535084 ], [ 364758.100100003182888, 255459.961899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601098300", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-83", "ACRE": ".3004", "LONGITUDE": -64.8746166, "LATITUDE": 18.328506, "OBJECTID_1": 38299, "PARCEL_NO_": "107601098300", "Tax_Legal_": "3G-83 ESTATE MARIENDAHL NO.4 RED HOOK QTR", "Name": "HENDERSON, HARTLEY J. & JUDITH J.", "Address": "6899 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.392008008, "SHAPE_Area": 1346.89329834 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364797.051100000739098, 255506.789700001478195 ], [ 364750.604299999773502, 255488.161200001835823 ], [ 364744.469200000166893, 255494.736200001090765 ], [ 364733.016500003635883, 255503.994800001382828 ], [ 364727.838299997150898, 255507.913899999111891 ], [ 364785.84740000218153, 255526.96510000154376 ], [ 364797.051100000739098, 255506.789700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602019900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87374199, "LATITUDE": 18.3275567, "OBJECTID_1": 38370, "PARCEL_NO_": "107602019900", "Tax_Legal_": "2B MARIENDAHL RED HOOK", "Name": "MONSANTO, L & JENSEN, M", "Address": "PO Box 172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 293700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.802906009699996, "SHAPE_Area": 369.88224297 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364873.972099997103214, 255389.613600000739098 ], [ 364869.720499999821186, 255389.381499998271465 ], [ 364863.634999997913837, 255390.439899999648333 ], [ 364861.52957122202497, 255390.817635844286997 ], [ 364859.49614372162614, 255391.4814786715433 ], [ 364857.573399998247623, 255392.418800000101328 ], [ 364855.820101610617712, 255393.59456005928223 ], [ 364854.242718100140337, 255394.997531268454622 ], [ 364852.870475770439953, 255396.601718895049999 ], [ 364851.728799998760223, 255398.377399999648333 ], [ 364850.310123469156679, 255403.216733016946819 ], [ 364849.347499996423721, 255408.166999999433756 ], [ 364848.764799717930146, 255411.944473845825996 ], [ 364848.764799717930146, 255415.766626155062113 ], [ 364849.347499996423721, 255419.544100001454353 ], [ 364849.41535222803941, 255421.73669788101688 ], [ 364849.822401713638101, 255423.892248878575629 ], [ 364850.558799996972084, 255425.958599999547005 ], [ 364857.119000002741814, 255413.135600000619888 ], [ 364867.726899996399879, 255398.445900000631809 ], [ 364873.972099997103214, 255389.613600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401013400", "MAP": "D9-7011-T002", "PARCEL_NAM": "3H REM", "ACRE": ".524", "LONGITUDE": -64.91363476, "LATITUDE": 18.32629581, "OBJECTID_1": 32974, "PARCEL_NO_": "107401013400", "Tax_Legal_": "3H REM.&3H-2 FRENCHMAN'S BAY No.4 FRENCHMAN'S BAY QTR.", "Name": "DRUE, KERRY E", "Address": "PO Box 9566", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 113500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.55727886400001, "SHAPE_Area": 1805.8468265500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360667.031300000846386, 255246.906599998474121 ], [ 360644.547100000083447, 255193.657999999821186 ], [ 360640.853900000452995, 255196.031599998474121 ], [ 360631.921499997377396, 255203.346700001507998 ], [ 360613.218099996447563, 255221.769900001585484 ], [ 360611.48589999973774, 255223.610399998724461 ], [ 360613.729500003159046, 255225.469300001859665 ], [ 360618.343500003218651, 255229.292100001126528 ], [ 360627.189000003039837, 255236.620700001716614 ], [ 360660.432700000703335, 255264.163899999111891 ], [ 360665.382100000977516, 255251.116599999368191 ], [ 360667.031300000846386, 255246.906599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401015700", "MAP": "D9-4757-T89", "PARCEL_NAM": "101D", "ACRE": ".504", "LONGITUDE": -64.91326478000001, "LATITUDE": 18.32396884, "OBJECTID_1": 32995, "PARCEL_NO_": "107401015700", "Tax_Legal_": "FRENCHMAN BAY 101D FRENCHMAN BAY QTR.", "Name": "Paul, Michael & Joy Johnson", "Address": "PO Box 306191", "City": "Charlotte Amalie", "State": "U.S.Virgin Islands", "Zip": 8036191, "Country": "United States", "Land_Value": 64800, "Improved_V": 6200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.34480703700001, "SHAPE_Area": 2295.6103819700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360692.187799997627735, 254944.194899998605251 ], [ 360684.934600003063679, 254943.71339999884367 ], [ 360677.665200002491474, 254945.131499998271465 ], [ 360671.997599996626377, 254947.8293999992311 ], [ 360667.937299996614456, 254951.173599999397993 ], [ 360660.603200003504753, 254960.190600000321865 ], [ 360651.537000000476837, 254971.169900000095367 ], [ 360688.430699996650219, 255011.263900000602007 ], [ 360693.120200000703335, 255000.289799999445677 ], [ 360714.257700003683567, 254950.824700001627207 ], [ 360707.466399997472763, 254949.17509999871254 ], [ 360692.187799997627735, 254944.194899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702068100", "MAP": "D9-1729-T81", "PARCEL_NAM": "57X-33", "ACRE": ".22", "LONGITUDE": -64.87300807, "LATITUDE": 18.34222702, "OBJECTID_1": 22716, "PARCEL_NO_": "105702068100", "Tax_Legal_": "57X-33 SMITH BAY EAST END QTR.", "Name": "FRANCIS (LIFE ESTATE), ANTHONY J", "Address": "PO Box 7823", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 175700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.84345569300001, "SHAPE_Area": 1104.9860022299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364917.430299997329712, 257041.7939000017941 ], [ 364935.961099997162819, 257043.634300000965595 ], [ 364945.787900000810623, 257025.982799999415874 ], [ 364937.75, 257022.96169999986887 ], [ 364922.626000002026558, 256999.82880000025034 ], [ 364920.966700002551079, 257005.303599998354912 ], [ 364894.052699998021126, 257040.969200000166893 ], [ 364917.430299997329712, 257041.7939000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702061500", "MAP": "D9-6923-T001", "PARCEL_NAM": "57X-2A", "ACRE": ".26", "LONGITUDE": -64.872141, "LATITUDE": 18.34271785, "OBJECTID_1": 22636, "PARCEL_NO_": "105702061500", "Tax_Legal_": "57X-2A ESTATE SMITH BAY No.1,2&3 EASTEND QTR.", "Name": "JOSEPH, JOYCELYN, A. , M. , S. , & S", "Address": "PO Box 12172", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33800, "Improved_V": 77600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.133894803, "SHAPE_Area": 1160.5677914299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365035.722699999809265, 257070.415300000458956 ], [ 365000.316899999976158, 257061.681800000369549 ], [ 365000.282700002193451, 257065.692299999296665 ], [ 364998.420800000429153, 257075.982599999755621 ], [ 364994.008400000631809, 257100.368500001728535 ], [ 365021.101300001144409, 257102.368099998682737 ], [ 365021.759999997913837, 257100.276299998164177 ], [ 365024.207699999213219, 257096.918800000101328 ], [ 365025.850900001823902, 257093.343699999153614 ], [ 365027.494099996984005, 257089.768500000238419 ], [ 365029.137299999594688, 257086.193399999290705 ], [ 365030.676600001752377, 257082.650400001555681 ], [ 365031.604800000786781, 257080.51410000026226 ], [ 365035.722699999809265, 257070.415300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87228066, "LATITUDE": 18.3420446, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.56594408799999, "SHAPE_Area": 678.66639862700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364982.213699996471405, 257017.715599998831749 ], [ 365006.469499997794628, 257024.632100000977516 ], [ 365007.353100001811981, 257022.120900001376867 ], [ 365009.046499997377396, 257015.347600001841784 ], [ 365015.384300000965595, 256996.78830000013113 ], [ 364990.417400002479553, 256993.206399999558926 ], [ 364988.514799997210503, 257000.319200001657009 ], [ 364982.213699996471405, 257017.715599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57X REM", "ACRE": null, "LONGITUDE": -64.87236613, "LATITUDE": 18.34230832, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.92580604600001, "SHAPE_Area": 859.24450038800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364972.255300000309944, 257044.537799999117851 ], [ 364996.346400000154972, 257060.432700000703335 ], [ 364997.387500002980232, 257056.426199998706579 ], [ 365003.331500001251698, 257033.550999999046326 ], [ 365006.469499997794628, 257024.632100000977516 ], [ 364982.213699996471405, 257017.715599998831749 ], [ 364978.778099998831749, 257027.2010000012815 ], [ 364972.255300000309944, 257044.537799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57X REM", "ACRE": null, "LONGITUDE": -64.87253187, "LATITUDE": 18.34299751, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 325.48384584399997, "SHAPE_Area": 3651.3739044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364996.346400000154972, 257060.432700000703335 ], [ 364972.255300000309944, 257044.537799999117851 ], [ 364970.734700001776218, 257048.579300001263618 ], [ 364970.523100003600121, 257064.666000001132488 ], [ 364966.924699999392033, 257078.847699999809265 ], [ 364965.465599998831749, 257082.221900001168251 ], [ 364963.538000002503395, 257086.679400000721216 ], [ 364957.55629999935627, 257099.258600000292063 ], [ 364949.14469999819994, 257116.947799999266863 ], [ 364944.064699999988079, 257130.91780000180006 ], [ 364942.546400003135204, 257133.97749999910593 ], [ 364960.926899999380112, 257143.478999998420477 ], [ 364948.727700002491474, 257174.36939999833703 ], [ 364959.728000000119209, 257180.236299999058247 ], [ 364964.246100001037121, 257184.183400001376867 ], [ 364966.712999999523163, 257180.236299999058247 ], [ 364973.698100000619888, 257166.477899998426437 ], [ 364978.566399998962879, 257152.084499999880791 ], [ 364983.223099999129772, 257137.902800001204014 ], [ 364987.159000001847744, 257116.286899998784065 ], [ 364990.574100002646446, 257097.530799999833107 ], [ 364996.558100000023842, 257064.666000001132488 ], [ 364996.346400000154972, 257060.432700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57X", "ACRE": null, "LONGITUDE": -64.87301009, "LATITUDE": 18.34319326, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.709680151, "SHAPE_Area": 787.65123974699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364938.115699999034405, 257131.690499998629093 ], [ 364918.418999999761581, 257115.051399998366833 ], [ 364900.743000000715256, 257132.405000001192093 ], [ 364902.129100002348423, 257134.127599999308586 ], [ 364926.934199996292591, 257156.706500001251698 ], [ 364935.1537000015378, 257138.408700000494719 ], [ 364938.115699999034405, 257131.690499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57X", "ACRE": null, "LONGITUDE": -64.87317964, "LATITUDE": 18.34300608, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.976543017799997, "SHAPE_Area": 597.00601618600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364918.418999999761581, 257115.051399998366833 ], [ 364904.58669999986887, 257093.698499999940395 ], [ 364887.861400000751019, 257114.996199999004602 ], [ 364890.962999999523163, 257119.681800000369549 ], [ 364892.553999997675419, 257122.228000000119209 ], [ 364900.743000000715256, 257132.405000001192093 ], [ 364918.418999999761581, 257115.051399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": "57X", "ACRE": null, "LONGITUDE": -64.87289106, "LATITUDE": 18.34301372, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.665165283600004, "SHAPE_Area": 476.070027471 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364918.418999999761581, 257115.051399998366833 ], [ 364938.115699999034405, 257131.690499998629093 ], [ 364947.48759999871254, 257110.434200000017881 ], [ 364931.433300003409386, 257101.859000001102686 ], [ 364929.842200003564358, 257099.312899999320507 ], [ 364918.418999999761581, 257115.051399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87336208000001, "LATITUDE": 18.34281903, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.215692108, "SHAPE_Area": 878.844222952 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364901.695000000298023, 257090.427700001746416 ], [ 364883.282899998128414, 257074.656100001186132 ], [ 364869.525200001895428, 257080.454100001603365 ], [ 364862.972199998795986, 257092.432799998670816 ], [ 364876.5878000035882, 257103.309999998658895 ], [ 364883.797899998724461, 257108.857400000095367 ], [ 364887.861400000751019, 257114.996199999004602 ], [ 364904.58669999986887, 257093.698499999940395 ], [ 364903.296800002455711, 257091.707400001585484 ], [ 364901.695000000298023, 257090.427700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87321569, "LATITUDE": 18.34264925, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.732970741499997, "SHAPE_Area": 499.18695840800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364914.033600002527237, 257074.069600000977516 ], [ 364900.609399996697903, 257057.981699999421835 ], [ 364883.282899998128414, 257074.656100001186132 ], [ 364901.695000000298023, 257090.427700001746416 ], [ 364914.033600002527237, 257074.069600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702060300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87373719, "LATITUDE": 18.34252349, "OBJECTID_1": 22625, "PARCEL_NO_": "105702060300", "Tax_Legal_": "57X SMITH BAY No. 1,2&3 EAST END QTR", "Name": "FRANCIS, EMILE & HEIRS OF ROBERT", "Address": "PO Box 502681", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 568600, "Improved_V": 43000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.72153023300001, "SHAPE_Area": 565.00430101200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364864.13459999859333, 257050.645799998193979 ], [ 364820.584700003266335, 257051.344799999147654 ], [ 364842.157300002872944, 257074.741700001060963 ], [ 364850.24379999935627, 257072.0636 ], [ 364857.538400001823902, 257067.690400000661612 ], [ 364842.299400001764297, 257058.066399998962879 ], [ 364845.569600000977516, 257052.815900001674891 ], [ 364862.410499997437, 257063.719500001519918 ], [ 364865.651900000870228, 257061.846099998801947 ], [ 364864.13459999859333, 257050.645799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601041700", "MAP": "A9-38-T65", "PARCEL_NAM": "146-2", "ACRE": ".21", "LONGITUDE": -64.89650037, "LATITUDE": 18.34332976, "OBJECTID_1": 20713, "PARCEL_NO_": "105601041700", "Tax_Legal_": "146-2 ANNAS RETREAT 1 NEW QTR", "Name": "SMITH, ENA,RUDDY,RUBY,RENECIA,ROSELYN, & RANDOLPH", "Address": "46002 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32700, "Improved_V": 157400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.84918659, "SHAPE_Area": 1210.9313526599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362460.377400003373623, 257142.284200001507998 ], [ 362439.183700002729893, 257101.932500001043081 ], [ 362416.242600001394749, 257116.737100001424551 ], [ 362423.373499996960163, 257131.572000000625849 ], [ 362434.4712999984622, 257154.038800001144409 ], [ 362453.900100000202656, 257145.120799999684095 ], [ 362460.377400003373623, 257142.284200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601041800", "MAP": "F9-2094-T67", "PARCEL_NAM": "146-6A", "ACRE": ".05", "LONGITUDE": -64.89624895, "LATITUDE": 18.34335605, "OBJECTID_1": 20714, "PARCEL_NO_": "105601041800", "Tax_Legal_": "146-6A ANNAS RETREAT 1 NEW QTR", "Name": "Virgin Islands Telephone Company", "Address": "PO Box 6100", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.965907563299993, "SHAPE_Area": 263.13632742 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362475.510999999940395, 257135.656700000166893 ], [ 362468.4679000005126, 257121.486600000411272 ], [ 362453.053099997341633, 257128.339200001209974 ], [ 362460.377400003373623, 257142.284200001507998 ], [ 362475.510999999940395, 257135.656700000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105704020100", "MAP": "D9-2232-T82", "PARCEL_NAM": "100-31", "ACRE": "1.209", "LONGITUDE": -64.86878315, "LATITUDE": 18.33971639, "OBJECTID_1": 23506, "PARCEL_NO_": "105704020100", "Tax_Legal_": "SMITH BAY 100 1,2&3 EAST END QTR", "Name": "COPLAND, ROGER, DEBBIE & ALAN", "Address": "PO Box 1343", "City": "Cary", "State": "North Carolina", "Zip": 27512, "Country": "United States", "Land_Value": 36600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1059.9797805400001, "SHAPE_Area": 4503.9256228699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365292.941399998962879, 256787.966400001198053 ], [ 365300.882200002670288, 256802.38569999858737 ], [ 365303.319200001657009, 256800.294700000435114 ], [ 365310.387000001966953, 256801.71169999986887 ], [ 365313.866899996995926, 256802.409400001168251 ], [ 365315.394100002944469, 256802.715599998831749 ], [ 365319.648299999535084, 256803.122000001370907 ], [ 365323.22410000115633, 256803.463500000536442 ], [ 365327.479800000786781, 256803.870000001043081 ], [ 365334.691299997270107, 256803.929000001400709 ], [ 365341.993400000035763, 256803.988800000399351 ], [ 365349.974600002169609, 256803.114799998700619 ], [ 365358.135799996554852, 256802.221000000834465 ], [ 365370.609700001776218, 256828.334600001573563 ], [ 365376.357299998402596, 256840.366999998688698 ], [ 365378.402099996805191, 256842.95380000025034 ], [ 365382.739500001072884, 256848.440799999982119 ], [ 365389.26690000295639, 256852.554699998348951 ], [ 365391.562200002372265, 256854.001400001347065 ], [ 365397.9983000010252, 256855.742899999022484 ], [ 365409.830700002610683, 256857.204100001603365 ], [ 365430.799199998378754, 256859.808200001716614 ], [ 365449.709399998188019, 256862.165500000119209 ], [ 365472.869199998676777, 256865.052499998360872 ], [ 365476.133299998939037, 256865.459399998188019 ], [ 365476.167400002479553, 256861.448899999260902 ], [ 365472.945799998939037, 256861.000300001353025 ], [ 365471.349399998784065, 256859.087400000542402 ], [ 365472.757399998605251, 256835.59010000154376 ], [ 365473.220899999141693, 256828.705299999564886 ], [ 365465.159599997103214, 256828.428199999034405 ], [ 365461.72580000013113, 256852.886999998241663 ], [ 365456.878899998962879, 256853.902800001204014 ], [ 365440.147799998521805, 256851.804299999028444 ], [ 365426.269599996507168, 256850.0636 ], [ 365415.229000002145767, 256848.696800000965595 ], [ 365398.881899997591972, 256846.673099998384714 ], [ 365392.451200000941753, 256844.29839999973774 ], [ 365387.645700000226498, 256840.459399998188019 ], [ 365384.456399999558926, 256836.211399998515844 ], [ 365370.1908999979496, 256806.963799998164177 ], [ 365367.02139999717474, 256800.393899999558926 ], [ 365367.082599997520447, 256793.217199999839067 ], [ 365368.788699999451637, 256782.254299998283386 ], [ 365369.839599996805191, 256753.554200001060963 ], [ 365370.0625, 256727.380399998277426 ], [ 365368.667499996721745, 256701.826699998229742 ], [ 365367.990699999034405, 256686.622400000691414 ], [ 365365.686800003051758, 256673.093600001186132 ], [ 365364.932599999010563, 256666.965700000524521 ], [ 365361.80629999935627, 256655.329999998211861 ], [ 365359.464699998497963, 256646.233800001442432 ], [ 365351.80460000038147, 256625.227800000458956 ], [ 365349.590999998152256, 256619.282400000840425 ], [ 365348.431599996984005, 256616.168200001120567 ], [ 365343.389300003647804, 256607.002099998295307 ], [ 365342.653099998831749, 256605.118500001728535 ], [ 365340.213200002908707, 256598.876600001007318 ], [ 365338.679399996995926, 256594.952599998563528 ], [ 365334.234300002455711, 256587.268800001591444 ], [ 365333.082999996840954, 256582.836800001561642 ], [ 365327.579099997878075, 256581.034400001168251 ], [ 365330.888999998569489, 256590.326799999922514 ], [ 365331.925599999725819, 256593.236999999731779 ], [ 365333.813500002026558, 256600.165199998766184 ], [ 365337.263599999248981, 256607.073699999600649 ], [ 365338.718099996447563, 256620.521699998527765 ], [ 365337.497000001370907, 256625.089699998497963 ], [ 365323.994099996984005, 256645.09910000115633 ], [ 365311.619000002741814, 256663.359200000762939 ], [ 365303.584600001573563, 256674.485100001096725 ], [ 365301.339500002563, 256678.517799999564886 ], [ 365299.490099996328354, 256681.839899998158216 ], [ 365313.211800001561642, 256680.2635000012815 ], [ 365313.285499997437, 256671.609200000762939 ], [ 365314.10980000346899, 256669.504999998956919 ], [ 365316.765900000929832, 256665.685699999332428 ], [ 365323.082800000905991, 256656.602400001138449 ], [ 365336.151699997484684, 256637.810300000011921 ], [ 365340.203100003302097, 256635.521499998867512 ], [ 365344.231100000441074, 256635.976599998772144 ], [ 365345.834700003266335, 256637.045200001448393 ], [ 365349.002400003373623, 256643.826099999248981 ], [ 365354.488300003111362, 256662.447299998253584 ], [ 365356.80120000243187, 256674.920699998736382 ], [ 365358.352700002491474, 256682.110599998384714 ], [ 365359.789099998772144, 256702.809500001370907 ], [ 365360.417400002479553, 256723.712900001555681 ], [ 365361.17509999871254, 256729.418600000441074 ], [ 365361.027699999511242, 256746.727099999785423 ], [ 365360.007399998605251, 256771.838899999856949 ], [ 365358.218500003218651, 256792.511399999260902 ], [ 365352.561800003051758, 256793.942800000309944 ], [ 365340.458099998533726, 256794.89919999986887 ], [ 365322.722800001502037, 256794.331799998879433 ], [ 365306.616300001740456, 256791.877999998629093 ], [ 365298.765000000596046, 256789.632199998944998 ], [ 365292.941399998962879, 256787.966400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107701014100", "MAP": "D9-117-T57", "PARCEL_NAM": "62", "ACRE": ".07", "LONGITUDE": -64.8651806, "LATITUDE": 18.32299096, "OBJECTID_1": 39159, "PARCEL_NO_": "107701014100", "Tax_Legal_": "ESTATE FRYDENHOJ 62 RED HOOK QUARTER", "Name": "BENJAMIN, SANDRA", "Address": "PO BOX 306781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.267633918, "SHAPE_Area": 637.59599417499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365772.69030000269413, 254889.644200000911951 ], [ 365769.029500000178814, 254890.339600000530481 ], [ 365746.17119999974966, 254894.681600000709295 ], [ 365764.497400000691414, 254914.781899999827147 ], [ 365775.188199996948242, 254926.765799999237061 ], [ 365782.550800003111362, 254922.923500001430511 ], [ 365772.69030000269413, 254889.644200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601012200", "MAP": null, "PARCEL_NAM": "2CB", "ACRE": "0.57", "LONGITUDE": -64.97739665, "LATITUDE": 18.3628887, "OBJECTID_1": 2191, "PARCEL_NO_": "102601012200", "Tax_Legal_": "CARET BAY 2C LITTLE NORTHSIDE", "Name": "LEDEE, P, P, M & 14 CHLDRN OF", "Address": "JL LEDEE 2C CARET BY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88800, "Improved_V": 65000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.20089147600001, "SHAPE_Area": 790.15124707200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353867.258299998939037, 259200.825500000268221 ], [ 353866.015000000596046, 259202.946400001645088 ], [ 353864.162900000810623, 259206.518300000578165 ], [ 353862.149499997496605, 259216.299499999731779 ], [ 353861.907600000500679, 259220.909299999475479 ], [ 353860.209700003266335, 259253.271000001579523 ], [ 353868.272799998521805, 259253.337000001221895 ], [ 353879.019199997186661, 259222.394200000911951 ], [ 353885.644100002944469, 259201.972300000488758 ], [ 353867.258299998939037, 259200.825500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103001010500", "MAP": null, "PARCEL_NAM": "6A", "ACRE": null, "LONGITUDE": -64.91569599, "LATITUDE": 18.35740664, "OBJECTID_1": 5098, "PARCEL_NO_": "103001010500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 6AB ROSENDAHL GR NORTH", "Name": "LAKE, RONALD", "Address": "21071 Standford Sq", "City": "Sterling", "State": "Virginia", "Zip": 20166, "Country": "United States", "Land_Value": 36400, "Improved_V": 130500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.8878916086, "SHAPE_Area": 330.260181612 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360407.698700003325939, 258676.432599999010563 ], [ 360407.486299999058247, 258662.137699998915195 ], [ 360384.254100002348423, 258663.415699999779463 ], [ 360384.604599997401237, 258677.611299999058247 ], [ 360402.35249999910593, 258676.701099999248981 ], [ 360407.698700003325939, 258676.432599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203011700", "MAP": "D9-4866-T90", "PARCEL_NAM": "14 REM", "ACRE": ".055", "LONGITUDE": -64.94387152, "LATITUDE": 18.36482055, "OBJECTID_1": 716, "PARCEL_NO_": "101203011700", "Tax_Legal_": "14 ESTATE ST.PETER LITTLE NORTHSIDE QTR", "Name": "ANN BRYAN", "Address": "3213 FRIAR LN", "City": "Garland", "State": "Texas", "Zip": 750445421, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.21254976500001, "SHAPE_Area": 339.13067486199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357400.899999998509884, 259451.335799999535084 ], [ 357396.065700002014637, 259450.874099999666214 ], [ 357401.657799996435642, 259457.041499998420477 ], [ 357403.241599999368191, 259460.432000000029802 ], [ 357406.443499997258186, 259463.202399998903275 ], [ 357408.822899997234344, 259467.865899998694658 ], [ 357415.919600002467632, 259486.711399998515844 ], [ 357415.514899998903275, 259492.314899999648333 ], [ 357419.206299997866154, 259492.097100000828505 ], [ 357416.543499998748302, 259453.63459999859333 ], [ 357400.899999998509884, 259451.335799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203016000", "MAP": "D9-5372-T92", "PARCEL_NAM": "14-8", "ACRE": ".25", "LONGITUDE": -64.94407299, "LATITUDE": 18.364466, "OBJECTID_1": 759, "PARCEL_NO_": "101203016000", "Tax_Legal_": "ST PETER 14-8 LITTLE NORTHSIDE", "Name": "BRYAN, ALPHONSE J", "Address": "6505 ESTATE NAZARETH", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43400, "Improved_V": 97700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.48183993200001, "SHAPE_Area": 1381.06708086 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357412.455300003290176, 259435.075899999588728 ], [ 357403.189999997615814, 259393.015900000929832 ], [ 357398.113499999046326, 259399.806200001388788 ], [ 357396.470299996435642, 259403.381299998611212 ], [ 357391.591099999845028, 259408.19649999961257 ], [ 357379.395700000226498, 259419.918000001460314 ], [ 357362.36599999666214, 259431.177600000053644 ], [ 357361.545299999415874, 259432.859700001776218 ], [ 357361.494999997317791, 259438.769900001585484 ], [ 357363.086000002920628, 259441.315999999642372 ], [ 357399.339500002563, 259445.201299998909235 ], [ 357412.455300003290176, 259435.075899999588728 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604061800", "MAP": "F9-823-T61", "PARCEL_NAM": "109", "ACRE": ".043", "LONGITUDE": -64.86958987, "LATITUDE": 18.31878968, "OBJECTID_1": 39075, "PARCEL_NO_": "107604061800", "Tax_Legal_": "109 FRYDENHOJ RED HOOK QTR", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20900, "Improved_V": 45700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.213537882599994, "SHAPE_Area": 324.69471990800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365316.727399997413158, 254429.46680000051856 ], [ 365303.237899996340275, 254423.0287000015378 ], [ 365294.534500002861023, 254446.040899999439716 ], [ 365303.975100003182888, 254449.25620000064373 ], [ 365306.123800002038479, 254450.243099998682737 ], [ 365316.727399997413158, 254429.46680000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604061700", "MAP": "F9-643-T60", "PARCEL_NAM": "104", "ACRE": ".014", "LONGITUDE": -64.86966816, "LATITUDE": 18.31875798, "OBJECTID_1": 39074, "PARCEL_NO_": "107604061700", "Tax_Legal_": "104 FRYDENHOJ RED HOOK", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.693673711400002, "SHAPE_Area": 107.524540499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365303.237899996340275, 254423.0287000015378 ], [ 365298.198499999940395, 254421.657200001180172 ], [ 365291.13459999859333, 254444.883000001311302 ], [ 365294.534500002861023, 254446.040899999439716 ], [ 365303.237899996340275, 254423.0287000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604061900", "MAP": "F9-346-T58", "PARCEL_NAM": "82", "ACRE": ".02", "LONGITUDE": -64.8694944, "LATITUDE": 18.31883384, "OBJECTID_1": 39076, "PARCEL_NO_": "107604061900", "Tax_Legal_": "82 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.868965990500001, "SHAPE_Area": 201.515269676 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365320.700499996542931, 254431.363099999725819 ], [ 365316.727399997413158, 254429.46680000051856 ], [ 365306.123800002038479, 254450.243099998682737 ], [ 365308.949199996888638, 254451.540800001472235 ], [ 365311.014200001955032, 254452.48930000141263 ], [ 365314.133000001311302, 254453.921700000762939 ], [ 365324.425499998033047, 254433.120299998670816 ], [ 365323.198600001633167, 254432.549699999392033 ], [ 365320.700499996542931, 254431.363099999725819 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604062100", "MAP": "F9-316-T58", "PARCEL_NAM": "80", "ACRE": ".03", "LONGITUDE": -64.86931639, "LATITUDE": 18.31891638, "OBJECTID_1": 39078, "PARCEL_NO_": "107604062100", "Tax_Legal_": "ESTATE FRYDENHOJ 80 RED HOOK QUARTER", "Name": "COMMISSIONG, SIDNEY & RUTH", "Address": "PO Box 396", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 6700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.2003443471, "SHAPE_Area": 243.23618966699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365339.06139999628067, 254439.860599998384714 ], [ 365335.961300000548363, 254438.200300000607967 ], [ 365327.61089999973774, 254452.176399998366833 ], [ 365323.564900003373623, 254458.94819999858737 ], [ 365325.078599996864796, 254460.008699998259544 ], [ 365331.35869999974966, 254464.408300001174212 ], [ 365344.927299998700619, 254443.002099998295307 ], [ 365339.06139999628067, 254439.860599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604062400", "MAP": "F9-277-T57", "PARCEL_NAM": "76", "ACRE": ".016", "LONGITUDE": -64.86911531, "LATITUDE": 18.31906043, "OBJECTID_1": 39081, "PARCEL_NO_": "107604062400", "Tax_Legal_": "76 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SAGA HAVEN C/O WATERGATE VILLA", "Address": "7101 Watergate E", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.059100808300002, "SHAPE_Area": 180.16652423 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365361.19370000064373, 254455.519000001251698 ], [ 365360.196199998259544, 254454.854299999773502 ], [ 365344.881399996578693, 254474.6875 ], [ 365347.891599997878075, 254478.112900000065565 ], [ 365349.282999999821186, 254479.93019999936223 ], [ 365361.565499998629093, 254464.981699999421835 ], [ 365365.538999997079372, 254460.145899999886751 ], [ 365361.19370000064373, 254455.519000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604062600", "MAP": "G9-438-T56", "PARCEL_NAM": "60", "ACRE": ".02", "LONGITUDE": -64.86898627, "LATITUDE": 18.31920139, "OBJECTID_1": 39083, "PARCEL_NO_": "107604062600", "Tax_Legal_": "6O ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "GRAMMER, ALLEN", "Address": "6150 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 4200, "Improved_V": 37100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.770346755999995, "SHAPE_Area": 270.69038241300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365380.354599997401237, 254478.051699999719858 ], [ 365377.964500002563, 254474.654699999839067 ], [ 365376.348200000822544, 254475.0636 ], [ 365375.574299998581409, 254471.257599998265505 ], [ 365374.522200003266335, 254470.242400001734495 ], [ 365355.417000003159046, 254487.94200000166893 ], [ 365357.41330000013113, 254490.549400001764297 ], [ 365359.935199998319149, 254494.809799998998642 ], [ 365367.843800000846386, 254489.779399998486042 ], [ 365378.187399998307228, 254483.200100000947714 ], [ 365380.917199999094009, 254481.463799998164177 ], [ 365380.354599997401237, 254478.051699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604062800", "MAP": "F9-176-T57", "PARCEL_NAM": "65", "ACRE": ".01", "LONGITUDE": -64.8689355, "LATITUDE": 18.3192659, "OBJECTID_1": 39085, "PARCEL_NO_": "107604062800", "Tax_Legal_": "65 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "FRANCIS, EDWIN E", "Address": "2007 Virginia Ave", "City": "LANDOVER", "State": "Maryland", "Zip": 20785, "Country": "United States", "Land_Value": 2200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.047616215600002, "SHAPE_Area": 202.20396293100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365379.433499999344349, 254491.52309999987483 ], [ 365379.460199996829033, 254488.388000000268221 ], [ 365382.679999999701977, 254489.047600001096725 ], [ 365384.30349999666214, 254487.794399999082088 ], [ 365384.321400001645088, 254485.683600001037121 ], [ 365386.747599996626377, 254484.859000001102686 ], [ 365389.189900003373623, 254482.134799998253584 ], [ 365386.792499996721745, 254479.582100000232458 ], [ 365381.121399998664856, 254482.702100001275539 ], [ 365380.917199999094009, 254481.463799998164177 ], [ 365378.187399998307228, 254483.200100000947714 ], [ 365367.843800000846386, 254489.779399998486042 ], [ 365359.935199998319149, 254494.809799998998642 ], [ 365363.342000000178814, 254500.56529999896884 ], [ 365373.212399996817112, 254495.018899999558926 ], [ 365379.433499999344349, 254491.52309999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604044100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86939081, "LATITUDE": 18.32086839, "OBJECTID_1": 39035, "PARCEL_NO_": "107604044100", "Tax_Legal_": "74J FRYDENHOJ RED HOOK QTR", "Name": "SHARIFA L & SHAUSAME L MALONE & TIFFANY N MACTAVIOUS", "Address": "PO Box 307544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037544, "Country": "United States", "Land_Value": 37800, "Improved_V": 165200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.679631513, "SHAPE_Area": 922.67147629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365301.0253000035882, 254659.932000000029802 ], [ 365304.54734142794041, 254662.422038656950463 ], [ 365307.839427571510896, 254665.209014998981729 ], [ 365310.876599997282028, 254668.271800000220537 ], [ 365313.218272324709687, 254671.930205856828252 ], [ 365315.05656168871792, 254675.865692474122625 ], [ 365316.359299067175016, 254680.009391066356329 ], [ 365317.10368729417678, 254684.288789256330347 ], [ 365317.276699997484684, 254688.629000000655651 ], [ 365331.479500003159046, 254689.810699999332428 ], [ 365334.30629999935627, 254677.36939999833703 ], [ 365337.666500002145767, 254661.564800001680851 ], [ 365340.22749999910593, 254644.909400001168251 ], [ 365301.0253000035882, 254659.932000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401031300", "MAP": null, "PARCEL_NAM": "8A", "ACRE": ".15", "LONGITUDE": -64.93136942, "LATITUDE": 18.34544788, "OBJECTID_1": 11433, "PARCEL_NO_": "105401031300", "Tax_Legal_": "DOMINI GADE 8A KINGS QTR", "Name": "BANFIELD, CLIVE E. C. , TRUSTEE", "Address": "PO Box 1028", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16100, "Improved_V": 77400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.364245209, "SHAPE_Area": 633.329371 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358763.902300000190735, 257338.889600001275539 ], [ 358764.247900001704693, 257336.590300001204014 ], [ 358765.218299999833107, 257329.314399998635054 ], [ 358765.946599997580051, 257322.010299999266863 ], [ 358738.036399997770786, 257322.696600001305342 ], [ 358734.946999996900558, 257322.772599998861551 ], [ 358734.871100001037121, 257322.774500001221895 ], [ 358732.406300000846386, 257322.835099998861551 ], [ 358734.156999997794628, 257333.922499999403954 ], [ 358734.972999997437, 257339.090900000184774 ], [ 358741.549800001084805, 257338.410300001502037 ], [ 358744.788800001144409, 257338.075100000947714 ], [ 358745.741300001740456, 257345.589299999177456 ], [ 358763.056900002062321, 257345.427099999040365 ], [ 358763.902300000190735, 257338.889600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504042400", "MAP": "F9-148-T57", "PARCEL_NAM": "3-106", "ACRE": null, "LONGITUDE": -64.8826761, "LATITUDE": 18.31917947, "OBJECTID_1": 37802, "PARCEL_NO_": "107504042400", "Tax_Legal_": "EST BOVONI 3-108A FRENCHMAN BAY QTR", "Name": "FRANCIS, SARAH MARY", "Address": "8 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.52490039899999, "SHAPE_Area": 1163.8169368 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363941.203699998557568, 254452.551899999380112 ], [ 363917.093500003218651, 254443.066399998962879 ], [ 363915.444899998605251, 254447.27479999884963 ], [ 363904.743500001728535, 254472.940600000321865 ], [ 363903.089500002563, 254477.782299999147654 ], [ 363901.459600001573563, 254483.046900000423193 ], [ 363927.685999996960163, 254492.970400001853704 ], [ 363928.794399999082088, 254489.391699999570847 ], [ 363941.203699998557568, 254452.551899999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504042400", "MAP": "D9-9085-T016", "PARCEL_NAM": "3-108A", "ACRE": ".07", "LONGITUDE": -64.88278875, "LATITUDE": 18.31952666, "OBJECTID_1": 37802, "PARCEL_NO_": "107504042400", "Tax_Legal_": "EST BOVONI 3-108A FRENCHMAN BAY QTR", "Name": "FRANCIS, SARAH MARY", "Address": "8 Annas Fancy", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.320146198100005, "SHAPE_Area": 278.913807421 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363894.362700000405312, 254505.969999998807907 ], [ 363905.753100000321865, 254509.261300001293421 ], [ 363905.435599997639656, 254511.166299998760223 ], [ 363920.016000002622604, 254516.148800000548363 ], [ 363922.990099996328354, 254508.131499998271465 ], [ 363923.654899999499321, 254505.985100001096725 ], [ 363897.122400000691414, 254497.056000001728535 ], [ 363896.74719999730587, 254498.26799999922514 ], [ 363894.362700000405312, 254505.969999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504042300", "MAP": "D9-8781-T013", "PARCEL_NAM": "3-108 REM", "ACRE": ".11", "LONGITUDE": -64.88276152, "LATITUDE": 18.31942009, "OBJECTID_1": 37801, "PARCEL_NO_": "107504042300", "Tax_Legal_": "3-108 REM BOVONI FRENCHMANS BAY QTR", "Name": "RILEY, AUGUSTUS", "Address": "2-3 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.325549919400004, "SHAPE_Area": 395.87731758799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363927.685999996960163, 254492.970400001853704 ], [ 363901.459600001573563, 254483.046900000423193 ], [ 363897.580399997532368, 254495.576799999922514 ], [ 363897.122400000691414, 254497.056000001728535 ], [ 363923.654899999499321, 254505.985100001096725 ], [ 363923.729099996387959, 254505.745700001716614 ], [ 363924.23200000077486, 254504.121899999678135 ], [ 363927.685999996960163, 254492.970400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038700", "MAP": "D9-8911-T014", "PARCEL_NAM": "K-3", "ACRE": ".22", "LONGITUDE": -64.86118014, "LATITUDE": 18.32861265, "OBJECTID_1": 39325, "PARCEL_NO_": "107701038700", "Tax_Legal_": "K-3 NAZARETH NO.1 RED HOOK QUARTER", "Name": "CLERMONT, LUCETTE", "Address": "PO Box 305945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48800, "Improved_V": 48800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.105190562, "SHAPE_Area": 735.73204464599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366167.123599998652935, 255523.195300001651049 ], [ 366183.262100003659725, 255551.768699999898672 ], [ 366202.541000001132488, 255539.263900000602007 ], [ 366186.98369999974966, 255511.910799998790026 ], [ 366167.123599998652935, 255523.195300001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038500", "MAP": "D9-8911-T014", "PARCEL_NAM": "K-1", "ACRE": ".22", "LONGITUDE": -64.86150745, "LATITUDE": 18.32885196, "OBJECTID_1": 39323, "PARCEL_NO_": "107701038500", "Tax_Legal_": "K-1 NAZARETH NO.1 RED HOOK QUARTER", "Name": "FREDERICK, RAY & JUDY ANN JAMES", "Address": "6515 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.77571714299999, "SHAPE_Area": 740.96051360700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366165.592799998819828, 255563.229499999433756 ], [ 366149.181500002741814, 255533.390000000596046 ], [ 366139.628899998962879, 255538.817800000309944 ], [ 366139.761500000953674, 255541.845800001174212 ], [ 366139.734499998390675, 255545.011999998241663 ], [ 366141.228399999439716, 255558.956399999558926 ], [ 366143.446000002324581, 255582.61710000038147 ], [ 366152.364000000059605, 255576.990499999374151 ], [ 366159.681900002062321, 255569.873199999332428 ], [ 366163.760200001299381, 255564.418200001120567 ], [ 366165.592799998819828, 255563.229499999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038400", "MAP": "D9-8911-T014", "PARCEL_NAM": "K-2", "ACRE": ".22", "LONGITUDE": -64.86135569, "LATITUDE": 18.32871697, "OBJECTID_1": 39322, "PARCEL_NO_": "107701038400", "Tax_Legal_": "K-2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "DONOVAN, TISSALEY", "Address": "PO Box 7374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.56764391, "SHAPE_Area": 696.26183521899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366183.262100003659725, 255551.768699999898672 ], [ 366167.123599998652935, 255523.195300001651049 ], [ 366149.181500002741814, 255533.390000000596046 ], [ 366165.592799998819828, 255563.229499999433756 ], [ 366183.262100003659725, 255551.768699999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "D9-8917-T014", "PARCEL_NAM": "106B", "ACRE": "1.02", "LONGITUDE": -65.01679803, "LATITUDE": 18.35865016, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 414.22422791600002, "SHAPE_Area": 2251.8019417 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349794.588600002229214, 258692.581000000238419 ], [ 349791.27589999884367, 258699.535000000149012 ], [ 349777.385300002992153, 258706.811000000685453 ], [ 349736.043999999761581, 258714.087099999189377 ], [ 349701.648100003600121, 258720.370900001376867 ], [ 349679.820000000298023, 258723.347500000149012 ], [ 349649.062100000679493, 258724.670400001108646 ], [ 349630.373599998652935, 258709.640700001269579 ], [ 349635.943999998271465, 258744.792399998754263 ], [ 349804.772600002586842, 258709.86600000038743 ], [ 349811.280699998140335, 258703.164299998432398 ], [ 349800.854299999773502, 258696.535100001841784 ], [ 349794.588600002229214, 258692.581000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104802012400", "MAP": "D9-8920-T014", "PARCEL_NAM": "4C-5-1", "ACRE": ".17", "LONGITUDE": -65.02477056, "LATITUDE": 18.34309575, "OBJECTID_1": 7238, "PARCEL_NO_": "104802012400", "Tax_Legal_": "4C-5 FORTUNA NO. 8 WEST END QUARTER", "Name": "DCPVI LLC", "Address": "821 S Linwood Ave", "City": "CUSHING", "State": "Oklahoma", "Zip": 74023, "Country": "United States", "Land_Value": 153600, "Improved_V": 227400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.543527571, "SHAPE_Area": 1375.6317878899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348900.397799998521805, 256975.021499998867512 ], [ 348829.148500002920628, 256996.456199999898672 ], [ 348849.27929999679327, 256999.787300001829863 ], [ 348912.238899998366833, 257010.021999999880791 ], [ 348900.397799998521805, 256975.021499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105104010100", "MAP": "D9-8922-T014", "PARCEL_NAM": "79", "ACRE": ".421", "LONGITUDE": -64.96534476, "LATITUDE": 18.33621862, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.393668593, "SHAPE_Area": 949.05293037499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355195.077600002288818, 256270.334300000220537 ], [ 355183.867499999701977, 256271.220100000500679 ], [ 355141.060999996960163, 256279.313400000333786 ], [ 355114.389700002968311, 256286.483399998396635 ], [ 355197.548000000417233, 256290.877500001341105 ], [ 355195.077600002288818, 256270.334300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105203030101", "MAP": "D9-8922-T014", "PARCEL_NAM": "70-X", "ACRE": ".189", "LONGITUDE": -64.96501829, "LATITUDE": 18.33583542, "OBJECTID_1": 8558, "PARCEL_NO_": "105203030101", "Tax_Legal_": "70T&70U LINDBERG BAY SOUTHSIDE QTR.", "Name": "BEACHCOMBER HOTEL", "Address": "PO Box 2579", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 880000, "Improved_V": 1148700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.928138867, "SHAPE_Area": 946.36339875700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355211.861900001764297, 256262.315099999308586 ], [ 355211.586499996483326, 256256.055399999022484 ], [ 355215.141800001263618, 256256.038899999111891 ], [ 355214.496899999678135, 256247.853300001472235 ], [ 355211.718800000846386, 256248.117899999022484 ], [ 355211.189599998295307, 256242.296999998390675 ], [ 355214.496899999678135, 256241.900199998170137 ], [ 355211.185900002717972, 256214.758000001311302 ], [ 355189.115299999713898, 256223.133699998259544 ], [ 355193.645700000226498, 256259.267700001597404 ], [ 355194.209100000560284, 256263.1114999987185 ], [ 355196.034100003540516, 256262.875900000333786 ], [ 355211.861900001764297, 256262.315099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105203030101", "MAP": "D3-375-T82", "PARCEL_NAM": "70-T-1", "ACRE": null, "LONGITUDE": -64.96409713, "LATITUDE": 18.33534801, "OBJECTID_1": 8558, "PARCEL_NO_": "105203030101", "Tax_Legal_": "70T&70U LINDBERG BAY SOUTHSIDE QTR.", "Name": "BEACHCOMBER HOTEL", "Address": "PO Box 2579", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 880000, "Improved_V": 1148700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.87145620699999, "SHAPE_Area": 1046.5467154400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355321.137599997222424, 256199.619899999350309 ], [ 355303.337700001895428, 256161.584800001233816 ], [ 355286.286399997770786, 256175.377500001341105 ], [ 355277.364799998700619, 256181.426100000739098 ], [ 355299.92679999768734, 256208.439300000667572 ], [ 355321.137599997222424, 256199.619899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "101403011100", "MAP": "D9-8926-T014", "PARCEL_NAM": "C-25-B/C-26", "ACRE": ".67", "LONGITUDE": -64.90918765000001, "LATITUDE": 18.36574452, "OBJECTID_1": 1108, "PARCEL_NO_": "101403011100", "Tax_Legal_": "LOVENLUND C-25-B(72) GT. NORTHSIDE", "Name": "SAMELSON, HEATHER A. & BRIAN D.", "Address": "27586 Hickory Blvd", "City": "Bonita Springs", "State": "Florida", "Zip": 34134, "Country": "United States", "Land_Value": 171500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.722333897, "SHAPE_Area": 3097.0959643199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361093.106200002133846, 259564.303399998694658 ], [ 361081.826800003647804, 259563.155699998140335 ], [ 361079.01410000026226, 259563.958999998867512 ], [ 361068.893500000238419, 259566.849500000476837 ], [ 361060.819600000977516, 259568.050000000745058 ], [ 361053.949600003659725, 259568.839200001209974 ], [ 361053.082299999892712, 259601.89130000025034 ], [ 361053.93639999628067, 259637.558400001376867 ], [ 361061.840599998831749, 259637.508099999278784 ], [ 361072.344200000166893, 259635.060899998992682 ], [ 361078.812700003385544, 259633.002900000661612 ], [ 361084.277500003576279, 259630.199000000953674 ], [ 361086.911799997091293, 259628.84739999845624 ], [ 361090.972099997103214, 259625.503100000321865 ], [ 361098.284699998795986, 259619.019000001251698 ], [ 361102.773000001907349, 259565.438000001013279 ], [ 361093.106200002133846, 259564.303399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303090700", "MAP": "D9-3377-T86", "PARCEL_NAM": "4B", "ACRE": null, "LONGITUDE": -64.9447376, "LATITUDE": 18.33989008, "OBJECTID_1": 10959, "PARCEL_NO_": "105303090700", "Tax_Legal_": "ALTONA&WELGUNST 4B KROMP QTR", "Name": "BOSCHULTE, LIONEL T.", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 34500, "Improved_V": 120800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.712291362200006, "SHAPE_Area": 370.72329596100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357339.238200001418591, 256697.975999999791384 ], [ 357331.871799997985363, 256694.905099999159575 ], [ 357331.49099999666214, 256695.926100000739098 ], [ 357326.685000002384186, 256708.813299998641014 ], [ 357345.683100000023842, 256714.193300001323223 ], [ 357365.079199999570847, 256708.748700000345707 ], [ 357348.728900000452995, 256701.932599999010563 ], [ 357339.238200001418591, 256697.975999999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303090200", "MAP": "D9-8929-T014", "PARCEL_NAM": "4C", "ACRE": ".11", "LONGITUDE": -64.94493024000001, "LATITUDE": 18.33981847, "OBJECTID_1": 10952, "PARCEL_NO_": "105303090200", "Tax_Legal_": "ALTONA 4 KROMP GADE", "Name": "BOSCHULTE, LOUIS & LIONEL", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 223200, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.148241886500003, "SHAPE_Area": 323.11186950199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357331.49099999666214, 256695.926100000739098 ], [ 357331.871799997985363, 256694.905099999159575 ], [ 357339.238200001418591, 256697.975999999791384 ], [ 357340.263300001621246, 256698.403299998492002 ], [ 357341.396799996495247, 256696.25450000166893 ], [ 357340.187399998307228, 256695.825300000607967 ], [ 357315.159000001847744, 256686.94310000166297 ], [ 357313.959100000560284, 256689.098299998790026 ], [ 357311.408900000154972, 256704.487300001084805 ], [ 357326.685000002384186, 256708.813299998641014 ], [ 357331.49099999666214, 256695.926100000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303090600", "MAP": "D9-3377-T86", "PARCEL_NAM": "4A", "ACRE": null, "LONGITUDE": -64.94439966, "LATITUDE": 18.33975566, "OBJECTID_1": 10958, "PARCEL_NO_": "105303090600", "Tax_Legal_": "ALTONA 4A CROWN PRINCE", "Name": "ETIENNE, ERICSON & SIMONICA", "Address": "PO Box 7888", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 24800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.395955665399995, "SHAPE_Area": 427.00463255300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357393.848600000143051, 256689.707800000905991 ], [ 357371.411200001835823, 256678.3739 ], [ 357362.732799999415874, 256693.931400001049042 ], [ 357386.11259999871254, 256703.792199999094009 ], [ 357392.472099997103214, 256692.343899998813868 ], [ 357393.848600000143051, 256689.707800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404010100", "MAP": "D9-7054-T002", "PARCEL_NAM": "38A-2", "ACRE": "4,750 sq ft", "LONGITUDE": -64.9242752, "LATITUDE": 18.33892911, "OBJECTID_1": 19317, "PARCEL_NO_": "105404010100", "Tax_Legal_": "TAARNEBERG 38A VILLA ORIENT", "Name": "BLUEBEARD'S CASTLE, INC", "Address": "8680 Baymeadows Rd E", "City": "Jacksonville", "State": "Florida", "Zip": 32256, "Country": "United States", "Land_Value": 484900, "Improved_V": 500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.836499385, "SHAPE_Area": 624.02303487999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359521.029100000858307, 256606.730200000107288 ], [ 359492.454099997878075, 256605.9364 ], [ 359492.011399999260902, 256629.103199999779463 ], [ 359520.235399998724461, 256627.526500001549721 ], [ 359521.029100000858307, 256606.730200000107288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404010100", "MAP": "D9-6444-T98", "PARCEL_NAM": "38A-1", "ACRE": "1,214 sq ft", "LONGITUDE": -64.92403899, "LATITUDE": 18.33910534, "OBJECTID_1": 19317, "PARCEL_NO_": "105404010100", "Tax_Legal_": "TAARNEBERG 38A VILLA ORIENT", "Name": "BLUEBEARD'S CASTLE, INC", "Address": "8680 Baymeadows Rd E", "City": "Jacksonville", "State": "Florida", "Zip": 32256, "Country": "United States", "Land_Value": 484900, "Improved_V": 500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.69442139, "SHAPE_Area": 900.17178712099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359543.707000002264977, 256621.874200001358986 ], [ 359525.47410000115633, 256615.144000001251698 ], [ 359520.235399998724461, 256627.526500001549721 ], [ 359511.724200002849102, 256646.207499999552965 ], [ 359519.417099997401237, 256648.452100001275539 ], [ 359523.12780000269413, 256649.661699999123812 ], [ 359526.755699999630451, 256651.100699998438358 ], [ 359530.286799997091293, 256652.763300001621246 ], [ 359533.707099996507168, 256654.643199998885393 ], [ 359537.0033999979496, 256656.732900001108646 ], [ 359538.993100002408028, 256658.140700001269579 ], [ 359543.058600001037121, 256661.137899998575449 ], [ 359543.707000002264977, 256621.874200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "5 of TRACT 1", "ACRE": "0.31", "LONGITUDE": -64.92473798, "LATITUDE": 18.33966746, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.706856665, "SHAPE_Area": 1385.30522036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359454.909100003540516, 256659.450599998235703 ], [ 359454.542900003492832, 256660.150400001555681 ], [ 359453.56530000269413, 256662.543999999761581 ], [ 359452.817299999296665, 256665.019000001251698 ], [ 359452.305699996650219, 256667.55350000038743 ], [ 359443.346900001168251, 256726.02140000090003 ], [ 359443.049800001084805, 256728.649000000208616 ], [ 359442.962600000202656, 256731.506299998611212 ], [ 359443.119099996984005, 256734.360599998384714 ], [ 359443.518200002610683, 256737.191300000995398 ], [ 359458.488099999725819, 256740.583200000226498 ], [ 359467.41780000180006, 256680.721099998801947 ], [ 359470.394400000572205, 256681.05180000141263 ], [ 359472.378799997270107, 256661.869500000029802 ], [ 359454.909100003540516, 256659.450599998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "4 of TRACT 1", "ACRE": "7,825 sq ft", "LONGITUDE": -64.92468496, "LATITUDE": 18.34034762, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.66572719300001, "SHAPE_Area": 792.95497702299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359448.01969999819994, 256748.875 ], [ 359449.513999998569489, 256751.872699998319149 ], [ 359450.786399997770786, 256754.971099998801947 ], [ 359451.829999998211861, 256758.153799999505281 ], [ 359452.639399997889996, 256761.403999999165535 ], [ 359453.210299998521805, 256764.704500000923872 ], [ 359458.282499998807907, 256802.081900000572205 ], [ 359473.040200002491474, 256799.122299998998642 ], [ 359464.771999999880791, 256746.536299999803305 ], [ 359448.01969999819994, 256748.875 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "3 of TRACT 1", "ACRE": "5,338 sq ft", "LONGITUDE": -64.92454842, "LATITUDE": 18.34085128, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.553446691, "SHAPE_Area": 681.251603714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359463.607699997723103, 256852.047699999064207 ], [ 359478.662600003182888, 256853.361999999731779 ], [ 359486.930900000035763, 256807.390599999576807 ], [ 359473.370999999344349, 256805.075500000268221 ], [ 359463.607699997723103, 256852.047699999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "6 of TRACT 1", "ACRE": "7,452", "LONGITUDE": -64.92460336000001, "LATITUDE": 18.3414952, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.93109163299999, "SHAPE_Area": 1096.5391757699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359477.534000001847744, 256930.2972999997437 ], [ 359479.895300000905991, 256876.513799998909235 ], [ 359477.159800000488758, 256875.683600001037121 ], [ 359474.5050999969244, 256874.6233000010252 ], [ 359471.950300000607967, 256873.340799998492002 ], [ 359469.51410000026226, 256871.845300000160933 ], [ 359467.214100003242493, 256870.147700000554323 ], [ 359465.06700000166893, 256868.260400000959635 ], [ 359463.190399996936321, 256866.303100001066923 ], [ 359460.141800001263618, 256878.497499998658895 ], [ 359459.942199997603893, 256910.5489999987185 ], [ 359459.48589999973774, 256931.089000001549721 ], [ 359477.534000001847744, 256930.2972999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "2 of TRACT 1", "ACRE": "1,279 sq ft", "LONGITUDE": -64.92417258, "LATITUDE": 18.34049775, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.266136729300001, "SHAPE_Area": 210.25001655200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359523.64190000295639, 256797.468699999153614 ], [ 359523.311200000345707, 256783.9087999984622 ], [ 359507.436099998652935, 256784.901000000536442 ], [ 359507.698299996554852, 256797.748399998992682 ], [ 359523.64190000295639, 256797.468699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "1 of TRACT 1", "ACRE": "4,531 sq ft", "LONGITUDE": -64.92398587, "LATITUDE": 18.34073057, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.510156104, "SHAPE_Area": 522.21693835999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359541.332500003278255, 256836.854899998754263 ], [ 359540.839800000190735, 256817.643199998885393 ], [ 359545.139300003647804, 256817.643199998885393 ], [ 359545.470100000500679, 256813.013000000268221 ], [ 359541.501299999654293, 256812.351500000804663 ], [ 359541.501299999654293, 256797.799400001764297 ], [ 359528.272100001573563, 256798.130199998617172 ], [ 359527.947400003671646, 256834.493400000035763 ], [ 359540.784000001847744, 256837.642499998211861 ], [ 359541.332500003278255, 256836.854899998754263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "9 of TRACT 1", "ACRE": "3,395 sq ft", "LONGITUDE": -64.92399747, "LATITUDE": 18.34014335, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.060231978199994, "SHAPE_Area": 448.41800867000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359528.272100001573563, 256765.387899998575449 ], [ 359539.973800003528595, 256766.305700000375509 ], [ 359540.509099997580051, 256755.465999998152256 ], [ 359546.131499998271465, 256755.465999998152256 ], [ 359545.800800003111362, 256741.575399998575449 ], [ 359523.311200000345707, 256741.244600001722574 ], [ 359523.311200000345707, 256756.127500001341105 ], [ 359527.941399998962879, 256756.458200000226498 ], [ 359528.272100001573563, 256765.387899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "8 of TRACT 1", "ACRE": "8,953 sq ft", "LONGITUDE": -64.92369758, "LATITUDE": 18.34022077, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.638173604, "SHAPE_Area": 1153.5988424899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359545.800800003111362, 256741.575399998575449 ], [ 359546.131499998271465, 256755.465999998152256 ], [ 359556.714900001883507, 256755.465999998152256 ], [ 359569.282600000500679, 256780.932199999690056 ], [ 359568.951899997889996, 256787.546799998730421 ], [ 359567.298199996352196, 256792.838500000536442 ], [ 359571.92849999666214, 256796.807199999690056 ], [ 359582.842500001192093, 256787.877500001341105 ], [ 359586.811300002038479, 256779.278599999845028 ], [ 359574.243600003421307, 256754.473799999803305 ], [ 359570.274800002574921, 256751.49720000103116 ], [ 359566.967500001192093, 256750.505100000649691 ], [ 359567.298199996352196, 256732.976399999111891 ], [ 359546.792999997735023, 256731.984200000762939 ], [ 359545.800800003111362, 256741.575399998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "10 of TRACT 1", "ACRE": "4,921 sq ft", "LONGITUDE": -64.92392219, "LATITUDE": 18.34046329, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.3348787149, "SHAPE_Area": 393.270714779 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359539.391699999570847, 256778.093699999153614 ], [ 359528.602799996733665, 256778.286400001496077 ], [ 359528.343400001525879, 256793.855099998414516 ], [ 359557.376299999654293, 256794.822900000959635 ], [ 359557.376299999654293, 256782.255100000649691 ], [ 359539.186200000345707, 256782.255100000649691 ], [ 359539.391699999570847, 256778.093699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "11 of TRACT 1", "ACRE": "1,440 sq ft", "LONGITUDE": -64.92402101, "LATITUDE": 18.34032394, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.226335684799999, "SHAPE_Area": 194.19662856400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359539.973800003528595, 256766.305700000375509 ], [ 359528.272100001573563, 256765.387899998575449 ], [ 359523.972599998116493, 256765.718600001186132 ], [ 359523.972599998116493, 256777.624899998307228 ], [ 359528.602799996733665, 256778.286400001496077 ], [ 359539.391699999570847, 256778.093699999153614 ], [ 359539.973800003528595, 256766.305700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031400", "MAP": "D9-8933-T014", "PARCEL_NAM": "7-1", "ACRE": "2.5", "LONGITUDE": -64.97151229000001, "LATITUDE": 18.36237667, "OBJECTID_1": 451, "PARCEL_NO_": "101103031400", "Tax_Legal_": "NELTJBERG/EASTERN PT. 7 LT. NORTHSIDE", "Name": "BNR PARTNERSHIP", "Address": "6539 Clucksberg", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 196700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 427.27748050999998, "SHAPE_Area": 9598.8569841600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354543.046300001442432, 259190.121800001710653 ], [ 354531.715599998831749, 259103.878499999642372 ], [ 354500.870600000023842, 259111.17119999974966 ], [ 354492.823700003325939, 259109.20549999922514 ], [ 354470.336800001561642, 259098.46680000051856 ], [ 354467.009099997580051, 259110.471900001168251 ], [ 354461.606600001454353, 259176.710999999195337 ], [ 354446.063699997961521, 259202.759399998933077 ], [ 354432.835400000214577, 259241.070199999958277 ], [ 354446.539099998772144, 259241.604499999433756 ], [ 354457.031999997794628, 259240.423799999058247 ], [ 354473.192400000989437, 259236.545299999415874 ], [ 354498.279799997806549, 259225.984900001436472 ], [ 354511.258100003004074, 259217.01410000026226 ], [ 354530.766000002622604, 259198.808600001037121 ], [ 354543.046300001442432, 259190.121800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101004010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97063519, "LATITUDE": 18.36305341, "OBJECTID_1": 338, "PARCEL_NO_": "101004010100", "Tax_Legal_": "9 REM. NELTJEBERG (WESTERN SECTION) NO. 6 LITTLE NORTHSIDE QUARTER", "Name": "BOSCHULTE, LIONEL THEODORE HELM", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 642300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1026.37353773, "SHAPE_Area": 3748.1332284199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354772.398900002241135, 259091.740299999713898 ], [ 354770.428900003433228, 259084.035399999469519 ], [ 354761.168499998748302, 259091.538699999451637 ], [ 354760.819700002670288, 259093.481100000441074 ], [ 354759.017899997532368, 259100.506599999964237 ], [ 354755.699100002646446, 259108.9989 ], [ 354749.704199999570847, 259119.526000000536442 ], [ 354744.917199999094009, 259126.831500001251698 ], [ 354737.45889999717474, 259135.584399998188019 ], [ 354729.130400002002716, 259142.274099998176098 ], [ 354716.052599996328354, 259151.569600000977516 ], [ 354707.733499996364117, 259157.084300000220537 ], [ 354695.267899997532368, 259163.740899998694658 ], [ 354684.575400002300739, 259170.411699999123812 ], [ 354675.369800001382828, 259175.919399999082088 ], [ 354666.166599996387959, 259181.133400000631809 ], [ 354654.594200000166893, 259186.954700000584126 ], [ 354643.017800003290176, 259193.285900000482798 ], [ 354635.592399999499321, 259197.926600001752377 ], [ 354626.072599999606609, 259205.781800001859665 ], [ 354612.089500002563, 259217.420000001788139 ], [ 354594.825300000607967, 259232.850900001823902 ], [ 354586.178000003099442, 259242.475499998778105 ], [ 354576.930299997329712, 259253.270399998873472 ], [ 354565.890699997544289, 259266.40089999884367 ], [ 354561.115500003099442, 259272.237799998372793 ], [ 354556.943199999630451, 259276.610700000077486 ], [ 354550.402000002563, 259281.552200000733137 ], [ 354540.584399998188019, 259289.698699999600649 ], [ 354536.128200002014637, 259292.600600000470877 ], [ 354526.331699997186661, 259298.10359999909997 ], [ 354513.877999998629093, 259303.291700001806021 ], [ 354502.89469999819994, 259309.372699998319149 ], [ 354496.651399999856949, 259314.022900000214577 ], [ 354488.6233000010252, 259320.127500001341105 ], [ 354483.866999998688698, 259323.614500001072884 ], [ 354476.153200000524521, 259327.371599998325109 ], [ 354462.20549999922514, 259334.603999998420477 ], [ 354444.094800002872944, 259345.034400001168251 ], [ 354437.563100002706051, 259348.800999999046326 ], [ 354428.374099999666214, 259352.252599999308586 ], [ 354415.908699996769428, 259358.909400001168251 ], [ 354402.528599999845028, 259369.083799999207258 ], [ 354392.396799996495247, 259379.577899999916553 ], [ 354389.415899999439716, 259382.785300001502037 ], [ 354381.206500001251698, 259390.949799999594688 ], [ 354379.495300002396107, 259395.8114 ], [ 354385.958200000226498, 259396.83500000089407 ], [ 354397.601387582486495, 259385.498277450562455 ], [ 354409.664899997413158, 259374.609900001436472 ], [ 354420.137088414048776, 259366.58380080506322 ], [ 354431.043300002813339, 259359.15819999948144 ], [ 354444.760088638809975, 259352.613995417021215 ], [ 354458.136699996888638, 259345.399900000542402 ], [ 354468.592272904759739, 259340.221261682570912 ], [ 354478.761618094926234, 259334.500971649482381 ], [ 354488.616700001060963, 259328.254799999296665 ], [ 354494.290737000468653, 259324.582262848940445 ], [ 354499.663702054007445, 259320.481839514133753 ], [ 354504.703400000929832, 259315.978100001811981 ], [ 354515.109860285883769, 259310.389582393952878 ], [ 354525.771944615058601, 259305.305695842136629 ], [ 354536.665200002491474, 259300.738099999725819 ], [ 354545.585695085464977, 259295.299189945391845 ], [ 354554.134912572859321, 259289.293537986057345 ], [ 354562.276900000870228, 259282.746399998664856 ], [ 354568.913836259045638, 259273.667322970257374 ], [ 354575.932588095718529, 259264.880077370034996 ], [ 354583.320339333033189, 259256.400708629487781 ], [ 354591.06360000371933, 259248.244699999690056 ], [ 354603.454694753745571, 259235.784638059179997 ], [ 354616.19997568090912, 259223.68710993352579 ], [ 354629.288840223860461, 259211.96217933067237 ], [ 354642.710400000214577, 259200.619600001722574 ], [ 354650.168836013530381, 259195.850201154884417 ], [ 354657.935810716240667, 259191.601726476481417 ], [ 354665.974998343037441, 259187.894045877212193 ], [ 354674.248800002038479, 259184.744500000029802 ], [ 354687.89172604563646, 259177.719386418641079 ], [ 354701.167212012631353, 259170.022430903482018 ], [ 354714.042199999094009, 259161.672800000756979 ], [ 354731.995101160020567, 259148.353032213752158 ], [ 354749.602200001478195, 259134.5793999992311 ], [ 354755.141252428118605, 259126.569999515078962 ], [ 354760.206656902504619, 259118.252952237904537 ], [ 354764.781374716083519, 259109.656234560417943 ], [ 354768.850017703021877, 259100.808763614157215 ], [ 354772.398900002241135, 259091.740299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602022500", "MAP": "A9-477-T95", "PARCEL_NAM": "5", "ACRE": ".513", "LONGITUDE": -64.97035292, "LATITUDE": 18.36305248, "OBJECTID_1": 2435, "PARCEL_NO_": "102602022500", "Tax_Legal_": "NELTJEBERG 5 WEST PORTION LITTLE NORTHSIDE", "Name": "BOSCHULTE, JAMES", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48600, "Improved_V": 182300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.26068575299999, "SHAPE_Area": 1199.5851925899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354636.883000001311302, 259245.092500001192093 ], [ 354617.816200003027916, 259222.202100001275539 ], [ 354613.608900003135204, 259226.090399999171495 ], [ 354602.192554298730101, 259237.021318217273802 ], [ 354591.06360000371933, 259248.244699999690056 ], [ 354614.347000002861023, 259274.491399999707937 ], [ 354634.087600000202656, 259248.73930000141263 ], [ 354636.883000001311302, 259245.092500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501015500", "MAP": "D9-6467-T000", "PARCEL_NAM": "4A-2", "ACRE": "0.25", "LONGITUDE": -64.91224351, "LATITUDE": 18.34717542, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.941486922, "SHAPE_Area": 1458.80399296 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360778.569700002670288, 257508.050500001758337 ], [ 360758.180500000715256, 257511.209300000220537 ], [ 360757.805100001394749, 257572.213100001215935 ], [ 360786.684600003063679, 257563.640399999916553 ], [ 360778.569700002670288, 257508.050500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8803952, "LATITUDE": 18.32247848, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 417.67612040300003, "SHAPE_Area": 948.26618335399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364076.865599997341633, 254815.884199999272823 ], [ 364094.620600000023842, 254820.58390000090003 ], [ 364101.36089999973774, 254822.368000000715256 ], [ 364127.329000003635883, 254829.241799999028444 ], [ 364145.913999997079372, 254834.161200001835823 ], [ 364161.443099997937679, 254838.271699998527765 ], [ 364189.355099998414516, 254845.660000000149012 ], [ 364190.689900003373623, 254843.214000001549721 ], [ 364191.499399997293949, 254841.730700001120567 ], [ 364194.358199998736382, 254836.49210000038147 ], [ 364206.409699998795986, 254841.657000001519918 ], [ 364212.81530000269413, 254846.986699998378754 ], [ 364226.328100003302097, 254859.313000001013279 ], [ 364241.794200003147125, 254873.420899998396635 ], [ 364252.424900002777576, 254883.118200000375509 ], [ 364253.660300001502037, 254879.8293999992311 ], [ 364250.425999999046326, 254877.166200000792742 ], [ 364248.345799997448921, 254874.349800001829863 ], [ 364247.829899996519089, 254875.028400000184774 ], [ 364243.273999996483326, 254871.276900000870228 ], [ 364225.471900001168251, 254853.4989 ], [ 364214.411200001835823, 254843.240499999374151 ], [ 364196.140600003302097, 254831.17850000038743 ], [ 364192.849500000476837, 254829.157000001519918 ], [ 364190.548500001430511, 254834.337999999523163 ], [ 364186.085400000214577, 254840.196400001645088 ], [ 364179.078900001943111, 254838.210799999535084 ], [ 364165.922499999403954, 254834.482299998402596 ], [ 364150.722800001502037, 254830.174699999392033 ], [ 364129.870200000703335, 254824.265099998563528 ], [ 364103.935599997639656, 254816.915199998766184 ], [ 364077.95099999755621, 254809.551199998706579 ], [ 364076.865599997341633, 254815.884199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91657518, "LATITUDE": 18.32967413, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.75506487000001, "SHAPE_Area": 266.206734337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360299.6554000005126, 255586.92850000038743 ], [ 360293.226400002837181, 255584.342799998819828 ], [ 360297.953100003302097, 255592.634300000965595 ], [ 360298.787900000810623, 255594.098600000143051 ], [ 360301.167300000786781, 255598.762099999934435 ], [ 360365.604000002145767, 255607.311099998652935 ], [ 360368.05349999666214, 255603.742499999701977 ], [ 360331.799999997019768, 255599.857200000435114 ], [ 360302.005999997258186, 255594.969300001859665 ], [ 360301.425899997353554, 255592.9847999997437 ], [ 360299.6554000005126, 255586.92850000038743 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107401030200", "MAP": "D9-6396-T98", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90848825, "LATITUDE": 18.32571305, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.42981276099999, "SHAPE_Area": 637.695128103 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361215.98309999704361, 255173.929800000041723 ], [ 361199.024400003254414, 255167.112799998372793 ], [ 361186.456699997186661, 255161.821199998259544 ], [ 361176.204000003635883, 255158.183100000023842 ], [ 361167.605099998414516, 255156.529500000178814 ], [ 361159.336800001561642, 255153.55290000140667 ], [ 361156.402300000190735, 255163.30970000103116 ], [ 361175.7195999994874, 255167.47859999909997 ], [ 361178.111599996685982, 255170.664599999785423 ], [ 361177.262100003659725, 255175.723900001496077 ], [ 361182.082000002264977, 255177.874299999326468 ], [ 361184.526100002229214, 255174.938900001347065 ], [ 361190.18469999730587, 255173.296500001102686 ], [ 361202.234399996697903, 255178.672499999403954 ], [ 361214.307499997317791, 255181.304400000721216 ], [ 361220.74719999730587, 255182.623700000345707 ], [ 361215.98309999704361, 255173.929800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9587337, "LATITUDE": 18.31286785, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.54781411299999, "SHAPE_Area": 443.861941909 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355894.93639999628067, 253732.94029999896884 ], [ 355905.423900000751019, 253732.392799999564886 ], [ 355899.942800000309944, 253726.459699999541044 ], [ 355890.523599997162819, 253690.476300001144409 ], [ 355864.276900000870228, 253673.542899999767542 ], [ 355860.995999999344349, 253677.247099999338388 ], [ 355883.538599997758865, 253691.640500001609325 ], [ 355894.93639999628067, 253732.94029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402098500", "MAP": "D9-8867-T014", "PARCEL_NAM": "B-10B", "ACRE": null, "LONGITUDE": -64.92081562, "LATITUDE": 18.34501884, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.46432792799999, "SHAPE_Area": 1029.39464567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359821.535899996757507, 257280.514899998903275 ], [ 359870.395099997520447, 257277.233800001442432 ], [ 359882.748199999332428, 257347.839699998497963 ], [ 359882.700800001621246, 257347.964000001549721 ], [ 359889.400200001895428, 257346.003499999642372 ], [ 359879.254699997603893, 257274.652100000530481 ], [ 359878.196000002324581, 257268.710700001567602 ], [ 359815.792700000107288, 257273.577799998223782 ], [ 359820.475400000810623, 257279.286200001835823 ], [ 359821.535899996757507, 257280.514899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402098500", "MAP": "D9-8867-T014", "PARCEL_NAM": "B-10A", "ACRE": ".37", "LONGITUDE": -64.92083016, "LATITUDE": 18.34539648, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.062477892, "SHAPE_Area": 1199.1705830799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359874.468000002205372, 257300.513000000268221 ], [ 359854.724600002169609, 257329.089600000530481 ], [ 359848.68860000371933, 257339.506000000983477 ], [ 359838.292000003159046, 257360.959699999541044 ], [ 359882.700800001621246, 257347.964000001549721 ], [ 359882.748199999332428, 257347.839699998497963 ], [ 359874.468000002205372, 257300.513000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604020900", "MAP": "A9-797-T014", "PARCEL_NAM": "REM 41A-1", "ACRE": "1.0", "LONGITUDE": -64.96775077, "LATITUDE": 18.35113618, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 470.183617459, "SHAPE_Area": 4501.5930740599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354908.52929999679327, 258037.645899999886751 ], [ 354909.016699999570847, 258020.558600001037121 ], [ 354914.308300003409386, 258021.087799999862909 ], [ 354907.82599999755621, 257828.867600001394749 ], [ 354884.92620000243187, 257830.035199999809265 ], [ 354894.582299999892712, 258046.0489999987185 ], [ 354908.52929999679327, 258037.645899999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501023400", "MAP": "D9-8890-T014", "PARCEL_NAM": "62-3B", "ACRE": ".15", "LONGITUDE": -64.91542518, "LATITUDE": 18.3427458, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.42339502499999, "SHAPE_Area": 817.59991231499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360447.628300003707409, 257018.690099999308586 ], [ 360433.816299997270107, 257017.59569999948144 ], [ 360428.518299996852875, 257076.185499999672174 ], [ 360442.430399999022484, 257077.246599998325109 ], [ 360447.628300003707409, 257018.690099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601027200", "MAP": "D9-9257-T018", "PARCEL_NAM": "S REM", "ACRE": "1.00", "LONGITUDE": -64.98126639, "LATITUDE": 18.36191672, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.98689103499999, "SHAPE_Area": 3691.21091574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353467.793799996376038, 259060.409200001507998 ], [ 353467.749799996614456, 259060.614199999719858 ], [ 353448.898199997842312, 259095.671599999070168 ], [ 353421.262800000607967, 259148.102299999445677 ], [ 353428.088899999856949, 259149.391800001263618 ], [ 353437.706500001251698, 259151.321299999952316 ], [ 353444.534999996423721, 259152.302000001072884 ], [ 353453.851700000464916, 259152.993599999696016 ], [ 353466.275600001215935, 259153.709800001233816 ], [ 353472.041199997067451, 259153.75560000166297 ], [ 353496.023100003600121, 259076.284200001507998 ], [ 353490.890799999237061, 259073.785399999469519 ], [ 353467.793799996376038, 259060.409200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "10260126700", "MAP": "A9-798-T014", "PARCEL_NAM": "P", "ACRE": "2.0", "LONGITUDE": -64.98315981, "LATITUDE": 18.36258584, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 403.51602790200002, "SHAPE_Area": 7838.0545675399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353316.239100001752377, 259138.891600001603365 ], [ 353181.529500000178814, 259183.660900000482798 ], [ 353194.229500003159046, 259230.492199998348951 ], [ 353234.314000003039837, 259218.982799999415874 ], [ 353343.240299999713898, 259190.724800001829863 ], [ 353342.048799999058247, 259184.229200001806021 ], [ 353336.847300000488758, 259173.99549999833107 ], [ 353330.094700001180172, 259163.440699998289347 ], [ 353316.239100001752377, 259138.891600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701020100", "MAP": "A9-565-T001", "PARCEL_NAM": "REM 53-1A", "ACRE": null, "LONGITUDE": -64.87714483000001, "LATITUDE": 18.34658238, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.87099908900001, "SHAPE_Area": 3945.0485460199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364513.93469999730587, 257480.622800000011921 ], [ 364460.245999999344349, 257458.515700001269579 ], [ 364460.307700000703335, 257488.96229999884963 ], [ 364442.653099998831749, 257518.119100000709295 ], [ 364474.495099999010563, 257543.104400001466274 ], [ 364494.521600000560284, 257558.678199999034405 ], [ 364513.93469999730587, 257480.622800000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702043000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8727213, "LATITUDE": 18.34395838, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.27861985300001, "SHAPE_Area": 223.511894356 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364954.074500001966953, 257189.284000001847744 ], [ 364950.054700002074242, 257187.715399999171495 ], [ 364950.55799999833107, 257218.319699998944998 ], [ 364949.284299999475479, 257227.570700000971556 ], [ 364947.757100000977516, 257233.973000001162291 ], [ 364943.225400000810623, 257252.971000000834465 ], [ 364946.755400002002716, 257252.794599998742342 ], [ 364949.315399996936321, 257240.919199999421835 ], [ 364952.021300002932549, 257228.367499999701977 ], [ 364954.046800002455711, 257218.971700001507998 ], [ 364954.44370000064373, 257214.738299999386072 ], [ 364954.57599999755621, 257211.431000001728535 ], [ 364954.31139999628067, 257206.668499998748302 ], [ 364953.517700001597404, 257197.672699999064207 ], [ 364954.074500001966953, 257189.284000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98558913, "LATITUDE": 18.35873349, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.18123879000001, "SHAPE_Area": 512.01769693799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352982.082400001585484, 258787.196600001305342 ], [ 352978.762699998915195, 258790.094700001180172 ], [ 352985.486599996685982, 258792.267099998891354 ], [ 352990.672499999403954, 258789.197999998927116 ], [ 352995.223300002515316, 258784.647100001573563 ], [ 353004.536700002849102, 258773.217099998146296 ], [ 353008.664200000464916, 258765.914599999785423 ], [ 353016.390000000596046, 258751.838700000196695 ], [ 353018.506700001657009, 258748.663699999451637 ], [ 353021.387900002300739, 258741.556099999696016 ], [ 353024.685099996626377, 258733.139400001615286 ], [ 353031.055399999022484, 258709.673799999058247 ], [ 353029.460699997842312, 258707.549899999052286 ], [ 353022.861000001430511, 258725.016600001603365 ], [ 353020.411499999463558, 258728.585200000554323 ], [ 353018.748499996960163, 258734.482200000435114 ], [ 353012.197300001978874, 258746.249800000339746 ], [ 353010.566699996590614, 258748.34739999845624 ], [ 353003.151699997484684, 258766.862900000065565 ], [ 352997.448100000619888, 258773.782299999147654 ], [ 352982.082400001585484, 258787.196600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86473444000001, "LATITUDE": 18.32545596, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 432.72046142800002, "SHAPE_Area": 1476.9755471000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365811.138800002634525, 255256.034099999815226 ], [ 365811.342008469917346, 255253.180378020042554 ], [ 365811.233199998736382, 255250.32149999961257 ], [ 365810.813299998641014, 255247.018699999898672 ], [ 365809.930631747934967, 255237.956594527437119 ], [ 365809.438228467071895, 255228.864928132097702 ], [ 365809.336999997496605, 255219.760499998927116 ], [ 365809.539899997413158, 255212.433100000023842 ], [ 365808.369235612917691, 255204.981003967463039 ], [ 365807.775974789401516, 255197.460882161569316 ], [ 365807.763641615980305, 255189.917405624029925 ], [ 365808.332309354213066, 255182.395384128234582 ], [ 365809.47860000282526, 255174.939500000327826 ], [ 365820.546599999070168, 255145.334699999541044 ], [ 365822.880400002002716, 255140.501400001347065 ], [ 365824.300160349113867, 255137.001221886428539 ], [ 365825.531499996781349, 255133.430399999022484 ], [ 365829.224899999797344, 255117.817899998277426 ], [ 365829.436599999666214, 255100.672899998724461 ], [ 365831.616999998688698, 255081.673000000417233 ], [ 365822.762000001966953, 255079.911800000816584 ], [ 365823.223200000822544, 255087.407600000500679 ], [ 365823.387500002980232, 255090.077199999243021 ], [ 365822.600299999117851, 255102.919700000435114 ], [ 365822.42509999871254, 255106.07039999961853 ], [ 365822.046800002455711, 255108.991399999707937 ], [ 365820.997007345955353, 255115.364537848596228 ], [ 365819.646999999880791, 255121.680900000035763 ], [ 365818.188426779874135, 255127.869217484723777 ], [ 365816.507600001990795, 255134.000900000333786 ], [ 365814.909800000488758, 255139.150199998170137 ], [ 365814.27589999884367, 255141.233600001782179 ], [ 365810.241109603375662, 255151.354339237703243 ], [ 365806.577291764260735, 255161.615203482913785 ], [ 365803.289300002157688, 255172.002599999308586 ], [ 365802.501999996602535, 255174.703499998897314 ], [ 365801.865751046687365, 255189.644712620414793 ], [ 365801.968267799820751, 255204.599114569136873 ], [ 365802.809299997985363, 255219.530200000852346 ], [ 365803.739218242117204, 255233.024444191716611 ], [ 365804.018899999558926, 255246.547800000756979 ], [ 365804.016800001263618, 255247.041999999433756 ], [ 365803.95719999819994, 255251.565099999308586 ], [ 365803.54932817054214, 255254.529102984961355 ], [ 365802.750831410172395, 255257.412516942451475 ], [ 365801.575900003314018, 255260.164099998772144 ], [ 365800.712391929759178, 255261.36709073203383 ], [ 365799.68259660579497, 255262.431212195078842 ], [ 365798.508556112530641, 255263.333687578473473 ], [ 365797.215400002896786, 255264.05519999936223 ], [ 365795.725825166096911, 255264.610955358773936 ], [ 365794.167599998414516, 255264.926600001752377 ], [ 365791.7327156906249, 255264.870278563903412 ], [ 365789.338701946719084, 255264.422470691672061 ], [ 365787.048087392875459, 255263.594872563087847 ], [ 365784.920699998736382, 255262.409099999815226 ], [ 365786.32880000025034, 255264.554299999028444 ], [ 365790.492899999022484, 255270.898400001227856 ], [ 365794.443099997937679, 255273.240299999713898 ], [ 365797.713799998164177, 255275.179400000721216 ], [ 365802.935300000011921, 255270.10869999974966 ], [ 365807.634900003671646, 255266.196600001305342 ], [ 365809.266714787227102, 255262.981043838924961 ], [ 365810.442086366587318, 255259.572067075787345 ], [ 365811.138800002634525, 255256.034099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86382265, "LATITUDE": 18.32619801, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 386.84756969699998, "SHAPE_Area": 1221.5710346799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365963.864500001072884, 255270.628600001335144 ], [ 365974.6997719106148, 255271.338411299569998 ], [ 365985.496294972777832, 255272.496875456068665 ], [ 365996.235500000417233, 255274.102000001817942 ], [ 365999.400399997830391, 255269.802499998360872 ], [ 365991.151100002229214, 255267.671399999409914 ], [ 365981.022399999201298, 255265.054699998348951 ], [ 365976.018500000238419, 255263.761999998241663 ], [ 365966.543600000441074, 255262.839400000870228 ], [ 365949.476700000464916, 255261.177499998360872 ], [ 365938.150600001215935, 255260.074599999934435 ], [ 365926.222499996423721, 255259.605099998414516 ], [ 365891.405000001192093, 255257.283399999141693 ], [ 365875.74213777174009, 255256.361291743116453 ], [ 365860.066600002348423, 255255.688200000673532 ], [ 365837.581299997866154, 255253.061200000345707 ], [ 365828.774099998176098, 255252.104800000786781 ], [ 365811.233199998736382, 255250.32149999961257 ], [ 365811.342008469917346, 255253.180378020042554 ], [ 365811.138800002634525, 255256.034099999815226 ], [ 365830.258599996566772, 255257.940799999982119 ], [ 365841.540399998426437, 255259.042199999094009 ], [ 365853.451999999582767, 255260.186099998652935 ], [ 365873.15259999781847, 255262.89979999884963 ], [ 365886.789599999785423, 255265.213199999183416 ], [ 365905.104392365319654, 255265.153871632646769 ], [ 365923.405806111521088, 255265.85629183187848 ], [ 365941.662172313896008, 255267.319245122926077 ], [ 365959.841899998486042, 255269.540199998766184 ], [ 365963.864500001072884, 255270.628600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "GUT", "ACRE": null, "LONGITUDE": -64.86489904, "LATITUDE": 18.32427371, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 806.77991167899995, "SHAPE_Area": 2862.5643976000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365772.69030000269413, 254889.644200000911951 ], [ 365782.550800003111362, 254922.923500001430511 ], [ 365775.188199996948242, 254926.765799999237061 ], [ 365779.673500001430511, 254931.793600000441074 ], [ 365785.254799999296665, 254939.227600000798702 ], [ 365790.796499997377396, 254951.305300001055002 ], [ 365793.922799997031689, 254962.940999999642372 ], [ 365795.752999998629093, 254994.034299999475479 ], [ 365791.77139999717474, 255003.746899999678135 ], [ 365803.921899996697903, 255038.828600000590086 ], [ 365804.980200000107288, 255043.485300000756979 ], [ 365805.615199998021126, 255050.258699998259544 ], [ 365804.980200000107288, 255056.820300001651049 ], [ 365803.286899998784065, 255063.381999999284744 ], [ 365800.746899999678135, 255075.447000000625849 ], [ 365799.053599998354912, 255081.373700000345707 ], [ 365799.26519999653101, 255106.138799998909235 ], [ 365799.26519999653101, 255137.253800000995398 ], [ 365796.936899997293949, 255150.377199999988079 ], [ 365786.353500001132488, 255185.302299998700619 ], [ 365783.813500002026558, 255197.578999999910593 ], [ 365782.966899998486042, 255207.315600000321865 ], [ 365783.17849999666214, 255221.708999998867512 ], [ 365785.083499997854233, 255240.75899999961257 ], [ 365785.930200003087521, 255246.897399999201298 ], [ 365790.196400001645088, 255264.629200000315905 ], [ 365792.172133190382738, 255264.909652100177482 ], [ 365794.167599998414516, 255264.926600001752377 ], [ 365795.725825166038703, 255264.610955358512001 ], [ 365797.215400002896786, 255264.05519999936223 ], [ 365798.508556112356018, 255263.333687578269746 ], [ 365799.682596605503932, 255262.431212194787804 ], [ 365800.712391929584555, 255261.367090731859207 ], [ 365801.575900003314018, 255260.164099998772144 ], [ 365803.258699998259544, 255255.761199999600649 ], [ 365793.929399996995926, 255255.866799999028444 ], [ 365791.415899999439716, 255239.594900000840425 ], [ 365790.311300002038479, 255239.647799998521805 ], [ 365788.762599997222424, 255219.159499999135733 ], [ 365787.1891999989748, 255198.901900000870228 ], [ 365787.295000001788139, 255194.562699999660254 ], [ 365792.057499997317791, 255174.24269999936223 ], [ 365802.831399999558926, 255149.668099999427795 ], [ 365804.532200001180172, 255137.391100000590086 ], [ 365804.631499998271465, 255135.456900000572205 ], [ 365804.74040000140667, 255133.336599998176098 ], [ 365805.498999997973442, 255118.561299998313189 ], [ 365805.516500003635883, 255116.500900000333786 ], [ 365806.097699999809265, 255108.512899998575449 ], [ 365806.634800001978874, 255101.130199998617172 ], [ 365806.793499998748302, 255098.987100001424551 ], [ 365804.571000002324581, 255094.700800001621246 ], [ 365808.848399996757507, 255079.980000000447035 ], [ 365810.682899996638298, 255073.666400000452995 ], [ 365808.728500001132488, 255041.425500001758337 ], [ 365808.569799996912479, 255040.398299999535084 ], [ 365808.441799998283386, 255039.569699998944998 ], [ 365807.107699997723103, 255030.936500001698732 ], [ 365807.055399999022484, 255029.253299999982119 ], [ 365807.902099996805191, 255020.786699999123812 ], [ 365806.790899999439716, 255013.563499998301268 ], [ 365806.155900001525879, 255002.5304000005126 ], [ 365804.654700003564358, 254977.203200001269579 ], [ 365804.448899999260902, 254973.731699999421835 ], [ 365803.748199999332428, 254961.910100001841784 ], [ 365802.738799996674061, 254955.134100001305342 ], [ 365800.414399996399879, 254939.5304000005126 ], [ 365800.119999997317791, 254937.554099999368191 ], [ 365792.976300001144409, 254922.949099998921156 ], [ 365783.023299999535084, 254905.622400000691414 ], [ 365780.826999999582767, 254888.098600000143051 ], [ 365775.135899998247623, 254889.17960000038147 ], [ 365772.69030000269413, 254889.644200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86489761, "LATITUDE": 18.3240623, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.790542807899996, "SHAPE_Area": 198.51233942799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365804.583599999547005, 255041.740200001746416 ], [ 365803.921899996697903, 255038.828600000590086 ], [ 365791.77139999717474, 255003.746899999678135 ], [ 365787.883000001311302, 255009.332100000232458 ], [ 365789.47410000115633, 255011.878299999982119 ], [ 365793.397699996829033, 255024.5760000012815 ], [ 365793.379799999296665, 255026.686799999326468 ], [ 365794.976199999451637, 255028.599700000137091 ], [ 365794.96000000089407, 255030.499400001019239 ], [ 365796.556500002741814, 255032.412300001829863 ], [ 365798.131300002336502, 255036.858199998736382 ], [ 365798.614100001752377, 255038.778799999505281 ], [ 365799.992200002074242, 255044.260400000959635 ], [ 365804.583599999547005, 255041.740200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105202020300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.957422, "LATITUDE": 18.34622391, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.36039092799999, "SHAPE_Area": 1341.832594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356015.600400000810623, 257358.326799999922514 ], [ 356016.504299998283386, 257354.2685999982059 ], [ 355976.063799999654293, 257395.875 ], [ 355978.183899998664856, 257402.005399998277426 ], [ 355983.685999996960163, 257418.72690000012517 ], [ 355986.871699996292591, 257423.396999999880791 ], [ 355994.090700000524521, 257427.888999998569489 ], [ 355999.720499999821186, 257429.6239 ], [ 356012.049099996685982, 257374.271499998867512 ], [ 356015.600400000810623, 257358.326799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "B9-404-T73", "PARCEL_NAM": "139", "ACRE": "1.06", "LONGITUDE": -64.95929267, "LATITUDE": 18.34576001, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.59733689199999, "SHAPE_Area": 4676.2626580899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355763.980700001120567, 257313.643899999558926 ], [ 355762.810999996960163, 257373.513799998909235 ], [ 355767.910899996757507, 257372.823800001293421 ], [ 355774.034177238296252, 257372.566558617574628 ], [ 355780.15819801366888, 257372.805445304344175 ], [ 355786.242830250761472, 257373.538894583965885 ], [ 355792.248199999332428, 257374.762099999934435 ], [ 355797.328599996864796, 257376.2027000002563 ], [ 355802.588802487414796, 257378.947176106652478 ], [ 355807.564107680867892, 257382.179546378116356 ], [ 355812.209399998188019, 257385.87049999833107 ], [ 355821.85809999704361, 257389.115800000727177 ], [ 355834.008000001311302, 257341.684999998658895 ], [ 355839.629799999296665, 257319.738299999386072 ], [ 355835.356100000441074, 257319.143300000578165 ], [ 355813.668399997055531, 257309.255399998277426 ], [ 355807.234099999070168, 257307.30290000140667 ], [ 355790.308700002729893, 257306.320000000298023 ], [ 355770.912299998104572, 257311.4386 ], [ 355763.980700001120567, 257313.643899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "B9-404-T73", "PARCEL_NAM": "301", "ACRE": ".24", "LONGITUDE": -64.96007244, "LATITUDE": 18.34575708, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.457253252, "SHAPE_Area": 770.49835716200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355703.408100001513958, 257334.827300000935793 ], [ 355699.862300001084805, 257362.245799999684095 ], [ 355724.948899999260902, 257352.859600000083447 ], [ 355736.536300003528595, 257322.375599998980761 ], [ 355725.63289999961853, 257325.8445999994874 ], [ 355703.408100001513958, 257334.827300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96017034, "LATITUDE": 18.34667914, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 592.82553639299999, "SHAPE_Area": 2215.2026088299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355783.34179999679327, 257378.831999998539686 ], [ 355791.530403972486965, 257382.960337164899101 ], [ 355799.341718514508102, 257387.764477874268778 ], [ 355806.720100000500679, 257393.210200000554323 ], [ 355812.209399998188019, 257385.87049999833107 ], [ 355808.28830000013113, 257382.708599999547005 ], [ 355802.975242684653495, 257379.174674607871566 ], [ 355797.328599996864796, 257376.2027000002563 ], [ 355792.248199999332428, 257374.762099999934435 ], [ 355786.242830250761472, 257373.538894583965885 ], [ 355780.15819801366888, 257372.805445304344175 ], [ 355774.034177238296252, 257372.566558617574628 ], [ 355767.910899996757507, 257372.823800001293421 ], [ 355759.81546005862765, 257374.01776439792593 ], [ 355751.813580264977645, 257375.729961389937671 ], [ 355743.938400000333786, 257377.953299999237061 ], [ 355739.120099999010563, 257379.589400000870228 ], [ 355730.423699150676839, 257383.290693624527194 ], [ 355721.877400003373623, 257387.326499998569489 ], [ 355718.915100000798702, 257388.82149999961257 ], [ 355709.968740781536326, 257393.651773114339449 ], [ 355701.231700003147125, 257398.851100001484156 ], [ 355693.129299998283386, 257402.766199998557568 ], [ 355685.495716613077093, 257407.087245091795921 ], [ 355678.154799997806549, 257411.888700000941753 ], [ 355676.255000002682209, 257413.244500000029802 ], [ 355673.923330277088098, 257414.672718005924253 ], [ 355671.843522033363115, 257416.447792103281245 ], [ 355670.066688952443656, 257418.526097803609446 ], [ 355668.636498751759063, 257420.856558352825232 ], [ 355667.588100001215935, 257423.381900001317263 ], [ 355666.952793253643904, 257426.005745723756263 ], [ 355666.729999996721745, 257428.696199998259544 ], [ 355667.051109085208736, 257436.590043944917852 ], [ 355667.970107758359518, 257444.436783697194187 ], [ 355669.481700003147125, 257452.191199999302626 ], [ 355671.810599997639656, 257463.530099999159575 ], [ 355673.688500002026558, 257473.335999999195337 ], [ 355675.430100001394749, 257483.079500000923872 ], [ 355676.466700002551079, 257489.232999999076128 ], [ 355677.701492568303365, 257494.436753839516314 ], [ 355678.407974698639009, 257499.738135707651963 ], [ 355678.579017219657544, 257505.083648888685275 ], [ 355678.212894126132596, 257510.419351334712701 ], [ 355677.313299998641014, 257515.691399998962879 ], [ 355675.819720805448014, 257519.217315593763487 ], [ 355673.982500001788139, 257522.576999999582767 ], [ 355671.538052817399148, 257526.103130525210872 ], [ 355668.715596673602704, 257529.33464098276454 ], [ 355665.550347920216154, 257532.2312111700885 ], [ 355662.081799998879433, 257534.756700001657009 ], [ 355653.658600002527237, 257539.515500001609325 ], [ 355659.763700000941753, 257546.680700000375509 ], [ 355667.066659764910582, 257540.541772677534027 ], [ 355674.663349731243216, 257534.770295263093431 ], [ 355682.535300001502037, 257529.380300000309944 ], [ 355684.638445700926241, 257525.60584807235864 ], [ 355686.321902192139532, 257521.626440650172299 ], [ 355687.565999166690744, 257517.488575027964544 ], [ 355688.356200002133846, 257513.240600001066923 ], [ 355688.94395977264503, 257507.804780628037406 ], [ 355688.962600144150201, 257502.337308969174046 ], [ 355688.411918523721397, 257496.897608282830333 ], [ 355687.297899998724461, 257491.544799998402596 ], [ 355683.474705329572316, 257475.96258621593006 ], [ 355679.889499999582767, 257460.323899999260902 ], [ 355677.640176628250629, 257453.544734773458913 ], [ 355675.827456538681872, 257446.636002424871549 ], [ 355674.45870942727197, 257439.625790721038356 ], [ 355673.539499998092651, 257432.542599998414516 ], [ 355674.537160147738177, 257429.333683668985032 ], [ 355675.972759075055365, 257426.295341110409936 ], [ 355677.818215819774196, 257423.487003668677062 ], [ 355680.037432418670505, 257420.963603686366696 ], [ 355682.586999997496605, 257418.774500001221895 ], [ 355685.974899999797344, 257416.667500000447035 ], [ 355695.996717770118266, 257409.817604101903271 ], [ 355706.230750292888843, 257403.289014394656988 ], [ 355716.66669999808073, 257397.088300000876188 ], [ 355723.409029013884719, 257392.824044187145773 ], [ 355730.442618931236211, 257389.059540092770476 ], [ 355737.7304926115321, 257385.814578548714053 ], [ 355745.23433609015774, 257383.106219035893446 ], [ 355752.914700001478195, 257380.948699999600649 ], [ 355760.406933543563355, 257379.301991577027366 ], [ 355768.024273614981212, 257378.395712197030662 ], [ 355775.693726722325664, 257378.23854632122675 ], [ 355783.34179999679327, 257378.831999998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201080200", "MAP": null, "PARCEL_NAM": "169", "ACRE": null, "LONGITUDE": -64.95953849, "LATITUDE": 18.3464399, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.614450788, "SHAPE_Area": 3099.3192007399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355775.880500003695488, 257443.681600000709295 ], [ 355779.055500000715256, 257437.754900000989437 ], [ 355779.690499998629093, 257439.44819999858737 ], [ 355782.442199997603893, 257443.469900000840425 ], [ 355788.633500002324581, 257448.100099999457598 ], [ 355796.997100003063679, 257422.7179000005126 ], [ 355806.720100000500679, 257393.210200000554323 ], [ 355801.680404014419764, 257389.387572797917528 ], [ 355796.426802230183966, 257385.864692917006323 ], [ 355790.977099999785423, 257382.653499998152256 ], [ 355775.66889999806881, 257388.8597999997437 ], [ 355768.472199998795986, 257390.976399999111891 ], [ 355761.910499997437, 257394.151500001549721 ], [ 355754.290500000119209, 257399.019799999892712 ], [ 355750.057099997997284, 257405.581500001251698 ], [ 355744.553800001740456, 257411.931499999016523 ], [ 355741.378799997270107, 257417.434799998998642 ], [ 355736.298799999058247, 257427.806499999016523 ], [ 355759.58219999819994, 257458.28660000115633 ], [ 355775.880500003695488, 257443.681600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "17", "ACRE": null, "LONGITUDE": -64.98725006, "LATITUDE": 18.35464532, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.68265555900001, "SHAPE_Area": 1186.3913188399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352860.5878000035882, 258277.344700001180172 ], [ 352857.412799999117851, 258272.476399999111891 ], [ 352853.814499996602535, 258269.9364 ], [ 352848.522799998521805, 258270.782999999821186 ], [ 352844.924500003457069, 258272.899700000882149 ], [ 352828.414399996399879, 258298.511399999260902 ], [ 352814.656099997460842, 258322.853100001811981 ], [ 352812.543600000441074, 258329.39469999819994 ], [ 352825.762599997222424, 258337.9364 ], [ 352842.245399996638298, 258309.258200000971556 ], [ 352860.5878000035882, 258277.344700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-5889-T95", "PARCEL_NAM": "DRAINAGE", "ACRE": ".06", "LONGITUDE": -65.01155857000001, "LATITUDE": 18.35254212, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.873135609200006, "SHAPE_Area": 157.31422489100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350277.26070000231266, 258065.891100000590086 ], [ 350265.223600000143051, 258033.878199998289347 ], [ 350260.46339999884367, 258035.372900001704693 ], [ 350273.351400002837181, 258067.3761 ], [ 350277.26070000231266, 258065.891100000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "DRAINAGE", "ACRE": null, "LONGITUDE": -65.01037201, "LATITUDE": 18.3522198, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.992488902700003, "SHAPE_Area": 167.776931185 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350401.215499997138977, 258030.197500001639128 ], [ 350392.777800001204014, 257998.980099998414516 ], [ 350387.816600002348423, 258000.292899999767542 ], [ 350396.562299996614456, 258032.469999998807907 ], [ 350401.215499997138977, 258030.197500001639128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "GREEN BELT", "ACRE": null, "LONGITUDE": -65.01492489, "LATITUDE": 18.35201103, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.15373664099999, "SHAPE_Area": 1846.5602443800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349881.366499997675419, 257953.933600001037121 ], [ 349875.767300002276897, 257948.610500000417233 ], [ 349873.33219999819994, 257950.49040000140667 ], [ 349871.708800002932549, 257951.743599999696016 ], [ 349869.264600001275539, 257954.678899999707937 ], [ 349863.046999998390675, 257958.94310000166297 ], [ 349941.413099996745586, 258021.8918999992311 ], [ 349952.473600000143051, 258030.776399999856949 ], [ 349955.001900002360344, 258005.918099999427795 ], [ 349947.064400002360344, 258001.684799998998642 ], [ 349940.365299999713898, 257996.990499999374151 ], [ 349931.854900002479553, 257990.654899999499321 ], [ 349920.633100003004074, 257982.752599999308586 ], [ 349913.419399999082088, 257977.627300001680851 ], [ 349907.807599999010563, 257973.781700000166893 ], [ 349900.593900002539158, 257968.656399998813868 ], [ 349893.378499999642372, 257963.742199998348951 ], [ 349887.773900002241135, 257959.052299998700619 ], [ 349881.366499997675419, 257953.933600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00938332, "LATITUDE": 18.35024202, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.66001891299999, "SHAPE_Area": 1017.22461652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350572.357100002467632, 257790.372499998658895 ], [ 350570.465218494588044, 257793.014453092677286 ], [ 350568.220499999821186, 257795.364000000059605 ], [ 350567.130114496394526, 257796.43434937344864 ], [ 350565.886457001382951, 257797.321989144053077 ], [ 350564.519825424940791, 257798.005294684408 ], [ 350563.063513564469758, 257798.467619345494313 ], [ 350561.553000003099442, 257798.697700001299381 ], [ 350556.474210794025566, 257799.281765242136316 ], [ 350551.363056957547087, 257799.175282869662624 ], [ 350546.313000001013279, 257798.380199998617172 ], [ 350531.536266890645493, 257797.725794158730423 ], [ 350516.785400003194809, 257796.63399999961257 ], [ 350503.994101183663588, 257796.477035555668408 ], [ 350491.226599998772144, 257795.681499999016523 ], [ 350479.577492623939179, 257793.881303334783297 ], [ 350467.890299998223782, 257792.347699999809265 ], [ 350433.548900000751019, 257785.778400000184774 ], [ 350431.858900003135204, 257794.841600000858307 ], [ 350452.797899998724461, 257797.968299999833107 ], [ 350460.045699998736382, 257799.083099998533726 ], [ 350483.407200001180172, 257801.807399999350309 ], [ 350494.283669962955173, 257802.403623182035517 ], [ 350505.171099998056889, 257802.745600000023842 ], [ 350519.537100002169609, 257802.807599999010563 ], [ 350526.939599998295307, 257803.148699998855591 ], [ 350551.326300002634525, 257804.299899999052286 ], [ 350558.589699998497963, 257804.65089999884367 ], [ 350561.837999999523163, 257804.182500001043081 ], [ 350566.193599998950958, 257803.577199999243021 ], [ 350569.040700003504753, 257803.195700000971556 ], [ 350572.025952632771805, 257801.322497204382671 ], [ 350575.113399997353554, 257799.622999999672174 ], [ 350580.727099999785423, 257791.447900000959635 ], [ 350572.357100002467632, 257790.372499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-6338-T97", "PARCEL_NAM": "GOVERNMENT (WELL)", "ACRE": null, "LONGITUDE": -64.89318781, "LATITUDE": 18.35821843, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.40886588399999, "SHAPE_Area": 366.48531273399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362785.911700002849102, 258779.169100001454353 ], [ 362798.101700000464916, 258768.080899998545647 ], [ 362780.919900000095367, 258772.468899998813868 ], [ 362755.364500001072884, 258778.995400000363588 ], [ 362764.843299999833107, 258791.240100000053644 ], [ 362776.990199998021126, 258785.217799998819828 ], [ 362785.911700002849102, 258779.169100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89535669, "LATITUDE": 18.35580326, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.469655353299999, "SHAPE_Area": 65.839088440400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362547.819099999964237, 258507.928700000047684 ], [ 362542.360799998044968, 258500.469300001859665 ], [ 362542.104000002145767, 258504.594999998807907 ], [ 362542.940067029034253, 258507.456130249163834 ], [ 362544.152336366998497, 258510.179267674160656 ], [ 362545.718900002539158, 258512.715199999511242 ], [ 362547.012216031376738, 258514.355181596474722 ], [ 362548.454099997878075, 258515.866200000047684 ], [ 362551.275986724416725, 258517.465807418862823 ], [ 362554.327799998223782, 258518.565000001341105 ], [ 362551.711400002241135, 258514.289299998432398 ], [ 362547.819099999964237, 258507.928700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89538372, "LATITUDE": 18.35568629, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.055028313299999, "SHAPE_Area": 50.793042097099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362548.159000001847744, 258490.963300000876188 ], [ 362539.506700001657009, 258496.568900000303984 ], [ 362546.296700000762939, 258505.848200000822544 ], [ 362545.875695015012752, 258504.337052748567658 ], [ 362545.696106745977886, 258502.778669204766629 ], [ 362545.762351411569398, 258501.211371255980339 ], [ 362546.072800002992153, 258499.673700001090765 ], [ 362547.288199278409593, 258495.359766848589061 ], [ 362548.159000001847744, 258490.963300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "A9-200-T73", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89500663, "LATITUDE": 18.35535961, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.179928479, "SHAPE_Area": 242.87095582800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362604.466399997472763, 258466.491200000047684 ], [ 362609.067299999296665, 258462.56810000166297 ], [ 362597.825400002300739, 258457.763599999248981 ], [ 362589.512517064984422, 258457.609594970126636 ], [ 362581.215400002896786, 258458.144000001251698 ], [ 362575.759099997580051, 258458.874899998307228 ], [ 362570.264420861843973, 258459.599115431454265 ], [ 362564.86214213562198, 258460.836601335555315 ], [ 362559.600100003182888, 258462.576400000602007 ], [ 362563.602899998426437, 258465.986600000411272 ], [ 362568.446199998259544, 258465.39299999922514 ], [ 362587.822800002992153, 258462.5962999984622 ], [ 362598.142899997532368, 258463.319899998605251 ], [ 362604.466399997472763, 258466.491200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90853757, "LATITUDE": 18.35386769, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.847514975400003, "SHAPE_Area": 82.936944323800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361160.302400000393391, 258271.423700001090765 ], [ 361149.769299998879433, 258293.186200000345707 ], [ 361149.07940000295639, 258294.611600000411272 ], [ 361153.215999998152256, 258295.459100000560284 ], [ 361157.233489152626134, 258285.604642428777879 ], [ 361160.884199999272823, 258275.608500000089407 ], [ 361161.329414187697694, 258274.64779154988355 ], [ 361161.924733010295313, 258273.772136424086057 ], [ 361162.654351689096075, 258273.004781888419529 ], [ 361163.49889999628067, 258272.366099998354912 ], [ 361161.23929999768734, 258271.606100000441074 ], [ 361160.302400000393391, 258271.423700001090765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87717497, "LATITUDE": 18.34462468, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 651.05825623199996, "SHAPE_Area": 1744.4372868299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364408.347199998795986, 257231.138700000941753 ], [ 364404.748099997639656, 257236.049300000071526 ], [ 364429.827299997210503, 257254.682599999010563 ], [ 364432.548500001430511, 257260.951200000941753 ], [ 364434.943999998271465, 257263.714999999850988 ], [ 364436.314099997282028, 257265.999699998646975 ], [ 364438.124300003051758, 257269.018399998545647 ], [ 364445.132600001990795, 257276.107500001788139 ], [ 364452.625699996948242, 257283.686999998986721 ], [ 364460.042999997735023, 257291.189899999648333 ], [ 364466.106100000441074, 257297.322900000959635 ], [ 364465.272799998521805, 257300.482500001788139 ], [ 364462.976000003516674, 257301.575800001621246 ], [ 364459.605200000107288, 257303.180300001055002 ], [ 364455.544900000095367, 257306.524500001221895 ], [ 364459.312899999320507, 257306.91440000012517 ], [ 364464.407200001180172, 257307.441500000655651 ], [ 364468.375699996948242, 257306.178899999707937 ], [ 364470.875600002706051, 257305.383499998599291 ], [ 364485.649899996817112, 257311.72690000012517 ], [ 364493.329421191127039, 257315.534708141407464 ], [ 364500.714000001549721, 257319.886999998241663 ], [ 364506.979000002145767, 257324.347600001841784 ], [ 364516.278800003230572, 257330.96169999986887 ], [ 364524.526500001549721, 257336.820300001651049 ], [ 364527.397776626341511, 257338.698257944692159 ], [ 364530.506904173118528, 257340.148872086894698 ], [ 364533.790702536876779, 257341.142664720187895 ], [ 364537.182442153571174, 257341.659441136638634 ], [ 364540.613200001418591, 257341.688700001686811 ], [ 364543.24337082693819, 257343.293570351001108 ], [ 364546.110248981392942, 257344.422471169091295 ], [ 364549.128499999642372, 257345.041799999773502 ], [ 364550.897299997508526, 257340.97069999948144 ], [ 364549.429179795493837, 257341.037340105656767 ], [ 364547.970969687914476, 257340.854470990045229 ], [ 364546.564767607022077, 257340.427372009609826 ], [ 364545.251170034636743, 257339.768373338069068 ], [ 364544.068099997937679, 257338.896499998867512 ], [ 364541.441020340600517, 257335.402215642214287 ], [ 364539.421999998390675, 257331.524700000882149 ], [ 364534.321545550134033, 257327.24480274997768 ], [ 364529.385399997234344, 257322.776399999856949 ], [ 364522.621500000357628, 257317.8761 ], [ 364517.067400000989437, 257314.634300000965595 ], [ 364511.067838340299204, 257308.886152749764733 ], [ 364505.437371370033361, 257302.776015383162303 ], [ 364500.197797043831088, 257296.327542864659335 ], [ 364495.369400002062321, 257289.565699998289347 ], [ 364489.600497083505616, 257281.581958785973256 ], [ 364484.150806336663663, 257273.377006903523579 ], [ 364479.028800003230572, 257264.963599998503923 ], [ 364474.52589999884367, 257256.887800000607967 ], [ 364471.531964858819265, 257248.326989092718577 ], [ 364469.218615049379878, 257239.557750603416935 ], [ 364467.600100003182888, 257230.634100001305342 ], [ 364461.549599997699261, 257232.909299999475479 ], [ 364461.92059999704361, 257234.544799998402596 ], [ 364462.451300002634525, 257236.884300000965595 ], [ 364464.13849999755621, 257244.322299998253584 ], [ 364466.46722581324866, 257251.605967237439472 ], [ 364469.542080074257683, 257258.607398780295625 ], [ 364473.329599998891354, 257265.250399999320507 ], [ 364475.17339999973774, 257268.050599999725819 ], [ 364490.130599997937679, 257290.253600001335144 ], [ 364495.288443789409939, 257297.634504790970823 ], [ 364500.854452973289881, 257304.712686044338625 ], [ 364506.810900002717972, 257311.465599998831749 ], [ 364513.107299998402596, 257316.72749999910593 ], [ 364518.333999998867512, 257320.670000001788139 ], [ 364520.747400000691414, 257322.371599998325109 ], [ 364526.643200002610683, 257326.236999999731779 ], [ 364528.407663877704181, 257327.56627409972134 ], [ 364529.950499996542931, 257329.147399999201298 ], [ 364529.854141073941719, 257329.672170752543025 ], [ 364529.675146582827438, 257330.174794227583334 ], [ 364529.418118653353304, 257330.642347464163322 ], [ 364529.089665734849405, 257331.062809193477733 ], [ 364528.698232685390394, 257331.42536891734926 ], [ 364528.253883646510076, 257331.720704856852535 ], [ 364527.768043283431325, 257331.941223625006387 ], [ 364527.253203045402188, 257332.081255460187094 ], [ 364526.722599998116493, 257332.137200001627207 ], [ 364518.378899998962879, 257326.924600001424551 ], [ 364512.223399996757507, 257323.08839999884367 ], [ 364509.768399998545647, 257321.554900001734495 ], [ 364498.480700001120567, 257314.362199999392033 ], [ 364486.823299996554852, 257306.684200000017881 ], [ 364480.054454332799651, 257302.10425366286654 ], [ 364473.505706393450964, 257297.214766931283521 ], [ 364467.191200003027916, 257292.026299998164177 ], [ 364458.987700000405312, 257281.010400000959635 ], [ 364441.398100003600121, 257263.34569999948144 ], [ 364435.053700000047684, 257250.839200001209974 ], [ 364408.347199998795986, 257231.138700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87751618, "LATITUDE": 18.34499851, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.036702697099997, "SHAPE_Area": 31.8244916198 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364457.034299999475479, 257313.837200000882149 ], [ 364436.755199998617172, 257335.079500000923872 ], [ 364440.577799998223782, 257337.964299999177456 ], [ 364441.895599998533726, 257331.410799998790026 ], [ 364457.034299999475479, 257313.837200000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "B9-394-T73", "PARCEL_NAM": "11D-5", "ACRE": null, "LONGITUDE": -64.94454435, "LATITUDE": 18.35395615, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.85014159100001, "SHAPE_Area": 275.32600903600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357366.933700002729893, 258260.153099998831749 ], [ 357356.244499996304512, 258256.872299998998642 ], [ 357350.952799998223782, 258256.237300001084805 ], [ 357336.559500001370907, 258256.660599999129772 ], [ 357323.118600003421307, 258258.459800001233816 ], [ 357310.101099997758865, 258261.740600001066923 ], [ 357283.113499999046326, 258273.594000000506639 ], [ 357309.395499996840954, 258263.857299998402596 ], [ 357323.146200001239777, 258259.937600001692772 ], [ 357357.973099999129772, 258259.6239 ], [ 357384.527900002896786, 258276.824599999934435 ], [ 357384.713699996471405, 258274.440600000321865 ], [ 357379.421999998390675, 258267.243900001049042 ], [ 357366.933700002729893, 258260.153099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "B9-394-T73", "PARCEL_NAM": "11D-7", "ACRE": ".020", "LONGITUDE": -64.9446029, "LATITUDE": 18.35425143, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.372137020400004, "SHAPE_Area": 90.759961516399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357364.707999996840954, 258304.379399999976158 ], [ 357363.116899996995926, 258301.833200000226498 ], [ 357348.664399996399879, 258294.537799999117851 ], [ 357343.837300002574921, 258293.231699999421835 ], [ 357336.596699997782707, 258291.272599998861551 ], [ 357323.706500001251698, 258289.900499999523163 ], [ 357318.417700000107288, 258290.962900001555681 ], [ 357346.216300003230572, 258295.021299999207258 ], [ 357363.04389999806881, 258304.863800000399351 ], [ 357364.707999996840954, 258304.379399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": "B9-283-T70", "PARCEL_NAM": "14R-1", "ACRE": null, "LONGITUDE": -64.9108696, "LATITUDE": 18.33749424, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.173582327600002, "SHAPE_Area": 104.82858186 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360933.639200001955032, 256471.355799999088049 ], [ 360930.808499999344349, 256466.232599999755621 ], [ 360920.611299999058247, 256467.552600000053644 ], [ 360915.470600001513958, 256468.217999998480082 ], [ 360910.848399996757507, 256468.087099999189377 ], [ 360925.285099998116493, 256475.130399998277426 ], [ 360933.639200001955032, 256471.355799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "14", "ACRE": null, "LONGITUDE": -64.9105482, "LATITUDE": 18.33612635, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.678995325100004, "SHAPE_Area": 129.02775558 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360962.071199998259544, 256304.607799999415874 ], [ 360957.303199999034405, 256303.223000001162291 ], [ 360956.371699996292591, 256305.166400000452995 ], [ 360954.735699996352196, 256307.897199999541044 ], [ 360957.068400003015995, 256318.048799999058247 ], [ 360963.898100003600121, 256344.8108000010252 ], [ 360965.606899999082088, 256344.420699998736382 ], [ 360961.035199999809265, 256325.680599998682737 ], [ 360960.347599998116493, 256311.742800001055002 ], [ 360962.017700001597404, 256305.001499999314547 ], [ 360962.071199998259544, 256304.607799999415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88047606000001, "LATITUDE": 18.34478939, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.77622658200001, "SHAPE_Area": 245.470258336 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364114.23650000244379, 257290.542199999094009 ], [ 364113.065399996936321, 257294.982700001448393 ], [ 364119.97026663942961, 257296.642078864737414 ], [ 364126.755199998617172, 257298.738600000739098 ], [ 364129.475000001490116, 257301.779399998486042 ], [ 364132.281937202322297, 257305.741825925069861 ], [ 364134.580399997532368, 257310.019299998879433 ], [ 364134.404200002551079, 257330.704999998211861 ], [ 364137.638400003314018, 257329.675999999046326 ], [ 364138.637100003659725, 257307.097199998795986 ], [ 364136.373720452771522, 257302.100919761869591 ], [ 364133.71000000089407, 257297.306099999696016 ], [ 364131.440354317135643, 257294.824298923194874 ], [ 364128.871899999678135, 257292.653200000524521 ], [ 364121.582279121270403, 257291.403029627777869 ], [ 364114.23650000244379, 257290.542199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87653108000001, "LATITUDE": 18.34359736, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.603478485300002, "SHAPE_Area": 164.32238107800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364551.331799998879433, 257151.922100000083447 ], [ 364547.957800000905991, 257151.164599999785423 ], [ 364548.500035192584619, 257157.556410008663079 ], [ 364548.708200000226498, 257163.967799998819828 ], [ 364548.056510172726121, 257169.730039777932689 ], [ 364547.184000000357628, 257175.462999999523163 ], [ 364546.168200001120567, 257180.795400001108646 ], [ 364545.089443059754558, 257185.800943392823683 ], [ 364543.556645719334483, 257190.686607472365722 ], [ 364541.582699999213219, 257195.411299999803305 ], [ 364545.188699997961521, 257195.800799999386072 ], [ 364547.607699997723103, 257195.820599999278784 ], [ 364548.490699999034405, 257195.7212999984622 ], [ 364549.206016299431212, 257185.194892495404929 ], [ 364550.531499996781349, 257174.727800000458956 ], [ 364550.82490000128746, 257172.910799998790026 ], [ 364551.606805681774858, 257164.356075355928624 ], [ 364551.618699997663498, 257155.765700001269579 ], [ 364551.331799998879433, 257151.922100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85535173, "LATITUDE": 18.33387689, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.98470480200001, "SHAPE_Area": 1073.4142212500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366809.001599997282028, 256115.164900001138449 ], [ 366805.916599996387959, 256098.674400001764297 ], [ 366805.95610000193119, 256094.030600000172853 ], [ 366795.544200003147125, 256085.712799999862909 ], [ 366791.521600000560284, 256084.624400001019239 ], [ 366785.069300003349781, 256084.782699998468161 ], [ 366781.842299997806549, 256084.967300001531839 ], [ 366774.574699997901917, 256086.174400001764297 ], [ 366764.855800002813339, 256091.161100000143051 ], [ 366761.616099998354912, 256092.823399998247623 ], [ 366767.195600003004074, 256100.468400001525879 ], [ 366769.625299997627735, 256099.221700001507998 ], [ 366780.152300000190735, 256094.030499998480082 ], [ 366785.805500000715256, 256093.021299999207258 ], [ 366791.442500002682209, 256093.911899998784065 ], [ 366795.44709999859333, 256097.111000001430511 ], [ 366797.029200002551079, 256100.712600000202656 ], [ 366798.594999998807907, 256106.213799998164177 ], [ 366799.367200002074242, 256110.230900000780821 ], [ 366800.105200000107288, 256118.258499998599291 ], [ 366799.205300003290176, 256129.228000000119209 ], [ 366798.30009999871254, 256140.830699998885393 ], [ 366798.213799998164177, 256150.962499998509884 ], [ 366796.505900003015995, 256162.136500000953674 ], [ 366793.214100003242493, 256169.920000001788139 ], [ 366801.2449000030756, 256173.785399999469519 ], [ 366807.868000000715256, 256153.574700001627207 ], [ 366809.001599997282028, 256115.164900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071500", "MAP": "a9-504-t98", "PARCEL_NAM": "194-2", "ACRE": "6855 sq ft", "LONGITUDE": -64.94730915, "LATITUDE": 18.33815004, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.38881207, "SHAPE_Area": 775.26501564800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357061.224799998104572, 256481.203499998897314 ], [ 357062.610399998724461, 256529.664099998772144 ], [ 357089.682700000703335, 256529.718899998813868 ], [ 357092.070699997246265, 256515.874299999326468 ], [ 357071.605999998748302, 256514.428399998694658 ], [ 357074.525100000202656, 256485.237100001424551 ], [ 357064.884400002658367, 256482.785300001502037 ], [ 357061.224799998104572, 256481.203499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303071500", "MAP": "A9-504-T98", "PARCEL_NAM": "194-2A", "ACRE": "2064 sq ft", "LONGITUDE": -64.9474255, "LATITUDE": 18.33814129, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.23462463, "SHAPE_Area": 181.45318631800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357061.224799998104572, 256481.203499998897314 ], [ 357059.723999999463558, 256480.554800000041723 ], [ 357056.682599999010563, 256529.652100000530481 ], [ 357058.603200003504753, 256529.655999999493361 ], [ 357062.610399998724461, 256529.664099998772144 ], [ 357061.224799998104572, 256481.203499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019900", "MAP": "D9-9003-T015", "PARCEL_NAM": "4-51 & 4-52", "ACRE": "5.93", "LONGITUDE": -65.03663363, "LATITUDE": 18.35094018, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 743.70254821599997, "SHAPE_Area": 25028.516530500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347673.748599998652935, 257912.432599999010563 ], [ 347679.02817504259292, 257910.835917060932843 ], [ 347684.155483370297588, 257908.802688504743855 ], [ 347689.094499997794628, 257906.347199998795986 ], [ 347709.73200000077486, 257896.822200000286102 ], [ 347708.938299998641014, 257894.440900001674891 ], [ 347714.229900002479553, 257891.001299999654293 ], [ 347715.55290000140667, 257893.118000000715256 ], [ 347743.863300003111362, 257873.538800001144409 ], [ 347747.505351286497898, 257870.526898694079136 ], [ 347750.678414840600453, 257867.024363224423723 ], [ 347753.317047710355837, 257863.103431751776952 ], [ 347755.366829324164428, 257858.844971658021677 ], [ 347756.785483892832417, 257854.336811695306096 ], [ 347757.543752327852417, 257849.671930559095927 ], [ 347757.625995696580503, 257844.94653924589511 ], [ 347757.03051776799839, 257840.258096746401861 ], [ 347755.769599996507168, 257835.703299999237061 ], [ 347753.282499998807907, 257830.782000001519918 ], [ 347750.107500001788139, 257832.686999998986721 ], [ 347748.625900000333786, 257828.453699998557568 ], [ 347751.165899999439716, 257827.60700000077486 ], [ 347748.57153267331887, 257823.936836301116273 ], [ 347745.485152838111389, 257820.66955870075617 ], [ 347741.968545636860654, 257817.870573670923477 ], [ 347738.092108781682327, 257815.595913100027246 ], [ 347733.933443286863621, 257813.891112611134304 ], [ 347729.575800001621246, 257812.790300000458956 ], [ 347723.048242128803395, 257812.200760744919535 ], [ 347716.494499996304512, 257812.271699998527765 ], [ 347716.494699999690056, 257812.278799999505281 ], [ 347718.29389999806881, 257819.581300001591444 ], [ 347714.695600003004074, 257820.004599999636412 ], [ 347711.308899998664856, 257820.5337999984622 ], [ 347708.874700002372265, 257821.168800000101328 ], [ 347706.334700003266335, 257822.333000000566244 ], [ 347703.583099998533726, 257824.238000001758337 ], [ 347699.45549999922514, 257818.20549999922514 ], [ 347699.447400003671646, 257818.191899999976158 ], [ 347671.790700003504753, 257836.497000001370907 ], [ 347673.907399997115135, 257839.460400000214577 ], [ 347670.09740000218153, 257841.577100001275539 ], [ 347668.403999999165535, 257838.825399998575449 ], [ 347666.033885253767949, 257841.073130956385285 ], [ 347664.067500002682209, 257843.681400001049042 ], [ 347663.895499996840954, 257843.605500001460314 ], [ 347658.815499998629093, 257836.726300001144409 ], [ 347658.815499998629093, 257836.663699999451637 ], [ 347658.667300000786781, 257836.761599998921156 ], [ 347653.382600001990795, 257832.638799998909235 ], [ 347582.179799996316433, 257742.185699999332428 ], [ 347580.598800003528595, 257740.177299998700619 ], [ 347580.292400002479553, 257740.54280000180006 ], [ 347571.631700001657009, 257751.976300001144409 ], [ 347551.470399998128414, 257774.518899999558926 ], [ 347549.204899996519089, 257776.951499998569489 ], [ 347550.895000003278255, 257778.62049999833107 ], [ 347544.649890842614695, 257788.667896822153125 ], [ 347538.955875554005615, 257799.037552614754532 ], [ 347533.829535774246324, 257809.699269729084335 ], [ 347529.285800002515316, 257820.622000001370907 ], [ 347522.695155724766664, 257844.61086349847028 ], [ 347515.792099997401237, 257868.511700000613928 ], [ 347514.896773737156764, 257873.036435788118979 ], [ 347514.614656012388878, 257877.640266003087163 ], [ 347514.950816103315447, 257882.240465939190472 ], [ 347515.899213660275564, 257886.75437612136011 ], [ 347517.442807240411639, 257891.100887586711906 ], [ 347519.553860519896261, 257895.201899304578546 ], [ 347522.194440678809769, 257898.983721548313042 ], [ 347525.317100003361702, 257902.378400001674891 ], [ 347532.982545227510855, 257906.654728357621934 ], [ 347540.947874923353083, 257910.342486149136676 ], [ 347549.167977881617844, 257913.420787961629685 ], [ 347557.5962999984622, 257915.87220000103116 ], [ 347566.335858809179626, 257918.400428924011067 ], [ 347575.2316845463356, 257920.307288685027743 ], [ 347584.239657061814796, 257921.583321934449486 ], [ 347593.315099999308586, 257922.222199998795986 ], [ 347604.427599996328354, 257922.751400001347065 ], [ 347604.956799998879433, 257919.047200001776218 ], [ 347609.454700000584126, 257919.047200001776218 ], [ 347609.454700000584126, 257922.751400001347065 ], [ 347630.092299997806549, 257921.692999999970198 ], [ 347635.69150495401118, 257921.358569229749264 ], [ 347641.256007273681462, 257920.651990135665983 ], [ 347646.761100001633167, 257919.576400000602007 ], [ 347660.30164423113456, 257916.181276968505699 ], [ 347673.748599998652935, 257912.432599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102301019700", "MAP": "A9-803-T014", "PARCEL_NAM": "4-N", "ACRE": "1.3", "LONGITUDE": -65.0366265, "LATITUDE": 18.351098, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1151.1568593, "SHAPE_Area": 5043.9390259800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347658.815499998629093, 257836.663699999451637 ], [ 347658.815499998629093, 257836.726300001144409 ], [ 347663.895499996840954, 257843.605500001460314 ], [ 347664.067500002682209, 257843.681400001049042 ], [ 347666.033884514472447, 257841.073130296193995 ], [ 347668.403999999165535, 257838.825399998575449 ], [ 347670.09740000218153, 257841.577100001275539 ], [ 347673.907399997115135, 257839.460400000214577 ], [ 347671.790700003504753, 257836.497000001370907 ], [ 347701.212399996817112, 257817.023699998855591 ], [ 347704.400221057003364, 257815.163749651634134 ], [ 347707.807057129160967, 257813.744212268065894 ], [ 347711.372400000691414, 257812.790300000458956 ], [ 347717.431305957317818, 257812.221054023859324 ], [ 347723.516894044994842, 257812.221054023859324 ], [ 347729.575800001621246, 257812.790300000458956 ], [ 347733.933443286863621, 257813.891112611134304 ], [ 347738.092108781682327, 257815.595913100027246 ], [ 347741.968545636860654, 257817.870573670923477 ], [ 347745.485152838111389, 257820.66955870075617 ], [ 347748.57153267331887, 257823.936836301116273 ], [ 347751.165899999439716, 257827.60700000077486 ], [ 347748.625900000333786, 257828.453699998557568 ], [ 347750.107500001788139, 257832.686999998986721 ], [ 347753.282499998807907, 257830.782000001519918 ], [ 347755.769599996507168, 257835.703299999237061 ], [ 347757.030517768696882, 257840.258096746372757 ], [ 347757.625995697802864, 257844.946539245982422 ], [ 347757.543752329365816, 257849.671930559328757 ], [ 347756.785483894462232, 257854.336811695742654 ], [ 347755.366829325794242, 257858.844971658603754 ], [ 347753.317047711752821, 257863.10343175244634 ], [ 347750.678414841648191, 257867.024363225034904 ], [ 347747.505351287079975, 257870.52689869448659 ], [ 347743.863300003111362, 257873.538800001144409 ], [ 347715.55290000140667, 257893.118000000715256 ], [ 347714.229900002479553, 257891.001299999654293 ], [ 347708.938299998641014, 257894.440900001674891 ], [ 347709.73200000077486, 257896.822200000286102 ], [ 347689.094499997794628, 257906.347199998795986 ], [ 347684.155483370297588, 257908.802688504685648 ], [ 347679.02817504259292, 257910.835917060874635 ], [ 347673.748599998652935, 257912.432599999010563 ], [ 347660.30164423113456, 257916.181276968447492 ], [ 347646.761100001633167, 257919.576400000602007 ], [ 347641.256007273681462, 257920.651990135665983 ], [ 347635.69150495401118, 257921.358569229778368 ], [ 347630.092299997806549, 257921.692999999970198 ], [ 347609.454700000584126, 257922.751400001347065 ], [ 347609.454700000584126, 257919.047200001776218 ], [ 347604.956799998879433, 257919.047200001776218 ], [ 347604.427599996328354, 257922.751400001347065 ], [ 347593.315099999308586, 257922.222199998795986 ], [ 347584.239657061756589, 257921.583321934624109 ], [ 347575.231684546277393, 257920.307288685289677 ], [ 347566.335858809179626, 257918.40042892418569 ], [ 347557.5962999984622, 257915.87220000103116 ], [ 347549.167977881676052, 257913.420787961367751 ], [ 347540.947874923527706, 257910.342486148816533 ], [ 347532.98254522762727, 257906.65472835736 ], [ 347525.317100003361702, 257902.378400001674891 ], [ 347522.194440679217223, 257898.983721548080212 ], [ 347519.553860520594753, 257895.2018993042293 ], [ 347517.442807241284754, 257891.10088758636266 ], [ 347515.899213661265094, 257886.754376121098176 ], [ 347514.950816104246769, 257882.240465939015849 ], [ 347514.61465601308737, 257877.640266002999851 ], [ 347514.896773737564217, 257873.036435788089875 ], [ 347515.792099997401237, 257868.511700000613928 ], [ 347522.695155724766664, 257844.61086349847028 ], [ 347529.285800002515316, 257820.622000001370907 ], [ 347533.829535774304532, 257809.699269729113439 ], [ 347538.955875554122031, 257799.037552614812739 ], [ 347544.649890842672903, 257788.667896822182229 ], [ 347550.895000003278255, 257778.62049999833107 ], [ 347549.204899996519089, 257776.951499998569489 ], [ 347545.729301796818618, 257780.188480729120784 ], [ 347541.995505590050016, 257783.123884105531033 ], [ 347538.029600001871586, 257785.737199999392033 ], [ 347529.833200015011244, 257790.467476989986608 ], [ 347521.484899997711182, 257794.924199998378754 ], [ 347522.347199998795986, 257796.605900000780821 ], [ 347522.976089555886574, 257796.575320385716623 ], [ 347523.601789307023864, 257796.645584240730386 ], [ 347524.208232745178975, 257796.814887354237726 ], [ 347524.779847820347641, 257797.07888241801993 ], [ 347525.301956793642603, 257797.43079065598431 ], [ 347525.761153126950376, 257797.861575887101935 ], [ 347526.145645731885452, 257798.360176553629572 ], [ 347526.445561737054959, 257798.913789755897596 ], [ 347526.653200000524521, 257799.508200000971556 ], [ 347518.82150000333786, 257818.769900001585484 ], [ 347512.712920349906199, 257837.29646231784136 ], [ 347506.412600003182888, 257855.758699998259544 ], [ 347504.068322881357744, 257860.782061748264823 ], [ 347502.374636725522578, 257866.060435143619543 ], [ 347501.358454376575537, 257871.509946307836799 ], [ 347501.035923072777223, 257877.04400196831557 ], [ 347501.412167868518736, 257882.574665432010079 ], [ 347502.481210196681786, 257888.014053908293135 ], [ 347504.226062868721783, 257893.27573497503181 ], [ 347506.619000002741814, 257898.276099998503923 ], [ 347508.046743653307203, 257902.326156820898177 ], [ 347510.041648277197964, 257906.129019918385893 ], [ 347512.562306946434546, 257909.605755753815174 ], [ 347515.556400001049042, 257912.684200000017881 ], [ 347521.840300001204014, 257915.330099999904633 ], [ 347532.990000002086163, 257918.782600000500679 ], [ 347533.57209999859333, 257915.87220000103116 ], [ 347544.330572891340125, 257919.785693475307198 ], [ 347555.162100002169609, 257923.492199998348951 ], [ 347564.079163099406287, 257926.308581804041751 ], [ 347573.202716697880533, 257928.35962799823028 ], [ 347582.467200003564358, 257929.63060000166297 ], [ 347600.67059999704361, 257930.900600001215935 ], [ 347613.158900000154972, 257930.900600001215935 ], [ 347630.515600003302097, 257930.053899999707937 ], [ 347639.251396749750711, 257929.040402721089777 ], [ 347647.872299998998642, 257927.302200000733137 ], [ 347671.155699998140335, 257921.587200000882149 ], [ 347680.192153791431338, 257918.637061983550666 ], [ 347689.147399999201298, 257915.448899999260902 ], [ 347707.13910000026226, 257906.770500000566244 ], [ 347711.210426869802177, 257905.515435731911566 ], [ 347715.049046137603, 257903.667222834541462 ], [ 347718.569099999964237, 257901.267200000584126 ], [ 347747.779200002551079, 257880.94709999859333 ], [ 347752.278755780134816, 257877.583027457207208 ], [ 347756.321637559565715, 257873.68199000848108 ], [ 347759.844200000166893, 257869.305399999022484 ], [ 347762.385937261627987, 257864.162311873806175 ], [ 347764.23978650936624, 257858.733221090224106 ], [ 347765.374486507091206, 257853.10967775125755 ], [ 347765.770902945601847, 257847.386510990007082 ], [ 347765.422351102344692, 257841.660229877248639 ], [ 347764.334708564972971, 257836.027396000688896 ], [ 347762.526316118484829, 257830.582995158620179 ], [ 347760.027668466500472, 257825.41883562572184 ], [ 347756.880900003015995, 257820.622000001370907 ], [ 347752.508469385385979, 257816.467472621414345 ], [ 347747.700171289907303, 257812.826248008466791 ], [ 347742.515941857709549, 257809.743714561569504 ], [ 347737.020403269270901, 257807.258296512271045 ], [ 347731.282058219250757, 257805.400974961259635 ], [ 347725.372436020581517, 257804.194901694077998 ], [ 347719.365200980915688, 257803.6551105909748 ], [ 347713.335234166297596, 257803.788330227223923 ], [ 347707.357699997723103, 257804.5929000005126 ], [ 347658.815499998629093, 257836.663699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-803-T014", "PARCEL_NAM": "4-41", "ACRE": "2.004", "LONGITUDE": -65.03539609000001, "LATITUDE": 18.35011938, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 407.75476302099997, "SHAPE_Area": 8877.7234039300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347756.880900003015995, 257820.622000001370907 ], [ 347835.516400001943111, 257756.050000000745058 ], [ 347837.164499998092651, 257754.696699999272823 ], [ 347833.632237745856401, 257754.259915187838487 ], [ 347830.165399998426437, 257753.454500000923872 ], [ 347819.798627883428708, 257750.568815366801573 ], [ 347809.562052376277279, 257747.250734328379622 ], [ 347799.473700001835823, 257743.506099998950958 ], [ 347791.988808820431586, 257740.364428076165495 ], [ 347784.679529905144591, 257736.833402700081933 ], [ 347777.566100001335144, 257732.922800000756979 ], [ 347770.478308972262312, 257729.403164341318188 ], [ 347763.172799997031689, 257726.361099999397993 ], [ 347734.386100001633167, 257716.30689999833703 ], [ 347722.967023321602028, 257711.951049285911722 ], [ 347711.420199997723103, 257707.946100000292063 ], [ 347705.286928882123902, 257705.900186616228893 ], [ 347699.037699997425079, 257704.241900000721216 ], [ 347696.652999997138977, 257706.123199999332428 ], [ 347705.207699999213219, 257789.861299999058247 ], [ 347707.357699997723103, 257804.5929000005126 ], [ 347713.335234166297596, 257803.78833022742765 ], [ 347719.36520098085748, 257803.65511059135315 ], [ 347725.37243602052331, 257804.194901694572764 ], [ 347731.282058219134342, 257805.400974961783504 ], [ 347737.020403269096278, 257807.258296512794914 ], [ 347742.515941857534926, 257809.743714562035166 ], [ 347747.70017128973268, 257812.826248008816037 ], [ 347752.508469385269564, 257816.467472621618072 ], [ 347756.880900003015995, 257820.622000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-803-T014", "PARCEL_NAM": "4-42", "ACRE": "2.7", "LONGITUDE": -65.03460216000001, "LATITUDE": 18.35055422, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 457.77899869800001, "SHAPE_Area": 11973.737105599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347898.530900001525879, 257779.219099998474121 ], [ 347895.97240000218153, 257739.68189999833703 ], [ 347895.879399999976158, 257738.24439999833703 ], [ 347872.604699999094009, 257746.469500001519918 ], [ 347855.142099998891354, 257752.184500001370907 ], [ 347851.712350215530023, 257753.349508474522736 ], [ 347848.167459093383513, 257754.093937954748981 ], [ 347844.558799996972084, 257754.407000001519918 ], [ 347840.869593683280982, 257754.75460455956636 ], [ 347837.164499998092651, 257754.696699999272823 ], [ 347835.516400001943111, 257756.050000000745058 ], [ 347756.880900003015995, 257820.622000001370907 ], [ 347760.027668466675095, 257825.418835625663633 ], [ 347762.526316118834075, 257830.582995158532867 ], [ 347764.334708565438632, 257836.027396000601584 ], [ 347765.422351102868561, 257841.660229877190432 ], [ 347765.770902946125716, 257847.386510990007082 ], [ 347765.374486507556867, 257853.109677751315758 ], [ 347764.239786509715486, 257858.733221090282314 ], [ 347762.38593726180261, 257864.162311873864383 ], [ 347759.844200000166893, 257869.305399999022484 ], [ 347878.688000001013279, 257857.003600001335144 ], [ 347889.25959999859333, 257822.098700001835823 ], [ 347898.530900001525879, 257779.219099998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-803-T014", "PARCEL_NAM": "4-45", "ACRE": "2.56", "LONGITUDE": -65.03488924, "LATITUDE": 18.35141852, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 431.67573911900001, "SHAPE_Area": 10736.9347994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347862.461199998855591, 257922.127700001001358 ], [ 347859.934500001370907, 257918.923599999397993 ], [ 347878.688000001013279, 257857.003600001335144 ], [ 347759.844200000166893, 257869.305399999022484 ], [ 347756.321637559914961, 257873.68199000885943 ], [ 347752.278755780484062, 257877.583027457643766 ], [ 347747.779200002551079, 257880.94709999859333 ], [ 347718.569099999964237, 257901.267200000584126 ], [ 347801.540299996733665, 257974.473499998450279 ], [ 347862.461199998855591, 257922.127700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-803-T014", "PARCEL_NAM": "4-46", "ACRE": "3.0", "LONGITUDE": -65.03567032, "LATITUDE": 18.35204209, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 457.88642383199999, "SHAPE_Area": 12206.817493099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347700.081200003623962, 258061.651399999856949 ], [ 347801.540299996733665, 257974.473499998450279 ], [ 347718.569099999964237, 257901.267200000584126 ], [ 347715.049046137253754, 257903.667222833872074 ], [ 347711.210426869511139, 257905.515435731213074 ], [ 347707.13910000026226, 257906.770500000566244 ], [ 347689.147399999201298, 257915.448899999260902 ], [ 347680.192153791489545, 257918.637061983637977 ], [ 347671.155699998140335, 257921.587200000882149 ], [ 347660.797399997711182, 257924.129700001329184 ], [ 347692.80460000038147, 258063.913800001144409 ], [ 347700.081200003623962, 258061.651399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-803-T014", "PARCEL_NAM": "4-48", "ACRE": "3.0", "LONGITUDE": -65.037363, "LATITUDE": 18.3521934, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 493.814289207, "SHAPE_Area": 11873.476394900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347600.67059999704361, 257930.900600001215935 ], [ 347582.467200003564358, 257929.63060000166297 ], [ 347573.202716697822325, 257928.359627998346696 ], [ 347564.079163099348079, 257926.30858180418727 ], [ 347555.162100002169609, 257923.492199998348951 ], [ 347544.330572891340125, 257919.785693475307198 ], [ 347533.57209999859333, 257915.87220000103116 ], [ 347532.990000002086163, 257918.782600000500679 ], [ 347496.911799997091293, 257972.225499998778105 ], [ 347483.248199999332428, 257992.866099998354912 ], [ 347491.327899999916553, 258065.865899998694658 ], [ 347500.110299997031689, 258060.647999998182058 ], [ 347504.170699998736382, 258057.303700000047684 ], [ 347520.352700002491474, 258050.892299998551607 ], [ 347523.606700003147125, 258047.541400000452995 ], [ 347526.848099999129772, 258045.668099999427795 ], [ 347534.122900001704693, 258043.616700001060963 ], [ 347542.124899998307228, 258050.859400000423193 ], [ 347551.818599998950958, 258048.827799998223782 ], [ 347562.334799997508526, 258044.903099998831749 ], [ 347569.591700002551079, 258044.962400000542402 ], [ 347572.800700001418591, 258046.888599999248981 ], [ 347576.771099999547005, 258054.098200000822544 ], [ 347577.532499998807907, 258059.381799999624491 ], [ 347577.433600001037121, 258070.991200000047684 ], [ 347600.67059999704361, 257930.900600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-1913-T81", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94475554, "LATITUDE": 18.33993882, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.740861301, "SHAPE_Area": 275.675144617 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357348.414800003170967, 256714.711500000208616 ], [ 357364.573399998247623, 256711.044100001454353 ], [ 357383.158100001513958, 256706.552200000733137 ], [ 357384.763599999248981, 256707.409699998795986 ], [ 357385.164899997413158, 256705.498199999332428 ], [ 357381.878100000321865, 256704.03319999948144 ], [ 357345.683100000023842, 256714.193300001323223 ], [ 357311.408900000154972, 256704.487300001084805 ], [ 357310.810999996960163, 256706.924699999392033 ], [ 357310.233400002121925, 256709.279599998146296 ], [ 357346.620200000703335, 256720.009300000965595 ], [ 357347.224399998784065, 256718.22580000013113 ], [ 357348.414800003170967, 256714.711500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": "A9-729-T008", "PARCEL_NAM": "16 of TRACT 1", "ACRE": null, "LONGITUDE": -64.92389661, "LATITUDE": 18.3390257, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.095950345, "SHAPE_Area": 66.322257015999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359543.707000002264977, 256621.874200001358986 ], [ 359543.415399998426437, 256639.530699998140335 ], [ 359551.191699996590614, 256623.557700000703335 ], [ 359543.707000002264977, 256621.874200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602022600", "MAP": "A9-477-T95", "PARCEL_NAM": "4", "ACRE": ".47", "LONGITUDE": -64.97008655, "LATITUDE": 18.36282642, "OBJECTID_1": 2436, "PARCEL_NO_": "102602022600", "Tax_Legal_": "NELTJEBERG 4 WESTERN PORTION", "Name": "THOMAS, TONI", "Address": "PO Box 9762", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48600, "Improved_V": 179400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.25492406699999, "SHAPE_Area": 1372.86233021 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354617.816200003027916, 259222.202100001275539 ], [ 354642.619400002062321, 259251.979200001806021 ], [ 354663.453699998557568, 259226.866300001740456 ], [ 354652.649599999189377, 259194.417700000107288 ], [ 354647.609804884705227, 259197.406154912838247 ], [ 354642.710400000214577, 259200.619600001722574 ], [ 354630.117382097232621, 259211.242541904910468 ], [ 354617.816200003027916, 259222.202100001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602021200", "MAP": "A9-477-T95", "PARCEL_NAM": "6", "ACRE": ".531", "LONGITUDE": -64.9697101, "LATITUDE": 18.36258861, "OBJECTID_1": 2427, "PARCEL_NO_": "102602021200", "Tax_Legal_": "NELTJEBERG 6 WEST POR. LITTLE NORTHSIDE", "Name": "GEORGES, ROSETTA & VINCENT", "Address": "PO Box 7544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49400, "Improved_V": 204200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.22451331, "SHAPE_Area": 1750.57571977 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354707.647399999201298, 259165.934000000357628 ], [ 354696.778509891708381, 259172.665360308892559 ], [ 354685.639225623919629, 259178.939141447423026 ], [ 354674.248800002038479, 259184.744500000029802 ], [ 354666.856648106710054, 259187.527259751514066 ], [ 354659.647969036537688, 259190.75566609861562 ], [ 354652.649599999189377, 259194.417700000107288 ], [ 354661.762100003659725, 259221.785700000822544 ], [ 354705.363799996674061, 259208.662900000810623 ], [ 354707.647399999201298, 259165.934000000357628 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050800", "MAP": "F9-1062-T62", "PARCEL_NAM": "2C", "ACRE": ".22", "LONGITUDE": -64.87766731000001, "LATITUDE": 18.3239448, "OBJECTID_1": 38093, "PARCEL_NO_": "107601050800", "Tax_Legal_": "2C MARIENDAHL RED HOOK QTR", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 71900, "Improved_V": 203700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.54265046200001, "SHAPE_Area": 1078.7465866 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364476.853299997746944, 255002.676199998706579 ], [ 364412.518899999558926, 254974.010800000280142 ], [ 364421.115500003099442, 254985.626800000667572 ], [ 364448.251599997282028, 255022.293999999761581 ], [ 364466.221799999475479, 255012.024999998509884 ], [ 364472.70830000191927, 255007.856199998408556 ], [ 364475.967699997127056, 255003.872099999338388 ], [ 364476.853299997746944, 255002.676199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010200", "MAP": "D9-6712-T000", "PARCEL_NAM": "3B", "ACRE": null, "LONGITUDE": -64.87882128, "LATITUDE": 18.32394477, "OBJECTID_1": 38302, "PARCEL_NO_": "107602010200", "Tax_Legal_": "PAR 3R-1-2, 3R-1-4 THRU 3R-1-6,3R-1 REM & 3J-1 REM MARIENDAL 4 RED HOOK QTR No.4 RED HOOK QTR", "Name": "LEON MONSANTO SR SIBILINGS FAMILY TRUST", "Address": "PO Box 304352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.50675605500001, "SHAPE_Area": 724.60329219699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364355.084299996495247, 254994.280699998140335 ], [ 364351.350199997425079, 254980.355900000780821 ], [ 364346.957999996840954, 254981.000399999320507 ], [ 364326.067299999296665, 254993.99040000140667 ], [ 364315.554700002074242, 254997.492899999022484 ], [ 364286.54450000077486, 255010.749499998986721 ], [ 364291.7753000035882, 255017.54450000077486 ], [ 364313.680200003087521, 255008.156500000506639 ], [ 364330.193099997937679, 255002.622499998658895 ], [ 364355.084299996495247, 254994.280699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010200", "MAP": "D9-8421-T010", "PARCEL_NAM": "NATURAL GUT", "ACRE": ".612", "LONGITUDE": -64.87962603, "LATITUDE": 18.32473942, "OBJECTID_1": 38302, "PARCEL_NO_": "107602010200", "Tax_Legal_": "PAR 3R-1-2, 3R-1-4 THRU 3R-1-6,3R-1 REM & 3J-1 REM MARIENDAL 4 RED HOOK QTR No.4 RED HOOK QTR", "Name": "LEON MONSANTO SR SIBILINGS FAMILY TRUST", "Address": "PO Box 304352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 380.72342210400001, "SHAPE_Area": 1282.4590949200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364162.494499996304512, 255138.962499998509884 ], [ 364169.207599997520447, 255147.538600001484156 ], [ 364226.473399996757507, 255109.756700001657009 ], [ 364245.523400001227856, 255079.69990000128746 ], [ 364293.874600000679493, 255042.451799999922514 ], [ 364304.103200003504753, 255034.572000000625849 ], [ 364298.573700003325939, 255026.934599999338388 ], [ 364291.314000003039837, 255032.771800000220537 ], [ 364254.134099997580051, 255065.017900001257658 ], [ 364237.851499997079372, 255079.139699999243021 ], [ 364215.892700001597404, 255108.622499998658895 ], [ 364165.855800002813339, 255142.58729999884963 ], [ 364162.494499996304512, 255138.962499998509884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010200", "MAP": "D9-8938-T014", "PARCEL_NAM": "3B-5", "ACRE": ".53", "LONGITUDE": -64.87912048, "LATITUDE": 18.32457959, "OBJECTID_1": 38302, "PARCEL_NO_": "107602010200", "Tax_Legal_": "PAR 3R-1-2, 3R-1-4 THRU 3R-1-6,3R-1 REM & 3J-1 REM MARIENDAL 4 RED HOOK QTR No.4 RED HOOK QTR", "Name": "LEON MONSANTO SR SIBILINGS FAMILY TRUST", "Address": "PO Box 304352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.40456600300001, "SHAPE_Area": 2545.81015196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364252.41160000115633, 255074.393500000238419 ], [ 364273.868000000715256, 255099.22410000115633 ], [ 364284.902900002896786, 255093.289599999785423 ], [ 364305.132700003683567, 255085.011500000953674 ], [ 364332.475900001823902, 255073.760600000619888 ], [ 364304.103200003504753, 255034.572000000625849 ], [ 364293.874600000679493, 255042.451799999922514 ], [ 364252.41160000115633, 255074.393500000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094200", "MAP": "D9-8937-T014", "PARCEL_NAM": "1A-3-2-1", "ACRE": ".46", "LONGITUDE": -64.94699501, "LATITUDE": 18.34806792, "OBJECTID_1": 9326, "PARCEL_NO_": "105301094200", "Tax_Legal_": "1A-3-2 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, LOUIS J.", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 113200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.861234276, "SHAPE_Area": 1930.15065082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357107.698700003325939, 257586.252399999648333 ], [ 357097.496299996972084, 257582.785500001162291 ], [ 357076.54450000077486, 257572.843600001186132 ], [ 357079.415399998426437, 257618.0962999984622 ], [ 357079.898000001907349, 257624.661400001496077 ], [ 357080.566699996590614, 257633.75959999859333 ], [ 357090.688000001013279, 257632.261700000613928 ], [ 357103.531800001859665, 257634.563099998980761 ], [ 357116.162900000810623, 257639.611699998378754 ], [ 357122.750699996948242, 257641.377199999988079 ], [ 357107.698700003325939, 257586.252399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301150500", "MAP": "D9-8940-T014", "PARCEL_NAM": "212A-3-A", "ACRE": null, "LONGITUDE": -64.94699274, "LATITUDE": 18.34172444, "OBJECTID_1": 9504, "PARCEL_NO_": "105301150500", "Tax_Legal_": "ALTONA & WELGUNST 212A-3 KRONP. PRINCE QTR.", "Name": "BRIDGEWATER, OSCAR & STEPHANIE", "Address": "P.O. BOX 5420", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 75100, "Improved_V": 310000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.158688911900001, "SHAPE_Area": 33.878051946100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357100.016000002622604, 256919.41499999910593 ], [ 357101.594200000166893, 256919.650699999183416 ], [ 357104.998000003397465, 256891.515500001609325 ], [ 357104.227300003170967, 256891.304999999701977 ], [ 357100.016000002622604, 256919.41499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020100", "MAP": "D9-8942-T014", "PARCEL_NAM": "B", "ACRE": ".25", "LONGITUDE": -64.94962062, "LATITUDE": 18.32261479, "OBJECTID_1": 87194, "PARCEL_NO_": "507104020100", "Tax_Legal_": "WATER ISLAND PLOT \"B\" No.10 SOUTHSIDE QTR.", "Name": "AQUATIES LLC", "Address": "18 Warrington Rd", "City": "Vernon Hills", "State": "Illinois", "Zip": 60061, "Country": "United States", "Land_Value": 135400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.82408643, "SHAPE_Area": 736.20828716799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356848.019599996507168, 254773.412799999117851 ], [ 356818.7820999994874, 254786.091499999165535 ], [ 356830.124799996614456, 254797.539799999445677 ], [ 356846.994400002062321, 254805.066100001335144 ], [ 356861.590800002217293, 254795.475299999117851 ], [ 356848.019599996507168, 254773.412799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104020100", "MAP": "D9-8942-T014", "PARCEL_NAM": "B-2", "ACRE": ".258", "LONGITUDE": -64.94975146, "LATITUDE": 18.32220047, "OBJECTID_1": 87194, "PARCEL_NO_": "507104020100", "Tax_Legal_": "WATER ISLAND PLOT \"B\" No.10 SOUTHSIDE QTR.", "Name": "AQUATIES LLC", "Address": "18 Warrington Rd", "City": "Vernon Hills", "State": "Illinois", "Zip": 60061, "Country": "United States", "Land_Value": 135400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.19762968699999, "SHAPE_Area": 758.46677128399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356834.049500003457069, 254715.456500001251698 ], [ 356827.436200000345707, 254714.688900001347065 ], [ 356825.112400002777576, 254720.8918999992311 ], [ 356813.301600001752377, 254752.4189000017941 ], [ 356848.019599996507168, 254773.412799999117851 ], [ 356834.903599999845028, 254752.090199999511242 ], [ 356834.049500003457069, 254715.456500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804025400", "MAP": "D9-8943-T014", "PARCEL_NAM": "10-J-2-REM", "ACRE": ".22", "LONGITUDE": -64.94061253, "LATITUDE": 18.35408465, "OBJECTID_1": 4558, "PARCEL_NO_": "102804025400", "Tax_Legal_": "LERKENLUND 10-J-2 GT. NORTHSIDE", "Name": "GORDON, GLEN R", "Address": "10504 Angel Dreams Ave", "City": "Las Vegas", "State": "Nevada", "Zip": 89144, "Country": "United States", "Land_Value": 82700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.78166122499999, "SHAPE_Area": 887.81613652800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357761.103699997067451, 258249.361900001764297 ], [ 357757.056599996984005, 258315.64979999884963 ], [ 357766.987800002098083, 258315.904500000178814 ], [ 357769.225199997425079, 258316.286899998784065 ], [ 357774.863099999725819, 258243.352800000458956 ], [ 357761.103699997067451, 258249.361900001764297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030200", "MAP": null, "PARCEL_NAM": "19-7", "ACRE": null, "LONGITUDE": -64.87387881, "LATITUDE": 18.32325511, "OBJECTID_1": 38465, "PARCEL_NO_": "107602030200", "Tax_Legal_": "19 ESTATE NADIR NO.2 RED HOOK QTR", "Name": "STUART, DANNA", "Address": "PO Box 302651", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 25900, "Improved_V": 128000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.414129477, "SHAPE_Area": 892.483622879 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364872.802799999713898, 254939.252099998295307 ], [ 364854.122000001370907, 254911.08559999987483 ], [ 364828.1841000020504, 254915.465199999511242 ], [ 364829.079700000584126, 254918.313900001347065 ], [ 364830.613200001418591, 254927.614599999040365 ], [ 364830.514300003647804, 254939.223900001496077 ], [ 364834.545800000429153, 254939.256900001317263 ], [ 364872.802799999713898, 254939.252099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102604021500", "MAP": "F9-805-T61", "PARCEL_NAM": "39-G", "ACRE": ".06", "LONGITUDE": -64.96639355000001, "LATITUDE": 18.35181196, "OBJECTID_1": 2705, "PARCEL_NO_": "102604021500", "Tax_Legal_": "39G ESTATE LINDBERG BAY No.4A SOUTHSIDE QTR.", "Name": "CHRISTIAN, DAPHNE", "Address": "PO Box 5107", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.7078797124, "SHAPE_Area": 302.61075264900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355051.818400003015995, 258015.488699998706579 ], [ 355050.563900001347065, 257997.234499998390675 ], [ 355033.681599996984005, 257998.635999999940395 ], [ 355035.944099999964237, 258017.019600000232458 ], [ 355051.818400003015995, 258015.488699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507201010200", "MAP": null, "PARCEL_NAM": "112", "ACRE": null, "LONGITUDE": -64.9493762, "LATITUDE": 18.3268533, "OBJECTID_1": 87236, "PARCEL_NO_": "507201010200", "Tax_Legal_": "112 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CAROLINA POINT PLANTATION LLC", "Address": "PO Box 64", "City": "ST. CHARLES", "State": "Illinois", "Zip": 60174, "Country": "United States", "Land_Value": 374000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.10144757699999, "SHAPE_Area": 1621.38469216 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356843.654600001871586, 255214.44990000128746 ], [ 356828.334799997508526, 255223.708500001579523 ], [ 356839.305299997329712, 255234.367499999701977 ], [ 356840.894599996507168, 255237.124699998646975 ], [ 356842.446099996566772, 255244.314599998295307 ], [ 356847.195799998939037, 255254.697000000625849 ], [ 356865.503700003027916, 255282.711199998855591 ], [ 356875.902999997138977, 255292.506700001657009 ], [ 356879.113899998366833, 255294.221700001507998 ], [ 356901.906400002539158, 255269.076999999582767 ], [ 356895.454099997878075, 255269.235300000756979 ], [ 356888.206299997866154, 255268.12049999833107 ], [ 356880.177299998700619, 255264.043999999761581 ], [ 356851.403599999845028, 255234.044300001114607 ], [ 356847.427799999713898, 255227.4679000005126 ], [ 356845.066399998962879, 255220.693599998950958 ], [ 356843.654600001871586, 255214.44990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401602400", "MAP": null, "PARCEL_NAM": "40CA", "ACRE": null, "LONGITUDE": -64.92593165, "LATITUDE": 18.33988205, "OBJECTID_1": 12439, "PARCEL_NO_": "105401602400", "Tax_Legal_": "TAARNEBERG 40CA KINGS QUARTER", "Name": "FRANCIS, MARION", "Address": "1351 Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2500, "Improved_V": 87300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.760611486400002, "SHAPE_Area": 141.28860506800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359321.528999999165535, 256724.187300000339746 ], [ 359333.629399999976158, 256728.614799998700619 ], [ 359337.611000001430511, 256718.467300001531839 ], [ 359338.87780000269413, 256715.238699998706579 ], [ 359331.672700002789497, 256716.428599998354912 ], [ 359329.194499999284744, 256716.837799999862909 ], [ 359325.525100000202656, 256715.323699999600649 ], [ 359321.528999999165535, 256724.187300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401602300", "MAP": "D9-8950-T014", "PARCEL_NAM": "40C-1", "ACRE": null, "LONGITUDE": -64.9260011, "LATITUDE": 18.34003636, "OBJECTID_1": 12438, "PARCEL_NO_": "105401602300", "Tax_Legal_": "TAARNEBERG 40CB KINGS QTR", "Name": "40-CB LLC", "Address": "PO Box 600177", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9400, "Improved_V": 169600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.680409943899999, "SHAPE_Area": 16.0504902327 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359330.045800000429153, 256737.747999999672174 ], [ 359315.538000002503395, 256737.475400000810623 ], [ 359322.655100002884865, 256739.821800000965595 ], [ 359330.045800000429153, 256737.747999999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703042400", "MAP": "G9-1558-T70", "PARCEL_NAM": "37G-1", "ACRE": ".309", "LONGITUDE": -64.96518132, "LATITUDE": 18.35010085, "OBJECTID_1": 3361, "PARCEL_NO_": "102703042400", "Tax_Legal_": "LINDBERG BAY 37G SOUTHSIDE QTR", "Name": "SPRAUVE, ALBERTHA JENNINGS-TRUS", "Address": "P.O. BOX 2764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42100, "Improved_V": 231200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.07149211399999, "SHAPE_Area": 1149.5150788000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355215.216700002551079, 257817.73030000180006 ], [ 355187.141999997198582, 257817.848799999803305 ], [ 355177.828699998557568, 257816.790500000119209 ], [ 355156.450300000607967, 257802.079599998891354 ], [ 355154.158595590968616, 257801.532577231875621 ], [ 355151.808937036199495, 257801.358658615674358 ], [ 355149.461668663367163, 257801.562310757581145 ], [ 355147.177073414437473, 257802.138303428888321 ], [ 355145.013824649562594, 257803.071843888814328 ], [ 355143.027479288168252, 257804.338956793886609 ], [ 355141.269050986564253, 257805.907099936914165 ], [ 355139.783699996769428, 257807.736000001430511 ], [ 355140.09179999679327, 257812.900199998170137 ], [ 355143.266699999570847, 257818.836800001561642 ], [ 355146.46679999679327, 257821.818300001323223 ], [ 355151.263300001621246, 257826.712699998170137 ], [ 355152.581799998879433, 257827.403599999845028 ], [ 355215.846699997782707, 257829.593499999493361 ], [ 355215.761100001633167, 257828.08500000089407 ], [ 355215.216700002551079, 257817.73030000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003028700", "MAP": "D9-8220-T008", "PARCEL_NAM": "10A", "ACRE": ".50", "LONGITUDE": -64.91223632000001, "LATITUDE": 18.35335186, "OBJECTID_1": 5795, "PARCEL_NO_": "103003028700", "Tax_Legal_": "10A CONS. ST JOSEPH&ROSENDAHL &1/8 INT ROW 10 REM NO.4 GREAT NORTHSIDE QTR", "Name": "POTTER, MICHELLE A.", "Address": "10A St Joseph & Rosendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 74900, "Improved_V": 326600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.80334962000001, "SHAPE_Area": 2752.0841348600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360771.692100003361702, 258200.752599999308586 ], [ 360730.234999999403954, 258145.106800001114607 ], [ 360728.61879999935627, 258145.515799999237061 ], [ 360730.188199996948242, 258150.594900000840425 ], [ 360734.178400002419949, 258155.482700001448393 ], [ 360742.929200001060963, 258169.4864999987185 ], [ 360742.913000002503395, 258171.386199999600649 ], [ 360753.919100001454353, 258204.618000000715256 ], [ 360754.682199999690056, 258209.690499998629093 ], [ 360752.981499999761581, 258220.020100001245737 ], [ 360750.530199997127056, 258223.799699999392033 ], [ 360743.183499999344349, 258234.294300001114607 ], [ 360742.333999998867512, 258239.35359999909997 ], [ 360744.661200001835823, 258250.138399999588728 ], [ 360750.247900001704693, 258256.939100001007318 ], [ 360761.473300002515316, 258264.419300001114607 ], [ 360776.058799996972084, 258256.094900000840425 ], [ 360801.986699998378754, 258241.530600000172853 ], [ 360771.692100003361702, 258200.752599999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-806-T014", "PARCEL_NAM": "B-12", "ACRE": "7.3", "LONGITUDE": -64.95675191, "LATITUDE": 18.31170326, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2621.1878969899999, "SHAPE_Area": 28574.6091523 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356048.528499998152256, 253674.304000001400709 ], [ 356051.639561675081495, 253672.905140126182232 ], [ 356054.935694059415255, 253672.02705982644693 ], [ 356058.330365093250293, 253671.69281099649379 ], [ 356061.734455822326709, 253671.911168538499624 ], [ 356065.058600001037121, 253672.676399998366833 ], [ 356072.536995646252763, 253676.683708768308861 ], [ 356080.211636765336152, 253680.301001775136683 ], [ 356088.062200002372265, 253683.518699999898672 ], [ 356093.666434831800871, 253684.743659361934988 ], [ 356099.124676766106859, 253686.508756653376622 ], [ 356104.384999997913837, 253688.797200001776218 ], [ 356111.29164628428407, 253692.362052714655874 ], [ 356118.442886462609749, 253695.406671196571551 ], [ 356125.799599997699261, 253697.91440000012517 ], [ 356130.412005335034337, 253698.372092514560791 ], [ 356134.923962461645715, 253699.433227906760294 ], [ 356139.256876034021843, 253701.079321891913423 ], [ 356143.335269530070946, 253703.281700588820968 ], [ 356147.088100001215935, 253706.002000000327826 ], [ 356151.128310094820336, 253709.266933478589635 ], [ 356155.607743366621435, 253711.897098070621723 ], [ 356160.427483645558823, 253713.834413703501923 ], [ 356165.481100000441074, 253715.036100000143051 ], [ 356169.69319929019548, 253716.615460707631428 ], [ 356174.059433832764626, 253717.698122515488649 ], [ 356178.521446490078233, 253718.269615050259745 ], [ 356183.019599996507168, 253718.322299998253584 ], [ 356186.977790347591508, 253717.410060154215898 ], [ 356191.027020858949982, 253717.088836471753893 ], [ 356195.079533592797816, 253717.365590749628609 ], [ 356199.047499476582743, 253718.234324963093968 ], [ 356202.844921799900476, 253719.676211257639807 ], [ 356206.389499999582767, 253721.660000000149012 ], [ 356217.77852928993525, 253727.174167911434779 ], [ 356228.893700003623962, 253733.221400000154972 ], [ 356232.472449824330397, 253735.368888052151306 ], [ 356236.327321788063273, 253736.968612202181248 ], [ 356240.375042919768021, 253737.986015196394874 ], [ 356244.52817431522999, 253738.399119087174768 ], [ 356248.696999996900558, 253738.199000000953674 ], [ 356252.839237768435851, 253736.902171944500878 ], [ 356256.752696548355743, 253735.02474361268105 ], [ 356260.356481853348669, 253732.605523027596064 ], [ 356263.576100411068182, 253729.694517512893071 ], [ 356266.344999998807907, 253726.35190000012517 ], [ 356270.770519722078461, 253722.73808187348186 ], [ 356274.826351691037416, 253718.713764128449839 ], [ 356278.474580200854689, 253714.316567861096701 ], [ 356281.681100003421307, 253709.587600000202656 ], [ 356283.754537115746643, 253706.862445016944548 ], [ 356285.380889328836929, 253703.849043347639963 ], [ 356286.520908316771965, 253700.620116614416474 ], [ 356287.147082304116338, 253697.25358764838893 ], [ 356287.244300000369549, 253693.830699998885393 ], [ 356283.830604181333911, 253685.948221468453994 ], [ 356280.977760558307637, 253677.845871797529981 ], [ 356278.699799999594688, 253669.563499998301268 ], [ 356273.771753087814432, 253657.64838148857234 ], [ 356269.389499999582767, 253645.521899998188019 ], [ 356267.964643357612658, 253638.864405515691033 ], [ 356267.011057861614972, 253632.123253986734198 ], [ 356266.533456567034591, 253625.331763263937319 ], [ 356266.534199997782707, 253618.523499999195337 ], [ 356274.23759999871254, 253593.203200001269579 ], [ 356276.299007515946869, 253588.518561037693871 ], [ 356278.861602960387245, 253584.088171917159343 ], [ 356281.894489483267535, 253579.965449211129453 ], [ 356285.361100003123283, 253576.200100000947714 ], [ 356292.383480249147397, 253571.159711422893452 ], [ 356299.074100002646446, 253565.686599999666214 ], [ 356301.312526356021408, 253563.563803582976107 ], [ 356303.179431662603747, 253561.107896063884255 ], [ 356304.625971606641542, 253558.383131972019328 ], [ 356305.61429999768734, 253555.460799999535084 ], [ 356306.440700002014637, 253552.439100001007318 ], [ 356304.846845343301538, 253546.356289242219646 ], [ 356303.758100003004074, 253540.163100000470877 ], [ 356256.524400003254414, 253504.330099999904633 ], [ 356243.680900000035763, 253497.469900000840425 ], [ 356230.011399999260902, 253492.92509999871254 ], [ 356219.543700002133846, 253491.150699999183416 ], [ 356198.593999996781349, 253489.290500000119209 ], [ 356177.669399999082088, 253484.475099999457598 ], [ 356163.195299997925758, 253479.712600000202656 ], [ 356106.145000003278255, 253456.025400001555681 ], [ 356101.314300000667572, 253455.141499999910593 ], [ 356074.804899998009205, 253443.314399998635054 ], [ 356052.299999997019768, 253434.6864 ], [ 356044.700099997222424, 253430.845800001174212 ], [ 356038.322599999606609, 253429.313400000333786 ], [ 356028.268399998545647, 253425.080099999904633 ], [ 356021.653800003230572, 253423.492600001394749 ], [ 356003.13289999961853, 253421.905099999159575 ], [ 355986.464100003242493, 253424.286299999803305 ], [ 355968.737000003457069, 253430.90089999884367 ], [ 355954.413500003516674, 253436.680900000035763 ], [ 355952.92400000244379, 253457.304499998688698 ], [ 355952.8125, 253470.391399998217821 ], [ 355957.670199997723103, 253468.109099999070168 ], [ 355964.928800001740456, 253467.957400001585484 ], [ 355994.814499996602535, 253462.080299999564886 ], [ 356018.193999998271465, 253462.693799998611212 ], [ 356026.237300001084805, 253465.081700000911951 ], [ 356029.442800000309944, 253467.429999999701977 ], [ 356038.281700000166893, 253471.090900000184774 ], [ 356047.896300002932549, 253478.346799999475479 ], [ 356050.288199998438358, 253481.532800000160933 ], [ 356054.305399999022484, 253483.254399999976158 ], [ 356061.572999998927116, 253482.0472999997437 ], [ 356066.468400001525879, 253475.332400001585484 ], [ 356070.5, 253475.36540000140667 ], [ 356085.040600001811981, 253472.317999999970198 ], [ 356105.194799996912479, 253472.905099999159575 ], [ 356114.053400002419949, 253474.244199998676777 ], [ 356119.681400001049042, 253476.190099999308586 ], [ 356127.706799998879433, 253480.688700001686811 ], [ 356130.109600000083447, 253482.608199998736382 ], [ 356130.894299998879433, 253485.147799998521805 ], [ 356141.311599999666214, 253492.832400001585484 ], [ 356144.52250000089407, 253494.547400001436472 ], [ 356156.58839999884367, 253498.023699998855591 ], [ 356163.836199998855591, 253499.1385000012815 ], [ 356170.265100002288818, 253501.724199999123812 ], [ 356178.27250000089407, 253508.333700001239777 ], [ 356187.899700000882149, 253514.111999999731779 ], [ 356197.544900000095367, 253517.779500000178814 ], [ 356213.575900003314018, 253529.098700001835823 ], [ 356218.399300001561642, 253530.826900001615286 ], [ 356238.531999997794628, 253533.947000000625849 ], [ 356252.133199997246265, 253546.512800000607967 ], [ 356256.951300002634525, 253548.874299999326468 ], [ 356261.756800003349781, 253552.713300000876188 ], [ 356264.928099997341633, 253559.07209999859333 ], [ 356271.317500002682209, 253566.301500000059605 ], [ 356272.872500002384186, 253573.069299999624491 ], [ 356272.05009999871254, 253574.962400000542402 ], [ 356271.974500000476837, 253583.8277000002563 ], [ 356266.236800000071526, 253594.757599998265505 ], [ 356266.177500002086163, 253601.723200000822544 ], [ 356262.892899997532368, 253608.662399999797344 ], [ 356260.315700002014637, 253627.217500001192093 ], [ 356260.236599996685982, 253636.504999998956919 ], [ 356264.20160000026226, 253644.347899999469519 ], [ 356264.941399998962879, 253652.16440000012517 ], [ 356268.067800000309944, 253663.800200000405312 ], [ 356268.807499997317791, 253671.616700001060963 ], [ 356276.730400003492832, 253688.146800000220537 ], [ 356278.335799999535084, 253689.004299998283386 ], [ 356279.926899999380112, 253691.550500001758337 ], [ 356281.501800000667572, 253695.996300000697374 ], [ 356281.460400000214577, 253700.851100001484156 ], [ 356273.291199997067451, 253713.238800000399351 ], [ 356266.804700002074242, 253717.407600000500679 ], [ 356255.413800001144409, 253729.346700001507998 ], [ 356248.94539999961853, 253731.404699999839067 ], [ 356241.692100003361702, 253730.923099998384714 ], [ 356225.643200002610683, 253721.714800000190735 ], [ 356210.377199999988079, 253715.256999999284744 ], [ 356203.935699999332428, 253714.148800000548363 ], [ 356180.561599999666214, 253712.901999998837709 ], [ 356171.721000000834465, 253709.452199999243021 ], [ 356146.854800000786781, 253694.049899999052286 ], [ 356142.868199996650219, 253688.739999998360872 ], [ 356130.85080000013113, 253679.564599998295307 ], [ 356112.361299999058247, 253672.86939999833703 ], [ 356105.92339999973774, 253671.339000001549721 ], [ 356100.311599999666214, 253667.493400000035763 ], [ 356099.521499998867512, 253665.587099999189377 ], [ 356097.91610000282526, 253664.729600001126528 ], [ 356090.731200002133846, 253656.227000001817942 ], [ 356089.167099997401237, 253650.514699999243021 ], [ 356085.995800003409386, 253644.155900001525879 ], [ 356085.265000000596046, 253635.284000001847744 ], [ 356086.922600001096725, 253630.020300000905991 ], [ 356089.485399998724461, 253613.153799999505281 ], [ 356087.899700000882149, 253609.974399998784065 ], [ 356087.935699999332428, 253605.75279999896884 ], [ 356086.369800001382828, 253600.251499999314547 ], [ 356084.782399997115135, 253597.28319999948144 ], [ 356085.682199999690056, 253586.313700001686811 ], [ 356088.97580000013113, 253578.319099999964237 ], [ 356092.229800000786781, 253574.968299999833107 ], [ 356109.252300001680851, 253564.55290000140667 ], [ 356122.973999999463558, 253562.976500000804663 ], [ 356148.885600000619888, 253550.311799999326468 ], [ 356157.852200001478195, 253538.986200001090765 ], [ 356155.479999996721745, 253533.478300001472235 ], [ 356152.272699996829033, 253531.3412000015378 ], [ 356145.017700001597404, 253531.070700000971556 ], [ 356141.004100002348423, 253528.926899999380112 ], [ 356113.648900002241135, 253521.736900001764297 ], [ 356105.591099999845028, 253521.03770000115037 ], [ 356100.746100001037121, 253521.842399999499321 ], [ 356095.89019999653101, 253523.913600001484156 ], [ 356093.4712999984622, 253523.893800001591444 ], [ 356090.253200002014637, 253523.02309999987483 ], [ 356085.444099999964237, 253519.606199998408556 ], [ 356082.227799996733665, 253518.524399999529123 ], [ 356057.22860000282526, 253518.741999998688698 ], [ 356058.798000000417233, 253523.821100000292063 ], [ 356062.01969999819994, 253524.26969999819994 ], [ 356064.303800001740456, 253540.120400000363588 ], [ 356063.459700003266335, 253544.546399999409914 ], [ 356060.200300000607967, 253548.530499998480082 ], [ 356060.124700002372265, 253557.395799998193979 ], [ 356057.63570000231266, 253565.6081000007689 ], [ 356054.376299999654293, 253569.592199999839067 ], [ 356046.309500001370907, 253569.948399998247623 ], [ 356042.251000002026558, 253573.081599999219179 ], [ 356042.211400002241135, 253577.725299999117851 ], [ 356038.928599998354912, 253584.453400000929832 ], [ 356029.141400001943111, 253597.461100000888109 ], [ 356024.258599996566772, 253602.698499999940395 ], [ 356026.645199999213219, 253606.517700001597404 ], [ 356026.596600003540516, 253612.216899998486042 ], [ 356022.478699997067451, 253622.315600000321865 ], [ 356022.4391999989748, 253626.959399998188019 ], [ 356020.795999996364117, 253630.534499999135733 ], [ 356020.723999999463558, 253638.977699998766184 ], [ 356014.975599996745586, 253651.1739999987185 ], [ 356015.73870000243187, 253656.246500000357628 ], [ 356009.176700003445148, 253669.280600000172853 ], [ 356005.915500000119209, 253673.47580000013113 ], [ 356001.806599996984005, 253682.519200000911951 ], [ 355995.26799999922514, 253692.809300001710653 ], [ 355993.615800000727177, 253697.439800001680851 ], [ 355987.932099997997284, 253702.037399999797344 ], [ 355983.072599999606609, 253704.530699998140335 ], [ 355975.804999999701977, 253705.737799998372793 ], [ 355973.393299996852875, 253704.873700000345707 ], [ 355973.432800002396107, 253700.229899998754263 ], [ 355975.074199996888638, 253696.865899998694658 ], [ 355974.285899996757507, 253694.748500000685453 ], [ 355971.089400000870228, 253691.344799999147654 ], [ 355959.792099997401237, 253692.307799998670816 ], [ 355958.166900001466274, 253693.772199999541044 ], [ 355958.148900002241135, 253695.883000001311302 ], [ 355960.553400002419949, 253697.591400001198053 ], [ 355960.512100003659725, 253702.446199998259544 ], [ 355958.066200003027916, 253705.592599999159575 ], [ 355958.035599999129772, 253709.180900000035763 ], [ 355933.682599999010563, 253728.191100001335144 ], [ 355911.869000002741814, 253733.07880000025034 ], [ 355905.423900000751019, 253732.392799999564886 ], [ 355919.81700000166893, 253746.653900001198053 ], [ 355920.608999997377396, 253748.34910000115633 ], [ 355926.233400002121925, 253750.717199999839067 ], [ 355938.333400003612041, 253750.182900000363588 ], [ 355946.414499998092651, 253748.138099998235703 ], [ 355973.137900002300739, 253734.846900001168251 ], [ 355989.289399996399879, 253732.023699998855591 ], [ 356031.464000001549721, 253703.449099998921156 ], [ 356035.538699999451637, 253698.416200000792742 ], [ 356039.708700001239777, 253682.196100000292063 ], [ 356045.762900002300739, 253634.116399999707937 ], [ 356047.438400000333786, 253626.741799999028444 ], [ 356047.503200002014637, 253619.14299999922514 ], [ 356046.713100001215935, 253617.236600000411272 ], [ 356043.496799997985363, 253616.154899999499321 ], [ 356044.342699997127056, 253611.517700001597404 ], [ 356049.1841000020504, 253611.135200001299381 ], [ 356050.807599999010563, 253609.881900001317263 ], [ 356054.192800000309944, 253591.122299998998642 ], [ 356056.683700002729893, 253582.698899999260902 ], [ 356059.138599999248981, 253578.497099999338388 ], [ 356059.979099996387959, 253574.493200000375509 ], [ 356068.148299999535084, 253562.105599999427795 ], [ 356074.559199996292591, 253566.802099999040365 ], [ 356072.12049999833107, 253569.104200001806021 ], [ 356066.390000000596046, 253579.189800001680851 ], [ 356063.0945999994874, 253587.395399998873472 ], [ 356061.422700002789497, 253594.347800001502037 ], [ 356052.130699999630451, 253643.878800000995398 ], [ 356048.528499998152256, 253674.304000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "509202040100", "MAP": null, "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95561102000001, "LATITUDE": 18.31259107, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 922.78676814999994, "SHAPE_Area": 2716.5517368199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356303.758100003004074, 253540.163100000470877 ], [ 356304.846845343301538, 253546.356289242219646 ], [ 356306.440700002014637, 253552.439100001007318 ], [ 356305.61429999768734, 253555.460799999535084 ], [ 356304.625971606641542, 253558.383131972019328 ], [ 356303.179431662603747, 253561.107896063884255 ], [ 356301.312526356021408, 253563.563803582976107 ], [ 356299.074100002646446, 253565.686599999666214 ], [ 356292.383480249147397, 253571.159711422893452 ], [ 356285.361100003123283, 253576.200100000947714 ], [ 356281.894489483267535, 253579.965449211129453 ], [ 356278.861602960387245, 253584.088171917159343 ], [ 356276.299007515946869, 253588.518561037693871 ], [ 356274.23759999871254, 253593.203200001269579 ], [ 356266.534199997782707, 253618.523499999195337 ], [ 356266.533456567034591, 253625.331763263937319 ], [ 356267.011057861614972, 253632.123253986734198 ], [ 356267.964643357612658, 253638.864405515691033 ], [ 356269.389499999582767, 253645.521899998188019 ], [ 356273.771753087814432, 253657.64838148857234 ], [ 356278.699799999594688, 253669.563499998301268 ], [ 356280.977760558307637, 253677.845871797529981 ], [ 356283.830604181275703, 253685.948221468483098 ], [ 356287.244300000369549, 253693.830699998885393 ], [ 356287.147082304116338, 253697.25358764838893 ], [ 356286.520908316771965, 253700.620116614416474 ], [ 356285.380889328836929, 253703.849043347639963 ], [ 356283.754537115746643, 253706.862445016944548 ], [ 356281.681100003421307, 253709.587600000202656 ], [ 356278.474580200854689, 253714.316567861096701 ], [ 356274.826351691037416, 253718.713764128449839 ], [ 356270.770519722078461, 253722.73808187348186 ], [ 356266.344999998807907, 253726.35190000012517 ], [ 356263.576100411068182, 253729.694517512893071 ], [ 356260.356481853348669, 253732.605523027596064 ], [ 356256.752696548355743, 253735.02474361268105 ], [ 356252.839237768435851, 253736.902171944500878 ], [ 356248.696999996900558, 253738.199000000953674 ], [ 356244.52817431522999, 253738.399119087174768 ], [ 356240.375042919768021, 253737.986015196394874 ], [ 356236.327321788063273, 253736.968612202181248 ], [ 356232.472449824330397, 253735.368888052151306 ], [ 356228.893700003623962, 253733.221400000154972 ], [ 356217.778529289877042, 253727.174167911463883 ], [ 356206.389499999582767, 253721.660000000149012 ], [ 356202.844921799900476, 253719.676211257639807 ], [ 356199.047499476582743, 253718.234324963093968 ], [ 356195.079533592797816, 253717.365590749628609 ], [ 356191.027020858949982, 253717.088836471753893 ], [ 356186.977790347591508, 253717.410060154215898 ], [ 356183.019599996507168, 253718.322299998253584 ], [ 356178.521446490078233, 253718.269615050259745 ], [ 356174.059433832764626, 253717.698122515488649 ], [ 356169.69319929019548, 253716.615460707631428 ], [ 356165.481100000441074, 253715.036100000143051 ], [ 356160.427483645558823, 253713.834413703501923 ], [ 356155.607743366621435, 253711.897098070621723 ], [ 356151.128310094820336, 253709.266933478589635 ], [ 356147.088100001215935, 253706.002000000327826 ], [ 356143.335269530070946, 253703.281700588850072 ], [ 356139.256876034021843, 253701.079321891942527 ], [ 356134.923962461645715, 253699.433227906818502 ], [ 356130.412005334976129, 253698.372092514589895 ], [ 356125.799599997699261, 253697.91440000012517 ], [ 356118.442886462609749, 253695.406671196571551 ], [ 356111.29164628428407, 253692.362052714655874 ], [ 356104.384999997913837, 253688.797200001776218 ], [ 356099.124676766106859, 253686.508756653376622 ], [ 356093.666434831800871, 253684.743659361934988 ], [ 356088.062200002372265, 253683.518699999898672 ], [ 356080.211636765336152, 253680.301001775136683 ], [ 356072.536995646252763, 253676.683708768308861 ], [ 356065.058600001037121, 253672.676399998366833 ], [ 356061.734455822326709, 253671.911168538499624 ], [ 356058.330365093250293, 253671.69281099649379 ], [ 356054.935694059415255, 253672.02705982644693 ], [ 356051.639561675081495, 253672.905140126182232 ], [ 356048.528499998152256, 253674.304000001400709 ], [ 356047.786200001835823, 253680.573499999940395 ], [ 356047.06360000371933, 253683.180500000715256 ], [ 356048.786625091277529, 253681.405588118359447 ], [ 356050.777079118764959, 253679.936840213922551 ], [ 356052.981207410455681, 253678.813921643362846 ], [ 356055.339484752446879, 253678.067158213205403 ], [ 356057.788222944829613, 253677.716717194532976 ], [ 356060.261290780443233, 253677.772062681091484 ], [ 356062.691899999976158, 253678.231699999421835 ], [ 356070.435762105509639, 253682.341709625034127 ], [ 356078.380233022209723, 253686.049129386403365 ], [ 356086.504399999976158, 253689.344200000166893 ], [ 356091.682392247661483, 253690.42450821629609 ], [ 356096.726356589468196, 253692.017333780240733 ], [ 356101.585699997842312, 253694.106699999421835 ], [ 356109.09126527630724, 253697.956821695377585 ], [ 356116.86734521627659, 253701.22630605683662 ], [ 356124.869099996984005, 253703.896299999207258 ], [ 356128.814055165625177, 253704.195367638516473 ], [ 356132.68205928732641, 253705.026425307820318 ], [ 356136.401709783356637, 253706.374131849530386 ], [ 356139.904342653113417, 253708.213608871737961 ], [ 356143.125299997627735, 253710.510899998247623 ], [ 356146.725023103703279, 253713.494540013518417 ], [ 356150.641341826994903, 253716.048470678011654 ], [ 356154.823218360892497, 253718.139408944960451 ], [ 356159.216154126450419, 253719.740105524891987 ], [ 356163.762900002300739, 253720.829700000584126 ], [ 356168.671438094053883, 253722.573392219783273 ], [ 356173.74886359233642, 253723.73698968582903 ], [ 356178.926870571449399, 253724.30483867766452 ], [ 356184.135799996554852, 253724.269299998879433 ], [ 356187.395263601792976, 253723.422467639175011 ], [ 356190.746759854839183, 253723.092769435461378 ], [ 356194.108756998146418, 253723.288225946918828 ], [ 356197.399467819428537, 253724.004082308354555 ], [ 356200.538839286775328, 253725.222923901630566 ], [ 356203.450499996542931, 253726.915100000798702 ], [ 356214.699031786934938, 253732.337913869909244 ], [ 356225.675499998033047, 253738.292199999094009 ], [ 356230.039391878759488, 253740.860159258096246 ], [ 356234.732995949161705, 253742.759645486745285 ], [ 356239.654603351780679, 253743.949497442808934 ], [ 356244.697564471804071, 253744.403931425476912 ], [ 356249.752599999308586, 253744.113099999725819 ], [ 356254.612279156863224, 253742.649454259983031 ], [ 356259.219410654332023, 253740.520351225568447 ], [ 356263.48338307015365, 253737.767665336694336 ], [ 356267.320334113552235, 253734.445535439066589 ], [ 356270.654799997806549, 253730.619300000369549 ], [ 356275.205093586060684, 253726.815584176656557 ], [ 356279.390299835125916, 253722.613504398730583 ], [ 356283.175676396174822, 253718.047943086276064 ], [ 356286.529799997806549, 253713.156800001859665 ], [ 356289.172875408607069, 253709.514735829463461 ], [ 356291.199356338242069, 253705.496794303704519 ], [ 356292.557058631035034, 253701.206441923393868 ], [ 356293.211019930662587, 253696.754160072334344 ], [ 356293.144400000572205, 253692.254599999636412 ], [ 356289.622010687424336, 253684.278286627028137 ], [ 356286.706131324346643, 253676.060838785313535 ], [ 356284.413099996745586, 253667.648299999535084 ], [ 356279.5092484333436, 253655.848469860939076 ], [ 356275.152699999511242, 253643.835799999535084 ], [ 356273.539756011858117, 253635.812491643708199 ], [ 356272.655430307961069, 253627.676581533014541 ], [ 356272.506899997591972, 253619.494100000709295 ], [ 356279.915200002491474, 253595.152399998158216 ], [ 356281.649991771730129, 253591.232788610446732 ], [ 356283.788240267662331, 253587.51785263750935 ], [ 356286.306125897739548, 253584.048975604935549 ], [ 356289.175599999725819, 253580.864799998700619 ], [ 356296.215492084331345, 253575.782051379414042 ], [ 356302.934000000357628, 253570.281500000506639 ], [ 356305.81884687684942, 253567.525611009274144 ], [ 356308.230025197437499, 253564.34701308896183 ], [ 356310.106480961898342, 253560.826192247652216 ], [ 356311.400700002908707, 253557.052299998700619 ], [ 356312.627950496796984, 253552.35673017782392 ], [ 356313.550399996340275, 253547.591899998486042 ], [ 356303.758100003004074, 253540.163100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-806-T014", "PARCEL_NAM": "B-16", "ACRE": ".207", "LONGITUDE": -64.95537205, "LATITUDE": 18.31089523, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 341.65331363000001, "SHAPE_Area": 1737.08106137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356224.649499997496605, 253459.739500001072884 ], [ 356203.25, 253455.706799998879433 ], [ 356199.589100003242493, 253467.133799999952316 ], [ 356196.311700001358986, 253473.228700000792742 ], [ 356196.268500000238419, 253478.294599998742342 ], [ 356199.46679999679327, 253481.487100001424551 ], [ 356230.074299998581409, 253485.537300001829863 ], [ 356246.963699996471405, 253490.741799999028444 ], [ 356260.611699998378754, 253497.819600000977516 ], [ 356262.209899999201298, 253499.52140000090003 ], [ 356264.6199000030756, 253500.596599999815226 ], [ 356320.696699999272823, 253543.907600000500679 ], [ 356328.73650000244379, 253546.717599999159575 ], [ 356332.764399997889996, 253547.172800000756979 ], [ 356259.888099998235703, 253488.103399999439716 ], [ 356254.285300001502037, 253483.202399998903275 ], [ 356224.649499997496605, 253459.739500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-8953-T014", "PARCEL_NAM": "10-1-E", "ACRE": ".23", "LONGITUDE": -64.87670998, "LATITUDE": 18.33075756, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.40610465899999, "SHAPE_Area": 960.44801184799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364531.517399996519089, 255719.600600000470877 ], [ 364525.95160000026226, 255764.704100001603365 ], [ 364566.581399999558926, 255780.577799998223782 ], [ 364531.517399996519089, 255719.600600000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-8953-T014", "PARCEL_NAM": "ROW 10-1-1", "ACRE": ".40", "LONGITUDE": -64.8763327, "LATITUDE": 18.33102383, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.271107331, "SHAPE_Area": 1665.0736683 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364550.071400001645088, 255733.587699998170137 ], [ 364546.805299997329712, 255746.186700001358986 ], [ 364566.581399999558926, 255780.577799998223782 ], [ 364525.95160000026226, 255764.704100001603365 ], [ 364524.719700001180172, 255774.687199998646975 ], [ 364526.647100001573563, 255775.41160000115633 ], [ 364539.508500002324581, 255780.160999998450279 ], [ 364570.054899998009205, 255791.387800000607967 ], [ 364590.95610000193119, 255798.947200000286102 ], [ 364612.659999996423721, 255806.935300000011921 ], [ 364638.384700000286102, 255816.222800001502037 ], [ 364658.710299998521805, 255824.304499998688698 ], [ 364648.544100001454353, 255810.920000001788139 ], [ 364579.281499996781349, 255785.234499998390675 ], [ 364550.071400001645088, 255733.587699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-8953-T014", "PARCEL_NAM": "10-1-D", "ACRE": ".29", "LONGITUDE": -64.87668217, "LATITUDE": 18.33031011, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.033512683, "SHAPE_Area": 1274.46640228 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364550.071400001645088, 255733.587699998170137 ], [ 364560.634400002658367, 255695.181600000709295 ], [ 364538.178999997675419, 255665.617600001394749 ], [ 364538.039399996399879, 255666.748700000345707 ], [ 364534.595499999821186, 255694.656700000166893 ], [ 364531.517399996519089, 255719.600600000470877 ], [ 364546.805299997329712, 255746.186700001358986 ], [ 364550.071400001645088, 255733.587699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-8953-T014", "PARCEL_NAM": "10-1-C", "ACRE": ".24", "LONGITUDE": -64.87649307, "LATITUDE": 18.33051547, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.90210217200001, "SHAPE_Area": 1048.02279656 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364579.377599999308586, 255719.8581000007689 ], [ 364560.634400002658367, 255695.181600000709295 ], [ 364550.071400001645088, 255733.587699998170137 ], [ 364567.090400002896786, 255763.679299999028444 ], [ 364579.377599999308586, 255719.8581000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-8953-T014", "PARCEL_NAM": "10-1-B", "ACRE": ".30", "LONGITUDE": -64.87631107, "LATITUDE": 18.33076784, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.40004919200001, "SHAPE_Area": 1310.5275128599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364600.281300000846386, 255747.379099998623133 ], [ 364579.377599999308586, 255719.8581000007689 ], [ 364567.090400002896786, 255763.679299999028444 ], [ 364579.281499996781349, 255785.234499998390675 ], [ 364589.200199998915195, 255788.912799999117851 ], [ 364600.281300000846386, 255747.379099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202031700", "MAP": "D9-7817-T006", "PARCEL_NAM": "11", "ACRE": ".113", "LONGITUDE": -64.95563057, "LATITUDE": 18.30813948, "OBJECTID_1": 87402, "PARCEL_NO_": "509202031700", "Tax_Legal_": "11 WATER ISLAND NO.10 SOUTSIDE QTR", "Name": "BARTH, JERRY LEE, JR. & CAROLYN BARBARA", "Address": "12121 Voges Pass", "City": "Cibolo", "State": "Texas", "Zip": 78108, "Country": "United States", "Land_Value": 44100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.523197303, "SHAPE_Area": 599.69278763800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356238.689300000667572, 253174.245000001043081 ], [ 356235.95549999922514, 253173.800299998372793 ], [ 356216.622000001370907, 253171.531100001186132 ], [ 356208.546300001442432, 253172.942699998617172 ], [ 356203.686800003051758, 253175.436000000685453 ], [ 356202.052599996328354, 253177.955800000578165 ], [ 356202.020300000905991, 253181.755199998617172 ], [ 356202.814000003039837, 253183.23930000141263 ], [ 356218.828699998557568, 253196.458200000226498 ], [ 356222.938199996948242, 253199.840300001204014 ], [ 356238.689300000667572, 253174.245000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099600", "MAP": "D9-8958-T015", "PARCEL_NAM": "D-18", "ACRE": ".53", "LONGITUDE": -64.92266843, "LATITUDE": 18.34373809, "OBJECTID_1": 12681, "PARCEL_NO_": "105402099600", "Tax_Legal_": "D-18 ROSS NO. 8 NEW QUARTER", "Name": "JOSEPH, FREDERICK & ROSALIND", "Address": "2714 Pile Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 90000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.51986567599999, "SHAPE_Area": 1988.6495597400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359704.677199997007847, 257128.692400000989437 ], [ 359708.243299998342991, 257124.796999998390675 ], [ 359646.789499998092651, 257129.975699998438358 ], [ 359647.957299999892712, 257135.665300000458956 ], [ 359649.338799998164177, 257142.396200001239777 ], [ 359650.103799998760223, 257146.123799998313189 ], [ 359650.566299997270107, 257148.377199999988079 ], [ 359657.452600002288818, 257181.928800001740456 ], [ 359689.447599999606609, 257179.995600000023842 ], [ 359689.740381087525748, 257178.295046942977933 ], [ 359689.766076141444501, 257176.569665469345637 ], [ 359689.524064260651357, 257174.86114806678961 ], [ 359689.020193472038954, 257173.210779715882381 ], [ 359688.266639417328406, 257171.658440271072323 ], [ 359687.281611138139851, 257170.241640795342391 ], [ 359686.088911068858579, 257168.99461713474011 ], [ 359684.717359869508073, 257167.94750263626338 ], [ 359683.200099997222424, 257167.125599998980761 ], [ 359682.133272714505438, 257166.19513104253565 ], [ 359681.228289549006149, 257165.106600657047238 ], [ 359680.508262645395007, 257163.887808554951334 ], [ 359679.991580595495179, 257162.569881171017187 ], [ 359679.691438816371374, 257161.186476731789298 ], [ 359679.615502555796411, 257159.772925666446099 ], [ 359679.765711131505668, 257158.365328311454505 ], [ 359680.138228403229732, 257156.999632952909451 ], [ 359680.723540743056219, 257155.710717752110213 ], [ 359681.506700001657009, 257154.531500000506639 ], [ 359686.375100001692772, 257147.863899998366833 ], [ 359701.258299998939037, 257132.273699998855591 ], [ 359704.677199997007847, 257128.692400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105402090300", "MAP": "A9-513-T98", "PARCEL_NAM": "D-D", "ACRE": ".31", "LONGITUDE": -64.9224823, "LATITUDE": 18.34380532, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.574540122, "SHAPE_Area": 463.09186490600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359704.987400002777576, 257136.412999998778105 ], [ 359701.258299998939037, 257132.273699998855591 ], [ 359686.375100001692772, 257147.863899998366833 ], [ 359681.506700001657009, 257154.531500000506639 ], [ 359680.723540743638296, 257155.710717752284836 ], [ 359680.138228404335678, 257156.999632953113178 ], [ 359679.76571113296086, 257158.365328311541816 ], [ 359679.615502557484433, 257159.772925666387891 ], [ 359679.691438818117604, 257161.186476731556468 ], [ 359679.991580597124994, 257162.569881170609733 ], [ 359680.508262646791991, 257163.887808554456569 ], [ 359681.228289549995679, 257165.106600656552473 ], [ 359682.133272715029307, 257166.195131042215507 ], [ 359683.200099997222424, 257167.125599998980761 ], [ 359684.717359869915526, 257167.94750263588503 ], [ 359686.088911069557071, 257168.99461713412893 ], [ 359687.281611139129382, 257170.241640794643899 ], [ 359688.266639418550767, 257171.658440270432038 ], [ 359689.020193473319523, 257173.210779715358512 ], [ 359689.524064261873718, 257174.861148066440364 ], [ 359689.766076142434031, 257176.569665469171014 ], [ 359689.740381088049617, 257178.295046942919726 ], [ 359689.447599999606609, 257179.995600000023842 ], [ 359698.673299998044968, 257178.650499999523163 ], [ 359697.88120000064373, 257167.133000001311302 ], [ 359697.903106567508075, 257165.85462856219965 ], [ 359697.706523853179533, 257164.59127244836418 ], [ 359697.29721965873614, 257163.379998940683436 ], [ 359696.687203102861531, 257162.256347199465381 ], [ 359695.894372270558961, 257161.253285533719463 ], [ 359694.941989077313337, 257160.400244100252166 ], [ 359693.85799675702583, 257159.722251413302729 ], [ 359692.674199998378754, 257159.239199999719858 ], [ 359691.99275575747015, 257158.34639708220493 ], [ 359691.472014977422077, 257157.351262748066802 ], [ 359691.126961443689652, 257156.282430973718874 ], [ 359690.967523720057216, 257155.170656304428121 ], [ 359690.99828946456546, 257154.047928923449945 ], [ 359691.218373424315359, 257152.946554167225258 ], [ 359691.621442907548044, 257151.898222972085932 ], [ 359692.195900000631809, 257150.933100000023842 ], [ 359694.947599999606609, 257147.228900000452995 ], [ 359704.987400002777576, 257136.412999998778105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105504010400", "MAP": "D9-8960-T015", "PARCEL_NAM": "19", "ACRE": ".02", "LONGITUDE": -64.90794578000001, "LATITUDE": 18.32751988, "OBJECTID_1": 20383, "PARCEL_NO_": "105504010400", "Tax_Legal_": "ESTATE RAPHUNE NEW QTR 5BA", "Name": "RAPHUNE DEV CORP", "Address": "PO Box 232", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 5385600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.1448872753, "SHAPE_Area": 134.60172101699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361252.353500001132488, 255365.935499999672174 ], [ 361229.843699999153614, 255364.931099999696016 ], [ 361237.13120000064373, 255372.613099999725819 ], [ 361252.344800002872944, 255372.745299998670816 ], [ 361252.353500001132488, 255365.935499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601066700", "MAP": "D9-8964-T015", "PARCEL_NAM": "7-14A", "ACRE": ".03", "LONGITUDE": -64.88219077, "LATITUDE": 18.33009616, "OBJECTID_1": 38180, "PARCEL_NO_": "107601066700", "Tax_Legal_": "7-14A MARIENDAHL NO. 4 RED HOOK QTR.", "Name": "KERTIS GUMBS LIVING TRUST", "Address": "PO Box 10302", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3000, "Improved_V": 48200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.566091595700001, "SHAPE_Area": 243.88785409499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363973.095100000500679, 255670.224399998784065 ], [ 363972.027699999511242, 255667.563799999654293 ], [ 363949.066500000655651, 255676.9712999984622 ], [ 363950.111400000751019, 255678.656199999153614 ], [ 363951.252599999308586, 255680.526299998164177 ], [ 363954.768899999558926, 255686.288600001484156 ], [ 363975.843400001525879, 255676.241300001740456 ], [ 363973.095100000500679, 255670.224399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203020100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94626532, "LATITUDE": 18.32154843, "OBJECTID_1": 87343, "PARCEL_NO_": "507203020100", "Tax_Legal_": "91 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "SPRAT BAY HOMEOWNERS ASSOC. INC", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 337900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.349526122699999, "SHAPE_Area": 99.169080708899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357195.730700001120567, 254665.221099998801947 ], [ 357195.230800002813339, 254694.471200000494719 ], [ 357198.817500002682209, 254681.500599998980761 ], [ 357200.591899998486042, 254662.516699999570847 ], [ 357199.803599998354912, 254660.399300001561642 ], [ 357195.730700001120567, 254665.221099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203020100", "MAP": "D9-8967-T015", "PARCEL_NAM": "91A", "ACRE": ".044", "LONGITUDE": -64.94632065, "LATITUDE": 18.3216941, "OBJECTID_1": 87343, "PARCEL_NO_": "507203020100", "Tax_Legal_": "91 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "SPRAT BAY HOMEOWNERS ASSOC. INC", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 337900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.140094773900003, "SHAPE_Area": 165.04160894200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357195.230800002813339, 254694.471200000494719 ], [ 357195.730700001120567, 254665.221099998801947 ], [ 357183.641099996864796, 254712.308100000023842 ], [ 357195.230800002813339, 254694.471200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603014100", "MAP": "D9-7743-T006", "PARCEL_NAM": "39", "ACRE": "2.751", "LONGITUDE": -64.88942095, "LATITUDE": 18.34074941, "OBJECTID_1": 21536, "PARCEL_NO_": "105603014100", "Tax_Legal_": "39 ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "000000", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 367500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 458.61884650899998, "SHAPE_Area": 13833.8258793 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363248.113300003111362, 256805.176199998706579 ], [ 363232.536300003528595, 256800.892900001257658 ], [ 363214.346100002527237, 256781.049100000411272 ], [ 363200.197999998927116, 256779.603700000792742 ], [ 363104.513300001621246, 256833.954199999570847 ], [ 363147.604900002479553, 256913.076499998569489 ], [ 363258.625699996948242, 256892.890999998897314 ], [ 363255.392300002276897, 256865.648800000548363 ], [ 363248.113300003111362, 256805.176199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603014100", "MAP": "D9-7743-T006", "PARCEL_NAM": "33-B", "ACRE": ".133", "LONGITUDE": -64.88898882, "LATITUDE": 18.34016785, "OBJECTID_1": 21536, "PARCEL_NO_": "105603014100", "Tax_Legal_": "39 ESTATE CHARLOTTE AMALIE NEW QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "000000", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 367500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.156450952, "SHAPE_Area": 741.46285142199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363214.346100002527237, 256781.049100000411272 ], [ 363232.536300003528595, 256800.892900001257658 ], [ 363248.113300003111362, 256805.176199998706579 ], [ 363243.231499999761581, 256764.618599999696016 ], [ 363214.346100002527237, 256781.049100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603012900", "MAP": "D9-8968-T015", "PARCEL_NAM": "41-1", "ACRE": "1.30", "LONGITUDE": -64.88919821, "LATITUDE": 18.34143887, "OBJECTID_1": 21526, "PARCEL_NO_": "105603012900", "Tax_Legal_": "REMAINDER CHARLOTTE AMALIE NEW QTR", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 309500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.93922127500002, "SHAPE_Area": 5130.39373875 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363153.315099999308586, 256912.03830000013113 ], [ 363145.223600000143051, 256920.947900000959635 ], [ 363186.25900000333786, 256958.519099999219179 ], [ 363207.854800000786781, 256955.818900000303984 ], [ 363264.420699998736382, 256941.716400001198053 ], [ 363258.625699996948242, 256892.890999998897314 ], [ 363153.315099999308586, 256912.03830000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107504060100", "MAP": "C9-297-T86", "PARCEL_NAM": "17D REM", "ACRE": null, "LONGITUDE": -64.8863992, "LATITUDE": 18.31462393, "OBJECTID_1": 37854, "PARCEL_NO_": "107504060100", "Tax_Legal_": "BOVONI ESTAYTE 17D WEST PART FRENCHMAN BAY QTR", "Name": "CHARLES, REYNALD", "Address": "PO Box 308358", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 187300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 703.52950593800006, "SHAPE_Area": 11712.486359099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363464.718699999153614, 254064.672899998724461 ], [ 363542.020400002598763, 254077.5489999987185 ], [ 363547.657399997115135, 254078.439500000327826 ], [ 363557.453900001943111, 254023.677000001072884 ], [ 363582.158399999141693, 253885.5777000002563 ], [ 363495.563900001347065, 253851.509799998253584 ], [ 363496.318099997937679, 253857.637699998915195 ], [ 363496.82707839080831, 253865.893572620960185 ], [ 363496.808486492082011, 253874.165098846366163 ], [ 363496.26240000128746, 253882.418600000441074 ], [ 363496.483556006453, 253893.856634760973975 ], [ 363497.172725250653457, 253905.276030319160782 ], [ 363498.328752512286883, 253916.65764488527202 ], [ 363499.949699997901917, 253927.982400000095367 ], [ 363500.761622014804743, 253933.814363204553956 ], [ 363502.051109285617713, 253939.559642550098943 ], [ 363503.809399999678135, 253945.179200001060963 ], [ 363505.6054434342077, 253953.063520641706418 ], [ 363506.95269999653101, 253961.036800000816584 ], [ 363526.128100000321865, 253959.589099999517202 ], [ 363550.542900003492832, 253953.338100001215935 ], [ 363553.204599998891354, 253987.082699999213219 ], [ 363530.262000001966953, 253993.517799999564886 ], [ 363515.213299997150898, 254042.759700000286102 ], [ 363481.075099997222424, 254037.786800000816584 ], [ 363477.787000000476837, 254045.148200001567602 ], [ 363467.191600002348423, 254058.360300000756979 ], [ 363464.718699999153614, 254064.672899998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032100", "MAP": "A9-138-T70", "PARCEL_NAM": "90", "ACRE": "0.50", "LONGITUDE": -64.90081685, "LATITUDE": 18.31629269, "OBJECTID_1": 37406, "PARCEL_NO_": "107404032100", "Tax_Legal_": "BOLONGO 90 FRENCHMAN BAY", "Name": "FLEMING, JOANNE", "Address": "PO Box 6704", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.108149543, "SHAPE_Area": 1784.9385800099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362038.83110000193119, 254126.719799999147654 ], [ 361989.0033999979496, 254106.381900001317263 ], [ 361982.042099997401237, 254131.697999998927116 ], [ 361978.318999998271465, 254146.270700000226498 ], [ 362027.219899997115135, 254153.700899999588728 ], [ 362031.149800002574921, 254141.176899999380112 ], [ 362035.256899997591972, 254132.3445999994874 ], [ 362038.83110000193119, 254126.719799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031600", "MAP": "D9-8306-T006", "PARCEL_NAM": "93 REM", "ACRE": ".494", "LONGITUDE": -64.90105284000001, "LATITUDE": 18.31743107, "OBJECTID_1": 37401, "PARCEL_NO_": "107404031600", "Tax_Legal_": "93 REM, 94-1 & 94-2 ESTATE BOLONGO BAY FRENCHMAN BAY QTR", "Name": "NORMANVIS PROPERTIES LLC & OTHERS", "Address": "PO Box 301982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66800, "Improved_V": 157100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.26466959800001, "SHAPE_Area": 2162.0221601899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361947.879199996590614, 254261.029800001531839 ], [ 361963.364000000059605, 254276.540199998766184 ], [ 361979.226899996399879, 254277.418999999761581 ], [ 362012.294299997389317, 254279.250999998301268 ], [ 362009.911300003528595, 254267.870299998670816 ], [ 362008.437100000679493, 254251.604100000113249 ], [ 362007.70099999755621, 254242.431699998676777 ], [ 361954.427100002765656, 254236.325399998575449 ], [ 361951.32379999756813, 254248.033700000494719 ], [ 361947.879199996590614, 254261.029800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031600", "MAP": "D9-8306-T006", "PARCEL_NAM": "94-1", "ACRE": "394 sq ft", "LONGITUDE": -64.90114479, "LATITUDE": 18.31761812, "OBJECTID_1": 37401, "PARCEL_NO_": "107404031600", "Tax_Legal_": "93 REM, 94-1 & 94-2 ESTATE BOLONGO BAY FRENCHMAN BAY QTR", "Name": "NORMANVIS PROPERTIES LLC & OTHERS", "Address": "PO Box 301982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66800, "Improved_V": 157100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.710320240100003, "SHAPE_Area": 46.6170201431 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361979.226899996399879, 254277.418999999761581 ], [ 361963.364000000059605, 254276.540199998766184 ], [ 361969.575400002300739, 254282.761799998581409 ], [ 361979.226899996399879, 254277.418999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031500", "MAP": "D9-8306-T006", "PARCEL_NAM": "93-A", "ACRE": "591 sq ft", "LONGITUDE": -64.90132602, "LATITUDE": 18.3175481, "OBJECTID_1": 37400, "PARCEL_NO_": "107404031500", "Tax_Legal_": "94 REM, 93-A ESTATE BOLONGO FRENCHMAN BAY QTR", "Name": "WARNER, ROY & ELISE", "Address": "PO Box 695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 48100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.513090349400002, "SHAPE_Area": 144.527184248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361947.879199996590614, 254261.029800001531839 ], [ 361944.558600001037121, 254272.190600000321865 ], [ 361943.79559999704361, 254275.4560999982059 ], [ 361963.364000000059605, 254276.540199998766184 ], [ 361947.879199996590614, 254261.029800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404031600", "MAP": "D9-8306-T006", "PARCEL_NAM": "94-2", "ACRE": "197 sq ft", "LONGITUDE": -64.90098648, "LATITUDE": 18.31762073, "OBJECTID_1": 37401, "PARCEL_NO_": "107404031600", "Tax_Legal_": "93 REM, 94-1 & 94-2 ESTATE BOLONGO BAY FRENCHMAN BAY QTR", "Name": "NORMANVIS PROPERTIES LLC & OTHERS", "Address": "PO Box 301982", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 66800, "Improved_V": 157100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.0205950806, "SHAPE_Area": 21.549091785600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361992.461000002920628, 254278.152199998497963 ], [ 361982.630599997937679, 254277.607599999755621 ], [ 361987.271899998188019, 254282.2489 ], [ 361992.461000002920628, 254278.152199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704014600", "MAP": "A9-24-T64", "PARCEL_NAM": "2D-13", "ACRE": ".56", "LONGITUDE": -64.85223449, "LATITUDE": 18.31679274, "OBJECTID_1": 39859, "PARCEL_NO_": "107704014600", "Tax_Legal_": "2D-13 ESTATE NAZARETH NO.1 RED HOOK QTR.", "Name": "SECRET HARBOR BEACH HOUSE LLC", "Address": "101 Huntington Ave", "City": "Boston", "State": "Massachusetts", "Zip": 2199, "Country": "United States", "Land_Value": 213700, "Improved_V": 824600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.09984609099999, "SHAPE_Area": 1691.4775563000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367148.561999998986721, 254202.907400000840425 ], [ 367108.464599996805191, 254234.700800001621246 ], [ 367123.301500000059605, 254243.648699998855591 ], [ 367129.698100000619888, 254250.033900000154972 ], [ 367136.915299996733665, 254254.736999999731779 ], [ 367139.3091000020504, 254257.711899999529123 ], [ 367170.949500001966953, 254235.172800000756979 ], [ 367156.617499999701977, 254213.734999999403954 ], [ 367148.561999998986721, 254202.907400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604060400", "MAP": "D9-8961-T015", "PARCEL_NAM": "CONS 29", "ACRE": ".120", "LONGITUDE": -64.87240442, "LATITUDE": 18.31857251, "OBJECTID_1": 39063, "PARCEL_NO_": "107604060400", "Tax_Legal_": "NADIR ESTATE 29&35 RED HOOK QTR", "Name": "MANGROVE MARINE CTR, INC.", "Address": "PO Box 10298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 22200, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.918537124300002, "SHAPE_Area": 477.0831693 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364994.742299996316433, 254403.1239 ], [ 364991.81360000371933, 254419.735599998384714 ], [ 365020.379000000655651, 254417.338599998503923 ], [ 365024.982699997723103, 254400.907999999821186 ], [ 364994.742299996316433, 254403.1239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604060500", "MAP": "G3-83-T54", "PARCEL_NAM": "28", "ACRE": ".093", "LONGITUDE": -64.87241823, "LATITUDE": 18.31842461, "OBJECTID_1": 39064, "PARCEL_NO_": "107604060500", "Tax_Legal_": "28 NADIR NO. 2 RED HOOK QTR", "Name": "RUAN LIVING TRUST, THE CARMEN V", "Address": "PO Box 10298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47800, "Improved_V": 2400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.150410637999997, "SHAPE_Area": 399.97046270700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365018.941500000655651, 254401.350699998438358 ], [ 365017.579700000584126, 254384.018699999898672 ], [ 364994.884400002658367, 254386.448600001633167 ], [ 364994.742299996316433, 254403.1239 ], [ 365018.941500000655651, 254401.350699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604060300", "MAP": "G3-86-T54", "PARCEL_NAM": "30", "ACRE": ".12", "LONGITUDE": -64.87245533, "LATITUDE": 18.3182517, "OBJECTID_1": 39062, "PARCEL_NO_": "107604060300", "Tax_Legal_": "NADIR ESTATE 30 RED HOOK QTR", "Name": "LOVENLUND, JAMES E", "Address": "6616 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.402866400899995, "SHAPE_Area": 493.39517245299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365006.396600000560284, 254359.549100000411272 ], [ 365005.32490000128746, 254360.133900001645088 ], [ 364987.769599996507168, 254369.714000001549721 ], [ 364989.286300003528595, 254372.823600001633167 ], [ 364990.147200003266335, 254374.588599998503923 ], [ 364991.743699997663498, 254376.501499999314547 ], [ 364994.884400002658367, 254386.448600001633167 ], [ 365017.579700000584126, 254384.018699999898672 ], [ 365016.617920752556529, 254380.292972990457201 ], [ 365015.248599998652935, 254376.697000000625849 ], [ 365011.105129165924154, 254367.977204259659629 ], [ 365006.396600000560284, 254359.549100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703027900", "MAP": "D9-2749-T84", "PARCEL_NAM": "2W-30-1", "ACRE": ".017", "LONGITUDE": -64.86091782, "LATITUDE": 18.31918186, "OBJECTID_1": 39733, "PARCEL_NO_": "107703027900", "Tax_Legal_": "NAZARETH ESTATE REM. 2W-30-1,2W-5-5-2,2W-76-1A&2 RED HOOK QUARTER", "Name": "BAILEY, KELVIN S", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.285046860100003, "SHAPE_Area": 58.893213493600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366217.321299999952316, 254483.213199999183416 ], [ 366222.909800000488758, 254498.65819999948144 ], [ 366224.587099999189377, 254482.217199999839067 ], [ 366217.321299999952316, 254483.213199999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703027900", "MAP": null, "PARCEL_NAM": "2W-76-1", "ACRE": null, "LONGITUDE": -64.86090141, "LATITUDE": 18.31938057, "OBJECTID_1": 39733, "PARCEL_NO_": "107703027900", "Tax_Legal_": "NAZARETH ESTATE REM. 2W-30-1,2W-5-5-2,2W-76-1A&2 RED HOOK QUARTER", "Name": "BAILEY, KELVIN S", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.6731231698, "SHAPE_Area": 60.988902041899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366224.452899999916553, 254512.697900000959635 ], [ 366225.195100001990795, 254498.236900001764297 ], [ 366223.629699997603893, 254498.525499999523163 ], [ 366222.909800000488758, 254498.65819999948144 ], [ 366222.221900001168251, 254505.401500001549721 ], [ 366222.065200001001358, 254506.937300000339746 ], [ 366220.64469999819994, 254520.861800000071526 ], [ 366224.101899996399879, 254519.537000000476837 ], [ 366224.452899999916553, 254512.697900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803022800", "MAP": "D9-3398-T86", "PARCEL_NAM": "111", "ACRE": ".30", "LONGITUDE": -64.86650812000001, "LATITUDE": 18.33150303, "OBJECTID_1": 23887, "PARCEL_NO_": "105803022800", "Tax_Legal_": "FRYDENHOJ 111 RED HOOK QTR", "Name": "IVOR PENHA", "Address": "PO Box 7264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010264, "Country": "United States", "Land_Value": 40100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.38942899400001, "SHAPE_Area": 1251.6737314899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365643.774599999189377, 255858.839899998158216 ], [ 365645.212300002574921, 255834.081799998879433 ], [ 365641.354599997401237, 255834.142000000923872 ], [ 365632.483400002121925, 255834.280499998480082 ], [ 365593.773199997842312, 255834.80799999833107 ], [ 365592.830899998545647, 255858.991099998354912 ], [ 365643.774599999189377, 255858.839899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803024000", "MAP": "D9-3398-T86", "PARCEL_NAM": "111-D", "ACRE": ".30", "LONGITUDE": -64.86605528, "LATITUDE": 18.33149571, "OBJECTID_1": 23899, "PARCEL_NO_": "105803024000", "Tax_Legal_": "FRYDENHOJ 111D RED HOOK QTR.", "Name": "BARNABAS, ALOMA & FRANKLYN", "Address": "865 E 172nd St", "City": "Bronx", "State": "New York", "Zip": 10460, "Country": "United States", "Land_Value": 40100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.44393757, "SHAPE_Area": 1115.3470547700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365645.212300002574921, 255834.081799998879433 ], [ 365643.774599999189377, 255858.839899998158216 ], [ 365679.850900001823902, 255858.732799999415874 ], [ 365688.135499998927116, 255858.945199999958277 ], [ 365690.020300000905991, 255833.54619999974966 ], [ 365667.968400001525879, 255833.726500000804663 ], [ 365645.212300002574921, 255834.081799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105803022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86634118000001, "LATITUDE": 18.33163907, "OBJECTID_1": 23887, "PARCEL_NO_": "105803022800", "Tax_Legal_": "FRYDENHOJ 111 RED HOOK QTR", "Name": "IVOR PENHA", "Address": "PO Box 7264", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010264, "Country": "United States", "Land_Value": 40100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.26531795099999, "SHAPE_Area": 524.44940006800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365679.798699997365475, 255864.854100000113249 ], [ 365679.850900001823902, 255858.732799999415874 ], [ 365592.830899998545647, 255858.991099998354912 ], [ 365592.600199997425079, 255864.911499999463558 ], [ 365679.798699997365475, 255864.854100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105803023900", "MAP": "D9-3380-T86", "PARCEL_NAM": "111-B", "ACRE": ".30", "LONGITUDE": -64.86607814, "LATITUDE": 18.33178059, "OBJECTID_1": 23898, "PARCEL_NO_": "105803023900", "Tax_Legal_": "111B FRYDENHOJ RED HOOK QUARTER", "Name": "MCFARLANE, M., DONOVAN,J. , FREEMAN,J. & SAMUEL,R.", "Address": "PO Box 7535", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27800, "Improved_V": 240900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.844890967, "SHAPE_Area": 1161.9913084 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365642.024499997496605, 255864.879000000655651 ], [ 365640.612000003457069, 255889.708599999547005 ], [ 365661.034100003540516, 255890.453899998217821 ], [ 365669.095499999821186, 255890.730999998748302 ], [ 365678.769400000572205, 255891.021299999207258 ], [ 365686.610799998044968, 255891.355700001120567 ], [ 365686.570699997246265, 255864.956199999898672 ], [ 365679.798699997365475, 255864.854100000113249 ], [ 365642.024499997496605, 255864.879000000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050700", "MAP": "D9-4762-T89", "PARCEL_NAM": "26A", "ACRE": ".329", "LONGITUDE": -64.86743361000001, "LATITUDE": 18.32220746, "OBJECTID_1": 39057, "PARCEL_NO_": "107604050700", "Tax_Legal_": "FRYDENHOJ ESTATE 26A RED HOOK QTR", "Name": "DAAS CORPORATION", "Address": "PO Box 502967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052967, "Country": "United States", "Land_Value": 163400, "Improved_V": 2609000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.088045317, "SHAPE_Area": 1170.00724453 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365550.544100001454353, 254779.786699999123812 ], [ 365543.116800002753735, 254776.60359999909997 ], [ 365537.920199997723103, 254773.827899999916553 ], [ 365507.789599999785423, 254860.254799999296665 ], [ 365524.219800002872944, 254854.440099999308586 ], [ 365550.544100001454353, 254779.786699999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040200", "MAP": "D9-4762-T89", "PARCEL_NAM": "26B", "ACRE": ".06", "LONGITUDE": -64.86733988, "LATITUDE": 18.3222182, "OBJECTID_1": 38487, "PARCEL_NO_": "107602040200", "Tax_Legal_": "FRYDENHOJ (REM)26,26B&26C REDHOOK QTR.", "Name": "DAAS CORPORATION", "Address": "PO Box 502967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052967, "Country": "United States", "Land_Value": 382900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.97863162499999, "SHAPE_Area": 421.68894069499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365531.69990000128746, 254851.79280000180006 ], [ 365537.795199997723103, 254833.344200000166893 ], [ 365541.936499997973442, 254820.501400001347065 ], [ 365555.168399997055531, 254781.768500000238419 ], [ 365550.544100001454353, 254779.786699999123812 ], [ 365524.219800002872944, 254854.440099999308586 ], [ 365531.69990000128746, 254851.79280000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604050700", "MAP": null, "PARCEL_NAM": "26A-1", "ACRE": null, "LONGITUDE": -64.86763192, "LATITUDE": 18.32280526, "OBJECTID_1": 39057, "PARCEL_NO_": "107604050700", "Tax_Legal_": "FRYDENHOJ ESTATE 26A RED HOOK QTR", "Name": "DAAS CORPORATION", "Address": "PO Box 502967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052967, "Country": "United States", "Land_Value": 163400, "Improved_V": 2609000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.333454778, "SHAPE_Area": 724.64829645899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365524.219800002872944, 254854.440099999308586 ], [ 365507.789599999785423, 254860.254799999296665 ], [ 365494.091600000858307, 254908.339400000870228 ], [ 365506.262500002980232, 254911.091099999845028 ], [ 365524.219800002872944, 254854.440099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602040200", "MAP": "D9-4762-T89", "PARCEL_NAM": "26C", "ACRE": ".02", "LONGITUDE": -64.86750855, "LATITUDE": 18.32221458, "OBJECTID_1": 38487, "PARCEL_NO_": "107602040200", "Tax_Legal_": "FRYDENHOJ (REM)26,26B&26C REDHOOK QTR.", "Name": "DAAS CORPORATION", "Address": "PO Box 502967", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052967, "Country": "United States", "Land_Value": 382900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.42187109700001, "SHAPE_Area": 100.14692643799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365507.789599999785423, 254860.254799999296665 ], [ 365537.920199997723103, 254773.827899999916553 ], [ 365536.996200002729893, 254773.334399998188019 ], [ 365506.455600000917912, 254860.610399998724461 ], [ 365507.789599999785423, 254860.254799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602028500", "MAP": "A9-530-T99", "PARCEL_NAM": "1-78", "ACRE": ".22", "LONGITUDE": -64.87001483, "LATITUDE": 18.3230327, "OBJECTID_1": 38455, "PARCEL_NO_": "107602028500", "Tax_Legal_": "FRYDENHOJ ESTATE 1-78 No.3 RED HOOK QTR.", "Name": "BATTICE, CLAYTON", "Address": "12 Culverton Ct", "City": "Savannah", "State": "Georgia", "Zip": 31406, "Country": "United States", "Land_Value": 31500, "Improved_V": 34100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.02943918599999, "SHAPE_Area": 856.60642561899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365258.028899997472763, 254922.880100000649691 ], [ 365277.439699999988079, 254916.072900000959635 ], [ 365283.970600001513958, 254913.599300000816584 ], [ 365280.711800001561642, 254910.611299999058247 ], [ 365250.240900002419949, 254890.519099999219179 ], [ 365233.417000003159046, 254885.475400000810623 ], [ 365236.249899998307228, 254892.223499998450279 ], [ 365247.577399998903275, 254919.206000000238419 ], [ 365253.226999998092651, 254918.618999999016523 ], [ 365256.439699999988079, 254920.122900001704693 ], [ 365258.028899997472763, 254922.880100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602028400", "MAP": "D9-6603-T99", "PARCEL_NAM": "1-79", "ACRE": ".24", "LONGITUDE": -64.87026633000001, "LATITUDE": 18.32303677, "OBJECTID_1": 38454, "PARCEL_NO_": "107602028400", "Tax_Legal_": "FRYDENHOJ ESTATE 1-79 REDHOOK QTR", "Name": "HEDRINGTON, MARIEL M.", "Address": "PO Box 9245", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 246600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.221509833, "SHAPE_Area": 961.96651190499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365221.285599999129772, 254881.83839999884367 ], [ 365215.540100000798702, 254879.320999998599291 ], [ 365216.385300002992153, 254885.574099998921156 ], [ 365222.235100001096725, 254928.851199999451637 ], [ 365224.106200002133846, 254929.357500001788139 ], [ 365231.370200000703335, 254928.572599999606609 ], [ 365243.515299998223782, 254922.761399999260902 ], [ 365244.341399997472763, 254920.446100000292063 ], [ 365245.962999999523163, 254919.403900001198053 ], [ 365247.577399998903275, 254919.206000000238419 ], [ 365236.249899998307228, 254892.223499998450279 ], [ 365233.417000003159046, 254885.475400000810623 ], [ 365221.285599999129772, 254881.83839999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602028300", "MAP": "A9-530-T99", "PARCEL_NAM": "1-80", "ACRE": ".24", "LONGITUDE": -64.87048518, "LATITUDE": 18.32299478, "OBJECTID_1": 38453, "PARCEL_NO_": "107602028300", "Tax_Legal_": "FRYDENHOJ ESTATE 1-80 REDHOOK QTR", "Name": "AFFORDABLE LIVING SOLUTIONS LLC", "Address": "234 Philadelphia Pike", "City": "Wilmington", "State": "Delaware", "Zip": 19809, "Country": "United States", "Land_Value": 34600, "Improved_V": 55200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.54614227799999, "SHAPE_Area": 1076.0404020399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365206.04280000180006, 254874.767900001257658 ], [ 365204.982400000095367, 254876.133200000971556 ], [ 365200.999499998986721, 254881.261300001293421 ], [ 365196.739399999380112, 254886.746199999004602 ], [ 365184.932800002396107, 254901.947299998253584 ], [ 365198.439099997282028, 254913.315400000661612 ], [ 365214.452100001275539, 254926.745400000363588 ], [ 365222.235100001096725, 254928.851199999451637 ], [ 365216.385300002992153, 254885.574099998921156 ], [ 365215.540100000798702, 254879.320999998599291 ], [ 365212.448499999940395, 254877.966400001198053 ], [ 365206.04280000180006, 254874.767900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033700", "MAP": "D9-6159-T96", "PARCEL_NAM": "52A-3", "ACRE": ".23", "LONGITUDE": -64.8706766, "LATITUDE": 18.32219088, "OBJECTID_1": 38981, "PARCEL_NO_": "107604033700", "Tax_Legal_": "52A-3 ESTATE FRYDENHOJ #3 REDHOOK QTR.", "Name": "PENN, HYACINTH & OTHERS", "Address": "6005 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32900, "Improved_V": 94700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.37753677500001, "SHAPE_Area": 920.55830991300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365185.221900001168251, 254770.663899999111891 ], [ 365180.795800000429153, 254766.532699998468161 ], [ 365179.152000002563, 254768.508499998599291 ], [ 365177.4070999994874, 254770.633600000292063 ], [ 365174.380500003695488, 254774.319699998944998 ], [ 365171.679099999368191, 254777.609700001776218 ], [ 365169.051600001752377, 254780.80970000103116 ], [ 365181.69200000166893, 254794.384799998253584 ], [ 365189.256099998950958, 254855.400600001215935 ], [ 365196.475100003182888, 254859.892700001597404 ], [ 365201.182800002396107, 254862.299100000411272 ], [ 365199.506800003349781, 254852.676699999719858 ], [ 365196.476300001144409, 254835.278099998831749 ], [ 365192.705300003290176, 254813.627700001001358 ], [ 365185.221900001168251, 254770.663899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033600", "MAP": "D9-6159-T96", "PARCEL_NAM": "52A-2", "ACRE": ".23", "LONGITUDE": -64.87091319, "LATITUDE": 18.32214861, "OBJECTID_1": 38980, "PARCEL_NO_": "107604033600", "Tax_Legal_": "52A-2 ESTATE FRYDENHOJ #3 REDHOOK QTR.", "Name": "WEBSTER, DOROTHY", "Address": "PO Box 11833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 41700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.823377497, "SHAPE_Area": 1040.0489764 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365185.119499996304512, 254822.032400000840425 ], [ 365181.69200000166893, 254794.384799998253584 ], [ 365169.051600001752377, 254780.80970000103116 ], [ 365161.002400003373623, 254790.612799998372793 ], [ 365140.601000003516674, 254815.459699999541044 ], [ 365138.988200001418591, 254821.372400000691414 ], [ 365137.876900002360344, 254829.151099998503923 ], [ 365138.353200003504753, 254832.167399998754263 ], [ 365142.163199998438358, 254833.278599999845028 ], [ 365149.940200001001358, 254834.7162000015378 ], [ 365155.54559999704361, 254836.97069999948144 ], [ 365153.929810834757518, 254835.768667147029191 ], [ 365152.535172782838345, 254834.315862170624314 ], [ 365151.400129132089205, 254832.652331736200722 ], [ 365150.555967436404899, 254830.823931171005825 ], [ 365150.025957069068681, 254828.881060458399588 ], [ 365149.824707801220939, 254826.877274959028 ], [ 365149.957767082378268, 254824.867809153627604 ], [ 365150.421467124484479, 254822.908054101018934 ], [ 365151.203026005066931, 254821.052030579739949 ], [ 365152.280900001525879, 254819.350900001823902 ], [ 365164.769199997186661, 254806.545099999755621 ], [ 365185.119499996304512, 254822.032400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87121273, "LATITUDE": 18.32234877, "OBJECTID_1": 38980, "PARCEL_NO_": "107604033600", "Tax_Legal_": "52A-2 ESTATE FRYDENHOJ #3 REDHOOK QTR.", "Name": "WEBSTER, DOROTHY", "Address": "PO Box 11833", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 41700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.4572869064, "SHAPE_Area": 41.374126020399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365132.375100001692772, 254823.555900000035763 ], [ 365124.890799999237061, 254830.922200001776218 ], [ 365133.805699996650219, 254833.204100001603365 ], [ 365132.375100001692772, 254823.555900000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604034500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87156899, "LATITUDE": 18.32086874, "OBJECTID_1": 38986, "PARCEL_NO_": "107604034500", "Tax_Legal_": "22 NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 256600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.62177126, "SHAPE_Area": 907.96699815199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365075.755900003015995, 254638.603100001811981 ], [ 365099.476999998092651, 254698.034400001168251 ], [ 365112.42119999974966, 254693.074099998921156 ], [ 365106.874099999666214, 254681.629599999636412 ], [ 365093.520999997854233, 254639.934900000691414 ], [ 365092.427199997007847, 254634.86600000038743 ], [ 365075.755900003015995, 254638.603100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801055900", "MAP": "F9-1228-T63", "PARCEL_NAM": "3I-2", "ACRE": "585 sq ft", "LONGITUDE": -64.94503979, "LATITUDE": 18.35795981, "OBJECTID_1": 3967, "PARCEL_NO_": "102801055900", "Tax_Legal_": "ST PETER 3I-2 -ROADS LITTLE NORTHSIDE QTR", "Name": "NORTHSTAR VILLAGE", "Address": "3H-14 ST PETER", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.472676294500001, "SHAPE_Area": 39.993511769900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357293.101400002837181, 258698.284099999815226 ], [ 357291.113399997353554, 258708.232299998402596 ], [ 357298.706900000572205, 258710.468400001525879 ], [ 357293.101400002837181, 258698.284099999815226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703026700", "MAP": "D9-1605-T80", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87464942, "LATITUDE": 18.33847349, "OBJECTID_1": 22969, "PARCEL_NO_": "105703026700", "Tax_Legal_": "ANNAS RETREAT PCL NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 463900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.2568397382, "SHAPE_Area": 86.669420837399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364745.486699998378754, 256610.008200000971556 ], [ 364746.494000002741814, 256619.244199998676777 ], [ 364749.29110000282526, 256617.17509999871254 ], [ 364756.618100002408028, 256609.002500001341105 ], [ 364764.740500003099442, 256602.102800000458956 ], [ 364746.935099996626377, 256609.767599999904633 ], [ 364745.486699998378754, 256610.008200000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91640622, "LATITUDE": 18.35357284, "OBJECTID_1": 4952, "PARCEL_NO_": "102904013700", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-31-1&2-34 GR NORTHSIDE QTR", "Name": "PHILLIPS, TESROY E. SR.", "Address": "6544 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 56600, "Improved_V": 40400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.379895797800003, "SHAPE_Area": 40.920467444300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360310.906499996781349, 258241.733199998736382 ], [ 360329.871299996972084, 258248.229499999433756 ], [ 360332.651699997484684, 258244.866500001400709 ], [ 360310.906499996781349, 258241.733199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704016200", "MAP": "D9-2504-T83", "PARCEL_NAM": "173A-97", "ACRE": ".08", "LONGITUDE": -64.87188925, "LATITUDE": 18.33679546, "OBJECTID_1": 23505, "PARCEL_NO_": "105704016200", "Tax_Legal_": "173A-97 ANNA'S RETREAT NEW QTR.", "Name": "CARIBBEAN REALTY & INVESTMENT CO", "Address": "6501 Red Hook Plz Ste 201 PMB 473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 14000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.92781425299999, "SHAPE_Area": 425.23676167399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365034.594800002872944, 256445.569099999964237 ], [ 365048.307499997317791, 256445.048099998384714 ], [ 365052.375399999320507, 256445.166600000113249 ], [ 365049.999799996614456, 256421.397599998861551 ], [ 365048.23759999871254, 256403.766600001603365 ], [ 365047.551700003445148, 256398.279599998146296 ], [ 365047.266699999570847, 256395.653599999845028 ], [ 365044.675200000405312, 256398.155600000172853 ], [ 365044.061099998652935, 256403.461800001561642 ], [ 365042.063799999654293, 256420.721200000494719 ], [ 365039.540600001811981, 256432.943999998271465 ], [ 365034.594800002872944, 256445.569099999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031400", "MAP": "A9-150-T70", "PARCEL_NAM": "173-308", "ACRE": "0.12", "LONGITUDE": -64.87261317, "LATITUDE": 18.33671747, "OBJECTID_1": 23568, "PARCEL_NO_": "105704031400", "Tax_Legal_": "ANNAS RETREAT 173-308 NEW QTR", "Name": "JENNINGS, MARILYN", "Address": "7618 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 28800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.113330979699995, "SHAPE_Area": 466.09073874299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364958.750799998641014, 256406.111600000411272 ], [ 364961.37219999730587, 256432.904800001531839 ], [ 364979.090499997138977, 256429.704999998211861 ], [ 364976.082900002598763, 256404.138099998235703 ], [ 364958.750799998641014, 256406.111600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704036500", "MAP": "D9-2254-T83", "PARCEL_NAM": "173A-64", "ACRE": ".04", "LONGITUDE": -64.87260328000001, "LATITUDE": 18.33688606, "OBJECTID_1": 23615, "PARCEL_NO_": "105704036500", "Tax_Legal_": "ANNAS RETREAT 173A-64 NEW QTR.", "Name": "JENNINGS, MARILYN", "Address": "7618 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.175786308399999, "SHAPE_Area": 192.211426547 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364981.303199999034405, 256433.6858000010252 ], [ 364979.090499997138977, 256429.704999998211861 ], [ 364961.37219999730587, 256432.904800001531839 ], [ 364962.506499998271465, 256447.886999998241663 ], [ 364979.543799996376038, 256435.498399998992682 ], [ 364981.303199999034405, 256433.6858000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031200", "MAP": "D9-4573-T88", "PARCEL_NAM": "173A-306", "ACRE": ".09", "LONGITUDE": -64.87279494000001, "LATITUDE": 18.33707372, "OBJECTID_1": 23566, "PARCEL_NO_": "105704031200", "Tax_Legal_": "ANNAS RETREAT 173-306 NEW QTR", "Name": "DONOVAN, CLAUDETTE A", "Address": "173-306 ANNAS RETRT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20500, "Improved_V": 12900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4.5157817923100003, "SHAPE_Area": 0.01140356883 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364949.824799999594688, 256457.108399998396635 ], [ 364948.001500003039837, 256458.434200000017881 ], [ 364949.82769999653101, 256457.11879999935627 ], [ 364949.824799999594688, 256457.108399998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704034600", "MAP": "D9-1605-T80", "PARCEL_NAM": "173A-21", "ACRE": ".22", "LONGITUDE": -64.87272979, "LATITUDE": 18.33720696, "OBJECTID_1": 23597, "PARCEL_NO_": "105704034600", "Tax_Legal_": "ANNAS RETREAT 173A-21 NEW QTR.", "Name": "DORE, SYLVIA", "Address": "928 High Path Rd", "City": "Windsor", "State": "Connecticut", "Zip": 6095, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.964016405, "SHAPE_Area": 641.420084245 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364965.238499999046326, 256487.431800000369549 ], [ 364962.506499998271465, 256447.886999998241663 ], [ 364949.824799999594688, 256457.108399998396635 ], [ 364949.82769999653101, 256457.11879999935627 ], [ 364947.998099997639656, 256458.436700001358986 ], [ 364945.125299997627735, 256460.506000000983477 ], [ 364951.105400003492832, 256496.2043999992311 ], [ 364953.51969999819994, 256494.789099998772144 ], [ 364960.022100001573563, 256490.977200001478195 ], [ 364965.238499999046326, 256487.431800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601030200", "MAP": "C9-53-T63", "PARCEL_NAM": "2B-50", "ACRE": null, "LONGITUDE": -64.87467311, "LATITUDE": 18.3277592, "OBJECTID_1": 37957, "PARCEL_NO_": "107601030200", "Tax_Legal_": "2B 27&2B-50 MARIENDAHL EAST END QTR", "Name": "THOMAS, LUDRICK", "Address": "6127 Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 263400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.34446011, "SHAPE_Area": 429.67900341000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364769.935300000011921, 255424.187800001353025 ], [ 364750.890299998223782, 255406.201799999922514 ], [ 364750.701899997889996, 255410.364799998700619 ], [ 364748.720600001513958, 255429.874299999326468 ], [ 364749.724799998104572, 255430.410700000822544 ], [ 364753.738399997353554, 255432.554499998688698 ], [ 364767.38459999859333, 255439.843400001525879 ], [ 364773.059600003063679, 255427.138399999588728 ], [ 364769.935300000011921, 255424.187800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87580664, "LATITUDE": 18.32196587, "OBJECTID_1": 38748, "PARCEL_NO_": "107603052000", "Tax_Legal_": "EST NADIR 5 RED HOOK QTR", "Name": "BLYDEN, JOSEPH", "Address": "PO Box 11676", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 274200, "Improved_V": 54700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.864969748500002, "SHAPE_Area": 161.298205397 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364617.891500003635883, 254778.895100001245737 ], [ 364617.676299996674061, 254779.7489 ], [ 364621.413599997758865, 254779.403499998152256 ], [ 364630.26860000193119, 254781.164700001478195 ], [ 364639.901199996471405, 254786.309799998998642 ], [ 364647.165200002491474, 254785.524900000542402 ], [ 364660.86710000038147, 254786.270300000905991 ], [ 364660.911200001835823, 254781.092500001192093 ], [ 364617.891500003635883, 254778.895100001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603052100", "MAP": "F9-2858-T71", "PARCEL_NAM": "5H", "ACRE": ".33", "LONGITUDE": -64.87830383, "LATITUDE": 18.32206481, "OBJECTID_1": 38755, "PARCEL_NO_": "107603052100", "Tax_Legal_": "EST NADIR 5H RED HOOK QTR", "Name": "BLYDEN, ALLEN", "Address": "6421 Nadir Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33800, "Improved_V": 174800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.71543993700001, "SHAPE_Area": 1340.18813032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364400.520300000905991, 254767.792199999094009 ], [ 364379.850199997425079, 254766.736400000751019 ], [ 364373.162799999117851, 254766.394799999892712 ], [ 364368.272799998521805, 254772.476500000804663 ], [ 364365.810699999332428, 254777.522599998861551 ], [ 364364.984600000083447, 254779.837799999862909 ], [ 364364.144100002944469, 254783.841699998825788 ], [ 364364.120800003409386, 254786.585799999535084 ], [ 364364.880300000309944, 254792.080400001257658 ], [ 364365.65429999679327, 254795.886399999260902 ], [ 364368.012100003659725, 254803.082899998873472 ], [ 364383.960299998521805, 254824.111699998378754 ], [ 364393.656999997794628, 254825.132100000977516 ], [ 364390.130500003695488, 254800.531500000506639 ], [ 364392.458800002932549, 254786.243999999016523 ], [ 364400.520300000905991, 254767.792199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-106", "ACRE": null, "LONGITUDE": -64.87836791, "LATITUDE": 18.32116792, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.221230369700002, "SHAPE_Area": 119.30126803 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364365.708800002932549, 254695.422600001096725 ], [ 364368.566200003027916, 254700.791400000452995 ], [ 364384.383199997246265, 254688.830899998545647 ], [ 364381.934399999678135, 254683.295699998736382 ], [ 364365.708800002932549, 254695.422600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-107", "ACRE": null, "LONGITUDE": -64.8784996, "LATITUDE": 18.32126431, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.323314208699998, "SHAPE_Area": 90.867752944200006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364353.530100002884865, 254704.594799999147654 ], [ 364356.660800002515316, 254709.794100001454353 ], [ 364368.566200003027916, 254700.791400000452995 ], [ 364365.708800002932549, 254695.422600001096725 ], [ 364364.892200000584126, 254696.032900001853704 ], [ 364353.530100002884865, 254704.594799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-108", "ACRE": null, "LONGITUDE": -64.87859323000001, "LATITUDE": 18.3213352, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.4635180374, "SHAPE_Area": 61.086473639300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364345.409400001168251, 254711.283300001174212 ], [ 364349.091399997472763, 254716.070900000631809 ], [ 364356.047700002789497, 254710.257699999958277 ], [ 364356.660800002515316, 254709.794100001454353 ], [ 364353.530100002884865, 254704.594799999147654 ], [ 364345.409400001168251, 254711.283300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-109", "ACRE": null, "LONGITUDE": -64.87866997, "LATITUDE": 18.32139944, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 35.500308094099999, "SHAPE_Area": 73.613100106100006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364336.478799998760223, 254718.38740000128746 ], [ 364341.560099996626377, 254723.683400001376867 ], [ 364348.898599997162819, 254716.23200000077486 ], [ 364349.091399997472763, 254716.070900000631809 ], [ 364345.409400001168251, 254711.283300001174212 ], [ 364336.478799998760223, 254718.38740000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-110", "ACRE": null, "LONGITUDE": -64.87874289, "LATITUDE": 18.3214743, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.5978095627, "SHAPE_Area": 93.037338265000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364328.33839999884367, 254727.397799998521805 ], [ 364335.533699996769428, 254732.898899998515844 ], [ 364335.631499998271465, 254732.790600001811981 ], [ 364340.299599997699261, 254724.963300000876188 ], [ 364341.560099996626377, 254723.683400001376867 ], [ 364336.478799998760223, 254718.38740000128746 ], [ 364331.596000000834465, 254723.624800000339746 ], [ 364328.33839999884367, 254727.397799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603037500", "MAP": "B9-351-T72", "PARCEL_NAM": "33-111", "ACRE": null, "LONGITUDE": -64.87880406, "LATITUDE": 18.32154945, "OBJECTID_1": 38697, "PARCEL_NO_": "107603037500", "Tax_Legal_": "NADIR 33-111 EAST END QTR", "Name": "HENRY, LEROY G.", "Address": "PO BOX 9235", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 37.988752117200001, "SHAPE_Area": 90.023060732299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364321.812399998307228, 254736.210299998521805 ], [ 364330.02080000191927, 254739.903900001198053 ], [ 364331.475500002503395, 254737.767099998891354 ], [ 364334.734899997711182, 254733.782999999821186 ], [ 364335.533699996769428, 254732.898899998515844 ], [ 364328.33839999884367, 254727.397799998521805 ], [ 364323.450199998915195, 254733.268399998545647 ], [ 364321.812399998307228, 254736.210299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603035500", "MAP": "B9-351-T72", "PARCEL_NAM": "33-112", "ACRE": null, "LONGITUDE": -64.87886048, "LATITUDE": 18.32164017, "OBJECTID_1": 38677, "PARCEL_NO_": "107603035500", "Tax_Legal_": "33-56, 33-104 & 33-112 NADIR NO.2 RED HOOK QTR", "Name": "DUNLOP, PATRICK,DERESE A. DUNLOP-HARLEY", "Address": "PO Box 7143", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13600, "Improved_V": 79500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.957197330299998, "SHAPE_Area": 114.06852350299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364315.523299999535084, 254748.702300000935793 ], [ 364323.940700002014637, 254751.412300001829863 ], [ 364325.759400002658367, 254746.164000000804663 ], [ 364329.644199997186661, 254740.45719999819994 ], [ 364330.02080000191927, 254739.903900001198053 ], [ 364321.812399998307228, 254736.210299998521805 ], [ 364315.523299999535084, 254748.702300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-113", "ACRE": null, "LONGITUDE": -64.87890104, "LATITUDE": 18.32174028, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.131816837199999, "SHAPE_Area": 93.350439692999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364312.743299998342991, 254759.567499998956919 ], [ 364322.610699996352196, 254760.311299998313189 ], [ 364322.442500002682209, 254756.90260000154376 ], [ 364323.27929999679327, 254753.320900000631809 ], [ 364323.940700002014637, 254751.412300001829863 ], [ 364315.523299999535084, 254748.702300000935793 ], [ 364315.250399999320507, 254749.24439999833703 ], [ 364314.429700002074242, 254750.926399998366833 ], [ 364312.743299998342991, 254759.567499998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-114", "ACRE": null, "LONGITUDE": -64.87890307000001, "LATITUDE": 18.32183984, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.823920788400002, "SHAPE_Area": 118.503611525 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364323.121500000357628, 254771.848900001496077 ], [ 364323.1300999969244, 254770.840500000864267 ], [ 364322.610699996352196, 254760.311299998313189 ], [ 364312.743299998342991, 254759.567499998956919 ], [ 364313.441799998283386, 254772.238800000399351 ], [ 364323.121500000357628, 254771.848900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-115", "ACRE": null, "LONGITUDE": -64.87889769, "LATITUDE": 18.3219557, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.278916726799999, "SHAPE_Area": 127.54062233099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364323.243500001728535, 254785.048599999397993 ], [ 364323.025799997150898, 254783.083000000566244 ], [ 364323.121500000357628, 254771.848900001496077 ], [ 364313.441799998283386, 254772.238800000399351 ], [ 364314.127599999308586, 254786.387699998915195 ], [ 364323.243500001728535, 254785.048599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-116", "ACRE": null, "LONGITUDE": -64.87888519000001, "LATITUDE": 18.32208484, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.098941123099998, "SHAPE_Area": 136.60210408200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364325.068800002336502, 254799.834699999541044 ], [ 364324.523299999535084, 254796.60530000180006 ], [ 364323.243500001728535, 254785.048599999397993 ], [ 364314.127599999308586, 254786.387699998915195 ], [ 364314.874600000679493, 254793.359900001436472 ], [ 364316.41889999806881, 254801.394099999219179 ], [ 364325.068800002336502, 254799.834699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-118", "ACRE": null, "LONGITUDE": -64.87883965, "LATITUDE": 18.32232192, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.441761078600003, "SHAPE_Area": 89.784284808400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364330.073499999940395, 254821.620600000023842 ], [ 364329.957099996507168, 254821.347699999809265 ], [ 364329.167000003159046, 254819.441399998962879 ], [ 364327.882399998605251, 254813.760600000619888 ], [ 364318.717299997806549, 254815.556200001388788 ], [ 364321.046300001442432, 254826.129900000989437 ], [ 364330.073499999940395, 254821.620600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-119", "ACRE": null, "LONGITUDE": -64.87880535, "LATITUDE": 18.32240744, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.121490522800002, "SHAPE_Area": 108.051551424 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364334.292300000786781, 254830.350000001490116 ], [ 364333.119499996304512, 254828.761799998581409 ], [ 364330.073499999940395, 254821.620600000023842 ], [ 364321.046300001442432, 254826.129900000989437 ], [ 364321.836499996483326, 254828.036200001835823 ], [ 364326.598800003528595, 254836.941100001335144 ], [ 364334.292300000786781, 254830.350000001490116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-120", "ACRE": null, "LONGITUDE": -64.87872665, "LATITUDE": 18.32250911, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 55.133867867299998, "SHAPE_Area": 162.89873553300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364343.92119999974966, 254841.172800000756979 ], [ 364339.264899998903275, 254837.084300000220537 ], [ 364334.292300000786781, 254830.350000001490116 ], [ 364326.598800003528595, 254836.941100001335144 ], [ 364340.162299998104572, 254851.228399999439716 ], [ 364343.92119999974966, 254841.172800000756979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33", "ACRE": null, "LONGITUDE": -64.87864438, "LATITUDE": 18.3227964, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.342756659, "SHAPE_Area": 867.48058908600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364363.405100002884865, 254870.595100000500679 ], [ 364340.162299998104572, 254851.228399999439716 ], [ 364334.461400002241135, 254857.868700001388788 ], [ 364323.229000002145767, 254870.951799999922514 ], [ 364327.887800000607967, 254874.948499999940395 ], [ 364351.915299996733665, 254894.1435999982059 ], [ 364363.405100002884865, 254870.595100000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-122", "ACRE": null, "LONGITUDE": -64.87821211000001, "LATITUDE": 18.32285847, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 38.4301469149, "SHAPE_Area": 90.809538367599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364395.772799998521805, 254875.884100001305342 ], [ 364391.463299997150898, 254874.550599999725819 ], [ 364387.991499997675419, 254873.126400001347065 ], [ 364383.465800002217293, 254882.158399999141693 ], [ 364393.114600002765656, 254885.403799999505281 ], [ 364395.772799998521805, 254875.884100001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-123", "ACRE": null, "LONGITUDE": -64.87810919, "LATITUDE": 18.3228855, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.084623906600001, "SHAPE_Area": 128.19740174899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364408.089599996805191, 254879.467199999839067 ], [ 364395.772799998521805, 254875.884100001305342 ], [ 364393.114600002765656, 254885.403799999505281 ], [ 364406.794900000095367, 254888.682100001722574 ], [ 364408.089599996805191, 254879.467199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-124", "ACRE": null, "LONGITUDE": -64.87796898000001, "LATITUDE": 18.3229178, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.289883952300002, "SHAPE_Area": 154.260446075 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364424.932599999010563, 254883.830699998885393 ], [ 364408.089599996805191, 254879.467199999839067 ], [ 364406.794900000095367, 254888.682100001722574 ], [ 364422.888800002634525, 254892.613499999046326 ], [ 364424.932599999010563, 254883.830699998885393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-125", "ACRE": null, "LONGITUDE": -64.87780393, "LATITUDE": 18.32295894, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.634952712400001, "SHAPE_Area": 184.88978312699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364443.269000001251698, 254888.514699999243021 ], [ 364437.189457639469765, 254886.555883660563268 ], [ 364430.9391999989748, 254885.239799998700619 ], [ 364424.932599999010563, 254883.830699998885393 ], [ 364422.888800002634525, 254892.613499999046326 ], [ 364435.751999996602535, 254897.151799999177456 ], [ 364439.770999997854233, 254898.662300001829863 ], [ 364443.269000001251698, 254888.514699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-126", "ACRE": null, "LONGITUDE": -64.87762286, "LATITUDE": 18.32303229, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.533082525200001, "SHAPE_Area": 250.49668701300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364465.52929999679327, 254903.242300000041723 ], [ 364463.535999998450279, 254901.22069999948144 ], [ 364458.962314268923365, 254897.312124833115377 ], [ 364454.02777908340795, 254893.870334094681311 ], [ 364448.779850865132175, 254890.928428181970958 ], [ 364443.269000001251698, 254888.514699999243021 ], [ 364439.770999997854233, 254898.662300001829863 ], [ 364449.414399996399879, 254902.540899999439716 ], [ 364457.414599999785423, 254909.994699999690056 ], [ 364465.52929999679327, 254903.242300000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-127", "ACRE": null, "LONGITUDE": -64.87746786, "LATITUDE": 18.32319194, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.552862179300007, "SHAPE_Area": 254.008976209 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364477.479299999773502, 254928.038899999111891 ], [ 364477.400200001895428, 254926.726599998772144 ], [ 364476.114363776170649, 254921.554390528093791 ], [ 364474.257610578672029, 254916.558633010834455 ], [ 364471.853281696035992, 254911.802129228424747 ], [ 364468.931602001423016, 254907.344673298153793 ], [ 364465.52929999679327, 254903.242300000041723 ], [ 364457.414599999785423, 254909.994699999690056 ], [ 364463.012000001966953, 254915.528900001198053 ], [ 364467.73480000346899, 254929.077599998563528 ], [ 364477.479299999773502, 254928.038899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-129", "ACRE": null, "LONGITUDE": -64.87744717, "LATITUDE": 18.3236137, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.031398656199997, "SHAPE_Area": 189.41008853100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364477.944499999284744, 254959.672200001776218 ], [ 364466.135200001299381, 254953.475600000470877 ], [ 364465.88120000064373, 254957.348900001496077 ], [ 364464.216399997472763, 254963.456999998539686 ], [ 364460.123700000345707, 254970.600699998438358 ], [ 364466.577799998223782, 254970.2314000017941 ], [ 364477.527199998497963, 254969.472199998795986 ], [ 364477.944499999284744, 254959.672200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33-121", "ACRE": null, "LONGITUDE": -64.87834993, "LATITUDE": 18.32279312, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.15305733, "SHAPE_Area": 225.32258119599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364367.429700002074242, 254861.303700000047684 ], [ 364363.405100002884865, 254870.595100000500679 ], [ 364383.465800002217293, 254882.158399999141693 ], [ 364387.991499997675419, 254873.126400001347065 ], [ 364380.843173150671646, 254869.712922983540921 ], [ 364373.975913401751313, 254865.764360510424012 ], [ 364367.429700002074242, 254861.303700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302063500", "MAP": "D9-9051-T016", "PARCEL_NAM": "NORDSIDEVEJ 15 CONS", "ACRE": ".93", "LONGITUDE": -64.93475146, "LATITUDE": 18.34584825, "OBJECTID_1": 9716, "PARCEL_NO_": "105302063500", "Tax_Legal_": "13 NORDSIDEVEJ QUEENS'S QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 152900, "Improved_V": 147700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.84857441000003, "SHAPE_Area": 3582.2790014799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358416.773100003600121, 257386.711500000208616 ], [ 358430.777099996805191, 257351.995700001716614 ], [ 358425.964400000870228, 257349.000999998301268 ], [ 358420.363300003111362, 257343.888900000602007 ], [ 358418.967699997127056, 257341.561599999666214 ], [ 358417.18299999833107, 257338.585499998182058 ], [ 358415.575800001621246, 257337.939100001007318 ], [ 358415.458999998867512, 257335.486999999731779 ], [ 358403.100100003182888, 257333.399099998176098 ], [ 358380.248999997973442, 257362.106699999421835 ], [ 358366.334799997508526, 257355.940799999982119 ], [ 358366.232500001788139, 257356.1114999987185 ], [ 358366.19709999859333, 257356.152899999171495 ], [ 358345.133400000631809, 257388.599500000476837 ], [ 358353.832099996507168, 257391.895899999886751 ], [ 358406.879699997603893, 257412.172899998724461 ], [ 358416.773100003600121, 257386.711500000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "103003030400", "MAP": "D9-2593-T84", "PARCEL_NAM": "4H-2", "ACRE": "3.00", "LONGITUDE": -64.91318599, "LATITUDE": 18.35167049, "OBJECTID_1": 5800, "PARCEL_NO_": "103003030400", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 4H GR NORTHSIDE", "Name": "RAIMER, ALFRED", "Address": "PO Box 11908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 370400, "Improved_V": 76100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 474.200550389, "SHAPE_Area": 13629.491099000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360635.523199997842312, 257965.521600000560284 ], [ 360619.219899997115135, 257985.956500001251698 ], [ 360613.293200001120567, 258074.010000001639128 ], [ 360615.838192808150779, 258079.886067487008404 ], [ 360619.071855746209621, 258085.413144606369315 ], [ 360622.947183513606433, 258090.510888438264374 ], [ 360627.40784341446124, 258095.105196953081759 ], [ 360632.388994224311318, 258099.129286177951144 ], [ 360637.818228737742174, 258102.524660984694492 ], [ 360643.616626296949107, 258105.241965389053803 ], [ 360649.69990000128746, 258107.241700001060963 ], [ 360697.65259999781847, 258131.450899999588728 ], [ 360722.093099996447563, 257964.977400001138449 ], [ 360676.934199996292591, 257965.241099998354912 ], [ 360635.523199997842312, 257965.521600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96342464, "LATITUDE": 18.34547767, "OBJECTID_1": 7457, "PARCEL_NO_": "105201012400", "Tax_Legal_": "CONTANT 132 7A SOUTHSIDE QTR", "Name": "BLAIZE, EDMOND & JENNIFER POYSER", "Address": "PO Box 305647", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.03083311099999, "SHAPE_Area": 912.94428860300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355393.847499996423721, 257312.599399998784065 ], [ 355392.038900002837181, 257297.36089999973774 ], [ 355366.208200000226498, 257300.526999998837709 ], [ 355332.305299997329712, 257304.682399999350309 ], [ 355329.248000003397465, 257318.952199999243021 ], [ 355393.847499996423721, 257312.599399998784065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201018900", "MAP": "D9-3560-T86", "PARCEL_NAM": "132-A", "ACRE": ".24", "LONGITUDE": -64.9635809, "LATITUDE": 18.3457177, "OBJECTID_1": 7475, "PARCEL_NO_": "105201018900", "Tax_Legal_": "CONTANT 132A 7A SOUTHSIDE QTR.", "Name": "WILLOCK(RESERVED LIFE ESTATE), CLARETTA & CHARLES", "Address": "P.O. BOX 2114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 129100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.14611728899999, "SHAPE_Area": 1344.44072179 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355366.07599999755621, 257339.49210000038147 ], [ 355363.740299999713898, 257315.560199998319149 ], [ 355329.248000003397465, 257318.952199999243021 ], [ 355328.106499999761581, 257324.279800001531839 ], [ 355326.475900001823902, 257326.377399999648333 ], [ 355324.814699999988079, 257332.063299998641014 ], [ 355325.51129999756813, 257344.945700000971556 ], [ 355328.161499999463558, 257354.43189999833703 ], [ 355367.310400001704693, 257348.469500001519918 ], [ 355366.07599999755621, 257339.49210000038147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201018800", "MAP": "D9-3560-T86", "PARCEL_NAM": "132-B", "ACRE": ".24", "LONGITUDE": -64.96325234, "LATITUDE": 18.34567282, "OBJECTID_1": 7474, "PARCEL_NO_": "105201018800", "Tax_Legal_": "CONTANT 132B 7A S.S. QTR.", "Name": "WILLOCK(RESERVED LIFE ESTATE), CLARETTA & CHARLES", "Address": "P.O. BOX 2114", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 146000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.399548095, "SHAPE_Area": 986.16968847299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355396.553099997341633, 257335.39469999819994 ], [ 355393.847499996423721, 257312.599399998784065 ], [ 355363.740299999713898, 257315.560199998319149 ], [ 355366.07599999755621, 257339.49210000038147 ], [ 355367.310400001704693, 257348.469500001519918 ], [ 355397.517499998211861, 257343.868900001049042 ], [ 355396.553099997341633, 257335.39469999819994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603021900", "MAP": "D9-7044-T002", "PARCEL_NAM": "2-4-1", "ACRE": ".307", "LONGITUDE": -64.89121141, "LATITUDE": 18.33330481, "OBJECTID_1": 21564, "PARCEL_NO_": "105603021900", "Tax_Legal_": "2-4-1 ESTATE CHARLOTTE AMALIE #3 NEW QTR", "Name": "JN BAPTISTE, VAUGHN & USELDA", "Address": "4002 Estate Charlotte Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 101300, "Improved_V": 407800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.351781394, "SHAPE_Area": 1505.84455069 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362999.178000003099442, 255988.991200000047684 ], [ 362996.811200000345707, 255982.850099999457598 ], [ 362987.108499996364117, 255985.937100000679493 ], [ 362999.812799997627735, 256054.979699999094009 ], [ 363000.848600000143051, 256054.708999998867512 ], [ 363034.554899998009205, 256045.91440000012517 ], [ 363033.381899997591972, 256044.155499998480082 ], [ 363029.375500001013279, 256041.167399998754263 ], [ 363021.41669999808073, 256028.858800001442432 ], [ 363003.157399997115135, 255995.145500000566244 ], [ 363000.763700000941753, 255992.1706000007689 ], [ 362999.178000003099442, 255988.991200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9609399, "LATITUDE": 18.33604682, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.881069505300005, "SHAPE_Area": 213.65008422700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355652.989000000059605, 256257.078099999576807 ], [ 355650.125299997627735, 256253.003800000995398 ], [ 355616.385300002992153, 256273.87049999833107 ], [ 355621.412399999797344, 256280.749699998646975 ], [ 355627.101000003516674, 256277.310100000351667 ], [ 355626.307199999690056, 256275.987199999392033 ], [ 355626.033962336601689, 256275.605789739376632 ], [ 355625.829062549280934, 256275.18371310638031 ], [ 355625.698386858857702, 256274.733095229574246 ], [ 355625.645689227210823, 256274.266881151503185 ], [ 355625.672483515983913, 256273.798463951708982 ], [ 355625.777999997138977, 256273.341299999505281 ], [ 355652.989000000059605, 256257.078099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-8272-T009", "PARCEL_NAM": "99A-4", "ACRE": ".08", "LONGITUDE": -64.96094636, "LATITUDE": 18.33618296, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.310178483599998, "SHAPE_Area": 298.55541487 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355644.652900002896786, 256287.432100001722574 ], [ 355633.404399998486042, 256268.78319999948144 ], [ 355625.777999997138977, 256273.341299999505281 ], [ 355625.672483514470514, 256273.798463951650774 ], [ 355625.645689224824309, 256274.266881151677808 ], [ 355625.69838685618015, 256274.733095230098115 ], [ 355625.829062547010835, 256275.183713107107906 ], [ 355626.033962335262913, 256275.605789739987813 ], [ 355626.307199999690056, 256275.987199999392033 ], [ 355627.101000003516674, 256277.310100000351667 ], [ 355621.412399999797344, 256280.749699998646975 ], [ 355629.249899998307228, 256292.758400000631809 ], [ 355644.652900002896786, 256287.432100001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-8272-T009", "PARCEL_NAM": "99A-3", "ACRE": ".11", "LONGITUDE": -64.96113971, "LATITUDE": 18.33620318, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.865789465399999, "SHAPE_Area": 486.07550481700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355604.896799996495247, 256268.247400000691414 ], [ 355595.074299998581409, 256276.063200000673532 ], [ 355613.593900002539158, 256298.172200001776218 ], [ 355629.249899998307228, 256292.758400000631809 ], [ 355621.412399999797344, 256280.749699998646975 ], [ 355616.385300002992153, 256273.87049999833107 ], [ 355611.672399997711182, 256276.477800000458956 ], [ 355604.896799996495247, 256268.247400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-8272-T009", "PARCEL_NAM": "99A-2", "ACRE": ".05", "LONGITUDE": -64.96109337, "LATITUDE": 18.33604267, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.0037667661, "SHAPE_Area": 253.17565341599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355621.780900001525879, 256254.812699999660254 ], [ 355604.896799996495247, 256268.247400000691414 ], [ 355611.672399997711182, 256276.477800000458956 ], [ 355616.385300002992153, 256273.87049999833107 ], [ 355629.146099999547005, 256265.978500001132488 ], [ 355621.780900001525879, 256254.812699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105204050100", "MAP": "D9-8272-T009", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9607996, "LATITUDE": 18.33570098, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.309834250700007, "SHAPE_Area": 239.27911677399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355657.035599999129772, 256248.878800000995398 ], [ 355648.449600003659725, 256212.366500001400709 ], [ 355636.477099999785423, 256214.946100000292063 ], [ 355637.336999997496605, 256220.03940000012517 ], [ 355641.967299997806549, 256218.914900001138449 ], [ 355642.209879394911695, 256218.848313928756397 ], [ 355642.460095123038627, 256218.822418787080096 ], [ 355642.711169424524996, 256218.837916014861548 ], [ 355642.956301285128575, 256218.894385828461964 ], [ 355643.188850657374132, 256218.990298593067564 ], [ 355643.402518323855475, 256219.123056256677955 ], [ 355643.591516528336797, 256219.289062725350959 ], [ 355643.750725752441213, 256219.48382127302466 ], [ 355643.875833391561173, 256219.702056347159669 ], [ 355643.963450572977308, 256219.937856471136911 ], [ 355644.011203952599317, 256220.184834372310434 ], [ 355644.017800003290176, 256220.436299998313189 ], [ 355653.158299997448921, 256251.193300001323223 ], [ 355657.035599999129772, 256248.878800000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-8272-T009", "PARCEL_NAM": "99B-1", "ACRE": ".13", "LONGITUDE": -64.96086977, "LATITUDE": 18.3357696, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.058001443799995, "SHAPE_Area": 502.64309869800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355637.336999997496605, 256220.03940000012517 ], [ 355628.230099998414516, 256222.681600000709295 ], [ 355635.021899998188019, 256244.066199999302626 ], [ 355636.130300000309944, 256244.968199998140335 ], [ 355646.021999999880791, 256255.541499998420477 ], [ 355650.125299997627735, 256253.003800000995398 ], [ 355653.158299997448921, 256251.193300001323223 ], [ 355644.017800003290176, 256220.436299998313189 ], [ 355644.011203951726202, 256220.18483437265968 ], [ 355643.963450571463909, 256219.937856471922714 ], [ 355643.875833389698528, 256219.702056348440237 ], [ 355643.750725750403944, 256219.483821274770889 ], [ 355643.591516526299529, 256219.289062727504643 ], [ 355643.402518322051037, 256219.123056259064469 ], [ 355643.188850655860733, 256218.990298595570493 ], [ 355642.956301284022629, 256218.894385830877582 ], [ 355642.711169423826504, 256218.837916016957024 ], [ 355642.460095122631174, 256218.822418788680807 ], [ 355642.209879394853488, 256218.848313929629512 ], [ 355641.967299997806549, 256218.914900001138449 ], [ 355637.336999997496605, 256220.03940000012517 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-8272-T009", "PARCEL_NAM": "99B-3", "ACRE": ".11", "LONGITUDE": -64.96087088, "LATITUDE": 18.33554061, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.617311026099998, "SHAPE_Area": 342.27156737299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355649.051299996674061, 256214.925200000405312 ], [ 355663.369099996984005, 256210.338799998164177 ], [ 355655.332999996840954, 256207.106600001454353 ], [ 355641.67059999704361, 256201.717500001192093 ], [ 355637.651699997484684, 256200.206900000572205 ], [ 355626.224799998104572, 256216.367600001394749 ], [ 355628.230099998414516, 256222.681600000709295 ], [ 355637.336999997496605, 256220.03940000012517 ], [ 355636.477099999785423, 256214.946100000292063 ], [ 355648.449600003659725, 256212.366500001400709 ], [ 355649.051299996674061, 256214.925200000405312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-8272-T009", "PARCEL_NAM": "99A-6", "ACRE": ".06", "LONGITUDE": -64.96076383, "LATITUDE": 18.336051, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.678697961499999, "SHAPE_Area": 220.27739126200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355653.386699996888638, 256276.59739999845624 ], [ 355662.191299997270107, 256270.1706000007689 ], [ 355652.989000000059605, 256257.078099999576807 ], [ 355641.691200003027916, 256263.83049999922514 ], [ 355651.293799996376038, 256277.983300000429153 ], [ 355653.386699996888638, 256276.59739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-8272-T009", "PARCEL_NAM": "99A-5", "ACRE": ".09", "LONGITUDE": -64.96083144000001, "LATITUDE": 18.33613372, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.143326940500003, "SHAPE_Area": 255.57415102100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355633.404399998486042, 256268.78319999948144 ], [ 355644.652900002896786, 256287.432100001722574 ], [ 355658.166799999773502, 256282.759100001305342 ], [ 355653.386699996888638, 256276.59739999845624 ], [ 355651.293799996376038, 256277.983300000429153 ], [ 355641.691200003027916, 256263.83049999922514 ], [ 355633.404399998486042, 256268.78319999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804010800", "MAP": "D9-8996-T015", "PARCEL_NAM": "7G-1", "ACRE": ".05", "LONGITUDE": -64.9352394, "LATITUDE": 18.35478229, "OBJECTID_1": 4423, "PARCEL_NO_": "102804010800", "Tax_Legal_": "MISGUNST 7G GR NORTHSIDE", "Name": "HUGH, TESSA M. (Trustee)", "Address": "PO Box 687", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 91700, "Improved_V": 371000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.083422704900002, "SHAPE_Area": 219.77620825299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358334.91669999808073, 258353.1402000002563 ], [ 358317.147399999201298, 258362.428399998694658 ], [ 358346.762299999594688, 258371.684999998658895 ], [ 358334.91669999808073, 258353.1402000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603019600", "MAP": "D9-8991-T015", "PARCEL_NAM": "36-2", "ACRE": ".511", "LONGITUDE": -64.89358295, "LATITUDE": 18.33507755, "OBJECTID_1": 21539, "PARCEL_NO_": "105603019600", "Tax_Legal_": "36 ESTATE CHARLOTTE AMALIE #3 NEW QTR", "Name": "HARTHMAN LEASING I, LLLP", "Address": "PO Box 503330", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 1028100, "Improved_V": 248000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.68691343699999, "SHAPE_Area": 2181.2437584700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362770.028499998152256, 256194.831799998879433 ], [ 362738.548100002110004, 256198.584899999201298 ], [ 362724.813900001347065, 256201.638900000602007 ], [ 362721.563400000333786, 256204.567600000649691 ], [ 362721.518500000238419, 256209.8445999994874 ], [ 362724.686200000345707, 256216.625500001013279 ], [ 362735.816299997270107, 256235.29280000180006 ], [ 362742.277999997138977, 256244.159099999815226 ], [ 362789.194200001657009, 256230.024999998509884 ], [ 362770.028499998152256, 256194.831799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509201030900", "MAP": "D9-8977-T015", "PARCEL_NAM": "3A", "ACRE": ".50", "LONGITUDE": -64.9597995, "LATITUDE": 18.30930305, "OBJECTID_1": 87357, "PARCEL_NO_": "509201030900", "Tax_Legal_": "3A WATER ISLAND No. 10 SOUTHSIDE QUARTER", "Name": "GENEVIEVE ALEXANDER, TRUSTEE OF G. ALEXANDER TRUST", "Address": "310 Ridgeway Dr", "City": "Little Rock", "State": "Arkansas", "Zip": 72205, "Country": "United States", "Land_Value": 150000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 255.42173524899999, "SHAPE_Area": 2168.78442344 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355822.693499997258186, 253298.746399998664856 ], [ 355773.01240000128746, 253278.724599998444319 ], [ 355773.754000000655651, 253286.329900000244379 ], [ 355768.903499998152256, 253287.767900001257658 ], [ 355764.844999998807907, 253290.901099998503923 ], [ 355765.539800003170967, 253303.994600001722574 ], [ 355763.909199997782707, 253306.092199999839067 ], [ 355759.857799999415874, 253308.381000000983477 ], [ 355757.442500002682209, 253307.939100001007318 ], [ 355754.238799996674061, 253305.379700001329184 ], [ 355751.814499996602535, 253305.993200000375509 ], [ 355749.370399996638298, 253308.92850000038743 ], [ 355749.348800003528595, 253311.461399998515844 ], [ 355746.895700000226498, 253315.452100001275539 ], [ 355742.043399997055531, 253317.101199999451637 ], [ 355742.829999998211861, 253319.42960000038147 ], [ 355742.000299997627735, 253322.166999999433756 ], [ 355739.581399999558926, 253322.147199999541044 ], [ 355738.803800001740456, 253318.763399999588728 ], [ 355736.392099998891354, 253317.899300001561642 ], [ 355733.123700000345707, 253322.938799999654293 ], [ 355727.470499999821186, 253323.947999998927116 ], [ 355725.020999997854233, 253327.516499999910593 ], [ 355727.423699997365475, 253329.436000000685453 ], [ 355793.591700002551079, 253324.06700000166893 ], [ 355798.496100001037121, 253316.296599999070168 ], [ 355822.693499997258186, 253298.746399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021600", "MAP": "D9-1590-T80", "PARCEL_NAM": "100 REM", "ACRE": null, "LONGITUDE": -64.94006568, "LATITUDE": 18.34757032, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 473.33555605100003, "SHAPE_Area": 12643.174573800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357764.483599998056889, 257557.453899998217821 ], [ 357770.6266999989748, 257573.576200000941753 ], [ 357803.858499996364117, 257628.397999998182058 ], [ 357826.424099996685982, 257654.736699998378754 ], [ 357853.63570000231266, 257610.294599998742342 ], [ 357860.549699999392033, 257608.982299998402596 ], [ 357898.065099999308586, 257533.11939999833703 ], [ 357900.320200003683567, 257525.605999998748302 ], [ 357810.374499998986721, 257483.82039999961853 ], [ 357804.603299997746944, 257480.103799998760223 ], [ 357793.740099996328354, 257494.66160000115633 ], [ 357787.029500000178814, 257501.89299999922514 ], [ 357789.6503000035882, 257545.583200000226498 ], [ 357764.483599998056889, 257557.453899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803021600", "MAP": "D9-8984-T015", "PARCEL_NAM": "100-10-2", "ACRE": ".500", "LONGITUDE": -64.9408123, "LATITUDE": 18.34797766, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.94364928900001, "SHAPE_Area": 2269.7023774899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357769.642599999904633, 257570.993400000035763 ], [ 357719.128300003707409, 257603.561900001019239 ], [ 357721.244999997317791, 257623.035300001502037 ], [ 357727.594999998807907, 257639.545299999415874 ], [ 357786.55290000140667, 257599.849199999123812 ], [ 357770.6266999989748, 257573.576200000941753 ], [ 357769.642599999904633, 257570.993400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803021600", "MAP": "D9-8984-T015", "PARCEL_NAM": "100-10-4", "ACRE": ".500", "LONGITUDE": -64.94037228000001, "LATITUDE": 18.34853567, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.59288813500001, "SHAPE_Area": 2391.7911145399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357803.858499996364117, 257628.397999998182058 ], [ 357756.572800002992153, 257680.5168999992311 ], [ 357757.651699997484684, 257681.243700001388788 ], [ 357767.223478045023512, 257682.025522156560328 ], [ 357776.701800003647804, 257683.572000000625849 ], [ 357779.875760024180636, 257684.64312020415673 ], [ 357782.858002353343181, 257686.168751677440014 ], [ 357785.583856580487918, 257688.115810853429139 ], [ 357787.99421211250592, 257690.442075436731102 ], [ 357790.036799997091293, 257693.097100000828505 ], [ 357801.30969999730587, 257709.308899998664856 ], [ 357802.404500000178814, 257705.869300000369549 ], [ 357810.295199997723103, 257681.078400000929832 ], [ 357817.454700000584126, 257669.385499998927116 ], [ 357826.424099996685982, 257654.736699998378754 ], [ 357803.858499996364117, 257628.397999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803021600", "MAP": "D9-8984-T015", "PARCEL_NAM": "100-10-3", "ACRE": ".661", "LONGITUDE": -64.94066826, "LATITUDE": 18.34829854, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.635911698, "SHAPE_Area": 3112.9882185299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357786.55290000140667, 257599.849199999123812 ], [ 357727.594999998807907, 257639.545299999415874 ], [ 357737.543399997055531, 257667.697000000625849 ], [ 357756.572800002992153, 257680.5168999992311 ], [ 357803.858499996364117, 257628.397999998182058 ], [ 357786.55290000140667, 257599.849199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803021600", "MAP": "D9-8984-T015", "PARCEL_NAM": "100-10-1", "ACRE": ".24", "LONGITUDE": -64.9409084, "LATITUDE": 18.34774546, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.38622754599999, "SHAPE_Area": 1086.1241996199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357769.642599999904633, 257570.993400000035763 ], [ 357764.483599998056889, 257557.453899998217821 ], [ 357759.468900002539158, 257559.819200001657009 ], [ 357716.139799997210503, 257577.146200001239777 ], [ 357719.128300003707409, 257603.561900001019239 ], [ 357769.642599999904633, 257570.993400000035763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803021600", "MAP": "D9-1590-T80", "PARCEL_NAM": "100-10-A", "ACRE": ".721", "LONGITUDE": -64.94112288, "LATITUDE": 18.34836126, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 560.08340046199999, "SHAPE_Area": 2944.54228152 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357790.036799997091293, 257693.097100000828505 ], [ 357787.99421211250592, 257690.442075436731102 ], [ 357785.583856580487918, 257688.115810853429139 ], [ 357782.858002353343181, 257686.168751677440014 ], [ 357779.875760024180636, 257684.64312020415673 ], [ 357776.701800003647804, 257683.572000000625849 ], [ 357767.223478045023512, 257682.025522156560328 ], [ 357757.651699997484684, 257681.243700001388788 ], [ 357737.543399997055531, 257667.697000000625849 ], [ 357727.594999998807907, 257639.545299999415874 ], [ 357721.244999997317791, 257623.035300001502037 ], [ 357719.128300003707409, 257603.561900001019239 ], [ 357716.139799997210503, 257577.146200001239777 ], [ 357708.703699998557568, 257580.119800001382828 ], [ 357707.698299996554852, 257645.260299999266863 ], [ 357703.253300003707409, 257647.588599998503923 ], [ 357682.180900000035763, 257629.615499999374151 ], [ 357630.95610000193119, 257604.348099999129772 ], [ 357613.485799998044968, 257599.431400001049042 ], [ 357615.030599996447563, 257601.391800001263618 ], [ 357618.35809999704361, 257605.614799998700619 ], [ 357620.099399998784065, 257604.951099999248981 ], [ 357629.889799997210503, 257608.464899998158216 ], [ 357674.417900003492832, 257633.407900001853704 ], [ 357709.179999999701977, 257665.580299999564886 ], [ 357710.310828784655314, 257666.491700199869229 ], [ 357711.564419762988109, 257667.225139853166183 ], [ 357712.912995928840246, 257667.764367440569913 ], [ 357714.326675599266309, 257668.09743478425662 ], [ 357715.774134531209711, 257668.21696179479477 ], [ 357717.223300002515316, 257668.120299998670816 ], [ 357719.878636504348833, 257667.583259992738022 ], [ 357722.586799745156895, 257667.51201557656168 ], [ 357725.266699999570847, 257667.908700000494719 ], [ 357727.115691974933725, 257669.778121477080276 ], [ 357728.638952743553091, 257671.921293101768242 ], [ 357729.796593572595157, 257674.282092901179567 ], [ 357730.558300003409386, 257676.798700001090765 ], [ 357732.120472505688667, 257679.67625967375352 ], [ 357734.123838655941654, 257682.26609686264419 ], [ 357736.516554420872126, 257684.501190566486912 ], [ 357739.236699998378754, 257686.323699999600649 ], [ 357742.465127507282887, 257687.769944747968111 ], [ 357745.879675973556004, 257688.694729492795886 ], [ 357749.396700002253056, 257689.075399998575449 ], [ 357750.373991408327129, 257689.598719673667802 ], [ 357751.257802426232956, 257690.26792820575065 ], [ 357752.026542559207883, 257691.066677592403721 ], [ 357752.661432361230254, 257691.975455295731081 ], [ 357753.146962197439279, 257692.972060911270091 ], [ 357753.471271126763895, 257694.032148498750757 ], [ 357753.626436651393306, 257695.12982132556499 ], [ 357753.608668254280929, 257696.238264494517352 ], [ 357753.418399997055531, 257697.330400001257658 ], [ 357759.556699998676777, 257698.388700000941753 ], [ 357759.796589893230703, 257697.20899168914184 ], [ 357760.235992813599296, 257696.088195572112454 ], [ 357760.861787817324512, 257695.059779568837257 ], [ 357761.655288136797026, 257694.154453050170559 ], [ 357762.59279918204993, 257693.399249830865301 ], [ 357763.646326081128791, 257692.816720917180646 ], [ 357764.784409630694427, 257692.424261114618275 ], [ 357765.973065694328398, 257692.233589604555164 ], [ 357767.17679999768734, 257692.250399999320507 ], [ 357770.118036091153044, 257692.60889993069577 ], [ 357772.976034162682481, 257693.390717672591563 ], [ 357775.690203537407797, 257694.579278383636847 ], [ 357778.203002764901612, 257696.149384112737607 ], [ 357780.461159520666115, 257698.067748005472822 ], [ 357782.416799999773502, 257700.293699998408556 ], [ 357790.036799997091293, 257693.097100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": "D9-8983-T015", "PARCEL_NAM": "70-AB", "ACRE": "1.176", "LONGITUDE": -64.97331844, "LATITUDE": 18.33329794, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 383.25852410099998, "SHAPE_Area": 5432.5477419600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354384.802799999713898, 255945.989799998700619 ], [ 354322.431500002741814, 255916.397599998861551 ], [ 354337.632799997925758, 255867.787399999797344 ], [ 354331.768500000238419, 255865.279199998825788 ], [ 354281.651500001549721, 255979.013099998235703 ], [ 354324.191699996590614, 256003.491099998354912 ], [ 354384.802799999713898, 255945.989799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": "D9-8983-T015", "PARCEL_NAM": "70-AA", "ACRE": ".508", "LONGITUDE": -64.97366637, "LATITUDE": 18.33380988, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.32206434400001, "SHAPE_Area": 1843.5812881500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354280.9070999994874, 256037.036499999463558 ], [ 354294.866200000047684, 256017.697000000625849 ], [ 354305.027099996805191, 256023.765700001269579 ], [ 354326.842100001871586, 256005.403000000864267 ], [ 354324.191699996590614, 256003.491099998354912 ], [ 354281.651500001549721, 255979.013099998235703 ], [ 354261.117499999701977, 256025.612300001084805 ], [ 354280.9070999994874, 256037.036499999463558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010100", "MAP": "D9-8983-T015", "PARCEL_NAM": "70-AC", "ACRE": "1.064", "LONGITUDE": -64.97293373, "LATITUDE": 18.3328972, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.30697591000001, "SHAPE_Area": 4277.7997426700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354337.632799997925758, 255867.787399999797344 ], [ 354322.431500002741814, 255916.397599998861551 ], [ 354384.802799999713898, 255945.989799998700619 ], [ 354385.197400003671646, 255945.615499999374151 ], [ 354393.928599998354912, 255938.471799999475479 ], [ 354402.65990000218153, 255929.343600001186132 ], [ 354422.835500001907349, 255904.230000000447035 ], [ 354337.632799997925758, 255867.787399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603042200", "MAP": "G9-2365-T74", "PARCEL_NAM": "24C", "ACRE": ".366", "LONGITUDE": -64.87640207, "LATITUDE": 18.31890068, "OBJECTID_1": 38733, "PARCEL_NO_": "107603042200", "Tax_Legal_": "NADIR 24C RED HOOK QTR", "Name": "DONESTORG, SR. PATRICIO & E", "Address": "PO Box 7782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 182000, "Improved_V": 86100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.09703689700001, "SHAPE_Area": 1982.4861855300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364607.590700000524521, 254467.115699999034405 ], [ 364605.038099996745586, 254429.909600000828505 ], [ 364604.71169999986887, 254417.749000001698732 ], [ 364555.087999999523163, 254424.645599998533726 ], [ 364573.319899998605251, 254468.235100001096725 ], [ 364607.590700000524521, 254467.115699999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "107603041400", "MAP": "F9-2859-T71", "PARCEL_NAM": "25B", "ACRE": "0.14", "LONGITUDE": -64.87924344, "LATITUDE": 18.31938929, "OBJECTID_1": 38725, "PARCEL_NO_": "107603041400", "Tax_Legal_": "25B NADIR RED HOOK QTR", "Name": "VIGL OPERATIONS LLC", "Address": "1044 Queen Cross St", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 820, "Country": "United States", "Land_Value": 42500, "Improved_V": 374500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.51379543900001, "SHAPE_Area": 1344.55593372 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364332.347800001502037, 254510.463100001215935 ], [ 364284.450099997222424, 254483.858800001442432 ], [ 364282.916599996387959, 254474.558200001716614 ], [ 364219.093800000846386, 254488.601300001144409 ], [ 364234.412000000476837, 254488.937699999660254 ], [ 364248.913000002503395, 254490.534099999815226 ], [ 364265.816799998283386, 254494.049899999052286 ], [ 364277.880900003015995, 254497.737199999392033 ], [ 364291.543300002813339, 254503.126400001347065 ], [ 364303.587600000202656, 254509.135600000619888 ], [ 364321.18299999833107, 254519.69649999961257 ], [ 364332.347800001502037, 254510.463100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301020900", "MAP": "D9-7759-T006 / D9-8978-T015", "PARCEL_NAM": "7-7-B-1", "ACRE": ".24", "LONGITUDE": -64.92963253000001, "LATITUDE": 18.37509435, "OBJECTID_1": 868, "PARCEL_NO_": "101301020900", "Tax_Legal_": "7-7-A REM CONSOLIDATED PETERBORG NO.12 GT NORTHSIDE", "Name": "JEANS PAD USVI LLC", "Address": "6100 Red Hook Quarter", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 204400, "Improved_V": 872600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.480859705, "SHAPE_Area": 1081.84142776 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358924.5253000035882, 260647.494600001722574 ], [ 358921.946400001645088, 260635.867899999022484 ], [ 358907.87049999833107, 260599.355399999767542 ], [ 358907.553000003099442, 260585.067800000309944 ], [ 358903.98200000077486, 260577.323800001293421 ], [ 358894.179700002074242, 260580.384500000625849 ], [ 358889.831699997186661, 260581.74210000038147 ], [ 358909.767599999904633, 260652.243700001388788 ], [ 358913.149800002574921, 260651.296700000762939 ], [ 358920.37610000371933, 260649.273400001227856 ], [ 358924.5253000035882, 260647.494600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022300", "MAP": "D9-8976-T015", "PARCEL_NAM": "66", "ACRE": ".626", "LONGITUDE": -64.953544, "LATITUDE": 18.31753222, "OBJECTID_1": 87216, "PARCEL_NO_": "507104022300", "Tax_Legal_": "66 WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "LEARMONT, TOM-TRUSTEE", "Address": "807 N Quinn Cir", "City": "Mesa", "State": "Arizona", "Zip": 85205, "Country": "United States", "Land_Value": 123300, "Improved_V": 297600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.45701238199999, "SHAPE_Area": 1370.11820397 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356406.401199996471405, 254255.045000001788139 ], [ 356407.290799997746944, 254264.445300001651049 ], [ 356438.002599999308586, 254256.252999998629093 ], [ 356445.504000000655651, 254227.605599999427795 ], [ 356437.107500001788139, 254172.019299998879433 ], [ 356424.170500002801418, 254176.135299999266863 ], [ 356431.913599997758865, 254213.773299999535084 ], [ 356431.004799999296665, 254225.798200000077486 ], [ 356426.861699998378754, 254238.852099999785423 ], [ 356418.717699997127056, 254248.284699998795986 ], [ 356409.797899998724461, 254254.122299998998642 ], [ 356406.401199996471405, 254255.045000001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011800", "MAP": "D9-8863-T014 / D9-8967-T015", "PARCEL_NAM": "26B", "ACRE": ".042", "LONGITUDE": -64.94643298, "LATITUDE": 18.32136678, "OBJECTID_1": 87331, "PARCEL_NO_": "507203011800", "Tax_Legal_": "REM 26 WATER ISLAND (EASTERN) No.10&11 SOUTHSIDE QUARTER", "Name": "ANNE M PAGE REVOCABLE TRUST", "Address": "101 Pepper Ave", "City": "Richmond", "State": "Virginia", "Zip": 23226, "Country": "United States", "Land_Value": 156100, "Improved_V": 489900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.93252448200001, "SHAPE_Area": 106.96957977300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357147.219300001859665, 254655.854100000113249 ], [ 357151.25356136332266, 254653.547919695323799 ], [ 357155.62296368915122, 254651.966130946530029 ], [ 357160.198600001633167, 254651.1554000005126 ], [ 357167.256344503082801, 254651.511281176761258 ], [ 357174.258255266409833, 254652.466087189386599 ], [ 357181.153599999845028, 254654.012899998575449 ], [ 357186.355001742776949, 254655.286738595634233 ], [ 357191.312262166407891, 254657.312279006146127 ], [ 357195.917400002479553, 254660.045400001108646 ], [ 357195.730700001120567, 254665.221099998801947 ], [ 357199.803599998354912, 254660.399300001561642 ], [ 357198.212499998509884, 254657.853199999779463 ], [ 357190.988099999725819, 254653.994300000369549 ], [ 357166.030199997127056, 254649.357099998742342 ], [ 357160.385999999940395, 254649.310899998992682 ], [ 357153.921099998056889, 254650.946699999272823 ], [ 357147.219300001859665, 254655.854100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011800", "MAP": "D9-8863-T014 / D9-8967-T015", "PARCEL_NAM": "26A", "ACRE": ".02", "LONGITUDE": -64.94707557, "LATITUDE": 18.32193715, "OBJECTID_1": 87331, "PARCEL_NO_": "507203011800", "Tax_Legal_": "REM 26 WATER ISLAND (EASTERN) No.10&11 SOUTHSIDE QUARTER", "Name": "ANNE M PAGE REVOCABLE TRUST", "Address": "101 Pepper Ave", "City": "Richmond", "State": "Virginia", "Zip": 23226, "Country": "United States", "Land_Value": 156100, "Improved_V": 489900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 12.994103861099999, "SHAPE_Area": 3.5492866142900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357111.755400002002716, 254718.88120000064373 ], [ 357112.210699997842312, 254713.133499998599291 ], [ 357111.439000003039837, 254715.615899998694658 ], [ 357110.603900000452995, 254718.9864999987185 ], [ 357111.755400002002716, 254718.88120000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-1986-T82", "PARCEL_NAM": "11-4", "ACRE": "0.55", "LONGITUDE": -64.96118789000001, "LATITUDE": 18.35797127, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.81334028399999, "SHAPE_Area": 1919.3340529100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355579.928199999034405, 258675.272799998521805 ], [ 355551.825499996542931, 258702.440799999982119 ], [ 355551.773400001227856, 258708.562100000679493 ], [ 355559.434399999678135, 258720.260499998927116 ], [ 355630.200099997222424, 258687.42680000141263 ], [ 355621.310099996626377, 258673.880199998617172 ], [ 355579.928199999034405, 258675.272799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": null, "PARCEL_NAM": "11 REM", "ACRE": null, "LONGITUDE": -64.96078882, "LATITUDE": 18.3576042, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.991115089, "SHAPE_Area": 2280.09400783 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355621.207699999213219, 258673.883600000292063 ], [ 355621.521700002253056, 258673.668499998748302 ], [ 355644.170100003480911, 258666.471799999475479 ], [ 355666.84570000320673, 258657.212600000202656 ], [ 355650.114000000059605, 258618.174499999731779 ], [ 355613.594400003552437, 258645.528900001198053 ], [ 355591.665700003504753, 258663.925700001418591 ], [ 355579.928199999034405, 258675.272799998521805 ], [ 355621.207699999213219, 258673.883600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": null, "PARCEL_NAM": "11 REM", "ACRE": null, "LONGITUDE": -64.96163569, "LATITUDE": 18.35846094, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.782983038, "SHAPE_Area": 2184.5282967100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355509.923000000417233, 258731.490600001066923 ], [ 355522.756300002336502, 258763.196100000292063 ], [ 355562.088100001215935, 258782.124600000679493 ], [ 355563.454499997198582, 258757.209199998527765 ], [ 355561.118299998342991, 258747.479800000786781 ], [ 355553.22240000218153, 258727.783500000834465 ], [ 355546.863600000739098, 258716.965599998831749 ], [ 355542.851800002157688, 258714.610800001770258 ], [ 355537.200400002300739, 258715.408900000154972 ], [ 355524.216700002551079, 258725.012899998575449 ], [ 355509.923000000417233, 258731.490600001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404182600", "MAP": null, "PARCEL_NAM": "14A-1", "ACRE": null, "LONGITUDE": -64.91959469, "LATITUDE": 18.33237589, "OBJECTID_1": 19599, "PARCEL_NO_": "105404182600", "Tax_Legal_": "14A-1 ESTATE THOMAS 6H NEW QTR", "Name": "GOV. OF THE VI PROP & PROCURMNT", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 26100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.917890070200002, "SHAPE_Area": 115.20323425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360014.876400001347065, 255895.633600000292063 ], [ 360011.573399998247623, 255888.724300000816584 ], [ 360000.193300001323223, 255895.165800001472235 ], [ 360001.016199998557568, 255904.079900000244379 ], [ 360014.876400001347065, 255895.633600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404182100", "MAP": null, "PARCEL_NAM": "14B", "ACRE": ".167", "LONGITUDE": -64.91947883, "LATITUDE": 18.33176842, "OBJECTID_1": 19596, "PARCEL_NO_": "105404182100", "Tax_Legal_": "14A EST. THOMAS 6H NEW QTR.", "Name": "INSURANCE UNLIMITED INC", "Address": "PO Box 9109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 588100, "Improved_V": 1045400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.636005912, "SHAPE_Area": 730.40933286400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360045.699799999594688, 255826.790699999779463 ], [ 360045.373499996960163, 255824.811900001019239 ], [ 360043.708700001239777, 255814.714600000530481 ], [ 360043.276600003242493, 255812.589699998497963 ], [ 359992.280799999833107, 255832.269200000911951 ], [ 359992.751000002026558, 255833.084899999201298 ], [ 359995.097999997437, 255841.547800000756979 ], [ 359995.490099996328354, 255844.969500001519918 ], [ 360045.699799999594688, 255826.790699999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105404180300", "MAP": "F9-1841-T66", "PARCEL_NAM": "12", "ACRE": null, "LONGITUDE": -64.91949938, "LATITUDE": 18.33163101, "OBJECTID_1": 19580, "PARCEL_NO_": "105404180300", "Tax_Legal_": "11&12 EST THOMAS NEW QTR", "Name": "LAGA CO", "Address": "1020 Park Ave", "City": "New York", "State": "New York", "Zip": 10028, "Country": "United States", "Land_Value": 19000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.18379758099999, "SHAPE_Area": 198.84379113400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360041.929200001060963, 255806.029199998825788 ], [ 360040.912900000810623, 255801.319400001317263 ], [ 360012.646499998867512, 255814.2347999997437 ], [ 360001.5912000015378, 255818.829300001263618 ], [ 359987.852700002491474, 255824.553599998354912 ], [ 359989.19820000231266, 255826.913800001144409 ], [ 360041.929200001060963, 255806.029199998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2113-T82", "PARCEL_NAM": "11-13", "ACRE": "0.55", "LONGITUDE": -64.96093288, "LATITUDE": 18.35926937, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.342743816, "SHAPE_Area": 2599.7035624099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355660.281000003218651, 258844.550000000745058 ], [ 355610.135499998927116, 258801.018300000578165 ], [ 355586.200099997222424, 258826.780799999833107 ], [ 355597.711000002920628, 258836.281899999827147 ], [ 355569.540700003504753, 258863.866200000047684 ], [ 355572.204199999570847, 258865.993999999016523 ], [ 355577.03660000115633, 258866.666799999773502 ], [ 355660.281000003218651, 258844.550000000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-1981-T82", "PARCEL_NAM": "11-7", "ACRE": "1.089", "LONGITUDE": -64.9604309, "LATITUDE": 18.35884276, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.19313330799997, "SHAPE_Area": 6871.80947148 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355610.135499998927116, 258801.018300000578165 ], [ 355660.281000003218651, 258844.550000000745058 ], [ 355668.336999997496605, 258845.460400000214577 ], [ 355674.815800003707409, 258836.647300001233816 ], [ 355724.696299999952316, 258792.430799998342991 ], [ 355672.440499998629093, 258731.222100000828505 ], [ 355653.803800001740456, 258746.021800000220537 ], [ 355625.117899999022484, 258767.764600001275539 ], [ 355634.801700003445148, 258777.448399998247623 ], [ 355610.135499998927116, 258801.018300000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "G3-135-T71", "PARCEL_NAM": "11A", "ACRE": "0.82", "LONGITUDE": -64.96087706, "LATITUDE": 18.3582034, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 446.73090925000002, "SHAPE_Area": 7068.6581936700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355674.171999998390675, 258675.643399998545647 ], [ 355671.341700002551079, 258676.697399999946356 ], [ 355668.444499999284744, 258667.648600000888109 ], [ 355670.668099999427795, 258666.472100000828505 ], [ 355669.089699998497963, 258662.448399998247623 ], [ 355666.84570000320673, 258657.212600000202656 ], [ 355644.170100003480911, 258666.471799999475479 ], [ 355621.521700002253056, 258673.668499998748302 ], [ 355621.207699999213219, 258673.883600000292063 ], [ 355621.310099996626377, 258673.880199998617172 ], [ 355630.200099997222424, 258687.42680000141263 ], [ 355559.434399999678135, 258720.260499998927116 ], [ 355560.529500000178814, 258721.932599999010563 ], [ 355562.890900000929832, 258728.706999998539686 ], [ 355564.472999997437, 258732.308499999344349 ], [ 355564.968900002539158, 258733.466400001198053 ], [ 355570.007500000298023, 258745.230500001460314 ], [ 355572.345499999821186, 258754.7489 ], [ 355572.243000000715256, 258766.7804000005126 ], [ 355570.499700002372265, 258791.322500001639128 ], [ 355576.333599999547005, 258788.959300000220537 ], [ 355617.091499999165535, 258760.284400001168251 ], [ 355621.536499999463558, 258748.431099999696016 ], [ 355621.32490000128746, 258732.767700001597404 ], [ 355627.098300002515316, 258730.777100000530481 ], [ 355636.490000002086163, 258727.538899999111891 ], [ 355642.688400000333786, 258722.1402000002563 ], [ 355644.924900002777576, 258735.748599998652935 ], [ 355685.472099997103214, 258705.802600000053644 ], [ 355676.978399999439716, 258682.989000000059605 ], [ 355674.171999998390675, 258675.643399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2484-T82", "PARCEL_NAM": "11-23", "ACRE": "7,818 sq ft", "LONGITUDE": -64.96126193000001, "LATITUDE": 18.35904981, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.736843669, "SHAPE_Area": 729.85629099200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355586.200099997222424, 258826.780799999833107 ], [ 355595.860299997031689, 258816.383200000971556 ], [ 355576.333599999547005, 258788.959300000220537 ], [ 355570.499700002372265, 258791.322500001639128 ], [ 355567.584299996495247, 258832.367499999701977 ], [ 355586.200099997222424, 258826.780799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2469-T83", "PARCEL_NAM": "11-20", "ACRE": "2,868 sq ft", "LONGITUDE": -64.96126462, "LATITUDE": 18.35932203, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.83094117100001, "SHAPE_Area": 648.67663719300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355586.200099997222424, 258826.780799999833107 ], [ 355567.584299996495247, 258832.367499999701977 ], [ 355565.829199999570847, 258857.075899999588728 ], [ 355566.597699999809265, 258861.5152000002563 ], [ 355569.540700003504753, 258863.866200000047684 ], [ 355597.711000002920628, 258836.281899999827147 ], [ 355586.200099997222424, 258826.780799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2499-T3", "PARCEL_NAM": "11-21", "ACRE": "10,573 sq ft", "LONGITUDE": -64.96108068, "LATITUDE": 18.35886796, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.042632395, "SHAPE_Area": 991.21176158799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355620.3462999984622, 258791.261399999260902 ], [ 355601.523299999535084, 258771.237300001084805 ], [ 355576.333599999547005, 258788.959300000220537 ], [ 355595.860299997031689, 258816.383200000971556 ], [ 355610.135499998927116, 258801.018300000578165 ], [ 355620.3462999984622, 258791.261399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2185-T82", "PARCEL_NAM": "11-5", "ACRE": "0.40", "LONGITUDE": -64.96068855, "LATITUDE": 18.35845774, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.87323121100002, "SHAPE_Area": 1982.1016563799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355653.803800001740456, 258746.021800000220537 ], [ 355672.440499998629093, 258731.222100000828505 ], [ 355689.798199996352196, 258715.691500000655651 ], [ 355686.438299998641014, 258708.397700000554323 ], [ 355685.472099997103214, 258705.802600000053644 ], [ 355644.924900002777576, 258735.748599998652935 ], [ 355642.688400000333786, 258722.1402000002563 ], [ 355636.490000002086163, 258727.538899999111891 ], [ 355627.098300002515316, 258730.777100000530481 ], [ 355621.32490000128746, 258732.767700001597404 ], [ 355621.536499999463558, 258748.431099999696016 ], [ 355617.091499999165535, 258760.284400001168251 ], [ 355601.523299999535084, 258771.237300001084805 ], [ 355620.3462999984622, 258791.261399999260902 ], [ 355634.801700003445148, 258777.448399998247623 ], [ 355625.117899999022484, 258767.764600001275539 ], [ 355647.409800000488758, 258750.868200000375509 ], [ 355653.803800001740456, 258746.021800000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2108-T82", "PARCEL_NAM": "11-12", "ACRE": "0.52", "LONGITUDE": -64.96244082, "LATITUDE": 18.35977406, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.30389175800002, "SHAPE_Area": 3736.80088578 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355485.428400002419949, 258877.886399999260902 ], [ 355487.109200000762939, 258853.394000001251698 ], [ 355469.340199999511242, 258854.354499999433756 ], [ 355448.689699999988079, 258856.035300001502037 ], [ 355447.859200000762939, 258877.487700000405312 ], [ 355447.489000000059605, 258877.886399999260902 ], [ 355401.068599998950958, 258896.066300000995398 ], [ 355429.184500001370907, 258927.275199998170137 ], [ 355495.753600001335144, 258903.819699998944998 ], [ 355486.388899996876717, 258889.652399998158216 ], [ 355485.428400002419949, 258877.886399999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "A3-8-T31", "PARCEL_NAM": "11 REM", "ACRE": null, "LONGITUDE": -64.96254065, "LATITUDE": 18.35905965, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 614.58122703599997, "SHAPE_Area": 10528.4937132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355453.294799998402596, 258748.731600001454353 ], [ 355457.46339999884367, 258773.915399998426437 ], [ 355436.627400003373623, 258778.876299999654293 ], [ 355437.288800001144409, 258787.144600000232458 ], [ 355416.428300000727177, 258790.749200001358986 ], [ 355418.99379999935627, 258799.521800000220537 ], [ 355397.676700003445148, 258812.636599998921156 ], [ 355351.47410000115633, 258840.756099998950958 ], [ 355383.424500003457069, 258876.481300000101328 ], [ 355401.068599998950958, 258896.066300000995398 ], [ 355447.489000000059605, 258877.886399999260902 ], [ 355447.859200000762939, 258877.487700000405312 ], [ 355448.417300000786781, 258863.072000000625849 ], [ 355418.674400001764297, 258834.184200000017881 ], [ 355449.409999996423721, 258819.296599999070168 ], [ 355479.185199998319149, 258800.326900001615286 ], [ 355512.32209999859333, 258794.083700001239777 ], [ 355550.402800001204014, 258776.500999998301268 ], [ 355522.756300002336502, 258763.196100000292063 ], [ 355509.923000000417233, 258731.490600001066923 ], [ 355503.169900000095367, 258734.550999999046326 ], [ 355472.441899999976158, 258744.643100000917912 ], [ 355453.294799998402596, 258748.731600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2454-T83", "PARCEL_NAM": "11-19", "ACRE": "0.40", "LONGITUDE": -64.96194525, "LATITUDE": 18.35963912, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.50027375799999, "SHAPE_Area": 1794.00911995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355513.282600000500679, 258854.834699999541044 ], [ 355487.109200000762939, 258853.394000001251698 ], [ 355485.428400002419949, 258877.886399999260902 ], [ 355486.388899996876717, 258889.652399998158216 ], [ 355495.753600001335144, 258903.819699998944998 ], [ 355509.440600000321865, 258899.73759999871254 ], [ 355516.644299998879433, 258898.296799998730421 ], [ 355528.650399997830391, 258895.175299998372793 ], [ 355526.00900000333786, 258875.245099999010563 ], [ 355525.534000001847744, 258855.723900001496077 ], [ 355513.282600000500679, 258854.834699999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-1979-T82", "PARCEL_NAM": "11-8", "ACRE": "0.31", "LONGITUDE": -64.96215565, "LATITUDE": 18.35923307, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.11149331600001, "SHAPE_Area": 2183.89679355 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355473.135099999606609, 258854.149399999529123 ], [ 355487.109200000762939, 258853.394000001251698 ], [ 355513.282600000500679, 258854.834699999541044 ], [ 355520.9983000010252, 258855.39469999819994 ], [ 355503.197400003671646, 258817.375599998980761 ], [ 355493.592500001192093, 258821.217599999159575 ], [ 355479.185199998319149, 258800.326900001615286 ], [ 355449.409999996423721, 258819.296599999070168 ], [ 355473.135099999606609, 258854.149399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2645-T84", "PARCEL_NAM": "11-24", "ACRE": "0.70", "LONGITUDE": -64.96164269000001, "LATITUDE": 18.3592421, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.221773195, "SHAPE_Area": 1886.78908041 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355561.223499998450279, 258797.889800000935793 ], [ 355555.063799999654293, 258803.448499999940395 ], [ 355546.419399999082088, 258811.372600000351667 ], [ 355523.367700003087521, 258821.937899999320507 ], [ 355506.162100002169609, 258823.707499999552965 ], [ 355520.9983000010252, 258855.39469999819994 ], [ 355543.057700000703335, 258856.995799999684095 ], [ 355558.234899997711182, 258852.383499998599291 ], [ 355561.223499998450279, 258797.889800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2481-T83", "PARCEL_NAM": "11-22", "ACRE": "6,634 sq ft", "LONGITUDE": -64.96178724000001, "LATITUDE": 18.35890755, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.96612800599999, "SHAPE_Area": 1192.6851541399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355562.088100001215935, 258782.124600000679493 ], [ 355550.402800001204014, 258776.500999998301268 ], [ 355512.32209999859333, 258794.083700001239777 ], [ 355479.185199998319149, 258800.326900001615286 ], [ 355484.722900003194809, 258808.356600001454353 ], [ 355513.762800000607967, 258809.691700000315905 ], [ 355530.091099999845028, 258807.290500000119209 ], [ 355555.784199997782707, 258789.761500000953674 ], [ 355562.088100001215935, 258782.124600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "A3-8-T31", "PARCEL_NAM": "11-9", "ACRE": "7,370 sq ft", "LONGITUDE": -64.96175525, "LATITUDE": 18.35902573, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.006104741, "SHAPE_Area": 939.32852384199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355561.223499998450279, 258797.889800000935793 ], [ 355562.088100001215935, 258782.124600000679493 ], [ 355555.784199997782707, 258789.761500000953674 ], [ 355530.091099999845028, 258807.290500000119209 ], [ 355513.762800000607967, 258809.691700000315905 ], [ 355484.722900003194809, 258808.356600001454353 ], [ 355493.592500001192093, 258821.217599999159575 ], [ 355503.197400003671646, 258817.375599998980761 ], [ 355506.162100002169609, 258823.707499999552965 ], [ 355523.367700003087521, 258821.937899999320507 ], [ 355546.419399999082088, 258811.372600000351667 ], [ 355555.063799999654293, 258803.448499999940395 ], [ 355561.223499998450279, 258797.889800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2454-T83", "PARCEL_NAM": "11-18", "ACRE": "0.49", "LONGITUDE": -64.96251558, "LATITUDE": 18.35931367, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.33673803100001, "SHAPE_Area": 1115.1070516699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355449.409999996423721, 258819.296599999070168 ], [ 355418.674400001764297, 258834.184200000017881 ], [ 355448.417300000786781, 258863.072000000625849 ], [ 355448.689699999988079, 258856.035300001502037 ], [ 355469.340199999511242, 258854.354499999433756 ], [ 355473.135099999606609, 258854.149399999529123 ], [ 355449.409999996423721, 258819.296599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-1925-T82", "PARCEL_NAM": "11-1", "ACRE": null, "LONGITUDE": -64.96119126000001, "LATITUDE": 18.36096208, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 435.8445754, "SHAPE_Area": 9419.8660593299992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355643.148100003600121, 258964.184999998658895 ], [ 355593.447999998927116, 258952.657600000500679 ], [ 355583.057700000703335, 258962.085499998182058 ], [ 355586.497299998998642, 258965.260499998927116 ], [ 355583.386100001633167, 258968.76069999858737 ], [ 355578.030599996447563, 258974.785500001162291 ], [ 355575.649400003254414, 258982.193900000303984 ], [ 355566.918099999427795, 258995.158500000834465 ], [ 355552.116999998688698, 259004.836599998176098 ], [ 355543.436700001358986, 259009.783500000834465 ], [ 355518.631899997591972, 259026.9814000017941 ], [ 355546.413199998438358, 259064.353900000452995 ], [ 355576.178900003433228, 259112.30970000103116 ], [ 355585.694300003349781, 259111.298200000077486 ], [ 355585.488499999046326, 259105.060600001364946 ], [ 355588.819899998605251, 259092.633400000631809 ], [ 355590.452299997210503, 259090.324700001627207 ], [ 355600.342000000178814, 259065.285500001162291 ], [ 355603.610399998724461, 259060.245999999344349 ], [ 355611.012900002300739, 259043.208000000566244 ], [ 355625.729699999094009, 259019.474899999797344 ], [ 355631.474600002169609, 259007.700699999928474 ], [ 355639.261600002646446, 258978.672699999064207 ], [ 355640.824299998581409, 258972.84739999845624 ], [ 355643.148100003600121, 258964.184999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-7902-T007", "PARCEL_NAM": "A", "ACRE": "0.907", "LONGITUDE": -64.9607287, "LATITUDE": 18.36171824, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 303.03839183899998, "SHAPE_Area": 6015.67450113 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355686.937799997627735, 259122.569499999284744 ], [ 355655.884800001978874, 259074.606499999761581 ], [ 355632.072200000286102, 259052.447599999606609 ], [ 355610.008799999952316, 259066.420099999755621 ], [ 355609.171899996697903, 259070.001899998635054 ], [ 355607.543099999427795, 259071.888399999588728 ], [ 355602.751599997282028, 259083.117600001394749 ], [ 355597.606499999761581, 259091.936200000345707 ], [ 355594.348999999463558, 259105.617800001055002 ], [ 355593.371699996292591, 259120.602400001138449 ], [ 355595.652000002563, 259129.397700000554323 ], [ 355598.583700001239777, 259138.518699999898672 ], [ 355611.499399997293949, 259161.247999999672174 ], [ 355622.147399999201298, 259156.02309999987483 ], [ 355644.942199997603893, 259144.253299999982119 ], [ 355645.564099997282028, 259143.932199999690056 ], [ 355686.937799997627735, 259122.569499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2359-T83", "PARCEL_NAM": "11-17", "ACRE": "0.41", "LONGITUDE": -64.96066417, "LATITUDE": 18.35964222, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.080501, "SHAPE_Area": 2022.8870087400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355667.444300003349781, 258855.585499998182058 ], [ 355659.39919999986887, 258853.4087999984622 ], [ 355638.441399998962879, 258859.086599998176098 ], [ 355618.110399998724461, 258864.5945999994874 ], [ 355616.805500000715256, 258884.73930000141263 ], [ 355615.535800002515316, 258904.3412000015378 ], [ 355631.583499997854233, 258902.453200001269579 ], [ 355645.248800002038479, 258900.845499999821186 ], [ 355663.762599997222424, 258887.339499998837709 ], [ 355669.784199997782707, 258864.892799999564886 ], [ 355669.834499999880791, 258858.982599999755621 ], [ 355667.444300003349781, 258855.585499998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": null, "PARCEL_NAM": "11 REM", "ACRE": null, "LONGITUDE": -64.96010158, "LATITUDE": 18.35931263, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.68499500500002, "SHAPE_Area": 3020.1725117699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355726.586199998855591, 258814.878100000321865 ], [ 355724.696299999952316, 258792.430799998342991 ], [ 355712.435000002384186, 258803.299800001084805 ], [ 355674.815800003707409, 258836.647300001233816 ], [ 355668.336999997496605, 258845.460400000214577 ], [ 355673.945200003683567, 258849.728100001811981 ], [ 355678.725500002503395, 258856.522199999541044 ], [ 355679.504900000989437, 258859.695000000298023 ], [ 355678.644599996507168, 258866.020799998193979 ], [ 355673.474500000476837, 258885.7787000015378 ], [ 355670.920999996364117, 258895.658300001174212 ], [ 355729.42679999768734, 258848.615499999374151 ], [ 355726.586199998855591, 258814.878100000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103004017800", "MAP": "D9-8224-T008", "PARCEL_NAM": "1B1-B", "ACRE": ".007", "LONGITUDE": -64.90396876, "LATITUDE": 18.35578424, "OBJECTID_1": 6053, "PARCEL_NO_": "103004017800", "Tax_Legal_": "1B1-A REM & 1B1-B2 WINTBERG NO. GREAT NORTHSIDE QUARTER", "Name": "PHILLIP, CARL", "Address": "PO Box 306221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.055015797300001, "SHAPE_Area": 69.699681863600006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361647.516099996864796, 258507.907200001180172 ], [ 361632.436599999666214, 258493.170400001108646 ], [ 361631.525200001895428, 258497.462099999189377 ], [ 361630.810900002717972, 258500.825899999588728 ], [ 361639.788000002503395, 258504.631299998611212 ], [ 361647.516099996864796, 258507.907200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-1973-T82", "PARCEL_NAM": "11-3 (or 11-25)", "ACRE": "0.205", "LONGITUDE": -64.96266335, "LATITUDE": 18.35865464, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.649470525, "SHAPE_Area": 1460.290492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355453.294799998402596, 258748.731600001454353 ], [ 355445.78320000320673, 258750.335499998182058 ], [ 355418.345200002193451, 258752.855200000107288 ], [ 355406.757500000298023, 258752.490499999374151 ], [ 355405.232500001788139, 258752.465500000864267 ], [ 355416.428300000727177, 258790.749200001358986 ], [ 355437.288800001144409, 258787.144600000232458 ], [ 355436.627400003373623, 258778.876299999654293 ], [ 355457.46339999884367, 258773.915399998426437 ], [ 355453.294799998402596, 258748.731600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": null, "PARCEL_NAM": "11 REM", "ACRE": null, "LONGITUDE": -64.96051082, "LATITUDE": 18.36090268, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.32992799599998, "SHAPE_Area": 4013.9307723799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355688.405199997127056, 258981.346900001168251 ], [ 355678.162900000810623, 258966.913899999111891 ], [ 355650.964800000190735, 258971.923000000417233 ], [ 355644.502599999308586, 258996.619100000709295 ], [ 355638.709200002253056, 259014.092500001192093 ], [ 355637.080399997532368, 259015.978999998420477 ], [ 355635.426399998366833, 259020.820599999278784 ], [ 355622.345600001513958, 259041.822900000959635 ], [ 355620.691600002348423, 259046.664500001817942 ], [ 355619.066399998962879, 259048.128800000995398 ], [ 355613.308899998664856, 259061.38060000166297 ], [ 355610.040500000119209, 259066.420099999755621 ], [ 355632.103900000452995, 259052.447599999606609 ], [ 355655.916500002145767, 259074.606499999761581 ], [ 355655.92960000038147, 259074.626800000667572 ], [ 355690.268399998545647, 258991.490800000727177 ], [ 355688.405199997127056, 258981.346900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2098-T82", "PARCEL_NAM": "11-11", "ACRE": "1.05", "LONGITUDE": -64.96012364000001, "LATITUDE": 18.35997349, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.54139068699999, "SHAPE_Area": 6120.3872161700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355688.405199997127056, 258981.346900001168251 ], [ 355745.831000000238419, 258888.303100001066923 ], [ 355729.42679999768734, 258848.615499999374151 ], [ 355670.920999996364117, 258895.658300001174212 ], [ 355662.114200003445148, 258929.314599998295307 ], [ 355650.964800000190735, 258971.923000000417233 ], [ 355678.162900000810623, 258966.913899999111891 ], [ 355688.405199997127056, 258981.346900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-2350-T83", "PARCEL_NAM": "11-16", "ACRE": ".64", "LONGITUDE": -64.96160633, "LATITUDE": 18.36025981, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.45548522199999, "SHAPE_Area": 2683.95212098 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355563.284400001168251, 258871.831599999219179 ], [ 355560.089699998497963, 258868.216899998486042 ], [ 355545.018899999558926, 258901.949000000953674 ], [ 355536.81530000269413, 258920.048599999397993 ], [ 355526.233499996364117, 258932.111600000411272 ], [ 355522.672100000083447, 258942.514400001615286 ], [ 355516.179300002753735, 258961.480399999767542 ], [ 355519.618900001049042, 258985.82209999859333 ], [ 355556.660599999129772, 258992.9989 ], [ 355562.97860000282526, 258963.212999999523163 ], [ 355549.913699999451637, 258959.661400001496077 ], [ 355534.653399996459484, 258951.363899998366833 ], [ 355539.936099998652935, 258945.600900001823902 ], [ 355550.021300002932549, 258931.433699999004602 ], [ 355553.142899997532368, 258922.789299998432398 ], [ 355554.823700003325939, 258905.740600001066923 ], [ 355560.10639999806881, 258898.777100000530481 ], [ 355565.629199996590614, 258883.649399999529123 ], [ 355567.440800003707409, 258873.686000000685453 ], [ 355563.284400001168251, 258871.831599999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-590-T002", "PARCEL_NAM": "127-5", "ACRE": "5.003", "LONGITUDE": -65.00834326, "LATITUDE": 18.35830186, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 708.69439700299995, "SHAPE_Area": 14380.9485362 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350787.912000000476837, 258689.203899998217821 ], [ 350639.030000001192093, 258663.534099999815226 ], [ 350486.216300003230572, 258655.953200001269579 ], [ 350485.767899997532368, 258660.555300001055002 ], [ 350478.160300001502037, 258668.902300000190735 ], [ 350462.619999997317791, 258682.080200001597404 ], [ 350451.223999999463558, 258691.709899999201298 ], [ 350448.202100001275539, 258695.977400001138449 ], [ 350466.00900000333786, 258699.572999998927116 ], [ 350466.083700001239777, 258699.44649999961257 ], [ 350643.053099997341633, 258729.492199998348951 ], [ 350787.912000000476837, 258689.203899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-590-T002", "PARCEL_NAM": "127-4", "ACRE": "5.0", "LONGITUDE": -65.00772112, "LATITUDE": 18.35784334, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 759.70415860399999, "SHAPE_Area": 17340.043307899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350788.985500000417233, 258597.396499998867512 ], [ 350472.206699997186661, 258630.312100000679493 ], [ 350477.114200003445148, 258635.153299998492002 ], [ 350482.645099997520447, 258648.497400000691414 ], [ 350486.651500001549721, 258651.485500000417233 ], [ 350486.216300003230572, 258655.953200001269579 ], [ 350639.030000001192093, 258663.534099999815226 ], [ 350787.912000000476837, 258689.203899998217821 ], [ 350787.931900002062321, 258686.881999999284744 ], [ 350791.491599999368191, 258647.647700000554323 ], [ 350808.540299996733665, 258609.988699998706579 ], [ 350788.985500000417233, 258597.396499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-590-T002", "PARCEL_NAM": "127-3", "ACRE": "5.99", "LONGITUDE": -65.00812109, "LATITUDE": 18.35731376, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 718.16389347999996, "SHAPE_Area": 17315.1981337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350658.54110000282526, 258513.397199999541044 ], [ 350458.272200003266335, 258618.940000001341105 ], [ 350463.520199999213219, 258621.743099998682737 ], [ 350472.206699997186661, 258630.312100000679493 ], [ 350788.985500000417233, 258597.396499998867512 ], [ 350658.54110000282526, 258513.397199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102304014300", "MAP": "A9-590-T002", "PARCEL_NAM": "127-2", "ACRE": "5.1", "LONGITUDE": -65.00911011, "LATITUDE": 18.35688809, "OBJECTID_1": 1250, "PARCEL_NO_": "102304014300", "Tax_Legal_": "BORDEAUX WEST END QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14224700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 657.38747556400006, "SHAPE_Area": 20163.663907400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350546.059799998998642, 258440.084899999201298 ], [ 350388.734499998390675, 258597.488600000739098 ], [ 350394.387699998915195, 258596.479400001466274 ], [ 350397.616599999368191, 258596.083599999547005 ], [ 350407.283299997448921, 258597.218199998140335 ], [ 350449.873999997973442, 258614.454300001263618 ], [ 350458.272200003266335, 258618.940000001341105 ], [ 350658.54110000282526, 258513.397199999541044 ], [ 350591.411300003528595, 258470.169199999421835 ], [ 350546.059799998998642, 258440.084899999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-88", "ACRE": "0.10", "LONGITUDE": -64.87845956, "LATITUDE": 18.33843012, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.585417932200002, "SHAPE_Area": 332.95422998499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364349.575900003314018, 256588.572399999946356 ], [ 364346.834499999880791, 256588.130800001323223 ], [ 364339.567500002682209, 256612.461399998515844 ], [ 364344.51690000295639, 256614.49549999833107 ], [ 364349.389799997210503, 256615.539500001817942 ], [ 364353.707900002598763, 256616.464600000530481 ], [ 364357.260499998927116, 256589.820300001651049 ], [ 364349.575900003314018, 256588.572399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703033800", "MAP": null, "PARCEL_NAM": "173A-76", "ACRE": null, "LONGITUDE": -64.87534243, "LATITUDE": 18.33798276, "OBJECTID_1": 22994, "PARCEL_NO_": "105703033800", "Tax_Legal_": "ANNAS RETREAT 173-110 & 173A-76 NEW QTR", "Name": "CALLWOOD, ALVARA & CLAUSE, SHERRI-LYNN", "Address": "7726 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15900, "Improved_V": 140500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.880483697700001, "SHAPE_Area": 130.974854249 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364686.956200003623962, 256551.225900001823902 ], [ 364671.629100002348423, 256551.944899998605251 ], [ 364671.551700003445148, 256561.021299999207258 ], [ 364686.887900002300739, 256559.246899999678135 ], [ 364686.956200003623962, 256551.225900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": null, "PARCEL_NAM": "173A-92", "ACRE": null, "LONGITUDE": -64.87757075, "LATITUDE": 18.33851563, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.934046399400003, "SHAPE_Area": 145.53311421399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364434.057099997997284, 256610.584300000220537 ], [ 364436.720899999141693, 256619.120999999344349 ], [ 364438.826700001955032, 256618.644900001585484 ], [ 364451.754600003361702, 256615.584300000220537 ], [ 364449.414800003170967, 256606.276999998837709 ], [ 364434.057099997997284, 256610.584300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107403016800", "MAP": "D9-6564-T99", "PARCEL_NAM": "100-C", "ACRE": null, "LONGITUDE": -64.91341788, "LATITUDE": 18.31826487, "OBJECTID_1": 33374, "PARCEL_NO_": "107403016800", "Tax_Legal_": "FRENCHMANS BAY 100A, 100B & 100C #4 FRENCHMANS BAY QTR", "Name": "CLUB WYNDHAM ACCESS", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 0, "Improved_V": 3928900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.527399944, "SHAPE_Area": 1744.79732805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360725.149999998509884, 254332.031399998813868 ], [ 360719.07660000026226, 254316.197200000286102 ], [ 360681.135200001299381, 254329.056000001728535 ], [ 360654.465199999511242, 254335.564699999988079 ], [ 360636.20889999717474, 254342.232200000435114 ], [ 360619.698899999260902, 254348.74100000038743 ], [ 360623.88289999961853, 254363.194899998605251 ], [ 360643.352700002491474, 254356.202300000935793 ], [ 360645.892700001597404, 254356.361000001430511 ], [ 360663.831399999558926, 254350.010999999940395 ], [ 360672.403999999165535, 254350.010999999940395 ], [ 360689.072700001299381, 254343.660999998450279 ], [ 360706.376500003039837, 254337.628499999642372 ], [ 360710.82150000333786, 254337.628499999642372 ], [ 360725.149999998509884, 254332.031399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96214571, "LATITUDE": 18.35455303, "OBJECTID_1": 3198, "PARCEL_NO_": "102703012000", "Tax_Legal_": "DOROTHEA 4-14 LT NORTHSIDE", "Name": "GEORGE J CASAZZA AND BARBARA C YOUNG REV FAM TRUST", "Address": "PO BOX 302863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.58029663, "SHAPE_Area": 2490.4957313700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355504.876199997961521, 258279.138199999928474 ], [ 355459.218299999833107, 258296.631700001657009 ], [ 355474.320799998939037, 258343.252300001680851 ], [ 355490.397200003266335, 258340.756999999284744 ], [ 355499.264899998903275, 258341.040600001811981 ], [ 355516.481100000441074, 258344.154100000858307 ], [ 355504.876199997961521, 258279.138199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703012100", "MAP": "G9-628-T62", "PARCEL_NAM": "4-13", "ACRE": null, "LONGITUDE": -64.96169484000001, "LATITUDE": 18.35447603, "OBJECTID_1": 3199, "PARCEL_NO_": "102703012100", "Tax_Legal_": "DOROTHEA 4-13\nLITTLE NORTHSIDE", "Name": "MONSANTO, MATTHEW MENDES", "Address": "PO Box 306473", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8036473, "Country": "United States", "Land_Value": 72000, "Improved_V": 301300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.30667801200002, "SHAPE_Area": 4045.35371295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355527.281900003552437, 258270.553599998354912 ], [ 355504.876199997961521, 258279.138199999928474 ], [ 355516.481100000441074, 258344.154100000858307 ], [ 355532.275100000202656, 258347.010299999266863 ], [ 355541.945500001311302, 258347.722800001502037 ], [ 355557.290600001811981, 258344.89299999922514 ], [ 355564.596400000154972, 258344.570500001311302 ], [ 355563.648199997842312, 258331.289900001138449 ], [ 355560.732100002467632, 258290.44819999858737 ], [ 355558.295000001788139, 258256.315000001341105 ], [ 355527.281900003552437, 258270.553599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401260600", "MAP": "A3-84-T52", "PARCEL_NAM": "4", "ACRE": null, "LONGITUDE": -64.92423643, "LATITUDE": 18.34404613, "OBJECTID_1": 11855, "PARCEL_NO_": "105401260600", "Tax_Legal_": "HOSPITAL GROUND 4 NEW QUARTER", "Name": "FRETT, ENID, MARIO FRETT & OTHER", "Address": "PO Box 12374", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12700, "Improved_V": 50200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.081981462, "SHAPE_Area": 502.642915942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359530.741200000047684, 257187.010499998927116 ], [ 359529.066799998283386, 257177.102200001478195 ], [ 359480.813000001013279, 257179.880499999970198 ], [ 359483.2804000005126, 257190.698300000280142 ], [ 359530.741200000047684, 257187.010499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401260200", "MAP": "D9-7922-T007", "PARCEL_NAM": "8 REM", "ACRE": null, "LONGITUDE": -64.9240347, "LATITUDE": 18.34445354, "OBJECTID_1": 11851, "PARCEL_NO_": "105401260200", "Tax_Legal_": "8-A REM. HOSPITAL GROUND KING'S QTR", "Name": "BRYAN, MICHAEL ADEBAYO CHARLES", "Address": "PO Box 305886", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16500, "Improved_V": 172500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.226180444299999, "SHAPE_Area": 365.14752853099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359536.654799997806549, 257222.005300000309944 ], [ 359536.26630000025034, 257219.718299999833107 ], [ 359514.260099999606609, 257221.791999999433756 ], [ 359516.579300001263618, 257236.522399999201298 ], [ 359516.768700003623962, 257237.93019999936223 ], [ 359538.571699999272823, 257236.499600000679493 ], [ 359538.264799997210503, 257234.179200001060963 ], [ 359536.654799997806549, 257222.005300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401261300", "MAP": "D9-8295-T009", "PARCEL_NAM": "8-A-1", "ACRE": "46 sq ft", "LONGITUDE": -64.92429688, "LATITUDE": 18.34439842, "OBJECTID_1": 11864, "PARCEL_NO_": "105401261300", "Tax_Legal_": "8-A-1 HOSPITAL GROUND KING'S QTR", "Name": "MARCHENA, PEDRITO", "Address": "2106 Columns Cir", "City": "Seminole", "State": "Florida", "Zip": 33772, "Country": "United States", "Land_Value": 100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.800713968300002, "SHAPE_Area": 18.153013746199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359514.260099999606609, 257221.791999999433756 ], [ 359490.986400000751019, 257222.267400000244379 ], [ 359491.444600000977516, 257223.817999999970198 ], [ 359514.260099999606609, 257221.791999999433756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109401020500", "MAP": "D9-3048-T85", "PARCEL_NAM": "62", "ACRE": "0.034", "LONGITUDE": -64.89807803, "LATITUDE": 18.31434676, "OBJECTID_1": 42013, "PARCEL_NO_": "109401020500", "Tax_Legal_": "40 & 62 BOLONGO FRENCHMAN BAY", "Name": "ZAPPA, RICHARD A. & JUNE W.", "Address": "501 Rockwood Rd", "City": "Wilmington", "State": "Delaware", "Zip": 19802, "Country": "United States", "Land_Value": 51500, "Improved_V": 266700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.732156999599994, "SHAPE_Area": 233.451869225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362316.517599999904633, 253910.700500000268221 ], [ 362316.9695999994874, 253908.991300001740456 ], [ 362315.348999999463558, 253906.106899999082088 ], [ 362280.185500003397465, 253926.405499998480082 ], [ 362284.157700002193451, 253932.328600000590086 ], [ 362316.517599999904633, 253910.700500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010300", "MAP": "D9-4938-T90", "PARCEL_NAM": "6A", "ACRE": "4.532", "LONGITUDE": -64.88091156, "LATITUDE": 18.32805892, "OBJECTID_1": 37895, "PARCEL_NO_": "107601010300", "Tax_Legal_": "MARIENDAHL ESTATE 6&PORTION OF 7 WESTERN SECTION No.4 RED HOOK QTR", "Name": "HEAVY MATERIALS LLC", "Address": "29 CLINTON STREET", "City": "NEW BEDFORD", "State": "Massachusetts", "Zip": 2740, "Country": "United States", "Land_Value": 642900, "Improved_V": 698900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 662.87594474100001, "SHAPE_Area": 20527.2267412 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364006.28490000218153, 255426.647999998182058 ], [ 364162.866599999368191, 255563.244600001722574 ], [ 364220.192199997603893, 255495.526500001549721 ], [ 364116.882799997925758, 255411.932300001382828 ], [ 364103.265399999916553, 255401.266199998557568 ], [ 364101.665399998426437, 255399.775400001555681 ], [ 364056.819399997591972, 255363.3114 ], [ 364051.990500003099442, 255362.216400001198053 ], [ 364047.976899996399879, 255360.072599999606609 ], [ 364025.563799999654293, 255340.67960000038147 ], [ 363978.974600002169609, 255414.181099999696016 ], [ 364006.28490000218153, 255426.647999998182058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": "D9-7511-T005", "PARCEL_NAM": "V-2", "ACRE": "1.062", "LONGITUDE": -64.9589233, "LATITUDE": 18.30979757, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.16907178899999, "SHAPE_Area": 4021.57818408 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355796.410599999129772, 253371.797200001776218 ], [ 355936.9746999964118, 253399.568199999630451 ], [ 355913.218000002205372, 253385.418800000101328 ], [ 355905.215999998152256, 253378.176100000739098 ], [ 355901.274300001561642, 253367.589200001209974 ], [ 355901.335500001907349, 253360.412500001490116 ], [ 355896.761900000274181, 253329.344300001859665 ], [ 355894.371799997985363, 253325.947299998253584 ], [ 355889.551899999380112, 253323.796900000423193 ], [ 355884.710400000214577, 253324.179400000721216 ], [ 355858.787900000810623, 253338.110500000417233 ], [ 355815.825000002980232, 253364.567800000309944 ], [ 355805.270999997854233, 253372.925200000405312 ], [ 355796.410599999129772, 253371.797200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": "D9-7511-T005", "PARCEL_NAM": "B-3", "ACRE": ".88", "LONGITUDE": -64.95931885, "LATITUDE": 18.31057761, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 448.48717125500002, "SHAPE_Area": 4206.6953690399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355793.897200003266335, 253373.316799998283386 ], [ 355768.852099999785423, 253388.459100000560284 ], [ 355748.60980000346899, 253398.214800000190735 ], [ 355750.662600003182888, 253401.357900001108646 ], [ 355758.070900000631809, 253397.124600000679493 ], [ 355763.097999997437, 253397.124600000679493 ], [ 355769.712600000202656, 253402.151700001209974 ], [ 355773.152199998497963, 253407.178800001740456 ], [ 355774.739699997007847, 253414.322500001639128 ], [ 355779.881499998271465, 253418.946800000965595 ], [ 355780.648299999535084, 253423.597199998795986 ], [ 355789.422399997711182, 253434.856899999082088 ], [ 355801.414599999785423, 253446.987399999052286 ], [ 355807.020999997854233, 253451.466299999505281 ], [ 355812.600500002503395, 253459.111299999058247 ], [ 355835.801899999380112, 253480.621700000017881 ], [ 355840.627199999988079, 253482.138799998909235 ], [ 355858.276199996471405, 253492.837900001555681 ], [ 355868.725900001823902, 253496.723099999129772 ], [ 355881.567500002682209, 253503.794300001114607 ], [ 355883.964900001883507, 253506.347100000828505 ], [ 355885.525399997830391, 253512.481600001454353 ], [ 355890.345299996435642, 253514.631900001317263 ], [ 355890.232401099463459, 253510.488858064403757 ], [ 355889.569099999964237, 253506.397700000554323 ], [ 355890.094037201779429, 253506.578022893110756 ], [ 355890.642128280422185, 253506.665610455092974 ], [ 355891.197119653166737, 253506.657865286630113 ], [ 355891.742553109885193, 253506.555017069913447 ], [ 355892.262253879569471, 253506.360115757852327 ], [ 355892.740810291143134, 253506.078941128129372 ], [ 355893.164030805113725, 253505.71983138442738 ], [ 355893.519364862178918, 253505.293435888044769 ], [ 355893.796275068656541, 253504.812399351998465 ], [ 355893.986549681867473, 253504.29098686366342 ], [ 355894.084546128404327, 253503.744660854834365 ], [ 355894.087358334101737, 253503.189622565201716 ], [ 355893.994902903214097, 253502.642331596201984 ], [ 355893.809921591717284, 253502.119017803284805 ], [ 355893.537900000810623, 253501.635200001299381 ], [ 355891.751931654172949, 253493.433261979575036 ], [ 355890.515373327943962, 253485.130708531825803 ], [ 355889.833700001239777, 253476.764299999922514 ], [ 355889.449547823518515, 253475.524078674527118 ], [ 355888.860963836079463, 253474.366801386495354 ], [ 355888.084942305402365, 253473.325882362027187 ], [ 355887.143889407685492, 253472.431376199208898 ], [ 355886.064976292662323, 253471.709110097406665 ], [ 355884.879354566917755, 253471.179938145069173 ], [ 355883.621256849612109, 253470.859139196691103 ], [ 355882.327008368971292, 253470.755975724401651 ], [ 355881.033978139341343, 253470.873426381353056 ], [ 355879.779500000178814, 253471.208099998533726 ], [ 355876.014690300973598, 253470.691779760440113 ], [ 355872.36898845480755, 253469.619755176565377 ], [ 355868.923939402506221, 253468.016004670032999 ], [ 355865.756599999964237, 253465.916400000452995 ], [ 355855.02853258268442, 253459.489493912522448 ], [ 355844.060699999332428, 253453.480900000780821 ], [ 355836.517727976024617, 253448.1706436353561 ], [ 355829.445622000319418, 253442.24775863904506 ], [ 355822.894000001251698, 253435.753800000995398 ], [ 355817.645400973211508, 253429.305998742609518 ], [ 355811.900601484579965, 253423.296072648168774 ], [ 355805.696000002324581, 253417.762099999934435 ], [ 355796.775601468456443, 253408.275810853840085 ], [ 355788.233499996364117, 253398.447500001639128 ], [ 355788.150891947909258, 253393.222571367543424 ], [ 355788.687804832938127, 253388.024646024190588 ], [ 355789.836677797546145, 253382.926921607111581 ], [ 355791.581332313071471, 253378.001184713764815 ], [ 355793.897200003266335, 253373.316799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-7511-T005", "PARCEL_NAM": "B-1", "ACRE": ".823", "LONGITUDE": -64.95884972, "LATITUDE": 18.31065228, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 605.47964628700004, "SHAPE_Area": 2275.40012338 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355916.601899996399879, 253506.45890000090003 ], [ 355908.619199998676777, 253506.926899999380112 ], [ 355907.58720974548487, 253506.413696622505086 ], [ 355906.651479547726922, 253505.740799464139855 ], [ 355905.836500533099752, 253504.925820449454477 ], [ 355905.163603374734521, 253503.990090251696529 ], [ 355904.650399997830391, 253502.958099998533726 ], [ 355902.66801918373676, 253493.978276973241009 ], [ 355901.342754742829129, 253484.878236895339796 ], [ 355900.681599996984005, 253475.706000000238419 ], [ 355901.891278282681014, 253471.25013653433416 ], [ 355903.733613579184748, 253467.016480733844219 ], [ 355906.169748126179911, 253463.094327084283577 ], [ 355909.148299999535084, 253459.566399998962879 ], [ 355913.532031417358667, 253455.762753302318742 ], [ 355918.292477712617256, 253452.44266589282779 ], [ 355923.376537603209727, 253449.643172301875893 ], [ 355928.72749999910593, 253447.395500000566244 ], [ 355941.454508847673424, 253441.760135604796233 ], [ 355954.413500003516674, 253436.680900000035763 ], [ 355954.752400003373623, 253431.988200001418591 ], [ 355958.814599998295307, 253428.432900000363588 ], [ 355952.386740303249098, 253429.776270859030774 ], [ 355946.053882717213128, 253431.51320503099123 ], [ 355939.84009999781847, 253433.637099999934435 ], [ 355933.297029051464051, 253436.215046737954253 ], [ 355926.937804550863802, 253439.218020354775945 ], [ 355920.78999999910593, 253442.633000001311302 ], [ 355913.816457427688874, 253446.387788153486326 ], [ 355907.185975529719144, 253450.719697647349676 ], [ 355900.946199998259544, 253455.597600001841784 ], [ 355898.342415603925474, 253458.80118977886741 ], [ 355895.368692581600044, 253461.664693230646662 ], [ 355892.069091171724722, 253464.145683187816758 ], [ 355888.492499999701977, 253466.207400001585484 ], [ 355886.726879435940646, 253465.470597905688919 ], [ 355884.875539948989172, 253464.988067691505421 ], [ 355882.974899386579636, 253464.76930124964565 ], [ 355881.062345401907805, 253464.818601952400059 ], [ 355879.175499998033047, 253465.135000001639128 ], [ 355876.490991372265853, 253464.640632234804798 ], [ 355873.902388621587306, 253463.774536483862903 ], [ 355871.460894005082082, 253462.553844021313125 ], [ 355869.214800000190735, 253461.002700001001358 ], [ 355858.272341284144204, 253454.433220829232596 ], [ 355847.084299996495247, 253448.291299998760223 ], [ 355840.115218891471159, 253443.368124911095947 ], [ 355833.572608914866578, 253437.890899419406196 ], [ 355827.500399999320507, 253431.89640000090003 ], [ 355822.074744882236701, 253425.257373410306172 ], [ 355816.150444372324273, 253419.059222799958661 ], [ 355809.763199999928474, 253413.339299999177456 ], [ 355801.789300930628087, 253404.873065987485461 ], [ 355794.122000001370907, 253396.128199998289347 ], [ 355794.339616219920572, 253390.959302230359754 ], [ 355795.256653243559413, 253385.867750006204005 ], [ 355796.856145137979183, 253380.947741201991448 ], [ 355799.108499996364117, 253376.290300000458956 ], [ 355804.433899998664856, 253373.38230000063777 ], [ 355796.410599999129772, 253371.797200001776218 ], [ 355793.897200003266335, 253373.316799998283386 ], [ 355791.581332312896848, 253378.001184713706607 ], [ 355789.836677797255106, 253382.926921607053373 ], [ 355788.687804832647089, 253388.02464602413238 ], [ 355788.150891947734635, 253393.22257136751432 ], [ 355788.233499996364117, 253398.447500001639128 ], [ 355796.775601468456443, 253408.275810853840085 ], [ 355805.696000002324581, 253417.762099999934435 ], [ 355811.900601484579965, 253423.29607264813967 ], [ 355817.645400973211508, 253429.305998742580414 ], [ 355822.894000001251698, 253435.753800000995398 ], [ 355829.445622000319418, 253442.24775863904506 ], [ 355836.517727976024617, 253448.1706436353561 ], [ 355844.060699999332428, 253453.480900000780821 ], [ 355855.02853258268442, 253459.489493912551552 ], [ 355865.756599999964237, 253465.916400000452995 ], [ 355868.923939402622636, 253468.016004669887479 ], [ 355872.368988454865757, 253469.619755176332546 ], [ 355876.014690301031806, 253470.691779760236386 ], [ 355879.779500000178814, 253471.208099998533726 ], [ 355881.033978139283136, 253470.873426381614991 ], [ 355882.327008368913084, 253470.755975724867312 ], [ 355883.621256849437486, 253470.85913919727318 ], [ 355884.879354566684924, 253471.179938145709457 ], [ 355886.064976292254869, 253471.709110098046949 ], [ 355887.143889407278039, 253472.431376199790975 ], [ 355888.084942304994911, 253473.325882362492848 ], [ 355888.860963835730217, 253474.366801386815496 ], [ 355889.449547823285684, 253475.524078674672637 ], [ 355889.833700001239777, 253476.764299999922514 ], [ 355890.515373327943962, 253485.130708531825803 ], [ 355891.751931654172949, 253493.433261979575036 ], [ 355893.537900000810623, 253501.635200001299381 ], [ 355893.80992159480229, 253502.119017803197494 ], [ 355893.994902908976655, 253502.642331596667645 ], [ 355894.087358342017978, 253503.189622566773323 ], [ 355894.084546137892175, 253503.744660857832059 ], [ 355893.986549692286644, 253504.290986868261825 ], [ 355893.796275079308543, 253504.812399358226685 ], [ 355893.519364872423466, 253505.293435895699076 ], [ 355893.164030814485159, 253505.719831393187633 ], [ 355892.740810299175791, 253506.078941137500806 ], [ 355892.262253885972314, 253506.360115767281968 ], [ 355891.742553114541806, 253506.555017078761011 ], [ 355891.19711965607712, 253506.657865294197109 ], [ 355890.642128281877376, 253506.665610460710013 ], [ 355890.09403720224509, 253506.578022896166658 ], [ 355889.569099999964237, 253506.397700000554323 ], [ 355890.232401099463459, 253510.488858064403757 ], [ 355890.345299996435642, 253514.631900001317263 ], [ 355889.495800003409386, 253519.691199999302626 ], [ 355916.105899997055531, 253519.697900000959635 ], [ 355916.601899996399879, 253506.45890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": "D9-7511-T005", "PARCEL_NAM": "B-4", "ACRE": ".51", "LONGITUDE": -64.95838146, "LATITUDE": 18.31075018, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.590409908, "SHAPE_Area": 1958.25019223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355916.601899996399879, 253506.45890000090003 ], [ 355917.149599999189377, 253491.842099998146296 ], [ 355918.799999997019768, 253487.422699999064207 ], [ 355922.862099997699261, 253483.867300000041723 ], [ 355934.177400000393391, 253480.793499998748302 ], [ 355941.459399998188019, 253477.897799998521805 ], [ 355952.8125, 253470.391399998217821 ], [ 355952.92400000244379, 253457.304499998688698 ], [ 355954.413500003516674, 253436.680900000035763 ], [ 355941.454508847673424, 253441.760135604796233 ], [ 355928.72749999910593, 253447.395500000566244 ], [ 355923.376537603209727, 253449.643172301904997 ], [ 355918.292477712617256, 253452.442665892856894 ], [ 355913.532031417416874, 253455.762753302347846 ], [ 355909.148299999535084, 253459.566399998962879 ], [ 355906.169748126179911, 253463.094327084283577 ], [ 355903.733613579184748, 253467.016480733844219 ], [ 355901.891278282681014, 253471.25013653433416 ], [ 355900.681599996984005, 253475.706000000238419 ], [ 355901.342754742829129, 253484.878236895339796 ], [ 355902.66801918373676, 253493.978276973241009 ], [ 355904.650399997830391, 253502.958099998533726 ], [ 355905.163603374676313, 253503.990090251725633 ], [ 355905.836500533041544, 253504.925820449483581 ], [ 355906.651479547726922, 253505.740799464168958 ], [ 355907.58720974548487, 253506.413696622505086 ], [ 355908.619199998676777, 253506.926899999380112 ], [ 355916.601899996399879, 253506.45890000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86091183000001, "LATITUDE": 18.31934725, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.1271681382700001, "SHAPE_Area": 0.10105381946 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366222.221900001168251, 254505.401500001549721 ], [ 366221.959600001573563, 254506.682500001043081 ], [ 366222.065200001001358, 254506.937300000339746 ], [ 366222.221900001168251, 254505.401500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-5261-T92", "PARCEL_NAM": "19-2-35", "ACRE": ".309", "LONGITUDE": -64.85785823000001, "LATITUDE": 18.33273127, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.43605849, "SHAPE_Area": 942.15995728400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366524.703100003302097, 255974.892900001257658 ], [ 366519.12219999730587, 255971.993000000715256 ], [ 366517.301500000059605, 255975.954300001263618 ], [ 366515.835799999535084, 255979.143300000578165 ], [ 366512.576399996876717, 255983.127399999648333 ], [ 366508.614600002765656, 255987.643300000578165 ], [ 366538.430799998342991, 256012.131900001317263 ], [ 366542.213899999856949, 256006.379099998623133 ], [ 366545.749899998307228, 256000.866999998688698 ], [ 366554.472199998795986, 255987.269999999552965 ], [ 366555.601400002837181, 255985.163600001484156 ], [ 366524.703100003302097, 255974.892900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "10603036000", "MAP": "B9-351-T72", "PARCEL_NAM": "33-117", "ACRE": null, "LONGITUDE": -64.87886126, "LATITUDE": 18.32221663, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.688600835700001, "SHAPE_Area": 128.03241860099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364327.882399998605251, 254813.760600000619888 ], [ 364326.058600001037121, 254805.694899998605251 ], [ 364325.068800002336502, 254799.834699999541044 ], [ 364316.41889999806881, 254801.394099999219179 ], [ 364318.717299997806549, 254815.556200001388788 ], [ 364327.882399998605251, 254813.760600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87900652, "LATITUDE": 18.32081832, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 5.4391027370499998, "SHAPE_Area": 0.27129436589 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364307.811499997973442, 254652.065400000661612 ], [ 364307.993500001728535, 254654.543299999088049 ], [ 364308.016199998557568, 254651.871100001037121 ], [ 364307.811499997973442, 254652.065400000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "MB", "PARCEL_NAM": "GOVERNMENT HOUSE SQUARE / PORTOIN OF LILLE TAARNE GADE", "ACRE": null, "LONGITUDE": -64.92928189, "LATITUDE": 18.3420583, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.20901863700001, "SHAPE_Area": 1058.6054282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358950.001199997961521, 256914.528900001198053 ], [ 358951.936599999666214, 256919.270599998533726 ], [ 358960.498800002038479, 256940.247900001704693 ], [ 358963.480099998414516, 256947.552000001072884 ], [ 358967.040100000798702, 256961.582600001245737 ], [ 358968.842299997806549, 256986.422200001776218 ], [ 358989.765699997544289, 256986.400800000876188 ], [ 358988.546899996697903, 256949.192499998956919 ], [ 358971.150700002908707, 256948.616200000047684 ], [ 358964.355599999427795, 256935.555799998342991 ], [ 358962.604699999094009, 256931.807900000363588 ], [ 358958.109600000083447, 256913.75959999859333 ], [ 358950.001199997961521, 256914.528900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87865656, "LATITUDE": 18.31973436, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.95714571400001, "SHAPE_Area": 873.15766484100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364358.962399996817112, 254540.197399999946356 ], [ 364348.735699996352196, 254510.138399999588728 ], [ 364340.629399999976158, 254515.138300001621246 ], [ 364334.209499999880791, 254511.497099999338388 ], [ 364332.347800001502037, 254510.463100001215935 ], [ 364321.18299999833107, 254519.69649999961257 ], [ 364322.842000000178814, 254520.692200001329184 ], [ 364338.849600002169609, 254534.755399998277426 ], [ 364346.833599999547005, 254544.108899999409914 ], [ 364350.012100003659725, 254549.6233000010252 ], [ 364351.615699999034405, 254550.691899999976158 ], [ 364356.385300002992153, 254558.752500001341105 ], [ 364357.961900003254414, 254562.987300001084805 ], [ 364359.560199998319149, 254564.689100001007318 ], [ 364362.722499996423721, 254572.103300001472235 ], [ 364363.494599997997284, 254576.120400000363588 ], [ 364365.085699997842312, 254578.666499998420477 ], [ 364365.101800002157688, 254576.766800001263618 ], [ 364366.016099996864796, 254564.10869999974966 ], [ 364354.101199999451637, 254542.901799999177456 ], [ 364358.962399996817112, 254540.197399999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-6153-T96", "PARCEL_NAM": "17-5", "ACRE": ".05", "LONGITUDE": -64.90686067, "LATITUDE": 18.3414106, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.92759400200001, "SHAPE_Area": 245.82363510900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361370.416900001466274, 256882.275100000202656 ], [ 361368.195900000631809, 256880.121300000697374 ], [ 361321.015699997544289, 256928.96680000051856 ], [ 361322.814400002360344, 256932.965900000184774 ], [ 361370.416900001466274, 256882.275100000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "103103051700", "MAP": "D9-9000-T015", "PARCEL_NAM": "215-4-A REM", "ACRE": null, "LONGITUDE": -64.89302214, "LATITUDE": 18.34831671, "OBJECTID_1": 6734, "PARCEL_NO_": "103103051700", "Tax_Legal_": "215-4-A-1 ANNAS RETREAT No.1 NEW QTR.", "Name": "ONE STOP INC.", "Address": "7003 Estate Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 269500, "Improved_V": 17900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 20.682875627400001, "SHAPE_Area": 19.567760234800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362804.616499997675419, 257682.752399999648333 ], [ 362801.379699997603893, 257680.936099998652935 ], [ 362800.107400000095367, 257680.754399999976158 ], [ 362798.070100001990795, 257686.464299999177456 ], [ 362800.877499997615814, 257687.387800000607967 ], [ 362801.342299997806549, 257684.439100001007318 ], [ 362804.616499997675419, 257682.752399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "103103051700", "MAP": "D9-9000-T015", "PARCEL_NAM": "EASEMENT \"C\"", "ACRE": null, "LONGITUDE": -64.89302449, "LATITUDE": 18.3483536, "OBJECTID_1": 6734, "PARCEL_NO_": "103103051700", "Tax_Legal_": "215-4-A-1 ANNAS RETREAT No.1 NEW QTR.", "Name": "ONE STOP INC.", "Address": "7003 Estate Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 269500, "Improved_V": 17900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 20.6144328876, "SHAPE_Area": 17.6256761022 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362803.893299996852875, 257688.021099999547005 ], [ 362801.342299997806549, 257684.439100001007318 ], [ 362800.877499997615814, 257687.387800000607967 ], [ 362798.070100001990795, 257686.464299999177456 ], [ 362797.130999997258186, 257689.096200000494719 ], [ 362800.416199997067451, 257690.0945999994874 ], [ 362803.893299996852875, 257688.021099999547005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "103103051700", "MAP": "D9-9000-T015", "PARCEL_NAM": "215-4-A-1", "ACRE": ".004", "LONGITUDE": -64.89298786000001, "LATITUDE": 18.34832986, "OBJECTID_1": 6734, "PARCEL_NO_": "103103051700", "Tax_Legal_": "215-4-A-1 ANNAS RETREAT No.1 NEW QTR.", "Name": "ONE STOP INC.", "Address": "7003 Estate Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 269500, "Improved_V": 17900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 16.7064714716, "SHAPE_Area": 17.044058145400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362801.342299997806549, 257684.439100001007318 ], [ 362803.893299996852875, 257688.021099999547005 ], [ 362807.62610000371933, 257685.795099999755621 ], [ 362804.616499997675419, 257682.752399999648333 ], [ 362801.342299997806549, 257684.439100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201044600", "MAP": "F9-2481-T69", "PARCEL_NAM": "20C", "ACRE": "0.454", "LONGITUDE": -64.96266869, "LATITUDE": 18.34225451, "OBJECTID_1": 7624, "PARCEL_NO_": "105201044600", "Tax_Legal_": "20 & 22 LINDBERG BAY SOUTHSIDE QUARTER", "Name": "ABRAHAM, GLADYS A. & OTHERS", "Address": "11371 SW 223 St", "City": "MIAMI", "State": "Florida", "Zip": 33170, "Country": "United States", "Land_Value": 340300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.18885490299999, "SHAPE_Area": 1867.05992651 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355462.336099997162819, 256924.727800000458956 ], [ 355428.809000000357628, 256926.699999999254942 ], [ 355425.646799996495247, 256978.909499999135733 ], [ 355463.823299996554852, 256976.768699999898672 ], [ 355462.336099997162819, 256924.727800000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201044600", "MAP": "F9-3617-T78", "PARCEL_NAM": "20D", "ACRE": "0.47", "LONGITUDE": -64.96229023, "LATITUDE": 18.34222781, "OBJECTID_1": 7624, "PARCEL_NO_": "105201044600", "Tax_Legal_": "20 & 22 LINDBERG BAY SOUTHSIDE QUARTER", "Name": "ABRAHAM, GLADYS A. & OTHERS", "Address": "11371 SW 223 St", "City": "MIAMI", "State": "Florida", "Zip": 33170, "Country": "United States", "Land_Value": 340300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.45100338699999, "SHAPE_Area": 2319.9415603799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355506.514399997889996, 256922.129099998623133 ], [ 355462.336099997162819, 256924.727800000458956 ], [ 355463.823299996554852, 256976.768699999898672 ], [ 355507.708400003612041, 256975.341600000858307 ], [ 355506.514399997889996, 256922.129099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904025800", "MAP": "D9-9002-T015", "PARCEL_NAM": "A-7-5 REM", "ACRE": ".341", "LONGITUDE": -64.92097955, "LATITUDE": 18.34864543, "OBJECTID_1": 5073, "PARCEL_NO_": "102904025800", "Tax_Legal_": "ROSS A-7-5 NEW QUARTER", "Name": "JACOBS, TRUDY", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105700, "Improved_V": 210600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.33233219600001, "SHAPE_Area": 1546.83747993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359874.878700003027916, 257693.999200001358986 ], [ 359875.127899996936321, 257689.069200001657009 ], [ 359847.399499997496605, 257666.632500000298023 ], [ 359835.17509999871254, 257677.575699999928474 ], [ 359833.426700003445148, 257686.65989999845624 ], [ 359823.835500001907349, 257703.484900001436472 ], [ 359823.869999997317791, 257705.495400000363588 ], [ 359825.743400000035763, 257714.027800001204014 ], [ 359828.54900000244379, 257722.500500001013279 ], [ 359829.955700002610683, 257725.256499998271465 ], [ 359835.430799998342991, 257725.800700001418591 ], [ 359840.218000002205372, 257723.095800001174212 ], [ 359842.321000002324581, 257719.334600001573563 ], [ 359845.766099996864796, 257715.786800000816584 ], [ 359856.715000003576279, 257702.425200000405312 ], [ 359869.625699996948242, 257694.544700000435114 ], [ 359874.878700003027916, 257693.999200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038900", "MAP": "D9-9005-T015", "PARCEL_NAM": "K-5", "ACRE": ".24", "LONGITUDE": -64.86076356, "LATITUDE": 18.32835116, "OBJECTID_1": 39327, "PARCEL_NO_": "107701038900", "Tax_Legal_": "K-5 NAZARETH NO.1 RED HOOK QUARTER", "Name": "MARSHALL, CURLINA", "Address": "PO Box 306963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.187494652, "SHAPE_Area": 978.27687068600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366209.496100001037121, 255495.420800000429153 ], [ 366223.674500003457069, 255525.556099999696016 ], [ 366252.142800003290176, 255507.090799998492002 ], [ 366228.999300003051758, 255481.135000001639128 ], [ 366209.496100001037121, 255495.420800000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038800", "MAP": "D9-9005-T015", "PARCEL_NAM": "K-4", "ACRE": ".26", "LONGITUDE": -64.8609852, "LATITUDE": 18.32848605, "OBJECTID_1": 39326, "PARCEL_NO_": "107701038800", "Tax_Legal_": "K-4 NAZARETH NO.1 RED HOOK QUARTER", "Name": "SASSO, CHIVON", "Address": "PO Box 305512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.867445631, "SHAPE_Area": 851.771419842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366223.674500003457069, 255525.556099999696016 ], [ 366209.496100001037121, 255495.420800000429153 ], [ 366186.98369999974966, 255511.910799998790026 ], [ 366202.541000001132488, 255539.263900000602007 ], [ 366223.674500003457069, 255525.556099999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "D9-9107-T016", "PARCEL_NAM": "REM K of TRACT 1", "ACRE": null, "LONGITUDE": -64.86075307, "LATITUDE": 18.32723151, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1556.71161366, "SHAPE_Area": 26264.326811499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366235.414399996399879, 255463.889600001275539 ], [ 366242.465700000524521, 255410.379999998956919 ], [ 366253.569200001657009, 255413.984999999403954 ], [ 366265.613300003111362, 255387.724800001829863 ], [ 366270.855400003492832, 255379.493099998682737 ], [ 366293.529799997806549, 255343.887299999594688 ], [ 366297.301600001752377, 255340.4560999982059 ], [ 366327.334799997508526, 255313.135600000619888 ], [ 366346.963600002229214, 255332.328099999576807 ], [ 366336.931100003421307, 255336.690099999308586 ], [ 366326.641000002622604, 255343.359400000423193 ], [ 366330.903399996459484, 255348.687100000679493 ], [ 366349.487899996340275, 255338.863800000399351 ], [ 366352.337399996817112, 255338.739599999040365 ], [ 366382.184500001370907, 255337.438099998980761 ], [ 366395.251599997282028, 255337.023299999535084 ], [ 366409.856600001454353, 255334.906599998474121 ], [ 366410.902800001204014, 255334.777199998497963 ], [ 366420.519299998879433, 255333.587799999862909 ], [ 366427.424999997019768, 255332.366599999368191 ], [ 366433.563299998641014, 255327.921599999070168 ], [ 366435.996799997985363, 255324.526000000536442 ], [ 366437.853000000119209, 255321.936099998652935 ], [ 366442.66499999910593, 255315.221599999815226 ], [ 366446.363499999046326, 255308.318399999290705 ], [ 366453.883299998939037, 255296.594999998807907 ], [ 366458.297499999403954, 255291.930399999022484 ], [ 366464.581299997866154, 255289.284499999135733 ], [ 366467.557899996638298, 255285.977299999445677 ], [ 366467.227200001478195, 255283.331399999558926 ], [ 366465.90429999679327, 255280.024099998176098 ], [ 366461.935500003397465, 255277.047499999403954 ], [ 366456.974600002169609, 255274.732400000095367 ], [ 366452.013599999248981, 255273.740200001746416 ], [ 366443.08389999717474, 255273.740200001746416 ], [ 366439.115099996328354, 255273.740200001746416 ], [ 366431.839100003242493, 255274.070999998599291 ], [ 366426.878100000321865, 255275.393899999558926 ], [ 366421.917199999094009, 255277.708999998867512 ], [ 366419.602099999785423, 255280.354800000786781 ], [ 366415.633299998939037, 255284.323600001633167 ], [ 366412.656800001859665, 255287.961599998176098 ], [ 366410.010899998247623, 255290.607500001788139 ], [ 366408.688000001013279, 255292.922600001096725 ], [ 366406.703599996864796, 255296.89130000025034 ], [ 366404.719200000166893, 255301.521600000560284 ], [ 366402.404100000858307, 255305.159600000828505 ], [ 366395.458800002932549, 255310.451299998909235 ], [ 366388.51349999755621, 255312.766399998217821 ], [ 366378.260899998247623, 255313.758600000292063 ], [ 366371.976999998092651, 255312.104899998754263 ], [ 366364.370200000703335, 255309.789799999445677 ], [ 366356.763400003314018, 255307.805399999022484 ], [ 366353.125399999320507, 255305.159600000828505 ], [ 366349.156599998474121, 255302.18299999833107 ], [ 366344.195699997246265, 255298.875700000673532 ], [ 366339.565499998629093, 255294.576200000941753 ], [ 366336.258199997246265, 255289.945999998599291 ], [ 366331.297200001776218, 255286.30799999833107 ], [ 366327.328500002622604, 255283.662099998444319 ], [ 366323.359700001776218, 255281.01630000025034 ], [ 366319.721699997782707, 255278.37049999833107 ], [ 366312.776399999856949, 255277.708999998867512 ], [ 366308.476899996399879, 255278.701200000941753 ], [ 366302.193000003695488, 255280.354800000786781 ], [ 366296.570600003004074, 255283.992899999022484 ], [ 366292.271099999547005, 255288.292399998754263 ], [ 366287.640900000929832, 255293.583999998867512 ], [ 366281.687799997627735, 255299.206399999558926 ], [ 366277.388300001621246, 255303.83669999986887 ], [ 366272.758000001311302, 255309.459100000560284 ], [ 366267.797100000083447, 255316.073699999600649 ], [ 366263.828299999237061, 255321.034600000828505 ], [ 366262.174699999392033, 255325.995600000023842 ], [ 366257.875200003385544, 255335.917500000447035 ], [ 366255.229400001466274, 255343.855000000447035 ], [ 366251.591300003230572, 255352.453899998217821 ], [ 366246.630400002002716, 255365.352400001138449 ], [ 366240.015799999237061, 255382.2195999994874 ], [ 366237.039200000464916, 255391.480099998414516 ], [ 366234.062700003385544, 255396.771699998527765 ], [ 366227.778800003230572, 255399.086899999529123 ], [ 366223.479299999773502, 255399.7483000010252 ], [ 366214.880300000309944, 255398.094700001180172 ], [ 366208.596500001847744, 255396.110300000756979 ], [ 366202.312600001692772, 255392.141499999910593 ], [ 366195.367299996316433, 255388.503499999642372 ], [ 366188.752700001001358, 255383.542599998414516 ], [ 366178.169299997389317, 255378.250900000333786 ], [ 366164.940099999308586, 255373.951400000602007 ], [ 366156.341099999845028, 255369.982599999755621 ], [ 366149.726499997079372, 255364.690900001674891 ], [ 366138.481700003147125, 255356.422699999064207 ], [ 366133.52080000191927, 255349.146600000560284 ], [ 366129.2212999984622, 255339.555500000715256 ], [ 366126.906199999153614, 255335.58669999986887 ], [ 366125.252499997615814, 255326.987700000405312 ], [ 366124.591099999845028, 255317.065900001674891 ], [ 366125.252499997615814, 255307.144000001251698 ], [ 366125.252499997615814, 255295.568399999290705 ], [ 366125.913999997079372, 255288.292399998754263 ], [ 366126.906199999153614, 255282.008499998599291 ], [ 366128.229099996387959, 255275.063200000673532 ], [ 366129.882799997925758, 255268.117800001055002 ], [ 366133.52080000191927, 255260.511100001633167 ], [ 366138.481700003147125, 255246.289700001478195 ], [ 366142.450499996542931, 255231.406800001859665 ], [ 366144.434900000691414, 255223.469300001859665 ], [ 366143.442699998617172, 255219.500599998980761 ], [ 366137.963100001215935, 255212.616399999707937 ], [ 366138.574600003659725, 255207.886100001633167 ], [ 366137.023199997842312, 255200.696199998259544 ], [ 366133.858999997377396, 255193.493200000375509 ], [ 366129.075099997222424, 255187.121199999004602 ], [ 366126.668799996376038, 255185.623799998313189 ], [ 366122.678599998354912, 255180.736000001430511 ], [ 366119.525200001895428, 255172.266499999910593 ], [ 366119.546800002455711, 255169.733500000089407 ], [ 366112.20549999922514, 255179.594900000840425 ], [ 366117.362400002777576, 255236.843299999833107 ], [ 366118.01630000025034, 255251.074299998581409 ], [ 366118.326099999248981, 255257.816700000315905 ], [ 366114.635899998247623, 255272.918099999427795 ], [ 366119.82880000025034, 255325.945099998265505 ], [ 366124.281800001859665, 255371.155600000172853 ], [ 366125.077799998223782, 255381.243900001049042 ], [ 366126.465199999511242, 255398.826699998229742 ], [ 366127.228399999439716, 255403.89919999986887 ], [ 366129.444499999284744, 255428.402699999511242 ], [ 366132.405000001192093, 255458.825899999588728 ], [ 366136.096699997782707, 255498.75279999896884 ], [ 366137.545699998736382, 255517.97410000115633 ], [ 366139.086499996483326, 255526.430399999022484 ], [ 366139.628899998962879, 255538.817800000309944 ], [ 366149.181500002741814, 255533.390000000596046 ], [ 366167.123599998652935, 255523.195300001651049 ], [ 366186.98369999974966, 255511.910799998790026 ], [ 366209.496100001037121, 255495.420800000429153 ], [ 366228.999300003051758, 255481.135000001639128 ], [ 366235.414399996399879, 255463.889600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050133", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96003242, "LATITUDE": 18.33165657, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 5.4971107738300002, "SHAPE_Area": 0.03504434501 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355733.175499998033047, 255780.677200000733137 ], [ 355733.151500001549721, 255780.701299998909235 ], [ 355733.358499996364117, 255783.413800001144409 ], [ 355733.175499998033047, 255780.677200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "ROW 2J-E", "ACRE": "2.20", "LONGITUDE": -64.90410851, "LATITUDE": 18.33242796, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2362.8556528600002, "SHAPE_Area": 11301.2692972 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361715.39190000295639, 255927.314100001007318 ], [ 361716.671599999070168, 255913.958000000566244 ], [ 361706.855499997735023, 255915.585299998521805 ], [ 361690.551500000059605, 255911.377000000327826 ], [ 361684.350500002503395, 255909.776500001549721 ], [ 361682.333700001239777, 255909.255899999290705 ], [ 361660.532600000500679, 255903.628699999302626 ], [ 361642.900499999523163, 255899.077599998563528 ], [ 361625.509400002658367, 255894.588700000196695 ], [ 361606.529799997806549, 255889.689800001680851 ], [ 361588.959499999880791, 255885.154699999839067 ], [ 361585.529100000858307, 255884.251899998635054 ], [ 361578.230099998414516, 255882.331199999898672 ], [ 361566.077500000596046, 255879.133099999278784 ], [ 361561.262100003659725, 255877.865899998694658 ], [ 361554.520000003278255, 255879.323600001633167 ], [ 361549.271799996495247, 255882.572500001639128 ], [ 361546.866800002753735, 255884.061299998313189 ], [ 361544.315700002014637, 255884.790199998766184 ], [ 361540.741499997675419, 255884.013000000268221 ], [ 361535.933600001037121, 255881.510299999266863 ], [ 361529.009300000965595, 255876.772599998861551 ], [ 361523.360399998724461, 255866.932700000703335 ], [ 361525.364900000393391, 255856.181800000369549 ], [ 361533.200300000607967, 255848.3462999984622 ], [ 361539.733599998056889, 255846.400199998170137 ], [ 361541.764600001275539, 255845.795200001448393 ], [ 361545.991800002753735, 255845.717000000178814 ], [ 361551.604500003159046, 255845.613000001758337 ], [ 361559.075499996542931, 255845.795200001448393 ], [ 361579.30179999768734, 255847.617400001734495 ], [ 361615.199100002646446, 255850.715199999511242 ], [ 361638.548500001430511, 255852.565999999642372 ], [ 361644.536399997770786, 255852.901799999177456 ], [ 361654.743600003421307, 255855.4087999984622 ], [ 361654.923000000417233, 255855.452899999916553 ], [ 361666.949400000274181, 255860.008400000631809 ], [ 361674.327899999916553, 255863.208700001239777 ], [ 361678.377999998629093, 255864.965300001204014 ], [ 361678.484099999070168, 255865.442800000309944 ], [ 361678.933899998664856, 255865.206500001251698 ], [ 361682.073700003325939, 255866.568300001323223 ], [ 361689.681800000369549, 255868.314399998635054 ], [ 361696.286799997091293, 255869.848200000822544 ], [ 361705.397799998521805, 255871.306000001728535 ], [ 361710.864399999380112, 255871.670400001108646 ], [ 361719.975299999117851, 255869.483800001442432 ], [ 361724.166400000452995, 255869.119300000369549 ], [ 361735.464000001549721, 255863.83500000089407 ], [ 361734.00620000064373, 255859.643899999558926 ], [ 361732.001800000667572, 255854.906199999153614 ], [ 361722.344200000166893, 255858.915100000798702 ], [ 361713.597699999809265, 255861.466099999845028 ], [ 361703.393399998545647, 255862.559399999678135 ], [ 361695.557899996638298, 255860.737199999392033 ], [ 361689.478200003504753, 255858.233800001442432 ], [ 361686.264700002968311, 255856.910599999129772 ], [ 361678.975900001823902, 255852.355099998414516 ], [ 361674.2212999984622, 255849.250100001692772 ], [ 361670.047200001776218, 255846.524099998176098 ], [ 361664.398400001227856, 255841.057500001043081 ], [ 361659.478399999439716, 255835.773200001567602 ], [ 361656.174599997699261, 255831.839999999850988 ], [ 361651.532200001180172, 255826.313400000333786 ], [ 361647.998599998652935, 255822.106699999421835 ], [ 361644.35419999808073, 255818.097899999469519 ], [ 361637.612099997699261, 255810.444699998944998 ], [ 361637.065399996936321, 255810.444699998944998 ], [ 361631.445799998939037, 255804.824999999254942 ], [ 361630.505500003695488, 255803.884799998253584 ], [ 361630.505500003695488, 255801.698100000619888 ], [ 361632.32769999653101, 255800.787000000476837 ], [ 361639.193000003695488, 255802.388900000602007 ], [ 361643.260899998247623, 255803.338100001215935 ], [ 361656.174699999392033, 255807.226100001484156 ], [ 361660.207299999892712, 255808.440200001001358 ], [ 361668.938199996948242, 255811.382199998944998 ], [ 361673.611299999058247, 255812.956799998879433 ], [ 361676.971500001847744, 255814.089000001549721 ], [ 361688.673299998044968, 255818.383299998939037 ], [ 361696.833499997854233, 255821.37779999896884 ], [ 361709.224399998784065, 255822.653400000184774 ], [ 361721.979800000786781, 255823.017799999564886 ], [ 361727.993000000715256, 255821.559999998658895 ], [ 361726.899700000882149, 255817.186799999326468 ], [ 361725.806400001049042, 255814.271299999207258 ], [ 361709.224399998784065, 255815.546799998730421 ], [ 361695.193499997258186, 255812.449099998921156 ], [ 361688.50280000269413, 255809.940000001341105 ], [ 361679.15820000320673, 255806.4358000010252 ], [ 361673.177299998700619, 255804.305599998682737 ], [ 361665.856100000441074, 255801.698100000619888 ], [ 361657.389399997889996, 255798.776000000536442 ], [ 361640.487099997699261, 255795.003699999302626 ], [ 361633.593900002539158, 255793.465199999511242 ], [ 361624.068800002336502, 255792.195199999958277 ], [ 361620.737499997019768, 255791.491399999707937 ], [ 361609.040500000119209, 255789.020199999213219 ], [ 361602.690499998629093, 255788.173599999397993 ], [ 361601.192900002002716, 255787.554400000721216 ], [ 361600.002300001680851, 255786.68129999935627 ], [ 361598.705399997532368, 255785.600600000470877 ], [ 361595.715999998152256, 255783.109400000423193 ], [ 361581.735399998724461, 255772.086899999529123 ], [ 361581.349299997091293, 255772.260200001299381 ], [ 361572.574199996888638, 255776.200100000947714 ], [ 361571.36370000243187, 255776.743500001728535 ], [ 361571.575400002300739, 255778.860199999064207 ], [ 361570.305399999022484, 255780.130199998617172 ], [ 361565.437100000679493, 255780.130199998617172 ], [ 361560.647299997508526, 255779.982599999755621 ], [ 361549.561999998986721, 255777.590199999511242 ], [ 361544.991800002753735, 255777.298500001430511 ], [ 361539.61370000243187, 255776.955200001597404 ], [ 361528.422100000083447, 255777.331399999558926 ], [ 361518.076800003647804, 255777.679099999368191 ], [ 361514.425300002098083, 255777.801899999380112 ], [ 361497.491899996995926, 255779.706900000572205 ], [ 361489.660199999809265, 255779.918499998748302 ], [ 361490.083599999547005, 255789.231899999082088 ], [ 361514.637000001966953, 255786.480200000107288 ], [ 361522.147100001573563, 255785.775400001555681 ], [ 361530.697899997234344, 255784.920400001108646 ], [ 361532.963600002229214, 255784.77419999986887 ], [ 361542.600900001823902, 255784.152399998158216 ], [ 361551.816100001335144, 255784.66440000012517 ], [ 361562.567199997603893, 255786.456199999898672 ], [ 361570.087999999523163, 255788.198800001293421 ], [ 361573.062299996614456, 255788.888000000268221 ], [ 361588.932899996638298, 255793.879599999636412 ], [ 361595.076399996876717, 255795.415500000119209 ], [ 361598.329199999570847, 255796.017799999564886 ], [ 361598.5320999994874, 255796.055399999022484 ], [ 361612.354900002479553, 255802.710799999535084 ], [ 361619.906300000846386, 255807.318399999290705 ], [ 361624.36370000243187, 255810.861600000411272 ], [ 361625.609200000762939, 255811.851599998772144 ], [ 361629.889399997889996, 255815.253800000995398 ], [ 361636.965999998152256, 255823.679299999028444 ], [ 361644.645199999213219, 255833.581399999558926 ], [ 361651.259800001978874, 255842.048000000417233 ], [ 361651.259800001978874, 255843.370999999344349 ], [ 361650.466099999845028, 255844.958500001579523 ], [ 361647.29110000282526, 255844.958500001579523 ], [ 361641.999399997293949, 255844.164700001478195 ], [ 361635.170100003480911, 255843.101799998432398 ], [ 361632.036799997091293, 255842.942899998277426 ], [ 361620.751400001347065, 255842.370400000363588 ], [ 361612.830200001597404, 255841.968600001186132 ], [ 361604.696599997580051, 255841.520899999886751 ], [ 361592.968299999833107, 255840.875300001353025 ], [ 361587.145900003612041, 255840.287200000137091 ], [ 361574.928599998354912, 255839.053100001066923 ], [ 361570.927799999713898, 255838.501299999654293 ], [ 361559.075499996542931, 255836.866500001400709 ], [ 361555.696199998259544, 255836.962999999523163 ], [ 361546.320100001990795, 255837.230900000780821 ], [ 361537.373000003397465, 255838.926199998706579 ], [ 361529.009300000965595, 255840.510899998247623 ], [ 361517.347199998795986, 255848.3462999984622 ], [ 361511.516199998557568, 255861.648299999535084 ], [ 361510.605099998414516, 255872.217099998146296 ], [ 361515.524999998509884, 255883.332499999552965 ], [ 361526.093699999153614, 255888.434599999338388 ], [ 361571.984899997711182, 255908.803100001066923 ], [ 361582.73929999768734, 255912.879999998956919 ], [ 361602.908900000154972, 255921.104400001466274 ], [ 361607.357299998402596, 255922.918299999088049 ], [ 361610.866599999368191, 255924.349300000816584 ], [ 361621.926299996674061, 255929.128199998289347 ], [ 361629.162900000810623, 255933.36089999973774 ], [ 361630.941299997270107, 255935.108199998736382 ], [ 361636.945699997246265, 255941.007199998944998 ], [ 361645.670500002801418, 255954.7331000007689 ], [ 361645.676600001752377, 255954.74100000038743 ], [ 361648.92849999666214, 255958.958299998193979 ], [ 361656.983300000429153, 255970.422400001436472 ], [ 361673.149300001561642, 255996.508400000631809 ], [ 361687.436800003051758, 256017.67509999871254 ], [ 361698.549300000071526, 256030.90430000051856 ], [ 361708.807099997997284, 256039.918800000101328 ], [ 361716.011799998581409, 256046.250199999660254 ], [ 361724.478500001132488, 256057.362700000405312 ], [ 361731.886900000274181, 256067.416900001466274 ], [ 361736.120200000703335, 256075.354400001466274 ], [ 361739.824400000274181, 256091.758600000292063 ], [ 361743.757700003683567, 256114.047400001436472 ], [ 361744.454700000584126, 256117.997099999338388 ], [ 361749.349399998784065, 256145.73369999974966 ], [ 361752.740099996328354, 256163.53489999845624 ], [ 361765.618299998342991, 256196.534499999135733 ], [ 361767.817800000309944, 256202.261599998921156 ], [ 361767.555699996650219, 256203.748599998652935 ], [ 361765.789099998772144, 256205.967700000852346 ], [ 361762.891999997198582, 256209.365100000053644 ], [ 361785.028800003230572, 256203.9560999982059 ], [ 361778.558799996972084, 256201.854899998754263 ], [ 361775.335600003600121, 256199.097800001502037 ], [ 361771.433799996972084, 256187.895899999886751 ], [ 361764.695299997925758, 256158.962900001555681 ], [ 361757.816100001335144, 256127.212799999862909 ], [ 361755.339400000870228, 256114.379200000315905 ], [ 361751.995200000703335, 256097.050299998372793 ], [ 361746.703599996864796, 256073.237700000405312 ], [ 361737.707699999213219, 256056.833500001579523 ], [ 361726.065999999642372, 256042.016800001263618 ], [ 361717.107100002467632, 256034.849700000137091 ], [ 361712.836800001561642, 256031.433499999344349 ], [ 361702.253499999642372, 256019.791799999773502 ], [ 361692.728500001132488, 256007.09180000051856 ], [ 361673.678400002419949, 255978.516699999570847 ], [ 361662.634300000965595, 255963.791200000792742 ], [ 361659.850199997425079, 255959.59569999948144 ], [ 361649.082599997520447, 255943.369600001722574 ], [ 361644.271799996495247, 255935.674899999052286 ], [ 361643.908500000834465, 255935.261100001633167 ], [ 361636.651799999177456, 255926.996599998325109 ], [ 361633.068899996578693, 255924.607999999076128 ], [ 361629.666799999773502, 255922.339899998158216 ], [ 361624.32320000231266, 255920.024399999529123 ], [ 361616.966700002551079, 255916.836599998176098 ], [ 361609.445299997925758, 255914.032000001519918 ], [ 361604.478399999439716, 255912.179900001734495 ], [ 361590.719999998807907, 255907.099899999797344 ], [ 361574.931900002062321, 255900.812600001692772 ], [ 361570.960199996829033, 255898.209199998527765 ], [ 361554.523100003600121, 255890.8136 ], [ 361556.888800002634525, 255888.616799999028444 ], [ 361560.351000003516674, 255888.434599999338388 ], [ 361564.190399996936321, 255889.063900001347065 ], [ 361581.925899997353554, 255893.307300001382828 ], [ 361596.223399996757507, 255896.728199999779463 ], [ 361629.243400000035763, 255904.771600000560284 ], [ 361630.951700001955032, 255905.216099999845028 ], [ 361641.951899997889996, 255908.07880000025034 ], [ 361660.506099998950958, 255912.907400000840425 ], [ 361665.660300001502037, 255914.248700000345707 ], [ 361668.792700000107288, 255914.942200001329184 ], [ 361689.780199997127056, 255919.588199999183416 ], [ 361690.73870000243187, 255920.642499998211861 ], [ 361696.130199998617172, 255926.573300000280142 ], [ 361715.39190000295639, 255927.314100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504016300", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-28", "ACRE": ".27", "LONGITUDE": -64.90558163, "LATITUDE": 18.33099939, "OBJECTID_1": 20427, "PARCEL_NO_": "105504016300", "Tax_Legal_": "2J-28 DONOE 2A NEW QUARTER", "Name": "GREGORY A. COWARD SR. & SIMBI T. COWARD", "Address": "PO BOX 11691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47600, "Improved_V": 257500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.17460532699999, "SHAPE_Area": 1136.1860780300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361497.491899996995926, 255779.706900000572205 ], [ 361506.716499999165535, 255737.36259999871254 ], [ 361506.379399999976158, 255737.264699999243021 ], [ 361506.203000001609325, 255737.21339999884367 ], [ 361492.646300002932549, 255729.913699999451637 ], [ 361466.314999997615814, 255762.762600000947714 ], [ 361489.660199999809265, 255779.918499998748302 ], [ 361497.491899996995926, 255779.706900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-26", "ACRE": ".24", "LONGITUDE": -64.90506026, "LATITUDE": 18.33108173, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.56868065200001, "SHAPE_Area": 991.89463925699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361571.575400002300739, 255778.860199999064207 ], [ 361571.36370000243187, 255776.743500001728535 ], [ 361567.130400002002716, 255771.663499999791384 ], [ 361560.145400002598763, 255763.408500000834465 ], [ 361551.678700000047684, 255755.365200001746416 ], [ 361548.410300001502037, 255752.680399999022484 ], [ 361545.751999996602535, 255750.496800001710653 ], [ 361539.19030000269413, 255747.110100001096725 ], [ 361533.049500003457069, 255745.342300001531839 ], [ 361530.895900003612041, 255744.722300000488758 ], [ 361530.605400003492832, 255744.638700000941753 ], [ 361523.967699997127056, 255775.952199999243021 ], [ 361523.626000002026558, 255777.492600001394749 ], [ 361528.422100000083447, 255777.331399999558926 ], [ 361539.61370000243187, 255776.955200001597404 ], [ 361544.991800002753735, 255777.298500001430511 ], [ 361549.561999998986721, 255777.590199999511242 ], [ 361560.647299997508526, 255779.982599999755621 ], [ 361565.437100000679493, 255780.130199998617172 ], [ 361570.305399999022484, 255780.130199998617172 ], [ 361571.575400002300739, 255778.860199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105404016200", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-27", "ACRE": ".23", "LONGITUDE": -64.9053473, "LATITUDE": 18.33103024, "OBJECTID_1": 19320, "PARCEL_NO_": "105404016200", "Tax_Legal_": "2J-27 DONOE 2A NEW QUARTER", "Name": "JAMES, NIGEL W.", "Address": "PO Box 302031", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.146005258, "SHAPE_Area": 955.33536069100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361514.284800000488758, 255739.559799998998642 ], [ 361506.716499999165535, 255737.36259999871254 ], [ 361497.491899996995926, 255779.706900000572205 ], [ 361514.425300002098083, 255777.801899999380112 ], [ 361518.076800003647804, 255777.679099999368191 ], [ 361523.626000002026558, 255777.492600001394749 ], [ 361523.967699997127056, 255775.952199999243021 ], [ 361530.605400003492832, 255744.638700000941753 ], [ 361525.220299996435642, 255743.088500000536442 ], [ 361520.243199996650219, 255741.470899999141693 ], [ 361514.284800000488758, 255739.559799998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504015700", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-23", "ACRE": ".25", "LONGITUDE": -64.90370449, "LATITUDE": 18.33127222, "OBJECTID_1": 20426, "PARCEL_NO_": "105504015700", "Tax_Legal_": "2J-23 DONOE No. 2A NEW QUARTER", "Name": "FLEMING, LOIS C.", "Address": "PO Box 600116", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.29792023600001, "SHAPE_Area": 1078.548295 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361678.890600003302097, 255766.583500001579523 ], [ 361678.676500000059605, 255766.565499998629093 ], [ 361677.413199998438358, 255771.927200000733137 ], [ 361670.046499997377396, 255803.190499998629093 ], [ 361673.177299998700619, 255804.305599998682737 ], [ 361679.15820000320673, 255806.4358000010252 ], [ 361688.50280000269413, 255809.940000001341105 ], [ 361695.193499997258186, 255812.449099998921156 ], [ 361703.275100000202656, 255775.30970000103116 ], [ 361704.708599999547005, 255768.721900001168251 ], [ 361704.502300001680851, 255768.700199998915195 ], [ 361678.890600003302097, 255766.583500001579523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-D", "ACRE": ".14", "LONGITUDE": -64.90456357, "LATITUDE": 18.33113184, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.215712078600006, "SHAPE_Area": 592.92861574999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361607.558799996972084, 255760.233500000089407 ], [ 361591.048799999058247, 255758.328499998897314 ], [ 361586.815399996936321, 255759.386799998581409 ], [ 361583.852099999785423, 255761.715199999511242 ], [ 361581.735399998724461, 255764.67850000038743 ], [ 361581.100400000810623, 255768.488499999046326 ], [ 361581.527199998497963, 255770.907000001519918 ], [ 361581.735399998724461, 255772.086899999529123 ], [ 361595.715999998152256, 255783.109400000423193 ], [ 361598.705399997532368, 255785.600600000470877 ], [ 361600.002300001680851, 255786.68129999935627 ], [ 361601.192900002002716, 255787.554400000721216 ], [ 361602.690499998629093, 255788.173599999397993 ], [ 361608.605200000107288, 255788.962200000882149 ], [ 361607.905799999833107, 255767.11939999833703 ], [ 361607.685699999332428, 255760.245400000363588 ], [ 361607.558799996972084, 255760.233500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504015100", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-17", "ACRE": "0.25", "LONGITUDE": -64.90446508, "LATITUDE": 18.33158423, "OBJECTID_1": 20421, "PARCEL_NO_": "105504015100", "Tax_Legal_": "2J-17 DONOE 2A NEW QUARTER", "Name": "EDMUND & GEMMA Jno-CHARLES", "Address": "PO Box 502573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.17016989000001, "SHAPE_Area": 1103.39993598 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361598.5320999994874, 255796.055399999022484 ], [ 361598.329199999570847, 255796.017799999564886 ], [ 361596.648400001227856, 255804.785199999809265 ], [ 361589.791000001132488, 255840.554400000721216 ], [ 361592.968299999833107, 255840.875300001353025 ], [ 361604.696599997580051, 255841.520899999886751 ], [ 361612.830200001597404, 255841.968600001186132 ], [ 361617.364100001752377, 255842.198600001633167 ], [ 361619.387299999594688, 255833.140599999576807 ], [ 361621.481299996376038, 255823.765799999237061 ], [ 361624.265399999916553, 255811.30180000141263 ], [ 361624.36370000243187, 255810.861600000411272 ], [ 361619.906300000846386, 255807.318399999290705 ], [ 361612.354900002479553, 255802.710799999535084 ], [ 361598.5320999994874, 255796.055399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504015300", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-19", "ACRE": ".37", "LONGITUDE": -64.90498197, "LATITUDE": 18.3314782, "OBJECTID_1": 20423, "PARCEL_NO_": "105504015300", "Tax_Legal_": "2J-19 DONOE 2A NEW QUARTER", "Name": "HALLIDAY, TRICIA", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 50400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.053415962, "SHAPE_Area": 1609.4578399899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361555.696199998259544, 255836.962999999523163 ], [ 361559.075499996542931, 255836.866500001400709 ], [ 361565.88400000333786, 255837.805599998682737 ], [ 361569.709499999880791, 255792.665300000458956 ], [ 361570.087999999523163, 255788.198800001293421 ], [ 361562.567199997603893, 255786.456199999898672 ], [ 361551.816100001335144, 255784.66440000012517 ], [ 361542.600900001823902, 255784.152399998158216 ], [ 361532.963600002229214, 255784.77419999986887 ], [ 361533.779200002551079, 255789.978000000119209 ], [ 361541.33330000191927, 255838.175799999386072 ], [ 361546.320100001990795, 255837.230900000780821 ], [ 361555.696199998259544, 255836.962999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504015200", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-18", "ACRE": ".28", "LONGITUDE": -64.90471101, "LATITUDE": 18.33152536, "OBJECTID_1": 20422, "PARCEL_NO_": "105504015200", "Tax_Legal_": "2J-18 DONOE 2A NEW QUARTER", "Name": "CHARLES, SHANNA", "Address": "PO Box 6522", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 50400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.53137778300001, "SHAPE_Area": 1258.2616438800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361573.062299996614456, 255788.888000000268221 ], [ 361570.087999999523163, 255788.198800001293421 ], [ 361569.709499999880791, 255792.665300000458956 ], [ 361565.88400000333786, 255837.805599998682737 ], [ 361570.927799999713898, 255838.501299999654293 ], [ 361574.928599998354912, 255839.053100001066923 ], [ 361587.145900003612041, 255840.287200000137091 ], [ 361589.791000001132488, 255840.554400000721216 ], [ 361596.648400001227856, 255804.785199999809265 ], [ 361598.329199999570847, 255796.017799999564886 ], [ 361595.076399996876717, 255795.415500000119209 ], [ 361588.932899996638298, 255793.879599999636412 ], [ 361573.062299996614456, 255788.888000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-7", "ACRE": ".25", "LONGITUDE": -64.90475871, "LATITUDE": 18.33196838, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.377142034, "SHAPE_Area": 1129.4211031499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361588.959499999880791, 255885.154699999839067 ], [ 361593.446699999272823, 255852.397900000214577 ], [ 361593.928700000047684, 255848.879599999636412 ], [ 361579.30179999768734, 255847.617400001734495 ], [ 361559.075499996542931, 255845.795200001448393 ], [ 361558.823600001633167, 255845.789099998772144 ], [ 361558.739699997007847, 255850.172899998724461 ], [ 361558.196999996900558, 255878.528599999845028 ], [ 361561.262100003659725, 255877.865899998694658 ], [ 361566.077500000596046, 255879.133099999278784 ], [ 361578.230099998414516, 255882.331199999898672 ], [ 361585.529100000858307, 255884.251899998635054 ], [ 361588.959499999880791, 255885.154699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504014400", "MAP": "D9-9017-T015", "PARCEL_NAM": "2J-10", "ACRE": ".25", "LONGITUDE": -64.90391247, "LATITUDE": 18.33212178, "OBJECTID_1": 20418, "PARCEL_NO_": "105504014400", "Tax_Legal_": "2J-10 DONOE 2A NEW QUARTER", "Name": "AUSTIN HART, EURITA S. & HALVOR HART, III", "Address": "PO Box 12372", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42600, "Improved_V": 222400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.817931617, "SHAPE_Area": 1327.41208895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361682.073700003325939, 255866.568300001323223 ], [ 361678.933899998664856, 255865.206500001251698 ], [ 361678.484099999070168, 255865.442800000309944 ], [ 361678.377999998629093, 255864.965300001204014 ], [ 361674.327899999916553, 255863.208700001239777 ], [ 361666.949400000274181, 255860.008400000631809 ], [ 361654.923000000417233, 255855.452899999916553 ], [ 361654.743600003421307, 255855.4087999984622 ], [ 361651.523599997162819, 255854.617899999022484 ], [ 361649.028800003230572, 255900.659400001168251 ], [ 361651.346199996769428, 255901.257599998265505 ], [ 361660.532600000500679, 255903.628699999302626 ], [ 361676.696199998259544, 255907.800799999386072 ], [ 361678.396300002932549, 255895.559900000691414 ], [ 361682.412100002169609, 255866.646000001579523 ], [ 361682.073700003325939, 255866.568300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504014000", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-8", "ACRE": "0.29", "LONGITUDE": -64.90445253, "LATITUDE": 18.33201994, "OBJECTID_1": 20415, "PARCEL_NO_": "105504014000", "Tax_Legal_": "2J-8 DONOE NO. 2A NEW QUARTER", "Name": "EDGAR, LAURA STACY", "Address": "PO Box 1104", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47600, "Improved_V": 313800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.78307502800001, "SHAPE_Area": 1272.93572552 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361615.199100002646446, 255850.715199999511242 ], [ 361593.928700000047684, 255848.879599999636412 ], [ 361593.446699999272823, 255852.397900000214577 ], [ 361588.959499999880791, 255885.154699999839067 ], [ 361606.529799997806549, 255889.689800001680851 ], [ 361621.224500000476837, 255893.482700001448393 ], [ 361624.82769999653101, 255858.093800000846386 ], [ 361625.495899997651577, 255851.531399998813868 ], [ 361615.199100002646446, 255850.715199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-6", "ACRE": ".25", "LONGITUDE": -64.9050673, "LATITUDE": 18.33197171, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.991860276, "SHAPE_Area": 1107.53886205 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361558.823600001633167, 255845.789099998772144 ], [ 361551.604500003159046, 255845.613000001758337 ], [ 361545.991800002753735, 255845.717000000178814 ], [ 361541.764600001275539, 255845.795200001448393 ], [ 361539.733599998056889, 255846.400199998170137 ], [ 361533.200300000607967, 255848.3462999984622 ], [ 361525.364900000393391, 255856.181800000369549 ], [ 361523.360399998724461, 255866.932700000703335 ], [ 361529.009300000965595, 255876.772599998861551 ], [ 361535.933600001037121, 255881.510299999266863 ], [ 361540.741499997675419, 255884.013000000268221 ], [ 361544.315700002014637, 255884.790199998766184 ], [ 361546.866800002753735, 255884.061299998313189 ], [ 361549.271799996495247, 255882.572500001639128 ], [ 361554.520000003278255, 255879.323600001633167 ], [ 361558.196999996900558, 255878.528599999845028 ], [ 361558.739699997007847, 255850.172899998724461 ], [ 361558.823600001633167, 255845.789099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504013600", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-4", "ACRE": ".26", "LONGITUDE": -64.90348309, "LATITUDE": 18.33267779, "OBJECTID_1": 20413, "PARCEL_NO_": "105504013600", "Tax_Legal_": "2J-4 DONOE No.2A NEW QUARTER", "Name": "PROCTOR, EMILE T", "Address": "PO Box 306864", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.51986491299999, "SHAPE_Area": 1055.29830971 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361715.39190000295639, 255927.314100001007318 ], [ 361696.130199998617172, 255926.573300000280142 ], [ 361693.740000002086163, 255932.548799999058247 ], [ 361687.240199998021126, 255948.798300001770258 ], [ 361686.035199999809265, 255951.609900001436472 ], [ 361688.703900001943111, 255952.204999998211861 ], [ 361721.787900000810623, 255960.430900000035763 ], [ 361726.854400001466274, 255955.864599999040365 ], [ 361734.804499998688698, 255948.699400000274181 ], [ 361717.191100001335144, 255929.7483000010252 ], [ 361715.39190000295639, 255927.314100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "GREENBELT 2J-A", "ACRE": ".24", "LONGITUDE": -64.90454343, "LATITUDE": 18.33232073, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.75147929600001, "SHAPE_Area": 792.29044320599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361564.190399996936321, 255889.063900001347065 ], [ 361560.351000003516674, 255888.434599999338388 ], [ 361556.888800002634525, 255888.616799999028444 ], [ 361554.523100003600121, 255890.8136 ], [ 361570.96000000089407, 255898.209100000560284 ], [ 361574.931900002062321, 255900.812600001692772 ], [ 361590.719999998807907, 255907.099899999797344 ], [ 361604.478399999439716, 255912.179900001734495 ], [ 361609.445299997925758, 255914.032000001519918 ], [ 361616.966700002551079, 255916.836599998176098 ], [ 361624.32320000231266, 255920.024399999529123 ], [ 361626.898500002920628, 255912.040899999439716 ], [ 361629.633599996566772, 255904.873100001364946 ], [ 361629.243400000035763, 255904.771600000560284 ], [ 361596.223399996757507, 255896.728199999779463 ], [ 361581.925899997353554, 255893.307300001382828 ], [ 361564.190399996936321, 255889.063900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107702013700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85086458000001, "LATITUDE": 18.32628729, "OBJECTID_1": 39486, "PARCEL_NO_": "107702013700", "Tax_Legal_": "SMITH BAY ESTATE 1 RED HOOK QT", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 418200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.54852187500001, "SHAPE_Area": 201.90969304699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367282.993500001728535, 255281.214000001549721 ], [ 367257.277800001204014, 255270.870999999344349 ], [ 367257.25620000064373, 255273.403999999165535 ], [ 367284.528800003230572, 255290.303599998354912 ], [ 367298.923699997365475, 255304.35359999909997 ], [ 367294.246799997985363, 255297.105999998748302 ], [ 367282.993500001728535, 255281.214000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704013800", "MAP": "G9-767-T64", "PARCEL_NAM": "57B-35", "ACRE": "0.44", "LONGITUDE": -64.86976322, "LATITUDE": 18.33612897, "OBJECTID_1": 23483, "PARCEL_NO_": "105704013800", "Tax_Legal_": "SMITH BAY 57B-35 EAST END QTR", "Name": "FRETT, ARIEL A", "Address": "PO Box 307994", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 57200, "Improved_V": 105900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 170.33917435399999, "SHAPE_Area": 1451.4409705200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365272.243600003421307, 256324.032699998468161 ], [ 365267.058399997651577, 256323.98200000077486 ], [ 365261.410700000822544, 256324.357999999076128 ], [ 365256.819899998605251, 256389.970499999821186 ], [ 365265.330899998545647, 256389.152899999171495 ], [ 365275.769000001251698, 256388.150199998170137 ], [ 365287.784699998795986, 256332.39979999884963 ], [ 365278.89360000193119, 256327.418600000441074 ], [ 365272.243600003421307, 256324.032699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102602011900", "MAP": "D9-9010-T015", "PARCEL_NAM": "6C-1D-A", "ACRE": ".02", "LONGITUDE": -64.97316666, "LATITUDE": 18.36174116, "OBJECTID_1": 2368, "PARCEL_NO_": "102602011900", "Tax_Legal_": "6C-1A,6C-1B,6C-1D,6C-2B,6C-2REM &6C-A ROW CARET Bay NO.8 LITTLE NORTHSIDE QTR", "Name": "TERRY D JACKSON REVOCABLE TRUST", "Address": "P O BOX 3130", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 526000, "Improved_V": 42100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.859069006799999, "SHAPE_Area": 78.300990636099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354315.513300001621246, 259094.952899999916553 ], [ 354312.590400002896786, 259103.345199998468161 ], [ 354320.631599999964237, 259105.681600000709295 ], [ 354321.947200000286102, 259101.746700000017881 ], [ 354325.379199996590614, 259097.904899999499321 ], [ 354315.513300001621246, 259094.952899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704010500", "MAP": "G9-2734-T78", "PARCEL_NAM": "Y", "ACRE": ".83", "LONGITUDE": -64.95263252, "LATITUDE": 18.35508273, "OBJECTID_1": 3441, "PARCEL_NO_": "102704010500", "Tax_Legal_": "LILLIENDAHL 11 SEC X&Y LITTLE NORTHSIDE QTR", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 114000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.51388457100001, "SHAPE_Area": 3108.52908402 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356536.681500002741814, 258385.628400001674891 ], [ 356533.953199997544289, 258358.658500000834465 ], [ 356506.60419999808073, 258363.111099999397993 ], [ 356477.169200003147125, 258352.858500000089407 ], [ 356471.680799998342991, 258352.686999998986721 ], [ 356466.585900001227856, 258352.527800001204014 ], [ 356463.078199997544289, 258382.593600001186132 ], [ 356462.927799999713898, 258383.883000001311302 ], [ 356459.640500001609325, 258412.059099998325109 ], [ 356505.942699998617172, 258401.145100001245737 ], [ 356536.681500002741814, 258385.628400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704013300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95293131, "LATITUDE": 18.35510935, "OBJECTID_1": 3460, "PARCEL_NO_": "102704013300", "Tax_Legal_": "LILLDHL & MARIJ 11-2 LITTLE NORTHSIDE", "Name": "BRIN, SUSANNE", "Address": "PO Box 10991", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 76700, "Improved_V": 5800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.0256997492700002, "SHAPE_Area": 0.27796477814999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356463.078199997544289, 258382.593600001186132 ], [ 356462.511600002646446, 258383.754799999296665 ], [ 356462.927799999713898, 258383.883000001311302 ], [ 356463.078199997544289, 258382.593600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704013900", "MAP": "G9-2734-T78", "PARCEL_NAM": "11J", "ACRE": null, "LONGITUDE": -64.95298359, "LATITUDE": 18.35511604, "OBJECTID_1": 3464, "PARCEL_NO_": "102704013900", "Tax_Legal_": "LIL & MAR 11EB, 11H & 11J GT. NORTHSIDE", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 117800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.82004469399999, "SHAPE_Area": 667.05329155899994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356463.078199997544289, 258382.593600001186132 ], [ 356466.585900001227856, 258352.527800001204014 ], [ 356455.658600002527237, 258354.856100000441074 ], [ 356451.866599999368191, 258383.295899998396635 ], [ 356447.615199998021126, 258415.181200001388788 ], [ 356454.825099997222424, 258413.309300001710653 ], [ 356459.640500001609325, 258412.059099998325109 ], [ 356462.927799999713898, 258383.883000001311302 ], [ 356462.511600002646446, 258383.754799999296665 ], [ 356463.078199997544289, 258382.593600001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102704010500", "MAP": "G9-2734-T78", "PARCEL_NAM": "X", "ACRE": ".77", "LONGITUDE": -64.95326698, "LATITUDE": 18.35510562, "OBJECTID_1": 3441, "PARCEL_NO_": "102704010500", "Tax_Legal_": "LILLIENDAHL 11 SEC X&Y LITTLE NORTHSIDE QTR", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 114000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.778519343, "SHAPE_Area": 2335.0171651000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356451.866599999368191, 258383.295899998396635 ], [ 356455.658600002527237, 258354.856100000441074 ], [ 356403.927400000393391, 258368.173099998384714 ], [ 356391.523400001227856, 258371.366099998354912 ], [ 356391.852799996733665, 258380.258000001311302 ], [ 356392.158399999141693, 258388.511199999600649 ], [ 356443.283900000154972, 258413.098200000822544 ], [ 356447.615199998021126, 258415.181200001388788 ], [ 356451.866599999368191, 258383.295899998396635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "107603040100", "MAP": "NO MAP ON RECORD", "PARCEL_NAM": "PORTION OF EST NADIR", "ACRE": null, "LONGITUDE": -64.87787651, "LATITUDE": 18.32080083, "OBJECTID_1": 38713, "PARCEL_NO_": "107603040100", "Tax_Legal_": "PCL OF NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 219300, "Improved_V": 114700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 360.202605785, "SHAPE_Area": 6381.6282862300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364479.649499997496605, 254641.649000000208616 ], [ 364475.291799999773502, 254633.907999999821186 ], [ 364459.770400002598763, 254610.211899999529123 ], [ 364433.089599996805191, 254635.596400000154972 ], [ 364411.36429999768734, 254601.305599998682737 ], [ 364388.600900001823902, 254610.818799998611212 ], [ 364377.357699997723103, 254615.517499998211861 ], [ 364400.142599999904633, 254687.155900001525879 ], [ 364406.229800000786781, 254702.335999999195337 ], [ 364407.15820000320673, 254704.651299998164177 ], [ 364411.484099999070168, 254711.199799999594688 ], [ 364433.950099997222424, 254695.132800001651049 ], [ 364446.328100003302097, 254686.280499998480082 ], [ 364485.531900003552437, 254652.098499998450279 ], [ 364479.649499997496605, 254641.649000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "107603040100", "MAP": "G3-157-T76", "PARCEL_NAM": "PORTION OF EST. NADIR", "ACRE": null, "LONGITUDE": -64.87791359000001, "LATITUDE": 18.32134502, "OBJECTID_1": 38713, "PARCEL_NO_": "107603040100", "Tax_Legal_": "PCL OF NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 219300, "Improved_V": 114700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.973276134300001, "SHAPE_Area": 107.516074714 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364430.283100001513958, 254713.42339999973774 ], [ 364426.7162000015378, 254704.865600001066923 ], [ 364413.958599999547005, 254713.554099999368191 ], [ 364415.571999996900558, 254715.089200001209974 ], [ 364418.310400001704693, 254716.636999998241663 ], [ 364423.310999996960163, 254717.073499999940395 ], [ 364424.656800001859665, 254716.405999999493361 ], [ 364428.351400002837181, 254714.57319999858737 ], [ 364430.283100001513958, 254713.42339999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "107603040900", "MAP": "D9-2838-T84", "PARCEL_NAM": "25E", "ACRE": "0.24", "LONGITUDE": -64.87775101, "LATITUDE": 18.31959323, "OBJECTID_1": 38721, "PARCEL_NO_": "107603040900", "Tax_Legal_": "25E NADIR RED HOOK QTR", "Name": "GREENAWAY, EURELIA", "Address": "BOX 3326", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.07962644099999, "SHAPE_Area": 901.76539494799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364448.393100000917912, 254524.296999998390675 ], [ 364468.250799998641014, 254510.735700000077486 ], [ 364463.325599998235703, 254500.099399998784065 ], [ 364461.093099996447563, 254495.642599999904633 ], [ 364431.089299999177456, 254520.2489 ], [ 364434.899300001561642, 254513.581300001591444 ], [ 364431.883100003004074, 254505.643800001591444 ], [ 364429.621799997985363, 254507.345400001853704 ], [ 364423.429499998688698, 254512.004900000989437 ], [ 364424.467299997806549, 254515.159000001847744 ], [ 364422.546400003135204, 254528.893300000578165 ], [ 364420.341399997472763, 254544.658599998801947 ], [ 364432.75620000064373, 254535.330099999904633 ], [ 364448.393100000917912, 254524.296999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603040100", "MAP": "G3-143-T73", "PARCEL_NAM": "42", "ACRE": "0.34", "LONGITUDE": -64.87779584, "LATITUDE": 18.3204151, "OBJECTID_1": 38713, "PARCEL_NO_": "107603040100", "Tax_Legal_": "PCL OF NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 219300, "Improved_V": 114700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.989870841, "SHAPE_Area": 1220.1045112100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364459.770400002598763, 254610.211899999529123 ], [ 364452.941100001335144, 254599.785700000822544 ], [ 364444.787299998104572, 254587.337499998509884 ], [ 364411.36429999768734, 254601.305599998682737 ], [ 364433.089599996805191, 254635.596400000154972 ], [ 364459.770400002598763, 254610.211899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603040300", "MAP": "A9-558-T000", "PARCEL_NAM": "1 REM", "ACRE": "0.13", "LONGITUDE": -64.87704864, "LATITUDE": 18.32040131, "OBJECTID_1": 38715, "PARCEL_NO_": "107603040300", "Tax_Legal_": "1 EST NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.115508616, "SHAPE_Area": 416.67480873099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364517.818899996578693, 254620.590199999511242 ], [ 364511.582999996840954, 254614.60700000077486 ], [ 364517.50959999859333, 254607.833700001239777 ], [ 364524.339100003242493, 254613.297499999403954 ], [ 364531.414399996399879, 254605.38399999961257 ], [ 364514.007799997925758, 254591.792300000786781 ], [ 364503.733199998736382, 254613.672100000083447 ], [ 364502.532300002872944, 254616.229299999773502 ], [ 364512.068199999630451, 254627.022300001233816 ], [ 364517.818899996578693, 254620.590199999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603040300", "MAP": "A9-558-T000", "PARCEL_NAM": "1A", "ACRE": "0.09", "LONGITUDE": -64.87696851, "LATITUDE": 18.320495, "OBJECTID_1": 38715, "PARCEL_NO_": "107603040300", "Tax_Legal_": "1 EST NADIR RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.260698163000001, "SHAPE_Area": 389.72398653699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364527.574199996888638, 254625.381499998271465 ], [ 364538.789700001478195, 254611.142900001257658 ], [ 364531.414399996399879, 254605.38399999961257 ], [ 364524.339100003242493, 254613.297499999403954 ], [ 364517.50959999859333, 254607.833700001239777 ], [ 364511.582999996840954, 254614.60700000077486 ], [ 364517.818899996578693, 254620.590199999511242 ], [ 364512.068199999630451, 254627.022300001233816 ], [ 364519.51630000025034, 254635.452199999243021 ], [ 364527.574199996888638, 254625.381499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020700", "MAP": "D9-9029-T015", "PARCEL_NAM": "1A-D-2", "ACRE": ".14", "LONGITUDE": -64.92070953, "LATITUDE": 18.35770762, "OBJECTID_1": 4710, "PARCEL_NO_": "102902020700", "Tax_Legal_": "CANAAN&SCHERPENJEWEL 1A(PORTION) GT.NORTHSIDE QTR.", "Name": "McCONNELL, F. W. , W. S. , M. S. & C. W", "Address": "6000 Estate Canaan", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 430600, "Improved_V": 496600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.764859556, "SHAPE_Area": 1543.6999964199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359821.930100001394749, 258696.3141999989748 ], [ 359823.341099999845028, 258718.033500000834465 ], [ 359823.699000000953674, 258714.149999998509884 ], [ 359824.253200002014637, 258711.693900000303984 ], [ 359824.846699997782707, 258710.474700000137091 ], [ 359825.633500002324581, 258709.385999999940395 ], [ 359827.200699999928474, 258707.981499999761581 ], [ 359828.826399996876717, 258707.350699998438358 ], [ 359830.575800001621246, 258707.42960000038147 ], [ 359832.710400000214577, 258707.962600000202656 ], [ 359839.046700000762939, 258709.883299998939037 ], [ 359841.890500001609325, 258710.873199999332428 ], [ 359843.502899996936321, 258711.852899998426437 ], [ 359844.723200000822544, 258713.215999998152256 ], [ 359846.786499999463558, 258714.521499998867512 ], [ 359850.018700003623962, 258715.579100001603365 ], [ 359851.811499997973442, 258716.122299998998642 ], [ 359855.661100000143051, 258715.876299999654293 ], [ 359869.037299998104572, 258713.644799999892712 ], [ 359874.731799997389317, 258712.852299999445677 ], [ 359882.718500003218651, 258709.136199999600649 ], [ 359890.552199997007847, 258703.012099999934435 ], [ 359899.271799996495247, 258694.316599998623133 ], [ 359901.528099998831749, 258691.504399999976158 ], [ 359877.331799998879433, 258670.663100000470877 ], [ 359876.743000000715256, 258671.395399998873472 ], [ 359875.86089999973774, 258673.745900001376867 ], [ 359873.200699999928474, 258682.51240000128746 ], [ 359870.141000002622604, 258687.417199999094009 ], [ 359864.712899997830391, 258691.873799998313189 ], [ 359855.387299999594688, 258698.227299999445677 ], [ 359840.426092945330311, 258697.929296007088851 ], [ 359825.49889999628067, 258696.877900000661612 ], [ 359821.930100001394749, 258696.3141999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020700", "MAP": "D9-9029-T015", "PARCEL_NAM": "1A-5", "ACRE": ".512", "LONGITUDE": -64.921078, "LATITUDE": 18.35746753, "OBJECTID_1": 4710, "PARCEL_NO_": "102902020700", "Tax_Legal_": "CANAAN&SCHERPENJEWEL 1A(PORTION) GT.NORTHSIDE QTR.", "Name": "McCONNELL, F. W. , W. S. , M. S. & C. W", "Address": "6000 Estate Canaan", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 430600, "Improved_V": 496600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.00036925299997, "SHAPE_Area": 4183.87905503 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359855.387299999594688, 258698.227299999445677 ], [ 359864.712899997830391, 258691.873799998313189 ], [ 359870.141000002622604, 258687.417199999094009 ], [ 359873.200699999928474, 258682.51240000128746 ], [ 359875.86089999973774, 258673.745900001376867 ], [ 359876.743000000715256, 258671.395399998873472 ], [ 359877.331799998879433, 258670.663100000470877 ], [ 359841.109399996697903, 258639.463199999183416 ], [ 359817.56139999628067, 258639.463199999183416 ], [ 359765.644599996507168, 258686.227400001138449 ], [ 359770.867200002074242, 258691.972199998795986 ], [ 359773.893399998545647, 258695.300999999046326 ], [ 359774.050812235858757, 258694.007547722896561 ], [ 359774.415922168875113, 258692.756751120759873 ], [ 359774.979061651276425, 258691.581731407524785 ], [ 359775.725318695069291, 258690.513603218772914 ], [ 359776.634932341752574, 258689.58065069213626 ], [ 359777.683815933938604, 258688.807578500709496 ], [ 359778.844194932724349, 258688.214857670798665 ], [ 359780.085342390171718, 258687.818183507333742 ], [ 359781.374392601661384, 258687.628059980430407 ], [ 359782.6772113929037, 258687.649521579500288 ], [ 359783.959299996495247, 258687.881999999284744 ], [ 359797.678178911912255, 258691.451102168182842 ], [ 359811.532568838389125, 258694.45143694174476 ], [ 359825.49889999628067, 258696.877900000661612 ], [ 359840.426092945330311, 258697.929296007088851 ], [ 359855.387299999594688, 258698.227299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102902020700", "MAP": "D9-9029-T015", "PARCEL_NAM": "1A-D-1", "ACRE": ".247", "LONGITUDE": -64.921323, "LATITUDE": 18.35775637, "OBJECTID_1": 4710, "PARCEL_NO_": "102902020700", "Tax_Legal_": "CANAAN&SCHERPENJEWEL 1A(PORTION) GT.NORTHSIDE QTR.", "Name": "McCONNELL, F. W. , W. S. , M. S. & C. W", "Address": "6000 Estate Canaan", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 430600, "Improved_V": 496600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.01852843200001, "SHAPE_Area": 1046.9447870500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359823.341099999845028, 258718.033500000834465 ], [ 359821.930100001394749, 258696.3141999989748 ], [ 359809.170057143259328, 258693.98198191987467 ], [ 359796.507110997568816, 258691.169913317920873 ], [ 359783.959299996495247, 258687.881999999284744 ], [ 359782.677211392612662, 258687.649521577346604 ], [ 359781.374392600671854, 258687.628059976646909 ], [ 359780.085342388309073, 258687.818183502444299 ], [ 359778.844194929930381, 258688.214857665356249 ], [ 359777.683815930329729, 258688.807578495208872 ], [ 359776.634932337561622, 258689.580650687043089 ], [ 359775.725318690703716, 258690.513603214465547 ], [ 359774.979061647143681, 258691.58173140429426 ], [ 359774.415922165557276, 258692.756751118693501 ], [ 359774.050812233937904, 258694.007547721965238 ], [ 359773.893399998545647, 258695.300999999046326 ], [ 359789.188799999654293, 258712.125700000673532 ], [ 359810.146999999880791, 258720.94539999961853 ], [ 359823.341099999845028, 258718.033500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302010500", "MAP": "A9-810-T015", "PARCEL_NAM": "120-B", "ACRE": "8.11", "LONGITUDE": -65.02280235000001, "LATITUDE": 18.35860331, "OBJECTID_1": 1185, "PARCEL_NO_": "102302010500", "Tax_Legal_": "BORDEAUX 119 & 120 REM. WEST END QUARTER", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1069400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 713.02839953, "SHAPE_Area": 25754.959511500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349222.581900000572205, 258652.957800000905991 ], [ 349083.455899998545647, 258619.307599999010563 ], [ 349078.149499997496605, 258625.181099999696016 ], [ 349076.529700003564358, 258626.012200001627207 ], [ 349068.385600000619888, 258635.44480000063777 ], [ 349055.373199999332428, 258648.426100000739098 ], [ 349051.291199997067451, 258654.303300000727177 ], [ 349047.225500002503395, 258658.280799999833107 ], [ 349046.401199996471405, 258660.385000001639128 ], [ 349033.372599996626377, 258675.265999998897314 ], [ 349023.606899999082088, 258685.740699999034405 ], [ 349021.168200001120567, 258688.04280000180006 ], [ 349008.961999997496605, 258701.030699998140335 ], [ 348986.20719999819994, 258721.74269999936223 ], [ 348983.777500003576279, 258722.989399999380112 ], [ 348973.214500002563, 258732.402100000530481 ], [ 348943.192199997603893, 258754.321199998259544 ], [ 348961.25, 258811.675400000065565 ], [ 349052.580899998545647, 258786.88060000166297 ], [ 349172.542700000107288, 258714.190799999982119 ], [ 349222.581900000572205, 258652.957800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102302010500", "MAP": "A9-810-T015", "PARCEL_NAM": "120 REM", "ACRE": "8.59", "LONGITUDE": -65.02047796, "LATITUDE": 18.3542981, "OBJECTID_1": 1185, "PARCEL_NO_": "102302010500", "Tax_Legal_": "BORDEAUX 119 & 120 REM. WEST END QUARTER", "Name": "VI HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 1069400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 885.65320947600003, "SHAPE_Area": 35283.67326860001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349206.543799996376038, 258225.679299999028444 ], [ 349410.449799999594688, 258418.857900001108646 ], [ 349383.635499998927116, 258356.214999999850988 ], [ 349451.676100000739098, 258225.682799998670816 ], [ 349431.592000000178814, 258216.863600000739098 ], [ 349412.339400000870228, 258205.095899999141693 ], [ 349402.694200001657009, 258201.428300000727177 ], [ 349389.030100002884865, 258196.250300001353025 ], [ 349385.817400000989437, 258194.746300000697374 ], [ 349382.610100001096725, 258192.609099999070168 ], [ 349356.955600000917912, 258175.089499998837709 ], [ 349342.575000002980232, 258159.350900001823902 ], [ 349328.959399998188019, 258148.473700001835823 ], [ 349334.662900000810623, 258141.554200001060963 ], [ 349318.6283999979496, 258130.657200001180172 ], [ 349253.624600000679493, 258094.028200000524521 ], [ 349206.543799996376038, 258225.679299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603040700", "MAP": "D9-606-T66", "PARCEL_NAM": "26B", "ACRE": "0.87", "LONGITUDE": -64.87714758, "LATITUDE": 18.31973778, "OBJECTID_1": 38719, "PARCEL_NO_": "107603040700", "Tax_Legal_": "26B NADIR RED HOOK QTR", "Name": "ROBERTS, VIOLA ALTHEA", "Address": "8145 Aouthgate Blvd", "City": "Pompano Beach", "State": "Florida", "Zip": 33068, "Country": "United States", "Land_Value": 102200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.60682869300001, "SHAPE_Area": 3406.2825251200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364514.007799997925758, 254591.792300000786781 ], [ 364534.68639999628067, 254547.75730000063777 ], [ 364519.783699996769428, 254498.66160000115633 ], [ 364481.543099999427795, 254499.635499998927116 ], [ 364468.250799998641014, 254510.735700000077486 ], [ 364502.210900001227856, 254570.89469999819994 ], [ 364514.007799997925758, 254591.792300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107602022600", "MAP": "D9-9018-T015", "PARCEL_NAM": "1-27 EASEMENT \"A\"", "ACRE": ".003", "LONGITUDE": -64.87069648000001, "LATITUDE": 18.3241952, "OBJECTID_1": 38395, "PARCEL_NO_": "107602022600", "Tax_Legal_": "1-27 FRYDENHOJ RED HOOK QTR", "Name": "VIL, LEON & MYRLENE SIMILIEN", "Address": "PO Box 503292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 21600, "Improved_V": 32200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.328206567499997, "SHAPE_Area": 27.6464527774 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365185.431999996304512, 255027.133600000292063 ], [ 365182.959899999201298, 255026.546000000089407 ], [ 365181.160199999809265, 255048.484999999403954 ], [ 365185.431999996304512, 255027.133600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102804021400", "MAP": "D9-9020-T015", "PARCEL_NAM": "10-M-2 EASEMENT\"A\"", "ACRE": ".002", "LONGITUDE": -64.94019008, "LATITUDE": 18.35441213, "OBJECTID_1": 4518, "PARCEL_NO_": "102804021400", "Tax_Legal_": "LERKENLUND 10-M-2 GT. NORTHSIDE", "Name": "JOHN, WAYNE & KAREN", "Address": "PO Box 302042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 79000, "Improved_V": 425300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.8470994025, "SHAPE_Area": 44.364561289299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357816.049599997699261, 258320.440200001001358 ], [ 357806.533699996769428, 258310.3293999992311 ], [ 357807.571800000965595, 258320.756700001657009 ], [ 357816.049599997699261, 258320.440200001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033400", "MAP": "D9-9026-T015", "PARCEL_NAM": "26-1", "ACRE": ".508", "LONGITUDE": -64.96657468, "LATITUDE": 18.36191504, "OBJECTID_1": 470, "PARCEL_NO_": "101103033400", "Tax_Legal_": "NELTJEBERG 26/EASTERN PT LT. NORTHSIDE", "Name": "JACOBS, C., C., C., & C. (TRUSTEE)", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 100600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.63089773600001, "SHAPE_Area": 2305.52387318 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355068.126299999654293, 259132.765599999576807 ], [ 355001.475699998438358, 259097.329999998211861 ], [ 354996.065099999308586, 259101.291999999433756 ], [ 354989.555299997329712, 259108.204799998551607 ], [ 354987.102200001478195, 259112.195500001311302 ], [ 354983.815800003707409, 259119.34569999948144 ], [ 354981.161799997091293, 259129.222899999469519 ], [ 354981.234133143036161, 259130.77291135766427 ], [ 354981.571137634804472, 259132.287571473716525 ], [ 354982.162833839771338, 259133.72202708318946 ], [ 354982.991700001060963, 259135.0337999984622 ], [ 354997.438000001013279, 259147.098799999803305 ], [ 355068.126299999654293, 259132.765599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103033400", "MAP": "D9-9026-T015", "PARCEL_NAM": "26-2", "ACRE": ".074", "LONGITUDE": -64.96680992, "LATITUDE": 18.3621181, "OBJECTID_1": 470, "PARCEL_NO_": "101103033400", "Tax_Legal_": "NELTJEBERG 26/EASTERN PT LT. NORTHSIDE", "Name": "JACOBS, C., C., C., & C. (TRUSTEE)", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 100600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.473509438099995, "SHAPE_Area": 302.70512193399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354997.438000001013279, 259147.098799999803305 ], [ 354982.991700001060963, 259135.0337999984622 ], [ 354982.1628338394803, 259133.722027083305875 ], [ 354981.571137634455226, 259132.287571473832941 ], [ 354981.234133142745122, 259130.772911357722478 ], [ 354981.161799997091293, 259129.222899999469519 ], [ 354977.986400000751019, 259141.040699999779463 ], [ 354977.966600000858307, 259143.362500000745058 ], [ 354995.951499998569489, 259161.053899999707937 ], [ 355004.396499998867512, 259152.088899999856949 ], [ 355001.221500001847744, 259149.442999999970198 ], [ 355000.771830753947143, 259149.587328222609358 ], [ 355000.30402584298281, 259149.652071050077211 ], [ 354999.83206015318865, 259149.635294399369741 ], [ 354999.370032864797395, 259149.537499444733839 ], [ 354998.931746265094262, 259149.361607645754702 ], [ 354998.530293428455479, 259149.112873473815853 ], [ 354998.177667082287371, 259148.798727443441749 ], [ 354997.884401345043443, 259148.428554138430627 ], [ 354997.65925703686662, 259148.013411862950306 ], [ 354997.508959964907262, 259147.565702293562936 ], [ 354997.438000001013279, 259147.098799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95556744, "LATITUDE": 18.31424838, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 746.61242230100004, "SHAPE_Area": 17318.689378800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356279.945500001311302, 253882.659800000488758 ], [ 356300.825000002980232, 253862.153099998831749 ], [ 356309.773299999535084, 253851.340500000864267 ], [ 356326.924300000071526, 253839.409400001168251 ], [ 356335.021600000560284, 253832.539000000804663 ], [ 356350.695500001311302, 253824.815600000321865 ], [ 356350.571999996900558, 253823.217799998819828 ], [ 356347.666900001466274, 253785.619300000369549 ], [ 356348.665600001811981, 253763.040500000119209 ], [ 356345.193899996578693, 253760.365699999034405 ], [ 356341.092500001192093, 253761.111400000751019 ], [ 356330.652800001204014, 253764.839800000190735 ], [ 356316.111699998378754, 253767.076900001615286 ], [ 356305.671999998390675, 253770.05970000103116 ], [ 356294.859399996697903, 253777.143800001591444 ], [ 356287.7753000035882, 253788.329300001263618 ], [ 356279.199799999594688, 253801.378899998962879 ], [ 356268.014399997889996, 253824.868299998342991 ], [ 356260.930299997329712, 253837.1722999997437 ], [ 356250.863399997353554, 253848.357799999415874 ], [ 356238.559399999678135, 253858.424600001424551 ], [ 356225.509700000286102, 253864.017400000244379 ], [ 356217.307099997997284, 253865.881599999964237 ], [ 356207.612999998033047, 253865.135899998247623 ], [ 356196.054700002074242, 253864.017400000244379 ], [ 356187.47919999808073, 253861.780299998819828 ], [ 356178.157999999821186, 253860.661699999123812 ], [ 356164.735500000417233, 253859.543200001120567 ], [ 356149.44879999756813, 253856.933299999684095 ], [ 356117.114600002765656, 253845.215700000524521 ], [ 356104.794168803957291, 253840.344544055784354 ], [ 356092.624499998986721, 253835.1081000007689 ], [ 356091.158699996769428, 253838.37950000166893 ], [ 356071.060999996960163, 253882.780499998480082 ], [ 356077.862000003457069, 253885.26969999819994 ], [ 356087.928900003433228, 253893.099500000476837 ], [ 356103.215599998831749, 253904.28489999845624 ], [ 356117.010999999940395, 253913.978999998420477 ], [ 356130.806400001049042, 253918.080299999564886 ], [ 356139.754699997603893, 253918.080299999564886 ], [ 356151.685900002717972, 253918.8260000012815 ], [ 356168.464000001549721, 253921.808800000697374 ], [ 356185.242200002074242, 253923.673000000417233 ], [ 356195.309000000357628, 253918.080299999564886 ], [ 356229.611000001430511, 253909.504799999296665 ], [ 356248.2533999979496, 253904.657800000160933 ], [ 356264.658699996769428, 253895.336599998176098 ], [ 356279.945500001311302, 253882.659800000488758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010200", "MAP": "A9-599-T002", "PARCEL_NAM": "3J-1B", "ACRE": "0.23", "LONGITUDE": -64.87945849, "LATITUDE": 18.32519662, "OBJECTID_1": 38302, "PARCEL_NO_": "107602010200", "Tax_Legal_": "PAR 3R-1-2, 3R-1-4 THRU 3R-1-6,3R-1 REM & 3J-1 REM MARIENDAL 4 RED HOOK QTR No.4 RED HOOK QTR", "Name": "LEON MONSANTO SR SIBILINGS FAMILY TRUST", "Address": "PO Box 304352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.217492158, "SHAPE_Area": 926.38103901 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364276.077100001275539, 255130.768399998545647 ], [ 364267.329700000584126, 255113.897799998521805 ], [ 364265.364399999380112, 255115.083399999886751 ], [ 364259.718400001525879, 255119.685100000351667 ], [ 364250.7483000010252, 255126.996199999004602 ], [ 364247.488899998366833, 255130.98030000180006 ], [ 364243.960199996829033, 255134.214299999177456 ], [ 364232.439499996602535, 255144.772799998521805 ], [ 364244.593400001525879, 255158.558800000697374 ], [ 364258.970799997448921, 255148.300700001418591 ], [ 364266.598600000143051, 255142.858300000429153 ], [ 364277.678000003099442, 255134.953299999237061 ], [ 364276.077100001275539, 255130.768399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": null, "PARCEL_NAM": "10 REM (WESTERN PORTION)", "ACRE": "18.61", "LONGITUDE": -64.87834379, "LATITUDE": 18.32568862, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1411.4032602699999, "SHAPE_Area": 5684.0530227199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364261.05120000243187, 255264.525699999183416 ], [ 364263.614399999380112, 255262.839400000870228 ], [ 364265.118400000035763, 255263.378699999302626 ], [ 364266.860500000417233, 255265.499600000679493 ], [ 364272.923500001430511, 255262.128600001335144 ], [ 364272.180399999022484, 255260.806000001728535 ], [ 364271.949100002646446, 255258.434599999338388 ], [ 364360.057199999690056, 255216.269900001585484 ], [ 364365.107900001108646, 255213.680100001394749 ], [ 364369.640100002288818, 255212.928800001740456 ], [ 364420.973499998450279, 255208.099399998784065 ], [ 364439.335799999535084, 255207.202300000935793 ], [ 364447.641500003635883, 255206.219799999147654 ], [ 364453.670999996364117, 255206.797600001096725 ], [ 364457.17960000038147, 255208.143699999898672 ], [ 364460.932899996638298, 255210.281800001859665 ], [ 364463.934299997985363, 255212.150100000202656 ], [ 364465.427100002765656, 255214.005699999630451 ], [ 364473.537299998104572, 255206.439800001680851 ], [ 364471.53490000218153, 255205.369699999690056 ], [ 364471.294699996709824, 255204.051399998366833 ], [ 364472.562899999320507, 255202.745799999684095 ], [ 364476.08049999922514, 255203.039000000804663 ], [ 364489.127300001680851, 255206.309000000357628 ], [ 364537.266999997198582, 255222.250999998301268 ], [ 364552.309399999678135, 255227.380899999290705 ], [ 364552.295999996364117, 255228.960400000214577 ], [ 364551.279200002551079, 255230.268100000917912 ], [ 364549.755000002682209, 255232.098099999129772 ], [ 364556.770000003278255, 255235.053599998354912 ], [ 364558.552299998700619, 255232.436099998652935 ], [ 364559.809399999678135, 255232.446800000965595 ], [ 364561.0641999989748, 255232.72069999948144 ], [ 364562.314599998295307, 255233.521200001239777 ], [ 364566.4087999984622, 255225.131400000303984 ], [ 364491.966700002551079, 255197.645300000905991 ], [ 364486.199799999594688, 255195.753499999642372 ], [ 364481.42960000038147, 255194.923099998384714 ], [ 364473.887100003659725, 255194.859000001102686 ], [ 364465.087600000202656, 255194.784299999475479 ], [ 364459.053599998354912, 255194.732999999076128 ], [ 364458.110299997031689, 255194.696699999272823 ], [ 364436.214699998497963, 255185.400199998170137 ], [ 364426.968099996447563, 255179.477000001817942 ], [ 364399.367600001394749, 255159.499699998646975 ], [ 364386.177500002086163, 255150.028099998831749 ], [ 364379.7466000020504, 255145.410100001841784 ], [ 364359.677500002086163, 255130.569099999964237 ], [ 364355.560699999332428, 255126.5636 ], [ 364353.437600001692772, 255124.497800000011921 ], [ 364352.931599996984005, 255120.956199999898672 ], [ 364361.364000000059605, 255115.728100001811981 ], [ 364366.502300001680851, 255108.67790000140667 ], [ 364368.615900002419949, 255105.777899999171495 ], [ 364369.796400003135204, 255096.839499998837709 ], [ 364367.337499998509884, 255089.746399998664856 ], [ 364365.41160000115633, 255084.190900001674891 ], [ 364361.807499997317791, 255071.510099999606609 ], [ 364356.726599998772144, 255073.628400001674891 ], [ 364362.54450000077486, 255093.297899998724461 ], [ 364362.375900000333786, 255103.754099998623133 ], [ 364356.30460000038147, 255109.825399998575449 ], [ 364346.016999997198582, 255118.257800001651049 ], [ 364314.084799997508526, 255144.266600001603365 ], [ 364304.136399999260902, 255154.003299999982119 ], [ 364289.108000002801418, 255166.91499999910593 ], [ 364264.978000000119209, 255185.96510000154376 ], [ 364240.001299999654293, 255205.226799998432398 ], [ 364228.124300003051758, 255214.728300001472235 ], [ 364217.354699999094009, 255226.150199998170137 ], [ 364222.321400001645088, 255232.666700001806021 ], [ 364233.500100001692772, 255222.858500000089407 ], [ 364244.933499999344349, 255212.396800000220537 ], [ 364260.633799999952316, 255199.602400001138449 ], [ 364272.94200000166893, 255189.572200000286102 ], [ 364275.261799998581409, 255187.658900000154972 ], [ 364293.512599997222424, 255172.606800001114607 ], [ 364303.739500001072884, 255164.172200001776218 ], [ 364310.286100000143051, 255157.850299999117851 ], [ 364338.602700002491474, 255130.506000000983477 ], [ 364340.728299997746944, 255128.453400000929832 ], [ 364343.585900001227856, 255127.818399999290705 ], [ 364357.555900000035763, 255136.708399999886751 ], [ 364376.764700002968311, 255154.488400001078844 ], [ 364403.752199999988079, 255174.808400001376867 ], [ 364419.627300001680851, 255187.190999999642372 ], [ 364431.374799996614456, 255191.3766999989748 ], [ 364445.30969999730587, 255199.367600001394749 ], [ 364421.545699998736382, 255199.942999999970198 ], [ 364419.278499998152256, 255200.450199998915195 ], [ 364416.007799997925758, 255200.685699999332428 ], [ 364409.462099999189377, 255201.683200001716614 ], [ 364399.405500002205372, 255201.597800001502037 ], [ 364385.056900002062321, 255203.582100000232458 ], [ 364377.256300002336502, 255204.305599998682737 ], [ 364371.2179000005126, 255204.780900001525879 ], [ 364364.171499997377396, 255205.510899998247623 ], [ 364255.817699998617172, 255256.610800001770258 ], [ 364244.799099996685982, 255262.157999999821186 ], [ 364250.458499997854233, 255269.583200000226498 ], [ 364261.05120000243187, 255264.525699999183416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103103042200", "MAP": "C9-242B-T79", "PARCEL_NAM": "260-39", "ACRE": "0.25", "LONGITUDE": -64.89242952, "LATITUDE": 18.35028455, "OBJECTID_1": 6641, "PARCEL_NO_": "103103042200", "Tax_Legal_": "ANNAS RETREAT 260-39 NEW QTR", "Name": "LABADIE, R & J. #281-BLDG. #E", "Address": "260-39 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052186, "Country": "United States", "Land_Value": 41100, "Improved_V": 176200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.864121178, "SHAPE_Area": 1047.96462215 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362874.495999999344349, 257900.92339999973774 ], [ 362870.976199999451637, 257880.817899998277426 ], [ 362853.219400003552437, 257882.783500000834465 ], [ 362844.32660000026226, 257885.454900000244379 ], [ 362849.268100000917912, 257906.034299999475479 ], [ 362853.671400003135204, 257924.372600000351667 ], [ 362877.896799996495247, 257920.348999999463558 ], [ 362874.495999999344349, 257900.92339999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103031200", "MAP": "D9-4400-T88", "PARCEL_NAM": "10", "ACRE": "4.92", "LONGITUDE": -64.89318763, "LATITUDE": 18.35118548, "OBJECTID_1": 6593, "PARCEL_NO_": "103103031200", "Tax_Legal_": "MANDAHL 1O GREAT NORTHSIDE QTR", "Name": "COMISSIONG, SIDNEY J. & THELMA", "Address": "PO Box 306813", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 245700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 598.124920965, "SHAPE_Area": 19510.530043800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362845.191100001335144, 257973.276900000870228 ], [ 362840.750699996948242, 257926.588899999856949 ], [ 362824.602799996733665, 257928.989900000393391 ], [ 362801.1891999989748, 257932.386799998581409 ], [ 362788.277400001883507, 257933.547699999064207 ], [ 362781.01519999653101, 257934.121500000357628 ], [ 362753.577200002968311, 257936.641199998557568 ], [ 362729.368100002408028, 257938.765099998563528 ], [ 362709.194099999964237, 257940.499800000339746 ], [ 362671.281199999153614, 257942.089400000870228 ], [ 362663.230599999427795, 257940.545800000429153 ], [ 362726.188299998641014, 258021.310699999332428 ], [ 362750.174699999392033, 258052.081500001251698 ], [ 362785.273000001907349, 258096.909499999135733 ], [ 362792.564000003039837, 258092.958399999886751 ], [ 362829.738899998366833, 258083.341299999505281 ], [ 362854.001999996602535, 258074.885000001639128 ], [ 362850.304899998009205, 258035.591400001198053 ], [ 362847.395300000905991, 257998.638900000602007 ], [ 362847.394299998879433, 257998.626200001686811 ], [ 362845.166000001132488, 257976.23200000077486 ], [ 362845.191100001335144, 257973.276900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101010600", "MAP": "A9-499C-T97", "PARCEL_NAM": "37-18", "ACRE": null, "LONGITUDE": -64.89418676, "LATITUDE": 18.36211926, "OBJECTID_1": 6340, "PARCEL_NO_": "103101010600", "Tax_Legal_": "37 REM MANDAHL GREAT NORTHSIDE QTR", "Name": "MANDAHL BAY HOLDINGS INC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 4506600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.88593819600001, "SHAPE_Area": 3690.4356624699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362703.401000000536442, 259188.4375 ], [ 362657.599500000476837, 259169.486400000751019 ], [ 362629.832400001585484, 259210.633499998599291 ], [ 362641.714900001883507, 259235.639800000935793 ], [ 362655.213600002229214, 259260.237100001424551 ], [ 362694.269100002944469, 259219.182399999350309 ], [ 362691.877099998295307, 259215.996399998664856 ], [ 362691.927400000393391, 259210.086199998855591 ], [ 362694.376999996602535, 259206.517700001597404 ], [ 362697.616599999368191, 259204.855500001460314 ], [ 362703.401000000536442, 259188.4375 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603014300", "MAP": "D9-8488-T010", "PARCEL_NAM": null, "ACRE": ".13", "LONGITUDE": -64.89132061, "LATITUDE": 18.33457426, "OBJECTID_1": 21538, "PARCEL_NO_": "105603014300", "Tax_Legal_": "23-1 ESTATE CHARLOTTE AMALIE NO.3 NEW QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025812, "Country": "United States", "Land_Value": 28300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.82486386199997, "SHAPE_Area": 352.85717540600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362944.678300000727177, 256166.789099998772144 ], [ 362957.204899996519089, 256166.6587999984622 ], [ 362980.097900003194809, 256159.783599998801947 ], [ 362992.586300000548363, 256158.725299999117851 ], [ 363011.530500002205372, 256161.265299998223782 ], [ 363021.161300003528595, 256169.202799998223782 ], [ 363040.317199997603893, 256195.449499998241663 ], [ 363049.750600002706051, 256205.142799999564886 ], [ 363021.585699997842312, 256167.770100001245737 ], [ 363018.874399997293949, 256163.275699999183416 ], [ 363016.394100002944469, 256161.019099999219179 ], [ 363008.676299996674061, 256157.476199999451637 ], [ 363001.947599999606609, 256155.183800000697374 ], [ 362997.457599997520447, 256154.152300000190735 ], [ 362990.71000000089407, 256154.095499999821186 ], [ 362986.459499999880791, 256154.308100000023842 ], [ 362954.89580000191927, 256162.985399998724461 ], [ 362944.678300000727177, 256166.789099998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603020600", "MAP": "D3-69-T44", "PARCEL_NAM": "9", "ACRE": "3.46", "LONGITUDE": -64.8925714, "LATITUDE": 18.33373081, "OBJECTID_1": 21553, "PARCEL_NO_": "105603020600", "Tax_Legal_": "9 ESTATE CHARLOTTE AMALIE No.3 NEW QTR.", "Name": "HARTHMAN LEASING II, LLLP", "Address": "4608 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021814, "Country": "United States", "Land_Value": 132500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 577.47205381399999, "SHAPE_Area": 14779.110327099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362927.188799999654293, 256071.121899999678135 ], [ 362879.83330000191927, 256073.517299998551607 ], [ 362885.599299997091293, 255969.991300001740456 ], [ 362877.075699999928474, 255969.341299999505281 ], [ 362820.368400000035763, 255965.016600001603365 ], [ 362819.243400000035763, 256097.076099999248981 ], [ 362819.434500001370907, 256127.482200000435114 ], [ 362819.585799999535084, 256151.541000001132488 ], [ 362847.81870000064373, 256156.596599999815226 ], [ 362897.560500003397465, 256144.690400000661612 ], [ 362927.097599998116493, 256134.418099999427795 ], [ 362926.503200002014637, 256119.649500001221895 ], [ 362926.381800003349781, 256116.631400000303984 ], [ 362926.938100002706051, 256085.259399998933077 ], [ 362927.188799999654293, 256071.121899999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105603020600", "MAP": "D9-7539-T005", "PARCEL_NAM": "9-2", "ACRE": "0.48", "LONGITUDE": -64.89221664, "LATITUDE": 18.33339437, "OBJECTID_1": 21553, "PARCEL_NO_": "105603020600", "Tax_Legal_": "9 ESTATE CHARLOTTE AMALIE No.3 NEW QTR.", "Name": "HARTHMAN LEASING II, LLLP", "Address": "4608 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021814, "Country": "United States", "Land_Value": 132500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.94586575699998, "SHAPE_Area": 3023.274189 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362927.188799999654293, 256071.121899999678135 ], [ 362927.872900001704693, 256032.550000000745058 ], [ 362913.091099999845028, 256033.021099999547005 ], [ 362902.501400001347065, 256033.358500000089407 ], [ 362902.844700001180172, 256010.00899999961257 ], [ 362903.413199998438358, 255971.349800001829863 ], [ 362885.599299997091293, 255969.991300001740456 ], [ 362879.83330000191927, 256073.517299998551607 ], [ 362927.188799999654293, 256071.121899999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9526126, "LATITUDE": 18.35530495, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.43221667, "SHAPE_Area": 567.84049378300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356535.982600003480911, 258393.826799999922514 ], [ 356536.663500003516674, 258387.739199999719858 ], [ 356536.681500002741814, 258385.628400001674891 ], [ 356505.942699998617172, 258401.145100001245737 ], [ 356459.640500001609325, 258412.059099998325109 ], [ 356454.825099997222424, 258413.309300001710653 ], [ 356453.475199997425079, 258418.499699998646975 ], [ 356459.460727417899761, 258417.826179996947758 ], [ 356465.401900000870228, 258416.834899999201298 ], [ 356480.951452698558569, 258414.364165242237505 ], [ 356496.358199998736382, 258411.119899999350309 ], [ 356502.030504279711749, 258409.332105008739745 ], [ 356507.545157438260503, 258407.105033540428849 ], [ 356512.868199996650219, 258404.452399998903275 ], [ 356520.382878297241405, 258400.506337835948216 ], [ 356528.094802095554769, 258396.961196388234384 ], [ 356535.982600003480911, 258393.826799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704013200", "MAP": "D9-9013-T015", "PARCEL_NAM": "11F-2", "ACRE": ".505", "LONGITUDE": -64.95366432, "LATITUDE": 18.355754, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 350.90296779699997, "SHAPE_Area": 2360.7010431600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356425.552299998700619, 258466.159000001847744 ], [ 356430.211400002241135, 258465.716299999505281 ], [ 356434.440800003707409, 258465.274599999189377 ], [ 356431.788199998438358, 258461.204100001603365 ], [ 356430.676561679458246, 258459.611043229524512 ], [ 356429.758863245428074, 258457.898910286283353 ], [ 356429.047700002789497, 258456.0912000015378 ], [ 356426.858308324066456, 258445.228621648129774 ], [ 356424.077393482672051, 258434.502226305252407 ], [ 356420.713299997150898, 258423.944200001657009 ], [ 356420.669810228457209, 258423.593292040983215 ], [ 356420.56705461681122, 258423.254959303681972 ], [ 356420.408049870922696, 258422.939134593383642 ], [ 356420.197464066732209, 258422.655089920968749 ], [ 356419.941479601664469, 258422.411164296034258 ], [ 356419.647611691150814, 258422.214518909575418 ], [ 356419.32448773633223, 258422.070926894870354 ], [ 356418.981594040058553, 258421.984603839489864 ], [ 356418.628997306921519, 258421.958084023674019 ], [ 356418.27704910421744, 258421.992146018572384 ], [ 356417.936081959749572, 258422.085789829056012 ], [ 356417.616106018249411, 258422.23626625147881 ], [ 356417.32651516282931, 258422.439157585205976 ], [ 356417.075811228423845, 258422.68850732780993 ], [ 356416.871354404254816, 258422.976995046599768 ], [ 356416.719147152500227, 258423.296151292626746 ], [ 356416.623657987744082, 258423.636606247455347 ], [ 356416.587690289597958, 258423.988364803197328 ], [ 356416.612300001084805, 258424.341099999845028 ], [ 356413.37314945802791, 258430.175065740913851 ], [ 356410.459776137024164, 258436.178357204858912 ], [ 356407.880999997258186, 258442.332800000905991 ], [ 356405.85891620273469, 258447.572858261672081 ], [ 356403.340506556152832, 258452.593281182140345 ], [ 356400.349287394899875, 258457.347189193184022 ], [ 356396.913190044171643, 258461.79019138138392 ], [ 356393.064300000667572, 258465.880800001323223 ], [ 356391.787981654226314, 258465.935989871941274 ], [ 356390.518986980081536, 258465.788724939629901 ], [ 356389.289228019712027, 258465.442708549031522 ], [ 356388.129630134382751, 258464.9066421467287 ], [ 356387.069354310107883, 258464.194006461650133 ], [ 356386.135063831228763, 258463.322722498502117 ], [ 356385.350253766111564, 258462.314700869290391 ], [ 356384.734660124522634, 258461.195290796225891 ], [ 356384.303763546515256, 258459.992642642231658 ], [ 356384.068400003015995, 258458.736999999731779 ], [ 356383.01916896487819, 258447.431418105697958 ], [ 356382.445565057860222, 258436.091751166532049 ], [ 356382.348600000143051, 258424.738000001758337 ], [ 356382.549448813428171, 258424.246534787933342 ], [ 356382.664089242054615, 258423.728137378318934 ], [ 356382.689203726069536, 258423.197809588280506 ], [ 356382.624065481533762, 258422.670898484502686 ], [ 356382.470559533161577, 258422.162652258732123 ], [ 356382.233128163788933, 258421.687778962979792 ], [ 356381.918642359902151, 258421.260020875604823 ], [ 356381.53620297316229, 258420.891756815894041 ], [ 356381.096877352683805, 258420.593643915548455 ], [ 356380.613379068556242, 258420.37430921359919 ], [ 356380.0996999964118, 258420.240100000053644 ], [ 356375.847370671166573, 258423.568829896947136 ], [ 356371.897600002586842, 258427.251499999314547 ], [ 356367.015185981232207, 258435.855062643182464 ], [ 356361.76429335353896, 258444.238819763675565 ], [ 356356.154799997806549, 258452.386999998241663 ], [ 356354.47574041923508, 258454.590643334842753 ], [ 356352.470394845702685, 258456.502154295885703 ], [ 356350.188876471947879, 258458.073764595377725 ], [ 356347.688199996948242, 258459.266199998557568 ], [ 356327.712099999189377, 258470.378699999302626 ], [ 356319.800499998033047, 258476.208000000566244 ], [ 356425.552299998700619, 258466.159000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704013200", "MAP": "D9-9013-T015", "PARCEL_NAM": "11F ROW", "ACRE": ".69", "LONGITUDE": -64.95352928, "LATITUDE": 18.35562102, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 574.32264550800005, "SHAPE_Area": 2169.1818385500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356380.0996999964118, 258420.240100000053644 ], [ 356380.613379068614449, 258420.374309213570086 ], [ 356381.096877352683805, 258420.593643915519351 ], [ 356381.536202973220497, 258420.891756815864937 ], [ 356381.918642360018566, 258421.260020875546616 ], [ 356382.233128163905349, 258421.687778962921584 ], [ 356382.470559533277992, 258422.162652258703019 ], [ 356382.624065481650177, 258422.670898484473582 ], [ 356382.689203726185951, 258423.197809588280506 ], [ 356382.66408924217103, 258423.728137378318934 ], [ 356382.549448813486379, 258424.246534787962446 ], [ 356382.348600000143051, 258424.738000001758337 ], [ 356382.445565057860222, 258436.091751166532049 ], [ 356383.01916896487819, 258447.431418105697958 ], [ 356384.068400003015995, 258458.736999999731779 ], [ 356384.303763546515256, 258459.992642642231658 ], [ 356384.734660124522634, 258461.195290796225891 ], [ 356385.350253766111564, 258462.314700869290391 ], [ 356386.135063831228763, 258463.322722498502117 ], [ 356387.069354310107883, 258464.194006461650133 ], [ 356388.129630134382751, 258464.9066421467287 ], [ 356389.289228019712027, 258465.442708549031522 ], [ 356390.518986980081536, 258465.788724939629901 ], [ 356391.787981654226314, 258465.935989871941274 ], [ 356393.064300000667572, 258465.880800001323223 ], [ 356396.913190044171643, 258461.79019138138392 ], [ 356400.349287394899875, 258457.347189193184022 ], [ 356403.340506556152832, 258452.593281182140345 ], [ 356405.85891620273469, 258447.572858261672081 ], [ 356407.880999997258186, 258442.332800000905991 ], [ 356410.459776137024164, 258436.178357204858912 ], [ 356413.37314945802791, 258430.175065740913851 ], [ 356416.612300001084805, 258424.341099999845028 ], [ 356416.587690289597958, 258423.988364803197328 ], [ 356416.623657987744082, 258423.636606247426243 ], [ 356416.719147152500227, 258423.296151292597642 ], [ 356416.871354404254816, 258422.976995046570664 ], [ 356417.075811228423845, 258422.688507327751722 ], [ 356417.326515162771102, 258422.439157585147768 ], [ 356417.616106018249411, 258422.236266251420602 ], [ 356417.936081959749572, 258422.085789828997804 ], [ 356418.27704910421744, 258421.992146018514177 ], [ 356418.628997306921519, 258421.958084023615811 ], [ 356418.981594040058553, 258421.984603839431657 ], [ 356419.32448773633223, 258422.070926894812146 ], [ 356419.647611691150814, 258422.21451890951721 ], [ 356419.941479601664469, 258422.411164296005154 ], [ 356420.197464066732209, 258422.655089920910541 ], [ 356420.408049870922696, 258422.939134593354538 ], [ 356420.56705461681122, 258423.254959303652868 ], [ 356420.669810228457209, 258423.593292040954111 ], [ 356420.713299997150898, 258423.944200001657009 ], [ 356424.077393482613843, 258434.502226305281511 ], [ 356426.858308324008249, 258445.228621648158878 ], [ 356429.047700002789497, 258456.0912000015378 ], [ 356429.758863245428074, 258457.898910286283353 ], [ 356430.676561679458246, 258459.611043229524512 ], [ 356431.788199998438358, 258461.204100001603365 ], [ 356434.440800003707409, 258465.274599999189377 ], [ 356445.296499997377396, 258464.140799999237061 ], [ 356446.812799997627735, 258455.678800001740456 ], [ 356453.475199997425079, 258418.499699998646975 ], [ 356454.825099997222424, 258413.309300001710653 ], [ 356447.615199998021126, 258415.181200001388788 ], [ 356446.226664524408989, 258417.639698965358548 ], [ 356445.171703935251571, 258420.258726661384571 ], [ 356444.468452835688367, 258422.993262418749509 ], [ 356444.129000000655651, 258425.796300001442432 ], [ 356443.992675603250973, 258431.095886521594366 ], [ 356443.187204232730437, 258436.335678263392765 ], [ 356441.72552117484156, 258441.431527973123593 ], [ 356439.631099998950958, 258446.301600001752377 ], [ 356438.937624464510009, 258448.208540720690507 ], [ 356437.95973633864196, 258449.986479424813297 ], [ 356436.720600001513958, 258451.593299999833107 ], [ 356436.298819956369698, 258451.762990785849979 ], [ 356435.856053524068557, 258451.866195706999861 ], [ 356435.402713222894818, 258451.90048769779969 ], [ 356434.949460236297455, 258451.86506031503086 ], [ 356434.506953694391996, 258451.760746702871984 ], [ 356434.085600003600121, 258451.589999999850988 ], [ 356433.678257506806403, 258451.344695038016653 ], [ 356433.315372481592931, 258451.037421719171107 ], [ 356433.006280239846092, 258450.676084729522699 ], [ 356432.75893225998152, 258450.269979557342594 ], [ 356432.579691633349285, 258449.829553364048479 ], [ 356432.473169371718541, 258449.366136228229152 ], [ 356432.442105788039044, 258448.89164967648685 ], [ 356432.487300001084805, 258448.418299999088049 ], [ 356429.223955356806982, 258431.264769041124964 ], [ 356425.74040000140667, 258414.154599998146296 ], [ 356425.211199998855591, 258409.524399999529123 ], [ 356425.075636129942723, 258409.134397294925293 ], [ 356424.876864834863227, 258408.772500010585645 ], [ 356424.620465307903942, 258408.448866027931217 ], [ 356424.313634276157245, 258408.172579238307662 ], [ 356423.964983998914249, 258407.951394572708523 ], [ 356423.584300535032526, 258407.791520333004883 ], [ 356423.182269064302091, 258407.697443934972398 ], [ 356422.770173970842734, 258407.671805953519652 ], [ 356422.359582108736504, 258407.7153260060295 ], [ 356421.962018138903659, 258407.82678255380597 ], [ 356421.588641049864236, 258408.003047188743949 ], [ 356421.249930942954961, 258408.239172442816198 ], [ 356420.955394872289617, 258408.528530655486975 ], [ 356420.713299997150898, 258408.863000001758337 ], [ 356416.786788268596865, 258413.165642257634318 ], [ 356413.334431044466328, 258417.857278894633055 ], [ 356410.394500002264977, 258422.885899998247623 ], [ 356395.710100002586842, 258448.02140000090003 ], [ 356394.990696041961201, 258448.7520253919065 ], [ 356394.164581340621226, 258449.359388562355889 ], [ 356393.252642034552991, 258449.828133933100617 ], [ 356392.277934108860791, 258450.146410511137219 ], [ 356391.265100487973541, 258450.306171510921558 ], [ 356390.239748004358262, 258450.303377796051791 ], [ 356389.227799996733665, 258450.138099998235703 ], [ 356388.493960339401383, 258446.61130903166486 ], [ 356388.22786874009762, 258443.018820976663847 ], [ 356388.4341000020504, 258439.422400001436472 ], [ 356389.404197613126598, 258424.726180549245328 ], [ 356390.68299999833107, 258410.053599998354912 ], [ 356388.725509638956282, 258409.789120411529439 ], [ 356386.750467950478196, 258409.819588224083418 ], [ 356384.802067036449444, 258410.144321710249642 ], [ 356382.923902905720752, 258410.756054868572392 ], [ 356381.157999999821186, 258411.641100000590086 ], [ 356375.890906828863081, 258414.458205268456368 ], [ 356371.015620237449184, 258417.90928237765911 ], [ 356366.608037607627921, 258421.940605724055786 ], [ 356362.736775209603366, 258426.489416558557423 ], [ 356359.462099999189377, 258431.484900001436472 ], [ 356355.072281166852918, 258438.574674340896308 ], [ 356350.305121552781202, 258445.416428412718233 ], [ 356345.174599997699261, 258451.990100000053644 ], [ 356326.918300002813339, 258462.573499999940395 ], [ 356327.712099999189377, 258470.378699999302626 ], [ 356347.688199996948242, 258459.266199998557568 ], [ 356350.188876471947879, 258458.073764595377725 ], [ 356352.470394845702685, 258456.502154295885703 ], [ 356354.47574041923508, 258454.590643334842753 ], [ 356356.154799997806549, 258452.386999998241663 ], [ 356361.764293353597168, 258444.238819763704669 ], [ 356367.015185981232207, 258435.855062643211568 ], [ 356371.897600002586842, 258427.251499999314547 ], [ 356375.847370671166573, 258423.568829896947136 ], [ 356380.0996999964118, 258420.240100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704013200", "MAP": "D9-9013-T015", "PARCEL_NAM": "11F-4", "ACRE": ".54", "LONGITUDE": -64.95342706, "LATITUDE": 18.35542129, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.866918097, "SHAPE_Area": 1953.6475059899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356372.03999999910593, 258396.23759999871254 ], [ 356390.68299999833107, 258410.053599998354912 ], [ 356389.404197613126598, 258424.726180549245328 ], [ 356388.4341000020504, 258439.422400001436472 ], [ 356388.227868740155827, 258443.018820976663847 ], [ 356388.493960339459591, 258446.61130903166486 ], [ 356389.227799996733665, 258450.138099998235703 ], [ 356390.239748004358262, 258450.303377796022687 ], [ 356391.265100487973541, 258450.306171510921558 ], [ 356392.277934108860791, 258450.146410511137219 ], [ 356393.252642034552991, 258449.828133933071513 ], [ 356394.164581340621226, 258449.359388562355889 ], [ 356394.990696041961201, 258448.752025391877396 ], [ 356395.710100002586842, 258448.02140000090003 ], [ 356410.394500002264977, 258422.885899998247623 ], [ 356413.334431044466328, 258417.857278894633055 ], [ 356416.786788268596865, 258413.165642257634318 ], [ 356420.713299997150898, 258408.863000001758337 ], [ 356420.955394872289617, 258408.528530655457871 ], [ 356421.249930942896754, 258408.239172442787094 ], [ 356421.588641049864236, 258408.003047188714845 ], [ 356421.962018138903659, 258407.826782553747762 ], [ 356422.359582108736504, 258407.715326005971292 ], [ 356422.770173970784526, 258407.671805953461444 ], [ 356423.182269064302091, 258407.69744393491419 ], [ 356423.584300535032526, 258407.791520332946675 ], [ 356423.964983998914249, 258407.951394572650315 ], [ 356424.313634276215453, 258408.172579238278558 ], [ 356424.620465307962149, 258408.448866027902113 ], [ 356424.876864834921435, 258408.772500010556541 ], [ 356425.075636129942723, 258409.134397294925293 ], [ 356425.211199998855591, 258409.524399999529123 ], [ 356425.74040000140667, 258414.154599998146296 ], [ 356429.223955356806982, 258431.264769041124964 ], [ 356432.487300001084805, 258448.418299999088049 ], [ 356432.442105788039044, 258448.89164967648685 ], [ 356432.473169371718541, 258449.366136228229152 ], [ 356432.579691633349285, 258449.829553364048479 ], [ 356432.75893225998152, 258450.269979557342594 ], [ 356433.006280239846092, 258450.676084729522699 ], [ 356433.315372481592931, 258451.037421719171107 ], [ 356433.678257506806403, 258451.344695038016653 ], [ 356434.085600003600121, 258451.589999999850988 ], [ 356434.506953694391996, 258451.760746702813776 ], [ 356434.949460236297455, 258451.865060314943548 ], [ 356435.402713222894818, 258451.900487697683275 ], [ 356435.856053524068557, 258451.866195706912549 ], [ 356436.298819956369698, 258451.762990785791771 ], [ 356436.720600001513958, 258451.593299999833107 ], [ 356437.95973633864196, 258449.986479424813297 ], [ 356438.937624464510009, 258448.208540720690507 ], [ 356439.631099998950958, 258446.301600001752377 ], [ 356441.72552117484156, 258441.431527973123593 ], [ 356443.187204232730437, 258436.335678263392765 ], [ 356443.992675603250973, 258431.095886521594366 ], [ 356444.129000000655651, 258425.796300001442432 ], [ 356444.468452835688367, 258422.993262418720406 ], [ 356445.171703935193364, 258420.258726661355468 ], [ 356446.226664524408989, 258417.639698965358548 ], [ 356447.615199998021126, 258415.181200001388788 ], [ 356443.283900000154972, 258413.098200000822544 ], [ 356392.158399999141693, 258388.511199999600649 ], [ 356372.03999999910593, 258396.23759999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704013200", "MAP": "D9-9013-T015", "PARCEL_NAM": "11F-3", "ACRE": ".57", "LONGITUDE": -64.95404025000001, "LATITUDE": 18.35549489, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.280499198, "SHAPE_Area": 1910.61823931 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356297.7128000035882, 258433.908300001174212 ], [ 356345.174599997699261, 258451.990100000053644 ], [ 356350.305121552722994, 258445.416428412689129 ], [ 356355.07228116679471, 258438.574674340867205 ], [ 356359.462099999189377, 258431.484900001436472 ], [ 356362.736775209428743, 258426.4894165583828 ], [ 356366.608037607336883, 258421.940605723793851 ], [ 356371.015620237216353, 258417.909282377368072 ], [ 356375.890906828688458, 258414.458205268252641 ], [ 356381.157999999821186, 258411.641100000590086 ], [ 356382.923902905662544, 258410.756054868310457 ], [ 356384.802067036333028, 258410.144321709813084 ], [ 356386.750467950419988, 258409.819588223617757 ], [ 356388.725509638956282, 258409.7891204112384 ], [ 356390.68299999833107, 258410.053599998354912 ], [ 356372.03999999910593, 258396.23759999871254 ], [ 356366.943599998950958, 258398.194899998605251 ], [ 356353.14299999922514, 258406.820300001651049 ], [ 356345.776900000870228, 258411.424100000411272 ], [ 356326.197700001299381, 258421.213700000196695 ], [ 356312.174699999392033, 258427.563799999654293 ], [ 356297.7128000035882, 258433.908300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "D9-2838-T81", "PARCEL_NAM": "ROW 25E", "ACRE": null, "LONGITUDE": -64.87756111, "LATITUDE": 18.31932952, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.721127627900003, "SHAPE_Area": 77.155091814499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364464.284000001847744, 254500.074999999254942 ], [ 364464.339000001549721, 254481.048300001770258 ], [ 364460.262199997901917, 254481.075899999588728 ], [ 364459.38740000128746, 254481.091600000858307 ], [ 364460.035800002515316, 254496.509700000286102 ], [ 364461.093099996447563, 254495.642599999904633 ], [ 364463.325599998235703, 254500.099399998784065 ], [ 364464.284000001847744, 254500.074999999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002037500", "MAP": "D9-1815-T81", "PARCEL_NAM": "C-62", "ACRE": ".71", "LONGITUDE": -64.90791833, "LATITUDE": 18.36367583, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 252.27886760499999, "SHAPE_Area": 3048.0050539899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361193.834100000560284, 259337.747099999338388 ], [ 361188.973899997770786, 259331.732700001448393 ], [ 361169.854900002479553, 259361.405600000172853 ], [ 361166.016800001263618, 259366.545099999755621 ], [ 361179.766400001943111, 259381.103999998420477 ], [ 361216.278999999165535, 259389.835299998521805 ], [ 361237.214299999177456, 259394.870400000363588 ], [ 361253.267800003290176, 259401.106600001454353 ], [ 361257.368900001049042, 259386.640999998897314 ], [ 361261.522799998521805, 259373.801500000059605 ], [ 361253.585299998521805, 259370.150299999862909 ], [ 361229.931500002741814, 259361.7364999987185 ], [ 361201.67400000244379, 259347.449000000953674 ], [ 361193.834100000560284, 259337.747099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-599-T002", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87783606000001, "LATITUDE": 18.32539306, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.12060879399999, "SHAPE_Area": 479.60581022999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364386.177500002086163, 255150.028099998831749 ], [ 364399.367600001394749, 255159.499699998646975 ], [ 364399.511799998581409, 255159.47580000013113 ], [ 364402.526500001549721, 255159.764699999243021 ], [ 364409.310300000011921, 255160.348900001496077 ], [ 364427.13400000333786, 255163.659499999135733 ], [ 364444.708499997854233, 255166.704700000584126 ], [ 364460.520900003612041, 255169.9983000010252 ], [ 364462.343400001525879, 255162.642299998551607 ], [ 364386.177500002086163, 255150.028099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "111111111111", "MAP": "D9-6875-T001", "PARCEL_NAM": "AA", "ACRE": null, "LONGITUDE": -64.89219501, "LATITUDE": 18.33474303, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.56808804600001, "SHAPE_Area": 450.84210464099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362935.521200001239777, 256173.335400000214577 ], [ 362946.972000002861023, 256169.73200000077486 ], [ 362957.204899996519089, 256166.6587999984622 ], [ 362944.678300000727177, 256166.789099998772144 ], [ 362912.576099999248981, 256176.505300000309944 ], [ 362891.832699999213219, 256182.537799999117851 ], [ 362874.158500000834465, 256186.136199999600649 ], [ 362864.33330000191927, 256187.7804000005126 ], [ 362867.5591000020504, 256195.303800001740456 ], [ 362868.231100000441074, 256196.871100001037121 ], [ 362916.703599996864796, 256179.256999999284744 ], [ 362935.521200001239777, 256173.335400000214577 ] ], [ [ 362934.277400001883507, 256170.666799999773502 ], [ 362934.280299998819828, 256170.660000000149012 ], [ 362934.282499998807907, 256170.664900001138449 ], [ 362934.277400001883507, 256170.666799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703095500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87947945000001, "LATITUDE": 18.33944614, "OBJECTID_1": 23391, "PARCEL_NO_": "105703095500", "Tax_Legal_": "ANNAS RETREAT 173B-55 NEW QTR", "Name": "RICHARDS, CARL & PHILOMEN", "Address": "PO Box 583", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.480628126599996, "SHAPE_Area": 55.912717731999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364231.6554000005126, 256705.608600001782179 ], [ 364229.220299996435642, 256707.488499999046326 ], [ 364260.48309999704361, 256729.27589999884367 ], [ 364231.6554000005126, 256705.608600001782179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-68", "PARCEL_NAM": "173-77", "ACRE": ".04", "LONGITUDE": -64.87968413, "LATITUDE": 18.33916939, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.319379664, "SHAPE_Area": 566.24312641500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364238.269599996507168, 256686.453200001269579 ], [ 364217.562799997627735, 256667.134500000625849 ], [ 364215.0304000005126, 256669.375500001013279 ], [ 364206.879100002348423, 256679.652399998158216 ], [ 364198.233199998736382, 256689.20380000025034 ], [ 364229.245099999010563, 256694.578999999910593 ], [ 364238.269599996507168, 256686.453200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023100", "MAP": "D9-7406-T006", "PARCEL_NAM": "4-7-2", "ACRE": "1.411", "LONGITUDE": -65.0169916, "LATITUDE": 18.34596046, "OBJECTID_1": 7294, "PARCEL_NO_": "104802023100", "Tax_Legal_": "4-7-2 & 4-7-3 ESTATE FORTUNA No.8 WESTEND QUARTER", "Name": "DGS LAND DEVELOPMENT LLC", "Address": "3734 Fm 3006", "City": "Pleasanton", "State": "Texas", "Zip": 78064, "Country": "United States", "Land_Value": 189700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.33694523, "SHAPE_Area": 1393.7395183199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349727.246399998664856, 257311.344500001519918 ], [ 349691.88570000231266, 257292.98759999871254 ], [ 349682.006300002336502, 257313.321699999272823 ], [ 349670.642399996519089, 257322.094700001180172 ], [ 349689.898599997162819, 257333.440200001001358 ], [ 349694.713100001215935, 257336.223900001496077 ], [ 349715.584700003266335, 257334.190499998629093 ], [ 349727.246399998664856, 257311.344500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105102021000", "MAP": "D9-561-T66", "PARCEL_NAM": "REM 61Bb", "ACRE": "0.12", "LONGITUDE": -64.96669454000001, "LATITUDE": 18.34508685, "OBJECTID_1": 7396, "PARCEL_NO_": "105102021000", "Tax_Legal_": "61Bb LINDBERG BAY 4A SOUTHSIDE QTR.", "Name": "MAGRAS, PATRICK(Life Estate)", "Address": "PO Box 302176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.802480505700004, "SHAPE_Area": 489.15764573400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355032.76519999653101, 257254.312600001692772 ], [ 355000.544100001454353, 257255.373700000345707 ], [ 355001.234499998390675, 257263.975900001823902 ], [ 355001.656300000846386, 257270.854699999094009 ], [ 355033.831799998879433, 257269.089899998158216 ], [ 355033.501400001347065, 257262.551300000399351 ], [ 355032.76519999653101, 257254.312600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017500", "MAP": "D9-2010-T82", "PARCEL_NAM": "1-5", "ACRE": ".51", "LONGITUDE": -64.916962, "LATITUDE": 18.35032337, "OBJECTID_1": 4987, "PARCEL_NO_": "102904017500", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-5 GREAT NORTHSIDE QRT.", "Name": "JAGTIANI, CHANDRU & KARISMA", "Address": "5176 Dronningens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82100, "Improved_V": 589300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.006692112, "SHAPE_Area": 2181.93666721 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360292.410300001502037, 257855.755699999630451 ], [ 360281.231799997389317, 257844.212200000882149 ], [ 360274.72919999808073, 257850.280699998140335 ], [ 360259.306800000369549, 257862.186799999326468 ], [ 360254.411300003528595, 257868.901700001209974 ], [ 360251.130400002002716, 257875.418800000101328 ], [ 360248.632299996912479, 257884.686500001698732 ], [ 360249.951800003647804, 257919.105500001460314 ], [ 360258.8158999979496, 257919.811299998313189 ], [ 360274.4070999994874, 257921.659200001507998 ], [ 360292.410300001502037, 257855.755699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040300", "MAP": "D9-6347-T97", "PARCEL_NAM": "40AA", "ACRE": ".024", "LONGITUDE": -64.90852533, "LATITUDE": 18.33962331, "OBJECTID_1": 20127, "PARCEL_NO_": "105503040300", "Tax_Legal_": "38 REM.,38A & 40AA ESTATE THOMAS No.6A NEW QUARTER", "Name": "DICKMAN, THOMAS J.", "Address": "PO BOX 1105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31300, "Improved_V": 145900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.914150516799999, "SHAPE_Area": 103.234113013 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361175.364799998700619, 256713.675700001418591 ], [ 361173.378799997270107, 256700.575599998235703 ], [ 361168.895199999213219, 256702.675400000065565 ], [ 361168.872299998998642, 256702.686200000345707 ], [ 361162.4341000020504, 256705.701400000602007 ], [ 361167.110299997031689, 256710.654500000178814 ], [ 361167.114100001752377, 256710.658500000834465 ], [ 361171.681000001728535, 256715.495900001376867 ], [ 361175.364799998700619, 256713.675700001418591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503040300", "MAP": "D9-6347-T97", "PARCEL_NAM": "38", "ACRE": ".12", "LONGITUDE": -64.90878075000001, "LATITUDE": 18.33963514, "OBJECTID_1": 20127, "PARCEL_NO_": "105503040300", "Tax_Legal_": "38 REM.,38A & 40AA ESTATE THOMAS No.6A NEW QUARTER", "Name": "DICKMAN, THOMAS J.", "Address": "PO BOX 1105", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 31300, "Improved_V": 145900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.522517306, "SHAPE_Area": 512.29799632499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361149.18469999730587, 256691.667500000447035 ], [ 361147.165700003504753, 256689.528900001198053 ], [ 361145.505000002682209, 256690.8293999992311 ], [ 361140.95440000295639, 256699.324700001627207 ], [ 361138.978472500457428, 256702.158230341883609 ], [ 361137.294100001454353, 256705.174199998378754 ], [ 361132.191352743131574, 256714.485990465327632 ], [ 361127.29280000180006, 256723.906800001859665 ], [ 361126.966925492859446, 256728.855997306382051 ], [ 361126.895700000226498, 256733.815400000661612 ], [ 361130.383900001645088, 256732.987100001424551 ], [ 361132.235965971660335, 256728.182027958129765 ], [ 361134.765306367655285, 256723.696350432961481 ], [ 361137.918440948880743, 256719.62491235640482 ], [ 361141.628700003027916, 256716.053800001740456 ], [ 361149.845355413213838, 256712.170891049172496 ], [ 361157.768399998545647, 256707.719399999827147 ], [ 361162.4341000020504, 256705.701400000602007 ], [ 361149.18469999730587, 256691.667500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701037600", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-33", "ACRE": "0.23", "LONGITUDE": -64.87716106000001, "LATITUDE": 18.34342424, "OBJECTID_1": 22021, "PARCEL_NO_": "105701037600", "Tax_Legal_": "2O-21 SMITH BAY EAST END QUARTER", "Name": "SAVIN, VICTOR &STEPHEN", "Address": "42 Morehouse Rd", "City": "Easton", "State": "Connecticut", "Zip": 6612, "Country": "United States", "Land_Value": 80400, "Improved_V": 3400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.58809975599999, "SHAPE_Area": 1142.0749091600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364502.554899998009205, 257183.630699999630451 ], [ 364493.171099998056889, 257135.403000000864267 ], [ 364487.855099998414516, 257137.010499998927116 ], [ 364450.374099999666214, 257149.572799999266863 ], [ 364472.870600000023842, 257165.866900000721216 ], [ 364497.742200002074242, 257180.635999999940395 ], [ 364502.554899998009205, 257183.630699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701030700", "MAP": null, "PARCEL_NAM": "REM 20", "ACRE": "0.16", "LONGITUDE": -64.8770135, "LATITUDE": 18.34323178, "OBJECTID_1": 21954, "PARCEL_NO_": "105701030700", "Tax_Legal_": "20 ESTATE SMITH BAY 1,2&3 EASTEND QTR", "Name": "SMITH, VALENTINE & OTHERS", "Address": "PO Box 8546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20800, "Improved_V": 1200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.515368553, "SHAPE_Area": 546.52013932800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364503.157300002872944, 257112.919300001114607 ], [ 364485.411100000143051, 257112.774099998176098 ], [ 364488.264899998903275, 257121.096000000834465 ], [ 364493.171099998056889, 257135.403000000864267 ], [ 364502.554899998009205, 257183.630699999630451 ], [ 364502.679999999701977, 257168.940999999642372 ], [ 364502.810199998319149, 257153.657499998807907 ], [ 364503.087099999189377, 257121.160199999809265 ], [ 364503.093800000846386, 257120.369800001382828 ], [ 364503.157300002872944, 257112.919300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701032600", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-32", "ACRE": "0.24", "LONGITUDE": -64.87727647, "LATITUDE": 18.34314197, "OBJECTID_1": 21974, "PARCEL_NO_": "105701032600", "Tax_Legal_": "20-21-32 SMITH BAY EAST END QTR", "Name": "GEORGE, GRETA", "Address": "PO Box 502841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29700, "Improved_V": 138300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.28767582200001, "SHAPE_Area": 1413.67266348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364479.101000003516674, 257097.101399999111891 ], [ 364474.824799999594688, 257092.892400000244379 ], [ 364471.037799999117851, 257097.035399999469519 ], [ 364465.325300000607967, 257105.010200001299381 ], [ 364464.495600000023842, 257107.747699998319149 ], [ 364462.87219999730587, 257109.000900000333786 ], [ 364462.042499996721745, 257111.738400001078844 ], [ 364445.687899999320507, 257138.413400001823902 ], [ 364447.225000001490116, 257147.291900001466274 ], [ 364450.374099999666214, 257149.572799999266863 ], [ 364487.855099998414516, 257137.010499998927116 ], [ 364493.171099998056889, 257135.403000000864267 ], [ 364488.341399997472763, 257121.096400000154972 ], [ 364486.159599997103214, 257114.633200000971556 ], [ 364485.411100000143051, 257112.774099998176098 ], [ 364484.621799997985363, 257110.8136 ], [ 364479.101000003516674, 257097.101399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701039900", "MAP": "F9-3972-T80", "PARCEL_NAM": "REM 20-15", "ACRE": "0.45", "LONGITUDE": -64.8767214, "LATITUDE": 18.34319163, "OBJECTID_1": 22033, "PARCEL_NO_": "105701039900", "Tax_Legal_": "20-15 SMITH BAY EAST END QTR.", "Name": "WILLIAMS, AMMARAM F. & ANN M", "Address": "PO Box 7772", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 823, "Country": "United States", "Land_Value": 86200, "Improved_V": 302800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.74870607299999, "SHAPE_Area": 2162.6849024899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364502.810199998319149, 257153.657499998807907 ], [ 364547.957800000905991, 257151.164599999785423 ], [ 364551.331799998879433, 257151.922100000083447 ], [ 364553.324400000274181, 257151.921599999070168 ], [ 364553.500799998641014, 257147.759300000965595 ], [ 364553.999899998307228, 257135.984600000083447 ], [ 364554.965300001204014, 257121.014199998229742 ], [ 364555.269100002944469, 257116.304200001060963 ], [ 364555.415899999439716, 257114.027300000190735 ], [ 364554.913800001144409, 257110.04839999973774 ], [ 364549.949299998581409, 257110.259899999946356 ], [ 364515.925300002098083, 257110.135299999266863 ], [ 364503.051399998366833, 257110.414299998432398 ], [ 364503.157300002872944, 257112.919300001114607 ], [ 364503.093800000846386, 257120.369800001382828 ], [ 364503.087099999189377, 257121.160199999809265 ], [ 364502.810199998319149, 257153.657499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701037200", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-31", "ACRE": "0.26", "LONGITUDE": -64.87701383, "LATITUDE": 18.34286567, "OBJECTID_1": 22018, "PARCEL_NO_": "105701037200", "Tax_Legal_": "20-21-31 SMITH BAY EAST END QTR.", "Name": "GUMBS, ELVIRA", "Address": "6574 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35900, "Improved_V": 246000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.79798769300001, "SHAPE_Area": 1216.18038731 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364519.506499998271465, 257086.877500001341105 ], [ 364488.985299997031689, 257072.695500001311302 ], [ 364477.549500003457069, 257089.91160000115633 ], [ 364474.824799999594688, 257092.892400000244379 ], [ 364479.101000003516674, 257097.101399999111891 ], [ 364484.621799997985363, 257110.8136 ], [ 364485.411100000143051, 257112.774099998176098 ], [ 364503.037399999797344, 257112.918299999088049 ], [ 364503.051399998366833, 257110.414299998432398 ], [ 364515.925300002098083, 257110.135299999266863 ], [ 364517.805799998342991, 257097.207100000232458 ], [ 364519.506499998271465, 257086.877500001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701037600", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-27", "ACRE": "0.23", "LONGITUDE": -64.87665133, "LATITUDE": 18.3428916, "OBJECTID_1": 22021, "PARCEL_NO_": "105701037600", "Tax_Legal_": "2O-21 SMITH BAY EAST END QUARTER", "Name": "SAVIN, VICTOR &STEPHEN", "Address": "42 Morehouse Rd", "City": "Easton", "State": "Connecticut", "Zip": 6612, "Country": "United States", "Land_Value": 80400, "Improved_V": 3400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.52791888799999, "SHAPE_Area": 935.51413260699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364555.369800001382828, 257102.0 ], [ 364555.991700001060963, 257086.187699999660254 ], [ 364553.456399999558926, 257092.310499999672174 ], [ 364550.263400003314018, 257086.58500000089407 ], [ 364547.846500001847744, 257084.876600001007318 ], [ 364519.48139999806881, 257084.645599998533726 ], [ 364519.461499996483326, 257086.967500001192093 ], [ 364517.752099998295307, 257097.297100000083447 ], [ 364515.861900001764297, 257110.225299999117851 ], [ 364550.059900000691414, 257110.349899999797344 ], [ 364555.049800001084805, 257110.138399999588728 ], [ 364555.170199997723103, 257107.076799999922514 ], [ 364555.369800001382828, 257102.0 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701037500", "MAP": "F9-1575-T65", "PARCEL_NAM": "20-14A", "ACRE": "0.18", "LONGITUDE": -64.87626171, "LATITUDE": 18.34330248, "OBJECTID_1": 22020, "PARCEL_NO_": "105701037500", "Tax_Legal_": "20-17&20-14A SMITH BAY EAST END QUARTER", "Name": "RICHARDS, ALWYN SR. , & ADA", "Address": "PO Box 10963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.82081639899999, "SHAPE_Area": 745.74938785999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364601.018700003623962, 257135.683699999004602 ], [ 364553.999899998307228, 257135.984900001436472 ], [ 364553.500799998641014, 257147.760099999606609 ], [ 364553.324400000274181, 257151.922499999403954 ], [ 364598.782999999821186, 257151.910700000822544 ], [ 364600.036200001835823, 257144.919199999421835 ], [ 364601.018700003623962, 257135.683699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701037500", "MAP": "F9-1575-T65", "PARCEL_NAM": "20-17", "ACRE": "0.16", "LONGITUDE": -64.87625038, "LATITUDE": 18.343139, "OBJECTID_1": 22020, "PARCEL_NO_": "105701037500", "Tax_Legal_": "20-17&20-14A SMITH BAY EAST END QUARTER", "Name": "RICHARDS, ALWYN SR. , & ADA", "Address": "PO Box 10963", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.03520432900001, "SHAPE_Area": 946.762846685 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364601.652300000190735, 257119.929499998688698 ], [ 364601.769100002944469, 257114.932900000363588 ], [ 364555.269100002944469, 257116.304200001060963 ], [ 364554.965300001204014, 257121.014199998229742 ], [ 364553.999899998307228, 257135.984900001436472 ], [ 364601.018700003623962, 257135.683699999004602 ], [ 364601.359099999070168, 257132.483500000089407 ], [ 364601.652300000190735, 257119.929499998688698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105701037400", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-25", "ACRE": "0.23", "LONGITUDE": -64.87612814000001, "LATITUDE": 18.34280734, "OBJECTID_1": 22019, "PARCEL_NO_": "105701037400", "Tax_Legal_": "20-30 SMITH BAY 1,2&3 EAST END QTR", "Name": "RICHARDS, JAMES ALDEN", "Address": "PO Box 502455", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.722767450299997, "SHAPE_Area": 588.80759932700005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364602.305500000715256, 257101.813900001347065 ], [ 364602.455300003290176, 257098.250999998301268 ], [ 364605.041400000452995, 257078.640500001609325 ], [ 364580.082400001585484, 257075.340900000184774 ], [ 364579.880300000309944, 257097.855099998414516 ], [ 364579.633100003004074, 257101.860199999064207 ], [ 364602.305500000715256, 257101.813900001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105701036600", "MAP": "B9-182-T68", "PARCEL_NAM": "20-21-26", "ACRE": "0.23", "LONGITUDE": -64.87634998, "LATITUDE": 18.34280438, "OBJECTID_1": 22012, "PARCEL_NO_": "105701036600", "Tax_Legal_": "20-21-26 EST SMITH BAY EASTEND QTR", "Name": "MATTHEW, DERRICK & KEIVA ROGERS", "Address": "PO Box 960", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 44000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.200091073, "SHAPE_Area": 640.35396689900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364579.647100001573563, 257101.860199999064207 ], [ 364579.890000000596046, 257097.926300000399351 ], [ 364580.082400001585484, 257075.340900000184774 ], [ 364559.127300001680851, 257074.113899998366833 ], [ 364556.622000001370907, 257084.225900001823902 ], [ 364555.850900001823902, 257086.097699999809265 ], [ 364555.232199996709824, 257101.910000000149012 ], [ 364579.647100001573563, 257101.860199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701037400", "MAP": "F9-1576-T65", "PARCEL_NAM": "20-30", "ACRE": "0.17", "LONGITUDE": -64.87625229, "LATITUDE": 18.34298523, "OBJECTID_1": 22019, "PARCEL_NO_": "105701037400", "Tax_Legal_": "20-30 SMITH BAY 1,2&3 EAST END QTR", "Name": "RICHARDS, JAMES ALDEN", "Address": "PO Box 502455", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 32600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.160319004, "SHAPE_Area": 644.94663874599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364602.116599999368191, 257106.309300001710653 ], [ 364602.305500000715256, 257101.813900001347065 ], [ 364579.647100001573563, 257101.860199999064207 ], [ 364579.633100003004074, 257101.860199999064207 ], [ 364555.232199996709824, 257101.910000000149012 ], [ 364555.033600002527237, 257106.986800000071526 ], [ 364554.913800001144409, 257110.04839999973774 ], [ 364555.415899999439716, 257114.027300000190735 ], [ 364555.269100002944469, 257116.304200001060963 ], [ 364601.769100002944469, 257114.932900000363588 ], [ 364601.771999999880791, 257114.806600000709295 ], [ 364601.918200001120567, 257111.028400000184774 ], [ 364602.033100001513958, 257108.295899998396635 ], [ 364602.116599999368191, 257106.309300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507203011600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94619888, "LATITUDE": 18.31922936, "OBJECTID_1": 87330, "PARCEL_NO_": "507203011600", "Tax_Legal_": "84 THRU 90 WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "TPB LLC", "Address": "917 S Lusk St", "City": "Boise", "State": "Idaho", "Zip": 83706, "Country": "United States", "Land_Value": 559800, "Improved_V": 325700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.78087676899997, "SHAPE_Area": 3075.11278485 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357257.796300001442432, 254394.446800000965595 ], [ 357251.933899998664856, 254395.899999998509884 ], [ 357249.047499999403954, 254392.051500000059605 ], [ 357244.7179000005126, 254395.899999998509884 ], [ 357243.034199997782707, 254398.545800000429153 ], [ 357238.464100003242493, 254398.064800001680851 ], [ 357232.210299998521805, 254398.064800001680851 ], [ 357224.753899998962879, 254400.951099999248981 ], [ 357212.246299996972084, 254403.3564000017941 ], [ 357205.992499999701977, 254405.761700000613928 ], [ 357199.017099998891354, 254406.964400000870228 ], [ 357192.282200001180172, 254400.470100000500679 ], [ 357184.585199996829033, 254398.786400001496077 ], [ 357177.128799997270107, 254394.456799998879433 ], [ 357170.634400002658367, 254386.519299998879433 ], [ 357166.785999998450279, 254387.000300001353025 ], [ 357164.621200002729893, 254392.051500000059605 ], [ 357167.748099997639656, 254393.254099998623133 ], [ 357171.115500003099442, 254396.140500001609325 ], [ 357170.153399996459484, 254400.229499999433756 ], [ 357160.772699996829033, 254402.634799998253584 ], [ 357159.570000000298023, 254409.129200000315905 ], [ 357161.694300003349781, 254415.4814000017941 ], [ 357212.069499999284744, 254451.094900000840425 ], [ 357216.120800003409386, 254448.806000001728535 ], [ 357222.5658999979496, 254449.491999998688698 ], [ 357257.796300001442432, 254394.446800000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302273000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93667557000001, "LATITUDE": 18.342819, "OBJECTID_1": 10440, "PARCEL_NO_": "105302273000", "Tax_Legal_": "GAMLE GADE 15BB CROWN PRINCE QUARTER", "Name": "CECILIA P SENTHILL HARRIGAN LIVING TRUST", "Address": "PO Box 582", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040582, "Country": "United States", "Land_Value": 6600, "Improved_V": 40200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.3359279712, "SHAPE_Area": 111.332743284 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358197.222999997437, 257033.654899999499321 ], [ 358197.000399999320507, 257031.712200000882149 ], [ 358185.712099999189377, 257032.657499998807907 ], [ 358185.927400000393391, 257034.406800001859665 ], [ 358186.898199997842312, 257042.246500000357628 ], [ 358198.151600003242493, 257041.72690000012517 ], [ 358197.222999997437, 257033.654899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704010200", "MAP": "A9-34-T86", "PARCEL_NAM": "6A", "ACRE": "1.04", "LONGITUDE": -64.95629309, "LATITUDE": 18.35581147, "OBJECTID_1": 3439, "PARCEL_NO_": "102704010200", "Tax_Legal_": "BONNE RESOLUTION 6A LITTLE NORTHSIDE QTR", "Name": "MODERN DAY CONSTRUCTION", "Address": "PO Box 301863", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 90700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.752005688, "SHAPE_Area": 2164.87439004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356132.298500001430511, 258480.879599999636412 ], [ 356114.36879999935627, 258403.115100000053644 ], [ 356102.668499998748302, 258437.413100000470877 ], [ 356081.497699998319149, 258469.570500001311302 ], [ 356074.738399997353554, 258478.647300001233816 ], [ 356067.399700000882149, 258485.213500000536442 ], [ 356132.298500001430511, 258480.879599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804010600", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-D", "ACRE": "0.83", "LONGITUDE": -64.84014675, "LATITUDE": 18.31944089, "OBJECTID_1": 41799, "PARCEL_NO_": "107804010600", "Tax_Legal_": "7-D*7-T ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "FOSTER, JOHN F. TRUSTEE", "Address": "6900 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 791700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 254.03378923400001, "SHAPE_Area": 3361.6819995000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368444.300599999725819, 254507.983800001442432 ], [ 368444.36540000140667, 254500.385000001639128 ], [ 368446.795100003480911, 254499.138300001621246 ], [ 368446.820299997925758, 254496.183200001716614 ], [ 368442.786899998784065, 254496.361299999058247 ], [ 368433.881499998271465, 254500.510299999266863 ], [ 368411.25620000064373, 254506.024599999189377 ], [ 368385.186300002038479, 254537.264199998229742 ], [ 368372.126999996602535, 254555.733500000089407 ], [ 368376.860600002110004, 254568.015700001269579 ], [ 368385.740900002419949, 254566.821800000965595 ], [ 368395.46339999884367, 254561.412999998778105 ], [ 368408.394900001585484, 254557.93019999936223 ], [ 368422.107600003480911, 254557.409200001507998 ], [ 368430.960900001227856, 254559.381499998271465 ], [ 368439.830300003290176, 254559.454100001603365 ], [ 368451.946599997580051, 254557.020100001245737 ], [ 368444.300599999725819, 254507.983800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804010700", "MAP": "D9-2681-T84", "PARCEL_NAM": "7-E", "ACRE": "0.65", "LONGITUDE": -64.83955248, "LATITUDE": 18.31936885, "OBJECTID_1": 41800, "PARCEL_NO_": "107804010700", "Tax_Legal_": "NAZARETH ESTATE 7E No.1 REDHOOK QTR.", "Name": "Joseph R Papa & Marylee M Pratnicki (Trustees)", "Address": "40 Patten Ln", "City": "Long Branch", "State": "New Jersey", "Zip": 7740, "Country": "United States", "Land_Value": 490300, "Improved_V": 2103200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.59197744900001, "SHAPE_Area": 2720.8486667299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368533.290600001811981, 254568.66270000115037 ], [ 368493.561200000345707, 254499.521099999547005 ], [ 368483.858499996364117, 254502.6081000007689 ], [ 368462.055699996650219, 254506.229299999773502 ], [ 368444.300599999725819, 254507.983800001442432 ], [ 368451.946599997580051, 254557.020100001245737 ], [ 368463.283500000834465, 254551.413400001823902 ], [ 368468.972699999809265, 254546.182599999010563 ], [ 368475.442900002002716, 254543.913499999791384 ], [ 368489.166400000452995, 254542.125999998301268 ], [ 368499.639499999582767, 254543.267200000584126 ], [ 368510.895499996840954, 254547.159000001847744 ], [ 368528.467100001871586, 254566.934500001370907 ], [ 368533.290600001811981, 254568.66270000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804010800", "MAP": "D9-2681-T84", "PARCEL_NAM": "7-F", "ACRE": "0.85", "LONGITUDE": -64.83904641, "LATITUDE": 18.31923626, "OBJECTID_1": 41801, "PARCEL_NO_": "107804010800", "Tax_Legal_": "7F ESTATE NAZARETH No.1 RED HOOK QTR", "Name": "ROGER L. & LYNN C. HEADRICK FAMILY TRUST", "Address": "585 Locust Hills Dr", "City": "Wayzata", "State": "Minnesota", "Zip": 55391, "Country": "United States", "Land_Value": 583000, "Improved_V": 2015400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.03708274100001, "SHAPE_Area": 3729.1595101299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368567.707800000905991, 254504.138700000941753 ], [ 368567.111900001764297, 254479.435899998992682 ], [ 368520.342200003564358, 254479.475299999117851 ], [ 368514.620700001716614, 254488.505499999970198 ], [ 368509.744999997317791, 254492.898499999195337 ], [ 368500.8378000035882, 254497.258600000292063 ], [ 368493.561200000345707, 254499.521099999547005 ], [ 368533.290600001811981, 254568.66270000115037 ], [ 368536.517700001597404, 254568.478100001811981 ], [ 368539.759099997580051, 254566.604699999094009 ], [ 368543.03830000013113, 254560.298799999058247 ], [ 368543.887800000607967, 254555.239500001072884 ], [ 368547.987700000405312, 254547.251499999314547 ], [ 368548.865900002419949, 254538.814899999648333 ], [ 368550.510899998247623, 254535.0287000015378 ], [ 368553.021600000560284, 254524.283500000834465 ], [ 368555.483599998056889, 254519.237399999052286 ], [ 368556.372699998319149, 254509.534400001168251 ], [ 368559.623099997639656, 254506.605700001120567 ], [ 368567.707800000905991, 254504.138700000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804010100", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-C", "ACRE": "0.906", "LONGITUDE": -64.8404515, "LATITUDE": 18.31875195, "OBJECTID_1": 41795, "PARCEL_NO_": "107804010100", "Tax_Legal_": "NAZARETH 7-C RED HOOK QTR", "Name": "PROPRIETARY INTERESTS HOLDINGS", "Address": "1600 Kongens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026733, "Country": "United States", "Land_Value": 334100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.60520835599999, "SHAPE_Area": 3608.1377301000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368417.385899998247623, 254449.079500000923872 ], [ 368413.562899999320507, 254424.5614 ], [ 368394.953000001609325, 254432.008400000631809 ], [ 368387.679999999701977, 254433.848799999803305 ], [ 368357.029399998486042, 254434.864500001072884 ], [ 368330.370700001716614, 254440.55689999833703 ], [ 368359.174999997019768, 254466.968199998140335 ], [ 368403.212899997830391, 254503.636799998581409 ], [ 368406.423699997365475, 254505.351799998432398 ], [ 368411.25620000064373, 254506.024599999189377 ], [ 368411.418099999427795, 254487.027499999850988 ], [ 368417.385899998247623, 254449.079500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804010500", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-B-2", "ACRE": "0.758", "LONGITUDE": -64.83984436, "LATITUDE": 18.31892082, "OBJECTID_1": 41798, "PARCEL_NO_": "107804010500", "Tax_Legal_": "NAZARETH 7-B-2 RED HOOK QTR.", "Name": "POINT OF VIEW INC.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 388900, "Improved_V": 812800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.09121774499999, "SHAPE_Area": 3250.8781398900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368462.465700000524521, 254458.103300001472235 ], [ 368417.385899998247623, 254449.079500000923872 ], [ 368411.418099999427795, 254487.027499999850988 ], [ 368411.25620000064373, 254506.024599999189377 ], [ 368433.881499998271465, 254500.510299999266863 ], [ 368442.786899998784065, 254496.361299999058247 ], [ 368446.820299997925758, 254496.183200001716614 ], [ 368452.464500002563, 254496.229400001466274 ], [ 368454.060900002717972, 254498.142299998551607 ], [ 368459.710500001907349, 254497.555300001055002 ], [ 368463.747400000691414, 254496.954999998211861 ], [ 368472.631300002336502, 254495.339000001549721 ], [ 368479.094400003552437, 254493.914200000464916 ], [ 368487.179099999368191, 254491.447299998253584 ], [ 368496.883599996566772, 254488.14919999986887 ], [ 368504.971900001168251, 254485.260099999606609 ], [ 368507.410599999129772, 254482.958000000566244 ], [ 368507.453699998557568, 254477.892099998891354 ], [ 368503.456399999558926, 254473.848600000143051 ], [ 368461.601800002157688, 254464.851199999451637 ], [ 368462.465700000524521, 254458.103300001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804019900", "MAP": "D9-2681-T84", "PARCEL_NAM": "RECREATION 7-11", "ACRE": "5.8", "LONGITUDE": -64.83829385, "LATITUDE": 18.31803889, "OBJECTID_1": 41809, "PARCEL_NO_": "107804019900", "Tax_Legal_": "NAZARETH 7-3 THRU 7-11 RED HOOK QTR.", "Name": "WATERPOINT ESTATES PROPERTY OW", "Address": "6221 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1179.19216246, "SHAPE_Area": 18878.119052900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368571.042700000107288, 254491.289299998432398 ], [ 368574.312899999320507, 254486.038699999451637 ], [ 368583.999499998986721, 254484.851399999111891 ], [ 368588.835600003600121, 254485.102099999785423 ], [ 368593.700400002300739, 254481.975499998778105 ], [ 368598.552699998021126, 254480.326499998569489 ], [ 368603.387000001966953, 254480.788199998438358 ], [ 368608.242799997329712, 254478.717000000178814 ], [ 368618.708700001239777, 254480.702500000596046 ], [ 368634.829499997198582, 254481.467799998819828 ], [ 368647.775499999523163, 254476.296399999409914 ], [ 368652.604400001466274, 254477.391399998217821 ], [ 368657.476400002837181, 254473.420499999076128 ], [ 368663.926899999380112, 254473.473299998790026 ], [ 368676.053999997675419, 254469.772799998521805 ], [ 368682.545800000429153, 254464.970800001174212 ], [ 368685.803400002419949, 254461.197799999266863 ], [ 368686.658299997448921, 254455.505300000309944 ], [ 368685.96169999986887, 254442.622900001704693 ], [ 368681.192100003361702, 254434.562300000339746 ], [ 368663.796700000762939, 254394.100999999791384 ], [ 368660.679399996995926, 254381.40989999845624 ], [ 368661.019199997186661, 254341.515999998897314 ], [ 368661.964000001549721, 254325.269499998539686 ], [ 368668.614100001752377, 254301.892599999904633 ], [ 368672.73200000077486, 254291.793800000101328 ], [ 368674.420100003480911, 254282.941700000315905 ], [ 368678.534400001168251, 254273.265000000596046 ], [ 368671.338699996471405, 254266.028999999165535 ], [ 368649.62219999730587, 254259.518399998545647 ], [ 368590.784800000488758, 254256.292599998414516 ], [ 368567.549199998378754, 254238.79280000180006 ], [ 368544.913099996745586, 254245.573600001633167 ], [ 368543.296899996697903, 254245.982599999755621 ], [ 368540.057199999690056, 254247.644799999892712 ], [ 368538.406900003552437, 254252.064300000667572 ], [ 368538.369099996984005, 254256.496899999678135 ], [ 368539.953000001609325, 254259.88740000128746 ], [ 368547.717600002884865, 254294.992499999701977 ], [ 368548.504100002348423, 254297.320900000631809 ], [ 368550.0574000030756, 254304.299699999392033 ], [ 368559.767300002276897, 254300.368400000035763 ], [ 368586.247900001704693, 254315.572799999266863 ], [ 368607.843999996781349, 254336.225600000470877 ], [ 368597.878700003027916, 254370.130100000649691 ], [ 368539.924900002777576, 254357.834600001573563 ], [ 368524.473700001835823, 254373.117899999022484 ], [ 368564.762299999594688, 254376.614100001752377 ], [ 368580.006800003349781, 254385.604800000786781 ], [ 368556.316200003027916, 254421.50789999961853 ], [ 368567.374399997293949, 254448.618400000035763 ], [ 368570.337099999189377, 254479.46229999884963 ], [ 368571.042700000107288, 254491.289299998432398 ] ], [ [ 368576.991200000047684, 254266.312199998646975 ], [ 368581.827299997210503, 254266.562899999320507 ], [ 368609.990599997341633, 254273.54839999973774 ], [ 368644.658500000834465, 254274.254299998283386 ], [ 368658.383799999952316, 254272.255699999630451 ], [ 368660.795500002801418, 254273.119899999350309 ], [ 368662.38120000064373, 254276.299199998378754 ], [ 368657.370700001716614, 254296.523200001567602 ], [ 368644.192800000309944, 254328.923799999058247 ], [ 368644.138800002634525, 254335.256099998950958 ], [ 368641.660499997437, 254342.201900001615286 ], [ 368641.617399998009205, 254347.267799999564886 ], [ 368638.384900003671646, 254348.085700001567602 ], [ 368635.16330000013113, 254347.637200001627207 ], [ 368631.185699999332428, 254341.271800000220537 ], [ 368626.364000000059605, 254339.332499999552965 ], [ 368613.570900000631809, 254326.562199998646975 ], [ 368599.15429999679327, 254315.045200001448393 ], [ 368591.172100000083447, 254305.480599999427795 ], [ 368583.123400002717972, 254303.725999999791384 ], [ 368578.332299999892712, 254298.198300000280142 ], [ 368577.55290000140667, 254295.025600001215935 ], [ 368574.331299997866154, 254294.576999999582767 ], [ 368572.733000002801418, 254292.875199999660254 ], [ 368570.344700001180172, 254289.267000000923872 ], [ 368568.020999997854233, 254278.060100000351667 ], [ 368568.062399998307228, 254273.205299999564886 ], [ 368570.515500001609325, 254269.214600000530481 ], [ 368574.57039999961853, 254266.503499999642372 ], [ 368576.991200000047684, 254266.312199998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804010900", "MAP": "D9-2681-T84", "PARCEL_NAM": "7-G", "ACRE": "0.763", "LONGITUDE": -64.83898321, "LATITUDE": 18.31865595, "OBJECTID_1": 41802, "PARCEL_NO_": "107804010900", "Tax_Legal_": "NAZARETH 7-G RED HOOK QTR.", "Name": "VIEWPOINT LLC", "Address": "P O BOX 3040 KINGSHILL", "City": "ST CROIX", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 432100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 234.08027879900001, "SHAPE_Area": 2811.3143191300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368556.316200003027916, 254421.50789999961853 ], [ 368498.243699997663498, 254423.143500000238419 ], [ 368500.637500002980232, 254426.118400000035763 ], [ 368515.826200000941753, 254441.65260000154376 ], [ 368521.402000002563, 254449.719799999147654 ], [ 368522.969700001180172, 254455.009899999946356 ], [ 368523.698700003325939, 254464.0929000005126 ], [ 368520.342200003564358, 254479.475299999117851 ], [ 368567.111900001764297, 254479.435899998992682 ], [ 368570.337099999189377, 254479.46229999884963 ], [ 368567.374399997293949, 254448.618400000035763 ], [ 368556.316200003027916, 254421.50789999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804010400", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-B-1", "ACRE": "0.765", "LONGITUDE": -64.83970698, "LATITUDE": 18.31857406, "OBJECTID_1": 41797, "PARCEL_NO_": "107804010400", "Tax_Legal_": "NAZARETH 7B-1 RED HOOK QTR.", "Name": "BP WATERPOINT RESIDENCE LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 388900, "Improved_V": 1070400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.59446942, "SHAPE_Area": 3346.19281426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368474.961400002241135, 254411.131700001657009 ], [ 368473.346900001168251, 254411.329599998891354 ], [ 368457.962300002574921, 254418.803100001066923 ], [ 368444.226199999451637, 254422.06810000166297 ], [ 368420.839500002563, 254422.298900000751019 ], [ 368413.562899999320507, 254424.5614 ], [ 368417.385899998247623, 254449.079500000923872 ], [ 368462.465700000524521, 254458.103300001472235 ], [ 368505.1300999969244, 254466.685199998319149 ], [ 368510.783299997448921, 254465.675999999046326 ], [ 368514.039099998772144, 254462.114000000059605 ], [ 368513.297499999403954, 254454.508600000292063 ], [ 368510.127999998629093, 254447.938700001686811 ], [ 368490.93299999833107, 254429.416499998420477 ], [ 368482.967000000178814, 254417.952199999243021 ], [ 368481.39750000089407, 254412.873199999332428 ], [ 368478.188400000333786, 254410.94709999859333 ], [ 368474.961400002241135, 254411.131700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804011000", "MAP": "D9-2681-T84", "PARCEL_NAM": "7-H", "ACRE": "0.826", "LONGITUDE": -64.83906292, "LATITUDE": 18.31819751, "OBJECTID_1": 41803, "PARCEL_NO_": "107804011000", "Tax_Legal_": "NAZARETH 7-H RED HOOK QTR.", "Name": "NOBLE, CRISTINA", "Address": "1000 Blackbeards Hl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 394700, "Improved_V": 2210800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.99890874, "SHAPE_Area": 3347.0432674399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368524.473700001835823, 254373.117899999022484 ], [ 368522.862899996340275, 254372.893699999898672 ], [ 368489.579300001263618, 254399.00789999961853 ], [ 368487.955899998545647, 254400.261199999600649 ], [ 368487.907300002872944, 254405.960400000214577 ], [ 368491.87950000166893, 254412.95890000090003 ], [ 368494.262500002980232, 254417.200300000607967 ], [ 368495.85360000282526, 254419.746500000357628 ], [ 368498.243699997663498, 254423.143500000238419 ], [ 368556.316200003027916, 254421.50789999961853 ], [ 368580.006800003349781, 254385.604800000786781 ], [ 368564.762299999594688, 254376.614100001752377 ], [ 368524.473700001835823, 254373.117899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804011200", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-J", "ACRE": "0.91", "LONGITUDE": -64.83813473, "LATITUDE": 18.31676399, "OBJECTID_1": 41805, "PARCEL_NO_": "107804011200", "Tax_Legal_": "NAZARETH 7-J RED HOOK QTR.", "Name": "7J WATERPOINT LLC", "Address": "6501 Red Hook Plz Ste 201 PMB 1058", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 610600, "Improved_V": 1550500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.23156704600001, "SHAPE_Area": 3506.52426702 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368685.049599997699261, 254265.719000000506639 ], [ 368651.673600003123283, 254208.028400000184774 ], [ 368621.723200000822544, 254221.504299998283386 ], [ 368582.906900003552437, 254234.485500000417233 ], [ 368567.549199998378754, 254238.79280000180006 ], [ 368590.784800000488758, 254256.292599998414516 ], [ 368649.62219999730587, 254259.518399998545647 ], [ 368671.338699996471405, 254266.028999999165535 ], [ 368678.534400001168251, 254273.265000000596046 ], [ 368685.049599997699261, 254265.719000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804011300", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-K", "ACRE": "0.76", "LONGITUDE": -64.83758794000001, "LATITUDE": 18.3165697, "OBJECTID_1": 41806, "PARCEL_NO_": "107804011300", "Tax_Legal_": "NAZARETH ESTATE 7K No.1 RED HOOK QTR.", "Name": "WHY KNOT ESCAPE LLC", "Address": "14645 Scenic Hwy", "City": "Lookout Mountain", "State": "Georgia", "Zip": 30750, "Country": "United States", "Land_Value": 600000, "Improved_V": 2550000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.37951225200001, "SHAPE_Area": 3332.15146469 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368728.912399999797344, 254228.292199999094009 ], [ 368695.491400003433228, 254175.878600001335144 ], [ 368689.769900001585484, 254184.9087999984622 ], [ 368682.459100000560284, 254191.181800000369549 ], [ 368651.673600003123283, 254208.028400000184774 ], [ 368685.049599997699261, 254265.719000000506639 ], [ 368697.273800000548363, 254250.620299998670816 ], [ 368728.912399999797344, 254228.292199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804011400", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-L", "ACRE": "0.80", "LONGITUDE": -64.83717416, "LATITUDE": 18.31629562, "OBJECTID_1": 41807, "PARCEL_NO_": "107804011400", "Tax_Legal_": "NAZARETH 7-L RED HOOK QTR.", "Name": "DAVID D MORGAN DESCENDANTS TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 464800, "Improved_V": 2224000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.52991877900001, "SHAPE_Area": 3207.4700615000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368770.133199997246265, 254217.019499998539686 ], [ 368746.48870000243187, 254152.864599999040365 ], [ 368731.130999997258186, 254157.171900000423193 ], [ 368713.327399998903275, 254164.625500001013279 ], [ 368700.361699998378754, 254172.11879999935627 ], [ 368695.491400003433228, 254175.878600001335144 ], [ 368728.912399999797344, 254228.292199999094009 ], [ 368733.780799999833107, 254224.743500001728535 ], [ 368741.066399998962879, 254221.425599999725819 ], [ 368749.95380000025034, 254219.38740000128746 ], [ 368762.858400002121925, 254219.070900000631809 ], [ 368770.133199997246265, 254217.019499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804011500", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-M-1", "ACRE": "0.81", "LONGITUDE": -64.83669044, "LATITUDE": 18.31619367, "OBJECTID_1": 41808, "PARCEL_NO_": "107804011500", "Tax_Legal_": "NAZARETH 7-M-1 RED HOOK QTR.", "Name": "Brian & Heather Samelson Declaration& Agreent Trus", "Address": "4971 Bonita Bay Boulevard Unit 2604", "City": "Bonita Springs", "State": "Florida", "Zip": 341340000, "Country": "United States", "Land_Value": 578900, "Improved_V": 1617200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.527344191, "SHAPE_Area": 3371.6355204699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368827.485699996352196, 254205.245400000363588 ], [ 368806.157600000500679, 254153.1418999992311 ], [ 368780.377199999988079, 254150.397799998521805 ], [ 368757.795100003480911, 254150.846200000494719 ], [ 368746.48870000243187, 254152.864599999040365 ], [ 368770.133199997246265, 254217.019499998539686 ], [ 368771.747599996626377, 254216.821600001305342 ], [ 368773.381800003349781, 254214.30180000141263 ], [ 368781.488099999725819, 254209.301899999380112 ], [ 368803.317900002002716, 254202.514499999582767 ], [ 368812.181900002062321, 254203.220400001853704 ], [ 368823.443300001323223, 254206.478900000452995 ], [ 368827.485699996352196, 254205.245400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107804019900", "MAP": "D9-2681-T84", "PARCEL_NAM": "7-8", "ACRE": "0.434", "LONGITUDE": -64.83942656000001, "LATITUDE": 18.31880906, "OBJECTID_1": 41809, "PARCEL_NO_": "107804019900", "Tax_Legal_": "NAZARETH 7-3 THRU 7-11 RED HOOK QTR.", "Name": "WATERPOINT ESTATES PROPERTY OW", "Address": "6221 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 361.10989533600002, "SHAPE_Area": 1542.8452743400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368474.961400002241135, 254411.131700001657009 ], [ 368478.188400000333786, 254410.94709999859333 ], [ 368481.39750000089407, 254412.873199999332428 ], [ 368482.967000000178814, 254417.952199999243021 ], [ 368490.93299999833107, 254429.416499998420477 ], [ 368510.127999998629093, 254447.938700001686811 ], [ 368513.297499999403954, 254454.508600000292063 ], [ 368514.039099998772144, 254462.114000000059605 ], [ 368513.178900003433228, 254468.439800001680851 ], [ 368513.162699997425079, 254470.339499998837709 ], [ 368512.313199996948242, 254475.398800000548363 ], [ 368507.410599999129772, 254482.958000000566244 ], [ 368504.971900001168251, 254485.260099999606609 ], [ 368496.883599996566772, 254488.14919999986887 ], [ 368487.179099999368191, 254491.447299998253584 ], [ 368479.094400003552437, 254493.914200000464916 ], [ 368472.631300002336502, 254495.339000001549721 ], [ 368463.747400000691414, 254496.954999998211861 ], [ 368459.710500001907349, 254497.555300001055002 ], [ 368454.060900002717972, 254498.142299998551607 ], [ 368452.464500002563, 254496.229400001466274 ], [ 368446.820299997925758, 254496.183200001716614 ], [ 368446.795100003480911, 254499.138300001621246 ], [ 368444.36540000140667, 254500.385000001639128 ], [ 368444.300599999725819, 254507.983800001442432 ], [ 368462.055699996650219, 254506.229299999773502 ], [ 368483.858499996364117, 254502.6081000007689 ], [ 368493.561200000345707, 254499.521099999547005 ], [ 368500.8378000035882, 254497.258600000292063 ], [ 368509.744999997317791, 254492.898499999195337 ], [ 368514.620700001716614, 254488.505499999970198 ], [ 368520.342200003564358, 254479.475299999117851 ], [ 368523.698700003325939, 254464.0929000005126 ], [ 368522.969700001180172, 254455.009899999946356 ], [ 368521.402000002563, 254449.719799999147654 ], [ 368515.826200000941753, 254441.65260000154376 ], [ 368500.637500002980232, 254426.118400000035763 ], [ 368498.243699997663498, 254423.143500000238419 ], [ 368495.85360000282526, 254419.746500000357628 ], [ 368494.262500002980232, 254417.200300000607967 ], [ 368491.87950000166893, 254412.95890000090003 ], [ 368487.907300002872944, 254405.960400000214577 ], [ 368487.955899998545647, 254400.261199999600649 ], [ 368474.961400002241135, 254411.131700001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107804019900", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-4", "ACRE": "0.078", "LONGITUDE": -64.83946138, "LATITUDE": 18.31881881, "OBJECTID_1": 41809, "PARCEL_NO_": "107804019900", "Tax_Legal_": "NAZARETH 7-3 THRU 7-11 RED HOOK QTR.", "Name": "WATERPOINT ESTATES PROPERTY OW", "Address": "6221 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.876658319, "SHAPE_Area": 412.49527849600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368507.410599999129772, 254482.958000000566244 ], [ 368512.313199996948242, 254475.398800000548363 ], [ 368513.162699997425079, 254470.339499998837709 ], [ 368513.178900003433228, 254468.439800001680851 ], [ 368514.039099998772144, 254462.114000000059605 ], [ 368510.783299997448921, 254465.675999999046326 ], [ 368505.1300999969244, 254466.685199998319149 ], [ 368462.465700000524521, 254458.103300001472235 ], [ 368461.601800002157688, 254464.851199999451637 ], [ 368503.456399999558926, 254473.848600000143051 ], [ 368507.453699998557568, 254477.892099998891354 ], [ 368507.410599999129772, 254482.958000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107804019900", "MAP": "D9-2683-T84", "PARCEL_NAM": "7-9", "ACRE": "0.635", "LONGITUDE": -64.83774891, "LATITUDE": 18.31628085, "OBJECTID_1": 41809, "PARCEL_NO_": "107804019900", "Tax_Legal_": "NAZARETH 7-3 THRU 7-11 RED HOOK QTR.", "Name": "WATERPOINT ESTATES PROPERTY OW", "Address": "6221 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 592.54356084100004, "SHAPE_Area": 2609.1933633899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368695.491400003433228, 254175.878600001335144 ], [ 368700.361699998378754, 254172.11879999935627 ], [ 368713.327399998903275, 254164.625500001013279 ], [ 368731.130999997258186, 254157.171900000423193 ], [ 368746.48870000243187, 254152.864599999040365 ], [ 368757.795100003480911, 254150.846200000494719 ], [ 368780.377199999988079, 254150.397799998521805 ], [ 368806.157600000500679, 254153.1418999992311 ], [ 368807.041299998760223, 254144.07209999859333 ], [ 368782.067100003361702, 254141.334600001573563 ], [ 368754.647100001573563, 254141.743400000035763 ], [ 368731.210100002586842, 254147.884399998933077 ], [ 368720.693899996578693, 254151.809099998325109 ], [ 368709.36599999666214, 254156.360500000417233 ], [ 368694.7804000005126, 254164.684799998998642 ], [ 368685.837200000882149, 254173.266499999910593 ], [ 368683.375100001692772, 254178.312600001692772 ], [ 368680.119300000369549, 254181.874499998986721 ], [ 368662.288699999451637, 254192.494300000369549 ], [ 368641.231100000441074, 254203.298900000751019 ], [ 368623.423900000751019, 254211.174699999392033 ], [ 368608.059000000357628, 254216.326299998909235 ], [ 368576.524700000882149, 254226.411699999123812 ], [ 368567.631899997591972, 254229.083200000226498 ], [ 368542.576899997889996, 254235.844200000166893 ], [ 368544.913099996745586, 254245.573600001633167 ], [ 368567.549199998378754, 254238.79280000180006 ], [ 368582.906900003552437, 254234.485500000417233 ], [ 368621.723200000822544, 254221.504299998283386 ], [ 368651.673600003123283, 254208.028400000184774 ], [ 368682.459100000560284, 254191.181800000369549 ], [ 368689.769900001585484, 254184.9087999984622 ], [ 368695.491400003433228, 254175.878600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107804019900", "MAP": "D9-2682-T84", "PARCEL_NAM": "7-3", "ACRE": "0.6", "LONGITUDE": -64.84038537000001, "LATITUDE": 18.31838316, "OBJECTID_1": 41809, "PARCEL_NO_": "107804019900", "Tax_Legal_": "NAZARETH 7-3 THRU 7-11 RED HOOK QTR.", "Name": "WATERPOINT ESTATES PROPERTY OW", "Address": "6221 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 450.29991020699998, "SHAPE_Area": 2677.2041704200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368282.281499996781349, 254406.177200000733137 ], [ 368290.697400003671646, 254412.506499998271465 ], [ 368295.902500003576279, 254416.42119999974966 ], [ 368328.75450000166893, 254440.965900000184774 ], [ 368330.370700001716614, 254440.55689999833703 ], [ 368357.029399998486042, 254434.864500001072884 ], [ 368387.679999999701977, 254433.848799999803305 ], [ 368394.953000001609325, 254432.008400000631809 ], [ 368413.562899999320507, 254424.5614 ], [ 368420.839500002563, 254422.298900000751019 ], [ 368444.226199999451637, 254422.06810000166297 ], [ 368457.962300002574921, 254418.803100001066923 ], [ 368473.346900001168251, 254411.329599998891354 ], [ 368474.961400002241135, 254411.131700001657009 ], [ 368487.955899998545647, 254400.261199999600649 ], [ 368475.93129999935627, 254391.93019999936223 ], [ 368447.96509999781847, 254398.32319999858737 ], [ 368446.817800000309944, 254401.824400000274181 ], [ 368441.93129999935627, 254407.483899999409914 ], [ 368440.30969999730587, 254408.526099998503923 ], [ 368400.717699997127056, 254417.912399999797344 ], [ 368360.3462999984622, 254424.125799998641014 ], [ 368344.196699999272823, 254426.737900000065565 ], [ 368335.325499996542931, 254426.876400001347065 ], [ 368328.07940000295639, 254425.550500001758337 ], [ 368319.242399998009205, 254421.67850000038743 ], [ 368306.436700001358986, 254410.38569999858737 ], [ 368296.006800003349781, 254404.178599998354912 ], [ 368291.987800002098083, 254402.668099999427795 ], [ 368287.95440000295639, 254402.846200000494719 ], [ 368282.281499996781349, 254406.177200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107804019900", "MAP": "D9-2685-T84", "PARCEL_NAM": "7-5", "ACRE": "0.436", "LONGITUDE": -64.8390898, "LATITUDE": 18.31750638, "OBJECTID_1": 41809, "PARCEL_NO_": "107804019900", "Tax_Legal_": "NAZARETH 7-3 THRU 7-11 RED HOOK QTR.", "Name": "WATERPOINT ESTATES PROPERTY OW", "Address": "6221 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 412.66430583599998, "SHAPE_Area": 1887.62628743 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368544.913099996745586, 254245.573600001633167 ], [ 368542.576899997889996, 254235.844200000166893 ], [ 368538.374300003051758, 254237.686299998313189 ], [ 368533.849899999797344, 254239.75 ], [ 368530.399499997496605, 254245.454799998551607 ], [ 368527.107699997723103, 254253.238400001078844 ], [ 368527.849299997091293, 254260.843800000846386 ], [ 368528.628600001335144, 254264.016600001603365 ], [ 368534.893899999558926, 254285.810499999672174 ], [ 368540.390600003302097, 254303.165199998766184 ], [ 368541.936700001358986, 254310.988299999386072 ], [ 368542.698100000619888, 254316.271800000220537 ], [ 368543.401900000870228, 254328.309900000691414 ], [ 368540.887699998915195, 254339.477299999445677 ], [ 368536.778800003230572, 254348.520700000226498 ], [ 368522.965400002896786, 254360.862199999392033 ], [ 368505.905100002884865, 254375.710200000554323 ], [ 368489.674599997699261, 254387.820799998939037 ], [ 368481.588100001215935, 254390.498799998313189 ], [ 368475.93129999935627, 254391.93019999936223 ], [ 368487.955899998545647, 254400.261199999600649 ], [ 368489.579300001263618, 254399.00789999961853 ], [ 368522.862899996340275, 254372.893699999898672 ], [ 368524.473700001835823, 254373.117899999022484 ], [ 368539.924900002777576, 254357.834600001573563 ], [ 368544.800499998033047, 254353.441500000655651 ], [ 368547.251800000667572, 254349.661899998784065 ], [ 368548.885999999940395, 254347.142099998891354 ], [ 368549.708499997854233, 254345.249000001698732 ], [ 368551.382299996912479, 254338.08559999987483 ], [ 368552.233599998056889, 254332.815200001001358 ], [ 368552.391800001263618, 254314.240200001746416 ], [ 368550.0574000030756, 254304.299699999392033 ], [ 368548.504100002348423, 254297.320900000631809 ], [ 368547.717600002884865, 254294.992499999701977 ], [ 368539.953000001609325, 254259.88740000128746 ], [ 368538.369099996984005, 254256.496899999678135 ], [ 368538.406900003552437, 254252.064300000667572 ], [ 368540.057199999690056, 254247.644799999892712 ], [ 368544.913099996745586, 254245.573600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107804011100", "MAP": "D9-2681-T84", "PARCEL_NAM": "7-I", "ACRE": "0.753", "LONGITUDE": -64.83866936, "LATITUDE": 18.31764587, "OBJECTID_1": 41804, "PARCEL_NO_": "107804011100", "Tax_Legal_": "NAZARETH 7-I RED HOOK QTR.", "Name": "GRUBER, PATRICIA M.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 445800, "Improved_V": 1752600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.09187496600001, "SHAPE_Area": 2848.1662583399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368550.0574000030756, 254304.299699999392033 ], [ 368552.391800001263618, 254314.240200001746416 ], [ 368552.233599998056889, 254332.815200001001358 ], [ 368551.382299996912479, 254338.08559999987483 ], [ 368549.708499997854233, 254345.249000001698732 ], [ 368548.885999999940395, 254347.142099998891354 ], [ 368547.251800000667572, 254349.661899998784065 ], [ 368544.800499998033047, 254353.441500000655651 ], [ 368539.924900002777576, 254357.834600001573563 ], [ 368597.878700003027916, 254370.130100000649691 ], [ 368607.843999996781349, 254336.225600000470877 ], [ 368586.247900001704693, 254315.572799999266863 ], [ 368559.767300002276897, 254300.368400000035763 ], [ 368550.0574000030756, 254304.299699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303240600", "MAP": "D9-9234-T018", "PARCEL_NAM": "68", "ACRE": "0.03", "LONGITUDE": -64.94221877, "LATITUDE": 18.33737637, "OBJECTID_1": 11138, "PARCEL_NO_": "105303240600", "Tax_Legal_": "ALTONA 68 CROWN PRINCE", "Name": "TRUST AGREEMENT OF CHARLES A BERRY", "Address": "PO Box 11583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 8300, "Improved_V": 16800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.006188493700002, "SHAPE_Area": 134.083690889 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357620.673699997365475, 256426.442099999636412 ], [ 357617.592600002884865, 256426.149700000882149 ], [ 357613.752199999988079, 256425.785199999809265 ], [ 357602.37049999833107, 256426.357500001788139 ], [ 357603.965000003576279, 256436.153400000184774 ], [ 357621.626000002026558, 256430.530999999493361 ], [ 357620.673699997365475, 256426.442099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107403010300", "MAP": "A9-728-T008", "PARCEL_NAM": "100-2", "ACRE": "4.21", "LONGITUDE": -64.91384779000001, "LATITUDE": 18.31855195, "OBJECTID_1": 33294, "PARCEL_NO_": "107403010300", "Tax_Legal_": "100-1, 100-2, 100-3 & EASTMENTS FRENCHMANS BAY No.4 FRENCHMANS BAY QTR", "Name": "WORLDMARK,THE CLUB", "Address": "9805 WILLOWS ROAD", "City": "Redmond", "State": "Washington", "Zip": 980522540, "Country": "United States", "Land_Value": 1024200, "Improved_V": 871400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 947.11666563100005, "SHAPE_Area": 20869.625992599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360801.989799998700619, 254390.827899999916553 ], [ 360750.182899996638298, 254333.976199999451637 ], [ 360718.763599999248981, 254348.859000001102686 ], [ 360663.862400002777576, 254362.749699998646975 ], [ 360641.042099997401237, 254372.340799998492002 ], [ 360620.867499999701977, 254386.892900001257658 ], [ 360611.607100002467632, 254389.538800001144409 ], [ 360591.101899996399879, 254383.916400000452995 ], [ 360587.133100003004074, 254363.080400001257658 ], [ 360571.588799998164177, 254343.89809999987483 ], [ 360553.067900002002716, 254333.314699999988079 ], [ 360547.445500001311302, 254319.754799999296665 ], [ 360577.195299997925758, 254282.914799999445677 ], [ 360572.018799997866154, 254283.9662000015378 ], [ 360551.855599999427795, 254284.434500001370907 ], [ 360541.387900002300739, 254282.660000000149012 ], [ 360532.572400003671646, 254276.255100000649691 ], [ 360529.401100002229214, 254269.896299999207258 ], [ 360528.627199999988079, 254266.090300001204014 ], [ 360526.242399998009205, 254262.059999998658895 ], [ 360522.237800002098083, 254258.860800001770258 ], [ 360515.783699996769428, 254259.230200000107288 ], [ 360514.158500000834465, 254260.694499999284744 ], [ 360510.119800001382828, 254261.505899999290705 ], [ 360508.541299998760223, 254257.482200000435114 ], [ 360503.710600003600121, 254256.598299998790026 ], [ 360494.805200003087521, 254260.74720000103116 ], [ 360489.134099997580051, 254263.867199998348951 ], [ 360485.125900000333786, 254261.090199999511242 ], [ 360482.710500001907349, 254260.648299999535084 ], [ 360476.243900001049042, 254262.495200000703335 ], [ 360505.61710000038147, 254316.775499999523163 ], [ 360544.504199996590614, 254390.132199998944998 ], [ 360548.462099999189377, 254398.819400001317263 ], [ 360577.833499997854233, 254453.3108000010252 ], [ 360590.766800001263618, 254449.616999998688698 ], [ 360652.195799998939037, 254432.598999999463558 ], [ 360718.475299999117851, 254414.14299999922514 ], [ 360758.081699997186661, 254403.068199999630451 ], [ 360801.989799998700619, 254390.827899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107403010300", "MAP": "A9-728-T008", "PARCEL_NAM": "100-3", "ACRE": "4.94", "LONGITUDE": -64.91259709000001, "LATITUDE": 18.31734195, "OBJECTID_1": 33294, "PARCEL_NO_": "107403010300", "Tax_Legal_": "100-1, 100-2, 100-3 & EASTMENTS FRENCHMANS BAY No.4 FRENCHMANS BAY QTR", "Name": "WORLDMARK,THE CLUB", "Address": "9805 WILLOWS ROAD", "City": "Redmond", "State": "Washington", "Zip": 980522540, "Country": "United States", "Land_Value": 1024200, "Improved_V": 871400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 804.72020520800004, "SHAPE_Area": 20653.040535200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360679.659400001168251, 254237.773299999535084 ], [ 360690.982299998402596, 254253.608800001442432 ], [ 360726.701099999248981, 254251.293699998408556 ], [ 360731.992799997329712, 254254.931699998676777 ], [ 360726.039599999785423, 254303.879799999296665 ], [ 360787.555399999022484, 254316.447500001639128 ], [ 360845.102399997413158, 254304.871899999678135 ], [ 360854.0320999994874, 254333.645399998873472 ], [ 360857.498999997973442, 254368.714699998497963 ], [ 360860.796300001442432, 254367.17850000038743 ], [ 360861.537900000810623, 254374.784000001847744 ], [ 360863.141500003635883, 254375.852600000798702 ], [ 360864.782899998128414, 254372.488499999046326 ], [ 360879.5320999994874, 254344.956000000238419 ], [ 360881.266999997198582, 254330.615800000727177 ], [ 360873.385499998927116, 254309.230900000780821 ], [ 360867.023100003600121, 254298.835200000554323 ], [ 360803.955600000917912, 254224.22520000115037 ], [ 360755.257799997925758, 254166.620299998670816 ], [ 360752.930600002408028, 254155.835400000214577 ], [ 360748.085500001907349, 254156.6402000002563 ], [ 360743.251199997961521, 254156.178399998694658 ], [ 360740.056599996984005, 254152.563700001686811 ], [ 360740.096100002527237, 254147.919900000095367 ], [ 360736.883500002324581, 254146.416000001132488 ], [ 360729.614100001752377, 254147.834100000560284 ], [ 360726.415799997746944, 254144.641600001603365 ], [ 360726.4391999989748, 254141.89750000089407 ], [ 360730.540799997746944, 254133.698499999940395 ], [ 360730.5641999989748, 254130.9543999992311 ], [ 360728.97860000282526, 254127.775100000202656 ], [ 360724.959600001573563, 254126.264499999582767 ], [ 360721.721799999475479, 254127.715700000524521 ], [ 360716.837099999189377, 254133.164099998772144 ], [ 360714.412799999117851, 254133.77760000154376 ], [ 360707.98929999768734, 254130.558600001037121 ], [ 360703.946900002658367, 254131.792100001126528 ], [ 360689.467500001192093, 254127.662799999117851 ], [ 360683.79450000077486, 254130.99379999935627 ], [ 360680.491899996995926, 254140.043800000101328 ], [ 360679.638899996876717, 254145.525299999862909 ], [ 360676.38120000064373, 254149.298300001770258 ], [ 360668.305500000715256, 254150.709899999201298 ], [ 360662.575000002980232, 254160.795400001108646 ], [ 360662.517499998211861, 254167.550000000745058 ], [ 360667.295999996364117, 254174.55519999936223 ], [ 360676.804499998688698, 254194.264699999243021 ], [ 360681.527300000190735, 254207.813299998641014 ], [ 360681.408699996769428, 254221.744500000029802 ], [ 360679.659400001168251, 254237.773299999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "103004015800", "MAP": "B9-244-T69", "PARCEL_NAM": "1E", "ACRE": "1.01", "LONGITUDE": -64.90046755, "LATITUDE": 18.35635585, "OBJECTID_1": 5994, "PARCEL_NO_": "103004015800", "Tax_Legal_": "MANDAHL 1E GR NORTHSIDE", "Name": "QUERRARD, LOUIS CHARLES E", "Address": "3 HC", "City": "Guaynabo", "State": "Puerto Rico", "Zip": 971, "Country": "United States", "Land_Value": 97000, "Improved_V": 170000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.60430643500001, "SHAPE_Area": 3627.1359900799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362041.289599999785423, 258568.380399998277426 ], [ 362034.048699997365475, 258533.635400000959635 ], [ 362010.624300003051758, 258538.298799999058247 ], [ 361987.991800002753735, 258544.657499998807907 ], [ 361964.547600001096725, 258551.642799999564886 ], [ 361981.88400000333786, 258600.137600000947714 ], [ 362044.985600002110004, 258586.115299999713898 ], [ 362041.289599999785423, 258568.380399998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "A9-45-T65", "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.89777885, "LATITUDE": 18.31323684, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.666675922, "SHAPE_Area": 487.55238453099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362356.194899998605251, 253785.044100001454353 ], [ 362341.773400001227856, 253772.210799999535084 ], [ 362325.168700002133846, 253798.44539999961853 ], [ 362281.99719999730587, 253849.387800000607967 ], [ 362284.257200002670288, 253850.626400001347065 ], [ 362287.280799999833107, 253845.791000001132488 ], [ 362302.203299999237061, 253828.751800000667572 ], [ 362323.158399999141693, 253803.669300001114607 ], [ 362356.194899998605251, 253785.044100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89744481, "LATITUDE": 18.3128799, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.66297508, "SHAPE_Area": 527.70373333400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362370.560599997639656, 253769.671500001102686 ], [ 362396.909999996423721, 253741.475400000810623 ], [ 362362.640399999916553, 253759.302799999713898 ], [ 362343.049400001764297, 253736.287900000810623 ], [ 362342.884099997580051, 253740.941500000655651 ], [ 362361.871899999678135, 253775.266800001263618 ], [ 362370.560599997639656, 253769.671500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89749491000001, "LATITUDE": 18.31316272, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.351543601300001, "SHAPE_Area": 13.813519100800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362356.194899998605251, 253785.044100001454353 ], [ 362368.248400002717972, 253797.764600001275539 ], [ 362357.610500000417233, 253784.245999999344349 ], [ 362356.194899998605251, 253785.044100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "A9-45-T65", "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.89759375, "LATITUDE": 18.31296043, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.91945766400001, "SHAPE_Area": 418.64089553999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362363.158399999141693, 253777.592500001192093 ], [ 362361.871899999678135, 253775.266800001263618 ], [ 362342.884099997580051, 253740.941500000655651 ], [ 362342.057300001382828, 253764.216899998486042 ], [ 362341.855099998414516, 253769.910700000822544 ], [ 362356.194899998605251, 253785.044100001454353 ], [ 362363.158399999141693, 253777.592500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "A9-45-T65", "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.89762912, "LATITUDE": 18.31304367, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.454550550800001, "SHAPE_Area": 17.109686349699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362341.773400001227856, 253772.210799999535084 ], [ 362356.194899998605251, 253785.044100001454353 ], [ 362341.855099998414516, 253769.910700000822544 ], [ 362341.773400001227856, 253772.210799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401020700", "MAP": null, "PARCEL_NAM": "48", "ACRE": null, "LONGITUDE": -64.89769467000001, "LATITUDE": 18.3126058, "OBJECTID_1": 42015, "PARCEL_NO_": "109401020700", "Tax_Legal_": "BOLONGO 48 3 FRENCHMAN BAY", "Name": "NAIK, PRASHANTI", "Address": "PO Box 743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 43600, "Improved_V": 395200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.145981339100004, "SHAPE_Area": 180.095088068 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362343.588500000536442, 253721.112500000745058 ], [ 362343.792599998414516, 253712.736999999731779 ], [ 362336.325499996542931, 253716.60020000115037 ], [ 362336.111299999058247, 253735.111999999731779 ], [ 362342.758799999952316, 253744.468199998140335 ], [ 362342.884099997580051, 253740.941500000655651 ], [ 362343.588500000536442, 253721.112500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "A9-45-T65", "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.89745341, "LATITUDE": 18.3130283, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.833610286700001, "SHAPE_Area": 13.7028315159 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362370.560599997639656, 253769.671500001102686 ], [ 362361.871899999678135, 253775.266800001263618 ], [ 362363.158399999141693, 253777.592500001192093 ], [ 362370.560599997639656, 253769.671500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89707053, "LATITUDE": 18.31274005, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.97839110499999, "SHAPE_Area": 479.34315977799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362396.909999996423721, 253741.475400000810623 ], [ 362370.560599997639656, 253769.671500001102686 ], [ 362436.246699996292591, 253727.371599998325109 ], [ 362431.687600001692772, 253723.383699998259544 ], [ 362396.909999996423721, 253741.475400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "A9-45-T65", "PARCEL_NAM": "54", "ACRE": null, "LONGITUDE": -64.89748942, "LATITUDE": 18.31308998, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 22.970848781400001, "SHAPE_Area": 14.8966050353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362363.158399999141693, 253777.592500001192093 ], [ 362356.194899998605251, 253785.044100001454353 ], [ 362357.610500000417233, 253784.245999999344349 ], [ 362364.645099997520447, 253780.280099999159575 ], [ 362363.158399999141693, 253777.592500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021900", "MAP": "D9-730-T68", "PARCEL_NAM": "55-1", "ACRE": "1.10", "LONGITUDE": -64.89695453, "LATITUDE": 18.31261225, "OBJECTID_1": 42021, "PARCEL_NO_": "109401021900", "Tax_Legal_": "BOLONGO 52,53,54,55-1,57 &58 FRENCHMAN BAY", "Name": "HARBORSIDE CORPORATION", "Address": "7150 Bolongo", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 731800, "Improved_V": 560900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.919566172399996, "SHAPE_Area": 93.261553219000007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362425.813900001347065, 253721.163499999791384 ], [ 362396.909999996423721, 253741.475400000810623 ], [ 362431.687600001692772, 253723.383699998259544 ], [ 362430.643799997866154, 253722.470600001513958 ], [ 362425.816699996590614, 253721.164500001817942 ], [ 362425.813900001347065, 253721.163499999791384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401025100", "MAP": "A9-46-T65", "PARCEL_NAM": "51", "ACRE": null, "LONGITUDE": -64.89616645, "LATITUDE": 18.31335323, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.5878290701, "SHAPE_Area": 259.99508892400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362511.316799998283386, 253822.133699998259544 ], [ 362494.385399997234344, 253787.393699999898672 ], [ 362497.500200003385544, 253825.679200001060963 ], [ 362499.121799997985363, 253824.56700000166893 ], [ 362507.206500001251698, 253822.100099999457598 ], [ 362511.316799998283386, 253822.133699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701040600", "MAP": "D9-5541-T93", "PARCEL_NAM": "1-1B", "ACRE": ".26", "LONGITUDE": -64.8812155, "LATITUDE": 18.34246449, "OBJECTID_1": 22039, "PARCEL_NO_": "105701040600", "Tax_Legal_": "1-1B ANNA'S RETREAT No.NEW QTR.", "Name": "GREGOIRE, MARY & RAPHAEL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38900, "Improved_V": 128800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.723753202, "SHAPE_Area": 906.22456504700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364076.688799999654293, 257038.984900001436472 ], [ 364058.750699996948242, 257029.699700001627207 ], [ 364053.131700001657009, 257026.698399998247623 ], [ 364031.850900001823902, 257054.333099998533726 ], [ 364054.611000001430511, 257066.651399999856949 ], [ 364076.688799999654293, 257038.984900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701040400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-98", "ACRE": ".13", "LONGITUDE": -64.882094, "LATITUDE": 18.34212792, "OBJECTID_1": 22037, "PARCEL_NO_": "105701040400", "Tax_Legal_": "148-97 ANNAS RETREAT NO.1 NEW QTR", "Name": "LIBURD, GENEVIEVE & DAVID", "Address": "PO Box 305818", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 18600, "Improved_V": 129300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.702439767599998, "SHAPE_Area": 541.19337335099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363978.279399998486042, 257004.982700001448393 ], [ 363952.847099997103214, 256994.332100000232458 ], [ 363951.782700002193451, 256996.949099998921156 ], [ 363950.47240000218153, 256999.7668999992311 ], [ 363947.675599999725819, 257005.781399998813868 ], [ 363944.578100003302097, 257012.129799999296665 ], [ 363970.587399996817112, 257022.785000000149012 ], [ 363973.389499999582767, 257016.335499998182058 ], [ 363975.697499997913837, 257011.023200001567602 ], [ 363977.501900002360344, 257006.869899999350309 ], [ 363978.279399998486042, 257004.982700001448393 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203020100", "MAP": "B9-237-T69", "PARCEL_NAM": "17-2", "ACRE": "0.85", "LONGITUDE": -64.94817387000001, "LATITUDE": 18.36579873, "OBJECTID_1": 782, "PARCEL_NO_": "101203020100", "Tax_Legal_": "17-2 ST PETER No.2 LITTLE NORTHSIDE QTR.", "Name": "BRYAN, LINDA MARY", "Address": "PO Box 10969", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 126800, "Improved_V": 27000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.16648174099998, "SHAPE_Area": 3708.2909129200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357039.924800001084805, 259568.778799999505281 ], [ 356971.793700002133846, 259553.373399998992682 ], [ 356950.533600002527237, 259548.566100001335144 ], [ 356906.697800002992153, 259550.858300000429153 ], [ 356911.359600000083447, 259563.627300001680851 ], [ 356910.367200002074242, 259568.65819999948144 ], [ 356910.881099998950958, 259574.178899999707937 ], [ 356910.653399996459484, 259582.14750000089407 ], [ 356909.742700003087521, 259589.660799998790026 ], [ 356911.336499996483326, 259596.718800000846386 ], [ 356917.028399996459484, 259599.678599998354912 ], [ 356927.956799998879433, 259596.718800000846386 ], [ 356936.608400002121925, 259593.531300000846386 ], [ 356944.349399998784065, 259590.116200000047684 ], [ 356958.693000003695488, 259586.473400000482798 ], [ 356973.947200000286102, 259583.513599999248981 ], [ 356988.746100001037121, 259581.236800000071526 ], [ 357013.790399998426437, 259577.366399999707937 ], [ 357027.223300002515316, 259572.812899999320507 ], [ 357039.924800001084805, 259568.778799999505281 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503043300", "MAP": "D9-9032-T015", "PARCEL_NAM": "12B-43 EASEMENT", "ACRE": null, "LONGITUDE": -64.89146858, "LATITUDE": 18.32162078, "OBJECTID_1": 37651, "PARCEL_NO_": "107503043300", "Tax_Legal_": "12B-43 ESTATE BOVONI No.1&2 FRENCHMAN'S BAY QUARTER", "Name": "PREVILUS, VITALENE & MAGDALENA BELLEVUE", "Address": "PO Box 503292", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.538804151899999, "SHAPE_Area": 7.5955132873200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362990.939699999988079, 254726.133600000292063 ], [ 362989.777000002563, 254726.15260000154376 ], [ 362988.859200000762939, 254739.232900001108646 ], [ 362990.939699999988079, 254726.133600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903035100", "MAP": "D9-9038-T015", "PARCEL_NAM": "290A-2", "ACRE": null, "LONGITUDE": -64.92783459, "LATITUDE": 18.3479778, "OBJECTID_1": 4863, "PARCEL_NO_": "102903035100", "Tax_Legal_": "HOSPITAL GROUND 290A GREAT NORTHSIDE QTR", "Name": "VIALET, CLARICE", "Address": "PO Box 663", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 36300, "Improved_V": 167700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.938543908100002, "SHAPE_Area": 71.604007490699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359123.427699998021126, 257623.246100001037121 ], [ 359125.553400002419949, 257609.752399999648333 ], [ 359119.792300000786781, 257610.614199999719858 ], [ 359116.696699999272823, 257611.249200001358986 ], [ 359122.954599998891354, 257626.249200001358986 ], [ 359123.427699998021126, 257623.246100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903035000", "MAP": "D9-9038-T015", "PARCEL_NAM": "290B-1", "ACRE": null, "LONGITUDE": -64.92783203, "LATITUDE": 18.34831401, "OBJECTID_1": 4862, "PARCEL_NO_": "102903035000", "Tax_Legal_": "HOSPITAL GROUND 290B GREAT NORTHSIDE", "Name": "SEELEY, MAVIS & ERIC BLD#7", "Address": "APT. #4 R-2816 8TH AVE", "City": "New York", "State": "New York", "Zip": 10039, "Country": "United States", "Land_Value": 37500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.040670306899997, "SHAPE_Area": 85.824853758200007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359120.057199999690056, 257644.641600001603365 ], [ 359117.252300001680851, 257662.446199998259544 ], [ 359116.679999999701977, 257664.416299998760223 ], [ 359128.04730000346899, 257650.063700001686811 ], [ 359120.057199999690056, 257644.641600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031400", "MAP": "D9-9044-T015", "PARCEL_NAM": "7-2", "ACRE": ".500", "LONGITUDE": -64.96924826, "LATITUDE": 18.36151644, "OBJECTID_1": 451, "PARCEL_NO_": "101103031400", "Tax_Legal_": "NELTJBERG/EASTERN PT. 7 LT. NORTHSIDE", "Name": "BNR PARTNERSHIP", "Address": "6539 Clucksberg", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 196700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.79068618299999, "SHAPE_Area": 2091.5892098 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354698.61710000038147, 259069.44819999858737 ], [ 354711.814099997282028, 259108.024900000542402 ], [ 354738.869400002062321, 259097.0760000012815 ], [ 354766.476499997079372, 259074.714899998158216 ], [ 354757.023699998855591, 259048.462000001221895 ], [ 354729.467000000178814, 259064.912799999117851 ], [ 354719.780500002205372, 259066.100099999457598 ], [ 354707.6587999984622, 259069.167300000786781 ], [ 354698.61710000038147, 259069.44819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031400", "MAP": "D9-9044-T015", "PARCEL_NAM": "7-3", "ACRE": ".50", "LONGITUDE": -64.96970865, "LATITUDE": 18.36167527, "OBJECTID_1": 451, "PARCEL_NO_": "101103031400", "Tax_Legal_": "NELTJBERG/EASTERN PT. 7 LT. NORTHSIDE", "Name": "BNR PARTNERSHIP", "Address": "6539 Clucksberg", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 196700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.33667547499999, "SHAPE_Area": 1938.2513976499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354655.434399999678135, 259081.586800001561642 ], [ 354670.589900001883507, 259124.707800000905991 ], [ 354711.814099997282028, 259108.024900000542402 ], [ 354698.61710000038147, 259069.44819999858737 ], [ 354691.527199998497963, 259069.668499998748302 ], [ 354659.976700000464916, 259081.6537000015378 ], [ 354655.434399999678135, 259081.586800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402099000", "MAP": "D9-9121-T016", "PARCEL_NAM": "D-11-A", "ACRE": "0.00", "LONGITUDE": -64.92174055, "LATITUDE": 18.3445608, "OBJECTID_1": 12675, "PARCEL_NO_": "105402099000", "Tax_Legal_": "D-11 ROSS NO.8 NEW QTR", "Name": "STUARD, PRINCESS", "Address": "PO Box 304405", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 23200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.313370727500001, "SHAPE_Area": 17.863785532400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359775.303099997341633, 257242.023200001567602 ], [ 359766.951099999248981, 257241.206000000238419 ], [ 359764.555200003087521, 257245.249299999326468 ], [ 359775.303099997341633, 257242.023200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107803032600", "MAP": "D9-9050-T016", "PARCEL_NAM": "8-42-1", "ACRE": null, "LONGITUDE": -64.84873885, "LATITUDE": 18.31636928, "OBJECTID_1": 40254, "PARCEL_NO_": "107803032600", "Tax_Legal_": "8-42 NAZARETH No.1 red hook quarter", "Name": "HONEY BADGER I LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 168900, "Improved_V": 548600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.475187309600003, "SHAPE_Area": 139.05002119100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367516.429899998009205, 254176.364100001752377 ], [ 367500.996500000357628, 254196.318799998611212 ], [ 367509.708599999547005, 254195.194699998944998 ], [ 367519.339400000870228, 254186.304699998348951 ], [ 367516.429899998009205, 254176.364100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804021700", "MAP": "D9-9053-T016", "PARCEL_NAM": "11B-3", "ACRE": null, "LONGITUDE": -64.85250715, "LATITUDE": 18.3366639, "OBJECTID_1": 24026, "PARCEL_NO_": "105804021700", "Tax_Legal_": "11B-14 SMITH BAY EAST END QUARTER", "Name": "SANDY COVE LLC", "Address": "PO Box 460245", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33346, "Country": "United States", "Land_Value": 807700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.09464352800001, "SHAPE_Area": 470.67723647700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367106.462399996817112, 256427.067099999636412 ], [ 367083.891599997878075, 256408.723900001496077 ], [ 367083.606700003147125, 256409.063799999654293 ], [ 367091.983499996364117, 256456.284699998795986 ], [ 367106.462399996817112, 256427.067099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804022000", "MAP": "D9-9053-T016", "PARCEL_NAM": "11B-3B-1", "ACRE": null, "LONGITUDE": -64.85252503, "LATITUDE": 18.33692476, "OBJECTID_1": 24029, "PARCEL_NO_": "105804022000", "Tax_Legal_": "SMITH BAY 11B 3A&11B-3B 1,2&3 EAST END QTR", "Name": "GRAULICH, DEBRA J", "Address": "6692 Estate Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 377400, "Improved_V": 6700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 14.1205520189, "SHAPE_Area": 6.6894462898700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367091.983499996364117, 256456.284699998795986 ], [ 367090.430399999022484, 256459.418800000101328 ], [ 367093.108800001442432, 256462.628199998289347 ], [ 367091.983499996364117, 256456.284699998795986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804022000", "MAP": "D9-9053-T016", "PARCEL_NAM": "11B-3A-1", "ACRE": null, "LONGITUDE": -64.85261543, "LATITUDE": 18.33702623, "OBJECTID_1": 24029, "PARCEL_NO_": "105804022000", "Tax_Legal_": "SMITH BAY 11B 3A&11B-3B 1,2&3 EAST END QTR", "Name": "GRAULICH, DEBRA J", "Address": "6692 Estate Tabor & Harmony", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 377400, "Improved_V": 6700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.672907138399999, "SHAPE_Area": 112.13890452699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367090.430399999022484, 256459.418800000101328 ], [ 367070.589299999177456, 256479.474599998444319 ], [ 367072.001900002360344, 256481.764400001615286 ], [ 367078.034400001168251, 256477.532699998468161 ], [ 367079.281000003218651, 256476.658300001174212 ], [ 367093.108800001442432, 256462.628199998289347 ], [ 367090.430399999022484, 256459.418800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105804021700", "MAP": "D9-9053-T016", "PARCEL_NAM": "11B-3-1", "ACRE": null, "LONGITUDE": -64.85240847, "LATITUDE": 18.33677816, "OBJECTID_1": 24026, "PARCEL_NO_": "105804021700", "Tax_Legal_": "11B-14 SMITH BAY EAST END QUARTER", "Name": "SANDY COVE LLC", "Address": "PO Box 460245", "City": "Fort Lauderdale", "State": "Florida", "Zip": 33346, "Country": "United States", "Land_Value": 807700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.345522647099997, "SHAPE_Area": 335.10432360200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367106.462399996817112, 256427.067099999636412 ], [ 367091.983499996364117, 256456.284699998795986 ], [ 367093.108800001442432, 256462.628199998289347 ], [ 367118.21509999781847, 256436.618400000035763 ], [ 367106.462399996817112, 256427.067099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "A3-104-T68", "PARCEL_NAM": "REM 35A", "ACRE": "9.51 (d.)", "LONGITUDE": -64.96430504, "LATITUDE": 18.32686865, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1602.3927995399999, "SHAPE_Area": 35913.382061600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355239.469499997794628, 255325.014199998229742 ], [ 355379.289800003170967, 255323.901599999517202 ], [ 355406.385099999606609, 255324.414900001138449 ], [ 355481.825099997222424, 255245.631700001657009 ], [ 355470.573100000619888, 255245.504399999976158 ], [ 355438.435500003397465, 255245.69310000166297 ], [ 355441.742899999022484, 255249.104699999094009 ], [ 355436.870800003409386, 255253.075599998235703 ], [ 355428.771700002253056, 255257.231199998408556 ], [ 355420.694200001657009, 255258.853799998760223 ], [ 355412.638300001621246, 255257.943500000983477 ], [ 355409.346500001847744, 255265.727000001817942 ], [ 355406.094300001859665, 255268.866799999028444 ], [ 355400.430299997329712, 255271.142499998211861 ], [ 355393.976199999451637, 255271.511900000274181 ], [ 355385.920299999415874, 255270.601500000804663 ], [ 355378.679700002074242, 255268.642400000244379 ], [ 355361.81360000371933, 255260.693900000303984 ], [ 355352.157700002193451, 255258.292899999767542 ], [ 355344.099899999797344, 255257.593699999153614 ], [ 355344.177199997007847, 255248.517299998551607 ], [ 355362.697300001978874, 255251.624200001358986 ], [ 355369.932499997317791, 255254.216499999165535 ], [ 355379.566899999976158, 255259.150499999523163 ], [ 355388.418300002813339, 255261.33390000090003 ], [ 355399.703100003302097, 255261.848400000482798 ], [ 355402.94990000128746, 255259.341899998486042 ], [ 355403.799400001764297, 255254.282600000500679 ], [ 355393.382100000977516, 255246.598000001162291 ], [ 355384.595399998128414, 255236.815699998289347 ], [ 355379.825800001621246, 255228.755100000649691 ], [ 355378.240199998021126, 255225.575800001621246 ], [ 355376.670699998736382, 255220.496700000017881 ], [ 355362.335100002586842, 255199.481100000441074 ], [ 355355.934900000691414, 255193.518100000917912 ], [ 355350.3158999979496, 255190.516800001263618 ], [ 355342.267200000584126, 255188.762200001627207 ], [ 355313.223800003528595, 255190.424300000071526 ], [ 355286.55969999730587, 255196.75 ], [ 355280.089400000870228, 255199.019000001251698 ], [ 355277.670500002801418, 255198.999200001358986 ], [ 355269.526399999856949, 255208.431800000369549 ], [ 355268.700400002300739, 255210.747099999338388 ], [ 355262.179700002074242, 255218.926300000399351 ], [ 355259.708599999547005, 255225.027800001204014 ], [ 355257.26630000025034, 255227.752099998295307 ], [ 355247.392800003290176, 255250.891499999910593 ], [ 355241.556199997663498, 255273.430799998342991 ], [ 355238.720100000500679, 255322.381299998611212 ], [ 355239.469499997794628, 255325.014199998229742 ] ] ], [ [ [ 355232.706500001251698, 255271.036299999803305 ], [ 355238.541299998760223, 255248.708200000226498 ], [ 355247.594200000166893, 255227.250700000673532 ], [ 355259.051600001752377, 255207.5016999989748 ], [ 355272.0945999994874, 255190.932000000029802 ], [ 355292.419699996709824, 255171.466699998825788 ], [ 355298.68299999833107, 255166.730799999088049 ], [ 355223.256300002336502, 255093.800999999046326 ], [ 355218.074600003659725, 255095.497800000011921 ], [ 355214.006999999284744, 255099.6864 ], [ 355213.98369999974966, 255102.430399999022484 ], [ 355216.366599999368191, 255106.671799998730421 ], [ 355221.998199999332428, 255108.195500001311302 ], [ 355222.790200002491474, 255109.890799999237061 ], [ 355221.969499997794628, 255111.572799999266863 ], [ 355217.119000002741814, 255113.010800000280142 ], [ 355211.478399999439716, 255112.542399998754263 ], [ 355209.036100000143051, 255115.266600001603365 ], [ 355207.396499998867512, 255118.419599998742342 ], [ 355208.190200001001358, 255119.903799999505281 ], [ 355218.627300001680851, 255125.266499999910593 ], [ 355221.013899996876717, 255129.085700001567602 ], [ 355220.995899997651577, 255131.19649999961257 ], [ 355216.089699998497963, 255139.17790000140667 ], [ 355209.612199999392033, 255142.291299998760223 ], [ 355206.304300002753735, 255151.974599998444319 ], [ 355206.259300000965595, 255157.251499999314547 ], [ 355207.826999999582767, 255162.541700001806021 ], [ 355211.81360000371933, 255167.851700000464916 ], [ 355215.836199998855591, 255168.940000001341105 ], [ 355218.237099997699261, 255171.070599999278784 ], [ 355218.213799998164177, 255173.814699999988079 ], [ 355201.882500000298023, 255197.745700001716614 ], [ 355199.445600003004074, 255199.83669999986887 ], [ 355194.631099998950958, 255197.052999999374151 ], [ 355190.597699999809265, 255197.231100000441074 ], [ 355187.350900001823902, 255199.737700000405312 ], [ 355184.881599999964237, 255205.628100000321865 ], [ 355180.858999997377396, 255204.539700001478195 ], [ 355177.619400002062321, 255206.201900001615286 ], [ 355180.808700002729893, 255210.44990000128746 ], [ 355187.232199996709824, 255213.6689000017941 ], [ 355185.578199997544289, 255218.510499998927116 ], [ 355179.07379999756813, 255224.790100000798702 ], [ 355174.988300003111362, 255231.089400000870228 ], [ 355170.873999997973442, 255240.766100000590086 ], [ 355171.640799999237061, 255245.416400000452995 ], [ 355176.428300000727177, 255251.366200000047684 ], [ 355177.204000003635883, 255254.961100000888109 ], [ 355176.359999999403954, 255259.387200001627207 ], [ 355170.634900003671646, 255268.839499998837709 ], [ 355167.400600001215935, 255269.868500001728535 ], [ 355163.399599999189377, 255266.24720000103116 ], [ 355160.980700001120567, 255266.227400001138449 ], [ 355149.609600000083447, 255275.8445999994874 ], [ 355147.862099997699261, 255291.662399999797344 ], [ 355149.406400002539158, 255299.69649999961257 ], [ 355154.17230000346899, 255308.179299999028444 ], [ 355157.296899996697903, 255320.026099998503923 ], [ 355157.83049999922514, 255325.663899999111891 ], [ 355229.882799997925758, 255325.090500000864267 ], [ 355229.829099997878075, 255324.841600000858307 ], [ 355230.996799997985363, 255282.421399999409914 ], [ 355232.706500001251698, 255271.036299999803305 ] ] ], [ [ [ 355313.767700001597404, 255181.316199999302626 ], [ 355305.418799996376038, 255173.243700001388788 ], [ 355300.436099998652935, 255177.020700000226498 ], [ 355289.8766999989748, 255186.011300001293421 ], [ 355307.649700000882149, 255182.146000001579523 ], [ 355313.767700001597404, 255181.316199999302626 ] ] ], [ [ [ 355431.284199997782707, 255246.274900000542402 ], [ 355431.870399996638298, 255245.731699999421835 ], [ 355407.902900002896786, 255245.872400000691414 ], [ 355411.914700001478195, 255248.227299999445677 ], [ 355418.35980000346899, 255248.91330000013113 ], [ 355423.194099999964237, 255249.375100001692772 ], [ 355431.284199997782707, 255246.274900000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "A3-104-T68", "PARCEL_NAM": "35E", "ACRE": "1.27", "LONGITUDE": -64.96344313, "LATITUDE": 18.32865362, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 286.6836722, "SHAPE_Area": 4652.2675945499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355403.552799999713898, 255412.113000001758337 ], [ 355403.52759999781847, 255407.917500000447035 ], [ 355336.85249999910593, 255409.504999998956919 ], [ 355335.943000003695488, 255439.026000000536442 ], [ 355342.504900000989437, 255444.820599999278784 ], [ 355344.112199999392033, 255445.467000000178814 ], [ 355352.889899998903275, 255456.30460000038147 ], [ 355359.257700003683567, 255466.067099999636412 ], [ 355363.197499997913837, 255476.865100000053644 ], [ 355364.745399996638298, 255484.477099999785423 ], [ 355364.310300000011921, 255493.403299998492002 ], [ 355404.046400003135204, 255494.335999999195337 ], [ 355403.552799999713898, 255412.113000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050123", "MAP": null, "PARCEL_NAM": "3 (Part of SECTION 3 of TRACT 4)", "ACRE": null, "LONGITUDE": -64.9602904, "LATITUDE": 18.33137489, "OBJECTID_1": 8655, "PARCEL_NO_": "105204050123", "Tax_Legal_": "SUBMARINE BASE #3 SOUTHSIDE QTR", "Name": "ANTILLES GAS CORPORATION", "Address": "PO Box 302067", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 7500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.912858591, "SHAPE_Area": 1114.7672414399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355679.552500002086163, 255744.589999999850988 ], [ 355685.884700000286102, 255744.42850000038743 ], [ 355693.145099997520447, 255744.065799999982119 ], [ 355695.486699998378754, 255753.162000000476837 ], [ 355697.086800001561642, 255754.652699999511242 ], [ 355697.8733000010252, 255756.981199998408556 ], [ 355709.856499999761581, 255770.166999999433756 ], [ 355723.468500003218651, 255781.466400001198053 ], [ 355722.138199999928474, 255748.313799999654293 ], [ 355719.834399998188019, 255734.785000000149012 ], [ 355676.307899996638298, 255732.739999998360872 ], [ 355679.552500002086163, 255744.589999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003010700", "MAP": "B9-260-T69", "PARCEL_NAM": "11-24", "ACRE": "0.39", "LONGITUDE": -64.98237615, "LATITUDE": 18.36766519, "OBJECTID_1": 108, "PARCEL_NO_": "101003010700", "Tax_Legal_": "SORGENFRI 11-24 S S QTR.", "Name": "LIBURD, CRISILDA", "Address": "4708 John St", "City": "Suitland", "State": "Maryland", "Zip": 20746, "Country": "United States", "Land_Value": 80400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.534909626, "SHAPE_Area": 1648.18298383 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353336.158699996769428, 259716.131900001317263 ], [ 353328.712200000882149, 259715.454900000244379 ], [ 353324.528599999845028, 259774.990899998694658 ], [ 353330.007500000298023, 259775.609999999403954 ], [ 353334.022799998521805, 259777.542700000107288 ], [ 353342.859899997711182, 259781.414700001478195 ], [ 353346.878899998962879, 259782.925200000405312 ], [ 353350.903300002217293, 259783.802499998360872 ], [ 353352.606100000441074, 259751.406100001186132 ], [ 353354.370300002396107, 259717.840799998492002 ], [ 353336.158699996769428, 259716.131900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904019700", "MAP": "D9-8834-T013", "PARCEL_NAM": "1-P-1", "ACRE": "0.44", "LONGITUDE": -64.91803353, "LATITUDE": 18.35253272, "OBJECTID_1": 5007, "PARCEL_NO_": "102904019700", "Tax_Legal_": "1-P-1 ST. JOSEPH & ROSENDAHL No.4 GREAT NORTHSIDE QTR.", "Name": "SMITH, RAMSEY and CATHERINE", "Address": "10919 Spicewood Trl", "City": "Boynton Beach", "State": "Florida", "Zip": 33436, "Country": "United States", "Land_Value": 58900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.99315017500001, "SHAPE_Area": 1442.0173426399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360178.036100000143051, 258142.525299999862909 ], [ 360178.809000000357628, 258129.827899999916553 ], [ 360175.864200003445148, 258096.873199999332428 ], [ 360167.001999996602535, 258095.956300001591444 ], [ 360159.439499996602535, 258131.780299998819828 ], [ 360118.39130000025034, 258122.789500001817942 ], [ 360102.293799996376038, 258119.280299998819828 ], [ 360096.660400003194809, 258117.967599999159575 ], [ 360144.737499997019768, 258147.927499998360872 ], [ 360178.036100000143051, 258142.525299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201044300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96135936, "LATITUDE": 18.34300494, "OBJECTID_1": 7621, "PARCEL_NO_": "105201044300", "Tax_Legal_": "LINDBERG BAY 24U SOUTHSIDE QUARTER", "Name": "CREQUE, ROAN N", "Address": "PO Box 304116", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.663109821500001, "SHAPE_Area": 8.29327856964 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355597.472000002861023, 257035.808600001037121 ], [ 355575.694399997591972, 257036.474700000137091 ], [ 355575.450300000607967, 257037.24379999935627 ], [ 355597.472000002861023, 257035.808600001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201041800", "MAP": null, "PARCEL_NAM": "REM 24D", "ACRE": "0.13", "LONGITUDE": -64.96347219, "LATITUDE": 18.34363943, "OBJECTID_1": 7596, "PARCEL_NO_": "105201041800", "Tax_Legal_": "LINDBERG BAY 24D SOUTHSIDE QTR", "Name": "POLE, GLENRIDGE A. & PHYLLIS", "Address": "PO Box 302297", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14200, "Improved_V": 74000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.431044932000006, "SHAPE_Area": 422.98388648500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355371.445200003683567, 257112.956900000572205 ], [ 355370.906700000166893, 257095.743500001728535 ], [ 355346.17119999974966, 257096.86879999935627 ], [ 355347.634499996900558, 257114.401500001549721 ], [ 355371.445200003683567, 257112.956900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201044600", "MAP": "F9-871-T62", "PARCEL_NAM": "22A", "ACRE": "0.18", "LONGITUDE": -64.96372964, "LATITUDE": 18.34302048, "OBJECTID_1": 7624, "PARCEL_NO_": "105201044600", "Tax_Legal_": "20 & 22 LINDBERG BAY SOUTHSIDE QUARTER", "Name": "ABRAHAM, GLADYS A. & OTHERS", "Address": "11371 SW 223 St", "City": "MIAMI", "State": "Florida", "Zip": 33170, "Country": "United States", "Land_Value": 340300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.750637987, "SHAPE_Area": 847.85865493100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355345.703000001609325, 257052.216499999165535 ], [ 355343.962200000882149, 257018.276700001209974 ], [ 355319.083099998533726, 257020.372000001370907 ], [ 355320.017800003290176, 257043.247999999672174 ], [ 355320.475000001490116, 257053.860599998384714 ], [ 355345.703000001609325, 257052.216499999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105303240700", "MAP": null, "PARCEL_NAM": "70A", "ACRE": "1,170 sq ft", "LONGITUDE": -64.94238721000001, "LATITUDE": 18.33740473, "OBJECTID_1": 11139, "PARCEL_NO_": "105303240700", "Tax_Legal_": "ALTONA & WELGUNST 70A CROWN PRINCE QTR", "Name": "MAGRAS, EDWARD & GERTRUDE-LIFE ES", "Address": "3619 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 6300, "Improved_V": 15100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.018874020299997, "SHAPE_Area": 111.878905604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357598.290700003504753, 256438.052000001072884 ], [ 357597.127199999988079, 256426.571600001305342 ], [ 357592.606600001454353, 256426.785500001162291 ], [ 357587.724399998784065, 256426.928899999707937 ], [ 357589.51969999819994, 256437.258299998939037 ], [ 357590.194399997591972, 256440.353900000452995 ], [ 357598.290700003504753, 256438.052000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030100", "MAP": "F9-2520-T69", "PARCEL_NAM": "21A", "ACRE": ".23", "LONGITUDE": -64.87465422, "LATITUDE": 18.32353072, "OBJECTID_1": 38464, "PARCEL_NO_": "107602030100", "Tax_Legal_": "NADIR 21A RED HOOK QTR", "Name": "HERMAN, LEROY A", "Address": "PO Box 9341", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 126500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.92780643699999, "SHAPE_Area": 1098.7779348 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364787.242799997329712, 254965.537200000137091 ], [ 364787.645099997520447, 254944.435899998992682 ], [ 364781.502999998629093, 254944.45549999922514 ], [ 364775.636500000953674, 254944.474300000816584 ], [ 364758.702100001275539, 254944.546799998730421 ], [ 364742.979900002479553, 254944.582800000905991 ], [ 364743.912100002169609, 254969.480399999767542 ], [ 364781.397900000214577, 254969.533100001513958 ], [ 364787.166799999773502, 254969.523899998515844 ], [ 364787.242799997329712, 254965.537200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87487551, "LATITUDE": 18.32367696, "OBJECTID_1": 38030, "PARCEL_NO_": "107601042700", "Tax_Legal_": "21 ESTATE NADIR RED HOOK QTR", "Name": "HERMAN, HUMPHREY", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 212000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.51807104300001, "SHAPE_Area": 247.22132512600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364743.912100002169609, 254969.480399999767542 ], [ 364742.979900002479553, 254944.582800000905991 ], [ 364738.542499996721745, 254944.5929000005126 ], [ 364738.515500001609325, 254947.759100001305342 ], [ 364739.61599999666214, 254969.474399998784065 ], [ 364741.276799999177456, 255002.24379999935627 ], [ 364745.194099999964237, 255003.7162000015378 ], [ 364743.912100002169609, 254969.480399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042700", "MAP": null, "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.87418414, "LATITUDE": 18.32371846, "OBJECTID_1": 38030, "PARCEL_NO_": "107601042700", "Tax_Legal_": "21 ESTATE NADIR RED HOOK QTR", "Name": "HERMAN, HUMPHREY", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 212000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 447.60685867699999, "SHAPE_Area": 2144.7943659799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364846.177000001072884, 255016.761500000953674 ], [ 364869.626000002026558, 254985.770599998533726 ], [ 364865.02759999781847, 254982.224800001829863 ], [ 364839.463500000536442, 255013.419599998742342 ], [ 364838.909598543017637, 255013.531547849212075 ], [ 364838.344775388948619, 255013.549266496615019 ], [ 364837.784946280240547, 255013.472256660053972 ], [ 364837.245886235381477, 255013.302688343828777 ], [ 364836.742785036272835, 255013.045339690550463 ], [ 364836.289819206809625, 255012.707462341262726 ], [ 364835.899752542434726, 255012.298577096720692 ], [ 364835.583576448785607, 255011.830205637641484 ], [ 364835.350200222746935, 255011.315545863646548 ], [ 364835.206200003623962, 255010.769099999219179 ], [ 364835.014499999582767, 254978.8935999982059 ], [ 364835.094999998807907, 254969.447799999266863 ], [ 364835.156099997460842, 254962.271099999547005 ], [ 364834.545800000429153, 254939.256900001317263 ], [ 364830.514300003647804, 254939.223900001496077 ], [ 364821.64299999922514, 254939.362399999052286 ], [ 364821.599899999797344, 254944.428300000727177 ], [ 364787.166799999773502, 254969.523899998515844 ], [ 364781.397900000214577, 254969.533100001513958 ], [ 364743.912100002169609, 254969.480399999767542 ], [ 364744.259300000965595, 254978.752199999988079 ], [ 364798.912399999797344, 254978.837400000542402 ], [ 364810.098099999129772, 254969.487500000745058 ], [ 364822.397799998521805, 254959.206399999558926 ], [ 364824.302799999713898, 254958.782999999821186 ], [ 364825.890299998223782, 254959.841400001198053 ], [ 364825.709299996495247, 254969.462699998170137 ], [ 364825.5320999994874, 254978.878800000995398 ], [ 364825.149499997496605, 254999.211500000208616 ], [ 364825.149499997496605, 255005.77309999987483 ], [ 364825.308200001716614, 255015.403999999165535 ], [ 364825.772117807529867, 255017.070568659866694 ], [ 364826.49209991825046, 255018.643558358366136 ], [ 364827.450264863553457, 255020.083902334270533 ], [ 364828.622815665963572, 255021.3558282154263 ], [ 364829.980630862584803, 255022.427746460074559 ], [ 364831.489987765322439, 255023.273034914745949 ], [ 364833.113399997353554, 255023.870700001716614 ], [ 364834.967536743846722, 255023.882838262070436 ], [ 364836.800060160981957, 255023.600299171346705 ], [ 364838.564436184999067, 255023.030257367528975 ], [ 364840.215861248434521, 255022.187188169918954 ], [ 364841.712399996817112, 255021.092500001192093 ], [ 364846.177000001072884, 255016.761500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042700", "MAP": "D3-196-T50", "PARCEL_NAM": "21 REM", "ACRE": null, "LONGITUDE": -64.87433908, "LATITUDE": 18.32349061, "OBJECTID_1": 38030, "PARCEL_NO_": "107601042700", "Tax_Legal_": "21 ESTATE NADIR RED HOOK QTR", "Name": "HERMAN, HUMPHREY", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 212000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.655229547, "SHAPE_Area": 426.25742464899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364818.121699996292591, 254944.426600001752377 ], [ 364794.183499999344349, 254944.41499999910593 ], [ 364787.645099997520447, 254944.435899998992682 ], [ 364787.242799997329712, 254965.537200000137091 ], [ 364787.166799999773502, 254969.523899998515844 ], [ 364821.599899999797344, 254944.428300000727177 ], [ 364818.121699996292591, 254944.426600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602031700", "MAP": "F9-3161-T73", "PARCEL_NAM": "21-B", "ACRE": ".23", "LONGITUDE": -64.87469646, "LATITUDE": 18.32386716, "OBJECTID_1": 38478, "PARCEL_NO_": "107602031700", "Tax_Legal_": "21-B EST NADIR RED HOOK QTR", "Name": "LIMA, JOSE", "Address": "PO Box 11945", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.11840315800001, "SHAPE_Area": 912.28768909799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364774.464900001883507, 254978.799300000071526 ], [ 364744.259300000965595, 254978.752199999988079 ], [ 364745.194099999964237, 255003.7162000015378 ], [ 364745.295800000429153, 255003.754399999976158 ], [ 364772.625900000333786, 255013.899500001221895 ], [ 364775.11259999871254, 255014.8141999989748 ], [ 364774.464900001883507, 254978.799300000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042700", "MAP": "F9-3207-T74", "PARCEL_NAM": "21-C", "ACRE": ".23", "LONGITUDE": -64.87444141, "LATITUDE": 18.32391106, "OBJECTID_1": 38030, "PARCEL_NO_": "107601042700", "Tax_Legal_": "21 ESTATE NADIR RED HOOK QTR", "Name": "HERMAN, HUMPHREY", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 212000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.180932735, "SHAPE_Area": 997.62406094999994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364798.912399999797344, 254978.837400000542402 ], [ 364774.464900001883507, 254978.799300000071526 ], [ 364775.11259999871254, 255014.8141999989748 ], [ 364800.034800000488758, 255023.9814000017941 ], [ 364798.912399999797344, 254978.837400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602032200", "MAP": "D9-6862-T000", "PARCEL_NAM": "21-D", "ACRE": ".25", "LONGITUDE": -64.8741967, "LATITUDE": 18.3237902, "OBJECTID_1": 38481, "PARCEL_NO_": "107602032200", "Tax_Legal_": "21-D ESTATE NADIR 2 REDHOOK QTR", "Name": "HERMAN, HUBPHREY", "Address": "2-6 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.92823453400001, "SHAPE_Area": 997.64423702800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364825.890299998223782, 254959.841400001198053 ], [ 364824.302799999713898, 254958.782999999821186 ], [ 364822.397799998521805, 254959.206399999558926 ], [ 364810.098099999129772, 254969.487500000745058 ], [ 364798.912399999797344, 254978.837400000542402 ], [ 364799.582299999892712, 255005.782499998807907 ], [ 364825.149499997496605, 255005.77309999987483 ], [ 364825.149499997496605, 254999.211500000208616 ], [ 364825.5320999994874, 254978.878800000995398 ], [ 364825.709299996495247, 254969.462699998170137 ], [ 364825.890299998223782, 254959.841400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602032300", "MAP": "D9-6862-T000", "PARCEL_NAM": "21-E", "ACRE": ".27", "LONGITUDE": -64.87401692, "LATITUDE": 18.3241427, "OBJECTID_1": 38482, "PARCEL_NO_": "107602032300", "Tax_Legal_": "21-E ESTATE NADIR 2 RED HOOK QTR", "Name": "HERMAN, GOLDA", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.593739263, "SHAPE_Area": 1313.5179239900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364846.177000001072884, 255016.761500000953674 ], [ 364841.712399996817112, 255021.092500001192093 ], [ 364840.21586124895839, 255022.187188170908485 ], [ 364838.564436185581144, 255023.030257369100582 ], [ 364836.800060161447618, 255023.60029917297652 ], [ 364834.967536744021345, 255023.882838263176382 ], [ 364833.113399997353554, 255023.870700001716614 ], [ 364831.489987765497062, 255023.273034914454911 ], [ 364829.980630862992257, 255022.427746459608898 ], [ 364828.62281566648744, 255021.355828214902431 ], [ 364827.450264864135534, 255020.083902333804872 ], [ 364826.492099918774329, 255018.64355835801689 ], [ 364825.772117807879113, 255017.070568659692071 ], [ 364825.308200001716614, 255015.403999999165535 ], [ 364825.149499997496605, 255005.77309999987483 ], [ 364799.582299999892712, 255005.782499998807907 ], [ 364800.034800000488758, 255023.9814000017941 ], [ 364809.603000000119209, 255027.500999998301268 ], [ 364862.657799996435642, 255046.933600001037121 ], [ 364868.259700000286102, 255031.757500000298023 ], [ 364846.177000001072884, 255016.761500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602032400", "MAP": "D9-6862-T000", "PARCEL_NAM": "21-F", "ACRE": ".27", "LONGITUDE": -64.87369458000001, "LATITUDE": 18.32399343, "OBJECTID_1": 38483, "PARCEL_NO_": "107602032400", "Tax_Legal_": "21-F ESTATE NADIR 2 REDHOOK QTR", "Name": "HERMAN, LOUELLA", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.215943611, "SHAPE_Area": 859.70874391300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364884.701800003647804, 255000.382100000977516 ], [ 364869.626000002026558, 254985.770599998533726 ], [ 364846.177000001072884, 255016.761500000953674 ], [ 364868.259700000286102, 255031.757500000298023 ], [ 364869.261100001633167, 255029.044700000435114 ], [ 364874.190700002014637, 255018.319299999624491 ], [ 364876.636600002646446, 255015.172899998724461 ], [ 364877.468099996447563, 255012.224399998784065 ], [ 364880.731100000441074, 255007.818199999630451 ], [ 364883.185999996960163, 255003.616399999707937 ], [ 364884.701800003647804, 255000.382100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601042700", "MAP": "D3-196-T50", "PARCEL_NAM": "21 REM", "ACRE": null, "LONGITUDE": -64.87378872, "LATITUDE": 18.3236004, "OBJECTID_1": 38030, "PARCEL_NO_": "107601042700", "Tax_Legal_": "21 ESTATE NADIR RED HOOK QTR", "Name": "HERMAN, HUMPHREY", "Address": "6022 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 212000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.83072799199999, "SHAPE_Area": 2581.35755844 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364900.268100000917912, 254939.22239999845624 ], [ 364885.347099997103214, 254939.250500001013279 ], [ 364834.545800000429153, 254939.256900001317263 ], [ 364835.156099997460842, 254962.271099999547005 ], [ 364835.094999998807907, 254969.447799999266863 ], [ 364835.014499999582767, 254978.8935999982059 ], [ 364835.206200003623962, 255010.769099999219179 ], [ 364835.350200223154388, 255011.315545863413718 ], [ 364835.583576449425891, 255011.830205637146719 ], [ 364835.899752543133218, 255012.298577095993096 ], [ 364836.289819207508117, 255012.707462340360507 ], [ 364836.742785036971327, 255013.045339689531829 ], [ 364837.245886235905346, 255013.302688342781039 ], [ 364837.784946280589793, 255013.472256659093546 ], [ 364838.344775389123242, 255013.549266495858319 ], [ 364838.909598543075845, 255013.531547848804621 ], [ 364839.463500000536442, 255013.419599998742342 ], [ 364900.268100000917912, 254939.22239999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "105401430400", "MAP": null, "PARCEL_NAM": "29", "ACRE": ".19", "LONGITUDE": -64.93273729000001, "LATITUDE": 18.3410488, "OBJECTID_1": 12103, "PARCEL_NO_": "105401430400", "Tax_Legal_": "DRONNINGENS GADE 29&30 QUEENS QUARTER", "Name": "TOPA EQUITIES", "Address": "Box 250-W.I. CORP", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040250, "Country": "United States", "Land_Value": 4540500, "Improved_V": 2543600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 251.96198509499999, "SHAPE_Area": 874.09595293300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358628.44370000064373, 256787.063400000333786 ], [ 358621.722099997103214, 256785.214600000530481 ], [ 358591.385200001299381, 256899.901099998503923 ], [ 358598.888700000941753, 256901.912799999117851 ], [ 358628.44370000064373, 256787.063400000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603012300", "MAP": "D9-3109-T85", "PARCEL_NAM": "M-1", "ACRE": "1.21", "LONGITUDE": -64.89831717, "LATITUDE": 18.33538601, "OBJECTID_1": 21519, "PARCEL_NO_": "105603012300", "Tax_Legal_": "LOT M EST DONOE NEW QTR", "Name": "BRYAN, MARIO", "Address": "PO Box 12481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 384000, "Improved_V": 96900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.23950113299998, "SHAPE_Area": 5296.0867209400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362290.106100000441074, 256213.019499998539686 ], [ 362285.247699998319149, 256212.817800000309944 ], [ 362258.637599997222424, 256212.811099998652935 ], [ 362223.125699996948242, 256216.531300000846386 ], [ 362216.662600003182888, 256217.956000000238419 ], [ 362212.584299996495247, 256223.411100000143051 ], [ 362214.089000001549721, 256236.089000001549721 ], [ 362213.113600000739098, 256255.923799999058247 ], [ 362210.552699998021126, 256272.579199999570847 ], [ 362207.971199996769428, 256280.776900000870228 ], [ 362295.421599999070168, 256279.913899999111891 ], [ 362290.106100000441074, 256213.019499998539686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401491200", "MAP": "D9-8636-T012", "PARCEL_NAM": "7 HOSPITAL LINE", "ACRE": "0.07", "LONGITUDE": -64.92495454, "LATITUDE": 18.34350149, "OBJECTID_1": 12192, "PARCEL_NO_": "105401491200", "Tax_Legal_": "PRINDSENS GADE 66 KINGS QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 31800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.508274789699996, "SHAPE_Area": 308.90718176799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359436.609600000083447, 257114.031199999153614 ], [ 359420.628700003027916, 257114.018800001591444 ], [ 359422.219800002872944, 257131.831900000572205 ], [ 359440.089299999177456, 257131.089200001209974 ], [ 359438.101300001144409, 257113.940099999308586 ], [ 359436.609600000083447, 257114.031199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105401510200", "MAP": null, "PARCEL_NAM": "14 BJERGE GADE", "ACRE": "2,623 sq ft", "LONGITUDE": -64.92590201, "LATITUDE": 18.34295649, "OBJECTID_1": 12246, "PARCEL_NO_": "105401510200", "Tax_Legal_": "BJERGE GADE 16B,15&14 KINGS QTR", "Name": "JRJ DEV ENTERP INC", "Address": "PO Box 7272", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 95500, "Improved_V": 344700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.479760063299999, "SHAPE_Area": 93.8543576812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359341.596699997782707, 257063.205600000917912 ], [ 359339.998800002038479, 257058.692899998277426 ], [ 359320.12389999628067, 257060.02760000154376 ], [ 359320.177100002765656, 257061.458999998867512 ], [ 359320.368199996650219, 257064.524099998176098 ], [ 359341.596699997782707, 257063.205600000917912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701020100", "MAP": "D9-9058-T016", "PARCEL_NAM": "53-1A-6", "ACRE": ".500", "LONGITUDE": -64.87780976000001, "LATITUDE": 18.34541036, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.633131666, "SHAPE_Area": 2056.11711913 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364416.485299997031689, 257333.594999998807907 ], [ 364383.626400001347065, 257394.462000001221895 ], [ 364411.730099998414516, 257412.127199999988079 ], [ 364415.732299998402596, 257418.457400001585484 ], [ 364433.773400001227856, 257346.443199999630451 ], [ 364416.485299997031689, 257333.594999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105701020100", "MAP": "D9-8906-T014", "PARCEL_NAM": "53-1-A", "ACRE": ".32", "LONGITUDE": -64.87774382000001, "LATITUDE": 18.34595955, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.17175418900001, "SHAPE_Area": 1184.03481407 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364366.489200003445148, 257393.875999998301268 ], [ 364367.083275536831934, 257394.16915796889225 ], [ 364367.617664673656691, 257394.560687770397635 ], [ 364368.076246287324466, 257395.038777969690273 ], [ 364368.445186166325584, 257395.589005832240218 ], [ 364368.713354356703348, 257396.194772418268258 ], [ 364368.87266092345817, 257396.83780332954484 ], [ 364368.918300002813339, 257397.498700000345707 ], [ 364374.315800003707409, 257400.991200000047684 ], [ 364374.840704300266225, 257400.6692742202722 ], [ 364375.409880988649093, 257400.434330342599424 ], [ 364376.009030281042214, 257400.292271011334378 ], [ 364376.623099369113334, 257400.246665273385588 ], [ 364377.236660604772624, 257400.298658910702216 ], [ 364377.834299099165946, 257400.446945654053707 ], [ 364378.401000000536442, 257400.687800001353025 ], [ 364405.071000002324581, 257416.774500001221895 ], [ 364455.197400003671646, 257497.401999998837709 ], [ 364460.307700000703335, 257488.96229999884963 ], [ 364411.730099998414516, 257412.127199999988079 ], [ 364368.677100002765656, 257385.06529999896884 ], [ 364366.489200003445148, 257393.875999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204040100", "MAP": "D3-338-T78", "PARCEL_NAM": "158", "ACRE": "15.49", "LONGITUDE": -64.96314852, "LATITUDE": 18.32557906, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1270.7007324599999, "SHAPE_Area": 60559.390197399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355431.870399996638298, 255245.731699999421835 ], [ 355435.348099999129772, 255242.508499998599291 ], [ 355438.435500003397465, 255245.69310000166297 ], [ 355470.573100000619888, 255245.504399999976158 ], [ 355481.825099997222424, 255245.631700001657009 ], [ 355565.894799999892712, 255157.836399998515844 ], [ 355566.016699999570847, 255143.519600000232458 ], [ 355565.332699999213219, 255129.159600000828505 ], [ 355559.915100000798702, 255102.517499998211861 ], [ 355554.436300002038479, 255083.052000001072884 ], [ 355540.968199998140335, 255054.866399999707937 ], [ 355533.815700002014637, 255042.564399998635054 ], [ 355529.870399996638298, 255032.399599999189377 ], [ 355521.897200003266335, 255021.779699999839067 ], [ 355515.500699996948242, 255015.394499998539686 ], [ 355494.784699998795986, 254986.094099998474121 ], [ 355481.923199996352196, 254981.344700001180172 ], [ 355473.066399998962879, 254979.794599998742342 ], [ 355467.413199998438358, 254980.803800001740456 ], [ 355447.027000002563, 255007.445799998939037 ], [ 355438.110799998044968, 255012.861299999058247 ], [ 355430.053099997341633, 255012.162099998444319 ], [ 355427.655799999833107, 255009.609299998730421 ], [ 355418.83669999986887, 255003.626499999314547 ], [ 355409.186099998652935, 255000.592199999839067 ], [ 355398.75620000064373, 254994.385099999606609 ], [ 355389.989200003445148, 254982.280999999493361 ], [ 355384.390000000596046, 254976.957899998873472 ], [ 355376.344899997115135, 254974.781100001186132 ], [ 355368.285300001502037, 254974.293000001460314 ], [ 355363.425899997353554, 254976.786299999803305 ], [ 355358.541199997067451, 254982.2347999997437 ], [ 355354.486299999058247, 254984.945799998939037 ], [ 355351.909100003540516, 255003.500900000333786 ], [ 355345.390299998223782, 255011.469099998474121 ], [ 355336.407600000500679, 255024.694499999284744 ], [ 355329.118400000035763, 255028.434500001370907 ], [ 355322.653499998152256, 255030.07039999961853 ], [ 355312.160700000822544, 255031.250999998301268 ], [ 355299.259700000286102, 255031.145500000566244 ], [ 355284.773000001907349, 255027.860500000417233 ], [ 355276.749399997293949, 255023.150800000876188 ], [ 355268.713299997150898, 255019.918600000441074 ], [ 355261.465499997138977, 255018.803800001740456 ], [ 355251.7753000035882, 255020.413199998438358 ], [ 355242.061800003051758, 255024.766699999570847 ], [ 355231.552799999713898, 255027.847100000828505 ], [ 355217.766400001943111, 255037.022399999201298 ], [ 355216.121399998664856, 255040.808600001037121 ], [ 355216.888099998235703, 255045.45890000090003 ], [ 355216.031499996781349, 255051.362500000745058 ], [ 355216.706500001251698, 255066.777899999171495 ], [ 355215.864200003445148, 255070.992899999022484 ], [ 355216.647200003266335, 255073.743500001728535 ], [ 355217.435500003397465, 255075.86089999973774 ], [ 355227.080700002610683, 255079.528400000184774 ], [ 355228.678900003433228, 255081.230200000107288 ], [ 355229.445699997246265, 255085.88060000166297 ], [ 355231.040299996733665, 255088.004599999636412 ], [ 355229.395300000905991, 255091.790800001472235 ], [ 355223.256300002336502, 255093.800999999046326 ], [ 355298.68299999833107, 255166.730799999088049 ], [ 355384.941699996590614, 255101.507599998265505 ], [ 355390.524700000882149, 255108.730500001460314 ], [ 355305.418799996376038, 255173.243700001388788 ], [ 355313.767700001597404, 255181.316199999302626 ], [ 355323.795699998736382, 255179.9560999982059 ], [ 355346.370700001716614, 255180.352000001817942 ], [ 355354.415799997746944, 255182.528799999505281 ], [ 355360.839400000870228, 255185.747800000011921 ], [ 355368.043999999761581, 255191.928399998694658 ], [ 355378.409199997782707, 255205.734299998730421 ], [ 355384.755400002002716, 255218.029699999839067 ], [ 355386.357199996709824, 255219.309399999678135 ], [ 355390.307899996638298, 255228.840900000184774 ], [ 355395.88910000026226, 255236.274900000542402 ], [ 355401.486599996685982, 255241.809099998325109 ], [ 355407.902900002896786, 255245.872400000691414 ], [ 355431.870399996638298, 255245.731699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105203040100", "MAP": "A3-97-T66", "PARCEL_NAM": "SECTION 4 of TRACT 4 (FILLED LANDS)", "ACRE": null, "LONGITUDE": -64.96181899, "LATITUDE": 18.33075666, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1756.63165061, "SHAPE_Area": 52790.163185999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355476.342399999499321, 255873.127099998295307 ], [ 355481.278499998152256, 255884.562800001353025 ], [ 355504.843199998140335, 255896.422899998724461 ], [ 355515.470799997448921, 255896.861099999397993 ], [ 355526.186499997973442, 255896.861099999397993 ], [ 355555.158399999141693, 255905.989199999719858 ], [ 355569.842799998819828, 255907.179900001734495 ], [ 355592.464699998497963, 255907.576699998229742 ], [ 355606.275200001895428, 255907.796700000762939 ], [ 355598.237300001084805, 255904.775600001215935 ], [ 355592.632600001990795, 255900.08559999987483 ], [ 355589.470299996435642, 255892.671500001102686 ], [ 355587.276199996471405, 255866.266800001263618 ], [ 355596.145599998533726, 255866.339400000870228 ], [ 355598.359499998390675, 255890.422200001776218 ], [ 355599.936200000345707, 255894.657000001519918 ], [ 355606.356100000441074, 255898.298099998384714 ], [ 355648.278999999165535, 255899.274500001221895 ], [ 355675.679200001060963, 255901.1875 ], [ 355718.365199998021126, 255907.236400000751019 ], [ 355719.191299997270107, 255904.921100001782179 ], [ 355714.400200001895428, 255899.393500000238419 ], [ 355705.679999999701977, 255881.801399998366833 ], [ 355702.435000002384186, 255884.096799999475479 ], [ 355700.003499999642372, 255885.55460000038147 ], [ 355696.785400003194809, 255884.683899998664856 ], [ 355695.196199998259544, 255881.926600001752377 ], [ 355695.228500001132488, 255878.127199999988079 ], [ 355687.982500001788139, 255876.801399998366833 ], [ 355686.351899996399879, 255878.898899998515844 ], [ 355683.142800003290176, 255876.972800001502037 ], [ 355674.282399997115135, 255875.844900000840425 ], [ 355673.495899997651577, 255873.516399998217821 ], [ 355668.654399998486042, 255873.898899998515844 ], [ 355667.050800003111362, 255872.830400001257658 ], [ 355668.68860000371933, 255869.8885000012815 ], [ 355662.25959999859333, 255867.302700001746416 ], [ 355659.030799999833107, 255867.698499999940395 ], [ 355659.869499996304512, 255863.905699998140335 ], [ 355654.214500002563, 255865.125900000333786 ], [ 355646.160400003194809, 255864.00450000166893 ], [ 355642.91889999806881, 255865.877900000661612 ], [ 355640.5, 255865.8581000007689 ], [ 355638.097199998795986, 255863.938499998301268 ], [ 355635.672899998724461, 255864.552000001072884 ], [ 355635.707099996507168, 255860.541499998420477 ], [ 355632.496200002729893, 255858.826499998569489 ], [ 355630.865599997341633, 255860.924100000411272 ], [ 355627.633100003004074, 255861.741999998688698 ], [ 355626.033100001513958, 255860.251200001686811 ], [ 355624.370099999010563, 255866.148200001567602 ], [ 355622.746699996292591, 255867.401500001549721 ], [ 355614.696199998259544, 255865.857999999076128 ], [ 355615.475500002503395, 255869.030699998140335 ], [ 355613.809000000357628, 255875.349899999797344 ], [ 355609.762999996542931, 255877.005499999970198 ], [ 355607.344099998474121, 255876.985700000077486 ], [ 355605.733199998736382, 255876.761500000953674 ], [ 355604.136799998581409, 255874.848600000143051 ], [ 355604.765600003302097, 255865.257399998605251 ], [ 355605.06360000371933, 255860.712900001555681 ], [ 355605.893299996852875, 255857.975400000810623 ], [ 355601.937200002372265, 255849.077100001275539 ], [ 355600.378600001335144, 255842.731600001454353 ], [ 355601.325099997222424, 255826.274000000208616 ], [ 355599.822200000286102, 255813.385000001639128 ], [ 355598.23650000244379, 255810.205600000917912 ], [ 355598.364200003445148, 255795.219000000506639 ], [ 355599.186700001358986, 255793.325899999588728 ], [ 355598.402000002563, 255790.786400001496077 ], [ 355598.527900002896786, 255776.010899998247623 ], [ 355596.924199998378754, 255774.942299999296665 ], [ 355595.349399998784065, 255770.496399998664856 ], [ 355595.387100003659725, 255766.063799999654293 ], [ 355597.867200002074242, 255758.906899999827147 ], [ 355598.718500003218651, 255753.636500000953674 ], [ 355601.356799997389317, 255727.904699999839067 ], [ 355599.819700002670288, 255719.026200000196695 ], [ 355595.825900003314018, 255714.560499999672174 ], [ 355604.69709999859333, 255714.421999998390675 ], [ 355606.4121999964118, 255702.4037000015378 ], [ 355602.452600002288818, 255693.927600000053644 ], [ 355597.652500003576279, 255689.455299999564886 ], [ 355598.473200000822544, 255687.773299999535084 ], [ 355598.514499999582767, 255682.918499998748302 ], [ 355596.119000002741814, 255680.154699999839067 ], [ 355596.163900002837181, 255674.877700001001358 ], [ 355597.785599999129772, 255673.835499998182058 ], [ 355597.00620000064373, 255670.66270000115037 ], [ 355595.398999996483326, 255670.01630000025034 ], [ 355596.237700000405312, 255666.223499998450279 ], [ 355594.664599999785423, 255661.566500000655651 ], [ 355602.727700002491474, 255661.632500000298023 ], [ 355602.036499999463558, 255648.116900000721216 ], [ 355600.422100000083447, 255648.314800001680851 ], [ 355599.6300999969244, 255646.619500000029802 ], [ 355596.395900003612041, 255647.648499999195337 ], [ 355593.987800002098083, 255646.362300001084805 ], [ 355595.614799998700619, 255644.686799999326468 ], [ 355592.436300002038479, 255639.172400001436472 ], [ 355590.870399996638298, 255633.671100001782179 ], [ 355588.476599998772144, 255630.696199998259544 ], [ 355585.269400000572205, 255628.559000000357628 ], [ 355590.926100000739098, 255627.127700001001358 ], [ 355590.188199996948242, 255619.100099999457598 ], [ 355584.540399998426437, 255619.476100001484156 ], [ 355562.378300003707409, 255475.962099999189377 ], [ 355549.948399998247623, 255420.553899999707937 ], [ 355548.46169999986887, 255405.7652000002563 ], [ 355548.556999996304512, 255394.578000001609325 ], [ 355540.982900001108646, 255337.098600000143051 ], [ 355538.785199999809265, 255311.116099998354912 ], [ 355525.062200002372265, 255311.347100000828505 ], [ 355498.603900000452995, 255329.338799998164177 ], [ 355496.487199999392033, 255364.263900000602007 ], [ 355500.720499999821186, 255401.305599998682737 ], [ 355483.7871999964118, 255436.230700001120567 ], [ 355502.837200000882149, 255458.455699998885393 ], [ 355503.895499996840954, 255493.380800001323223 ], [ 355513.42059999704361, 255578.047600001096725 ], [ 355518.712200000882149, 255622.497699998319149 ], [ 355512.362199999392033, 255655.306099999696016 ], [ 355481.670500002801418, 255702.931200001388788 ], [ 355475.92400000244379, 255716.802099999040365 ], [ 355472.343599997460842, 255765.362900000065565 ], [ 355473.666599996387959, 255824.894299998879433 ], [ 355471.020700000226498, 255857.967300001531839 ], [ 355476.342399999499321, 255873.127099998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-812-T015", "PARCEL_NAM": "6B", "ACRE": "16.204", "LONGITUDE": -65.0299134, "LATITUDE": 18.35433391, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1179.83174508, "SHAPE_Area": 70946.389040199996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348491.773999996483326, 258115.862500000745058 ], [ 348489.746721546340268, 258110.448723911133129 ], [ 348487.927599996328354, 258104.961500000208616 ], [ 348483.758422550396062, 258103.956992308085319 ], [ 348479.482830567518249, 258103.624743191991001 ], [ 348475.208522591216024, 258103.973121725983219 ], [ 348471.043164821981918, 258104.993352549616247 ], [ 348467.091679096804, 258106.65973691191175 ], [ 348463.453599996864796, 258108.930300001055002 ], [ 348457.777634998608846, 258110.022216243931325 ], [ 348452.219274481467437, 258111.60761464945972 ], [ 348446.821335663145874, 258113.674282560910797 ], [ 348441.625399999320507, 258116.206300001591444 ], [ 348430.538739029550925, 258123.965367431490449 ], [ 348419.878169069008436, 258132.300199580815388 ], [ 348409.673558952054009, 258141.187443878239719 ], [ 348399.953500002622604, 258150.602200001478195 ], [ 348393.548603346338496, 258153.684883090492804 ], [ 348386.842664977186359, 258156.042005656985566 ], [ 348379.91758380230749, 258157.644780415459536 ], [ 348372.857935096661095, 258158.473632849374553 ], [ 348365.749937593878713, 258158.518440272746375 ], [ 348358.680400506360456, 258157.778655457310379 ], [ 348351.735663333616685, 258156.263313315779669 ], [ 348345.00054140703287, 258153.990920559474034 ], [ 348338.557290049560834, 258150.989229677797994 ], [ 348332.484600000083447, 258147.294900000095367 ], [ 348324.214151778782252, 258144.924301832332276 ], [ 348315.762657965940889, 258143.314239167113556 ], [ 348307.199903483269736, 258142.478006470395485 ], [ 348298.59659194399137, 258142.422508608346106 ], [ 348290.023761845659465, 258143.148203832912259 ], [ 348281.552199997007847, 258144.649099998176098 ], [ 348274.007202420150861, 258144.217893843946513 ], [ 348266.501658409077208, 258143.334867071476765 ], [ 348259.062600001692772, 258142.003199998289347 ], [ 348248.439968558552209, 258139.017136009060778 ], [ 348238.013287006004248, 258135.405877402081387 ], [ 348227.819315534783527, 258131.182155989954481 ], [ 348217.893993895384483, 258126.360862877132604 ], [ 348208.272314689762425, 258120.958995960187167 ], [ 348198.988200001418591, 258114.995600000023842 ], [ 348103.674300000071526, 258201.711199998855591 ], [ 348234.354599997401237, 258354.544300001114607 ], [ 348279.293999999761581, 258347.803399998694658 ], [ 348367.485500000417233, 258334.574700001627207 ], [ 348502.755300000309944, 258325.339000001549721 ], [ 348528.604400001466274, 258325.339000001549721 ], [ 348513.238099999725819, 258285.274599999189377 ], [ 348515.531800001859665, 258283.029599998146296 ], [ 348516.463100001215935, 258280.32149999961257 ], [ 348517.401399999856949, 258276.708500001579523 ], [ 348517.436099998652935, 258272.183400001376867 ], [ 348517.005199998617172, 258269.01240000128746 ], [ 348515.667199999094009, 258265.381900001317263 ], [ 348513.873999997973442, 258261.747900001704693 ], [ 348508.449100002646446, 258256.728399999439716 ], [ 348502.089500002563, 258254.869500000029802 ], [ 348498.916599996387959, 258253.035000000149012 ], [ 348496.671599999070168, 258248.945000000298023 ], [ 348493.137199997901917, 258234.889400001615286 ], [ 348492.74099999666214, 258227.193300001323223 ], [ 348491.965899996459484, 258209.538499999791384 ], [ 348494.811999998986721, 258194.626800000667572 ], [ 348498.102899998426437, 258181.0760000012815 ], [ 348501.348700001835823, 258173.407900001853704 ], [ 348502.321699999272823, 258165.26969999819994 ], [ 348503.273900002241135, 258159.846599999815226 ], [ 348503.305100001394749, 258155.774000000208616 ], [ 348502.022699996829033, 258144.903400000184774 ], [ 348500.702100001275539, 258139.010299999266863 ], [ 348498.470899999141693, 258133.110199999064207 ], [ 348491.773999996483326, 258115.862500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-812-T015", "PARCEL_NAM": "6-1", "ACRE": "1.8", "LONGITUDE": -65.03008597, "LATITUDE": 18.34944132, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 363.58796464, "SHAPE_Area": 7534.4415906000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348366.025799997150898, 257734.929900001734495 ], [ 348382.912900000810623, 257720.124099999666214 ], [ 348380.827500000596046, 257717.050500001758337 ], [ 348374.097302332811523, 257708.494217525527347 ], [ 348366.947569798387121, 257700.285267827333882 ], [ 348359.396200001239777, 257692.444200001657009 ], [ 348350.474625806324184, 257683.366495509806555 ], [ 348341.299947016639635, 257674.544677439611405 ], [ 348331.87950000166893, 257665.985800001770258 ], [ 348323.982176727266051, 257658.445818113046698 ], [ 348315.729542583227158, 257651.296477481373586 ], [ 348307.140900000929832, 257644.554499998688698 ], [ 348303.49520048184786, 257642.161126936640358 ], [ 348299.599582363094669, 257640.200637439003913 ], [ 348295.50522036437178, 257638.698785442044027 ], [ 348291.265900000929832, 257637.675299998372793 ], [ 348286.664614840061404, 257637.679232441005297 ], [ 348282.125935276329983, 257638.435690247337334 ], [ 348277.772100001573563, 257639.924300000071526 ], [ 348268.790635471930727, 257645.429122805100633 ], [ 348260.045000001788139, 257651.301399998366833 ], [ 348257.930894130899105, 257652.593201571813552 ], [ 348256.067043404444121, 257654.225456272572046 ], [ 348254.507659915601835, 257656.150688225665363 ], [ 348253.298100002110004, 257658.312899999320507 ], [ 348250.041400000452995, 257663.176600001752377 ], [ 348288.122699998319149, 257712.142700001597404 ], [ 348286.16780000180006, 257735.855999998748302 ], [ 348366.025799997150898, 257734.929900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-812-T015", "PARCEL_NAM": "6-2", "ACRE": "1.4", "LONGITUDE": -65.03088311, "LATITUDE": 18.34965452, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 354.67644840499997, "SHAPE_Area": 6589.4480243300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348288.122699998319149, 257712.142700001597404 ], [ 348250.041400000452995, 257663.176600001752377 ], [ 348246.448463820270263, 257666.902555208798731 ], [ 348242.364412555762101, 257670.082564307667781 ], [ 348237.871447423764039, 257672.652622074063402 ], [ 348233.060000002384186, 257674.561000000685453 ], [ 348229.79005905095255, 257676.425351949234027 ], [ 348226.855131134274416, 257678.782154897693545 ], [ 348224.328699998557568, 257681.572399999946356 ], [ 348216.295927704020869, 257687.215450858755503 ], [ 348208.056800000369549, 257692.552700001746416 ], [ 348200.51061650266638, 257696.317444810032612 ], [ 348192.843199998140335, 257699.828699998557568 ], [ 348186.486332329048309, 257702.159706550621195 ], [ 348180.275499999523163, 257704.855799999088049 ], [ 348174.844876537041273, 257707.940821617550682 ], [ 348169.692100003361702, 257711.470400001853704 ], [ 348167.320799998939037, 257712.813200000673532 ], [ 348165.816600002348423, 257717.014600001275539 ], [ 348158.192699998617172, 257738.308899998664856 ], [ 348251.762999996542931, 257752.167599998414516 ], [ 348252.205300003290176, 257736.249899998307228 ], [ 348286.16780000180006, 257735.855999998748302 ], [ 348288.122699998319149, 257712.142700001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "D9-8919-T014", "PARCEL_NAM": "5-B", "ACRE": "3.71", "LONGITUDE": -65.02985134, "LATITUDE": 18.35168382, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 448.23737077300001, "SHAPE_Area": 13205.8882319 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348369.585100002586842, 257894.412399999797344 ], [ 348366.145499996840954, 257899.439500000327826 ], [ 348361.200713404861744, 257894.987726850929903 ], [ 348355.80581044300925, 257891.093600421736483 ], [ 348350.023378311423585, 257887.802297145302873 ], [ 348343.920500002801418, 257885.151999998837709 ], [ 348336.527833462168928, 257883.166551915899618 ], [ 348328.987520049384329, 257881.848524485365488 ], [ 348321.359689463512041, 257881.208428224286763 ], [ 348313.705169303109869, 257881.251367535296595 ], [ 348306.08500000089407, 257881.977000001817942 ], [ 348301.477353514870629, 257882.923015792883234 ], [ 348297.021080401609652, 257884.428665804327466 ], [ 348292.783875530527439, 257886.471077833703021 ], [ 348288.830105923931114, 257889.019225771888159 ], [ 348285.219832962844521, 257892.034400918288156 ], [ 348282.00789999961853, 257895.470800001174212 ], [ 348277.969724658294581, 257902.486460223211907 ], [ 348274.3495778409997, 257909.72668711602455 ], [ 348271.15990000218153, 257917.166600000113249 ], [ 348265.072255234699696, 257928.429066601907834 ], [ 348258.459899999201298, 257939.391699999570847 ], [ 348257.109912658575922, 257943.463275690563023 ], [ 348256.426177266810555, 257947.69797760937945 ], [ 348256.426177266810555, 257951.987522390292725 ], [ 348257.109912658575922, 257956.222224309109151 ], [ 348258.459899999201298, 257960.293800000101328 ], [ 348262.564224350673612, 257963.55906512105139 ], [ 348267.043136318621691, 257966.287944428710034 ], [ 348271.826942414452787, 257968.437975575012388 ], [ 348276.841204886732157, 257969.975703298434382 ], [ 348282.00789999961853, 257970.877199999988079 ], [ 348290.708989444712643, 257973.065303967974614 ], [ 348299.22057059686631, 257975.902510833257111 ], [ 348307.494294884963892, 257979.372704330802662 ], [ 348315.483164842939004, 257983.45617262396263 ], [ 348323.141801070538349, 257988.129720274271676 ], [ 348330.426700003445148, 257993.366799999028444 ], [ 348334.257796671881806, 257996.314815563848242 ], [ 348338.422306615917478, 257998.769393812603084 ], [ 348342.857027352438308, 258000.693282957625343 ], [ 348347.494655557326041, 258002.057285188580863 ], [ 348352.264808491221629, 258002.840699791820953 ], [ 348357.095092159463093, 258003.031637313630199 ], [ 348361.9121999964118, 258002.627199999988079 ], [ 348365.279286156001035, 258001.199945924279746 ], [ 348368.531400002539158, 257999.527199998497963 ], [ 348373.636100001633167, 257996.228000000119209 ], [ 348399.35080000013113, 257979.608399998396635 ], [ 348401.888529437943362, 257977.177183716063155 ], [ 348404.002165629412048, 257974.369439895701362 ], [ 348405.636667594197206, 257971.258284702227684 ], [ 348406.749471436603926, 257967.924735404667445 ], [ 348407.311598747328389, 257964.455600613757269 ], [ 348407.308411227597389, 257960.941219708038261 ], [ 348406.739991883223411, 257957.473110315331724 ], [ 348405.621142863237765, 257954.141585111850873 ], [ 348403.980999998748302, 257951.033399999141693 ], [ 348411.738899998366833, 257946.796599999070168 ], [ 348409.838299997150898, 257942.293999999761581 ], [ 348408.565499998629093, 257940.040199998766184 ], [ 348405.709700003266335, 257933.927299998700619 ], [ 348403.471799999475479, 257931.345499999821186 ], [ 348401.551500000059605, 257929.407299999147654 ], [ 348400.923699997365475, 257927.158500000834465 ], [ 348401.915799997746944, 257923.960299998521805 ], [ 348404.510600000619888, 257922.056800000369549 ], [ 348406.777999997138977, 257920.791799999773502 ], [ 348398.811200000345707, 257908.228199999779463 ], [ 348391.173391068470664, 257905.517629980546189 ], [ 348383.734329140628688, 257902.301471908722306 ], [ 348376.527438433549833, 257898.594176203652751 ], [ 348369.585100002586842, 257894.412399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "D9-8833-T013", "PARCEL_NAM": "5-A-B GREEN BELT", "ACRE": ".06", "LONGITUDE": -65.02915475, "LATITUDE": 18.35158331, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 70.5453117112, "SHAPE_Area": 240.12447242299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348414.732400000095367, 257934.958200000226498 ], [ 348418.534000001847744, 257920.787999998778105 ], [ 348406.777999997138977, 257920.791799999773502 ], [ 348404.510600000619888, 257922.056800000369549 ], [ 348401.915799997746944, 257923.960299998521805 ], [ 348400.923699997365475, 257927.158500000834465 ], [ 348401.551500000059605, 257929.407299999147654 ], [ 348403.471799999475479, 257931.345499999821186 ], [ 348405.709700003266335, 257933.927299998700619 ], [ 348408.565499998629093, 257940.040199998766184 ], [ 348409.838299997150898, 257942.293999999761581 ], [ 348411.738899998366833, 257946.796599999070168 ], [ 348414.077600002288818, 257936.235500000417233 ], [ 348414.732400000095367, 257934.958200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "A9-785-T013", "PARCEL_NAM": "13-1", "ACRE": ".95", "LONGITUDE": -65.02960928, "LATITUDE": 18.35027734, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.15777847300001, "SHAPE_Area": 3514.9215169499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348366.025799997150898, 257734.929900001734495 ], [ 348346.103299997746944, 257752.396999999880791 ], [ 348340.805699996650219, 257835.643899999558926 ], [ 348370.906800001859665, 257836.404899999499321 ], [ 348377.119599997997284, 257836.561999998986721 ], [ 348375.187877922609914, 257822.539246171159903 ], [ 348373.683799996972084, 257808.464200001209974 ], [ 348374.417377521982417, 257800.525192752917064 ], [ 348375.838518603064585, 257792.680045838991646 ], [ 348377.936457176168915, 257784.988191328069661 ], [ 348380.695299997925758, 257777.50789999961853 ], [ 348384.886973146931268, 257767.723352305911249 ], [ 348388.368199996650219, 257757.664099998772144 ], [ 348388.584288300015032, 257750.768058632645989 ], [ 348388.27499043213902, 257743.875568842486246 ], [ 348387.442100003361702, 257737.026599999517202 ], [ 348387.390500001609325, 257734.682100001722574 ], [ 348372.732199996709824, 257734.852099999785423 ], [ 348366.025799997150898, 257734.929900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-812-T015", "PARCEL_NAM": "6A", "ACRE": ".087", "LONGITUDE": -65.0294609, "LATITUDE": 18.34977918, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.202663210700003, "SHAPE_Area": 165.41159023 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348382.912900000810623, 257720.124099999666214 ], [ 348366.025799997150898, 257734.929900001734495 ], [ 348372.732199996709824, 257734.852099999785423 ], [ 348387.390500001609325, 257734.682100001722574 ], [ 348386.936124805652071, 257730.866866658325307 ], [ 348386.028659853967838, 257727.133373703341931 ], [ 348384.681135289662052, 257723.535229760716902 ], [ 348382.912900000810623, 257720.124099999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "FREE WAY", "ACRE": null, "LONGITUDE": -64.93277186, "LATITUDE": 18.34101358, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.336646984, "SHAPE_Area": 190.942230438 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358621.722099997103214, 256785.214600000530481 ], [ 358620.612199999392033, 256784.909299999475479 ], [ 358619.637599997222424, 256784.546000000089407 ], [ 358619.534299999475479, 256784.969700001180172 ], [ 358609.4070999994874, 256826.524500001221895 ], [ 358597.313900001347065, 256871.437899999320507 ], [ 358595.273800000548363, 256879.014800000935793 ], [ 358589.679099999368191, 256899.44370000064373 ], [ 358591.385200001299381, 256899.901099998503923 ], [ 358621.722099997103214, 256785.214600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602054200", "MAP": "A9-102-T68", "PARCEL_NAM": "173-238", "ACRE": "0.142", "LONGITUDE": -64.8851021, "LATITUDE": 18.33991109, "OBJECTID_1": 21309, "PARCEL_NO_": "105602054200", "Tax_Legal_": "173-238 ANNAS RETREAT NEW QTR", "Name": "KRIEGER, KQUANIQUE & VAN BEVERHOUDT, SEDALIA", "Address": "PO Box 8443", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 246600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.769456940300003, "SHAPE_Area": 426.00517859299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363664.973800003528595, 256759.854200001806021 ], [ 363660.361800000071526, 256750.750900000333786 ], [ 363628.859999999403954, 256757.478000000119209 ], [ 363629.628499999642372, 256761.476199999451637 ], [ 363633.753499999642372, 256772.367600001394749 ], [ 363664.973800003528595, 256759.854200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801041500", "MAP": "F9-1219-T63", "PARCEL_NAM": "8-48", "ACRE": ".19", "LONGITUDE": -64.94355783, "LATITUDE": 18.35648813, "OBJECTID_1": 3884, "PARCEL_NO_": "102801041500", "Tax_Legal_": "LERKENLUND 8-48 GREAT NORTHSIDE", "Name": "SOLIS, YASMIN L", "Address": "850 Barrister Dr", "City": "Auburndale", "State": "Florida", "Zip": 33823, "Country": "United States", "Land_Value": 22500, "Improved_V": 1000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.063935628, "SHAPE_Area": 582.97438312099996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357466.79280000180006, 258531.718299999833107 ], [ 357458.7162000015378, 258525.491599999368191 ], [ 357441.321599997580051, 258542.622900001704693 ], [ 357438.569899998605251, 258544.845400001853704 ], [ 357439.615599997341633, 258555.991200000047684 ], [ 357440.685099996626377, 258567.390500001609325 ], [ 357470.7128000035882, 258535.118900001049042 ], [ 357466.79280000180006, 258531.718299999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801032000", "MAP": "F9-1233-T63", "PARCEL_NAM": "8-62", "ACRE": ".20", "LONGITUDE": -64.94444951, "LATITUDE": 18.35664495, "OBJECTID_1": 3860, "PARCEL_NO_": "102801032000", "Tax_Legal_": "LERKENLUND 8-62 GT. NORTHSIDE", "Name": "TURNBULL, DONALD & JORYN", "Address": "PO Box 1103", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.8567223907, "SHAPE_Area": 503.32484838599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357370.640500001609325, 258564.407200001180172 ], [ 357359.092399999499321, 258543.095800001174212 ], [ 357356.807700000703335, 258544.666499998420477 ], [ 357343.628499999642372, 258553.726700000464916 ], [ 357359.931599996984005, 258581.08390000090003 ], [ 357363.212600000202656, 258574.566899999976158 ], [ 357364.095399998128414, 258573.885400000959635 ], [ 357364.836000002920628, 258573.3136 ], [ 357368.768399998545647, 258566.916400000452995 ], [ 357369.742200002074242, 258565.33219999819994 ], [ 357370.640500001609325, 258564.407200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602053200", "MAP": "A9-102-T68", "PARCEL_NAM": "173-228", "ACRE": "0.11", "LONGITUDE": -64.88410807, "LATITUDE": 18.34072079, "OBJECTID_1": 21304, "PARCEL_NO_": "105602053200", "Tax_Legal_": "ANNAS RETREAT 173-228 NEW QTR", "Name": "BARROTT,LIFE ESTATE, DELIA", "Address": "PO BOX 11896", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 132300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.215981945400003, "SHAPE_Area": 394.82852194100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363764.079599998891354, 256837.608500000089407 ], [ 363753.187399998307228, 256834.470400001853704 ], [ 363736.010300002992153, 256863.038600001484156 ], [ 363743.241899996995926, 256866.052999999374151 ], [ 363746.967200003564358, 256868.457600001245737 ], [ 363764.079599998891354, 256837.608500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604017300", "MAP": "A9-102-T68", "PARCEL_NAM": "173-300", "ACRE": "0.14", "LONGITUDE": -64.8852649, "LATITUDE": 18.33934325, "OBJECTID_1": 21651, "PARCEL_NO_": "105604017300", "Tax_Legal_": "ANNAS RETREAT 173-300 NEW QTR", "Name": "BARTHLETT, MAUDE E", "Address": "PO Box 307952", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20800, "Improved_V": 120700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.007076658, "SHAPE_Area": 593.35009717599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363639.98030000180006, 256682.189800001680851 ], [ 363628.691899999976158, 256682.09739999845624 ], [ 363619.60869999974966, 256682.596799999475479 ], [ 363621.535599999129772, 256719.974800001829863 ], [ 363621.91330000013113, 256727.300900001078844 ], [ 363622.680900000035763, 256725.111299999058247 ], [ 363625.949299998581409, 256720.071800000965595 ], [ 363631.685199998319149, 256709.353000000119209 ], [ 363642.327299997210503, 256690.652699999511242 ], [ 363643.178599998354912, 256685.382399998605251 ], [ 363639.98030000180006, 256682.189800001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013700", "MAP": "D9-7705-T006", "PARCEL_NAM": "4-6", "ACRE": "2,900 sq ft", "LONGITUDE": -64.8658268, "LATITUDE": 18.34316171, "OBJECTID_1": 23821, "PARCEL_NO_": "105801013700", "Tax_Legal_": "4-5, 4-6, 4C-2&4EA-6 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 188700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.391059141200003, "SHAPE_Area": 287.47107530199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365699.808100000023842, 257135.874600000679493 ], [ 365665.566299997270107, 257129.30009999871254 ], [ 365673.571400001645088, 257145.840399999171495 ], [ 365674.524999998509884, 257147.810899998992682 ], [ 365676.051500000059605, 257147.090199999511242 ], [ 365699.808100000023842, 257135.874600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105801013700", "MAP": "D9-7705-T006", "PARCEL_NAM": "ROW 4 REM", "ACRE": ".571", "LONGITUDE": -64.86539404, "LATITUDE": 18.34367851, "OBJECTID_1": 23821, "PARCEL_NO_": "105801013700", "Tax_Legal_": "4-5, 4-6, 4C-2&4EA-6 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 188700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.15654215699999, "SHAPE_Area": 494.82005710200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365699.052000001072884, 257178.687800001353025 ], [ 365687.51070000231266, 257174.963300000876188 ], [ 365691.234399996697903, 257182.429299999028444 ], [ 365705.723700001835823, 257187.230700001120567 ], [ 365714.530100002884865, 257190.726399999111891 ], [ 365723.790600001811981, 257194.430500000715256 ], [ 365732.903099998831749, 257200.926699999719858 ], [ 365740.406400002539158, 257207.500999998301268 ], [ 365749.931400001049042, 257216.893699999898672 ], [ 365752.312700003385544, 257221.523899998515844 ], [ 365757.59570000320673, 257219.301199998706579 ], [ 365754.253300003707409, 257212.409000001847744 ], [ 365741.517700001597404, 257199.986800000071526 ], [ 365732.786399997770786, 257192.975299999117851 ], [ 365727.35809999704361, 257189.273200001567602 ], [ 365720.351000003516674, 257185.831599999219179 ], [ 365699.052000001072884, 257178.687800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105801014200", "MAP": "A9-760-T010", "PARCEL_NAM": "ROW 4EA-4 REM", "ACRE": "0.55", "LONGITUDE": -64.86547651, "LATITUDE": 18.34444999, "OBJECTID_1": 23825, "PARCEL_NO_": "105801014200", "Tax_Legal_": "4 REM,4EA-4 REM & 4-4F ROW'S SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 160300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 648.70223761600005, "SHAPE_Area": 2368.4787926499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365721.476899996399879, 257289.2685999982059 ], [ 365717.599299997091293, 257290.761199999600649 ], [ 365712.8699000030756, 257291.621100001037121 ], [ 365703.276600003242493, 257292.887699998915195 ], [ 365695.685699999332428, 257294.409800000488758 ], [ 365682.032799996435642, 257295.289900001138449 ], [ 365670.710900001227856, 257294.466600000858307 ], [ 365664.690800003707409, 257293.222199998795986 ], [ 365660.144900001585484, 257292.282600000500679 ], [ 365653.477399997413158, 257291.224199999123812 ], [ 365648.533100001513958, 257289.794599998742342 ], [ 365644.693199999630451, 257288.684200000017881 ], [ 365640.036499999463558, 257286.038400001823902 ], [ 365637.708200000226498, 257280.958399999886751 ], [ 365638.449000000953674, 257273.232500001788139 ], [ 365642.450900003314018, 257268.79450000077486 ], [ 365644.490800000727177, 257266.532200001180172 ], [ 365649.359099999070168, 257263.992199998348951 ], [ 365653.49379999935627, 257264.727299999445677 ], [ 365654.809000000357628, 257257.524099998176098 ], [ 365651.83500000089407, 257256.557500001043081 ], [ 365646.92790000140667, 257256.631900001317263 ], [ 365642.541299998760223, 257257.375399999320507 ], [ 365639.641699999570847, 257259.011100001633167 ], [ 365636.086099997162819, 257262.220100000500679 ], [ 365633.104400001466274, 257266.697299998253584 ], [ 365630.855499997735023, 257271.459800001233816 ], [ 365628.209600001573563, 257277.942099999636412 ], [ 365629.13570000231266, 257284.424400001764297 ], [ 365632.046099998056889, 257289.054699998348951 ], [ 365640.512800000607967, 257293.552600000053644 ], [ 365650.43469999730587, 257297.124499998986721 ], [ 365658.50450000166893, 257298.447399999946356 ], [ 365684.0912000015378, 257300.779899999499321 ], [ 365702.944099999964237, 257299.124299999326468 ], [ 365717.255300000309944, 257297.194899998605251 ], [ 365721.35639999806881, 257296.401200000196695 ], [ 365723.73759999871254, 257295.607400000095367 ], [ 365727.45099999755621, 257292.336899999529123 ], [ 365734.794799998402596, 257285.440099999308586 ], [ 365745.433499999344349, 257274.176100000739098 ], [ 365742.258500002324581, 257282.775100000202656 ], [ 365737.760600000619888, 257293.226199999451637 ], [ 365735.511600002646446, 257298.253299999982119 ], [ 365734.056400001049042, 257302.751200001686811 ], [ 365733.262699998915195, 257309.101199999451637 ], [ 365731.410599999129772, 257317.567899998277426 ], [ 365730.576899997889996, 257320.902499999850988 ], [ 365729.690800003707409, 257324.976199999451637 ], [ 365727.574100002646446, 257329.341899998486042 ], [ 365724.663699999451637, 257332.120000001043081 ], [ 365719.26349999755621, 257335.918400000780821 ], [ 365713.15429999679327, 257337.676199998706579 ], [ 365706.804300002753735, 257340.58669999986887 ], [ 365704.433700002729893, 257341.967000000178814 ], [ 365702.508500002324581, 257343.087999999523163 ], [ 365704.406199999153614, 257345.351300001144409 ], [ 365706.263400003314018, 257347.566300000995398 ], [ 365713.617799997329712, 257344.140299998223782 ], [ 365716.196999996900558, 257342.9679000005126 ], [ 365725.192900002002716, 257338.469999998807907 ], [ 365730.352200001478195, 257334.89809999987483 ], [ 365731.939699999988079, 257333.046000000089407 ], [ 365733.659500002861023, 257330.532499998807907 ], [ 365735.511600002646446, 257327.0929000005126 ], [ 365736.796700000762939, 257322.125900000333786 ], [ 365738.554300002753735, 257313.46680000051856 ], [ 365739.348099999129772, 257309.233500000089407 ], [ 365739.612700000405312, 257306.058499999344349 ], [ 365740.803300000727177, 257302.486600000411272 ], [ 365742.787699997425079, 257296.798000000417233 ], [ 365745.830399997532368, 257290.712600000202656 ], [ 365748.476199999451637, 257283.833399999886751 ], [ 365754.561700001358986, 257267.164599999785423 ], [ 365759.615900002419949, 257266.120900001376867 ], [ 365778.175899997353554, 257261.738099999725819 ], [ 365757.59570000320673, 257219.301199998706579 ], [ 365752.312700003385544, 257221.523899998515844 ], [ 365755.090800002217293, 257228.800000000745058 ], [ 365756.14919999986887, 257238.854200001806021 ], [ 365755.619999997317791, 257245.468800000846386 ], [ 365753.648500002920628, 257252.061700001358986 ], [ 365750.196000002324581, 257259.227099999785423 ], [ 365745.38629999756813, 257264.949099998921156 ], [ 365739.206600002944469, 257271.740100000053644 ], [ 365731.993100002408028, 257279.102200001478195 ], [ 365727.83669999986887, 257282.721999999135733 ], [ 365721.476899996399879, 257289.2685999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021500", "MAP": "D9-7706-T006", "PARCEL_NAM": "4EA-6", "ACRE": "0.17", "LONGITUDE": -64.86486169, "LATITUDE": 18.34497699, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.36232658, "SHAPE_Area": 728.26630309899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365796.497000001370907, 257336.021699998527765 ], [ 365788.163800001144409, 257319.1554000005126 ], [ 365782.342600002884865, 257319.664700001478195 ], [ 365771.695299997925758, 257334.228799998760223 ], [ 365763.160599999129772, 257345.613800000399351 ], [ 365766.631399996578693, 257354.74720000103116 ], [ 365781.621500000357628, 257356.779199998825788 ], [ 365791.913800001144409, 257342.214299999177456 ], [ 365796.497000001370907, 257336.021699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105801014300", "MAP": "A9-760-T010", "PARCEL_NAM": "ROW 4EB REM", "ACRE": ".12", "LONGITUDE": -64.86608805, "LATITUDE": 18.34337375, "OBJECTID_1": 23826, "PARCEL_NO_": "105801014300", "Tax_Legal_": "4EB REM ROW ESTATE SMITH BAY NO.1,2&3 EASTEND QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.285906794, "SHAPE_Area": 503.02660125 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365630.354099996387959, 257139.817800000309944 ], [ 365626.156999997794628, 257133.691799998283386 ], [ 365619.263800002634525, 257134.264800000935793 ], [ 365621.464100003242493, 257137.912799999117851 ], [ 365626.649899996817112, 257145.427000001072884 ], [ 365629.930799998342991, 257149.448600001633167 ], [ 365635.116599999368191, 257155.587000001221895 ], [ 365637.550800003111362, 257158.021200001239777 ], [ 365640.195299997925758, 257160.338899999856949 ], [ 365643.70099999755621, 257163.315499998629093 ], [ 365648.108000002801418, 257166.242800001055002 ], [ 365650.910899996757507, 257168.078000001609325 ], [ 365654.482799999415874, 257169.665500000119209 ], [ 365659.576099999248981, 257172.046700000762939 ], [ 365666.524700000882149, 257174.24100000038743 ], [ 365691.234399996697903, 257182.429299999028444 ], [ 365687.51070000231266, 257174.963300000876188 ], [ 365665.846699997782707, 257167.972199998795986 ], [ 365662.879699997603893, 257166.684599999338388 ], [ 365658.505800001323223, 257164.79450000077486 ], [ 365652.896600000560284, 257162.04280000180006 ], [ 365647.816600002348423, 257158.550299998372793 ], [ 365642.313299998641014, 257154.31700000166893 ], [ 365638.820799998939037, 257150.718600001186132 ], [ 365636.174900002777576, 257147.331999998539686 ], [ 365630.354099996387959, 257139.817800000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801014000", "MAP": "A9-760-T010", "PARCEL_NAM": "4C-3", "ACRE": "2,145 sq ft", "LONGITUDE": -64.86627512, "LATITUDE": 18.34442762, "OBJECTID_1": 23823, "PARCEL_NO_": "105801014000", "Tax_Legal_": "4-C REM SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.520573791, "SHAPE_Area": 210.33032072200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365633.158699996769428, 257250.731300000101328 ], [ 365632.628200002014637, 257254.076699998229742 ], [ 365631.728900000452995, 257259.420899998396635 ], [ 365629.857400000095367, 257266.631700001657009 ], [ 365629.355599999427795, 257270.076200000941753 ], [ 365623.592699997127056, 257297.459499999880791 ], [ 365635.094899997115135, 257294.784499999135733 ], [ 365640.266099996864796, 257293.421500001102686 ], [ 365632.046099998056889, 257289.054699998348951 ], [ 365629.13570000231266, 257284.424400001764297 ], [ 365628.209600001573563, 257277.942099999636412 ], [ 365630.855499997735023, 257271.459800001233816 ], [ 365633.104400001466274, 257266.697299998253584 ], [ 365636.086099997162819, 257262.220100000500679 ], [ 365638.450400002300739, 257258.351399999111891 ], [ 365638.23870000243187, 257255.176399998366833 ], [ 365636.122000001370907, 257252.212999999523163 ], [ 365633.158699996769428, 257250.731300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702024400", "MAP": "A9-760-T010", "PARCEL_NAM": "4AB REM", "ACRE": ".48", "LONGITUDE": -64.86648132000001, "LATITUDE": 18.34443426, "OBJECTID_1": 22442, "PARCEL_NO_": "105702024400", "Tax_Legal_": "4-AB ESTATE SMITH BAY NO.1,2&3 EAST END QTR", "Name": "DALEY, ASHWORTH", "Address": "11-7-3 Estate Langmath", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.427710832, "SHAPE_Area": 2014.60400828 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365632.628200002014637, 257254.076699998229742 ], [ 365598.108000002801418, 257245.836899999529123 ], [ 365586.761799998581409, 257303.766499999910593 ], [ 365594.951399996876717, 257304.770899999886751 ], [ 365611.297200001776218, 257307.048900000751019 ], [ 365621.740599997341633, 257308.572000000625849 ], [ 365623.592699997127056, 257297.459499999880791 ], [ 365629.355599999427795, 257270.076200000941753 ], [ 365629.857400000095367, 257266.631700001657009 ], [ 365631.728900000452995, 257259.420899998396635 ], [ 365632.628200002014637, 257254.076699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105801014000", "MAP": "A9-760-T010", "PARCEL_NAM": null, "ACRE": ".426", "LONGITUDE": -64.86616383, "LATITUDE": 18.34434269, "OBJECTID_1": 23823, "PARCEL_NO_": "105801014000", "Tax_Legal_": "4-C REM SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 6.2696054910400001, "SHAPE_Area": 0.40221221655 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365644.490800000727177, 257266.532200001180172 ], [ 365642.450900003314018, 257268.79450000077486 ], [ 365642.732900001108646, 257268.8761 ], [ 365644.490800000727177, 257266.532200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801014000", "MAP": "A9-760-T010", "PARCEL_NAM": "4AB-1", "ACRE": "990 sq ft", "LONGITUDE": -64.86640827, "LATITUDE": 18.34417362, "OBJECTID_1": 23823, "PARCEL_NO_": "105801014000", "Tax_Legal_": "4-C REM SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.877409157499997, "SHAPE_Area": 89.280516190599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365604.665399998426437, 257245.378499999642372 ], [ 365598.427299998700619, 257244.206599999219179 ], [ 365598.108000002801418, 257245.836899999529123 ], [ 365632.628200002014637, 257254.076699998229742 ], [ 365633.158699996769428, 257250.731300000101328 ], [ 365604.665399998426437, 257245.378499999642372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105702021500", "MAP": "A9-760-T010", "PARCEL_NAM": null, "ACRE": ".027", "LONGITUDE": -64.86734949, "LATITUDE": 18.34508488, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4.6534866885900001, "SHAPE_Area": 0.23500925263 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365516.410400003194809, 257349.116799999028444 ], [ 365518.656499996781349, 257349.38060000166297 ], [ 365516.553099997341633, 257348.924300000071526 ], [ 365516.410400003194809, 257349.116799999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105702021500", "MAP": "A9-760-T010", "PARCEL_NAM": null, "ACRE": ".028", "LONGITUDE": -64.86704691, "LATITUDE": 18.34532572, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4.2886190809200002, "SHAPE_Area": 0.45242848054000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365548.335400000214577, 257375.741700001060963 ], [ 365548.336400002241135, 257376.225900001823902 ], [ 365550.205200001597404, 257376.241900000721216 ], [ 365548.335400000214577, 257375.741700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801013700", "MAP": "D9-7704-T006", "PARCEL_NAM": "4C-2", "ACRE": ".708", "LONGITUDE": -64.86669518, "LATITUDE": 18.34411236, "OBJECTID_1": 23821, "PARCEL_NO_": "105801013700", "Tax_Legal_": "4-5, 4-6, 4C-2&4EA-6 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 188700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.237879015800001, "SHAPE_Area": 0.43560358662999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365595.550999999046326, 257243.656500000506639 ], [ 365581.689099997282028, 257241.005300000309944 ], [ 365582.598200000822544, 257241.232900001108646 ], [ 365595.549599997699261, 257243.666000001132488 ], [ 365595.550999999046326, 257243.656500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105801014000", "MAP": "A9-760-T010", "PARCEL_NAM": "4C REM", "ACRE": ".426", "LONGITUDE": -64.86660776, "LATITUDE": 18.34412745, "OBJECTID_1": 23823, "PARCEL_NO_": "105801014000", "Tax_Legal_": "4-C REM SMITH BAY NO.1,2&3 EAST END QTR", "Name": "PLEASANT PROPERTIES LLC", "Address": "6600 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 5.86607206545, "SHAPE_Area": 0.01404749627 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365595.550999999046326, 257243.656500000506639 ], [ 365595.549599997699261, 257243.666000001132488 ], [ 365598.427299998700619, 257244.206599999219179 ], [ 365595.550999999046326, 257243.656500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702022400", "MAP": "F9-1040-T62", "PARCEL_NAM": "4G-9", "ACRE": "0.11", "LONGITUDE": -64.86738825, "LATITUDE": 18.34360328, "OBJECTID_1": 22388, "PARCEL_NO_": "105702022400", "Tax_Legal_": "4G-9 SMITH BAY NO.1,2&3 EAST END QTR", "Name": "FREDERICK FAMILY TRUST", "Address": "PO Box 8777", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15000, "Improved_V": 115900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.954070679599994, "SHAPE_Area": 478.68697294999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365529.769799999892712, 257181.934200000017881 ], [ 365528.910099998116493, 257181.482900001108646 ], [ 365515.446599997580051, 257174.414700001478195 ], [ 365508.24889999628067, 257170.635999999940395 ], [ 365503.64019999653101, 257180.1233000010252 ], [ 365499.403599999845028, 257188.844900000840425 ], [ 365499.667599998414516, 257188.9712999984622 ], [ 365502.755000002682209, 257190.450199998915195 ], [ 365520.769000001251698, 257199.343499999493361 ], [ 365529.769799999892712, 257181.934200000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304071400", "MAP": "D9-1419-T78", "PARCEL_NAM": "8-2", "ACRE": "0.16", "LONGITUDE": -64.93557224, "LATITUDE": 18.33461838, "OBJECTID_1": 11402, "PARCEL_NO_": "105304071400", "Tax_Legal_": "ORKANSHULLET 8-2 HASSEL ISLAND SOUTHSIDE QTR", "Name": "AMALIE HOLDING II LLLP", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025819, "Country": "United States", "Land_Value": 97100, "Improved_V": 390100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.50176964799999, "SHAPE_Area": 662.55826161899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358310.826399996876717, 256116.111999999731779 ], [ 358293.437600001692772, 256104.853900000452995 ], [ 358309.324799999594688, 256134.214899998158216 ], [ 358320.82150000333786, 256155.461800001561642 ], [ 358322.464699998497963, 256151.886700000613928 ], [ 358325.61710000038147, 256146.176699999719858 ], [ 358328.29110000282526, 256141.333299998193979 ], [ 358333.950000002980232, 256131.083099998533726 ], [ 358310.826399996876717, 256116.111999999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105304071200", "MAP": "D9-1432-T78", "PARCEL_NAM": "2-4", "ACRE": "0.05", "LONGITUDE": -64.9365051, "LATITUDE": 18.33588383, "OBJECTID_1": 11400, "PARCEL_NO_": "105304071200", "Tax_Legal_": "ORKANSHULLET 2-4 S S QTR", "Name": "WALTERS, GLENN F. & BARBARA P", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38800, "Improved_V": 103200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.251636714300005, "SHAPE_Area": 236.94671204 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358233.251500003039837, 256268.231600001454353 ], [ 358224.76349999755621, 256262.28999999910593 ], [ 358223.30009999871254, 256261.388000000268221 ], [ 358218.87049999833107, 256265.035900000482798 ], [ 358218.941799998283386, 256265.122400000691414 ], [ 358218.87049999833107, 256265.181099999696016 ], [ 358214.585299998521805, 256261.1864 ], [ 358204.946699999272823, 256271.206399999558926 ], [ 358209.759300000965595, 256280.579100001603365 ], [ 358211.171999998390675, 256279.084899999201298 ], [ 358213.158900000154972, 256278.708999998867512 ], [ 358224.489900000393391, 256268.935400001704693 ], [ 358225.591700002551079, 256268.39469999819994 ], [ 358233.251500003039837, 256268.231600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903031800", "MAP": "D9-8403-T010", "PARCEL_NAM": "6-1", "ACRE": "0.24", "LONGITUDE": -64.93157246, "LATITUDE": 18.34796046, "OBJECTID_1": 4828, "PARCEL_NO_": "102903031800", "Tax_Legal_": "6-1 LYTTONS FANCY 8G GREAT NORTHSIDE QUARTER", "Name": "FAMLSZ MANAGEMENT, LLC", "Address": "PO BOX 11773", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24200, "Improved_V": 36900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.440955962, "SHAPE_Area": 947.89490582400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358740.207999996840954, 257616.451999999582767 ], [ 358741.124399997293949, 257589.912999998778105 ], [ 358730.350900001823902, 257587.705899998545647 ], [ 358729.038000002503395, 257587.721599999815226 ], [ 358712.291799999773502, 257611.2195999994874 ], [ 358701.792599998414516, 257613.947599999606609 ], [ 358704.313400000333786, 257615.146099999547005 ], [ 358713.920800000429153, 257623.246300000697374 ], [ 358724.314699999988079, 257633.674899999052286 ], [ 358725.388199999928474, 257634.561000000685453 ], [ 358740.207999996840954, 257616.451999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201054900", "MAP": "D9-8606-T011", "PARCEL_NAM": "43-1", "ACRE": "0.25", "LONGITUDE": -64.95943867, "LATITUDE": 18.34011268, "OBJECTID_1": 7722, "PARCEL_NO_": "105201054900", "Tax_Legal_": "43-1 CONTANT 7A SOUTHSIDE QUARTER", "Name": "DESOUZA, DESMOND & CYNTHIA", "Address": "PO Box 303246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.23925998199999, "SHAPE_Area": 942.20639663700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355792.018500000238419, 256701.819899998605251 ], [ 355771.217200003564358, 256707.713599998503923 ], [ 355766.725400000810623, 256708.96059999987483 ], [ 355768.412299998104572, 256733.256900001317263 ], [ 355793.167900003492832, 256719.957899998873472 ], [ 355803.383100003004074, 256742.001299999654293 ], [ 355806.474600002169609, 256736.087200000882149 ], [ 355808.490800000727177, 256730.845199998468161 ], [ 355808.490800000727177, 256728.425799999386072 ], [ 355808.894000001251698, 256721.167599998414516 ], [ 355807.012199997901917, 256713.237399999052286 ], [ 355802.442299999296665, 256708.129700001329184 ], [ 355796.931400001049042, 256704.231800001114607 ], [ 355792.018500000238419, 256701.819899998605251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702012600", "MAP": "D9-1329-T77", "PARCEL_NAM": "C", "ACRE": "9.91", "LONGITUDE": -64.85623793000001, "LATITUDE": 18.32368953, "OBJECTID_1": 39475, "PARCEL_NO_": "107702012600", "Tax_Legal_": "NAZARETH ESTATE TRACK A OF 1&2 RED HOOK QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 630900, "Improved_V": 8800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 780.79691032699998, "SHAPE_Area": 36070.758540499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366830.805799998342991, 254960.904699999839067 ], [ 366805.032799996435642, 254931.988600000739098 ], [ 366791.803599998354912, 254914.129200000315905 ], [ 366785.850500002503395, 254903.545899998396635 ], [ 366779.23589999973774, 254887.670899998396635 ], [ 366773.944200001657009, 254875.103199999779463 ], [ 366766.006700001657009, 254866.504200000315905 ], [ 366758.730700001120567, 254862.535399999469519 ], [ 366716.397399999201298, 254845.999000001698732 ], [ 366575.339000001549721, 255079.578099999576807 ], [ 366735.412600003182888, 255108.646099999547005 ], [ 366830.805799998342991, 254960.904699999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701014400", "MAP": "F9-1180-T63", "PARCEL_NAM": "127", "ACRE": null, "LONGITUDE": -64.86488283, "LATITUDE": 18.32584676, "OBJECTID_1": 39162, "PARCEL_NO_": "107701014400", "Tax_Legal_": "127 FRYDENHOJ RED HOOK QTR", "Name": "THOMAS, J. & J,J.HODGE,J. PENN,J.WALLACE and D. SCHMIDT", "Address": "PO Box 11492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 60300, "Improved_V": 180600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.0827365779, "SHAPE_Area": 98.468565440999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365803.300800003111362, 255225.49439999833703 ], [ 365802.809299997985363, 255219.530200000852346 ], [ 365802.692500002682209, 255218.045699998736382 ], [ 365801.317400000989437, 255218.155699998140335 ], [ 365788.762599997222424, 255219.159499999135733 ], [ 365789.259400002658367, 255225.732099998742342 ], [ 365803.300800003111362, 255225.49439999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703025900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86009688, "LATITUDE": 18.31947834, "OBJECTID_1": 39719, "PARCEL_NO_": "107703025900", "Tax_Legal_": "NAZAREH ESTATE 2W-37 1 RED HOOK", "Name": "ODETTE CORP", "Address": "PO Box 1176", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 20500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.599681705500004, "SHAPE_Area": 524.17700848499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366318.923100002110004, 254533.741300001740456 ], [ 366316.989100001752377, 254507.211199998855591 ], [ 366297.971900001168251, 254509.239199999719858 ], [ 366298.404500000178814, 254535.514699999243021 ], [ 366318.923100002110004, 254533.741300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602025100", "MAP": "A9-167F-T71", "PARCEL_NAM": "394-186", "ACRE": ".137", "LONGITUDE": -64.88619723, "LATITUDE": 18.34613405, "OBJECTID_1": 21086, "PARCEL_NO_": "105602025100", "Tax_Legal_": "394-186 ANNAS RETREAT NEW QTR", "Name": "IRIS JOSEPH TRUST", "Address": "PO Box 306042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20800, "Improved_V": 92000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.07471334500001, "SHAPE_Area": 619.23781014600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363539.092799998819828, 257450.166799999773502 ], [ 363531.615299999713898, 257433.880100000649691 ], [ 363507.5574000030756, 257439.349300000816584 ], [ 363517.532600000500679, 257463.541900001466274 ], [ 363518.16330000013113, 257465.071600001305342 ], [ 363540.98369999974966, 257454.043600000441074 ], [ 363539.092799998819828, 257450.166799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021900", "MAP": "D9-2306-T83", "PARCEL_NAM": "31A", "ACRE": null, "LONGITUDE": -65.00646847, "LATITUDE": 18.35248216, "OBJECTID_1": 1864, "PARCEL_NO_": "102404021900", "Tax_Legal_": "FORTUNA 30 & 31A WEST END QTR", "Name": "DELYROT, LOUIS & ODILE", "Address": "PO Box 400", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 99100, "Improved_V": 152300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.515566746100006, "SHAPE_Area": 190.806637765 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350821.859499998390675, 258034.338599998503923 ], [ 350790.195500001311302, 258056.169100001454353 ], [ 350793.018399998545647, 258060.50450000166893 ], [ 350822.89639999717474, 258039.732999999076128 ], [ 350821.859499998390675, 258034.338599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404022000", "MAP": "D9-2306-T83", "PARCEL_NAM": "30A", "ACRE": "0.03", "LONGITUDE": -65.0067992, "LATITUDE": 18.35275909, "OBJECTID_1": 1865, "PARCEL_NO_": "102404022000", "Tax_Legal_": "FORTUNA REM 31&30A WEST END QTR", "Name": "O'NEAL, DAVID & BERYL", "Address": "PO Box 9228", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 92100, "Improved_V": 167300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.070179243, "SHAPE_Area": 250.55109133100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350748.565399996936321, 258091.408500000834465 ], [ 350749.249300003051758, 258096.372999999672174 ], [ 350795.565600000321865, 258064.340900000184774 ], [ 350793.018399998545647, 258060.50450000166893 ], [ 350748.565399996936321, 258091.408500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021100", "MAP": "D9-2306-T83", "PARCEL_NAM": "13", "ACRE": "1.00", "LONGITUDE": -65.00736069, "LATITUDE": 18.35230445, "OBJECTID_1": 1857, "PARCEL_NO_": "102404021100", "Tax_Legal_": "FORTUNA 13 WEST END QTR", "Name": "SMITH, WILBUR & ELMIRA", "Address": "PO Box 502864", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 97400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.72932869300001, "SHAPE_Area": 3615.8814983399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350735.821900002658367, 257998.903099998831749 ], [ 350699.789899997413158, 257985.17850000038743 ], [ 350684.781700000166893, 258016.660100001841784 ], [ 350682.308899998664856, 258022.972600001841784 ], [ 350681.484600000083447, 258025.076799999922514 ], [ 350679.819799996912479, 258031.184900000691414 ], [ 350677.260600000619888, 258047.629299998283386 ], [ 350742.140799999237061, 258065.406500000506639 ], [ 350745.094899997115135, 258066.215999998152256 ], [ 350735.821900002658367, 257998.903099998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404022200", "MAP": "F9-2835-T71", "PARCEL_NAM": "20A", "ACRE": "0.55", "LONGITUDE": -65.00600555, "LATITUDE": 18.35474381, "OBJECTID_1": 1867, "PARCEL_NO_": "102404022200", "Tax_Legal_": "FORTUNA 20A WEST END QTR", "Name": "RICHARDS, LEROY A", "Address": "PO Box 882", "City": "Mableton", "State": "Georgia", "Zip": 30126, "Country": "United States", "Land_Value": 65900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 214.180930077, "SHAPE_Area": 2318.5199689599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350869.191399998962879, 258268.055399999022484 ], [ 350852.650399997830391, 258253.382599998265505 ], [ 350828.052599996328354, 258325.085099998861551 ], [ 350832.119699999690056, 258327.329100001603365 ], [ 350842.553199999034405, 258333.114000000059605 ], [ 350849.752499997615814, 258339.927999999374151 ], [ 350852.952600002288818, 258342.909499999135733 ], [ 350880.339800000190735, 258277.94480000063777 ], [ 350869.191399998962879, 258268.055399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404020400", "MAP": "F9-2835-T71", "PARCEL_NAM": "REM 20", "ACRE": "0.45", "LONGITUDE": -65.00624047, "LATITUDE": 18.35458433, "OBJECTID_1": 1850, "PARCEL_NO_": "102404020400", "Tax_Legal_": "FORTUNA 20 WEST END QTR", "Name": "PENN, ALFRED & CELIA", "Address": "PO Box 9878", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.11869905399999, "SHAPE_Area": 2074.33003345 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350830.805200003087521, 258234.004599999636412 ], [ 350805.656999997794628, 258310.013999998569489 ], [ 350808.860699996352196, 258312.573300000280142 ], [ 350820.080799996852875, 258320.686700001358986 ], [ 350828.052599996328354, 258325.085099998861551 ], [ 350852.650399997830391, 258253.382599998265505 ], [ 350841.306500002741814, 258243.319899998605251 ], [ 350830.805200003087521, 258234.004599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104022500", "MAP": "D9-7109-T002", "PARCEL_NAM": "40-1", "ACRE": ".35", "LONGITUDE": -64.953696, "LATITUDE": 18.31688033, "OBJECTID_1": 87218, "PARCEL_NO_": "507104022500", "Tax_Legal_": "40-1 WATER ISLAND No.10 SOUTHSIDE QUARTER", "Name": "ANNE M PAGE REVOCABLE TRUST", "Address": "101 Pepper Ave", "City": "Richmond", "State": "Virginia", "Zip": 23226, "Country": "United States", "Land_Value": 67100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.82061366799999, "SHAPE_Area": 1534.6310419399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356428.582599997520447, 254127.384399998933077 ], [ 356384.15820000320673, 254144.983600001782179 ], [ 356392.133799999952316, 254150.541900001466274 ], [ 356396.933899998664856, 254155.01410000026226 ], [ 356399.320500001311302, 254158.833299998193979 ], [ 356401.680100001394749, 254165.81870000064373 ], [ 356401.59740000218153, 254175.528400000184774 ], [ 356403.195600003004074, 254177.230200000107288 ], [ 356406.420900002121925, 254177.256599999964237 ], [ 356413.972099997103214, 254171.784600000828505 ], [ 356422.068400003015995, 254168.133299998939037 ], [ 356431.27589999884367, 254165.275800000876188 ], [ 356438.102200001478195, 254163.053300000727177 ], [ 356442.046099998056889, 254160.238499999046326 ], [ 356437.344899997115135, 254144.156899999827147 ], [ 356430.192299999296665, 254131.854899998754263 ], [ 356428.582599997520447, 254127.384399998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104012600", "MAP": "A9-801-T014", "PARCEL_NAM": "C-1", "ACRE": "4.46", "LONGITUDE": -64.95654986, "LATITUDE": 18.31654563, "OBJECTID_1": 87185, "PARCEL_NO_": "507104012600", "Tax_Legal_": "TRACT \"C\" WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 939.23765334699999, "SHAPE_Area": 19746.124064600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356166.209200002253056, 254072.488000001758337 ], [ 356166.047732110775542, 254065.120029250654625 ], [ 356166.088100001215935, 254057.750399999320507 ], [ 356164.706732476712205, 254051.178327346395236 ], [ 356162.648599997162819, 254044.785799998790026 ], [ 356160.646711068460718, 254041.657471380603965 ], [ 356158.251638473127969, 254038.818875514814863 ], [ 356155.504799999296665, 254036.319099999964237 ], [ 356146.831604360777419, 254033.358495079854038 ], [ 356138.042300000786781, 254030.762800000607967 ], [ 356111.58389999717474, 254020.973200000822544 ], [ 356101.974398928461596, 254017.904026677453658 ], [ 356092.269199997186661, 254015.152399998158216 ], [ 356082.205714205629192, 254011.251006742939353 ], [ 356072.425499998033047, 254006.685699999332428 ], [ 356068.473506869224366, 254005.307103142695269 ], [ 356064.402732610411476, 254004.333668030594708 ], [ 356060.254600003361702, 254003.775299999862909 ], [ 356041.204599998891354, 254001.394000001251698 ], [ 356037.103629308170639, 254000.178631597140338 ], [ 356033.250636579352431, 253998.321341098839184 ], [ 356029.745354185928591, 253995.87020334135741 ], [ 356026.67851423099637, 253992.888664534897543 ], [ 356024.12950000166893, 253989.453899998217821 ], [ 356020.971500001847744, 253988.550599999725819 ], [ 356004.906400002539158, 253981.241999998688698 ], [ 355981.872900001704693, 254034.67119999974966 ], [ 355985.879299998283386, 254037.659299999475479 ], [ 355984.984899997711182, 254047.995600000023842 ], [ 355990.591300003230572, 254052.474399998784065 ], [ 355992.194899998605251, 254053.543000001460314 ], [ 356000.259800001978874, 254053.397900000214577 ], [ 356002.667999997735023, 254054.684200000017881 ], [ 356004.284199997782707, 254054.275199998170137 ], [ 356005.918399997055531, 254051.755499999970198 ], [ 356009.147299997508526, 254051.359700001776218 ], [ 356011.549999997019768, 254053.279199998825788 ], [ 356012.316799998283386, 254057.92960000038147 ], [ 356016.341099999845028, 254058.80689999833703 ], [ 356026.068999998271465, 254052.764800000935793 ], [ 356029.285300001502037, 254053.846599999815226 ], [ 356030.872699998319149, 254056.814899999648333 ], [ 356034.90429999679327, 254056.847899999469519 ], [ 356038.167300000786781, 254052.441599998623133 ], [ 356043.019599996507168, 254050.792599998414516 ], [ 356047.020599998533726, 254054.413899999111891 ], [ 356059.100900001823902, 254056.201499998569489 ], [ 356064.700099997222424, 254061.524700000882149 ], [ 356072.037799999117851, 254052.08559999987483 ], [ 356082.563000001013279, 254047.105500001460314 ], [ 356088.20719999819994, 254047.151599999517202 ], [ 356095.431699998676777, 254051.010499998927116 ], [ 356104.202200002968311, 254062.692400000989437 ], [ 356107.355499997735023, 254071.161899998784065 ], [ 356110.539399996399879, 254076.043099999427795 ], [ 356113.673000000417233, 254086.834600001573563 ], [ 356120.024599999189377, 254098.496700000017881 ], [ 356125.515900000929832, 254116.484600000083447 ], [ 356126.280900001525879, 254121.346000000834465 ], [ 356126.1891999989748, 254132.111000001430511 ], [ 356128.557700000703335, 254138.041000001132488 ], [ 356129.171700000762939, 254160.633099999278784 ], [ 356131.439499996602535, 254178.383499998599291 ], [ 356131.333499997854233, 254190.837099999189377 ], [ 356132.127199999988079, 254192.321299999952316 ], [ 356130.318499997258186, 254215.315699998289347 ], [ 356130.201700001955032, 254229.035799998790026 ], [ 356127.741400003433228, 254233.870799999684095 ], [ 356126.035199999809265, 254244.833700001239777 ], [ 356121.946099996566772, 254251.555300001055002 ], [ 356118.645400002598763, 254260.394200000911951 ], [ 356116.093400001525879, 254275.994199998676777 ], [ 356133.603900000452995, 254302.946400001645088 ], [ 356150.037600003182888, 254266.983899999409914 ], [ 356151.662799999117851, 254265.519600000232458 ], [ 356154.106899999082088, 254262.584199998527765 ], [ 356180.194799996912479, 254229.233899999409914 ], [ 356184.296499997377396, 254221.034800000488758 ], [ 356185.964900001883507, 254214.504599999636412 ], [ 356189.591099999845028, 254167.460400000214577 ], [ 356193.795299999415874, 254147.229800000786781 ], [ 356194.702299997210503, 254135.416000001132488 ], [ 356192.333800002932549, 254129.486000001430511 ], [ 356188.343599997460842, 254124.598200000822544 ], [ 356185.944399997591972, 254122.256499998271465 ], [ 356177.917199999094009, 254117.968899998813868 ], [ 356172.3108000010252, 254113.490100000053644 ], [ 356166.711599998176098, 254108.166900001466274 ], [ 356163.536700002849102, 254102.23030000180006 ], [ 356162.848999999463558, 254088.292500000447035 ], [ 356166.166000001132488, 254077.553899999707937 ], [ 356166.209200002253056, 254072.488000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302023800", "MAP": "D9-3886-T87", "PARCEL_NAM": "21A", "ACRE": null, "LONGITUDE": -64.92100163000001, "LATITUDE": 18.32658429, "OBJECTID_1": 24869, "PARCEL_NO_": "107302023800", "Tax_Legal_": "21A & 22 BELLEVUE No.7 FRENCHMAN'S BAY QTR.", "Name": "21A & 22 ESTATE BELLEVUE LLC", "Address": "PO Box 8839", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 119700, "Improved_V": 811300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 58.0476003323, "SHAPE_Area": 64.969260527800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359858.666000001132488, 255246.262600000947714 ], [ 359855.10530000180006, 255249.670899998396635 ], [ 359876.630500003695488, 255265.559399999678135 ], [ 359858.666000001132488, 255246.262600000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302021800", "MAP": "D9-2532-T83", "PARCEL_NAM": "1C", "ACRE": ".01", "LONGITUDE": -64.92040211, "LATITUDE": 18.32868, "OBJECTID_1": 24850, "PARCEL_NO_": "107302021800", "Tax_Legal_": "BELLEVUE (REM) 1 & 1-B-1 FRENCHMAN BAY QTR", "Name": "THE INDIA ASSOC. OF THE V. I.", "Address": "PO Box 1267", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 241800, "Improved_V": 1401800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.130472815399997, "SHAPE_Area": 30.877440992299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359928.165799997746944, 255480.437899999320507 ], [ 359924.882700003683567, 255480.032800000160933 ], [ 359921.719300001859665, 255498.452399998903275 ], [ 359928.165799997746944, 255480.437899999320507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107302025800", "MAP": "D9-8986-T015", "PARCEL_NAM": "2-B", "ACRE": ".030", "LONGITUDE": -64.91988955, "LATITUDE": 18.32834631, "OBJECTID_1": 24891, "PARCEL_NO_": "107302025800", "Tax_Legal_": "BELLEVUE 2B & 3A (CONS) NO.7 FRENCHMAN'S BAY QTR", "Name": "ENEZ IONE HARVEY TRUST", "Address": "PO Box 893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040893, "Country": "United States", "Land_Value": 59500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.767755606400002, "SHAPE_Area": 140.58282440400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359979.700499996542931, 255439.678199999034405 ], [ 359978.38910000026226, 255436.533599998801947 ], [ 359977.865599997341633, 255438.389800000935793 ], [ 359976.726099997758865, 255442.430599998682737 ], [ 359975.898299999535084, 255444.956999998539686 ], [ 359972.753200002014637, 255455.545499999076128 ], [ 359987.057899996638298, 255457.320500001311302 ], [ 359984.231100000441074, 255450.541999999433756 ], [ 359979.700499996542931, 255439.678199999034405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302025800", "MAP": "D9-8986-T015", "PARCEL_NAM": "2-1 ROW", "ACRE": ".043", "LONGITUDE": -64.91983346000001, "LATITUDE": 18.32831363, "OBJECTID_1": 24891, "PARCEL_NO_": "107302025800", "Tax_Legal_": "BELLEVUE 2B & 3A (CONS) NO.7 FRENCHMAN'S BAY QTR", "Name": "ENEZ IONE HARVEY TRUST", "Address": "PO Box 893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8040893, "Country": "United States", "Land_Value": 59500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.432327109900001, "SHAPE_Area": 135.45318327800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359987.057899996638298, 255457.320500001311302 ], [ 359993.993699997663498, 255458.020199999213219 ], [ 359993.288400001823902, 255456.612700000405312 ], [ 359987.572999998927116, 255445.205899998545647 ], [ 359980.241700001060963, 255430.574200000613928 ], [ 359978.38910000026226, 255436.533599998801947 ], [ 359979.700499996542931, 255439.678199999034405 ], [ 359984.231100000441074, 255450.541999999433756 ], [ 359987.057899996638298, 255457.320500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302022600", "MAP": "D9-8986-T015", "PARCEL_NAM": "3A", "ACRE": ".065", "LONGITUDE": -64.92014189, "LATITUDE": 18.32807205, "OBJECTID_1": 24858, "PARCEL_NO_": "107302022600", "Tax_Legal_": "BELLEVUE (REM) 3 FRENCHMAN BAY QTR", "Name": "FONSECA FAMILY TRUST", "Address": "PO Box 304294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 73800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.165534095, "SHAPE_Area": 207.89545279000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359957.775600001215935, 255395.201699998229742 ], [ 359943.670900002121925, 255441.737900000065565 ], [ 359942.575599998235703, 255445.474599998444319 ], [ 359950.836400002241135, 255432.449599999934435 ], [ 359955.466600000858307, 255424.644400000572205 ], [ 359959.83219999819994, 255402.948499999940395 ], [ 359957.775600001215935, 255395.201699998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034800", "MAP": "D9-794-T68", "PARCEL_NAM": "385", "ACRE": "0.13", "LONGITUDE": -64.88645705, "LATITUDE": 18.33528021, "OBJECTID_1": 21820, "PARCEL_NO_": "105604034800", "Tax_Legal_": "385 ANNAS RETREAT 1 NEW QUARTER", "Name": "HODGE, CYNTHIA", "Address": "PO Box 1453", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18700, "Improved_V": 86200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.41493906400001, "SHAPE_Area": 936.7076888 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363518.077799998223782, 256244.153599999845028 ], [ 363520.034100003540516, 256227.477400001138449 ], [ 363520.398699998855591, 256225.156399998813868 ], [ 363519.974500000476837, 256225.119199998676777 ], [ 363505.174300000071526, 256223.206500001251698 ], [ 363503.216300003230572, 256235.280799999833107 ], [ 363494.405299998819828, 256234.628199998289347 ], [ 363492.7820999994874, 256266.117600001394749 ], [ 363515.167400002479553, 256267.172400001436472 ], [ 363519.665299996733665, 256244.285900000482798 ], [ 363518.077799998223782, 256244.153599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604031600", "MAP": "D9-3796-T86", "PARCEL_NAM": "148-325A", "ACRE": "2.80", "LONGITUDE": -64.88747557000001, "LATITUDE": 18.33565573, "OBJECTID_1": 21787, "PARCEL_NO_": "105604031600", "Tax_Legal_": "148-325 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 542300, "Improved_V": 3353800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 772.4484488000001, "SHAPE_Area": 12555.3845418 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363440.233800001442432, 256356.677200000733137 ], [ 363433.054399996995926, 256346.5608000010252 ], [ 363420.6537000015378, 256332.528499998152256 ], [ 363407.600400000810623, 256318.822399999946356 ], [ 363397.157700002193451, 256310.337699998170137 ], [ 363391.609999999403954, 256301.526700001209974 ], [ 363393.894299998879433, 256296.631700001657009 ], [ 363400.747299998998642, 256293.041999999433756 ], [ 363410.895999997854233, 256285.923099998384714 ], [ 363422.938100002706051, 256277.377999998629093 ], [ 363432.401799999177456, 256267.587900001555681 ], [ 363437.296800002455711, 256255.839899998158216 ], [ 363437.949500001966953, 256247.028900001198053 ], [ 363447.413199998438358, 256232.670200001448393 ], [ 363458.182199999690056, 256220.595800001174212 ], [ 363468.298500001430511, 256216.679800000041723 ], [ 363468.541400000452995, 256205.090900000184774 ], [ 363444.044600002467632, 256207.525499999523163 ], [ 363435.167900003492832, 256208.297200001776218 ], [ 363392.39919999986887, 256211.957899998873472 ], [ 363373.031499996781349, 256213.699299998581409 ], [ 363353.663900002837181, 256215.440600000321865 ], [ 363346.816200003027916, 256284.605099998414516 ], [ 363343.076399996876717, 256322.378400001674891 ], [ 363342.126500003039837, 256328.819899998605251 ], [ 363340.685500003397465, 256338.592099998146296 ], [ 363347.773999996483326, 256338.882100000977516 ], [ 363350.990299999713898, 256339.963899999856949 ], [ 363360.637299999594688, 256343.420400001108646 ], [ 363398.404500000178814, 256358.928199999034405 ], [ 363401.676500000059605, 256353.466600000858307 ], [ 363466.534699998795986, 256407.192999999970198 ], [ 363518.32150000333786, 256432.257699999958277 ], [ 363518.232900001108646, 256420.35700000077486 ], [ 363512.98309999704361, 256419.191199999302626 ], [ 363495.710600003600121, 256414.438400000333786 ], [ 363488.531300000846386, 256411.8277000002563 ], [ 363480.699199996888638, 256407.585299998521805 ], [ 363469.277500003576279, 256399.753299999982119 ], [ 363461.119199998676777, 256393.552999999374151 ], [ 363455.245200000703335, 256386.0472999997437 ], [ 363447.739500001072884, 256371.362199999392033 ], [ 363440.233800001442432, 256356.677200000733137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105604031600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.88699615, "LATITUDE": 18.33585, "OBJECTID_1": 21787, "PARCEL_NO_": "105604031600", "Tax_Legal_": "148-325 ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 542300, "Improved_V": 3353800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 685.96974501399995, "SHAPE_Area": 2261.9869304200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363454.592500001192093, 256233.64919999986887 ], [ 363462.750900000333786, 256227.775100000202656 ], [ 363465.035199999809265, 256230.385800000280142 ], [ 363466.340499997138977, 256238.87049999833107 ], [ 363468.951200000941753, 256250.292199999094009 ], [ 363474.825199998915195, 256259.42960000038147 ], [ 363482.330899998545647, 256266.935300000011921 ], [ 363488.857600003480911, 256268.240600001066923 ], [ 363488.531300000846386, 256259.755899999290705 ], [ 363484.941600002348423, 256257.145199999213219 ], [ 363479.0675999969244, 256250.618500001728535 ], [ 363472.540899999439716, 256236.912500001490116 ], [ 363471.561899997293949, 256223.206500001251698 ], [ 363468.298500001430511, 256216.679800000041723 ], [ 363458.182199999690056, 256220.595800001174212 ], [ 363447.413199998438358, 256232.670200001448393 ], [ 363437.949500001966953, 256247.028900001198053 ], [ 363437.296800002455711, 256255.839899998158216 ], [ 363432.401799999177456, 256267.587900001555681 ], [ 363422.938100002706051, 256277.377999998629093 ], [ 363410.895999997854233, 256285.923099998384714 ], [ 363400.747299998998642, 256293.041999999433756 ], [ 363393.894299998879433, 256296.631700001657009 ], [ 363391.609999999403954, 256301.526700001209974 ], [ 363397.157700002193451, 256310.337699998170137 ], [ 363407.600400000810623, 256318.822399999946356 ], [ 363420.6537000015378, 256332.528499998152256 ], [ 363433.054399996995926, 256346.5608000010252 ], [ 363440.233800001442432, 256356.677200000733137 ], [ 363447.739500001072884, 256371.362199999392033 ], [ 363455.245200000703335, 256386.0472999997437 ], [ 363461.119199998676777, 256393.552999999374151 ], [ 363469.277500003576279, 256399.753299999982119 ], [ 363480.699199996888638, 256407.585299998521805 ], [ 363488.531300000846386, 256411.8277000002563 ], [ 363495.710600003600121, 256414.438400000333786 ], [ 363512.98309999704361, 256419.191199999302626 ], [ 363518.232900001108646, 256420.35700000077486 ], [ 363518.227700002491474, 256419.659699998795986 ], [ 363518.880400002002716, 256415.743700001388788 ], [ 363503.869000002741814, 256411.501400001347065 ], [ 363489.836599998176098, 256406.280000001192093 ], [ 363481.025600001215935, 256401.385000001639128 ], [ 363470.909199997782707, 256392.574000000953674 ], [ 363461.771899998188019, 256383.762899998575449 ], [ 363457.203199997544289, 256375.604600001126528 ], [ 363452.634499996900558, 256364.835499998182058 ], [ 363445.781499996781349, 256351.782200001180172 ], [ 363439.254799999296665, 256342.318500000983477 ], [ 363424.569799996912479, 256326.654399998486042 ], [ 363406.947700001299381, 256311.643100000917912 ], [ 363400.420999996364117, 256303.811000000685453 ], [ 363401.726400002837181, 256298.916000001132488 ], [ 363411.842699997127056, 256293.368299998342991 ], [ 363420.641699999570847, 256286.123500000685453 ], [ 363433.054399996995926, 256275.420000001788139 ], [ 363439.907499998807907, 256268.240600001066923 ], [ 363444.802500002086163, 256257.797899998724461 ], [ 363445.455099999904633, 256249.965900000184774 ], [ 363448.065800003707409, 256243.765500001609325 ], [ 363454.592500001192093, 256233.64919999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "A3-97-T66", "PARCEL_NAM": "35 REM", "ACRE": null, "LONGITUDE": -64.96422755, "LATITUDE": 18.32943028, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1373.89424768, "SHAPE_Area": 35315.882147900011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355363.571299999952316, 255753.509700000286102 ], [ 355366.358300000429153, 255748.949200000613928 ], [ 355375.347900003194809, 255754.392000000923872 ], [ 355375.413099996745586, 255746.742600001394749 ], [ 355377.941699996590614, 255733.886599998921156 ], [ 355379.710799999535084, 255715.535900000482798 ], [ 355363.765399999916553, 255599.515099998563528 ], [ 355361.438199996948242, 255588.73030000180006 ], [ 355357.507299996912479, 255576.876800000667572 ], [ 355347.998800002038479, 255557.167300000786781 ], [ 355344.879600003361702, 255544.687300000339746 ], [ 355345.80460000038147, 255530.762699998915195 ], [ 355354.076300002634525, 255506.343499999493361 ], [ 355355.854400001466274, 255486.9375 ], [ 355354.308300003409386, 255479.11430000141263 ], [ 355351.158600002527237, 255470.222600001841784 ], [ 355347.18639999628067, 255463.223999999463558 ], [ 355343.1925999969244, 255458.758400000631809 ], [ 355308.787299998104572, 255427.234900001436472 ], [ 355282.346199996769428, 255407.386799998581409 ], [ 355267.93860000371933, 255394.814399998635054 ], [ 355254.368000000715256, 255378.660199999809265 ], [ 355252.769799999892712, 255376.958399999886751 ], [ 355251.977799996733665, 255375.263199999928474 ], [ 355246.412799999117851, 255365.929499998688698 ], [ 355244.047799997031689, 255359.577300000935793 ], [ 355232.156300000846386, 255335.626400001347065 ], [ 355229.882799997925758, 255325.090500000864267 ], [ 355157.83049999922514, 255325.663899999111891 ], [ 355158.036700002849102, 255327.842599999159575 ], [ 355157.210600003600121, 255330.157900001853704 ], [ 355157.135099999606609, 255339.023200001567602 ], [ 355159.521600000560284, 255342.842399999499321 ], [ 355168.313699997961521, 255351.991399999707937 ], [ 355168.292199999094009, 255354.524300001561642 ], [ 355166.674099996685982, 255355.144400000572205 ], [ 355162.669600002467632, 255351.945199999958277 ], [ 355157.831699997186661, 255351.905600000172853 ], [ 355156.201099999248981, 255354.003199998289347 ], [ 355161.764300003647804, 255363.547899998724461 ], [ 355172.12049999833107, 255378.409299999475479 ], [ 355179.237099997699261, 255394.932799998670816 ], [ 355184.791400000452995, 255405.532900001853704 ], [ 355201.490199998021126, 255433.111800000071526 ], [ 355211.959600001573563, 255434.67509999871254 ], [ 355227.067400000989437, 255459.707800000905991 ], [ 355236.561499997973442, 255481.105999998748302 ], [ 355252.581699997186661, 255493.691599998623133 ], [ 355262.941500000655651, 255508.130699999630451 ], [ 355270.072400003671646, 255522.965700000524521 ], [ 355273.981700003147125, 255537.352000001817942 ], [ 355277.070299997925758, 255553.420400001108646 ], [ 355279.354299999773502, 255569.271099999547005 ], [ 355279.285999998450279, 255577.292100001126528 ], [ 355277.572700001299381, 255589.099300000816584 ], [ 355283.00110000371933, 255614.475000001490116 ], [ 355290.209399998188019, 255620.233500000089407 ], [ 355295.853500001132488, 255620.279699999839067 ], [ 355302.345399998128414, 255615.477699998766184 ], [ 355314.269299998879433, 255635.629200000315905 ], [ 355316.614500001072884, 255644.303199999034405 ], [ 355316.547899998724461, 255652.113099999725819 ], [ 355318.077799998223782, 255661.835900001227856 ], [ 355322.849200002849102, 255669.685400001704693 ], [ 355332.425999999046326, 255681.374000001698732 ], [ 355340.384900003671646, 255693.682500001043081 ], [ 355341.95610000193119, 255698.550500001758337 ], [ 355341.059900000691414, 255709.097899999469519 ], [ 355334.526699997484684, 255718.754700001329184 ], [ 355335.31139999628067, 255721.294300001114607 ], [ 355337.703400000929832, 255724.480200000107288 ], [ 355338.427000001072884, 255734.19649999961257 ], [ 355316.257399998605251, 255780.87779999896884 ], [ 355308.10249999910593, 255791.576799999922514 ], [ 355296.71339999884367, 255803.304900001734495 ], [ 355295.077399998903275, 255806.035799998790026 ], [ 355339.895199999213219, 255814.117899999022484 ], [ 355392.260200001299381, 255823.561099998652935 ], [ 355390.938699997961521, 255817.374899998307228 ], [ 355388.838600002229214, 255810.084399998188019 ], [ 355341.656300000846386, 255796.395399998873472 ], [ 355342.795999996364117, 255784.925999999046326 ], [ 355347.863200001418591, 255774.791700001806021 ], [ 355363.571299999952316, 255753.509700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "D9-8992-T015", "PARCEL_NAM": "35A REM", "ACRE": "5.5", "LONGITUDE": -64.96358221, "LATITUDE": 18.33290713, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 682.3968386, "SHAPE_Area": 22374.655909900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355369.785499997437, 256028.717599999159575 ], [ 355446.641500003635883, 256035.181699998676777 ], [ 355433.582999996840954, 256017.629599999636412 ], [ 355432.80009999871254, 256014.878899998962879 ], [ 355431.19820000231266, 256013.599300000816584 ], [ 355428.820699997246265, 256008.724599998444319 ], [ 355427.249399997293949, 256003.856600001454353 ], [ 355424.121299996972084, 255992.432000000029802 ], [ 355420.285700000822544, 255969.391399998217821 ], [ 355420.400799997150898, 255955.88230000063777 ], [ 355422.91499999910593, 255944.714999999850988 ], [ 355404.695299997925758, 255906.357900001108646 ], [ 355400.231499999761581, 255862.413899999111891 ], [ 355397.160800002515316, 255844.234700001776218 ], [ 355395.591399997472763, 255839.155600000172853 ], [ 355392.260200001299381, 255823.561099998652935 ], [ 355295.077399998903275, 255806.035799998790026 ], [ 355295.050499998033047, 255809.201900001615286 ], [ 355299.013700000941753, 255817.255899999290705 ], [ 355299.739100001752377, 255826.760999999940395 ], [ 355296.481499999761581, 255830.534000001847744 ], [ 355294.008599996566772, 255836.846599999815226 ], [ 355293.972599998116493, 255841.068199999630451 ], [ 355297.158299997448921, 255845.738299999386072 ], [ 355303.581900000572205, 255848.957299999892712 ], [ 355306.762100003659725, 255854.260600000619888 ], [ 355304.319799996912479, 255856.984900001436472 ], [ 355300.266699999570847, 255859.4847999997437 ], [ 355292.99549999833107, 255861.114100001752377 ], [ 355282.472099997103214, 255865.883099999278784 ], [ 355279.191100001335144, 255872.400100000202656 ], [ 355278.276900000870228, 255885.058299999684095 ], [ 355279.731299996376038, 255903.64640000090003 ], [ 355282.82880000025034, 255918.659400001168251 ], [ 355286.756099998950958, 255930.934999998658895 ], [ 355304.297200001776218, 255954.298799999058247 ], [ 355328.303099997341633, 255976.026799999177456 ], [ 355355.537900000810623, 255997.359099999070168 ], [ 355365.912100002169609, 256010.109600000083447 ], [ 355369.051100000739098, 256020.267799999564886 ], [ 355369.785499997437, 256028.717599999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105302480500", "MAP": "D9-8998-T015", "PARCEL_NAM": "4D", "ACRE": ".23", "LONGITUDE": -64.93472946, "LATITUDE": 18.34770519, "OBJECTID_1": 10839, "PARCEL_NO_": "105302480500", "Tax_Legal_": "4D AGNES FANCY & 4-1 R.O.W. No.8H NORTHSIDE QTR", "Name": "LAPLACE EKPO, LISA & CHRISTOPHER", "Address": "PO Box 305089", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035089, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.409123714, "SHAPE_Area": 1722.71855007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358418.485299997031689, 257574.456300001591444 ], [ 358404.937200002372265, 257564.936700001358986 ], [ 358402.27235377492616, 257563.537551162589807 ], [ 358399.445372490328737, 257562.504497579386225 ], [ 358396.506283983471803, 257561.855820743076038 ], [ 358393.507100000977516, 257561.603000000119209 ], [ 358380.172100000083447, 257562.238000001758337 ], [ 358373.834754489420447, 257562.808589818072505 ], [ 358367.472099997103214, 257562.872999999672174 ], [ 358359.77255178138148, 257562.303839808504563 ], [ 358352.052000001072884, 257562.295699998736382 ], [ 358395.565800003707409, 257604.386500000953674 ], [ 358425.625, 257590.633099999278784 ], [ 358418.485299997031689, 257574.456300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302480600", "MAP": "D9-8998-T015", "PARCEL_NAM": "4A-1", "ACRE": ".23", "LONGITUDE": -64.93520517, "LATITUDE": 18.34741564, "OBJECTID_1": 10840, "PARCEL_NO_": "105302480600", "Tax_Legal_": "4A-1 AGNES FANCY No.8H NORTHSIDE QTR", "Name": "BERRY, JOHN C.", "Address": "107-6 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023517, "Country": "United States", "Land_Value": 63200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.98147107099999, "SHAPE_Area": 1097.1601716600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358352.052000001072884, 257562.295699998736382 ], [ 358369.046099998056889, 257538.682700000703335 ], [ 358366.594700001180172, 257537.80460000038147 ], [ 358335.0625, 257526.509199999272823 ], [ 358325.882399998605251, 257549.142900001257658 ], [ 358325.050899997353554, 257552.091400001198053 ], [ 358320.121200002729893, 257564.443799998611212 ], [ 358352.052000001072884, 257562.295699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105302481400", "MAP": "D9-8998-T015", "PARCEL_NAM": "4 REM", "ACRE": "0.28", "LONGITUDE": -64.93482324, "LATITUDE": 18.34742771, "OBJECTID_1": 10859, "PARCEL_NO_": "105302481400", "Tax_Legal_": "4 REM AGNES FANCY No.8H NORTHSIDE QTR", "Name": "JOSEPH QUAIN and CHERISE CREQUE QUAIN", "Address": "64363 Austin St", "City": "Rego Park", "State": "New York", "Zip": 11374, "Country": "United States", "Land_Value": 51000, "Improved_V": 184900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.54782928700001, "SHAPE_Area": 1356.34228895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358352.052000001072884, 257562.295699998736382 ], [ 358359.77255178138148, 257562.303839808504563 ], [ 358367.472099997103214, 257562.872999999672174 ], [ 358373.834754489420447, 257562.808589818072505 ], [ 358380.172100000083447, 257562.238000001758337 ], [ 358393.507100000977516, 257561.603000000119209 ], [ 358396.506283983471803, 257561.855820743134245 ], [ 358399.445372490328737, 257562.504497579473536 ], [ 358402.272353774867952, 257563.537551162677119 ], [ 358404.937200002372265, 257564.936700001358986 ], [ 358418.485299997031689, 257574.456300001591444 ], [ 358416.52589999884367, 257570.016699999570847 ], [ 358412.679555524315219, 257563.494141861883691 ], [ 358409.064699999988079, 257556.840500000864267 ], [ 358404.721954424807336, 257552.172509544645436 ], [ 358400.745560185809154, 257547.188749630062375 ], [ 358397.158399999141693, 257541.917899999767542 ], [ 358392.584836824215017, 257534.010161096288357 ], [ 358388.232199996709824, 257525.978700000792742 ], [ 358384.083599999547005, 257517.788400001823902 ], [ 358352.052000001072884, 257562.295699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "A3-97-T66", "PARCEL_NAM": "35 REM", "ACRE": null, "LONGITUDE": -64.95615548000001, "LATITUDE": 18.32806285, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 869.56785496299995, "SHAPE_Area": 12811.601131699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356006.521899998188019, 255340.423599999397993 ], [ 356020.640500001609325, 255335.211899999529123 ], [ 356051.0675999969244, 255341.826499998569489 ], [ 356068.265500001609325, 255353.732799999415874 ], [ 356080.171800002455711, 255354.394299998879433 ], [ 356102.0, 255362.993200000375509 ], [ 356127.796899996697903, 255372.253699999302626 ], [ 356173.437600001692772, 255414.587099999189377 ], [ 356169.468900002539158, 255437.738200001418591 ], [ 356195.927299998700619, 255444.352800000458956 ], [ 356223.708599999547005, 255454.936099998652935 ], [ 356238.26070000231266, 255486.686200000345707 ], [ 356245.875900000333786, 255511.531500000506639 ], [ 356269.847699999809265, 255537.270100001245737 ], [ 356272.191100001335144, 255546.155200000852346 ], [ 356273.667000003159046, 255555.749600000679493 ], [ 356273.842299997806549, 255555.44370000064373 ], [ 356277.939599998295307, 255533.958799999207258 ], [ 356277.2466000020504, 255520.654199998825788 ], [ 356271.751599997282028, 255503.088500000536442 ], [ 356260.632299996912479, 255483.154699999839067 ], [ 356259.894299998879433, 255475.127099998295307 ], [ 356258.328400000929832, 255469.625799998641014 ], [ 356251.145400002598763, 255460.912200000137091 ], [ 356246.316500000655651, 255459.817200001329184 ], [ 356245.522699996829033, 255458.333099998533726 ], [ 356245.551500000059605, 255454.955800000578165 ], [ 356249.678400002419949, 255443.801600001752377 ], [ 356248.93860000371933, 255435.985100001096725 ], [ 356230.467100001871586, 255427.179099999368191 ], [ 356220.003100000321865, 255424.982500001788139 ], [ 356214.376900002360344, 255422.825500000268221 ], [ 356210.377700001001358, 255418.993099998682737 ], [ 356207.240500003099442, 255408.6239 ], [ 356206.524099998176098, 255398.063299998641014 ], [ 356204.983400002121925, 255389.60700000077486 ], [ 356201.005800001323223, 255383.241599999368191 ], [ 356197.012000001966953, 255378.77589999884367 ], [ 356171.391599997878075, 255357.245799999684095 ], [ 356156.150799997150898, 255347.833000000566244 ], [ 356135.251400001347065, 255340.0625 ], [ 356111.166299998760223, 255327.622000001370907 ], [ 356093.520999997854233, 255316.500700000673532 ], [ 356058.955600000917912, 255303.763300001621246 ], [ 356041.241899996995926, 255300.662999998778105 ], [ 356018.675999999046326, 255299.21169999986887 ], [ 356008.985799998044968, 255300.821199998259544 ], [ 356000.926299996674061, 255300.333000000566244 ], [ 355993.554499998688698, 255303.541200000792742 ], [ 356006.521899998188019, 255340.423599999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "D9-781-T68", "PARCEL_NAM": "REM 78 (HAYPIECE HILL)", "ACRE": null, "LONGITUDE": -64.9590475, "LATITUDE": 18.32900713, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 449.11278296400002, "SHAPE_Area": 8368.2260530200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355858.755999997258186, 255518.91780000180006 ], [ 355880.551600001752377, 255516.140900000929832 ], [ 355892.640900000929832, 255516.873100001364946 ], [ 355893.648100003600121, 255516.947299998253584 ], [ 355899.0878000035882, 255517.348099999129772 ], [ 355910.343800000846386, 255521.239900000393391 ], [ 355913.953400000929832, 255523.099800001829863 ], [ 355915.089900001883507, 255454.068300001323223 ], [ 355889.857400000095367, 255460.315400000661612 ], [ 355846.636799998581409, 255471.016100000590086 ], [ 355815.473800003528595, 255471.438499998301268 ], [ 355789.556100003421307, 255451.36769999936223 ], [ 355789.89750000089407, 255451.0337999984622 ], [ 355783.449299998581409, 255444.761700000613928 ], [ 355762.396499998867512, 255462.918299999088049 ], [ 355748.443999998271465, 255484.843100000172853 ], [ 355748.573499999940395, 255484.874299999326468 ], [ 355762.51410000026226, 255492.320500001311302 ], [ 355836.554999999701977, 255531.868099998682737 ], [ 355836.875900000333786, 255531.615499999374151 ], [ 355847.428099997341633, 255523.469200000166893 ], [ 355858.755999997258186, 255518.91780000180006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-5872-T95", "PARCEL_NAM": "F", "ACRE": "0.79", "LONGITUDE": -64.95624459, "LATITUDE": 18.33118194, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.29832275400003, "SHAPE_Area": 2981.8488272499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356096.881099998950958, 255773.9679000005126 ], [ 356184.160300001502037, 255711.655900001525879 ], [ 356184.831299997866154, 255706.816899999976158 ], [ 356184.568800002336502, 255703.547100000083447 ], [ 356185.407499998807907, 255699.754299998283386 ], [ 356170.191899999976158, 255687.386300001293421 ], [ 356149.895599998533726, 255703.474399998784065 ], [ 356080.880699999630451, 255759.060400001704693 ], [ 356081.62049999833107, 255766.876899998635054 ], [ 356083.985500000417233, 255773.229100000113249 ], [ 356087.955899998545647, 255780.438799999654293 ], [ 356096.881099998950958, 255773.9679000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-5872-T95", "PARCEL_NAM": "163-B", "ACRE": "0.28", "LONGITUDE": -64.95617797, "LATITUDE": 18.331325, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.41546480599999, "SHAPE_Area": 942.88232454599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356184.160300001502037, 255711.655900001525879 ], [ 356096.881099998950958, 255773.9679000005126 ], [ 356101.159299999475479, 255776.482200000435114 ], [ 356106.552000001072884, 255779.6435999982059 ], [ 356181.249799996614456, 255724.355900000780821 ], [ 356184.160300001502037, 255711.655900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105204050100", "MAP": "D9-5872-T95", "PARCEL_NAM": "ROW 163-A", "ACRE": null, "LONGITUDE": -64.9560245, "LATITUDE": 18.33127429, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.03076440699999, "SHAPE_Area": 377.40239215499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356193.420699998736382, 255714.830899998545647 ], [ 356187.864399999380112, 255710.068399999290705 ], [ 356184.160300001502037, 255711.655900001525879 ], [ 356181.249799996614456, 255724.355900000780821 ], [ 356106.552000001072884, 255779.6435999982059 ], [ 356109.180100001394749, 255781.184300001710653 ], [ 356184.954000003635883, 255725.414299998432398 ], [ 356187.864399999380112, 255722.503899998962879 ], [ 356193.420699998736382, 255714.830899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050100", "MAP": "D9-5819-T94", "PARCEL_NAM": "173", "ACRE": "0.36", "LONGITUDE": -64.95547318, "LATITUDE": 18.33016647, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.580370841800004, "SHAPE_Area": 200.14804162199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356228.345799997448921, 255607.145300000905991 ], [ 356228.081200003623962, 255604.763999998569489 ], [ 356202.192100003361702, 255630.413400001823902 ], [ 356204.797799997031689, 255632.545299999415874 ], [ 356211.941600002348423, 255629.370299998670816 ], [ 356218.820699997246265, 255624.607799999415874 ], [ 356224.376999996602535, 255617.993200000375509 ], [ 356228.345799997448921, 255607.145300000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105204050100", "MAP": "D9-5872-T95", "PARCEL_NAM": "ROW D", "ACRE": "0.10", "LONGITUDE": -64.9556766, "LATITUDE": 18.33075265, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.531389206, "SHAPE_Area": 336.99037051 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356193.41610000282526, 255710.857999999076128 ], [ 356193.411300003528595, 255706.785900000482798 ], [ 356189.408500000834465, 255703.375599998980761 ], [ 356191.100299999117851, 255694.101300001144409 ], [ 356198.508100003004074, 255676.430100001394749 ], [ 356205.027000002563, 255668.461899999529123 ], [ 356211.52419999986887, 255663.026700001209974 ], [ 356205.910599999129772, 255659.392099998891354 ], [ 356198.605200000107288, 255665.031899999827147 ], [ 356197.771899998188019, 255668.191399998962879 ], [ 356191.226099997758865, 255679.325800001621246 ], [ 356188.756800003349781, 255685.2162000015378 ], [ 356186.273199997842312, 255692.795299999415874 ], [ 356185.407499998807907, 255699.754299998283386 ], [ 356184.568800002336502, 255703.547100000083447 ], [ 356184.831299997866154, 255706.816899999976158 ], [ 356184.160300001502037, 255711.655900001525879 ], [ 356187.864399999380112, 255710.068399999290705 ], [ 356193.420699998736382, 255714.830899998545647 ], [ 356193.41610000282526, 255710.857999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105204050100", "MAP": "D9-5872-T95", "PARCEL_NAM": "ROW 163-A", "ACRE": null, "LONGITUDE": -64.95568431, "LATITUDE": 18.33099596, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 7.9478316234499999, "SHAPE_Area": 0.00912800188 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356193.41610000282526, 255710.857999999076128 ], [ 356193.420699998736382, 255714.830899998545647 ], [ 356193.420699998736382, 255710.862199999392033 ], [ 356193.41610000282526, 255710.857999999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050177", "MAP": "D9-8126-T008", "PARCEL_NAM": "171", "ACRE": "0.38", "LONGITUDE": -64.96351322, "LATITUDE": 18.3316943, "OBJECTID_1": 8699, "PARCEL_NO_": "105204050177", "Tax_Legal_": "121,167&171 SUB BASE SOUTHSIDE QTR.", "Name": "OTTLEY COMMUNICATIONS", "Address": "PO Box 1340", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 400600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.89654420400001, "SHAPE_Area": 1578.6220766399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355341.656300000846386, 255796.395399998873472 ], [ 355388.838600002229214, 255810.084399998188019 ], [ 355375.274599999189377, 255762.995700001716614 ], [ 355375.347900003194809, 255754.392000000923872 ], [ 355366.358300000429153, 255748.949200000613928 ], [ 355363.571299999952316, 255753.509700000286102 ], [ 355347.863200001418591, 255774.791700001806021 ], [ 355342.795999996364117, 255784.925999999046326 ], [ 355341.656300000846386, 255796.395399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203023500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95836123, "LATITUDE": 18.33694847, "OBJECTID_1": 8546, "PARCEL_NO_": "105203023500", "Tax_Legal_": "15 ESTATE NISKY No.6 SOUTHSIDE QTR.", "Name": "JOSEPH, C. D. , S. A. , L. D. , W. A. & D. A", "Address": "P.O.BOX 5187", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 133500, "Improved_V": 300800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 8.1810263639599992, "SHAPE_Area": 0.37524940822000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355904.924699999392033, 256367.402300000190735 ], [ 355904.747500002384186, 256367.468199998140335 ], [ 355905.799999997019768, 256371.312100000679493 ], [ 355904.924699999392033, 256367.402300000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203022900", "MAP": "G9-1323-T69", "PARCEL_NAM": "REM 4", "ACRE": ".15", "LONGITUDE": -64.95883837, "LATITUDE": 18.33730939, "OBJECTID_1": 8540, "PARCEL_NO_": "105203022900", "Tax_Legal_": "NISKY 4 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 98000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.648852950399998, "SHAPE_Area": 456.47767940799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355863.432899996638298, 256410.427000001072884 ], [ 355854.919900000095367, 256391.03489999845624 ], [ 355841.590800002217293, 256397.98200000077486 ], [ 355849.493900001049042, 256416.833999998867512 ], [ 355851.059799998998642, 256422.335299998521805 ], [ 355859.122900001704693, 256422.401299998164177 ], [ 355867.946999996900558, 256420.709899999201298 ], [ 355863.432899996638298, 256410.427000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203023200", "MAP": "C9-301-T87", "PARCEL_NAM": "REM 3", "ACRE": "0.19", "LONGITUDE": -64.95839648, "LATITUDE": 18.33714549, "OBJECTID_1": 8543, "PARCEL_NO_": "105203023200", "Tax_Legal_": "NISKY 3 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 150300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.74921973, "SHAPE_Area": 760.11736467799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355904.747500002384186, 256367.468199998140335 ], [ 355904.924699999392033, 256367.402300000190735 ], [ 355889.753700003027916, 256372.77479999884963 ], [ 355885.566699996590614, 256374.257599998265505 ], [ 355886.863600000739098, 256377.820799998939037 ], [ 355901.156999997794628, 256414.503299999982119 ], [ 355914.859200000762939, 256411.036200001835823 ], [ 355905.799999997019768, 256371.312100000679493 ], [ 355904.747500002384186, 256367.468199998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203023100", "MAP": "C9-301-T87", "PARCEL_NAM": "REM 3-A", "ACRE": "0.19", "LONGITUDE": -64.95855965, "LATITUDE": 18.33719731, "OBJECTID_1": 8542, "PARCEL_NO_": "105203023100", "Tax_Legal_": "NISKY 3A S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 143700, "Improved_V": 2700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.709121352, "SHAPE_Area": 783.89139396500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355886.863600000739098, 256377.820799998939037 ], [ 355885.566699996590614, 256374.257599998265505 ], [ 355866.128700003027916, 256381.141199998557568 ], [ 355867.509700000286102, 256384.473099999129772 ], [ 355873.060400001704693, 256395.495299998670816 ], [ 355877.018200002610683, 256404.182599999010563 ], [ 355883.368000000715256, 256416.055799998342991 ], [ 355895.464500002563, 256415.94370000064373 ], [ 355901.156999997794628, 256414.503299999982119 ], [ 355886.863600000739098, 256377.820799998939037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105203023400", "MAP": "C9-301-T87", "PARCEL_NAM": "REM 2-A, REM 2-B, 2-C, & 2", "ACRE": "0.30", "LONGITUDE": -64.95814769, "LATITUDE": 18.33711383, "OBJECTID_1": 8545, "PARCEL_NO_": "105203023400", "Tax_Legal_": "NISKY 2 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 80200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.609872045, "SHAPE_Area": 1239.4954789799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355948.164099998772144, 256403.575699999928474 ], [ 355944.968099996447563, 256370.235300000756979 ], [ 355905.799999997019768, 256371.312100000679493 ], [ 355914.859200000762939, 256411.036200001835823 ], [ 355922.171700000762939, 256404.552099999040365 ], [ 355936.710500001907349, 256401.715799998492002 ], [ 355948.164099998772144, 256403.575699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": "D9-1001-T70", "PARCEL_NAM": null, "ACRE": ".336", "LONGITUDE": -64.95935192, "LATITUDE": 18.33547244, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.88183790100001, "SHAPE_Area": 1657.6035789299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355828.718900002539158, 256205.148200001567602 ], [ 355825.882100000977516, 256194.993000000715256 ], [ 355821.251900002360344, 256191.421100001782179 ], [ 355809.874799996614456, 256185.335700001567602 ], [ 355787.758799999952316, 256185.814599998295307 ], [ 355778.855200000107288, 256189.752500001341105 ], [ 355770.738200001418591, 256196.018899999558926 ], [ 355775.525700002908707, 256201.968699999153614 ], [ 355787.496299996972084, 256216.632100000977516 ], [ 355802.704800002276897, 256229.844399999827147 ], [ 355809.008799999952316, 256232.510499998927116 ], [ 355811.603000000119209, 256226.539700001478195 ], [ 355826.269400000572205, 256208.71680000051856 ], [ 355828.718900002539158, 256205.148200001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050193", "MAP": "D9-1226-T75", "PARCEL_NAM": null, "ACRE": ".18", "LONGITUDE": -64.95931775, "LATITUDE": 18.33512856, "OBJECTID_1": 8715, "PARCEL_NO_": "105204050193", "Tax_Legal_": "146 SUB BASE 7B SOUTHSIDE QUARTER", "Name": "VENTURA, IGNACIO & XIMARA", "Address": "PO Box 6061", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 166500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.990967246, "SHAPE_Area": 736.30507936100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355780.136699996888638, 256162.073800001293421 ], [ 355787.120600000023842, 256165.624200001358986 ], [ 355831.314099997282028, 256184.482299998402596 ], [ 355832.966300003230572, 256179.851799998432398 ], [ 355834.63289999961853, 256173.532600000500679 ], [ 355790.463699996471405, 256152.272799998521805 ], [ 355779.806000001728535, 256147.231699999421835 ], [ 355779.806000001728535, 256150.167599998414516 ], [ 355780.136699996888638, 256162.073800001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404045300", "MAP": "B9-114-T65", "PARCEL_NAM": "75", "ACRE": ".46", "LONGITUDE": -65.0051238, "LATITUDE": 18.35044817, "OBJECTID_1": 1945, "PARCEL_NO_": "102404045300", "Tax_Legal_": "FORTUNA 75 WEST END QTR", "Name": "MADURO, IONA & ULRIC", "Address": "172-10 133rd Ave #79", "City": "Jamaica", "State": "New York", "Zip": 114343958, "Country": "United States", "Land_Value": 69600, "Improved_V": 58500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.395752703, "SHAPE_Area": 2204.3756429199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350938.036899998784065, 257800.047499999403954 ], [ 350930.563799999654293, 257799.477800000458956 ], [ 350920.806000001728535, 257838.049699999392033 ], [ 350943.830099999904633, 257844.462900001555681 ], [ 350962.02139999717474, 257849.365899998694658 ], [ 350971.179899998009205, 257851.80689999833703 ], [ 350977.682800002396107, 257805.5810999982059 ], [ 350971.822946446598507, 257803.775915072183125 ], [ 350965.846526387613267, 257802.405156307329889 ], [ 350959.785700000822544, 257801.476199999451637 ], [ 350954.870399996638298, 257800.881499998271465 ], [ 350946.465079587476794, 257800.233804555231472 ], [ 350938.036899998784065, 257800.047499999403954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044900", "MAP": "B9-114-T65", "PARCEL_NAM": "73", "ACRE": ".47", "LONGITUDE": -65.00412422, "LATITUDE": 18.35061737, "OBJECTID_1": 1941, "PARCEL_NO_": "102404044900", "Tax_Legal_": "FORTUNA 73 WEST END QTR", "Name": "FORBES, CARR", "Address": "PO Box 12246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 71100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.08341576699999, "SHAPE_Area": 2113.6759344500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351120.919799998402596, 257827.749699998646975 ], [ 351035.893200002610683, 257828.252099998295307 ], [ 351035.378707166993991, 257828.048252985870931 ], [ 351034.837479596200865, 257827.932800835813396 ], [ 351034.284588984213769, 257827.908958571846597 ], [ 351033.735431808687281, 257827.977390135230962 ], [ 351033.205300581117626, 257828.136189895798452 ], [ 351032.708957993192598, 257828.380935718509136 ], [ 351032.260225815931335, 257828.704812107695034 ], [ 351031.8716000020504, 257829.098799999803305 ], [ 351028.431999996304512, 257829.522100001573563 ], [ 351024.209200002253056, 257846.705400001257658 ], [ 351019.209299996495247, 257867.050700001418591 ], [ 351025.517800003290176, 257869.361299999058247 ], [ 351027.929499998688698, 257870.225400000810623 ], [ 351120.919799998402596, 257827.749699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404045500", "MAP": "B9-114-T65", "PARCEL_NAM": "66", "ACRE": ".47", "LONGITUDE": -65.00611852, "LATITUDE": 18.35043856, "OBJECTID_1": 1947, "PARCEL_NO_": "102404045500", "Tax_Legal_": "FORTUNA 66&65-1 WEST END QTR", "Name": "HABTES, YEGIN & LOIS HABTES", "Address": "PO Box 305221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.98124593599999, "SHAPE_Area": 1596.0404433399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350856.354400001466274, 257792.364000000059605 ], [ 350831.72240000218153, 257789.72690000012517 ], [ 350832.54900000244379, 257805.316599998623133 ], [ 350835.873999997973442, 257868.028299998492002 ], [ 350867.273900002241135, 257821.743400000035763 ], [ 350865.807053876749706, 257821.125360232428648 ], [ 350864.45643934153486, 257820.283071037760237 ], [ 350863.256065547815524, 257819.237741680321051 ], [ 350862.236158509680536, 257818.01569407741772 ], [ 350861.422399997711182, 257816.647700000554323 ], [ 350861.346699997782707, 257816.490499999374151 ], [ 350860.912233288749121, 257815.407860251114471 ], [ 350860.60639999806881, 257814.2820999994874 ], [ 350858.878958857851103, 257808.571694841957651 ], [ 350857.632545337197371, 257802.737379690079251 ], [ 350856.875799998641014, 257796.819600000977516 ], [ 350856.354400001466274, 257792.364000000059605 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404045200", "MAP": "B9-114-T65", "PARCEL_NAM": "71", "ACRE": ".47", "LONGITUDE": -65.00465105000001, "LATITUDE": 18.35013837, "OBJECTID_1": 1944, "PARCEL_NO_": "102404045200", "Tax_Legal_": "FORTUNA 71 WEST END QTR", "Name": "ALLEN, RICHARD & DEBRA", "Address": "3472 NE 1st St", "City": "Homestead", "State": "Florida", "Zip": 33033, "Country": "United States", "Land_Value": 56500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.953089842, "SHAPE_Area": 1988.1296277399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350976.498700000345707, 257761.874499998986721 ], [ 350964.978299997746944, 257757.049199998378754 ], [ 350987.085799999535084, 257805.776799999177456 ], [ 350994.158910338068381, 257808.439421575283632 ], [ 351001.135399997234344, 257811.345800001174212 ], [ 351007.93639999628067, 257814.458799999207258 ], [ 351013.077100001275539, 257815.219500001519918 ], [ 351016.888249065494165, 257816.770903206052026 ], [ 351020.821158547769301, 257817.980833822628483 ], [ 351024.845299996435642, 257818.839899998158216 ], [ 351027.877300001680851, 257797.824099998921156 ], [ 351029.840499997138977, 257784.216499999165535 ], [ 350976.498700000345707, 257761.874499998986721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044700", "MAP": "B9-147-T66", "PARCEL_NAM": "77-13", "ACRE": null, "LONGITUDE": -65.00327347, "LATITUDE": 18.35138825, "OBJECTID_1": 1939, "PARCEL_NO_": "102404044700", "Tax_Legal_": "FORTUNA 77-13 WEST END QTR.", "Name": "FREDERICK, FLORENCE", "Address": "PO Box 305330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 86900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.490506436, "SHAPE_Area": 744.08487952099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351155.987499997019768, 257911.712699998170137 ], [ 351120.500299997627735, 257932.867400001734495 ], [ 351142.590300001204014, 257946.524300001561642 ], [ 351146.672200001776218, 257940.647100001573563 ], [ 351150.734300002455711, 257937.091699998825788 ], [ 351158.021700002253056, 257933.562800001353025 ], [ 351167.738799996674061, 257928.787200000137091 ], [ 351155.987499997019768, 257911.712699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044800", "MAP": "D9-9103-T016", "PARCEL_NAM": "55-1", "ACRE": ".26", "LONGITUDE": -65.00412081, "LATITUDE": 18.35090724, "OBJECTID_1": 1940, "PARCEL_NO_": "102404044800", "Tax_Legal_": "FORTUNA 55 WEST END QTR", "Name": "ZOE BUILDING ENTERPRISES, INC", "Address": "PO Box 10805", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.08591714600001, "SHAPE_Area": 1106.7071602200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351078.197200000286102, 257884.4527000002563 ], [ 351064.268500000238419, 257853.6266999989748 ], [ 351027.929499998688698, 257870.225400000810623 ], [ 351034.254155556031037, 257874.016775170748588 ], [ 351040.141146943729836, 257878.457397424353985 ], [ 351045.524099998176098, 257883.49720000103116 ], [ 351048.206401837873273, 257887.436653086158913 ], [ 351050.296579391520936, 257891.719781798165059 ], [ 351051.751500003039837, 257896.258200000971556 ], [ 351052.877913153788541, 257896.663853786129039 ], [ 351054.049444448028225, 257896.910584421217209 ], [ 351055.243787104322109, 257896.993693981086835 ], [ 351056.438199996948242, 257896.91160000115633 ], [ 351078.197200000286102, 257884.4527000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044800", "MAP": "D9-9103-T016", "PARCEL_NAM": "55-3", "ACRE": ".30", "LONGITUDE": -65.00393911, "LATITUDE": 18.35155252, "OBJECTID_1": 1940, "PARCEL_NO_": "102404044800", "Tax_Legal_": "FORTUNA 55 WEST END QTR", "Name": "ZOE BUILDING ENTERPRISES, INC", "Address": "PO Box 10805", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.39070242599999, "SHAPE_Area": 1311.99086388 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351095.152800001204014, 257921.97749999910593 ], [ 351050.520499996840954, 257946.973700001835823 ], [ 351049.82660000026226, 257950.197999998927116 ], [ 351050.566399998962879, 257958.014499999582767 ], [ 351050.51240000128746, 257964.346900001168251 ], [ 351052.131800003349781, 257973.623199999332428 ], [ 351104.407999999821186, 257942.460400000214577 ], [ 351095.152800001204014, 257921.97749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044800", "MAP": "D9-9103-T016", "PARCEL_NAM": "55-2", "ACRE": ".28", "LONGITUDE": -65.00397991, "LATITUDE": 18.35129511, "OBJECTID_1": 1940, "PARCEL_NO_": "102404044800", "Tax_Legal_": "FORTUNA 55 WEST END QTR", "Name": "ZOE BUILDING ENTERPRISES, INC", "Address": "PO Box 10805", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.167414955, "SHAPE_Area": 1323.2345935599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351081.535300001502037, 257891.840300001204014 ], [ 351060.883199997246265, 257903.896600000560284 ], [ 351059.022361457231455, 257905.175263668003026 ], [ 351057.366995824850164, 257906.710667676612502 ], [ 351055.952217459038366, 257908.470242347393651 ], [ 351054.808037273469381, 257910.416662792587886 ], [ 351053.958726131939329, 257912.508640668005683 ], [ 351053.42230000346899, 257914.701799999922514 ], [ 351053.370345063507557, 257922.817784140235744 ], [ 351052.868131341063417, 257930.918381603318267 ], [ 351051.91720629693009, 257938.978632185171591 ], [ 351050.520499996840954, 257946.973700001835823 ], [ 351095.152800001204014, 257921.97749999910593 ], [ 351081.535300001502037, 257891.840300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044800", "MAP": "D9-9103-T016", "PARCEL_NAM": "55A", "ACRE": null, "LONGITUDE": -65.00399099000001, "LATITUDE": 18.3510737, "OBJECTID_1": 1940, "PARCEL_NO_": "102404044800", "Tax_Legal_": "FORTUNA 55 WEST END QTR", "Name": "ZOE BUILDING ENTERPRISES, INC", "Address": "PO Box 10805", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.950981898400002, "SHAPE_Area": 185.88701826499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351058.420299999415874, 257895.776700001209974 ], [ 351061.879000000655651, 257903.31529999896884 ], [ 351081.535300001502037, 257891.840300001204014 ], [ 351078.197200000286102, 257884.4527000002563 ], [ 351058.420299999415874, 257895.776700001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00242242, "LATITUDE": 18.35088468, "OBJECTID_1": 1937, "PARCEL_NO_": "102404044500", "Tax_Legal_": "FORTUNA 77-15 WEST END QTR", "Name": "OLIVE, ZAIRE E. K. BURNS & JEAN P., JR.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78000, "Improved_V": 150700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.194660550999998, "SHAPE_Area": 371.89634532399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351217.928000003099442, 257874.788800001144409 ], [ 351241.030599996447563, 257885.991200000047684 ], [ 351250.491599999368191, 257869.725000001490116 ], [ 351236.189400002360344, 257863.902800001204014 ], [ 351217.928000003099442, 257874.788800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701037600", "MAP": "A9-566-T001", "PARCEL_NAM": "M-36", "ACRE": ".24", "LONGITUDE": -64.85682444, "LATITUDE": 18.32734655, "OBJECTID_1": 39315, "PARCEL_NO_": "107701037600", "Tax_Legal_": "M-36 NAZARETH NO.1 REDHOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 52500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.73028175, "SHAPE_Area": 950.15648763900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366657.284599997103214, 255378.580200001597404 ], [ 366655.102600000798702, 255378.263399999588728 ], [ 366647.121200002729893, 255378.789299998432398 ], [ 366637.397100001573563, 255379.429999999701977 ], [ 366630.19990000128746, 255380.215500000864267 ], [ 366631.283299997448921, 255404.494800001382828 ], [ 366634.79559999704361, 255405.057000000029802 ], [ 366637.715599998831749, 255407.720600001513958 ], [ 366640.215669725090265, 255409.563526049605571 ], [ 366642.874099999666214, 255411.169599998742342 ], [ 366646.462200000882149, 255412.749200001358986 ], [ 366659.202500000596046, 255418.35080000013113 ], [ 366660.45380000025034, 255378.879200000315905 ], [ 366657.284599997103214, 255378.580200001597404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303015100", "MAP": "D9-9098-T016", "PARCEL_NAM": "5-67", "ACRE": ".22", "LONGITUDE": -65.02718183, "LATITUDE": 18.3479373, "OBJECTID_1": 1223, "PARCEL_NO_": "102303015100", "Tax_Legal_": "5-67 FORTUNA No.8 WEST END QUARTER", "Name": "DONADELLE, WAYNE L.", "Address": "PO BOX 306162", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.74774265, "SHAPE_Area": 1097.63121372 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348636.693599998950958, 257509.328099999576807 ], [ 348601.88910000026226, 257515.283500000834465 ], [ 348606.673000000417233, 257546.063099998980761 ], [ 348641.043499998748302, 257540.495799999684095 ], [ 348638.403800003230572, 257521.573399998247623 ], [ 348636.693599998950958, 257509.328099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303015000", "MAP": "D9-9098-T016", "PARCEL_NAM": "5-66", "ACRE": ".22", "LONGITUDE": -65.02713727, "LATITUDE": 18.34821263, "OBJECTID_1": 1222, "PARCEL_NO_": "102303015000", "Tax_Legal_": "5-66 FORTUNA \nNo.8 WEST END QUARTER", "Name": "Toushika k Thomas,Dean Thomas,Jr & Rolston Anthony", "Address": "PO Box 503171", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 49500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.88343298300001, "SHAPE_Area": 1049.7785318599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348641.043499998748302, 257540.495799999684095 ], [ 348606.673000000417233, 257546.063099998980761 ], [ 348611.329800002276897, 257576.025100000202656 ], [ 348645.243500001728535, 257570.603100001811981 ], [ 348641.043499998748302, 257540.495799999684095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102303010300", "MAP": "D9-9098-T016", "PARCEL_NAM": "5-68", "ACRE": ".22", "LONGITUDE": -65.02722695, "LATITUDE": 18.34766233, "OBJECTID_1": 1187, "PARCEL_NO_": "102303010300", "Tax_Legal_": "5 FORTUNA No.8 WEST END QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz suite 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1692200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.711128532, "SHAPE_Area": 1077.1201943399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348636.693599998950958, 257509.328099999576807 ], [ 348632.508199997246265, 257479.358800001442432 ], [ 348597.225699998438358, 257485.278799999505281 ], [ 348601.88910000026226, 257515.283500000834465 ], [ 348636.693599998950958, 257509.328099999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010500", "MAP": "D9-9091-T016", "PARCEL_NAM": "92 REM", "ACRE": ".49", "LONGITUDE": -64.9526624, "LATITUDE": 18.32111325, "OBJECTID_1": 87163, "PARCEL_NO_": "507104010500", "Tax_Legal_": "92-1 & Rem. 92 Water Island No. 10 Southside Quarter", "Name": "LARRY L. & DARIUS LEE STEIN", "Address": "95 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 127300, "Improved_V": 281800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.388370321, "SHAPE_Area": 1873.94285281 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356558.699199996888638, 254607.106600001454353 ], [ 356550.372500002384186, 254601.4662000015378 ], [ 356543.986699998378754, 254593.814599998295307 ], [ 356540.822599999606609, 254586.6114999987185 ], [ 356493.707599997520447, 254627.178100001066923 ], [ 356482.334700003266335, 254637.006400000303984 ], [ 356491.178999997675419, 254640.034099999815226 ], [ 356499.234899997711182, 254640.944400001317263 ], [ 356512.861299999058247, 254650.555100001394749 ], [ 356514.591300003230572, 254652.489599999040365 ], [ 356530.748499996960163, 254631.244800001382828 ], [ 356532.732900001108646, 254632.832299999892712 ], [ 356545.035999998450279, 254616.295800000429153 ], [ 356547.94650000333786, 254610.739500001072884 ], [ 356549.930799998342991, 254609.416600000113249 ], [ 356558.699199996888638, 254607.106600001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010500", "MAP": "D9-9091-T016", "PARCEL_NAM": "92-1", "ACRE": ".23", "LONGITUDE": -64.95251594, "LATITUDE": 18.32140276, "OBJECTID_1": 87163, "PARCEL_NO_": "507104010500", "Tax_Legal_": "92-1 & Rem. 92 Water Island No. 10 Southside Quarter", "Name": "LARRY L. & DARIUS LEE STEIN", "Address": "95 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 127300, "Improved_V": 281800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.023357577, "SHAPE_Area": 973.37757758400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356558.801899999380112, 254653.377399999648333 ], [ 356532.732900001108646, 254632.832299999892712 ], [ 356530.748499996960163, 254631.244800001382828 ], [ 356514.591300003230572, 254652.489599999040365 ], [ 356516.855099998414516, 254655.020799998193979 ], [ 356523.262500002980232, 254660.139499999582767 ], [ 356526.475100003182888, 254661.643399998545647 ], [ 356538.494300000369549, 254670.607700001448393 ], [ 356545.722300000488758, 254674.044399999082088 ], [ 356558.801899999380112, 254653.377399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701018200", "MAP": "D9-5637-T93", "PARCEL_NAM": "22-2B", "ACRE": ".25", "LONGITUDE": -64.86237439, "LATITUDE": 18.32730607, "OBJECTID_1": 39199, "PARCEL_NO_": "107701018200", "Tax_Legal_": "22-2B ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "SKEETE, ANGELA P", "Address": "PO Box 502244", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 36000, "Improved_V": 121200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.41305288699999, "SHAPE_Area": 943.68891461800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366081.584200002253056, 255398.405799999833107 ], [ 366077.85809999704361, 255373.065000001341105 ], [ 366030.133299998939037, 255377.829700000584126 ], [ 366035.11879999935627, 255386.67339999973774 ], [ 366061.625600002706051, 255399.990699999034405 ], [ 366081.584200002253056, 255398.405799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012400", "MAP": "D9-5637-T93", "PARCEL_NAM": "22-2 REM", "ACRE": ".52", "LONGITUDE": -64.86271933, "LATITUDE": 18.32748485, "OBJECTID_1": 39144, "PARCEL_NO_": "107701012400", "Tax_Legal_": "22-2 REMAINDER EST.FRYDENHOJ No.3 RED HOOK QTR.", "Name": "ALEXANDER, SYBIL", "Address": "22-2 Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 85700, "Improved_V": 28900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.391944854, "SHAPE_Area": 2053.5747687100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366045.046499997377396, 255404.2837999984622 ], [ 366030.133299998939037, 255377.829700000584126 ], [ 366012.081799998879433, 255379.631900001317263 ], [ 365999.056800000369549, 255380.932300001382828 ], [ 366004.844700001180172, 255430.086599998176098 ], [ 366017.810900002717972, 255428.714600000530481 ], [ 366052.093800000846386, 255425.087000001221895 ], [ 366056.510600000619888, 255424.619600001722574 ], [ 366048.278899997472763, 255410.017700001597404 ], [ 366045.046499997377396, 255404.2837999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701017300", "MAP": "D9-5467-T93", "PARCEL_NAM": "22-1 REM", "ACRE": ".54", "LONGITUDE": -64.86268599, "LATITUDE": 18.32787668, "OBJECTID_1": 39190, "PARCEL_NO_": "107701017300", "Tax_Legal_": "22-1 ESTATE FRYDENHOJ NO.3 RED HOOK QTR", "Name": "MORRIS, JOSEPH & CHRISCILLA", "Address": "PO Box 503164", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 92600, "Improved_V": 32300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.23980675199999, "SHAPE_Area": 1768.9495313499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366031.645099997520447, 255475.316100001335144 ], [ 366056.510600000619888, 255424.619600001722574 ], [ 366052.093800000846386, 255425.087000001221895 ], [ 366017.810900002717972, 255428.714600000530481 ], [ 366004.844700001180172, 255430.086599998176098 ], [ 366010.627099998295307, 255479.193900000303984 ], [ 366020.442400000989437, 255477.383000001311302 ], [ 366031.645099997520447, 255475.316100001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701017600", "MAP": "D9-5467-T93", "PARCEL_NAM": "22-1A", "ACRE": ".23", "LONGITUDE": -64.86231563, "LATITUDE": 18.32797326, "OBJECTID_1": 39193, "PARCEL_NO_": "107701017600", "Tax_Legal_": "22-1A FRYDENHOJ NO.3 RED HOOK QTR", "Name": "BROWN, BEVRITA", "Address": "PO Box 10546", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 107500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.26311586899999, "SHAPE_Area": 933.47217335100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366086.745300002396107, 255442.688299998641014 ], [ 366067.446400001645088, 255446.689800001680851 ], [ 366035.319200001657009, 255467.825199998915195 ], [ 366031.645099997520447, 255475.316100001335144 ], [ 366051.217299997806549, 255471.704900000244379 ], [ 366089.287500001490116, 255464.680900000035763 ], [ 366086.745300002396107, 255442.688299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701017200", "MAP": "D9-5776-T94", "PARCEL_NAM": "23A-1", "ACRE": null, "LONGITUDE": -64.86229172, "LATITUDE": 18.32818732, "OBJECTID_1": 39189, "PARCEL_NO_": "107701017200", "Tax_Legal_": "PAR 23A-1 & 23A-2 FRYDENHOJ 3 RED HOOK QTR", "Name": "Mary Dickinson, Sophia Boschulte & Keishelle Dupres", "Address": "PO Box 8645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 36000, "Improved_V": 246900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.96707621100001, "SHAPE_Area": 1355.72757484 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366091.341300003230572, 255494.619500000029802 ], [ 366091.008000001311302, 255490.784400001168251 ], [ 366089.594999998807907, 255467.341400001198053 ], [ 366089.287500001490116, 255464.680900000035763 ], [ 366051.217299997806549, 255471.704900000244379 ], [ 366042.761399999260902, 255473.265099998563528 ], [ 366047.668799996376038, 255502.173000000417233 ], [ 366091.341300003230572, 255494.619500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701018500", "MAP": "D9-5776-T94", "PARCEL_NAM": "23A-5", "ACRE": ".24", "LONGITUDE": -64.86265098, "LATITUDE": 18.32829799, "OBJECTID_1": 39201, "PARCEL_NO_": "107701018500", "Tax_Legal_": "23A-5 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "MORREL, LEROY", "Address": "PO Box 7266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31400, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.23225523100001, "SHAPE_Area": 1219.02765475 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366047.668799996376038, 255502.173000000417233 ], [ 366042.761399999260902, 255473.265099998563528 ], [ 366020.442400000989437, 255477.383000001311302 ], [ 366010.627099998295307, 255479.193900000303984 ], [ 366014.869499996304512, 255497.916499998420477 ], [ 366015.654200002551079, 255501.379299998283386 ], [ 366017.260999999940395, 255506.536299999803305 ], [ 366018.696900002658367, 255510.771999999880791 ], [ 366021.357699997723103, 255515.930900000035763 ], [ 366023.865131361410022, 255520.330430357833393 ], [ 366026.676700003445148, 255524.542100001126528 ], [ 366047.668799996376038, 255502.173000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701018300", "MAP": "D9-5776-T94", "PARCEL_NAM": "23A-3", "ACRE": ".25", "LONGITUDE": -64.86218564000001, "LATITUDE": 18.32845031, "OBJECTID_1": 39200, "PARCEL_NO_": "107701018300", "Tax_Legal_": "23A-3 ESTATE FRYDENHOJ RED HOOK QUARTER", "Name": "Mary Dickinson,Sophia Boschulte & Keishelle Dupres", "Address": "PO Box 8645", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.95183095, "SHAPE_Area": 875.42689320099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366064.236000001430511, 255499.307599999010563 ], [ 366065.987400002777576, 255531.822000000625849 ], [ 366075.582400001585484, 255529.292899999767542 ], [ 366085.761873006122187, 255526.419097604433773 ], [ 366095.722599998116493, 255522.860399998724461 ], [ 366094.795000001788139, 255519.524099998176098 ], [ 366093.211099997162819, 255516.133600000292063 ], [ 366091.341300003230572, 255494.619500000029802 ], [ 366064.236000001430511, 255499.307599999010563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012300", "MAP": "D9-6126-T96", "PARCEL_NAM": "23A REM", "ACRE": null, "LONGITUDE": -64.86293112, "LATITUDE": 18.3287228, "OBJECTID_1": 39143, "PARCEL_NO_": "107701012300", "Tax_Legal_": "FRYDENHOJ ESTATE 23A RED HOOK QTR", "Name": "MORRELL, JOSEPH J. & WAYNE & JOHNSON, S.", "Address": "PO Box 6453", "City": "Fullerton", "State": "California", "Zip": 92834, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.52262982400001, "SHAPE_Area": 1012.16678203 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366024.746100001037121, 255546.955800000578165 ], [ 366017.271200001239777, 255524.8885000012815 ], [ 366012.705700002610683, 255526.25789999961853 ], [ 365984.450699999928474, 255534.7331000007689 ], [ 365978.179799996316433, 255536.614100001752377 ], [ 365976.813199996948242, 255547.161100000143051 ], [ 365979.776600003242493, 255559.014499999582767 ], [ 365990.513599999248981, 255556.135299999266863 ], [ 366017.70160000026226, 255548.844799999147654 ], [ 366024.746100001037121, 255546.955800000578165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012300", "MAP": "D9-5776-T94", "PARCEL_NAM": "23A-6 ROW", "ACRE": ".24", "LONGITUDE": -64.86256079, "LATITUDE": 18.32860635, "OBJECTID_1": 39143, "PARCEL_NO_": "107701012300", "Tax_Legal_": "FRYDENHOJ ESTATE 23A RED HOOK QTR", "Name": "MORRELL, JOSEPH J. & WAYNE & JOHNSON, S.", "Address": "PO Box 6453", "City": "Fullerton", "State": "California", "Zip": 92834, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.51449919800001, "SHAPE_Area": 757.98978963000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366064.00900000333786, 255536.427400000393391 ], [ 366097.032700002193451, 255527.57209999859333 ], [ 366095.722599998116493, 255522.860399998724461 ], [ 366085.761873006122187, 255526.419097604433773 ], [ 366075.582400001585484, 255529.292899999767542 ], [ 366064.044299997389317, 255532.280200000852346 ], [ 366056.082649606280029, 255533.971854178438662 ], [ 366048.065700002014637, 255535.378299999982119 ], [ 366043.60963086981792, 255534.874428194394568 ], [ 366039.256502202537376, 255533.797065807244508 ], [ 366035.079800002276897, 255532.16440000012517 ], [ 366030.867700003087521, 255529.822000000625849 ], [ 366027.337520917120855, 255525.445194820436882 ], [ 366024.161014657118358, 255520.805324569635559 ], [ 366021.357699997723103, 255515.930900000035763 ], [ 366018.696900002658367, 255510.771999999880791 ], [ 366017.260999999940395, 255506.536299999803305 ], [ 366015.654200002551079, 255501.379299998283386 ], [ 366015.340800002217293, 255499.996300000697374 ], [ 366009.537900000810623, 255501.831300001591444 ], [ 366009.684557213564403, 255502.04895566139021 ], [ 366009.791333940287586, 255502.288707731117029 ], [ 366009.855007913603913, 255502.543321064265911 ], [ 366009.873657604621258, 255502.805112036847277 ], [ 366009.846720210160129, 255503.066180420777528 ], [ 366009.775008636526763, 255503.318647793930722 ], [ 366009.660686968360096, 255503.55489529229817 ], [ 366009.507205161207821, 255503.767793528968468 ], [ 366009.31919493060559, 255503.950917742215097 ], [ 366009.102329977438785, 255504.098741679394152 ], [ 366008.863154769642279, 255504.206804366142023 ], [ 366008.608887045294978, 255504.271844727889402 ], [ 366008.347199998795986, 255504.291900001466274 ], [ 366009.4121999964118, 255508.692800000309944 ], [ 366009.989074896322563, 255508.77105164094246 ], [ 366010.547394547669683, 255508.935936862515518 ], [ 366011.074227334931493, 255509.183636647940148 ], [ 366011.557370930735487, 255509.508413856499828 ], [ 366011.985634922632016, 255509.902746105624828 ], [ 366012.34910000115633, 255510.357500001788139 ], [ 366024.746100001037121, 255546.955800000578165 ], [ 366029.638400003314018, 255545.643899999558926 ], [ 366064.00900000333786, 255536.427400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701012300", "MAP": "D9-6126-T96", "PARCEL_NAM": "23A-8", "ACRE": null, "LONGITUDE": -64.8629669, "LATITUDE": 18.32850771, "OBJECTID_1": 39143, "PARCEL_NO_": "107701012300", "Tax_Legal_": "FRYDENHOJ ESTATE 23A RED HOOK QTR", "Name": "MORRELL, JOSEPH J. & WAYNE & JOHNSON, S.", "Address": "PO Box 6453", "City": "Fullerton", "State": "California", "Zip": 92834, "Country": "United States", "Land_Value": 91700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.385230939, "SHAPE_Area": 898.85257699 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366009.645400002598763, 255501.982299998402596 ], [ 366009.537900000810623, 255501.831300001591444 ], [ 365982.1841000020504, 255505.708999998867512 ], [ 365980.315099999308586, 255520.134199999272823 ], [ 365978.179799996316433, 255536.614100001752377 ], [ 365984.450699999928474, 255534.7331000007689 ], [ 366012.705700002610683, 255526.25789999961853 ], [ 366017.271200001239777, 255524.8885000012815 ], [ 366012.34910000115633, 255510.357500001788139 ], [ 366011.985634922573809, 255509.902746105653932 ], [ 366011.55737093067728, 255509.50841385658714 ], [ 366011.074227334873285, 255509.183636648027459 ], [ 366010.547394547669683, 255508.93593686260283 ], [ 366009.989074896322563, 255508.771051640971564 ], [ 366009.4121999964118, 255508.692800000309944 ], [ 366008.347199998795986, 255504.291900001466274 ], [ 366008.594804158026818, 255504.274105278280331 ], [ 366008.836151943018194, 255504.216004344285466 ], [ 366009.064727464399766, 255504.119165804120712 ], [ 366009.274359657545574, 255503.98620409736759 ], [ 366009.459388888149988, 255503.820708914194256 ], [ 366009.614819751121104, 255503.627148281113477 ], [ 366009.736455935635604, 255503.410747933463426 ], [ 366009.821013517153915, 255503.177350231562741 ], [ 366009.866209616535343, 255502.933256429008907 ], [ 366009.870824032812379, 255502.685056551883463 ], [ 366009.834732186282054, 255502.439451481768629 ], [ 366009.758908482035622, 255502.203072045871522 ], [ 366009.645400002598763, 255501.982299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701019800", "MAP": "D9-6126-T96", "PARCEL_NAM": "23A-7", "ACRE": "0.25", "LONGITUDE": -64.86294776, "LATITUDE": 18.3282764, "OBJECTID_1": 39209, "PARCEL_NO_": "107701019800", "Tax_Legal_": "23A-7 ESTATE FRYDENHOJ No.3 RED HOOK QTR.", "Name": "MORRELL, MICHAEL", "Address": "PO Box 600125", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.399575623, "SHAPE_Area": 650.50823622899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366014.869499996304512, 255497.916499998420477 ], [ 366010.627099998295307, 255479.193900000303984 ], [ 365985.068300001323223, 255483.449299998581409 ], [ 365982.832699999213219, 255500.703200001269579 ], [ 365982.1841000020504, 255505.708999998867512 ], [ 366009.537900000810623, 255501.831300001591444 ], [ 366015.340800002217293, 255499.996300000697374 ], [ 366014.869499996304512, 255497.916499998420477 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011000", "MAP": "D9-2141-T82", "PARCEL_NAM": "23B", "ACRE": null, "LONGITUDE": -64.86266426, "LATITUDE": 18.32888156, "OBJECTID_1": 39132, "PARCEL_NO_": "107701011000", "Tax_Legal_": "FRYDENHOJ ESTATE 23 REM.&23B RED HOOK QUARTER", "Name": "MORRELL, WAYNE & JOHNSON, STEPHANE", "Address": "PO Box 6453", "City": "Fullerton", "State": "California", "Zip": 92834, "Country": "United States", "Land_Value": 184400, "Improved_V": 473100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 304.24131726299998, "SHAPE_Area": 2567.8674150299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366074.786799997091293, 255542.176699999719858 ], [ 366074.14919999986887, 255537.880800001323223 ], [ 366099.277500003576279, 255535.645599998533726 ], [ 366097.032700002193451, 255527.57209999859333 ], [ 366064.00900000333786, 255536.427400000393391 ], [ 366029.638400003314018, 255545.643899999558926 ], [ 366024.746100001037121, 255546.955800000578165 ], [ 366017.70160000026226, 255548.844799999147654 ], [ 365990.513599999248981, 255556.135299999266863 ], [ 365979.776600003242493, 255559.014499999582767 ], [ 365989.535300001502037, 255587.569699998944998 ], [ 365999.54900000244379, 255584.750100001692772 ], [ 366061.531999997794628, 255567.297499999403954 ], [ 366056.369199998676777, 255547.088300000876188 ], [ 366074.786799997091293, 255542.176699999719858 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701016900", "MAP": "D9-2141-T82", "PARCEL_NAM": "23B-1", "ACRE": ".23", "LONGITUDE": -64.86216966000001, "LATITUDE": 18.32879909, "OBJECTID_1": 39186, "PARCEL_NO_": "107701016900", "Tax_Legal_": "23B-1 FRYDENHOJ RED HOOD QTR.", "Name": "MORRELL, LEO JOHN", "Address": "PO Box 7266", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 183600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.308405343, "SHAPE_Area": 908.02886606699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366099.277500003576279, 255535.645599998533726 ], [ 366056.369199998676777, 255547.088300000876188 ], [ 366061.531999997794628, 255567.297499999403954 ], [ 366072.105800002813339, 255564.320199999958277 ], [ 366080.295100003480911, 255562.014299999922514 ], [ 366102.366200000047684, 255555.799800001084805 ], [ 366102.566799998283386, 255553.784800000488758 ], [ 366102.619000002741814, 255547.663600001484156 ], [ 366099.277500003576279, 255535.645599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701011000", "MAP": "D9-2141-T82", "PARCEL_NAM": "23B-2", "ACRE": null, "LONGITUDE": -64.86214615, "LATITUDE": 18.32868364, "OBJECTID_1": 39132, "PARCEL_NO_": "107701011000", "Tax_Legal_": "FRYDENHOJ ESTATE 23 REM.&23B RED HOOK QUARTER", "Name": "MORRELL, WAYNE & JOHNSON, STEPHANE", "Address": "PO Box 6453", "City": "Fullerton", "State": "California", "Zip": 92834, "Country": "United States", "Land_Value": 184400, "Improved_V": 473100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.917065641599997, "SHAPE_Area": 54.686913730599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366099.277500003576279, 255535.645599998533726 ], [ 366074.14919999986887, 255537.880800001323223 ], [ 366074.786799997091293, 255542.176699999719858 ], [ 366099.277500003576279, 255535.645599998533726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603040800", "MAP": "D3-351-T80", "PARCEL_NAM": "REM 24B", "ACRE": "0.84", "LONGITUDE": -64.8767778, "LATITUDE": 18.31858082, "OBJECTID_1": 38720, "PARCEL_NO_": "107603040800", "Tax_Legal_": "24 NADIR RED HOOK QTR", "Name": "DONASTORG, ELEANOR", "Address": "PO Box 7782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 151700, "Improved_V": 79000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.07410932800002, "SHAPE_Area": 3907.1663950799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364606.965400002896786, 254392.984000001102686 ], [ 364492.390799999237061, 254385.256700001657009 ], [ 364503.934900000691414, 254434.043499998748302 ], [ 364506.630199998617172, 254433.537200000137091 ], [ 364555.087999999523163, 254424.645599998533726 ], [ 364604.71169999986887, 254417.749000001698732 ], [ 364604.425999999046326, 254407.106499999761581 ], [ 364606.965400002896786, 254392.984000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102904019100", "MAP": "D9-4221-T88", "PARCEL_NAM": "6CA-1", "ACRE": "0.23", "LONGITUDE": -64.91630352, "LATITUDE": 18.35556635, "OBJECTID_1": 5001, "PARCEL_NO_": "102904019100", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 6CA-1 GT. NORTHSIDE", "Name": "WAX, RICHARD & CAROL", "Address": "PO Box 11081", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24000, "Improved_V": 199500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.08274895299999, "SHAPE_Area": 1099.9313496899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360352.519400000572205, 258477.743700001388788 ], [ 360349.211800001561642, 258447.598099999129772 ], [ 360345.433700002729893, 258448.254200000315905 ], [ 360339.139200001955032, 258449.241999998688698 ], [ 360330.092200003564358, 258450.661699999123812 ], [ 360311.5608000010252, 258453.255800001323223 ], [ 360322.980999998748302, 258486.240899998694658 ], [ 360347.722900003194809, 258478.545099999755621 ], [ 360352.519400000572205, 258477.743700001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95920107000001, "LATITUDE": 18.31410954, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.02449390700002, "SHAPE_Area": 3553.38575894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355876.692500002682209, 253822.609600000083447 ], [ 355853.276799999177456, 253822.609600000083447 ], [ 355848.180716438975651, 253822.630308658874128 ], [ 355843.103364646376576, 253822.193278596940218 ], [ 355838.085776271705981, 253821.302041589398868 ], [ 355833.168499998748302, 253819.963799998164177 ], [ 355825.508422547136433, 253819.271278999571223 ], [ 355817.817231623630505, 253819.227074065536726 ], [ 355810.149700000882149, 253819.831500001251698 ], [ 355806.160494138719514, 253819.840464774082648 ], [ 355802.224492705310695, 253820.489877196436282 ], [ 355798.443844746332616, 253821.762883397605037 ], [ 355794.916667497600429, 253823.626445694360882 ], [ 355791.734499998390675, 253826.032200001180172 ], [ 355790.100199997425079, 253827.630100000649691 ], [ 355791.410545532591641, 253829.979167118901387 ], [ 355792.528399996459484, 253832.425700001418591 ], [ 355794.677172559313476, 253836.434191672189627 ], [ 355796.274117679102346, 253840.692711988667725 ], [ 355797.290899999439716, 253845.125700000673532 ], [ 355796.334864248347003, 253849.946854794077808 ], [ 355794.909599997103214, 253854.650699999183416 ], [ 355794.84324667142937, 253857.096720395464217 ], [ 355795.164169355353806, 253859.522504222142743 ], [ 355795.864307099720463, 253861.867120540817268 ], [ 355796.92607381567359, 253864.071677181898849 ], [ 355798.322800002992153, 253866.080800000578165 ], [ 355800.109304302954115, 253867.039101423579268 ], [ 355802.016565933648963, 253867.726336684107082 ], [ 355804.003720074659213, 253868.127781139774015 ], [ 355806.028190135781188, 253868.23483347686124 ], [ 355808.046599999070168, 253868.045200001448393 ], [ 355817.995800003409386, 253866.988200001418591 ], [ 355834.95889999717474, 253863.538499999791384 ], [ 355848.712999999523163, 253858.162599999457598 ], [ 355887.588600002229214, 253838.215799998492002 ], [ 355888.617299996316433, 253837.875100001692772 ], [ 355895.904902196431067, 253836.340073285042308 ], [ 355903.097999997437, 253834.410100001841784 ], [ 355903.434307083371095, 253833.834961344633484 ], [ 355903.672674473258667, 253833.212813517748145 ], [ 355903.806764465582091, 253832.560198160121217 ], [ 355903.833011881448328, 253831.894466979982099 ], [ 355903.750718855822925, 253831.233320408500731 ], [ 355903.562073392036837, 253830.594336981448578 ], [ 355903.272091187245678, 253829.994505961920368 ], [ 355902.888482275535353, 253829.449775630549993 ], [ 355902.421446033695247, 253828.974629253265448 ], [ 355901.883400000631809, 253828.581700000911951 ], [ 355897.15550235187402, 253826.331211000942858 ], [ 355892.216479614144191, 253824.592311546817655 ], [ 355887.121508195472416, 253823.384427794517251 ], [ 355881.927506688516587, 253822.721053645655047 ], [ 355876.692500002682209, 253822.609600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95925978, "LATITUDE": 18.31392782, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.32052171700002, "SHAPE_Area": 443.89165548400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355891.509199999272823, 253822.08049999922514 ], [ 355885.391173673328012, 253820.69021472503664 ], [ 355879.173920031753369, 253819.848254854179686 ], [ 355872.906482408347074, 253819.561261987837497 ], [ 355866.638300001621246, 253819.831500001251698 ], [ 355857.581201721273828, 253820.296548941318179 ], [ 355848.514300003647804, 253820.493000000715256 ], [ 355842.763222988520283, 253819.94715713468031 ], [ 355837.131269765959587, 253818.661103415797697 ], [ 355831.713299997150898, 253816.656500000506639 ], [ 355825.674101007636636, 253815.298450832662638 ], [ 355819.510986813576892, 253814.722043504938483 ], [ 355813.324699997901917, 253814.936700001358986 ], [ 355803.652719839534257, 253815.551841242355295 ], [ 355794.010099999606609, 253816.52419999986887 ], [ 355790.067651676188689, 253817.042418385390192 ], [ 355786.091572388017084, 253817.089774193009362 ], [ 355782.137900002300739, 253816.665600001811981 ], [ 355777.697499997913837, 253815.604899998754263 ], [ 355779.643100000917912, 253816.929900001734495 ], [ 355783.652629117772449, 253819.958412988547934 ], [ 355787.164614382723812, 253823.552042650757357 ], [ 355790.100199997425079, 253827.630100000649691 ], [ 355791.734499998390675, 253826.032200001180172 ], [ 355794.916667497600429, 253823.626445694360882 ], [ 355798.443844746332616, 253821.762883397605037 ], [ 355802.224492705310695, 253820.489877196436282 ], [ 355806.160494138719514, 253819.840464774082648 ], [ 355810.149700000882149, 253819.831500001251698 ], [ 355817.817231623630505, 253819.227074065536726 ], [ 355825.508422547136433, 253819.271278999571223 ], [ 355833.168499998748302, 253819.963799998164177 ], [ 355838.085776271705981, 253821.302041589398868 ], [ 355843.103364646376576, 253822.193278596940218 ], [ 355848.180716438975651, 253822.630308658874128 ], [ 355853.276799999177456, 253822.609600000083447 ], [ 355876.692500002682209, 253822.609600000083447 ], [ 355881.927506688516587, 253822.721053645655047 ], [ 355887.121508195472416, 253823.384427794517251 ], [ 355892.216479614144191, 253824.592311546817655 ], [ 355897.15550235187402, 253826.331211000942858 ], [ 355901.883400000631809, 253828.581700000911951 ], [ 355903.020099997520447, 253825.254299998283386 ], [ 355897.365418701665476, 253823.301926917018136 ], [ 355891.509199999272823, 253822.08049999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95908972, "LATITUDE": 18.31372936, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 396.93802324500001, "SHAPE_Area": 5701.6578567400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355907.516500003635883, 253814.275199998170137 ], [ 355907.967623211676255, 253813.216104616090888 ], [ 355908.573832226509694, 253812.237480169453193 ], [ 355909.321162425214425, 253811.361870238382835 ], [ 355910.192398318904452, 253810.609445361915277 ], [ 355911.167470128857531, 253809.997538389725378 ], [ 355912.223916113493033, 253809.540245202893857 ], [ 355913.337399996817112, 253809.248100001364946 ], [ 355918.301422206452116, 253805.637873800384114 ], [ 355923.548177349322941, 253802.452467987895943 ], [ 355929.041400000452995, 253799.713899999856949 ], [ 355935.529700003564358, 253795.333999998867512 ], [ 355939.716399997472763, 253792.455899998545647 ], [ 355939.939117113826796, 253792.316890370420879 ], [ 355940.134455895167775, 253792.141478423494846 ], [ 355940.296536611160263, 253791.934944087057374 ], [ 355940.420480604749173, 253791.703504079574486 ], [ 355940.50255714089144, 253791.454124784446321 ], [ 355940.540295701881405, 253791.194312560633989 ], [ 355940.532560350606218, 253790.931887800077675 ], [ 355940.479583922540769, 253790.674749532423448 ], [ 355940.382961017079651, 253790.430637663084781 ], [ 355940.245600000023842, 253790.206900000572205 ], [ 355931.040857799584046, 253790.108655225252733 ], [ 355921.85700000077486, 253790.736099999397993 ], [ 355912.542758854455315, 253789.536839842534391 ], [ 355903.346452150610276, 253787.633880025823601 ], [ 355894.321166179084685, 253785.038205510907574 ], [ 355885.519000001251698, 253781.764800000935793 ], [ 355884.682899996638298, 253781.211100000888109 ], [ 355880.789283908554353, 253779.408814947586507 ], [ 355876.679668974538799, 253778.176117600756697 ], [ 355872.436898501066025, 253777.537857180053834 ], [ 355868.146499998867512, 253777.506900001317263 ], [ 355853.76785228314111, 253774.268935680622235 ], [ 355839.306800000369549, 253771.421500001102686 ], [ 355828.222237640642561, 253768.721453822450712 ], [ 355817.081799998879433, 253766.262099999934435 ], [ 355816.078906808339525, 253766.359656434855424 ], [ 355815.102884721884038, 253766.610041930252919 ], [ 355814.176880731654819, 253767.007318432937609 ], [ 355813.322855618374888, 253767.542064274894074 ], [ 355812.561063137429301, 253768.201597614155617 ], [ 355811.909569688083138, 253768.970277193031507 ], [ 355811.383825856726617, 253769.829873280395987 ], [ 355810.996299996972084, 253770.760000001639128 ], [ 355808.177304228243884, 253777.996151597297285 ], [ 355805.572400003671646, 253785.312100000679493 ], [ 355804.834925994102377, 253786.647368543519406 ], [ 355803.891968242533039, 253787.846385088458192 ], [ 355802.768161627172958, 253788.877825192175806 ], [ 355801.492865723383147, 253789.714742365002166 ], [ 355800.09939778142143, 253790.335272050782805 ], [ 355798.6241623092792, 253790.723202841094462 ], [ 355797.105700001120567, 253790.868400000035763 ], [ 355783.082699999213219, 253791.133000001311302 ], [ 355780.682898753497284, 253790.852096990478458 ], [ 355778.267728599021211, 253790.922137302346528 ], [ 355775.888239242485724, 253791.341640487429686 ], [ 355773.59472620167071, 253792.101739462581463 ], [ 355771.435667704034131, 253793.186367935530143 ], [ 355769.456699997186661, 253794.572599999606609 ], [ 355768.753121334535535, 253796.41280085183098 ], [ 355768.35174638958415, 253798.341598473343765 ], [ 355768.262831085710786, 253800.309708272077842 ], [ 355768.488647384569049, 253802.266841152159031 ], [ 355769.023425233433954, 253804.162988499680068 ], [ 355769.853500001132488, 253805.949700001627207 ], [ 355771.928854856872931, 253809.582365099719027 ], [ 355774.566893614304718, 253812.82953386742156 ], [ 355777.697499997913837, 253815.604899998754263 ], [ 355782.137900002300739, 253816.665600001811981 ], [ 355786.091572388017084, 253817.089774193009362 ], [ 355790.067651676188689, 253817.042418385390192 ], [ 355794.010099999606609, 253816.52419999986887 ], [ 355803.652719839534257, 253815.551841242355295 ], [ 355813.324699997901917, 253814.936700001358986 ], [ 355819.510986813576892, 253814.722043504938483 ], [ 355825.674101007636636, 253815.298450832662638 ], [ 355831.713299997150898, 253816.656500000506639 ], [ 355837.131269765959587, 253818.661103415797697 ], [ 355842.763222988520283, 253819.94715713468031 ], [ 355848.514300003647804, 253820.493000000715256 ], [ 355857.581201721273828, 253820.296548941318179 ], [ 355866.638300001621246, 253819.831500001251698 ], [ 355872.906482408347074, 253819.561261987837497 ], [ 355879.173920031753369, 253819.848254854179686 ], [ 355885.391173673328012, 253820.69021472503664 ], [ 355891.509199999272823, 253822.08049999922514 ], [ 355897.365418701665476, 253823.301926917018136 ], [ 355903.020099997520447, 253825.254299998283386 ], [ 355907.835100002586842, 253823.0962999984622 ], [ 355907.231325964559801, 253820.187951506231911 ], [ 355907.124112602090463, 253817.219527793844463 ], [ 355907.516500003635883, 253814.275199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "509202040100", "MAP": "A9-508-T98", "PARCEL_NAM": "TRACT B", "ACRE": null, "LONGITUDE": -64.95844007, "LATITUDE": 18.31383325, "OBJECTID_1": 87403, "PARCEL_NO_": "509202040100", "Tax_Legal_": "TRACT \"B\"WATER ISLAND No.10 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.051824075100001, "SHAPE_Area": 160.403047958 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355912.733599998056889, 253820.900800000876188 ], [ 355912.406110807904042, 253820.003540400939528 ], [ 355912.23270658677211, 253819.06425613333704 ], [ 355912.218235654407181, 253818.109209248941625 ], [ 355912.363102612784132, 253817.165102515748003 ], [ 355912.663257033913396, 253816.258332819066709 ], [ 355913.110306707792915, 253815.414253114082385 ], [ 355913.691752286162227, 253814.656463566294406 ], [ 355914.391336759319529, 253814.006151699431939 ], [ 355915.189499996602535, 253813.481499999761581 ], [ 355923.611959149129689, 253808.235739394644042 ], [ 355932.236100003123283, 253803.328600000590086 ], [ 355929.041400000452995, 253799.713899999856949 ], [ 355923.548177349322941, 253802.452467987895943 ], [ 355918.301422206452116, 253805.637873800413217 ], [ 355913.337399996817112, 253809.248100001364946 ], [ 355912.22391611355124, 253809.54024520306848 ], [ 355911.167470129032154, 253809.997538389987312 ], [ 355910.192398319137283, 253810.609445362235419 ], [ 355909.321162425447255, 253811.361870238673873 ], [ 355908.573832226800732, 253812.237480169686023 ], [ 355907.967623211850878, 253813.2161046161782 ], [ 355907.516500003635883, 253814.275199998170137 ], [ 355907.124112602090463, 253817.219527793844463 ], [ 355907.231325964559801, 253820.187951506231911 ], [ 355907.835100002586842, 253823.0962999984622 ], [ 355912.733599998056889, 253820.900800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107504042100", "MAP": "D9-9085-T016", "PARCEL_NAM": "3-108A-1", "ACRE": ".03", "LONGITUDE": -64.8828278, "LATITUDE": 18.31958889, "OBJECTID_1": 37799, "PARCEL_NO_": "107504042100", "Tax_Legal_": "3-110 ESTATE BOVONI FRENCHMANS BAY QTR", "Name": "TURNBULL, MITCHAEL & STEPHANIE", "Address": "PO Box 9661", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.990100022199996, "SHAPE_Area": 159.09457813 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363920.016000002622604, 254516.148800000548363 ], [ 363905.435599997639656, 254511.166299998760223 ], [ 363905.753100000321865, 254509.261300001293421 ], [ 363894.362700000405312, 254505.969999998807907 ], [ 363892.672499999403954, 254511.429200001060963 ], [ 363892.343299999833107, 254512.492499999701977 ], [ 363918.378300003707409, 254520.563700001686811 ], [ 363920.016000002622604, 254516.148800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105702021500", "MAP": "F9-3665-T79", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.86666975, "LATITUDE": 18.34315809, "OBJECTID_1": 22380, "PARCEL_NO_": "105702021500", "Tax_Legal_": "SMITH BAY 4CA&4F EAST END QTR", "Name": "REYNOLDS, TIMOTHY K. & KAREN L", "Address": "803 Tyler St", "City": "Hollywood", "State": "Florida", "Zip": 33019, "Country": "United States", "Land_Value": 151700, "Improved_V": 80300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.49356592300001, "SHAPE_Area": 257.33669533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365604.245300002396107, 257119.461399998515844 ], [ 365572.194399997591972, 257150.49269999936223 ], [ 365573.023699998855591, 257152.115299999713898 ], [ 365574.288999997079372, 257154.590900000184774 ], [ 365607.5945999994874, 257126.160000000149012 ], [ 365606.401799999177456, 257123.774500001221895 ], [ 365604.245300002396107, 257119.461399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702025300", "MAP": "D9-9084-T016", "PARCEL_NAM": "4D-GA ROW", "ACRE": ".06", "LONGITUDE": -64.8670802, "LATITUDE": 18.34279265, "OBJECTID_1": 22451, "PARCEL_NO_": "105702025300", "Tax_Legal_": "4D-G REM SMITH BAY No.1,2&3 EAST END QTR.", "Name": "ABRAHAM, JR, KEITH L.", "Address": "P O BOX 3894", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.454035458600003, "SHAPE_Area": 217.90862164699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365540.828100003302097, 257077.985500000417233 ], [ 365536.531099997460842, 257080.715199999511242 ], [ 365552.40089999884367, 257111.765399999916553 ], [ 365557.653300002217293, 257108.824499998241663 ], [ 365555.854099996387959, 257105.226199999451637 ], [ 365555.675743352563586, 257104.738463549962034 ], [ 365555.577671021048445, 257104.228483399056131 ], [ 365555.562406775774434, 257103.70938327445765 ], [ 365555.630343423690647, 257103.194521595549304 ], [ 365555.779732696712017, 257102.697147710365243 ], [ 365556.006730240944307, 257102.230060939560644 ], [ 365556.305494546715636, 257101.805281201173784 ], [ 365556.668337272829376, 257101.433739692554809 ], [ 365557.085921096731909, 257101.124997588951373 ], [ 365557.547499999403954, 257100.886999998241663 ], [ 365555.7483000010252, 257097.288699999451637 ], [ 365555.205957007477991, 257097.553475751890801 ], [ 365554.626051366038155, 257097.720662978797918 ], [ 365554.025991723756306, 257097.785242754383944 ], [ 365553.423791746259667, 257097.745276407134952 ], [ 365552.837529351876583, 257097.601963718567276 ], [ 365552.284804015886039, 257097.359606905753026 ], [ 365551.782208438031375, 257097.025481469900114 ], [ 365551.344830433139578, 257096.609617787209572 ], [ 365550.985799998044968, 257096.124499998986721 ], [ 365540.828100003302097, 257077.985500000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702026400", "MAP": "D9-9084-T016", "PARCEL_NAM": "4D-G1", "ACRE": ".23", "LONGITUDE": -64.86684839, "LATITUDE": 18.3428504, "OBJECTID_1": 22461, "PARCEL_NO_": "105702026400", "Tax_Legal_": "4D-G1 &4D-H SMITH BAY No.1,2&3 EAST END QTR.", "Name": "ABRAHAM, KEISHA D. & KEVIN D.", "Address": "P O BOX 3894", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.87015266200001, "SHAPE_Area": 929.14573077800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365591.313400000333786, 257093.597600001841784 ], [ 365584.707500003278255, 257080.750300001353025 ], [ 365555.7483000010252, 257097.288699999451637 ], [ 365557.547499999403954, 257100.886999998241663 ], [ 365557.085921094636433, 257101.124997586768586 ], [ 365556.668337268638425, 257101.433739689091453 ], [ 365556.305494540720247, 257101.805281197244767 ], [ 365556.006730233610142, 257102.230060935777146 ], [ 365555.779732688737568, 257102.697147707251133 ], [ 365555.630343415774405, 257103.194521593395621 ], [ 365555.5624067686731, 257103.709383273322601 ], [ 365555.577671015635133, 257104.228483398765093 ], [ 365555.675743349536788, 257104.738463550136657 ], [ 365555.854099996387959, 257105.226199999451637 ], [ 365557.653300002217293, 257108.824499998241663 ], [ 365552.40089999884367, 257111.765399999916553 ], [ 365553.082800000905991, 257113.099599998444319 ], [ 365554.068999998271465, 257115.029100000858307 ], [ 365556.034299999475479, 257118.874299999326468 ], [ 365559.680399999022484, 257126.008299998939037 ], [ 365570.459200002253056, 257121.101199999451637 ], [ 365568.97749999910593, 257113.798700001090765 ], [ 365595.11710000038147, 257101.205099999904633 ], [ 365592.75110000371933, 257096.473099999129772 ], [ 365591.313400000333786, 257093.597600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204051500", "MAP": "A3-39-T39", "PARCEL_NAM": "PORTION OF REM 18 THRU 22", "ACRE": null, "LONGITUDE": -64.95163747, "LATITUDE": 18.33724785, "OBJECTID_1": 8733, "PARCEL_NO_": "105204051500", "Tax_Legal_": "CONTANT 110 7B S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 230600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.11159816999998, "SHAPE_Area": 295.94824184399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356680.888400003314018, 256413.506099998950958 ], [ 356668.79730000346899, 256412.984900001436472 ], [ 356650.971199996769428, 256410.547100000083447 ], [ 356640.873199999332428, 256407.871100001037121 ], [ 356627.22070000320673, 256405.754399999976158 ], [ 356616.108199998736382, 256403.426100000739098 ], [ 356603.937299996614456, 256401.309399999678135 ], [ 356594.176399998366833, 256399.668200001120567 ], [ 356591.978100001811981, 256399.298599999397993 ], [ 356585.416500002145767, 256397.816899999976158 ], [ 356573.990299999713898, 256395.588100001215935 ], [ 356570.599799998104572, 256395.911899998784065 ], [ 356567.636399999260902, 256396.546900000423193 ], [ 356565.413900002837181, 256397.287799999117851 ], [ 356562.238899998366833, 256399.086899999529123 ], [ 356560.12219999730587, 256401.203600000590086 ], [ 356558.958099998533726, 256404.378600001335144 ], [ 356558.958099998533726, 256407.236099999397993 ], [ 356559.964900001883507, 256409.772199999541044 ], [ 356561.535099998116493, 256413.218800000846386 ], [ 356571.75450000166893, 256398.817600000649691 ], [ 356573.731499999761581, 256395.961899999529123 ], [ 356595.9628000035882, 256400.075500000268221 ], [ 356640.132399998605251, 256410.146499998867512 ], [ 356654.737400002777576, 256413.638999998569489 ], [ 356678.36429999768734, 256418.126600001007318 ], [ 356680.888400003314018, 256413.506099998950958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204051500", "MAP": "A3-39-T39", "PARCEL_NAM": "REM 17", "ACRE": null, "LONGITUDE": -64.95089134, "LATITUDE": 18.33733449, "OBJECTID_1": 8733, "PARCEL_NO_": "105204051500", "Tax_Legal_": "CONTANT 110 7B S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 230600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.523684606200007, "SHAPE_Area": 196.71509798700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356708.912299998104572, 256415.121700000017881 ], [ 356701.845299996435642, 256414.521999999880791 ], [ 356680.888400003314018, 256413.506099998950958 ], [ 356678.36429999768734, 256418.126600001007318 ], [ 356703.473200000822544, 256423.987199999392033 ], [ 356708.912299998104572, 256415.121700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704045000", "MAP": "D9-9081-T016", "PARCEL_NAM": "11-7-1A", "ACRE": ".24", "LONGITUDE": -64.87067714, "LATITUDE": 18.33380081, "OBJECTID_1": 23656, "PARCEL_NO_": "105704045000", "Tax_Legal_": "11-7-1 REM. LANGMATH NO.5 RED HOOK QTR", "Name": "BASTIEN, JOHNSON P. & BERVALINE", "Address": "PO Box 772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 72100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.87824573200001, "SHAPE_Area": 1093.46899095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365179.075699999928474, 256075.544100001454353 ], [ 365143.117799997329712, 256106.0 ], [ 365158.804399996995926, 256108.08500000089407 ], [ 365174.927799999713898, 256107.990299999713898 ], [ 365185.210100002586842, 256107.845800001174212 ], [ 365190.078900001943111, 256112.300200000405312 ], [ 365189.935699999332428, 256114.360500000417233 ], [ 365202.682899996638298, 256111.789599999785423 ], [ 365184.050700001418591, 256076.671300001442432 ], [ 365179.075699999928474, 256075.544100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050118", "MAP": "A3-97-T66", "PARCEL_NAM": "35 REM", "ACRE": null, "LONGITUDE": -64.96030517, "LATITUDE": 18.3374929, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 725.431566557, "SHAPE_Area": 29059.5943147 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355729.873000003397465, 256354.848900001496077 ], [ 355579.187899999320507, 256342.427700001746416 ], [ 355608.516199998557568, 256401.984999999403954 ], [ 355636.624499998986721, 256510.08390000090003 ], [ 355646.747000001370907, 256552.385400000959635 ], [ 355681.637800000607967, 256526.917599998414516 ], [ 355720.558399997651577, 256501.693799998611212 ], [ 355823.465300001204014, 256443.218800000846386 ], [ 355825.914800003170967, 256439.650199998170137 ], [ 355825.986800000071526, 256431.207100000232458 ], [ 355813.290799997746944, 256407.038499999791384 ], [ 355809.34009999781847, 256397.506900001317263 ], [ 355805.358900003135204, 256391.563700001686811 ], [ 355793.379299998283386, 256377.955699998885393 ], [ 355778.152900002896786, 256366.854200001806021 ], [ 355763.695000000298023, 256360.19200000166893 ], [ 355754.843500003218651, 256358.008600000292063 ], [ 355729.873000003397465, 256354.848900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "D9-8992-T015", "PARCEL_NAM": "35A-1", "ACRE": ".56", "LONGITUDE": -64.96318048000001, "LATITUDE": 18.33082816, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 950.57475542600002, "SHAPE_Area": 15866.8305335 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355435.882600001990795, 255937.010600000619888 ], [ 355441.200099997222424, 255937.054099999368191 ], [ 355404.046400003135204, 255494.335999999195337 ], [ 355364.310300000011921, 255493.403299998492002 ], [ 355364.044100001454353, 255498.865200001746416 ], [ 355363.768299996852875, 255504.522999998182058 ], [ 355361.264799997210503, 255514.423900000751019 ], [ 355353.824600003659725, 255535.894600000232458 ], [ 355354.531999997794628, 255547.510499998927116 ], [ 355367.973200000822544, 255578.862300001084805 ], [ 355372.656400002539158, 255597.054699998348951 ], [ 355372.618699997663498, 255601.487399999052286 ], [ 355388.618000000715256, 255711.175900001078844 ], [ 355387.655199997127056, 255729.533100001513958 ], [ 355384.262699998915195, 255749.137099999934435 ], [ 355384.970100000500679, 255760.752999998629093 ], [ 355400.8125, 255819.406399998813868 ], [ 355404.512999996542931, 255833.10700000077486 ], [ 355410.636200003325939, 255871.576099999248981 ], [ 355412.803400002419949, 255901.146899998188019 ], [ 355415.161200001835823, 255908.343400001525879 ], [ 355426.266099996864796, 255929.965799998492002 ], [ 355428.663500003516674, 255932.5185999982059 ], [ 355435.882600001990795, 255937.010600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "D9-8992-T015", "PARCEL_NAM": "35A-1", "ACRE": ".56", "LONGITUDE": -64.96385775, "LATITUDE": 18.32793089, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 499.51099407300001, "SHAPE_Area": 12608.4054431 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355336.85249999910593, 255409.504999998956919 ], [ 355403.52759999781847, 255407.917500000447035 ], [ 355406.385099999606609, 255324.414900001138449 ], [ 355379.289800003170967, 255323.901599999517202 ], [ 355239.469499997794628, 255325.014199998229742 ], [ 355241.851800002157688, 255333.383799999952316 ], [ 355260.076899997889996, 255371.107599999755621 ], [ 355278.444099999964237, 255392.156199999153614 ], [ 355288.049699999392033, 255400.467399999499321 ], [ 355309.690700002014637, 255415.843299999833107 ], [ 355335.943000003695488, 255439.026000000536442 ], [ 355336.85249999910593, 255409.504999998956919 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "D9-8992-T015", "PARCEL_NAM": "35A-1", "ACRE": ".56", "LONGITUDE": -64.96169905000001, "LATITUDE": 18.33285634, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 682.60122333799995, "SHAPE_Area": 5641.58151352 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355441.200099997222424, 255937.054099999368191 ], [ 355444.751999996602535, 255937.083200000226498 ], [ 355466.583599999547005, 255930.084699999541044 ], [ 355487.585500001907349, 255925.823699999600649 ], [ 355501.308899998664856, 255924.036100000143051 ], [ 355519.053199999034405, 255923.548099998384714 ], [ 355566.616700001060963, 255924.992800001055002 ], [ 355582.753700003027916, 255923.858300000429153 ], [ 355595.674500003457069, 255921.642099998891354 ], [ 355615.042199999094009, 255919.900699999183416 ], [ 355628.747699998319149, 255920.223999999463558 ], [ 355667.425499998033047, 255923.495900001376867 ], [ 355719.837600000202656, 255923.713799998164177 ], [ 355733.526900000870228, 255925.936700001358986 ], [ 355751.215499997138977, 255931.99210000038147 ], [ 355753.652400001883507, 255929.901099998503923 ], [ 355747.254000000655651, 255923.727000001817942 ], [ 355740.826899997889996, 255920.93019999936223 ], [ 355698.959799997508526, 255913.410399999469519 ], [ 355667.544200003147125, 255909.564699999988079 ], [ 355606.275200001895428, 255907.796700000762939 ], [ 355592.464699998497963, 255907.576699998229742 ], [ 355569.842799998819828, 255907.179900001734495 ], [ 355555.158399999141693, 255905.989199999719858 ], [ 355526.186499997973442, 255896.861099999397993 ], [ 355515.470799997448921, 255896.861099999397993 ], [ 355504.843199998140335, 255896.422899998724461 ], [ 355481.278499998152256, 255884.562800001353025 ], [ 355476.342399999499321, 255873.127099998295307 ], [ 355464.737099997699261, 255893.431600000709295 ], [ 355441.200099997222424, 255937.054099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "D9-8992-T015", "PARCEL_NAM": "35A-1", "ACRE": ".56", "LONGITUDE": -64.96296445, "LATITUDE": 18.33412154, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.762028362, "SHAPE_Area": 2489.5690493100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355446.641500003635883, 256035.181699998676777 ], [ 355369.785499997437, 256028.717599999159575 ], [ 355377.785599999129772, 256036.171300001442432 ], [ 355429.775200001895428, 256085.99269999936223 ], [ 355448.462399996817112, 256069.469300001859665 ], [ 355450.908299997448921, 256066.322900000959635 ], [ 355453.388400003314018, 256059.166000001132488 ], [ 355454.288199998438358, 256048.19649999961257 ], [ 355451.122299998998642, 256041.204500000923872 ], [ 355446.641500003635883, 256035.181699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004010100", "MAP": "D9-9074-T016", "PARCEL_NAM": "9 REM", "ACRE": "28.33", "LONGITUDE": -64.97036866000001, "LATITUDE": 18.36464518, "OBJECTID_1": 338, "PARCEL_NO_": "101004010100", "Tax_Legal_": "9 REM. NELTJEBERG (WESTERN SECTION) NO. 6 LITTLE NORTHSIDE QUARTER", "Name": "BOSCHULTE, LIONEL THEODORE HELM", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 642300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1433.0491863699999, "SHAPE_Area": 112568.454782 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354568.111400000751019, 259337.249800000339746 ], [ 354536.626000002026558, 259355.506099998950958 ], [ 354498.383199997246265, 259321.519799999892712 ], [ 354493.614469737862237, 259325.053366373409517 ], [ 354488.616700001060963, 259328.254799999296665 ], [ 354478.761618094926234, 259334.500971649482381 ], [ 354468.592272904759739, 259340.221261682570912 ], [ 354458.136699996888638, 259345.399900000542402 ], [ 354444.760088638809975, 259352.613995417021215 ], [ 354431.043300002813339, 259359.15819999948144 ], [ 354420.137088414048776, 259366.58380080506322 ], [ 354409.664899997413158, 259374.609900001436472 ], [ 354397.601387582486495, 259385.498277450562455 ], [ 354385.958200000226498, 259396.83500000089407 ], [ 354351.94200000166893, 259485.985599998384714 ], [ 354351.326692536065821, 259487.49938126525376 ], [ 354350.959131821407937, 259489.091560941713396 ], [ 354350.848613055015448, 259490.721874593553366 ], [ 354350.997931132209487, 259492.349093421158614 ], [ 354351.403309966670349, 259493.932066889567068 ], [ 354352.054497983423062, 259495.430763379175914 ], [ 354352.935027369472664, 259496.807282540481538 ], [ 354354.022630526451394, 259498.026813751261216 ], [ 354355.289803193125408, 259499.058516438031802 ], [ 354356.704499997198582, 259499.876299999654293 ], [ 354374.14329004305182, 259502.753198600286851 ], [ 354391.479633302194998, 259506.194004642835353 ], [ 354408.695299997925758, 259510.195099998265505 ], [ 354417.703202471428085, 259516.694846040976699 ], [ 354426.312156103726011, 259523.714455926819937 ], [ 354434.492200002074242, 259531.229499999433756 ], [ 354438.876657114829868, 259538.758642915985547 ], [ 354443.65460335201351, 259546.044429557543481 ], [ 354448.812565807951614, 259553.066315382224275 ], [ 354454.336000002920628, 259559.804499998688698 ], [ 354464.25789999961853, 259571.313900001347065 ], [ 354480.529799997806549, 259590.364000000059605 ], [ 354798.700199998915195, 259551.627900000661612 ], [ 354798.133100003004074, 259523.547800000756979 ], [ 354800.949400000274181, 259476.919199999421835 ], [ 354801.175999999046326, 259450.323300000280142 ], [ 354799.681999996304512, 259436.378899998962879 ], [ 354797.388999998569489, 259421.583599999547005 ], [ 354791.15429999679327, 259396.201299998909235 ], [ 354783.449000000953674, 259354.13060000166297 ], [ 354788.571000002324581, 259320.81980000063777 ], [ 354788.844300001859665, 259288.735800001770258 ], [ 354787.319799996912479, 259278.379700001329184 ], [ 354776.205799996852875, 259257.812699999660254 ], [ 354773.057899996638298, 259248.709899999201298 ], [ 354769.956699997186661, 259234.119100000709295 ], [ 354773.32039999961853, 259218.5456000007689 ], [ 354705.363799996674061, 259208.662900000810623 ], [ 354661.762100003659725, 259221.785700000822544 ], [ 354663.453699998557568, 259226.866300001740456 ], [ 354642.619400002062321, 259251.979200001806021 ], [ 354639.085900001227856, 259247.737100001424551 ], [ 354636.883000001311302, 259245.092500001192093 ], [ 354634.087600000202656, 259248.73930000141263 ], [ 354614.347000002861023, 259274.491399999707937 ], [ 354568.111400000751019, 259337.249800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004020300", "MAP": "A9-811-T015", "PARCEL_NAM": "B ROW", "ACRE": "1.161", "LONGITUDE": -64.97154774000001, "LATITUDE": 18.3669351, "OBJECTID_1": 352, "PARCEL_NO_": "101004020300", "Tax_Legal_": "B. NELTJEBERG (R.O.W.)WESTERN SECTION NO. 6 LITTLE NORTHSIDE QUARTER", "Name": "BOSCHULTE, JAMES T., LIONEL T., & LOUIS J.", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 9600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 975.37375438399999, "SHAPE_Area": 4566.4319125399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354427.434900000691414, 259524.694200001657009 ], [ 354422.982799999415874, 259530.832600001245737 ], [ 354424.546302054135595, 259532.504737017734442 ], [ 354425.876871809537988, 259534.367574907373637 ], [ 354426.951499998569489, 259536.388900000602007 ], [ 354436.436147236439865, 259551.035176721488824 ], [ 354446.398500002920628, 259565.360800001770258 ], [ 354450.017147916543763, 259569.669653634860879 ], [ 354453.995876761386171, 259573.648415896313963 ], [ 354458.304700002074242, 259577.267099998891354 ], [ 354464.388219572138041, 259584.094019162497716 ], [ 354469.942154939519241, 259591.358304231252987 ], [ 354474.93517168512335, 259599.018971265119035 ], [ 354479.339100003242493, 259607.032800000160933 ], [ 354481.807746572420001, 259616.217062913085101 ], [ 354483.82429690787103, 259625.511062368721468 ], [ 354485.383925438974984, 259634.892557984101586 ], [ 354486.482900001108646, 259644.339099999517202 ], [ 354486.134571536211297, 259652.278191965451697 ], [ 354485.023198764480185, 259660.146823646064149 ], [ 354483.159115718968678, 259667.871829041687306 ], [ 354480.559655464079697, 259675.381377653044183 ], [ 354477.248988925013691, 259682.605642392823938 ], [ 354473.257900136115495, 259689.477448868710781 ], [ 354468.623499996960163, 259695.932900000363588 ], [ 354420.998400002717972, 259747.526799999177456 ], [ 354419.867408879799768, 259748.967124234477524 ], [ 354419.000216006417759, 259750.58008776261704 ], [ 354418.422522631357424, 259752.317886711651227 ], [ 354418.151450022298377, 259754.129017425730126 ], [ 354418.195032037328929, 259755.959802894009044 ], [ 354418.551977023656946, 259757.755983591923723 ], [ 354419.211706098227296, 259759.464325586683117 ], [ 354420.154666677466594, 259761.034198246750748 ], [ 354421.352911962836515, 259762.41907479686779 ], [ 354422.770929208141752, 259763.577911245520227 ], [ 354424.366692221607082, 259764.476362817891641 ], [ 354426.09290690778289, 259765.087801841844339 ], [ 354427.898412937065586, 259765.394106920139166 ], [ 354429.729699999094009, 259765.386199999600649 ], [ 354441.034566810820252, 259763.303262135246769 ], [ 354452.22794380877167, 259760.68659342135652 ], [ 354463.284647025691811, 259757.542081098159542 ], [ 354474.179799996316433, 259753.876800000667572 ], [ 354480.282822154171299, 259752.171776612522081 ], [ 354486.148721780045889, 259749.774860720732249 ], [ 354491.69935175892897, 259746.717984692746541 ], [ 354496.860765084042214, 259743.041873064852552 ], [ 354501.5641999989748, 259738.795499999076128 ], [ 354512.352709132712334, 259729.552660801622551 ], [ 354522.99549999833107, 259720.142400000244379 ], [ 354529.949613935255911, 259713.602713937783847 ], [ 354536.48929999768734, 259706.648600000888109 ], [ 354545.20297633582959, 259695.187310482462635 ], [ 354553.280738704837859, 259683.269296056416351 ], [ 354560.698700003325939, 259670.929800000041723 ], [ 354561.561091690440662, 259670.506563662929693 ], [ 354562.483256853127386, 259670.237380023289006 ], [ 354563.43791060539661, 259670.130213646625634 ], [ 354564.396806793927681, 259670.188235355861252 ], [ 354565.331573740637396, 259670.409728413214907 ], [ 354566.214553699886892, 259670.788139315001899 ], [ 354567.019621191837359, 259671.312271695700474 ], [ 354567.722955999081023, 259671.966617604251951 ], [ 354568.303747955709696, 259672.731816351064481 ], [ 354568.744812675693538, 259673.585227349278284 ], [ 354569.033100001513958, 259674.501600001007318 ], [ 354568.636200003325939, 259680.057900000363588 ], [ 354577.367499999701977, 259684.82039999961853 ], [ 354577.954293470538687, 259674.683868094463833 ], [ 354578.954999998211861, 259664.579799998551607 ], [ 354578.611806177184917, 259662.710604083549697 ], [ 354577.955052695528138, 259660.927250436157919 ], [ 354577.003958148357924, 259659.281925383227644 ], [ 354575.786354441661388, 259657.822776117100148 ], [ 354574.337872346222866, 259656.592501762905158 ], [ 354572.700898833456449, 259655.627103872975567 ], [ 354570.923336704378016, 259654.954832912277197 ], [ 354569.057202808442526, 259654.595361564512132 ], [ 354567.15710587328067, 259654.559209049592027 ], [ 354565.278648487757891, 259654.847433299553813 ], [ 354563.476800002157688, 259655.45160000026226 ], [ 354556.52432816446526, 259663.821904937212821 ], [ 354549.983000002801418, 259672.517299998551607 ], [ 354549.419479713833425, 259673.292789530969458 ], [ 354548.737893409386743, 259673.966866114642471 ], [ 354547.956208397867158, 259674.5217604052159 ], [ 354547.095030691067223, 259674.942844824778149 ], [ 354546.177061809401494, 259675.219019159761956 ], [ 354545.22650034626713, 259675.343003173766192 ], [ 354544.268404068541713, 259675.3115285220847 ], [ 354543.32802936877124, 259675.125424908590503 ], [ 354542.430165480356663, 259674.789598213741556 ], [ 354541.598481008782983, 259674.312901170866098 ], [ 354540.854900002479553, 259673.707899998873472 ], [ 354538.473600000143051, 259679.660999998450279 ], [ 354539.107132945442572, 259681.682640430517495 ], [ 354539.45413789752638, 259683.772612103202846 ], [ 354539.507906725513749, 259685.890512701065745 ], [ 354539.267399996519089, 259687.995400000363588 ], [ 354529.775541240756866, 259699.758344382658834 ], [ 354519.71591052680742, 259711.039570959517732 ], [ 354509.112919900158886, 259721.811703197454335 ], [ 354497.992299996316433, 259732.048599999397993 ], [ 354491.344409882964101, 259736.468311462085694 ], [ 354484.328085198067129, 259740.276129772915738 ], [ 354476.999492972914595, 259743.441572612442542 ], [ 354469.417300000786781, 259745.939300000667572 ], [ 354438.857799999415874, 259754.273699998855591 ], [ 354438.050194642157294, 259754.303181894443696 ], [ 354437.248832406301517, 259754.198711026489036 ], [ 354436.475777981744613, 259753.963163893466117 ], [ 354435.752316631493159, 259753.603026044904254 ], [ 354435.098368124163244, 259753.128213508200133 ], [ 354434.531938263215125, 259752.551799761044094 ], [ 354434.068623115716036, 259751.889655766630312 ], [ 354433.721179590502288, 259751.160012982756598 ], [ 354433.499174189812038, 259750.38296137744328 ], [ 354433.408719605358783, 259749.579896272101905 ], [ 354433.45230641157832, 259748.772929243277758 ], [ 354433.628734490368515, 259747.984279303025687 ], [ 354433.93314607499633, 259747.235661121027078 ], [ 354434.357159503677394, 259746.547687133483123 ], [ 354434.88910000026226, 259745.939300000667572 ], [ 354454.28000382654136, 259725.634355385933304 ], [ 354473.385999999940395, 259705.061099998652935 ], [ 354478.149826704640873, 259699.503176467958838 ], [ 354482.466726379003376, 259693.591413951828144 ], [ 354486.310520615545101, 259687.361662374751177 ], [ 354489.657899998128414, 259680.851700000464916 ], [ 354491.978484026738442, 259671.992779383057496 ], [ 354493.700772235461045, 259662.998375119001139 ], [ 354494.81703653576551, 259653.908846046979306 ], [ 354495.322268132178579, 259644.76497784073581 ], [ 354495.214199997484684, 259635.607799999415874 ], [ 354493.64478633669205, 259626.170944564451929 ], [ 354491.377159564231988, 259616.877120348362951 ], [ 354488.423905961797573, 259607.777911981742363 ], [ 354484.801417328184471, 259598.923823895544047 ], [ 354480.529799997806549, 259590.364000000059605 ], [ 354464.25789999961853, 259571.313900001347065 ], [ 354454.336000002920628, 259559.804499998688698 ], [ 354448.812565807951614, 259553.066315382224275 ], [ 354443.654603352071717, 259546.044429557514377 ], [ 354438.876657114888076, 259538.758642915956443 ], [ 354434.492200002074242, 259531.229499999433756 ], [ 354427.434900000691414, 259524.694200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004020200", "MAP": "A9-811-T015", "PARCEL_NAM": "10", "ACRE": "17.3", "LONGITUDE": -64.96955341, "LATITUDE": 18.36711388, "OBJECTID_1": 351, "PARCEL_NO_": "101004020200", "Tax_Legal_": "10 & 12 NELTJEBERG (WESTERN SECTION) NO. 6 LITTLE NORTHSIDE QUARTER", "Name": "LOUIS JOSEPH HELM BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 1202800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1585.23455229, "SHAPE_Area": 66489.825797099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354798.700199998915195, 259551.627900000661612 ], [ 354480.529799997806549, 259590.364000000059605 ], [ 354484.801417328184471, 259598.923823895544047 ], [ 354488.42390596185578, 259607.777911981742363 ], [ 354491.377159564231988, 259616.877120348333847 ], [ 354493.64478633669205, 259626.170944564451929 ], [ 354495.214199997484684, 259635.607799999415874 ], [ 354495.322268132236786, 259644.76497784073581 ], [ 354494.817036535823718, 259653.908846046979306 ], [ 354493.700772235519253, 259662.998375119001139 ], [ 354491.97848402679665, 259671.992779383086599 ], [ 354489.657899998128414, 259680.851700000464916 ], [ 354486.310520615603309, 259687.361662374780281 ], [ 354482.466726379061583, 259693.591413951886352 ], [ 354478.14982670469908, 259699.503176468017045 ], [ 354473.385999999940395, 259705.061099998652935 ], [ 354454.28000382654136, 259725.6343553859042 ], [ 354434.88910000026226, 259745.939300000667572 ], [ 354434.357159502571449, 259746.547687133162981 ], [ 354433.933146072842646, 259747.235661120706936 ], [ 354433.628734487341717, 259747.984279302880168 ], [ 354433.45230640785303, 259748.772929243539693 ], [ 354433.408719601109624, 259749.579896272829501 ], [ 354433.499174185330048, 259750.382961378723849 ], [ 354433.721179586020298, 259751.160012984590139 ], [ 354434.068623111466877, 259751.889655768929515 ], [ 354434.531938259373419, 259752.551799763692543 ], [ 354435.098368120903615, 259753.128213510994101 ], [ 354435.752316628932022, 259753.603026047669118 ], [ 354436.475777979881968, 259753.963163895910839 ], [ 354437.248832405195571, 259754.198711028351681 ], [ 354438.050194641633425, 259754.303181895491434 ], [ 354438.857799999415874, 259754.273699998855591 ], [ 354469.417300000786781, 259745.939300000667572 ], [ 354476.999492972914595, 259743.441572612413438 ], [ 354484.328085198008921, 259740.276129772886634 ], [ 354491.344409882964101, 259736.46831146205659 ], [ 354497.992299996316433, 259732.048599999397993 ], [ 354509.112919900158886, 259721.811703197454335 ], [ 354519.71591052680742, 259711.039570959517732 ], [ 354529.775541240756866, 259699.758344382658834 ], [ 354539.267399996519089, 259687.995400000363588 ], [ 354539.507906725571956, 259685.890512701065745 ], [ 354539.454137897642795, 259683.772612103173742 ], [ 354539.107132945558988, 259681.682640430488391 ], [ 354538.473600000143051, 259679.660999998450279 ], [ 354540.854900002479553, 259673.707899998873472 ], [ 354541.598481008666568, 259674.312901171157137 ], [ 354542.430165480240248, 259674.789598214236321 ], [ 354543.328029368654825, 259675.125424909230787 ], [ 354544.268404068541713, 259675.311528522870503 ], [ 354545.22650034626713, 259675.343003174581099 ], [ 354546.177061809576117, 259675.219019160547759 ], [ 354547.095030691300053, 259674.942844825505745 ], [ 354547.956208398041781, 259674.521760405797977 ], [ 354548.737893409619574, 259673.966866115049925 ], [ 354549.419479713949841, 259673.292789531173185 ], [ 354549.983000002801418, 259672.517299998551607 ], [ 354556.52432816446526, 259663.821904937212821 ], [ 354563.476800002157688, 259655.45160000026226 ], [ 354565.278648487816099, 259654.847433298826218 ], [ 354567.157105873513501, 259654.559209048224147 ], [ 354569.057202808908187, 259654.595361562736798 ], [ 354570.923336705192924, 259654.954832910269033 ], [ 354572.700898834562395, 259655.627103870909195 ], [ 354574.337872347561643, 259656.592501760984305 ], [ 354575.786354443116579, 259657.822776115441229 ], [ 354577.003958149754908, 259659.281925381947076 ], [ 354577.955052696634084, 259660.927250435313908 ], [ 354578.611806177883409, 259662.710604083171347 ], [ 354578.954999998211861, 259664.579799998551607 ], [ 354577.954293470538687, 259674.683868094463833 ], [ 354577.367499999701977, 259684.82039999961853 ], [ 354750.405299998819828, 259791.579999998211861 ], [ 354815.001400001347065, 259977.435300000011921 ], [ 354830.599600002169609, 259971.965199999511242 ], [ 354858.937399998307228, 259958.475999999791384 ], [ 354848.919299997389317, 259903.93189999833703 ], [ 354841.766699999570847, 259891.629900000989437 ], [ 354838.631399996578693, 259881.049600001424551 ], [ 354829.055600002408028, 259774.580099999904633 ], [ 354819.969700001180172, 259705.267000000923872 ], [ 354816.100000001490116, 259686.236900001764297 ], [ 354810.662600003182888, 259661.916700001806021 ], [ 354806.844999998807907, 259636.765299998223782 ], [ 354800.014399997889996, 259586.68019999936223 ], [ 354798.567199997603893, 259567.247800000011921 ], [ 354798.700199998915195, 259551.627900000661612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004040000", "MAP": "A9-811-T015", "PARCEL_NAM": "11", "ACRE": "24.10", "LONGITUDE": -64.97024631, "LATITUDE": 18.36891147, "OBJECTID_1": 355, "PARCEL_NO_": "101004040000", "Tax_Legal_": "11 NELTJEBERG (WESTERN SECTION) NO. 6 LITTLE NORTHSIDE QUARTER", "Name": "JAMES THEODORE HELM BOSCHULTE", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 485200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1283.14095161, "SHAPE_Area": 94405.386753900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354463.040100000798702, 259757.617800001055002 ], [ 354540.519199997186661, 260136.354899998754263 ], [ 354549.420900002121925, 260132.628100000321865 ], [ 354556.715499997138977, 260128.254799999296665 ], [ 354565.649700000882149, 260120.72859999909997 ], [ 354577.00280000269413, 260113.222100000828505 ], [ 354596.442400000989437, 260103.03770000115037 ], [ 354617.474899999797344, 260095.188200000673532 ], [ 354644.140699997544289, 260088.651500001549721 ], [ 354654.664099998772144, 260083.882500000298023 ], [ 354661.154200002551079, 260079.291499998420477 ], [ 354671.71000000089407, 260070.723099999129772 ], [ 354681.49719999730587, 260057.715399999171495 ], [ 354683.953900001943111, 260053.302499998360872 ], [ 354689.77250000089407, 260032.874099999666214 ], [ 354693.058899998664856, 260025.723799999803305 ], [ 354694.6841000020504, 260024.259500000625849 ], [ 354698.7804000005126, 260016.693599998950958 ], [ 354709.359600000083447, 260005.381099998950958 ], [ 354719.90820000320673, 259997.657000001519918 ], [ 354736.095600001513958, 259990.612300001084805 ], [ 354749.020000003278255, 259987.973900001496077 ], [ 354764.339900001883507, 259988.099300000816584 ], [ 354785.331000000238419, 259985.104699999094009 ], [ 354811.188699997961521, 259978.772399999201298 ], [ 354815.001400001347065, 259977.435300000011921 ], [ 354750.405299998819828, 259791.579999998211861 ], [ 354577.367499999701977, 259684.82039999961853 ], [ 354568.636200003325939, 259680.057900000363588 ], [ 354569.033100001513958, 259674.501600001007318 ], [ 354568.744812675693538, 259673.585227349278284 ], [ 354568.303747955709696, 259672.731816351064481 ], [ 354567.722955999081023, 259671.966617604251951 ], [ 354567.019621191837359, 259671.312271695700474 ], [ 354566.214553699886892, 259670.788139315001899 ], [ 354565.331573740637396, 259670.409728413214907 ], [ 354564.396806793927681, 259670.188235355861252 ], [ 354563.43791060539661, 259670.130213646625634 ], [ 354562.483256853127386, 259670.237380023289006 ], [ 354561.561091690440662, 259670.506563662929693 ], [ 354560.698700003325939, 259670.929800000041723 ], [ 354553.280738704837859, 259683.269296056416351 ], [ 354545.20297633582959, 259695.187310482462635 ], [ 354536.48929999768734, 259706.648600000888109 ], [ 354529.949613935255911, 259713.602713937783847 ], [ 354522.99549999833107, 259720.142400000244379 ], [ 354512.352709132712334, 259729.552660801622551 ], [ 354501.5641999989748, 259738.795499999076128 ], [ 354496.860765084042214, 259743.041873064852552 ], [ 354491.69935175892897, 259746.717984692746541 ], [ 354486.148721780045889, 259749.774860720732249 ], [ 354480.282822154171299, 259752.171776612522081 ], [ 354474.179799996316433, 259753.876800000667572 ], [ 354463.040100000798702, 259757.617800001055002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004010100", "MAP": "A9-477-T95", "PARCEL_NAM": "A ROW", "ACRE": null, "LONGITUDE": -64.97257576, "LATITUDE": 18.36520346, "OBJECTID_1": 338, "PARCEL_NO_": "101004010100", "Tax_Legal_": "9 REM. NELTJEBERG (WESTERN SECTION) NO. 6 LITTLE NORTHSIDE QUARTER", "Name": "BOSCHULTE, LIONEL THEODORE HELM", "Address": "PO Box 1373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 642300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 412.57723532300002, "SHAPE_Area": 1417.04403536 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354422.982799999415874, 259530.832600001245737 ], [ 354427.434900000691414, 259524.694200001657009 ], [ 354418.293386539153289, 259517.149597311043181 ], [ 354408.695299997925758, 259510.195099998265505 ], [ 354391.479633302194998, 259506.194004642835353 ], [ 354374.14329004305182, 259502.753198600286851 ], [ 354356.704499997198582, 259499.876299999654293 ], [ 354355.289803193125408, 259499.058516438031802 ], [ 354354.022630526451394, 259498.026813751261216 ], [ 354352.935027369472664, 259496.807282540481538 ], [ 354352.054497983423062, 259495.430763379175914 ], [ 354351.403309966670349, 259493.932066889567068 ], [ 354350.997931132209487, 259492.349093421158614 ], [ 354350.848613055015448, 259490.721874593553366 ], [ 354350.959131821407937, 259489.091560941713396 ], [ 354351.326692536065821, 259487.49938126525376 ], [ 354351.94200000166893, 259485.985599998384714 ], [ 354385.958200000226498, 259396.83500000089407 ], [ 354379.495300002396107, 259395.8114 ], [ 354365.871500000357628, 259434.517099998891354 ], [ 354339.91160000115633, 259503.419599998742342 ], [ 354405.586400002241135, 259518.331000000238419 ], [ 354412.055900000035763, 259532.867400001734495 ], [ 354413.125104336475488, 259531.815415497781942 ], [ 354414.356425317178946, 259530.958842119725887 ], [ 354415.714580912084784, 259530.322223953378852 ], [ 354417.160654796694871, 259529.923802530975081 ], [ 354418.653211453231052, 259529.774994141916977 ], [ 354420.149483455577865, 259529.880062712618383 ], [ 354421.606596918893047, 259530.235997628857149 ], [ 354422.982799999415874, 259530.832600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004020000", "MAP": "D9-9074-T016", "PARCEL_NAM": "9-1", "ACRE": "1.5", "LONGITUDE": -64.96908344000001, "LATITUDE": 18.36235178, "OBJECTID_1": 350, "PARCEL_NO_": "101004020000", "Tax_Legal_": "9-1, 9-3 NELTJEBERG (WESTERN SECTION) No. 6 LITTLE NORTHSIDE QUARTER", "Name": "JAMES T., LIONEL T., & LOUIS J. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 133000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 341.08702073400002, "SHAPE_Area": 5715.6353570499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354705.363799996674061, 259208.662900000810623 ], [ 354773.32039999961853, 259218.5456000007689 ], [ 354777.512000001966953, 259199.139400001615286 ], [ 354779.239699997007847, 259185.643500000238419 ], [ 354782.722099997103214, 259155.485599998384714 ], [ 354779.710900001227856, 259130.340900000184774 ], [ 354778.992700003087521, 259119.991399999707937 ], [ 354775.891500003635883, 259105.400600001215935 ], [ 354772.398900002241135, 259091.740299999713898 ], [ 354768.850017702847254, 259100.808763614069903 ], [ 354764.781374715792481, 259109.656234560301527 ], [ 354760.206656902271789, 259118.252952237759018 ], [ 354755.141252427943982, 259126.56999951499165 ], [ 354749.602200001478195, 259134.5793999992311 ], [ 354731.995101160020567, 259148.353032213752158 ], [ 354714.042199999094009, 259161.672800000756979 ], [ 354707.647399999201298, 259165.934000000357628 ], [ 354705.363799996674061, 259208.662900000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004020500", "MAP": "D9-9074-T016", "PARCEL_NAM": "9-2", "ACRE": "1.0", "LONGITUDE": -64.97071758, "LATITUDE": 18.36346709, "OBJECTID_1": 353, "PARCEL_NO_": "101004020500", "Tax_Legal_": "9-2 NELTJEBERG (WESTERN SECTION) No. 6 LITTLE NORTHSIDE QUARTER", "Name": "JAMES THEODORE HELM BOSCHULTE", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 80600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.50086537300001, "SHAPE_Area": 3134.2005886799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354614.347000002861023, 259274.491399999707937 ], [ 354591.06360000371933, 259248.244699999690056 ], [ 354583.320339333033189, 259256.400708629458677 ], [ 354575.932588095660321, 259264.880077370005893 ], [ 354568.913836259045638, 259273.66732297022827 ], [ 354562.276900000870228, 259282.746399998664856 ], [ 354554.134912572742905, 259289.293537985911826 ], [ 354545.585695085348561, 259295.299189945246326 ], [ 354536.665200002491474, 259300.738099999725819 ], [ 354530.650700002908707, 259303.184099998325109 ], [ 354568.111400000751019, 259337.249800000339746 ], [ 354614.347000002861023, 259274.491399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101004020000", "MAP": "D9-9074-T016", "PARCEL_NAM": "9-3", "ACRE": ".502", "LONGITUDE": -64.9711193, "LATITUDE": 18.36379202, "OBJECTID_1": 350, "PARCEL_NO_": "101004020000", "Tax_Legal_": "9-1, 9-3 NELTJEBERG (WESTERN SECTION) No. 6 LITTLE NORTHSIDE QUARTER", "Name": "JAMES T., LIONEL T., & LOUIS J. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 133000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.54700734799999, "SHAPE_Area": 1816.25128436 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354568.111400000751019, 259337.249800000339746 ], [ 354530.650700002908707, 259303.184099998325109 ], [ 354521.836932070029434, 259307.109242496808292 ], [ 354513.183418341272045, 259311.376085469557438 ], [ 354504.703400000929832, 259315.978100001811981 ], [ 354501.610025531321298, 259318.825049159815535 ], [ 354498.383199997246265, 259321.519799999892712 ], [ 354536.626000002026558, 259355.506099998950958 ], [ 354568.111400000751019, 259337.249800000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105401431100", "MAP": null, "PARCEL_NAM": "WATERFRONT", "ACRE": null, "LONGITUDE": -64.93127956, "LATITUDE": 18.34017081, "OBJECTID_1": 12110, "PARCEL_NO_": "105401431100", "Tax_Legal_": "WATERFRONT KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7106900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 972.58990977400003, "SHAPE_Area": 4653.0643880500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358586.006399996578693, 256739.191300000995398 ], [ 358580.110600002110004, 256747.342599999159575 ], [ 358585.370800003409386, 256750.860599998384714 ], [ 358590.762699998915195, 256754.17339999973774 ], [ 358596.278099998831749, 256757.276099998503923 ], [ 358601.909000001847744, 256760.164000000804663 ], [ 358607.646999999880791, 256762.832800000905991 ], [ 358613.483400002121925, 256765.278599999845028 ], [ 358619.409800000488758, 256767.497800000011921 ], [ 358625.417300000786781, 256769.486999999731779 ], [ 358631.496899999678135, 256771.243400000035763 ], [ 358637.639700002968311, 256772.764199998229742 ], [ 358643.836499996483326, 256774.0472999997437 ], [ 358646.220200002193451, 256774.475000001490116 ], [ 358788.4628000035882, 256798.915500000119209 ], [ 358791.77139999717474, 256799.360300000756979 ], [ 358795.103699997067451, 256799.5625 ], [ 358798.441799998283386, 256799.521000001579523 ], [ 358801.767899997532368, 256799.236099999397993 ], [ 358805.064499996602535, 256798.709199998527765 ], [ 358808.313799999654293, 256797.943199999630451 ], [ 358811.498499996960163, 256796.942099999636412 ], [ 358814.601700000464916, 256795.711300000548363 ], [ 358817.606799997389317, 256794.257399998605251 ], [ 358820.497800000011921, 256792.587999999523163 ], [ 358823.259300000965595, 256790.712099999189377 ], [ 358825.876599997282028, 256788.639800000935793 ], [ 358826.095100000500679, 256788.452100001275539 ], [ 358864.424800001084805, 256755.33669999986887 ], [ 358865.382799997925758, 256754.534099999815226 ], [ 358866.364699997007847, 256753.760999999940395 ], [ 358867.369699999690056, 256753.01799999922514 ], [ 358868.396700002253056, 256752.305900000035763 ], [ 358869.33500000089407, 256751.529800001531839 ], [ 358870.100299999117851, 256750.582699999213219 ], [ 358870.662100002169609, 256749.502300001680851 ], [ 358870.998000003397465, 256748.331900000572205 ], [ 358871.094499997794628, 256747.118099998682737 ], [ 358871.021600000560284, 256746.295699998736382 ], [ 358861.263899996876717, 256684.338899999856949 ], [ 358753.951700001955032, 256688.694400001317263 ], [ 358754.684299997985363, 256697.355200000107288 ], [ 358816.167199999094009, 256693.734600000083447 ], [ 358846.634300000965595, 256693.554999999701977 ], [ 358851.225699998438358, 256723.130800001323223 ], [ 358850.249799996614456, 256723.250399999320507 ], [ 358852.527699999511242, 256740.176899999380112 ], [ 358867.3141999989748, 256738.162300001829863 ], [ 358817.062299996614456, 256785.548799999058247 ], [ 358815.286300003528595, 256787.029699999839067 ], [ 358813.364200003445148, 256788.315499998629093 ], [ 358811.317500002682209, 256789.3918999992311 ], [ 358809.16889999806881, 256790.246899999678135 ], [ 358806.942299999296665, 256790.871100001037121 ], [ 358804.662299998104572, 256791.257599998265505 ], [ 358802.354400001466274, 256791.401900000870228 ], [ 358800.043999999761581, 256791.302700001746416 ], [ 358798.331000000238419, 256791.069899998605251 ], [ 358647.923500001430511, 256764.561799999326468 ], [ 358641.902500003576279, 256763.403599999845028 ], [ 358635.932300001382828, 256762.006900001317263 ], [ 358630.022399999201298, 256760.3739 ], [ 358624.181999996304512, 256758.50730000063777 ], [ 358618.420500002801418, 256756.410000000149012 ], [ 358612.746899999678135, 256754.085200000554323 ], [ 358607.170199997723103, 256751.536699999123812 ], [ 358601.699299998581409, 256748.768500000238419 ], [ 358596.342699997127056, 256745.785000000149012 ], [ 358591.108999997377396, 256742.590900000184774 ], [ 358586.006399996578693, 256739.191300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105303272800", "MAP": "D9-3350-T86", "PARCEL_NAM": "59", "ACRE": "0.058", "LONGITUDE": -64.94096712, "LATITUDE": 18.33711797, "OBJECTID_1": 11226, "PARCEL_NO_": "105303272800", "Tax_Legal_": "HONDURAS 59 KRONP. QTR.", "Name": "TELARG LLC", "Address": "PO Box 1013", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 37900, "Improved_V": 41400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.155225857700003, "SHAPE_Area": 253.98691556700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357759.040700003504753, 256406.149500001221895 ], [ 357759.070200003683567, 256405.654100000858307 ], [ 357757.515100002288818, 256398.886399999260902 ], [ 357756.925499998033047, 256397.279899999499321 ], [ 357728.48589999973774, 256398.88230000063777 ], [ 357728.466300003230572, 256401.181800000369549 ], [ 357728.917400002479553, 256407.238699998706579 ], [ 357755.636500000953674, 256406.146000001579523 ], [ 357759.040700003504753, 256406.149500001221895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604021100", "MAP": "A9-822-T016", "PARCEL_NAM": "41A-2 REM", "ACRE": ".74", "LONGITUDE": -64.96754724, "LATITUDE": 18.35112856, "OBJECTID_1": 2701, "PARCEL_NO_": "102604021100", "Tax_Legal_": "41A LINDBERG BAY NO. 4A SOUTHSIDE QTR", "Name": "MCCLEAN, D., M. DOWNING & ESTATE OF L. DOWNING", "Address": "PO Box 308127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 427.79910187799999, "SHAPE_Area": 2388.4998388099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354923.220299996435642, 257828.779100000858307 ], [ 354911.723700001835823, 257828.761300001293421 ], [ 354919.335400000214577, 258020.558600001037121 ], [ 354918.087600000202656, 258031.887099999934435 ], [ 354931.838100001215935, 258026.933400001376867 ], [ 354923.220299996435642, 257828.779100000858307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604021100", "MAP": "A9-822-T016", "PARCEL_NAM": "41A-2-1", "ACRE": ".22", "LONGITUDE": -64.96762495, "LATITUDE": 18.35111583, "OBJECTID_1": 2701, "PARCEL_NO_": "102604021100", "Tax_Legal_": "41A LINDBERG BAY NO. 4A SOUTHSIDE QTR", "Name": "MCCLEAN, D., M. DOWNING & ESTATE OF L. DOWNING", "Address": "PO Box 308127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.23177821799999, "SHAPE_Area": 859.05903034699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354911.723700001835823, 257828.761300001293421 ], [ 354907.82599999755621, 257828.867600001394749 ], [ 354914.308300003409386, 258021.087799999862909 ], [ 354919.335400000214577, 258020.558600001037121 ], [ 354911.723700001835823, 257828.761300001293421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604021100", "MAP": "A9-822-T016", "PARCEL_NAM": "41A-2-2", "ACRE": ".08", "LONGITUDE": -64.96771404, "LATITUDE": 18.35016627, "OBJECTID_1": 2701, "PARCEL_NO_": "102604021100", "Tax_Legal_": "41A LINDBERG BAY NO. 4A SOUTHSIDE QTR", "Name": "MCCLEAN, D., M. DOWNING & ESTATE OF L. DOWNING", "Address": "PO Box 308127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.76949918299999, "SHAPE_Area": 353.279135838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354907.82599999755621, 257828.867600001394749 ], [ 354911.723700001835823, 257828.761300001293421 ], [ 354923.220299996435642, 257828.779100000858307 ], [ 354922.916500002145767, 257821.794399999082088 ], [ 354913.046599999070168, 257822.411299999803305 ], [ 354913.311200000345707, 257814.738400001078844 ], [ 354910.665399998426437, 257814.738400001078844 ], [ 354898.494499996304512, 257815.5320999994874 ], [ 354898.229900002479553, 257823.204999998211861 ], [ 354884.668799996376038, 257824.278200000524521 ], [ 354884.92620000243187, 257830.035199999809265 ], [ 354907.82599999755621, 257828.867600001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105102022300", "MAP": "A9-96-T63", "PARCEL_NAM": "C", "ACRE": null, "LONGITUDE": -64.96701697, "LATITUDE": 18.34008654, "OBJECTID_1": 7416, "PARCEL_NO_": "105102022300", "Tax_Legal_": "LINDBERG BAY 64 & 65 SOUTHSIDE QTR.", "Name": "MICHAEL E. KIRWAN TERRACE PROJ", "Address": "64 & 65 LINDBERG BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 438900, "Improved_V": 4360800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.158556925, "SHAPE_Area": 1121.2648311099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355003.413599997758865, 256724.22749999910593 ], [ 355006.369400002062321, 256691.350299999117851 ], [ 354997.238200001418591, 256691.879700001329184 ], [ 354979.497500002384186, 256691.945599999278784 ], [ 354974.63629999756813, 256694.649999998509884 ], [ 354972.186700001358986, 256698.218600001186132 ], [ 354971.568000003695488, 256703.415199998766184 ], [ 354968.39299999922514, 256715.638999998569489 ], [ 354967.154700003564358, 256720.975499998778105 ], [ 354963.861100003123283, 256728.970100000500679 ], [ 354968.738499999046326, 256724.365899998694658 ], [ 355003.413599997758865, 256724.22749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105501040100", "MAP": "A9-568-T001", "PARCEL_NAM": "1-5-D", "ACRE": "1.4", "LONGITUDE": -64.90060403, "LATITUDE": 18.33917106, "OBJECTID_1": 19782, "PARCEL_NO_": "105501040100", "Tax_Legal_": "REM. 1. ESTATE DONOE NEW QTR", "Name": "LOCKHART REALTY, INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 518800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 364.10041567299999, "SHAPE_Area": 7059.0668517000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362005.062700003385544, 256601.054400000721216 ], [ 361982.626000002026558, 256599.149399999529123 ], [ 361982.021099999547005, 256605.296399999409914 ], [ 361969.567699998617172, 256731.8462999984622 ], [ 361988.186700001358986, 256723.343899998813868 ], [ 362034.371200002729893, 256697.335200000554323 ], [ 362053.697599999606609, 256682.978999998420477 ], [ 362066.336800001561642, 256673.590300001204014 ], [ 362005.062700003385544, 256601.054400000721216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502041700", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13 REM CONS", "ACRE": null, "LONGITUDE": -64.9025626, "LATITUDE": 18.33966546, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.66772346800002, "SHAPE_Area": 3276.6751907600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361855.691699996590614, 256701.739500001072884 ], [ 361849.948499999940395, 256685.477099999785423 ], [ 361844.109200000762939, 256677.059399999678135 ], [ 361835.508704519714229, 256679.445241569395876 ], [ 361827.063242919917684, 256682.332271337625571 ], [ 361818.80199397233082, 256685.710514718695777 ], [ 361810.753499999642372, 256689.568300001323223 ], [ 361801.057583708723541, 256695.360492035804782 ], [ 361791.670988178520929, 256701.641583154123509 ], [ 361782.61834261927288, 256708.395092587190447 ], [ 361773.92339999973774, 256715.603300001472235 ], [ 361768.616502761200536, 256720.778346518432954 ], [ 361763.853392633434851, 256726.457875254534883 ], [ 361759.681766955996864, 256732.585011939896503 ], [ 361756.143399998545647, 256739.098400000482798 ], [ 361755.132639253162779, 256741.514681617700262 ], [ 361754.5490651060245, 256744.068011865252629 ], [ 361754.409799344430212, 256746.683477251324803 ], [ 361754.718927959329449, 256749.284341268852586 ], [ 361755.467381264606956, 256751.794295807892922 ], [ 361756.633199997246265, 256754.139699999243021 ], [ 361757.881899997591972, 256755.507100000977516 ], [ 361759.680600002408028, 256756.720800001174212 ], [ 361763.495800003409386, 256757.152199998497963 ], [ 361767.319300003349781, 256756.584800001233816 ], [ 361768.731100000441074, 256755.997299998998642 ], [ 361769.340700000524521, 256755.203299999237061 ], [ 361770.558300003409386, 256753.815099999308586 ], [ 361772.372000001370907, 256753.230900000780821 ], [ 361781.221600003540516, 256752.505800001323223 ], [ 361784.440499998629093, 256752.133099999278784 ], [ 361786.041599996387959, 256752.945599999278784 ], [ 361788.044699996709824, 256753.761399999260902 ], [ 361789.644100002944469, 256754.773699998855591 ], [ 361790.850000001490116, 256754.7837999984622 ], [ 361795.473999999463558, 256754.622600000351667 ], [ 361798.692900002002716, 256754.25 ], [ 361799.491194990056101, 256754.001028111058986 ], [ 361800.239900000393391, 256753.628600001335144 ], [ 361800.755548203946091, 256753.137929237447679 ], [ 361801.187061377160717, 256752.571848633902846 ], [ 361801.523567308380734, 256751.944620902824681 ], [ 361801.75658754556207, 256751.272049391787732 ], [ 361801.88025101571111, 256750.571079909917898 ], [ 361801.891441949643195, 256749.859373768762453 ], [ 361801.789878385723568, 256749.154862795927329 ], [ 361801.578119273704942, 256748.475297532771947 ], [ 361801.261500000953674, 256747.837799999862909 ], [ 361801.499600000679493, 256729.581500001251698 ], [ 361801.787729355506599, 256727.866355719568674 ], [ 361802.338782061706297, 256726.216786276636412 ], [ 361803.139380727603566, 256724.672836728161201 ], [ 361804.170089967665263, 256723.271988094464177 ], [ 361805.405888216919266, 256722.048247468657792 ], [ 361806.816775156185031, 256721.031322458264185 ], [ 361808.368500001728535, 256720.245900001376867 ], [ 361835.961800001561642, 256706.014600001275539 ], [ 361841.408294344437309, 256704.18770238745492 ], [ 361847.003326381265651, 256702.88483170120162 ], [ 361852.696599997580051, 256702.11769999936223 ], [ 361855.691699996590614, 256701.739500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502041700", "MAP": "D9-9070-T016", "PARCEL_NAM": "1-13-58", "ACRE": ".20", "LONGITUDE": -64.90165939000001, "LATITUDE": 18.33922471, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.247111629, "SHAPE_Area": 700.92718957099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361878.602700002491474, 256663.954999998211861 ], [ 361892.701700001955032, 256688.994300000369549 ], [ 361898.184488165949006, 256685.313309377030237 ], [ 361903.316164195537567, 256681.156801329780137 ], [ 361908.055614519340452, 256676.558076653484022 ], [ 361912.364867969881743, 256671.553979060583515 ], [ 361916.209399998188019, 256666.184599999338388 ], [ 361890.201300002634525, 256652.950199998915195 ], [ 361888.583215062273666, 256655.790743499121163 ], [ 361886.530426123645157, 256658.33494157003588 ], [ 361884.096100002527237, 256660.5168999992311 ], [ 361878.602700002491474, 256663.954999998211861 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502041700", "MAP": "D9-9070-T016", "PARCEL_NAM": "1-13-56", "ACRE": ".14", "LONGITUDE": -64.90184097, "LATITUDE": 18.33932805, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.272346783299994, "SHAPE_Area": 561.16143181799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361862.04730000346899, 256671.877399999648333 ], [ 361873.555200003087521, 256697.565400000661612 ], [ 361880.12706099182833, 256695.145345725555671 ], [ 361886.519096408679616, 256692.283894558728207 ], [ 361892.701700001955032, 256688.994300000369549 ], [ 361878.602700002491474, 256663.954999998211861 ], [ 361872.850599996745586, 256667.097500000149012 ], [ 361867.513109555817209, 256669.632460340682883 ], [ 361862.04730000346899, 256671.877399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502041700", "MAP": "D9-9070-T016", "PARCEL_NAM": "1-13-54", "ACRE": ".14", "LONGITUDE": -64.90200711, "LATITUDE": 18.33938397, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.698780560800003, "SHAPE_Area": 482.131748147 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361844.109200000762939, 256677.059399999678135 ], [ 361849.948499999940395, 256685.477099999785423 ], [ 361855.691699996590614, 256701.739500001072884 ], [ 361861.725522045802791, 256700.703472773486283 ], [ 361867.687055701913778, 256699.310462577966973 ], [ 361873.555200003087521, 256697.565400000661612 ], [ 361862.04730000346899, 256671.877399999648333 ], [ 361855.280516493949108, 256674.198131847719196 ], [ 361848.377300001680851, 256676.074499998241663 ], [ 361844.109200000762939, 256677.059399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802020200", "MAP": "A9-820-T016", "PARCEL_NAM": "4B-B", "ACRE": ".09", "LONGITUDE": -64.93463186, "LATITUDE": 18.35983554, "OBJECTID_1": 4087, "PARCEL_NO_": "102802020200", "Tax_Legal_": "4B REM, 4B-A,4B-B,4B-1&4B-2 LERKENLUND No.9 GREAT NORTHSIDE QTR.", "Name": "BIMA CORPORATION", "Address": "18285 Blue Ridge Tpke", "City": "Gordonsville", "State": "Virginia", "Zip": 22942, "Country": "United States", "Land_Value": 487700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.476365086, "SHAPE_Area": 679.81396147099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358367.922399997711182, 258921.296000000089407 ], [ 358411.554700002074242, 258941.349500000476837 ], [ 358398.244800001382828, 258904.071199998259544 ], [ 358398.181599996984005, 258904.107099998742342 ], [ 358367.922399997711182, 258921.296000000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105201050100", "MAP": "D9-9063-T016", "PARCEL_NAM": "3-1", "ACRE": ".45", "LONGITUDE": -64.96085292, "LATITUDE": 18.34258538, "OBJECTID_1": 7675, "PARCEL_NO_": "105201050100", "Tax_Legal_": "CONTANT 3 SOUTHSIDE QTR", "Name": "ST JOHN, ALBAN & ANITA", "Address": "PO Box 307695", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 403300, "Improved_V": 14900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.53614124500001, "SHAPE_Area": 1273.9158223300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355655.939400002360344, 257005.077199999243021 ], [ 355656.718599997460842, 256965.382800001651049 ], [ 355642.302799999713898, 256972.740600001066923 ], [ 355630.943099997937679, 256978.538499999791384 ], [ 355614.823600001633167, 256986.765799999237061 ], [ 355608.211199998855591, 257005.710099998861551 ], [ 355629.985200002789497, 257005.466099999845028 ], [ 355638.050200000405312, 257005.320999998599291 ], [ 355655.939400002360344, 257005.077199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402116400", "MAP": "D9-9059-T016", "PARCEL_NAM": "D-24", "ACRE": ".50", "LONGITUDE": -64.92177432, "LATITUDE": 18.34342549, "OBJECTID_1": 19224, "PARCEL_NO_": "105402116400", "Tax_Legal_": "D-24 ROSS No. 8 NEW QUARTER", "Name": "MALONE, KEVIN V.", "Address": "140 Bonne Esperance", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.68586504500001, "SHAPE_Area": 2255.3138010299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359785.464800000190735, 257132.462900001555681 ], [ 359804.2212999984622, 257085.639899998903275 ], [ 359802.633900001645088, 257086.27479999884963 ], [ 359793.358599998056889, 257089.722100000828505 ], [ 359784.001199997961521, 257092.939800001680851 ], [ 359774.567299999296665, 257095.925999999046326 ], [ 359766.024899996817112, 257098.41160000115633 ], [ 359760.339599996805191, 257099.81980000063777 ], [ 359754.717799998819828, 257101.46339999884367 ], [ 359749.169299997389317, 257103.339499998837709 ], [ 359743.703699998557568, 257105.444899998605251 ], [ 359735.071900002658367, 257127.740899998694658 ], [ 359733.542999997735023, 257145.708200000226498 ], [ 359785.464800000190735, 257132.462900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402116300", "MAP": "D9-9059-T016", "PARCEL_NAM": "D-23", "ACRE": ".24", "LONGITUDE": -64.92220708000001, "LATITUDE": 18.34358019, "OBJECTID_1": 19223, "PARCEL_NO_": "105402116300", "Tax_Legal_": "D-23 ROSS No.8 NEW QUARTER", "Name": "DEXTER A TESHIERA SR REVOCABLE LIVING TRUST", "Address": "D-23 Estate Ross", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.94145568600001, "SHAPE_Area": 1029.6043574600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359733.542999997735023, 257145.708200000226498 ], [ 359735.071900002658367, 257127.740899998694658 ], [ 359743.703699998557568, 257105.444899998605251 ], [ 359738.330399997532368, 257107.77589999884367 ], [ 359735.478299997746944, 257109.123399998992682 ], [ 359730.260300002992153, 257111.796000000089407 ], [ 359725.157999999821186, 257114.683200001716614 ], [ 359704.987400002777576, 257136.412999998778105 ], [ 359694.947599999606609, 257147.228900000452995 ], [ 359693.150399997830391, 257149.648200001567602 ], [ 359696.257500000298023, 257152.849899999797344 ], [ 359701.813799999654293, 257153.802400000393391 ], [ 359733.542999997735023, 257145.708200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-9059-T016", "PARCEL_NAM": "D-25", "ACRE": ".25", "LONGITUDE": -64.9213788, "LATITUDE": 18.34333292, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.99843628299999, "SHAPE_Area": 1170.91429472 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359826.750299997627735, 257100.621100001037121 ], [ 359819.051899999380112, 257080.191700000315905 ], [ 359815.585100002586842, 257081.203600000590086 ], [ 359812.194499999284744, 257082.44709999859333 ], [ 359811.821400001645088, 257082.600099999457598 ], [ 359809.964699998497963, 257083.342700000852346 ], [ 359804.2212999984622, 257085.639899998903275 ], [ 359785.464800000190735, 257132.462900001555681 ], [ 359798.38120000064373, 257129.167899999767542 ], [ 359816.748999997973442, 257124.116099998354912 ], [ 359826.750299997627735, 257100.621100001037121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-9059-T016", "PARCEL_NAM": "D-E", "ACRE": "0.26", "LONGITUDE": -64.92197196, "LATITUDE": 18.34369199, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 236.34727799500001, "SHAPE_Area": 858.404804453 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359796.042700000107288, 257138.419100001454353 ], [ 359798.38120000064373, 257129.167899999767542 ], [ 359701.813799999654293, 257153.802400000393391 ], [ 359696.257500000298023, 257152.849899999797344 ], [ 359693.150399997830391, 257149.648200001567602 ], [ 359692.195900000631809, 257150.933100000023842 ], [ 359691.621442906267475, 257151.898222971736686 ], [ 359691.218373422045261, 257152.946554166846909 ], [ 359690.998289461713284, 257154.047928923304426 ], [ 359690.967523717030417, 257155.170656304602744 ], [ 359691.126961440895684, 257156.282430974184535 ], [ 359691.472014975268394, 257157.351262748677982 ], [ 359691.992755756247789, 257158.346397082728799 ], [ 359692.674199998378754, 257159.239199999719858 ], [ 359693.466061761486344, 257159.535771266266238 ], [ 359694.219300001859665, 257159.920000001788139 ], [ 359701.337499998509884, 257161.475400000810623 ], [ 359796.042700000107288, 257138.419100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402116000", "MAP": "D9-9061-T016", "PARCEL_NAM": "D-20", "ACRE": ".30", "LONGITUDE": -64.92227325, "LATITUDE": 18.34396663, "OBJECTID_1": 19220, "PARCEL_NO_": "105402116000", "Tax_Legal_": "D-20 ROSS No. 8 NEW QUARTER", "Name": "VAN HEYNINGAN, HAL A. & AVA K.", "Address": "7645 Brookman Est", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.57326835699999, "SHAPE_Area": 994.11843385400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359729.340599998831749, 257191.658300001174212 ], [ 359725.282300002872944, 257159.49100000038743 ], [ 359720.92230000346899, 257156.707400001585484 ], [ 359701.337499998509884, 257161.475400000810623 ], [ 359694.219300001859665, 257159.920000001788139 ], [ 359695.219081535411533, 257160.619025219348259 ], [ 359696.091648308502045, 257161.471566476975568 ], [ 359696.813693497155327, 257162.454851845075609 ], [ 359697.365930806321558, 257163.542617134080501 ], [ 359697.733609619433992, 257164.705807428021217 ], [ 359697.906908997101709, 257165.913353160198312 ], [ 359697.88120000064373, 257167.133000001311302 ], [ 359698.673299998044968, 257178.650499999523163 ], [ 359700.293371768610086, 257184.546245065750554 ], [ 359701.30639590480132, 257190.576023214816814 ], [ 359701.701899997889996, 257196.677499998360872 ], [ 359729.340599998831749, 257191.658300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402116100", "MAP": "D9-9061-T016", "PARCEL_NAM": "D-21", "ACRE": ".26", "LONGITUDE": -64.92201635000001, "LATITUDE": 18.34391379, "OBJECTID_1": 19221, "PARCEL_NO_": "105402116100", "Tax_Legal_": "D-21 ROSS No. 8 NEW QUARTER", "Name": "MELROSE DUNCAN", "Address": "PO Box 10523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8013523, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.05238508100001, "SHAPE_Area": 1007.24027036 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359756.10419999808073, 257186.798000000417233 ], [ 359752.402199998497963, 257153.140999998897314 ], [ 359743.957299999892712, 257151.099500000476837 ], [ 359720.92230000346899, 257156.707400001585484 ], [ 359725.282300002872944, 257159.49100000038743 ], [ 359729.340599998831749, 257191.658300001174212 ], [ 359756.10419999808073, 257186.798000000417233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105602010400", "MAP": "C9-217-T77", "PARCEL_NAM": "394-10", "ACRE": "0.16", "LONGITUDE": -64.88383197, "LATITUDE": 18.34814137, "OBJECTID_1": 20919, "PARCEL_NO_": "105602010400", "Tax_Legal_": "394-10 ANNAS RETREAT NEW QTR", "Name": "WATTLEY, VIOLA", "Address": "PO Box 9155", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 21900, "Improved_V": 157000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.014811018, "SHAPE_Area": 610.92300326600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363764.472800001502037, 257684.338799998164177 ], [ 363791.042700000107288, 257687.884100001305342 ], [ 363789.969369518395979, 257685.699035323224962 ], [ 363788.666599996387959, 257683.642499998211861 ], [ 363772.01240000128746, 257653.667500000447035 ], [ 363755.306999996304512, 257664.796999998390675 ], [ 363759.704599998891354, 257671.17509999871254 ], [ 363761.648726347833872, 257674.148827079246985 ], [ 363763.112626828078646, 257677.386059754528105 ], [ 363764.06150325195631, 257680.809846188058145 ], [ 363764.472800001502037, 257684.338799998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103104042400", "MAP": "A9-167E-T71", "PARCEL_NAM": "394-114", "ACRE": "0.15", "LONGITUDE": -64.88565556, "LATITUDE": 18.34836111, "OBJECTID_1": 6950, "PARCEL_NO_": "103104042400", "Tax_Legal_": "ANNAS RETREAT 394-114 NEW QTR", "Name": "WELLS, THEODORE & JOAN", "Address": "PO Box 9772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23400, "Improved_V": 188100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.85313637500001, "SHAPE_Area": 653.80637979699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363570.194600000977516, 257706.738899998366833 ], [ 363582.804799996316433, 257714.391499999910593 ], [ 363595.140500001609325, 257686.205899998545647 ], [ 363576.672600001096725, 257676.977800000458956 ], [ 363562.745899997651577, 257702.617199998348951 ], [ 363570.194600000977516, 257706.738899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303240500", "MAP": null, "PARCEL_NAM": "69", "ACRE": "595 sq ft", "LONGITUDE": -64.94231884, "LATITUDE": 18.33739492, "OBJECTID_1": 11137, "PARCEL_NO_": "105303240500", "Tax_Legal_": "69 ESTATE ALTONA&WELGUNST CROWN PRINCE QTR", "Name": "DANET, ROBERT & ROSE", "Address": "PO Box 304158", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3200, "Improved_V": 13400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 32.809039657900001, "SHAPE_Area": 60.081962477700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357597.127199999988079, 256426.571600001305342 ], [ 357598.290700003504753, 256438.052000001072884 ], [ 357603.965000003576279, 256436.153400000184774 ], [ 357602.45889999717474, 256426.319400001317263 ], [ 357598.055699996650219, 256426.527699999511242 ], [ 357597.127199999988079, 256426.571600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402130400", "MAP": "MB.B", "PARCEL_NAM": "4 OF 2ND STREET", "ACRE": "0.11", "LONGITUDE": -64.92011575, "LATITUDE": 18.34074823, "OBJECTID_1": 19241, "PARCEL_NO_": "105402130400", "Tax_Legal_": "SECOND STREET 4 KINGS QUARTER", "Name": "ALI, FAIKA J", "Address": "PO Box 9068", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.984755420300004, "SHAPE_Area": 400.34942227 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359958.567400000989437, 256825.738699998706579 ], [ 359957.209600001573563, 256821.967599999159575 ], [ 359953.275100000202656, 256810.536299999803305 ], [ 359929.820100001990795, 256818.788100000470877 ], [ 359933.75280000269413, 256830.430399999022484 ], [ 359934.985200002789497, 256833.977000001817942 ], [ 359958.567400000989437, 256825.738699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033300", "MAP": "D9-7695-T005", "PARCEL_NAM": "A", "ACRE": ".08", "LONGITUDE": -64.92742424, "LATITUDE": 18.34888071, "OBJECTID_1": 4845, "PARCEL_NO_": "102903033300", "Tax_Legal_": "HOSPITAL GROUND 270 No.9 NEW QTR.", "Name": "VANTERPOOL, CLARICE A. & OTHERS", "Address": "6900 English Point Ln", "City": "Brandywine", "State": "Maryland", "Zip": 20613, "Country": "United States", "Land_Value": 79500, "Improved_V": 45000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.452513925300003, "SHAPE_Area": 93.799899801899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359160.954999998211861, 257701.968800000846386 ], [ 359162.720200002193451, 257728.256900001317263 ], [ 359169.153599999845028, 257717.789000000804663 ], [ 359160.954999998211861, 257701.968800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033000", "MAP": "C3-57-T46", "PARCEL_NAM": "REM 268", "ACRE": "0.95", "LONGITUDE": -64.92786097, "LATITUDE": 18.34912063, "OBJECTID_1": 4842, "PARCEL_NO_": "102903033000", "Tax_Legal_": "HOSPITAL GROUND 268 GREAT NORTHSIDE QTR", "Name": "HOWARD, IVAN & SEZILEE", "Address": "P.O. BOX 3194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 126100, "Improved_V": 118400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.59459741199998, "SHAPE_Area": 3996.8960920300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359138.6891999989748, 257805.766199998557568 ], [ 359137.510799996554852, 257792.693300001323223 ], [ 359136.663900002837181, 257783.297699999064207 ], [ 359132.875900000333786, 257741.272900000214577 ], [ 359127.563500002026558, 257682.337400000542402 ], [ 359123.871699996292591, 257680.852600000798702 ], [ 359116.66160000115633, 257675.305100001394749 ], [ 359107.867700003087521, 257666.367199998348951 ], [ 359101.969999998807907, 257661.797899998724461 ], [ 359097.715000003576279, 257658.501299999654293 ], [ 359103.581799998879433, 257729.880300000309944 ], [ 359110.978500001132488, 257819.874200001358986 ], [ 359115.667700000107288, 257823.551199998706579 ], [ 359120.206600002944469, 257827.110399998724461 ], [ 359122.616200000047684, 257828.39750000089407 ], [ 359120.94820000231266, 257802.635400000959635 ], [ 359138.6891999989748, 257805.766199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "107601097200", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-72", "ACRE": ".23", "LONGITUDE": -64.87582535, "LATITUDE": 18.32884221, "OBJECTID_1": 38288, "PARCEL_NO_": "107601097200", "Tax_Legal_": "3G-72 MARIENDAHL NO.4 REDHOOK QTR", "Name": "THOMAS, KARIMA N.", "Address": "PO Box 503332", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27800, "Improved_V": 123200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.71248672300001, "SHAPE_Area": 1441.32720574 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364656.487000003457069, 255555.971400000154972 ], [ 364645.748099997639656, 255517.285900000482798 ], [ 364642.028899997472763, 255518.430599998682737 ], [ 364634.037600003182888, 255520.8902000002563 ], [ 364621.850699998438358, 255524.630800001323223 ], [ 364615.501800000667572, 255526.579500000923872 ], [ 364626.837200000882149, 255569.427099999040365 ], [ 364626.705899998545647, 255569.774900000542402 ], [ 364634.133699998259544, 255567.692600000649691 ], [ 364653.915100000798702, 255562.147100001573563 ], [ 364659.976300001144409, 255560.447900000959635 ], [ 364657.810300000011921, 255557.678199999034405 ], [ 364656.487000003457069, 255555.971400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601097700", "MAP": "A9-604A-T003", "PARCEL_NAM": "3G-77", "ACRE": "0.24", "LONGITUDE": -64.87695283, "LATITUDE": 18.32916144, "OBJECTID_1": 38293, "PARCEL_NO_": "107601097700", "Tax_Legal_": "3G-77 EST MARIENDAHL No.4 REDHOOK QTR", "Name": "ROBINSON, NEVILLE D.", "Address": "PO Box 306512", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.17038572300001, "SHAPE_Area": 1003.36868778 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364535.291500002145767, 255595.035900000482798 ], [ 364521.460100002586842, 255554.537399999797344 ], [ 364517.764799997210503, 255555.6261 ], [ 364514.541799999773502, 255556.575699999928474 ], [ 364502.51240000128746, 255560.119899999350309 ], [ 364498.568400003015995, 255561.058200001716614 ], [ 364513.631700001657009, 255601.976700000464916 ], [ 364513.632799997925758, 255602.073699999600649 ], [ 364528.140900000929832, 255597.362100001424551 ], [ 364531.620600000023842, 255596.23200000077486 ], [ 364535.223200000822544, 255595.245099999010563 ], [ 364535.291500002145767, 255595.035900000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107704013900", "MAP": null, "PARCEL_NAM": "2Q", "ACRE": "0.70", "LONGITUDE": -64.85251875, "LATITUDE": 18.31887033, "OBJECTID_1": 39795, "PARCEL_NO_": "107704013900", "Tax_Legal_": "2Q EST NAZARETH RED HOOK QTR", "Name": "SECRET HARBOUR HOUSE III INC", "Address": "6281 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.563964688, "SHAPE_Area": 2423.4324689 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367078.052299998700619, 254443.817299999296665 ], [ 367086.425200000405312, 254452.309500001370907 ], [ 367090.534400001168251, 254493.104200001806021 ], [ 367108.336199998855591, 254485.861600000411272 ], [ 367134.186700001358986, 254480.373700000345707 ], [ 367142.282200001180172, 254476.640299998223782 ], [ 367148.779500000178814, 254471.204999998211861 ], [ 367120.767099998891354, 254446.488899998366833 ], [ 367112.8783999979496, 254425.94819999858737 ], [ 367111.30179999768734, 254421.713500000536442 ], [ 367103.965800002217293, 254430.941500000655651 ], [ 367082.909999996423721, 254441.535000000149012 ], [ 367078.052299998700619, 254443.817299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704018000", "MAP": "D9-7506-T005", "PARCEL_NAM": "REM 2B-1", "ACRE": "1.98", "LONGITUDE": -64.85351798000001, "LATITUDE": 18.31919964, "OBJECTID_1": 39889, "PARCEL_NO_": "107704018000", "Tax_Legal_": "2B-1 REM. NAZARETH NO. 1 RED HOOK QUARTER", "Name": "BLUE SERENITY LLC", "Address": "85 Coves Run", "City": "OYSTER BAY COVE", "State": "New York", "Zip": 11791, "Country": "United States", "Land_Value": 513600, "Improved_V": 721000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 423.97622844900002, "SHAPE_Area": 7536.4206804699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367009.657799996435642, 254426.5810999982059 ], [ 367002.417199999094009, 254424.622000001370907 ], [ 367000.956900000572205, 254424.677499998360872 ], [ 367008.478699997067451, 254455.960700001567602 ], [ 367008.586800001561642, 254456.524399999529123 ], [ 366969.849500000476837, 254473.158700000494719 ], [ 366949.211999997496605, 254503.850400000810623 ], [ 366968.526600003242493, 254522.635800000280142 ], [ 366968.262000001966953, 254565.763000000268221 ], [ 366968.306199997663498, 254566.64640000090003 ], [ 366977.894100002944469, 254558.254599999636412 ], [ 366988.437299996614456, 254551.163699999451637 ], [ 366998.156199999153614, 254546.177000001072884 ], [ 367016.767899997532368, 254538.518899999558926 ], [ 367028.076099999248981, 254536.28940000012517 ], [ 367036.153599999845028, 254534.666700001806021 ], [ 367045.053599998354912, 254531.151000000536442 ], [ 367053.968000002205372, 254525.946600001305342 ], [ 367035.201700001955032, 254497.765000000596046 ], [ 367039.170500002801418, 254461.517000000923872 ], [ 367050.282999999821186, 254455.696100000292063 ], [ 367044.172700002789497, 254445.228799998760223 ], [ 367038.54839999973774, 254442.860599998384714 ], [ 367030.539300002157688, 254436.46229999884963 ], [ 367027.32660000026226, 254434.958299998193979 ], [ 367023.320200003683567, 254431.970199998468161 ], [ 367021.732799999415874, 254429.001899998635054 ], [ 367019.329999998211861, 254427.082400001585484 ], [ 367009.657799996435642, 254426.5810999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704018100", "MAP": "D9-4016-T87", "PARCEL_NAM": "2B-2", "ACRE": "0.62", "LONGITUDE": -64.85296337, "LATITUDE": 18.31905192, "OBJECTID_1": 39890, "PARCEL_NO_": "107704018100", "Tax_Legal_": "2B-2 NAZARETH RED HOOK QTR.", "Name": "MARSH, JOEL & BARBARA", "Address": "PO Box 1617", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 129100, "Improved_V": 722400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.02715483899999, "SHAPE_Area": 3203.7889581200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367044.172700002789497, 254445.228799998760223 ], [ 367050.282999999821186, 254455.696100000292063 ], [ 367039.170500002801418, 254461.517000000923872 ], [ 367035.201700001955032, 254497.765000000596046 ], [ 367053.968000002205372, 254525.946600001305342 ], [ 367062.086900003254414, 254519.469200000166893 ], [ 367065.3462999984622, 254515.485100001096725 ], [ 367090.534400001168251, 254493.104200001806021 ], [ 367086.425200000405312, 254452.309500001370907 ], [ 367078.052299998700619, 254443.817299999296665 ], [ 367061.917099997401237, 254444.740699999034405 ], [ 367057.057700000703335, 254447.234000001102686 ], [ 367048.994499996304512, 254447.168000001460314 ], [ 367044.172700002789497, 254445.228799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013800", "MAP": "D9-4732-T89", "PARCEL_NAM": "2B-3", "ACRE": "0.71", "LONGITUDE": -64.85382082, "LATITUDE": 18.31881694, "OBJECTID_1": 39794, "PARCEL_NO_": "107704013800", "Tax_Legal_": "2B-3 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "DALY, FRANCIS X. & ANNETTE P. (Trustees)", "Address": "1555 Astor St", "City": "Chicago", "State": "Illinois", "Zip": 60610, "Country": "United States", "Land_Value": 274900, "Improved_V": 501400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.04244850200001, "SHAPE_Area": 2841.4760895600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367008.586800001561642, 254456.524399999529123 ], [ 367008.478699997067451, 254455.960700001567602 ], [ 367000.956900000572205, 254424.677499998360872 ], [ 366988.704499997198582, 254425.14299999922514 ], [ 366982.282799996435642, 254421.712999999523163 ], [ 366978.258400000631809, 254420.835700001567602 ], [ 366967.760200001299381, 254422.649599999189377 ], [ 366960.397299997508526, 254435.043800000101328 ], [ 366952.271200001239777, 254442.365600001066923 ], [ 366944.937100000679493, 254451.382599998265505 ], [ 366940.84740000218153, 254464.471000000834465 ], [ 366947.888999998569489, 254476.598299998790026 ], [ 366943.761399999260902, 254502.859400000423193 ], [ 366949.211999997496605, 254503.850400000810623 ], [ 366969.849500000476837, 254473.158700000494719 ], [ 367008.586800001561642, 254456.524399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704018200", "MAP": "D9-7506-T005", "PARCEL_NAM": "2B-1A", "ACRE": "0.51", "LONGITUDE": -64.8540164, "LATITUDE": 18.31966362, "OBJECTID_1": 39891, "PARCEL_NO_": "107704018200", "Tax_Legal_": "2B-1A NAZARETH NO. 1 RED HOOK QUARTER", "Name": "TWIN APPLES LIVING TRUST", "Address": "8465 DEL VISTA COURT", "City": "LAS VEGAS", "State": "Nevada", "Zip": 89113, "Country": "United States", "Land_Value": 125100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.05848590900001, "SHAPE_Area": 2168.0315814099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366968.306199997663498, 254566.64640000090003 ], [ 366968.262000001966953, 254565.763000000268221 ], [ 366968.526600003242493, 254522.635800000280142 ], [ 366949.211999997496605, 254503.850400000810623 ], [ 366943.761399999260902, 254502.859400000423193 ], [ 366929.632799997925758, 254592.750599998980761 ], [ 366929.560699999332428, 254593.237199999392033 ], [ 366936.247400000691414, 254588.517200000584126 ], [ 366961.645599998533726, 254572.475999999791384 ], [ 366968.306199997663498, 254566.64640000090003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703072300", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-54", "ACRE": "0.09", "LONGITUDE": -64.87801717000001, "LATITUDE": 18.33690455, "OBJECTID_1": 23239, "PARCEL_NO_": "105703072300", "Tax_Legal_": "ANNAS RETREAT 173-54 NEW QTR", "Name": "FRANCIS, MILTON & MONA", "Address": "PO Box 10731", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13000, "Improved_V": 109600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.385798468499999, "SHAPE_Area": 299.84537247899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364388.4391999989748, 256421.791400000452995 ], [ 364395.918600000441074, 256448.900299999862909 ], [ 364406.503499999642372, 256446.038100000470877 ], [ 364398.666900001466274, 256419.376200001686811 ], [ 364397.050700001418591, 256419.785100001841784 ], [ 364388.4391999989748, 256421.791400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703081000", "MAP": null, "PARCEL_NAM": "173C-107", "ACRE": null, "LONGITUDE": -64.87653795, "LATITUDE": 18.33650693, "OBJECTID_1": 23270, "PARCEL_NO_": "105703081000", "Tax_Legal_": "ANNAS RETREAT 173C-91&107 NEW QTR.", "Name": "PINNEY, NORTON & GLYNIS", "Address": "PO Box 10127", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 166600, "Improved_V": 146400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.746867442, "SHAPE_Area": 949.13146355200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364572.9324000030756, 256403.58500000089407 ], [ 364564.29280000180006, 256373.114500001072884 ], [ 364535.470600001513958, 256378.518899999558926 ], [ 364536.01070000231266, 256380.060199998319149 ], [ 364544.070100001990795, 256410.456999998539686 ], [ 364552.704099997878075, 256408.272300001233816 ], [ 364572.095100000500679, 256403.786899998784065 ], [ 364572.9324000030756, 256403.58500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "F9-3835-T80", "PARCEL_NAM": "4G-13", "ACRE": "0.04", "LONGITUDE": -64.8674451, "LATITUDE": 18.34371702, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.357342318000001, "SHAPE_Area": 119.54247606 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365520.769000001251698, 257199.343499999493361 ], [ 365502.755000002682209, 257190.450199998915195 ], [ 365502.30799999833107, 257195.663600001484156 ], [ 365501.66330000013113, 257203.183400001376867 ], [ 365520.769000001251698, 257199.343499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "F9-532-T60", "PARCEL_NAM": "4G REM", "ACRE": null, "LONGITUDE": -64.86773422, "LATITUDE": 18.3435723, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.16196500300001, "SHAPE_Area": 275.02245839 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365502.755000002682209, 257190.450199998915195 ], [ 365499.667599998414516, 257188.9712999984622 ], [ 365499.403599999845028, 257188.844900000840425 ], [ 365481.482199996709824, 257180.260400000959635 ], [ 365468.57940000295639, 257174.079900000244379 ], [ 365455.711499996483326, 257167.313400000333786 ], [ 365454.174400001764297, 257171.365299999713898 ], [ 365453.79619999974966, 257172.891800001263618 ], [ 365460.887199997901917, 257176.220300000160933 ], [ 365477.456299997866154, 257183.997999999672174 ], [ 365502.30799999833107, 257195.663600001484156 ], [ 365502.755000002682209, 257190.450199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8855514, "LATITUDE": 18.34740863, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.710850344299999, "SHAPE_Area": 58.670932625500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363607.296599999070168, 257589.666799999773502 ], [ 363607.374099999666214, 257587.941700000315905 ], [ 363576.020599998533726, 257590.07209999859333 ], [ 363575.868000000715256, 257592.101799998432398 ], [ 363607.296599999070168, 257589.666799999773502 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102301019700", "MAP": "A9-824-T016", "PARCEL_NAM": "ROW 11-A", "ACRE": "2.00", "LONGITUDE": -65.03358643, "LATITUDE": 18.35318244, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1638.68215878, "SHAPE_Area": 5539.0996450599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347952.082400001585484, 258024.32209999859333 ], [ 347952.075499996542931, 258024.32149999961257 ], [ 347952.076399996876717, 258024.328499998897314 ], [ 347952.094700001180172, 258024.436099998652935 ], [ 347952.082400001585484, 258024.32209999859333 ] ] ], [ [ [ 347948.806100003421307, 258231.285500001162291 ], [ 347959.575499996542931, 258217.377500001341105 ], [ 347973.515100002288818, 258179.328699998557568 ], [ 347984.82769999653101, 258150.16270000115037 ], [ 348007.847199998795986, 258096.072999998927116 ], [ 348009.403599999845028, 258091.459899999201298 ], [ 348015.135999999940395, 258079.5135000012815 ], [ 348016.117700018978212, 258076.034047240100335 ], [ 348016.555464064178523, 258072.445358191791456 ], [ 348016.43898303603055, 258068.831944485224085 ], [ 348015.770999997854233, 258065.278900001198053 ], [ 348014.363185135298409, 258062.762505592370871 ], [ 348012.63866720610531, 258060.451613682380412 ], [ 348010.627010048599914, 258058.385840464237845 ], [ 348008.362700000405312, 258056.600600000470877 ], [ 348001.235725512960926, 258050.834958624735009 ], [ 347993.819562458491419, 258045.446367772965459 ], [ 347986.134137304266915, 258040.449306034570327 ], [ 347978.200099997222424, 258035.857200000435114 ], [ 347966.399700000882149, 258028.025499999523163 ], [ 347964.184805196593516, 258025.59184692191775 ], [ 347962.307243292161729, 258022.889405878784601 ], [ 347960.799272204283625, 258019.964606826804811 ], [ 347959.686800003051758, 258016.86769999936223 ], [ 347954.228799998760223, 257992.624200001358986 ], [ 347951.424199998378754, 257977.384199999272823 ], [ 347950.465000003576279, 257969.661100000143051 ], [ 347952.616999998688698, 257956.914099998772144 ], [ 347955.506300002336502, 257948.512299999594688 ], [ 347959.1503000035882, 257942.158399999141693 ], [ 347946.770700000226498, 257942.125599998980761 ], [ 347946.229999996721745, 257943.074299998581409 ], [ 347946.079599998891354, 257943.35869999974966 ], [ 347945.867899999022484, 257952.248700000345707 ], [ 347946.000200003385544, 257960.120099999010563 ], [ 347946.209299996495247, 257969.905200000852346 ], [ 347948.447599999606609, 257976.656599998474121 ], [ 347948.53654782747617, 257981.99058348746621 ], [ 347948.935099996626377, 257987.310400001704693 ], [ 347950.067100003361702, 257995.001200001686811 ], [ 347950.093400001525879, 257995.136300001293421 ], [ 347950.209799997508526, 257995.724399998784065 ], [ 347951.268399998545647, 258000.401399999856949 ], [ 347951.416599996387959, 258000.982299998402596 ], [ 347951.453000001609325, 258001.122999999672174 ], [ 347952.453299999237061, 258004.754099998623133 ], [ 347954.856899999082088, 258013.717199999839067 ], [ 347956.385200001299381, 258019.717599999159575 ], [ 347956.598883571627084, 258022.046198233147152 ], [ 347957.155344696890097, 258024.317405273381155 ], [ 347958.042291007353924, 258026.481049570837058 ], [ 347959.240129630488809, 258028.489335665130056 ], [ 347960.72240000218153, 258030.297899998724461 ], [ 347969.237431760528125, 258035.800131598749431 ], [ 347978.058768395159859, 258040.796564166550525 ], [ 347987.156400002539158, 258045.270199999213219 ], [ 347995.316264542634599, 258050.827892600034829 ], [ 348003.176374264992774, 258056.802004375815159 ], [ 348010.715499997138977, 258063.176399998366833 ], [ 348011.576361886516679, 258064.200025713304058 ], [ 348012.260663489403669, 258065.349209820909891 ], [ 348012.75044953590259, 258066.593799080728786 ], [ 348013.032868615642656, 258067.901136933098314 ], [ 348013.100510383956134, 258069.236920369177824 ], [ 348012.95160000026226, 258070.566100001335144 ], [ 348009.246324753214139, 258078.616795378446113 ], [ 348005.135200001299381, 258086.467999998480082 ], [ 347990.192100003361702, 258117.983500000089407 ], [ 347967.520599998533726, 258175.725099999457598 ], [ 347959.178400002419949, 258202.461599998176098 ], [ 347951.549599997699261, 258218.513900000602007 ], [ 347949.167700000107288, 258221.221900001168251 ], [ 347948.963179406593554, 258221.347604000358842 ], [ 347948.740571892762091, 258221.43747092076228 ], [ 347948.506101925449912, 258221.48898793765693 ], [ 347948.266325664939359, 258221.500714551773854 ], [ 347948.027947644004598, 258221.472322868008632 ], [ 347947.79763329832349, 258221.404606763797347 ], [ 347947.581822590262163, 258221.299459691159427 ], [ 347947.386549936956726, 258221.159821732668206 ], [ 347947.217275478178635, 258220.989597391890129 ], [ 347947.078732402122114, 258220.793546417204197 ], [ 347946.974794597714208, 258220.577150711615104 ], [ 347946.908368334348779, 258220.346461049688514 ], [ 347946.881310997996479, 258220.107927888166159 ], [ 347946.894379155652132, 258219.868221000826452 ], [ 347946.947207400458865, 258219.63404298061505 ], [ 347947.038318569073454, 258219.411941824509995 ], [ 347947.165165045531467, 258219.208127840713132 ], [ 347947.324199996888638, 258219.028299998492002 ], [ 347948.590790234156884, 258203.229557025508257 ], [ 347949.57320000231266, 258187.410599999129772 ], [ 347952.150211493542884, 258161.576026892784284 ], [ 347954.071099996566772, 258135.684399999678135 ], [ 347954.470930468814913, 258131.090295417496236 ], [ 347954.328990795533173, 258126.48100974096451 ], [ 347953.64724160800688, 258121.920211634947918 ], [ 347952.435099996626377, 258117.470899999141693 ], [ 347951.71248013881268, 258110.355007090402069 ], [ 347950.307996467628982, 258103.341766971512698 ], [ 347948.234702593821567, 258096.496362391742878 ], [ 347945.511868212022819, 258089.882416196254781 ], [ 347942.164800003170967, 258083.5614 ], [ 347932.507500000298023, 258076.285300001502037 ], [ 347928.496093981142621, 258072.505245789769106 ], [ 347924.993730932648759, 258068.249233434180496 ], [ 347922.056400001049042, 258063.585299998521805 ], [ 347919.91344390634913, 258059.845940815925132 ], [ 347918.256965004431549, 258055.867103602882707 ], [ 347917.113182365486864, 258051.711766168300528 ], [ 347916.500200003385544, 258047.445700000971556 ], [ 347915.337503721588291, 258036.330760344921146 ], [ 347913.571860613010358, 258025.295532634772826 ], [ 347911.208499997854233, 258014.372699998319149 ], [ 347909.591841422428843, 258009.431565274629975 ], [ 347907.325975417334121, 258004.752436236623907 ], [ 347904.451989881403279, 258000.420161493908381 ], [ 347901.021999999880791, 257996.513300001621246 ], [ 347897.253254919720348, 257992.827982770977542 ], [ 347893.070596173056401, 257989.620122365886346 ], [ 347888.534131434746087, 257986.935817940568086 ], [ 347883.709052814519964, 257984.813644790643593 ], [ 347878.664700001478195, 257983.284099999815226 ], [ 347877.242314220347907, 257982.987625693640439 ], [ 347875.870800286647864, 257982.508013502374524 ], [ 347874.573629273218103, 257981.853471153532155 ], [ 347873.373000003397465, 257981.035199999809265 ], [ 347872.522584225691389, 257980.158003484015353 ], [ 347871.547797199978959, 257979.421477193332976 ], [ 347870.471662874042522, 257978.84301748443977 ], [ 347869.319598964473698, 257978.43628726596944 ], [ 347868.118816604081076, 257978.2108932879637 ], [ 347866.897677629429381, 257978.172159235517029 ], [ 347865.685024689242709, 257978.320999986201059 ], [ 347864.509499996900558, 257978.653900001198053 ], [ 347863.115971838589758, 257979.409948444314068 ], [ 347861.860719376476482, 257980.378385965712368 ], [ 347860.775818604801316, 257981.534465674048988 ], [ 347859.888992449268699, 257982.848645778256468 ], [ 347859.222902351641096, 257984.287344481359469 ], [ 347858.794569192454219, 257985.81379811023362 ], [ 347858.614938348939177, 257987.389000553259393 ], [ 347858.68860000371933, 257988.972699999809265 ], [ 347858.739581020898186, 257990.424683174991515 ], [ 347859.036155374429654, 257991.846969312842702 ], [ 347859.569724764442071, 257993.19832341565052 ], [ 347860.324819917848799, 257994.439566951128654 ], [ 347861.279549074592069, 257995.534713718632702 ], [ 347862.406232674606144, 257996.452013162983349 ], [ 347863.672205845068675, 257997.16487088840222 ], [ 347865.040765422512777, 257997.652619684580714 ], [ 347866.472234052489512, 257997.901118711713934 ], [ 347867.92511051800102, 257997.903163472306915 ], [ 347869.357272944878787, 257997.658694684592774 ], [ 347870.727200001478195, 257997.174800001084805 ], [ 347873.618488502397668, 257995.969271877082065 ], [ 347876.663589041505475, 257995.23428210846032 ], [ 347879.786453762149904, 257994.988186212838627 ], [ 347882.909092737361789, 257995.237130149966106 ], [ 347885.95352167787496, 257995.974896833562525 ], [ 347888.843709499458782, 257997.183061395771801 ], [ 347891.507477111008484, 257998.831451326899696 ], [ 347893.878300003707409, 258000.878899998962879 ], [ 347897.398894644284155, 258004.683138290012721 ], [ 347900.372429279785138, 258008.928713324072305 ], [ 347902.744223703746684, 258013.537553395988652 ], [ 347904.470663085929118, 258018.424906734755496 ], [ 347905.520000003278255, 258023.500900000333786 ], [ 347907.101325710129458, 258036.383556698798202 ], [ 347909.35639999806881, 258049.165500000119209 ], [ 347911.028239291976206, 258056.276756575156469 ], [ 347913.417841490998399, 258063.180003494635457 ], [ 347916.500200003385544, 258069.802999999374151 ], [ 347919.769882316992152, 258074.804278181167319 ], [ 347923.625568759685848, 258079.36906601183 ], [ 347928.00959999859333, 258083.429099999368191 ], [ 347934.211833021428902, 258088.170066022372339 ], [ 347940.577299997210503, 258092.689500000327826 ], [ 347941.059404203260783, 258093.234953337640036 ], [ 347941.444918822264299, 258093.852466323034605 ], [ 347941.723279530997388, 258094.525117142184172 ], [ 347941.886858363111969, 258095.234473029122455 ], [ 347941.931172739830799, 258095.961095382663189 ], [ 347941.85500830662204, 258096.685072445659898 ], [ 347941.660452210518997, 258097.38656495034229 ], [ 347941.352835905679967, 258098.046349777141586 ], [ 347940.940589054487646, 258098.646346729074139 ], [ 347940.435008528234903, 258099.170113986678189 ], [ 347939.849948836956173, 258099.603298665839247 ], [ 347939.201442471763585, 258099.934030132397311 ], [ 347938.507260564016178, 258100.153245295165107 ], [ 347937.786425899714231, 258100.254936963377986 ], [ 347937.058691634912975, 258100.236318462819327 ], [ 347936.343999996781349, 258100.097899999469519 ], [ 347908.695000000298023, 258085.810400001704693 ], [ 347906.856575011042878, 258085.417030586046167 ], [ 347904.97814976592781, 258085.339155449444661 ], [ 347903.113473080156837, 258085.57900289259851 ], [ 347901.315900370944291, 258086.129709977540188 ], [ 347899.636866958171595, 258086.975518902210752 ], [ 347898.12441630626563, 258088.092227890243521 ], [ 347896.821825320133939, 258089.44788369507296 ], [ 347895.766366029856727, 258091.003695902531035 ], [ 347894.988239097525366, 258092.715146870439639 ], [ 347894.50970966310706, 258094.533265546080656 ], [ 347894.344470254436601, 258096.406028712139232 ], [ 347894.497248992789537, 258098.279849566839403 ], [ 347894.963674303668085, 258100.101111043884885 ], [ 347895.730400003492832, 258101.817699998617172 ], [ 347898.406887564284261, 258108.502541182824643 ], [ 347901.683499999344349, 258114.914599999785423 ], [ 347902.205527278245427, 258116.814742440357804 ], [ 347902.455522151314653, 258118.769366787368199 ], [ 347902.428529219061602, 258120.739728468906833 ], [ 347902.125083535560407, 258122.686770967586199 ], [ 347901.55120000243187, 258124.571899998933077 ], [ 347900.968429872533306, 258125.939446977979969 ], [ 347900.61190880619688, 258127.382602719182614 ], [ 347900.490817676531151, 258128.864204117155168 ], [ 347900.608274735044688, 258130.346098041685764 ], [ 347900.961255312315188, 258131.7901238296472 ], [ 347901.54066970711574, 258133.159095970797352 ], [ 347902.331597258104011, 258134.417761682270793 ], [ 347903.313670569565147, 258135.533708712871885 ], [ 347904.461599998176098, 258136.478199999779463 ], [ 347906.008929234056268, 258136.962171277380548 ], [ 347907.615742916706949, 258137.178054929390782 ], [ 347909.235942189348862, 258137.119657338189427 ], [ 347910.823044168122578, 258136.788653907889966 ], [ 347912.331515517376829, 258136.194540997530567 ], [ 347913.718078783655073, 258135.35436347432551 ], [ 347914.942954008642118, 258134.292225703102304 ], [ 347915.971000000834465, 258133.038600001484156 ], [ 347916.634437230706681, 258131.397389725490939 ], [ 347917.037906961748376, 258129.673750463873148 ], [ 347917.171832995431032, 258127.908592129475437 ], [ 347917.033036649110727, 258126.143810074281646 ], [ 347916.624812200549059, 258124.421290719503304 ], [ 347915.956848699424881, 258122.781917397427605 ], [ 347915.045000001788139, 258121.264600001275539 ], [ 347913.480425629240926, 258119.39617293595802 ], [ 347911.737700000405312, 258117.692699998617172 ], [ 347908.477783865411766, 258112.883137526339851 ], [ 347905.861614121880848, 258107.695209206227446 ], [ 347903.9324000030756, 258102.214600000530481 ], [ 347903.753070374659728, 258101.39723292097915 ], [ 347903.706416951899882, 258100.561726178653771 ], [ 347903.793634440284222, 258099.7294755144394 ], [ 347904.012489365704823, 258098.921793287358014 ], [ 347904.357377269072458, 258098.159362705278909 ], [ 347904.819466226152144, 258097.461708167509641 ], [ 347905.386923016398214, 258096.846695281827124 ], [ 347906.04521614901023, 258096.330073360179085 ], [ 347906.777487987070344, 258095.925072108919267 ], [ 347907.564986439479981, 258095.642062840925064 ], [ 347908.387545166478958, 258095.488292886060663 ], [ 347909.22410000115633, 258095.467700000852346 ], [ 347918.422679477487691, 258099.781658452557167 ], [ 347927.275758097064681, 258104.766345088777598 ], [ 347935.734514028707054, 258110.394270994089311 ], [ 347943.752300001680851, 258116.634399998933077 ], [ 347945.321178113168571, 258118.354292556585278 ], [ 347946.601352399564348, 258120.298659480555216 ], [ 347947.561231082188897, 258122.419518234266434 ], [ 347948.177126546564978, 258124.664530865731649 ], [ 347948.433839898847509, 258126.978295588720357 ], [ 347948.325036039517727, 258129.303713972331025 ], [ 347947.853399999439716, 258131.583399999886751 ], [ 347946.226419083483052, 258144.941027137683704 ], [ 347945.006010177487042, 258158.341917845216813 ], [ 347944.193300001323223, 258171.773699998855591 ], [ 347942.904228355211671, 258190.970647526963148 ], [ 347942.162027923448477, 258210.196506119624246 ], [ 347941.967299997806549, 258229.435699999332428 ], [ 347932.419100001454353, 258240.470300000160933 ], [ 347927.648999996483326, 258248.505699999630451 ], [ 347928.897900000214577, 258254.725000001490116 ], [ 347933.458599999547005, 258262.041700001806021 ], [ 347949.597999997437, 258270.993299998342991 ], [ 347994.955200001597404, 258280.356100000441074 ], [ 347995.992200002074242, 258276.681699998676777 ], [ 347957.047600001096725, 258269.079900000244379 ], [ 347948.537100002169609, 258266.471099998801947 ], [ 347941.322300001978874, 258261.752500001341105 ], [ 347937.086499996483326, 258257.904599998146296 ], [ 347933.723200000822544, 258251.51969999819994 ], [ 347937.186999998986721, 258244.763000000268221 ], [ 347942.780100002884865, 258238.446600001305342 ], [ 347948.806100003421307, 258231.285500001162291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "A9-824-T016", "PARCEL_NAM": "11-C", "ACRE": "1.03", "LONGITUDE": -65.03447882, "LATITUDE": 18.35331836, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 402.13448245000001, "SHAPE_Area": 5453.2791561900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347775.150700002908707, 258065.527800001204014 ], [ 347786.5912000015378, 258071.022700000554323 ], [ 347790.123334579693619, 258071.89427739623352 ], [ 347793.454037544433959, 258073.357848233368713 ], [ 347796.484907181700692, 258075.37017302744789 ], [ 347799.126400001347065, 258077.871800001710653 ], [ 347804.707599997520447, 258085.305799998342991 ], [ 347808.645700000226498, 258096.314899999648333 ], [ 347811.750399999320507, 258110.483600001782179 ], [ 347819.781199999153614, 258114.348999999463558 ], [ 347838.200499996542931, 258129.276299998164177 ], [ 347844.575499996542931, 258138.194400001317263 ], [ 347852.58110000193119, 258145.014899998903275 ], [ 347862.14360000193119, 258158.392099998891354 ], [ 347863.624899998307228, 258173.813999999314547 ], [ 347863.445900000631809, 258194.824599999934435 ], [ 347888.679200001060963, 258190.334199998527765 ], [ 347893.177100002765656, 258163.875799998641014 ], [ 347884.975000001490116, 258136.623700000345707 ], [ 347844.229099996387959, 258076.034000001847744 ], [ 347808.774899996817112, 258052.750599998980761 ], [ 347775.150700002908707, 258065.527800001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "D9-9123-T016", "PARCEL_NAM": "11-7", "ACRE": "2.67", "LONGITUDE": -65.03424697, "LATITUDE": 18.35482192, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 396.46792558099997, "SHAPE_Area": 6125.67919205 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347901.248400002717972, 258303.820900000631809 ], [ 347933.458599999547005, 258262.041700001806021 ], [ 347928.897900000214577, 258254.725000001490116 ], [ 347927.648999996483326, 258248.505699999630451 ], [ 347932.419100001454353, 258240.470300000160933 ], [ 347940.315200001001358, 258231.344900000840425 ], [ 347909.530900001525879, 258249.632599998265505 ], [ 347835.383500002324581, 258254.24439999833703 ], [ 347835.325833403738216, 258258.630782346561318 ], [ 347835.724399998784065, 258262.999400001019239 ], [ 347833.859787388821132, 258268.697907253314042 ], [ 347831.306801191589329, 258274.123036428383784 ], [ 347828.104400001466274, 258279.19200000166893 ], [ 347827.166000731172971, 258287.512573838495882 ], [ 347826.51690000295639, 258295.860700000077486 ], [ 347819.992413498519454, 258304.686795663903467 ], [ 347813.123419150942937, 258313.247508570319042 ], [ 347805.920699998736382, 258321.529399998486042 ], [ 347803.469400003552437, 258325.309000000357628 ], [ 347801.822599999606609, 258329.30629999935627 ], [ 347802.601899996399879, 258332.479100000113249 ], [ 347805.821800000965595, 258333.138799998909235 ], [ 347833.277800001204014, 258328.508299998939037 ], [ 347840.4341000020504, 258326.60869999974966 ], [ 347840.965823578822892, 258324.814860839571338 ], [ 347841.797019343648572, 258323.138644118735101 ], [ 347842.903107361868024, 258321.629618542181561 ], [ 347844.25137864658609, 258320.332408675807528 ], [ 347845.80196242191596, 258319.285375318868319 ], [ 347847.509005172061734, 258318.519481106952298 ], [ 347849.322026611713227, 258318.057374891941436 ], [ 347851.187412477505859, 258317.912721975124441 ], [ 347853.049999997019768, 258318.089800000190735 ], [ 347856.214154678222258, 258318.175314384454396 ], [ 347859.361859174096026, 258317.841931776987622 ], [ 347862.437899999320507, 258317.095499999821186 ], [ 347864.853269422019366, 258316.190956931677647 ], [ 347867.1570999994874, 258315.031399998813868 ], [ 347867.349445038067643, 258313.639880462171277 ], [ 347867.77600665204227, 258312.301460339687765 ], [ 347868.424317155731842, 258311.055259422661038 ], [ 347869.27542751270812, 258309.937702088587685 ], [ 347870.304461184714455, 258308.981452677224297 ], [ 347871.481341231032275, 258308.2144607664668 ], [ 347872.771669407957233, 258307.659144252509577 ], [ 347874.137731571565382, 258307.331734112318372 ], [ 347875.539599999785423, 258307.241799999028444 ], [ 347883.550599999725819, 258305.640700001269579 ], [ 347892.369927949330304, 258304.443207814940251 ], [ 347901.248400002717972, 258303.820900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "A9-818-T016", "PARCEL_NAM": "11-3", "ACRE": "1.98", "LONGITUDE": -65.03483661, "LATITUDE": 18.35237825, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 508.88218353100001, "SHAPE_Area": 9649.0063901100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347864.509499996900558, 257978.653900001198053 ], [ 347849.935199998319149, 257932.890599999576807 ], [ 347801.540299996733665, 257974.473499998450279 ], [ 347700.081200003623962, 258061.651399999856949 ], [ 347705.946000002324581, 258059.910100001841784 ], [ 347720.401000000536442, 258049.027399998158216 ], [ 347733.568599998950958, 258039.113899998366833 ], [ 347741.823600001633167, 258046.257599998265505 ], [ 347746.355615887441672, 258050.163185036595678 ], [ 347751.217200079932809, 258053.649983226932818 ], [ 347756.369778336782474, 258056.690328567172401 ], [ 347761.772467523056548, 258059.260097435646458 ], [ 347767.382399998605251, 258061.338899999856949 ], [ 347775.150700002908707, 258065.527800001204014 ], [ 347808.774899996817112, 258052.750599998980761 ], [ 347837.792199999094009, 258071.806699998676777 ], [ 347864.021799996495247, 257997.314899999648333 ], [ 347862.840084959054366, 257996.728856291767443 ], [ 347861.762813240173273, 257995.967683971626684 ], [ 347860.815728466084693, 257995.049572819349123 ], [ 347860.021463177865371, 257993.996462991635781 ], [ 347859.398997980286367, 257992.833520716580097 ], [ 347858.963207961118314, 257991.588536894822028 ], [ 347858.724507220322266, 257990.291262978600571 ], [ 347858.68860000371933, 257988.972699999809265 ], [ 347858.614938348007854, 257987.389000553055666 ], [ 347858.794569190824404, 257985.813798109738855 ], [ 347859.222902349720243, 257984.287344480515458 ], [ 347859.888992447289638, 257982.848645777150523 ], [ 347860.775818603055086, 257981.534465672797523 ], [ 347861.860719375195913, 257980.378385964577319 ], [ 347863.115971837891266, 257979.409948443586472 ], [ 347864.509499996900558, 257978.653900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "A9-818-T016", "PARCEL_NAM": "11-4", "ACRE": "1.3", "LONGITUDE": -65.03404418, "LATITUDE": 18.35187504, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.12384209599998, "SHAPE_Area": 4337.65211043 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347935.754399999976158, 257940.44029999896884 ], [ 347931.351199999451637, 257939.333200000226498 ], [ 347884.506099998950958, 257925.724399998784065 ], [ 347859.934500001370907, 257918.923599999397993 ], [ 347862.461199998855591, 257922.127700001001358 ], [ 347849.935199998319149, 257932.890599999576807 ], [ 347864.509499996900558, 257978.653900001198053 ], [ 347865.685024689300917, 257978.320999987539835 ], [ 347866.897677629254758, 257978.172159237787127 ], [ 347868.118816603615414, 257978.210893290786771 ], [ 347869.319598963716999, 257978.436287268908927 ], [ 347870.471662873052992, 257978.843017487088218 ], [ 347871.547797198989429, 257979.42147719534114 ], [ 347872.522584224992897, 257980.158003485121299 ], [ 347873.373000003397465, 257981.035199999809265 ], [ 347874.573629272985272, 257981.853471153910505 ], [ 347875.870800286415033, 257982.508013502869289 ], [ 347877.242314220231492, 257982.987625694047892 ], [ 347878.664700001478195, 257983.284099999815226 ], [ 347883.709052814461756, 257984.813644790818216 ], [ 347888.534131434629671, 257986.93581794083002 ], [ 347893.070596172881778, 257989.62012236614828 ], [ 347897.253254919603933, 257992.827982771123061 ], [ 347901.021999999880791, 257996.513300001621246 ], [ 347904.451989880180918, 258000.420161494752392 ], [ 347907.325975415587891, 258004.752436237613438 ], [ 347909.591841421031859, 258009.431565275270259 ], [ 347911.208499997854233, 258014.372699998319149 ], [ 347935.754399999976158, 257940.44029999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "A9-818-T016", "PARCEL_NAM": "11-5", "ACRE": "1.13", "LONGITUDE": -65.03364282, "LATITUDE": 18.35233093, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.39176769400001, "SHAPE_Area": 3524.48759466 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347942.411200001835823, 257942.114100001752377 ], [ 347935.754399999976158, 257940.44029999896884 ], [ 347911.208499997854233, 258014.372699998319149 ], [ 347913.57186061271932, 258025.295532634831034 ], [ 347915.337503721297253, 258036.330760344950249 ], [ 347916.500200003385544, 258047.445700000971556 ], [ 347917.113182363798842, 258051.711766168737086 ], [ 347918.256965002219658, 258055.867103603639407 ], [ 347919.913443904719315, 258059.845940816623624 ], [ 347922.056400001049042, 258063.585299998521805 ], [ 347966.501999996602535, 258034.108800001442432 ], [ 347960.72240000218153, 258030.297899998724461 ], [ 347959.240129628917202, 258028.489335666061379 ], [ 347958.042291004850995, 258026.481049572001211 ], [ 347957.155344694270752, 258024.317405274312478 ], [ 347956.598883569822647, 258022.046198233583709 ], [ 347956.385200001299381, 258019.717599999159575 ], [ 347954.856899999082088, 258013.717199999839067 ], [ 347952.453299999237061, 258004.754099998623133 ], [ 347951.887199997901917, 258002.718100000172853 ], [ 347951.453000001609325, 258001.122999999672174 ], [ 347951.416599996387959, 258000.982299998402596 ], [ 347951.268399998545647, 258000.401399999856949 ], [ 347950.209799997508526, 257995.724399998784065 ], [ 347950.093400001525879, 257995.136300001293421 ], [ 347950.067100003361702, 257995.001200001686811 ], [ 347948.935099996626377, 257987.310400001704693 ], [ 347948.53654782747617, 257981.99058348746621 ], [ 347948.447599999606609, 257976.656599998474121 ], [ 347946.209299996495247, 257969.905200000852346 ], [ 347945.867899999022484, 257952.248700000345707 ], [ 347946.079599998891354, 257943.35869999974966 ], [ 347946.229999996721745, 257943.074299998581409 ], [ 347942.411200001835823, 257942.114100001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "A9-824-T016", "PARCEL_NAM": "11-2", "ACRE": "1.54", "LONGITUDE": -65.03417819000001, "LATITUDE": 18.35277812, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.121661614, "SHAPE_Area": 6245.5540757500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347916.500200003385544, 258069.802999999374151 ], [ 347913.417841490823776, 258063.180003494693665 ], [ 347911.028239291801583, 258056.276756575214677 ], [ 347909.35639999806881, 258049.165500000119209 ], [ 347907.101325710129458, 258036.383556698798202 ], [ 347905.520000003278255, 258023.500900000333786 ], [ 347904.470663085521664, 258018.424906734901015 ], [ 347902.744223703164607, 258013.537553396279691 ], [ 347900.372429279203061, 258008.928713324392447 ], [ 347897.398894643876702, 258004.683138290274655 ], [ 347893.878300003707409, 258000.878899998962879 ], [ 347891.507477111183107, 257998.831451326521346 ], [ 347888.843709499749821, 257997.183061395102413 ], [ 347885.953521678165998, 257995.97489683268941 ], [ 347882.909092737536412, 257995.237130149034783 ], [ 347879.786453762208112, 257994.988186211965512 ], [ 347876.663589041505475, 257995.234282107761828 ], [ 347873.61848850233946, 257995.969271876703715 ], [ 347870.727200001478195, 257997.174800001084805 ], [ 347869.430830717901699, 257997.639230562432203 ], [ 347868.076636030978989, 257997.889082149486057 ], [ 347866.699885645415634, 257997.917847432225244 ], [ 347865.336436724173836, 257997.724777225172147 ], [ 347864.021799996495247, 257997.314899999648333 ], [ 347837.792199999094009, 258071.806699998676777 ], [ 347844.229099996387959, 258076.034000001847744 ], [ 347884.975000001490116, 258136.623700000345707 ], [ 347899.050899997353554, 258116.303700000047684 ], [ 347888.044200003147125, 258091.538600001484156 ], [ 347916.500200003385544, 258069.802999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "A9-824-T016", "PARCEL_NAM": "11-B", "ACRE": ".76", "LONGITUDE": -65.03382183, "LATITUDE": 18.35332915, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 433.52691785899998, "SHAPE_Area": 2567.0985447200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347948.416400000452995, 258128.309900000691414 ], [ 347948.383994475123473, 258126.148070147726685 ], [ 347948.037369348108768, 258124.013963905628771 ], [ 347947.383902874833439, 258121.953007816948229 ], [ 347946.437504729547072, 258120.009071351465536 ], [ 347945.218319924082607, 258118.223533101729117 ], [ 347943.752300001680851, 258116.634399998933077 ], [ 347935.734514028707054, 258110.394270994089311 ], [ 347927.275758097064681, 258104.766345088777598 ], [ 347918.422679477487691, 258099.781658452557167 ], [ 347909.22410000115633, 258095.467700000852346 ], [ 347908.387545166478958, 258095.488292886089766 ], [ 347907.564986439538188, 258095.642062840983272 ], [ 347906.777487987070344, 258095.925072108977474 ], [ 347906.045216149068438, 258096.330073360237293 ], [ 347905.386923016456421, 258096.846695281856228 ], [ 347904.819466226210352, 258097.461708167567849 ], [ 347904.357377269130666, 258098.159362705337116 ], [ 347904.012489365763031, 258098.921793287387118 ], [ 347903.79363444034243, 258099.729475514468504 ], [ 347903.706416951899882, 258100.561726178653771 ], [ 347903.753070374659728, 258101.397232921008253 ], [ 347903.9324000030756, 258102.214600000530481 ], [ 347905.861614121706225, 258107.695209206314757 ], [ 347908.477783865295351, 258112.883137526427163 ], [ 347911.737700000405312, 258117.692699998617172 ], [ 347913.480425629066303, 258119.39617293610354 ], [ 347915.045000001788139, 258121.264600001275539 ], [ 347915.956848697387613, 258122.781917398126097 ], [ 347916.624812196998391, 258124.421290720347315 ], [ 347917.033036644745152, 258126.143810074863723 ], [ 347917.171832991065457, 258127.908592129591852 ], [ 347917.037906958081294, 258129.673750463611213 ], [ 347916.634437228552997, 258131.397389725112589 ], [ 347915.971000000834465, 258133.038600001484156 ], [ 347914.942954006954096, 258134.292225700773997 ], [ 347913.718078781210352, 258135.354363470018143 ], [ 347912.331515514932107, 258136.194540991797112 ], [ 347910.823044166201726, 258136.788653901545331 ], [ 347909.235942188242916, 258137.119657332077622 ], [ 347907.615742916357704, 258137.178054924443131 ], [ 347906.008929234230891, 258136.962171274499269 ], [ 347904.461599998176098, 258136.478199999779463 ], [ 347903.31367056875024, 258135.533708713424858 ], [ 347902.33159725664882, 258134.4177616830857 ], [ 347901.540669705136679, 258133.15909597161226 ], [ 347900.96125531004509, 258131.790123830316588 ], [ 347900.608274732716382, 258130.346098042151425 ], [ 347900.490817674435675, 258128.864204117329791 ], [ 347900.611908804508857, 258127.38260271915351 ], [ 347900.968429871660192, 258125.939446977863554 ], [ 347901.55120000243187, 258124.571899998933077 ], [ 347902.125083534687292, 258122.68677096744068 ], [ 347902.428529217722826, 258120.739728468819521 ], [ 347902.455522149975877, 258118.769366787426407 ], [ 347902.205527277372312, 258116.81474244047422 ], [ 347901.683499999344349, 258114.914599999785423 ], [ 347898.406887564284261, 258108.502541182824643 ], [ 347895.730400003492832, 258101.817699998617172 ], [ 347894.96367429709062, 258100.101111043768469 ], [ 347894.497248980682343, 258098.279849565267796 ], [ 347894.344470238022041, 258096.406028708122903 ], [ 347894.509709643723909, 258094.533265539008426 ], [ 347894.988239076687023, 258092.71514686010778 ], [ 347895.766366008901969, 258091.003695889085066 ], [ 347896.821825300401542, 258089.447883679065853 ], [ 347898.124416288745124, 258088.092227872548392 ], [ 347899.636866943677887, 258086.97551888396265 ], [ 347901.315900360001251, 258086.129709960077889 ], [ 347903.113473072822671, 258085.579002877348103 ], [ 347904.978149761853274, 258085.339155437919544 ], [ 347906.856575009529479, 258085.417030579672428 ], [ 347908.695000000298023, 258085.810400001704693 ], [ 347936.343999996781349, 258100.097899999469519 ], [ 347937.058691635553259, 258100.236318464885699 ], [ 347937.786425901285838, 258100.254936967074173 ], [ 347938.507260566751938, 258100.153245300083654 ], [ 347939.201442475838121, 258099.934030138101662 ], [ 347939.849948842311278, 258099.60329867186374 ], [ 347940.435008534812368, 258099.17011399261537 ], [ 347940.940589061996434, 258098.646346734545659 ], [ 347941.35283591382904, 258098.046349781827303 ], [ 347941.660452219017316, 258097.386564954096684 ], [ 347941.855008315003943, 258096.685072448337451 ], [ 347941.931172747747041, 258095.961095384263899 ], [ 347941.886858370096888, 258095.234473029762739 ], [ 347941.723279536643531, 258094.52511714209686 ], [ 347941.444918826280627, 258093.852466322568944 ], [ 347941.059404205298051, 258093.234953337145271 ], [ 347940.577299997210503, 258092.689500000327826 ], [ 347934.211833021428902, 258088.170066022343235 ], [ 347928.00959999859333, 258083.429099999368191 ], [ 347923.625568759336602, 258079.369066012150142 ], [ 347919.769882316642907, 258074.804278181429254 ], [ 347916.500200003385544, 258069.802999999374151 ], [ 347888.044200003147125, 258091.538600001484156 ], [ 347899.050899997353554, 258116.303700000047684 ], [ 347884.975000001490116, 258136.623700000345707 ], [ 347893.177100002765656, 258163.875799998641014 ], [ 347948.416400000452995, 258128.309900000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301019700", "MAP": "D9-9111-T016", "PARCEL_NAM": "11-1", "ACRE": "1.37", "LONGITUDE": -65.03393515, "LATITUDE": 18.35410382, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.79830630800001, "SHAPE_Area": 7396.9381789099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347909.530900001525879, 258249.632599998265505 ], [ 347940.315200001001358, 258231.344900000840425 ], [ 347941.967299997806549, 258229.435699999332428 ], [ 347942.162027923448477, 258210.196506119624246 ], [ 347942.904228355211671, 258190.970647526963148 ], [ 347944.193300001323223, 258171.773699998855591 ], [ 347945.006010177487042, 258158.341917845216813 ], [ 347946.226419083483052, 258144.941027137683704 ], [ 347947.853399999439716, 258131.583399999886751 ], [ 347948.226904973969795, 258129.962473675404908 ], [ 347948.416400000452995, 258128.309900000691414 ], [ 347893.177100002765656, 258163.875799998641014 ], [ 347888.679200001060963, 258190.334199998527765 ], [ 347863.445900000631809, 258194.824599999934435 ], [ 347863.373199999332428, 258203.365100000053644 ], [ 347862.93469999730587, 258205.803700000047684 ], [ 347857.44598429906182, 258215.685425295407185 ], [ 347851.384498342755251, 258225.226540682517225 ], [ 347844.771308852359653, 258234.393885968485847 ], [ 347837.629399999976158, 258243.155600000172853 ], [ 347836.132678611320443, 258248.624297203321476 ], [ 347835.383500002324581, 258254.24439999833703 ], [ 347909.530900001525879, 258249.632599998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95226554, "LATITUDE": 18.33718659, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.427115231899997, "SHAPE_Area": 82.2808217372 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356552.502199999988079, 256409.776099998503923 ], [ 356552.713899999856949, 256406.283599998801947 ], [ 356552.713899999856949, 256402.261900000274181 ], [ 356552.290600001811981, 256397.711100000888109 ], [ 356551.338100001215935, 256396.229400001466274 ], [ 356548.903899997472763, 256393.371899999678135 ], [ 356547.633900001645088, 256392.10190000012517 ], [ 356546.575499996542931, 256392.631099998950958 ], [ 356545.728900000452995, 256394.43019999936223 ], [ 356545.093900002539158, 256396.970300000160933 ], [ 356546.152199998497963, 256401.838599998503923 ], [ 356547.951399996876717, 256405.11939999833703 ], [ 356552.502199999988079, 256409.776099998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105304010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94037384000001, "LATITUDE": 18.33701918, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.063858224299999, "SHAPE_Area": 56.000467391800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357810.3108000010252, 256379.409400001168251 ], [ 357804.896999999880791, 256392.381999999284744 ], [ 357799.432599999010563, 256400.495999999344349 ], [ 357803.312799997627735, 256398.852299999445677 ], [ 357808.485799998044968, 256394.612300001084805 ], [ 357809.843500003218651, 256385.556699998676777 ], [ 357810.3108000010252, 256379.409400001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105304010800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94037447, "LATITUDE": 18.3367409, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.929958744999993, "SHAPE_Area": 50.1498487498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357805.582800000905991, 256345.602400001138449 ], [ 357803.303300000727177, 256345.439599998295307 ], [ 357803.44820000231266, 256354.132599998265505 ], [ 357804.655000001192093, 256358.021099999547005 ], [ 357806.056100003421307, 256362.535900000482798 ], [ 357808.808899998664856, 256375.285700000822544 ], [ 357810.669299997389317, 256376.430399999022484 ], [ 357810.350599996745586, 256373.847500000149012 ], [ 357809.442100003361702, 256370.271899998188019 ], [ 357808.248499996960163, 256366.012200001627207 ], [ 357808.083499997854233, 256362.918299999088049 ], [ 357807.493500001728535, 256360.885200001299381 ], [ 357805.694600000977516, 256356.204700000584126 ], [ 357804.620700001716614, 256351.542899999767542 ], [ 357804.727200001478195, 256346.921599999070168 ], [ 357805.582800000905991, 256345.602400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604021800", "MAP": "A9-822-T016", "PARCEL_NAM": "41A-2B", "ACRE": ".51", "LONGITUDE": -64.9676553, "LATITUDE": 18.3496368, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.47902387200003, "SHAPE_Area": 1936.58617035 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354899.170000001788139, 257716.150800000876188 ], [ 354905.132600001990795, 257815.099199999123812 ], [ 354910.665399998426437, 257814.738400001078844 ], [ 354913.311200000345707, 257814.738400001078844 ], [ 354913.046599999070168, 257822.411299999803305 ], [ 354922.916500002145767, 257821.794399999082088 ], [ 354919.026600003242493, 257732.353000000119209 ], [ 354918.846199996769428, 257710.702199999243021 ], [ 354899.170000001788139, 257716.150800000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302311600", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 42B", "ACRE": "1,012 sq ft", "LONGITUDE": -64.9349879, "LATITUDE": 18.34325592, "OBJECTID_1": 10531, "PARCEL_NO_": "105302311600", "Tax_Legal_": "VESTER GADE 42-B QUEENS QTR", "Name": "LARCEHVEAUX, OLGA M", "Address": "PO Box 302074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4900, "Improved_V": 8300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.431032435299997, "SHAPE_Area": 159.454023396 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358363.974899999797344, 257081.405799999833107 ], [ 358360.144299998879433, 257085.502399999648333 ], [ 358373.781400002539158, 257095.765799999237061 ], [ 358373.824799999594688, 257095.801100000739098 ], [ 358378.181199997663498, 257089.386999998241663 ], [ 358379.261200003325939, 257087.682500001043081 ], [ 358366.55460000038147, 257078.230799999088049 ], [ 358363.974899999797344, 257081.405799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302311400", "MAP": null, "PARCEL_NAM": "VESTER GADE 41A", "ACRE": "2,158 sq ft", "LONGITUDE": -64.93507016, "LATITUDE": 18.34329541, "OBJECTID_1": 10530, "PARCEL_NO_": "105302311400", "Tax_Legal_": "VESTER GADE 41A QUEENS QTR", "Name": "WHITE, AGNES", "Address": "394-180 Hidden Valley", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11300, "Improved_V": 28900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 65.825782005799994, "SHAPE_Area": 195.79745961899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358362.533399999141693, 257087.300400000065565 ], [ 358353.70610000193119, 257080.656899999827147 ], [ 358353.253799997270107, 257081.161400001496077 ], [ 358348.954899996519089, 257087.789799999445677 ], [ 358359.950499996542931, 257095.031599998474121 ], [ 358369.897699996829033, 257101.582899998873472 ], [ 358373.824799999594688, 257095.801100000739098 ], [ 358373.781400002539158, 257095.765799999237061 ], [ 358364.532999999821186, 257088.805300001055002 ], [ 358362.533399999141693, 257087.300400000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302312800", "MAP": "D9-6720-T000", "PARCEL_NAM": "VESTER GADE 51-A", "ACRE": "315 sq ft", "LONGITUDE": -64.93452612, "LATITUDE": 18.34249803, "OBJECTID_1": 10543, "PARCEL_NO_": "105302312800", "Tax_Legal_": "VESTER GADE 51 QUEENS QUARTER", "Name": "JACKSON, CLEVIA ROBLES", "Address": "50 VESTER GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8100, "Improved_V": 28700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.200729797099999, "SHAPE_Area": 14.5139915116 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358422.456000000238419, 256998.530499998480082 ], [ 358420.072700001299381, 256999.381799999624491 ], [ 358417.98589999973774, 257005.542500000447035 ], [ 358416.463600002229214, 257010.03660000115633 ], [ 358415.936899997293949, 257011.591400001198053 ], [ 358415.701399996876717, 257012.13060000166297 ], [ 358419.964400000870228, 257003.993000000715256 ], [ 358422.456000000238419, 256998.530499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302312300", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 46", "ACRE": "847 sq ft", "LONGITUDE": -64.9347256, "LATITUDE": 18.34289157, "OBJECTID_1": 10538, "PARCEL_NO_": "105302312300", "Tax_Legal_": "VESTER GADE 46 QUEENS QUARTER", "Name": "MARTIN, WALTER", "Address": "P.O.BOX 3876", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4500, "Improved_V": 13700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 59.981454050499998, "SHAPE_Area": 222.686336192 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358408.877499997615814, 257046.551399998366833 ], [ 358397.656700000166893, 257036.953699998557568 ], [ 358395.247800000011921, 257039.046599999070168 ], [ 358394.733599998056889, 257039.493299998342991 ], [ 358393.031999997794628, 257040.932399999350309 ], [ 358389.048100002110004, 257044.301899999380112 ], [ 358386.627999998629093, 257046.482500001788139 ], [ 358390.744099996984005, 257049.939399998635054 ], [ 358391.796700000762939, 257050.76069999858737 ], [ 358392.706600002944469, 257051.470600001513958 ], [ 358399.580200001597404, 257056.833500001579523 ], [ 358399.641699999570847, 257056.959800001233816 ], [ 358400.688699997961521, 257055.720199998468161 ], [ 358401.864500001072884, 257054.328200001269579 ], [ 358404.879600003361702, 257050.96510000154376 ], [ 358406.749200001358986, 257048.879799999296665 ], [ 358408.877499997615814, 257046.551399998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302310900", "MAP": null, "PARCEL_NAM": "VESTER GADE 38", "ACRE": null, "LONGITUDE": -64.93530183, "LATITUDE": 18.34371684, "OBJECTID_1": 10525, "PARCEL_NO_": "105302310900", "Tax_Legal_": "VESTER GADE 38 QUEENS QUARTER", "Name": "MILLS, L & OTHERS", "Address": "PO Box 894", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16500, "Improved_V": 21600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.722106944999993, "SHAPE_Area": 288.90347069900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358323.621500000357628, 257138.351599998772144 ], [ 358340.452500000596046, 257149.123399998992682 ], [ 358340.515299998223782, 257149.236000001430511 ], [ 358343.848499998450279, 257143.990299999713898 ], [ 358346.3141999989748, 257138.522100001573563 ], [ 358347.98589999973774, 257135.39809999987483 ], [ 358347.878600001335144, 257135.215300001204014 ], [ 358332.647900000214577, 257126.408399999141693 ], [ 358331.886900000274181, 257128.271499998867512 ], [ 358323.621500000357628, 257138.351599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302311100", "MAP": null, "PARCEL_NAM": "VESTER GADE 39A", "ACRE": null, "LONGITUDE": -64.93520034, "LATITUDE": 18.34360302, "OBJECTID_1": 10527, "PARCEL_NO_": "105302311100", "Tax_Legal_": "VESTER GADE 39A QUEENS QUARTER", "Name": "SHULTERBRANDT, ERNEST", "Address": "4436 Blue Ridge Dr", "City": "Doylestown", "State": "Pennsylvania", "Zip": 18902, "Country": "United States", "Land_Value": 9400, "Improved_V": 90800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.245461918399997, "SHAPE_Area": 193.71844185500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358346.289200000464916, 257114.968800000846386 ], [ 358337.996299996972084, 257129.500999998301268 ], [ 358347.878600001335144, 257135.215300001204014 ], [ 358347.98589999973774, 257135.39809999987483 ], [ 358352.05009999871254, 257127.803300000727177 ], [ 358356.1283999979496, 257122.348200000822544 ], [ 358356.764300003647804, 257121.313700001686811 ], [ 358346.289200000464916, 257114.968800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302311000", "MAP": null, "PARCEL_NAM": "VESTER GADE 39B", "ACRE": null, "LONGITUDE": -64.93527645, "LATITUDE": 18.34355716, "OBJECTID_1": 10526, "PARCEL_NO_": "105302311000", "Tax_Legal_": "VESTER GADE 39B QUEENS QTR", "Name": "ROSE, DELORES", "Address": "850 Columbus Ave", "City": "New York", "State": "New York", "Zip": 10025, "Country": "United States", "Land_Value": 6400, "Improved_V": 12200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.377561976199999, "SHAPE_Area": 122.51472334499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358346.289200000464916, 257114.968800000846386 ], [ 358339.099299997091293, 257110.613699998706579 ], [ 358332.647900000214577, 257126.408399999141693 ], [ 358337.996299996972084, 257129.500999998301268 ], [ 358346.289200000464916, 257114.968800000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302311700", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 42A", "ACRE": "874 sq ft", "LONGITUDE": -64.93494207000001, "LATITUDE": 18.34319612, "OBJECTID_1": 10532, "PARCEL_NO_": "105302311700", "Tax_Legal_": "VESTER GADE 42A QUARTER QUEENS", "Name": "LARCEHVEAUX, OLGA M", "Address": "PO Box 302074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 4200, "Improved_V": 22900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.211411688799998, "SHAPE_Area": 102.419967176 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358370.579999998211861, 257073.174499999731779 ], [ 358366.55460000038147, 257078.230799999088049 ], [ 358379.261200003325939, 257087.682500001043081 ], [ 358382.896300002932549, 257081.945199999958277 ], [ 358370.579999998211861, 257073.174499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302311800", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 42D", "ACRE": "1,512 sq ft", "LONGITUDE": -64.93504413, "LATITUDE": 18.34314875, "OBJECTID_1": 10533, "PARCEL_NO_": "105302311800", "Tax_Legal_": "VESTER GADE 42D QUEENS QUARTER", "Name": "LARCEHVEAUX, OLGA M", "Address": "PO Box 302074", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 7300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 36.5017918092, "SHAPE_Area": 81.683675533900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358366.55460000038147, 257078.230799999088049 ], [ 358370.579999998211861, 257073.174499999731779 ], [ 358364.375500001013279, 257068.756099998950958 ], [ 358358.13849999755621, 257075.712999999523163 ], [ 358357.586199998855591, 257076.329100001603365 ], [ 358363.974899999797344, 257081.405799999833107 ], [ 358366.55460000038147, 257078.230799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302312000", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 43A", "ACRE": "1,594 sq ft", "LONGITUDE": -64.93486952000001, "LATITUDE": 18.34312521, "OBJECTID_1": 10535, "PARCEL_NO_": "105302312000", "Tax_Legal_": "VESTER GADE 43A QUEENS QTR", "Name": "THOMAS, LUDRICK & EILEEN", "Address": "2B-27 MARIENDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 8400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.523370532199998, "SHAPE_Area": 166.49121577299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358391.252999998629093, 257069.440099999308586 ], [ 358383.497299998998642, 257063.086800001561642 ], [ 358378.610600002110004, 257068.911400001496077 ], [ 358373.368199996650219, 257075.160000000149012 ], [ 358382.896300002932549, 257081.945199999958277 ], [ 358383.902699999511242, 257080.356800001114607 ], [ 358386.8125, 257076.018699999898672 ], [ 358387.153800003230572, 257075.509799998253584 ], [ 358387.986400000751019, 257074.268500000238419 ], [ 358391.252999998629093, 257069.440099999308586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105304010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94143085, "LATITUDE": 18.33993447, "OBJECTID_1": 11306, "PARCEL_NO_": "105304010100", "Tax_Legal_": "GASVERKS 1B&47B-1,47B-3 CROWN PRINCE GADE", "Name": "Q CHARLOTTE HOTEL CORP", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 662500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.22465891967000001, "SHAPE_Area": 0.00070844506 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357692.043700002133846, 256713.713599998503923 ], [ 357691.941899999976158, 256713.709699999541044 ], [ 357691.936200000345707, 256713.723400000482798 ], [ 357692.043700002133846, 256713.713599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105304010200", "MAP": "C9-266-T81", "PARCEL_NAM": "47C-2", "ACRE": "0.22", "LONGITUDE": -64.93995508, "LATITUDE": 18.33955014, "OBJECTID_1": 11307, "PARCEL_NO_": "105304010200", "Tax_Legal_": "GASVERKS 1A&47B-2,POR.OF 47B-3,47C-1&2 CROWN PRINCE QTR.", "Name": "Q CHARLOTTE HOTEL CORP", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 720000, "Improved_V": 1859000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.725948559, "SHAPE_Area": 552.06677124500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357835.236000001430511, 256672.338300000876188 ], [ 357867.13400000333786, 256694.928700000047684 ], [ 357867.904799997806549, 256692.57660000026226 ], [ 357865.556000001728535, 256684.324799999594688 ], [ 357844.012100003659725, 256657.550599999725819 ], [ 357833.609200000762939, 256648.177400000393391 ], [ 357835.236000001430511, 256672.338300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105304010100", "MAP": "C9-266-T81", "PARCEL_NAM": "47B-3", "ACRE": "0.48", "LONGITUDE": -64.94026681, "LATITUDE": 18.33982966, "OBJECTID_1": 11306, "PARCEL_NO_": "105304010100", "Tax_Legal_": "GASVERKS 1B&47B-1,47B-3 CROWN PRINCE GADE", "Name": "Q CHARLOTTE HOTEL CORP", "Address": "PO Box 6767", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 662500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 332.6773304, "SHAPE_Area": 5475.9961190399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357804.260799996554852, 256650.401399999856949 ], [ 357795.668600000441074, 256649.78770000115037 ], [ 357789.940499998629093, 256652.651799999177456 ], [ 357784.217000000178814, 256666.08729999884963 ], [ 357766.951300002634525, 256706.853700000792742 ], [ 357763.550300002098083, 256714.883499998599291 ], [ 357763.171499997377396, 256716.462099999189377 ], [ 357785.848999999463558, 256717.33839999884367 ], [ 357858.997400000691414, 256761.145899999886751 ], [ 357859.298600003123283, 256756.256400000303984 ], [ 357860.254199996590614, 256738.743500001728535 ], [ 357861.247500002384186, 256716.797899998724461 ], [ 357839.601099997758865, 256702.055300001055002 ], [ 357835.591099999845028, 256699.48930000141263 ], [ 357835.756599999964237, 256680.070099998265505 ], [ 357835.236000001430511, 256672.338300000876188 ], [ 357804.260799996554852, 256650.401399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702021400", "MAP": "A9-826-T016", "PARCEL_NAM": "64-31", "ACRE": "0.47", "LONGITUDE": -64.86889691, "LATITUDE": 18.34372706, "OBJECTID_1": 22379, "PARCEL_NO_": "105702021400", "Tax_Legal_": "SMITH BAY 64 REM & 64-30 EAST END QUARTER", "Name": "WYNDHAM ST THOMAS DEVELOPMENT COMPANY LLC", "Address": "6277 Sea Harbor Dr", "City": "Orlando", "State": "Florida", "Zip": 32821, "Country": "United States", "Land_Value": 2429629, "Improved_V": 6483060, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.68584076600001, "SHAPE_Area": 1870.7827028199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365385.981499999761581, 257205.403900001198053 ], [ 365366.210799999535084, 257179.511300001293421 ], [ 365356.64299999922514, 257166.767400000244379 ], [ 365324.95830000191927, 257191.228000000119209 ], [ 365351.003899998962879, 257226.840399999171495 ], [ 365385.981499999761581, 257205.403900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404044800", "MAP": "D9-9103-T016", "PARCEL_NAM": "55A", "ACRE": null, "LONGITUDE": -65.00412152, "LATITUDE": 18.35115367, "OBJECTID_1": 1940, "PARCEL_NO_": "102404044800", "Tax_Legal_": "FORTUNA 55 WEST END QTR", "Name": "ZOE BUILDING ENTERPRISES, INC", "Address": "PO Box 10805", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 184100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.628349859899998, "SHAPE_Area": 88.259795344799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351061.879000000655651, 257903.31529999896884 ], [ 351058.420299999415874, 257895.776700001209974 ], [ 351056.438199996948242, 257896.91160000115633 ], [ 351055.243787104322109, 257896.993693980912212 ], [ 351054.049444448028225, 257896.910584420984378 ], [ 351052.877913153846748, 257896.663853785954416 ], [ 351051.751500003039837, 257896.258200000971556 ], [ 351052.351007283199579, 257899.36461013823282 ], [ 351052.651900000870228, 257902.513999998569489 ], [ 351053.164400905603543, 257908.599853213410825 ], [ 351053.42230000346899, 257914.701799999922514 ], [ 351053.958726131066214, 257912.508640667627333 ], [ 351054.808037272188812, 257910.41666279186029 ], [ 351055.952217457641382, 257908.470242346433224 ], [ 351057.366995823686011, 257906.710667675652076 ], [ 351059.022361456532963, 257905.175263667304534 ], [ 351060.883199997246265, 257903.896600000560284 ], [ 351061.879000000655651, 257903.31529999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704043500", "MAP": "D9-9104-T016", "PARCEL_NAM": "11-7-3A", "ACRE": "0.31", "LONGITUDE": -64.87067596, "LATITUDE": 18.33449167, "OBJECTID_1": 23651, "PARCEL_NO_": "105704043500", "Tax_Legal_": "11-7-3A LANGMATH NO.5 RED HOOK QTR", "Name": "GREEN, RITA L.", "Address": "PO Box 9042", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 96400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.90365833, "SHAPE_Area": 923.04033960100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365198.927599996328354, 256181.147300001233816 ], [ 365168.704999998211861, 256149.817999999970198 ], [ 365157.02250000089407, 256164.357099998742342 ], [ 365172.659500002861023, 256195.456300001591444 ], [ 365198.927599996328354, 256181.147300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107402040100", "MAP": "D9-9109-TO16", "PARCEL_NAM": "26-A1-A", "ACRE": "0.04", "LONGITUDE": -64.89878121, "LATITUDE": 18.32349302, "OBJECTID_1": 33290, "PARCEL_NO_": "107402040100", "Tax_Legal_": "ESTATE BOLONGO 26-A1 FRENCHMAN'S BAY", "Name": "EL GISSMO ENTERPRISES INC", "Address": "PO Box 141", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 8310141, "Country": "United States", "Land_Value": 50800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.767321325099999, "SHAPE_Area": 232.79216752599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362203.015900000929832, 254922.962099999189377 ], [ 362207.726499997079372, 254938.707899998873472 ], [ 362230.831600002944469, 254933.356600001454353 ], [ 362230.854999996721745, 254930.61259999871254 ], [ 362228.067100003361702, 254929.846500001847744 ], [ 362203.015900000929832, 254922.962099999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024300", "MAP": "D9-9114-T016", "PARCEL_NAM": "4-5B", "ACRE": "0.50", "LONGITUDE": -64.88516073, "LATITUDE": 18.35019131, "OBJECTID_1": 6813, "PARCEL_NO_": "103104024300", "Tax_Legal_": "TABOR & HARMONY 4-5 EAST END QTR", "Name": "BLYDEN, BASIL&THELMA E.", "Address": "PO Box 306223", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 188200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.19531764800001, "SHAPE_Area": 1115.7050315900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363647.803000003099442, 257905.039000000804663 ], [ 363648.928800001740456, 257882.956799998879433 ], [ 363647.334200002253056, 257880.832800000905991 ], [ 363644.119699999690056, 257879.539900001138449 ], [ 363622.340300001204014, 257880.417100001126528 ], [ 363617.440200001001358, 257879.710999999195337 ], [ 363613.07490000128746, 257929.472300000488758 ], [ 363634.029899999499321, 257909.945999998599291 ], [ 363647.803000003099442, 257905.039000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104024300", "MAP": "D9-9114-T016", "PARCEL_NAM": "4-5A", "ACRE": ".56", "LONGITUDE": -64.88543739000001, "LATITUDE": 18.35020015, "OBJECTID_1": 6813, "PARCEL_NO_": "103104024300", "Tax_Legal_": "TABOR & HARMONY 4-5 EAST END QTR", "Name": "BLYDEN, BASIL&THELMA E.", "Address": "PO Box 306223", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 188200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.81067214500001, "SHAPE_Area": 1386.1384360899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363617.440200001001358, 257879.710999999195337 ], [ 363600.594999998807907, 257877.2837999984622 ], [ 363585.825900003314018, 257872.260800000280142 ], [ 363584.177000001072884, 257913.400499999523163 ], [ 363613.07490000128746, 257929.472300000488758 ], [ 363617.440200001001358, 257879.710999999195337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304020900", "MAP": "D9-6373-T98", "PARCEL_NAM": "12-4-1", "ACRE": "0.02", "LONGITUDE": -64.91682616, "LATITUDE": 18.36556175, "OBJECTID_1": 977, "PARCEL_NO_": "101304020900", "Tax_Legal_": "PETERBORG 12-4-1 & 12-7 REM. No.12 GREAT NORTHSIDE QTR.", "Name": "EMPIRE HOLDING CORPORATION", "Address": "PO Box 19492", "City": "Indianapolis", "State": "Indiana", "Zip": 46219, "Country": "United States", "Land_Value": 137800, "Improved_V": 557100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.973181963999998, "SHAPE_Area": 92.755769960400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360259.346100002527237, 259573.881400000303984 ], [ 360281.810199998319149, 259574.761900000274181 ], [ 360266.158900000154972, 259565.890299998223782 ], [ 360259.346100002527237, 259573.881400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304021400", "MAP": "D9-6373-T98", "PARCEL_NAM": "12-7-A", "ACRE": "0.02", "LONGITUDE": -64.91705218, "LATITUDE": 18.36559144, "OBJECTID_1": 982, "PARCEL_NO_": "101304021400", "Tax_Legal_": "PETERBORG 12-4 REM.&12-7-A No.12 GREAT NORTHSIDE QTR.", "Name": "WEBBE, KESHEMA & DENNY", "Address": "PO Box 8573", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 165000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.537731884300001, "SHAPE_Area": 74.121091501199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360259.346100002527237, 259573.881400000303984 ], [ 360220.546700000762939, 259572.360700000077486 ], [ 360255.681400001049042, 259577.558499999344349 ], [ 360259.346100002527237, 259573.881400000303984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303300600", "MAP": "D9-9101-T016", "PARCEL_NAM": "5-REM", "ACRE": "0.18", "LONGITUDE": -64.94419314, "LATITUDE": 18.33546594, "OBJECTID_1": 11253, "PARCEL_NO_": "105303300600", "Tax_Legal_": "5 REM HONDURAS\nNO.8C SOUTHSIDE QTR", "Name": "DANET JOSEPH, GAIL", "Address": "PO Box 302973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.55357992899999, "SHAPE_Area": 330.06337412099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357405.346100002527237, 256196.422600001096725 ], [ 357397.144199997186661, 256195.16950000077486 ], [ 357396.826499998569489, 256207.720300000160933 ], [ 357405.531300000846386, 256210.127999998629093 ], [ 357406.82769999653101, 256218.647599998861551 ], [ 357400.345499999821186, 256221.240499999374151 ], [ 357396.270900003612041, 256233.279100000858307 ], [ 357412.77139999717474, 256233.546000000089407 ], [ 357405.346100002527237, 256196.422600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303300600", "MAP": "D9-9101-T016", "PARCEL_NAM": "5P", "ACRE": null, "LONGITUDE": -64.94409304, "LATITUDE": 18.33527947, "OBJECTID_1": 11253, "PARCEL_NO_": "105303300600", "Tax_Legal_": "5 REM HONDURAS\nNO.8C SOUTHSIDE QTR", "Name": "DANET JOSEPH, GAIL", "Address": "PO Box 302973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.393141323800002, "SHAPE_Area": 74.3675153481 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357424.492499999701977, 256196.150199998170137 ], [ 357405.977899998426437, 256192.410100001841784 ], [ 357405.346100002527237, 256196.422600001096725 ], [ 357423.564099997282028, 256199.928199999034405 ], [ 357424.492499999701977, 256196.150199998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105303300600", "MAP": "D9-9101-T016", "PARCEL_NAM": "5N", "ACRE": "0.02", "LONGITUDE": -64.94389126, "LATITUDE": 18.33533922, "OBJECTID_1": 11253, "PARCEL_NO_": "105303300600", "Tax_Legal_": "5 REM HONDURAS\nNO.8C SOUTHSIDE QTR", "Name": "DANET JOSEPH, GAIL", "Address": "PO Box 302973", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 61.442414314700002, "SHAPE_Area": 128.998545949 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357423.722900003194809, 256200.166400000452995 ], [ 357432.769000001251698, 256202.00789999961853 ], [ 357441.434600003063679, 256214.046500001102686 ], [ 357443.968699999153614, 256200.557300001382828 ], [ 357424.651299998164177, 256196.388399999588728 ], [ 357423.722900003194809, 256200.166400000452995 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034900", "MAP": "A9-9129-T016", "PARCEL_NAM": "3J-3-3", "ACRE": "0.48", "LONGITUDE": -64.87930894, "LATITUDE": 18.32608776, "OBJECTID_1": 38002, "PARCEL_NO_": "107601034900", "Tax_Legal_": "3J-3 REM MARIENDAHL NO.3 REDHOOK QTR", "Name": "DRAGIN, JEAN", "Address": "6803 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 119500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.845085625, "SHAPE_Area": 1694.00553322 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364304.867399998009205, 255233.478799998760223 ], [ 364295.375500001013279, 255206.401599999517202 ], [ 364243.980800002813339, 255238.709100000560284 ], [ 364232.511900000274181, 255246.036899998784065 ], [ 364244.799099996685982, 255262.157999999821186 ], [ 364255.817699998617172, 255256.610800001770258 ], [ 364304.867399998009205, 255233.478799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601034900", "MAP": "A9-91290T016", "PARCEL_NAM": "3J-3-2", "ACRE": "0.24", "LONGITUDE": -64.87893787, "LATITUDE": 18.32589161, "OBJECTID_1": 38002, "PARCEL_NO_": "107601034900", "Tax_Legal_": "3J-3 REM MARIENDAHL NO.3 REDHOOK QTR", "Name": "DRAGIN, JEAN", "Address": "6803 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 119500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.31550923899999, "SHAPE_Area": 685.37730764100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364325.942100003361702, 255223.53999999910593 ], [ 364314.789899997413158, 255194.197399999946356 ], [ 364295.375500001013279, 255206.401599999517202 ], [ 364304.867399998009205, 255233.478799998760223 ], [ 364325.942100003361702, 255223.53999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103034600", "MAP": "D9-9130-T016", "PARCEL_NAM": "4-2-REM", "ACRE": "0.75", "LONGITUDE": -64.96533569, "LATITUDE": 18.36671044, "OBJECTID_1": 482, "PARCEL_NO_": "101103034600", "Tax_Legal_": "NELTJEBERG #4-2 E.PART LT.NORTHSIDE QTR.", "Name": "ESTATE OF GEORGE MOOLENAAR, SR", "Address": "PO Box 303441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 132600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.39794360900001, "SHAPE_Area": 2143.7633199299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355106.426100000739098, 259661.583200000226498 ], [ 355148.745099999010563, 259688.394000001251698 ], [ 355176.128899998962879, 259640.632100000977516 ], [ 355130.235600002110004, 259632.445999998599291 ], [ 355106.426100000739098, 259661.583200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803023300", "MAP": "D9-9134-016", "PARCEL_NAM": "106 REM", "ACRE": ".43", "LONGITUDE": -64.942353, "LATITUDE": 18.34562143, "OBJECTID_1": 4306, "PARCEL_NO_": "102803023300", "Tax_Legal_": "63 & 106 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "L & L INVESTMENTS REV. TRST.", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 168800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.86419705700001, "SHAPE_Area": 1829.7262053 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357613.396300002932549, 257330.746700000017881 ], [ 357566.0641999989748, 257309.359700001776218 ], [ 357559.542199999094009, 257330.037500001490116 ], [ 357584.997699998319149, 257355.627000000327826 ], [ 357599.367499999701977, 257372.632100000977516 ], [ 357604.943300001323223, 257380.699299998581409 ], [ 357607.317299999296665, 257385.995999999344349 ], [ 357607.616200000047684, 257392.271899998188019 ], [ 357619.455099999904633, 257381.029100000858307 ], [ 357598.708599999547005, 257355.31700000166893 ], [ 357613.396300002932549, 257330.746700000017881 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803023300", "MAP": "D9-9134-T016", "PARCEL_NAM": "106-2", "ACRE": ".29", "LONGITUDE": -64.94229081, "LATITUDE": 18.345329, "OBJECTID_1": 4306, "PARCEL_NO_": "102803023300", "Tax_Legal_": "63 & 106 SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "L & L INVESTMENTS REV. TRST.", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 168800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.80226915099999, "SHAPE_Area": 1251.8184414 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357572.146799996495247, 257291.192299999296665 ], [ 357566.0641999989748, 257309.359700001776218 ], [ 357613.396300002932549, 257330.746700000017881 ], [ 357627.339500002563, 257307.421999998390675 ], [ 357572.146799996495247, 257291.192299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "D9-2263-T83", "PARCEL_NAM": "59-4", "ACRE": null, "LONGITUDE": -64.89808962, "LATITUDE": 18.31033139, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 679.71029448399997, "SHAPE_Area": 7071.1807863200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362261.437899999320507, 253465.059300001710653 ], [ 362275.652099996805191, 253465.062899999320507 ], [ 362284.652199998497963, 253467.297400001436472 ], [ 362292.845299996435642, 253471.269900001585484 ], [ 362299.859200000762939, 253479.525100000202656 ], [ 362301.472999997437, 253486.787300001829863 ], [ 362301.348899997770786, 253491.938999999314547 ], [ 362299.782200001180172, 253497.657900001853704 ], [ 362309.98309999704361, 253509.690999999642372 ], [ 362319.38289999961853, 253504.308200001716614 ], [ 362347.243400000035763, 253519.359900001436472 ], [ 362351.375200003385544, 253517.773299999535084 ], [ 362359.010600000619888, 253515.228100001811981 ], [ 362367.920800000429153, 253512.3412000015378 ], [ 362367.022699996829033, 253506.872400000691414 ], [ 362368.100299999117851, 253499.593800000846386 ], [ 362373.145300000905991, 253493.396299999207258 ], [ 362372.005400002002716, 253471.490899998694658 ], [ 362371.583700001239777, 253463.34569999948144 ], [ 362364.467100001871586, 253446.82209999859333 ], [ 362316.776000000536442, 253460.364000000059605 ], [ 362269.816699996590614, 253411.064899999648333 ], [ 362245.508500002324581, 253439.048000000417233 ], [ 362248.882299996912479, 253441.811299998313189 ], [ 362261.473200000822544, 253448.321199998259544 ], [ 362242.290899999439716, 253468.826400000602007 ], [ 362173.475900001823902, 253521.517200000584126 ], [ 362168.525499999523163, 253517.472800001502037 ], [ 362155.149499997496605, 253529.25450000166893 ], [ 362151.974500000476837, 253543.012800000607967 ], [ 362163.880800001323223, 253547.246199999004602 ], [ 362167.584899999201298, 253539.308699999004602 ], [ 362183.46000000089407, 253519.993999999016523 ], [ 362239.300399996340275, 253477.501800000667572 ], [ 362247.502499997615814, 253472.474800001829863 ], [ 362254.013700000941753, 253470.042100001126528 ], [ 362254.103900000452995, 253469.987700000405312 ], [ 362256.199100002646446, 253467.361200001090765 ], [ 362261.437899999320507, 253465.059300001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "D9-9135-T016", "PARCEL_NAM": "59-REM", "ACRE": "3.63", "LONGITUDE": -64.89898756, "LATITUDE": 18.31113159, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1713.31516519, "SHAPE_Area": 15021.0654626 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362095.390399999916553, 253708.297200001776218 ], [ 362143.851899996399879, 253689.201400000602007 ], [ 362200.541900001466274, 253690.945700000971556 ], [ 362226.352200001478195, 253691.739799998700619 ], [ 362228.4341000020504, 253681.329999998211861 ], [ 362222.815600000321865, 253673.945799998939037 ], [ 362214.348200000822544, 253649.984000001102686 ], [ 362198.415399998426437, 253644.087499998509884 ], [ 362190.415299996733665, 253650.241399999707937 ], [ 362185.301100000739098, 253652.068199999630451 ], [ 362179.472999997437, 253659.819299999624491 ], [ 362177.225699998438358, 253658.856100000441074 ], [ 362175.138800002634525, 253662.227200001478195 ], [ 362164.54389999806881, 253656.929800000041723 ], [ 362153.734499998390675, 253665.953200001269579 ], [ 362129.395900003612041, 253683.274700000882149 ], [ 362126.989500001072884, 253681.777399998158216 ], [ 362111.748700000345707, 253672.364500001072884 ], [ 362125.637599997222424, 253651.157699998468161 ], [ 362136.071099996566772, 253656.942699998617172 ], [ 362145.598300002515316, 253660.967500001192093 ], [ 362162.465499997138977, 253646.217000000178814 ], [ 362185.285899996757507, 253603.552799999713898 ], [ 362184.955099999904633, 253589.331399999558926 ], [ 362183.301500000059605, 253560.888700000941753 ], [ 362187.931699998676777, 253546.667300000786781 ], [ 362192.151399999856949, 253534.397399999201298 ], [ 362192.109300002455711, 253534.374200001358986 ], [ 362192.191200003027916, 253534.281599998474121 ], [ 362202.509999997913837, 253521.052400000393391 ], [ 362237.170500002801418, 253486.127300001680851 ], [ 362254.103900000452995, 253469.987700000405312 ], [ 362247.683200001716614, 253472.338599998503923 ], [ 362239.481100000441074, 253477.365600001066923 ], [ 362183.46000000089407, 253519.993999999016523 ], [ 362167.584899999201298, 253539.308699999004602 ], [ 362163.880800001323223, 253547.246199999004602 ], [ 362151.974500000476837, 253543.012800000607967 ], [ 362155.149499997496605, 253529.25450000166893 ], [ 362175.52250000089407, 253511.262800000607967 ], [ 362161.76410000026226, 253508.087799999862909 ], [ 362175.52250000089407, 253464.166799999773502 ], [ 362192.720399998128414, 253453.848099999129772 ], [ 362209.653800003230572, 253438.502199999988079 ], [ 362227.480999998748302, 253421.833799999207258 ], [ 362230.821800000965595, 253420.026799999177456 ], [ 362236.536100000143051, 253411.840900000184774 ], [ 362269.605700001120567, 253410.844999998807907 ], [ 362316.776000000536442, 253460.364000000059605 ], [ 362364.467100001871586, 253446.82209999859333 ], [ 362371.583700001239777, 253463.34569999948144 ], [ 362373.145300000905991, 253493.396299999207258 ], [ 362379.008000001311302, 253483.595899999141693 ], [ 362380.825900003314018, 253471.59739999845624 ], [ 362377.917199999094009, 253467.234400000423193 ], [ 362379.735100001096725, 253460.689800001680851 ], [ 362378.644400000572205, 253457.053899999707937 ], [ 362378.280799999833107, 253453.418000001460314 ], [ 362386.299900002777576, 253437.764600001275539 ], [ 362383.108800001442432, 253433.305599998682737 ], [ 362382.36540000140667, 253425.911299999803305 ], [ 362372.46339999884367, 253421.422100000083447 ], [ 362368.463899999856949, 253422.512899998575449 ], [ 362361.919299997389317, 253425.05799999833107 ], [ 362355.011100001633167, 253428.693900000303984 ], [ 362346.023800000548363, 253432.790899999439716 ], [ 362341.162600003182888, 253435.495299998670816 ], [ 362333.090400002896786, 253436.484700001776218 ], [ 362325.856799997389317, 253433.68189999833703 ], [ 362325.848499998450279, 253433.674499999731779 ], [ 362323.454300001263618, 253431.761799998581409 ], [ 362320.290299996733665, 253425.845600001513958 ], [ 362320.27589999884367, 253425.825300000607967 ], [ 362316.107100002467632, 253423.240100000053644 ], [ 362314.726999998092651, 253414.591899998486042 ], [ 362309.888999998569489, 253414.974199999123812 ], [ 362309.883900001645088, 253414.962000001221895 ], [ 362308.308700002729893, 253411.161800000816584 ], [ 362309.13120000064373, 253409.268699999898672 ], [ 362304.472199998795986, 253408.332899998873472 ], [ 362299.018399998545647, 253408.332899998873472 ], [ 362289.928599998354912, 253411.968800000846386 ], [ 362290.292199999094009, 253408.332899998873472 ], [ 362294.655299998819828, 253404.333399999886751 ], [ 362295.018899999558926, 253399.970400001853704 ], [ 362293.564499996602535, 253396.334499999880791 ], [ 362288.256999999284744, 253398.543200001120567 ], [ 362285.017399996519089, 253400.205400001257658 ], [ 362282.598399996757507, 253400.185600001364946 ], [ 362276.47580000013113, 253401.061099998652935 ], [ 362264.477399997413158, 253398.879599999636412 ], [ 362250.297399997711182, 253400.333999998867512 ], [ 362246.297899998724461, 253397.425299998372793 ], [ 362241.571299999952316, 253397.061700001358986 ], [ 362237.208200000226498, 253402.151900000870228 ], [ 362231.754399999976158, 253409.060100000351667 ], [ 362220.846699997782707, 253417.786200001835823 ], [ 362200.119599997997284, 253436.633200000971556 ], [ 362174.947400003671646, 253457.026299998164177 ], [ 362095.390399999916553, 253708.297200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-408-T92", "PARCEL_NAM": "59-3", "ACRE": null, "LONGITUDE": -64.89786592, "LATITUDE": 18.31105661, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.255914797, "SHAPE_Area": 765.52593100299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362306.361100003123283, 253561.950199998915195 ], [ 362302.17679999768734, 253584.646999999880791 ], [ 362311.611000001430511, 253583.892299998551607 ], [ 362310.87950000166893, 253571.01799999922514 ], [ 362327.019199997186661, 253571.01799999922514 ], [ 362327.514799997210503, 253578.699999999254942 ], [ 362327.766400001943111, 253582.599899999797344 ], [ 362330.990000002086163, 253582.342000000178814 ], [ 362330.618600003421307, 253575.342099998146296 ], [ 362330.339599996805191, 253570.084499999880791 ], [ 362330.946800000965595, 253567.191500000655651 ], [ 362331.110299997031689, 253566.47749999910593 ], [ 362330.220799997448921, 253554.165500000119209 ], [ 362330.287000000476837, 253545.405999999493361 ], [ 362332.468599997460842, 253539.588599998503923 ], [ 362335.377300001680851, 253532.316799998283386 ], [ 362342.285499997437, 253524.317899998277426 ], [ 362347.243400000035763, 253519.359900001436472 ], [ 362339.199799999594688, 253515.014299999922514 ], [ 362337.98870000243187, 253516.715599998831749 ], [ 362314.895999997854233, 253560.658300001174212 ], [ 362312.202500000596046, 253564.668000001460314 ], [ 362306.361100003123283, 253561.950199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-408-T92", "PARCEL_NAM": "59AA", "ACRE": null, "LONGITUDE": -64.89820709, "LATITUDE": 18.31137533, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.72573913400001, "SHAPE_Area": 1355.16427032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362289.44709999859333, 253607.361600000411272 ], [ 362289.398100003600121, 253606.833799999207258 ], [ 362289.68299999833107, 253606.940600000321865 ], [ 362299.735699996352196, 253589.00279999896884 ], [ 362302.17679999768734, 253584.646999999880791 ], [ 362306.361100003123283, 253561.950199998915195 ], [ 362298.074100002646446, 253558.0945999994874 ], [ 362294.17059999704361, 253556.278400000184774 ], [ 362286.703900001943111, 253553.398299999535084 ], [ 362286.582599997520447, 253553.718100000172853 ], [ 362275.704499997198582, 253603.00899999961257 ], [ 362272.264899998903275, 253603.273600000888109 ], [ 362269.880800001323223, 253630.524599999189377 ], [ 362268.741400003433228, 253644.308499999344349 ], [ 362276.720100000500679, 253630.071400001645088 ], [ 362289.44709999859333, 253607.361600000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-331-T86", "PARCEL_NAM": "59-G", "ACRE": null, "LONGITUDE": -64.89884155, "LATITUDE": 18.31035759, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.889601836, "SHAPE_Area": 1180.18097119 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362175.154799997806549, 253511.516600001603365 ], [ 362168.525499999523163, 253517.472800001502037 ], [ 362173.475900001823902, 253521.517200000584126 ], [ 362242.267700001597404, 253468.931099999696016 ], [ 362261.473200000822544, 253448.321199998259544 ], [ 362248.882299996912479, 253441.811299998313189 ], [ 362207.871799997985363, 253482.49100000038743 ], [ 362189.681699998676777, 253501.011900000274181 ], [ 362175.154799997806549, 253511.516600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-331-T86", "PARCEL_NAM": "59-F", "ACRE": null, "LONGITUDE": -64.8989436, "LATITUDE": 18.31030388, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.31181489599999, "SHAPE_Area": 1160.45738235 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362248.882299996912479, 253441.811299998313189 ], [ 362239.952600002288818, 253434.535199999809265 ], [ 362212.832800000905991, 253461.655000001192093 ], [ 362187.366499997675419, 253478.853000000119209 ], [ 362175.52250000089407, 253511.262800000607967 ], [ 362189.681699998676777, 253501.011900000274181 ], [ 362207.871799997985363, 253482.49100000038743 ], [ 362248.882299996912479, 253441.811299998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-331-T86", "PARCEL_NAM": "59-H", "ACRE": null, "LONGITUDE": -64.89894604, "LATITUDE": 18.31013964, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 322.36331333300001, "SHAPE_Area": 2483.0277892899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362245.634999997913837, 253438.984099999070168 ], [ 362269.816699996590614, 253411.064899999648333 ], [ 362269.605700001120567, 253410.844999998807907 ], [ 362236.536100000143051, 253411.840900000184774 ], [ 362230.821800000965595, 253420.026799999177456 ], [ 362227.480999998748302, 253421.833799999207258 ], [ 362209.653800003230572, 253438.502199999988079 ], [ 362192.720399998128414, 253453.848099999129772 ], [ 362175.52250000089407, 253464.166799999773502 ], [ 362161.76410000026226, 253508.087799999862909 ], [ 362175.52250000089407, 253511.262800000607967 ], [ 362187.366499997675419, 253478.853000000119209 ], [ 362213.163500003516674, 253461.324299998581409 ], [ 362239.952600002288818, 253434.535199999809265 ], [ 362245.634999997913837, 253438.984099999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-408-T92", "PARCEL_NAM": "59A", "ACRE": null, "LONGITUDE": -64.89827155, "LATITUDE": 18.31128558, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 424.46017601199998, "SHAPE_Area": 2199.09939153 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362275.704499997198582, 253603.00899999961257 ], [ 362286.703900001943111, 253553.398299999535084 ], [ 362294.17059999704361, 253556.278400000184774 ], [ 362321.133500002324581, 253507.500700000673532 ], [ 362337.98870000243187, 253516.715599998831749 ], [ 362339.199799999594688, 253515.014299999922514 ], [ 362319.38289999961853, 253504.308200001716614 ], [ 362303.904700003564358, 253513.171700000762939 ], [ 362293.823600001633167, 253512.080400001257658 ], [ 362287.95440000295639, 253529.158100001513958 ], [ 362284.576099999248981, 253539.28770000115037 ], [ 362281.244699999690056, 253551.714899998158216 ], [ 362274.624899998307228, 253578.916600000113249 ], [ 362273.796999998390675, 253581.442899998277426 ], [ 362272.152000002563, 253585.229100000113249 ], [ 362263.948600001633167, 253601.627300001680851 ], [ 362261.457800000905991, 253610.050700001418591 ], [ 362258.173199996352196, 253616.989900000393391 ], [ 362251.116099998354912, 253636.570799998939037 ], [ 362250.180500000715256, 253641.99720000103116 ], [ 362249.057800002396107, 253652.101500000804663 ], [ 362249.431999996304512, 253655.656800001859665 ], [ 362249.80629999935627, 253662.018800001591444 ], [ 362252.051700003445148, 253665.386900000274181 ], [ 362255.317299999296665, 253668.262200001627207 ], [ 362268.741400003433228, 253644.308499999344349 ], [ 362269.880800001323223, 253630.524599999189377 ], [ 362272.264899998903275, 253603.273600000888109 ], [ 362275.704499997198582, 253603.00899999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105603019700", "MAP": "A9-632-T004", "PARCEL_NAM": "35", "ACRE": null, "LONGITUDE": -64.89568342, "LATITUDE": 18.33734568, "OBJECTID_1": 21540, "PARCEL_NO_": "105603019700", "Tax_Legal_": "35 ESTATE CHARLOTTE AMALIE #3 NEW QTR", "Name": "HARTMAN, SAMMY E. & R. J. (HEIRS)", "Address": "PO BOX 50330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 494800, "Improved_V": 60800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1056.2813298399999, "SHAPE_Area": 41238.542488899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362473.431199997663498, 256364.945199999958277 ], [ 362495.973700001835823, 256359.230200000107288 ], [ 362503.382100000977516, 256400.081900000572205 ], [ 362469.100100003182888, 256408.094399999827147 ], [ 362473.209399998188019, 256422.712999999523163 ], [ 362475.824699997901917, 256428.761999998241663 ], [ 362480.776699997484684, 256451.265099998563528 ], [ 362485.263899996876717, 256492.994300000369549 ], [ 362451.362800002098083, 256496.938700001686811 ], [ 362454.307499997317791, 256529.364199999719858 ], [ 362400.142599999904633, 256545.597300000488758 ], [ 362406.057800002396107, 256602.84569999948144 ], [ 362529.733300000429153, 256591.621399998664856 ], [ 362601.470899999141693, 256554.499400001019239 ], [ 362622.782899998128414, 256524.618500001728535 ], [ 362652.445600003004074, 256513.071899998933077 ], [ 362640.365500003099442, 256488.273800000548363 ], [ 362629.797899998724461, 256460.815699998289347 ], [ 362626.167599998414516, 256443.075599998235703 ], [ 362621.952299997210503, 256430.167899999767542 ], [ 362599.169799998402596, 256398.739000000059605 ], [ 362589.412100002169609, 256383.20549999922514 ], [ 362587.905100002884865, 256370.305700000375509 ], [ 362584.211599998176098, 256360.078200001269579 ], [ 362576.239699997007847, 256344.455600000917912 ], [ 362566.607500001788139, 256334.178199999034405 ], [ 362556.408399999141693, 256327.11600000038743 ], [ 362544.594200000166893, 256319.503600001335144 ], [ 362534.935000002384186, 256312.445900000631809 ], [ 362508.979299999773502, 256287.259199999272823 ], [ 362490.471900001168251, 256270.749899998307228 ], [ 362487.672399997711182, 256265.353700000792742 ], [ 362486.241300001740456, 256262.595300000160933 ], [ 362476.48309999704361, 256279.127900000661612 ], [ 362477.276799999177456, 256304.131099998950958 ], [ 362477.276799999177456, 256332.706199999898672 ], [ 362474.895599998533726, 256359.296900000423193 ], [ 362473.431199997663498, 256364.945199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105603019700", "MAP": "D9-9145-T016", "PARCEL_NAM": "35-2", "ACRE": "1.76", "LONGITUDE": -64.89641779, "LATITUDE": 18.33596256, "OBJECTID_1": 21540, "PARCEL_NO_": "105603019700", "Tax_Legal_": "35 ESTATE CHARLOTTE AMALIE #3 NEW QTR", "Name": "HARTMAN, SAMMY E. & R. J. (HEIRS)", "Address": "PO BOX 50330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 494800, "Improved_V": 60800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 563.61891548699998, "SHAPE_Area": 7525.0002143900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362431.194099999964237, 256212.321899998933077 ], [ 362427.17849999666214, 256211.657400000840425 ], [ 362429.379799999296665, 256237.217799998819828 ], [ 362431.530799999833107, 256268.688299998641014 ], [ 362432.311999998986721, 256271.649999998509884 ], [ 362434.297899998724461, 256294.970899999141693 ], [ 362435.244099996984005, 256306.082299999892712 ], [ 362441.086800001561642, 256377.479699999094009 ], [ 362444.063900001347065, 256406.635000001639128 ], [ 362446.117600001394749, 256430.913600001484156 ], [ 362446.261699996888638, 256432.617499999701977 ], [ 362447.685500003397465, 256454.793999999761581 ], [ 362452.076300002634525, 256454.325800001621246 ], [ 362474.197400003671646, 256451.966699998825788 ], [ 362472.365299999713898, 256434.741599999368191 ], [ 362467.996399998664856, 256418.870999999344349 ], [ 362463.004600003361702, 256400.3597999997437 ], [ 362460.266999997198582, 256393.573100000619888 ], [ 362458.194099999964237, 256384.120799999684095 ], [ 362459.020499996840954, 256378.611400000751019 ], [ 362461.401799999177456, 256364.323899999260902 ], [ 362466.164300002157688, 256350.433299999684095 ], [ 362467.354900002479553, 256331.383200000971556 ], [ 362468.148699998855591, 256311.936299998313189 ], [ 362465.767399996519089, 256291.298799999058247 ], [ 362469.339299999177456, 256273.042500000447035 ], [ 362482.039300002157688, 256248.039299998432398 ], [ 362482.328199997544289, 256247.330200001597404 ], [ 362482.041000001132488, 256245.992800001055002 ], [ 362482.144599996507168, 256233.650499999523163 ], [ 362478.667499996721745, 256218.245099999010563 ], [ 362447.305699996650219, 256215.410799998790026 ], [ 362435.230800002813339, 256212.989900000393391 ], [ 362431.194099999964237, 256212.321899998933077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105603019700", "MAP": "D9-9136-T016", "PARCEL_NAM": "35-A-REM", "ACRE": "0.41", "LONGITUDE": -64.89624736, "LATITUDE": 18.33620889, "OBJECTID_1": 21540, "PARCEL_NO_": "105603019700", "Tax_Legal_": "35 ESTATE CHARLOTTE AMALIE #3 NEW QTR", "Name": "HARTMAN, SAMMY E. & R. J. (HEIRS)", "Address": "PO BOX 50330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 494800, "Improved_V": 60800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 428.90859989400002, "SHAPE_Area": 1684.2056318 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362486.17059999704361, 256262.530999999493361 ], [ 362483.744300000369549, 256259.364799998700619 ], [ 362482.950499996542931, 256254.866900000721216 ], [ 362482.257500000298023, 256247.265900000929832 ], [ 362481.968599997460842, 256247.975000001490116 ], [ 362469.26860000193119, 256272.978199999779463 ], [ 362465.696699999272823, 256291.234499998390675 ], [ 362468.078000001609325, 256311.872000001370907 ], [ 362467.284199997782707, 256331.318900000303984 ], [ 362466.093599997460842, 256350.368999999016523 ], [ 362461.33110000193119, 256364.25959999859333 ], [ 362458.949799999594688, 256378.547100000083447 ], [ 362458.123400002717972, 256384.056499999016523 ], [ 362460.196299999952316, 256393.508799999952316 ], [ 362462.933899998664856, 256400.295499999076128 ], [ 362467.925700001418591, 256418.806699998676777 ], [ 362472.294600002467632, 256434.677299998700619 ], [ 362474.1266999989748, 256451.902399998158216 ], [ 362480.706000000238419, 256451.200800001621246 ], [ 362475.754000000655651, 256428.697700001299381 ], [ 362473.138700000941753, 256422.648699998855591 ], [ 362465.696699999272823, 256395.745099999010563 ], [ 362469.530500002205372, 256379.990499999374151 ], [ 362474.920500002801418, 256359.019099999219179 ], [ 362477.20610000193119, 256332.112700000405312 ], [ 362477.20610000193119, 256303.537599999457598 ], [ 362476.412399999797344, 256279.0636 ], [ 362486.17059999704361, 256262.530999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105603019700", "MAP": "D9-8710-T0012", "PARCEL_NAM": "35-1", "ACRE": null, "LONGITUDE": -64.89611946, "LATITUDE": 18.33660571, "OBJECTID_1": 21540, "PARCEL_NO_": "105603019700", "Tax_Legal_": "35 ESTATE CHARLOTTE AMALIE #3 NEW QTR", "Name": "HARTMAN, SAMMY E. & R. J. (HEIRS)", "Address": "PO BOX 50330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 494800, "Improved_V": 60800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.51183289700001, "SHAPE_Area": 1305.06176123 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362473.431199997663498, 256364.945199999958277 ], [ 362469.339299999177456, 256380.728100001811981 ], [ 362465.767399996519089, 256395.809399999678135 ], [ 362469.100100003182888, 256408.094399999827147 ], [ 362503.382100000977516, 256400.081900000572205 ], [ 362495.973700001835823, 256359.230200000107288 ], [ 362473.431199997663498, 256364.945199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "D9-2263-T83", "PARCEL_NAM": "59-1C-2", "ACRE": null, "LONGITUDE": -64.89824159, "LATITUDE": 18.31035759, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.56580970600001, "SHAPE_Area": 608.35557540699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362299.782200001180172, 253497.657900001853704 ], [ 362301.348899997770786, 253491.938999999314547 ], [ 362301.472999997437, 253486.787300001829863 ], [ 362299.859200000762939, 253479.525100000202656 ], [ 362292.845299996435642, 253471.269900001585484 ], [ 362284.652199998497963, 253467.297400001436472 ], [ 362275.652099996805191, 253465.062899999320507 ], [ 362261.437899999320507, 253465.059300001710653 ], [ 362256.199100002646446, 253467.361200001090765 ], [ 362254.103900000452995, 253469.987700000405312 ], [ 362254.013700000941753, 253470.042100001126528 ], [ 362254.070799998939037, 253470.020799998193979 ], [ 362254.381700001657009, 253470.093499999493361 ], [ 362262.223899997770786, 253470.558299999684095 ], [ 362269.103100001811981, 253472.145799998193979 ], [ 362275.935999996960163, 253476.041799999773502 ], [ 362280.003899998962879, 253480.936599999666214 ], [ 362284.61429999768734, 253487.127900000661612 ], [ 362285.163800001144409, 253488.474800001829863 ], [ 362286.783900000154972, 253492.445999998599291 ], [ 362286.936599999666214, 253493.07880000025034 ], [ 362289.183200001716614, 253492.745900001376867 ], [ 362294.210900001227856, 253493.30460000038147 ], [ 362295.073299996554852, 253493.789700001478195 ], [ 362297.806199997663498, 253495.326900001615286 ], [ 362298.467000000178814, 253496.106499999761581 ], [ 362299.61089999973774, 253498.394299998879433 ], [ 362299.782200001180172, 253497.657900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "D9-2263-T83", "PARCEL_NAM": "59-4", "ACRE": ".04", "LONGITUDE": -64.89807655, "LATITUDE": 18.31062337, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.649404626200003, "SHAPE_Area": 125.754503888 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362299.782200001180172, 253497.657900001853704 ], [ 362299.61089999973774, 253498.394299998879433 ], [ 362298.928199999034405, 253501.373599998652935 ], [ 362297.997100003063679, 253503.235700000077486 ], [ 362293.823600001633167, 253512.080400001257658 ], [ 362293.801399998366833, 253512.109299998730421 ], [ 362303.904700003564358, 253513.171700000762939 ], [ 362309.98309999704361, 253509.690999999642372 ], [ 362299.782200001180172, 253497.657900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "C9-155-T72", "PARCEL_NAM": "59-1C REM", "ACRE": null, "LONGITUDE": -64.89821609000001, "LATITUDE": 18.31072128, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.620652815, "SHAPE_Area": 520.69834124900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362293.792400002479553, 253512.120999999344349 ], [ 362293.765600003302097, 253512.105500001460314 ], [ 362293.801399998366833, 253512.109299998730421 ], [ 362293.823600001633167, 253512.080400001257658 ], [ 362297.997100003063679, 253503.235700000077486 ], [ 362298.928199999034405, 253501.373599998652935 ], [ 362299.61089999973774, 253498.394299998879433 ], [ 362298.467000000178814, 253496.106499999761581 ], [ 362297.806199997663498, 253495.326900001615286 ], [ 362295.073299996554852, 253493.789700001478195 ], [ 362294.210900001227856, 253493.30460000038147 ], [ 362289.183200001716614, 253492.745900001376867 ], [ 362286.936599999666214, 253493.07880000025034 ], [ 362288.635999999940395, 253500.118999999016523 ], [ 362285.716499999165535, 253507.446600001305342 ], [ 362281.604000002145767, 253516.912200000137091 ], [ 362279.127599999308586, 253523.646899998188019 ], [ 362274.986299999058247, 253536.489700000733137 ], [ 362274.283500000834465, 253538.274599999189377 ], [ 362282.324400000274181, 253547.537300001829863 ], [ 362284.642300002276897, 253538.890799999237061 ], [ 362287.953900001943111, 253528.785399999469519 ], [ 362293.809799998998642, 253512.131099998950958 ], [ 362293.792400002479553, 253512.120999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604031900", "MAP": "B9-102-T64", "PARCEL_NAM": "10", "ACRE": null, "LONGITUDE": -64.88677267, "LATITUDE": 18.33322437, "OBJECTID_1": 21791, "PARCEL_NO_": "105604031900", "Tax_Legal_": "10 CHARLOTTE AMALIE No.3 NEW QTR.", "Name": "TJ OCEAN AUTO IV LLC", "Address": "4523 Estate Charlotte Amaile", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 274400, "Improved_V": 992500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.999918931099998, "SHAPE_Area": 303.94858857200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363461.193300001323223, 256016.634500000625849 ], [ 363479.475000001490116, 256034.225299999117851 ], [ 363485.281900003552437, 256005.002099998295307 ], [ 363473.935999996960163, 256011.664200000464916 ], [ 363461.193300001323223, 256016.634500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-408-T92", "PARCEL_NAM": "59C", "ACRE": null, "LONGITUDE": -64.89790433, "LATITUDE": 18.3112517, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 56.847754512599998, "SHAPE_Area": 197.931334902 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362327.019199997186661, 253571.01799999922514 ], [ 362310.87950000166893, 253571.01799999922514 ], [ 362311.611000001430511, 253583.892299998551607 ], [ 362323.602099999785423, 253582.93299999833107 ], [ 362327.766400001943111, 253582.599899999797344 ], [ 362327.514799997210503, 253578.699999999254942 ], [ 362327.019199997186661, 253571.01799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-408-T92", "PARCEL_NAM": "56C", "ACRE": "0.01", "LONGITUDE": -64.89780395, "LATITUDE": 18.31134614, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.2978293163, "SHAPE_Area": 34.994093076299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362330.990000002086163, 253582.342000000178814 ], [ 362327.766400001943111, 253582.599899999797344 ], [ 362328.562700003385544, 253594.942400000989437 ], [ 362331.970399998128414, 253589.811200000345707 ], [ 362331.034400001168251, 253583.17790000140667 ], [ 362330.990000002086163, 253582.342000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-408-T92", "PARCEL_NAM": "56B", "ACRE": null, "LONGITUDE": -64.89794205, "LATITUDE": 18.31151751, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.17916259399999, "SHAPE_Area": 566.82807678400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362328.562700003385544, 253594.942400000989437 ], [ 362327.766400001943111, 253582.599899999797344 ], [ 362323.602099999785423, 253582.93299999833107 ], [ 362311.611000001430511, 253583.892299998551607 ], [ 362312.254100002348423, 253595.21000000089407 ], [ 362313.24099999666214, 253612.578600000590086 ], [ 362299.237899996340275, 253627.374299999326468 ], [ 362305.819700002670288, 253644.487100001424551 ], [ 362313.525399997830391, 253617.584699999541044 ], [ 362328.562700003385544, 253594.942400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021100", "MAP": "A9-408-T92", "PARCEL_NAM": "55B", "ACRE": null, "LONGITUDE": -64.89786379, "LATITUDE": 18.31156864, "OBJECTID_1": 42018, "PARCEL_NO_": "109401021100", "Tax_Legal_": "55 EST BOLONGO FRENCHMAN BAY QTR", "Name": "TERRITORIAL DEV CORP C/O", "Address": "7101 E Watergate", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.714230829100003, "SHAPE_Area": 234.580576772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362328.562700003385544, 253594.942400000989437 ], [ 362313.525399997830391, 253617.584699999541044 ], [ 362312.540200002491474, 253621.024300001561642 ], [ 362329.400399997830391, 253621.024300001561642 ], [ 362328.562700003385544, 253594.942400000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-408-T92", "PARCEL_NAM": "56B", "ACRE": null, "LONGITUDE": -64.89818259, "LATITUDE": 18.31152409, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.31691640313, "SHAPE_Area": 0.07256850902 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362289.68299999833107, 253606.940600000321865 ], [ 362289.398100003600121, 253606.833799999207258 ], [ 362289.44709999859333, 253607.361600000411272 ], [ 362289.68299999833107, 253606.940600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021000", "MAP": "A9-408-T92", "PARCEL_NAM": "56 REM", "ACRE": null, "LONGITUDE": -64.89810822, "LATITUDE": 18.31178811, "OBJECTID_1": 42017, "PARCEL_NO_": "109401021000", "Tax_Legal_": "56&59 EST BOLONGO\nFRENCHMAN BAY QTR", "Name": "Watergate Villas Sec 1 & Watergate Villas Sec 2", "Address": "7200 Regatta Pt", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 95400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 233.84747721599999, "SHAPE_Area": 1412.8952738400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362313.24099999666214, 253612.578600000590086 ], [ 362312.254100002348423, 253595.21000000089407 ], [ 362311.611000001430511, 253583.892299998551607 ], [ 362302.17679999768734, 253584.646999999880791 ], [ 362301.770499996840954, 253589.661800000816584 ], [ 362300.894100002944469, 253600.478500001132488 ], [ 362300.270499996840954, 253608.174699999392033 ], [ 362298.393299996852875, 253610.205600000917912 ], [ 362296.788599997758865, 253609.604100000113249 ], [ 362294.629000000655651, 253608.794599998742342 ], [ 362286.799300000071526, 253644.063900001347065 ], [ 362280.175700001418591, 253673.900499999523163 ], [ 362287.477300003170967, 253685.846400000154972 ], [ 362298.161899998784065, 253670.638700000941753 ], [ 362298.444099999964237, 253670.236900001764297 ], [ 362305.819700002670288, 253644.487100001424551 ], [ 362299.237899996340275, 253627.374299999326468 ], [ 362313.24099999666214, 253612.578600000590086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021100", "MAP": "A9-408-T92", "PARCEL_NAM": "REM 55", "ACRE": "0.47", "LONGITUDE": -64.89764858, "LATITUDE": 18.31189777, "OBJECTID_1": 42018, "PARCEL_NO_": "109401021100", "Tax_Legal_": "55 EST BOLONGO FRENCHMAN BAY QTR", "Name": "TERRITORIAL DEV CORP C/O", "Address": "7101 E Watergate", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.787238495, "SHAPE_Area": 2218.49242839 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362312.113399997353554, 253622.514400001615286 ], [ 362332.331299997866154, 253664.562800001353025 ], [ 362386.497900001704693, 253690.64299999922514 ], [ 362392.032200001180172, 253687.779699999839067 ], [ 362373.850599996745586, 253668.59910000115633 ], [ 362356.298699997365475, 253646.5016999989748 ], [ 362341.194600000977516, 253621.046799998730421 ], [ 362334.076200000941753, 253604.734400000423193 ], [ 362331.970399998128414, 253589.811200000345707 ], [ 362328.562700003385544, 253594.942400000989437 ], [ 362329.400399997830391, 253621.024300001561642 ], [ 362312.540200002491474, 253621.024300001561642 ], [ 362312.113399997353554, 253622.514400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109401021100", "MAP": "A9-408-T92", "PARCEL_NAM": "55C", "ACRE": "0.32", "LONGITUDE": -64.89778163, "LATITUDE": 18.31224064, "OBJECTID_1": 42018, "PARCEL_NO_": "109401021100", "Tax_Legal_": "55 EST BOLONGO FRENCHMAN BAY QTR", "Name": "TERRITORIAL DEV CORP C/O", "Address": "7101 E Watergate", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.809120522, "SHAPE_Area": 1173.8748701100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362369.770599998533726, 253699.296999998390675 ], [ 362325.028800003230572, 253679.644099999219179 ], [ 362305.819700002670288, 253644.487100001424551 ], [ 362298.444099999964237, 253670.236900001764297 ], [ 362298.161899998784065, 253670.638700000941753 ], [ 362313.298000000417233, 253677.391600001603365 ], [ 362323.411300003528595, 253681.401399999856949 ], [ 362336.325499996542931, 253716.60020000115037 ], [ 362363.296999998390675, 253702.646200001239777 ], [ 362369.770599998533726, 253699.296999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802022800", "MAP": "D9-9132-T016", "PARCEL_NAM": "6L-31", "ACRE": "0.83", "LONGITUDE": -64.83943019, "LATITUDE": 18.32586464, "OBJECTID_1": 40158, "PARCEL_NO_": "107802022800", "Tax_Legal_": "6L-31 NAZARETH No.1 RED HOOK QUARTER", "Name": "CABRITA CONDOMINIUM OWNERS ASSOCIATION INC", "Address": "5603 Royal Dane Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 409500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 290.607342819, "SHAPE_Area": 3781.1155349400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368530.398699998855591, 255280.66609999909997 ], [ 368536.698600001633167, 255275.114599999040365 ], [ 368539.027000002563, 255269.611299999058247 ], [ 368536.910300001502037, 255263.896299999207258 ], [ 368535.005300000309944, 255258.18129999935627 ], [ 368532.677000001072884, 255253.736299999058247 ], [ 368528.443599998950958, 255250.349599998444319 ], [ 368523.152000002563, 255247.174600001424551 ], [ 368519.130300000309944, 255243.576200000941753 ], [ 368514.473600000143051, 255239.977899998426437 ], [ 368510.028599999845028, 255237.014600001275539 ], [ 368502.831900000572205, 255233.839499998837709 ], [ 368497.540200002491474, 255231.511199999600649 ], [ 368492.883599996566772, 255229.394499998539686 ], [ 368485.898500002920628, 255225.79619999974966 ], [ 368480.395199999213219, 255223.679499998688698 ], [ 368474.256899997591972, 255220.92790000140667 ], [ 368468.541799999773502, 255218.176199998706579 ], [ 368463.885200001299381, 255216.694499999284744 ], [ 368460.286799997091293, 255213.942800000309944 ], [ 368453.725100003182888, 255212.461199998855591 ], [ 368448.010099999606609, 255212.884500000625849 ], [ 368441.660099998116493, 255213.096200000494719 ], [ 368436.580099999904633, 255215.847800001502037 ], [ 368433.828400000929832, 255219.657900001853704 ], [ 368431.711800001561642, 255222.832899998873472 ], [ 368430.441799998283386, 255228.336199998855591 ], [ 368431.463100001215935, 255232.701499998569489 ], [ 368446.91780000180006, 255241.97749999910593 ], [ 368466.929899998009205, 255259.239900000393391 ], [ 368486.238300003111362, 255264.464200001209974 ], [ 368503.903399996459484, 255273.263599999248981 ], [ 368506.279200002551079, 255278.349300000816584 ], [ 368502.976599998772144, 255287.399300001561642 ], [ 368502.958599999547005, 255289.510099999606609 ], [ 368504.560500003397465, 255290.789700001478195 ], [ 368509.407399997115135, 255289.773899998515844 ], [ 368517.531599998474121, 255282.66330000013113 ], [ 368524.810000002384186, 255280.189699999988079 ], [ 368530.398699998855591, 255280.66609999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802020300", "MAP": "D9-9140-T016", "PARCEL_NAM": "6L-36", "ACRE": "0.50", "LONGITUDE": -64.83912714, "LATITUDE": 18.32562862, "OBJECTID_1": 40138, "PARCEL_NO_": "107802020300", "Tax_Legal_": "6L-24&6L-25 NAZARETH CABRITA CONDOS STG.II RED HOOK", "Name": "DEVELOPMENT PARTNERS INTERNATIONAL LLC", "Address": "824 8th Ave", "City": "Bethlehem", "State": "Pennsylvania", "Zip": 18018, "Country": "United States", "Land_Value": 557300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.79159670300001, "SHAPE_Area": 2080.5326329700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368502.182199999690056, 255191.345199998468161 ], [ 368500.677299998700619, 255188.936999998986721 ], [ 368489.555799998342991, 255210.519299998879433 ], [ 368482.664599999785423, 255224.552400000393391 ], [ 368485.898500002920628, 255225.79619999974966 ], [ 368492.883599996566772, 255229.394499998539686 ], [ 368497.540200002491474, 255231.511199999600649 ], [ 368502.831900000572205, 255233.839499998837709 ], [ 368510.028599999845028, 255237.014600001275539 ], [ 368514.473600000143051, 255239.977899998426437 ], [ 368519.130300000309944, 255243.576200000941753 ], [ 368523.152000002563, 255247.174600001424551 ], [ 368540.561200000345707, 255237.012600000947714 ], [ 368564.106700003147125, 255223.268899999558926 ], [ 368556.78490000218153, 255218.389899998903275 ], [ 368551.158699996769428, 255216.232900001108646 ], [ 368526.21509999781847, 255209.9070999994874 ], [ 368514.168999999761581, 255204.108899999409914 ], [ 368506.15259999781847, 255198.554900001734495 ], [ 368502.182199999690056, 255191.345199998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107802022900", "MAP": "D9-9132-T016", "PARCEL_NAM": "6L-32", "ACRE": "0.46", "LONGITUDE": -64.84020984, "LATITUDE": 18.32540869, "OBJECTID_1": 40159, "PARCEL_NO_": "107802022900", "Tax_Legal_": "6L-32 NAZARETH No.1 RED HOOK QUARTER", "Name": "CABRITA CONDOMINIUM OWNERS ASSOCIATION INC", "Address": "5603 Royal Dane Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 178600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 224.04309470800001, "SHAPE_Area": 2040.3299066 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368441.660099998116493, 255213.096200000494719 ], [ 368437.149499997496605, 255209.616599999368191 ], [ 368433.555299997329712, 255207.420099999755621 ], [ 368427.165500000119209, 255204.424899999052286 ], [ 368422.572899997234344, 255202.228399999439716 ], [ 368417.580899998545647, 255199.233199998736382 ], [ 368412.189499996602535, 255198.2347999997437 ], [ 368408.395599998533726, 255195.439300000667572 ], [ 368409.394000001251698, 255192.044700000435114 ], [ 368410.392399996519089, 255188.450500000268221 ], [ 368411.390799999237061, 255184.057500001043081 ], [ 368412.788599997758865, 255179.2652000002563 ], [ 368413.986699998378754, 255175.4712999984622 ], [ 368413.787000000476837, 255170.878699999302626 ], [ 368410.592100001871586, 255167.683800000697374 ], [ 368405.799800001084805, 255164.6886 ], [ 368401.207099996507168, 255161.893100000917912 ], [ 368394.293600000441074, 255157.229499999433756 ], [ 368386.630500003695488, 255170.679000001400709 ], [ 368376.102799996733665, 255202.934900000691414 ], [ 368390.74379999935627, 255210.064800001680851 ], [ 368408.409000001847744, 255218.86430000141263 ], [ 368431.463100001215935, 255232.701499998569489 ], [ 368430.441799998283386, 255228.336199998855591 ], [ 368431.711800001561642, 255222.832899998873472 ], [ 368433.828400000929832, 255219.657900001853704 ], [ 368436.580099999904633, 255215.847800001502037 ], [ 368441.660099998116493, 255213.096200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102701024700", "MAP": "D9-9141-T016", "PARCEL_NAM": "10A-1", "ACRE": "0.00", "LONGITUDE": -64.96034741, "LATITUDE": 18.35783465, "OBJECTID_1": 2876, "PARCEL_NO_": "102701024700", "Tax_Legal_": "DOROTHEA 10A LITTLE NORTHSIDE", "Name": "CYRIL A LAPLACE TRUST", "Address": "10A Dorothea", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 5500, "Improved_V": 209900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 20.2441725752, "SHAPE_Area": 18.468469972899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355679.023299999535084, 258681.674800001084805 ], [ 355676.381999999284744, 258674.633699998259544 ], [ 355674.171999998390675, 258675.643399998545647 ], [ 355676.978399999439716, 258682.989000000059605 ], [ 355679.023299999535084, 258681.674800001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701011900", "MAP": "D9-9141-T016", "PARCEL_NAM": "11-B", "ACRE": "0.00", "LONGITUDE": -64.96039913, "LATITUDE": 18.35777208, "OBJECTID_1": 2792, "PARCEL_NO_": "102701011900", "Tax_Legal_": "16F-REM & 11B DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "WILLIAMS, ALVIN & CELIA J. JACKSON-WILLIAMS", "Address": "PO Box 306801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 124000, "Improved_V": 188400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.854981113600001, "SHAPE_Area": 26.5898081707 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355674.171999998390675, 258675.643399998545647 ], [ 355671.674099996685982, 258669.105399999767542 ], [ 355670.668099999427795, 258666.472100000828505 ], [ 355668.444499999284744, 258667.648600000888109 ], [ 355671.341700002551079, 258676.697399999946356 ], [ 355674.171999998390675, 258675.643399998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105803030200", "MAP": "D9-5271-T92", "PARCEL_NAM": "19-2-QQ", "ACRE": ".06", "LONGITUDE": -64.85835863, "LATITUDE": 18.33779339, "OBJECTID_1": 23921, "PARCEL_NO_": "105803030200", "Tax_Legal_": "SMITH BAY 19-2-172 EAST END QUARTER", "Name": "CASTRO, VICTOR", "Address": "PO Box 595", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 81700, "Improved_V": 105800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.068289983, "SHAPE_Area": 179.96826049000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366498.444700002670288, 256506.101599998772144 ], [ 366498.393399998545647, 256505.991900000721216 ], [ 366495.6199000030756, 256511.449499998241663 ], [ 366479.168099999427795, 256547.085900001227856 ], [ 366476.252400003373623, 256552.407000001519918 ], [ 366473.077399998903275, 256558.280799999833107 ], [ 366470.061099998652935, 256562.567099999636412 ], [ 366465.457299999892712, 256567.964600000530481 ], [ 366463.499700002372265, 256569.545800000429153 ], [ 366461.329800002276897, 256571.298300001770258 ], [ 366453.709799997508526, 256575.743299998342991 ], [ 366430.848200000822544, 256584.497299998998642 ], [ 366453.482500001788139, 256577.927600000053644 ], [ 366460.771700002253056, 256574.1875 ], [ 366464.832000002264977, 256570.843299999833107 ], [ 366472.148199997842312, 256563.937100000679493 ], [ 366480.344400003552437, 256548.383200000971556 ], [ 366497.587999999523163, 256512.005199998617172 ], [ 366498.444700002670288, 256506.101599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031400", "MAP": "D9-9146-T016", "PARCEL_NAM": "7-5", "ACRE": "0.56", "LONGITUDE": -64.97047755, "LATITUDE": 18.36190978, "OBJECTID_1": 451, "PARCEL_NO_": "101103031400", "Tax_Legal_": "NELTJBERG/EASTERN PT. 7 LT. NORTHSIDE", "Name": "BNR PARTNERSHIP", "Address": "6539 Clucksberg", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 196700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 226.23567911500001, "SHAPE_Area": 3061.5276392800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354631.704499997198582, 259141.822999998927116 ], [ 354618.523599997162819, 259083.354400001466274 ], [ 354594.421800002455711, 259089.052799999713898 ], [ 354574.015399999916553, 259093.877500001341105 ], [ 354587.741099998354912, 259163.90989999845624 ], [ 354605.80120000243187, 259154.836599998176098 ], [ 354631.704499997198582, 259141.822999998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031400", "MAP": "D9-9146-T016", "PARCEL_NAM": "7-4", "ACRE": "0.56", "LONGITUDE": -64.97009277, "LATITUDE": 18.3617888, "OBJECTID_1": 451, "PARCEL_NO_": "101103031400", "Tax_Legal_": "NELTJBERG/EASTERN PT. 7 LT. NORTHSIDE", "Name": "BNR PARTNERSHIP", "Address": "6539 Clucksberg", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 830, "Country": "United States", "Land_Value": 196700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.32811396700001, "SHAPE_Area": 2073.7351850599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354633.576099999248981, 259081.264899998903275 ], [ 354627.726000003516674, 259081.178700000047684 ], [ 354618.523599997162819, 259083.354400001466274 ], [ 354631.704499997198582, 259141.822999998927116 ], [ 354645.816200003027916, 259134.733399998396635 ], [ 354670.589900001883507, 259124.707800000905991 ], [ 354655.434399999678135, 259081.586800001561642 ], [ 354633.576099999248981, 259081.264899998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701014200", "MAP": "D9-9149-T016", "PARCEL_NAM": "15 REM", "ACRE": "0.41", "LONGITUDE": -64.88170119, "LATITUDE": 18.34702515, "OBJECTID_1": 21874, "PARCEL_NO_": "105701014200", "Tax_Legal_": "15 ANNAS RETREAT NEW QTR", "Name": "VALLEY VIEW PROPERTIES INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 252800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.019605859, "SHAPE_Area": 2020.9712994900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363971.859600000083447, 257565.0439000017941 ], [ 364012.942699998617172, 257579.434599999338388 ], [ 364017.874099999666214, 257568.498100001364946 ], [ 364027.762000001966953, 257543.670000001788139 ], [ 363983.281499996781349, 257518.683699999004602 ], [ 363983.227200001478195, 257519.11879999935627 ], [ 363971.859600000083447, 257565.0439000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105701014200", "MAP": "D9-9140-T016", "PARCEL_NAM": "15-7", "ACRE": "0.44", "LONGITUDE": -64.88183655, "LATITUDE": 18.34741966, "OBJECTID_1": 21874, "PARCEL_NO_": "105701014200", "Tax_Legal_": "15 ANNAS RETREAT NEW QTR", "Name": "VALLEY VIEW PROPERTIES INC", "Address": "PO Box 304092", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 252800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.848600683, "SHAPE_Area": 1975.3266446499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363956.713299997150898, 257596.915500000119209 ], [ 363985.012199997901917, 257631.640099998563528 ], [ 363985.147299997508526, 257631.856300000101328 ], [ 364002.275399997830391, 257601.089899998158216 ], [ 364006.375299997627735, 257593.10190000012517 ], [ 364007.208599999547005, 257589.942400000989437 ], [ 364008.835600003600121, 257588.2668999992311 ], [ 364011.299500003457069, 257583.009799998253584 ], [ 364012.942699998617172, 257579.434599999338388 ], [ 363971.859600000083447, 257565.0439000017941 ], [ 363965.993400000035763, 257581.36259999871254 ], [ 363959.194799996912479, 257595.063900001347065 ], [ 363956.713299997150898, 257596.915500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107702023800", "MAP": "D9- 9126-T016", "PARCEL_NAM": "17F-1", "ACRE": "1.29", "LONGITUDE": -64.85003063000001, "LATITUDE": 18.32990894, "OBJECTID_1": 39549, "PARCEL_NO_": "107702023800", "Tax_Legal_": "17F SMITH BAY RED HOOK QTR", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 985100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 285.37715014399998, "SHAPE_Area": 2698.5178161 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367392.749799996614456, 255629.514400001615286 ], [ 367373.656300000846386, 255628.249499998986721 ], [ 367373.391699999570847, 255637.245299998670816 ], [ 367363.866700001060963, 255682.753699999302626 ], [ 367360.824000000953674, 255685.531899999827147 ], [ 367340.73589999973774, 255695.085999999195337 ], [ 367338.480800002813339, 255696.158500000834465 ], [ 367317.432199999690056, 255706.169399999082088 ], [ 367319.170699998736382, 255708.899399999529123 ], [ 367320.320900000631809, 255710.70549999922514 ], [ 367334.515500001609325, 255732.99549999833107 ], [ 367366.292599998414516, 255710.416799999773502 ], [ 367376.871799997985363, 255699.104299999773502 ], [ 367385.897699996829033, 255680.813000001013279 ], [ 367389.229000002145767, 255668.385800000280142 ], [ 367391.932099997997284, 255635.055100001394749 ], [ 367392.749799996614456, 255629.514400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107604060700", "MAP": "G9-245-T52", "PARCEL_NAM": "PORTION of MARSH LANDS", "ACRE": "0.14", "LONGITUDE": -64.87160069, "LATITUDE": 18.31899297, "OBJECTID_1": 39065, "PARCEL_NO_": "107604060700", "Tax_Legal_": "NADIR ESTATE 27 RED HOOK", "Name": "TROPICAL MARINE, INC.", "Address": "PO Box 10298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 360700, "Improved_V": 673700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.20899329299999, "SHAPE_Area": 608.27215926199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365055.834700003266335, 254454.085400000214577 ], [ 365114.792099997401237, 254469.128899998962879 ], [ 365115.918300002813339, 254451.938000001013279 ], [ 365074.162699997425079, 254451.269900001585484 ], [ 365068.518500000238419, 254451.223700001835823 ], [ 365055.931599996984005, 254450.947299998253584 ], [ 365055.834700003266335, 254454.085400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204062000", "MAP": "D9-2227-T82", "PARCEL_NAM": "91-A", "ACRE": "0.21", "LONGITUDE": -64.95401321, "LATITUDE": 18.33895599, "OBJECTID_1": 8757, "PARCEL_NO_": "105204062000", "Tax_Legal_": "CONTANT 91 7A SOUTHSIDE QTR", "Name": "MINOGUE, SEAMOS, EILIS & LIAM", "Address": "PO Box 821", "City": "Manchester", "State": "Maryland", "Zip": 21102, "Country": "United States", "Land_Value": 376600, "Improved_V": 800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.46330336, "SHAPE_Area": 710.32823243899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356348.905799999833107, 256573.765399999916553 ], [ 356341.559199996292591, 256582.840599998831749 ], [ 356345.039499998092651, 256593.0641999989748 ], [ 356353.957999996840954, 256601.329999998211861 ], [ 356359.395999997854233, 256597.632100000977516 ], [ 356382.413900002837181, 256616.668299999088049 ], [ 356387.676500000059605, 256605.749699998646975 ], [ 356348.905799999833107, 256573.765399999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202056800", "MAP": "D9-605-T66", "PARCEL_NAM": "6-21", "ACRE": ".06", "LONGITUDE": -64.95214579, "LATITUDE": 18.34058877, "OBJECTID_1": 8366, "PARCEL_NO_": "105202056800", "Tax_Legal_": "CONTANT 6-21 & 22 SOUTHSIDE 7BA", "Name": "RIVERS, CLIVE", "Address": "Office Of Clive Rivers Nisky Center", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 45700, "Improved_V": 337000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.271542546399999, "SHAPE_Area": 270.08537891399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356570.800499998033047, 256774.530200000852346 ], [ 356550.971199996769428, 256767.319600000977516 ], [ 356548.80349999666214, 256773.394999999552965 ], [ 356546.776900000870228, 256779.523200001567602 ], [ 356567.556000001728535, 256786.449499998241663 ], [ 356568.901900000870228, 256780.525600001215935 ], [ 356570.800499998033047, 256774.530200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202055900", "MAP": "G9-988-T67", "PARCEL_NAM": "6-27", "ACRE": "0.07", "LONGITUDE": -64.95235664, "LATITUDE": 18.3405589, "OBJECTID_1": 8358, "PARCEL_NO_": "105202055900", "Tax_Legal_": "6-27 CONTANT 7BA SOUTHSIDE QUARTER", "Name": "IRIS HENRY FAMILY TR", "Address": "3201 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20300, "Improved_V": 59400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.901504004800003, "SHAPE_Area": 302.58609598700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356549.744999997317791, 256770.75620000064373 ], [ 356526.667499996721745, 256763.768500000238419 ], [ 356526.293300002813339, 256765.400299999862909 ], [ 356523.800200000405312, 256775.723700001835823 ], [ 356545.451099999248981, 256783.532299999147654 ], [ 356548.80349999666214, 256773.394999999552965 ], [ 356549.744999997317791, 256770.75620000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204021300", "MAP": "D9-1528-T79", "PARCEL_NAM": "6-39", "ACRE": "0.02", "LONGITUDE": -64.95211465, "LATITUDE": 18.33963202, "OBJECTID_1": 8575, "PARCEL_NO_": "105204021300", "Tax_Legal_": "CONTANT 6-35&6-39 7AA S S QTR", "Name": "GEORGE, RUPERT & ELINORA", "Address": "BOX 2441", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29400, "Improved_V": 417200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 25.573642990100002, "SHAPE_Area": 16.557690787599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356569.349200002849102, 256670.0456000007689 ], [ 356566.148299999535084, 256669.296399999409914 ], [ 356563.539200000464916, 256669.616799999028444 ], [ 356561.159000001847744, 256670.360599998384714 ], [ 356559.053400002419949, 256671.905499998480082 ], [ 356558.836000002920628, 256672.637899998575449 ], [ 356558.51630000025034, 256674.471599999815226 ], [ 356561.763099998235703, 256671.96510000154376 ], [ 356564.99549999833107, 256671.147199999541044 ], [ 356569.349200002849102, 256670.0456000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803013400", "MAP": "D9-569-T66", "PARCEL_NAM": "9D-1-2", "ACRE": "0.36", "LONGITUDE": -64.94382182, "LATITUDE": 18.35607683, "OBJECTID_1": 4203, "PARCEL_NO_": "102803013400", "Tax_Legal_": "LERKENLUND 9D-1-2 GR NORTHSIDE QTR", "Name": "ROSEBURY, JAMES C.", "Address": "PO Box 8168", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48700, "Improved_V": 375100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.49179949294, "SHAPE_Area": 0.04863087967 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357424.678599998354912, 258498.135600000619888 ], [ 357424.481899999082088, 258498.14299999922514 ], [ 357425.009999997913837, 258498.617600001394749 ], [ 357424.678599998354912, 258498.135600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803013400", "MAP": "D9-569-T66", "PARCEL_NAM": "9D-1-2", "ACRE": "0.36", "LONGITUDE": -64.94382304, "LATITUDE": 18.35607516, "OBJECTID_1": 4203, "PARCEL_NO_": "102803013400", "Tax_Legal_": "LERKENLUND 9D-1-2 GR NORTHSIDE QTR", "Name": "ROSEBURY, JAMES C.", "Address": "PO Box 8168", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 48700, "Improved_V": 375100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.45254592034000002, "SHAPE_Area": 0.00736528983 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357424.678599998354912, 258498.135600000619888 ], [ 357424.6283999979496, 258498.062600001692772 ], [ 357424.481899999082088, 258498.14299999922514 ], [ 357424.678599998354912, 258498.135600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801028000", "MAP": "D9-1456-T79", "PARCEL_NAM": "6Fa", "ACRE": "1.23", "LONGITUDE": -64.94123461, "LATITUDE": 18.35786876, "OBJECTID_1": 3826, "PARCEL_NO_": "102801028000", "Tax_Legal_": "LERKENLUND 6FA GT NORTHSIDE", "Name": "HEMMERT FAMILY TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 145800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.456107272, "SHAPE_Area": 4268.1650293100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357646.242399998009205, 258691.727600000798702 ], [ 357681.637699998915195, 258736.5912000015378 ], [ 357684.996799997985363, 258739.320599999278784 ], [ 357696.315099999308586, 258733.484200000762939 ], [ 357710.654600001871586, 258726.089899998158216 ], [ 357710.893700003623962, 258725.414799999445677 ], [ 357711.387999996542931, 258725.71169999986887 ], [ 357721.752499997615814, 258720.367199998348951 ], [ 357742.784699998795986, 258709.521800000220537 ], [ 357741.928199999034405, 258707.912099998444319 ], [ 357723.04839999973774, 258672.431099999696016 ], [ 357714.781900003552437, 258656.895799998193979 ], [ 357713.675300002098083, 258657.528799999505281 ], [ 357690.877199999988079, 258669.090900000184774 ], [ 357672.615900002419949, 258678.352200001478195 ], [ 357654.784800000488758, 258687.395300000905991 ], [ 357648.600100003182888, 258690.531899999827147 ], [ 357646.242399998009205, 258691.727600000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802030800", "MAP": "G9-1067-T68", "PARCEL_NAM": "6A-1-D", "ACRE": "0.36", "LONGITUDE": -64.94104554, "LATITUDE": 18.3585432, "OBJECTID_1": 4167, "PARCEL_NO_": "102802030800", "Tax_Legal_": "6A-1D LERKENLUND NO.8 GREAT NORTHSIDE QTR.", "Name": "AUSTIN, JEREMY ROBERT", "Address": "PO Box 307271", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58500, "Improved_V": 184600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.360436617, "SHAPE_Area": 1366.55972795 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357740.586499996483326, 258758.405299998819828 ], [ 357708.660700000822544, 258747.444699998944998 ], [ 357696.694600000977516, 258782.828600000590086 ], [ 357700.920500002801418, 258782.724899999797344 ], [ 357702.62389999628067, 258791.118099998682737 ], [ 357702.525100000202656, 258793.853799998760223 ], [ 357701.255500003695488, 258799.907999999821186 ], [ 357700.695799998939037, 258804.408599998801947 ], [ 357701.897699996829033, 258806.671000000089407 ], [ 357706.082599997520447, 258806.531800001859665 ], [ 357709.249899998307228, 258802.918800000101328 ], [ 357711.722800001502037, 258798.953699998557568 ], [ 357715.070100001990795, 258794.649099998176098 ], [ 357717.580099999904633, 258793.0337999984622 ], [ 357725.883799999952316, 258786.728900000452995 ], [ 357740.586499996483326, 258758.405299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801014900", "MAP": "F9-1847-T66", "PARCEL_NAM": "6AA-4", "ACRE": ".15", "LONGITUDE": -64.94226786, "LATITUDE": 18.35754558, "OBJECTID_1": 3731, "PARCEL_NO_": "102801014900", "Tax_Legal_": "LERKENLUND 6AA-4 GR NORTHSIDE QTR", "Name": "HODGE, DAISY", "Address": "7747 Upper Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023433, "Country": "United States", "Land_Value": 26000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.268094209, "SHAPE_Area": 686.78817057000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357613.202899999916553, 258649.850099999457598 ], [ 357606.381399996578693, 258642.6875 ], [ 357594.808399997651577, 258649.500799998641014 ], [ 357593.186800003051758, 258650.543000001460314 ], [ 357577.469200000166893, 258660.024999998509884 ], [ 357574.54450000077486, 258661.78940000012517 ], [ 357567.248099997639656, 258666.373799998313189 ], [ 357564.61879999935627, 258667.986699998378754 ], [ 357573.170100003480911, 258682.109400000423193 ], [ 357573.238600000739098, 258682.493000000715256 ], [ 357576.105700001120567, 258680.8277000002563 ], [ 357590.637699998915195, 258668.845400001853704 ], [ 357613.202899999916553, 258649.850099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801024300", "MAP": "D9-6409-T98", "PARCEL_NAM": "6E-1", "ACRE": ".87", "LONGITUDE": -64.94176099000001, "LATITUDE": 18.35745448, "OBJECTID_1": 3816, "PARCEL_NO_": "102801024300", "Tax_Legal_": "LERKENLUND 6E-1 #9 GT.NORTHSIDE", "Name": "HEMMERT FAMILY TRUST", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 123400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.91997356300001, "SHAPE_Area": 2393.6806533600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357613.202899999916553, 258649.850099999457598 ], [ 357646.242399998009205, 258691.727600000798702 ], [ 357648.600100003182888, 258690.531899999827147 ], [ 357654.784800000488758, 258687.395300000905991 ], [ 357672.615900002419949, 258678.352200001478195 ], [ 357656.065600000321865, 258666.967099998146296 ], [ 357659.090000003576279, 258612.024500001221895 ], [ 357635.336199998855591, 258624.92339999973774 ], [ 357614.258799999952316, 258638.049800001084805 ], [ 357606.381399996578693, 258642.6875 ], [ 357613.202899999916553, 258649.850099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802030800", "MAP": "G9-1067-T68", "PARCEL_NAM": "6A-1-D", "ACRE": "0.36", "LONGITUDE": -64.94109594, "LATITUDE": 18.35811056, "OBJECTID_1": 4167, "PARCEL_NO_": "102802030800", "Tax_Legal_": "6A-1D LERKENLUND NO.8 GREAT NORTHSIDE QTR.", "Name": "AUSTIN, JEREMY ROBERT", "Address": "PO Box 307271", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58500, "Improved_V": 184600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.1178073636799999, "SHAPE_Area": 0.20232355975 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357711.387900002300739, 258725.711800001561642 ], [ 357710.893700003623962, 258725.414799999445677 ], [ 357710.654600001871586, 258726.089899998158216 ], [ 357711.387900002300739, 258725.711800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802031400", "MAP": "F9-2828-T71", "PARCEL_NAM": "6A-1-A-2", "ACRE": "0.45", "LONGITUDE": -64.94066561, "LATITUDE": 18.35941314, "OBJECTID_1": 4172, "PARCEL_NO_": "102802031400", "Tax_Legal_": "LERKENLUND 6A-1A-2 GR NORTHSIDE", "Name": "BERRY, RICK", "Address": "6A-1-A-2 Estate lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 89700, "Improved_V": 612600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 174.108192352, "SHAPE_Area": 1665.30449129 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357784.006499998271465, 258859.155200000852346 ], [ 357743.97410000115633, 258840.283599998801947 ], [ 357739.881399996578693, 258847.427299998700619 ], [ 357739.401199996471405, 258903.785399999469519 ], [ 357747.480599999427795, 258901.951699998229742 ], [ 357753.959799997508526, 258898.627199999988079 ], [ 357757.210299998521805, 258895.698499999940395 ], [ 357784.006499998271465, 258859.155200000852346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052200", "MAP": "F9-1389-T64", "PARCEL_NAM": "3H-4", "ACRE": "0.27", "LONGITUDE": -64.94652629, "LATITUDE": 18.3580894, "OBJECTID_1": 3934, "PARCEL_NO_": "102801052200", "Tax_Legal_": "ST PETER 3H-4 LITTLE NORTHSIDE", "Name": "PETER JOSEPH MERCURIO and KIMBERLY L MARKIEVICH", "Address": "PO Box 305576", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35400, "Improved_V": 130700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.56999834800001, "SHAPE_Area": 1055.0031331299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357132.251299999654293, 258707.888799998909235 ], [ 357112.321900002658367, 258709.977200001478195 ], [ 357113.152999997138977, 258716.339699998497963 ], [ 357113.618900001049042, 258719.906199999153614 ], [ 357113.77759999781847, 258731.495000001043081 ], [ 357144.173600003123283, 258729.448100000619888 ], [ 357160.926500000059605, 258728.320000000298023 ], [ 357160.592600002884865, 258715.075399998575449 ], [ 357160.450199998915195, 258709.428700000047684 ], [ 357160.077200002968311, 258709.117300000041723 ], [ 357155.667300000786781, 258705.434999998658895 ], [ 357132.251299999654293, 258707.888799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801052100", "MAP": "F9-1394-T64", "PARCEL_NAM": "3H-11", "ACRE": null, "LONGITUDE": -64.94767677, "LATITUDE": 18.35830021, "OBJECTID_1": 3933, "PARCEL_NO_": "102801052100", "Tax_Legal_": "ST PETER 3H-11 LITTLE NORTHSIDE QTR", "Name": "PHILLIPS, LAWRENCE", "Address": "PO Box 11942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.000009431099997, "SHAPE_Area": 216.96850701599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357033.036700002849102, 258741.44990000128746 ], [ 357002.159299999475479, 258735.129900000989437 ], [ 356994.100900001823902, 258739.787500001490116 ], [ 356997.460799999535084, 258740.47069999948144 ], [ 357028.714800000190735, 258746.825800001621246 ], [ 357032.34740000218153, 258747.558100000023842 ], [ 357033.036700002849102, 258741.44990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105402090300", "MAP": "D9-9073-T016", "PARCEL_NAM": "ROW D-F", "ACRE": "0.16", "LONGITUDE": -64.92260052, "LATITUDE": 18.3434784, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.41944812700001, "SHAPE_Area": 651.05838113100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359717.520499996840954, 257114.66330000013113 ], [ 359644.768500000238419, 257120.129099998623133 ], [ 359646.789499998092651, 257129.975699998438358 ], [ 359708.243299998342991, 257124.796999998390675 ], [ 359717.520499996840954, 257114.66330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-9073-T016", "PARCEL_NAM": "D-29", "ACRE": "0.28", "LONGITUDE": -64.92219131, "LATITUDE": 18.34315314, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.59608404100001, "SHAPE_Area": 1005.92203881 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359735.088299997150898, 257102.591400001198053 ], [ 359733.370200000703335, 257063.64750000089407 ], [ 359717.511699996888638, 257064.561599999666214 ], [ 359710.447700001299381, 257064.968800000846386 ], [ 359713.584299996495247, 257114.958999998867512 ], [ 359717.520499996840954, 257114.66330000013113 ], [ 359722.601400002837181, 257109.113200001418591 ], [ 359727.824600003659725, 257106.184799998998642 ], [ 359732.812700003385544, 257103.640999998897314 ], [ 359735.088299997150898, 257102.591400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402117000", "MAP": "D9-9073-T016", "PARCEL_NAM": "D-30", "ACRE": "0.33", "LONGITUDE": -64.92193914000001, "LATITUDE": 18.34308998, "OBJECTID_1": 19228, "PARCEL_NO_": "105402117000", "Tax_Legal_": "D-30 ROSS No. 8 NEW QUARTER", "Name": "MALBRANCHE, GUSLER", "Address": "146 Tutu-8", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.96210349200001, "SHAPE_Area": 1078.5458025400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359733.370200000703335, 257063.64750000089407 ], [ 359735.088299997150898, 257102.591400001198053 ], [ 359738.245300002396107, 257101.135200001299381 ], [ 359743.775499999523163, 257098.852800000458956 ], [ 359749.394100002944469, 257096.797600001096725 ], [ 359755.091700002551079, 257094.973099999129772 ], [ 359760.858900003135204, 257093.382199998944998 ], [ 359764.531599998474121, 257092.499400001019239 ], [ 359766.486199997365475, 257091.927000001072884 ], [ 359764.937899999320507, 257061.827799998223782 ], [ 359753.773500002920628, 257062.471400000154972 ], [ 359735.368400000035763, 257063.532299999147654 ], [ 359733.370200000703335, 257063.64750000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402116800", "MAP": "D9-9073-T016", "PARCEL_NAM": "D-28", "ACRE": "0.29", "LONGITUDE": -64.92239635, "LATITUDE": 18.34319195, "OBJECTID_1": 19227, "PARCEL_NO_": "105402116800", "Tax_Legal_": "D-28 ROSS No. 8 NEW QUARTER", "Name": "BOUGOUNEAU, LEWIS BOBBY", "Address": "13-A Hospital Line", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.19337336800001, "SHAPE_Area": 1121.9196051900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359713.584299996495247, 257114.958999998867512 ], [ 359710.447700001299381, 257064.968800000846386 ], [ 359702.302000001072884, 257065.438299998641014 ], [ 359688.293399997055531, 257066.245799999684095 ], [ 359691.211999997496605, 257116.639800000935793 ], [ 359713.584299996495247, 257114.958999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105402090300", "MAP": "D9-9073-T016", "PARCEL_NAM": "D-26", "ACRE": "0.30", "LONGITUDE": -64.92285583, "LATITUDE": 18.34322259, "OBJECTID_1": 12593, "PARCEL_NO_": "105402090300", "Tax_Legal_": "PAR PARCEL D & CONSOLIDATED D-15 ROSS 8 NEW QTR", "Name": "SUNSHINE INVESTORS INC", "Address": "PO Box 1616", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.131645754, "SHAPE_Area": 1163.2332959 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359666.347999997437, 257118.507800001651049 ], [ 359660.985200002789497, 257067.820000000298023 ], [ 359660.133199997246265, 257067.869100000709295 ], [ 359637.972900003194809, 257069.146499998867512 ], [ 359642.434500001370907, 257108.756999999284744 ], [ 359644.352700002491474, 257118.103100001811981 ], [ 359644.768500000238419, 257120.129099998623133 ], [ 359666.347999997437, 257118.507800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502032800", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-L", "ACRE": ".2894", "LONGITUDE": -64.90349844000001, "LATITUDE": 18.3478388, "OBJECTID_1": 19904, "PARCEL_NO_": "105502032800", "Tax_Legal_": "WINTBERG ESTATE 1X1-L GT. NORTHSIDE QTR.", "Name": "COLLIER, MARIELLA J", "Address": "PO Box 8601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 243000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.435719135, "SHAPE_Area": 1380.17440248 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361703.332299999892712, 257590.847699999809265 ], [ 361703.133299998939037, 257589.790800001472235 ], [ 361671.057099997997284, 257615.8597999997437 ], [ 361678.890000000596046, 257628.936900001019239 ], [ 361683.659500002861023, 257636.997499998658895 ], [ 361683.225100003182888, 257641.310600001364946 ], [ 361682.907600000500679, 257643.691799998283386 ], [ 361681.796300001442432, 257646.231899999082088 ], [ 361681.002599999308586, 257647.819400001317263 ], [ 361701.016800001263618, 257643.258499998599291 ], [ 361707.298100002110004, 257641.827100001275539 ], [ 361712.640799999237061, 257640.609600000083447 ], [ 361712.699699997901917, 257640.596200000494719 ], [ 361703.332299999892712, 257590.847699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004025200", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-K", "ACRE": ".3031", "LONGITUDE": -64.90376032, "LATITUDE": 18.34829955, "OBJECTID_1": 6123, "PARCEL_NO_": "103004025200", "Tax_Legal_": "WINTBERG 1X-1 GREAT NORTHSIDE QTR", "Name": "WEBSTER, CLEVE E", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146900, "Improved_V": 743700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.121859583, "SHAPE_Area": 1960.8103953100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361645.328699998557568, 257712.250500001013279 ], [ 361709.874499998986721, 257643.601100001484156 ], [ 361712.668799996376038, 257640.629099998623133 ], [ 361712.640799999237061, 257640.609600000083447 ], [ 361707.298100002110004, 257641.827100001275539 ], [ 361701.016800001263618, 257643.258499998599291 ], [ 361681.002599999308586, 257647.819400001317263 ], [ 361679.57379999756813, 257649.883099999278784 ], [ 361678.145099997520447, 257650.99439999833703 ], [ 361676.081299997866154, 257653.216899998486042 ], [ 361673.700099997222424, 257654.645599998533726 ], [ 361670.842500001192093, 257655.439399998635054 ], [ 361668.619999997317791, 257655.598099999129772 ], [ 361666.55629999935627, 257655.439399998635054 ], [ 361663.381300002336502, 257654.328099999576807 ], [ 361657.642800003290176, 257652.329900000244379 ], [ 361652.109999999403954, 257650.99439999833703 ], [ 361638.332299999892712, 257693.041200000792742 ], [ 361636.800599999725819, 257697.715500000864267 ], [ 361639.72749999910593, 257701.000700000673532 ], [ 361642.267499998211861, 257705.128199998289347 ], [ 361643.233300000429153, 257711.006000000983477 ], [ 361645.328699998557568, 257712.250500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004025200", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-K", "ACRE": ".3031", "LONGITUDE": -64.90319381, "LATITUDE": 18.34809039, "OBJECTID_1": 6123, "PARCEL_NO_": "103004025200", "Tax_Legal_": "WINTBERG 1X-1 GREAT NORTHSIDE QTR", "Name": "WEBSTER, CLEVE E", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146900, "Improved_V": 743700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.78030115628999996, "SHAPE_Area": 0.02670747 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361726.085699997842312, 257649.690699998289347 ], [ 361725.770199999213219, 257649.724399998784065 ], [ 361725.958400003612041, 257649.873599998652935 ], [ 361726.085699997842312, 257649.690699998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004025200", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-J", "ACRE": ".25", "LONGITUDE": -64.90406273000001, "LATITUDE": 18.34827246, "OBJECTID_1": 6123, "PARCEL_NO_": "103004025200", "Tax_Legal_": "WINTBERG 1X-1 GREAT NORTHSIDE QTR", "Name": "WEBSTER, CLEVE E", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 146900, "Improved_V": 743700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.534591603, "SHAPE_Area": 1053.5346442699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361638.774999998509884, 257647.025600001215935 ], [ 361630.043700002133846, 257645.75560000166297 ], [ 361615.35360000282526, 257681.1587999984622 ], [ 361621.955399997532368, 257686.310600001364946 ], [ 361631.003899998962879, 257691.706000000238419 ], [ 361631.948700003325939, 257692.269400000572205 ], [ 361636.800599999725819, 257697.715500000864267 ], [ 361638.332299999892712, 257693.041200000792742 ], [ 361652.109999999403954, 257650.99439999833703 ], [ 361638.774999998509884, 257647.025600001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502032900", "MAP": "A9-499-T95", "PARCEL_NAM": "1X-1-M", "ACRE": ".2518", "LONGITUDE": -64.90341467, "LATITUDE": 18.34754645, "OBJECTID_1": 19905, "PARCEL_NO_": "105502032900", "Tax_Legal_": "WINTBERG ESTATE 1`X-1-M GREAT NORTHSIDE QTR.", "Name": "JUELLE, MARIA & GUERRA, ELBA", "Address": "PO Box 502282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26100, "Improved_V": 281900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.49921144172, "SHAPE_Area": 0.08015332729000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361702.910099998116493, 257588.605500001460314 ], [ 361703.133299998939037, 257589.790800001472235 ], [ 361703.250600002706051, 257589.695500001311302 ], [ 361702.910099998116493, 257588.605500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502032800", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-L", "ACRE": ".2894", "LONGITUDE": -64.90341328, "LATITUDE": 18.34755319, "OBJECTID_1": 19904, "PARCEL_NO_": "105502032800", "Tax_Legal_": "WINTBERG ESTATE 1X1-L GT. NORTHSIDE QTR.", "Name": "COLLIER, MARIELLA J", "Address": "PO Box 8601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 243000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.38169794548, "SHAPE_Area": 0.07146953695 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361703.133299998939037, 257589.790800001472235 ], [ 361703.332299999892712, 257590.847699999809265 ], [ 361703.250600002706051, 257589.695500001311302 ], [ 361703.133299998939037, 257589.790800001472235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502032800", "MAP": "A9-466-T95", "PARCEL_NAM": "1X-1-L", "ACRE": ".2894", "LONGITUDE": -64.90332007000001, "LATITUDE": 18.34800872, "OBJECTID_1": 19904, "PARCEL_NO_": "105502032800", "Tax_Legal_": "WINTBERG ESTATE 1X1-L GT. NORTHSIDE QTR.", "Name": "COLLIER, MARIELLA J", "Address": "PO Box 8601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30200, "Improved_V": 243000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.13966172595000001, "SHAPE_Area": 0.00076187492 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361712.699699997901917, 257640.596200000494719 ], [ 361712.640799999237061, 257640.609600000083447 ], [ 361712.668799996376038, 257640.629099998623133 ], [ 361712.699699997901917, 257640.596200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010200", "MAP": "D9-2124-T82", "PARCEL_NAM": "332-A", "ACRE": "628 sq ft", "LONGITUDE": -64.90183495, "LATITUDE": 18.3480478, "OBJECTID_1": 19786, "PARCEL_NO_": "105502010200", "Tax_Legal_": "332-A WINTBERG NO.3 NORTHSIDE QTR", "Name": "MONSANTO, WILMA M", "Address": "P O BOX 2763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 1100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.305077226000002, "SHAPE_Area": 53.064237263400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361862.153599999845028, 257639.845600001513958 ], [ 361868.678400002419949, 257648.264699999243021 ], [ 361866.403099998831749, 257652.424499999731779 ], [ 361866.691799998283386, 257652.237900000065565 ], [ 361876.735200002789497, 257647.050599999725819 ], [ 361862.153599999845028, 257639.845600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502010100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90110926, "LATITUDE": 18.3482034, "OBJECTID_1": 19785, "PARCEL_NO_": "105502010100", "Tax_Legal_": "330 WINTBERG No.3 NORTHSIDE QTR", "Name": "JASMIN F.D. WILLIAMS & OTHERS", "Address": "PO Box 306073", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 58800, "Improved_V": 167500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 306.83000937999998, "SHAPE_Area": 674.20159381799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362006.646899998188019, 257662.530299998819828 ], [ 361995.045100003480911, 257661.604800000786781 ], [ 361990.647600002586842, 257661.346099998801947 ], [ 361983.275499999523163, 257663.932799998670816 ], [ 361967.153899997472763, 257670.627199999988079 ], [ 361961.039899997413158, 257671.783900000154972 ], [ 361957.821000002324581, 257672.176399998366833 ], [ 361954.264899998903275, 257672.610100001096725 ], [ 361945.67230000346899, 257670.296700000762939 ], [ 361938.401600003242493, 257666.661400001496077 ], [ 361914.25280000269413, 257657.855700001120567 ], [ 361908.492700003087521, 257655.755300000309944 ], [ 361900.39580000191927, 257653.441899999976158 ], [ 361887.341600000858307, 257649.806600000709295 ], [ 361876.735200002789497, 257647.050599999725819 ], [ 361876.727099999785423, 257651.411400001496077 ], [ 361890.023999996483326, 257655.396600000560284 ], [ 361914.209899999201298, 257663.156800001859665 ], [ 361934.256999999284744, 257670.528999999165535 ], [ 361951.200099997222424, 257675.831799998879433 ], [ 361958.442900002002716, 257676.607799999415874 ], [ 361969.565800003707409, 257673.76240000128746 ], [ 361984.180799998342991, 257668.200899999588728 ], [ 361992.975699998438358, 257666.260899998247623 ], [ 362003.710600003600121, 257666.3902000002563 ], [ 362018.325599998235703, 257672.469000000506639 ], [ 362019.634700000286102, 257669.933699999004602 ], [ 362014.248000003397465, 257665.669900000095367 ], [ 362006.646899998188019, 257662.530299998819828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": "D3-331-T76", "PARCEL_NAM": "33M", "ACRE": "498 sq ft", "LONGITUDE": -64.87964875, "LATITUDE": 18.31984388, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.985367963800002, "SHAPE_Area": 99.423588277600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364247.305399999022484, 254547.05970000103116 ], [ 364248.568199999630451, 254541.961899999529123 ], [ 364236.504100002348423, 254538.891199998557568 ], [ 364234.573499999940395, 254549.945599999278784 ], [ 364246.162100002169609, 254547.185100000351667 ], [ 364247.305399999022484, 254547.05970000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107603036400", "MAP": "D3-331-T76", "PARCEL_NAM": "33N", "ACRE": "117 sq ft", "LONGITUDE": -64.8795435, "LATITUDE": 18.31984738, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 30.797992383, "SHAPE_Area": 32.453822596400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364248.568199999630451, 254541.961899999529123 ], [ 364247.305399999022484, 254547.05970000103116 ], [ 364260.39360000193119, 254545.623700000345707 ], [ 364248.568199999630451, 254541.961899999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93046553000001, "LATITUDE": 18.34892352, "OBJECTID_1": 4829, "PARCEL_NO_": "102903031900", "Tax_Legal_": "LYTTONS FANCY 3 OF 8GC KINGS QTR", "Name": "RABSATT, LOUIS", "Address": "PO Box 7012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84900, "Improved_V": 77600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.3788195947599999, "SHAPE_Area": 0.25230289549000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358843.19709999859333, 257717.876600001007318 ], [ 358842.268799997866154, 257717.981899999082088 ], [ 358842.935099996626377, 257718.44990000128746 ], [ 358843.19709999859333, 257717.876600001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032100", "MAP": "D9-2818-T84", "PARCEL_NAM": "4", "ACRE": null, "LONGITUDE": -64.93022331, "LATITUDE": 18.34886747, "OBJECTID_1": 4832, "PARCEL_NO_": "102903032100", "Tax_Legal_": "4 LYTTONS FANCY QUEENS QUARTER", "Name": "BERNIER, JAMES & THERESA", "Address": "119 Fisher S Creek Ct", "City": "Cary", "State": "North Carolina", "Zip": 27513, "Country": "United States", "Land_Value": 109400, "Improved_V": 60600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.81895382299999, "SHAPE_Area": 2013.1672666899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358875.369000002741814, 257686.157200001180172 ], [ 358862.103699997067451, 257676.422200001776218 ], [ 358859.368900001049042, 257682.487399999052286 ], [ 358843.19709999859333, 257717.876600001007318 ], [ 358842.935099996626377, 257718.44990000128746 ], [ 358847.742399998009205, 257722.077899999916553 ], [ 358848.532499998807907, 257723.984200000762939 ], [ 358869.649599999189377, 257749.196299999952316 ], [ 358871.164200000464916, 257751.004700001329184 ], [ 358880.476599998772144, 257732.379900000989437 ], [ 358890.405100002884865, 257712.522900000214577 ], [ 358893.48480000346899, 257706.363499999046326 ], [ 358888.415500000119209, 257696.022100001573563 ], [ 358888.193199999630451, 257695.568500000983477 ], [ 358884.558200001716614, 257692.90089999884367 ], [ 358875.369000002741814, 257686.157200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903031900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93074463000001, "LATITUDE": 18.34881192, "OBJECTID_1": 4829, "PARCEL_NO_": "102903031900", "Tax_Legal_": "LYTTONS FANCY 3 OF 8GC KINGS QTR", "Name": "RABSATT, LOUIS", "Address": "PO Box 7012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 84900, "Improved_V": 77600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.9819735387399999, "SHAPE_Area": 0.06513287165 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358813.670500002801418, 257704.958200000226498 ], [ 358813.207599997520447, 257705.752099998295307 ], [ 358813.334600001573563, 257705.815699998289347 ], [ 358813.670500002801418, 257704.958200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93015117, "LATITUDE": 18.34826265, "OBJECTID_1": 4831, "PARCEL_NO_": "102903032000", "Tax_Legal_": "LYTTONS FANCY 3A GR NORTHSIDE QTR", "Name": "RABSATT, HELEN", "Address": "BOX 3734", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 28700, "Improved_V": 39900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 19.7579331504, "SHAPE_Area": 5.4933768328300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358878.246200002729893, 257640.832800000905991 ], [ 358874.163000002503395, 257649.67790000140667 ], [ 358877.425999999046326, 257645.271699998527765 ], [ 358878.270099997520447, 257640.845600001513958 ], [ 358878.246200002729893, 257640.832800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032100", "MAP": "D9-7965-T007", "PARCEL_NAM": "4C-2", "ACRE": ".06", "LONGITUDE": -64.93010374000001, "LATITUDE": 18.3491224, "OBJECTID_1": 4832, "PARCEL_NO_": "102903032100", "Tax_Legal_": "4 LYTTONS FANCY QUEENS QUARTER", "Name": "BERNIER, JAMES & THERESA", "Address": "119 Fisher S Creek Ct", "City": "Cary", "State": "North Carolina", "Zip": 27513, "Country": "United States", "Land_Value": 109400, "Improved_V": 60600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.156648264, "SHAPE_Area": 229.77416570400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358885.991800002753735, 257729.743200000375509 ], [ 358893.48480000346899, 257706.363499999046326 ], [ 358890.405100002884865, 257712.522900000214577 ], [ 358880.476599998772144, 257732.379900000989437 ], [ 358871.164200000464916, 257751.004700001329184 ], [ 358873.278300002217293, 257753.5287000015378 ], [ 358873.622900001704693, 257753.785799998790026 ], [ 358885.526900000870228, 257754.104699999094009 ], [ 358881.806199997663498, 257736.07039999961853 ], [ 358881.094899997115135, 257734.096000000834465 ], [ 358885.991800002753735, 257729.743200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032100", "MAP": "D9-7965-T007", "PARCEL_NAM": "REM 4C", "ACRE": ".27", "LONGITUDE": -64.92996103, "LATITUDE": 18.34866478, "OBJECTID_1": 4832, "PARCEL_NO_": "102903032100", "Tax_Legal_": "4 LYTTONS FANCY QUEENS QUARTER", "Name": "BERNIER, JAMES & THERESA", "Address": "119 Fisher S Creek Ct", "City": "Cary", "State": "North Carolina", "Zip": 27513, "Country": "United States", "Land_Value": 109400, "Improved_V": 60600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.210253201, "SHAPE_Area": 570.70492146699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358891.265000000596046, 257701.835200000554323 ], [ 358904.023100003600121, 257713.067800000309944 ], [ 358904.16950000077486, 257710.961899999529123 ], [ 358906.136799998581409, 257682.659099999815226 ], [ 358900.533900000154972, 257677.758099999278784 ], [ 358892.558899998664856, 257667.349199999123812 ], [ 358891.559799998998642, 257666.462699998170137 ], [ 358884.558200001716614, 257692.90089999884367 ], [ 358888.193199999630451, 257695.568500000983477 ], [ 358888.415500000119209, 257696.022100001573563 ], [ 358891.265000000596046, 257701.835200000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903032900", "MAP": "F9-825-T61", "PARCEL_NAM": "267A", "ACRE": "0.51", "LONGITUDE": -64.92818609, "LATITUDE": 18.34859801, "OBJECTID_1": 4841, "PARCEL_NO_": "102903032900", "Tax_Legal_": "HOSPITAL GROUND 267A GREAT NORTHSIDE QTR", "Name": "JOHN ALEXANDER SOLIMAN and ORISA ROYER", "Address": "PO Box 10132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.083512566, "SHAPE_Area": 2330.1714000100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359097.715000003576279, 257658.501299999654293 ], [ 359090.243900001049042, 257652.712999999523163 ], [ 359078.215800002217293, 257644.804099999368191 ], [ 359069.380500003695488, 257640.721000000834465 ], [ 359063.713600002229214, 257638.192699998617172 ], [ 359071.593000002205372, 257711.214499998837709 ], [ 359071.890500001609325, 257713.971599999815226 ], [ 359078.92059999704361, 257717.500599998980761 ], [ 359103.581799998879433, 257729.880300000309944 ], [ 359097.715000003576279, 257658.501299999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033000", "MAP": "F9-674-T61", "PARCEL_NAM": "268A", "ACRE": "0.11", "LONGITUDE": -64.92772984, "LATITUDE": 18.34980946, "OBJECTID_1": 4842, "PARCEL_NO_": "102903033000", "Tax_Legal_": "HOSPITAL GROUND 268 GREAT NORTHSIDE QTR", "Name": "HOWARD, IVAN & SEZILEE", "Address": "P.O. BOX 3194", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 126100, "Improved_V": 118400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.004082343299999, "SHAPE_Area": 506.43916729799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359138.6891999989748, 257805.766199998557568 ], [ 359120.94820000231266, 257802.635400000959635 ], [ 359122.616200000047684, 257828.39750000089407 ], [ 359129.839199997484684, 257832.255499999970198 ], [ 359139.491599999368191, 257835.078699998557568 ], [ 359141.379399999976158, 257835.611099999397993 ], [ 359138.6891999989748, 257805.766199998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102903033200", "MAP": "G9-799-T64", "PARCEL_NAM": "ROW THRU 269", "ACRE": null, "LONGITUDE": -64.92753387, "LATITUDE": 18.34954828, "OBJECTID_1": 4844, "PARCEL_NO_": "102903033200", "Tax_Legal_": "HOSPITAL GROUND 269 GREAT NORTHSIDE QTR", "Name": "BERETTA, GEORGE & E", "Address": "PO Box 338", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 41100, "Improved_V": 183000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.829180863999994, "SHAPE_Area": 279.08292470800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359142.911700002849102, 257783.914000000804663 ], [ 359136.689000003039837, 257783.575800001621246 ], [ 359137.510799996554852, 257792.693300001323223 ], [ 359162.187600001692772, 257795.701499998569489 ], [ 359167.292000003159046, 257796.345100000500679 ], [ 359166.659000001847744, 257786.918099999427795 ], [ 359161.547100000083447, 257786.218299999833107 ], [ 359142.996299996972084, 257784.041000001132488 ], [ 359142.911700002849102, 257783.914000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130700", "MAP": "G9-2861-T73", "PARCEL_NAM": "8GDA-3", "ACRE": "0.04", "LONGITUDE": -64.92996414, "LATITUDE": 18.34584244, "OBJECTID_1": 11665, "PARCEL_NO_": "105401130700", "Tax_Legal_": "LYTTONS FANCY 8GDA QUEENS QTR", "Name": "O'MAHONEY DE SOSA, MARIA", "Address": "34 Street SW 1565", "City": "San Juan", "State": "Puerto Rico", "Zip": 921, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.742217923699997, "SHAPE_Area": 226.797895224 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358903.57880000025034, 257366.917300000786781 ], [ 358895.071099996566772, 257366.019000001251698 ], [ 358892.241800002753735, 257381.024000000208616 ], [ 358891.544600002467632, 257384.0439000017941 ], [ 358891.331699997186661, 257386.001499999314547 ], [ 358898.976700000464916, 257387.280600000172853 ], [ 358904.722499996423721, 257388.104499999433756 ], [ 358904.300899997353554, 257387.125100001692772 ], [ 358904.339400000870228, 257381.9206000007689 ], [ 358903.57880000025034, 257366.917300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401131500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93005779000001, "LATITUDE": 18.34570579, "OBJECTID_1": 11672, "PARCEL_NO_": "105401131500", "Tax_Legal_": "LYTTONS FANCY 8GDA-2 CROWN PRINCE QTR", "Name": "GEORGE, ALPHONSE & UNA", "Address": "PO Box 6011", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 27600, "Improved_V": 137700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.420308538900002, "SHAPE_Area": 103.91796752400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358882.652999997138977, 257363.152699999511242 ], [ 358895.071099996566772, 257366.019000001251698 ], [ 358903.57880000025034, 257366.917300000786781 ], [ 358903.531900003552437, 257365.991599999368191 ], [ 358903.4121999964118, 257363.630800001323223 ], [ 358895.624300003051758, 257363.085299998521805 ], [ 358883.586400002241135, 257358.660999998450279 ], [ 358877.486199997365475, 257356.418999999761581 ], [ 358875.69709999859333, 257360.119300000369549 ], [ 358882.652999997138977, 257363.152699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130700", "MAP": "G9-2861-T73", "PARCEL_NAM": "REM 8GDA", "ACRE": "0.44", "LONGITUDE": -64.93015066, "LATITUDE": 18.34589341, "OBJECTID_1": 11665, "PARCEL_NO_": "105401130700", "Tax_Legal_": "LYTTONS FANCY 8GDA QUEENS QTR", "Name": "O'MAHONEY DE SOSA, MARIA", "Address": "34 Street SW 1565", "City": "San Juan", "State": "Puerto Rico", "Zip": 921, "Country": "United States", "Land_Value": 49900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.9140038468, "SHAPE_Area": 50.5597973434 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358891.544600002467632, 257384.0439000017941 ], [ 358878.709100000560284, 257381.973700001835823 ], [ 358866.6503000035882, 257380.0287000015378 ], [ 358865.961000002920628, 257381.944200001657009 ], [ 358878.283500000834465, 257383.92119999974966 ], [ 358891.101499997079372, 257385.962999999523163 ], [ 358891.331699997186661, 257386.001499999314547 ], [ 358891.544600002467632, 257384.0439000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401121400", "MAP": "D3-152-T47", "PARCEL_NAM": "8GK", "ACRE": ".18", "LONGITUDE": -64.93053167, "LATITUDE": 18.34666407, "OBJECTID_1": 11656, "PARCEL_NO_": "105401121400", "Tax_Legal_": "LYTTONS FANCY 8GK KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.567402355, "SHAPE_Area": 0.27692075272 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358838.42230000346899, 257468.079900000244379 ], [ 358837.814499996602535, 257467.628899998962879 ], [ 358837.350599996745586, 257468.195900000631809 ], [ 358838.42230000346899, 257468.079900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105302100900", "MAP": "F9-4031-T73", "PARCEL_NAM": "66A", "ACRE": "1,589 sq ft", "LONGITUDE": -64.93369788, "LATITUDE": 18.3475123, "OBJECTID_1": 9824, "PARCEL_NO_": "105302100900", "Tax_Legal_": "66 AGNES FANCY QUEENS QTR", "Name": "MILLINER, JANET", "Address": "PO Box 8801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29600, "Improved_V": 42200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 62.586887660199999, "SHAPE_Area": 153.40791100300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358512.007500000298023, 257566.287200000137091 ], [ 358496.053900003433228, 257545.891600001603365 ], [ 358493.981700003147125, 257553.861800000071526 ], [ 358507.907999999821186, 257571.083700001239777 ], [ 358512.007500000298023, 257566.287200000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302070600", "MAP": null, "PARCEL_NAM": "REM of AGNES FANCY", "ACRE": null, "LONGITUDE": -64.93317183000001, "LATITUDE": 18.34713455, "OBJECTID_1": 9741, "PARCEL_NO_": "105302070600", "Tax_Legal_": "AGNES FANCY REM QUEENS QTR", "Name": "BORNN, DAVID A.", "Address": "#8 Norre Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.61060341400002, "SHAPE_Area": 2058.4933660199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358573.246100001037121, 257556.339000001549721 ], [ 358566.203199997544289, 257513.170800000429153 ], [ 358565.092000000178814, 257503.486999999731779 ], [ 358565.726999998092651, 257494.914500001817942 ], [ 358565.957900002598763, 257487.526200000196695 ], [ 358566.047899998724461, 257484.646099999547005 ], [ 358566.362000003457069, 257474.594399999827147 ], [ 358578.109499998390675, 257467.450699999928474 ], [ 358588.739500001072884, 257456.724399998784065 ], [ 358585.754299998283386, 257456.059300001710653 ], [ 358577.05120000243187, 257464.513799998909235 ], [ 358570.912799999117851, 257463.667100001126528 ], [ 358553.767800003290176, 257470.652100000530481 ], [ 358546.352600000798702, 257480.880199998617172 ], [ 358545.896600000560284, 257480.795400001108646 ], [ 358546.17059999704361, 257481.13120000064373 ], [ 358548.374499998986721, 257485.623700000345707 ], [ 358548.682899996638298, 257485.660799998790026 ], [ 358550.435900002717972, 257485.871700000017881 ], [ 358542.853100001811981, 257558.637699998915195 ], [ 358545.535599999129772, 257561.141399998217821 ], [ 358549.663099996745586, 257562.887600000947714 ], [ 358553.155599996447563, 257564.316399998962879 ], [ 358559.029399998486042, 257563.046399999409914 ], [ 358568.554399996995926, 257558.125100001692772 ], [ 358573.246100001037121, 257556.339000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302070600", "MAP": null, "PARCEL_NAM": "REM of AGNES FANCY", "ACRE": null, "LONGITUDE": -64.93344544, "LATITUDE": 18.34784275, "OBJECTID_1": 9741, "PARCEL_NO_": "105302070600", "Tax_Legal_": "AGNES FANCY REM QUEENS QTR", "Name": "BORNN, DAVID A.", "Address": "#8 Norre Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.91970404599999, "SHAPE_Area": 4309.7295934800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358564.222699999809265, 257589.46680000051856 ], [ 358563.566500000655651, 257571.9864999987185 ], [ 358554.664700001478195, 257575.71339999884367 ], [ 358549.022299997508526, 257575.4560999982059 ], [ 358545.0033999979496, 257573.945500001311302 ], [ 358540.998800002038479, 257570.746399998664856 ], [ 358525.041599996387959, 257550.772999998182058 ], [ 358512.007500000298023, 257566.287200000137091 ], [ 358507.907999999821186, 257571.083700001239777 ], [ 358493.981700003147125, 257553.861800000071526 ], [ 358488.550700001418591, 257574.750100001692772 ], [ 358515.975199997425079, 257638.694699998944998 ], [ 358564.738600000739098, 257623.714000001549721 ], [ 358564.222699999809265, 257589.46680000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105302081300", "MAP": "M.B.", "PARCEL_NAM": "V", "ACRE": "2,215 sq ft", "LONGITUDE": -64.93271834, "LATITUDE": 18.34690276, "OBJECTID_1": 9776, "PARCEL_NO_": "105302081300", "Tax_Legal_": "AGNES FANCY 79 & 79A QUEENS QTR", "Name": "KETURAH DONOVAN SMITH LIVING TRUST", "Address": "PO Box 494", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.715660891100001, "SHAPE_Area": 233.65562308599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358618.322700001299381, 257486.352400001138449 ], [ 358594.203400000929832, 257488.956900000572205 ], [ 358594.271899998188019, 257492.08500000089407 ], [ 358594.271899998188019, 257498.038400001823902 ], [ 358618.234300002455711, 257496.727699998766184 ], [ 358618.322700001299381, 257486.352400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "111111111111", "MAP": "MB", "PARCEL_NAM": "VESTER GADE 42C", "ACRE": null, "LONGITUDE": -64.93509359, "LATITUDE": 18.34320306, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.639061782599999, "SHAPE_Area": 46.141510955199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358363.974899999797344, 257081.405799999833107 ], [ 358357.586199998855591, 257076.329100001603365 ], [ 358353.70610000193119, 257080.656899999827147 ], [ 358360.144299998879433, 257085.502399999648333 ], [ 358363.974899999797344, 257081.405799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105304010300", "MAP": "D9-7059-T002", "PARCEL_NAM": "REM 47D (Access PCL)", "ACRE": "0.22", "LONGITUDE": -64.94096584, "LATITUDE": 18.33904401, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.67042514799999, "SHAPE_Area": 667.75828873299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357729.38629999756813, 256643.445900000631809 ], [ 357748.820900000631809, 256610.304699998348951 ], [ 357752.503300003707409, 256608.25899999961257 ], [ 357758.435999996960163, 256609.077300000935793 ], [ 357769.377499997615814, 256615.565499998629093 ], [ 357767.313400000333786, 256612.603399999439716 ], [ 357762.123599998652935, 256605.155600000172853 ], [ 357761.411200001835823, 256604.133099999278784 ], [ 357755.756099998950958, 256594.850699998438358 ], [ 357747.371899999678135, 256595.359400000423193 ], [ 357740.862800002098083, 256602.480799999088049 ], [ 357734.655699998140335, 256609.271899998188019 ], [ 357731.445100001990795, 256617.9847999997437 ], [ 357731.456200003623962, 256618.002199999988079 ], [ 357721.939400002360344, 256641.02309999987483 ], [ 357722.635300002992153, 256640.827300000935793 ], [ 357729.287600003182888, 256643.556000001728535 ], [ 357729.38629999756813, 256643.445900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102301019700", "MAP": "A9-567-T001", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.03238214, "LATITUDE": 18.35527552, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 388.04793882400003, "SHAPE_Area": 1231.9772314500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347995.992200002074242, 258276.681699998676777 ], [ 347994.955200001597404, 258280.356100000441074 ], [ 347999.497800000011921, 258281.293800000101328 ], [ 348040.691100001335144, 258289.491999998688698 ], [ 348054.195799998939037, 258293.041000001132488 ], [ 348061.053400002419949, 258298.574799999594688 ], [ 348068.721799999475479, 258310.483500000089407 ], [ 348079.844499997794628, 258330.219500001519918 ], [ 348091.162000000476837, 258356.166799999773502 ], [ 348086.864600002765656, 258360.373399998992682 ], [ 348081.300700001418591, 258362.874499998986721 ], [ 348076.615699999034405, 258361.990699999034405 ], [ 348074.505999997258186, 258359.006999999284744 ], [ 348071.976199999451637, 258355.172100000083447 ], [ 348067.72749999910593, 258353.019900001585484 ], [ 348062.166799999773502, 258355.096999999135733 ], [ 348059.58839999884367, 258357.620999999344349 ], [ 348056.137500002980232, 258362.68189999833703 ], [ 348055.252099998295307, 258366.914599999785423 ], [ 348056.499200001358986, 258371.163600001484156 ], [ 348060.305200003087521, 258375.432199999690056 ], [ 348068.405299998819828, 258375.918099999427795 ], [ 348077.384400002658367, 258373.019200000911951 ], [ 348096.201999999582767, 258366.379999998956919 ], [ 348098.3766999989748, 258360.885400000959635 ], [ 348097.5658999979496, 258355.367899999022484 ], [ 348095.475599996745586, 258349.840599998831749 ], [ 348088.782200001180172, 258337.145700000226498 ], [ 348068.979400001466274, 258300.884100001305342 ], [ 348061.793799996376038, 258292.350099999457598 ], [ 348055.42230000346899, 258288.909800000488758 ], [ 348045.205899998545647, 258286.287999998778105 ], [ 347995.992200002074242, 258276.681699998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102301020200", "MAP": "D9-9123-T016", "PARCEL_NAM": "11-7-1", "ACRE": "1.00", "LONGITUDE": -65.03356282, "LATITUDE": 18.3548252, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 215.16862744700001, "SHAPE_Area": 1697.9108929199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347933.458599999547005, 258262.041700001806021 ], [ 347901.248400002717972, 258303.820900000631809 ], [ 347910.993900001049042, 258303.802200000733137 ], [ 347913.015441544877831, 258304.466159249568591 ], [ 347915.114922419830691, 258304.812066973157926 ], [ 347917.242617286043242, 258304.831730489531765 ], [ 347919.348132566839922, 258304.524684076372068 ], [ 347921.381599999964237, 258303.898200001567602 ], [ 347994.955200001597404, 258280.356100000441074 ], [ 347949.597999997437, 258270.993299998342991 ], [ 347933.458599999547005, 258262.041700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "109302012400", "MAP": "A9-217-T74", "PARCEL_NAM": "59-1C-1", "ACRE": null, "LONGITUDE": -64.89859689, "LATITUDE": 18.3106442, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.94646024500003, "SHAPE_Area": 3934.0968130199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362192.070299997925758, 253534.352699998766184 ], [ 362196.470899999141693, 253536.780499998480082 ], [ 362201.2871999964118, 253539.353100001811981 ], [ 362219.747900001704693, 253549.425599999725819 ], [ 362243.98870000243187, 253520.902100000530481 ], [ 362274.283500000834465, 253538.274599999189377 ], [ 362274.331799998879433, 253538.151999998837709 ], [ 362274.986299999058247, 253536.489700000733137 ], [ 362279.013099998235703, 253524.002000000327826 ], [ 362281.523999996483326, 253517.129900000989437 ], [ 362285.560099996626377, 253507.819699998944998 ], [ 362285.683399997651577, 253507.479699999094009 ], [ 362288.635999999940395, 253500.118999999016523 ], [ 362286.783900000154972, 253492.445999998599291 ], [ 362284.667199999094009, 253487.154399998486042 ], [ 362279.904700003564358, 253480.804299999028444 ], [ 362275.935999996960163, 253476.041799999773502 ], [ 362268.792199999094009, 253472.073100000619888 ], [ 362261.913000002503395, 253470.485599998384714 ], [ 362258.963500000536442, 253470.3108000010252 ], [ 362254.070799998939037, 253470.020799998193979 ], [ 362253.806199997663498, 253470.285399999469519 ], [ 362236.872800000011921, 253486.425000000745058 ], [ 362202.212300002574921, 253521.350099999457598 ], [ 362192.070299997925758, 253534.352699998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-9140-016", "PARCEL_NAM": "6L-34", "ACRE": "0.50", "LONGITUDE": -64.83873535, "LATITUDE": 18.32620533, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.71631128000001, "SHAPE_Area": 2033.89970619 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368582.792999997735023, 255261.790100000798702 ], [ 368565.170000001788139, 255260.742899999022484 ], [ 368536.910300001502037, 255263.896299999207258 ], [ 368539.027000002563, 255269.611299999058247 ], [ 368536.698600001633167, 255275.114599999040365 ], [ 368530.398699998855591, 255280.66609999909997 ], [ 368538.508299998939037, 255281.357299998402596 ], [ 368539.914200000464916, 255305.644600000232458 ], [ 368556.000799998641014, 255310.420299999415874 ], [ 368572.089299999177456, 255314.984900001436472 ], [ 368572.015600003302097, 255323.639199998229742 ], [ 368578.453500002622604, 255325.16950000077486 ], [ 368576.092100001871586, 255318.395199999213219 ], [ 368575.314599998295307, 255315.011300001293421 ], [ 368573.802699998021126, 255303.177700001746416 ], [ 368577.121399998664856, 255292.228000000119209 ], [ 368579.579899996519089, 255287.604100000113249 ], [ 368581.203299999237061, 255286.35080000013113 ], [ 368582.792999997735023, 255261.790100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-9140-T016", "PARCEL_NAM": "6L-35", "ACRE": "0.50", "LONGITUDE": -64.8387695, "LATITUDE": 18.32585358, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.52271916699999, "SHAPE_Area": 1463.3628073299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368536.910300001502037, 255263.896299999207258 ], [ 368565.170000001788139, 255260.742899999022484 ], [ 368582.792999997735023, 255261.790100000798702 ], [ 368583.060500003397465, 255257.657299999147654 ], [ 368579.142200000584126, 255244.326299998909235 ], [ 368572.004100002348423, 255230.335700001567602 ], [ 368566.406700000166893, 255224.801500000059605 ], [ 368564.106700003147125, 255223.268899999558926 ], [ 368540.561200000345707, 255237.012600000947714 ], [ 368523.152000002563, 255247.174600001424551 ], [ 368528.443599998950958, 255250.349599998444319 ], [ 368532.677000001072884, 255253.736299999058247 ], [ 368535.005300000309944, 255258.18129999935627 ], [ 368536.910300001502037, 255263.896299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "11111111111", "MAP": "D9-9140-T016", "PARCEL_NAM": "6L-33", "ACRE": "0.75", "LONGITUDE": -64.83990188, "LATITUDE": 18.32507369, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.62770529400001, "SHAPE_Area": 5188.3983488100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368434.314499996602535, 255112.262899998575449 ], [ 368422.361199997365475, 255107.611000001430511 ], [ 368412.389200001955032, 255131.940999999642372 ], [ 368396.414800003170967, 255153.506499998271465 ], [ 368394.293600000441074, 255157.229499999433756 ], [ 368401.207099996507168, 255161.893100000917912 ], [ 368405.799800001084805, 255164.6886 ], [ 368410.592100001871586, 255167.683800000697374 ], [ 368413.787000000476837, 255170.878699999302626 ], [ 368413.986699998378754, 255175.4712999984622 ], [ 368412.788599997758865, 255179.2652000002563 ], [ 368411.390799999237061, 255184.057500001043081 ], [ 368410.392399996519089, 255188.450500000268221 ], [ 368409.394000001251698, 255192.044700000435114 ], [ 368408.395599998533726, 255195.439300000667572 ], [ 368412.189499996602535, 255198.2347999997437 ], [ 368417.580899998545647, 255199.233199998736382 ], [ 368422.572899997234344, 255202.228399999439716 ], [ 368427.165500000119209, 255204.424899999052286 ], [ 368433.555299997329712, 255207.420099999755621 ], [ 368437.149499997496605, 255209.616599999368191 ], [ 368441.660099998116493, 255213.096200000494719 ], [ 368448.010099999606609, 255212.884500000625849 ], [ 368450.16669999808073, 255212.724800001829863 ], [ 368463.093500003218651, 255179.5777000002563 ], [ 368478.446599997580051, 255145.626499999314547 ], [ 368475.998199999332428, 255141.312800001353025 ], [ 368474.401799999177456, 255139.399900000542402 ], [ 368469.608900003135204, 255134.083399999886751 ], [ 368465.609700001776218, 255130.250900000333786 ], [ 368456.007700003683567, 255121.517499998211861 ], [ 368443.959700003266335, 255115.930500000715256 ], [ 368434.314499996602535, 255112.262899998575449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-9140-T016", "PARCEL_NAM": "6L-37", "ACRE": "0.50", "LONGITUDE": -64.83952808, "LATITUDE": 18.32535422, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.806942424, "SHAPE_Area": 2020.16310591 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368482.664599999785423, 255224.552400000393391 ], [ 368489.555799998342991, 255210.519299998879433 ], [ 368500.677299998700619, 255188.936999998986721 ], [ 368496.613499999046326, 255182.433699999004602 ], [ 368495.015299998223782, 255180.731899999082088 ], [ 368482.351599998772144, 255152.763900000602007 ], [ 368479.970499999821186, 255148.3114 ], [ 368478.446599997580051, 255145.626499999314547 ], [ 368463.093500003218651, 255179.5777000002563 ], [ 368450.16669999808073, 255212.724800001829863 ], [ 368453.725100003182888, 255212.461199998855591 ], [ 368460.286799997091293, 255213.942800000309944 ], [ 368463.885200001299381, 255216.694499999284744 ], [ 368468.541799999773502, 255218.176199998706579 ], [ 368474.256899997591972, 255220.92790000140667 ], [ 368480.395199999213219, 255223.679499998688698 ], [ 368482.664599999785423, 255224.552400000393391 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-2005-T82", "PARCEL_NAM": "9", "ACRE": "0.65", "LONGITUDE": -64.96034265, "LATITUDE": 18.35738447, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.738471823, "SHAPE_Area": 1118.6422914699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355657.821400001645088, 258610.785300001502037 ], [ 355674.562200002372265, 258650.277800001204014 ], [ 355675.620600000023842, 258652.262200001627207 ], [ 355676.943499997258186, 258653.783500000834465 ], [ 355678.861699998378754, 258655.172600001096725 ], [ 355681.454700000584126, 258656.564399998635054 ], [ 355700.263800002634525, 258639.287999998778105 ], [ 355694.322700001299381, 258634.790600001811981 ], [ 355678.068199999630451, 258607.034699998795986 ], [ 355675.739900000393391, 258608.939699999988079 ], [ 355668.798100002110004, 258599.737700000405312 ], [ 355662.616599999368191, 258606.188000001013279 ], [ 355657.821400001645088, 258610.785300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "11111111111", "MAP": "D9-2413-T74", "PARCEL_NAM": "9", "ACRE": "0.324", "LONGITUDE": -64.96046412, "LATITUDE": 18.35747705, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.28530573200001, "SHAPE_Area": 533.75493009100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355681.454700000584126, 258656.564399998635054 ], [ 355678.861699998378754, 258655.172600001096725 ], [ 355676.943499997258186, 258653.783500000834465 ], [ 355675.620600000023842, 258652.262200001627207 ], [ 355674.562200002372265, 258650.277800001204014 ], [ 355657.821400001645088, 258610.785300001502037 ], [ 355650.114000000059605, 258618.174499999731779 ], [ 355669.089699998497963, 258662.448399998247623 ], [ 355670.668099999427795, 258666.472100000828505 ], [ 355681.454700000584126, 258656.564399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": "D9-3897-T87", "PARCEL_NAM": "48", "ACRE": "0.15", "LONGITUDE": -64.87206707, "LATITUDE": 18.31975324, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.43742175600001, "SHAPE_Area": 733.31539103600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365061.851300001144409, 254543.653599999845028 ], [ 365035.172399997711182, 254521.008699998259544 ], [ 365022.79559999704361, 254546.403999999165535 ], [ 365057.288699999451637, 254557.003499999642372 ], [ 365061.851300001144409, 254543.653599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93284996, "LATITUDE": 18.34702498, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.883598823, "SHAPE_Area": 241.231461373 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358593.795699998736382, 257470.336199998855591 ], [ 358593.924800001084805, 257456.004999998956919 ], [ 358591.966600000858307, 257456.539700001478195 ], [ 358591.835299998521805, 257471.948499999940395 ], [ 358591.755300000309944, 257481.344999998807907 ], [ 358591.740000002086163, 257483.135600000619888 ], [ 358591.614100001752377, 257497.911200001835823 ], [ 358590.604599997401237, 257521.756499998271465 ], [ 358589.704800002276897, 257532.725999999791384 ], [ 358590.442800000309944, 257540.753600001335144 ], [ 358591.22749999910593, 257543.293099999427795 ], [ 358593.601499997079372, 257548.589899998158216 ], [ 358595.249600000679493, 257548.065499998629093 ], [ 358594.271899998188019, 257545.583799999207258 ], [ 358593.936899997293949, 257542.736000001430511 ], [ 358593.629399999976158, 257540.12220000103116 ], [ 358593.001900002360344, 257534.788800001144409 ], [ 358593.568300001323223, 257521.903299998492002 ], [ 358594.271899998188019, 257505.896200001239777 ], [ 358594.271899998188019, 257498.038400001823902 ], [ 358594.271899998188019, 257492.08500000089407 ], [ 358594.022100001573563, 257480.675799999386072 ], [ 358593.810500003397465, 257471.010499998927116 ], [ 358593.795699998736382, 257470.336199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604035400", "MAP": "G9-1577-T70", "PARCEL_NAM": "2-T", "ACRE": "0.02", "LONGITUDE": -64.87149751, "LATITUDE": 18.32015231, "OBJECTID_1": 38994, "PARCEL_NO_": "107604035400", "Tax_Legal_": "2-T FRYDENHOJ RED HOOK QTR.", "Name": "TESTMARK, DAISY", "Address": "PO Box 8942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 2300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.119728135300001, "SHAPE_Area": 54.123765265099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365111.585900001227856, 254583.358300000429153 ], [ 365106.444499999284744, 254583.862300001084805 ], [ 365099.589299999177456, 254581.644499998539686 ], [ 365097.371500000357628, 254590.415100000798702 ], [ 365097.151399999856949, 254591.515399999916553 ], [ 365111.585900001227856, 254583.358300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "107504017200", "MAP": "A9-45-T65", "PARCEL_NAM": "5A-5", "ACRE": "0.11", "LONGITUDE": -64.88689435000001, "LATITUDE": 18.31816028, "OBJECTID_1": 37729, "PARCEL_NO_": "107504017200", "Tax_Legal_": "BOVONI 5A-5 FRENCHMAN BAY", "Name": "BOVONI BAPTIST CHURCH", "Address": "PO Box 306299", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35900, "Improved_V": 493900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.802127139000007, "SHAPE_Area": 222.96433602900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363495.488200001418591, 254359.434399999678135 ], [ 363463.165200002491474, 254340.202500000596046 ], [ 363457.330099999904633, 254344.121700000017881 ], [ 363477.37780000269413, 254355.238499999046326 ], [ 363493.502300001680851, 254363.933699999004602 ], [ 363495.488200001418591, 254359.434399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105201025400", "MAP": "B3-195-T73", "PARCEL_NAM": "294", "ACRE": "0.27", "LONGITUDE": -64.96312371, "LATITUDE": 18.34865235, "OBJECTID_1": 7503, "PARCEL_NO_": "105201025400", "Tax_Legal_": "CONTANT ESTATE REMAINDER 7A SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1146100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.27483994100001, "SHAPE_Area": 1573.3177406 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355410.149400003254414, 257632.600299999117851 ], [ 355406.337099999189377, 257632.741500001400709 ], [ 355403.230800002813339, 257633.023899998515844 ], [ 355398.068199999630451, 257633.678599998354912 ], [ 355394.617899999022484, 257634.294700000435114 ], [ 355383.604699999094009, 257638.530499998480082 ], [ 355375.980099998414516, 257642.20160000026226 ], [ 355375.968199998140335, 257647.85080000013113 ], [ 355374.714400000870228, 257677.355399999767542 ], [ 355374.258900001645088, 257688.074200000613928 ], [ 355374.1199000030756, 257691.391800001263618 ], [ 355405.556699998676777, 257678.500399999320507 ], [ 355405.615599997341633, 257678.476300001144409 ], [ 355406.49889999628067, 257669.790399998426437 ], [ 355410.149400003254414, 257632.600299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703047100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96292106, "LATITUDE": 18.34849326, "OBJECTID_1": 3433, "PARCEL_NO_": "102703047100", "Tax_Legal_": "290 CONTANT NO 7A SOUTHSIDE QTR", "Name": "WYATT, ARTHUR & TRAVIS", "Address": "PO BOX 304047", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 343.68353423100001, "SHAPE_Area": 918.82357840999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355398.068199999630451, 257633.678599998354912 ], [ 355403.230800002813339, 257633.023899998515844 ], [ 355410.149400003254414, 257632.600299999117851 ], [ 355413.396899998188019, 257632.741500001400709 ], [ 355420.032999999821186, 257633.871100001037121 ], [ 355424.410099998116493, 257635.141800001263618 ], [ 355432.458200000226498, 257638.530499998480082 ], [ 355445.165799997746944, 257643.190000001341105 ], [ 355458.296899996697903, 257646.861000001430511 ], [ 355467.691799998283386, 257648.739999998360872 ], [ 355475.240299999713898, 257650.249699998646975 ], [ 355486.112400002777576, 257651.238099999725819 ], [ 355493.313299998641014, 257651.520500000566244 ], [ 355496.5608000010252, 257651.520500000566244 ], [ 355497.407999999821186, 257646.296300001442432 ], [ 355487.241899996995926, 257646.296300001442432 ], [ 355476.93469999730587, 257645.307900000363588 ], [ 355467.050999999046326, 257643.613600000739098 ], [ 355460.994499996304512, 257642.248700000345707 ], [ 355457.026199996471405, 257641.354400001466274 ], [ 355446.436499997973442, 257638.248100001364946 ], [ 355437.117700003087521, 257634.577100001275539 ], [ 355425.257299996912479, 257630.058800000697374 ], [ 355420.351899996399879, 257629.003199998289347 ], [ 355414.102799996733665, 257627.658500000834465 ], [ 355405.066299997270107, 257627.3761 ], [ 355398.853799998760223, 257627.940900001674891 ], [ 355389.252499997615814, 257629.917599998414516 ], [ 355382.051500000059605, 257633.30629999935627 ], [ 355380.223499998450279, 257634.121500000357628 ], [ 355371.603100001811981, 257637.965799998492002 ], [ 355365.672899998724461, 257642.20160000026226 ], [ 355349.858999997377396, 257654.76799999922514 ], [ 355345.4746999964118, 257659.277499999850988 ], [ 355345.215400002896786, 257667.771699998527765 ], [ 355350.000200003385544, 257666.346000000834465 ], [ 355357.483599998056889, 257658.297899998724461 ], [ 355360.731100000441074, 257654.203200001269579 ], [ 355370.614699997007847, 257645.590300001204014 ], [ 355375.980099998414516, 257642.20160000026226 ], [ 355383.604699999094009, 257638.530499998480082 ], [ 355394.617899999022484, 257634.294700000435114 ], [ 355398.068199999630451, 257633.678599998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046600", "MAP": "G3-150-T75", "PARCEL_NAM": "314", "ACRE": "0.07", "LONGITUDE": -64.96340624, "LATITUDE": 18.34894399, "OBJECTID_1": 3429, "PARCEL_NO_": "102703046600", "Tax_Legal_": "CONTANT 293 & 314 7A S S QTR", "Name": "DENNIS, DAVID ANTHONY", "Address": "PO BOX 8791", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.455090567599996, "SHAPE_Area": 235.91532404200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355374.516199998557568, 257682.019000001251698 ], [ 355348.23759999871254, 257693.140999998897314 ], [ 355347.599899999797344, 257702.068399999290705 ], [ 355374.1199000030756, 257691.391800001263618 ], [ 355374.258900001645088, 257688.074200000613928 ], [ 355374.516199998557568, 257682.019000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034300", "MAP": "G9-2076-T82", "PARCEL_NAM": "14NJ", "ACRE": "0.17", "LONGITUDE": -64.91038058, "LATITUDE": 18.33530707, "OBJECTID_1": 20099, "PARCEL_NO_": "105503034300", "Tax_Legal_": "14NJ ESTATE THOMAS 6E NEW QTR", "Name": "ADELLE PENN BROWN & AUDAIN BROWN", "Address": "PO Box 10188", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 46700, "Improved_V": 153000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.15979568, "SHAPE_Area": 729.64938047400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360994.903599999845028, 256219.832600001245737 ], [ 360997.435699999332428, 256214.114900000393391 ], [ 360987.132100000977516, 256214.547899998724461 ], [ 360980.129699997603893, 256214.842099998146296 ], [ 360971.071199998259544, 256215.222699999809265 ], [ 360967.867299996316433, 256222.854800000786781 ], [ 360965.825300000607967, 256227.183899998664856 ], [ 360963.538199998438358, 256231.267900001257658 ], [ 360961.904600001871586, 256234.535100001841784 ], [ 360957.502400003373623, 256242.741399999707937 ], [ 360985.899700000882149, 256241.379900000989437 ], [ 360988.323299996554852, 256236.462900001555681 ], [ 360988.776500001549721, 256235.543299999088049 ], [ 360989.676100000739098, 256233.718299999833107 ], [ 360994.903599999845028, 256219.832600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033500", "MAP": "G9-1671-T70", "PARCEL_NAM": "14NQ", "ACRE": "0.11", "LONGITUDE": -64.91043197, "LATITUDE": 18.33544228, "OBJECTID_1": 20091, "PARCEL_NO_": "105503033500", "Tax_Legal_": "14 NQ EST THOMAS 6E NEW QTR", "Name": "TRUST AGREEMENT OF THOMAS RECALDO LETTSOME", "Address": "PO Box 12181", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.362324746100001, "SHAPE_Area": 80.603941409100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360984.660099998116493, 256243.894900001585484 ], [ 360985.899700000882149, 256241.379900000989437 ], [ 360957.502400003373623, 256242.741399999707937 ], [ 360957.053099997341633, 256243.481899999082088 ], [ 360956.895000003278255, 256243.742400001734495 ], [ 360956.011799998581409, 256244.651900000870228 ], [ 360978.485799998044968, 256245.072000000625849 ], [ 360983.853399999439716, 256245.531599998474121 ], [ 360984.660099998116493, 256243.894900001585484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033800", "MAP": null, "PARCEL_NAM": "14NF", "ACRE": "0.11", "LONGITUDE": -64.91039308000001, "LATITUDE": 18.33477447, "OBJECTID_1": 20094, "PARCEL_NO_": "105503033800", "Tax_Legal_": "14NF EST THOMAS 6E NEW QTR", "Name": "VANTERPOOL, NONA", "Address": "PO Box 8696", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 23100, "Improved_V": 82400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.568045654599999, "SHAPE_Area": 496.43342866299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360988.145300000905991, 256161.796999998390675 ], [ 360987.808899998664856, 256158.016800001263618 ], [ 360963.163199998438358, 256160.407200001180172 ], [ 360964.030599996447563, 256163.374200001358986 ], [ 360968.346199996769428, 256181.346799999475479 ], [ 360989.739100001752377, 256179.707499999552965 ], [ 360988.145300000905991, 256161.796999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503033700", "MAP": "G9-1779-T71", "PARCEL_NAM": "14NL", "ACRE": "0.10", "LONGITUDE": -64.91036204, "LATITUDE": 18.33494518, "OBJECTID_1": 20093, "PARCEL_NO_": "105503033700", "Tax_Legal_": "14NL EST THOMAS 6E NEW QTR", "Name": "DONOVAN, LACHANDRO & UNA", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 21000, "Improved_V": 71400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.844105103299995, "SHAPE_Area": 334.44462365300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360989.930399999022484, 256181.857500001788139 ], [ 360989.739100001752377, 256179.707499999552965 ], [ 360968.346199996769428, 256181.346799999475479 ], [ 360968.703100003302097, 256182.833000000566244 ], [ 360972.030199997127056, 256197.125599998980761 ], [ 360991.242899999022484, 256196.606300000101328 ], [ 360989.930399999022484, 256181.857500001788139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034000", "MAP": "F9-2228-T68", "PARCEL_NAM": "14ND", "ACRE": "0.09", "LONGITUDE": -64.91044893, "LATITUDE": 18.33443009, "OBJECTID_1": 20096, "PARCEL_NO_": "105503034000", "Tax_Legal_": "14ND EST THOMAS 6E NEW QTR", "Name": "RITA JAMES-ADAMS", "Address": "PO Box 503214", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 18900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.387849024600001, "SHAPE_Area": 456.78144545200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360983.520099997520447, 256139.501200001686811 ], [ 360984.87049999833107, 256122.621899999678135 ], [ 360984.760200001299381, 256121.175700001418591 ], [ 360958.722900003194809, 256123.83049999922514 ], [ 360958.684900000691414, 256128.288899999111891 ], [ 360960.01860000193119, 256141.966899998486042 ], [ 360962.915500000119209, 256141.662999998778105 ], [ 360979.745600000023842, 256139.897199999541044 ], [ 360983.520099997520447, 256139.501200001686811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034400", "MAP": "G9-1970-T72", "PARCEL_NAM": "14N-7", "ACRE": "0.14", "LONGITUDE": -64.91014932, "LATITUDE": 18.33501407, "OBJECTID_1": 20100, "PARCEL_NO_": "105503034400", "Tax_Legal_": "14N-7 EST THOMAS 6E NEW QTR", "Name": "HENRY,SR, ALSON S.", "Address": "PO BOX 8596", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 29300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.104610417, "SHAPE_Area": 851.45665735499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361015.41160000115633, 256189.970300000160933 ], [ 361016.0016999989748, 256178.719500001519918 ], [ 360992.243199996650219, 256179.613299999386072 ], [ 360989.739100001752377, 256179.707499999552965 ], [ 360989.930399999022484, 256181.857500001788139 ], [ 360991.242899999022484, 256196.606300000101328 ], [ 360991.1503000035882, 256198.215500000864267 ], [ 360990.221699997782707, 256212.562199998646975 ], [ 360990.189099997282028, 256214.419399999082088 ], [ 360997.435699999332428, 256214.114900000393391 ], [ 361014.086900003254414, 256213.771200001239777 ], [ 361015.056500002741814, 256195.996800001710653 ], [ 361015.41160000115633, 256189.970300000160933 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503034600", "MAP": "G9-1970-T72", "PARCEL_NAM": "14N-5", "ACRE": "0.13", "LONGITUDE": -64.91018092, "LATITUDE": 18.33457169, "OBJECTID_1": 20102, "PARCEL_NO_": "105503034600", "Tax_Legal_": "14N-5 EST THOMAS NEW QTR", "Name": "ROSALIND A STAPLETON & JEVON N HANLEY", "Address": "PO Box 10356", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.614280878100004, "SHAPE_Area": 531.410349236 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361014.196400001645088, 256143.308699999004602 ], [ 361013.227899998426437, 256137.364799998700619 ], [ 360986.136799998581409, 256139.226599998772144 ], [ 360983.520099997520447, 256139.501200001686811 ], [ 360983.506399996578693, 256139.673300001770258 ], [ 360987.808899998664856, 256158.016800001263618 ], [ 360988.131099998950958, 256157.981199998408556 ], [ 360995.894299998879433, 256157.122600000351667 ], [ 361015.710100002586842, 256154.931200001388788 ], [ 361014.196400001645088, 256143.308699999004602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503037100", "MAP": "F9-3611-T78", "PARCEL_NAM": "14N-23", "ACRE": "03.13", "LONGITUDE": -64.91018153, "LATITUDE": 18.33362654, "OBJECTID_1": 20119, "PARCEL_NO_": "105503037100", "Tax_Legal_": "EST. THOMAS 14N-23 NEW QTR", "Name": "BROOKS, EDITH V", "Address": "4326 Thorngate Ln", "City": "Acworth", "State": "Georgia", "Zip": 30101, "Country": "United States", "Land_Value": 27200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.36703242, "SHAPE_Area": 612.87969033100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361013.196099996566772, 256052.7347999997437 ], [ 361009.314300000667572, 256024.184799998998642 ], [ 360988.038900002837181, 256034.479400001466274 ], [ 360990.817100003361702, 256055.646099999547005 ], [ 360992.123700000345707, 256059.793000001460314 ], [ 361013.196099996566772, 256052.7347999997437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503080600", "MAP": "G9-2261-T73", "PARCEL_NAM": "14L", "ACRE": "10.8", "LONGITUDE": -64.9111381, "LATITUDE": 18.33260696, "OBJECTID_1": 20359, "PARCEL_NO_": "105503080600", "Tax_Legal_": "14L EST THOMAS 6E NEW QTR", "Name": "RAYDIA INC", "Address": "PO Box 1354", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 970500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 759.79150953099997, "SHAPE_Area": 33927.505356399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360998.305100001394749, 255842.536299999803305 ], [ 360799.506700001657009, 255844.670099999755621 ], [ 360799.997100003063679, 256014.055100001394749 ], [ 360820.162100002169609, 256013.375700000673532 ], [ 360858.881300002336502, 256011.79280000180006 ], [ 360871.787699997425079, 256011.265099998563528 ], [ 360918.573600001633167, 256009.3260000012815 ], [ 360940.904899999499321, 256008.655200000852346 ], [ 360941.116599999368191, 256014.158599998801947 ], [ 360941.247900001704693, 256017.447200000286102 ], [ 361008.276699997484684, 256016.553599998354912 ], [ 360998.169399999082088, 255942.216400001198053 ], [ 360997.164700001478195, 255870.858500000089407 ], [ 360997.30120000243187, 255854.816599998623133 ], [ 360998.305100001394749, 255842.536299999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503036200", "MAP": "G9-2205-T73", "PARCEL_NAM": "14N-8", "ACRE": "0.10", "LONGITUDE": -64.91013885, "LATITUDE": 18.33383923, "OBJECTID_1": 20115, "PARCEL_NO_": "105503036200", "Tax_Legal_": "14N-8 EST THOMAS 6E NEW QTR", "Name": "ANDY RANDY MICHAEL BAILEY & KIMBERLY E BOYD", "Address": "PO Box 305361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035361, "Country": "United States", "Land_Value": 21000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.475985891899995, "SHAPE_Area": 433.18767301100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361013.457699999213219, 256054.659200001507998 ], [ 361013.196099996566772, 256052.7347999997437 ], [ 360992.123700000345707, 256059.793000001460314 ], [ 360996.137999996542931, 256072.534200001507998 ], [ 360996.902500003576279, 256074.960700001567602 ], [ 360998.928700000047684, 256079.58390000090003 ], [ 361016.690600000321865, 256074.178100001066923 ], [ 361014.863499999046326, 256064.998399998992682 ], [ 361013.457699999213219, 256054.659200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503036200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90999043, "LATITUDE": 18.33431922, "OBJECTID_1": 20115, "PARCEL_NO_": "105503036200", "Tax_Legal_": "14N-8 EST THOMAS 6E NEW QTR", "Name": "ANDY RANDY MICHAEL BAILEY & KIMBERLY E BOYD", "Address": "PO Box 305361", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035361, "Country": "United States", "Land_Value": 21000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 27.119550690499999, "SHAPE_Area": 43.356209261099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361023.860500000417233, 256115.874200001358986 ], [ 361015.324400000274181, 256118.434999998658895 ], [ 361016.789800003170967, 256122.853799998760223 ], [ 361024.527800001204014, 256121.531199999153614 ], [ 361024.096900001168251, 256117.002999998629093 ], [ 361023.860500000417233, 256115.874200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503080800", "MAP": "F9-2905-T71", "PARCEL_NAM": "14N-3", "ACRE": "0.10", "LONGITUDE": -64.91034695, "LATITUDE": 18.33387011, "OBJECTID_1": 20361, "PARCEL_NO_": "105503080800", "Tax_Legal_": "14N-3 EST THOMAS NEW QTR", "Name": "HODGE, IVAN V", "Address": "Po Box 2996", "City": "VG 1110", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 21000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.779703497400007, "SHAPE_Area": 207.38958283900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360987.911399997770786, 256061.808100000023842 ], [ 360968.08839999884367, 256065.671100001782179 ], [ 360970.080300003290176, 256067.750799998641014 ], [ 360974.049099996685982, 256070.264299999922514 ], [ 360979.60530000180006, 256072.513300001621246 ], [ 360983.574100002646446, 256073.968499999493361 ], [ 360987.54280000180006, 256077.011199999600649 ], [ 360994.640100002288818, 256083.153999999165535 ], [ 360993.318999998271465, 256079.988899998366833 ], [ 360987.911399997770786, 256061.808100000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503080700", "MAP": "F9-4043-T73", "PARCEL_NAM": "14N-10", "ACRE": "0.12", "LONGITUDE": -64.91043711, "LATITUDE": 18.33371216, "OBJECTID_1": 20360, "PARCEL_NO_": "105503080700", "Tax_Legal_": "THOMAS ESTATE 14N-10 NEW QTR", "Name": "JONES, SHIRLEY & HARRIGAN, SHERYL J.", "Address": "PO Box 305294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.46866902399999, "SHAPE_Area": 594.82149918499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360986.626000002026558, 256057.212900001555681 ], [ 360983.828900001943111, 256035.535700000822544 ], [ 360956.510999999940395, 256048.215700000524521 ], [ 360954.559799998998642, 256049.121399998664856 ], [ 360968.08839999884367, 256065.671100001782179 ], [ 360987.911399997770786, 256061.808100000023842 ], [ 360987.525100000202656, 256060.509399998933077 ], [ 360986.626000002026558, 256057.212900001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105503080800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91072983, "LATITUDE": 18.33380852, "OBJECTID_1": 20361, "PARCEL_NO_": "105503080800", "Tax_Legal_": "14N-3 EST THOMAS NEW QTR", "Name": "HODGE, IVAN V", "Address": "Po Box 2996", "City": "VG 1110", "State": null, "Zip": 0, "Country": "British Virgin Islands", "Land_Value": 21000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.7735215866399998, "SHAPE_Area": 0.37172638895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360942.707400001585484, 256061.314699999988079 ], [ 360942.30799999833107, 256062.926899999380112 ], [ 360942.757299996912479, 256062.974700000137091 ], [ 360942.707400001585484, 256061.314699999988079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105404190600", "MAP": "D9-2911-T85", "PARCEL_NAM": "4Aa", "ACRE": "0.25", "LONGITUDE": -64.91658499, "LATITUDE": 18.33557363, "OBJECTID_1": 19606, "PARCEL_NO_": "105404190600", "Tax_Legal_": "4A ESTATE THOMAS 6E NEW QUARTER", "Name": "JAMIL. MOHAMMED & ABDULGHANI, Y.", "Address": "PO Box 11669", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24500, "Improved_V": 39400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.61414685899999, "SHAPE_Area": 1414.4510181600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360332.869599997997284, 256240.299600001424551 ], [ 360305.594800002872944, 256228.8114 ], [ 360303.816100001335144, 256234.386500000953674 ], [ 360302.993600003421307, 256236.279599998146296 ], [ 360302.165700003504753, 256238.806000001728535 ], [ 360298.870300002396107, 256247.011599998921156 ], [ 360298.049599997699261, 256248.69370000064373 ], [ 360296.404600001871586, 256252.479899998754263 ], [ 360296.377599999308586, 256255.646099999547005 ], [ 360318.049199998378754, 256267.433600001037121 ], [ 360337.305399999022484, 256278.779100000858307 ], [ 360347.145599998533726, 256246.312800001353025 ], [ 360332.869599997997284, 256240.299600001424551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903037900", "MAP": "F9-2543-T70", "PARCEL_NAM": "297D", "ACRE": "0.07", "LONGITUDE": -64.92527394, "LATITUDE": 18.3482487, "OBJECTID_1": 4891, "PARCEL_NO_": "102903037900", "Tax_Legal_": "HOSPITAL GROUND 297D GR NORTHSIDE", "Name": "GEORGE, JR. GORDON & JANICE", "Address": "447 Highland St SE", "City": "Grand Rapids", "State": "Michigan", "Zip": 49507, "Country": "United States", "Land_Value": 8900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.188745927100001, "SHAPE_Area": 276.59868471800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359398.777800001204014, 257635.557000000029802 ], [ 359381.952399998903275, 257646.639699999243021 ], [ 359384.320900000631809, 257659.370400000363588 ], [ 359385.880199998617172, 257659.186999998986721 ], [ 359393.299500003457069, 257655.586399998515844 ], [ 359402.795500002801418, 257648.136900000274181 ], [ 359399.240900002419949, 257637.006900001317263 ], [ 359398.777800001204014, 257635.557000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604030600", "MAP": "A9-425-T93", "PARCEL_NAM": "175A-2", "ACRE": "0.20", "LONGITUDE": -64.88754741, "LATITUDE": 18.33738676, "OBJECTID_1": 21776, "PARCEL_NO_": "105604030600", "Tax_Legal_": "REM 175 & 175A-2 ANNAS RETREAT NEW QUARTER", "Name": "THE 1994 OTTLEY FAMILY TRUST", "Address": "PO Box 7908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14200, "Improved_V": 260400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.535483169, "SHAPE_Area": 628.36090684400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363388.257799997925758, 256457.913699999451637 ], [ 363381.370099999010563, 256459.438999999314547 ], [ 363379.726999998092651, 256468.9662000015378 ], [ 363376.341700002551079, 256487.72580000013113 ], [ 363394.037399999797344, 256492.936900001019239 ], [ 363402.353500001132488, 256496.076200000941753 ], [ 363405.218900002539158, 256494.88230000063777 ], [ 363405.695200003683567, 256491.072299998253584 ], [ 363401.726400002837181, 256483.134799998253584 ], [ 363394.582599997520447, 256470.276000000536442 ], [ 363388.257799997925758, 256457.913699999451637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903037000", "MAP": "D9-5719-T94", "PARCEL_NAM": "282B-3", "ACRE": "0.07", "LONGITUDE": -64.92664357, "LATITUDE": 18.34798167, "OBJECTID_1": 4882, "PARCEL_NO_": "102903037000", "Tax_Legal_": "HOSPITAL GROUND 292B-3 9 NEW QTR", "Name": "NIBBS, LARRY", "Address": "PO Box 10880", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.188651988499998, "SHAPE_Area": 337.53218732699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359233.416799999773502, 257611.754099998623133 ], [ 359234.174699999392033, 257622.933499999344349 ], [ 359259.311599999666214, 257624.44539999961853 ], [ 359260.345399998128414, 257615.19819999858737 ], [ 359261.107600003480911, 257609.545699998736382 ], [ 359248.725000001490116, 257610.974500000476837 ], [ 359233.416799999773502, 257611.754099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903038700", "MAP": "D9-5719-T94", "PARCEL_NAM": "292B-2", "ACRE": "0.08", "LONGITUDE": -64.92652629, "LATITUDE": 18.348154, "OBJECTID_1": 4900, "PARCEL_NO_": "102903038700", "Tax_Legal_": "HOSPITAL GROUND 292B-2 GT. NORTHSIDE", "Name": "TURNBULL, WALLACE", "Address": "PO Box 1841", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 10200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 77.668775741600001, "SHAPE_Area": 361.63305717700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359271.846500001847744, 257628.508600000292063 ], [ 359248.497000001370907, 257628.677000001072884 ], [ 359247.890900000929832, 257644.182900000363588 ], [ 359271.108800001442432, 257644.073899999260902 ], [ 359271.846500001847744, 257628.508600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903036800", "MAP": "D9-5719-T94", "PARCEL_NAM": "REM 292B", "ACRE": "0.15", "LONGITUDE": -64.92650953, "LATITUDE": 18.34810012, "OBJECTID_1": 4880, "PARCEL_NO_": "102903036800", "Tax_Legal_": "HOSPITAL GROUND 292B KINGS QTR", "Name": "RICHARDSON, URIEL,GEORGE,RANDY R.,DAREN LESLE,WENDY AND OTHERS", "Address": "PO Box 304324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.87316198799999, "SHAPE_Area": 556.29859613899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359248.779200002551079, 257624.769200000911951 ], [ 359229.198700003325939, 257623.515700001269579 ], [ 359226.738099999725819, 257621.293200001120567 ], [ 359225.071199998259544, 257617.324499998241663 ], [ 359224.198100000619888, 257614.387600000947714 ], [ 359224.305500000715256, 257611.059500001370907 ], [ 359222.054999999701977, 257610.815699998289347 ], [ 359222.000100001692772, 257615.372299998998642 ], [ 359221.886900000274181, 257628.670299999415874 ], [ 359248.497000001370907, 257628.677000001072884 ], [ 359261.399800002574921, 257628.57149999961257 ], [ 359271.846500001847744, 257628.508600000292063 ], [ 359271.108800001442432, 257644.073899999260902 ], [ 359284.652800001204014, 257644.024099998176098 ], [ 359287.883599996566772, 257644.012200001627207 ], [ 359288.139700002968311, 257631.97749999910593 ], [ 359288.190700002014637, 257629.651900000870228 ], [ 359287.301399998366833, 257628.83390000090003 ], [ 359284.792199999094009, 257627.670800000429153 ], [ 359279.363799996674061, 257625.658900000154972 ], [ 359272.378799997270107, 257624.706399999558926 ], [ 359262.456900000572205, 257624.309500001370907 ], [ 359249.598200000822544, 257624.865100000053644 ], [ 359248.779200002551079, 257624.769200000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903036800", "MAP": "D9-5719-T94", "PARCEL_NAM": "292B-5", "ACRE": "0.04", "LONGITUDE": -64.92679106, "LATITUDE": 18.34799238, "OBJECTID_1": 4880, "PARCEL_NO_": "102903036800", "Tax_Legal_": "HOSPITAL GROUND 292B KINGS QTR", "Name": "RICHARDSON, URIEL,GEORGE,RANDY R.,DAREN LESLE,WENDY AND OTHERS", "Address": "PO Box 304324", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 20900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.725315354200006, "SHAPE_Area": 118.705660679 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359234.174699999392033, 257622.933499999344349 ], [ 359233.416799999773502, 257611.754099998623133 ], [ 359231.579999998211861, 257611.847600001841784 ], [ 359224.305500000715256, 257611.059500001370907 ], [ 359224.198100000619888, 257614.387600000947714 ], [ 359225.071199998259544, 257617.324499998241663 ], [ 359226.738099999725819, 257621.293200001120567 ], [ 359229.198700003325939, 257623.515700001269579 ], [ 359248.779200002551079, 257624.769200000911951 ], [ 359249.598200000822544, 257624.865100000053644 ], [ 359259.311599999666214, 257624.44539999961853 ], [ 359234.174699999392033, 257622.933499999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301043700", "MAP": "D9-6828-T000", "PARCEL_NAM": "178-230", "ACRE": null, "LONGITUDE": -64.94345234, "LATITUDE": 18.34114814, "OBJECTID_1": 9128, "PARCEL_NO_": "105301043700", "Tax_Legal_": "178-230 ALTONA&WELGUNST KRONPRINDSENS QTR", "Name": "MARSHAM, PANSY E. (life estate)", "Address": "3516 178-230 Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19700, "Improved_V": 138500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.096899736, "SHAPE_Area": 830.2716191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357497.06360000371933, 256852.016600001603365 ], [ 357491.568199999630451, 256828.2010000012815 ], [ 357479.444499999284744, 256833.692999999970198 ], [ 357457.373199999332428, 256841.982700001448393 ], [ 357457.780900001525879, 256844.584800001233816 ], [ 357461.026600003242493, 256862.813700001686811 ], [ 357497.06360000371933, 256852.016600001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301044000", "MAP": "D9-7063-T002", "PARCEL_NAM": "178-235", "ACRE": null, "LONGITUDE": -64.94296218, "LATITUDE": 18.34112504, "OBJECTID_1": 9131, "PARCEL_NO_": "105301044000", "Tax_Legal_": "178-235 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "WILLIAMS, WASHINGTON E. & YVONNE", "Address": "3508 Estate Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32500, "Improved_V": 63100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.690214082699995, "SHAPE_Area": 485.50871473799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357529.079199999570847, 256831.102400001138449 ], [ 357518.406199999153614, 256828.2010000012815 ], [ 357521.704999998211861, 256856.285900000482798 ], [ 357538.118500001728535, 256860.034600000828505 ], [ 357538.405100002884865, 256834.418299999088049 ], [ 357529.079199999570847, 256831.102400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301042400", "MAP": null, "PARCEL_NAM": "178-50", "ACRE": null, "LONGITUDE": -64.94282556, "LATITUDE": 18.34127815, "OBJECTID_1": 9115, "PARCEL_NO_": "105301042400", "Tax_Legal_": "ALTONA & WELGUNST 178-50 KRONPRINDSENS QTR", "Name": "ILES, IVORLEE & EVIE L.", "Address": "443 NE 103 St", "City": "Miami Shores", "State": "Florida", "Zip": 33138, "Country": "United States", "Land_Value": 64600, "Improved_V": 38200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 7.09303555359, "SHAPE_Area": 0.02373354497 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357541.048000000417233, 256860.703699998557568 ], [ 357544.497500002384186, 256861.505300000309944 ], [ 357544.496899999678135, 256861.491399999707937 ], [ 357541.048000000417233, 256860.703699998557568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301044600", "MAP": "D9-7102-T002", "PARCEL_NAM": "178-237", "ACRE": null, "LONGITUDE": -64.94271459, "LATITUDE": 18.34142457, "OBJECTID_1": 9135, "PARCEL_NO_": "105301044600", "Tax_Legal_": "ALTONA&WELGUNST 178-234 & 178-237 KRONPRINDSENS QTR", "Name": "PONDE, IRENE & GREENAWAY,KEITHROY", "Address": "3507 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53000, "Improved_V": 17900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.36096494100001, "SHAPE_Area": 659.17986360500004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357544.497500002384186, 256861.505300000309944 ], [ 357541.048000000417233, 256860.703699998557568 ], [ 357541.047499999403954, 256860.738099999725819 ], [ 357545.800200000405312, 256892.046599999070168 ], [ 357563.456799998879433, 256891.053399998694658 ], [ 357570.00959999859333, 256890.68470000103116 ], [ 357566.196900002658367, 256872.688700001686811 ], [ 357565.512699998915195, 256869.459199998527765 ], [ 357564.828599996864796, 256866.230099998414516 ], [ 357563.819799996912479, 256865.995600000023842 ], [ 357544.497500002384186, 256861.505300000309944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301120300", "MAP": "D9-2770-T84", "PARCEL_NAM": "200-5A-9", "ACRE": null, "LONGITUDE": -64.94662546000001, "LATITUDE": 18.34178308, "OBJECTID_1": 9429, "PARCEL_NO_": "105301120300", "Tax_Legal_": "ALTONA & WELGUNST 200-5A CROWN PRINCE QTR", "Name": "WALK-IN HOMES, INC.", "Address": "BOX 2463", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 5300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 399.76964357899999, "SHAPE_Area": 1228.12775435 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357152.362899996340275, 256821.609000001102686 ], [ 357142.568400003015995, 256835.461100000888109 ], [ 357143.347800001502037, 256838.633799999952316 ], [ 357143.119400002062321, 256865.440900001674891 ], [ 357143.532600000500679, 256870.456599999219179 ], [ 357143.850199997425079, 256874.312800001353025 ], [ 357142.874899998307228, 256894.147599998861551 ], [ 357138.598700001835823, 256922.821299999952316 ], [ 357135.168499998748302, 256946.857900001108646 ], [ 357132.569700002670288, 256967.945999998599291 ], [ 357130.910400003194809, 256973.420800000429153 ], [ 357125.914300002157688, 256991.956199999898672 ], [ 357123.362300001084805, 257007.556200001388788 ], [ 357128.984899997711182, 257010.135299999266863 ], [ 357132.375500001013279, 256990.742499999701977 ], [ 357139.025600001215935, 256967.365499999374151 ], [ 357139.89130000025034, 256960.406500000506639 ], [ 357144.993500001728535, 256929.417500000447035 ], [ 357145.05460000038147, 256922.240899998694658 ], [ 357148.463299997150898, 256900.737199999392033 ], [ 357150.304300002753735, 256873.943399999290705 ], [ 357148.8462999984622, 256855.777399998158216 ], [ 357149.756899997591972, 256843.541400000452995 ], [ 357153.073899999260902, 256832.802799999713898 ], [ 357155.530599996447563, 256828.390000000596046 ], [ 357157.163000002503395, 256826.081300001591444 ], [ 357154.752999998629093, 256825.006099998950958 ], [ 357154.815999999642372, 256817.618299998342991 ], [ 357152.362899996340275, 256821.609000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904017600", "MAP": "D9-6470-T98", "PARCEL_NAM": "1-3A", "ACRE": "0.59", "LONGITUDE": -64.91647927, "LATITUDE": 18.34982141, "OBJECTID_1": 4988, "PARCEL_NO_": "102904017600", "Tax_Legal_": "ST JOSEPH & ROSENDAHL 1-3A ROSENDAHL", "Name": "GREEN, VENUS A.", "Address": "PO Box 302126", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70500, "Improved_V": 270000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.86093234800001, "SHAPE_Area": 2340.5556980900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360354.534100003540516, 257821.810100000351667 ], [ 360349.201300002634525, 257816.69310000166297 ], [ 360326.006999999284744, 257794.33839999884367 ], [ 360299.931699998676777, 257826.211199998855591 ], [ 360281.231799997389317, 257844.212200000882149 ], [ 360294.17620000243187, 257857.579199999570847 ], [ 360344.66889999806881, 257842.329799998551607 ], [ 360354.534100003540516, 257821.810100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045600", "MAP": "F9-600-T60", "PARCEL_NAM": "136", "ACRE": "1.00", "LONGITUDE": -64.96007439, "LATITUDE": 18.34957706, "OBJECTID_1": 3420, "PARCEL_NO_": "102703045600", "Tax_Legal_": "CONTANT 136 SOUTHSIDE QTR", "Name": "FRASER, GAIL & LORNA", "Address": "PO Box 9304", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 80500, "Improved_V": 498200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.480052812, "SHAPE_Area": 3736.26293596 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355750.187600001692772, 257761.150299999862909 ], [ 355736.598600000143051, 257723.280600000172853 ], [ 355687.293300002813339, 257744.868299998342991 ], [ 355674.394799999892712, 257766.69649999961257 ], [ 355699.530299998819828, 257804.730399999767542 ], [ 355707.592799998819828, 257814.099800001829863 ], [ 355712.652800001204014, 257808.298200000077486 ], [ 355716.738300003111362, 257801.9989 ], [ 355728.168799996376038, 257785.416000001132488 ], [ 355740.382100000977516, 257771.583799999207258 ], [ 355750.187600001692772, 257761.150299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045700", "MAP": "F9-600-T60", "PARCEL_NAM": "137", "ACRE": ".74", "LONGITUDE": -64.9594248, "LATITUDE": 18.34892086, "OBJECTID_1": 3421, "PARCEL_NO_": "102703045700", "Tax_Legal_": "137 ESTATE CONTANT NO. 7A SOUTHSIDE QUARTER", "Name": "KHALIL, FARIS M. & AMAL A. (TRUSTEES)", "Address": "PO Box 301800", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52700, "Improved_V": 371000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.74590180199999, "SHAPE_Area": 3718.8175808400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355832.716399997472763, 257629.006999999284744 ], [ 355827.882100000977516, 257628.545200001448393 ], [ 355771.960100002586842, 257674.092099998146296 ], [ 355748.478299997746944, 257718.079199999570847 ], [ 355736.598600000143051, 257723.280600000172853 ], [ 355750.187600001692772, 257761.150299999862909 ], [ 355752.588299997150898, 257758.595899999141693 ], [ 355756.692699998617172, 257753.175999999046326 ], [ 355764.821400001645088, 257742.441799998283386 ], [ 355775.443800002336502, 257726.063499998301268 ], [ 355802.40089999884367, 257685.331900000572205 ], [ 355821.149300001561642, 257661.631799999624491 ], [ 355832.612099997699261, 257641.249600000679493 ], [ 355834.267899997532368, 257636.196899998933077 ], [ 355834.3074000030756, 257631.553100001066923 ], [ 355832.716399997472763, 257629.006999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045500", "MAP": "G9-466-T57", "PARCEL_NAM": "18A", "ACRE": ".59", "LONGITUDE": -64.96046476, "LATITUDE": 18.3499827, "OBJECTID_1": 3419, "PARCEL_NO_": "102703045500", "Tax_Legal_": "CONTANT 18A 7A SOUTHSIDE QTR", "Name": "OELSNER, JAMES", "Address": "P.O. BOX 2458", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 52500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.120992591, "SHAPE_Area": 2897.1327903500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355674.394799999892712, 257766.69649999961257 ], [ 355633.053599998354912, 257817.827300000935793 ], [ 355672.65089999884367, 257845.532400000840425 ], [ 355686.64580000191927, 257832.149999998509884 ], [ 355703.695299997925758, 257818.568500000983477 ], [ 355707.592799998819828, 257814.099800001829863 ], [ 355699.530299998819828, 257804.730399999767542 ], [ 355674.394799999892712, 257766.69649999961257 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703045400", "MAP": "G9-466-T57", "PARCEL_NAM": "18", "ACRE": "0.59", "LONGITUDE": -64.96081605000001, "LATITUDE": 18.35038592, "OBJECTID_1": 3418, "PARCEL_NO_": "102703045400", "Tax_Legal_": "CONTANT 18 7A SOUTHSIDE QTR", "Name": "BOULAI, FELIX", "Address": "32 Flemington Oaks Dr", "City": "Hinesville", "State": "Georgia", "Zip": 31313, "Country": "United States", "Land_Value": 53200, "Improved_V": 61100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.93367348699999, "SHAPE_Area": 2590.4156153899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355633.053599998354912, 257817.827300000935793 ], [ 355602.984899997711182, 257854.87049999833107 ], [ 355623.199600003659725, 257896.647599998861551 ], [ 355650.082999996840954, 257864.570300001651049 ], [ 355667.954999998211861, 257849.095600001513958 ], [ 355669.572999998927116, 257848.475600000470877 ], [ 355672.65089999884367, 257845.532400000840425 ], [ 355633.053599998354912, 257817.827300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601041100", "MAP": "D9-4869-T90", "PARCEL_NAM": "39M", "ACRE": "0.39", "LONGITUDE": -64.97878774, "LATITUDE": 18.36145688, "OBJECTID_1": 2342, "PARCEL_NO_": "102601041100", "Tax_Legal_": "PEARL 39M SOUTHSIDE QTR.", "Name": "MICHAEL, SHELIA", "Address": "PO Box 8012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 70500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.48730670500001, "SHAPE_Area": 1431.4475466599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353738.965300001204014, 259046.856300000101328 ], [ 353733.168799996376038, 259041.711800001561642 ], [ 353695.860500000417233, 259061.083399999886751 ], [ 353699.714299999177456, 259067.250599998980761 ], [ 353711.222800001502037, 259087.654599998146296 ], [ 353753.840700000524521, 259066.122900001704693 ], [ 353755.170500002801418, 259065.451099999248981 ], [ 353744.999099999666214, 259052.211399998515844 ], [ 353738.965300001204014, 259046.856300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104011600", "MAP": "A9-508B-T98", "PARCEL_NAM": "115", "ACRE": "1.00", "LONGITUDE": -64.94882446, "LATITUDE": 18.3210048, "OBJECTID_1": 87174, "PARCEL_NO_": "507104011600", "Tax_Legal_": "115 WATER ISLAND No.10 SOUTHSIE QTR.", "Name": "DONOVAN AUBAIN, JENNIFER", "Address": "28546 Lockeridge Springs Dr", "City": "Spring", "State": "Texas", "Zip": 77386, "Country": "United States", "Land_Value": 160700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 257.98798814600002, "SHAPE_Area": 3930.2866066400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356963.961000002920628, 254595.869600001722574 ], [ 356962.486299999058247, 254594.495600000023842 ], [ 356959.313199996948242, 254588.347899999469519 ], [ 356956.113099999725819, 254585.366399999707937 ], [ 356955.322999998927116, 254583.460099998861551 ], [ 356956.15259999781847, 254580.722699999809265 ], [ 356955.414700001478195, 254572.695099998265505 ], [ 356954.622699998319149, 254570.999899998307228 ], [ 356951.415500000119209, 254568.862700000405312 ], [ 356945.767700001597404, 254569.238699998706579 ], [ 356937.670400001108646, 254573.183200001716614 ], [ 356936.06139999628067, 254572.747800000011921 ], [ 356933.665799997746944, 254569.984000001102686 ], [ 356931.248700000345707, 254569.753100000321865 ], [ 356922.355899997055531, 254572.424499999731779 ], [ 356920.622000001370907, 254572.334600001573563 ], [ 356887.286100000143051, 254640.845600001513958 ], [ 356889.504600003361702, 254642.449799999594688 ], [ 356897.535300001502037, 254646.315200001001358 ], [ 356923.277999997138977, 254653.491999998688698 ], [ 356931.483199998736382, 254656.855799999088049 ], [ 356963.961000002920628, 254595.869600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010100", "MAP": "A9-508B-T98", "PARCEL_NAM": "AREA M1", "ACRE": null, "LONGITUDE": -64.94801114000001, "LATITUDE": 18.32123531, "OBJECTID_1": 87159, "PARCEL_NO_": "507104010100", "Tax_Legal_": "WATER ISLAND SOUTHSIDE QUARTER", "Name": "GOVERNMENT OF THE U. S. V. I.", "Address": "000 USVI", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12173300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 709.51928494499998, "SHAPE_Area": 4722.4440292700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356963.961000002920628, 254595.869600001722574 ], [ 356931.483199998736382, 254656.855799999088049 ], [ 356950.59910000115633, 254664.692499998956919 ], [ 356975.526399999856949, 254672.918099999427795 ], [ 356991.171899996697903, 254634.838199999183416 ], [ 356992.802500002086163, 254632.740600001066923 ], [ 356992.818599998950958, 254630.840900000184774 ], [ 356996.918499998748302, 254622.852899998426437 ], [ 356996.93469999730587, 254620.953200001269579 ], [ 357031.509099997580051, 254632.635200001299381 ], [ 357061.329999998211861, 254634.356899999082088 ], [ 357119.488799996674061, 254622.589499998837709 ], [ 357108.614799998700619, 254668.518899999558926 ], [ 357094.526199996471405, 254713.1554000005126 ], [ 357094.504600003361702, 254715.688400000333786 ], [ 357096.905599996447563, 254717.818900000303984 ], [ 357102.544399999082088, 254718.498399998992682 ], [ 357104.975900001823902, 254717.040600001811981 ], [ 357107.481200002133846, 254706.928599998354912 ], [ 357109.109999999403954, 254705.042100001126528 ], [ 357109.160300001502037, 254699.131900001317263 ], [ 357110.047600001096725, 254689.640000000596046 ], [ 357124.373400002717972, 254617.140999998897314 ], [ 357126.027400001883507, 254612.299400001764297 ], [ 357126.070600003004074, 254607.233500000089407 ], [ 357128.57940000295639, 254596.699400000274181 ], [ 357121.26690000295639, 254603.183400001376867 ], [ 357111.535400003194809, 254609.647700000554323 ], [ 357079.977700002491474, 254622.477200001478195 ], [ 357054.129000000655651, 254627.754099998623133 ], [ 357036.379299998283386, 254628.875399999320507 ], [ 357032.353100001811981, 254628.209100000560284 ], [ 357020.294399999082088, 254623.888599999248981 ], [ 357002.64360000193119, 254613.400499999523163 ], [ 356969.69990000128746, 254599.620900001376867 ], [ 356964.086300000548363, 254595.986400000751019 ], [ 356963.961000002920628, 254595.869600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-151", "ACRE": "0.13", "LONGITUDE": -64.87844041, "LATITUDE": 18.3381743, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.940221918999995, "SHAPE_Area": 292.15392519 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364358.116400003433228, 256569.602099999785423 ], [ 364354.891099996864796, 256565.611400000751019 ], [ 364354.854699999094009, 256565.470800001174212 ], [ 364348.290500000119209, 256565.918499998748302 ], [ 364348.14469999819994, 256565.71229999884963 ], [ 364347.983499996364117, 256566.072000000625849 ], [ 364344.664599999785423, 256568.490800000727177 ], [ 364333.345499999821186, 256576.740299999713898 ], [ 364344.822599999606609, 256578.612100001424551 ], [ 364366.5641999989748, 256582.167599998414516 ], [ 364368.568499997258186, 256582.534299999475479 ], [ 364365.978799998760223, 256579.330099999904633 ], [ 364358.116400003433228, 256569.602099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703045900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87840686, "LATITUDE": 18.33809378, "OBJECTID_1": 23055, "PARCEL_NO_": "105703045900", "Tax_Legal_": "173-153 ANNAS RETREAT NEW QUARTER", "Name": "FAULKNER, ESTHER REBECCA", "Address": "PO Box 7802", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17800, "Improved_V": 102300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.1174765921900001, "SHAPE_Area": 0.01332236997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364355.3800999969244, 256565.294799998402596 ], [ 364354.854699999094009, 256565.470800001174212 ], [ 364355.044600002467632, 256565.457899998873472 ], [ 364355.3800999969244, 256565.294799998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-149", "ACRE": "0.10", "LONGITUDE": -64.87814623, "LATITUDE": 18.33813951, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.185216402999998, "SHAPE_Area": 435.83495073400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364386.935999996960163, 256557.214200001209974 ], [ 364386.307800002396107, 256555.228300001472235 ], [ 364384.67059999704361, 256555.48030000180006 ], [ 364375.494599997997284, 256558.554900001734495 ], [ 364371.126800000667572, 256560.018399998545647 ], [ 364378.111299999058247, 256584.2804000005126 ], [ 364378.640900000929832, 256584.377300001680851 ], [ 364385.897799998521805, 256584.436700001358986 ], [ 364393.971699997782707, 256583.236299999058247 ], [ 364386.935999996960163, 256557.214200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703050700", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-220", "ACRE": "0.09", "LONGITUDE": -64.87865033, "LATITUDE": 18.33778348, "OBJECTID_1": 23063, "PARCEL_NO_": "105703050700", "Tax_Legal_": "173-220 ANNAS RETREAT NEW QUARTER", "Name": "LESLIE, JEANIL", "Address": "PO Box 9020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11300, "Improved_V": 156800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.314050280700002, "SHAPE_Area": 348.17024047000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364342.944200001657009, 256538.237500000745058 ], [ 364326.269900001585484, 256515.7685999982059 ], [ 364323.568199999630451, 256517.854299999773502 ], [ 364317.067400000989437, 256523.71169999986887 ], [ 364316.58219999819994, 256524.131000000983477 ], [ 364332.945100001990795, 256545.684799998998642 ], [ 364340.311999998986721, 256540.156199999153614 ], [ 364342.944200001657009, 256538.237500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703051600", "MAP": "A9-102B-T68", "PARCEL_NAM": "173-211", "ACRE": "0.10", "LONGITUDE": -64.87765215, "LATITUDE": 18.33740862, "OBJECTID_1": 23072, "PARCEL_NO_": "105703051600", "Tax_Legal_": "ANNAS RETREAT 173-211 NEW QTR", "Name": "PRENTICE, CAROLINE & JACQUELIN", "Address": "PO Box 10860", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13700, "Improved_V": 94300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.758759598300003, "SHAPE_Area": 409.58363860700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364445.637900002300739, 256502.26410000026226 ], [ 364439.250299997627735, 256474.260400000959635 ], [ 364433.589900001883507, 256476.113899998366833 ], [ 364431.163800001144409, 256476.938400000333786 ], [ 364427.92960000038147, 256477.967399999499321 ], [ 364425.264499999582767, 256478.641800001263618 ], [ 364431.748400002717972, 256505.89809999987483 ], [ 364433.340000003576279, 256505.453899998217821 ], [ 364435.764300003647804, 256504.840399999171495 ], [ 364445.637900002300739, 256502.26410000026226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703052400", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-203", "ACRE": "0.10", "LONGITUDE": -64.87655002, "LATITUDE": 18.33712581, "OBJECTID_1": 23080, "PARCEL_NO_": "105703052400", "Tax_Legal_": "ANNAS RETREAT 173-203 NEW QTR.", "Name": "HANSEN, ROSE", "Address": "7814 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021960, "Country": "United States", "Land_Value": 13700, "Improved_V": 94800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.428691787800005, "SHAPE_Area": 417.58810826400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364562.599200002849102, 256472.019600000232458 ], [ 364556.091399997472763, 256444.201999999582767 ], [ 364549.156999997794628, 256446.028999999165535 ], [ 364541.88400000333786, 256447.869300000369549 ], [ 364548.507399998605251, 256475.711599998176098 ], [ 364550.52139999717474, 256475.171100001782179 ], [ 364562.599200002849102, 256472.019600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703052600", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-201", "ACRE": "0.10", "LONGITUDE": -64.87627618, "LATITUDE": 18.33705367, "OBJECTID_1": 23082, "PARCEL_NO_": "105703052600", "Tax_Legal_": "ANNAS RETREAT 173-201 NEW QTR", "Name": "JUDY PEREZ-FERDINAND, N S SMITH & N J CHARLES", "Address": "394-308 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 128600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.8486985487, "SHAPE_Area": 478.27928566999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364592.931599996984005, 256464.229200001806021 ], [ 364585.653800003230572, 256436.079100001603365 ], [ 364576.63629999756813, 256438.654500000178814 ], [ 364575.020099997520447, 256439.063499998301268 ], [ 364569.36150000244379, 256440.705899998545647 ], [ 364577.1908999979496, 256468.212200000882149 ], [ 364582.847699999809265, 256466.780799999833107 ], [ 364592.931599996984005, 256464.229200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703052800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-199", "ACRE": "0.10", "LONGITUDE": -64.87597783, "LATITUDE": 18.33698207, "OBJECTID_1": 23084, "PARCEL_NO_": "105703052800", "Tax_Legal_": "ANNAS RETREAT 173-199 NEW QTR", "Name": "REAVES, SADIE", "Address": "PO Box 502752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 16300, "Improved_V": 160000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.095945909400001, "SHAPE_Area": 451.04109558900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364602.555200003087521, 256431.556600000709295 ], [ 364608.061899997293949, 256460.467000000178814 ], [ 364611.937799997627735, 256459.63060000166297 ], [ 364622.643399998545647, 256457.88459999859333 ], [ 364618.629900000989437, 256429.530900001525879 ], [ 364605.731899999082088, 256430.871100001037121 ], [ 364602.555200003087521, 256431.556600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703053100", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-196", "ACRE": "0.11", "LONGITUDE": -64.87553198000001, "LATITUDE": 18.33694378, "OBJECTID_1": 23087, "PARCEL_NO_": "105703053100", "Tax_Legal_": "ANNAS RETREAT 173-196 NEW QTR", "Name": "BLYDEN, MURIEL E", "Address": "173-196 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 91200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.277930325499995, "SHAPE_Area": 412.65107357099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364652.647200003266335, 256454.79450000077486 ], [ 364664.396700002253056, 256454.360500000417233 ], [ 364667.560699999332428, 256454.386399999260902 ], [ 364667.443199999630451, 256426.632699999958277 ], [ 364665.282600000500679, 256426.690099999308586 ], [ 364664.632299996912479, 256426.709100000560284 ], [ 364655.759199999272823, 256427.058699999004602 ], [ 364652.506099998950958, 256427.1385000012815 ], [ 364652.647200003266335, 256454.79450000077486 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703053300", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-194", "ACRE": "0.11", "LONGITUDE": -64.87526416, "LATITUDE": 18.33693779, "OBJECTID_1": 23089, "PARCEL_NO_": "105703053300", "Tax_Legal_": "ANNAS RETREAT 173-194 NEW QTR", "Name": "MADURO, JULIEN,MURIEL & JOYCE C.", "Address": "7804 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.4429136806, "SHAPE_Area": 387.75319703399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364695.190200001001358, 256454.823600001633167 ], [ 364694.945699997246265, 256425.733399998396635 ], [ 364693.009199999272823, 256425.78999999910593 ], [ 364690.443300001323223, 256425.864900000393391 ], [ 364683.182899996638298, 256426.227699998766184 ], [ 364681.233199998736382, 256426.275499999523163 ], [ 364681.935300000011921, 256454.638099998235703 ], [ 364690.196900002658367, 256454.782699998468161 ], [ 364693.722800001502037, 256454.811599999666214 ], [ 364695.190200001001358, 256454.823600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703053500", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-192", "ACRE": "0.10", "LONGITUDE": -64.87501, "LATITUDE": 18.33693328, "OBJECTID_1": 23091, "PARCEL_NO_": "105703053500", "Tax_Legal_": "ANNAS RETREAT 173-192 NEW QTR", "Name": "MADURO, JULIEN & CURTIS J.", "Address": "7804 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 91200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.265712967400006, "SHAPE_Area": 397.73540113199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364722.004399999976158, 256454.831900000572205 ], [ 364721.752499997615814, 256424.854600001126528 ], [ 364719.481299996376038, 256424.835999999195337 ], [ 364710.608300000429153, 256425.185600001364946 ], [ 364708.676500000059605, 256425.232999999076128 ], [ 364708.394599996507168, 256454.825599998235703 ], [ 364720.032300002872944, 256454.815799999982119 ], [ 364722.004399999976158, 256454.831900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703053600", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-191", "ACRE": "0.09", "LONGITUDE": -64.87487872, "LATITUDE": 18.3369303, "OBJECTID_1": 23092, "PARCEL_NO_": "105703053600", "Tax_Legal_": "173-191 ANNAS RETREAT No.1 NEW QTR.", "Name": "SMITH, ETHEBERT & GWENEVERE R. J", "Address": "PO Box 8353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14000, "Improved_V": 112500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.582089586199999, "SHAPE_Area": 432.14673794399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364736.403399996459484, 256454.575500000268221 ], [ 364736.317199997603893, 256424.940000001341105 ], [ 364733.9949000030756, 256424.954799998551607 ], [ 364725.125500001013279, 256424.882199998944998 ], [ 364721.752499997615814, 256424.854600001126528 ], [ 364722.004399999976158, 256454.831900000572205 ], [ 364725.676500000059605, 256454.861999999731779 ], [ 364735.867299996316433, 256454.589800000190735 ], [ 364736.403399996459484, 256454.575500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703053900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-188", "ACRE": "0.10", "LONGITUDE": -64.87449328, "LATITUDE": 18.3369257, "OBJECTID_1": 23095, "PARCEL_NO_": "105703053900", "Tax_Legal_": "ANNAS RETREAT 173-188 NEW QTR", "Name": "OTTLEY, BERNICE E. (Life Estate)", "Address": "1320 Calvin Dr", "City": "Washington", "State": "Illinois", "Zip": 61571, "Country": "United States", "Land_Value": 14000, "Improved_V": 145400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.1322564532, "SHAPE_Area": 394.565966059 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364765.439300000667572, 256425.423300001770258 ], [ 364762.560900002717972, 256425.305500000715256 ], [ 364763.100500002503395, 256453.765599999576807 ], [ 364774.877700001001358, 256453.364900000393391 ], [ 364777.500200003385544, 256453.300599999725819 ], [ 364776.386600002646446, 256425.905600000172853 ], [ 364774.306999996304512, 256425.706900000572205 ], [ 364765.439300000667572, 256425.423300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105704031800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-184", "ACRE": "0.10", "LONGITUDE": -64.87396302000001, "LATITUDE": 18.33690016, "OBJECTID_1": 23572, "PARCEL_NO_": "105704031800", "Tax_Legal_": "ANNAS RETREAT 173-184 NEW QTR", "Name": "JOHN, SHERYL B.", "Address": "7710 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 95700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.218112010699997, "SHAPE_Area": 342.81651617799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364833.7466000020504, 256449.901999998837709 ], [ 364830.675200000405312, 256423.169900000095367 ], [ 364825.932499997317791, 256423.5962999984622 ], [ 364821.897399999201298, 256423.985500000417233 ], [ 364818.346000000834465, 256424.354499999433756 ], [ 364820.831699997186661, 256451.1739999987185 ], [ 364832.156499996781349, 256450.245099999010563 ], [ 364833.7466000020504, 256449.901999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703056300", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-22", "ACRE": "0.10", "LONGITUDE": -64.87735672, "LATITUDE": 18.33706733, "OBJECTID_1": 23119, "PARCEL_NO_": "105703056300", "Tax_Legal_": "ANNAS RETREAT 173-22 NEW QTR", "Name": "THOMPSON, EDMUND & KATHLEEN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13700, "Improved_V": 94300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.494299527099997, "SHAPE_Area": 402.74233303300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364477.461099997162819, 256463.151200000196695 ], [ 364472.039800003170967, 256438.463799998164177 ], [ 364459.68860000371933, 256441.497099999338388 ], [ 364456.50789999961853, 256442.420299999415874 ], [ 364462.349299997091293, 256467.268399998545647 ], [ 364465.928800001740456, 256466.246100001037121 ], [ 364477.461099997162819, 256463.151200000196695 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703056100", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-25", "ACRE": "0.09", "LONGITUDE": -64.87696817, "LATITUDE": 18.33696968, "OBJECTID_1": 23117, "PARCEL_NO_": "105703056100", "Tax_Legal_": "ANNAS RETREAT 173-25 NEW QTR.", "Name": "WILLIAMS, JEAN", "Address": "7572 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12300, "Improved_V": 90000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.120814602199999, "SHAPE_Area": 324.34895156499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364517.555600002408028, 256453.13569999858737 ], [ 364511.35530000180006, 256428.417500000447035 ], [ 364510.599600002169609, 256428.614900000393391 ], [ 364509.80349999666214, 256428.816300000995398 ], [ 364508.175300002098083, 256429.228300001472235 ], [ 364499.03660000115633, 256431.635999999940395 ], [ 364504.772699996829033, 256455.809599999338388 ], [ 364514.417199999094009, 256453.766199998557568 ], [ 364516.241899996995926, 256453.399599999189377 ], [ 364517.555600002408028, 256453.13569999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703055900", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-27", "ACRE": "0.09", "LONGITUDE": -64.87670557, "LATITUDE": 18.33690707, "OBJECTID_1": 23115, "PARCEL_NO_": "105703055900", "Tax_Legal_": "ANNAS RETREAT 173-27 NEW QTR", "Name": "LETTSOME, JOYCE", "Address": "7574 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 112300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.091756437800001, "SHAPE_Area": 360.05199891199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364545.639700002968311, 256446.918999999761581 ], [ 364539.596699997782707, 256420.950199998915195 ], [ 364536.461000002920628, 256421.860399998724461 ], [ 364526.361000001430511, 256424.4983000010252 ], [ 364532.428400002419949, 256449.953699998557568 ], [ 364541.88400000333786, 256447.869300000369549 ], [ 364545.639700002968311, 256446.918999999761581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703055800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-28", "ACRE": "0.09", "LONGITUDE": -64.87658113000001, "LATITUDE": 18.33687513, "OBJECTID_1": 23114, "PARCEL_NO_": "105703055800", "Tax_Legal_": "ANNAS RETREAT 173-28 NEW QTR", "Name": "GIMENEZ, DION & ADELINE", "Address": "7575 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 14900, "Improved_V": 93000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.563842830300004, "SHAPE_Area": 364.39328304700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364558.696999996900558, 256443.515599999576807 ], [ 364553.017800003290176, 256417.565600000321865 ], [ 364542.119499996304512, 256420.217999998480082 ], [ 364539.596699997782707, 256420.950199998915195 ], [ 364545.639700002968311, 256446.918999999761581 ], [ 364549.156999997794628, 256446.028999999165535 ], [ 364558.696999996900558, 256443.515599999576807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703055700", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-29", "ACRE": "0.09", "LONGITUDE": -64.87645389, "LATITUDE": 18.33684425, "OBJECTID_1": 23113, "PARCEL_NO_": "105703055700", "Tax_Legal_": "ANNAS RETREAT 173-29 NEW QTR", "Name": "DORE, ALSTON M.", "Address": "PO Box 9246", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 180600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.006365161600002, "SHAPE_Area": 372.45979383100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364572.50620000064373, 256439.793200001120567 ], [ 364566.525700002908707, 256414.252999998629093 ], [ 364563.936700001358986, 256414.908100001513958 ], [ 364553.017800003290176, 256417.565600000321865 ], [ 364558.696999996900558, 256443.515599999576807 ], [ 364569.36150000244379, 256440.705899998545647 ], [ 364572.50620000064373, 256439.793200001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703055200", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-34", "ACRE": "0.10", "LONGITUDE": -64.87580342, "LATITUDE": 18.33670558, "OBJECTID_1": 23108, "PARCEL_NO_": "105703055200", "Tax_Legal_": "ANNAS RETREAT 173-34\nNEW QTR.", "Name": "FREEMAN SUTTON, UNA", "Address": "PO Box 503294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 14900, "Improved_V": 47800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.991590493800004, "SHAPE_Area": 344.84640246499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364638.339699998497963, 256427.701200000941753 ], [ 364637.396200001239777, 256400.104699999094009 ], [ 364626.143299996852875, 256401.274000000208616 ], [ 364623.88629999756813, 256401.624299999326468 ], [ 364626.736000001430511, 256428.612900000065565 ], [ 364629.138300001621246, 256428.318500000983477 ], [ 364631.5591000020504, 256428.127199999988079 ], [ 364637.206900000572205, 256427.751200001686811 ], [ 364638.339699998497963, 256427.701200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703055100", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-35", "ACRE": "0.10", "LONGITUDE": -64.87567764000001, "LATITUDE": 18.33669883, "OBJECTID_1": 23107, "PARCEL_NO_": "105703055100", "Tax_Legal_": "ANNAS RETREAT 173-35 NEW QTR", "Name": "SUTTON, UNA", "Address": "PO Box 503294", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 13700, "Improved_V": 94300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.896569440099995, "SHAPE_Area": 391.53658726800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364652.506099998950958, 256427.1385000012815 ], [ 364651.13570000231266, 256398.86710000038147 ], [ 364648.741599999368191, 256398.925799999386072 ], [ 364637.396200001239777, 256400.104699999094009 ], [ 364638.339699998497963, 256427.701200000941753 ], [ 364649.306900002062321, 256427.217000000178814 ], [ 364652.506099998950958, 256427.1385000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703055000", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-36", "ACRE": "0.09", "LONGITUDE": -64.87555381, "LATITUDE": 18.33668881, "OBJECTID_1": 23106, "PARCEL_NO_": "105703055000", "Tax_Legal_": "ANNAS RETREAT 173-36 NEW QTR", "Name": "JONES (LIFE ESTATE), CHARLES", "Address": "2767 Darby Fls", "City": "Las Vegas", "State": "Nevada", "Zip": 89134, "Country": "United States", "Land_Value": 13400, "Improved_V": 73000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.084698293399995, "SHAPE_Area": 348.18899694100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364663.844400003552437, 256426.740100000053644 ], [ 364664.470399998128414, 256398.64919999986887 ], [ 364655.193899996578693, 256398.767499998211861 ], [ 364651.13570000231266, 256398.86710000038147 ], [ 364652.506099998950958, 256427.1385000012815 ], [ 364655.759199999272823, 256427.058699999004602 ], [ 364663.844400003552437, 256426.740100000053644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703054800", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-38", "ACRE": "0.09", "LONGITUDE": -64.87528922, "LATITUDE": 18.33668523, "OBJECTID_1": 23104, "PARCEL_NO_": "105703054800", "Tax_Legal_": "ANNAS RETREAT 173-38 NEW QTR", "Name": "THOMPSON, EDMUND", "Address": "7592 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13400, "Improved_V": 82100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.991567838799995, "SHAPE_Area": 367.432109416 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364693.009199999272823, 256425.78999999910593 ], [ 364692.151600003242493, 256398.146499998867512 ], [ 364681.805799998342991, 256398.563200000673532 ], [ 364679.110799998044968, 256398.54109999909997 ], [ 364679.514499999582767, 256426.317699998617172 ], [ 364683.182899996638298, 256426.227699998766184 ], [ 364690.443300001323223, 256425.864900000393391 ], [ 364693.009199999272823, 256425.78999999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703054700", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-39", "ACRE": "0.10", "LONGITUDE": -64.87515967, "LATITUDE": 18.33667832, "OBJECTID_1": 23103, "PARCEL_NO_": "105703054700", "Tax_Legal_": "ANNAS RETREAT 173-39 NEW QTR", "Name": "FRANCIS, MARIA L", "Address": "PO Box 502337", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 13400, "Improved_V": 104600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.519540322699996, "SHAPE_Area": 391.28044635700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364706.4070999994874, 256397.708999998867512 ], [ 364703.585199996829033, 256397.685899998992682 ], [ 364692.151600003242493, 256398.146499998867512 ], [ 364693.009199999272823, 256425.78999999910593 ], [ 364696.089199997484684, 256425.699999999254942 ], [ 364704.156000003218651, 256425.343899998813868 ], [ 364707.025600001215935, 256425.273499999195337 ], [ 364706.4070999994874, 256397.708999998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703054600", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-40", "ACRE": "0.10", "LONGITUDE": -64.87502502, "LATITUDE": 18.33667414, "OBJECTID_1": 23102, "PARCEL_NO_": "105703054600", "Tax_Legal_": "ANNAS RETREAT 173-40 NEW QTR.", "Name": "LEONARD, MELVINA", "Address": "163.35 130th Ave", "City": "Jamaica", "State": "New York", "Zip": 11434, "Country": "United States", "Land_Value": 12300, "Improved_V": 72000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.198389826500005, "SHAPE_Area": 391.74221121300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364710.608300000429153, 256425.185600001364946 ], [ 364719.481299996376038, 256424.835999999195337 ], [ 364721.006399996578693, 256424.848499998450279 ], [ 364721.238799996674061, 256398.0472999997437 ], [ 364709.229400001466274, 256397.732099998742342 ], [ 364706.4070999994874, 256397.708999998867512 ], [ 364707.025600001215935, 256425.273499999195337 ], [ 364710.608300000429153, 256425.185600001364946 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703054100", "MAP": "A9-102C-T68", "PARCEL_NAM": "173-45", "ACRE": "0.10", "LONGITUDE": -64.87437051000001, "LATITUDE": 18.33667362, "OBJECTID_1": 23097, "PARCEL_NO_": "105703054100", "Tax_Legal_": "ANNAS RETREAT 173-45 NEW QTR", "Name": "VANTERPOOL, ANTONIO & IONA", "Address": "PO Box 503076", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 12300, "Improved_V": 159800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.933376271200004, "SHAPE_Area": 403.98473492099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364790.424199998378754, 256426.894299998879433 ], [ 364789.613200001418591, 256397.506700001657009 ], [ 364786.642599999904633, 256397.521299999207258 ], [ 364775.35419999808073, 256397.429000001400709 ], [ 364776.72410000115633, 256425.937800001353025 ], [ 364779.947499997913837, 256426.175299998372793 ], [ 364790.424199998378754, 256426.894299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-1", "ACRE": ".23", "LONGITUDE": -64.90371475000001, "LATITUDE": 18.33287999, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 187.17277142699999, "SHAPE_Area": 1572.6225411800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361657.414200000464916, 255945.22749999910593 ], [ 361649.082599997520447, 255943.369600001722574 ], [ 361652.875299997627735, 255949.08500000089407 ], [ 361654.584200002253056, 255951.660199999809265 ], [ 361659.850199997425079, 255959.59569999948144 ], [ 361662.634300000965595, 255963.791200000792742 ], [ 361673.678400002419949, 255978.516699999570847 ], [ 361684.203699998557568, 255994.30460000038147 ], [ 361716.476899996399879, 255965.217599999159575 ], [ 361719.221000000834465, 255962.74439999833703 ], [ 361721.787900000810623, 255960.430900000035763 ], [ 361688.703900001943111, 255952.204999998211861 ], [ 361686.035199999809265, 255951.609900001436472 ], [ 361657.414200000464916, 255945.22749999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504013700", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-5", "ACRE": "0.25", "LONGITUDE": -64.90322651, "LATITUDE": 18.33250642, "OBJECTID_1": 20414, "PARCEL_NO_": "105504013700", "Tax_Legal_": "2J-5 DONOE 2A NEW QUARTER", "Name": "FRETT, DELTON E. & MARIA", "Address": "PO Box 10277", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42600, "Improved_V": 271400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.76430008099999, "SHAPE_Area": 1153.4568086100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361756.021099999547005, 255929.577399998903275 ], [ 361755.338899999856949, 255905.328499998897314 ], [ 361742.32660000026226, 255908.581599999219179 ], [ 361718.778599999845028, 255913.60869999974966 ], [ 361716.671599999070168, 255913.958000000566244 ], [ 361715.39190000295639, 255927.314100001007318 ], [ 361717.191100001335144, 255929.7483000010252 ], [ 361734.804499998688698, 255948.699400000274181 ], [ 361756.021099999547005, 255929.577399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504013600", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-4", "ACRE": ".26", "LONGITUDE": -64.90408712, "LATITUDE": 18.33278287, "OBJECTID_1": 20413, "PARCEL_NO_": "105504013600", "Tax_Legal_": "2J-4 DONOE No.2A NEW QUARTER", "Name": "PROCTOR, EMILE T", "Address": "PO Box 306864", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.02155890613, "SHAPE_Area": 1.456501e-05 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361645.670500002801418, 255954.7331000007689 ], [ 361645.671599999070168, 255954.73930000141263 ], [ 361645.676600001752377, 255954.74100000038743 ], [ 361645.670500002801418, 255954.7331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504013400", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-2", "ACRE": ".25", "LONGITUDE": -64.90408138, "LATITUDE": 18.33249239, "OBJECTID_1": 20411, "PARCEL_NO_": "105504013400", "Tax_Legal_": "2J-2 DONOE No. 2A NEW QUARTER", "Name": "JAMES, BERNARD", "Address": "PO Box 302853", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.72440200400001, "SHAPE_Area": 918.37252701800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361630.951700001955032, 255905.216099999845028 ], [ 361629.633599996566772, 255904.873100001364946 ], [ 361626.898500002920628, 255912.040899999439716 ], [ 361624.32320000231266, 255920.024399999529123 ], [ 361629.666799999773502, 255922.339899998158216 ], [ 361633.068899996578693, 255924.607999999076128 ], [ 361636.651799999177456, 255926.996599998325109 ], [ 361643.908500000834465, 255935.261100001633167 ], [ 361644.271799996495247, 255935.674899999052286 ], [ 361649.082599997520447, 255943.369600001722574 ], [ 361657.414200000464916, 255945.22749999910593 ], [ 361658.453500002622604, 255940.966600000858307 ], [ 361661.715800002217293, 255928.87220000103116 ], [ 361665.146700002253056, 255916.152699999511242 ], [ 361665.660300001502037, 255914.248700000345707 ], [ 361660.506099998950958, 255912.907400000840425 ], [ 361641.951899997889996, 255908.07880000025034 ], [ 361630.951700001955032, 255905.216099999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504013500", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-3", "ACRE": ".24", "LONGITUDE": -64.90379719000001, "LATITUDE": 18.33258474, "OBJECTID_1": 20412, "PARCEL_NO_": "105504013500", "Tax_Legal_": "2J-3 DONOE 2A NEW QUARTER", "Name": "HOWARD, KELVIN D.", "Address": "PO Box 11353", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 42600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.522488224, "SHAPE_Area": 982.92621981800005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361668.792700000107288, 255914.942200001329184 ], [ 361665.660300001502037, 255914.248700000345707 ], [ 361665.146700002253056, 255916.152699999511242 ], [ 361661.715800002217293, 255928.87220000103116 ], [ 361658.453500002622604, 255940.966600000858307 ], [ 361657.414200000464916, 255945.22749999910593 ], [ 361686.035199999809265, 255951.609900001436472 ], [ 361687.240199998021126, 255948.798300001770258 ], [ 361693.740000002086163, 255932.548799999058247 ], [ 361696.130199998617172, 255926.573300000280142 ], [ 361690.73870000243187, 255920.642499998211861 ], [ 361689.780199997127056, 255919.588199999183416 ], [ 361668.792700000107288, 255914.942200001329184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504013600", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-4", "ACRE": ".26", "LONGITUDE": -64.90408714, "LATITUDE": 18.33278286, "OBJECTID_1": 20413, "PARCEL_NO_": "105504013600", "Tax_Legal_": "2J-4 DONOE No.2A NEW QUARTER", "Name": "PROCTOR, EMILE T", "Address": "PO Box 306864", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.01467912141, "SHAPE_Area": 7.87501e-06 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361645.670500002801418, 255954.7331000007689 ], [ 361645.66889999806881, 255954.738400001078844 ], [ 361645.671599999070168, 255954.73930000141263 ], [ 361645.670500002801418, 255954.7331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-9", "ACRE": ".31", "LONGITUDE": -64.90417526, "LATITUDE": 18.33206488, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.27851103399999, "SHAPE_Area": 1212.21259147 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361651.523599997162819, 255854.617899999022484 ], [ 361644.536399997770786, 255852.901799999177456 ], [ 361638.548500001430511, 255852.565999999642372 ], [ 361625.495899997651577, 255851.531399998813868 ], [ 361624.82769999653101, 255858.093800000846386 ], [ 361621.224500000476837, 255893.482700001448393 ], [ 361625.509400002658367, 255894.588700000196695 ], [ 361642.900499999523163, 255899.077599998563528 ], [ 361649.028800003230572, 255900.659400001168251 ], [ 361651.523599997162819, 255854.617899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-13", "ACRE": "0.23", "LONGITUDE": -64.90317493000001, "LATITUDE": 18.33211342, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.24100653599999, "SHAPE_Area": 1229.7366307299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361755.338899999856949, 255905.328499998897314 ], [ 361753.832900002598763, 255851.798799999058247 ], [ 361734.00620000064373, 255859.643899999558926 ], [ 361735.464000001549721, 255863.83500000089407 ], [ 361724.166400000452995, 255869.119300000369549 ], [ 361723.35530000180006, 255869.189800001680851 ], [ 361731.554399996995926, 255886.987900000065565 ], [ 361734.669600002467632, 255900.590799998492002 ], [ 361732.98369999974966, 255910.576200000941753 ], [ 361741.575900003314018, 255908.741900000721216 ], [ 361742.32660000026226, 255908.581599999219179 ], [ 361755.338899999856949, 255905.328499998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504014300", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-11", "ACRE": "0.26", "LONGITUDE": -64.90365969, "LATITUDE": 18.33221036, "OBJECTID_1": 20417, "PARCEL_NO_": "105504014300", "Tax_Legal_": "2J-11 DONOE NO. 2A NEW QUARTER", "Name": "HENDRICKSON, KISHMA, DENISE", "Address": "PO BOX 11753", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25800, "Improved_V": 239200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.597101116, "SHAPE_Area": 1010.05636043 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361696.45269999653101, 255869.874699998646975 ], [ 361696.286799997091293, 255869.848200000822544 ], [ 361689.681800000369549, 255868.314399998635054 ], [ 361682.412100002169609, 255866.646000001579523 ], [ 361678.396300002932549, 255895.559900000691414 ], [ 361676.696199998259544, 255907.800799999386072 ], [ 361682.333700001239777, 255909.255899999290705 ], [ 361684.350500002503395, 255909.776500001549721 ], [ 361690.551500000059605, 255911.377000000327826 ], [ 361704.281700000166893, 255914.921000000089407 ], [ 361703.713299997150898, 255881.381999999284744 ], [ 361696.45269999653101, 255869.874699998646975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504014200", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-12", "ACRE": "0.25", "LONGITUDE": -64.90341709, "LATITUDE": 18.3322162, "OBJECTID_1": 20416, "PARCEL_NO_": "105504014200", "Tax_Legal_": "2J-12 DONOE NO. 2A NEW QUARTER", "Name": "CHANDLER (LIFE ESTATE), ARLEEN ELIZABETH", "Address": "PO Box 7931", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24900, "Improved_V": 240100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 147.39700213200001, "SHAPE_Area": 1206.1290521799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361731.554399996995926, 255886.987900000065565 ], [ 361723.35530000180006, 255869.189800001680851 ], [ 361719.975299999117851, 255869.483800001442432 ], [ 361710.864399999380112, 255871.670400001108646 ], [ 361705.830399997532368, 255871.334800001233816 ], [ 361705.397799998521805, 255871.306000001728535 ], [ 361696.45269999653101, 255869.874699998646975 ], [ 361703.713299997150898, 255881.381999999284744 ], [ 361704.281700000166893, 255914.921000000089407 ], [ 361706.855499997735023, 255915.585299998521805 ], [ 361718.778599999845028, 255913.60869999974966 ], [ 361732.98369999974966, 255910.576200000941753 ], [ 361734.669600002467632, 255900.590799998492002 ], [ 361731.554399996995926, 255886.987900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504014800", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-16", "ACRE": ".26", "LONGITUDE": -64.90374927000001, "LATITUDE": 18.33169747, "OBJECTID_1": 20419, "PARCEL_NO_": "105504014800", "Tax_Legal_": "2J-16 DONOE NO. 2A NEW QUARTER", "Name": "BLOICE, LAUREN A", "Address": "PO Box 1282", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42900, "Improved_V": 222100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.26620768699999, "SHAPE_Area": 1135.3060866200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361673.611299999058247, 255812.956799998879433 ], [ 361668.938199996948242, 255811.382199998944998 ], [ 361667.548100002110004, 255821.807599999010563 ], [ 361666.369599997997284, 255830.646299999207258 ], [ 361664.914800003170967, 255841.557300001382828 ], [ 361670.047200001776218, 255846.524099998176098 ], [ 361674.2212999984622, 255849.250100001692772 ], [ 361678.975900001823902, 255852.355099998414516 ], [ 361686.264700002968311, 255856.910599999129772 ], [ 361689.478200003504753, 255858.233800001442432 ], [ 361695.121500000357628, 255860.557500001043081 ], [ 361698.88289999961853, 255821.588799998164177 ], [ 361696.833499997854233, 255821.37779999896884 ], [ 361688.673299998044968, 255818.383299998939037 ], [ 361676.971500001847744, 255814.089000001549721 ], [ 361673.611299999058247, 255812.956799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-14", "ACRE": "0.23", "LONGITUDE": -64.90320759, "LATITUDE": 18.33169113, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.15684832900001, "SHAPE_Area": 1132.0636320900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361721.468500003218651, 255823.003199998289347 ], [ 361730.194700002670288, 255855.656300000846386 ], [ 361732.001800000667572, 255854.906199999153614 ], [ 361734.00620000064373, 255859.643899999558926 ], [ 361753.832900002598763, 255851.798799999058247 ], [ 361752.699299998581409, 255811.504700001329184 ], [ 361726.899700000882149, 255817.186799999326468 ], [ 361727.993000000715256, 255821.559999998658895 ], [ 361721.979800000786781, 255823.017799999564886 ], [ 361721.468500003218651, 255823.003199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-E", "ACRE": null, "LONGITUDE": -64.90402084, "LATITUDE": 18.33154052, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.032007846, "SHAPE_Area": 660.09833061699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361639.193000003695488, 255802.388900000602007 ], [ 361632.32769999653101, 255800.787000000476837 ], [ 361630.505500003695488, 255801.698100000619888 ], [ 361630.505500003695488, 255803.884799998253584 ], [ 361631.445799998939037, 255804.824999999254942 ], [ 361637.065399996936321, 255810.444699998944998 ], [ 361637.612099997699261, 255810.444699998944998 ], [ 361644.35419999808073, 255818.097899999469519 ], [ 361647.998599998652935, 255822.106699999421835 ], [ 361651.532200001180172, 255826.313400000333786 ], [ 361656.174599997699261, 255831.839999999850988 ], [ 361659.478399999439716, 255835.773200001567602 ], [ 361664.398400001227856, 255841.057500001043081 ], [ 361664.914800003170967, 255841.557300001382828 ], [ 361666.369599997997284, 255830.646299999207258 ], [ 361667.548100002110004, 255821.807599999010563 ], [ 361668.938199996948242, 255811.382199998944998 ], [ 361660.207299999892712, 255808.440200001001358 ], [ 361656.174699999392033, 255807.226100001484156 ], [ 361643.260899998247623, 255803.338100001215935 ], [ 361639.193000003695488, 255802.388900000602007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504015000", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-15", "ACRE": "0.26", "LONGITUDE": -64.90347618, "LATITUDE": 18.33176794, "OBJECTID_1": 20420, "PARCEL_NO_": "105504015000", "Tax_Legal_": "2J-15 DONOE NO. 2A NEW QUARTER", "Name": "WILLIAMS-ANDREWS, DONNA A.", "Address": "PO Box 302112", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 22200, "Improved_V": 237800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.98421858899999, "SHAPE_Area": 1112.5177793600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361730.194700002670288, 255855.656300000846386 ], [ 361721.468500003218651, 255823.003199998289347 ], [ 361709.224399998784065, 255822.653400000184774 ], [ 361698.88289999961853, 255821.588799998164177 ], [ 361695.121500000357628, 255860.557500001043081 ], [ 361695.557899996638298, 255860.737199999392033 ], [ 361703.393399998545647, 255862.559399999678135 ], [ 361713.597699999809265, 255861.466099999845028 ], [ 361722.344200000166893, 255858.915100000798702 ], [ 361730.194700002670288, 255855.656300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504015400", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-20", "ACRE": ".47", "LONGITUDE": -64.90529176, "LATITUDE": 18.3315003, "OBJECTID_1": 20424, "PARCEL_NO_": "105504015400", "Tax_Legal_": "2J-20 Donoe 2A New Quarter", "Name": "SUMAYAH, DORIS", "Address": "164 Mahogany Est", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52600, "Improved_V": 247800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.886169045, "SHAPE_Area": 1897.31651665 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361533.779200002551079, 255789.978000000119209 ], [ 361532.963600002229214, 255784.77419999986887 ], [ 361530.697899997234344, 255784.920400001108646 ], [ 361522.147100001573563, 255785.775400001555681 ], [ 361514.637000001966953, 255786.480200000107288 ], [ 361490.083599999547005, 255789.231899999082088 ], [ 361519.513599999248981, 255846.890799999237061 ], [ 361529.009300000965595, 255840.510899998247623 ], [ 361537.373000003397465, 255838.926199998706579 ], [ 361541.33330000191927, 255838.175799999386072 ], [ 361533.779200002551079, 255789.978000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-B", "ACRE": ".11", "LONGITUDE": -64.90422632000001, "LATITUDE": 18.33167572, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.81007727399999, "SHAPE_Area": 605.42102943800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361625.609200000762939, 255811.851599998772144 ], [ 361624.36370000243187, 255810.861600000411272 ], [ 361624.265399999916553, 255811.30180000141263 ], [ 361621.481299996376038, 255823.765799999237061 ], [ 361619.387299999594688, 255833.140599999576807 ], [ 361617.364100001752377, 255842.198600001633167 ], [ 361620.751400001347065, 255842.370400000363588 ], [ 361632.036799997091293, 255842.942899998277426 ], [ 361635.170100003480911, 255843.101799998432398 ], [ 361641.999399997293949, 255844.164700001478195 ], [ 361647.29110000282526, 255844.958500001579523 ], [ 361650.466099999845028, 255844.958500001579523 ], [ 361651.259800001978874, 255843.370999999344349 ], [ 361651.259800001978874, 255842.048000000417233 ], [ 361644.645199999213219, 255833.581399999558926 ], [ 361636.965999998152256, 255823.679299999028444 ], [ 361629.889399997889996, 255815.253800000995398 ], [ 361625.609200000762939, 255811.851599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-25", "ACRE": ".25", "LONGITUDE": -64.90428448, "LATITUDE": 18.33117632, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.52143730399999, "SHAPE_Area": 1081.083652 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361646.08219999819994, 255763.831799998879433 ], [ 361607.685699999332428, 255760.245400000363588 ], [ 361607.905799999833107, 255767.11939999833703 ], [ 361608.605200000107288, 255788.962200000882149 ], [ 361609.040500000119209, 255789.020199999213219 ], [ 361620.737499997019768, 255791.491399999707937 ], [ 361624.068800002336502, 255792.195199999958277 ], [ 361633.593900002539158, 255793.465199999511242 ], [ 361640.487099997699261, 255795.003699999302626 ], [ 361641.487800002098083, 255795.227000001817942 ], [ 361641.697800002992153, 255793.785999998450279 ], [ 361644.730200000107288, 255772.968800000846386 ], [ 361646.08219999819994, 255763.831799998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-24", "ACRE": ".25", "LONGITUDE": -64.90396912, "LATITUDE": 18.33121943, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.764184379, "SHAPE_Area": 1062.6758165199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361678.676500000059605, 255766.565499998629093 ], [ 361646.08219999819994, 255763.831799998879433 ], [ 361644.730200000107288, 255772.968800000846386 ], [ 361641.697800002992153, 255793.785999998450279 ], [ 361641.487800002098083, 255795.227000001817942 ], [ 361657.389399997889996, 255798.776000000536442 ], [ 361665.856100000441074, 255801.698100000619888 ], [ 361670.046499997377396, 255803.190499998629093 ], [ 361677.413199998438358, 255771.927200000733137 ], [ 361678.676500000059605, 255766.565499998629093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-21", "ACRE": ".26", "LONGITUDE": -64.90323386, "LATITUDE": 18.33127512, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.37106528800001, "SHAPE_Area": 1469.45203429 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361751.367299996316433, 255764.157900001853704 ], [ 361750.660099998116493, 255764.157900001853704 ], [ 361744.465899996459484, 255763.674600001424551 ], [ 361721.344300001859665, 255764.184399999678135 ], [ 361720.654899999499321, 255770.400499999523163 ], [ 361725.806400001049042, 255814.271299999207258 ], [ 361726.899700000882149, 255817.186799999326468 ], [ 361752.699299998581409, 255811.504700001329184 ], [ 361751.367299996316433, 255764.157900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504015600", "MAP": "A9-808-T015", "PARCEL_NAM": "2J-22", "ACRE": ".26", "LONGITUDE": -64.9034781, "LATITUDE": 18.33132949, "OBJECTID_1": 20425, "PARCEL_NO_": "105504015600", "Tax_Legal_": "2J-22 DONOE 2A NEW QUARTER", "Name": "LAKE, DIANE W.", "Address": "146-15 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52600, "Improved_V": 286600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.95686897900001, "SHAPE_Area": 1058.07314303 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361720.654899999499321, 255770.400499999523163 ], [ 361704.708599999547005, 255768.721900001168251 ], [ 361703.275100000202656, 255775.30970000103116 ], [ 361695.193499997258186, 255812.449099998921156 ], [ 361709.224399998784065, 255815.546799998730421 ], [ 361725.806400001049042, 255814.271299999207258 ], [ 361720.654899999499321, 255770.400499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107302011800", "MAP": "D9-5517-T93", "PARCEL_NAM": "18C-1", "ACRE": "512 sq ft", "LONGITUDE": -64.92112655, "LATITUDE": 18.33051731, "OBJECTID_1": 24782, "PARCEL_NO_": "107302011800", "Tax_Legal_": "HAVENSIGHT 17B & 18C-1 FRENCHMAN BAY QTR", "Name": "MACHOVER, FRANK & CHANTAL", "Address": "PO Box 41", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 28100, "Improved_V": 363500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.9165828187, "SHAPE_Area": 55.3770255345 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359851.589500002563, 255680.950300000607967 ], [ 359844.838299997150898, 255684.530999999493361 ], [ 359843.577299997210503, 255701.604899998754263 ], [ 359851.589500002563, 255680.950300000607967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034600", "MAP": "D9-545-T65", "PARCEL_NAM": "10-1-21", "ACRE": "0.16", "LONGITUDE": -64.88811915, "LATITUDE": 18.33330008, "OBJECTID_1": 21818, "PARCEL_NO_": "105604034600", "Tax_Legal_": "10-1-21&22 CHARLOTTE AMA NEW QTR", "Name": "JEAN-BAPTISTE, ROSANNA", "Address": "PO Box 10284", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27000, "Improved_V": 146500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.27660374600001, "SHAPE_Area": 720.15841056900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363344.813500002026558, 256007.593699999153614 ], [ 363322.4121999964118, 256003.035799998790026 ], [ 363326.965999998152256, 256036.425799999386072 ], [ 363329.998800002038479, 256059.03770000115037 ], [ 363333.968900002539158, 256060.242400001734495 ], [ 363338.588899999856949, 256037.813099998980761 ], [ 363344.813500002026558, 256007.593699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034600", "MAP": "D9-545-T65", "PARCEL_NAM": "10-1-22", "ACRE": "0.24", "LONGITUDE": -64.8879788, "LATITUDE": 18.33340416, "OBJECTID_1": 21818, "PARCEL_NO_": "105604034600", "Tax_Legal_": "10-1-21&22 CHARLOTTE AMA NEW QTR", "Name": "JEAN-BAPTISTE, ROSANNA", "Address": "PO Box 10284", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27000, "Improved_V": 146500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.425817975, "SHAPE_Area": 942.68291876800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363357.622599996626377, 256010.19990000128746 ], [ 363344.813500002026558, 256007.593699999153614 ], [ 363338.588899999856949, 256037.813099998980761 ], [ 363333.968900002539158, 256060.242400001734495 ], [ 363336.433100000023842, 256060.990200001746416 ], [ 363355.854400001466274, 256063.599899999797344 ], [ 363356.190099999308586, 256053.464000001549721 ], [ 363357.165299996733665, 256024.012200001627207 ], [ 363357.622599996626377, 256010.19990000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604035200", "MAP": "F9-2820-T71", "PARCEL_NAM": "10-22-1", "ACRE": "0.19", "LONGITUDE": -64.8874923, "LATITUDE": 18.3335775, "OBJECTID_1": 21825, "PARCEL_NO_": "105604035200", "Tax_Legal_": "CHARLOTTE AMALIE ESTATE 10-22-1 NEW QTR.", "Name": "LEONARD, KAREN M.", "Address": "PO Box 503144", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 12800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.94806088, "SHAPE_Area": 840.50968605499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363384.993199996650219, 256041.850699998438358 ], [ 363381.847199998795986, 256067.22749999910593 ], [ 363391.998599998652935, 256069.677600000053644 ], [ 363400.8445999994874, 256072.494199998676777 ], [ 363408.072700001299381, 256075.930900000035763 ], [ 363418.6283999979496, 256047.225000001490116 ], [ 363384.993199996650219, 256041.850699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103003052200", "MAP": "D9-9243-T018", "PARCEL_NAM": "10B REM", "ACRE": ".14", "LONGITUDE": -64.90988381, "LATITUDE": 18.35635453, "OBJECTID_1": 5929, "PARCEL_NO_": "103003052200", "Tax_Legal_": "10B REM. & 10B-1 & 1/8 Int ROW 10REM ST. JOSEPH & ROSENDAL N0. 4 GREAT NORTHSIDE QUARTER", "Name": "EDWIN VALDEZ PAREDES", "Address": "PO Box 305641", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 29600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.42011038299999, "SHAPE_Area": 814.58958602400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360991.419799998402596, 258554.403900001198053 ], [ 360991.508900001645088, 258554.58219999819994 ], [ 361010.162100002169609, 258578.923900000751019 ], [ 361010.229299999773502, 258578.99549999833107 ], [ 361030.677699998021126, 258562.786800000816584 ], [ 361013.14750000089407, 258538.156500000506639 ], [ 360991.419799998402596, 258554.403900001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202027700", "MAP": "D9-9223-T017", "PARCEL_NAM": "69-3", "ACRE": "0.14", "LONGITUDE": -64.95578048, "LATITUDE": 18.34250429, "OBJECTID_1": 8176, "PARCEL_NO_": "105202027700", "Tax_Legal_": "69-3 CONTANT NO.7A SOUTHSIDE QTR", "Name": "UDHWANI, HARESH & NAMRATA", "Address": "PO Box 308724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 56800, "Improved_V": 268500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.965266125, "SHAPE_Area": 678.58474561499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356183.522299997508526, 256961.835799999535084 ], [ 356183.201399996876717, 256961.788899999111891 ], [ 356182.763400003314018, 256961.788899999111891 ], [ 356176.202200002968311, 256969.617800001055002 ], [ 356168.074400000274181, 256977.150600001215935 ], [ 356158.301500000059605, 256988.469700001180172 ], [ 356153.400700002908707, 256995.817800000309944 ], [ 356153.368400000035763, 256999.617300000041723 ], [ 356186.044399999082088, 256997.306499999016523 ], [ 356186.058899998664856, 256997.190200001001358 ], [ 356183.522299997508526, 256961.835799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022500", "MAP": "D9-9223-T017", "PARCEL_NAM": "69-A", "ACRE": "0.22", "LONGITUDE": -64.95524141, "LATITUDE": 18.34226549, "OBJECTID_1": 8116, "PARCEL_NO_": "105202022500", "Tax_Legal_": "69-1,69-2,69-4,69REM & ROW 69-A CONTANT", "Name": "HOLIDAY DRIVE LLC", "Address": "12559 Holiday Dr", "City": "ASLIP", "State": "Illinois", "Zip": 60603, "Country": "United States", "Land_Value": 481100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.18683230400001, "SHAPE_Area": 815.53627970900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356189.760999999940395, 256954.260499998927116 ], [ 356187.864900000393391, 256956.184300001710653 ], [ 356185.163400001823902, 256958.925299998372793 ], [ 356183.04280000180006, 256961.455600000917912 ], [ 356183.518899999558926, 256961.788899999111891 ], [ 356183.522299997508526, 256961.835799999535084 ], [ 356229.873999997973442, 256968.615200001746416 ], [ 356243.685300000011921, 256970.520199999213219 ], [ 356245.800513317342848, 256970.739838411100209 ], [ 356247.922288506815676, 256970.596875285351416 ], [ 356249.988918499962892, 256970.095468383457046 ], [ 356251.94030000269413, 256969.250199999660254 ], [ 356254.037319870665669, 256968.186405144573655 ], [ 356255.926549536176026, 256966.786418326286366 ], [ 356257.554617145389784, 256965.089789999299683 ], [ 356258.875528826960362, 256963.144450915773632 ], [ 356259.851968045753893, 256961.00535805374966 ], [ 356260.456349817104638, 256958.732942049828125 ], [ 356260.671599999070168, 256956.391399998217821 ], [ 356261.38847709930269, 256949.581937935494352 ], [ 356261.624099999666214, 256942.738899998366833 ], [ 356248.289099998772144, 256941.945099998265505 ], [ 356247.812799997627735, 256947.660100001841784 ], [ 356248.529026089119725, 256947.732451495860005 ], [ 356249.225122114643455, 256947.915931402414571 ], [ 356249.88395515823504, 256948.206023755803471 ], [ 356250.489309452765156, 256948.595588552678237 ], [ 356251.026285495958291, 256949.075037488277303 ], [ 356251.481666770298034, 256949.632569951732876 ], [ 356251.844245039043017, 256950.254463473072974 ], [ 356252.105096212937497, 256950.925411472475389 ], [ 356252.257799997925758, 256951.628899998962879 ], [ 356252.257799997925758, 256954.645199999213219 ], [ 356251.975924716854934, 256955.970120715763187 ], [ 356251.47475742030656, 256957.228572113293922 ], [ 356250.768639664282091, 256958.384541963197989 ], [ 356249.877777929767035, 256959.404950679891044 ], [ 356248.827665387594607, 256960.260597936605336 ], [ 356247.648352378280833, 256960.926998270704644 ], [ 356246.373586482310202, 256961.385081767104566 ], [ 356245.039846789033618, 256961.621739768917905 ], [ 356243.685300000011921, 256961.630199998617172 ], [ 356225.11150000244379, 256959.2489 ], [ 356190.186499997973442, 256954.3277000002563 ], [ 356189.760999999940395, 256954.260499998927116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022500", "MAP": "D9-7618-T005", "PARCEL_NAM": "69 REM", "ACRE": null, "LONGITUDE": -64.9556863, "LATITUDE": 18.34228527, "OBJECTID_1": 8116, "PARCEL_NO_": "105202022500", "Tax_Legal_": "69-1,69-2,69-4,69REM & ROW 69-A CONTANT", "Name": "HOLIDAY DRIVE LLC", "Address": "12559 Holiday Dr", "City": "ASLIP", "State": "Illinois", "Zip": 60603, "Country": "United States", "Land_Value": 481100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.8254210495500001, "SHAPE_Area": 0.13334944882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356182.763400003314018, 256961.788899999111891 ], [ 356183.201399996876717, 256961.788899999111891 ], [ 356183.522299997508526, 256961.835799999535084 ], [ 356183.518899999558926, 256961.788899999111891 ], [ 356183.04280000180006, 256961.455600000917912 ], [ 356182.763400003314018, 256961.788899999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022500", "MAP": "D9-9223-T017", "PARCEL_NAM": "69-4", "ACRE": "0.18", "LONGITUDE": -64.95557305, "LATITUDE": 18.34244886, "OBJECTID_1": 8116, "PARCEL_NO_": "105202022500", "Tax_Legal_": "69-1,69-2,69-4,69REM & ROW 69-A CONTANT", "Name": "HOLIDAY DRIVE LLC", "Address": "12559 Holiday Dr", "City": "ASLIP", "State": "Illinois", "Zip": 60603, "Country": "United States", "Land_Value": 481100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.409250597, "SHAPE_Area": 688.49409025299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356206.376400001347065, 256995.868599999696016 ], [ 356204.798799999058247, 256964.947700001299381 ], [ 356183.522299997508526, 256961.835799999535084 ], [ 356186.058899998664856, 256997.190200001001358 ], [ 356186.044399999082088, 256997.306499999016523 ], [ 356189.932800002396107, 256997.031500000506639 ], [ 356206.376400001347065, 256995.868599999696016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202028600", "MAP": "D9-9223-T017", "PARCEL_NAM": "69-5", "ACRE": "0.18", "LONGITUDE": -64.95535781, "LATITUDE": 18.34245642, "OBJECTID_1": 8185, "PARCEL_NO_": "105202028600", "Tax_Legal_": "69-5 CONTANT 7A SOUTHSIDE QTR", "Name": "AIDASANI, ARJUN K. & ASHA A.", "Address": "PO Box 866", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 86000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.8593009, "SHAPE_Area": 703.95074036000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356231.471000000834465, 256994.093899998813868 ], [ 356231.461499996483326, 256993.856499999761581 ], [ 356229.715300001204014, 256968.615200001746416 ], [ 356229.711300000548363, 256968.591400001198053 ], [ 356204.798799999058247, 256964.947700001299381 ], [ 356206.376400001347065, 256995.868599999696016 ], [ 356231.471000000834465, 256994.093899998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202028700", "MAP": "D9-9223-T017", "PARCEL_NAM": "69-6", "ACRE": "0.14", "LONGITUDE": -64.95513196, "LATITUDE": 18.34246055, "OBJECTID_1": 8186, "PARCEL_NO_": "105202028700", "Tax_Legal_": "69-6 CONTANT NO.7A SOUTHSIDE QTR", "Name": "HERNANDEZ, NICOLE W. & LUCERO HERNANDEZ GALLEGO", "Address": "PO Box 1044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 65000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.249853861099993, "SHAPE_Area": 525.53576781699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356253.682700000703335, 256992.52309999987483 ], [ 356252.259300000965595, 256969.116200000047684 ], [ 356251.94030000269413, 256969.250199999660254 ], [ 356249.988918498740532, 256970.095468379033264 ], [ 356247.922288505884353, 256970.596875279268716 ], [ 356245.800513317168225, 256970.739838406530907 ], [ 356243.685300000011921, 256970.520199999213219 ], [ 356229.873999997973442, 256968.615200001746416 ], [ 356229.711300000548363, 256968.591400001198053 ], [ 356229.715300001204014, 256968.615200001746416 ], [ 356231.461499996483326, 256993.856499999761581 ], [ 356231.471000000834465, 256994.093899998813868 ], [ 356253.682700000703335, 256992.52309999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022500", "MAP": "D9-9223-T017", "PARCEL_NAM": "69-2", "ACRE": "0.14", "LONGITUDE": -64.95542273, "LATITUDE": 18.34216887, "OBJECTID_1": 8116, "PARCEL_NO_": "105202022500", "Tax_Legal_": "69-1,69-2,69-4,69REM & ROW 69-A CONTANT", "Name": "HOLIDAY DRIVE LLC", "Address": "12559 Holiday Dr", "City": "ASLIP", "State": "Illinois", "Zip": 60603, "Country": "United States", "Land_Value": 481100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.378174904299996, "SHAPE_Area": 499.847257781 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356204.8462999984622, 256938.954500000923872 ], [ 356195.374499998986721, 256948.564899999648333 ], [ 356194.118199996650219, 256949.839499998837709 ], [ 356189.760999999940395, 256954.260499998927116 ], [ 356190.186499997973442, 256954.3277000002563 ], [ 356224.955799996852875, 256959.227000001817942 ], [ 356225.270300000905991, 256940.357599999755621 ], [ 356204.8462999984622, 256938.954500000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022500", "MAP": "D9-9223-T017", "PARCEL_NAM": "69-1", "ACRE": "0.14", "LONGITUDE": -64.95528557, "LATITUDE": 18.34201661, "OBJECTID_1": 8116, "PARCEL_NO_": "105202022500", "Tax_Legal_": "69-1,69-2,69-4,69REM & ROW 69-A CONTANT", "Name": "HOLIDAY DRIVE LLC", "Address": "12559 Holiday Dr", "City": "ASLIP", "State": "Illinois", "Zip": 60603, "Country": "United States", "Land_Value": 481100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.573004713700001, "SHAPE_Area": 486.80700264900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356239.714900001883507, 256923.239799998700619 ], [ 356216.850100003182888, 256922.711800001561642 ], [ 356216.090999998152256, 256925.403499998152256 ], [ 356212.818999998271465, 256930.865200001746416 ], [ 356212.203900001943111, 256931.489199999719858 ], [ 356208.588100001215935, 256935.157900001853704 ], [ 356204.8462999984622, 256938.954500000923872 ], [ 356225.270300000905991, 256940.357599999755621 ], [ 356225.264799997210503, 256940.688700001686811 ], [ 356239.557800002396107, 256941.310100000351667 ], [ 356239.714900001883507, 256923.239799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104021800", "MAP": "D9-9245-T018", "PARCEL_NAM": "3-5 REM", "ACRE": ".24", "LONGITUDE": -64.95522658, "LATITUDE": 18.36612414, "OBJECTID_1": 586, "PARCEL_NO_": "101104021800", "Tax_Legal_": "3-5 REM. HULL NO. 4 LITTLE NORTHSIDE QTR", "Name": "BURTON, EMILY", "Address": "6534 Estate Mandahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.475072372, "SHAPE_Area": 877.55331438099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356234.788400001823902, 259594.714800000190735 ], [ 356188.571999996900558, 259587.756099998950958 ], [ 356188.442100003361702, 259603.013300001621246 ], [ 356188.403499998152256, 259607.542700000107288 ], [ 356188.424300000071526, 259609.915399998426437 ], [ 356235.488099999725819, 259610.211899999529123 ], [ 356234.788400001823902, 259594.714800000190735 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701021200", "MAP": "A9-832-T017", "PARCEL_NAM": "ROW 5AB", "ACRE": "0.63", "LONGITUDE": -64.86312118, "LATITUDE": 18.32398082, "OBJECTID_1": 39218, "PARCEL_NO_": "107701021200", "Tax_Legal_": "PAR 5-11, 5-12 AND R.O.W. 5AB FRYDENHOJ 3 RED HOOK QTR", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 637.78921148200004, "SHAPE_Area": 2177.35979253 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365975.967100001871586, 254891.181499999016523 ], [ 365981.351999998092651, 255010.604600001126528 ], [ 365983.415700003504753, 255069.500999998301268 ], [ 365980.452200002968311, 255069.539299998432398 ], [ 365984.328299999237061, 255116.560199998319149 ], [ 365984.802599996328354, 255174.907900001853704 ], [ 365992.469999998807907, 255174.620000001043081 ], [ 365991.876299999654293, 255154.993900001049042 ], [ 365991.627999998629093, 255146.785799998790026 ], [ 365991.363099999725819, 255138.031500000506639 ], [ 365990.736100003123283, 255117.304499998688698 ], [ 365983.390100002288818, 254874.469999998807907 ], [ 365983.239000000059605, 254865.763399999588728 ], [ 365974.038400001823902, 254866.323399998247623 ], [ 365974.709899999201298, 254874.978100001811981 ], [ 365975.967100001871586, 254891.181499999016523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804022100", "MAP": "D9-9216-T017", "PARCEL_NAM": "11A-1B", "ACRE": "0.03", "LONGITUDE": -64.85083161, "LATITUDE": 18.33976923, "OBJECTID_1": 24030, "PARCEL_NO_": "105804022100", "Tax_Legal_": "11A-1B SMITH BAY NO. 1,2 & 3 EAST END QUARTER", "Name": "HUX, RONALD W and JOANNE T", "Address": "4120 Piney Grove Rd", "City": "REISTERSTOWN", "State": "Maryland", "Zip": 21136, "Country": "United States", "Land_Value": 40000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.480967092, "SHAPE_Area": 147.42280461600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367275.956399999558926, 256771.869100000709295 ], [ 367275.922899998724461, 256771.844000000506639 ], [ 367263.857900001108646, 256766.922800000756979 ], [ 367263.843599997460842, 256766.916600000113249 ], [ 367262.910199999809265, 256786.780000001192093 ], [ 367267.778599999845028, 256783.231199998408556 ], [ 367275.098399996757507, 256775.902899999171495 ], [ 367275.938900001347065, 256771.899000000208616 ], [ 367275.956399999558926, 256771.869100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803026300", "MAP": "D9-9215-T017", "PARCEL_NAM": "55B-3A", "ACRE": "0.18", "LONGITUDE": -64.94671651, "LATITUDE": 18.35037004, "OBJECTID_1": 4331, "PARCEL_NO_": "102803026300", "Tax_Legal_": "55-1 & 55B-3A SOLBERG NO.1 LITTLE NORTHSIDE QTR", "Name": "SCHACK, SUZANNE J. LA PLACE", "Address": "2-I Estate Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 334900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.1841827, "SHAPE_Area": 804.21448647399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357146.07660000026226, 257855.6858000010252 ], [ 357132.168799996376038, 257848.600699998438358 ], [ 357104.858000002801418, 257857.791799999773502 ], [ 357115.077299997210503, 257885.426500000059605 ], [ 357129.942299999296665, 257874.466899998486042 ], [ 357135.767399996519089, 257868.770199999213219 ], [ 357143.137699998915195, 257860.062899999320507 ], [ 357146.07660000026226, 257855.6858000010252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "A9-835-T018", "PARCEL_NAM": "POR. E Of REM 3G", "ACRE": "0.53", "LONGITUDE": -64.87907256, "LATITUDE": 18.32359705, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.39948108799999, "SHAPE_Area": 2208.6697658799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364273.796999998390675, 254967.709300000220537 ], [ 364301.771799996495247, 255003.601399999111891 ], [ 364301.970100000500679, 255003.700599998235703 ], [ 364308.861000001430511, 255000.551699999719858 ], [ 364312.896799996495247, 254998.707499999552965 ], [ 364303.69200000166893, 254979.239100001752377 ], [ 364303.593800000846386, 254979.031399998813868 ], [ 364304.298500001430511, 254978.494899999350309 ], [ 364315.228399999439716, 254970.172200001776218 ], [ 364318.781099997460842, 254967.086599998176098 ], [ 364319.949500001966953, 254964.758799999952316 ], [ 364322.966300003230572, 254958.748399998992682 ], [ 364326.300999999046326, 254956.281399998813868 ], [ 364299.041199997067451, 254923.661100000143051 ], [ 364278.519199997186661, 254918.224700000137091 ], [ 364292.611000001430511, 254945.065099999308586 ], [ 364270.231100000441074, 254963.256599999964237 ], [ 364274.13570000231266, 254967.024399999529123 ], [ 364273.796999998390675, 254967.709300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903039400", "MAP": "D9-9153-T017", "PARCEL_NAM": "295A-1", "ACRE": "0.16", "LONGITUDE": -64.92473985, "LATITUDE": 18.34856299, "OBJECTID_1": 4906, "PARCEL_NO_": "102903039400", "Tax_Legal_": "295A-1 HOSPITAL GROUND 9 NEW QTR", "Name": "HORACIANA JEAN SALOMON DE ROJAS", "Address": "2001 Wimmelskaft Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.058722640100001, "SHAPE_Area": 408.94089585500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359434.691500000655651, 257678.872000001370907 ], [ 359436.907999999821186, 257693.70549999922514 ], [ 359460.861800000071526, 257689.310199998319149 ], [ 359459.273900002241135, 257671.374000001698732 ], [ 359434.691500000655651, 257678.872000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701039000", "MAP": "D9-9107-T016", "PARCEL_NAM": "K-6", "ACRE": "0.25", "LONGITUDE": -64.8605994, "LATITUDE": 18.32816553, "OBJECTID_1": 39328, "PARCEL_NO_": "107701039000", "Tax_Legal_": "K-6 NAZARETH NO.1 RED HOOK QUARTER", "Name": "WALTERS, MONIQUE", "Address": "PO Box 7254", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.58391019299999, "SHAPE_Area": 859.49383702399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366235.414399996399879, 255463.889600001275539 ], [ 366228.999300003051758, 255481.135000001639128 ], [ 366252.142800003290176, 255507.090799998492002 ], [ 366257.849200002849102, 255499.993000000715256 ], [ 366259.436700001358986, 255484.647199999541044 ], [ 366261.02419999986887, 255475.12220000103116 ], [ 366262.203199997544289, 255470.700899999588728 ], [ 366254.887199997901917, 255468.905299998819828 ], [ 366235.414399996399879, 255463.889600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "D9-9107-T016", "PARCEL_NAM": "K-8", "ACRE": "0.24", "LONGITUDE": -64.86053983, "LATITUDE": 18.32778822, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.537389171300006, "SHAPE_Area": 578.09972193 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366270.23030000180006, 255436.003199998289347 ], [ 366240.267099998891354, 255427.064599998295307 ], [ 366237.705099999904633, 255446.506499998271465 ], [ 366266.018899999558926, 255454.678399998694658 ], [ 366267.903300002217293, 255443.372099999338388 ], [ 366270.23030000180006, 255436.003199998289347 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701039100", "MAP": "D9-9107-T016", "PARCEL_NAM": "K-7", "ACRE": "0.25", "LONGITUDE": -64.86056747000001, "LATITUDE": 18.32795049, "OBJECTID_1": 39329, "PARCEL_NO_": "107701039100", "Tax_Legal_": "K-7 NAZARETH NO.4 RED HOOK QUARTER", "Name": "RAYMOND, TROY A", "Address": "PO Box 8183", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.130145341399995, "SHAPE_Area": 486.53858613699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366266.018899999558926, 255454.678399998694658 ], [ 366237.705099999904633, 255446.506499998271465 ], [ 366235.414399996399879, 255463.889600001275539 ], [ 366254.887199997901917, 255468.905299998819828 ], [ 366262.203199997544289, 255470.700899999588728 ], [ 366265.257500000298023, 255459.247099999338388 ], [ 366266.018899999558926, 255454.678399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "D9-9107-T016", "PARCEL_NAM": "K-9", "ACRE": "0.24", "LONGITUDE": -64.86050801, "LATITUDE": 18.32763003, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.295327753799995, "SHAPE_Area": 530.10672226400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366240.267099998891354, 255427.064599998295307 ], [ 366270.23030000180006, 255436.003199998289347 ], [ 366274.253300003707409, 255423.263700000941753 ], [ 366275.178900003433228, 255421.0011 ], [ 366242.465700000524521, 255410.379999998956919 ], [ 366240.267099998891354, 255427.064599998295307 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701039600", "MAP": "D9-9107-T016", "PARCEL_NAM": "K-12", "ACRE": "0.25", "LONGITUDE": -64.85990116000001, "LATITUDE": 18.32681494, "OBJECTID_1": 39332, "PARCEL_NO_": "107701039600", "Tax_Legal_": "K-12 NAZARETH NO.1 RED HOOK QUARTER", "Name": "SCOTLAND, STACEY L.", "Address": "PO Box 9715", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.91733889899999, "SHAPE_Area": 899.48723841000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366327.334799997508526, 255313.135600000619888 ], [ 366297.301600001752377, 255340.4560999982059 ], [ 366317.137000001966953, 255353.518800001591444 ], [ 366326.641000002622604, 255343.359400000423193 ], [ 366336.931100003421307, 255336.690099999308586 ], [ 366346.963600002229214, 255332.328099999576807 ], [ 366327.334799997508526, 255313.135600000619888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701039400", "MAP": "D9-9107-T016", "PARCEL_NAM": "K-10", "ACRE": "0.26", "LONGITUDE": -64.86036395000001, "LATITUDE": 18.32742157, "OBJECTID_1": 39330, "PARCEL_NO_": "107701039400", "Tax_Legal_": "K-10 NAZARETH NO.1 RED HOOK QUARTER", "Name": "JOSEPH, KHADILA", "Address": "PO Box 306507", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.317208303, "SHAPE_Area": 847.08654033100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366270.855400003492832, 255379.493099998682737 ], [ 366265.613300003111362, 255387.724800001829863 ], [ 366253.569200001657009, 255413.984999999403954 ], [ 366275.178900003433228, 255421.0011 ], [ 366279.015900000929832, 255411.622000001370907 ], [ 366286.953400000929832, 255397.334499999880791 ], [ 366291.704000003635883, 255389.083399999886751 ], [ 366270.855400003492832, 255379.493099998682737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701039500", "MAP": "D9-9107-T016", "PARCEL_NAM": "K-11", "ACRE": "0.26", "LONGITUDE": -64.86016485, "LATITUDE": 18.32709866, "OBJECTID_1": 39331, "PARCEL_NO_": "107701039500", "Tax_Legal_": "K-11 NAZARETH NO.1 RED HOOK QUARTER", "Name": "HARRY, WESLYN", "Address": "PO Box 12322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 50100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.858303503, "SHAPE_Area": 1043.87562787 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366297.301600001752377, 255340.4560999982059 ], [ 366293.529799997806549, 255343.887299999594688 ], [ 366270.855400003492832, 255379.493099998682737 ], [ 366291.704000003635883, 255389.083399999886751 ], [ 366297.007600001990795, 255379.872000001370907 ], [ 366311.295100003480911, 255359.763599999248981 ], [ 366317.137000001966953, 255353.518800001591444 ], [ 366297.301600001752377, 255340.4560999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042400", "MAP": "D9-8616-t011", "PARCEL_NAM": "365-C", "ACRE": ".05", "LONGITUDE": -64.90423997000001, "LATITUDE": 18.35213648, "OBJECTID_1": 6234, "PARCEL_NO_": "103004042400", "Tax_Legal_": "365 REM. WINTBERG No. 3 GREAT NORTHSIDE QTR", "Name": "GARCIA, MICHAEL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 66200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.775331495, "SHAPE_Area": 186.48729745099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361612.209899999201298, 258067.783500000834465 ], [ 361607.813400000333786, 258125.787999998778105 ], [ 361610.953000001609325, 258125.928399998694658 ], [ 361615.479000002145767, 258067.914700001478195 ], [ 361612.209899999201298, 258067.783500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004044500", "MAP": "D9-9169-T017", "PARCEL_NAM": "365-B", "ACRE": "0.19", "LONGITUDE": -64.90438293, "LATITUDE": 18.35195457, "OBJECTID_1": 6255, "PARCEL_NO_": "103004044500", "Tax_Legal_": "365-B WINTBERG No.3 GREAT NORTHSIDE QTR", "Name": "PRINS, ANDREW A. & KATIE A.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.878810294299996, "SHAPE_Area": 552.77632112699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361580.665500000119209, 258084.306200001388788 ], [ 361610.769100002944469, 258086.791999999433756 ], [ 361612.209899999201298, 258067.783500000834465 ], [ 361582.429200001060963, 258066.588700000196695 ], [ 361580.665500000119209, 258084.306200001388788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031500", "MAP": "D9-8402-T010", "PARCEL_NAM": "REM 8-1", "ACRE": "0.26", "LONGITUDE": -64.96612791, "LATITUDE": 18.36519726, "OBJECTID_1": 452, "PARCEL_NO_": "101103031500", "Tax_Legal_": "8-1-A & 8-1 REM NELTJEBERG(EASTERN PT) NO.6 LITTLE NORTHSIDE QTR.", "Name": "CORDELL & ELAINE JACOBS SR.", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.74708013599999, "SHAPE_Area": 992.63059971300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355044.619999997317791, 259461.270399998873472 ], [ 355034.124799996614456, 259461.095800001174212 ], [ 355030.086000002920628, 259461.9070999994874 ], [ 355025.206799998879433, 259466.722300000488758 ], [ 355023.068099997937679, 259472.716299999505281 ], [ 355047.67400000244379, 259473.527499999850988 ], [ 355071.888800002634525, 259486.929499998688698 ], [ 355073.107199996709824, 259501.39750000089407 ], [ 355050.262999996542931, 259527.135299999266863 ], [ 355049.382500000298023, 259530.852699998766184 ], [ 355053.685599997639656, 259531.338899999856949 ], [ 355056.09009999781847, 259533.047400001436472 ], [ 355058.486900001764297, 259527.592199999839067 ], [ 355083.463200002908707, 259502.920400001108646 ], [ 355081.94030000269413, 259484.340500000864267 ], [ 355044.619999997317791, 259461.270399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103036200", "MAP": "D9-8402-T010", "PARCEL_NAM": "8-1-C", "ACRE": "0.61", "LONGITUDE": -64.9659011, "LATITUDE": 18.36534252, "OBJECTID_1": 489, "PARCEL_NO_": "101103036200", "Tax_Legal_": "8-1-C NELTJEBERG EASTERN SECTION NO.6 LITTLE NORTHSIDE QUARTER", "Name": "KOPKO, FREDERICK H.", "Address": "PO Box 303620", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.92439094399998, "SHAPE_Area": 2468.8534936000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355044.619999997317791, 259461.270399998873472 ], [ 355081.94030000269413, 259484.340500000864267 ], [ 355083.463200002908707, 259502.920400001108646 ], [ 355058.486900001764297, 259527.592199999839067 ], [ 355056.09009999781847, 259533.047400001436472 ], [ 355070.512000001966953, 259543.931200001388788 ], [ 355077.738300003111362, 259547.578899998217821 ], [ 355082.581600002944469, 259546.985300000756979 ], [ 355085.830200001597404, 259544.267599999904633 ], [ 355098.025600001215935, 259532.54619999974966 ], [ 355106.227200001478195, 259516.359099999070168 ], [ 355107.933300003409386, 259505.396200001239777 ], [ 355101.581699997186661, 259493.734099999070168 ], [ 355092.924400001764297, 259468.754200000315905 ], [ 355090.539700001478195, 259464.723900001496077 ], [ 355084.112499997019768, 259461.927099999040365 ], [ 355044.619999997317791, 259461.270399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103031500", "MAP": "D9-8402-T010", "PARCEL_NAM": "8-1-A", "ACRE": "0.51", "LONGITUDE": -64.96672481, "LATITUDE": 18.36556184, "OBJECTID_1": 452, "PARCEL_NO_": "101103031500", "Tax_Legal_": "8-1-A & 8-1 REM NELTJEBERG(EASTERN PT) NO.6 LITTLE NORTHSIDE QTR.", "Name": "CORDELL & ELAINE JACOBS SR.", "Address": "PO Box 306936", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.07459590600001, "SHAPE_Area": 2667.5080838200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355026.465499997138977, 259541.622900001704693 ], [ 355021.7837999984622, 259512.362700000405312 ], [ 355004.917599998414516, 259496.879000000655651 ], [ 354998.307199999690056, 259500.699299998581409 ], [ 354977.292700000107288, 259506.437899999320507 ], [ 354965.181800000369549, 259508.238699998706579 ], [ 354978.417999997735023, 259563.653499998152256 ], [ 354997.843199998140335, 259555.157699998468161 ], [ 355017.266599997878075, 259546.872900001704693 ], [ 355026.465499997138977, 259541.622900001704693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103035300", "MAP": "D9-9183-T017", "PARCEL_NAM": "11A", "ACRE": "1.01", "LONGITUDE": -64.96564446, "LATITUDE": 18.36357755, "OBJECTID_1": 487, "PARCEL_NO_": "101103035300", "Tax_Legal_": "11A NELTJEBERG NO. 6 LITTLE NORTHSIDE", "Name": "BONELLI, FRANCISCO", "Address": "PO Box 9773", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 111800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 349.475312309, "SHAPE_Area": 3824.9444391000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355204.927500002086163, 259314.862199999392033 ], [ 355062.54389999806881, 259283.909200001507998 ], [ 355053.242799997329712, 259299.343499999493361 ], [ 355043.629699997603893, 259319.296900000423193 ], [ 355157.822499997913837, 259328.486000001430511 ], [ 355204.927500002086163, 259314.862199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103035400", "MAP": "D9-9183-T017", "PARCEL_NAM": "11B", "ACRE": "4.0", "LONGITUDE": -64.96586512, "LATITUDE": 18.36386011, "OBJECTID_1": 488, "PARCEL_NO_": "101103035400", "Tax_Legal_": "11B NELTJEBERG NO.6 LITTLE NORTHSIDE", "Name": "RICHARDSON, ALBERT & DANITA", "Address": "PO Box 308151", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.430692024, "SHAPE_Area": 3918.5301086099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355157.822499997913837, 259328.486000001430511 ], [ 355043.629699997603893, 259319.296900000423193 ], [ 355029.437200002372265, 259348.75560000166297 ], [ 355025.35530000180006, 259354.63289999961853 ], [ 355072.895400002598763, 259358.821600001305342 ], [ 355122.854400001466274, 259363.030200000852346 ], [ 355157.822499997913837, 259328.486000001430511 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020400", "MAP": "D9-9171-T017", "PARCEL_NAM": "10-1 REM", "ACRE": "0.13", "LONGITUDE": -64.951127, "LATITUDE": 18.36852551, "OBJECTID_1": 572, "PARCEL_NO_": "101104020400", "Tax_Legal_": "10-1 REM & 10-2 REM 4A LITTLE NORTHSIDE QTR.", "Name": "MAGEN'S BAY MANAGEMENT", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 194400, "Improved_V": 310600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.489662795200005, "SHAPE_Area": 563.49713400799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356649.907700002193451, 259860.832499999552965 ], [ 356629.061700001358986, 259856.590999998152256 ], [ 356629.093800000846386, 259856.890799999237061 ], [ 356626.447899997234344, 259876.787500001490116 ], [ 356648.355499997735023, 259880.91499999910593 ], [ 356655.436999998986721, 259882.348200000822544 ], [ 356657.774499997496605, 259882.820700000971556 ], [ 356652.800499998033047, 259861.653299998492002 ], [ 356652.810300000011921, 259861.418299999088049 ], [ 356649.907700002193451, 259860.832499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95089695, "LATITUDE": 18.36855766, "OBJECTID_1": 573, "PARCEL_NO_": "101104020500", "Tax_Legal_": "10-1-1 & 1-2-1 HULL NO.4A LITTLE NORTHSIDE QTR.", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111100, "Improved_V": 302000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.089873404100004, "SHAPE_Area": 431.3631673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356652.810300000011921, 259861.418299999088049 ], [ 356652.800499998033047, 259861.653299998492002 ], [ 356657.774499997496605, 259882.820700000971556 ], [ 356675.025499999523163, 259886.312600001692772 ], [ 356677.771600000560284, 259866.456399999558926 ], [ 356652.810300000011921, 259861.418299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101104020500", "MAP": "D9-9171-T017", "PARCEL_NAM": "10-1-1", "ACRE": "0.06", "LONGITUDE": -64.95100271, "LATITUDE": 18.36874233, "OBJECTID_1": 573, "PARCEL_NO_": "101104020500", "Tax_Legal_": "10-1-1 & 1-2-1 HULL NO.4A LITTLE NORTHSIDE QTR.", "Name": "MAGENS BAY MANAGEMENT LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111100, "Improved_V": 302000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.800200920400002, "SHAPE_Area": 263.962621662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356648.147299997508526, 259880.875799998641014 ], [ 356649.500399999320507, 259906.375100001692772 ], [ 356660.834700003266335, 259903.351700000464916 ], [ 356662.829000003635883, 259902.826299998909235 ], [ 356657.803000003099442, 259882.826999999582767 ], [ 356655.436999998986721, 259882.348200000822544 ], [ 356648.355499997735023, 259880.91499999910593 ], [ 356648.147299997508526, 259880.875799998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042000", "MAP": "D9-8616-T011", "PARCEL_NAM": "365-A", "ACRE": ".02", "LONGITUDE": -64.90453369, "LATITUDE": 18.35231393, "OBJECTID_1": 6230, "PARCEL_NO_": "103004042000", "Tax_Legal_": "351 & 365-A WINTBERG NO.3 GREAT NORTHSIDE QTR", "Name": "GARCIA, MICHAEL", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69800, "Improved_V": 405200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 46.345575451800002, "SHAPE_Area": 107.875631091 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361578.223999999463558, 258106.677700001746416 ], [ 361576.292300000786781, 258124.378199998289347 ], [ 361582.072999998927116, 258124.636700000613928 ], [ 361582.067100003361702, 258124.536800000816584 ], [ 361585.24210000038147, 258109.984700001776218 ], [ 361578.230700001120567, 258106.677400000393391 ], [ 361578.223999999463558, 258106.677700001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102904014800", "MAP": "D9-1499-T79", "PARCEL_NAM": "1-11B", "ACRE": "0.50", "LONGITUDE": -64.91723307, "LATITUDE": 18.35251575, "OBJECTID_1": 4963, "PARCEL_NO_": "102904014800", "Tax_Legal_": "1-11B ST JOSEPH & ROSENDAHL #4 GREAT NORTHSIDE QTR.", "Name": "BAIRD, GORDON & GERMAINE", "Address": "PO Box 10185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.354602718, "SHAPE_Area": 1698.63134567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360230.342500001192093, 258098.233300000429153 ], [ 360205.939900003373623, 258139.232599999755621 ], [ 360244.79169999808073, 258146.199999999254942 ], [ 360246.402500003576279, 258146.424199998378754 ], [ 360250.448499999940395, 258144.7685999982059 ], [ 360260.966499999165535, 258140.632800001651049 ], [ 360273.928700000047684, 258133.561700001358986 ], [ 360230.342500001192093, 258098.233300000429153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "GUT", "PARCEL_NO": "107603036400", "MAP": "B9-351-T72", "PARCEL_NAM": "33", "ACRE": null, "LONGITUDE": -64.8785584, "LATITUDE": 18.32265063, "OBJECTID_1": 38686, "PARCEL_NO_": "107603036400", "Tax_Legal_": "33 NADIR NO.2 RED HOOK QTR", "Name": "GOVERNMENT OF THE VIRGIN ISLANDS", "Address": "1 Sub Base", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.072835454300005, "SHAPE_Area": 298.59437994299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364340.162299998104572, 254851.228399999439716 ], [ 364363.405100002884865, 254870.595100000500679 ], [ 364367.429700002074242, 254861.303700000047684 ], [ 364364.526500001549721, 254859.078600000590086 ], [ 364358.97240000218153, 254854.336399998515844 ], [ 364343.92119999974966, 254841.172800000756979 ], [ 364340.162299998104572, 254851.228399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "103002010200", "MAP": "B9-244-T69", "PARCEL_NAM": "1C", "ACRE": null, "LONGITUDE": -64.89982827, "LATITUDE": 18.35864691, "OBJECTID_1": 5289, "PARCEL_NO_": "103002010200", "Tax_Legal_": "MANDAHL 1B&C GR NORTHSIDE", "Name": "QUERRARD, LOUIS THOMAS P", "Address": "7472 Lower Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 198900, "Improved_V": 81700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 409.97302062, "SHAPE_Area": 8109.09024426 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362145.771600000560284, 258765.486099999397993 ], [ 362110.920299999415874, 258786.310300000011921 ], [ 362026.20719999819994, 258791.527499999850988 ], [ 362014.037000000476837, 258800.2939000017941 ], [ 362013.029200002551079, 258823.928100001066923 ], [ 362039.331500001251698, 258890.030499998480082 ], [ 362076.024800002574921, 258858.317800000309944 ], [ 362130.04169999808073, 258813.026700001209974 ], [ 362143.130400002002716, 258799.730200000107288 ], [ 362148.324400000274181, 258784.979400001466274 ], [ 362150.402000002563, 258770.644200000911951 ], [ 362145.771600000560284, 258765.486099999397993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401170800", "MAP": "D9-8285-T009", "PARCEL_NAM": "A-12", "ACRE": ".0334", "LONGITUDE": -64.9271418, "LATITUDE": 18.34663367, "OBJECTID_1": 11726, "PARCEL_NO_": "105401170800", "Tax_Legal_": "208 & A-12 HOSPITAL GROUND KRONPRINDSENS QTR", "Name": "SMITH, DOROTHY L.", "Address": "PO Box 9428", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52300, "Improved_V": 169300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 43.8451487775, "SHAPE_Area": 91.319337251999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359197.662900000810623, 257462.253600001335144 ], [ 359196.857199996709824, 257459.567999999970198 ], [ 359190.206399999558926, 257461.443799998611212 ], [ 359190.523999996483326, 257462.166700001806021 ], [ 359191.040500000119209, 257463.342700000852346 ], [ 359193.425300002098083, 257467.372999999672174 ], [ 359196.155799999833107, 257476.209300000220537 ], [ 359201.302199997007847, 257474.38459999859333 ], [ 359197.662900000810623, 257462.253600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301014600", "MAP": null, "PARCEL_NAM": "10-A-3", "ACRE": null, "LONGITUDE": -64.93112774, "LATITUDE": 18.37440299, "OBJECTID_1": 836, "PARCEL_NO_": "101301014600", "Tax_Legal_": "PETERBORG 10-A-3 GT. NORTHSIDE QTR.", "Name": "OTTLEY, JR. , BASIL C. & KIRSTEN A", "Address": "PO Box 583", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 161500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.00305802099999, "SHAPE_Area": 2177.6425252099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358778.177500002086163, 260543.3141999989748 ], [ 358751.845399998128414, 260500.176600001752377 ], [ 358740.566799998283386, 260511.659000001847744 ], [ 358735.230999998748302, 260517.0912000015378 ], [ 358724.630300000309944, 260530.936599999666214 ], [ 358722.607100002467632, 260533.050700001418591 ], [ 358719.455300003290176, 260536.343899998813868 ], [ 358752.398400001227856, 260574.441399998962879 ], [ 358757.993000000715256, 260566.862799998372793 ], [ 358763.088699996471405, 260559.960099998861551 ], [ 358770.981700003147125, 260551.252599999308586 ], [ 358778.177500002086163, 260543.3141999989748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301014300", "MAP": null, "PARCEL_NAM": "10-13", "ACRE": null, "LONGITUDE": -64.93217396, "LATITUDE": 18.37524418, "OBJECTID_1": 833, "PARCEL_NO_": "101301014300", "Tax_Legal_": "PETERBORG 10-13 GT. NORTHSIDE", "Name": "HEIKKILA, ERIK L.", "Address": "PO Box 305794", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 231900, "Improved_V": 279500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.67390073499999, "SHAPE_Area": 2405.4874664399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358605.253600001335144, 260629.59569999948144 ], [ 358631.581399999558926, 260662.741799999028444 ], [ 358662.39750000089407, 260642.306800000369549 ], [ 358672.937100000679493, 260635.638099998235703 ], [ 358670.554099999368191, 260631.396699998527765 ], [ 358672.160099998116493, 260630.468600001186132 ], [ 358640.216300003230572, 260595.68470000103116 ], [ 358619.909299999475479, 260613.039299998432398 ], [ 358606.893200002610683, 260626.442699998617172 ], [ 358605.253600001335144, 260629.59569999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301014400", "MAP": null, "PARCEL_NAM": "10-A-1", "ACRE": null, "LONGITUDE": -64.9318068, "LATITUDE": 18.37497922, "OBJECTID_1": 834, "PARCEL_NO_": "101301014400", "Tax_Legal_": "PETERBORG 10-A-1 GT. NORTHSIDE", "Name": "COCCO, ROBERTA", "Address": "533A Heritage Hls", "City": "Somers", "State": "New York", "Zip": 10589, "Country": "United States", "Land_Value": 156100, "Improved_V": 670900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 192.37842827399999, "SHAPE_Area": 2243.9261678600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358714.417900003492832, 260604.904800001531839 ], [ 358682.497100003063679, 260570.917199999094009 ], [ 358679.921700000762939, 260573.000500001013279 ], [ 358679.29839999973774, 260573.414599999785423 ], [ 358670.190200001001358, 260579.464699998497963 ], [ 358644.273100003600121, 260592.762600000947714 ], [ 358640.216300003230572, 260595.68470000103116 ], [ 358672.160099998116493, 260630.468600001186132 ], [ 358673.79559999704361, 260629.523400001227856 ], [ 358712.073299996554852, 260606.574999999254942 ], [ 358712.700000002980232, 260606.199299998581409 ], [ 358714.417900003492832, 260604.904800001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301014500", "MAP": null, "PARCEL_NAM": "10-A-2", "ACRE": null, "LONGITUDE": -64.93142671, "LATITUDE": 18.37471351, "OBJECTID_1": 835, "PARCEL_NO_": "101301014500", "Tax_Legal_": "PETERBORG 10-A-2 GT. NORTHSIDE QTR.", "Name": "NEW EARTH DEVELOPMENT LLC", "Address": "PO Box 302007", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 170400, "Improved_V": 408400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.470677962, "SHAPE_Area": 2407.0542906699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358682.497100003063679, 260570.917199999094009 ], [ 358714.417900003492832, 260604.904800001531839 ], [ 358716.936599999666214, 260603.006799999624491 ], [ 358746.786300003528595, 260580.513799998909235 ], [ 358750.851999998092651, 260576.536299999803305 ], [ 358752.398400001227856, 260574.441399998962879 ], [ 358719.455300003290176, 260536.343899998813868 ], [ 358710.798900000751019, 260545.388799998909235 ], [ 358691.289200000464916, 260563.805399999022484 ], [ 358686.908699996769428, 260567.348700001835823 ], [ 358682.497100003063679, 260570.917199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.90995662, "LATITUDE": 18.33495434, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.51042295, "SHAPE_Area": 376.500843159 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361021.043200001120567, 256191.494100000709295 ], [ 361020.30120000243187, 256210.123199999332428 ], [ 361017.3378000035882, 256223.246599998325109 ], [ 361015.829099997878075, 256230.790199998766184 ], [ 361017.508699998259544, 256227.773200001567602 ], [ 361019.133900001645088, 256226.308899998664856 ], [ 361024.076099999248981, 256214.105900000780821 ], [ 361025.708499997854233, 256211.797200001776218 ], [ 361027.576499998569489, 256181.837200000882149 ], [ 361026.322499997913837, 256164.72690000012517 ], [ 361025.385899998247623, 256155.010400000959635 ], [ 361021.350699998438358, 256155.399599999189377 ], [ 361021.279500000178814, 256165.704900000244379 ], [ 361021.193199999630451, 256180.205899998545647 ], [ 361021.043200001120567, 256191.494100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105503051500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91002919, "LATITUDE": 18.33519355, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.16589358, "SHAPE_Area": 252.54259853299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361015.829099997878075, 256230.790199998766184 ], [ 361017.3378000035882, 256223.246599998325109 ], [ 361020.30120000243187, 256210.123199999332428 ], [ 361021.043200001120567, 256191.494100000709295 ], [ 361015.056500002741814, 256195.996800001710653 ], [ 361013.951099999248981, 256216.261599998921156 ], [ 361009.082800000905991, 256235.946600001305342 ], [ 361003.385600000619888, 256247.204100001603365 ], [ 361007.70889999717474, 256242.258499998599291 ], [ 361012.595299996435642, 256236.598900001496077 ], [ 361015.829099997878075, 256230.790199998766184 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91127773, "LATITUDE": 18.33385067, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.623347382399999, "SHAPE_Area": 184.05064944 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360895.027000002563, 256067.772100001573563 ], [ 360891.472599998116493, 256066.943799998611212 ], [ 360885.85530000180006, 256063.731499999761581 ], [ 360879.457000002264977, 256057.557399999350309 ], [ 360877.867700003087521, 256054.800200000405312 ], [ 360873.774999998509884, 256061.943900000303984 ], [ 360879.363499999046326, 256068.533500000834465 ], [ 360888.186200000345707, 256074.094099998474121 ], [ 360895.258299998939037, 256075.653499998152256 ], [ 360895.027000002563, 256067.772100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92555753000001, "LATITUDE": 18.34828143, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.35322466317, "SHAPE_Area": 0.06651802479 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359362.254900000989437, 257651.106699999421835 ], [ 359362.003600001335144, 257651.137499999254942 ], [ 359362.089199997484684, 257651.656399998813868 ], [ 359362.254900000989437, 257651.106699999421835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "A", "ACRE": null, "LONGITUDE": -64.92594099, "LATITUDE": 18.3475976, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.65714274699999, "SHAPE_Area": 436.89028658299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359302.086000002920628, 257567.427999999374151 ], [ 359301.954499997198582, 257570.385200001299381 ], [ 359301.07599999755621, 257578.361000001430511 ], [ 359304.026500001549721, 257579.214999999850988 ], [ 359309.806000001728535, 257580.887699998915195 ], [ 359316.050200000405312, 257582.448800001293421 ], [ 359322.081799998879433, 257581.296700000762939 ], [ 359342.447800002992153, 257577.406599998474121 ], [ 359360.021799996495247, 257574.629000000655651 ], [ 359346.710799999535084, 257572.665100000798702 ], [ 359339.1824000030756, 257572.77419999986887 ], [ 359328.708099998533726, 257571.683100000023842 ], [ 359320.197800002992153, 257570.592099998146296 ], [ 359302.086000002920628, 257567.427999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "1052020271??", "MAP": "C9-316-T89", "PARCEL_NAM": "41-B-1", "ACRE": "0.45", "LONGITUDE": -64.95625248, "LATITUDE": 18.33986819, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 186.60035856900001, "SHAPE_Area": 1694.68409161 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356155.227899998426437, 256715.695500001311302 ], [ 356161.589299999177456, 256694.53999999910593 ], [ 356155.98650000244379, 256692.286499999463558 ], [ 356151.967500001192093, 256690.77589999884367 ], [ 356136.697999998927116, 256684.740299999713898 ], [ 356098.122599996626377, 256669.436999998986721 ], [ 356096.488399997353554, 256671.956700000911951 ], [ 356094.010099999606609, 256678.902499999850988 ], [ 356091.766199998557568, 256689.456799998879433 ], [ 356127.842299997806549, 256714.526500001549721 ], [ 356131.640699997544289, 256710.452399998903275 ], [ 356136.4966000020504, 256708.38120000064373 ], [ 356142.938100002706051, 256709.489399999380112 ], [ 356150.968800000846386, 256713.354800000786781 ], [ 356155.227899998426437, 256715.695500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-9211-T017", "PARCEL_NAM": "4-51 & 4-52-A", "ACRE": "0.08", "LONGITUDE": -65.03579309, "LATITUDE": 18.35061934, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.907289580399997, "SHAPE_Area": 126.539202723 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 347716.494499996304512, 257812.271699998527765 ], [ 347711.372400000691414, 257812.790300000458956 ], [ 347707.807057129160967, 257813.744212268065894 ], [ 347704.400221057003364, 257815.163749651634134 ], [ 347701.212399996817112, 257817.023699998855591 ], [ 347699.447400003671646, 257818.191899999976158 ], [ 347699.45549999922514, 257818.20549999922514 ], [ 347703.583099998533726, 257824.238000001758337 ], [ 347706.334700003266335, 257822.333000000566244 ], [ 347708.874700002372265, 257821.168800000101328 ], [ 347711.308899998664856, 257820.5337999984622 ], [ 347714.695600003004074, 257820.004599999636412 ], [ 347718.29389999806881, 257819.581300001591444 ], [ 347716.494699999690056, 257812.278799999505281 ], [ 347716.494499996304512, 257812.271699998527765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-9254-T018", "PARCEL_NAM": "6L-24-A", "ACRE": "0.30", "LONGITUDE": -64.84144771, "LATITUDE": 18.32394248, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.93018088900001, "SHAPE_Area": 1262.57028825 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368221.26349999755621, 255020.234600000083447 ], [ 368229.465499997138977, 255021.293800000101328 ], [ 368243.136900000274181, 255025.627500001341105 ], [ 368280.088799998164177, 255042.184200000017881 ], [ 368317.058700002729893, 255056.629999998956919 ], [ 368328.601599998772144, 255061.074200000613928 ], [ 368307.410599999129772, 255040.673900000751019 ], [ 368304.011108236620203, 255037.472940230101813 ], [ 368300.280860272760037, 255034.664392949896865 ], [ 368296.264919343986548, 255032.28218679735437 ], [ 368292.011799998581409, 255030.355099998414516 ], [ 368277.724299997091293, 255024.4814000017941 ], [ 368258.991700001060963, 255017.496399998664856 ], [ 368252.483000002801418, 255015.908900000154972 ], [ 368243.7516999989748, 255014.162599999457598 ], [ 368240.888792786281556, 255013.720461852150038 ], [ 368237.992232554068323, 255013.679685991257429 ], [ 368235.118014018749818, 255014.04106067342218 ], [ 368232.321699999272823, 255014.797600001096725 ], [ 368220.891699999570847, 255019.877599999308586 ], [ 368221.26349999755621, 255020.234600000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-9254-T018", "PARCEL_NAM": "ROW 6L-24-R", "ACRE": "0.35", "LONGITUDE": -64.84143698, "LATITUDE": 18.32388573, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 348.52629928300001, "SHAPE_Area": 1418.22345262 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 368198.566699996590614, 255021.365299999713898 ], [ 368200.43469999730587, 255021.478399999439716 ], [ 368218.994199998676777, 255019.941500000655651 ], [ 368221.26349999755621, 255020.234600000083447 ], [ 368220.891699999570847, 255019.877599999308586 ], [ 368232.321699999272823, 255014.797600001096725 ], [ 368235.118014018633403, 255014.041060672898311 ], [ 368237.992232554010116, 255013.679685990588041 ], [ 368240.888792786281556, 255013.720461851655273 ], [ 368243.7516999989748, 255014.162599999457598 ], [ 368252.483000002801418, 255015.908900000154972 ], [ 368258.991700001060963, 255017.496399998664856 ], [ 368277.724299997091293, 255024.4814000017941 ], [ 368292.011799998581409, 255030.355099998414516 ], [ 368296.264919343986548, 255032.282186797325267 ], [ 368300.280860272760037, 255034.664392949896865 ], [ 368304.011108236620203, 255037.472940230101813 ], [ 368307.410599999129772, 255040.673900000751019 ], [ 368328.601599998772144, 255061.074200000613928 ], [ 368350.991499997675419, 255069.694699998944998 ], [ 368351.066899999976158, 255069.566500000655651 ], [ 368348.209399998188019, 255066.86769999936223 ], [ 368345.351899996399879, 255064.645199999213219 ], [ 368313.284299999475479, 255033.847699999809265 ], [ 368309.051409416249953, 255030.139528366737068 ], [ 368304.523397224314976, 255026.798120708379429 ], [ 368299.731950541085098, 255023.846860260469839 ], [ 368294.710600003600121, 255021.306400001049042 ], [ 368278.200499996542931, 255014.480099998414516 ], [ 368261.690499998629093, 255008.765099998563528 ], [ 368253.752999998629093, 255006.225099999457598 ], [ 368244.862999998033047, 255004.320099998265505 ], [ 368240.888873956690077, 255003.865599166165339 ], [ 368236.890542833018117, 255003.982205446547596 ], [ 368232.949658580881078, 255004.667537563247606 ], [ 368229.146700002253056, 255005.907600000500679 ], [ 368219.578335181984585, 255009.69092301276396 ], [ 368210.096600003540516, 255013.6864 ], [ 368203.429099999368191, 255017.972600001841784 ], [ 368198.50789999961853, 255021.306400001049042 ], [ 368198.566699996590614, 255021.365299999713898 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": "D9-9250-T018", "PARCEL_NAM": "14-91-1", "ACRE": "0.13", "LONGITUDE": -64.9038786, "LATITUDE": 18.3228003, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.08142789799999, "SHAPE_Area": 522.46048156699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361667.696000002324581, 254818.696299999952316 ], [ 361667.641500003635883, 254818.714499998837709 ], [ 361676.949699997901917, 254878.900299999862909 ], [ 361686.192299999296665, 254878.658700000494719 ], [ 361676.993100002408028, 254822.6435999982059 ], [ 361668.957000002264977, 254819.411499999463558 ], [ 361667.696000002324581, 254818.696299999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503040300", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-13", "ACRE": ".14", "LONGITUDE": -64.89130814000001, "LATITUDE": 18.32257378, "OBJECTID_1": 37620, "PARCEL_NO_": "107503040300", "Tax_Legal_": "12B-13 ESTATE BOVONI(WESTERN PAR 1&2 FRENCHMAN'S BAY", "Name": "BROWN, HELEN", "Address": "PO Box 9278", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 136700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.92332152100001, "SHAPE_Area": 602.19829647100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363023.168999999761581, 254834.58559999987483 ], [ 363002.552599996328354, 254819.80009999871254 ], [ 362996.975199997425079, 254827.747499998658895 ], [ 362990.472499996423721, 254833.815999999642372 ], [ 362984.236900001764297, 254838.52250000089407 ], [ 363016.621299996972084, 254850.78770000115037 ], [ 363016.949600003659725, 254849.442600000649691 ], [ 363018.60360000282526, 254844.600900001823902 ], [ 363023.168999999761581, 254834.58559999987483 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503040400", "MAP": "A9-506-T97", "PARCEL_NAM": "12B-14", "ACRE": ".18", "LONGITUDE": -64.89140842, "LATITUDE": 18.32271448, "OBJECTID_1": 37621, "PARCEL_NO_": "107503040400", "Tax_Legal_": "ESTATE BOVONI 12B-14 1&2 FRENCHMAN'S BAY QTR.", "Name": "BRIDGEWATER, ANTHONY A. & JENNIFER JEFFERS", "Address": "PO BOX 6816", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23900, "Improved_V": 86800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.656038803, "SHAPE_Area": 646.47330792900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363016.621299996972084, 254850.78770000115037 ], [ 362984.236900001764297, 254838.52250000089407 ], [ 362978.298699997365475, 254843.00450000166893 ], [ 362970.181699998676777, 254849.270899999886751 ], [ 362968.517700001597404, 254850.226199999451637 ], [ 363012.820000000298023, 254865.772999998182058 ], [ 363013.607400000095367, 254863.136300001293421 ], [ 363016.621299996972084, 254850.78770000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020900", "MAP": "D9-9195-T017", "PARCEL_NAM": "13 & 14-2", "ACRE": "0.30", "LONGITUDE": -64.86318941, "LATITUDE": 18.32569103, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.90516822199999, "SHAPE_Area": 1035.5448721400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365986.426700003445148, 255187.088599998503923 ], [ 365961.770300000905991, 255185.892599999904633 ], [ 365962.206399999558926, 255202.8260000012815 ], [ 365962.22410000115633, 255203.071299999952316 ], [ 365962.03490000218153, 255203.355200000107288 ], [ 365961.688199996948242, 255224.504599999636412 ], [ 365989.788400001823902, 255226.281100001186132 ], [ 365989.177199997007847, 255207.717500001192093 ], [ 365988.740299999713898, 255204.440900001674891 ], [ 365986.426700003445148, 255187.088599998503923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020900", "MAP": "D9-9195-T017", "PARCEL_NAM": "13 & 14-1", "ACRE": "0.30", "LONGITUDE": -64.86317149, "LATITUDE": 18.32601694, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.10795556400001, "SHAPE_Area": 958.240427565 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365989.788400001823902, 255226.281100001186132 ], [ 365961.688199996948242, 255224.504599999636412 ], [ 365961.514399997889996, 255235.105200000107288 ], [ 365961.505699999630451, 255235.634399998933077 ], [ 365962.03490000218153, 255244.365699999034405 ], [ 365963.423600003123283, 255254.7043999992311 ], [ 365972.089000001549721, 255257.330299999564886 ], [ 365985.84740000218153, 255262.092799998819828 ], [ 365990.609899997711182, 255267.119899999350309 ], [ 365990.087300002574921, 255267.396600000560284 ], [ 365991.151100002229214, 255267.671399999409914 ], [ 365990.134400002658367, 255236.789900001138449 ], [ 365990.130199998617172, 255236.663199998438358 ], [ 365989.788400001823902, 255226.281100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020900", "MAP": "D9-9195-T017", "PARCEL_NAM": "13 & 14-5", "ACRE": "0.27", "LONGITUDE": -64.8635219, "LATITUDE": 18.32602407, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.014802906, "SHAPE_Area": 1010.89035483 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365953.751999996602535, 255226.036800000816584 ], [ 365924.453900001943111, 255224.705099999904633 ], [ 365925.264499999582767, 255240.701699998229742 ], [ 365926.222499996423721, 255259.605099998414516 ], [ 365938.150600001215935, 255260.074599999934435 ], [ 365955.946800000965595, 255261.807500001043081 ], [ 365953.595600001513958, 255243.520300000905991 ], [ 365953.568199999630451, 255243.307300001382828 ], [ 365953.751999996602535, 255226.036800000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201021500", "MAP": "D9-9277-T018", "PARCEL_NAM": "66", "ACRE": "1.02", "LONGITUDE": -64.94574713, "LATITUDE": 18.3249618, "OBJECTID_1": 87283, "PARCEL_NO_": "507201021500", "Tax_Legal_": "66 EASTERN WATER ISLAND No.10&11 SOUTHSIDE QTR.", "Name": "REVEX 108 INVESTMENTS LLC", "Address": "17 Water Is", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 142800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.06072585499999, "SHAPE_Area": 3963.7338833700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357277.480400003492832, 255007.861800000071526 ], [ 357250.05120000243187, 254994.418000001460314 ], [ 357238.516400001943111, 255026.912500001490116 ], [ 357216.307499997317791, 255089.476500000804663 ], [ 357227.491599999368191, 255101.8114 ], [ 357236.292700000107288, 255109.905000001192093 ], [ 357242.718000002205372, 255112.912900000810623 ], [ 357245.765799999237061, 255113.820500001311302 ], [ 357276.006899997591972, 255033.360700000077486 ], [ 357284.525700002908707, 255010.69539999961853 ], [ 357277.480400003492832, 255007.861800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201021900", "MAP": "D9-9305-T018", "PARCEL_NAM": "70", "ACRE": "1.03", "LONGITUDE": -64.94512713, "LATITUDE": 18.32523174, "OBJECTID_1": 87287, "PARCEL_NO_": "507201021900", "Tax_Legal_": "70 EASTERN WATER ISLAND 10 SOUTHSIDE QUARTER", "Name": "TAPP, HARALD", "Address": "8185 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 137400, "Improved_V": 250900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.15116751300002, "SHAPE_Area": 3337.4911466200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357340.1587999984622, 255033.494899999350309 ], [ 357320.922200001776218, 255023.800599999725819 ], [ 357302.505000002682209, 255073.086100000888109 ], [ 357282.106799997389317, 255127.673000000417233 ], [ 357281.615099996328354, 255128.353700000792742 ], [ 357283.701499998569489, 255129.502599999308586 ], [ 357296.530500002205372, 255138.051300000399351 ], [ 357304.563100002706051, 255141.705600000917912 ], [ 357307.77759999781847, 255142.998500000685453 ], [ 357345.978200003504753, 255041.102299999445677 ], [ 357348.317199997603893, 255034.863099999725819 ], [ 357345.792199999094009, 255034.807599999010563 ], [ 357340.1587999984622, 255033.494899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "507201022100", "MAP": "D9-9090-T017", "PARCEL_NAM": "71", "ACRE": "1.01", "LONGITUDE": -64.94482297, "LATITUDE": 18.32524072, "OBJECTID_1": 87289, "PARCEL_NO_": "507201022100", "Tax_Legal_": "71 EASTERN WATER ISLAND SOUTHSIDE QTR. 10 & 11", "Name": "DUGDALE-HATHAWAY FAMILY LLC", "Address": "1202 Stockford Rd", "City": "Chadds Ford", "State": "Pennsylvania", "Zip": 19317, "Country": "United States", "Land_Value": 146900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.525954114, "SHAPE_Area": 3472.5233741500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357348.849799998104572, 255125.742400001734495 ], [ 357383.667199999094009, 255034.047699999064207 ], [ 357378.861800000071526, 255033.811700001358986 ], [ 357361.110299997031689, 255035.144000001251698 ], [ 357348.317199997603893, 255034.863099999725819 ], [ 357345.978200003504753, 255041.102299999445677 ], [ 357307.77759999781847, 255142.998500000685453 ], [ 357348.359099999070168, 255125.948600001633167 ], [ 357348.849799998104572, 255125.742400001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010800", "MAP": "D9-9272-T018", "PARCEL_NAM": "82A", "ACRE": "0.31", "LONGITUDE": -64.9537084, "LATITUDE": 18.32020896, "OBJECTID_1": 87166, "PARCEL_NO_": "507104010800", "Tax_Legal_": "82 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CHEESBOROUGH, P. & EDMUND III", "Address": "106 Junior Ln", "City": "Trinidad", "State": "Texas", "Zip": 75163, "Country": "United States", "Land_Value": 263800, "Improved_V": 53700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.73257586899999, "SHAPE_Area": 1090.24507657 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356405.743299998342991, 254540.754099998623133 ], [ 356440.707900002598763, 254506.632100000977516 ], [ 356417.385899998247623, 254499.263999998569489 ], [ 356414.999399997293949, 254495.44480000063777 ], [ 356409.18469999730587, 254504.105000000447035 ], [ 356395.637999996542931, 254524.0016999989748 ], [ 356386.383400000631809, 254537.140900000929832 ], [ 356392.497800000011921, 254542.236299999058247 ], [ 356397.844099998474121, 254542.236299999058247 ], [ 356405.743299998342991, 254540.754099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "507104010800", "MAP": "D9-9272-T018", "PARCEL_NAM": "82B", "ACRE": "0.51", "LONGITUDE": -64.95382477, "LATITUDE": 18.32060141, "OBJECTID_1": 87166, "PARCEL_NO_": "507104010800", "Tax_Legal_": "82 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CHEESBOROUGH, P. & EDMUND III", "Address": "106 Junior Ln", "City": "Trinidad", "State": "Texas", "Zip": 75163, "Country": "United States", "Land_Value": 263800, "Improved_V": 53700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.17936613800001, "SHAPE_Area": 1920.7913864100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356432.892300002276897, 254563.714600000530481 ], [ 356405.743299998342991, 254540.754099998623133 ], [ 356397.844099998474121, 254542.236299999058247 ], [ 356392.497800000011921, 254542.236299999058247 ], [ 356386.383400000631809, 254537.140900000929832 ], [ 356378.493000000715256, 254548.343400001525879 ], [ 356375.113500192994252, 254553.795029951783363 ], [ 356371.380093716783449, 254559.010676042933483 ], [ 356367.309199996292591, 254563.967399999499321 ], [ 356384.270499996840954, 254577.597100000828505 ], [ 356402.044699996709824, 254591.879799999296665 ], [ 356432.892300002276897, 254563.714600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "wW-1", "PARCEL_NO": "507104010800", "MAP": "D9-9272-T018", "PARCEL_NAM": "82C", "ACRE": "0.55", "LONGITUDE": -64.95432495, "LATITUDE": 18.3206882, "OBJECTID_1": 87166, "PARCEL_NO_": "507104010800", "Tax_Legal_": "82 WATER ISLAND SOUTHSIDE QUARTER 10", "Name": "CHEESBOROUGH, P. & EDMUND III", "Address": "106 Junior Ln", "City": "Trinidad", "State": "Texas", "Zip": 75163, "Country": "United States", "Land_Value": 263800, "Improved_V": 53700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.69683368199998, "SHAPE_Area": 2075.5486092599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356384.270499996840954, 254577.597100000828505 ], [ 356367.309199996292591, 254563.967399999499321 ], [ 356367.274599999189377, 254564.006799999624491 ], [ 356363.799601107253693, 254566.065704304492101 ], [ 356360.030139063543174, 254567.516862509859493 ], [ 356356.07158601708943, 254568.319708705617813 ], [ 356352.034599997103214, 254568.451799999922514 ], [ 356345.381166115985252, 254567.492513031174894 ], [ 356338.809184277663007, 254566.079194731632015 ], [ 356332.349600002169609, 254564.218499999493361 ], [ 356326.570387352665421, 254561.280881056271028 ], [ 356321.144714481197298, 254557.732504273124505 ], [ 356316.136872125964146, 254553.615415635606041 ], [ 356311.606200002133846, 254548.978399999439716 ], [ 356304.621200002729893, 254542.628400001674891 ], [ 356293.725199997425079, 254532.871199999004602 ], [ 356289.986100003123283, 254528.784800000488758 ], [ 356280.253700003027916, 254539.480700001120567 ], [ 356364.728900000452995, 254600.027300000190735 ], [ 356366.148500002920628, 254601.044799998402596 ], [ 356402.044699996709824, 254591.879799999296665 ], [ 356384.270499996840954, 254577.597100000828505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051200", "MAP": "D9-9234-T018", "PARCEL_NAM": "2D", "ACRE": "0.01", "LONGITUDE": -64.94501881, "LATITUDE": 18.35818775, "OBJECTID_1": 3926, "PARCEL_NO_": "102801051200", "Tax_Legal_": "ST.PETER 2 REMAINDER No.2 LITTLE NORTHSIDE QTR.", "Name": "GHP LLC", "Address": "7406 Estate St Peter Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.659785670200002, "SHAPE_Area": 55.572147601300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357302.755999997258186, 258732.853000000119209 ], [ 357304.015399999916553, 258728.814899999648333 ], [ 357299.293200001120567, 258729.005300000309944 ], [ 357285.048000000417233, 258729.579700000584126 ], [ 357295.060000002384186, 258733.436000000685453 ], [ 357302.755999997258186, 258732.853000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801055100", "MAP": "F9-1229-T63", "PARCEL_NAM": "8-58", "ACRE": ".033", "LONGITUDE": -64.94494864000001, "LATITUDE": 18.35806675, "OBJECTID_1": 3959, "PARCEL_NO_": "102801055100", "Tax_Legal_": "ST PETER 3I-1 & 8-58 LERKENLUND", "Name": "TODMAN, MITCHELL PHILMORE", "Address": "8102 Lindberg Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 142100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 45.731969587999998, "SHAPE_Area": 84.774529683200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357298.706900000572205, 258710.468400001525879 ], [ 357304.015399999916553, 258728.814899999648333 ], [ 357308.809199996292591, 258713.443399999290705 ], [ 357298.706900000572205, 258710.468400001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105701012200", "MAP": "D9-2923-T85", "PARCEL_NAM": "ROW 17-B", "ACRE": ".18", "LONGITUDE": -64.88150474, "LATITUDE": 18.34546189, "OBJECTID_1": 21855, "PARCEL_NO_": "105701012200", "Tax_Legal_": "17B ANNAS RETREAT NEW QTR", "Name": "WELCH, SARA L & ARNOLD, WILLIAM", "Address": "PO Box 1498", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 31700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.63677220299999, "SHAPE_Area": 691.33713980799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364027.308799996972084, 257376.191799998283386 ], [ 364019.192199997603893, 257337.83729999884963 ], [ 364016.60700000077486, 257338.606899999082088 ], [ 364015.179399996995926, 257332.352699998766184 ], [ 364009.387999996542931, 257334.114799998700619 ], [ 364020.031099997460842, 257375.498700000345707 ], [ 364021.020199999213219, 257389.839299999177456 ], [ 364020.161200001835823, 257400.174699999392033 ], [ 364014.619099996984005, 257420.363800000399351 ], [ 364018.312100000679493, 257422.425000000745058 ], [ 364022.124899998307228, 257424.629399999976158 ], [ 364028.695000000298023, 257395.598799999803305 ], [ 364027.567199997603893, 257379.809300001710653 ], [ 364027.308799996972084, 257376.191799998283386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501020500", "MAP": "A9-657-T005", "PARCEL_NAM": "REM 62", "ACRE": "40.83 (d.)", "LONGITUDE": -64.91511949, "LATITUDE": 18.34352932, "OBJECTID_1": 19714, "PARCEL_NO_": "105501020500", "Tax_Legal_": "REM ESTATE THOMAS NO 6A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3549900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1372.43792813, "SHAPE_Area": 47788.340106000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360584.017200000584126, 257216.241500001400709 ], [ 360673.997299998998642, 257182.071800000965595 ], [ 360809.537100002169609, 257195.739700000733137 ], [ 360783.212899997830391, 257150.149500001221895 ], [ 360771.704899996519089, 257134.178300000727177 ], [ 360765.821099996566772, 257125.518899999558926 ], [ 360753.749399997293949, 257112.23369999974966 ], [ 360691.887299999594688, 257063.823899999260902 ], [ 360690.287699997425079, 257060.850699998438358 ], [ 360691.111000001430511, 257059.512200001627207 ], [ 360693.129299998283386, 257057.047400001436472 ], [ 360656.333999998867512, 257053.682799998670816 ], [ 360652.11599999666214, 257088.224199999123812 ], [ 360651.531900003552437, 257093.195000000298023 ], [ 360428.518299996852875, 257076.185499999672174 ], [ 360427.384300000965595, 257091.68299999833107 ], [ 360420.909400001168251, 257161.87220000103116 ], [ 360584.017200000584126, 257216.241500001400709 ] ] ], [ [ [ 359963.258500002324581, 257064.788100000470877 ], [ 359892.718699999153614, 257058.686000000685453 ], [ 359891.130000002682209, 257071.011100001633167 ], [ 359869.737300001084805, 257159.640999998897314 ], [ 359981.491800002753735, 257170.682000000029802 ], [ 359963.258500002324581, 257064.788100000470877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501020500", "MAP": "A9-657-T005", "PARCEL_NAM": "REM 62", "ACRE": "55", "LONGITUDE": -64.91792266, "LATITUDE": 18.34441716, "OBJECTID_1": 19714, "PARCEL_NO_": "105501020500", "Tax_Legal_": "REM ESTATE THOMAS NO 6A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3549900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1029.00652522, "SHAPE_Area": 42598.727887499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360420.909400001168251, 257161.87220000103116 ], [ 359981.491800002753735, 257170.682000000029802 ], [ 360102.2246999964118, 257351.781300000846386 ], [ 360227.51349999755621, 257291.414799999445677 ], [ 360420.909400001168251, 257161.87220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-5", "PARCEL_NO": "105501023300", "MAP": "D9-8665-T012", "PARCEL_NAM": "62-5", "ACRE": "5.422", "LONGITUDE": -64.91164283000001, "LATITUDE": 18.34319905, "OBJECTID_1": 19768, "PARCEL_NO_": "105501023300", "Tax_Legal_": "62-4 & 62-5 ESTATE THOMAS NO. 6A NEW QTR", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 241600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 340.54500466100001, "SHAPE_Area": 2787.8965182900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360904.951200000941753, 257069.260299999266863 ], [ 360891.306800000369549, 257075.436500001698732 ], [ 360767.852300003170967, 257109.121899999678135 ], [ 360749.346000000834465, 257108.787799999117851 ], [ 360799.899499997496605, 257123.101100001484156 ], [ 360885.777199998497963, 257102.282299999147654 ], [ 360904.951200000941753, 257069.260299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105501020500", "MAP": "D9-8831-T013", "PARCEL_NAM": "ROW 62A", "ACRE": "1.52", "LONGITUDE": -64.91753406, "LATITUDE": 18.34270957, "OBJECTID_1": 19714, "PARCEL_NO_": "105501020500", "Tax_Legal_": "REM ESTATE THOMAS NO 6A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3549900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1086.63896062, "SHAPE_Area": 4722.8398755999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360178.5878000035882, 257083.415300000458956 ], [ 360360.436999998986721, 257008.948800001293421 ], [ 360390.023800000548363, 257014.125799998641014 ], [ 360393.674900002777576, 257014.415100000798702 ], [ 360405.110500000417233, 257015.321199998259544 ], [ 360402.249499998986721, 256992.024700000882149 ], [ 360396.398353592725471, 256988.88422495132545 ], [ 360390.811999998986721, 256985.293800000101328 ], [ 360326.245800003409386, 257009.072299998253584 ], [ 360183.773699998855591, 257073.767499998211861 ], [ 360179.726000003516674, 257075.634199999272823 ], [ 360174.891699999570847, 257075.172400001436472 ], [ 359962.351199999451637, 257059.5185999982059 ], [ 359893.267200000584126, 257054.430500000715256 ], [ 359892.718699999153614, 257058.686000000685453 ], [ 359963.258500002324581, 257064.788100000470877 ], [ 360178.5878000035882, 257083.415300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015800", "MAP": "A9-102-T68", "PARCEL_NAM": "173-285", "ACRE": "0.11", "LONGITUDE": -64.8844531, "LATITUDE": 18.33892678, "OBJECTID_1": 21636, "PARCEL_NO_": "105604015800", "Tax_Legal_": "ANNAS RETREAT 173-285 No.2 NEW QTR.", "Name": "PHILLIPS, PATRICIA M", "Address": "PO Box 9283", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 12500, "Improved_V": 83400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.9039977889, "SHAPE_Area": 455.05185294900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363707.258900001645088, 256635.888799998909235 ], [ 363709.564800001680851, 256669.116099998354912 ], [ 363723.152800001204014, 256668.516199998557568 ], [ 363721.016199998557568, 256635.35700000077486 ], [ 363712.143100000917912, 256635.706500001251698 ], [ 363707.258900001645088, 256635.888799998909235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015700", "MAP": "A9-102-T68", "PARCEL_NAM": "173-284", "ACRE": "0.11", "LONGITUDE": -64.88432698, "LATITUDE": 18.33892114, "OBJECTID_1": 21635, "PARCEL_NO_": "105604015700", "Tax_Legal_": "ANNAS RETREAT 173-284 NEW QTR", "Name": "DURANT, VALENCIAand DWIGHT", "Address": "PO BOX 7422", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17100, "Improved_V": 82500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.408304010799995, "SHAPE_Area": 431.38582966000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363736.19709999859333, 256667.898899998515844 ], [ 363733.949500001966953, 256634.799199998378754 ], [ 363729.889200001955032, 256635.007399998605251 ], [ 363721.016199998557568, 256635.35700000077486 ], [ 363723.152800001204014, 256668.516199998557568 ], [ 363736.19709999859333, 256667.898899998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015500", "MAP": "A9-102-T68", "PARCEL_NAM": "173-282", "ACRE": "0.11", "LONGITUDE": -64.8840696, "LATITUDE": 18.33890735, "OBJECTID_1": 21633, "PARCEL_NO_": "105604015500", "Tax_Legal_": "173-282 ANNAS RETREAT NEW QTR", "Name": "ESTRILL, MARIO & ENID", "Address": "PO Box 8002", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 77200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.533954420800001, "SHAPE_Area": 469.78039236900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363763.886799998581409, 256666.551199998706579 ], [ 363761.945699997246265, 256633.746199999004602 ], [ 363747.637100003659725, 256634.097199998795986 ], [ 363749.773699998855591, 256667.256400000303984 ], [ 363763.886799998581409, 256666.551199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604015200", "MAP": "A9-102-T68", "PARCEL_NAM": "173-279", "ACRE": "0.11", "LONGITUDE": -64.88369544, "LATITUDE": 18.3388892, "OBJECTID_1": 21630, "PARCEL_NO_": "105604015200", "Tax_Legal_": "ANNAS RETREAT 173-279 NEW QTR", "Name": "CHARLESWELL, ANNICA", "Address": "PO Box 12421", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15100, "Improved_V": 73400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.376724465899997, "SHAPE_Area": 384.75764983300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363802.211000002920628, 256664.519099999219179 ], [ 363800.477300003170967, 256632.453099999576807 ], [ 363798.450900003314018, 256632.613200001418591 ], [ 363788.367600001394749, 256632.882599998265505 ], [ 363790.434500001370907, 256665.166499998420477 ], [ 363802.211000002920628, 256664.519099999219179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602070100", "MAP": "A9-178-T72", "PARCEL_NAM": "387-B", "ACRE": "4.20", "LONGITUDE": -64.88383859, "LATITUDE": 18.33984486, "OBJECTID_1": 21315, "PARCEL_NO_": "105602070100", "Tax_Legal_": "388 & 387 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 0, "Improved_V": 2032600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 696.28879387999996, "SHAPE_Area": 16471.7907175 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363862.400700002908707, 256766.747099999338388 ], [ 363832.305399999022484, 256759.859099999070168 ], [ 363849.499300003051758, 256698.25899999961257 ], [ 363831.747800000011921, 256699.591299999505281 ], [ 363814.804499998688698, 256700.719200000166893 ], [ 363797.053000003099442, 256702.051600001752377 ], [ 363780.916000001132488, 256703.186099998652935 ], [ 363763.164499998092651, 256704.518399998545647 ], [ 363748.640100002288818, 256705.66609999909997 ], [ 363730.888599999248981, 256706.998500000685453 ], [ 363723.626400001347065, 256707.572299998253584 ], [ 363705.06870000064373, 256708.89809999987483 ], [ 363692.965000003576279, 256709.854499999433756 ], [ 363675.213500000536442, 256711.186900001019239 ], [ 363672.755000002682209, 256715.8108000010252 ], [ 363665.390299998223782, 256728.416200000792742 ], [ 363659.656199999153614, 256738.923900000751019 ], [ 363660.361800000071526, 256750.750900000333786 ], [ 363670.671300001442432, 256771.100299999117851 ], [ 363673.839000001549721, 256777.88120000064373 ], [ 363677.825599998235703, 256783.191199999302626 ], [ 363682.616700001060963, 256788.718800000846386 ], [ 363684.313799999654293, 256778.811299998313189 ], [ 363707.014700002968311, 256764.431600000709295 ], [ 363709.435400001704693, 256764.24040000140667 ], [ 363712.945299997925758, 256765.703499998897314 ], [ 363716.667000003159046, 256767.254900000989437 ], [ 363719.075199998915195, 256768.54109999909997 ], [ 363722.300399996340275, 256768.567499998956919 ], [ 363723.882500000298023, 256772.169100001454353 ], [ 363729.494300000369549, 256776.014699999243021 ], [ 363753.638700000941753, 256781.489599999040365 ], [ 363785.014799997210503, 256789.979100000113249 ], [ 363822.006300002336502, 256801.892000000923872 ], [ 363835.672200001776218, 256806.859000001102686 ], [ 363846.915600001811981, 256812.228300001472235 ], [ 363861.357299998402596, 256820.790300000458956 ], [ 363872.577399998903275, 256828.9037000015378 ], [ 363881.427000001072884, 256831.298099998384714 ], [ 363890.294699996709824, 256831.581799998879433 ], [ 363902.414499998092651, 256828.725699998438358 ], [ 363914.210900001227856, 256822.129099998623133 ], [ 363909.628899998962879, 256817.547200001776218 ], [ 363872.322599999606609, 256786.590900000184774 ], [ 363862.400700002908707, 256766.747099999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105602070100", "MAP": "B9-378-T73", "PARCEL_NAM": "387-C", "ACRE": "0.83", "LONGITUDE": -64.88237761000001, "LATITUDE": 18.340146, "OBJECTID_1": 21315, "PARCEL_NO_": "105602070100", "Tax_Legal_": "388 & 387 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 0, "Improved_V": 2032600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.745051606, "SHAPE_Area": 2972.1341611799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363965.086800001561642, 256760.422100000083447 ], [ 363948.972499996423721, 256757.080899998545647 ], [ 363885.037500001490116, 256797.141499999910593 ], [ 363909.628899998962879, 256817.547200001776218 ], [ 363914.210900001227856, 256822.129099998623133 ], [ 363975.335100002586842, 256787.94819999858737 ], [ 363965.086800001561642, 256760.422100000083447 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303180800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9426012, "LATITUDE": 18.33822731, "OBJECTID_1": 11093, "PARCEL_NO_": "105303180800", "Tax_Legal_": "ALTONA 94 CROWN PRINCE QTR", "Name": "THE DIOCESE OF ST THOMAS", "Address": "P O BOX 1767", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 17.5336187232, "SHAPE_Area": 6.3234925038999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357572.302500002086163, 256522.864399999380112 ], [ 357564.5337999984622, 256523.963100001215935 ], [ 357572.593400001525879, 256524.451200000941753 ], [ 357572.302500002086163, 256522.864399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303180900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94245233, "LATITUDE": 18.33800581, "OBJECTID_1": 11094, "PARCEL_NO_": "105303180900", "Tax_Legal_": "ALTONA 94A & 93-A CROWN PRINCE QTR", "Name": "SARGENT, KRISTIE A.", "Address": "3697 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12100, "Improved_V": 51400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 10.9898506346, "SHAPE_Area": 5.9910444997600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357587.363799996674061, 256500.781199999153614 ], [ 357585.724500000476837, 256497.538699999451637 ], [ 357583.836900003254414, 256498.2314000017941 ], [ 357586.511900000274181, 256501.505300000309944 ], [ 357587.363799996674061, 256500.781199999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004036600", "MAP": "A3-25-T36", "PARCEL_NAM": "6", "ACRE": "9.05", "LONGITUDE": -64.90004219, "LATITUDE": 18.3498485, "OBJECTID_1": 6186, "PARCEL_NO_": "103004036600", "Tax_Legal_": "6 ESTATE MANDAHL GR NORTHSIDE QTR", "Name": "QUERRARD, MARIE ERNESTINE", "Address": "#1 ESTATE MANDAHL", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1012.87654844, "SHAPE_Area": 37671.102324699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361903.522799998521805, 257763.975400000810623 ], [ 361892.085199996829033, 257781.40260000154376 ], [ 361883.914200000464916, 257794.001299999654293 ], [ 361867.568499997258186, 257819.620999999344349 ], [ 361856.129100002348423, 257837.259199999272823 ], [ 361851.230099998414516, 257844.396299999207258 ], [ 361901.887500002980232, 257861.276200000196695 ], [ 361930.551600001752377, 257870.762800000607967 ], [ 361934.437700003385544, 257872.0489999987185 ], [ 361988.706500001251698, 257887.438999999314547 ], [ 362023.372699998319149, 257896.303800001740456 ], [ 362047.089100003242493, 257902.368400000035763 ], [ 362110.667099997401237, 257919.770100001245737 ], [ 362115.320000000298023, 257921.360300000756979 ], [ 362165.7179000005126, 257938.584800001233816 ], [ 362176.696699999272823, 257916.472899999469519 ], [ 362250.670400001108646, 257862.569600000977516 ], [ 362308.014399997889996, 257848.807000000029802 ], [ 362268.964699998497963, 257840.215799998492002 ], [ 362245.623000003397465, 257835.169700000435114 ], [ 362215.843400001525879, 257828.593199998140335 ], [ 362149.844400003552437, 257814.120799999684095 ], [ 362118.455799996852875, 257807.108899999409914 ], [ 362080.620300002396107, 257799.622099999338388 ], [ 362041.175700001418591, 257791.69990000128746 ], [ 362000.122100003063679, 257783.342300001531839 ], [ 361957.457599997520447, 257774.760499998927116 ], [ 361927.672600001096725, 257768.817200001329184 ], [ 361903.522799998521805, 257763.975400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105702038100", "MAP": "D9-6534-T99", "PARCEL_NAM": "103C-1", "ACRE": ".36", "LONGITUDE": -64.86846037, "LATITUDE": 18.3426025, "OBJECTID_1": 22547, "PARCEL_NO_": "105702038100", "Tax_Legal_": "SMITH BAY 103C-1 1,2,3, EASTEND QRT", "Name": "CHURCH OF THE APOSLTE'S DOCTRI", "Address": "PO Box 1018", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 125500, "Improved_V": 442000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.125155957, "SHAPE_Area": 1758.9108923599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365368.109600000083447, 257020.868200000375509 ], [ 365412.687100000679493, 257120.026799999177456 ], [ 365413.770599998533726, 257120.15430000051856 ], [ 365425.623700000345707, 257115.191899999976158 ], [ 365429.669600002467632, 257113.536200001835823 ], [ 365431.296599999070168, 257111.860800001770258 ], [ 365432.203699998557568, 257100.046999998390675 ], [ 365430.623400002717972, 257096.234400000423193 ], [ 365391.452100001275539, 257056.228199999779463 ], [ 365387.490699999034405, 257047.963100001215935 ], [ 365385.95719999819994, 257038.662399999797344 ], [ 365387.622000001370907, 257032.554299999028444 ], [ 365389.259800001978874, 257029.612399999052286 ], [ 365399.023599997162819, 257019.348799999803305 ], [ 365382.103699997067451, 257017.732599999755621 ], [ 365368.109600000083447, 257020.868200000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011200", "MAP": "D9-7858-T006", "PARCEL_NAM": "52-REM", "ACRE": "2.80", "LONGITUDE": -64.96847404, "LATITUDE": 18.35438667, "OBJECTID_1": 2657, "PARCEL_NO_": "102604011200", "Tax_Legal_": "LINDBERG BAY 52 S S QTR", "Name": "DOOKHAN, MARLENE JAQUELINE", "Address": "PO Box 306542", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 167900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 586.42317745499997, "SHAPE_Area": 12001.3783329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354804.302599996328354, 258427.093699999153614 ], [ 354803.206299997866154, 258381.095899999141693 ], [ 354813.121200002729893, 258367.031800001859665 ], [ 354842.366200000047684, 258347.77930000051856 ], [ 354862.174500003457069, 258343.024999998509884 ], [ 354860.332699999213219, 258311.608600001782179 ], [ 354852.484700001776218, 258177.741099998354912 ], [ 354783.240500003099442, 258236.317600000649691 ], [ 354783.861800000071526, 258264.469099998474121 ], [ 354783.660400003194809, 258288.109900001436472 ], [ 354787.117899999022484, 258338.275400001555681 ], [ 354792.180399999022484, 258411.72690000012517 ], [ 354792.018399998545647, 258424.871199999004602 ], [ 354791.957000002264977, 258433.61089999973774 ], [ 354804.302599996328354, 258427.093699999153614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107401020100", "MAP": "D9-7180-T003", "PARCEL_NAM": "14M-3", "ACRE": "5.17", "LONGITUDE": -64.91110283, "LATITUDE": 18.33131823, "OBJECTID_1": 33005, "PARCEL_NO_": "107401020100", "Tax_Legal_": "THOMAS 14M 6E NEW QTR", "Name": "LOCKHART, ALFRED", "Address": "PO Box 714", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 996700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 641.12132334499995, "SHAPE_Area": 22731.436785000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361001.802100002765656, 255799.758000001311302 ], [ 361008.09740000218153, 255724.91270000115037 ], [ 360822.990099996328354, 255729.131400000303984 ], [ 360822.228200003504753, 255770.846099998801947 ], [ 360798.845200002193451, 255770.654800001531839 ], [ 360799.383500002324581, 255802.112100001424551 ], [ 360799.506700001657009, 255844.670099999755621 ], [ 360998.305100001394749, 255842.536299999803305 ], [ 361001.802100002765656, 255799.758000001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102601026200", "MAP": "D9-6627-T99", "PARCEL_NAM": "ROW 9A", "ACRE": "0.05", "LONGITUDE": -64.97874581000001, "LATITUDE": 18.36211857, "OBJECTID_1": 2269, "PARCEL_NO_": "102601026200", "Tax_Legal_": "9A ESTATE PEARL No.2 SOUTHSIDE QUARTER", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 9000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.356598168, "SHAPE_Area": 195.86092371399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353681.201200000941753, 259054.831199999898672 ], [ 353709.933600001037121, 259105.783300001174212 ], [ 353735.993699997663498, 259153.490100000053644 ], [ 353738.095299996435642, 259161.265999998897314 ], [ 353743.979800000786781, 259169.672499999403954 ], [ 353751.965999998152256, 259176.607900001108646 ], [ 353755.328599996864796, 259179.970499999821186 ], [ 353756.779799997806549, 259183.819099999964237 ], [ 353759.205899998545647, 259182.994500000029802 ], [ 353759.232900001108646, 259179.828400000929832 ], [ 353755.2246999964118, 259177.051300000399351 ], [ 353748.028999999165535, 259169.81529999896884 ], [ 353740.856700003147125, 259159.835200000554323 ], [ 353721.369699999690056, 259124.890500001609325 ], [ 353682.08330000191927, 259054.440600000321865 ], [ 353681.201200000941753, 259054.831199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012500", "MAP": "D9-9284-T018", "PARCEL_NAM": "9B-1", "ACRE": "0.30", "LONGITUDE": -64.95418994000001, "LATITUDE": 18.35975408, "OBJECTID_1": 2965, "PARCEL_NO_": "102702012500", "Tax_Legal_": "PAR 9 REM LILLIENDAHL & MARIENHOJ", "Name": "USVIAH, LLC", "Address": "PO BOX 22268", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.41014540899999, "SHAPE_Area": 1738.44290213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356358.551899999380112, 258886.327399998903275 ], [ 356340.771799996495247, 258886.962400000542402 ], [ 356300.160300001502037, 258867.355599999427795 ], [ 356305.611100003123283, 258894.730799999088049 ], [ 356305.739799998700619, 258897.483600001782179 ], [ 356307.023900002241135, 258924.960499998182058 ], [ 356314.397200003266335, 258921.464400000870228 ], [ 356362.456799998879433, 258898.159099999815226 ], [ 356360.958125490986276, 258896.093112573347753 ], [ 356359.794992259703577, 258893.821230003057281 ], [ 356358.995072113175411, 258891.397502071515191 ], [ 356358.577395748870913, 258888.879591075936332 ], [ 356358.551899999380112, 258886.327399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012500", "MAP": "D9-9284-T018", "PARCEL_NAM": "ROAD 9B", "ACRE": "0.30", "LONGITUDE": -64.95377069, "LATITUDE": 18.3595158, "OBJECTID_1": 2965, "PARCEL_NO_": "102702012500", "Tax_Legal_": "PAR 9 REM LILLIENDAHL & MARIENHOJ", "Name": "USVIAH, LLC", "Address": "PO BOX 22268", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.405467703, "SHAPE_Area": 347.277447688 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356363.803800001740456, 258839.98589999973774 ], [ 356375.379399999976158, 258851.878600001335144 ], [ 356376.446850084175821, 258853.548546904377872 ], [ 356377.246835469966754, 258855.361885186022846 ], [ 356377.760600000619888, 258857.276099998503923 ], [ 356377.871615431155078, 258859.01561919003143 ], [ 356377.713875791698229, 258860.75152519257972 ], [ 356377.29113175306702, 258862.442542318836786 ], [ 356376.613435156061314, 258864.048462231497979 ], [ 356375.696900002658367, 258865.531100001186132 ], [ 356364.901900000870228, 258875.214899998158216 ], [ 356362.77253202709835, 258877.217159322230145 ], [ 356361.000656486721709, 258879.541746906732442 ], [ 356359.634327349020168, 258882.125619011960225 ], [ 356358.710600003600121, 258884.898699998855591 ], [ 356358.517086470557842, 258887.731050707981922 ], [ 356358.810561074700672, 258890.55479479758651 ], [ 356359.582385555375367, 258893.286816942039877 ], [ 356360.809841691399924, 258895.846701599803055 ], [ 356362.456799998879433, 258898.159099999815226 ], [ 356373.102200001478195, 258892.996800001710653 ], [ 356371.296099998056889, 258892.440499998629093 ], [ 356368.509900003671646, 258891.620299998670816 ], [ 356366.235799998044968, 258890.272399999201298 ], [ 356364.215499997138977, 258888.926600001752377 ], [ 356363.215000003576279, 258887.057300001382828 ], [ 356362.976199999451637, 258885.194099999964237 ], [ 356363.494699999690056, 258883.86879999935627 ], [ 356364.523100003600121, 258882.281700000166893 ], [ 356366.82940000295639, 258879.641399998217821 ], [ 356370.407300002872944, 258876.745400000363588 ], [ 356374.757600001990795, 258872.526200000196695 ], [ 356378.595899999141693, 258868.834699999541044 ], [ 356380.392300002276897, 258866.456199999898672 ], [ 356382.190999999642372, 258863.811799999326468 ], [ 356382.980499997735023, 258860.3614999987185 ], [ 356382.244699999690056, 258857.164799999445677 ], [ 356380.749300003051758, 258853.696100000292063 ], [ 356379.002300001680851, 258849.959399998188019 ], [ 356375.480200000107288, 258845.942499998956919 ], [ 356371.951700001955032, 258842.723299998790026 ], [ 356369.434399999678135, 258840.043999999761581 ], [ 356367.416299998760223, 258838.432300001382828 ], [ 356363.803800001740456, 258839.98589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012500", "MAP": "D9-9284-T018", "PARCEL_NAM": "9B-3", "ACRE": "0.27", "LONGITUDE": -64.95389542, "LATITUDE": 18.35940664, "OBJECTID_1": 2965, "PARCEL_NO_": "102702012500", "Tax_Legal_": "PAR 9 REM LILLIENDAHL & MARIENHOJ", "Name": "USVIAH, LLC", "Address": "PO BOX 22268", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.821149819, "SHAPE_Area": 1016.7450735899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356328.6266999989748, 258855.113699998706579 ], [ 356353.471799999475479, 258874.103700000792742 ], [ 356364.901900000870228, 258875.214899998158216 ], [ 356375.696900002658367, 258865.531100001186132 ], [ 356376.613435155944899, 258864.048462231439771 ], [ 356377.291131752892397, 258862.442542318778578 ], [ 356377.713875791465398, 258860.751525192521513 ], [ 356377.871615431038663, 258859.01561919003143 ], [ 356377.760600000619888, 258857.276099998503923 ], [ 356377.246835470024962, 258855.361885186022846 ], [ 356376.446850084234029, 258853.548546904348768 ], [ 356375.379399999976158, 258851.878600001335144 ], [ 356363.803800001740456, 258839.98589999973774 ], [ 356328.6266999989748, 258855.113699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102702012500", "MAP": "D9-9284-T018", "PARCEL_NAM": "9B-2", "ACRE": "0.36", "LONGITUDE": -64.95411792, "LATITUDE": 18.35953625, "OBJECTID_1": 2965, "PARCEL_NO_": "102702012500", "Tax_Legal_": "PAR 9 REM LILLIENDAHL & MARIENHOJ", "Name": "USVIAH, LLC", "Address": "PO BOX 22268", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 822, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 149.77341346, "SHAPE_Area": 974.25517813399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356358.551899999380112, 258886.327399998903275 ], [ 356358.710600003600121, 258884.898699998855591 ], [ 356359.634327349020168, 258882.125619011960225 ], [ 356361.000656486721709, 258879.541746906732442 ], [ 356362.77253202709835, 258877.217159322230145 ], [ 356364.901900000870228, 258875.214899998158216 ], [ 356353.471799999475479, 258874.103700000792742 ], [ 356328.6266999989748, 258855.113699998706579 ], [ 356300.160300001502037, 258867.355599999427795 ], [ 356340.771799996495247, 258886.962400000542402 ], [ 356358.551899999380112, 258886.327399998903275 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701063400", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-14", "ACRE": "0.23", "LONGITUDE": -64.87931166, "LATITUDE": 18.34074578, "OBJECTID_1": 22194, "PARCEL_NO_": "105701063400", "Tax_Legal_": "ANNAS RETREAT 173B-14 NEW QUARTER", "Name": "JAMES, DEBRA", "Address": "PO Box 303723", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 160.152666117, "SHAPE_Area": 929.52764179200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364283.519799999892712, 256864.775400001555681 ], [ 364229.755800001323223, 256833.937899999320507 ], [ 364225.688299998641014, 256838.126499999314547 ], [ 364223.475199997425079, 256841.054299999028444 ], [ 364251.281900003552437, 256862.656500000506639 ], [ 364271.035099998116493, 256878.002099998295307 ], [ 364274.706699997186661, 256880.854400001466274 ], [ 364282.248400002717972, 256880.854400001466274 ], [ 364281.829899996519089, 256873.838599998503923 ], [ 364283.519799999892712, 256864.775400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701063200", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-13", "ACRE": "0.23", "LONGITUDE": -64.87927648, "LATITUDE": 18.34058342, "OBJECTID_1": 22192, "PARCEL_NO_": "105701063200", "Tax_Legal_": "ANNAS RETREAT 173-B-13 NEW QTR", "Name": "WOODS, DELTHA, LISA, & THAD", "Address": "12616 Matteson Ave", "City": "Los Angeles", "State": "California", "Zip": 90066, "Country": "United States", "Land_Value": 30500, "Improved_V": 226900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.21311708299999, "SHAPE_Area": 1181.68436225 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364283.519799999892712, 256864.775400001555681 ], [ 364289.256999999284744, 256852.809999998658895 ], [ 364289.444700002670288, 256852.975000001490116 ], [ 364290.417300000786781, 256850.553100001066923 ], [ 364247.045800000429153, 256815.661800000816584 ], [ 364247.038500003516674, 256815.670299999415874 ], [ 364246.846600003540516, 256815.501600001007318 ], [ 364240.327799998223782, 256823.469799999147654 ], [ 364232.520999997854233, 256831.19990000128746 ], [ 364229.755800001323223, 256833.937899999320507 ], [ 364283.519799999892712, 256864.775400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701063000", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-12", "ACRE": "0.23", "LONGITUDE": -64.87914872, "LATITUDE": 18.34042681, "OBJECTID_1": 22190, "PARCEL_NO_": "105701063000", "Tax_Legal_": "ANNAS RETREAT 173B-12 NEW QTR.", "Name": "JOHN BAPTISTE, FRANCIS & H.", "Address": "PO Box 11746", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 28900, "Improved_V": 209400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.27734599199999, "SHAPE_Area": 1226.6234146300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364299.332999996840954, 256827.737300001084805 ], [ 364262.322999998927116, 256797.263099998235703 ], [ 364246.846600003540516, 256815.501600001007318 ], [ 364290.417300000786781, 256850.553100001066923 ], [ 364299.332999996840954, 256827.737300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701062900", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-11", "ACRE": "0.23", "LONGITUDE": -64.87903445000001, "LATITUDE": 18.34025302, "OBJECTID_1": 22189, "PARCEL_NO_": "105701062900", "Tax_Legal_": "173B-11 ANNA'S RETREAT NEW QTR", "Name": "DIVINA HARRIS (LIFE ESTATE)", "Address": "PO Box 11221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37800, "Improved_V": 171400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.28996345900001, "SHAPE_Area": 950.41597108500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364308.572999998927116, 256805.456000000238419 ], [ 364275.351700000464916, 256782.382100000977516 ], [ 364262.322999998927116, 256797.263099998235703 ], [ 364299.332999996840954, 256827.737300001084805 ], [ 364308.209100000560284, 256806.293499998748302 ], [ 364308.572999998927116, 256805.456000000238419 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701066300", "MAP": "A9-287-T80", "PARCEL_NAM": "173B-10", "ACRE": "0.23", "LONGITUDE": -64.87891272, "LATITUDE": 18.3400638, "OBJECTID_1": 22222, "PARCEL_NO_": "105701066300", "Tax_Legal_": "ANNAS RETREAT 173B-10 NEW QTR.", "Name": "CASTOR, JOSEPHINE & GUMBS, JUL", "Address": "PO Box 503281", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 75100, "Improved_V": 229200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.27319480599999, "SHAPE_Area": 1006.7373032199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364321.561099998652935, 256780.129799999296665 ], [ 364297.449199996888638, 256762.932399999350309 ], [ 364294.040700003504753, 256765.647599998861551 ], [ 364280.243500001728535, 256776.089299999177456 ], [ 364275.351700000464916, 256782.382100000977516 ], [ 364308.572999998927116, 256805.456000000238419 ], [ 364313.144100002944469, 256794.934799998998642 ], [ 364315.59179999679327, 256791.577399998903275 ], [ 364319.698899999260902, 256782.745099999010563 ], [ 364321.561099998652935, 256780.129799999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704052100", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-28", "ACRE": "0.62", "LONGITUDE": -64.95108031, "LATITUDE": 18.35511767, "OBJECTID_1": 3637, "PARCEL_NO_": "102704052100", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-28 LT. NORTHSIDE", "Name": "CALLWOOD, AUBREY", "Address": "P.O. BOX 4807", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 48600, "Improved_V": 118700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.25250468300001, "SHAPE_Area": 1939.2710484 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356627.709399998188019, 258372.810699999332428 ], [ 356664.204199999570847, 258417.203699998557568 ], [ 356671.100100003182888, 258414.381799999624491 ], [ 356683.223600000143051, 258411.103500001132488 ], [ 356692.920900002121925, 258408.64979999884963 ], [ 356650.671899996697903, 258351.308699999004602 ], [ 356645.828599996864796, 258351.902399998158216 ], [ 356627.709399998188019, 258372.810699999332428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704051900", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-27", "ACRE": "0.53", "LONGITUDE": -64.95078475, "LATITUDE": 18.35498498, "OBJECTID_1": 3635, "PARCEL_NO_": "102704051900", "Tax_Legal_": "LILLIEND & MARIENJ 10-2-27 GT. NORTHSIDE", "Name": "VANTERPOOL, EARL & SYLVIA", "Address": "PO BOX 308211", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 42400, "Improved_V": 416500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.027159122, "SHAPE_Area": 2632.94814782 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356725.347900003194809, 258388.439100001007318 ], [ 356691.037900000810623, 258336.703099999576807 ], [ 356682.234899997711182, 258337.846000000834465 ], [ 356674.1233000010252, 258343.479100000113249 ], [ 356665.19990000128746, 258349.738899998366833 ], [ 356650.671899996697903, 258351.308699999004602 ], [ 356692.920900002121925, 258408.64979999884963 ], [ 356697.77139999717474, 258407.211800001561642 ], [ 356705.078599996864796, 258401.361000001430511 ], [ 356714.808200001716614, 258395.107799999415874 ], [ 356725.347900003194809, 258388.439100001007318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704050700", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-24", "ACRE": "0.51", "LONGITUDE": -64.95072549, "LATITUDE": 18.35444814, "OBJECTID_1": 3623, "PARCEL_NO_": "102704050700", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-24 LILLIENDAHL & MARIENHOJ LT. NORTHSIDE QTR.", "Name": "ITIN, THOMAS W. & SHERLEY B", "Address": "3080 Orchard Lake Rd", "City": "Keego Harbor", "State": "Michigan", "Zip": 48320, "Country": "United States", "Land_Value": 37600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.29708900200001, "SHAPE_Area": 1956.5573831900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356682.234899997711182, 258337.846000000834465 ], [ 356691.037900000810623, 258336.703099999576807 ], [ 356705.83110000193119, 258341.381099998950958 ], [ 356708.042700000107288, 258334.49549999833107 ], [ 356724.165399998426437, 258284.299300000071526 ], [ 356704.435199998319149, 258287.576299998909235 ], [ 356680.198600001633167, 258289.328899998217821 ], [ 356673.002499997615814, 258344.265399999916553 ], [ 356674.1233000010252, 258343.479100000113249 ], [ 356682.234899997711182, 258337.846000000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105604011800", "MAP": "F9-2508-T69", "PARCEL_NAM": "384", "ACRE": "0.33", "LONGITUDE": -64.88794552, "LATITUDE": 18.33844757, "OBJECTID_1": 21596, "PARCEL_NO_": "105604011800", "Tax_Legal_": "384 ANNAS RETREAT NEW QTR", "Name": "TOTAL PETROLEUM PUERTO RICO CORP", "Address": "PO Box 362916", "City": "San Juan", "State": "Puerto Rico", "Zip": 936, "Country": "United States", "Land_Value": 107800, "Improved_V": 184300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.65027944600001, "SHAPE_Area": 1550.30244109 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363365.806400001049042, 256588.542300000786781 ], [ 363364.7449000030756, 256575.316799998283386 ], [ 363325.453500002622604, 256577.903099998831749 ], [ 363326.18469999730587, 256590.760999999940395 ], [ 363326.964900001883507, 256604.47859999909997 ], [ 363327.886100001633167, 256616.748700000345707 ], [ 363368.666000001132488, 256613.557300001382828 ], [ 363367.311099998652935, 256601.220199998468161 ], [ 363365.806400001049042, 256588.542300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204060600", "MAP": "D9-1501-T79", "PARCEL_NAM": "111A", "ACRE": "0.20", "LONGITUDE": -64.9570251, "LATITUDE": 18.33986644, "OBJECTID_1": 8743, "PARCEL_NO_": "105204060600", "Tax_Legal_": "CONTANT 111A & 111Aa 7A SOUTHSIDE QTR", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 134000, "Improved_V": 529900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.781711269, "SHAPE_Area": 1136.35323032 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356059.093099996447563, 256674.495600000023842 ], [ 356036.263099998235703, 256670.799300000071526 ], [ 356032.7466000020504, 256676.501299999654293 ], [ 356030.259300000965595, 256684.502500001341105 ], [ 356030.226899996399879, 256688.301899999380112 ], [ 356028.49379999935627, 256702.431000001728535 ], [ 356026.832699999213219, 256708.116900000721216 ], [ 356023.870300002396107, 256714.052200000733137 ], [ 356059.093099996447563, 256708.879799999296665 ], [ 356059.093099996447563, 256675.785300001502037 ], [ 356059.093099996447563, 256674.495600000023842 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204068600", "MAP": "D9-1501-T79", "PARCEL_NAM": "111", "ACRE": "0.29", "LONGITUDE": -64.95674591, "LATITUDE": 18.33975645, "OBJECTID_1": 8925, "PARCEL_NO_": "105204068600", "Tax_Legal_": "CONTANT ESTATE 111 7A SOUTHSIDE QTR.", "Name": "NADAL, FRANCISCO", "Address": "PO Box 306026", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.63495167400001, "SHAPE_Area": 1283.20576727 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356086.676100000739098, 256663.896999999880791 ], [ 356075.871799997985363, 256647.440000001341105 ], [ 356074.040399998426437, 256650.393100000917912 ], [ 356065.360500000417233, 256664.389499999582767 ], [ 356059.093099996447563, 256674.495600000023842 ], [ 356059.093099996447563, 256675.785300001502037 ], [ 356059.093099996447563, 256708.879799999296665 ], [ 356062.310400001704693, 256708.407299999147654 ], [ 356084.141999997198582, 256701.4087999984622 ], [ 356085.034599997103214, 256691.283599998801947 ], [ 356087.552500002086163, 256679.693999998271465 ], [ 356090.740800000727177, 256670.122999999672174 ], [ 356090.717299997806549, 256670.052499998360872 ], [ 356086.676100000739098, 256663.896999999880791 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204060600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95673369, "LATITUDE": 18.33945866, "OBJECTID_1": 8743, "PARCEL_NO_": "105204060600", "Tax_Legal_": "CONTANT 111A & 111Aa 7A SOUTHSIDE QTR", "Name": "EL HAJ FAMILY TRUST", "Address": "2316 Kronprindsens Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 134000, "Improved_V": 529900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 9.6882754174599999, "SHAPE_Area": 2.7230886696500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356075.871799997985363, 256647.440000001341105 ], [ 356074.92339999973774, 256645.99549999833107 ], [ 356074.040399998426437, 256650.393100000917912 ], [ 356075.871799997985363, 256647.440000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202059400", "MAP": "D9-708-T68", "PARCEL_NAM": "31C", "ACRE": "0.09", "LONGITUDE": -64.95226377, "LATITUDE": 18.34107281, "OBJECTID_1": 8391, "PARCEL_NO_": "105202059400", "Tax_Legal_": "CONTANT 31C 7B SOUTHSIDE QTR", "Name": "LEWIS, WILMOTH & BERNADETTE", "Address": "PO Box 302382", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 171500, "Improved_V": 700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 52.7706475735, "SHAPE_Area": 173.471409142 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356554.736900001764297, 256826.691899999976158 ], [ 356541.146099999547005, 256822.305500000715256 ], [ 356537.674199998378754, 256834.828999999910593 ], [ 356550.401000000536442, 256838.225299999117851 ], [ 356554.736900001764297, 256826.691899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202054000", "MAP": "G9-1039-T68", "PARCEL_NAM": "28B", "ACRE": "0.07", "LONGITUDE": -64.95260631, "LATITUDE": 18.34108992, "OBJECTID_1": 8339, "PARCEL_NO_": "105202054000", "Tax_Legal_": "CONTANT 28B 7BA S S QTR", "Name": "DEREK S ROLLINS and RHEA E ROLLINS", "Address": "PO Box 6811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 126500, "Improved_V": 26800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.476301187499999, "SHAPE_Area": 133.003990015 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356519.131800003349781, 256829.36939999833703 ], [ 356507.692299999296665, 256825.653599999845028 ], [ 356507.228399999439716, 256826.250300001353025 ], [ 356500.757799997925758, 256831.987799998372793 ], [ 356510.163699999451637, 256839.844099998474121 ], [ 356519.131800003349781, 256829.36939999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202052100", "MAP": "D9-4949-T90", "PARCEL_NAM": "22-21&22-22A", "ACRE": "0.15", "LONGITUDE": -64.95268778000001, "LATITUDE": 18.34203008, "OBJECTID_1": 8320, "PARCEL_NO_": "105202052100", "Tax_Legal_": "CONTANT 22-21 & 22-22A 7BA SOUTHSIDE", "Name": "MALONE, DENISE", "Address": "PO Box 308544", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 51400, "Improved_V": 49300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.201007416400003, "SHAPE_Area": 568.35321644299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356515.508699998259544, 256927.101399999111891 ], [ 356485.411899998784065, 256926.130100000649691 ], [ 356485.245200000703335, 256945.701900001615286 ], [ 356515.89360000193119, 256944.955800000578165 ], [ 356515.508699998259544, 256927.101399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202052400", "MAP": "D9-4949-T90", "PARCEL_NAM": "22-21 & 22-22B", "ACRE": ".15", "LONGITUDE": -64.95268443000001, "LATITUDE": 18.34220466, "OBJECTID_1": 8323, "PARCEL_NO_": "105202052400", "Tax_Legal_": "CONTANT 22-21 & 22-22B 7BA SOUTHSIDE QTR.", "Name": "GRIFFIN, SANDRA & T-SEAN N. WALTERS", "Address": "PO Box 307604", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47400, "Improved_V": 50000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.09363143, "SHAPE_Area": 603.23236563499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356514.927199997007847, 256963.735199999064207 ], [ 356515.89360000193119, 256944.955800000578165 ], [ 356485.245200000703335, 256945.701900001615286 ], [ 356485.219499997794628, 256948.715500000864267 ], [ 356485.827200002968311, 256965.648800000548363 ], [ 356498.274599999189377, 256965.534600000828505 ], [ 356514.85080000013113, 256965.382599998265505 ], [ 356514.927199997007847, 256963.735199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202055400", "MAP": "D9-4949-T90", "PARCEL_NAM": "22-21 & 22-22C", "ACRE": ".15", "LONGITUDE": -64.95268718, "LATITUDE": 18.3423963, "OBJECTID_1": 8353, "PARCEL_NO_": "105202055400", "Tax_Legal_": "CONTANT 22-21 & 22-22C 7BA SOUTHSIDE QTR.", "Name": "SQUIABRO, PATRICIA & CARLOS", "Address": "P.O. BOX 5263", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39400, "Improved_V": 52100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.555302408, "SHAPE_Area": 629.99577562599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356513.939300000667572, 256985.047600001096725 ], [ 356514.85080000013113, 256965.382599998265505 ], [ 356498.274599999189377, 256965.534600000828505 ], [ 356485.827200002968311, 256965.648800000548363 ], [ 356485.871200002729893, 256966.874899998307228 ], [ 356485.80290000140667, 256974.895899999886751 ], [ 356486.492299996316433, 256988.622600000351667 ], [ 356513.253899998962879, 256986.968499999493361 ], [ 356513.939300000667572, 256985.047600001096725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051800", "MAP": "D9-6788-T000", "PARCEL_NAM": "22-23", "ACRE": "0.22", "LONGITUDE": -64.95268003, "LATITUDE": 18.34260838, "OBJECTID_1": 8317, "PARCEL_NO_": "105202051800", "Tax_Legal_": "CONTANT 22 23 7BA SOUTHSIDE QTR", "Name": "GUMBS, CLAUDIA T", "Address": "Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60500, "Improved_V": 108300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.68101769099999, "SHAPE_Area": 659.72782644599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356513.113200001418591, 256987.362900000065565 ], [ 356513.253899998962879, 256986.968499999493361 ], [ 356486.492299996316433, 256988.622600000351667 ], [ 356487.154700003564358, 257005.515599999576807 ], [ 356487.111599996685982, 257010.581399999558926 ], [ 356487.242600001394749, 257012.426899999380112 ], [ 356505.987999998033047, 257011.90260000154376 ], [ 356515.451899997889996, 257011.637800000607967 ], [ 356515.297799997031689, 257010.762699998915195 ], [ 356514.562200002372265, 257006.584199998527765 ], [ 356513.113200001418591, 256987.362900000065565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051700", "MAP": null, "PARCEL_NAM": "22-27", "ACRE": ".21", "LONGITUDE": -64.95293103, "LATITUDE": 18.3426094, "OBJECTID_1": 8316, "PARCEL_NO_": "105202051700", "Tax_Legal_": "CONTANT 22 26 7BA SOUTHSIDE QTR", "Name": "COMISSIONG, RICHARD", "Address": "PO Box 335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 66400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.40635381600001, "SHAPE_Area": 720.48832848899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356486.492299996316433, 256988.622600000351667 ], [ 356486.354000002145767, 256985.868999999016523 ], [ 356458.405500002205372, 256986.429800000041723 ], [ 356463.737499997019768, 257009.334699999541044 ], [ 356466.685000002384186, 257017.072200000286102 ], [ 356487.242600001394749, 257012.42680000141263 ], [ 356487.111599996685982, 257010.581399999558926 ], [ 356487.154700003564358, 257005.515599999576807 ], [ 356486.492299996316433, 256988.622600000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202052600", "MAP": "F9-1084-T63", "PARCEL_NAM": "22-29", "ACRE": "0.12", "LONGITUDE": -64.95312743, "LATITUDE": 18.34187296, "OBJECTID_1": 8325, "PARCEL_NO_": "105202052600", "Tax_Legal_": "22-29 CONTANT 7BA SOUTHSIDE QTR", "Name": "KENNETH A. & KAJ A. CHRISTOPHER", "Address": "BOX 1944", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40500, "Improved_V": 100300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.290038559600006, "SHAPE_Area": 537.46783386200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356466.109899997711182, 256907.594700001180172 ], [ 356442.740000002086163, 256906.120600000023842 ], [ 356442.018500000238419, 256908.465300001204014 ], [ 356441.9087999984622, 256921.341099999845028 ], [ 356443.490900002419949, 256924.942600000649691 ], [ 356444.375, 256929.9222999997437 ], [ 356456.016699999570847, 256930.238600000739098 ], [ 356465.005400002002716, 256930.482900001108646 ], [ 356465.21339999884367, 256925.524000000208616 ], [ 356466.109899997711182, 256907.594700001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701021000", "MAP": "D9-9195-T017", "PARCEL_NAM": "ROW 13 & 14-C", "ACRE": "0.10", "LONGITUDE": -64.86321339, "LATITUDE": 18.32496578, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.44466911699999, "SHAPE_Area": 437.187476549 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365976.690700002014637, 255126.663400001823902 ], [ 365977.758400000631809, 255125.061799999326468 ], [ 365979.182099997997284, 255125.061799999326468 ], [ 365981.49549999833107, 255125.95160000026226 ], [ 365981.91499999910593, 255126.435600001364946 ], [ 365984.433499999344349, 255129.50789999961853 ], [ 365984.328299999237061, 255116.560199998319149 ], [ 365982.984099999070168, 255100.253699999302626 ], [ 365972.848499998450279, 255116.6587999984622 ], [ 365967.436899997293949, 255125.417700000107288 ], [ 365966.725100003182888, 255126.485500000417233 ], [ 365964.945500001311302, 255126.485500000417233 ], [ 365963.05460000038147, 255125.421900000423193 ], [ 365963.357799999415874, 255138.002900000661612 ], [ 365962.835799999535084, 255153.750599998980761 ], [ 365968.148699998855591, 255146.0608000010252 ], [ 365976.690700002014637, 255126.663400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-539-T99", "PARCEL_NAM": "3R", "ACRE": "18.58", "LONGITUDE": -64.86848225, "LATITUDE": 18.32604676, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 373.32645318599998, "SHAPE_Area": 1203.7140834700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365452.460799999535084, 255159.369300000369549 ], [ 365445.795500002801418, 255158.368999999016523 ], [ 365424.38120000064373, 255224.947900000959635 ], [ 365420.809299997985363, 255236.457299999892712 ], [ 365410.490500003099442, 255265.429299999028444 ], [ 365387.471699997782707, 255283.288699999451637 ], [ 365359.690399996936321, 255307.894999999552965 ], [ 365367.168099999427795, 255310.256299998611212 ], [ 365367.627999998629093, 255309.879399999976158 ], [ 365392.631099998950958, 255288.051199998706579 ], [ 365417.634300000965595, 255267.413600001484156 ], [ 365427.556199997663498, 255238.441700000315905 ], [ 365430.334299996495247, 255227.329199999570847 ], [ 365452.460799999535084, 255159.369300000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-2", "ACRE": "3.51", "LONGITUDE": -64.86731754, "LATITUDE": 18.32596826, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 455.10088537500002, "SHAPE_Area": 12679.5744061 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365591.748999997973442, 255291.263099998235703 ], [ 365590.710900001227856, 255247.731800001114607 ], [ 365594.50789999961853, 255180.635099999606609 ], [ 365488.263400003314018, 255164.739399999380112 ], [ 365488.278200000524521, 255165.01969999819994 ], [ 365488.673799999058247, 255298.345199998468161 ], [ 365526.378300003707409, 255295.988699998706579 ], [ 365591.748999997973442, 255291.263099998235703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "11111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-7", "ACRE": "1.00", "LONGITUDE": -64.8682122, "LATITUDE": 18.32641382, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.70680438699998, "SHAPE_Area": 4048.96283283 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365479.943800002336502, 255265.826099999248981 ], [ 365427.953100003302097, 255239.235500000417233 ], [ 365427.488799996674061, 255238.6385000012815 ], [ 365417.634300000965595, 255267.413600001484156 ], [ 365392.631099998950958, 255288.051199998706579 ], [ 365392.549699999392033, 255288.122299998998642 ], [ 365392.631099998950958, 255288.448100000619888 ], [ 365459.703100003302097, 255321.388799998909235 ], [ 365460.060000002384186, 255321.680700000375509 ], [ 365479.943800002336502, 255297.973099999129772 ], [ 365479.943800002336502, 255265.826099999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-831-T018", "PARCEL_NAM": "3R-1", "ACRE": "2.35", "LONGITUDE": -64.86712867, "LATITUDE": 18.32706937, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 385.89086777199998, "SHAPE_Area": 8744.3370993999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365526.378300003707409, 255295.988699998706579 ], [ 365519.631399996578693, 255363.457600001245737 ], [ 365518.428599998354912, 255363.980500001460314 ], [ 365514.075900003314018, 255409.089800000190735 ], [ 365595.426700003445148, 255415.479100000113249 ], [ 365595.917000003159046, 255393.851100001484156 ], [ 365592.493199996650219, 255322.473499998450279 ], [ 365591.748999997973442, 255291.263099998235703 ], [ 365526.378300003707409, 255295.988699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-539-T99", "PARCEL_NAM": "3R", "ACRE": "18.58", "LONGITUDE": -64.86796778, "LATITUDE": 18.32641284, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 527.47042768400001, "SHAPE_Area": 2015.99099826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365479.905900001525879, 255163.487799998372793 ], [ 365479.943800002336502, 255163.829100001603365 ], [ 365479.943800002336502, 255265.826099999248981 ], [ 365479.943800002336502, 255297.973099999129772 ], [ 365459.30629999935627, 255322.5793999992311 ], [ 365437.081200003623962, 255349.566899999976158 ], [ 365436.502599999308586, 255349.836899999529123 ], [ 365437.081200003623962, 255349.963799998164177 ], [ 365426.088500000536442, 255402.179299999028444 ], [ 365433.589299999177456, 255402.768399998545647 ], [ 365444.621899999678135, 255350.757599998265505 ], [ 365488.67509999871254, 255298.766800001263618 ], [ 365488.673799999058247, 255298.345199998468161 ], [ 365488.278200000524521, 255165.01969999819994 ], [ 365488.263400003314018, 255164.739399999380112 ], [ 365482.565399996936321, 255163.886900000274181 ], [ 365479.905900001525879, 255163.487799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-5", "ACRE": "1.00", "LONGITUDE": -64.86867938, "LATITUDE": 18.32721735, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.712819303, "SHAPE_Area": 4365.65725157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365363.842000000178814, 255333.905999999493361 ], [ 365363.659199997782707, 255334.088799998164177 ], [ 365351.600199997425079, 255396.328999999910593 ], [ 365426.088500000536442, 255402.179299999028444 ], [ 365437.081200003623962, 255349.963799998164177 ], [ 365363.842000000178814, 255333.905999999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-13", "ACRE": "1.65", "LONGITUDE": -64.86934708, "LATITUDE": 18.32702815, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 354.94003395599998, "SHAPE_Area": 6300.0215648900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365360.638999998569489, 255307.054800000041723 ], [ 365360.484200000762939, 255307.101199999451637 ], [ 365299.856299996376038, 255295.290600001811981 ], [ 365280.523299999535084, 255390.746700000017881 ], [ 365351.600199997425079, 255396.328999999910593 ], [ 365363.659199997782707, 255334.088799998164177 ], [ 365363.842000000178814, 255333.905999999493361 ], [ 365362.86540000140667, 255333.691899999976158 ], [ 365343.418499998748302, 255329.723099999129772 ], [ 365367.168099999427795, 255310.256299998611212 ], [ 365359.690399996936321, 255307.894999999552965 ], [ 365360.638999998569489, 255307.054800000041723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-12", "ACRE": "1.00", "LONGITUDE": -64.86913472000001, "LATITUDE": 18.32638005, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.20935237499998, "SHAPE_Area": 3973.3064747 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365410.490500003099442, 255265.429299999028444 ], [ 365309.332099996507168, 255248.503899998962879 ], [ 365299.856299996376038, 255295.290600001811981 ], [ 365360.484200000762939, 255307.101199999451637 ], [ 365360.638999998569489, 255307.054800000041723 ], [ 365387.471699997782707, 255283.288699999451637 ], [ 365410.490500003099442, 255265.429299999028444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-11", "ACRE": "1.00", "LONGITUDE": -64.86895724, "LATITUDE": 18.3260081, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.38362596500002, "SHAPE_Area": 4454.8895053899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365424.050499998033047, 255226.013599999248981 ], [ 365423.190600000321865, 255225.344799999147654 ], [ 365375.962399996817112, 255217.010400000959635 ], [ 365317.871500000357628, 255206.340700000524521 ], [ 365309.332099996507168, 255248.503899998962879 ], [ 365410.490500003099442, 255265.429299999028444 ], [ 365420.809299997985363, 255236.457299999892712 ], [ 365424.050499998033047, 255226.013599999248981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-9", "ACRE": "1.00", "LONGITUDE": -64.86854777000001, "LATITUDE": 18.32555703, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.33427311400001, "SHAPE_Area": 3680.7055169400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365388.265500001609325, 255149.7331000007689 ], [ 365388.265500001609325, 255150.732200000435114 ], [ 365376.359200000762939, 255217.010400000959635 ], [ 365376.31360000371933, 255217.072399999946356 ], [ 365423.190600000321865, 255225.344799999147654 ], [ 365424.050499998033047, 255226.013599999248981 ], [ 365424.38120000064373, 255224.947900000959635 ], [ 365445.795500002801418, 255158.368999999016523 ], [ 365394.783399999141693, 255150.713899999856949 ], [ 365388.265500001609325, 255149.7331000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837--T018", "PARCEL_NAM": "3R-6", "ACRE": "1.00", "LONGITUDE": -64.86857528, "LATITUDE": 18.32677663, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.91351706900002, "SHAPE_Area": 3748.0928489200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365460.060000002384186, 255321.680700000375509 ], [ 365459.703100003302097, 255321.388799998909235 ], [ 365392.631099998950958, 255288.448100000619888 ], [ 365392.549699999392033, 255288.122299998998642 ], [ 365367.627999998629093, 255309.879399999976158 ], [ 365367.168099999427795, 255310.256299998611212 ], [ 365343.418499998748302, 255329.723099999129772 ], [ 365362.86540000140667, 255333.691899999976158 ], [ 365436.502599999308586, 255349.836899999529123 ], [ 365437.081200003623962, 255349.566899999976158 ], [ 365459.30629999935627, 255322.5793999992311 ], [ 365460.060000002384186, 255321.680700000375509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-8", "ACRE": "1.00", "LONGITUDE": -64.86806804, "LATITUDE": 18.32578267, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 272.37879322800001, "SHAPE_Area": 3862.3678944500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365427.488799996674061, 255238.6385000012815 ], [ 365427.953100003302097, 255239.235500000417233 ], [ 365479.943800002336502, 255265.826099999248981 ], [ 365479.943800002336502, 255163.829100001603365 ], [ 365479.905900001525879, 255163.487799998372793 ], [ 365479.553000003099442, 255163.434799998998642 ], [ 365452.460799999535084, 255159.369300000369549 ], [ 365430.334299996495247, 255227.329199999570847 ], [ 365427.556199997663498, 255238.441700000315905 ], [ 365427.488799996674061, 255238.6385000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-3", "ACRE": "1.00", "LONGITUDE": -64.86789203, "LATITUDE": 18.32731499, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.943144152, "SHAPE_Area": 3811.4898394500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365444.540799997746944, 255351.139699999243021 ], [ 365433.589299999177456, 255402.768399998545647 ], [ 365514.075900003314018, 255409.089800000190735 ], [ 365518.440800003707409, 255363.854499999433756 ], [ 365444.621899999678135, 255351.154399998486042 ], [ 365444.540799997746944, 255351.139699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "A9-837-T018", "PARCEL_NAM": "3R-4", "ACRE": "1.00", "LONGITUDE": -64.86773155, "LATITUDE": 18.32685634, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.96456829600001, "SHAPE_Area": 3537.2946424199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365526.378300003707409, 255295.988699998706579 ], [ 365488.673799999058247, 255298.345199998468161 ], [ 365488.67509999871254, 255298.766800001263618 ], [ 365444.621899999678135, 255350.757599998265505 ], [ 365444.540799997746944, 255351.139699999243021 ], [ 365444.621899999678135, 255351.154399998486042 ], [ 365518.440800003707409, 255363.854499999433756 ], [ 365518.428599998354912, 255363.980500001460314 ], [ 365519.631399996578693, 255363.457600001245737 ], [ 365526.378300003707409, 255295.988699998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "222222222222", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94293336, "LATITUDE": 18.35833906, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.33442820300002, "SHAPE_Area": 770.30482146199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357561.214400000870228, 258702.269799999892712 ], [ 357556.113600000739098, 258700.290699999779463 ], [ 357554.13289999961853, 258704.149700000882149 ], [ 357550.428900003433228, 258710.174400001764297 ], [ 357546.001800000667572, 258715.224399998784065 ], [ 357537.668600000441074, 258721.211300000548363 ], [ 357517.56139999628067, 258736.790199998766184 ], [ 357516.089699998497963, 258737.989199999719858 ], [ 357509.717399999499321, 258742.539000000804663 ], [ 357506.023299999535084, 258747.352699998766184 ], [ 357502.576800003647804, 258751.684099998325109 ], [ 357499.843500003218651, 258758.201099999248981 ], [ 357497.613200001418591, 258762.784600000828505 ], [ 357496.860600002110004, 258765.442600000649691 ], [ 357495.066399998962879, 258776.32660000026226 ], [ 357493.048199996352196, 258784.786899998784065 ], [ 357489.601700000464916, 258789.118299998342991 ], [ 357483.480999998748302, 258792.701400000602007 ], [ 357480.330899998545647, 258796.742300000041723 ], [ 357482.282899998128414, 258802.410700000822544 ], [ 357486.645999997854233, 258800.379900000989437 ], [ 357486.645999997854233, 258797.5760000012815 ], [ 357493.057599999010563, 258792.621599998325109 ], [ 357495.694799996912479, 258788.925700001418591 ], [ 357498.656000003218651, 258784.348099999129772 ], [ 357502.645000003278255, 258773.239799998700619 ], [ 357505.178099997341633, 258761.39299999922514 ], [ 357507.667700000107288, 258754.874099999666214 ], [ 357516.018700003623962, 258746.707499999552965 ], [ 357527.550899997353554, 258736.871500000357628 ], [ 357541.287799999117851, 258725.600299999117851 ], [ 357544.724500000476837, 258722.479699999094009 ], [ 357552.576399996876717, 258715.762299999594688 ], [ 357557.005400002002716, 258710.470100000500679 ], [ 357561.214400000870228, 258702.269799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202058700", "MAP": "F9-1084-T63", "PARCEL_NAM": "22-29A", "ACRE": "0.12", "LONGITUDE": -64.95292398, "LATITUDE": 18.34188343, "OBJECTID_1": 8385, "PARCEL_NO_": "105202058700", "Tax_Legal_": "CONTANT 22 29A 7BA SOUTHSIDE QTR", "Name": "PARSON, AUDREY HASSELL", "Address": "P.O. BOX 1944", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 90200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.990842856, "SHAPE_Area": 449.86790344799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356485.559399999678135, 256908.821600001305342 ], [ 356466.109899997711182, 256907.594700001180172 ], [ 356465.21339999884367, 256925.524000000208616 ], [ 356465.005400002002716, 256930.482900001108646 ], [ 356485.370099999010563, 256931.036299999803305 ], [ 356485.411899998784065, 256926.130100000649691 ], [ 356485.559399999678135, 256908.821600001305342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202052300", "MAP": "F9-42-T56", "PARCEL_NAM": "22-28", "ACRE": "0.24", "LONGITUDE": -64.95300935, "LATITUDE": 18.34207912, "OBJECTID_1": 8322, "PARCEL_NO_": "105202052300", "Tax_Legal_": "CONTANT 22-28 7BA SOUTHSIDE QTR", "Name": "HART, DORINE & OTHERS", "Address": "3110-28 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69500, "Improved_V": 104100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.19655705700001, "SHAPE_Area": 828.67634459400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356456.016699999570847, 256930.238600000739098 ], [ 356444.375, 256929.9222999997437 ], [ 356445.029799997806549, 256933.610100001096725 ], [ 356450.537299998104572, 256949.698300000280142 ], [ 356451.44030000269413, 256952.703699998557568 ], [ 356485.352399997413158, 256952.417899999767542 ], [ 356485.219499997794628, 256948.715500000864267 ], [ 356485.370099999010563, 256931.036299999803305 ], [ 356465.005400002002716, 256930.482900001108646 ], [ 356456.016699999570847, 256930.238600000739098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202052000", "MAP": "G9-418-T56", "PARCEL_NAM": "22-27", "ACRE": "0.25", "LONGITUDE": -64.95296884, "LATITUDE": 18.34232907, "OBJECTID_1": 8319, "PARCEL_NO_": "105202052000", "Tax_Legal_": "CONTANT 22-27 7BA SOUTHSIDE QTR", "Name": "RAYMOND, SHARON", "Address": "CONTANT #234", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72400, "Improved_V": 120800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.816431674, "SHAPE_Area": 1038.17509283 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356485.871200002729893, 256966.874899998307228 ], [ 356485.352399997413158, 256952.417899999767542 ], [ 356451.44030000269413, 256952.703699998557568 ], [ 356452.889700002968311, 256957.528000000864267 ], [ 356455.958499997854233, 256975.918200001120567 ], [ 356458.405500002205372, 256986.429800000041723 ], [ 356486.354000002145767, 256985.868999999016523 ], [ 356485.80290000140667, 256974.895899999886751 ], [ 356485.871200002729893, 256966.874899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105702014200", "MAP": "F9-2763-T71", "PARCEL_NAM": "114", "ACRE": "0.03", "LONGITUDE": -64.87295879, "LATITUDE": 18.34591824, "OBJECTID_1": 22295, "PARCEL_NO_": "105702014200", "Tax_Legal_": "SMITH BAY 114 EAST END QTR", "Name": "AKINS, L. & G. , & FLEMING, L", "Address": "2039 Palm Strade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8025542, "Country": "United States", "Land_Value": 52000, "Improved_V": 24300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.245012676199998, "SHAPE_Area": 115.117272328 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364927.794399999082088, 257445.455899998545647 ], [ 364924.936999998986721, 257425.1114999987185 ], [ 364922.046099998056889, 257426.25450000166893 ], [ 364921.321099996566772, 257426.54109999909997 ], [ 364920.180600002408028, 257426.942800000309944 ], [ 364920.811999998986721, 257443.035100001841784 ], [ 364920.906099997460842, 257445.433400001376867 ], [ 364920.850400000810623, 257445.576499998569489 ], [ 364922.635999999940395, 257445.548700001090765 ], [ 364926.893200002610683, 257445.482200000435114 ], [ 364927.794399999082088, 257445.455899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301131000", "MAP": "G9-3053-T80", "PARCEL_NAM": "200-7-14", "ACRE": "0.14", "LONGITUDE": -64.94438693, "LATITUDE": 18.34406978, "OBJECTID_1": 9457, "PARCEL_NO_": "105301131000", "Tax_Legal_": "200-7-14 ALTONA & WELGUNST CROWN PRINCE QUARTER", "Name": "Harry Gabriel and Elrose Farrell-Gabriel", "Address": "PO Box 6233", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 29400, "Improved_V": 56200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.476462998, "SHAPE_Area": 623.73487767899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357378.925800003111362, 257190.1239 ], [ 357382.368000000715256, 257177.917599998414516 ], [ 357385.683200001716614, 257167.390099998563528 ], [ 357389.387500002980232, 257155.67790000140667 ], [ 357373.42400000244379, 257148.8761 ], [ 357366.317299999296665, 257168.920299999415874 ], [ 357364.68129999935627, 257171.651099998503923 ], [ 357359.764300003647804, 257180.899000000208616 ], [ 357363.801299996674061, 257180.298799999058247 ], [ 357366.212999999523163, 257181.162900000810623 ], [ 357378.925800003111362, 257190.1239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301131500", "MAP": "D9-1609-T80", "PARCEL_NAM": "200-7-9", "ACRE": "0.15", "LONGITUDE": -64.94401874, "LATITUDE": 18.34287999, "OBJECTID_1": 9462, "PARCEL_NO_": "105301131500", "Tax_Legal_": "ALTONA & WELGUNST 200-7-9 CROWN PRINCE QTR.", "Name": "THOMAS, PATRICKSON & VICTORIA", "Address": "3546-1 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.685353891899993, "SHAPE_Area": 417.92845821399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357434.975500002503395, 257042.086399998515844 ], [ 357417.872599996626377, 257030.316199999302626 ], [ 357399.788099996745586, 257026.180599998682737 ], [ 357399.772799998521805, 257027.972500000149012 ], [ 357399.697300001978874, 257036.837900001555681 ], [ 357407.448600001633167, 257041.860300000756979 ], [ 357431.672799997031689, 257048.626800000667572 ], [ 357434.975500002503395, 257042.086399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301034500", "MAP": "D9-1609-T80", "PARCEL_NAM": "200-7A", "ACRE": "0.02", "LONGITUDE": -64.94388009, "LATITUDE": 18.34286369, "OBJECTID_1": 9081, "PARCEL_NO_": "105301034500", "Tax_Legal_": "ALTONA 178-39 & 200-7A KRONPRINDSENS QTR", "Name": "KUUMBA L. OLA-NIYI & OTHERS", "Address": "178-39 Altona & Welgunst", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 22700, "Improved_V": 45700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.8484091292, "SHAPE_Area": 81.186661260500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357438.53320000320673, 257035.040899999439716 ], [ 357417.872599996626377, 257030.316199999302626 ], [ 357434.975500002503395, 257042.086399998515844 ], [ 357438.53320000320673, 257035.040899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203015200", "MAP": "G9-1061-T68", "PARCEL_NAM": "29B", "ACRE": "926 sq ft", "LONGITUDE": -64.95940001, "LATITUDE": 18.33950199, "OBJECTID_1": 8514, "PARCEL_NO_": "105203015200", "Tax_Legal_": "CONTANT 29B,C & D 7A S S QTR", "Name": "RAMOS, CARLTON & JOSE", "Address": "PO Box 304871", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 175500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.489284636799994, "SHAPE_Area": 129.04754024600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355797.094700001180172, 256663.831199999898672 ], [ 355794.41669999808073, 256637.498100001364946 ], [ 355790.700900003314018, 256638.384500000625849 ], [ 355791.125799998641014, 256642.208099998533726 ], [ 355789.635300002992153, 256642.527499999850988 ], [ 355788.433899998664856, 256646.818300001323223 ], [ 355787.296700000762939, 256650.879799999296665 ], [ 355789.071900002658367, 256650.503299999982119 ], [ 355791.013099998235703, 256650.091499999165535 ], [ 355792.594899997115135, 256659.337000001221895 ], [ 355793.583700001239777, 256664.622600000351667 ], [ 355797.094700001180172, 256663.831199999898672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203015200", "MAP": null, "PARCEL_NAM": "29D", "ACRE": null, "LONGITUDE": -64.95958518, "LATITUDE": 18.33945907, "OBJECTID_1": 8514, "PARCEL_NO_": "105203015200", "Tax_Legal_": "CONTANT 29B,C & D 7A S S QTR", "Name": "RAMOS, CARLTON & JOSE", "Address": "PO Box 304871", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32700, "Improved_V": 175500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.027051032700001, "SHAPE_Area": 48.322405038200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355777.160800002515316, 256648.965300001204014 ], [ 355775.989699997007847, 256641.157499998807907 ], [ 355770.844700001180172, 256642.011999998241663 ], [ 355769.952600002288818, 256642.160199999809265 ], [ 355771.097199998795986, 256649.946199998259544 ], [ 355771.73139999806881, 256649.843600001186132 ], [ 355777.160800002515316, 256648.965300001204014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130600", "MAP": "D9-3387-T86", "PARCEL_NAM": "8G-1", "ACRE": "0.23", "LONGITUDE": -64.93013575000001, "LATITUDE": 18.34602365, "OBJECTID_1": 11664, "PARCEL_NO_": "105401130600", "Tax_Legal_": "8G-I & 8GH-1 LYTTONS FANCY QUEENS QUARTER", "Name": "TURNBULL, WILFRED", "Address": "BOX 4283", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.84750757400001, "SHAPE_Area": 935.75355397400006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358879.650399997830391, 257384.167100001126528 ], [ 358865.961000002920628, 257381.944200001657009 ], [ 358862.593699999153614, 257398.592999998480082 ], [ 358864.091300003230572, 257412.115200001746416 ], [ 358885.125399999320507, 257414.521899998188019 ], [ 358885.182199999690056, 257414.528400000184774 ], [ 358889.112000003457069, 257404.376400001347065 ], [ 358896.623800002038479, 257400.365899998694658 ], [ 358903.29280000180006, 257396.805300001055002 ], [ 358904.722499996423721, 257388.104499999433756 ], [ 358898.976700000464916, 257387.280600000172853 ], [ 358892.535199999809265, 257386.172400001436472 ], [ 358879.650399997830391, 257384.167100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701024400", "MAP": "A9-832-T017", "PARCEL_NAM": "5-3", "ACRE": "0.26", "LONGITUDE": -64.86291029, "LATITUDE": 18.32493037, "OBJECTID_1": 39247, "PARCEL_NO_": "107701024400", "Tax_Legal_": "5-3 FRYDENHOJ NO.3 RED HOOK QTR", "Name": "FRYDENHOJ HEIGHTS INC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 191700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.296857, "SHAPE_Area": 888.02874792399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366019.670299999415874, 255112.68470000103116 ], [ 366019.743400000035763, 255106.69029999896884 ], [ 365990.447999998927116, 255107.7820999994874 ], [ 365990.736100003123283, 255117.304499998688698 ], [ 365991.363099999725819, 255138.031500000506639 ], [ 365991.370200000703335, 255138.266800001263618 ], [ 366021.466499999165535, 255136.701699998229742 ], [ 366021.455399997532368, 255136.211199998855591 ], [ 366019.96509999781847, 255121.8445999994874 ], [ 366019.959299996495247, 255121.753499999642372 ], [ 366019.588799998164177, 255115.919599998742342 ], [ 366019.386500000953674, 255112.7347999997437 ], [ 366019.670299999415874, 255112.68470000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021200", "MAP": "A9-832-T017", "PARCEL_NAM": "5-9", "ACRE": "0.27", "LONGITUDE": -64.86297567, "LATITUDE": 18.3232834, "OBJECTID_1": 39218, "PARCEL_NO_": "107701021200", "Tax_Legal_": "PAR 5-11, 5-12 AND R.O.W. 5AB FRYDENHOJ 3 RED HOOK QTR", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 114.779284956, "SHAPE_Area": 827.20722704000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366015.366400003433228, 254954.024399999529123 ], [ 366015.013700000941753, 254941.445999998599291 ], [ 366014.590300001204014, 254932.132599998265505 ], [ 366014.441899999976158, 254932.135800000280142 ], [ 366014.662299998104572, 254932.011799998581409 ], [ 366014.660300001502037, 254931.999099999666214 ], [ 366014.654100000858307, 254931.959699999541044 ], [ 366013.640100002288818, 254925.543299999088049 ], [ 365984.965499997138977, 254926.549400001764297 ], [ 365985.802000001072884, 254954.202399998903275 ], [ 366015.366400003433228, 254954.024399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130400", "MAP": "B9-361-T72", "PARCEL_NAM": "8GH", "ACRE": "2.00", "LONGITUDE": -64.93008844000001, "LATITUDE": 18.34617804, "OBJECTID_1": 11662, "PARCEL_NO_": "105401130400", "Tax_Legal_": "8GH & 8G-IA LYTTONS FANCY QUEENS QUARTER", "Name": "VILENES, O. , PILGRIM, R. & ESTATE", "Address": "901 NW 201st St", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 340400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.27361528405000002, "SHAPE_Area": 0.00298346508 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358885.182199999690056, 257414.528400000184774 ], [ 358885.125399999320507, 257414.521899998188019 ], [ 358885.143299996852875, 257414.629000000655651 ], [ 358885.182199999690056, 257414.528400000184774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401130400", "MAP": "B9-361-T72", "PARCEL_NAM": "8GH", "ACRE": "2.00", "LONGITUDE": -64.92985192, "LATITUDE": 18.34656779, "OBJECTID_1": 11662, "PARCEL_NO_": "105401130400", "Tax_Legal_": "8GH & 8G-IA LYTTONS FANCY QUEENS QUARTER", "Name": "VILENES, O. , PILGRIM, R. & ESTATE", "Address": "901 NW 201st St", "City": "Miami", "State": "Florida", "Zip": 33169, "Country": "United States", "Land_Value": 340400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 396.74791873100003, "SHAPE_Area": 7876.3249504699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358904.300899997353554, 257387.125100001692772 ], [ 358904.722499996423721, 257388.104499999433756 ], [ 358903.29280000180006, 257396.805300001055002 ], [ 358900.092299997806549, 257416.282699998468161 ], [ 358893.897900000214577, 257415.525600001215935 ], [ 358885.182199999690056, 257414.528400000184774 ], [ 358885.143299996852875, 257414.629000000655651 ], [ 358866.515699997544289, 257441.471200000494719 ], [ 358871.401000000536442, 257500.6233000010252 ], [ 358906.036399997770786, 257505.128600001335144 ], [ 358905.127599999308586, 257517.153499998152256 ], [ 358946.18299999833107, 257525.300000000745058 ], [ 358936.077899999916553, 257386.317699998617172 ], [ 358904.622699998319149, 257387.115699999034405 ], [ 358904.300899997353554, 257387.125100001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020900", "MAP": "D9-9195-T017", "PARCEL_NAM": "13 & 14-B", "ACRE": "0.49", "LONGITUDE": -64.86333527, "LATITUDE": 18.32542641, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 450.11672008800002, "SHAPE_Area": 1555.54669947 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365955.684799998998642, 255137.473799999803305 ], [ 365955.277800001204014, 255167.897799998521805 ], [ 365954.976400002837181, 255167.898200001567602 ], [ 365955.155699998140335, 255171.340500000864267 ], [ 365955.155699998140335, 255195.682199999690056 ], [ 365953.832800000905991, 255218.4364 ], [ 365953.568199999630451, 255243.307300001382828 ], [ 365955.946800000965595, 255261.807500001043081 ], [ 365964.699699997901917, 255262.659800000488758 ], [ 365966.543600000441074, 255262.839400000870228 ], [ 365976.018500000238419, 255263.761999998241663 ], [ 365990.087300002574921, 255267.396600000560284 ], [ 365990.609899997711182, 255267.119899999350309 ], [ 365985.84740000218153, 255262.092799998819828 ], [ 365972.089000001549721, 255257.330299999564886 ], [ 365963.423600003123283, 255254.7043999992311 ], [ 365962.03490000218153, 255244.365699999034405 ], [ 365961.505699999630451, 255235.634399998933077 ], [ 365962.03490000218153, 255203.355200000107288 ], [ 365962.22410000115633, 255203.071299999952316 ], [ 365962.206399999558926, 255202.8260000012815 ], [ 365961.770300000905991, 255185.892599999904633 ], [ 365962.001199997961521, 255178.926300000399351 ], [ 365962.475500002503395, 255164.618200000375509 ], [ 365963.357799999415874, 255138.002900000661612 ], [ 365962.83839999884367, 255116.449999999254942 ], [ 365962.098200000822544, 255069.539299998432398 ], [ 365955.843400001525879, 255069.65819999948144 ], [ 365955.429799996316433, 255116.299699999392033 ], [ 365955.684799998998642, 255137.473799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020900", "MAP": "D9-9192-T017", "PARCEL_NAM": "13 & 14 A", "ACRE": "2.50", "LONGITUDE": -64.86357505, "LATITUDE": 18.32258993, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 516.52334414400002, "SHAPE_Area": 12072.4682631 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365977.321099996566772, 254921.208799999207258 ], [ 365975.967100001871586, 254891.181499999016523 ], [ 365967.248000003397465, 254778.808299999684095 ], [ 365967.137500002980232, 254776.528099998831749 ], [ 365955.753499999642372, 254776.375 ], [ 365943.662699997425079, 254773.815499998629093 ], [ 365929.577799998223782, 254770.685499999672174 ], [ 365901.199400000274181, 254764.947200000286102 ], [ 365901.230999998748302, 254766.446800000965595 ], [ 365902.550800003111362, 254792.49040000140667 ], [ 365904.08839999884367, 254822.831799998879433 ], [ 365905.703699998557568, 254854.706599999219179 ], [ 365907.050200000405312, 254881.276099998503923 ], [ 365908.070500001311302, 254901.410100001841784 ], [ 365909.038800001144409, 254920.518500000238419 ], [ 365910.08839999884367, 254941.229899998754263 ], [ 365912.089599996805191, 254980.719700001180172 ], [ 365977.321099996566772, 254921.208799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021200", "MAP": "D9-8005-T007", "PARCEL_NAM": "5AA", "ACRE": "4.01", "LONGITUDE": -64.8630196, "LATITUDE": 18.32583421, "OBJECTID_1": 39218, "PARCEL_NO_": "107701021200", "Tax_Legal_": "PAR 5-11, 5-12 AND R.O.W. 5AB FRYDENHOJ 3 RED HOOK QTR", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.91395683, "SHAPE_Area": 753.00011290099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365992.806400001049042, 255174.945900000631809 ], [ 365992.469999998807907, 255174.620000001043081 ], [ 365984.802599996328354, 255174.907900001853704 ], [ 365989.177199997007847, 255207.717500001192093 ], [ 365991.151100002229214, 255267.671399999409914 ], [ 365999.400399997830391, 255269.802499998360872 ], [ 365999.400399997830391, 255260.21169999986887 ], [ 365996.745999999344349, 255206.627000000327826 ], [ 365994.931900002062321, 255192.038800001144409 ], [ 365992.806400001049042, 255174.945900000631809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701024100", "MAP": "A9-832-T017", "PARCEL_NAM": "5-4", "ACRE": "0.26", "LONGITUDE": -64.86292021, "LATITUDE": 18.3246643, "OBJECTID_1": 39244, "PARCEL_NO_": "107701024100", "Tax_Legal_": "5-4 FRYDENHOJ NO.3 RED HOOK QTR", "Name": "RIVERA, DELMIRO E. & BERNADETTE D. RIVERA", "Address": "215-144 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.732943557, "SHAPE_Area": 842.36639154099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366019.193899996578693, 255081.221200000494719 ], [ 366019.071000002324581, 255078.701200000941753 ], [ 365989.573899999260902, 255078.885499998927116 ], [ 365989.87780000269413, 255088.932000000029802 ], [ 365990.447999998927116, 255107.7820999994874 ], [ 366019.743400000035763, 255106.69029999896884 ], [ 366019.881999999284744, 255095.328000001609325 ], [ 366019.849299997091293, 255094.656599998474121 ], [ 366019.516500003635883, 255087.834199998527765 ], [ 366019.193899996578693, 255081.221200000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701024700", "MAP": "A9-832-T017", "PARCEL_NAM": "5-6", "ACRE": "0.26", "LONGITUDE": -64.86294164, "LATITUDE": 18.3241054, "OBJECTID_1": 39249, "PARCEL_NO_": "107701024700", "Tax_Legal_": "5-6 FRYDENHOJ NO.3 RED HOOK QUARTER", "Name": "DIEUNEST ODVIL & GERNITHE DERVAL", "Address": "Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 38000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.353310177, "SHAPE_Area": 980.239395081 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366017.303000003099442, 255013.921799998730421 ], [ 365987.652999997138977, 255015.385999999940395 ], [ 365988.264300003647804, 255035.593699999153614 ], [ 365988.653800003230572, 255048.470600001513958 ], [ 366018.432199999690056, 255046.632399998605251 ], [ 366018.400399997830391, 255042.630800001323223 ], [ 366018.4003000035882, 255042.622900001704693 ], [ 366018.081000000238419, 255034.703699998557568 ], [ 366017.342000000178814, 255016.3761 ], [ 366017.338100001215935, 255016.130199998617172 ], [ 366017.303000003099442, 255013.921799998730421 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701024600", "MAP": "A9-832-T017", "PARCEL_NAM": "5-5", "ACRE": "0.26", "LONGITUDE": -64.86292963, "LATITUDE": 18.32439445, "OBJECTID_1": 39248, "PARCEL_NO_": "107701024600", "Tax_Legal_": "5-5 FRYDENHOJ NO.3 RED HOOK QTR", "Name": "WILSON, RICHARD A. & ALINA M. MATTHEW", "Address": "114 Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 60000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.842274488, "SHAPE_Area": 922.37196086100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366018.539499998092651, 255060.155099999159575 ], [ 366018.432199999690056, 255046.632399998605251 ], [ 365988.653800003230572, 255048.470600001513958 ], [ 365989.072800002992153, 255062.321800000965595 ], [ 365989.573899999260902, 255078.885499998927116 ], [ 366019.071000002324581, 255078.701200000941753 ], [ 366018.671899996697903, 255070.521099999547005 ], [ 366018.612000003457069, 255069.292899999767542 ], [ 366018.610100001096725, 255069.050500001758337 ], [ 366018.539499998092651, 255060.155099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701024800", "MAP": "A9-832-T017", "PARCEL_NAM": "5-7", "ACRE": "0.27", "LONGITUDE": -64.86295424, "LATITUDE": 18.32381098, "OBJECTID_1": 39250, "PARCEL_NO_": "107701024800", "Tax_Legal_": "5-7 FRYDENHOJ NO.3 RED HOOK QUARTER", "Name": "DUVERGE, FRANTZ & JOSE F. DENIS", "Address": "B-22 Ross Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.904789949, "SHAPE_Area": 959.30586400300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366016.488499999046326, 254990.094399999827147 ], [ 366016.266400001943111, 254981.985599998384714 ], [ 365986.665600001811981, 254982.749499998986721 ], [ 365987.509400002658367, 255010.639499999582767 ], [ 365987.580799996852875, 255012.999000001698732 ], [ 365987.652999997138977, 255015.385999999940395 ], [ 366017.303000003099442, 255013.921799998730421 ], [ 366017.27080000191927, 255011.892499998211861 ], [ 366017.208099998533726, 255007.939599998295307 ], [ 366017.130300000309944, 255003.04109999909997 ], [ 366016.495300002396107, 254990.341099999845028 ], [ 366016.488499999046326, 254990.094399999827147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021200", "MAP": "A9-832-T017", "PARCEL_NAM": "5-11", "ACRE": "0.32", "LONGITUDE": -64.86302474, "LATITUDE": 18.32275085, "OBJECTID_1": 39218, "PARCEL_NO_": "107701021200", "Tax_Legal_": "PAR 5-11, 5-12 AND R.O.W. 5AB FRYDENHOJ 3 RED HOOK QTR", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.016416249, "SHAPE_Area": 751.411793902 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366009.0050999969244, 254896.214000001549721 ], [ 366008.219499997794628, 254891.242899999022484 ], [ 366008.221400000154972, 254891.234400000423193 ], [ 366007.490599997341633, 254882.362500000745058 ], [ 366006.621299996972084, 254873.110199999064207 ], [ 366005.802000001072884, 254864.390000000596046 ], [ 365983.239000000059605, 254865.763399999588728 ], [ 365983.390100002288818, 254874.469999998807907 ], [ 365984.078299999237061, 254897.221099998801947 ], [ 366009.0050999969244, 254896.214000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021200", "MAP": "A9-832-T017", "PARCEL_NAM": "5-10", "ACRE": "0.27", "LONGITUDE": -64.86299894, "LATITUDE": 18.32302702, "OBJECTID_1": 39218, "PARCEL_NO_": "107701021200", "Tax_Legal_": "PAR 5-11, 5-12 AND R.O.W. 5AB FRYDENHOJ 3 RED HOOK QTR", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.674380528, "SHAPE_Area": 788.81107535499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366013.640100002288818, 254925.543299999088049 ], [ 366013.123099997639656, 254922.272100001573563 ], [ 366009.0050999969244, 254896.214000001549721 ], [ 365984.078299999237061, 254897.221099998801947 ], [ 365984.965499997138977, 254926.549400001764297 ], [ 366013.640100002288818, 254925.543299999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021200", "MAP": "A9-832-T017", "PARCEL_NAM": "5-8", "ACRE": "0.27", "LONGITUDE": -64.86296591, "LATITUDE": 18.32353748, "OBJECTID_1": 39218, "PARCEL_NO_": "107701021200", "Tax_Legal_": "PAR 5-11, 5-12 AND R.O.W. 5AB FRYDENHOJ 3 RED HOOK QTR", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.711865445, "SHAPE_Area": 836.11364062200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366015.451999999582767, 254957.078899998217821 ], [ 366015.366400003433228, 254954.024399999529123 ], [ 365985.802000001072884, 254954.202399998903275 ], [ 365986.489100001752377, 254976.913899999111891 ], [ 365986.665600001811981, 254982.749499998986721 ], [ 366016.266400001943111, 254981.985599998384714 ], [ 366016.10249999910593, 254976.003299999982119 ], [ 366016.071999996900558, 254974.889400001615286 ], [ 366015.648699998855591, 254964.094399999827147 ], [ 366015.641800001263618, 254963.848200000822544 ], [ 366015.451999999582767, 254957.078899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701025300", "MAP": "D9-9195-T017", "PARCEL_NAM": "13 & 14-3", "ACRE": "0.32", "LONGITUDE": -64.86319758, "LATITUDE": 18.3252794, "OBJECTID_1": 39255, "PARCEL_NO_": "107701025300", "Tax_Legal_": "13 & 14-3 FRYDENHOJ NO. 3 RED HOOK QTR", "Name": "HARROW, STANFORD & NESHA WILLIAMS", "Address": "71-89 Nadir Homes 33-7", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.51694574800001, "SHAPE_Area": 1127.8482747099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365979.182099997997284, 255125.061799999326468 ], [ 365977.758400000631809, 255125.061799999326468 ], [ 365976.690700002014637, 255126.663400001823902 ], [ 365968.148699998855591, 255146.0608000010252 ], [ 365962.835799999535084, 255153.750599998980761 ], [ 365962.475500002503395, 255164.618200000375509 ], [ 365962.001199997961521, 255178.926300000399351 ], [ 365961.770300000905991, 255185.892599999904633 ], [ 365986.426700003445148, 255187.088599998503923 ], [ 365984.802599996328354, 255174.907900001853704 ], [ 365984.433499999344349, 255129.50789999961853 ], [ 365981.91499999910593, 255126.435600001364946 ], [ 365981.49549999833107, 255125.95160000026226 ], [ 365979.182099997997284, 255125.061799999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701026000", "MAP": "D9-9221-T017", "PARCEL_NAM": "13 & 14-10", "ACRE": "0.34", "LONGITUDE": -64.86356369000001, "LATITUDE": 18.32463071, "OBJECTID_1": 39258, "PARCEL_NO_": "107701026000", "Tax_Legal_": "13 & 14-10 FRYDENHOJ NO. 3 RED HOOK QTR", "Name": "EXILUS, ELANGE", "Address": "#5 Estate Bovoni", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 55300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.70925400799999, "SHAPE_Area": 1437.22143349 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365918.507600001990795, 255107.366399999707937 ], [ 365955.502199999988079, 255108.137099999934435 ], [ 365955.843400001525879, 255069.65819999948144 ], [ 365916.634499996900558, 255070.403599999845028 ], [ 365917.004000000655651, 255077.695900000631809 ], [ 365918.507600001990795, 255107.366399999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701025900", "MAP": "D9-9195-T017", "PARCEL_NAM": "13 & 14-9", "ACRE": "0.29", "LONGITUDE": -64.86355516, "LATITUDE": 18.32493531, "OBJECTID_1": 39257, "PARCEL_NO_": "107701025900", "Tax_Legal_": "13 & 14-9 FRYDENHOJ NO. 3 RED HOOK QTR", "Name": "FRANKIN, DESMOND E", "Address": "7051 Estate Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 47100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.75867048800001, "SHAPE_Area": 1070.28972686 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365955.502199999988079, 255108.137099999934435 ], [ 365918.507600001990795, 255107.366399999707937 ], [ 365918.957000002264977, 255116.233500000089407 ], [ 365920.012999996542931, 255137.071699999272823 ], [ 365955.684799998998642, 255137.473799999803305 ], [ 365955.429799996316433, 255116.299699999392033 ], [ 365955.502199999988079, 255108.137099999934435 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701025700", "MAP": "D9-9195-T017", "PARCEL_NAM": "13 & 14-7", "ACRE": "0.28", "LONGITUDE": -64.86353635, "LATITUDE": 18.32548037, "OBJECTID_1": 39256, "PARCEL_NO_": "107701025700", "Tax_Legal_": "13 & 14-7 FRYDENHOJ NO. 3 RED HOOK QTR", "Name": "GABRIEL, GERARD", "Address": "2-4 Estate Mariendahl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.235989987, "SHAPE_Area": 981.57839634899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365955.155699998140335, 255171.340500000864267 ], [ 365954.976400002837181, 255167.898200001567602 ], [ 365922.143799997866154, 255167.943900000303984 ], [ 365921.577500000596046, 255167.944699998944998 ], [ 365922.801899999380112, 255192.106800001114607 ], [ 365923.066100001335144, 255197.320500001311302 ], [ 365954.999899998307228, 255198.361800000071526 ], [ 365955.140399999916553, 255195.945999998599291 ], [ 365955.155699998140335, 255195.682199999690056 ], [ 365955.155699998140335, 255171.340500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701026100", "MAP": "D9-9221-T017", "PARCEL_NAM": "13 & 14-11", "ACRE": "0.34", "LONGITUDE": -64.86357034, "LATITUDE": 18.32432122, "OBJECTID_1": 39259, "PARCEL_NO_": "107701026100", "Tax_Legal_": "13 & 14-11 FRYDENHOJ NO. 3 RED HOOK QTR", "Name": "RENUS, BONIFACE", "Address": "14-D Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.694974962, "SHAPE_Area": 1261.2147191900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365955.843400001525879, 255069.65819999948144 ], [ 365958.015699997544289, 255039.179699998348951 ], [ 365915.066899999976158, 255039.469900000840425 ], [ 365916.634499996900558, 255070.403599999845028 ], [ 365955.843400001525879, 255069.65819999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701020900", "MAP": "D9-9221-T017", "PARCEL_NAM": "13 & 14-D", "ACRE": "0.10", "LONGITUDE": -64.86333197, "LATITUDE": 18.32424743, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.74863244, "SHAPE_Area": 391.84824656299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365966.905699998140335, 255024.098400000482798 ], [ 365959.285700000822544, 255020.764600001275539 ], [ 365958.015699997544289, 255039.179699998348951 ], [ 365955.843400001525879, 255069.65819999948144 ], [ 365962.098200000822544, 255069.539299998432398 ], [ 365964.767200000584126, 255069.539299998432398 ], [ 365965.159400001168251, 255059.340999998152256 ], [ 365966.905699998140335, 255024.098400000482798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020900", "MAP": "D9-9328-T019", "PARCEL_NAM": "REM 13 & 14 CONS", "ACRE": "0.05", "LONGITUDE": -64.86319686, "LATITUDE": 18.32389701, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.990837674999995, "SHAPE_Area": 161.239659639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365980.377899996936321, 254989.0011 ], [ 365966.905699998140335, 255024.098400000482798 ], [ 365978.427100002765656, 255013.145899999886751 ], [ 365981.351999998092651, 255010.604600001126528 ], [ 365980.377899996936321, 254989.0011 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020900", "MAP": "D9-9328-T019", "PARCEL_NAM": "13 & 14-13", "ACRE": "0.51", "LONGITUDE": -64.86358342, "LATITUDE": 18.32395957, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.49009593599999, "SHAPE_Area": 2229.5219717700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365959.285700000822544, 255020.764600001275539 ], [ 365964.736100003123283, 255003.884199999272823 ], [ 365912.089599996805191, 254980.719700001180172 ], [ 365913.5675999969244, 255009.885200001299381 ], [ 365915.066899999976158, 255039.469900000840425 ], [ 365958.015699997544289, 255039.179699998348951 ], [ 365959.285700000822544, 255020.764600001275539 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020900", "MAP": "D9-9328-T019", "PARCEL_NAM": "13 & 14-15", "ACRE": "0.52", "LONGITUDE": -64.86343043, "LATITUDE": 18.32348227, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.54330871400001, "SHAPE_Area": 1967.6109305699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365979.098300002515316, 254960.62220000103116 ], [ 365977.321099996566772, 254921.208799999207258 ], [ 365912.089599996805191, 254980.719700001180172 ], [ 365937.471400000154972, 254991.887699998915195 ], [ 365979.098300002515316, 254960.62220000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701020900", "MAP": "D9-9328-T019", "PARCEL_NAM": "13 & 14-14", "ACRE": "0.32", "LONGITUDE": -64.86335259000001, "LATITUDE": 18.32371014, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.27630885799999, "SHAPE_Area": 664.41979339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365970.855200000107288, 254966.813499998301268 ], [ 365937.471400000154972, 254991.887699998915195 ], [ 365964.736100003123283, 255003.884199999272823 ], [ 365972.779500000178814, 254988.855799999088049 ], [ 365972.779500000178814, 254977.425799999386072 ], [ 365972.991099998354912, 254970.017499998211861 ], [ 365970.855200000107288, 254966.813499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107701020900", "MAP": "D9-9328-T019", "PARCEL_NAM": "ROW 13 & 14-E", "ACRE": "0.14", "LONGITUDE": -64.86323802, "LATITUDE": 18.32377868, "OBJECTID_1": 39217, "PARCEL_NO_": "107701020900", "Tax_Legal_": "PAR 13 & 14-14A, 13&14-4, 13& 14-5, 13&14-13 and R.O.W. 14-14B, 14C, 14D & 14E FRYDENHOJ 3 RED HOOK", "Name": "RED HOOK HILLS LLC.,", "Address": "7403 Estate Bovoni # 2-2", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022549, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.104527991, "SHAPE_Area": 490.59977268599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365970.855200000107288, 254966.813499998301268 ], [ 365972.991099998354912, 254970.017499998211861 ], [ 365972.779500000178814, 254977.425799999386072 ], [ 365972.779500000178814, 254988.855799999088049 ], [ 365964.736100003123283, 255003.884199999272823 ], [ 365959.285700000822544, 255020.764600001275539 ], [ 365966.905699998140335, 255024.098400000482798 ], [ 365980.377899996936321, 254989.0011 ], [ 365979.098300002515316, 254960.62220000103116 ], [ 365970.855200000107288, 254966.813499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003032200", "MAP": "D9-9323-T019", "PARCEL_NAM": "4G-1B REM", "ACRE": "0.23", "LONGITUDE": -64.91017883000001, "LATITUDE": 18.34959948, "OBJECTID_1": 5818, "PARCEL_NO_": "103003032200", "Tax_Legal_": "4G-1B ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "GIRAUD, VICTOR", "Address": "PO Box 304221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.07990114099999, "SHAPE_Area": 1082.21353869 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361003.9054000005126, 257824.584600001573563 ], [ 360997.760600000619888, 257788.648400001227856 ], [ 360993.721799999475479, 257789.459800001233816 ], [ 360973.526299998164177, 257793.727400001138449 ], [ 360971.221400000154972, 257817.037999998778105 ], [ 360970.206799998879433, 257827.299400001764297 ], [ 360970.190600000321865, 257827.463300000876188 ], [ 360969.673299998044968, 257831.472600001841784 ], [ 360973.773199997842312, 257830.647599998861551 ], [ 361003.9054000005126, 257824.584600001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "103003032200", "MAP": "D9-9323-T019", "PARCEL_NAM": "ROW 4G-1B-A", "ACRE": "0.03", "LONGITUDE": -64.91046659, "LATITUDE": 18.34979734, "OBJECTID_1": 5818, "PARCEL_NO_": "103003032200", "Tax_Legal_": "4G-1B ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "GIRAUD, VICTOR", "Address": "PO Box 304221", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.583928450499997, "SHAPE_Area": 114.19039954100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360969.673299998044968, 257831.472600001841784 ], [ 360970.190600000321865, 257827.463300000876188 ], [ 360970.206799998879433, 257827.299400001764297 ], [ 360940.934500001370907, 257833.360800001770258 ], [ 360941.572800002992153, 257837.126800000667572 ], [ 360969.673299998044968, 257831.472600001841784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "105801012800", "MAP": "D9-6925-T001", "PARCEL_NAM": "19K", "ACRE": "10.11", "LONGITUDE": -64.86252249, "LATITUDE": 18.33959349, "OBJECTID_1": 23812, "PARCEL_NO_": "105801012800", "Tax_Legal_": "19K ESTATE SMITH BAY 1,2 & 3 EASTEND QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 613700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 439.16227300700001, "SHAPE_Area": 1314.80868293 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366002.57599999755621, 256645.857599999755621 ], [ 366058.098600000143051, 256852.52479999884963 ], [ 366063.339500002563, 256849.953999999910593 ], [ 366008.98589999973774, 256644.285599999129772 ], [ 366002.57599999755621, 256645.857599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404160200", "MAP": "D9-9292-T018", "PARCEL_NAM": "4C-REM (CENTRAL PORTION)", "ACRE": null, "LONGITUDE": -64.91996485, "LATITUDE": 18.3362888, "OBJECTID_1": 19569, "PARCEL_NO_": "105404160200", "Tax_Legal_": "4C ESTATE THOMAS KINGS QTR.", "Name": "IN-USVI, LLC", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 313600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 49.065483640099998, "SHAPE_Area": 90.371516307799993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359966.052299998700619, 256337.178300000727177 ], [ 359968.6891999989748, 256316.780200000852346 ], [ 359957.863600000739098, 256332.425200000405312 ], [ 359959.940499998629093, 256333.774300001561642 ], [ 359966.052299998700619, 256337.178300000727177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404160400", "MAP": "D9-9292-T018", "PARCEL_NAM": "4C REM (NORTHERN PORTION)", "ACRE": ".457", "LONGITUDE": -64.91997335000001, "LATITUDE": 18.33652967, "OBJECTID_1": 19571, "PARCEL_NO_": "105404160400", "Tax_Legal_": "4D,4E&5B ESTATE THOMAS 3/4 UNDIVIDED INT.", "Name": "IN-USVI, LLC", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1730300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 72.782433690100007, "SHAPE_Area": 227.07972988500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359965.79110000282526, 256343.486699998378754 ], [ 359960.655299998819828, 256340.783599998801947 ], [ 359957.32150000333786, 256347.7685999982059 ], [ 359959.385200001299381, 256349.197399999946356 ], [ 359957.129900000989437, 256355.077399998903275 ], [ 359954.824799999594688, 256360.688700001686811 ], [ 359971.496399998664856, 256368.256499998271465 ], [ 359971.256999999284744, 256364.856899999082088 ], [ 359971.241499997675419, 256364.637099999934435 ], [ 359970.236100003123283, 256361.779599998146296 ], [ 359969.336499996483326, 256358.604600001126528 ], [ 359967.325699999928474, 256356.170400001108646 ], [ 359965.79110000282526, 256351.725400000810623 ], [ 359965.79110000282526, 256343.486699998378754 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404160400", "MAP": "D9-6831-T000", "PARCEL_NAM": "4D", "ACRE": ".457", "LONGITUDE": -64.92009577, "LATITUDE": 18.33674273, "OBJECTID_1": 19571, "PARCEL_NO_": "105404160400", "Tax_Legal_": "4D,4E&5B ESTATE THOMAS 3/4 UNDIVIDED INT.", "Name": "IN-USVI, LLC", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1730300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.98057827700001, "SHAPE_Area": 971.52898992200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359960.396799996495247, 256394.696199998259544 ], [ 359972.189800001680851, 256378.605099998414516 ], [ 359974.488799996674061, 256369.614799998700619 ], [ 359971.16889999806881, 256368.107799999415874 ], [ 359952.241499997675419, 256359.516100000590086 ], [ 359943.192699998617172, 256381.264899998903275 ], [ 359937.160199999809265, 256379.042399998754263 ], [ 359936.04900000244379, 256381.899900000542402 ], [ 359927.635200001299381, 256379.042399998754263 ], [ 359928.270199999213219, 256377.772399999201298 ], [ 359918.586400002241135, 256374.279899999499321 ], [ 359918.961000002920628, 256373.031399998813868 ], [ 359919.062700003385544, 256372.692400000989437 ], [ 359916.205200001597404, 256371.739900000393391 ], [ 359915.929999999701977, 256371.70549999922514 ], [ 359909.730999998748302, 256379.319400001317263 ], [ 359912.430900000035763, 256380.224800001829863 ], [ 359958.286899998784065, 256395.603000000119209 ], [ 359959.236900001764297, 256395.921599999070168 ], [ 359960.396799996495247, 256394.696199998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404160100", "MAP": "D9-9320-T019", "PARCEL_NAM": "4K", "ACRE": "0.77", "LONGITUDE": -64.91964595, "LATITUDE": 18.33562017, "OBJECTID_1": 19556, "PARCEL_NO_": "105404160100", "Tax_Legal_": "4 ESTATE THOMAS KINGS QTR", "Name": "IN-USVI, LLC", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11457400, "Improved_V": 3938100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.12464474699999, "SHAPE_Area": 3054.2238897000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359995.490599997341633, 256270.762699998915195 ], [ 359997.395599998533726, 256269.969000000506639 ], [ 359998.189400002360344, 256270.603999998420477 ], [ 360025.653200000524521, 256282.9864999987185 ], [ 360033.749499998986721, 256267.270199999213219 ], [ 360027.716899998486042, 256263.9364 ], [ 360030.574500001966953, 256258.538899999111891 ], [ 360023.430699996650219, 256254.252700001001358 ], [ 360036.765699997544289, 256230.122600000351667 ], [ 360011.365699999034405, 256217.263900000602007 ], [ 359994.696900002658367, 256248.378899998962879 ], [ 359969.518100000917912, 256234.9989 ], [ 359961.016800001263618, 256250.851700000464916 ], [ 359956.229599997401237, 256256.823499999940395 ], [ 359971.767800003290176, 256287.125999998301268 ], [ 359974.942800000309944, 256289.030999999493361 ], [ 359979.123499996960163, 256285.026900000870228 ], [ 359993.903099998831749, 256271.239000000059605 ], [ 359995.490599997341633, 256270.762699998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "ROW 2J-F", "ACRE": "1.25", "LONGITUDE": -64.90483147, "LATITUDE": 18.33061065, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 882.93208175500001, "SHAPE_Area": 5306.5923120699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361720.654899999499321, 255770.400499999523163 ], [ 361721.344300001859665, 255764.184399999678135 ], [ 361721.608800001442432, 255758.231199998408556 ], [ 361716.184900000691414, 255757.30519999936223 ], [ 361683.111900001764297, 255753.865600001066923 ], [ 361657.711800001561642, 255750.955200001597404 ], [ 361632.047200001776218, 255748.177099999040365 ], [ 361611.542000003159046, 255745.531199999153614 ], [ 361558.1621999964118, 255740.768699999898672 ], [ 361542.287100002169609, 255737.064500000327826 ], [ 361514.241200000047684, 255728.333299998193979 ], [ 361508.893453635857441, 255726.789777065103408 ], [ 361503.800316774868406, 255724.544601986039197 ], [ 361499.053381439531222, 255721.638150688871974 ], [ 361494.738013764726929, 255718.122691109805601 ], [ 361490.931818822573405, 255714.061443237180356 ], [ 361487.703245017677546, 255709.52744219978922 ], [ 361485.110353150870651, 255704.602224845410092 ], [ 361483.199772287218366, 255699.374363429495133 ], [ 361482.005861206038389, 255693.937872782844352 ], [ 361481.550090512551833, 255688.390519603592111 ], [ 361481.840656522777863, 255682.832064277288737 ], [ 361482.872333866020199, 255677.36246684420621 ], [ 361484.626569454558194, 255672.080089375609532 ], [ 361487.071816131996457, 255667.079927087528631 ], [ 361490.164099998772144, 255662.451900001615286 ], [ 361517.680799998342991, 255616.149700000882149 ], [ 361541.758000001311302, 255575.668400000780821 ], [ 361542.968290037184488, 255574.526513059710851 ], [ 361544.34171729371883, 255573.58714873844292 ], [ 361545.844734085258096, 255572.873252190300263 ], [ 361547.440627339005005, 255572.402261235081824 ], [ 361549.090415357786696, 255572.185680418420816 ], [ 361550.753799997270107, 255572.228799998760223 ], [ 361534.614200003445148, 255561.116300001740456 ], [ 361534.976238908595406, 255562.780941763252486 ], [ 361535.049327688582707, 255564.482929540303303 ], [ 361534.831328487896826, 255566.172479986853432 ], [ 361534.328617809223942, 255567.800173550320324 ], [ 361533.555900000035763, 255569.318399999290705 ], [ 361519.532899998128414, 255590.220499999821186 ], [ 361507.626599997282028, 255612.445500001311302 ], [ 361493.074500001966953, 255637.845600001513958 ], [ 361480.374499998986721, 255659.806000001728535 ], [ 361477.776550567126833, 255664.209547244972782 ], [ 361475.74466396070784, 255668.901242715946864 ], [ 361474.310200548672583, 255673.808674253232311 ], [ 361473.495300002396107, 255678.856100000441074 ], [ 361472.859337402158417, 255686.251161932799732 ], [ 361472.770976699946914, 255693.672993364365539 ], [ 361473.230700001120567, 255701.0810999982059 ], [ 361475.27039591956418, 255707.295195828686701 ], [ 361478.01677575026406, 255713.230913498497102 ], [ 361481.432800002396107, 255718.808200001716614 ], [ 361492.646300002932549, 255729.913699999451637 ], [ 361506.203000001609325, 255737.21339999884367 ], [ 361506.379399999976158, 255737.264699999243021 ], [ 361514.284800000488758, 255739.559799998998642 ], [ 361520.243199996650219, 255741.470899999141693 ], [ 361525.220299996435642, 255743.088500000536442 ], [ 361533.049500003457069, 255745.342300001531839 ], [ 361539.19030000269413, 255747.110100001096725 ], [ 361545.751999996602535, 255750.496800001710653 ], [ 361548.410300001502037, 255752.680399999022484 ], [ 361551.678700000047684, 255755.365200001746416 ], [ 361560.145400002598763, 255763.408500000834465 ], [ 361567.130400002002716, 255771.663499999791384 ], [ 361571.36370000243187, 255776.743500001728535 ], [ 361572.574199996888638, 255776.200100000947714 ], [ 361581.349299997091293, 255772.260200001299381 ], [ 361581.735399998724461, 255772.086899999529123 ], [ 361581.527199998497963, 255770.907000001519918 ], [ 361581.100400000810623, 255768.488499999046326 ], [ 361581.735399998724461, 255764.67850000038743 ], [ 361583.852099999785423, 255761.715199999511242 ], [ 361586.815399996936321, 255759.386799998581409 ], [ 361591.048799999058247, 255758.328499998897314 ], [ 361607.558799996972084, 255760.233500000089407 ], [ 361646.08219999819994, 255763.831799998879433 ], [ 361678.890600003302097, 255766.583500001579523 ], [ 361704.502300001680851, 255768.700199998915195 ], [ 361720.654899999499321, 255770.400499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-29", "ACRE": "0.24", "LONGITUDE": -64.90576556000001, "LATITUDE": 18.33084761, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.321237626, "SHAPE_Area": 959.53864342899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361481.432800002396107, 255718.808200001716614 ], [ 361447.446999996900558, 255737.434900000691414 ], [ 361451.49555936222896, 255744.241225614969153 ], [ 361456.004444812715519, 255750.751744280714775 ], [ 361460.952131549653132, 255756.935375677800039 ], [ 361466.314999997615814, 255762.762600000947714 ], [ 361492.646300002932549, 255729.913699999451637 ], [ 361481.432800002396107, 255718.808200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-30", "ACRE": "0.24", "LONGITUDE": -64.90588468, "LATITUDE": 18.33064765, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.602841943, "SHAPE_Area": 987.16886409799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361473.230700001120567, 255701.0810999982059 ], [ 361437.392899997532368, 255706.214099999517202 ], [ 361438.407320255355444, 255712.736366119817831 ], [ 361439.930890150135383, 255719.158806355379056 ], [ 361441.954196044011042, 255725.44173855803092 ], [ 361444.464736594702117, 255731.546342553949216 ], [ 361447.446999996900558, 255737.434900000691414 ], [ 361481.432800002396107, 255718.808200001716614 ], [ 361478.016775750205852, 255713.230913498526206 ], [ 361475.270395919505972, 255707.295195828715805 ], [ 361473.230700001120567, 255701.0810999982059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-31", "ACRE": "0.24", "LONGITUDE": -64.90592737, "LATITUDE": 18.33040479, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.217796714, "SHAPE_Area": 1016.8685649499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361473.495300002396107, 255678.856100000441074 ], [ 361436.86370000243187, 255673.670200001448393 ], [ 361435.832197337644175, 255681.7881616349041 ], [ 361435.576192292734049, 255689.967388997378293 ], [ 361436.097998326469678, 255698.133968286972959 ], [ 361437.392899997532368, 255706.214099999517202 ], [ 361473.230700001120567, 255701.0810999982059 ], [ 361472.770976699830499, 255693.672993364365539 ], [ 361472.859337401983794, 255686.251161932799732 ], [ 361473.495300002396107, 255678.856100000441074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-32", "ACRE": "0.24", "LONGITUDE": -64.90589399, "LATITUDE": 18.33016153, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.175931443, "SHAPE_Area": 985.41354654500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361480.374499998986721, 255659.806000001728535 ], [ 361446.124099999666214, 255642.713899999856949 ], [ 361442.932329247938469, 255650.166323568468215 ], [ 361440.315505190344993, 255657.839539936423535 ], [ 361438.288729849562515, 255665.689266001427313 ], [ 361436.86370000243187, 255673.670200001448393 ], [ 361473.495300002396107, 255678.856100000441074 ], [ 361474.310200548148714, 255673.808674253115896 ], [ 361475.744663960067555, 255668.901242715714034 ], [ 361477.776550566661172, 255664.209547244739952 ], [ 361480.374499998986721, 255659.806000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-33", "ACRE": "0.25", "LONGITUDE": -64.90577703, "LATITUDE": 18.32994534, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.276080759, "SHAPE_Area": 1045.4591629 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361493.074500001966953, 255637.845600001513958 ], [ 361460.67620000243187, 255617.313900001347065 ], [ 361446.124099999666214, 255642.713899999856949 ], [ 361480.374499998986721, 255659.806000001728535 ], [ 361493.074500001966953, 255637.845600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-34", "ACRE": "0.25", "LONGITUDE": -64.90564146, "LATITUDE": 18.3297323, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.92418870200001, "SHAPE_Area": 1061.51840416 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361507.626599997282028, 255612.445500001311302 ], [ 361474.434600003063679, 255594.55970000103116 ], [ 361460.67620000243187, 255617.313900001347065 ], [ 361493.074500001966953, 255637.845600001513958 ], [ 361507.626599997282028, 255612.445500001311302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-35", "ACRE": "0.24", "LONGITUDE": -64.90551912, "LATITUDE": 18.32951005, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.44232338800001, "SHAPE_Area": 1030.2549219800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361519.532899998128414, 255590.220499999821186 ], [ 361491.368000000715256, 255569.424199998378754 ], [ 361484.7533999979496, 255576.303399998694658 ], [ 361474.434600003063679, 255594.55970000103116 ], [ 361507.626599997282028, 255612.445500001311302 ], [ 361519.532899998128414, 255590.220499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-36", "ACRE": "0.26", "LONGITUDE": -64.90533833000001, "LATITUDE": 18.32928077, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.91619045, "SHAPE_Area": 1119.31152763 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361534.614200003445148, 255561.116300001740456 ], [ 361524.970100000500679, 255539.790800001472235 ], [ 361491.368000000715256, 255569.424199998378754 ], [ 361519.532899998128414, 255590.220499999821186 ], [ 361533.555900000035763, 255569.318399999290705 ], [ 361534.328617808816489, 255567.800173550203908 ], [ 361534.83132848731475, 255566.172479986737017 ], [ 361535.049327687942423, 255564.482929540245095 ], [ 361534.976238908187952, 255562.780941763252486 ], [ 361534.614200003445148, 255561.116300001740456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-H GREEN BELT", "ACRE": "0.26", "LONGITUDE": -64.90509428, "LATITUDE": 18.32956828, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.800565318, "SHAPE_Area": 1087.0449096 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361550.753799997270107, 255572.228799998760223 ], [ 361549.090415358601604, 255572.185680423746817 ], [ 361547.440627341216896, 255572.402261243463727 ], [ 361545.844734088750556, 255572.873252199438866 ], [ 361544.341717297676951, 255573.587148746184539 ], [ 361542.968290040153079, 255574.526513064280152 ], [ 361541.758000001311302, 255575.668400000780821 ], [ 361517.680799998342991, 255616.149700000882149 ], [ 361555.926399998366833, 255615.461800001561642 ], [ 361556.455600000917912, 255579.743000000715256 ], [ 361555.873893971322104, 255577.888127891725162 ], [ 361554.982253763650078, 255576.160728057933738 ], [ 361553.807178571762051, 255574.612138138356386 ], [ 361552.38359116500942, 255573.288381612044759 ], [ 361550.753799997270107, 255572.228799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-G GREEN BELT", "ACRE": "1.1", "LONGITUDE": -64.90529981, "LATITUDE": 18.33046178, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 413.709687895, "SHAPE_Area": 4571.2553466600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361517.680799998342991, 255616.149700000882149 ], [ 361490.164099998772144, 255662.451900001615286 ], [ 361487.071816123614553, 255667.079927085665986 ], [ 361484.626569438609295, 255672.080089373484952 ], [ 361482.872333843552042, 255677.362466843187576 ], [ 361481.840656495245639, 255682.832064278481994 ], [ 361481.550090481352527, 255688.390519607695751 ], [ 361482.005861172801815, 255693.937872790236725 ], [ 361483.19977225351613, 255699.374363440176239 ], [ 361485.110353118216153, 255704.602224859001581 ], [ 361487.703244987525977, 255709.5274422155926 ], [ 361490.931818796088919, 255714.061443254176993 ], [ 361494.738013742899057, 255718.122691126685822 ], [ 361499.053381423000246, 255721.638150704151485 ], [ 361503.800316763983574, 255724.544601998029975 ], [ 361508.893453630618751, 255726.789777072001016 ], [ 361514.241200000047684, 255728.333299998193979 ], [ 361542.287100002169609, 255737.064500000327826 ], [ 361558.1621999964118, 255740.768699999898672 ], [ 361611.542000003159046, 255745.531199999153614 ], [ 361598.524400003254414, 255742.991200000047684 ], [ 361587.989116148790345, 255738.700817472417839 ], [ 361577.744988741527777, 255733.755370900937123 ], [ 361567.832699999213219, 255728.174499999731779 ], [ 361562.153368018509354, 255724.460021890845383 ], [ 361556.792735185532365, 255720.298799113923451 ], [ 361551.785856410046108, 255715.718043248780305 ], [ 361547.165473289496731, 255710.747709337651031 ], [ 361542.961800001561642, 255705.420299999415874 ], [ 361537.880041487165727, 255698.768620452523464 ], [ 361533.219960662128869, 255691.81500577396946 ], [ 361528.999446352012455, 255684.586149062757613 ], [ 361525.234700001776218, 255677.1097999997437 ], [ 361522.317771695379633, 255669.146157825598493 ], [ 361519.971103149058763, 255660.996236712118844 ], [ 361518.20643604779616, 255652.700815237330971 ], [ 361517.032600000500679, 255644.301399998366833 ], [ 361516.370805640413892, 255637.265911196154775 ], [ 361516.258342033426743, 255630.200260030222125 ], [ 361516.695890847477131, 255623.147273039125139 ], [ 361517.680799998342991, 255616.149700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-42", "ACRE": "0.26", "LONGITUDE": -64.9043715, "LATITUDE": 18.33073481, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.33917547, "SHAPE_Area": 1092.7504271800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361598.524400003254414, 255742.991200000047684 ], [ 361611.542000003159046, 255745.531199999153614 ], [ 361632.047200001776218, 255748.177099999040365 ], [ 361630.803700000047684, 255707.801600001752377 ], [ 361623.596728964708745, 255707.494801941735204 ], [ 361616.437585230101831, 255706.6109368269681 ], [ 361609.372400000691414, 255705.155699998140335 ], [ 361598.524400003254414, 255742.991200000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-41", "ACRE": "0.26", "LONGITUDE": -64.90411667, "LATITUDE": 18.33073883, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.85102819599999, "SHAPE_Area": 1080.8230111 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361630.803700000047684, 255707.801600001752377 ], [ 361632.047200001776218, 255748.177099999040365 ], [ 361657.711800001561642, 255750.955200001597404 ], [ 361656.468299999833107, 255707.007800001651049 ], [ 361630.803700000047684, 255707.801600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-018", "PARCEL_NAM": "2J-40", "ACRE": "0.25", "LONGITUDE": -64.90388437, "LATITUDE": 18.33075246, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.641917877, "SHAPE_Area": 1065.48631731 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361656.468299999833107, 255707.007800001651049 ], [ 361657.711800001561642, 255750.955200001597404 ], [ 361683.111900001764297, 255753.865600001066923 ], [ 361677.899599999189377, 255706.47859999909997 ], [ 361656.468299999833107, 255707.007800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-39", "ACRE": "0.33", "LONGITUDE": -64.90363937, "LATITUDE": 18.33075972, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.416452201, "SHAPE_Area": 1420.8964807299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361677.899599999189377, 255706.47859999909997 ], [ 361683.111900001764297, 255753.865600001066923 ], [ 361716.184900000691414, 255757.30519999936223 ], [ 361699.066299997270107, 255700.393199998885393 ], [ 361692.152480140328407, 255702.894677129603224 ], [ 361685.086278720991686, 255704.926201274734922 ], [ 361677.899599999189377, 255706.47859999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105504012900", "MAP": "A9-838-T018", "PARCEL_NAM": "2J-38", "ACRE": "0.42", "LONGITUDE": -64.90337416, "LATITUDE": 18.33075595, "OBJECTID_1": 20408, "PARCEL_NO_": "105504012900", "Tax_Legal_": "2 REM DONOE NO. 2A NEW QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1164000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.30091721, "SHAPE_Area": 1914.9421052299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361751.367299996316433, 255764.157900001853704 ], [ 361718.380900003015995, 255689.809900000691414 ], [ 361699.066299997270107, 255700.393199998885393 ], [ 361716.184900000691414, 255757.30519999936223 ], [ 361721.608800001442432, 255758.231199998408556 ], [ 361721.344300001859665, 255764.184399999678135 ], [ 361744.465899996459484, 255763.674600001424551 ], [ 361750.660099998116493, 255764.157900001853704 ], [ 361751.367299996316433, 255764.157900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801060600", "MAP": "D9-1953-T82", "PARCEL_NAM": "3A-20", "ACRE": ".50", "LONGITUDE": -64.94743968, "LATITUDE": 18.35663023, "OBJECTID_1": 4000, "PARCEL_NO_": "102801060600", "Tax_Legal_": "ST PETER 3A-20 LT. NORTHSIDE", "Name": "MARTIN, JAMES C. & GINGER B", "Address": "PO Box 306827", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71800, "Improved_V": 515400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.810518957, "SHAPE_Area": 1517.9968057399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357057.543200001120567, 258579.972699999809265 ], [ 357054.255900003015995, 258529.30970000103116 ], [ 357032.174199998378754, 258530.061000000685453 ], [ 357023.254399999976158, 258535.898600000888109 ], [ 357034.894199997186661, 258589.400499999523163 ], [ 357057.543200001120567, 258579.972699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302312700", "MAP": "D9-6032-T96", "PARCEL_NAM": "VESTER GADE 50", "ACRE": "1,420 sq ft", "LONGITUDE": -64.93460293, "LATITUDE": 18.34266711, "OBJECTID_1": 10542, "PARCEL_NO_": "105302312700", "Tax_Legal_": "VESTER GADE 50 QUEENS QUARTER", "Name": "ROBLES, CLEVIA", "Address": "2050 Vester Gade 50", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 109600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.94483196612999998, "SHAPE_Area": 0.03712596505 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358411.398199997842312, 257022.084100000560284 ], [ 358411.145300000905991, 257021.937899999320507 ], [ 358411.005699999630451, 257022.150800000876188 ], [ 358411.398199997842312, 257022.084100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404160400", "MAP": "D9-9292-T018", "PARCEL_NAM": "4E REM", "ACRE": "1.10", "LONGITUDE": -64.92039774, "LATITUDE": 18.33623553, "OBJECTID_1": 19571, "PARCEL_NO_": "105404160400", "Tax_Legal_": "4D,4E&5B ESTATE THOMAS 3/4 UNDIVIDED INT.", "Name": "IN-USVI, LLC", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1730300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 338.56312664900003, "SHAPE_Area": 3883.7625848600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359915.929999999701977, 256371.70549999922514 ], [ 359914.935199998319149, 256371.581199999898672 ], [ 359937.636500000953674, 256318.717300001531839 ], [ 359940.811499997973442, 256314.907299999147654 ], [ 359937.795199997723103, 256313.31980000063777 ], [ 359957.638999998569489, 256285.221000000834465 ], [ 359962.083999998867512, 256287.284699998795986 ], [ 359963.036499999463558, 256286.014699999243021 ], [ 359971.608999997377396, 256290.777199998497963 ], [ 359971.767800003290176, 256287.125999998301268 ], [ 359956.229599997401237, 256256.823499999940395 ], [ 359950.976700000464916, 256263.3761 ], [ 359946.385600000619888, 256270.026700001209974 ], [ 359925.296099998056889, 256291.867800001055002 ], [ 359902.333800002932549, 256314.638900000602007 ], [ 359868.70830000191927, 256348.038899999111891 ], [ 359872.266199998557568, 256352.190900001674891 ], [ 359879.5371999964118, 256359.673200000077486 ], [ 359913.867700003087521, 256374.428199999034405 ], [ 359915.929999999701977, 256371.70549999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105404160400", "MAP": "D9-7255-T003", "PARCEL_NAM": "5B REM", "ACRE": "0.14", "LONGITUDE": -64.91983983, "LATITUDE": 18.33680804, "OBJECTID_1": 19571, "PARCEL_NO_": "105404160400", "Tax_Legal_": "4D,4E&5B ESTATE THOMAS 3/4 UNDIVIDED INT.", "Name": "IN-USVI, LLC", "Address": "5304 Yacht Haven Grande", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1730300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.065075632200006, "SHAPE_Area": 543.45415707200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359974.488799996674061, 256369.614799998700619 ], [ 359972.189800001680851, 256378.605099998414516 ], [ 359970.10360000282526, 256381.451699998229742 ], [ 359959.236900001764297, 256395.921599999070168 ], [ 359975.947700001299381, 256401.525699999183416 ], [ 359994.30969999730587, 256380.815000001341105 ], [ 359985.165600001811981, 256374.484999999403954 ], [ 359974.488799996674061, 256369.614799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904010100", "MAP": "D9-9257-T018", "PARCEL_NAM": "SS", "ACRE": "0.16", "LONGITUDE": -64.9817802, "LATITUDE": 18.36169312, "OBJECTID_1": 27, "PARCEL_NO_": "100904010100", "Tax_Legal_": "ROW \"AA\" SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "SORGENFRI WEST OWNERS ASSOCIATION, INC.", "Address": "PO Box 10184", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 94.590622261600004, "SHAPE_Area": 203.555532812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353419.270499996840954, 259068.647100001573563 ], [ 353395.39019999653101, 259100.458799999207258 ], [ 353397.349799998104572, 259107.142599999904633 ], [ 353422.439800001680851, 259071.528299998492002 ], [ 353419.270499996840954, 259068.647100001573563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601026900", "MAP": "D9-9257-T018", "PARCEL_NAM": "S-2", "ACRE": "0.50", "LONGITUDE": -64.98144079, "LATITUDE": 18.36149863, "OBJECTID_1": 2276, "PARCEL_NO_": "102601026900", "Tax_Legal_": "S-2 SORGENFRI (WESTERN HALF) No.1 SOUTHSIDE QUARTER", "Name": "LAKE, APPLEWAITE B. & ANGELA E. LLOYD-CAMPBELL", "Address": "PO Box 308447", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 150000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.905797173, "SHAPE_Area": 1403.09389895 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353422.439800001680851, 259071.528299998492002 ], [ 353448.898199997842312, 259095.671599999070168 ], [ 353467.749799996614456, 259060.614199999719858 ], [ 353467.793799996376038, 259060.409200001507998 ], [ 353463.472900003194809, 259057.906899999827147 ], [ 353441.947700001299381, 259038.438200000673532 ], [ 353419.270499996840954, 259068.647100001573563 ], [ 353422.439800001680851, 259071.528299998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101303014000", "MAP": "B9-168-T67", "PARCEL_NAM": "8-6", "ACRE": "0.58", "LONGITUDE": -64.92550719, "LATITUDE": 18.37014972, "OBJECTID_1": 930, "PARCEL_NO_": "101303014000", "Tax_Legal_": "8-6 PETERBORG NO 12 GREAT NORTHSIDE QTR", "Name": "CALLWOOD, CALVIN", "Address": "9908 Cobblestone Creek Dr", "City": "Boynton Beach", "State": "Florida", "Zip": 33472, "Country": "United States", "Land_Value": 245900, "Improved_V": 255500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.46740013900001, "SHAPE_Area": 2476.6558300199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359382.90429999679327, 260092.006499998271465 ], [ 359342.630400002002716, 260034.16950000077486 ], [ 359342.508400000631809, 260034.224199999123812 ], [ 359316.576899997889996, 260049.210700001567602 ], [ 359311.44030000269413, 260052.701900001615286 ], [ 359354.223600000143051, 260109.486900001764297 ], [ 359356.392599999904633, 260108.220600001513958 ], [ 359366.92679999768734, 260102.185100000351667 ], [ 359382.90429999679327, 260092.006499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101304013000", "MAP": "B9-158-T67", "PARCEL_NAM": "8-3", "ACRE": "0.68", "LONGITUDE": -64.92423749, "LATITUDE": 18.36925826, "OBJECTID_1": 964, "PARCEL_NO_": "101304013000", "Tax_Legal_": "8-3 ESTATE PETERBORG No.12 GREAT NORTHSIDE QTR.", "Name": "PLAYA VISTA PROPERTIES LLC", "Address": "PO Box 6347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 274600, "Improved_V": 2801500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 208.286632244, "SHAPE_Area": 2473.7110883099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359521.105899997055531, 259979.851500000804663 ], [ 359465.791599996387959, 259939.748599998652935 ], [ 359462.624799996614456, 259943.381599999964237 ], [ 359444.202799998223782, 259966.764899998903275 ], [ 359496.780000001192093, 260008.964999999850988 ], [ 359511.396300002932549, 259992.332299999892712 ], [ 359519.547499999403954, 259982.055500000715256 ], [ 359521.105899997055531, 259979.851500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601081300", "MAP": "D9-9168-T017", "PARCEL_NAM": "10-44", "ACRE": "0.31", "LONGITUDE": -64.87889455, "LATITUDE": 18.327999, "OBJECTID_1": 38203, "PARCEL_NO_": "107601081300", "Tax_Legal_": "10-44 REM MARIENDAHL NO.4 RED HOOK QTR", "Name": "DELISCA, CHAVANES & MICHELINE P.", "Address": "PO Box 306048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 34400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.329120383, "SHAPE_Area": 1069.5544860499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364329.194799996912479, 255427.097899999469519 ], [ 364294.550899997353554, 255438.645899999886751 ], [ 364293.85080000013113, 255462.776599999517202 ], [ 364308.355400003492832, 255463.950800001621246 ], [ 364314.813100002706051, 255463.159200001507998 ], [ 364322.089699998497963, 255460.896800000220537 ], [ 364326.121299996972084, 255460.929800000041723 ], [ 364330.138400003314018, 255462.651399999856949 ], [ 364330.296700000762939, 255444.076499998569489 ], [ 364329.194799996912479, 255427.097899999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-9168-T017", "PARCEL_NAM": "10-45", "ACRE": "0.35", "LONGITUDE": -64.87896462, "LATITUDE": 18.32776009, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.56244082000001, "SHAPE_Area": 921.71072798800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364284.207800000905991, 255407.616500001400709 ], [ 364294.550899997353554, 255438.645899999886751 ], [ 364329.194799996912479, 255427.097899999469519 ], [ 364328.871100001037121, 255422.111099999397993 ], [ 364327.290799997746944, 255418.29839999973774 ], [ 364324.0996999964118, 255414.261500000953674 ], [ 364317.679799996316433, 255410.620400000363588 ], [ 364305.601300001144409, 255408.621700000017881 ], [ 364291.096600003540516, 255407.447500001639128 ], [ 364284.207800000905991, 255407.616500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-5011-T90", "PARCEL_NAM": "10 REM (WESTERN PORTION)", "ACRE": "9.64", "LONGITUDE": -64.87969601, "LATITUDE": 18.32717856, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 752.03193982799996, "SHAPE_Area": 22481.3222943 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364230.82209999859333, 255243.81980000063777 ], [ 364107.451300002634525, 255387.649000000208616 ], [ 364111.382500000298023, 255394.999800000339746 ], [ 364116.175399996340275, 255400.316399998962879 ], [ 364124.191799998283386, 255405.870400000363588 ], [ 364159.532799996435642, 255422.202799998223782 ], [ 364169.993299998342991, 255424.82149999961257 ], [ 364177.251900002360344, 255424.669799998402596 ], [ 364184.524899996817112, 255422.829500000923872 ], [ 364196.680799998342991, 255415.751800000667572 ], [ 364212.873499996960163, 255408.073899999260902 ], [ 364233.891599997878075, 255401.913100000470877 ], [ 364251.652099996805191, 255399.525299999862909 ], [ 364285.529799997806549, 255398.32490000128746 ], [ 364300.039800003170967, 255398.865899998694658 ], [ 364319.369699999690056, 255401.557199999690056 ], [ 364326.599600002169609, 255404.782800000160933 ], [ 364331.405100002884865, 255408.621800001710653 ], [ 364336.183600001037121, 255415.627000000327826 ], [ 364338.530599996447563, 255424.089999999850988 ], [ 364339.103200003504753, 255451.536800000816584 ], [ 364372.32379999756813, 255432.810300000011921 ], [ 364355.669200003147125, 255407.622499998658895 ], [ 364230.82209999859333, 255243.81980000063777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-5011-T90", "PARCEL_NAM": "10-A", "ACRE": "7.82", "LONGITUDE": -64.87979275, "LATITUDE": 18.32875801, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1091.01490597, "SHAPE_Area": 28435.352596000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364241.533600002527237, 255640.722500000149012 ], [ 364254.711499996483326, 255608.321899998933077 ], [ 364279.125699996948242, 255582.135000001639128 ], [ 364297.026399999856949, 255563.283100001513958 ], [ 364289.27080000191927, 255527.122600000351667 ], [ 364291.964800000190735, 255494.84739999845624 ], [ 364293.85080000013113, 255462.776599999517202 ], [ 364294.550899997353554, 255438.645899999886751 ], [ 364284.207800000905991, 255407.616500001400709 ], [ 364265.287500001490116, 255408.080699998885393 ], [ 364241.888199999928474, 255409.789000000804663 ], [ 364224.921499997377396, 255413.660900000482798 ], [ 364209.55120000243187, 255419.445700000971556 ], [ 364188.486400000751019, 255431.0945999994874 ], [ 364175.560199998319149, 255433.944099999964237 ], [ 364167.49889999628067, 255433.666999999433756 ], [ 364158.645599998533726, 255431.694699998944998 ], [ 364116.882799997925758, 255411.932300001382828 ], [ 364220.192199997603893, 255495.526500001549721 ], [ 364106.967500001192093, 255629.277499999850988 ], [ 364112.631499998271465, 255627.001800000667572 ], [ 364138.356200002133846, 255636.28940000012517 ], [ 364164.883599996566772, 255646.005699999630451 ], [ 364193.822700001299381, 255656.586199998855591 ], [ 364214.723899997770786, 255664.145500000566244 ], [ 364236.427799999713898, 255672.133600000292063 ], [ 364238.839599996805191, 255672.997699998319149 ], [ 364241.533600002527237, 255640.722500000149012 ] ] ], [ [ [ 364095.367700003087521, 255381.780900001525879 ], [ 364092.33669999986887, 255358.958000000566244 ], [ 364091.749700002372265, 255333.199799999594688 ], [ 364089.343400001525879, 255331.702399998903275 ], [ 364086.109099999070168, 255332.7314000017941 ], [ 364080.335500001907349, 255347.88289999961853 ], [ 364068.933799996972084, 255361.088500000536442 ], [ 364062.463500000536442, 255363.357599999755621 ], [ 364056.819399997591972, 255363.3114 ], [ 364101.665399998426437, 255399.775400001555681 ], [ 364097.714699998497963, 255390.243900001049042 ], [ 364095.367700003087521, 255381.780900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402023000", "MAP": "D9-9378-T019", "PARCEL_NAM": "22A-1-1", "ACRE": "0.31", "LONGITUDE": -65.00485293, "LATITUDE": 18.35838803, "OBJECTID_1": 1488, "PARCEL_NO_": "102402023000", "Tax_Legal_": "22A-1-1 HOPE NO.5 WEST END QTR", "Name": "BOLAND, BRYAN D & CYNTHIA R. PARROTT", "Address": "PO Box 1633", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.88824229900001, "SHAPE_Area": 1243.98984825 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350949.529799997806549, 258682.850699998438358 ], [ 350949.55969999730587, 258682.897599998861551 ], [ 350959.394400000572205, 258718.746899999678135 ], [ 351002.146600000560284, 258719.666000001132488 ], [ 351002.978100001811981, 258716.717500001192093 ], [ 350982.195600003004074, 258695.22690000012517 ], [ 350972.636799998581409, 258681.427600000053644 ], [ 350949.529799997806549, 258682.850699998438358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00524052, "LATITUDE": 18.35742793, "OBJECTID_1": 1486, "PARCEL_NO_": "102402022800", "Tax_Legal_": "HOPE 22B WEST END QTR.", "Name": "REESE, JACQUELINE & P. COURTNEY & MICHELLE REESE-CARSON", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 175300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.13826112199999, "SHAPE_Area": 1280.5053166099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350966.974899999797344, 258575.341400001198053 ], [ 350966.785400003194809, 258575.203600000590086 ], [ 350948.626199997961521, 258578.393699999898672 ], [ 350947.206200003623962, 258578.643199998885393 ], [ 350907.51860000193119, 258591.607799999415874 ], [ 350908.670000001788139, 258601.616200000047684 ], [ 350910.958200000226498, 258621.505800001323223 ], [ 350952.497900001704693, 258598.486999999731779 ], [ 350953.131800003349781, 258598.253400001674891 ], [ 350954.01349999755621, 258595.782299999147654 ], [ 350956.464800000190735, 258592.002700001001358 ], [ 350958.116999998688698, 258587.372099999338388 ], [ 350962.202500000596046, 258581.072799999266863 ], [ 350966.974899999797344, 258575.341400001198053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022800", "MAP": "D9-8633-T011", "PARCEL_NAM": "22B", "ACRE": "0.21", "LONGITUDE": -65.00558474, "LATITUDE": 18.35785047, "OBJECTID_1": 1486, "PARCEL_NO_": "102402022800", "Tax_Legal_": "HOPE 22B WEST END QTR.", "Name": "REESE, JACQUELINE & P. COURTNEY & MICHELLE REESE-CARSON", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 175300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.20486280099999, "SHAPE_Area": 994.08111841300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350953.046599999070168, 258640.82039999961853 ], [ 350953.027000002563, 258640.82039999961853 ], [ 350894.553999997675419, 258640.82039999961853 ], [ 350885.028999999165535, 258640.82039999961853 ], [ 350883.260290034755599, 258640.626671924925176 ], [ 350881.541033927234821, 258640.168388233403675 ], [ 350879.910568449471612, 258639.456034507369623 ], [ 350878.406198834767565, 258638.50590948012541 ], [ 350877.062345228798222, 258637.339752118947217 ], [ 350875.909755153115839, 258635.984244235325605 ], [ 350874.974799998104572, 258634.470400001853704 ], [ 350873.547434418404009, 258632.815191764238989 ], [ 350871.87336478906218, 258631.409995093330508 ], [ 350869.99582409998402, 258630.291099312249571 ], [ 350867.963299998664297, 258629.487399999372428 ], [ 350865.828282592236064, 258629.01965275753173 ], [ 350863.645908886159305, 258628.899937198904809 ], [ 350861.472538866335526, 258629.131344987952616 ], [ 350859.36429999768734, 258629.707899998873472 ], [ 350857.944367518473882, 258630.658555294096004 ], [ 350856.692101292428561, 258631.821217340911971 ], [ 350855.638833703706041, 258633.16679570073029 ], [ 350854.810918081842829, 258634.6616232690576 ], [ 350854.229069327237085, 258636.268298644718016 ], [ 350853.907845613197424, 258637.946621933428105 ], [ 350853.855284132238012, 258639.654600571055198 ], [ 350854.072700001299381, 258641.349500000476837 ], [ 350854.754299998283386, 258648.165399998426437 ], [ 350864.05969999730587, 258648.241599999368191 ], [ 350955.174800001084805, 258648.776299998164177 ], [ 350954.384700000286102, 258646.870000001043081 ], [ 350953.046599999070168, 258640.82039999961853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022800", "MAP": "D9-8633-T011", "PARCEL_NAM": "22B-5", "ACRE": "0.73", "LONGITUDE": -65.00624062, "LATITUDE": 18.35771181, "OBJECTID_1": 1486, "PARCEL_NO_": "102402022800", "Tax_Legal_": "HOPE 22B WEST END QTR.", "Name": "REESE, JACQUELINE & P. COURTNEY & MICHELLE REESE-CARSON", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 175300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.09434622000001, "SHAPE_Area": 2318.4682113200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350859.36429999768734, 258629.707899998873472 ], [ 350846.135200001299381, 258617.272399999201298 ], [ 350834.252400003373623, 258590.338100001215935 ], [ 350808.540299996733665, 258609.988699998706579 ], [ 350791.491599999368191, 258647.647700000554323 ], [ 350854.754299998283386, 258648.165399998426437 ], [ 350854.072700001299381, 258641.349500000476837 ], [ 350853.85528413153952, 258639.65460057099699 ], [ 350853.907845611975063, 258637.94662193316617 ], [ 350854.229069325781893, 258636.26829864422325 ], [ 350854.810918080329429, 258634.661623268359108 ], [ 350855.638833702367265, 258633.166795699944487 ], [ 350856.69210129143903, 258631.821217340184376 ], [ 350857.944367517891806, 258630.658555293601239 ], [ 350859.36429999768734, 258629.707899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402022800", "MAP": "D9-8633-T011", "PARCEL_NAM": "22B-4", "ACRE": "0.73", "LONGITUDE": -65.00588856, "LATITUDE": 18.35750238, "OBJECTID_1": 1486, "PARCEL_NO_": "102402022800", "Tax_Legal_": "HOPE 22B WEST END QTR.", "Name": "REESE, JACQUELINE & P. COURTNEY & MICHELLE REESE-CARSON", "Address": "PO Box 8411", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 175300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.46401274799999, "SHAPE_Area": 2249.8696232299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350871.205200001597404, 258565.372299998998642 ], [ 350865.166599996387959, 258568.375799998641014 ], [ 350839.225100003182888, 258586.537599999457598 ], [ 350834.252400003373623, 258590.338100001215935 ], [ 350846.135200001299381, 258617.272399999201298 ], [ 350859.36429999768734, 258629.707899998873472 ], [ 350861.472538866335526, 258629.13134498836007 ], [ 350863.645908886101097, 258628.899937199603301 ], [ 350865.828282592061441, 258629.019652758404845 ], [ 350867.963299998373259, 258629.487400000274647 ], [ 350869.995824099634774, 258630.291099313064478 ], [ 350871.873364788712934, 258631.409995093941689 ], [ 350873.547434418171179, 258632.815191764559131 ], [ 350874.974799998104572, 258634.470400001853704 ], [ 350875.909755154163577, 258635.984244234365178 ], [ 350877.062345230369829, 258637.339752117200987 ], [ 350878.406198836339172, 258638.505909477826208 ], [ 350879.910568450868595, 258639.456034504924901 ], [ 350881.541033928166144, 258640.168388231249992 ], [ 350883.260290035163052, 258640.6266719235864 ], [ 350885.028999999165535, 258640.82039999961853 ], [ 350891.202600002288818, 258640.82039999961853 ], [ 350891.114399999380112, 258640.555799998342991 ], [ 350871.205200001597404, 258565.372299998998642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704010600", "MAP": "D9-448-T64", "PARCEL_NAM": "2V-13C", "ACRE": "0.38", "LONGITUDE": -64.85689451, "LATITUDE": 18.32155806, "OBJECTID_1": 39772, "PARCEL_NO_": "107704010600", "Tax_Legal_": "NAZARETH ESTATE 2V-13A RED HOOK QTR", "Name": "RHYMER, ADA B", "Address": "BOX 4927", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.39210032099999, "SHAPE_Area": 1224.34749994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366640.703199997544289, 254736.994100000709295 ], [ 366628.98030000180006, 254733.919300001114607 ], [ 366622.726000003516674, 254761.559099998325109 ], [ 366622.7550999969244, 254761.643199998885393 ], [ 366622.056100003421307, 254763.568999998271465 ], [ 366636.348499998450279, 254768.48200000077486 ], [ 366643.159699998795986, 254769.821899998933077 ], [ 366648.295999996364117, 254770.603500001132488 ], [ 366654.325599998235703, 254771.831799998879433 ], [ 366662.365099996328354, 254772.166700001806021 ], [ 366668.506300002336502, 254770.491900000721216 ], [ 366668.05969999730587, 254765.690499998629093 ], [ 366665.938199996948242, 254761.670800000429153 ], [ 366656.558799996972084, 254738.892299998551607 ], [ 366651.534100003540516, 254738.557300001382828 ], [ 366646.621100001037121, 254737.88740000128746 ], [ 366640.703199997544289, 254736.994100000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704011100", "MAP": "D9-448-T64", "PARCEL_NAM": "2V-13 REM", "ACRE": "0.29", "LONGITUDE": -64.8568617, "LATITUDE": 18.32188327, "OBJECTID_1": 39775, "PARCEL_NO_": "107704011100", "Tax_Legal_": "NAZARETH ESTATE 2V-13REM. RED HOOK QUARTER", "Name": "VALENCIA COTES, YONNY", "Address": "6234 ESTATE FRYDENJOJ", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36400, "Improved_V": 244500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.40376705, "SHAPE_Area": 1386.0903631399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366664.492499999701977, 254791.979800000786781 ], [ 366669.920699998736382, 254776.116599999368191 ], [ 366668.506300002336502, 254770.491900000721216 ], [ 366662.365099996328354, 254772.166700001806021 ], [ 366654.325599998235703, 254771.831799998879433 ], [ 366648.295999996364117, 254770.603500001132488 ], [ 366636.348499998450279, 254768.48200000077486 ], [ 366635.411899998784065, 254772.223700001835823 ], [ 366625.409999996423721, 254805.299100000411272 ], [ 366656.379000000655651, 254815.690400000661612 ], [ 366664.492499999701977, 254791.979800000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704010600", "MAP": "D9-448-T64", "PARCEL_NAM": "2V-13A", "ACRE": "0.30", "LONGITUDE": -64.85721041, "LATITUDE": 18.32147346, "OBJECTID_1": 39772, "PARCEL_NO_": "107704010600", "Tax_Legal_": "NAZARETH ESTATE 2V-13A RED HOOK QTR", "Name": "RHYMER, ADA B", "Address": "BOX 4927", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 43300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.999771939, "SHAPE_Area": 915.91691425399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366628.98030000180006, 254733.919300001114607 ], [ 366627.080700002610683, 254733.421000000089407 ], [ 366613.570000000298023, 254729.424899999052286 ], [ 366601.509499996900558, 254725.315499998629093 ], [ 366594.009900003671646, 254753.7516999989748 ], [ 366593.13629999756813, 254755.976199999451637 ], [ 366603.744000002741814, 254759.437600001692772 ], [ 366622.056100003421307, 254763.568999998271465 ], [ 366622.7550999969244, 254761.643199998885393 ], [ 366622.726000003516674, 254761.559099998325109 ], [ 366628.98030000180006, 254733.919300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107704014200", "MAP": "D9-6174-T97", "PARCEL_NAM": "2V-14A-2", "ACRE": "0.25", "LONGITUDE": -64.85650658, "LATITUDE": 18.32182962, "OBJECTID_1": 39798, "PARCEL_NO_": "107704014200", "Tax_Legal_": "2V-14A-2 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "VALENCIA COTES, YONNY", "Address": "6234 Estate Frydehhoj", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 28800, "Improved_V": 104000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.11844723199999, "SHAPE_Area": 623.33073499499994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366666.810599997639656, 254785.205400001257658 ], [ 366700.656499996781349, 254801.741500001400709 ], [ 366704.247500002384186, 254790.441799998283386 ], [ 366705.154700003564358, 254787.042300000786781 ], [ 366674.635099999606609, 254770.356800001114607 ], [ 366668.05969999730587, 254765.690499998629093 ], [ 366668.506300002336502, 254770.491900000721216 ], [ 366669.920699998736382, 254776.116599999368191 ], [ 366666.810599997639656, 254785.205400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105603021700", "MAP": "D9-5590-T93", "PARCEL_NAM": "ROW 3 REM", "ACRE": "0.07", "LONGITUDE": -64.89429762, "LATITUDE": 18.33474173, "OBJECTID_1": 21561, "PARCEL_NO_": "105603021700", "Tax_Legal_": "CHARLOTTE AMALIE 3B-1,3B-3& 3REM. No.3 NEW QUARTER", "Name": "MILES, DONNA LEE", "Address": "PO Box 502174", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 24100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.42922803499999, "SHAPE_Area": 506.19546686799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362707.150499999523163, 256192.628400001674891 ], [ 362716.844200000166893, 256190.596799999475479 ], [ 362713.633400000631809, 256188.881799999624491 ], [ 362711.248599998652935, 256184.851500000804663 ], [ 362708.046700000762939, 256182.0810999982059 ], [ 362704.027699999511242, 256180.570500001311302 ], [ 362684.699600003659725, 256177.668099999427795 ], [ 362665.369699999690056, 256174.976799998432398 ], [ 362657.346100002527237, 256170.267099998891354 ], [ 362647.66499999910593, 256170.821100000292063 ], [ 362644.430799998342991, 256171.850099999457598 ], [ 362645.983999997377396, 256178.828899998217821 ], [ 362696.727799996733665, 256185.576999999582767 ], [ 362702.354000002145767, 256187.734000001102686 ], [ 362704.798000000417233, 256190.227899998426437 ], [ 362707.150499999523163, 256192.628400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105502041700", "MAP": "D9-9321-T019", "PARCEL_NAM": "ROW 1-13-R2A", "ACRE": "482 sq ft", "LONGITUDE": -64.90341644, "LATITUDE": 18.3401415, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 16.707105576899998, "SHAPE_Area": 13.130125084099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361711.684399999678135, 256772.253400001674891 ], [ 361710.583999998867512, 256766.294199999421835 ], [ 361707.009199999272823, 256770.799199998378754 ], [ 361711.684399999678135, 256772.253400001674891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107503012100", "MAP": "D9-5648-T94", "PARCEL_NAM": "13-1", "ACRE": null, "LONGITUDE": -64.89663589, "LATITUDE": 18.31604998, "OBJECTID_1": 37537, "PARCEL_NO_": "107503012100", "Tax_Legal_": "REMAINDER 13 & 13-A-1 BOLONGO FRENCHMAN BAY QTR", "Name": "HOSFORD, VALERIE T. & AGNES", "Address": "PO Box 10535", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 34900, "Improved_V": 81200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.660456560900002, "SHAPE_Area": 37.988671838000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362442.213100001215935, 254109.557900000363588 ], [ 362460.171099998056889, 254112.678399998694658 ], [ 362445.645199999213219, 254106.312100000679493 ], [ 362442.82039999961853, 254106.949999999254942 ], [ 362442.213100001215935, 254109.557900000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601054300", "MAP": "D9-9313-T018", "PARCEL_NAM": "3G-23A", "ACRE": "1916 sq ft", "LONGITUDE": -64.88202911, "LATITUDE": 18.3244556, "OBJECTID_1": 38117, "PARCEL_NO_": "107601054300", "Tax_Legal_": "3G-23 ESTATE BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "BRADE, ROMUALD & MARIA", "Address": "574 Alabama Ave", "City": "Brooklyn", "State": "New York", "Zip": 11207, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 63.846721932299999, "SHAPE_Area": 183.24338567500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363991.093599997460842, 255055.820099998265505 ], [ 363983.748800002038479, 255041.926899999380112 ], [ 363978.361000001430511, 255042.5962999984622 ], [ 363975.176399998366833, 255042.991999998688698 ], [ 363981.32379999756813, 255054.025800000876188 ], [ 363982.285899996757507, 255055.752700001001358 ], [ 363986.661499999463558, 255063.6064000017941 ], [ 363994.728399999439716, 255062.695599999278784 ], [ 363991.093599997460842, 255055.820099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601054300", "MAP": "107601054300", "PARCEL_NAM": "3G-31", "ACRE": "2046 sq ft", "LONGITUDE": -64.88172877, "LATITUDE": 18.32427459, "OBJECTID_1": 38117, "PARCEL_NO_": "107601054300", "Tax_Legal_": "3G-23 ESTATE BOVONI NO.1&2 FRENCHMAN'S BAY QTR", "Name": "BRADE, ROMUALD & MARIA", "Address": "574 Alabama Ave", "City": "Brooklyn", "State": "New York", "Zip": 11207, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.208920341099997, "SHAPE_Area": 179.057330132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364025.782799996435642, 255046.063999999314547 ], [ 364025.193199999630451, 255036.777800001204014 ], [ 364024.563799999654293, 255031.188000001013279 ], [ 364024.2837999984622, 255026.925999999046326 ], [ 364009.272900000214577, 255026.818399999290705 ], [ 364008.669399999082088, 255026.813999999314547 ], [ 364008.669399999082088, 255026.8614999987185 ], [ 364008.960400000214577, 255028.475400000810623 ], [ 364009.357299998402596, 255030.010000001639128 ], [ 364009.828100003302097, 255031.830400001257658 ], [ 364010.839000001549721, 255033.608300000429153 ], [ 364011.553999997675419, 255034.883799999952316 ], [ 364003.454700000584126, 255039.47859999909997 ], [ 364023.343400001525879, 255037.007599998265505 ], [ 364025.782799996435642, 255046.063999999314547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-9313-T018", "PARCEL_NAM": "3G-23B", "ACRE": "152 sq ft", "LONGITUDE": -64.8816092, "LATITUDE": 18.324462, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 28.718779808099999, "SHAPE_Area": 23.228850362 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364025.890500001609325, 255046.464000001549721 ], [ 364028.107699997723103, 255054.69539999961853 ], [ 364030.159999996423721, 255057.915199998766184 ], [ 364033.226199999451637, 255057.542399998754263 ], [ 364025.890500001609325, 255046.464000001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107601050400", "MAP": "A9-835-T018", "PARCEL_NAM": "ROW 3G-R4", "ACRE": null, "LONGITUDE": -64.88122954000001, "LATITUDE": 18.32511972, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.270289158, "SHAPE_Area": 364.740301875 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364064.989500001072884, 255095.16499999910593 ], [ 364058.116499997675419, 255095.842599999159575 ], [ 364058.176399998366833, 255096.022100001573563 ], [ 364063.156300000846386, 255110.953099999576807 ], [ 364063.672799997031689, 255123.553700000047684 ], [ 364064.985200002789497, 255140.291000001132488 ], [ 364068.251199997961521, 255147.133099999278784 ], [ 364073.196599997580051, 255151.924400001764297 ], [ 364080.444600000977516, 255154.670299999415874 ], [ 364086.954099997878075, 255156.978799998760223 ], [ 364090.991800002753735, 255154.42509999871254 ], [ 364077.581799998879433, 255149.277100000530481 ], [ 364071.807199999690056, 255144.272300001233816 ], [ 364068.963600002229214, 255136.607799999415874 ], [ 364068.630400002002716, 255126.899700000882149 ], [ 364068.9746999964118, 255110.795899998396635 ], [ 364064.989500001072884, 255095.16499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601071900", "MAP": "D9-8432-T010", "PARCEL_NAM": "CONS 3G-21", "ACRE": "0.73", "LONGITUDE": -64.88230058000001, "LATITUDE": 18.32398017, "OBJECTID_1": 38190, "PARCEL_NO_": "107601071900", "Tax_Legal_": "BOVONI 3G-21 EASTERN PART FRENCHMAN'S BAY QTR", "Name": "LIMA, JOSE R", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57900, "Improved_V": 62000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.13072378800001, "SHAPE_Area": 3122.0534014 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364010.502999998629093, 255003.130499999970198 ], [ 363909.906499996781349, 254966.938000001013279 ], [ 363909.725000001490116, 254967.309399999678135 ], [ 363898.512199997901917, 254986.936900001019239 ], [ 364003.411700002849102, 255039.484000001102686 ], [ 364003.454700000584126, 255039.47859999909997 ], [ 364002.671300001442432, 255037.632199998944998 ], [ 364001.612999998033047, 255035.727200001478195 ], [ 364000.554700002074242, 255033.822200000286102 ], [ 363999.919699996709824, 255029.800500001758337 ], [ 363999.284699998795986, 255026.413800001144409 ], [ 363999.284699998795986, 255022.603799998760223 ], [ 363999.919699996709824, 255019.217199999839067 ], [ 364000.76630000025034, 255016.042199999094009 ], [ 364002.248000003397465, 255012.86710000038147 ], [ 364003.51799999922514, 255010.115499999374151 ], [ 364006.481299996376038, 255007.152100000530481 ], [ 364010.502999998629093, 255003.130499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-9313-T018", "PARCEL_NAM": "3G-30", "ACRE": "1.10", "LONGITUDE": -64.88126563, "LATITUDE": 18.32398851, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 534.42576144600002, "SHAPE_Area": 4318.7167087999997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364046.476899996399879, 255028.199200000613928 ], [ 364118.023000001907349, 255013.800900001078844 ], [ 364117.525100000202656, 254998.190799999982119 ], [ 364118.20719999819994, 254991.782000001519918 ], [ 364096.642399996519089, 254994.309799998998642 ], [ 364079.723200000822544, 254996.293000001460314 ], [ 364063.157499998807907, 254980.781399998813868 ], [ 364085.897699996829033, 254960.450699999928474 ], [ 364091.272399999201298, 254957.589400000870228 ], [ 364095.843199998140335, 254955.155999999493361 ], [ 364126.332500003278255, 254938.924300000071526 ], [ 364127.006700001657009, 254935.251800000667572 ], [ 364126.773199997842312, 254931.467399999499321 ], [ 364126.624399997293949, 254929.057100001722574 ], [ 364091.01799999922514, 254948.252300001680851 ], [ 364060.612400002777576, 254964.800500001758337 ], [ 364060.36370000243187, 254967.53660000115633 ], [ 364059.040700003504753, 254969.388700000941753 ], [ 364057.982400000095367, 254971.769900001585484 ], [ 364056.924099996685982, 254974.944899998605251 ], [ 364053.219899997115135, 254979.971999999135733 ], [ 364050.838600002229214, 254983.41160000115633 ], [ 364015.913599997758865, 255011.457499999552965 ], [ 364013.532300002872944, 255013.838700000196695 ], [ 364011.680200003087521, 255015.955400001257658 ], [ 364010.357299998402596, 255017.807500001043081 ], [ 364009.29900000244379, 255019.924199998378754 ], [ 364008.669399999082088, 255023.210200000554323 ], [ 364008.642899997532368, 255024.295000001788139 ], [ 364008.669399999082088, 255025.670800000429153 ], [ 364008.669399999082088, 255026.813999999314547 ], [ 364009.272900000214577, 255026.818399999290705 ], [ 364024.2837999984622, 255026.925999999046326 ], [ 364039.743500001728535, 255024.955600000917912 ], [ 364040.148500002920628, 255029.106699999421835 ], [ 364040.349799998104572, 255031.169900000095367 ], [ 364037.924699999392033, 255031.927700001746416 ], [ 364035.499700002372265, 255034.049600001424551 ], [ 364034.741800002753735, 255037.535599999129772 ], [ 364035.651199996471405, 255044.8108000010252 ], [ 364038.076300002634525, 255051.328099999576807 ], [ 364038.850000001490116, 255052.479699999094009 ], [ 364051.111000001430511, 255070.72859999909997 ], [ 364054.063299998641014, 255072.318300001323223 ], [ 364048.972199998795986, 255050.482099998742342 ], [ 364046.453699998557568, 255028.202500000596046 ], [ 364046.476899996399879, 255028.199200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601071900", "MAP": "D9-8432-T010", "PARCEL_NAM": "CONS 3G-21", "ACRE": ".734", "LONGITUDE": -64.88167679, "LATITUDE": 18.3239221, "OBJECTID_1": 38190, "PARCEL_NO_": "107601071900", "Tax_Legal_": "BOVONI 3G-21 EASTERN PART FRENCHMAN'S BAY QTR", "Name": "LIMA, JOSE R", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57900, "Improved_V": 62000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 4.6025403253399997, "SHAPE_Area": 0.99764186451000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364023.205099999904633, 254993.095400001853704 ], [ 364021.887100003659725, 254994.160799998790026 ], [ 364023.192199997603893, 254994.619699999690056 ], [ 364023.205099999904633, 254993.095400001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107601050400", "MAP": "A9-835-T018", "PARCEL_NAM": "ROW 3G-R1", "ACRE": "0.50", "LONGITUDE": -64.88150612, "LATITUDE": 18.32349315, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 462.310656634, "SHAPE_Area": 2061.7244563999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364011.553999997675419, 255034.883799999952316 ], [ 364010.839000001549721, 255033.608300000429153 ], [ 364009.828100003302097, 255031.830400001257658 ], [ 364009.357299998402596, 255030.010000001639128 ], [ 364008.960400000214577, 255028.475400000810623 ], [ 364008.669399999082088, 255026.8614999987185 ], [ 364008.669399999082088, 255026.813999999314547 ], [ 364008.669399999082088, 255025.670800000429153 ], [ 364008.642899997532368, 255024.295000001788139 ], [ 364008.669399999082088, 255023.210200000554323 ], [ 364009.29900000244379, 255019.924199998378754 ], [ 364010.357299998402596, 255017.807500001043081 ], [ 364011.680200003087521, 255015.955400001257658 ], [ 364013.532300002872944, 255013.838700000196695 ], [ 364015.913599997758865, 255011.457499999552965 ], [ 364050.838600002229214, 254983.41160000115633 ], [ 364053.219899997115135, 254979.971999999135733 ], [ 364056.924099996685982, 254974.944899998605251 ], [ 364057.982400000095367, 254971.769900001585484 ], [ 364059.040700003504753, 254969.388700000941753 ], [ 364060.36370000243187, 254967.53660000115633 ], [ 364060.628300003707409, 254964.6261 ], [ 364061.421999998390675, 254955.365699999034405 ], [ 364060.892800003290176, 254940.284400001168251 ], [ 364058.776199996471405, 254933.140700001269579 ], [ 364057.43469999730587, 254928.222800001502037 ], [ 364056.681800000369549, 254924.457899998873472 ], [ 364055.778200000524521, 254920.391800001263618 ], [ 364055.175800003111362, 254915.421999998390675 ], [ 364055.025200001895428, 254911.355900000780821 ], [ 364054.723999999463558, 254905.030799999833107 ], [ 364054.272200003266335, 254899.458700001239777 ], [ 364055.025200001895428, 254890.723999999463558 ], [ 364055.778200000524521, 254880.332800000905991 ], [ 364056.380599997937679, 254874.459499999880791 ], [ 364057.284199997782707, 254866.026000000536442 ], [ 364059.543099999427795, 254855.333599999547005 ], [ 364064.060999996960163, 254842.231600001454353 ], [ 364064.568099997937679, 254840.659800000488758 ], [ 364062.495200000703335, 254839.86769999936223 ], [ 364058.611400000751019, 254838.630199998617172 ], [ 364057.006700001657009, 254842.892000000923872 ], [ 364050.507299996912479, 254860.152699999511242 ], [ 364047.4087999984622, 254870.661899998784065 ], [ 364045.562600001692772, 254886.867400001734495 ], [ 364045.086300000548363, 254894.169900000095367 ], [ 364045.082099996507168, 254894.264299999922514 ], [ 364044.451300002634525, 254908.457400001585484 ], [ 364045.7212999984622, 254918.141199998557568 ], [ 364050.410499997437, 254941.839899998158216 ], [ 364051.436300002038479, 254949.891199998557568 ], [ 364051.753799997270107, 254963.067499998956919 ], [ 364050.483800001442432, 254967.829999998211861 ], [ 364046.197599999606609, 254975.132500000298023 ], [ 364043.657600000500679, 254976.561299998313189 ], [ 364023.205099999904633, 254993.095400001853704 ], [ 364023.192199997603893, 254994.619699999690056 ], [ 364021.887100003659725, 254994.160799998790026 ], [ 364018.123000003397465, 254997.20380000025034 ], [ 364010.502999998629093, 255003.130499999970198 ], [ 364006.481299996376038, 255007.152100000530481 ], [ 364003.51799999922514, 255010.115499999374151 ], [ 364002.248000003397465, 255012.86710000038147 ], [ 364000.76630000025034, 255016.042199999094009 ], [ 363999.919699996709824, 255019.217199999839067 ], [ 363999.284699998795986, 255022.603799998760223 ], [ 363999.284699998795986, 255026.413800001144409 ], [ 363999.919699996709824, 255029.800500001758337 ], [ 364000.554700002074242, 255033.822200000286102 ], [ 364001.612999998033047, 255035.727200001478195 ], [ 364002.671300001442432, 255037.632199998944998 ], [ 364003.454700000584126, 255039.47859999909997 ], [ 364011.553999997675419, 255034.883799999952316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-9313-T018", "PARCEL_NAM": "3G-28", "ACRE": "0.26", "LONGITUDE": -64.88125567, "LATITUDE": 18.32282254, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.964331872, "SHAPE_Area": 1187.21533843 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364054.532600000500679, 254896.438499998301268 ], [ 364070.186700001358986, 254906.71000000089407 ], [ 364080.697400003671646, 254901.569899998605251 ], [ 364066.462999999523163, 254875.630300000309944 ], [ 364088.144799999892712, 254859.342099998146296 ], [ 364080.789800003170967, 254846.858199998736382 ], [ 364073.105099998414516, 254843.921900000423193 ], [ 364064.568099997937679, 254840.659800000488758 ], [ 364064.060999996960163, 254842.231600001454353 ], [ 364059.543099999427795, 254855.333599999547005 ], [ 364057.284199997782707, 254866.026000000536442 ], [ 364056.380599997937679, 254874.459499999880791 ], [ 364055.778200000524521, 254880.332800000905991 ], [ 364055.025200001895428, 254890.723999999463558 ], [ 364054.532600000500679, 254896.438499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601050400", "MAP": "D9-9313-T018", "PARCEL_NAM": "3G-29", "ACRE": "0.31", "LONGITUDE": -64.88124482000001, "LATITUDE": 18.32336779, "OBJECTID_1": 38062, "PARCEL_NO_": "107601050400", "Tax_Legal_": "3G BOVONI NO. 1 & 2 FRENCHMAN'S QTR", "Name": "LIMA SR., MARIANO", "Address": "PO Box 7472", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 1503700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.84183675400001, "SHAPE_Area": 1193.68509208 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364091.01799999922514, 254948.252300001680851 ], [ 364090.068599998950958, 254946.557799998670816 ], [ 364079.729699999094009, 254928.104800000786781 ], [ 364077.899099998176098, 254928.995299998670816 ], [ 364074.219899997115135, 254931.071199998259544 ], [ 364075.021600000560284, 254927.438499998301268 ], [ 364070.186700001358986, 254906.71000000089407 ], [ 364054.532600000500679, 254896.438499998301268 ], [ 364054.272200003266335, 254899.458700001239777 ], [ 364054.723999999463558, 254905.030799999833107 ], [ 364055.025200001895428, 254911.355900000780821 ], [ 364055.175800003111362, 254915.421999998390675 ], [ 364055.778200000524521, 254920.391800001263618 ], [ 364056.681800000369549, 254924.457899998873472 ], [ 364057.43469999730587, 254928.222800001502037 ], [ 364058.776199996471405, 254933.140700001269579 ], [ 364060.892800003290176, 254940.284400001168251 ], [ 364061.421999998390675, 254955.365699999034405 ], [ 364060.628300003707409, 254964.6261 ], [ 364060.612400002777576, 254964.800500001758337 ], [ 364091.01799999922514, 254948.252300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105104010100", "MAP": "D9-5772-94", "PARCEL_NAM": "70-V", "ACRE": "0.29", "LONGITUDE": -64.96851457, "LATITUDE": 18.33597529, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.52238375600001, "SHAPE_Area": 1358.3024777799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354841.820600003004074, 256261.535999998450279 ], [ 354841.533600002527237, 256261.453200001269579 ], [ 354871.5287000015378, 256267.285500001162291 ], [ 354872.223099999129772, 256256.770399998873472 ], [ 354863.079199999570847, 256254.029100000858307 ], [ 354831.740900002419949, 256241.10700000077486 ], [ 354814.878499999642372, 256232.736299999058247 ], [ 354814.104500003159046, 256228.930300001055002 ], [ 354810.913400001823902, 256224.893399998545647 ], [ 354809.022900000214577, 256219.815699998289347 ], [ 354808.610500000417233, 256229.542399998754263 ], [ 354807.239000000059605, 256261.887600000947714 ], [ 354824.284500002861023, 256264.477400001138449 ], [ 354841.194200001657009, 256269.052600000053644 ], [ 354841.820600003004074, 256261.535999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105104010100", "MAP": "A9-61-T66", "PARCEL_NAM": "PORTION OF 70B", "ACRE": null, "LONGITUDE": -64.96986759000001, "LATITUDE": 18.33553903, "OBJECTID_1": 7423, "PARCEL_NO_": "105104010100", "Tax_Legal_": "LINDBERG 68 THROUGH 72 4A SOUTHSIDE QTR", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10863600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.77347636600001, "SHAPE_Area": 2539.7935249299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354697.076499998569489, 256156.543400000780821 ], [ 354697.17230000346899, 256135.303199999034405 ], [ 354672.056100003421307, 256149.240899998694658 ], [ 354683.353500001132488, 256148.277899999171495 ], [ 354682.131800003349781, 256197.030499998480082 ], [ 354675.366599999368191, 256233.916499998420477 ], [ 354672.926100000739098, 256236.429699998348951 ], [ 354661.589199997484684, 256242.036400001496077 ], [ 354659.960400000214577, 256243.922899998724461 ], [ 354659.485299997031689, 256246.527399998158216 ], [ 354692.740199998021126, 256249.273299999535084 ], [ 354701.478299997746944, 256249.659099999815226 ], [ 354701.894000001251698, 256243.632800001651049 ], [ 354704.454999998211861, 256226.977400001138449 ], [ 354706.749799996614456, 256203.575399998575449 ], [ 354706.935900002717972, 256199.852800000458956 ], [ 354707.08330000191927, 256196.904199998825788 ], [ 354703.247400000691414, 256186.897399999201298 ], [ 354699.578199997544289, 256171.553599998354912 ], [ 354697.076499998569489, 256156.543400000780821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011800", "MAP": "D9-9122-T016", "PARCEL_NAM": "2D-1", "ACRE": "0.29", "LONGITUDE": -64.97749405, "LATITUDE": 18.36376155, "OBJECTID_1": 2187, "PARCEL_NO_": "102601011800", "Tax_Legal_": "2D REM CARET BAY (CON) NO.8 LITTLE NORTHSIDE QTR", "Name": "TRUST AGREEMENT OF KAREN HARRIS BROWN", "Address": "PO Box 9044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 167300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.26090974799999, "SHAPE_Area": 826.67959948600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353839.373999997973442, 259332.682700000703335 ], [ 353851.766999997198582, 259327.136500000953674 ], [ 353854.433499999344349, 259330.418299999088049 ], [ 353854.246699996292591, 259336.582400001585484 ], [ 353866.495800003409386, 259338.086199998855591 ], [ 353877.923299998044968, 259313.094999998807907 ], [ 353879.662399999797344, 259309.291700001806021 ], [ 353847.168099999427795, 259305.229899998754263 ], [ 353841.644799999892712, 259324.684300001710653 ], [ 353839.373999997973442, 259332.682700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601011800", "MAP": "D9-9122-T016", "PARCEL_NAM": "2D-A", "ACRE": "0.02", "LONGITUDE": -64.97759403000001, "LATITUDE": 18.36387242, "OBJECTID_1": 2187, "PARCEL_NO_": "102601011800", "Tax_Legal_": "2D REM CARET BAY (CON) NO.8 LITTLE NORTHSIDE QTR", "Name": "TRUST AGREEMENT OF KAREN HARRIS BROWN", "Address": "PO Box 9044", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 167300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 39.677895870100002, "SHAPE_Area": 85.195752448500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353839.373999997973442, 259332.682700000703335 ], [ 353843.383900001645088, 259335.248700000345707 ], [ 353854.246699996292591, 259336.582400001585484 ], [ 353854.433499999344349, 259330.418299999088049 ], [ 353851.766999997198582, 259327.136500000953674 ], [ 353839.373999997973442, 259332.682700000703335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "100904013400", "MAP": "D9-9210-T017", "PARCEL_NAM": "C-1", "ACRE": "0.75", "LONGITUDE": -64.99198445, "LATITUDE": 18.36776526, "OBJECTID_1": 60, "PARCEL_NO_": "100904013400", "Tax_Legal_": "C-1 SORGENFRI NO.1 SOUTHSIDE QTR", "Name": "BROWN, AVA L.", "Address": "229-54 129th Ave", "City": "Springfield Gardens", "State": "New York", "Zip": 11413, "Country": "United States", "Land_Value": 56300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.73699104900001, "SHAPE_Area": 3518.0663078799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 352367.599200002849102, 259750.486299999058247 ], [ 352364.820000000298023, 259750.464400000870228 ], [ 352360.309900000691414, 259748.17850000038743 ], [ 352356.089500002563, 259745.050999999046326 ], [ 352355.271600000560284, 259741.106499999761581 ], [ 352357.579700000584126, 259735.498700000345707 ], [ 352359.023400001227856, 259731.853300001472235 ], [ 352306.694300003349781, 259715.457699999213219 ], [ 352303.970899999141693, 259720.349599998444319 ], [ 352302.286300003528595, 259728.779500000178814 ], [ 352299.822400003671646, 259734.036699999123812 ], [ 352291.663999997079372, 259745.157900001853704 ], [ 352285.114600002765656, 259756.714400000870228 ], [ 352281.045299999415874, 259761.114100001752377 ], [ 352332.66889999806881, 259788.212099999189377 ], [ 352367.593999996781349, 259750.535300001502037 ], [ 352367.599200002849102, 259750.486299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010100", "MAP": "A9-626-T004", "PARCEL_NAM": "A-1", "ACRE": "4.2", "LONGITUDE": -64.82782855000001, "LATITUDE": 18.31247418, "OBJECTID_1": 42276, "PARCEL_NO_": "109801010100", "Tax_Legal_": "A-1,A-2 & A REM GREAT ST. JAMES ISLAND No. 6A RED HOOK QTR.", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17000000, "Improved_V": 500000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 633.656435644, "SHAPE_Area": 19967.438944199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 369744.956600002944469, 253871.221700001507998 ], [ 369744.113799996674061, 253866.248100001364946 ], [ 369739.884700000286102, 253861.017599999904633 ], [ 369733.318000003695488, 253851.517400000244379 ], [ 369731.587899997830391, 253832.144799999892712 ], [ 369731.257799997925758, 253815.617300000041723 ], [ 369742.735600002110004, 253806.747400000691414 ], [ 369782.860299997031689, 253781.131999999284744 ], [ 369817.17790000140667, 253767.741099998354912 ], [ 369823.965999998152256, 253766.940200001001358 ], [ 369823.714000001549721, 253766.464099999517202 ], [ 369790.773299999535084, 253677.563999999314547 ], [ 369717.748199999332428, 253700.979600001126528 ], [ 369710.540939416212495, 253704.162752289295895 ], [ 369703.637571300962009, 253707.960195148451021 ], [ 369697.090329703351017, 253712.343195384048158 ], [ 369690.948754056415055, 253717.278589205845492 ], [ 369685.259314338676631, 253722.72903316031443 ], [ 369680.065059460699558, 253728.653286688466324 ], [ 369675.405291537521407, 253735.006524170632474 ], [ 369671.315268510603346, 253741.740674097847659 ], [ 369667.825937370304018, 253748.804782802821137 ], [ 369664.963699996471405, 253756.145399998873472 ], [ 369661.76071080006659, 253766.66180663643172 ], [ 369659.23747472721152, 253777.361677106644493 ], [ 369657.404341682849918, 253788.201122276979731 ], [ 369656.268830881279428, 253799.135680502076866 ], [ 369655.835600003600121, 253810.12049999833107 ], [ 369654.248099997639656, 253881.558100000023842 ], [ 369744.735699996352196, 253871.23930000141263 ], [ 369744.956600002944469, 253871.221700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "109801010100", "MAP": "A9-626-T004", "PARCEL_NAM": "A-2", "ACRE": "19.8", "LONGITUDE": -64.82630973000001, "LATITUDE": 18.31086091, "OBJECTID_1": 42276, "PARCEL_NO_": "109801010100", "Tax_Legal_": "A-1,A-2 & A REM GREAT ST. JAMES ISLAND No. 6A RED HOOK QTR.", "Name": "GREAT ST. JIM, LLC", "Address": "9053 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17000000, "Improved_V": 500000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1853.9525247, "SHAPE_Area": 79663.666019600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 370275.928300000727177, 253742.906100001186132 ], [ 370274.791599996387959, 253724.872000001370907 ], [ 370267.473800003528595, 253712.504700001329184 ], [ 370252.670500002801418, 253706.838199999183416 ], [ 370252.746299996972084, 253698.22690000012517 ], [ 370263.939400002360344, 253692.173900000751019 ], [ 370265.241999998688698, 253684.803599998354912 ], [ 370254.781300000846386, 253677.945000000298023 ], [ 370245.644900001585484, 253661.255699999630451 ], [ 370227.806800000369549, 253648.795899998396635 ], [ 370209.860600002110004, 253648.638099998235703 ], [ 370205.582900002598763, 253642.449000000953674 ], [ 370206.890799999237061, 253634.463599998503923 ], [ 370182.848200000822544, 253623.794799998402596 ], [ 370164.321000002324581, 253619.325899999588728 ], [ 370147.704300001263618, 253608.722300000488758 ], [ 370122.32660000026226, 253609.114399999380112 ], [ 370091.309199996292591, 253617.453899998217821 ], [ 370082.569799996912479, 253625.989199999719858 ], [ 370063.450800001621246, 253618.439399998635054 ], [ 370052.295500002801418, 253620.186900001019239 ], [ 370044.831600002944469, 253624.427299998700619 ], [ 370047.850199997425079, 253633.065900001674891 ], [ 370044.104699999094009, 253636.723900001496077 ], [ 370019.367499999701977, 253634.661200001835823 ], [ 369992.187399998307228, 253628.886199999600649 ], [ 369955.757100000977516, 253619.339099999517202 ], [ 369953.357400000095367, 253610.705899998545647 ], [ 369952.830399997532368, 253600.24379999935627 ], [ 369946.696000002324581, 253594.038499999791384 ], [ 369936.256800003349781, 253584.7195999994874 ], [ 369921.474899999797344, 253576.5929000005126 ], [ 369911.578900001943111, 253575.890900000929832 ], [ 369893.670400001108646, 253571.427700001746416 ], [ 369883.333700001239777, 253550.421900000423193 ], [ 369886.665399998426437, 253523.38459999859333 ], [ 369879.928300000727177, 253515.328499998897314 ], [ 369873.847900003194809, 253502.972199998795986 ], [ 369861.492700003087521, 253500.403200000524521 ], [ 369830.566899999976158, 253498.286400001496077 ], [ 369808.315700002014637, 253495.015399999916553 ], [ 369797.225100003182888, 253489.381799999624491 ], [ 369787.42620000243187, 253477.607999999076128 ], [ 369782.034599997103214, 253457.26069999858737 ], [ 369780.947999998927116, 253440.026900000870228 ], [ 369777.465999998152256, 253429.614399999380112 ], [ 369669.230599999427795, 253460.219500001519918 ], [ 369527.36879999935627, 253547.928800001740456 ], [ 369522.463200002908707, 253550.954500000923872 ], [ 369633.213600002229214, 253595.410700000822544 ], [ 369700.682499997317791, 253631.923200000077486 ], [ 369903.88289999961853, 253630.335700001567602 ], [ 369967.383100003004074, 253657.323300000280142 ], [ 369988.020599998533726, 253712.885899998247623 ], [ 370097.558300003409386, 253723.204700000584126 ], [ 370207.096000000834465, 253750.192200001329184 ], [ 370275.35869999974966, 253743.048500001430511 ], [ 370275.928300000727177, 253742.906100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302010800", "MAP": "D9-9220-T017", "PARCEL_NAM": "18-2", "ACRE": "0.03", "LONGITUDE": -64.91997344000001, "LATITUDE": 18.33105724, "OBJECTID_1": 24772, "PARCEL_NO_": "107302010800", "Tax_Legal_": "19 REM, 18-1 & 18-2 ESTATE THOMAS NO.6H NEW QUARTER", "Name": "ST THOMAS LIQUOR COMPANY LTD", "Address": "6862 E Tawa St", "City": "Tucson", "State": "Arizona", "Zip": 85715, "Country": "United States", "Land_Value": 779175, "Improved_V": 2054200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.061773754599997, "SHAPE_Area": 69.640573016399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359975.371100001037121, 255746.46510000154376 ], [ 359958.343199998140335, 255747.870000001043081 ], [ 359970.465800002217293, 255755.049400001764297 ], [ 359975.371100001037121, 255746.46510000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302010800", "MAP": "D9-9220-T017", "PARCEL_NAM": "18-1", "ACRE": "0.09", "LONGITUDE": -64.92023805, "LATITUDE": 18.33120895, "OBJECTID_1": 24772, "PARCEL_NO_": "107302010800", "Tax_Legal_": "19 REM, 18-1 & 18-2 ESTATE THOMAS NO.6H NEW QUARTER", "Name": "ST THOMAS LIQUOR COMPANY LTD", "Address": "6862 E Tawa St", "City": "Tucson", "State": "Arizona", "Zip": 85715, "Country": "United States", "Land_Value": 779175, "Improved_V": 2054200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 90.653615306399999, "SHAPE_Area": 266.48998116799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359952.665299996733665, 255748.33839999884367 ], [ 359945.892399996519089, 255748.897199999541044 ], [ 359927.88740000128746, 255779.991700001060963 ], [ 359935.279200002551079, 255783.884100001305342 ], [ 359935.540700003504753, 255783.465700000524521 ], [ 359952.665299996733665, 255748.33839999884367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302010900", "MAP": "D9-9220-T017", "PARCEL_NAM": "19-1", "ACRE": "67 Sq ft", "LONGITUDE": -64.9200968, "LATITUDE": 18.33103469, "OBJECTID_1": 24773, "PARCEL_NO_": "107302010900", "Tax_Legal_": "18 REM & 19-1 & 19-2 ESTATE THOMAS NO. 6H NEW QUARTER", "Name": "CARIBBEAN OFF THE GRID PLAZA, LLC", "Address": "9718 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022672, "Country": "United States", "Land_Value": 936000, "Improved_V": 2169400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 13.9190741907, "SHAPE_Area": 8.1002279163599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359958.343199998140335, 255747.870000001043081 ], [ 359954.114500001072884, 255745.365600001066923 ], [ 359952.665299996733665, 255748.33839999884367 ], [ 359958.343199998140335, 255747.870000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "107302010900", "MAP": "D9-9220-T017", "PARCEL_NAM": "19-2", "ACRE": "0.12", "LONGITUDE": -64.91977272, "LATITUDE": 18.33091226, "OBJECTID_1": 24773, "PARCEL_NO_": "107302010900", "Tax_Legal_": "18 REM & 19-1 & 19-2 ESTATE THOMAS NO. 6H NEW QUARTER", "Name": "CARIBBEAN OFF THE GRID PLAZA, LLC", "Address": "9718 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8022672, "Country": "United States", "Land_Value": 936000, "Improved_V": 2169400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.230515532, "SHAPE_Area": 502.02414857000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359983.949100002646446, 255715.738000001758337 ], [ 359983.959600001573563, 255715.837999999523163 ], [ 359977.609600000083447, 255728.379299998283386 ], [ 359983.800800003111362, 255731.713100001215935 ], [ 359975.371100001037121, 255746.46510000154376 ], [ 360006.412600003182888, 255743.904100000858307 ], [ 359989.697599999606609, 255718.225000001490116 ], [ 359983.949100002646446, 255715.738000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102602011800", "MAP": "D9-9203-T017", "PARCEL_NAM": "7CA", "ACRE": "0.53", "LONGITUDE": -64.97233029, "LATITUDE": 18.36204455, "OBJECTID_1": 2367, "PARCEL_NO_": "102602011800", "Tax_Legal_": "7CA CARET BAY NO. 8 LITTLE NORTHSIDE QTR.", "Name": "PATRICK D CORCORAN & KRISTIN E TUOHY TRUST", "Address": "3255 Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 148000, "Improved_V": 151300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.821234898, "SHAPE_Area": 2209.31041968 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354445.702100001275539, 259099.612300001084805 ], [ 354445.593299999833107, 259099.537000000476837 ], [ 354401.037399999797344, 259123.455400001257658 ], [ 354380.399899996817112, 259132.345400001853704 ], [ 354380.188199996948242, 259134.673799999058247 ], [ 354365.04169999808073, 259134.347699999809265 ], [ 354368.263099998235703, 259153.782200001180172 ], [ 354369.040700003504753, 259157.16609999909997 ], [ 354392.429099999368191, 259156.724199999123812 ], [ 354396.464299999177456, 259156.335099998861551 ], [ 354398.888599999248981, 259155.721599999815226 ], [ 354410.209399998188019, 259152.014600001275539 ], [ 354415.871500000357628, 259149.949999999254942 ], [ 354430.466099999845028, 259140.570300001651049 ], [ 354437.800200000405312, 259131.553300000727177 ], [ 354441.108199998736382, 259121.870000001043081 ], [ 354442.848499998450279, 259106.896600000560284 ], [ 354445.702100001275539, 259099.612300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107604044800", "MAP": null, "PARCEL_NAM": "12S", "ACRE": null, "LONGITUDE": -64.86862523000001, "LATITUDE": 18.32134393, "OBJECTID_1": 39042, "PARCEL_NO_": "107604044800", "Tax_Legal_": "12S REM FRYDENHOJ NO.3 RED HOOK QTR", "Name": "ROGERS (TRUSTEE), GEORGE DEVON", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 30500, "Improved_V": 254400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.74298240100001, "SHAPE_Area": 950.89639889499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365404.884300000965595, 254697.619899999350309 ], [ 365396.201800003647804, 254700.251899998635054 ], [ 365382.132100000977516, 254724.988699998706579 ], [ 365430.675599999725819, 254742.370299998670816 ], [ 365404.884300000965595, 254697.619899999350309 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "103002020300", "MAP": "A9-724-T008", "PARCEL_NAM": "5-B-1", "ACRE": null, "LONGITUDE": -64.91115089, "LATITUDE": 18.35873838, "OBJECTID_1": 5296, "PARCEL_NO_": "103002020300", "Tax_Legal_": "LOVENLUND C-2Q GR NORTHSIDE", "Name": "DUN RUN GOLF LLC", "Address": "1603 Lbj FRWY", "City": "Dallas", "State": "Texas", "Zip": 75234, "Country": "United States", "Land_Value": 1648755, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.001458195, "SHAPE_Area": 120.497970479 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360898.07940000295639, 258816.829700000584126 ], [ 360896.385999999940395, 258813.654699999839067 ], [ 360830.980899997055531, 258833.339800000190735 ], [ 360898.07940000295639, 258816.829700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.91061121, "LATITUDE": 18.34831273, "OBJECTID_1": 5832, "PARCEL_NO_": "103003033600", "Tax_Legal_": "4D-1 REM ST JOSEPH&ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "PAIEWONSKY, LOURDES & CONDE, EDGAR", "Address": "143 Stanwood Ln", "City": "Manlius", "State": "New York", "Zip": 13104, "Country": "United States", "Land_Value": 44200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.1258653012200002, "SHAPE_Area": 0.1352436833 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360942.093099996447563, 257667.888199999928474 ], [ 360942.034199997782707, 257667.590300001204014 ], [ 360941.2128000035882, 257668.028200000524521 ], [ 360942.093099996447563, 257667.888199999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033700", "MAP": "D9-6115-T96", "PARCEL_NAM": "4D-2-B", "ACRE": "0.42", "LONGITUDE": -64.91022972, "LATITUDE": 18.34840977, "OBJECTID_1": 5833, "PARCEL_NO_": "103003033700", "Tax_Legal_": "4D-2-A ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "PARR, JOHN W.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111000, "Improved_V": 217600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.34446375100001, "SHAPE_Area": 1691.5368668199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361011.373400002717972, 257696.687699999660254 ], [ 361010.062399998307228, 257678.934099998325109 ], [ 361003.675599999725819, 257669.419199999421835 ], [ 360999.606499999761581, 257658.737900000065565 ], [ 360948.033299997448921, 257666.94310000166297 ], [ 360956.692900002002716, 257694.415899999439716 ], [ 360996.108300000429153, 257684.814800001680851 ], [ 361002.86370000243187, 257690.243299998342991 ], [ 360991.185300000011921, 257708.590199999511242 ], [ 360993.591600000858307, 257710.087499998509884 ], [ 360994.137800000607967, 257711.855000000447035 ], [ 361011.373400002717972, 257696.687699999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003041000", "MAP": "D9-637-T67", "PARCEL_NAM": "4D-1A", "ACRE": "0.33", "LONGITUDE": -64.91094456, "LATITUDE": 18.34847966, "OBJECTID_1": 5899, "PARCEL_NO_": "103003041000", "Tax_Legal_": "4D-1-A ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "PAIEWONSKY, LOURDES & CONDE, EDGAR", "Address": "143 Stanwood Ln", "City": "Manlius", "State": "New York", "Zip": 13104, "Country": "United States", "Land_Value": 50700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.547798091, "SHAPE_Area": 1330.7898133799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360932.486800000071526, 257672.680399999022484 ], [ 360932.267899997532368, 257669.451299998909235 ], [ 360875.324400000274181, 257678.510999999940395 ], [ 360876.919100001454353, 257680.635000001639128 ], [ 360884.407300002872944, 257698.293200001120567 ], [ 360884.824000000953674, 257699.27589999884367 ], [ 360886.904600001871586, 257701.961599998176098 ], [ 360888.660300001502037, 257704.227800000458956 ], [ 360933.826300002634525, 257692.439899999648333 ], [ 360932.486800000071526, 257672.680399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003039300", "MAP": "D9-637-T67", "PARCEL_NAM": "4D-1B", "ACRE": "0.34", "LONGITUDE": -64.91057071, "LATITUDE": 18.34862113, "OBJECTID_1": 5889, "PARCEL_NO_": "103003039300", "Tax_Legal_": "4D-1B ST. JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR.", "Name": "MGA IRREVOCABLE TRUST", "Address": "4608 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 34300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.75245045899999, "SHAPE_Area": 1439.9784235499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360964.485299997031689, 257719.13740000128746 ], [ 360948.033299997448921, 257666.94310000166297 ], [ 360942.093099996447563, 257667.888199999928474 ], [ 360941.2128000035882, 257668.028200000524521 ], [ 360932.267899997532368, 257669.451299998909235 ], [ 360932.486800000071526, 257672.680399999022484 ], [ 360936.9087999984622, 257737.910100001841784 ], [ 360953.929499998688698, 257727.705899998545647 ], [ 360960.423100002110004, 257722.692800000309944 ], [ 360964.485299997031689, 257719.13740000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033700", "MAP": "D9-6115-T96", "PARCEL_NAM": "4D-2-A", "ACRE": "0.23", "LONGITUDE": -64.91026034, "LATITUDE": 18.34859808, "OBJECTID_1": 5833, "PARCEL_NO_": "103003033700", "Tax_Legal_": "4D-2-A ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "PARR, JOHN W.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111000, "Improved_V": 217600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.68350998, "SHAPE_Area": 856.35994125599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361002.86370000243187, 257690.243299998342991 ], [ 360996.108300000429153, 257684.814800001680851 ], [ 360956.692900002002716, 257694.415899999439716 ], [ 360964.485299997031689, 257719.13740000128746 ], [ 360969.355499997735023, 257715.377599999308586 ], [ 360985.548299998044968, 257707.699700001627207 ], [ 360991.185300000011921, 257708.590199999511242 ], [ 361002.86370000243187, 257690.243299998342991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103003033700", "MAP": "D9-6115-T96", "PARCEL_NAM": "4D-2 REM", "ACRE": "0.38", "LONGITUDE": -64.90988315, "LATITUDE": 18.34853892, "OBJECTID_1": 5833, "PARCEL_NO_": "103003033700", "Tax_Legal_": "4D-2-A ST JOSEPH & ROSENDAHL NO.4 GREAT NORTHSIDE QTR", "Name": "PARR, JOHN W.", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111000, "Improved_V": 217600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.43202487799999, "SHAPE_Area": 1767.5348449400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361024.646899998188019, 257661.579100001603365 ], [ 361023.53999999910593, 257654.930100001394749 ], [ 360999.606499999761581, 257658.737900000065565 ], [ 361003.675599999725819, 257669.419199999421835 ], [ 361010.062399998307228, 257678.934099998325109 ], [ 361011.373400002717972, 257696.687699999660254 ], [ 360994.137800000607967, 257711.855000000447035 ], [ 360994.376400001347065, 257712.627099998295307 ], [ 360994.336999997496605, 257717.252399999648333 ], [ 361041.099899999797344, 257724.512899998575449 ], [ 361034.79450000077486, 257700.925500001758337 ], [ 361032.731100000441074, 257692.925000000745058 ], [ 361024.646899998188019, 257661.579100001603365 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202052200", "MAP": "F9-48-T56", "PARCEL_NAM": "22-17", "ACRE": "0.23", "LONGITUDE": -64.95233058, "LATITUDE": 18.3423058, "OBJECTID_1": 8321, "PARCEL_NO_": "105202052200", "Tax_Legal_": "CONTANT 22 17 7BA SOUTHSIDE QTR", "Name": "DE CASTRO, DANTE & ROMNEY, JEAN S", "Address": "PO Box 8484", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 69600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.177689343, "SHAPE_Area": 971.55490147600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356556.667300000786781, 256953.248799998313189 ], [ 356522.291900001466274, 256951.129900000989437 ], [ 356521.32379999756813, 256970.120400000363588 ], [ 356520.356100000441074, 256981.30290000140667 ], [ 356552.913099996745586, 256981.803800001740456 ], [ 356553.902900002896786, 256981.818999998271465 ], [ 356553.913400001823902, 256979.899099998176098 ], [ 356553.920900002121925, 256978.531500000506639 ], [ 356553.995800003409386, 256964.817499998956919 ], [ 356554.008699998259544, 256962.451400000602007 ], [ 356556.667300000786781, 256953.248799998313189 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202071500", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5G", "ACRE": "0.14", "LONGITUDE": -64.95194642, "LATITUDE": 18.34186807, "OBJECTID_1": 8423, "PARCEL_NO_": "105202071500", "Tax_Legal_": "CONTANT 23-5H 7BA S S QTR.", "Name": "PHILLIP LETANG", "Address": "PO Box 303558", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8033558, "Country": "United States", "Land_Value": 46600, "Improved_V": 11800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.19324532500001, "SHAPE_Area": 572.75839982599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356576.690099999308586, 256908.639800000935793 ], [ 356566.17960000038147, 256906.042199999094009 ], [ 356565.807599999010563, 256907.530299998819828 ], [ 356565.253600001335144, 256909.746300000697374 ], [ 356561.840400002896786, 256924.986400000751019 ], [ 356571.439800001680851, 256926.832400001585484 ], [ 356592.254100002348423, 256930.835200000554323 ], [ 356592.667700000107288, 256925.1081000007689 ], [ 356593.499200001358986, 256922.159600000828505 ], [ 356597.034100003540516, 256913.66780000180006 ], [ 356576.690099999308586, 256908.639800000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202072100", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5J", "ACRE": "0.14", "LONGITUDE": -64.95189599, "LATITUDE": 18.34170561, "OBJECTID_1": 8429, "PARCEL_NO_": "105202072100", "Tax_Legal_": "CONTANT 23-5J 7BA SOUTHSIDE QTR.", "Name": "WOODLEY, PHILMORE & GEORGIANA", "Address": "3501 Buck Bordway", "City": "Garland", "State": "Texas", "Zip": 75044, "Country": "United States", "Land_Value": 42900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.182073534, "SHAPE_Area": 610.03331250500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356582.129100002348423, 256890.423300001770258 ], [ 356571.28490000218153, 256887.401200000196695 ], [ 356566.17960000038147, 256906.042199999094009 ], [ 356576.690099999308586, 256908.639800000935793 ], [ 356597.034100003540516, 256913.66780000180006 ], [ 356597.615199998021126, 256912.271899998188019 ], [ 356600.095299996435642, 256905.114999998360872 ], [ 356602.741099998354912, 256896.167599998414516 ], [ 356582.129100002348423, 256890.423300001770258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202054700", "MAP": "F9-45-T56", "PARCEL_NAM": "29", "ACRE": "0.31", "LONGITUDE": -64.95210361, "LATITUDE": 18.34133912, "OBJECTID_1": 8346, "PARCEL_NO_": "105202054700", "Tax_Legal_": "CONTANT 29 7BA SOUTHSIDE QTR", "Name": "CLAUBERT CHARLES and MICHAMA CLAISEMOND", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021736, "Country": "United States", "Land_Value": 98000, "Improved_V": 50200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.730631594, "SHAPE_Area": 844.43887266199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356580.855099998414516, 256851.976399999111891 ], [ 356554.499099999666214, 256842.18129999935627 ], [ 356552.203900001943111, 256847.516699999570847 ], [ 356550.58049999922514, 256848.769999999552965 ], [ 356548.120200000703335, 256853.605000000447035 ], [ 356544.025700002908707, 256860.959699999541044 ], [ 356541.019299998879433, 256865.008200000971556 ], [ 356573.718199998140335, 256878.516600001603365 ], [ 356576.506099998950958, 256869.260999999940395 ], [ 356576.890799999237061, 256867.731899999082088 ], [ 356580.855099998414516, 256851.976399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202071900", "MAP": "D9-2268-83", "PARCEL_NAM": "23-5K", "ACRE": "0.14", "LONGITUDE": -64.95184804, "LATITUDE": 18.3415429, "OBJECTID_1": 8427, "PARCEL_NO_": "105202071900", "Tax_Legal_": "CONTANT 23E-5K 7BA SOUTHSIDE QTR.", "Name": "CASIMIR, MARY", "Address": "P.O. BOX 3781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 110900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.332355592, "SHAPE_Area": 609.60297846699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356585.160499997437, 256871.792500000447035 ], [ 356576.506099998950958, 256869.260999999940395 ], [ 356573.718199998140335, 256878.516600001603365 ], [ 356571.28490000218153, 256887.401200000196695 ], [ 356582.129100002348423, 256890.423300001770258 ], [ 356602.741099998354912, 256896.167599998414516 ], [ 356605.076999999582767, 256888.268300000578165 ], [ 356607.5371999964118, 256878.338100001215935 ], [ 356587.604599997401237, 256872.507500000298023 ], [ 356585.160499997437, 256871.792500000447035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202071700", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5L", "ACRE": "0.14", "LONGITUDE": -64.95180444, "LATITUDE": 18.34138099, "OBJECTID_1": 8425, "PARCEL_NO_": "105202071700", "Tax_Legal_": "CONTANT 23-5L SOUTHSIDE 7BA", "Name": "ATHANAZE, PATRICK & JACINTA", "Address": "PO Box 306222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 40500, "Improved_V": 167900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.795723727, "SHAPE_Area": 586.46229240900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356593.218599997460842, 256855.144299998879433 ], [ 356580.855099998414516, 256851.976399999111891 ], [ 356576.890799999237061, 256867.731899999082088 ], [ 356576.506099998950958, 256869.260999999940395 ], [ 356585.160499997437, 256871.792500000447035 ], [ 356587.604599997401237, 256872.507500000298023 ], [ 356607.5371999964118, 256878.338100001215935 ], [ 356607.582299999892712, 256878.156300000846386 ], [ 356609.266800001263618, 256869.726399999111891 ], [ 356611.575000002980232, 256859.847699999809265 ], [ 356593.218599997460842, 256855.144299998879433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202072300", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-5M", "ACRE": "0.14", "LONGITUDE": -64.95177105, "LATITUDE": 18.34122675, "OBJECTID_1": 8431, "PARCEL_NO_": "105202072300", "Tax_Legal_": "CONTANT 23-5M 7BA SOUTHSIDE QTR.", "Name": "JOSEPH, KENNY & GEORGIANA", "Address": "P.O. BOX 4015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.013910765299997, "SHAPE_Area": 520.390735307 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356613.451200000941753, 256851.817699998617172 ], [ 356614.596900001168251, 256843.745299998670816 ], [ 356614.4054000005126, 256843.774700000882149 ], [ 356597.833200000226498, 256839.315699998289347 ], [ 356585.31139999628067, 256835.946400001645088 ], [ 356584.481100000441074, 256835.670200001448393 ], [ 356580.855099998414516, 256851.976399999111891 ], [ 356593.218599997460842, 256855.144299998879433 ], [ 356611.575000002980232, 256859.847699999809265 ], [ 356613.451200000941753, 256851.817699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202057500", "MAP": "D9-605-T66", "PARCEL_NAM": "6-1", "ACRE": "0.07", "LONGITUDE": -64.95194987000001, "LATITUDE": 18.34088538, "OBJECTID_1": 8373, "PARCEL_NO_": "105202057500", "Tax_Legal_": "CONTANT 6-1 7BA S S QTR", "Name": "MAGO, ANA A.", "Address": "PO Box 1014", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 73.957939478699998, "SHAPE_Area": 293.508124108 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356591.067199997603893, 256806.053100001066923 ], [ 356570.307899996638298, 256800.318500000983477 ], [ 356568.680799998342991, 256806.488299999386072 ], [ 356570.253799997270107, 256811.145199999213219 ], [ 356567.822300001978874, 256812.603000000119209 ], [ 356566.198899999260902, 256813.856300000101328 ], [ 356588.104400001466274, 256819.376400001347065 ], [ 356588.842299997806549, 256816.058299999684095 ], [ 356591.067199997603893, 256806.053100001066923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202057800", "MAP": "D9-605-T66", "PARCEL_NAM": "6-4", "ACRE": "0.07", "LONGITUDE": -64.9518383, "LATITUDE": 18.3404991, "OBJECTID_1": 8376, "PARCEL_NO_": "105202057800", "Tax_Legal_": "CONTANT 6-4 7BA S S QTR", "Name": "DIPNARINE, RITA & SONNY RAM, TRUSTEES", "Address": "7551 NW 1st St", "City": "PEMBROKE PINES", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.148580603400006, "SHAPE_Area": 267.67774422100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356603.941399998962879, 256764.827199999243021 ], [ 356583.364500001072884, 256758.150600001215935 ], [ 356579.488300003111362, 256768.36879999935627 ], [ 356578.949799999594688, 256769.777100000530481 ], [ 356599.647900000214577, 256776.400499999523163 ], [ 356600.301399998366833, 256774.337099999189377 ], [ 356600.585500001907349, 256773.594799999147654 ], [ 356603.941399998962879, 256764.827199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202057600", "MAP": "D9-605-T66", "PARCEL_NAM": "6-2", "ACRE": "0.07", "LONGITUDE": -64.95191939, "LATITUDE": 18.34075444, "OBJECTID_1": 8374, "PARCEL_NO_": "105202057600", "Tax_Legal_": "CONTANT 6-2 7BA SOUTHSIDE QTR", "Name": "TATEM, SIDNEY & EDITH", "Address": "6-2 EST CONTANT 7BA", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.325047965099998, "SHAPE_Area": 343.646739712 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356595.205600000917912, 256790.426199998706579 ], [ 356573.700300000607967, 256785.20890000090003 ], [ 356573.347099997103214, 256786.720600001513958 ], [ 356572.863399997353554, 256788.790699999779463 ], [ 356571.180600002408028, 256797.009500000625849 ], [ 356570.307899996638298, 256800.318500000983477 ], [ 356591.067199997603893, 256806.053100001066923 ], [ 356591.860799998044968, 256802.484099999070168 ], [ 356594.451800003647804, 256793.143800001591444 ], [ 356595.205600000917912, 256790.426199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105202058100", "MAP": "D9-605-T66", "PARCEL_NAM": "6-7", "ACRE": "0.07", "LONGITUDE": -64.95170508, "LATITUDE": 18.34014188, "OBJECTID_1": 8379, "PARCEL_NO_": "105202058100", "Tax_Legal_": "CONTANT 6-7 7BA SOUTHSIDE QTR", "Name": "GEORGE, SIDNEY", "Address": "2002 Gamble Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.666381866199998, "SHAPE_Area": 283.30168601499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356618.524999998509884, 256725.596700001507998 ], [ 356597.653300002217293, 256718.134199999272823 ], [ 356595.185900002717972, 256724.167599998414516 ], [ 356595.167900003492832, 256726.278400000184774 ], [ 356593.55009999871254, 256730.65089999884367 ], [ 356614.093099996447563, 256737.382399998605251 ], [ 356616.225299999117851, 256731.71229999884963 ], [ 356618.524999998509884, 256725.596700001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202051400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9515786, "LATITUDE": 18.34331873, "OBJECTID_1": 8313, "PARCEL_NO_": "105202051400", "Tax_Legal_": "22-7 ESTATE CONTANT 7BA SOUTHSIDE QTR", "Name": "PARRIS, ICILMA & OTHERS", "Address": "12724 Hollandale Dr", "City": "Houston", "State": "Texas", "Zip": 77082, "Country": "United States", "Land_Value": 66600, "Improved_V": 19700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.299855261100006, "SHAPE_Area": 290.92578724999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356630.905799999833107, 257074.644999999552965 ], [ 356601.582800000905991, 257074.553100001066923 ], [ 356601.79389999806881, 257084.347300000488758 ], [ 356630.819300003349781, 257084.796000000089407 ], [ 356630.905799999833107, 257074.644999999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202070600", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3C", "ACRE": "0.14", "LONGITUDE": -64.95162719, "LATITUDE": 18.34256757, "OBJECTID_1": 8413, "PARCEL_NO_": "105202070600", "Tax_Legal_": "CONTANT 23-3C 7BA S.S. QTR.", "Name": "WILLIAMS, EDRIS", "Address": "1028 Glencrest Dr", "City": "Cedar Hill", "State": "Texas", "Zip": 75104, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.804164814, "SHAPE_Area": 597.61492407399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356629.144599996507168, 256988.058400001376867 ], [ 356593.748099997639656, 256987.589000001549721 ], [ 356593.742600001394749, 256988.233899999409914 ], [ 356596.026699997484684, 257004.084600001573563 ], [ 356596.271799996495247, 257005.839600000530481 ], [ 356629.891800001263618, 257004.361800000071526 ], [ 356629.207800000905991, 256990.001800000667572 ], [ 356629.144599996507168, 256988.058400001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202071200", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3F", "ACRE": "0.14", "LONGITUDE": -64.95160128000001, "LATITUDE": 18.34208068, "OBJECTID_1": 8419, "PARCEL_NO_": "105202071200", "Tax_Legal_": "CONTANT 23-3F 7BA SOUTHSIDE QTR.", "Name": "GAGE, RUPERT & WINIFRED", "Address": "2 Iris Cir", "City": "Beacon", "State": "New York", "Zip": 12508, "Country": "United States", "Land_Value": 46600, "Improved_V": 47900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.35163374699999, "SHAPE_Area": 775.45394925599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356635.865500003099442, 256938.094999998807907 ], [ 356598.981600001454353, 256926.738200001418591 ], [ 356598.745800003409386, 256927.889899998903275 ], [ 356598.426700003445148, 256929.448600001633167 ], [ 356598.268700003623962, 256930.220199998468161 ], [ 356598.1824000030756, 256940.352000001817942 ], [ 356597.304099999368191, 256948.788499999791384 ], [ 356596.934299997985363, 256951.143500000238419 ], [ 356618.804499998688698, 256953.93299999833107 ], [ 356631.440700002014637, 256955.544700000435114 ], [ 356631.906400002539158, 256955.604100000113249 ], [ 356635.481100000441074, 256939.795000001788139 ], [ 356635.673600003123283, 256938.943500000983477 ], [ 356635.865500003099442, 256938.094999998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202072000", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3K", "ACRE": "0.14", "LONGITUDE": -64.95143935, "LATITUDE": 18.34143179, "OBJECTID_1": 8428, "PARCEL_NO_": "105202072000", "Tax_Legal_": "CONTANT 23-3K 7BA S S QTR.", "Name": "JOSEPH, KENNY & GEORGINA", "Address": "PO Box 304015", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.55989081600001, "SHAPE_Area": 545.98896601900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356651.738300003111362, 256867.897700000554323 ], [ 356617.472599998116493, 256858.760200001299381 ], [ 356615.733499996364117, 256867.879399999976158 ], [ 356614.273000001907349, 256874.625500001013279 ], [ 356648.462700001895428, 256882.383900001645088 ], [ 356649.745800003409386, 256876.709499999880791 ], [ 356651.738300003111362, 256867.897700000554323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202071800", "MAP": "D9-2268-T83", "PARCEL_NAM": "23-3J", "ACRE": "0.14", "LONGITUDE": -64.95146662000001, "LATITUDE": 18.34157562, "OBJECTID_1": 8426, "PARCEL_NO_": "105202071800", "Tax_Legal_": "CONTANT 23-3J 7BA S.S. QTR.", "Name": "ROBERTS, IVAN LEROY and KALYSHA ASHER ROBERTS", "Address": "PO Box 305818", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 46600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.639572266, "SHAPE_Area": 587.47918630900006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356648.462700001895428, 256882.383900001645088 ], [ 356614.273000001907349, 256874.625500001013279 ], [ 356611.536499999463558, 256887.265700001269579 ], [ 356609.900499999523163, 256889.996500000357628 ], [ 356644.603900000452995, 256899.449499998241663 ], [ 356645.209700003266335, 256896.770300000905991 ], [ 356648.462700001895428, 256882.383900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101104017700", "MAP": "D9-7118-T002", "PARCEL_NAM": "ROW", "ACRE": "0.09", "LONGITUDE": -64.95533787, "LATITUDE": 18.36844047, "OBJECTID_1": 560, "PARCEL_NO_": "101104017700", "Tax_Legal_": "2G-2,2G-3 HULL NO.4B LITTLE NORTHSIDE QTR", "Name": "SHELL COLLECTORS TRUST", "Address": "8217 Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154500, "Improved_V": 119200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.539313892, "SHAPE_Area": 339.55168753800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356217.366800002753735, 259831.071400001645088 ], [ 356217.162500001490116, 259828.581999998539686 ], [ 356211.4949000030756, 259831.279800001531839 ], [ 356211.243299998342991, 259831.457800000905991 ], [ 356178.524400003254414, 259877.434799998998642 ], [ 356179.785400003194809, 259885.878299999982119 ], [ 356179.999300003051758, 259885.782499998807907 ], [ 356217.366800002753735, 259831.071400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003035000", "MAP": "D9-3790-T86", "PARCEL_NAM": "48-A", "ACRE": "0.25", "LONGITUDE": -64.97557889, "LATITUDE": 18.36560154, "OBJECTID_1": 286, "PARCEL_NO_": "101003035000", "Tax_Legal_": "48A ESTATE CARET BAY No.8 LITTLE NORTHSIDE QTR.", "Name": "STANFORD, A. M. & RATCHFORD, S. G", "Address": "2 JOHN BREWERS BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39300, "Improved_V": 221000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.939921349, "SHAPE_Area": 1092.37368259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354043.751000002026558, 259534.269600000232458 ], [ 354044.686899997293949, 259532.041200000792742 ], [ 354055.230200000107288, 259536.3445999994874 ], [ 354056.95160000026226, 259530.965399999171495 ], [ 354068.355599999427795, 259534.623199999332428 ], [ 354074.165200002491474, 259535.699099998921156 ], [ 354082.771999999880791, 259537.205299999564886 ], [ 354087.145999997854233, 259536.30799999833107 ], [ 354091.163599997758865, 259535.483899999409914 ], [ 354097.403399996459484, 259530.110700000077486 ], [ 354086.901100002229214, 259525.286299999803305 ], [ 354052.027300000190735, 259509.266600001603365 ], [ 354044.788800001144409, 259505.941500000655651 ], [ 354043.4983000010252, 259508.716699998825788 ], [ 354042.677599996328354, 259510.398699998855591 ], [ 354034.436499997973442, 259531.229499999433756 ], [ 354031.617299996316433, 259537.836500000208616 ], [ 354040.71509999781847, 259541.497800000011921 ], [ 354043.751000002026558, 259534.269600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003033600", "MAP": "D9-3790-T86", "PARCEL_NAM": "REM 48 & 49-A", "ACRE": "0.28", "LONGITUDE": -64.97546199, "LATITUDE": 18.36577252, "OBJECTID_1": 273, "PARCEL_NO_": "101003033600", "Tax_Legal_": "48 REM & 49A CARET BAY NO.8 LITTLE NORTHSIDE QTR", "Name": "THE HELTON FAMILY TRUST", "Address": "PO Box 305408", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61800, "Improved_V": 344200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.68293109800001, "SHAPE_Area": 991.39990128600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354087.416199997067451, 259559.476599998772144 ], [ 354100.200699999928474, 259531.395700000226498 ], [ 354097.403399996459484, 259530.110700000077486 ], [ 354091.163599997758865, 259535.483899999409914 ], [ 354087.145999997854233, 259536.30799999833107 ], [ 354082.771999999880791, 259537.205299999564886 ], [ 354074.165200002491474, 259535.699099998921156 ], [ 354068.355599999427795, 259534.623199999332428 ], [ 354056.95160000026226, 259530.965399999171495 ], [ 354055.230200000107288, 259536.3445999994874 ], [ 354044.686899997293949, 259532.041200000792742 ], [ 354043.751000002026558, 259534.269600000232458 ], [ 354040.71509999781847, 259541.497800000011921 ], [ 354064.267399996519089, 259550.976199999451637 ], [ 354062.976300001144409, 259554.849199999123812 ], [ 354078.2533999979496, 259561.519499998539686 ], [ 354079.329199999570847, 259558.937399998307228 ], [ 354086.377999998629093, 259561.756900001317263 ], [ 354087.416199997067451, 259559.476599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003033300", "MAP": "F9-1487-T64", "PARCEL_NAM": "REM 49", "ACRE": "0.47", "LONGITUDE": -64.97566193, "LATITUDE": 18.36593646, "OBJECTID_1": 270, "PARCEL_NO_": "101003033300", "Tax_Legal_": "CARET BAY 49 LT. NORTHSIDE", "Name": "CECIL FORBES SR LYNNETTE PENN FORBES JOINT LIV TRU", "Address": "PO Box 303682", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 87500, "Improved_V": 3200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.00194550200001, "SHAPE_Area": 1676.21040806 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354086.377999998629093, 259561.756900001317263 ], [ 354079.329199999570847, 259558.937399998307228 ], [ 354078.2533999979496, 259561.519499998539686 ], [ 354062.976300001144409, 259554.849199999123812 ], [ 354064.267399996519089, 259550.976199999451637 ], [ 354031.617299996316433, 259537.836500000208616 ], [ 354024.562899999320507, 259554.368999999016523 ], [ 354020.494599997997284, 259564.126299999654293 ], [ 354019.167400002479553, 259567.309300001710653 ], [ 354066.64469999819994, 259584.089999999850988 ], [ 354069.078100003302097, 259581.793000001460314 ], [ 354071.115099996328354, 259579.870099999010563 ], [ 354080.020499996840954, 259575.721200000494719 ], [ 354086.377999998629093, 259561.756900001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003032100", "MAP": "C9-149-T72", "PARCEL_NAM": "56", "ACRE": ".30", "LONGITUDE": -64.97581402, "LATITUDE": 18.36711692, "OBJECTID_1": 260, "PARCEL_NO_": "101003032100", "Tax_Legal_": "CARET BAY 56 LITTLE NORTHSIDE", "Name": "HARRIS, CLARENCE & CYNTHIA", "Address": "PO Box 8782", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51500, "Improved_V": 228600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 144.49690077299999, "SHAPE_Area": 1112.3876777 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354058.036799997091293, 259695.231300000101328 ], [ 354056.169100001454353, 259680.19539999961853 ], [ 354032.855400003492832, 259681.515099998563528 ], [ 354001.222599998116493, 259683.305599998682737 ], [ 354027.804099999368191, 259710.652100000530481 ], [ 354054.755800001323223, 259701.7483000010252 ], [ 354057.1908999979496, 259699.868400000035763 ], [ 354058.036799997091293, 259695.231300000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003033800", "MAP": "C9-149-T72", "PARCEL_NAM": "56A", "ACRE": ".33", "LONGITUDE": -64.97591726, "LATITUDE": 18.36692368, "OBJECTID_1": 275, "PARCEL_NO_": "101003033800", "Tax_Legal_": "CARET BAY 56A LT. NORTHSIDE", "Name": "GOMEZ, ANTOINETTE", "Address": "3038 Estate Contant", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 59700, "Improved_V": 186700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.31534738, "SHAPE_Area": 1337.3366343299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354055.05969999730587, 259666.0760000012815 ], [ 354055.131899997591972, 259657.600000001490116 ], [ 354020.674199998378754, 259662.212499998509884 ], [ 354013.064400002360344, 259663.231100000441074 ], [ 353976.908500000834465, 259668.070900000631809 ], [ 354001.222599998116493, 259683.305599998682737 ], [ 354032.855400003492832, 259681.515099998563528 ], [ 354056.169100001454353, 259680.19539999961853 ], [ 354055.018299996852875, 259670.930799998342991 ], [ 354055.05969999730587, 259666.0760000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003033900", "MAP": "C9-149-T72", "PARCEL_NAM": "55A", "ACRE": null, "LONGITUDE": -64.97598485, "LATITUDE": 18.36673022, "OBJECTID_1": 276, "PARCEL_NO_": "101003033900", "Tax_Legal_": "55A CARET BAY LITTLE NORTHSIDE QTR.", "Name": "JAMES, JENNIFER E", "Address": "PO BOX 6801", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 60100, "Improved_V": 188800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.257647789, "SHAPE_Area": 1862.2950392099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354008.961999997496605, 259635.322200000286102 ], [ 353991.095399998128414, 259633.892900001257658 ], [ 353988.3496999964118, 259640.40989999845624 ], [ 353976.908500000834465, 259668.070900000631809 ], [ 354013.064400002360344, 259663.231100000441074 ], [ 354020.674199998378754, 259662.212499998509884 ], [ 354055.131899997591972, 259657.600000001490116 ], [ 354055.173000000417233, 259652.778000000864267 ], [ 354055.669699996709824, 259639.058800000697374 ], [ 354008.961999997496605, 259635.322200000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003032700", "MAP": "C9-149-T72", "PARCEL_NAM": "55", "ACRE": "0.34", "LONGITUDE": -64.975921, "LATITUDE": 18.36649723, "OBJECTID_1": 265, "PARCEL_NO_": "101003032700", "Tax_Legal_": "CARET BAY 55 LT. NORTHSIDE", "Name": "BATTISTE, CHARMAINE M.", "Address": "PO Box 306565", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 61500, "Improved_V": 68500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.865737239, "SHAPE_Area": 1439.40436866 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354020.998400002717972, 259609.684399999678135 ], [ 354004.044100001454353, 259602.960499998182058 ], [ 354001.520499996840954, 259608.85359999909997 ], [ 353999.871899999678135, 259613.061999998986721 ], [ 353991.095399998128414, 259633.892900001257658 ], [ 354008.961999997496605, 259635.322200000286102 ], [ 354055.669699996709824, 259639.058800000697374 ], [ 354056.227399997413158, 259623.655799999833107 ], [ 354020.998400002717972, 259609.684399999678135 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003031000", "MAP": "C9-149-T72", "PARCEL_NAM": "50A", "ACRE": "0.25", "LONGITUDE": -64.97583977, "LATITUDE": 18.36631457, "OBJECTID_1": 250, "PARCEL_NO_": "101003031000", "Tax_Legal_": "CARET BAY 50A LITTLE NORTHSIDE QTR", "Name": "RICHARDSON, SHENICA S. & WILLIAM (TRUSTEES)", "Address": "PO Box 9275", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 48800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.34203863100001, "SHAPE_Area": 975.73354113699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354056.39469999819994, 259604.025400001555681 ], [ 354011.534100003540516, 259585.469799999147654 ], [ 354004.044100001454353, 259602.960499998182058 ], [ 354020.998400002717972, 259609.684399999678135 ], [ 354056.227399997413158, 259623.655799999833107 ], [ 354056.39469999819994, 259604.025400001555681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703015200", "MAP": "A9-16-T62", "PARCEL_NAM": "2W-75", "ACRE": "0.16", "LONGITUDE": -64.86207083, "LATITUDE": 18.3213601, "OBJECTID_1": 39641, "PARCEL_NO_": "107703015200", "Tax_Legal_": "NAZARETH ESTATE 2W-75 RED HOOK QTR", "Name": "SPRAUVE, GAYLORD A", "Address": "3201 Southgreen Rd", "City": "Windsor Mill", "State": "Maryland", "Zip": 21244, "Country": "United States", "Land_Value": 29600, "Improved_V": 125200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.39617567299999, "SHAPE_Area": 807.99673622499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366113.780299998819828, 254710.769000001251698 ], [ 366087.180500000715256, 254709.561799999326468 ], [ 366087.019199997186661, 254728.493000000715256 ], [ 366090.754100002348423, 254759.712799999862909 ], [ 366090.735600002110004, 254760.156500000506639 ], [ 366105.497800000011921, 254736.454599998891354 ], [ 366108.791400000452995, 254728.46000000089407 ], [ 366113.780299998819828, 254710.769000001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107703015400", "MAP": "G9-658-T62", "PARCEL_NAM": "41-4", "ACRE": "0.01", "LONGITUDE": -64.86215503, "LATITUDE": 18.32172999, "OBJECTID_1": 39643, "PARCEL_NO_": "107703015400", "Tax_Legal_": "41-7&41 REMAINDER FRYDENHOJ No.3 RED HOOK QUARTER", "Name": "No. 41 FRYDENHOJ LLC", "Address": "6300 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021409, "Country": "United States", "Land_Value": 843000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 42.737436457100003, "SHAPE_Area": 81.739233043499993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366090.735600002110004, 254760.156500000506639 ], [ 366090.754100002348423, 254759.712799999862909 ], [ 366081.45160000026226, 254772.459800001233816 ], [ 366083.042199999094009, 254772.511399999260902 ], [ 366092.927799999713898, 254774.773400001227856 ], [ 366090.741300001740456, 254760.194499999284744 ], [ 366090.735600002110004, 254760.156500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401390400", "MAP": null, "PARCEL_NAM": "2A & B CRYSTAL GADE", "ACRE": null, "LONGITUDE": -64.93156539, "LATITUDE": 18.34266469, "OBJECTID_1": 12057, "PARCEL_NO_": "105401390400", "Tax_Legal_": "CRYSTAL GADE 1,2A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 461200, "Improved_V": 236700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.177434338099999, "SHAPE_Area": 262.11285557000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358727.816500000655651, 257011.839299999177456 ], [ 358726.909699998795986, 257011.810600001364946 ], [ 358725.984999999403954, 257034.406800001859665 ], [ 358726.936700001358986, 257034.545299999415874 ], [ 358737.880000002682209, 257036.137699998915195 ], [ 358739.278300002217293, 257021.438799999654293 ], [ 358739.395000003278255, 257019.278599999845028 ], [ 358735.164499998092651, 257018.954599998891354 ], [ 358735.543999999761581, 257012.239900000393391 ], [ 358727.816500000655651, 257011.839299999177456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401061200", "MAP": null, "PARCEL_NAM": "1B COMMANDANT TVAER GADE", "ACRE": null, "LONGITUDE": -64.93073546, "LATITUDE": 18.34439134, "OBJECTID_1": 11487, "PARCEL_NO_": "105401061200", "Tax_Legal_": "DOMINI TVER GADE 2 & 1B-4 KINGS QTR.", "Name": "GIRAUD, THOMAS", "Address": "210 S Rush St", "City": "Itasca", "State": "Illinois", "Zip": 60143, "Country": "United States", "Land_Value": 5500, "Improved_V": 99100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 5.4141143514100003, "SHAPE_Area": 1.0282134966400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358817.51860000193119, 257215.208399999886751 ], [ 358818.212600000202656, 257216.825599998235703 ], [ 358819.432099997997284, 257216.704199999570847 ], [ 358817.51860000193119, 257215.208399999886751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401060600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93079598, "LATITUDE": 18.34425026, "OBJECTID_1": 11481, "PARCEL_NO_": "105401060600", "Tax_Legal_": "COMMANDANT TVER 2 KINGS QUARTER", "Name": "WARE, HANNIBAL M. & ELISE M.", "Address": "43221 Whisperwood Ter", "City": "Ashburn", "State": "Virginia", "Zip": 20147, "Country": "United States", "Land_Value": 7800, "Improved_V": 113400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 23.859506470199999, "SHAPE_Area": 12.9391486339 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358809.945600003004074, 257197.560499999672174 ], [ 358814.157799996435642, 257207.376299999654293 ], [ 358812.255599997937679, 257196.799899999052286 ], [ 358809.945600003004074, 257197.560499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401061200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.93072079, "LATITUDE": 18.3444189, "OBJECTID_1": 11487, "PARCEL_NO_": "105401061200", "Tax_Legal_": "DOMINI TVER GADE 2 & 1B-4 KINGS QTR.", "Name": "GIRAUD, THOMAS", "Address": "210 S Rush St", "City": "Itasca", "State": "Illinois", "Zip": 60143, "Country": "United States", "Land_Value": 5500, "Improved_V": 99100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 13.4693716594, "SHAPE_Area": 6.4994499805499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358821.578100003302097, 257221.665100000798702 ], [ 358819.432099997997284, 257216.704199999570847 ], [ 358818.212600000202656, 257216.825599998235703 ], [ 358820.439699999988079, 257222.015500001609325 ], [ 358821.578100003302097, 257221.665100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401390400", "MAP": null, "PARCEL_NAM": "2B COMMANDANT GADE O.V.", "ACRE": null, "LONGITUDE": -64.93150647, "LATITUDE": 18.34253507, "OBJECTID_1": 12057, "PARCEL_NO_": "105401390400", "Tax_Legal_": "CRYSTAL GADE 1,2A KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 461200, "Improved_V": 236700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.319331686600002, "SHAPE_Area": 107.16237847399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358741.7820999994874, 257001.212400000542402 ], [ 358740.386900000274181, 257000.916400000452995 ], [ 358736.4425999969244, 257000.586100000888109 ], [ 358736.203900001943111, 257000.566100001335144 ], [ 358735.543999999761581, 257012.239900000393391 ], [ 358735.164499998092651, 257018.954599998891354 ], [ 358739.395000003278255, 257019.278599999845028 ], [ 358741.210199996829033, 257019.417599998414516 ], [ 358741.7820999994874, 257001.212400000542402 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303070700", "MAP": "A3-39-T39", "PARCEL_NAM": "8", "ACRE": "6,466 sq ft", "LONGITUDE": -64.94896369, "LATITUDE": 18.33815109, "OBJECTID_1": 10930, "PARCEL_NO_": "105303070700", "Tax_Legal_": "CONTANT 8 7B SOUTHSIDE QTR", "Name": "3P INC", "Address": "3004 Estate Altona", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.88943552400001, "SHAPE_Area": 676.45823193599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356890.858900003135204, 256488.929000001400709 ], [ 356886.537000000476837, 256528.443500000983477 ], [ 356886.678800001740456, 256528.758699998259544 ], [ 356904.075800001621246, 256528.901099998503923 ], [ 356908.389700002968311, 256495.794700000435114 ], [ 356908.279600001871586, 256495.775199998170137 ], [ 356908.869400002062321, 256493.547100000083447 ], [ 356890.858900003135204, 256488.929000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303240200", "MAP": null, "PARCEL_NAM": "199", "ACRE": null, "LONGITUDE": -64.94267958, "LATITUDE": 18.33746028, "OBJECTID_1": 11134, "PARCEL_NO_": "105303240200", "Tax_Legal_": "ALTONA & WELGUNST 199 KRONPRINDSENS GADE", "Name": "BERRY, JOSEPH & RIVERA, MARIE R", "Address": "PO Box 10222", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 33.5969930722, "SHAPE_Area": 75.152669509299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357567.080700002610683, 256438.044100001454353 ], [ 357564.047399997711182, 256433.404899999499321 ], [ 357557.409000001847744, 256435.162099998444319 ], [ 357558.007100000977516, 256438.205699998885393 ], [ 357559.198700003325939, 256444.456999998539686 ], [ 357566.115199998021126, 256442.389199998229742 ], [ 357566.856700003147125, 256440.600099999457598 ], [ 357567.080700002610683, 256438.044100001454353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "107801020200", "MAP": "D9-7430-T004", "PARCEL_NAM": "9B-B", "ACRE": "4.07 +/-", "LONGITUDE": -64.84807075000001, "LATITUDE": 18.32356577, "OBJECTID_1": 40039, "PARCEL_NO_": "107801020200", "Tax_Legal_": "9B(CONSOLIDATED)NAZARETH No.1 RED HOOK QTR.", "Name": "REDHOOK HAYES B REM LLC", "Address": "1000 Blackbeards Hill", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026739, "Country": "United States", "Land_Value": 739300, "Improved_V": 9800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 689.40213064700004, "SHAPE_Area": 20323.668715200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367473.9341000020504, 254936.228199999779463 ], [ 367483.690099999308586, 254948.551600001752377 ], [ 367507.096900001168251, 254984.095300000160933 ], [ 367516.633100003004074, 255005.334800001233816 ], [ 367538.344700001180172, 255038.889199998229742 ], [ 367560.353299997746944, 255025.400100000202656 ], [ 367618.473800003528595, 255088.276000000536442 ], [ 367630.435400001704693, 255103.994800001382828 ], [ 367646.416000001132488, 255121.224199999123812 ], [ 367648.016000002622604, 255122.714999999850988 ], [ 367657.828400000929832, 255106.752199999988079 ], [ 367668.429200001060963, 255092.906700000166893 ], [ 367669.255300000309944, 255090.591499999165535 ], [ 367672.498000003397465, 255086.719200000166893 ], [ 367625.864900000393391, 255031.342399999499321 ], [ 367637.134900003671646, 254976.726500000804663 ], [ 367572.549400001764297, 254873.129599999636412 ], [ 367473.9341000020504, 254936.228199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105301054100", "MAP": "D9-9381-T019", "PARCEL_NAM": "124", "ACRE": null, "LONGITUDE": -64.94563062, "LATITUDE": 18.34121018, "OBJECTID_1": 9177, "PARCEL_NO_": "105301054100", "Tax_Legal_": "124 ALTONA & WELGUNST KRONPRINDSENS QTR", "Name": "Mustafa A, Muhammad M, and Mamoon M Mustafa", "Address": "PO BOX 10527", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25100, "Improved_V": 47700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.635283272699994, "SHAPE_Area": 514.67697956899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357245.85700000077486, 256834.951200000941753 ], [ 357244.259099997580051, 256832.793999999761581 ], [ 357237.568800002336502, 256839.723200000822544 ], [ 357236.678599998354912, 256863.040199998766184 ], [ 357254.294699996709824, 256864.937600001692772 ], [ 357255.236400000751019, 256861.714400000870228 ], [ 357261.7533999979496, 256853.957299999892712 ], [ 357247.051299996674061, 256836.379099998623133 ], [ 357245.85700000077486, 256834.951200000941753 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105201062000", "MAP": "F9-1329-T64", "PARCEL_NAM": "25N", "ACRE": null, "LONGITUDE": -64.9653265, "LATITUDE": 18.34366069, "OBJECTID_1": 7748, "PARCEL_NO_": "105201062000", "Tax_Legal_": "LINDBERG BAY 25J & 25N S S QTR", "Name": "MAGRAS, RICHARD & ELLEN M", "Address": "PO Box 10618", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9900, "Improved_V": 85300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.750519572899996, "SHAPE_Area": 72.395283138600007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355175.072400003671646, 257105.406800001859665 ], [ 355175.175499998033047, 257104.055799998342991 ], [ 355152.424099996685982, 257104.132500000298023 ], [ 355152.560900002717972, 257106.472100000828505 ], [ 355152.547600001096725, 257108.037300001829863 ], [ 355175.079899996519089, 257106.5614 ], [ 355175.072400003671646, 257105.406800001859665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101301019900", "MAP": "D9-9390-T019", "PARCEL_NAM": "10-3-6A", "ACRE": "0.06", "LONGITUDE": -64.92894214, "LATITUDE": 18.37356557, "OBJECTID_1": 864, "PARCEL_NO_": "101301019900", "Tax_Legal_": "PETERBORG 10-3-5 GREAT NORTHSIDE QTR.", "Name": "WOOTTON, KENNETH (Trustee)", "Address": "5100 South Service Rd", "City": "BURLINGTON", "State": "Ontario", "Zip": 0, "Country": "Canada", "Land_Value": 183000, "Improved_V": 666200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.725391224199996, "SHAPE_Area": 237.84950971500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358992.895999997854233, 260466.932000000029802 ], [ 358982.204800002276897, 260437.647399999201298 ], [ 358981.375299997627735, 260436.225400000810623 ], [ 358979.479299999773502, 260434.447900000959635 ], [ 358975.450199998915195, 260432.907400000840425 ], [ 358971.42119999974966, 260433.499899998307228 ], [ 358969.296499997377396, 260434.302600000053644 ], [ 358990.675999999046326, 260467.377999998629093 ], [ 358992.895999997854233, 260466.932000000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601083800", "MAP": "D9-9342-T019", "PARCEL_NAM": "10D", "ACRE": "0.51", "LONGITUDE": -64.88016012, "LATITUDE": 18.32589195, "OBJECTID_1": 38215, "PARCEL_NO_": "107601083800", "Tax_Legal_": "10D MARIENDAHL NO.4 RED HOOK QTR", "Name": "YUSUF, MANAL YAHYA", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 68500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.88286299200001, "SHAPE_Area": 1650.3278608000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364206.381599999964237, 255211.753299999982119 ], [ 364185.518299996852875, 255184.379999998956919 ], [ 364183.313699997961521, 255186.394799999892712 ], [ 364154.893100000917912, 255209.593600001186132 ], [ 364153.262000001966953, 255210.7939000017941 ], [ 364171.211800001561642, 255236.301399998366833 ], [ 364175.112800002098083, 255241.665300000458956 ], [ 364209.97580000013113, 255216.468899998813868 ], [ 364206.381599999964237, 255211.753299999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010600", "MAP": "D9-1475-T79", "PARCEL_NAM": "10A", "ACRE": null, "LONGITUDE": -64.88044138, "LATITUDE": 18.32608253, "OBJECTID_1": 37897, "PARCEL_NO_": "107601010600", "Tax_Legal_": "10A & 10F MARIENDAHL NO.3 RED HOOK QTR", "Name": "SAMAD, AYMAN", "Address": "PO Box 304157", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81700, "Improved_V": 45400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.646196621, "SHAPE_Area": 799.99770661299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364171.288800001144409, 255244.429000001400709 ], [ 364149.349500000476837, 255213.673000000417233 ], [ 364129.317699998617172, 255228.413899999111891 ], [ 364136.733300000429153, 255241.447399999946356 ], [ 364146.768100000917912, 255242.991200000047684 ], [ 364157.060199998319149, 255242.219300001859665 ], [ 364163.374499998986721, 255250.148899998515844 ], [ 364168.124200001358986, 255256.113600000739098 ], [ 364175.585900001227856, 255250.453000001609325 ], [ 364171.288800001144409, 255244.429000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-5011-T90", "PARCEL_NAM": "10 REM (WESTERN PORTION)", "ACRE": "9.64", "LONGITUDE": -64.88002792, "LATITUDE": 18.32605977, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.742357715, "SHAPE_Area": 333.496290031 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364175.112800002098083, 255241.665300000458956 ], [ 364179.450199998915195, 255247.73369999974966 ], [ 364214.829499997198582, 255222.837099999189377 ], [ 364209.97580000013113, 255216.468899998813868 ], [ 364175.112800002098083, 255241.665300000458956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-9398-T019", "PARCEL_NAM": "10E", "ACRE": "3.10", "LONGITUDE": -64.88066697, "LATITUDE": 18.32663111, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 628.57376692699995, "SHAPE_Area": 14064.4803947 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364107.451300002634525, 255387.649000000208616 ], [ 364230.82209999859333, 255243.81980000063777 ], [ 364214.829499997198582, 255222.837099999189377 ], [ 364175.585900001227856, 255250.453000001609325 ], [ 364168.124200001358986, 255256.113600000739098 ], [ 364163.374499998986721, 255250.148899998515844 ], [ 364157.060199998319149, 255242.219300001859665 ], [ 364146.768100000917912, 255242.991200000047684 ], [ 364136.733300000429153, 255241.447399999946356 ], [ 364129.317699998617172, 255228.413899999111891 ], [ 364079.427699998021126, 255265.126800000667572 ], [ 364072.921499997377396, 255271.617499999701977 ], [ 364063.958599999547005, 255282.521000001579523 ], [ 364030.466399997472763, 255333.120400000363588 ], [ 364050.491099998354912, 255348.905200000852346 ], [ 364052.881300002336502, 255352.302299998700619 ], [ 364056.896700002253056, 255354.234999999403954 ], [ 364060.928199999034405, 255354.26799999922514 ], [ 364064.162500001490116, 255353.239000000059605 ], [ 364071.491200000047684, 255344.855200000107288 ], [ 364077.264899998903275, 255329.703699998557568 ], [ 364080.527900002896786, 255325.297499999403954 ], [ 364085.387299999594688, 255322.804099999368191 ], [ 364091.033299997448921, 255322.639199998229742 ], [ 364097.456900000572205, 255325.858199998736382 ], [ 364100.638899996876717, 255330.950500000268221 ], [ 364101.240299999713898, 255355.020100001245737 ], [ 364104.2550999969244, 255379.74269999936223 ], [ 364106.620099999010563, 255386.094900000840425 ], [ 364107.451300002634525, 255387.649000000208616 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96940516, "LATITUDE": 18.33973482, "OBJECTID_1": 7430, "PARCEL_NO_": "105104010400", "Tax_Legal_": "LINDBERG BAY 66 4A SOUTHSIDE QTR", "Name": "UNIVERSITY OF THE VI", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4941000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 333.77918121499999, "SHAPE_Area": 6702.6197804100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354685.570100001990795, 256629.759500000625849 ], [ 354690.136900000274181, 256703.589000001549721 ], [ 354707.651500001549721, 256703.652800001204014 ], [ 354777.811499997973442, 256702.960499998182058 ], [ 354792.061899997293949, 256639.326900001615286 ], [ 354685.570100001990795, 256629.759500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105104010400", "MAP": "D9-9399-T019", "PARCEL_NAM": "66-5", "ACRE": "0.82", "LONGITUDE": -64.97019365, "LATITUDE": 18.33971847, "OBJECTID_1": 7430, "PARCEL_NO_": "105104010400", "Tax_Legal_": "LINDBERG BAY 66 4A SOUTHSIDE QTR", "Name": "UNIVERSITY OF THE VI", "Address": null, "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 4941000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.49634464799999, "SHAPE_Area": 5420.7332329399997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354685.570100001990795, 256629.759500000625849 ], [ 354616.116700001060963, 256623.51969999819994 ], [ 354618.178400002419949, 256703.326699998229742 ], [ 354629.09179999679327, 256703.366500001400709 ], [ 354690.136900000274181, 256703.589000001549721 ], [ 354685.570100001990795, 256629.759500000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107601010400", "MAP": "D9-9401-T019", "PARCEL_NAM": "10F", "ACRE": "0.08", "LONGITUDE": -64.88031872000001, "LATITUDE": 18.32604898, "OBJECTID_1": 37896, "PARCEL_NO_": "107601010400", "Tax_Legal_": "MARIENDAHL-WESTERN POR 10 NO.3 RED HOOK QTR", "Name": "DENCH, WINIFRED", "Address": "9384 NW 24 Pl", "City": "PEMBROOK", "State": "Florida", "Zip": 33024, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.043322797, "SHAPE_Area": 214.43611710799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364179.450199998915195, 255247.73369999974966 ], [ 364175.112800002098083, 255241.665300000458956 ], [ 364171.211800001561642, 255236.301399998366833 ], [ 364153.262000001966953, 255210.7939000017941 ], [ 364149.349500000476837, 255213.673000000417233 ], [ 364171.288800001144409, 255244.429000001400709 ], [ 364175.585900001227856, 255250.453000001609325 ], [ 364179.450199998915195, 255247.73369999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301094300", "MAP": "D9-9400-T019", "PARCEL_NAM": "90A-1", "ACRE": "0.35", "LONGITUDE": -64.94587708, "LATITUDE": 18.34713189, "OBJECTID_1": 9327, "PARCEL_NO_": "105301094300", "Tax_Legal_": "SOLBERG 90A LT. NORTHSIDE", "Name": "HALL, SAMUEL H", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 107400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.683322965, "SHAPE_Area": 1435.17313384 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357229.124200001358986, 257482.577899999916553 ], [ 357196.887000001966953, 257487.030600000172853 ], [ 357198.98480000346899, 257501.500799998641014 ], [ 357205.880199998617172, 257543.986999999731779 ], [ 357209.146799996495247, 257539.158599998801947 ], [ 357209.98369999974966, 257535.576900001615286 ], [ 357214.063799999654293, 257529.910700000822544 ], [ 357219.754699997603893, 257524.468899998813868 ], [ 357227.864600002765656, 257519.046799998730421 ], [ 357237.570900000631809, 257515.53770000115037 ], [ 357232.093999996781349, 257495.861099999397993 ], [ 357229.124200001358986, 257482.577899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301092200", "MAP": "D9-9400-T019", "PARCEL_NAM": "91A REM", "ACRE": "0.08", "LONGITUDE": -64.94554974, "LATITUDE": 18.34689013, "OBJECTID_1": 9309, "PARCEL_NO_": "105301092200", "Tax_Legal_": "SOLBERG 91A LT. NORTHSIDE", "Name": "HALL, SAMUEL H", "Address": "PO Box 305587", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 99100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.784475958, "SHAPE_Area": 368.51480688499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357229.124200001358986, 257482.577899999916553 ], [ 357274.269799999892712, 257485.841400001198053 ], [ 357272.489399999380112, 257477.977400001138449 ], [ 357227.171099998056889, 257473.842099998146296 ], [ 357229.124200001358986, 257482.577899999916553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105202022500", "MAP": "D9-9402-T019", "PARCEL_NAM": "69-7", "ACRE": "0.14", "LONGITUDE": -64.95516551, "LATITUDE": 18.34217925, "OBJECTID_1": 8116, "PARCEL_NO_": "105202022500", "Tax_Legal_": "69-1,69-2,69-4,69REM & ROW 69-A CONTANT", "Name": "HOLIDAY DRIVE LLC", "Address": "12559 Holiday Dr", "City": "ASLIP", "State": "Illinois", "Zip": 60603, "Country": "United States", "Land_Value": 481100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.317859857399995, "SHAPE_Area": 523.51686504999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356248.289099998772144, 256941.945099998265505 ], [ 356248.501400001347065, 256937.939899999648333 ], [ 356239.594200000166893, 256937.120799999684095 ], [ 356239.557800002396107, 256941.310100000351667 ], [ 356225.264799997210503, 256940.688700001686811 ], [ 356224.955799996852875, 256959.227000001817942 ], [ 356225.11150000244379, 256959.2489 ], [ 356243.685300000011921, 256961.630199998617172 ], [ 356245.039846786530688, 256961.62173976059421 ], [ 356246.373586476256605, 256961.385081753047416 ], [ 356247.648352368501946, 256960.92699825350428 ], [ 356248.827665374614298, 256960.260597918822896 ], [ 356249.877777914924081, 256959.404950663651107 ], [ 356250.76863964938093, 256958.384541950159473 ], [ 356251.474757407675497, 256957.228572104562772 ], [ 356251.975924709171522, 256955.970120711601339 ], [ 356252.257799997925758, 256954.645199999213219 ], [ 356252.257799997925758, 256951.628899998962879 ], [ 356252.10509621433448, 256950.925411471776897 ], [ 356251.844245041313116, 256950.254463471588679 ], [ 356251.481666773033794, 256949.632569949520985 ], [ 356251.026285498694051, 256949.075037485512439 ], [ 356250.48930945515167, 256948.595588549651438 ], [ 356249.883955160155892, 256948.206023752863985 ], [ 356249.225122115865815, 256947.915931400028057 ], [ 356248.529026089701802, 256947.732451494433917 ], [ 356247.812799997627735, 256947.660100001841784 ], [ 356248.289099998772144, 256941.945099998265505 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102402010600", "MAP": "D9-9404-T019", "PARCEL_NAM": "2T", "ACRE": "0.50", "LONGITUDE": -64.99910336000001, "LATITUDE": 18.36220214, "OBJECTID_1": 1417, "PARCEL_NO_": "102402010600", "Tax_Legal_": "PAR 2 Rem. HOPE No.5 WEST END QTR.", "Name": "RED BALL GROCERY, INC.", "Address": "PO Box 515", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.91902975900001, "SHAPE_Area": 2281.1418483799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351588.813699997961521, 259098.270199999213219 ], [ 351542.914499998092651, 259118.934399999678135 ], [ 351572.393100000917912, 259164.240499999374151 ], [ 351607.595200002193451, 259136.916600000113249 ], [ 351588.813699997961521, 259098.270199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004037800", "MAP": "D9-9410-T019", "PARCEL_NAM": "333-1", "ACRE": "0.25", "LONGITUDE": -64.90275559, "LATITUDE": 18.34834194, "OBJECTID_1": 6195, "PARCEL_NO_": "103004037800", "Tax_Legal_": "WINTBERG 333 GREAT NORTHSIDE QTR", "Name": "HENDRICKS, ARTHUR & MARY", "Address": "PO Box 7934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 63700, "Improved_V": 287400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 162.81877208899999, "SHAPE_Area": 1168.1163760300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361804.118000000715256, 257666.869600001722574 ], [ 361780.36089999973774, 257654.635400000959635 ], [ 361777.904600001871586, 257653.592300001531839 ], [ 361769.69030000269413, 257664.270899999886751 ], [ 361762.297499999403954, 257672.485199999064207 ], [ 361753.261699996888638, 257682.890000000596046 ], [ 361749.017700001597404, 257688.092300001531839 ], [ 361743.541500002145767, 257694.390000000596046 ], [ 361746.852899998426437, 257696.831999998539686 ], [ 361761.040799997746944, 257705.5641999989748 ], [ 361769.592600002884865, 257690.082400001585484 ], [ 361804.118000000715256, 257666.869600001722574 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014400", "MAP": "D9-9420-T020", "PARCEL_NAM": "9 REM", "ACRE": "0.66", "LONGITUDE": -64.9587909, "LATITUDE": 18.35561632, "OBJECTID_1": 3222, "PARCEL_NO_": "102703014400", "Tax_Legal_": "PAR 9 REM & EASEMENTS \"A',\"B\" &\"C\" BONNE RESOLUTION 5 LITTLE NORTHSIDE QTR", "Name": "ANNE URISE BERRY LIVING REVOCABLE TRUST", "Address": "PO Box 7325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 157500, "Improved_V": 215800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 393.020713376, "SHAPE_Area": 2337.8765334899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355869.226400002837181, 258454.681600000709295 ], [ 355864.445600003004074, 258394.975900001823902 ], [ 355863.282899998128414, 258395.104600001126528 ], [ 355858.075900003314018, 258396.245099999010563 ], [ 355844.701800003647804, 258399.174400001764297 ], [ 355831.728900000452995, 258407.511999998241663 ], [ 355827.676100000739098, 258411.893800001591444 ], [ 355823.590199999511242, 258416.311299998313189 ], [ 355809.722900003194809, 258434.985100001096725 ], [ 355824.5591000020504, 258463.455800000578165 ], [ 355824.828500002622604, 258463.972699999809265 ], [ 355843.356899999082088, 258457.83390000090003 ], [ 355842.696699999272823, 258446.941500000655651 ], [ 355841.935599997639656, 258434.383799999952316 ], [ 355859.308700002729893, 258408.935199998319149 ], [ 355864.101899996399879, 258458.276500001549721 ], [ 355864.725100003182888, 258464.692200001329184 ], [ 355873.696400001645088, 258494.383099999278784 ], [ 355877.49719999730587, 258505.785300001502037 ], [ 355882.206000000238419, 258504.696100000292063 ], [ 355878.574799999594688, 258493.177200000733137 ], [ 355869.94990000128746, 258464.397799998521805 ], [ 355869.226400002837181, 258454.681600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703013900", "MAP": "D9-9420-T020", "PARCEL_NAM": "9-2", "ACRE": "0.28", "LONGITUDE": -64.95906361, "LATITUDE": 18.35591776, "OBJECTID_1": 3217, "PARCEL_NO_": "102703013900", "Tax_Legal_": "BONNE RESOLUTION 9-2\nLITTLE NORTHSIDE QTR", "Name": "ANNE URISE BERRY LIVING REVOCABLE TRUST", "Address": "PO Box 7325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 49800, "Improved_V": 183800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.35768705699999, "SHAPE_Area": 1204.5520281300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355827.177599996328354, 258468.480700001120567 ], [ 355809.722900003194809, 258434.985100001096725 ], [ 355804.013899996876717, 258442.53770000115037 ], [ 355794.250100001692772, 258452.801399998366833 ], [ 355793.328599996864796, 258453.6418999992311 ], [ 355807.890699997544289, 258481.090199999511242 ], [ 355816.698899999260902, 258497.69310000166297 ], [ 355835.313799999654293, 258484.67680000141263 ], [ 355831.93639999628067, 258477.807799998670816 ], [ 355827.177599996328354, 258468.480700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703014400", "MAP": "D9-9420-T020", "PARCEL_NAM": "9A REM", "ACRE": "0.27", "LONGITUDE": -64.95873275, "LATITUDE": 18.35577599, "OBJECTID_1": 3222, "PARCEL_NO_": "102703014400", "Tax_Legal_": "PAR 9 REM & EASEMENTS \"A',\"B\" &\"C\" BONNE RESOLUTION 5 LITTLE NORTHSIDE QTR", "Name": "ANNE URISE BERRY LIVING REVOCABLE TRUST", "Address": "PO Box 7325", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 157500, "Improved_V": 215800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.61194754300001, "SHAPE_Area": 1336.0129991199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355864.101899996399879, 258458.276500001549721 ], [ 355859.308700002729893, 258408.935199998319149 ], [ 355841.935599997639656, 258434.383799999952316 ], [ 355842.696699999272823, 258446.941500000655651 ], [ 355843.356899999082088, 258457.83390000090003 ], [ 355824.828500002622604, 258463.972699999809265 ], [ 355827.177599996328354, 258468.480700001120567 ], [ 355831.93639999628067, 258477.807799998670816 ], [ 355835.313799999654293, 258484.67680000141263 ], [ 355853.244999997317791, 258472.492800001055002 ], [ 355864.725100003182888, 258464.692200001329184 ], [ 355864.101899996399879, 258458.276500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703015100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.958792, "LATITUDE": 18.35663162, "OBJECTID_1": 3229, "PARCEL_NO_": "102703015100", "Tax_Legal_": "BONNE RESOLUTION 10-3 LT. NORTHSIDE", "Name": "BAKER, HELEN BERRY", "Address": "PO Box 5109", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 106100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 5.3257746263200003, "SHAPE_Area": 1.0556516386499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355842.789899997413158, 258546.872499998658895 ], [ 355842.271799996495247, 258545.896000001579523 ], [ 355841.186899997293949, 258547.926300000399351 ], [ 355842.789899997413158, 258546.872499998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102802011600", "MAP": "D9-9374-T019", "PARCEL_NAM": "ROW 2D-3R", "ACRE": "0.06", "LONGITUDE": -64.93939264, "LATITUDE": 18.36104812, "OBJECTID_1": 4036, "PARCEL_NO_": "102802011600", "Tax_Legal_": "2D-3A & 2D-3R (ROW)LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BRYAN, DENNY ANTHONY", "Address": "PO Box 306407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 111200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.842367066400001, "SHAPE_Area": 285.62162949700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357900.284999996423721, 259044.212799999862909 ], [ 357894.721799999475479, 259034.668000001460314 ], [ 357892.790700003504753, 259038.842500001192093 ], [ 357887.328299999237061, 259050.650600001215935 ], [ 357882.45269999653101, 259055.043699998408556 ], [ 357871.943599998950958, 259058.124099999666214 ], [ 357872.145599998533726, 259058.712900001555681 ], [ 357873.845200002193451, 259063.666700001806021 ], [ 357881.258299998939037, 259063.254599999636412 ], [ 357888.93129999935627, 259060.079500000923872 ], [ 357894.752099998295307, 259055.846200000494719 ], [ 357896.86879999935627, 259051.083700001239777 ], [ 357900.284999996423721, 259044.212799999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102802012300", "MAP": "D9-8180-T008", "PARCEL_NAM": "ROW 2E-3-C", "ACRE": "0.19", "LONGITUDE": -64.93915433, "LATITUDE": 18.36063643, "OBJECTID_1": 4041, "PARCEL_NO_": "102802012300", "Tax_Legal_": "2E-3-C ROW LERKENLUND NO.9 GREAT NORTHSIDE QTR", "Name": "BERRY, JOSEPH ADELBERT,URISE BERRY,JOHN BERRY", "Address": "2E-3 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 24700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.166786057, "SHAPE_Area": 452.78474922300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357935.496899999678135, 258967.914000000804663 ], [ 357928.922499999403954, 258967.828299999237061 ], [ 357926.998199999332428, 258970.740600001066923 ], [ 357926.993900001049042, 258971.267099998891354 ], [ 357923.736299999058247, 258980.981300000101328 ], [ 357915.375699996948242, 258999.341699998825788 ], [ 357915.373499996960163, 258999.604899998754263 ], [ 357910.26410000026226, 259009.040800001472235 ], [ 357907.17509999871254, 259014.959600001573563 ], [ 357902.192100003361702, 259024.507500000298023 ], [ 357894.721799999475479, 259034.668000001460314 ], [ 357900.284999996423721, 259044.212799999862909 ], [ 357902.826899997889996, 259038.328699998557568 ], [ 357906.61429999768734, 259029.752900000661612 ], [ 357931.264700002968311, 258975.677299998700619 ], [ 357935.496899999678135, 258967.914000000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102802015900", "MAP": "D9-9087-T016", "PARCEL_NAM": "2E-4A", "ACRE": "0.09", "LONGITUDE": -64.93873074, "LATITUDE": 18.36082792, "OBJECTID_1": 4077, "PARCEL_NO_": "102802015900", "Tax_Legal_": "2E-4-1 LERKUNLUND NO 9 GREAT NORTHSIDE QTR", "Name": "BERRY, ROBERT", "Address": "2E-3 Estate Lerkenlund", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 81200, "Improved_V": 177400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.011151265600006, "SHAPE_Area": 296.615692158 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357957.561800003051758, 259004.639199998229742 ], [ 357950.977899998426437, 259047.434300001710653 ], [ 357967.085199996829033, 259033.531500000506639 ], [ 357965.809299997985363, 259030.50450000166893 ], [ 357960.999399997293949, 259015.045299999415874 ], [ 357959.014700002968311, 259008.962999999523163 ], [ 357957.903599999845028, 259005.557900000363588 ], [ 357957.561800003051758, 259004.639199998229742 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703024000", "MAP": "A9-833-T017", "PARCEL_NAM": "109-2", "ACRE": "0.57", "LONGITUDE": -64.96354842, "LATITUDE": 18.35456336, "OBJECTID_1": 3288, "PARCEL_NO_": "102703024000", "Tax_Legal_": "109-2 CONTANT NO.7B SOUTHSIDE QTR", "Name": "FRANCIS, JOHNSON", "Address": "PO Box 8772", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 62300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 266.28779595999998, "SHAPE_Area": 1523.9837930399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355349.80969999730587, 258296.590599998831749 ], [ 355349.659400001168251, 258296.541999999433756 ], [ 355343.19990000128746, 258297.544599998742342 ], [ 355327.824199996888638, 258303.962699998170137 ], [ 355318.918799996376038, 258308.111600000411272 ], [ 355302.709799997508526, 258317.689300000667572 ], [ 355297.047700002789497, 258319.753899998962879 ], [ 355270.385399997234344, 258325.868500001728535 ], [ 355333.355999998748302, 258323.089899998158216 ], [ 355360.382200002670288, 258321.897399999201298 ], [ 355397.556000001728535, 258320.257100000977516 ], [ 355365.704700000584126, 258306.172499999403954 ], [ 355358.482100002467632, 258302.102600000798702 ], [ 355353.680100001394749, 258297.841499999165535 ], [ 355349.80969999730587, 258296.590599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703023300", "MAP": "B9-164-T67", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96406254, "LATITUDE": 18.35203332, "OBJECTID_1": 3284, "PARCEL_NO_": "102703023300", "Tax_Legal_": "LINDBERG BAY 46-1 SOUTHSIDE QTR", "Name": "FRANCIS, SIMONE R. D. & STEPHANIE M. D.", "Address": "PO Box 334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 13200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2.5977611201099999, "SHAPE_Area": 0.1206847488 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355289.225400000810623, 258032.687300000339746 ], [ 355289.000399999320507, 258033.867300000041723 ], [ 355289.202299997210503, 258033.88120000064373 ], [ 355289.225400000810623, 258032.687300000339746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703024400", "MAP": "A9-845-T019", "PARCEL_NAM": "109-4", "ACRE": "0.50", "LONGITUDE": -64.96363241, "LATITUDE": 18.35412253, "OBJECTID_1": 3290, "PARCEL_NO_": "102703024400", "Tax_Legal_": "109-4 CONTANT NO.7B SOUTHSIDE QTR", "Name": "CHARLES, ALVINUS B. JR. & CORELLE A", "Address": "6155 Estate Frydenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 52900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 197.76074167799999, "SHAPE_Area": 1910.66375438 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355338.42509999871254, 258292.886500000953674 ], [ 355359.97919999808073, 258232.027800001204014 ], [ 355318.321000002324581, 258242.1266999989748 ], [ 355313.005199998617172, 258304.322000000625849 ], [ 355318.170000001788139, 258301.350499998778105 ], [ 355338.42509999871254, 258292.886500000953674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102703024200", "MAP": "A9-845-T019", "PARCEL_NAM": "109-3", "ACRE": "0.50", "LONGITUDE": -64.96397041, "LATITUDE": 18.35425421, "OBJECTID_1": 3289, "PARCEL_NO_": "102703024200", "Tax_Legal_": "109-3 CONTANT NO.7B SOUTHSIDE QTR", "Name": "WELSH, JODIE", "Address": "PO Box 8976", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 52900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.617688133, "SHAPE_Area": 2391.4255810300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355313.005199998617172, 258304.322000000625849 ], [ 355318.321000002324581, 258242.1266999989748 ], [ 355279.8783999979496, 258251.446199998259544 ], [ 355278.46339999884367, 258291.390799999237061 ], [ 355277.503200002014637, 258318.496199999004602 ], [ 355285.788099996745586, 258316.284200001507998 ], [ 355297.911499999463558, 258313.006000000983477 ], [ 355313.005199998617172, 258304.322000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105501020500", "MAP": "D9-9389-T019", "PARCEL_NAM": "60-2", "ACRE": "0.70", "LONGITUDE": -64.91334419, "LATITUDE": 18.34687814, "OBJECTID_1": 19714, "PARCEL_NO_": "105501020500", "Tax_Legal_": "REM ESTATE THOMAS NO 6A NEW QUARTER", "Name": "LOCKHART REALTY INC", "Address": "PO Box 7020", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3549900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.64398677899999, "SHAPE_Area": 2468.6125941199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 360707.030900001525879, 257515.941899999976158 ], [ 360707.030900001525879, 257491.445799998939037 ], [ 360636.254699997603893, 257496.0760000012815 ], [ 360597.22860000282526, 257501.36769999936223 ], [ 360598.260999999940395, 257521.241799999028444 ], [ 360610.126999996602535, 257520.219300001859665 ], [ 360610.290600001811981, 257520.208000000566244 ], [ 360648.491700001060963, 257517.573499999940395 ], [ 360649.228100001811981, 257517.5614 ], [ 360687.562200002372265, 257516.93299999833107 ], [ 360688.840700000524521, 257516.912000000476837 ], [ 360707.030900001525879, 257515.941899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-1987-T82", "PARCEL_NAM": "11-6", "ACRE": "0.18", "LONGITUDE": -64.9610879, "LATITUDE": 18.35969687, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.84676342500001, "SHAPE_Area": 830.57500331000006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355610.309000000357628, 258882.8277000002563 ], [ 355611.293499998748302, 258866.441399998962879 ], [ 355606.718099996447563, 258867.681000001728535 ], [ 355579.487400002777576, 258875.058299999684095 ], [ 355579.181000001728535, 258891.756799999624491 ], [ 355604.643799997866154, 258901.733500000089407 ], [ 355609.068800002336502, 258903.467300001531839 ], [ 355610.309000000357628, 258882.8277000002563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-1934-T82", "PARCEL_NAM": "11-2", "ACRE": "0.69", "LONGITUDE": -64.9608172, "LATITUDE": 18.36013928, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 235.82608549099999, "SHAPE_Area": 2872.8118914199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355654.522100001573563, 258921.785700000822544 ], [ 355661.042400002479553, 258897.479699999094009 ], [ 355649.868500001728535, 258906.109900001436472 ], [ 355630.748999997973442, 258907.730200000107288 ], [ 355614.52589999884367, 258909.105099998414516 ], [ 355608.689800001680851, 258909.599700000137091 ], [ 355605.192900002002716, 258915.307799998670816 ], [ 355582.778800003230572, 258951.895500000566244 ], [ 355593.447999998927116, 258952.657600000500679 ], [ 355643.148100003600121, 258964.184999998658895 ], [ 355654.522100001573563, 258921.785700000822544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "102701010700", "MAP": "D9-1987-T82", "PARCEL_NAM": "11-6", "ACRE": "7,940 sq ft", "LONGITUDE": -64.96101825, "LATITUDE": 18.35997559, "OBJECTID_1": 2781, "PARCEL_NO_": "102701010700", "Tax_Legal_": "11 REM & 16F-1 DOROTHEA NO. 6 LITTLE NORTHSIDE QTR", "Name": "Government of the Virgin Islands", "Address": "Bld Subbase", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1126700, "Improved_V": 784500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 0.08529348982, "SHAPE_Area": 0.00026203 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355603.829899996519089, 258915.0962999984622 ], [ 355603.811700001358986, 258915.128199998289347 ], [ 355603.827899999916553, 258915.128600001335144 ], [ 355603.829899996519089, 258915.0962999984622 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "109401010700", "MAP": "D9-5529-T93", "PARCEL_NAM": "1-C ROW", "ACRE": "0.02", "LONGITUDE": -64.89600128, "LATITUDE": 18.31424068, "OBJECTID_1": 41942, "PARCEL_NO_": "109401010700", "Tax_Legal_": "1 BOLONGO FRENCHMANS BAY QTR", "Name": "HODGE, RHYS S. & JEAN", "Address": "PO Box 6520", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 84100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 48.6189360507, "SHAPE_Area": 142.01289382600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362524.168499998748302, 253913.43129999935627 ], [ 362526.039099998772144, 253907.839400000870228 ], [ 362520.203500002622604, 253905.58839999884367 ], [ 362515.645499996840954, 253902.30970000103116 ], [ 362512.167400002479553, 253902.356199998408556 ], [ 362511.258500002324581, 253914.381099998950958 ], [ 362520.108199998736382, 253916.775600001215935 ], [ 362520.937899999320507, 253914.038199998438358 ], [ 362524.168499998748302, 253913.43129999935627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105204031000", "MAP": "G3-82-T53", "PARCEL_NAM": "105A", "ACRE": null, "LONGITUDE": -64.95266038, "LATITUDE": 18.33734876, "OBJECTID_1": 8596, "PARCEL_NO_": "105204031000", "Tax_Legal_": "CONTANT 105 7B SOUTHSIDE QTR", "Name": "JOSHUA, AUSTIN & RENA & OTHERS", "Address": "PO Box 692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52300, "Improved_V": 1100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.231969373, "SHAPE_Area": 241.92923661500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356526.776600003242493, 256424.699299998581409 ], [ 356516.380800001323223, 256414.481699999421835 ], [ 356511.212399996817112, 256410.280499998480082 ], [ 356504.520599998533726, 256407.269099999219179 ], [ 356495.071900002658367, 256405.723999999463558 ], [ 356503.32660000026226, 256411.499000001698732 ], [ 356499.304999999701977, 256426.633200000971556 ], [ 356493.272399999201298, 256426.950699999928474 ], [ 356492.826499998569489, 256434.064800001680851 ], [ 356513.387199997901917, 256416.135800000280142 ], [ 356524.428800001740456, 256426.340900000184774 ], [ 356526.776600003242493, 256424.699299998581409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021900", "MAP": null, "PARCEL_NAM": "15", "ACRE": null, "LONGITUDE": -64.98012304, "LATITUDE": 18.35938657, "OBJECTID_1": 2227, "PARCEL_NO_": "102601021900", "Tax_Legal_": "15&16-1 ESTATE PEARL No.2 SOUTHSIDE QTR.", "Name": "CARSON, KAREN J. & GARY L. GAUDETTE", "Address": "2876 S 1100 E", "City": "Salt Lake City", "State": "Utah", "Zip": 84106, "Country": "United States", "Land_Value": 180300, "Improved_V": 391900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.561939854, "SHAPE_Area": 2311.7380440699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353624.948700003325939, 258836.083299998193979 ], [ 353552.35360000282526, 258800.895300000905991 ], [ 353550.025799997150898, 258830.472199998795986 ], [ 353606.27589999884367, 258866.157999999821186 ], [ 353614.439699999988079, 258854.403599999845028 ], [ 353617.713500000536442, 258848.730900000780821 ], [ 353620.153999999165535, 258846.217700000852346 ], [ 353624.264700002968311, 258836.963199999183416 ], [ 353624.948700003325939, 258836.083299998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601021900", "MAP": null, "PARCEL_NAM": "16-1", "ACRE": null, "LONGITUDE": -64.97994489, "LATITUDE": 18.35928613, "OBJECTID_1": 2227, "PARCEL_NO_": "102601021900", "Tax_Legal_": "15&16-1 ESTATE PEARL No.2 SOUTHSIDE QTR.", "Name": "CARSON, KAREN J. & GARY L. GAUDETTE", "Address": "2876 S 1100 E", "City": "Salt Lake City", "State": "Utah", "Zip": 84106, "Country": "United States", "Land_Value": 180300, "Improved_V": 391900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.515685555499999, "SHAPE_Area": 189.19387668 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353585.389300003647804, 258816.90819999948144 ], [ 353624.948700003325939, 258836.083299998193979 ], [ 353602.204800002276897, 258815.493900001049042 ], [ 353585.389300003647804, 258816.90819999948144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601022300", "MAP": "G9-2094-T72", "PARCEL_NAM": "16", "ACRE": ".97", "LONGITUDE": -64.98006345, "LATITUDE": 18.35901261, "OBJECTID_1": 2231, "PARCEL_NO_": "102601022300", "Tax_Legal_": "PEARL 16 S S QTR", "Name": "FRANCIS, FITZROY & JUELLE A", "Address": "8131 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 148300, "Improved_V": 206800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.10769256999998, "SHAPE_Area": 3797.0228861000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353632.509499996900558, 258815.710299998521805 ], [ 353634.177799999713898, 258809.179999999701977 ], [ 353635.021899998188019, 258804.754000000655651 ], [ 353635.85700000077486, 258801.383299998939037 ], [ 353636.10980000346899, 258796.655999999493361 ], [ 353564.401000000536442, 258747.592000000178814 ], [ 353558.993699997663498, 258757.415199998766184 ], [ 353557.618100002408028, 258763.207499999552965 ], [ 353554.972099997103214, 258774.348499998450279 ], [ 353556.0304000005126, 258778.158500000834465 ], [ 353552.643700003623962, 258797.208599999547005 ], [ 353552.35360000282526, 258800.895300000905991 ], [ 353585.389300003647804, 258816.90819999948144 ], [ 353602.204800002276897, 258815.493900001049042 ], [ 353624.948700003325939, 258836.083299998193979 ], [ 353626.710600003600121, 258833.816899999976158 ], [ 353632.509499996900558, 258815.710299998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "104801010100", "MAP": "D9-8667-T012", "PARCEL_NAM": "GREEN SPACE", "ACRE": null, "LONGITUDE": -65.02599633, "LATITUDE": 18.34354055, "OBJECTID_1": 7189, "PARCEL_NO_": "104801010100", "Tax_Legal_": "4I-B-REM FORTUNA NO. 8 WEST END QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 631200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 29.5896272094, "SHAPE_Area": 34.296803247900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 348747.915899999439716, 257037.202199999243021 ], [ 348750.676299996674061, 257049.882800001651049 ], [ 348752.124399997293949, 257045.643800001591444 ], [ 348752.984700001776218, 257039.31810000166297 ], [ 348750.581900000572205, 257037.398600000888109 ], [ 348747.915899999439716, 257037.202199999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "103004042100", "MAP": "D9-9425-T020", "PARCEL_NAM": "2JA", "ACRE": "0.30", "LONGITUDE": -64.90575776, "LATITUDE": 18.35237866, "OBJECTID_1": 6231, "PARCEL_NO_": "103004042100", "Tax_Legal_": "PAR 2J REM WINTBERG 3 NORTHSIDE QTR D9-9425-T020", "Name": "GRACE L GREGORY REVOCABLE LIVING TRUST", "Address": "PO Box 7431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8010431, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 156.72393919300001, "SHAPE_Area": 1491.6273409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361470.866099998354912, 258099.944400001317263 ], [ 361440.715800002217293, 258098.945999998599291 ], [ 361436.884800001978874, 258113.315799999982119 ], [ 361427.935999996960163, 258141.834199998527765 ], [ 361461.524499997496605, 258146.4527000002563 ], [ 361461.607100002467632, 258145.604299999773502 ], [ 361464.130400002002716, 258133.381599999964237 ], [ 361470.742700003087521, 258114.437300000339746 ], [ 361470.866099998354912, 258099.944400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107404032500", "MAP": "D9-9436-T020", "PARCEL_NAM": "87-1", "ACRE": "0.13", "LONGITUDE": -64.90048063, "LATITUDE": 18.31552314, "OBJECTID_1": 37410, "PARCEL_NO_": "107404032500", "Tax_Legal_": "BOLONGO 88 3 FRENCHMAN BAY QTR", "Name": "Elbert B Proctor, Jr. & Abriel Matthias-Proctor", "Address": "Po Box 302703", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 82800, "Improved_V": 798200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.67084813599999, "SHAPE_Area": 640.99496708799995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362021.998400002717972, 254037.215799998492002 ], [ 362006.489699997007847, 254042.815600000321865 ], [ 362077.018299996852875, 254062.425999999046326 ], [ 362069.046099998056889, 254052.74549999833107 ], [ 362058.528200000524521, 254045.496700000017881 ], [ 362039.197999998927116, 254039.100699998438358 ], [ 362021.998400002717972, 254037.215799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602026100", "MAP": "A9-167I-71", "PARCEL_NAM": "394-310", "ACRE": "0.154", "LONGITUDE": -64.88916467, "LATITUDE": 18.34816018, "OBJECTID_1": 21091, "PARCEL_NO_": "105602026100", "Tax_Legal_": "394-310 ANNAS RETREAT NEW QTR", "Name": "ROGERS, ELVY A. JR", "Address": "394-320 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 18800, "Improved_V": 96600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.547873033, "SHAPE_Area": 676.87706873699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363206.726199999451637, 257656.218100000172853 ], [ 363200.905799999833107, 257652.125500001013279 ], [ 363198.691799998283386, 257654.130800001323223 ], [ 363180.837899997830391, 257666.138700000941753 ], [ 363191.27139999717474, 257671.923599999397993 ], [ 363212.13849999755621, 257683.493400000035763 ], [ 363225.172499999403954, 257667.979200001806021 ], [ 363206.726199999451637, 257656.218100000172853 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602030800", "MAP": "A9-167I-T71", "PARCEL_NAM": "394-281", "ACRE": "0.17", "LONGITUDE": -64.89006642, "LATITUDE": 18.34807399, "OBJECTID_1": 21107, "PARCEL_NO_": "105602030800", "Tax_Legal_": "ANNAS RETREAT 394-281 NEW QTR", "Name": "BENJAMIN, CLEOPHA", "Address": "394-281 ANNAS RETREAT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 99800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.72520216, "SHAPE_Area": 899.20546161200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363134.878100000321865, 257665.762499999254942 ], [ 363109.313500002026558, 257637.688900001347065 ], [ 363096.31360000371933, 257649.192699998617172 ], [ 363091.437899999320507, 257653.585700001567602 ], [ 363118.615199998021126, 257681.672499999403954 ], [ 363134.878100000321865, 257665.762499999254942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602030600", "MAP": "A9-167I-71", "PARCEL_NAM": "394-282", "ACRE": ".151", "LONGITUDE": -64.88938494, "LATITUDE": 18.34801873, "OBJECTID_1": 21105, "PARCEL_NO_": "105602030600", "Tax_Legal_": "394-282 ANNAS RETREAT No. 1 NEW QTR", "Name": "DEWINDT, KASIM", "Address": "PO Box 8163", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19900, "Improved_V": 143800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.676163519699998, "SHAPE_Area": 566.65032303400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363200.905799999833107, 257652.125500001013279 ], [ 363179.741700001060963, 257634.134199999272823 ], [ 363177.869800001382828, 257635.927999999374151 ], [ 363165.670800000429153, 257648.071600001305342 ], [ 363180.837899997830391, 257666.138700000941753 ], [ 363198.691799998283386, 257654.130800001323223 ], [ 363200.905799999833107, 257652.125500001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602036200", "MAP": "A9-167I-71", "PARCEL_NAM": "394-311", "ACRE": ".133", "LONGITUDE": -64.88902629, "LATITUDE": 18.34800938, "OBJECTID_1": 21158, "PARCEL_NO_": "105602036200", "Tax_Legal_": "394-311 ANNAS RETREAT NEW QUARTER", "Name": "TODMAN, JUDITH", "Address": "PO Box 306132", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16300, "Improved_V": 54200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 101.384699455, "SHAPE_Area": 636.14865495699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363223.813400000333786, 257638.203899998217821 ], [ 363219.808899998664856, 257635.004700001329184 ], [ 363214.593099996447563, 257639.728700000792742 ], [ 363200.905799999833107, 257652.125500001013279 ], [ 363206.726199999451637, 257656.218100000172853 ], [ 363225.172499999403954, 257667.979200001806021 ], [ 363239.023699998855591, 257651.205099999904633 ], [ 363223.813400000333786, 257638.203899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602030100", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-344", "ACRE": "0.15", "LONGITUDE": -64.88912579, "LATITUDE": 18.34773845, "OBJECTID_1": 21100, "PARCEL_NO_": "105602030100", "Tax_Legal_": "394-344 ANNAS RETREAT NEW QTR", "Name": "GEORGE, JR. CALHERN & JULIET", "Address": "394-344 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17100, "Improved_V": 223900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.774867423700002, "SHAPE_Area": 600.33427562400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363194.929399996995926, 257619.317699998617172 ], [ 363217.124399997293949, 257637.436099998652935 ], [ 363219.808899998664856, 257635.004700001329184 ], [ 363232.8158999979496, 257622.656599998474121 ], [ 363228.813199996948242, 257619.246399998664856 ], [ 363211.999300003051758, 257605.176600001752377 ], [ 363207.928199999034405, 257609.787300001829863 ], [ 363198.200300000607967, 257615.8293999992311 ], [ 363194.929399996995926, 257619.317699998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105602030300", "MAP": "A9-167J-T71", "PARCEL_NAM": "394-345", "ACRE": "0.15", "LONGITUDE": -64.88912579, "LATITUDE": 18.34773845, "OBJECTID_1": 21102, "PARCEL_NO_": "105602030300", "Tax_Legal_": "394-345 ANNAS RETREAT NEW QTR", "Name": "KING, RITA & CAMILLE", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 127500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.533060817600003, "SHAPE_Area": 601.68001618000005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363179.741700001060963, 257634.134199999272823 ], [ 363200.905799999833107, 257652.125500001013279 ], [ 363214.593099996447563, 257639.728700000792742 ], [ 363217.124399997293949, 257637.436099998652935 ], [ 363194.929399996995926, 257619.317699998617172 ], [ 363192.503899998962879, 257621.904500000178814 ], [ 363179.741700001060963, 257634.134199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.86136989000001, "LATITUDE": 18.32929208, "OBJECTID_1": 39261, "PARCEL_NO_": "107701030200", "Tax_Legal_": "NAZ.-2/3 UND.INT. 1 RED HOOK QUARTER", "Name": "BLONDEL, THOMAS", "Address": "PO Box 305574", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 49200, "Improved_V": 57500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.87588961200001, "SHAPE_Area": 1669.88830138 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366150.911700002849102, 255636.767000000923872 ], [ 366201.856499999761581, 255571.442699998617172 ], [ 366146.590300001204014, 255592.142000000923872 ], [ 366141.725500002503395, 255595.2685999982059 ], [ 366139.272399999201298, 255599.259300000965595 ], [ 366140.247400000691414, 255638.057199999690056 ], [ 366150.911700002849102, 255636.767000000923872 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031400", "MAP": "A9-538-T99", "PARCEL_NAM": "R-4", "ACRE": null, "LONGITUDE": -64.86073284, "LATITUDE": 18.32909446, "OBJECTID_1": 39273, "PARCEL_NO_": "107701031400", "Tax_Legal_": "NAZARETH ESTATE R-4 No.1 RED HOOK QTR.", "Name": "MILLS, JULIETT", "Address": "PO Box 502514", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 94700, "Improved_V": 382800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.89060489600001, "SHAPE_Area": 1200.1461807600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366249.821900002658367, 255595.007699999958277 ], [ 366239.611199997365475, 255558.284000001847744 ], [ 366225.876900002360344, 255561.337999999523163 ], [ 366216.157999999821186, 255566.324700001627207 ], [ 366207.261600002646446, 255569.418299999088049 ], [ 366201.856499999761581, 255571.442699998617172 ], [ 366198.69820000231266, 255581.180900000035763 ], [ 366199.751199997961521, 255581.607200000435114 ], [ 366208.137299999594688, 255585.00279999896884 ], [ 366241.825400002300739, 255598.643399998545647 ], [ 366246.058700002729893, 255596.262200001627207 ], [ 366249.821900002658367, 255595.007699999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701033600", "MAP": "A9-538-T99", "PARCEL_NAM": "R-5", "ACRE": null, "LONGITUDE": -64.8604758, "LATITUDE": 18.32904504, "OBJECTID_1": 39290, "PARCEL_NO_": "107701033600", "Tax_Legal_": "R-5 ESTATE NAZARETH #1 REDHOOK QTR", "Name": "REID, EMELIA M", "Address": "PO Box 331", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 42700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.18269662700001, "SHAPE_Area": 1053.3170598500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366260.081699997186661, 255596.791299998760223 ], [ 366273.537799999117851, 255574.412099998444319 ], [ 366284.789800003170967, 255555.698399998247623 ], [ 366277.600400000810623, 255556.931600000709295 ], [ 366271.869000002741814, 255557.914700001478195 ], [ 366250.104000002145767, 255557.103300001472235 ], [ 366239.611199997365475, 255558.284000001847744 ], [ 366249.821900002658367, 255595.007699999958277 ], [ 366250.027500003576279, 255594.9391999989748 ], [ 366254.525399997830391, 255594.674699999392033 ], [ 366260.081699997186661, 255596.791299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701032900", "MAP": "A9-538-T99", "PARCEL_NAM": "R-25", "ACRE": null, "LONGITUDE": -64.85842109, "LATITUDE": 18.32822911, "OBJECTID_1": 39284, "PARCEL_NO_": "107701032900", "Tax_Legal_": "NAZARETH ESTATE LOT R-25 No.1 REDHOOK QTR", "Name": "THOMAS, ATHNIEL J. & FRANCES S", "Address": "PO Box 10457", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.35276997, "SHAPE_Area": 659.48532085399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366487.015299998223782, 255481.359900001436472 ], [ 366477.388099998235703, 255475.581599999219179 ], [ 366455.435999996960163, 255496.722300000488758 ], [ 366453.553199999034405, 255498.634700000286102 ], [ 366481.169699996709824, 255504.954500000923872 ], [ 366486.835500001907349, 255502.467799998819828 ], [ 366490.087700001895428, 255499.328000001609325 ], [ 366491.745300002396107, 255494.0641999989748 ], [ 366491.788400001823902, 255488.9983000010252 ], [ 366490.211800001561642, 255484.7635000012815 ], [ 366488.620700001716614, 255482.217399999499321 ], [ 366487.015299998223782, 255481.359900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701033000", "MAP": "A9-538-T99", "PARCEL_NAM": "R-24", "ACRE": null, "LONGITUDE": -64.85861836, "LATITUDE": 18.32810805, "OBJECTID_1": 39285, "PARCEL_NO_": "107701033000", "Tax_Legal_": "NAZARETH ESTATE LOT R-24 REDHOOK QTR. #1", "Name": "AUBAIN, MILLICENT B", "Address": "PO Box 308370", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.18813593599999, "SHAPE_Area": 938.51700028100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366460.086400002241135, 255460.721400000154972 ], [ 366450.248499996960163, 255456.610100001096725 ], [ 366449.3074000030756, 255459.084899999201298 ], [ 366444.895700000226498, 255471.53940000012517 ], [ 366438.309000000357628, 255490.13399999961257 ], [ 366436.739699997007847, 255494.787099998444319 ], [ 366453.553199999034405, 255498.634700000286102 ], [ 366455.435999996960163, 255496.722300000488758 ], [ 366477.388099998235703, 255475.581599999219179 ], [ 366478.440800003707409, 255473.936599999666214 ], [ 366470.658500000834465, 255469.237900000065565 ], [ 366460.086400002241135, 255460.721400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701033100", "MAP": null, "PARCEL_NAM": "R-23", "ACRE": null, "LONGITUDE": -64.85885893, "LATITUDE": 18.3280488, "OBJECTID_1": 39286, "PARCEL_NO_": "107701033100", "Tax_Legal_": "NAZARETH ESTATE LOT R-23 No.1 REDHOOK QTR", "Name": "CLENDINEN, DENNIS L. & RUBINA D. G", "Address": "PO Box 502995", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 29000, "Improved_V": 178200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.15683829700001, "SHAPE_Area": 1157.5629426099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366447.164899997413158, 255455.875900000333786 ], [ 366438.648500002920628, 255454.701200000941753 ], [ 366427.782700002193451, 255454.994899999350309 ], [ 366419.119499996304512, 255455.435400001704693 ], [ 366413.833400003612041, 255456.022700000554323 ], [ 366409.575199998915195, 255458.22520000115037 ], [ 366406.785300001502037, 255461.161899998784065 ], [ 366404.582800000905991, 255464.979699999094009 ], [ 366403.848600000143051, 255467.916299998760223 ], [ 366402.967600002884865, 255471.587200000882149 ], [ 366404.851099997758865, 255472.8761 ], [ 366404.876500003039837, 255472.908700000494719 ], [ 366436.739699997007847, 255494.787099998444319 ], [ 366438.309000000357628, 255490.13399999961257 ], [ 366444.895700000226498, 255471.53940000012517 ], [ 366449.3074000030756, 255459.084899999201298 ], [ 366450.248499996960163, 255456.610100001096725 ], [ 366447.164899997413158, 255455.875900000333786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "D9-7534-T005", "PARCEL_NAM": "GREEN BELT", "ACRE": null, "LONGITUDE": -64.85919633, "LATITUDE": 18.32798226, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 44.713927821200002, "SHAPE_Area": 78.832812768799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366393.811499997973442, 255456.17509999871254 ], [ 366388.916299998760223, 255456.714699998497963 ], [ 366396.192800000309944, 255475.066399998962879 ], [ 366397.387900002300739, 255467.916299998760223 ], [ 366397.681599996984005, 255464.098600000143051 ], [ 366396.6537000015378, 255460.134100001305342 ], [ 366393.811499997973442, 255456.17509999871254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-1", "PARCEL_NO": "107701030100", "MAP": "D9-1736-T81A", "PARCEL_NAM": "19A-1", "ACRE": "0.32", "LONGITUDE": -64.86063148, "LATITUDE": 18.32964791, "OBJECTID_1": 39260, "PARCEL_NO_": "107701030100", "Tax_Legal_": "SMITH BAY ESTATE 19A EAST END QTR", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 180800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 293.66512691999998, "SHAPE_Area": 1653.0502046700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366416.562899999320507, 255611.028000000864267 ], [ 366435.154899999499321, 255605.691700000315905 ], [ 366303.314699999988079, 255618.328400000929832 ], [ 366303.499200001358986, 255624.234000001102686 ], [ 366303.949699997901917, 255638.648499999195337 ], [ 366304.193599998950958, 255643.282900001853704 ], [ 366318.75280000269413, 255639.147300001233816 ], [ 366350.278099998831749, 255630.117199998348951 ], [ 366384.229500003159046, 255620.262600000947714 ], [ 366416.562899999320507, 255611.028000000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701030100", "MAP": "B9-2-T46", "PARCEL_NAM": "REM 19A", "ACRE": "0.84", "LONGITUDE": -64.86136989000001, "LATITUDE": 18.32929208, "OBJECTID_1": 39260, "PARCEL_NO_": "107701030100", "Tax_Legal_": "SMITH BAY ESTATE 19A EAST END QTR", "Name": "VIRGIN ISLANDS HOUSINIG FINANCE AUTHORITY", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 180800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 402.65918436800001, "SHAPE_Area": 6081.5088225999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366303.499200001358986, 255624.234000001102686 ], [ 366303.314699999988079, 255618.328400000929832 ], [ 366277.43639999628067, 255621.459300000220537 ], [ 366159.10530000180006, 255635.775699999183416 ], [ 366140.247400000691414, 255638.057199999690056 ], [ 366140.476800002157688, 255647.187399998307228 ], [ 366140.446199998259544, 255650.775699999183416 ], [ 366142.033699996769428, 255653.743999999016523 ], [ 366145.124099999666214, 255669.601300001144409 ], [ 366146.587399996817112, 255687.134100001305342 ], [ 366177.300999999046326, 255678.730599999427795 ], [ 366218.521899998188019, 255667.457800000905991 ], [ 366253.277800001204014, 255657.820900000631809 ], [ 366284.803099997341633, 255648.790800001472235 ], [ 366304.193599998950958, 255643.282900001853704 ], [ 366303.949699997901917, 255638.648499999195337 ], [ 366303.499200001358986, 255624.234000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701033400", "MAP": "A9-538-T99", "PARCEL_NAM": "R-14", "ACRE": null, "LONGITUDE": -64.85983028, "LATITUDE": 18.32848199, "OBJECTID_1": 39289, "PARCEL_NO_": "107701033400", "Tax_Legal_": "NAZARETH ESTATE LOT R-14 No.REDHOOK QTR", "Name": "ROGERS, MARLENE", "Address": "PO Box 7983", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.50637262500001, "SHAPE_Area": 1227.5995602800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366354.372699998319149, 255521.650499999523163 ], [ 366311.124099999666214, 255493.430300001055002 ], [ 366309.452100001275539, 255500.382699999958277 ], [ 366310.114600002765656, 255517.275600001215935 ], [ 366311.622900001704693, 255529.531399998813868 ], [ 366310.803999997675419, 255531.002300001680851 ], [ 366310.762699998915195, 255535.857099998742342 ], [ 366348.816500000655651, 255536.467199999839067 ], [ 366349.440600000321865, 255533.97069999948144 ], [ 366349.874799996614456, 255532.233800001442432 ], [ 366352.388400003314018, 255526.280699998140335 ], [ 366354.372699998319149, 255521.650499999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701033300", "MAP": "A9-538-T99", "PARCEL_NAM": "R-15", "ACRE": null, "LONGITUDE": -64.85981004, "LATITUDE": 18.32817691, "OBJECTID_1": 39288, "PARCEL_NO_": "107701033300", "Tax_Legal_": "NAZARETH ESTATE LOT R-15", "Name": "PARSONS, BERNADETTE B", "Address": "6502 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 53800, "Improved_V": 162400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.25028543600001, "SHAPE_Area": 1059.55693686 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366347.240900002419949, 255482.946400001645088 ], [ 366355.695699997246265, 255463.30970000103116 ], [ 366349.08110000193119, 255464.632599998265505 ], [ 366338.497699998319149, 255466.749299999326468 ], [ 366329.237300001084805, 255469.13060000166297 ], [ 366323.019599996507168, 255472.834699999541044 ], [ 366316.9341000020504, 255479.713899999856949 ], [ 366312.783500000834465, 255487.955400001257658 ], [ 366311.124099999666214, 255493.430300001055002 ], [ 366335.070699997246265, 255509.055700000375509 ], [ 366336.128700003027916, 255506.785999998450279 ], [ 366347.240900002419949, 255482.946400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701033200", "MAP": null, "PARCEL_NAM": "R-16", "ACRE": null, "LONGITUDE": -64.85942977000001, "LATITUDE": 18.32809432, "OBJECTID_1": 39287, "PARCEL_NO_": "107701033200", "Tax_Legal_": "NAZARETH ESTATE LOT R-16 No.1 REDHOOK QTR", "Name": "GUMBS, CARDIN", "Address": "PO Box 304763", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.82109898100001, "SHAPE_Area": 1295.9219851600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366355.695699997246265, 255463.30970000103116 ], [ 366347.240900002419949, 255482.946400001645088 ], [ 366370.737300001084805, 255500.250999998301268 ], [ 366371.513400003314018, 255500.799800001084805 ], [ 366372.425999999046326, 255499.779500000178814 ], [ 366376.573700003325939, 255494.476700000464916 ], [ 366396.192800000309944, 255475.066399998962879 ], [ 366388.916299998760223, 255456.714699998497963 ], [ 366371.835299998521805, 255460.134700000286102 ], [ 366355.695699997246265, 255463.30970000103116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "D9-6340-T97", "PARCEL_NAM": "R-1", "ACRE": null, "LONGITUDE": -64.85933787, "LATITUDE": 18.32854465, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.945656047, "SHAPE_Area": 911.88036209899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366402.162699997425079, 255525.565000001341105 ], [ 366379.261100001633167, 255506.044100001454353 ], [ 366379.037000000476837, 255506.303800001740456 ], [ 366367.433600001037121, 255519.749099999666214 ], [ 366363.925899997353554, 255523.526500001549721 ], [ 366389.406700000166893, 255548.374200001358986 ], [ 366390.885300002992153, 255550.225499998778105 ], [ 366407.145099997520447, 255529.888199999928474 ], [ 366406.189900003373623, 255528.997699998319149 ], [ 366402.162699997425079, 255525.565000001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701033700", "MAP": "D9-7534-T005", "PARCEL_NAM": "R-22", "ACRE": ".26", "LONGITUDE": -64.85912088000001, "LATITUDE": 18.32837255, "OBJECTID_1": 39291, "PARCEL_NO_": "107701033700", "Tax_Legal_": "R-22 OF TRACT 1 ESTATE NAZARETH No.1 RED HOOK QTR.", "Name": "DEPARTMENT OF PROPERTY & PROCUREMENT", "Address": "8201 SUBBASE SUITE 206", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 84900, "Improved_V": 53400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.236321296, "SHAPE_Area": 1188.2256497799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366404.142300002276897, 255485.242899999022484 ], [ 366400.324600003659725, 255484.949200000613928 ], [ 366396.6537000015378, 255486.270700000226498 ], [ 366395.185400001704693, 255487.592199999839067 ], [ 366383.269299998879433, 255501.399700000882149 ], [ 366379.261100001633167, 255506.044100001454353 ], [ 366402.162699997425079, 255525.565000001341105 ], [ 366406.189900003373623, 255528.997699998319149 ], [ 366407.145099997520447, 255529.888199999928474 ], [ 366429.10419999808073, 255502.422600001096725 ], [ 366404.142300002276897, 255485.242899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": null, "PARCEL_NAM": "TRACT 1 REM", "ACRE": null, "LONGITUDE": -64.85847881, "LATITUDE": 18.32879133, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1534.05718004, "SHAPE_Area": 32055.943778000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366303.314699999988079, 255618.328400000929832 ], [ 366435.154899999499321, 255605.691700000315905 ], [ 366618.306500002741814, 255593.258600000292063 ], [ 366600.813199996948242, 255469.625599998980761 ], [ 366562.054499998688698, 255475.852299999445677 ], [ 366578.062100000679493, 255489.915500000119209 ], [ 366560.136200003325939, 255511.722500000149012 ], [ 366546.516999997198582, 255501.267499998211861 ], [ 366523.774800002574921, 255520.502000000327826 ], [ 366512.5996999964118, 255507.111600000411272 ], [ 366511.980400003492832, 255485.152800001204014 ], [ 366503.116400003433228, 255484.447000000625849 ], [ 366488.620700001716614, 255482.217399999499321 ], [ 366490.211800001561642, 255484.7635000012815 ], [ 366491.788400001823902, 255488.9983000010252 ], [ 366491.745300002396107, 255494.0641999989748 ], [ 366490.087700001895428, 255499.328000001609325 ], [ 366486.835500001907349, 255502.467799998819828 ], [ 366481.169699996709824, 255504.954500000923872 ], [ 366453.553199999034405, 255498.634700000286102 ], [ 366436.739699997007847, 255494.787099998444319 ], [ 366404.876500003039837, 255472.908700000494719 ], [ 366404.851099997758865, 255472.8761 ], [ 366401.61089999973774, 255473.061500001698732 ], [ 366401.666599996387959, 255466.518100000917912 ], [ 366400.198100000619888, 255465.032600000500679 ], [ 366396.192800000309944, 255475.066399998962879 ], [ 366376.573700003325939, 255494.476700000464916 ], [ 366372.425999999046326, 255499.779500000178814 ], [ 366356.485799998044968, 255517.602400001138449 ], [ 366354.372699998319149, 255521.650499999523163 ], [ 366352.388400003314018, 255526.280699998140335 ], [ 366349.874799996614456, 255532.233800001442432 ], [ 366349.440600000321865, 255533.97069999948144 ], [ 366348.816500000655651, 255536.467199999839067 ], [ 366342.3108000010252, 255559.612399999052286 ], [ 366341.937299996614456, 255560.941199999302626 ], [ 366335.417700000107288, 255584.760999999940395 ], [ 366335.655699998140335, 255584.756999999284744 ], [ 366331.519299998879433, 255602.612199999392033 ], [ 366328.873499996960163, 255607.374699998646975 ], [ 366322.788000002503395, 255608.962200000882149 ], [ 366306.919799998402596, 255609.782999999821186 ], [ 366292.0962999984622, 255610.549699999392033 ], [ 366297.123400002717972, 255588.589200001209974 ], [ 366291.002700001001358, 255588.841600000858307 ], [ 366271.458800002932549, 255589.647599998861551 ], [ 366269.113499999046326, 255593.448499999940395 ], [ 366263.785800002515316, 255602.083000000566244 ], [ 366262.99210000038147, 255599.701699998229742 ], [ 366260.081699997186661, 255596.791299998760223 ], [ 366254.525399997830391, 255594.674699999392033 ], [ 366250.027500003576279, 255594.9391999989748 ], [ 366249.821900002658367, 255595.007699999958277 ], [ 366246.058700002729893, 255596.262200001627207 ], [ 366241.825400002300739, 255598.643399998545647 ], [ 366208.137299999594688, 255585.00279999896884 ], [ 366199.751199997961521, 255581.607200000435114 ], [ 366198.69820000231266, 255581.180900000035763 ], [ 366201.856499999761581, 255571.442699998617172 ], [ 366150.911700002849102, 255636.767000000923872 ], [ 366159.10530000180006, 255635.775699999183416 ], [ 366277.43639999628067, 255621.459300000220537 ], [ 366303.314699999988079, 255618.328400000929832 ] ], [ [ 366389.406700000166893, 255548.374200001358986 ], [ 366363.925899997353554, 255523.526500001549721 ], [ 366367.433600001037121, 255519.749099999666214 ], [ 366379.037000000476837, 255506.303800001740456 ], [ 366379.261100001633167, 255506.044100001454353 ], [ 366383.269299998879433, 255501.399700000882149 ], [ 366395.185400001704693, 255487.592199999839067 ], [ 366396.6537000015378, 255486.270700000226498 ], [ 366400.324600003659725, 255484.949200000613928 ], [ 366404.142300002276897, 255485.242899999022484 ], [ 366429.10419999808073, 255502.422600001096725 ], [ 366390.885300002992153, 255550.225499998778105 ], [ 366389.406700000166893, 255548.374200001358986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": null, "PARCEL_NAM": "R-17", "ACRE": null, "LONGITUDE": -64.85962008, "LATITUDE": 18.32830951, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.094375572, "SHAPE_Area": 721.74873351099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366370.737300001084805, 255500.250999998301268 ], [ 366347.240900002419949, 255482.946400001645088 ], [ 366336.128700003027916, 255506.785999998450279 ], [ 366335.070699997246265, 255509.055700000375509 ], [ 366354.372699998319149, 255521.650499999523163 ], [ 366356.485799998044968, 255517.602400001138449 ], [ 366371.513400003314018, 255500.799800001084805 ], [ 366370.737300001084805, 255500.250999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "D9-9093-T016", "PARCEL_NAM": "R-12", "ACRE": ".23", "LONGITUDE": -64.85984594, "LATITUDE": 18.32896989, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 125.057908766, "SHAPE_Area": 908.49413767099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366335.417700000107288, 255584.760999999940395 ], [ 366341.937299996614456, 255560.941199999302626 ], [ 366304.340499997138977, 255560.686500001698732 ], [ 366297.99549999833107, 255585.217500001192093 ], [ 366308.057700000703335, 255585.2195999994874 ], [ 366335.417700000107288, 255584.760999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "D9-9093-T016", "PARCEL_NAM": "R-11", "ACRE": ".23", "LONGITUDE": -64.85987008, "LATITUDE": 18.32920324, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 124.248110895, "SHAPE_Area": 912.79157555699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366335.565200001001358, 255585.147799998521805 ], [ 366335.417700000107288, 255584.760999999940395 ], [ 366308.057700000703335, 255585.2195999994874 ], [ 366297.99549999833107, 255585.217500001192093 ], [ 366297.123400002717972, 255588.589200001209974 ], [ 366292.0962999984622, 255610.549699999392033 ], [ 366306.919799998402596, 255609.782999999821186 ], [ 366322.788000002503395, 255608.962200000882149 ], [ 366328.873499996960163, 255607.374699998646975 ], [ 366331.519299998879433, 255602.612199999392033 ], [ 366335.565200001001358, 255585.147799998521805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "D9-9093-T016", "PARCEL_NAM": "R-13", "ACRE": ".23", "LONGITUDE": -64.85982366, "LATITUDE": 18.32874389, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.72530103699999, "SHAPE_Area": 935.33368981800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366348.816500000655651, 255536.467199999839067 ], [ 366310.762699998915195, 255535.857099998742342 ], [ 366304.340499997138977, 255560.686500001698732 ], [ 366341.937299996614456, 255560.941199999302626 ], [ 366342.3108000010252, 255559.612399999052286 ], [ 366348.816500000655651, 255536.467199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "D9-9093-T016", "PARCEL_NAM": "R-11", "ACRE": ".23", "LONGITUDE": -64.85987008, "LATITUDE": 18.32920324, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1.0531447787399999, "SHAPE_Area": 0.0463241995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366335.417700000107288, 255584.760999999940395 ], [ 366335.565200001001358, 255585.147799998521805 ], [ 366335.655699998140335, 255584.756999999284744 ], [ 366335.417700000107288, 255584.760999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803021600", "MAP": "D9-9439-T020", "PARCEL_NAM": "8", "ACRE": "0.32", "LONGITUDE": -64.94213492, "LATITUDE": 18.34763333, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.58782456700001, "SHAPE_Area": 1187.7990656500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357623.562600001692772, 257545.92790000140667 ], [ 357618.749899998307228, 257542.933200001716614 ], [ 357610.685000002384186, 257543.078299999237061 ], [ 357596.829999998211861, 257547.450300000607967 ], [ 357599.597300000488758, 257577.803899999707937 ], [ 357600.808700002729893, 257591.0912000015378 ], [ 357603.826300002634525, 257590.940400000661612 ], [ 357616.734499998390675, 257590.201699998229742 ], [ 357621.599399998784065, 257587.075100000947714 ], [ 357623.229999996721745, 257584.97749999910593 ], [ 357626.742899999022484, 257551.231300000101328 ], [ 357623.562600001692772, 257545.92790000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102803021600", "MAP": "D9-9439-T020", "PARCEL_NAM": "10", "ACRE": "0.24", "LONGITUDE": -64.94236923, "LATITUDE": 18.34772171, "OBJECTID_1": 4286, "PARCEL_NO_": "102803021600", "Tax_Legal_": "SOLBERG REM NO 1. LITTLE NORTHSIDE QTR", "Name": "HEIRS OF LOUIS J. T. BOSCHULTE", "Address": "PO Box 464", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 944600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 136.939865156, "SHAPE_Area": 1077.8556798899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357599.597300000488758, 257577.803899999707937 ], [ 357596.829999998211861, 257547.450300000607967 ], [ 357590.471500001847744, 257549.456799998879433 ], [ 357577.514700002968311, 257555.894600000232458 ], [ 357571.518500000238419, 257559.920800000429153 ], [ 357570.879199996590614, 257567.464600000530481 ], [ 357578.7449000030756, 257599.612199999392033 ], [ 357578.7550999969244, 257599.601100001484156 ], [ 357587.673100002110004, 257593.974599998444319 ], [ 357596.5658999979496, 257591.303199999034405 ], [ 357600.808700002729893, 257591.0912000015378 ], [ 357599.597300000488758, 257577.803899999707937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803013000", "MAP": "D9-8277-T009", "PARCEL_NAM": "19-1-2-4", "ACRE": "1.022", "LONGITUDE": -64.86152697, "LATITUDE": 18.33620585, "OBJECTID_1": 23853, "PARCEL_NO_": "105803013000", "Tax_Legal_": "19-1-2-4 SMITH BAY NO. 1,2,3 EAST END QUARTER", "Name": "NAJOCKI BOYD & KIT-ALIA FREEMAN", "Address": "PO BOX 502934", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 124500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.27419372899999, "SHAPE_Area": 4307.30572158 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366117.660199999809265, 256330.296500001102686 ], [ 366114.795299999415874, 256372.118200000375509 ], [ 366114.407300002872944, 256417.332299999892712 ], [ 366149.538999997079372, 256411.096400000154972 ], [ 366164.317800000309944, 256413.402399998158216 ], [ 366170.001400001347065, 256330.438000001013279 ], [ 366117.660199999809265, 256330.296500001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803011800", "MAP": "A9-742-T009", "PARCEL_NAM": "19-1-2-2", "ACRE": "2.03", "LONGITUDE": -64.86050405, "LATITUDE": 18.33623211, "OBJECTID_1": 23841, "PARCEL_NO_": "105803011800", "Tax_Legal_": "19-1-2-2 ESTATE SMITH BAY NO.1,2&3 EAST END QTR", "Name": "EVELYN LEONARD SHOEMAKER REVOCABLE TRUST", "Address": "6607 Cabrita Point Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 204900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.681049427, "SHAPE_Area": 8359.5948042399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366210.100400000810623, 256329.777699999511242 ], [ 366201.246699996292591, 256418.589999999850988 ], [ 366209.7550999969244, 256419.785199999809265 ], [ 366279.310900002717972, 256435.441300000995398 ], [ 366284.067299999296665, 256397.744699999690056 ], [ 366299.427100002765656, 256314.97239999845624 ], [ 366280.842000000178814, 256321.815400000661612 ], [ 366250.944200001657009, 256328.782900001853704 ], [ 366210.100400000810623, 256329.777699999511242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105803011200", "MAP": "D9-8864-T014", "PARCEL_NAM": "19F-E-1", "ACRE": ".046", "LONGITUDE": -64.8614229, "LATITUDE": 18.33869661, "OBJECTID_1": 23837, "PARCEL_NO_": "105803011200", "Tax_Legal_": "19F REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "BPIII SMITH BAY LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1700000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.07761590500002, "SHAPE_Area": 3956.7180107600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366190.912100002169609, 256675.776999998837709 ], [ 366148.35809999704361, 256601.003600001335144 ], [ 366133.207099996507168, 256607.202399998903275 ], [ 366117.740500003099442, 256610.801600001752377 ], [ 366101.900700002908707, 256610.427099999040365 ], [ 366159.70610000193119, 256700.575500000268221 ], [ 366190.912100002169609, 256675.776999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105601050200", "MAP": "D9-4354-T88", "PARCEL_NAM": "215-2-3", "ACRE": "0.23", "LONGITUDE": -64.89382466000001, "LATITUDE": 18.34820309, "OBJECTID_1": 20747, "PARCEL_NO_": "105601050200", "Tax_Legal_": "215-2-3 EST ANNAS RETREAT NEW QTR", "Name": "SILCOTT, GEORGE & LORETTA", "Address": "PO Box 11179", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 31500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.45057788599999, "SHAPE_Area": 978.978595842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362732.656900003552437, 257658.982599999755621 ], [ 362710.808700002729893, 257649.619100000709295 ], [ 362697.042700000107288, 257687.070900000631809 ], [ 362719.530799999833107, 257697.717000000178814 ], [ 362732.656900003552437, 257658.982599999755621 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105601050300", "MAP": "D9-9439-T020", "PARCEL_NAM": "Reconf. 215-2-4A", "ACRE": "0.79", "LONGITUDE": -64.89342362, "LATITUDE": 18.34831924, "OBJECTID_1": 20748, "PARCEL_NO_": "105601050300", "Tax_Legal_": "ANNAS RETREAT 215-2REM&215-2-4A No.1 NEW QTR.", "Name": "EL-HAJ FAMILY TRUST & ASFOUR FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 185400, "Improved_V": 151700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.705106452, "SHAPE_Area": 3264.67044106 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362738.575199998915195, 257615.234000001102686 ], [ 362731.512699998915195, 257611.284000001847744 ], [ 362722.200499996542931, 257630.742400001734495 ], [ 362736.274300001561642, 257640.427600000053644 ], [ 362760.487199999392033, 257661.008600000292063 ], [ 362759.394900001585484, 257664.403299998492002 ], [ 362745.051500000059605, 257708.980399999767542 ], [ 362744.958700001239777, 257709.227699998766184 ], [ 362759.586900003254414, 257714.621199999004602 ], [ 362766.069200001657009, 257716.208700001239777 ], [ 362774.138999998569489, 257714.224300000816584 ], [ 362777.975400000810623, 257710.25560000166297 ], [ 362783.703100003302097, 257700.448300000280142 ], [ 362787.929999999701977, 257690.365100000053644 ], [ 362792.062299996614456, 257678.5777000002563 ], [ 362792.157600000500679, 257667.390500001609325 ], [ 362791.398000001907349, 257661.895799998193979 ], [ 362776.962399996817112, 257645.714200001209974 ], [ 362776.221900001168251, 257644.884100001305342 ], [ 362774.614699997007847, 257644.237700000405312 ], [ 362767.418999999761581, 257637.001600001007318 ], [ 362753.006099998950958, 257625.062399998307228 ], [ 362738.575199998915195, 257615.234000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105803011200", "MAP": "D9-8864-T014", "PARCEL_NAM": "19F-E-REM", "ACRE": "1.88", "LONGITUDE": -64.86075007, "LATITUDE": 18.33918825, "OBJECTID_1": 23837, "PARCEL_NO_": "105803011200", "Tax_Legal_": "19F REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "BPIII SMITH BAY LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1700000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.20648418100001, "SHAPE_Area": 7616.2911890100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366236.901000000536442, 256642.632800001651049 ], [ 366190.912100002169609, 256675.776999998837709 ], [ 366159.70610000193119, 256700.575500000268221 ], [ 366178.44650000333786, 256729.801399998366833 ], [ 366200.464299999177456, 256764.1385000012815 ], [ 366217.585400000214577, 256750.751899998635054 ], [ 366236.436999998986721, 256738.184099998325109 ], [ 366251.319899998605251, 256726.608600001782179 ], [ 366271.163599997758865, 256710.733500000089407 ], [ 366283.508000001311302, 256701.470600001513958 ], [ 366236.901000000536442, 256642.632800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105803011200", "MAP": "D9-8864-T014", "PARCEL_NAM": "19F-E-2", "ACRE": ".566", "LONGITUDE": -64.86102431, "LATITUDE": 18.33851275, "OBJECTID_1": 23837, "PARCEL_NO_": "105803011200", "Tax_Legal_": "19F REM SMITH BAY NO.1,2,3 EAST END QTR", "Name": "BPIII SMITH BAY LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1700000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.07668184599999, "SHAPE_Area": 4058.2390585899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366236.901000000536442, 256642.632800001651049 ], [ 366190.324600003659725, 256583.833599999547005 ], [ 366148.35809999704361, 256601.003600001335144 ], [ 366190.912100002169609, 256675.776999998837709 ], [ 366236.901000000536442, 256642.632800001651049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-4", "PARCEL_NO": "105601050300", "MAP": "D9-9440-T020", "PARCEL_NAM": "Reconf. 215-2 REM", "ACRE": "0.79", "LONGITUDE": -64.89342362, "LATITUDE": 18.34831924, "OBJECTID_1": 20748, "PARCEL_NO_": "105601050300", "Tax_Legal_": "ANNAS RETREAT 215-2REM&215-2-4A No.1 NEW QTR.", "Name": "EL-HAJ FAMILY TRUST & ASFOUR FAMILY TRUST", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 185400, "Improved_V": 151700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 342.26526112099998, "SHAPE_Area": 2876.7812095300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362704.040399998426437, 257598.908300001174212 ], [ 362697.591700002551079, 257598.644400000572205 ], [ 362685.473600000143051, 257601.28940000012517 ], [ 362682.8091000020504, 257610.409699998795986 ], [ 362710.863399997353554, 257619.060499999672174 ], [ 362705.392700001597404, 257633.402499999850988 ], [ 362716.186200000345707, 257636.803199999034405 ], [ 362712.913199998438358, 257643.893699999898672 ], [ 362710.808700002729893, 257649.619100000709295 ], [ 362732.656900003552437, 257658.982599999755621 ], [ 362719.530799999833107, 257697.717000000178814 ], [ 362739.925300002098083, 257707.371899999678135 ], [ 362744.958700001239777, 257709.227699998766184 ], [ 362745.051500000059605, 257708.980399999767542 ], [ 362759.394900001585484, 257664.403299998492002 ], [ 362760.487199999392033, 257661.008600000292063 ], [ 362736.274300001561642, 257640.427600000053644 ], [ 362722.200499996542931, 257630.742400001734495 ], [ 362731.512699998915195, 257611.284000001847744 ], [ 362721.721699997782707, 257605.80799999833107 ], [ 362709.673799999058247, 257600.220899999141693 ], [ 362704.040399998426437, 257598.908300001174212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701053700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87486266000001, "LATITUDE": 18.34128896, "OBJECTID_1": 22139, "PARCEL_NO_": "105701053700", "Tax_Legal_": "SMITH BAY 88 EAST END ST THOMAS", "Name": "FRANCIS, GLENN A", "Address": "PO Box 8920", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 93600, "Improved_V": 244400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.31920504499999, "SHAPE_Area": 948.14098065899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364726.611800000071526, 256945.155900001525879 ], [ 364727.614000000059605, 256926.687399998307228 ], [ 364742.123400002717972, 256927.91330000013113 ], [ 364745.178400002419949, 256928.171399999409914 ], [ 364746.637900002300739, 256928.294700000435114 ], [ 364749.443999998271465, 256904.340500000864267 ], [ 364746.649099998176098, 256904.128800000995398 ], [ 364743.980400003492832, 256904.084699999541044 ], [ 364728.603500001132488, 256903.830800000578165 ], [ 364716.964699998497963, 256903.638599999248981 ], [ 364716.164399996399879, 256908.846400000154972 ], [ 364711.924199998378754, 256933.298500001430511 ], [ 364718.344099998474121, 256936.939699999988079 ], [ 364726.611800000071526, 256945.155900001525879 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87535252000001, "LATITUDE": 18.34274093, "OBJECTID_1": 22131, "PARCEL_NO_": "105701052800", "Tax_Legal_": "SMITH BAY 79 EAST END QTR", "Name": "BENJAMIN, MADELINE", "Address": "PO Box 502035", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 19500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.21264624099999, "SHAPE_Area": 1916.41251207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364660.850199997425079, 257049.022300001233816 ], [ 364660.056800000369549, 257058.802700001746416 ], [ 364652.799800001084805, 257058.415300000458956 ], [ 364651.756099998950958, 257086.271099999547005 ], [ 364651.730899997055531, 257089.226199999451637 ], [ 364678.114500001072884, 257115.82880000025034 ], [ 364700.876400001347065, 257094.27250000089407 ], [ 364706.565600000321865, 257089.041700001806021 ], [ 364687.356100000441074, 257072.208099998533726 ], [ 364660.850199997425079, 257049.022300001233816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701053400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87534642, "LATITUDE": 18.34232965, "OBJECTID_1": 22137, "PARCEL_NO_": "105701053400", "Tax_Legal_": "SMITH BAY 78 EAST END QTR", "Name": "VANBEVERHOUDT, MALIK JUQUAN & MARVIN, JR.", "Address": "PO Box 307262", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39000, "Improved_V": 112600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.44994122899999, "SHAPE_Area": 1442.2503550900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364664.119699999690056, 257008.715799998492002 ], [ 364661.892599999904633, 257036.171799998730421 ], [ 364660.850199997425079, 257049.022300001233816 ], [ 364687.356100000441074, 257072.208099998533726 ], [ 364698.950199998915195, 257036.417100001126528 ], [ 364685.376000002026558, 257020.685100000351667 ], [ 364671.733400002121925, 257012.97410000115633 ], [ 364664.119699999690056, 257008.715799998492002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701033600", "MAP": "G9-352-T56", "PARCEL_NAM": "20-6", "ACRE": "0.34", "LONGITUDE": -64.87573848, "LATITUDE": 18.3424123, "OBJECTID_1": 21983, "PARCEL_NO_": "105701033600", "Tax_Legal_": "SMITH BAY 20-6 EAST END QUARTER", "Name": "BASSUE, RUTH ADINA", "Address": "General Gade 11-D", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.714579257, "SHAPE_Area": 1443.4893286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364662.482799999415874, 257028.895799998193979 ], [ 364614.184799998998642, 257026.556600000709295 ], [ 364613.502700001001358, 257033.184599999338388 ], [ 364612.645999997854233, 257039.088199999183416 ], [ 364612.500399999320507, 257056.185600001364946 ], [ 364652.799800001084805, 257058.415300000458956 ], [ 364660.056800000369549, 257058.802700001746416 ], [ 364660.850199997425079, 257049.022300001233816 ], [ 364661.892599999904633, 257036.171799998730421 ], [ 364662.482799999415874, 257028.895799998193979 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701033700", "MAP": "G9-352-T56", "PARCEL_NAM": "20-7", "ACRE": "0.34", "LONGITUDE": -64.87572379, "LATITUDE": 18.34215426, "OBJECTID_1": 21984, "PARCEL_NO_": "105701033700", "Tax_Legal_": "20-7 SMITH BAY EAST END QUARTER", "Name": "ROSS, VIVIAN & STEPHANIE", "Address": "PO Box 6182", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 53000, "Improved_V": 117600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.401182629, "SHAPE_Area": 1498.2443851099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364665.0337999984622, 256997.447000000625849 ], [ 364617.508100003004074, 256995.798799999058247 ], [ 364617.019199997186661, 256999.01630000025034 ], [ 364614.184799998998642, 257026.556600000709295 ], [ 364662.482799999415874, 257028.895799998193979 ], [ 364664.119699999690056, 257008.715799998492002 ], [ 364664.734600000083447, 257001.135200001299381 ], [ 364665.0337999984622, 256997.447000000625849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701054900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87533711, "LATITUDE": 18.34200516, "OBJECTID_1": 22147, "PARCEL_NO_": "105701054900", "Tax_Legal_": "70&117 SMITH BAY NO. 1,2,3 EAST END QTR", "Name": "JOHN M LYNCH SR TRUST & ERNA M LYNCH TRUST", "Address": "PO Box 1523", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 22100, "Improved_V": 142500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.581694943, "SHAPE_Area": 717.49818929399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364665.711099997162819, 256989.097500000149012 ], [ 364664.734600000083447, 257001.135200001299381 ], [ 364664.119699999690056, 257008.715799998492002 ], [ 364671.733400002121925, 257012.97410000115633 ], [ 364685.376000002026558, 257020.685100000351667 ], [ 364688.667700000107288, 257012.901599999517202 ], [ 364698.532300002872944, 256990.817499998956919 ], [ 364675.15820000320673, 256989.570700000971556 ], [ 364665.711099997162819, 256989.097500000149012 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701033800", "MAP": "G9-405-T56", "PARCEL_NAM": "20-8", "ACRE": "0.34", "LONGITUDE": -64.87570984, "LATITUDE": 18.34192239, "OBJECTID_1": 21985, "PARCEL_NO_": "105701033800", "Tax_Legal_": "20-8 SMITH BAY EAST END QUARTER", "Name": "FRANCIS, YVONNE", "Address": "PO Box 7093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 154.288811651, "SHAPE_Area": 1402.97305639 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364621.549400001764297, 256965.383699998259544 ], [ 364621.384199999272823, 256965.135899998247623 ], [ 364619.582000002264977, 256982.14979999884963 ], [ 364617.508100003004074, 256995.798799999058247 ], [ 364665.0337999984622, 256997.447000000625849 ], [ 364665.711099997162819, 256989.097500000149012 ], [ 364666.035700000822544, 256985.096099998801947 ], [ 364667.006899997591972, 256973.122699998319149 ], [ 364667.424900002777576, 256967.970199998468161 ], [ 364621.549400001764297, 256965.383699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701055000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87532519, "LATITUDE": 18.34183412, "OBJECTID_1": 22148, "PARCEL_NO_": "105701055000", "Tax_Legal_": "SMITH BAY 70E EAST END QTR", "Name": "LEE, VENISE L", "Address": "PO Box 10225", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16700, "Improved_V": 102200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.612200930100002, "SHAPE_Area": 496.93066555799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364667.006899997591972, 256973.122699998319149 ], [ 364666.035700000822544, 256985.096099998801947 ], [ 364665.711099997162819, 256989.097500000149012 ], [ 364675.15820000320673, 256989.570700000971556 ], [ 364698.532300002872944, 256990.817499998956919 ], [ 364703.470899999141693, 256979.036699999123812 ], [ 364677.704800002276897, 256974.603900000452995 ], [ 364667.006899997591972, 256973.122699998319149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701058800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87528825, "LATITUDE": 18.34134689, "OBJECTID_1": 22162, "PARCEL_NO_": "105701058800", "Tax_Legal_": "SMITH BAY 88E EASTEND QUARTER", "Name": "LEWIS, BERECIA & SIMONE M. CANTON", "Address": "1AAA Estate Ny Nordsidevej", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 258600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.66003739300001, "SHAPE_Area": 1757.0279167799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364672.702600002288818, 256902.907499998807907 ], [ 364671.578299999237061, 256916.767900001257658 ], [ 364669.508599996566772, 256942.282800000160933 ], [ 364668.760799996554852, 256951.501499999314547 ], [ 364668.352099999785423, 256956.540100000798702 ], [ 364678.167099997401237, 256950.364100001752377 ], [ 364686.827799998223782, 256944.91440000012517 ], [ 364700.540500000119209, 256944.393300000578165 ], [ 364699.757600001990795, 256941.642700001597404 ], [ 364702.230499997735023, 256935.330099999904633 ], [ 364705.473700001835823, 256933.245700001716614 ], [ 364711.924199998378754, 256933.298500001430511 ], [ 364716.164399996399879, 256908.846400000154972 ], [ 364716.964699998497963, 256903.638599999248981 ], [ 364704.115000002086163, 256903.426300000399351 ], [ 364672.702600002288818, 256902.907499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702052000", "MAP": "D9-360-T63", "PARCEL_NAM": "57J", "ACRE": "0.25", "LONGITUDE": -64.87426873, "LATITUDE": 18.34144159, "OBJECTID_1": 22611, "PARCEL_NO_": "105702052000", "Tax_Legal_": "57J SMITH BAY EAST END QUARTER", "Name": "CHARLES, JEAN A", "Address": "217 - 71 Hempstead Ave", "City": "Queens Village", "State": "New York", "Zip": 11429, "Country": "United States", "Land_Value": 15400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.25878985099999, "SHAPE_Area": 1154.3808327700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364804.75620000064373, 256921.603799998760223 ], [ 364803.472000002861023, 256919.202500000596046 ], [ 364772.735600002110004, 256920.788100000470877 ], [ 364772.090599998831749, 256927.855799999088049 ], [ 364769.816899999976158, 256952.770799998193979 ], [ 364808.537900000810623, 256950.976799998432398 ], [ 364808.656499996781349, 256937.0456000007689 ], [ 364806.329300001263618, 256926.26069999858737 ], [ 364804.75620000064373, 256921.603799998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701034000", "MAP": "G9-556-T60", "PARCEL_NAM": "20-10", "ACRE": "0.34", "LONGITUDE": -64.87567829, "LATITUDE": 18.34134142, "OBJECTID_1": 21987, "PARCEL_NO_": "105701034000", "Tax_Legal_": "2O-1O SMITH BAY EAST END QUARTER", "Name": "MORSON, W. N. & L. & C. C. & J", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53000, "Improved_V": 196600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.25941123699999, "SHAPE_Area": 1355.7378924899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364672.119499996304512, 256910.095499999821186 ], [ 364625.430900000035763, 256906.847600001841784 ], [ 364625.01690000295639, 256912.111200001090765 ], [ 364623.265799999237061, 256928.350999999791384 ], [ 364623.201300002634525, 256935.917500000447035 ], [ 364657.166000001132488, 256937.869500000029802 ], [ 364669.807700000703335, 256938.596000000834465 ], [ 364671.578299999237061, 256916.767900001257658 ], [ 364672.119499996304512, 256910.095499999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701058500", "MAP": "D9-4184-T87", "PARCEL_NAM": "57A-2", "ACRE": "0.17", "LONGITUDE": -64.87457111000001, "LATITUDE": 18.3412674, "OBJECTID_1": 22159, "PARCEL_NO_": "105701058500", "Tax_Legal_": "SMITH BAY 57A-2 EAST END QTR.", "Name": "ELLSWORTH B JONES AND URSULA E JONES REVOCABLE TRU", "Address": "PO Box 307563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44400, "Improved_V": 186500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.469586682599996, "SHAPE_Area": 605.27209768499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364749.443999998271465, 256904.340500000864267 ], [ 364746.637900002300739, 256928.294700000435114 ], [ 364771.301399998366833, 256930.378699999302626 ], [ 364771.853399999439716, 256930.455200001597404 ], [ 364772.090599998831749, 256927.855799999088049 ], [ 364774.066299997270107, 256906.205899998545647 ], [ 364763.106600001454353, 256905.375599998980761 ], [ 364749.443999998271465, 256904.340500000864267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702057400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87435284, "LATITUDE": 18.34115665, "OBJECTID_1": 22621, "PARCEL_NO_": "105702057400", "Tax_Legal_": "57X-20 SMITH BAY EAST END QTR", "Name": "ELLSWORTH B JONES AND URSULA E JONES REVOCABLE TRU", "Address": "PO Box 307563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32500, "Improved_V": 261800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.828477717, "SHAPE_Area": 846.89831433200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364803.472000002861023, 256919.202500000596046 ], [ 364799.200199998915195, 256911.214800000190735 ], [ 364776.027500003576279, 256886.327100001275539 ], [ 364764.004699997603893, 256877.785000000149012 ], [ 364763.106600001454353, 256905.375599998980761 ], [ 364774.066299997270107, 256906.205899998545647 ], [ 364772.735600002110004, 256920.788100000470877 ], [ 364803.472000002861023, 256919.202500000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069000", "MAP": "D9-4184-T87", "PARCEL_NAM": "57X-47", "ACRE": "0.23", "LONGITUDE": -64.87460785, "LATITUDE": 18.34101642, "OBJECTID_1": 22724, "PARCEL_NO_": "105702069000", "Tax_Legal_": "SMITH BAY 57X-47 EAST END QTR.", "Name": "ELLSWORTH B JONES AND URSULA E JONES REVOCABLE TRU", "Address": "PO Box 307563", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 32400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.227219221699997, "SHAPE_Area": 370.417110842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364753.157300002872944, 256872.6418999992311 ], [ 364749.443999998271465, 256904.340500000864267 ], [ 364763.106600001454353, 256905.375599998980761 ], [ 364764.004699997603893, 256877.785000000149012 ], [ 364753.157300002872944, 256872.6418999992311 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701055400", "MAP": "F9-2997-T72", "PARCEL_NAM": "113-2A", "ACRE": null, "LONGITUDE": -64.87476605000001, "LATITUDE": 18.3409822, "OBJECTID_1": 22151, "PARCEL_NO_": "105701055400", "Tax_Legal_": "SMITH BAY 113-2A EAST END QTR", "Name": "DAISY VILLAS LLC", "Address": "215-124 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.683465287, "SHAPE_Area": 1006.84839211 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364731.053800001740456, 256864.849700000137091 ], [ 364724.756899997591972, 256863.917899999767542 ], [ 364723.39919999986887, 256903.744800001382828 ], [ 364728.603500001132488, 256903.830800000578165 ], [ 364743.980400003492832, 256904.084699999541044 ], [ 364746.649099998176098, 256904.128800000995398 ], [ 364749.443999998271465, 256904.340500000864267 ], [ 364753.157300002872944, 256872.6418999992311 ], [ 364746.336000002920628, 256869.407699998468161 ], [ 364731.053800001740456, 256864.849700000137091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702054000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87495787, "LATITUDE": 18.34095953, "OBJECTID_1": 22616, "PARCEL_NO_": "105702054000", "Tax_Legal_": "SMITH BAY 113-2B EAST END QTR", "Name": "DAISY VILLAS LLC", "Address": "215-124 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 120.41000755500001, "SHAPE_Area": 804.17177066399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364724.756899997591972, 256863.917899999767542 ], [ 364718.973499998450279, 256863.062100000679493 ], [ 364704.463500000536442, 256862.521099999547005 ], [ 364704.115000002086163, 256903.426300000399351 ], [ 364723.39919999986887, 256903.744800001382828 ], [ 364724.756899997591972, 256863.917899999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701053900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87529063, "LATITUDE": 18.34095146, "OBJECTID_1": 22141, "PARCEL_NO_": "105701053900", "Tax_Legal_": "SMITH BAY 113-2C EAST END QTR", "Name": "WILTSHIRE, GEORGE", "Address": "7344 Est Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 36400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.17993410899999, "SHAPE_Area": 1230.70084995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364676.052299998700619, 256861.612300001084805 ], [ 364672.702600002288818, 256902.907499998807907 ], [ 364704.115000002086163, 256903.426300000399351 ], [ 364704.463500000536442, 256862.521099999547005 ], [ 364676.052299998700619, 256861.612300001084805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701058600", "MAP": "D9-5032-T90", "PARCEL_NAM": "88A", "ACRE": ".0658", "LONGITUDE": -64.8747879, "LATITUDE": 18.34144051, "OBJECTID_1": 22160, "PARCEL_NO_": "105701058600", "Tax_Legal_": "SMITH BAY 88A EASTEND QTR.", "Name": "FRANCIS, DESIREE", "Address": "PO Box 502352", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8052352, "Country": "United States", "Land_Value": 7100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.100764107499998, "SHAPE_Area": 441.34389108699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364742.123400002717972, 256927.91330000013113 ], [ 364727.614000000059605, 256926.687399998307228 ], [ 364726.611800000071526, 256945.155900001525879 ], [ 364730.338100001215935, 256948.859099999070168 ], [ 364731.938199996948242, 256950.349800001829863 ], [ 364735.141800001263618, 256952.909200001507998 ], [ 364739.97070000320673, 256954.004200000315905 ], [ 364743.5675999969244, 256954.504999998956919 ], [ 364746.637900002300739, 256928.294700000435114 ], [ 364745.178400002419949, 256928.171399999409914 ], [ 364742.123400002717972, 256927.91330000013113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701053800", "MAP": "D9-5032-T90", "PARCEL_NAM": "57A-3B", "ACRE": ".164", "LONGITUDE": -64.87458313, "LATITUDE": 18.34147771, "OBJECTID_1": 22140, "PARCEL_NO_": "105701053800", "Tax_Legal_": "57A-3 SMITH BAY NO. 1,2,3 EAST END QTR", "Name": "FRANCIS, GLEN & DESIREE", "Address": "PO Box 8920", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8011920, "Country": "United States", "Land_Value": 17800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.11936864099999, "SHAPE_Area": 733.1777314 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364746.637900002300739, 256928.294700000435114 ], [ 364743.5675999969244, 256954.504999998956919 ], [ 364746.413999997079372, 256954.901299998164177 ], [ 364768.936800003051758, 256961.418400000780821 ], [ 364769.816899999976158, 256952.770799998193979 ], [ 364771.853399999439716, 256930.455200001597404 ], [ 364771.301399998366833, 256930.378699999302626 ], [ 364746.637900002300739, 256928.294700000435114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701053700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87507876, "LATITUDE": 18.3416398, "OBJECTID_1": 22139, "PARCEL_NO_": "105701053700", "Tax_Legal_": "SMITH BAY 88 EAST END ST THOMAS", "Name": "FRANCIS, GLENN A", "Address": "PO Box 8920", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 93600, "Improved_V": 244400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.13156752500001, "SHAPE_Area": 1484.24212855 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364668.352099999785423, 256956.540100000798702 ], [ 364667.628799997270107, 256965.456199999898672 ], [ 364677.77139999717474, 256966.793999999761581 ], [ 364715.614100001752377, 256973.436500001698732 ], [ 364732.517899997532368, 256976.952399998903275 ], [ 364738.135099999606609, 256980.164700001478195 ], [ 364739.112300001084805, 256960.118900001049042 ], [ 364730.266199998557568, 256957.302200000733137 ], [ 364722.240800000727177, 256952.803599998354912 ], [ 364719.031800001859665, 256950.877500001341105 ], [ 364708.5658999979496, 256948.892000000923872 ], [ 364703.744199998676777, 256946.9527000002563 ], [ 364700.540500000119209, 256944.393300000578165 ], [ 364686.827799998223782, 256944.91440000012517 ], [ 364678.167099997401237, 256950.364100001752377 ], [ 364668.352099999785423, 256956.540100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701033900", "MAP": "F9-383-T59", "PARCEL_NAM": "20-9", "ACRE": "0.34", "LONGITUDE": -64.87568985, "LATITUDE": 18.34169812, "OBJECTID_1": 21986, "PARCEL_NO_": "105701033900", "Tax_Legal_": "20-9 SMITH BAY EAST END QTR", "Name": "FRANCIS, YVONNE", "Address": "PO Box 7093", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53000, "Improved_V": 259800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 151.70911702699999, "SHAPE_Area": 1358.0782617 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364657.166000001132488, 256937.869500000029802 ], [ 364623.201300002634525, 256935.917500000447035 ], [ 364623.168700002133846, 256939.749299999326468 ], [ 364623.089599996805191, 256949.036800000816584 ], [ 364621.384199999272823, 256965.135899998247623 ], [ 364621.549400001764297, 256965.383699998259544 ], [ 364667.424900002777576, 256967.970199998468161 ], [ 364667.628799997270107, 256965.456199999898672 ], [ 364668.352099999785423, 256956.540100000798702 ], [ 364668.760799996554852, 256951.501499999314547 ], [ 364669.508599996566772, 256942.282800000160933 ], [ 364669.807700000703335, 256938.596000000834465 ], [ 364657.166000001132488, 256937.869500000029802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701034100", "MAP": "G9-556-T60", "PARCEL_NAM": "20-11", "ACRE": "0.34", "LONGITUDE": -64.87567829, "LATITUDE": 18.34134142, "OBJECTID_1": 21988, "PARCEL_NO_": "105701034100", "Tax_Legal_": "2O 11 SMITH BAY EAST END QUARTER", "Name": "GEORGE, DENZIEL B. & HELEN I. TRU", "Address": "PO Box 8344", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 53000, "Improved_V": 217800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.16544363200001, "SHAPE_Area": 1397.3571734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364628.714100003242493, 256877.068399999290705 ], [ 364628.573499999940395, 256876.817400000989437 ], [ 364626.825499996542931, 256889.116799999028444 ], [ 364625.587899997830391, 256904.851599998772144 ], [ 364625.430900000035763, 256906.847600001841784 ], [ 364672.119499996304512, 256910.095499999821186 ], [ 364672.313900001347065, 256907.699099998921156 ], [ 364672.702600002288818, 256902.907499998807907 ], [ 364674.539499998092651, 256880.262299999594688 ], [ 364659.315600000321865, 256879.201200000941753 ], [ 364628.714100003242493, 256877.068399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701058000", "MAP": null, "PARCEL_NAM": "113-2D", "ACRE": null, "LONGITUDE": -64.87521285, "LATITUDE": 18.34050868, "OBJECTID_1": 22154, "PARCEL_NO_": "105701058000", "Tax_Legal_": "SMITH BAY 113-2D EAST END QTR", "Name": "Warren E, Jereem A, Jadeen A & Jarleen A Knight", "Address": "113-2D ESTATE SMITH BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 41600, "Improved_V": 178600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.81845201199999, "SHAPE_Area": 1442.1297948599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364674.651000000536442, 256810.849300000816584 ], [ 364682.083400003612041, 256811.563000001013279 ], [ 364676.961400002241135, 256854.06810000166297 ], [ 364718.231899999082088, 256855.456599999219179 ], [ 364720.65990000218153, 256854.421100001782179 ], [ 364720.693999998271465, 256850.410599999129772 ], [ 364715.933499999344349, 256841.294599998742342 ], [ 364712.020599998533726, 256827.330400001257658 ], [ 364675.959499999880791, 256800.859600000083447 ], [ 364675.099200002849102, 256807.185400001704693 ], [ 364674.651000000536442, 256810.849300000816584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701034300", "MAP": "F9-1572-T65", "PARCEL_NAM": "20-13", "ACRE": "0.45", "LONGITUDE": -64.87555591, "LATITUDE": 18.340403, "OBJECTID_1": 21990, "PARCEL_NO_": "105701034300", "Tax_Legal_": "20-13 SMITH BAY 1,2&3 EASTEND", "Name": "AUNT G LLC", "Address": "PO BOX 3401", "City": "New York", "State": "New York", "Zip": 10027, "Country": "United States", "Land_Value": 53500, "Improved_V": 1700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 81.588779737799996, "SHAPE_Area": 135.63677091900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364637.637599997222424, 256807.115200001746416 ], [ 364637.925800003111362, 256807.322700001299381 ], [ 364674.651000000536442, 256810.849300000816584 ], [ 364675.099200002849102, 256807.185400001704693 ], [ 364638.035800002515316, 256803.715599998831749 ], [ 364637.637599997222424, 256807.115200001746416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701034200", "MAP": "F9-599-T60", "PARCEL_NAM": "20-12", "ACRE": "0.79", "LONGITUDE": -64.87564791, "LATITUDE": 18.34090373, "OBJECTID_1": 21989, "PARCEL_NO_": "105701034200", "Tax_Legal_": "ESTATE SMITH BAY 20 12 EAST END QTR", "Name": "COMISSIONG, RICHARD", "Address": "PO Box 335", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 47900, "Improved_V": 94700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 230.35711898700001, "SHAPE_Area": 3129.07155096 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364676.961400002241135, 256854.06810000166297 ], [ 364682.083400003612041, 256811.563000001013279 ], [ 364674.651000000536442, 256810.849300000816584 ], [ 364637.925800003111362, 256807.322700001299381 ], [ 364637.637599997222424, 256807.115200001746416 ], [ 364633.687799997627735, 256840.832499999552965 ], [ 364628.573499999940395, 256876.817400000989437 ], [ 364628.714100003242493, 256877.068399999290705 ], [ 364659.315600000321865, 256879.201200000941753 ], [ 364674.539499998092651, 256880.262299999594688 ], [ 364676.052299998700619, 256861.612300001084805 ], [ 364676.961400002241135, 256854.06810000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701080100", "MAP": "D9-3072-T85", "PARCEL_NAM": "20-1", "ACRE": ".23", "LONGITUDE": -64.8763887, "LATITUDE": 18.34400692, "OBJECTID_1": 22251, "PARCEL_NO_": "105701080100", "Tax_Legal_": "SMITH BAY 20-1 EASTEND QTR.", "Name": "CARTY, TIMOTHENS & VALEAIE", "Address": "PO Box 12273", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 368100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.24900046900001, "SHAPE_Area": 976.565935674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364547.555500000715256, 257201.941899999976158 ], [ 364549.866599999368191, 257214.626499999314547 ], [ 364553.689499996602535, 257239.144600000232458 ], [ 364552.847300000488758, 257243.359600000083447 ], [ 364557.670800000429153, 257245.087799999862909 ], [ 364583.594999998807907, 257230.945599999278784 ], [ 364581.195900000631809, 257228.603900000452995 ], [ 364575.618199996650219, 257220.747800000011921 ], [ 364569.311599999666214, 257203.808699999004602 ], [ 364567.718699999153614, 257201.473700001835823 ], [ 364565.312399998307228, 257199.976300001144409 ], [ 364547.555500000715256, 257201.941899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105701080100", "MAP": "D9-3072-T85", "PARCEL_NAM": "ROW 20-1-G", "ACRE": "0.17", "LONGITUDE": -64.87616234, "LATITUDE": 18.34403864, "OBJECTID_1": 22251, "PARCEL_NO_": "105701080100", "Tax_Legal_": "SMITH BAY 20-1 EASTEND QTR.", "Name": "CARTY, TIMOTHENS & VALEAIE", "Address": "PO Box 12273", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35900, "Improved_V": 368100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 143.581410535, "SHAPE_Area": 396.92333947700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364567.718699999153614, 257201.473700001835823 ], [ 364569.311599999666214, 257203.808699999004602 ], [ 364575.618199996650219, 257220.747800000011921 ], [ 364581.195900000631809, 257228.603900000452995 ], [ 364583.594999998807907, 257230.945599999278784 ], [ 364586.789700001478195, 257234.560400001704693 ], [ 364596.40429999679327, 257241.816199999302626 ], [ 364610.059500001370907, 257248.049699999392033 ], [ 364612.527000002563, 257242.370400000363588 ], [ 364605.29169999808073, 257239.778000000864267 ], [ 364598.069099999964237, 257235.708099998533726 ], [ 364588.465300001204014, 257227.1858000010252 ], [ 364579.692900002002716, 257215.714899998158216 ], [ 364574.973700001835823, 257201.744100000709295 ], [ 364575.808799996972084, 257198.373500000685453 ], [ 364573.402500003576279, 257196.8761 ], [ 364567.718699999153614, 257201.473700001835823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701080300", "MAP": "D9-3072-T85", "PARCEL_NAM": "20-1-C", "ACRE": "0.24", "LONGITUDE": -64.87574953, "LATITUDE": 18.34423607, "OBJECTID_1": 22253, "PARCEL_NO_": "105701080300", "Tax_Legal_": "SMITH BAY 20-1-C EAST END QTR.", "Name": "FREDERICK, EGBERT and CLARIS", "Address": "6108 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 46000, "Improved_V": 95700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.71254361800001, "SHAPE_Area": 1045.75194777 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364612.527000002563, 257242.370400000363588 ], [ 364610.059500001370907, 257248.049699999392033 ], [ 364621.187799997627735, 257266.928100001066923 ], [ 364638.892499998211861, 257271.083799999207258 ], [ 364640.623800002038479, 257257.165800001472235 ], [ 364647.398000001907349, 257219.224399998784065 ], [ 364612.527000002563, 257242.370400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701080200", "MAP": "D9-3072-T85", "PARCEL_NAM": "20-1-B", "ACRE": "0.25", "LONGITUDE": -64.87612688, "LATITUDE": 18.34424449, "OBJECTID_1": 22252, "PARCEL_NO_": "105701080200", "Tax_Legal_": "SMITH BAY 20-1-B EAST END QTR.", "Name": "GRIGG, DAVID & SUSAN", "Address": "PO Box 502981", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 48600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 150.49210694199999, "SHAPE_Area": 846.78104306600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364610.059500001370907, 257248.049699999392033 ], [ 364596.40429999679327, 257241.816199999302626 ], [ 364586.789700001478195, 257234.560400001704693 ], [ 364583.594999998807907, 257230.945599999278784 ], [ 364557.670800000429153, 257245.087799999862909 ], [ 364621.187799997627735, 257266.928100001066923 ], [ 364610.059500001370907, 257248.049699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701080400", "MAP": "D9-3072-T85", "PARCEL_NAM": "20-1-D", "ACRE": "0.25", "LONGITUDE": -64.87581829, "LATITUDE": 18.34397158, "OBJECTID_1": 22254, "PARCEL_NO_": "105701080400", "Tax_Legal_": "SMITH BAY 20-1-D EASTEND QTR.", "Name": "BLAKE, RICHARD A. H", "Address": "PO Box 502751", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 27000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.241016769, "SHAPE_Area": 1522.16456197 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364647.464500002563, 257211.414500001817942 ], [ 364648.479400001466274, 257186.935899998992682 ], [ 364588.465300001204014, 257227.1858000010252 ], [ 364598.069099999964237, 257235.708099998533726 ], [ 364605.29169999808073, 257239.778000000864267 ], [ 364612.527000002563, 257242.370400000363588 ], [ 364647.398000001907349, 257219.224399998784065 ], [ 364647.464500002563, 257211.414500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701080500", "MAP": "D9-3072-T85", "PARCEL_NAM": "20-1-E", "ACRE": "0.24", "LONGITUDE": -64.87600781, "LATITUDE": 18.34385846, "OBJECTID_1": 22255, "PARCEL_NO_": "105701080500", "Tax_Legal_": "SMITH BAY 20-1-E EAST END QTR.", "Name": "MARSH, CONSTANCIA & SHERNETTE BYRON", "Address": "PO Box 10752", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 25900, "Improved_V": 47600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.43124309199999, "SHAPE_Area": 1069.16012671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364648.479400001466274, 257186.935899998992682 ], [ 364574.973700001835823, 257201.744100000709295 ], [ 364579.692900002002716, 257215.714899998158216 ], [ 364588.465300001204014, 257227.1858000010252 ], [ 364648.479400001466274, 257186.935899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701080600", "MAP": "D9-3072-T85", "PARCEL_NAM": "20-1-F", "ACRE": "0.29", "LONGITUDE": -64.87594, "LATITUDE": 18.343703, "OBJECTID_1": 22256, "PARCEL_NO_": "105701080600", "Tax_Legal_": "SMITH BAY 20-1-F EAST END QTR.", "Name": "SMITH, CLARENCE A.", "Address": "PO Box 307376", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.20549527, "SHAPE_Area": 801.671580758 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364648.524400003254414, 257181.659000001847744 ], [ 364596.936599999666214, 257179.336899999529123 ], [ 364593.666400000452995, 257184.587499998509884 ], [ 364589.600699998438358, 257188.565000001341105 ], [ 364584.732199996709824, 257192.113699998706579 ], [ 364575.826800003647804, 257196.262699998915195 ], [ 364575.808799996972084, 257198.373500000685453 ], [ 364574.973700001835823, 257201.744100000709295 ], [ 364648.479400001466274, 257186.935899998992682 ], [ 364648.524400003254414, 257181.659000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701033200", "MAP": "G9-371-T56", "PARCEL_NAM": "20-2", "ACRE": "0.34", "LONGITUDE": -64.87580524000001, "LATITUDE": 18.34352327, "OBJECTID_1": 21979, "PARCEL_NO_": "105701033200", "Tax_Legal_": "2 2O SMITH BAY EAST END QUARTER", "Name": "NIBBS, DENISE", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 53000, "Improved_V": 179400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.32421656, "SHAPE_Area": 1157.7523265899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364648.733000002801418, 257157.173799999058247 ], [ 364605.206500001251698, 257155.128800000995398 ], [ 364601.878799997270107, 257167.133900001645088 ], [ 364596.936599999666214, 257179.336899999529123 ], [ 364648.524400003254414, 257181.659000001847744 ], [ 364648.547799997031689, 257178.914900001138449 ], [ 364648.733000002801418, 257157.173799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003015700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97990175, "LATITUDE": 18.36690941, "OBJECTID_1": 152, "PARCEL_NO_": "101003015700", "Tax_Legal_": "SORGENFRI 5-28A S S QTR", "Name": "DAY, ANTOINETTE (TRUSTEE)", "Address": "PO Box 304942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 85800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.69905670599999, "SHAPE_Area": 2135.6835419600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353630.093000002205372, 259636.638999998569489 ], [ 353610.107900001108646, 259626.477099999785423 ], [ 353606.209799997508526, 259631.160500001162291 ], [ 353573.56530000269413, 259676.911699999123812 ], [ 353603.960600003600121, 259705.869199998676777 ], [ 353604.786700002849102, 259703.554000001400709 ], [ 353614.685400001704693, 259677.459399998188019 ], [ 353627.881300002336502, 259642.947999998927116 ], [ 353630.093000002205372, 259636.638999998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003012600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98014017, "LATITUDE": 18.36671242, "OBJECTID_1": 125, "PARCEL_NO_": "101003012600", "Tax_Legal_": "5-28 ESTATE SORGENFRI NO.1 SOUTHSIDE QTR", "Name": "DAY, ANTOINETTE (TRUSTEE)", "Address": "PO Box 304942", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91900, "Improved_V": 140400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.89698224200001, "SHAPE_Area": 1883.7380561299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353610.107900001108646, 259626.477099999785423 ], [ 353579.891099996864796, 259611.112700000405312 ], [ 353577.315600000321865, 259615.303100001066923 ], [ 353549.570100001990795, 259653.917300000786781 ], [ 353573.56530000269413, 259676.911699999123812 ], [ 353606.209799997508526, 259631.160500001162291 ], [ 353610.107900001108646, 259626.477099999785423 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97975749, "LATITUDE": 18.36629506, "OBJECTID_1": 131, "PARCEL_NO_": "101003013200", "Tax_Legal_": "SORGENFRI EST. 5-27 EASTERN SECTION", "Name": "FREDERICK, LISA", "Address": "PO Box 10830", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 149700, "Improved_V": 209600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.60454956400002, "SHAPE_Area": 4270.4283923100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353612.472499996423721, 259558.595600001513958 ], [ 353595.401500001549721, 259553.52760000154376 ], [ 353564.569099999964237, 259601.1233000010252 ], [ 353582.221799999475479, 259607.321699999272823 ], [ 353579.891099996864796, 259611.112700000405312 ], [ 353610.107900001108646, 259626.477099999785423 ], [ 353630.093000002205372, 259636.638999998569489 ], [ 353632.013599999248981, 259631.160599999129772 ], [ 353644.387000001966953, 259598.542399998754263 ], [ 353654.298299998044968, 259570.970300000160933 ], [ 353626.950199998915195, 259562.936000000685453 ], [ 353612.472499996423721, 259558.595600001513958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98033721, "LATITUDE": 18.36605569, "OBJECTID_1": 130, "PARCEL_NO_": "101003013100", "Tax_Legal_": "SORGENFRI EST. 5-26 S S QTR", "Name": "SEREIKA, JOAN U", "Address": "P O BOX 3163", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 132100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 243.44251924700001, "SHAPE_Area": 3463.73389894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353595.401500001549721, 259553.52760000154376 ], [ 353564.212499998509884, 259544.268399998545647 ], [ 353559.369199998676777, 259544.862100001424551 ], [ 353506.910300001502037, 259550.13230000063777 ], [ 353510.594800002872944, 259590.903499998152256 ], [ 353528.340899996459484, 259590.204300001263618 ], [ 353535.585100002586842, 259591.741300001740456 ], [ 353542.827600002288818, 259593.48930000141263 ], [ 353564.569099999964237, 259601.1233000010252 ], [ 353595.401500001549721, 259553.52760000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003014700", "MAP": "B9-41-T62", "PARCEL_NAM": "5-16", "ACRE": "0.89", "LONGITUDE": -64.97948229000001, "LATITUDE": 18.36574373, "OBJECTID_1": 143, "PARCEL_NO_": "101003014700", "Tax_Legal_": "SORGENFRI 5-16 SOUTHSIDE QTR.", "Name": "ERIC JAMES RYLEY, (TRUSTEE)", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 147000, "Improved_V": 321600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.582535713, "SHAPE_Area": 3480.6301222799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353674.930799998342991, 259515.410399999469519 ], [ 353653.187299996614456, 259512.066100001335144 ], [ 353629.800700001418591, 259512.296799998730421 ], [ 353618.510499998927116, 259512.415500000119209 ], [ 353599.239200003445148, 259510.013199999928474 ], [ 353595.884800001978874, 259552.781599998474121 ], [ 353595.401500001549721, 259553.52760000154376 ], [ 353612.472499996423721, 259558.595600001513958 ], [ 353626.950199998915195, 259562.936000000685453 ], [ 353654.298299998044968, 259570.970300000160933 ], [ 353661.73309999704361, 259550.13289999961853 ], [ 353665.0320999994874, 259541.504999998956919 ], [ 353674.930799998342991, 259515.410399999469519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003014500", "MAP": "B9-81-T62", "PARCEL_NAM": "5-17", "ACRE": "0.74", "LONGITUDE": -64.97999196000001, "LATITUDE": 18.36568039, "OBJECTID_1": 141, "PARCEL_NO_": "101003014500", "Tax_Legal_": "5-17 SORGENFRI SOUTH SIDE QTR.", "Name": "HOLLAND, TERRENCE M.", "Address": "PO BOX 304154", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 137900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.638564347, "SHAPE_Area": 2348.0115707499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353595.884800001978874, 259552.781599998474121 ], [ 353599.239200003445148, 259510.013199999928474 ], [ 353589.512000001966953, 259508.800700001418591 ], [ 353576.641599997878075, 259505.106800001114607 ], [ 353570.191100001335144, 259505.054000001400709 ], [ 353560.515399999916553, 259504.974800001829863 ], [ 353552.448600001633167, 259505.330899998545647 ], [ 353535.458499997854233, 259511.946899998933077 ], [ 353545.351099997758865, 259546.270399998873472 ], [ 353559.369199998676777, 259544.862100001424551 ], [ 353564.212499998509884, 259544.268399998545647 ], [ 353595.401500001549721, 259553.52760000154376 ], [ 353595.884800001978874, 259552.781599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101003014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.98064879, "LATITUDE": 18.36569974, "OBJECTID_1": 139, "PARCEL_NO_": "101003014200", "Tax_Legal_": "SORGENFRI 5-18 No.1 SOUTHSIDE QTR.", "Name": "REOVAN, VALBERG E. -TRUSTEE", "Address": "PO Box 303355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 116100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.430886069, "SHAPE_Area": 1648.31624865 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353545.351099997758865, 259546.270399998873472 ], [ 353535.458499997854233, 259511.946899998933077 ], [ 353503.927799999713898, 259521.610199999064207 ], [ 353488.588100001215935, 259523.806699998676777 ], [ 353486.734499998390675, 259552.078099999576807 ], [ 353506.910300001502037, 259550.13230000063777 ], [ 353545.351099997758865, 259546.270399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602030800", "MAP": "G9-1032-T68", "PARCEL_NAM": "20-4", "ACRE": "0.39", "LONGITUDE": -64.87252451000001, "LATITUDE": 18.32274231, "OBJECTID_1": 38470, "PARCEL_NO_": "107602030800", "Tax_Legal_": "20-4 NADIR RED HOOK QTR", "Name": "THOMAS, BENTLEY & JOYCELYN", "Address": "BOX 4465", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.226924118, "SHAPE_Area": 1506.23420564 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365015.063799999654293, 254857.352400001138449 ], [ 364977.183300003409386, 254855.142599999904633 ], [ 364977.01969999819994, 254874.350699998438358 ], [ 364954.439300000667572, 254874.588100001215935 ], [ 364954.01240000128746, 254878.594900000840425 ], [ 364955.449600003659725, 254890.485199999064207 ], [ 364955.987899996340275, 254892.673900000751019 ], [ 364995.503700003027916, 254881.679200001060963 ], [ 365019.748800002038479, 254875.333700001239777 ], [ 365032.782899998128414, 254859.819499999284744 ], [ 365015.063799999654293, 254857.352400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105301089900", "MAP": "A9-141-T70", "PARCEL_NAM": "79 ROW", "ACRE": "2,479 sq ft", "LONGITUDE": -64.94570619, "LATITUDE": 18.34616303, "OBJECTID_1": 9289, "PARCEL_NO_": "105301089900", "Tax_Legal_": "SOLBERG REM 79 (ROADS) LITTLE NORTHSIDE QTR", "Name": "BALL, VERNON", "Address": "Po Box 1689", "City": "Bonita Springs", "State": "Florida", "Zip": 34133, "Country": "United States", "Land_Value": 260500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.107441026299995, "SHAPE_Area": 232.34597181399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357249.035400003194809, 257376.928700000047684 ], [ 357243.523599997162819, 257374.924499999731779 ], [ 357240.087600000202656, 257381.700100000947714 ], [ 357225.535800002515316, 257411.658599998801947 ], [ 357229.550200000405312, 257415.835900001227856 ], [ 357241.038199998438358, 257392.498500000685453 ], [ 357242.686800003051758, 257388.290100000798702 ], [ 357249.035400003194809, 257376.928700000047684 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301083000", "MAP": "A9-141-T70", "PARCEL_NAM": "79-45", "ACRE": null, "LONGITUDE": -64.94538582, "LATITUDE": 18.34609271, "OBJECTID_1": 9280, "PARCEL_NO_": "105301083000", "Tax_Legal_": "SOLBERG 79-45 LITTLE NORTHSIDE", "Name": "PHIPPS, CHARLES", "Address": "PO Box 7873", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41600, "Improved_V": 229400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.32425058600001, "SHAPE_Area": 1316.23098312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357279.883299998939037, 257376.140000000596046 ], [ 357278.340800002217293, 257367.894799999892712 ], [ 357249.035400003194809, 257376.928700000047684 ], [ 357242.686800003051758, 257388.290100000798702 ], [ 357241.038199998438358, 257392.498500000685453 ], [ 357277.934399999678135, 257415.598600000143051 ], [ 357290.243100002408028, 257390.579199999570847 ], [ 357286.236699998378754, 257387.591099999845028 ], [ 357282.244699999690056, 257382.91440000012517 ], [ 357279.883299998939037, 257376.140000000596046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301081300", "MAP": "A9-141-T70", "PARCEL_NAM": "79-41", "ACRE": "0.354", "LONGITUDE": -64.94553135, "LATITUDE": 18.34580992, "OBJECTID_1": 9263, "PARCEL_NO_": "105301081300", "Tax_Legal_": "SOLBERG 79-41 LITTLE NORTHSIDE", "Name": "MARCHENA, NADINE T", "Address": "PO Box 6052", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 73600, "Improved_V": 194100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.526003428, "SHAPE_Area": 1149.3599131200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357278.340800002217293, 257367.894799999892712 ], [ 357275.282799996435642, 257348.238000001758337 ], [ 357272.093500003218651, 257343.990100000053644 ], [ 357265.668099999427795, 257340.982200000435114 ], [ 357253.582400001585484, 257339.827799998223782 ], [ 357236.682199999690056, 257344.733199998736382 ], [ 357243.523599997162819, 257374.924499999731779 ], [ 357249.035400003194809, 257376.928700000047684 ], [ 357278.340800002217293, 257367.894799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105301080900", "MAP": "A9-141-T70", "PARCEL_NAM": "79-42", "ACRE": "0.314", "LONGITUDE": -64.94579579000001, "LATITUDE": 18.34598335, "OBJECTID_1": 9259, "PARCEL_NO_": "105301080900", "Tax_Legal_": "SOLBERG 79-42 LITTLE NORTHSIDE", "Name": "HUGGINS, CLIVE & MARITA", "Address": "2607-7B Gamble Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57800, "Improved_V": 267300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.739152445, "SHAPE_Area": 1294.10858463 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357243.523599997162819, 257374.924499999731779 ], [ 357236.682199999690056, 257344.733199998736382 ], [ 357230.94820000231266, 257346.39750000089407 ], [ 357226.900399997830391, 257348.264199998229742 ], [ 357217.9662000015378, 257355.790500000119209 ], [ 357215.505900003015995, 257360.625500001013279 ], [ 357213.83219999819994, 257367.789000000804663 ], [ 357214.456900000572205, 257389.114500001072884 ], [ 357216.010200001299381, 257396.093299999833107 ], [ 357220.758100003004074, 257406.686900001019239 ], [ 357225.535800002515316, 257411.658599998801947 ], [ 357240.087600000202656, 257381.700100000947714 ], [ 357243.523599997162819, 257374.924499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050600", "MAP": "A3-116-T80", "PARCEL_NAM": "36", "ACRE": "3.55", "LONGITUDE": -64.95642516, "LATITUDE": 18.33644368, "OBJECTID_1": 8725, "PARCEL_NO_": "105204050600", "Tax_Legal_": "36 NISKY No 6 SOUTHSIDE QTR", "Name": "VIRGIN ISLANDS PORT AUTHORITY", "Address": "PO Box 301707", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 801700, "Improved_V": 16000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 532.70896033700001, "SHAPE_Area": 15404.098864 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356101.260399997234344, 256375.711100000888109 ], [ 356108.266800001263618, 256366.754299998283386 ], [ 356118.902999997138977, 256359.451799999922514 ], [ 356132.238099999725819, 256356.435499999672174 ], [ 356148.430600002408028, 256358.657999999821186 ], [ 356152.875600002706051, 256362.785500001162291 ], [ 356158.30290000140667, 256369.576299998909235 ], [ 356167.580200001597404, 256372.574599999934435 ], [ 356191.176500000059605, 256253.0777000002563 ], [ 356116.941799998283386, 256258.80290000140667 ], [ 356033.83049999922514, 256265.299899999052286 ], [ 356037.6570999994874, 256289.395899999886751 ], [ 356043.00280000269413, 256324.481199998408556 ], [ 356052.943599998950958, 256388.101700000464916 ], [ 356064.246299996972084, 256386.505399998277426 ], [ 356090.107699997723103, 256379.750999998301268 ], [ 356101.260399997234344, 256375.711100000888109 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204050900", "MAP": "D9-70-T55", "PARCEL_NAM": "14", "ACRE": "0.28", "LONGITUDE": -64.95783688, "LATITUDE": 18.33686046, "OBJECTID_1": 8728, "PARCEL_NO_": "105204050900", "Tax_Legal_": "NISKY 14 SOUTHSIDE QTR", "Name": "JOSEPH-SIMON, JULIA & MARIA ELISA", "Address": "PO Box 307366", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 91500, "Improved_V": 52800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.487492019, "SHAPE_Area": 865.70779246100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355994.606100000441074, 256371.47410000115633 ], [ 355982.205700002610683, 256361.980399999767542 ], [ 355950.113200001418591, 256342.930399999022484 ], [ 355940.518200002610683, 256336.395599998533726 ], [ 355944.968099996447563, 256370.235300000756979 ], [ 355949.263300001621246, 256370.117199998348951 ], [ 355994.20610000193119, 256371.832699999213219 ], [ 355994.606100000441074, 256371.47410000115633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050500", "MAP": "A3-116-T80", "PARCEL_NAM": "REM 45", "ACRE": null, "LONGITUDE": -64.95498711, "LATITUDE": 18.33638179, "OBJECTID_1": 8723, "PARCEL_NO_": "105204050500", "Tax_Legal_": "45 & 46 NISKY NO.5 SOUTHSIDE QUARTER", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1333600, "Improved_V": 624600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 617.01851772099997, "SHAPE_Area": 21094.186856100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356324.015100002288818, 256373.187600001692772 ], [ 356327.237300001084805, 256373.037000000476837 ], [ 356329.596699997782707, 256373.223299998790026 ], [ 356320.05179999768734, 256328.472800001502037 ], [ 356335.771499998867512, 256317.800299998372793 ], [ 356361.969099998474121, 256271.574099998921156 ], [ 356367.607900001108646, 256272.253600001335144 ], [ 356366.275799997150898, 256239.312100000679493 ], [ 356210.542400002479553, 256251.547499999403954 ], [ 356191.176500000059605, 256253.0777000002563 ], [ 356167.580200001597404, 256372.574599999934435 ], [ 356181.249799996614456, 256377.119500000029802 ], [ 356196.55349999666214, 256379.144600000232458 ], [ 356324.015100002288818, 256373.187600001692772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105204050501", "MAP": "A9-731-T008", "PARCEL_NAM": null, "ACRE": "3.47", "LONGITUDE": -64.95319018000001, "LATITUDE": 18.33667931, "OBJECTID_1": 8724, "PARCEL_NO_": "105204050501", "Tax_Legal_": "45-45A NISKY SOUTHSIDE QUARTER", "Name": "B & W REALTY INVESTMENT, LTD.", "Address": "PO Box 167928", "City": "Irving", "State": "Texas", "Zip": 75016, "Country": "United States", "Land_Value": 0, "Improved_V": 6094400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.572035817, "SHAPE_Area": 200.75447399500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356449.428999997675419, 256367.553399998694658 ], [ 356475.648400001227856, 256273.771099999547005 ], [ 356474.466700002551079, 256273.399599999189377 ], [ 356448.928999997675419, 256360.884300000965595 ], [ 356446.614799998700619, 256367.458200000226498 ], [ 356443.710900001227856, 256372.379299998283386 ], [ 356440.217299997806549, 256375.647399999201298 ], [ 356436.434500001370907, 256377.414799999445677 ], [ 356432.054700002074242, 256378.428199999034405 ], [ 356435.821800000965595, 256378.719300001859665 ], [ 356442.304099999368191, 256375.412000000476837 ], [ 356445.346799999475479, 256372.501499999314547 ], [ 356449.428999997675419, 256367.553399998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105204050501", "MAP": "A9-731-T008", "PARCEL_NAM": "45-A", "ACRE": "3.47", "LONGITUDE": -64.95370602, "LATITUDE": 18.33645372, "OBJECTID_1": 8724, "PARCEL_NO_": "105204050501", "Tax_Legal_": "45-45A NISKY SOUTHSIDE QUARTER", "Name": "B & W REALTY INVESTMENT, LTD.", "Address": "PO Box 167928", "City": "Irving", "State": "Texas", "Zip": 75016, "Country": "United States", "Land_Value": 0, "Improved_V": 6094400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 491.69983311599998, "SHAPE_Area": 14468.386287699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356320.05179999768734, 256328.472800001502037 ], [ 356329.596699997782707, 256373.223299998790026 ], [ 356334.989100001752377, 256372.653999999165535 ], [ 356335.411899998784065, 256377.64299999922514 ], [ 356338.322899997234344, 256377.575300000607967 ], [ 356351.279700003564358, 256374.935899998992682 ], [ 356357.05290000140667, 256375.3918999992311 ], [ 356376.406099997460842, 256375.339200001209974 ], [ 356386.083700001239777, 256375.207299999892712 ], [ 356402.184799998998642, 256378.294399999082088 ], [ 356416.714900001883507, 256379.174499999731779 ], [ 356432.054700002074242, 256378.428199999034405 ], [ 356436.434500001370907, 256377.414799999445677 ], [ 356440.217299997806549, 256375.647399999201298 ], [ 356443.710900001227856, 256372.379299998283386 ], [ 356446.614799998700619, 256367.458200000226498 ], [ 356448.928999997675419, 256360.884300000965595 ], [ 356474.466700002551079, 256273.399599999189377 ], [ 356422.570200003683567, 256257.082499999552965 ], [ 356366.275799997150898, 256239.312100000679493 ], [ 356367.607900001108646, 256272.253600001335144 ], [ 356335.771499998867512, 256317.800299998372793 ], [ 356320.05179999768734, 256328.472800001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105204050500", "MAP": null, "PARCEL_NAM": "46", "ACRE": null, "LONGITUDE": -64.95731197000001, "LATITUDE": 18.33681852, "OBJECTID_1": 8723, "PARCEL_NO_": "105204050500", "Tax_Legal_": "45 & 46 NISKY NO.5 SOUTHSIDE QUARTER", "Name": "MORAVIAN CHURCH VI CONFERENCE", "Address": "6513 Golf Vlg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1333600, "Improved_V": 624600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.36725258500002, "SHAPE_Area": 3360.85112923 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355973.369999997317791, 256349.052999999374151 ], [ 356032.066600002348423, 256388.979299999773502 ], [ 356032.066600002348423, 256390.561099998652935 ], [ 356038.128799997270107, 256390.337900001555681 ], [ 356052.943599998950958, 256388.101700000464916 ], [ 356043.345100000500679, 256326.671799998730421 ], [ 356000.604299999773502, 256333.229699999094009 ], [ 355976.2449000030756, 256327.720100000500679 ], [ 355962.765100002288818, 256341.902699999511242 ], [ 355973.369999997317791, 256349.052999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105204050700", "MAP": "C9-301-T87", "PARCEL_NAM": "REM 13", "ACRE": "0.15", "LONGITUDE": -64.95742634, "LATITUDE": 18.33713622, "OBJECTID_1": 8726, "PARCEL_NO_": "105204050700", "Tax_Legal_": "NISKY 13 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 91500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.39080568200001, "SHAPE_Area": 530.27006543699997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356025.557899996638298, 256395.1706000007689 ], [ 355994.606100000441074, 256371.47410000115633 ], [ 355994.20610000193119, 256371.832699999213219 ], [ 355993.612000003457069, 256400.239100001752377 ], [ 356023.357100002467632, 256399.543200001120567 ], [ 356026.034100003540516, 256397.393100000917912 ], [ 356025.557899996638298, 256395.1706000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105204051300", "MAP": "A3-116-T80", "PARCEL_NAM": "44", "ACRE": "1.83", "LONGITUDE": -64.95319018000001, "LATITUDE": 18.33667931, "OBJECTID_1": 8732, "PARCEL_NO_": "105204051300", "Tax_Legal_": "NISKY 42&44 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 690000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 889.32437558200002, "SHAPE_Area": 3588.1916694500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356082.540899999439716, 256394.662399999797344 ], [ 356082.231700003147125, 256387.550599999725819 ], [ 356101.281800001859665, 256382.153099998831749 ], [ 356101.440499998629093, 256378.025499999523163 ], [ 356115.728000000119209, 256377.549300000071526 ], [ 356115.970399998128414, 256392.335799999535084 ], [ 356123.065800003707409, 256391.842000000178814 ], [ 356159.36599999666214, 256390.23930000141263 ], [ 356192.352099999785423, 256388.2652000002563 ], [ 356199.704999998211861, 256387.825199998915195 ], [ 356206.427599996328354, 256386.722899999469519 ], [ 356338.566299997270107, 256381.173599999397993 ], [ 356432.803099997341633, 256381.078200001269579 ], [ 356444.420699998736382, 256378.983800001442432 ], [ 356449.033600002527237, 256368.967599999159575 ], [ 356449.428999997675419, 256367.553399998694658 ], [ 356445.346799999475479, 256372.501499999314547 ], [ 356442.304099999368191, 256375.412000000476837 ], [ 356435.821800000965595, 256378.719300001859665 ], [ 356432.054700002074242, 256378.428199999034405 ], [ 356416.714900001883507, 256379.174499999731779 ], [ 356402.184799998998642, 256378.294399999082088 ], [ 356386.083700001239777, 256375.207299999892712 ], [ 356376.406099997460842, 256375.339200001209974 ], [ 356357.05290000140667, 256375.3918999992311 ], [ 356351.279700003564358, 256374.935899998992682 ], [ 356338.322899997234344, 256377.575300000607967 ], [ 356335.411899998784065, 256377.64299999922514 ], [ 356334.989100001752377, 256372.653999999165535 ], [ 356329.596699997782707, 256373.223299998790026 ], [ 356327.237300001084805, 256373.037000000476837 ], [ 356324.015100002288818, 256373.187600001692772 ], [ 356201.92230000346899, 256378.893699999898672 ], [ 356196.55349999666214, 256379.144600000232458 ], [ 356181.249799996614456, 256377.119500000029802 ], [ 356167.580200001597404, 256372.574599999934435 ], [ 356158.30290000140667, 256369.576299998909235 ], [ 356139.671599999070168, 256371.720499999821186 ], [ 356101.440499998629093, 256376.12049999833107 ], [ 356101.260399997234344, 256375.711100000888109 ], [ 356090.107699997723103, 256379.750999998301268 ], [ 356064.246299996972084, 256386.505399998277426 ], [ 356052.943599998950958, 256388.101700000464916 ], [ 356038.128799997270107, 256390.337999999523163 ], [ 356032.066600002348423, 256390.561099998652935 ], [ 356032.70160000026226, 256395.329300001263618 ], [ 356033.505800001323223, 256398.075100000947714 ], [ 356082.540899999439716, 256394.662399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050600", "MAP": "A3-116-T80", "PARCEL_NAM": "36A", "ACRE": "0.10", "LONGITUDE": -64.95642516, "LATITUDE": 18.33644368, "OBJECTID_1": 8725, "PARCEL_NO_": "105204050600", "Tax_Legal_": "36 NISKY No 6 SOUTHSIDE QTR", "Name": "VIRGIN ISLANDS PORT AUTHORITY", "Address": "PO Box 301707", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 801700, "Improved_V": 16000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.733637589, "SHAPE_Area": 652.14265455999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356148.430600002408028, 256358.657999999821186 ], [ 356132.238099999725819, 256356.435499999672174 ], [ 356118.902999997138977, 256359.451799999922514 ], [ 356108.266800001263618, 256366.754299998283386 ], [ 356101.260399997234344, 256375.711100000888109 ], [ 356101.440499998629093, 256376.12049999833107 ], [ 356139.671599999070168, 256371.720499999821186 ], [ 356158.30290000140667, 256369.576299998909235 ], [ 356152.875600002706051, 256362.785500001162291 ], [ 356148.430600002408028, 256358.657999999821186 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105204051300", "MAP": "A3-116-T80", "PARCEL_NAM": "42", "ACRE": null, "LONGITUDE": -64.95319018000001, "LATITUDE": 18.33667931, "OBJECTID_1": 8732, "PARCEL_NO_": "105204051300", "Tax_Legal_": "NISKY 42&44 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 690000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.643435871999998, "SHAPE_Area": 392.67378323700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356115.970399998128414, 256392.335799999535084 ], [ 356115.728000000119209, 256377.549300000071526 ], [ 356101.440499998629093, 256378.025499999523163 ], [ 356101.281800001859665, 256382.153099998831749 ], [ 356082.231700003147125, 256387.550599999725819 ], [ 356082.540899999439716, 256394.662399999797344 ], [ 356115.278800003230572, 256392.383900001645088 ], [ 356115.970399998128414, 256392.335799999535084 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "11111111111", "MAP": "G9-2493-T75", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.87299963, "LATITUDE": 18.34592241, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.874941381299998, "SHAPE_Area": 48.545826841900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364917.768299996852875, 257427.792300000786781 ], [ 364918.021899998188019, 257445.620700001716614 ], [ 364920.850400000810623, 257445.576499998569489 ], [ 364920.906099997460842, 257445.433400001376867 ], [ 364920.180600002408028, 257426.942800000309944 ], [ 364917.768299996852875, 257427.792300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701021000", "MAP": "D9-9195-T017", "PARCEL_NAM": "13 & 14-4", "ACRE": "0.29", "LONGITUDE": -64.86323683000001, "LATITUDE": 18.32467476, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.875451105, "SHAPE_Area": 910.898789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365970.104699999094009, 255069.539299998432398 ], [ 365962.098200000822544, 255069.539299998432398 ], [ 365962.83839999884367, 255116.449999999254942 ], [ 365963.05460000038147, 255125.421900000423193 ], [ 365964.945500001311302, 255126.485500000417233 ], [ 365966.725100003182888, 255126.485500000417233 ], [ 365967.436899997293949, 255125.417700000107288 ], [ 365972.848499998450279, 255116.6587999984622 ], [ 365982.984099999070168, 255100.253699999302626 ], [ 365980.452200002968311, 255069.539299998432398 ], [ 365970.104699999094009, 255069.539299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701026200", "MAP": "D9-9267-T017", "PARCEL_NAM": "13 & 14-12", "ACRE": "0.28", "LONGITUDE": -64.86321022, "LATITUDE": 18.32422713, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.84420016600001, "SHAPE_Area": 866.67422500400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365983.415700003504753, 255069.500999998301268 ], [ 365981.351999998092651, 255010.604600001126528 ], [ 365978.427100002765656, 255013.145899999886751 ], [ 365966.905699998140335, 255024.098400000482798 ], [ 365965.159400001168251, 255059.340999998152256 ], [ 365964.767200000584126, 255069.539299998432398 ], [ 365970.104699999094009, 255069.539299998432398 ], [ 365980.452200002968311, 255069.539299998432398 ], [ 365983.415700003504753, 255069.500999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701025800", "MAP": "D9-9195-T017", "PARCEL_NAM": "13 & 14-8", "ACRE": "0.28", "LONGITUDE": -64.86354576, "LATITUDE": 18.32520652, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 130.713736436, "SHAPE_Area": 1062.97207237 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365955.684799998998642, 255137.473799999803305 ], [ 365920.012999996542931, 255137.071699999272823 ], [ 365920.276199996471405, 255142.265299998223782 ], [ 365920.466399997472763, 255146.018899999558926 ], [ 365921.577500000596046, 255167.944699998944998 ], [ 365922.143799997866154, 255167.943900000303984 ], [ 365954.976400002837181, 255167.898200001567602 ], [ 365955.277800001204014, 255167.897799998521805 ], [ 365955.684799998998642, 255137.473799999803305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701025600", "MAP": "D9-9195-T017", "PARCEL_NAM": "13&14-6", "ACRE": "0.29", "LONGITUDE": -64.86353205, "LATITUDE": 18.32573898, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.408192821, "SHAPE_Area": 839.14411882900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365954.999899998307228, 255198.361800000071526 ], [ 365923.066100001335144, 255197.320500001311302 ], [ 365924.029399998486042, 255216.329100001603365 ], [ 365924.453900001943111, 255224.705099999904633 ], [ 365953.751999996602535, 255226.036800000816584 ], [ 365953.822800002992153, 255219.378499999642372 ], [ 365953.832800000905991, 255218.4364 ], [ 365954.999899998307228, 255198.361800000071526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105803010200", "MAP": "D9-9159-T017", "PARCEL_NAM": "ROW 19-1-2-6R", "ACRE": "0.52", "LONGITUDE": -64.86292418, "LATITUDE": 18.33776079, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 436.51240814699997, "SHAPE_Area": 1171.6905609600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365978.371299996972084, 256435.602400001138449 ], [ 365973.867399998009205, 256433.740299999713898 ], [ 365977.608499996364117, 256460.214600000530481 ], [ 365998.376599997282028, 256607.180399999022484 ], [ 366002.242799997329712, 256644.617300000041723 ], [ 366002.57599999755621, 256645.857599999755621 ], [ 366008.98589999973774, 256644.285599999129772 ], [ 366003.59910000115633, 256605.751499999314547 ], [ 366002.319499999284744, 256596.597600001841784 ], [ 365983.043399997055531, 256458.707699999213219 ], [ 365978.371299996972084, 256435.602400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105803010200", "MAP": "D9-8277-T009", "PARCEL_NAM": "ROW 19-1-2-A", "ACRE": null, "LONGITUDE": -64.86069951, "LATITUDE": 18.33706333, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 638.65391161399998, "SHAPE_Area": 2842.33080922 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366279.310900002717972, 256435.441300000995398 ], [ 366209.7550999969244, 256419.785199999809265 ], [ 366191.097099997103214, 256417.164200000464916 ], [ 366164.317800000309944, 256413.402399998158216 ], [ 366149.538999997079372, 256411.096400000154972 ], [ 366114.407300002872944, 256417.332299999892712 ], [ 366115.842699997127056, 256426.766100000590086 ], [ 366147.984099999070168, 256420.173000000417233 ], [ 366188.187600001692772, 256425.533500000834465 ], [ 366209.794399999082088, 256428.41440000012517 ], [ 366269.132399998605251, 256442.424800001084805 ], [ 366253.974500000476837, 256550.92339999973774 ], [ 366245.992399998009205, 256553.114399999380112 ], [ 366226.93129999935627, 256559.3739 ], [ 366230.358999997377396, 256567.600400000810623 ], [ 366237.302699998021126, 256565.938099998980761 ], [ 366242.874700002372265, 256564.604200001806021 ], [ 366262.530299998819828, 256559.477200001478195 ], [ 366264.237899996340275, 256548.106300000101328 ], [ 366264.240099996328354, 256548.092199999839067 ], [ 366269.421400003135204, 256507.815699998289347 ], [ 366277.149300001561642, 256452.572399999946356 ], [ 366279.310900002717972, 256435.441300000995398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102601027000", "MAP": "D9-9257-T018", "PARCEL_NAM": "S-1", "ACRE": "0.50", "LONGITUDE": -64.98165118, "LATITUDE": 18.36188385, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.26266988699999, "SHAPE_Area": 2138.14020347 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353448.898199997842312, 259095.671599999070168 ], [ 353422.439800001680851, 259071.528299998492002 ], [ 353397.349799998104572, 259107.142599999904633 ], [ 353402.201399996876717, 259122.315400000661612 ], [ 353404.320100001990795, 259129.436099998652935 ], [ 353406.766699999570847, 259134.397300001233816 ], [ 353410.754699997603893, 259140.915100000798702 ], [ 353415.376299999654293, 259145.893500000238419 ], [ 353421.262800000607967, 259148.102299999445677 ], [ 353448.898199997842312, 259095.671599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9317-T019", "PARCEL_NAM": "ROW 3D-R", "ACRE": "0.29", "LONGITUDE": -64.87541101, "LATITUDE": 18.3311376, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 221.96142412, "SHAPE_Area": 905.12296886199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364692.672100000083447, 255814.657600000500679 ], [ 364692.672100000083447, 255814.230099998414516 ], [ 364693.465899996459484, 255802.4560999982059 ], [ 364694.656499996781349, 255788.036299999803305 ], [ 364694.274943742144387, 255784.90534415768343 ], [ 364693.384973836422432, 255781.879385924723465 ], [ 364692.01070000231266, 255779.040399998426437 ], [ 364681.162699997425079, 255763.959199998527765 ], [ 364679.492372052802239, 255762.023439628916094 ], [ 364677.535509661305696, 255760.377884029119741 ], [ 364675.341899998486042, 255759.064399998635054 ], [ 364669.388800002634525, 255771.896699998527765 ], [ 364672.696099996566772, 255776.526900000870228 ], [ 364673.74401733931154, 255776.178343088162364 ], [ 364674.833400874689687, 255775.997052736929618 ], [ 364675.937724349845666, 255775.987443327874644 ], [ 364677.030097727722023, 255776.149748848052695 ], [ 364678.083921953453682, 255776.480017193272943 ], [ 364679.073536635725759, 255776.970206400903407 ], [ 364679.974844871554524, 255777.608380470104748 ], [ 364680.765900000929832, 255778.379000000655651 ], [ 364684.469999998807907, 255783.802999999374151 ], [ 364685.062696654174943, 255784.726738368393853 ], [ 364685.4882745326031, 255785.738403020834085 ], [ 364685.734135082981084, 255786.808045245794347 ], [ 364685.792999997735023, 255787.903999999165535 ], [ 364684.602300003170967, 255803.117600001394749 ], [ 364684.555522238835692, 255804.003925169905415 ], [ 364684.373669152439106, 255804.872654079605127 ], [ 364684.061024125665426, 255805.703324622474611 ], [ 364683.624951223609969, 255806.47637112022494 ], [ 364683.075721741304733, 255807.173585175827611 ], [ 364682.426272272365168, 255807.778544555359986 ], [ 364681.691899999976158, 255808.276999998837709 ], [ 364666.8091000020504, 255815.817600000649691 ], [ 364646.89750000089407, 255808.752199999988079 ], [ 364658.710299998521805, 255824.304499998688698 ], [ 364663.046400003135204, 255830.013300001621246 ], [ 364668.485517027380411, 255825.667163584585069 ], [ 364674.188736000971403, 255821.673895612213528 ], [ 364680.133199997246265, 255818.049499999731779 ], [ 364686.31723733281251, 255816.037803404848091 ], [ 364692.672100000083447, 255814.657600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9317-T019", "PARCEL_NAM": "3D-3", "ACRE": "1.01", "LONGITUDE": -64.8754225, "LATITUDE": 18.33046975, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 313.29432464199999, "SHAPE_Area": 3797.8404628600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364675.341899998486042, 255759.064399998635054 ], [ 364677.535509661363903, 255760.377884029061534 ], [ 364679.492372052860446, 255762.023439628857886 ], [ 364681.162699997425079, 255763.959199998527765 ], [ 364692.01070000231266, 255779.040399998426437 ], [ 364693.384973836189602, 255781.879385924781673 ], [ 364694.274943741911557, 255784.905344157741638 ], [ 364694.656499996781349, 255788.036299999803305 ], [ 364703.956600002944469, 255667.464099999517202 ], [ 364695.225400000810623, 255667.464099999517202 ], [ 364630.137699998915195, 255742.891699999570847 ], [ 364651.516099996864796, 255747.865899998694658 ], [ 364675.341899998486042, 255759.064399998635054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9317-T019", "PARCEL_NAM": "3D REM", "ACRE": "6.39", "LONGITUDE": -64.87573909, "LATITUDE": 18.32999518, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 889.86313561199995, "SHAPE_Area": 23731.914832599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364703.956600002944469, 255667.464099999517202 ], [ 364793.915200002491474, 255560.400199998170137 ], [ 364793.654799997806549, 255560.237500000745058 ], [ 364774.110500000417233, 255566.114799998700619 ], [ 364520.523100003600121, 255642.372600000351667 ], [ 364646.89750000089407, 255808.752199999988079 ], [ 364666.8091000020504, 255815.817600000649691 ], [ 364681.691899999976158, 255808.276999998837709 ], [ 364682.426272272190545, 255807.778544555185363 ], [ 364683.075721740897279, 255807.173585175536573 ], [ 364683.624951223144308, 255806.476371119933901 ], [ 364684.06102412508335, 255805.703324622212676 ], [ 364684.373669151973445, 255804.872654079430504 ], [ 364684.555522238544654, 255804.003925169847207 ], [ 364684.602300003170967, 255803.117600001394749 ], [ 364685.792999997735023, 255787.903999999165535 ], [ 364685.734135083213914, 255786.808045245736139 ], [ 364685.488274532894138, 255785.738403020746773 ], [ 364685.062696654349566, 255784.726738368306542 ], [ 364684.469999998807907, 255783.802999999374151 ], [ 364680.765900000929832, 255778.379000000655651 ], [ 364679.974844872485846, 255777.608380468562245 ], [ 364679.073536637006328, 255776.970206398138544 ], [ 364678.083921954734251, 255776.480017189634964 ], [ 364677.030097728653345, 255776.149748844094574 ], [ 364675.937724350311328, 255775.987443324062042 ], [ 364674.833400874747895, 255775.997052733873716 ], [ 364673.744017339136917, 255776.178343086387031 ], [ 364672.696099996566772, 255776.526900000870228 ], [ 364669.388800002634525, 255771.896699998527765 ], [ 364675.341899998486042, 255759.064399998635054 ], [ 364651.516099996864796, 255747.865899998694658 ], [ 364630.137699998915195, 255742.891699999570847 ], [ 364695.225400000810623, 255667.464099999517202 ], [ 364703.956600002944469, 255667.464099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96832249000001, "LATITUDE": 18.3361151, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.072401034799995, "SHAPE_Area": 151.30201805 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354841.820600003004074, 256261.535999998450279 ], [ 354841.194200001657009, 256269.052600000053644 ], [ 354843.592799998819828, 256269.70160000026226 ], [ 354873.394000001251698, 256273.745200000703335 ], [ 354857.332500003278255, 256266.014400001615286 ], [ 354841.820600003004074, 256261.535999998450279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-539-T99", "PARCEL_NAM": "3L", "ACRE": "21.15", "LONGITUDE": -64.87268088, "LATITUDE": 18.32826789, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 441.41900402099998, "SHAPE_Area": 1863.4877833800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365071.014200001955032, 255462.005100000649691 ], [ 365070.614699997007847, 255452.280299998819828 ], [ 365068.723399996757507, 255452.834699999541044 ], [ 365066.125600002706051, 255453.596200000494719 ], [ 364891.33500000089407, 255499.313000001013279 ], [ 364881.611100003123283, 255501.856300000101328 ], [ 364872.92620000243187, 255497.143399998545647 ], [ 364868.874099999666214, 255494.944499999284744 ], [ 364866.536499999463558, 255503.883600000292063 ], [ 364866.443999998271465, 255504.237399999052286 ], [ 364881.561200000345707, 255510.769499998539686 ], [ 365070.47410000115633, 255461.82149999961257 ], [ 365071.014200001955032, 255462.005100000649691 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-539-T99", "PARCEL_NAM": "3L", "ACRE": "21.15", "LONGITUDE": -64.87171786, "LATITUDE": 18.32949836, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 650.47783943000002, "SHAPE_Area": 3033.9377591799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365058.581399999558926, 255464.902899999171495 ], [ 365061.478200003504753, 255467.510099999606609 ], [ 365063.462600000202656, 255521.485199999064207 ], [ 365066.240699999034405, 255571.491500001400709 ], [ 365067.43129999935627, 255627.054099999368191 ], [ 365066.637599997222424, 255683.807399999350309 ], [ 365066.240699999034405, 255699.285500001162291 ], [ 365065.446999996900558, 255762.388799998909235 ], [ 365062.271999999880791, 255765.166900001466274 ], [ 365064.653200000524521, 255773.898200001567602 ], [ 365064.80120000243187, 255774.342199999839067 ], [ 365071.843299999833107, 255773.461899999529123 ], [ 365077.305799998342991, 255774.169300001114607 ], [ 365074.85869999974966, 255704.003400001674891 ], [ 365077.165299996733665, 255611.741300001740456 ], [ 365071.014200001955032, 255462.005100000649691 ], [ 365070.47410000115633, 255461.82149999961257 ], [ 365058.581399999558926, 255464.902899999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-6", "ACRE": "1.20", "LONGITUDE": -64.87343946, "LATITUDE": 18.32995556, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.72965065099999, "SHAPE_Area": 4532.1122022899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364923.680299997329712, 255690.854200001806021 ], [ 364915.42790000140667, 255657.137299999594688 ], [ 364906.696599997580051, 255623.085400000214577 ], [ 364885.6621999964118, 255627.4510000012815 ], [ 364869.390299998223782, 255637.372900001704693 ], [ 364854.705899998545647, 255651.660399999469519 ], [ 364849.546499997377396, 255661.979200001806021 ], [ 364847.614200003445148, 255682.462200000882149 ], [ 364876.931000001728535, 255699.999899998307228 ], [ 364906.299800001084805, 255718.732400000095367 ], [ 364908.681000001728535, 255710.001200001686811 ], [ 364913.046700000762939, 255701.666799999773502 ], [ 364918.602899998426437, 255694.919900000095367 ], [ 364923.36540000140667, 255690.951099999248981 ], [ 364923.680299997329712, 255690.854200001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "ROW 3LE", "ACRE": "0.90", "LONGITUDE": -64.8731507, "LATITUDE": 18.32991964, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 757.67674634699995, "SHAPE_Area": 3283.1976850299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364824.146499998867512, 255765.563799999654293 ], [ 364840.81530000269413, 255741.354400001466274 ], [ 364842.799599997699261, 255725.876200001686811 ], [ 364847.562200002372265, 255683.013599999248981 ], [ 364849.546499997377396, 255661.979200001806021 ], [ 364854.705899998545647, 255651.660399999469519 ], [ 364869.390299998223782, 255637.372900001704693 ], [ 364885.6621999964118, 255627.4510000012815 ], [ 364906.696599997580051, 255623.085400000214577 ], [ 364942.812299996614456, 255629.038499999791384 ], [ 364979.721799999475479, 255646.897900000214577 ], [ 365005.518700003623962, 255661.979200001806021 ], [ 365021.790600001811981, 255671.901099998503923 ], [ 365066.275200001895428, 255697.940799999982119 ], [ 365066.58500000089407, 255685.859099999070168 ], [ 365061.478200003504753, 255685.394900001585484 ], [ 365026.950000002980232, 255664.75730000063777 ], [ 364986.071800000965595, 255640.151000000536442 ], [ 364969.799900002777576, 255632.213500000536442 ], [ 364931.699799999594688, 255614.750999998301268 ], [ 364917.809199996292591, 255611.972800001502037 ], [ 364881.693499997258186, 255620.704100001603365 ], [ 364863.437200002372265, 255631.419799998402596 ], [ 364854.705899998545647, 255639.754200000315905 ], [ 364846.768399998545647, 255646.500999998301268 ], [ 364840.418399997055531, 255660.391699999570847 ], [ 364838.830899998545647, 255681.029199998825788 ], [ 364834.068400003015995, 255721.907400000840425 ], [ 364832.480899997055531, 255738.179299999028444 ], [ 364814.621500000357628, 255764.769999999552965 ], [ 364813.571000002324581, 255765.886100001633167 ], [ 364824.146499998867512, 255765.563799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-1", "ACRE": "1.20", "LONGITUDE": -64.87288183, "LATITUDE": 18.33068678, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.710052109, "SHAPE_Area": 4952.3728694800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364989.188299998641014, 255780.100099999457598 ], [ 364969.402999997138977, 255737.703099999576807 ], [ 364949.95610000193119, 255695.713599998503923 ], [ 364938.049800001084805, 255695.713599998503923 ], [ 364932.096699997782707, 255697.301100000739098 ], [ 364924.159199997782707, 255702.063700001686811 ], [ 364919.396700002253056, 255709.207400001585484 ], [ 364915.824799999594688, 255716.748100001364946 ], [ 364915.42790000140667, 255727.860599998384714 ], [ 364922.571699999272823, 255762.785599999129772 ], [ 364923.762299999594688, 255795.329500000923872 ], [ 364924.952899999916553, 255798.901299998164177 ], [ 364930.152800001204014, 255802.301300000399351 ], [ 364933.684199996292591, 255801.282600000500679 ], [ 364988.849899999797344, 255780.248199999332428 ], [ 364989.188299998641014, 255780.100099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "ROW 3LF", "ACRE": "0.53", "LONGITUDE": -64.87294546, "LATITUDE": 18.33041665, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 459.23005000400002, "SHAPE_Area": 1895.02025097 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364930.152800001204014, 255802.301300000399351 ], [ 364924.952899999916553, 255798.901299998164177 ], [ 364923.762299999594688, 255795.329500000923872 ], [ 364922.571699999272823, 255762.785599999129772 ], [ 364915.42790000140667, 255727.860599998384714 ], [ 364915.824799999594688, 255716.748100001364946 ], [ 364919.396700002253056, 255709.207400001585484 ], [ 364924.159199997782707, 255702.063700001686811 ], [ 364932.096699997782707, 255697.301100000739098 ], [ 364938.049800001084805, 255695.713599998503923 ], [ 364949.95610000193119, 255695.713599998503923 ], [ 364978.531199999153614, 255687.776099998503923 ], [ 364995.596799999475479, 255679.838599998503923 ], [ 365017.424999997019768, 255670.710499998182058 ], [ 365021.790600001811981, 255671.901099998503923 ], [ 365006.971799999475479, 255662.865200001746416 ], [ 365004.328100003302097, 255667.932300001382828 ], [ 364975.356200002133846, 255679.441700000315905 ], [ 364951.146700002253056, 255685.791700001806021 ], [ 364945.193599998950958, 255686.982400000095367 ], [ 364933.684199996292591, 255687.776099998503923 ], [ 364923.36540000140667, 255690.951099999248981 ], [ 364918.602899998426437, 255694.919900000095367 ], [ 364913.046700000762939, 255701.666799999773502 ], [ 364908.681000001728535, 255710.001200001686811 ], [ 364906.299800001084805, 255718.732400000095367 ], [ 364906.696599997580051, 255731.035599999129772 ], [ 364913.443499997258186, 255767.151299998164177 ], [ 364915.824799999594688, 255803.663899999111891 ], [ 364913.069899998605251, 255807.228999998420477 ], [ 364930.152800001204014, 255802.301300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-14", "ACRE": "1.18", "LONGITUDE": -64.87351349, "LATITUDE": 18.32904952, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.32919795700002, "SHAPE_Area": 4458.8400008799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364848.495899997651577, 255572.872000001370907 ], [ 364849.149700000882149, 255572.602800000458956 ], [ 364881.3175999969244, 255620.924699999392033 ], [ 364881.693499997258186, 255620.704100001603365 ], [ 364917.809199996292591, 255611.972800001502037 ], [ 364918.999799996614456, 255607.210299998521805 ], [ 364893.202899999916553, 255548.472699999809265 ], [ 364885.460199996829033, 255509.759300000965595 ], [ 364881.561200000345707, 255510.769499998539686 ], [ 364866.443999998271465, 255504.237399999052286 ], [ 364862.26410000026226, 255520.221500001847744 ], [ 364848.495899997651577, 255572.872000001370907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "ROW 3LD", "ACRE": "0.27", "LONGITUDE": -64.87328116, "LATITUDE": 18.32898803, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 246.11732132099999, "SHAPE_Area": 966.11612877200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364894.614399999380112, 255507.38740000128746 ], [ 364885.460199996829033, 255509.759300000965595 ], [ 364893.202899999916553, 255548.472699999809265 ], [ 364918.999799996614456, 255607.210299998521805 ], [ 364917.809199996292591, 255611.972800001502037 ], [ 364931.292599998414516, 255614.669599998742342 ], [ 364909.474799998104572, 255564.347699999809265 ], [ 364902.331000000238419, 255546.091499999165535 ], [ 364893.5996999964118, 255510.769499998539686 ], [ 364894.614399999380112, 255507.38740000128746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-12", "ACRE": "1.00", "LONGITUDE": -64.87290954, "LATITUDE": 18.32913687, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 292.02255318200002, "SHAPE_Area": 4286.9734221400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364979.721799999475479, 255539.662099998444319 ], [ 364940.431100003421307, 255542.837099999189377 ], [ 364902.30120000243187, 255545.971000000834465 ], [ 364902.331000000238419, 255546.091499999165535 ], [ 364909.474799998104572, 255564.347699999809265 ], [ 364931.292599998414516, 255614.669599998742342 ], [ 364931.699799999594688, 255614.750999998301268 ], [ 364969.799900002777576, 255632.213500000536442 ], [ 364973.371799997985363, 255629.355999998748302 ], [ 364970.990500003099442, 255611.893500000238419 ], [ 364967.021799996495247, 255566.649599999189377 ], [ 364979.721799999475479, 255539.662099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "A9-539-T99", "PARCEL_NAM": "3L", "ACRE": "21.15", "LONGITUDE": -64.87259061, "LATITUDE": 18.32896799, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.96750331099997, "SHAPE_Area": 1435.14878613 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364986.768399998545647, 255483.509899999946356 ], [ 364977.149099998176098, 255486.002300001680851 ], [ 364979.721799999475479, 255539.662099998444319 ], [ 364967.021799996495247, 255566.649599999189377 ], [ 364970.990500003099442, 255611.893500000238419 ], [ 364973.371799997985363, 255629.355999998748302 ], [ 364969.799900002777576, 255632.213500000536442 ], [ 364983.641999997198582, 255638.965700000524521 ], [ 364980.118699997663498, 255611.099700000137091 ], [ 364977.737400002777576, 255582.12779999896884 ], [ 364976.546800002455711, 255567.840300001204014 ], [ 364988.849899999797344, 255540.059000000357628 ], [ 364986.768399998545647, 255483.509899999946356 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-13", "ACRE": "1.06", "LONGITUDE": -64.87295734, "LATITUDE": 18.32859604, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 256.450926396, "SHAPE_Area": 3791.27563457 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364979.721799999475479, 255539.662099998444319 ], [ 364977.149099998176098, 255486.002300001680851 ], [ 364894.614399999380112, 255507.38740000128746 ], [ 364893.5996999964118, 255510.769499998539686 ], [ 364902.30120000243187, 255545.971000000834465 ], [ 364940.431100003421307, 255542.837099999189377 ], [ 364979.721799999475479, 255539.662099998444319 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-8", "ACRE": "1.10", "LONGITUDE": -64.87209594, "LATITUDE": 18.32971137, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 271.13750679700001, "SHAPE_Area": 3725.6461645600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365067.426399998366833, 255627.401999998837709 ], [ 364980.118699997663498, 255611.099700000137091 ], [ 364983.641999997198582, 255638.965700000524521 ], [ 364986.071800000965595, 255640.151000000536442 ], [ 365026.950000002980232, 255664.75730000063777 ], [ 365061.478200003504753, 255685.394900001585484 ], [ 365066.58500000089407, 255685.859099999070168 ], [ 365066.637599997222424, 255683.807399999350309 ], [ 365067.426399998366833, 255627.401999998837709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-9", "ACRE": "1.10", "LONGITUDE": -64.87212389, "LATITUDE": 18.32930098, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 262.96568209499998, "SHAPE_Area": 3763.7054445 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365066.240699999034405, 255571.491500001400709 ], [ 365020.203100003302097, 255576.174600001424551 ], [ 364977.737400002777576, 255582.12779999896884 ], [ 364980.118699997663498, 255611.099700000137091 ], [ 365067.426399998366833, 255627.401999998837709 ], [ 365067.43129999935627, 255627.054099999368191 ], [ 365066.240699999034405, 255571.491500001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-10", "ACRE": "1.10", "LONGITUDE": -64.87215675, "LATITUDE": 18.32890692, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.85006283199999, "SHAPE_Area": 3762.2117524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365063.462600000202656, 255521.485199999064207 ], [ 365026.950000002980232, 255530.533900000154972 ], [ 364988.849899999797344, 255540.059000000357628 ], [ 364976.546800002455711, 255567.840300001204014 ], [ 364977.737400002777576, 255582.12779999896884 ], [ 365020.203100003302097, 255576.174600001424551 ], [ 365066.240699999034405, 255571.491500001400709 ], [ 365063.462600000202656, 255521.485199999064207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-16", "ACRE": "0.36", "LONGITUDE": -64.87394764, "LATITUDE": 18.32976778, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.09587355799999, "SHAPE_Area": 1295.6896472799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364854.705899998545647, 255639.754200000315905 ], [ 364839.320699997246265, 255607.958099998533726 ], [ 364834.025200001895428, 255628.208500001579523 ], [ 364810.662500001490116, 255660.22410000115633 ], [ 364838.769299998879433, 255681.558200001716614 ], [ 364838.830899998545647, 255681.029199998825788 ], [ 364840.418399997055531, 255660.391699999570847 ], [ 364846.768399998545647, 255646.500999998301268 ], [ 364854.705899998545647, 255639.754200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-15", "ACRE": "0.37", "LONGITUDE": -64.87373495, "LATITUDE": 18.32941564, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.14904680699999, "SHAPE_Area": 1355.5941985500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364881.3175999969244, 255620.924699999392033 ], [ 364849.149700000882149, 255572.602800000458956 ], [ 364848.495899997651577, 255572.872000001370907 ], [ 364839.320699997246265, 255607.958099998533726 ], [ 364854.705899998545647, 255639.754200000315905 ], [ 364863.437200002372265, 255631.419799998402596 ], [ 364881.3175999969244, 255620.924699999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-18", "ACRE": "0.32", "LONGITUDE": -64.87415443, "LATITUDE": 18.33049102, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.729220669, "SHAPE_Area": 1570.2612652099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364834.068400003015995, 255721.907400000840425 ], [ 364786.664800003170967, 255693.1097999997437 ], [ 364785.440200001001358, 255694.787999998778105 ], [ 364784.705799996852875, 255695.047200001776218 ], [ 364813.571000002324581, 255765.886100001633167 ], [ 364814.621500000357628, 255764.769999999552965 ], [ 364832.480899997055531, 255738.179299999028444 ], [ 364834.068400003015995, 255721.907400000840425 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-17", "ACRE": "0.49", "LONGITUDE": -64.87411117000001, "LATITUDE": 18.33015298, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.08460693800001, "SHAPE_Area": 1742.1765494900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364838.769299998879433, 255681.558200001716614 ], [ 364810.662500001490116, 255660.22410000115633 ], [ 364786.664800003170967, 255693.1097999997437 ], [ 364834.068400003015995, 255721.907400000840425 ], [ 364838.769299998879433, 255681.558200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-3", "ACRE": "1.33", "LONGITUDE": -64.87201797, "LATITUDE": 18.33036996, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.67295435, "SHAPE_Area": 4094.3623951099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364994.376000002026558, 255680.406399998813868 ], [ 365018.218699999153614, 255723.812399998307228 ], [ 365042.031300000846386, 255768.738800000399351 ], [ 365062.271999999880791, 255765.166900001466274 ], [ 365065.446999996900558, 255762.388799998909235 ], [ 365066.240699999034405, 255699.285500001162291 ], [ 365066.275200001895428, 255697.940799999982119 ], [ 365021.790600001811981, 255671.901099998503923 ], [ 365017.424999997019768, 255670.710499998182058 ], [ 364995.596799999475479, 255679.838599998503923 ], [ 364994.376000002026558, 255680.406399998813868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-2", "ACRE": "1.33", "LONGITUDE": -64.87242439000001, "LATITUDE": 18.33051273, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.972405708, "SHAPE_Area": 4685.9147242700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365042.031300000846386, 255768.738800000399351 ], [ 365018.218699999153614, 255723.812399998307228 ], [ 364994.376000002026558, 255680.406399998813868 ], [ 364978.531199999153614, 255687.776099998503923 ], [ 364949.95610000193119, 255695.713599998503923 ], [ 364969.402999997138977, 255737.703099999576807 ], [ 364989.188299998641014, 255780.100099999457598 ], [ 365001.549999997019768, 255774.691899999976158 ], [ 365042.031300000846386, 255768.738800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-7", "ACRE": "1.28", "LONGITUDE": -64.87285913, "LATITUDE": 18.32985004, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 269.04823658800001, "SHAPE_Area": 3844.4917685199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364906.696599997580051, 255623.085400000214577 ], [ 364915.42790000140667, 255657.137299999594688 ], [ 364923.680299997329712, 255690.854200001806021 ], [ 364933.684199996292591, 255687.776099998503923 ], [ 364945.193599998950958, 255686.982400000095367 ], [ 364951.146700002253056, 255685.791700001806021 ], [ 364975.356200002133846, 255679.441700000315905 ], [ 365004.328100003302097, 255667.932300001382828 ], [ 365006.971799999475479, 255662.865200001746416 ], [ 365005.518700003623962, 255661.979200001806021 ], [ 364979.721799999475479, 255646.897900000214577 ], [ 364942.812299996614456, 255629.038499999791384 ], [ 364906.696599997580051, 255623.085400000214577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-5", "ACRE": "1.37", "LONGITUDE": -64.87349781, "LATITUDE": 18.33056513, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.26459198399999, "SHAPE_Area": 4179.8308859500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364906.299800001084805, 255718.732400000095367 ], [ 364876.931000001728535, 255699.999899998307228 ], [ 364847.614200003445148, 255682.462200000882149 ], [ 364847.562200002372265, 255683.013599999248981 ], [ 364842.799599997699261, 255725.876200001686811 ], [ 364878.915299996733665, 255765.087499998509884 ], [ 364915.6925999969244, 255803.83500000089407 ], [ 364915.824799999594688, 255803.663899999111891 ], [ 364913.443499997258186, 255767.151299998164177 ], [ 364906.696599997580051, 255731.035599999129772 ], [ 364906.299800001084805, 255718.732400000095367 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "3L-4", "ACRE": "1.27", "LONGITUDE": -64.87366321, "LATITUDE": 18.3309839, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.17086479400001, "SHAPE_Area": 4275.5150341600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364915.6925999969244, 255803.83500000089407 ], [ 364878.915299996733665, 255765.087499998509884 ], [ 364842.799599997699261, 255725.876200001686811 ], [ 364840.81530000269413, 255741.354400001466274 ], [ 364824.146499998867512, 255765.563799999654293 ], [ 364836.846500001847744, 255794.138799998909235 ], [ 364849.149700000882149, 255822.713899999856949 ], [ 364879.709100000560284, 255815.570099998265505 ], [ 364913.046700000762939, 255807.235700000077486 ], [ 364913.069899998605251, 255807.228999998420477 ], [ 364915.6925999969244, 255803.83500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "107602010100", "MAP": "D9-9397-T019", "PARCEL_NAM": "ROW 3LG", "ACRE": "068", "LONGITUDE": -64.87315637, "LATITUDE": 18.33115138, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 613.51009195799998, "SHAPE_Area": 3162.4270463900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364824.146499998867512, 255765.563799999654293 ], [ 364813.571000002324581, 255765.886100001633167 ], [ 364842.144199997186661, 255836.008200000971556 ], [ 364842.182499997317791, 255835.907400000840425 ], [ 364928.912399999797344, 255819.255300000309944 ], [ 364969.848899997770786, 255794.970899999141693 ], [ 365016.336099997162819, 255779.706399999558926 ], [ 365049.640399999916553, 255776.237300001084805 ], [ 365064.80120000243187, 255774.342199999839067 ], [ 365064.653200000524521, 255773.898200001567602 ], [ 365062.271999999880791, 255765.166900001466274 ], [ 365042.031300000846386, 255768.738800000399351 ], [ 365001.549999997019768, 255774.691899999976158 ], [ 364988.849899999797344, 255780.248199999332428 ], [ 364933.684199996292591, 255801.282600000500679 ], [ 364913.046700000762939, 255807.235700000077486 ], [ 364879.709100000560284, 255815.570099998265505 ], [ 364849.149700000882149, 255822.713899999856949 ], [ 364836.846500001847744, 255794.138799998909235 ], [ 364824.146499998867512, 255765.563799999654293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.84590695, "LATITUDE": 18.32012244, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.058927193599999, "SHAPE_Area": 297.64806845599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367821.098899997770786, 254606.505199998617172 ], [ 367819.646300002932549, 254596.089200001209974 ], [ 367816.899700000882149, 254597.387099999934435 ], [ 367814.584600001573563, 254596.9239999987185 ], [ 367813.7246999964118, 254595.270399998873472 ], [ 367806.647100001573563, 254597.453200001269579 ], [ 367806.911700002849102, 254598.842300001531839 ], [ 367806.977799996733665, 254600.82660000026226 ], [ 367806.316399998962879, 254602.678700000047684 ], [ 367792.280500002205372, 254608.022900000214577 ], [ 367792.684000000357628, 254610.941599998623133 ], [ 367793.468699999153614, 254613.481199998408556 ], [ 367793.331500001251698, 254616.744300000369549 ], [ 367804.115699999034405, 254612.802499998360872 ], [ 367818.328500002622604, 254607.183699999004602 ], [ 367821.098899997770786, 254606.505199998617172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701033500", "MAP": "A9-538-T99", "PARCEL_NAM": "R-6", "ACRE": null, "LONGITUDE": -64.86019701, "LATITUDE": 18.32901073, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.69265898399999, "SHAPE_Area": 1069.29290709 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366297.99549999833107, 255585.217500001192093 ], [ 366310.762699998915195, 255535.857099998742342 ], [ 366307.476300001144409, 255543.007399998605251 ], [ 366302.595200002193451, 255548.033700000494719 ], [ 366292.874499998986721, 255553.231499999761581 ], [ 366284.789800003170967, 255555.698399998247623 ], [ 366273.537799999117851, 255574.412099998444319 ], [ 366260.081699997186661, 255596.791299998760223 ], [ 366262.99210000038147, 255599.701699998229742 ], [ 366263.785800002515316, 255602.083000000566244 ], [ 366269.113499999046326, 255593.448499999940395 ], [ 366271.458800002932549, 255589.647599998861551 ], [ 366291.002700001001358, 255588.841600000858307 ], [ 366297.123400002717972, 255588.589200001209974 ], [ 366297.99549999833107, 255585.217500001192093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803010200", "MAP": "A9-740-T009", "PARCEL_NAM": "19-1-2-3", "ACRE": "10.0", "LONGITUDE": -64.86105069, "LATITUDE": 18.33507936, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 839.52681736700004, "SHAPE_Area": 38686.5231098 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366068.654799997806549, 256178.416900001466274 ], [ 366068.392499998211861, 256338.242400001734495 ], [ 366117.042999997735023, 256330.294900000095367 ], [ 366181.690399996936321, 256330.4695999994874 ], [ 366250.944200001657009, 256328.782900001853704 ], [ 366280.842000000178814, 256321.815400000661612 ], [ 366299.427100002765656, 256314.97239999845624 ], [ 366303.50620000064373, 256292.990299999713898 ], [ 366311.190999999642372, 256242.813000001013279 ], [ 366314.551100000739098, 256227.008400000631809 ], [ 366319.544799998402596, 256192.176300000399351 ], [ 366320.572899997234344, 256182.728100001811981 ], [ 366318.174199998378754, 256163.851100001484156 ], [ 366168.414700001478195, 256152.738299999386072 ], [ 366170.284800000488758, 256192.854499999433756 ], [ 366068.654799997806549, 256178.416900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803010200", "MAP": "A9-740-T009", "PARCEL_NAM": "19-1-2 REM", "ACRE": null, "LONGITUDE": -64.86109511, "LATITUDE": 18.33621083, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 249.81032729399999, "SHAPE_Area": 3319.86060929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366201.246699996292591, 256418.589999999850988 ], [ 366210.100400000810623, 256329.777699999511242 ], [ 366181.690399996936321, 256330.4695999994874 ], [ 366170.001400001347065, 256330.438000001013279 ], [ 366164.317800000309944, 256413.402399998158216 ], [ 366201.246699996292591, 256418.589999999850988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803010200", "MAP": "D9-8745-T013", "PARCEL_NAM": "19-1-2-5", "ACRE": "2.029", "LONGITUDE": -64.86192765, "LATITUDE": 18.33824021, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 521.93537853099997, "SHAPE_Area": 7238.9234458700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366230.358999997377396, 256567.600400000810623 ], [ 366226.93129999935627, 256559.3739 ], [ 366182.7516999989748, 256573.881999999284744 ], [ 366177.99379999935627, 256571.995700001716614 ], [ 366174.564099997282028, 256569.857299998402596 ], [ 366163.445600003004074, 256567.38910000026226 ], [ 366133.762299999594688, 256564.761700000613928 ], [ 366101.92119999974966, 256566.333799999207258 ], [ 366031.890299998223782, 256598.423000000417233 ], [ 366003.59910000115633, 256605.751499999314547 ], [ 366008.98589999973774, 256644.285599999129772 ], [ 366009.279600001871586, 256645.396800000220537 ], [ 366036.13629999756813, 256640.371899999678135 ], [ 366044.126199997961521, 256632.976500000804663 ], [ 366090.211999997496605, 256610.150699999183416 ], [ 366117.740500003099442, 256610.801600001752377 ], [ 366133.207099996507168, 256607.202399998903275 ], [ 366229.497400000691414, 256567.806699998676777 ], [ 366230.358999997377396, 256567.600400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803010200", "MAP": "A9-819-T016", "PARCEL_NAM": "19-1-2-REM", "ACRE": "19.38", "LONGITUDE": -64.86344445, "LATITUDE": 18.33557817, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1495.15753298, "SHAPE_Area": 86696.132676299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366188.187600001692772, 256425.533500000834465 ], [ 366147.984099999070168, 256420.173000000417233 ], [ 366115.842699997127056, 256426.766100000590086 ], [ 366114.407300002872944, 256417.332299999892712 ], [ 366114.795299999415874, 256372.118200000375509 ], [ 366117.660199999809265, 256330.296500001102686 ], [ 366117.042999997735023, 256330.294900000095367 ], [ 366068.392499998211861, 256338.242400001734495 ], [ 366068.654799997806549, 256178.416900001466274 ], [ 365766.155299998819828, 256135.44370000064373 ], [ 365768.269900001585484, 256392.519799999892712 ], [ 365768.549500003457069, 256426.521600000560284 ], [ 365823.669799998402596, 256410.020399998873472 ], [ 365964.66330000013113, 256367.811700001358986 ], [ 365978.371299996972084, 256435.602400001138449 ], [ 366065.806999996304512, 256467.0912000015378 ], [ 366086.841399997472763, 256472.250599998980761 ], [ 366174.154100000858307, 256465.900600001215935 ], [ 366188.187600001692772, 256425.533500000834465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803010200", "MAP": "D9-9159-T017", "PARCEL_NAM": "REM 19-1-2-6", "ACRE": "3.00", "LONGITUDE": -64.86080997000001, "LATITUDE": 18.33735437, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 432.49841419900002, "SHAPE_Area": 11201.3994095 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366162.427299998700619, 256474.66499999910593 ], [ 366174.564099997282028, 256569.857299998402596 ], [ 366177.99379999935627, 256571.995700001716614 ], [ 366182.7516999989748, 256573.881999999284744 ], [ 366226.93129999935627, 256559.3739 ], [ 366245.992399998009205, 256553.114399999380112 ], [ 366253.974500000476837, 256550.92339999973774 ], [ 366269.132399998605251, 256442.424800001084805 ], [ 366209.794399999082088, 256428.41440000012517 ], [ 366197.660999998450279, 256426.796599999070168 ], [ 366187.542700000107288, 256459.319600000977516 ], [ 366187.130599997937679, 256468.797200001776218 ], [ 366179.71339999884367, 256473.741999998688698 ], [ 366162.427299998700619, 256474.66499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803010200", "MAP": "D9-9311-T018", "PARCEL_NAM": "19-1-2-6A REM", "ACRE": "2.36", "LONGITUDE": -64.86233628, "LATITUDE": 18.33774255, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 444.46088949699998, "SHAPE_Area": 9845.6158261300006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366065.806999996304512, 256467.0912000015378 ], [ 366049.91160000115633, 256517.833399999886751 ], [ 365991.475500002503395, 256519.026000000536442 ], [ 366001.954199999570847, 256593.984900001436472 ], [ 366002.319499999284744, 256596.597600001841784 ], [ 366003.59910000115633, 256605.751499999314547 ], [ 366031.890299998223782, 256598.423000000417233 ], [ 366101.92119999974966, 256566.333799999207258 ], [ 366112.138700000941753, 256565.829300001263618 ], [ 366098.530900001525879, 256471.400499999523163 ], [ 366086.841399997472763, 256472.250599998980761 ], [ 366065.806999996304512, 256467.0912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803010200", "MAP": "D9-9159-T017", "PARCEL_NAM": "ROW 19-1-2-6R-1", "ACRE": "0.39", "LONGITUDE": -64.86133577, "LATITUDE": 18.33701859, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.61453668199999, "SHAPE_Area": 1069.0126361099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366197.660999998450279, 256426.796599999070168 ], [ 366188.187600001692772, 256425.533500000834465 ], [ 366174.154100000858307, 256465.900600001215935 ], [ 366098.530900001525879, 256471.400499999523163 ], [ 366099.485699996352196, 256478.026000000536442 ], [ 366179.71339999884367, 256473.741999998688698 ], [ 366187.130599997937679, 256468.797200001776218 ], [ 366187.542700000107288, 256459.319600000977516 ], [ 366197.660999998450279, 256426.796599999070168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803010200", "MAP": "D9-9159-T017", "PARCEL_NAM": "19-1-2-6B", "ACRE": "1.61", "LONGITUDE": -64.86154891, "LATITUDE": 18.33755621, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 310.542921089, "SHAPE_Area": 5632.3702511499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366162.427299998700619, 256474.66499999910593 ], [ 366099.485699996352196, 256478.026000000536442 ], [ 366112.138700000941753, 256565.829300001263618 ], [ 366133.762299999594688, 256564.761700000613928 ], [ 366163.445600003004074, 256567.38910000026226 ], [ 366174.564099997282028, 256569.857299998402596 ], [ 366162.427299998700619, 256474.66499999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "A-2", "PARCEL_NO": "105803010200", "MAP": "D9-9311-T018", "PARCEL_NAM": "19-1-2-6A-1", "ACRE": "1.01", "LONGITUDE": -64.86266928000001, "LATITUDE": 18.33721393, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 289.03267740799998, "SHAPE_Area": 4870.3989096400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366065.806999996304512, 256467.0912000015378 ], [ 365978.371299996972084, 256435.602400001138449 ], [ 365983.043399997055531, 256458.707699999213219 ], [ 365991.475500002503395, 256519.026000000536442 ], [ 366049.91160000115633, 256517.833399999886751 ], [ 366065.806999996304512, 256467.0912000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95815874, "LATITUDE": 18.33664382, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 704.27879110900005, "SHAPE_Area": 2289.0918013599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356033.505800001323223, 256398.075100000947714 ], [ 356032.70160000026226, 256395.329300001263618 ], [ 356032.066600002348423, 256390.561099998652935 ], [ 356032.066600002348423, 256388.979299999773502 ], [ 355973.369999997317791, 256349.052999999374151 ], [ 355932.750399999320507, 256321.665399998426437 ], [ 355889.712899997830391, 256292.265299998223782 ], [ 355888.896700002253056, 256291.704700000584126 ], [ 355874.848499998450279, 256280.25279999896884 ], [ 355870.046599999070168, 256275.991700001060963 ], [ 355867.562899999320507, 256283.570799998939037 ], [ 355874.489600002765656, 256289.875799998641014 ], [ 355835.825400002300739, 256317.508200000971556 ], [ 355832.587600000202656, 256318.959300000220537 ], [ 355811.533600002527237, 256329.341699998825788 ], [ 355813.903899997472763, 256335.060600001364946 ], [ 355839.005699999630451, 256322.811500001698732 ], [ 355856.040799997746944, 256310.918600000441074 ], [ 355862.530799999833107, 256306.3277000002563 ], [ 355864.141699999570847, 256306.552000001072884 ], [ 355876.909599997103214, 256322.277399998158216 ], [ 355856.652900002896786, 256333.721700001507998 ], [ 355846.930399999022484, 256339.13060000166297 ], [ 355848.510600000619888, 256342.943199999630451 ], [ 355879.314099997282028, 256323.985800001770258 ], [ 355880.924999997019768, 256324.210099998861551 ], [ 355883.322300001978874, 256326.762800000607967 ], [ 355887.382700003683567, 256323.418600000441074 ], [ 355878.592399999499321, 256314.058499999344349 ], [ 355868.200199998915195, 256303.418800000101328 ], [ 355879.5658999979496, 256294.434799998998642 ], [ 355891.586900003254414, 256303.188000001013279 ], [ 355906.820500001311302, 256313.445099998265505 ], [ 355950.113200001418591, 256342.930399999022484 ], [ 355982.205700002610683, 256361.980399999767542 ], [ 356025.557899996638298, 256395.1706000007689 ], [ 356026.034100003540516, 256397.393100000917912 ], [ 356023.357100002467632, 256399.543200001120567 ], [ 356033.505800001323223, 256398.075100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601030100", "MAP": "D9-8326-T009", "PARCEL_NAM": "REM 39", "ACRE": ".713", "LONGITUDE": -64.97826287, "LATITUDE": 18.36218489, "OBJECTID_1": 2277, "PARCEL_NO_": "102601030100", "Tax_Legal_": "39 REM ESTATE PEARL NO.2 SOUTHSIDE QTR", "Name": "SMITH, MARISSA", "Address": "8156 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 216.876799358, "SHAPE_Area": 2448.1297404500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353798.034999996423721, 259109.605500001460314 ], [ 353795.874499998986721, 259108.230799999088049 ], [ 353764.167400002479553, 259131.104100000113249 ], [ 353743.76799999922514, 259145.820099998265505 ], [ 353748.165700003504753, 259153.773299999535084 ], [ 353750.552299998700619, 259157.592500001192093 ], [ 353752.159400001168251, 259159.685300000011921 ], [ 353757.729999996721745, 259166.939399998635054 ], [ 353760.130900003015995, 259169.069899998605251 ], [ 353768.138300001621246, 259175.679400000721216 ], [ 353778.571800000965595, 259181.464299999177456 ], [ 353785.805200003087521, 259184.267700001597404 ], [ 353798.68639999628067, 259186.695199999958277 ], [ 353794.891999997198582, 259172.82880000025034 ], [ 353795.685699999332428, 259169.653799999505281 ], [ 353795.685699999332428, 259167.801699999719858 ], [ 353797.008599996566772, 259128.378699999302626 ], [ 353795.421099998056889, 259120.176600001752377 ], [ 353795.685699999332428, 259115.943300001323223 ], [ 353796.744099996984005, 259113.032800000160933 ], [ 353798.034999996423721, 259109.605500001460314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601041400", "MAP": "D9-6497-T98", "PARCEL_NAM": "39N", "ACRE": "0.63", "LONGITUDE": -64.97856716, "LATITUDE": 18.36183025, "OBJECTID_1": 2345, "PARCEL_NO_": "102601041400", "Tax_Legal_": "39-N PEARL NO.2 SOUTHSIDE QTR.", "Name": "THE MARISSA R. SMITH FAM REV. TRST", "Address": "8156 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023712, "Country": "United States", "Land_Value": 121900, "Improved_V": 137200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 217.25676129300001, "SHAPE_Area": 2994.0348570400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353764.167400002479553, 259131.104100000113249 ], [ 353778.48480000346899, 259097.026200000196695 ], [ 353762.540200002491474, 259075.432100001722574 ], [ 353755.170500002801418, 259065.451099999248981 ], [ 353753.840700000524521, 259066.122900001704693 ], [ 353711.222800001502037, 259087.654599998146296 ], [ 353730.694700002670288, 259122.177299998700619 ], [ 353743.76799999922514, 259145.820099998265505 ], [ 353764.167400002479553, 259131.104100000113249 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601040900", "MAP": "D9-3767-T86", "PARCEL_NAM": "39G", "ACRE": ".61", "LONGITUDE": -64.9779474, "LATITUDE": 18.3617747, "OBJECTID_1": 2340, "PARCEL_NO_": "102601040900", "Tax_Legal_": "PEARL 39G WEST END QTR.", "Name": "VICKERS, TIFFANY & CAMILLE", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 126200, "Improved_V": 108500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 237.88214046499999, "SHAPE_Area": 3407.3199109900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353808.623999997973442, 259061.386900000274181 ], [ 353800.873199999332428, 259054.798099998384714 ], [ 353796.562899999320507, 259059.094700001180172 ], [ 353770.016099996864796, 259085.55689999833703 ], [ 353778.48480000346899, 259097.026200000196695 ], [ 353793.722000002861023, 259106.861200001090765 ], [ 353829.010899998247623, 259129.314800001680851 ], [ 353834.750399999320507, 259118.173799999058247 ], [ 353845.405100002884865, 259097.996100001037121 ], [ 353856.698600001633167, 259076.68189999833703 ], [ 353808.623999997973442, 259061.386900000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601036600", "MAP": "D9-3767-T86", "PARCEL_NAM": "39F", "ACRE": ".88", "LONGITUDE": -64.97762183, "LATITUDE": 18.3613402, "OBJECTID_1": 2327, "PARCEL_NO_": "102601036600", "Tax_Legal_": "39F ESTATE PEARL NO.2 SOUTHSIDE QTR", "Name": "BOSCHULTE, RANDOLPH C.", "Address": "PO Box 2101", "City": "Maple Grove", "State": "Minnesota", "Zip": 55311, "Country": "United States", "Land_Value": 145500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.70348323600001, "SHAPE_Area": 3687.2765416799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353856.698600001633167, 259076.68189999833703 ], [ 353909.329599998891354, 258977.351599998772144 ], [ 353888.90820000320673, 258993.483199998736382 ], [ 353850.877700001001358, 259023.52479999884963 ], [ 353846.518399998545647, 259014.870700001716614 ], [ 353800.692199997603893, 259045.912200000137091 ], [ 353800.812700003385544, 259046.268899999558926 ], [ 353802.26519999653101, 259050.569099999964237 ], [ 353803.847599998116493, 259051.833200000226498 ], [ 353800.873199999332428, 259054.798099998384714 ], [ 353808.623999997973442, 259061.386900000274181 ], [ 353856.698600001633167, 259076.68189999833703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601041800", "MAP": "D9-7428-T004", "PARCEL_NAM": "39H-1", "ACRE": ".32", "LONGITUDE": -64.9783998, "LATITUDE": 18.36120637, "OBJECTID_1": 2346, "PARCEL_NO_": "102601041800", "Tax_Legal_": "39H-1 ESTATE PEARL No.2 SOUTHSIDE QUARTER", "Name": "CLETIS G. & SADIE TAYLOR CLENDINEN REVOCABLE TRUST", "Address": "PO Box 7864", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 68000, "Improved_V": 382500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 180.09599558, "SHAPE_Area": 1827.77970802 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353780.068099997937679, 259009.44819999858737 ], [ 353776.848200000822544, 258998.748599998652935 ], [ 353774.217866600316484, 258994.625678580807289 ], [ 353771.069099999964237, 258990.883699998259544 ], [ 353767.812899367127102, 258987.875718638388207 ], [ 353764.221813065756578, 258985.276700824062573 ], [ 353760.346900001168251, 258983.123599998652935 ], [ 353733.572599999606609, 259042.070199999958277 ], [ 353738.965300001204014, 259046.856300000101328 ], [ 353744.999099999666214, 259052.211399998515844 ], [ 353747.363600000739098, 259055.289200000464916 ], [ 353781.337899997830391, 259023.685199998319149 ], [ 353783.327600002288818, 259021.834300000220537 ], [ 353780.068099997937679, 259009.44819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601040600", "MAP": "D9-3767-T86", "PARCEL_NAM": "39E", "ACRE": "0.74", "LONGITUDE": -64.97792711, "LATITUDE": 18.36099887, "OBJECTID_1": 2338, "PARCEL_NO_": "102601040600", "Tax_Legal_": "PEARL 39E S.S. QTR.", "Name": "GUMBS, BRENT E. & OCIA D.", "Address": "PO BOX 305764", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 137900, "Improved_V": 610300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 248.172511042, "SHAPE_Area": 3605.2766013 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353846.518399998545647, 259014.870700001716614 ], [ 353825.034599997103214, 258972.2212999984622 ], [ 353816.297499999403954, 258954.876400001347065 ], [ 353769.826499998569489, 258983.095199998468161 ], [ 353774.075599998235703, 258986.808499999344349 ], [ 353778.562139929446857, 258993.134233696124284 ], [ 353782.648599997162819, 258999.725499998778105 ], [ 353785.463632717146538, 259004.870979555184022 ], [ 353788.034699998795986, 259010.142599999904633 ], [ 353788.842000000178814, 259017.106499999761581 ], [ 353794.331600002944469, 259035.305500000715256 ], [ 353800.692199997603893, 259045.912200000137091 ], [ 353846.518399998545647, 259014.870700001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601040500", "MAP": "D9-3767-T86", "PARCEL_NAM": "39I", "ACRE": ".56", "LONGITUDE": -64.97869975, "LATITUDE": 18.36092596, "OBJECTID_1": 2337, "PARCEL_NO_": "102601040500", "Tax_Legal_": "PEARL ESTATE 39I No.2 SOUTH SIDE QTR.", "Name": "I E SOLUTIONS LLC", "Address": "PO BOX 3401", "City": "New York", "State": "New York", "Zip": 10027, "Country": "United States", "Land_Value": 111700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 201.06284254100001, "SHAPE_Area": 2347.1371011299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353760.346900001168251, 258983.123599998652935 ], [ 353760.183399997651577, 258983.0456000007689 ], [ 353755.6735827998491, 258980.970090261194855 ], [ 353750.976099997758865, 258979.363899998366833 ], [ 353747.096423364651855, 258978.424404336954467 ], [ 353743.152900002896786, 258977.805399999022484 ], [ 353739.98221595789073, 258977.473526275047334 ], [ 353736.900809576443862, 258976.656022639712319 ], [ 353733.982600003480911, 258975.372499998658895 ], [ 353731.638026051048655, 258973.854806184419431 ], [ 353729.587014373741113, 258971.959081354259979 ], [ 353727.889799997210503, 258969.74100000038743 ], [ 353696.268700003623962, 259008.962499998509884 ], [ 353703.691500000655651, 259015.550299998372793 ], [ 353733.572599999606609, 259042.070199999958277 ], [ 353760.346900001168251, 258983.123599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601031400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97766047, "LATITUDE": 18.36051239, "OBJECTID_1": 2288, "PARCEL_NO_": "102601031400", "Tax_Legal_": "PEARL 39C SOUTHSIDE QTR", "Name": "STEELE, ROBERT B. , BRANT & LESLIE", "Address": "P. O. BOX 3950", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 191800, "Improved_V": 125400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 331.04127482899997, "SHAPE_Area": 5394.9047839799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353888.90820000320673, 258993.483199998736382 ], [ 353832.807700000703335, 258890.441599998623133 ], [ 353831.45380000025034, 258891.349700000137091 ], [ 353823.159999996423721, 258896.912300001829863 ], [ 353820.408299997448921, 258901.145599998533726 ], [ 353818.503300003707409, 258904.320700000971556 ], [ 353814.693300001323223, 258904.955699998885393 ], [ 353811.306699998676777, 258907.495700001716614 ], [ 353805.168300002813339, 258911.305700000375509 ], [ 353796.956600002944469, 258916.481300000101328 ], [ 353800.346100002527237, 258923.21000000089407 ], [ 353825.034599997103214, 258972.2212999984622 ], [ 353846.518399998545647, 259014.870700001716614 ], [ 353850.877700001001358, 259023.52479999884963 ], [ 353888.90820000320673, 258993.483199998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601040400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97825359, "LATITUDE": 18.3604995, "OBJECTID_1": 2336, "PARCEL_NO_": "102601040400", "Tax_Legal_": "PEARL 39D SOUTHSIDE QTR.", "Name": "ROGERS, CHRISTALIA", "Address": "P.O. BOX 3981", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 137900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 232.36079529899999, "SHAPE_Area": 3042.45305435 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353816.297499999403954, 258954.876400001347065 ], [ 353800.346100002527237, 258923.21000000089407 ], [ 353796.956600002944469, 258916.481300000101328 ], [ 353790.986599996685982, 258915.96229999884963 ], [ 353785.906599998474121, 258915.539000000804663 ], [ 353780.181500002741814, 258921.69709999859333 ], [ 353760.718199998140335, 258942.632399998605251 ], [ 353751.98480000346899, 258946.683100000023842 ], [ 353743.154200002551079, 258950.778900001198053 ], [ 353729.203400000929832, 258957.249499998986721 ], [ 353729.893163230095524, 258959.362937330268323 ], [ 353730.350199997425079, 258961.538600001484156 ], [ 353730.605931752244942, 258963.435132528451504 ], [ 353731.178101358236745, 258965.261291420290945 ], [ 353732.050290791667067, 258966.964676270639757 ], [ 353733.197473160922527, 258968.496409592044074 ], [ 353734.586730836250354, 258969.812539322680095 ], [ 353736.178199999034405, 258970.875300001353025 ], [ 353738.497388023184612, 258971.917379548918689 ], [ 353740.955163685546722, 258972.568456862471066 ], [ 353743.486100003123283, 258972.811200000345707 ], [ 353749.728357280837372, 258973.877687864529435 ], [ 353755.801899999380112, 258975.670800000429153 ], [ 353759.15723587910179, 258977.009392865293194 ], [ 353762.415100000798702, 258978.570300001651049 ], [ 353766.237562431313563, 258980.64150310261175 ], [ 353769.826499998569489, 258983.095199998468161 ], [ 353816.297499999403954, 258954.876400001347065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601031600", "MAP": "F9-3776-T79", "PARCEL_NAM": "39CA", "ACRE": "1.02", "LONGITUDE": -64.97734301, "LATITUDE": 18.36013454, "OBJECTID_1": 2290, "PARCEL_NO_": "102601031600", "Tax_Legal_": "PEARL 39CA SOUTHSIDE QTR", "Name": "RABSATT, LOUIS A", "Address": "PO Box 7012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 185700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 362.47407915600002, "SHAPE_Area": 6496.5330715199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353909.329599998891354, 258977.351599998772144 ], [ 353922.44820000231266, 258951.916600000113249 ], [ 353904.224899999797344, 258913.981699999421835 ], [ 353885.21509999781847, 258873.718299999833107 ], [ 353871.750500001013279, 258845.110500000417233 ], [ 353868.139700002968311, 258837.381099998950958 ], [ 353836.6300999969244, 258884.701299998909235 ], [ 353832.807700000703335, 258890.441599998623133 ], [ 353888.90820000320673, 258993.483199998736382 ], [ 353909.329599998891354, 258977.351599998772144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601030100", "MAP": "D9-8326-T009", "PARCEL_NAM": "REM 39", "ACRE": ".713", "LONGITUDE": -64.97826287, "LATITUDE": 18.36218489, "OBJECTID_1": 2277, "PARCEL_NO_": "102601030100", "Tax_Legal_": "39 REM ESTATE PEARL NO.2 SOUTHSIDE QTR", "Name": "SMITH, MARISSA", "Address": "8156 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 96.746643149700006, "SHAPE_Area": 376.36211456799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353795.874499998986721, 259108.230799999088049 ], [ 353793.722000002861023, 259106.861200001090765 ], [ 353778.48480000346899, 259097.026200000196695 ], [ 353764.167400002479553, 259131.104100000113249 ], [ 353795.874499998986721, 259108.230799999088049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601040700", "MAP": "D9-7428-T004", "PARCEL_NAM": "39H-2", "ACRE": ".32", "LONGITUDE": -64.9783998, "LATITUDE": 18.36120637, "OBJECTID_1": 2339, "PARCEL_NO_": "102601040700", "Tax_Legal_": "39-H PEARL No.2 SOUTHSIDE QTR.", "Name": "CHRISTIE, MICHAEL A. & NANCY B", "Address": "PO Box 307558", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8037558, "Country": "United States", "Land_Value": 72800, "Improved_V": 279500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.59042329100001, "SHAPE_Area": 1621.1026553300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353791.746399998664856, 259043.140900000929832 ], [ 353784.095100000500679, 259024.750900000333786 ], [ 353783.327600002288818, 259021.834300000220537 ], [ 353781.337899997830391, 259023.685199998319149 ], [ 353747.363600000739098, 259055.289200000464916 ], [ 353755.170500002801418, 259065.451099999248981 ], [ 353762.540200002491474, 259075.432100001722574 ], [ 353770.016099996864796, 259085.55689999833703 ], [ 353796.562899999320507, 259059.094700001180172 ], [ 353798.444799996912479, 259057.218800000846386 ], [ 353791.746399998664856, 259043.140900000929832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401211400", "MAP": "A9-768-T012", "PARCEL_NAM": "A-14", "ACRE": "3.83", "LONGITUDE": -64.92456667, "LATITUDE": 18.34666739, "OBJECTID_1": 11778, "PARCEL_NO_": "105401211400", "Tax_Legal_": "A-14 HOSPITAL GROUND KINGS QTR", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demerara Plz Ste 200", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026447, "Country": "United States", "Land_Value": 268500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 739.50801631100001, "SHAPE_Area": 15059.541433099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359441.520000003278255, 257549.438200000673532 ], [ 359455.094800002872944, 257544.52140000090003 ], [ 359460.261100001633167, 257538.278799999505281 ], [ 359466.683799996972084, 257531.182399999350309 ], [ 359517.345399998128414, 257495.566399998962879 ], [ 359515.826200000941753, 257484.577100001275539 ], [ 359520.019599996507168, 257465.613000001758337 ], [ 359522.533900000154972, 257454.445599999278784 ], [ 359527.48139999806881, 257441.609400000423193 ], [ 359531.601099997758865, 257431.299600001424551 ], [ 359539.010799996554852, 257413.417300000786781 ], [ 359546.429399996995926, 257394.479600001126528 ], [ 359552.188699997961521, 257381.016699999570847 ], [ 359554.63459999859333, 257377.870299998670816 ], [ 359570.141500003635883, 257356.043499998748302 ], [ 359554.855800002813339, 257351.907600000500679 ], [ 359538.625200003385544, 257364.018199998885393 ], [ 359524.129600003361702, 257361.788600001484156 ], [ 359524.883799999952316, 257367.916499998420477 ], [ 359519.187399998307228, 257373.991599999368191 ], [ 359506.281000003218651, 257374.519299998879433 ], [ 359490.149400003254414, 257375.020500000566244 ], [ 359487.613600000739098, 257388.720800001174212 ], [ 359482.117899999022484, 257405.685899998992682 ], [ 359497.968099996447563, 257412.30460000038147 ], [ 359483.680600002408028, 257435.323399998247623 ], [ 359461.841399997472763, 257424.286400001496077 ], [ 359462.251000002026558, 257431.576299998909235 ], [ 359464.617799997329712, 257437.717399999499321 ], [ 359462.942299999296665, 257445.092000000178814 ], [ 359441.864900000393391, 257458.218400001525879 ], [ 359421.538000002503395, 257477.894799999892712 ], [ 359409.206799998879433, 257487.414500001817942 ], [ 359418.328400000929832, 257513.375700000673532 ], [ 359359.755400002002716, 257539.683899998664856 ], [ 359359.726000003516674, 257539.872600000351667 ], [ 359359.513800002634525, 257564.779899999499321 ], [ 359361.110299997031689, 257566.692800000309944 ], [ 359363.507600001990795, 257569.24549999833107 ], [ 359369.1283999979496, 257572.035799998790026 ], [ 359370.068800002336502, 257572.858500000089407 ], [ 359376.436700001358986, 257576.754000000655651 ], [ 359395.7483000010252, 257566.016499999910593 ], [ 359441.520000003278255, 257549.438200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105401240100", "MAP": "G9-957-T67", "PARCEL_NAM": "A-6", "ACRE": null, "LONGITUDE": -64.92445284, "LATITUDE": 18.34618683, "OBJECTID_1": 11800, "PARCEL_NO_": "105401240100", "Tax_Legal_": "A-6 ESTATE HOSPITAL GROUND KINGS QTR", "Name": "MADURO, OLIVIA YOUNG LIFE EST.", "Address": "68 Bradhurst Ave", "City": "New York", "State": "New York", "Zip": 10039, "Country": "United States", "Land_Value": 14000, "Improved_V": 43400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.839441206, "SHAPE_Area": 532.29298699399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359461.841399997472763, 257424.286400001496077 ], [ 359483.680600002408028, 257435.323399998247623 ], [ 359497.968099996447563, 257412.30460000038147 ], [ 359482.117899999022484, 257405.685899998992682 ], [ 359481.816500000655651, 257406.616300001740456 ], [ 359472.03830000013113, 257418.568599998950958 ], [ 359461.550800003111362, 257419.116099998354912 ], [ 359461.841399997472763, 257424.286400001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601070100", "MAP": "UNSURVEYED", "PARCEL_NAM": "REM 403", "ACRE": "28 +/-", "LONGITUDE": -64.90051486, "LATITUDE": 18.34607079, "OBJECTID_1": 20874, "PARCEL_NO_": "105601070100", "Tax_Legal_": "403 ANNAS RET&POR WNTBRG NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 805900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1699.72059498, "SHAPE_Area": 79245.247641599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361969.353100001811981, 257546.304000001400709 ], [ 361988.667700000107288, 257541.276900000870228 ], [ 362039.203199997544289, 257542.599800001829863 ], [ 362089.73870000243187, 257547.097699999809265 ], [ 362130.497900001704693, 257554.902899999171495 ], [ 362135.472000002861023, 257555.537900000810623 ], [ 362152.299599997699261, 257554.902899999171495 ], [ 362185.848800003528595, 257552.257100000977516 ], [ 362231.674699999392033, 257544.107900001108646 ], [ 362238.17849999666214, 257543.798200000077486 ], [ 362261.245700001716614, 257421.131999999284744 ], [ 362239.430299997329712, 257426.230799999088049 ], [ 362220.037500001490116, 257430.927200000733137 ], [ 362208.97749999910593, 257404.027800001204014 ], [ 362203.318899996578693, 257405.670299999415874 ], [ 362201.69370000064373, 257407.13459999859333 ], [ 362200.867600001394749, 257409.44990000128746 ], [ 362201.657700002193451, 257411.356199998408556 ], [ 362194.375699996948242, 257414.251899998635054 ], [ 362191.18469999730587, 257410.214999999850988 ], [ 362187.149499997496605, 257410.604200001806021 ], [ 362185.594400003552437, 257403.836399998515844 ], [ 362166.226199999451637, 257407.260299999266863 ], [ 362147.011699996888638, 257410.657000001519918 ], [ 362118.676399998366833, 257415.666000001132488 ], [ 362096.601800002157688, 257419.568300001323223 ], [ 362067.015299998223782, 257406.563299998641014 ], [ 362065.565399996936321, 257389.76630000025034 ], [ 362065.603100001811981, 257385.333599999547005 ], [ 362070.592000000178814, 257367.642599999904633 ], [ 362076.270400002598763, 257363.678300000727177 ], [ 362074.816799998283386, 257358.920699998736382 ], [ 362055.049099996685982, 257364.960200000554323 ], [ 362026.398199997842312, 257373.713899999856949 ], [ 362000.406300000846386, 257370.459899999201298 ], [ 361997.899800002574921, 257381.613099999725819 ], [ 361997.230800002813339, 257384.517200000584126 ], [ 361964.310199998319149, 257361.084399998188019 ], [ 361943.846500001847744, 257346.518300000578165 ], [ 361941.450800001621246, 257333.231300000101328 ], [ 361940.307499997317791, 257326.890700001269579 ], [ 361950.947800002992153, 257308.401500001549721 ], [ 361963.148599997162819, 257296.046900000423193 ], [ 361966.40259999781847, 257292.695999998599291 ], [ 361974.541199997067451, 257283.896699998527765 ], [ 362010.771300002932549, 257290.526000000536442 ], [ 362026.874200001358986, 257293.401999998837709 ], [ 362043.781599998474121, 257296.495700001716614 ], [ 362009.008699998259544, 257213.462400000542402 ], [ 361957.189000003039837, 257238.369500000029802 ], [ 361885.101700000464916, 257275.987500000745058 ], [ 361847.043200001120567, 257294.674400001764297 ], [ 361838.134199999272823, 257299.245600000023842 ], [ 361785.482900001108646, 257327.101199999451637 ], [ 361798.123199999332428, 257357.813200000673532 ], [ 361803.72240000218153, 257363.136300001293421 ], [ 361853.327200002968311, 257408.927499998360872 ], [ 361886.931500002741814, 257439.811099998652935 ], [ 361876.842200003564358, 257488.280000001192093 ], [ 361869.259900003671646, 257526.425900001078844 ], [ 361864.247599996626377, 257546.86089999973774 ], [ 361910.889700002968311, 257561.808100000023842 ], [ 361914.910400003194809, 257563.107599999755621 ], [ 361922.618299998342991, 257550.984200000762939 ], [ 361969.353100001811981, 257546.304000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502012900", "MAP": "D9-627-T67", "PARCEL_NAM": "161", "ACRE": "0.19", "LONGITUDE": -64.8997498, "LATITUDE": 18.34587488, "OBJECTID_1": 19828, "PARCEL_NO_": "105502012900", "Tax_Legal_": "ANNAS RETREAT 161 NEW QTR", "Name": "HECTOR, VERNALEE I", "Address": "PO BOX 12258", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15900, "Improved_V": 111900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.079550716, "SHAPE_Area": 840.89063383899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362096.752700001001358, 257389.988299999386072 ], [ 362095.448510883259587, 257389.222155400842894 ], [ 362094.283848132181447, 257388.257040134689305 ], [ 362093.288775040651672, 257387.117866599553963 ], [ 362092.488977304834407, 257385.834040138346609 ], [ 362091.905100002884865, 257384.438700001686811 ], [ 362090.607799999415874, 257384.482799999415874 ], [ 362065.603100001811981, 257385.333599999547005 ], [ 362065.565399996936321, 257389.76630000025034 ], [ 362067.015299998223782, 257406.563299998641014 ], [ 362096.601800002157688, 257419.568300001323223 ], [ 362096.752700001001358, 257389.988299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601013000", "MAP": "D9-627-T67", "PARCEL_NAM": "163", "ACRE": "0.14", "LONGITUDE": -64.89939422, "LATITUDE": 18.34583766, "OBJECTID_1": 20467, "PARCEL_NO_": "105601013000", "Tax_Legal_": "163 ANNAS RETREAT NEW QTR", "Name": "HOWARD, LESLIE & JEAN", "Address": "PO Box 8852", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 102400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.42132889600001, "SHAPE_Area": 651.90721441999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362116.593599997460842, 257386.167199999094009 ], [ 362122.309199996292591, 257415.023800000548363 ], [ 362147.011699996888638, 257410.657000001519918 ], [ 362136.572999998927116, 257384.225699998438358 ], [ 362135.915899999439716, 257382.561900001019239 ], [ 362135.202799998223782, 257382.774999998509884 ], [ 362129.10383627214469, 257384.434115305601154 ], [ 362122.88569799112156, 257385.567595986096421 ], [ 362116.593599997460842, 257386.167199999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105601013200", "MAP": "D9-764-T68", "PARCEL_NAM": "165", "ACRE": ".137", "LONGITUDE": -64.89898553, "LATITUDE": 18.34570847, "OBJECTID_1": 20469, "PARCEL_NO_": "105601013200", "Tax_Legal_": "165 ANNAS RETREAT NO.1 NEW QTR", "Name": "ROHLOFF, WALTER H. & CARRIE L.", "Address": "PO BOX 11780", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 19200, "Improved_V": 116100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.520019889, "SHAPE_Area": 731.86636362700006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362185.594400003552437, 257403.836399998515844 ], [ 362188.020599998533726, 257403.011900000274181 ], [ 362178.627099998295307, 257369.793400000780821 ], [ 362158.123700000345707, 257375.922899998724461 ], [ 362158.406400002539158, 257377.016100000590086 ], [ 362166.226199999451637, 257407.260299999266863 ], [ 362185.594400003552437, 257403.836399998515844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105502012900", "MAP": "D9-627-T67", "PARCEL_NAM": "162", "ACRE": "0.14", "LONGITUDE": -64.89939422, "LATITUDE": 18.34583766, "OBJECTID_1": 19828, "PARCEL_NO_": "105502012900", "Tax_Legal_": "ANNAS RETREAT 161 NEW QTR", "Name": "HECTOR, VERNALEE I", "Address": "PO BOX 12258", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15900, "Improved_V": 111900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.408473104, "SHAPE_Area": 662.48191340400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362122.309199996292591, 257415.023800000548363 ], [ 362116.593599997460842, 257386.167199999094009 ], [ 362113.136500000953674, 257386.267599999904633 ], [ 362112.329999998211861, 257386.434900000691414 ], [ 362110.262047288531903, 257387.067256610200275 ], [ 362108.296712943352759, 257387.969345410063397 ], [ 362106.468999996781349, 257389.125100001692772 ], [ 362105.708991923776921, 257389.831100112991408 ], [ 362104.848990227095783, 257390.411139344447292 ], [ 362103.909666681312956, 257390.851275351276854 ], [ 362102.913599712075666, 257391.140928628505208 ], [ 362101.884731681086123, 257391.273136809410062 ], [ 362100.847793385968544, 257391.244722019182518 ], [ 362099.827709608303849, 257391.05636726130615 ], [ 362098.848999999463558, 257390.712600000202656 ], [ 362097.779446714092046, 257390.412396304687718 ], [ 362096.752700001001358, 257389.988299999386072 ], [ 362096.601800002157688, 257419.568300001323223 ], [ 362118.676399998366833, 257415.666000001132488 ], [ 362122.309199996292591, 257415.023800000548363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903041000", "MAP": "B9-472-T76", "PARCEL_NAM": "5A-2", "ACRE": "4.17", "LONGITUDE": -64.93065033000001, "LATITUDE": 18.35496647, "OBJECTID_1": 4916, "PARCEL_NO_": "102903041000", "Tax_Legal_": "MISGUNST 5A-2 GR NORTHSIDE", "Name": "JOHNSON, MARLENE L.", "Address": "1617 Tuckerman St", "City": "Washington", "State": "District of Columbia", "Zip": 20011, "Country": "United States", "Land_Value": 268700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 648.16683555400004, "SHAPE_Area": 15376.3464864 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358865.531300000846386, 258378.935499999672174 ], [ 358795.329300001263618, 258289.91270000115037 ], [ 358714.930699996650219, 258356.593600001186132 ], [ 358708.401100002229214, 258365.828200001269579 ], [ 358705.957000002264977, 258368.7635000012815 ], [ 358715.523000001907349, 258381.718499999493361 ], [ 358730.137299999594688, 258370.0168999992311 ], [ 358775.195500001311302, 258381.573699999600649 ], [ 358794.444499999284744, 258393.7635000012815 ], [ 358807.250200003385544, 258405.05629999935627 ], [ 358808.819700002670288, 258410.135400000959635 ], [ 358812.0, 258415.438799999654293 ], [ 358816.719200000166893, 258429.409600000828505 ], [ 358818.921499997377396, 258434.86769999936223 ], [ 358822.389200001955032, 258443.461500000208616 ], [ 358825.118299998342991, 258447.882500000298023 ], [ 358828.610699996352196, 258453.360500000417233 ], [ 358831.466399997472763, 258460.562399998307228 ], [ 358828.421700000762939, 258463.464000001549721 ], [ 358825.246699996292591, 258465.686500001698732 ], [ 358826.199199996888638, 258470.290300000458956 ], [ 358830.485500000417233, 258470.766499999910593 ], [ 358833.279500000178814, 258473.241500001400709 ], [ 358831.582400001585484, 258483.149000000208616 ], [ 358860.589900001883507, 258485.708399999886751 ], [ 358867.917400002479553, 258486.291900001466274 ], [ 358869.453900001943111, 258486.414200000464916 ], [ 358911.337200000882149, 258492.034400001168251 ], [ 358865.531300000846386, 258378.935499999672174 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103030700", "MAP": "A9-705-T007", "PARCEL_NAM": "4-1C", "ACRE": "2.44", "LONGITUDE": -64.9664786, "LATITUDE": 18.36805544, "OBJECTID_1": 444, "PARCEL_NO_": "101103030700", "Tax_Legal_": "NELTJBERG EASTERN PART 4-1 GREAT NORTHSIDE QTR.", "Name": "ESTATE OF GEORGE MOOLENAAR, SR", "Address": "PO Box 303441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 350500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 590.45901287100003, "SHAPE_Area": 13868.556841699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355009.951099999248981, 259869.657499998807907 ], [ 355034.422399997711182, 259705.774399999529123 ], [ 355028.573700003325939, 259701.095400001853704 ], [ 355038.32150000333786, 259695.636700000613928 ], [ 355054.100900001823902, 259691.789200000464916 ], [ 355025.064499996602535, 259673.021800000220537 ], [ 354961.383699998259544, 259665.018199998885393 ], [ 354962.571900002658367, 259719.944099999964237 ], [ 354962.49099999666214, 259729.442699998617172 ], [ 354948.221600003540516, 259889.968100000172853 ], [ 354960.373800002038479, 259883.312600001692772 ], [ 354974.129699997603893, 259877.725600000470877 ], [ 354993.529700003564358, 259872.184900000691414 ], [ 355004.836099997162819, 259870.166499998420477 ], [ 355009.951099999248981, 259869.657499998807907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103030300", "MAP": "D9-9492-T020", "PARCEL_NAM": "3D", "ACRE": "1.15", "LONGITUDE": -64.96762881, "LATITUDE": 18.3677525, "OBJECTID_1": 440, "PARCEL_NO_": "101103030300", "Tax_Legal_": "3 NELTJBERG/EAST PART LITTLE NORTHSIDE", "Name": "KRIGGER, URSULA & OTHERS", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 246500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 316.22261916000002, "SHAPE_Area": 4363.1817176799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354960.836300000548363, 259639.714400000870228 ], [ 354983.1875, 259571.714099999517202 ], [ 354969.413699999451637, 259579.411800000816584 ], [ 354938.568800002336502, 259603.223999999463558 ], [ 354919.107600003480911, 259615.941500000655651 ], [ 354899.67339999973774, 259625.49269999936223 ], [ 354882.688699997961521, 259631.475400000810623 ], [ 354884.746200002729893, 259673.922100000083447 ], [ 354906.921300001442432, 259670.292399998754263 ], [ 354924.077399998903275, 259661.714299999177456 ], [ 354960.836300000548363, 259639.714400000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103030700", "MAP": "A9-706-T007", "PARCEL_NAM": "4-1A REM", "ACRE": "2.24", "LONGITUDE": -64.9664786, "LATITUDE": 18.36805544, "OBJECTID_1": 444, "PARCEL_NO_": "101103030700", "Tax_Legal_": "NELTJBERG EASTERN PART 4-1 GREAT NORTHSIDE QTR.", "Name": "ESTATE OF GEORGE MOOLENAAR, SR", "Address": "PO Box 303441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 350500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 563.31557391700005, "SHAPE_Area": 11287.116749299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355105.732299998402596, 259648.988899998366833 ], [ 355090.179700002074242, 259653.136300001293421 ], [ 355035.98200000077486, 259650.796799998730421 ], [ 355037.151799999177456, 259609.4662000015378 ], [ 355079.490800000727177, 259599.148200001567602 ], [ 355068.019400000572205, 259552.565600000321865 ], [ 355051.189300000667572, 259540.395500000566244 ], [ 355043.927100002765656, 259540.969399999827147 ], [ 355024.467699997127056, 259553.475699998438358 ], [ 354991.290200002491474, 259567.136399999260902 ], [ 354983.1875, 259571.714099999517202 ], [ 354960.836300000548363, 259639.714400000870228 ], [ 354961.383699998259544, 259665.018199998885393 ], [ 355025.064499996602535, 259673.021800000220537 ], [ 355054.100900001823902, 259691.789200000464916 ], [ 355064.485600002110004, 259683.414700001478195 ], [ 355081.491899996995926, 259674.899000000208616 ], [ 355087.170199997723103, 259670.93470000103116 ], [ 355092.864699997007847, 259665.070700000971556 ], [ 355105.732299998402596, 259648.988899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103030700", "MAP": "A9-706-T007", "PARCEL_NAM": "4-1A-1", "ACRE": "0.72", "LONGITUDE": -64.9664786, "LATITUDE": 18.36805544, "OBJECTID_1": 444, "PARCEL_NO_": "101103030700", "Tax_Legal_": "NELTJBERG EASTERN PART 4-1 GREAT NORTHSIDE QTR.", "Name": "ESTATE OF GEORGE MOOLENAAR, SR", "Address": "PO Box 303441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 350500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 253.81926130599999, "SHAPE_Area": 2738.9424326100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355105.732299998402596, 259648.988899998366833 ], [ 355121.391400001943111, 259629.418299999088049 ], [ 355089.063299998641014, 259638.019600000232458 ], [ 355079.490800000727177, 259599.148200001567602 ], [ 355037.151799999177456, 259609.4662000015378 ], [ 355035.98200000077486, 259650.796799998730421 ], [ 355090.179700002074242, 259653.136300001293421 ], [ 355105.732299998402596, 259648.988899998366833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101103030700", "MAP": "A9-705-T007", "PARCEL_NAM": "ROW 4-1D", "ACRE": "0.06", "LONGITUDE": -64.9664786, "LATITUDE": 18.36805544, "OBJECTID_1": 444, "PARCEL_NO_": "101103030700", "Tax_Legal_": "NELTJBERG EASTERN PART 4-1 GREAT NORTHSIDE QTR.", "Name": "ESTATE OF GEORGE MOOLENAAR, SR", "Address": "PO Box 303441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 350500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 69.822439313800004, "SHAPE_Area": 186.868724886 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355053.006599999964237, 259705.696699999272823 ], [ 355051.48030000180006, 259695.551699999719858 ], [ 355052.306400001049042, 259693.236400000751019 ], [ 355054.100900001823902, 259691.789200000464916 ], [ 355038.32150000333786, 259695.636700000613928 ], [ 355028.573700003325939, 259701.095400001853704 ], [ 355034.422399997711182, 259705.774399999529123 ], [ 355041.050899997353554, 259702.655099999159575 ], [ 355048.84910000115633, 259703.434900000691414 ], [ 355053.006599999964237, 259705.696699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "101103030700", "MAP": "A9-705-T007", "PARCEL_NAM": "4-1B", "ACRE": "2.21", "LONGITUDE": -64.9664786, "LATITUDE": 18.36805544, "OBJECTID_1": 444, "PARCEL_NO_": "101103030700", "Tax_Legal_": "NELTJBERG EASTERN PART 4-1 GREAT NORTHSIDE QTR.", "Name": "ESTATE OF GEORGE MOOLENAAR, SR", "Address": "PO Box 303441", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 350500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 487.11394695299998, "SHAPE_Area": 10851.148954 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355034.422399997711182, 259705.774399999529123 ], [ 355009.951099999248981, 259869.657499998807907 ], [ 355018.556000001728535, 259868.801100000739098 ], [ 355035.490299999713898, 259868.72859999909997 ], [ 355054.825599998235703, 259870.786699999123812 ], [ 355068.507799997925758, 259873.853999998420477 ], [ 355080.078500002622604, 259840.807000000029802 ], [ 355082.795900002121925, 259805.78770000115037 ], [ 355095.909100003540516, 259780.986000001430511 ], [ 355092.69820000231266, 259779.271000001579523 ], [ 355102.54839999973774, 259758.875500001013279 ], [ 355103.390699997544289, 259754.660599999129772 ], [ 355100.204999998211861, 259749.99040000140667 ], [ 355100.23200000077486, 259746.824200000613928 ], [ 355101.117399998009205, 259737.543400000780821 ], [ 355103.565099999308586, 259734.185899998992682 ], [ 355107.621799997985363, 259731.263799998909235 ], [ 355110.857900001108646, 259730.023699998855591 ], [ 355115.697599999606609, 259729.852200001478195 ], [ 355117.319200001657009, 259728.809999998658895 ], [ 355118.971400000154972, 259724.179499998688698 ], [ 355115.776699997484684, 259720.564800001680851 ], [ 355082.723300002515316, 259719.660999998450279 ], [ 355075.477200001478195, 259718.335099998861551 ], [ 355062.621200002729893, 259712.952500000596046 ], [ 355053.006599999964237, 259705.696699999272823 ], [ 355048.84910000115633, 259703.434900000691414 ], [ 355041.050899997353554, 259702.655099999159575 ], [ 355034.422399997711182, 259705.774399999529123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103030300", "MAP": "D9-9492-T020", "PARCEL_NAM": "REM 3", "ACRE": "6.38 +/-", "LONGITUDE": -64.96762881, "LATITUDE": 18.3677525, "OBJECTID_1": 440, "PARCEL_NO_": "101103030300", "Tax_Legal_": "3 NELTJBERG/EAST PART LITTLE NORTHSIDE", "Name": "KRIGGER, URSULA & OTHERS", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 246500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 740.351411375, "SHAPE_Area": 27087.766263400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354960.787900000810623, 259748.60249999910593 ], [ 354913.939699999988079, 259743.595800001174212 ], [ 354913.159800000488758, 259734.62779999896884 ], [ 354902.212600000202656, 259671.063099998980761 ], [ 354884.746200002729893, 259673.922100000083447 ], [ 354816.100000001490116, 259686.236900001764297 ], [ 354819.969700001180172, 259705.267000000923872 ], [ 354829.055600002408028, 259774.580099999904633 ], [ 354838.631399996578693, 259881.049600001424551 ], [ 354841.766699999570847, 259891.629900000989437 ], [ 354848.919299997389317, 259903.93189999833703 ], [ 354858.937399998307228, 259958.475999999791384 ], [ 354871.094999998807907, 259951.187300000339746 ], [ 354887.318400003015995, 259939.921000000089407 ], [ 354897.874200001358986, 259931.352600000798702 ], [ 354898.693099997937679, 259929.881599999964237 ], [ 354900.311099998652935, 259929.261599998921156 ], [ 354901.130000002682209, 259927.790600001811981 ], [ 354902.748000003397465, 259927.1706000007689 ], [ 354925.515399999916553, 259904.980999998748302 ], [ 354940.120700001716614, 259894.334800001233816 ], [ 354948.221600003540516, 259889.968100000172853 ], [ 354960.787900000810623, 259748.60249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101103030300", "MAP": "D9-9492-T020", "PARCEL_NAM": "3E", "ACRE": "1.15", "LONGITUDE": -64.96762881, "LATITUDE": 18.3677525, "OBJECTID_1": 440, "PARCEL_NO_": "101103030300", "Tax_Legal_": "3 NELTJBERG/EAST PART LITTLE NORTHSIDE", "Name": "KRIGGER, URSULA & OTHERS", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 246500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.82747987499999, "SHAPE_Area": 4427.4704858200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354902.212600000202656, 259671.063099998980761 ], [ 354913.159800000488758, 259734.62779999896884 ], [ 354961.596199996769428, 259739.50899999961257 ], [ 354962.49099999666214, 259729.442699998617172 ], [ 354962.571900002658367, 259719.944099999964237 ], [ 354960.836300000548363, 259639.714400000870228 ], [ 354924.077399998903275, 259661.714299999177456 ], [ 354906.921300001442432, 259670.292399998754263 ], [ 354902.212600000202656, 259671.063099998980761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101103030300", "MAP": "D9-9492-T020", "PARCEL_NAM": "ROW 3-1", "ACRE": "0.11", "LONGITUDE": -64.96762881, "LATITUDE": 18.3677525, "OBJECTID_1": 440, "PARCEL_NO_": "101103030300", "Tax_Legal_": "3 NELTJBERG/EAST PART LITTLE NORTHSIDE", "Name": "KRIGGER, URSULA & OTHERS", "Address": "PO Box 32", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 246500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.927907762, "SHAPE_Area": 430.31590483399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354913.159800000488758, 259734.62779999896884 ], [ 354913.939699999988079, 259743.595800001174212 ], [ 354960.787900000810623, 259748.60249999910593 ], [ 354961.596199996769428, 259739.50899999961257 ], [ 354913.159800000488758, 259734.62779999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101203016600", "MAP": "D9-7184-T003", "PARCEL_NAM": "17-5B", "ACRE": ".51", "LONGITUDE": -64.94592743, "LATITUDE": 18.36877182, "OBJECTID_1": 765, "PARCEL_NO_": "101203016600", "Tax_Legal_": "17-5B ESTATE ST.PETER #2 LT.NORTHSIDE QTR", "Name": "WILSON, KEMAR R. and CHRISTINA M. GHALY", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 88000, "Improved_V": 487000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.781840074, "SHAPE_Area": 238.410481882 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357220.315700002014637, 259916.782600000500679 ], [ 357212.170000001788139, 259911.539200000464916 ], [ 357183.065700002014637, 259895.399599999189377 ], [ 357166.280799999833107, 259884.355000000447035 ], [ 357163.560199998319149, 259888.048099998384714 ], [ 357168.248999997973442, 259891.166200000792742 ], [ 357177.2449000030756, 259896.193300001323223 ], [ 357218.243199996650219, 259919.201699998229742 ], [ 357220.315700002014637, 259916.782600000500679 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "101203018200", "MAP": "D9-8541-T011", "PARCEL_NAM": null, "ACRE": "1.010", "LONGITUDE": -64.94563129, "LATITUDE": 18.36892995, "OBJECTID_1": 781, "PARCEL_NO_": "101203018200", "Tax_Legal_": "17-5G ESTATE ST.PETER NO.2 LITTLE NORTHSIDE QTR", "Name": "ANDERSON, NANCY M. (TRUSTEE)", "Address": "7499 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 163600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 18.674826549199999, "SHAPE_Area": 20.026096920400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357225.686899997293949, 259919.045499999076128 ], [ 357220.315700002014637, 259916.782600000500679 ], [ 357218.243199996650219, 259919.201699998229742 ], [ 357223.078900001943111, 259922.10530000180006 ], [ 357225.686899997293949, 259919.045499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "101203011500", "MAP": "B9-106-T64", "PARCEL_NAM": "16E", "ACRE": "2.58", "LONGITUDE": -64.9452237, "LATITUDE": 18.36722647, "OBJECTID_1": 714, "PARCEL_NO_": "101203011500", "Tax_Legal_": "ST PETER 16E LITTLE NORTHSIDE QTR", "Name": "BRYAN, RICHARD", "Address": "13110 Hidden Valley Dr", "City": "Homer Glen", "State": "Illinois", "Zip": 60491, "Country": "United States", "Land_Value": 242300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 403.39095811800001, "SHAPE_Area": 7384.2493924199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357282.825300000607967, 259653.897399999201298 ], [ 357232.780699998140335, 259659.293099999427795 ], [ 357233.760999999940395, 259666.549800001084805 ], [ 357249.670400001108646, 259786.792300000786781 ], [ 357251.878899998962879, 259811.508299998939037 ], [ 357297.779899999499321, 259806.5304000005126 ], [ 357289.652900002896786, 259724.608800001442432 ], [ 357286.668300002813339, 259676.130399998277426 ], [ 357282.982699997723103, 259654.511999998241663 ], [ 357282.825300000607967, 259653.897399999201298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105403020800", "MAP": "D9-3272-T85", "PARCEL_NAM": "39a", "ACRE": "14,470 sq ft", "LONGITUDE": -64.92476727, "LATITUDE": 18.33843519, "OBJECTID_1": 19309, "PARCEL_NO_": "105403020800", "Tax_Legal_": "39A TAARNEBERG VILLA ALPHABETA", "Name": "HODGE, LAWRENCE & MARIA", "Address": "BOX 4511", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44500, "Improved_V": 112900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.45817405400001, "SHAPE_Area": 1190.15335826 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359474.662900000810623, 256545.357299998402596 ], [ 359472.352300003170967, 256545.030000001192093 ], [ 359467.49549999833107, 256544.588300000876188 ], [ 359462.622699998319149, 256544.389899998903275 ], [ 359459.101999998092651, 256544.319600000977516 ], [ 359455.582000002264977, 256544.2195999994874 ], [ 359452.063000001013279, 256544.089600000530481 ], [ 359448.545299999415874, 256543.929800000041723 ], [ 359447.493600003421307, 256543.88060000166297 ], [ 359446.441699996590614, 256543.83729999884963 ], [ 359445.389600001275539, 256543.799800001084805 ], [ 359444.337200000882149, 256543.768399998545647 ], [ 359442.33389999717474, 256543.739999998360872 ], [ 359440.867600001394749, 256543.719200000166893 ], [ 359439.169900000095367, 256563.379599999636412 ], [ 359434.322400003671646, 256574.702100001275539 ], [ 359432.187899999320507, 256579.687600001692772 ], [ 359445.360399998724461, 256579.765099998563528 ], [ 359468.171300001442432, 256579.899300001561642 ], [ 359474.662900000810623, 256545.357299998402596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105403020400", "MAP": "D9-3272-T85", "PARCEL_NAM": "39c", "ACRE": "15,100 sq ft", "LONGITUDE": -64.9248212, "LATITUDE": 18.33878091, "OBJECTID_1": 19305, "PARCEL_NO_": "105403020400", "Tax_Legal_": "39C TAARNEBERG VILLA IOTA", "Name": "HODGE, LAWRENCE & MARIA T", "Address": "BOX 4511", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 339800, "Improved_V": 1159400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 165.221656045, "SHAPE_Area": 1534.30349544 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359449.175200000405312, 256618.704799998551607 ], [ 359451.893799997866154, 256618.594300001859665 ], [ 359454.611400000751019, 256618.72749999910593 ], [ 359457.306199997663498, 256619.103399999439716 ], [ 359459.956500001251698, 256619.718899998813868 ], [ 359462.54110000282526, 256620.569099999964237 ], [ 359465.039300002157688, 256621.647199999541044 ], [ 359467.140000000596046, 256622.786699999123812 ], [ 359467.893500000238419, 256592.771299999207258 ], [ 359468.059000000357628, 256585.106600001454353 ], [ 359468.171300001442432, 256579.899300001561642 ], [ 359445.360399998724461, 256579.765099998563528 ], [ 359432.187899999320507, 256579.687600001692772 ], [ 359430.972699999809265, 256589.817699998617172 ], [ 359428.809199996292591, 256607.853100001811981 ], [ 359428.848099999129772, 256609.0320999994874 ], [ 359429.400600001215935, 256625.752700001001358 ], [ 359434.278599999845028, 256622.442699998617172 ], [ 359435.270300000905991, 256621.76969999819994 ], [ 359444.732900001108646, 256619.419700000435114 ], [ 359446.477399997413158, 256619.058100000023842 ], [ 359449.175200000405312, 256618.704799998551607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105404010100", "MAP": "D9-3272-T85", "PARCEL_NAM": "38a REM", "ACRE": "1.014", "LONGITUDE": -64.92431203, "LATITUDE": 18.33870169, "OBJECTID_1": 19317, "PARCEL_NO_": "105404010100", "Tax_Legal_": "TAARNEBERG 38A VILLA ORIENT", "Name": "BLUEBEARD'S CASTLE, INC", "Address": "8680 Baymeadows Rd E", "City": "Jacksonville", "State": "Florida", "Zip": 32256, "Country": "United States", "Land_Value": 484900, "Improved_V": 500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 410.02465802699999, "SHAPE_Area": 5080.0866356500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359511.724200002849102, 256646.207499999552965 ], [ 359520.235399998724461, 256627.526500001549721 ], [ 359492.011399999260902, 256629.103199999779463 ], [ 359492.454099997878075, 256605.9364 ], [ 359521.029100000858307, 256606.730200000107288 ], [ 359520.235399998724461, 256627.526500001549721 ], [ 359525.47410000115633, 256615.144000001251698 ], [ 359543.707000002264977, 256621.874200001358986 ], [ 359544.557499997317791, 256570.372099999338388 ], [ 359542.723700001835823, 256569.754599999636412 ], [ 359540.901399999856949, 256569.104100000113249 ], [ 359539.091300003230572, 256568.420499999076128 ], [ 359537.293799996376038, 256567.704300001263618 ], [ 359498.683700002729893, 256551.912000000476837 ], [ 359495.29389999806881, 256550.570199999958277 ], [ 359491.856299996376038, 256549.355999998748302 ], [ 359488.375699996948242, 256548.271099999547005 ], [ 359484.85700000077486, 256547.31700000166893 ], [ 359481.969400003552437, 256546.638199999928474 ], [ 359477.717799998819828, 256545.817600000649691 ], [ 359477.181000001728535, 256545.713899999856949 ], [ 359474.662900000810623, 256545.357299998402596 ], [ 359468.171300001442432, 256579.899300001561642 ], [ 359468.059000000357628, 256585.106600001454353 ], [ 359467.893500000238419, 256592.771299999207258 ], [ 359467.140000000596046, 256622.786699999123812 ], [ 359467.431000001728535, 256622.944499999284744 ], [ 359469.696999996900558, 256624.450599998235703 ], [ 359469.831200003623962, 256624.549300000071526 ], [ 359471.784800000488758, 256626.123199999332428 ], [ 359473.601800002157688, 256627.853100001811981 ], [ 359475.269900001585484, 256629.72690000012517 ], [ 359476.77759999781847, 256631.73200000077486 ], [ 359477.960500001907349, 256633.267299998551607 ], [ 359479.425700001418591, 256634.786800000816584 ], [ 359481.056199997663498, 256636.127300001680851 ], [ 359482.830300003290176, 256637.271000001579523 ], [ 359484.724500000476837, 256638.2027000002563 ], [ 359486.713299997150898, 256638.90989999845624 ], [ 359511.724200002849102, 256646.207499999552965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105403020300", "MAP": "D9-3272-T85", "PARCEL_NAM": "40b", "ACRE": "15,240 sq ft", "LONGITUDE": -64.92504682000001, "LATITUDE": 18.33846919, "OBJECTID_1": 19304, "PARCEL_NO_": "105403020300", "Tax_Legal_": "40B TAARNEBERG VILLA OCCIDENT", "Name": "HODGE, LAWRENCE & MARIA T", "Address": "BOX 4511", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 342900, "Improved_V": 118200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.50413969300001, "SHAPE_Area": 1162.4304836599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359439.169900000095367, 256563.379599999636412 ], [ 359440.867600001394749, 256543.719200000166893 ], [ 359439.527099996805191, 256543.700100000947714 ], [ 359434.71679999679327, 256543.755800001323223 ], [ 359429.909500002861023, 256543.935300000011921 ], [ 359425.108499996364117, 256544.238699998706579 ], [ 359416.158600002527237, 256545.075100000947714 ], [ 359413.087600000202656, 256545.496399998664856 ], [ 359410.057700000703335, 256546.151200000196695 ], [ 359407.580700002610683, 256546.888599999248981 ], [ 359411.048500001430511, 256565.076299998909235 ], [ 359415.843199998140335, 256576.916600000113249 ], [ 359428.848099999129772, 256609.0320999994874 ], [ 359428.809199996292591, 256607.853100001811981 ], [ 359430.972699999809265, 256589.817699998617172 ], [ 359432.187899999320507, 256579.687600001692772 ], [ 359434.322400003671646, 256574.702100001275539 ], [ 359439.169900000095367, 256563.379599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502041700", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13-B", "ACRE": "26.49", "LONGITUDE": -64.90254151000001, "LATITUDE": 18.33891189, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 263.76830010100002, "SHAPE_Area": 2886.2813350699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361838.849299997091293, 256617.129200000315905 ], [ 361832.752899996936321, 256616.814699999988079 ], [ 361821.614100001752377, 256616.985100001096725 ], [ 361808.099899999797344, 256615.817800000309944 ], [ 361794.598899997770786, 256613.069200001657009 ], [ 361785.06870000064373, 256611.144499998539686 ], [ 361774.749600000679493, 256608.422499999403954 ], [ 361769.240500003099442, 256608.376499999314547 ], [ 361767.848399996757507, 256621.141399998217821 ], [ 361773.060400001704693, 256622.78319999948144 ], [ 361775.44539999961853, 256625.999499998986721 ], [ 361775.217699997127056, 256629.193999998271465 ], [ 361775.072999998927116, 256630.228900000452995 ], [ 361774.576300002634525, 256633.783500000834465 ], [ 361773.941699996590614, 256637.574000000953674 ], [ 361774.517899997532368, 256640.775199998170137 ], [ 361775.487700000405312, 256644.97859999909997 ], [ 361776.460900001227856, 256648.782499998807907 ], [ 361775.816200003027916, 256653.771499998867512 ], [ 361775.176500000059605, 256658.161200001835823 ], [ 361773.141699999570847, 256661.140799999237061 ], [ 361772.075099997222424, 256662.776599999517202 ], [ 361770.291400000452995, 256665.512099999934435 ], [ 361772.049699999392033, 256674.454900000244379 ], [ 361772.194099999964237, 256675.189300000667572 ], [ 361793.344631486514118, 256661.194630029553082 ], [ 361814.92509999871254, 256647.872499998658895 ], [ 361830.80009999871254, 256640.199499998241663 ], [ 361837.240328404295724, 256637.89175923060975 ], [ 361843.764700002968311, 256635.83390000090003 ], [ 361847.79541790985968, 256634.211231073393719 ], [ 361851.52911385986954, 256631.988787407812197 ], [ 361854.877199999988079, 256629.219300001859665 ], [ 361855.348378574359231, 256628.019501565373503 ], [ 361855.614591244899202, 256626.758289310731925 ], [ 361855.66850262664957, 256625.470415442629019 ], [ 361855.508627212897409, 256624.191366816026857 ], [ 361855.139370307442732, 256622.956387109734351 ], [ 361854.570906638167799, 256621.799505700968439 ], [ 361853.818899996578693, 256620.752599999308586 ], [ 361849.015901808103081, 256618.845011869736481 ], [ 361843.993001771683339, 256617.62921612453647 ], [ 361838.849299997091293, 256617.129200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": null, "PARCEL_NO": "105502044300", "MAP": "A9-758-T010", "PARCEL_NAM": "1-13 REM CONS", "ACRE": null, "LONGITUDE": -64.90201251000001, "LATITUDE": 18.33889699, "OBJECTID_1": 19948, "PARCEL_NO_": "105502044300", "Tax_Legal_": "PAR 1-13 REM (CONS) DONOE 2A NEW", "Name": "AR LEGACY, LLC", "Address": "PO. BOX 9196", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012196, "Country": "United States", "Land_Value": 452500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1105.9136964100001, "SHAPE_Area": 21686.0787552 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361890.201300002634525, 256652.950199998915195 ], [ 361916.209399998188019, 256666.184599999338388 ], [ 361918.313400000333786, 256662.747600000351667 ], [ 361921.171839510847349, 256655.036749170307303 ], [ 361923.300057651882526, 256647.093287424824666 ], [ 361924.679571390210185, 256638.986201708961744 ], [ 361925.29839999973774, 256630.785900000482798 ], [ 361925.448271702858619, 256630.058692225429695 ], [ 361925.480455498502124, 256629.316899209312396 ], [ 361925.394130395725369, 256628.579443683789577 ], [ 361925.191498500411399, 256627.865137733577285 ], [ 361924.87772884068545, 256627.192202910489868 ], [ 361924.460825507936534, 256626.577805411594454 ], [ 361923.951423476857599, 256626.037618179048877 ], [ 361923.362517312925775, 256625.585421091935132 ], [ 361922.70912968844641, 256625.232749449147377 ], [ 361922.007928162114695, 256624.988599710253766 ], [ 361921.276799999177456, 256624.859200000762939 ], [ 361919.371799997985363, 256619.990899998694658 ], [ 361929.108400002121925, 256615.757500000298023 ], [ 361932.283399999141693, 256623.165899999439716 ], [ 361932.378819980367552, 256631.852702695206972 ], [ 361931.879435276554432, 256640.525664182787295 ], [ 361930.787588210718241, 256649.144104646868072 ], [ 361929.108400002121925, 256657.667599998414516 ], [ 361925.346016657014843, 256665.299933208181756 ], [ 361920.928673561080359, 256672.572836248466047 ], [ 361915.890422105847392, 256679.430245448311325 ], [ 361910.270099997520447, 256685.819299999624491 ], [ 361904.322516063519288, 256690.264470778638497 ], [ 361898.079116318607703, 256694.283582313626539 ], [ 361891.570366625965107, 256697.857022581098136 ], [ 361884.8280276748701, 256700.967354295658879 ], [ 361877.884999997913837, 256703.599399998784065 ], [ 361869.546383460809011, 256705.71181126110605 ], [ 361861.105979598476551, 256707.371446683158865 ], [ 361852.588354746403638, 256708.573475789889926 ], [ 361844.018299996852875, 256709.314399998635054 ], [ 361837.835299998521805, 256711.423300001770258 ], [ 361829.706040396995377, 256715.140567579539493 ], [ 361821.788811193022411, 256719.290317167906323 ], [ 361814.106600001454353, 256723.860500000417233 ], [ 361811.711420366016682, 256725.559150237939321 ], [ 361809.568510278884787, 256727.566694626962999 ], [ 361807.717399999499321, 256729.846099998801947 ], [ 361806.943486357631627, 256735.576407789369114 ], [ 361806.955393314012326, 256741.358728078339482 ], [ 361807.752899996936321, 256747.085799999535084 ], [ 361808.638490689976607, 256748.598336756898789 ], [ 361809.738977839588188, 256749.962509162287461 ], [ 361811.02993306069402, 256751.148035600228468 ], [ 361812.482699997723103, 256752.128600001335144 ], [ 361814.579499997198582, 256751.871700000017881 ], [ 361816.154715943383053, 256752.391919281799346 ], [ 361817.776100002229214, 256752.74269999936223 ], [ 361825.575442079571076, 256753.82023204935831 ], [ 361833.437703282572329, 256754.239351284253644 ], [ 361841.3074000030756, 256753.997099999338388 ], [ 361844.035551173437852, 256753.612195529829478 ], [ 361846.681756008707453, 256752.845018738618819 ], [ 361849.192732008406892, 256751.711017068446381 ], [ 361851.517919564328622, 256750.233024142624345 ], [ 361853.610500000417233, 256748.440799999982119 ], [ 361855.261561144841835, 256747.470892336918041 ], [ 361857.04983508377336, 256746.786202555435011 ], [ 361858.926465345313773, 256746.405436697299592 ], [ 361860.840181522187777, 256746.338997462007683 ], [ 361862.73870000243187, 256746.588700000196695 ], [ 361864.391171380179003, 256747.318648808810394 ], [ 361865.930791197635699, 256748.263666129001649 ], [ 361867.329729687888175, 256749.406670073833084 ], [ 361868.562700003385544, 256750.727000001817942 ], [ 361887.41499999910593, 256750.587200000882149 ], [ 361889.749300003051758, 256750.515799999237061 ], [ 361893.372673842823133, 256748.80708211674937 ], [ 361896.869999997317791, 256746.853300001472235 ], [ 361900.357588642509654, 256746.252785591845168 ], [ 361903.881499998271465, 256745.927299998700619 ], [ 361907.49038614006713, 256745.154044200986391 ], [ 361911.157499998807907, 256744.736600000411272 ], [ 361912.110208888887428, 256744.551429134327918 ], [ 361913.076700001955032, 256744.462900001555681 ], [ 361914.441909785498865, 256744.503574519301765 ], [ 361915.787699997425079, 256744.736600000411272 ], [ 361919.836439962498844, 256745.490957547590369 ], [ 361923.842399999499321, 256746.446800000965595 ], [ 361928.330700002610683, 256745.018800001591444 ], [ 361933.483800001442432, 256743.714899998158216 ], [ 361945.062600001692772, 256740.785000000149012 ], [ 361947.701399996876717, 256576.523699998855591 ], [ 361947.912600003182888, 256563.377599999308586 ], [ 361872.917900003492832, 256563.8902000002563 ], [ 361859.812399998307228, 256560.583799999207258 ], [ 361846.030299998819828, 256557.106600001454353 ], [ 361719.383799999952316, 256544.225299999117851 ], [ 361718.370300002396107, 256564.375700000673532 ], [ 361717.280699998140335, 256590.458299998193979 ], [ 361723.76349999755621, 256593.761500000953674 ], [ 361728.01630000025034, 256597.06980000063777 ], [ 361737.548000000417233, 256599.113200001418591 ], [ 361745.765500001609325, 256600.818199999630451 ], [ 361756.622299998998642, 256601.890799999237061 ], [ 361764.18129999935627, 256603.590399999171495 ], [ 361768.788000002503395, 256603.956199999898672 ], [ 361772.738899998366833, 256603.989199999719858 ], [ 361777.672100000083447, 256604.684999998658895 ], [ 361781.612099997699261, 256606.026999998837709 ], [ 361800.011500000953674, 256610.762800000607967 ], [ 361812.190800003707409, 256611.191899999976158 ], [ 361832.263800002634525, 256612.668800000101328 ], [ 361837.861000001430511, 256612.715599998831749 ], [ 361843.444399997591972, 256614.398699998855591 ], [ 361850.687799997627735, 256614.459300000220537 ], [ 361861.882100000977516, 256614.55290000140667 ], [ 361864.456600002944469, 256614.403900001198053 ], [ 361869.667885740695056, 256614.322486677003326 ], [ 361874.831251367519144, 256615.032263102621073 ], [ 361879.827273692411836, 256616.516812899324577 ], [ 361884.540399998426437, 256618.741799999028444 ], [ 361886.558744072681293, 256620.217126241041115 ], [ 361888.303800001740456, 256622.007399998605251 ], [ 361889.449697637464851, 256623.60028070161934 ], [ 361890.377700001001358, 256625.329199999570847 ], [ 361890.602600000798702, 256625.849399998784065 ], [ 361891.311542170471512, 256628.04561068455223 ], [ 361891.674947006686125, 256630.32461864882498 ], [ 361891.684199996292591, 256632.632399998605251 ], [ 361891.551899999380112, 256639.114799998700619 ], [ 361891.890699997544289, 256641.35700000077486 ], [ 361892.033699996769428, 256646.133699998259544 ], [ 361891.689406570920255, 256648.471986336226109 ], [ 361891.075837734912056, 256650.754453038040083 ], [ 361890.201300002634525, 256652.950199998915195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105502041700", "MAP": "D9-9070-T016", "PARCEL_NAM": "1-13-R5", "ACRE": ".35", "LONGITUDE": -64.90183203, "LATITUDE": 18.3393853, "OBJECTID_1": 19923, "PARCEL_NO_": "105502041700", "Tax_Legal_": "PAR REM CONS, 1-13 REM,1-13-B,1-13-GDI,1-13-R2,1-13-R3 DONOE 2A NEW", "Name": "OCEANSIDE VILLAGE INC", "Address": "6501 REDHOOK PLAZA #201", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1273700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 448.82755111400002, "SHAPE_Area": 1468.57905071 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361932.283399999141693, 256623.165899999439716 ], [ 361929.108400002121925, 256615.757500000298023 ], [ 361919.371799997985363, 256619.990899998694658 ], [ 361921.276799999177456, 256624.859200000762939 ], [ 361922.007928162580356, 256624.988599709438859 ], [ 361922.709129689377733, 256625.232749447779497 ], [ 361923.362517314439174, 256625.58542109024711 ], [ 361923.951423478778452, 256626.03761817724444 ], [ 361924.460825510206632, 256626.577805409906432 ], [ 361924.877728843071964, 256627.192202909063781 ], [ 361925.191498502739705, 256627.865137732471339 ], [ 361925.394130397820845, 256628.579443683061982 ], [ 361925.480455500131939, 256629.316899208934046 ], [ 361925.448271703789942, 256630.05869222531328 ], [ 361925.29839999973774, 256630.785900000482798 ], [ 361924.679571390268393, 256638.986201708990848 ], [ 361923.300057651998941, 256647.093287424824666 ], [ 361921.171839510905556, 256655.036749170336407 ], [ 361918.313400000333786, 256662.747600000351667 ], [ 361914.301387232495472, 256668.976326682022773 ], [ 361909.68489547475474, 256674.77126295218477 ], [ 361904.510479541670065, 256680.073970022727735 ], [ 361898.830320610431954, 256684.830972970026778 ], [ 361892.701700001955032, 256688.994300000369549 ], [ 361885.188837507215794, 256692.922823415632593 ], [ 361877.378084751486313, 256696.219570369459689 ], [ 361869.322459288756363, 256698.862163318292005 ], [ 361861.076640811457764, 256700.832664962275885 ], [ 361852.696599997580051, 256702.11769999936223 ], [ 361847.003326381265651, 256702.88483170120162 ], [ 361841.408294344437309, 256704.18770238745492 ], [ 361835.961800001561642, 256706.014600001275539 ], [ 361808.368500001728535, 256720.245900001376867 ], [ 361806.816775156825315, 256721.031322459079092 ], [ 361805.405888218199834, 256722.048247469909256 ], [ 361804.170089969353285, 256723.271988095802953 ], [ 361803.139380729408003, 256724.672836729325354 ], [ 361802.338782063277904, 256726.21678627745132 ], [ 361801.787729356496129, 256727.866355719976127 ], [ 361801.499600000679493, 256729.581500001251698 ], [ 361801.261500000953674, 256747.837799999862909 ], [ 361801.578119275567587, 256748.475297532422701 ], [ 361801.789878388983198, 256749.154862795636291 ], [ 361801.891441953892354, 256749.85937376882066 ], [ 361801.880251020367723, 256750.571079910499975 ], [ 361801.756587550160475, 256751.272049392864574 ], [ 361801.523567312397063, 256751.944620904192561 ], [ 361801.187061380129308, 256752.57184863529983 ], [ 361800.755548205575906, 256753.137929238408105 ], [ 361800.239900000393391, 256753.628600001335144 ], [ 361812.482699997723103, 256752.128600001335144 ], [ 361811.029933060752228, 256751.148035600199364 ], [ 361809.738977839646395, 256749.962509162229253 ], [ 361808.638490690034814, 256748.598336756869685 ], [ 361807.752899996936321, 256747.085799999535084 ], [ 361806.955393314070534, 256741.358728078339482 ], [ 361806.943486357689835, 256735.576407789369114 ], [ 361807.717399999499321, 256729.846099998801947 ], [ 361809.568510278884787, 256727.566694627021207 ], [ 361811.71142036607489, 256725.559150237997528 ], [ 361814.106600001454353, 256723.860500000417233 ], [ 361821.788811193022411, 256719.290317167906323 ], [ 361829.706040396995377, 256715.140567579539493 ], [ 361837.835299998521805, 256711.423300001770258 ], [ 361844.018299996852875, 256709.314399998635054 ], [ 361852.588354746403638, 256708.573475789889926 ], [ 361861.105979598476551, 256707.371446683158865 ], [ 361869.546383460809011, 256705.71181126110605 ], [ 361877.884999997913837, 256703.599399998784065 ], [ 361884.8280276748701, 256700.967354295658879 ], [ 361891.570366625965107, 256697.857022581098136 ], [ 361898.079116318607703, 256694.283582313626539 ], [ 361904.322516063519288, 256690.264470778638497 ], [ 361910.270099997520447, 256685.819299999624491 ], [ 361915.890422105847392, 256679.430245448340429 ], [ 361920.928673561080359, 256672.57283624849515 ], [ 361925.346016657073051, 256665.299933208210859 ], [ 361929.108400002121925, 256657.667599998414516 ], [ 361930.787588210834656, 256649.144104646868072 ], [ 361931.879435276670847, 256640.525664182816399 ], [ 361932.37881998042576, 256631.852702695206972 ], [ 361932.283399999141693, 256623.165899999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105502044400", "MAP": "D9-9321-T019", "PARCEL_NAM": "REM ROW 1-13-R2", "ACRE": "0.46", "LONGITUDE": -64.90237725, "LATITUDE": 18.34002088, "OBJECTID_1": 19949, "PARCEL_NO_": "105502044400", "Tax_Legal_": "PAR 1-13-R2 REM (ROW) DONOE 2A NEW QTR", "Name": "AR LEGACY, LLC", "Address": "PO. BOX 9196", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012196, "Country": "United States", "Land_Value": 18500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 448.58694895100001, "SHAPE_Area": 1736.4672030900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 361882.54280000180006, 256760.056000001728535 ], [ 361923.842399999499321, 256746.446800000965595 ], [ 361919.836439962498844, 256745.490957547590369 ], [ 361915.787699997425079, 256744.736600000411272 ], [ 361914.441909785498865, 256744.503574519301765 ], [ 361913.076700001955032, 256744.462900001555681 ], [ 361912.110208888945635, 256744.551429134473437 ], [ 361911.157499998807907, 256744.736600000411272 ], [ 361907.490386140125338, 256745.154044200986391 ], [ 361903.881499998271465, 256745.927299998700619 ], [ 361900.357588642509654, 256746.252785591845168 ], [ 361896.869999997317791, 256746.853300001472235 ], [ 361893.372673842881341, 256748.807082116836682 ], [ 361889.749300003051758, 256750.515799999237061 ], [ 361887.41499999910593, 256750.587200000882149 ], [ 361868.562700003385544, 256750.727000001817942 ], [ 361867.329729687655345, 256749.406670074153226 ], [ 361865.930791197286453, 256748.263666129438207 ], [ 361864.39117138000438, 256747.31864880915964 ], [ 361862.73870000243187, 256746.588700000196695 ], [ 361860.840181522187777, 256746.338997461716644 ], [ 361858.926465345255565, 256746.405436696892139 ], [ 361857.049835083656944, 256746.786202555056661 ], [ 361855.26156114472542, 256747.47089233668521 ], [ 361853.610500000417233, 256748.440799999982119 ], [ 361851.51791956438683, 256750.23302414274076 ], [ 361849.1927320084651, 256751.711017068650108 ], [ 361846.68175600876566, 256752.84501873885165 ], [ 361844.03555117349606, 256753.612195529974997 ], [ 361841.3074000030756, 256753.997099999338388 ], [ 361833.437703282572329, 256754.239351284457371 ], [ 361825.575442079512868, 256753.820232049532933 ], [ 361817.776100002229214, 256752.74269999936223 ], [ 361816.154715943499468, 256752.39191928121727 ], [ 361814.579499997198582, 256751.871700000017881 ], [ 361812.482699997723103, 256752.128600001335144 ], [ 361800.239900000393391, 256753.628600001335144 ], [ 361799.491194990056101, 256754.00102811108809 ], [ 361798.692900002002716, 256754.25 ], [ 361795.473999999463558, 256754.622600000351667 ], [ 361790.850000001490116, 256754.7837999984622 ], [ 361789.644100002944469, 256754.773699998855591 ], [ 361788.044699996709824, 256753.761399999260902 ], [ 361786.041599996387959, 256752.945599999278784 ], [ 361784.440499998629093, 256752.133099999278784 ], [ 361781.221600003540516, 256752.505800001323223 ], [ 361772.372000001370907, 256753.230900000780821 ], [ 361770.558300003409386, 256753.815099999308586 ], [ 361769.340700000524521, 256755.203299999237061 ], [ 361768.731100000441074, 256755.997299998998642 ], [ 361767.319300003349781, 256756.584800001233816 ], [ 361763.495800003409386, 256757.152199998497963 ], [ 361759.680600002408028, 256756.720800001174212 ], [ 361757.881899997591972, 256755.507100000977516 ], [ 361756.633199997246265, 256754.139699999243021 ], [ 361750.440499998629093, 256755.028900001198053 ], [ 361750.16433028067695, 256755.872513922135113 ], [ 361749.767080743215047, 256756.666331889719004 ], [ 361749.257392550061923, 256757.393086391908582 ], [ 361748.646352685114834, 256758.036968713568058 ], [ 361747.947252782818396, 256758.583972815307789 ], [ 361747.175300002098083, 256759.022199999541044 ], [ 361717.222599998116493, 256765.319200001657009 ], [ 361715.893700003623962, 256765.547899998724461 ], [ 361712.707400001585484, 256766.04839999973774 ], [ 361710.583999998867512, 256766.294199999421835 ], [ 361711.684399999678135, 256772.253400001674891 ], [ 361722.490838750672992, 256770.297295712225605 ], [ 361733.248000003397465, 256768.086199998855591 ], [ 361742.674839674844407, 256765.964344668580452 ], [ 361752.24304850329645, 256764.616399547929177 ], [ 361761.889200001955032, 256764.051300000399351 ], [ 361805.942400000989437, 256761.27309999987483 ], [ 361850.789399996399879, 256760.280900001525879 ], [ 361851.122919402259868, 256760.296351604658412 ], [ 361851.449234595464077, 256760.367008103756234 ], [ 361851.759272533701733, 256760.490904927719384 ], [ 361852.044412756396923, 256760.664597182971193 ], [ 361852.296727072331123, 256760.883255437162006 ], [ 361852.509199999272823, 256761.140799999237061 ], [ 361853.277016579406336, 256762.21461959296721 ], [ 361854.217749989125878, 256763.140714335662778 ], [ 361855.303478408546653, 256763.891596896341071 ], [ 361856.501976434490643, 256764.444980400294298 ], [ 361857.777671559713781, 256764.784439923765603 ], [ 361859.092699997127056, 256764.899900000542402 ], [ 361860.28082259761868, 256764.922799619729631 ], [ 361861.458646597340703, 256764.765032918629004 ], [ 361862.598859594843816, 256764.430258327920455 ], [ 361863.675021345203277, 256763.926238890358945 ], [ 361864.662176879006438, 256763.264662244473584 ], [ 361865.537435180158354, 256762.460869601665763 ], [ 361866.280500002205372, 256761.533500000834465 ], [ 361866.396829471399542, 256761.326074483949924 ], [ 361866.546570286795031, 256761.141316321329214 ], [ 361866.725406577636022, 256760.984550663328264 ], [ 361866.928183875395916, 256760.860295852704439 ], [ 361867.149057677248493, 256760.772133195598144 ], [ 361867.381661897990853, 256760.72260374025791 ], [ 361867.619292355084326, 256760.71313503824058 ], [ 361867.855099998414516, 256760.743999999016523 ], [ 361882.54280000180006, 256760.056000001728535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105303130100", "MAP": "A9-143-T70", "PARCEL_NAM": "186", "ACRE": null, "LONGITUDE": -64.94388474, "LATITUDE": 18.33911945, "OBJECTID_1": 11021, "PARCEL_NO_": "105303130100", "Tax_Legal_": "ALTONA 175,177,186&193-2 KRONP.QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 776900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 624.37175545100001, "SHAPE_Area": 20604.7700382 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357410.083999998867512, 256574.839099999517202 ], [ 357388.41610000282526, 256562.629399999976158 ], [ 357385.183600001037121, 256563.447299998253584 ], [ 357358.197700001299381, 256607.556099999696016 ], [ 357361.589800000190735, 256611.754200000315905 ], [ 357368.98309999704361, 256620.21000000089407 ], [ 357459.095399998128414, 256690.286200001835823 ], [ 357471.92620000243187, 256698.6239 ], [ 357547.34740000218153, 256742.9375 ], [ 357550.568999998271465, 256743.386100001633167 ], [ 357552.997000001370907, 256742.350499998778105 ], [ 357597.975299999117851, 256668.624800000339746 ], [ 357598.846400000154972, 256661.032499998807907 ], [ 357591.677699998021126, 256650.630300000309944 ], [ 357528.309799998998642, 256611.270399998873472 ], [ 357511.416799999773502, 256606.488099999725819 ], [ 357461.545900002121925, 256591.936599999666214 ], [ 357438.218599997460842, 256585.201799999922514 ], [ 357410.083999998867512, 256574.839099999517202 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105303130100", "MAP": "A9-143-T70", "PARCEL_NAM": "175", "ACRE": "0.23", "LONGITUDE": -64.94455511, "LATITUDE": 18.33868973, "OBJECTID_1": 11021, "PARCEL_NO_": "105303130100", "Tax_Legal_": "ALTONA 175,177,186&193-2 KRONP.QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 776900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.01103527800001, "SHAPE_Area": 811.96778763299994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357347.197300001978874, 256598.72859999909997 ], [ 357353.466600000858307, 256603.742499999701977 ], [ 357354.202100001275539, 256603.301500000059605 ], [ 357380.370899997651577, 256560.452599998563528 ], [ 357380.392499998211861, 256557.919700000435114 ], [ 357362.74889999628067, 256546.58729999884963 ], [ 357356.118600003421307, 256567.642400000244379 ], [ 357347.197300001978874, 256598.72859999909997 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105303130100", "MAP": "A9-143-T70", "PARCEL_NAM": "177", "ACRE": null, "LONGITUDE": -64.94473741, "LATITUDE": 18.33872616, "OBJECTID_1": 11021, "PARCEL_NO_": "105303130100", "Tax_Legal_": "ALTONA 175,177,186&193-2 KRONP.QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 776900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.3504295, "SHAPE_Area": 566.81281409600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357331.170699998736382, 256582.951999999582767 ], [ 357340.476099997758865, 256591.7516999989748 ], [ 357347.197300001978874, 256598.72859999909997 ], [ 357356.118600003421307, 256567.642400000244379 ], [ 357338.457099996507168, 256558.420800000429153 ], [ 357331.170699998736382, 256582.951999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105303130100", "MAP": "A9-198-T73", "PARCEL_NAM": "REM 193-1", "ACRE": null, "LONGITUDE": -64.94499137, "LATITUDE": 18.33840421, "OBJECTID_1": 11021, "PARCEL_NO_": "105303130100", "Tax_Legal_": "ALTONA 175,177,186&193-2 KRONP.QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 776900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.51387767, "SHAPE_Area": 743.43349857099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357303.656000003218651, 256558.082899998873472 ], [ 357309.837200000882149, 256564.922899998724461 ], [ 357315.967699997127056, 256569.827300000935793 ], [ 357317.670900002121925, 256537.352400001138449 ], [ 357335.379299998283386, 256541.085999999195337 ], [ 357338.689000003039837, 256531.191599998623133 ], [ 357330.668999999761581, 256526.059799998998642 ], [ 357325.04280000180006, 256523.902800001204014 ], [ 357318.597699999809265, 256523.216699998825788 ], [ 357312.931999996304512, 256525.703499998897314 ], [ 357309.679799996316433, 256528.843299999833107 ], [ 357306.405900001525879, 256534.515999998897314 ], [ 357303.094400003552437, 256544.621399998664856 ], [ 357303.656000003218651, 256558.082899998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105303130200", "MAP": "A9-143-T70", "PARCEL_NAM": "99", "ACRE": "0.12", "LONGITUDE": -64.94467376, "LATITUDE": 18.33849723, "OBJECTID_1": 11022, "PARCEL_NO_": "105303130200", "Tax_Legal_": "ALTONA & WELGUNST 99 KRONP QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 76800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 87.068822902999997, "SHAPE_Area": 458.53768734599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357345.105400003492832, 256535.254900000989437 ], [ 357338.457099996507168, 256558.420800000429153 ], [ 357356.118600003421307, 256567.642400000244379 ], [ 357362.74889999628067, 256546.58729999884963 ], [ 357345.105400003492832, 256535.254900000989437 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303140200", "MAP": "D9-1515-T80", "PARCEL_NAM": "210-3A", "ACRE": "0.70", "LONGITUDE": -64.94465787, "LATITUDE": 18.33794013, "OBJECTID_1": 11024, "PARCEL_NO_": "105303140200", "Tax_Legal_": "ALTONA & WELGUNST 210-3A CROWN PRINCE QTR.", "Name": "GORDON COFFELT, LINDON CORP.", "Address": "7003 Estate Louisenhoj", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 391100, "Improved_V": 1856400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.043222222, "SHAPE_Area": 3139.6563282299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357394.72860000282526, 256501.552999999374151 ], [ 357317.559900000691414, 256455.64469999819994 ], [ 357315.041400000452995, 256461.373799998313189 ], [ 357312.9037000015378, 256471.029899999499321 ], [ 357312.470899999141693, 256485.169799998402596 ], [ 357314.879100002348423, 256486.456000000238419 ], [ 357314.853900000452995, 256489.411100000143051 ], [ 357318.025200001895428, 256495.769900001585484 ], [ 357326.032600000500679, 256502.379299998283386 ], [ 357331.448499999940395, 256505.575699999928474 ], [ 357337.273199997842312, 256495.718400001525879 ], [ 357345.86089999973774, 256500.738899998366833 ], [ 357340.972499996423721, 256508.005300000309944 ], [ 357342.4070999994874, 256512.043499998748302 ], [ 357352.50959999859333, 256518.005899999290705 ], [ 357355.707900002598763, 256521.198399998247623 ], [ 357381.353399999439716, 256539.773499999195337 ], [ 357383.777800001204014, 256539.160000000149012 ], [ 357386.223700001835823, 256536.013700000941753 ], [ 357387.859700001776218, 256533.282800000160933 ], [ 357389.529899999499321, 256526.541499998420477 ], [ 357394.72860000282526, 256501.552999999374151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303140300", "MAP": "A9-197-T73", "PARCEL_NAM": "209", "ACRE": "150 sq ft", "LONGITUDE": -64.94464348, "LATITUDE": 18.33813, "OBJECTID_1": 11025, "PARCEL_NO_": "105303140300", "Tax_Legal_": "ALTONA&WELGUNST 204,205,206,207- 1,209 & 210-1", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 288300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 47.165220492800003, "SHAPE_Area": 114.975402191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357331.448499999940395, 256505.575699999928474 ], [ 357342.4070999994874, 256512.043499998748302 ], [ 357340.972499996423721, 256508.005300000309944 ], [ 357345.86089999973774, 256500.738899998366833 ], [ 357337.273199997842312, 256495.718400001525879 ], [ 357331.448499999940395, 256505.575699999928474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402030400", "MAP": "B9-163-T67", "PARCEL_NAM": "21-5", "ACRE": "0.53", "LONGITUDE": -65.00445815, "LATITUDE": 18.35791697, "OBJECTID_1": 1501, "PARCEL_NO_": "102402030400", "Tax_Legal_": "HOPE 21-5 WEST END QTR", "Name": "PARROTT, ROY E.", "Address": "PO Box 337", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 64200, "Improved_V": 159000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.28977270600001, "SHAPE_Area": 2305.47172267 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351045.575300000607967, 258640.198300000280142 ], [ 351014.056999996304512, 258627.657999999821186 ], [ 351012.680100001394749, 258630.654899999499321 ], [ 350993.654799997806549, 258675.266800001263618 ], [ 351024.222800001502037, 258683.960799999535084 ], [ 351028.245300002396107, 258685.049100000411272 ], [ 351038.252199999988079, 258688.72239999845624 ], [ 351056.071800000965595, 258648.223299998790026 ], [ 351057.76519999653101, 258645.048300001770258 ], [ 351045.575300000607967, 258640.198300000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402030300", "MAP": "B9-163-T67", "PARCEL_NAM": "21-6", "ACRE": "0.53", "LONGITUDE": -65.00479304, "LATITUDE": 18.35773351, "OBJECTID_1": 1500, "PARCEL_NO_": "102402030300", "Tax_Legal_": "HOPE 21-6 WEST END QTR", "Name": "THOMAS, ANTONIO", "Address": "PO Box 306691", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 64200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.80072465200001, "SHAPE_Area": 2129.35872311 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351002.363499999046326, 258623.005499999970198 ], [ 350961.731600001454353, 258606.839200001209974 ], [ 350961.141099996864796, 258609.723400000482798 ], [ 350960.311200000345707, 258613.776799999177456 ], [ 350961.002400003373623, 258627.292399998754263 ], [ 350961.767399996519089, 258632.153900001198053 ], [ 350962.544900000095367, 258635.53770000115037 ], [ 350965.681999996304512, 258645.907000001519918 ], [ 350973.622900001704693, 258660.326299998909235 ], [ 350975.212099999189377, 258663.083599999547005 ], [ 350981.617700003087521, 258668.41330000013113 ], [ 350984.022200003266335, 258670.121700000017881 ], [ 350993.654799997806549, 258675.266800001263618 ], [ 351012.680100001394749, 258630.654899999499321 ], [ 351014.056999996304512, 258627.657999999821186 ], [ 351012.442100003361702, 258627.015500001609325 ], [ 351002.363499999046326, 258623.005499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402034800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00431925, "LATITUDE": 18.35747655, "OBJECTID_1": 1538, "PARCEL_NO_": "102402034800", "Tax_Legal_": "HOPE 20D-2 WEST END QTR.", "Name": "WALTERS, WESTON", "Address": "PO Box 185", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 68800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 183.25951130499999, "SHAPE_Area": 1751.8812799699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351049.880199998617172, 258606.488299999386072 ], [ 351027.627099998295307, 258568.309399999678135 ], [ 351016.234399996697903, 258580.459499999880791 ], [ 351018.520300000905991, 258596.099199999123812 ], [ 351020.935099996626377, 258608.006599999964237 ], [ 351015.343199998140335, 258620.218499999493361 ], [ 351012.442100003361702, 258627.015500001609325 ], [ 351045.575300000607967, 258640.198300000280142 ], [ 351048.843699999153614, 258633.499800000339746 ], [ 351056.434399999678135, 258617.521000001579523 ], [ 351049.880199998617172, 258606.488299999386072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00466387, "LATITUDE": 18.35743192, "OBJECTID_1": 1499, "PARCEL_NO_": "102402030200", "Tax_Legal_": "HOPE 20D WEST END QTR", "Name": "MODESTE, MARIE A. & THOMAS", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 70200, "Improved_V": 85000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.32600569499999, "SHAPE_Area": 1776.2119180899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351018.520300000905991, 258596.099199999123812 ], [ 351016.234399996697903, 258580.459499999880791 ], [ 351007.289499998092651, 258589.252300001680851 ], [ 351001.632700003683567, 258590.683600001037121 ], [ 350995.999300003051758, 258589.370900001376867 ], [ 350990.389300003647804, 258585.3141999989748 ], [ 350986.436800003051758, 258575.99379999935627 ], [ 350984.032300002872944, 258574.285399999469519 ], [ 350980.812399998307228, 258573.625700000673532 ], [ 350979.170999996364117, 258576.989799998700619 ], [ 350977.536799997091293, 258579.509500000625849 ], [ 350972.637800000607967, 258586.646600000560284 ], [ 350968.555900000035763, 258592.523800000548363 ], [ 350966.101000003516674, 258596.725600000470877 ], [ 350965.280299998819828, 258598.407600000500679 ], [ 350964.456000000238419, 258600.511799998581409 ], [ 350962.821800000965595, 258603.031599998474121 ], [ 350961.993900001049042, 258605.557900000363588 ], [ 350961.731600001454353, 258606.839200001209974 ], [ 351002.363499999046326, 258623.005499999970198 ], [ 351012.442100003361702, 258627.015500001609325 ], [ 351015.343199998140335, 258620.218499999493361 ], [ 351020.935099996626377, 258608.006599999964237 ], [ 351018.520300000905991, 258596.099199999123812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402034500", "MAP": "D9-2270-T83", "PARCEL_NAM": "20C", "ACRE": "1.59", "LONGITUDE": -65.00377441000001, "LATITUDE": 18.35755128, "OBJECTID_1": 1535, "PARCEL_NO_": "102402034500", "Tax_Legal_": "HOPE ESTATE 20C WEST END QTR. #5", "Name": "MILLER, KEITH L.", "Address": "75 Hunnewell Ave", "City": "Newton", "State": "Massachusetts", "Zip": 2458, "Country": "United States", "Land_Value": 170200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.91388861600001, "SHAPE_Area": 1387.0889998299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351046.271200001239777, 258556.851799998432398 ], [ 351042.252199999988079, 258555.341299999505281 ], [ 351039.025200001895428, 258555.52589999884367 ], [ 351033.343199998140335, 258559.912399999797344 ], [ 351027.627099998295307, 258568.309399999678135 ], [ 351049.880199998617172, 258606.488299999386072 ], [ 351056.434399999678135, 258617.521000001579523 ], [ 351074.928599998354912, 258578.589800000190735 ], [ 351065.460900001227856, 258576.00730000063777 ], [ 351046.271200001239777, 258556.851799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402030500", "MAP": "B9-163-T67", "PARCEL_NAM": "21-4", "ACRE": "0.54", "LONGITUDE": -65.00403524, "LATITUDE": 18.35803352, "OBJECTID_1": 1502, "PARCEL_NO_": "102402030500", "Tax_Legal_": "HOPE 21-4 WEST END QTR", "Name": "DANIEL, FERNELLA", "Address": "7757 Estate Tutu Vly", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 69400, "Improved_V": 76900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.15195951300001, "SHAPE_Area": 2121.5121002699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351095.881399996578693, 258661.195999998599291 ], [ 351057.76519999653101, 258645.048300001770258 ], [ 351056.071800000965595, 258648.223299998790026 ], [ 351038.252199999988079, 258688.72239999845624 ], [ 351052.361000001430511, 258693.901399999856949 ], [ 351066.050300002098083, 258696.124299999326468 ], [ 351078.951300002634525, 258696.229899998754263 ], [ 351109.438400000333786, 258666.585400000214577 ], [ 351095.881399996578693, 258661.195999998599291 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402030800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00360474, "LATITUDE": 18.35819474, "OBJECTID_1": 1505, "PARCEL_NO_": "102402030800", "Tax_Legal_": "HOPE 21-3 WEST END QTR", "Name": "PERKINS, ALEXIUS", "Address": "PO Box 305230", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 54900, "Improved_V": 92500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.04700340100001, "SHAPE_Area": 1400.9439705699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351145.207299999892712, 258680.710700001567602 ], [ 351109.438400000333786, 258666.585400000214577 ], [ 351078.951300002634525, 258696.229899998754263 ], [ 351081.359499998390675, 258697.516199998557568 ], [ 351082.946900002658367, 258700.484499998390675 ], [ 351112.730099998414516, 258706.638900000602007 ], [ 351145.207299999892712, 258680.710700001567602 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.97848763, "LATITUDE": 18.36075564, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 478.77922288000002, "SHAPE_Area": 1198.06163524 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353776.848200000822544, 258998.748599998652935 ], [ 353780.068099997937679, 259009.44819999858737 ], [ 353784.095100000500679, 259024.750900000333786 ], [ 353791.746399998664856, 259043.140900000929832 ], [ 353798.444799996912479, 259057.218800000846386 ], [ 353803.847599998116493, 259051.833200000226498 ], [ 353802.26519999653101, 259050.569099999964237 ], [ 353800.692199997603893, 259045.912200000137091 ], [ 353798.844200000166893, 259042.83049999922514 ], [ 353796.813900001347065, 259039.444899998605251 ], [ 353794.331600002944469, 259035.305500000715256 ], [ 353793.524899996817112, 259032.631099998950958 ], [ 353792.577899999916553, 259029.491599999368191 ], [ 353788.842000000178814, 259017.106499999761581 ], [ 353788.537000000476837, 259014.475600000470877 ], [ 353788.034699998795986, 259010.142599999904633 ], [ 353783.950188838760369, 259002.033726903027855 ], [ 353779.288991177571006, 258994.242046039376874 ], [ 353774.075599998235703, 258986.808499999344349 ], [ 353770.509145742456894, 258983.626691005512839 ], [ 353766.605602929776069, 258980.868819010502193 ], [ 353762.415100000798702, 258978.570300001651049 ], [ 353759.157235879043583, 258977.009392865409609 ], [ 353755.801899999380112, 258975.670800000429153 ], [ 353749.728357280837372, 258973.877687864442123 ], [ 353743.486100003123283, 258972.811200000345707 ], [ 353740.955163685488515, 258972.568456862674793 ], [ 353738.497388023126405, 258971.917379549122415 ], [ 353736.178199999034405, 258970.875300001353025 ], [ 353734.586730837007053, 258969.812539321923396 ], [ 353733.197473162261304, 258968.496409590996336 ], [ 353732.050290793238673, 258966.964676269650226 ], [ 353731.178101359691937, 258965.261291419563349 ], [ 353730.605931753234472, 258963.435132528102258 ], [ 353730.350199997425079, 258961.538600001484156 ], [ 353729.555838612955995, 258958.23270222323481 ], [ 353728.226408304064535, 258955.103391566983191 ], [ 353726.398420400568284, 258952.23661108117085 ], [ 353724.122078563843388, 258949.711093713995069 ], [ 353721.459899999201298, 258947.596200000494719 ], [ 353716.542502659314778, 258945.204816507612122 ], [ 353711.813498799980152, 258942.459632705693366 ], [ 353707.298299998044968, 258939.375399999320507 ], [ 353705.469744976027869, 258937.224857387132943 ], [ 353704.003480890882201, 258934.812697229033802 ], [ 353702.936254010186531, 258932.19937103803386 ], [ 353702.294810269144364, 258929.450371779646957 ], [ 353702.095224987133406, 258926.634592542803148 ], [ 353702.342500001192093, 258923.822599999606609 ], [ 353701.998776995344087, 258918.006935252487892 ], [ 353702.442175198288169, 258912.198019691946683 ], [ 353703.664599999785423, 258906.501899998635054 ], [ 353705.100042949372437, 258902.401981898088707 ], [ 353706.966012222750578, 258898.479229858552571 ], [ 353709.241075106954668, 258894.778701009054203 ], [ 353711.899099998176098, 258891.3429000005126 ], [ 353714.916403867944609, 258888.594819920108421 ], [ 353717.435053132358007, 258885.383516033238266 ], [ 353719.384999997913837, 258881.798300001770258 ], [ 353720.189094441535417, 258879.086026706529083 ], [ 353720.590104568109382, 258876.285636522894492 ], [ 353720.579499997198582, 258873.456700000911951 ], [ 353714.5320999994874, 258877.260000001639128 ], [ 353714.638881352148019, 258879.106484352028929 ], [ 353714.436739066964947, 258880.944974278565496 ], [ 353713.931316129863262, 258882.724146661465056 ], [ 353713.136721882154234, 258884.394334284152137 ], [ 353712.075138145592064, 258885.90891233884031 ], [ 353710.776199996471405, 258887.225600000470877 ], [ 353706.895830874447711, 258891.723626166465692 ], [ 353703.514447695575655, 258896.607861184427748 ], [ 353700.670199997723103, 258901.82319999858737 ], [ 353699.291504110849928, 258906.473947416583542 ], [ 353698.359172248223331, 258911.234305721649434 ], [ 353697.881574915838428, 258916.06153626125888 ], [ 353697.862999998033047, 258920.912300001829863 ], [ 353697.344976332213264, 258923.413594456651481 ], [ 353697.109600000083447, 258925.957100000232458 ], [ 353697.290798831149004, 258929.772591167391511 ], [ 353698.105570300773252, 258933.504474514367757 ], [ 353699.531108514289372, 258937.048292605759343 ], [ 353701.527511885447893, 258940.304852054454386 ], [ 353704.038900002837181, 258943.18299999833107 ], [ 353708.811247361591086, 258946.476336870022351 ], [ 353713.810691600432619, 258949.413499508635141 ], [ 353719.01070000231266, 258951.978900000452995 ], [ 353720.8951852293103, 258953.543274455412757 ], [ 353722.510031625279225, 258955.384693235479062 ], [ 353723.815004017786123, 258957.457275938533712 ], [ 353724.777587989810854, 258959.709382530796574 ], [ 353725.373800002038479, 258962.084899999201298 ], [ 353725.791085076401941, 258964.805202830204507 ], [ 353726.66015390062239, 258967.416503981803544 ], [ 353727.956223561079241, 258969.844337946648011 ], [ 353729.642334519478027, 258972.019471083156532 ], [ 353731.670404574368149, 258973.879875925689703 ], [ 353733.982600003480911, 258975.372499998658895 ], [ 353736.900809576385655, 258976.656022639857838 ], [ 353739.98221595789073, 258977.473526275192853 ], [ 353743.152900002896786, 258977.805399999022484 ], [ 353747.096423364651855, 258978.424404337012675 ], [ 353750.976099997758865, 258979.363899998366833 ], [ 353755.6735827998491, 258980.970090261253063 ], [ 353760.183399997651577, 258983.0456000007689 ], [ 353764.254261497990228, 258985.297375056688907 ], [ 353768.012020929483697, 258988.039937419205671 ], [ 353771.397834377828985, 258991.230340458074352 ], [ 353774.358682345598936, 258994.818624667736003 ], [ 353776.848200000822544, 258998.748599998652935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": "D9-627-T67", "PARCEL_NAM": "164", "ACRE": "0.12", "LONGITUDE": -64.89917989, "LATITUDE": 18.34576235, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.266093926, "SHAPE_Area": 663.62547201300004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362166.226199999451637, 257407.260299999266863 ], [ 362158.406400002539158, 257377.016100000590086 ], [ 362158.123700000345707, 257375.922899998724461 ], [ 362135.915899999439716, 257382.561900001019239 ], [ 362136.572999998927116, 257384.225699998438358 ], [ 362147.011699996888638, 257410.657000001519918 ], [ 362166.226199999451637, 257407.260299999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102901010600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9304614, "LATITUDE": 18.35614815, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 382.95628405299999, "SHAPE_Area": 1128.64742948 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358869.178800001740456, 258518.709300000220537 ], [ 358870.904700003564358, 258505.424499999731779 ], [ 358871.039599999785423, 258489.593600001186132 ], [ 358869.453900001943111, 258486.414200000464916 ], [ 358860.589900001883507, 258485.708399999886751 ], [ 358857.344800002872944, 258488.003899998962879 ], [ 358848.363899998366833, 258501.018199998885393 ], [ 358842.67119999974966, 258506.671100001782179 ], [ 358832.943300001323223, 258512.713199999183416 ], [ 358824.818999998271465, 258519.823899999260902 ], [ 358817.533399999141693, 258523.141800001263618 ], [ 358786.139399997889996, 258516.763099998235703 ], [ 358771.633000001311302, 258515.800000000745058 ], [ 358767.547399997711182, 258522.099399998784065 ], [ 358785.279100000858307, 258523.088899999856949 ], [ 358816.673199996352196, 258529.467500001192093 ], [ 358823.139899998903275, 258527.620600000023842 ], [ 358828.006499998271465, 258524.282900001853704 ], [ 358833.686700001358986, 258520.107599999755621 ], [ 358848.290200002491474, 258509.672400001436472 ], [ 358854.80179999768734, 258502.548500001430511 ], [ 358858.896300002932549, 258495.193799998611212 ], [ 358862.954899996519089, 258492.060600001364946 ], [ 358864.569300003349781, 258491.862700000405312 ], [ 358866.169299997389317, 258493.353399999439716 ], [ 358861.893200002610683, 258522.027199998497963 ], [ 358854.479900002479553, 258540.331599999219179 ], [ 358848.770999997854233, 258547.884300000965595 ], [ 358843.895400002598763, 258552.277300000190735 ], [ 358848.699100002646446, 258556.327399998903275 ], [ 358854.388199999928474, 258551.096700001507998 ], [ 358862.561099998652935, 258538.286800000816584 ], [ 358867.541000001132488, 258521.651200000196695 ], [ 358869.178800001740456, 258518.709300000220537 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105303130100", "MAP": "A9-198-T73", "PARCEL_NAM": "193-2", "ACRE": "0.37", "LONGITUDE": -64.94487942000001, "LATITUDE": 18.33853291, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.43324692600001, "SHAPE_Area": 865.73787320500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357315.967699997127056, 256569.827300000935793 ], [ 357317.774800002574921, 256571.272900000214577 ], [ 357325.870999999344349, 256577.940400000661612 ], [ 357331.170699998736382, 256582.951999999582767 ], [ 357338.457099996507168, 256558.420800000429153 ], [ 357345.105400003492832, 256535.254900000989437 ], [ 357338.689000003039837, 256531.191599998623133 ], [ 357335.379299998283386, 256541.085999999195337 ], [ 357317.670900002121925, 256537.352400001138449 ], [ 357315.967699997127056, 256569.827300000935793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -65.00438054, "LATITUDE": 18.35715005, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 294.208803956, "SHAPE_Area": 1250.6646695300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351007.289499998092651, 258589.252300001680851 ], [ 351016.234399996697903, 258580.459499999880791 ], [ 351027.627099998295307, 258568.309399999678135 ], [ 351033.343199998140335, 258559.912399999797344 ], [ 351039.025200001895428, 258555.52589999884367 ], [ 351042.252199999988079, 258555.341299999505281 ], [ 351046.271200001239777, 258556.851799998432398 ], [ 351065.460900001227856, 258576.00730000063777 ], [ 351074.928599998354912, 258578.589800000190735 ], [ 351078.1925999969244, 258571.718899998813868 ], [ 351068.747299998998642, 258568.85700000077486 ], [ 351057.566799998283386, 258556.099899999797344 ], [ 351051.999899998307228, 258546.977299999445677 ], [ 351049.62950000166893, 258541.258400000631809 ], [ 351033.470899999141693, 258544.925799999386072 ], [ 351026.122400000691414, 258555.631400000303984 ], [ 351022.047700002789497, 258560.664299998432398 ], [ 351017.164800003170967, 258565.901700001209974 ], [ 351016.342299997806549, 258567.794799998402596 ], [ 351002.519900001585484, 258581.191700000315905 ], [ 350997.694700002670288, 258579.674499999731779 ], [ 350994.537699997425079, 258571.627099998295307 ], [ 350994.562899999320507, 258568.671999998390675 ], [ 350991.42400000244379, 258558.513799998909235 ], [ 350990.649999998509884, 258554.707800000905991 ], [ 350980.812399998307228, 258573.625700000673532 ], [ 350984.032300002872944, 258574.285399999469519 ], [ 350986.436800003051758, 258575.99379999935627 ], [ 350990.389300003647804, 258585.3141999989748 ], [ 350995.999300003051758, 258589.370900001376867 ], [ 351001.632700003683567, 258590.683600001037121 ], [ 351007.289499998092651, 258589.252300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402034500", "MAP": "D9-2270-T83", "PARCEL_NAM": "20C", "ACRE": "1.59", "LONGITUDE": -65.00377441000001, "LATITUDE": 18.35755128, "OBJECTID_1": 1535, "PARCEL_NO_": "102402034500", "Tax_Legal_": "HOPE ESTATE 20C WEST END QTR. #5", "Name": "MILLER, KEITH L.", "Address": "75 Hunnewell Ave", "City": "Newton", "State": "Massachusetts", "Zip": 2458, "Country": "United States", "Land_Value": 170200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 277.01840756600001, "SHAPE_Area": 4672.8718445799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351127.460600003600121, 258586.647199999541044 ], [ 351078.1925999969244, 258571.718899998813868 ], [ 351048.843699999153614, 258633.499800000339746 ], [ 351045.575300000607967, 258640.198300000280142 ], [ 351057.76519999653101, 258645.048300001770258 ], [ 351095.881399996578693, 258661.195999998599291 ], [ 351099.584600001573563, 258662.668099999427795 ], [ 351103.489500001072884, 258655.47859999909997 ], [ 351130.565399996936321, 258600.815900001674891 ], [ 351136.306699998676777, 258589.463799998164177 ], [ 351127.460600003600121, 258586.647199999541044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102402035100", "MAP": "D9-7301-T003", "PARCEL_NAM": "20B-1", "ACRE": "1.010", "LONGITUDE": -65.00321327, "LATITUDE": 18.35786188, "OBJECTID_1": 1541, "PARCEL_NO_": "102402035100", "Tax_Legal_": "20B-1 ESTATE HOPE WEST END QTR.", "Name": "PERKINS, ALEXIUS G", "Address": "PO Box 305230", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.10442801799999, "SHAPE_Area": 3357.9669743600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351199.302000001072884, 258635.885999999940395 ], [ 351121.169799998402596, 258619.784400001168251 ], [ 351103.489500001072884, 258655.47859999909997 ], [ 351099.584600001573563, 258662.668099999427795 ], [ 351109.438400000333786, 258666.585400000214577 ], [ 351145.207299999892712, 258680.710700001567602 ], [ 351152.512800000607967, 258674.878299999982119 ], [ 351178.501800000667572, 258653.137200001627207 ], [ 351199.302000001072884, 258635.885999999940395 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703041900", "MAP": "D9-8951-T014", "PARCEL_NAM": "37F REM", "ACRE": "0.23", "LONGITUDE": -64.96501813, "LATITUDE": 18.35042567, "OBJECTID_1": 3356, "PARCEL_NO_": "102703041900", "Tax_Legal_": "37F REM LINDBERG BAY No.4A SOUTHSIDE QTR", "Name": "JANET L GEORGE TRUST", "Address": "PO Box 302071", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47500, "Improved_V": 342400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.35389576, "SHAPE_Area": 1512.23570935 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355217.112800002098083, 257851.903999999165535 ], [ 355170.823299996554852, 257854.447000000625849 ], [ 355168.755900003015995, 257855.775699999183416 ], [ 355153.39639999717474, 257860.294100001454353 ], [ 355142.090000003576279, 257862.3125 ], [ 355138.852200001478195, 257863.763599999248981 ], [ 355138.826999999582767, 257866.718699999153614 ], [ 355142.039599999785423, 257868.222699999809265 ], [ 355150.907300002872944, 257868.506299998611212 ], [ 355154.938900001347065, 257868.539299998432398 ], [ 355163.001999996602535, 257868.60530000180006 ], [ 355167.803900003433228, 257872.866500001400709 ], [ 355168.583200000226498, 257876.039299998432398 ], [ 355168.089199997484684, 257878.629599999636412 ], [ 355188.180799998342991, 257876.613499999046326 ], [ 355218.758500002324581, 257881.413100000470877 ], [ 355218.565600000321865, 257877.503800000995398 ], [ 355217.234099999070168, 257854.041299998760223 ], [ 355217.112800002098083, 257851.903999999165535 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703044500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.96593647, "LATITUDE": 18.3493407, "OBJECTID_1": 3381, "PARCEL_NO_": "102703044500", "Tax_Legal_": "LINDBERG BAY 38 HJ S S QTR", "Name": "ST LUCE, KATHLEEN & KELLEN", "Address": "PO Box 8614", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27800, "Improved_V": 149100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.85794613499999, "SHAPE_Area": 1892.0255000499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355114.039200000464916, 257747.459100000560284 ], [ 355119.07660000026226, 257724.068900000303984 ], [ 355110.993699997663498, 257726.324799999594688 ], [ 355099.710799999535084, 257725.599199999123812 ], [ 355088.465499997138977, 257720.440900001674891 ], [ 355081.257299996912479, 257714.682399999350309 ], [ 355066.509900003671646, 257742.003800000995398 ], [ 355060.779399998486042, 257752.089400000870228 ], [ 355072.006599999964237, 257759.358500000089407 ], [ 355080.850900001823902, 257762.386199999600649 ], [ 355109.030500002205372, 257767.471999999135733 ], [ 355114.039200000464916, 257747.459100000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402097800", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-28", "ACRE": "0.14", "LONGITUDE": -64.92199925, "LATITUDE": 18.3419121, "OBJECTID_1": 12665, "PARCEL_NO_": "105402097800", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-28 8 & 10 NEW QUARTER", "Name": "KING, CYNTHIA & MICHAEL A", "Address": "Po Box 7574", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 14600, "Improved_V": 68200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 99.303179735300006, "SHAPE_Area": 573.89612057299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359755.939999997615814, 256963.800500001758337 ], [ 359750.382299996912479, 256932.175799999386072 ], [ 359745.437799997627735, 256933.460499998182058 ], [ 359740.531099997460842, 256934.882800001651049 ], [ 359735.666000001132488, 256936.441599998623133 ], [ 359730.846400000154972, 256938.13569999858737 ], [ 359739.101899996399879, 256966.587699998170137 ], [ 359745.452500000596046, 256965.14750000089407 ], [ 359748.021700002253056, 256964.476399999111891 ], [ 359750.638800002634525, 256964.026299998164177 ], [ 359753.284599997103214, 256963.800500001758337 ], [ 359755.939999997615814, 256963.800500001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402097900", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-29", "ACRE": "0.11", "LONGITUDE": -64.92216304, "LATITUDE": 18.34196457, "OBJECTID_1": 12666, "PARCEL_NO_": "105402097900", "Tax_Legal_": "ROSS-MADAMBERG 2-29 # 8&10 NEW QTR", "Name": "MILLER, G.,THOMAS,F.,BRATHWAITE M.,& RIVERA,R.", "Address": "1529 Ross Taanenberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12000, "Improved_V": 64600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.367289116400002, "SHAPE_Area": 503.666806291 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359739.101899996399879, 256966.587699998170137 ], [ 359730.846400000154972, 256938.13569999858737 ], [ 359730.045000001788139, 256938.432199999690056 ], [ 359729.2449000030756, 256938.732400000095367 ], [ 359728.446299999952316, 256939.036299999803305 ], [ 359727.649099998176098, 256939.344000000506639 ], [ 359724.487800002098083, 256940.572599999606609 ], [ 359721.326700001955032, 256941.801399998366833 ], [ 359718.165500000119209, 256943.030299998819828 ], [ 359715.004399999976158, 256944.259399998933077 ], [ 359720.911700002849102, 256970.712999999523163 ], [ 359739.101899996399879, 256966.587699998170137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402090200", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-30", "ACRE": "0.14", "LONGITUDE": -64.92235158, "LATITUDE": 18.34201655, "OBJECTID_1": 12578, "PARCEL_NO_": "105402090200", "Tax_Legal_": "2-30 ROSS-MADAMBERG NO.9&10 NEW QTR", "Name": "HARRISON, COSME", "Address": "PO BOX 10595", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14600, "Improved_V": 79500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.056148351100006, "SHAPE_Area": 606.04269471600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359720.911700002849102, 256970.712999999523163 ], [ 359715.004399999976158, 256944.259399998933077 ], [ 359709.105099998414516, 256946.553399998694658 ], [ 359703.205899998545647, 256948.848000001162291 ], [ 359697.306900002062321, 256951.143100000917912 ], [ 359691.408100001513958, 256953.4386 ], [ 359696.497599996626377, 256970.495200000703335 ], [ 359696.819499999284744, 256971.339600000530481 ], [ 359697.443800002336502, 256972.385099999606609 ], [ 359698.26349999755621, 256973.285500001162291 ], [ 359699.245899997651577, 256974.005100000649691 ], [ 359700.351599998772144, 256974.515099998563528 ], [ 359701.53660000115633, 256974.795099999755621 ], [ 359702.753700003027916, 256974.834100000560284 ], [ 359703.954199999570847, 256974.630300000309944 ], [ 359704.701499998569489, 256974.429499998688698 ], [ 359705.45099999755621, 256974.237199999392033 ], [ 359706.20269999653101, 256974.053300000727177 ], [ 359706.956399999558926, 256973.877900000661612 ], [ 359720.911700002849102, 256970.712999999523163 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402097700", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-27", "ACRE": "0.12", "LONGITUDE": -64.92153984, "LATITUDE": 18.34209153, "OBJECTID_1": 12664, "PARCEL_NO_": "105402097700", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-27 No.8 & 10 NEW QTR", "Name": "BENNETT, A. & V. C. & CORAN W. & GALEN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12500, "Improved_V": 65300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.568212121900004, "SHAPE_Area": 525.63624496199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359809.124799996614456, 256976.633600000292063 ], [ 359808.345499999821186, 256971.736800000071526 ], [ 359804.538699999451637, 256958.62950000166893 ], [ 359782.212499998509884, 256961.92850000038743 ], [ 359773.974200002849102, 256971.981899999082088 ], [ 359775.369199998676777, 256973.673500001430511 ], [ 359776.615000002086163, 256975.477899998426437 ], [ 359777.702399998903275, 256977.381900001317263 ], [ 359778.623499996960163, 256979.371700000017881 ], [ 359809.124799996614456, 256976.633600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402098900", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-1", "ACRE": "0.12", "LONGITUDE": -64.92260779, "LATITUDE": 18.34211659, "OBJECTID_1": 12674, "PARCEL_NO_": "105402098900", "Tax_Legal_": "2-1 ESTATE ROSS-MADAMBERG NO.8&10 NEW QTR", "Name": "ESTRADA, ANTONIO", "Address": "1 Ross-Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 66900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.8292497045, "SHAPE_Area": 510.11455153000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359666.281300000846386, 256963.222699999809265 ], [ 359674.787399999797344, 256988.560100000351667 ], [ 359688.293799996376038, 256981.099500000476837 ], [ 359689.085199996829033, 256980.578200001269579 ], [ 359689.967600002884865, 256979.739100001752377 ], [ 359690.665500000119209, 256978.741300001740456 ], [ 359691.151299998164177, 256977.624699998646975 ], [ 359691.4054000005126, 256976.433800000697374 ], [ 359691.417700000107288, 256975.2162000015378 ], [ 359691.187899999320507, 256974.020399998873472 ], [ 359686.653899997472763, 256958.825399998575449 ], [ 359686.368100002408028, 256958.164799999445677 ], [ 359685.835299998521805, 256957.489799998700619 ], [ 359685.135099999606609, 256956.990499999374151 ], [ 359684.323399998247623, 256956.706599999219179 ], [ 359683.464699998497963, 256956.660799998790026 ], [ 359682.627300001680851, 256956.856600001454353 ], [ 359678.540700003504753, 256958.447799999266863 ], [ 359674.454099997878075, 256960.039200000464916 ], [ 359670.367600001394749, 256961.630800001323223 ], [ 359666.281300000846386, 256963.222699999809265 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402095300", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-3", "ACRE": "0.10", "LONGITUDE": -64.92274898, "LATITUDE": 18.34218052, "OBJECTID_1": 12641, "PARCEL_NO_": "105402095300", "Tax_Legal_": "ROSS MADAMBERG 2-3 #8 & 10 NEW QTR", "Name": "GOODINGS (LIFE ESTATE), GLENDA LOUISE", "Address": "PO BOX 9219", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 9300, "Improved_V": 90200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 80.522860108499998, "SHAPE_Area": 355.41113731600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359674.787399999797344, 256988.560100000351667 ], [ 359666.281300000846386, 256963.222699999809265 ], [ 359663.195699997246265, 256964.424899999052286 ], [ 359660.110100001096725, 256965.627199999988079 ], [ 359657.024599999189377, 256966.829599998891354 ], [ 359653.9391999989748, 256968.0320999994874 ], [ 359663.260799996554852, 256994.146299999207258 ], [ 359665.556400001049042, 256993.2195999994874 ], [ 359667.818599998950958, 256992.214000001549721 ], [ 359670.044799998402596, 256991.131000000983477 ], [ 359672.232199996709824, 256989.971599999815226 ], [ 359674.787399999797344, 256988.560100000351667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402098200", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-5", "ACRE": "0.13", "LONGITUDE": -64.92289105, "LATITUDE": 18.34223856, "OBJECTID_1": 12669, "PARCEL_NO_": "105402098200", "Tax_Legal_": "2-5 ESTATE ROSS-MADAMBERG NO.8 & 10 NEW QTR", "Name": "GEORGE, HEZEKIAH E. & ALICE A.", "Address": "5 Pollyberg Gdns", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 15400, "Improved_V": 68700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 93.520153771699995, "SHAPE_Area": 541.02289242699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359663.260799996554852, 256994.146299999207258 ], [ 359653.9391999989748, 256968.0320999994874 ], [ 359649.766500003635883, 256969.658700000494719 ], [ 359645.593999996781349, 256971.285399999469519 ], [ 359641.421499997377396, 256972.912399999797344 ], [ 359637.249200001358986, 256974.539700001478195 ], [ 359639.821999996900558, 256989.054299999028444 ], [ 359643.695799998939037, 257000.88120000064373 ], [ 359660.75, 256995.056499999016523 ], [ 359661.380800001323223, 256994.837699998170137 ], [ 359662.00959999859333, 256994.613099999725819 ], [ 359662.63629999756813, 256994.382599998265505 ], [ 359663.260799996554852, 256994.146299999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402097600", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-26", "ACRE": "0.10", "LONGITUDE": -64.92149186, "LATITUDE": 18.34225445, "OBJECTID_1": 12663, "PARCEL_NO_": "105402097600", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-26 No.8 & 10 NEW QTR", "Name": "MILLS, ANGELLA M. & SAMUEL", "Address": "1000 Estate Ross Taarnberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10400, "Improved_V": 62500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.459140148, "SHAPE_Area": 586.12159194900005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359809.124799996614456, 256976.633600000292063 ], [ 359778.623499996960163, 256979.371700000017881 ], [ 359778.882700003683567, 256980.026299998164177 ], [ 359779.123999997973442, 256980.687600001692772 ], [ 359779.347000002861023, 256981.355399999767542 ], [ 359779.551700003445148, 256982.028999999165535 ], [ 359779.761399999260902, 256982.949599999934435 ], [ 359780.046999998390675, 256985.001400001347065 ], [ 359780.089699998497963, 256987.072500001639128 ], [ 359779.888999998569489, 256989.134300000965595 ], [ 359779.447700001299381, 256991.158300001174212 ], [ 359813.235600002110004, 257002.467099998146296 ], [ 359809.124799996614456, 256976.633600000292063 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402097300", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-23", "ACRE": "0.14", "LONGITUDE": -64.92186711, "LATITUDE": 18.34223754, "OBJECTID_1": 12660, "PARCEL_NO_": "105402097300", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-23 No.8&10 NEW QTR", "Name": "SAMUEL, ARNOLD R. & MAVIS", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13300, "Improved_V": 71100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.585694235000005, "SHAPE_Area": 637.61441808300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359767.587899997830391, 256994.995000001043081 ], [ 359768.863300003111362, 256994.096799999475479 ], [ 359769.983300000429153, 256993.011100001633167 ], [ 359770.920800000429153, 256991.764299999922514 ], [ 359771.652800001204014, 256990.386900000274181 ], [ 359772.16160000115633, 256988.912300001829863 ], [ 359772.43469999730587, 256987.376499999314547 ], [ 359772.465599998831749, 256985.816899999976158 ], [ 359772.253300003707409, 256984.271499998867512 ], [ 359772.196699999272823, 256984.026599999517202 ], [ 359771.484700001776218, 256982.052400000393391 ], [ 359770.548799999058247, 256980.174100000411272 ], [ 359769.401399999856949, 256978.416900001466274 ], [ 359768.058100000023842, 256976.80460000038147 ], [ 359766.537000000476837, 256975.358800001442432 ], [ 359764.858599998056889, 256974.098999999463558 ], [ 359763.045500002801418, 256973.042300000786781 ], [ 359762.264200001955032, 256972.668999999761581 ], [ 359759.960900001227856, 256972.007199998944998 ], [ 359757.602200001478195, 256971.582699999213219 ], [ 359755.212700001895428, 256971.399900000542402 ], [ 359752.816899999976158, 256971.460700001567602 ], [ 359750.439699999988079, 256971.764499999582767 ], [ 359748.105700001120567, 256972.308100000023842 ], [ 359747.43639999628067, 256972.511100001633167 ], [ 359743.14750000089407, 256973.483800001442432 ], [ 359751.353900000452995, 257004.450599998235703 ], [ 359767.587899997830391, 256994.995000001043081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402095700", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-7", "ACRE": ".11", "LONGITUDE": -64.92304851, "LATITUDE": 18.34228674, "OBJECTID_1": 12644, "PARCEL_NO_": "105402095700", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-7 No.8&10 NEW QTR.", "Name": "PENHA, DELANO & CABRERA, CHRISTANA", "Address": "2-7 ESTATE ROSS-MADAMBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10200, "Improved_V": 65400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 84.824040578099996, "SHAPE_Area": 404.20734144300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359643.695799998939037, 257000.88120000064373 ], [ 359639.821999996900558, 256989.054299999028444 ], [ 359637.249200001358986, 256974.539700001478195 ], [ 359633.187299996614456, 256976.124099999666214 ], [ 359629.125500001013279, 256977.708700001239777 ], [ 359625.063799999654293, 256979.293499998748302 ], [ 359621.002199999988079, 256980.878600001335144 ], [ 359630.531000003218651, 257005.377500001341105 ], [ 359643.695799998939037, 257000.88120000064373 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402095900", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-9", "ACRE": "0.13", "LONGITUDE": -64.92320091000001, "LATITUDE": 18.34235092, "OBJECTID_1": 12646, "PARCEL_NO_": "105402095900", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-9 No.8&10 NEW QTR.", "Name": "CALLWOOD, CAROL A. & RIVERA, M", "Address": "#2-9 ESTATE ROSS-MADAMBERG", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12100, "Improved_V": 88100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.572865170900002, "SHAPE_Area": 526.17356131400004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359630.531000003218651, 257005.377500001341105 ], [ 359621.002199999988079, 256980.878600001335144 ], [ 359616.434900000691414, 256982.661299999803305 ], [ 359611.867799997329712, 256984.444299999624491 ], [ 359607.300700001418591, 256986.227600000798702 ], [ 359602.73369999974966, 256988.011100001633167 ], [ 359611.60530000180006, 257011.338700000196695 ], [ 359617.774400003254414, 257013.10869999974966 ], [ 359619.131999999284744, 257011.286499999463558 ], [ 359620.452299997210503, 257009.964999999850988 ], [ 359621.933300003409386, 257008.82660000026226 ], [ 359623.549900002777576, 257007.890599999576807 ], [ 359625.274499997496605, 257007.172800000756979 ], [ 359630.531000003218651, 257005.377500001341105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402097200", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-22", "ACRE": "0.15", "LONGITUDE": -64.92204065, "LATITUDE": 18.34229973, "OBJECTID_1": 12659, "PARCEL_NO_": "105402097200", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-22 No.8&10 NEW QTR", "Name": "JACKSON, AILEEN", "Address": "PO Box 9334", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14200, "Improved_V": 61900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.479842502, "SHAPE_Area": 578.76514103399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359748.765900000929832, 257005.958000000566244 ], [ 359751.353900000452995, 257004.450599998235703 ], [ 359743.14750000089407, 256973.483800001442432 ], [ 359727.200300000607967, 256977.100299999117851 ], [ 359736.11370000243187, 257013.427000001072884 ], [ 359736.859499998390675, 257013.00959999859333 ], [ 359737.601999998092651, 257012.586500000208616 ], [ 359738.341300003230572, 257012.157900001853704 ], [ 359739.077399998903275, 257011.723600000143051 ], [ 359748.765900000929832, 257005.958000000566244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402097100", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-21", "ACRE": "0.17", "LONGITUDE": -64.92219266, "LATITUDE": 18.34234971, "OBJECTID_1": 12658, "PARCEL_NO_": "105402097100", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-21 No.8&9 NEW QTR.", "Name": "WINSTON FRANCIS (LIFE ESTATE) & VERNA FRANCIS", "Address": "PO BOX 5218", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 15900, "Improved_V": 73300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 113.39290095600001, "SHAPE_Area": 684.1496624 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359736.11370000243187, 257013.427000001072884 ], [ 359727.200300000607967, 256977.100299999117851 ], [ 359709.03660000115633, 256981.2195999994874 ], [ 359721.238600000739098, 257020.316700000315905 ], [ 359725.048900000751019, 257018.79839999973774 ], [ 359728.801500000059605, 257017.142499998211861 ], [ 359732.491400003433228, 257015.351300001144409 ], [ 359736.11370000243187, 257013.427000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402097000", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-20", "ACRE": "0.17", "LONGITUDE": -64.92234998000001, "LATITUDE": 18.34240058, "OBJECTID_1": 12657, "PARCEL_NO_": "105402097000", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-20 No.8&10 NEW QTR", "Name": "LLENE GRAVES, NOEL and ROSELYN R SAMUEL-HODGE", "Address": "PO BOX 303896", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16100, "Improved_V": 77600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.91246871600001, "SHAPE_Area": 737.72458932899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359721.238600000739098, 257020.316700000315905 ], [ 359709.03660000115633, 256981.2195999994874 ], [ 359708.641699999570847, 256981.309200000017881 ], [ 359704.910999998450279, 256982.280200000852346 ], [ 359701.249200001358986, 256983.485100001096725 ], [ 359697.670800000429153, 256984.919100001454353 ], [ 359694.19030000269413, 256986.576299998909235 ], [ 359692.649099998176098, 256987.399000000208616 ], [ 359691.209799997508526, 256988.194099999964237 ], [ 359705.155699998140335, 257025.509300000965595 ], [ 359714.71000000089407, 257022.555900000035763 ], [ 359716.354800000786781, 257022.033599998801947 ], [ 359717.991400003433228, 257021.486299999058247 ], [ 359719.619499996304512, 257020.913899999111891 ], [ 359721.238600000739098, 257020.316700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402095200", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-2", "ACRE": "0.15", "LONGITUDE": -64.92250627, "LATITUDE": 18.34246589, "OBJECTID_1": 12640, "PARCEL_NO_": "105402095200", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-2 8&10 NEW QTR.", "Name": "EUNICE WILLIAMS REVOCABLE TRUST", "Address": "1554 N Normandy Blvd", "City": "Deltona", "State": "Florida", "Zip": 32725, "Country": "United States", "Land_Value": 14700, "Improved_V": 72800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.530342543, "SHAPE_Area": 690.64343749399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359705.155699998140335, 257025.509300000965595 ], [ 359691.209799997508526, 256988.194099999964237 ], [ 359675.916500002145767, 256996.641699999570847 ], [ 359675.664300002157688, 256996.7804000005126 ], [ 359675.411499999463558, 256996.918200001120567 ], [ 359675.158299997448921, 256997.055100001394749 ], [ 359674.904500000178814, 256997.191100001335144 ], [ 359687.965800002217293, 257030.822900000959635 ], [ 359687.972300000488758, 257030.820900000631809 ], [ 359687.978799998760223, 257030.818900000303984 ], [ 359687.985200002789497, 257030.816899999976158 ], [ 359687.991700001060963, 257030.814899999648333 ], [ 359705.155699998140335, 257025.509300000965595 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402097500", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-25", "ACRE": "0.16", "LONGITUDE": -64.92149429, "LATITUDE": 18.34248137, "OBJECTID_1": 12662, "PARCEL_NO_": "105402097500", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-25 No.8&10 NEW QTR", "Name": "FOY, JENNITA M", "Address": "1525 Ross Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 16400, "Improved_V": 71000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.23297131199999, "SHAPE_Area": 1171.83272207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359817.737700000405312, 257030.759799998253584 ], [ 359813.235600002110004, 257002.467099998146296 ], [ 359779.447700001299381, 256991.158300001174212 ], [ 359779.055399999022484, 256992.382699999958277 ], [ 359778.238399997353554, 256994.286299999803305 ], [ 359777.203599996864796, 256996.080899998545647 ], [ 359775.965199999511242, 256997.741599999368191 ], [ 359774.540399998426437, 256999.245299998670816 ], [ 359772.949000000953674, 257000.57149999961257 ], [ 359779.409999996423721, 257008.0912000015378 ], [ 359788.734899997711182, 257031.694600000977516 ], [ 359817.737700000405312, 257030.759799998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402095400", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-4", "ACRE": "0.14", "LONGITUDE": -64.92265769, "LATITUDE": 18.34252933, "OBJECTID_1": 12642, "PARCEL_NO_": "105402095400", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-4 No.8&10 NEW QTR.", "Name": "CARTY, MARGARITA & RICHARDS, G. R", "Address": "1504 Estate Ross & Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13800, "Improved_V": 71400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.46032452599999, "SHAPE_Area": 574.67130944799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359687.965800002217293, 257030.822900000959635 ], [ 359674.904500000178814, 256997.191100001335144 ], [ 359672.060599997639656, 256998.63569999858737 ], [ 359669.160899996757507, 256999.964699998497963 ], [ 359666.210100002586842, 257001.175999999046326 ], [ 359663.212899997830391, 257002.267499998211861 ], [ 359661.136600002646446, 257002.976599998772144 ], [ 359669.884400002658367, 257034.705099999904633 ], [ 359674.464500002563, 257034.034200001507998 ], [ 359679.010600000619888, 257033.162300001829863 ], [ 359683.513999998569489, 257032.0912000015378 ], [ 359687.965800002217293, 257030.822900000959635 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402095800", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-8", "ACRE": "0.11", "LONGITUDE": -64.92301031, "LATITUDE": 18.34258833, "OBJECTID_1": 12645, "PARCEL_NO_": "105402095800", "Tax_Legal_": "2-8 ESTATE ROSS-MADAMBERG 8 & 10 NEW QUARTER", "Name": "VANTERPOOL, DAISY & MERCEDES", "Address": "1500 Ross Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 10900, "Improved_V": 67800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.232255856400002, "SHAPE_Area": 505.80869447800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359643.600299999117851, 257008.965999998152256 ], [ 359627.737400002777576, 257014.383900001645088 ], [ 359626.573499999940395, 257014.90989999845624 ], [ 359625.530500002205372, 257015.647100001573563 ], [ 359624.646099999547005, 257016.56870000064373 ], [ 359623.952600002288818, 257017.64130000025034 ], [ 359623.475000001490116, 257018.825899999588728 ], [ 359623.230700001120567, 257020.079599998891354 ], [ 359623.204999998211861, 257021.011999998241663 ], [ 359623.459899999201298, 257027.056200001388788 ], [ 359623.632399998605251, 257028.261599998921156 ], [ 359624.04110000282526, 257029.408599998801947 ], [ 359624.669600002467632, 257030.45160000026226 ], [ 359625.492799997329712, 257031.348799999803305 ], [ 359626.478000000119209, 257032.064500000327826 ], [ 359627.585699997842312, 257032.570099998265505 ], [ 359628.771799996495247, 257032.845499999821186 ], [ 359628.810900002717972, 257032.850400000810623 ], [ 359644.179099999368191, 257034.728700000792742 ], [ 359645.793499998748302, 257034.91330000013113 ], [ 359647.410599999129772, 257035.072999998927116 ], [ 359649.030000001192093, 257035.207699999213219 ], [ 359650.651199996471405, 257035.317299999296665 ], [ 359643.600299999117851, 257008.965999998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402095600", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-6", "ACRE": "0.13", "LONGITUDE": -64.92282023, "LATITUDE": 18.34256155, "OBJECTID_1": 12643, "PARCEL_NO_": "105402095600", "Tax_Legal_": "2-6 ESTATE ROSS NO.8 & 10 NEW QTR", "Name": "MATHIAS, EDWARD & DORIS", "Address": "6 Ross-Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 12500, "Improved_V": 66900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.9897650562, "SHAPE_Area": 565.27226695599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359669.884400002658367, 257034.705099999904633 ], [ 359661.136600002646446, 257002.976599998772144 ], [ 359643.600299999117851, 257008.965999998152256 ], [ 359650.651199996471405, 257035.317299999296665 ], [ 359655.465000003576279, 257035.495000001043081 ], [ 359660.281800001859665, 257035.452100001275539 ], [ 359665.091600000858307, 257035.1886 ], [ 359669.884400002658367, 257034.705099999904633 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402097400", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-24", "ACRE": "0.14", "LONGITUDE": -64.92170587, "LATITUDE": 18.34255246, "OBJECTID_1": 12661, "PARCEL_NO_": "105402097400", "Tax_Legal_": "2-24 ROSS-MADAMBERG NO.8&10 NEW QTR", "Name": "WILKES, ELISE E.", "Address": "2-24 Ross-Madamberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17500, "Improved_V": 64900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.896437409, "SHAPE_Area": 639.7778751 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359788.734899997711182, 257031.694600000977516 ], [ 359779.409999996423721, 257008.0912000015378 ], [ 359772.949000000953674, 257000.57149999961257 ], [ 359772.582900002598763, 257000.834499999880791 ], [ 359772.210199996829033, 257001.088100001215935 ], [ 359771.83110000193119, 257001.332100000232458 ], [ 359771.445900000631809, 257001.566300000995398 ], [ 359760.632600001990795, 257007.864500001072884 ], [ 359762.163000002503395, 257013.295200001448393 ], [ 359768.722699999809265, 257036.57319999858737 ], [ 359791.561099998652935, 257035.306699998676777 ], [ 359788.734899997711182, 257031.694600000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402090239", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-33", "ACRE": "0.28", "LONGITUDE": -64.92149896, "LATITUDE": 18.34278516, "OBJECTID_1": 12592, "PARCEL_NO_": "105402090239", "Tax_Legal_": "ROSS 2 NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 0, "Improved_V": 61100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 158.96443728599999, "SHAPE_Area": 1326.7428151900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359776.357299998402596, 257061.169599998742342 ], [ 359789.974399998784065, 257060.38459999859333 ], [ 359822.156700000166893, 257058.529500000178814 ], [ 359817.737700000405312, 257030.759799998253584 ], [ 359788.734899997711182, 257031.694600000977516 ], [ 359791.561099998652935, 257035.306699998676777 ], [ 359768.722699999809265, 257036.57319999858737 ], [ 359773.030199997127056, 257061.361299999058247 ], [ 359776.357299998402596, 257061.169599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402090400", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-A", "ACRE": ".15", "LONGITUDE": -64.92184492, "LATITUDE": 18.34272462, "OBJECTID_1": 12594, "PARCEL_NO_": "105402090400", "Tax_Legal_": "2A ROSS KINGS QTR.", "Name": "HEDRINGTON, R. & OTHERS", "Address": "PO Box 55", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16700, "Improved_V": 120400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.14318693000001, "SHAPE_Area": 851.69500445899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359773.030199997127056, 257061.361299999058247 ], [ 359768.722699999809265, 257036.57319999858737 ], [ 359762.163000002503395, 257013.295200001448393 ], [ 359746.95610000193119, 257018.589699998497963 ], [ 359753.773500002920628, 257062.471400000154972 ], [ 359773.030199997127056, 257061.361299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402096900", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-19", "ACRE": "0.19", "LONGITUDE": -64.92201927000001, "LATITUDE": 18.34274686, "OBJECTID_1": 12656, "PARCEL_NO_": "105402096900", "Tax_Legal_": "2-19 ROSS-MADAMBERG NO.8&10 NEW QTR", "Name": "LEWIS, GILBERT & EDITH", "Address": "3202 DEMARARA NO. 3", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19200, "Improved_V": 63200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.632872484, "SHAPE_Area": 811.477620538 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359753.773500002920628, 257062.471400000154972 ], [ 359746.95610000193119, 257018.589699998497963 ], [ 359744.300499998033047, 257017.482599999755621 ], [ 359742.974200002849102, 257018.271800000220537 ], [ 359739.286899998784065, 257020.379000000655651 ], [ 359735.52759999781847, 257022.354800000786781 ], [ 359731.700900003314018, 257024.196800000965595 ], [ 359727.811599999666214, 257025.902699999511242 ], [ 359735.368400000035763, 257063.532299999147654 ], [ 359753.773500002920628, 257062.471400000154972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402096800", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-18", "ACRE": "0.14", "LONGITUDE": -64.92219111, "LATITUDE": 18.34278962, "OBJECTID_1": 12655, "PARCEL_NO_": "105402096800", "Tax_Legal_": "2-18 ESTATE ROSS - MADAMBERG 8 & 10 NEW QUARTER", "Name": "WILLIAMS, DAISY", "Address": "PO BOX 11122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13800, "Improved_V": 69200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.269470039, "SHAPE_Area": 645.13173048800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359735.368400000035763, 257063.532299999147654 ], [ 359727.811599999666214, 257025.902699999511242 ], [ 359725.134900003671646, 257026.983300000429153 ], [ 359722.433100000023842, 257027.999499998986721 ], [ 359719.707800000905991, 257028.950599998235703 ], [ 359716.960400000214577, 257029.835999999195337 ], [ 359710.267399996519089, 257031.904899999499321 ], [ 359717.511699996888638, 257064.561599999666214 ], [ 359735.368400000035763, 257063.532299999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402096700", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-17", "ACRE": "0.14", "LONGITUDE": -64.9223562, "LATITUDE": 18.34281607, "OBJECTID_1": 12654, "PARCEL_NO_": "105402096700", "Tax_Legal_": "2-17 ESTATE ROSS NO.8&10 NEW QTR", "Name": "TESTAMARK, EUDACIA & NELTHROPP, JACQUELINE", "Address": "PO Box 11433", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14100, "Improved_V": 45500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.7572766599, "SHAPE_Area": 538.44676181499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359717.511699996888638, 257064.561599999666214 ], [ 359710.267399996519089, 257031.904899999499321 ], [ 359691.798699997365475, 257037.613899998366833 ], [ 359702.302000001072884, 257065.438299998641014 ], [ 359717.511699996888638, 257064.561599999666214 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402096600", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-16", "ACRE": "0.13", "LONGITUDE": -64.92252997, "LATITUDE": 18.34285399, "OBJECTID_1": 12653, "PARCEL_NO_": "105402096600", "Tax_Legal_": "2-16 ESTATE ROSS-MADAMBERG NO.8 & 10 NEW QTR", "Name": "ARCHIBALD, SOPHIA", "Address": "PO BOX 1284", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16300, "Improved_V": 64000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.412054855700006, "SHAPE_Area": 562.45275178600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359702.302000001072884, 257065.438299998641014 ], [ 359691.798699997365475, 257037.613899998366833 ], [ 359690.24210000038147, 257038.095100000500679 ], [ 359685.898000001907349, 257039.343100000172853 ], [ 359681.507399998605251, 257040.416000001132488 ], [ 359677.077399998903275, 257041.312199998646975 ], [ 359672.615000002086163, 257042.030099999159575 ], [ 359680.19650000333786, 257066.712600000202656 ], [ 359702.302000001072884, 257065.438299998641014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402096500", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-15", "ACRE": "0.11", "LONGITUDE": -64.92272531, "LATITUDE": 18.34287201, "OBJECTID_1": 12652, "PARCEL_NO_": "105402096500", "Tax_Legal_": "2-15 ROSS-MADAMBERG NO.8 & 10 NEW QTR", "Name": "ESTRADA, KIMRA", "Address": "PO Box 304095", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 12100, "Improved_V": 71400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.0522070146, "SHAPE_Area": 499.82624976699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359680.19650000333786, 257066.712600000202656 ], [ 359672.615000002086163, 257042.030099999159575 ], [ 359667.609700001776218, 257042.619100000709295 ], [ 359662.583099998533726, 257042.983899999409914 ], [ 359657.545299999415874, 257043.123700000345707 ], [ 359652.50620000064373, 257043.03830000013113 ], [ 359660.133199997246265, 257067.869100000709295 ], [ 359680.19650000333786, 257066.712600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402096400", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-14", "ACRE": "0.12", "LONGITUDE": -64.92290298, "LATITUDE": 18.34289047, "OBJECTID_1": 12651, "PARCEL_NO_": "105402096400", "Tax_Legal_": "ESTATE ROSS & MADAMBERG 2-14 NEW QUARTER 8 & 10", "Name": "ALVAREZ, LYRA & KEITH", "Address": "1500 Ross Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 11400, "Improved_V": 66400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.324403053200001, "SHAPE_Area": 452.45883999799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359637.972900003194809, 257069.146499998867512 ], [ 359660.133199997246265, 257067.869100000709295 ], [ 359652.50620000064373, 257043.03830000013113 ], [ 359650.188000001013279, 257042.923300001770258 ], [ 359647.872699998319149, 257042.760600000619888 ], [ 359645.561300002038479, 257042.550200000405312 ], [ 359643.254699997603893, 257042.292399998754263 ], [ 359640.576099999248981, 257041.964999999850988 ], [ 359637.233599998056889, 257069.189100001007318 ], [ 359637.972900003194809, 257069.146499998867512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402098000", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-13", "ACRE": "0.13", "LONGITUDE": -64.92308279, "LATITUDE": 18.34288041, "OBJECTID_1": 12667, "PARCEL_NO_": "105402098000", "Tax_Legal_": "2-13 ROSS-MADAMBERG NO.8&10 NEW QTR", "Name": "HAMILTON, IRENE & KERRA N. HARRIS-CHARLES", "Address": "1513 Estae Ross Taarneberg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 13100, "Improved_V": 59800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.150916295499997, "SHAPE_Area": 583.224587047 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359617.146999999880791, 257070.346900001168251 ], [ 359637.233599998056889, 257069.189100001007318 ], [ 359640.576099999248981, 257041.964999999850988 ], [ 359627.886500000953674, 257040.414099998772144 ], [ 359626.851400002837181, 257040.24720000103116 ], [ 359625.832099996507168, 257040.001800000667572 ], [ 359624.834499999880791, 257039.679200001060963 ], [ 359623.864500001072884, 257039.281300000846386 ], [ 359617.310500003397465, 257056.04280000180006 ], [ 359616.848899997770786, 257070.364100001752377 ], [ 359617.146999999880791, 257070.346900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402096000", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-10", "ACRE": "0.12", "LONGITUDE": -64.92329332, "LATITUDE": 18.34260296, "OBJECTID_1": 12647, "PARCEL_NO_": "105402096000", "Tax_Legal_": "2-10 ESTATE ROSS- MADAMBERG 8 & 10 NEW QUARTER", "Name": "LIVING TRUST OF THE MAVIS I MACK", "Address": "PO Box 5434", "City": "Kingshill", "State": "U.S.Virgin Islands", "Zip": 851, "Country": "United States", "Land_Value": 13000, "Improved_V": 68300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.709799146600005, "SHAPE_Area": 458.79789687 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359594.947999998927116, 257017.152100000530481 ], [ 359597.394599996507168, 257035.777699999511242 ], [ 359607.057899996638298, 257037.16160000115633 ], [ 359618.261699996888638, 257034.913600001484156 ], [ 359617.327399998903275, 257033.015700001269579 ], [ 359616.651100002229214, 257031.464400000870228 ], [ 359616.140399999916553, 257029.680300001055002 ], [ 359616.0304000005126, 257029.109700001776218 ], [ 359615.944700002670288, 257028.535000000149012 ], [ 359615.883400000631809, 257027.957100000232458 ], [ 359615.846600003540516, 257027.377199999988079 ], [ 359615.59179999679327, 257021.333000000566244 ], [ 359615.590000003576279, 257020.171300001442432 ], [ 359615.784299999475479, 257018.313400000333786 ], [ 359616.218699999153614, 257016.496599998325109 ], [ 359616.885899998247623, 257014.751800000667572 ], [ 359617.774400003254414, 257013.10869999974966 ], [ 359611.454599998891354, 257011.337499998509884 ], [ 359594.947999998927116, 257017.152100000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402096200", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-12", "ACRE": "0.14", "LONGITUDE": -64.92327266, "LATITUDE": 18.34288726, "OBJECTID_1": 12649, "PARCEL_NO_": "105402096200", "Tax_Legal_": "ROSS-MADAMBERG ESTATE 2-12 No.8&9 NEW QTR", "Name": "SIMON, RUTH & SHERWIN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13700, "Improved_V": 67700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.36117347, "SHAPE_Area": 589.65186974799997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359596.220600001513958, 257049.004099998623133 ], [ 359597.828900001943111, 257071.460499998182058 ], [ 359616.848899997770786, 257070.364100001752377 ], [ 359617.310500003397465, 257056.04280000180006 ], [ 359623.864500001072884, 257039.281300000846386 ], [ 359608.148000001907349, 257043.162900000810623 ], [ 359596.220600001513958, 257049.004099998623133 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402098100", "MAP": "D9-6374-T98", "PARCEL_NAM": null, "ACRE": "0.167", "LONGITUDE": -64.9234862, "LATITUDE": 18.34280732, "OBJECTID_1": 12668, "PARCEL_NO_": "105402098100", "Tax_Legal_": "2-11 ROSS-MADAMBERG\nNO.8&10 NEW QTR", "Name": "Omari George and Marcia Yvette Roebuck", "Address": "PO Box 7052", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 17200, "Improved_V": 63300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.576569939, "SHAPE_Area": 648.20016819600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359596.735600002110004, 257056.195599999278784 ], [ 359596.220600001513958, 257049.004099998623133 ], [ 359608.148000001907349, 257043.162900000810623 ], [ 359607.057899996638298, 257037.16160000115633 ], [ 359597.394599996507168, 257035.777699999511242 ], [ 359591.413900002837181, 257036.925799999386072 ], [ 359568.310400001704693, 257041.361099999397993 ], [ 359569.685999996960163, 257053.953499998897314 ], [ 359569.845499999821186, 257055.413400001823902 ], [ 359569.715700000524521, 257060.521000001579523 ], [ 359587.849399998784065, 257057.618099998682737 ], [ 359596.735600002110004, 257056.195599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402082000", "MAP": "B9-475-T76", "PARCEL_NAM": "1AD", "ACRE": null, "LONGITUDE": -64.92336629, "LATITUDE": 18.34240424, "OBJECTID_1": 12567, "PARCEL_NO_": "105402082000", "Tax_Legal_": "MADAMBERG 1AC & 1AD KINGS QUARTER", "Name": "JOSEPH, LEONIE", "Address": "PO Box 7781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 10700, "Improved_V": 58800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.681945869800003, "SHAPE_Area": 423.919494628 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359586.944600000977516, 256994.179900001734495 ], [ 359594.947999998927116, 257017.152100000530481 ], [ 359611.454599998891354, 257011.337499998509884 ], [ 359602.73369999974966, 256988.011100001633167 ], [ 359598.178900003433228, 256989.790300000458956 ], [ 359593.624200001358986, 256991.569699998944998 ], [ 359589.069700002670288, 256993.349399998784065 ], [ 359586.944600000977516, 256994.179900001734495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105402090232", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-32", "ACRE": "0.12", "LONGITUDE": -64.92361425, "LATITUDE": 18.3425788, "OBJECTID_1": 12585, "PARCEL_NO_": "105402090232", "Tax_Legal_": "ROSS 2 NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 0, "Improved_V": 61100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.15390094, "SHAPE_Area": 506.10053314800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359582.970399998128414, 257035.874299999326468 ], [ 359573.57320000231266, 256999.221500001847744 ], [ 359571.986900001764297, 256999.796399999409914 ], [ 359568.995800003409386, 257000.861800000071526 ], [ 359565.998800002038479, 257001.910700000822544 ], [ 359564.072999998927116, 257002.572299998253584 ], [ 359567.899400003254414, 257037.598600000143051 ], [ 359568.310400001704693, 257041.361099999397993 ], [ 359583.623400002717972, 257038.421399999409914 ], [ 359582.970399998128414, 257035.874299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402090216", "MAP": "D9-6374-T98", "PARCEL_NAM": "REM 2 ROSS", "ACRE": ".245", "LONGITUDE": -64.9233515, "LATITUDE": 18.34315674, "OBJECTID_1": 12579, "PARCEL_NO_": "105402090216", "Tax_Legal_": "ROSS 2 NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 0, "Improved_V": 61100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.10894176, "SHAPE_Area": 903.71038213199995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359599.246500000357628, 257096.570199999958277 ], [ 359600.276600003242493, 257096.552700001746416 ], [ 359601.705399997532368, 257096.473400000482798 ], [ 359603.92790000140667, 257096.579199999570847 ], [ 359605.145000003278255, 257096.817299999296665 ], [ 359608.743299998342991, 257097.214200001209974 ], [ 359610.516000002622604, 257097.372900001704693 ], [ 359612.262299999594688, 257097.505199998617172 ], [ 359614.087899997830391, 257097.796300001442432 ], [ 359615.860600002110004, 257098.166700001806021 ], [ 359617.50110000371933, 257098.378400001674891 ], [ 359619.410800002515316, 257098.697599999606609 ], [ 359617.146999999880791, 257070.346900001168251 ], [ 359616.848899997770786, 257070.364100001752377 ], [ 359597.828900001943111, 257071.460499998182058 ], [ 359598.256899997591972, 257077.437199998646975 ], [ 359590.5304000005126, 257079.244699999690056 ], [ 359575.102700002491474, 257082.853999998420477 ], [ 359577.179799996316433, 257092.545899998396635 ], [ 359580.035999998450279, 257097.822700001299381 ], [ 359580.935599997639656, 257097.902100000530481 ], [ 359582.840599998831749, 257097.954999998211861 ], [ 359584.771999999880791, 257098.060899998992682 ], [ 359589.693300001323223, 257097.611099999397993 ], [ 359592.101000003516674, 257097.293600000441074 ], [ 359594.191200003027916, 257097.002500001341105 ], [ 359595.672899998724461, 257096.764400001615286 ], [ 359597.207500003278255, 257096.605599999427795 ], [ 359598.715599998831749, 257096.579199999570847 ], [ 359599.246500000357628, 257096.570199999958277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703043400", "MAP": "D9-8951-T014", "PARCEL_NAM": "37F-1", "ACRE": "0.23", "LONGITUDE": -64.96501813, "LATITUDE": 18.35042567, "OBJECTID_1": 3371, "PARCEL_NO_": "102703043400", "Tax_Legal_": "37F-1 LINDBERG BAY No.4A SOUTHSIDE QTR", "Name": "RAWLINS, SAKEENA S", "Address": "PO Box 9848", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8012848, "Country": "United States", "Land_Value": 27300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.261178809, "SHAPE_Area": 1119.6780894399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355215.846699997782707, 257829.593499999493361 ], [ 355152.581799998879433, 257827.403599999845028 ], [ 355154.519500002264977, 257828.4189000017941 ], [ 355172.13570000231266, 257837.649300001561642 ], [ 355176.133100003004074, 257841.692800000309944 ], [ 355176.898100003600121, 257846.554200001060963 ], [ 355175.242299996316433, 257851.606899999082088 ], [ 355170.890399999916553, 257854.403900001198053 ], [ 355170.823299996554852, 257854.447000000625849 ], [ 355217.112800002098083, 257851.903999999165535 ], [ 355216.880500003695488, 257847.810300000011921 ], [ 355215.942299999296665, 257831.278499998152256 ], [ 355215.846699997782707, 257829.593499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105402090234", "MAP": "D9-6374-T98", "PARCEL_NAM": "R.O.W. 2-34", "ACRE": "0.76", "LONGITUDE": -64.92321925, "LATITUDE": 18.34272917, "OBJECTID_1": 12587, "PARCEL_NO_": "105402090234", "Tax_Legal_": "ROSS 2 NEW QTR.", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 0, "Improved_V": 61100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 810.38584267299996, "SHAPE_Area": 3093.6577209900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359608.148000001907349, 257043.162900000810623 ], [ 359623.864500001072884, 257039.281300000846386 ], [ 359627.886500000953674, 257040.414099998772144 ], [ 359640.576099999248981, 257041.964999999850988 ], [ 359643.254699997603893, 257042.292399998754263 ], [ 359645.561300002038479, 257042.550200000405312 ], [ 359647.872699998319149, 257042.760600000619888 ], [ 359650.188000001013279, 257042.923300001770258 ], [ 359652.50620000064373, 257043.03830000013113 ], [ 359657.545299999415874, 257043.123700000345707 ], [ 359662.583099998533726, 257042.983899999409914 ], [ 359667.609700001776218, 257042.619100000709295 ], [ 359672.615000002086163, 257042.030099999159575 ], [ 359677.077399998903275, 257041.312199998646975 ], [ 359681.507399998605251, 257040.416000001132488 ], [ 359685.898000001907349, 257039.343100000172853 ], [ 359690.24210000038147, 257038.095100000500679 ], [ 359691.798699997365475, 257037.613899998366833 ], [ 359710.267399996519089, 257031.904899999499321 ], [ 359716.960400000214577, 257029.835999999195337 ], [ 359719.707800000905991, 257028.950599998235703 ], [ 359722.433100000023842, 257027.999499998986721 ], [ 359725.134900003671646, 257026.983300000429153 ], [ 359727.811599999666214, 257025.902699999511242 ], [ 359731.700900003314018, 257024.196800000965595 ], [ 359735.52759999781847, 257022.354800000786781 ], [ 359739.286899998784065, 257020.379000000655651 ], [ 359742.974200002849102, 257018.271800000220537 ], [ 359744.300499998033047, 257017.482599999755621 ], [ 359746.95610000193119, 257018.589699998497963 ], [ 359762.163000002503395, 257013.295200001448393 ], [ 359760.632600001990795, 257007.864500001072884 ], [ 359771.445900000631809, 257001.566300000995398 ], [ 359771.83110000193119, 257001.332100000232458 ], [ 359772.210199996829033, 257001.088100001215935 ], [ 359772.582900002598763, 257000.834499999880791 ], [ 359772.949000000953674, 257000.57149999961257 ], [ 359774.540399998426437, 256999.245299998670816 ], [ 359775.965199999511242, 256997.741599999368191 ], [ 359777.203599996864796, 256996.080899998545647 ], [ 359778.238399997353554, 256994.286299999803305 ], [ 359779.055399999022484, 256992.382699999958277 ], [ 359779.447700001299381, 256991.158300001174212 ], [ 359779.888999998569489, 256989.134300000965595 ], [ 359780.089699998497963, 256987.072500001639128 ], [ 359780.046999998390675, 256985.001400001347065 ], [ 359779.761399999260902, 256982.949599999934435 ], [ 359779.551700003445148, 256982.028999999165535 ], [ 359779.347000002861023, 256981.355399999767542 ], [ 359779.123999997973442, 256980.687600001692772 ], [ 359778.882700003683567, 256980.026299998164177 ], [ 359778.623499996960163, 256979.371700000017881 ], [ 359777.702399998903275, 256977.381900001317263 ], [ 359776.615000002086163, 256975.477899998426437 ], [ 359775.369199998676777, 256973.673500001430511 ], [ 359773.974200002849102, 256971.981899999082088 ], [ 359772.212499998509884, 256970.204599998891354 ], [ 359770.286300003528595, 256968.607099998742342 ], [ 359768.213799998164177, 256967.204599998891354 ], [ 359766.014799997210503, 256966.010299999266863 ], [ 359765.060000002384186, 256965.574200000613928 ], [ 359762.836199998855591, 256964.875999998301268 ], [ 359760.566399998962879, 256964.345899999141693 ], [ 359758.263400003314018, 256963.986699998378754 ], [ 359755.939999997615814, 256963.800500001758337 ], [ 359753.284599997103214, 256963.800500001758337 ], [ 359750.638800002634525, 256964.026299998164177 ], [ 359748.021700002253056, 256964.476399999111891 ], [ 359745.452500000596046, 256965.14750000089407 ], [ 359739.101899996399879, 256966.587699998170137 ], [ 359720.911700002849102, 256970.712999999523163 ], [ 359706.956399999558926, 256973.877900000661612 ], [ 359706.20269999653101, 256974.053300000727177 ], [ 359705.45099999755621, 256974.237199999392033 ], [ 359704.701499998569489, 256974.429499998688698 ], [ 359703.954199999570847, 256974.630300000309944 ], [ 359702.753700003027916, 256974.834100000560284 ], [ 359701.53660000115633, 256974.795099999755621 ], [ 359700.351599998772144, 256974.515099998563528 ], [ 359699.245899997651577, 256974.005100000649691 ], [ 359698.26349999755621, 256973.285500001162291 ], [ 359697.443800002336502, 256972.385099999606609 ], [ 359696.819499999284744, 256971.339600000530481 ], [ 359696.497599996626377, 256970.495200000703335 ], [ 359691.408100001513958, 256953.4386 ], [ 359683.464699998497963, 256956.660799998790026 ], [ 359684.323399998247623, 256956.706599999219179 ], [ 359685.135099999606609, 256956.990499999374151 ], [ 359685.835299998521805, 256957.489799998700619 ], [ 359686.368100002408028, 256958.164799999445677 ], [ 359686.653899997472763, 256958.825399998575449 ], [ 359691.187899999320507, 256974.020399998873472 ], [ 359691.417700000107288, 256975.2162000015378 ], [ 359691.4054000005126, 256976.433800000697374 ], [ 359691.151299998164177, 256977.624699998646975 ], [ 359690.665500000119209, 256978.741300001740456 ], [ 359689.967600002884865, 256979.739100001752377 ], [ 359689.085199996829033, 256980.578200001269579 ], [ 359688.293799996376038, 256981.099500000476837 ], [ 359674.787399999797344, 256988.560100000351667 ], [ 359667.818599998950958, 256992.214000001549721 ], [ 359665.556400001049042, 256993.2195999994874 ], [ 359663.260799996554852, 256994.146299999207258 ], [ 359662.63629999756813, 256994.382599998265505 ], [ 359662.00959999859333, 256994.613099999725819 ], [ 359661.380800001323223, 256994.837699998170137 ], [ 359660.75, 256995.056499999016523 ], [ 359643.695799998939037, 257000.88120000064373 ], [ 359630.531000003218651, 257005.377500001341105 ], [ 359625.274499997496605, 257007.172800000756979 ], [ 359623.549900002777576, 257007.890599999576807 ], [ 359621.933300003409386, 257008.82660000026226 ], [ 359620.452299997210503, 257009.964999999850988 ], [ 359619.131999999284744, 257011.286499999463558 ], [ 359617.774400003254414, 257013.10869999974966 ], [ 359616.885899998247623, 257014.751800000667572 ], [ 359616.218699999153614, 257016.496599998325109 ], [ 359615.784299999475479, 257018.313400000333786 ], [ 359615.590000003576279, 257020.171300001442432 ], [ 359615.59179999679327, 257021.333000000566244 ], [ 359615.846600003540516, 257027.377199999988079 ], [ 359615.883400000631809, 257027.957100000232458 ], [ 359615.944700002670288, 257028.535000000149012 ], [ 359616.0304000005126, 257029.109700001776218 ], [ 359616.140399999916553, 257029.680300001055002 ], [ 359616.651100002229214, 257031.464400000870228 ], [ 359617.327399998903275, 257033.015700001269579 ], [ 359618.261699996888638, 257034.913600001484156 ], [ 359607.057899996638298, 257037.16160000115633 ], [ 359608.148000001907349, 257043.162900000810623 ] ], [ [ 359757.602200001478195, 256971.582699999213219 ], [ 359759.960900001227856, 256972.007199998944998 ], [ 359762.264200001955032, 256972.668999999761581 ], [ 359763.045500002801418, 256973.042300000786781 ], [ 359764.858599998056889, 256974.098999999463558 ], [ 359766.537000000476837, 256975.358800001442432 ], [ 359768.058100000023842, 256976.80460000038147 ], [ 359769.401399999856949, 256978.416900001466274 ], [ 359770.548799999058247, 256980.174100000411272 ], [ 359771.484700001776218, 256982.052400000393391 ], [ 359772.196699999272823, 256984.026599999517202 ], [ 359772.253300003707409, 256984.271499998867512 ], [ 359772.465599998831749, 256985.816899999976158 ], [ 359772.43469999730587, 256987.376499999314547 ], [ 359772.16160000115633, 256988.912300001829863 ], [ 359771.652800001204014, 256990.386900000274181 ], [ 359770.920800000429153, 256991.764299999922514 ], [ 359769.983300000429153, 256993.011100001633167 ], [ 359768.863300003111362, 256994.096799999475479 ], [ 359767.587899997830391, 256994.995000001043081 ], [ 359751.353900000452995, 257004.450599998235703 ], [ 359748.765900000929832, 257005.958000000566244 ], [ 359739.077399998903275, 257011.723600000143051 ], [ 359738.341300003230572, 257012.157900001853704 ], [ 359737.601999998092651, 257012.586500000208616 ], [ 359736.859499998390675, 257013.00959999859333 ], [ 359736.11370000243187, 257013.427000001072884 ], [ 359732.491400003433228, 257015.351300001144409 ], [ 359728.801500000059605, 257017.142499998211861 ], [ 359725.048900000751019, 257018.79839999973774 ], [ 359721.238600000739098, 257020.316700000315905 ], [ 359719.619499996304512, 257020.913899999111891 ], [ 359717.991400003433228, 257021.486299999058247 ], [ 359716.354800000786781, 257022.033599998801947 ], [ 359714.71000000089407, 257022.555900000035763 ], [ 359705.155699998140335, 257025.509300000965595 ], [ 359687.991700001060963, 257030.814899999648333 ], [ 359687.985200002789497, 257030.816899999976158 ], [ 359687.978799998760223, 257030.818900000303984 ], [ 359687.972300000488758, 257030.820900000631809 ], [ 359687.965800002217293, 257030.822900000959635 ], [ 359683.513999998569489, 257032.0912000015378 ], [ 359679.010600000619888, 257033.162300001829863 ], [ 359674.464500002563, 257034.034200001507998 ], [ 359669.884400002658367, 257034.705099999904633 ], [ 359665.091600000858307, 257035.1886 ], [ 359660.281800001859665, 257035.452100001275539 ], [ 359655.465000003576279, 257035.495000001043081 ], [ 359650.651199996471405, 257035.317299999296665 ], [ 359649.030000001192093, 257035.207699999213219 ], [ 359647.410599999129772, 257035.072999998927116 ], [ 359645.793499998748302, 257034.91330000013113 ], [ 359644.179099999368191, 257034.728700000792742 ], [ 359628.810900002717972, 257032.850400000810623 ], [ 359628.771799996495247, 257032.845499999821186 ], [ 359627.585699997842312, 257032.570099998265505 ], [ 359626.478000000119209, 257032.064500000327826 ], [ 359625.492799997329712, 257031.348799999803305 ], [ 359624.669600002467632, 257030.45160000026226 ], [ 359624.04110000282526, 257029.408599998801947 ], [ 359623.632399998605251, 257028.261599998921156 ], [ 359623.459899999201298, 257027.056200001388788 ], [ 359623.204999998211861, 257021.011999998241663 ], [ 359623.230700001120567, 257020.079599998891354 ], [ 359623.475000001490116, 257018.825899999588728 ], [ 359623.952600002288818, 257017.64130000025034 ], [ 359624.646099999547005, 257016.56870000064373 ], [ 359625.530500002205372, 257015.647100001573563 ], [ 359626.573499999940395, 257014.90989999845624 ], [ 359627.737400002777576, 257014.383900001645088 ], [ 359643.600299999117851, 257008.965999998152256 ], [ 359661.136600002646446, 257002.976599998772144 ], [ 359663.212899997830391, 257002.267499998211861 ], [ 359666.210100002586842, 257001.175999999046326 ], [ 359669.160899996757507, 256999.964699998497963 ], [ 359672.060599997639656, 256998.63569999858737 ], [ 359674.904500000178814, 256997.191100001335144 ], [ 359675.158299997448921, 256997.055100001394749 ], [ 359675.411499999463558, 256996.918200001120567 ], [ 359675.664300002157688, 256996.7804000005126 ], [ 359675.916500002145767, 256996.641699999570847 ], [ 359691.209799997508526, 256988.194099999964237 ], [ 359692.649099998176098, 256987.399000000208616 ], [ 359694.19030000269413, 256986.576299998909235 ], [ 359697.670800000429153, 256984.919100001454353 ], [ 359701.249200001358986, 256983.485100001096725 ], [ 359704.910999998450279, 256982.280200000852346 ], [ 359708.641699999570847, 256981.309200000017881 ], [ 359709.03660000115633, 256981.2195999994874 ], [ 359727.200300000607967, 256977.100299999117851 ], [ 359743.14750000089407, 256973.483800001442432 ], [ 359747.43639999628067, 256972.511100001633167 ], [ 359748.105700001120567, 256972.308100000023842 ], [ 359750.439699999988079, 256971.764499999582767 ], [ 359752.816899999976158, 256971.460700001567602 ], [ 359755.212700001895428, 256971.399900000542402 ], [ 359757.602200001478195, 256971.582699999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402090200", "MAP": "D9-6374-T98", "PARCEL_NAM": "2-31", "ACRE": "0.53", "LONGITUDE": -64.92168951, "LATITUDE": 18.34187282, "OBJECTID_1": 12578, "PARCEL_NO_": "105402090200", "Tax_Legal_": "2-30 ROSS-MADAMBERG NO.9&10 NEW QTR", "Name": "HARRISON, COSME", "Address": "PO BOX 10595", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14600, "Improved_V": 79500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.87580390100001, "SHAPE_Area": 1777.87416646 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359804.538699999451637, 256958.62950000166893 ], [ 359793.338600002229214, 256920.065900001674891 ], [ 359784.875900000333786, 256922.942499998956919 ], [ 359776.3378000035882, 256925.587200000882149 ], [ 359767.730800002813339, 256927.997999999672174 ], [ 359759.061200000345707, 256930.173200000077486 ], [ 359754.410199999809265, 256931.237199999392033 ], [ 359753.401199996471405, 256931.463300000876188 ], [ 359752.39360000193119, 256931.695099998265505 ], [ 359751.387199997901917, 256931.932599999010563 ], [ 359750.382299996912479, 256932.175799999386072 ], [ 359755.939999997615814, 256963.800500001758337 ], [ 359758.263400003314018, 256963.986699998378754 ], [ 359760.566399998962879, 256964.345899999141693 ], [ 359762.836199998855591, 256964.875999998301268 ], [ 359765.060000002384186, 256965.574200000613928 ], [ 359766.014799997210503, 256966.010299999266863 ], [ 359768.213799998164177, 256967.204599998891354 ], [ 359770.286300003528595, 256968.607099998742342 ], [ 359772.212499998509884, 256970.204599998891354 ], [ 359773.974200002849102, 256971.981899999082088 ], [ 359782.212499998509884, 256961.92850000038743 ], [ 359804.538699999451637, 256958.62950000166893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402100100", "MAP": null, "PARCEL_NAM": "6", "ACRE": "2,925 sq ft", "LONGITUDE": -64.92391785, "LATITUDE": 18.34228369, "OBJECTID_1": 12685, "PARCEL_NO_": "105402100100", "Tax_Legal_": "6 EST TAARNEBERG KINGS QTR", "Name": "V.I. HOUSING FINANCE AUTHORITY", "Address": "3202 Demarara", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 68.187622980499995, "SHAPE_Area": 253.06431255199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359547.282300002872944, 256998.467000000178814 ], [ 359545.362800002098083, 256975.15989999845624 ], [ 359533.975900001823902, 256981.012899998575449 ], [ 359536.622000001370907, 257001.702300000935793 ], [ 359539.292999997735023, 257000.913199998438358 ], [ 359541.960100002586842, 257000.11089999973774 ], [ 359544.623199999332428, 256999.295499999076128 ], [ 359547.282300002872944, 256998.467000000178814 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402102600", "MAP": "A9-729-T008", "PARCEL_NAM": "TRACT 1 REM", "ACRE": "14.40", "LONGITUDE": -64.92433657, "LATITUDE": 18.34037935, "OBJECTID_1": 12704, "PARCEL_NO_": "105402102600", "Tax_Legal_": "TAARNEBERG KINGS QTR", "Name": "GREAT VISTAS LLC", "Address": "1051 Shine Ave", "City": "MYRTLE BEACH", "State": "South Carolina", "Zip": 29577, "Country": "United States", "Land_Value": 716100, "Improved_V": 3073700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3185.7067219199998, "SHAPE_Area": 49240.757161299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359462.950099997222424, 256849.622600000351667 ], [ 359463.607699997723103, 256852.047699999064207 ], [ 359473.370999999344349, 256805.075500000268221 ], [ 359486.930900000035763, 256807.390599999576807 ], [ 359478.662600003182888, 256853.361999999731779 ], [ 359463.607699997723103, 256852.047699999064207 ], [ 359464.49719999730587, 256854.397700000554323 ], [ 359465.610100001096725, 256856.650499999523163 ], [ 359466.935999996960163, 256858.78489999845624 ], [ 359468.462399996817112, 256860.780900001525879 ], [ 359470.174999997019768, 256862.619500000029802 ], [ 359472.057700000703335, 256864.283599998801947 ], [ 359474.092699997127056, 256865.757599998265505 ], [ 359476.260999999940395, 256867.027399998158216 ], [ 359478.542000003159046, 256868.081199999898672 ], [ 359480.914399996399879, 256868.909099999815226 ], [ 359483.355800002813339, 256869.503299999982119 ], [ 359485.843400001525879, 256869.858199998736382 ], [ 359488.35360000282526, 256869.970499999821186 ], [ 359507.821400001645088, 256869.896099999547005 ], [ 359508.669399999082088, 256869.932300001382828 ], [ 359510.865199998021126, 256869.857099998742342 ], [ 359513.039200000464916, 256869.539200000464916 ], [ 359515.164599999785423, 256868.982599999755621 ], [ 359517.215300001204014, 256868.194099999964237 ], [ 359519.16610000282526, 256867.183299999684095 ], [ 359520.993000000715256, 256865.962699998170137 ], [ 359522.673500001430511, 256864.547400001436472 ], [ 359524.186999998986721, 256862.954700000584126 ], [ 359525.514700002968311, 256861.204199999570847 ], [ 359526.640500001609325, 256859.317499998956919 ], [ 359527.550499998033047, 256857.317699998617172 ], [ 359528.233499996364117, 256855.229400001466274 ], [ 359528.260499998927116, 256855.120000001043081 ], [ 359528.331000000238419, 256854.262899998575449 ], [ 359528.159299999475479, 256853.420299999415874 ], [ 359527.759099997580051, 256852.659099999815226 ], [ 359527.1621999964118, 256852.040100000798702 ], [ 359526.41610000282526, 256851.612399999052286 ], [ 359525.580300003290176, 256851.410100001841784 ], [ 359519.724799998104572, 256850.846599999815226 ], [ 359520.864699997007847, 256838.130499999970198 ], [ 359534.896200001239777, 256840.190099999308586 ], [ 359535.550300002098083, 256840.250399999320507 ], [ 359536.765600003302097, 256840.174800001084805 ], [ 359537.941699996590614, 256839.859200000762939 ], [ 359539.031599998474121, 256839.316100001335144 ], [ 359539.991800002753735, 256838.567299999296665 ], [ 359540.784000001847744, 256837.642499998211861 ], [ 359527.947400003671646, 256834.493400000035763 ], [ 359528.272100001573563, 256798.130199998617172 ], [ 359541.501299999654293, 256797.799400001764297 ], [ 359541.501299999654293, 256812.351500000804663 ], [ 359545.470100000500679, 256813.013000000268221 ], [ 359545.139300003647804, 256817.643199998885393 ], [ 359540.839800000190735, 256817.643199998885393 ], [ 359541.332500003278255, 256836.854899998754263 ], [ 359549.438799999654293, 256825.214699998497963 ], [ 359554.631700001657009, 256828.42509999871254 ], [ 359549.446299999952316, 256835.870900001376867 ], [ 359583.458599999547005, 256819.037300001829863 ], [ 359585.618299998342991, 256817.900299999862909 ], [ 359588.566699996590614, 256816.112900000065565 ], [ 359591.381399996578693, 256814.121599998325109 ], [ 359594.04839999973774, 256811.936500001698732 ], [ 359596.554399996995926, 256809.568300001323223 ], [ 359598.886699996888638, 256807.028999999165535 ], [ 359601.0337999984622, 256804.331300001591444 ], [ 359602.984999999403954, 256801.488600000739098 ], [ 359604.730400003492832, 256798.515099998563528 ], [ 359606.261399999260902, 256795.425799999386072 ], [ 359607.570200003683567, 256792.236000001430511 ], [ 359608.650399997830391, 256788.96169999986887 ], [ 359610.457500003278255, 256782.754700001329184 ], [ 359610.526500001549721, 256782.4662000015378 ], [ 359610.564599998295307, 256781.607099998742342 ], [ 359610.361299999058247, 256780.771499998867512 ], [ 359609.932700000703335, 256780.026000000536442 ], [ 359609.312899999320507, 256779.429800000041723 ], [ 359608.551299996674061, 256779.030600000172853 ], [ 359607.708400003612041, 256778.859900001436472 ], [ 359606.851499997079372, 256778.931400001049042 ], [ 359606.048600003123283, 256779.239500001072884 ], [ 359603.404500000178814, 256780.711300000548363 ], [ 359600.664800003170967, 256775.259500000625849 ], [ 359610.172899998724461, 256769.967099998146296 ], [ 359610.867299996316433, 256769.530000001192093 ], [ 359611.90429999679327, 256768.647399999201298 ], [ 359612.767700001597404, 256767.594399999827147 ], [ 359613.429899998009205, 256766.404500000178814 ], [ 359613.869699999690056, 256765.115699999034405 ], [ 359614.072999998927116, 256763.769200000911951 ], [ 359614.033500000834465, 256762.407999999821186 ], [ 359613.752300001680851, 256761.075599998235703 ], [ 359613.238499999046326, 256759.814599998295307 ], [ 359612.508400000631809, 256758.665100000798702 ], [ 359611.585299998521805, 256757.663899999111891 ], [ 359611.043099999427795, 256757.254200000315905 ], [ 359606.771999999880791, 256762.874099999666214 ], [ 359594.414399996399879, 256749.366999998688698 ], [ 359582.487800002098083, 256724.795400001108646 ], [ 359586.798600003123283, 256720.915699999779463 ], [ 359584.068499997258186, 256713.587400000542402 ], [ 359578.895499996840954, 256705.109499998390675 ], [ 359568.980700001120567, 256695.482099998742342 ], [ 359561.2212999984622, 256703.672600001096725 ], [ 359559.784299999475479, 256703.528900001198053 ], [ 359546.851999998092651, 256691.315000001341105 ], [ 359547.57039999961853, 256688.441100001335144 ], [ 359553.484399996697903, 256681.559399999678135 ], [ 359548.294799998402596, 256682.257599998265505 ], [ 359546.024800002574921, 256677.949799999594688 ], [ 359550.29450000077486, 256677.375300001353025 ], [ 359548.302500002086163, 256676.557500001043081 ], [ 359546.274099998176098, 256675.834499999880791 ], [ 359544.213899999856949, 256675.207800000905991 ], [ 359542.126599997282028, 256674.678700000047684 ], [ 359541.871200002729893, 256674.618299998342991 ], [ 359539.932199999690056, 256674.01799999922514 ], [ 359538.079099997878075, 256673.189699999988079 ], [ 359536.338600002229214, 256672.145399998873472 ], [ 359534.735699996352196, 256670.900100000202656 ], [ 359533.293499998748302, 256669.471700001507998 ], [ 359532.032899998128414, 256667.880800001323223 ], [ 359526.276299998164177, 256659.645300000905991 ], [ 359526.166199997067451, 256659.503199998289347 ], [ 359525.648999996483326, 256659.085299998521805 ], [ 359525.016500003635883, 256658.879900000989437 ], [ 359524.352399997413158, 256658.914299998432398 ], [ 359523.744499996304512, 256659.183800000697374 ], [ 359523.273100003600121, 256659.652899999171495 ], [ 359523.000699996948242, 256660.25959999859333 ], [ 359522.963200002908707, 256660.923500001430511 ], [ 359523.165500000119209, 256661.557000000029802 ], [ 359524.920699998736382, 256664.831599999219179 ], [ 359519.972699999809265, 256665.278099998831749 ], [ 359516.998400002717972, 256659.728999998420477 ], [ 359500.692900002002716, 256653.635800000280142 ], [ 359502.140699997544289, 256649.761399999260902 ], [ 359487.104900002479553, 256645.374299999326468 ], [ 359486.96169999986887, 256645.333000000566244 ], [ 359484.444899998605251, 256644.740200001746416 ], [ 359481.883599996566772, 256644.386999998241663 ], [ 359479.300300002098083, 256644.276500001549721 ], [ 359476.718199998140335, 256644.409800000488758 ], [ 359474.159999996423721, 256644.785500001162291 ], [ 359471.648599997162819, 256645.400499999523163 ], [ 359469.206200003623962, 256646.249099999666214 ], [ 359466.854599997401237, 256647.324000000953674 ], [ 359464.614699997007847, 256648.61540000140667 ], [ 359462.50620000064373, 256650.111999999731779 ], [ 359460.548100002110004, 256651.800500001758337 ], [ 359458.757600001990795, 256653.665899999439716 ], [ 359457.150700002908707, 256655.691500000655651 ], [ 359455.741599999368191, 256657.859400000423193 ], [ 359454.909100003540516, 256659.450599998235703 ], [ 359472.378799997270107, 256661.869500000029802 ], [ 359470.394400000572205, 256681.05180000141263 ], [ 359467.41780000180006, 256680.721099998801947 ], [ 359458.488099999725819, 256740.583200000226498 ], [ 359443.518200002610683, 256737.191300000995398 ], [ 359444.156900003552437, 256739.977600000798702 ], [ 359445.030699998140335, 256742.699400000274181 ], [ 359446.133199997246265, 256745.336899999529123 ], [ 359447.456299997866154, 256747.870900001376867 ], [ 359448.01969999819994, 256748.875 ], [ 359464.771999999880791, 256746.536299999803305 ], [ 359473.040200002491474, 256799.122299998998642 ], [ 359458.282499998807907, 256802.081900000572205 ], [ 359461.362899996340275, 256824.781199999153614 ], [ 359461.894500002264977, 256829.401799999177456 ], [ 359462.23759999871254, 256834.040300000458956 ], [ 359462.391699999570847, 256838.688900001347065 ], [ 359462.356600001454353, 256843.339899998158216 ], [ 359462.352899998426437, 256844.638700000941753 ], [ 359462.530500002205372, 256847.145199999213219 ], [ 359462.950099997222424, 256849.622600000351667 ] ], [ [ 359507.436099998652935, 256784.901000000536442 ], [ 359523.311200000345707, 256783.9087999984622 ], [ 359523.64190000295639, 256797.468699999153614 ], [ 359507.698299996554852, 256797.748399998992682 ], [ 359507.436099998652935, 256784.901000000536442 ] ], [ [ 359571.92849999666214, 256796.807199999690056 ], [ 359567.298199996352196, 256792.838500000536442 ], [ 359568.951899997889996, 256787.546799998730421 ], [ 359569.282600000500679, 256780.932199999690056 ], [ 359556.714900001883507, 256755.465999998152256 ], [ 359546.131499998271465, 256755.465999998152256 ], [ 359540.509099997580051, 256755.465999998152256 ], [ 359539.186200000345707, 256782.255100000649691 ], [ 359557.376299999654293, 256782.255100000649691 ], [ 359557.376299999654293, 256794.822900000959635 ], [ 359528.343400001525879, 256793.855099998414516 ], [ 359528.602799996733665, 256778.286400001496077 ], [ 359523.972599998116493, 256777.624899998307228 ], [ 359523.972599998116493, 256765.718600001186132 ], [ 359528.272100001573563, 256765.387899998575449 ], [ 359527.941399998962879, 256756.458200000226498 ], [ 359523.311200000345707, 256756.127500001341105 ], [ 359523.311200000345707, 256741.244600001722574 ], [ 359545.800800003111362, 256741.575399998575449 ], [ 359546.792999997735023, 256731.984200000762939 ], [ 359567.298199996352196, 256732.976399999111891 ], [ 359566.967500001192093, 256750.505100000649691 ], [ 359570.274800002574921, 256751.49720000103116 ], [ 359574.243600003421307, 256754.473799999803305 ], [ 359586.811300002038479, 256779.278599999845028 ], [ 359582.842500001192093, 256787.877500001341105 ], [ 359571.92849999666214, 256796.807199999690056 ] ] ], [ [ [ 359459.942199997603893, 256910.5489999987185 ], [ 359460.141800001263618, 256878.497499998658895 ], [ 359463.190399996936321, 256866.303100001066923 ], [ 359463.088600002229214, 256866.197000000625849 ], [ 359461.293099999427795, 256863.972600001841784 ], [ 359459.693599998950958, 256861.603399999439716 ], [ 359458.301700003445148, 256859.106499999761581 ], [ 359457.127599999308586, 256856.500100001692772 ], [ 359456.179799996316433, 256853.803199999034405 ], [ 359455.46509999781847, 256851.035300001502037 ], [ 359454.988899998366833, 256848.216600000858307 ], [ 359454.754399999976158, 256845.367600001394749 ], [ 359454.741200000047684, 256843.115899998694658 ], [ 359454.773299999535084, 256838.780000001192093 ], [ 359454.629100002348423, 256834.446299999952316 ], [ 359454.308899998664856, 256830.122000001370907 ], [ 359453.813299998641014, 256825.814300000667572 ], [ 359445.657600000500679, 256765.71510000154376 ], [ 359445.125699996948242, 256762.702100001275539 ], [ 359444.355700001120567, 256759.74100000038743 ], [ 359443.352399997413158, 256756.850600000470877 ], [ 359442.12219999730587, 256754.049199998378754 ], [ 359440.858900003135204, 256751.673099998384714 ], [ 359439.381800003349781, 256748.871700000017881 ], [ 359438.124499998986721, 256745.964899998158216 ], [ 359437.094499997794628, 256742.970100000500679 ], [ 359436.297899998724461, 256739.904899999499321 ], [ 359435.739399999380112, 256736.787599999457598 ], [ 359435.42230000346899, 256733.636500000953674 ], [ 359435.348499998450279, 256730.470400001853704 ], [ 359435.518299996852875, 256727.307900000363588 ], [ 359435.818099997937679, 256724.864599999040365 ], [ 359444.893799997866154, 256665.615100000053644 ], [ 359445.456399999558926, 256662.746899999678135 ], [ 359446.256099998950958, 256659.935499999672174 ], [ 359447.2871999964118, 256657.200500000268221 ], [ 359448.542599998414516, 256654.560899998992682 ], [ 359450.01349999755621, 256652.035100001841784 ], [ 359451.689800001680851, 256649.640599999576807 ], [ 359453.55969999730587, 256647.394099999219179 ], [ 359455.610299997031689, 256645.311200000345707 ], [ 359457.827299997210503, 256643.406399998813868 ], [ 359460.195299997925758, 256641.692899998277426 ], [ 359462.697800002992153, 256640.182700000703335 ], [ 359465.317400000989437, 256638.886199999600649 ], [ 359468.035999998450279, 256637.8125 ], [ 359469.918600000441074, 256637.217199999839067 ], [ 359470.812299996614456, 256633.910799998790026 ], [ 359469.21000000089407, 256632.080800000578165 ], [ 359467.432599999010563, 256630.420200001448393 ], [ 359465.497900001704693, 256628.945799998939037 ], [ 359463.425499998033047, 256627.672400001436472 ], [ 359461.236000001430511, 256626.612700000405312 ], [ 359458.951499998569489, 256625.777499999850988 ], [ 359456.594899997115135, 256625.175000000745058 ], [ 359454.189900003373623, 256624.811299998313189 ], [ 359451.760499998927116, 256624.690099999308586 ], [ 359449.33110000193119, 256624.8125 ], [ 359446.926299996674061, 256625.177499998360872 ], [ 359444.570000000298023, 256625.781199999153614 ], [ 359442.285899996757507, 256626.61769999936223 ], [ 359440.097000002861023, 256627.67850000038743 ], [ 359438.025200001895428, 256628.953000001609325 ], [ 359436.091399997472763, 256630.428399998694658 ], [ 359434.314800001680851, 256632.089899998158216 ], [ 359432.713500000536442, 256633.920800000429153 ], [ 359431.303300000727177, 256635.902800001204014 ], [ 359430.444799996912479, 256637.3564000017941 ], [ 359418.318000003695488, 256663.055599998682737 ], [ 359413.684000000357628, 256672.292700000107288 ], [ 359408.83330000191927, 256681.41780000180006 ], [ 359403.76860000193119, 256690.425999999046326 ], [ 359398.492899999022484, 256699.312199998646975 ], [ 359393.00900000333786, 256708.07149999961257 ], [ 359390.604999996721745, 256711.77140000090003 ], [ 359388.294399999082088, 256715.510499998927116 ], [ 359386.194700002670288, 256719.372099999338388 ], [ 359384.312299996614456, 256723.344099998474121 ], [ 359382.652999997138977, 256727.414299998432398 ], [ 359381.222000002861023, 256731.570300001651049 ], [ 359380.023500002920628, 256735.799300000071526 ], [ 359379.06139999628067, 256740.088199999183416 ], [ 359378.822499997913837, 256741.366799999028444 ], [ 359371.024099998176098, 256788.366200000047684 ], [ 359370.193099997937679, 256793.041600000113249 ], [ 359369.603200003504753, 256797.753499999642372 ], [ 359369.255800001323223, 256802.489500001072884 ], [ 359369.152000002563, 256807.236999999731779 ], [ 359369.292000003159046, 256811.983600001782179 ], [ 359369.343400001525879, 256812.843199998140335 ], [ 359396.177799999713898, 256814.236299999058247 ], [ 359395.889399997889996, 256833.921300001442432 ], [ 359371.902999997138977, 256832.740200001746416 ], [ 359372.49379999935627, 256836.894400000572205 ], [ 359372.861199997365475, 256839.925400000065565 ], [ 359372.985600002110004, 256842.976100001484156 ], [ 359372.866200000047684, 256846.026999998837709 ], [ 359372.503899998962879, 256849.058600001037121 ], [ 359371.90089999884367, 256852.051699999719858 ], [ 359371.060999996960163, 256854.987100001424551 ], [ 359369.989699997007847, 256857.846200000494719 ], [ 359368.693800002336502, 256860.610700000077486 ], [ 359367.181400001049042, 256863.263000000268221 ], [ 359365.462300002574921, 256865.786299999803305 ], [ 359363.547399997711182, 256868.16440000012517 ], [ 359361.448899999260902, 256870.382100000977516 ], [ 359361.191799998283386, 256870.63060000166297 ], [ 359360.383400000631809, 256871.366099998354912 ], [ 359359.538400001823902, 256872.059200000017881 ], [ 359358.659100003540516, 256872.708200000226498 ], [ 359357.747599996626377, 256873.311299998313189 ], [ 359356.78490000218153, 256874.05689999833703 ], [ 359355.989600002765656, 256874.978900000452995 ], [ 359355.393399998545647, 256876.040600001811981 ], [ 359355.020099997520447, 256877.199700001627207 ], [ 359354.88459999859333, 256878.409800000488758 ], [ 359354.942100003361702, 256879.317499998956919 ], [ 359423.502899996936321, 256868.649000000208616 ], [ 359433.692500002682209, 256916.451699998229742 ], [ 359459.942199997603893, 256910.5489999987185 ] ] ], [ [ [ 359590.247299998998642, 256952.088799998164177 ], [ 359598.868000000715256, 256945.302499998360872 ], [ 359551.719400003552437, 256843.248199999332428 ], [ 359544.230899997055531, 256846.9543999992311 ], [ 359542.476999998092651, 256847.958399999886751 ], [ 359540.856700003147125, 256849.16609999909997 ], [ 359539.393399998545647, 256850.559999998658895 ], [ 359538.108599998056889, 256852.119800001382828 ], [ 359537.020700000226498, 256853.822999998927116 ], [ 359536.145700000226498, 256855.644600000232458 ], [ 359535.517200000584126, 256857.482500001788139 ], [ 359534.707099996507168, 256859.937899999320507 ], [ 359533.669399999082088, 256862.306200001388788 ], [ 359532.41330000013113, 256864.566199999302626 ], [ 359530.950099997222424, 256866.697900000959635 ], [ 359529.292599998414516, 256868.682399999350309 ], [ 359527.455600000917912, 256870.502000000327826 ], [ 359525.45549999922514, 256872.140599999576807 ], [ 359523.310099996626377, 256873.583500001579523 ], [ 359521.03830000013113, 256874.81810000166297 ], [ 359518.660300001502037, 256875.833299998193979 ], [ 359516.197300001978874, 256876.620200000703335 ], [ 359513.67119999974966, 256877.171599999070168 ], [ 359511.104400001466274, 256877.482700001448393 ], [ 359508.51969999819994, 256877.550799999386072 ], [ 359507.33330000191927, 256877.500399999320507 ], [ 359488.38459999859333, 256877.572900000959635 ], [ 359485.528099998831749, 256877.461899999529123 ], [ 359482.691399998962879, 256877.1081000007689 ], [ 359479.895300000905991, 256876.513799998909235 ], [ 359477.534000001847744, 256930.2972999997437 ], [ 359541.225299999117851, 256927.503400001674891 ], [ 359559.896099999547005, 256967.689599998295307 ], [ 359577.476700000464916, 256958.653000000864267 ], [ 359590.247299998998642, 256952.088799998164177 ] ] ], [ [ [ 359544.781400002539158, 256572.171900000423193 ], [ 359544.557499997317791, 256570.372099999338388 ], [ 359543.707000002264977, 256621.874200001358986 ], [ 359551.191699996590614, 256623.557700000703335 ], [ 359543.415399998426437, 256639.530699998140335 ], [ 359543.058600001037121, 256661.137899998575449 ], [ 359558.807199999690056, 256672.747900001704693 ], [ 359560.156999997794628, 256673.697200000286102 ], [ 359564.171300001442432, 256676.718299999833107 ], [ 359568.034400001168251, 256679.930700000375509 ], [ 359571.737000003457069, 256683.32660000026226 ], [ 359575.270599998533726, 256686.898200001567602 ], [ 359578.6266999989748, 256690.637099999934435 ], [ 359581.797499999403954, 256694.534299999475479 ], [ 359584.775499999523163, 256698.580699998885393 ], [ 359587.553700000047684, 256702.7668999992311 ], [ 359590.125600002706051, 256707.082899998873472 ], [ 359592.484999999403954, 256711.5185999982059 ], [ 359604.597000002861023, 256739.244699999690056 ], [ 359604.708700001239777, 256739.476799998432398 ], [ 359605.931800000369549, 256741.707800000905991 ], [ 359607.362800002098083, 256743.811500001698732 ], [ 359608.988399997353554, 256745.768699999898672 ], [ 359610.79389999806881, 256747.561299998313189 ], [ 359611.103399999439716, 256747.816799998283386 ], [ 359612.012599997222424, 256748.35020000115037 ], [ 359613.019799999892712, 256748.661299999803305 ], [ 359614.071400001645088, 256748.733300000429153 ], [ 359615.111599996685982, 256748.562699999660254 ], [ 359616.085100002586842, 256748.158300001174212 ], [ 359616.939999997615814, 256747.541799999773502 ], [ 359617.631099998950958, 256746.745799999684095 ], [ 359618.121500000357628, 256745.812699999660254 ], [ 359618.385200001299381, 256744.792100001126528 ], [ 359619.105599999427795, 256739.15989999845624 ], [ 359619.712499998509884, 256733.514199998229742 ], [ 359620.205600000917912, 256727.857500001788139 ], [ 359620.584600001573563, 256722.19200000166893 ], [ 359621.163099996745586, 256712.00560000166297 ], [ 359621.179700002074242, 256709.47580000013113 ], [ 359621.065800003707409, 256701.964600000530481 ], [ 359620.708099998533726, 256694.460999999195337 ], [ 359620.107199996709824, 256686.973000001162291 ], [ 359619.263599999248981, 256679.508400000631809 ], [ 359618.178199999034405, 256672.075100000947714 ], [ 359617.959200002253056, 256670.817299999296665 ], [ 359617.157700002193451, 256667.166700001806021 ], [ 359616.1199000030756, 256663.576200000941753 ], [ 359614.850299999117851, 256660.061000000685453 ], [ 359613.35419999808073, 256656.635899998247623 ], [ 359611.637999996542931, 256653.315699998289347 ], [ 359609.708999998867512, 256650.114500001072884 ], [ 359607.575499996542931, 256647.045800000429153 ], [ 359605.246399998664856, 256644.122699998319149 ], [ 359602.731799997389317, 256641.357700001448393 ], [ 359553.737000003457069, 256590.85359999909997 ], [ 359552.823499999940395, 256589.872299998998642 ], [ 359551.037799999117851, 256587.690499998629093 ], [ 359549.447200000286102, 256585.362700000405312 ], [ 359548.063699997961521, 256582.906100001186132 ], [ 359546.89750000089407, 256580.339299999177456 ], [ 359545.957299999892712, 256577.68129999935627 ], [ 359545.250200003385544, 256574.951999999582767 ], [ 359544.781400002539158, 256572.171900000423193 ] ] ], [ [ [ 359471.024300001561642, 257018.32880000025034 ], [ 359471.295400001108646, 256982.832600001245737 ], [ 359458.422499999403954, 256978.954700000584126 ], [ 359457.504799999296665, 257020.265599999576807 ], [ 359471.024300001561642, 257018.32880000025034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105402103700", "MAP": "A9-729-T008", "PARCEL_NAM": "7 of TRACT 1", "ACRE": "3,861 sq ft", "LONGITUDE": -64.92433657, "LATITUDE": 18.34037935, "OBJECTID_1": 16371, "PARCEL_NO_": "105402103700", "Tax_Legal_": "PAR. #7 OF TRACT 1 TAARNEBJERG", "Name": "JAMES H HINDELS REVOCABLE TRUST", "Address": "1330 Estate Taarnebjerg", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 57900, "Improved_V": 669500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 231.22385667500001, "SHAPE_Area": 630.77929939299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359611.043099999427795, 256757.254200000315905 ], [ 359610.498800002038479, 256756.842999998480082 ], [ 359608.61540000140667, 256755.579999998211861 ], [ 359606.346100002527237, 256753.796300001442432 ], [ 359604.235299997031689, 256751.827500000596046 ], [ 359602.298199996352196, 256749.687699999660254 ], [ 359600.548500001430511, 256747.392099998891354 ], [ 359598.998700000345707, 256744.956999998539686 ], [ 359597.65990000218153, 256742.399900000542402 ], [ 359585.561800003051758, 256714.70549999922514 ], [ 359585.187799997627735, 256713.972100000828505 ], [ 359582.864900000393391, 256709.730900000780821 ], [ 359580.33110000193119, 256705.612199999392033 ], [ 359577.593000002205372, 256701.626499999314547 ], [ 359574.657499998807907, 256697.7837999984622 ], [ 359571.531999997794628, 256694.094000000506639 ], [ 359568.224500000476837, 256690.566300000995398 ], [ 359564.743500001728535, 256687.209899999201298 ], [ 359561.097699999809265, 256684.03319999948144 ], [ 359560.128300003707409, 256683.252599999308586 ], [ 359559.138099998235703, 256682.498700000345707 ], [ 359558.127700001001358, 256681.771999999880791 ], [ 359557.097800001502037, 256681.07319999858737 ], [ 359553.484399996697903, 256681.559399999678135 ], [ 359547.57039999961853, 256688.441100001335144 ], [ 359546.851999998092651, 256691.315000001341105 ], [ 359559.784299999475479, 256703.528900001198053 ], [ 359561.2212999984622, 256703.672600001096725 ], [ 359568.980700001120567, 256695.482099998742342 ], [ 359578.895499996840954, 256705.109499998390675 ], [ 359584.068499997258186, 256713.587400000542402 ], [ 359586.798600003123283, 256720.915699999779463 ], [ 359582.487800002098083, 256724.795400001108646 ], [ 359594.414399996399879, 256749.366999998688698 ], [ 359606.771999999880791, 256762.874099999666214 ], [ 359611.043099999427795, 256757.254200000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105404170100", "MAP": "A9-461-T94", "PARCEL_NAM": "6 REM", "ACRE": "5.79", "LONGITUDE": -64.923766, "LATITUDE": 18.33160339, "OBJECTID_1": 19574, "PARCEL_NO_": "105404170100", "Tax_Legal_": "1, 2, 3, & ESTATE THOMAS 6F & 6B NEW QUARTER", "Name": "EMPLOYEES RETIREMENT SYSTEM OF THE GOVT OF THE VI", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1294.69371439, "SHAPE_Area": 23843.6514207 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359717.78660000115633, 255926.881999999284744 ], [ 359697.734899997711182, 255914.263300001621246 ], [ 359695.287100002169609, 255917.620799999684095 ], [ 359692.024099998176098, 255922.027100000530481 ], [ 359652.730599999427795, 255896.374200001358986 ], [ 359655.998999997973442, 255891.334699999541044 ], [ 359692.75959999859333, 255835.695799998939037 ], [ 359698.493699997663498, 255825.188099998980761 ], [ 359527.714299999177456, 255717.124200001358986 ], [ 359525.234700001776218, 255717.589999999850988 ], [ 359513.928300000727177, 255719.608399998396635 ], [ 359504.200400002300739, 255725.650499999523163 ], [ 359496.074400000274181, 255732.972199998795986 ], [ 359487.143799997866154, 255740.076299998909235 ], [ 359484.74099999666214, 255738.156800001859665 ], [ 359454.677299998700619, 255764.930700000375509 ], [ 359344.809500001370907, 255693.948399998247623 ], [ 359343.360500000417233, 255674.727099999785423 ], [ 359330.527800001204014, 255666.600499998778105 ], [ 359313.438799999654293, 255684.825800001621246 ], [ 359451.378300003707409, 255773.558600001037121 ], [ 359451.356799997389317, 255776.091499999165535 ], [ 359470.609399996697903, 255787.859200000762939 ], [ 359474.615699999034405, 255790.847300000488758 ], [ 359773.741099998354912, 255984.546300001442432 ], [ 359777.005900003015995, 255979.928899999707937 ], [ 359711.262299999594688, 255935.483399998396635 ], [ 359714.523599997162819, 255931.288199998438358 ], [ 359717.78660000115633, 255926.881999999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105404170100", "MAP": "A9-431-T93", "PARCEL_NAM": "4", "ACRE": null, "LONGITUDE": -64.92203266, "LATITUDE": 18.33255837, "OBJECTID_1": 19574, "PARCEL_NO_": "105404170100", "Tax_Legal_": "1, 2, 3, & ESTATE THOMAS 6F & 6B NEW QUARTER", "Name": "EMPLOYEES RETIREMENT SYSTEM OF THE GOVT OF THE VI", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 468.60032017499998, "SHAPE_Area": 10718.040449399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359818.667300000786781, 255916.941899999976158 ], [ 359811.435699999332428, 255913.927400000393391 ], [ 359747.286700002849102, 255871.605799999088049 ], [ 359732.852200001478195, 255862.199599999934435 ], [ 359692.75959999859333, 255835.695799998939037 ], [ 359655.998999997973442, 255891.334699999541044 ], [ 359652.730599999427795, 255896.374200001358986 ], [ 359692.024099998176098, 255922.027100000530481 ], [ 359695.287100002169609, 255917.620799999684095 ], [ 359697.734899997711182, 255914.263300001621246 ], [ 359717.78660000115633, 255926.881999999284744 ], [ 359714.523599997162819, 255931.288199998438358 ], [ 359711.262299999594688, 255935.483399998396635 ], [ 359777.005900003015995, 255979.928899999707937 ], [ 359779.459100000560284, 255975.938200000673532 ], [ 359818.667300000786781, 255916.941899999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105404170100", "MAP": "A9-431-T93", "PARCEL_NAM": "3", "ACRE": null, "LONGITUDE": -64.92198894000001, "LATITUDE": 18.3315351, "OBJECTID_1": 19574, "PARCEL_NO_": "105404170100", "Tax_Legal_": "1, 2, 3, & ESTATE THOMAS 6F & 6B NEW QUARTER", "Name": "EMPLOYEES RETIREMENT SYSTEM OF THE GOVT OF THE VI", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 415.47124369, "SHAPE_Area": 5814.9683931500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359827.814800001680851, 255789.727299999445677 ], [ 359831.912900000810623, 255781.950399998575449 ], [ 359827.872299998998642, 255782.972800001502037 ], [ 359802.824500001966953, 255788.889499999582767 ], [ 359792.336999997496605, 255789.436900001019239 ], [ 359781.876500003039837, 255786.818199999630451 ], [ 359772.25110000371933, 255780.82880000025034 ], [ 359765.066299997270107, 255772.326299998909235 ], [ 359761.916500002145767, 255763.434500001370907 ], [ 359750.01070000231266, 255741.1722999997437 ], [ 359735.290200002491474, 255765.327599998563528 ], [ 359720.564400002360344, 255790.116099998354912 ], [ 359714.844700001180172, 255798.935199998319149 ], [ 359698.493699997663498, 255825.188099998980761 ], [ 359692.75959999859333, 255835.695799998939037 ], [ 359732.852200001478195, 255862.199599999934435 ], [ 359739.392700001597404, 255851.698399998247623 ], [ 359754.950000002980232, 255823.961399998515844 ], [ 359771.923900000751019, 255819.245200000703335 ], [ 359787.258199997246265, 255817.68189999833703 ], [ 359797.85530000180006, 255804.258699998259544 ], [ 359809.192299999296665, 255798.651900000870228 ], [ 359802.765100002288818, 255795.855099998414516 ], [ 359827.814800001680851, 255789.727299999445677 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105404170100", "MAP": "A9-461-T94", "PARCEL_NAM": "6A", "ACRE": "2.1", "LONGITUDE": -64.92304149, "LATITUDE": 18.33113123, "OBJECTID_1": 19574, "PARCEL_NO_": "105404170100", "Tax_Legal_": "1, 2, 3, & ESTATE THOMAS 6F & 6B NEW QUARTER", "Name": "EMPLOYEES RETIREMENT SYSTEM OF THE GOVT OF THE VI", "Address": "3438 KRONPRINDSENS GADE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 472.72524905500001, "SHAPE_Area": 9914.3559491800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359598.699000000953674, 255707.636599998921156 ], [ 359591.451200000941753, 255706.521800000220537 ], [ 359574.502499997615814, 255708.282900001853704 ], [ 359534.926600001752377, 255715.769400000572205 ], [ 359531.696000002324581, 255716.376299999654293 ], [ 359527.714299999177456, 255717.124200001358986 ], [ 359698.493699997663498, 255825.188099998980761 ], [ 359714.844700001180172, 255798.935199998319149 ], [ 359720.564400002360344, 255790.116099998354912 ], [ 359695.111299999058247, 255748.955600000917912 ], [ 359686.362300001084805, 255734.740699999034405 ], [ 359667.894500002264977, 255725.512600000947714 ], [ 359598.699000000953674, 255707.636599998921156 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "105401410700", "MAP": "MB", "PARCEL_NAM": "9A NORRE GADE", "ACRE": "2,411 sq ft", "LONGITUDE": -64.92932992, "LATITUDE": 18.3417456, "OBJECTID_1": 12085, "PARCEL_NO_": "105401410700", "Tax_Legal_": "NORRE GADE 9A KINGS QUARTER", "Name": "9A NORRE GADE INC", "Address": "PO Box 7501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 54200, "Improved_V": 541800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.135716793, "SHAPE_Area": 356.43705728399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358990.253799997270107, 256935.330400001257658 ], [ 358990.096400000154972, 256933.296700000762939 ], [ 358976.248499996960163, 256933.562699999660254 ], [ 358974.807800002396107, 256912.732299998402596 ], [ 358958.109600000083447, 256913.75959999859333 ], [ 358962.604699999094009, 256931.807900000363588 ], [ 358964.355599999427795, 256935.555799998342991 ], [ 358990.253799997270107, 256935.330400001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701019700", "MAP": "A9-503-T97", "PARCEL_NAM": "32-8", "ACRE": ".27", "LONGITUDE": -64.86418145, "LATITUDE": 18.32888613, "OBJECTID_1": 39208, "PARCEL_NO_": "107701019700", "Tax_Legal_": "FRYDENHOJ ESTATE 32-8 No.3 RED HOOK QTR.", "Name": "ASHTIAN, GREGORY", "Address": "7276 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 33400, "Improved_V": 211400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.11374046, "SHAPE_Area": 1315.4730627199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365882.19709999859333, 255580.901000000536442 ], [ 365875.463600002229214, 255519.417700000107288 ], [ 365859.139600001275539, 255542.504399999976158 ], [ 365846.805699996650219, 255570.478900000452995 ], [ 365865.956299997866154, 255584.359099999070168 ], [ 365870.000299997627735, 255587.290100000798702 ], [ 365882.19709999859333, 255580.901000000536442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102703046600", "MAP": "G3-150-T75", "PARCEL_NAM": "293A", "ACRE": "0.07", "LONGITUDE": -64.96340679, "LATITUDE": 18.34864637, "OBJECTID_1": 3429, "PARCEL_NO_": "102703046600", "Tax_Legal_": "CONTANT 293 & 314 7A S S QTR", "Name": "DENNIS, DAVID ANTHONY", "Address": "PO BOX 8791", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 33200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.725684088999998, "SHAPE_Area": 232.18292030399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355375.970299996435642, 257646.844000000506639 ], [ 355375.980099998414516, 257642.20160000026226 ], [ 355374.991800002753735, 257643.048799999058247 ], [ 355370.614699997007847, 257645.590300001204014 ], [ 355367.508400000631809, 257648.414200000464916 ], [ 355364.684500001370907, 257651.096900001168251 ], [ 355360.731100000441074, 257654.203200001269579 ], [ 355357.483599998056889, 257658.297899998724461 ], [ 355353.388899996876717, 257662.816100001335144 ], [ 355350.000200003385544, 257666.346000000834465 ], [ 355349.779500000178814, 257671.55460000038147 ], [ 355349.330700002610683, 257677.838199999183416 ], [ 355375.970299996435642, 257646.844000000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903034400", "MAP": "D9-1344-T77", "PARCEL_NAM": "294", "ACRE": "0.19", "LONGITUDE": -64.9255224, "LATITUDE": 18.34854086, "OBJECTID_1": 4856, "PARCEL_NO_": "102903034400", "Tax_Legal_": "HOSPITAL GROUND 294 GREAT NORTHSIDE QTR", "Name": "JENNINGS, RUDOLPH", "Address": "PO Box 652", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 16200, "Improved_V": 55800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.931588592, "SHAPE_Area": 740.52388087600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359368.423100002110004, 257663.878600001335144 ], [ 359363.513300001621246, 257662.13289999961853 ], [ 359351.971799999475479, 257692.852000001817942 ], [ 359351.54389999806881, 257693.818199999630451 ], [ 359368.642499998211861, 257692.495900001376867 ], [ 359394.347499996423721, 257690.508000001311302 ], [ 359390.871500000357628, 257686.448300000280142 ], [ 359384.325900003314018, 257678.803399998694658 ], [ 359372.167499996721745, 257664.603100001811981 ], [ 359368.423100002110004, 257663.878600001335144 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903036900", "MAP": "D9-6238-T97", "PARCEL_NAM": "294C-1", "ACRE": ".29", "LONGITUDE": -64.92556769, "LATITUDE": 18.34888957, "OBJECTID_1": 4881, "PARCEL_NO_": "102903036900", "Tax_Legal_": "HOSPITAL GROUND 294C-1 #9 NEW QTR.", "Name": "HODGE, ALVIN", "Address": "PO Box 10874", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 37500, "Improved_V": 124100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.178022849, "SHAPE_Area": 1440.7077090600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359368.642499998211861, 257692.495900001376867 ], [ 359340.667300000786781, 257694.659299999475479 ], [ 359342.222300000488758, 257701.427000001072884 ], [ 359348.374300003051758, 257736.518899999558926 ], [ 359359.626800000667572, 257740.832800000905991 ], [ 359376.472999997437, 257751.103199999779463 ], [ 359379.689300000667572, 257752.184999998658895 ], [ 359380.297799997031689, 257752.130300000309944 ], [ 359368.642499998211861, 257692.495900001376867 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903034300", "MAP": "D9-6238-T97", "PARCEL_NAM": "294C-REM", "ACRE": ".32", "LONGITUDE": -64.92529259, "LATITUDE": 18.34884128, "OBJECTID_1": 4855, "PARCEL_NO_": "102903034300", "Tax_Legal_": "HOSPITAL GROUND 294C REM. 9 NEW QTR", "Name": "JENNINGS COLLIER, MARCELLA & LAURENCE JENNINGS", "Address": "PO Box 8601", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 176.05365081100001, "SHAPE_Area": 1757.0571896399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359408.120800003409386, 257689.442899998277426 ], [ 359368.642499998211861, 257692.495900001376867 ], [ 359380.297799997031689, 257752.130300000309944 ], [ 359386.145199999213219, 257751.604600001126528 ], [ 359391.015399999916553, 257747.844700001180172 ], [ 359394.274800002574921, 257743.860599998384714 ], [ 359402.472800001502037, 257728.09569999948144 ], [ 359409.080099999904633, 257718.674499999731779 ], [ 359408.120800003409386, 257689.442899998277426 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903038900", "MAP": "D9-1344-T77", "PARCEL_NAM": "294E", "ACRE": "0.05", "LONGITUDE": -64.92523583000001, "LATITUDE": 18.34846977, "OBJECTID_1": 4902, "PARCEL_NO_": "102903038900", "Tax_Legal_": "HOSPITAL GROUND 294-E KINGS QUARTER", "Name": "JENNINGS, EDITH ROSE", "Address": "PO Box 11548", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 6100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.163155707, "SHAPE_Area": 358.07022141099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359406.987499997019768, 257654.909299999475479 ], [ 359406.937899999320507, 257649.03999999910593 ], [ 359398.973099999129772, 257657.004799999296665 ], [ 359391.881099998950958, 257663.223900001496077 ], [ 359403.436700001358986, 257679.353199999779463 ], [ 359398.383000001311302, 257685.555399999022484 ], [ 359394.347499996423721, 257690.508000001311302 ], [ 359408.120800003409386, 257689.442899998277426 ], [ 359407.955899998545647, 257684.417500000447035 ], [ 359407.483300000429153, 257670.0185999982059 ], [ 359406.987499997019768, 257654.909299999475479 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "102903038800", "MAP": "D9-1344-T77", "PARCEL_NAM": "294D", "ACRE": "0.10", "LONGITUDE": -64.92540894, "LATITUDE": 18.34848377, "OBJECTID_1": 4901, "PARCEL_NO_": "102903038800", "Tax_Legal_": "HOSPITAL GROUND 294-D GT. NORTHSIDE", "Name": "JENNINGS, E. R. & RAIMER, A", "Address": "PO Box 11548", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 13400, "Improved_V": 33300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.376765911299998, "SHAPE_Area": 392.83642622899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359403.436700001358986, 257679.353199999779463 ], [ 359391.881099998950958, 257663.223900001496077 ], [ 359386.53490000218153, 257665.07880000025034 ], [ 359381.18860000371933, 257664.969700001180172 ], [ 359372.842799998819828, 257664.733800001442432 ], [ 359372.167499996721745, 257664.603100001811981 ], [ 359384.325900003314018, 257678.803399998694658 ], [ 359390.871500000357628, 257686.448300000280142 ], [ 359394.347499996423721, 257690.508000001311302 ], [ 359398.383000001311302, 257685.555399999022484 ], [ 359403.436700001358986, 257679.353199999779463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101203010300", "MAP": "D9-7532-T005", "PARCEL_NAM": "17-7 REM", "ACRE": "1.68", "LONGITUDE": -64.946069, "LATITUDE": 18.37103788, "OBJECTID_1": 703, "PARCEL_NO_": "101203010300", "Tax_Legal_": "ST PETER 17-7 Remainder No.2 LITTLE NORTHSIDE QTR", "Name": "STIEHLER, MARY", "Address": "3208 Morse Ave S", "City": "Seattle", "State": "Washington", "Zip": 98144, "Country": "United States", "Land_Value": 509500, "Improved_V": 157600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 351.863297606, "SHAPE_Area": 6527.41444916 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357188.299400001764297, 260119.937800001353025 ], [ 357134.173799999058247, 260074.338199999183416 ], [ 357100.831200003623962, 260111.183499999344349 ], [ 357122.228299997746944, 260135.373399998992682 ], [ 357180.253799997270107, 260200.97239999845624 ], [ 357185.756999999284744, 260190.0912000015378 ], [ 357190.726199999451637, 260174.721999999135733 ], [ 357220.795299999415874, 260147.314800001680851 ], [ 357188.299400001764297, 260119.937800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404020100", "MAP": "D9-299-T62", "PARCEL_NAM": "23", "ACRE": "1.01", "LONGITUDE": -65.0046143, "LATITUDE": 18.35583166, "OBJECTID_1": 1847, "PARCEL_NO_": "102404020100", "Tax_Legal_": "FORTUNA 23 WEST END QTR", "Name": "POWERS, DEBRA & BARRETT, JR. A. J", "Address": "200 Teamon Cir", "City": "Griffin", "State": "Georgia", "Zip": 30223, "Country": "United States", "Land_Value": 110100, "Improved_V": 241400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 261.86139951400003, "SHAPE_Area": 4233.1616897699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351048.185199998319149, 258426.833799999207258 ], [ 350987.756700001657009, 258373.230000000447035 ], [ 350986.196400001645088, 258375.311599999666214 ], [ 350952.280799999833107, 258420.560499999672174 ], [ 350979.542499996721745, 258438.726500000804663 ], [ 351001.163699999451637, 258456.424300000071526 ], [ 351010.808899998664856, 258460.09180000051856 ], [ 351018.895400002598763, 258457.413800001144409 ], [ 351043.293399997055531, 258433.126600001007318 ], [ 351048.185199998319149, 258426.833799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021300", "MAP": "D9-299-T62", "PARCEL_NAM": "24", "ACRE": "1.02", "LONGITUDE": -65.00445209, "LATITUDE": 18.35538556, "OBJECTID_1": 1859, "PARCEL_NO_": "102404021300", "Tax_Legal_": "FORTUNA 24 WEST END QTR", "Name": "BENJAMIN, JOHN & NUTTIE", "Address": "P.O BOX 5108", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 105800, "Improved_V": 225900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 280.47758222099998, "SHAPE_Area": 4081.3349716900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 351014.468999996781349, 258323.316700000315905 ], [ 350966.917499996721745, 258354.74439999833703 ], [ 351048.185199998319149, 258426.833799999207258 ], [ 351052.329999998211861, 258413.568900000303984 ], [ 351052.389399997889996, 258406.603300001472235 ], [ 351053.29280000180006, 258395.211599998176098 ], [ 351049.383500002324581, 258380.825199998915195 ], [ 351047.806900002062321, 258376.590500000864267 ], [ 351039.099299997091293, 258357.520799998193979 ], [ 351031.934199996292591, 258346.696400001645088 ], [ 351014.468999996781349, 258323.316700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404020200", "MAP": "D9-299-T62", "PARCEL_NAM": "22", "ACRE": "1.00", "LONGITUDE": -65.00515744, "LATITUDE": 18.35542204, "OBJECTID_1": 1848, "PARCEL_NO_": "102404020200", "Tax_Legal_": "FORTUNA 22 WEST END QTR", "Name": "SIMMONS, AL J. & SHARON A.", "Address": "123 N Wyoming Ave", "City": "South Orange", "State": "New Jersey", "Zip": 7079, "Country": "United States", "Land_Value": 93000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 267.36574914699997, "SHAPE_Area": 4377.763368 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350957.691399998962879, 258346.560300000011921 ], [ 350930.246799997985363, 258322.215300001204014 ], [ 350901.767200000584126, 258386.794300001114607 ], [ 350952.280799999833107, 258420.560499999672174 ], [ 350986.196400001645088, 258375.311599999666214 ], [ 350987.756700001657009, 258373.230000000447035 ], [ 350957.691399998962879, 258346.560300000011921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404020300", "MAP": "D9-299-T62", "PARCEL_NAM": "21", "ACRE": "1.00", "LONGITUDE": -65.00565287000001, "LATITUDE": 18.35505789, "OBJECTID_1": 1849, "PARCEL_NO_": "102404020300", "Tax_Legal_": "FORTUNA 21 WEST END QTR", "Name": "ROMAIN, LOUISE E", "Address": "PO Box 10795", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 104900, "Improved_V": 131700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.97204722800001, "SHAPE_Area": 4578.2078237899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350914.646999999880791, 258308.377399999648333 ], [ 350880.339800000190735, 258277.94480000063777 ], [ 350852.952600002288818, 258342.909499999135733 ], [ 350865.716899998486042, 258359.057000000029802 ], [ 350872.919799998402596, 258365.448800001293421 ], [ 350882.523599997162819, 258373.971099998801947 ], [ 350901.767200000584126, 258386.794300001114607 ], [ 350930.246799997985363, 258322.215300001204014 ], [ 350914.646999999880791, 258308.377399999648333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021400", "MAP": "D9-299-T62", "PARCEL_NAM": "25", "ACRE": "1.01", "LONGITUDE": -65.00491862, "LATITUDE": 18.354881, "OBJECTID_1": 1860, "PARCEL_NO_": "102404021400", "Tax_Legal_": "FORTUNA 25 WEST END QTR", "Name": "PEMBERTON, CHARLES & LILLIA", "Address": "PO Box 2343", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 98200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.48653556, "SHAPE_Area": 3975.5706762599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350991.267200000584126, 258292.956900000572205 ], [ 350967.462600000202656, 258271.009799998253584 ], [ 350924.371899999678135, 258313.026700001209974 ], [ 350922.236100003123283, 258315.109400000423193 ], [ 350957.691399998962879, 258346.560300000011921 ], [ 350966.917499996721745, 258354.74439999833703 ], [ 351014.468999996781349, 258323.316700000315905 ], [ 351000.043099999427795, 258304.005499999970198 ], [ 350991.267200000584126, 258292.956900000572205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404020500", "MAP": "D9-299-T62", "PARCEL_NAM": "19", "ACRE": "1.03", "LONGITUDE": -65.00658558000001, "LATITUDE": 18.35429325, "OBJECTID_1": 1851, "PARCEL_NO_": "102404020500", "Tax_Legal_": "FORTUNA 19 WEST END QTR", "Name": "CHRISTIAN, LINDA", "Address": "PO Box 373", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 100000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 305.28803009400002, "SHAPE_Area": 5009.1457672400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350817.609099999070168, 258222.298799999058247 ], [ 350775.054099999368191, 258184.549899999052286 ], [ 350765.751900002360344, 258235.1554000005126 ], [ 350758.66889999806881, 258273.6886 ], [ 350764.021899998188019, 258275.264899998903275 ], [ 350775.25450000166893, 258281.900800000876188 ], [ 350782.461000002920628, 258287.870400000363588 ], [ 350787.261100001633167, 258292.342599999159575 ], [ 350795.254100002348423, 258300.640700001269579 ], [ 350805.656999997794628, 258310.013999998569489 ], [ 350830.805200003087521, 258234.004599999636412 ], [ 350817.609099999070168, 258222.298799999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021500", "MAP": "D9-299-T62", "PARCEL_NAM": "26", "ACRE": "1.03", "LONGITUDE": -65.00541938000001, "LATITUDE": 18.35449131, "OBJECTID_1": 1861, "PARCEL_NO_": "102404021500", "Tax_Legal_": "FORTUNA 26 WEST END QTR", "Name": "VALENTINE, KATHLEEN", "Address": "PO Box 7581", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 140500, "Improved_V": 291000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 274.11985954599999, "SHAPE_Area": 4366.00510467 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350915.971900001168251, 258233.86769999936223 ], [ 350914.182599999010563, 258228.781500000506639 ], [ 350869.403399996459484, 258257.896699998527765 ], [ 350862.672700002789497, 258262.272900000214577 ], [ 350869.191399998962879, 258268.055399999022484 ], [ 350914.646999999880791, 258308.377399999648333 ], [ 350922.236100003123283, 258315.109400000423193 ], [ 350924.371899999678135, 258313.026700001209974 ], [ 350967.462600000202656, 258271.009799998253584 ], [ 350958.463699996471405, 258262.713100001215935 ], [ 350948.046400003135204, 258255.028499998152256 ], [ 350928.763199999928474, 258246.84910000115633 ], [ 350922.354099996387959, 258241.941500000655651 ], [ 350919.161200001835823, 258238.115699999034405 ], [ 350915.971900001168251, 258233.86769999936223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404020600", "MAP": "D9-299-T62", "PARCEL_NAM": "18", "ACRE": "1.02", "LONGITUDE": -65.00703654, "LATITUDE": 18.35413905, "OBJECTID_1": 1852, "PARCEL_NO_": "102404020600", "Tax_Legal_": "FORTUNA 18 WEST END QTR", "Name": "SEBASTIAN, RUDOLPH", "Address": "PO Box 781", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 106700, "Improved_V": 160300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.26464279800001, "SHAPE_Area": 3669.3945066599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350768.196999996900558, 258178.467300001531839 ], [ 350759.497299998998642, 258170.763199999928474 ], [ 350701.873400002717972, 258267.326999999582767 ], [ 350713.280000001192093, 258268.305700000375509 ], [ 350739.88289999961853, 258269.156800001859665 ], [ 350750.345200002193451, 258271.564399998635054 ], [ 350755.17400000244379, 258272.659400001168251 ], [ 350758.66889999806881, 258273.6886 ], [ 350765.751900002360344, 258235.1554000005126 ], [ 350775.054099999368191, 258184.549899999052286 ], [ 350768.196999996900558, 258178.467300001531839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404020800", "MAP": "D9-299-T62", "PARCEL_NAM": "16", "ACRE": "1.01", "LONGITUDE": -65.00758693, "LATITUDE": 18.35370159, "OBJECTID_1": 1854, "PARCEL_NO_": "102404020800", "Tax_Legal_": "FORTUNA 16 WEST END QTR", "Name": "ALI, DANIEL S. & DANIELLA S.", "Address": "PO Box 6603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 110100, "Improved_V": 248100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.927239418, "SHAPE_Area": 4657.3100233799996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350674.651199996471405, 258148.124400001019239 ], [ 350661.306000001728535, 258144.563499998301268 ], [ 350659.455899998545647, 258149.863899998366833 ], [ 350647.046499997377396, 258186.703699998557568 ], [ 350648.542300000786781, 258200.437100000679493 ], [ 350648.506300002336502, 258204.658599998801947 ], [ 350649.235299997031689, 258213.741599999368191 ], [ 350653.838100001215935, 258227.660100001841784 ], [ 350737.110799998044968, 258182.818199999630451 ], [ 350749.262299999594688, 258176.274700000882149 ], [ 350750.680100001394749, 258175.511300001293421 ], [ 350759.497299998998642, 258170.763199999928474 ], [ 350753.985799998044968, 258169.292599998414516 ], [ 350753.770300000905991, 258169.235100001096725 ], [ 350745.691100001335144, 258167.0793999992311 ], [ 350717.12950000166893, 258159.458500001579523 ], [ 350674.651199996471405, 258148.124400001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021600", "MAP": "D9-299-T62", "PARCEL_NAM": "27", "ACRE": "1.01", "LONGITUDE": -65.00589572, "LATITUDE": 18.3540185, "OBJECTID_1": 1862, "PARCEL_NO_": "102404021600", "Tax_Legal_": "FORTUNA 27 WEST END QTR", "Name": "KUMAR, KAMAL S.", "Address": "36 Woodbridge Ave", "City": "Metuchen", "State": "New Jersey", "Zip": 8840, "Country": "United States", "Land_Value": 110100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.76993838099997, "SHAPE_Area": 4985.2727090500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350897.762999996542931, 258194.244199998676777 ], [ 350875.700099997222424, 258174.895700000226498 ], [ 350818.805200003087521, 258208.410900000482798 ], [ 350808.678099997341633, 258214.376499999314547 ], [ 350817.609099999070168, 258222.298799999058247 ], [ 350841.306500002741814, 258243.319899998605251 ], [ 350862.672700002789497, 258262.272900000214577 ], [ 350869.403399996459484, 258257.896699998527765 ], [ 350914.182599999010563, 258228.781500000506639 ], [ 350904.949600003659725, 258202.535599999129772 ], [ 350900.962999999523163, 258197.225699998438358 ], [ 350899.370200000703335, 258194.890599999576807 ], [ 350897.762999996542931, 258194.244199998676777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021700", "MAP": "D9-299-T62", "PARCEL_NAM": "29", "ACRE": "1.01", "LONGITUDE": -65.0065115, "LATITUDE": 18.35325094, "OBJECTID_1": 1863, "PARCEL_NO_": "102404021700", "Tax_Legal_": "FORTUNA 28&29 WEST END QTR", "Name": "KUMAR, KAMAL S.", "Address": "36 Woodbridge Ave", "City": "Metuchen", "State": "New Jersey", "Zip": 8840, "Country": "United States", "Land_Value": 174200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.88751619700002, "SHAPE_Area": 4021.58428086 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350840.510499998927116, 258099.62779999896884 ], [ 350835.121699996292591, 258083.675000000745058 ], [ 350755.517399996519089, 258141.872699998319149 ], [ 350755.956000000238419, 258145.05689999833703 ], [ 350756.307199999690056, 258147.606100000441074 ], [ 350759.497299998998642, 258170.763199999928474 ], [ 350768.196999996900558, 258178.467300001531839 ], [ 350780.648999996483326, 258170.458799999207258 ], [ 350846.719999998807907, 258127.965199999511242 ], [ 350844.464699998497963, 258108.737199999392033 ], [ 350841.298799999058247, 258101.745200000703335 ], [ 350840.510499998927116, 258099.62779999896884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404020700", "MAP": "D9-299-T62", "PARCEL_NAM": "17", "ACRE": "1.00", "LONGITUDE": -65.00745603, "LATITUDE": 18.35409795, "OBJECTID_1": 1853, "PARCEL_NO_": "102404020700", "Tax_Legal_": "FORTUNA ESTATE 17 WEST END QTR", "Name": "RABSATT, ECEDRO (LIFE ESTATE)", "Address": "PO Box 1212", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 97400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 301.00859216100002, "SHAPE_Area": 3976.8471304200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350701.873400002717972, 258267.326999999582767 ], [ 350759.497299998998642, 258170.763199999928474 ], [ 350750.680100001394749, 258175.511300001293421 ], [ 350749.262299999594688, 258176.274700000882149 ], [ 350737.110799998044968, 258182.818199999630451 ], [ 350653.838100001215935, 258227.660100001841784 ], [ 350659.454800002276897, 258244.644900001585484 ], [ 350661.8378000035882, 258248.886300001293421 ], [ 350665.831600002944469, 258253.35190000012517 ], [ 350669.832599997520447, 258256.973299998790026 ], [ 350673.839000001549721, 258259.961399998515844 ], [ 350681.061599999666214, 258264.031300000846386 ], [ 350691.523900002241135, 258266.438900001347065 ], [ 350701.873400002717972, 258267.326999999582767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404020900", "MAP": "D9-299-T62", "PARCEL_NAM": "15", "ACRE": "1.00", "LONGITUDE": -65.00734884000001, "LATITUDE": 18.35326723, "OBJECTID_1": 1855, "PARCEL_NO_": "102404020900", "Tax_Legal_": "15 FORTUNA No.8 WEST END QTR", "Name": "CARRILLO, DIANE", "Address": "8435 N Stemmons Fwy", "City": "Dallas", "State": "Texas", "Zip": 75247, "Country": "United States", "Land_Value": 99900, "Improved_V": 87200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 282.034183961, "SHAPE_Area": 4390.5520688500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350746.9949000030756, 258115.889400001615286 ], [ 350679.256999999284744, 258097.252599999308586 ], [ 350678.405699998140335, 258102.522999998182058 ], [ 350677.56700000166893, 258106.315799999982119 ], [ 350675.08330000191927, 258113.894799999892712 ], [ 350668.521300002932549, 258126.928899999707937 ], [ 350665.234999999403954, 258134.079199999570847 ], [ 350662.762100003659725, 258140.391800001263618 ], [ 350661.306000001728535, 258144.563499998301268 ], [ 350674.651199996471405, 258148.124400001019239 ], [ 350717.12950000166893, 258159.458500001579523 ], [ 350745.691100001335144, 258167.0793999992311 ], [ 350753.770300000905991, 258169.235100001096725 ], [ 350753.985799998044968, 258169.292599998414516 ], [ 350759.497299998998642, 258170.763199999928474 ], [ 350756.307199999690056, 258147.606100000441074 ], [ 350755.956000000238419, 258145.05689999833703 ], [ 350755.517399996519089, 258141.872699998319149 ], [ 350752.132600001990795, 258117.302999999374151 ], [ 350746.9949000030756, 258115.889400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021000", "MAP": "D9-299-T62", "PARCEL_NAM": "14", "ACRE": "1.05", "LONGITUDE": -65.0073482, "LATITUDE": 18.35280243, "OBJECTID_1": 1856, "PARCEL_NO_": "102404021000", "Tax_Legal_": "FORTUNA 14 WEST END QTR", "Name": "BLAKE, ERIC W. & MADONIA (LIFE ESTATE)", "Address": "PO Box 304191", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97400, "Improved_V": 135400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 247.17653452600001, "SHAPE_Area": 3437.3457454700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350742.140799999237061, 258065.406500000506639 ], [ 350677.260600000619888, 258047.629299998283386 ], [ 350679.38459999859333, 258082.265999998897314 ], [ 350679.256999999284744, 258097.252599999308586 ], [ 350746.9949000030756, 258115.889400001615286 ], [ 350752.132600001990795, 258117.302999999374151 ], [ 350749.764899998903275, 258100.11600000038743 ], [ 350749.249300003051758, 258096.372999999672174 ], [ 350748.565399996936321, 258091.408500000834465 ], [ 350745.094899997115135, 258066.215999998152256 ], [ 350742.140799999237061, 258065.406500000506639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102404021700", "MAP": "D9-299-T62", "PARCEL_NAM": "28", "ACRE": "1.03", "LONGITUDE": -65.00630258, "LATITUDE": 18.35361937, "OBJECTID_1": 1863, "PARCEL_NO_": "102404021700", "Tax_Legal_": "FORTUNA 28&29 WEST END QTR", "Name": "KUMAR, KAMAL S.", "Address": "36 Woodbridge Ave", "City": "Metuchen", "State": "New Jersey", "Zip": 8840, "Country": "United States", "Land_Value": 174200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 281.28899621, "SHAPE_Area": 4427.9539492100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 350851.446400001645088, 258141.091699998825788 ], [ 350846.719999998807907, 258127.965199999511242 ], [ 350780.648999996483326, 258170.458799999207258 ], [ 350768.196999996900558, 258178.467300001531839 ], [ 350808.678099997341633, 258214.376499999314547 ], [ 350818.805200003087521, 258208.410900000482798 ], [ 350875.700099997222424, 258174.895700000226498 ], [ 350870.549699999392033, 258170.379000000655651 ], [ 350858.577299997210503, 258155.926600001752377 ], [ 350851.446400001645088, 258141.091699998825788 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604030800", "MAP": null, "PARCEL_NAM": "2D", "ACRE": "0.229", "LONGITUDE": -64.88795766, "LATITUDE": 18.33695042, "OBJECTID_1": 21778, "PARCEL_NO_": "105604030800", "Tax_Legal_": "ANNAS RETREAT 2D NEW QTR", "Name": "RODRIQUEZ, EDWARD & M", "Address": "PO Box 9481", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15000, "Improved_V": 234400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.35009512400001, "SHAPE_Area": 789.46092457899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363362.073299996554852, 256443.285799998790026 ], [ 363353.570000000298023, 256415.767599999904633 ], [ 363351.212200000882149, 256408.571100000292063 ], [ 363327.75900000333786, 256416.611800000071526 ], [ 363330.932099997997284, 256422.759500000625849 ], [ 363344.182700000703335, 256449.072000000625849 ], [ 363362.073299996554852, 256443.285799998790026 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105604034900", "MAP": null, "PARCEL_NAM": "2E", "ACRE": "0.231", "LONGITUDE": -64.88771966, "LATITUDE": 18.33692043, "OBJECTID_1": 21821, "PARCEL_NO_": "105604034900", "Tax_Legal_": "2E&2F ANNAS RETREAT 1 NEW QTR", "Name": "SALEM, RIFAT & HAKMA", "Address": "PO Box 502128", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 35300, "Improved_V": 150300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.19083583699999, "SHAPE_Area": 749.15560570599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363385.761799998581409, 256435.624299999326468 ], [ 363387.655799999833107, 256427.949299998581409 ], [ 363388.933499999344349, 256413.836199998855591 ], [ 363353.570000000298023, 256415.767599999904633 ], [ 363362.073299996554852, 256443.285700000822544 ], [ 363385.761799998581409, 256435.624299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604030700", "MAP": null, "PARCEL_NAM": "2-1", "ACRE": null, "LONGITUDE": -64.88821624000001, "LATITUDE": 18.33707642, "OBJECTID_1": 21777, "PARCEL_NO_": "105604030700", "Tax_Legal_": "2-1&2-2 ANNAS RETREAT NEW QTR", "Name": "TURN COW CORPORATION", "Address": "PO Box 306912", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 222200, "Improved_V": 203700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.245089686, "SHAPE_Area": 1216.1256346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363315.753799997270107, 256457.662399999797344 ], [ 363324.579099997878075, 256451.667899999767542 ], [ 363326.384999997913837, 256454.828200001269579 ], [ 363344.182700000703335, 256449.072000000625849 ], [ 363330.932099997997284, 256422.759500000625849 ], [ 363296.159999996423721, 256434.29619999974966 ], [ 363289.641099996864796, 256442.264400001615286 ], [ 363306.567299999296665, 256461.039799999445677 ], [ 363308.16780000180006, 256462.815200001001358 ], [ 363315.753799997270107, 256457.662399999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604030600", "MAP": "A9-425-T93", "PARCEL_NAM": "REM 175", "ACRE": "0.08", "LONGITUDE": -64.8880718, "LATITUDE": 18.33732509, "OBJECTID_1": 21776, "PARCEL_NO_": "105604030600", "Tax_Legal_": "REM 175 & 175A-2 ANNAS RETREAT NEW QUARTER", "Name": "THE 1994 OTTLEY FAMILY TRUST", "Address": "PO Box 7908", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14200, "Improved_V": 260400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.174839600799999, "SHAPE_Area": 314.36168986299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363331.281000003218651, 256460.778499998152256 ], [ 363326.384999997913837, 256454.828200001269579 ], [ 363324.739600002765656, 256463.798700001090765 ], [ 363322.509900003671646, 256477.529199998825788 ], [ 363349.227700002491474, 256482.589999999850988 ], [ 363331.281000003218651, 256460.778499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015400", "MAP": null, "PARCEL_NAM": "400BA-2", "ACRE": null, "LONGITUDE": -64.92732456, "LATITUDE": 18.35122296, "OBJECTID_1": 4769, "PARCEL_NO_": "102903015400", "Tax_Legal_": "400BA-1REM& 400BA-2 HOSPITAL GROUND No.5 GREAT NORTHSIDE QTR.", "Name": "WHITE BREEZE HOLDINGS LLC", "Address": "20 N Martingale Rd", "City": "Schaumburg", "State": "Illinois", "Zip": 60173, "Country": "United States", "Land_Value": 58200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 100.537529101, "SHAPE_Area": 512.45675241599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359181.628100000321865, 257989.067099999636412 ], [ 359178.787799999117851, 257964.257199998944998 ], [ 359147.246200002729893, 257966.020199999213219 ], [ 359172.844999998807907, 257990.083299998193979 ], [ 359181.628100000321865, 257989.067099999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903012500", "MAP": "G9-280-T53", "PARCEL_NAM": "401A", "ACRE": "1.425", "LONGITUDE": -64.92666527, "LATITUDE": 18.35112856, "OBJECTID_1": 4741, "PARCEL_NO_": "102903012500", "Tax_Legal_": "401A ESTATE HOSPITAL GROUND No.9 NEW QTR.", "Name": "WHITE BREEZE HOLDINGS LLC", "Address": "20 N Martingale Rd", "City": "Schaumburg", "State": "Illinois", "Zip": 60173, "Country": "United States", "Land_Value": 210500, "Improved_V": 269000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 359.35381412499999, "SHAPE_Area": 5251.2245221100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359233.764300003647804, 257938.230700001120567 ], [ 359221.673299998044968, 257937.709499999880791 ], [ 359209.569600000977516, 257938.665899999439716 ], [ 359194.217299997806549, 257942.339999999850988 ], [ 359186.129000000655651, 257945.229100000113249 ], [ 359176.929300002753735, 257947.777800001204014 ], [ 359178.787900000810623, 257964.257199998944998 ], [ 359181.628100000321865, 257989.067099999636412 ], [ 359188.181100003421307, 257988.309000000357628 ], [ 359332.579300001263618, 257981.469200000166893 ], [ 359313.326700001955032, 257969.701499998569489 ], [ 359286.828100003302097, 257956.607900001108646 ], [ 359249.863600000739098, 257941.528799999505281 ], [ 359233.764300003647804, 257938.230700001120567 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903012700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92738228, "LATITUDE": 18.35097709, "OBJECTID_1": 4743, "PARCEL_NO_": "102903012700", "Tax_Legal_": "400A ESTATE HOSPITAL GROUND No.9 NEW QTR.", "Name": "DAVID E. M. JAMES FAMILY TRUST", "Address": "134 Freedom Rd", "City": "Hendersonville", "State": "North Carolina", "Zip": 28792, "Country": "United States", "Land_Value": 64000, "Improved_V": 22300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.95928685600001, "SHAPE_Area": 1000.75116694 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359178.787900000810623, 257964.257199998944998 ], [ 359174.989699997007847, 257930.579900000244379 ], [ 359147.535700000822544, 257932.036499999463558 ], [ 359147.246200002729893, 257966.020199999213219 ], [ 359178.787900000810623, 257964.257199998944998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903012900", "MAP": "F9-3095-T72", "PARCEL_NAM": "401", "ACRE": "1.55", "LONGITUDE": -64.92694902, "LATITUDE": 18.35049726, "OBJECTID_1": 4745, "PARCEL_NO_": "102903012900", "Tax_Legal_": "401 HOSPITAL GROUND GREAT NORTHSIDE QTR", "Name": "MICHAEL A. BORNN AS TRUSTEE OF", "Address": "PO Box 6225", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 307.78149073399999, "SHAPE_Area": 5692.1617232799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359208.003700003027916, 257933.164700001478195 ], [ 359225.756999999284744, 257931.621199999004602 ], [ 359241.870600000023842, 257933.230799999088049 ], [ 359242.847800001502037, 257913.184900000691414 ], [ 359245.673100002110004, 257865.500900000333786 ], [ 359241.650499999523163, 257864.412500001490116 ], [ 359214.293399997055531, 257857.433600001037121 ], [ 359184.502999998629093, 257852.123500000685453 ], [ 359170.03490000218153, 257850.899599999189377 ], [ 359165.964400000870228, 257850.555300001055002 ], [ 359169.520900003612041, 257882.089600000530481 ], [ 359169.69990000128746, 257882.051300000399351 ], [ 359169.683899998664856, 257883.535300001502037 ], [ 359172.633299998939037, 257909.686599999666214 ], [ 359174.989699997007847, 257930.579900000244379 ], [ 359176.228200003504753, 257941.560899998992682 ], [ 359186.18469999730587, 257938.685600001364946 ], [ 359208.003700003027916, 257933.164700001478195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92752178000001, "LATITUDE": 18.35053174, "OBJECTID_1": 4774, "PARCEL_NO_": "102903015900", "Tax_Legal_": "HOSPITAL GROUND 400G GR NORTHSIDE", "Name": "HENDRICKS, WILBURN & LYDIA", "Address": "PO Box 7684", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64000, "Improved_V": 253600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.75445481700001, "SHAPE_Area": 1348.66151221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359169.683899998664856, 257883.535300001502037 ], [ 359169.520900003612041, 257882.089600000530481 ], [ 359130.14919999986887, 257890.519900001585484 ], [ 359109.953699998557568, 257894.787500001490116 ], [ 359116.380800001323223, 257897.584399998188019 ], [ 359119.573700003325939, 257901.410199999809265 ], [ 359118.718800000846386, 257907.102699998766184 ], [ 359115.42339999973774, 257915.308400001376867 ], [ 359169.321900002658367, 257910.011999998241663 ], [ 359172.633299998939037, 257909.686599999666214 ], [ 359169.683899998664856, 257883.535300001502037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92808882, "LATITUDE": 18.35024824, "OBJECTID_1": 4773, "PARCEL_NO_": "102903015800", "Tax_Legal_": "HOSPITAL GROUND 400F GR NORTHSIDE", "Name": "LARCHEVEAUX, SERITA", "Address": "PO Box 8504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 73700, "Improved_V": 418200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.67976073700001, "SHAPE_Area": 1766.9828446900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359107.7753000035882, 257852.968499999493361 ], [ 359097.412299998104572, 257852.4662000015378 ], [ 359055.556000001728535, 257843.679900001734495 ], [ 359049.911799997091293, 257843.633699998259544 ], [ 359043.448700003325939, 257845.058400001376867 ], [ 359032.900100000202656, 257852.782499998807907 ], [ 359041.76410000026226, 257853.488400001078844 ], [ 359050.610200002789497, 257856.304999999701977 ], [ 359056.230999998748302, 257859.095199998468161 ], [ 359074.643100000917912, 257874.866799999028444 ], [ 359096.298500001430511, 257888.554099999368191 ], [ 359109.953699998557568, 257894.787500001490116 ], [ 359107.7753000035882, 257852.968499999493361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903012800", "MAP": "D9-5420-T92", "PARCEL_NAM": "400C", "ACRE": "0.64", "LONGITUDE": -64.9275083, "LATITUDE": 18.35025003, "OBJECTID_1": 4744, "PARCEL_NO_": "102903012800", "Tax_Legal_": "HOSPITAL GROUND 4OOC GREAT NORTHSIDE QTR", "Name": "LARCHEVEAUX, SERITA M", "Address": "PO Box 8504", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 112600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.35597967899997, "SHAPE_Area": 2501.2534883899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359169.520900003612041, 257882.089600000530481 ], [ 359165.964400000870228, 257850.555300001055002 ], [ 359165.164099998772144, 257850.48759999871254 ], [ 359149.061200000345707, 257847.611600000411272 ], [ 359140.969400003552437, 257850.922800000756979 ], [ 359124.834100000560284, 257851.846200000494719 ], [ 359107.890799999237061, 257852.97410000115633 ], [ 359107.7753000035882, 257852.968499999493361 ], [ 359109.953699998557568, 257894.787500001490116 ], [ 359130.14919999986887, 257890.519900001585484 ], [ 359169.520900003612041, 257882.089600000530481 ] ] ], [ [ [ 359117.712200000882149, 257835.955899998545647 ], [ 359106.488499999046326, 257828.264699999243021 ], [ 359107.430600002408028, 257846.350499998778105 ], [ 359109.5591000020504, 257846.443900000303984 ], [ 359135.371899999678135, 257845.388599999248981 ], [ 359136.995300002396107, 257844.135299999266863 ], [ 359117.712200000882149, 257835.955899998545647 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92818847, "LATITUDE": 18.34988599, "OBJECTID_1": 4770, "PARCEL_NO_": "102903015500", "Tax_Legal_": "HOSPITAL GROUND 400 GR NORTHSIDE", "Name": "BREEDY, GLEN", "Address": "PO Box 10220", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 138200, "Improved_V": 541800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 157.049573904, "SHAPE_Area": 1383.39003183 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359106.488499999046326, 257828.264699999243021 ], [ 359085.666500002145767, 257811.417899999767542 ], [ 359068.008500002324581, 257801.77419999986887 ], [ 359059.967000000178814, 257799.175200000405312 ], [ 359065.267700001597404, 257839.537500001490116 ], [ 359091.825599998235703, 257845.665500000119209 ], [ 359107.430600002408028, 257846.350499998778105 ], [ 359106.488499999046326, 257828.264699999243021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "20", "ACRE": null, "LONGITUDE": -64.94470425, "LATITUDE": 18.334953, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.7631248, "SHAPE_Area": 546.76702965100003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357369.545699998736382, 256128.038800001144409 ], [ 357328.891699999570847, 256166.763999998569489 ], [ 357331.254900000989437, 256173.327199999243021 ], [ 357333.648599997162819, 256176.302099999040365 ], [ 357334.429799996316433, 256179.263799998909235 ], [ 357336.031599998474121, 256180.543499998748302 ], [ 357337.43129999935627, 256184.193599998950958 ], [ 357339.196400001645088, 256182.54109999909997 ], [ 357369.545699998736382, 256128.038800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "17", "ACRE": null, "LONGITUDE": -64.94477551, "LATITUDE": 18.33465033, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 227.139161575, "SHAPE_Area": 2899.0026533599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357369.545699998736382, 256128.038800001144409 ], [ 357373.399899996817112, 256122.395100001245737 ], [ 357374.704300001263618, 256119.496500000357628 ], [ 357374.704300001263618, 256112.677499998360872 ], [ 357362.677000001072884, 256081.758699998259544 ], [ 357352.958099998533726, 256086.745400000363588 ], [ 357340.764499999582767, 256098.255699999630451 ], [ 357304.04169999808073, 256149.462000001221895 ], [ 357317.668099999427795, 256159.072799999266863 ], [ 357328.891699999570847, 256166.763999998569489 ], [ 357369.545699998736382, 256128.038800001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": "D3-419-T19", "PARCEL_NAM": "25", "ACRE": ".09", "LONGITUDE": -64.94439346, "LATITUDE": 18.33473881, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 104.377064942, "SHAPE_Area": 412.41181785700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357385.752499997615814, 256118.044599998742342 ], [ 357372.700499996542931, 256135.669599998742342 ], [ 357374.199799999594688, 256148.980799999088049 ], [ 357385.502599999308586, 256147.384500000625849 ], [ 357404.186200000345707, 256131.28319999948144 ], [ 357393.652000002563, 256137.31870000064373 ], [ 357385.752499997615814, 256118.044599998742342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903012400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92787858, "LATITUDE": 18.35090923, "OBJECTID_1": 4740, "PARCEL_NO_": "102903012400", "Tax_Legal_": "HOSPITAL GROUND 4OOBA No.9 NEW QTR.", "Name": "MITCHELL, GIAVONNE", "Address": "7143 Estate Mafolie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023677, "Country": "United States", "Land_Value": 170600, "Improved_V": 633900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 330.299572883, "SHAPE_Area": 5097.9511896399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359174.989699997007847, 257930.579900000244379 ], [ 359172.633299998939037, 257909.686599999666214 ], [ 359115.42339999973774, 257915.308400001376867 ], [ 359108.159400001168251, 257916.093299999833107 ], [ 359079.911499999463558, 257919.028499998152256 ], [ 359069.420500002801418, 257919.998100001364946 ], [ 359062.214800000190735, 257920.724399998784065 ], [ 359065.060199998319149, 257968.520700000226498 ], [ 359065.45440000295639, 257975.142900001257658 ], [ 359075.406999997794628, 257974.509199999272823 ], [ 359120.609099999070168, 257969.179699998348951 ], [ 359147.246200002729893, 257966.020199999213219 ], [ 359147.535700000822544, 257932.036499999463558 ], [ 359174.989699997007847, 257930.579900000244379 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102903015900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92752178000001, "LATITUDE": 18.35053174, "OBJECTID_1": 4774, "PARCEL_NO_": "102903015900", "Tax_Legal_": "HOSPITAL GROUND 400G GR NORTHSIDE", "Name": "HENDRICKS, WILBURN & LYDIA", "Address": "PO Box 7684", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 64000, "Improved_V": 253600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.1219978103599999, "SHAPE_Area": 0.13251159832000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359169.520900003612041, 257882.089600000530481 ], [ 359169.683899998664856, 257883.535300001502037 ], [ 359169.69990000128746, 257882.051300000399351 ], [ 359169.520900003612041, 257882.089600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.94470425, "LATITUDE": 18.334953, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 273.05629082799999, "SHAPE_Area": 1011.89549607 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357341.55349999666214, 256194.94310000166297 ], [ 357361.241300001740456, 256155.629700001329184 ], [ 357363.652999997138977, 256156.49379999935627 ], [ 357364.570900000631809, 256156.863000001758337 ], [ 357369.341899998486042, 256149.20719999819994 ], [ 357374.199799999594688, 256148.980799999088049 ], [ 357372.700499996542931, 256135.669599998742342 ], [ 357385.752499997615814, 256118.044599998742342 ], [ 357370.761699996888638, 256079.291700001806021 ], [ 357365.103100001811981, 256080.934200000017881 ], [ 357362.677000001072884, 256081.758699998259544 ], [ 357374.704300001263618, 256112.677499998360872 ], [ 357374.704300001263618, 256119.496500000357628 ], [ 357373.399899996817112, 256122.395100001245737 ], [ 357369.545699998736382, 256128.038800001144409 ], [ 357339.196400001645088, 256182.54109999909997 ], [ 357337.43129999935627, 256184.193599998950958 ], [ 357341.55349999666214, 256194.94310000166297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "24", "ACRE": null, "LONGITUDE": -64.94448779, "LATITUDE": 18.33459424, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 54.3834299707, "SHAPE_Area": 127.465320499 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357376.566600002348423, 256155.121800001710653 ], [ 357385.502599999308586, 256147.384500000625849 ], [ 357374.199799999594688, 256148.980799999088049 ], [ 357369.341899998486042, 256149.20719999819994 ], [ 357364.570900000631809, 256156.863000001758337 ], [ 357374.9037000015378, 256161.018899999558926 ], [ 357376.566600002348423, 256155.121800001710653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105801011300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8589165, "LATITUDE": 18.33952102, "OBJECTID_1": 23735, "PARCEL_NO_": "105801011300", "Tax_Legal_": "SMITH BAY ESTATE 13 EAST END", "Name": "HARTHMAN LEASING III, LLLP", "Address": "PO Box 503330", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 1649100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1109.3714429199999, "SHAPE_Area": 73149.562099899995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366599.701999999582767, 256678.031300000846386 ], [ 366562.609300002455711, 256655.775699999183416 ], [ 366554.407200001180172, 256647.838199999183416 ], [ 366543.294600002467632, 256635.667300000786781 ], [ 366539.061300002038479, 256629.052700001746416 ], [ 366536.944600000977516, 256619.263099998235703 ], [ 366532.384300000965595, 256592.294399999082088 ], [ 366528.401299998164177, 256586.562300000339746 ], [ 366523.599299997091293, 256582.301100000739098 ], [ 366478.55009999871254, 256569.688999999314547 ], [ 366474.471799999475479, 256575.144000001251698 ], [ 366467.164700001478195, 256580.994800001382828 ], [ 366460.681800000369549, 256584.741500001400709 ], [ 366386.301399998366833, 256607.564100001007318 ], [ 366376.582500003278255, 256612.550799999386072 ], [ 366371.712300002574921, 256616.310600001364946 ], [ 366365.198899999260902, 256623.645599998533726 ], [ 366348.820900000631809, 256653.064599998295307 ], [ 366339.033600002527237, 256666.072299998253584 ], [ 366328.463500000536442, 256676.3293999992311 ], [ 366326.845399998128414, 256676.949400000274181 ], [ 366270.808899998664856, 256723.564699999988079 ], [ 366258.629699997603893, 256733.386399999260902 ], [ 366244.009999997913837, 256745.721200000494719 ], [ 366205.88849999755621, 256771.795899998396635 ], [ 366370.586300000548363, 256937.796900000423193 ], [ 366401.510300002992153, 256904.697200000286102 ], [ 366412.915500000119209, 256891.069499999284744 ], [ 366459.272699996829033, 256844.797200001776218 ], [ 366497.453500002622604, 256811.756900001317263 ], [ 366518.593900002539158, 256791.242800001055002 ], [ 366533.19200000166893, 256781.440799999982119 ], [ 366547.00900000333786, 256768.677200000733137 ], [ 366561.677299998700619, 256750.643199998885393 ], [ 366565.773599997162819, 256743.077399998903275 ], [ 366567.398800000548363, 256741.613000001758337 ], [ 366596.117799997329712, 256683.375199999660254 ], [ 366598.561899997293949, 256680.439899999648333 ], [ 366599.701999999582767, 256678.031300000846386 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804010200", "MAP": "A9-427-T93", "PARCEL_NAM": "REM 14", "ACRE": "21.73", "LONGITUDE": -64.85625505, "LATITUDE": 18.33720431, "OBJECTID_1": 24009, "PARCEL_NO_": "105804010200", "Tax_Legal_": "14 REMAINDER SMITH BAY Nos.1,2&3 EASTEND QTR", "Name": "MAGENS BAY AUTHORITY", "Address": "PO BOX 10585", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1113800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1207.34330458, "SHAPE_Area": 87574.958125599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366633.607400000095367, 256636.819200001657009 ], [ 366646.594700001180172, 256626.793000001460314 ], [ 366658.754100002348423, 256619.293200001120567 ], [ 366678.994699999690056, 256609.748500000685453 ], [ 366695.167700000107288, 256604.392499998211861 ], [ 366715.368600003421307, 256599.491599999368191 ], [ 366737.977799996733665, 256595.876899998635054 ], [ 366761.376999996602535, 256594.168600000441074 ], [ 366781.53660000115633, 256594.122499998658895 ], [ 366801.683600001037121, 256595.554000001400709 ], [ 366817.791900001466274, 256597.796700000762939 ], [ 366839.522799998521805, 256602.618700001388788 ], [ 366890.395300000905991, 256499.599199999123812 ], [ 366914.164899997413158, 256454.408599998801947 ], [ 366755.588600002229214, 256327.087900001555681 ], [ 366682.795699998736382, 256352.878800000995398 ], [ 366658.552400000393391, 256359.013199999928474 ], [ 366636.753200002014637, 256362.21229999884963 ], [ 366589.963699996471405, 256364.573499999940395 ], [ 366583.495200000703335, 256366.631499998271465 ], [ 366576.202399998903275, 256370.793699998408556 ], [ 366568.880900003015995, 256378.333200000226498 ], [ 366536.002599999308586, 256451.524599999189377 ], [ 366484.260899998247623, 256561.925299998372793 ], [ 366526.092000000178814, 256573.666700001806021 ], [ 366530.910099998116493, 256576.028099998831749 ], [ 366540.483400002121925, 256588.138799998909235 ], [ 366542.500900000333786, 256605.240200001746416 ], [ 366545.13400000333786, 256617.798200000077486 ], [ 366545.940499998629093, 256621.644400000572205 ], [ 366546.734200000762939, 256625.613200001418591 ], [ 366550.967600002884865, 256631.963199999183416 ], [ 366559.434299997985363, 256639.900699999183416 ], [ 366567.413599997758865, 256648.639899998903275 ], [ 366572.646899998188019, 256640.866999998688698 ], [ 366577.51070000231266, 256633.642700001597404 ], [ 366579.595299996435642, 256635.110599998384714 ], [ 366598.831699997186661, 256648.778000000864267 ], [ 366614.08330000191927, 256656.924400001764297 ], [ 366624.666000001132488, 256645.189800001680851 ], [ 366633.607400000095367, 256636.819200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301142300", "MAP": null, "PARCEL_NAM": "200-8X", "ACRE": null, "LONGITUDE": -64.94350522000001, "LATITUDE": 18.34446853, "OBJECTID_1": 9496, "PARCEL_NO_": "105301142300", "Tax_Legal_": "ALTONA & WELGUNST 200-8X CROWN PRINCE QTR", "Name": "GRANT, VERONICA", "Address": "7505 Frenchman Bay Est", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 35800, "Improved_V": 89200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.08792378699999, "SHAPE_Area": 954.58218567300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357480.520599998533726, 257204.263300001621246 ], [ 357459.424900002777576, 257192.301199998706579 ], [ 357458.031900003552437, 257193.735599998384714 ], [ 357451.489699997007847, 257204.447799999266863 ], [ 357444.974500000476837, 257211.993900001049042 ], [ 357471.431699998676777, 257229.942299999296665 ], [ 357477.090300001204014, 257228.299899999052286 ], [ 357492.447999998927116, 257223.992600001394749 ], [ 357488.509999997913837, 257212.983500000089407 ], [ 357484.483800001442432, 257212.317299999296665 ], [ 357481.278300002217293, 257209.969000000506639 ], [ 357480.520599998533726, 257204.263300001621246 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301142200", "MAP": null, "PARCEL_NAM": "200-8W", "ACRE": null, "LONGITUDE": -64.94346032, "LATITUDE": 18.34428838, "OBJECTID_1": 9495, "PARCEL_NO_": "105301142200", "Tax_Legal_": "ALTONA & WELGUNST 200-8W CROWN PRINCE QTR", "Name": "OGANDO, EDWARD R.", "Address": "PO Box 307684", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.421165533000007, "SHAPE_Area": 548.91802926699995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357459.424900002777576, 257192.301199998706579 ], [ 357480.520599998533726, 257204.263300001621246 ], [ 357482.970100000500679, 257200.694699998944998 ], [ 357488.63400000333786, 257198.418999999761581 ], [ 357491.078100003302097, 257195.48369999974966 ], [ 357494.89130000025034, 257190.188299998641014 ], [ 357469.642700001597404, 257174.448899999260902 ], [ 357466.213699996471405, 257179.870400000363588 ], [ 357460.47240000218153, 257191.222500000149012 ], [ 357459.424900002777576, 257192.301199998706579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301142100", "MAP": "F9-4080-T81", "PARCEL_NAM": "200-8V", "ACRE": null, "LONGITUDE": -64.94335774, "LATITUDE": 18.34415543, "OBJECTID_1": 9494, "PARCEL_NO_": "105301142100", "Tax_Legal_": "ALTONA & WELGUNST 200-8V CROWN PRINCE QTR", "Name": "WYATT, MARY & JOHN FRANCIS", "Address": "PO Box 11161", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 39000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 103.817015334, "SHAPE_Area": 656.69494530300005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357484.109300002455711, 257158.131599999964237 ], [ 357481.357900001108646, 257156.461800001561642 ], [ 357476.839599996805191, 257163.069899998605251 ], [ 357469.642700001597404, 257174.448899999260902 ], [ 357494.89130000025034, 257190.188299998641014 ], [ 357503.318499997258186, 257178.485300000756979 ], [ 357507.621200002729893, 257172.400100000202656 ], [ 357484.109300002455711, 257158.131599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-3", "PARCEL_NO": "105302270800", "MAP": null, "PARCEL_NAM": "GENERAL GADE 3B", "ACRE": null, "LONGITUDE": -64.93581187, "LATITUDE": 18.34303769, "OBJECTID_1": 10418, "PARCEL_NO_": "105302270800", "Tax_Legal_": "GENERAL GADE 3B CROWN PRINCE", "Name": "ZOOK, JOHN H. & HENRY M. II", "Address": "PO Box 7277", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 3500, "Improved_V": 20000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 34.337464928199999, "SHAPE_Area": 73.165312072800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358287.931500002741814, 257065.781100001186132 ], [ 358287.326800003647804, 257058.245900001376867 ], [ 358278.4628000035882, 257057.540100000798702 ], [ 358279.071599997580051, 257066.5152000002563 ], [ 358287.931500002741814, 257065.781100001186132 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303270800", "MAP": "D3-390-T82", "PARCEL_NAM": "19-15", "ACRE": "1,228 sq ft", "LONGITUDE": -64.94195598, "LATITUDE": 18.33685574, "OBJECTID_1": 11210, "PARCEL_NO_": "105303270800", "Tax_Legal_": "HONDURAS 19-15 CROWN PRINCE QTR", "Name": "HUMPHREY, DENISE R.", "Address": "3529 Honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 7800, "Improved_V": 41500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 57.781627607399997, "SHAPE_Area": 193.546273259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357633.616300001740456, 256365.786100000143051 ], [ 357634.381300002336502, 256370.64750000089407 ], [ 357631.958700001239777, 256371.049899999052286 ], [ 357633.508400000631809, 256378.450800001621246 ], [ 357634.291400000452995, 256381.201499998569489 ], [ 357646.407600000500679, 256378.767499998211861 ], [ 357647.48759999871254, 256378.521600000560284 ], [ 357642.658900000154972, 256363.241900000721216 ], [ 357633.625200003385544, 256364.401099998503923 ], [ 357633.616300001740456, 256365.786100000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301142000", "MAP": "D9-8794-T013", "PARCEL_NAM": "200-8U-A", "ACRE": ".041", "LONGITUDE": -64.94323306, "LATITUDE": 18.3439128, "OBJECTID_1": 9493, "PARCEL_NO_": "105301142000", "Tax_Legal_": "ALTONA & WELGUNST 200-8U KRONPRINDSENS QTR.", "Name": "ANTHONY FAMILY LIVING TRUST", "Address": "PO Box 302492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35300, "Improved_V": 45800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 79.973604737200006, "SHAPE_Area": 147.02517235799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357481.357900001108646, 257156.461800001561642 ], [ 357484.109300002455711, 257158.131599999964237 ], [ 357490.894299998879433, 257154.007100000977516 ], [ 357502.932800002396107, 257152.138599999248981 ], [ 357509.17849999666214, 257153.202100001275539 ], [ 357514.090599998831749, 257158.844500001519918 ], [ 357514.3074000030756, 257154.981300000101328 ], [ 357512.388400003314018, 257150.594099998474121 ], [ 357509.375299997627735, 257148.529500000178814 ], [ 357509.278399996459484, 257148.431499999016523 ], [ 357504.204300001263618, 257147.418699998408556 ], [ 357498.63120000064373, 257147.664799999445677 ], [ 357493.047100000083447, 257149.270899999886751 ], [ 357489.221400000154972, 257150.988400001078844 ], [ 357485.686499997973442, 257152.999800000339746 ], [ 357483.32599999755621, 257154.826400000602007 ], [ 357481.357900001108646, 257156.461800001561642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105301142000", "MAP": "D9-8794-T013", "PARCEL_NAM": "200-8U", "ACRE": ".105", "LONGITUDE": -64.94323067000001, "LATITUDE": 18.34401173, "OBJECTID_1": 9493, "PARCEL_NO_": "105301142000", "Tax_Legal_": "ALTONA & WELGUNST 200-8U KRONPRINDSENS QTR.", "Name": "ANTHONY FAMILY LIVING TRUST", "Address": "PO Box 302492", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 35300, "Improved_V": 45800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 76.634678141600006, "SHAPE_Area": 344.05999223499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357484.109300002455711, 257158.131599999964237 ], [ 357507.621200002729893, 257172.400100000202656 ], [ 357511.480499997735023, 257166.94200000166893 ], [ 357514.090599998831749, 257158.844500001519918 ], [ 357509.17849999666214, 257153.202100001275539 ], [ 357502.932800002396107, 257152.138599999248981 ], [ 357490.894299998879433, 257154.007100000977516 ], [ 357484.109300002455711, 257158.131599999964237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804010100", "MAP": "G9-1089-T68", "PARCEL_NAM": "14B", "ACRE": "0.32", "LONGITUDE": -64.85765957, "LATITUDE": 18.33832617, "OBJECTID_1": 24008, "PARCEL_NO_": "105804010100", "Tax_Legal_": "SMITH BAY ESTATE 14B No.1,2&3 EASTEND QTR", "Name": "LINDQVIST, DORIS M. & OTHERS", "Address": "PO Box 775", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 73500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 138.99498911500001, "SHAPE_Area": 1092.73675149 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366579.595299996435642, 256635.110599998384714 ], [ 366577.51070000231266, 256633.642700001597404 ], [ 366572.646899998188019, 256640.866999998688698 ], [ 366562.609300002455711, 256655.775699999183416 ], [ 366599.701999999582767, 256678.031300000846386 ], [ 366601.846500001847744, 256673.500700000673532 ], [ 366608.370800003409386, 256664.89919999986887 ], [ 366614.08330000191927, 256656.924400001764297 ], [ 366598.831699997186661, 256648.778000000864267 ], [ 366579.595299996435642, 256635.110599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "10703065200", "MAP": "D9-7047-T002", "PARCEL_NAM": "11-D11", "ACRE": ".355", "LONGITUDE": -64.87414081, "LATITUDE": 18.3324102, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 155.398189973, "SHAPE_Area": 1382.54632737 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364802.846400000154972, 255909.589200001209974 ], [ 364790.265000000596046, 255956.958700001239777 ], [ 364828.719200000166893, 255962.674899999052286 ], [ 364828.674300000071526, 255962.482099998742342 ], [ 364828.674300000071526, 255951.770300000905991 ], [ 364829.524599999189377, 255950.00899999961257 ], [ 364828.674300000071526, 255950.240100000053644 ], [ 364829.171499997377396, 255929.481300000101328 ], [ 364806.647900000214577, 255912.645599998533726 ], [ 364802.846400000154972, 255909.589200001209974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "7 TAARNEBERG", "ACRE": "3,861 sq ft", "LONGITUDE": -64.92376613, "LATITUDE": 18.3422354, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 92.667487423500006, "SHAPE_Area": 521.48881617100005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359573.120600000023842, 256989.6537000015378 ], [ 359559.896099999547005, 256967.689599998295307 ], [ 359545.362800002098083, 256975.15989999845624 ], [ 359547.282300002872944, 256998.467000000178814 ], [ 359551.722800001502037, 256997.051199998706579 ], [ 359556.151399999856949, 256995.598700001835823 ], [ 359560.567900002002716, 256994.109700001776218 ], [ 359564.971900001168251, 256992.584300000220537 ], [ 359569.051899999380112, 256991.13459999859333 ], [ 359573.120600000023842, 256989.6537000015378 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92572656, "LATITUDE": 18.34865123, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 31.600889001500001, "SHAPE_Area": 39.966842142700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359351.971799999475479, 257692.852000001817942 ], [ 359339.104999996721745, 257688.73589999973774 ], [ 359340.667300000786781, 257694.659299999475479 ], [ 359351.54389999806881, 257693.818199999630451 ], [ 359351.971799999475479, 257692.852000001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "111111111111", "MAP": "A9-70-T68", "PARCEL_NAM": "184", "ACRE": "0.13", "LONGITUDE": -64.88823576, "LATITUDE": 18.33727279, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 67.324934821300005, "SHAPE_Area": 238.74168791 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363326.384999997913837, 256454.828200001269579 ], [ 363324.579099997878075, 256451.667899999767542 ], [ 363315.753799997270107, 256457.662399999797344 ], [ 363308.16780000180006, 256462.815200001001358 ], [ 363308.812799997627735, 256463.530600000172853 ], [ 363313.366599999368191, 256468.987100001424551 ], [ 363318.391500003635883, 256475.008099999278784 ], [ 363321.596900001168251, 256477.356300000101328 ], [ 363322.509900003671646, 256477.529199998825788 ], [ 363324.739600002765656, 256463.798700001090765 ], [ 363326.384999997913837, 256454.828200001269579 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92738228, "LATITUDE": 18.35097709, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 349.18411223700002, "SHAPE_Area": 1018.42270409 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359176.228200003504753, 257941.560899998992682 ], [ 359176.929300002753735, 257947.777800001204014 ], [ 359186.129000000655651, 257945.229100000113249 ], [ 359191.68639999628067, 257943.243999999016523 ], [ 359194.217299997806549, 257942.339999999850988 ], [ 359209.569600000977516, 257938.665899999439716 ], [ 359221.673299998044968, 257937.709499999880791 ], [ 359233.764300003647804, 257938.230700001120567 ], [ 359249.863600000739098, 257941.528799999505281 ], [ 359286.828100003302097, 257956.607900001108646 ], [ 359313.326700001955032, 257969.701499998569489 ], [ 359332.579199999570847, 257981.469300001859665 ], [ 359327.1587999984622, 257971.453899998217821 ], [ 359323.338500000536442, 257964.936900001019239 ], [ 359319.840199999511242, 257962.366500001400709 ], [ 359319.015900000929832, 257964.47069999948144 ], [ 359316.593299999833107, 257964.873100001364946 ], [ 359299.736299999058247, 257955.869199998676777 ], [ 359281.259499996900558, 257947.696400001645088 ], [ 359257.15820000320673, 257937.155600000172853 ], [ 359241.870600000023842, 257933.230799999088049 ], [ 359225.756999999284744, 257931.621199999004602 ], [ 359208.003700003027916, 257933.164700001478195 ], [ 359186.18469999730587, 257938.685600001364946 ], [ 359176.228200003504753, 257941.560899998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "G9-1089-T68", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85765957, "LATITUDE": 18.33832617, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.88769742900001, "SHAPE_Area": 1153.38795609 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366526.092000000178814, 256573.666700001806021 ], [ 366484.260899998247623, 256561.925299998372793 ], [ 366478.55009999871254, 256569.688999999314547 ], [ 366523.599299997091293, 256582.301100000739098 ], [ 366528.401299998164177, 256586.562300000339746 ], [ 366532.384300000965595, 256592.294399999082088 ], [ 366536.944600000977516, 256619.263099998235703 ], [ 366539.061300002038479, 256629.052700001746416 ], [ 366543.294600002467632, 256635.667300000786781 ], [ 366554.407200001180172, 256647.838199999183416 ], [ 366562.609300002455711, 256655.775699999183416 ], [ 366567.413599997758865, 256648.639899998903275 ], [ 366559.434299997985363, 256639.900699999183416 ], [ 366550.967600002884865, 256631.963199999183416 ], [ 366546.734200000762939, 256625.613200001418591 ], [ 366545.940499998629093, 256621.644400000572205 ], [ 366545.13400000333786, 256617.798200000077486 ], [ 366542.500900000333786, 256605.240200001746416 ], [ 366540.483400002121925, 256588.138799998909235 ], [ 366530.910099998116493, 256576.028099998831749 ], [ 366526.092000000178814, 256573.666700001806021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105101010100", "MAP": "F2-4-T41", "PARCEL_NAM": "REM JOHN BREWERS BAY", "ACRE": null, "LONGITUDE": -64.97765032, "LATITUDE": 18.34707659, "OBJECTID_1": 7379, "PARCEL_NO_": "105101010100", "Tax_Legal_": "JOHN BREWERS BAY NORTH&SOUTH&2 No.5 SOUTHSIDE QTR.", "Name": "THE UNIVERSITY OF THE V. I.", "Address": "#2 JOHN BREWER'S BAY", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1110100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1865.95281247, "SHAPE_Area": 104078.013168 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 354048.035099998116493, 257556.349500000476837 ], [ 353961.359700001776218, 257328.263900000602007 ], [ 353856.061499997973442, 257377.249000001698732 ], [ 353793.380999997258186, 257276.000999998301268 ], [ 353776.240900002419949, 257278.014600001275539 ], [ 353772.198499999940395, 257279.248100001364946 ], [ 353760.05349999666214, 257285.059300001710653 ], [ 353737.296899996697903, 257305.982400000095367 ], [ 353717.032999999821186, 257318.271099999547005 ], [ 353708.13120000064373, 257321.997900001704693 ], [ 353639.391500003635883, 257345.288899999111891 ], [ 353800.292199999094009, 257578.386500000953674 ], [ 353915.839100003242493, 257739.974399998784065 ], [ 354023.237899996340275, 257627.496199999004602 ], [ 354067.750600002706051, 257608.439899999648333 ], [ 354048.035099998116493, 257556.349500000476837 ] ] ], [ [ [ 353759.3496999964118, 257273.021200001239777 ], [ 353769.063199996948242, 257268.66780000180006 ], [ 353778.760499998927116, 257266.214000001549721 ], [ 353786.781800001859665, 257265.3412000015378 ], [ 353764.683399997651577, 257229.645500000566244 ], [ 353764.242399998009205, 257229.448800001293421 ], [ 353758.049900002777576, 257236.280299998819828 ], [ 353745.85639999806881, 257247.790600001811981 ], [ 353740.181599996984005, 257251.332800000905991 ], [ 353715.086999997496605, 257262.73759999871254 ], [ 353703.762699998915195, 257266.866700001060963 ], [ 353691.64639999717474, 257269.300700001418591 ], [ 353681.965300001204014, 257269.854699999094009 ], [ 353664.237199999392033, 257268.44310000166297 ], [ 353661.022699996829033, 257267.150199998170137 ], [ 353655.3766999989748, 257267.315099999308586 ], [ 353650.526299998164177, 257268.753100000321865 ], [ 353632.776600003242493, 257269.874299999326468 ], [ 353627.929700002074242, 257270.890099998563528 ], [ 353623.903599999845028, 257270.223900001496077 ], [ 353613.408900000154972, 257271.615699999034405 ], [ 353598.053000003099442, 257275.711899999529123 ], [ 353591.597099997103214, 257276.292300000786781 ], [ 353633.018299996852875, 257336.159699998795986 ], [ 353702.566200003027916, 257312.664200000464916 ], [ 353713.086000002920628, 257308.317400000989437 ], [ 353725.238200001418591, 257301.661800000816584 ], [ 353734.976899996399879, 257294.353300001472235 ], [ 353752.053300000727177, 257277.605599999427795 ], [ 353759.3496999964118, 257273.021200001239777 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104022300", "MAP": "B9-31-T57", "PARCEL_NAM": "4-21", "ACRE": "1.03", "LONGITUDE": -64.88450569, "LATITUDE": 18.35396587, "OBJECTID_1": 6795, "PARCEL_NO_": "103104022300", "Tax_Legal_": "TABOR&HARMONY 4-21 No.5&6 EASTEND QTR.", "Name": "BLANKENHORN, RICHARD D. & LEIGH A.", "Address": "6100 Red Hook Quarter", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93800, "Improved_V": 574600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 354.75585896600001, "SHAPE_Area": 5165.8766862599996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363704.608999997377396, 258247.664299998432398 ], [ 363703.256499998271465, 258245.23589999973774 ], [ 363664.430100001394749, 258289.299300000071526 ], [ 363672.556500002741814, 258295.439300000667572 ], [ 363680.68299999833107, 258300.676300000399351 ], [ 363675.217299997806549, 258312.15430000051856 ], [ 363673.459499999880791, 258315.84569999948144 ], [ 363667.138899996876717, 258328.667399998754263 ], [ 363662.804799996316433, 258337.696800000965595 ], [ 363655.400700002908707, 258346.365100000053644 ], [ 363651.427799999713898, 258350.157400000840425 ], [ 363645.107199996709824, 258351.963300000876188 ], [ 363634.604500003159046, 258354.429000001400709 ], [ 363637.802799999713898, 258357.621500000357628 ], [ 363641.816399998962879, 258359.765299998223782 ], [ 363649.86150000244379, 258361.942099999636412 ], [ 363655.505699999630451, 258361.988299999386072 ], [ 363661.160700000822544, 258360.76799999922514 ], [ 363673.287699997425079, 258357.067600000649691 ], [ 363687.043600000441074, 258351.480599999427795 ], [ 363695.95440000295639, 258346.698399998247623 ], [ 363721.903800003230572, 258329.601100001484156 ], [ 363736.512800000607967, 258318.532699998468161 ], [ 363741.180299997329712, 258313.326400000602007 ], [ 363704.608999997377396, 258247.664299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104022200", "MAP": "B9-31-T51", "PARCEL_NAM": "4-18", "ACRE": "1.21", "LONGITUDE": -64.88510523, "LATITUDE": 18.35390611, "OBJECTID_1": 6794, "PARCEL_NO_": "103104022200", "Tax_Legal_": "TABOR&HARMONY 4-18 EAST END QTR", "Name": "ORCHID COURT, LLC", "Address": "230 W 105th St Apt 13A", "City": "New York", "State": "New York", "Zip": 100253919, "Country": "United States", "Land_Value": 107500, "Improved_V": 539300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 295.67274906199998, "SHAPE_Area": 5196.4615975699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363606.430200003087521, 258246.835099998861551 ], [ 363593.639700002968311, 258237.470600001513958 ], [ 363593.606899999082088, 258239.030699998140335 ], [ 363592.198600001633167, 258306.100400000810623 ], [ 363597.839599996805191, 258315.920099999755621 ], [ 363602.632500000298023, 258321.236699998378754 ], [ 363615.402300000190735, 258336.750999998301268 ], [ 363626.415200002491474, 258346.802600000053644 ], [ 363646.551899999380112, 258343.656199999153614 ], [ 363651.066600002348423, 258338.960999999195337 ], [ 363656.664800003170967, 258330.834499999880791 ], [ 363662.443599998950958, 258319.0962999984622 ], [ 363668.22240000218153, 258307.538699999451637 ], [ 363668.578900001943111, 258306.543600000441074 ], [ 363672.556500002741814, 258295.439300000667572 ], [ 363664.430100001394749, 258289.299300000071526 ], [ 363606.430200003087521, 258246.835099998861551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203011100", "MAP": "D9-8507-T010", "PARCEL_NAM": "4-39", "ACRE": ".50", "LONGITUDE": -64.88182004, "LATITUDE": 18.35384353, "OBJECTID_1": 6962, "PARCEL_NO_": "103203011100", "Tax_Legal_": "4-39 REM TABOR & HARMONY NO.5&6 EAST END QTR", "Name": "DRAFTS III, TARANCE F.", "Address": "806 NW 37th Pl", "City": "Cape Coral", "State": "Florida", "Zip": 33993, "Country": "United States", "Land_Value": 37800, "Improved_V": 610300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.55313251600001, "SHAPE_Area": 2094.83560317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363991.204999998211861, 258332.649599999189377 ], [ 364010.857900001108646, 258293.442499998956919 ], [ 363968.654500000178814, 258278.215300001204014 ], [ 363964.505300000309944, 258285.524999998509884 ], [ 363945.244099996984005, 258319.457499999552965 ], [ 363943.799400001764297, 258322.527499999850988 ], [ 363939.928099997341633, 258326.299499999731779 ], [ 363948.526199996471405, 258325.756400000303984 ], [ 363975.152500003576279, 258323.863400001078844 ], [ 363991.204999998211861, 258332.649599999189377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203011000", "MAP": "B9-31-T57", "PARCEL_NAM": "4-31", "ACRE": "1.34", "LONGITUDE": -64.88228081, "LATITUDE": 18.35346912, "OBJECTID_1": 6961, "PARCEL_NO_": "103203011000", "Tax_Legal_": "TABOR&HARMONY 4-31 5&6 EASTEND QTR", "Name": "ZOOK, MARY G & ZACHARY G.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 92600, "Improved_V": 367800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 326.89475749600001, "SHAPE_Area": 5591.8058275699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363896.648100003600121, 258262.848099999129772 ], [ 363896.304799996316433, 258272.685199998319149 ], [ 363893.95719999819994, 258288.757500000298023 ], [ 363889.913500003516674, 258296.145799998193979 ], [ 363885.817199997603893, 258303.711599998176098 ], [ 363880.115500003099442, 258310.419900000095367 ], [ 363939.651399999856949, 258326.31700000166893 ], [ 363939.928099997341633, 258326.299499999731779 ], [ 363943.799400001764297, 258322.527499999850988 ], [ 363945.244099996984005, 258319.457499999552965 ], [ 363964.505300000309944, 258285.524999998509884 ], [ 363968.654500000178814, 258278.215300001204014 ], [ 363987.682199999690056, 258244.694099999964237 ], [ 363992.919299997389317, 258235.303599998354912 ], [ 363983.803000003099442, 258236.938099998980761 ], [ 363897.30460000038147, 258252.447000000625849 ], [ 363896.648100003600121, 258262.848099999129772 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104022100", "MAP": "D9-3665-T86", "PARCEL_NAM": "4-13-1", "ACRE": "1.00", "LONGITUDE": -64.88573641000001, "LATITUDE": 18.3532009, "OBJECTID_1": 6793, "PARCEL_NO_": "103104022100", "Tax_Legal_": "TABOR&HARMONY 4-13-1 No.5&6 EASTEND QTR", "Name": "AMARO, JOSE E.", "Address": "5C Charlotee Amalie", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 92000, "Improved_V": 257400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 362.10811900599998, "SHAPE_Area": 4084.3654385599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363593.606899999082088, 258239.030699998140335 ], [ 363527.659800000488758, 258145.593699999153614 ], [ 363525.86599999666214, 258150.889199998229742 ], [ 363522.493299998342991, 258168.17119999974966 ], [ 363522.345799997448921, 258185.479699999094009 ], [ 363523.096400000154972, 258192.029699999839067 ], [ 363524.678400002419949, 258195.631299998611212 ], [ 363543.013199999928474, 258220.479299999773502 ], [ 363592.198600001633167, 258306.100400000810623 ], [ 363593.606899999082088, 258239.030699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104022600", "MAP": "B9-473-T76", "PARCEL_NAM": "4-12", "ACRE": "2.02", "LONGITUDE": -64.88489818, "LATITUDE": 18.35330119, "OBJECTID_1": 6797, "PARCEL_NO_": "103104022600", "Tax_Legal_": "TARBOR & HARMONY 4-12 EAST END QTR", "Name": "QUELCH, JOHN A. & JOYCE A.", "Address": "Kingsway Vlg", "City": "Schenectady", "State": "New York", "Zip": 12304, "Country": "United States", "Land_Value": 599400, "Improved_V": 113500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.427310428, "SHAPE_Area": 6473.1964836500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363703.256499998271465, 258245.23589999973774 ], [ 363708.16160000115633, 258238.929499998688698 ], [ 363710.104000002145767, 258237.054299999028444 ], [ 363632.947300001978874, 258170.34180000051856 ], [ 363628.66780000180006, 258166.730599999427795 ], [ 363626.407799996435642, 258173.886999998241663 ], [ 363626.338100001215935, 258175.488600000739098 ], [ 363628.427199997007847, 258180.014899998903275 ], [ 363633.580200001597404, 258185.028599999845028 ], [ 363634.346199996769428, 258190.111999999731779 ], [ 363634.0675999969244, 258193.732999999076128 ], [ 363633.23200000077486, 258197.284400001168251 ], [ 363630.725100003182888, 258200.000199999660254 ], [ 363626.616700001060963, 258202.158900000154972 ], [ 363622.099299997091293, 258203.150299999862909 ], [ 363617.334299996495247, 258203.44200000166893 ], [ 363613.446000002324581, 258202.793999999761581 ], [ 363610.513099998235703, 258201.206000000238419 ], [ 363606.430200003087521, 258246.835099998861551 ], [ 363664.430100001394749, 258289.299300000071526 ], [ 363703.256499998271465, 258245.23589999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203010900", "MAP": "B9-31-T57", "PARCEL_NAM": "4-25", "ACRE": "1.31", "LONGITUDE": -64.88302382000001, "LATITUDE": 18.35333331, "OBJECTID_1": 6960, "PARCEL_NO_": "103203010900", "Tax_Legal_": "TARBOR & HARMONY 4 25 EAST END QUARTER", "Name": "Schmauder, Arthur R. & Elizabeth A. McGuire", "Address": "4 Easy St", "City": "Westford", "State": "Massachusetts", "Zip": 1886, "Country": "United States", "Land_Value": 90800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 291.36492012100001, "SHAPE_Area": 5306.6463789199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363890.526000000536442, 258244.5135000012815 ], [ 363887.636600002646446, 258243.068799998611212 ], [ 363816.334299996495247, 258209.544799998402596 ], [ 363815.130199998617172, 258213.001299999654293 ], [ 363817.347199998795986, 258295.340799998492002 ], [ 363831.848200000822544, 258296.937100000679493 ], [ 363842.312299996614456, 258299.133699998259544 ], [ 363867.186599999666214, 258306.472600001841784 ], [ 363876.25959999859333, 258302.843400001525879 ], [ 363883.121899999678135, 258296.703400000929832 ], [ 363887.094800002872944, 258287.13230000063777 ], [ 363890.526000000536442, 258244.5135000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104022700", "MAP": "F9-741-T61", "PARCEL_NAM": "4-22A", "ACRE": "1.03", "LONGITUDE": -64.88377021, "LATITUDE": 18.3528931, "OBJECTID_1": 6798, "PARCEL_NO_": "103104022700", "Tax_Legal_": "TARBOR & HARMONY 4-22A EAST END QTR", "Name": "STREIBICH, BRUCE W.", "Address": "PO Box 302009", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 74100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 308.435816606, "SHAPE_Area": 4547.8805733899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363815.114399999380112, 258160.747400000691414 ], [ 363814.339299999177456, 258142.171900000423193 ], [ 363759.390900000929832, 258188.6864 ], [ 363717.506999999284744, 258229.807599999010563 ], [ 363749.861000001430511, 258249.895500000566244 ], [ 363757.432800002396107, 258245.958200000226498 ], [ 363772.421599999070168, 258237.470600001513958 ], [ 363779.645099997520447, 258230.969500001519918 ], [ 363782.627300001680851, 258229.085999999195337 ], [ 363789.93860000371933, 258224.468299999833107 ], [ 363801.67679999768734, 258216.161299999803305 ], [ 363809.080899998545647, 258206.951299998909235 ], [ 363809.803300000727177, 258200.269499998539686 ], [ 363810.47860000282526, 258193.805700000375509 ], [ 363811.067400000989437, 258188.170099999755621 ], [ 363811.88120000064373, 258185.210900001227856 ], [ 363811.067400000989437, 258170.833700001239777 ], [ 363815.114399999380112, 258160.747400000691414 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203011800", "MAP": "F9-1732-T66", "PARCEL_NAM": "REM 4-30", "ACRE": "0.24", "LONGITUDE": -64.88182439000001, "LATITUDE": 18.35285023, "OBJECTID_1": 6967, "PARCEL_NO_": "103203011800", "Tax_Legal_": "TABOR&HARMONY 4-30 No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 20400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.748248187, "SHAPE_Area": 1025.05131635 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363996.862800002098083, 258211.22520000115037 ], [ 363983.889899998903275, 258182.933100000023842 ], [ 363966.31530000269413, 258186.497400000691414 ], [ 363976.854299999773502, 258218.752700001001358 ], [ 363983.960100002586842, 258236.542700000107288 ], [ 363983.803000003099442, 258236.938099998980761 ], [ 363992.919299997389317, 258235.303599998354912 ], [ 363995.787699997425079, 258230.541900001466274 ], [ 364001.948700003325939, 258220.314800001680851 ], [ 363996.862800002098083, 258211.22520000115037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104026900", "MAP": "D9-6917-T001", "PARCEL_NAM": "4-11B", "ACRE": ".48", "LONGITUDE": -64.8845841, "LATITUDE": 18.35270129, "OBJECTID_1": 6835, "PARCEL_NO_": "103104026900", "Tax_Legal_": "4-11b TABOR & HARMONY\n No.5&6 EAST END QTR", "Name": "BRADLEY W COOK and KIMBERLY ALFIERI", "Address": "Po Box 261400", "City": "Plano", "State": "Texas", "Zip": 75026, "Country": "United States", "Land_Value": 41600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 278.51193696299998, "SHAPE_Area": 2608.2410595199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363653.434199996292591, 258131.879399999976158 ], [ 363650.508299998939037, 258130.095600001513958 ], [ 363645.291299998760223, 258135.431099999696016 ], [ 363638.69200000166893, 258143.350400000810623 ], [ 363637.467500001192093, 258146.037399999797344 ], [ 363637.816399998962879, 258146.348900001496077 ], [ 363642.790299996733665, 258150.790699999779463 ], [ 363723.823399998247623, 258222.930799998342991 ], [ 363724.198899999260902, 258223.237500000745058 ], [ 363740.666599996387959, 258207.06980000063777 ], [ 363739.888300001621246, 258206.258600000292063 ], [ 363653.434199996292591, 258131.879399999976158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023000", "MAP": "D9-145-T57", "PARCEL_NAM": "4-11A", "ACRE": null, "LONGITUDE": -64.88438444000001, "LATITUDE": 18.35254749, "OBJECTID_1": 6801, "PARCEL_NO_": "103104023000", "Tax_Legal_": "4-11A REM TARBOR & HARMONY \nNO. 5&6 EAST END QTR", "Name": "BRADLEY W COOK and KIMBERLY ALFIERI", "Address": "Po Box 261400", "City": "Plano", "State": "Texas", "Zip": 75026, "Country": "United States", "Land_Value": 72900, "Improved_V": 1194300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.73311384599998, "SHAPE_Area": 3516.9870669699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363762.148299999535084, 258184.957800000905991 ], [ 363695.808600001037121, 258122.899599999189377 ], [ 363693.013599999248981, 258123.97069999948144 ], [ 363687.358599998056889, 258125.190900001674891 ], [ 363681.714400000870228, 258125.14469999819994 ], [ 363674.470200002193451, 258123.607799999415874 ], [ 363662.5962999984622, 258123.845600001513958 ], [ 363656.14360000193119, 258126.192099999636412 ], [ 363650.508299998939037, 258130.095600001513958 ], [ 363653.434199996292591, 258131.879399999976158 ], [ 363739.888300001621246, 258206.258600000292063 ], [ 363740.666599996387959, 258207.06980000063777 ], [ 363759.390900000929832, 258188.6864 ], [ 363762.873499996960163, 258185.738400001078844 ], [ 363762.148299999535084, 258184.957800000905991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012000", "MAP": "B9-31-T57", "PARCEL_NAM": "4-26", "ACRE": "1.14", "LONGITUDE": -64.88290478, "LATITUDE": 18.35263001, "OBJECTID_1": 6969, "PARCEL_NO_": "103203012000", "Tax_Legal_": "TARBOR & HARMONY 4 26 EAST END", "Name": "STREIBICH, BRUCE", "Address": "PO Box 302009", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 80700, "Improved_V": 545300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 329.02263960499999, "SHAPE_Area": 4555.9918890700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363831.16780000180006, 258150.360399998724461 ], [ 363827.153899997472763, 258148.407299999147654 ], [ 363825.514399997889996, 258150.969099998474121 ], [ 363818.422499999403954, 258169.115600001066923 ], [ 363817.929700002074242, 258191.420699998736382 ], [ 363817.929700002074242, 258197.708299998193979 ], [ 363817.929700002074242, 258204.964800000190735 ], [ 363816.334299996495247, 258209.544799998402596 ], [ 363887.636600002646446, 258243.068799998611212 ], [ 363890.526000000536442, 258244.5135000012815 ], [ 363891.220399998128414, 258234.965300001204014 ], [ 363888.879900000989437, 258228.165199998766184 ], [ 363883.403599999845028, 258206.109299998730421 ], [ 363882.76070000231266, 258203.520100001245737 ], [ 363893.596000000834465, 258181.127199999988079 ], [ 363891.428900003433228, 258179.682500001043081 ], [ 363838.975000001490116, 258154.159299999475479 ], [ 363831.16780000180006, 258150.360399998724461 ] ] ], [ [ [ 363821.223499998450279, 258145.521600000560284 ], [ 363814.339299999177456, 258142.171900000423193 ], [ 363815.114399999380112, 258160.747400000691414 ], [ 363821.223499998450279, 258145.521600000560284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104026800", "MAP": "D9-4580-T80", "PARCEL_NAM": "4-10B", "ACRE": "1.02", "LONGITUDE": -64.88406947, "LATITUDE": 18.3523257, "OBJECTID_1": 6834, "PARCEL_NO_": "103104026800", "Tax_Legal_": "TARBOR & HARMONY 4-10B EASTEND QUARTER", "Name": "MASON, KEN & SAMUEL", "Address": "4605 Tutu Park Mall", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93800, "Improved_V": 613000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.88909166899998, "SHAPE_Area": 3622.2507155600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363784.6233000010252, 258154.567299999296665 ], [ 363721.501999996602535, 258091.012200001627207 ], [ 363719.043999999761581, 258097.374800000339746 ], [ 363712.501800000667572, 258108.087000001221895 ], [ 363704.354099996387959, 258117.941799998283386 ], [ 363699.485699996352196, 258121.490499999374151 ], [ 363695.808600001037121, 258122.899599999189377 ], [ 363762.148299999535084, 258184.957800000905991 ], [ 363762.873499996960163, 258185.738400001078844 ], [ 363791.507799997925758, 258161.499099999666214 ], [ 363784.6233000010252, 258154.567299999296665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012200", "MAP": "B9-31-T57", "PARCEL_NAM": "4-29", "ACRE": "1.04", "LONGITUDE": -64.8821946, "LATITUDE": 18.35232426, "OBJECTID_1": 6971, "PARCEL_NO_": "103203012200", "Tax_Legal_": "4-29 TABOR&HARMONY 5&6 EAST END QUARTER", "Name": "SUCHICH FAMILY TRUST", "Address": "PO Box 600135", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 74700, "Improved_V": 455000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.72192119900001, "SHAPE_Area": 4597.2680483200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363975.171800002455711, 258164.434599999338388 ], [ 363940.909999996423721, 258091.736299999058247 ], [ 363932.783500000834465, 258107.492400001734495 ], [ 363925.263999998569489, 258122.071800000965595 ], [ 363922.854299999773502, 258127.238699998706579 ], [ 363924.848200000822544, 258128.335400000214577 ], [ 363925.512199997901917, 258130.593100000172853 ], [ 363925.379399999976158, 258132.585099998861551 ], [ 363924.848200000822544, 258134.577199999243021 ], [ 363923.785800002515316, 258135.905200000852346 ], [ 363921.793700002133846, 258136.569200001657009 ], [ 363915.8175999969244, 258148.388700000941753 ], [ 363912.895900003612041, 258158.2162000015378 ], [ 363906.301600001752377, 258170.890299998223782 ], [ 363898.841300003230572, 258185.722100000828505 ], [ 363892.824699997901917, 258197.683699999004602 ], [ 363890.706600002944469, 258201.894799999892712 ], [ 363891.557300001382828, 258201.705800000578165 ], [ 363893.95719999819994, 258201.172499999403954 ], [ 363966.31530000269413, 258186.497400000691414 ], [ 363983.889899998903275, 258182.933100000023842 ], [ 363975.171800002455711, 258164.434599999338388 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023100", "MAP": "D9-4580-T88", "PARCEL_NAM": "4-10A", "ACRE": "1.02", "LONGITUDE": -64.88385337, "LATITUDE": 18.35201029, "OBJECTID_1": 6802, "PARCEL_NO_": "103104023100", "Tax_Legal_": "TARBOR & HARMONY 4-10A EAST END QTR", "Name": "REY, SHERWIN & JACQUELINE", "Address": "PO Box 9347", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 93200, "Improved_V": 426000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 288.0372917, "SHAPE_Area": 3755.4329135399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363803.336800001561642, 258128.963100001215935 ], [ 363739.981499999761581, 258052.903200000524521 ], [ 363737.954199999570847, 258054.677600000053644 ], [ 363724.815800003707409, 258082.434399999678135 ], [ 363721.501999996602535, 258091.012200001627207 ], [ 363784.6233000010252, 258154.567299999296665 ], [ 363791.507799997925758, 258161.499099999666214 ], [ 363814.339299999177456, 258142.171900000423193 ], [ 363803.336800001561642, 258128.963100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023500", "MAP": "F9-787-T61", "PARCEL_NAM": "4-9", "ACRE": null, "LONGITUDE": -64.8836335, "LATITUDE": 18.35174104, "OBJECTID_1": 6806, "PARCEL_NO_": "103104023500", "Tax_Legal_": "TABOR & HARMONY 4-9 EAST END QTR", "Name": "EBERHART CARIBBEAN LLC", "Address": "10519 Royal Springs Dr", "City": "Dallas", "State": "Texas", "Zip": 75229, "Country": "United States", "Land_Value": 261400, "Improved_V": 289000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 302.72147043199999, "SHAPE_Area": 4267.1881296000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363826.416599996387959, 258099.458200000226498 ], [ 363770.115800000727177, 258027.941100001335144 ], [ 363742.01630000025034, 258051.12220000103116 ], [ 363739.981499999761581, 258052.903200000524521 ], [ 363803.336800001561642, 258128.963100001215935 ], [ 363814.339299999177456, 258142.171900000423193 ], [ 363830.935999996960163, 258123.803899999707937 ], [ 363838.762999996542931, 258115.141600001603365 ], [ 363826.416599996387959, 258099.458200000226498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012300", "MAP": "B9-31-T57", "PARCEL_NAM": "4-28", "ACRE": "1.08", "LONGITUDE": -64.88258552000001, "LATITUDE": 18.35151199, "OBJECTID_1": 6972, "PARCEL_NO_": "103203012300", "Tax_Legal_": "TABOR&HARMONY 4-28 5&6 EASTEND QTR.", "Name": "STRYKER LIVING TRUST", "Address": "7705 Lower Hull", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 77100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 283.990653619, "SHAPE_Area": 4423.9775445200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363919.112099997699261, 258127.065600000321865 ], [ 363920.067299999296665, 258126.874600000679493 ], [ 363922.192199997603893, 258126.874600000679493 ], [ 363922.854299999773502, 258127.238699998706579 ], [ 363925.263999998569489, 258122.071800000965595 ], [ 363932.783500000834465, 258107.492400001734495 ], [ 363940.909999996423721, 258091.736299999058247 ], [ 363934.924800001084805, 258079.28830000013113 ], [ 363902.444799996912479, 258011.73589999973774 ], [ 363876.658299997448921, 258063.435899998992682 ], [ 363865.785499997437, 258085.235100001096725 ], [ 363868.494300000369549, 258088.305100001394749 ], [ 363873.00900000333786, 258092.09739999845624 ], [ 363914.905299998819828, 258125.867400001734495 ], [ 363917.259499996900558, 258128.221500001847744 ], [ 363918.208099998533726, 258127.272999998182058 ], [ 363918.73929999768734, 258127.1402000002563 ], [ 363919.112099997699261, 258127.065600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023600", "MAP": "F9-787-T61", "PARCEL_NAM": "4-9A", "ACRE": null, "LONGITUDE": -64.88334774, "LATITUDE": 18.3514508, "OBJECTID_1": 6807, "PARCEL_NO_": "103104023600", "Tax_Legal_": "4-9A TABOR&HARMONY EAST END QTR", "Name": "LLEWELLYN & NICOLE FRETT & GLEN LEROY PRENTICE", "Address": "PO Box 307803", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 92000, "Improved_V": 801300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 296.25589206400002, "SHAPE_Area": 4275.1869754199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363851.951399996876717, 258067.850900001823902 ], [ 363799.928700000047684, 258002.478399999439716 ], [ 363773.687299996614456, 258024.994800001382828 ], [ 363770.115800000727177, 258027.941100001335144 ], [ 363826.416599996387959, 258099.458200000226498 ], [ 363838.762999996542931, 258115.141600001603365 ], [ 363865.785499997437, 258085.235100001096725 ], [ 363851.951399996876717, 258067.850900001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104025200", "MAP": null, "PARCEL_NAM": "4-8A", "ACRE": null, "LONGITUDE": -64.88307108, "LATITUDE": 18.3511366, "OBJECTID_1": 6822, "PARCEL_NO_": "103104025200", "Tax_Legal_": "TABOR & HARMONY 4-8A EAST END QTR", "Name": "FAHIE, JR, HERMAN ALFRED", "Address": "3012 Calhoun Ct", "City": "Virginia Beach", "State": "Virginia", "Zip": 23456, "Country": "United States", "Land_Value": 72300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 323.27834205900001, "SHAPE_Area": 6044.2107352200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363838.587099999189377, 257976.200100000947714 ], [ 363821.943000003695488, 257970.104600001126528 ], [ 363821.716499999165535, 257971.770100001245737 ], [ 363818.395900003612041, 257982.930900000035763 ], [ 363811.9679000005126, 257991.930700000375509 ], [ 363811.050999999046326, 257993.214400000870228 ], [ 363805.367200002074242, 257997.811900001019239 ], [ 363799.928700000047684, 258002.478399999439716 ], [ 363851.951399996876717, 258067.850900001823902 ], [ 363865.785499997437, 258085.235100001096725 ], [ 363876.658299997448921, 258063.435899998992682 ], [ 363902.444799996912479, 258011.73589999973774 ], [ 363896.576099999248981, 257997.427799999713898 ], [ 363885.64130000025034, 257993.432500001043081 ], [ 363838.587099999189377, 257976.200100000947714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023700", "MAP": "D9-1572-T80", "PARCEL_NAM": "4-7A&8", "ACRE": "1.00", "LONGITUDE": -64.88304367000001, "LATITUDE": 18.35073677, "OBJECTID_1": 6808, "PARCEL_NO_": "103104023700", "Tax_Legal_": "TABOR & HARMONY 4-7A & 8 EAST END QTR", "Name": "LESS, GARFIELD & WALKER, LEROY", "Address": "PO Box 10727", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 95000, "Improved_V": 593700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 244.05440290199999, "SHAPE_Area": 2686.57698132 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363849.535700000822544, 257930.073600001633167 ], [ 363849.301600001752377, 257926.000900000333786 ], [ 363834.872900001704693, 257927.381400000303984 ], [ 363818.749700002372265, 257928.924100000411272 ], [ 363820.44370000064373, 257931.863000001758337 ], [ 363822.040100000798702, 257933.77589999884367 ], [ 363823.613200001418591, 257938.432799998670816 ], [ 363822.576700001955032, 257965.444299999624491 ], [ 363821.943000003695488, 257970.104600001126528 ], [ 363838.587099999189377, 257976.200100000947714 ], [ 363885.64130000025034, 257993.432500001043081 ], [ 363896.576099999248981, 257997.427799999713898 ], [ 363890.231899999082088, 257981.960499998182058 ], [ 363881.306000001728535, 257960.198899999260902 ], [ 363850.095399998128414, 257939.812199998646975 ], [ 363849.535700000822544, 257930.073600001633167 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104023900", "MAP": "D9-5038-T90", "PARCEL_NAM": "4-7&4-8B", "ACRE": "1.00", "LONGITUDE": -64.8832416, "LATITUDE": 18.35024118, "OBJECTID_1": 6810, "PARCEL_NO_": "103104023900", "Tax_Legal_": "TABOR & HARMONY REM 4-7&4-8B EAST END QTR", "Name": "WEBSTER, MC COY & LORNA", "Address": "P.O. BOX 2875", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 64100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 315.10570543599999, "SHAPE_Area": 3853.3920580600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363848.304300002753735, 257879.739799998700619 ], [ 363823.470399998128414, 257860.538100000470877 ], [ 363776.348200000822544, 257901.949000000953674 ], [ 363795.649400003254414, 257908.017599999904633 ], [ 363804.479299999773502, 257912.733899999409914 ], [ 363808.48929999768734, 257915.299899999052286 ], [ 363814.08669999986887, 257920.834100000560284 ], [ 363818.749700002372265, 257928.924100000411272 ], [ 363834.872900001704693, 257927.381400000303984 ], [ 363849.301600001752377, 257926.000900000333786 ], [ 363849.535700000822544, 257930.073600001633167 ], [ 363850.095399998128414, 257939.812199998646975 ], [ 363881.306000001728535, 257960.198899999260902 ], [ 363848.304300002753735, 257879.739799998700619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203015800", "MAP": "D9-8507-T010", "PARCEL_NAM": "4-39-1", "ACRE": ".468", "LONGITUDE": -64.88163362, "LATITUDE": 18.35344231, "OBJECTID_1": 6997, "PARCEL_NO_": "103203015800", "Tax_Legal_": "4-39-1 TABOR & HARMONY NO.5&6 EAST END QTR", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 49000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.884533683, "SHAPE_Area": 2245.9030534399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363995.787699997425079, 258230.541900001466274 ], [ 363992.919299997389317, 258235.303599998354912 ], [ 363987.682199999690056, 258244.694099999964237 ], [ 363968.654500000178814, 258278.215300001204014 ], [ 364010.857900001108646, 258293.442499998956919 ], [ 364033.040799997746944, 258249.187899999320507 ], [ 363995.787699997425079, 258230.541900001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203011700", "MAP": "G9-819-T65", "PARCEL_NAM": "4-52", "ACRE": ".25", "LONGITUDE": -64.88132593, "LATITUDE": 18.35324789, "OBJECTID_1": 6966, "PARCEL_NO_": "103203011700", "Tax_Legal_": "TABOR&HARMONY 4-52 No.4 EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.800880369, "SHAPE_Area": 1227.4036472299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364072.52139999717474, 258252.8885000012815 ], [ 364001.948700003325939, 258220.314800001680851 ], [ 363995.787699997425079, 258230.541900001466274 ], [ 364033.040799997746944, 258249.187899999320507 ], [ 364038.640100002288818, 258254.510999999940395 ], [ 364058.875799998641014, 258273.265000000596046 ], [ 364075.282600000500679, 258254.363400001078844 ], [ 364072.52139999717474, 258252.8885000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012400", "MAP": "D9-6948-T001", "PARCEL_NAM": "1-REM", "ACRE": "13.4", "LONGITUDE": -64.88157523, "LATITUDE": 18.35129053, "OBJECTID_1": 6973, "PARCEL_NO_": "103203012400", "Tax_Legal_": "TABOR&HARMONY 1 REM.NORTH&SOUTH No.5&6EASTEND QTR.", "Name": "FFO, LLC", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 434900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1240.37947618, "SHAPE_Area": 62767.840466200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364106.109200000762939, 258001.750999998301268 ], [ 364108.169200003147125, 257850.269299998879433 ], [ 364089.891599997878075, 257823.033100001513958 ], [ 364092.260200001299381, 257828.963100001215935 ], [ 364093.802699998021126, 257837.208399999886751 ], [ 364094.499300003051758, 257850.090799998492002 ], [ 364094.398599997162819, 257861.911200001835823 ], [ 364092.715800002217293, 257870.130100000649691 ], [ 364089.454599998891354, 257874.325300000607967 ], [ 364075.657399997115135, 257884.767000000923872 ], [ 364060.211599998176098, 257899.417100001126528 ], [ 364048.046800002455711, 257907.550200000405312 ], [ 364034.296300001442432, 257912.503899998962879 ], [ 364018.978200003504753, 257912.167500000447035 ], [ 364012.538500003516674, 257910.848200000822544 ], [ 364004.514899998903275, 257906.1385000012815 ], [ 364001.327399998903275, 257901.679400000721216 ], [ 363998.412799999117851, 257887.3462999984622 ], [ 363978.989500001072884, 257873.30519999936223 ], [ 363962.759999997913837, 257861.572799999266863 ], [ 363882.248499996960163, 257870.729499999433756 ], [ 363873.398800000548363, 257868.335099998861551 ], [ 363848.304300002753735, 257879.739799998700619 ], [ 363881.306000001728535, 257960.198899999260902 ], [ 363890.231899999082088, 257981.960499998182058 ], [ 363902.444799996912479, 258011.73589999973774 ], [ 363934.924800001084805, 258079.28830000013113 ], [ 363940.909999996423721, 258091.736299999058247 ], [ 363975.171800002455711, 258164.434599999338388 ], [ 363983.889899998903275, 258182.933100000023842 ], [ 363996.862800002098083, 258211.22520000115037 ], [ 364001.948700003325939, 258220.314800001680851 ], [ 364072.52139999717474, 258252.8885000012815 ], [ 364069.33389999717474, 258248.429400000721216 ], [ 364066.947300001978874, 258244.610199999064207 ], [ 364066.250699996948242, 258231.727800000458956 ], [ 364070.40089999884367, 258217.829599998891354 ], [ 364076.939499996602535, 258207.539500001817942 ], [ 364080.188199996948242, 258204.821899998933077 ], [ 364083.456600002944469, 258199.782400000840425 ], [ 364087.520499996840954, 258196.015999998897314 ], [ 364096.429499998688698, 258191.444899998605251 ], [ 364102.890799999237061, 258190.231199998408556 ], [ 364106.024700000882149, 258011.671700000762939 ], [ 364106.109200000762939, 258001.750999998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104026400", "MAP": "D9-3665-T86", "PARCEL_NAM": "4-13-2", "ACRE": ".82", "LONGITUDE": -64.88561544, "LATITUDE": 18.35280447, "OBJECTID_1": 6830, "PARCEL_NO_": "103104026400", "Tax_Legal_": "TARBOR & HARMONY 4-13-2 EAST END QTR.", "Name": "QUELCH, JOHN A. & JOYCE A.", "Address": "Kingsway Vlg", "City": "Schenectady", "State": "New York", "Zip": 12304, "Country": "United States", "Land_Value": 53400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 320.991989004, "SHAPE_Area": 3927.4463551 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363593.606899999082088, 258239.030699998140335 ], [ 363593.639700002968311, 258237.470600001513958 ], [ 363606.430200003087521, 258246.835099998861551 ], [ 363610.513099998235703, 258201.206000000238419 ], [ 363608.929300002753735, 258200.348400000482798 ], [ 363604.194099999964237, 258196.100600000470877 ], [ 363602.429300002753735, 258193.073300000280142 ], [ 363603.077299997210503, 258188.320999998599291 ], [ 363604.589400000870228, 258183.136700000613928 ], [ 363607.613600000739098, 258180.328499998897314 ], [ 363610.205799996852875, 258178.384300000965595 ], [ 363618.630400002002716, 258173.199999999254942 ], [ 363619.401399999856949, 258171.717199999839067 ], [ 363530.001800000667572, 258138.67960000038147 ], [ 363527.659800000488758, 258145.593699999153614 ], [ 363593.606899999082088, 258239.030699998140335 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104022900", "MAP": "D9-6917-T001", "PARCEL_NAM": "4-11C", "ACRE": ".47", "LONGITUDE": -64.88471537, "LATITUDE": 18.3528462, "OBJECTID_1": 6800, "PARCEL_NO_": "103104022900", "Tax_Legal_": "4-11c TABOR & HARMONY No.5&6 EAST END QTR", "Name": "THOMAS DANIEL CRIM REVOCABLE TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 39900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.941153321, "SHAPE_Area": 2292.9596114300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363637.816399998962879, 258146.348900001496077 ], [ 363637.467500001192093, 258146.037399999797344 ], [ 363633.412500001490116, 258154.935899998992682 ], [ 363628.66780000180006, 258166.730599999427795 ], [ 363632.947300001978874, 258170.34180000051856 ], [ 363710.104000002145767, 258237.054299999028444 ], [ 363711.413900002837181, 258235.789700001478195 ], [ 363724.198899999260902, 258223.237500000745058 ], [ 363723.823399998247623, 258222.930799998342991 ], [ 363642.790299996733665, 258150.790699999779463 ], [ 363637.816399998962879, 258146.348900001496077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103104022500", "MAP": "C9-47-T62", "PARCEL_NAM": "4-22B", "ACRE": "1.00", "LONGITUDE": -64.88355173, "LATITUDE": 18.35345613, "OBJECTID_1": 6796, "PARCEL_NO_": "103104022500", "Tax_Legal_": "TARBOR & HARMONY 4 22B EAST END QTR", "Name": "BLUE WATERS RETREAT LLC", "Address": "4 Easy St", "City": "Westford", "State": "Massachusetts", "Zip": 1886, "Country": "United States", "Land_Value": 92000, "Improved_V": 530200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 589.68900844200004, "SHAPE_Area": 5264.32667649 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363749.861000001430511, 258249.895500000566244 ], [ 363717.506999999284744, 258229.807599999010563 ], [ 363711.413900002837181, 258235.789700001478195 ], [ 363708.16160000115633, 258238.929499998688698 ], [ 363703.256499998271465, 258245.23589999973774 ], [ 363704.608999997377396, 258247.664299998432398 ], [ 363741.180299997329712, 258313.326400000602007 ], [ 363751.166599996387959, 258302.187399998307228 ], [ 363753.459899999201298, 258296.342199999839067 ], [ 363759.058100000023842, 258292.008099999278784 ], [ 363778.647799998521805, 258284.973200000822544 ], [ 363791.744499996304512, 258280.269900001585484 ], [ 363794.814499996602535, 258277.741700001060963 ], [ 363793.550399996340275, 258275.9358000010252 ], [ 363772.24099999666214, 258269.615200001746416 ], [ 363768.48369999974966, 258268.701999999582767 ], [ 363766.980400003492832, 258268.336599998176098 ], [ 363746.236400000751019, 258263.294700000435114 ], [ 363744.249899998307228, 258261.308200001716614 ], [ 363743.708099998533726, 258258.057599999010563 ], [ 363746.236400000751019, 258254.445900000631809 ], [ 363747.069099999964237, 258252.988499999046326 ], [ 363748.403399996459484, 258250.653499998152256 ], [ 363749.861000001430511, 258249.895500000566244 ] ] ], [ [ [ 363786.698299996554852, 258296.145399998873472 ], [ 363805.254299998283386, 258295.030699998140335 ], [ 363817.347199998795986, 258295.340799998492002 ], [ 363815.130199998617172, 258213.001299999654293 ], [ 363806.372100003063679, 258221.759500000625849 ], [ 363800.244499996304512, 258225.902100000530481 ], [ 363793.550399996340275, 258230.427700001746416 ], [ 363785.604500003159046, 258236.7483000010252 ], [ 363778.200400002300739, 258243.068799998611212 ], [ 363762.850400000810623, 258251.917599998414516 ], [ 363754.723999999463558, 258256.432300001382828 ], [ 363758.51630000025034, 258258.418800000101328 ], [ 363763.618900001049042, 258260.311700001358986 ], [ 363769.7128000035882, 258262.572299998253584 ], [ 363777.297499999403954, 258264.739399999380112 ], [ 363797.884499996900558, 258270.879399999976158 ], [ 363806.372100003063679, 258275.394099999219179 ], [ 363808.539099998772144, 258278.825199998915195 ], [ 363804.927400000393391, 258280.811700001358986 ], [ 363794.995099999010563, 258285.868099998682737 ], [ 363782.582299999892712, 258290.433400001376867 ], [ 363764.110799998044968, 258297.227099999785423 ], [ 363786.698299996554852, 258296.145399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203012100", "MAP": "B9-31-T57", "PARCEL_NAM": "4-27", "ACRE": "1.21", "LONGITUDE": -64.88283459, "LATITUDE": 18.352065, "OBJECTID_1": 6970, "PARCEL_NO_": "103203012100", "Tax_Legal_": "TARBOR & HARMONY 4-27 EAST END QTR.", "Name": "KAPLANEK III, CHARLES A.", "Address": "15420 SW 72nd Ave", "City": "Palmetto Bay", "State": "Florida", "Zip": 33157, "Country": "United States", "Land_Value": 84800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 425.58476846799999, "SHAPE_Area": 4650.7982112399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363914.905299998819828, 258125.867400001734495 ], [ 363873.00900000333786, 258092.09739999845624 ], [ 363842.593400001525879, 258129.162599999457598 ], [ 363828.403800003230572, 258146.4543999992311 ], [ 363827.153899997472763, 258148.407299999147654 ], [ 363831.16780000180006, 258150.360399998724461 ], [ 363838.975000001490116, 258154.159299999475479 ], [ 363891.428900003433228, 258179.682500001043081 ], [ 363893.596000000834465, 258181.127199999988079 ], [ 363905.361199997365475, 258158.372499998658895 ], [ 363907.668300002813339, 258153.910399999469519 ], [ 363909.740800000727177, 258145.798300001770258 ], [ 363915.67790000140667, 258133.930399999022484 ], [ 363915.684799998998642, 258133.913100000470877 ], [ 363915.153599999845028, 258131.522700000554323 ], [ 363915.552000001072884, 258129.929000001400709 ], [ 363916.74719999730587, 258128.733800001442432 ], [ 363917.259499996900558, 258128.221500001847744 ], [ 363914.905299998819828, 258125.867400001734495 ] ] ], [ [ [ 363868.494300000369549, 258088.305100001394749 ], [ 363865.785499997437, 258085.235100001096725 ], [ 363830.935999996960163, 258123.803899999707937 ], [ 363814.339299999177456, 258142.171900000423193 ], [ 363821.223499998450279, 258145.521600000560284 ], [ 363822.805600002408028, 258141.578499998897314 ], [ 363836.038099996745586, 258126.14919999986887 ], [ 363868.494300000369549, 258088.305100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103203011900", "MAP": "F9-1732-T66", "PARCEL_NAM": "4-30A", "ACRE": "1.00", "LONGITUDE": -64.88225081, "LATITUDE": 18.35282468, "OBJECTID_1": 6968, "PARCEL_NO_": "103203011900", "Tax_Legal_": "TABOR&HARMONY 4-30A 5&6 EASTEND QTR", "Name": "ALGER, ROSH D.", "Address": "# 12", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 72300, "Improved_V": 466300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.03228527300001, "SHAPE_Area": 4206.1222734399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363976.854299999773502, 258218.752700001001358 ], [ 363966.31530000269413, 258186.497400000691414 ], [ 363893.95719999819994, 258201.172499999403954 ], [ 363891.557300001382828, 258201.705800000578165 ], [ 363890.706600002944469, 258201.894799999892712 ], [ 363890.497299998998642, 258204.676600001752377 ], [ 363897.930100001394749, 258234.761799998581409 ], [ 363897.580300003290176, 258248.079199999570847 ], [ 363897.30460000038147, 258252.447000000625849 ], [ 363983.803000003099442, 258236.938099998980761 ], [ 363983.960100002586842, 258236.542700000107288 ], [ 363976.854299999773502, 258218.752700001001358 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051100", "MAP": "G9-2618-T77", "PARCEL_NAM": "3R", "ACRE": "1.01", "LONGITUDE": -64.94792411, "LATITUDE": 18.36014448, "OBJECTID_1": 3925, "PARCEL_NO_": "102801051100", "Tax_Legal_": "ST PETER 3R LITTLE NORTHSIDE", "Name": "BRYAN, LEE & FURTES, AVENAL", "Address": "PO Box 9080", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41300, "Improved_V": 137800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 284.53453759600001, "SHAPE_Area": 3420.3797861600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357025.271700002253056, 258961.690799999982119 ], [ 357042.279600001871586, 258952.563099998980761 ], [ 357030.884400002658367, 258923.167500000447035 ], [ 357028.5912000015378, 258917.2516999989748 ], [ 357024.987899996340275, 258907.956700000911951 ], [ 357023.930699996650219, 258905.229400001466274 ], [ 357001.386100001633167, 258908.570599999278784 ], [ 356998.071199998259544, 258909.061900001019239 ], [ 356969.746899999678135, 258913.259700000286102 ], [ 356969.581200003623962, 258915.572599999606609 ], [ 356986.433899998664856, 258924.238000001758337 ], [ 356991.386600002646446, 258926.784600000828505 ], [ 356987.456900000572205, 258942.981199998408556 ], [ 356986.525499999523163, 258946.820199999958277 ], [ 356985.131399996578693, 258952.566199999302626 ], [ 356965.715000003576279, 258952.035300001502037 ], [ 356962.810999996960163, 258951.877199999988079 ], [ 356961.765399999916553, 258953.527300000190735 ], [ 356964.82880000025034, 258957.607500001788139 ], [ 356967.038400001823902, 258963.946299999952316 ], [ 356967.190200001001358, 258964.381799999624491 ], [ 356967.931800000369549, 258971.987300001084805 ], [ 356971.128200002014637, 258975.390900000929832 ], [ 356975.14360000193119, 258977.323699999600649 ], [ 356986.442800000309944, 258976.149599999189377 ], [ 357000.177100002765656, 258973.095600001513958 ], [ 357025.271700002253056, 258961.690799999982119 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056600", "MAP": "G9-2618-T77", "PARCEL_NAM": "3RB", "ACRE": "0.79", "LONGITUDE": -64.94701354, "LATITUDE": 18.35991698, "OBJECTID_1": 3974, "PARCEL_NO_": "102801056600", "Tax_Legal_": "ST PETER 3RB LT. NORTHSIDE", "Name": "BRYAN (TRUSTEE), DIANE", "Address": "PO Box 8431", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 260.583908597, "SHAPE_Area": 3333.8028114099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357101.23589999973774, 258942.258699998259544 ], [ 357097.761699996888638, 258876.791200000792742 ], [ 357095.328400000929832, 258878.460099998861551 ], [ 357089.641099996864796, 258883.479800000786781 ], [ 357075.005199998617172, 258897.714299999177456 ], [ 357066.081799998879433, 258903.97410000115633 ], [ 357059.253700003027916, 258904.568199999630451 ], [ 357045.824000000953674, 258905.736600000411272 ], [ 357037.938299998641014, 258905.553899999707937 ], [ 357023.930699996650219, 258905.229400001466274 ], [ 357024.987899996340275, 258907.956700000911951 ], [ 357028.5912000015378, 258917.2516999989748 ], [ 357030.884400002658367, 258923.167500000447035 ], [ 357042.279600001871586, 258952.563099998980761 ], [ 357043.093299999833107, 258952.126400001347065 ], [ 357056.028399996459484, 258948.221500001847744 ], [ 357068.137500002980232, 258946.631799999624491 ], [ 357085.077200002968311, 258945.926100000739098 ], [ 357101.23589999973774, 258942.258699998259544 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051200", "MAP": "D9-6876-T001", "PARCEL_NAM": "2 REM", "ACRE": "6.1", "LONGITUDE": -64.94618654, "LATITUDE": 18.35875333, "OBJECTID_1": 3926, "PARCEL_NO_": "102801051200", "Tax_Legal_": "ST.PETER 2 REMAINDER No.2 LITTLE NORTHSIDE QTR.", "Name": "GHP LLC", "Address": "7406 Estate St Peter Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 355900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 882.7899158, "SHAPE_Area": 22557.202538699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357305.326800003647804, 258743.601300001144409 ], [ 357302.157300002872944, 258737.031399998813868 ], [ 357302.177000001072884, 258734.709600001573563 ], [ 357302.755999997258186, 258732.853000000119209 ], [ 357295.060000002384186, 258733.436000000685453 ], [ 357285.048000000417233, 258729.579700000584126 ], [ 357278.503799997270107, 258729.843600001186132 ], [ 357258.430900000035763, 258730.653000000864267 ], [ 357256.980400003492832, 258739.405900001525879 ], [ 357250.524499997496605, 258739.986299999058247 ], [ 357252.07940000295639, 258730.909099999815226 ], [ 357222.781999997794628, 258732.090399999171495 ], [ 357222.359300002455711, 258733.211899999529123 ], [ 357220.50110000371933, 258736.076999999582767 ], [ 357219.090899996459484, 258738.251400001347065 ], [ 357217.440499998629093, 258742.670899998396635 ], [ 357210.984600000083447, 258743.251299999654293 ], [ 357212.64580000191927, 258737.565400000661612 ], [ 357213.746799997985363, 258735.197599999606609 ], [ 357215.046599999070168, 258732.402300000190735 ], [ 357197.662799999117851, 258733.103300001472235 ], [ 357198.195100001990795, 258730.058800000697374 ], [ 357191.766199998557568, 258727.473099999129772 ], [ 357170.870399996638298, 258719.280499998480082 ], [ 357160.592600002884865, 258715.075399998575449 ], [ 357160.926500000059605, 258728.320000000298023 ], [ 357144.173600003123283, 258729.448100000619888 ], [ 357113.77759999781847, 258731.495000001043081 ], [ 357104.731700003147125, 258731.018899999558926 ], [ 357089.647600002586842, 258730.225000001490116 ], [ 357093.165899999439716, 258753.686099998652935 ], [ 357093.11370000243187, 258759.807300001382828 ], [ 357094.370300002396107, 258801.614199999719858 ], [ 357095.682700000703335, 258836.877500001341105 ], [ 357097.761699996888638, 258876.791200000792742 ], [ 357101.23589999973774, 258942.258699998259544 ], [ 357115.788999997079372, 258937.73369999974966 ], [ 357131.015900000929832, 258931.129000000655651 ], [ 357129.069700002670288, 258848.729400001466274 ], [ 357163.557199999690056, 258836.775499999523163 ], [ 357241.269900001585484, 258809.839200001209974 ], [ 357241.303999997675419, 258794.744800001382828 ], [ 357326.941200003027916, 258788.877300001680851 ], [ 357321.170699998736382, 258776.872600000351667 ], [ 357310.076499998569489, 258753.98369999974966 ], [ 357307.702600002288818, 258748.686900001019239 ], [ 357305.326800003647804, 258743.601300001144409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801050300", "MAP": "D9-6127-T96", "PARCEL_NAM": "3P-2 REM", "ACRE": "0.50", "LONGITUDE": -64.94866051, "LATITUDE": 18.35986435, "OBJECTID_1": 3917, "PARCEL_NO_": "102801050300", "Tax_Legal_": "ST PETER 3P-2 REM.& 3P-1-A-1 No.2 LITTLE NORTHSIDE QTR.", "Name": "KANIS, STEVEN", "Address": "4654 Wooddale Ln", "City": "Pelham", "State": "Alabama", "Zip": 35124, "Country": "United States", "Land_Value": 88000, "Improved_V": 103000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 172.62786403199999, "SHAPE_Area": 1891.80397397 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356943.30629999935627, 258885.308200001716614 ], [ 356938.417499996721745, 258881.642499998211861 ], [ 356935.622800000011921, 258883.696800000965595 ], [ 356919.429999999701977, 258891.374800000339746 ], [ 356907.033299997448921, 258898.653900001198053 ], [ 356906.482299998402596, 258906.844799999147654 ], [ 356905.531900003552437, 258920.971599999815226 ], [ 356917.518899999558926, 258926.400699999183416 ], [ 356926.329599998891354, 258930.890299998223782 ], [ 356969.746899999678135, 258913.259700000286102 ], [ 356943.30629999935627, 258885.308200001716614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801056500", "MAP": null, "PARCEL_NAM": "3RC", "ACRE": null, "LONGITUDE": 1.05, "LATITUDE": 18.35962244, "OBJECTID_1": 3973, "PARCEL_NO_": "102801056500", "Tax_Legal_": "ST PETER 3RC LT. NORTHSIDE", "Name": "BRYAN, AVENEL M", "Address": "PO Box 9080", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 144000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 375.70990485599998, "SHAPE_Area": 5019.29943731 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357001.386100001633167, 258908.570599999278784 ], [ 357023.930699996650219, 258905.229400001466274 ], [ 357037.938299998641014, 258905.553899999707937 ], [ 357045.824000000953674, 258905.736600000411272 ], [ 357059.253700003027916, 258904.568199999630451 ], [ 357066.081799998879433, 258903.97410000115633 ], [ 357075.005199998617172, 258897.714299999177456 ], [ 357089.641099996864796, 258883.479800000786781 ], [ 357095.328400000929832, 258878.460099998861551 ], [ 357097.761699996888638, 258876.791200000792742 ], [ 357095.682700000703335, 258836.877500001341105 ], [ 357064.11599999666214, 258850.76240000128746 ], [ 357063.970299996435642, 258867.8597999997437 ], [ 357063.914599999785423, 258874.403299998492002 ], [ 357023.654700003564358, 258867.529899999499321 ], [ 357023.627700001001358, 258870.695999998599291 ], [ 356999.149300001561642, 258868.962499998509884 ], [ 356975.325900003314018, 258867.275400001555681 ], [ 356971.891099996864796, 258895.586599998176098 ], [ 356969.746899999678135, 258913.259700000286102 ], [ 356998.071199998259544, 258909.061900001019239 ], [ 357001.386100001633167, 258908.570599999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057800", "MAP": "D9-6127-T96", "PARCEL_NAM": "3P-1-A REM", "ACRE": "0.51", "LONGITUDE": -64.94889917, "LATITUDE": 18.35959658, "OBJECTID_1": 3986, "PARCEL_NO_": "102801057800", "Tax_Legal_": "ST PETER3P-1-A REM & 3P-2-A LT.NORTHSIDE QTR.", "Name": "BERRY, JOHN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88000, "Improved_V": 168500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.64747489199999, "SHAPE_Area": 2009.3917305499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356895.86710000038147, 258912.291299998760223 ], [ 356906.482299998402596, 258906.844799999147654 ], [ 356907.033299997448921, 258898.653900001198053 ], [ 356908.547100000083447, 258876.151000000536442 ], [ 356860.346000000834465, 258863.749800000339746 ], [ 356854.782999999821186, 258907.522100001573563 ], [ 356868.493900001049042, 258907.212099999189377 ], [ 356879.767899997532368, 258908.993099998682737 ], [ 356896.633900001645088, 258916.941599998623133 ], [ 356895.041000001132488, 258914.606499999761581 ], [ 356895.86710000038147, 258912.291299998760223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801013300", "MAP": "D9-7731-T006", "PARCEL_NAM": "1", "ACRE": "1.508", "LONGITUDE": -64.94518127000001, "LATITUDE": 18.35906331, "OBJECTID_1": 3715, "PARCEL_NO_": "102801013300", "Tax_Legal_": "ST PETER 1 LT. NORTHSIDE", "Name": "ONE ST PETER LLC", "Address": "PO Box 870", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 221700, "Improved_V": 150500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 353.065738657, "SHAPE_Area": 6971.9242952300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357326.941200003027916, 258788.877300001680851 ], [ 357241.303999997675419, 258794.744800001382828 ], [ 357241.055200003087521, 258904.984000001102686 ], [ 357249.967799998819828, 258899.990699999034405 ], [ 357312.442299999296665, 258854.905799999833107 ], [ 357317.319700002670288, 258850.301699999719858 ], [ 357321.448299996554852, 258838.9364 ], [ 357324.948700003325939, 258806.667700000107288 ], [ 357328.301600001752377, 258791.707499999552965 ], [ 357326.941200003027916, 258788.877300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801058100", "MAP": "D9-6127-T96", "PARCEL_NAM": "3P-2-B", "ACRE": "0.51", "LONGITUDE": -64.9483975, "LATITUDE": 18.35943004, "OBJECTID_1": 3989, "PARCEL_NO_": "102801058100", "Tax_Legal_": "ST. PETER 3P-2-B #2 LT.NORTHSIDE QTR.", "Name": "CAROL ANUNCIA KANIS (LIFE ESTATE)", "Address": "16136 Frost Dr", "City": "Hudson", "State": "Florida", "Zip": 34667, "Country": "United States", "Land_Value": 82300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.406683018, "SHAPE_Area": 1955.9395463599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356952.843099996447563, 258850.062800001353025 ], [ 356938.343800000846386, 258848.255399998277426 ], [ 356922.199600003659725, 258850.234200000762939 ], [ 356922.14750000089407, 258856.355500001460314 ], [ 356921.21169999986887, 258871.546599999070168 ], [ 356920.598899997770786, 258878.366700001060963 ], [ 356938.417499996721745, 258881.642499998211861 ], [ 356943.30629999935627, 258885.308200001716614 ], [ 356969.746899999678135, 258913.259700000286102 ], [ 356971.891099996864796, 258895.586599998176098 ], [ 356975.325900003314018, 258867.275400001555681 ], [ 356960.796300001442432, 258866.095300000160933 ], [ 356961.622599996626377, 258860.689300000667572 ], [ 356959.243199996650219, 258856.025800000876188 ], [ 356957.655799999833107, 258853.057500001043081 ], [ 356952.843099996447563, 258850.062800001353025 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801050400", "MAP": "D9-6127-T96", "PARCEL_NAM": "3P-1-B", "ACRE": "0.54", "LONGITUDE": -64.94888173, "LATITUDE": 18.35926073, "OBJECTID_1": 3918, "PARCEL_NO_": "102801050400", "Tax_Legal_": "ST PETER 3P LITTLE NORTHSIDE", "Name": "URANIE TURBE", "Address": "PO Box 12468", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018468, "Country": "United States", "Land_Value": 24200, "Improved_V": 126100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.91115365900001, "SHAPE_Area": 2049.2030020399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356890.152099996805191, 258825.907200001180172 ], [ 356890.206000000238419, 258819.57490000128746 ], [ 356865.17620000243187, 258823.380800001323223 ], [ 356861.697400003671646, 258853.116500001400709 ], [ 356860.346000000834465, 258863.749800000339746 ], [ 356908.547100000083447, 258876.151000000536442 ], [ 356920.598899997770786, 258878.366700001060963 ], [ 356921.21169999986887, 258871.546599999070168 ], [ 356922.14750000089407, 258856.355500001460314 ], [ 356909.26799999922514, 258853.716899998486042 ], [ 356895.636200003325939, 258844.739399999380112 ], [ 356889.255900003015995, 258836.454599998891354 ], [ 356890.152099996805191, 258825.907200001180172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801050600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94769636, "LATITUDE": 18.35915405, "OBJECTID_1": 3920, "PARCEL_NO_": "102801050600", "Tax_Legal_": "ST PETER 3P-4 LITTLE NORTHSIDE", "Name": "BRYAN, DENNY", "Address": "PO Box 306407", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 83500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.75863827500001, "SHAPE_Area": 1645.5083372399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357023.654700003564358, 258867.529899999499321 ], [ 357025.808600001037121, 258804.008299998939037 ], [ 357001.610200002789497, 258804.865699999034405 ], [ 356997.9695999994874, 258853.598600000143051 ], [ 356998.711199998855591, 258861.203999999910593 ], [ 356999.149300001561642, 258868.962499998509884 ], [ 357023.627700001001358, 258870.695999998599291 ], [ 357023.654700003564358, 258867.529899999499321 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801050500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94800209, "LATITUDE": 18.35912996, "OBJECTID_1": 3919, "PARCEL_NO_": "102801050500", "Tax_Legal_": "ST PETER 3P-3 LITTLE NORTHSIDE", "Name": "BRYAN, PETER SCOTT", "Address": "7 Bonne Resolution", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 82300, "Improved_V": 84200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.074852389, "SHAPE_Area": 2405.6655528699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356997.9695999994874, 258853.598600000143051 ], [ 357001.610200002789497, 258804.865699999034405 ], [ 356980.638899996876717, 258805.538499999791384 ], [ 356962.088299997150898, 258806.019900001585484 ], [ 356962.064999997615814, 258808.763999998569489 ], [ 356959.243199996650219, 258856.025800000876188 ], [ 356961.622599996626377, 258860.689300000667572 ], [ 356960.796300001442432, 258866.095300000160933 ], [ 356975.325900003314018, 258867.275400001555681 ], [ 356999.149300001561642, 258868.962499998509884 ], [ 356998.711199998855591, 258861.203999999910593 ], [ 356997.9695999994874, 258853.598600000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801058000", "MAP": "D9-6127-T96", "PARCEL_NAM": "3P-1 REM", "ACRE": "0.22", "LONGITUDE": -64.94866258, "LATITUDE": 18.35911684, "OBJECTID_1": 3988, "PARCEL_NO_": "102801058000", "Tax_Legal_": "ST.PETER 3P-2-C No.2 LITTLE NORTHSIDE QTR.", "Name": "BERRY, VELMA M. & CYRIL J", "Address": "7812 St Peter 3p-1", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 40600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.2208433, "SHAPE_Area": 1137.7499929799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356923.025700002908707, 258847.9189000017941 ], [ 356925.732299998402596, 258814.16609999909997 ], [ 356890.206000000238419, 258819.57490000128746 ], [ 356890.152099996805191, 258825.907200001180172 ], [ 356889.255900003015995, 258836.454599998891354 ], [ 356895.636200003325939, 258844.739399999380112 ], [ 356909.26799999922514, 258853.716899998486042 ], [ 356922.14750000089407, 258856.355500001460314 ], [ 356922.199600003659725, 258850.234200000762939 ], [ 356923.025700002908707, 258847.9189000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801058400", "MAP": null, "PARCEL_NAM": "3R-A", "ACRE": null, "LONGITUDE": -64.94792411, "LATITUDE": 18.36014448, "OBJECTID_1": 3992, "PARCEL_NO_": "102801058400", "Tax_Legal_": "ST PETER 3R-A LITTLE NORTHSIDE QTR", "Name": "FUERTES, AVENAL BRYAN", "Address": "PO Box 9080", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 30100, "Improved_V": 159800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.916223411, "SHAPE_Area": 667.06982940299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356986.433899998664856, 258924.238000001758337 ], [ 356969.581200003623962, 258915.572599999606609 ], [ 356967.771999999880791, 258940.825800001621246 ], [ 356967.718199998140335, 258941.577300000935793 ], [ 356965.266800001263618, 258948.001600001007318 ], [ 356962.810999996960163, 258951.877199999988079 ], [ 356965.715000003576279, 258952.035300001502037 ], [ 356985.131399996578693, 258952.566199999302626 ], [ 356986.525499999523163, 258946.820199999958277 ], [ 356987.456900000572205, 258942.981199998408556 ], [ 356991.386600002646446, 258926.784600000828505 ], [ 356986.433899998664856, 258924.238000001758337 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801050300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94866051, "LATITUDE": 18.35986435, "OBJECTID_1": 3917, "PARCEL_NO_": "102801050300", "Tax_Legal_": "ST PETER 3P-2 REM.& 3P-1-A-1 No.2 LITTLE NORTHSIDE QTR.", "Name": "KANIS, STEVEN", "Address": "4654 Wooddale Ln", "City": "Pelham", "State": "Alabama", "Zip": 35124, "Country": "United States", "Land_Value": 88000, "Improved_V": 103000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 41.142559861400002, "SHAPE_Area": 94.343763679600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356906.482299998402596, 258906.844799999147654 ], [ 356895.86710000038147, 258912.291299998760223 ], [ 356895.041000001132488, 258914.606499999761581 ], [ 356896.633900001645088, 258916.941599998623133 ], [ 356905.531900003552437, 258920.971599999815226 ], [ 356906.482299998402596, 258906.844799999147654 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801050400", "MAP": "A9-12-T58", "PARCEL_NAM": "3P REM", "ACRE": "0.17", "LONGITUDE": -64.94866051, "LATITUDE": 18.35986435, "OBJECTID_1": 3918, "PARCEL_NO_": "102801050400", "Tax_Legal_": "ST PETER 3P LITTLE NORTHSIDE", "Name": "URANIE TURBE", "Address": "PO Box 12468", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8018468, "Country": "United States", "Land_Value": 24200, "Improved_V": 126100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.2501167, "SHAPE_Area": 815.88547972399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356969.746899999678135, 258913.259700000286102 ], [ 356926.329599998891354, 258930.890299998223782 ], [ 356952.042900003492832, 258943.992899999022484 ], [ 356958.450199998915195, 258949.111600000411272 ], [ 356960.429200001060963, 258951.747499998658895 ], [ 356961.765399999916553, 258953.527300000190735 ], [ 356962.810999996960163, 258951.877199999988079 ], [ 356965.266800001263618, 258948.001600001007318 ], [ 356967.718199998140335, 258941.577300000935793 ], [ 356967.771999999880791, 258940.825800001621246 ], [ 356969.746899999678135, 258913.259700000286102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057800", "MAP": "D9-6127-T96", "PARCEL_NAM": "3P-2-A", "ACRE": "0.05", "LONGITUDE": -64.94889917, "LATITUDE": 18.35959658, "OBJECTID_1": 3986, "PARCEL_NO_": "102801057800", "Tax_Legal_": "ST PETER3P-1-A REM & 3P-2-A LT.NORTHSIDE QTR.", "Name": "BERRY, JOHN", "Address": "PO Box 309600", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 88000, "Improved_V": 168500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.689945227899997, "SHAPE_Area": 337.36296295599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356920.598899997770786, 258878.366700001060963 ], [ 356908.547100000083447, 258876.151000000536442 ], [ 356907.033299997448921, 258898.653900001198053 ], [ 356919.429999999701977, 258891.374800000339746 ], [ 356935.622800000011921, 258883.696800000965595 ], [ 356938.417499996721745, 258881.642499998211861 ], [ 356920.598899997770786, 258878.366700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602023600", "MAP": "B9-57-T60", "PARCEL_NAM": "1-26", "ACRE": "0.104", "LONGITUDE": -64.87031784, "LATITUDE": 18.32434293, "OBJECTID_1": 38405, "PARCEL_NO_": "107602023600", "Tax_Legal_": "1-26 FRYDENHOJ RED HOOK QTR", "Name": "EDDY, LIONEL & CHERYL", "Address": "PO Box 4855", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 13700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 66.779992589200006, "SHAPE_Area": 260.673373137 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365232.011900000274181, 255042.568300001323223 ], [ 365215.899999998509884, 255040.747699998319149 ], [ 365217.327399998903275, 255062.502099998295307 ], [ 365227.831000000238419, 255060.054900001734495 ], [ 365232.011900000274181, 255042.568300001323223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107602022700", "MAP": "B9-57-T60", "PARCEL_NAM": "1-36", "ACRE": "0.142", "LONGITUDE": -64.87007873, "LATITUDE": 18.32416752, "OBJECTID_1": 38396, "PARCEL_NO_": "107602022700", "Tax_Legal_": "1-36 FRYDENHOJ RED HOOK QTR", "Name": "REY, THOMAS A & EVADNIE", "Address": "16750 SW 248 St", "City": "Homestead", "State": "Florida", "Zip": 33031, "Country": "United States", "Land_Value": 17600, "Improved_V": 147100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.943043406, "SHAPE_Area": 667.63640130299996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365269.258699998259544, 255024.508099999278784 ], [ 365237.871799997985363, 255017.285100001841784 ], [ 365232.011900000274181, 255042.568300001323223 ], [ 365254.570600003004074, 255044.863899998366833 ], [ 365261.094800002872944, 255036.262499999254942 ], [ 365269.258699998259544, 255024.508099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105704021900", "MAP": "F9-3475-T76", "PARCEL_NAM": "119-1A", "ACRE": ".22", "LONGITUDE": -64.86887312, "LATITUDE": 18.33625499, "OBJECTID_1": 23522, "PARCEL_NO_": "105704021900", "Tax_Legal_": "SMITH BAY 119-1A EAST END QTR", "Name": "AMBROSE, KEITH A", "Address": "3137 Breckinridge", "City": "Port Charlotte", "State": "Florida", "Zip": 33948, "Country": "United States", "Land_Value": 28900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.33899929, "SHAPE_Area": 1117.39129643 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 365349.339900001883507, 256395.491700001060963 ], [ 365387.135399997234344, 256373.467700000852346 ], [ 365374.473099999129772, 256346.852299999445677 ], [ 365344.760799996554852, 256364.498500000685453 ], [ 365347.50959999859333, 256371.809300001710653 ], [ 365349.339900001883507, 256395.491700001060963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "B9-31-T57", "PARCEL_NAM": null, "ACRE": "ROW", "LONGITUDE": -64.88252662, "LATITUDE": 18.35275742, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 416.37855894400002, "SHAPE_Area": 1393.0711290300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363922.192199997603893, 258126.874600000679493 ], [ 363920.067299999296665, 258126.874600000679493 ], [ 363919.112099997699261, 258127.065600000321865 ], [ 363918.73929999768734, 258127.1402000002563 ], [ 363918.208099998533726, 258127.272999998182058 ], [ 363917.259499996900558, 258128.221500001847744 ], [ 363916.74719999730587, 258128.733800001442432 ], [ 363915.552000001072884, 258129.929000001400709 ], [ 363915.153599999845028, 258131.522700000554323 ], [ 363915.684799998998642, 258133.913100000470877 ], [ 363915.677799999713898, 258133.930500000715256 ], [ 363909.740800000727177, 258145.798300001770258 ], [ 363907.668300002813339, 258153.910300001502037 ], [ 363905.361199997365475, 258158.372499998658895 ], [ 363893.596000000834465, 258181.127199999988079 ], [ 363882.76070000231266, 258203.520100001245737 ], [ 363883.403599999845028, 258206.109299998730421 ], [ 363888.879900000989437, 258228.165199998766184 ], [ 363891.220399998128414, 258234.965300001204014 ], [ 363890.526000000536442, 258244.5135000012815 ], [ 363887.094800002872944, 258287.13230000063777 ], [ 363883.121899999678135, 258296.703400000929832 ], [ 363876.25959999859333, 258302.843400001525879 ], [ 363867.186599999666214, 258306.472600001841784 ], [ 363876.89919999986887, 258309.338199999183416 ], [ 363880.115500003099442, 258310.419900000095367 ], [ 363885.817199997603893, 258303.711599998176098 ], [ 363889.913500003516674, 258296.145799998193979 ], [ 363893.95719999819994, 258288.757500000298023 ], [ 363896.304799996316433, 258272.685199998319149 ], [ 363896.648100003600121, 258262.848099999129772 ], [ 363897.580300003290176, 258248.079199999570847 ], [ 363897.930100001394749, 258234.761799998581409 ], [ 363890.497299998998642, 258204.676600001752377 ], [ 363890.706600002944469, 258201.894799999892712 ], [ 363892.824699997901917, 258197.683699999004602 ], [ 363898.841300003230572, 258185.722100000828505 ], [ 363906.301600001752377, 258170.890299998223782 ], [ 363912.895900003612041, 258158.2162000015378 ], [ 363915.8175999969244, 258148.388700000941753 ], [ 363921.793700002133846, 258136.569200001657009 ], [ 363923.785800002515316, 258135.905200000852346 ], [ 363924.848200000822544, 258134.577199999243021 ], [ 363925.379399999976158, 258132.585099998861551 ], [ 363925.512199997901917, 258130.593100000172853 ], [ 363924.848200000822544, 258128.335400000214577 ], [ 363922.854299999773502, 258127.238699998706579 ], [ 363922.192199997603893, 258126.874600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "B9-31-T57", "PARCEL_NAM": "ROW", "ACRE": null, "LONGITUDE": -64.88366722000001, "LATITUDE": 18.3532, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 673.29292178200001, "SHAPE_Area": 2306.47108084 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363873.00900000333786, 258092.09739999845624 ], [ 363868.494300000369549, 258088.305100001394749 ], [ 363836.038099996745586, 258126.14919999986887 ], [ 363822.805600002408028, 258141.578499998897314 ], [ 363821.223499998450279, 258145.521600000560284 ], [ 363815.114399999380112, 258160.747400000691414 ], [ 363811.067400000989437, 258170.833700001239777 ], [ 363811.88120000064373, 258185.210799999535084 ], [ 363811.067400000989437, 258188.170099999755621 ], [ 363810.47860000282526, 258193.805700000375509 ], [ 363809.803300000727177, 258200.269499998539686 ], [ 363809.080899998545647, 258206.951299998909235 ], [ 363801.67679999768734, 258216.161299999803305 ], [ 363789.93860000371933, 258224.468299999833107 ], [ 363782.627300001680851, 258229.085999999195337 ], [ 363779.645099997520447, 258230.969500001519918 ], [ 363772.421599999070168, 258237.470600001513958 ], [ 363757.432800002396107, 258245.958200000226498 ], [ 363748.403399996459484, 258250.653499998152256 ], [ 363747.069099999964237, 258252.988499999046326 ], [ 363746.236400000751019, 258254.445900000631809 ], [ 363743.708099998533726, 258258.057599999010563 ], [ 363744.249899998307228, 258261.308200001716614 ], [ 363746.236400000751019, 258263.294700000435114 ], [ 363766.980400003492832, 258268.336599998176098 ], [ 363768.48369999974966, 258268.701999999582767 ], [ 363772.24099999666214, 258269.615200001746416 ], [ 363793.550399996340275, 258275.9358000010252 ], [ 363794.814499996602535, 258277.741700001060963 ], [ 363791.744499996304512, 258280.269900001585484 ], [ 363778.647799998521805, 258284.973200000822544 ], [ 363759.058100000023842, 258292.008099999278784 ], [ 363753.459899999201298, 258296.342199999839067 ], [ 363751.166599996387959, 258302.187399998307228 ], [ 363756.8378000035882, 258299.067400000989437 ], [ 363764.110799998044968, 258297.227099999785423 ], [ 363782.582299999892712, 258290.433400001376867 ], [ 363794.995099999010563, 258285.868099998682737 ], [ 363804.927400000393391, 258280.811700001358986 ], [ 363808.539099998772144, 258278.825199998915195 ], [ 363806.372100003063679, 258275.394099999219179 ], [ 363797.884499996900558, 258270.879399999976158 ], [ 363777.297499999403954, 258264.739399999380112 ], [ 363769.7128000035882, 258262.572299998253584 ], [ 363763.618900001049042, 258260.311700001358986 ], [ 363758.51630000025034, 258258.418800000101328 ], [ 363754.723999999463558, 258256.432300001382828 ], [ 363762.850400000810623, 258251.917599998414516 ], [ 363778.200400002300739, 258243.068799998611212 ], [ 363785.604500003159046, 258236.7483000010252 ], [ 363793.550399996340275, 258230.427700001746416 ], [ 363800.244499996304512, 258225.902100000530481 ], [ 363806.372100003063679, 258221.759500000625849 ], [ 363815.130199998617172, 258213.001299999654293 ], [ 363817.929700002074242, 258204.964800000190735 ], [ 363817.929700002074242, 258197.708299998193979 ], [ 363817.929700002074242, 258191.420699998736382 ], [ 363818.422499999403954, 258169.115600001066923 ], [ 363825.514399997889996, 258150.969099998474121 ], [ 363827.153899997472763, 258148.407299999147654 ], [ 363828.403800003230572, 258146.4543999992311 ], [ 363842.593400001525879, 258129.162599999457598 ], [ 363873.00900000333786, 258092.09739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": "B9-31-T51", "PARCEL_NAM": "ROW", "ACRE": "1.21", "LONGITUDE": -64.88510523, "LATITUDE": 18.35390611, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 171.84490593500001, "SHAPE_Area": 638.49888071400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363680.68299999833107, 258300.676300000399351 ], [ 363672.556500002741814, 258295.439300000667572 ], [ 363668.578900001943111, 258306.543600000441074 ], [ 363668.22240000218153, 258307.538699999451637 ], [ 363662.443599998950958, 258319.0962999984622 ], [ 363656.664800003170967, 258330.834499999880791 ], [ 363651.066600002348423, 258338.960999999195337 ], [ 363646.551899999380112, 258343.656199999153614 ], [ 363626.415200002491474, 258346.802600000053644 ], [ 363626.604299999773502, 258346.97520000115037 ], [ 363634.604500003159046, 258354.429000001400709 ], [ 363645.107199996709824, 258351.963300000876188 ], [ 363651.427799999713898, 258350.157400000840425 ], [ 363655.400700002908707, 258346.365100000053644 ], [ 363662.804799996316433, 258337.696800000965595 ], [ 363667.138899996876717, 258328.667399998754263 ], [ 363673.459499999880791, 258315.84569999948144 ], [ 363675.217299997806549, 258312.15430000051856 ], [ 363680.68299999833107, 258300.676300000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701053100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87442628, "LATITUDE": 18.34269462, "OBJECTID_1": 22135, "PARCEL_NO_": "105701053100", "Tax_Legal_": "SMITH BAY 71 EAST END QTR", "Name": "PAUL, JAMES J", "Address": "PO Box 949", "City": "St John", "State": "U.S.Virgin Islands", "Zip": 831, "Country": "United States", "Land_Value": 32100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 152.440782286, "SHAPE_Area": 1425.5069823199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364774.828100003302097, 257050.738800000399351 ], [ 364773.035700000822544, 257048.211399998515844 ], [ 364764.889799997210503, 257057.855099998414516 ], [ 364746.9746999964118, 257078.395599998533726 ], [ 364749.363099999725819, 257082.003699999302626 ], [ 364768.540200002491474, 257102.636799998581409 ], [ 364773.079000003635883, 257107.300500001758337 ], [ 364794.950599998235703, 257078.708599999547005 ], [ 364792.1587999984622, 257075.17680000141263 ], [ 364774.828100003302097, 257050.738800000399351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701053200", "MAP": "D9-259-T60", "PARCEL_NAM": "REM 72", "ACRE": "0.11", "LONGITUDE": -64.87468201, "LATITUDE": 18.34251041, "OBJECTID_1": 22136, "PARCEL_NO_": "105701053200", "Tax_Legal_": "SMITH BAY (REM) 72 EAST END QUARTER", "Name": "STEPHENS, LLOYD", "Address": "PO Box 304673", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 29900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.447551137, "SHAPE_Area": 805.00417123 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364764.27589999884367, 257035.263000000268221 ], [ 364763.120999999344349, 257033.763300001621246 ], [ 364750.140100002288818, 257045.813900001347065 ], [ 364732.414499998092651, 257062.269299998879433 ], [ 364732.144000001251698, 257062.380699999630451 ], [ 364741.375500001013279, 257073.072399999946356 ], [ 364746.9746999964118, 257078.395599998533726 ], [ 364764.889799997210503, 257057.855099998414516 ], [ 364773.035700000822544, 257048.211399998515844 ], [ 364764.27589999884367, 257035.263000000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701053500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87476473, "LATITUDE": 18.3422845, "OBJECTID_1": 22138, "PARCEL_NO_": "105701053500", "Tax_Legal_": "SMITH BAY 70A EAST END QTR", "Name": "STOUT, BUCKLEY", "Address": "BOX 2877", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 111.833205838, "SHAPE_Area": 459.39434301699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364750.538699999451637, 257013.289900001138449 ], [ 364717.2550999969244, 257045.700199998915195 ], [ 364725.405699998140335, 257054.57660000026226 ], [ 364740.064999997615814, 257037.598000001162291 ], [ 364754.72240000218153, 257020.83049999922514 ], [ 364750.538699999451637, 257013.289900001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701054600", "MAP": "F9-1126-T63", "PARCEL_NAM": "72A", "ACRE": "0.11", "LONGITUDE": -64.87460819, "LATITUDE": 18.34230846, "OBJECTID_1": 22144, "PARCEL_NO_": "105701054600", "Tax_Legal_": "SMITH BAY ESTATE 72A EASTEND QTR.", "Name": "CRABBE, JUDITH A. & OTHERS", "Address": "PO Box 7012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 14300, "Improved_V": 197000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.686177211, "SHAPE_Area": 546.95189050900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364757.895499996840954, 257026.978100001811981 ], [ 364754.72240000218153, 257020.83049999922514 ], [ 364740.064999997615814, 257037.598000001162291 ], [ 364725.405699998140335, 257054.57660000026226 ], [ 364732.144000001251698, 257062.380699999630451 ], [ 364732.414499998092651, 257062.269299998879433 ], [ 364750.140100002288818, 257045.813900001347065 ], [ 364763.120999999344349, 257033.763300001621246 ], [ 364757.895499996840954, 257026.978100001811981 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701054500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87483748, "LATITUDE": 18.34219757, "OBJECTID_1": 22142, "PARCEL_NO_": "105701054500", "Tax_Legal_": "SMITH BAY 70B EAST END QTR", "Name": "ARNOLD, REHELIO & OTHERS", "Address": "PO Box 1265", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 24600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 129.500293462, "SHAPE_Area": 756.64976615399996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364746.014799997210503, 257001.760800000280142 ], [ 364744.423799999058247, 256999.214600000530481 ], [ 364706.374700002372265, 257033.141100000590086 ], [ 364707.833999998867512, 257034.801100000739098 ], [ 364716.617200002074242, 257045.005399998277426 ], [ 364717.2550999969244, 257045.700199998915195 ], [ 364750.538699999451637, 257013.289900001138449 ], [ 364748.369000002741814, 257009.379399999976158 ], [ 364746.014799997210503, 257001.760800000280142 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701054700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87490553000001, "LATITUDE": 18.34208729, "OBJECTID_1": 22145, "PARCEL_NO_": "105701054700", "Tax_Legal_": "SMITH BAY 70C EAST END QTR", "Name": "MALONE, SEAN & WILLIS, DELTA", "Address": "PO Box 502633", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 23800, "Improved_V": 45400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.88183193699999, "SHAPE_Area": 772.85190641500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364744.423799999058247, 256999.214600000530481 ], [ 364743.646200001239777, 256995.830800000578165 ], [ 364736.457800000905991, 256987.750399999320507 ], [ 364734.562100000679493, 256986.737799998372793 ], [ 364709.543499998748302, 257011.095800001174212 ], [ 364697.401000000536442, 257022.917700000107288 ], [ 364699.049099996685982, 257024.807799998670816 ], [ 364706.374700002372265, 257033.141100000590086 ], [ 364744.423799999058247, 256999.214600000530481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702056800", "MAP": "D9-1999-T82", "PARCEL_NAM": "57X-40", "ACRE": "0.26", "LONGITUDE": -64.87353229, "LATITUDE": 18.34329757, "OBJECTID_1": 22620, "PARCEL_NO_": "105702056800", "Tax_Legal_": "57X-40&57E-1 SMITH BAY Nos.1,2&3 EAST END QTR", "Name": "FRANCIS, DELMA & VICARS HEIRS", "Address": "PO Box 460", "City": "Christiansted", "State": "U.S.Virgin Islands", "Zip": 821, "Country": "United States", "Land_Value": 30900, "Improved_V": 114100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.714352816, "SHAPE_Area": 1121.8418473 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364858.824500001966953, 257119.806400001049042 ], [ 364847.192400000989437, 257105.373799998313189 ], [ 364825.649899996817112, 257119.358399998396635 ], [ 364828.832000002264977, 257124.450699999928474 ], [ 364833.624899998307228, 257129.767200000584126 ], [ 364848.028800003230572, 257142.761799998581409 ], [ 364860.093400001525879, 257154.323300000280142 ], [ 364875.465000003576279, 257140.453299999237061 ], [ 364858.824500001966953, 257119.806400001049042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702051300", "MAP": "D9-360-T63", "PARCEL_NAM": "57E", "ACRE": "0.24", "LONGITUDE": -64.87391678, "LATITUDE": 18.34276525, "OBJECTID_1": 22604, "PARCEL_NO_": "105702051300", "Tax_Legal_": "SMITH BAY 57E & 57X-40-1 EAST END QTR", "Name": "LYNTON (LIFE ESTATE), JOHN", "Address": "PO Box 305210", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 31200, "Improved_V": 281800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.56413668099999, "SHAPE_Area": 900.87118824499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364835.370700001716614, 257078.976399999111891 ], [ 364813.979299999773502, 257094.431000001728535 ], [ 364815.360200002789497, 257096.687199998646975 ], [ 364822.467799998819828, 257114.266100000590086 ], [ 364825.649899996817112, 257119.358399998396635 ], [ 364858.083999998867512, 257098.303399998694658 ], [ 364842.061999998986721, 257085.928800001740456 ], [ 364835.370700001716614, 257078.976399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702051400", "MAP": "F9-1264-T63", "PARCEL_NAM": "57P", "ACRE": "0.22", "LONGITUDE": -64.87391678, "LATITUDE": 18.34276525, "OBJECTID_1": 22605, "PARCEL_NO_": "105702051400", "Tax_Legal_": "SMITH BAY 57P EAST END QTR", "Name": "MARSH, WILBURN & DAZLE, GLADYS", "Address": "150 2nd Ave N", "City": "Saint Petersburg", "State": "Florida", "Zip": 33701, "Country": "United States", "Land_Value": 26200, "Improved_V": 190400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 128.733946428, "SHAPE_Area": 777.37697851200005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364835.370700001716614, 257078.976399999111891 ], [ 364817.283900000154972, 257060.183699999004602 ], [ 364814.094700001180172, 257055.935699999332428 ], [ 364810.979099996387959, 257043.033500000834465 ], [ 364807.748400002717972, 257043.640399999916553 ], [ 364802.635399997234344, 257075.895799998193979 ], [ 364813.979299999773502, 257094.431000001728535 ], [ 364835.370700001716614, 257078.976399999111891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702050800", "MAP": "F9-419-T59", "PARCEL_NAM": "53", "ACRE": ".22", "LONGITUDE": -64.87390745, "LATITUDE": 18.34366782, "OBJECTID_1": 22602, "PARCEL_NO_": "105702050800", "Tax_Legal_": "SMITH BAY 53 EAST END QUARTER", "Name": "JENNIFER L.L. GARDNER-SMITH and AKIMO N. MARTIN", "Address": "6768 Annas Tretreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 18300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 121.098376667, "SHAPE_Area": 915.59160071500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364844.977600000798702, 257183.140999998897314 ], [ 364822.045199997723103, 257163.869600001722574 ], [ 364803.284199997782707, 257189.0472999997437 ], [ 364827.533100001513958, 257207.01240000128746 ], [ 364844.977600000798702, 257183.140999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702062500", "MAP": "F9-3137-T73", "PARCEL_NAM": "57X-8A", "ACRE": "0.09", "LONGITUDE": -64.87325545, "LATITUDE": 18.34357192, "OBJECTID_1": 22670, "PARCEL_NO_": "105702062500", "Tax_Legal_": "SMITH BAY 57X-8A EAST END QTR", "Name": "DAVID, MARIE", "Address": "PO Box 302301", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 11700, "Improved_V": 118800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.727368128500004, "SHAPE_Area": 396.56998319500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364899.499799996614456, 257158.804000001400709 ], [ 364899.512299999594688, 257155.678599998354912 ], [ 364898.57320000231266, 257156.143699999898672 ], [ 364893.493100002408028, 257156.461199998855591 ], [ 364893.054700002074242, 257158.118000000715256 ], [ 364884.761399999260902, 257185.070099998265505 ], [ 364888.748000003397465, 257190.380100000649691 ], [ 364902.480499997735023, 257187.537099998444319 ], [ 364899.499799996614456, 257158.804000001400709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702062200", "MAP": "F9-3137-T73", "PARCEL_NAM": "57X-8", "ACRE": "0.24", "LONGITUDE": -64.8730604, "LATITUDE": 18.34352704, "OBJECTID_1": 22668, "PARCEL_NO_": "105702062200", "Tax_Legal_": "SMITH BAY 57X-8 EAST END QTR", "Name": "KNOWLES, CARMEN", "Address": "PO Box 332", "City": "Jersey City", "State": "New Jersey", "Zip": 7303, "Country": "United States", "Land_Value": 31200, "Improved_V": 153400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.652562597, "SHAPE_Area": 840.40731723199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364911.64299999922514, 257153.203899998217821 ], [ 364909.125699996948242, 257150.917599998414516 ], [ 364899.512299999594688, 257155.678599998354912 ], [ 364899.499799996614456, 257158.804000001400709 ], [ 364902.480499997735023, 257187.537099998444319 ], [ 364934.795900002121925, 257180.413400001823902 ], [ 364936.422899998724461, 257178.737900000065565 ], [ 364936.462499998509884, 257174.094200000166893 ], [ 364911.64299999922514, 257153.203899998217821 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702067600", "MAP": "D9-1817-T81", "PARCEL_NAM": "57X-35", "ACRE": "0.08", "LONGITUDE": -64.87336009000001, "LATITUDE": 18.34348381, "OBJECTID_1": 22709, "PARCEL_NO_": "105702067600", "Tax_Legal_": "SMITH BAY 57X-35 EAST END QTR", "Name": "RICHARDS HUGGINS, ELVA", "Address": "PO Box 7444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11300, "Improved_V": 143400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 86.454039526200006, "SHAPE_Area": 377.47329293299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364890.529799997806549, 257154.662000000476837 ], [ 364883.227300003170967, 257147.677000001072884 ], [ 364881.825599998235703, 257151.059999998658895 ], [ 364873.607900001108646, 257169.146800000220537 ], [ 364884.761399999260902, 257185.070099998265505 ], [ 364893.054700002074242, 257158.118000000715256 ], [ 364893.493100002408028, 257156.461199998855591 ], [ 364890.529799997806549, 257154.662000000476837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702069600", "MAP": "D9-5520-T93", "PARCEL_NAM": "57X-57", "ACRE": "0.08", "LONGITUDE": -64.87327707, "LATITUDE": 18.34330497, "OBJECTID_1": 22730, "PARCEL_NO_": "105702069600", "Tax_Legal_": "SMITH BAY 57X-57 EASTEND QUARTER", "Name": "DANIEL, MARY & BRADLEY & BARTON", "Address": "PO Box 8653", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11300, "Improved_V": 67100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 64.451348894000006, "SHAPE_Area": 250.802914302 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364909.125699996948242, 257150.917599998414516 ], [ 364898.03999999910593, 257140.84910000115633 ], [ 364895.898500002920628, 257138.340300001204014 ], [ 364883.227300003170967, 257147.677000001072884 ], [ 364890.529799997806549, 257154.662000000476837 ], [ 364893.493100002408028, 257156.461199998855591 ], [ 364898.57320000231266, 257156.143699999898672 ], [ 364909.125699996948242, 257150.917599998414516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702057500", "MAP": "D9-1451-T79", "PARCEL_NAM": "57X-30", "ACRE": "0.24", "LONGITUDE": -64.87346479, "LATITUDE": 18.34309992, "OBJECTID_1": 22622, "PARCEL_NO_": "105702057500", "Tax_Legal_": "57X-30 ESTATE SMITH BAY Nos.1,2 & 3 ESAT END QTR.", "Name": "WEEKS, CYNTHIA, JOHNNY, JAMES JR., SHERRY", "Address": "6519 Estate Smith Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 32800, "Improved_V": 222700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 139.883276827, "SHAPE_Area": 905.07769779099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364866.091399997472763, 257104.912799999117851 ], [ 364858.083999998867512, 257098.303399998694658 ], [ 364847.192400000989437, 257105.373799998313189 ], [ 364858.824500001966953, 257119.806400001049042 ], [ 364875.465000003576279, 257140.453299999237061 ], [ 364883.227300003170967, 257147.677000001072884 ], [ 364895.898500002920628, 257138.340300001204014 ], [ 364890.056000001728535, 257131.495700001716614 ], [ 364880.500699996948242, 257117.27419999986887 ], [ 364866.091399997472763, 257104.912799999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702052800", "MAP": "D9-5520-T93", "PARCEL_NAM": "57X-56", "ACRE": "0.09", "LONGITUDE": -64.87353229, "LATITUDE": 18.34329757, "OBJECTID_1": 22615, "PARCEL_NO_": "105702052800", "Tax_Legal_": "SMITH BAY 57X-56 EAST END QUARTER", "Name": "RICHARDSON (LIFE ESTATE), RICHARD VAN DYKE & ALBERTINE A.", "Address": "PO Box 8533", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 11700, "Improved_V": 78700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 74.912089107699998, "SHAPE_Area": 323.26714979100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364883.227300003170967, 257147.677000001072884 ], [ 364875.465000003576279, 257140.453299999237061 ], [ 364860.093400001525879, 257154.323300000280142 ], [ 364864.025600001215935, 257158.091499999165535 ], [ 364873.607900001108646, 257169.146800000220537 ], [ 364881.825599998235703, 257151.059999998658895 ], [ 364883.227300003170967, 257147.677000001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701052400", "MAP": "F9-415-T59", "PARCEL_NAM": "49", "ACRE": "0.08", "LONGITUDE": -64.87457174, "LATITUDE": 18.34345907, "OBJECTID_1": 22127, "PARCEL_NO_": "105701052400", "Tax_Legal_": "SMITH BAY 49 EAST END QUARTER", "Name": "PENN, NORRIS & DELITA", "Address": "PO Box 303716", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 26400, "Improved_V": 194800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.007442258, "SHAPE_Area": 1016.13555287 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364776.907899998128414, 257161.600400000810623 ], [ 364755.322700001299381, 257139.681099999696016 ], [ 364741.491300001740456, 257154.133299998939037 ], [ 364733.341899998486042, 257164.199099998921156 ], [ 364757.349600002169609, 257185.715999998152256 ], [ 364776.907899998128414, 257161.600400000810623 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702056400", "MAP": "G9-574-T60", "PARCEL_NAM": "68", "ACRE": "0.09", "LONGITUDE": -64.87354001, "LATITUDE": 18.34365797, "OBJECTID_1": 22618, "PARCEL_NO_": "105702056400", "Tax_Legal_": "SMITH BAY 68 EAST END", "Name": "STEPHENS, ESMAY", "Address": "PO Box 7392", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 27300, "Improved_V": 146600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 109.702246053, "SHAPE_Area": 770.13381590699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364860.311099998652935, 257165.84739999845624 ], [ 364856.740000002086163, 257161.409400001168251 ], [ 364839.137800000607967, 257145.222199998795986 ], [ 364835.912600003182888, 257145.195799998939037 ], [ 364832.663900002837181, 257147.913400001823902 ], [ 364831.8378000035882, 257150.228700000792742 ], [ 364825.317199997603893, 257158.407999999821186 ], [ 364824.491099998354912, 257160.723200000822544 ], [ 364822.869499996304512, 257161.765399999916553 ], [ 364822.045199997723103, 257163.869600001722574 ], [ 364844.977600000798702, 257183.140999998897314 ], [ 364860.311099998652935, 257165.84739999845624 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601022600", "MAP": "D9-9602-T021", "PARCEL_NAM": "18 REM", "ACRE": "0.48", "LONGITUDE": -64.97933044, "LATITUDE": 18.35854141, "OBJECTID_1": 2234, "PARCEL_NO_": "102601022600", "Tax_Legal_": "PEARL 18 S S QTR", "Name": "RENE LOUIS & FELICITA M DONASTORG (LIFE ESTATE0", "Address": "NO18 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 135400, "Improved_V": 255800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.685610682, "SHAPE_Area": 1909.8997680299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353682.368100002408028, 258717.989500001072884 ], [ 353672.797700002789497, 258722.666700001806021 ], [ 353644.42339999973774, 258777.215300001204014 ], [ 353644.314699999988079, 258777.278200000524521 ], [ 353644.098099999129772, 258780.552499998360872 ], [ 353644.87389999628067, 258784.147399999201298 ], [ 353649.69200000166893, 258786.508900001645088 ], [ 353652.924400001764297, 258785.690999999642372 ], [ 353685.38910000026226, 258761.047699999064207 ], [ 353708.817199997603893, 258743.339499998837709 ], [ 353682.368100002408028, 258717.989500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601023000", "MAP": "B9-71-T62", "PARCEL_NAM": "19", "ACRE": "0.80", "LONGITUDE": -64.97906484000001, "LATITUDE": 18.35818159, "OBJECTID_1": 2238, "PARCEL_NO_": "102601023000", "Tax_Legal_": "PEARL 19 SOUTHSIDE QTR.", "Name": "CHESTERFIELD, AVON W", "Address": "PO Box 502412", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 133900, "Improved_V": 171300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.65815127600001, "SHAPE_Area": 3308.0120375299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353747.818300001323223, 258702.139400001615286 ], [ 353678.862499997019768, 258668.883099999278784 ], [ 353669.166799999773502, 258677.532900001853704 ], [ 353653.971199996769428, 258690.77250000089407 ], [ 353677.484399996697903, 258713.308699999004602 ], [ 353708.817199997603893, 258743.339499998837709 ], [ 353711.360100001096725, 258741.417399998754263 ], [ 353716.243000000715256, 258736.179999999701977 ], [ 353725.195100001990795, 258726.543000001460314 ], [ 353727.641000002622604, 258723.396600000560284 ], [ 353734.17059999704361, 258714.161899998784065 ], [ 353747.818300001323223, 258702.139400001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "102601022600", "MAP": "D9-9602-T021", "PARCEL_NAM": "18A", "ACRE": "0.35", "LONGITUDE": -64.97933044, "LATITUDE": 18.35854141, "OBJECTID_1": 2234, "PARCEL_NO_": "102601022600", "Tax_Legal_": "PEARL 18 S S QTR", "Name": "RENE LOUIS & FELICITA M DONASTORG (LIFE ESTATE0", "Address": "NO18 Estate Pearl", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 135400, "Improved_V": 255800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 205.609296325, "SHAPE_Area": 1408.3654259899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353682.368100002408028, 258717.989500001072884 ], [ 353677.484399996697903, 258713.308699999004602 ], [ 353653.971199996769428, 258690.77250000089407 ], [ 353648.04450000077486, 258695.936299998313189 ], [ 353641.543600000441074, 258701.793699998408556 ], [ 353645.5337999984622, 258706.681499999016523 ], [ 353647.893399998545647, 258713.666900001466274 ], [ 353646.874899998307228, 258738.567600000649691 ], [ 353644.314699999988079, 258777.278200000524521 ], [ 353644.42339999973774, 258777.215300001204014 ], [ 353672.797700002789497, 258722.666700001806021 ], [ 353682.368100002408028, 258717.989500001072884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-1", "PARCEL_NO": "105804022800", "MAP": "D9-8279-T009", "PARCEL_NAM": "11B-8-1", "ACRE": ".51", "LONGITUDE": -64.8512707, "LATITUDE": 18.33882004, "OBJECTID_1": 24034, "PARCEL_NO_": "105804022800", "Tax_Legal_": "PAR 11B-8-1 SMITH BAY 1, 2 &3 EAST END QTR", "Name": "RENZI, DANIEL & CARRIE (TRUSTEES)", "Address": "6501 Red Hook Plaza", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8021311, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 228.01113389899999, "SHAPE_Area": 2172.2584822499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 367215.470100000500679, 256711.996399998664856 ], [ 367212.949299998581409, 256692.743599999696016 ], [ 367215.519199997186661, 256681.500399999320507 ], [ 367251.248099997639656, 256672.387099999934435 ], [ 367255.675300002098083, 256642.947399999946356 ], [ 367246.410300001502037, 256641.201499998569489 ], [ 367235.922799997031689, 256641.7489 ], [ 367225.413800001144409, 256644.829300001263618 ], [ 367215.739799998700619, 256644.539000000804663 ], [ 367189.481100000441074, 256697.941899999976158 ], [ 367194.275799997150898, 256703.047400001436472 ], [ 367199.885799996554852, 256707.104100000113249 ], [ 367211.138199999928474, 256711.418000001460314 ], [ 367215.470100000500679, 256711.996399998664856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302282300", "MAP": null, "PARCEL_NAM": "BORGER GADE 14", "ACRE": "2,695 sq ft", "LONGITUDE": -64.93686188, "LATITUDE": 18.34187729, "OBJECTID_1": 10469, "PARCEL_NO_": "105302282300", "Tax_Legal_": "BORGER GADE 14 CROWN PRINCE QTR", "Name": "SPRAUVE, EUNICE A", "Address": "PO Box 788", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 18200, "Improved_V": 95400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 53.584165194999997, "SHAPE_Area": 166.72339179400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358178.839699998497963, 256924.681600000709295 ], [ 358169.171099998056889, 256923.758099999278784 ], [ 358167.340899996459484, 256940.796999998390675 ], [ 358177.289200000464916, 256941.379099998623133 ], [ 358178.839699998497963, 256924.681600000709295 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401220500", "MAP": null, "PARCEL_NAM": "QUEEN LOUISE HOME", "ACRE": null, "LONGITUDE": -64.92538287000001, "LATITUDE": 18.34516526, "OBJECTID_1": 11783, "PARCEL_NO_": "105401220500", "Tax_Legal_": "HOSPITAL GROUND PCL KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 143700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 276.362788567, "SHAPE_Area": 3328.9966037200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359390.336400002241135, 257270.475099999457598 ], [ 359386.440099999308586, 257253.322799999266863 ], [ 359372.462099999189377, 257254.347100000828505 ], [ 359368.804700002074242, 257254.658700000494719 ], [ 359365.155699998140335, 257255.057000000029802 ], [ 359361.517200000584126, 257255.541600000113249 ], [ 359357.89130000025034, 257256.112300001084805 ], [ 359356.494999997317791, 257256.356100000441074 ], [ 359378.359099999070168, 257362.805599998682737 ], [ 359380.254199996590614, 257362.403999999165535 ], [ 359409.796599999070168, 257356.143399998545647 ], [ 359409.409999996423721, 257354.441700000315905 ], [ 359405.934500001370907, 257339.141699999570847 ], [ 359403.199600003659725, 257327.101799998432398 ], [ 359402.132500000298023, 257322.40430000051856 ], [ 359398.296899996697903, 257305.519299998879433 ], [ 359393.621200002729893, 257284.9358000010252 ], [ 359390.336400002241135, 257270.475099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401220300", "MAP": "D9-2581-T84", "PARCEL_NAM": "264", "ACRE": "0.09", "LONGITUDE": -64.92524834, "LATITUDE": 18.34573015, "OBJECTID_1": 11781, "PARCEL_NO_": "105401220300", "Tax_Legal_": "264 HOSPITAL GROUND KING QTR", "Name": "ROGERS, MEDINA", "Address": "P O BOX 2893", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 30500, "Improved_V": 172600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.200452602200002, "SHAPE_Area": 489.404991843 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359413.962899997830391, 257374.484499998390675 ], [ 359410.183600001037121, 257357.846900001168251 ], [ 359381.354699999094009, 257367.634199999272823 ], [ 359379.481499999761581, 257368.270199999213219 ], [ 359382.114399999380112, 257381.088899999856949 ], [ 359382.1216000020504, 257381.180399999022484 ], [ 359384.116400003433228, 257380.760899998247623 ], [ 359413.962899997830391, 257374.484499998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "105401220100", "MAP": "D3-277-T66", "PARCEL_NAM": "KNUD HANSEN MEMORIAL HOSPITAL", "ACRE": "4.75", "LONGITUDE": -64.92659347, "LATITUDE": 18.34539429, "OBJECTID_1": 11779, "PARCEL_NO_": "105401220100", "Tax_Legal_": "HOSPITAL KINGS QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 227600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 542.27696401200001, "SHAPE_Area": 18765.1128259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359382.1216000020504, 257381.180399999022484 ], [ 359382.114399999380112, 257381.088899999856949 ], [ 359379.481499999761581, 257368.270199999213219 ], [ 359356.494999997317791, 257256.356100000441074 ], [ 359356.40089999884367, 257256.372499998658895 ], [ 359354.913199998438358, 257256.647300001233816 ], [ 359353.428300000727177, 257256.936599999666214 ], [ 359351.946199998259544, 257257.24040000140667 ], [ 359288.734099999070168, 257270.519200000911951 ], [ 359286.333200000226498, 257271.023499999195337 ], [ 359199.541799999773502, 257289.25560000166297 ], [ 359209.648299999535084, 257331.759199999272823 ], [ 359210.194799996912479, 257333.863000001758337 ], [ 359211.264899998903275, 257337.196899998933077 ], [ 359212.564400002360344, 257340.44819999858737 ], [ 359214.086900003254414, 257343.601199999451637 ], [ 359215.825199998915195, 257346.640599999576807 ], [ 359217.770700000226498, 257349.551699999719858 ], [ 359219.913999997079372, 257352.32039999961853 ], [ 359259.492299996316433, 257399.925700001418591 ], [ 359260.081200003623962, 257400.568999998271465 ], [ 359261.222199998795986, 257401.530299998819828 ], [ 359262.504399999976158, 257402.293200001120567 ], [ 359263.893500000238419, 257402.837499998509884 ], [ 359265.352700002491474, 257403.148699998855591 ], [ 359266.843000002205372, 257403.218400001525879 ], [ 359268.324799999594688, 257403.044799998402596 ], [ 359291.100599996745586, 257398.728100001811981 ], [ 359361.864500001072884, 257385.316199999302626 ], [ 359364.852099999785423, 257384.742199998348951 ], [ 359367.83669999986887, 257384.153299998492002 ], [ 359370.818400003015995, 257383.549600001424551 ], [ 359373.796999998390675, 257382.931000001728535 ], [ 359382.1216000020504, 257381.180399999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105302212900", "MAP": null, "PARCEL_NAM": "JASMINE STRAEDE 2", "ACRE": null, "LONGITUDE": -64.93700529, "LATITUDE": 18.34186489, "OBJECTID_1": 10212, "PARCEL_NO_": "105302212900", "Tax_Legal_": "JASMIN STRAEDE 2 CROWN PRINCE QUARTER", "Name": "SPRAUVE, GAYLORD", "Address": "3201 Southgreen Rd", "City": "Windsor Mill", "State": "Maryland", "Zip": 212440000, "Country": "United States", "Land_Value": 34300, "Improved_V": 186300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.613822396499998, "SHAPE_Area": 354.21161834200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 358169.171099998056889, 256923.758099999278784 ], [ 358149.084600001573563, 256921.482400000095367 ], [ 358147.891800001263618, 256929.143800001591444 ], [ 358146.434000000357628, 256938.50730000063777 ], [ 358167.340899996459484, 256940.796999998390675 ], [ 358168.338100001215935, 256931.512899998575449 ], [ 358169.171099998056889, 256923.758099999278784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105401220400", "MAP": null, "PARCEL_NAM": "289", "ACRE": null, "LONGITUDE": -64.9252647, "LATITUDE": 18.34563871, "OBJECTID_1": 11782, "PARCEL_NO_": "105401220400", "Tax_Legal_": "HOSPITAL GROUND 289 NEW QTR", "Name": "ROGERS, MEDINA", "Address": "BOX 2893", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 3400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 71.884456985599996, "SHAPE_Area": 117.802007543 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359410.183600001037121, 257357.846900001168251 ], [ 359409.796599999070168, 257356.143399998545647 ], [ 359380.254199996590614, 257362.403999999165535 ], [ 359378.359099999070168, 257362.805599998682737 ], [ 359379.481499999761581, 257368.270199999213219 ], [ 359381.354699999094009, 257367.634199999272823 ], [ 359410.183600001037121, 257357.846900001168251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003041500", "MAP": null, "PARCEL_NAM": "2E-51-13", "ACRE": null, "LONGITUDE": -64.98077093000001, "LATITUDE": 18.37145482, "OBJECTID_1": 309, "PARCEL_NO_": "101003041500", "Tax_Legal_": "CARET BAY 2E-51-13 LT. NORTHSIDE", "Name": "PARTEN, SUSAN M", "Address": "1324 Alta Vista Ave", "City": "Austin", "State": "Texas", "Zip": 78704, "Country": "United States", "Land_Value": 113200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.78286243599999, "SHAPE_Area": 2174.4825923499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353499.43129999935627, 260144.088300000876188 ], [ 353468.5253000035882, 260175.077199999243021 ], [ 353484.568800002336502, 260184.918800000101328 ], [ 353501.461800001561642, 260189.701099999248981 ], [ 353518.381800003349781, 260191.317299999296665 ], [ 353530.487300001084805, 260190.14979999884963 ], [ 353535.341300003230572, 260188.289700001478195 ], [ 353525.218900002539158, 260145.988099999725819 ], [ 353512.371799997985363, 260139.550200000405312 ], [ 353511.538599997758865, 260142.709800001233816 ], [ 353508.293499998748302, 260145.005199998617172 ], [ 353503.450300000607967, 260145.598900001496077 ], [ 353499.43129999935627, 260144.088300000876188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003041600", "MAP": null, "PARCEL_NAM": "2E-51-14", "ACRE": null, "LONGITUDE": -64.98036812, "LATITUDE": 18.37125926, "OBJECTID_1": 310, "PARCEL_NO_": "101003041600", "Tax_Legal_": "CARET BAY 2E-51-14 LT. NORTHSIDE", "Name": "BURLINGAME, PETER C. & PATRICIA WOOD-BURLINGAME", "Address": "8168 Crown Bay Marina", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 138100, "Improved_V": 121500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 203.773143957, "SHAPE_Area": 2343.3299579200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353573.091600000858307, 260111.127300001680851 ], [ 353522.092600002884865, 260134.352400001138449 ], [ 353525.218900002539158, 260145.988099999725819 ], [ 353535.341300003230572, 260188.289700001478195 ], [ 353546.687200002372265, 260181.627599999308586 ], [ 353553.999799996614456, 260175.143500000238419 ], [ 353558.877199999988079, 260170.53940000012517 ], [ 353565.415799997746944, 260160.249299999326468 ], [ 353570.365199998021126, 260147.201999999582767 ], [ 353572.863300003111362, 260137.934300001710653 ], [ 353573.091600000858307, 260111.127300001680851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003041400", "MAP": null, "PARCEL_NAM": "2E-51-12", "ACRE": null, "LONGITUDE": -64.98111107, "LATITUDE": 18.37121491, "OBJECTID_1": 308, "PARCEL_NO_": "101003041400", "Tax_Legal_": "CARET BAY 2E-51-12 LT. NORTHSIDE", "Name": "PARTEN, SUSAN M", "Address": "1324 Alta Vista Ave", "City": "Austin", "State": "Texas", "Zip": 78704, "Country": "United States", "Land_Value": 116100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.542193962, "SHAPE_Area": 2284.8613371900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353439.704800002276897, 260150.565600000321865 ], [ 353454.10700000077486, 260163.771200001239777 ], [ 353455.707000002264977, 260165.261999998241663 ], [ 353468.5253000035882, 260175.077199999243021 ], [ 353499.43129999935627, 260144.088300000876188 ], [ 353496.222199998795986, 260142.162200000137091 ], [ 353495.42849999666214, 260140.678100001066923 ], [ 353495.489600002765656, 260133.501400001347065 ], [ 353502.0912000015378, 260115.823600001633167 ], [ 353449.617899999022484, 260122.782400000840425 ], [ 353439.704800002276897, 260150.565600000321865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003041300", "MAP": null, "PARCEL_NAM": "2E-51-11", "ACRE": null, "LONGITUDE": -64.98099655, "LATITUDE": 18.37081254, "OBJECTID_1": 307, "PARCEL_NO_": "101003041300", "Tax_Legal_": "CARET BAY 2E-51-11 LT. NORTHSIDE", "Name": "VANTERPOOL, SHENEL J", "Address": "PO Box 10391", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 90400, "Improved_V": 240400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 196.98035871299999, "SHAPE_Area": 2189.7199243800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353519.306100003421307, 260082.822799999266863 ], [ 353468.601899996399879, 260071.430900000035763 ], [ 353449.617899999022484, 260122.782400000840425 ], [ 353502.0912000015378, 260115.823600001633167 ], [ 353507.855800002813339, 260101.72749999910593 ], [ 353519.306100003421307, 260082.822799999266863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003041200", "MAP": null, "PARCEL_NAM": "2E-51-10", "ACRE": null, "LONGITUDE": -64.98084886, "LATITUDE": 18.37049801, "OBJECTID_1": 306, "PARCEL_NO_": "101003041200", "Tax_Legal_": "CARET BAY 2E-51-10 LT. NORTHSIDE", "Name": "CARIBBEAN HOUSING RENTALS INC", "Address": "20 Estate Caret Bay", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 166.68024298700001, "SHAPE_Area": 1574.4176169100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353531.594899997115135, 260060.125199999660254 ], [ 353480.159999996423721, 260039.8614999987185 ], [ 353468.601899996399879, 260071.430900000035763 ], [ 353519.306100003421307, 260082.822799999266863 ], [ 353531.594899997115135, 260060.125199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "101003041000", "MAP": null, "PARCEL_NAM": "2E-51-8", "ACRE": null, "LONGITUDE": -64.9806972, "LATITUDE": 18.37020221, "OBJECTID_1": 305, "PARCEL_NO_": "101003041000", "Tax_Legal_": "CARET BAY 2E-51-8 LT. NORTHSIDE", "Name": "JOSEPH, JAHMAUL N.", "Address": "PO Box 9622", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 78600, "Improved_V": 92500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.76160814400001, "SHAPE_Area": 2488.9373278500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 353552.88629999756813, 260021.880499999970198 ], [ 353494.200000002980232, 260000.924100000411272 ], [ 353480.159999996423721, 260039.8614999987185 ], [ 353531.594899997115135, 260060.125199999660254 ], [ 353552.88629999756813, 260021.880499999970198 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103017300", "MAP": "D9-9387-T019", "PARCEL_NAM": "25B REM", "ACRE": "0.60", "LONGITUDE": -64.89233647, "LATITUDE": 18.3534722, "OBJECTID_1": 6496, "PARCEL_NO_": "103103017300", "Tax_Legal_": "25B REM MANDAHL No.4 GREAT NORTHSIDE QTR", "Name": "MOLESWORTH, DUNCAN N", "Address": "6617 Estate Nadir", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 198.55662326000001, "SHAPE_Area": 2479.3252499199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362897.517300002276897, 258267.547400001436472 ], [ 362895.413000002503395, 258230.588799998164177 ], [ 362880.870700001716614, 258233.847300000488758 ], [ 362862.368600003421307, 258228.629599999636412 ], [ 362842.954199999570847, 258235.859000001102686 ], [ 362843.630999997258186, 258251.063299998641014 ], [ 362836.260899998247623, 258264.30180000141263 ], [ 362862.674999997019768, 258287.316100001335144 ], [ 362863.508299998939037, 258284.156500000506639 ], [ 362865.135300002992153, 258282.481100000441074 ], [ 362878.891199998557568, 258276.894200000911951 ], [ 362897.517300002276897, 258267.547400001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103014600", "MAP": "D9-5640-T93", "PARCEL_NAM": "25B-2", "ACRE": null, "LONGITUDE": -64.8928695, "LATITUDE": 18.3532071, "OBJECTID_1": 6471, "PARCEL_NO_": "103103014600", "Tax_Legal_": "25B-2 MANDAHL No.4 GREAT NORTHSIDE QTR", "Name": "KENNETH THOMPSON SR. & KECIA QUESTEL", "Address": "6C MISGUNST", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 209.73326242, "SHAPE_Area": 2159.0773572200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362842.954199999570847, 258235.859000001102686 ], [ 362799.798100002110004, 258190.331799998879433 ], [ 362773.027999997138977, 258209.111099999397993 ], [ 362836.260899998247623, 258264.30180000141263 ], [ 362843.630999997258186, 258251.063299998641014 ], [ 362842.954199999570847, 258235.859000001102686 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103017400", "MAP": "D9-5640-T93", "PARCEL_NAM": "25B-1", "ACRE": null, "LONGITUDE": -64.89262219, "LATITUDE": 18.35295282, "OBJECTID_1": 6497, "PARCEL_NO_": "103103017400", "Tax_Legal_": "MANDAHL 25B-1 GREAT NORTHSIDE", "Name": "NARCISSE, JOHN & SHARON", "Address": "PO Box 307844", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 71400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 219.379619752, "SHAPE_Area": 2825.4429915800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362862.368600003421307, 258228.629599999636412 ], [ 362858.923299998044968, 258159.78489999845624 ], [ 362844.371899999678135, 258164.098799999803305 ], [ 362826.555699996650219, 258173.030000001192093 ], [ 362817.643100000917912, 258178.023299999535084 ], [ 362799.798100002110004, 258190.331799998879433 ], [ 362842.954199999570847, 258235.859000001102686 ], [ 362862.368600003421307, 258228.629599999636412 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103017500", "MAP": "D9-5640-T93", "PARCEL_NAM": "25B-3", "ACRE": null, "LONGITUDE": -64.89225761, "LATITUDE": 18.35292934, "OBJECTID_1": 6498, "PARCEL_NO_": "103103017500", "Tax_Legal_": "MANDAHL 25B-3 GREAT NORTHSIDE", "Name": "HAMBRIC, KEISHA A.&TYRONE", "Address": "50 BAY ST. LANDING, UNIT Q1H", "City": "STATEN ISLAND", "State": "New York", "Zip": 10301, "Country": "United States", "Land_Value": 63500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 207.66289532299999, "SHAPE_Area": 2418.5609246 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362891.987499997019768, 258159.422200001776218 ], [ 362878.29450000077486, 258157.621399998664856 ], [ 362867.000799998641014, 258158.162300001829863 ], [ 362858.923299998044968, 258159.78489999845624 ], [ 362862.368600003421307, 258228.629599999636412 ], [ 362880.870700001716614, 258233.847300000488758 ], [ 362895.413000002503395, 258230.588799998164177 ], [ 362891.987499997019768, 258159.422200001776218 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701021000", "MAP": "D9-2021-T82", "PARCEL_NAM": "15-2", "ACRE": null, "LONGITUDE": -64.87673448, "LATITUDE": 18.34584878, "OBJECTID_1": 21921, "PARCEL_NO_": "105701021000", "Tax_Legal_": "15-2 FRYDENDAHL EAST END QTR.", "Name": "LTHOUSE REVIVAL FOR V. I.", "Address": "PO Box 10390", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 87100, "Improved_V": 211800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.483340825, "SHAPE_Area": 1113.30143146 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364504.020999997854233, 257433.964899998158216 ], [ 364537.380699999630451, 257444.345199998468161 ], [ 364545.76799999922514, 257415.11710000038147 ], [ 364534.490500003099442, 257410.395399998873472 ], [ 364515.221799999475479, 257400.527399998158216 ], [ 364504.020999997854233, 257433.964899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105604030500", "MAP": "D9-4696-T89", "PARCEL_NAM": "175-C", "ACRE": null, "LONGITUDE": -64.88779528000001, "LATITUDE": 18.33725148, "OBJECTID_1": 21775, "PARCEL_NO_": "105604030500", "Tax_Legal_": "175-C EST ANNAS RETREAT NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 156800, "Improved_V": 379400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 178.90770478499999, "SHAPE_Area": 1769.69705221 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363384.816600002348423, 256439.454700000584126 ], [ 363385.761799998581409, 256435.624299999326468 ], [ 363362.073299996554852, 256443.285799998790026 ], [ 363344.182700000703335, 256449.072000000625849 ], [ 363332.904399998486042, 256452.719700001180172 ], [ 363326.384999997913837, 256454.828200001269579 ], [ 363331.281000003218651, 256460.778499998152256 ], [ 363349.227700002491474, 256482.589999999850988 ], [ 363376.341700002551079, 256487.72580000013113 ], [ 363379.726999998092651, 256468.9662000015378 ], [ 363384.816600002348423, 256439.454700000584126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701010500", "MAP": "D9-6362-T98", "PARCEL_NAM": "15 REM", "ACRE": null, "LONGITUDE": -64.87673851, "LATITUDE": 18.34709079, "OBJECTID_1": 21840, "PARCEL_NO_": "105701010500", "Tax_Legal_": "15 ESTATE FRYDENDAHL EAST END QUARTER", "Name": "JOHNSON, SR. , AUBREY & OTHERS", "Address": "6868 W Livingston St", "City": "Orlando", "State": "Florida", "Zip": 328351228, "Country": "United States", "Land_Value": 288400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 636.73508972399998, "SHAPE_Area": 5599.0011518700003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364524.434900000691414, 257665.188200000673532 ], [ 364563.855800002813339, 257542.719300001859665 ], [ 364552.929099999368191, 257538.276599999517202 ], [ 364556.215499997138977, 257543.37049999833107 ], [ 364557.0371999964118, 257549.450399998575449 ], [ 364556.215499997138977, 257554.872999999672174 ], [ 364554.243699997663498, 257559.802600000053644 ], [ 364543.069899998605251, 257576.892000000923872 ], [ 364543.069899998605251, 257579.521099999547005 ], [ 364544.220100000500679, 257582.478900000452995 ], [ 364546.684900000691414, 257583.300500001758337 ], [ 364545.04169999808073, 257589.380399998277426 ], [ 364536.661399997770786, 257587.737199999392033 ], [ 364528.773900002241135, 257587.572799999266863 ], [ 364522.858400002121925, 257588.230099998414516 ], [ 364522.201099999248981, 257579.028200000524521 ], [ 364524.830200001597404, 257578.699499998241663 ], [ 364529.431199997663498, 257576.727699998766184 ], [ 364534.19650000333786, 257573.276900000870228 ], [ 364537.647299997508526, 257568.018699999898672 ], [ 364545.699000000953674, 257556.023200001567602 ], [ 364547.835199996829033, 257550.271999999880791 ], [ 364546.19200000166893, 257544.3564000017941 ], [ 364517.928800001740456, 257499.003899998962879 ], [ 364516.44990000128746, 257494.074200000613928 ], [ 364516.285599999129772, 257489.308899998664856 ], [ 364517.271499998867512, 257484.379299998283386 ], [ 364520.064900003373623, 257478.299400001764297 ], [ 364531.731700003147125, 257460.552799999713898 ], [ 364536.54110000282526, 257447.271099999547005 ], [ 364537.380699999630451, 257444.345199998468161 ], [ 364524.199000000953674, 257440.243500001728535 ], [ 364523.184199996292591, 257443.432900000363588 ], [ 364494.521600000560284, 257558.678199999034405 ], [ 364524.434900000691414, 257665.188200000673532 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107504040200", "MAP": "D9-3630-T86", "PARCEL_NAM": "2-2-3", "ACRE": "1", "LONGITUDE": -64.88640003, "LATITUDE": 18.31801732, "OBJECTID_1": 37781, "PARCEL_NO_": "107504040200", "Tax_Legal_": "PAR 2-2-3 BOVONI 1 & 2 FRENCHMAN'S BAY QTR", "Name": "KO987FLA INC", "Address": "PO Box 9355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 314.88013767699999, "SHAPE_Area": 4922.7681767900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363547.843099996447563, 254347.674100000411272 ], [ 363569.621200002729893, 254286.934900000691414 ], [ 363532.266999997198582, 254275.897100001573563 ], [ 363526.51129999756813, 254288.937800001353025 ], [ 363522.400700002908707, 254298.192299999296665 ], [ 363509.256899997591972, 254326.582299999892712 ], [ 363505.966899998486042, 254334.154800001531839 ], [ 363503.495800003409386, 254340.256299998611212 ], [ 363497.731200002133846, 254354.352400001138449 ], [ 363491.975500002503395, 254367.39299999922514 ], [ 363486.2162000015378, 254380.855900000780821 ], [ 363530.996899999678135, 254394.657999999821186 ], [ 363547.843099996447563, 254347.674100000411272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107504040400", "MAP": "D9-7770-T006", "PARCEL_NAM": "2-2-4", "ACRE": "2.37", "LONGITUDE": -64.88492525, "LATITUDE": 18.318383, "OBJECTID_1": 37783, "PARCEL_NO_": "107504040400", "Tax_Legal_": "PAR 2-2-4 BOVONI 1 & 2 FRENCHMANS BAY QTR", "Name": "LLL TRUST INVESTMENTS VI INC", "Address": "2336 SE Ocean Blvd Ste 336", "City": "Stuart", "State": "Florida", "Zip": 349963310, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 413.810294903, "SHAPE_Area": 10169.3260961 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363656.171899996697903, 254311.325500000268221 ], [ 363630.585699997842312, 254423.684099998325109 ], [ 363695.251500003039837, 254453.705299999564886 ], [ 363696.910800002515316, 254448.230399999767542 ], [ 363698.539700001478195, 254446.343899998813868 ], [ 363706.778999999165535, 254425.724199999123812 ], [ 363713.350000001490116, 254411.634700000286102 ], [ 363714.976999998092651, 254409.959300000220537 ], [ 363715.812100000679493, 254406.588599998503923 ], [ 363718.259800001978874, 254403.231100000441074 ], [ 363726.48650000244379, 254384.089000001549721 ], [ 363728.113600000739098, 254382.413499999791384 ], [ 363729.754900000989437, 254379.049499999731779 ], [ 363730.579199999570847, 254376.945300001651049 ], [ 363733.062899999320507, 254369.366200000047684 ], [ 363741.282499998807907, 254351.068399999290705 ], [ 363743.73200000077486, 254347.499800000339746 ], [ 363744.572499997913837, 254343.495900001376867 ], [ 363748.686700001358986, 254333.819299999624491 ], [ 363656.171899996697903, 254311.325500000268221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701010500", "MAP": "D9-2021-T82", "PARCEL_NAM": "15-1", "ACRE": null, "LONGITUDE": -64.87707425000001, "LATITUDE": 18.3457233, "OBJECTID_1": 21840, "PARCEL_NO_": "105701010500", "Tax_Legal_": "15 ESTATE FRYDENDAHL EAST END QUARTER", "Name": "JOHNSON, SR. , AUBREY & OTHERS", "Address": "6868 W Livingston St", "City": "Orlando", "State": "Florida", "Zip": 328351228, "Country": "United States", "Land_Value": 288400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 164.30266102300001, "SHAPE_Area": 1654.1485731299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364462.130599997937679, 257420.930100001394749 ], [ 364504.020999997854233, 257433.964899998158216 ], [ 364515.221799999475479, 257400.527399998158216 ], [ 364494.354699999094009, 257388.957600001245737 ], [ 364480.890399999916553, 257379.9239999987185 ], [ 364462.130599997937679, 257420.930100001394749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "B-2", "PARCEL_NO": "107504040100", "MAP": "D9-8893-T014", "PARCEL_NAM": "2-2-5", "ACRE": "1.60", "LONGITUDE": -64.88681905, "LATITUDE": 18.31959745, "OBJECTID_1": 37780, "PARCEL_NO_": "107504040100", "Tax_Legal_": "PAR 2-2-5 BOVONI 1 & 2 FRENCHMAN'S BAY QTR", "Name": "KO987FLA INC", "Address": "PO Box 9355", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 337.09265572800001, "SHAPE_Area": 6765.2262461600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363543.530699998140335, 254499.571400001645088 ], [ 363449.245200000703335, 254461.190999999642372 ], [ 363440.210400000214577, 254480.53770000115037 ], [ 363436.10869999974966, 254488.736800000071526 ], [ 363425.430600002408028, 254511.658599998801947 ], [ 363422.144199997186661, 254518.808899998664856 ], [ 363516.121399998664856, 254562.007800001651049 ], [ 363543.530699998140335, 254499.571400001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701024200", "MAP": "D9-8906-T014", "PARCEL_NAM": "53-1A-3", "ACRE": ".269", "LONGITUDE": -64.8773285, "LATITUDE": 18.34558971, "OBJECTID_1": 21948, "PARCEL_NO_": "105701024200", "Tax_Legal_": "53-1A-3 FRYDENDAHL NO.4 EAST END QTR", "Name": "DAAS, ABDELQADER M.& NAJAH F. YUSUF", "Address": "PO Box 502454", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 38300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 134.58169706000001, "SHAPE_Area": 987.61100066200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364447.039099998772144, 257414.40260000154376 ], [ 364448.394299998879433, 257416.099300000816584 ], [ 364449.662500001490116, 257417.050500001758337 ], [ 364462.130599997937679, 257420.930100001394749 ], [ 364480.890399999916553, 257379.9239999987185 ], [ 364471.102899998426437, 257373.357400000095367 ], [ 364463.082999996840954, 257368.225600000470877 ], [ 364459.739200003445148, 257368.523800000548363 ], [ 364458.469200000166893, 257369.317499998956919 ], [ 364447.039099998772144, 257414.40260000154376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "D9-8671-T012", "PARCEL_NAM": "REM M", "ACRE": "0.51", "LONGITUDE": -64.85546491, "LATITUDE": 18.32873538, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 211.71844637199999, "SHAPE_Area": 1861.34674845 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366808.054200001060963, 255563.780799999833107 ], [ 366804.387699998915195, 255520.898800000548363 ], [ 366797.103900000452995, 255524.00560000166297 ], [ 366793.059799998998642, 255525.450100000947714 ], [ 366789.019199997186661, 255526.472500000149012 ], [ 366784.982299998402596, 255527.072799999266863 ], [ 366775.299300000071526, 255527.837900001555681 ], [ 366767.254199996590614, 255525.661100000143051 ], [ 366766.067100003361702, 255525.131499998271465 ], [ 366762.729500003159046, 255528.886199999600649 ], [ 366753.181100003421307, 255547.576900001615286 ], [ 366755.597300000488758, 255550.497900001704693 ], [ 366760.468699999153614, 255550.684099998325109 ], [ 366785.483400002121925, 255551.640099998563528 ], [ 366786.163800001144409, 255559.996899999678135 ], [ 366787.151000000536442, 255581.77930000051856 ], [ 366809.526600003242493, 255580.258099999278784 ], [ 366808.054200001060963, 255563.780799999833107 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701031300", "MAP": "A9-537-T99", "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85576404, "LATITUDE": 18.32871696, "OBJECTID_1": 39272, "PARCEL_NO_": "107701031300", "Tax_Legal_": "TRACK 1&2 NAZARETH NO.1 RED HOOK QUARTER", "Name": "VIRGIN ISLANDS HOUSING FINANCE AUTHORITY", "Address": "3202 Demarar A Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 2617100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.524605815, "SHAPE_Area": 495.48526581099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366763.248400002717972, 255523.79839999973774 ], [ 366755.114100001752377, 255519.784000001847744 ], [ 366755.212700001895428, 255524.416700001806021 ], [ 366747.725599996745586, 255541.348900001496077 ], [ 366742.007299996912479, 255554.281100001186132 ], [ 366740.585199996829033, 255560.985399998724461 ], [ 366744.22240000218153, 255563.951900001615286 ], [ 366749.930500000715256, 255566.47069999948144 ], [ 366753.790500000119209, 255564.845400001853704 ], [ 366757.04110000282526, 255563.220100000500679 ], [ 366758.869499996304512, 255560.172800000756979 ], [ 366759.682199999690056, 255557.7347999997437 ], [ 366758.85869999974966, 255554.440600000321865 ], [ 366753.181100003421307, 255547.576900001615286 ], [ 366762.729500003159046, 255528.886199999600649 ], [ 366766.067100003361702, 255525.131499998271465 ], [ 366764.844200000166893, 255524.585900001227856 ], [ 366763.248400002717972, 255523.79839999973774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107701038600", "MAP": "D9-8671-T012", "PARCEL_NAM": "M-7", "ACRE": "0.24", "LONGITUDE": -64.85607649000001, "LATITUDE": 18.32896805, "OBJECTID_1": 39324, "PARCEL_NO_": "107701038600", "Tax_Legal_": "M-7 NAZARETH NO.1 RED HOOK QTR", "Name": "HENLEY, KAREEM & DELICIA G.", "Address": "PO Box 7366", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 32100, "Improved_V": 196400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.003046305, "SHAPE_Area": 1002.26176856 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366748.580200001597404, 255565.874899998307228 ], [ 366744.22240000218153, 255563.951900001615286 ], [ 366700.338500000536442, 255566.183800000697374 ], [ 366700.116800002753735, 255587.696600001305342 ], [ 366748.138400003314018, 255584.431699998676777 ], [ 366747.428700000047684, 255575.713100001215935 ], [ 366748.31360000371933, 255568.15260000154376 ], [ 366748.580200001597404, 255565.874899998307228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702035100", "MAP": "D9-8671-T012", "PARCEL_NAM": "M-47", "ACRE": "0.24", "LONGITUDE": -64.85565319, "LATITUDE": 18.32893276, "OBJECTID_1": 39594, "PARCEL_NO_": "107702035100", "Tax_Legal_": "M-47 NAZARETH NO.1 RED HOOK QUARTER", "Name": "Vernon R. Williams Jr.", "Address": "PO Box 502764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 39700, "Improved_V": 237900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.78699294699999, "SHAPE_Area": 1088.9123753700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366787.151000000536442, 255581.77930000051856 ], [ 366786.163800001144409, 255559.996899999678135 ], [ 366785.483400002121925, 255551.640099998563528 ], [ 366760.468699999153614, 255550.684099998325109 ], [ 366755.597300000488758, 255550.497900001704693 ], [ 366758.85869999974966, 255554.440600000321865 ], [ 366759.682199999690056, 255557.7347999997437 ], [ 366758.869499996304512, 255560.172800000756979 ], [ 366757.04110000282526, 255563.220100000500679 ], [ 366753.790500000119209, 255564.845400001853704 ], [ 366749.930500000715256, 255566.47069999948144 ], [ 366748.580200001597404, 255565.874899998307228 ], [ 366748.31360000371933, 255568.15260000154376 ], [ 366747.428700000047684, 255575.713100001215935 ], [ 366748.138400003314018, 255584.431699998676777 ], [ 366787.151000000536442, 255581.77930000051856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105704023500", "MAP": "D9-9180-T017", "PARCEL_NAM": "53-1A-7", "ACRE": "0.52", "LONGITUDE": -64.87705578000001, "LATITUDE": 18.3460919, "OBJECTID_1": 23538, "PARCEL_NO_": "105704023500", "Tax_Legal_": "SMITH BAY 100-22 EASTEND QUARTER", "Name": "ALBERTHA WILKINS PAYNE & SHERLA S. FARRELL-SEALEY", "Address": "PO Box 12112", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8015112, "Country": "United States", "Land_Value": 35900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 202.74666310399999, "SHAPE_Area": 2410.5942424899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364504.020999997854233, 257433.964899998158216 ], [ 364462.130599997937679, 257420.930100001394749 ], [ 364460.17849999666214, 257425.197000000625849 ], [ 364460.245999999344349, 257458.515700001269579 ], [ 364513.93469999730587, 257480.622800000011921 ], [ 364523.184199996292591, 257443.432900000363588 ], [ 364524.199000000953674, 257440.243500001728535 ], [ 364504.020999997854233, 257433.964899998158216 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023100", "MAP": "B9-279-T70", "PARCEL_NAM": "22-31", "ACRE": ".36", "LONGITUDE": -64.89470409, "LATITUDE": 18.35688315, "OBJECTID_1": 6395, "PARCEL_NO_": "103101023100", "Tax_Legal_": "MANDAHL 22-31 GT. NORTHSIDE", "Name": "NATTA, MERLE & JOHN J", "Address": "PO Box 6122", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8046122, "Country": "United States", "Land_Value": 45100, "Improved_V": 218600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 153.70079392599999, "SHAPE_Area": 1454.1114049 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362641.195500001311302, 258634.018899999558926 ], [ 362620.311999998986721, 258601.231699999421835 ], [ 362617.270499996840954, 258602.792300000786781 ], [ 362606.720100000500679, 258610.72749999910593 ], [ 362601.833700001239777, 258616.387099999934435 ], [ 362600.213899999856949, 258617.218199998140335 ], [ 362596.94370000064373, 258622.468800000846386 ], [ 362596.072599999606609, 258630.061000000685453 ], [ 362603.084899999201298, 258658.827100001275539 ], [ 362641.195500001311302, 258634.018899999558926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023800", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89379268, "LATITUDE": 18.35699323, "OBJECTID_1": 6402, "PARCEL_NO_": "103101023800", "Tax_Legal_": "MANDAHL 23-12 GREAT NORTHSIDE QTR", "Name": "BEMIS, DAVID", "Address": "285 Lafayette St", "City": "New York", "State": "New York", "Zip": 10012, "Country": "United States", "Land_Value": 26700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.90523694699999, "SHAPE_Area": 1095.9906666300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362714.661700002849102, 258623.854400001466274 ], [ 362711.953299999237061, 258620.284699998795986 ], [ 362672.537699997425079, 258650.562399998307228 ], [ 362680.560999996960163, 258651.22859999909997 ], [ 362738.584899999201298, 258655.292100001126528 ], [ 362714.661700002849102, 258623.854400001466274 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101025300", "MAP": "D9-5027-T90", "PARCEL_NAM": "23C-2", "ACRE": ".4677", "LONGITUDE": -64.89347806000001, "LATITUDE": 18.35678285, "OBJECTID_1": 6417, "PARCEL_NO_": "103101025300", "Tax_Legal_": "MANDAHL 23C-2 GREAT NORTHSIDE QTR.", "Name": "BRUNN, BEVERLY", "Address": "P.O. BOX 4502", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.378669532, "SHAPE_Area": 2002.4291312800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362738.584899999201298, 258655.292100001126528 ], [ 362745.134300000965595, 258643.735500000417233 ], [ 362749.149700000882149, 258645.668200001120567 ], [ 362759.83500000089407, 258621.902100000530481 ], [ 362775.251999996602535, 258610.629200000315905 ], [ 362757.700099997222424, 258588.531800001859665 ], [ 362756.037500001490116, 258586.420699998736382 ], [ 362723.775100000202656, 258611.203600000590086 ], [ 362711.953299999237061, 258620.284699998795986 ], [ 362714.661700002849102, 258623.854400001466274 ], [ 362738.584899999201298, 258655.292100001126528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023700", "MAP": "D9-5556-T93", "PARCEL_NAM": "REM 23E-12", "ACRE": "0.30", "LONGITUDE": -64.89405751, "LATITUDE": 18.3568026, "OBJECTID_1": 6401, "PARCEL_NO_": "103101023700", "Tax_Legal_": "23E-12 REMAINDER MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "BRETT, REID T. & DONNA M", "Address": "PO Box 308535", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37500, "Improved_V": 284000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.235685504, "SHAPE_Area": 1638.04486419 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362711.327500000596046, 258612.737799998372793 ], [ 362691.474600002169609, 258600.6554000005126 ], [ 362678.090499997138977, 258610.059799998998642 ], [ 362670.533699996769428, 258615.369699999690056 ], [ 362642.161499999463558, 258635.305599998682737 ], [ 362645.182199999690056, 258639.328899998217821 ], [ 362656.348300002515316, 258653.774599999189377 ], [ 362661.207699999213219, 258651.281300000846386 ], [ 362666.745399996638298, 258650.60249999910593 ], [ 362666.801700003445148, 258650.526599999517202 ], [ 362707.859200000762939, 258618.722500000149012 ], [ 362713.185999996960163, 258614.596200000494719 ], [ 362711.327500000596046, 258612.737799998372793 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.8943817, "LATITUDE": 18.35669701, "OBJECTID_1": 6400, "PARCEL_NO_": "103101023600", "Tax_Legal_": "23E-11 MANDAHL GREAT NORTHSIDE QTR.", "Name": "K. R. BORGER & C. J. HINTON LIVING REV. TRUSTS", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19900, "Improved_V": 234400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.39931101299999, "SHAPE_Area": 1142.7620124099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362670.533699996769428, 258615.369699999690056 ], [ 362645.548500001430511, 258590.971599999815226 ], [ 362634.264200001955032, 258595.754200000315905 ], [ 362626.989399999380112, 258597.805599998682737 ], [ 362620.311999998986721, 258601.231699999421835 ], [ 362641.195500001311302, 258634.018899999558926 ], [ 362642.161499999463558, 258635.305599998682737 ], [ 362670.533699996769428, 258615.369699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103016500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89363966000001, "LATITUDE": 18.35643471, "OBJECTID_1": 6489, "PARCEL_NO_": "103103016500", "Tax_Legal_": "23-E-13 MANDAHL CONS. No.1GREAT NORTHSIDE QTR.", "Name": "STREET, TAMARAH L.", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42400, "Improved_V": 25600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 173.415549949, "SHAPE_Area": 1800.26130857 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362756.037500001490116, 258586.420699998736382 ], [ 362723.397299997508526, 258544.97690000012517 ], [ 362711.120999999344349, 258566.196899998933077 ], [ 362701.308600001037121, 258582.159699998795986 ], [ 362718.06139999628067, 258603.406199999153614 ], [ 362722.845299996435642, 258609.778099998831749 ], [ 362723.775100000202656, 258611.203600000590086 ], [ 362756.037500001490116, 258586.420699998736382 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103016200", "MAP": "A9-200-T73", "PARCEL_NAM": "23E-10", "ACRE": null, "LONGITUDE": -64.89412692000001, "LATITUDE": 18.3565541, "OBJECTID_1": 6486, "PARCEL_NO_": "103103016200", "Tax_Legal_": "MANDAHL 23E-10 GT NORTHSIDE", "Name": "REYNOLDS, BRIAN & JANE", "Address": "PO Box 502235", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 28800, "Improved_V": 324000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 119.20892299800001, "SHAPE_Area": 852.24601170300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362691.474600002169609, 258600.6554000005126 ], [ 362673.919200003147125, 258578.980200000107288 ], [ 362660.161499999463558, 258584.778200000524521 ], [ 362645.548500001430511, 258590.971599999815226 ], [ 362670.533699996769428, 258615.369699999690056 ], [ 362678.090499997138977, 258610.059799998998642 ], [ 362691.474600002169609, 258600.6554000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703018100", "MAP": null, "PARCEL_NAM": "173-340", "ACRE": "0.77", "LONGITUDE": -64.88185677, "LATITUDE": 18.3390603, "OBJECTID_1": 22902, "PARCEL_NO_": "105703018100", "Tax_Legal_": "ANNAS RETREAT 173-340 NEW QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 103400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 385.59082697500003, "SHAPE_Area": 4042.7488757299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363931.634499996900558, 256617.026900000870228 ], [ 363922.78490000218153, 256614.632399998605251 ], [ 363924.084600001573563, 256651.373399998992682 ], [ 363944.226300001144409, 256653.438099998980761 ], [ 363954.693899996578693, 256655.212499998509884 ], [ 363965.145400002598763, 256658.886599998921156 ], [ 363978.795199997723103, 256665.753299999982119 ], [ 363991.620700001716614, 256674.724199999123812 ], [ 363999.61370000243187, 256683.022300001233816 ], [ 364009.176100000739098, 256696.399399999529123 ], [ 364009.959100000560284, 256699.150100000202656 ], [ 364017.120600000023842, 256710.396600000560284 ], [ 364017.104400001466274, 256712.296300001442432 ], [ 364018.699000000953674, 256714.420299999415874 ], [ 364020.266699999570847, 256719.710499998182058 ], [ 364020.959100000560284, 256723.312699999660254 ], [ 364060.212099999189377, 256721.288600001484156 ], [ 364044.694399997591972, 256701.219200000166893 ], [ 364033.450000002980232, 256686.676699999719858 ], [ 364024.674099996685982, 256675.627999998629093 ], [ 364012.644100002944469, 256667.93019999936223 ], [ 364009.445900000631809, 256664.73759999871254 ], [ 364000.648299999535084, 256656.221900001168251 ], [ 363984.610200002789497, 256645.747000001370907 ], [ 363976.602799996733665, 256639.137600000947714 ], [ 363973.39919999986887, 256636.578200001269579 ], [ 363962.989000000059605, 256628.049300000071526 ], [ 363959.7871999964118, 256625.278900001198053 ], [ 363945.311300002038479, 256620.727400001138449 ], [ 363940.484200000762939, 256619.421399999409914 ], [ 363931.634499996900558, 256617.026900000870228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011600", "MAP": "G9-1516-T70", "PARCEL_NAM": "22-B", "ACRE": null, "LONGITUDE": -64.96667466, "LATITUDE": 18.35603909, "OBJECTID_1": 2661, "PARCEL_NO_": "102604011600", "Tax_Legal_": "PAR 22B REM DOROTHEA", "Name": "REYNALD A CHARLES", "Address": "PO Box 305012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035012, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 557.63926602900005, "SHAPE_Area": 8723.0367666099992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355010.354000002145767, 258414.813499998301268 ], [ 354987.002999998629093, 258420.244899999350309 ], [ 354965.363600000739098, 258382.511199999600649 ], [ 354934.385799996554852, 258390.457299999892712 ], [ 354935.975000001490116, 258393.214499998837709 ], [ 354959.831799998879433, 258432.462099999189377 ], [ 354986.866999998688698, 258477.22410000115633 ], [ 354993.105200000107288, 258478.808299999684095 ], [ 355006.916400000452995, 258501.906399998813868 ], [ 355006.663800001144409, 258509.737199999392033 ], [ 355018.412000000476837, 258534.339699998497963 ], [ 355037.051299996674061, 258573.373199999332428 ], [ 355049.484899997711182, 258599.410999998450279 ], [ 355055.197499997913837, 258596.629000000655651 ], [ 355079.503700003027916, 258583.106899999082088 ], [ 355056.530599996447563, 258534.789500001817942 ], [ 355010.354000002145767, 258414.813499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011700", "MAP": "G9-1516-T70", "PARCEL_NAM": "22-A", "ACRE": null, "LONGITUDE": -64.966206, "LATITUDE": 18.35593903, "OBJECTID_1": 2662, "PARCEL_NO_": "102604011700", "Tax_Legal_": "PAR 22 A REM DOROTHEA 7 LITTLE NORTHSIDE QTR", "Name": "R.C. LAND CORP", "Address": "PO Box 305012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035012, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 455.636448782, "SHAPE_Area": 9220.4744677800009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355072.376199997961521, 258400.387299999594688 ], [ 355010.354000002145767, 258414.813499998301268 ], [ 355056.530599996447563, 258534.789500001817942 ], [ 355079.503700003027916, 258583.106899999082088 ], [ 355098.138800002634525, 258572.704700000584126 ], [ 355115.964000001549721, 258562.718100000172853 ], [ 355101.838799998164177, 258517.006299998611212 ], [ 355088.570200003683567, 258465.390900000929832 ], [ 355077.654100000858307, 258421.605200000107288 ], [ 355072.376199997961521, 258400.387299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050188", "MAP": "G9-2357-T74", "PARCEL_NAM": "100", "ACRE": "0.25", "LONGITUDE": -64.9447452, "LATITUDE": 18.33642839, "OBJECTID_1": 8710, "PARCEL_NO_": "105204050188", "Tax_Legal_": "CROWN BAY 100 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 123700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 126.357580207, "SHAPE_Area": 967.96997819199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357362.032700002193451, 256305.444200001657009 ], [ 357338.963100001215935, 256300.129700001329184 ], [ 357338.212099999189377, 256303.206700000911951 ], [ 357330.909800000488758, 256336.230500001460314 ], [ 357357.028099998831749, 256341.593199998140335 ], [ 357360.887500002980232, 256322.810899998992682 ], [ 357364.404200002551079, 256305.696299999952316 ], [ 357362.032700002193451, 256305.444200001657009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050186", "MAP": null, "PARCEL_NAM": "15", "ACRE": null, "LONGITUDE": -64.94510227000001, "LATITUDE": 18.3356751, "OBJECTID_1": 8708, "PARCEL_NO_": "105204050186", "Tax_Legal_": "CROWN BAY FILL #15 SOUTHSIDE QTR.", "Name": "V. I. MARITIME SERVICE, INC", "Address": "PO Box 7667", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 978000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 345.97157942899997, "SHAPE_Area": 7361.9811841299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357353.310199998319149, 256234.724899999797344 ], [ 357350.902000002563, 256233.4386 ], [ 357350.124499998986721, 256230.054699998348951 ], [ 357336.582599997520447, 256210.523299999535084 ], [ 357334.208599999547005, 256205.226500000804663 ], [ 357328.620200000703335, 256198.636900000274181 ], [ 357328.63629999756813, 256196.737199999392033 ], [ 357327.030900001525879, 256195.879700001329184 ], [ 357321.460500001907349, 256187.179200001060963 ], [ 357306.243000000715256, 256175.022399999201298 ], [ 357304.641199998557568, 256173.74269999936223 ], [ 357285.901799999177456, 256196.38740000128746 ], [ 357265.578500002622604, 256215.641699999570847 ], [ 357247.719200000166893, 256229.638799998909235 ], [ 357253.045100003480911, 256267.045899998396635 ], [ 357284.473300002515316, 256269.414099998772144 ], [ 357297.345499999821186, 256272.896899998188019 ], [ 357341.554300002753735, 256289.513000000268221 ], [ 357353.310199998319149, 256234.724899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701045500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-46", "ACRE": ".18", "LONGITUDE": -64.88137961, "LATITUDE": 18.34024887, "OBJECTID_1": 22083, "PARCEL_NO_": "105701045500", "Tax_Legal_": "148-46 ANNAS RETREAT No.1 NEW QTR", "Name": "GEORGE, DALE & VICTORIA", "Address": "PO Box 502764", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 26700, "Improved_V": 131800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 112.388243442, "SHAPE_Area": 789.75393651599995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364034.795299999415874, 256781.069400001317263 ], [ 364034.330600000917912, 256780.634199999272823 ], [ 364033.800300002098083, 256781.225400000810623 ], [ 364017.719700001180172, 256799.151299998164177 ], [ 364019.578000001609325, 256800.553700000047684 ], [ 364038.799999997019768, 256815.909800000488758 ], [ 364042.014499999582767, 256817.202599998563528 ], [ 364045.239699997007847, 256817.228999998420477 ], [ 364049.283900000154972, 256815.784499999135733 ], [ 364053.353200003504753, 256811.384799998253584 ], [ 364055.809900000691414, 256806.971999999135733 ], [ 364058.246799997985363, 256804.881000000983477 ], [ 364059.141599997878075, 256803.871100001037121 ], [ 364034.795299999415874, 256781.069400001317263 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701045600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-45", "ACRE": ".17", "LONGITUDE": -64.88122901, "LATITUDE": 18.34010279, "OBJECTID_1": 22084, "PARCEL_NO_": "105701045600", "Tax_Legal_": "ANNAS RETREAT 148-45 1 NEW QTR", "Name": "LENNARD, WANDA & ABRAHAM J.", "Address": "7160 Estate Tu Tu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 21300, "Improved_V": 98500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 108.361370769, "SHAPE_Area": 696.21628020399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364054.247500002384186, 256766.8564000017941 ], [ 364053.634099997580051, 256766.104100000113249 ], [ 364053.574299998581409, 256766.163499999791384 ], [ 364050.268799997866154, 256768.64919999986887 ], [ 364034.330600000917912, 256780.634199999272823 ], [ 364034.795299999415874, 256781.069400001317263 ], [ 364059.141599997878075, 256803.871100001037121 ], [ 364068.831399999558926, 256792.935300000011921 ], [ 364072.856200002133846, 256789.67960000038147 ], [ 364054.247500002384186, 256766.8564000017941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105701046000", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-267", "ACRE": "0.13", "LONGITUDE": -64.88158369, "LATITUDE": 18.34009655, "OBJECTID_1": 22088, "PARCEL_NO_": "105701046000", "Tax_Legal_": "ANNAS RETREAT 173-267 NEW QTR", "Name": "MILLINER, ADRIANNA", "Address": "20408 NW 33rd Ave", "City": "Miami Gardens", "State": "Florida", "Zip": 33056, "Country": "United States", "Land_Value": 16300, "Improved_V": 105700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 89.9418822799, "SHAPE_Area": 504.91460588199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364034.330600000917912, 256780.634199999272823 ], [ 364011.447499997913837, 256768.4070999994874 ], [ 364010.9746999964118, 256769.241399999707937 ], [ 364006.063100002706051, 256777.856100000441074 ], [ 364003.624399997293949, 256780.158100001513958 ], [ 364003.582999996840954, 256785.013000000268221 ], [ 364014.770700000226498, 256796.925799999386072 ], [ 364017.719700001180172, 256799.151299998164177 ], [ 364033.800300002098083, 256781.225400000810623 ], [ 364034.330600000917912, 256780.634199999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703010100", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-266", "ACRE": "0.14", "LONGITUDE": -64.88194655, "LATITUDE": 18.33997208, "OBJECTID_1": 22826, "PARCEL_NO_": "105703010100", "Tax_Legal_": "173-266 ANNAS RETREAT NO.1 NEW QTR", "Name": "GEORGIA G. TURNER LIV. TRUST", "Address": "P O BOX 3102 VETERANS DRIVE", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 16400, "Improved_V": 104400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.019975046, "SHAPE_Area": 605.68354250200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363975.335100002586842, 256787.94819999858737 ], [ 363988.28830000013113, 256781.932500001043081 ], [ 363997.226000003516674, 256773.984099999070168 ], [ 363972.428099997341633, 256750.5608000010252 ], [ 363965.086800001561642, 256760.422100000083447 ], [ 363975.335100002586842, 256787.94819999858737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703011400", "MAP": "A9-60-T66", "PARCEL_NAM": "148-44", "ACRE": ".17", "LONGITUDE": -64.88107233, "LATITUDE": 18.33996712, "OBJECTID_1": 22835, "PARCEL_NO_": "105703011400", "Tax_Legal_": "ANNAS RETREAT 148-44 NEW QTR", "Name": "PROPHET, DAISY & JOSEPH, NATASHA", "Address": "7159 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 111700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 106.291143672, "SHAPE_Area": 662.84794046100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364069.190999999642372, 256750.719500001519918 ], [ 364069.155699998140335, 256750.668400000780821 ], [ 364053.634099997580051, 256766.104100000113249 ], [ 364054.247500002384186, 256766.8564000017941 ], [ 364072.856200002133846, 256789.67960000038147 ], [ 364074.515100002288818, 256788.337699998170137 ], [ 364082.632200002670288, 256782.071299999952316 ], [ 364089.115099996328354, 256778.324700001627207 ], [ 364069.190999999642372, 256750.719500001519918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703011100", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-268", "ACRE": "0.14", "LONGITUDE": -64.88147696, "LATITUDE": 18.33996407, "OBJECTID_1": 22832, "PARCEL_NO_": "105703011100", "Tax_Legal_": "ANNAS RETREAT 173-268 NEW QTR", "Name": "JOSEPH, SHARON E", "Address": "5911 Circa Fishawk Blvd", "City": "Lithia", "State": "Florida", "Zip": 33547, "Country": "United States", "Land_Value": 19200, "Improved_V": 41300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 95.770513625099994, "SHAPE_Area": 492.755837 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364050.268799997866154, 256768.64919999986887 ], [ 364050.01349999755621, 256768.360599998384714 ], [ 364018.197999998927116, 256755.074400000274181 ], [ 364017.524099998176098, 256757.684900000691414 ], [ 364011.447499997913837, 256768.4070999994874 ], [ 364034.330600000917912, 256780.634199999272823 ], [ 364050.268799997866154, 256768.64919999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703011500", "MAP": "A9-60-T66", "PARCEL_NAM": "148-43", "ACRE": ".17", "LONGITUDE": -64.88090696, "LATITUDE": 18.33984755, "OBJECTID_1": 22836, "PARCEL_NO_": "105703011500", "Tax_Legal_": "ANNAS RETREAT 148-43 1 NEW QTR", "Name": "BROWNE, LEVI & EDRIS", "Address": "7158 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 23300, "Improved_V": 127000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 110.291477437, "SHAPE_Area": 747.68965559799994 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364106.94030000269413, 256768.338100001215935 ], [ 364090.319200001657009, 256742.070999998599291 ], [ 364076.700900003314018, 256742.613899998366833 ], [ 364071.631499998271465, 256748.206300001591444 ], [ 364069.155699998140335, 256750.668400000780821 ], [ 364069.190999999642372, 256750.719500001519918 ], [ 364089.115099996328354, 256778.324700001627207 ], [ 364106.94030000269413, 256768.338100001215935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703010200", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-265", "ACRE": "0.14", "LONGITUDE": -64.88182783000001, "LATITUDE": 18.33983503, "OBJECTID_1": 22827, "PARCEL_NO_": "105703010200", "Tax_Legal_": "ANNAS RETREAT 173-265 NEW QTR", "Name": "PARROTT, ELOUISE", "Address": "7225 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 105600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.568492683, "SHAPE_Area": 659.97918782 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364010.324799999594688, 256750.870999999344349 ], [ 363978.973899997770786, 256739.426399998366833 ], [ 363978.950599998235703, 256742.170499999076128 ], [ 363972.428099997341633, 256750.5608000010252 ], [ 363997.226000003516674, 256773.984099999070168 ], [ 364000.487199999392033, 256769.788899999111891 ], [ 364009.493299998342991, 256753.819499999284744 ], [ 364010.324799999594688, 256750.870999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703011200", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-269", "ACRE": "0.20", "LONGITUDE": -64.88135745, "LATITUDE": 18.33980961, "OBJECTID_1": 22833, "PARCEL_NO_": "105703011200", "Tax_Legal_": "ANNAS RETREAT 173-269 NEW QTR", "Name": "MEYERS, M. , C. , J. , S", "Address": "7229 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 27400, "Improved_V": 159100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 135.54282059100001, "SHAPE_Area": 975.74342212600004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364071.631499998271465, 256748.206300001591444 ], [ 364021.742700003087521, 256735.765700001269579 ], [ 364020.025700002908707, 256747.995099999010563 ], [ 364018.197999998927116, 256755.074400000274181 ], [ 364050.01349999755621, 256768.360599998384714 ], [ 364050.268799997866154, 256768.64919999986887 ], [ 364053.574299998581409, 256766.163499999791384 ], [ 364071.631499998271465, 256748.206300001591444 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703011600", "MAP": "A9-60-T66", "PARCEL_NAM": "148-42", "ACRE": ".18", "LONGITUDE": -64.88065811, "LATITUDE": 18.33977543, "OBJECTID_1": 22837, "PARCEL_NO_": "105703011600", "Tax_Legal_": "ANNAS RETREAT 148-42 1 NEW QTR", "Name": "WATTLEY, ORIS E & MAITLAND", "Address": "PO Box 8580", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 24700, "Improved_V": 140200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.769774439, "SHAPE_Area": 767.41515080399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364133.706799998879433, 256749.980999998748302 ], [ 364132.34179999679327, 256738.068900000303984 ], [ 364097.893899999558926, 256741.349599998444319 ], [ 364090.319200001657009, 256742.070999998599291 ], [ 364106.94030000269413, 256768.338100001215935 ], [ 364117.478100001811981, 256761.880499999970198 ], [ 364133.706799998879433, 256749.980999998748302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703010300", "MAP": "D9-3136-T85", "PARCEL_NAM": "173-264", "ACRE": "0.14", "LONGITUDE": -64.8817657, "LATITUDE": 18.339661, "OBJECTID_1": 22828, "PARCEL_NO_": "105703010300", "Tax_Legal_": "173-264 ANNAS RETREAT NEW QUARTER", "Name": "HAM, CALVIN & DOROTHY", "Address": "7224 Estate Tutu", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 17800, "Improved_V": 180200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.72435928, "SHAPE_Area": 623.81094072099995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364010.324799999594688, 256750.870999999344349 ], [ 364012.016599997878075, 256741.596700001507998 ], [ 364012.928999997675419, 256729.149700000882149 ], [ 364011.370300002396107, 256722.804099999368191 ], [ 363982.290899999439716, 256728.687800001353025 ], [ 363978.973899997770786, 256739.426399998366833 ], [ 364010.324799999594688, 256750.870999999344349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703011300", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-270", "ACRE": "0.26", "LONGITUDE": -64.88127036, "LATITUDE": 18.33964697, "OBJECTID_1": 22834, "PARCEL_NO_": "105703011300", "Tax_Legal_": "ANNAS RETREAT 173-270 NEW QTR", "Name": "JAMES, GERALDINE", "Address": "PO Box 9157", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 35600, "Improved_V": 119600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.760640529, "SHAPE_Area": 942.20707852400005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364062.10360000282526, 256723.734900001436472 ], [ 364060.212099999189377, 256721.288600001484156 ], [ 364020.959100000560284, 256723.312699999660254 ], [ 364021.810999996960163, 256727.744699999690056 ], [ 364021.742700003087521, 256735.765700001269579 ], [ 364071.631499998271465, 256748.206300001591444 ], [ 364076.700900003314018, 256742.613899998366833 ], [ 364062.10360000282526, 256723.734900001436472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703011900", "MAP": "A9-60-T66", "PARCEL_NAM": "148-39", "ACRE": ".16", "LONGITUDE": -64.88102677000001, "LATITUDE": 18.33951099, "OBJECTID_1": 22840, "PARCEL_NO_": "105703011900", "Tax_Legal_": "ANNAS RETREAT 148-39 NEW QTR", "Name": "CLARKE, LAUREL & CLAUDIUS", "Address": "PO Box 6724", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 21900, "Improved_V": 101500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.37991338400001, "SHAPE_Area": 652.31632126600005 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364089.710299998521805, 256708.457600001245737 ], [ 364080.09570000320673, 256701.201799999922514 ], [ 364060.668099999427795, 256720.828000001609325 ], [ 364060.212099999189377, 256721.288600001484156 ], [ 364062.10360000282526, 256723.734900001436472 ], [ 364076.700900003314018, 256742.613899998366833 ], [ 364077.153800003230572, 256741.696400001645088 ], [ 364092.924699999392033, 256709.750500001013279 ], [ 364089.710299998521805, 256708.457600001245737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703011800", "MAP": "A9-60-T66", "PARCEL_NAM": "148-40", "ACRE": ".15", "LONGITUDE": -64.88084763000001, "LATITUDE": 18.3395792, "OBJECTID_1": 22839, "PARCEL_NO_": "105703011800", "Tax_Legal_": "148-40 ANNAS RETREAT NO.1 NEW QTR", "Name": "SIMON, EVELYN (LIFE ESTATE)", "Address": "PO Box 9811", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 20500, "Improved_V": 161700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.921064884, "SHAPE_Area": 665.40662870300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364100.95549999922514, 256713.615899998694658 ], [ 364092.924699999392033, 256709.750500001013279 ], [ 364077.153800003230572, 256741.696400001645088 ], [ 364076.700900003314018, 256742.613899998366833 ], [ 364090.319200001657009, 256742.070999998599291 ], [ 364097.893899999558926, 256741.349599998444319 ], [ 364105.381700001657009, 256740.636500000953674 ], [ 364105.574000000953674, 256739.4070999994874 ], [ 364109.002400003373623, 256715.581599999219179 ], [ 364100.95549999922514, 256713.615899998694658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703011700", "MAP": "A9-60-T66", "PARCEL_NAM": "148-41", "ACRE": ".12", "LONGITUDE": -64.88063266, "LATITUDE": 18.33958134, "OBJECTID_1": 22838, "PARCEL_NO_": "105703011700", "Tax_Legal_": "ANNAS RETREAT 148-41 NEW QTR", "Name": "LAKE, TERRENCE W and CATHERINE Y. JACKSON", "Address": "PO Box 10666", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 16400, "Improved_V": 99000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 91.616286915100005, "SHAPE_Area": 527.365588312 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364125.11429999768734, 256717.402199998497963 ], [ 364109.002400003373623, 256715.581599999219179 ], [ 364105.574000000953674, 256739.4070999994874 ], [ 364105.381700001657009, 256740.636500000953674 ], [ 364132.34179999679327, 256738.068900000303984 ], [ 364132.205700002610683, 256736.880899999290705 ], [ 364129.916199997067451, 256721.663400001823902 ], [ 364125.11429999768734, 256717.402199998497963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703010400", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-263", "ACRE": "0.13", "LONGITUDE": -64.88179013, "LATITUDE": 18.33950094, "OBJECTID_1": 22829, "PARCEL_NO_": "105703010400", "Tax_Legal_": "ANNAS RETREAT 173-263 NEW QTR", "Name": "TURNBULL FARRINGTON, LEONA & OTHERS", "Address": "PO Box 11903", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8014903, "Country": "United States", "Land_Value": 17800, "Improved_V": 161600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 88.520034960499999, "SHAPE_Area": 425.68800795099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364011.370300002396107, 256722.804099999368191 ], [ 364009.021499998867512, 256714.552200000733137 ], [ 364003.46000000089407, 256704.796399999409914 ], [ 363979.146600000560284, 256719.162900000810623 ], [ 363983.126000002026558, 256725.317099999636412 ], [ 363982.290899999439716, 256728.687800001353025 ], [ 364011.370300002396107, 256722.804099999368191 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-262", "ACRE": "0.14", "LONGITUDE": -64.88187385000001, "LATITUDE": 18.33941001, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 78.670241933599996, "SHAPE_Area": 301.18157026 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364003.46000000089407, 256704.796399999409914 ], [ 363999.486000001430511, 256698.008900001645088 ], [ 363971.985100001096725, 256707.916299998760223 ], [ 363979.146600000560284, 256719.162900000810623 ], [ 364003.46000000089407, 256704.796399999409914 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703012000", "MAP": "A9-60-T66", "PARCEL_NAM": "148-38", "ACRE": ".13", "LONGITUDE": -64.88115125, "LATITUDE": 18.33936487, "OBJECTID_1": 22841, "PARCEL_NO_": "105703012000", "Tax_Legal_": "ANNAS RETREAT 148-38 NEW QTR", "Name": "SIMON, DENROY", "Address": "146-100 Annas Retreat", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 19300, "Improved_V": 93600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 98.360551406799999, "SHAPE_Area": 576.92796367899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364069.7179000005126, 256688.873399998992682 ], [ 364069.423799999058247, 256688.296999998390675 ], [ 364045.01630000025034, 256701.050999999046326 ], [ 364044.694399997591972, 256701.219200000166893 ], [ 364060.212099999189377, 256721.288600001484156 ], [ 364060.668099999427795, 256720.828000001609325 ], [ 364080.09570000320673, 256701.201799999922514 ], [ 364074.498199999332428, 256695.667500000447035 ], [ 364069.7179000005126, 256688.873399998992682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-261", "ACRE": "0.14", "LONGITUDE": -64.8819014, "LATITUDE": 18.33930117, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 82.335011040300003, "SHAPE_Area": 346.543433091 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363999.486000001430511, 256698.008900001645088 ], [ 363993.107400000095367, 256689.512899998575449 ], [ 363985.11259999871254, 256681.425900001078844 ], [ 363970.39580000191927, 256705.159099999815226 ], [ 363971.985100001096725, 256707.916299998760223 ], [ 363999.486000001430511, 256698.008900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-260", "ACRE": "0.14", "LONGITUDE": -64.88201068, "LATITUDE": 18.33921529, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.743424076300002, "SHAPE_Area": 375.13546072499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363985.11259999871254, 256681.425900001078844 ], [ 363978.705300003290176, 256676.307300001382828 ], [ 363967.470899999141693, 256669.882500000298023 ], [ 363965.624499998986721, 256697.309599999338388 ], [ 363970.39580000191927, 256705.159099999815226 ], [ 363985.11259999871254, 256681.425900001078844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703012100", "MAP": "A9-60-T66", "PARCEL_NAM": "148-37", "ACRE": ".14", "LONGITUDE": -64.88126011, "LATITUDE": 18.33921967, "OBJECTID_1": 22842, "PARCEL_NO_": "105703012100", "Tax_Legal_": "ANNAS RETREAT 148-37 NEW QTR", "Name": "ULYSSES (LIFE ESTATE), CHARLES & VERNOA", "Address": "PO Box 6322", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 19200, "Improved_V": 186200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 97.986880003500005, "SHAPE_Area": 570.15437266599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364069.423799999058247, 256688.296999998390675 ], [ 364060.200400002300739, 256670.219300001859665 ], [ 364033.450000002980232, 256686.676699999719858 ], [ 364044.694399997591972, 256701.219200000166893 ], [ 364045.01630000025034, 256701.050999999046326 ], [ 364069.423799999058247, 256688.296999998390675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105703079900", "MAP": "A9-102A-T68", "PARCEL_NAM": "173-259", "ACRE": "0.15", "LONGITUDE": -64.88222752, "LATITUDE": 18.33915753, "OBJECTID_1": 23260, "PARCEL_NO_": "105703079900", "Tax_Legal_": "REM 173-1THRU173-337 ANNAS RETREAT", "Name": "V.I HOUSING AUTHORITY", "Address": "9900 Oswald Harris Court", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8023100, "Country": "United States", "Land_Value": 386700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 123.429792537, "SHAPE_Area": 968.992663644 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 363967.470899999141693, 256669.882500000298023 ], [ 363957.829300001263618, 256665.79280000180006 ], [ 363948.979599997401237, 256663.398400001227856 ], [ 363936.89750000089407, 256661.821800000965595 ], [ 363931.80969999730587, 256691.12220000103116 ], [ 363965.624499998986721, 256697.309599999338388 ], [ 363967.470899999141693, 256669.882500000298023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303262100", "MAP": "F9-3704-T79", "PARCEL_NAM": "4-5", "ACRE": null, "LONGITUDE": -64.94451343, "LATITUDE": 18.33709124, "OBJECTID_1": 11193, "PARCEL_NO_": "105303262100", "Tax_Legal_": "HONDURAS 4-5 S S QTR", "Name": "RITTER, KIMBERLY", "Address": "PO Box 7312", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 45100, "Improved_V": 21100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.96924564099999, "SHAPE_Area": 1303.8208877500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357381.17059999704361, 256376.536100000143051 ], [ 357372.809199996292591, 256371.601100001484156 ], [ 357368.425499998033047, 256378.234700001776218 ], [ 357363.420999996364117, 256382.006099998950958 ], [ 357360.495099999010563, 256383.510899998247623 ], [ 357358.790799997746944, 256384.38740000128746 ], [ 357353.234499998390675, 256388.488400001078844 ], [ 357347.810599997639656, 256397.88120000064373 ], [ 357342.989100001752377, 256406.024000000208616 ], [ 357346.474399998784065, 256407.870000001043081 ], [ 357372.76519999653101, 256420.886300001293421 ], [ 357379.241300001740456, 256409.089299999177456 ], [ 357384.973600000143051, 256398.792599998414516 ], [ 357387.025100000202656, 256395.439399998635054 ], [ 357387.788000002503395, 256394.192400000989437 ], [ 357392.394000001251698, 256386.663800001144409 ], [ 357393.968900002539158, 256384.089699998497963 ], [ 357381.17059999704361, 256376.536100000143051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303260200", "MAP": "G9-1035-T68", "PARCEL_NAM": "4i", "ACRE": "0.11", "LONGITUDE": -64.94431287, "LATITUDE": 18.33681114, "OBJECTID_1": 11171, "PARCEL_NO_": "105303260200", "Tax_Legal_": "4I HONDURAS CROWN PRINCE QUARTER", "Name": "Marie E Turbe, Lorraine V Lynch, and Patricia L Cox", "Address": "3570 honduras", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8026457, "Country": "United States", "Land_Value": 74200, "Improved_V": 122300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 116.985811134, "SHAPE_Area": 827.84908394199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357381.097599998116493, 256342.614399999380112 ], [ 357377.940499998629093, 256341.438799999654293 ], [ 357377.262999996542931, 256345.383900001645088 ], [ 357376.945500001311302, 256348.558899998664856 ], [ 357372.500399999320507, 256371.4189000017941 ], [ 357372.809199996292591, 256371.601100001484156 ], [ 357381.17059999704361, 256376.536100000143051 ], [ 357393.968900002539158, 256384.089699998497963 ], [ 357397.2804000005126, 256373.984299998730421 ], [ 357399.731799997389317, 256370.204700000584126 ], [ 357400.798799999058247, 256367.155000001192093 ], [ 357405.048600003123283, 256355.008799999952316 ], [ 357389.19539999961853, 256346.804900001734495 ], [ 357381.097599998116493, 256342.614399999380112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204050100", "MAP": null, "PARCEL_NAM": "PORTION OF CROWN BAY", "ACRE": null, "LONGITUDE": -64.94464832, "LATITUDE": 18.33620928, "OBJECTID_1": 8641, "PARCEL_NO_": "105204050100", "Tax_Legal_": "POR OF SUBASE CROWN BAY FILL", "Name": "Virgin Islands Port Authority", "Address": "161 SUBBASE", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 1184600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 317.16300838400002, "SHAPE_Area": 2022.49742064 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357374.295999996364117, 256296.965599998831749 ], [ 357376.861599996685982, 256293.830200001597404 ], [ 357378.773000001907349, 256293.766800001263618 ], [ 357382.420900002121925, 256293.645799998193979 ], [ 357388.282600000500679, 256294.328400000929832 ], [ 357390.780699998140335, 256285.060699999332428 ], [ 357388.433700002729893, 256276.597800001502037 ], [ 357386.842600002884865, 256274.051600001752377 ], [ 357375.520199999213219, 256255.011700000613928 ], [ 357359.70269999653101, 256228.412900000810623 ], [ 357349.127999998629093, 256228.617400001734495 ], [ 357350.124499998986721, 256230.054699998348951 ], [ 357350.902000002563, 256233.4386 ], [ 357353.310199998319149, 256234.724899999797344 ], [ 357354.863399997353554, 256241.703699998557568 ], [ 357358.837499998509884, 256248.491200000047684 ], [ 357360.380000002682209, 256256.7364999987185 ], [ 357361.096400000154972, 256267.296999998390675 ], [ 357357.621200002729893, 256296.610599998384714 ], [ 357341.554300002753735, 256289.513000000268221 ], [ 357338.963100001215935, 256300.129700001329184 ], [ 357362.032700002193451, 256305.444200001657009 ], [ 357364.404200002551079, 256305.696299999952316 ], [ 357360.887500002980232, 256322.810899998992682 ], [ 357357.028099998831749, 256341.593199998140335 ], [ 357357.774300001561642, 256341.746399998664856 ], [ 357360.410199999809265, 256342.287599999457598 ], [ 357365.306699998676777, 256341.003100000321865 ], [ 357367.754399999976158, 256337.645599998533726 ], [ 357370.265000000596046, 256326.900400001555681 ], [ 357370.976099997758865, 256323.961300000548363 ], [ 357372.8108000010252, 256306.925200000405312 ], [ 357373.290299996733665, 256303.709899999201298 ], [ 357374.295999996364117, 256296.965599998831749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-4", "PARCEL_NO": "105303260300", "MAP": "D9-9128-T016", "PARCEL_NAM": "4-J & 8C", "ACRE": "0.17", "LONGITUDE": -64.94428302, "LATITUDE": 18.33655156, "OBJECTID_1": 11173, "PARCEL_NO_": "105303260300", "Tax_Legal_": "4J & 8C HONDURAS (CONS) KRONPRINDSENS QTR", "Name": "ADINA WILLIAMS FAMILY REVOCABLE TRUST", "Address": "3582 Honduras 5B", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43200, "Improved_V": 27900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 107.631428884, "SHAPE_Area": 697.83730873399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357378.218500003218651, 256323.96169999986887 ], [ 357377.940499998629093, 256341.438799999654293 ], [ 357381.097599998116493, 256342.614399999380112 ], [ 357389.19539999961853, 256346.804900001734495 ], [ 357405.048600003123283, 256355.008799999952316 ], [ 357407.170199997723103, 256348.945099998265505 ], [ 357408.962600000202656, 256327.850400000810623 ], [ 357408.974200002849102, 256326.490299999713898 ], [ 357392.514300003647804, 256325.056000001728535 ], [ 357387.978299997746944, 256324.660799998790026 ], [ 357385.571599997580051, 256324.488400001078844 ], [ 357378.218500003218651, 256323.96169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "W-2", "PARCEL_NO": "105204050186", "MAP": "A9-556-T000", "PARCEL_NAM": "15-1", "ACRE": "0.16", "LONGITUDE": -64.94510227000001, "LATITUDE": 18.3356751, "OBJECTID_1": 8708, "PARCEL_NO_": "105204050186", "Tax_Legal_": "CROWN BAY FILL #15 SOUTHSIDE QTR.", "Name": "V. I. MARITIME SERVICE, INC", "Address": "PO Box 7667", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 978000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 137.10679896799999, "SHAPE_Area": 685.59442571800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357353.310199998319149, 256234.724899999797344 ], [ 357341.554300002753735, 256289.513000000268221 ], [ 357357.621200002729893, 256296.610599998384714 ], [ 357361.096400000154972, 256267.296999998390675 ], [ 357360.380000002682209, 256256.7364999987185 ], [ 357358.837499998509884, 256248.491200000047684 ], [ 357354.863399997353554, 256241.703699998557568 ], [ 357353.310199998319149, 256234.724899999797344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105303262700", "MAP": null, "PARCEL_NAM": "101 [TRACT F]", "ACRE": null, "LONGITUDE": -64.94485702, "LATITUDE": 18.33686305, "OBJECTID_1": 11199, "PARCEL_NO_": "105303262700", "Tax_Legal_": "101 CROWN BAY FILL(TRACT F) No.6 SOUTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 116900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 339.87998675, "SHAPE_Area": 3412.9567565699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357377.262999996542931, 256345.383900001645088 ], [ 357377.940499998629093, 256341.438799999654293 ], [ 357378.218500003218651, 256323.96169999986887 ], [ 357377.286399997770786, 256323.96169999986887 ], [ 357375.59009999781847, 256323.961599998176098 ], [ 357378.212600000202656, 256300.389400001615286 ], [ 357378.773000001907349, 256293.766800001263618 ], [ 357376.861599996685982, 256293.830200001597404 ], [ 357374.295999996364117, 256296.965599998831749 ], [ 357372.8108000010252, 256306.925200000405312 ], [ 357370.976099997758865, 256323.961300000548363 ], [ 357370.265000000596046, 256326.900400001555681 ], [ 357367.754399999976158, 256337.645599998533726 ], [ 357365.306699998676777, 256341.003100000321865 ], [ 357360.410199999809265, 256342.287599999457598 ], [ 357357.774300001561642, 256341.746399998664856 ], [ 357357.028099998831749, 256341.593199998140335 ], [ 357330.909800000488758, 256336.230500001460314 ], [ 357330.663999997079372, 256337.342099998146296 ], [ 357316.386699996888638, 256404.1418999992311 ], [ 357313.876000002026558, 256414.887099999934435 ], [ 357337.217699997127056, 256419.933299999684095 ], [ 357342.042999997735023, 256421.450399998575449 ], [ 357340.799099996685982, 256416.13740000128746 ], [ 357341.857400000095367, 256407.935300000011921 ], [ 357347.810599997639656, 256397.88120000064373 ], [ 357353.234499998390675, 256388.488400001078844 ], [ 357358.790799997746944, 256384.38740000128746 ], [ 357360.495099999010563, 256383.510899998247623 ], [ 357363.420999996364117, 256382.006099998950958 ], [ 357368.425499998033047, 256378.234700001776218 ], [ 357372.809199996292591, 256371.601100001484156 ], [ 357372.500399999320507, 256371.4189000017941 ], [ 357376.945500001311302, 256348.558899998664856 ], [ 357377.262999996542931, 256345.383900001645088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011600", "MAP": "D9-9394-T020", "PARCEL_NAM": "22B-2", "ACRE": "0.46", "LONGITUDE": -64.96667466, "LATITUDE": 18.35603909, "OBJECTID_1": 2661, "PARCEL_NO_": "102604011600", "Tax_Legal_": "PAR 22B REM DOROTHEA", "Name": "REYNALD A CHARLES", "Address": "PO Box 305012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035012, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 140.82090256699999, "SHAPE_Area": 1148.9054207199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355010.354000002145767, 258414.813499998301268 ], [ 354994.995899997651577, 258374.910300001502037 ], [ 354965.363600000739098, 258382.511199999600649 ], [ 354987.002999998629093, 258420.244899999350309 ], [ 355010.354000002145767, 258414.813499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102604011700", "MAP": "D9-9394-T020", "PARCEL_NAM": "22A-1", "ACRE": "0.80", "LONGITUDE": -64.966206, "LATITUDE": 18.35593903, "OBJECTID_1": 2662, "PARCEL_NO_": "102604011700", "Tax_Legal_": "PAR 22 A REM DOROTHEA 7 LITTLE NORTHSIDE QTR", "Name": "R.C. LAND CORP", "Address": "PO Box 305012", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 8035012, "Country": "United States", "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.73474923500001, "SHAPE_Area": 2599.4892949800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355072.376199997961521, 258400.387299999594688 ], [ 355069.07769999653101, 258387.1266999989748 ], [ 355063.60980000346899, 258366.394799999892712 ], [ 355020.031099997460842, 258370.471099998801947 ], [ 354994.995899997651577, 258374.910300001502037 ], [ 355010.354000002145767, 258414.813499998301268 ], [ 355072.376199997961521, 258400.387299999594688 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103101023700", "MAP": "D9-5556-T93", "PARCEL_NAM": "23E-12A", "ACRE": "0.07", "LONGITUDE": -64.89405751, "LATITUDE": 18.3568026, "OBJECTID_1": 6401, "PARCEL_NO_": "103101023700", "Tax_Legal_": "23E-12 REMAINDER MANDAHL No.1 GREAT NORTHSIDE QTR.", "Name": "BRETT, REID T. & DONNA M", "Address": "PO Box 308535", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 37500, "Improved_V": 284000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 85.848769507200004, "SHAPE_Area": 412.56400426099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362691.474600002169609, 258600.6554000005126 ], [ 362711.327500000596046, 258612.737799998372793 ], [ 362720.231499999761581, 258606.296599999070168 ], [ 362718.06139999628067, 258603.406199999153614 ], [ 362701.308600001037121, 258582.159699998795986 ], [ 362691.474600002169609, 258600.6554000005126 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704017700", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85412099, "LATITUDE": 18.32044234, "OBJECTID_1": 39886, "PARCEL_NO_": "107704017700", "Tax_Legal_": "2Y-2-4 NAZARETH RED HOOK QTR", "Name": "WILTSHIRE, STAPHANUS & HANNAH", "Address": "6266 Estate Nazareth", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 61000, "Improved_V": 142800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.54145987000001, "SHAPE_Area": 1853.63941729 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366956.813799999654293, 254631.729699999094009 ], [ 366938.943999998271465, 254595.315699998289347 ], [ 366927.505300000309944, 254604.493900001049042 ], [ 366907.223399996757507, 254618.893300000578165 ], [ 366946.35869999974966, 254663.121100001037121 ], [ 366965.569700002670288, 254649.571800000965595 ], [ 366956.813799999654293, 254631.729699999094009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704017500", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85394475, "LATITUDE": 18.32028554, "OBJECTID_1": 39884, "PARCEL_NO_": "107704017500", "Tax_Legal_": "2Y2-3 NAZARETH RED HOOK QTR", "Name": "SHOURNAGH MCWEENEY REVOCABLE TRUST", "Address": "6936 Vessup Ln", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 42600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 163.7812558, "SHAPE_Area": 1298.51599154 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366971.825800001621246, 254614.903499998152256 ], [ 366967.19990000128746, 254583.076099999248981 ], [ 366959.12049999833107, 254584.909800000488758 ], [ 366950.218699999153614, 254588.636599998921156 ], [ 366941.307899996638298, 254593.4189000017941 ], [ 366938.943999998271465, 254595.315699998289347 ], [ 366956.813799999654293, 254631.729699999094009 ], [ 366965.569700002670288, 254649.571800000965595 ], [ 366971.507299996912479, 254645.38399999961257 ], [ 366975.769299998879433, 254642.035799998790026 ], [ 366971.825800001621246, 254614.903499998152256 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704017600", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.85373339, "LATITUDE": 18.32014875, "OBJECTID_1": 39885, "PARCEL_NO_": "107704017600", "Tax_Legal_": "2Y2-2 NAZARETH RED HOOK QTR", "Name": "SCHULER, CARMEN M", "Address": "PO Box 9692", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 43800, "Improved_V": 212500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 161.90078109300001, "SHAPE_Area": 1356.47920806 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366999.090999998152256, 254590.6385000012815 ], [ 367000.078299999237061, 254582.147999998182058 ], [ 366988.979299999773502, 254582.198899999260902 ], [ 366967.19990000128746, 254583.076099999248981 ], [ 366971.825800001621246, 254614.903499998152256 ], [ 366975.769299998879433, 254642.035799998790026 ], [ 366986.931500002741814, 254633.266800001263618 ], [ 366994.546700000762939, 254627.275400001555681 ], [ 366994.328500002622604, 254626.754200000315905 ], [ 366998.794399999082088, 254592.888099998235703 ], [ 366999.090999998152256, 254590.6385000012815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802024800", "MAP": "D9-6360-T97", "PARCEL_NAM": "4-2-23-1", "ACRE": ".521", "LONGITUDE": -65.01667516000001, "LATITUDE": 18.34716597, "OBJECTID_1": 7309, "PARCEL_NO_": "104802024800", "Tax_Legal_": "4-2-23-1 ESTATE FORTUNA NO.8 WESTEND QTR", "Name": "FREEMAN, MYRTLE", "Address": "PO Box 10418", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 44400, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.36931886600001, "SHAPE_Area": 1887.0492538399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349742.021899998188019, 257462.21169999986887 ], [ 349790.591300003230572, 257440.233300000429153 ], [ 349791.485699996352196, 257429.897100001573563 ], [ 349781.754199996590614, 257436.361299999058247 ], [ 349750.17849999666214, 257451.301600001752377 ], [ 349741.648800000548363, 257454.312600001692772 ], [ 349727.944700002670288, 257434.948100000619888 ], [ 349727.8800999969244, 257434.856800001114607 ], [ 349695.572300001978874, 257424.679099999368191 ], [ 349691.346500001847744, 257447.442600000649691 ], [ 349716.927299998700619, 257473.616500001400709 ], [ 349742.021899998188019, 257462.21169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802024900", "MAP": "D9-6360-T97", "PARCEL_NAM": "4-2-23-2", "ACRE": ".520", "LONGITUDE": -65.01642225000001, "LATITUDE": 18.34699429, "OBJECTID_1": 7310, "PARCEL_NO_": "104802024900", "Tax_Legal_": "4-2-23-2 ESTATE FORTUNA No.8 WESTEND QUARTER", "Name": "HAWKINS, KENT L. & ROBIN R. BERRY", "Address": "6711 Estate Fortuna", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 44400, "Improved_V": 46300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.813323895, "SHAPE_Area": 1932.2119075099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349781.754199996590614, 257436.361299999058247 ], [ 349791.485699996352196, 257429.897100001573563 ], [ 349792.354900002479553, 257422.515900000929832 ], [ 349780.095799997448921, 257429.505100000649691 ], [ 349773.174900002777576, 257433.450800001621246 ], [ 349769.335900001227856, 257435.006499998271465 ], [ 349752.187399998307228, 257416.114000000059605 ], [ 349751.675999999046326, 257415.550700001418591 ], [ 349698.122500002384186, 257409.290100000798702 ], [ 349695.572300001978874, 257424.679099999368191 ], [ 349727.8800999969244, 257434.856800001114607 ], [ 349727.944700002670288, 257434.948100000619888 ], [ 349741.648800000548363, 257454.312600001692772 ], [ 349750.17849999666214, 257451.301600001752377 ], [ 349781.754199996590614, 257436.361299999058247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802025000", "MAP": "D9-6360-T97", "PARCEL_NAM": "4-2-23-3", "ACRE": ".51", "LONGITUDE": -65.0162388, "LATITUDE": 18.3467769, "OBJECTID_1": 7311, "PARCEL_NO_": "104802025000", "Tax_Legal_": "4-2-23-3 ESTATE FORTUNA No.8 WESTEND QUARTER", "Name": "OTTLEY, MELVIN", "Address": "1320 Calvin Dr", "City": "Washington", "State": "Illinois", "Zip": 61571, "Country": "United States", "Land_Value": 54900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.58438381799999, "SHAPE_Area": 2134.4289688600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349797.465999998152256, 257391.043800000101328 ], [ 349756.764499999582767, 257399.836399998515844 ], [ 349700.661899998784065, 257395.167599998414516 ], [ 349698.122500002384186, 257409.290100000798702 ], [ 349751.675999999046326, 257415.550700001418591 ], [ 349752.187399998307228, 257416.114000000059605 ], [ 349769.335900001227856, 257435.006499998271465 ], [ 349773.174900002777576, 257433.450800001621246 ], [ 349780.095799997448921, 257429.505100000649691 ], [ 349792.354900002479553, 257422.515900000929832 ], [ 349797.465999998152256, 257391.043800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023600", "MAP": "D9-6431-T98", "PARCEL_NAM": "4-2-23 REM", "ACRE": "0.50", "LONGITUDE": -65.01624503, "LATITUDE": 18.34638975, "OBJECTID_1": 7299, "PARCEL_NO_": "104802023600", "Tax_Legal_": "4-2-23-4,4-2-23REM,4-2-24REM. &4-7-4 FORTUNA No.8 WESTEND QTR.", "Name": "DE LUGO, RONALD", "Address": "1746 Deerhill Trl", "City": "Topanga", "State": "California", "Zip": 90290, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.170438553, "SHAPE_Area": 1822.8852521199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349799.519299998879433, 257338.770399998873472 ], [ 349795.502099998295307, 257337.048799999058247 ], [ 349789.04619999974966, 257337.629200000315905 ], [ 349746.939999997615814, 257358.182799998670816 ], [ 349704.023800000548363, 257379.151999998837709 ], [ 349702.398800000548363, 257386.893399998545647 ], [ 349755.047100000083447, 257374.104299999773502 ], [ 349766.79169999808073, 257371.251400001347065 ], [ 349801.974600002169609, 257359.746700000017881 ], [ 349803.4628000035882, 257349.146299999207258 ], [ 349803.509499996900558, 257343.65819999948144 ], [ 349801.914899997413158, 257341.534200001507998 ], [ 349799.519299998879433, 257338.770399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702035900", "MAP": "D9-5389-T92", "PARCEL_NAM": "3E-4-1", "ACRE": null, "LONGITUDE": -64.94982415, "LATITUDE": 18.35729244, "OBJECTID_1": 3091, "PARCEL_NO_": "102702035900", "Tax_Legal_": "ST PETER 3E-4-1 LITTLE NORTHSIDE", "Name": "STANTON, GREG & DONNA MARIE", "Address": "PO Box 305617", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 109200, "Improved_V": 403200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.44140214800001, "SHAPE_Area": 1937.6478872 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356785.918999999761581, 258590.975299999117851 ], [ 356782.494300000369549, 258585.757199998944998 ], [ 356764.795900002121925, 258593.114900000393391 ], [ 356765.654399998486042, 258607.280099999159575 ], [ 356766.475000001490116, 258613.496800001710653 ], [ 356768.020499996840954, 258625.204999998211861 ], [ 356769.97410000115633, 258640.005699999630451 ], [ 356769.831399999558926, 258649.378400001674891 ], [ 356779.154399998486042, 258649.033900000154972 ], [ 356802.78999999910593, 258648.160700000822544 ], [ 356802.973600000143051, 258647.241900000721216 ], [ 356803.93639999628067, 258628.88459999859333 ], [ 356805.574199996888638, 258625.942699998617172 ], [ 356808.822800002992153, 258623.225099999457598 ], [ 356790.492700003087521, 258597.415399998426437 ], [ 356785.918999999761581, 258590.975299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702036300", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-4", "ACRE": ".50", "LONGITUDE": -64.95035759, "LATITUDE": 18.35719166, "OBJECTID_1": 3094, "PARCEL_NO_": "102702036300", "Tax_Legal_": "3B-4 ST.PETER NO.2 LT NORTHSIDE QTR", "Name": "ERDEM, BRENDA ANN BRYAN", "Address": "9160 Estate Thomas", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 62600, "Improved_V": 191400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.718187398, "SHAPE_Area": 2045.93970924 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356765.654399998486042, 258607.280099999159575 ], [ 356728.578100003302097, 258577.183200001716614 ], [ 356722.443599998950958, 258583.642900001257658 ], [ 356704.272200003266335, 258612.116200000047684 ], [ 356693.073100000619888, 258623.874600000679493 ], [ 356768.020499996840954, 258625.204999998211861 ], [ 356766.475000001490116, 258613.496800001710653 ], [ 356765.654399998486042, 258607.280099999159575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102702030100", "MAP": "D9-8138-T008", "PARCEL_NAM": null, "ACRE": ".16", "LONGITUDE": -64.95061235, "LATITUDE": 18.35709232, "OBJECTID_1": 3056, "PARCEL_NO_": "102702030100", "Tax_Legal_": "3B REM (R.O.W.) ST.PETER NO.2 LT NORTHSIDE QTR", "Name": "JOEL BERRY BRYAN REVOCABLE TRUST", "Address": "PO Box 11503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.47017843500001, "SHAPE_Area": 526.50848642599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356722.443599998950958, 258583.642900001257658 ], [ 356728.578100003302097, 258577.183200001716614 ], [ 356724.262000001966953, 258572.375300001353025 ], [ 356717.006499998271465, 258578.635000001639128 ], [ 356697.118000000715256, 258606.39299999922514 ], [ 356680.606499999761581, 258623.653299998492002 ], [ 356693.073100000619888, 258623.874600000679493 ], [ 356704.272200003266335, 258612.116200000047684 ], [ 356722.443599998950958, 258583.642900001257658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801051300", "MAP": "D9-5748-T94", "PARCEL_NAM": "3E-5 REM", "ACRE": null, "LONGITUDE": -64.94910799, "LATITUDE": 18.3569466, "OBJECTID_1": 3927, "PARCEL_NO_": "102801051300", "Tax_Legal_": "ST PETER 3E-5 REMAINDER LITTLE NORTHSIDE", "Name": "AUBAIN, DAVID L. & OTHERS", "Address": "7782 Est St Peters Mount Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 97200, "Improved_V": 278700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.11231549799999, "SHAPE_Area": 2051.8900531700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356886.505199998617172, 258572.318799998611212 ], [ 356889.196199998259544, 258559.499299999326468 ], [ 356876.237800002098083, 258561.812600001692772 ], [ 356849.071400001645088, 258566.215500000864267 ], [ 356842.532799996435642, 258567.779100000858307 ], [ 356842.577600002288818, 258572.519799999892712 ], [ 356842.864100001752377, 258602.816500000655651 ], [ 356841.9408999979496, 258616.530000001192093 ], [ 356847.579700000584126, 258617.209499999880791 ], [ 356856.407799996435642, 258622.136900000274181 ], [ 356859.631300002336502, 258622.374299999326468 ], [ 356861.272699996829033, 258619.010299999266863 ], [ 356885.710199996829033, 258590.0793999992311 ], [ 356884.153300002217293, 258583.522700000554323 ], [ 356886.505199998617172, 258572.318799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803031100", "MAP": "C9-252-T80", "PARCEL_NAM": "3A-2", "ACRE": "0.54", "LONGITUDE": -64.94851306, "LATITUDE": 18.35603775, "OBJECTID_1": 4369, "PARCEL_NO_": "102803031100", "Tax_Legal_": "3A-2 ST PETER No. 2 LITTLE NORTHSIDE QTR", "Name": "MADELINE STEVENS WEBSTER REVOCABLE LIVING TRUST", "Address": "PO Box 303223", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 80800, "Improved_V": 649600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 181.23445689299999, "SHAPE_Area": 1922.4219087199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356921.613499999046326, 258459.603399999439716 ], [ 356914.785099998116493, 258457.890599999576807 ], [ 356914.524599999189377, 258457.985300000756979 ], [ 356913.402800001204014, 258463.016600001603365 ], [ 356904.177299998700619, 258504.73759999871254 ], [ 356953.26349999755621, 258516.749499998986721 ], [ 356953.288699999451637, 258513.794399999082088 ], [ 356943.972499996423721, 258471.499499998986721 ], [ 356944.006700001657009, 258467.489000000059605 ], [ 356943.830200001597404, 258465.176199998706579 ], [ 356921.613499999046326, 258459.603399999439716 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030900", "MAP": "C9-252-T80", "PARCEL_NAM": "3A-1", "ACRE": "0.15", "LONGITUDE": -64.94846925, "LATITUDE": 18.35576789, "OBJECTID_1": 4367, "PARCEL_NO_": "102803030900", "Tax_Legal_": "ST PETER 3A-1 11F SOLBERG", "Name": "LEONARD, BRIAN & GABRIELLE", "Address": "PO Box 11517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 105.448464288, "SHAPE_Area": 454.517373195 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356943.281300000846386, 258457.983800001442432 ], [ 356945.772200003266335, 258449.560499999672174 ], [ 356949.054999999701977, 258442.832299999892712 ], [ 356953.12610000371933, 258438.221599999815226 ], [ 356915.727700002491474, 258452.589000001549721 ], [ 356914.524599999189377, 258457.985300000756979 ], [ 356914.785099998116493, 258457.890599999576807 ], [ 356921.613499999046326, 258459.603399999439716 ], [ 356943.830200001597404, 258465.176199998706579 ], [ 356943.281300000846386, 258457.983800001442432 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030600", "MAP": "C9-252-T80", "PARCEL_NAM": "3A-10", "ACRE": "0.47", "LONGITUDE": -64.94783093, "LATITUDE": 18.35560729, "OBJECTID_1": 4364, "PARCEL_NO_": "102803030600", "Tax_Legal_": "ST PETER 3A-10 & 11-M SOLBERG LT. NORTHSIDE QTR.", "Name": "JOHNSON, NATHALIE G. & WILLIAM E.", "Address": "9746 NW Sunrise Ln", "City": "Portland", "State": "Oregon", "Zip": 97229, "Country": "United States", "Land_Value": 106100, "Improved_V": 559000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 184.84731903400001, "SHAPE_Area": 2103.4591904099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357031.879100002348423, 258442.407699998468161 ], [ 357008.904899999499321, 258411.245400000363588 ], [ 357006.062200002372265, 258412.334199998527765 ], [ 356986.497900001704693, 258419.8277000002563 ], [ 356984.721500001847744, 258420.959399998188019 ], [ 356966.862199999392033, 258434.956500001251698 ], [ 356962.76410000026226, 258442.733399998396635 ], [ 356959.527999997138977, 258443.973499998450279 ], [ 356958.74549999833107, 258444.750500001013279 ], [ 356999.687100000679493, 258463.976799998432398 ], [ 357002.255999997258186, 258462.253199998289347 ], [ 357030.676100000739098, 258443.185300000011921 ], [ 357031.879100002348423, 258442.407699998468161 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204063000", "MAP": "F9-2717-T70", "PARCEL_NAM": "78-3", "ACRE": "0.16", "LONGITUDE": -64.9548681, "LATITUDE": 18.33761554, "OBJECTID_1": 8887, "PARCEL_NO_": "105204063000", "Tax_Legal_": "78-1,2&3 CONTANT 7A SOUTHSIDE QTR", "Name": "ELAINE CO. INC.", "Address": "PO Box 560", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 330000, "Improved_V": 2463000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 132.63554561000001, "SHAPE_Area": 576.8972196 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356313.010300002992153, 256433.926600001752377 ], [ 356313.063900001347065, 256433.184999998658895 ], [ 356284.771999999880791, 256435.727899998426437 ], [ 356258.141500003635883, 256438.121500000357628 ], [ 356258.107299998402596, 256442.131999999284744 ], [ 356257.202100001275539, 256453.7347999997437 ], [ 356274.168799996376038, 256449.862900000065565 ], [ 356282.258900001645088, 256446.762699998915195 ], [ 356306.504000000655651, 256440.417199999094009 ], [ 356308.928400002419949, 256439.803800001740456 ], [ 356311.361699998378754, 256438.134899999946356 ], [ 356313.010300002992153, 256433.926600001752377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204063000", "MAP": "F9-2717-T70", "PARCEL_NAM": "78-1", "ACRE": "0.18", "LONGITUDE": -64.95488556, "LATITUDE": 18.33743547, "OBJECTID_1": 8887, "PARCEL_NO_": "105204063000", "Tax_Legal_": "78-1,2&3 CONTANT 7A SOUTHSIDE QTR", "Name": "ELAINE CO. INC.", "Address": "PO Box 560", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 330000, "Improved_V": 2463000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 115.379778845, "SHAPE_Area": 809.05525180799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356285.0050999969244, 256408.366099998354912 ], [ 356285.04110000282526, 256404.144600000232458 ], [ 356260.839100003242493, 256405.424100000411272 ], [ 356260.803199999034405, 256409.645700000226498 ], [ 356258.141500003635883, 256438.121500000357628 ], [ 356284.771999999880791, 256435.727899998426437 ], [ 356285.0050999969244, 256408.366099998354912 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "C", "PARCEL_NO": "105204063000", "MAP": "F9-2717-T70", "PARCEL_NAM": "78-2", "ACRE": "0.18", "LONGITUDE": -64.95463147, "LATITUDE": 18.33741914, "OBJECTID_1": 8887, "PARCEL_NO_": "105204063000", "Tax_Legal_": "78-1,2&3 CONTANT 7A SOUTHSIDE QTR", "Name": "ELAINE CO. INC.", "Address": "PO Box 560", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 330000, "Improved_V": 2463000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 118.071443505, "SHAPE_Area": 878.48526852299995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356313.063900001347065, 256433.184999998658895 ], [ 356313.924500003457069, 256421.268399998545647 ], [ 356312.4341000020504, 256406.901900000870228 ], [ 356312.470100000500679, 256402.680300001055002 ], [ 356285.04110000282526, 256404.144600000232458 ], [ 356285.0050999969244, 256408.366099998354912 ], [ 356284.771999999880791, 256435.727899998426437 ], [ 356313.063900001347065, 256433.184999998658895 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050118", "MAP": "A9-105-T68 comp.", "PARCEL_NAM": "73", "ACRE": "3.00", "LONGITUDE": -64.95561213000001, "LATITUDE": 18.33545313, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 439.623564192, "SHAPE_Area": 11421.853889599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356114.886100001633167, 256216.145199999213219 ], [ 356116.270400002598763, 256242.965399999171495 ], [ 356116.941799998283386, 256258.80290000140667 ], [ 356191.176500000059605, 256253.0777000002563 ], [ 356210.542400002479553, 256251.547499999403954 ], [ 356256.005199998617172, 256215.6114999987185 ], [ 356273.121200002729893, 256194.219999998807907 ], [ 356266.967399999499321, 256159.339200001209974 ], [ 356250.1300999969244, 256148.013399999588728 ], [ 356242.89130000025034, 256145.843199998140335 ], [ 356200.09740000218153, 256152.459100000560284 ], [ 356152.194099999964237, 256190.90819999948144 ], [ 356154.586099997162819, 256194.094200000166893 ], [ 356147.273500002920628, 256200.578299999237061 ], [ 356114.886100001633167, 256216.145199999213219 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050110", "MAP": "B9-192-T68", "PARCEL_NAM": "69", "ACRE": ".72", "LONGITUDE": -64.95696537000001, "LATITUDE": 18.33567958, "OBJECTID_1": 8647, "PARCEL_NO_": "105204050110", "Tax_Legal_": "KRUM BAY 69 SOUTHSIDE QTR", "Name": "STERNBERG, JACQUES", "Address": "PO Box 8238", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 406800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 222.678687408, "SHAPE_Area": 2677.1049672 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356097.098700001835823, 256221.699200000613928 ], [ 356096.312200002372265, 256219.370700001716614 ], [ 356082.588699996471405, 256221.15819999948144 ], [ 356071.314699999988079, 256219.377199999988079 ], [ 356060.07490000128746, 256213.585700001567602 ], [ 356052.877400003373623, 256206.560699999332428 ], [ 356014.147399999201298, 256209.410100001841784 ], [ 356017.223399996757507, 256226.956000000238419 ], [ 356020.364200003445148, 256236.903099998831749 ], [ 356025.949000000953674, 256243.914900001138449 ], [ 356029.953599996864796, 256247.114100001752377 ], [ 356036.375299997627735, 256250.544199999421835 ], [ 356096.902699999511242, 256244.706700000911951 ], [ 356097.098700001835823, 256221.699200000613928 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050181", "MAP": "D9-5675-T94", "PARCEL_NAM": "179", "ACRE": "1.20", "LONGITUDE": -64.95742709, "LATITUDE": 18.33438466, "OBJECTID_1": 8703, "PARCEL_NO_": "105204050181", "Tax_Legal_": "SUB BASE 179 SOUTH SIDE QTR.", "Name": "VICTORS NEW HIDEOUT", "Address": "PO Box 308850", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 263600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 365.26351583000002, "SHAPE_Area": 5310.9913868399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356037.46679999679327, 256122.419300001114607 ], [ 356039.467799998819828, 256092.465199999511242 ], [ 356030.252599999308586, 256057.475299999117851 ], [ 356009.743600003421307, 256052.486600000411272 ], [ 356005.725000001490116, 256033.986999999731779 ], [ 355992.906900003552437, 256034.125599998980761 ], [ 355984.869599997997284, 256044.172200001776218 ], [ 355986.219400003552437, 256054.97069999948144 ], [ 355986.809600003063679, 256059.692499998956919 ], [ 355960.112999998033047, 256115.664500001817942 ], [ 355972.259800001978874, 256109.642200000584126 ], [ 355995.704000003635883, 256102.656899999827147 ], [ 355999.543200001120567, 256125.275299999862909 ], [ 356004.915799997746944, 256157.194400001317263 ], [ 356035.586300000548363, 256153.856899999082088 ], [ 356035.625799998641014, 256149.213100001215935 ], [ 356037.46679999679327, 256122.419300001114607 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050152", "MAP": "G9-1559-T70", "PARCEL_NAM": "122", "ACRE": "0.84", "LONGITUDE": -64.95618329, "LATITUDE": 18.33418306, "OBJECTID_1": 8677, "PARCEL_NO_": "105204050152", "Tax_Legal_": "SUB BASE 122 S S QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 215200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 395.78534953299999, "SHAPE_Area": 3932.4604637299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356140.044699996709824, 256102.571699999272823 ], [ 356190.748199999332428, 256019.3935999982059 ], [ 356173.3496999964118, 256017.455200001597404 ], [ 356130.506099998950958, 256009.132500000298023 ], [ 356123.91950000077486, 256033.832499999552965 ], [ 356123.493699997663498, 256035.429099999368191 ], [ 356131.730899997055531, 256037.275699999183416 ], [ 356142.997699998319149, 256039.901099998503923 ], [ 356144.362199999392033, 256069.043200001120567 ], [ 356134.664899997413158, 256071.496899999678135 ], [ 356112.136699996888638, 256065.613000001758337 ], [ 356101.748099997639656, 256054.551100000739098 ], [ 356109.082299999892712, 256045.534099999815226 ], [ 356100.241599999368191, 256042.084300000220537 ], [ 356089.622900001704693, 256058.040500000119209 ], [ 356100.709799997508526, 256081.773699998855591 ], [ 356103.083800002932549, 256087.07039999961853 ], [ 356140.044699996709824, 256102.571699999272823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "A3-40-T39 / A3-97-T66", "PARCEL_NAM": "REM of 35 / Tract 1", "ACRE": null, "LONGITUDE": -64.95431036, "LATITUDE": 18.33389445, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 360.692981772, "SHAPE_Area": 1907.7176092 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356348.941899999976158, 256064.311900001019239 ], [ 356347.737099997699261, 256043.889899998903275 ], [ 356388.764899998903275, 256026.199799999594688 ], [ 356381.854999996721745, 256019.691199999302626 ], [ 356369.8125, 256013.470899999141693 ], [ 356360.152900002896786, 256011.491999998688698 ], [ 356348.061800003051758, 256010.970899999141693 ], [ 356340.797799997031689, 256011.755800001323223 ], [ 356334.33110000193119, 256013.602699998766184 ], [ 356347.196199998259544, 256017.929900001734495 ], [ 356354.417000003159046, 256022.210799999535084 ], [ 356347.865800000727177, 256033.978500001132488 ], [ 356284.190499998629093, 256030.713100001215935 ], [ 356279.527099996805191, 256029.955800000578165 ], [ 356282.523999996483326, 256037.032299999147654 ], [ 356282.505999997258186, 256039.14299999922514 ], [ 356298.46679999679327, 256058.694299999624491 ], [ 356296.125200003385544, 256049.598099999129772 ], [ 356292.943099997937679, 256044.505800001323223 ], [ 356325.136200003325939, 256051.735399998724461 ], [ 356326.80460000038147, 256045.205099999904633 ], [ 356342.929099999368191, 256045.548200000077486 ], [ 356341.231899999082088, 256055.455699998885393 ], [ 356344.450000002980232, 256056.326400000602007 ], [ 356342.783399999141693, 256062.645599998533726 ], [ 356348.941899999976158, 256064.311900001019239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204070100", "MAP": "D3-357-T80", "PARCEL_NAM": "8", "ACRE": null, "LONGITUDE": -64.95487805, "LATITUDE": 18.33373503, "OBJECTID_1": 8927, "PARCEL_NO_": "105204070100", "Tax_Legal_": "8 CROWN BAY No6 Southside Quarter", "Name": "VIRGIN ISLANDS GOVERNMENT", "Address": "TRACT", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 63300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 299.36861572700002, "SHAPE_Area": 2862.49546422 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356219.246200002729893, 255997.4831000007689 ], [ 356218.032300002872944, 256008.408700000494719 ], [ 356229.878100000321865, 256021.892900001257658 ], [ 356284.190499998629093, 256030.713100001215935 ], [ 356347.865800000727177, 256033.978500001132488 ], [ 356354.417000003159046, 256022.210799999535084 ], [ 356347.196199998259544, 256017.929900001734495 ], [ 356334.33110000193119, 256013.602699998766184 ], [ 356219.246200002729893, 255997.4831000007689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050144", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95851205, "LATITUDE": 18.33314303, "OBJECTID_1": 8669, "PARCEL_NO_": "105204050144", "Tax_Legal_": "127 SUBMARINE BASE SOUTHSIDE QTR.", "Name": "INTERIOR WOOD WORK C/O", "Address": "9978-P Blyden", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 120600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 75.121448323500005, "SHAPE_Area": 332.372421997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355906.343400001525879, 255950.693399999290705 ], [ 355895.536399997770786, 255934.228799998760223 ], [ 355878.503100000321865, 255945.910599999129772 ], [ 355887.436599999666214, 255957.441799998283386 ], [ 355893.742499999701977, 255954.119899999350309 ], [ 355906.343400001525879, 255950.693399999290705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050144", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95833651, "LATITUDE": 18.33306985, "OBJECTID_1": 8669, "PARCEL_NO_": "105204050144", "Tax_Legal_": "127 SUBMARINE BASE SOUTHSIDE QTR.", "Name": "INTERIOR WOOD WORK C/O", "Address": "9978-P Blyden", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 0, "Improved_V": 120600, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.055759437399999, "SHAPE_Area": 419.095255017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355926.060400001704693, 255945.331700000911951 ], [ 355914.956200003623962, 255926.366200000047684 ], [ 355895.536399997770786, 255934.228799998760223 ], [ 355906.343400001525879, 255950.693399999290705 ], [ 355926.060400001704693, 255945.331700000911951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105203041101", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95814143, "LATITUDE": 18.33302779, "OBJECTID_1": 8560, "PARCEL_NO_": "105203041101", "Tax_Legal_": "157 SUBMARINE BASE SOUTHSIDE QTR.", "Name": "COLLINS, WILLIAM", "Address": "P O BOX 2119", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 0, "Improved_V": 298900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 83.879560131800005, "SHAPE_Area": 422.01076589600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355946.123700000345707, 255940.042300000786781 ], [ 355945.561899997293949, 255930.627399999648333 ], [ 355932.704099997878075, 255925.456000000238419 ], [ 355924.644599996507168, 255924.967799998819828 ], [ 355914.956200003623962, 255926.366200000047684 ], [ 355926.060400001704693, 255945.331700000911951 ], [ 355928.853900000452995, 255944.57209999859333 ], [ 355946.123700000345707, 255940.042300000786781 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057900", "MAP": "D9-5748-T94", "PARCEL_NAM": "3E-5-1", "ACRE": null, "LONGITUDE": -64.94946187, "LATITUDE": 18.35700546, "OBJECTID_1": 3987, "PARCEL_NO_": "102801057900", "Tax_Legal_": "3E-5-1 ESTATE ST.PETER LITTLE NORTHSIDE", "Name": "AUBAIN, DAVID L. & SHAWN L", "Address": "7788 Estate St Peter", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 78800, "Improved_V": 389400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 191.591919324, "SHAPE_Area": 2228.3373670699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356808.822800002992153, 258623.225099999457598 ], [ 356835.495800003409386, 258615.844000000506639 ], [ 356841.9408999979496, 258616.530000001192093 ], [ 356842.864100001752377, 258602.816500000655651 ], [ 356842.577600002288818, 258572.519799999892712 ], [ 356842.532799996435642, 258567.779100000858307 ], [ 356811.290299996733665, 258575.250100001692772 ], [ 356802.99889999628067, 258577.232799999415874 ], [ 356782.494300000369549, 258585.757199998944998 ], [ 356785.918999999761581, 258590.975299999117851 ], [ 356790.492700003087521, 258597.415399998426437 ], [ 356808.822800002992153, 258623.225099999457598 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702036400", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-1", "ACRE": ".50", "LONGITUDE": -64.94994103000001, "LATITUDE": 18.35688768, "OBJECTID_1": 3095, "PARCEL_NO_": "102702036400", "Tax_Legal_": "3B-1 ESTATE ST. PETER NO. 2 LITTLE NORTHSIDE QTR", "Name": "WARR, MORITA M. (LIFE ESTATE)", "Address": "PO BOX 303444", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 225.08114054399999, "SHAPE_Area": 2342.2697009100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356801.2533999979496, 258555.789299998432398 ], [ 356796.8462999984622, 258546.848700001835823 ], [ 356795.688100002706051, 258548.153499998152256 ], [ 356791.241200000047684, 258551.313499998301268 ], [ 356790.035499997437, 258551.303800001740456 ], [ 356786.236800000071526, 258548.875900000333786 ], [ 356782.835100002586842, 258547.050599999725819 ], [ 356780.029799997806549, 258546.028999999165535 ], [ 356776.01070000231266, 258545.996500000357628 ], [ 356774.200499996542931, 258546.181600000709295 ], [ 356771.77929999679327, 258547.360500000417233 ], [ 356768.944899998605251, 258549.934399999678135 ], [ 356766.914300002157688, 258552.514699999243021 ], [ 356765.087899997830391, 258554.697299998253584 ], [ 356756.989799998700619, 258562.022599998861551 ], [ 356728.578100003302097, 258577.183200001716614 ], [ 356765.654399998486042, 258607.280099999159575 ], [ 356764.795900002121925, 258593.114900000393391 ], [ 356782.494300000369549, 258585.757199998944998 ], [ 356802.99889999628067, 258577.232799999415874 ], [ 356811.290299996733665, 258575.250100001692772 ], [ 356801.2533999979496, 258555.789299998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702036100", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-3A", "ACRE": ".51", "LONGITUDE": -64.94897234, "LATITUDE": 18.35640476, "OBJECTID_1": 3092, "PARCEL_NO_": "102702036100", "Tax_Legal_": "3B-3A ST.PETER NO.2 LT NORTHSIDE QTR", "Name": "BERRY SR., ROBERT S.", "Address": "2E-3 LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 238.18898933, "SHAPE_Area": 2695.0582028 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356911.508299998939037, 258471.584399998188019 ], [ 356910.739799998700619, 258471.495000001043081 ], [ 356842.693999998271465, 258519.813700001686811 ], [ 356843.500699996948242, 258525.568999998271465 ], [ 356844.285099998116493, 258527.97239999845624 ], [ 356848.831200003623962, 258531.163699999451637 ], [ 356850.478900000452995, 258532.320300001651049 ], [ 356889.196199998259544, 258559.499299999326468 ], [ 356894.213899999856949, 258538.431099999696016 ], [ 356904.177299998700619, 258504.73759999871254 ], [ 356907.644000001251698, 258489.060199998319149 ], [ 356911.508299998939037, 258471.584399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702035300", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-2A", "ACRE": ".505", "LONGITUDE": -64.94942703, "LATITUDE": 18.35665467, "OBJECTID_1": 3086, "PARCEL_NO_": "102702035300", "Tax_Legal_": "ST PETER 3B-2 LT NORTHSIDE", "Name": "TARANTINO, MICHAEL", "Address": "PO Box 302517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 242.22016592099999, "SHAPE_Area": 2744.1984927499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356889.196199998259544, 258559.499299999326468 ], [ 356850.478900000452995, 258532.320300001651049 ], [ 356848.831200003623962, 258531.163699999451637 ], [ 356844.285099998116493, 258527.97239999845624 ], [ 356840.647600002586842, 258529.33219999819994 ], [ 356838.053999997675419, 258530.30180000141263 ], [ 356834.611699998378754, 258531.289799999445677 ], [ 356831.589299999177456, 258532.26410000026226 ], [ 356827.970499999821186, 258532.434599999338388 ], [ 356823.959499999880791, 258531.403299998492002 ], [ 356802.121699996292591, 258523.036299999803305 ], [ 356797.70549999922514, 258522.401299998164177 ], [ 356795.987899996340275, 258526.867899999022484 ], [ 356796.989399999380112, 258532.5912000015378 ], [ 356800.280299998819828, 258538.743700001388788 ], [ 356800.42339999973774, 258542.320700000971556 ], [ 356798.706399999558926, 258544.753100000321865 ], [ 356796.8462999984622, 258546.848700001835823 ], [ 356801.2533999979496, 258555.789299998432398 ], [ 356811.290299996733665, 258575.250100001692772 ], [ 356849.071400001645088, 258566.215500000864267 ], [ 356876.237800002098083, 258561.812600001692772 ], [ 356889.196199998259544, 258559.499299999326468 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "A3-40-T39 / A3-97-T66", "PARCEL_NAM": "REM of 35 / Tract 1", "ACRE": null, "LONGITUDE": -64.95661815, "LATITUDE": 18.33520995, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3081.2940644199998, "SHAPE_Area": 55448.340238299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356097.098700001835823, 256221.699200000613928 ], [ 356114.886100001633167, 256216.145199999213219 ], [ 356147.273500002920628, 256200.578299999237061 ], [ 356154.586099997162819, 256194.094200000166893 ], [ 356152.194099999964237, 256190.90819999948144 ], [ 356200.09740000218153, 256152.459100000560284 ], [ 356229.878100000321865, 256021.892900001257658 ], [ 356218.032300002872944, 256008.408700000494719 ], [ 356219.246200002729893, 255997.4831000007689 ], [ 356207.882100000977516, 255995.891399998217821 ], [ 356194.970399998128414, 255997.052299998700619 ], [ 356181.628100000321865, 255994.167899999767542 ], [ 356148.287000000476837, 255986.959899999201298 ], [ 356141.848999999463558, 255985.429499998688698 ], [ 356120.929899998009205, 255979.980999998748302 ], [ 356090.383500002324581, 255968.754099998623133 ], [ 356087.740699999034405, 255967.799199998378754 ], [ 356083.330399997532368, 255991.326499998569489 ], [ 356120.203599996864796, 256011.142700001597404 ], [ 356115.931800000369549, 256025.968299999833107 ], [ 356109.572899997234344, 256030.3918999992311 ], [ 356073.804099999368191, 256021.813999999314547 ], [ 355996.511100001633167, 255988.609900001436472 ], [ 356009.056999996304512, 255935.438799999654293 ], [ 356007.615599997341633, 255934.934999998658895 ], [ 355945.354800000786781, 255915.958599999547005 ], [ 355925.762599997222424, 255911.250700000673532 ], [ 355910.355099998414516, 255914.389299999922514 ], [ 355894.377099998295307, 255922.28319999948144 ], [ 355880.966899998486042, 255931.556200001388788 ], [ 355866.034999996423721, 255942.874000001698732 ], [ 355852.957699999213219, 255954.714899998158216 ], [ 355848.820500001311302, 255958.328999999910593 ], [ 355847.393899999558926, 255961.087200000882149 ], [ 355848.012100003659725, 255962.608899999409914 ], [ 355849.058300003409386, 255962.371100001037121 ], [ 355862.89639999717474, 255950.482599999755621 ], [ 355878.9695999994874, 255938.546599999070168 ], [ 355889.19370000064373, 255932.412200000137091 ], [ 355899.750600002706051, 255926.991099998354912 ], [ 355911.020900003612041, 255923.091600000858307 ], [ 355922.252599999308586, 255921.781800001859665 ], [ 355933.535599999129772, 255922.507500000298023 ], [ 355932.704099997878075, 255925.456000000238419 ], [ 355945.561899997293949, 255930.627399999648333 ], [ 355946.123700000345707, 255940.042300000786781 ], [ 355928.853900000452995, 255944.57209999859333 ], [ 355926.060400001704693, 255945.331700000911951 ], [ 355906.343400001525879, 255950.693399999290705 ], [ 355893.742499999701977, 255954.119899999350309 ], [ 355887.436599999666214, 255957.441799998283386 ], [ 355878.503100000321865, 255945.910599999129772 ], [ 355857.375399999320507, 255964.947200000286102 ], [ 355844.418600000441074, 255971.385099999606609 ], [ 355851.637699998915195, 255975.877099998295307 ], [ 355878.908500000834465, 255992.987799998372793 ], [ 355890.28490000218153, 255982.737300001084805 ], [ 355915.973700001835823, 255996.246500000357628 ], [ 355940.026399999856949, 256012.486400000751019 ], [ 355884.5929000005126, 256082.960200000554323 ], [ 355861.048000000417233, 256101.765900000929832 ], [ 355833.565099999308586, 256109.5625 ], [ 355808.538800001144409, 256112.946299999952316 ], [ 355783.725000001490116, 256085.836800001561642 ], [ 355746.074199996888638, 256133.763099998235703 ], [ 355753.807700000703335, 256149.664599999785423 ], [ 355752.997000001370907, 256171.199299998581409 ], [ 355767.180699996650219, 256177.64919999986887 ], [ 355759.851800002157688, 256190.683899998664856 ], [ 355760.265100002288818, 256194.877700001001358 ], [ 355770.738200001418591, 256196.018899999558926 ], [ 355778.855200000107288, 256189.752500001341105 ], [ 355787.758799999952316, 256185.814599998295307 ], [ 355809.874799996614456, 256185.335700001567602 ], [ 355821.251900002360344, 256191.421100001782179 ], [ 355825.882100000977516, 256194.993000000715256 ], [ 355828.718900002539158, 256205.148200001567602 ], [ 355826.269400000572205, 256208.71680000051856 ], [ 355835.984700001776218, 256204.152199998497963 ], [ 355843.257700003683567, 256202.311900001019239 ], [ 355869.875, 256201.474300000816584 ], [ 355869.89299999922514, 256199.363499999046326 ], [ 355856.214500002563, 256195.874099999666214 ], [ 355831.314099997282028, 256184.482299998402596 ], [ 355787.120600000023842, 256165.624200001358986 ], [ 355780.136699996888638, 256162.073800001293421 ], [ 355779.806000001728535, 256150.167599998414516 ], [ 355779.806000001728535, 256137.269099999219179 ], [ 355785.759099997580051, 256120.071199998259544 ], [ 355795.019500002264977, 256113.787300001829863 ], [ 355805.349500000476837, 256115.305599998682737 ], [ 355845.112800002098083, 256122.65430000051856 ], [ 355842.251599997282028, 256154.44480000063777 ], [ 355834.63289999961853, 256173.532600000500679 ], [ 355832.966300003230572, 256179.851799998432398 ], [ 355857.863099999725819, 256191.665699999779463 ], [ 355863.509099997580051, 256191.500799998641014 ], [ 355870.742499999701977, 256194.304200001060963 ], [ 355880.420000001788139, 256194.1722999997437 ], [ 355884.460600003600121, 256193.149900000542402 ], [ 355891.749799996614456, 256189.40989999845624 ], [ 355896.625399999320507, 256185.016800001263618 ], [ 355902.345100000500679, 256176.197700001299381 ], [ 355904.076399996876717, 256162.279699999839067 ], [ 355903.29169999808073, 256159.740200001746416 ], [ 355905.725000001490116, 256158.071299999952316 ], [ 355905.757399998605251, 256154.271899998188019 ], [ 355908.25900000333786, 256144.582100000232458 ], [ 355909.898599997162819, 256141.429099999368191 ], [ 355913.969800002872944, 256136.818399999290705 ], [ 355920.457999996840954, 256132.438499998301268 ], [ 355938.250799998641014, 256126.251299999654293 ], [ 355952.23480000346899, 256119.479499999433756 ], [ 355901.379299998283386, 256074.524900000542402 ], [ 355938.400600001215935, 256025.981600001454353 ], [ 355941.78830000013113, 256021.346700001507998 ], [ 355986.219400003552437, 256054.97069999948144 ], [ 355984.869599997997284, 256044.172200001776218 ], [ 355992.906900003552437, 256034.125599998980761 ], [ 356005.725000001490116, 256033.986999999731779 ], [ 356009.743600003421307, 256052.486600000411272 ], [ 356030.252599999308586, 256057.475299999117851 ], [ 356039.467799998819828, 256092.465199999511242 ], [ 356037.46679999679327, 256122.419300001114607 ], [ 356035.625799998641014, 256149.213100001215935 ], [ 356035.586300000548363, 256153.856899999082088 ], [ 356034.670299999415874, 256166.726100001484156 ], [ 356040.211999997496605, 256178.803800001740456 ], [ 356052.877400003373623, 256206.560699999332428 ], [ 356060.07490000128746, 256213.585700001567602 ], [ 356071.314699999988079, 256219.377199999988079 ], [ 356082.588699996471405, 256221.15819999948144 ], [ 356096.312200002372265, 256219.370700001716614 ], [ 356097.098700001835823, 256221.699200000613928 ] ], [ [ 356107.554899998009205, 256130.270399998873472 ], [ 356094.691600002348423, 256125.631900001317263 ], [ 356091.4628000035882, 256126.02760000154376 ], [ 356103.083800002932549, 256087.07039999961853 ], [ 356100.709799997508526, 256081.773699998855591 ], [ 356089.622900001704693, 256058.040500000119209 ], [ 356100.241599999368191, 256042.084300000220537 ], [ 356109.082299999892712, 256045.534099999815226 ], [ 356101.748099997639656, 256054.551100000739098 ], [ 356112.136699996888638, 256065.613000001758337 ], [ 356134.664899997413158, 256071.496899999678135 ], [ 356144.362199999392033, 256069.043200001120567 ], [ 356142.997699998319149, 256039.901099998503923 ], [ 356131.730899997055531, 256037.275699999183416 ], [ 356123.493699997663498, 256035.429099999368191 ], [ 356123.91950000077486, 256033.832499999552965 ], [ 356130.506099998950958, 256009.132500000298023 ], [ 356173.3496999964118, 256017.455200001597404 ], [ 356190.748199999332428, 256019.3935999982059 ], [ 356140.044699996709824, 256102.571699999272823 ], [ 356126.847000002861023, 256137.294100001454353 ], [ 356125.239799998700619, 256136.647700000554323 ], [ 356113.579800002276897, 256132.442999999970198 ], [ 356107.554899998009205, 256130.270399998873472 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050118", "MAP": "D9-8173-T008", "PARCEL_NAM": "180-1", "ACRE": "1.13", "LONGITUDE": -64.95796292, "LATITUDE": 18.33425556, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 265.91104257699999, "SHAPE_Area": 4530.1911445599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355960.112999998033047, 256115.664500001817942 ], [ 355986.809600003063679, 256059.692499998956919 ], [ 355986.219400003552437, 256054.97069999948144 ], [ 355941.78830000013113, 256021.346700001507998 ], [ 355938.400600001215935, 256025.981600001454353 ], [ 355901.379299998283386, 256074.524900000542402 ], [ 355952.23480000346899, 256119.479499999433756 ], [ 355960.112999998033047, 256115.664500001817942 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801057600", "MAP": "D9-5389-T92", "PARCEL_NAM": "3E-4 REM", "ACRE": null, "LONGITUDE": -64.94983701, "LATITUDE": 18.35803145, "OBJECTID_1": 3984, "PARCEL_NO_": "102801057600", "Tax_Legal_": "ST PETER 3E-4 REMAINDER LT. NORTHSIDE", "Name": "AUBAIN, DONNA MARIE", "Address": "PO Box 305617", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 93700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 325.06794578500001, "SHAPE_Area": 3740.81937457 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356798.762199997901917, 258668.316700000315905 ], [ 356802.78999999910593, 258648.160700000822544 ], [ 356779.154399998486042, 258649.033900000154972 ], [ 356769.831399999558926, 258649.378400001674891 ], [ 356768.039300002157688, 258767.11600000038743 ], [ 356770.525799997150898, 258764.555399999022484 ], [ 356779.46000000089407, 258757.029100000858307 ], [ 356790.807700000703335, 258750.155900001525879 ], [ 356800.530199997127056, 258744.747099999338388 ], [ 356805.382500000298023, 258743.098000001162291 ], [ 356829.686899997293949, 258729.787000000476837 ], [ 356829.708499997854233, 258727.254000000655651 ], [ 356812.876599997282028, 258715.295000001788139 ], [ 356796.81870000064373, 258707.142000000923872 ], [ 356794.42679999768734, 258703.9560999982059 ], [ 356793.681599996984005, 258696.772799998521805 ], [ 356798.762199997901917, 258668.316700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702030200", "MAP": "D9-8767-T013", "PARCEL_NAM": "3CD-D", "ACRE": ".666", "LONGITUDE": -64.95041136, "LATITUDE": 18.3574807, "OBJECTID_1": 3057, "PARCEL_NO_": "102702030200", "Tax_Legal_": "3CD-C ST PETER(CONS)& 3CD-A(ROW) NO.2 LITTLE NORTHSIDE QTR", "Name": "VAN GORES FAMILY TRUST I", "Address": "131 Scarlett Dr", "City": "Pisgah Forest", "State": "North Carolina", "Zip": 28768, "Country": "United States", "Land_Value": 82600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 268.85728037799998, "SHAPE_Area": 2999.5608213700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356769.97410000115633, 258640.005699999630451 ], [ 356768.020499996840954, 258625.204999998211861 ], [ 356693.073100000619888, 258623.874600000679493 ], [ 356687.001299999654293, 258630.249600000679493 ], [ 356685.356299996376038, 258634.035799998790026 ], [ 356685.469800002872944, 258641.50279999896884 ], [ 356685.759700000286102, 258660.566799998283386 ], [ 356685.867899999022484, 258667.685100000351667 ], [ 356710.491499997675419, 258659.877300001680851 ], [ 356757.223999999463558, 258655.313499998301268 ], [ 356769.429700002074242, 258675.774099998176098 ], [ 356769.97410000115633, 258640.005699999630451 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "A3-40-T39 / A3-97-T66", "PARCEL_NAM": "REM of 35 / Tract 1", "ACRE": null, "LONGITUDE": -64.95405864, "LATITUDE": 18.33495758, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 436.07873779800002, "SHAPE_Area": 8092.6474159199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356404.401900000870228, 256118.034200001507998 ], [ 356351.970399998128414, 256115.644999999552965 ], [ 356349.116899996995926, 256067.276599999517202 ], [ 356308.569399997591972, 256103.317699998617172 ], [ 356366.275799997150898, 256239.312100000679493 ], [ 356402.16889999806881, 256190.843199998140335 ], [ 356403.415799997746944, 256139.135499998927116 ], [ 356404.401900000870228, 256118.034200001507998 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050118", "MAP": "A3-40-T39 / A3-97-T66", "PARCEL_NAM": "REM of 35 / Tract 1", "ACRE": null, "LONGITUDE": -64.96105688, "LATITUDE": 18.3346609, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 2103.73623279, "SHAPE_Area": 86497.0896545 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 355839.607900001108646, 256314.846099998801947 ], [ 355825.868400000035763, 256295.705400001257658 ], [ 355817.191500000655651, 256300.935499999672174 ], [ 355811.224500000476837, 256299.328400000929832 ], [ 355788.265399999916553, 256301.774500001221895 ], [ 355728.760200001299381, 256301.782800000160933 ], [ 355733.423699997365475, 256294.222100000828505 ], [ 355712.646899998188019, 256294.445700000971556 ], [ 355675.931100003421307, 256291.882699999958277 ], [ 355658.166799999773502, 256282.759100001305342 ], [ 355613.593900002539158, 256298.172200001776218 ], [ 355595.074299998581409, 256276.063200000673532 ], [ 355604.896799996495247, 256268.247400000691414 ], [ 355621.780900001525879, 256254.812699999660254 ], [ 355633.999799996614456, 256245.09010000154376 ], [ 355635.021899998188019, 256244.066199999302626 ], [ 355626.224799998104572, 256216.367600001394749 ], [ 355637.651699997484684, 256200.206900000572205 ], [ 355641.67059999704361, 256201.717500001192093 ], [ 355655.332999996840954, 256207.106600001454353 ], [ 355663.369099996984005, 256210.338799998164177 ], [ 355667.294600002467632, 256222.825500000268221 ], [ 355670.673500001430511, 256240.728000000119209 ], [ 355674.691500000655651, 256238.318500000983477 ], [ 355667.362899996340275, 256214.804499998688698 ], [ 355666.838100001215935, 256209.191399998962879 ], [ 355659.3800999969244, 256205.537799999117851 ], [ 355640.644299998879433, 256196.359099999070168 ], [ 355643.414499998092651, 256186.321899998933077 ], [ 355652.43860000371933, 256168.241700001060963 ], [ 355657.253100000321865, 256171.025400001555681 ], [ 355661.250500001013279, 256175.068900000303984 ], [ 355688.765799999237061, 256163.472800001502037 ], [ 355686.479900002479553, 256147.833200000226498 ], [ 355686.596799999475479, 256134.113099999725819 ], [ 355689.102099999785423, 256124.0011 ], [ 355698.252300001680851, 256121.179299999028444 ], [ 355721.513999998569489, 256123.006000000983477 ], [ 355722.802199997007847, 256094.928100001066923 ], [ 355758.124499998986721, 256057.867899999022484 ], [ 355747.020999997854233, 256045.737199999392033 ], [ 355735.792000003159046, 256038.679200001060963 ], [ 355778.857400000095367, 256000.190499998629093 ], [ 355782.050300002098083, 256004.01630000025034 ], [ 355784.467399999499321, 256004.24720000103116 ], [ 355800.737499997019768, 255987.492899999022484 ], [ 355803.199600003659725, 255982.446800000965595 ], [ 355790.372299998998642, 255973.686900001019239 ], [ 355765.576200000941753, 255950.052600000053644 ], [ 355758.357199996709824, 255945.560600001364946 ], [ 355747.113799996674061, 255940.191199999302626 ], [ 355733.444200001657009, 255935.64640000090003 ], [ 355721.371100001037121, 255933.014400001615286 ], [ 355668.154500000178814, 255932.578899998217821 ], [ 355613.350400000810623, 255929.175000000745058 ], [ 355572.185300000011921, 255933.90430000051856 ], [ 355527.838100001215935, 255933.541400000452995 ], [ 355526.906000003218651, 255948.310300000011921 ], [ 355529.091099999845028, 255975.770300000905991 ], [ 355528.257799997925758, 255978.929900001734495 ], [ 355525.673500001430511, 255998.3293999992311 ], [ 355522.417700000107288, 256001.89130000025034 ], [ 355515.934799998998642, 256005.638000000268221 ], [ 355507.850100003182888, 256008.104899998754263 ], [ 355475.554399996995926, 256012.906800001859665 ], [ 355445.668700002133846, 256018.783900000154972 ], [ 355452.265600003302097, 256027.349899999797344 ], [ 355458.429499998688698, 256035.353700000792742 ], [ 355461.604400001466274, 256041.290300000458956 ], [ 355463.175599999725819, 256046.158300001174212 ], [ 355463.082099996507168, 256057.134399998933077 ], [ 355459.759800001978874, 256068.506299998611212 ], [ 355454.860799998044968, 256075.643300000578165 ], [ 355436.171700000762939, 256092.377900000661612 ], [ 355460.967799998819828, 256116.012200001627207 ], [ 355491.212099999189377, 256162.700300000607967 ], [ 355571.263199999928474, 256326.108600001782179 ], [ 355749.3378000035882, 256341.709300000220537 ], [ 355759.807300001382828, 256343.272700000554323 ], [ 355772.675899997353554, 256347.177700001746416 ], [ 355788.73200000077486, 256355.541799999773502 ], [ 355799.953900001943111, 256363.444099999964237 ], [ 355814.345200002193451, 256377.916200000792742 ], [ 355823.886100001633167, 256393.826299998909235 ], [ 355843.835299998521805, 256418.476399999111891 ], [ 355848.646200001239777, 256421.682199999690056 ], [ 355851.059799998998642, 256422.335299998521805 ], [ 355849.493900001049042, 256416.833999998867512 ], [ 355841.590800002217293, 256397.98200000077486 ], [ 355829.729900002479553, 256370.442800000309944 ], [ 355821.024099998176098, 256351.162000000476837 ], [ 355813.903899997472763, 256335.060600001364946 ], [ 355811.533600002527237, 256329.341699998825788 ], [ 355832.587600000202656, 256318.959300000220537 ], [ 355835.825400002300739, 256317.508200000971556 ], [ 355839.612099997699261, 256314.849899999797344 ], [ 355839.607900001108646, 256314.846099998801947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "105204050133", "MAP": "G9-1340-T69", "PARCEL_NAM": "79", "ACRE": "0.29", "LONGITUDE": -64.95629155, "LATITUDE": 18.33366942, "OBJECTID_1": 8662, "PARCEL_NO_": "105204050133", "Tax_Legal_": "SUB BASE KRUM BAY SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 124200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 133.759777176, "SHAPE_Area": 1084.0169741699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356083.330399997532368, 255991.326499998569489 ], [ 356082.093800000846386, 255995.284099999815226 ], [ 356073.804099999368191, 256021.813999999314547 ], [ 356109.572899997234344, 256030.3918999992311 ], [ 356115.931800000369549, 256025.968299999833107 ], [ 356120.203599996864796, 256011.142700001597404 ], [ 356083.330399997532368, 255991.326499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "I-2", "PARCEL_NO": "105204050118", "MAP": "D9-928-T70", "PARCEL_NAM": "126", "ACRE": "0.70", "LONGITUDE": -64.95661815, "LATITUDE": 18.33520995, "OBJECTID_1": 8652, "PARCEL_NO_": "105204050118", "Tax_Legal_": "SUBBASE CROWNBAY NISKY35 SOUTHSIDE QTR", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 0, "Improved_V": 187400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 279.831335491, "SHAPE_Area": 4670.2481449200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356083.330399997532368, 255991.326499998569489 ], [ 356087.740699999034405, 255967.799199998378754 ], [ 356067.070600003004074, 255960.330699998885393 ], [ 356031.734899997711182, 255943.365100000053644 ], [ 356009.056999996304512, 255935.438799999654293 ], [ 355996.511100001633167, 255988.609900001436472 ], [ 356073.804099999368191, 256021.813999999314547 ], [ 356082.093800000846386, 255995.284099999815226 ], [ 356083.330399997532368, 255991.326499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "105702050600", "MAP": "F9-421-T59", "PARCEL_NAM": "55", "ACRE": ".22", "LONGITUDE": -64.87368535, "LATITUDE": 18.34383396, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.28726968300001, "SHAPE_Area": 847.756521948 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364847.665600001811981, 257185.39979999884963 ], [ 364844.977600000798702, 257183.140999998897314 ], [ 364827.533100001513958, 257207.01240000128746 ], [ 364828.92620000243187, 257208.04450000077486 ], [ 364832.131700001657009, 257210.392799999564886 ], [ 364850.558200001716614, 257224.475699998438358 ], [ 364856.270700000226498, 257216.500900000333786 ], [ 364868.484099999070168, 257202.668699998408556 ], [ 364847.665600001811981, 257185.39979999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.87354001, "LATITUDE": 18.34365797, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.76605877, "SHAPE_Area": 1428.3225039 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364817.568800002336502, 257121.403200000524521 ], [ 364809.94879999756813, 257104.527199998497963 ], [ 364794.336099997162819, 257129.142400000244379 ], [ 364808.508699998259544, 257143.704900000244379 ], [ 364818.90089999884367, 257154.344700001180172 ], [ 364826.238600000739098, 257144.905499998480082 ], [ 364827.133000001311302, 257134.569299999624491 ], [ 364817.568800002336502, 257121.403200000524521 ] ] ], [ [ [ 364861.52759999781847, 257167.359200000762939 ], [ 364860.311099998652935, 257165.84739999845624 ], [ 364844.977600000798702, 257183.140999998897314 ], [ 364847.665600001811981, 257185.39979999884963 ], [ 364868.484099999070168, 257202.668699998408556 ], [ 364874.997500002384186, 257195.333799999207258 ], [ 364880.263199999928474, 257188.407200001180172 ], [ 364868.717799998819828, 257175.228500001132488 ], [ 364861.52759999781847, 257167.359200000762939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702035500", "MAP": "A9-566-T001", "PARCEL_NAM": "M-5", "ACRE": "0.24", "LONGITUDE": -64.85599204, "LATITUDE": 18.32854204, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 146.72013348799999, "SHAPE_Area": 1203.95558899 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366755.114100001752377, 255519.784000001847744 ], [ 366754.405299998819828, 255519.434200000017881 ], [ 366741.678099997341633, 255506.729600001126528 ], [ 366699.62389999628067, 255533.149300001561642 ], [ 366700.597099997103214, 255541.095600001513958 ], [ 366747.725599996745586, 255541.348900001496077 ], [ 366755.212700001895428, 255524.416700001806021 ], [ 366755.114100001752377, 255519.784000001847744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "P", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.92667096, "LATITUDE": 18.33954203, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1462.9084983099999, "SHAPE_Area": 7986.9024095599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 359045.832800000905991, 256772.540500000119209 ], [ 359070.050999999046326, 256768.102699998766184 ], [ 359090.600599996745586, 256767.112300001084805 ], [ 359116.101899996399879, 256764.884100001305342 ], [ 359135.413599997758865, 256762.903400000184774 ], [ 359152.744599997997284, 256759.932300001382828 ], [ 359170.075499996542931, 256755.723400000482798 ], [ 359187.406499996781349, 256751.761999998241663 ], [ 359208.698899999260902, 256745.077199999243021 ], [ 359229.991200000047684, 256736.906899999827147 ], [ 359251.757700003683567, 256727.38569999858737 ], [ 359260.277000002563, 256722.062600001692772 ], [ 359264.473200000822544, 256719.880199998617172 ], [ 359264.405599996447563, 256719.575899999588728 ], [ 359276.537299998104572, 256709.672499999403954 ], [ 359288.173799999058247, 256698.035999998450279 ], [ 359296.591700002551079, 256685.409099999815226 ], [ 359303.276500001549721, 256672.287099998444319 ], [ 359308.971000000834465, 256657.927099999040365 ], [ 359313.922700002789497, 256630.692699998617172 ], [ 359317.388899996876717, 256614.104499999433756 ], [ 359319.864699997007847, 256601.230099998414516 ], [ 359323.578500002622604, 256583.899099998176098 ], [ 359328.282600000500679, 256572.262600000947714 ], [ 359334.719899997115135, 256555.42680000141263 ], [ 359340.909500002861023, 256546.513700000941753 ], [ 359346.852799996733665, 256538.32149999961257 ], [ 359351.060500003397465, 256532.1537000015378 ], [ 359354.031499996781349, 256530.173000000417233 ], [ 359356.462200000882149, 256527.621399998664856 ], [ 359364.677699998021126, 256521.507500000298023 ], [ 359373.095600001513958, 256515.813099998980761 ], [ 359381.51349999755621, 256509.375900000333786 ], [ 359394.635499998927116, 256503.186200000345707 ], [ 359403.548600003123283, 256499.719999998807907 ], [ 359416.175499998033047, 256496.253800000995398 ], [ 359427.316799998283386, 256494.27309999987483 ], [ 359439.200900003314018, 256493.282800000160933 ], [ 359449.599500000476837, 256492.787599999457598 ], [ 359457.769799999892712, 256493.778000000864267 ], [ 359468.663599997758865, 256496.253800000995398 ], [ 359480.30009999871254, 256498.482099998742342 ], [ 359488.974299997091293, 256501.010400000959635 ], [ 359525.175700001418591, 256514.6097999997437 ], [ 359530.507500000298023, 256515.839899998158216 ], [ 359539.264799997210503, 256516.770100001245737 ], [ 359545.806900002062321, 256515.605399999767542 ], [ 359545.662699997425079, 256511.604100000113249 ], [ 359537.244800001382828, 256508.137899998575449 ], [ 359523.627599999308586, 256503.681400001049042 ], [ 359510.010399997234344, 256498.977299999445677 ], [ 359495.650399997830391, 256494.768300000578165 ], [ 359481.042900003492832, 256489.816599998623133 ], [ 359469.1587999984622, 256487.340799998492002 ], [ 359456.284299999475479, 256484.864900000393391 ], [ 359443.40990000218153, 256484.369699999690056 ], [ 359433.01129999756813, 256484.864900000393391 ], [ 359421.622400000691414, 256486.598000001162291 ], [ 359409.985799998044968, 256489.073899999260902 ], [ 359401.815499998629093, 256491.054499998688698 ], [ 359393.892800003290176, 256494.768300000578165 ], [ 359382.256300002336502, 256499.719999998807907 ], [ 359361.706699997186661, 256499.224899999797344 ], [ 359351.308100000023842, 256510.366200000047684 ], [ 359348.337099999189377, 256508.385499998927116 ], [ 359345.36599999666214, 256510.366200000047684 ], [ 359333.729500003159046, 256509.870999999344349 ], [ 359333.481899999082088, 256523.983399998396635 ], [ 359330.758500002324581, 256525.964099999517202 ], [ 359333.729500003159046, 256528.935100000351667 ], [ 359322.835799999535084, 256539.581300001591444 ], [ 359322.588200002908707, 256562.359099999070168 ], [ 359318.626800000667572, 256572.757699999958277 ], [ 359315.903399996459484, 256580.432900000363588 ], [ 359313.67509999871254, 256587.612900000065565 ], [ 359310.704099997878075, 256605.191399998962879 ], [ 359305.752400003373623, 256629.702399998903275 ], [ 359300.800700001418591, 256654.460900001227856 ], [ 359299.0675999969244, 256662.136100001633167 ], [ 359297.334499999880791, 256667.087799999862909 ], [ 359294.858599998056889, 256671.544300001114607 ], [ 359285.697899997234344, 256681.447799999266863 ], [ 359278.51799999922514, 256674.762899998575449 ], [ 359275.05179999768734, 256679.219500001519918 ], [ 359259.701499998569489, 256679.714699998497963 ], [ 359259.701499998569489, 256696.055300001055002 ], [ 359256.482900001108646, 256699.273899998515844 ], [ 359263.662799999117851, 256705.958700001239777 ], [ 359250.788400001823902, 256718.090399999171495 ], [ 359236.675999999046326, 256724.52760000154376 ], [ 359224.791900001466274, 256730.469700001180172 ], [ 359205.48030000180006, 256736.906899999827147 ], [ 359190.377499997615814, 256741.858600001782179 ], [ 359173.789300002157688, 256746.562699999660254 ], [ 359152.497000001370907, 256752.00959999859333 ], [ 359135.413599997758865, 256754.732999999076128 ], [ 359123.777099996805191, 256755.723400000482798 ], [ 359123.529500000178814, 256752.504799999296665 ], [ 359120.063299998641014, 256752.504799999296665 ], [ 359110.407399997115135, 256743.839299999177456 ], [ 359102.237099997699261, 256753.990299999713898 ], [ 359099.513700000941753, 256753.74269999936223 ], [ 359098.770900003612041, 256758.199200000613928 ], [ 359045.292499996721745, 256756.218600001186132 ], [ 359039.845600001513958, 256755.228199999779463 ], [ 359032.913199998438358, 256753.0 ], [ 359028.951800003647804, 256749.286200001835823 ], [ 359024.742899999022484, 256744.581999998539686 ], [ 359013.706399999558926, 256754.41609999909997 ], [ 359009.939400002360344, 256757.772700000554323 ], [ 359011.652099996805191, 256772.966099999845028 ], [ 359014.71509999781847, 256773.618599999696016 ], [ 359021.949600003659725, 256774.023600000888109 ], [ 359030.122299998998642, 256773.923300001770258 ], [ 359037.593099996447563, 256773.772900000214577 ], [ 359045.832800000905991, 256772.540500000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "105701020100", "MAP": "D9-8906-T014", "PARCEL_NAM": "53-1A", "ACRE": null, "LONGITUDE": -64.87741119, "LATITUDE": 18.34586859, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.07860187599999, "SHAPE_Area": 919.04294784299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 364460.307700000703335, 257488.96229999884963 ], [ 364460.17849999666214, 257425.197000000625849 ], [ 364462.130599997937679, 257420.930100001394749 ], [ 364449.662500001490116, 257417.050500001758337 ], [ 364448.394299998879433, 257416.099300000816584 ], [ 364447.039099998772144, 257414.40260000154376 ], [ 364458.469200000166893, 257369.317499998956919 ], [ 364459.739200003445148, 257368.523800000548363 ], [ 364463.082999996840954, 257368.225600000470877 ], [ 364454.355499997735023, 257361.739500001072884 ], [ 364441.274999998509884, 257413.594999998807907 ], [ 364441.023639285005629, 257416.486518555349903 ], [ 364441.245407394482754, 257419.380457165068947 ], [ 364441.934411173686385, 257422.199913772870786 ], [ 364443.072341386170592, 257424.869965570629574 ], [ 364444.628959252324421, 257427.319659957691329 ], [ 364446.562899999320507, 257429.483899999409914 ], [ 364450.531700000166893, 257429.960099998861551 ], [ 364451.079865790205076, 257429.896514506574022 ], [ 364451.631063075736165, 257429.923167848784942 ], [ 364452.170536305522546, 257430.03934651549207 ], [ 364452.683843781240284, 257430.241940403793706 ], [ 364453.157244261878077, 257430.525526075361995 ], [ 364453.578064816712867, 257430.88251194183249 ], [ 364453.935040079522878, 257431.303341491613537 ], [ 364454.218613822595216, 257431.776749117707368 ], [ 364454.421194776892662, 257432.290061698091449 ], [ 364454.53735985030653, 257432.829537855053786 ], [ 364454.563999303849414, 257433.380735812010244 ], [ 364454.500399999320507, 257433.928899999707937 ], [ 364454.659199997782707, 257460.757699999958277 ], [ 364454.469848174136132, 257461.711281467782101 ], [ 364454.128973642538767, 257462.621762814436806 ], [ 364453.645526520966087, 257463.465238130913349 ], [ 364453.03220036206767, 257464.219560841476778 ], [ 364452.305098866694607, 257464.864925191563088 ], [ 364451.483313060016371, 257465.384386274556164 ], [ 364450.588420030486304, 257465.76430494300439 ], [ 364449.643916394968983, 257465.9947059226688 ], [ 364448.674601363309193, 257466.069539726770017 ], [ 364447.705925601709168, 257465.986841493431712 ], [ 364446.763322991610039, 257465.748782575712539 ], [ 364445.871542828856036, 257465.361613529763417 ], [ 364445.053999997675419, 257464.835499998182058 ], [ 364460.307700000703335, 257488.96229999884963 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "107702030000", "MAP": "D9-8671-T012", "PARCEL_NAM": "M-6", "ACRE": "0.24", "LONGITUDE": -64.85607696, "LATITUDE": 18.32876181, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 141.846383637, "SHAPE_Area": 1026.9867725700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366744.22240000218153, 255563.951900001615286 ], [ 366740.585199996829033, 255560.985399998724461 ], [ 366742.007299996912479, 255554.281100001186132 ], [ 366747.725599996745586, 255541.348900001496077 ], [ 366700.597099997103214, 255541.095600001513958 ], [ 366700.338500000536442, 255566.183800000697374 ], [ 366744.22240000218153, 255563.951900001615286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.89388062, "LATITUDE": 18.35685056, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.87247193499999, "SHAPE_Area": 271.21594692000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362666.745399996638298, 258650.60249999910593 ], [ 362669.279799997806549, 258650.291900001466274 ], [ 362672.537699997425079, 258650.562399998307228 ], [ 362711.953299999237061, 258620.284699998795986 ], [ 362723.775100000202656, 258611.203600000590086 ], [ 362722.845299996435642, 258609.778099998831749 ], [ 362720.231499999761581, 258606.296599999070168 ], [ 362711.327500000596046, 258612.737799998372793 ], [ 362713.185999996960163, 258614.596200000494719 ], [ 362707.859200000762939, 258618.722500000149012 ], [ 362666.801700003445148, 258650.526599999517202 ], [ 362666.745399996638298, 258650.60249999910593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013600", "MAP": "D9-7973-T007", "PARCEL_NAM": "2C- REM", "ACRE": ".21", "LONGITUDE": -64.85468159, "LATITUDE": 18.32005754, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 199.747783175, "SHAPE_Area": 949.24200885100004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366897.565600000321865, 254565.353000000119209 ], [ 366896.083999998867512, 254553.684799998998642 ], [ 366893.86150000244379, 254553.870099999010563 ], [ 366891.26860000193119, 254554.796100001782179 ], [ 366883.489799998700619, 254557.944600000977516 ], [ 366879.785599999129772, 254561.093199998140335 ], [ 366877.933600001037121, 254565.908599998801947 ], [ 366875.711099997162819, 254572.205699998885393 ], [ 366870.340000003576279, 254630.546300001442432 ], [ 366869.228799998760223, 254633.50959999859333 ], [ 366865.883100003004074, 254638.8445999994874 ], [ 366865.928900003433228, 254638.820300001651049 ], [ 366877.30179999768734, 254628.991999998688698 ], [ 366883.829099997878075, 254624.332499999552965 ], [ 366881.255199998617172, 254623.560300000011921 ], [ 366883.88570000231266, 254609.331900000572205 ], [ 366885.836800001561642, 254594.0777000002563 ], [ 366887.787900000810623, 254577.581799998879433 ], [ 366889.916400000452995, 254568.713100001215935 ], [ 366892.009400002658367, 254567.019799999892712 ], [ 366897.565600000321865, 254565.353000000119209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "107704013600", "MAP": "D9-7973-T007", "PARCEL_NAM": "2C-6", "ACRE": ".502", "LONGITUDE": -64.85444725000001, "LATITUDE": 18.32001778, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 200.61767872, "SHAPE_Area": 2098.6246573799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 366892.009400002658367, 254567.019799999892712 ], [ 366889.916400000452995, 254568.713100001215935 ], [ 366887.787900000810623, 254577.581799998879433 ], [ 366885.836800001561642, 254594.0777000002563 ], [ 366883.88570000231266, 254609.331900000572205 ], [ 366881.255199998617172, 254623.560300000011921 ], [ 366883.829099997878075, 254624.332499999552965 ], [ 366909.753899998962879, 254605.826200000941753 ], [ 366920.298900000751019, 254598.524300001561642 ], [ 366927.251500003039837, 254594.867199998348951 ], [ 366929.560699999332428, 254593.237199999392033 ], [ 366929.632799997925758, 254592.750599998980761 ], [ 366935.610600002110004, 254554.717700000852346 ], [ 366916.33219999819994, 254559.920499999076128 ], [ 366897.565600000321865, 254565.353000000119209 ], [ 366892.009400002658367, 254567.019799999892712 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-3", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95727067, "LATITUDE": 18.33595297, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 464.04832056800001, "SHAPE_Area": 3356.9156942499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356116.270400002598763, 256242.965399999171495 ], [ 356114.886100001633167, 256216.145199999213219 ], [ 356097.098700001835823, 256221.699200000613928 ], [ 356096.902699999511242, 256244.706700000911951 ], [ 356036.375299997627735, 256250.544199999421835 ], [ 356023.463500000536442, 256251.705099999904633 ], [ 355983.112000003457069, 256255.596700001507998 ], [ 355978.270499996840954, 256255.979200001806021 ], [ 355924.200800001621246, 256261.025100000202656 ], [ 355927.294799998402596, 256276.460299998521805 ], [ 355991.862700000405312, 256269.600499998778105 ], [ 356033.83049999922514, 256265.299899999052286 ], [ 356116.941799998283386, 256258.80290000140667 ], [ 356116.270400002598763, 256242.965399999171495 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-2", "PARCEL_NO": "104802023600", "MAP": "D9-6431-T98", "PARCEL_NAM": "4-2-23-4", "ACRE": "0.50", "LONGITUDE": -65.01624503, "LATITUDE": 18.34638975, "OBJECTID_1": 7299, "PARCEL_NO_": "104802023600", "Tax_Legal_": "4-2-23-4,4-2-23REM,4-2-24REM. &4-7-4 FORTUNA No.8 WESTEND QTR.", "Name": "DE LUGO, RONALD", "Address": "1746 Deerhill Trl", "City": "Topanga", "State": "California", "Zip": 90290, "Country": "United States", "Land_Value": 289200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.29430522600001, "SHAPE_Area": 2141.8357990200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 349798.311999998986721, 257385.834399998188019 ], [ 349801.974600002169609, 257359.746700000017881 ], [ 349766.79169999808073, 257371.251400001347065 ], [ 349755.047100000083447, 257374.104299999773502 ], [ 349702.398800000548363, 257386.893399998545647 ], [ 349700.661899998784065, 257395.167599998414516 ], [ 349756.764499999582767, 257399.836399998515844 ], [ 349797.465999998152256, 257391.043800000101328 ], [ 349798.311999998986721, 257385.834399998188019 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102702035100", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-A", "ACRE": ".37", "LONGITUDE": -64.95029557, "LATITUDE": 18.35657703, "OBJECTID_1": 3085, "PARCEL_NO_": "102702035100", "Tax_Legal_": "ST PETER 3B-1A LT NORTHSIDE", "Name": "LAPORT, MARCELO & DANIELLA SCHMEISKE", "Address": "PO Box 304743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 334.17689198300002, "SHAPE_Area": 1234.3066367399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356765.087899997830391, 258554.697299998253584 ], [ 356766.914300002157688, 258552.514699999243021 ], [ 356768.944899998605251, 258549.934399999678135 ], [ 356771.77929999679327, 258547.360500000417233 ], [ 356774.200499996542931, 258546.181600000709295 ], [ 356776.01070000231266, 258545.996500000357628 ], [ 356780.029799997806549, 258546.028999999165535 ], [ 356782.835100002586842, 258547.050599999725819 ], [ 356786.236800000071526, 258548.875900000333786 ], [ 356790.035499997437, 258551.303800001740456 ], [ 356791.241200000047684, 258551.313499998301268 ], [ 356795.688100002706051, 258548.153499998152256 ], [ 356796.8462999984622, 258546.848700001835823 ], [ 356798.706399999558926, 258544.753100000321865 ], [ 356800.42339999973774, 258542.320700000971556 ], [ 356800.280299998819828, 258538.743700001388788 ], [ 356796.989399999380112, 258532.5912000015378 ], [ 356795.987899996340275, 258526.867899999022484 ], [ 356797.70549999922514, 258522.401299998164177 ], [ 356802.121699996292591, 258523.036299999803305 ], [ 356823.081399999558926, 258531.066899999976158 ], [ 356823.959499999880791, 258531.403299998492002 ], [ 356827.970499999821186, 258532.434599999338388 ], [ 356831.589299999177456, 258532.26410000026226 ], [ 356834.611699998378754, 258531.289799999445677 ], [ 356838.053999997675419, 258530.30180000141263 ], [ 356840.647600002586842, 258529.33219999819994 ], [ 356844.285099998116493, 258527.97239999845624 ], [ 356843.500699996948242, 258525.568999998271465 ], [ 356842.693999998271465, 258519.813700001686811 ], [ 356836.76630000025034, 258520.14299999922514 ], [ 356836.909400001168251, 258522.861600000411272 ], [ 356835.335500001907349, 258523.863099999725819 ], [ 356834.047700002789497, 258524.435499999672174 ], [ 356831.758400000631809, 258524.864700000733137 ], [ 356828.324400000274181, 258524.864700000733137 ], [ 356825.176600001752377, 258524.292399998754263 ], [ 356803.857400000095367, 258516.422899998724461 ], [ 356801.997299998998642, 258515.707400001585484 ], [ 356795.844800002872944, 258516.136700000613928 ], [ 356793.412399999797344, 258517.996800001710653 ], [ 356791.981600001454353, 258519.999899998307228 ], [ 356789.692199997603893, 258526.295499999076128 ], [ 356789.406099997460842, 258528.155600000172853 ], [ 356790.550700001418591, 258536.597500000149012 ], [ 356792.553900003433228, 258539.888300001621246 ], [ 356791.838500000536442, 258541.462200000882149 ], [ 356789.692199997603893, 258541.748399998992682 ], [ 356785.829000003635883, 258539.315999999642372 ], [ 356778.961099997162819, 258536.883600000292063 ], [ 356772.634999997913837, 258536.165399998426437 ], [ 356770.090000003576279, 258536.568799998611212 ], [ 356766.942199997603893, 258538.142700001597404 ], [ 356763.079000003635883, 258541.862900000065565 ], [ 356755.924800001084805, 258552.164799999445677 ], [ 356747.053700000047684, 258558.460400000214577 ], [ 356733.604000002145767, 258565.35700000077486 ], [ 356724.262000001966953, 258572.375300001353025 ], [ 356728.578100003302097, 258577.183200001716614 ], [ 356756.989799998700619, 258562.022599998861551 ], [ 356765.087899997830391, 258554.697299998253584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102702030100", "MAP": "D9-8138-T008", "PARCEL_NAM": null, "ACRE": ".16", "LONGITUDE": -64.95061235, "LATITUDE": 18.35709232, "OBJECTID_1": 3056, "PARCEL_NO_": "102702030100", "Tax_Legal_": "3B REM (R.O.W.) ST.PETER NO.2 LT NORTHSIDE QTR", "Name": "JOEL BERRY BRYAN REVOCABLE TRUST", "Address": "PO Box 11503", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 15500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 40.581844146900004, "SHAPE_Area": 82.961287140899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356693.073100000619888, 258623.874600000679493 ], [ 356680.606499999761581, 258623.653299998492002 ], [ 356680.518399998545647, 258633.996199999004602 ], [ 356685.356299996376038, 258634.035799998790026 ], [ 356687.001299999654293, 258630.249600000679493 ], [ 356693.073100000619888, 258623.874600000679493 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030900", "MAP": "C9-252-T80", "PARCEL_NAM": "11-F", "ACRE": "0.39", "LONGITUDE": -64.94849614, "LATITUDE": 18.35558695, "OBJECTID_1": 4367, "PARCEL_NO_": "102803030900", "Tax_Legal_": "ST PETER 3A-1 11F SOLBERG", "Name": "LEONARD, BRIAN & GABRIELLE", "Address": "PO Box 11517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 67000, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 159.401094497, "SHAPE_Area": 1301.7591762100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356963.420199997723103, 258428.400299999862909 ], [ 356928.537299998104572, 258396.314699999988079 ], [ 356924.302000001072884, 258414.132100000977516 ], [ 356917.106299996376038, 258446.405999999493361 ], [ 356915.727700002491474, 258452.589000001549721 ], [ 356953.12610000371933, 258438.221599999815226 ], [ 356962.953299999237061, 258428.84569999948144 ], [ 356963.420199997723103, 258428.400299999862909 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030600", "MAP": "C9-252-80", "PARCEL_NAM": "11-M", "ACRE": "0.36", "LONGITUDE": -64.94793712000001, "LATITUDE": 18.35544721, "OBJECTID_1": 4364, "PARCEL_NO_": "102803030600", "Tax_Legal_": "ST PETER 3A-10 & 11-M SOLBERG LT. NORTHSIDE QTR.", "Name": "JOHNSON, NATHALIE G. & WILLIAM E.", "Address": "9746 NW Sunrise Ln", "City": "Portland", "State": "Oregon", "Zip": 97229, "Country": "United States", "Land_Value": 106100, "Improved_V": 559000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 51.704853811900001, "SHAPE_Area": 55.136841336000003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357008.904899999499321, 258411.245400000363588 ], [ 357006.240000002086163, 258407.630800001323223 ], [ 357003.369199998676777, 258409.079700000584126 ], [ 356986.497900001704693, 258419.8277000002563 ], [ 357006.062200002372265, 258412.334199998527765 ], [ 357008.904899999499321, 258411.245400000363588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032100", "MAP": null, "PARCEL_NAM": "11-N", "ACRE": null, "LONGITUDE": -64.94666943, "LATITUDE": 18.35445681, "OBJECTID_1": 4375, "PARCEL_NO_": "102803032100", "Tax_Legal_": "SOLBERG 11-N LT. NORTHSIDE", "Name": "JONES, DOYLE", "Address": "PO BOX 304315", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 62900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 223.87993278100001, "SHAPE_Area": 2101.70005072 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357150.963799998164177, 258286.026500001549721 ], [ 357118.368500001728535, 258295.724300000816584 ], [ 357114.769100002944469, 258300.222800001502037 ], [ 357105.757600001990795, 258316.825500000268221 ], [ 357090.93469999730587, 258353.012200001627207 ], [ 357088.495999999344349, 258355.314300000667572 ], [ 357088.461800001561642, 258359.324799999594688 ], [ 357091.678000003099442, 258360.406599998474121 ], [ 357097.340199999511242, 258358.342000000178814 ], [ 357103.832099996507168, 258353.53999999910593 ], [ 357108.704099997878075, 258349.569099999964237 ], [ 357112.791400000452995, 258343.058600001037121 ], [ 357122.557099997997284, 258332.58390000090003 ], [ 357130.672399997711182, 258326.528599999845028 ], [ 357146.062399998307228, 258318.421900000423193 ], [ 357160.606600001454353, 258314.952300000935793 ], [ 357150.963799998164177, 258286.026500001549721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94606741, "LATITUDE": 18.35424169, "OBJECTID_1": 4255, "PARCEL_NO_": "102803017000", "Tax_Legal_": "SOLBERG 11D-9&11-5 GT. NORTHSIDE", "Name": "COLLINS, JR. W. & WRIGHT, L", "Address": "P O BOX 2119", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 76800, "Improved_V": 204000, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.519973943, "SHAPE_Area": 1629.10205286 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357227.593699999153614, 258308.112500000745058 ], [ 357191.107500001788139, 258274.082899998873472 ], [ 357157.378700003027916, 258284.117899999022484 ], [ 357164.699299998581409, 258307.808699999004602 ], [ 357184.04900000244379, 258308.178100001066923 ], [ 357200.162699997425079, 258309.78770000115037 ], [ 357215.439499996602535, 258314.978900000452995 ], [ 357227.593699999153614, 258308.112500000745058 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94560421, "LATITUDE": 18.35406021, "OBJECTID_1": 4256, "PARCEL_NO_": "102803017100", "Tax_Legal_": "11D-10 ESTATE SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "MORAN, CESAR O. & LAURA M", "Address": "2312 Lakehurst Rd", "City": "Spicewood", "State": "Texas", "Zip": 78669, "Country": "United States", "Land_Value": 76800, "Improved_V": 414700, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 220.878588759, "SHAPE_Area": 2514.7004977699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357279.517599999904633, 258270.962600000202656 ], [ 357266.389700002968311, 258247.534699998795986 ], [ 357230.851400002837181, 258260.203899998217821 ], [ 357196.078500002622604, 258272.600299999117851 ], [ 357196.017300002276897, 258272.622099999338388 ], [ 357191.107500001788139, 258274.082899998873472 ], [ 357227.593699999153614, 258308.112500000745058 ], [ 357235.708800002932549, 258302.057000000029802 ], [ 357242.211400002241135, 258295.988499999046326 ], [ 357243.0320999994874, 258294.306499999016523 ], [ 357251.14919999986887, 258288.040100000798702 ], [ 357264.125699996948242, 258279.2804000005126 ], [ 357279.517599999904633, 258270.962600000202656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94504067, "LATITUDE": 18.35382327, "OBJECTID_1": 4257, "PARCEL_NO_": "102803017200", "Tax_Legal_": "11-D-11 ESTATE SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "JEAN FELIX & LILLIAN GREAUX REVOCABLE FAMILY TRUST", "Address": "PO Box 545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 93200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.425461063, "SHAPE_Area": 1449.37110379 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357326.425700001418591, 258254.670499999076128 ], [ 357325.342500001192093, 258226.518300000578165 ], [ 357323.656000003218651, 258227.119500000029802 ], [ 357266.389700002968311, 258247.534699998795986 ], [ 357279.517599999904633, 258270.962600000202656 ], [ 357304.606799997389317, 258260.191100001335144 ], [ 357326.425700001418591, 258254.670499999076128 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803013100", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94581661, "LATITUDE": 18.35384582, "OBJECTID_1": 4200, "PARCEL_NO_": "102803013100", "Tax_Legal_": "SOLBERG 75 LT. NORTHSIDE", "Name": "JEAN FELIX & LILLIAN GREAUX REVOCABLE FAMILY TRUST", "Address": "PO Box 545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 142.26437135500001, "SHAPE_Area": 1144.00630477 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357229.826700001955032, 258256.381499998271465 ], [ 357223.68639999628067, 258233.477200001478195 ], [ 357218.525499999523163, 258236.688499998301268 ], [ 357186.15429999679327, 258250.355700001120567 ], [ 357179.369099996984005, 258253.283399999141693 ], [ 357189.086000002920628, 258270.504399999976158 ], [ 357191.102399997413158, 258274.078099999576807 ], [ 357191.107500001788139, 258274.082899998873472 ], [ 357196.017300002276897, 258272.622099999338388 ], [ 357196.078500002622604, 258272.600299999117851 ], [ 357230.851400002837181, 258260.203899998217821 ], [ 357229.826700001955032, 258256.381499998271465 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803017300", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9444339, "LATITUDE": 18.35368591, "OBJECTID_1": 4258, "PARCEL_NO_": "102803017300", "Tax_Legal_": "SOLBERG 11D-12 GT. NORTHSIDE", "Name": "BIJANI, P. & B", "Address": "32 Raadets Gade", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 218.71876558, "SHAPE_Area": 2709.4413984399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357390.567100003361702, 258203.265999998897314 ], [ 357325.342500001192093, 258226.518300000578165 ], [ 357326.425700001418591, 258254.670499999076128 ], [ 357332.881599999964237, 258254.089699998497963 ], [ 357347.406000003218651, 258252.94200000166893 ], [ 357357.074600003659725, 258253.865600001066923 ], [ 357370.738799996674061, 258259.043600000441074 ], [ 357377.957800000905991, 258263.535700000822544 ], [ 357399.310300000011921, 258218.114199999719858 ], [ 357390.567100003361702, 258203.265999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803013000", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94546212, "LATITUDE": 18.35369876, "OBJECTID_1": 4199, "PARCEL_NO_": "102803013000", "Tax_Legal_": "SOLBERG 76 LT NORTHSIDE", "Name": "JEAN FELIX & LILLIAN GREAUX REVOCABLE FAMILY TRUST", "Address": "PO Box 545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 52200, "Improved_V": 435800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 127.740593203, "SHAPE_Area": 1026.77337057 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357264.42620000243187, 258244.030499998480082 ], [ 357251.271700002253056, 258219.931499999016523 ], [ 357244.453400000929832, 258222.124099999666214 ], [ 357233.928199999034405, 258227.104200001806021 ], [ 357223.68639999628067, 258233.477200001478195 ], [ 357229.826700001955032, 258256.381499998271465 ], [ 357230.851400002837181, 258260.203899998217821 ], [ 357266.389700002968311, 258247.534699998795986 ], [ 357264.42620000243187, 258244.030499998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803012900", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94510375, "LATITUDE": 18.35357573, "OBJECTID_1": 4198, "PARCEL_NO_": "102803012900", "Tax_Legal_": "SOLBERG 19B LITTLE NORTHSIDE QTR", "Name": "JEAN FELIX & LILLIAN GREAUX REVOCABLE FAMILY TRUST", "Address": "PO Box 545", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 91300, "Improved_V": 447400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.92143499700001, "SHAPE_Area": 2057.5534117100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357324.632500000298023, 258224.708799999207258 ], [ 357312.846100002527237, 258194.671599999070168 ], [ 357305.135399997234344, 258198.133900001645088 ], [ 357270.327299997210503, 258213.892200000584126 ], [ 357259.816500000655651, 258217.183600001037121 ], [ 357251.271700002253056, 258219.931499999016523 ], [ 357264.42620000243187, 258244.030499998480082 ], [ 357266.389700002968311, 258247.534699998795986 ], [ 357323.656000003218651, 258227.119500000029802 ], [ 357325.342600002884865, 258226.5185999982059 ], [ 357324.632500000298023, 258224.708799999207258 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803012800", "MAP": "C9-33-T59", "PARCEL_NAM": "19J", "ACRE": null, "LONGITUDE": -64.9445652, "LATITUDE": 18.35337155, "OBJECTID_1": 4197, "PARCEL_NO_": "102803012800", "Tax_Legal_": "SOLBERG 19J LITTLE NORTHSIDE QTR", "Name": "BOSCHULTE, JOSEPH B. & AISHA B.", "Address": "PO Box 10844", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 112200, "Improved_V": 241400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 206.74761158800001, "SHAPE_Area": 2441.9496833500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357390.567100003361702, 258203.265999998897314 ], [ 357370.702100001275539, 258168.695300001651049 ], [ 357312.846199996769428, 258194.671799998730421 ], [ 357324.632500000298023, 258224.708799999207258 ], [ 357325.342600002884865, 258226.518500000238419 ], [ 357390.567100003361702, 258203.265999998897314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803013200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.9463124, "LATITUDE": 18.3540316, "OBJECTID_1": 4201, "PARCEL_NO_": "102803013200", "Tax_Legal_": "SOLBERG 74 1 LITTLE NORTHSIDE", "Name": "GREGORY, ALLYSON R.", "Address": "PO Box 10938", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 51100, "Improved_V": 295900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.295446231, "SHAPE_Area": 1161.3435648300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357157.378700003027916, 258284.117899999022484 ], [ 357191.107500001788139, 258274.082899998873472 ], [ 357191.102399997413158, 258274.078099999576807 ], [ 357189.086000002920628, 258270.504399999976158 ], [ 357179.369099996984005, 258253.283399999141693 ], [ 357157.827299997210503, 258262.578400000929832 ], [ 357144.861599996685982, 258270.071600001305342 ], [ 357131.062600001692772, 258280.724500000476837 ], [ 357122.918499998748302, 258290.157000001519918 ], [ 357120.474399998784065, 258293.092300001531839 ], [ 357118.368500001728535, 258295.724300000816584 ], [ 357150.963799998164177, 258286.026500001549721 ], [ 357157.378700003027916, 258284.117899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803031000", "MAP": "C9-252-T80", "PARCEL_NAM": "3A-8", "ACRE": "0.54", "LONGITUDE": -64.94795108, "LATITUDE": 18.35632836, "OBJECTID_1": 4368, "PARCEL_NO_": "102803031000", "Tax_Legal_": "ST PETER 3A-8 GT.NORTHSIDE QTR.", "Name": "SULLIVAN, MILDRED R", "Address": "P.O. BOX 2726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.33916136600001, "SHAPE_Area": 2065.5694884300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357016.942500002682209, 258519.592999998480082 ], [ 357012.833200000226498, 258506.348099999129772 ], [ 356959.031700000166893, 258502.231300000101328 ], [ 356961.3716000020504, 258511.538499999791384 ], [ 356959.654600001871586, 258523.767900001257658 ], [ 356949.48759999871254, 258532.782999999821186 ], [ 357006.805399999022484, 258544.771000001579523 ], [ 357021.719099998474121, 258526.809000000357628 ], [ 357020.943400003015995, 258523.214099999517202 ], [ 357016.942500002682209, 258519.592999998480082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030800", "MAP": "C9-252-T80", "PARCEL_NAM": "3A-9", "ACRE": "0.55", "LONGITUDE": -64.94802756, "LATITUDE": 18.35592512, "OBJECTID_1": 4366, "PARCEL_NO_": "102803030800", "Tax_Legal_": "ST PETER 3A-9 LT.NORTHSIDE QTR.", "Name": "SULLIVAN, MILDRED R", "Address": "P.O. BOX 2726", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 81800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 204.272553483, "SHAPE_Area": 2545.4436707099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356999.686999998986721, 258463.976500000804663 ], [ 356958.74549999833107, 258444.750500001013279 ], [ 356953.835299998521805, 258449.626499999314547 ], [ 356951.358800001442432, 258456.361200001090765 ], [ 356952.053599998354912, 258469.454700000584126 ], [ 356959.031700000166893, 258502.231300000101328 ], [ 357012.833200000226498, 258506.348099999129772 ], [ 356999.686999998986721, 258463.976500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032500", "MAP": "C9-127-T71", "PARCEL_NAM": "3A-17", "ACRE": "0.92", "LONGITUDE": -64.9472638, "LATITUDE": 18.35569835, "OBJECTID_1": 4379, "PARCEL_NO_": "102803032500", "Tax_Legal_": "ST PETER 3A-17 LT.NORTHSIDE QTR.", "Name": "GOVERNMENT OF THE V.I.", "Address": "8100 Lindbergh Bay 61", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 154600, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.31273451800001, "SHAPE_Area": 3721.3902845299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357083.891000002622604, 258413.901399999856949 ], [ 357082.123000003397465, 258411.392700001597404 ], [ 357072.916199997067451, 258416.167700000107288 ], [ 357070.692699998617172, 258417.320900000631809 ], [ 357031.879100002348423, 258442.407699998468161 ], [ 357030.676100000739098, 258443.185300000011921 ], [ 357016.876299999654293, 258452.443999998271465 ], [ 357018.056000001728535, 258454.350000001490116 ], [ 357045.673600003123283, 258498.969000000506639 ], [ 357049.4070999994874, 258494.949400000274181 ], [ 357060.796099998056889, 258483.221400000154972 ], [ 357088.405000001192093, 258460.64919999986887 ], [ 357097.357100002467632, 258451.012200001627207 ], [ 357103.086000002920628, 258441.138000000268221 ], [ 357091.189000003039837, 258424.256799999624491 ], [ 357083.891000002622604, 258413.901399999856949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030400", "MAP": "C9-252-T80", "PARCEL_NAM": "3A-11", "ACRE": "0.36", "LONGITUDE": -64.94743484, "LATITUDE": 18.35542239, "OBJECTID_1": 4362, "PARCEL_NO_": "102803030400", "Tax_Legal_": "ST PETER 3A-11 11-L SOLBERG", "Name": "PHILLIP, LERONE AND KATISHA L. PHILLIP", "Address": "PO Box 305436", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 168.310593353, "SHAPE_Area": 1662.6672060599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357063.528300002217293, 258400.831500001251698 ], [ 357058.3175999969244, 258392.319400001317263 ], [ 357053.956299997866154, 258393.989900000393391 ], [ 357008.904899999499321, 258411.245400000363588 ], [ 357031.879100002348423, 258442.407699998468161 ], [ 357070.692699998617172, 258417.320900000631809 ], [ 357072.916199997067451, 258416.167700000107288 ], [ 357063.528300002217293, 258400.831500001251698 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94697838, "LATITUDE": 18.35522884, "OBJECTID_1": 4360, "PARCEL_NO_": "102803030200", "Tax_Legal_": "ST PETER 3A-12 SOLBERG 11K", "Name": "ALI, DANIEL S", "Address": "PO Box 6603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 112200, "Improved_V": 87300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 167.99791450399999, "SHAPE_Area": 1607.9088776599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357093.052199997007847, 258423.086199998855591 ], [ 357118.85809999704361, 258406.872900001704693 ], [ 357117.338799998164177, 258404.272900000214577 ], [ 357105.130900003015995, 258383.381999999284744 ], [ 357100.836900003254414, 258376.033700000494719 ], [ 357058.3175999969244, 258392.319400001317263 ], [ 357063.528300002217293, 258400.831500001251698 ], [ 357072.916199997067451, 258416.167700000107288 ], [ 357082.123000003397465, 258411.392700001597404 ], [ 357083.891000002622604, 258413.901399999856949 ], [ 357091.189000003039837, 258424.256799999624491 ], [ 357093.052199997007847, 258423.086199998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030200", "MAP": "C9-252-T80", "PARCEL_NAM": "11-K", "ACRE": "0.24", "LONGITUDE": -64.9471134, "LATITUDE": 18.35505329, "OBJECTID_1": 4360, "PARCEL_NO_": "102803030200", "Tax_Legal_": "ST PETER 3A-12 SOLBERG 11K", "Name": "ALI, DANIEL S", "Address": "PO Box 6603", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 112200, "Improved_V": 87300, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 117.197847056, "SHAPE_Area": 650.49078437200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357100.836900003254414, 258376.033700000494719 ], [ 357094.790500000119209, 258365.686700001358986 ], [ 357089.196199998259544, 258367.774500001221895 ], [ 357073.86540000140667, 258368.915600001811981 ], [ 357069.013199999928474, 258370.564699999988079 ], [ 357051.67059999704361, 258381.461100000888109 ], [ 357058.317500002682209, 258392.319499999284744 ], [ 357100.836900003254414, 258376.033700000494719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032400", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94660127, "LATITUDE": 18.3550669, "OBJECTID_1": 4378, "PARCEL_NO_": "102803032400", "Tax_Legal_": "3A-13 ST PETER & 11-O SOLBERG LITTLE NORTHSIDE", "Name": "MOUNTAIN TOP INVESTMENTS LLC", "Address": "7840 Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 145.18923500299999, "SHAPE_Area": 1264.440017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357144.840700000524521, 258367.174499999731779 ], [ 357142.920100003480911, 258363.818799998611212 ], [ 357105.311599999666214, 258374.319899998605251 ], [ 357100.836900003254414, 258376.033700000494719 ], [ 357105.130900003015995, 258383.381999999284744 ], [ 357117.338799998164177, 258404.272900000214577 ], [ 357118.85809999704361, 258406.872900001704693 ], [ 357154.369199998676777, 258384.562100000679493 ], [ 357144.840700000524521, 258367.174499999731779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032200", "MAP": "D9-2831-T84", "PARCEL_NAM": "3A-14", "ACRE": ".215", "LONGITUDE": -64.94630992, "LATITUDE": 18.35494467, "OBJECTID_1": 4376, "PARCEL_NO_": "102803032200", "Tax_Legal_": "ST PETER 3A-14 & 11-P SOLBERG LT.NORTHSIDE QTR.", "Name": "CHURCH, PETER & SUZANNE", "Address": "410 Lenwood Dr", "City": "Costa Mesa", "State": "California", "Zip": 92627, "Country": "United States", "Land_Value": 96200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 102.83300571, "SHAPE_Area": 645.64693743600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357177.806000001728535, 258378.42119999974966 ], [ 357173.164399996399879, 258355.374000001698732 ], [ 357142.920100003480911, 258363.818799998611212 ], [ 357144.840700000524521, 258367.174499999731779 ], [ 357154.369000002741814, 258384.562199998646975 ], [ 357177.806000001728535, 258378.42119999974966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032400", "MAP": "D9-2831-T84", "PARCEL_NAM": "11-O", "ACRE": ".233", "LONGITUDE": -64.94669533, "LATITUDE": 18.35486451, "OBJECTID_1": 4378, "PARCEL_NO_": "102803032400", "Tax_Legal_": "3A-13 ST PETER & 11-O SOLBERG LITTLE NORTHSIDE", "Name": "MOUNTAIN TOP INVESTMENTS LLC", "Address": "7840 Mountain Rd", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 111200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 131.543908289, "SHAPE_Area": 839.61243492699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357142.920100003480911, 258363.818799998611212 ], [ 357127.360799998044968, 258336.63399999961257 ], [ 357124.112199999392033, 258339.351599998772144 ], [ 357110.257399998605251, 258356.547899998724461 ], [ 357099.712399996817112, 258363.849800001829863 ], [ 357094.790500000119209, 258365.686700001358986 ], [ 357100.836900003254414, 258376.033700000494719 ], [ 357105.311599999666214, 258374.319899998605251 ], [ 357142.920100003480911, 258363.818799998611212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032200", "MAP": "D9-2831-T84", "PARCEL_NAM": "11-P", "ACRE": ".310", "LONGITUDE": -64.94644168000001, "LATITUDE": 18.35471393, "OBJECTID_1": 4376, "PARCEL_NO_": "102803032200", "Tax_Legal_": "ST PETER 3A-14 & 11-P SOLBERG LT.NORTHSIDE QTR.", "Name": "CHURCH, PETER & SUZANNE", "Address": "410 Lenwood Dr", "City": "Costa Mesa", "State": "California", "Zip": 92627, "Country": "United States", "Land_Value": 96200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 148.97245504599999, "SHAPE_Area": 1013.54081387 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357173.164499998092651, 258355.3739 ], [ 357152.417599998414516, 258329.661899998784065 ], [ 357162.975199997425079, 258320.88230000063777 ], [ 357150.04900000244379, 258323.731899999082088 ], [ 357143.573399998247623, 258326.634199999272823 ], [ 357134.666199997067451, 258330.994199998676777 ], [ 357127.360799998044968, 258336.63399999961257 ], [ 357142.920100003480911, 258363.818799998611212 ], [ 357173.164499998092651, 258355.3739 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102801060100", "MAP": "D9-1598-T80", "PARCEL_NAM": "3A-18", "ACRE": "1.887", "LONGITUDE": -64.94648014000001, "LATITUDE": 18.35564787, "OBJECTID_1": 3995, "PARCEL_NO_": "102801060100", "Tax_Legal_": "ST PETER 3A-4 LT. NORTHSIDE", "Name": "STEPHEN L & PATRICIA A SOLARI 2004 TRUST", "Address": "9230 N Alpine Rd", "City": "Stockton", "State": "California", "Zip": 95212, "Country": "United States", "Land_Value": 93200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 384.99038365199999, "SHAPE_Area": 7093.8159171899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357171.512699998915195, 258454.574400000274181 ], [ 357177.165899999439716, 258453.565200001001358 ], [ 357177.945200003683567, 258456.738000001758337 ], [ 357179.556000001728535, 258456.96229999884963 ], [ 357193.29389999806881, 258453.486200001090765 ], [ 357191.756800003349781, 258444.607599999755621 ], [ 357184.026399999856949, 258405.49210000038147 ], [ 357182.48030000180006, 258397.6689000017941 ], [ 357179.373700000345707, 258383.711300000548363 ], [ 357177.806000001728535, 258378.42119999974966 ], [ 357154.369300000369549, 258384.561999998986721 ], [ 357118.85809999704361, 258406.872900001704693 ], [ 357093.052199997007847, 258423.086199998855591 ], [ 357091.189000003039837, 258424.256799999624491 ], [ 357103.085900001227856, 258441.137899998575449 ], [ 357097.357100002467632, 258451.012200001627207 ], [ 357088.405000001192093, 258460.64919999986887 ], [ 357074.045800000429153, 258472.388900000602007 ], [ 357079.314499996602535, 258478.290100000798702 ], [ 357124.803300000727177, 258480.848999999463558 ], [ 357142.139799997210503, 258481.824200000613928 ], [ 357148.237000003457069, 258479.752000000327826 ], [ 357143.875200003385544, 258467.295800000429153 ], [ 357171.512699998915195, 258454.574400000274181 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030400", "MAP": "C9-252-T80", "PARCEL_NAM": "11-L", "ACRE": "0.16", "LONGITUDE": -64.94754088000001, "LATITUDE": 18.35525358, "OBJECTID_1": 4362, "PARCEL_NO_": "102803030400", "Tax_Legal_": "ST PETER 3A-11 11-L SOLBERG", "Name": "PHILLIP, LERONE AND KATISHA L. PHILLIP", "Address": "PO Box 305436", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 59900, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 122.63668515800001, "SHAPE_Area": 412.97613197300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357058.317500002682209, 258392.319499999284744 ], [ 357051.67059999704361, 258381.461100000888109 ], [ 357047.124099999666214, 258384.317699998617172 ], [ 357028.474600002169609, 258396.408500000834465 ], [ 357006.240000002086163, 258407.630800001323223 ], [ 357008.904899999499321, 258411.245400000363588 ], [ 357053.956299997866154, 258393.989900000393391 ], [ 357058.317500002682209, 258392.319499999284744 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030700", "MAP": "C9-252-T80", "PARCEL_NAM": "11-G", "ACRE": "0.55", "LONGITUDE": -64.94830981, "LATITUDE": 18.35527307, "OBJECTID_1": 4365, "PARCEL_NO_": "102803030700", "Tax_Legal_": "SOLBERG 11-G LT. NORTHSIDE", "Name": "LEONARD, FERNANDO & GAIL", "Address": "PO Box 11517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 110200, "Improved_V": 347100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 190.82658774000001, "SHAPE_Area": 2192.7589971399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356956.561899997293949, 258369.281599998474121 ], [ 356949.513400003314018, 258360.093299999833107 ], [ 356948.65089999884367, 258360.432500001043081 ], [ 356935.720100000500679, 258365.517099998891354 ], [ 356932.665500000119209, 258378.948100000619888 ], [ 356928.537299998104572, 258396.314699999988079 ], [ 356963.420199997723103, 258428.400299999862909 ], [ 356966.946699999272823, 258425.035799998790026 ], [ 356985.612400002777576, 258411.045299999415874 ], [ 356990.466499999165535, 258408.004200000315905 ], [ 356990.354999996721745, 258407.781100001186132 ], [ 356956.561899997293949, 258369.281599998474121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030500", "MAP": "C9-252-T80", "PARCEL_NAM": "11-H", "ACRE": "0.55", "LONGITUDE": -64.94800669, "LATITUDE": 18.35506761, "OBJECTID_1": 4363, "PARCEL_NO_": "102803030500", "Tax_Legal_": "11-H ESTATE SOLBERG No.1 LITTLE NORTHSIDE QTR.", "Name": "MCCOY, BRYAN T and ANGELICA R", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 93200, "Improved_V": 349900, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 193.829205328, "SHAPE_Area": 2173.68054213 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356994.667300000786781, 258353.46169999986887 ], [ 356989.267099998891354, 258344.461300000548363 ], [ 356949.513400003314018, 258360.093299999833107 ], [ 356956.561899997293949, 258369.281599998474121 ], [ 356990.354999996721745, 258407.781100001186132 ], [ 356990.466499999165535, 258408.004200000315905 ], [ 356998.583499997854233, 258402.918800000101328 ], [ 357015.591600000858307, 258394.192099999636412 ], [ 357018.255800001323223, 258392.775800000876188 ], [ 356994.667300000786781, 258353.46169999986887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030300", "MAP": "C9-252-T80", "PARCEL_NAM": "11-I", "ACRE": "0.52", "LONGITUDE": -64.947708, "LATITUDE": 18.35493062, "OBJECTID_1": 4361, "PARCEL_NO_": "102803030300", "Tax_Legal_": "SOLBERG 11-I LT. NORTHSIDE", "Name": "LOPERA, ATTALIA & JAIRO", "Address": "PO BOX 502171", "City": "ST THOMAS", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 107100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 179.02482813500001, "SHAPE_Area": 1936.8189776300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357027.950000002980232, 258337.657900001853704 ], [ 357024.021099999547005, 258330.795299999415874 ], [ 357005.150100000202656, 258338.215799998492002 ], [ 356989.267099998891354, 258344.461300000548363 ], [ 356994.667300000786781, 258353.46169999986887 ], [ 357018.255800001323223, 258392.775800000876188 ], [ 357026.932099997997284, 258388.163199998438358 ], [ 357039.906800001859665, 258379.614599999040365 ], [ 357048.601999998092651, 258373.730099998414516 ], [ 357027.950000002980232, 258337.657900001853704 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803030100", "MAP": "C9-252-T80", "PARCEL_NAM": "11-J", "ACRE": "0.65", "LONGITUDE": -64.94727996, "LATITUDE": 18.35468887, "OBJECTID_1": 4359, "PARCEL_NO_": "102803030100", "Tax_Legal_": "SOLBERG 11-J LITTLE NORTHSIDE", "Name": "STANLEY PARSON ROSE MARIE PARSON REVO FAMILY TRUST", "Address": "PO Box 7501", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 108300, "Improved_V": 483800, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.90171925600001, "SHAPE_Area": 2835.2148388599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357106.707800000905991, 258299.945700000971556 ], [ 357108.322400003671646, 258297.64640000090003 ], [ 357067.774999998509884, 258313.590399999171495 ], [ 357024.021099999547005, 258330.795299999415874 ], [ 357027.950000002980232, 258337.657900001853704 ], [ 357048.601999998092651, 258373.730099998414516 ], [ 357055.316699996590614, 258369.186000000685453 ], [ 357073.950000002980232, 258358.994899999350309 ], [ 357082.07599999755621, 258351.673200000077486 ], [ 357085.337200000882149, 258347.478000000119209 ], [ 357098.518799997866154, 258314.655299998819828 ], [ 357100.968299999833107, 258311.08669999986887 ], [ 357101.801500000059605, 258307.927099999040365 ], [ 357104.245700001716614, 258304.991799999028444 ], [ 357104.279799997806549, 258300.981300000101328 ], [ 357106.707800000905991, 258299.945700000971556 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032600", "MAP": "D9-5354-T92", "PARCEL_NAM": "99-1C", "ACRE": null, "LONGITUDE": -64.94809747, "LATITUDE": 18.35468749, "OBJECTID_1": 4380, "PARCEL_NO_": "102803032600", "Tax_Legal_": "SOLBERG 99-1C\nLITTLE NORTHSIDE", "Name": "BY, FANEL and WILCIA", "Address": "306 Shad Way", "City": "Kissimmee", "State": "Florida", "Zip": 34759, "Country": "United States", "Land_Value": 101200, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.36167601599999, "SHAPE_Area": 2185.3882320799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356996.959399998188019, 258309.602400001138449 ], [ 356995.056500002741814, 258303.913499999791384 ], [ 356982.906199999153614, 258309.25959999859333 ], [ 356943.897900000214577, 258326.423200000077486 ], [ 356934.370600000023842, 258331.652699999511242 ], [ 356937.051399998366833, 258337.398600000888109 ], [ 356948.65089999884367, 258360.432399999350309 ], [ 356949.513400003314018, 258360.093299999833107 ], [ 356989.267099998891354, 258344.461300000548363 ], [ 357005.150100000202656, 258338.215799998492002 ], [ 356996.959399998188019, 258309.602400001138449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032700", "MAP": "D9-5354-T92", "PARCEL_NAM": "99-1B", "ACRE": null, "LONGITUDE": -64.94754154, "LATITUDE": 18.35444738, "OBJECTID_1": 4381, "PARCEL_NO_": "102803032700", "Tax_Legal_": "SOLBERG 99-1B LITTLE NORTHSIDE", "Name": "BENJAMIN, ROY I. & ARNEL G", "Address": "PO Box 12261", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 109300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 213.03912657000001, "SHAPE_Area": 2551.47040771 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357061.694499999284744, 258283.112199999392033 ], [ 357060.638899996876717, 258275.751899998635054 ], [ 357058.586800001561642, 258275.960099998861551 ], [ 356995.056500002741814, 258303.913499999791384 ], [ 356996.959399998188019, 258309.602400001138449 ], [ 357005.150100000202656, 258338.215799998492002 ], [ 357024.021099999547005, 258330.795299999415874 ], [ 357067.774999998509884, 258313.590399999171495 ], [ 357061.694499999284744, 258283.112199999392033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032300", "MAP": "D9-5354-T92", "PARCEL_NAM": "99-1A", "ACRE": null, "LONGITUDE": -64.9470281, "LATITUDE": 18.35425499, "OBJECTID_1": 4377, "PARCEL_NO_": "102803032300", "Tax_Legal_": "SOLBERG 99-1A LT.NORTHSIDE QTR.", "Name": "MURRAINE, ELLEN B", "Address": "PO Box 302298", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 77800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 188.56182149200001, "SHAPE_Area": 1765.4345155599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357131.032700002193451, 258270.688499998301268 ], [ 357127.400100000202656, 258268.978999998420477 ], [ 357060.638899996876717, 258275.751899998635054 ], [ 357061.694499999284744, 258283.112199999392033 ], [ 357067.774999998509884, 258313.590399999171495 ], [ 357108.322400003671646, 258297.64640000090003 ], [ 357117.319300003349781, 258284.83390000090003 ], [ 357123.829099997878075, 258277.921100001782179 ], [ 357131.032700002193451, 258270.688499998301268 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-5", "ACRE": ".509", "LONGITUDE": -64.94861993000001, "LATITUDE": 18.35492826, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 185.709675393, "SHAPE_Area": 1601.0615935799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356937.051399998366833, 258337.398699998855591 ], [ 356934.370600000023842, 258331.652699999511242 ], [ 356890.765799999237061, 258355.587200000882149 ], [ 356880.66950000077486, 258361.129000000655651 ], [ 356877.335199996829033, 258365.574700001627207 ], [ 356873.67400000244379, 258370.456300001591444 ], [ 356876.435300000011921, 258370.500199999660254 ], [ 356887.359499998390675, 258370.674100000411272 ], [ 356934.376999996602535, 258371.422400001436472 ], [ 356935.720100000500679, 258365.517099998891354 ], [ 356948.65089999884367, 258360.432500001043081 ], [ 356937.051399998366833, 258337.398699998855591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-6", "ACRE": ".664", "LONGITUDE": -64.94885811, "LATITUDE": 18.35528693, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 245.832211634, "SHAPE_Area": 2936.8069797100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356876.435300000011921, 258370.500199999660254 ], [ 356873.67400000244379, 258370.456300001591444 ], [ 356863.459200002253056, 258384.0760000012815 ], [ 356853.144100002944469, 258397.829500000923872 ], [ 356850.672899998724461, 258402.076400000602007 ], [ 356838.731700003147125, 258422.597500000149012 ], [ 356841.494999997317791, 258421.954900000244379 ], [ 356854.536200001835823, 258418.922100000083447 ], [ 356927.179099999368191, 258402.028400000184774 ], [ 356931.361100003123283, 258384.435400001704693 ], [ 356932.665399998426437, 258378.94819999858737 ], [ 356934.376999996602535, 258371.422400001436472 ], [ 356887.359499998390675, 258370.674100000411272 ], [ 356876.435300000011921, 258370.500199999660254 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702036200", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-5", "ACRE": ".625", "LONGITUDE": -64.95069959, "LATITUDE": 18.3568586, "OBJECTID_1": 3093, "PARCEL_NO_": "102702036200", "Tax_Legal_": "3B-5 ST.PETER NO.2 LT NORTHISDE QTR", "Name": "AUBIN, CYNTHIA ANN BRYAN", "Address": "PO BOX 8313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 57300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 239.75230413899999, "SHAPE_Area": 2597.5076804400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356686.419299997389317, 258523.985399998724461 ], [ 356685.221600003540516, 258522.453899998217821 ], [ 356679.842000000178814, 258524.084399998188019 ], [ 356675.226800002157688, 258525.483199998736382 ], [ 356676.461499996483326, 258548.014199998229742 ], [ 356680.606499999761581, 258623.653499998152256 ], [ 356697.118000000715256, 258606.39299999922514 ], [ 356717.006499998271465, 258578.635000001639128 ], [ 356724.262100003659725, 258572.375500001013279 ], [ 356686.419299997389317, 258523.985399998724461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704052200", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-12", "ACRE": "0.58", "LONGITUDE": -64.95100321, "LATITUDE": 18.35624234, "OBJECTID_1": 3638, "PARCEL_NO_": "102704052200", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-12 LITTLE NORTHSIDE QTR", "Name": "DANIEL, MICHAEL A.", "Address": "PO Box 11609", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 47900, "Improved_V": 358500, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 250.09400166699999, "SHAPE_Area": 2458.9444647199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356675.226800002157688, 258525.483500000089407 ], [ 356677.109200000762939, 258505.30009999871254 ], [ 356687.9628000035882, 258492.581999998539686 ], [ 356682.943599998950958, 258485.551600001752377 ], [ 356667.200900003314018, 258465.575500000268221 ], [ 356665.232900001108646, 258443.53489999845624 ], [ 356660.312399998307228, 258450.179400000721216 ], [ 356657.065200001001358, 258456.670499999076128 ], [ 356656.210699997842312, 258458.378499999642372 ], [ 356652.886500000953674, 258469.961399998515844 ], [ 356648.547499999403954, 258506.022900000214577 ], [ 356642.644400000572205, 258536.372099999338388 ], [ 356642.058899998664856, 258538.061799999326468 ], [ 356644.235399998724461, 258538.918200001120567 ], [ 356676.461499996483326, 258548.014299999922514 ], [ 356675.226800002157688, 258525.483500000089407 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704051800", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-10", "ACRE": "0.54", "LONGITUDE": -64.95039608, "LATITUDE": 18.3554726, "OBJECTID_1": 3634, "PARCEL_NO_": "102704051800", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-10 LITTLE NORTHSIDE QTR", "Name": "APEX CONSTRUCTION COMPANY INC", "Address": "PO Box 305048", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 45200, "Improved_V": 360400, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.574915941, "SHAPE_Area": 2336.4331761100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356753.069499999284744, 258416.288400001823902 ], [ 356743.16950000077486, 258381.548500001430511 ], [ 356741.440099999308586, 258383.093600001186132 ], [ 356735.833499997854233, 258388.102699998766184 ], [ 356722.855200000107288, 258397.073499999940395 ], [ 356703.390399999916553, 258410.213100001215935 ], [ 356701.898100003600121, 258411.365100000053644 ], [ 356703.596400000154972, 258443.349399998784065 ], [ 356708.845899999141693, 258468.110599998384714 ], [ 356753.069499999284744, 258416.288400001823902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704051600", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-9", "ACRE": "0.51", "LONGITUDE": -64.94995189, "LATITUDE": 18.35496967, "OBJECTID_1": 3632, "PARCEL_NO_": "102704051600", "Tax_Legal_": "10-2-9 LILLIENDAHL & MARIENHOJ LITTLE NORTHSIDE QUARTER", "Name": "RICHARD L & MICHELLE A SIGLE REVOC LIVING TRUST", "Address": "6501 Red Hook Plz", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 43200, "Improved_V": 467200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 210.62314425400001, "SHAPE_Area": 2098.3037871299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356804.343900002539158, 258344.813000001013279 ], [ 356765.56360000371933, 258340.980099998414516 ], [ 356763.589800000190735, 258348.222100000828505 ], [ 356758.638599999248981, 258361.480500001460314 ], [ 356754.535099998116493, 258369.890700001269579 ], [ 356749.646899998188019, 258375.761300001293421 ], [ 356743.16950000077486, 258381.548500001430511 ], [ 356753.069499999284744, 258416.288400001823902 ], [ 356762.117200002074242, 258405.686099998652935 ], [ 356767.800599999725819, 258399.026200000196695 ], [ 356785.253300003707409, 258376.587099999189377 ], [ 356804.343900002539158, 258344.813000001013279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704051500", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-8", "ACRE": "0.52", "LONGITUDE": -64.94969294000001, "LATITUDE": 18.35447699, "OBJECTID_1": 3631, "PARCEL_NO_": "102704051500", "Tax_Legal_": "LILLIENDAHL & MARHJ 10-2-8 LT. NORTHSIDE", "Name": "HOLDER, WENDY", "Address": "PO Box 502313", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 805, "Country": "United States", "Land_Value": 43800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 189.97843434399999, "SHAPE_Area": 2143.8054887100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356822.15990000218153, 258296.494699999690056 ], [ 356819.101599998772144, 258287.101500000804663 ], [ 356767.945000000298023, 258310.260899998247623 ], [ 356770.317199997603893, 258315.768800001591444 ], [ 356768.55349999666214, 258333.486200001090765 ], [ 356766.919299997389317, 258336.006000000983477 ], [ 356765.56360000371933, 258340.980099998414516 ], [ 356804.343800000846386, 258344.813099998980761 ], [ 356810.858800001442432, 258339.388000000268221 ], [ 356814.05009999871254, 258332.606699999421835 ], [ 356815.498800002038479, 258326.247099999338388 ], [ 356822.228000000119209, 258296.70380000025034 ], [ 356822.15990000218153, 258296.494699999690056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702035400", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-3B", "ACRE": ".597", "LONGITUDE": -64.94904425, "LATITUDE": 18.35610261, "OBJECTID_1": 3087, "PARCEL_NO_": "102702035400", "Tax_Legal_": "3B-3B ST.PETER NO.2 LT NORTHSIDE", "Name": "BERRY SR., ROBERT S.", "Address": "2E-3 LERKENLUND", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 802, "Country": "United States", "Land_Value": 58700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 229.54638141699999, "SHAPE_Area": 2308.45374077 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356915.728000000119209, 258452.588799998164177 ], [ 356837.168700002133846, 258476.399700000882149 ], [ 356839.063199996948242, 258493.909400001168251 ], [ 356842.693999998271465, 258519.813700001686811 ], [ 356910.739799998700619, 258471.495000001043081 ], [ 356911.508299998939037, 258471.584399998188019 ], [ 356913.402800001204014, 258463.016600001603365 ], [ 356915.728000000119209, 258452.588799998164177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704051400", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-7", "ACRE": "0.52", "LONGITUDE": -64.94980543, "LATITUDE": 18.35415042, "OBJECTID_1": 3630, "PARCEL_NO_": "102704051400", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-7 LT. NORTHSIDE", "Name": "CONNOR, ANTONIOUS M. & ADELINE", "Address": "PO Box 11397", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 40400, "Improved_V": 336100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 182.611107191, "SHAPE_Area": 1956.3032315299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356819.101599998772144, 258287.101500000804663 ], [ 356813.850699998438358, 258270.973600000143051 ], [ 356797.780900001525879, 258255.42790000140667 ], [ 356782.834499999880791, 258266.264199998229742 ], [ 356767.449799999594688, 258273.737700000405312 ], [ 356753.702899999916553, 258278.269200000911951 ], [ 356752.075900003314018, 258279.944699998944998 ], [ 356752.056100003421307, 258282.266499999910593 ], [ 356760.828500002622604, 258293.737399999052286 ], [ 356763.195299997925758, 258299.878499999642372 ], [ 356767.153099998831749, 258308.565699998289347 ], [ 356767.945000000298023, 258310.260899998247623 ], [ 356819.101599998772144, 258287.101500000804663 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803034000", "MAP": "D9-8070-T008", "PARCEL_NAM": "99-REM", "ACRE": "6.259", "LONGITUDE": -64.94760066000001, "LATITUDE": 18.35384285, "OBJECTID_1": 4390, "PARCEL_NO_": "102803034000", "Tax_Legal_": "99 REM ESTATE SOLBERG NO.1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, CHRISTIAN g. & ERMIN S. (TRUSTEES)", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 312500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 960.02755772, "SHAPE_Area": 28217.9047102 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356824.501199997961521, 258331.592199999839067 ], [ 356825.022399999201298, 258330.782000001519918 ], [ 356825.948100000619888, 258331.451799999922514 ], [ 356901.019400000572205, 258324.166900001466274 ], [ 356924.994599997997284, 258321.840300001204014 ], [ 356938.711999997496605, 258314.25620000064373 ], [ 356987.180500000715256, 258293.313000001013279 ], [ 357057.390100002288818, 258262.5962999984622 ], [ 357144.753100000321865, 258255.615299999713898 ], [ 357152.140399999916553, 258257.653200000524521 ], [ 357170.047899998724461, 258247.901900000870228 ], [ 357214.549699999392033, 258230.111999999731779 ], [ 357222.652400001883507, 258225.534299999475479 ], [ 357225.094700001180172, 258222.810100000351667 ], [ 357225.947800002992153, 258217.328600000590086 ], [ 357224.362099997699261, 258214.14919999986887 ], [ 357193.004000000655651, 258203.5489999987185 ], [ 357187.397600002586842, 258199.070199999958277 ], [ 357185.007399998605251, 258195.673099998384714 ], [ 357182.680200003087521, 258184.888300001621246 ], [ 357183.709799997508526, 258172.896800000220537 ], [ 357060.913800001144409, 258170.447599999606609 ], [ 357029.173100002110004, 258221.970100000500679 ], [ 356877.493299998342991, 258244.566799998283386 ], [ 356838.457299999892712, 258281.200399998575449 ], [ 356822.15990000218153, 258296.494699999690056 ], [ 356822.228000000119209, 258296.70380000025034 ], [ 356815.498800002038479, 258326.247099999338388 ], [ 356814.049999997019768, 258332.606600001454353 ], [ 356824.501199997961521, 258331.592199999839067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704014200", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.95105674, "LATITUDE": 18.35727792, "OBJECTID_1": 3467, "PARCEL_NO_": "102704014200", "Tax_Legal_": "LILLIENDAHL&MARIENHOJ 10-1REMAINDER No.3 GREAT NORTHSIDE QTR.", "Name": "INDUSTRIOUS, JUULIAN SR. & JULIAN JR. & FELICE & AYALA,KIMBERLY", "Address": "PO Box 304985", "City": "ST. THOMAS", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 185300, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 425.519392891, "SHAPE_Area": 6787.3310722400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356680.606499999761581, 258623.653599999845028 ], [ 356676.461400002241135, 258548.013999998569489 ], [ 356644.235399998724461, 258538.918200001120567 ], [ 356642.058899998664856, 258538.061799999326468 ], [ 356640.164300002157688, 258543.528999999165535 ], [ 356640.131899997591972, 258547.328400000929832 ], [ 356637.664399996399879, 258553.007699999958277 ], [ 356635.970899999141693, 258562.493099998682737 ], [ 356635.819799996912479, 258580.223700001835823 ], [ 356640.931800000369549, 258642.749200001358986 ], [ 356638.928900003433228, 258688.540100000798702 ], [ 356637.2820999994874, 258692.537399999797344 ], [ 356631.634300000965595, 258715.530900001525879 ], [ 356647.246100001037121, 258705.732299998402596 ], [ 356680.711499996483326, 258705.980700001120567 ], [ 356680.939900003373623, 258679.173700001090765 ], [ 356680.518399998545647, 258633.996199999004602 ], [ 356680.606499999761581, 258623.653599999845028 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-1", "ACRE": ".598", "LONGITUDE": -64.94904933, "LATITUDE": 18.35466394, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 270.434824746, "SHAPE_Area": 2496.3098038899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356917.483300000429153, 258325.992899999022484 ], [ 356924.994599997997284, 258321.840300001204014 ], [ 356901.019400000572205, 258324.166900001466274 ], [ 356825.948100000619888, 258331.451799999922514 ], [ 356824.501199997961521, 258331.592199999839067 ], [ 356814.049900002777576, 258332.6064000017941 ], [ 356810.858800001442432, 258339.388000000268221 ], [ 356804.343599997460842, 258344.813099998980761 ], [ 356813.158900000154972, 258349.225299999117851 ], [ 356851.01240000128746, 258368.172400001436472 ], [ 356859.179099999368191, 258369.144600000232458 ], [ 356865.727099999785423, 258360.233899999409914 ], [ 356872.691100001335144, 258350.757199998944998 ], [ 356917.483300000429153, 258325.992899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704051300", "MAP": "A9-338-T86", "PARCEL_NAM": "10-2-6", "ACRE": ".509", "LONGITUDE": -64.94935178, "LATITUDE": 18.35376021, "OBJECTID_1": 3629, "PARCEL_NO_": "102704051300", "Tax_Legal_": "LILLIEND & MARIENHOJ 10-2-6 GT. NORTHSIDE", "Name": "SMITH, NOEL & BUSSCHE, EIKE V", "Address": "PO Box 11416", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 801, "Country": "United States", "Land_Value": 41000, "Improved_V": 332200, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 297.167891242, "SHAPE_Area": 4039.5336291 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356877.493400000035763, 258244.566700000315905 ], [ 356835.188299998641014, 258178.666700001806021 ], [ 356816.157600000500679, 258235.50620000064373 ], [ 356819.348700001835823, 258239.543099999427795 ], [ 356817.692900002002716, 258244.595800001174212 ], [ 356816.060500003397465, 258246.904500000178814 ], [ 356812.010999999940395, 258248.982299998402596 ], [ 356804.741599999368191, 258250.400400001555681 ], [ 356802.312899999320507, 258252.14979999884963 ], [ 356800.684799998998642, 258253.322500001639128 ], [ 356797.780900001525879, 258255.42790000140667 ], [ 356813.850699998438358, 258270.973600000143051 ], [ 356819.101599998772144, 258287.101500000804663 ], [ 356822.15990000218153, 258296.494699999690056 ], [ 356838.457299999892712, 258281.200399998575449 ], [ 356877.493400000035763, 258244.566700000315905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102704052000", "MAP": "A9-338-T86", "PARCEL_NAM": "10-21-11", "ACRE": "0.53", "LONGITUDE": -64.9508006, "LATITUDE": 18.35579285, "OBJECTID_1": 3636, "PARCEL_NO_": "102704052000", "Tax_Legal_": "LILLIENDAHL & MARIENHOJ 10-2-11 LITTLE NORTHSIDE", "Name": "OTTLEY, LIONEL & BERNADETTE", "Address": "PO Box 306845", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 44500, "Improved_V": 562100, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 194.60260785200001, "SHAPE_Area": 2116.28496584 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356708.845899999141693, 258468.110599998384714 ], [ 356703.596400000154972, 258443.349399998784065 ], [ 356701.898100003600121, 258411.365100000053644 ], [ 356690.403099998831749, 258420.23930000141263 ], [ 356675.783399999141693, 258432.574200000613928 ], [ 356666.83839999884367, 258441.366900000721216 ], [ 356665.232900001108646, 258443.53489999845624 ], [ 356667.200900003314018, 258465.575500000268221 ], [ 356682.943599998950958, 258485.551600001752377 ], [ 356687.962700001895428, 258492.581999998539686 ], [ 356708.845899999141693, 258468.110599998384714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702035100", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-1A", "ACRE": ".637", "LONGITUDE": -64.95029557, "LATITUDE": 18.35657703, "OBJECTID_1": 3085, "PARCEL_NO_": "102702035100", "Tax_Legal_": "ST PETER 3B-1A LT NORTHSIDE", "Name": "LAPORT, MARCELO & DANIELLA SCHMEISKE", "Address": "PO Box 304743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 240.75476166199999, "SHAPE_Area": 3448.7717020599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356767.57940000295639, 258521.441500000655651 ], [ 356758.975299999117851, 258500.099599998444319 ], [ 356743.457599997520447, 258504.80290000140667 ], [ 356741.936099998652935, 258505.314599998295307 ], [ 356741.927599996328354, 258505.266600001603365 ], [ 356685.221600003540516, 258522.453899998217821 ], [ 356686.419299997389317, 258523.985399998724461 ], [ 356724.262199997901917, 258572.375599998980761 ], [ 356733.604000002145767, 258565.35700000077486 ], [ 356747.053700000047684, 258558.460400000214577 ], [ 356755.924800001084805, 258552.164799999445677 ], [ 356763.079000003635883, 258541.862900000065565 ], [ 356766.942199997603893, 258538.142700001597404 ], [ 356770.090000003576279, 258536.568799998611212 ], [ 356772.634999997913837, 258536.165399998426437 ], [ 356767.57940000295639, 258521.441500000655651 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702035300", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-2A", "ACRE": ".505", "LONGITUDE": -64.94942703, "LATITUDE": 18.35665467, "OBJECTID_1": 3086, "PARCEL_NO_": "102702035300", "Tax_Legal_": "ST PETER 3B-2 LT NORTHSIDE", "Name": "TARANTINO, MICHAEL", "Address": "PO Box 302517", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 97700, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 264.42486573899998, "SHAPE_Area": 2908.0735785900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356837.168700002133846, 258476.399700000882149 ], [ 356758.975299999117851, 258500.099599998444319 ], [ 356767.57940000295639, 258521.441500000655651 ], [ 356772.634999997913837, 258536.165399998426437 ], [ 356778.961099997162819, 258536.883600000292063 ], [ 356785.829000003635883, 258539.315999999642372 ], [ 356789.692199997603893, 258541.748399998992682 ], [ 356791.838500000536442, 258541.462200000882149 ], [ 356792.553900003433228, 258539.888300001621246 ], [ 356790.550700001418591, 258536.597500000149012 ], [ 356789.406099997460842, 258528.155600000172853 ], [ 356789.692199997603893, 258526.295499999076128 ], [ 356791.981600001454353, 258519.999899998307228 ], [ 356793.412399999797344, 258517.996800001710653 ], [ 356795.844800002872944, 258516.136700000613928 ], [ 356801.997299998998642, 258515.707400001585484 ], [ 356803.857400000095367, 258516.422899998724461 ], [ 356825.176600001752377, 258524.292399998754263 ], [ 356828.324400000274181, 258524.864700000733137 ], [ 356831.758400000631809, 258524.864700000733137 ], [ 356834.047700002789497, 258524.435499999672174 ], [ 356835.335500001907349, 258523.863099999725819 ], [ 356836.909400001168251, 258522.861600000411272 ], [ 356836.76630000025034, 258520.14299999922514 ], [ 356842.693999998271465, 258519.813700001686811 ], [ 356839.063199996948242, 258493.909400001168251 ], [ 356837.168700002133846, 258476.399700000882149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "102803034000", "MAP": "D9-5354-T92", "PARCEL_NAM": "ROW 99-2", "ACRE": null, "LONGITUDE": -64.94727179, "LATITUDE": 18.35415366, "OBJECTID_1": 4390, "PARCEL_NO_": "102803034000", "Tax_Legal_": "99 REM ESTATE SOLBERG NO.1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, CHRISTIAN g. & ERMIN S. (TRUSTEES)", "Address": "PO Box 440", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 804, "Country": "United States", "Land_Value": 312500, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 1059.77675391, "SHAPE_Area": 6304.6674651599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356830.438199996948242, 258400.793800000101328 ], [ 356840.988399997353554, 258394.233199998736382 ], [ 356839.807099997997284, 258396.269600000232458 ], [ 356829.335799999535084, 258414.320999998599291 ], [ 356815.645900003612041, 258437.920699998736382 ], [ 356826.217200003564358, 258444.103900000452995 ], [ 356850.672899998724461, 258402.076400000602007 ], [ 356853.144100002944469, 258397.829500000923872 ], [ 356863.459200002253056, 258384.0760000012815 ], [ 356877.335199996829033, 258365.574700001627207 ], [ 356880.66950000077486, 258361.129000000655651 ], [ 356890.765799999237061, 258355.587200000882149 ], [ 356943.897900000214577, 258326.423200000077486 ], [ 356982.906199999153614, 258309.25959999859333 ], [ 357058.586800001561642, 258275.960099998861551 ], [ 357127.400100000202656, 258268.978999998420477 ], [ 357131.032700002193451, 258270.688499998301268 ], [ 357131.962399996817112, 258269.754999998956919 ], [ 357143.313699997961521, 258262.459600001573563 ], [ 357152.140399999916553, 258257.653200000524521 ], [ 357144.753100000321865, 258255.615299999713898 ], [ 357057.390100002288818, 258262.5962999984622 ], [ 356987.180500000715256, 258293.313000001013279 ], [ 356938.711999997496605, 258314.25620000064373 ], [ 356917.483300000429153, 258325.992899999022484 ], [ 356872.691100001335144, 258350.757199998944998 ], [ 356865.727099999785423, 258360.233899999409914 ], [ 356853.343599997460842, 258377.085700001567602 ], [ 356853.284500002861023, 258377.165199998766184 ], [ 356833.567199997603893, 258387.094700001180172 ], [ 356823.641800001263618, 258392.093100000172853 ], [ 356773.435900002717972, 258429.909000001847744 ], [ 356763.74549999833107, 258439.386199999600649 ], [ 356752.889600001275539, 258452.449299998581409 ], [ 356745.715899996459484, 258461.081599999219179 ], [ 356745.202799998223782, 258467.902899999171495 ], [ 356747.071000002324581, 258468.006499998271465 ], [ 356754.812100000679493, 258468.435699999332428 ], [ 356755.28830000013113, 258466.16440000012517 ], [ 356771.006999999284744, 258447.180500000715256 ], [ 356778.855400003492832, 258439.05350000038743 ], [ 356817.085600003600121, 258410.241300001740456 ], [ 356826.478399999439716, 258403.595499999821186 ], [ 356830.438199996948242, 258400.793800000101328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-2", "ACRE": ".522", "LONGITUDE": -64.94936273, "LATITUDE": 18.35491254, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.5596693825000001, "SHAPE_Area": 0.5495509498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356825.948100000619888, 258331.451799999922514 ], [ 356825.022399999201298, 258330.782000001519918 ], [ 356824.501199997961521, 258331.592199999839067 ], [ 356825.948100000619888, 258331.451799999922514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-9", "ACRE": ".835", "LONGITUDE": -64.94995443000001, "LATITUDE": 18.35602543, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 3.25271170718, "SHAPE_Area": 0.03869072304 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356743.457599997520447, 258504.80290000140667 ], [ 356741.927599996328354, 258505.266600001603365 ], [ 356741.936099998652935, 258505.314599998295307 ], [ 356743.457599997520447, 258504.80290000140667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702035100", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-1A", "ACRE": ".637", "LONGITUDE": -64.95029557, "LATITUDE": 18.35657703, "OBJECTID_1": 3085, "PARCEL_NO_": "102702035100", "Tax_Legal_": "ST PETER 3B-1A LT NORTHSIDE", "Name": "LAPORT, MARCELO & DANIELLA SCHMEISKE", "Address": "PO Box 304743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 24.723130314, "SHAPE_Area": 3.6934559828500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356747.400700002908707, 258503.476799998432398 ], [ 356747.408600002527237, 258503.605399999767542 ], [ 356758.975299999117851, 258500.099599998444319 ], [ 356758.792300000786781, 258499.645700000226498 ], [ 356747.400700002908707, 258503.476799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102702035100", "MAP": "D9-8138-T008", "PARCEL_NAM": "3B-1A", "ACRE": ".637", "LONGITUDE": -64.95029557, "LATITUDE": 18.35657703, "OBJECTID_1": 3085, "PARCEL_NO_": "102702035100", "Tax_Legal_": "ST PETER 3B-1A LT NORTHSIDE", "Name": "LAPORT, MARCELO & DANIELLA SCHMEISKE", "Address": "PO Box 304743", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 72100, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 8.4174473642399992, "SHAPE_Area": 0.25877942774000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356747.408600002527237, 258503.605399999767542 ], [ 356747.400700002908707, 258503.476799998432398 ], [ 356743.457599997520447, 258504.80290000140667 ], [ 356747.408600002527237, 258503.605399999767542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-8", "ACRE": ".745", "LONGITUDE": -64.94951003, "LATITUDE": 18.35576394, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 258.131377724, "SHAPE_Area": 2319.93582 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356839.807099997997284, 258396.269600000232458 ], [ 356840.988399997353554, 258394.233199998736382 ], [ 356830.438199996948242, 258400.793800000101328 ], [ 356826.478399999439716, 258403.595499999821186 ], [ 356817.085600003600121, 258410.241300001740456 ], [ 356800.676299996674061, 258422.608199998736382 ], [ 356790.833200000226498, 258438.247800000011921 ], [ 356805.870700001716614, 258483.812800001353025 ], [ 356806.492700003087521, 258485.697399999946356 ], [ 356837.168700002133846, 258476.399700000882149 ], [ 356846.519199997186661, 258473.565600000321865 ], [ 356844.557499997317791, 258470.802200000733137 ], [ 356826.217000000178814, 258444.10359999909997 ], [ 356815.645900003612041, 258437.920699998736382 ], [ 356829.335799999535084, 258414.320999998599291 ], [ 356839.807099997997284, 258396.269600000232458 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-7", "ACRE": "1.021", "LONGITUDE": -64.94899681, "LATITUDE": 18.35568771, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 275.62986493300002, "SHAPE_Area": 4363.6712078 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356924.302000001072884, 258414.132100000977516 ], [ 356927.179099999368191, 258402.028400000184774 ], [ 356854.536200001835823, 258418.922100000083447 ], [ 356841.494999997317791, 258421.954900000244379 ], [ 356838.731700003147125, 258422.597500000149012 ], [ 356826.217000000178814, 258444.10359999909997 ], [ 356844.5574000030756, 258470.802200000733137 ], [ 356846.519199997186661, 258473.565600000321865 ], [ 356915.728000000119209, 258452.588799998164177 ], [ 356917.106299996376038, 258446.405999999493361 ], [ 356922.844400003552437, 258420.669799998402596 ], [ 356924.302000001072884, 258414.132100000977516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-4", "ACRE": ".755", "LONGITUDE": -64.95050237, "LATITUDE": 18.35619511, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 287.43862619200002, "SHAPE_Area": 3662.3152124200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356751.465999998152256, 258434.681800000369549 ], [ 356742.643399998545647, 258428.505899999290705 ], [ 356708.845899999141693, 258468.110599998384714 ], [ 356687.9628000035882, 258492.581999998539686 ], [ 356677.109200000762939, 258505.300299998372793 ], [ 356675.226800002157688, 258525.483500000089407 ], [ 356679.842000000178814, 258524.084399998188019 ], [ 356741.927599996328354, 258505.266600001603365 ], [ 356743.457599997520447, 258504.80290000140667 ], [ 356747.400700002908707, 258503.476799998432398 ], [ 356745.337999999523163, 258470.09180000051856 ], [ 356745.202799998223782, 258467.90260000154376 ], [ 356745.715899996459484, 258461.081599999219179 ], [ 356752.889600001275539, 258452.449299998581409 ], [ 356761.701099999248981, 258441.8462999984622 ], [ 356751.465999998152256, 258434.681800000369549 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-3", "ACRE": ".649", "LONGITUDE": -64.94980657000001, "LATITUDE": 18.35530242, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 212.183266882, "SHAPE_Area": 2166.7798998200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356795.728000000119209, 258376.323899999260902 ], [ 356788.554799996316433, 258371.092000000178814 ], [ 356785.253300003707409, 258376.587099999189377 ], [ 356767.800599999725819, 258399.026200000196695 ], [ 356762.117200002074242, 258405.686099998652935 ], [ 356753.069499999284744, 258416.288400001823902 ], [ 356742.643399998545647, 258428.505899999290705 ], [ 356751.465999998152256, 258434.681800000369549 ], [ 356761.701099999248981, 258441.8462999984622 ], [ 356763.74549999833107, 258439.386199999600649 ], [ 356773.435900002717972, 258429.909000001847744 ], [ 356820.545800000429153, 258394.425000000745058 ], [ 356795.728000000119209, 258376.323899999260902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-9", "ACRE": ".835", "LONGITUDE": -64.94995443000001, "LATITUDE": 18.35602543, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 241.46175568800001, "SHAPE_Area": 2517.81952099 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356747.400700002908707, 258503.476799998432398 ], [ 356758.792300000786781, 258499.645700000226498 ], [ 356758.975299999117851, 258500.099599998444319 ], [ 356806.492700003087521, 258485.697399999946356 ], [ 356805.870700001716614, 258483.812800001353025 ], [ 356790.833200000226498, 258438.247800000011921 ], [ 356800.676299996674061, 258422.608199998736382 ], [ 356778.855400003492832, 258439.05350000038743 ], [ 356771.006999999284744, 258447.180500000715256 ], [ 356755.28830000013113, 258466.16440000012517 ], [ 356754.812100000679493, 258468.435699999332428 ], [ 356747.071000002324581, 258468.006499998271465 ], [ 356745.202799998223782, 258467.90260000154376 ], [ 356745.337999999523163, 258470.09180000051856 ], [ 356747.400700002908707, 258503.476799998432398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "102803032800", "MAP": "D9-8818-T013", "PARCEL_NAM": "99-5-2", "ACRE": ".522", "LONGITUDE": -64.94936273, "LATITUDE": 18.35491254, "OBJECTID_1": 4382, "PARCEL_NO_": "102803032800", "Tax_Legal_": "99-5 ESTATE SOLBERG 1 LT NORTHSIDE QTR", "Name": "BOSCHULTE, JAMES T.", "Address": "P.O. BOX 3190", "City": "St Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 345800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 177.68543256300001, "SHAPE_Area": 1763.95815382 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 356813.158900000154972, 258349.225299999117851 ], [ 356804.343599997460842, 258344.812899999320507 ], [ 356788.554799996316433, 258371.092000000178814 ], [ 356795.728000000119209, 258376.323899999260902 ], [ 356820.545800000429153, 258394.425000000745058 ], [ 356823.641800001263618, 258392.093100000172853 ], [ 356833.567199997603893, 258387.094700001180172 ], [ 356853.284500002861023, 258377.165199998766184 ], [ 356853.343800000846386, 258377.085400000214577 ], [ 356859.179099999368191, 258369.144600000232458 ], [ 356851.01240000128746, 258368.172400001436472 ], [ 356813.158900000154972, 258349.225299999117851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "103103021500", "MAP": "C9-322-T91", "PARCEL_NAM": "14A-1", "ACRE": ".50", "LONGITUDE": -64.89691598, "LATITUDE": 18.35426448, "OBJECTID_1": 6524, "PARCEL_NO_": "103103021500", "Tax_Legal_": "14A-1 MANDAHL NO.1 GREAT NORTHSIDE QTR", "Name": "JONELLE O. & LACIBA J. PICKERING", "Address": "PO Box 304813", "City": "St. Thomas", "State": "U.S.Virgin Islands", "Zip": 803, "Country": "United States", "Land_Value": 47800, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 195.71164962, "SHAPE_Area": 2570.9821448900002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 362382.494699999690056, 258366.951499998569489 ], [ 362403.125200003385544, 258358.257599998265505 ], [ 362412.964699998497963, 258352.382399998605251 ], [ 362416.817299999296665, 258345.662500001490116 ], [ 362417.454899996519089, 258341.100299999117851 ], [ 362415.505400002002716, 258335.324700001627207 ], [ 362411.543099999427795, 258331.319600000977516 ], [ 362382.775799997150898, 258307.04839999973774 ], [ 362354.411300003528595, 258317.711500000208616 ], [ 362366.0574000030756, 258369.588799998164177 ], [ 362380.594400003552437, 258366.963599998503923 ], [ 362382.494699999690056, 258366.951499998569489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94618631, "LATITUDE": 18.3543655, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 169.43428044300001, "SHAPE_Area": 547.23236453000004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357157.378700003027916, 258284.117899999022484 ], [ 357150.963799998164177, 258286.026500001549721 ], [ 357160.606600001454353, 258314.952300000935793 ], [ 357185.595100000500679, 258316.001200001686811 ], [ 357201.696199998259544, 258319.088300000876188 ], [ 357204.92679999768734, 258318.481499999761581 ], [ 357215.439499996602535, 258314.978900000452995 ], [ 357200.162699997425079, 258309.78770000115037 ], [ 357184.04900000244379, 258308.178100001066923 ], [ 357164.699299998581409, 258307.808699999004602 ], [ 357157.378700003027916, 258284.117899999022484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "ROAD", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": null, "ACRE": null, "LONGITUDE": -64.94670973, "LATITUDE": 18.35556617, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 50.095784767200001, "SHAPE_Area": 136.57525959200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357079.314499996602535, 258478.290100000798702 ], [ 357074.045800000429153, 258472.388900000602007 ], [ 357060.796099998056889, 258483.221400000154972 ], [ 357066.390000000596046, 258489.177799999713898 ], [ 357079.314499996602535, 258478.290100000798702 ] ] ] ] } }, +{ "type": "Feature", "properties": { "DPNR_ZONE": "R-1", "PARCEL_NO": "111111111111", "MAP": null, "PARCEL_NAM": "3A REM", "ACRE": null, "LONGITUDE": -64.9476196, "LATITUDE": 18.35602559, "OBJECTID_1": 0, "PARCEL_NO_": null, "Tax_Legal_": null, "Name": null, "Address": null, "City": null, "State": null, "Zip": 0, "Country": null, "Land_Value": 0, "Improved_V": 0, "created_us": null, "created_da": null, "last_edite": null, "last_edi_1": null, "SHAPE_Leng": 175.59688402699999, "SHAPE_Area": 1630.2009259 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 357016.942500002682209, 258519.5929000005126 ], [ 357020.212600000202656, 258514.342199999839067 ], [ 357027.435199998319149, 258518.412099998444319 ], [ 357031.47580000013113, 258517.389699999243021 ], [ 357040.454899996519089, 258504.586399998515844 ], [ 357045.673500001430511, 258498.968899998813868 ], [ 357018.056000001728535, 258454.350000001490116 ], [ 357016.876299999654293, 258452.443999998271465 ], [ 357002.255999997258186, 258462.253199998289347 ], [ 356999.686999998986721, 258463.976500000804663 ], [ 357012.833200000226498, 258506.348099999129772 ], [ 357016.942500002682209, 258519.5929000005126 ] ] ] ] } } +] +} diff --git a/data/shelter.geojson b/data/shelter.geojson new file mode 100644 index 0000000..1d8a818 --- /dev/null +++ b/data/shelter.geojson @@ -0,0 +1,14 @@ +{ +"type": "FeatureCollection", +"name": "h_shelter", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "FID": 1, "Name": "Sugar Estate Head Start Center", "Latitude": 18.339801, "Longitude": -64.920562, "Island": "St.Thomas" }, "geometry": { "type": "Point", "coordinates": [ -64.920562000036497, 18.339801000319099 ] } }, +{ "type": "Feature", "properties": { "FID": 2, "Name": "Community Health Clinic at Schneider", "Latitude": 18.340168, "Longitude": -64.914869, "Island": "St.Thomas" }, "geometry": { "type": "Point", "coordinates": [ -64.914869000104403, 18.3401680001563 ] } }, +{ "type": "Feature", "properties": { "FID": 3, "Name": "Lockhart Elementary", "Latitude": 18.341674, "Longitude": -64.916455, "Island": "St.Thomas" }, "geometry": { "type": "Point", "coordinates": [ -64.916455000398201, 18.341674000358001 ] } }, +{ "type": "Feature", "properties": { "FID": 4, "Name": "Knud Hansen Complex Strive Center", "Latitude": 18.34555, "Longitude": -64.926252, "Island": "St.Thomas" }, "geometry": { "type": "Point", "coordinates": [ -64.9262519998302, 18.345550000135599 ] } }, +{ "type": "Feature", "properties": { "FID": 5, "Name": "Charlotte Amalie High School Auditorium", "Latitude": 18.341186, "Longitude": -64.919949, "Island": "St.Thomas" }, "geometry": { "type": "Point", "coordinates": [ -64.919948999646806, 18.341186000336901 ] } }, +{ "type": "Feature", "properties": { "FID": 6, "Name": "Bertha B. Boschulte School", "Latitude": 18.317206, "Longitude": -64.891119, "Island": "St.Thomas" }, "geometry": { "type": "Point", "coordinates": [ -64.8911190002419, 18.317205999760201 ] } }, +{ "type": "Feature", "properties": { "FID": 12, "Name": "Water Island Station", "Latitude": 18.314065, "Longitude": -64.956731, "Island": "St.Thomas" }, "geometry": { "type": "Point", "coordinates": [ -64.956730999736095, 18.314064999703099 ] } } +] +} diff --git a/examples/school-explorer-for-parents/.gitignore b/examples/school-explorer-for-parents/.gitignore deleted file mode 100644 index 4f93b52..0000000 --- a/examples/school-explorer-for-parents/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules/ -opt/* -!opt/.gitkeep \ No newline at end of file diff --git a/examples/school-explorer-for-parents/Data Aspects.md b/examples/school-explorer-for-parents/Data Aspects.md deleted file mode 100644 index fa34aa8..0000000 --- a/examples/school-explorer-for-parents/Data Aspects.md +++ /dev/null @@ -1,23 +0,0 @@ -Check the data types and values on the following fields: -- Admission Type -- CTE Status ("Program", the school has a program; "Comprehensive", the whole school is Career & Technical Ed) -- Major Intervention () -- Major Intervention Year -- Management Organization -- Governance -- Phasing Out -- Title I Designation - -Useful for display: -- Website -- FACE Liaison Email (Family & Community Engagement) -- FACE Liaison Name -- FACE Liaison Phone Number - - - - -Process for designing the application -- Start with the PRD -- Go to wireframes -- Go to data (this should be a back-and-forth process) \ No newline at end of file diff --git a/examples/school-explorer-for-parents/README.md b/examples/school-explorer-for-parents/README.md deleted file mode 100644 index 937bf30..0000000 --- a/examples/school-explorer-for-parents/README.md +++ /dev/null @@ -1,36 +0,0 @@ -Sample "solution" for the school explorer project. - -## What's in here? - -A number of the files in this repository should be carried over verbatim into the school-explorer project: -* The _site/_ folder -- Where students' code should go. It's where the application lives. -* Testing files (_.github/_, _\_\_tests\_\_/_) -* Configuration files (.eslintrc, .gitignore, .stylelintrc.json, jest.config.json, package.json) - -A few things that don't get carried over to the school-explorer project: -* bin/ -- scripts to prepare the project, mainly for populating the site/data/ folder -* opt/ -- the actual raw data for running the scripts in bin/ -* Python configuration -- _pyproject.toml_ -* This README.md file - -## Where do we get the data from? - -The school district has some [data on OpenDataPhilly](https://opendataphilly.org/dataset?organization=school-district-of-philadelphia), but these just link to the school district's own data site. For example, this [school catchment areas](https://opendataphilly.org/dataset/school-information-data/resource/f6a27538-9131-4fbc-9906-808492c2d7ad) dataset on OpenDataPhilly links to [a download page](https://www.philasd.org/performance/programsservices/open-data/school-information/#school_catchment_areas) on the district site. While this is workable, it's not ideal from an automation standpoint -- I doubt the SDP site has any kind of stable API. - -## Peparing data - -### Schools - -1. Go to the [SDP download page](https://www.philasd.org/performance/programsservices/open-data/school-information/#school_lists) and download the latest CSV. Move it into _opt/_ and rename as _schools.csv_. - -### Catchment areas - -1. Go to the [SDP download page](https://www.philasd.org/performance/programsservices/open-data/school-information/#school_catchment_areas) and download the latest shapefile. Move it into the _opt/_ folder and rename it _sdp\_catchments.zip_. - -## Design - -The application uses a reactive pattern with an event bus. The events on the bus are as follows: - -- `addresschanged` -- Dispatched when a new address has been selected in the address search. Detail includes a `place` attribute and a `catchment` attribute, which will be GeoJSON features representing the selected address and the catchment around it respectively, or `null` in the case of no address or no matching catchment. -- `filterschanged` -- Dispatched when any filter has changed. Detail includes an `include` attribute which is a list of schools included in the filtered set. -- `selectionchanged` -- Dispatched when a school has been selected or deselected in the list or on the map. Detail includes `added` and `removed` attributes, each of which is a list of schools address or removed from the selected set, respectively. diff --git a/examples/school-explorer-for-parents/bin/prep_catchments.py b/examples/school-explorer-for-parents/bin/prep_catchments.py deleted file mode 100755 index 307ad29..0000000 --- a/examples/school-explorer-for-parents/bin/prep_catchments.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python - -import pdb -import click -import pandas as pd -import geopandas as gpd - -@click.command() -@click.argument('es_catchments_file', type=click.File('r')) -@click.argument('ms_catchments_file', type=click.File('r')) -@click.argument('hs_catchments_file', type=click.File('r')) -def make_catchments_geojson(es_catchments_file, ms_catchments_file, hs_catchments_file): - es_catchments = gpd.read_file(es_catchments_file.name) - ms_catchments = gpd.read_file(ms_catchments_file.name) - hs_catchments = gpd.read_file(hs_catchments_file.name) - - catchments_gdf = pd.concat([ - es_catchments[['ES_ID', 'geometry']].rename(mapper={'ES_ID': 'ID'}, axis='columns'), - es_catchments[['MS_ID', 'geometry']].rename(mapper={'MS_ID': 'ID'}, axis='columns'), - es_catchments[['HS_ID', 'geometry']].rename(mapper={'HS_ID': 'ID'}, axis='columns'), - ]).dissolve(by='ID') - - print(catchments_gdf.to_crs('EPSG:4326').to_json()) - # print(f'export default {catchments_gdf.to_crs('EPSG:4326').to_json()};') - -if __name__ == '__main__': - make_catchments_geojson() \ No newline at end of file diff --git a/examples/school-explorer-for-parents/bin/prep_schools.py b/examples/school-explorer-for-parents/bin/prep_schools.py deleted file mode 100755 index 200143f..0000000 --- a/examples/school-explorer-for-parents/bin/prep_schools.py +++ /dev/null @@ -1,91 +0,0 @@ -#!/usr/bin/env python - -import click -import csv -import json - - -@click.command() -@click.argument('school_list_file', type=click.File('r')) -def make_schools_json(school_list_file): - reader = csv.DictReader(school_list_file) - data = [ - { - # The ULCS Code appears to be the de facto ID that the school - # district uses across datasets. - 'sdp_id': row['ULCS Code'], - - # There are three name columns: 'School Name (ULCS)', 'Publication - # Name', and 'Publication Name Alpha List'. The ULCS name is - # all-caps and not most readable. The alpha list name is weird, but - # useful for alphabetizing. The publication name is most readable - # and most suitable as a school label - 'name': row['Publication Name'], - 'sort_name': row['Publication Name Alpha List'], - 'abbr_name': row['Abbreviated Name'], - - # The GPS Location is a single string, lat/lng, separated by a - # comma and a space. - 'geom': { - 'type': 'Point', - 'coordinates': [ - float(c) - for c in row['GPS Location'].split(',') - ][::-1], - }, - - 'Year Opened': row['Year Opened'], - 'School Level': row['School Level'], - 'Admission Type': row['Admission Type'], - 'Current Grade Span Served': row['Current Grade Span Served'], - 'Grade Span at Scale': row['Grade Span at Scale'], - 'Phasing-In': row['Phasing-In'], - 'Phasing-Out': row['Phasing-Out'], - 'Governance': row['Governance'], - 'Management Organization': row['Management Organization'], - 'School Reporting Category': row['School Reporting Category'], - 'Alternate Education Type': row['Alternate Education Type'], - 'Major Intervention': row['Major Intervention'], - 'Major Intervention Year': row['Major Intervention Year'], - 'Community School Cohort': row['Community School Cohort'], - 'CTE Status': row['CTE Status'], - 'Title I Designation': row['Title I Designation'], - 'Federal Accountability Designation': row['Federal Accountability Designation'], - 'City Council District': row['City Council District'], - 'Multiple Addresses': row['Multiple Addresses'], - 'Street Address': row['Street Address'], - 'City': row['City'], - 'State': row['State'], - 'Zip Code': row['Zip Code'], - 'Phone Number': row['Phone Number'], - 'Fax Number': row['Fax Number'], - 'Website': row['Website'], - 'School Leader Name': row['School Leader Name'], - 'Learning Network': row['Learning Network'], - 'Assistant Superintendent': row['Assistant Superintendent'], - 'FACE Liaison Name': row['FACE Liaison Name'], - 'FACE Liaison Email': row['FACE Liaison Email'], - 'FACE Liaison Phone Number': row['FACE Liaison Phone Number'], - - 'Grade K': row['Grade K'], - 'Grade 1': row['Grade 1'], - 'Grade 2': row['Grade 2'], - 'Grade 3': row['Grade 3'], - 'Grade 4': row['Grade 4'], - 'Grade 5': row['Grade 5'], - 'Grade 6': row['Grade 6'], - 'Grade 7': row['Grade 7'], - 'Grade 8': row['Grade 8'], - 'Grade 9': row['Grade 9'], - 'Grade 10': row['Grade 10'], - 'Grade 11': row['Grade 11'], - 'Grade 12': row['Grade 12'], - } - for row in reader - ] - print(json.dumps(data, indent=2)) - # print(f'export default {json.dumps(data, indent=2)};') - - -if __name__ == '__main__': - make_schools_json() diff --git a/examples/school-explorer-for-parents/notebooks/data_exploration.ipynb b/examples/school-explorer-for-parents/notebooks/data_exploration.ipynb deleted file mode 100644 index 0b01ed5..0000000 --- a/examples/school-explorer-for-parents/notebooks/data_exploration.ipynb +++ /dev/null @@ -1,600 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import pathlib\n", - "import os" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "ROOT = pathlib.Path(os.getcwd()).parent\n", - "school_list_df = pd.read_csv(ROOT / 'opt' / 'schools.2022_2023.csv')" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
PA CodeNSC CodeNCES CodeAUN CodeULCS CodeSRC School IDSchool Name (ULCS)Publication NamePublication Name Alpha ListAbbreviated Name...Grade 3Grade 4Grade 5Grade 6Grade 7Grade 8Grade 9Grade 10Grade 11Grade 12
03847.03933454.218990e+111265150011010101JOHN BARTRAM HIGH SCHOOLJohn Bartram High SchoolBartram, John High SchoolBartram...0000001111
13860.03935554.218990e+111265150011020102WEST PHILADELPHIA HIGH SCHOOLWest Philadelphia High SchoolWest Philadelphia High SchoolWest Philadelphia...0000001111
27903.03927794.218990e+111265150011030103HIGH SCHOOL OF THE FUTUREHigh School of the FutureHigh School of the FutureHS of Future...0000001111
37780.03933474.218990e+111265150011050105PAUL ROBESON HIGH SCHOOLPaul Robeson High School for Human ServicesRobeson, Paul High School for Human ServicesRobeson...0000001111
47245.03939444.218990e+111265150011100110SAYRE HIGH SCHOOLWilliam L. Sayre High SchoolSayre, William L. High SchoolSayre...0000001111
\n", - "

5 rows × 56 columns

\n", - "
" - ], - "text/plain": [ - " PA Code NSC Code NCES Code AUN Code ULCS Code SRC School ID \\\n", - "0 3847.0 393345 4.218990e+11 126515001 1010 101 \n", - "1 3860.0 393555 4.218990e+11 126515001 1020 102 \n", - "2 7903.0 392779 4.218990e+11 126515001 1030 103 \n", - "3 7780.0 393347 4.218990e+11 126515001 1050 105 \n", - "4 7245.0 393944 4.218990e+11 126515001 1100 110 \n", - "\n", - " School Name (ULCS) Publication Name \\\n", - "0 JOHN BARTRAM HIGH SCHOOL John Bartram High School \n", - "1 WEST PHILADELPHIA HIGH SCHOOL West Philadelphia High School \n", - "2 HIGH SCHOOL OF THE FUTURE High School of the Future \n", - "3 PAUL ROBESON HIGH SCHOOL Paul Robeson High School for Human Services \n", - "4 SAYRE HIGH SCHOOL William L. Sayre High School \n", - "\n", - " Publication Name Alpha List Abbreviated Name ... \\\n", - "0 Bartram, John High School Bartram ... \n", - "1 West Philadelphia High School West Philadelphia ... \n", - "2 High School of the Future HS of Future ... \n", - "3 Robeson, Paul High School for Human Services Robeson ... \n", - "4 Sayre, William L. High School Sayre ... \n", - "\n", - " Grade 3 Grade 4 Grade 5 Grade 6 Grade 7 Grade 8 Grade 9 Grade 10 \\\n", - "0 0 0 0 0 0 0 1 1 \n", - "1 0 0 0 0 0 0 1 1 \n", - "2 0 0 0 0 0 0 1 1 \n", - "3 0 0 0 0 0 0 1 1 \n", - "4 0 0 0 0 0 0 1 1 \n", - "\n", - " Grade 11 Grade 12 \n", - "0 1 1 \n", - "1 1 1 \n", - "2 1 1 \n", - "3 1 1 \n", - "4 1 1 \n", - "\n", - "[5 rows x 56 columns]" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "school_list_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "count 325\n", - "unique 325\n", - "top JOHN BARTRAM HIGH SCHOOL\n", - "freq 1\n", - "Name: School Name (ULCS), dtype: object" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "school_list_df['School Name (ULCS)'].describe()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "count 325\n", - "unique 325\n", - "top John Bartram High School\n", - "freq 1\n", - "Name: Publication Name, dtype: object" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "school_list_df['Publication Name'].describe()" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "count 325\n", - "unique 325\n", - "top Bartram, John High School\n", - "freq 1\n", - "Name: Publication Name Alpha List, dtype: object" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "school_list_df['Publication Name Alpha List'].describe()" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "school_names_df = school_list_df[['Publication Name', 'School Name (ULCS)']]" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_600852/2246864262.py:1: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " school_names_df['Upper Publication Name'] = school_names_df['Publication Name'].str.upper()\n" - ] - } - ], - "source": [ - "school_names_df['Upper Publication Name'] = school_names_df['Publication Name'].str.upper()" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Publication NameSchool Name (ULCS)Upper Publication Name
3Paul Robeson High School for Human ServicesPAUL ROBESON HIGH SCHOOLPAUL ROBESON HIGH SCHOOL FOR HUMAN SERVICES
4William L. Sayre High SchoolSAYRE HIGH SCHOOLWILLIAM L. SAYRE HIGH SCHOOL
5William T. Tilden SchoolTILDEN MIDDLE SCHOOLWILLIAM T. TILDEN SCHOOL
7John Barry SchoolJOHN BARRY ELEMENTARY SCHOOLJOHN BARRY SCHOOL
11Sadie Alexander SchoolPENN ALEXANDER SCHOOLSADIE ALEXANDER SCHOOL
............
314Philadelphia Learning Academy SouthPHILA LEARNING ACADEMY-SOUTHPHILADELPHIA LEARNING ACADEMY SOUTH
315Philadelphia Learning Academy NorthPHILA LEARNING ACADEMY-NORTHPHILADELPHIA LEARNING ACADEMY NORTH
319John Hancock Demonstration SchoolHANCOCK DEMONSTRATION SCHOOLJOHN HANCOCK DEMONSTRATION SCHOOL
321One Bright Ray MansionONE BRIGHT RAY MANSION ACCELONE BRIGHT RAY MANSION
323One Bright Ray - Simpson CampusONE BRIGHT RAY-SIMPSON CAMPUSONE BRIGHT RAY - SIMPSON CAMPUS
\n", - "

155 rows × 3 columns

\n", - "
" - ], - "text/plain": [ - " Publication Name \\\n", - "3 Paul Robeson High School for Human Services \n", - "4 William L. Sayre High School \n", - "5 William T. Tilden School \n", - "7 John Barry School \n", - "11 Sadie Alexander School \n", - ".. ... \n", - "314 Philadelphia Learning Academy South \n", - "315 Philadelphia Learning Academy North \n", - "319 John Hancock Demonstration School \n", - "321 One Bright Ray Mansion \n", - "323 One Bright Ray - Simpson Campus \n", - "\n", - " School Name (ULCS) \\\n", - "3 PAUL ROBESON HIGH SCHOOL \n", - "4 SAYRE HIGH SCHOOL \n", - "5 TILDEN MIDDLE SCHOOL \n", - "7 JOHN BARRY ELEMENTARY SCHOOL \n", - "11 PENN ALEXANDER SCHOOL \n", - ".. ... \n", - "314 PHILA LEARNING ACADEMY-SOUTH \n", - "315 PHILA LEARNING ACADEMY-NORTH \n", - "319 HANCOCK DEMONSTRATION SCHOOL \n", - "321 ONE BRIGHT RAY MANSION ACCEL \n", - "323 ONE BRIGHT RAY-SIMPSON CAMPUS \n", - "\n", - " Upper Publication Name \n", - "3 PAUL ROBESON HIGH SCHOOL FOR HUMAN SERVICES \n", - "4 WILLIAM L. SAYRE HIGH SCHOOL \n", - "5 WILLIAM T. TILDEN SCHOOL \n", - "7 JOHN BARRY SCHOOL \n", - "11 SADIE ALEXANDER SCHOOL \n", - ".. ... \n", - "314 PHILADELPHIA LEARNING ACADEMY SOUTH \n", - "315 PHILADELPHIA LEARNING ACADEMY NORTH \n", - "319 JOHN HANCOCK DEMONSTRATION SCHOOL \n", - "321 ONE BRIGHT RAY MANSION \n", - "323 ONE BRIGHT RAY - SIMPSON CAMPUS \n", - "\n", - "[155 rows x 3 columns]" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "school_names_df.query('`Upper Publication Name` != `School Name (ULCS)`')" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "Index(['PA Code', 'NSC Code', 'NCES Code', 'AUN Code', 'ULCS Code',\n", - " 'SRC School ID', 'School Name (ULCS)', 'Publication Name',\n", - " 'Publication Name Alpha List', 'Abbreviated Name', 'Year Opened',\n", - " 'School Level', 'Admission Type', 'Current Grade Span Served',\n", - " 'Grade Span at Scale', 'Phasing-In', 'Phasing-Out', 'Governance',\n", - " 'Management Organization', 'School Reporting Category',\n", - " 'Alternate Education Type', 'Major Intervention',\n", - " 'Major Intervention Year', 'Community School Cohort', 'CTE Status',\n", - " 'Title I Designation', 'Federal Accountability Designation',\n", - " 'City Council District', 'GPS Location', 'Multiple Addresses',\n", - " 'Street Address', 'City', 'State', 'Zip Code', 'Phone Number',\n", - " 'Fax Number', 'Website', 'School Leader Name', 'Learning Network',\n", - " 'Assistant Superintendent', 'FACE Liaison Name', 'FACE Liaison Email',\n", - " 'FACE Liaison Phone Number', 'Grade K', 'Grade 1', 'Grade 2', 'Grade 3',\n", - " 'Grade 4', 'Grade 5', 'Grade 6', 'Grade 7', 'Grade 8', 'Grade 9',\n", - " 'Grade 10', 'Grade 11', 'Grade 12'],\n", - " dtype='object')" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "school_list_df.columns" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0 [39.92149737, -75.23405562]\n", - "1 [39.958110, -75.219654]\n", - "2 [39.97465766, -75.2047566]\n", - "3 [39.95679553, -75.20476311]\n", - "4 [39.95759354, -75.23859405]\n", - " ... \n", - "320 [39.96102159, -75.16264405]\n", - "321 [39.99074371, -75.18402464]\n", - "322 [39.99074371, -75.18402464]\n", - "323 [40.00528, -75.10560096]\n", - "324 [39.96102159, -75.16264405]\n", - "Name: GPS Location, Length: 325, dtype: object" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "school_list_df['GPS Location'].str.split(', ')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3.10.4 ('project-school-explorer-sample')", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.4" - }, - "orig_nbformat": 4, - "vscode": { - "interpreter": { - "hash": "a749ac54738b3307d4fedf39795ad9b4a371fdbb3c8d3448a6694e7fae38c9a0" - } - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/examples/school-explorer-for-parents/opt/.gitkeep b/examples/school-explorer-for-parents/opt/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/examples/school-explorer-for-parents/poetry.lock b/examples/school-explorer-for-parents/poetry.lock deleted file mode 100644 index 346a3f5..0000000 --- a/examples/school-explorer-for-parents/poetry.lock +++ /dev/null @@ -1,691 +0,0 @@ -[[package]] -name = "appnope" -version = "0.1.3" -description = "Disable App Nap on macOS >= 10.9" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "asttokens" -version = "2.0.8" -description = "Annotate AST trees with source code positions" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -six = "*" - -[package.extras] -test = ["astroid (<=2.5.3)", "pytest"] - -[[package]] -name = "attrs" -version = "22.1.0" -description = "Classes Without Boilerplate" -category = "main" -optional = false -python-versions = ">=3.5" - -[package.extras] -dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"] -docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] -tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "cloudpickle"] -tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "cloudpickle"] - -[[package]] -name = "backcall" -version = "0.2.0" -description = "Specifications for callback functions passed in to an API" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "certifi" -version = "2022.6.15.1" -description = "Python package for providing Mozilla's CA Bundle." -category = "main" -optional = false -python-versions = ">=3.6" - -[[package]] -name = "cffi" -version = "1.15.1" -description = "Foreign Function Interface for Python calling C code." -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -pycparser = "*" - -[[package]] -name = "click" -version = "8.1.3" -description = "Composable command line interface toolkit" -category = "main" -optional = false -python-versions = ">=3.7" - -[package.dependencies] -colorama = {version = "*", markers = "platform_system == \"Windows\""} - -[[package]] -name = "click-plugins" -version = "1.1.1" -description = "An extension module for click to enable registering CLI commands via setuptools entry-points." -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -click = ">=4.0" - -[package.extras] -dev = ["pytest (>=3.6)", "pytest-cov", "wheel", "coveralls"] - -[[package]] -name = "cligj" -version = "0.7.2" -description = "Click params for commmand line interfaces to GeoJSON" -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4" - -[package.dependencies] -click = ">=4.0" - -[package.extras] -test = ["pytest-cov"] - -[[package]] -name = "colorama" -version = "0.4.5" -description = "Cross-platform colored terminal text." -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" - -[[package]] -name = "debugpy" -version = "1.6.3" -description = "An implementation of the Debug Adapter Protocol for Python" -category = "main" -optional = false -python-versions = ">=3.7" - -[[package]] -name = "decorator" -version = "5.1.1" -description = "Decorators for Humans" -category = "main" -optional = false -python-versions = ">=3.5" - -[[package]] -name = "entrypoints" -version = "0.4" -description = "Discover and load entry points from installed packages." -category = "main" -optional = false -python-versions = ">=3.6" - -[[package]] -name = "executing" -version = "1.0.0" -description = "Get the currently executing AST node of a frame, and other information" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "fiona" -version = "1.8.21" -description = "Fiona reads and writes spatial data files" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -attrs = ">=17" -certifi = "*" -click = ">=4.0" -click-plugins = ">=1.0" -cligj = ">=0.5" -munch = "*" -six = ">=1.7" - -[package.extras] -all = ["boto3 (>=1.2.4)", "pytest-cov", "shapely", "pytest (>=3)", "mock"] -calc = ["shapely"] -s3 = ["boto3 (>=1.2.4)"] -test = ["pytest (>=3)", "pytest-cov", "boto3 (>=1.2.4)", "mock"] - -[[package]] -name = "geopandas" -version = "0.11.1" -description = "Geographic pandas extensions" -category = "main" -optional = false -python-versions = ">=3.8" - -[package.dependencies] -fiona = ">=1.8" -packaging = "*" -pandas = ">=1.0.0" -pyproj = ">=2.6.1.post1" -shapely = ">=1.7,<2" - -[[package]] -name = "ipykernel" -version = "6.15.2" -description = "IPython Kernel for Jupyter" -category = "main" -optional = false -python-versions = ">=3.7" - -[package.dependencies] -appnope = {version = "*", markers = "platform_system == \"Darwin\""} -debugpy = ">=1.0" -ipython = ">=7.23.1" -jupyter-client = ">=6.1.12" -matplotlib-inline = ">=0.1" -nest-asyncio = "*" -packaging = "*" -psutil = "*" -pyzmq = ">=17" -tornado = ">=6.1" -traitlets = ">=5.1.0" - -[package.extras] -test = ["flaky", "ipyparallel", "pre-commit", "pytest-cov", "pytest-timeout", "pytest (>=6.0)"] - -[[package]] -name = "ipython" -version = "8.5.0" -description = "IPython: Productive Interactive Computing" -category = "main" -optional = false -python-versions = ">=3.8" - -[package.dependencies] -appnope = {version = "*", markers = "sys_platform == \"darwin\""} -backcall = "*" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -decorator = "*" -jedi = ">=0.16" -matplotlib-inline = "*" -pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""} -pickleshare = "*" -prompt-toolkit = ">3.0.1,<3.1.0" -pygments = ">=2.4.0" -stack-data = "*" -traitlets = ">=5" - -[package.extras] -all = ["black", "Sphinx (>=1.3)", "ipykernel", "nbconvert", "nbformat", "ipywidgets", "notebook", "ipyparallel", "qtconsole", "pytest (<7.1)", "pytest-asyncio", "testpath", "curio", "matplotlib (!=3.2.0)", "numpy (>=1.19)", "pandas", "trio"] -black = ["black"] -doc = ["Sphinx (>=1.3)"] -kernel = ["ipykernel"] -nbconvert = ["nbconvert"] -nbformat = ["nbformat"] -notebook = ["ipywidgets", "notebook"] -parallel = ["ipyparallel"] -qtconsole = ["qtconsole"] -test = ["pytest (<7.1)", "pytest-asyncio", "testpath"] -test_extra = ["pytest (<7.1)", "pytest-asyncio", "testpath", "curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.19)", "pandas", "trio"] - -[[package]] -name = "jedi" -version = "0.18.1" -description = "An autocompletion tool for Python that can be used for text editors." -category = "main" -optional = false -python-versions = ">=3.6" - -[package.dependencies] -parso = ">=0.8.0,<0.9.0" - -[package.extras] -qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] -testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"] - -[[package]] -name = "jupyter-client" -version = "7.3.5" -description = "Jupyter protocol implementation and client libraries" -category = "main" -optional = false -python-versions = ">=3.7" - -[package.dependencies] -entrypoints = "*" -jupyter-core = ">=4.9.2" -nest-asyncio = ">=1.5.4" -python-dateutil = ">=2.8.2" -pyzmq = ">=23.0" -tornado = ">=6.2" -traitlets = "*" - -[package.extras] -doc = ["ipykernel", "myst-parser", "sphinx-rtd-theme", "sphinx (>=1.3.6)", "sphinxcontrib-github-alt"] -test = ["codecov", "coverage", "ipykernel (>=6.5)", "ipython", "mypy", "pre-commit", "pytest", "pytest-asyncio (>=0.18)", "pytest-cov", "pytest-timeout"] - -[[package]] -name = "jupyter-core" -version = "4.11.1" -description = "Jupyter core package. A base package on which Jupyter projects rely." -category = "main" -optional = false -python-versions = ">=3.7" - -[package.dependencies] -pywin32 = {version = ">=1.0", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} -traitlets = "*" - -[package.extras] -test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] - -[[package]] -name = "matplotlib-inline" -version = "0.1.6" -description = "Inline Matplotlib backend for Jupyter" -category = "main" -optional = false -python-versions = ">=3.5" - -[package.dependencies] -traitlets = "*" - -[[package]] -name = "munch" -version = "2.5.0" -description = "A dot-accessible dictionary (a la JavaScript objects)" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -six = "*" - -[package.extras] -testing = ["pytest", "coverage", "astroid (>=1.5.3,<1.6.0)", "pylint (>=1.7.2,<1.8.0)", "astroid (>=2.0)", "pylint (>=2.3.1,<2.4.0)"] -yaml = ["PyYAML (>=5.1.0)"] - -[[package]] -name = "nest-asyncio" -version = "1.5.5" -description = "Patch asyncio to allow nested event loops" -category = "main" -optional = false -python-versions = ">=3.5" - -[[package]] -name = "numpy" -version = "1.23.3" -description = "NumPy is the fundamental package for array computing with Python." -category = "main" -optional = false -python-versions = ">=3.8" - -[[package]] -name = "packaging" -version = "21.3" -description = "Core utilities for Python packages" -category = "main" -optional = false -python-versions = ">=3.6" - -[package.dependencies] -pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" - -[[package]] -name = "pandas" -version = "1.4.4" -description = "Powerful data structures for data analysis, time series, and statistics" -category = "main" -optional = false -python-versions = ">=3.8" - -[package.dependencies] -numpy = [ - {version = ">=1.18.5", markers = "platform_machine != \"aarch64\" and platform_machine != \"arm64\" and python_version < \"3.10\""}, - {version = ">=1.19.2", markers = "platform_machine == \"aarch64\" and python_version < \"3.10\""}, - {version = ">=1.20.0", markers = "platform_machine == \"arm64\" and python_version < \"3.10\""}, - {version = ">=1.21.0", markers = "python_version >= \"3.10\""}, -] -python-dateutil = ">=2.8.1" -pytz = ">=2020.1" - -[package.extras] -test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"] - -[[package]] -name = "parso" -version = "0.8.3" -description = "A Python Parser" -category = "main" -optional = false -python-versions = ">=3.6" - -[package.extras] -qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] -testing = ["docopt", "pytest (<6.0.0)"] - -[[package]] -name = "pexpect" -version = "4.8.0" -description = "Pexpect allows easy control of interactive console applications." -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -ptyprocess = ">=0.5" - -[[package]] -name = "pickleshare" -version = "0.7.5" -description = "Tiny 'shelve'-like database with concurrency support" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "prompt-toolkit" -version = "3.0.31" -description = "Library for building powerful interactive command lines in Python" -category = "main" -optional = false -python-versions = ">=3.6.2" - -[package.dependencies] -wcwidth = "*" - -[[package]] -name = "psutil" -version = "5.9.2" -description = "Cross-platform lib for process and system monitoring in Python." -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[package.extras] -test = ["ipaddress", "mock", "enum34", "pywin32", "wmi"] - -[[package]] -name = "ptyprocess" -version = "0.7.0" -description = "Run a subprocess in a pseudo terminal" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "pure-eval" -version = "0.2.2" -description = "Safely evaluate AST nodes without side effects" -category = "main" -optional = false -python-versions = "*" - -[package.extras] -tests = ["pytest"] - -[[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" - -[[package]] -name = "pycparser" -version = "2.21" -description = "C parser in Python" -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" - -[[package]] -name = "pygments" -version = "2.13.0" -description = "Pygments is a syntax highlighting package written in Python." -category = "main" -optional = false -python-versions = ">=3.6" - -[package.extras] -plugins = ["importlib-metadata"] - -[[package]] -name = "pyparsing" -version = "3.0.9" -description = "pyparsing module - Classes and methods to define and execute parsing grammars" -category = "main" -optional = false -python-versions = ">=3.6.8" - -[package.extras] -diagrams = ["railroad-diagrams", "jinja2"] - -[[package]] -name = "pyproj" -version = "3.4.0" -description = "Python interface to PROJ (cartographic projections and coordinate transformations library)" -category = "main" -optional = false -python-versions = ">=3.8" - -[package.dependencies] -certifi = "*" - -[[package]] -name = "python-dateutil" -version = "2.8.2" -description = "Extensions to the standard Python datetime module" -category = "main" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" - -[package.dependencies] -six = ">=1.5" - -[[package]] -name = "pytz" -version = "2022.2.1" -description = "World timezone definitions, modern and historical" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "pywin32" -version = "304" -description = "Python for Window Extensions" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "pyzmq" -version = "23.2.1" -description = "Python bindings for 0MQ" -category = "main" -optional = false -python-versions = ">=3.6" - -[package.dependencies] -cffi = {version = "*", markers = "implementation_name == \"pypy\""} -py = {version = "*", markers = "implementation_name == \"pypy\""} - -[[package]] -name = "shapely" -version = "1.8.4" -description = "Geometric objects, predicates, and operations" -category = "main" -optional = false -python-versions = ">=3.6" - -[package.extras] -all = ["pytest", "pytest-cov", "numpy"] -test = ["pytest", "pytest-cov"] -vectorized = ["numpy"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" - -[[package]] -name = "stack-data" -version = "0.5.0" -description = "Extract data from python stack frames and tracebacks for informative displays" -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -asttokens = "*" -executing = "*" -pure-eval = "*" - -[package.extras] -tests = ["cython", "littleutils", "pygments", "typeguard", "pytest"] - -[[package]] -name = "tornado" -version = "6.2" -description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -category = "main" -optional = false -python-versions = ">= 3.7" - -[[package]] -name = "traitlets" -version = "5.4.0" -description = "" -category = "main" -optional = false -python-versions = ">=3.7" - -[package.extras] -test = ["pre-commit", "pytest"] - -[[package]] -name = "wcwidth" -version = "0.2.5" -description = "Measures the displayed width of unicode strings in a terminal" -category = "main" -optional = false -python-versions = "*" - -[metadata] -lock-version = "1.1" -python-versions = "^3.8" -content-hash = "a0857ba0844da23f205dedef879894bbcba4d8bb2053ee6b20b80be3b43ff378" - -[metadata.files] -appnope = [] -asttokens = [] -attrs = [] -backcall = [ - {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, - {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, -] -certifi = [] -cffi = [] -click = [ - {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, - {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, -] -click-plugins = [ - {file = "click-plugins-1.1.1.tar.gz", hash = "sha256:46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b"}, - {file = "click_plugins-1.1.1-py2.py3-none-any.whl", hash = "sha256:5d262006d3222f5057fd81e1623d4443e41dcda5dc815c06b442aa3c02889fc8"}, -] -cligj = [ - {file = "cligj-0.7.2-py3-none-any.whl", hash = "sha256:c1ca117dbce1fe20a5809dc96f01e1c2840f6dcc939b3ddbb1111bf330ba82df"}, - {file = "cligj-0.7.2.tar.gz", hash = "sha256:a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27"}, -] -colorama = [ - {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"}, - {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"}, -] -debugpy = [] -decorator = [] -entrypoints = [] -executing = [] -fiona = [] -geopandas = [] -ipykernel = [] -ipython = [] -jedi = [] -jupyter-client = [] -jupyter-core = [] -matplotlib-inline = [] -munch = [ - {file = "munch-2.5.0-py2.py3-none-any.whl", hash = "sha256:6f44af89a2ce4ed04ff8de41f70b226b984db10a91dcc7b9ac2efc1c77022fdd"}, - {file = "munch-2.5.0.tar.gz", hash = "sha256:2d735f6f24d4dba3417fa448cae40c6e896ec1fdab6cdb5e6510999758a4dbd2"}, -] -nest-asyncio = [] -numpy = [] -packaging = [ - {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, - {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, -] -pandas = [] -parso = [] -pexpect = [ - {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, - {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, -] -pickleshare = [ - {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, - {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, -] -prompt-toolkit = [] -psutil = [] -ptyprocess = [ - {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, - {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, -] -pure-eval = [] -py = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] -pycparser = [ - {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, - {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, -] -pygments = [] -pyparsing = [ - {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, - {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, -] -pyproj = [] -python-dateutil = [ - {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, - {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, -] -pytz = [] -pywin32 = [] -pyzmq = [] -shapely = [] -six = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] -stack-data = [] -tornado = [] -traitlets = [] -wcwidth = [ - {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, - {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, -] diff --git a/examples/school-explorer-for-parents/pyproject.toml b/examples/school-explorer-for-parents/pyproject.toml deleted file mode 100644 index 43ea923..0000000 --- a/examples/school-explorer-for-parents/pyproject.toml +++ /dev/null @@ -1,17 +0,0 @@ -[tool.poetry] -name = "school-explorer" -version = "0.1.0" -description = "" -authors = ["Mjumbe Poe "] - -[tool.poetry.dependencies] -python = "^3.8" -geopandas = "^0.11.1" -click = "^8.1.3" -ipykernel = "^6.15.2" - -[tool.poetry.dev-dependencies] - -[build-system] -requires = ["poetry-core>=1.0.0"] -build-backend = "poetry.core.masonry.api" diff --git a/examples/school-explorer-for-parents/site/css/styles.css b/examples/school-explorer-for-parents/site/css/styles.css deleted file mode 100644 index bde1a71..0000000 --- a/examples/school-explorer-for-parents/site/css/styles.css +++ /dev/null @@ -1,140 +0,0 @@ -@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,300&display=swap"); - -html { - font-family: "Open Sans", sans-serif; -} - -body { - margin: 0; - padding: 0 1rem; - display: grid; - grid-template: - "title title" auto - "filters map" auto - "count map" auto - "list map" 1fr / 40% 60%; - height: 100vh; - overflow-y: hidden; -} - -h1 { - font-weight: 300; - font-style: italic; -} - -h1 { grid-area: title; } -#school-map { grid-area: map; } -#school-filters { grid-area: filters; } -#school-count { grid-area: count; } -#school-list { grid-area: list; } - -#school-count { - margin: 0.5rem 0; - margin-right: 1rem; - font-size: 0.8rem; - text-align: right; -} - -#school-map { - height: 100%; -} - -.school-list { - list-style: none; - margin: 0 0 0 -1rem; - padding: 0; - overflow-y: scroll; -} - -.school-list li { - margin: 0.25rem 0; - padding: 1rem; - cursor: pointer; -} - -.school-name { - display: block; - font-weight: bold; -} - -.school-grades-served, -.school-admission-type { - display: inline-block; - padding: 0.25rem 0.5rem; - border-radius: 0.75rem; - font-size: 0.8rem; - font-weight: bold; -} - -.school-grades-served::before, -.school-admission-type::before { - font-weight: normal; -} - -.school-grades-served { - background-color: #c0ffc0; -} - -.school-admission-type { - background-color: #c0e0ff; -} - -.school-grades-served::before { - content: "Grades: "; -} - -.school-admission-type::before { - content: "Admission: "; -} - -#school-filters { - column-count: 3; - margin-right: 1rem; -} - -label { - display: block; -} - -[name="school-filter-name"] { - display: block; - column-span: all; - box-sizing: border-box; - padding: 0.5rem; - margin-top: 0.5rem; - width: 100%; -} - -.address-input { - display: block; - column-span: all; -} - -[name="address-search"] { - box-sizing: border-box; - padding: 0.5rem; - margin-top: 0.5rem; - width: 100%; -} - -.address-options { - padding: 0; - list-style: none; - margin: 0; -} - -.address-options li { - border: 1px solid black; - border-width: 0 1px 1px; - padding: 0.25rem 0.5rem; - font-size: 0.8rem; -} - -.address-options li:hover { - background-color: #eee; - cursor: pointer; -} - -.highlighted { - background-color: #ffffc0; -} diff --git a/examples/school-explorer-for-parents/site/data/catchments.json b/examples/school-explorer-for-parents/site/data/catchments.json deleted file mode 100644 index 59ef07a..0000000 --- a/examples/school-explorer-for-parents/site/data/catchments.json +++ /dev/null @@ -1 +0,0 @@ -{"type": "FeatureCollection", "features": [{"id": "1010", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22847167282687, 39.876632398326805], [-75.22872556068367, 39.87666862419972], [-75.22890678498037, 39.87669381108398], [-75.2299863334957, 39.87684818042749], [-75.23047679598254, 39.876890064343435], [-75.2306447581024, 39.87690255372097], [-75.23084727445985, 39.876920306590165], [-75.23102678790907, 39.87693697139211], [-75.23189970450814, 39.877014402944006], [-75.23231048302323, 39.877057607485526], [-75.23254937153801, 39.877083032876754], [-75.23265783054887, 39.87709439763272], [-75.23281489036877, 39.87711243410881], [-75.23299168568789, 39.87712948119487], [-75.23327104547879, 39.877155990450134], [-75.23398774988407, 39.87717958767282], [-75.23412226461492, 39.87718220502606], [-75.23430304728832, 39.87713717158413], [-75.23448191044382, 39.87709578169967], [-75.2346640349265, 39.877052144866816], [-75.23502555466166, 39.876965732166894], [-75.23553897150364, 39.87675287752604], [-75.23579675404763, 39.87658040156211], [-75.23592834018349, 39.87648943640926], [-75.23605087032027, 39.87640501548633], [-75.23637065491539, 39.87618865594084], [-75.23664115652106, 39.875737749515274], [-75.23671452279636, 39.875615424068336], [-75.23677402337746, 39.87547619722678], [-75.23693329822683, 39.87511798404234], [-75.23750019109423, 39.87508158250391], [-75.23759155607308, 39.87498314104562], [-75.23751900425653, 39.87489069568747], [-75.2374608944683, 39.87480537217064], [-75.2381110127738, 39.87459417857342], [-75.23824620953923, 39.87444783291262], [-75.23835204709452, 39.874333236143144], [-75.2386898454132, 39.87396028860272], [-75.23899372312925, 39.873837568937425], [-75.23917230471774, 39.87361000947073], [-75.23926127978736, 39.87349163936418], [-75.23934852226353, 39.87337318708348], [-75.23940465630135, 39.87330086702595], [-75.24009977322083, 39.87303120812651], [-75.24010531682733, 39.872859818033795], [-75.24010203692245, 39.872732155446734], [-75.2401014180843, 39.87261461255592], [-75.24047189157714, 39.87238290491107], [-75.24091818617407, 39.872403784289034], [-75.24108938603125, 39.87243912731901], [-75.24121666358654, 39.872467145592054], [-75.24139560399729, 39.87250783565143], [-75.24155609185267, 39.872541472125526], [-75.24174689698934, 39.8725866263106], [-75.24225469025525, 39.8727939090174], [-75.24256821080336, 39.872956274616854], [-75.24271293251525, 39.87303167146592], [-75.24675594886526, 39.87508692677362], [-75.24682507705292, 39.87514468498988], [-75.24843116673952, 39.876486517705914], [-75.25177007549969, 39.876008268019795], [-75.2522572765532, 39.87593847451019], [-75.25344115002632, 39.87600850453314], [-75.25397901087354, 39.87604316820538], [-75.25612836172884, 39.87617382688657], [-75.25742120146364, 39.87625239850408], [-75.25858930430861, 39.876323377245235], [-75.25952109442068, 39.876379988422464], [-75.26124986819036, 39.87648500020996], [-75.26253464448033, 39.87657101338095], [-75.26483205648415, 39.880647354801496], [-75.26500345296529, 39.88098283320505], [-75.26511241349733, 39.88165691623894], [-75.26454505532583, 39.882113666597995], [-75.26429795480313, 39.88224218937893], [-75.26308178020672, 39.88235579091961], [-75.26226289078176, 39.882571844384074], [-75.26194560986067, 39.88288888867857], [-75.26188556092026, 39.88306871152689], [-75.2619648414801, 39.88324018437365], [-75.26243256889265, 39.883634293208154], [-75.26413434517731, 39.88413377427175], [-75.26444410534837, 39.884314917831624], [-75.26463823565925, 39.88473376881503], [-75.264227371783, 39.88500223313561], [-75.26315322304049, 39.88530063993857], [-75.26272953306756, 39.88555405988555], [-75.26261697096858, 39.885805005360254], [-75.26268286125655, 39.88602596206221], [-75.2628037631714, 39.88608308133478], [-75.26368381808622, 39.88614529122091], [-75.26398148286944, 39.88609690542778], [-75.26428366505263, 39.88619301002159], [-75.26479848088731, 39.88644542327039], [-75.26485152464697, 39.88653708219026], [-75.26493409750464, 39.886673786544634], [-75.26503772097375, 39.88683343320687], [-75.26510529938675, 39.88698105572501], [-75.26513539479535, 39.887155972712485], [-75.26512903307312, 39.88733009834498], [-75.26509591997379, 39.88753737422559], [-75.26497854368195, 39.88775406469194], [-75.2648775952483, 39.88792051812417], [-75.26472581587099, 39.88808024886747], [-75.26459672735419, 39.88821798465446], [-75.26444658541898, 39.88833277777339], [-75.26426121679286, 39.88841307911788], [-75.26399646292565, 39.888469173198004], [-75.26372585348497, 39.88848578900923], [-75.26337647426388, 39.88846134543911], [-75.26297687522327, 39.88841332328015], [-75.26267977091516, 39.88835628254044], [-75.26247314241665, 39.88841925584918], [-75.2622932146623, 39.88855026444444], [-75.26219996310193, 39.88870564022349], [-75.26213382192496, 39.888917819787274], [-75.26209602532828, 39.88915309877558], [-75.26208092701746, 39.889366385421475], [-75.26208785386176, 39.88967571529459], [-75.26210130265099, 39.8899064854195], [-75.26212327937355, 39.89010371306425], [-75.26210961692534, 39.890277681125525], [-75.26210242524787, 39.890474274709355], [-75.26203587226061, 39.89069768785107], [-75.26188222118692, 39.89130708745025], [-75.26185500322245, 39.891452653996886], [-75.26179029803899, 39.891625513952086], [-75.26173349960943, 39.891781680833176], [-75.26160542559434, 39.89189132922739], [-75.26150492929955, 39.89194536088399], [-75.26131348888022, 39.89199179832038], [-75.26109852855167, 39.892082694840994], [-75.26073002527949, 39.89218149889538], [-75.26014173319912, 39.892303635552956], [-75.25992903257615, 39.892332744162395], [-75.25974570453546, 39.892356867490776], [-75.25954132387776, 39.89235804710291], [-75.25934987982089, 39.89240448033459], [-75.25910760004298, 39.89244418720454], [-75.25895846820406, 39.892530889134854], [-75.25877811246932, 39.89267312583547], [-75.25856879096838, 39.89280911317068], [-75.25838719659659, 39.89298505089836], [-75.25821268729047, 39.89316676456229], [-75.25802297698709, 39.89336501310601], [-75.25782941331842, 39.8935687961448], [-75.2576701035039, 39.89373397661408], [-75.25743375400573, 39.89400990882345], [-75.25691062195747, 39.89454381022039], [-75.25674319192008, 39.89473129797559], [-75.25666574008655, 39.89485328393727], [-75.25666265094684, 39.89493753946833], [-75.25671019421473, 39.89503413804727], [-75.25679193612685, 39.89519331631798], [-75.25696827170307, 39.8953601750748], [-75.25712499457705, 39.89546476846864], [-75.25727463402838, 39.895563587218106], [-75.25738980947702, 39.89570662738757], [-75.25736278601762, 39.895846576067925], [-75.25727701118751, 39.89599649052031], [-75.257147276008, 39.89615106922877], [-75.25693526480914, 39.89636007195456], [-75.25676239047758, 39.896496847241195], [-75.2564504267347, 39.896844213135324], [-75.25623676099224, 39.8970981515777], [-75.25609099485138, 39.89729173024855], [-75.25598230732751, 39.89746925259397], [-75.25580510305767, 39.89772398183689], [-75.25561819449672, 39.89794477289789], [-75.25550723823173, 39.8981840804194], [-75.25533064848462, 39.898421958548546], [-75.25522587248224, 39.89849275841124], [-75.25515673523988, 39.89858681807738], [-75.25509592180552, 39.89865295158884], [-75.25509569832735, 39.89876237738784], [-75.25511767379889, 39.89885579733446], [-75.25516707347406, 39.898901843644225], [-75.25523464359028, 39.89904947289799], [-75.25533991056038, 39.89916419034909], [-75.25548749498242, 39.899319182958166], [-75.25565079473147, 39.89950546904604], [-75.25551927441859, 39.899671817467535], [-75.2537125750273, 39.90165972354577], [-75.25128930933779, 39.90440464653971], [-75.25349030441225, 39.90558931620286], [-75.25247650491937, 39.906629316501075], [-75.25239433810611, 39.90663279088665], [-75.25215241629941, 39.90666124857997], [-75.25199092786976, 39.90668583626129], [-75.25175526466995, 39.90674253861986], [-75.25162859233201, 39.906812856580146], [-75.25149765214105, 39.9068999452429], [-75.2513030688708, 39.907030619593826], [-75.25105680761287, 39.90717703101529], [-75.25087033953598, 39.90728539552146], [-75.25071407900656, 39.90736630916673], [-75.25044490386146, 39.90754032801137], [-75.25031760916022, 39.90762749577421], [-75.25027074898914, 39.907710796000934], [-75.25022327032462, 39.90781094748396], [-75.25020475982173, 39.90791735099786], [-75.25018480243162, 39.90806307466613], [-75.25019842217804, 39.90828822850089], [-75.25019243325477, 39.90845111971399], [-75.25016621596865, 39.9085685995522], [-75.25011667252429, 39.908724919746994], [-75.25004503830664, 39.90888637949426], [-75.25000278670556, 39.90904285865848], [-75.2499330142538, 39.90915376556626], [-75.24989200148285, 39.90927654309308], [-75.24991807752134, 39.909361434647856], [-75.2500059768168, 39.90945084765427], [-75.25014975380923, 39.909512644596155], [-75.25028001024752, 39.90954359212601], [-75.25046964910027, 39.90954772687289], [-75.25065075551524, 39.90958540390398], [-75.25088188492465, 39.909652278422946], [-75.25110530948446, 39.90973022709381], [-75.25122682697439, 39.90980033293835], [-75.25129687653734, 39.909880560379776], [-75.25128483388012, 39.910009591046034], [-75.25123632293, 39.91013782777179], [-75.25112175484563, 39.910275867253], [-75.2510003032828, 39.91040251131497], [-75.25087052511984, 39.91055708467883], [-75.25071989775354, 39.91068309337084], [-75.25061365619707, 39.91079320657612], [-75.2505363791607, 39.910909573348086], [-75.25039930530177, 39.911063985363604], [-75.25019293955206, 39.91121688638701], [-75.24992663835961, 39.911312265420186], [-75.24974869265492, 39.91138708470562], [-75.2495184447701, 39.91149449164222], [-75.24933320197647, 39.91156915205354], [-75.24916213543847, 39.911655365782146], [-75.24898294714365, 39.91176388364004], [-75.24885502150394, 39.91186790279346], [-75.2487627393239, 39.911995182787926], [-75.24872048397681, 39.91215166240069], [-75.24868531572548, 39.91231391610877], [-75.24859764111719, 39.91251437506987], [-75.24855744936804, 39.91261468496965], [-75.2485093471108, 39.91273168612919], [-75.24843206430398, 39.912848050580614], [-75.2483774921136, 39.91294242446679], [-75.24829436285583, 39.91301931134196], [-75.24821164681734, 39.91308496369788], [-75.24805516189605, 39.9131714913694], [-75.2478317892695, 39.91329028952387], [-75.24760174098992, 39.9133920758825], [-75.24740045441959, 39.913505733991265], [-75.24720061585029, 39.91358007162903], [-75.24711665739866, 39.913679423859584], [-75.24706916988879, 39.91377957493105], [-75.24706441372602, 39.91390876440819], [-75.24711780437835, 39.914044843650025], [-75.2472228763013, 39.91416518896761], [-75.24733408398963, 39.91429965601948], [-75.24741208913824, 39.91441967161091], [-75.24748929415475, 39.91453956246071], [-75.24755284722504, 39.91458332237008], [-75.24763258569716, 39.914637510394016], [-75.24770662962136, 39.91472304303108], [-75.24771599704783, 39.91483863123591], [-75.24765491195821, 39.91495618126942], [-75.24755500478895, 39.915079875646406], [-75.24748646962614, 39.9152147431452], [-75.24734794882932, 39.915400532460204], [-75.24718840961387, 39.915633064899126], [-75.24713723270843, 39.915728100742655], [-75.24705774010306, 39.915852240368565], [-75.24698899190108, 39.91593116033967], [-75.24692037341751, 39.91600658455143], [-75.24684242492191, 39.91608879943717], [-75.24676795121663, 39.91619993631191], [-75.2467642932783, 39.9163301039174], [-75.24678714191808, 39.91644948240546], [-75.24683526643057, 39.91656067488572], [-75.24687750416045, 39.916708450661766], [-75.24693674751636, 39.91687235782663], [-75.24696194160919, 39.91692795126065], [-75.24702074539826, 39.916980371695004], [-75.24710353047506, 39.91702894488325], [-75.24717205571314, 39.91707939254227], [-75.24720597939441, 39.91716011593969], [-75.24717925618677, 39.91722928833567], [-75.24723942718408, 39.91740362743354], [-75.24730486773664, 39.917616672815065], [-75.24734745909676, 39.917786895310684], [-75.2473581560496, 39.91799404346665], [-75.24734817198272, 39.91843116718604], [-75.24733290081883, 39.91868007084684], [-75.24733416041266, 39.91881177205084], [-75.24739079615391, 39.91901521970489], [-75.24749740200332, 39.91927148751148], [-75.24758426940232, 39.91940035390213], [-75.24762266200263, 39.9195187550527], [-75.24762323035877, 39.919669250266246], [-75.24759627457499, 39.91990379300391], [-75.24758112878699, 39.91998340569149], [-75.2475278111457, 39.92010451120326], [-75.24748739074602, 39.92020708455972], [-75.24747679000083, 39.92032912234339], [-75.24746601865583, 39.92045585687965], [-75.24746117528564, 39.920587423072966], [-75.24746853615764, 39.92071925742699], [-75.24746835034084, 39.9209731926147], [-75.24746078474014, 39.92134453360512], [-75.24748558985473, 39.92150026096388], [-75.24751507355418, 39.921672165022855], [-75.24750607298624, 39.92177345815112], [-75.24747157845458, 39.9218808649304], [-75.24739212019405, 39.92204842448603], [-75.24728997880783, 39.922168462524084], [-75.24716359846583, 39.92228327003526], [-75.24706859910215, 39.92237524650567], [-75.24693594263907, 39.92249461996705], [-75.24664178298741, 39.92277035402662], [-75.24652133215531, 39.92288999080537], [-75.24636253132851, 39.9230558183447], [-75.2462666632187, 39.92317129023258], [-75.24618840967676, 39.92330595669068], [-75.24615880781613, 39.92344638863182], [-75.24614054300106, 39.92361057952106], [-75.24613379290614, 39.92379383456595], [-75.24612963902429, 39.92390660579278], [-75.24609531661189, 39.92400931460536], [-75.2460726810459, 39.924126383644335], [-75.24603191218198, 39.924238355335795], [-75.24599079341972, 39.924359726638386], [-75.24594478254895, 39.92444807153349], [-75.24586652923863, 39.92458273782064], [-75.24579506940592, 39.924698741495526], [-75.2457263137798, 39.9248242096502], [-75.24568010915989, 39.92488371305061], [-75.24563654577109, 39.92493981520691], [-75.24555322629331, 39.92504615517457], [-75.24543886966802, 39.92516592584399], [-75.24526474045014, 39.925416061005436], [-75.24519868862885, 39.92555099520395], [-75.24512739974729, 39.92566230086199], [-75.24505018240241, 39.925768772892795], [-75.2449924836029, 39.9258427543882], [-75.24486834379816, 39.92589647437382], [-75.24476234202136, 39.92595529277384], [-75.24462616977375, 39.92600404644966], [-75.2445201676861, 39.92606286282527], [-75.24440143811377, 39.926135510561735], [-75.24433607563414, 39.926251646642434], [-75.24430174936177, 39.926354354014606], [-75.24433081231221, 39.926477256518716], [-75.24441279147882, 39.92657310063879], [-75.24450767024295, 39.926650415607334], [-75.2445770981056, 39.92675538993084], [-75.24459769989812, 39.926859295658076], [-75.24458012543246, 39.92700469324823], [-75.24457982113523, 39.92717868275433], [-75.24455177072839, 39.92727682413468], [-75.24449809559326, 39.927407325222624], [-75.24442645605995, 39.927528027413075], [-75.24434226541503, 39.92765786168888], [-75.24426993485572, 39.92779735782447], [-75.24419933380707, 39.92788986798446], [-75.24412159279538, 39.92801043578041], [-75.2440553641325, 39.928150067838665], [-75.24400161995722, 39.92836521281857], [-75.24398525652, 39.928477718131035], [-75.24396681187515, 39.928646607159685], [-75.24396702565667, 39.92880650206786], [-75.2439716494672, 39.92917810779471], [-75.2439670125304, 39.9294695678305], [-75.24396806898285, 39.92960333793567], [-75.24398241683463, 39.929714441188494], [-75.24400998780085, 39.92979498609446], [-75.24409928849657, 39.92985807166599], [-75.24418927875121, 39.9299023622003], [-75.24427857744878, 39.929965446680804], [-75.2443551495057, 39.930042360769605], [-75.24440575074128, 39.930161032421815], [-75.24442853925618, 39.93028850094924], [-75.2443816574547, 39.930400338625375], [-75.2442746088932, 39.93048734935878], [-75.24413128364208, 39.930564160954866], [-75.24395081763902, 39.930654270316616], [-75.24381359589472, 39.930731214908114], [-75.24369416667311, 39.93082265774716], [-75.24363594233557, 39.93091073404509], [-75.24360528992457, 39.93107935804132], [-75.2435582340958, 39.931195894802094], [-75.2435164136411, 39.931336059191445], [-75.24347511636647, 39.931462127252175], [-75.24343450979335, 39.931569398560214], [-75.24341831681822, 39.93167720346368], [-75.24340160266087, 39.9317991074292], [-75.24334303285262, 39.93189658152115], [-75.24327956923035, 39.93196103173032], [-75.24318593632059, 39.932015415176366], [-75.24310468404244, 39.93206536780084], [-75.24304951001912, 39.93215351141844], [-75.24293513826386, 39.93227327780365], [-75.24284448785608, 39.93241237541506], [-75.24272227980886, 39.932578998543015], [-75.24262465866519, 39.93274145502357], [-75.24252946397212, 39.93283812799], [-75.24245309882642, 39.93292110483453], [-75.24235093355396, 39.93304113848015], [-75.24228625556222, 39.93313847852701], [-75.24223988835199, 39.93323621983896], [-75.24214722451259, 39.93334705561295], [-75.24201270073718, 39.93343346267999], [-75.24188906490586, 39.933473083052256], [-75.24171712157997, 39.93349753900689], [-75.24155773164858, 39.93351286200569], [-75.24139782008557, 39.93354228383802], [-75.24118890620518, 39.93357533488688], [-75.24097388764444, 39.93360825200431], [-75.24075973742913, 39.93361767448273], [-75.24051645624813, 39.93358883722877], [-75.24024404448275, 39.93352174185772], [-75.24016114639225, 39.933493624967426], [-75.23992403928501, 39.93355793659742], [-75.23952717814703, 39.933567607673154], [-75.2392009596448, 39.93345696358626], [-75.23893908361332, 39.93327485944053], [-75.23873923668756, 39.93312452331611], [-75.23849767581348, 39.933034089558596], [-75.23823787470704, 39.93300669392476], [-75.23800082407834, 39.93301104522161], [-75.2377768832943, 39.93308520126836], [-75.23683559966594, 39.93375789463036], [-75.23664759632881, 39.933906180675955], [-75.23666177970193, 39.934087550085515], [-75.23665133117491, 39.93420488655617], [-75.23660339239997, 39.934344915588156], [-75.23655336828404, 39.93454132822961], [-75.23652373928955, 39.93468175760784], [-75.23646865275937, 39.93484984370847], [-75.23639257083319, 39.9351726570471], [-75.23631969340647, 39.935326245383415], [-75.23617007168824, 39.935407612638286], [-75.23601330560618, 39.93551703957006], [-75.23586298784012, 39.935617201263895], [-75.23566401318618, 39.93571159467156], [-75.23545823673795, 39.935824649600505], [-75.23526380087891, 39.93596146431477], [-75.23497921193861, 39.936223273683886], [-75.23492010462078, 39.93633483891729], [-75.23492185984469, 39.936452442920405], [-75.23491664324142, 39.93659340731749], [-75.2348461953796, 39.93668121324939], [-75.23477321788663, 39.93675485407357], [-75.23474393443104, 39.93688588427163], [-75.23478702806624, 39.9370420159329], [-75.23478163725238, 39.93718767880529], [-75.23480048581486, 39.937338577353174], [-75.23486938799532, 39.937457652082024], [-75.23492084647403, 39.93755283366167], [-75.23496848080433, 39.9377513881742], [-75.23497564550011, 39.937887919976426], [-75.23498281132761, 39.938024453604044], [-75.23500340297346, 39.93812836286094], [-75.23507387119106, 39.9382051493166], [-75.23516299723741, 39.938272941142294], [-75.23529554970298, 39.938322873167614], [-75.23548966580893, 39.93836004788003], [-75.2357816214686, 39.93839466387713], [-75.23594591001282, 39.93841237296468], [-75.23614682570808, 39.93843088461924], [-75.23634739395118, 39.93845879289217], [-75.23649999900883, 39.93846213733794], [-75.23668381661955, 39.93844735638547], [-75.23687984402174, 39.93843284087639], [-75.23714440811271, 39.938382206511235], [-75.23744899521795, 39.938323042842086], [-75.23762182198209, 39.93827509907656], [-75.23776936395865, 39.93825011538121], [-75.23796573783048, 39.93822620284254], [-75.23817327823944, 39.93823074827048], [-75.23832622909218, 39.938224690584775], [-75.23849801306588, 39.938204940029244], [-75.23873711615691, 39.938181959138795], [-75.23887244889454, 39.9381567076098], [-75.23900743437267, 39.93814085199926], [-75.23918428007629, 39.938149426781784], [-75.23933670863326, 39.938157466792724], [-75.23945286097023, 39.93815530616252], [-75.23956308200826, 39.93814831239838], [-75.23970958281383, 39.93815151897409], [-75.23981928309944, 39.93815862313541], [-75.23992253142438, 39.9381749914664], [-75.2400372955059, 39.938210419969614], [-75.24013967867731, 39.938250281510335], [-75.24025863671281, 39.93833753303796], [-75.24040995404322, 39.938458408504886], [-75.24059276459693, 39.938636405667815], [-75.24071155050956, 39.938728352515966], [-75.24076267231305, 39.93883292938218], [-75.24073932864717, 39.93896879310819], [-75.24069871200369, 39.93907606610911], [-75.2406272281501, 39.9391920656366], [-75.24054440384643, 39.93928430646638], [-75.24042495286159, 39.9393757458371], [-75.2403423004971, 39.939463285303056], [-75.240240642209, 39.939569221582225], [-75.24014387387415, 39.93970818350265], [-75.24001675359604, 39.939841776143794], [-75.23995119918372, 39.93996261004167], [-75.23989199360169, 39.94004014682548], [-75.23943990595043, 39.939820635715826], [-75.2392059914378, 39.939736453084166], [-75.2390011854177, 39.93971980516514], [-75.23873187557751, 39.93973823665251], [-75.2384519774567, 39.93982941531003], [-75.23807984787723, 39.9400645345292], [-75.23787144698669, 39.94014511600913], [-75.23773600317422, 39.94017559699575], [-75.23758544765711, 39.940187504362896], [-75.23719951600373, 39.94015472211588], [-75.23708098652438, 39.94015516792562], [-75.2369297568647, 39.940185303009926], [-75.23676093795004, 39.940263706211184], [-75.23660687954481, 39.94036655046346], [-75.23503453869628, 39.941475085310834], [-75.23382951822354, 39.9423175806767], [-75.23432126745027, 39.94274206383771], [-75.23453049110597, 39.94290822712017], [-75.2347335948175, 39.943088277988174], [-75.23521991589762, 39.94349567046655], [-75.23460058718051, 39.94394722294118], [-75.23447444548366, 39.94402821946588], [-75.23418573636991, 39.94423881568086], [-75.23371815372047, 39.944560304836195], [-75.23322356204032, 39.9441379445611], [-75.23281885532278, 39.943791942656354], [-75.23232073989367, 39.94337118576998], [-75.23094716896786, 39.94433754900314], [-75.23045841638532, 39.94392442181561], [-75.2300512126973, 39.943581922008015], [-75.22955325914707, 39.9431694427212], [-75.22906061292544, 39.94275510279864], [-75.2286495761246, 39.94240725523266], [-75.22816473061533, 39.94198411686646], [-75.2279150932509, 39.941779548000355], [-75.22770183808326, 39.94160479346235], [-75.22733688633339, 39.94129340858265], [-75.22688622317584, 39.94090891493186], [-75.22639240902276, 39.94050315877415], [-75.22621028243675, 39.94033942153977], [-75.22598204677581, 39.94013938623111], [-75.22574413892491, 39.93994585631309], [-75.22548113740314, 39.939726193300785], [-75.22411470112915, 39.94069239719636], [-75.22361656639723, 39.94104707837321], [-75.22342672572017, 39.94117663554376], [-75.22323926450781, 39.941312821226155], [-75.22275432475358, 39.94165593328939], [-75.22206699647136, 39.9421396456706], [-75.22136817491958, 39.94262798959198], [-75.22079176874564, 39.9430253906775], [-75.22022164439426, 39.94341620880577], [-75.21954803809479, 39.94389540808213], [-75.21915337365694, 39.94417736868566], [-75.2190032263168, 39.94428463720904], [-75.21840785554781, 39.94470311532915], [-75.21773309661441, 39.94518440362091], [-75.21647228140037, 39.9460684669736], [-75.21516235800405, 39.94697939184697], [-75.21396205829907, 39.94597580755762], [-75.21332518017692, 39.946428740261325], [-75.21268289883348, 39.946880804965346], [-75.21139018616216, 39.94779717850673], [-75.210599590919, 39.948349747884194], [-75.20905275231212, 39.94840065040551], [-75.20891492499595, 39.94774619012205], [-75.20886579842912, 39.94751274485901], [-75.20873299651238, 39.94684000882448], [-75.20853779649374, 39.945761818078864], [-75.20838441136944, 39.94565560961414], [-75.20827024712582, 39.94576580082315], [-75.20811137064551, 39.94566542503228], [-75.20746762198765, 39.94528192451025], [-75.20583883243509, 39.944319761683424], [-75.20548867998357, 39.944112922210635], [-75.2053264864448, 39.94408111179888], [-75.20460489022865, 39.94395445297271], [-75.20329421085049, 39.94408301196562], [-75.2030545074157, 39.94362262812122], [-75.20384389489251, 39.943159031803354], [-75.20454685757073, 39.94255199429125], [-75.20503308883262, 39.94184108941856], [-75.2051511241047, 39.941109705274734], [-75.20515916367398, 39.94065801560933], [-75.20516533511787, 39.94027327776247], [-75.20516213209207, 39.938603951228046], [-75.205161751336, 39.93840528394946], [-75.20516612810576, 39.937061048418464], [-75.20537590640467, 39.93587702877518], [-75.2055971311071, 39.93548447427487], [-75.2058484773116, 39.93503846158553], [-75.20642541432272, 39.9343578658045], [-75.20757291260742, 39.933166337097894], [-75.20969119752053, 39.930835934591194], [-75.21052319268539, 39.92972229370418], [-75.21074355424716, 39.929267201457094], [-75.21116053746807, 39.928406227444746], [-75.21157630482006, 39.92760883240147], [-75.21214722121682, 39.92634789377554], [-75.21240349026309, 39.92539130720084], [-75.21255801411132, 39.92420605590866], [-75.21236773139668, 39.92339524882293], [-75.21195444836577, 39.92265025678862], [-75.21111670313407, 39.92195247005715], [-75.20994136801055, 39.92119059609576], [-75.20888316774469, 39.92098318900874], [-75.20771109345405, 39.920872302717065], [-75.20647864311627, 39.920901574082286], [-75.20524090114905, 39.92107222205077], [-75.20375348198348, 39.921039201492874], [-75.20262167546693, 39.920589535899126], [-75.20203954057037, 39.919939811356116], [-75.2019945286076, 39.919781946952625], [-75.20184462772525, 39.91925623705986], [-75.20194457510891, 39.91855091390986], [-75.20246386163328, 39.917444533142344], [-75.20359825025908, 39.91561596579895], [-75.2041088348333, 39.91449523508961], [-75.20470414463513, 39.91331977872765], [-75.20542266692576, 39.912288564423946], [-75.20635832065332, 39.91134706809731], [-75.207216129998, 39.911012324931804], [-75.20848050275646, 39.910615834252674], [-75.2094913839666, 39.9106099381418], [-75.2122790037696, 39.9107565830743], [-75.2135613898842, 39.91061515098194], [-75.21464580619211, 39.910115556509204], [-75.2153079210576, 39.909606617026206], [-75.21568364421469, 39.90889323104565], [-75.21569646410822, 39.90756333700614], [-75.21545761289784, 39.905591091598325], [-75.2151114782057, 39.903786283051396], [-75.21468644114745, 39.901880671807056], [-75.21405201147564, 39.90066381664515], [-75.2135832514153, 39.89993175325022], [-75.2121105527512, 39.898285960912], [-75.21157229080009, 39.89783622404864], [-75.21063179238031, 39.897050385553555], [-75.20953791229009, 39.89633275566915], [-75.20811681144355, 39.8955229525527], [-75.20643188168988, 39.89489123824661], [-75.2046735612974, 39.894257866007955], [-75.20220010194497, 39.893834988846315], [-75.20040917979276, 39.89358290207157], [-75.19791884605132, 39.89287653536392], [-75.19734849868537, 39.892554200508876], [-75.19664161307446, 39.892154693323114], [-75.195377006374, 39.890852930227844], [-75.1950055405623, 39.88900502992013], [-75.1947442202182, 39.88715958381745], [-75.19435105676118, 39.88417912439962], [-75.19423258569884, 39.881954784067574], [-75.19372794187674, 39.88001878022436], [-75.19324988488377, 39.878184668892864], [-75.19430620973216, 39.877583978488495], [-75.19885918020827, 39.87531713095636], [-75.20579217318934, 39.871571579248375], [-75.21198487997897, 39.86747284480536], [-75.21603814471179, 39.87111631570757], [-75.21578921822109, 39.87504224093411], [-75.21572726805299, 39.876019193741996], [-75.2157225921386, 39.87609686569248], [-75.21590037854007, 39.876060781394166], [-75.21604782206254, 39.876025894510676], [-75.21620413112939, 39.87599218827433], [-75.21636007782286, 39.875956244738106], [-75.21670070441829, 39.87587791040923], [-75.2168458904517, 39.87584442862628], [-75.21701387381843, 39.875808276381136], [-75.21751660232262, 39.87574670542258], [-75.21770149581347, 39.87572104235302], [-75.21785992648596, 39.87570214368064], [-75.21803436577785, 39.87568407065159], [-75.21832489893065, 39.875679545594956], [-75.21885677116845, 39.87567303314916], [-75.21924109217277, 39.87559284811976], [-75.21944440642542, 39.87554510553339], [-75.21963503168246, 39.87549816989502], [-75.2197372374579, 39.87547755582184], [-75.22086539016242, 39.87557153428044], [-75.22104101540015, 39.87558704603196], [-75.22126421291121, 39.875606141876716], [-75.22208388458552, 39.87567562076239], [-75.22269919578615, 39.875731361270006], [-75.22287056878407, 39.87575196887403], [-75.22311054008301, 39.875780408591524], [-75.22376593968741, 39.87585913878545], [-75.22465413819802, 39.87602438054643], [-75.22485767419093, 39.876061344325464], [-75.22502858924472, 39.87609467239676], [-75.22595270413426, 39.87626793580584], [-75.22686666491282, 39.87640468847385], [-75.22711914707487, 39.876437058648364], [-75.22847167282687, 39.876632398326805]]]}}, {"id": "1020", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20583883243509, 39.944319761683424], [-75.20746762198765, 39.94528192451025], [-75.20811137064551, 39.94566542503228], [-75.20827024712582, 39.94576580082315], [-75.20838441136944, 39.94565560961414], [-75.20853779649374, 39.945761818078864], [-75.20873299651238, 39.94684000882448], [-75.20886579842912, 39.94751274485901], [-75.20891492499595, 39.94774619012205], [-75.20905275231212, 39.94840065040551], [-75.210599590919, 39.948349747884194], [-75.21139018616216, 39.94779717850673], [-75.21268289883348, 39.946880804965346], [-75.21332518017692, 39.946428740261325], [-75.21396205829907, 39.94597580755762], [-75.21516235800405, 39.94697939184697], [-75.21587487161817, 39.9475691465498], [-75.21656076374511, 39.94815297647089], [-75.21712233963673, 39.94861189853709], [-75.21923577195466, 39.948369210737745], [-75.22123731327486, 39.9481623444683], [-75.22124930716777, 39.94827774218], [-75.22108786424026, 39.94902773485284], [-75.22093688238962, 39.94972740202175], [-75.22077646819018, 39.950514077833525], [-75.22061693130486, 39.951276551263554], [-75.22258996908286, 39.951520619003304], [-75.22243591661017, 39.95228185757551], [-75.2222800420232, 39.95304100157719], [-75.22219283966916, 39.95341499671031], [-75.2220575849949, 39.95410396374315], [-75.22203767016683, 39.9541745245253], [-75.22192358674249, 39.954724257174874], [-75.2217982925147, 39.955320872144064], [-75.2216873926178, 39.95585536230671], [-75.22156022486105, 39.956462883842796], [-75.22149388168697, 39.956831736809185], [-75.22139876232934, 39.95722829373262], [-75.2212452105831, 39.95798512282026], [-75.22108669773192, 39.95873296666356], [-75.22092091673352, 39.959506370957484], [-75.22190949565909, 39.95962711754266], [-75.22239684004771, 39.95968156550928], [-75.22290106608362, 39.95974637621446], [-75.22388433780017, 39.95986316309301], [-75.22421322127714, 39.95990071720949], [-75.22477258922517, 39.9599762940573], [-75.22486806570537, 39.960006758007836], [-75.22620947880866, 39.96016033418035], [-75.22685117094453, 39.96024000475525], [-75.2274440501019, 39.96031227707355], [-75.22797617665447, 39.96037854276966], [-75.22864645665969, 39.96046483588109], [-75.22831950768749, 39.96203465368984], [-75.22767177235322, 39.961956483381094], [-75.22716073419876, 39.96189346163298], [-75.22651888853692, 39.96181383932179], [-75.22585395073848, 39.96172902647333], [-75.2252934967573, 39.96165947884321], [-75.2245421302761, 39.961568838865276], [-75.22355198385931, 39.96144479703293], [-75.22256784792319, 39.96132161960473], [-75.22206583290657, 39.96125897645551], [-75.2215794161934, 39.96119931296838], [-75.22059247702725, 39.961075874663585], [-75.21965042702726, 39.960957506554315], [-75.21943900765564, 39.96094235593091], [-75.21969376220423, 39.96252450315264], [-75.21976953596858, 39.96301130841067], [-75.22004478056664, 39.963820869515125], [-75.22011148713864, 39.96436075060387], [-75.2201709963554, 39.964845529988835], [-75.21836098136826, 39.965028922370635], [-75.21829467559881, 39.96449083190423], [-75.21822793170311, 39.96395720516577], [-75.21637741936549, 39.96409569079961], [-75.21516294851831, 39.964189471409064], [-75.21470015168937, 39.96422115065583], [-75.21419559539217, 39.964259332972176], [-75.21370729354383, 39.964296283029626], [-75.21322853775273, 39.96433250864373], [-75.21333806087627, 39.965168923090985], [-75.21337609340233, 39.965466918667126], [-75.21340694504758, 39.96570864921634], [-75.21351411433787, 39.966578304228385], [-75.2136500122597, 39.96769736954828], [-75.21370757697493, 39.968127131120845], [-75.21375007799544, 39.9684829244615], [-75.21379568055352, 39.96883284512564], [-75.21381710658514, 39.96903611423682], [-75.21384515928588, 39.96922812853912], [-75.21384602151933, 39.969289782379036], [-75.21435015898996, 39.969238605392725], [-75.21480839700534, 39.96919231816414], [-75.21528992999187, 39.96914249371162], [-75.21576217994979, 39.96909507783468], [-75.21636818230415, 39.969031120310326], [-75.21699640530869, 39.968970685609506], [-75.21717197868607, 39.97035239770751], [-75.21743760573125, 39.9724356476891], [-75.21608600831708, 39.97161938133278], [-75.21499017096943, 39.9709560607137], [-75.21468810542842, 39.970774549650116], [-75.21454241075261, 39.970684580300244], [-75.2143190588701, 39.9705434928283], [-75.21390007921819, 39.970296393465695], [-75.21293442563362, 39.96971390666676], [-75.21264181899252, 39.96953740234732], [-75.2121349858603, 39.96922915050159], [-75.21133586950056, 39.96872707840927], [-75.2115166052264, 39.96965576250502], [-75.21013836492584, 39.969805350585304], [-75.20920137525263, 39.969908239553455], [-75.20822768613749, 39.97001688531799], [-75.2071715109633, 39.970134859313845], [-75.20664160684923, 39.97018882439134], [-75.20584308660476, 39.97027633607101], [-75.20529383804944, 39.97032724144262], [-75.2047464601045, 39.97038654791297], [-75.20430221981374, 39.970442136607105], [-75.20418303772176, 39.97042967509766], [-75.20360222096758, 39.970262038082865], [-75.20363324664117, 39.970432344209144], [-75.20365192712485, 39.970536711194484], [-75.20372256837196, 39.97092991009466], [-75.20372444604058, 39.970940143918334], [-75.20373778519559, 39.9710135329684], [-75.20348653944679, 39.97101458528833], [-75.2031438609358, 39.971018855159635], [-75.20280217542738, 39.97103558441613], [-75.20246146679227, 39.97106857044634], [-75.20212582727534, 39.97111679138892], [-75.20179527631387, 39.97118609164044], [-75.20146991414583, 39.97126904739688], [-75.20114834189835, 39.97135896109926], [-75.2008300396192, 39.97145629876278], [-75.2005167783354, 39.97156188994687], [-75.20020658391334, 39.97167432130029], [-75.19990132964449, 39.9717951923184], [-75.19960966378463, 39.9719314879363], [-75.19933172317984, 39.972085236761686], [-75.19906596864303, 39.97225320340784], [-75.19881896232208, 39.97243574288791], [-75.1983798864382, 39.972837364965635], [-75.19817373991863, 39.97304817344242], [-75.19796973622626, 39.97326048165323], [-75.19776267748833, 39.97347047176852], [-75.19769427033506, 39.9735526068525], [-75.19747675915838, 39.97375745082089], [-75.19724347719469, 39.97395315065537], [-75.19700906804599, 39.97414484161994], [-75.1967697217073, 39.9743329092601], [-75.19652544619335, 39.97451751410253], [-75.19627710586025, 39.97469896547529], [-75.19602558226443, 39.974877551471934], [-75.19577203856599, 39.975054075529776], [-75.19575612004209, 39.97506493243013], [-75.19541223775175, 39.97510346411268], [-75.19489863948688, 39.97516312254212], [-75.19466135487802, 39.97518792535294], [-75.1946275299596, 39.97519146092737], [-75.19461061691396, 39.97519322869778], [-75.19440416945793, 39.975214808203454], [-75.19438620060323, 39.97521668577702], [-75.19435026987784, 39.97522044197228], [-75.19423227229858, 39.97523277524366], [-75.19316767010415, 39.97534404688133], [-75.19306819929173, 39.97522587002582], [-75.19267610460359, 39.97455682874583], [-75.19251524639479, 39.97427958810763], [-75.19185603211622, 39.97273659554681], [-75.19156997895064, 39.971541539557435], [-75.19117087980821, 39.970174153296554], [-75.19053330321391, 39.969523141662705], [-75.18900330738798, 39.96863994646185], [-75.18706908333387, 39.967747703382884], [-75.18559269656258, 39.96690811198944], [-75.18484922326599, 39.96614149173921], [-75.18435660843396, 39.965550289347135], [-75.18364873769167, 39.96457219229305], [-75.18354554441063, 39.96443732115239], [-75.18347225828724, 39.964341536181614], [-75.18287764460733, 39.96356437420266], [-75.18195851251086, 39.962581540396314], [-75.18107508428989, 39.96162779881066], [-75.1802202153056, 39.960405820580924], [-75.18005107995222, 39.960132068330665], [-75.1799758297001, 39.96001027156133], [-75.17983899226007, 39.95978878931603], [-75.17947873432696, 39.95886090526811], [-75.17929516795142, 39.957880374074975], [-75.1793645489595, 39.957018719111204], [-75.17952364866278, 39.956215676865845], [-75.17956689482352, 39.95612304155624], [-75.17986268049417, 39.95548943951723], [-75.17989950342928, 39.955410561002644], [-75.18018395822202, 39.954801220932175], [-75.18031091629639, 39.95448418419493], [-75.1804479277613, 39.95414203879143], [-75.1810342474327, 39.952999285513314], [-75.18125186576778, 39.95257513323569], [-75.18174172932771, 39.95152048653826], [-75.18177228119845, 39.95145470656806], [-75.18243483863459, 39.95046482009293], [-75.18301374576069, 39.949741926184196], [-75.18367648239071, 39.949233166955395], [-75.18466080412703, 39.948491032151125], [-75.18638192557506, 39.947257678409755], [-75.1867677265549, 39.94698153699119], [-75.18687020015383, 39.94691457163152], [-75.18735320149077, 39.94659947458651], [-75.18792294351213, 39.946227784440076], [-75.18825665527879, 39.94601007383723], [-75.18889164537305, 39.945525822624006], [-75.18939241252559, 39.94514392406182], [-75.18945882417533, 39.94508477771983], [-75.18985287188819, 39.94473383402683], [-75.19022943637438, 39.94439845576369], [-75.19067974179438, 39.943981979434184], [-75.19099136949414, 39.94369375929506], [-75.19105851370779, 39.943636688136955], [-75.19157341030997, 39.94319903601902], [-75.19177005947272, 39.94303188465246], [-75.19253116202371, 39.94259603349538], [-75.19364560318907, 39.942281245825754], [-75.19369737903752, 39.942280125631584], [-75.19386792557843, 39.94227634272461], [-75.19460271708917, 39.942260124464774], [-75.19577620044844, 39.94234286678344], [-75.19692197216327, 39.94267969748615], [-75.19795163481602, 39.94316960721573], [-75.19909313422974, 39.94360535829999], [-75.19996512413074, 39.94387946206713], [-75.20042752555308, 39.94394416737382], [-75.20080678289902, 39.9439972290549], [-75.20161442497796, 39.94396959747437], [-75.2018099014724, 39.94396290300457], [-75.2030545074157, 39.94362262812122], [-75.20329421085049, 39.94408301196562], [-75.20460489022865, 39.94395445297271], [-75.2053264864448, 39.94408111179888], [-75.20548867998357, 39.944112922210635], [-75.20583883243509, 39.944319761683424]]]}}, {"id": "1100", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22124930716777, 39.94827774218], [-75.22123731327486, 39.9481623444683], [-75.21923577195466, 39.948369210737745], [-75.21712233963673, 39.94861189853709], [-75.21656076374511, 39.94815297647089], [-75.21587487161817, 39.9475691465498], [-75.21516235800405, 39.94697939184697], [-75.21647228140037, 39.9460684669736], [-75.21773309661441, 39.94518440362091], [-75.21840785554781, 39.94470311532915], [-75.2190032263168, 39.94428463720904], [-75.21915337365694, 39.94417736868566], [-75.21954803809479, 39.94389540808213], [-75.22022164439426, 39.94341620880577], [-75.22079176874564, 39.9430253906775], [-75.22136817491958, 39.94262798959198], [-75.22206699647136, 39.9421396456706], [-75.22275432475358, 39.94165593328939], [-75.22323926450781, 39.941312821226155], [-75.22342672572017, 39.94117663554376], [-75.22361656639723, 39.94104707837321], [-75.22411470112915, 39.94069239719636], [-75.22548113740314, 39.939726193300785], [-75.22574413892491, 39.93994585631309], [-75.22598204677581, 39.94013938623111], [-75.22621028243675, 39.94033942153977], [-75.22639240902276, 39.94050315877415], [-75.22688622317584, 39.94090891493186], [-75.22733688633339, 39.94129340858265], [-75.22770183808326, 39.94160479346235], [-75.2279150932509, 39.941779548000355], [-75.22816473061533, 39.94198411686646], [-75.2286495761246, 39.94240725523266], [-75.22906061292544, 39.94275510279864], [-75.22955325914707, 39.9431694427212], [-75.2300512126973, 39.943581922008015], [-75.23045841638532, 39.94392442181561], [-75.23094716896786, 39.94433754900314], [-75.23232073989367, 39.94337118576998], [-75.23281885532278, 39.943791942656354], [-75.23322356204032, 39.9441379445611], [-75.23371815372047, 39.944560304836195], [-75.23418573636991, 39.94423881568086], [-75.23447444548366, 39.94402821946588], [-75.23460058718051, 39.94394722294118], [-75.23521991589762, 39.94349567046655], [-75.2347335948175, 39.943088277988174], [-75.23453049110597, 39.94290822712017], [-75.23432126745027, 39.94274206383771], [-75.23382951822354, 39.9423175806767], [-75.23503453869628, 39.941475085310834], [-75.23660687954481, 39.94036655046346], [-75.23676093795004, 39.940263706211184], [-75.2369297568647, 39.940185303009926], [-75.23708098652438, 39.94015516792562], [-75.23719951600373, 39.94015472211588], [-75.23758544765711, 39.940187504362896], [-75.23773600317422, 39.94017559699575], [-75.23787144698669, 39.94014511600913], [-75.23807984787723, 39.9400645345292], [-75.2384519774567, 39.93982941531003], [-75.23873187557751, 39.93973823665251], [-75.2390011854177, 39.93971980516514], [-75.2392059914378, 39.939736453084166], [-75.23943990595043, 39.939820635715826], [-75.23989199360169, 39.94004014682548], [-75.23979706027087, 39.94016615089987], [-75.23963619396534, 39.94030370778195], [-75.23952755920212, 39.94043300312951], [-75.2394110853556, 39.94060915418838], [-75.23939994623606, 39.940745285754275], [-75.23943119117071, 39.940891748735226], [-75.2394627844872, 39.941028816554144], [-75.23949455033176, 39.941161185848685], [-75.23956276907694, 39.941299054383975], [-75.23963150767999, 39.941422825582684], [-75.23973514074508, 39.94159438872307], [-75.2398462657806, 39.941728492006625], [-75.23998687240154, 39.94189145947086], [-75.24007461985713, 39.94199683719933], [-75.24015068012862, 39.942087849549964], [-75.2402525485793, 39.94214180825931], [-75.24036749300917, 39.94217253883913], [-75.24051958489318, 39.94218997428521], [-75.24079019232238, 39.94222411094424], [-75.24095432029354, 39.94224651140097], [-75.24117966619639, 39.94226554836925], [-75.24144809122451, 39.94227612249643], [-75.24158325771072, 39.942255565363865], [-75.24182813123383, 39.942242109411644], [-75.24203585638982, 39.94224194933295], [-75.24229224786727, 39.94224755517845], [-75.24260916018603, 39.94226859033457], [-75.24306682511775, 39.94228329739258], [-75.24317583911444, 39.94230919322389], [-75.24333386277866, 39.94233145774275], [-75.24342183720493, 39.9424031306937], [-75.24353132598557, 39.94244393177221], [-75.24384466821566, 39.942478995021226], [-75.24406984478041, 39.94250272485993], [-75.24441013930479, 39.94255248223813], [-75.24465921076852, 39.9425908406283], [-75.24501327559021, 39.942598573749684], [-75.24522641200451, 39.94261733697132], [-75.24540989616517, 39.94261193821132], [-75.24556268300977, 39.94261057117742], [-75.24574006062808, 39.942605039457135], [-75.24588691642424, 39.9425988411207], [-75.2460515652383, 39.942607136961705], [-75.24619179634958, 39.94261490135258], [-75.24634947668152, 39.94264655874255], [-75.24647087390112, 39.94266801852095], [-75.2465673353056, 39.942703043463474], [-75.24666275716746, 39.94276625930145], [-75.24674493354301, 39.942857402353084], [-75.24682319210106, 39.94297197212895], [-75.24687224727833, 39.94313293092056], [-75.24696507507956, 39.94326663034335], [-75.24702620470116, 39.94340096604385], [-75.24704275162517, 39.94347994137679], [-75.24705201906154, 39.94356008862358], [-75.24710856744471, 39.94368358988301], [-75.24721031694125, 39.943906831522696], [-75.24730418365363, 39.9440123360361], [-75.2473788713993, 39.94414093700209], [-75.2474221717518, 39.94429236359239], [-75.24750958892079, 39.944407133557625], [-75.24763363452908, 39.94452270253974], [-75.24775716387462, 39.94465236694402], [-75.24789866060215, 39.944791829492104], [-75.24809187358932, 39.94493712126483], [-75.24816812079952, 39.9450234315929], [-75.24821367231563, 39.9451137737495], [-75.24823342138605, 39.94524117492926], [-75.24832084114503, 39.94535594427416], [-75.24841453978733, 39.94546614640421], [-75.24856370064882, 39.945563452033795], [-75.24870606571926, 39.9456794192683], [-75.24889571133043, 39.945838739524625], [-75.24907925456405, 39.945997926398356], [-75.24924431232968, 39.94616141402758], [-75.24946065549328, 39.9463424769117], [-75.24958347171865, 39.94640863981163], [-75.24970994612936, 39.946458423006696], [-75.24981078915437, 39.946540564200866], [-75.24991739115657, 39.946632236266126], [-75.24996634576978, 39.94671324817739], [-75.25003580135257, 39.946818220034245], [-75.2501155659711, 39.94697514241003], [-75.25015311418076, 39.94711703878613], [-75.250203219714, 39.94724980335927], [-75.25022855799462, 39.947391432714554], [-75.25027048390123, 39.94758044986304], [-75.25030803393837, 39.94772234621211], [-75.25033999690227, 39.9478500130795], [-75.25036568133079, 39.94798224629221], [-75.25041647814537, 39.94809621492207], [-75.25047441797892, 39.94818212374083], [-75.25055729620446, 39.94825446820339], [-75.2507237456042, 39.948380362950324], [-75.25106355401404, 39.94869343352228], [-75.25119302815983, 39.94882792748606], [-75.25131725976834, 39.94893879214235], [-75.25144201355148, 39.94903556211972], [-75.2515064057238, 39.9491122063701], [-75.25155720529563, 39.949226174492196], [-75.25156791888983, 39.94943332122067], [-75.25151775411985, 39.94963443973513], [-75.25141264130527, 39.949834361407255], [-75.2513099480394, 39.94996850031347], [-75.25124301808243, 39.95012693131531], [-75.25119509934306, 39.9502669655252], [-75.25115293849704, 39.95041652968595], [-75.25115011513842, 39.950576356184946], [-75.251140122282, 39.95068194634544], [-75.25117381734422, 39.95076262523385], [-75.25126755486544, 39.95095512118756], [-75.25134940176488, 39.95105565793863], [-75.25142566000874, 39.95114196519043], [-75.25151669257959, 39.95120037965305], [-75.2515854948273, 39.95128182303045], [-75.25160916664608, 39.951385793918924], [-75.25160951214247, 39.95150101560536], [-75.2516263028047, 39.95162599908733], [-75.25164623288835, 39.95174870205532], [-75.25164870854749, 39.951847509935924], [-75.25163566592619, 39.95198234743004], [-75.25161389171076, 39.95204661028335], [-75.25157728897977, 39.952128108685294], [-75.25151200240568, 39.95224190184744], [-75.25141074473645, 39.95237842196178], [-75.25128250089682, 39.95254256961861], [-75.25118634031719, 39.952665094667005], [-75.25115261702155, 39.9527513588426], [-75.25115204005658, 39.952850100252405], [-75.25117911163078, 39.952944740743874], [-75.25119467647126, 39.95306146974712], [-75.25112555886653, 39.95319633813612], [-75.25104853327463, 39.95329694164222], [-75.25092279501672, 39.953392958358265], [-75.25079060217345, 39.95349823796768], [-75.25064882089806, 39.953615064660426], [-75.25048846211494, 39.953738540278174], [-75.25035252680547, 39.953862548756675], [-75.25013724472771, 39.95406712366699], [-75.25004856825647, 39.954152188258355], [-75.25000433074985, 39.954233519844706], [-75.24995490710279, 39.954331196798385], [-75.24986356467849, 39.95440562372502], [-75.24979909557791, 39.95449709466217], [-75.24975839872643, 39.95460671876249], [-75.24976436970032, 39.95473499413899], [-75.24975027207398, 39.954827563746576], [-75.24969589356157, 39.954976861213474], [-75.24961348979413, 39.95518197961458], [-75.24957679770756, 39.95526582619968], [-75.24949413536787, 39.95535337487923], [-75.24939026681385, 39.95539460893448], [-75.24925782712917, 39.955423464869384], [-75.24918200807758, 39.95549117492122], [-75.24914391603215, 39.955571464385656], [-75.24912240054589, 39.95565799236466], [-75.24913555778662, 39.955757035020625], [-75.24917484069324, 39.95585194221137], [-75.24921760577283, 39.955935170061096], [-75.249262472997, 39.95604430846653], [-75.24927479808866, 39.9561245202664], [-75.24923470470705, 39.956217698966455], [-75.24908009782307, 39.95635070362586], [-75.24898862439304, 39.95642865265522], [-75.24895786091484, 39.95651733149055], [-75.24892623370523, 39.95662950375507], [-75.24894786001377, 39.956747541056934], [-75.24903571026282, 39.95693403235316], [-75.24919470449287, 39.95701391583521], [-75.2493149211625, 39.957068264893934], [-75.24940155282854, 39.9571218826933], [-75.24951881118939, 39.95720438788988], [-75.24963861043483, 39.957322206816485], [-75.2497783786495, 39.95742635758531], [-75.25003729980597, 39.95765537363726], [-75.25017891473904, 39.95779248363113], [-75.2502431398107, 39.957873825253266], [-75.2503601582753, 39.9580151031448], [-75.2504632093774, 39.95812080551819], [-75.250559897209, 39.958233421215546], [-75.25066634565529, 39.958329792866124], [-75.25073607349691, 39.958427715164106], [-75.25079341757636, 39.95853006991914], [-75.25083981693356, 39.95863924008346], [-75.25087622216772, 39.95872938164168], [-75.25088244165455, 39.958809462014514], [-75.2508927803255, 39.95894371046906], [-75.2508836511511, 39.95902580808698], [-75.25085035296529, 39.95910032357115], [-75.25075355116466, 39.95915699820532], [-75.25060686008487, 39.959240799539906], [-75.25045423703611, 39.959319769187076], [-75.25029245338119, 39.95939853994901], [-75.25008156364572, 39.95948329434663], [-75.24982614303097, 39.959574131817156], [-75.24965258022209, 39.95964088798368], [-75.24955324089647, 39.959683397724646], [-75.24944370354191, 39.95975390054682], [-75.24931829467371, 39.95984051663293], [-75.24921443129661, 39.95992289904946], [-75.24912329915065, 39.9599914502743], [-75.24897363839278, 39.960072835985805], [-75.24883705485743, 39.96013099163223], [-75.24869087939777, 39.960200695935995], [-75.24854775718127, 39.960270463926676], [-75.24845984910638, 39.96033438447173], [-75.2483846421231, 39.96042679733419], [-75.24833547117294, 39.96051742537408], [-75.24828272873319, 39.9606220832403], [-75.24819945617348, 39.960726075355595], [-75.24805906374475, 39.9608876051947], [-75.24797552974607, 39.96099864622252], [-75.24792339202934, 39.96108685872077], [-75.24789236664466, 39.96118258548654], [-75.24788015173226, 39.961281853418875], [-75.24787274447924, 39.96134204568691], [-75.24786981508595, 39.96146307324105], [-75.24784133629989, 39.9616141106335], [-75.24781572297843, 39.961728766312795], [-75.24775849990769, 39.96187212114347], [-75.24770876340214, 39.9619780210366], [-75.2477027688713, 39.96205783526593], [-75.24774498724732, 39.96219748167495], [-75.24777773218919, 39.962304003738346], [-75.24775387405607, 39.96245396699673], [-75.24767327404014, 39.96281395179642], [-75.24763272940719, 39.96296390880171], [-75.24748944937399, 39.96312067191104], [-75.24740935477807, 39.963221205473246], [-75.24740541696104, 39.963328103309415], [-75.24743571412044, 39.96341811366531], [-75.24748049810553, 39.96352960067216], [-75.24756505959537, 39.963639605442836], [-75.24744737459446, 39.964391926196676], [-75.247464351418, 39.96448137930475], [-75.24716915793863, 39.96592870104606], [-75.24610900459369, 39.96579829700107], [-75.24579194506076, 39.967319375064456], [-75.24547391384, 39.96883780580013], [-75.24441601399035, 39.968707975928204], [-75.2434287755889, 39.968584480317844], [-75.24275547517408, 39.96850182540956], [-75.24212447373782, 39.96842525010824], [-75.24145297711482, 39.96834167726721], [-75.24046481307757, 39.96821893667362], [-75.2394792263291, 39.968098598180006], [-75.23913209514878, 39.969754754208566], [-75.23913452825445, 39.969894156939084], [-75.23904602094366, 39.96996385280201], [-75.23828930295882, 39.970049354997684], [-75.2374561581777, 39.970142539223346], [-75.23729344550368, 39.96926116010406], [-75.23724127600507, 39.96897856508314], [-75.23728329128427, 39.96890011837256], [-75.23750271463467, 39.96785548024659], [-75.2378184730562, 39.96633140931446], [-75.2371614548503, 39.96625200566942], [-75.23650507401216, 39.966168230655015], [-75.23584294651286, 39.96608663788389], [-75.23485508281934, 39.9659636960506], [-75.23390423808061, 39.96584799773842], [-75.23406328017319, 39.965086532123166], [-75.23422456767936, 39.9643261508282], [-75.23437635415527, 39.9635658070285], [-75.23445932939023, 39.963200941933835], [-75.23454018565789, 39.96280875270846], [-75.23381051701594, 39.962713922148495], [-75.23322361067352, 39.9626449768465], [-75.23252865584055, 39.96255878324145], [-75.23111700353813, 39.96238527615233], [-75.23055280293089, 39.96231103746482], [-75.22997789457627, 39.96224147031967], [-75.2294393887058, 39.96217231617399], [-75.22890005165743, 39.962108580531364], [-75.22831950768749, 39.96203465368984], [-75.22864645665969, 39.96046483588109], [-75.22797617665447, 39.96037854276966], [-75.2274440501019, 39.96031227707355], [-75.22685117094453, 39.96024000475525], [-75.22620947880866, 39.96016033418035], [-75.22486806570537, 39.960006758007836], [-75.22477258922517, 39.9599762940573], [-75.22421322127714, 39.95990071720949], [-75.22388433780017, 39.95986316309301], [-75.22290106608362, 39.95974637621446], [-75.22239684004771, 39.95968156550928], [-75.22190949565909, 39.95962711754266], [-75.22092091673352, 39.959506370957484], [-75.22108669773192, 39.95873296666356], [-75.2212452105831, 39.95798512282026], [-75.22139876232934, 39.95722829373262], [-75.22149388168697, 39.956831736809185], [-75.22156022486105, 39.956462883842796], [-75.2216873926178, 39.95585536230671], [-75.2217982925147, 39.955320872144064], [-75.22192358674249, 39.954724257174874], [-75.22203767016683, 39.9541745245253], [-75.2220575849949, 39.95410396374315], [-75.22219283966916, 39.95341499671031], [-75.2222800420232, 39.95304100157719], [-75.22243591661017, 39.95228185757551], [-75.22258996908286, 39.951520619003304], [-75.22061693130486, 39.951276551263554], [-75.22077646819018, 39.950514077833525], [-75.22093688238962, 39.94972740202175], [-75.22108786424026, 39.94902773485284], [-75.22124930716777, 39.94827774218]]]}}, {"id": "1130", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20184462772525, 39.91925623705986], [-75.20194457510891, 39.91855091390986], [-75.20246386163328, 39.917444533142344], [-75.20359825025908, 39.91561596579895], [-75.2041088348333, 39.91449523508961], [-75.20470414463513, 39.91331977872765], [-75.20542266692576, 39.912288564423946], [-75.20635832065332, 39.91134706809731], [-75.207216129998, 39.911012324931804], [-75.20848050275646, 39.910615834252674], [-75.2094913839666, 39.9106099381418], [-75.2122790037696, 39.9107565830743], [-75.2135613898842, 39.91061515098194], [-75.21464580619211, 39.910115556509204], [-75.2153079210576, 39.909606617026206], [-75.21568364421469, 39.90889323104565], [-75.21569646410822, 39.90756333700614], [-75.21545761289784, 39.905591091598325], [-75.2151114782057, 39.903786283051396], [-75.21468644114745, 39.901880671807056], [-75.21405201147564, 39.90066381664515], [-75.2135832514153, 39.89993175325022], [-75.2121105527512, 39.898285960912], [-75.21157229080009, 39.89783622404864], [-75.21063179238031, 39.897050385553555], [-75.20953791229009, 39.89633275566915], [-75.20811681144355, 39.8955229525527], [-75.20643188168988, 39.89489123824661], [-75.2046735612974, 39.894257866007955], [-75.20220010194497, 39.893834988846315], [-75.20040917979276, 39.89358290207157], [-75.19791884605132, 39.89287653536392], [-75.19734849868537, 39.892554200508876], [-75.19664161307446, 39.892154693323114], [-75.195377006374, 39.890852930227844], [-75.1950055405623, 39.88900502992013], [-75.1947442202182, 39.88715958381745], [-75.19435105676118, 39.88417912439962], [-75.19423258569884, 39.881954784067574], [-75.19372794187674, 39.88001878022436], [-75.19324988488377, 39.878184668892864], [-75.19430620973216, 39.877583978488495], [-75.19885918020827, 39.87531713095636], [-75.20579217318934, 39.871571579248375], [-75.21198487997897, 39.86747284480536], [-75.21603814471179, 39.87111631570757], [-75.21578921822109, 39.87504224093411], [-75.21572726805299, 39.876019193741996], [-75.2157225921386, 39.87609686569248], [-75.21590037854007, 39.876060781394166], [-75.21604782206254, 39.876025894510676], [-75.21620413112939, 39.87599218827433], [-75.21636007782286, 39.875956244738106], [-75.21670070441829, 39.87587791040923], [-75.2168458904517, 39.87584442862628], [-75.21701387381843, 39.875808276381136], [-75.21751660232262, 39.87574670542258], [-75.21770149581347, 39.87572104235302], [-75.21785992648596, 39.87570214368064], [-75.21803436577785, 39.87568407065159], [-75.21832489893065, 39.875679545594956], [-75.21885677116845, 39.87567303314916], [-75.21924109217277, 39.87559284811976], [-75.21944440642542, 39.87554510553339], [-75.21963503168246, 39.87549816989502], [-75.2197372374579, 39.87547755582184], [-75.22086539016242, 39.87557153428044], [-75.22104101540015, 39.87558704603196], [-75.22126421291121, 39.875606141876716], [-75.22208388458552, 39.87567562076239], [-75.22269919578615, 39.875731361270006], [-75.22287056878407, 39.87575196887403], [-75.22311054008301, 39.875780408591524], [-75.22376593968741, 39.87585913878545], [-75.22465413819802, 39.87602438054643], [-75.22485767419093, 39.876061344325464], [-75.22502858924472, 39.87609467239676], [-75.22595270413426, 39.87626793580584], [-75.22686666491282, 39.87640468847385], [-75.2270790468691, 39.877121947231444], [-75.22815917458351, 39.88003256977026], [-75.22842306962197, 39.880662016182356], [-75.22860358752109, 39.881069006359276], [-75.2290332495557, 39.88134926578361], [-75.22954380194118, 39.88186455743175], [-75.22991293925438, 39.88241274077748], [-75.23041151898329, 39.883461829350814], [-75.23066845703238, 39.88389606718639], [-75.2322284423173, 39.88709009516002], [-75.2327809999355, 39.888139499933715], [-75.23324776242973, 39.888924237548636], [-75.23342721098632, 39.889179233455955], [-75.2337994542322, 39.88975864539145], [-75.23386570456779, 39.889868664508995], [-75.23389537835244, 39.88992325950736], [-75.23433288922183, 39.890728177407674], [-75.23517086911598, 39.892116369658126], [-75.23529169571022, 39.8923165253384], [-75.23541859937087, 39.89252674407812], [-75.23553237788855, 39.89271522200667], [-75.23580089524816, 39.893160027181764], [-75.23603700188254, 39.893564634635204], [-75.23667701289826, 39.8946011554303], [-75.23666598511215, 39.89476933490932], [-75.23689467576155, 39.89515973212516], [-75.23732505741685, 39.895827078972], [-75.23759565723081, 39.896336509301584], [-75.2379796426334, 39.89719487902062], [-75.23843650460832, 39.89853518883194], [-75.23853353425918, 39.89881426984991], [-75.23860219673388, 39.89901196227496], [-75.23882036732545, 39.899758714044], [-75.2389922133673, 39.900256656235065], [-75.23932225775096, 39.9013697638066], [-75.23983320878347, 39.90317834236422], [-75.2400959560168, 39.90399314262044], [-75.24014732197246, 39.90415242872423], [-75.24113345091519, 39.9072102906146], [-75.2413341826973, 39.907819007159155], [-75.24145455350472, 39.908071317402964], [-75.24168770469325, 39.90846228037278], [-75.24188534695105, 39.90904321628965], [-75.24236432839977, 39.91046957260359], [-75.24266035338107, 39.911384475824626], [-75.24302202420598, 39.912502230677866], [-75.24310411602268, 39.912751582693325], [-75.243227060544, 39.9131134123101], [-75.24361298418978, 39.91379130849596], [-75.24384947138104, 39.91409082898938], [-75.24466378165084, 39.915111444704294], [-75.24493532437597, 39.91545166166367], [-75.24530742066938, 39.91591785660964], [-75.24579391484275, 39.916542514305725], [-75.24630867702935, 39.91717730509635], [-75.24680156527874, 39.91691935941637], [-75.24693674751636, 39.91687235782663], [-75.24696194160919, 39.91692795126065], [-75.24702074539826, 39.916980371695004], [-75.24710353047506, 39.91702894488325], [-75.24717205571314, 39.91707939254227], [-75.24720597939441, 39.91716011593969], [-75.24717925618677, 39.91722928833567], [-75.24723942718408, 39.91740362743354], [-75.24730486773664, 39.917616672815065], [-75.24734745909676, 39.917786895310684], [-75.2473581560496, 39.91799404346665], [-75.24734817198272, 39.91843116718604], [-75.24733290081883, 39.91868007084684], [-75.24733416041266, 39.91881177205084], [-75.24739079615391, 39.91901521970489], [-75.24749740200332, 39.91927148751148], [-75.24758426940232, 39.91940035390213], [-75.24762266200263, 39.9195187550527], [-75.24762323035877, 39.919669250266246], [-75.24759627457499, 39.91990379300391], [-75.24758112878699, 39.91998340569149], [-75.2475278111457, 39.92010451120326], [-75.24748739074602, 39.92020708455972], [-75.24747679000083, 39.92032912234339], [-75.24746601865583, 39.92045585687965], [-75.24746117528564, 39.920587423072966], [-75.24746853615764, 39.92071925742699], [-75.24746835034084, 39.9209731926147], [-75.24746078474014, 39.92134453360512], [-75.24748558985473, 39.92150026096388], [-75.24751507355418, 39.921672165022855], [-75.24750607298624, 39.92177345815112], [-75.24747157845458, 39.9218808649304], [-75.24739212019405, 39.92204842448603], [-75.24728997880783, 39.922168462524084], [-75.24716359846583, 39.92228327003526], [-75.24706859910215, 39.92237524650567], [-75.24693594263907, 39.92249461996705], [-75.24664178298741, 39.92277035402662], [-75.24652133215531, 39.92288999080537], [-75.24636253132851, 39.9230558183447], [-75.2462666632187, 39.92317129023258], [-75.24618840967676, 39.92330595669068], [-75.24615880781613, 39.92344638863182], [-75.24614054300106, 39.92361057952106], [-75.24613379290614, 39.92379383456595], [-75.24612963902429, 39.92390660579278], [-75.24609531661189, 39.92400931460536], [-75.2460726810459, 39.924126383644335], [-75.24603191218198, 39.924238355335795], [-75.24599079341972, 39.924359726638386], [-75.24594478254895, 39.92444807153349], [-75.24586652923863, 39.92458273782064], [-75.24579506940592, 39.924698741495526], [-75.2457263137798, 39.9248242096502], [-75.24568010915989, 39.92488371305061], [-75.24563654577109, 39.92493981520691], [-75.24555322629331, 39.92504615517457], [-75.24543886966802, 39.92516592584399], [-75.24526474045014, 39.925416061005436], [-75.24519868862885, 39.92555099520395], [-75.24512739974729, 39.92566230086199], [-75.24505018240241, 39.925768772892795], [-75.2449924836029, 39.9258427543882], [-75.24486834379816, 39.92589647437382], [-75.24476234202136, 39.92595529277384], [-75.24462616977375, 39.92600404644966], [-75.2445201676861, 39.92606286282527], [-75.24440143811377, 39.926135510561735], [-75.24433607563414, 39.926251646642434], [-75.24430174936177, 39.926354354014606], [-75.24433081231221, 39.926477256518716], [-75.24441279147882, 39.92657310063879], [-75.24450767024295, 39.926650415607334], [-75.2445770981056, 39.92675538993084], [-75.24459769989812, 39.926859295658076], [-75.24458012543246, 39.92700469324823], [-75.24457982113523, 39.92717868275433], [-75.24455177072839, 39.92727682413468], [-75.24449809559326, 39.927407325222624], [-75.24442645605995, 39.927528027413075], [-75.24434226541503, 39.92765786168888], [-75.24426993485572, 39.92779735782447], [-75.24419933380707, 39.92788986798446], [-75.24412159279538, 39.92801043578041], [-75.2440553641325, 39.928150067838665], [-75.24400161995722, 39.92836521281857], [-75.24398525652, 39.928477718131035], [-75.24396681187515, 39.928646607159685], [-75.24396702565667, 39.92880650206786], [-75.2439716494672, 39.92917810779471], [-75.2439670125304, 39.9294695678305], [-75.24396806898285, 39.92960333793567], [-75.24398241683463, 39.929714441188494], [-75.24400998780085, 39.92979498609446], [-75.24409928849657, 39.92985807166599], [-75.24418927875121, 39.9299023622003], [-75.24427857744878, 39.929965446680804], [-75.2443551495057, 39.930042360769605], [-75.24440575074128, 39.930161032421815], [-75.24442853925618, 39.93028850094924], [-75.2443816574547, 39.930400338625375], [-75.2442746088932, 39.93048734935878], [-75.24413128364208, 39.930564160954866], [-75.24395081763902, 39.930654270316616], [-75.24381359589472, 39.930731214908114], [-75.24369416667311, 39.93082265774716], [-75.24363594233557, 39.93091073404509], [-75.24360528992457, 39.93107935804132], [-75.2435582340958, 39.931195894802094], [-75.2435164136411, 39.931336059191445], [-75.24347511636647, 39.931462127252175], [-75.24343450979335, 39.931569398560214], [-75.24341831681822, 39.93167720346368], [-75.24340160266087, 39.9317991074292], [-75.24334303285262, 39.93189658152115], [-75.24327956923035, 39.93196103173032], [-75.24318593632059, 39.932015415176366], [-75.24310468404244, 39.93206536780084], [-75.24304951001912, 39.93215351141844], [-75.24293513826386, 39.93227327780365], [-75.24284448785608, 39.93241237541506], [-75.24272227980886, 39.932578998543015], [-75.24262465866519, 39.93274145502357], [-75.24252946397212, 39.93283812799], [-75.24245309882642, 39.93292110483453], [-75.24235093355396, 39.93304113848015], [-75.24228625556222, 39.93313847852701], [-75.24223988835199, 39.93323621983896], [-75.24214722451259, 39.93334705561295], [-75.24201270073718, 39.93343346267999], [-75.24188906490586, 39.933473083052256], [-75.24171712157997, 39.93349753900689], [-75.24155773164858, 39.93351286200569], [-75.24139782008557, 39.93354228383802], [-75.24118890620518, 39.93357533488688], [-75.24097388764444, 39.93360825200431], [-75.24075973742913, 39.93361767448273], [-75.24051645624813, 39.93358883722877], [-75.24024404448275, 39.93352174185772], [-75.24016114639225, 39.933493624967426], [-75.23992403928501, 39.93355793659742], [-75.23952717814703, 39.933567607673154], [-75.2392009596448, 39.93345696358626], [-75.23893908361332, 39.93327485944053], [-75.23873923668756, 39.93312452331611], [-75.23849767581348, 39.933034089558596], [-75.23823787470704, 39.93300669392476], [-75.23800082407834, 39.93301104522161], [-75.2377768832943, 39.93308520126836], [-75.23683559966594, 39.93375789463036], [-75.23664759632881, 39.933906180675955], [-75.23591865246344, 39.934442503642835], [-75.23560529289891, 39.93455500141549], [-75.23537389905631, 39.93461682699806], [-75.2351596404366, 39.93464253664272], [-75.23488358253603, 39.93463040300634], [-75.23453134294022, 39.93459411345274], [-75.23429649319554, 39.93448372763597], [-75.23414109027634, 39.93441342064169], [-75.23386210517593, 39.9343461162973], [-75.23369487515502, 39.934324803049165], [-75.23357748183564, 39.93432944696273], [-75.23341607424994, 39.93435151247633], [-75.23328500124813, 39.93437717438364], [-75.23316680296028, 39.934403457459595], [-75.23304944256505, 39.934443141300974], [-75.232724620188, 39.93463860837166], [-75.23212899936999, 39.93413698521188], [-75.23195870779912, 39.933986075836685], [-75.23298133789591, 39.93327394201144], [-75.23256727024936, 39.93291386321791], [-75.233575969569, 39.93219905996512], [-75.2331577985903, 39.931842426891116], [-75.23277036958953, 39.93151838657586], [-75.2323338812178, 39.93109614132798], [-75.2320352416839, 39.930870618194646], [-75.23179925549334, 39.93073781487231], [-75.23136337528365, 39.93047928654213], [-75.2307028980303, 39.930072132603634], [-75.2301046471848, 39.929712464087395], [-75.22993831520918, 39.92961246541906], [-75.22922294797267, 39.9291732561065], [-75.2275979625321, 39.93030940778205], [-75.22541026665041, 39.93184045411882], [-75.2245939121745, 39.93241174850837], [-75.22411929621914, 39.932750305177024], [-75.22372599637802, 39.93303318014364], [-75.2232199760324, 39.93339056163966], [-75.2224836359392, 39.933905953349196], [-75.22173280255822, 39.93443158438589], [-75.22054734853859, 39.933451623766636], [-75.21911609056419, 39.932236395979025], [-75.21872026947263, 39.931911546747514], [-75.21773191977564, 39.931075817393875], [-75.21741503596247, 39.93084696636643], [-75.21712829573877, 39.93073307845829], [-75.21647530459322, 39.93045982280271], [-75.21575088067966, 39.93016313638106], [-75.21492199083451, 39.92983925119834], [-75.21422912275716, 39.929560220107085], [-75.21391923784077, 39.92941299856718], [-75.21347401016706, 39.929327276329566], [-75.21193246740769, 39.92930455022506], [-75.21074355424716, 39.929267201457094], [-75.21116053746807, 39.928406227444746], [-75.21157630482006, 39.92760883240147], [-75.21214722121682, 39.92634789377554], [-75.21240349026309, 39.92539130720084], [-75.21255801411132, 39.92420605590866], [-75.21236773139668, 39.92339524882293], [-75.21195444836577, 39.92265025678862], [-75.21111670313407, 39.92195247005715], [-75.20994136801055, 39.92119059609576], [-75.20888316774469, 39.92098318900874], [-75.20771109345405, 39.920872302717065], [-75.20647864311627, 39.920901574082286], [-75.20524090114905, 39.92107222205077], [-75.20375348198348, 39.921039201492874], [-75.20262167546693, 39.920589535899126], [-75.20203954057037, 39.919939811356116], [-75.2019945286076, 39.919781946952625], [-75.20184462772525, 39.91925623705986]]]}}, {"id": "1200", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23750271463467, 39.96785548024659], [-75.2378184730562, 39.96633140931446], [-75.2371614548503, 39.96625200566942], [-75.23650507401216, 39.966168230655015], [-75.23584294651286, 39.96608663788389], [-75.23485508281934, 39.9659636960506], [-75.23390423808061, 39.96584799773842], [-75.23406328017319, 39.965086532123166], [-75.23422456767936, 39.9643261508282], [-75.23437635415527, 39.9635658070285], [-75.23445932939023, 39.963200941933835], [-75.23454018565789, 39.96280875270846], [-75.23381051701594, 39.962713922148495], [-75.23322361067352, 39.9626449768465], [-75.23252865584055, 39.96255878324145], [-75.23111700353813, 39.96238527615233], [-75.23055280293089, 39.96231103746482], [-75.22997789457627, 39.96224147031967], [-75.2294393887058, 39.96217231617399], [-75.22890005165743, 39.962108580531364], [-75.22831950768749, 39.96203465368984], [-75.22864645665969, 39.96046483588109], [-75.22926343436752, 39.96053660207573], [-75.22978570204727, 39.960600373984306], [-75.23024805594517, 39.96065731896809], [-75.23080297426164, 39.960723310653556], [-75.23187474073868, 39.9608510698038], [-75.23285803081075, 39.96097701200854], [-75.23355391560953, 39.961067005843844], [-75.23414213254877, 39.96113719213085], [-75.23487010378587, 39.96123223060958], [-75.23680903840634, 39.96147203352687], [-75.2369715545159, 39.960699401826325], [-75.23712788649429, 39.959955913231376], [-75.23910147880365, 39.96019897523339], [-75.23976436878566, 39.960281947392765], [-75.24033973694776, 39.96035243797857], [-75.24107490739186, 39.96044494835528], [-75.2423132184722, 39.96059567517504], [-75.24305492137285, 39.96068697665624], [-75.2450305441106, 39.9609347346636], [-75.24707752018377, 39.961184848389145], [-75.24788015173226, 39.961281853418875], [-75.24787274447924, 39.96134204568691], [-75.24786981508595, 39.96146307324105], [-75.24784133629989, 39.9616141106335], [-75.24781572297843, 39.961728766312795], [-75.24775849990769, 39.96187212114347], [-75.24770876340214, 39.9619780210366], [-75.2477027688713, 39.96205783526593], [-75.24774498724732, 39.96219748167495], [-75.24777773218919, 39.962304003738346], [-75.24775387405607, 39.96245396699673], [-75.24767327404014, 39.96281395179642], [-75.24763272940719, 39.96296390880171], [-75.24748944937399, 39.96312067191104], [-75.24740935477807, 39.963221205473246], [-75.24740541696104, 39.963328103309415], [-75.24743571412044, 39.96341811366531], [-75.24748049810553, 39.96352960067216], [-75.24756505959537, 39.963639605442836], [-75.24744737459446, 39.964391926196676], [-75.247464351418, 39.96448137930475], [-75.24716915793863, 39.96592870104606], [-75.24610900459369, 39.96579829700107], [-75.24579194506076, 39.967319375064456], [-75.24547391384, 39.96883780580013], [-75.24441601399035, 39.968707975928204], [-75.2434287755889, 39.968584480317844], [-75.24275547517408, 39.96850182540956], [-75.24212447373782, 39.96842525010824], [-75.24145297711482, 39.96834167726721], [-75.24046481307757, 39.96821893667362], [-75.2394792263291, 39.968098598180006], [-75.23913209514878, 39.969754754208566], [-75.23913452825445, 39.969894156939084], [-75.23904602094366, 39.96996385280201], [-75.23828930295882, 39.970049354997684], [-75.2374561581777, 39.970142539223346], [-75.23729344550368, 39.96926116010406], [-75.23724127600507, 39.96897856508314], [-75.23728329128427, 39.96890011837256], [-75.23750271463467, 39.96785548024659]]]}}, {"id": "1230", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.2450305441106, 39.9609347346636], [-75.24305492137285, 39.96068697665624], [-75.2423132184722, 39.96059567517504], [-75.24107490739186, 39.96044494835528], [-75.24033973694776, 39.96035243797857], [-75.23976436878566, 39.960281947392765], [-75.23910147880365, 39.96019897523339], [-75.23925866653717, 39.95943977614177], [-75.23941958507163, 39.95867732936648], [-75.23957523039626, 39.95794304653689], [-75.23965932453713, 39.9575352606096], [-75.23974064044614, 39.95712975913595], [-75.23982459012271, 39.95671987154776], [-75.23991007492342, 39.95631413324379], [-75.24000860919124, 39.9558765464588], [-75.24002497972941, 39.95576968906917], [-75.24013867742423, 39.95525346726105], [-75.24025201420879, 39.954726082272785], [-75.24034677116326, 39.95426461469576], [-75.24045055471251, 39.953734543746975], [-75.24055628665906, 39.95320676603648], [-75.24065268580777, 39.9527448765007], [-75.24077833716721, 39.95219409771834], [-75.2408870413323, 39.95164878569733], [-75.24092838668925, 39.95145926411795], [-75.2409791089452, 39.95119910789798], [-75.24109450326601, 39.950692270332034], [-75.24306881403976, 39.950927192723235], [-75.2450360575381, 39.951182802514985], [-75.247009840884, 39.951425676409585], [-75.2479150844622, 39.951536880554066], [-75.24905672667398, 39.951680580210244], [-75.25163566592619, 39.95198234743004], [-75.25161389171076, 39.95204661028335], [-75.25157728897977, 39.952128108685294], [-75.25151200240568, 39.95224190184744], [-75.25141074473645, 39.95237842196178], [-75.25128250089682, 39.95254256961861], [-75.25118634031719, 39.952665094667005], [-75.25115261702155, 39.9527513588426], [-75.25115204005658, 39.952850100252405], [-75.25117911163078, 39.952944740743874], [-75.25119467647126, 39.95306146974712], [-75.25112555886653, 39.95319633813612], [-75.25104853327463, 39.95329694164222], [-75.25092279501672, 39.953392958358265], [-75.25079060217345, 39.95349823796768], [-75.25064882089806, 39.953615064660426], [-75.25048846211494, 39.953738540278174], [-75.25035252680547, 39.953862548756675], [-75.25013724472771, 39.95406712366699], [-75.25004856825647, 39.954152188258355], [-75.25000433074985, 39.954233519844706], [-75.24995490710279, 39.954331196798385], [-75.24986356467849, 39.95440562372502], [-75.24979909557791, 39.95449709466217], [-75.24975839872643, 39.95460671876249], [-75.24976436970032, 39.95473499413899], [-75.24975027207398, 39.954827563746576], [-75.24969589356157, 39.954976861213474], [-75.24961348979413, 39.95518197961458], [-75.24957679770756, 39.95526582619968], [-75.24949413536787, 39.95535337487923], [-75.24939026681385, 39.95539460893448], [-75.24925782712917, 39.955423464869384], [-75.24918200807758, 39.95549117492122], [-75.24914391603215, 39.955571464385656], [-75.24912240054589, 39.95565799236466], [-75.24913555778662, 39.955757035020625], [-75.24917484069324, 39.95585194221137], [-75.24921760577283, 39.955935170061096], [-75.249262472997, 39.95604430846653], [-75.24927479808866, 39.9561245202664], [-75.24923470470705, 39.956217698966455], [-75.24908009782307, 39.95635070362586], [-75.24898862439304, 39.95642865265522], [-75.24895786091484, 39.95651733149055], [-75.24892623370523, 39.95662950375507], [-75.24894786001377, 39.956747541056934], [-75.24903571026282, 39.95693403235316], [-75.24919470449287, 39.95701391583521], [-75.2493149211625, 39.957068264893934], [-75.24940155282854, 39.9571218826933], [-75.24951881118939, 39.95720438788988], [-75.24963861043483, 39.957322206816485], [-75.2497783786495, 39.95742635758531], [-75.25003729980597, 39.95765537363726], [-75.25017891473904, 39.95779248363113], [-75.2502431398107, 39.957873825253266], [-75.2503601582753, 39.9580151031448], [-75.2504632093774, 39.95812080551819], [-75.250559897209, 39.958233421215546], [-75.25066634565529, 39.958329792866124], [-75.25073607349691, 39.958427715164106], [-75.25079341757636, 39.95853006991914], [-75.25083981693356, 39.95863924008346], [-75.25087622216772, 39.95872938164168], [-75.25088244165455, 39.958809462014514], [-75.2508927803255, 39.95894371046906], [-75.2508836511511, 39.95902580808698], [-75.25085035296529, 39.95910032357115], [-75.25075355116466, 39.95915699820532], [-75.25060686008487, 39.959240799539906], [-75.25045423703611, 39.959319769187076], [-75.25029245338119, 39.95939853994901], [-75.25008156364572, 39.95948329434663], [-75.24982614303097, 39.959574131817156], [-75.24965258022209, 39.95964088798368], [-75.24955324089647, 39.959683397724646], [-75.24944370354191, 39.95975390054682], [-75.24931829467371, 39.95984051663293], [-75.24921443129661, 39.95992289904946], [-75.24912329915065, 39.9599914502743], [-75.24897363839278, 39.960072835985805], [-75.24883705485743, 39.96013099163223], [-75.24869087939777, 39.960200695935995], [-75.24854775718127, 39.960270463926676], [-75.24845984910638, 39.96033438447173], [-75.2483846421231, 39.96042679733419], [-75.24833547117294, 39.96051742537408], [-75.24828272873319, 39.9606220832403], [-75.24819945617348, 39.960726075355595], [-75.24805906374475, 39.9608876051947], [-75.24797552974607, 39.96099864622252], [-75.24792339202934, 39.96108685872077], [-75.24789236664466, 39.96118258548654], [-75.24788015173226, 39.961281853418875], [-75.24707752018377, 39.961184848389145], [-75.2450305441106, 39.9609347346636]]]}}, {"id": "1250", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23212899936999, 39.93413698521188], [-75.23195870779912, 39.933986075836685], [-75.23298133789591, 39.93327394201144], [-75.23256727024936, 39.93291386321791], [-75.233575969569, 39.93219905996512], [-75.2331577985903, 39.931842426891116], [-75.23277036958953, 39.93151838657586], [-75.2323338812178, 39.93109614132798], [-75.2320352416839, 39.930870618194646], [-75.23179925549334, 39.93073781487231], [-75.23136337528365, 39.93047928654213], [-75.2307028980303, 39.930072132603634], [-75.2301046471848, 39.929712464087395], [-75.22993831520918, 39.92961246541906], [-75.22922294797267, 39.9291732561065], [-75.23065538894247, 39.92815909675535], [-75.23078482130573, 39.92805966085603], [-75.2311391644917, 39.92779373348052], [-75.23171416596094, 39.92740342826188], [-75.23217982966749, 39.92708608624951], [-75.23310079510505, 39.92645314258712], [-75.23370959255938, 39.92602333023891], [-75.23432826391235, 39.92557419424493], [-75.2347728286137, 39.92526555330249], [-75.23513456656124, 39.92501404370246], [-75.23556761530502, 39.924705161692295], [-75.23623036495619, 39.924236356905006], [-75.23688443591094, 39.92376183517927], [-75.23740333296807, 39.92340134227495], [-75.23787063854797, 39.92307969673384], [-75.23840062295413, 39.922704513862946], [-75.23918469074945, 39.9221591409605], [-75.24004602105052, 39.92154812743355], [-75.24141606766713, 39.920581080752065], [-75.24298672789187, 39.91947764462562], [-75.24384258404814, 39.91887222098998], [-75.24436630386, 39.918516744644144], [-75.24508461804605, 39.918024650790926], [-75.24569206743418, 39.91761649681568], [-75.24630867702935, 39.91717730509635], [-75.24680156527874, 39.91691935941637], [-75.24693674751636, 39.91687235782663], [-75.24696194160919, 39.91692795126065], [-75.24702074539826, 39.916980371695004], [-75.24710353047506, 39.91702894488325], [-75.24717205571314, 39.91707939254227], [-75.24720597939441, 39.91716011593969], [-75.24717925618677, 39.91722928833567], [-75.24723942718408, 39.91740362743354], [-75.24730486773664, 39.917616672815065], [-75.24734745909676, 39.917786895310684], [-75.2473581560496, 39.91799404346665], [-75.24734817198272, 39.91843116718604], [-75.24733290081883, 39.91868007084684], [-75.24733416041266, 39.91881177205084], [-75.24739079615391, 39.91901521970489], [-75.24749740200332, 39.91927148751148], [-75.24758426940232, 39.91940035390213], [-75.24762266200263, 39.9195187550527], [-75.24762323035877, 39.919669250266246], [-75.24759627457499, 39.91990379300391], [-75.24758112878699, 39.91998340569149], [-75.2475278111457, 39.92010451120326], [-75.24748739074602, 39.92020708455972], [-75.24747679000083, 39.92032912234339], [-75.24746601865583, 39.92045585687965], [-75.24746117528564, 39.920587423072966], [-75.24746853615764, 39.92071925742699], [-75.24746835034084, 39.9209731926147], [-75.24746078474014, 39.92134453360512], [-75.24748558985473, 39.92150026096388], [-75.24751507355418, 39.921672165022855], [-75.24750607298624, 39.92177345815112], [-75.24747157845458, 39.9218808649304], [-75.24739212019405, 39.92204842448603], [-75.24728997880783, 39.922168462524084], [-75.24716359846583, 39.92228327003526], [-75.24706859910215, 39.92237524650567], [-75.24693594263907, 39.92249461996705], [-75.24664178298741, 39.92277035402662], [-75.24652133215531, 39.92288999080537], [-75.24636253132851, 39.9230558183447], [-75.2462666632187, 39.92317129023258], [-75.24618840967676, 39.92330595669068], [-75.24615880781613, 39.92344638863182], [-75.24614054300106, 39.92361057952106], [-75.24613379290614, 39.92379383456595], [-75.24612963902429, 39.92390660579278], [-75.24609531661189, 39.92400931460536], [-75.2460726810459, 39.924126383644335], [-75.24603191218198, 39.924238355335795], [-75.24599079341972, 39.924359726638386], [-75.24594478254895, 39.92444807153349], [-75.24586652923863, 39.92458273782064], [-75.24579506940592, 39.924698741495526], [-75.2457263137798, 39.9248242096502], [-75.24568010915989, 39.92488371305061], [-75.24563654577109, 39.92493981520691], [-75.24555322629331, 39.92504615517457], [-75.24543886966802, 39.92516592584399], [-75.24526474045014, 39.925416061005436], [-75.24519868862885, 39.92555099520395], [-75.24512739974729, 39.92566230086199], [-75.24505018240241, 39.925768772892795], [-75.2449924836029, 39.9258427543882], [-75.24486834379816, 39.92589647437382], [-75.24476234202136, 39.92595529277384], [-75.24462616977375, 39.92600404644966], [-75.2445201676861, 39.92606286282527], [-75.24440143811377, 39.926135510561735], [-75.24433607563414, 39.926251646642434], [-75.24430174936177, 39.926354354014606], [-75.24433081231221, 39.926477256518716], [-75.24441279147882, 39.92657310063879], [-75.24450767024295, 39.926650415607334], [-75.2445770981056, 39.92675538993084], [-75.24459769989812, 39.926859295658076], [-75.24458012543246, 39.92700469324823], [-75.24457982113523, 39.92717868275433], [-75.24455177072839, 39.92727682413468], [-75.24449809559326, 39.927407325222624], [-75.24442645605995, 39.927528027413075], [-75.24434226541503, 39.92765786168888], [-75.24426993485572, 39.92779735782447], [-75.24419933380707, 39.92788986798446], [-75.24412159279538, 39.92801043578041], [-75.2440553641325, 39.928150067838665], [-75.24400161995722, 39.92836521281857], [-75.24398525652, 39.928477718131035], [-75.24396681187515, 39.928646607159685], [-75.24396702565667, 39.92880650206786], [-75.2439716494672, 39.92917810779471], [-75.2439670125304, 39.9294695678305], [-75.24396806898285, 39.92960333793567], [-75.24398241683463, 39.929714441188494], [-75.24400998780085, 39.92979498609446], [-75.24409928849657, 39.92985807166599], [-75.24418927875121, 39.9299023622003], [-75.24427857744878, 39.929965446680804], [-75.2443551495057, 39.930042360769605], [-75.24440575074128, 39.930161032421815], [-75.24442853925618, 39.93028850094924], [-75.2443816574547, 39.930400338625375], [-75.2442746088932, 39.93048734935878], [-75.24413128364208, 39.930564160954866], [-75.24395081763902, 39.930654270316616], [-75.24381359589472, 39.930731214908114], [-75.24369416667311, 39.93082265774716], [-75.24363594233557, 39.93091073404509], [-75.24360528992457, 39.93107935804132], [-75.2435582340958, 39.931195894802094], [-75.2435164136411, 39.931336059191445], [-75.24347511636647, 39.931462127252175], [-75.24343450979335, 39.931569398560214], [-75.24341831681822, 39.93167720346368], [-75.24340160266087, 39.9317991074292], [-75.24334303285262, 39.93189658152115], [-75.24327956923035, 39.93196103173032], [-75.24318593632059, 39.932015415176366], [-75.24310468404244, 39.93206536780084], [-75.24304951001912, 39.93215351141844], [-75.24293513826386, 39.93227327780365], [-75.24284448785608, 39.93241237541506], [-75.24272227980886, 39.932578998543015], [-75.24262465866519, 39.93274145502357], [-75.24252946397212, 39.93283812799], [-75.24245309882642, 39.93292110483453], [-75.24235093355396, 39.93304113848015], [-75.24228625556222, 39.93313847852701], [-75.24223988835199, 39.93323621983896], [-75.24214722451259, 39.93334705561295], [-75.24201270073718, 39.93343346267999], [-75.24188906490586, 39.933473083052256], [-75.24171712157997, 39.93349753900689], [-75.24155773164858, 39.93351286200569], [-75.24139782008557, 39.93354228383802], [-75.24118890620518, 39.93357533488688], [-75.24097388764444, 39.93360825200431], [-75.24075973742913, 39.93361767448273], [-75.24051645624813, 39.93358883722877], [-75.24024404448275, 39.93352174185772], [-75.24016114639225, 39.933493624967426], [-75.23992403928501, 39.93355793659742], [-75.23952717814703, 39.933567607673154], [-75.2392009596448, 39.93345696358626], [-75.23893908361332, 39.93327485944053], [-75.23873923668756, 39.93312452331611], [-75.23849767581348, 39.933034089558596], [-75.23823787470704, 39.93300669392476], [-75.23800082407834, 39.93301104522161], [-75.2377768832943, 39.93308520126836], [-75.23683559966594, 39.93375789463036], [-75.23664759632881, 39.933906180675955], [-75.23591865246344, 39.934442503642835], [-75.23560529289891, 39.93455500141549], [-75.23537389905631, 39.93461682699806], [-75.2351596404366, 39.93464253664272], [-75.23488358253603, 39.93463040300634], [-75.23453134294022, 39.93459411345274], [-75.23429649319554, 39.93448372763597], [-75.23414109027634, 39.93441342064169], [-75.23386210517593, 39.9343461162973], [-75.23369487515502, 39.934324803049165], [-75.23357748183564, 39.93432944696273], [-75.23341607424994, 39.93435151247633], [-75.23328500124813, 39.93437717438364], [-75.23316680296028, 39.934403457459595], [-75.23304944256505, 39.934443141300974], [-75.232724620188, 39.93463860837166], [-75.23212899936999, 39.93413698521188]]]}}, {"id": "1260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20853779649374, 39.945761818078864], [-75.20838441136944, 39.94565560961414], [-75.20827024712582, 39.94576580082315], [-75.20811137064551, 39.94566542503228], [-75.20746762198765, 39.94528192451025], [-75.20583883243509, 39.944319761683424], [-75.20548867998357, 39.944112922210635], [-75.2053264864448, 39.94408111179888], [-75.20460489022865, 39.94395445297271], [-75.20329421085049, 39.94408301196562], [-75.2030545074157, 39.94362262812122], [-75.20384389489251, 39.943159031803354], [-75.20454685757073, 39.94255199429125], [-75.20503308883262, 39.94184108941856], [-75.2051511241047, 39.941109705274734], [-75.20515916367398, 39.94065801560933], [-75.20516533511787, 39.94027327776247], [-75.20516213209207, 39.938603951228046], [-75.205161751336, 39.93840528394946], [-75.20516612810576, 39.937061048418464], [-75.20537590640467, 39.93587702877518], [-75.2055971311071, 39.93548447427487], [-75.2058484773116, 39.93503846158553], [-75.20642541432272, 39.9343578658045], [-75.20757291260742, 39.933166337097894], [-75.20969119752053, 39.930835934591194], [-75.21052319268539, 39.92972229370418], [-75.21074355424716, 39.929267201457094], [-75.21193246740769, 39.92930455022506], [-75.21347401016706, 39.929327276329566], [-75.21391923784077, 39.92941299856718], [-75.21422912275716, 39.929560220107085], [-75.21492199083451, 39.92983925119834], [-75.21575088067966, 39.93016313638106], [-75.21647530459322, 39.93045982280271], [-75.21712829573877, 39.93073307845829], [-75.21741503596247, 39.93084696636643], [-75.21773191977564, 39.931075817393875], [-75.21872026947263, 39.931911546747514], [-75.21911609056419, 39.932236395979025], [-75.22054734853859, 39.933451623766636], [-75.22031138329548, 39.93361547102801], [-75.22015038068251, 39.933736808053105], [-75.21969531134133, 39.93404847978036], [-75.21918166065471, 39.934407849856306], [-75.21863606268765, 39.93479097747546], [-75.21823454424116, 39.935061842652814], [-75.21781110222202, 39.93535867311922], [-75.2189844066721, 39.93637050114046], [-75.21961403224867, 39.93690206029598], [-75.2202432225084, 39.93743972666395], [-75.22073274993514, 39.93785186363125], [-75.22114069662634, 39.938199705391014], [-75.22163821577948, 39.93860911954614], [-75.2220963835731, 39.9389890411456], [-75.22290607669642, 39.939681196540526], [-75.22354402565823, 39.940203617824274], [-75.22411470112915, 39.94069239719636], [-75.22361656639723, 39.94104707837321], [-75.22342672572017, 39.94117663554376], [-75.22323926450781, 39.941312821226155], [-75.22275432475358, 39.94165593328939], [-75.22206699647136, 39.9421396456706], [-75.22136817491958, 39.94262798959198], [-75.22079176874564, 39.9430253906775], [-75.22022164439426, 39.94341620880577], [-75.21954803809479, 39.94389540808213], [-75.21915337365694, 39.94417736868566], [-75.2190032263168, 39.94428463720904], [-75.21840785554781, 39.94470311532915], [-75.21773309661441, 39.94518440362091], [-75.21647228140037, 39.9460684669736], [-75.21516235800405, 39.94697939184697], [-75.21396205829907, 39.94597580755762], [-75.21332518017692, 39.946428740261325], [-75.21268289883348, 39.946880804965346], [-75.21139018616216, 39.94779717850673], [-75.210599590919, 39.948349747884194], [-75.20905275231212, 39.94840065040551], [-75.20891492499595, 39.94774619012205], [-75.20886579842912, 39.94751274485901], [-75.20873299651238, 39.94684000882448], [-75.20853779649374, 39.945761818078864]]]}}, {"id": "1280", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20259046983514, 39.95411371494432], [-75.2027421473969, 39.95338532296644], [-75.20282802590086, 39.95297124948091], [-75.20295655882086, 39.952370661785295], [-75.2030720261769, 39.95183111529021], [-75.2030845024121, 39.9517468510238], [-75.20314128488319, 39.95142500603531], [-75.20319059599899, 39.9512044680973], [-75.20330368930523, 39.95068511881125], [-75.2034611695254, 39.94992521621503], [-75.20158528615542, 39.94997786358603], [-75.20148904244392, 39.94994614180677], [-75.20128850342793, 39.94988004314401], [-75.2011575334559, 39.94984044328213], [-75.20141211703024, 39.94976124037877], [-75.20301344481327, 39.9492827311201], [-75.20376393721541, 39.94900224732861], [-75.20452602474221, 39.94872922500287], [-75.20503323057667, 39.94853436087157], [-75.20516872951993, 39.94852347532274], [-75.20565664322592, 39.94805410681656], [-75.20697377705622, 39.946834461392456], [-75.20696015034082, 39.946662249602404], [-75.20537423404978, 39.94505914245293], [-75.20528159466483, 39.94415698142473], [-75.2053264864448, 39.94408111179888], [-75.20548867998357, 39.944112922210635], [-75.20583883243509, 39.944319761683424], [-75.20746762198765, 39.94528192451025], [-75.20811137064551, 39.94566542503228], [-75.20827024712582, 39.94576580082315], [-75.20838441136944, 39.94565560961414], [-75.20853779649374, 39.945761818078864], [-75.20873299651238, 39.94684000882448], [-75.20886579842912, 39.94751274485901], [-75.20891492499595, 39.94774619012205], [-75.20905275231212, 39.94840065040551], [-75.210599590919, 39.948349747884194], [-75.21139018616216, 39.94779717850673], [-75.21268289883348, 39.946880804965346], [-75.21332518017692, 39.946428740261325], [-75.21396205829907, 39.94597580755762], [-75.21516235800405, 39.94697939184697], [-75.21587487161817, 39.9475691465498], [-75.21656076374511, 39.94815297647089], [-75.21712233963673, 39.94861189853709], [-75.21699676243124, 39.949235181405776], [-75.21682738507971, 39.95002365498763], [-75.21666047959238, 39.95078359152693], [-75.21658804469882, 39.951160590539054], [-75.21650285054058, 39.95154792332002], [-75.21643064503898, 39.951903560097534], [-75.21635009949718, 39.952303755439104], [-75.21437377199037, 39.952054898179995], [-75.21421854877329, 39.95279794310963], [-75.21414747932245, 39.95312629629625], [-75.21389806204827, 39.9543415647573], [-75.21365664125639, 39.95548348430796], [-75.21349888053125, 39.95624499884447], [-75.21152003707512, 39.95600154425636], [-75.21047643999862, 39.95587085889744], [-75.20989899490549, 39.95580099729136], [-75.20948109276688, 39.955744379668474], [-75.20902166889157, 39.95568856536521], [-75.20860052207796, 39.95563794179296], [-75.2081284652613, 39.95557966630101], [-75.20743601295325, 39.955494992080155], [-75.20627514003934, 39.95534885213713], [-75.20493395028417, 39.95518253615201], [-75.20242872567167, 39.95487206779536], [-75.20259046983514, 39.95411371494432]]]}}, {"id": "1290", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23414213254877, 39.96113719213085], [-75.23355391560953, 39.961067005843844], [-75.23285803081075, 39.96097701200854], [-75.23187474073868, 39.9608510698038], [-75.23080297426164, 39.960723310653556], [-75.23096174457179, 39.95995539343796], [-75.23111421415305, 39.95921133036289], [-75.23127838691903, 39.95844994113663], [-75.23143923401801, 39.95768998429868], [-75.23155739462278, 39.957103005941605], [-75.23167498196297, 39.95654524233081], [-75.23180125062657, 39.95594961381813], [-75.23191132069722, 39.95541321793619], [-75.23193785246828, 39.95532005975538], [-75.23204584723553, 39.954781857684175], [-75.2321531848757, 39.954263206249884], [-75.23310495493705, 39.95438500762811], [-75.23421282714466, 39.95452278160557], [-75.23494587215642, 39.95461531414442], [-75.23621692036184, 39.954772282617576], [-75.23816664919339, 39.95501291036174], [-75.24013867742423, 39.95525346726105], [-75.24002497972941, 39.95576968906917], [-75.24000860919124, 39.9558765464588], [-75.23991007492342, 39.95631413324379], [-75.23982459012271, 39.95671987154776], [-75.23974064044614, 39.95712975913595], [-75.23965932453713, 39.9575352606096], [-75.23957523039626, 39.95794304653689], [-75.23941958507163, 39.95867732936648], [-75.23925866653717, 39.95943977614177], [-75.23910147880365, 39.96019897523339], [-75.23712788649429, 39.959955913231376], [-75.2369715545159, 39.960699401826325], [-75.23680903840634, 39.96147203352687], [-75.23487010378587, 39.96123223060958], [-75.23414213254877, 39.96113719213085]]]}}, {"id": "1300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22108786424026, 39.94902773485284], [-75.22124930716777, 39.94827774218], [-75.22123731327486, 39.9481623444683], [-75.21923577195466, 39.948369210737745], [-75.21712233963673, 39.94861189853709], [-75.21656076374511, 39.94815297647089], [-75.21587487161817, 39.9475691465498], [-75.21516235800405, 39.94697939184697], [-75.21647228140037, 39.9460684669736], [-75.21773309661441, 39.94518440362091], [-75.21840785554781, 39.94470311532915], [-75.2190032263168, 39.94428463720904], [-75.21915337365694, 39.94417736868566], [-75.21954803809479, 39.94389540808213], [-75.22022164439426, 39.94341620880577], [-75.22079176874564, 39.9430253906775], [-75.22136817491958, 39.94262798959198], [-75.22206699647136, 39.9421396456706], [-75.22275432475358, 39.94165593328939], [-75.22323926450781, 39.941312821226155], [-75.22342672572017, 39.94117663554376], [-75.22361656639723, 39.94104707837321], [-75.22411470112915, 39.94069239719636], [-75.22548113740314, 39.939726193300785], [-75.22574413892491, 39.93994585631309], [-75.22598204677581, 39.94013938623111], [-75.22621028243675, 39.94033942153977], [-75.22639240902276, 39.94050315877415], [-75.22688622317584, 39.94090891493186], [-75.22733688633339, 39.94129340858265], [-75.22770183808326, 39.94160479346235], [-75.2279150932509, 39.941779548000355], [-75.22816473061533, 39.94198411686646], [-75.2286495761246, 39.94240725523266], [-75.22906061292544, 39.94275510279864], [-75.22955325914707, 39.9431694427212], [-75.2300512126973, 39.943581922008015], [-75.23045841638532, 39.94392442181561], [-75.23094716896786, 39.94433754900314], [-75.23232073989367, 39.94337118576998], [-75.23281885532278, 39.943791942656354], [-75.23322356204032, 39.9441379445611], [-75.23371815372047, 39.944560304836195], [-75.233752519756, 39.94467113338882], [-75.23370607046287, 39.9461446490347], [-75.23370512010376, 39.94637437310582], [-75.23369678154249, 39.946626143747736], [-75.23365672143521, 39.94728618681448], [-75.23360540677021, 39.94735220242095], [-75.23127144381539, 39.94791010072773], [-75.23116356346483, 39.948444207728265], [-75.23109712127248, 39.94874762614672], [-75.23106724674322, 39.94890952251901], [-75.23096092059897, 39.94943998654951], [-75.2307949154714, 39.95017367604613], [-75.23063630139251, 39.95092370508727], [-75.22884682614269, 39.95070699306487], [-75.2268695724043, 39.950461812102006], [-75.22489312408028, 39.950215311637955], [-75.22291509578595, 39.949976453655864], [-75.22093688238962, 39.94972740202175], [-75.22108786424026, 39.94902773485284]]]}}, {"id": "1340", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.21748321535274, 39.95674015237582], [-75.21547238743408, 39.95649087345359], [-75.21448395011627, 39.95636717836012], [-75.21349888053125, 39.95624499884447], [-75.21365664125639, 39.95548348430796], [-75.21389806204827, 39.9543415647573], [-75.21414747932245, 39.95312629629625], [-75.21421854877329, 39.95279794310963], [-75.21437377199037, 39.952054898179995], [-75.21635009949718, 39.952303755439104], [-75.21643064503898, 39.951903560097534], [-75.21650285054058, 39.95154792332002], [-75.21658804469882, 39.951160590539054], [-75.21666047959238, 39.95078359152693], [-75.21682738507971, 39.95002365498763], [-75.21699676243124, 39.949235181405776], [-75.21712233963673, 39.94861189853709], [-75.21923577195466, 39.948369210737745], [-75.22123731327486, 39.9481623444683], [-75.22124930716777, 39.94827774218], [-75.22108786424026, 39.94902773485284], [-75.22093688238962, 39.94972740202175], [-75.22077646819018, 39.950514077833525], [-75.22061693130486, 39.951276551263554], [-75.22258996908286, 39.951520619003304], [-75.22243591661017, 39.95228185757551], [-75.2222800420232, 39.95304100157719], [-75.22219283966916, 39.95341499671031], [-75.2220575849949, 39.95410396374315], [-75.22203767016683, 39.9541745245253], [-75.22192358674249, 39.954724257174874], [-75.2217982925147, 39.955320872144064], [-75.2216873926178, 39.95585536230671], [-75.22156022486105, 39.956462883842796], [-75.22149388168697, 39.956831736809185], [-75.22139876232934, 39.95722829373262], [-75.22131207548387, 39.95721387899676], [-75.21942250421269, 39.95698073769441], [-75.21748321535274, 39.95674015237582]]]}}, {"id": "1350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23281885532278, 39.943791942656354], [-75.23232073989367, 39.94337118576998], [-75.23094716896786, 39.94433754900314], [-75.23045841638532, 39.94392442181561], [-75.2300512126973, 39.943581922008015], [-75.22955325914707, 39.9431694427212], [-75.22906061292544, 39.94275510279864], [-75.2286495761246, 39.94240725523266], [-75.22816473061533, 39.94198411686646], [-75.2279150932509, 39.941779548000355], [-75.22770183808326, 39.94160479346235], [-75.22733688633339, 39.94129340858265], [-75.22688622317584, 39.94090891493186], [-75.22639240902276, 39.94050315877415], [-75.22621028243675, 39.94033942153977], [-75.22598204677581, 39.94013938623111], [-75.22574413892491, 39.93994585631309], [-75.22548113740314, 39.939726193300785], [-75.22595162625947, 39.93939925316969], [-75.22638414770273, 39.93909719660462], [-75.22685518988968, 39.938768103636576], [-75.22738390756126, 39.93839393907862], [-75.22783178413717, 39.938078450519924], [-75.22835886823013, 39.93770158422983], [-75.22884327779396, 39.937359480493996], [-75.22922852278495, 39.93709246215178], [-75.22972674809127, 39.93674409566596], [-75.23109684093728, 39.93577422178851], [-75.232724620188, 39.93463860837166], [-75.23304944256505, 39.934443141300974], [-75.23316680296028, 39.934403457459595], [-75.23328500124813, 39.93437717438364], [-75.23341607424994, 39.93435151247633], [-75.23357748183564, 39.93432944696273], [-75.23369487515502, 39.934324803049165], [-75.23386210517593, 39.9343461162973], [-75.23414109027634, 39.93441342064169], [-75.23429649319554, 39.93448372763597], [-75.23453134294022, 39.93459411345274], [-75.23488358253603, 39.93463040300634], [-75.2351596404366, 39.93464253664272], [-75.23537389905631, 39.93461682699806], [-75.23560529289891, 39.93455500141549], [-75.23591865246344, 39.934442503642835], [-75.23664759632881, 39.933906180675955], [-75.23666177970193, 39.934087550085515], [-75.23665133117491, 39.93420488655617], [-75.23660339239997, 39.934344915588156], [-75.23655336828404, 39.93454132822961], [-75.23652373928955, 39.93468175760784], [-75.23646865275937, 39.93484984370847], [-75.23639257083319, 39.9351726570471], [-75.23631969340647, 39.935326245383415], [-75.23617007168824, 39.935407612638286], [-75.23601330560618, 39.93551703957006], [-75.23586298784012, 39.935617201263895], [-75.23566401318618, 39.93571159467156], [-75.23545823673795, 39.935824649600505], [-75.23526380087891, 39.93596146431477], [-75.23497921193861, 39.936223273683886], [-75.23492010462078, 39.93633483891729], [-75.23492185984469, 39.936452442920405], [-75.23491664324142, 39.93659340731749], [-75.2348461953796, 39.93668121324939], [-75.23477321788663, 39.93675485407357], [-75.23474393443104, 39.93688588427163], [-75.23478702806624, 39.9370420159329], [-75.23478163725238, 39.93718767880529], [-75.23480048581486, 39.937338577353174], [-75.23486938799532, 39.937457652082024], [-75.23492084647403, 39.93755283366167], [-75.23496848080433, 39.9377513881742], [-75.23497564550011, 39.937887919976426], [-75.23498281132761, 39.938024453604044], [-75.23500340297346, 39.93812836286094], [-75.23507387119106, 39.9382051493166], [-75.23516299723741, 39.938272941142294], [-75.23529554970298, 39.938322873167614], [-75.23548966580893, 39.93836004788003], [-75.2357816214686, 39.93839466387713], [-75.23594591001282, 39.93841237296468], [-75.23614682570808, 39.93843088461924], [-75.23634739395118, 39.93845879289217], [-75.23649999900883, 39.93846213733794], [-75.23668381661955, 39.93844735638547], [-75.23687984402174, 39.93843284087639], [-75.23714440811271, 39.938382206511235], [-75.23744899521795, 39.938323042842086], [-75.23762182198209, 39.93827509907656], [-75.23776936395865, 39.93825011538121], [-75.23796573783048, 39.93822620284254], [-75.23817327823944, 39.93823074827048], [-75.23832622909218, 39.938224690584775], [-75.23849801306588, 39.938204940029244], [-75.23873711615691, 39.938181959138795], [-75.23887244889454, 39.9381567076098], [-75.23900743437267, 39.93814085199926], [-75.23918428007629, 39.938149426781784], [-75.23933670863326, 39.938157466792724], [-75.23945286097023, 39.93815530616252], [-75.23956308200826, 39.93814831239838], [-75.23970958281383, 39.93815151897409], [-75.23981928309944, 39.93815862313541], [-75.23992253142438, 39.9381749914664], [-75.2400372955059, 39.938210419969614], [-75.24013967867731, 39.938250281510335], [-75.24025863671281, 39.93833753303796], [-75.24040995404322, 39.938458408504886], [-75.24059276459693, 39.938636405667815], [-75.24071155050956, 39.938728352515966], [-75.24076267231305, 39.93883292938218], [-75.24073932864717, 39.93896879310819], [-75.24069871200369, 39.93907606610911], [-75.2406272281501, 39.9391920656366], [-75.24054440384643, 39.93928430646638], [-75.24042495286159, 39.9393757458371], [-75.2403423004971, 39.939463285303056], [-75.240240642209, 39.939569221582225], [-75.24014387387415, 39.93970818350265], [-75.24001675359604, 39.939841776143794], [-75.23995119918372, 39.93996261004167], [-75.23989199360169, 39.94004014682548], [-75.23943990595043, 39.939820635715826], [-75.2392059914378, 39.939736453084166], [-75.2390011854177, 39.93971980516514], [-75.23873187557751, 39.93973823665251], [-75.2384519774567, 39.93982941531003], [-75.23807984787723, 39.9400645345292], [-75.23787144698669, 39.94014511600913], [-75.23773600317422, 39.94017559699575], [-75.23758544765711, 39.940187504362896], [-75.23719951600373, 39.94015472211588], [-75.23708098652438, 39.94015516792562], [-75.2369297568647, 39.940185303009926], [-75.23676093795004, 39.940263706211184], [-75.23660687954481, 39.94036655046346], [-75.23503453869628, 39.941475085310834], [-75.23382951822354, 39.9423175806767], [-75.23432126745027, 39.94274206383771], [-75.23453049110597, 39.94290822712017], [-75.2347335948175, 39.943088277988174], [-75.23521991589762, 39.94349567046655], [-75.23460058718051, 39.94394722294118], [-75.23447444548366, 39.94402821946588], [-75.23418573636991, 39.94423881568086], [-75.23371815372047, 39.944560304836195], [-75.23322356204032, 39.9441379445611], [-75.23281885532278, 39.943791942656354]]]}}, {"id": "1360", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18484922326599, 39.96614149173921], [-75.18435660843396, 39.965550289347135], [-75.18364873769167, 39.96457219229305], [-75.18354554441063, 39.96443732115239], [-75.18347225828724, 39.964341536181614], [-75.18374491579901, 39.964279560944455], [-75.18431281618732, 39.96410592015109], [-75.18444557929725, 39.96404758328842], [-75.18457123512407, 39.963999713871445], [-75.18473166794168, 39.96395043332568], [-75.18505348553673, 39.96382183247109], [-75.18521097532448, 39.9637588973525], [-75.18535393650671, 39.96371623344778], [-75.18564975042099, 39.963627954642334], [-75.18643859260281, 39.96348224154644], [-75.18674344963637, 39.96344671159169], [-75.1874162811373, 39.96336829040095], [-75.18802607863202, 39.96329535320564], [-75.18848694285441, 39.963249022063465], [-75.18993883938037, 39.96308440943466], [-75.19139090587306, 39.96292303772596], [-75.19147738285994, 39.96292171263492], [-75.192517977438, 39.96280997802728], [-75.19284664988015, 39.96277092904808], [-75.19419672896895, 39.96262383654907], [-75.19429825539707, 39.96260805996062], [-75.19574800367215, 39.962448792109484], [-75.19719782733475, 39.9622884094461], [-75.19943697827972, 39.96204337101509], [-75.19954402181146, 39.96261317862635], [-75.19964817823953, 39.963167834578144], [-75.19975578592744, 39.963778229411936], [-75.19985985277751, 39.96433764219597], [-75.19996167948639, 39.96489660500567], [-75.2000648715532, 39.96545486280315], [-75.20017113270373, 39.9660065518617], [-75.20027320729024, 39.9665681236714], [-75.2003766608814, 39.96712547684685], [-75.20048108991301, 39.96768143968206], [-75.2005854865362, 39.968225300257366], [-75.2006825037777, 39.968748509689675], [-75.19873901022478, 39.96896474723525], [-75.20360222096758, 39.970262038082865], [-75.20363324664117, 39.970432344209144], [-75.20365192712485, 39.970536711194484], [-75.20372256837196, 39.97092991009466], [-75.20372444604058, 39.970940143918334], [-75.20373778519559, 39.9710135329684], [-75.20348653944679, 39.97101458528833], [-75.2031438609358, 39.971018855159635], [-75.20280217542738, 39.97103558441613], [-75.20246146679227, 39.97106857044634], [-75.20212582727534, 39.97111679138892], [-75.20179527631387, 39.97118609164044], [-75.20146991414583, 39.97126904739688], [-75.20114834189835, 39.97135896109926], [-75.2008300396192, 39.97145629876278], [-75.2005167783354, 39.97156188994687], [-75.20020658391334, 39.97167432130029], [-75.19990132964449, 39.9717951923184], [-75.19960966378463, 39.9719314879363], [-75.19933172317984, 39.972085236761686], [-75.19906596864303, 39.97225320340784], [-75.19881896232208, 39.97243574288791], [-75.1983798864382, 39.972837364965635], [-75.19817373991863, 39.97304817344242], [-75.19796973622626, 39.97326048165323], [-75.19776267748833, 39.97347047176852], [-75.19769427033506, 39.9735526068525], [-75.19747675915838, 39.97375745082089], [-75.19724347719469, 39.97395315065537], [-75.19700906804599, 39.97414484161994], [-75.1967697217073, 39.9743329092601], [-75.19652544619335, 39.97451751410253], [-75.19627710586025, 39.97469896547529], [-75.19602558226443, 39.974877551471934], [-75.19577203856599, 39.975054075529776], [-75.19575612004209, 39.97506493243013], [-75.19541223775175, 39.97510346411268], [-75.19489863948688, 39.97516312254212], [-75.19466135487802, 39.97518792535294], [-75.1946275299596, 39.97519146092737], [-75.19461061691396, 39.97519322869778], [-75.19440416945793, 39.975214808203454], [-75.19438620060323, 39.97521668577702], [-75.19435026987784, 39.97522044197228], [-75.19423227229858, 39.97523277524366], [-75.19316767010415, 39.97534404688133], [-75.19306819929173, 39.97522587002582], [-75.19267610460359, 39.97455682874583], [-75.19251524639479, 39.97427958810763], [-75.19185603211622, 39.97273659554681], [-75.19156997895064, 39.971541539557435], [-75.19117087980821, 39.970174153296554], [-75.19053330321391, 39.969523141662705], [-75.18900330738798, 39.96863994646185], [-75.18706908333387, 39.967747703382884], [-75.18559269656258, 39.96690811198944], [-75.18484922326599, 39.96614149173921]]]}}, {"id": "1370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22290607669642, 39.939681196540526], [-75.2220963835731, 39.9389890411456], [-75.22163821577948, 39.93860911954614], [-75.22114069662634, 39.938199705391014], [-75.22073274993514, 39.93785186363125], [-75.2202432225084, 39.93743972666395], [-75.21961403224867, 39.93690206029598], [-75.2189844066721, 39.93637050114046], [-75.21781110222202, 39.93535867311922], [-75.21823454424116, 39.935061842652814], [-75.21863606268765, 39.93479097747546], [-75.21918166065471, 39.934407849856306], [-75.21969531134133, 39.93404847978036], [-75.22015038068251, 39.933736808053105], [-75.22031138329548, 39.93361547102801], [-75.22054734853859, 39.933451623766636], [-75.22173280255822, 39.93443158438589], [-75.2224836359392, 39.933905953349196], [-75.2232199760324, 39.93339056163966], [-75.22372599637802, 39.93303318014364], [-75.22411929621914, 39.932750305177024], [-75.2245939121745, 39.93241174850837], [-75.22541026665041, 39.93184045411882], [-75.2275979625321, 39.93030940778205], [-75.22922294797267, 39.9291732561065], [-75.22993831520918, 39.92961246541906], [-75.2301046471848, 39.929712464087395], [-75.2307028980303, 39.930072132603634], [-75.23136337528365, 39.93047928654213], [-75.23179925549334, 39.93073781487231], [-75.2320352416839, 39.930870618194646], [-75.2323338812178, 39.93109614132798], [-75.23277036958953, 39.93151838657586], [-75.2331577985903, 39.931842426891116], [-75.233575969569, 39.93219905996512], [-75.23256727024936, 39.93291386321791], [-75.23298133789591, 39.93327394201144], [-75.23195870779912, 39.933986075836685], [-75.23212899936999, 39.93413698521188], [-75.232724620188, 39.93463860837166], [-75.23109684093728, 39.93577422178851], [-75.22972674809127, 39.93674409566596], [-75.22922852278495, 39.93709246215178], [-75.22884327779396, 39.937359480493996], [-75.22835886823013, 39.93770158422983], [-75.22783178413717, 39.938078450519924], [-75.22738390756126, 39.93839393907862], [-75.22685518988968, 39.938768103636576], [-75.22638414770273, 39.93909719660462], [-75.22595162625947, 39.93939925316969], [-75.22548113740314, 39.939726193300785], [-75.22411470112915, 39.94069239719636], [-75.22354402565823, 39.940203617824274], [-75.22290607669642, 39.939681196540526]]]}}, {"id": "1380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22054734853859, 39.933451623766636], [-75.21911609056419, 39.932236395979025], [-75.21872026947263, 39.931911546747514], [-75.21773191977564, 39.931075817393875], [-75.21741503596247, 39.93084696636643], [-75.21712829573877, 39.93073307845829], [-75.21647530459322, 39.93045982280271], [-75.21575088067966, 39.93016313638106], [-75.21492199083451, 39.92983925119834], [-75.21422912275716, 39.929560220107085], [-75.21391923784077, 39.92941299856718], [-75.21347401016706, 39.929327276329566], [-75.21193246740769, 39.92930455022506], [-75.21074355424716, 39.929267201457094], [-75.21116053746807, 39.928406227444746], [-75.21157630482006, 39.92760883240147], [-75.21214722121682, 39.92634789377554], [-75.21240349026309, 39.92539130720084], [-75.21255801411132, 39.92420605590866], [-75.21236773139668, 39.92339524882293], [-75.21195444836577, 39.92265025678862], [-75.21111670313407, 39.92195247005715], [-75.20994136801055, 39.92119059609576], [-75.20888316774469, 39.92098318900874], [-75.20771109345405, 39.920872302717065], [-75.20647864311627, 39.920901574082286], [-75.20524090114905, 39.92107222205077], [-75.20375348198348, 39.921039201492874], [-75.20262167546693, 39.920589535899126], [-75.20203954057037, 39.919939811356116], [-75.2019945286076, 39.919781946952625], [-75.20634703344206, 39.91898157802478], [-75.20703570277193, 39.918826738733266], [-75.2074522964374, 39.918696792111206], [-75.20832734734644, 39.91839142706454], [-75.20870170719188, 39.91829975146925], [-75.21582396475834, 39.91695755714793], [-75.21838572656571, 39.91647298421948], [-75.21924643384173, 39.916304991938944], [-75.2198709023641, 39.91620103575878], [-75.22007736956266, 39.91614831697048], [-75.2210605119447, 39.91602562108154], [-75.22582562977516, 39.9158779780424], [-75.22581370816636, 39.91609503462634], [-75.22610122529312, 39.91690397621625], [-75.22637993074923, 39.9169457129939], [-75.22653131944614, 39.916924289172286], [-75.22675218138791, 39.91683556681867], [-75.22686200140986, 39.916950477715574], [-75.2269552641675, 39.9170809492969], [-75.22700177600785, 39.917195993208786], [-75.22706532599622, 39.91741952908557], [-75.22713800379935, 39.917575986428595], [-75.22723252603191, 39.917672492609334], [-75.22737321974084, 39.91779918796638], [-75.22763578642127, 39.91800901890302], [-75.22787204289476, 39.918215832363344], [-75.22829153346508, 39.918555764898066], [-75.22876696548548, 39.91896857594046], [-75.23016936324927, 39.92014685139141], [-75.23066560339957, 39.920570737698036], [-75.23156512132066, 39.921332931193255], [-75.23184940298295, 39.92156365712455], [-75.23206461196527, 39.92175450742406], [-75.23225315566052, 39.9219123485317], [-75.23249497021223, 39.922109763874666], [-75.23269240693722, 39.92227914030631], [-75.23297217161154, 39.922511591338285], [-75.23340722171267, 39.92288617980907], [-75.2336625993915, 39.923107379177125], [-75.23396382550058, 39.923359396114954], [-75.23419949008655, 39.923549632313225], [-75.2343691919733, 39.92369534698896], [-75.23477256061263, 39.92402552939342], [-75.23513607401314, 39.924329110083455], [-75.23556761530502, 39.924705161692295], [-75.23513456656124, 39.92501404370246], [-75.2347728286137, 39.92526555330249], [-75.23432826391235, 39.92557419424493], [-75.23370959255938, 39.92602333023891], [-75.23310079510505, 39.92645314258712], [-75.23217982966749, 39.92708608624951], [-75.23171416596094, 39.92740342826188], [-75.2311391644917, 39.92779373348052], [-75.23078482130573, 39.92805966085603], [-75.23065538894247, 39.92815909675535], [-75.22922294797267, 39.9291732561065], [-75.2275979625321, 39.93030940778205], [-75.22541026665041, 39.93184045411882], [-75.2245939121745, 39.93241174850837], [-75.22411929621914, 39.932750305177024], [-75.22372599637802, 39.93303318014364], [-75.2232199760324, 39.93339056163966], [-75.2224836359392, 39.933905953349196], [-75.22173280255822, 39.93443158438589], [-75.22054734853859, 39.933451623766636]]]}}, {"id": "1390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18107508428989, 39.96162779881066], [-75.1802202153056, 39.960405820580924], [-75.18005107995222, 39.960132068330665], [-75.1799758297001, 39.96001027156133], [-75.17983899226007, 39.95978878931603], [-75.17947873432696, 39.95886090526811], [-75.17929516795142, 39.957880374074975], [-75.1793645489595, 39.957018719111204], [-75.17952364866278, 39.956215676865845], [-75.17956689482352, 39.95612304155624], [-75.17986268049417, 39.95548943951723], [-75.17989950342928, 39.955410561002644], [-75.18018395822202, 39.954801220932175], [-75.18031091629639, 39.95448418419493], [-75.1804479277613, 39.95414203879143], [-75.1810342474327, 39.952999285513314], [-75.18125186576778, 39.95257513323569], [-75.18174172932771, 39.95152048653826], [-75.18177228119845, 39.95145470656806], [-75.18243483863459, 39.95046482009293], [-75.18301374576069, 39.949741926184196], [-75.18367648239071, 39.949233166955395], [-75.18466080412703, 39.948491032151125], [-75.18638192557506, 39.947257678409755], [-75.1867677265549, 39.94698153699119], [-75.18687020015383, 39.94691457163152], [-75.18735320149077, 39.94659947458651], [-75.18792294351213, 39.946227784440076], [-75.18825665527879, 39.94601007383723], [-75.18889164537305, 39.945525822624006], [-75.18939241252559, 39.94514392406182], [-75.18945882417533, 39.94508477771983], [-75.18985287188819, 39.94473383402683], [-75.19022943637438, 39.94439845576369], [-75.19067974179438, 39.943981979434184], [-75.19099136949414, 39.94369375929506], [-75.19105851370779, 39.943636688136955], [-75.19157341030997, 39.94319903601902], [-75.19177005947272, 39.94303188465246], [-75.19253116202371, 39.94259603349538], [-75.19364560318907, 39.942281245825754], [-75.19369737903752, 39.942280125631584], [-75.19386792557843, 39.94227634272461], [-75.19460271708917, 39.942260124464774], [-75.19577620044844, 39.94234286678344], [-75.19692197216327, 39.94267969748615], [-75.19795163481602, 39.94316960721573], [-75.19909313422974, 39.94360535829999], [-75.19996512413074, 39.94387946206713], [-75.20042752555308, 39.94394416737382], [-75.20080678289902, 39.9439972290549], [-75.20161442497796, 39.94396959747437], [-75.2018099014724, 39.94396290300457], [-75.2030545074157, 39.94362262812122], [-75.20329421085049, 39.94408301196562], [-75.20460489022865, 39.94395445297271], [-75.2053264864448, 39.94408111179888], [-75.20528159466483, 39.94415698142473], [-75.20537423404978, 39.94505914245293], [-75.20696015034082, 39.946662249602404], [-75.20697377705622, 39.946834461392456], [-75.20565664322592, 39.94805410681656], [-75.20516872951993, 39.94852347532274], [-75.20503323057667, 39.94853436087157], [-75.20452602474221, 39.94872922500287], [-75.20376393721541, 39.94900224732861], [-75.20301344481327, 39.9492827311201], [-75.20141211703024, 39.94976124037877], [-75.2011575334559, 39.94984044328213], [-75.20128850342793, 39.94988004314401], [-75.20148904244392, 39.94994614180677], [-75.20158528615542, 39.94997786358603], [-75.2034611695254, 39.94992521621503], [-75.20330368930523, 39.95068511881125], [-75.20319059599899, 39.9512044680973], [-75.20314128488319, 39.95142500603531], [-75.2030845024121, 39.9517468510238], [-75.2030720261769, 39.95183111529021], [-75.20295655882086, 39.952370661785295], [-75.20282802590086, 39.95297124948091], [-75.2027421473969, 39.95338532296644], [-75.20259046983514, 39.95411371494432], [-75.20242872567167, 39.95487206779536], [-75.20227410024071, 39.95563137506652], [-75.20211564815075, 39.9563775533588], [-75.20195465540273, 39.95715039346624], [-75.20183425804929, 39.957872636352754], [-75.20197181660889, 39.95917785982849], [-75.20210283042897, 39.960407347841496], [-75.20219593881716, 39.96124957541975], [-75.20223531539463, 39.961644753824054], [-75.20226648573353, 39.96194501383715], [-75.20229860475062, 39.96224817811425], [-75.20236191691136, 39.96286067235433], [-75.20237007739473, 39.962953675953656], [-75.2023726595329, 39.96305658206573], [-75.2023438055402, 39.96313896353822], [-75.2019296437978, 39.96289648722051], [-75.20076713890572, 39.9622889342618], [-75.20013716043388, 39.96196405580526], [-75.19943697827972, 39.96204337101509], [-75.19719782733475, 39.9622884094461], [-75.19574800367215, 39.962448792109484], [-75.19429825539707, 39.96260805996062], [-75.19419672896895, 39.96262383654907], [-75.19284664988015, 39.96277092904808], [-75.192517977438, 39.96280997802728], [-75.19147738285994, 39.96292171263492], [-75.19139090587306, 39.96292303772596], [-75.18993883938037, 39.96308440943466], [-75.18848694285441, 39.963249022063465], [-75.18802607863202, 39.96329535320564], [-75.1874162811373, 39.96336829040095], [-75.18674344963637, 39.96344671159169], [-75.18643859260281, 39.96348224154644], [-75.18564975042099, 39.963627954642334], [-75.18535393650671, 39.96371623344778], [-75.18521097532448, 39.9637588973525], [-75.18505348553673, 39.96382183247109], [-75.18473166794168, 39.96395043332568], [-75.18457123512407, 39.963999713871445], [-75.18444557929725, 39.96404758328842], [-75.18431281618732, 39.96410592015109], [-75.18374491579901, 39.964279560944455], [-75.18347225828724, 39.964341536181614], [-75.18287764460733, 39.96356437420266], [-75.18195851251086, 39.962581540396314], [-75.18107508428989, 39.96162779881066]]]}}, {"id": "1400", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23513607401314, 39.924329110083455], [-75.23477256061263, 39.92402552939342], [-75.2343691919733, 39.92369534698896], [-75.23419949008655, 39.923549632313225], [-75.23396382550058, 39.923359396114954], [-75.2336625993915, 39.923107379177125], [-75.23340722171267, 39.92288617980907], [-75.23297217161154, 39.922511591338285], [-75.23269240693722, 39.92227914030631], [-75.23249497021223, 39.922109763874666], [-75.23225315566052, 39.9219123485317], [-75.23206461196527, 39.92175450742406], [-75.23184940298295, 39.92156365712455], [-75.23156512132066, 39.921332931193255], [-75.23066560339957, 39.920570737698036], [-75.23016936324927, 39.92014685139141], [-75.22876696548548, 39.91896857594046], [-75.22829153346508, 39.918555764898066], [-75.22787204289476, 39.918215832363344], [-75.22763578642127, 39.91800901890302], [-75.22737321974084, 39.91779918796638], [-75.22723252603191, 39.917672492609334], [-75.22713800379935, 39.917575986428595], [-75.22706532599622, 39.91741952908557], [-75.22700177600785, 39.917195993208786], [-75.2269552641675, 39.9170809492969], [-75.22686200140986, 39.916950477715574], [-75.22675218138791, 39.91683556681867], [-75.22653131944614, 39.916924289172286], [-75.22637993074923, 39.9169457129939], [-75.22610122529312, 39.91690397621625], [-75.22581370816636, 39.91609503462634], [-75.22582562977516, 39.9158779780424], [-75.2210605119447, 39.91602562108154], [-75.22007736956266, 39.91614831697048], [-75.2198709023641, 39.91620103575878], [-75.21924643384173, 39.916304991938944], [-75.21838572656571, 39.91647298421948], [-75.21582396475834, 39.91695755714793], [-75.20870170719188, 39.91829975146925], [-75.20832734734644, 39.91839142706454], [-75.2074522964374, 39.918696792111206], [-75.20703570277193, 39.918826738733266], [-75.20634703344206, 39.91898157802478], [-75.2019945286076, 39.919781946952625], [-75.20184462772525, 39.91925623705986], [-75.20194457510891, 39.91855091390986], [-75.20246386163328, 39.917444533142344], [-75.20359825025908, 39.91561596579895], [-75.2041088348333, 39.91449523508961], [-75.20470414463513, 39.91331977872765], [-75.20542266692576, 39.912288564423946], [-75.20635832065332, 39.91134706809731], [-75.207216129998, 39.911012324931804], [-75.20848050275646, 39.910615834252674], [-75.2094913839666, 39.9106099381418], [-75.2122790037696, 39.9107565830743], [-75.2135613898842, 39.91061515098194], [-75.21464580619211, 39.910115556509204], [-75.2153079210576, 39.909606617026206], [-75.21568364421469, 39.90889323104565], [-75.21569646410822, 39.90756333700614], [-75.21545761289784, 39.905591091598325], [-75.2151114782057, 39.903786283051396], [-75.21468644114745, 39.901880671807056], [-75.21405201147564, 39.90066381664515], [-75.2135832514153, 39.89993175325022], [-75.2121105527512, 39.898285960912], [-75.21157229080009, 39.89783622404864], [-75.21063179238031, 39.897050385553555], [-75.20953791229009, 39.89633275566915], [-75.20811681144355, 39.8955229525527], [-75.20643188168988, 39.89489123824661], [-75.2046735612974, 39.894257866007955], [-75.20220010194497, 39.893834988846315], [-75.20040917979276, 39.89358290207157], [-75.19791884605132, 39.89287653536392], [-75.19734849868537, 39.892554200508876], [-75.19664161307446, 39.892154693323114], [-75.195377006374, 39.890852930227844], [-75.1950055405623, 39.88900502992013], [-75.1947442202182, 39.88715958381745], [-75.19435105676118, 39.88417912439962], [-75.19423258569884, 39.881954784067574], [-75.19372794187674, 39.88001878022436], [-75.19324988488377, 39.878184668892864], [-75.19430620973216, 39.877583978488495], [-75.19885918020827, 39.87531713095636], [-75.20579217318934, 39.871571579248375], [-75.21198487997897, 39.86747284480536], [-75.21603814471179, 39.87111631570757], [-75.21578921822109, 39.87504224093411], [-75.21572726805299, 39.876019193741996], [-75.2157225921386, 39.87609686569248], [-75.21590037854007, 39.876060781394166], [-75.21604782206254, 39.876025894510676], [-75.21620413112939, 39.87599218827433], [-75.21636007782286, 39.875956244738106], [-75.21670070441829, 39.87587791040923], [-75.2168458904517, 39.87584442862628], [-75.21701387381843, 39.875808276381136], [-75.21751660232262, 39.87574670542258], [-75.21770149581347, 39.87572104235302], [-75.21785992648596, 39.87570214368064], [-75.21803436577785, 39.87568407065159], [-75.21832489893065, 39.875679545594956], [-75.21885677116845, 39.87567303314916], [-75.21924109217277, 39.87559284811976], [-75.21944440642542, 39.87554510553339], [-75.21963503168246, 39.87549816989502], [-75.2197372374579, 39.87547755582184], [-75.22086539016242, 39.87557153428044], [-75.22104101540015, 39.87558704603196], [-75.22126421291121, 39.875606141876716], [-75.22208388458552, 39.87567562076239], [-75.22269919578615, 39.875731361270006], [-75.22287056878407, 39.87575196887403], [-75.22311054008301, 39.875780408591524], [-75.22376593968741, 39.87585913878545], [-75.22465413819802, 39.87602438054643], [-75.22485767419093, 39.876061344325464], [-75.22502858924472, 39.87609467239676], [-75.22595270413426, 39.87626793580584], [-75.22686666491282, 39.87640468847385], [-75.2270790468691, 39.877121947231444], [-75.22815917458351, 39.88003256977026], [-75.22842306962197, 39.880662016182356], [-75.22860358752109, 39.881069006359276], [-75.2290332495557, 39.88134926578361], [-75.22954380194118, 39.88186455743175], [-75.22991293925438, 39.88241274077748], [-75.23041151898329, 39.883461829350814], [-75.23066845703238, 39.88389606718639], [-75.2322284423173, 39.88709009516002], [-75.2327809999355, 39.888139499933715], [-75.23324776242973, 39.888924237548636], [-75.23342721098632, 39.889179233455955], [-75.2337994542322, 39.88975864539145], [-75.23386570456779, 39.889868664508995], [-75.23389537835244, 39.88992325950736], [-75.23433288922183, 39.890728177407674], [-75.23517086911598, 39.892116369658126], [-75.23529169571022, 39.8923165253384], [-75.23541859937087, 39.89252674407812], [-75.23553237788855, 39.89271522200667], [-75.23580089524816, 39.893160027181764], [-75.23603700188254, 39.893564634635204], [-75.23667701289826, 39.8946011554303], [-75.23666598511215, 39.89476933490932], [-75.23689467576155, 39.89515973212516], [-75.23732505741685, 39.895827078972], [-75.23759565723081, 39.896336509301584], [-75.2379796426334, 39.89719487902062], [-75.23843650460832, 39.89853518883194], [-75.23853353425918, 39.89881426984991], [-75.23860219673388, 39.89901196227496], [-75.23882036732545, 39.899758714044], [-75.2389922133673, 39.900256656235065], [-75.23932225775096, 39.9013697638066], [-75.23983320878347, 39.90317834236422], [-75.2400959560168, 39.90399314262044], [-75.24014732197246, 39.90415242872423], [-75.24113345091519, 39.9072102906146], [-75.2413341826973, 39.907819007159155], [-75.24145455350472, 39.908071317402964], [-75.24168770469325, 39.90846228037278], [-75.24188534695105, 39.90904321628965], [-75.24236432839977, 39.91046957260359], [-75.24266035338107, 39.911384475824626], [-75.24302202420598, 39.912502230677866], [-75.24310411602268, 39.912751582693325], [-75.243227060544, 39.9131134123101], [-75.24361298418978, 39.91379130849596], [-75.24384947138104, 39.91409082898938], [-75.24466378165084, 39.915111444704294], [-75.24493532437597, 39.91545166166367], [-75.24530742066938, 39.91591785660964], [-75.24579391484275, 39.916542514305725], [-75.24630867702935, 39.91717730509635], [-75.24569206743418, 39.91761649681568], [-75.24508461804605, 39.918024650790926], [-75.24436630386, 39.918516744644144], [-75.24384258404814, 39.91887222098998], [-75.24298672789187, 39.91947764462562], [-75.24141606766713, 39.920581080752065], [-75.24004602105052, 39.92154812743355], [-75.23918469074945, 39.9221591409605], [-75.23840062295413, 39.922704513862946], [-75.23787063854797, 39.92307969673384], [-75.23740333296807, 39.92340134227495], [-75.23688443591094, 39.92376183517927], [-75.23623036495619, 39.924236356905006], [-75.23556761530502, 39.924705161692295], [-75.23513607401314, 39.924329110083455]]]}}, {"id": "1410", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.21743760573125, 39.9724356476891], [-75.21717197868607, 39.97035239770751], [-75.21699640530869, 39.968970685609506], [-75.21636818230415, 39.969031120310326], [-75.21576217994979, 39.96909507783468], [-75.21528992999187, 39.96914249371162], [-75.21480839700534, 39.96919231816414], [-75.21435015898996, 39.969238605392725], [-75.21384602151933, 39.969289782379036], [-75.21384515928588, 39.96922812853912], [-75.21381710658514, 39.96903611423682], [-75.21379568055352, 39.96883284512564], [-75.21375007799544, 39.9684829244615], [-75.21370757697493, 39.968127131120845], [-75.2136500122597, 39.96769736954828], [-75.21351411433787, 39.966578304228385], [-75.21340694504758, 39.96570864921634], [-75.21337609340233, 39.965466918667126], [-75.21333806087627, 39.965168923090985], [-75.21322853775273, 39.96433250864373], [-75.21370729354383, 39.964296283029626], [-75.21419559539217, 39.964259332972176], [-75.21470015168937, 39.96422115065583], [-75.21516294851831, 39.964189471409064], [-75.21637741936549, 39.96409569079961], [-75.21822793170311, 39.96395720516577], [-75.21829467559881, 39.96449083190423], [-75.21836098136826, 39.965028922370635], [-75.2201709963554, 39.964845529988835], [-75.22011148713864, 39.96436075060387], [-75.22004478056664, 39.963820869515125], [-75.21976953596858, 39.96301130841067], [-75.21969376220423, 39.96252450315264], [-75.21943900765564, 39.96094235593091], [-75.21965042702726, 39.960957506554315], [-75.22059247702725, 39.961075874663585], [-75.2215794161934, 39.96119931296838], [-75.22206583290657, 39.96125897645551], [-75.22256784792319, 39.96132161960473], [-75.22355198385931, 39.96144479703293], [-75.2245421302761, 39.961568838865276], [-75.2252934967573, 39.96165947884321], [-75.22585395073848, 39.96172902647333], [-75.22651888853692, 39.96181383932179], [-75.22620387041475, 39.96333076392879], [-75.22600799891545, 39.96425105452764], [-75.22610999450255, 39.96488050967971], [-75.22593459599196, 39.964904030803716], [-75.22584462433898, 39.964944331733754], [-75.22575087538455, 39.965011065857176], [-75.22556752561768, 39.9651707802169], [-75.22546341299322, 39.9652056034123], [-75.22514198038573, 39.96509389861236], [-75.2245912459582, 39.96489703747408], [-75.22464125082206, 39.96518496270591], [-75.22474199418114, 39.96576621718402], [-75.22481339106439, 39.96620721153563], [-75.22488803837112, 39.96664398229281], [-75.22496396018423, 39.96711185914312], [-75.2250468750093, 39.96758631841902], [-75.22514103036552, 39.96814671704771], [-75.22521439736686, 39.96858969330798], [-75.22537367233548, 39.969518809027754], [-75.22561691682257, 39.97048021464085], [-75.22583491592414, 39.971365668757734], [-75.22584237062186, 39.97143175783036], [-75.22571266046691, 39.97146490113747], [-75.22538481137462, 39.97153234336764], [-75.22367290416578, 39.97189577011077], [-75.22261453670089, 39.97212115051214], [-75.2220108970832, 39.97225433167098], [-75.21907411728215, 39.97287838793546], [-75.21841780939198, 39.97302514811818], [-75.21776807540628, 39.97262800884351], [-75.21743760573125, 39.9724356476891]]]}}, {"id": "1420", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.21133586950056, 39.96872707840927], [-75.2101028280384, 39.967962921774266], [-75.2097592173279, 39.96775147153196], [-75.20954182337731, 39.967618069234746], [-75.20846364890292, 39.96695085866885], [-75.20756081755907, 39.966382069702114], [-75.20684764376574, 39.965941337176766], [-75.20649665464367, 39.965725642430144], [-75.20546777001317, 39.965091006712015], [-75.2054944052011, 39.96499566213355], [-75.205858304662, 39.964648011889416], [-75.2059006436575, 39.96454103570059], [-75.20646964200016, 39.96489331119399], [-75.20670917121294, 39.96482793900861], [-75.20729978319541, 39.96477937262457], [-75.20807891433056, 39.964718917722486], [-75.20869868242663, 39.96467001342774], [-75.20934412865095, 39.96462231322039], [-75.21080409595272, 39.96451449157884], [-75.21128676076057, 39.964479711314404], [-75.21140953138075, 39.96447065434011], [-75.21209161919754, 39.96441879936685], [-75.2127867388542, 39.96436595542734], [-75.21322853775273, 39.96433250864373], [-75.21333806087627, 39.965168923090985], [-75.21337609340233, 39.965466918667126], [-75.21340694504758, 39.96570864921634], [-75.21351411433787, 39.966578304228385], [-75.2136500122597, 39.96769736954828], [-75.21370757697493, 39.968127131120845], [-75.21375007799544, 39.9684829244615], [-75.21379568055352, 39.96883284512564], [-75.21381710658514, 39.96903611423682], [-75.21384515928588, 39.96922812853912], [-75.21384602151933, 39.969289782379036], [-75.21435015898996, 39.969238605392725], [-75.21480839700534, 39.96919231816414], [-75.21528992999187, 39.96914249371162], [-75.21576217994979, 39.96909507783468], [-75.21636818230415, 39.969031120310326], [-75.21699640530869, 39.968970685609506], [-75.21717197868607, 39.97035239770751], [-75.21743760573125, 39.9724356476891], [-75.21608600831708, 39.97161938133278], [-75.21499017096943, 39.9709560607137], [-75.21468810542842, 39.970774549650116], [-75.21454241075261, 39.970684580300244], [-75.2143190588701, 39.9705434928283], [-75.21390007921819, 39.970296393465695], [-75.21293442563362, 39.96971390666676], [-75.21264181899252, 39.96953740234732], [-75.2121349858603, 39.96922915050159], [-75.21133586950056, 39.96872707840927]]]}}, {"id": "1440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.24530742066938, 39.91591785660964], [-75.24493532437597, 39.91545166166367], [-75.24466378165084, 39.915111444704294], [-75.24384947138104, 39.91409082898938], [-75.24361298418978, 39.91379130849596], [-75.243227060544, 39.9131134123101], [-75.24310411602268, 39.912751582693325], [-75.24302202420598, 39.912502230677866], [-75.24266035338107, 39.911384475824626], [-75.24236432839977, 39.91046957260359], [-75.24188534695105, 39.90904321628965], [-75.24168770469325, 39.90846228037278], [-75.24145455350472, 39.908071317402964], [-75.2413341826973, 39.907819007159155], [-75.24113345091519, 39.9072102906146], [-75.24014732197246, 39.90415242872423], [-75.2400959560168, 39.90399314262044], [-75.23983320878347, 39.90317834236422], [-75.23932225775096, 39.9013697638066], [-75.2389922133673, 39.900256656235065], [-75.23882036732545, 39.899758714044], [-75.23860219673388, 39.89901196227496], [-75.23853353425918, 39.89881426984991], [-75.23843650460832, 39.89853518883194], [-75.2379796426334, 39.89719487902062], [-75.23759565723081, 39.896336509301584], [-75.23732505741685, 39.895827078972], [-75.23689467576155, 39.89515973212516], [-75.23666598511215, 39.89476933490932], [-75.23667701289826, 39.8946011554303], [-75.23603700188254, 39.893564634635204], [-75.23580089524816, 39.893160027181764], [-75.23553237788855, 39.89271522200667], [-75.23541859937087, 39.89252674407812], [-75.23529169571022, 39.8923165253384], [-75.23517086911598, 39.892116369658126], [-75.23433288922183, 39.890728177407674], [-75.23389537835244, 39.88992325950736], [-75.23386570456779, 39.889868664508995], [-75.2337994542322, 39.88975864539145], [-75.23342721098632, 39.889179233455955], [-75.23324776242973, 39.888924237548636], [-75.2327809999355, 39.888139499933715], [-75.2322284423173, 39.88709009516002], [-75.23066845703238, 39.88389606718639], [-75.23041151898329, 39.883461829350814], [-75.22991293925438, 39.88241274077748], [-75.22954380194118, 39.88186455743175], [-75.2290332495557, 39.88134926578361], [-75.22860358752109, 39.881069006359276], [-75.22842306962197, 39.880662016182356], [-75.22815917458351, 39.88003256977026], [-75.2270790468691, 39.877121947231444], [-75.22686666491282, 39.87640468847385], [-75.22711914707487, 39.876437058648364], [-75.22847167282687, 39.876632398326805], [-75.22872556068367, 39.87666862419972], [-75.22890678498037, 39.87669381108398], [-75.2299863334957, 39.87684818042749], [-75.23047679598254, 39.876890064343435], [-75.2306447581024, 39.87690255372097], [-75.23084727445985, 39.876920306590165], [-75.23102678790907, 39.87693697139211], [-75.23189970450814, 39.877014402944006], [-75.23231048302323, 39.877057607485526], [-75.23254937153801, 39.877083032876754], [-75.23265783054887, 39.87709439763272], [-75.23281489036877, 39.87711243410881], [-75.23299168568789, 39.87712948119487], [-75.23327104547879, 39.877155990450134], [-75.23398774988407, 39.87717958767282], [-75.23412226461492, 39.87718220502606], [-75.23430304728832, 39.87713717158413], [-75.23448191044382, 39.87709578169967], [-75.2346640349265, 39.877052144866816], [-75.23502555466166, 39.876965732166894], [-75.23553897150364, 39.87675287752604], [-75.23579675404763, 39.87658040156211], [-75.23592834018349, 39.87648943640926], [-75.23605087032027, 39.87640501548633], [-75.23637065491539, 39.87618865594084], [-75.23664115652106, 39.875737749515274], [-75.23671452279636, 39.875615424068336], [-75.23677402337746, 39.87547619722678], [-75.23693329822683, 39.87511798404234], [-75.23750019109423, 39.87508158250391], [-75.23759155607308, 39.87498314104562], [-75.23751900425653, 39.87489069568747], [-75.2374608944683, 39.87480537217064], [-75.2381110127738, 39.87459417857342], [-75.23824620953923, 39.87444783291262], [-75.23835204709452, 39.874333236143144], [-75.2386898454132, 39.87396028860272], [-75.23899372312925, 39.873837568937425], [-75.23917230471774, 39.87361000947073], [-75.23926127978736, 39.87349163936418], [-75.23934852226353, 39.87337318708348], [-75.23940465630135, 39.87330086702595], [-75.24009977322083, 39.87303120812651], [-75.24010531682733, 39.872859818033795], [-75.24010203692245, 39.872732155446734], [-75.2401014180843, 39.87261461255592], [-75.24047189157714, 39.87238290491107], [-75.24091818617407, 39.872403784289034], [-75.24108938603125, 39.87243912731901], [-75.24121666358654, 39.872467145592054], [-75.24139560399729, 39.87250783565143], [-75.24155609185267, 39.872541472125526], [-75.24174689698934, 39.8725866263106], [-75.24225469025525, 39.8727939090174], [-75.24256821080336, 39.872956274616854], [-75.24271293251525, 39.87303167146592], [-75.24675594886526, 39.87508692677362], [-75.24682507705292, 39.87514468498988], [-75.24843116673952, 39.876486517705914], [-75.25177007549969, 39.876008268019795], [-75.2522572765532, 39.87593847451019], [-75.25344115002632, 39.87600850453314], [-75.25397901087354, 39.87604316820538], [-75.25612836172884, 39.87617382688657], [-75.25742120146364, 39.87625239850408], [-75.25858930430861, 39.876323377245235], [-75.25952109442068, 39.876379988422464], [-75.26124986819036, 39.87648500020996], [-75.26253464448033, 39.87657101338095], [-75.26483205648415, 39.880647354801496], [-75.26500345296529, 39.88098283320505], [-75.26511241349733, 39.88165691623894], [-75.26454505532583, 39.882113666597995], [-75.26429795480313, 39.88224218937893], [-75.26308178020672, 39.88235579091961], [-75.26226289078176, 39.882571844384074], [-75.26194560986067, 39.88288888867857], [-75.26188556092026, 39.88306871152689], [-75.2619648414801, 39.88324018437365], [-75.26243256889265, 39.883634293208154], [-75.26413434517731, 39.88413377427175], [-75.26444410534837, 39.884314917831624], [-75.26463823565925, 39.88473376881503], [-75.264227371783, 39.88500223313561], [-75.26315322304049, 39.88530063993857], [-75.26272953306756, 39.88555405988555], [-75.26261697096858, 39.885805005360254], [-75.26268286125655, 39.88602596206221], [-75.2628037631714, 39.88608308133478], [-75.26368381808622, 39.88614529122091], [-75.26398148286944, 39.88609690542778], [-75.26428366505263, 39.88619301002159], [-75.26479848088731, 39.88644542327039], [-75.26485152464697, 39.88653708219026], [-75.26493409750464, 39.886673786544634], [-75.26503772097375, 39.88683343320687], [-75.26510529938675, 39.88698105572501], [-75.26513539479535, 39.887155972712485], [-75.26512903307312, 39.88733009834498], [-75.26509591997379, 39.88753737422559], [-75.26497854368195, 39.88775406469194], [-75.2648775952483, 39.88792051812417], [-75.26472581587099, 39.88808024886747], [-75.26459672735419, 39.88821798465446], [-75.26444658541898, 39.88833277777339], [-75.26426121679286, 39.88841307911788], [-75.26399646292565, 39.888469173198004], [-75.26372585348497, 39.88848578900923], [-75.26337647426388, 39.88846134543911], [-75.26297687522327, 39.88841332328015], [-75.26267977091516, 39.88835628254044], [-75.26247314241665, 39.88841925584918], [-75.2622932146623, 39.88855026444444], [-75.26219996310193, 39.88870564022349], [-75.26213382192496, 39.888917819787274], [-75.26209602532828, 39.88915309877558], [-75.26208092701746, 39.889366385421475], [-75.26208785386176, 39.88967571529459], [-75.26210130265099, 39.8899064854195], [-75.26212327937355, 39.89010371306425], [-75.26210961692534, 39.890277681125525], [-75.26210242524787, 39.890474274709355], [-75.26203587226061, 39.89069768785107], [-75.26188222118692, 39.89130708745025], [-75.26185500322245, 39.891452653996886], [-75.26179029803899, 39.891625513952086], [-75.26173349960943, 39.891781680833176], [-75.26160542559434, 39.89189132922739], [-75.26150492929955, 39.89194536088399], [-75.26131348888022, 39.89199179832038], [-75.26109852855167, 39.892082694840994], [-75.26073002527949, 39.89218149889538], [-75.26014173319912, 39.892303635552956], [-75.25992903257615, 39.892332744162395], [-75.25974570453546, 39.892356867490776], [-75.25954132387776, 39.89235804710291], [-75.25934987982089, 39.89240448033459], [-75.25910760004298, 39.89244418720454], [-75.25895846820406, 39.892530889134854], [-75.25877811246932, 39.89267312583547], [-75.25856879096838, 39.89280911317068], [-75.25838719659659, 39.89298505089836], [-75.25821268729047, 39.89316676456229], [-75.25802297698709, 39.89336501310601], [-75.25782941331842, 39.8935687961448], [-75.2576701035039, 39.89373397661408], [-75.25743375400573, 39.89400990882345], [-75.25691062195747, 39.89454381022039], [-75.25674319192008, 39.89473129797559], [-75.25666574008655, 39.89485328393727], [-75.25666265094684, 39.89493753946833], [-75.25671019421473, 39.89503413804727], [-75.25679193612685, 39.89519331631798], [-75.25696827170307, 39.8953601750748], [-75.25712499457705, 39.89546476846864], [-75.25727463402838, 39.895563587218106], [-75.25738980947702, 39.89570662738757], [-75.25736278601762, 39.895846576067925], [-75.25727701118751, 39.89599649052031], [-75.257147276008, 39.89615106922877], [-75.25693526480914, 39.89636007195456], [-75.25676239047758, 39.896496847241195], [-75.2564504267347, 39.896844213135324], [-75.25623676099224, 39.8970981515777], [-75.25609099485138, 39.89729173024855], [-75.25598230732751, 39.89746925259397], [-75.25580510305767, 39.89772398183689], [-75.25561819449672, 39.89794477289789], [-75.25550723823173, 39.8981840804194], [-75.25533064848462, 39.898421958548546], [-75.25522587248224, 39.89849275841124], [-75.25515673523988, 39.89858681807738], [-75.25509592180552, 39.89865295158884], [-75.25509569832735, 39.89876237738784], [-75.25511767379889, 39.89885579733446], [-75.25516707347406, 39.898901843644225], [-75.25523464359028, 39.89904947289799], [-75.25533991056038, 39.89916419034909], [-75.25548749498242, 39.899319182958166], [-75.25565079473147, 39.89950546904604], [-75.25551927441859, 39.899671817467535], [-75.2537125750273, 39.90165972354577], [-75.25128930933779, 39.90440464653971], [-75.25349030441225, 39.90558931620286], [-75.25247650491937, 39.906629316501075], [-75.25239433810611, 39.90663279088665], [-75.25215241629941, 39.90666124857997], [-75.25199092786976, 39.90668583626129], [-75.25175526466995, 39.90674253861986], [-75.25162859233201, 39.906812856580146], [-75.25149765214105, 39.9068999452429], [-75.2513030688708, 39.907030619593826], [-75.25105680761287, 39.90717703101529], [-75.25087033953598, 39.90728539552146], [-75.25071407900656, 39.90736630916673], [-75.25044490386146, 39.90754032801137], [-75.25031760916022, 39.90762749577421], [-75.25027074898914, 39.907710796000934], [-75.25022327032462, 39.90781094748396], [-75.25020475982173, 39.90791735099786], [-75.25018480243162, 39.90806307466613], [-75.25019842217804, 39.90828822850089], [-75.25019243325477, 39.90845111971399], [-75.25016621596865, 39.9085685995522], [-75.25011667252429, 39.908724919746994], [-75.25004503830664, 39.90888637949426], [-75.25000278670556, 39.90904285865848], [-75.2499330142538, 39.90915376556626], [-75.24989200148285, 39.90927654309308], [-75.24991807752134, 39.909361434647856], [-75.2500059768168, 39.90945084765427], [-75.25014975380923, 39.909512644596155], [-75.25028001024752, 39.90954359212601], [-75.25046964910027, 39.90954772687289], [-75.25065075551524, 39.90958540390398], [-75.25088188492465, 39.909652278422946], [-75.25110530948446, 39.90973022709381], [-75.25122682697439, 39.90980033293835], [-75.25129687653734, 39.909880560379776], [-75.25128483388012, 39.910009591046034], [-75.25123632293, 39.91013782777179], [-75.25112175484563, 39.910275867253], [-75.2510003032828, 39.91040251131497], [-75.25087052511984, 39.91055708467883], [-75.25071989775354, 39.91068309337084], [-75.25061365619707, 39.91079320657612], [-75.2505363791607, 39.910909573348086], [-75.25039930530177, 39.911063985363604], [-75.25019293955206, 39.91121688638701], [-75.24992663835961, 39.911312265420186], [-75.24974869265492, 39.91138708470562], [-75.2495184447701, 39.91149449164222], [-75.24933320197647, 39.91156915205354], [-75.24916213543847, 39.911655365782146], [-75.24898294714365, 39.91176388364004], [-75.24885502150394, 39.91186790279346], [-75.2487627393239, 39.911995182787926], [-75.24872048397681, 39.91215166240069], [-75.24868531572548, 39.91231391610877], [-75.24859764111719, 39.91251437506987], [-75.24855744936804, 39.91261468496965], [-75.2485093471108, 39.91273168612919], [-75.24843206430398, 39.912848050580614], [-75.2483774921136, 39.91294242446679], [-75.24829436285583, 39.91301931134196], [-75.24821164681734, 39.91308496369788], [-75.24805516189605, 39.9131714913694], [-75.2478317892695, 39.91329028952387], [-75.24760174098992, 39.9133920758825], [-75.24740045441959, 39.913505733991265], [-75.24720061585029, 39.91358007162903], [-75.24711665739866, 39.913679423859584], [-75.24706916988879, 39.91377957493105], [-75.24706441372602, 39.91390876440819], [-75.24711780437835, 39.914044843650025], [-75.2472228763013, 39.91416518896761], [-75.24733408398963, 39.91429965601948], [-75.24741208913824, 39.91441967161091], [-75.24748929415475, 39.91453956246071], [-75.24755284722504, 39.91458332237008], [-75.24763258569716, 39.914637510394016], [-75.24770662962136, 39.91472304303108], [-75.24771599704783, 39.91483863123591], [-75.24765491195821, 39.91495618126942], [-75.24755500478895, 39.915079875646406], [-75.24748646962614, 39.9152147431452], [-75.24734794882932, 39.915400532460204], [-75.24718840961387, 39.915633064899126], [-75.24713723270843, 39.915728100742655], [-75.24705774010306, 39.915852240368565], [-75.24698899190108, 39.91593116033967], [-75.24692037341751, 39.91600658455143], [-75.24684242492191, 39.91608879943717], [-75.24676795121663, 39.91619993631191], [-75.2467642932783, 39.9163301039174], [-75.24678714191808, 39.91644948240546], [-75.24683526643057, 39.91656067488572], [-75.24687750416045, 39.916708450661766], [-75.24693674751636, 39.91687235782663], [-75.24680156527874, 39.91691935941637], [-75.24630867702935, 39.91717730509635], [-75.24579391484275, 39.916542514305725], [-75.24530742066938, 39.91591785660964]]]}}, {"id": "1460", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.2479150844622, 39.951536880554066], [-75.247009840884, 39.951425676409585], [-75.2450360575381, 39.951182802514985], [-75.24306881403976, 39.950927192723235], [-75.24109450326601, 39.950692270332034], [-75.24069436633458, 39.95064649730623], [-75.23911844388543, 39.95044725003495], [-75.23923238939335, 39.949924521244796], [-75.23927440166064, 39.949684921302314], [-75.23932370145442, 39.9494647936597], [-75.23943075805695, 39.948932176911185], [-75.23954828494823, 39.948400336142036], [-75.23964252610631, 39.94793342398709], [-75.23974733758466, 39.94741236360347], [-75.23908222323139, 39.947328992099386], [-75.23851335441049, 39.947252263214494], [-75.23780518132565, 39.94716576557371], [-75.2358829211119, 39.94691536369008], [-75.23582936378949, 39.94682710323594], [-75.23613850521272, 39.9467345520364], [-75.2372711913911, 39.946464148088374], [-75.23704771881377, 39.94581994805673], [-75.23691855078515, 39.945425323267074], [-75.23669771791725, 39.944750634695254], [-75.23662273656555, 39.944670466417236], [-75.23592745137182, 39.94408559216122], [-75.23521991589762, 39.94349567046655], [-75.2347335948175, 39.943088277988174], [-75.23453049110597, 39.94290822712017], [-75.23432126745027, 39.94274206383771], [-75.23382951822354, 39.9423175806767], [-75.23503453869628, 39.941475085310834], [-75.23660687954481, 39.94036655046346], [-75.23676093795004, 39.940263706211184], [-75.2369297568647, 39.940185303009926], [-75.23708098652438, 39.94015516792562], [-75.23719951600373, 39.94015472211588], [-75.23758544765711, 39.940187504362896], [-75.23773600317422, 39.94017559699575], [-75.23787144698669, 39.94014511600913], [-75.23807984787723, 39.9400645345292], [-75.2384519774567, 39.93982941531003], [-75.23873187557751, 39.93973823665251], [-75.2390011854177, 39.93971980516514], [-75.2392059914378, 39.939736453084166], [-75.23943990595043, 39.939820635715826], [-75.23989199360169, 39.94004014682548], [-75.23979706027087, 39.94016615089987], [-75.23963619396534, 39.94030370778195], [-75.23952755920212, 39.94043300312951], [-75.2394110853556, 39.94060915418838], [-75.23939994623606, 39.940745285754275], [-75.23943119117071, 39.940891748735226], [-75.2394627844872, 39.941028816554144], [-75.23949455033176, 39.941161185848685], [-75.23956276907694, 39.941299054383975], [-75.23963150767999, 39.941422825582684], [-75.23973514074508, 39.94159438872307], [-75.2398462657806, 39.941728492006625], [-75.23998687240154, 39.94189145947086], [-75.24007461985713, 39.94199683719933], [-75.24015068012862, 39.942087849549964], [-75.2402525485793, 39.94214180825931], [-75.24036749300917, 39.94217253883913], [-75.24051958489318, 39.94218997428521], [-75.24079019232238, 39.94222411094424], [-75.24095432029354, 39.94224651140097], [-75.24117966619639, 39.94226554836925], [-75.24144809122451, 39.94227612249643], [-75.24158325771072, 39.942255565363865], [-75.24182813123383, 39.942242109411644], [-75.24203585638982, 39.94224194933295], [-75.24229224786727, 39.94224755517845], [-75.24260916018603, 39.94226859033457], [-75.24306682511775, 39.94228329739258], [-75.24317583911444, 39.94230919322389], [-75.24333386277866, 39.94233145774275], [-75.24342183720493, 39.9424031306937], [-75.24353132598557, 39.94244393177221], [-75.24384466821566, 39.942478995021226], [-75.24406984478041, 39.94250272485993], [-75.24441013930479, 39.94255248223813], [-75.24465921076852, 39.9425908406283], [-75.24501327559021, 39.942598573749684], [-75.24522641200451, 39.94261733697132], [-75.24540989616517, 39.94261193821132], [-75.24556268300977, 39.94261057117742], [-75.24574006062808, 39.942605039457135], [-75.24588691642424, 39.9425988411207], [-75.2460515652383, 39.942607136961705], [-75.24619179634958, 39.94261490135258], [-75.24634947668152, 39.94264655874255], [-75.24647087390112, 39.94266801852095], [-75.2465673353056, 39.942703043463474], [-75.24666275716746, 39.94276625930145], [-75.24674493354301, 39.942857402353084], [-75.24682319210106, 39.94297197212895], [-75.24687224727833, 39.94313293092056], [-75.24696507507956, 39.94326663034335], [-75.24702620470116, 39.94340096604385], [-75.24704275162517, 39.94347994137679], [-75.24705201906154, 39.94356008862358], [-75.24710856744471, 39.94368358988301], [-75.24721031694125, 39.943906831522696], [-75.24730418365363, 39.9440123360361], [-75.2473788713993, 39.94414093700209], [-75.2474221717518, 39.94429236359239], [-75.24750958892079, 39.944407133557625], [-75.24763363452908, 39.94452270253974], [-75.24775716387462, 39.94465236694402], [-75.24789866060215, 39.944791829492104], [-75.24809187358932, 39.94493712126483], [-75.24816812079952, 39.9450234315929], [-75.24821367231563, 39.9451137737495], [-75.24823342138605, 39.94524117492926], [-75.24832084114503, 39.94535594427416], [-75.24841453978733, 39.94546614640421], [-75.24856370064882, 39.945563452033795], [-75.24870606571926, 39.9456794192683], [-75.24889571133043, 39.945838739524625], [-75.24907925456405, 39.945997926398356], [-75.24924431232968, 39.94616141402758], [-75.24946065549328, 39.9463424769117], [-75.24958347171865, 39.94640863981163], [-75.24970994612936, 39.946458423006696], [-75.24981078915437, 39.946540564200866], [-75.24991739115657, 39.946632236266126], [-75.24996634576978, 39.94671324817739], [-75.25003580135257, 39.946818220034245], [-75.2501155659711, 39.94697514241003], [-75.25015311418076, 39.94711703878613], [-75.250203219714, 39.94724980335927], [-75.25022855799462, 39.947391432714554], [-75.25027048390123, 39.94758044986304], [-75.25030803393837, 39.94772234621211], [-75.25033999690227, 39.9478500130795], [-75.25036568133079, 39.94798224629221], [-75.25041647814537, 39.94809621492207], [-75.25047441797892, 39.94818212374083], [-75.25055729620446, 39.94825446820339], [-75.2507237456042, 39.948380362950324], [-75.25106355401404, 39.94869343352228], [-75.25119302815983, 39.94882792748606], [-75.25131725976834, 39.94893879214235], [-75.25144201355148, 39.94903556211972], [-75.2515064057238, 39.9491122063701], [-75.25155720529563, 39.949226174492196], [-75.25156791888983, 39.94943332122067], [-75.25151775411985, 39.94963443973513], [-75.25141264130527, 39.949834361407255], [-75.2513099480394, 39.94996850031347], [-75.25124301808243, 39.95012693131531], [-75.25119509934306, 39.9502669655252], [-75.25115293849704, 39.95041652968595], [-75.25115011513842, 39.950576356184946], [-75.251140122282, 39.95068194634544], [-75.25117381734422, 39.95076262523385], [-75.25126755486544, 39.95095512118756], [-75.25134940176488, 39.95105565793863], [-75.25142566000874, 39.95114196519043], [-75.25151669257959, 39.95120037965305], [-75.2515854948273, 39.95128182303045], [-75.25160916664608, 39.951385793918924], [-75.25160951214247, 39.95150101560536], [-75.2516263028047, 39.95162599908733], [-75.25164623288835, 39.95174870205532], [-75.25164870854749, 39.951847509935924], [-75.25163566592619, 39.95198234743004], [-75.24905672667398, 39.951680580210244], [-75.2479150844622, 39.951536880554066]]]}}, {"id": "1470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20387347516974, 39.964090178702016], [-75.20359833000241, 39.96392299732029], [-75.2023438055402, 39.96313896353822], [-75.2023726595329, 39.96305658206573], [-75.20237007739473, 39.962953675953656], [-75.20236191691136, 39.96286067235433], [-75.20229860475062, 39.96224817811425], [-75.20226648573353, 39.96194501383715], [-75.20223531539463, 39.961644753824054], [-75.20219593881716, 39.96124957541975], [-75.20210283042897, 39.960407347841496], [-75.20197181660889, 39.95917785982849], [-75.20183425804929, 39.957872636352754], [-75.20195465540273, 39.95715039346624], [-75.20211564815075, 39.9563775533588], [-75.20227410024071, 39.95563137506652], [-75.20242872567167, 39.95487206779536], [-75.20493395028417, 39.95518253615201], [-75.20627514003934, 39.95534885213713], [-75.20743601295325, 39.955494992080155], [-75.2081284652613, 39.95557966630101], [-75.20860052207796, 39.95563794179296], [-75.20902166889157, 39.95568856536521], [-75.20948109276688, 39.955744379668474], [-75.20989899490549, 39.95580099729136], [-75.21047643999862, 39.95587085889744], [-75.21152003707512, 39.95600154425636], [-75.21349888053125, 39.95624499884447], [-75.21448395011627, 39.95636717836012], [-75.21547238743408, 39.95649087345359], [-75.21748321535274, 39.95674015237582], [-75.21942250421269, 39.95698073769441], [-75.22131207548387, 39.95721387899676], [-75.22139876232934, 39.95722829373262], [-75.2212452105831, 39.95798512282026], [-75.22108669773192, 39.95873296666356], [-75.22092091673352, 39.959506370957484], [-75.22190949565909, 39.95962711754266], [-75.22239684004771, 39.95968156550928], [-75.22290106608362, 39.95974637621446], [-75.22388433780017, 39.95986316309301], [-75.22421322127714, 39.95990071720949], [-75.22477258922517, 39.9599762940573], [-75.22486806570537, 39.960006758007836], [-75.22620947880866, 39.96016033418035], [-75.22685117094453, 39.96024000475525], [-75.2274440501019, 39.96031227707355], [-75.22797617665447, 39.96037854276966], [-75.22864645665969, 39.96046483588109], [-75.22831950768749, 39.96203465368984], [-75.22767177235322, 39.961956483381094], [-75.22716073419876, 39.96189346163298], [-75.22651888853692, 39.96181383932179], [-75.22585395073848, 39.96172902647333], [-75.2252934967573, 39.96165947884321], [-75.2245421302761, 39.961568838865276], [-75.22355198385931, 39.96144479703293], [-75.22256784792319, 39.96132161960473], [-75.22206583290657, 39.96125897645551], [-75.2215794161934, 39.96119931296838], [-75.22059247702725, 39.961075874663585], [-75.21965042702726, 39.960957506554315], [-75.21943900765564, 39.96094235593091], [-75.21969376220423, 39.96252450315264], [-75.21976953596858, 39.96301130841067], [-75.22004478056664, 39.963820869515125], [-75.22011148713864, 39.96436075060387], [-75.2201709963554, 39.964845529988835], [-75.21836098136826, 39.965028922370635], [-75.21829467559881, 39.96449083190423], [-75.21822793170311, 39.96395720516577], [-75.21637741936549, 39.96409569079961], [-75.21516294851831, 39.964189471409064], [-75.21470015168937, 39.96422115065583], [-75.21419559539217, 39.964259332972176], [-75.21370729354383, 39.964296283029626], [-75.21322853775273, 39.96433250864373], [-75.2127867388542, 39.96436595542734], [-75.21209161919754, 39.96441879936685], [-75.21140953138075, 39.96447065434011], [-75.21128676076057, 39.964479711314404], [-75.21080409595272, 39.96451449157884], [-75.20934412865095, 39.96462231322039], [-75.20869868242663, 39.96467001342774], [-75.20807891433056, 39.964718917722486], [-75.20729978319541, 39.96477937262457], [-75.20670917121294, 39.96482793900861], [-75.20646964200016, 39.96489331119399], [-75.2059006436575, 39.96454103570059], [-75.205858304662, 39.964648011889416], [-75.2054944052011, 39.96499566213355], [-75.20546777001317, 39.965091006712015], [-75.204539731006, 39.96451398788996], [-75.20387347516974, 39.964090178702016]]]}}, {"id": "1490", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.19577203856599, 39.975054075529776], [-75.19602558226443, 39.974877551471934], [-75.19627710586025, 39.97469896547529], [-75.19652544619335, 39.97451751410253], [-75.1967697217073, 39.9743329092601], [-75.19700906804599, 39.97414484161994], [-75.19724347719469, 39.97395315065537], [-75.19747675915838, 39.97375745082089], [-75.19769427033506, 39.9735526068525], [-75.19776267748833, 39.97347047176852], [-75.19796973622626, 39.97326048165323], [-75.19817373991863, 39.97304817344242], [-75.1983798864382, 39.972837364965635], [-75.19881896232208, 39.97243574288791], [-75.19906596864303, 39.97225320340784], [-75.19933172317984, 39.972085236761686], [-75.19960966378463, 39.9719314879363], [-75.19990132964449, 39.9717951923184], [-75.20020658391334, 39.97167432130029], [-75.2005167783354, 39.97156188994687], [-75.2008300396192, 39.97145629876278], [-75.20114834189835, 39.97135896109926], [-75.20146991414583, 39.97126904739688], [-75.20179527631387, 39.97118609164044], [-75.20212582727534, 39.97111679138892], [-75.20246146679227, 39.97106857044634], [-75.20280217542738, 39.97103558441613], [-75.2031438609358, 39.971018855159635], [-75.20348653944679, 39.97101458528833], [-75.20373778519559, 39.9710135329684], [-75.20372444604058, 39.970940143918334], [-75.20372256837196, 39.97092991009466], [-75.20365192712485, 39.970536711194484], [-75.20363324664117, 39.970432344209144], [-75.20360222096758, 39.970262038082865], [-75.20418303772176, 39.97042967509766], [-75.20430221981374, 39.970442136607105], [-75.2047464601045, 39.97038654791297], [-75.20529383804944, 39.97032724144262], [-75.20584308660476, 39.97027633607101], [-75.20664160684923, 39.97018882439134], [-75.2071715109633, 39.970134859313845], [-75.20822768613749, 39.97001688531799], [-75.20920137525263, 39.969908239553455], [-75.21013836492584, 39.969805350585304], [-75.2115166052264, 39.96965576250502], [-75.21133586950056, 39.96872707840927], [-75.2121349858603, 39.96922915050159], [-75.21264181899252, 39.96953740234732], [-75.21293442563362, 39.96971390666676], [-75.21390007921819, 39.970296393465695], [-75.2143190588701, 39.9705434928283], [-75.21454241075261, 39.970684580300244], [-75.21468810542842, 39.970774549650116], [-75.21499017096943, 39.9709560607137], [-75.21608600831708, 39.97161938133278], [-75.21743760573125, 39.9724356476891], [-75.21776807540628, 39.97262800884351], [-75.21841780939198, 39.97302514811818], [-75.21907411728215, 39.97287838793546], [-75.2220108970832, 39.97225433167098], [-75.22261453670089, 39.97212115051214], [-75.22270951231486, 39.972650541751854], [-75.22282886363037, 39.97331979648558], [-75.22294655328514, 39.97398536539481], [-75.22303908602558, 39.97452647937162], [-75.22298525071733, 39.97459343456398], [-75.22247529477978, 39.97521309980976], [-75.22198187468743, 39.975783466924824], [-75.21947213701459, 39.980017477693615], [-75.22145350543394, 39.980750514692936], [-75.22248973525193, 39.98113780900851], [-75.22315828235908, 39.98138230866424], [-75.22354641209124, 39.98147582405985], [-75.22367524703087, 39.98151036448287], [-75.22379084515117, 39.98152112708002], [-75.22406693790319, 39.9815094868596], [-75.22516370803253, 39.98133793425713], [-75.22620352276934, 39.98160917075345], [-75.22611408407533, 39.98131069652115], [-75.22598506456495, 39.98110344713947], [-75.2263870091941, 39.98045849853005], [-75.22671454102148, 39.97993866394432], [-75.22720762006905, 39.98011875105071], [-75.22769983954039, 39.98030167955546], [-75.22815173844755, 39.980464672815025], [-75.22879489571393, 39.98070223660668], [-75.22889328745423, 39.98044163690388], [-75.22894558230313, 39.98018044797911], [-75.22896768418192, 39.97991725419923], [-75.22894765996324, 39.97965218987119], [-75.22883996273082, 39.9794043519961], [-75.2286785702593, 39.97916872493492], [-75.22847274984605, 39.97896106777772], [-75.2282261652399, 39.97877771624851], [-75.22797358650385, 39.97859771478237], [-75.22828221080628, 39.97871136403067], [-75.228590933066, 39.97882486230994], [-75.22889973957359, 39.978938231843195], [-75.2292086142462, 39.97905149570235], [-75.22951753986443, 39.97916467603367], [-75.22982650974122, 39.97927779521482], [-75.2301355031137, 39.97939087621543], [-75.23044450507051, 39.979503942133874], [-75.2307535042112, 39.979617016145696], [-75.23106248696217, 39.97973011687391], [-75.23137143593905, 39.97984327096704], [-75.23168033629835, 39.97995649972348], [-75.23198917553752, 39.980069824493164], [-75.23229793874704, 39.980183268375384], [-75.23260660981407, 39.9802968553442], [-75.23291517861085, 39.980410605900985], [-75.23322362317393, 39.98052454389186], [-75.23353193685344, 39.98063869079578], [-75.23384010002718, 39.98075307051039], [-75.2339591056347, 39.98079736322357], [-75.23414810250182, 39.980867705338326], [-75.23445592365209, 39.980982614650586], [-75.2347635565961, 39.98109782622857], [-75.23507097953902, 39.98121335941804], [-75.235377642931, 39.981330075243065], [-75.23568320596944, 39.981448511344695], [-75.23598789645939, 39.98156830421485], [-75.23629195306646, 39.98168908157105], [-75.23659561047401, 39.98181048365511], [-75.2368991025902, 39.9819321398775], [-75.23720266549203, 39.982053684198895], [-75.23750653404826, 39.98217475145208], [-75.23781094088199, 39.98229497371522], [-75.23811612436292, 39.98241398589309], [-75.23842231593397, 39.98253142003323], [-75.2386133941012, 39.98260314982133], [-75.23804864757997, 39.983543684060464], [-75.23724158388768, 39.98484131042433], [-75.23706281145029, 39.985185697132245], [-75.2370231010044, 39.98540656857109], [-75.23703091898771, 39.98562024376696], [-75.23710876338059, 39.98601125589341], [-75.23717648623028, 39.98644054310879], [-75.23725085241536, 39.98680733861259], [-75.2373285938853, 39.98720332445263], [-75.23739313190914, 39.98757243465119], [-75.23748943446314, 39.98799758547654], [-75.2375631490965, 39.988463737913676], [-75.23765550028003, 39.98890523796826], [-75.23564564878774, 39.98930950082446], [-75.23324262339091, 39.989800273494986], [-75.23338610249759, 39.990219535799035], [-75.23352857182715, 39.9906545575648], [-75.23359749986912, 39.99120535295872], [-75.23367398957797, 39.99188356603107], [-75.2323148913867, 39.991816057524225], [-75.23106116474393, 39.9917654288331], [-75.22979802627162, 39.99168345486216], [-75.2280883871952, 39.991602844416676], [-75.22657305587288, 39.99151720367018], [-75.2256632571371, 39.99147004260671], [-75.22566378621964, 39.991668073566466], [-75.22566509729694, 39.99193131606456], [-75.22566638868767, 39.99219455272114], [-75.22566786217705, 39.99245777535982], [-75.22567059622207, 39.99272099508398], [-75.22567375670262, 39.99298421427232], [-75.22567642287149, 39.993247433398864], [-75.22567775345844, 39.99351065738886], [-75.22567828034347, 39.99377388442448], [-75.22567836679947, 39.994037110781896], [-75.22567805954006, 39.99430034019153], [-75.2256773950464, 39.994563568049735], [-75.22567642371229, 39.994826793662824], [-75.22567455961851, 39.99509002216579], [-75.22567010232133, 39.99535327112508], [-75.22566580829185, 39.995616507455004], [-75.22566493201093, 39.995879695505955], [-75.22566923068271, 39.99614311989164], [-75.22568472491396, 39.99640629852711], [-75.22572752377033, 39.996666869140945], [-75.22579555639331, 39.996925115022684], [-75.22586692375164, 39.99718275752846], [-75.22594031130318, 39.99743986415371], [-75.22601504426356, 39.99769675072328], [-75.22608608367426, 39.997954372323946], [-75.22616242542166, 39.99821093374118], [-75.22625254080789, 39.998464825518425], [-75.22634869197259, 39.99871762814741], [-75.2264516454373, 39.99896873497252], [-75.2265638188994, 39.9992172737964], [-75.22669187430814, 39.9994616214683], [-75.22683366659172, 39.99970118297861], [-75.22698380731825, 39.99993764724526], [-75.22713826559976, 40.00017261411573], [-75.22738074986843, 40.00054046140214], [-75.2274782674168, 40.00074008910896], [-75.22641469824666, 40.001239711627804], [-75.22362994305126, 40.00254779807926], [-75.22069649209475, 40.003925603511995], [-75.21922467833316, 40.004616846915006], [-75.2183458956281, 40.005029556222254], [-75.21577504285966, 40.006236852254894], [-75.21457036263607, 40.00680254793726], [-75.21375540196738, 40.0071470494259], [-75.2130457386327, 40.00744703273062], [-75.21076679598913, 40.00855247204905], [-75.20926651565273, 40.00948811598932], [-75.20838974912195, 40.01004762447749], [-75.20810571601615, 40.010233172363904], [-75.20802453324175, 40.01028672353252], [-75.20794649428309, 40.010338203472806], [-75.20786763334567, 40.0103882568974], [-75.20758817071156, 40.010589319998054], [-75.20726214950554, 40.01076818862627], [-75.20725181468926, 40.01087702961448], [-75.20723867124346, 40.01101543243763], [-75.20699226425197, 40.01119720508264], [-75.20613902163231, 40.01182662245913], [-75.20605558240162, 40.01177134883842], [-75.20598118504968, 40.011722063535636], [-75.20583087553283, 40.01162249423849], [-75.20556089846534, 40.01144637353623], [-75.20493269018309, 40.011036554083525], [-75.20411797328548, 40.01067887127354], [-75.20278453559125, 40.0101681675687], [-75.20096916234523, 40.0095052402321], [-75.1995671662532, 40.00910618352392], [-75.19798662998474, 40.00856163000309], [-75.19741007533945, 40.00838739067628], [-75.19662197462642, 40.00814921442729], [-75.19523788704916, 40.00776465223345], [-75.1940657933079, 40.007370640630775], [-75.1931745133191, 40.006946139642274], [-75.19282909227685, 40.006720041632185], [-75.19248650438152, 40.00648631915835], [-75.19210817108346, 40.0059917246091], [-75.19202407067375, 40.00588177689373], [-75.19175386735485, 40.005238965345704], [-75.1915353587339, 40.00420107841301], [-75.19141944287965, 40.002882461289495], [-75.19156264214371, 40.00079131936958], [-75.19173829317083, 39.9995496686985], [-75.19209975304122, 39.99825612471282], [-75.19248952170433, 39.997189339779744], [-75.19387315409962, 39.99538054058539], [-75.19391207372766, 39.99533311331511], [-75.19493374887762, 39.99408810699247], [-75.196736443141, 39.992628239307074], [-75.19756018726912, 39.99169754451703], [-75.19966543084527, 39.98983487779526], [-75.20081185837654, 39.98869997403805], [-75.2026800703466, 39.98695844335217], [-75.20360707217432, 39.986030905550386], [-75.20387968529906, 39.985634231063315], [-75.20422970568241, 39.98512491133937], [-75.20439335041645, 39.9841945852112], [-75.2042911849591, 39.98348477637556], [-75.20402042808387, 39.98285613357483], [-75.20322001689851, 39.9816355506211], [-75.20149254570359, 39.98036607676244], [-75.19968966493572, 39.97939206820288], [-75.19768041890876, 39.978526648404426], [-75.19616318765962, 39.9777853486629], [-75.19500983450119, 39.97715118683491], [-75.19422140431261, 39.976595895992624], [-75.19395195788799, 39.976275795675406], [-75.19316767010415, 39.97534404688133], [-75.19423227229858, 39.97523277524366], [-75.19435026987784, 39.97522044197228], [-75.19438620060323, 39.97521668577702], [-75.19440416945793, 39.975214808203454], [-75.19461061691396, 39.97519322869778], [-75.1946275299596, 39.97519146092737], [-75.19466135487802, 39.97518792535294], [-75.19489863948688, 39.97516312254212], [-75.19541223775175, 39.97510346411268], [-75.19575612004209, 39.97506493243013], [-75.19577203856599, 39.975054075529776]]]}}, {"id": "2000", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-75.18910493952532, 39.920684126443284], [-75.18825459471665, 39.919754693708725], [-75.18803994232465, 39.919456388448246], [-75.1877964349535, 39.91925229894708], [-75.18743741577522, 39.91905085589099], [-75.18735445155635, 39.91900684701349], [-75.18696229271059, 39.918867726114804], [-75.1860247859152, 39.91869097912871], [-75.18510032904231, 39.918554256265494], [-75.18440337252183, 39.91844380213035], [-75.18282151039273, 39.918233589219184], [-75.18279356431404, 39.9183597213585], [-75.18251211277983, 39.91963000802967], [-75.18222126839873, 39.92087175608389], [-75.18141846905199, 39.92077361841488], [-75.18123535356035, 39.92073887462593], [-75.18089486899946, 39.920705255663606], [-75.1803152087144, 39.92062101252252], [-75.17976291264522, 39.92055068325926], [-75.17952902810964, 39.92052150129681], [-75.17926924046455, 39.920489878413086], [-75.1787385022326, 39.92041614683869], [-75.17795486096878, 39.92030994298901], [-75.17716829123836, 39.920219553776164], [-75.17636766741929, 39.92010990347405], [-75.17561598837206, 39.92001434807827], [-75.17504683556119, 39.91994488243412], [-75.1745883463195, 39.919885815943516], [-75.17403428189978, 39.91981077618362], [-75.1734928793705, 39.91974405438717], [-75.17300577989006, 39.91968075076979], [-75.17244736593929, 39.919622458981124], [-75.1719403514858, 39.91954497164647], [-75.17148785787545, 39.91948650588742], [-75.17085501498846, 39.91941145488218], [-75.17071125143731, 39.91939499497743], [-75.17044815178282, 39.920640631710256], [-75.17017980089858, 39.92188608861979], [-75.16988103061077, 39.92313243740692], [-75.16962817132318, 39.92437326570684], [-75.16936345812617, 39.9255916618934], [-75.16858370524805, 39.925735735040625], [-75.16827005616757, 39.92579796641468], [-75.16814853042906, 39.92587633156481], [-75.16735196028873, 39.92658051443639], [-75.16707544714461, 39.9267996097307], [-75.16693484483235, 39.92696974221468], [-75.16680492486368, 39.9270372236799], [-75.16607242906038, 39.92766380901158], [-75.16561566805156, 39.92804872141151], [-75.16499105619756, 39.92860420597811], [-75.16491618038036, 39.9286972752806], [-75.1647192203154, 39.928806524439224], [-75.16350489234422, 39.92983116343739], [-75.16338146889682, 39.92986525821064], [-75.16309117136602, 39.92979380701216], [-75.16153046192896, 39.929591284894535], [-75.15995614612446, 39.92938155204747], [-75.15839497176025, 39.929178905161756], [-75.15848925602083, 39.92875090689285], [-75.15857052894737, 39.92838214301248], [-75.15866709929699, 39.92795628486429], [-75.1571168474594, 39.92775353680199], [-75.15554667164844, 39.92755123944602], [-75.15563576259312, 39.92712161735258], [-75.15572893564023, 39.92674641991947], [-75.15581744065317, 39.92632687949197], [-75.1559164878003, 39.92589050049036], [-75.15599714266362, 39.92553379424899], [-75.15609589958217, 39.92510492938023], [-75.15618955933125, 39.92467252257764], [-75.15627477264952, 39.924315763437455], [-75.15637192114352, 39.923887217923706], [-75.15645544526281, 39.92347644043542], [-75.1565294138035, 39.92314220999085], [-75.15662765076334, 39.92268960638305], [-75.15662762676548, 39.92268960326718], [-75.15672342494948, 39.92224299041257], [-75.156796516091, 39.921888314809685], [-75.15689398554146, 39.92145832561094], [-75.15699075641116, 39.92100848552829], [-75.1570547827128, 39.920717378930306], [-75.15716320987288, 39.92021274919351], [-75.15743363710435, 39.91896268003674], [-75.15799330145335, 39.919026931126155], [-75.15846220388505, 39.919093210586034], [-75.15899792339451, 39.919164686799725], [-75.15927770206909, 39.917915040802065], [-75.15980867343593, 39.91798471762554], [-75.16027622489918, 39.918045150410435], [-75.16082734368273, 39.918117892288045], [-75.16076687369943, 39.91835495135038], [-75.16054149074061, 39.919362121589884], [-75.16108816764115, 39.91943533199412], [-75.1615455351176, 39.91949156402772], [-75.16211103770841, 39.91956753173947], [-75.1626550419118, 39.91962698782571], [-75.16314273163647, 39.919693472771144], [-75.16349120843111, 39.919736838873085], [-75.16369594368183, 39.91975159718489], [-75.16423150848532, 39.919836010851256], [-75.16471654044618, 39.91989829974017], [-75.1652600965997, 39.919967040755616], [-75.1658101777234, 39.92004322536124], [-75.16627794530147, 39.92010526444298], [-75.16682969221823, 39.9201734806232], [-75.16673306316912, 39.92061961672358], [-75.16664636782535, 39.92098735572832], [-75.16656347213839, 39.92141911548795], [-75.16646623869181, 39.921855197797015], [-75.16637595907936, 39.92223483130462], [-75.16628590058272, 39.922669253483235], [-75.16628592461213, 39.92266925656547], [-75.16637598363288, 39.92223483185788], [-75.16646626324525, 39.92185519835024], [-75.16656349669164, 39.92141911604116], [-75.16664639237847, 39.9209873562815], [-75.16673308772206, 39.920619617276735], [-75.16682971677106, 39.92017348117634], [-75.16627796985424, 39.92010526499624], [-75.16581020227612, 39.9200432259146], [-75.16526012115244, 39.9199670413091], [-75.16471656499884, 39.91989830029376], [-75.16423153303799, 39.91983601140497], [-75.16369596823444, 39.91975159773872], [-75.1634912329837, 39.91973683942695], [-75.16314275618905, 39.919693473325076], [-75.16265506646441, 39.91962698837973], [-75.16211106226093, 39.91956753229362], [-75.16154556083924, 39.9194915646084], [-75.16108819219363, 39.919435332548495], [-75.16054151646225, 39.91936212217078], [-75.1607668982515, 39.91835495190483], [-75.1608273694039, 39.918117892868885], [-75.16027625062033, 39.9180451509914], [-75.15980869915705, 39.91798471820661], [-75.15927772779011, 39.91791504138326], [-75.15955114724184, 39.916672668420425], [-75.15901050678815, 39.91659532384449], [-75.15851278990272, 39.91653998747], [-75.1579820989198, 39.91647405353075], [-75.15828402310784, 39.91507994823962], [-75.15809548528345, 39.91504867542346], [-75.15774661335739, 39.91500305785408], [-75.1574854285505, 39.91496008609266], [-75.1577672274255, 39.91370112757994], [-75.15801944065777, 39.912463032257946], [-75.15863024542935, 39.91254226015127], [-75.15920328854268, 39.912616069573936], [-75.15977709165502, 39.91269179622573], [-75.16039229135106, 39.912756864337155], [-75.16053226325738, 39.91210547694309], [-75.16069826272138, 39.9113696229974], [-75.16070398082313, 39.911344089352966], [-75.16078293361882, 39.91098383183351], [-75.16079173327198, 39.91094368029094], [-75.16082410658915, 39.91079596694414], [-75.16095021119766, 39.91021562302511], [-75.16121812721481, 39.909011294700676], [-75.1618954897069, 39.90583111744914], [-75.16230752445159, 39.90394455056542], [-75.16464852646868, 39.887612504005034], [-75.16217129389965, 39.88290732917671], [-75.16418700617535, 39.882571043062725], [-75.16699512077287, 39.88202987590259], [-75.16756365527526, 39.88198126524963], [-75.172144092486, 39.88128679826255], [-75.17386794678251, 39.88112226192141], [-75.1750587094433, 39.881127178541576], [-75.17928749312532, 39.88076323635661], [-75.18309485629912, 39.88087152581279], [-75.18626600338732, 39.880776404069444], [-75.18833057628198, 39.88023399085093], [-75.19116833749403, 39.87895720171348], [-75.19324988488377, 39.878184668892864], [-75.19423258569884, 39.881954784067574], [-75.19435105676118, 39.88417912439962], [-75.1947442202182, 39.88715958381745], [-75.1950055405623, 39.88900502992013], [-75.195377006374, 39.890852930227844], [-75.19664161307446, 39.892154693323114], [-75.19734849868537, 39.892554200508876], [-75.19791884605132, 39.89287653536392], [-75.20040917979276, 39.89358290207157], [-75.20220010194497, 39.893834988846315], [-75.2046735612974, 39.894257866007955], [-75.20643188168988, 39.89489123824661], [-75.20811681144355, 39.8955229525527], [-75.20953791229009, 39.89633275566915], [-75.21063179238031, 39.897050385553555], [-75.21157229080009, 39.89783622404864], [-75.2121105527512, 39.898285960912], [-75.2135832514153, 39.89993175325022], [-75.21405201147564, 39.90066381664515], [-75.21468644114745, 39.901880671807056], [-75.2151114782057, 39.903786283051396], [-75.21545761289784, 39.905591091598325], [-75.21569646410822, 39.90756333700614], [-75.21568364421469, 39.90889323104565], [-75.2153079210576, 39.909606617026206], [-75.21464580619211, 39.910115556509204], [-75.2135613898842, 39.91061515098194], [-75.2122790037696, 39.9107565830743], [-75.2094913839666, 39.9106099381418], [-75.20848050275646, 39.910615834252674], [-75.207216129998, 39.911012324931804], [-75.20635832065332, 39.91134706809731], [-75.20542266692576, 39.912288564423946], [-75.20470414463513, 39.91331977872765], [-75.2041088348333, 39.91449523508961], [-75.20359825025908, 39.91561596579895], [-75.20246386163328, 39.917444533142344], [-75.20194457510891, 39.91855091390986], [-75.20184462772525, 39.91925623705986], [-75.2019945286076, 39.919781946952625], [-75.20179132442954, 39.91981930807259], [-75.20006238051837, 39.92013718296255], [-75.19504651330628, 39.92101268758331], [-75.19448533530738, 39.921085070263416], [-75.1938644811039, 39.9211301915961], [-75.19249473767239, 39.9212670726349], [-75.19181991635783, 39.92138891467094], [-75.19122215402639, 39.921500199794416], [-75.19106794347522, 39.92153321049858], [-75.19081634417404, 39.92158434713675], [-75.19060146538074, 39.92162802170247], [-75.19047247264182, 39.92165423956683], [-75.1903419604548, 39.92167437759978], [-75.19015860117176, 39.92170215116822], [-75.19006058289085, 39.9217171307119], [-75.18981258718762, 39.92139934007993], [-75.18941869879913, 39.921007844650426], [-75.18932450204431, 39.920914220147004], [-75.18916422210287, 39.92074625237124], [-75.18910493952532, 39.920684126443284]], [[-75.17524024063906, 39.88359684844091], [-75.17516853473141, 39.882621331116916], [-75.1750587094433, 39.881127178541576], [-75.17524024063906, 39.88359684844091]], [[-75.16453216778805, 39.92326050884133], [-75.164619773354, 39.922906415015476], [-75.1647092611619, 39.922467011026306], [-75.16470923712359, 39.922467007942586], [-75.16461974880022, 39.92290641446184], [-75.16453214323411, 39.923260508287704], [-75.16444168858514, 39.923703060877436], [-75.164441712585, 39.92370306414265], [-75.16453216778805, 39.92326050884133]], [[-75.17541284370118, 39.88594488758027], [-75.17552197931987, 39.88742945130192], [-75.17566105278485, 39.88855858992095], [-75.175506636981, 39.887220747272444], [-75.1754172425525, 39.88600472601262], [-75.17541284370118, 39.88594488758027]]], [[[-75.17703462385559, 39.9282791854793], [-75.17713716654389, 39.927843969737246], [-75.17722299981469, 39.92742547305531], [-75.177302928636, 39.927069538127725], [-75.17740166500627, 39.92662679085603], [-75.17794948006994, 39.92669611269314], [-75.17840805567783, 39.92674854414239], [-75.17897092153989, 39.926830360441656], [-75.17961190138833, 39.926913714072676], [-75.18024882745244, 39.92700347944945], [-75.18089407838447, 39.92707475519641], [-75.18143433399078, 39.92714252943958], [-75.18192364877922, 39.92721051903828], [-75.18247970745371, 39.92727098722562], [-75.18307002762307, 39.9273473187791], [-75.18356727097928, 39.927414552536376], [-75.18413572449033, 39.92748839072143], [-75.18469356535304, 39.927563973577286], [-75.18518707344323, 39.9276293218686], [-75.18577448530856, 39.92769634346894], [-75.18599144062982, 39.92772824384543], [-75.18685882004087, 39.92783214017275], [-75.18759758428777, 39.927927613924204], [-75.18918145487082, 39.92813040403253], [-75.19074422958964, 39.92832825837987], [-75.19066859300911, 39.92866941676119], [-75.19060233030642, 39.928978118248274], [-75.19053543273527, 39.92926649229742], [-75.19047474449467, 39.92955977394741], [-75.1902220487094, 39.93078038680986], [-75.19012731576615, 39.931220084595004], [-75.1899493618791, 39.932003488518205], [-75.18968857636325, 39.93322864037063], [-75.1894169526017, 39.93443037137289], [-75.18931761794046, 39.934867517007774], [-75.18923713517907, 39.93524427892119], [-75.18914801425663, 39.93567262079523], [-75.18906265917072, 39.936096819177195], [-75.18897800978061, 39.93645812481999], [-75.18888557125193, 39.93688807195146], [-75.18732760299982, 39.93668022889355], [-75.18575640786506, 39.93648392872858], [-75.18572790895732, 39.93648034793651], [-75.18549993635563, 39.93759827496855], [-75.18541643376375, 39.93795369886082], [-75.1853918963181, 39.93805886479759], [-75.18530335339072, 39.93851578013453], [-75.18527101941457, 39.938663579602974], [-75.18523483849769, 39.938824544195754], [-75.18516814972767, 39.93911548563741], [-75.18495610112747, 39.94008534101652], [-75.18314107292235, 39.93989685848033], [-75.18149528329731, 39.93968854325546], [-75.17983891181979, 39.939479802181104], [-75.17825196738539, 39.93926905726782], [-75.17631149645452, 39.93902274518719], [-75.1747518511938, 39.93882735859993], [-75.17465110370284, 39.93930143241136], [-75.17457705552728, 39.93964170153694], [-75.17448140136361, 39.94005729581756], [-75.17437734450827, 39.940527727135084], [-75.1742728042991, 39.941022763217234], [-75.17418774665221, 39.941422116658075], [-75.17410510399097, 39.94179478942147], [-75.17388527619204, 39.942801545330546], [-75.17378342812157, 39.94329297174073], [-75.17366854988926, 39.94377646481941], [-75.17210558885188, 39.94357807692164], [-75.17102771359527, 39.94344147559618], [-75.17053366751539, 39.94338134463477], [-75.16999812622305, 39.943311690588054], [-75.16973017549833, 39.943278872334744], [-75.16933965959774, 39.9432267595552], [-75.1689581833847, 39.94318598990012], [-75.16826142194567, 39.943096944520875], [-75.16781562182085, 39.94304621667785], [-75.167370646947, 39.94299618233207], [-75.16624470549259, 39.94285516914599], [-75.16577939661354, 39.94278638440148], [-75.1656275811625, 39.94278599843719], [-75.16571753578864, 39.942406443210984], [-75.1658325919401, 39.941804609729935], [-75.16605984929198, 39.940800978519384], [-75.16613388736738, 39.94042214389958], [-75.16622545223109, 39.94003471465053], [-75.16643477314504, 39.939056811917006], [-75.1667135991546, 39.937845795024714], [-75.16686335964184, 39.93718123442665], [-75.16695567057104, 39.93673333098223], [-75.16716930149295, 39.93567732164193], [-75.16749496992483, 39.934114489113455], [-75.1677692037678, 39.932922573067884], [-75.16805145038389, 39.93171378794974], [-75.16831961966793, 39.93048166628569], [-75.16856827208015, 39.92925361082999], [-75.16869084230184, 39.928644037253655], [-75.16882811944834, 39.92803500276149], [-75.16895773764685, 39.92803667143668], [-75.1695817099415, 39.928134065918755], [-75.17004997262877, 39.92818833357387], [-75.1705936331929, 39.92826682605035], [-75.17113787546292, 39.92833001716304], [-75.1715962274586, 39.9283885534335], [-75.17215552066993, 39.9284642408782], [-75.17269999642133, 39.9285213470136], [-75.17316209167474, 39.92858897664198], [-75.17372885312534, 39.92866167871712], [-75.17529040837256, 39.92886827026287], [-75.17587953728179, 39.928942223357396], [-75.17633522047532, 39.92900112389839], [-75.17687231172798, 39.92906292240617], [-75.176962359652, 39.92864116235151], [-75.17703462385559, 39.9282791854793]]]]}}, {"id": "2010", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13322440629997, 39.955236147241465], [-75.1344356888728, 39.953037480013485], [-75.13487778815114, 39.95207597951802], [-75.13520600618953, 39.95113696811443], [-75.13544726197281, 39.95042005246468], [-75.13560778262406, 39.94992737070598], [-75.13567169491284, 39.949731206468535], [-75.13574097388202, 39.949518565833074], [-75.13579398402418, 39.94929479886762], [-75.13587870142153, 39.948937185527214], [-75.13594118243584, 39.94867343873226], [-75.13603708917128, 39.9482685854839], [-75.13604837698473, 39.948061401594224], [-75.13613742242406, 39.94767452595673], [-75.13621470851473, 39.947143308464526], [-75.13623992722759, 39.946951593642225], [-75.13628774954744, 39.94658805398638], [-75.13630367365599, 39.946174054516646], [-75.13631648281041, 39.94584103484029], [-75.13628888053894, 39.94555935825632], [-75.13625956961582, 39.94526023672826], [-75.13622743114342, 39.94493225310091], [-75.13617017694928, 39.94459268749368], [-75.13609880806146, 39.94416940403434], [-75.13602548991437, 39.94373455467942], [-75.13596657112032, 39.94334674795433], [-75.13590339340739, 39.9429309105428], [-75.13586057280936, 39.942649055419935], [-75.13583287385052, 39.94245429469849], [-75.13579205954412, 39.94216731427943], [-75.13573708175244, 39.941590929777455], [-75.13571307524438, 39.94124610547081], [-75.13569922406504, 39.9407602337179], [-75.14238644004878, 39.94075761194185], [-75.14406092687808, 39.94097303772356], [-75.14503205283438, 39.94109993841964], [-75.14566790967055, 39.94118234959344], [-75.14674352614593, 39.941311595615886], [-75.14760480925904, 39.94142363805757], [-75.14809775404471, 39.94148751611526], [-75.1491806609235, 39.941621355500764], [-75.14964727928266, 39.94167797582284], [-75.15040769943502, 39.941775750993735], [-75.15075689577483, 39.94181980041291], [-75.15118943709187, 39.9418784037736], [-75.15156111524641, 39.94192342684312], [-75.15233429052472, 39.94201626298087], [-75.15391769281345, 39.94220641085683], [-75.15548951094686, 39.94240817980438], [-75.15627145241282, 39.9425071071497], [-75.15667130336898, 39.94255123147651], [-75.157059098587, 39.94259773085277], [-75.15757279289045, 39.94266678164288], [-75.15804381134129, 39.942731291387254], [-75.15863139924642, 39.94280223427386], [-75.15910447563164, 39.94286101689686], [-75.15977873987659, 39.94294669627186], [-75.16020566438269, 39.942998326765306], [-75.16137886722338, 39.94313924430938], [-75.16178373559607, 39.94318730763522], [-75.1633555074793, 39.943379983595946], [-75.16413160503915, 39.943480137863254], [-75.16437304156791, 39.94351717665923], [-75.16542172720443, 39.94364696152462], [-75.16553584631168, 39.94320168658694], [-75.1656275811625, 39.94278599843719], [-75.16577939661354, 39.94278638440148], [-75.16624470549259, 39.94285516914599], [-75.167370646947, 39.94299618233207], [-75.16781562182085, 39.94304621667785], [-75.16826142194567, 39.943096944520875], [-75.1689581833847, 39.94318598990012], [-75.16933965959774, 39.9432267595552], [-75.16973017549833, 39.943278872334744], [-75.16999812622305, 39.943311690588054], [-75.17053366751539, 39.94338134463477], [-75.17102771359527, 39.94344147559618], [-75.17210558885188, 39.94357807692164], [-75.17366854988926, 39.94377646481941], [-75.17524211881907, 39.94397053003853], [-75.17716958712774, 39.94421095754197], [-75.17876636292688, 39.944401920202495], [-75.1804101923637, 39.94460311929231], [-75.18061150719751, 39.94463209059361], [-75.18095102500803, 39.94467119483289], [-75.18278116485943, 39.94490703972125], [-75.1833493200888, 39.94497731916542], [-75.18388742182482, 39.94503666902186], [-75.18500788589968, 39.94517971766221], [-75.18570281208814, 39.945277339313236], [-75.18568688960681, 39.946160001890966], [-75.18591378202936, 39.9462198103695], [-75.18616626780558, 39.94640323864336], [-75.18687020015383, 39.94691457163152], [-75.1867677265549, 39.94698153699119], [-75.18638192557506, 39.947257678409755], [-75.18466080412703, 39.948491032151125], [-75.18367648239071, 39.949233166955395], [-75.18301374576069, 39.949741926184196], [-75.18243483863459, 39.95046482009293], [-75.18177228119845, 39.95145470656806], [-75.18174172932771, 39.95152048653826], [-75.18125186576778, 39.95257513323569], [-75.1810342474327, 39.952999285513314], [-75.1804479277613, 39.95414203879143], [-75.18031091629639, 39.95448418419493], [-75.18018395822202, 39.954801220932175], [-75.17989950342928, 39.955410561002644], [-75.17986268049417, 39.95548943951723], [-75.17956689482352, 39.95612304155624], [-75.17952364866278, 39.956215676865845], [-75.1793645489595, 39.957018719111204], [-75.17929516795142, 39.957880374074975], [-75.17947873432696, 39.95886090526811], [-75.17983899226007, 39.95978878931603], [-75.1799758297001, 39.96001027156133], [-75.18005107995222, 39.960132068330665], [-75.1802202153056, 39.960405820580924], [-75.18107508428989, 39.96162779881066], [-75.18195851251086, 39.962581540396314], [-75.18287764460733, 39.96356437420266], [-75.18347225828724, 39.964341536181614], [-75.18354554441063, 39.96443732115239], [-75.18364873769167, 39.96457219229305], [-75.18435660843396, 39.965550289347135], [-75.18484922326599, 39.96614149173921], [-75.18559269656258, 39.96690811198944], [-75.18112177540891, 39.96746359961289], [-75.17968478300124, 39.96741740767767], [-75.18016368176961, 39.967794395545106], [-75.18006282011629, 39.968416647134006], [-75.17991460237576, 39.969090943561284], [-75.17983743980078, 39.96944775366464], [-75.17977598962271, 39.96969353989304], [-75.17975488906876, 39.96981497856103], [-75.17965161686956, 39.970310272091965], [-75.17860640189194, 39.970181658250176], [-75.1780566875297, 39.97011372941456], [-75.17780650810144, 39.97120896950443], [-75.17753873030072, 39.97243855647388], [-75.17786294614987, 39.97248103137002], [-75.17786387562035, 39.97383345443092], [-75.17785267920566, 39.97424893652467], [-75.1771235341516, 39.974328234747865], [-75.17641964846224, 39.97440418538758], [-75.17593658491718, 39.97445362377925], [-75.17545671569454, 39.97450466083824], [-75.17378624577721, 39.97467888698817], [-75.17209233641867, 39.974855903415154], [-75.1704017109951, 39.97503938227979], [-75.16914490341505, 39.97516856344814], [-75.1682634491673, 39.97526019664399], [-75.1681453247881, 39.97503502447598], [-75.16805503233596, 39.97487099232693], [-75.16773195706557, 39.97432080820269], [-75.16722014897815, 39.97339870716462], [-75.16653967502313, 39.97238159742861], [-75.1662721085587, 39.972037642881524], [-75.16597289357621, 39.97160889671574], [-75.16577880145555, 39.97134049222068], [-75.16561818923037, 39.97119200249721], [-75.16531133153285, 39.97091144438554], [-75.16455516178287, 39.97081794335175], [-75.16298126830455, 39.97062420171791], [-75.16140453844403, 39.970429631873635], [-75.16056071990103, 39.970320887387665], [-75.15985341632611, 39.97022162902299], [-75.15970329166524, 39.97020311206611], [-75.15944196657915, 39.971468323386574], [-75.15923764108679, 39.97238526979513], [-75.1590577036878, 39.97320612890056], [-75.15878329590785, 39.97448373998994], [-75.15852699848782, 39.97585154506873], [-75.15822792908624, 39.97721710881816], [-75.15823962395879, 39.977281450598056], [-75.15791562606728, 39.97870886332697], [-75.15758279731992, 39.98022419451091], [-75.15725547387726, 39.98169482104445], [-75.15691577823603, 39.98322097007837], [-75.1566139097415, 39.984700031799335], [-75.15627637149069, 39.986284634879105], [-75.15540774318183, 39.98618087615382], [-75.1549397816308, 39.9861194562513], [-75.15406310987017, 39.986004580541646], [-75.15327633795096, 39.98590065219484], [-75.15248570735123, 39.98580294631227], [-75.15170235540398, 39.98570171004166], [-75.15091477997109, 39.985598532846595], [-75.14947287810017, 39.98541044376598], [-75.1493426008124, 39.98539344850191], [-75.1494332507939, 39.98496243191052], [-75.14950398760712, 39.98463024833647], [-75.14968633180648, 39.98380871779169], [-75.15001314411744, 39.98231620624612], [-75.1494428528043, 39.982242079566795], [-75.14843839356008, 39.98211158646729], [-75.14794623020516, 39.982050274322205], [-75.14745513601414, 39.981987551670095], [-75.14778251867806, 39.980496006284795], [-75.14811166218786, 39.978998965177915], [-75.14844892599797, 39.977446981252434], [-75.14875280338978, 39.97605319690573], [-75.14905919608358, 39.97462924336764], [-75.14955201707166, 39.97469444844773], [-75.15004094823418, 39.97475828200775], [-75.150231571073, 39.97478246830948], [-75.15094863392703, 39.97487344024391], [-75.15161706971416, 39.97496055307036], [-75.15191669061984, 39.973589833498096], [-75.15202353133493, 39.97310628406676], [-75.15218836742413, 39.972319593119735], [-75.15245012383737, 39.97114516194853], [-75.15257454601797, 39.970571700083724], [-75.15269159270923, 39.97005595174743], [-75.1527835009234, 39.96962440941302], [-75.1529071228886, 39.96906713671027], [-75.15301923457218, 39.968550282609826], [-75.15200070091771, 39.96829918091589], [-75.15146301021215, 39.96817620675212], [-75.15097355673184, 39.96807896736265], [-75.15051564764148, 39.96797237611294], [-75.14955850264346, 39.967733564369766], [-75.14869023776352, 39.9675176776505], [-75.14791049722622, 39.96732631826535], [-75.14714784176866, 39.96712784996928], [-75.14650478063565, 39.966842825167525], [-75.1458913161705, 39.96654816429047], [-75.14575782885368, 39.96649392862541], [-75.14490607326032, 39.96609660893821], [-75.14458633097023, 39.9659454790478], [-75.14400254301472, 39.96567103285405], [-75.14337752362562, 39.96538087912413], [-75.14252966634245, 39.9649864598312], [-75.14163139510946, 39.96457373788679], [-75.1407064227292, 39.964139708528414], [-75.13993197133192, 39.963777785249036], [-75.13975490177026, 39.963692321574484], [-75.14006138678764, 39.96273790213371], [-75.13978578774208, 39.96267383177339], [-75.13960221591503, 39.9626303517114], [-75.13929679599369, 39.96255801053774], [-75.1392220181052, 39.96254041128918], [-75.13827549450221, 39.96231762501555], [-75.13808290746044, 39.96293764490021], [-75.13717083928285, 39.962820848330665], [-75.13675691661963, 39.96276757101526], [-75.1362965206531, 39.96245264193541], [-75.13570254442688, 39.962047993115426], [-75.12908790808855, 39.96070914120397], [-75.13049522314829, 39.95959590757984], [-75.13073066711392, 39.959319392641476], [-75.1309676850371, 39.95904102734597], [-75.1310798418532, 39.9589093032834], [-75.13132845710639, 39.958569744871205], [-75.13153807571817, 39.95828344487096], [-75.13196037157967, 39.95756603590327], [-75.13226802673258, 39.95704337310769], [-75.13253209875239, 39.956570957433094], [-75.13280852508643, 39.956020214005825], [-75.13322440629997, 39.955236147241465]]]}}, {"id": "2050", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18107508428989, 39.96162779881066], [-75.1802202153056, 39.960405820580924], [-75.18005107995222, 39.960132068330665], [-75.1799758297001, 39.96001027156133], [-75.17983899226007, 39.95978878931603], [-75.17947873432696, 39.95886090526811], [-75.17929516795142, 39.957880374074975], [-75.1793645489595, 39.957018719111204], [-75.17952364866278, 39.956215676865845], [-75.17956689482352, 39.95612304155624], [-75.17986268049417, 39.95548943951723], [-75.17989950342928, 39.955410561002644], [-75.18018395822202, 39.954801220932175], [-75.18031091629639, 39.95448418419493], [-75.1804479277613, 39.95414203879143], [-75.1810342474327, 39.952999285513314], [-75.18125186576778, 39.95257513323569], [-75.18174172932771, 39.95152048653826], [-75.18177228119845, 39.95145470656806], [-75.18243483863459, 39.95046482009293], [-75.18301374576069, 39.949741926184196], [-75.18367648239071, 39.949233166955395], [-75.18466080412703, 39.948491032151125], [-75.18638192557506, 39.947257678409755], [-75.1867677265549, 39.94698153699119], [-75.18687020015383, 39.94691457163152], [-75.18735320149077, 39.94659947458651], [-75.18792294351213, 39.946227784440076], [-75.18825665527879, 39.94601007383723], [-75.18889164537305, 39.945525822624006], [-75.18939241252559, 39.94514392406182], [-75.18945882417533, 39.94508477771983], [-75.18985287188819, 39.94473383402683], [-75.19022943637438, 39.94439845576369], [-75.19067974179438, 39.943981979434184], [-75.19099136949414, 39.94369375929506], [-75.19105851370779, 39.943636688136955], [-75.19157341030997, 39.94319903601902], [-75.19177005947272, 39.94303188465246], [-75.19253116202371, 39.94259603349538], [-75.19364560318907, 39.942281245825754], [-75.19369737903752, 39.942280125631584], [-75.19386792557843, 39.94227634272461], [-75.19460271708917, 39.942260124464774], [-75.19577620044844, 39.94234286678344], [-75.19692197216327, 39.94267969748615], [-75.19795163481602, 39.94316960721573], [-75.19909313422974, 39.94360535829999], [-75.19996512413074, 39.94387946206713], [-75.20042752555308, 39.94394416737382], [-75.20080678289902, 39.9439972290549], [-75.20161442497796, 39.94396959747437], [-75.2018099014724, 39.94396290300457], [-75.2030545074157, 39.94362262812122], [-75.20329421085049, 39.94408301196562], [-75.20460489022865, 39.94395445297271], [-75.2053264864448, 39.94408111179888], [-75.20528159466483, 39.94415698142473], [-75.20537423404978, 39.94505914245293], [-75.20696015034082, 39.946662249602404], [-75.20697377705622, 39.946834461392456], [-75.20565664322592, 39.94805410681656], [-75.20516872951993, 39.94852347532274], [-75.20503323057667, 39.94853436087157], [-75.20452602474221, 39.94872922500287], [-75.20376393721541, 39.94900224732861], [-75.20301344481327, 39.9492827311201], [-75.20141211703024, 39.94976124037877], [-75.2011575334559, 39.94984044328213], [-75.20128850342793, 39.94988004314401], [-75.20148904244392, 39.94994614180677], [-75.20158528615542, 39.94997786358603], [-75.2034611695254, 39.94992521621503], [-75.20330368930523, 39.95068511881125], [-75.20319059599899, 39.9512044680973], [-75.20314128488319, 39.95142500603531], [-75.2030845024121, 39.9517468510238], [-75.2030720261769, 39.95183111529021], [-75.20295655882086, 39.952370661785295], [-75.20282802590086, 39.95297124948091], [-75.2027421473969, 39.95338532296644], [-75.20259046983514, 39.95411371494432], [-75.20242872567167, 39.95487206779536], [-75.20227410024071, 39.95563137506652], [-75.20211564815075, 39.9563775533588], [-75.20195465540273, 39.95715039346624], [-75.20183425804929, 39.957872636352754], [-75.20197181660889, 39.95917785982849], [-75.20210283042897, 39.960407347841496], [-75.20219593881716, 39.96124957541975], [-75.20223531539463, 39.961644753824054], [-75.20226648573353, 39.96194501383715], [-75.20229860475062, 39.96224817811425], [-75.20236191691136, 39.96286067235433], [-75.20237007739473, 39.962953675953656], [-75.2023726595329, 39.96305658206573], [-75.2023438055402, 39.96313896353822], [-75.2019296437978, 39.96289648722051], [-75.20076713890572, 39.9622889342618], [-75.20013716043388, 39.96196405580526], [-75.19943697827972, 39.96204337101509], [-75.19719782733475, 39.9622884094461], [-75.19574800367215, 39.962448792109484], [-75.19429825539707, 39.96260805996062], [-75.19419672896895, 39.96262383654907], [-75.19284664988015, 39.96277092904808], [-75.192517977438, 39.96280997802728], [-75.19147738285994, 39.96292171263492], [-75.19139090587306, 39.96292303772596], [-75.18993883938037, 39.96308440943466], [-75.18848694285441, 39.963249022063465], [-75.18802607863202, 39.96329535320564], [-75.1874162811373, 39.96336829040095], [-75.18674344963637, 39.96344671159169], [-75.18643859260281, 39.96348224154644], [-75.18564975042099, 39.963627954642334], [-75.18535393650671, 39.96371623344778], [-75.18521097532448, 39.9637588973525], [-75.18505348553673, 39.96382183247109], [-75.18473166794168, 39.96395043332568], [-75.18457123512407, 39.963999713871445], [-75.18444557929725, 39.96404758328842], [-75.18431281618732, 39.96410592015109], [-75.18374491579901, 39.964279560944455], [-75.18347225828724, 39.964341536181614], [-75.18287764460733, 39.96356437420266], [-75.18195851251086, 39.962581540396314], [-75.18107508428989, 39.96162779881066]]]}}, {"id": "2160", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12929415660349, 39.91128618901754], [-75.1292298762013, 39.909901268757224], [-75.12921733578632, 39.90882900645652], [-75.1292406795676, 39.9082234082292], [-75.12940513232671, 39.90663636886563], [-75.12985379169726, 39.904642217374864], [-75.13069494407777, 39.90217293283839], [-75.1327178094609, 39.897390573963655], [-75.1348696479386, 39.89311321347944], [-75.1359345703203, 39.89118734178817], [-75.13780510691831, 39.88911936827713], [-75.13961854514817, 39.88733085338345], [-75.14112646870511, 39.88593705815409], [-75.14252395122821, 39.88515388803688], [-75.14461527964127, 39.88434609605898], [-75.14617297445321, 39.88411106456714], [-75.15137971684672, 39.883817672254196], [-75.15314338339849, 39.88370461388623], [-75.15469630929877, 39.88359417687561], [-75.15636574733466, 39.883475430191595], [-75.15764030186536, 39.88338475458971], [-75.15869562216086, 39.883301027324336], [-75.15998070079377, 39.88319905781422], [-75.16218029669794, 39.88291468475379], [-75.16464852646868, 39.887612504005034], [-75.16231653121818, 39.903951906157495], [-75.1619044955441, 39.90583847214684], [-75.16114417983509, 39.90935310989714], [-75.16092399166732, 39.91038864980739], [-75.16083311410267, 39.91080332265233], [-75.16080074080156, 39.910951036001634], [-75.16071298726149, 39.91135144414386], [-75.16054253696338, 39.912112677462034], [-75.16040256514059, 39.91276406486859], [-75.15978736536962, 39.912698996812274], [-75.15921356221939, 39.91262326931161], [-75.15864051899995, 39.91254946084058], [-75.15802971298264, 39.91247023297553], [-75.15777749991067, 39.91370832832], [-75.15749570119608, 39.91496728685789], [-75.15775688603703, 39.915010258595935], [-75.15810575800695, 39.915055876134055], [-75.15829429585601, 39.91508714893332], [-75.15799237305002, 39.91648125337755], [-75.15852306406484, 39.91654718816952], [-75.15902078101126, 39.91660252449943], [-75.15956142036487, 39.91667986900045], [-75.15928800107181, 39.917922241987704], [-75.15900822138774, 39.919171887983964], [-75.15847250184508, 39.919100410918155], [-75.1580036004885, 39.91903413242698], [-75.15744393607051, 39.91896988138783], [-75.15717350899975, 39.920219950568786], [-75.15706508190462, 39.92072458031527], [-75.15700105567463, 39.921015686018734], [-75.15690428365927, 39.92146552698385], [-75.15680681543283, 39.92189551621777], [-75.15673372433726, 39.92225019182717], [-75.15663792624514, 39.922696803790075], [-75.15653968758393, 39.92314941084095], [-75.15646572025517, 39.92348364131862], [-75.15638219501982, 39.923894418787825], [-75.15637063525519, 39.92389289032411], [-75.15627477264952, 39.924315763437455], [-75.15618955933125, 39.92467252257764], [-75.15609589958217, 39.92510492938023], [-75.15599714266362, 39.92553379424899], [-75.1559164878003, 39.92589050049036], [-75.15581744065317, 39.92632687949197], [-75.15572893564023, 39.92674641991947], [-75.15563576259312, 39.92712161735258], [-75.15554667164844, 39.92755123944602], [-75.1571168474594, 39.92775353680199], [-75.15866709929699, 39.92795628486429], [-75.15857052894737, 39.92838214301248], [-75.15848925602083, 39.92875090689285], [-75.15839497176025, 39.929178905161756], [-75.15995614612446, 39.92938155204747], [-75.16153046192896, 39.929591284894535], [-75.16309117136602, 39.92979380701216], [-75.16338146889682, 39.92986525821064], [-75.16350489234422, 39.92983116343739], [-75.1647192203154, 39.928806524439224], [-75.16491618038036, 39.9286972752806], [-75.16499105619756, 39.92860420597811], [-75.16561566805156, 39.92804872141151], [-75.16607242906038, 39.92766380901158], [-75.16680492486368, 39.9270372236799], [-75.16693484483235, 39.92696974221468], [-75.16707544714461, 39.9267996097307], [-75.16735196028873, 39.92658051443639], [-75.16814853042906, 39.92587633156481], [-75.16827005616757, 39.92579796641468], [-75.16858370524805, 39.925735735040625], [-75.16936345812617, 39.9255916618934], [-75.16909605511938, 39.92681792605534], [-75.16882811944834, 39.92803500276149], [-75.16869084230184, 39.928644037253655], [-75.16856827208015, 39.92925361082999], [-75.16831961966793, 39.93048166628569], [-75.16805145038389, 39.93171378794974], [-75.1677692037678, 39.932922573067884], [-75.16749496992483, 39.934114489113455], [-75.16716930149295, 39.93567732164193], [-75.16695567057104, 39.93673333098223], [-75.16686335964184, 39.93718123442665], [-75.1667135991546, 39.937845795024714], [-75.16643477314504, 39.939056811917006], [-75.16622545223109, 39.94003471465053], [-75.16613388736738, 39.94042214389958], [-75.16605984929198, 39.940800978519384], [-75.1658325919401, 39.941804609729935], [-75.16571753578864, 39.942406443210984], [-75.1656275811625, 39.94278599843719], [-75.16553584631168, 39.94320168658694], [-75.16542172720443, 39.94364696152462], [-75.16437304156791, 39.94351717665923], [-75.16413160503915, 39.943480137863254], [-75.1633555074793, 39.943379983595946], [-75.16178373559607, 39.94318730763522], [-75.16137886722338, 39.94313924430938], [-75.16020566438269, 39.942998326765306], [-75.15977873987659, 39.94294669627186], [-75.15910447563164, 39.94286101689686], [-75.15863139924642, 39.94280223427386], [-75.15804381134129, 39.942731291387254], [-75.15757279289045, 39.94266678164288], [-75.157059098587, 39.94259773085277], [-75.15667130336898, 39.94255123147651], [-75.15627145241282, 39.9425071071497], [-75.15548951094686, 39.94240817980438], [-75.15391769281345, 39.94220641085683], [-75.15233429052472, 39.94201626298087], [-75.15156111524641, 39.94192342684312], [-75.15118943709187, 39.9418784037736], [-75.15075689577483, 39.94181980041291], [-75.15040769943502, 39.941775750993735], [-75.14964727928266, 39.94167797582284], [-75.1491806609235, 39.941621355500764], [-75.14809775404471, 39.94148751611526], [-75.14760480925904, 39.94142363805757], [-75.14674352614593, 39.941311595615886], [-75.14566790967055, 39.94118234959344], [-75.14503205283438, 39.94109993841964], [-75.14406092687808, 39.94097303772356], [-75.14238644004878, 39.94075761194185], [-75.14223165806158, 39.94073774285976], [-75.13569922406504, 39.9407602337179], [-75.13570357421503, 39.94037856679854], [-75.13570829768656, 39.93996409936478], [-75.13570376885167, 39.93981874640567], [-75.13572186636513, 39.93928923910441], [-75.13573834823765, 39.93889872943512], [-75.1357540382111, 39.93852694483599], [-75.13577655038019, 39.93799353580535], [-75.1357922195078, 39.9373301952647], [-75.13582562848225, 39.93683061491173], [-75.1358523457461, 39.93619753032954], [-75.13587523935927, 39.93565504675437], [-75.1358993857453, 39.935082874127346], [-75.13592531531002, 39.93446840748529], [-75.13594721789872, 39.933949377522914], [-75.13594247367945, 39.93364611772414], [-75.13591544150067, 39.93250826743045], [-75.13572278399747, 39.930651314087626], [-75.13545651269023, 39.929515778826804], [-75.13480120888826, 39.92775096029259], [-75.134307845383, 39.92662160069372], [-75.13406431234948, 39.925957337893244], [-75.13315119431806, 39.9239352067238], [-75.13668965999592, 39.923806879829066], [-75.13314600311433, 39.92393052365494], [-75.13298926334858, 39.92358667762832], [-75.13284091412436, 39.92326123439852], [-75.13268550142756, 39.922920294248364], [-75.13249918433769, 39.922511552563755], [-75.13233494506291, 39.92215124013102], [-75.13208108469027, 39.92159430463181], [-75.1318704588599, 39.9211322128991], [-75.1312705786865, 39.919909966030175], [-75.13118246083951, 39.91951782333994], [-75.13075734710877, 39.918479756627136], [-75.13044135049604, 39.91756578100007], [-75.1300412803778, 39.916090610293544], [-75.1295140079632, 39.91321761603653], [-75.12952210559689, 39.91321840897343], [-75.12938090457546, 39.912194977523626], [-75.12929415660349, 39.91128618901754]], [[-75.15497380829576, 39.922942072661854], [-75.15506672897632, 39.92250353922945], [-75.15505523949591, 39.92250207208251], [-75.15496353354324, 39.922934871645005], [-75.15488799472244, 39.92327077043984], [-75.15479577404375, 39.92367880388882], [-75.15480732988964, 39.92368033200255], [-75.15489826951772, 39.92327797146346], [-75.15497380829576, 39.922942072661854]], [[-75.15354586601622, 39.92183011387746], [-75.15361767988075, 39.92148451761769], [-75.15370199510878, 39.92105589971063], [-75.15380269652539, 39.92062400726126], [-75.1538825337952, 39.92024661446601], [-75.15398639263685, 39.91980588951722], [-75.15407064667633, 39.91936977986741], [-75.15416382465118, 39.919000531453925], [-75.1542484208313, 39.91855368930901], [-75.15423705985492, 39.91855222966871], [-75.15415355058, 39.91899333036412], [-75.15406037255923, 39.919362578769324], [-75.15397611959756, 39.91979868933833], [-75.1538722607347, 39.92023941337758], [-75.15379242224721, 39.92061680613929], [-75.1536917219108, 39.921048699506386], [-75.15360740549215, 39.92147731647919], [-75.15353559158295, 39.921822912732566], [-75.15345227740386, 39.92220486778315], [-75.15345589424248, 39.922291943154995], [-75.15346592274213, 39.922293223895664], [-75.15346255071678, 39.92221206890902], [-75.15354586601622, 39.92183011387746]], [[-75.15252125773569, 39.91748981915929], [-75.15260793387961, 39.917056823358735], [-75.15259651542148, 39.917055341305044], [-75.15251098406672, 39.917482617922246], [-75.1524299043685, 39.9178636858211], [-75.15232798490773, 39.91830105752559], [-75.1523395880117, 39.918302548473335], [-75.15244017808647, 39.91787088706541], [-75.15252125773569, 39.91748981915929]], [[-75.15127675625376, 39.915607495026734], [-75.15101595295502, 39.91684327166353], [-75.15102743037752, 39.91684476736586], [-75.15128819791128, 39.915609154405075], [-75.15127675625376, 39.915607495026734]], [[-75.13997469146554, 39.92367429730011], [-75.1399746956378, 39.923674297131654], [-75.14321276747276, 39.9234003157587], [-75.14306057446777, 39.92339113422129], [-75.14126672725665, 39.92355495998492], [-75.13997469146554, 39.92367429730011]]]}}, {"id": "2190", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16265506646441, 39.91962698837973], [-75.16211106226093, 39.91956753229362], [-75.16154556083924, 39.9194915646084], [-75.16108819219363, 39.919435332548495], [-75.16054151646225, 39.91936212217078], [-75.1607668982515, 39.91835495190483], [-75.1608273694039, 39.918117892868885], [-75.16027625062033, 39.9180451509914], [-75.15980869915705, 39.91798471820661], [-75.15927772779011, 39.91791504138326], [-75.15955114724184, 39.916672668420425], [-75.15901050678815, 39.91659532384449], [-75.15851278990272, 39.91653998747], [-75.1579820989198, 39.91647405353075], [-75.15828402310784, 39.91507994823962], [-75.15809548528345, 39.91504867542346], [-75.15774661335739, 39.91500305785408], [-75.1574854285505, 39.91496008609266], [-75.1577672274255, 39.91370112757994], [-75.15801944065777, 39.912463032257946], [-75.15863024542935, 39.91254226015127], [-75.15920328854268, 39.912616069573936], [-75.15977709165502, 39.91269179622573], [-75.16039229135106, 39.912756864337155], [-75.16053226325738, 39.91210547694309], [-75.16069826272138, 39.9113696229974], [-75.16070398082313, 39.911344089352966], [-75.16078293361882, 39.91098383183351], [-75.16079173327198, 39.91094368029094], [-75.16082410658915, 39.91079596694414], [-75.16095021119766, 39.91021562302511], [-75.16121812721481, 39.909011294700676], [-75.1618954897069, 39.90583111744914], [-75.16230752445159, 39.90394455056542], [-75.16464852646868, 39.887612504005034], [-75.16217129389965, 39.88290732917671], [-75.16418700617535, 39.882571043062725], [-75.16699512077287, 39.88202987590259], [-75.16756365527526, 39.88198126524963], [-75.172144092486, 39.88128679826255], [-75.17386794678251, 39.88112226192141], [-75.1750587094433, 39.881127178541576], [-75.17552197931987, 39.88742945130192], [-75.17566105278485, 39.88855858992095], [-75.17571154968319, 39.88876138361383], [-75.17573705027974, 39.88886378533689], [-75.17584319904712, 39.88980554903248], [-75.17587419483029, 39.89004313064002], [-75.1760278511686, 39.89122094805812], [-75.17604042197188, 39.891329354681865], [-75.17634430164547, 39.893950067873824], [-75.17633664816786, 39.89402572980005], [-75.1758873481957, 39.89615422691603], [-75.175399825025, 39.897343638954055], [-75.17520478193897, 39.89781070414899], [-75.17496071505107, 39.898489577280344], [-75.17491929925438, 39.89860477040532], [-75.17485857553739, 39.89890150838469], [-75.17483646320548, 39.899052945944455], [-75.17481211099435, 39.89918055633025], [-75.17478167777995, 39.89933489111524], [-75.17466152140592, 39.89990201248322], [-75.17459016676469, 39.90025600250693], [-75.17439472075638, 39.90122557910576], [-75.17435399071223, 39.90153017248715], [-75.17400638998875, 39.90291208184428], [-75.17387062287813, 39.90366900724408], [-75.17391711100879, 39.90378943540295], [-75.17381423309698, 39.90385074583535], [-75.17376949727006, 39.90403545656304], [-75.17355828259288, 39.90504912576351], [-75.17354291021356, 39.90522772615793], [-75.17354806358297, 39.90538957490077], [-75.17353399782667, 39.90559577929573], [-75.17348754548092, 39.9067563099507], [-75.17348135969269, 39.90694288806304], [-75.17344905201946, 39.90715954418978], [-75.17323528558165, 39.90800347406402], [-75.17307445186442, 39.908719118662205], [-75.1729918138265, 39.909147532286816], [-75.17297213531702, 39.909243234455964], [-75.17295323475211, 39.909352550414205], [-75.17268742744994, 39.91057706585038], [-75.1723687115406, 39.91172712894591], [-75.1722545554179, 39.91228020251701], [-75.17223264423839, 39.91238635121767], [-75.17219189815779, 39.912583763644065], [-75.17210962893124, 39.912987059452334], [-75.17207229463824, 39.91320170478083], [-75.17192106273241, 39.91390676011034], [-75.17187704615729, 39.914257229030035], [-75.17179777242613, 39.91434685340767], [-75.17127261085616, 39.916779653894714], [-75.17125279571084, 39.916871956868036], [-75.17113001788468, 39.91742438166275], [-75.17098550451631, 39.91815003940139], [-75.17071125143731, 39.91939499497743], [-75.17044815178282, 39.920640631710256], [-75.17017980089858, 39.92188608861979], [-75.16988103061077, 39.92313243740692], [-75.16962817132318, 39.92437326570684], [-75.16892030047269, 39.924287373119476], [-75.1684766725506, 39.924227797333074], [-75.16759012260145, 39.9241069400228], [-75.16684655547401, 39.924005783707884], [-75.16601414985686, 39.923904537964795], [-75.164441712585, 39.92370306414265], [-75.16453216778805, 39.92326050884133], [-75.164619773354, 39.922906415015476], [-75.16470926167717, 39.92246700849618], [-75.16628592461213, 39.92266925656547], [-75.16637598363288, 39.92223483185788], [-75.16646626324525, 39.92185519835024], [-75.16656349669164, 39.92141911604116], [-75.16664639237847, 39.9209873562815], [-75.16673308772206, 39.920619617276735], [-75.16682971677106, 39.92017348117634], [-75.16627796985424, 39.92010526499624], [-75.16581020227612, 39.9200432259146], [-75.16526012115244, 39.9199670413091], [-75.16471656499884, 39.91989830029376], [-75.16423153303799, 39.91983601140497], [-75.16369596823444, 39.91975159773872], [-75.1634912329837, 39.91973683942695], [-75.16314275618905, 39.919693473325076], [-75.16265506646441, 39.91962698837973]]]}}, {"id": "2210", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16805503233596, 39.97487099232693], [-75.16773195706557, 39.97432080820269], [-75.16722014897815, 39.97339870716462], [-75.16653967502313, 39.97238159742861], [-75.1662721085587, 39.972037642881524], [-75.16597289357621, 39.97160889671574], [-75.16577880145555, 39.97134049222068], [-75.16561818923037, 39.97119200249721], [-75.16531133153285, 39.97091144438554], [-75.1651330427353, 39.97076213318709], [-75.16474553311866, 39.97043760078011], [-75.16549088265116, 39.970041827235164], [-75.1656816306926, 39.969945711636605], [-75.16636191542909, 39.969568086837874], [-75.1669668107836, 39.969232139540125], [-75.16831386021626, 39.96840405361783], [-75.16846613284729, 39.96764547361726], [-75.16856960872863, 39.967227573888415], [-75.16937148638647, 39.96723674672859], [-75.17017766133468, 39.96725172301128], [-75.17077834579462, 39.96726075824045], [-75.1713447882263, 39.96727627033218], [-75.17210895793443, 39.967285656890404], [-75.17219406039233, 39.96690459850891], [-75.17226828560415, 39.966580482136074], [-75.17240042243283, 39.965930333056825], [-75.17247877800258, 39.96562803370921], [-75.17256130551053, 39.96522029324158], [-75.17416164305735, 39.96541359929349], [-75.175763278728, 39.96561961982896], [-75.17587397089002, 39.96515920092239], [-75.17590513016467, 39.96498749846381], [-75.17602734034247, 39.96443105206552], [-75.1760388110365, 39.96425996026975], [-75.17639291239041, 39.96410880106432], [-75.17668365409428, 39.96394503189285], [-75.17694296226537, 39.96356769116701], [-75.17712573442545, 39.96327140420913], [-75.17722849345292, 39.96312403779706], [-75.1773204217862, 39.96299229796907], [-75.17748319573106, 39.96286822931616], [-75.17774979731949, 39.96278386583728], [-75.178133736829, 39.962803750897116], [-75.17882023578328, 39.96299109197009], [-75.18003477248226, 39.963320731458694], [-75.18122946213096, 39.963706314052374], [-75.18159077628526, 39.963784473602026], [-75.18171474402502, 39.963923372434984], [-75.1824953500704, 39.96413921787585], [-75.18347225828724, 39.964341536181614], [-75.18354554441063, 39.96443732115239], [-75.18364873769167, 39.96457219229305], [-75.18435660843396, 39.965550289347135], [-75.18484922326599, 39.96614149173921], [-75.18559269656258, 39.96690811198944], [-75.18112177540891, 39.96746359961289], [-75.17968478300124, 39.96741740767767], [-75.18016368176961, 39.967794395545106], [-75.18006282011629, 39.968416647134006], [-75.17991460237576, 39.969090943561284], [-75.17983743980078, 39.96944775366464], [-75.17977598962271, 39.96969353989304], [-75.17975488906876, 39.96981497856103], [-75.17965161686956, 39.970310272091965], [-75.17860640189194, 39.970181658250176], [-75.1780566875297, 39.97011372941456], [-75.17780650810144, 39.97120896950443], [-75.17753873030072, 39.97243855647388], [-75.17786294614987, 39.97248103137002], [-75.17786387562035, 39.97383345443092], [-75.17785267920566, 39.97424893652467], [-75.1771235341516, 39.974328234747865], [-75.17641964846224, 39.97440418538758], [-75.17593658491718, 39.97445362377925], [-75.17545671569454, 39.97450466083824], [-75.17378624577721, 39.97467888698817], [-75.17209233641867, 39.974855903415154], [-75.1704017109951, 39.97503938227979], [-75.16914490341505, 39.97516856344814], [-75.1682634491673, 39.97526019664399], [-75.1681453247881, 39.97503502447598], [-75.16805503233596, 39.97487099232693]]]}}, {"id": "2240", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18932450204431, 39.920914220147004], [-75.18916422210287, 39.92074625237124], [-75.18910493952532, 39.920684126443284], [-75.18825459471665, 39.919754693708725], [-75.18803994232465, 39.919456388448246], [-75.1877964349535, 39.91925229894708], [-75.18743741577522, 39.91905085589099], [-75.18735445155635, 39.91900684701349], [-75.18696229271059, 39.918867726114804], [-75.1860247859152, 39.91869097912871], [-75.18510032904231, 39.918554256265494], [-75.18440337252183, 39.91844380213035], [-75.18282151039273, 39.918233589219184], [-75.18279356431404, 39.9183597213585], [-75.18251211277983, 39.91963000802967], [-75.18222126839873, 39.92087175608389], [-75.18141846905199, 39.92077361841488], [-75.18123535356035, 39.92073887462593], [-75.18089486899946, 39.920705255663606], [-75.1803152087144, 39.92062101252252], [-75.17976291264522, 39.92055068325926], [-75.17952902810964, 39.92052150129681], [-75.17926924046455, 39.920489878413086], [-75.1787385022326, 39.92041614683869], [-75.17795486096878, 39.92030994298901], [-75.17716829123836, 39.920219553776164], [-75.17636766741929, 39.92010990347405], [-75.17561598837206, 39.92001434807827], [-75.17504683556119, 39.91994488243412], [-75.1745883463195, 39.919885815943516], [-75.17403428189978, 39.91981077618362], [-75.1734928793705, 39.91974405438717], [-75.17300577989006, 39.91968075076979], [-75.17244736593929, 39.919622458981124], [-75.1719403514858, 39.91954497164647], [-75.17148785787545, 39.91948650588742], [-75.17085501498846, 39.91941145488218], [-75.17071125143731, 39.91939499497743], [-75.17098550451631, 39.91815003940139], [-75.17113001788468, 39.91742438166275], [-75.17125279571084, 39.916871956868036], [-75.17127261085616, 39.916779653894714], [-75.17179777242613, 39.91434685340767], [-75.17187704615729, 39.914257229030035], [-75.17192106273241, 39.91390676011034], [-75.17207229463824, 39.91320170478083], [-75.17210962893124, 39.912987059452334], [-75.17219189815779, 39.912583763644065], [-75.17223264423839, 39.91238635121767], [-75.1722545554179, 39.91228020251701], [-75.1723687115406, 39.91172712894591], [-75.17268742744994, 39.91057706585038], [-75.17295323475211, 39.909352550414205], [-75.17297213531702, 39.909243234455964], [-75.1729918138265, 39.909147532286816], [-75.17307445186442, 39.908719118662205], [-75.17323528558165, 39.90800347406402], [-75.17344905201946, 39.90715954418978], [-75.17348135969269, 39.90694288806304], [-75.17348754548092, 39.9067563099507], [-75.17353399782667, 39.90559577929573], [-75.17354806358297, 39.90538957490077], [-75.17354291021356, 39.90522772615793], [-75.17355828259288, 39.90504912576351], [-75.17376949727006, 39.90403545656304], [-75.17381423309698, 39.90385074583535], [-75.17391711100879, 39.90378943540295], [-75.17387062287813, 39.90366900724408], [-75.17400638998875, 39.90291208184428], [-75.17435399071223, 39.90153017248715], [-75.17439472075638, 39.90122557910576], [-75.17459016676469, 39.90025600250693], [-75.17466152140592, 39.89990201248322], [-75.17478167777995, 39.89933489111524], [-75.17481211099435, 39.89918055633025], [-75.17483646320548, 39.899052945944455], [-75.17485857553739, 39.89890150838469], [-75.17491929925438, 39.89860477040532], [-75.17496071505107, 39.898489577280344], [-75.17520478193897, 39.89781070414899], [-75.175399825025, 39.897343638954055], [-75.1758873481957, 39.89615422691603], [-75.17633664816786, 39.89402572980005], [-75.17634430164547, 39.893950067873824], [-75.17604042197188, 39.891329354681865], [-75.1760278511686, 39.89122094805812], [-75.17587419483029, 39.89004313064002], [-75.17584319904712, 39.88980554903248], [-75.17573705027974, 39.88886378533689], [-75.17571154968319, 39.88876138361383], [-75.17566105278485, 39.88855858992095], [-75.175506636981, 39.887220747272444], [-75.1754172425525, 39.88600472601262], [-75.17527615048914, 39.88408537061387], [-75.17516853473141, 39.882621331116916], [-75.1750587094433, 39.881127178541576], [-75.17928749312532, 39.88076323635661], [-75.18309485629912, 39.88087152581279], [-75.18626600338732, 39.880776404069444], [-75.18833057628198, 39.88023399085093], [-75.19116833749403, 39.87895720171348], [-75.19324988488377, 39.878184668892864], [-75.19423258569884, 39.881954784067574], [-75.19435105676118, 39.88417912439962], [-75.1947442202182, 39.88715958381745], [-75.1950055405623, 39.88900502992013], [-75.195377006374, 39.890852930227844], [-75.19664161307446, 39.892154693323114], [-75.19734849868537, 39.892554200508876], [-75.19791884605132, 39.89287653536392], [-75.20040917979276, 39.89358290207157], [-75.20220010194497, 39.893834988846315], [-75.2046735612974, 39.894257866007955], [-75.20643188168988, 39.89489123824661], [-75.20811681144355, 39.8955229525527], [-75.20953791229009, 39.89633275566915], [-75.21063179238031, 39.897050385553555], [-75.21157229080009, 39.89783622404864], [-75.2121105527512, 39.898285960912], [-75.2135832514153, 39.89993175325022], [-75.21405201147564, 39.90066381664515], [-75.21468644114745, 39.901880671807056], [-75.2151114782057, 39.903786283051396], [-75.21545761289784, 39.905591091598325], [-75.21569646410822, 39.90756333700614], [-75.21568364421469, 39.90889323104565], [-75.2153079210576, 39.909606617026206], [-75.21464580619211, 39.910115556509204], [-75.2135613898842, 39.91061515098194], [-75.2122790037696, 39.9107565830743], [-75.2094913839666, 39.9106099381418], [-75.20848050275646, 39.910615834252674], [-75.207216129998, 39.911012324931804], [-75.20635832065332, 39.91134706809731], [-75.20542266692576, 39.912288564423946], [-75.20470414463513, 39.91331977872765], [-75.2041088348333, 39.91449523508961], [-75.20359825025908, 39.91561596579895], [-75.20246386163328, 39.917444533142344], [-75.20194457510891, 39.91855091390986], [-75.20184462772525, 39.91925623705986], [-75.2019945286076, 39.919781946952625], [-75.20179132442954, 39.91981930807259], [-75.20006238051837, 39.92013718296255], [-75.19504651330628, 39.92101268758331], [-75.19448533530738, 39.921085070263416], [-75.1938644811039, 39.9211301915961], [-75.19249473767239, 39.9212670726349], [-75.19181991635783, 39.92138891467094], [-75.19122215402639, 39.921500199794416], [-75.19106794347522, 39.92153321049858], [-75.19081634417404, 39.92158434713675], [-75.19060146538074, 39.92162802170247], [-75.19047247264182, 39.92165423956683], [-75.1903419604548, 39.92167437759978], [-75.19015860117176, 39.92170215116822], [-75.19006058289085, 39.9217171307119], [-75.18981258718762, 39.92139934007993], [-75.18941869879913, 39.921007844650426], [-75.18932450204431, 39.920914220147004]]]}}, {"id": "2260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16749496992483, 39.934114489113455], [-75.1677692037678, 39.932922573067884], [-75.16805145038389, 39.93171378794974], [-75.16831961966793, 39.93048166628569], [-75.16856827208015, 39.92925361082999], [-75.16869084230184, 39.928644037253655], [-75.16882811944834, 39.92803500276149], [-75.16895773764685, 39.92803667143668], [-75.1695817099415, 39.928134065918755], [-75.17004997262877, 39.92818833357387], [-75.1705936331929, 39.92826682605035], [-75.17113787546292, 39.92833001716304], [-75.1715962274586, 39.9283885534335], [-75.17215552066993, 39.9284642408782], [-75.17269999642133, 39.9285213470136], [-75.17316209167474, 39.92858897664198], [-75.17372885312534, 39.92866167871712], [-75.17529040837256, 39.92886827026287], [-75.17587953728179, 39.928942223357396], [-75.17633522047532, 39.92900112389839], [-75.17687231172798, 39.92906292240617], [-75.17678215161335, 39.92948761629582], [-75.17670567788743, 39.92985285667654], [-75.1766075551279, 39.93028638642722], [-75.17651307709473, 39.93071706421215], [-75.17643661422272, 39.93108188123742], [-75.17633854859126, 39.93150660831269], [-75.17606997663971, 39.932722330845074], [-75.17662499629343, 39.93279812311519], [-75.177083344669, 39.932856200502414], [-75.17765080414075, 39.93292596336492], [-75.17819483076464, 39.93300126802394], [-75.17862227043074, 39.93305909205644], [-75.17904197961765, 39.933110435895294], [-75.17955452551766, 39.93317938886474], [-75.1806579840137, 39.93331501608619], [-75.18116321971874, 39.93338673621803], [-75.18106126869124, 39.93381410165253], [-75.1809764812772, 39.93418503191492], [-75.18089047146259, 39.934606884247756], [-75.18254559037445, 39.93482448669244], [-75.1841852082231, 39.93503521202536], [-75.18391597679044, 39.93624163503735], [-75.18336615439254, 39.93618114656665], [-75.18314182737211, 39.9361528106063], [-75.18285664195403, 39.93611678598112], [-75.18228613371508, 39.93603364907103], [-75.18062112256922, 39.9358177221426], [-75.17903609931385, 39.935613812060446], [-75.17851438706029, 39.93554588693876], [-75.1780165888879, 39.93549411026993], [-75.1775810668755, 39.93542891655227], [-75.17710871759412, 39.935371611375224], [-75.17668179631869, 39.935319988096964], [-75.17612174388424, 39.93524460620612], [-75.17553729231994, 39.93516583024809], [-75.17502496672444, 39.935100858714925], [-75.17458832220636, 39.93504805959277], [-75.17397124393268, 39.934975226617205], [-75.17385189584135, 39.935451281353316], [-75.17377691179385, 39.93584848022799], [-75.17369756730578, 39.93623158927864], [-75.17358317761233, 39.93674297131894], [-75.17201673274833, 39.93648681375423], [-75.1704556685538, 39.93623356491932], [-75.17015472345572, 39.93618939997566], [-75.16967355093747, 39.93610759054666], [-75.16937849651002, 39.93605066525512], [-75.16890242813085, 39.935970480203025], [-75.16812246235199, 39.93582692059234], [-75.16799755984174, 39.935810782650144], [-75.167303352112, 39.93569699395844], [-75.16716930149295, 39.93567732164193], [-75.16749496992483, 39.934114489113455]]]}}, {"id": "2320", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17633522047532, 39.92900112389839], [-75.17587953728179, 39.928942223357396], [-75.17529040837256, 39.92886827026287], [-75.17372885312534, 39.92866167871712], [-75.17316209167474, 39.92858897664198], [-75.17269999642133, 39.9285213470136], [-75.17215552066993, 39.9284642408782], [-75.1715962274586, 39.9283885534335], [-75.17113787546292, 39.92833001716304], [-75.1705936331929, 39.92826682605035], [-75.17004997262877, 39.92818833357387], [-75.1695817099415, 39.928134065918755], [-75.16895773764685, 39.92803667143668], [-75.16882811944834, 39.92803500276149], [-75.16909605511938, 39.92681792605534], [-75.16936345812617, 39.9255916618934], [-75.16962817132318, 39.92437326570684], [-75.16988103061077, 39.92313243740692], [-75.17017980089858, 39.92188608861979], [-75.17044815178282, 39.920640631710256], [-75.17071125143731, 39.91939499497743], [-75.17085501498846, 39.91941145488218], [-75.17148785787545, 39.91948650588742], [-75.1719403514858, 39.91954497164647], [-75.17244736593929, 39.919622458981124], [-75.17300577989006, 39.91968075076979], [-75.1734928793705, 39.91974405438717], [-75.17403428189978, 39.91981077618362], [-75.1745883463195, 39.919885815943516], [-75.17504683556119, 39.91994488243412], [-75.17561598837206, 39.92001434807827], [-75.17636766741929, 39.92010990347405], [-75.17716829123836, 39.920219553776164], [-75.17795486096878, 39.92030994298901], [-75.1787385022326, 39.92041614683869], [-75.17926924046455, 39.920489878413086], [-75.17952902810964, 39.92052150129681], [-75.17976291264522, 39.92055068325926], [-75.1803152087144, 39.92062101252252], [-75.18089486899946, 39.920705255663606], [-75.18123535356035, 39.92073887462593], [-75.18141846905199, 39.92077361841488], [-75.18222126839873, 39.92087175608389], [-75.18251211277983, 39.91963000802967], [-75.18279356431404, 39.9183597213585], [-75.18282151039273, 39.918233589219184], [-75.18440337252183, 39.91844380213035], [-75.18510032904231, 39.918554256265494], [-75.1860247859152, 39.91869097912871], [-75.18696229271059, 39.918867726114804], [-75.18735445155635, 39.91900684701349], [-75.18743741577522, 39.91905085589099], [-75.1877964349535, 39.91925229894708], [-75.18803994232465, 39.919456388448246], [-75.18825459471665, 39.919754693708725], [-75.18910493952532, 39.920684126443284], [-75.18916422210287, 39.92074625237124], [-75.18932450204431, 39.920914220147004], [-75.18941869879913, 39.921007844650426], [-75.18981258718762, 39.92139934007993], [-75.19006058289085, 39.9217171307119], [-75.18965238681633, 39.92180636368266], [-75.18890044418367, 39.92197068733024], [-75.18887518116124, 39.922077642304465], [-75.18866229293894, 39.92299769209519], [-75.19026602904323, 39.92319343690514], [-75.19110163648162, 39.923295418125015], [-75.19118578818758, 39.923305688022566], [-75.19139613936314, 39.92338336357609], [-75.19161165853886, 39.923617751117284], [-75.19199250935134, 39.92401569699446], [-75.19234322256247, 39.92437831201164], [-75.19250447035066, 39.92454503064019], [-75.19269098803389, 39.92474055559078], [-75.19296708973327, 39.92503366855368], [-75.19283266918998, 39.926071733611906], [-75.19261584179569, 39.92604225557384], [-75.19248167879262, 39.92605443277392], [-75.19234561742311, 39.92610679659354], [-75.19209440777651, 39.926203476633354], [-75.19197881306039, 39.92624796494283], [-75.19156533587899, 39.92638000609633], [-75.19138477873135, 39.92643766419167], [-75.19100906898176, 39.92655764092452], [-75.19048556896081, 39.926739731963984], [-75.18997104522253, 39.92688815214393], [-75.18946070656388, 39.926984595101054], [-75.1899181876443, 39.926970750615254], [-75.19100820692802, 39.927117599451165], [-75.19093151825834, 39.92746656874468], [-75.1908730394135, 39.92773812156416], [-75.19081348797354, 39.928013904988966], [-75.19074422958964, 39.92832825837987], [-75.18918145487082, 39.92813040403253], [-75.18759758428777, 39.927927613924204], [-75.18685882004087, 39.92783214017275], [-75.18599144062982, 39.92772824384543], [-75.18577448530856, 39.92769634346894], [-75.18518707344323, 39.9276293218686], [-75.18469356535304, 39.927563973577286], [-75.18413572449033, 39.92748839072143], [-75.18356727097928, 39.927414552536376], [-75.18307002762307, 39.9273473187791], [-75.18247970745371, 39.92727098722562], [-75.18192364877922, 39.92721051903828], [-75.18143433399078, 39.92714252943958], [-75.18089407838447, 39.92707475519641], [-75.18024882745244, 39.92700347944945], [-75.17961190138833, 39.926913714072676], [-75.17897092153989, 39.926830360441656], [-75.17840805567783, 39.92674854414239], [-75.17794948006994, 39.92669611269314], [-75.17740166500627, 39.92662679085603], [-75.177302928636, 39.927069538127725], [-75.17722299981469, 39.92742547305531], [-75.17713716654389, 39.927843969737246], [-75.17703462385559, 39.9282791854793], [-75.176962359652, 39.92864116235151], [-75.17687231172798, 39.92906292240617], [-75.17633522047532, 39.92900112389839]]]}}, {"id": "2340", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14720376534348, 39.957537836872454], [-75.14608671800413, 39.95739172522386], [-75.14594277208461, 39.95738211563704], [-75.14574445922563, 39.95735972423506], [-75.14539903510733, 39.957320721497], [-75.14418051989675, 39.95716930321432], [-75.14390529291268, 39.957135100727456], [-75.14359698373113, 39.957110134708415], [-75.14330037514917, 39.95712727268846], [-75.14304070740114, 39.95716036310856], [-75.14280369112413, 39.9572127738713], [-75.14263581931723, 39.957274725205366], [-75.14218858223636, 39.9572186273773], [-75.14202103524084, 39.957196792797966], [-75.14141335264442, 39.95711824275984], [-75.14099879826782, 39.95706465660699], [-75.14071772348635, 39.9570283221774], [-75.13995562256132, 39.956929803007355], [-75.13963009231092, 39.95688829534479], [-75.13872391126799, 39.956782808755115], [-75.13280852508643, 39.956020214005825], [-75.13322440629997, 39.955236147241465], [-75.1344356888728, 39.953037480013485], [-75.13487778815114, 39.95207597951802], [-75.13520600618953, 39.95113696811443], [-75.13544726197281, 39.95042005246468], [-75.13560778262406, 39.94992737070598], [-75.13567169491284, 39.949731206468535], [-75.13574097388202, 39.949518565833074], [-75.13579398402418, 39.94929479886762], [-75.13587870142153, 39.948937185527214], [-75.13594118243584, 39.94867343873226], [-75.13603708917128, 39.9482685854839], [-75.13604837698473, 39.948061401594224], [-75.13613742242406, 39.94767452595673], [-75.13621470851473, 39.947143308464526], [-75.13623992722759, 39.946951593642225], [-75.13628774954744, 39.94658805398638], [-75.13630367365599, 39.946174054516646], [-75.13631648281041, 39.94584103484029], [-75.13628888053894, 39.94555935825632], [-75.13625956961582, 39.94526023672826], [-75.13622743114342, 39.94493225310091], [-75.13617017694928, 39.94459268749368], [-75.13609880806146, 39.94416940403434], [-75.13602548991437, 39.94373455467942], [-75.13596657112032, 39.94334674795433], [-75.13590339340739, 39.9429309105428], [-75.13586057280936, 39.942649055419935], [-75.13583287385052, 39.94245429469849], [-75.13579205954412, 39.94216731427943], [-75.13573708175244, 39.941590929777455], [-75.13571307524438, 39.94124610547081], [-75.13569922406504, 39.9407602337179], [-75.14238644004878, 39.94075761194185], [-75.14406092687808, 39.94097303772356], [-75.14503205283438, 39.94109993841964], [-75.14566790967055, 39.94118234959344], [-75.14674352614593, 39.941311595615886], [-75.14760480925904, 39.94142363805757], [-75.14809775404471, 39.94148751611526], [-75.1491806609235, 39.941621355500764], [-75.14964727928266, 39.94167797582284], [-75.15040769943502, 39.941775750993735], [-75.15075689577483, 39.94181980041291], [-75.15118943709187, 39.9418784037736], [-75.15156111524641, 39.94192342684312], [-75.15233429052472, 39.94201626298087], [-75.15391769281345, 39.94220641085683], [-75.15548951094686, 39.94240817980438], [-75.15627145241282, 39.9425071071497], [-75.15667130336898, 39.94255123147651], [-75.157059098587, 39.94259773085277], [-75.15757279289045, 39.94266678164288], [-75.15804381134129, 39.942731291387254], [-75.15863139924642, 39.94280223427386], [-75.15910447563164, 39.94286101689686], [-75.15977873987659, 39.94294669627186], [-75.16020566438269, 39.942998326765306], [-75.16137886722338, 39.94313924430938], [-75.16178373559607, 39.94318730763522], [-75.1633555074793, 39.943379983595946], [-75.16413160503915, 39.943480137863254], [-75.16437304156791, 39.94351717665923], [-75.16542172720443, 39.94364696152462], [-75.16533035523113, 39.94407812817898], [-75.1652019956249, 39.94464834040553], [-75.16499683305622, 39.94555610648978], [-75.16485573334081, 39.946216887983795], [-75.16477358069528, 39.94660246886681], [-75.164711037373, 39.94697212111289], [-75.16461506119572, 39.94740803647259], [-75.16444029926174, 39.94819899996247], [-75.16432794527358, 39.948717644909934], [-75.16419366371817, 39.94933590379579], [-75.16410618113242, 39.94971620497815], [-75.16402448049483, 39.950074889529176], [-75.16385845668579, 39.95085758793785], [-75.16370955402101, 39.951490570074604], [-75.16368688885542, 39.95151529833986], [-75.16364322502935, 39.95154351673225], [-75.16351682932702, 39.95159207259866], [-75.16364562173928, 39.951631227947146], [-75.16389880565895, 39.95166510628258], [-75.16402480866678, 39.95162917159176], [-75.16419555724961, 39.951644009429124], [-75.16436130120256, 39.9516701032282], [-75.16453493789453, 39.951695838570785], [-75.16471761941415, 39.95172438232718], [-75.16489656091423, 39.95176064160228], [-75.16505667104377, 39.95181165206331], [-75.1651819471381, 39.95188523172613], [-75.16524547614274, 39.95200173192759], [-75.16529933194533, 39.952285830139594], [-75.16522793774045, 39.952577745431036], [-75.1650644709797, 39.95360997175663], [-75.16390294144678, 39.953454676372985], [-75.16366108724885, 39.953376478554084], [-75.16332984639078, 39.95333116018389], [-75.16319251612445, 39.95391551453294], [-75.16309459139953, 39.95440141669904], [-75.16288704113363, 39.9553309543011], [-75.16268947048384, 39.95622828371511], [-75.16236367069868, 39.95768001206847], [-75.16215524968051, 39.95771795778167], [-75.16129622782401, 39.95760915330485], [-75.16029504157096, 39.95750945198353], [-75.15902918678124, 39.95738338102032], [-75.15881552775565, 39.95737855542266], [-75.15869380494068, 39.95736238541401], [-75.15713524170022, 39.95713947514945], [-75.15553977298742, 39.95692481636413], [-75.15445168386493, 39.95677847802033], [-75.15424934268523, 39.956778157248024], [-75.15378436972924, 39.95678659845988], [-75.15334639383745, 39.95682544556332], [-75.1528942880345, 39.956885026153664], [-75.15277270115861, 39.95691539955717], [-75.15255960777671, 39.95696475428164], [-75.15229079385131, 39.95704144528795], [-75.1520616305533, 39.95709976077902], [-75.15164997012965, 39.95721319094828], [-75.15148914939789, 39.95725851973942], [-75.15114054904012, 39.957352358346], [-75.15089400948241, 39.95741860604724], [-75.15065512095714, 39.95748279926199], [-75.15017367166261, 39.95759347705416], [-75.14952611782954, 39.95766316757791], [-75.1491264360546, 39.95767570821541], [-75.14887734536661, 39.95766550348537], [-75.14886085945778, 39.957745703471176], [-75.14846120785022, 39.95771646485915], [-75.14784414808281, 39.957628002777504], [-75.1473479021083, 39.95755794158644], [-75.14720376534348, 39.957537836872454]]]}}, {"id": "2370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18498007411401, 39.936382116858304], [-75.1844924886418, 39.93631911717289], [-75.1843475621842, 39.93629964165249], [-75.18391597679044, 39.93624163503735], [-75.1841852082231, 39.93503521202536], [-75.18254559037445, 39.93482448669244], [-75.18089047146259, 39.934606884247756], [-75.1809764812772, 39.93418503191492], [-75.18106126869124, 39.93381410165253], [-75.18116321971874, 39.93338673621803], [-75.1806579840137, 39.93331501608619], [-75.17955452551766, 39.93317938886474], [-75.17904197961765, 39.933110435895294], [-75.17862227043074, 39.93305909205644], [-75.17819483076464, 39.93300126802394], [-75.17765080414075, 39.93292596336492], [-75.177083344669, 39.932856200502414], [-75.17662499629343, 39.93279812311519], [-75.17606997663971, 39.932722330845074], [-75.17633854859126, 39.93150660831269], [-75.17643661422272, 39.93108188123742], [-75.17651307709473, 39.93071706421215], [-75.1766075551279, 39.93028638642722], [-75.17670567788743, 39.92985285667654], [-75.17678215161335, 39.92948761629582], [-75.17687231172798, 39.92906292240617], [-75.176962359652, 39.92864116235151], [-75.17703462385559, 39.9282791854793], [-75.17713716654389, 39.927843969737246], [-75.17722299981469, 39.92742547305531], [-75.177302928636, 39.927069538127725], [-75.17740166500627, 39.92662679085603], [-75.17794948006994, 39.92669611269314], [-75.17840805567783, 39.92674854414239], [-75.17897092153989, 39.926830360441656], [-75.17961190138833, 39.926913714072676], [-75.18024882745244, 39.92700347944945], [-75.18089407838447, 39.92707475519641], [-75.18143433399078, 39.92714252943958], [-75.18192364877922, 39.92721051903828], [-75.18247970745371, 39.92727098722562], [-75.18307002762307, 39.9273473187791], [-75.18356727097928, 39.927414552536376], [-75.18413572449033, 39.92748839072143], [-75.18469356535304, 39.927563973577286], [-75.18518707344323, 39.9276293218686], [-75.18577448530856, 39.92769634346894], [-75.18599144062982, 39.92772824384543], [-75.18685882004087, 39.92783214017275], [-75.18759758428777, 39.927927613924204], [-75.18918145487082, 39.92813040403253], [-75.19074422958964, 39.92832825837987], [-75.19066859300911, 39.92866941676119], [-75.19060233030642, 39.928978118248274], [-75.19053543273527, 39.92926649229742], [-75.19047474449467, 39.92955977394741], [-75.1902220487094, 39.93078038680986], [-75.19012731576615, 39.931220084595004], [-75.1899493618791, 39.932003488518205], [-75.18968857636325, 39.93322864037063], [-75.1894169526017, 39.93443037137289], [-75.18931761794046, 39.934867517007774], [-75.18923713517907, 39.93524427892119], [-75.18914801425663, 39.93567262079523], [-75.18906265917072, 39.936096819177195], [-75.18897800978061, 39.93645812481999], [-75.18888557125193, 39.93688807195146], [-75.18732760299982, 39.93668022889355], [-75.18575640786506, 39.93648392872858], [-75.18572790895732, 39.93648034793651], [-75.18498007411401, 39.936382116858304]]]}}, {"id": "2380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15627145241282, 39.9425071071497], [-75.15548951094686, 39.94240817980438], [-75.15391769281345, 39.94220641085683], [-75.15233429052472, 39.94201626298087], [-75.15156111524641, 39.94192342684312], [-75.15118943709187, 39.9418784037736], [-75.15075689577483, 39.94181980041291], [-75.15040769943502, 39.941775750993735], [-75.14964727928266, 39.94167797582284], [-75.1491806609235, 39.941621355500764], [-75.14809775404471, 39.94148751611526], [-75.14760480925904, 39.94142363805757], [-75.14674352614593, 39.941311595615886], [-75.14566790967055, 39.94118234959344], [-75.14503205283438, 39.94109993841964], [-75.14406092687808, 39.94097303772356], [-75.14238644004878, 39.94075761194185], [-75.14223165806158, 39.94073774285976], [-75.13569922406504, 39.9407602337179], [-75.13570357421503, 39.94037856679854], [-75.13570829768656, 39.93996409936478], [-75.13570376885167, 39.93981874640567], [-75.13572186636513, 39.93928923910441], [-75.13573834823765, 39.93889872943512], [-75.1357540382111, 39.93852694483599], [-75.13577655038019, 39.93799353580535], [-75.1357922195078, 39.9373301952647], [-75.13582562848225, 39.93683061491173], [-75.1358523457461, 39.93619753032954], [-75.13587523935927, 39.93565504675437], [-75.1358993857453, 39.935082874127346], [-75.13592531531002, 39.93446840748529], [-75.14268624964924, 39.93488056541532], [-75.14277050236433, 39.93489864158725], [-75.14328760313309, 39.93503600592176], [-75.14436109370848, 39.935323913654216], [-75.14465707357219, 39.93540373333851], [-75.14488902620543, 39.93546628492709], [-75.14525968884901, 39.935566241560124], [-75.14574096872285, 39.93569595309311], [-75.1461662451491, 39.93581096765408], [-75.14635692710937, 39.935862535506075], [-75.1468092382315, 39.93598385223401], [-75.14690568404735, 39.9360112996903], [-75.14781277718367, 39.93625691399449], [-75.14828584702035, 39.93638079516197], [-75.14869493443304, 39.936487499408756], [-75.14933253818546, 39.93666527501054], [-75.14993485024351, 39.936837033602636], [-75.15022910915481, 39.93692230122762], [-75.15175921360806, 39.93733271818981], [-75.15164784696518, 39.93782885397875], [-75.15149502996697, 39.938515466014806], [-75.15195755705619, 39.93859295052562], [-75.15267934188661, 39.93872515703972], [-75.15306544594553, 39.93876416001893], [-75.15397679316145, 39.938873430538216], [-75.15462893269908, 39.938957131228506], [-75.15619502797918, 39.939153026786194], [-75.15611041222874, 39.9395619272694], [-75.15659330182257, 39.93962115718669], [-75.15698633162224, 39.939664548104865], [-75.15768862512259, 39.9397483279569], [-75.15745478637149, 39.94076418375131], [-75.15725313563803, 39.94173843608297], [-75.157059098587, 39.94259773085277], [-75.15667130336898, 39.94255123147651], [-75.15627145241282, 39.9425071071497]]]}}, {"id": "2390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17312775354583, 39.977751700238606], [-75.17296812708716, 39.97840817799981], [-75.17290251279427, 39.97867918888155], [-75.1729601967386, 39.97869318582734], [-75.1729945192562, 39.97872091307391], [-75.17299986141104, 39.97874957982806], [-75.17300344818571, 39.978768825817184], [-75.17299175908344, 39.97883147385479], [-75.17296297818956, 39.978985721589495], [-75.1729312809766, 39.979026468103854], [-75.17287129178672, 39.979052105398196], [-75.17281882273372, 39.979073762378334], [-75.17280097114764, 39.97916176707219], [-75.17121429252416, 39.97895355524523], [-75.17129432139696, 39.9785792462262], [-75.17130780300391, 39.97850613459061], [-75.17135448846633, 39.97825182831359], [-75.17143377989801, 39.97791757072109], [-75.17152830953934, 39.97753886429667], [-75.17159569289858, 39.97718049013689], [-75.17167137307844, 39.9768393342176], [-75.17172809531297, 39.97653312881369], [-75.17173555442703, 39.97650674804233], [-75.17181450773097, 39.976165127688525], [-75.17191246289653, 39.97577235568639], [-75.17197112375173, 39.97546380426331], [-75.17198110519435, 39.97539808423971], [-75.17209233641867, 39.974855903415154], [-75.17378624577721, 39.97467888698817], [-75.17545671569454, 39.97450466083824], [-75.17593658491718, 39.97445362377925], [-75.17641964846224, 39.97440418538758], [-75.1771235341516, 39.974328234747865], [-75.17785267920566, 39.97424893652467], [-75.17786387562035, 39.97383345443092], [-75.17786294614987, 39.97248103137002], [-75.17753873030072, 39.97243855647388], [-75.17780650810144, 39.97120896950443], [-75.1780566875297, 39.97011372941456], [-75.17860640189194, 39.970181658250176], [-75.17965161686956, 39.970310272091965], [-75.17975488906876, 39.96981497856103], [-75.17977598962271, 39.96969353989304], [-75.17983743980078, 39.96944775366464], [-75.17991460237576, 39.969090943561284], [-75.18006282011629, 39.968416647134006], [-75.18016368176961, 39.967794395545106], [-75.17968478300124, 39.96741740767767], [-75.18112177540891, 39.96746359961289], [-75.18559269656258, 39.96690811198944], [-75.18706908333387, 39.967747703382884], [-75.18900330738798, 39.96863994646185], [-75.19053330321391, 39.969523141662705], [-75.19117087980821, 39.970174153296554], [-75.19156997895064, 39.971541539557435], [-75.19185603211622, 39.97273659554681], [-75.19251524639479, 39.97427958810763], [-75.19267610460359, 39.97455682874583], [-75.19306819929173, 39.97522587002582], [-75.19316767010415, 39.97534404688133], [-75.19395195788799, 39.976275795675406], [-75.19370746636712, 39.976436929608965], [-75.19344742109921, 39.976607983514036], [-75.19318694633098, 39.976778651568935], [-75.19312353237977, 39.976820057225694], [-75.19292609306041, 39.976948979056516], [-75.19266491438854, 39.97711901761388], [-75.19240346936863, 39.97728881630829], [-75.19214180989704, 39.977458427652095], [-75.19187999860506, 39.977627898991315], [-75.191745662721, 39.9777147798631], [-75.19161808969504, 39.977797283791716], [-75.19135613747095, 39.97796663281875], [-75.19109419988266, 39.978135993315746], [-75.19083233340443, 39.97830542060259], [-75.19057059367931, 39.978474960971226], [-75.19030903969116, 39.97864466529346], [-75.18990079379184, 39.97890907500015], [-75.18963886595216, 39.979078446966966], [-75.18937682579183, 39.97924771854937], [-75.18907977150573, 39.97943944702036], [-75.18885251157113, 39.97958605385964], [-75.18859028389431, 39.979755160969134], [-75.18731861787698, 39.97958197540658], [-75.18572863466908, 39.97936208930493], [-75.18470025398888, 39.979225395072916], [-75.18413796951701, 39.979160412047385], [-75.1835823634162, 39.97908348404279], [-75.18311587750986, 39.97903082691258], [-75.1825269998387, 39.978957744698484], [-75.18192679331867, 39.9788796738151], [-75.1814601891601, 39.9788146300702], [-75.18090701836356, 39.97874058888288], [-75.18031747658478, 39.97866654240448], [-75.18018551683247, 39.97865007774576], [-75.17986177265558, 39.978607358478946], [-75.17948283131925, 39.97855760662868], [-75.1786945223034, 39.97846900801477], [-75.17788888439762, 39.97835599818536], [-75.17710442702693, 39.97825301454284], [-75.17630085865154, 39.97814009841556], [-75.17470388655568, 39.97793852162858], [-75.17385580424572, 39.977838020656726], [-75.1734059516144, 39.977784690664876], [-75.17312775354583, 39.977751700238606]]]}}, {"id": "2450", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16577939661354, 39.94278638440148], [-75.1656275811625, 39.94278599843719], [-75.16571753578864, 39.942406443210984], [-75.1658325919401, 39.941804609729935], [-75.16605984929198, 39.940800978519384], [-75.16613388736738, 39.94042214389958], [-75.16622545223109, 39.94003471465053], [-75.16643477314504, 39.939056811917006], [-75.1667135991546, 39.937845795024714], [-75.16686335964184, 39.93718123442665], [-75.16695567057104, 39.93673333098223], [-75.16716930149295, 39.93567732164193], [-75.167303352112, 39.93569699395844], [-75.16799755984174, 39.935810782650144], [-75.16812246235199, 39.93582692059234], [-75.16890242813085, 39.935970480203025], [-75.16937849651002, 39.93605066525512], [-75.16967355093747, 39.93610759054666], [-75.17015472345572, 39.93618939997566], [-75.1704556685538, 39.93623356491932], [-75.17201673274833, 39.93648681375423], [-75.17358317761233, 39.93674297131894], [-75.17369756730578, 39.93623158927864], [-75.17377691179385, 39.93584848022799], [-75.17385189584135, 39.935451281353316], [-75.17397124393268, 39.934975226617205], [-75.17458832220636, 39.93504805959277], [-75.17502496672444, 39.935100858714925], [-75.17553729231994, 39.93516583024809], [-75.17612174388424, 39.93524460620612], [-75.17668179631869, 39.935319988096964], [-75.17710871759412, 39.935371611375224], [-75.1775810668755, 39.93542891655227], [-75.1780165888879, 39.93549411026993], [-75.17851438706029, 39.93554588693876], [-75.17903609931385, 39.935613812060446], [-75.18062112256922, 39.9358177221426], [-75.18228613371508, 39.93603364907103], [-75.18285664195403, 39.93611678598112], [-75.18314182737211, 39.9361528106063], [-75.18336615439254, 39.93618114656665], [-75.18391597679044, 39.93624163503735], [-75.1843475621842, 39.93629964165249], [-75.1844924886418, 39.93631911717289], [-75.18498007411401, 39.936382116858304], [-75.18572790895732, 39.93648034793651], [-75.18549993635563, 39.93759827496855], [-75.18541643376375, 39.93795369886082], [-75.1853918963181, 39.93805886479759], [-75.18530335339072, 39.93851578013453], [-75.18527101941457, 39.938663579602974], [-75.18523483849769, 39.938824544195754], [-75.18516814972767, 39.93911548563741], [-75.18495610112747, 39.94008534101652], [-75.18314107292235, 39.93989685848033], [-75.18149528329731, 39.93968854325546], [-75.17983891181979, 39.939479802181104], [-75.17825196738539, 39.93926905726782], [-75.17631149645452, 39.93902274518719], [-75.1747518511938, 39.93882735859993], [-75.17465110370284, 39.93930143241136], [-75.17457705552728, 39.93964170153694], [-75.17448140136361, 39.94005729581756], [-75.17437734450827, 39.940527727135084], [-75.1742728042991, 39.941022763217234], [-75.17418774665221, 39.941422116658075], [-75.17410510399097, 39.94179478942147], [-75.17388527619204, 39.942801545330546], [-75.17378342812157, 39.94329297174073], [-75.17366854988926, 39.94377646481941], [-75.17210558885188, 39.94357807692164], [-75.17102771359527, 39.94344147559618], [-75.17053366751539, 39.94338134463477], [-75.16999812622305, 39.943311690588054], [-75.16973017549833, 39.943278872334744], [-75.16933965959774, 39.9432267595552], [-75.1689581833847, 39.94318598990012], [-75.16826142194567, 39.943096944520875], [-75.16781562182085, 39.94304621667785], [-75.167370646947, 39.94299618233207], [-75.16624470549259, 39.94285516914599], [-75.16577939661354, 39.94278638440148]]]}}, {"id": "2470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17703711135414, 39.9629283765271], [-75.17691927455976, 39.962700705208874], [-75.17667678580753, 39.96249700166972], [-75.17506126369192, 39.96133631622435], [-75.17366201555305, 39.960309535563916], [-75.17213414287198, 39.959159755184984], [-75.17195211116298, 39.959022867135324], [-75.17163706768218, 39.958811370649634], [-75.17138294205292, 39.95863536658515], [-75.17107843936913, 39.958537294385046], [-75.17046066186592, 39.958551412758986], [-75.1702404471524, 39.95847754705813], [-75.1700697244118, 39.95839464308027], [-75.16994753664727, 39.958282422021576], [-75.16982936847852, 39.95811073687778], [-75.16980114629288, 39.95797503469148], [-75.16981545639425, 39.95785654967576], [-75.16977222908305, 39.95748783655291], [-75.1696825517279, 39.957352019856415], [-75.1695520074718, 39.95725177315955], [-75.16917365167981, 39.957032157222194], [-75.16780326867662, 39.955936836230826], [-75.16636630500113, 39.95481703509913], [-75.1648403280768, 39.954620207274345], [-75.1650644709797, 39.95360997175663], [-75.16522793774045, 39.952577745431036], [-75.16529933194533, 39.952285830139594], [-75.16524547614274, 39.95200173192759], [-75.1651819471381, 39.95188523172613], [-75.16505667104377, 39.95181165206331], [-75.16489656091423, 39.95176064160228], [-75.16471761941415, 39.95172438232718], [-75.16453493789453, 39.951695838570785], [-75.16436130120256, 39.9516701032282], [-75.16419555724961, 39.951644009429124], [-75.16402480866678, 39.95162917159176], [-75.16389880565895, 39.95166510628258], [-75.16364562173928, 39.951631227947146], [-75.16351682932702, 39.95159207259866], [-75.16364322502935, 39.95154351673225], [-75.16368688885542, 39.95151529833986], [-75.16370955402101, 39.951490570074604], [-75.16385845668579, 39.95085758793785], [-75.16402448049483, 39.950074889529176], [-75.16410618113242, 39.94971620497815], [-75.16419366371817, 39.94933590379579], [-75.16432794527358, 39.948717644909934], [-75.16444029926174, 39.94819899996247], [-75.16461506119572, 39.94740803647259], [-75.164711037373, 39.94697212111289], [-75.16477358069528, 39.94660246886681], [-75.16485573334081, 39.946216887983795], [-75.16499683305622, 39.94555610648978], [-75.1652019956249, 39.94464834040553], [-75.16533035523113, 39.94407812817898], [-75.16542172720443, 39.94364696152462], [-75.16553584631168, 39.94320168658694], [-75.1656275811625, 39.94278599843719], [-75.16577939661354, 39.94278638440148], [-75.16624470549259, 39.94285516914599], [-75.167370646947, 39.94299618233207], [-75.16781562182085, 39.94304621667785], [-75.16826142194567, 39.943096944520875], [-75.1689581833847, 39.94318598990012], [-75.16933965959774, 39.9432267595552], [-75.16973017549833, 39.943278872334744], [-75.16999812622305, 39.943311690588054], [-75.17053366751539, 39.94338134463477], [-75.17102771359527, 39.94344147559618], [-75.17210558885188, 39.94357807692164], [-75.17366854988926, 39.94377646481941], [-75.17524211881907, 39.94397053003853], [-75.17716958712774, 39.94421095754197], [-75.17876636292688, 39.944401920202495], [-75.1804101923637, 39.94460311929231], [-75.18061150719751, 39.94463209059361], [-75.18095102500803, 39.94467119483289], [-75.18278116485943, 39.94490703972125], [-75.1833493200888, 39.94497731916542], [-75.18388742182482, 39.94503666902186], [-75.18500788589968, 39.94517971766221], [-75.18570281208814, 39.945277339313236], [-75.18568688960681, 39.946160001890966], [-75.18591378202936, 39.9462198103695], [-75.18616626780558, 39.94640323864336], [-75.18687020015383, 39.94691457163152], [-75.1867677265549, 39.94698153699119], [-75.18638192557506, 39.947257678409755], [-75.18466080412703, 39.948491032151125], [-75.18367648239071, 39.949233166955395], [-75.18301374576069, 39.949741926184196], [-75.18243483863459, 39.95046482009293], [-75.18177228119845, 39.95145470656806], [-75.18174172932771, 39.95152048653826], [-75.18125186576778, 39.95257513323569], [-75.1810342474327, 39.952999285513314], [-75.1804479277613, 39.95414203879143], [-75.18031091629639, 39.95448418419493], [-75.18018395822202, 39.954801220932175], [-75.17989950342928, 39.955410561002644], [-75.17986268049417, 39.95548943951723], [-75.17956689482352, 39.95612304155624], [-75.17952364866278, 39.956215676865845], [-75.1793645489595, 39.957018719111204], [-75.17929516795142, 39.957880374074975], [-75.17947873432696, 39.95886090526811], [-75.17983899226007, 39.95978878931603], [-75.1799758297001, 39.96001027156133], [-75.18005107995222, 39.960132068330665], [-75.1802202153056, 39.960405820580924], [-75.18107508428989, 39.96162779881066], [-75.18195851251086, 39.962581540396314], [-75.18287764460733, 39.96356437420266], [-75.18347225828724, 39.964341536181614], [-75.1824953500704, 39.96413921787585], [-75.18171474402502, 39.963923372434984], [-75.18159077628526, 39.963784473602026], [-75.18122946213096, 39.963706314052374], [-75.18003477248226, 39.963320731458694], [-75.17882023578328, 39.96299109197009], [-75.178133736829, 39.962803750897116], [-75.17774979731949, 39.96278386583728], [-75.17748319573106, 39.96286822931616], [-75.1773204217862, 39.96299229796907], [-75.17722849345292, 39.96312403779706], [-75.17712573442545, 39.96327140420913], [-75.17703711135414, 39.9629283765271]]]}}, {"id": "2480", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17378342812157, 39.94329297174073], [-75.17388527619204, 39.942801545330546], [-75.17410510399097, 39.94179478942147], [-75.17418774665221, 39.941422116658075], [-75.1742728042991, 39.941022763217234], [-75.17437734450827, 39.940527727135084], [-75.17448140136361, 39.94005729581756], [-75.17457705552728, 39.93964170153694], [-75.17465110370284, 39.93930143241136], [-75.1747518511938, 39.93882735859993], [-75.17631149645452, 39.93902274518719], [-75.17825196738539, 39.93926905726782], [-75.17983891181979, 39.939479802181104], [-75.18149528329731, 39.93968854325546], [-75.18314107292235, 39.93989685848033], [-75.18495610112747, 39.94008534101652], [-75.1853416132417, 39.94008211824106], [-75.18578213809973, 39.94013319178685], [-75.18631707191341, 39.94019515155492], [-75.18655241248791, 39.940231437973296], [-75.18744554526633, 39.94036545315516], [-75.18685092941591, 39.94081667842323], [-75.18699036118441, 39.940882551394274], [-75.18728409480497, 39.94101730776212], [-75.187582394664, 39.941146041204426], [-75.18787962417663, 39.94127618254073], [-75.18817193368325, 39.94141278695324], [-75.18846435891797, 39.94154927064173], [-75.18875975857343, 39.94168196275867], [-75.18905229636356, 39.9418181915225], [-75.18933921741734, 39.94196142109909], [-75.18962417748999, 39.942106989324515], [-75.18990808327047, 39.942253728921074], [-75.19019164382442, 39.94240087094255], [-75.19053953193601, 39.942601762056334], [-75.19083072896899, 39.94276959240501], [-75.1910869949525, 39.94291735389807], [-75.19136046085595, 39.943075414074606], [-75.19157341030997, 39.94319903601902], [-75.19105851370779, 39.943636688136955], [-75.19099136949414, 39.94369375929506], [-75.19067974179438, 39.943981979434184], [-75.19022943637438, 39.94439845576369], [-75.18985287188819, 39.94473383402683], [-75.18945882417533, 39.94508477771983], [-75.18939241252559, 39.94514392406182], [-75.18889164537305, 39.945525822624006], [-75.18825665527879, 39.94601007383723], [-75.18792294351213, 39.946227784440076], [-75.18735320149077, 39.94659947458651], [-75.18687020015383, 39.94691457163152], [-75.18616626780558, 39.94640323864336], [-75.18591378202936, 39.9462198103695], [-75.18568688960681, 39.946160001890966], [-75.18570281208814, 39.945277339313236], [-75.18500788589968, 39.94517971766221], [-75.18388742182482, 39.94503666902186], [-75.1833493200888, 39.94497731916542], [-75.18278116485943, 39.94490703972125], [-75.18095102500803, 39.94467119483289], [-75.18061150719751, 39.94463209059361], [-75.1804101923637, 39.94460311929231], [-75.17876636292688, 39.944401920202495], [-75.17716958712774, 39.94421095754197], [-75.17524211881907, 39.94397053003853], [-75.17366854988926, 39.94377646481941], [-75.17378342812157, 39.94329297174073]]]}}, {"id": "2490", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16298126830455, 39.97062420171791], [-75.16140453844403, 39.970429631873635], [-75.16056071990103, 39.970320887387665], [-75.15985341632611, 39.97022162902299], [-75.15970329166524, 39.97020311206611], [-75.15997729346478, 39.968996296665715], [-75.16007335415503, 39.96860084432869], [-75.16016018888936, 39.968178321671864], [-75.16021432105333, 39.96788965927834], [-75.16040703472181, 39.96703130397831], [-75.16048339596443, 39.96667146909137], [-75.16056227887695, 39.96629531689701], [-75.1606783423134, 39.96577180717495], [-75.1608058691436, 39.965160145575574], [-75.16095891448897, 39.96447068926589], [-75.16105400769862, 39.964041957068666], [-75.16111004875117, 39.963789972799844], [-75.1611891934805, 39.96342364008302], [-75.16126150742342, 39.9631278884295], [-75.16130358132413, 39.962895050011134], [-75.1613842499537, 39.962475270829295], [-75.16138160076343, 39.962318688220996], [-75.16141283106843, 39.962103737181245], [-75.16147669842815, 39.96179046019916], [-75.16155403445104, 39.961443028576916], [-75.16164673143402, 39.96102249168303], [-75.16177327298585, 39.960422797834035], [-75.16180345680907, 39.96028624941455], [-75.16196092086922, 39.95957214361842], [-75.16205912443985, 39.95910213784753], [-75.16211951086655, 39.95882285854339], [-75.16217633043827, 39.95854852733416], [-75.16229423597242, 39.95805925338909], [-75.16231961935134, 39.95793156531414], [-75.16234055358527, 39.957826991575594], [-75.16236367069868, 39.95768001206847], [-75.16268947048384, 39.95622828371511], [-75.16288704113363, 39.9553309543011], [-75.16309459139953, 39.95440141669904], [-75.16319251612445, 39.95391551453294], [-75.16332984639078, 39.95333116018389], [-75.16366108724885, 39.953376478554084], [-75.16390294144678, 39.953454676372985], [-75.1650644709797, 39.95360997175663], [-75.1648403280768, 39.954620207274345], [-75.16636630500113, 39.95481703509913], [-75.16780326867662, 39.955936836230826], [-75.16917365167981, 39.957032157222194], [-75.1695520074718, 39.95725177315955], [-75.1696825517279, 39.957352019856415], [-75.16977222908305, 39.95748783655291], [-75.16981545639425, 39.95785654967576], [-75.16980114629288, 39.95797503469148], [-75.16982936847852, 39.95811073687778], [-75.16994753664727, 39.958282422021576], [-75.1700697244118, 39.95839464308027], [-75.1702404471524, 39.95847754705813], [-75.17046066186592, 39.958551412758986], [-75.17107843936913, 39.958537294385046], [-75.17138294205292, 39.95863536658515], [-75.17163706768218, 39.958811370649634], [-75.17195211116298, 39.959022867135324], [-75.17213414287198, 39.959159755184984], [-75.17366201555305, 39.960309535563916], [-75.17506126369192, 39.96133631622435], [-75.17667678580753, 39.96249700166972], [-75.17691927455976, 39.962700705208874], [-75.17703711135414, 39.9629283765271], [-75.17712573442545, 39.96327140420913], [-75.17694296226537, 39.96356769116701], [-75.17668365409428, 39.96394503189285], [-75.17639291239041, 39.96410880106432], [-75.1760388110365, 39.96425996026975], [-75.17602734034247, 39.96443105206552], [-75.17590513016467, 39.96498749846381], [-75.17587397089002, 39.96515920092239], [-75.175763278728, 39.96561961982896], [-75.17416164305735, 39.96541359929349], [-75.17256130551053, 39.96522029324158], [-75.17247877800258, 39.96562803370921], [-75.17240042243283, 39.965930333056825], [-75.17226828560415, 39.966580482136074], [-75.17219406039233, 39.96690459850891], [-75.17210895793443, 39.967285656890404], [-75.1713447882263, 39.96727627033218], [-75.17077834579462, 39.96726075824045], [-75.17017766133468, 39.96725172301128], [-75.16937148638647, 39.96723674672859], [-75.16856960872863, 39.967227573888415], [-75.16846613284729, 39.96764547361726], [-75.16831386021626, 39.96840405361783], [-75.1669668107836, 39.969232139540125], [-75.16636191542909, 39.969568086837874], [-75.1656816306926, 39.969945711636605], [-75.16549088265116, 39.970041827235164], [-75.16474553311866, 39.97043760078011], [-75.1651330427353, 39.97076213318709], [-75.16531133153285, 39.97091144438554], [-75.16455516178287, 39.97081794335175], [-75.16298126830455, 39.97062420171791]]]}}, {"id": "2510", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15725313563803, 39.94173843608297], [-75.15745478637149, 39.94076418375131], [-75.15768862512259, 39.9397483279569], [-75.15811781981508, 39.93980920480518], [-75.15846669618458, 39.9398478896172], [-75.15888664005992, 39.93989937766563], [-75.15925493071721, 39.939952914944996], [-75.15941733188711, 39.939182273711424], [-75.15952744263556, 39.938694925124324], [-75.15955435919798, 39.938555366234546], [-75.15957744532204, 39.938470203570915], [-75.15961913672396, 39.9382764785116], [-75.15968367177305, 39.93799500206825], [-75.15974992567791, 39.93765373413632], [-75.15978638867396, 39.9374766552891], [-75.15986230486071, 39.937165887836954], [-75.15995033552399, 39.936764558734026], [-75.15842517649286, 39.936373174154696], [-75.15866947681553, 39.93522776078812], [-75.15874403484449, 39.93488898490281], [-75.15875973572469, 39.9347988990621], [-75.15877321016966, 39.93472158980898], [-75.15887096104613, 39.93429109526247], [-75.15901557887598, 39.93365554802643], [-75.15902852463303, 39.93351048827205], [-75.15951722792633, 39.93310160797397], [-75.16076083769534, 39.93207582530995], [-75.16085767493169, 39.93201319965672], [-75.1610476840258, 39.931818487024046], [-75.1621537216671, 39.93093059539248], [-75.16222661352487, 39.9308742769223], [-75.16259778115175, 39.9305545798918], [-75.16278574007087, 39.9304093661476], [-75.16300370235683, 39.93022959739751], [-75.16319433056199, 39.930076471943146], [-75.16338146889682, 39.92986525821064], [-75.16350489234422, 39.92983116343739], [-75.1647192203154, 39.928806524439224], [-75.16491618038036, 39.9286972752806], [-75.16499105619756, 39.92860420597811], [-75.16561566805156, 39.92804872141151], [-75.16607242906038, 39.92766380901158], [-75.16680492486368, 39.9270372236799], [-75.16693484483235, 39.92696974221468], [-75.16707544714461, 39.9267996097307], [-75.16735196028873, 39.92658051443639], [-75.16814853042906, 39.92587633156481], [-75.16827005616757, 39.92579796641468], [-75.16858370524805, 39.925735735040625], [-75.16936345812617, 39.9255916618934], [-75.16909605511938, 39.92681792605534], [-75.16882811944834, 39.92803500276149], [-75.16869084230184, 39.928644037253655], [-75.16856827208015, 39.92925361082999], [-75.16831961966793, 39.93048166628569], [-75.16805145038389, 39.93171378794974], [-75.1677692037678, 39.932922573067884], [-75.16749496992483, 39.934114489113455], [-75.16716930149295, 39.93567732164193], [-75.16695567057104, 39.93673333098223], [-75.16686335964184, 39.93718123442665], [-75.1667135991546, 39.937845795024714], [-75.16643477314504, 39.939056811917006], [-75.16622545223109, 39.94003471465053], [-75.16613388736738, 39.94042214389958], [-75.16605984929198, 39.940800978519384], [-75.1658325919401, 39.941804609729935], [-75.16571753578864, 39.942406443210984], [-75.1656275811625, 39.94278599843719], [-75.16553584631168, 39.94320168658694], [-75.16542172720443, 39.94364696152462], [-75.16437304156791, 39.94351717665923], [-75.16413160503915, 39.943480137863254], [-75.1633555074793, 39.943379983595946], [-75.16178373559607, 39.94318730763522], [-75.16137886722338, 39.94313924430938], [-75.16020566438269, 39.942998326765306], [-75.15977873987659, 39.94294669627186], [-75.15910447563164, 39.94286101689686], [-75.15863139924642, 39.94280223427386], [-75.15804381134129, 39.942731291387254], [-75.15757279289045, 39.94266678164288], [-75.157059098587, 39.94259773085277], [-75.15725313563803, 39.94173843608297]]]}}, {"id": "2520", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16892030047269, 39.924287373119476], [-75.1684766725506, 39.924227797333074], [-75.16759012260145, 39.9241069400228], [-75.16684655547401, 39.924005783707884], [-75.16601414985686, 39.923904537964795], [-75.164441712585, 39.92370306414265], [-75.16453216778805, 39.92326050884133], [-75.164619773354, 39.922906415015476], [-75.16470926167717, 39.92246700849618], [-75.16628592461213, 39.92266925656547], [-75.16637598363288, 39.92223483185788], [-75.16646626324525, 39.92185519835024], [-75.16656349669164, 39.92141911604116], [-75.16664639237847, 39.9209873562815], [-75.16673308772206, 39.920619617276735], [-75.16682971677106, 39.92017348117634], [-75.16627796985424, 39.92010526499624], [-75.16581020227612, 39.9200432259146], [-75.16526012115244, 39.9199670413091], [-75.16471656499884, 39.91989830029376], [-75.16423153303799, 39.91983601140497], [-75.16369596823444, 39.91975159773872], [-75.16428022734002, 39.919610179476024], [-75.16479077011986, 39.919514764518325], [-75.1653807272471, 39.919402053061425], [-75.16553405287009, 39.91872384981962], [-75.16580640633518, 39.9174750927744], [-75.1660703529122, 39.91626251173865], [-75.16625308783345, 39.91610748428033], [-75.16655903170893, 39.916150946133435], [-75.16663991052377, 39.916159766704645], [-75.16691468853075, 39.91619073467473], [-75.16713088933987, 39.91622288271296], [-75.16726067065795, 39.9162406712556], [-75.16756761598329, 39.91627557347753], [-75.16820192817089, 39.916355426603396], [-75.1685957494029, 39.91640931780223], [-75.16890694947675, 39.91645146085674], [-75.16924405937185, 39.91649823903264], [-75.17020855613275, 39.91663256812315], [-75.170634073127, 39.91668920081077], [-75.17127261085616, 39.916779653894714], [-75.17125279571084, 39.916871956868036], [-75.17113001788468, 39.91742438166275], [-75.17098550451631, 39.91815003940139], [-75.17071125143731, 39.91939499497743], [-75.17044815178282, 39.920640631710256], [-75.17017980089858, 39.92188608861979], [-75.16988103061077, 39.92313243740692], [-75.16962817132318, 39.92437326570684], [-75.16892030047269, 39.924287373119476]]]}}, {"id": "2540", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16287668520249, 39.923490131538706], [-75.16231953573171, 39.923430442728105], [-75.1618619848913, 39.92337284611736], [-75.16131080610701, 39.923298048221284], [-75.16072531645987, 39.92322056361926], [-75.16027112929116, 39.923157216881314], [-75.15974141769028, 39.92308504152582], [-75.15819358653324, 39.922892915678254], [-75.15662762676548, 39.92268960326718], [-75.15672342494948, 39.92224299041257], [-75.156796516091, 39.921888314809685], [-75.15689398554146, 39.92145832561094], [-75.15699075641116, 39.92100848552829], [-75.1570547827128, 39.920717378930306], [-75.15716320987288, 39.92021274919351], [-75.15743363710435, 39.91896268003674], [-75.15799330145335, 39.919026931126155], [-75.15846220388505, 39.919093210586034], [-75.15899792339451, 39.919164686799725], [-75.15927770206909, 39.917915040802065], [-75.15980867343593, 39.91798471762554], [-75.16027622489918, 39.918045150410435], [-75.16082734368273, 39.918117892288045], [-75.16076687369943, 39.91835495135038], [-75.16054149074061, 39.919362121589884], [-75.16108816764115, 39.91943533199412], [-75.1615455351176, 39.91949156402772], [-75.16211103770841, 39.91956753173947], [-75.1626550419118, 39.91962698782571], [-75.16314273163647, 39.919693472771144], [-75.16349120843111, 39.919736838873085], [-75.16369594368183, 39.91975159718489], [-75.16423150848532, 39.919836010851256], [-75.16471654044618, 39.91989829974017], [-75.1652600965997, 39.919967040755616], [-75.1658101777234, 39.92004322536124], [-75.16627794530147, 39.92010526444298], [-75.16682969221823, 39.9201734806232], [-75.16673306316912, 39.92061961672358], [-75.16664636782535, 39.92098735572832], [-75.16656347213839, 39.92141911548795], [-75.16646623869181, 39.921855197797015], [-75.16637595907936, 39.92223483130462], [-75.16628590005845, 39.92266925601219], [-75.16470923712359, 39.922467007942586], [-75.16461974880022, 39.92290641446184], [-75.16453214323411, 39.923260508287704], [-75.16444168803092, 39.92370306358899], [-75.16287668520249, 39.923490131538706]]]}}, {"id": "2580", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15240746423844, 39.927130571882536], [-75.1529533453167, 39.92720302152638], [-75.15342854072523, 39.92726934578088], [-75.15398336057119, 39.92733734541758], [-75.15554667164844, 39.92755123944602], [-75.1571168474594, 39.92775353680199], [-75.15866709929699, 39.92795628486429], [-75.15857052894737, 39.92838214301248], [-75.15848925602083, 39.92875090689285], [-75.15839497176025, 39.929178905161756], [-75.15995614612446, 39.92938155204747], [-75.16153046192896, 39.929591284894535], [-75.16309117136602, 39.92979380701216], [-75.16338146889682, 39.92986525821064], [-75.16319433056199, 39.930076471943146], [-75.16300370235683, 39.93022959739751], [-75.16278574007087, 39.9304093661476], [-75.16259778115175, 39.9305545798918], [-75.16222661352487, 39.9308742769223], [-75.1621537216671, 39.93093059539248], [-75.1610476840258, 39.931818487024046], [-75.16085767493169, 39.93201319965672], [-75.16076083769534, 39.93207582530995], [-75.15951722792633, 39.93310160797397], [-75.15914227171163, 39.933050915094306], [-75.15757876989201, 39.93283873487357], [-75.1567733699516, 39.93273378818531], [-75.15602573352452, 39.932636363890424], [-75.15557261973682, 39.93258161087081], [-75.1549548454441, 39.93249488861155], [-75.15445554459198, 39.93242116831609], [-75.15455750244512, 39.932002815126815], [-75.15464459110277, 39.93162631379359], [-75.15473607929162, 39.93120911111829], [-75.15422433573809, 39.931143775815066], [-75.15376277959595, 39.93108096109362], [-75.15316104020742, 39.931001671141985], [-75.1525682723036, 39.930917591355296], [-75.1521860472246, 39.930864041886686], [-75.15212938245182, 39.93085981821071], [-75.15159839964217, 39.93078338877957], [-75.15168104962747, 39.93037150572599], [-75.15175708055578, 39.929998343580124], [-75.15185379937405, 39.92955649591009], [-75.1519576142183, 39.929112741108035], [-75.15203395950508, 39.928763335951636], [-75.1521315559633, 39.92833790206516], [-75.15240746423844, 39.927130571882536]]]}}, {"id": "2590", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15846669618458, 39.9398478896172], [-75.15811781981508, 39.93980920480518], [-75.15768862512259, 39.9397483279569], [-75.15698633162224, 39.939664548104865], [-75.15659330182257, 39.93962115718669], [-75.15611041222874, 39.9395619272694], [-75.15619502797918, 39.939153026786194], [-75.15462893269908, 39.938957131228506], [-75.15397679316145, 39.938873430538216], [-75.15306544594553, 39.93876416001893], [-75.15267934188661, 39.93872515703972], [-75.15195755705619, 39.93859295052562], [-75.15149502996697, 39.938515466014806], [-75.15164784696518, 39.93782885397875], [-75.15175921360806, 39.93733271818981], [-75.15022910915481, 39.93692230122762], [-75.14993485024351, 39.936837033602636], [-75.14933253818546, 39.93666527501054], [-75.14869493443304, 39.936487499408756], [-75.14828584702035, 39.93638079516197], [-75.14781277718367, 39.93625691399449], [-75.14690568404735, 39.9360112996903], [-75.1468092382315, 39.93598385223401], [-75.14635692710937, 39.935862535506075], [-75.1461662451491, 39.93581096765408], [-75.14574096872285, 39.93569595309311], [-75.14525968884901, 39.935566241560124], [-75.14488902620543, 39.93546628492709], [-75.14465707357219, 39.93540373333851], [-75.14436109370848, 39.935323913654216], [-75.14328760313309, 39.93503600592176], [-75.14277050236433, 39.93489864158725], [-75.14268624964924, 39.93488056541532], [-75.13592531531002, 39.93446840748529], [-75.13594721789872, 39.933949377522914], [-75.13594247367945, 39.93364611772414], [-75.13591544150067, 39.93250826743045], [-75.14360127030119, 39.933080028183824], [-75.14369480417511, 39.933107641143216], [-75.14482527798222, 39.933346025244454], [-75.1450914112253, 39.9333903874229], [-75.14531318892281, 39.933436229294145], [-75.14551182546641, 39.93347467759524], [-75.14571046095703, 39.93350277368099], [-75.14731729742391, 39.933651683789506], [-75.14825607389699, 39.93377497895769], [-75.14926402509727, 39.93390550522783], [-75.1499392832503, 39.93400602960063], [-75.15007586602405, 39.93403304907899], [-75.15021231956267, 39.934063480331005], [-75.15031282822507, 39.93416315637383], [-75.15080572488877, 39.93429160799937], [-75.15167045659746, 39.93453199712968], [-75.15234043955054, 39.934718232313166], [-75.15310633000142, 39.9349230500224], [-75.15386273893306, 39.935127088346704], [-75.15443785777477, 39.93528559350323], [-75.15539107190511, 39.93554827087476], [-75.15576519264292, 39.93565086366971], [-75.15625429623226, 39.935782840313955], [-75.15689217294924, 39.93594109524923], [-75.15788163616912, 39.936213972322236], [-75.15842517649286, 39.936373174154696], [-75.15995033552399, 39.936764558734026], [-75.15986230486071, 39.937165887836954], [-75.15978638867396, 39.9374766552891], [-75.15974992567791, 39.93765373413632], [-75.15968367177305, 39.93799500206825], [-75.15961913672396, 39.9382764785116], [-75.15957744532204, 39.938470203570915], [-75.15955435919798, 39.938555366234546], [-75.15952744263556, 39.938694925124324], [-75.15941733188711, 39.939182273711424], [-75.15925493071721, 39.939952914944996], [-75.15888664005992, 39.93989937766563], [-75.15846669618458, 39.9398478896172]]]}}, {"id": "2630", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1318704588599, 39.9211322128991], [-75.1312705786865, 39.919909966030175], [-75.13118246083951, 39.91951782333994], [-75.13075734710877, 39.918479756627136], [-75.13044135049604, 39.91756578100007], [-75.1300412803778, 39.916090610293544], [-75.1295140079632, 39.91321761603653], [-75.14158064726648, 39.914398551222284], [-75.1461190450627, 39.914937993589774], [-75.14735868886102, 39.915091345068035], [-75.14771316406136, 39.91513631334861], [-75.14799356383051, 39.91517046305146], [-75.14970714683753, 39.91540214937294], [-75.15023443292301, 39.91547013783974], [-75.15073912611835, 39.91552380982455], [-75.15127792582615, 39.91560195308391], [-75.15101595295502, 39.91684327166353], [-75.15155446180752, 39.916913447170124], [-75.15204738119105, 39.91697819735143], [-75.15259766026692, 39.917049622129376], [-75.15251098406672, 39.917482617922246], [-75.1524299043685, 39.9178636858211], [-75.15232798490773, 39.91830105752559], [-75.15423814681868, 39.918546488226774], [-75.15415355058, 39.91899333036412], [-75.15406037255923, 39.919362578769324], [-75.15397611959756, 39.91979868933833], [-75.1538722607347, 39.92023941337758], [-75.15379242224721, 39.92061680613929], [-75.1536917219108, 39.921048699506386], [-75.15360740549215, 39.92147731647919], [-75.15353559158295, 39.921822912732566], [-75.15345227740386, 39.92220486778315], [-75.15345589424248, 39.922291943154995], [-75.15505645424587, 39.922496339121075], [-75.15496353354324, 39.922934871645005], [-75.15488799472244, 39.92327077043984], [-75.15479577404375, 39.92367880388882], [-75.1532106207868, 39.92347414292115], [-75.15311613449238, 39.92390662447898], [-75.15303929542505, 39.92426130973712], [-75.15293997770155, 39.92468076204786], [-75.1520763473565, 39.924569355082475], [-75.15134300412029, 39.92447526104034], [-75.15010195707502, 39.92430629400298], [-75.14940530380834, 39.92420875299544], [-75.14784299931269, 39.92401663397686], [-75.14766370437735, 39.92399190822372], [-75.14747915475772, 39.92396645833915], [-75.14723226969029, 39.92393241119718], [-75.14691152586792, 39.92388817759061], [-75.1456046980864, 39.92369476947815], [-75.14438429490448, 39.923553728741865], [-75.14426060016787, 39.923536497015284], [-75.14407761076028, 39.92351198528674], [-75.14321276747276, 39.9234003157587], [-75.14306057446777, 39.92339113422129], [-75.14126672725665, 39.92355495998492], [-75.13966358535917, 39.92370303000068], [-75.13314600311433, 39.92393052365494], [-75.13298926334858, 39.92358667762832], [-75.13284091412436, 39.92326123439852], [-75.13268550142756, 39.922920294248364], [-75.13249918433769, 39.922511552563755], [-75.13233494506291, 39.92215124013102], [-75.13208108469027, 39.92159430463181], [-75.1318704588599, 39.9211322128991]]]}}, {"id": "2640", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15662762676548, 39.92268960326718], [-75.15672342494948, 39.92224299041257], [-75.156796516091, 39.921888314809685], [-75.15689398554146, 39.92145832561094], [-75.15699075641116, 39.92100848552829], [-75.1570547827128, 39.920717378930306], [-75.15716320987288, 39.92021274919351], [-75.15743363710435, 39.91896268003674], [-75.15799330145335, 39.919026931126155], [-75.15846220388505, 39.919093210586034], [-75.15899792339451, 39.919164686799725], [-75.15927770206909, 39.917915040802065], [-75.15980867343593, 39.91798471762554], [-75.16027622489918, 39.918045150410435], [-75.16082734368273, 39.918117892288045], [-75.16076687369943, 39.91835495135038], [-75.16054149074061, 39.919362121589884], [-75.16108816764115, 39.91943533199412], [-75.1615455351176, 39.91949156402772], [-75.16211103770841, 39.91956753173947], [-75.1626550419118, 39.91962698782571], [-75.16314273163647, 39.919693472771144], [-75.16349120843111, 39.919736838873085], [-75.16369594368183, 39.91975159718489], [-75.16423150848532, 39.919836010851256], [-75.16471654044618, 39.91989829974017], [-75.1652600965997, 39.919967040755616], [-75.1658101777234, 39.92004322536124], [-75.16627794530147, 39.92010526444298], [-75.16682969221823, 39.9201734806232], [-75.16673306316912, 39.92061961672358], [-75.16664636782535, 39.92098735572832], [-75.16656347213839, 39.92141911548795], [-75.16646623869181, 39.921855197797015], [-75.16637595907936, 39.92223483130462], [-75.16628590005845, 39.92266925601219], [-75.16470923712359, 39.922467007942586], [-75.16461974880022, 39.92290641446184], [-75.16453214323411, 39.923260508287704], [-75.16444168858514, 39.923703060877436], [-75.164441712585, 39.92370306414265], [-75.16601414985686, 39.923904537964795], [-75.16684655547401, 39.924005783707884], [-75.16759012260145, 39.9241069400228], [-75.1684766725506, 39.924227797333074], [-75.16892030047269, 39.924287373119476], [-75.16962817132318, 39.92437326570684], [-75.16936345812617, 39.9255916618934], [-75.16858370524805, 39.925735735040625], [-75.16827005616757, 39.92579796641468], [-75.16814853042906, 39.92587633156481], [-75.16735196028873, 39.92658051443639], [-75.16707544714461, 39.9267996097307], [-75.16693484483235, 39.92696974221468], [-75.16680492486368, 39.9270372236799], [-75.16607242906038, 39.92766380901158], [-75.16561566805156, 39.92804872141151], [-75.16499105619756, 39.92860420597811], [-75.16491618038036, 39.9286972752806], [-75.1647192203154, 39.928806524439224], [-75.16350489234422, 39.92983116343739], [-75.16338146889682, 39.92986525821064], [-75.16309117136602, 39.92979380701216], [-75.16153046192896, 39.929591284894535], [-75.15995614612446, 39.92938155204747], [-75.15839497176025, 39.929178905161756], [-75.15848925602083, 39.92875090689285], [-75.15857052894737, 39.92838214301248], [-75.15866709929699, 39.92795628486429], [-75.1571168474594, 39.92775353680199], [-75.15554667164844, 39.92755123944602], [-75.15563576259312, 39.92712161735258], [-75.15572893564023, 39.92674641991947], [-75.15581744065317, 39.92632687949197], [-75.1559164878003, 39.92589050049036], [-75.15599714266362, 39.92553379424899], [-75.15609589958217, 39.92510492938023], [-75.15618955933125, 39.92467252257764], [-75.15627477264952, 39.924315763437455], [-75.15637192114352, 39.923887217923706], [-75.15645544526281, 39.92347644043542], [-75.1565294138035, 39.92314220999085], [-75.15662765076334, 39.92268960638305], [-75.15662762676548, 39.92268960326718]]]}}, {"id": "2690", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15489826951772, 39.92327797146346], [-75.15497380829576, 39.922942072661854], [-75.15506672897632, 39.92250353922945], [-75.15346616873813, 39.922299144307004], [-75.15346255071678, 39.92221206890902], [-75.15354586601622, 39.92183011387746], [-75.15361767988075, 39.92148451761769], [-75.15370199510878, 39.92105589971063], [-75.15380269652539, 39.92062400726126], [-75.1538825337952, 39.92024661446601], [-75.15398639263685, 39.91980588951722], [-75.15407064667633, 39.91936977986741], [-75.15416382465118, 39.919000531453925], [-75.1542484208313, 39.91855368930901], [-75.15233825754619, 39.91830825785229], [-75.15244017808647, 39.91787088706541], [-75.15252125773569, 39.91748981915929], [-75.15260793387961, 39.917056823358735], [-75.15205765356556, 39.9169853986036], [-75.15156473532356, 39.91692064759268], [-75.15102622640349, 39.91685047213436], [-75.15128819791128, 39.915609154405075], [-75.15074939813464, 39.91553101119397], [-75.15024470491215, 39.91547733835416], [-75.14971741872614, 39.91540935083481], [-75.14800383550272, 39.91517766466686], [-75.14772343569865, 39.915143514989126], [-75.1473689616231, 39.91509854676679], [-75.14612931650127, 39.91494519537304], [-75.14159091814288, 39.91440575341209], [-75.13872782173677, 39.9141259461049], [-75.13793082006016, 39.91404796537359], [-75.13726032576368, 39.9139823580093], [-75.12952301127594, 39.91322497327643], [-75.12938090457546, 39.912194977523626], [-75.12929415660349, 39.91128618901754], [-75.1292298762013, 39.909901268757224], [-75.12921733578632, 39.90882900645652], [-75.1292406795676, 39.9082234082292], [-75.12940513232671, 39.90663636886563], [-75.12985379169726, 39.904642217374864], [-75.13069494407777, 39.90217293283839], [-75.1327178094609, 39.897390573963655], [-75.1348696479386, 39.89311321347944], [-75.1359345703203, 39.89118734178817], [-75.13780510691831, 39.88911936827713], [-75.13961854514817, 39.88733085338345], [-75.14112646870511, 39.88593705815409], [-75.14252395122821, 39.88515388803688], [-75.14461527964127, 39.88434609605898], [-75.14617297445321, 39.88411106456714], [-75.15137971684672, 39.883817672254196], [-75.15314338339849, 39.88370461388623], [-75.15469630929877, 39.88359417687561], [-75.15636574733466, 39.883475430191595], [-75.15764030186536, 39.88338475458971], [-75.15869562216086, 39.883301027324336], [-75.15998070079377, 39.88319905781422], [-75.16218029669794, 39.88291468475379], [-75.16464852646868, 39.887612504005034], [-75.16231653121818, 39.903951906157495], [-75.1619044955441, 39.90583847214684], [-75.16114417983509, 39.90935310989714], [-75.16092399166732, 39.91038864980739], [-75.16083311410267, 39.91080332265233], [-75.16080074080156, 39.910951036001634], [-75.16071298726149, 39.91135144414386], [-75.16054253696338, 39.912112677462034], [-75.16040256514059, 39.91276406486859], [-75.15978736536962, 39.912698996812274], [-75.15921356221939, 39.91262326931161], [-75.15864051899995, 39.91254946084058], [-75.15802971298264, 39.91247023297553], [-75.15777749991067, 39.91370832832], [-75.15749570119608, 39.91496728685789], [-75.15775688603703, 39.915010258595935], [-75.15810575800695, 39.915055876134055], [-75.15829429585601, 39.91508714893332], [-75.15799237305002, 39.91648125337755], [-75.15852306406484, 39.91654718816952], [-75.15902078101126, 39.91660252449943], [-75.15956142036487, 39.91667986900045], [-75.15928800107181, 39.917922241987704], [-75.15900822138774, 39.919171887983964], [-75.15847250184508, 39.919100410918155], [-75.1580036004885, 39.91903413242698], [-75.15744393607051, 39.91896988138783], [-75.15717350899975, 39.920219950568786], [-75.15706508190462, 39.92072458031527], [-75.15700105567463, 39.921015686018734], [-75.15690428365927, 39.92146552698385], [-75.15680681543283, 39.92189551621777], [-75.15673372433726, 39.92225019182717], [-75.15663792624514, 39.922696803790075], [-75.15653968758393, 39.92314941084095], [-75.15646572025517, 39.92348364131862], [-75.15638219501982, 39.923894418787825], [-75.15480604772165, 39.92368600489419], [-75.15489826951772, 39.92327797146346]]]}}, {"id": "2720", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13591544150067, 39.93250826743045], [-75.13572278399747, 39.930651314087626], [-75.13545651269023, 39.929515778826804], [-75.13480120888826, 39.92775096029259], [-75.134307845383, 39.92662160069372], [-75.13406431234948, 39.925957337893244], [-75.13315119431806, 39.9239352067238], [-75.13668980894909, 39.9238068744248], [-75.1399746956378, 39.923674297131654], [-75.14321276747276, 39.9234003157587], [-75.14407761076028, 39.92351198528674], [-75.14426060016787, 39.923536497015284], [-75.14438429490448, 39.923553728741865], [-75.1456046980864, 39.92369476947815], [-75.14691152586792, 39.92388817759061], [-75.14723226969029, 39.92393241119718], [-75.14747915475772, 39.92396645833915], [-75.14766370437735, 39.92399190822372], [-75.14784299931269, 39.92401663397686], [-75.14940530380834, 39.92420875299544], [-75.15010195707502, 39.92430629400298], [-75.15134300412029, 39.92447526104034], [-75.1520763473565, 39.924569355082475], [-75.15293997770155, 39.92468076204786], [-75.15303929542505, 39.92426130973712], [-75.15311613449238, 39.92390662447898], [-75.1532106207868, 39.92347414292115], [-75.15479577404375, 39.92367880388882], [-75.15637192114352, 39.923887217923706], [-75.15627477264952, 39.924315763437455], [-75.15618955933125, 39.92467252257764], [-75.15609589958217, 39.92510492938023], [-75.15599714266362, 39.92553379424899], [-75.1559164878003, 39.92589050049036], [-75.15581744065317, 39.92632687949197], [-75.15572893564023, 39.92674641991947], [-75.15563576259312, 39.92712161735258], [-75.15554667164844, 39.92755123944602], [-75.15398336057119, 39.92733734541758], [-75.15342854072523, 39.92726934578088], [-75.1529533453167, 39.92720302152638], [-75.15240746423844, 39.927130571882536], [-75.1521315559633, 39.92833790206516], [-75.15203395950508, 39.928763335951636], [-75.1519576142183, 39.929112741108035], [-75.15185379937405, 39.92955649591009], [-75.15175708055578, 39.929998343580124], [-75.15168104962747, 39.93037150572599], [-75.15159839964217, 39.93078338877957], [-75.15212938245182, 39.93085981821071], [-75.1521860472246, 39.930864041886686], [-75.1525682723036, 39.930917591355296], [-75.15316104020742, 39.931001671141985], [-75.15376277959595, 39.93108096109362], [-75.15422433573809, 39.931143775815066], [-75.15473607929162, 39.93120911111829], [-75.15464459110277, 39.93162631379359], [-75.15455750244512, 39.932002815126815], [-75.15445554459198, 39.93242116831609], [-75.1549548454441, 39.93249488861155], [-75.15557261973682, 39.93258161087081], [-75.15602573352452, 39.932636363890424], [-75.1567733699516, 39.93273378818531], [-75.15757876989201, 39.93283873487357], [-75.15914227171163, 39.933050915094306], [-75.15951722792633, 39.93310160797397], [-75.15902852463303, 39.93351048827205], [-75.15901557887598, 39.93365554802643], [-75.15887096104613, 39.93429109526247], [-75.15877321016966, 39.93472158980898], [-75.15875973572469, 39.9347988990621], [-75.15874403484449, 39.93488898490281], [-75.15866947681553, 39.93522776078812], [-75.15842517649286, 39.936373174154696], [-75.15788163616912, 39.936213972322236], [-75.15689217294924, 39.93594109524923], [-75.15625429623226, 39.935782840313955], [-75.15576519264292, 39.93565086366971], [-75.15539107190511, 39.93554827087476], [-75.15443785777477, 39.93528559350323], [-75.15386273893306, 39.935127088346704], [-75.15310633000142, 39.9349230500224], [-75.15234043955054, 39.934718232313166], [-75.15167045659746, 39.93453199712968], [-75.15080572488877, 39.93429160799937], [-75.15031282822507, 39.93416315637383], [-75.15021231956267, 39.934063480331005], [-75.15007586602405, 39.93403304907899], [-75.1499392832503, 39.93400602960063], [-75.14926402509727, 39.93390550522783], [-75.14825607389699, 39.93377497895769], [-75.14731729742391, 39.933651683789506], [-75.14571046095703, 39.93350277368099], [-75.14551182546641, 39.93347467759524], [-75.14531318892281, 39.933436229294145], [-75.1450914112253, 39.9333903874229], [-75.14482527798222, 39.933346025244454], [-75.14369480417511, 39.933107641143216], [-75.14360127030119, 39.933080028183824], [-75.13591544150067, 39.93250826743045]]]}}, {"id": "3368", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.19873901022478, 39.96896474723525], [-75.2006825037777, 39.968748509689675], [-75.2005854865362, 39.968225300257366], [-75.20048108991301, 39.96768143968206], [-75.2003766608814, 39.96712547684685], [-75.20027320729024, 39.9665681236714], [-75.20017113270373, 39.9660065518617], [-75.2000648715532, 39.96545486280315], [-75.19996167948639, 39.96489660500567], [-75.19985985277751, 39.96433764219597], [-75.19975578592744, 39.963778229411936], [-75.19964817823953, 39.963167834578144], [-75.19954402181146, 39.96261317862635], [-75.19943697827972, 39.96204337101509], [-75.20013716043388, 39.96196405580526], [-75.20076713890572, 39.9622889342618], [-75.2019296437978, 39.96289648722051], [-75.2023438055402, 39.96313896353822], [-75.20359833000241, 39.96392299732029], [-75.20387347516974, 39.964090178702016], [-75.204539731006, 39.96451398788996], [-75.20546777001317, 39.965091006712015], [-75.20649665464367, 39.965725642430144], [-75.20684764376574, 39.965941337176766], [-75.20756081755907, 39.966382069702114], [-75.20846364890292, 39.96695085866885], [-75.20954182337731, 39.967618069234746], [-75.2097592173279, 39.96775147153196], [-75.2101028280384, 39.967962921774266], [-75.21133586950056, 39.96872707840927], [-75.2115166052264, 39.96965576250502], [-75.21013836492584, 39.969805350585304], [-75.20920137525263, 39.969908239553455], [-75.20822768613749, 39.97001688531799], [-75.2071715109633, 39.970134859313845], [-75.20664160684923, 39.97018882439134], [-75.20584308660476, 39.97027633607101], [-75.20529383804944, 39.97032724144262], [-75.2047464601045, 39.97038654791297], [-75.20430221981374, 39.970442136607105], [-75.20418303772176, 39.97042967509766], [-75.20360222096758, 39.970262038082865], [-75.19873901022478, 39.96896474723525]]]}}, {"id": "3406", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12286983433349, 39.999348225421684], [-75.12189645061733, 39.99922197325878], [-75.12141485963465, 39.99916050071101], [-75.12093406713585, 39.99909845694048], [-75.12043816082301, 39.99903124892896], [-75.11995841616955, 39.99897607104749], [-75.11948064078999, 39.99891846474961], [-75.11899483260045, 39.99885363710453], [-75.1181427263644, 39.99874006892576], [-75.11760779479803, 39.998672192592046], [-75.11705540656078, 39.99860245187495], [-75.11713718954385, 39.998204954618366], [-75.11720552832361, 39.99784824220488], [-75.11726460987974, 39.99759085143173], [-75.117284481552, 39.99749552058664], [-75.11738376209497, 39.997007889103365], [-75.11687527895985, 39.99694403320292], [-75.11641424499777, 39.99688234038955], [-75.11594728557785, 39.996823352482735], [-75.11544873273199, 39.996754717356865], [-75.11420376026825, 39.99660020163007], [-75.11378290403151, 39.99654566844975], [-75.11349353916128, 39.996509398474814], [-75.11335627413635, 39.99651837529572], [-75.11399780861547, 39.99614675119862], [-75.11443934320606, 39.99590407882544], [-75.11488815880926, 39.995651207425055], [-75.11577971940605, 39.99516863261082], [-75.11804388596643, 39.99392739215795], [-75.11827306308207, 39.99380494945997], [-75.11969525744287, 39.9930176547012], [-75.12031000021946, 39.99267372653925], [-75.12155268191938, 39.99200126868043], [-75.1225598379027, 39.99142904589025], [-75.12368779210668, 39.9908370053132], [-75.12443263724062, 39.99041437725906], [-75.12467941648082, 39.990280061064965], [-75.1254917782044, 39.98983790470489], [-75.12583337764181, 39.99015080201797], [-75.12594819181096, 39.990231008067155], [-75.12581548092545, 39.990321253648226], [-75.12575053444866, 39.99038664295684], [-75.1257966876318, 39.99046143190336], [-75.12619132496967, 39.99081410638479], [-75.12624403982602, 39.99086840531347], [-75.12671073514534, 39.991301669390836], [-75.1268304877983, 39.99140473196538], [-75.12711132039227, 39.991717809559425], [-75.12754649303128, 39.992086888554475], [-75.12847508975587, 39.992960955217434], [-75.12888944298902, 39.99337210329976], [-75.12928045888196, 39.993699377473], [-75.12949697864121, 39.993869232807484], [-75.13016923992892, 39.99438670726852], [-75.1306287246693, 39.9947099015428], [-75.13108811546374, 39.995035612799455], [-75.13151375949263, 39.995312789866986], [-75.1319487531092, 39.995584771470156], [-75.13215673288484, 39.99571908852154], [-75.13236737143946, 39.995777072436475], [-75.13283321527076, 39.99583834307155], [-75.13335735075286, 39.995906073736414], [-75.13389642109973, 39.995968736218344], [-75.13379804534607, 39.99650859349995], [-75.13372632073936, 39.99681997186189], [-75.13357826719061, 39.99746271908161], [-75.133433859375, 39.99813610118974], [-75.13335178223137, 39.998538430656275], [-75.13323677148799, 39.99905883822483], [-75.13289707808269, 40.000644377340706], [-75.1325783050674, 40.002135590534316], [-75.13225594170935, 40.00363274185506], [-75.13206592362307, 40.00455975090279], [-75.13195017894888, 40.0051571594535], [-75.13165438461807, 40.00516218906765], [-75.1313120905648, 40.005165243621754], [-75.13096967892228, 40.0051647840814], [-75.13062734388893, 40.00516042473138], [-75.13028526365714, 40.00515189122062], [-75.12994327233797, 40.005141571084394], [-75.12960127164347, 40.005130493753214], [-75.1292592889243, 40.00511855803528], [-75.12891735401352, 40.005105659191635], [-75.12857548972254, 40.00509169232322], [-75.12823372347772, 40.00507655443872], [-75.12787293070507, 40.00505914287225], [-75.12755058678738, 40.005042349869555], [-75.12720920671373, 40.00502344244802], [-75.12686775392743, 40.005004480086335], [-75.1265262525044, 40.00498535521095], [-75.12618475093373, 40.004965874307906], [-75.12584329110216, 40.004945832900546], [-75.12550191799478, 40.00492503739572], [-75.12516067340198, 40.00490328601852], [-75.12481960245576, 40.004880381575894], [-75.12447874922599, 40.0048561241479], [-75.12413815881776, 40.004830317442874], [-75.12394932729268, 40.0048150263638], [-75.12416377417915, 40.00383050497931], [-75.12441189333515, 40.002635747370185], [-75.1247327042775, 40.001125212840236], [-75.12482584559972, 40.00073781277301], [-75.12495304812299, 40.000118295958615], [-75.1250593976361, 39.99962937005506], [-75.1240010392231, 39.99949471531793], [-75.12286983433349, 39.999348225421684]]]}}, {"id": "3407", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23621692036184, 39.954772282617576], [-75.23494587215642, 39.95461531414442], [-75.23421282714466, 39.95452278160557], [-75.23310495493705, 39.95438500762811], [-75.2321531848757, 39.954263206249884], [-75.23125273842643, 39.95414472489516], [-75.22999964359012, 39.9539974791832], [-75.23011292426536, 39.95345780357851], [-75.2302067744439, 39.95299633919074], [-75.2303245095811, 39.95247656068331], [-75.23063630139251, 39.95092370508727], [-75.2307949154714, 39.95017367604613], [-75.23096092059897, 39.94943998654951], [-75.23106724674322, 39.94890952251901], [-75.23109712127248, 39.94874762614672], [-75.23116356346483, 39.948444207728265], [-75.23127144381539, 39.94791010072773], [-75.23360540677021, 39.94735220242095], [-75.23365672143521, 39.94728618681448], [-75.23369678154249, 39.946626143747736], [-75.23370512010376, 39.94637437310582], [-75.23370607046287, 39.9461446490347], [-75.233752519756, 39.94467113338882], [-75.23371815372047, 39.944560304836195], [-75.23418573636991, 39.94423881568086], [-75.23447444548366, 39.94402821946588], [-75.23460058718051, 39.94394722294118], [-75.23521991589762, 39.94349567046655], [-75.23592745137182, 39.94408559216122], [-75.23662273656555, 39.944670466417236], [-75.23669771791725, 39.944750634695254], [-75.23691855078515, 39.945425323267074], [-75.23704771881377, 39.94581994805673], [-75.2372711913911, 39.946464148088374], [-75.23613850521272, 39.9467345520364], [-75.23582936378949, 39.94682710323594], [-75.2358829211119, 39.94691536369008], [-75.23780518132565, 39.94716576557371], [-75.23851335441049, 39.947252263214494], [-75.23908222323139, 39.947328992099386], [-75.23974733758466, 39.94741236360347], [-75.23964252610631, 39.94793342398709], [-75.23954828494823, 39.948400336142036], [-75.23943075805695, 39.948932176911185], [-75.23932370145442, 39.9494647936597], [-75.23927440166064, 39.949684921302314], [-75.23923238939335, 39.949924521244796], [-75.23911844388543, 39.95044725003495], [-75.24069436633458, 39.95064649730623], [-75.24109450326601, 39.950692270332034], [-75.2409791089452, 39.95119910789798], [-75.24092838668925, 39.95145926411795], [-75.2408870413323, 39.95164878569733], [-75.24077833716721, 39.95219409771834], [-75.24065268580777, 39.9527448765007], [-75.24055628665906, 39.95320676603648], [-75.24045055471251, 39.953734543746975], [-75.24034677116326, 39.95426461469576], [-75.24025201420879, 39.954726082272785], [-75.24013867742423, 39.95525346726105], [-75.23816664919339, 39.95501291036174], [-75.23621692036184, 39.954772282617576]]]}}, {"id": "3408", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.19248650438152, 40.00648631915835], [-75.19210817108346, 40.0059917246091], [-75.19202407067375, 40.00588177689373], [-75.19175386735485, 40.005238965345704], [-75.1915353587339, 40.00420107841301], [-75.19141944287965, 40.002882461289495], [-75.19156264214371, 40.00079131936958], [-75.19173829317083, 39.9995496686985], [-75.19209975304122, 39.99825612471282], [-75.19248952170433, 39.997189339779744], [-75.19387315409962, 39.99538054058539], [-75.19391207372766, 39.99533311331511], [-75.19493374887762, 39.99408810699247], [-75.196736443141, 39.992628239307074], [-75.19756018726912, 39.99169754451703], [-75.19966543084527, 39.98983487779526], [-75.20081185837654, 39.98869997403805], [-75.2026800703466, 39.98695844335217], [-75.20360707217432, 39.986030905550386], [-75.20387968529906, 39.985634231063315], [-75.20422970568241, 39.98512491133937], [-75.20439335041645, 39.9841945852112], [-75.2042911849591, 39.98348477637556], [-75.20402042808387, 39.98285613357483], [-75.20322001689851, 39.9816355506211], [-75.20149254570359, 39.98036607676244], [-75.19968966493572, 39.97939206820288], [-75.19768041890876, 39.978526648404426], [-75.19616318765962, 39.9777853486629], [-75.19500983450119, 39.97715118683491], [-75.19422140431261, 39.976595895992624], [-75.19395195788799, 39.976275795675406], [-75.19316767010415, 39.97534404688133], [-75.19423227229858, 39.97523277524366], [-75.19435026987784, 39.97522044197228], [-75.19438620060323, 39.97521668577702], [-75.19440416945793, 39.975214808203454], [-75.19461061691396, 39.97519322869778], [-75.1946275299596, 39.97519146092737], [-75.19466135487802, 39.97518792535294], [-75.19489863948688, 39.97516312254212], [-75.19541223775175, 39.97510346411268], [-75.19575612004209, 39.97506493243013], [-75.19826820790036, 39.97478341244376], [-75.19839849964937, 39.97476979148737], [-75.19881039777384, 39.974723298916544], [-75.19899434128952, 39.97470253666088], [-75.19950589418717, 39.97464789627134], [-75.20173719574609, 39.974395891106035], [-75.20271356807066, 39.97429286709433], [-75.20315398821757, 39.97424639302827], [-75.20372073074057, 39.9741833244477], [-75.20436211013532, 39.97441853729748], [-75.20619218939848, 39.97508936862707], [-75.20662687309331, 39.97524869898679], [-75.20690784221985, 39.975354863382165], [-75.20789261579813, 39.97571861516643], [-75.20860001378342, 39.97598287735243], [-75.2093218325451, 39.97625152325513], [-75.21035888967715, 39.97663732758542], [-75.21129018304462, 39.97698427399767], [-75.21347081820699, 39.977792108227], [-75.21438130047913, 39.97812979671519], [-75.21681601697746, 39.97902753996308], [-75.21925269074791, 39.979936288003984], [-75.21947213701459, 39.980017477693615], [-75.22145350543394, 39.980750514692936], [-75.22248973525193, 39.98113780900851], [-75.22315828235908, 39.98138230866424], [-75.22354641209124, 39.98147582405985], [-75.22367524703087, 39.98151036448287], [-75.22379084515117, 39.98152112708002], [-75.22406693790319, 39.9815094868596], [-75.22516370803253, 39.98133793425713], [-75.22620352276934, 39.98160917075345], [-75.22611408407533, 39.98131069652115], [-75.22598506456495, 39.98110344713947], [-75.2263870091941, 39.98045849853005], [-75.22671454102148, 39.97993866394432], [-75.22720762006905, 39.98011875105071], [-75.22769983954039, 39.98030167955546], [-75.22815173844755, 39.980464672815025], [-75.22879489571393, 39.98070223660668], [-75.22889328745423, 39.98044163690388], [-75.22894558230313, 39.98018044797911], [-75.22896768418192, 39.97991725419923], [-75.22894765996324, 39.97965218987119], [-75.22883996273082, 39.9794043519961], [-75.2286785702593, 39.97916872493492], [-75.22847274984605, 39.97896106777772], [-75.2282261652399, 39.97877771624851], [-75.22797358650385, 39.97859771478237], [-75.22828221080628, 39.97871136403067], [-75.228590933066, 39.97882486230994], [-75.22889973957359, 39.978938231843195], [-75.2292086142462, 39.97905149570235], [-75.22951753986443, 39.97916467603367], [-75.22982650974122, 39.97927779521482], [-75.2301355031137, 39.97939087621543], [-75.23044450507051, 39.979503942133874], [-75.2307535042112, 39.979617016145696], [-75.23106248696217, 39.97973011687391], [-75.23137143593905, 39.97984327096704], [-75.23168033629835, 39.97995649972348], [-75.23198917553752, 39.980069824493164], [-75.23229793874704, 39.980183268375384], [-75.23260660981407, 39.9802968553442], [-75.23291517861085, 39.980410605900985], [-75.23322362317393, 39.98052454389186], [-75.23353193685344, 39.98063869079578], [-75.23384010002718, 39.98075307051039], [-75.2339591056347, 39.98079736322357], [-75.23414810250182, 39.980867705338326], [-75.23445592365209, 39.980982614650586], [-75.2347635565961, 39.98109782622857], [-75.23507097953902, 39.98121335941804], [-75.235377642931, 39.981330075243065], [-75.23568320596944, 39.981448511344695], [-75.23598789645939, 39.98156830421485], [-75.23629195306646, 39.98168908157105], [-75.23659561047401, 39.98181048365511], [-75.2368991025902, 39.9819321398775], [-75.23720266549203, 39.982053684198895], [-75.23750653404826, 39.98217475145208], [-75.23781094088199, 39.98229497371522], [-75.23811612436292, 39.98241398589309], [-75.23842231593397, 39.98253142003323], [-75.2386133941012, 39.98260314982133], [-75.23804864757997, 39.983543684060464], [-75.23724158388768, 39.98484131042433], [-75.23706281145029, 39.985185697132245], [-75.2370231010044, 39.98540656857109], [-75.23703091898771, 39.98562024376696], [-75.23710876338059, 39.98601125589341], [-75.23717648623028, 39.98644054310879], [-75.23725085241536, 39.98680733861259], [-75.2373285938853, 39.98720332445263], [-75.23739313190914, 39.98757243465119], [-75.23748943446314, 39.98799758547654], [-75.2375631490965, 39.988463737913676], [-75.23765550028003, 39.98890523796826], [-75.23564564878774, 39.98930950082446], [-75.23324262339091, 39.989800273494986], [-75.23338610249759, 39.990219535799035], [-75.23352857182715, 39.9906545575648], [-75.23359749986912, 39.99120535295872], [-75.23367398957797, 39.99188356603107], [-75.2323148913867, 39.991816057524225], [-75.23106116474393, 39.9917654288331], [-75.22979802627162, 39.99168345486216], [-75.2280883871952, 39.991602844416676], [-75.22657305587288, 39.99151720367018], [-75.2256632571371, 39.99147004260671], [-75.22566378621964, 39.991668073566466], [-75.22566509729694, 39.99193131606456], [-75.22566638868767, 39.99219455272114], [-75.22566786217705, 39.99245777535982], [-75.22567059622207, 39.99272099508398], [-75.22567375670262, 39.99298421427232], [-75.22567642287149, 39.993247433398864], [-75.22567775345844, 39.99351065738886], [-75.22567828034347, 39.99377388442448], [-75.22567836679947, 39.994037110781896], [-75.22567805954006, 39.99430034019153], [-75.2256773950464, 39.994563568049735], [-75.22567642371229, 39.994826793662824], [-75.22567455961851, 39.99509002216579], [-75.22567010232133, 39.99535327112508], [-75.22566580829185, 39.995616507455004], [-75.22566493201093, 39.995879695505955], [-75.22566923068271, 39.99614311989164], [-75.22568472491396, 39.99640629852711], [-75.22572752377033, 39.996666869140945], [-75.22579555639331, 39.996925115022684], [-75.22586692375164, 39.99718275752846], [-75.22594031130318, 39.99743986415371], [-75.22601504426356, 39.99769675072328], [-75.22608608367426, 39.997954372323946], [-75.22616242542166, 39.99821093374118], [-75.22625254080789, 39.998464825518425], [-75.22634869197259, 39.99871762814741], [-75.2264516454373, 39.99896873497252], [-75.2265638188994, 39.9992172737964], [-75.22669187430814, 39.9994616214683], [-75.22683366659172, 39.99970118297861], [-75.22698380731825, 39.99993764724526], [-75.22713826559976, 40.00017261411573], [-75.22738074986843, 40.00054046140214], [-75.2274782674168, 40.00074008910896], [-75.22641469824666, 40.001239711627804], [-75.22362994305126, 40.00254779807926], [-75.22069649209475, 40.003925603511995], [-75.21922467833316, 40.004616846915006], [-75.2183458956281, 40.005029556222254], [-75.21577504285966, 40.006236852254894], [-75.21457036263607, 40.00680254793726], [-75.21375540196738, 40.0071470494259], [-75.2130457386327, 40.00744703273062], [-75.21076679598913, 40.00855247204905], [-75.20926651565273, 40.00948811598932], [-75.20838974912195, 40.01004762447749], [-75.20810571601615, 40.010233172363904], [-75.20802453324175, 40.01028672353252], [-75.20794649428309, 40.010338203472806], [-75.20786763334567, 40.0103882568974], [-75.20758817071156, 40.010589319998054], [-75.20726214950554, 40.01076818862627], [-75.20725181468926, 40.01087702961448], [-75.20723867124346, 40.01101543243763], [-75.20699226425197, 40.01119720508264], [-75.20613902163231, 40.01182662245913], [-75.20605558240162, 40.01177134883842], [-75.20598118504968, 40.011722063535636], [-75.20583087553283, 40.01162249423849], [-75.20556089846534, 40.01144637353623], [-75.20493269018309, 40.011036554083525], [-75.20411797328548, 40.01067887127354], [-75.20278453559125, 40.0101681675687], [-75.20096916234523, 40.0095052402321], [-75.1995671662532, 40.00910618352392], [-75.19798662998474, 40.00856163000309], [-75.19741007533945, 40.00838739067628], [-75.19662197462642, 40.00814921442729], [-75.19523788704916, 40.00776465223345], [-75.1940657933079, 40.007370640630775], [-75.1931745133191, 40.006946139642274], [-75.19282909227685, 40.006720041632185], [-75.19248650438152, 40.00648631915835]]]}}, {"id": "3409", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.07019764577667, 40.0227256137045], [-75.06976502199616, 40.02238877796283], [-75.06908841755269, 40.02190558456266], [-75.06915891028082, 40.02186413973909], [-75.07063667030565, 40.02109944245052], [-75.07227204176523, 40.02024986964836], [-75.07281645032124, 40.01998177475131], [-75.07333431412346, 40.01971039962692], [-75.07338094307251, 40.01965571477877], [-75.07329423625396, 40.019530663540294], [-75.07302026297972, 40.01925666717689], [-75.0726472240869, 40.01893074978055], [-75.0725767335006, 40.018869237302596], [-75.07239528427003, 40.01837077919597], [-75.07217711141486, 40.01780815616435], [-75.07184777398788, 40.01695356105951], [-75.07164698160777, 40.016426323339644], [-75.07146018939343, 40.01592034300228], [-75.07129561130252, 40.01547628208808], [-75.07121600444587, 40.015290208483194], [-75.07105511498045, 40.01485517334384], [-75.07086519651371, 40.014354069188656], [-75.0704302429624, 40.01316878168165], [-75.07108902366078, 40.01301909786802], [-75.07184515773078, 40.01285876208922], [-75.07263028656905, 40.01269070974734], [-75.0732958299355, 40.012544988908715], [-75.07522940795765, 40.0121026927516], [-75.07622634718078, 40.011676965469704], [-75.07705894581584, 40.01133352361732], [-75.07742627803177, 40.012908300122575], [-75.07753693593935, 40.013356872141166], [-75.07830534931806, 40.013819680943], [-75.07946727058858, 40.01445822732093], [-75.08019987701304, 40.014864913005], [-75.08097132025813, 40.01530229667788], [-75.08236494235803, 40.01606923064227], [-75.08356395690733, 40.01675184627466], [-75.08366059658319, 40.0167978926383], [-75.08264223060424, 40.01789885752839], [-75.081994744679, 40.01858136037251], [-75.08150044657228, 40.019137017951294], [-75.08092459856877, 40.01975684134091], [-75.08042603579892, 40.02030400776405], [-75.0799195555891, 40.0208342774118], [-75.07941418942038, 40.02138857280776], [-75.07912465172282, 40.021706484266794], [-75.07888115254191, 40.021882928661384], [-75.07816413361522, 40.02236282970455], [-75.07750264200587, 40.02280937560482], [-75.07684195149976, 40.02325898385755], [-75.07562310739706, 40.02407587162441], [-75.07396432896537, 40.025074257481116], [-75.07336441926067, 40.02537013618446], [-75.07333312714907, 40.025290965734875], [-75.07019764577667, 40.0227256137045]]]}}, {"id": "3410", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.2339591056347, 39.98079736322357], [-75.23404616346929, 39.98040312776988], [-75.2341418733525, 39.97960344502595], [-75.23417197632504, 39.97926433346443], [-75.23416949834088, 39.97917886302244], [-75.23408204704704, 39.978734035672794], [-75.23401475383362, 39.978362870427425], [-75.23391622064608, 39.977824372158395], [-75.23383619769047, 39.97742070897658], [-75.23380825801765, 39.97726930314024], [-75.23369114722355, 39.976643925147776], [-75.23277250140019, 39.97674721451288], [-75.23178329749751, 39.97685325505881], [-75.23149148084414, 39.97530596816591], [-75.23119487993743, 39.97371076200501], [-75.23095604779093, 39.972431121830894], [-75.23066592674994, 39.97089571533209], [-75.2316186944593, 39.970790477756395], [-75.23257362152906, 39.970684110217924], [-75.23336893261782, 39.97059218114643], [-75.23420321472648, 39.970501406483386], [-75.23497433505277, 39.9704167449269], [-75.23569889615287, 39.970337328070315], [-75.23631310132686, 39.97026837795627], [-75.23678070312911, 39.97021782046675], [-75.2374561581777, 39.970142539223346], [-75.23828930295882, 39.970049354997684], [-75.23904602094366, 39.96996385280201], [-75.23913452825445, 39.969894156939084], [-75.23913209514878, 39.969754754208566], [-75.2394792263291, 39.968098598180006], [-75.24046481307757, 39.96821893667362], [-75.24145297711482, 39.96834167726721], [-75.24212447373782, 39.96842525010824], [-75.24275547517408, 39.96850182540956], [-75.2434287755889, 39.968584480317844], [-75.24441601399035, 39.968707975928204], [-75.24547391384, 39.96883780580013], [-75.24515909619272, 39.97036089119962], [-75.24486356416409, 39.971775639167774], [-75.2448856392896, 39.97185524981628], [-75.24495111730269, 39.9721864702484], [-75.24524823877749, 39.97377965868526], [-75.24554128638924, 39.97533147813126], [-75.24609118202632, 39.978301577196724], [-75.24504122364607, 39.978412055657806], [-75.24413970763122, 39.97851841750556], [-75.24324659750818, 39.97861072026858], [-75.24235595224603, 39.97871317642875], [-75.24157570471533, 39.97880044785277], [-75.24078976905467, 39.978888636602434], [-75.23995988823147, 39.97897202874271], [-75.2391258420239, 39.97907096594098], [-75.23918921571732, 39.97941621572664], [-75.23925884612574, 39.97975561433966], [-75.23930359835626, 39.98001699220907], [-75.23937971975117, 39.98042536050394], [-75.23946783594495, 39.98091564453654], [-75.23947488765062, 39.981115960767795], [-75.23941782700196, 39.9812841947847], [-75.2393364320091, 39.9814487492631], [-75.23904360757881, 39.98195194572015], [-75.23874552031107, 39.982383101851674], [-75.2386133941012, 39.98260314982133], [-75.23842231593397, 39.98253142003323], [-75.23811612436292, 39.98241398589309], [-75.23781094088199, 39.98229497371522], [-75.23750653404826, 39.98217475145208], [-75.23720266549203, 39.982053684198895], [-75.2368991025902, 39.9819321398775], [-75.23659561047401, 39.98181048365511], [-75.23629195306646, 39.98168908157105], [-75.23598789645939, 39.98156830421485], [-75.23568320596944, 39.981448511344695], [-75.235377642931, 39.981330075243065], [-75.23507097953902, 39.98121335941804], [-75.2347635565961, 39.98109782622857], [-75.23445592365209, 39.980982614650586], [-75.23414810250182, 39.980867705338326], [-75.2339591056347, 39.98079736322357]]]}}, {"id": "3411", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22537367233548, 39.969518809027754], [-75.22521439736686, 39.96858969330798], [-75.22514103036552, 39.96814671704771], [-75.2250468750093, 39.96758631841902], [-75.22496396018423, 39.96711185914312], [-75.22488803837112, 39.96664398229281], [-75.22481339106439, 39.96620721153563], [-75.22474199418114, 39.96576621718402], [-75.22464125082206, 39.96518496270591], [-75.2245912459582, 39.96489703747408], [-75.22514198038573, 39.96509389861236], [-75.22546341299322, 39.9652056034123], [-75.22556752561768, 39.9651707802169], [-75.22575087538455, 39.965011065857176], [-75.22584462433898, 39.964944331733754], [-75.22593459599196, 39.964904030803716], [-75.22610999450255, 39.96488050967971], [-75.22600799891545, 39.96425105452764], [-75.22620387041475, 39.96333076392879], [-75.22651888853692, 39.96181383932179], [-75.22716073419876, 39.96189346163298], [-75.22767177235322, 39.961956483381094], [-75.22831950768749, 39.96203465368984], [-75.22890005165743, 39.962108580531364], [-75.2294393887058, 39.96217231617399], [-75.22997789457627, 39.96224147031967], [-75.23055280293089, 39.96231103746482], [-75.23111700353813, 39.96238527615233], [-75.23252865584055, 39.96255878324145], [-75.23322361067352, 39.9626449768465], [-75.23381051701594, 39.962713922148495], [-75.23454018565789, 39.96280875270846], [-75.23445932939023, 39.963200941933835], [-75.23437635415527, 39.9635658070285], [-75.23422456767936, 39.9643261508282], [-75.23406328017319, 39.965086532123166], [-75.23390423808061, 39.96584799773842], [-75.23485508281934, 39.9659636960506], [-75.23584294651286, 39.96608663788389], [-75.23650507401216, 39.966168230655015], [-75.2371614548503, 39.96625200566942], [-75.2378184730562, 39.96633140931446], [-75.23750271463467, 39.96785548024659], [-75.23728329128427, 39.96890011837256], [-75.23724127600507, 39.96897856508314], [-75.23729344550368, 39.96926116010406], [-75.2374561581777, 39.970142539223346], [-75.23678070312911, 39.97021782046675], [-75.23631310132686, 39.97026837795627], [-75.23569889615287, 39.970337328070315], [-75.23497433505277, 39.9704167449269], [-75.23420321472648, 39.970501406483386], [-75.23336893261782, 39.97059218114643], [-75.23257362152906, 39.970684110217924], [-75.2316186944593, 39.970790477756395], [-75.23066592674994, 39.97089571533209], [-75.23013130258644, 39.970951605867114], [-75.22970182046944, 39.9710009771368], [-75.22927488529089, 39.97104645009116], [-75.22873632677351, 39.971108667353086], [-75.22798949528075, 39.97119099565426], [-75.22723186273795, 39.97127505125215], [-75.22656776207988, 39.971345030936604], [-75.22584237062186, 39.97143175783036], [-75.22583491592414, 39.971365668757734], [-75.22561691682257, 39.97048021464085], [-75.22537367233548, 39.969518809027754]]]}}, {"id": "3412", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16531767459625, 39.985862954522055], [-75.1645183402784, 39.98576060376892], [-75.16374843716792, 39.985658196097646], [-75.16361511904181, 39.98563622364805], [-75.16295124718621, 39.98554373064669], [-75.1613833728726, 39.98534049571191], [-75.15981211803054, 39.985149374337254], [-75.15995561764252, 39.984505307145], [-75.16005187512609, 39.98407025927032], [-75.16014671826717, 39.983628898433636], [-75.16047074927715, 39.98212965095867], [-75.16125560907027, 39.98222307186988], [-75.16205428012076, 39.98233074924151], [-75.16236008766865, 39.98083813786572], [-75.16315665839294, 39.980942851162624], [-75.16393580353895, 39.98103913365748], [-75.16472468800637, 39.98114600900777], [-75.16551143276519, 39.981245061241], [-75.16585070373783, 39.979715263217045], [-75.16663553032588, 39.97981529385303], [-75.16742031243012, 39.97992619061252], [-75.1675304717212, 39.97940596581951], [-75.1676280204409, 39.97898637261039], [-75.16773197320441, 39.97850834128129], [-75.16960310980627, 39.97875342002229], [-75.16967792544243, 39.97839775201961], [-75.16977694651204, 39.97795828070379], [-75.1699744619065, 39.978280100894736], [-75.17028853504735, 39.97884634054967], [-75.1706003791456, 39.9788799426667], [-75.17121429252416, 39.97895355524523], [-75.17280097114764, 39.97916176707219], [-75.17439470402259, 39.97938126690058], [-75.17429160032444, 39.9798387647821], [-75.17420179283666, 39.98027882369307], [-75.17409937627401, 39.98077776542791], [-75.17397233359998, 39.9813635885929], [-75.1739088664198, 39.981669054259875], [-75.17499251879063, 39.98246110362299], [-75.17531348430072, 39.98271320068983], [-75.17502711544529, 39.98401535462864], [-75.17446476462969, 39.98393718846691], [-75.1739932972147, 39.983876423527335], [-75.17344318835225, 39.98380091296403], [-75.17288889415936, 39.983735751197166], [-75.17264001235985, 39.983706247609604], [-75.17242436921067, 39.98366591017204], [-75.17184895333082, 39.98360012299759], [-75.1715119580545, 39.98509195802337], [-75.17139443540877, 39.98560510985928], [-75.17129204164658, 39.9860765043848], [-75.17117730471297, 39.986607635295094], [-75.17039697199631, 39.98651296182429], [-75.1695756209088, 39.98640739287832], [-75.16877950953383, 39.986307275443664], [-75.1679760361179, 39.986203987335514], [-75.16731922555276, 39.98612259810428], [-75.16675389667743, 39.98605696318333], [-75.16609883186936, 39.985967163689345], [-75.16531767459625, 39.985862954522055]]]}}, {"id": "3414", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.11276124831959, 40.02641186400716], [-75.11273721167133, 40.02625973722888], [-75.11269694601232, 40.026139855005376], [-75.11264127307359, 40.026031131377025], [-75.11253997405726, 40.025940546364005], [-75.11239743559263, 40.025883550536044], [-75.11219565173879, 40.02580984284168], [-75.11201306961777, 40.02575576420475], [-75.11184485327558, 40.02571736433789], [-75.11162389969851, 40.02568734496481], [-75.11145717538353, 40.02561060483848], [-75.11136771254505, 40.02547232346244], [-75.11138100554518, 40.025322974135], [-75.11139530336182, 40.02521202095638], [-75.11145649869287, 40.02492178887383], [-75.11151724422533, 40.024771608827905], [-75.11155118858731, 40.024668781106776], [-75.11155111853812, 40.02454214695341], [-75.11152217264079, 40.02438798964436], [-75.11146539218102, 40.02417946886957], [-75.11140146858001, 40.0238978752842], [-75.11136284617542, 40.02373581970001], [-75.11137275171805, 40.023609414750425], [-75.11133144784338, 40.02351637049445], [-75.11125308109845, 40.02334956411429], [-75.11118647596466, 40.023254281404995], [-75.11110177526518, 40.02313311519714], [-75.11103099730558, 40.023027881026636], [-75.11100130792074, 40.0228928929837], [-75.11099007363472, 40.02279670032437], [-75.11094118311102, 40.022642083552036], [-75.11085179972112, 40.02250188607569], [-75.11070048985525, 40.02241398644175], [-75.11043418841447, 40.022331119294705], [-75.11018165557297, 40.02227926614272], [-75.10997370141887, 40.022236111394484], [-75.10981502257131, 40.022209440059875], [-75.10968715675077, 40.02216045205417], [-75.10936860306877, 40.02213777806876], [-75.10908257018968, 40.022177247355486], [-75.10879579097849, 40.022235887123955], [-75.10861343267538, 40.02230460133006], [-75.10846947746545, 40.022412571771106], [-75.10816720392039, 40.02261283534436], [-75.10807862273626, 40.022708648478115], [-75.10808940525057, 40.02281634179531], [-75.10803565669126, 40.022914876376085], [-75.10792281385686, 40.02299286475194], [-75.10778154248753, 40.02303182489346], [-75.10768455448083, 40.02308715380358], [-75.10751425639339, 40.023102421663594], [-75.1073729845967, 40.02314138040217], [-75.1072096770473, 40.023233555827986], [-75.10704424584219, 40.02331608887378], [-75.10686065894835, 40.02335215568997], [-75.10673673617148, 40.02333011580817], [-75.10659934434501, 40.02326939441552], [-75.10646255127769, 40.02319333576283], [-75.10631124672449, 40.02310543037679], [-75.10613545565268, 40.02300544943703], [-75.10605247374939, 40.02295749164282], [-75.10584846396745, 40.022941281788675], [-75.10566863995791, 40.022944815986456], [-75.10543678370175, 40.023002793046025], [-75.10518210647984, 40.02339025508062], [-75.10508763662361, 40.02350895536784], [-75.1049143487351, 40.02360089684679], [-75.10480855458879, 40.023604262577635], [-75.10462705803057, 40.02354439338227], [-75.10448981833729, 40.02347983364043], [-75.10438324573097, 40.02339679548704], [-75.10429208156532, 40.02330259974516], [-75.10422615514095, 40.02320130771402], [-75.10419937155955, 40.0231201076988], [-75.10419313378188, 40.02302403107859], [-75.10420684398072, 40.02292841226691], [-75.10409693194785, 40.02280308621844], [-75.10390069411592, 40.02258750934463], [-75.10376993748694, 40.02248472580516], [-75.10365124898982, 40.022328497067704], [-75.1035865167461, 40.0221965348681], [-75.10335965788994, 40.02174233905787], [-75.10326807374527, 40.02153109220913], [-75.10319501376617, 40.02135672803016], [-75.10315611454705, 40.02120233779963], [-75.10314578864238, 40.0210831418571], [-75.10317007037045, 40.02097241862366], [-75.10324696224033, 40.02092046779915], [-75.1033671849326, 40.02084992359056], [-75.10344906506903, 40.02072942262346], [-75.10349786087525, 40.02056161716755], [-75.10354663582343, 40.02039388960434], [-75.10359316270015, 40.02023388882772], [-75.1036570026035, 40.01987656897237], [-75.10369705860172, 40.01965930618886], [-75.10373741520444, 40.01952793403622], [-75.10383544166106, 40.019430651520175], [-75.10399315033166, 40.01937884526158], [-75.10417631965316, 40.01934652461066], [-75.10490885747714, 40.01934702238403], [-75.10514063362046, 40.01932905063636], [-75.10533590146107, 40.01928062696204], [-75.10548898171467, 40.01920460947764], [-75.10558162665019, 40.019114922541654], [-75.10567101752486, 40.01896577809034], [-75.10575625037828, 40.018839218600135], [-75.10586011859452, 40.01878112960109], [-75.10602757994306, 40.01868922492428], [-75.10629411473795, 40.01857817906554], [-75.10654007144916, 40.018490600181316], [-75.10672341291877, 40.01841166013801], [-75.10688632285866, 40.018352409187465], [-75.10702670300225, 40.01828255869556], [-75.10713174797101, 40.01819425525665], [-75.10725067393167, 40.01808611062809], [-75.10740250262029, 40.01789052115543], [-75.1074492879232, 40.01778323623494], [-75.1075019453263, 40.01760930469143], [-75.1075484926834, 40.01742389303715], [-75.10753986399301, 40.0172246106732], [-75.1074969191298, 40.0170648597228], [-75.10743534731849, 40.016962640715306], [-75.10733477456357, 40.0168519653075], [-75.10721337838702, 40.01677104914463], [-75.10706904288469, 40.016693842391774], [-75.10774566743571, 40.016581861972575], [-75.1079566960431, 40.01649243760471], [-75.10902514328343, 40.01628798447145], [-75.11136051115065, 40.01586805552725], [-75.11319772024986, 40.01553363305251], [-75.11747690485849, 40.015784203074695], [-75.11757219048913, 40.01558324450789], [-75.11944047531844, 40.01302705559972], [-75.12146940260696, 40.01015438751697], [-75.1233245784329, 40.00755692677894], [-75.12339320057532, 40.007418611434275], [-75.1234268932234, 40.007213386785665], [-75.12394932729268, 40.0048150263638], [-75.12413815881776, 40.004830317442874], [-75.12447874922599, 40.0048561241479], [-75.12481960245576, 40.004880381575894], [-75.12516067340198, 40.00490328601852], [-75.12550191799478, 40.00492503739572], [-75.12584329110216, 40.004945832900546], [-75.12618475093373, 40.004965874307906], [-75.1265262525044, 40.00498535521095], [-75.12686775392743, 40.005004480086335], [-75.12720920671373, 40.00502344244802], [-75.12755058678738, 40.005042349869555], [-75.12787293070507, 40.00505914287225], [-75.12823372347772, 40.00507655443872], [-75.12857548972254, 40.00509169232322], [-75.12891735401352, 40.005105659191635], [-75.1292592889243, 40.00511855803528], [-75.12960127164347, 40.005130493753214], [-75.12994327233797, 40.005141571084394], [-75.13028526365714, 40.00515189122062], [-75.13062734388893, 40.00516042473138], [-75.13096967892228, 40.0051647840814], [-75.1313120905648, 40.005165243621754], [-75.13165438461807, 40.00516218906765], [-75.13195017894888, 40.0051571594535], [-75.13159329869447, 40.006777230208], [-75.13157556350811, 40.006918297371676], [-75.13128895844574, 40.0082654424629], [-75.13122229503595, 40.00838998153134], [-75.13076933610816, 40.010429891484755], [-75.13058658979985, 40.01132621444333], [-75.13039457043838, 40.0122046367008], [-75.13032098038171, 40.012520430993625], [-75.12995568069938, 40.01421690737463], [-75.12991212376365, 40.01438165693674], [-75.12985744154966, 40.01458954235703], [-75.12969626827335, 40.015025138211094], [-75.12954449782806, 40.015628823804676], [-75.1295060820777, 40.01580432267141], [-75.12950279799507, 40.0158893945626], [-75.12958420585664, 40.01596204506945], [-75.12816782747261, 40.01727601049683], [-75.12773597041543, 40.01780744067364], [-75.12728008257253, 40.01855118772663], [-75.12717014834826, 40.0187202445289], [-75.12841230851205, 40.01888818420382], [-75.12828942424522, 40.01931224639612], [-75.12817272187972, 40.019745126505015], [-75.12805743325659, 40.02016776351229], [-75.12793752006728, 40.02058217569274], [-75.12782553628675, 40.02100974360595], [-75.12772254870809, 40.02143541478058], [-75.12766722191142, 40.021678075942006], [-75.1275883473653, 40.02193652409814], [-75.12799561695972, 40.021990003261664], [-75.12832997980297, 40.02203750959046], [-75.1288388007593, 40.02209552698992], [-75.13067747059611, 40.0223264212425], [-75.13165534349513, 40.022466545626095], [-75.13266657267638, 40.02260530897158], [-75.13351806873054, 40.02269961384838], [-75.13517364017464, 40.02288937907387], [-75.13568333923226, 40.02295388314234], [-75.13606727037968, 40.022993869695384], [-75.13680074130902, 40.02266481390887], [-75.13878989832307, 40.02167194894793], [-75.13962410577875, 40.02125554449826], [-75.13989326600749, 40.021143092921015], [-75.14126176526882, 40.020457827767785], [-75.14208211948895, 40.020076769123925], [-75.14246779103715, 40.01992131567765], [-75.1428848436295, 40.01977265716096], [-75.14326097466613, 40.01965955683399], [-75.14363335649988, 40.01956889301005], [-75.14409578705738, 40.019486694076015], [-75.14468710862543, 40.01941183457217], [-75.1453628611309, 40.019380817093726], [-75.14613788229155, 40.01938413204805], [-75.14638257068283, 40.01941384755003], [-75.14705879583687, 40.01909484972519], [-75.14714447643219, 40.01901145008065], [-75.1484680681646, 40.01840767197671], [-75.14908973201165, 40.0181106529181], [-75.1493475064601, 40.017958839322176], [-75.14923089340353, 40.01850378775497], [-75.14899401136766, 40.019573800755275], [-75.14895440785872, 40.01974442881808], [-75.14893672041177, 40.01982773281143], [-75.14885054693626, 40.020202287719464], [-75.14873876523373, 40.02071218205933], [-75.14869223870237, 40.02095431395297], [-75.14856756631274, 40.02147712508312], [-75.14824630443891, 40.02296067248439], [-75.14789505568146, 40.024554834487724], [-75.14755641513194, 40.02613961797357], [-75.14721962735459, 40.02764514311778], [-75.14691352343654, 40.02914516669453], [-75.14685100645652, 40.029482804010044], [-75.14682785335461, 40.029603964525016], [-75.1467062707666, 40.03012811909639], [-75.1466831095684, 40.03022796670184], [-75.14657623992896, 40.03063853073237], [-75.1465198569296, 40.03086669439065], [-75.14622802622662, 40.03218680840395], [-75.14589858962322, 40.033729038091984], [-75.14555423769299, 40.03526310349242], [-75.14514980930565, 40.0371471869134], [-75.1450944010915, 40.03741430698231], [-75.14463761989032, 40.03740050019296], [-75.14146588926472, 40.03628840562802], [-75.14067276785356, 40.036185703147375], [-75.13988302535608, 40.036084777555345], [-75.13909695975165, 40.0359825433927], [-75.13837487569867, 40.03588478067623], [-75.13816430148131, 40.03580745474563], [-75.13720839198119, 40.03656309931997], [-75.13682469320108, 40.03688982868427], [-75.13643742560077, 40.03719714962134], [-75.13596239568302, 40.03714069095362], [-75.13601924186796, 40.03629591786183], [-75.13491719236487, 40.0360488365267], [-75.13435513859052, 40.03588374814797], [-75.1335665112153, 40.035626316406706], [-75.13276532628717, 40.03533772841605], [-75.13184454399239, 40.035052721926434], [-75.13088081387585, 40.03474587521162], [-75.12996771413667, 40.034430870331285], [-75.12909893597146, 40.03414864853474], [-75.12813812194852, 40.0338276626433], [-75.12706004213122, 40.033477949059915], [-75.12598314561127, 40.033122585588295], [-75.12534748854145, 40.032908326018976], [-75.12418810210198, 40.03255273783986], [-75.12403310722064, 40.03404097915165], [-75.12395251307039, 40.03484852062137], [-75.12386086326329, 40.035563736148795], [-75.12142273542835, 40.03528205370963], [-75.12007475167565, 40.035112436465], [-75.11755213886096, 40.03479497055524], [-75.11716343499901, 40.03473588882475], [-75.11685146188826, 40.03469482398715], [-75.11650544942219, 40.03465710540937], [-75.11615336508022, 40.03461643623171], [-75.11583371765533, 40.03457011622014], [-75.11547394249487, 40.03451920586586], [-75.11513512724989, 40.03447968217076], [-75.11489795401083, 40.0344480299467], [-75.11461328019617, 40.03479657194471], [-75.11403140194247, 40.035472603119146], [-75.11316100665682, 40.036504056939116], [-75.11305569974876, 40.036434051292005], [-75.11286185146832, 40.03628378348594], [-75.11271773120262, 40.03613849196673], [-75.11259311624242, 40.03600516240305], [-75.11246381193612, 40.03586404823729], [-75.11234917031798, 40.03573094741304], [-75.11229498148876, 40.03558388308132], [-75.11223007187495, 40.03545576172138], [-75.11217677643165, 40.03528569564004], [-75.11210903928468, 40.035101865293676], [-75.11200088136177, 40.034930539948306], [-75.1118463429548, 40.03479652038135], [-75.1116426742597, 40.03464218637786], [-75.11147771551177, 40.03451943936245], [-75.11131878745127, 40.034369970957016], [-75.11118435201018, 40.034232574807], [-75.11110976725047, 40.03409655366053], [-75.11105961613627, 40.033989029395414], [-75.1109623165532, 40.03378042456657], [-75.11086592483, 40.033563319462765], [-75.11083024503537, 40.0334809861199], [-75.11075606505753, 40.03330752991063], [-75.11073180561117, 40.03316115427316], [-75.1107405208493, 40.03306542190741], [-75.11078444721699, 40.03296282191432], [-75.11083246535115, 40.03288334174899], [-75.11086083187242, 40.03279573592071], [-75.11088094445881, 40.03253525806396], [-75.11093395775706, 40.032327343632254], [-75.11098071478231, 40.032151899997615], [-75.11098697635899, 40.031990875782576], [-75.11101877241295, 40.031815089260064], [-75.11105012104336, 40.03165080490753], [-75.11106017740865, 40.031520565969934], [-75.1110655442647, 40.03138254520654], [-75.11108423162239, 40.03128704286119], [-75.11111029413618, 40.03113031110495], [-75.11113104639891, 40.031043888122646], [-75.11114603241961, 40.03098147483674], [-75.11115355423335, 40.030916413112244], [-75.11113733717988, 40.03069155703038], [-75.1111304256763, 40.030484182095286], [-75.11113817749339, 40.03028481815558], [-75.11111815921498, 40.03015772835574], [-75.11104641384301, 40.02994886364824], [-75.11099587582973, 40.02983641975879], [-75.11091824685484, 40.029650443769015], [-75.11088312012737, 40.02952684150518], [-75.11089965592181, 40.0293583793058], [-75.11093346239159, 40.02913083519481], [-75.110963465984, 40.02900105463474], [-75.11101505890687, 40.02882956142872], [-75.11108406824572, 40.0287237002696], [-75.11119944987506, 40.02858053334839], [-75.11128855606445, 40.02847129816967], [-75.1113933681751, 40.02834323816028], [-75.11150271900249, 40.0282267929963], [-75.1116525633503, 40.02809592899173], [-75.11176496213216, 40.02802943822743], [-75.11188540151312, 40.02801301937457], [-75.11201551288957, 40.02800449573766], [-75.11212083880417, 40.02799156515585], [-75.11228720378666, 40.02794933838244], [-75.11241925306783, 40.02789097420533], [-75.11262767431037, 40.027794071584445], [-75.11279310960418, 40.02771153141426], [-75.11288477850178, 40.02760043473574], [-75.11289026279778, 40.02745805116416], [-75.11288284071983, 40.02732048726397], [-75.11284742220191, 40.027038159909495], [-75.11281268095597, 40.026880239703914], [-75.11278223350453, 40.02664258597819], [-75.11276124831959, 40.02641186400716]]]}}, {"id": "3415", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14574969569053, 39.99444058423645], [-75.14583808553304, 39.994038562044096], [-75.14590955203708, 39.99371661970736], [-75.14598324178084, 39.99339005147819], [-75.14608959689218, 39.99284960025018], [-75.146882363615, 39.99295012073503], [-75.14788703690505, 39.9930798799411], [-75.1480820231125, 39.99237630471542], [-75.14830855656979, 39.99150510945522], [-75.14837843921606, 39.991217649853986], [-75.14834622301967, 39.99106996958742], [-75.14830695816073, 39.99096960067433], [-75.14815313833667, 39.99072552900276], [-75.1480273988089, 39.99056278992367], [-75.14760275533222, 39.989961381659676], [-75.14754375226056, 39.98986497810584], [-75.14781131295904, 39.98990639776105], [-75.14834098292921, 39.98997194898325], [-75.14889812146112, 39.990037386804815], [-75.14935910335902, 39.99009310529301], [-75.1499162301982, 39.990170796234345], [-75.15047931750038, 39.990248048190566], [-75.15092207484999, 39.9903050550188], [-75.15149127773667, 39.9903735518906], [-75.15287221410173, 39.99055287770031], [-75.15307026424283, 39.990578595857045], [-75.15396997044064, 39.99069743079759], [-75.15506972645015, 39.99083911992631], [-75.1552710646978, 39.990854301803694], [-75.15495008064467, 39.99235406881351], [-75.154710323233, 39.993406694494226], [-75.1546557583441, 39.99364499818574], [-75.15463860311415, 39.993720562504734], [-75.15458888487491, 39.99393956602994], [-75.15439262996195, 39.99487228977799], [-75.15431937889399, 39.99522312512964], [-75.15425395767012, 39.99552675657377], [-75.15414268878145, 39.99599273008329], [-75.15398545407648, 39.99678309188484], [-75.15378676915165, 39.997718116984636], [-75.15349510235843, 39.997823867989524], [-75.15318558709062, 39.99793621812171], [-75.15287614918813, 39.998048692632175], [-75.1525667984611, 39.998161310664905], [-75.15225754960804, 39.99827408606865], [-75.151948411096, 39.99838704246226], [-75.15163939531651, 39.99850019274151], [-75.15133051435075, 39.998613557904264], [-75.15102177807661, 39.998727155294766], [-75.15071319988314, 39.99884100233675], [-75.15040478837375, 39.99895511904876], [-75.15009660788598, 39.99906959969441], [-75.15002142288795, 39.99909774129665], [-75.14978886678787, 39.99918478507549], [-75.14948154428005, 39.9993006368818], [-75.14917458286699, 39.99941706551422], [-75.1488679272919, 39.99953398412696], [-75.14856152357349, 39.999651303199265], [-75.14825531418532, 39.99976893403054], [-75.14794924507942, 39.99988678889942], [-75.14771857637933, 39.999975736496935], [-75.14764326110743, 40.00000477825697], [-75.14733730812034, 40.00012281708132], [-75.14703132763313, 40.000240811241575], [-75.14672526660064, 40.00035867754171], [-75.14641907001749, 40.00047632282946], [-75.14611268015865, 40.00059366380154], [-75.1458060431573, 40.00071060823121], [-75.14549910383906, 40.00082706746568], [-75.14519180816691, 40.00094295377832], [-75.14488409738829, 40.00105818023578], [-75.1445759199824, 40.00117265466236], [-75.14426722590736, 40.0012863074405], [-75.14395805176184, 40.00139919255699], [-75.14379809293565, 40.00145585389514], [-75.14334643394318, 40.00074401544597], [-75.14417327834188, 40.000431689331485], [-75.14446339758591, 40.000328858228784], [-75.14476701066317, 39.998916789999626], [-75.14509795563065, 39.997426025465145], [-75.14523738035037, 39.9967583568742], [-75.14531276689256, 39.99639505500942], [-75.14542741148071, 39.99593018162321], [-75.14560509758087, 39.99510328931318], [-75.14574969569053, 39.99444058423645]]]}}, {"id": "3416", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15559310602195, 39.98937048713281], [-75.15593589746767, 39.987878554987844], [-75.15627637149069, 39.986284634879105], [-75.1566139097415, 39.984700031799335], [-75.15691577823603, 39.98322097007837], [-75.15725547387726, 39.98169482104445], [-75.15889700821441, 39.981915040873034], [-75.16047074927715, 39.98212965095867], [-75.16014671826717, 39.983628898433636], [-75.16005187512609, 39.98407025927032], [-75.15995561764252, 39.984505307145], [-75.15981211803054, 39.985149374337254], [-75.1613833728726, 39.98534049571191], [-75.16295124718621, 39.98554373064669], [-75.16361511904181, 39.98563622364805], [-75.16374843716792, 39.985658196097646], [-75.1645183402784, 39.98576060376892], [-75.16531767459625, 39.985862954522055], [-75.16609883186936, 39.985967163689345], [-75.16576344044917, 39.987515001890294], [-75.16497721886617, 39.98742226112422], [-75.16418508630503, 39.98731207775422], [-75.1638426170767, 39.988907785078474], [-75.16350180899792, 39.990402590136924], [-75.16318388419658, 39.99189165982134], [-75.16294179904934, 39.993044584418065], [-75.16285018130908, 39.993481241024035], [-75.16320875554426, 39.993324243819174], [-75.16375019463729, 39.99396740746016], [-75.16364550628586, 39.99401579203144], [-75.163350493459, 39.994148322421], [-75.16305295047066, 39.9942776496103], [-75.16275345225249, 39.9944040577435], [-75.16245167076322, 39.994527825031916], [-75.16214851295865, 39.9946492223867], [-75.16184356796215, 39.99476851894601], [-75.16163202672163, 39.99484964644871], [-75.16153718510476, 39.994885985669384], [-75.16122978418703, 39.99500191943675], [-75.16092135898762, 39.99511657598776], [-75.16061238107615, 39.99523024616773], [-75.16045884503355, 39.995286151429184], [-75.16030227819603, 39.99534316033578], [-75.15999242176541, 39.99545566658435], [-75.15968224437353, 39.99556799088048], [-75.15937214283764, 39.99568041788825], [-75.15910396550437, 39.995787685077396], [-75.15892784507975, 39.99664039538977], [-75.15871361413248, 39.99765215583468], [-75.15858145930692, 39.99820623506159], [-75.15860052408783, 39.99832830269098], [-75.15899682039944, 39.998828117554744], [-75.15862265723953, 39.99902740827307], [-75.15881222546582, 39.99925726237476], [-75.15899602352023, 39.99947923625235], [-75.1591803374125, 39.99970092501449], [-75.15936539983369, 39.99992221767875], [-75.1595615079236, 40.0001381630573], [-75.1597713031795, 40.0003466843852], [-75.15999048402087, 40.000548785576555], [-75.16022065424094, 40.00074376302431], [-75.16046479410915, 40.00092885830357], [-75.16072102574383, 40.001103237877146], [-75.16098012864764, 40.001275047033516], [-75.161240496931, 40.00144584343654], [-75.16150199984101, 40.00161570702282], [-75.16176451244321, 40.00178471876236], [-75.1620279027452, 40.00195296036825], [-75.16229204340254, 40.002120514560396], [-75.16255680593444, 40.00228746313338], [-75.16282206196311, 40.00245388518213], [-75.16308767953454, 40.00261989215878], [-75.16335369651195, 40.002785904787025], [-75.16362073706692, 40.002951223522345], [-75.16368297597836, 40.00298909789411], [-75.16385107540998, 40.0030100347716], [-75.16428653681054, 40.00307313876195], [-75.16423349039556, 40.00331710737684], [-75.16416664603113, 40.003624523693304], [-75.16410376670699, 40.0039137062559], [-75.16394255755147, 40.004656818906476], [-75.1637889278219, 40.005391718188754], [-75.16362929487212, 40.006153400797835], [-75.16522993149461, 40.006355457449395], [-75.16683627468983, 40.00656625799417], [-75.16694227559776, 40.00659450027782], [-75.16706466223903, 40.00671707874373], [-75.16753051174942, 40.007229125812884], [-75.16817665677839, 40.00792919258995], [-75.16848841069908, 40.00830024742549], [-75.16902131344077, 40.00890282471295], [-75.16914141995576, 40.00883386530923], [-75.16918907816523, 40.00888644483949], [-75.1693848528208, 40.00910241414265], [-75.16958063595123, 40.009318377866634], [-75.16977642969267, 40.00953434146551], [-75.16997222605549, 40.00975029935354], [-75.17012183886611, 40.009915319234196], [-75.17016802476591, 40.00996625873271], [-75.1703638212095, 40.0101822176973], [-75.17055961518098, 40.01039818164876], [-75.17075539862202, 40.01061414680205], [-75.17095117611288, 40.010830115963145], [-75.17114693811662, 40.01104609342295], [-75.17134268473573, 40.011262076480755], [-75.17153840994537, 40.01147806950644], [-75.1717341148136, 40.01169407522714], [-75.1719297936233, 40.01191008991051], [-75.17212544499837, 40.01212611893189], [-75.17232106308491, 40.01234216215997], [-75.17251664898511, 40.01255822142175], [-75.17271219560573, 40.012774298360135], [-75.17290770415151, 40.01299039210142], [-75.17310316505105, 40.01320650783698], [-75.17330414845071, 40.01342880284322], [-75.17185110939445, 40.01421865254688], [-75.16990856732517, 40.015251275367135], [-75.16932388598943, 40.01561308507677], [-75.16922639801739, 40.015723223219084], [-75.16903385880265, 40.01586767344456], [-75.16875550853955, 40.016063754154686], [-75.16843373327283, 40.016281090405364], [-75.16830601223785, 40.01634706248918], [-75.1681011247023, 40.0164922616461], [-75.16773914456775, 40.01677676715074], [-75.16726952579513, 40.01715117286135], [-75.16686766643225, 40.017471360816195], [-75.16637408236633, 40.017853963773874], [-75.16612297805914, 40.01804860618353], [-75.16595069899675, 40.01817014864473], [-75.16580943584417, 40.018250581845486], [-75.16549601289547, 40.018389849712655], [-75.16451672375794, 40.01882070935512], [-75.1642100579168, 40.01894959041402], [-75.16382947760472, 40.01918243550099], [-75.1637594507446, 40.01923581659435], [-75.16260104521236, 40.019587285956476], [-75.16165740699451, 40.019866523130446], [-75.16069195307685, 40.020154843997446], [-75.16065723063446, 40.020267866462135], [-75.16064104200257, 40.02032672424692], [-75.160587094013, 40.02047412659202], [-75.16020566761645, 40.021312918917715], [-75.15950224294882, 40.0223432341361], [-75.15903605423988, 40.02280190058979], [-75.15790589094377, 40.023704912206234], [-75.15782906553865, 40.02375408545743], [-75.15724219824413, 40.02408925777339], [-75.15715360548293, 40.02413182896438], [-75.15696965137474, 40.02409024536052], [-75.15618269933954, 40.02398984263152], [-75.15539798309345, 40.02388910564577], [-75.15461075489527, 40.02380201274293], [-75.15405365312745, 40.02372785476409], [-75.15358036624822, 40.02365797773569], [-75.15303674304226, 40.02358501513317], [-75.1522667173414, 40.02348787117297], [-75.15147241693867, 40.023381528339236], [-75.15090369245164, 40.02331069599366], [-75.1506825222888, 40.02328812009111], [-75.15044000128925, 40.0232544392301], [-75.14987715742109, 40.0231842466539], [-75.14911084080961, 40.023087628437445], [-75.14824630443891, 40.02296067248439], [-75.14856756631274, 40.02147712508312], [-75.14869223870237, 40.02095431395297], [-75.14873876523373, 40.02071218205933], [-75.14885054693626, 40.020202287719464], [-75.14893672041177, 40.01982773281143], [-75.14895440785872, 40.01974442881808], [-75.14899401136766, 40.019573800755275], [-75.14923089340353, 40.01850378775497], [-75.1493475064601, 40.017958839322176], [-75.14958686700786, 40.01693362198721], [-75.14972718930441, 40.016216009188604], [-75.14977041330002, 40.01602280409584], [-75.14983979568106, 40.01567315281484], [-75.14993222382938, 40.01532671020396], [-75.15003962572906, 40.01481970269212], [-75.14983165309977, 40.01476596338327], [-75.1478365064141, 40.01450755380314], [-75.14795501083744, 40.0139786146205], [-75.14791438685396, 40.01392740449221], [-75.14722884497878, 40.01408140210885], [-75.14722189137788, 40.013432961843364], [-75.14647680294615, 40.013343114491526], [-75.1433203153046, 40.01292742387583], [-75.14279528639928, 40.012858788197796], [-75.14232926693204, 40.01279113891428], [-75.14178660755206, 40.01270991995661], [-75.14211264092272, 40.01123807168278], [-75.14243880955175, 40.00974402913456], [-75.14276347100015, 40.00826978854965], [-75.14277295786349, 40.00815499045495], [-75.14277427561711, 40.0080455913732], [-75.14306343435318, 40.006722226308], [-75.14309801736401, 40.00656380658327], [-75.14343826047002, 40.005072838644516], [-75.1433015921368, 40.00472237755151], [-75.1431399324757, 40.00428493094099], [-75.14329364986786, 40.00352469250323], [-75.14350127331724, 40.00355156369469], [-75.14374365394839, 40.00358293398834], [-75.1440384135838, 40.00223426474612], [-75.14412366322766, 40.00215922659642], [-75.14406451756503, 40.00191290723567], [-75.14379809293565, 40.00145585389514], [-75.14334643394318, 40.00074401544597], [-75.14417327834188, 40.000431689331485], [-75.14446339758591, 40.000328858228784], [-75.14476701066317, 39.998916789999626], [-75.14509795563065, 39.997426025465145], [-75.14523738035037, 39.9967583568742], [-75.14531276689256, 39.99639505500942], [-75.14542741148071, 39.99593018162321], [-75.14560509758087, 39.99510328931318], [-75.14574969569053, 39.99444058423645], [-75.14583808553304, 39.994038562044096], [-75.14590955203708, 39.99371661970736], [-75.14598324178084, 39.99339005147819], [-75.14608959689218, 39.99284960025018], [-75.146882363615, 39.99295012073503], [-75.14788703690505, 39.9930798799411], [-75.1480820231125, 39.99237630471542], [-75.14830855656979, 39.99150510945522], [-75.14837843921606, 39.991217649853986], [-75.14834622301967, 39.99106996958742], [-75.14830695816073, 39.99096960067433], [-75.14815313833667, 39.99072552900276], [-75.1480273988089, 39.99056278992367], [-75.14760275533222, 39.989961381659676], [-75.14754375226056, 39.98986497810584], [-75.14781131295904, 39.98990639776105], [-75.14834098292921, 39.98997194898325], [-75.14889812146112, 39.990037386804815], [-75.14935910335902, 39.99009310529301], [-75.1499162301982, 39.990170796234345], [-75.15047931750038, 39.990248048190566], [-75.15092207484999, 39.9903050550188], [-75.15149127773667, 39.9903735518906], [-75.15287221410173, 39.99055287770031], [-75.15307026424283, 39.990578595857045], [-75.15396997044064, 39.99069743079759], [-75.15506972645015, 39.99083911992631], [-75.1552710646978, 39.990854301803694], [-75.1554998987755, 39.989794409414735], [-75.15559310602195, 39.98937048713281]]]}}, {"id": "3417", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17587953728179, 39.928942223357396], [-75.17529040837256, 39.92886827026287], [-75.17372885312534, 39.92866167871712], [-75.17316209167474, 39.92858897664198], [-75.17269999642133, 39.9285213470136], [-75.17215552066993, 39.9284642408782], [-75.1715962274586, 39.9283885534335], [-75.17113787546292, 39.92833001716304], [-75.1705936331929, 39.92826682605035], [-75.17004997262877, 39.92818833357387], [-75.1695817099415, 39.928134065918755], [-75.16895773764685, 39.92803667143668], [-75.16882811944834, 39.92803500276149], [-75.16909605511938, 39.92681792605534], [-75.16936345812617, 39.9255916618934], [-75.16962817132318, 39.92437326570684], [-75.16988103061077, 39.92313243740692], [-75.17017980089858, 39.92188608861979], [-75.17044815178282, 39.920640631710256], [-75.17071125143731, 39.91939499497743], [-75.17085501498846, 39.91941145488218], [-75.17148785787545, 39.91948650588742], [-75.1719403514858, 39.91954497164647], [-75.17244736593929, 39.919622458981124], [-75.17300577989006, 39.91968075076979], [-75.1734928793705, 39.91974405438717], [-75.17403428189978, 39.91981077618362], [-75.1745883463195, 39.919885815943516], [-75.17504683556119, 39.91994488243412], [-75.17561598837206, 39.92001434807827], [-75.17636766741929, 39.92010990347405], [-75.17716829123836, 39.920219553776164], [-75.17795486096878, 39.92030994298901], [-75.1787385022326, 39.92041614683869], [-75.17926924046455, 39.920489878413086], [-75.17952902810964, 39.92052150129681], [-75.17976291264522, 39.92055068325926], [-75.1803152087144, 39.92062101252252], [-75.18089486899946, 39.920705255663606], [-75.18123535356035, 39.92073887462593], [-75.18141846905199, 39.92077361841488], [-75.18222126839873, 39.92087175608389], [-75.18251211277983, 39.91963000802967], [-75.18279356431404, 39.9183597213585], [-75.18282151039273, 39.918233589219184], [-75.18440337252183, 39.91844380213035], [-75.18510032904231, 39.918554256265494], [-75.1860247859152, 39.91869097912871], [-75.18696229271059, 39.918867726114804], [-75.18735445155635, 39.91900684701349], [-75.18743741577522, 39.91905085589099], [-75.1877964349535, 39.91925229894708], [-75.18803994232465, 39.919456388448246], [-75.18825459471665, 39.919754693708725], [-75.18910493952532, 39.920684126443284], [-75.18916422210287, 39.92074625237124], [-75.18932450204431, 39.920914220147004], [-75.18941869879913, 39.921007844650426], [-75.18981258718762, 39.92139934007993], [-75.19006058289085, 39.9217171307119], [-75.19015860117176, 39.92170215116822], [-75.1903419604548, 39.92167437759978], [-75.19047247264182, 39.92165423956683], [-75.19060146538074, 39.92162802170247], [-75.19081634417404, 39.92158434713675], [-75.19106794347522, 39.92153321049858], [-75.19122215402639, 39.921500199794416], [-75.19181991635783, 39.92138891467094], [-75.19249473767239, 39.9212670726349], [-75.1938644811039, 39.9211301915961], [-75.19448533530738, 39.921085070263416], [-75.19504651330628, 39.92101268758331], [-75.20006238051837, 39.92013718296255], [-75.20179132442954, 39.91981930807259], [-75.2019945286076, 39.919781946952625], [-75.20203954057037, 39.919939811356116], [-75.20262167546693, 39.920589535899126], [-75.20375348198348, 39.921039201492874], [-75.20524090114905, 39.92107222205077], [-75.20647864311627, 39.920901574082286], [-75.20771109345405, 39.920872302717065], [-75.20888316774469, 39.92098318900874], [-75.20994136801055, 39.92119059609576], [-75.21111670313407, 39.92195247005715], [-75.21195444836577, 39.92265025678862], [-75.21236773139668, 39.92339524882293], [-75.21255801411132, 39.92420605590866], [-75.21240349026309, 39.92539130720084], [-75.21214722121682, 39.92634789377554], [-75.21157630482006, 39.92760883240147], [-75.21116053746807, 39.928406227444746], [-75.21074355424716, 39.929267201457094], [-75.21052319268539, 39.92972229370418], [-75.20969119752053, 39.930835934591194], [-75.20757291260742, 39.933166337097894], [-75.20642541432272, 39.9343578658045], [-75.2058484773116, 39.93503846158553], [-75.2055971311071, 39.93548447427487], [-75.20537590640467, 39.93587702877518], [-75.20516612810576, 39.937061048418464], [-75.205161751336, 39.93840528394946], [-75.20516213209207, 39.938603951228046], [-75.20516533511787, 39.94027327776247], [-75.20515916367398, 39.94065801560933], [-75.2051511241047, 39.941109705274734], [-75.20503308883262, 39.94184108941856], [-75.20454685757073, 39.94255199429125], [-75.20384389489251, 39.943159031803354], [-75.2030545074157, 39.94362262812122], [-75.2018099014724, 39.94396290300457], [-75.20161442497796, 39.94396959747437], [-75.20080678289902, 39.9439972290549], [-75.20042752555308, 39.94394416737382], [-75.19996512413074, 39.94387946206713], [-75.19909313422974, 39.94360535829999], [-75.19795163481602, 39.94316960721573], [-75.19692197216327, 39.94267969748615], [-75.19577620044844, 39.94234286678344], [-75.19460271708917, 39.942260124464774], [-75.19386792557843, 39.94227634272461], [-75.19369737903752, 39.942280125631584], [-75.19364560318907, 39.942281245825754], [-75.19253116202371, 39.94259603349538], [-75.19177005947272, 39.94303188465246], [-75.19157341030997, 39.94319903601902], [-75.19105851370779, 39.943636688136955], [-75.19099136949414, 39.94369375929506], [-75.19067974179438, 39.943981979434184], [-75.19022943637438, 39.94439845576369], [-75.18985287188819, 39.94473383402683], [-75.18945882417533, 39.94508477771983], [-75.18939241252559, 39.94514392406182], [-75.18889164537305, 39.945525822624006], [-75.18825665527879, 39.94601007383723], [-75.18792294351213, 39.946227784440076], [-75.18735320149077, 39.94659947458651], [-75.18687020015383, 39.94691457163152], [-75.18616626780558, 39.94640323864336], [-75.18591378202936, 39.9462198103695], [-75.18568688960681, 39.946160001890966], [-75.18570281208814, 39.945277339313236], [-75.18500788589968, 39.94517971766221], [-75.18388742182482, 39.94503666902186], [-75.1833493200888, 39.94497731916542], [-75.18278116485943, 39.94490703972125], [-75.18095102500803, 39.94467119483289], [-75.18061150719751, 39.94463209059361], [-75.1804101923637, 39.94460311929231], [-75.17876636292688, 39.944401920202495], [-75.17716958712774, 39.94421095754197], [-75.17524211881907, 39.94397053003853], [-75.17366854988926, 39.94377646481941], [-75.17378342812157, 39.94329297174073], [-75.17388527619204, 39.942801545330546], [-75.17410510399097, 39.94179478942147], [-75.17418774665221, 39.941422116658075], [-75.1742728042991, 39.941022763217234], [-75.17437734450827, 39.940527727135084], [-75.17448140136361, 39.94005729581756], [-75.17457705552728, 39.93964170153694], [-75.17465110370284, 39.93930143241136], [-75.1747518511938, 39.93882735859993], [-75.17631149645452, 39.93902274518719], [-75.17825196738539, 39.93926905726782], [-75.17983891181979, 39.939479802181104], [-75.18149528329731, 39.93968854325546], [-75.18314107292235, 39.93989685848033], [-75.18495610112747, 39.94008534101652], [-75.18516814972767, 39.93911548563741], [-75.18523483849769, 39.938824544195754], [-75.18527101941457, 39.938663579602974], [-75.18530335339072, 39.93851578013453], [-75.1853918963181, 39.93805886479759], [-75.18541643376375, 39.93795369886082], [-75.18549993635563, 39.93759827496855], [-75.18572790895732, 39.93648034793651], [-75.18575640786506, 39.93648392872858], [-75.18732760299982, 39.93668022889355], [-75.18888557125193, 39.93688807195146], [-75.18897800978061, 39.93645812481999], [-75.18906265917072, 39.936096819177195], [-75.18914801425663, 39.93567262079523], [-75.18923713517907, 39.93524427892119], [-75.18931761794046, 39.934867517007774], [-75.1894169526017, 39.93443037137289], [-75.18968857636325, 39.93322864037063], [-75.1899493618791, 39.932003488518205], [-75.19012731576615, 39.931220084595004], [-75.1902220487094, 39.93078038680986], [-75.19047474449467, 39.92955977394741], [-75.19053543273527, 39.92926649229742], [-75.19060233030642, 39.928978118248274], [-75.19066859300911, 39.92866941676119], [-75.19074422958964, 39.92832825837987], [-75.18918145487082, 39.92813040403253], [-75.18759758428777, 39.927927613924204], [-75.18685882004087, 39.92783214017275], [-75.18599144062982, 39.92772824384543], [-75.18577448530856, 39.92769634346894], [-75.18518707344323, 39.9276293218686], [-75.18469356535304, 39.927563973577286], [-75.18413572449033, 39.92748839072143], [-75.18356727097928, 39.927414552536376], [-75.18307002762307, 39.9273473187791], [-75.18247970745371, 39.92727098722562], [-75.18192364877922, 39.92721051903828], [-75.18143433399078, 39.92714252943958], [-75.18089407838447, 39.92707475519641], [-75.18024882745244, 39.92700347944945], [-75.17961190138833, 39.926913714072676], [-75.17897092153989, 39.926830360441656], [-75.17840805567783, 39.92674854414239], [-75.17794948006994, 39.92669611269314], [-75.17740166500627, 39.92662679085603], [-75.177302928636, 39.927069538127725], [-75.17722299981469, 39.92742547305531], [-75.17713716654389, 39.927843969737246], [-75.17703462385559, 39.9282791854793], [-75.176962359652, 39.92864116235151], [-75.17687231172798, 39.92906292240617], [-75.17633522047532, 39.92900112389839], [-75.17587953728179, 39.928942223357396]]]}}, {"id": "3418", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17633522047532, 39.92900112389839], [-75.17587953728179, 39.928942223357396], [-75.17529040837256, 39.92886827026287], [-75.17372885312534, 39.92866167871712], [-75.17316209167474, 39.92858897664198], [-75.17269999642133, 39.9285213470136], [-75.17215552066993, 39.9284642408782], [-75.1715962274586, 39.9283885534335], [-75.17113787546292, 39.92833001716304], [-75.1705936331929, 39.92826682605035], [-75.17004997262877, 39.92818833357387], [-75.1695817099415, 39.928134065918755], [-75.16895773764685, 39.92803667143668], [-75.16882811944834, 39.92803500276149], [-75.16909605511938, 39.92681792605534], [-75.16936345812617, 39.9255916618934], [-75.16962817132318, 39.92437326570684], [-75.16988103061077, 39.92313243740692], [-75.17017980089858, 39.92188608861979], [-75.17044815178282, 39.920640631710256], [-75.17071125143731, 39.91939499497743], [-75.17085501498846, 39.91941145488218], [-75.17148785787545, 39.91948650588742], [-75.1719403514858, 39.91954497164647], [-75.17244736593929, 39.919622458981124], [-75.17300577989006, 39.91968075076979], [-75.1734928793705, 39.91974405438717], [-75.17403428189978, 39.91981077618362], [-75.1745883463195, 39.919885815943516], [-75.17504683556119, 39.91994488243412], [-75.17561598837206, 39.92001434807827], [-75.17636766741929, 39.92010990347405], [-75.17716829123836, 39.920219553776164], [-75.17795486096878, 39.92030994298901], [-75.1787385022326, 39.92041614683869], [-75.17926924046455, 39.920489878413086], [-75.17952902810964, 39.92052150129681], [-75.17976291264522, 39.92055068325926], [-75.1803152087144, 39.92062101252252], [-75.18089486899946, 39.920705255663606], [-75.18123535356035, 39.92073887462593], [-75.18141846905199, 39.92077361841488], [-75.18222126839873, 39.92087175608389], [-75.18251211277983, 39.91963000802967], [-75.18279356431404, 39.9183597213585], [-75.18282151039273, 39.918233589219184], [-75.18440337252183, 39.91844380213035], [-75.18510032904231, 39.918554256265494], [-75.1860247859152, 39.91869097912871], [-75.18696229271059, 39.918867726114804], [-75.18735445155635, 39.91900684701349], [-75.18743741577522, 39.91905085589099], [-75.1877964349535, 39.91925229894708], [-75.18803994232465, 39.919456388448246], [-75.18825459471665, 39.919754693708725], [-75.18910493952532, 39.920684126443284], [-75.18916422210287, 39.92074625237124], [-75.18932450204431, 39.920914220147004], [-75.18941869879913, 39.921007844650426], [-75.18981258718762, 39.92139934007993], [-75.19006058289085, 39.9217171307119], [-75.18965238681633, 39.92180636368266], [-75.18890044418367, 39.92197068733024], [-75.18887518116124, 39.922077642304465], [-75.18866229293894, 39.92299769209519], [-75.19026602904323, 39.92319343690514], [-75.19110163648162, 39.923295418125015], [-75.19118578818758, 39.923305688022566], [-75.19139613936314, 39.92338336357609], [-75.19161165853886, 39.923617751117284], [-75.19199250935134, 39.92401569699446], [-75.19234322256247, 39.92437831201164], [-75.19250447035066, 39.92454503064019], [-75.19269098803389, 39.92474055559078], [-75.19296708973327, 39.92503366855368], [-75.19283266918998, 39.926071733611906], [-75.19261584179569, 39.92604225557384], [-75.19248167879262, 39.92605443277392], [-75.19234561742311, 39.92610679659354], [-75.19209440777651, 39.926203476633354], [-75.19197881306039, 39.92624796494283], [-75.19156533587899, 39.92638000609633], [-75.19138477873135, 39.92643766419167], [-75.19100906898176, 39.92655764092452], [-75.19048556896081, 39.926739731963984], [-75.18997104522253, 39.92688815214393], [-75.18946070656388, 39.926984595101054], [-75.1899181876443, 39.926970750615254], [-75.19100820692802, 39.927117599451165], [-75.19093151825834, 39.92746656874468], [-75.1908730394135, 39.92773812156416], [-75.19081348797354, 39.928013904988966], [-75.19074422958964, 39.92832825837987], [-75.18918145487082, 39.92813040403253], [-75.18759758428777, 39.927927613924204], [-75.18685882004087, 39.92783214017275], [-75.18599144062982, 39.92772824384543], [-75.18577448530856, 39.92769634346894], [-75.18518707344323, 39.9276293218686], [-75.18469356535304, 39.927563973577286], [-75.18413572449033, 39.92748839072143], [-75.18356727097928, 39.927414552536376], [-75.18307002762307, 39.9273473187791], [-75.18247970745371, 39.92727098722562], [-75.18192364877922, 39.92721051903828], [-75.18143433399078, 39.92714252943958], [-75.18089407838447, 39.92707475519641], [-75.18024882745244, 39.92700347944945], [-75.17961190138833, 39.926913714072676], [-75.17897092153989, 39.926830360441656], [-75.17840805567783, 39.92674854414239], [-75.17794948006994, 39.92669611269314], [-75.17740166500627, 39.92662679085603], [-75.177302928636, 39.927069538127725], [-75.17722299981469, 39.92742547305531], [-75.17713716654389, 39.927843969737246], [-75.17703462385559, 39.9282791854793], [-75.176962359652, 39.92864116235151], [-75.17687231172798, 39.92906292240617], [-75.17633522047532, 39.92900112389839]]]}}, {"id": "3419", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14146588926472, 40.03628840562802], [-75.14067276785356, 40.036185703147375], [-75.13988302535608, 40.036084777555345], [-75.13909695975165, 40.0359825433927], [-75.13837487569867, 40.03588478067623], [-75.13816430148131, 40.03580745474563], [-75.13720839198119, 40.03656309931997], [-75.13682469320108, 40.03688982868427], [-75.13643742560077, 40.03719714962134], [-75.13596239568302, 40.03714069095362], [-75.13601924186796, 40.03629591786183], [-75.1362256312926, 40.033432280724874], [-75.13624750939496, 40.03328774921344], [-75.13632903528652, 40.03292146855458], [-75.13641587003075, 40.03251136041243], [-75.13648615050276, 40.03218603200388], [-75.13655569805901, 40.03186903485381], [-75.13661962081554, 40.03159076445095], [-75.13675813892036, 40.03096519043236], [-75.13701628378013, 40.02980035538107], [-75.13709228485473, 40.02941326835255], [-75.13742200151447, 40.02791977605994], [-75.13774715050255, 40.026417386977926], [-75.13828580138626, 40.02648992937553], [-75.1386988891154, 40.02653716609904], [-75.13950862078177, 40.02664905552823], [-75.14030488838324, 40.026746981853115], [-75.14108857730857, 40.02685210883573], [-75.14187993430589, 40.02695023153963], [-75.14155786712281, 40.028450084596976], [-75.14233586038641, 40.0285445555944], [-75.1431266425208, 40.02864419059783], [-75.14391379256013, 40.028750317831836], [-75.14471716118774, 40.02885685079207], [-75.14615174299354, 40.02904492261314], [-75.14691352343654, 40.02914516669453], [-75.14685100645652, 40.029482804010044], [-75.14682785335461, 40.029603964525016], [-75.1467062707666, 40.03012811909639], [-75.1466831095684, 40.03022796670184], [-75.14657623992896, 40.03063853073237], [-75.1465198569296, 40.03086669439065], [-75.14622802622662, 40.03218680840395], [-75.14589858962322, 40.033729038091984], [-75.14555423769299, 40.03526310349242], [-75.14514980930565, 40.0371471869134], [-75.1450944010915, 40.03741430698231], [-75.14463761989032, 40.03740050019296], [-75.14146588926472, 40.03628840562802]]]}}, {"id": "3420", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15368454348616, 40.01626716423652], [-75.15335320453102, 40.01620198402418], [-75.15324693958607, 40.01617530203144], [-75.1530274643304, 40.016120194868904], [-75.15270503067173, 40.01603139125947], [-75.15238807819273, 40.015931755249575], [-75.15207891659178, 40.015818381098214], [-75.15177659420125, 40.015694582898824], [-75.15149048826045, 40.015550775247235], [-75.15121604470929, 40.01539290912895], [-75.15094138488286, 40.01523564381474], [-75.15078016813321, 40.0151401698474], [-75.1503365517051, 40.015306352452406], [-75.15014844385973, 40.01534175888267], [-75.14993222382938, 40.01532671020396], [-75.15003962572906, 40.01481970269212], [-75.15007096763034, 40.01468167354025], [-75.1500965005928, 40.014569226117416], [-75.15021373801147, 40.013916741078155], [-75.15024565919153, 40.01376307611625], [-75.15039513654646, 40.01316714443147], [-75.15057380008965, 40.01237154180903], [-75.15088384543449, 40.01083838502309], [-75.15142831160365, 40.010904609042456], [-75.15179958690221, 40.010951326411366], [-75.15254164453529, 40.01105020923317], [-75.15287867430192, 40.00944804956422], [-75.15367036090495, 40.009554092098085], [-75.15446554022661, 40.00965572461483], [-75.15480148824966, 40.00808177653153], [-75.15557733939363, 40.00818170067494], [-75.1563776281082, 40.00828571438881], [-75.1565391286977, 40.007528480929054], [-75.15671137621378, 40.00679123674339], [-75.15827899180522, 40.006995350258336], [-75.15860266420239, 40.00549919183472], [-75.15938120530795, 40.005596441291345], [-75.16018002442229, 40.0056935563002], [-75.16039708600967, 40.00467860002028], [-75.16049590439602, 40.00421652653145], [-75.16124295205188, 40.00430751652491], [-75.16205980369239, 40.004411363111885], [-75.16266176106042, 40.00449586267749], [-75.16394255755147, 40.004656818906476], [-75.1637889278219, 40.005391718188754], [-75.16362929487212, 40.006153400797835], [-75.16522993149461, 40.006355457449395], [-75.16683627468983, 40.00656625799417], [-75.16694227559776, 40.00659450027782], [-75.16706466223903, 40.00671707874373], [-75.16753051174942, 40.007229125812884], [-75.16817665677839, 40.00792919258995], [-75.16848841069908, 40.00830024742549], [-75.16902131344077, 40.00890282471295], [-75.16914141995576, 40.00883386530923], [-75.16918907816523, 40.00888644483949], [-75.1693848528208, 40.00910241414265], [-75.16958063595123, 40.009318377866634], [-75.16977642969267, 40.00953434146551], [-75.16997222605549, 40.00975029935354], [-75.17012183886611, 40.009915319234196], [-75.16999100923545, 40.009980603154695], [-75.1697039552153, 40.01012403304795], [-75.16941695932798, 40.01026753473676], [-75.1691299666026, 40.01041104391501], [-75.16884292685465, 40.01055449368053], [-75.16855578983157, 40.0106978189312], [-75.16826850056458, 40.010840955359306], [-75.16793774191312, 40.011007132731905], [-75.16777770010867, 40.01108753491117], [-75.16765116339951, 40.0111511053811], [-75.16736457698876, 40.01129506815394], [-75.16707798591912, 40.011439028331296], [-75.16679138915686, 40.011582982285844], [-75.1665047889065, 40.01172693367119], [-75.16621818761232, 40.01187087983926], [-75.16593157814704, 40.012014823332706], [-75.1656449698768, 40.012158764362326], [-75.1653583592207, 40.01230270464945], [-75.16507174621306, 40.012446643293906], [-75.16478513202462, 40.01259058032205], [-75.16449851879126, 40.01273452118798], [-75.16421190320634, 40.01287846041121], [-75.16392529098655, 40.01302240172455], [-75.16363867861956, 40.01316634504888], [-75.16335206958335, 40.0133102913636], [-75.16306546146778, 40.01345424241642], [-75.16277885785378, 40.01359819648607], [-75.16249225746749, 40.01374215624688], [-75.16220566147976, 40.01388612172527], [-75.16190138857833, 40.01403897573039], [-75.16163248269973, 40.014174069834986], [-75.16134590331674, 40.01431805524632], [-75.16105932819474, 40.014462049976366], [-75.16077276211982, 40.01460605143004], [-75.16048620023716, 40.01475006400301], [-75.16019965081081, 40.01489408607971], [-75.15991310674733, 40.01503811930221], [-75.15962657390058, 40.01518216380263], [-75.15934004986012, 40.015326221328756], [-75.15905493993432, 40.01547215715871], [-75.15877274865699, 40.0156218460325], [-75.15847900854268, 40.0157557355624], [-75.15816828945724, 40.01586664362334], [-75.15785344588112, 40.015970763203924], [-75.15772865369271, 40.01601172539366], [-75.15753812329432, 40.016074266545736], [-75.157218111556, 40.01616711405825], [-75.15688822595365, 40.01623613107863], [-75.1565538522124, 40.01629451651498], [-75.1560662031187, 40.01635348405228], [-75.15572648503664, 40.016383367047936], [-75.15538440697776, 40.016397019760355], [-75.15504172966676, 40.01639847886657], [-75.15469996687044, 40.01638631532018], [-75.15435919764802, 40.01635785398967], [-75.15406802819236, 40.016323599506364], [-75.15368454348616, 40.01626716423652]]]}}, {"id": "3421", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10993282324226, 40.04319925585045], [-75.10827180197076, 40.042214728152906], [-75.10673069026728, 40.041321112298505], [-75.10562252298803, 40.040667949189285], [-75.1046332240413, 40.04007483349837], [-75.103163265148, 40.03919752094247], [-75.10157375467256, 40.03829446838198], [-75.0993867904679, 40.03676270560465], [-75.09842348622718, 40.03609259162841], [-75.09768657589605, 40.035719345833094], [-75.09308759856975, 40.03348670616812], [-75.09327502170578, 40.03330591693202], [-75.09349854261541, 40.03307356717856], [-75.0937343543084, 40.032843763787554], [-75.09392169359725, 40.032648524438095], [-75.09411844194337, 40.03245672539379], [-75.09435086658802, 40.03220778020944], [-75.093790692357, 40.031513191046294], [-75.09354315989118, 40.03119660686105], [-75.09320525225375, 40.03070558680073], [-75.09531218868015, 40.02854813419083], [-75.09623683618052, 40.02759719115612], [-75.09655185034995, 40.027787634227415], [-75.09665184640231, 40.02785106630354], [-75.09680538289797, 40.02794846082214], [-75.09790836046977, 40.02861986382946], [-75.09832541146291, 40.02820654081584], [-75.09869780527592, 40.027854182841565], [-75.09880927970418, 40.02774045184587], [-75.09906469220137, 40.02749807807378], [-75.10128705513067, 40.0289720841755], [-75.10156167428505, 40.02918380082311], [-75.10195887434806, 40.02934196297108], [-75.1024230166573, 40.02949318557148], [-75.10480855458879, 40.023604262577635], [-75.1049143487351, 40.02360089684679], [-75.10508763662361, 40.02350895536784], [-75.10518210647984, 40.02339025508062], [-75.10543678370175, 40.023002793046025], [-75.10566863995791, 40.022944815986456], [-75.10584846396745, 40.022941281788675], [-75.10605247374939, 40.02295749164282], [-75.10613545565268, 40.02300544943703], [-75.10631124672449, 40.02310543037679], [-75.10646255127769, 40.02319333576283], [-75.10659934434501, 40.02326939441552], [-75.10673673617148, 40.02333011580817], [-75.10686065894835, 40.02335215568997], [-75.10704424584219, 40.02331608887378], [-75.1072096770473, 40.023233555827986], [-75.1073729845967, 40.02314138040217], [-75.10751425639339, 40.023102421663594], [-75.10768455448083, 40.02308715380358], [-75.10778154248753, 40.02303182489346], [-75.10792281385686, 40.02299286475194], [-75.10803565669126, 40.022914876376085], [-75.10808940525057, 40.02281634179531], [-75.10807862273626, 40.022708648478115], [-75.10816720392039, 40.02261283534436], [-75.10846947746545, 40.022412571771106], [-75.10861343267538, 40.02230460133006], [-75.10879579097849, 40.022235887123955], [-75.10908257018968, 40.022177247355486], [-75.10936860306877, 40.02213777806876], [-75.10968715675077, 40.02216045205417], [-75.10981502257131, 40.022209440059875], [-75.10997370141887, 40.022236111394484], [-75.11018165557297, 40.02227926614272], [-75.11043418841447, 40.022331119294705], [-75.11070048985525, 40.02241398644175], [-75.11085179972112, 40.02250188607569], [-75.11094118311102, 40.022642083552036], [-75.11099007363472, 40.02279670032437], [-75.11100130792074, 40.0228928929837], [-75.11103099730558, 40.023027881026636], [-75.11110177526518, 40.02313311519714], [-75.11118647596466, 40.023254281404995], [-75.11125308109845, 40.02334956411429], [-75.11133144784338, 40.02351637049445], [-75.11137275171805, 40.023609414750425], [-75.11136284617542, 40.02373581970001], [-75.11140146858001, 40.0238978752842], [-75.11146539218102, 40.02417946886957], [-75.11152217264079, 40.02438798964436], [-75.11155111853812, 40.02454214695341], [-75.11155118858731, 40.024668781106776], [-75.11151724422533, 40.024771608827905], [-75.11145649869287, 40.02492178887383], [-75.11139530336182, 40.02521202095638], [-75.11138100554518, 40.025322974135], [-75.11136771254505, 40.02547232346244], [-75.11145717538353, 40.02561060483848], [-75.11162389969851, 40.02568734496481], [-75.11184485327558, 40.02571736433789], [-75.11201306961777, 40.02575576420475], [-75.11219565173879, 40.02580984284168], [-75.11239743559263, 40.025883550536044], [-75.11253997405726, 40.025940546364005], [-75.11264127307359, 40.026031131377025], [-75.11269694601232, 40.026139855005376], [-75.11273721167133, 40.02625973722888], [-75.11276124831959, 40.02641186400716], [-75.11278223350453, 40.02664258597819], [-75.11281268095597, 40.026880239703914], [-75.11284742220191, 40.027038159909495], [-75.11288284071983, 40.02732048726397], [-75.11289026279778, 40.02745805116416], [-75.11288477850178, 40.02760043473574], [-75.11279310960418, 40.02771153141426], [-75.11262767431037, 40.027794071584445], [-75.11241925306783, 40.02789097420533], [-75.11228720378666, 40.02794933838244], [-75.11212083880417, 40.02799156515585], [-75.11201551288957, 40.02800449573766], [-75.11188540151312, 40.02801301937457], [-75.11176496213216, 40.02802943822743], [-75.1116525633503, 40.02809592899173], [-75.11150271900249, 40.0282267929963], [-75.1113933681751, 40.02834323816028], [-75.11128855606445, 40.02847129816967], [-75.11119944987506, 40.02858053334839], [-75.11108406824572, 40.0287237002696], [-75.11101505890687, 40.02882956142872], [-75.110963465984, 40.02900105463474], [-75.11093346239159, 40.02913083519481], [-75.11089965592181, 40.0293583793058], [-75.11088312012737, 40.02952684150518], [-75.11091824685484, 40.029650443769015], [-75.11099587582973, 40.02983641975879], [-75.11104641384301, 40.02994886364824], [-75.11111815921498, 40.03015772835574], [-75.11113817749339, 40.03028481815558], [-75.1111304256763, 40.030484182095286], [-75.11113733717988, 40.03069155703038], [-75.11115355423335, 40.030916413112244], [-75.11114603241961, 40.03098147483674], [-75.11113104639891, 40.031043888122646], [-75.11111029413618, 40.03113031110495], [-75.11108423162239, 40.03128704286119], [-75.1110655442647, 40.03138254520654], [-75.11106017740865, 40.031520565969934], [-75.11105012104336, 40.03165080490753], [-75.11101877241295, 40.031815089260064], [-75.11098697635899, 40.031990875782576], [-75.11098071478231, 40.032151899997615], [-75.11093395775706, 40.032327343632254], [-75.11088094445881, 40.03253525806396], [-75.11086083187242, 40.03279573592071], [-75.11083246535115, 40.03288334174899], [-75.11078444721699, 40.03296282191432], [-75.1107405208493, 40.03306542190741], [-75.11073180561117, 40.03316115427316], [-75.11075606505753, 40.03330752991063], [-75.11083024503537, 40.0334809861199], [-75.11086592483, 40.033563319462765], [-75.1109623165532, 40.03378042456657], [-75.11105961613627, 40.033989029395414], [-75.11110976725047, 40.03409655366053], [-75.11118435201018, 40.034232574807], [-75.11131878745127, 40.034369970957016], [-75.11147771551177, 40.03451943936245], [-75.1116426742597, 40.03464218637786], [-75.1118463429548, 40.03479652038135], [-75.11200088136177, 40.034930539948306], [-75.11210903928468, 40.035101865293676], [-75.11217677643165, 40.03528569564004], [-75.11223007187495, 40.03545576172138], [-75.11229498148876, 40.03558388308132], [-75.11234917031798, 40.03573094741304], [-75.11246381193612, 40.03586404823729], [-75.11259311624242, 40.03600516240305], [-75.11271773120262, 40.03613849196673], [-75.11286185146832, 40.03628378348594], [-75.11305569974876, 40.036434051292005], [-75.11316100665682, 40.036504056939116], [-75.11326496084212, 40.03657316283834], [-75.11338012352775, 40.036692843895196], [-75.11349536452525, 40.03681061013599], [-75.11361410099974, 40.03696682859716], [-75.1137419204401, 40.03714627938603], [-75.11381241943819, 40.03725917994319], [-75.11386266859212, 40.0373792906528], [-75.1139219993191, 40.037522632849516], [-75.11402212652956, 40.03790098860959], [-75.11404788283444, 40.03800902466463], [-75.11408860470681, 40.038117404159905], [-75.11410319589001, 40.03825588381147], [-75.11409857931179, 40.03837473435773], [-75.1141160352188, 40.038503685594705], [-75.11420272836139, 40.038649574724715], [-75.1142487356538, 40.038750401375246], [-75.11425014870089, 40.03884252882347], [-75.11427990082679, 40.03898964670384], [-75.11434745416437, 40.03907566195408], [-75.11445948254539, 40.0392343375422], [-75.11453027601395, 40.03948631264985], [-75.11455061278535, 40.03958602844723], [-75.11453878916122, 40.039679994812566], [-75.11453306027111, 40.03982750226669], [-75.11446248689798, 40.03996095702236], [-75.11437838529145, 40.04002185416315], [-75.1142154194218, 40.04021915570021], [-75.11411900420693, 40.04038657080244], [-75.1140082063116, 40.04050339639674], [-75.11392190675035, 40.04062078412621], [-75.11385169712868, 40.04074482303881], [-75.11378099830318, 40.040881417330844], [-75.11372590411038, 40.04103721654756], [-75.1136475265812, 40.0411610687875], [-75.11359413553215, 40.04127292783695], [-75.11349028293597, 40.041421325852625], [-75.11331865739629, 40.04163099141643], [-75.1130556110803, 40.04187939626916], [-75.11286947701865, 40.04204161064726], [-75.1127741066663, 40.04214006146113], [-75.1127128405414, 40.04228617576003], [-75.11264213788857, 40.042422767540494], [-75.11257021738584, 40.04259074478913], [-75.11253291397634, 40.04270925566286], [-75.11246866984594, 40.04288997486483], [-75.11236858653379, 40.04315154394665], [-75.11233201443348, 40.04325122473875], [-75.11228678688215, 40.043363271613295], [-75.11219231569136, 40.04348047053307], [-75.11210576754667, 40.043604133305365], [-75.11198581625828, 40.04374587662462], [-75.11185124027685, 40.04384330742715], [-75.1117332427706, 40.043934836877064], [-75.11156575354802, 40.04403779158808], [-75.11151024216281, 40.04407797918106], [-75.1105023114915, 40.04351627589818], [-75.10993282324226, 40.04319925585045]]]}}, {"id": "3422", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.08419874170141, 40.03143968991069], [-75.08410591451434, 40.03139699477768], [-75.08368317740005, 40.03115517912689], [-75.08336080567985, 40.030970773680785], [-75.08263572791671, 40.03056433012943], [-75.08086693407104, 40.02955704706404], [-75.08078735737097, 40.02951759989224], [-75.08028492634173, 40.02923217101581], [-75.07998518405103, 40.029061425175044], [-75.0796932647578, 40.02889532236388], [-75.07908101722236, 40.0285537217213], [-75.07847393502698, 40.02820917789621], [-75.077862216485, 40.02787088057335], [-75.07721471049769, 40.02749290128267], [-75.07677420640991, 40.027382718225276], [-75.07563722211042, 40.02708182314514], [-75.07548899291868, 40.027072748600645], [-75.0753671940858, 40.027039098136406], [-75.07514229652037, 40.02684967008404], [-75.07494510576818, 40.02669246215147], [-75.07336441926067, 40.02537013618446], [-75.07396432896537, 40.025074257481116], [-75.07562310739706, 40.02407587162441], [-75.07684195149976, 40.02325898385755], [-75.07750264200587, 40.02280937560482], [-75.07816413361522, 40.02236282970455], [-75.07888115254191, 40.021882928661384], [-75.07912465172282, 40.021706484266794], [-75.07941418942038, 40.02138857280776], [-75.0799195555891, 40.0208342774118], [-75.08042603579892, 40.02030400776405], [-75.08092459856877, 40.01975684134091], [-75.08150044657228, 40.019137017951294], [-75.081994744679, 40.01858136037251], [-75.08264223060424, 40.01789885752839], [-75.08350869706807, 40.01836678867006], [-75.0840592270956, 40.018659715651644], [-75.0843249369079, 40.01880570129187], [-75.08505923193333, 40.01921760855102], [-75.0872830574803, 40.02048620669436], [-75.08862030507747, 40.02124363667434], [-75.08916970347666, 40.020553783344866], [-75.08971963095158, 40.019876666126635], [-75.09149384447011, 40.021028167748334], [-75.09292462407517, 40.02196113938917], [-75.09377048922879, 40.022509222848406], [-75.09495857630324, 40.023261012180676], [-75.0955364517077, 40.02412972769605], [-75.09588283398332, 40.02475709894003], [-75.09704494224373, 40.025879303453735], [-75.09760535640449, 40.026374768656446], [-75.09759035708078, 40.026571076513996], [-75.09725400391805, 40.02641113436297], [-75.09682994834438, 40.02627212964553], [-75.09647774420104, 40.026186774181035], [-75.09605195741689, 40.02613494846775], [-75.0955834671491, 40.026127620134424], [-75.09526862397325, 40.026148333813644], [-75.09495268670224, 40.02619701018641], [-75.09439191996336, 40.0263379947691], [-75.09406814999566, 40.02647046138908], [-75.09377160583495, 40.026629748156786], [-75.0903918108727, 40.02850061797068], [-75.08956157098642, 40.02895049593653], [-75.08853297121763, 40.02951223847952], [-75.08780447439533, 40.02991630348491], [-75.08704403318237, 40.030332471248634], [-75.08673522761529, 40.03051272166657], [-75.08604451725004, 40.03093078216704], [-75.08560488963899, 40.03119645712578], [-75.08547258246628, 40.031273684432875], [-75.0852697585556, 40.03138028375811], [-75.08512333320796, 40.031450025257755], [-75.08492630444702, 40.03154244548476], [-75.08472066349404, 40.03162543348738], [-75.08451686634676, 40.03169751451363], [-75.08432709881482, 40.031763071134606], [-75.08408993092331, 40.03182185063179], [-75.08411167142378, 40.03161919193568], [-75.08419874170141, 40.03143968991069]]]}}, {"id": "3423", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10351314693432, 39.9893369206364], [-75.10308064390418, 39.988847163864136], [-75.10265238198463, 39.988374283990176], [-75.10230801269951, 39.987975914202075], [-75.10195240299188, 39.98757392128347], [-75.10163181469454, 39.98721261325986], [-75.101311975064, 39.986847573232914], [-75.10094217065105, 39.98644174338533], [-75.10058282005755, 39.98602684857752], [-75.10031677022019, 39.98572886869802], [-75.10009754556556, 39.985478587939035], [-75.09980808572746, 39.98515543917393], [-75.09974432942074, 39.985080936240884], [-75.09953190679715, 39.98484255276022], [-75.09932259123386, 39.984596926008905], [-75.09908446847261, 39.98432642894208], [-75.09905740684128, 39.984253711143715], [-75.0990307256498, 39.984149133414206], [-75.09840808852695, 39.98338968708256], [-75.09824731408207, 39.98319358419305], [-75.09804767080702, 39.98295006964042], [-75.09763312964033, 39.98247808102554], [-75.09758221042588, 39.98240811463097], [-75.0975539446821, 39.982314105049944], [-75.0975577314891, 39.98222095340564], [-75.09759008657996, 39.98214100535176], [-75.0976493489436, 39.98206277572151], [-75.09776781703351, 39.98197314037179], [-75.09967356622244, 39.98097029444044], [-75.09784798833998, 39.978878425783975], [-75.09751316558146, 39.97850784737103], [-75.09383959244585, 39.97437300792721], [-75.09483265192154, 39.9741776430036], [-75.09667124539824, 39.973803513900265], [-75.09743238976397, 39.9736379594382], [-75.09804511557637, 39.973504683462046], [-75.0984435126403, 39.9734180244327], [-75.09962358715774, 39.97314785433316], [-75.10135237773447, 39.97271914088583], [-75.10307967990225, 39.972251161764746], [-75.10618538542172, 39.97121600245923], [-75.1087669398379, 39.970222892540406], [-75.11025601168305, 39.96964565307227], [-75.1114996663189, 39.969139770101634], [-75.11406183964452, 39.96805681489876], [-75.11993151327665, 39.97064517307754], [-75.12114399119184, 39.97140323275224], [-75.12124032747748, 39.97151408764217], [-75.12026167932584, 39.97241307167241], [-75.1196488826997, 39.9729759686648], [-75.12011691306996, 39.9732682506991], [-75.12027147970196, 39.97334921215298], [-75.12043960995102, 39.97341179687219], [-75.12071324814686, 39.97344208769076], [-75.12130210318591, 39.97341310161727], [-75.12179293061767, 39.973378695737765], [-75.12214708256286, 39.97355418709864], [-75.12262237426361, 39.97377310726972], [-75.12205945121542, 39.97433784634104], [-75.1216476749726, 39.97473299700309], [-75.12107558289397, 39.975296260148234], [-75.12097598096194, 39.97538559035902], [-75.12000099038568, 39.97593696366765], [-75.11979432968705, 39.976394887457175], [-75.11864142476595, 39.97890501186372], [-75.11835456588065, 39.97954198516514], [-75.11772738319301, 39.98093034717661], [-75.11738518098363, 39.98150738567307], [-75.11738085545169, 39.98151230877383], [-75.11771344779177, 39.981893242481284], [-75.11852341721955, 39.98282667399838], [-75.1191358701804, 39.98348600088939], [-75.11919036295231, 39.983550142775705], [-75.11969085296037, 39.98411339915456], [-75.12025206106696, 39.984756703332486], [-75.12090664203696, 39.985481406064345], [-75.1212126555554, 39.98582197636218], [-75.1215107497833, 39.98616688936588], [-75.12234155204517, 39.98703199039585], [-75.12291451967475, 39.98746386304235], [-75.12338798505213, 39.987917440030564], [-75.12437568899065, 39.98882344897619], [-75.1254917782044, 39.98983790470489], [-75.12467941648082, 39.990280061064965], [-75.12443263724062, 39.99041437725906], [-75.12368779210668, 39.9908370053132], [-75.1225598379027, 39.99142904589025], [-75.12155268191938, 39.99200126868043], [-75.12031000021946, 39.99267372653925], [-75.11969525744287, 39.9930176547012], [-75.11827306308207, 39.99380494945997], [-75.11804388596643, 39.99392739215795], [-75.11577971940605, 39.99516863261082], [-75.11488815880926, 39.995651207425055], [-75.11443934320606, 39.99590407882544], [-75.11399780861547, 39.99614675119862], [-75.11335627413635, 39.99651837529572], [-75.11349353916128, 39.996509398474814], [-75.11378290403151, 39.99654566844975], [-75.11420376026825, 39.99660020163007], [-75.11544873273199, 39.996754717356865], [-75.11594728557785, 39.996823352482735], [-75.11641424499777, 39.99688234038955], [-75.11687527895985, 39.99694403320292], [-75.11738376209497, 39.997007889103365], [-75.117284481552, 39.99749552058664], [-75.11726460987974, 39.99759085143173], [-75.11720552832361, 39.99784824220488], [-75.11713718954385, 39.998204954618366], [-75.11705540656078, 39.99860245187495], [-75.11760779479803, 39.998672192592046], [-75.1181427263644, 39.99874006892576], [-75.11899483260045, 39.99885363710453], [-75.11948064078999, 39.99891846474961], [-75.11995841616955, 39.99897607104749], [-75.12043816082301, 39.99903124892896], [-75.12093406713585, 39.99909845694048], [-75.12141485963465, 39.99916050071101], [-75.12189645061733, 39.99922197325878], [-75.12286983433349, 39.999348225421684], [-75.1240010392231, 39.99949471531793], [-75.1250593976361, 39.99962937005506], [-75.12495304812299, 40.000118295958615], [-75.12482584559972, 40.00073781277301], [-75.1247327042775, 40.001125212840236], [-75.12441189333515, 40.002635747370185], [-75.12416377417915, 40.00383050497931], [-75.12394932729268, 40.0048150263638], [-75.1234268932234, 40.007213386785665], [-75.12271875342688, 40.007135884907754], [-75.11930063244641, 40.00668062097756], [-75.11348354800558, 40.00592851401563], [-75.10937229646842, 40.00539334662989], [-75.10862843880291, 40.00540581803255], [-75.10803781110063, 40.00543237740518], [-75.1073529084745, 40.00547269932909], [-75.10666156788085, 40.00548114721689], [-75.10602631109278, 40.00549929463638], [-75.10533698181442, 40.00551937536787], [-75.10327103349695, 40.005603012611246], [-75.10352956329014, 40.00443165033639], [-75.10360252415369, 40.00407447780811], [-75.10368780044956, 40.0036383117411], [-75.1037972729379, 40.003135874650006], [-75.10181133678756, 40.00286444150113], [-75.10049827342786, 40.00358035163278], [-75.09936342138738, 40.004204338993276], [-75.09798025936766, 40.004951203315294], [-75.096867594174, 40.0055623568645], [-75.09634801619768, 40.005852913915064], [-75.09327398346457, 40.00596226234677], [-75.09288480353679, 40.005974655093624], [-75.09181617120602, 40.00600868145237], [-75.09239074383822, 40.005511140248174], [-75.09255396545545, 40.00536603675294], [-75.09233848386813, 40.0051706262382], [-75.09221919628253, 40.00503682062715], [-75.0921010930726, 40.00487280351358], [-75.09183794632433, 40.00473062814792], [-75.09140573694945, 40.004554296486084], [-75.09097751437344, 40.004443576190404], [-75.09033735121965, 40.004222103066994], [-75.09015139125702, 40.004153884085476], [-75.08941342606012, 40.00388316403909], [-75.08888380083832, 40.00368440414936], [-75.08864656234672, 40.0035503823744], [-75.08842985436478, 40.003394154256455], [-75.08825342491625, 40.003213660293326], [-75.08810160755651, 40.003074055475324], [-75.08798430624469, 40.00288989257783], [-75.08790668836195, 40.00269656807221], [-75.08768061036204, 40.002278035314845], [-75.08758552063374, 40.00202886357714], [-75.08756900623546, 40.00178151413913], [-75.0875148209393, 40.00115780317993], [-75.0874978781014, 40.000754199257734], [-75.08747738455683, 40.00044123669756], [-75.08741858989772, 40.000102183717935], [-75.08725148428842, 39.99985134298901], [-75.0870710855701, 39.99960523222292], [-75.08666932734353, 39.9991549010774], [-75.08637219053867, 39.99889668903513], [-75.08650317560277, 39.99882817507667], [-75.08708989422199, 39.99851975337438], [-75.08946670816803, 39.997270276066914], [-75.0920722662799, 39.99589576298429], [-75.09452368021225, 39.994604333014706], [-75.09555908145178, 39.99409568671221], [-75.09700726018444, 39.99340093093542], [-75.09930174421098, 39.99218683465115], [-75.1016035551865, 39.99099546766221], [-75.10390372468184, 39.989797541868775], [-75.10390971850677, 39.989794342522494], [-75.10351314693432, 39.9893369206364]], [[-75.10776015070692, 39.99010542981824], [-75.10737064629286, 39.98967049495309], [-75.10707872669175, 39.989338668237636], [-75.10677909348554, 39.98900598098831], [-75.10635638278846, 39.98854972868803], [-75.10635144611298, 39.988552289988235], [-75.10674905570413, 39.98898144880599], [-75.10704868744959, 39.989314137007256], [-75.10734060796894, 39.9896459638263], [-75.10773011087964, 39.99008089876677], [-75.10801484901846, 39.99040233705714], [-75.1083140210508, 39.990732525123946], [-75.1087554459966, 39.991238922759486], [-75.10876125394992, 39.99123565516094], [-75.10834406137712, 39.990757056022076], [-75.10804488788534, 39.990426868907115], [-75.10776015070692, 39.99010542981824]], [[-75.1111666476381, 39.98992317018299], [-75.11116134482363, 39.98992615683433], [-75.1112551974888, 39.99003055456577], [-75.11147487961829, 39.99027300856957], [-75.11148009982134, 39.99027014617919], [-75.11128523736149, 39.99005508556822], [-75.1111666476381, 39.98992317018299]]]}}, {"id": "3424", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.19460271708917, 39.942260124464774], [-75.19386792557843, 39.94227634272461], [-75.19369737903752, 39.942280125631584], [-75.19364560318907, 39.942281245825754], [-75.19253116202371, 39.94259603349538], [-75.19177005947272, 39.94303188465246], [-75.19157341030997, 39.94319903601902], [-75.19136046085595, 39.943075414074606], [-75.1910869949525, 39.94291735389807], [-75.19083072896899, 39.94276959240501], [-75.19053953193601, 39.942601762056334], [-75.19019164382442, 39.94240087094255], [-75.18990808327047, 39.942253728921074], [-75.18962417748999, 39.942106989324515], [-75.18933921741734, 39.94196142109909], [-75.18905229636356, 39.9418181915225], [-75.18875975857343, 39.94168196275867], [-75.18846435891797, 39.94154927064173], [-75.18817193368325, 39.94141278695324], [-75.18787962417663, 39.94127618254073], [-75.187582394664, 39.941146041204426], [-75.18728409480497, 39.94101730776212], [-75.18699036118441, 39.940882551394274], [-75.18685092941591, 39.94081667842323], [-75.18744554526633, 39.94036545315516], [-75.18655241248791, 39.940231437973296], [-75.18631707191341, 39.94019515155492], [-75.18578213809973, 39.94013319178685], [-75.1853416132417, 39.94008211824106], [-75.18495610112747, 39.94008534101652], [-75.18516814972767, 39.93911548563741], [-75.18523483849769, 39.938824544195754], [-75.18527101941457, 39.938663579602974], [-75.18530335339072, 39.93851578013453], [-75.1853918963181, 39.93805886479759], [-75.18541643376375, 39.93795369886082], [-75.18549993635563, 39.93759827496855], [-75.18572790895732, 39.93648034793651], [-75.18575640786506, 39.93648392872858], [-75.18732760299982, 39.93668022889355], [-75.18888557125193, 39.93688807195146], [-75.18897800978061, 39.93645812481999], [-75.18906265917072, 39.936096819177195], [-75.18914801425663, 39.93567262079523], [-75.18923713517907, 39.93524427892119], [-75.18931761794046, 39.934867517007774], [-75.1894169526017, 39.93443037137289], [-75.18968857636325, 39.93322864037063], [-75.1899493618791, 39.932003488518205], [-75.19012731576615, 39.931220084595004], [-75.1902220487094, 39.93078038680986], [-75.19047474449467, 39.92955977394741], [-75.19053543273527, 39.92926649229742], [-75.19060233030642, 39.928978118248274], [-75.19066859300911, 39.92866941676119], [-75.19074422958964, 39.92832825837987], [-75.19081348797354, 39.928013904988966], [-75.1908730394135, 39.92773812156416], [-75.19093151825834, 39.92746656874468], [-75.19100820692802, 39.927117599451165], [-75.1899181876443, 39.926970750615254], [-75.18946070656388, 39.926984595101054], [-75.18997104522253, 39.92688815214393], [-75.19048556896081, 39.926739731963984], [-75.19100906898176, 39.92655764092452], [-75.19138477873135, 39.92643766419167], [-75.19156533587899, 39.92638000609633], [-75.19197881306039, 39.92624796494283], [-75.19209440777651, 39.926203476633354], [-75.19234561742311, 39.92610679659354], [-75.19248167879262, 39.92605443277392], [-75.19261584179569, 39.92604225557384], [-75.19283266918998, 39.926071733611906], [-75.19296708973327, 39.92503366855368], [-75.19269098803389, 39.92474055559078], [-75.19250447035066, 39.92454503064019], [-75.19234322256247, 39.92437831201164], [-75.19199250935134, 39.92401569699446], [-75.19161165853886, 39.923617751117284], [-75.19139613936314, 39.92338336357609], [-75.19118578818758, 39.923305688022566], [-75.19110163648162, 39.923295418125015], [-75.19026602904323, 39.92319343690514], [-75.18866229293894, 39.92299769209519], [-75.18887518116124, 39.922077642304465], [-75.18890044418367, 39.92197068733024], [-75.18965238681633, 39.92180636368266], [-75.19006058289085, 39.9217171307119], [-75.19015860117176, 39.92170215116822], [-75.1903419604548, 39.92167437759978], [-75.19047247264182, 39.92165423956683], [-75.19060146538074, 39.92162802170247], [-75.19081634417404, 39.92158434713675], [-75.19106794347522, 39.92153321049858], [-75.19122215402639, 39.921500199794416], [-75.19181991635783, 39.92138891467094], [-75.19249473767239, 39.9212670726349], [-75.1938644811039, 39.9211301915961], [-75.19448533530738, 39.921085070263416], [-75.19504651330628, 39.92101268758331], [-75.20006238051837, 39.92013718296255], [-75.20179132442954, 39.91981930807259], [-75.2019945286076, 39.919781946952625], [-75.20203954057037, 39.919939811356116], [-75.20262167546693, 39.920589535899126], [-75.20375348198348, 39.921039201492874], [-75.20524090114905, 39.92107222205077], [-75.20647864311627, 39.920901574082286], [-75.20771109345405, 39.920872302717065], [-75.20888316774469, 39.92098318900874], [-75.20994136801055, 39.92119059609576], [-75.21111670313407, 39.92195247005715], [-75.21195444836577, 39.92265025678862], [-75.21236773139668, 39.92339524882293], [-75.21255801411132, 39.92420605590866], [-75.21240349026309, 39.92539130720084], [-75.21214722121682, 39.92634789377554], [-75.21157630482006, 39.92760883240147], [-75.21116053746807, 39.928406227444746], [-75.21074355424716, 39.929267201457094], [-75.21052319268539, 39.92972229370418], [-75.20969119752053, 39.930835934591194], [-75.20757291260742, 39.933166337097894], [-75.20642541432272, 39.9343578658045], [-75.2058484773116, 39.93503846158553], [-75.2055971311071, 39.93548447427487], [-75.20537590640467, 39.93587702877518], [-75.20516612810576, 39.937061048418464], [-75.205161751336, 39.93840528394946], [-75.20516213209207, 39.938603951228046], [-75.20516533511787, 39.94027327776247], [-75.20515916367398, 39.94065801560933], [-75.2051511241047, 39.941109705274734], [-75.20503308883262, 39.94184108941856], [-75.20454685757073, 39.94255199429125], [-75.20384389489251, 39.943159031803354], [-75.2030545074157, 39.94362262812122], [-75.2018099014724, 39.94396290300457], [-75.20161442497796, 39.94396959747437], [-75.20080678289902, 39.9439972290549], [-75.20042752555308, 39.94394416737382], [-75.19996512413074, 39.94387946206713], [-75.19909313422974, 39.94360535829999], [-75.19795163481602, 39.94316960721573], [-75.19692197216327, 39.94267969748615], [-75.19577620044844, 39.94234286678344], [-75.19460271708917, 39.942260124464774]]]}}, {"id": "3426", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15717617792004, 40.054836323074866], [-75.1569513074915, 40.05473349141708], [-75.15648768589912, 40.054521088248016], [-75.15555586975394, 40.054075078255536], [-75.15521592846608, 40.053923630467544], [-75.1552727968388, 40.05311415506475], [-75.15535591337611, 40.05184994789018], [-75.15544804124193, 40.050509287563564], [-75.15550418978171, 40.04957273185858], [-75.15554903914908, 40.04893607533981], [-75.15564729333768, 40.04737197878589], [-75.15574994730251, 40.04581858914535], [-75.15577069181604, 40.04532887629433], [-75.15579424451015, 40.045130568462234], [-75.15586689162292, 40.04372131585984], [-75.15671170262142, 40.04374406575828], [-75.15710054390964, 40.04375024955351], [-75.15749434216939, 40.04376394033985], [-75.15826273724423, 40.04378326023385], [-75.15828650750801, 40.04334277765106], [-75.15830795807854, 40.042862286311994], [-75.15831847943383, 40.04240956273372], [-75.15834207328669, 40.04202281718912], [-75.15835915529544, 40.041488147437796], [-75.15840456619196, 40.040737478582756], [-75.15845241039253, 40.03854029926103], [-75.16087097790971, 40.039344789566556], [-75.16369002224152, 40.04100194564999], [-75.16507823000445, 40.04185959534455], [-75.1658194402422, 40.04231065211631], [-75.16611271882427, 40.04249277144439], [-75.16709265379062, 40.04309643913794], [-75.16720798133798, 40.04315036478413], [-75.16608592135853, 40.04424446434573], [-75.16483188229346, 40.045469253398956], [-75.16556840861145, 40.045923622089], [-75.16603828529823, 40.046219158406636], [-75.16684701465616, 40.04672479830209], [-75.16770275926207, 40.047246253974855], [-75.16723865320313, 40.04768607142578], [-75.16605473744411, 40.04883455137416], [-75.16525712299926, 40.04959732185242], [-75.16520215329996, 40.04965200639097], [-75.1645290723687, 40.050307646064056], [-75.16337456802582, 40.051419298090025], [-75.16189938305337, 40.05284319234763], [-75.16138759282359, 40.053342933770466], [-75.1611689402338, 40.05355483490157], [-75.16091929300433, 40.0537925062337], [-75.16044128197008, 40.05425713561772], [-75.15889048363145, 40.05576949183422], [-75.1583068914531, 40.05543826600539], [-75.15787079217264, 40.05519994829528], [-75.15774917146788, 40.05515408706353], [-75.15772612947846, 40.05514266578577], [-75.15755804003476, 40.05503537344851], [-75.15717617792004, 40.054836323074866]]]}}, {"id": "3427", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16611271882427, 40.04249277144439], [-75.1658194402422, 40.04231065211631], [-75.16507823000445, 40.04185959534455], [-75.16369002224152, 40.04100194564999], [-75.16087097790971, 40.039344789566556], [-75.15845241039253, 40.03854029926103], [-75.15841548109299, 40.03750327785943], [-75.15837413570682, 40.03668606571486], [-75.15836467388999, 40.036347448909254], [-75.15882863365184, 40.03588386659471], [-75.15850981372526, 40.035766671271105], [-75.15823082457943, 40.03561202212634], [-75.15796322411806, 40.03544682161301], [-75.15772483000877, 40.03525782697669], [-75.15751279485703, 40.03504927827877], [-75.15735819077271, 40.03481603849007], [-75.15724637207973, 40.03456517277133], [-75.1571768165857, 40.03430843673233], [-75.15714856928291, 40.03404519711063], [-75.15713925335662, 40.033781562234935], [-75.15713405080882, 40.03351847252612], [-75.15713133069852, 40.033255295594444], [-75.15713040889257, 40.03299205113556], [-75.15713060684874, 40.032728766178884], [-75.15713124379629, 40.032465465000264], [-75.15713163422186, 40.03220217357025], [-75.15713109754785, 40.031938911663524], [-75.1571286918101, 40.03167566882585], [-75.15712456565255, 40.03141238984647], [-75.15712063496119, 40.03114911888007], [-75.15711958910998, 40.03099435210139], [-75.15711885558103, 40.030885896479255], [-75.15712118318922, 40.03062276679764], [-75.15713063868077, 40.030359502505014], [-75.15715328534526, 40.030096589183955], [-75.15719465811908, 40.02983560783092], [-75.1572537030976, 40.029576312987786], [-75.15732283736757, 40.02931819916721], [-75.15739491993216, 40.02906085466382], [-75.15746806296517, 40.02880371697023], [-75.15754224713022, 40.02854673969627], [-75.15761740459884, 40.02828991860611], [-75.15769346172291, 40.02803324843151], [-75.15777034826526, 40.02777672668455], [-75.15784799643501, 40.02752034822959], [-75.1579260739936, 40.027264035287075], [-75.15800315192656, 40.02700739699868], [-75.15807933560305, 40.026750467279854], [-75.15815500634048, 40.02649335835503], [-75.1582305488609, 40.02623618522761], [-75.15830634454005, 40.02597905831943], [-75.15838277571298, 40.02572209347934], [-75.15846022488144, 40.025465402053776], [-75.15853907564416, 40.025209097215225], [-75.15861971166329, 40.024953290334516], [-75.15870251287683, 40.02469809810343], [-75.15878786297104, 40.02444363099025], [-75.1588761454554, 40.02419000396313], [-75.15896867635486, 40.023937587293304], [-75.15910561261985, 40.023697600917764], [-75.15927639149338, 40.02346717452106], [-75.1593151807718, 40.023411916350135], [-75.15955229569964, 40.02392652656961], [-75.15985830538149, 40.02462568816048], [-75.15989823412484, 40.024934916174836], [-75.15993190666204, 40.02555640847333], [-75.16005440340837, 40.0260242608284], [-75.16024532162861, 40.02630149469953], [-75.16057543984138, 40.02672479680068], [-75.16098306030462, 40.027254555654764], [-75.16142639258389, 40.027765739741476], [-75.16212693468864, 40.02824609646851], [-75.16226937941563, 40.028335271113015], [-75.16327034575254, 40.028961898037004], [-75.16374963293076, 40.02925677668989], [-75.16413486010035, 40.02949517005147], [-75.16495001486003, 40.029946937599085], [-75.16549124869522, 40.030243355246], [-75.16612124799292, 40.03060137387694], [-75.16648911530056, 40.03079541067652], [-75.16665612700291, 40.03089173848313], [-75.16774285096625, 40.03151764782613], [-75.16852487493777, 40.03194671602884], [-75.16921170143596, 40.032315150338924], [-75.16933164472384, 40.032384388862205], [-75.1706110856358, 40.03313266683023], [-75.17206034923001, 40.03398307995448], [-75.17271106053025, 40.03436680448122], [-75.17351405998669, 40.03483239338483], [-75.17372512349114, 40.035013997200274], [-75.17395171402475, 40.03519462706986], [-75.17472531934024, 40.03582198106344], [-75.17385116330975, 40.03667716078563], [-75.17307956027062, 40.03743490410127], [-75.17214922889707, 40.03834761950925], [-75.17161929608605, 40.03884884621468], [-75.16979490361025, 40.04063091677584], [-75.16870844823859, 40.0416874424567], [-75.16720798133798, 40.04315036478413], [-75.16709265379062, 40.04309643913794], [-75.16611271882427, 40.04249277144439]]]}}, {"id": "3428", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22978570204727, 39.960600373984306], [-75.22926343436752, 39.96053660207573], [-75.22864645665969, 39.96046483588109], [-75.22797617665447, 39.96037854276966], [-75.2274440501019, 39.96031227707355], [-75.22685117094453, 39.96024000475525], [-75.22620947880866, 39.96016033418035], [-75.22486806570537, 39.960006758007836], [-75.22477258922517, 39.9599762940573], [-75.22421322127714, 39.95990071720949], [-75.22388433780017, 39.95986316309301], [-75.22290106608362, 39.95974637621446], [-75.22239684004771, 39.95968156550928], [-75.22190949565909, 39.95962711754266], [-75.22092091673352, 39.959506370957484], [-75.22108669773192, 39.95873296666356], [-75.2212452105831, 39.95798512282026], [-75.22139876232934, 39.95722829373262], [-75.22149388168697, 39.956831736809185], [-75.22156022486105, 39.956462883842796], [-75.2216873926178, 39.95585536230671], [-75.2217982925147, 39.955320872144064], [-75.22192358674249, 39.954724257174874], [-75.22203767016683, 39.9541745245253], [-75.2220575849949, 39.95410396374315], [-75.22219283966916, 39.95341499671031], [-75.2222800420232, 39.95304100157719], [-75.22243591661017, 39.95228185757551], [-75.22258996908286, 39.951520619003304], [-75.22061693130486, 39.951276551263554], [-75.22077646819018, 39.950514077833525], [-75.22093688238962, 39.94972740202175], [-75.22291509578595, 39.949976453655864], [-75.22489312408028, 39.950215311637955], [-75.2268695724043, 39.950461812102006], [-75.22884682614269, 39.95070699306487], [-75.23063630139251, 39.95092370508727], [-75.2303245095811, 39.95247656068331], [-75.2302067744439, 39.95299633919074], [-75.23011292426536, 39.95345780357851], [-75.22999964359012, 39.9539974791832], [-75.23125273842643, 39.95414472489516], [-75.2321531848757, 39.954263206249884], [-75.23204584723553, 39.954781857684175], [-75.23193785246828, 39.95532005975538], [-75.23191132069722, 39.95541321793619], [-75.23180125062657, 39.95594961381813], [-75.23167498196297, 39.95654524233081], [-75.23155739462278, 39.957103005941605], [-75.23143923401801, 39.95768998429868], [-75.23127838691903, 39.95844994113663], [-75.23111421415305, 39.95921133036289], [-75.23096174457179, 39.95995539343796], [-75.23080297426164, 39.960723310653556], [-75.23024805594517, 39.96065731896809], [-75.22978570204727, 39.960600373984306]]]}}, {"id": "4020", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22831950768749, 39.96203465368984], [-75.22890005165743, 39.962108580531364], [-75.2294393887058, 39.96217231617399], [-75.22997789457627, 39.96224147031967], [-75.23055280293089, 39.96231103746482], [-75.23111700353813, 39.96238527615233], [-75.23252865584055, 39.96255878324145], [-75.23322361067352, 39.9626449768465], [-75.23381051701594, 39.962713922148495], [-75.23454018565789, 39.96280875270846], [-75.23445932939023, 39.963200941933835], [-75.23437635415527, 39.9635658070285], [-75.23422456767936, 39.9643261508282], [-75.23406328017319, 39.965086532123166], [-75.23390423808061, 39.96584799773842], [-75.23485508281934, 39.9659636960506], [-75.23584294651286, 39.96608663788389], [-75.23650507401216, 39.966168230655015], [-75.2371614548503, 39.96625200566942], [-75.2378184730562, 39.96633140931446], [-75.23750271463467, 39.96785548024659], [-75.23728329128427, 39.96890011837256], [-75.23724127600507, 39.96897856508314], [-75.23729344550368, 39.96926116010406], [-75.2374561581777, 39.970142539223346], [-75.23828930295882, 39.970049354997684], [-75.23904602094366, 39.96996385280201], [-75.23913452825445, 39.969894156939084], [-75.23913209514878, 39.969754754208566], [-75.2394792263291, 39.968098598180006], [-75.24046481307757, 39.96821893667362], [-75.24145297711482, 39.96834167726721], [-75.24212447373782, 39.96842525010824], [-75.24275547517408, 39.96850182540956], [-75.2434287755889, 39.968584480317844], [-75.24441601399035, 39.968707975928204], [-75.24547391384, 39.96883780580013], [-75.24579194506076, 39.967319375064456], [-75.24610900459369, 39.96579829700107], [-75.24716915793863, 39.96592870104606], [-75.247464351418, 39.96448137930475], [-75.24744737459446, 39.964391926196676], [-75.24756505959537, 39.963639605442836], [-75.24768522380508, 39.96377860116682], [-75.2477793782375, 39.96387705884449], [-75.24790389371616, 39.96398087900826], [-75.24805776030611, 39.9640759345147], [-75.24861588618744, 39.964353800501904], [-75.24896818715834, 39.96449550559238], [-75.24946554590588, 39.96472266297798], [-75.24988116026812, 39.96492922878938], [-75.25002286147466, 39.96502284247945], [-75.25017837712105, 39.96507325713627], [-75.25031446366849, 39.96507034213005], [-75.2504477428817, 39.96501916641492], [-75.25060613915447, 39.96494972680868], [-75.25075843127458, 39.96488015493032], [-75.25091426179873, 39.96483887444101], [-75.25107591376845, 39.96484709750767], [-75.25120181749591, 39.964913325127895], [-75.25128402560523, 39.965004463956404], [-75.25134258464124, 39.96507392705957], [-75.25133917134195, 39.965166729510464], [-75.25136969178952, 39.9652508636921], [-75.25146336368871, 39.96532109136322], [-75.25160413229484, 39.965357075214506], [-75.25170837757055, 39.96534758804899], [-75.25181287846094, 39.96533105340396], [-75.25192331738495, 39.96531935021451], [-75.25209490560532, 39.965306626594725], [-75.25233571378551, 39.965281302739314], [-75.25263623064134, 39.96525257392888], [-75.25284428756365, 39.96524534522126], [-75.25297295714975, 39.96523638938019], [-75.25307763142389, 39.965215155101575], [-75.25322234528832, 39.965185384786416], [-75.25331553060542, 39.96522738582488], [-75.25340897161496, 39.96526233669846], [-75.25358324169278, 39.96530139863625], [-75.25371358490948, 39.96533009739746], [-75.25393745710235, 39.96539139947551], [-75.2540943564404, 39.965404217128], [-75.25422357081916, 39.96533884096122], [-75.25432028042124, 39.96524336647207], [-75.25438103857822, 39.96512829819331], [-75.25445733673064, 39.96504766222007], [-75.25454490118413, 39.96499313593438], [-75.25463289463416, 39.96492686280587], [-75.2547395539302, 39.964851588320144], [-75.25493832851332, 39.96476421100497], [-75.25511359975978, 39.96469278156741], [-75.25526773132212, 39.96465616145459], [-75.25540921682783, 39.96463102139762], [-75.25554493994596, 39.96459635226818], [-75.25568728897943, 39.96454771843652], [-75.25583275919314, 39.96445565343248], [-75.25589230528023, 39.964373478410195], [-75.25596782694207, 39.96431398433572], [-75.25608347207078, 39.964243609842306], [-75.25619361114309, 39.964156654495994], [-75.25628194810722, 39.964080980401455], [-75.25638361798937, 39.963975031768065], [-75.25658701896828, 39.96380310524684], [-75.25668782927404, 39.963720648984804], [-75.2567823740493, 39.963683907807216], [-75.25694135836522, 39.96368148347726], [-75.25712757987775, 39.96372785360648], [-75.25729434232044, 39.963763218559926], [-75.25745349801994, 39.963756094980965], [-75.25754393842874, 39.963706332131565], [-75.25766826655317, 39.96364907480783], [-75.25782439288122, 39.96359956188437], [-75.25793497463482, 39.963625477768396], [-75.25800447150725, 39.96370928169717], [-75.25801363245961, 39.96385525968886], [-75.25801465271266, 39.963994008833296], [-75.25797759705557, 39.96412957851495], [-75.25794494583565, 39.96426994610895], [-75.25799249841998, 39.96438971928584], [-75.25809000638469, 39.96443886322959], [-75.2582315953502, 39.96445251852966], [-75.25837370017565, 39.964452078082694], [-75.25849071135181, 39.96451105062193], [-75.258547854506, 39.964619274805074], [-75.25861529909808, 39.964738302942806], [-75.25869579374323, 39.964876426123446], [-75.25871389426283, 39.96496616743167], [-75.25871655294945, 39.96506027751206], [-75.25871297136004, 39.96524124881307], [-75.25870582756265, 39.965352779293816], [-75.25873897775676, 39.96544872540839], [-75.25878281352246, 39.96554490621948], [-75.25886516180807, 39.96563251505349], [-75.25897505812372, 39.96567722399897], [-75.25907835404288, 39.96569357510518], [-75.25921566680293, 39.96569890577054], [-75.25933483189694, 39.965699142785894], [-75.25941279750465, 39.96573963080782], [-75.25942840416371, 39.96581403528553], [-75.25943975127157, 39.96592126579723], [-75.25955254833205, 39.9660118866074], [-75.25964922071925, 39.96604220108914], [-75.25977913729092, 39.96608264060492], [-75.2599093111313, 39.96611603352195], [-75.26006524408086, 39.966197008731356], [-75.26031049741809, 39.966258762171016], [-75.2604910270259, 39.96631490318297], [-75.260623238936, 39.96627279168309], [-75.26079045437787, 39.9662764194162], [-75.26093379641621, 39.966243366988095], [-75.26102709877767, 39.96619952979436], [-75.26113926037122, 39.966110237743976], [-75.26125056796985, 39.966012989367606], [-75.26138734376573, 39.96600272769833], [-75.26146338510004, 39.966054648433], [-75.26154820032066, 39.96611734329838], [-75.26166239053003, 39.96616039121987], [-75.26177487345527, 39.966187523902455], [-75.26189348622032, 39.9661724583135], [-75.26201401906312, 39.96613626464223], [-75.26209890174695, 39.96607195829984], [-75.26211729154339, 39.96600797249942], [-75.26215139227739, 39.96595314801409], [-75.2622602236201, 39.965865661258434], [-75.26236353462845, 39.96576283344492], [-75.26244080321875, 39.96565602620614], [-75.26253626560519, 39.9656157620172], [-75.26264910168297, 39.96563320148516], [-75.26280228129282, 39.965644459741384], [-75.26294047574343, 39.96559541878383], [-75.26306166698181, 39.965509849818986], [-75.26317011682211, 39.96545928181954], [-75.2632801457881, 39.96549077198556], [-75.26338469228234, 39.965546838376255], [-75.2634999314463, 39.965592550693714], [-75.26361575127439, 39.9656224018904], [-75.26373382166734, 39.965606438808436], [-75.2638925745811, 39.96554373184378], [-75.26400395736077, 39.965475587101565], [-75.26409504700362, 39.96539818463679], [-75.26424258006374, 39.96531318427432], [-75.26437349643582, 39.96524369914122], [-75.26452562628133, 39.96518966670934], [-75.26464400988061, 39.965180766022385], [-75.26475847594591, 39.965185009544044], [-75.26491989850662, 39.96519026997155], [-75.26505962253569, 39.9651932961095], [-75.26525393659826, 39.96520808725808], [-75.2654189072414, 39.965241646310574], [-75.26554800782657, 39.96537850044579], [-75.2656571866125, 39.96552727109349], [-75.26574520340267, 39.965627955516354], [-75.26580611550156, 39.965717472754235], [-75.26585838466731, 39.96579268888802], [-75.26592236254224, 39.96586110376407], [-75.26604946138958, 39.965927356831095], [-75.26619464308726, 39.96596930517032], [-75.2663558264551, 39.966012483559055], [-75.26654572245975, 39.966022767406024], [-75.26675226433892, 39.966016654659676], [-75.26691070252804, 39.966009499641864], [-75.26702471920359, 39.96602607825345], [-75.26717753207062, 39.96607877524957], [-75.26729380946172, 39.96615890397913], [-75.26737711392987, 39.966212171656025], [-75.2675041832672, 39.966267527710016], [-75.26763528202483, 39.96628712147845], [-75.26777998240793, 39.96634228833357], [-75.26791077678227, 39.966401561806634], [-75.26813095861925, 39.96649275792624], [-75.26839332364213, 39.966590156535425], [-75.2684879211227, 39.96663630116208], [-75.26856838821512, 39.96669272399529], [-75.26870209308387, 39.96679792233221], [-75.26877314063175, 39.96686119602945], [-75.26884793203345, 39.9669474834126], [-75.2689178223784, 39.9670424818077], [-75.26901732057507, 39.96723690165692], [-75.26906281706512, 39.96730932449359], [-75.26916363321028, 39.96737353619685], [-75.26931520040584, 39.96739768533159], [-75.26947164254084, 39.96738254678414], [-75.26954940760504, 39.96735600544301], [-75.26964222570032, 39.96732537822608], [-75.26974114420464, 39.96731605144295], [-75.26982980277185, 39.967336488485415], [-75.26994080967651, 39.96740415429852], [-75.27001750229617, 39.96751693938681], [-75.27005546419105, 39.96765446359375], [-75.27008609397892, 39.96775743332085], [-75.27014147030803, 39.967873284963005], [-75.27019264858359, 39.967978463780554], [-75.27029857547103, 39.96818536843522], [-75.27039605939422, 39.968340937118356], [-75.27041825229144, 39.96845519034891], [-75.27047525775806, 39.96855784694886], [-75.27060759119026, 39.96865889938613], [-75.27074631313926, 39.968668658677835], [-75.27087600835432, 39.968632654577455], [-75.27101562691286, 39.968607446784695], [-75.27113982493529, 39.96862777030827], [-75.27124165378416, 39.96866436607983], [-75.27136877512659, 39.96869886372079], [-75.27149100636406, 39.96871032373607], [-75.27159166987883, 39.96871602539292], [-75.27169888243431, 39.968730689046524], [-75.27183341176121, 39.968782101770195], [-75.27192338869241, 39.96886077640519], [-75.27200552968517, 39.96896574004722], [-75.2720875016248, 39.96901248918478], [-75.2721973785659, 39.969048377619984], [-75.2723446699692, 39.96909565678861], [-75.27250608970286, 39.96913265605032], [-75.27262589201683, 39.96917934132502], [-75.27277184335667, 39.969231882479804], [-75.27300662004204, 39.96930045123913], [-75.27323356179036, 39.96930094053377], [-75.2734544051496, 39.96928013094595], [-75.27357021577774, 39.969279102158396], [-75.2736822032329, 39.96928857460309], [-75.2738102288223, 39.96929839303772], [-75.27391292624827, 39.96931119213032], [-75.27401358851628, 39.96931689161242], [-75.27415109702976, 39.96931809455762], [-75.27432649972707, 39.969317469632365], [-75.27448834915032, 39.9693112605676], [-75.27484957631505, 39.96929127212687], [-75.27505636479906, 39.96929440896439], [-75.2751979025655, 39.969326566152496], [-75.27529422162277, 39.96938861653901], [-75.27537981994091, 39.96954039701618], [-75.27545651418261, 39.96977929878811], [-75.27549455040116, 39.969930933724896], [-75.27556823756021, 39.97012655489465], [-75.27560753384536, 39.97021207217482], [-75.2756790833548, 39.97027755600434], [-75.27581943212209, 39.970311010280305], [-75.27600562051816, 39.97031326148098], [-75.27621655745362, 39.97032839209221], [-75.27630337930857, 39.97035231355931], [-75.27639208218493, 39.97040317435482], [-75.27645347489127, 39.97049577995993], [-75.27650845682969, 39.97059133500776], [-75.27663081832311, 39.97081181759219], [-75.27666108441865, 39.97096438829077], [-75.27655897481661, 39.971077062658885], [-75.27647681652651, 39.97115070035715], [-75.27655402223768, 39.97124452971475], [-75.2767251942114, 39.971249982456406], [-75.27686183385241, 39.97119648269428], [-75.27707374547703, 39.971106238414094], [-75.27716729138939, 39.97108708756969], [-75.27730324621768, 39.971083843768945], [-75.27742249122169, 39.97109876035016], [-75.27755560737012, 39.97114197822164], [-75.27765799846647, 39.9712105507228], [-75.2776966387695, 39.97126694774047], [-75.27768369953003, 39.971344281401834], [-75.2775375059147, 39.971409395369484], [-75.27752660910306, 39.97153713344782], [-75.27759278090684, 39.9716166140329], [-75.27765872446948, 39.97165253165632], [-75.27776625909163, 39.971679707495724], [-75.2778875217629, 39.971694333674876], [-75.2779938245599, 39.97173386766503], [-75.27829745667975, 39.97192902531337], [-75.27835368985112, 39.97201433604586], [-75.27845022447251, 39.97210771993886], [-75.27853792600652, 39.97218649778466], [-75.27863376462648, 39.97229908987982], [-75.27869822404367, 39.97241581194476], [-75.27872523619963, 39.97253172751549], [-75.27876048646607, 39.972635804990645], [-75.27877927328194, 39.97272030725401], [-75.27878418087369, 39.97284295463171], [-75.27879585289563, 39.97295133016385], [-75.27881090768369, 39.97305257158474], [-75.27883185465254, 39.97316355066624], [-75.27886000276243, 39.97324825540332], [-75.27893478651718, 39.97333876841981], [-75.27897142380097, 39.973447681518365], [-75.2789997468898, 39.973527584143355], [-75.27906533009049, 39.97365634295254], [-75.27910958452401, 39.973813476597286], [-75.2791246388332, 39.97391471704907], [-75.27917194907599, 39.97398781879196], [-75.27924215052055, 39.974032581956855], [-75.27935933750587, 39.97407354903744], [-75.2794668117676, 39.97412391856745], [-75.27960193564434, 39.97418689602152], [-75.27980630144762, 39.97432104576538], [-75.27995554698477, 39.974425175482324], [-75.28003974026686, 39.97452890493397], [-75.28008569570692, 39.97462500440104], [-75.28013161062924, 39.974736521475975], [-75.28019356522486, 39.97483636824822], [-75.28030494348063, 39.97499282958565], [-75.27942880590791, 39.97543776910457], [-75.27767815353906, 39.97633805029053], [-75.27637978216349, 39.977005710925546], [-75.27614487465645, 39.97711075459385], [-75.27529559584758, 39.97749051778284], [-75.27357298205358, 39.97826076910169], [-75.27303027921207, 39.97850208912234], [-75.2722670159775, 39.97884147602715], [-75.2714231867024, 39.97921867213419], [-75.26927040715022, 39.98017154149284], [-75.26747837229865, 39.980966265533], [-75.26625785964977, 39.98150750669138], [-75.26559186859274, 39.98180283336507], [-75.26477028042451, 39.982167149718165], [-75.26438298957272, 39.98233888222463], [-75.26371556310222, 39.98263482679255], [-75.26218443439792, 39.98348226865512], [-75.26072952068351, 39.984282074375585], [-75.25950960686441, 39.984952663492855], [-75.25895553332985, 39.98525723169234], [-75.25872753309847, 39.985382559416664], [-75.2585677370443, 39.98551310456246], [-75.258500930732, 39.98556768046523], [-75.25689606554148, 39.98675825032424], [-75.25629660428655, 39.98720179878692], [-75.25611910988093, 39.98731302101286], [-75.25569741881579, 39.98751066331712], [-75.2540006401353, 39.988305893059476], [-75.25146797189905, 39.989493599388325], [-75.25082157861772, 39.98979671217423], [-75.25009715667207, 39.99013718173664], [-75.24918968530673, 39.990563671345605], [-75.24801120862959, 39.99111750895355], [-75.24568439590047, 39.99221095566884], [-75.24378898226598, 39.99310161388292], [-75.2416513158407, 39.994106038824725], [-75.23902511457084, 39.99533696854877], [-75.23735992896796, 39.996117407840515], [-75.23528612184207, 39.99708929728722], [-75.2342435509762, 39.997580435421085], [-75.23322898683246, 39.99804843993605], [-75.23215131811106, 39.9985508797588], [-75.23088773310894, 39.99913997478075], [-75.22945343189996, 39.999812190246274], [-75.22873987281054, 40.000147416213096], [-75.22837586510683, 40.00031842009324], [-75.2274782674168, 40.00074008910896], [-75.22641469824666, 40.001239711627804], [-75.22362994305126, 40.00254779807926], [-75.22069649209475, 40.003925603511995], [-75.21922467833316, 40.004616846915006], [-75.2183458956281, 40.005029556222254], [-75.21577504285966, 40.006236852254894], [-75.21457036263607, 40.00680254793726], [-75.21375540196738, 40.0071470494259], [-75.2130457386327, 40.00744703273062], [-75.21076679598913, 40.00855247204905], [-75.20926651565273, 40.00948811598932], [-75.20838974912195, 40.01004762447749], [-75.20810571601615, 40.010233172363904], [-75.20802453324175, 40.01028672353252], [-75.20794649428309, 40.010338203472806], [-75.20786763334567, 40.0103882568974], [-75.20758817071156, 40.010589319998054], [-75.20726214950554, 40.01076818862627], [-75.20725181468926, 40.01087702961448], [-75.20723867124346, 40.01101543243763], [-75.20699226425197, 40.01119720508264], [-75.20613902163231, 40.01182662245913], [-75.20605558240162, 40.01177134883842], [-75.20598118504968, 40.011722063535636], [-75.20583087553283, 40.01162249423849], [-75.20556089846534, 40.01144637353623], [-75.20493269018309, 40.011036554083525], [-75.20411797328548, 40.01067887127354], [-75.20278453559125, 40.0101681675687], [-75.20096916234523, 40.0095052402321], [-75.1995671662532, 40.00910618352392], [-75.19798662998474, 40.00856163000309], [-75.19741007533945, 40.00838739067628], [-75.19662197462642, 40.00814921442729], [-75.19523788704916, 40.00776465223345], [-75.1940657933079, 40.007370640630775], [-75.1931745133191, 40.006946139642274], [-75.19282909227685, 40.006720041632185], [-75.19248650438152, 40.00648631915835], [-75.19210817108346, 40.0059917246091], [-75.19202407067375, 40.00588177689373], [-75.19175386735485, 40.005238965345704], [-75.1915353587339, 40.00420107841301], [-75.19141944287965, 40.002882461289495], [-75.19156264214371, 40.00079131936958], [-75.19173829317083, 39.9995496686985], [-75.19209975304122, 39.99825612471282], [-75.19248952170433, 39.997189339779744], [-75.19387315409962, 39.99538054058539], [-75.19391207372766, 39.99533311331511], [-75.19493374887762, 39.99408810699247], [-75.196736443141, 39.992628239307074], [-75.19756018726912, 39.99169754451703], [-75.19966543084527, 39.98983487779526], [-75.20081185837654, 39.98869997403805], [-75.2026800703466, 39.98695844335217], [-75.20360707217432, 39.986030905550386], [-75.20387968529906, 39.985634231063315], [-75.20422970568241, 39.98512491133937], [-75.20439335041645, 39.9841945852112], [-75.2042911849591, 39.98348477637556], [-75.20402042808387, 39.98285613357483], [-75.20322001689851, 39.9816355506211], [-75.20149254570359, 39.98036607676244], [-75.19968966493572, 39.97939206820288], [-75.19768041890876, 39.978526648404426], [-75.19616318765962, 39.9777853486629], [-75.19500983450119, 39.97715118683491], [-75.19422140431261, 39.976595895992624], [-75.19395195788799, 39.976275795675406], [-75.19316767010415, 39.97534404688133], [-75.19423227229858, 39.97523277524366], [-75.19435026987784, 39.97522044197228], [-75.19438620060323, 39.97521668577702], [-75.19440416945793, 39.975214808203454], [-75.19461061691396, 39.97519322869778], [-75.1946275299596, 39.97519146092737], [-75.19466135487802, 39.97518792535294], [-75.19489863948688, 39.97516312254212], [-75.19541223775175, 39.97510346411268], [-75.19575612004209, 39.97506493243013], [-75.19577203856599, 39.975054075529776], [-75.19602558226443, 39.974877551471934], [-75.19627710586025, 39.97469896547529], [-75.19652544619335, 39.97451751410253], [-75.1967697217073, 39.9743329092601], [-75.19700906804599, 39.97414484161994], [-75.19724347719469, 39.97395315065537], [-75.19747675915838, 39.97375745082089], [-75.19769427033506, 39.9735526068525], [-75.19776267748833, 39.97347047176852], [-75.19796973622626, 39.97326048165323], [-75.19817373991863, 39.97304817344242], [-75.1983798864382, 39.972837364965635], [-75.19881896232208, 39.97243574288791], [-75.19906596864303, 39.97225320340784], [-75.19933172317984, 39.972085236761686], [-75.19960966378463, 39.9719314879363], [-75.19990132964449, 39.9717951923184], [-75.20020658391334, 39.97167432130029], [-75.2005167783354, 39.97156188994687], [-75.2008300396192, 39.97145629876278], [-75.20114834189835, 39.97135896109926], [-75.20146991414583, 39.97126904739688], [-75.20179527631387, 39.97118609164044], [-75.20212582727534, 39.97111679138892], [-75.20246146679227, 39.97106857044634], [-75.20280217542738, 39.97103558441613], [-75.2031438609358, 39.971018855159635], [-75.20348653944679, 39.97101458528833], [-75.20373778519559, 39.9710135329684], [-75.20372444604058, 39.970940143918334], [-75.20372256837196, 39.97092991009466], [-75.20365192712485, 39.970536711194484], [-75.20363324664117, 39.970432344209144], [-75.20360222096758, 39.970262038082865], [-75.20418303772176, 39.97042967509766], [-75.20430221981374, 39.970442136607105], [-75.2047464601045, 39.97038654791297], [-75.20529383804944, 39.97032724144262], [-75.20584308660476, 39.97027633607101], [-75.20664160684923, 39.97018882439134], [-75.2071715109633, 39.970134859313845], [-75.20822768613749, 39.97001688531799], [-75.20920137525263, 39.969908239553455], [-75.21013836492584, 39.969805350585304], [-75.2115166052264, 39.96965576250502], [-75.21133586950056, 39.96872707840927], [-75.2121349858603, 39.96922915050159], [-75.21264181899252, 39.96953740234732], [-75.21293442563362, 39.96971390666676], [-75.21390007921819, 39.970296393465695], [-75.2143190588701, 39.9705434928283], [-75.21454241075261, 39.970684580300244], [-75.21468810542842, 39.970774549650116], [-75.21499017096943, 39.9709560607137], [-75.21608600831708, 39.97161938133278], [-75.21743760573125, 39.9724356476891], [-75.21717197868607, 39.97035239770751], [-75.21699640530869, 39.968970685609506], [-75.21636818230415, 39.969031120310326], [-75.21576217994979, 39.96909507783468], [-75.21528992999187, 39.96914249371162], [-75.21480839700534, 39.96919231816414], [-75.21435015898996, 39.969238605392725], [-75.21384602151933, 39.969289782379036], [-75.21384515928588, 39.96922812853912], [-75.21381710658514, 39.96903611423682], [-75.21379568055352, 39.96883284512564], [-75.21375007799544, 39.9684829244615], [-75.21370757697493, 39.968127131120845], [-75.2136500122597, 39.96769736954828], [-75.21351411433787, 39.966578304228385], [-75.21340694504758, 39.96570864921634], [-75.21337609340233, 39.965466918667126], [-75.21333806087627, 39.965168923090985], [-75.21322853775273, 39.96433250864373], [-75.21370729354383, 39.964296283029626], [-75.21419559539217, 39.964259332972176], [-75.21470015168937, 39.96422115065583], [-75.21516294851831, 39.964189471409064], [-75.21637741936549, 39.96409569079961], [-75.21822793170311, 39.96395720516577], [-75.21829467559881, 39.96449083190423], [-75.21836098136826, 39.965028922370635], [-75.2201709963554, 39.964845529988835], [-75.22011148713864, 39.96436075060387], [-75.22004478056664, 39.963820869515125], [-75.21976953596858, 39.96301130841067], [-75.21969376220423, 39.96252450315264], [-75.21943900765564, 39.96094235593091], [-75.21965042702726, 39.960957506554315], [-75.22059247702725, 39.961075874663585], [-75.2215794161934, 39.96119931296838], [-75.22206583290657, 39.96125897645551], [-75.22256784792319, 39.96132161960473], [-75.22355198385931, 39.96144479703293], [-75.2245421302761, 39.961568838865276], [-75.2252934967573, 39.96165947884321], [-75.22585395073848, 39.96172902647333], [-75.22651888853692, 39.96181383932179], [-75.22716073419876, 39.96189346163298], [-75.22767177235322, 39.961956483381094], [-75.22831950768749, 39.96203465368984]]]}}, {"id": "4140", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16531767459625, 39.985862954522055], [-75.1645183402784, 39.98576060376892], [-75.16374843716792, 39.985658196097646], [-75.16361511904181, 39.98563622364805], [-75.16295124718621, 39.98554373064669], [-75.1613833728726, 39.98534049571191], [-75.15981211803054, 39.985149374337254], [-75.15995561764252, 39.984505307145], [-75.16005187512609, 39.98407025927032], [-75.16014671826717, 39.983628898433636], [-75.16047074927715, 39.98212965095867], [-75.16125560907027, 39.98222307186988], [-75.16205428012076, 39.98233074924151], [-75.16236008766865, 39.98083813786572], [-75.16315665839294, 39.980942851162624], [-75.16393580353895, 39.98103913365748], [-75.16472468800637, 39.98114600900777], [-75.16551143276519, 39.981245061241], [-75.16585070373783, 39.979715263217045], [-75.16663553032588, 39.97981529385303], [-75.16742031243012, 39.97992619061252], [-75.1675304717212, 39.97940596581951], [-75.1676280204409, 39.97898637261039], [-75.16773197320441, 39.97850834128129], [-75.16960310980627, 39.97875342002229], [-75.16967792544243, 39.97839775201961], [-75.16977694651204, 39.97795828070379], [-75.1699744619065, 39.978280100894736], [-75.17028853504735, 39.97884634054967], [-75.1706003791456, 39.9788799426667], [-75.17121429252416, 39.97895355524523], [-75.17280097114764, 39.97916176707219], [-75.17281882273372, 39.979073762378334], [-75.17287129178672, 39.979052105398196], [-75.1729312809766, 39.979026468103854], [-75.17296297818956, 39.978985721589495], [-75.17299175908344, 39.97883147385479], [-75.17300344818571, 39.978768825817184], [-75.17299986141104, 39.97874957982806], [-75.1729945192562, 39.97872091307391], [-75.1729601967386, 39.97869318582734], [-75.17290251279427, 39.97867918888155], [-75.17296812708716, 39.97840817799981], [-75.17312775354583, 39.977751700238606], [-75.1734059516144, 39.977784690664876], [-75.17385580424572, 39.977838020656726], [-75.17470388655568, 39.97793852162858], [-75.17630085865154, 39.97814009841556], [-75.17710442702693, 39.97825301454284], [-75.17788888439762, 39.97835599818536], [-75.1786945223034, 39.97846900801477], [-75.17948283131925, 39.97855760662868], [-75.17986177265558, 39.978607358478946], [-75.18018551683247, 39.97865007774576], [-75.18031747658478, 39.97866654240448], [-75.18090701836356, 39.97874058888288], [-75.1814601891601, 39.9788146300702], [-75.18192679331867, 39.9788796738151], [-75.1825269998387, 39.978957744698484], [-75.18311587750986, 39.97903082691258], [-75.1835823634162, 39.97908348404279], [-75.18413796951701, 39.979160412047385], [-75.18470025398888, 39.979225395072916], [-75.18572863466908, 39.97936208930493], [-75.18731861787698, 39.97958197540658], [-75.18859028389431, 39.979755160969134], [-75.18885251157113, 39.97958605385964], [-75.18907977150573, 39.97943944702036], [-75.18937682579183, 39.97924771854937], [-75.18963886595216, 39.979078446966966], [-75.18990079379184, 39.97890907500015], [-75.19030903969116, 39.97864466529346], [-75.19057059367931, 39.978474960971226], [-75.19083233340443, 39.97830542060259], [-75.19109419988266, 39.978135993315746], [-75.19135613747095, 39.97796663281875], [-75.19161808969504, 39.977797283791716], [-75.191745662721, 39.9777147798631], [-75.19187999860506, 39.977627898991315], [-75.19214180989704, 39.977458427652095], [-75.19240346936863, 39.97728881630829], [-75.19266491438854, 39.97711901761388], [-75.19292609306041, 39.976948979056516], [-75.19312353237977, 39.976820057225694], [-75.19318694633098, 39.976778651568935], [-75.19344742109921, 39.976607983514036], [-75.19370746636712, 39.976436929608965], [-75.19395195788799, 39.976275795675406], [-75.19422140431261, 39.976595895992624], [-75.19500983450119, 39.97715118683491], [-75.19616318765962, 39.9777853486629], [-75.19768041890876, 39.978526648404426], [-75.19968966493572, 39.97939206820288], [-75.20149254570359, 39.98036607676244], [-75.20322001689851, 39.9816355506211], [-75.20402042808387, 39.98285613357483], [-75.2042911849591, 39.98348477637556], [-75.20439335041645, 39.9841945852112], [-75.20422970568241, 39.98512491133937], [-75.20387968529906, 39.985634231063315], [-75.20360707217432, 39.986030905550386], [-75.2026800703466, 39.98695844335217], [-75.20081185837654, 39.98869997403805], [-75.19966543084527, 39.98983487779526], [-75.19756018726912, 39.99169754451703], [-75.196736443141, 39.992628239307074], [-75.19493374887762, 39.99408810699247], [-75.19391207372766, 39.99533311331511], [-75.19387315409962, 39.99538054058539], [-75.19248952170433, 39.997189339779744], [-75.19209975304122, 39.99825612471282], [-75.19173829317083, 39.9995496686985], [-75.19156264214371, 40.00079131936958], [-75.19141944287965, 40.002882461289495], [-75.1915353587339, 40.00420107841301], [-75.19175386735485, 40.005238965345704], [-75.19202407067375, 40.00588177689373], [-75.19210817108346, 40.0059917246091], [-75.19248650438152, 40.00648631915835], [-75.19215822867767, 40.00652737723856], [-75.19182140823222, 40.006574296052555], [-75.19159962191372, 40.00660536533527], [-75.19148464086909, 40.006621471858764], [-75.19114793109786, 40.00666897143275], [-75.19081081926585, 40.00671456625028], [-75.19047279783496, 40.00675583840279], [-75.19013391830701, 40.006793039509155], [-75.18979495444817, 40.00682982508193], [-75.18875577856281, 40.00687835254241], [-75.18751678904931, 40.00693619642412], [-75.18309910876698, 40.007142337153745], [-75.18259278643873, 40.0071660341871], [-75.18225108780933, 40.00718179340903], [-75.18190938624555, 40.00719750109568], [-75.18156769013017, 40.00721327636771], [-75.18122601266239, 40.00722923484977], [-75.18088436810777, 40.00724549489363], [-75.1805427636371, 40.00726217649447], [-75.18020121485219, 40.00727939352919], [-75.17985986450924, 40.007299379194045], [-75.17949583686833, 40.007330268309794], [-75.1791808013841, 40.00736527442401], [-75.17884254943282, 40.00740598482527], [-75.17850353803009, 40.007442419954835], [-75.17817990974089, 40.00747547030837], [-75.17782497552301, 40.00751233965202], [-75.17748625496522, 40.00755025147113], [-75.17714771609977, 40.007589819726114], [-75.17680993770276, 40.007632744984505], [-75.17647388047243, 40.007682150068774], [-75.17614027259992, 40.0077412625246], [-75.17580848000264, 40.00780637581546], [-75.17547878827409, 40.00787715578088], [-75.17515173790514, 40.00795495076213], [-75.17482574100757, 40.00803540932257], [-75.17450135375312, 40.00811949811968], [-75.17418020188195, 40.00821038105396], [-75.17386255750822, 40.00830866613599], [-75.17354518230786, 40.008407551969064], [-75.17322881678321, 40.008508366147595], [-75.17289976733551, 40.00862885398273], [-75.17261598778865, 40.00874233816866], [-75.17231497932914, 40.00886798956168], [-75.17201478572093, 40.00899458472763], [-75.17171807731377, 40.00912597960543], [-75.17142893153489, 40.00926680419859], [-75.17114081893814, 40.009408899199265], [-75.17085302274307, 40.0095513925516], [-75.17056549159035, 40.00969421733024], [-75.17027816930145, 40.009837310105105], [-75.17012183886611, 40.009915319234196], [-75.16997222605549, 40.00975029935354], [-75.16977642969267, 40.00953434146551], [-75.16958063595123, 40.009318377866634], [-75.1693848528208, 40.00910241414265], [-75.16918907816523, 40.00888644483949], [-75.16914141995576, 40.00883386530923], [-75.16902131344077, 40.00890282471295], [-75.16848841069908, 40.00830024742549], [-75.16817665677839, 40.00792919258995], [-75.16753051174942, 40.007229125812884], [-75.16706466223903, 40.00671707874373], [-75.16694227559776, 40.00659450027782], [-75.16683627468983, 40.00656625799417], [-75.16522993149461, 40.006355457449395], [-75.16362929487212, 40.006153400797835], [-75.1637889278219, 40.005391718188754], [-75.16394255755147, 40.004656818906476], [-75.16410376670699, 40.0039137062559], [-75.16416664603113, 40.003624523693304], [-75.16423349039556, 40.00331710737684], [-75.16428653681054, 40.00307313876195], [-75.16385107540998, 40.0030100347716], [-75.16368297597836, 40.00298909789411], [-75.16362073706692, 40.002951223522345], [-75.16335369651195, 40.002785904787025], [-75.16308767953454, 40.00261989215878], [-75.16282206196311, 40.00245388518213], [-75.16255680593444, 40.00228746313338], [-75.16229204340254, 40.002120514560396], [-75.1620279027452, 40.00195296036825], [-75.16176451244321, 40.00178471876236], [-75.16150199984101, 40.00161570702282], [-75.161240496931, 40.00144584343654], [-75.16098012864764, 40.001275047033516], [-75.16072102574383, 40.001103237877146], [-75.16046479410915, 40.00092885830357], [-75.16022065424094, 40.00074376302431], [-75.15999048402087, 40.000548785576555], [-75.1597713031795, 40.0003466843852], [-75.1595615079236, 40.0001381630573], [-75.15936539983369, 39.99992221767875], [-75.1591803374125, 39.99970092501449], [-75.15899602352023, 39.99947923625235], [-75.15881222546582, 39.99925726237476], [-75.15862265723953, 39.99902740827307], [-75.15899682039944, 39.998828117554744], [-75.15860052408783, 39.99832830269098], [-75.15858145930692, 39.99820623506159], [-75.15871361413248, 39.99765215583468], [-75.15892784507975, 39.99664039538977], [-75.15910396550437, 39.995787685077396], [-75.15937214283764, 39.99568041788825], [-75.15968224437353, 39.99556799088048], [-75.15999242176541, 39.99545566658435], [-75.16030227819603, 39.99534316033578], [-75.16045884503355, 39.995286151429184], [-75.16061238107615, 39.99523024616773], [-75.16092135898762, 39.99511657598776], [-75.16122978418703, 39.99500191943675], [-75.16153718510476, 39.994885985669384], [-75.16163202672163, 39.99484964644871], [-75.16184356796215, 39.99476851894601], [-75.16214851295865, 39.9946492223867], [-75.16245167076322, 39.994527825031916], [-75.16275345225249, 39.9944040577435], [-75.16305295047066, 39.9942776496103], [-75.163350493459, 39.994148322421], [-75.16364550628586, 39.99401579203144], [-75.16375019463729, 39.99396740746016], [-75.16320875554426, 39.993324243819174], [-75.16285018130908, 39.993481241024035], [-75.16294179904934, 39.993044584418065], [-75.16318388419658, 39.99189165982134], [-75.16350180899792, 39.990402590136924], [-75.1638426170767, 39.988907785078474], [-75.16418508630503, 39.98731207775422], [-75.16497721886617, 39.98742226112422], [-75.16576344044917, 39.987515001890294], [-75.16609883186936, 39.985967163689345], [-75.16531767459625, 39.985862954522055]]]}}, {"id": "4220", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18546053033423, 39.99138595734597], [-75.18514705947834, 39.99089240645013], [-75.18492772040672, 39.99059520320089], [-75.18440501709573, 39.98993084231582], [-75.18370039313666, 39.98926152661691], [-75.18360132913213, 39.989160865516276], [-75.1831239638344, 39.98873142579218], [-75.18272022858042, 39.98833197667123], [-75.18239436538755, 39.98804340832484], [-75.1808049885002, 39.98679189595898], [-75.1802587566406, 39.98634657855011], [-75.17952311080867, 39.98578912390087], [-75.17979228179169, 39.985610205196984], [-75.18005025987519, 39.98543728286983], [-75.18030756813549, 39.985263763842426], [-75.18056437649658, 39.98508980059018], [-75.18082085622366, 39.98491554111198], [-75.18107717366271, 39.98474113960218], [-75.18130707172978, 39.98458472238066], [-75.1815899949032, 39.98439250580858], [-75.18184654284833, 39.98421831415624], [-75.18210265999751, 39.98404374020303], [-75.18235846421321, 39.98386888840281], [-75.18261408699321, 39.98369387432563], [-75.18286966544878, 39.98351881997285], [-75.1829298584804, 39.98347762517703], [-75.18312532973815, 39.98334384538718], [-75.18338122162059, 39.983169073572626], [-75.1836374690507, 39.982994620915996], [-75.18389421148204, 39.982820609466366], [-75.18415158027894, 39.9826471583875], [-75.1844097148958, 39.98247438972587], [-75.18466874549368, 39.982302423516984], [-75.18487731999933, 39.98216500358204], [-75.18492861790877, 39.9821312053846], [-75.1851888435736, 39.981960305435045], [-75.1854493693571, 39.98178967292306], [-75.18571017026257, 39.98161928746587], [-75.18597122600798, 39.981449127885256], [-75.18623250701748, 39.981279170993545], [-75.1864939906684, 39.98110939556068], [-75.18672279527853, 39.98096108151576], [-75.18701747299545, 39.9807703059002], [-75.18727942181306, 39.98060094730851], [-75.18754147692974, 39.98043168512674], [-75.18780361458623, 39.98026249719947], [-75.18806581098923, 39.980093362271866], [-75.18832804244711, 39.97992425638832], [-75.18859028389431, 39.979755160969134], [-75.18885251157113, 39.97958605385964], [-75.18907977150573, 39.97943944702036], [-75.18937682579183, 39.97924771854937], [-75.18963886595216, 39.979078446966966], [-75.18990079379184, 39.97890907500015], [-75.19030903969116, 39.97864466529346], [-75.19057059367931, 39.978474960971226], [-75.19083233340443, 39.97830542060259], [-75.19109419988266, 39.978135993315746], [-75.19135613747095, 39.97796663281875], [-75.19161808969504, 39.977797283791716], [-75.191745662721, 39.9777147798631], [-75.19187999860506, 39.977627898991315], [-75.19214180989704, 39.977458427652095], [-75.19240346936863, 39.97728881630829], [-75.19266491438854, 39.97711901761388], [-75.19292609306041, 39.976948979056516], [-75.19312353237977, 39.976820057225694], [-75.19318694633098, 39.976778651568935], [-75.19344742109921, 39.976607983514036], [-75.19370746636712, 39.976436929608965], [-75.19395195788799, 39.976275795675406], [-75.19422140431261, 39.976595895992624], [-75.19500983450119, 39.97715118683491], [-75.19616318765962, 39.9777853486629], [-75.19768041890876, 39.978526648404426], [-75.19968966493572, 39.97939206820288], [-75.20149254570359, 39.98036607676244], [-75.20322001689851, 39.9816355506211], [-75.20402042808387, 39.98285613357483], [-75.2042911849591, 39.98348477637556], [-75.20439335041645, 39.9841945852112], [-75.20422970568241, 39.98512491133937], [-75.20387968529906, 39.985634231063315], [-75.20360707217432, 39.986030905550386], [-75.2026800703466, 39.98695844335217], [-75.20081185837654, 39.98869997403805], [-75.19966543084527, 39.98983487779526], [-75.19756018726912, 39.99169754451703], [-75.196736443141, 39.992628239307074], [-75.19493374887762, 39.99408810699247], [-75.18614935442002, 39.992663518096165], [-75.1858101578719, 39.992076620483545], [-75.1855994217512, 39.991700477966795], [-75.18546053033423, 39.99138595734597]]]}}, {"id": "4240", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.24554128638924, 39.97533147813126], [-75.24524823877749, 39.97377965868526], [-75.24495111730269, 39.9721864702484], [-75.2448856392896, 39.97185524981628], [-75.24486356416409, 39.971775639167774], [-75.24515909619272, 39.97036089119962], [-75.24547391384, 39.96883780580013], [-75.24579194506076, 39.967319375064456], [-75.24610900459369, 39.96579829700107], [-75.24716915793863, 39.96592870104606], [-75.247464351418, 39.96448137930475], [-75.24744737459446, 39.964391926196676], [-75.24756505959537, 39.963639605442836], [-75.24768522380508, 39.96377860116682], [-75.2477793782375, 39.96387705884449], [-75.24790389371616, 39.96398087900826], [-75.24805776030611, 39.9640759345147], [-75.24861588618744, 39.964353800501904], [-75.24896818715834, 39.96449550559238], [-75.24946554590588, 39.96472266297798], [-75.24988116026812, 39.96492922878938], [-75.25002286147466, 39.96502284247945], [-75.25017837712105, 39.96507325713627], [-75.25031446366849, 39.96507034213005], [-75.2504477428817, 39.96501916641492], [-75.25060613915447, 39.96494972680868], [-75.25075843127458, 39.96488015493032], [-75.25091426179873, 39.96483887444101], [-75.25107591376845, 39.96484709750767], [-75.25120181749591, 39.964913325127895], [-75.25128402560523, 39.965004463956404], [-75.25134258464124, 39.96507392705957], [-75.25133917134195, 39.965166729510464], [-75.25136969178952, 39.9652508636921], [-75.25146336368871, 39.96532109136322], [-75.25160413229484, 39.965357075214506], [-75.25170837757055, 39.96534758804899], [-75.25181287846094, 39.96533105340396], [-75.25192331738495, 39.96531935021451], [-75.25209490560532, 39.965306626594725], [-75.25233571378551, 39.965281302739314], [-75.25263623064134, 39.96525257392888], [-75.25284428756365, 39.96524534522126], [-75.25297295714975, 39.96523638938019], [-75.25307763142389, 39.965215155101575], [-75.25322234528832, 39.965185384786416], [-75.25331553060542, 39.96522738582488], [-75.25340897161496, 39.96526233669846], [-75.25358324169278, 39.96530139863625], [-75.25371358490948, 39.96533009739746], [-75.25393745710235, 39.96539139947551], [-75.2540943564404, 39.965404217128], [-75.25422357081916, 39.96533884096122], [-75.25432028042124, 39.96524336647207], [-75.25438103857822, 39.96512829819331], [-75.25445733673064, 39.96504766222007], [-75.25454490118413, 39.96499313593438], [-75.25463289463416, 39.96492686280587], [-75.2547395539302, 39.964851588320144], [-75.25493832851332, 39.96476421100497], [-75.25511359975978, 39.96469278156741], [-75.25526773132212, 39.96465616145459], [-75.25540921682783, 39.96463102139762], [-75.25554493994596, 39.96459635226818], [-75.25568728897943, 39.96454771843652], [-75.25583275919314, 39.96445565343248], [-75.25589230528023, 39.964373478410195], [-75.25596782694207, 39.96431398433572], [-75.25608347207078, 39.964243609842306], [-75.25619361114309, 39.964156654495994], [-75.25628194810722, 39.964080980401455], [-75.25638361798937, 39.963975031768065], [-75.25658701896828, 39.96380310524684], [-75.25668782927404, 39.963720648984804], [-75.2567823740493, 39.963683907807216], [-75.25694135836522, 39.96368148347726], [-75.25712757987775, 39.96372785360648], [-75.25729434232044, 39.963763218559926], [-75.25745349801994, 39.963756094980965], [-75.25754393842874, 39.963706332131565], [-75.25766826655317, 39.96364907480783], [-75.25782439288122, 39.96359956188437], [-75.25793497463482, 39.963625477768396], [-75.25800447150725, 39.96370928169717], [-75.25801363245961, 39.96385525968886], [-75.25801465271266, 39.963994008833296], [-75.25797759705557, 39.96412957851495], [-75.25794494583565, 39.96426994610895], [-75.25799249841998, 39.96438971928584], [-75.25809000638469, 39.96443886322959], [-75.2582315953502, 39.96445251852966], [-75.25837370017565, 39.964452078082694], [-75.25849071135181, 39.96451105062193], [-75.258547854506, 39.964619274805074], [-75.25861529909808, 39.964738302942806], [-75.25869579374323, 39.964876426123446], [-75.25871389426283, 39.96496616743167], [-75.25871655294945, 39.96506027751206], [-75.25871297136004, 39.96524124881307], [-75.25870582756265, 39.965352779293816], [-75.25873897775676, 39.96544872540839], [-75.25878281352246, 39.96554490621948], [-75.25886516180807, 39.96563251505349], [-75.25897505812372, 39.96567722399897], [-75.25907835404288, 39.96569357510518], [-75.25921566680293, 39.96569890577054], [-75.25933483189694, 39.965699142785894], [-75.25941279750465, 39.96573963080782], [-75.25942840416371, 39.96581403528553], [-75.25943975127157, 39.96592126579723], [-75.25955254833205, 39.9660118866074], [-75.25964922071925, 39.96604220108914], [-75.25977913729092, 39.96608264060492], [-75.2599093111313, 39.96611603352195], [-75.26006524408086, 39.966197008731356], [-75.26031049741809, 39.966258762171016], [-75.2604910270259, 39.96631490318297], [-75.26054865177791, 39.96638023618688], [-75.26064700984142, 39.96650830659159], [-75.26070467586813, 39.96658885087744], [-75.26076780266723, 39.966685838592184], [-75.26083301840988, 39.966808525402605], [-75.2608551521047, 39.96694893432809], [-75.2608691387215, 39.96706351269308], [-75.26088961065659, 39.967166572062574], [-75.26095939318695, 39.96724737814309], [-75.26102392676209, 39.96738870767416], [-75.26105280133898, 39.967510605120495], [-75.26110458216422, 39.96758635800436], [-75.2611314534269, 39.967680226401406], [-75.26108998718195, 39.9678192557096], [-75.26101286239131, 39.967938854768136], [-75.2609281419501, 39.96810026781984], [-75.26093581664317, 39.968221705411885], [-75.26094383283976, 39.96833382338833], [-75.26093047823946, 39.96845014129412], [-75.26084477818482, 39.968555561005545], [-75.26072499448445, 39.96868123065621], [-75.26073915319462, 39.96879114834983], [-75.26076670636407, 39.9688663748751], [-75.260720804872, 39.9689609972959], [-75.26059010216389, 39.96905377996183], [-75.26047885110329, 39.96911200276864], [-75.26037310589713, 39.969102711397454], [-75.26029261395144, 39.96906598319266], [-75.2601693799521, 39.96903765541261], [-75.26006418598072, 39.969096008354875], [-75.26002591677762, 39.969230443201695], [-75.26002138972488, 39.96935394876291], [-75.26002974625233, 39.96945674448723], [-75.26005738430719, 39.969529641278555], [-75.26004919148546, 39.969587767310834], [-75.25999966245008, 39.96969863575309], [-75.25997878916237, 39.97002001920612], [-75.26000446278272, 39.970146512776964], [-75.26006340651612, 39.970357685014804], [-75.26006314203006, 39.97053025895482], [-75.26004172481493, 39.97061841536149], [-75.25997133471044, 39.97071950320626], [-75.25985351032962, 39.9707915751731], [-75.25971853939578, 39.970835288428], [-75.25953024757882, 39.97084519518249], [-75.25939681421642, 39.970846963512884], [-75.2592697790063, 39.9708395417386], [-75.25910000155406, 39.970840520831985], [-75.25899617112857, 39.97086158805644], [-75.25884268498008, 39.97091422808973], [-75.25837688914825, 39.971134997549655], [-75.25808668201717, 39.97119632838342], [-75.25791553580198, 39.971234590448375], [-75.25776102205931, 39.97131519145045], [-75.2575571933081, 39.97141804408629], [-75.257431939431, 39.97152726670702], [-75.25740863728154, 39.971666689441044], [-75.2573580261331, 39.971889476660614], [-75.25730563265151, 39.971995617425534], [-75.25730655950275, 39.97213556736496], [-75.257292292555, 39.97235914405464], [-75.25725670225273, 39.97250296425085], [-75.25719551388593, 39.972683542796275], [-75.25718637870318, 39.97276730205233], [-75.25718073453896, 39.97292110069804], [-75.25713371237319, 39.973046015756964], [-75.25706783496831, 39.97318917794868], [-75.25704902260088, 39.973371387903], [-75.25704608876329, 39.97345132743528], [-75.2570293549024, 39.97357690045855], [-75.25696902021768, 39.97373417627259], [-75.25694725586013, 39.97383165349569], [-75.25695395864643, 39.974061971933196], [-75.25695436167905, 39.97413356692452], [-75.25695225953109, 39.974273450166905], [-75.25691381019176, 39.97441254465719], [-75.25693246643112, 39.97473012222964], [-75.25691282402472, 39.974934925343916], [-75.25685820484966, 39.97510165322955], [-75.25682312537205, 39.97523149207834], [-75.25681193541959, 39.97537117787911], [-75.25687915554406, 39.97552189602913], [-75.25699371099005, 39.97586954347642], [-75.25710392126844, 39.97617045312351], [-75.25714605545802, 39.976343948216915], [-75.25726105515838, 39.976514360760035], [-75.25729329735748, 39.97662700440164], [-75.25728296449567, 39.97674338766296], [-75.25721341918234, 39.97682117029333], [-75.25721016932745, 39.97690972181028], [-75.2572787590093, 39.977023154987144], [-75.25734837632905, 39.97710862394151], [-75.25740485139336, 39.97722179389385], [-75.25740646266574, 39.97734310100659], [-75.25740961323852, 39.97742246270898], [-75.25747888789834, 39.97751725296001], [-75.25764943867127, 39.97766088688027], [-75.25769947540438, 39.977729351261154], [-75.25592386999945, 39.97812301785536], [-75.25545811345737, 39.97829859477337], [-75.25502431547316, 39.97846970018743], [-75.25481936135184, 39.97855001011863], [-75.25447177909811, 39.978704422230216], [-75.25425359765558, 39.97883649458859], [-75.25393035335655, 39.979068205885], [-75.25371700479728, 39.97927893963733], [-75.2534972665133, 39.979534654664576], [-75.25329151334172, 39.979878224493525], [-75.2531055950887, 39.980181698136825], [-75.25285866859625, 39.98049146282689], [-75.25254465176846, 39.98077109037152], [-75.25221053651195, 39.98101353192132], [-75.25177529229718, 39.98124566591049], [-75.25144274920666, 39.981409541706675], [-75.25106465748974, 39.98160212773648], [-75.25019634961782, 39.98058188701795], [-75.2499981816164, 39.98034370029889], [-75.24972680378382, 39.98003286435721], [-75.24945736451684, 39.97971133555546], [-75.24922709433469, 39.97945068088363], [-75.24894467722332, 39.979107813621795], [-75.24877874760803, 39.9789212908167], [-75.24869932269642, 39.9788156818088], [-75.24862827057224, 39.97870892987897], [-75.248534557208, 39.97853891643046], [-75.24842942758778, 39.978296601807756], [-75.24837185542803, 39.978120301429165], [-75.24833548194869, 39.97797008910951], [-75.24795534391309, 39.97808789189711], [-75.24741055872916, 39.978153364887895], [-75.24609118202632, 39.978301577196724], [-75.24554128638924, 39.97533147813126]]]}}, {"id": "4270", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16675389667743, 39.98605696318333], [-75.16731922555276, 39.98612259810428], [-75.1679760361179, 39.986203987335514], [-75.16877950953383, 39.986307275443664], [-75.1695756209088, 39.98640739287832], [-75.17039697199631, 39.98651296182429], [-75.17117730471297, 39.986607635295094], [-75.17129204164658, 39.9860765043848], [-75.17139443540877, 39.98560510985928], [-75.1715119580545, 39.98509195802337], [-75.17184895333082, 39.98360012299759], [-75.17242436921067, 39.98366591017204], [-75.17264001235985, 39.983706247609604], [-75.17288889415936, 39.983735751197166], [-75.17344318835225, 39.98380091296403], [-75.1739932972147, 39.983876423527335], [-75.17446476462969, 39.98393718846691], [-75.17502711544529, 39.98401535462864], [-75.17479584065936, 39.98506810427846], [-75.17469432426374, 39.98550764947924], [-75.175271358931, 39.98559829647787], [-75.17521745144552, 39.985853437673235], [-75.17560938223376, 39.98627515162315], [-75.17608954052868, 39.98680021919029], [-75.17541102470533, 39.9871570358007], [-75.17678267943901, 39.987338918507284], [-75.17649542346686, 39.98748759968373], [-75.17621136888152, 39.9876343895556], [-75.17592717237113, 39.987781027802576], [-75.17564284416281, 39.98792752276212], [-75.17535839004088, 39.98807387636496], [-75.175073819062, 39.988220096922404], [-75.17478913219263, 39.988366189861445], [-75.17450433969368, 39.98851216261944], [-75.17431169727813, 39.988610003672555], [-75.17421944851988, 39.98865801715374], [-75.17397753918489, 39.98879442269209], [-75.17364939329444, 39.98894940991035], [-75.17336424298125, 39.98909495654882], [-75.17307901995844, 39.989240410772055], [-75.17279376775308, 39.989385829419646], [-75.17250881164603, 39.98953165408423], [-75.1722929682314, 39.9896425977823], [-75.17222419612551, 39.98967794703608], [-75.1719398834796, 39.98982465246886], [-75.17174544033298, 39.98992532586602], [-75.17165545820235, 39.989971699782394], [-75.17137200492108, 39.99011909081782], [-75.17108835770135, 39.99026671288831], [-75.17080490447788, 39.99041452965903], [-75.17052159274488, 39.99056250481203], [-75.17023810612953, 39.990710548344374], [-75.16995458851298, 39.990858634656625], [-75.16967144280557, 39.991006703428134], [-75.1693872372827, 39.99115510089788], [-75.1691045372262, 39.99130256565563], [-75.1688207535072, 39.991450246846625], [-75.16853740086704, 39.99159771000278], [-75.16843898729299, 39.99164851587217], [-75.16825303046308, 39.99174485766576], [-75.1679687264333, 39.99189167457132], [-75.16768419613064, 39.99203809376805], [-75.16739917355237, 39.99218405610931], [-75.1671136796878, 39.99232950259677], [-75.16682790638126, 39.99247440961277], [-75.1665418847763, 39.99261869766585], [-75.16625523475753, 39.99276232035509], [-75.16596791696877, 39.99290520380751], [-75.16568007898715, 39.99304731800311], [-75.16539161774134, 39.99318860115002], [-75.16510262738187, 39.99332901121388], [-75.16481268231108, 39.99346846562296], [-75.16452209682625, 39.993606924596605], [-75.16423074379837, 39.993744342918106], [-75.16393856707938, 39.99388065714653], [-75.16375019463729, 39.99396740746016], [-75.16320875554426, 39.993324243819174], [-75.16285018130908, 39.993481241024035], [-75.16294179904934, 39.993044584418065], [-75.16318388419658, 39.99189165982134], [-75.16350180899792, 39.990402590136924], [-75.1638426170767, 39.988907785078474], [-75.16418508630503, 39.98731207775422], [-75.16497721886617, 39.98742226112422], [-75.16576344044917, 39.987515001890294], [-75.16609883186936, 39.985967163689345], [-75.16675389667743, 39.98605696318333]]]}}, {"id": "4280", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22713826559976, 40.00017261411573], [-75.22698380731825, 39.99993764724526], [-75.22683366659172, 39.99970118297861], [-75.22669187430814, 39.9994616214683], [-75.2265638188994, 39.9992172737964], [-75.2264516454373, 39.99896873497252], [-75.22634869197259, 39.99871762814741], [-75.22625254080789, 39.998464825518425], [-75.22616242542166, 39.99821093374118], [-75.22608608367426, 39.997954372323946], [-75.22601504426356, 39.99769675072328], [-75.22594031130318, 39.99743986415371], [-75.22586692375164, 39.99718275752846], [-75.22579555639331, 39.996925115022684], [-75.22572752377033, 39.996666869140945], [-75.22568472491396, 39.99640629852711], [-75.22566923068271, 39.99614311989164], [-75.22566493201093, 39.995879695505955], [-75.22566580829185, 39.995616507455004], [-75.22567010232133, 39.99535327112508], [-75.22567455961851, 39.99509002216579], [-75.22567642371229, 39.994826793662824], [-75.2256773950464, 39.994563568049735], [-75.22567805954006, 39.99430034019153], [-75.22567836679947, 39.994037110781896], [-75.22567828034347, 39.99377388442448], [-75.22567775345844, 39.99351065738886], [-75.22567642287149, 39.993247433398864], [-75.22567375670262, 39.99298421427232], [-75.22567059622207, 39.99272099508398], [-75.22566786217705, 39.99245777535982], [-75.22566638868767, 39.99219455272114], [-75.22566509729694, 39.99193131606456], [-75.22566378621964, 39.991668073566466], [-75.2256632571371, 39.99147004260671], [-75.22657305587288, 39.99151720367018], [-75.2280883871952, 39.991602844416676], [-75.22979802627162, 39.99168345486216], [-75.23106116474393, 39.9917654288331], [-75.2323148913867, 39.991816057524225], [-75.23367398957797, 39.99188356603107], [-75.23359749986912, 39.99120535295872], [-75.23352857182715, 39.9906545575648], [-75.23338610249759, 39.990219535799035], [-75.23324262339091, 39.989800273494986], [-75.23564564878774, 39.98930950082446], [-75.23765550028003, 39.98890523796826], [-75.2375631490965, 39.988463737913676], [-75.23748943446314, 39.98799758547654], [-75.23739313190914, 39.98757243465119], [-75.2373285938853, 39.98720332445263], [-75.23725085241536, 39.98680733861259], [-75.23717648623028, 39.98644054310879], [-75.23710876338059, 39.98601125589341], [-75.23703091898771, 39.98562024376696], [-75.2370231010044, 39.98540656857109], [-75.23706281145029, 39.985185697132245], [-75.23724158388768, 39.98484131042433], [-75.23804864757997, 39.983543684060464], [-75.2386133941012, 39.98260314982133], [-75.23872979266353, 39.98264684610981], [-75.23903853607797, 39.98276028803558], [-75.23934823775453, 39.98287223099615], [-75.23965858696977, 39.98298315922893], [-75.23996927180364, 39.983093557849344], [-75.2402799848242, 39.98320391748021], [-75.2405904118842, 39.983314720491556], [-75.24090024436214, 39.983426458387555], [-75.24120916805782, 39.983539615345656], [-75.24151699490501, 39.98365452693657], [-75.24182467064739, 39.98377003714066], [-75.24213188787569, 39.983886478014874], [-75.24243790732571, 39.98400471187836], [-75.24274199429183, 39.984125604761495], [-75.2430434082267, 39.98425002257443], [-75.2433414192912, 39.98437882696372], [-75.24363608721188, 39.98451259048826], [-75.24392738287504, 39.98465130983399], [-75.24421477298127, 39.98479493283755], [-75.24449771339214, 39.98494341521302], [-75.2447756649753, 39.985096703778815], [-75.24504763542635, 39.98525585359801], [-75.24531369919322, 39.98542132404087], [-75.24557536375369, 39.985591336148076], [-75.24583413804008, 39.98576410286919], [-75.24609154060022, 39.98593783014206], [-75.24634908383008, 39.986111494104286], [-75.24644054350821, 39.9861752070431], [-75.24660330199214, 39.98628858708673], [-75.24684604899207, 39.98647402835681], [-75.24707193557566, 39.9866709674555], [-75.24728844095677, 39.986874559862514], [-75.24749891064862, 39.987082381929454], [-75.24770586314762, 39.98729252083316], [-75.24791180889682, 39.98750305995227], [-75.24811931762962, 39.98771250830601], [-75.24832811799277, 39.98792152310045], [-75.24853553159981, 39.98813136500563], [-75.24873884867817, 39.988343287720184], [-75.24893535809994, 39.98855854943753], [-75.24912232106712, 39.98877842758796], [-75.24929776056157, 39.989003933304275], [-75.24946425191449, 39.98923383613185], [-75.24962539757507, 39.989466369359434], [-75.24978479196271, 39.98969976247465], [-75.25000198399019, 39.99001086413415], [-75.25009715667207, 39.99013718173664], [-75.24918968530673, 39.990563671345605], [-75.24801120862959, 39.99111750895355], [-75.24568439590047, 39.99221095566884], [-75.24378898226598, 39.99310161388292], [-75.2416513158407, 39.994106038824725], [-75.23902511457084, 39.99533696854877], [-75.23735992896796, 39.996117407840515], [-75.23528612184207, 39.99708929728722], [-75.2342435509762, 39.997580435421085], [-75.23322898683246, 39.99804843993605], [-75.23215131811106, 39.9985508797588], [-75.23088773310894, 39.99913997478075], [-75.22945343189996, 39.999812190246274], [-75.22873987281054, 40.000147416213096], [-75.22837586510683, 40.00031842009324], [-75.2274782674168, 40.00074008910896], [-75.22738074986843, 40.00054046140214], [-75.22713826559976, 40.00017261411573]]]}}, {"id": "4300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.2316186944593, 39.970790477756395], [-75.23257362152906, 39.970684110217924], [-75.23336893261782, 39.97059218114643], [-75.23420321472648, 39.970501406483386], [-75.23497433505277, 39.9704167449269], [-75.23569889615287, 39.970337328070315], [-75.23631310132686, 39.97026837795627], [-75.23678070312911, 39.97021782046675], [-75.2374561581777, 39.970142539223346], [-75.23828930295882, 39.970049354997684], [-75.23904602094366, 39.96996385280201], [-75.23913452825445, 39.969894156939084], [-75.23913209514878, 39.969754754208566], [-75.2394792263291, 39.968098598180006], [-75.24046481307757, 39.96821893667362], [-75.24145297711482, 39.96834167726721], [-75.24212447373782, 39.96842525010824], [-75.24275547517408, 39.96850182540956], [-75.2434287755889, 39.968584480317844], [-75.24441601399035, 39.968707975928204], [-75.24547391384, 39.96883780580013], [-75.24515909619272, 39.97036089119962], [-75.24486356416409, 39.971775639167774], [-75.2448856392896, 39.97185524981628], [-75.24495111730269, 39.9721864702484], [-75.24524823877749, 39.97377965868526], [-75.24554128638924, 39.97533147813126], [-75.24609118202632, 39.978301577196724], [-75.24504122364607, 39.978412055657806], [-75.24413970763122, 39.97851841750556], [-75.24324659750818, 39.97861072026858], [-75.24235595224603, 39.97871317642875], [-75.24157570471533, 39.97880044785277], [-75.24078976905467, 39.978888636602434], [-75.23995988823147, 39.97897202874271], [-75.2391258420239, 39.97907096594098], [-75.23918921571732, 39.97941621572664], [-75.23925884612574, 39.97975561433966], [-75.23930359835626, 39.98001699220907], [-75.23937971975117, 39.98042536050394], [-75.23946783594495, 39.98091564453654], [-75.23947488765062, 39.981115960767795], [-75.23941782700196, 39.9812841947847], [-75.2393364320091, 39.9814487492631], [-75.23904360757881, 39.98195194572015], [-75.23874552031107, 39.982383101851674], [-75.2386133941012, 39.98260314982133], [-75.23842231593397, 39.98253142003323], [-75.23811612436292, 39.98241398589309], [-75.23781094088199, 39.98229497371522], [-75.23750653404826, 39.98217475145208], [-75.23720266549203, 39.982053684198895], [-75.2368991025902, 39.9819321398775], [-75.23659561047401, 39.98181048365511], [-75.23629195306646, 39.98168908157105], [-75.23598789645939, 39.98156830421485], [-75.23568320596944, 39.981448511344695], [-75.235377642931, 39.981330075243065], [-75.23507097953902, 39.98121335941804], [-75.2347635565961, 39.98109782622857], [-75.23445592365209, 39.980982614650586], [-75.23414810250182, 39.980867705338326], [-75.2339591056347, 39.98079736322357], [-75.23384010002718, 39.98075307051039], [-75.23353193685344, 39.98063869079578], [-75.23322362317393, 39.98052454389186], [-75.23291517861085, 39.980410605900985], [-75.23260660981407, 39.9802968553442], [-75.23229793874704, 39.980183268375384], [-75.23198917553752, 39.980069824493164], [-75.23168033629835, 39.97995649972348], [-75.23137143593905, 39.97984327096704], [-75.23106248696217, 39.97973011687391], [-75.2307535042112, 39.979617016145696], [-75.23044450507051, 39.979503942133874], [-75.2301355031137, 39.97939087621543], [-75.22982650974122, 39.97927779521482], [-75.22951753986443, 39.97916467603367], [-75.2292086142462, 39.97905149570235], [-75.22889973957359, 39.978938231843195], [-75.228590933066, 39.97882486230994], [-75.22828221080628, 39.97871136403067], [-75.22797358650385, 39.97859771478237], [-75.2282261652399, 39.97877771624851], [-75.22847274984605, 39.97896106777772], [-75.2286785702593, 39.97916872493492], [-75.22883996273082, 39.9794043519961], [-75.22894765996324, 39.97965218987119], [-75.22896768418192, 39.97991725419923], [-75.22894558230313, 39.98018044797911], [-75.22889328745423, 39.98044163690388], [-75.22879489571393, 39.98070223660668], [-75.22815173844755, 39.980464672815025], [-75.22769983954039, 39.98030167955546], [-75.22720762006905, 39.98011875105071], [-75.22671454102148, 39.97993866394432], [-75.2263870091941, 39.98045849853005], [-75.22598506456495, 39.98110344713947], [-75.22611408407533, 39.98131069652115], [-75.22620352276934, 39.98160917075345], [-75.22516370803253, 39.98133793425713], [-75.22406693790319, 39.9815094868596], [-75.22379084515117, 39.98152112708002], [-75.22367524703087, 39.98151036448287], [-75.22354641209124, 39.98147582405985], [-75.22315828235908, 39.98138230866424], [-75.22248973525193, 39.98113780900851], [-75.22145350543394, 39.980750514692936], [-75.21947213701459, 39.980017477693615], [-75.22198187468743, 39.975783466924824], [-75.22247529477978, 39.97521309980976], [-75.22298525071733, 39.97459343456398], [-75.22303908602558, 39.97452647937162], [-75.22294655328514, 39.97398536539481], [-75.22282886363037, 39.97331979648558], [-75.22270951231486, 39.972650541751854], [-75.22261453670089, 39.97212115051214], [-75.22367290416578, 39.97189577011077], [-75.22538481137462, 39.97153234336764], [-75.22571266046691, 39.97146490113747], [-75.22584237062186, 39.97143175783036], [-75.22656776207988, 39.971345030936604], [-75.22723186273795, 39.97127505125215], [-75.22798949528075, 39.97119099565426], [-75.22873632677351, 39.971108667353086], [-75.22927488529089, 39.97104645009116], [-75.22970182046944, 39.9710009771368], [-75.23013130258644, 39.970951605867114], [-75.23066592674994, 39.97089571533209], [-75.2316186944593, 39.970790477756395]]]}}, {"id": "4320", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.25779952487125, 39.983298733608244], [-75.25779203427024, 39.98318014148932], [-75.25775629701346, 39.98302449642958], [-75.25773773726883, 39.98272346434004], [-75.25778774191511, 39.98265167019297], [-75.25790807519572, 39.982599623853325], [-75.2579939107551, 39.982519497765885], [-75.25799909350198, 39.98234211207622], [-75.2580284939987, 39.98228444662897], [-75.25811659674547, 39.98227936251505], [-75.25824979726318, 39.98228458720162], [-75.25830663143363, 39.98222285289109], [-75.2583221669947, 39.98212990460163], [-75.25836885012829, 39.98201431046831], [-75.25833626165407, 39.98191098765083], [-75.25831715813426, 39.981770644081074], [-75.25836972855525, 39.981659842183376], [-75.25846785912155, 39.98162932260072], [-75.25856564769774, 39.9816081234384], [-75.25864039887813, 39.98155377500522], [-75.25876618215821, 39.981430568990504], [-75.25887532799537, 39.981265023796205], [-75.2589846442712, 39.98109481689402], [-75.25897982934555, 39.98097810475738], [-75.25885201713002, 39.98082607375668], [-75.2588537748815, 39.98069551103776], [-75.25879678170176, 39.98059632301827], [-75.25871470146915, 39.98051991245347], [-75.25860787493902, 39.98045695785922], [-75.25853151037687, 39.9803900000627], [-75.25843782683634, 39.980299344143255], [-75.25841112644903, 39.98020081447303], [-75.25838442617221, 39.980102283895995], [-75.25833869599897, 39.980026662221725], [-75.25825798364228, 39.97991296658654], [-75.2582070502981, 39.97981391071058], [-75.25815868192974, 39.97964494518299], [-75.25809077207833, 39.97951287063377], [-75.25808327222325, 39.979386771288986], [-75.25813149276829, 39.97922923182571], [-75.25819340599485, 39.97911163672751], [-75.25812032954617, 39.97903775383541], [-75.25803641921948, 39.97892865208236], [-75.25793987961264, 39.97883327016297], [-75.25791940977383, 39.978730211227486], [-75.25792590780046, 39.97855310816274], [-75.25791235010618, 39.9784268781471], [-75.25785707138698, 39.97828108446243], [-75.25780213375715, 39.9781259693219], [-75.25779011548293, 39.97795779297534], [-75.25775335275372, 39.9778030724985], [-75.25769947540438, 39.977729351261154], [-75.25764943867127, 39.97766088688027], [-75.25747888789834, 39.97751725296001], [-75.25740961323852, 39.97742246270898], [-75.25740646266574, 39.97734310100659], [-75.25740485139336, 39.97722179389385], [-75.25734837632905, 39.97710862394151], [-75.2572787590093, 39.977023154987144], [-75.25721016932745, 39.97690972181028], [-75.25721341918234, 39.97682117029333], [-75.25728296449567, 39.97674338766296], [-75.25729329735748, 39.97662700440164], [-75.25726105515838, 39.976514360760035], [-75.25714605545802, 39.976343948216915], [-75.25710392126844, 39.97617045312351], [-75.25699371099005, 39.97586954347642], [-75.25687915554406, 39.97552189602913], [-75.25681193541959, 39.97537117787911], [-75.25682312537205, 39.97523149207834], [-75.25685820484966, 39.97510165322955], [-75.25691282402472, 39.974934925343916], [-75.25693246643112, 39.97473012222964], [-75.25691381019176, 39.97441254465719], [-75.25695225953109, 39.974273450166905], [-75.25695436167905, 39.97413356692452], [-75.25695395864643, 39.974061971933196], [-75.25694725586013, 39.97383165349569], [-75.25696902021768, 39.97373417627259], [-75.2570293549024, 39.97357690045855], [-75.25704608876329, 39.97345132743528], [-75.25704902260088, 39.973371387903], [-75.25706783496831, 39.97318917794868], [-75.25713371237319, 39.973046015756964], [-75.25718073453896, 39.97292110069804], [-75.25718637870318, 39.97276730205233], [-75.25719551388593, 39.972683542796275], [-75.25725670225273, 39.97250296425085], [-75.257292292555, 39.97235914405464], [-75.25730655950275, 39.97213556736496], [-75.25730563265151, 39.971995617425534], [-75.2573580261331, 39.971889476660614], [-75.25740863728154, 39.971666689441044], [-75.257431939431, 39.97152726670702], [-75.2575571933081, 39.97141804408629], [-75.25776102205931, 39.97131519145045], [-75.25791553580198, 39.971234590448375], [-75.25808668201717, 39.97119632838342], [-75.25837688914825, 39.971134997549655], [-75.25884268498008, 39.97091422808973], [-75.25899617112857, 39.97086158805644], [-75.25910000155406, 39.970840520831985], [-75.2592697790063, 39.9708395417386], [-75.25939681421642, 39.970846963512884], [-75.25953024757882, 39.97084519518249], [-75.25971853939578, 39.970835288428], [-75.25985351032962, 39.9707915751731], [-75.25997133471044, 39.97071950320626], [-75.26004172481493, 39.97061841536149], [-75.26006314203006, 39.97053025895482], [-75.26006340651612, 39.970357685014804], [-75.26000446278272, 39.970146512776964], [-75.25997878916237, 39.97002001920612], [-75.25999966245008, 39.96969863575309], [-75.26004919148546, 39.969587767310834], [-75.26005738430719, 39.969529641278555], [-75.26002974625233, 39.96945674448723], [-75.26002138972488, 39.96935394876291], [-75.26002591677762, 39.969230443201695], [-75.26006418598072, 39.969096008354875], [-75.2601693799521, 39.96903765541261], [-75.26029261395144, 39.96906598319266], [-75.26037310589713, 39.969102711397454], [-75.26047885110329, 39.96911200276864], [-75.26059010216389, 39.96905377996183], [-75.260720804872, 39.9689609972959], [-75.26076670636407, 39.9688663748751], [-75.26073915319462, 39.96879114834983], [-75.26072499448445, 39.96868123065621], [-75.26084477818482, 39.968555561005545], [-75.26093047823946, 39.96845014129412], [-75.26094383283976, 39.96833382338833], [-75.26093581664317, 39.968221705411885], [-75.2609281419501, 39.96810026781984], [-75.26101286239131, 39.967938854768136], [-75.26108998718195, 39.9678192557096], [-75.2611314534269, 39.967680226401406], [-75.26110458216422, 39.96758635800436], [-75.26105280133898, 39.967510605120495], [-75.26102392676209, 39.96738870767416], [-75.26095939318695, 39.96724737814309], [-75.26088961065659, 39.967166572062574], [-75.2608691387215, 39.96706351269308], [-75.2608551521047, 39.96694893432809], [-75.26083301840988, 39.966808525402605], [-75.26076780266723, 39.966685838592184], [-75.26070467586813, 39.96658885087744], [-75.26064700984142, 39.96650830659159], [-75.26054865177791, 39.96638023618688], [-75.2604910270259, 39.96631490318297], [-75.260623238936, 39.96627279168309], [-75.26079045437787, 39.9662764194162], [-75.26093379641621, 39.966243366988095], [-75.26102709877767, 39.96619952979436], [-75.26113926037122, 39.966110237743976], [-75.26125056796985, 39.966012989367606], [-75.26138734376573, 39.96600272769833], [-75.26146338510004, 39.966054648433], [-75.26154820032066, 39.96611734329838], [-75.26166239053003, 39.96616039121987], [-75.26177487345527, 39.966187523902455], [-75.26189348622032, 39.9661724583135], [-75.26201401906312, 39.96613626464223], [-75.26209890174695, 39.96607195829984], [-75.26211729154339, 39.96600797249942], [-75.26215139227739, 39.96595314801409], [-75.2622602236201, 39.965865661258434], [-75.26236353462845, 39.96576283344492], [-75.26244080321875, 39.96565602620614], [-75.26253626560519, 39.9656157620172], [-75.26264910168297, 39.96563320148516], [-75.26280228129282, 39.965644459741384], [-75.26294047574343, 39.96559541878383], [-75.26306166698181, 39.965509849818986], [-75.26317011682211, 39.96545928181954], [-75.2632801457881, 39.96549077198556], [-75.26338469228234, 39.965546838376255], [-75.2634999314463, 39.965592550693714], [-75.26361575127439, 39.9656224018904], [-75.26373382166734, 39.965606438808436], [-75.2638925745811, 39.96554373184378], [-75.26400395736077, 39.965475587101565], [-75.26409504700362, 39.96539818463679], [-75.26424258006374, 39.96531318427432], [-75.26437349643582, 39.96524369914122], [-75.26452562628133, 39.96518966670934], [-75.26464400988061, 39.965180766022385], [-75.26475847594591, 39.965185009544044], [-75.26491989850662, 39.96519026997155], [-75.26505962253569, 39.9651932961095], [-75.26525393659826, 39.96520808725808], [-75.2654189072414, 39.965241646310574], [-75.26554800782657, 39.96537850044579], [-75.2656571866125, 39.96552727109349], [-75.26574520340267, 39.965627955516354], [-75.26580611550156, 39.965717472754235], [-75.26585838466731, 39.96579268888802], [-75.26592236254224, 39.96586110376407], [-75.26604946138958, 39.965927356831095], [-75.26619464308726, 39.96596930517032], [-75.2663558264551, 39.966012483559055], [-75.26654572245975, 39.966022767406024], [-75.26675226433892, 39.966016654659676], [-75.26691070252804, 39.966009499641864], [-75.26702471920359, 39.96602607825345], [-75.26717753207062, 39.96607877524957], [-75.26729380946172, 39.96615890397913], [-75.26737711392987, 39.966212171656025], [-75.2675041832672, 39.966267527710016], [-75.26763528202483, 39.96628712147845], [-75.26777998240793, 39.96634228833357], [-75.26791077678227, 39.966401561806634], [-75.26813095861925, 39.96649275792624], [-75.26839332364213, 39.966590156535425], [-75.2684879211227, 39.96663630116208], [-75.26856838821512, 39.96669272399529], [-75.26870209308387, 39.96679792233221], [-75.26877314063175, 39.96686119602945], [-75.26884793203345, 39.9669474834126], [-75.2689178223784, 39.9670424818077], [-75.26901732057507, 39.96723690165692], [-75.26906281706512, 39.96730932449359], [-75.26916363321028, 39.96737353619685], [-75.26931520040584, 39.96739768533159], [-75.26947164254084, 39.96738254678414], [-75.26954940760504, 39.96735600544301], [-75.26964222570032, 39.96732537822608], [-75.26974114420464, 39.96731605144295], [-75.26982980277185, 39.967336488485415], [-75.26994080967651, 39.96740415429852], [-75.27001750229617, 39.96751693938681], [-75.27005546419105, 39.96765446359375], [-75.27008609397892, 39.96775743332085], [-75.27014147030803, 39.967873284963005], [-75.27019264858359, 39.967978463780554], [-75.27029857547103, 39.96818536843522], [-75.27039605939422, 39.968340937118356], [-75.27041825229144, 39.96845519034891], [-75.27047525775806, 39.96855784694886], [-75.27060759119026, 39.96865889938613], [-75.27074631313926, 39.968668658677835], [-75.27087600835432, 39.968632654577455], [-75.27101562691286, 39.968607446784695], [-75.27113982493529, 39.96862777030827], [-75.27124165378416, 39.96866436607983], [-75.27136877512659, 39.96869886372079], [-75.27149100636406, 39.96871032373607], [-75.27159166987883, 39.96871602539292], [-75.27169888243431, 39.968730689046524], [-75.27183341176121, 39.968782101770195], [-75.27192338869241, 39.96886077640519], [-75.27200552968517, 39.96896574004722], [-75.2720875016248, 39.96901248918478], [-75.2721973785659, 39.969048377619984], [-75.2723446699692, 39.96909565678861], [-75.27250608970286, 39.96913265605032], [-75.27262589201683, 39.96917934132502], [-75.27277184335667, 39.969231882479804], [-75.27300662004204, 39.96930045123913], [-75.27323356179036, 39.96930094053377], [-75.2734544051496, 39.96928013094595], [-75.27357021577774, 39.969279102158396], [-75.2736822032329, 39.96928857460309], [-75.2738102288223, 39.96929839303772], [-75.27391292624827, 39.96931119213032], [-75.27401358851628, 39.96931689161242], [-75.27415109702976, 39.96931809455762], [-75.27432649972707, 39.969317469632365], [-75.27448834915032, 39.9693112605676], [-75.27484957631505, 39.96929127212687], [-75.27505636479906, 39.96929440896439], [-75.2751979025655, 39.969326566152496], [-75.27529422162277, 39.96938861653901], [-75.27537981994091, 39.96954039701618], [-75.27545651418261, 39.96977929878811], [-75.27549455040116, 39.969930933724896], [-75.27556823756021, 39.97012655489465], [-75.27560753384536, 39.97021207217482], [-75.2756790833548, 39.97027755600434], [-75.27581943212209, 39.970311010280305], [-75.27600562051816, 39.97031326148098], [-75.27621655745362, 39.97032839209221], [-75.27630337930857, 39.97035231355931], [-75.27639208218493, 39.97040317435482], [-75.27645347489127, 39.97049577995993], [-75.27650845682969, 39.97059133500776], [-75.27663081832311, 39.97081181759219], [-75.27666108441865, 39.97096438829077], [-75.27655897481661, 39.971077062658885], [-75.27647681652651, 39.97115070035715], [-75.27655402223768, 39.97124452971475], [-75.2767251942114, 39.971249982456406], [-75.27686183385241, 39.97119648269428], [-75.27707374547703, 39.971106238414094], [-75.27716729138939, 39.97108708756969], [-75.27730324621768, 39.971083843768945], [-75.27742249122169, 39.97109876035016], [-75.27755560737012, 39.97114197822164], [-75.27765799846647, 39.9712105507228], [-75.2776966387695, 39.97126694774047], [-75.27768369953003, 39.971344281401834], [-75.2775375059147, 39.971409395369484], [-75.27752660910306, 39.97153713344782], [-75.27759278090684, 39.9716166140329], [-75.27765872446948, 39.97165253165632], [-75.27776625909163, 39.971679707495724], [-75.2778875217629, 39.971694333674876], [-75.2779938245599, 39.97173386766503], [-75.27829745667975, 39.97192902531337], [-75.27835368985112, 39.97201433604586], [-75.27845022447251, 39.97210771993886], [-75.27853792600652, 39.97218649778466], [-75.27863376462648, 39.97229908987982], [-75.27869822404367, 39.97241581194476], [-75.27872523619963, 39.97253172751549], [-75.27876048646607, 39.972635804990645], [-75.27877927328194, 39.97272030725401], [-75.27878418087369, 39.97284295463171], [-75.27879585289563, 39.97295133016385], [-75.27881090768369, 39.97305257158474], [-75.27883185465254, 39.97316355066624], [-75.27886000276243, 39.97324825540332], [-75.27893478651718, 39.97333876841981], [-75.27897142380097, 39.973447681518365], [-75.2789997468898, 39.973527584143355], [-75.27906533009049, 39.97365634295254], [-75.27910958452401, 39.973813476597286], [-75.2791246388332, 39.97391471704907], [-75.27917194907599, 39.97398781879196], [-75.27924215052055, 39.974032581956855], [-75.27935933750587, 39.97407354903744], [-75.2794668117676, 39.97412391856745], [-75.27960193564434, 39.97418689602152], [-75.27980630144762, 39.97432104576538], [-75.27995554698477, 39.974425175482324], [-75.28003974026686, 39.97452890493397], [-75.28008569570692, 39.97462500440104], [-75.28013161062924, 39.974736521475975], [-75.28019356522486, 39.97483636824822], [-75.28030494348063, 39.97499282958565], [-75.27942880590791, 39.97543776910457], [-75.27767815353906, 39.97633805029053], [-75.27637978216349, 39.977005710925546], [-75.27614487465645, 39.97711075459385], [-75.27529559584758, 39.97749051778284], [-75.27357298205358, 39.97826076910169], [-75.27303027921207, 39.97850208912234], [-75.2722670159775, 39.97884147602715], [-75.2714231867024, 39.97921867213419], [-75.26927040715022, 39.98017154149284], [-75.26747837229865, 39.980966265533], [-75.26625785964977, 39.98150750669138], [-75.26559186859274, 39.98180283336507], [-75.26477028042451, 39.982167149718165], [-75.26438298957272, 39.98233888222463], [-75.26371556310222, 39.98263482679255], [-75.26218443439792, 39.98348226865512], [-75.26072952068351, 39.984282074375585], [-75.25950960686441, 39.984952663492855], [-75.25895553332985, 39.98525723169234], [-75.25873855202822, 39.9851411140688], [-75.25856372363621, 39.985064439102324], [-75.25844839567114, 39.98497994566437], [-75.25841623552195, 39.98488814773539], [-75.25841990895853, 39.98478801782432], [-75.25838875078568, 39.98466891197484], [-75.25829675601017, 39.98459403569778], [-75.25815876484526, 39.98448172025604], [-75.25808027370277, 39.98436158573331], [-75.25800311996899, 39.984205041536896], [-75.25797346464786, 39.98404497323328], [-75.25788514655346, 39.983869965850175], [-75.25786598973029, 39.98374656592826], [-75.2578720020408, 39.98358271667808], [-75.25781851438828, 39.983426686211416], [-75.25779952487125, 39.983298733608244]]]}}, {"id": "4350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17454748031477, 39.99608723898832], [-75.1740384672259, 39.99602451559965], [-75.173949400465, 39.996433541437796], [-75.1738467884602, 39.9969125493937], [-75.17376905847696, 39.99726228886767], [-75.1736925769281, 39.99761763719093], [-75.17360205393814, 39.998036371890905], [-75.17328363960958, 39.99951770076661], [-75.17365940901269, 39.999570697039815], [-75.17383129442936, 39.999588710336866], [-75.17413721987295, 39.99963091214326], [-75.17431353173781, 39.99965438956214], [-75.17462275500036, 39.99969188238585], [-75.1748683905341, 39.99971241271599], [-75.17529339938785, 39.99977849249369], [-75.17551452603499, 39.99980728632103], [-75.17592533856603, 39.99987022969339], [-75.17630108312402, 39.99992258776815], [-75.17788703847265, 40.000121568957525], [-75.18580239335816, 40.001234552348855], [-75.18591254797424, 40.00113254716044], [-75.18601240691117, 40.0010530245405], [-75.1863976069381, 40.00073642456139], [-75.18658483537178, 40.00059526388212], [-75.18670843089362, 40.00051263605986], [-75.18684530319169, 40.00041862298224], [-75.18695021727696, 40.00036542639317], [-75.18719648096246, 40.000287353234], [-75.1873415558144, 40.000261523586055], [-75.18751204453845, 40.000250794308116], [-75.18774342180795, 40.000254142455965], [-75.18811364941526, 40.00027148930787], [-75.1882887944045, 40.000274281499806], [-75.18844854279348, 40.00027300690382], [-75.18856107316485, 40.00025622816419], [-75.18881572478557, 40.000205526644876], [-75.18957783196146, 39.999896811291215], [-75.19051987452018, 39.99964280358881], [-75.19173829317083, 39.9995496686985], [-75.19156264214371, 40.00079131936958], [-75.19141944287965, 40.002882461289495], [-75.1915353587339, 40.00420107841301], [-75.19175386735485, 40.005238965345704], [-75.19202407067375, 40.00588177689373], [-75.19210817108346, 40.0059917246091], [-75.19248650438152, 40.00648631915835], [-75.19215822867767, 40.00652737723856], [-75.19182140823222, 40.006574296052555], [-75.19159962191372, 40.00660536533527], [-75.19148464086909, 40.006621471858764], [-75.19114793109786, 40.00666897143275], [-75.19081081926585, 40.00671456625028], [-75.19047279783496, 40.00675583840279], [-75.19013391830701, 40.006793039509155], [-75.18979495444817, 40.00682982508193], [-75.18875577856281, 40.00687835254241], [-75.18751678904931, 40.00693619642412], [-75.18309910876698, 40.007142337153745], [-75.18259278643873, 40.0071660341871], [-75.18225108780933, 40.00718179340903], [-75.18190938624555, 40.00719750109568], [-75.18156769013017, 40.00721327636771], [-75.18122601266239, 40.00722923484977], [-75.18088436810777, 40.00724549489363], [-75.1805427636371, 40.00726217649447], [-75.18020121485219, 40.00727939352919], [-75.17985986450924, 40.007299379194045], [-75.17949583686833, 40.007330268309794], [-75.1791808013841, 40.00736527442401], [-75.17884254943282, 40.00740598482527], [-75.17850353803009, 40.007442419954835], [-75.17817990974089, 40.00747547030837], [-75.17782497552301, 40.00751233965202], [-75.17748625496522, 40.00755025147113], [-75.17714771609977, 40.007589819726114], [-75.17680993770276, 40.007632744984505], [-75.17647388047243, 40.007682150068774], [-75.17614027259992, 40.0077412625246], [-75.17580848000264, 40.00780637581546], [-75.17547878827409, 40.00787715578088], [-75.17515173790514, 40.00795495076213], [-75.17482574100757, 40.00803540932257], [-75.17450135375312, 40.00811949811968], [-75.17418020188195, 40.00821038105396], [-75.17386255750822, 40.00830866613599], [-75.17354518230786, 40.008407551969064], [-75.17322881678321, 40.008508366147595], [-75.17289976733551, 40.00862885398273], [-75.17261598778865, 40.00874233816866], [-75.17231497932914, 40.00886798956168], [-75.17201478572093, 40.00899458472763], [-75.17171807731377, 40.00912597960543], [-75.17142893153489, 40.00926680419859], [-75.17114081893814, 40.009408899199265], [-75.17085302274307, 40.0095513925516], [-75.17056549159035, 40.00969421733024], [-75.17027816930145, 40.009837310105105], [-75.17012183886611, 40.009915319234196], [-75.16997222605549, 40.00975029935354], [-75.16977642969267, 40.00953434146551], [-75.16958063595123, 40.009318377866634], [-75.1693848528208, 40.00910241414265], [-75.16918907816523, 40.00888644483949], [-75.16914141995576, 40.00883386530923], [-75.16902131344077, 40.00890282471295], [-75.16848841069908, 40.00830024742549], [-75.16817665677839, 40.00792919258995], [-75.16753051174942, 40.007229125812884], [-75.16706466223903, 40.00671707874373], [-75.16694227559776, 40.00659450027782], [-75.16683627468983, 40.00656625799417], [-75.16522993149461, 40.006355457449395], [-75.16362929487212, 40.006153400797835], [-75.1637889278219, 40.005391718188754], [-75.16394255755147, 40.004656818906476], [-75.16410376670699, 40.0039137062559], [-75.16416664603113, 40.003624523693304], [-75.16423349039556, 40.00331710737684], [-75.16428653681054, 40.00307313876195], [-75.16385107540998, 40.0030100347716], [-75.16368297597836, 40.00298909789411], [-75.16362073706692, 40.002951223522345], [-75.16335369651195, 40.002785904787025], [-75.16308767953454, 40.00261989215878], [-75.16282206196311, 40.00245388518213], [-75.16255680593444, 40.00228746313338], [-75.16229204340254, 40.002120514560396], [-75.1620279027452, 40.00195296036825], [-75.16176451244321, 40.00178471876236], [-75.16150199984101, 40.00161570702282], [-75.161240496931, 40.00144584343654], [-75.16098012864764, 40.001275047033516], [-75.16072102574383, 40.001103237877146], [-75.16046479410915, 40.00092885830357], [-75.16022065424094, 40.00074376302431], [-75.15999048402087, 40.000548785576555], [-75.1597713031795, 40.0003466843852], [-75.1595615079236, 40.0001381630573], [-75.15936539983369, 39.99992221767875], [-75.1591803374125, 39.99970092501449], [-75.15899602352023, 39.99947923625235], [-75.15881222546582, 39.99925726237476], [-75.15862265723953, 39.99902740827307], [-75.15899682039944, 39.998828117554744], [-75.15860052408783, 39.99832830269098], [-75.15858145930692, 39.99820623506159], [-75.15871361413248, 39.99765215583468], [-75.15892784507975, 39.99664039538977], [-75.15910396550437, 39.995787685077396], [-75.15937214283764, 39.99568041788825], [-75.15968224437353, 39.99556799088048], [-75.15999242176541, 39.99545566658435], [-75.16030227819603, 39.99534316033578], [-75.16045884503355, 39.995286151429184], [-75.16061238107615, 39.99523024616773], [-75.16092135898762, 39.99511657598776], [-75.16122978418703, 39.99500191943675], [-75.16153718510476, 39.994885985669384], [-75.16163202672163, 39.99484964644871], [-75.16184356796215, 39.99476851894601], [-75.16214851295865, 39.9946492223867], [-75.16245167076322, 39.994527825031916], [-75.16275345225249, 39.9944040577435], [-75.16305295047066, 39.9942776496103], [-75.163350493459, 39.994148322421], [-75.16364550628586, 39.99401579203144], [-75.16375019463729, 39.99396740746016], [-75.16393856707938, 39.99388065714653], [-75.16423074379837, 39.993744342918106], [-75.16452209682625, 39.993606924596605], [-75.16481268231108, 39.99346846562296], [-75.16510262738187, 39.99332901121388], [-75.16539161774134, 39.99318860115002], [-75.16568007898715, 39.99304731800311], [-75.16596791696877, 39.99290520380751], [-75.16625523475753, 39.99276232035509], [-75.1665418847763, 39.99261869766585], [-75.16682790638126, 39.99247440961277], [-75.1671136796878, 39.99232950259677], [-75.16739917355237, 39.99218405610931], [-75.16768419613064, 39.99203809376805], [-75.1679687264333, 39.99189167457132], [-75.16825303046308, 39.99174485766576], [-75.16843898729299, 39.99164851587217], [-75.16853740086704, 39.99159771000278], [-75.1688207535072, 39.991450246846625], [-75.1691045372262, 39.99130256565563], [-75.1693872372827, 39.99115510089788], [-75.16967144280557, 39.991006703428134], [-75.16995458851298, 39.990858634656625], [-75.17023810612953, 39.990710548344374], [-75.17052159274488, 39.99056250481203], [-75.17080490447788, 39.99041452965903], [-75.17108835770135, 39.99026671288831], [-75.17137200492108, 39.99011909081782], [-75.17165545820235, 39.989971699782394], [-75.17174544033298, 39.98992532586602], [-75.1719398834796, 39.98982465246886], [-75.17222419612551, 39.98967794703608], [-75.1722929682314, 39.9896425977823], [-75.17250881164603, 39.98953165408423], [-75.17279376775308, 39.989385829419646], [-75.17307901995844, 39.989240410772055], [-75.17336424298125, 39.98909495654882], [-75.17364939329444, 39.98894940991035], [-75.17397753918489, 39.98879442269209], [-75.17421944851988, 39.98865801715374], [-75.17431169727813, 39.988610003672555], [-75.17450433969368, 39.98851216261944], [-75.17478913219263, 39.988366189861445], [-75.175073819062, 39.988220096922404], [-75.17535839004088, 39.98807387636496], [-75.17564284416281, 39.98792752276212], [-75.17592717237113, 39.987781027802576], [-75.17621136888152, 39.9876343895556], [-75.17649542346686, 39.98748759968373], [-75.17678267943901, 39.987338918507284], [-75.17706309246293, 39.987193543122466], [-75.1773466921687, 39.98704626259055], [-75.17763012508465, 39.986898806454555], [-75.17791338439226, 39.9867511691569], [-75.17819595734188, 39.986602755354134], [-75.17847269556879, 39.98644779135077], [-75.17874350295386, 39.98628671112583], [-75.17900988020565, 39.986121580118635], [-75.17927288452242, 39.985953153660745], [-75.17952311080867, 39.98578912390087], [-75.1802587566406, 39.98634657855011], [-75.1808049885002, 39.98679189595898], [-75.18239436538755, 39.98804340832484], [-75.18272022858042, 39.98833197667123], [-75.1831239638344, 39.98873142579218], [-75.18360132913213, 39.989160865516276], [-75.18370039313666, 39.98926152661691], [-75.18440501709573, 39.98993084231582], [-75.18492772040672, 39.99059520320089], [-75.18514705947834, 39.99089240645013], [-75.18546053033423, 39.99138595734597], [-75.1855994217512, 39.991700477966795], [-75.18470028526923, 39.99158911954114], [-75.18310199841407, 39.991387944261916], [-75.1830327008547, 39.991716851483034], [-75.18294730872427, 39.992132675019576], [-75.18287263140702, 39.99249945472539], [-75.18285160219146, 39.992559874632335], [-75.18278097572606, 39.992882286376116], [-75.18246403080408, 39.99436655835697], [-75.18190307494586, 39.994297651369116], [-75.18143282941065, 39.99424567778614], [-75.18089021757832, 39.99416854551146], [-75.18031371940255, 39.99409936300979], [-75.17984491495443, 39.994033394503084], [-75.17924802630033, 39.99396489071622], [-75.17865174340511, 39.99387175652586], [-75.17818778459817, 39.99381253198284], [-75.17762739068323, 39.9937463844015], [-75.17730329983524, 39.99524011547214], [-75.1772181797496, 39.99565034009198], [-75.17713354646214, 39.996021750104205], [-75.17706269651143, 39.99637357649088], [-75.17565293877416, 39.996202787880286], [-75.17557127214151, 39.9962194694204], [-75.17454748031477, 39.99608723898832]]]}}, {"id": "4360", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15142831160365, 40.010904609042456], [-75.15088384543449, 40.01083838502309], [-75.15109155559469, 40.009935608153896], [-75.15124691791851, 40.00928023079825], [-75.15136965214894, 40.0087285626357], [-75.15145388577758, 40.008304667680875], [-75.15160350639509, 40.007666561375814], [-75.1519215609655, 40.00616852257761], [-75.15223616898231, 40.00469095826975], [-75.15255074890221, 40.00318283825957], [-75.15292652250417, 40.00159394177207], [-75.15327178153623, 40.000005964225274], [-75.1533756429784, 39.999535716947804], [-75.15343043501113, 39.99932290234036], [-75.15351676429032, 39.99894368200813], [-75.15356617822117, 39.99872491882124], [-75.15360944500394, 39.99851659723753], [-75.15378676915165, 39.997718116984636], [-75.15411432116903, 39.9975994614778], [-75.15442400020167, 39.99748737210634], [-75.15473371019556, 39.99737533398034], [-75.15504344137354, 39.99726332705614], [-75.1553531803092, 39.99715133481174], [-75.15566291708737, 39.997039340804676], [-75.1559726395891, 39.996927324938724], [-75.15628233683134, 39.996815268044415], [-75.15659199535231, 39.99670315450057], [-75.15670451151196, 39.996662382790745], [-75.15690160774868, 39.99659096341692], [-75.1572111605581, 39.99647867917237], [-75.15752064048989, 39.99636628164496], [-75.1578301887574, 39.9962537542018], [-75.15813665290185, 39.99613667645335], [-75.1584443762612, 39.99602107787734], [-75.1587530025543, 39.99590668642272], [-75.15910396550437, 39.995787685077396], [-75.15892784507975, 39.99664039538977], [-75.15871361413248, 39.99765215583468], [-75.15858145930692, 39.99820623506159], [-75.15860052408783, 39.99832830269098], [-75.15899682039944, 39.998828117554744], [-75.15862265723953, 39.99902740827307], [-75.15881222546582, 39.99925726237476], [-75.15899602352023, 39.99947923625235], [-75.1591803374125, 39.99970092501449], [-75.15936539983369, 39.99992221767875], [-75.1595615079236, 40.0001381630573], [-75.1597713031795, 40.0003466843852], [-75.15999048402087, 40.000548785576555], [-75.16022065424094, 40.00074376302431], [-75.16046479410915, 40.00092885830357], [-75.16072102574383, 40.001103237877146], [-75.16098012864764, 40.001275047033516], [-75.161240496931, 40.00144584343654], [-75.16150199984101, 40.00161570702282], [-75.16176451244321, 40.00178471876236], [-75.1620279027452, 40.00195296036825], [-75.16229204340254, 40.002120514560396], [-75.16255680593444, 40.00228746313338], [-75.16282206196311, 40.00245388518213], [-75.16308767953454, 40.00261989215878], [-75.16335369651195, 40.002785904787025], [-75.16362073706692, 40.002951223522345], [-75.16368297597836, 40.00298909789411], [-75.16385107540998, 40.0030100347716], [-75.16428653681054, 40.00307313876195], [-75.16423349039556, 40.00331710737684], [-75.16416664603113, 40.003624523693304], [-75.16410376670699, 40.0039137062559], [-75.16394255755147, 40.004656818906476], [-75.16266176106042, 40.00449586267749], [-75.16205980369239, 40.004411363111885], [-75.16124295205188, 40.00430751652491], [-75.16049590439602, 40.00421652653145], [-75.16039708600967, 40.00467860002028], [-75.16018002442229, 40.0056935563002], [-75.15938120530795, 40.005596441291345], [-75.15860266420239, 40.00549919183472], [-75.15827899180522, 40.006995350258336], [-75.15671137621378, 40.00679123674339], [-75.1565391286977, 40.007528480929054], [-75.1563776281082, 40.00828571438881], [-75.15557733939363, 40.00818170067494], [-75.15480148824966, 40.00808177653153], [-75.15446554022661, 40.00965572461483], [-75.15367036090495, 40.009554092098085], [-75.15287867430192, 40.00944804956422], [-75.15254164453529, 40.01105020923317], [-75.15179958690221, 40.010951326411366], [-75.15142831160365, 40.010904609042456]]]}}, {"id": "4370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.24978479196271, 39.98969976247465], [-75.24962539757507, 39.989466369359434], [-75.24946425191449, 39.98923383613185], [-75.24929776056157, 39.989003933304275], [-75.24912232106712, 39.98877842758796], [-75.24893535809994, 39.98855854943753], [-75.24873884867817, 39.988343287720184], [-75.24853553159981, 39.98813136500563], [-75.24832811799277, 39.98792152310045], [-75.24811931762962, 39.98771250830601], [-75.24791180889682, 39.98750305995227], [-75.24770586314762, 39.98729252083316], [-75.24749891064862, 39.987082381929454], [-75.24728844095677, 39.986874559862514], [-75.24707193557566, 39.9866709674555], [-75.24684604899207, 39.98647402835681], [-75.24660330199214, 39.98628858708673], [-75.24644054350821, 39.9861752070431], [-75.24634908383008, 39.986111494104286], [-75.24609154060022, 39.98593783014206], [-75.24583413804008, 39.98576410286919], [-75.24557536375369, 39.985591336148076], [-75.24531369919322, 39.98542132404087], [-75.24504763542635, 39.98525585359801], [-75.2447756649753, 39.985096703778815], [-75.24449771339214, 39.98494341521302], [-75.24421477298127, 39.98479493283755], [-75.24392738287504, 39.98465130983399], [-75.24363608721188, 39.98451259048826], [-75.2433414192912, 39.98437882696372], [-75.2430434082267, 39.98425002257443], [-75.24274199429183, 39.984125604761495], [-75.24243790732571, 39.98400471187836], [-75.24213188787569, 39.983886478014874], [-75.24182467064739, 39.98377003714066], [-75.24151699490501, 39.98365452693657], [-75.24120916805782, 39.983539615345656], [-75.24090024436214, 39.983426458387555], [-75.2405904118842, 39.983314720491556], [-75.2402799848242, 39.98320391748021], [-75.23996927180364, 39.983093557849344], [-75.23965858696977, 39.98298315922893], [-75.23934823775453, 39.98287223099615], [-75.23903853607797, 39.98276028803558], [-75.23872979266353, 39.98264684610981], [-75.2386133941012, 39.98260314982133], [-75.23874552031107, 39.982383101851674], [-75.23904360757881, 39.98195194572015], [-75.2393364320091, 39.9814487492631], [-75.23941782700196, 39.9812841947847], [-75.23947488765062, 39.981115960767795], [-75.23946783594495, 39.98091564453654], [-75.23937971975117, 39.98042536050394], [-75.23930359835626, 39.98001699220907], [-75.23925884612574, 39.97975561433966], [-75.23918921571732, 39.97941621572664], [-75.2391258420239, 39.97907096594098], [-75.23995988823147, 39.97897202874271], [-75.24078976905467, 39.978888636602434], [-75.24157570471533, 39.97880044785277], [-75.24235595224603, 39.97871317642875], [-75.24324659750818, 39.97861072026858], [-75.24413970763122, 39.97851841750556], [-75.24504122364607, 39.978412055657806], [-75.24609118202632, 39.978301577196724], [-75.24741055872916, 39.978153364887895], [-75.24795534391309, 39.97808789189711], [-75.24833548194869, 39.97797008910951], [-75.24837185542803, 39.978120301429165], [-75.24842942758778, 39.978296601807756], [-75.248534557208, 39.97853891643046], [-75.24862827057224, 39.97870892987897], [-75.24869932269642, 39.9788156818088], [-75.24877874760803, 39.9789212908167], [-75.24894467722332, 39.979107813621795], [-75.24922709433469, 39.97945068088363], [-75.24945736451684, 39.97971133555546], [-75.24972680378382, 39.98003286435721], [-75.2499981816164, 39.98034370029889], [-75.25019634961782, 39.98058188701795], [-75.25106465748974, 39.98160212773648], [-75.25144274920666, 39.981409541706675], [-75.25177529229718, 39.98124566591049], [-75.25221053651195, 39.98101353192132], [-75.25254465176846, 39.98077109037152], [-75.25285866859625, 39.98049146282689], [-75.2531055950887, 39.980181698136825], [-75.25329151334172, 39.979878224493525], [-75.2534972665133, 39.979534654664576], [-75.25371700479728, 39.97927893963733], [-75.25393035335655, 39.979068205885], [-75.25425359765558, 39.97883649458859], [-75.25447177909811, 39.978704422230216], [-75.25481936135184, 39.97855001011863], [-75.25502431547316, 39.97846970018743], [-75.25545811345737, 39.97829859477337], [-75.25592386999945, 39.97812301785536], [-75.25769947540438, 39.977729351261154], [-75.25775335275372, 39.9778030724985], [-75.25779011548293, 39.97795779297534], [-75.25780213375715, 39.9781259693219], [-75.25785707138698, 39.97828108446243], [-75.25791235010618, 39.9784268781471], [-75.25792590780046, 39.97855310816274], [-75.25791940977383, 39.978730211227486], [-75.25793987961264, 39.97883327016297], [-75.25803641921948, 39.97892865208236], [-75.25812032954617, 39.97903775383541], [-75.25819340599485, 39.97911163672751], [-75.25813149276829, 39.97922923182571], [-75.25808327222325, 39.979386771288986], [-75.25809077207833, 39.97951287063377], [-75.25815868192974, 39.97964494518299], [-75.2582070502981, 39.97981391071058], [-75.25825798364228, 39.97991296658654], [-75.25833869599897, 39.980026662221725], [-75.25838442617221, 39.980102283895995], [-75.25841112644903, 39.98020081447303], [-75.25843782683634, 39.980299344143255], [-75.25853151037687, 39.9803900000627], [-75.25860787493902, 39.98045695785922], [-75.25871470146915, 39.98051991245347], [-75.25879678170176, 39.98059632301827], [-75.2588537748815, 39.98069551103776], [-75.25885201713002, 39.98082607375668], [-75.25897982934555, 39.98097810475738], [-75.2589846442712, 39.98109481689402], [-75.25887532799537, 39.981265023796205], [-75.25876618215821, 39.981430568990504], [-75.25864039887813, 39.98155377500522], [-75.25856564769774, 39.9816081234384], [-75.25846785912155, 39.98162932260072], [-75.25836972855525, 39.981659842183376], [-75.25831715813426, 39.981770644081074], [-75.25833626165407, 39.98191098765083], [-75.25836885012829, 39.98201431046831], [-75.2583221669947, 39.98212990460163], [-75.25830663143363, 39.98222285289109], [-75.25824979726318, 39.98228458720162], [-75.25811659674547, 39.98227936251505], [-75.2580284939987, 39.98228444662897], [-75.25799909350198, 39.98234211207622], [-75.2579939107551, 39.982519497765885], [-75.25790807519572, 39.982599623853325], [-75.25778774191511, 39.98265167019297], [-75.25773773726883, 39.98272346434004], [-75.25775629701346, 39.98302449642958], [-75.25779203427024, 39.98318014148932], [-75.25779952487125, 39.983298733608244], [-75.25781851438828, 39.983426686211416], [-75.2578720020408, 39.98358271667808], [-75.25786598973029, 39.98374656592826], [-75.25788514655346, 39.983869965850175], [-75.25797346464786, 39.98404497323328], [-75.25800311996899, 39.984205041536896], [-75.25808027370277, 39.98436158573331], [-75.25815876484526, 39.98448172025604], [-75.25829675601017, 39.98459403569778], [-75.25838875078568, 39.98466891197484], [-75.25841990895853, 39.98478801782432], [-75.25841623552195, 39.98488814773539], [-75.25844839567114, 39.98497994566437], [-75.25856372363621, 39.985064439102324], [-75.25873855202822, 39.9851411140688], [-75.25895553332985, 39.98525723169234], [-75.25872753309847, 39.985382559416664], [-75.2585677370443, 39.98551310456246], [-75.258500930732, 39.98556768046523], [-75.25689606554148, 39.98675825032424], [-75.25629660428655, 39.98720179878692], [-75.25611910988093, 39.98731302101286], [-75.25569741881579, 39.98751066331712], [-75.2540006401353, 39.988305893059476], [-75.25146797189905, 39.989493599388325], [-75.25082157861772, 39.98979671217423], [-75.25009715667207, 39.99013718173664], [-75.25000198399019, 39.99001086413415], [-75.24978479196271, 39.98969976247465]]]}}, {"id": "4380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16428653681054, 40.00307313876195], [-75.16385107540998, 40.0030100347716], [-75.16368297597836, 40.00298909789411], [-75.16362073706692, 40.002951223522345], [-75.16335369651195, 40.002785904787025], [-75.16308767953454, 40.00261989215878], [-75.16282206196311, 40.00245388518213], [-75.16255680593444, 40.00228746313338], [-75.16229204340254, 40.002120514560396], [-75.1620279027452, 40.00195296036825], [-75.16176451244321, 40.00178471876236], [-75.16150199984101, 40.00161570702282], [-75.161240496931, 40.00144584343654], [-75.16098012864764, 40.001275047033516], [-75.16072102574383, 40.001103237877146], [-75.16046479410915, 40.00092885830357], [-75.16022065424094, 40.00074376302431], [-75.15999048402087, 40.000548785576555], [-75.1597713031795, 40.0003466843852], [-75.1595615079236, 40.0001381630573], [-75.15936539983369, 39.99992221767875], [-75.1591803374125, 39.99970092501449], [-75.15899602352023, 39.99947923625235], [-75.15881222546582, 39.99925726237476], [-75.15862265723953, 39.99902740827307], [-75.15899682039944, 39.998828117554744], [-75.15860052408783, 39.99832830269098], [-75.15858145930692, 39.99820623506159], [-75.15871361413248, 39.99765215583468], [-75.15892784507975, 39.99664039538977], [-75.15910396550437, 39.995787685077396], [-75.15937214283764, 39.99568041788825], [-75.15968224437353, 39.99556799088048], [-75.15999242176541, 39.99545566658435], [-75.16030227819603, 39.99534316033578], [-75.16045884503355, 39.995286151429184], [-75.16061238107615, 39.99523024616773], [-75.16092135898762, 39.99511657598776], [-75.16122978418703, 39.99500191943675], [-75.16153718510476, 39.994885985669384], [-75.16163202672163, 39.99484964644871], [-75.16184356796215, 39.99476851894601], [-75.16214851295865, 39.9946492223867], [-75.16245167076322, 39.994527825031916], [-75.16275345225249, 39.9944040577435], [-75.16305295047066, 39.9942776496103], [-75.163350493459, 39.994148322421], [-75.16364550628586, 39.99401579203144], [-75.16375019463729, 39.99396740746016], [-75.16393856707938, 39.99388065714653], [-75.16423074379837, 39.993744342918106], [-75.16452209682625, 39.993606924596605], [-75.16481268231108, 39.99346846562296], [-75.16510262738187, 39.99332901121388], [-75.16539161774134, 39.99318860115002], [-75.16568007898715, 39.99304731800311], [-75.16596791696877, 39.99290520380751], [-75.16625523475753, 39.99276232035509], [-75.1665418847763, 39.99261869766585], [-75.16682790638126, 39.99247440961277], [-75.1671136796878, 39.99232950259677], [-75.16739917355237, 39.99218405610931], [-75.16768419613064, 39.99203809376805], [-75.1679687264333, 39.99189167457132], [-75.16825303046308, 39.99174485766576], [-75.16843898729299, 39.99164851587217], [-75.16853740086704, 39.99159771000278], [-75.1688207535072, 39.991450246846625], [-75.1691045372262, 39.99130256565563], [-75.1693872372827, 39.99115510089788], [-75.1707843728449, 39.99133578500331], [-75.17019883139814, 39.99163851941514], [-75.17007999572749, 39.99169884638352], [-75.17002253696099, 39.992006980909686], [-75.16984245201542, 39.99275533866876], [-75.16973556515883, 39.99327294867794], [-75.16963738497498, 39.99368026305779], [-75.16952159443004, 39.99424075112162], [-75.1711160935064, 39.994445457176994], [-75.17099820193717, 39.99496979116941], [-75.17090336988619, 39.99540940915178], [-75.1724908006024, 39.995620937451456], [-75.17408186118556, 39.995823423914], [-75.1740384672259, 39.99602451559965], [-75.173949400465, 39.996433541437796], [-75.1738467884602, 39.9969125493937], [-75.17376905847696, 39.99726228886767], [-75.1736925769281, 39.99761763719093], [-75.17360205393814, 39.998036371890905], [-75.17328363960958, 39.99951770076661], [-75.17295750713009, 40.00103313744321], [-75.17238977162123, 40.000961346000494], [-75.17191211309034, 40.00088428639906], [-75.17134887345915, 40.000821883769845], [-75.17077113829977, 40.000751540915886], [-75.17063152402457, 40.00073802343627], [-75.17030268419701, 40.00069125908698], [-75.16975566662346, 40.000623150195075], [-75.1692016493103, 40.000547229001015], [-75.16872495187236, 40.000486773369175], [-75.16817950427762, 40.00041026681867], [-75.16761132687105, 40.000343809820485], [-75.16737616867391, 40.00031121706132], [-75.16713533996705, 40.000283623001], [-75.16656379910866, 40.00020077043193], [-75.16652846584367, 40.000403778368266], [-75.1664096657493, 40.00093443216074], [-75.16623794654255, 40.00168507129088], [-75.16609052902518, 40.00243612386425], [-75.16589661091966, 40.003270433008296], [-75.16428653681054, 40.00307313876195]]]}}, {"id": "4440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17630108312402, 39.99992258776815], [-75.17592533856603, 39.99987022969339], [-75.17551452603499, 39.99980728632103], [-75.17529339938785, 39.99977849249369], [-75.1748683905341, 39.99971241271599], [-75.17462275500036, 39.99969188238585], [-75.17431353173781, 39.99965438956214], [-75.17413721987295, 39.99963091214326], [-75.17383129442936, 39.999588710336866], [-75.17365940901269, 39.999570697039815], [-75.17328363960958, 39.99951770076661], [-75.17360205393814, 39.998036371890905], [-75.1736925769281, 39.99761763719093], [-75.17376905847696, 39.99726228886767], [-75.1738467884602, 39.9969125493937], [-75.173949400465, 39.996433541437796], [-75.1740384672259, 39.99602451559965], [-75.17454748031477, 39.99608723898832], [-75.17557127214151, 39.9962194694204], [-75.17565293877416, 39.996202787880286], [-75.17706269651143, 39.99637357649088], [-75.17713354646214, 39.996021750104205], [-75.1772181797496, 39.99565034009198], [-75.17730329983524, 39.99524011547214], [-75.17762739068323, 39.9937463844015], [-75.17818778459817, 39.99381253198284], [-75.17865174340511, 39.99387175652586], [-75.17924802630033, 39.99396489071622], [-75.17984491495443, 39.994033394503084], [-75.18031371940255, 39.99409936300979], [-75.18089021757832, 39.99416854551146], [-75.18143282941065, 39.99424567778614], [-75.18190307494586, 39.994297651369116], [-75.18246403080408, 39.99436655835697], [-75.18278097572606, 39.992882286376116], [-75.18285160219146, 39.992559874632335], [-75.18287263140702, 39.99249945472539], [-75.18294730872427, 39.992132675019576], [-75.1830327008547, 39.991716851483034], [-75.18310199841407, 39.991387944261916], [-75.18470028526923, 39.99158911954114], [-75.1855994217512, 39.991700477966795], [-75.1858101578719, 39.992076620483545], [-75.18614935442002, 39.992663518096165], [-75.19493374887762, 39.99408810699247], [-75.19391207372766, 39.99533311331511], [-75.19387315409962, 39.99538054058539], [-75.19248952170433, 39.997189339779744], [-75.19209975304122, 39.99825612471282], [-75.19173829317083, 39.9995496686985], [-75.19051987452018, 39.99964280358881], [-75.18957783196146, 39.999896811291215], [-75.18881572478557, 40.000205526644876], [-75.18856107316485, 40.00025622816419], [-75.18844854279348, 40.00027300690382], [-75.1882887944045, 40.000274281499806], [-75.18811364941526, 40.00027148930787], [-75.18774342180795, 40.000254142455965], [-75.18751204453845, 40.000250794308116], [-75.1873415558144, 40.000261523586055], [-75.18719648096246, 40.000287353234], [-75.18695021727696, 40.00036542639317], [-75.18684530319169, 40.00041862298224], [-75.18670843089362, 40.00051263605986], [-75.18658483537178, 40.00059526388212], [-75.1863976069381, 40.00073642456139], [-75.18601240691117, 40.0010530245405], [-75.18591254797424, 40.00113254716044], [-75.18580239335816, 40.001234552348855], [-75.17788703847265, 40.000121568957525], [-75.17630108312402, 39.99992258776815]]]}}, {"id": "4460", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15495008064467, 39.99235406881351], [-75.1552710646978, 39.990854301803694], [-75.1554998987755, 39.989794409414735], [-75.15559310602195, 39.98937048713281], [-75.15593589746767, 39.987878554987844], [-75.15627637149069, 39.986284634879105], [-75.1566139097415, 39.984700031799335], [-75.15691577823603, 39.98322097007837], [-75.15725547387726, 39.98169482104445], [-75.15889700821441, 39.981915040873034], [-75.16047074927715, 39.98212965095867], [-75.16014671826717, 39.983628898433636], [-75.16005187512609, 39.98407025927032], [-75.15995561764252, 39.984505307145], [-75.15981211803054, 39.985149374337254], [-75.1613833728726, 39.98534049571191], [-75.16295124718621, 39.98554373064669], [-75.16361511904181, 39.98563622364805], [-75.16374843716792, 39.985658196097646], [-75.1645183402784, 39.98576060376892], [-75.16531767459625, 39.985862954522055], [-75.16609883186936, 39.985967163689345], [-75.16576344044917, 39.987515001890294], [-75.16497721886617, 39.98742226112422], [-75.16418508630503, 39.98731207775422], [-75.1638426170767, 39.988907785078474], [-75.16350180899792, 39.990402590136924], [-75.16318388419658, 39.99189165982134], [-75.16294179904934, 39.993044584418065], [-75.16285018130908, 39.993481241024035], [-75.16320875554426, 39.993324243819174], [-75.16375019463729, 39.99396740746016], [-75.16364550628586, 39.99401579203144], [-75.163350493459, 39.994148322421], [-75.16305295047066, 39.9942776496103], [-75.16275345225249, 39.9944040577435], [-75.16245167076322, 39.994527825031916], [-75.16214851295865, 39.9946492223867], [-75.16184356796215, 39.99476851894601], [-75.16163202672163, 39.99484964644871], [-75.16153718510476, 39.994885985669384], [-75.16122978418703, 39.99500191943675], [-75.16092135898762, 39.99511657598776], [-75.16061238107615, 39.99523024616773], [-75.16045884503355, 39.995286151429184], [-75.16030227819603, 39.99534316033578], [-75.15999242176541, 39.99545566658435], [-75.15968224437353, 39.99556799088048], [-75.15937214283764, 39.99568041788825], [-75.15910396550437, 39.995787685077396], [-75.1587530025543, 39.99590668642272], [-75.1584443762612, 39.99602107787734], [-75.15813665290185, 39.99613667645335], [-75.1578301887574, 39.9962537542018], [-75.15752064048989, 39.99636628164496], [-75.1572111605581, 39.99647867917237], [-75.15690160774868, 39.99659096341692], [-75.15670451151196, 39.996662382790745], [-75.15659199535231, 39.99670315450057], [-75.15628233683134, 39.996815268044415], [-75.1559726395891, 39.996927324938724], [-75.15566291708737, 39.997039340804676], [-75.1553531803092, 39.99715133481174], [-75.15504344137354, 39.99726332705614], [-75.15473371019556, 39.99737533398034], [-75.15442400020167, 39.99748737210634], [-75.15411432116903, 39.9975994614778], [-75.15378676915165, 39.997718116984636], [-75.15398545407648, 39.99678309188484], [-75.15414268878145, 39.99599273008329], [-75.15425395767012, 39.99552675657377], [-75.15431937889399, 39.99522312512964], [-75.15439262996195, 39.99487228977799], [-75.15458888487491, 39.99393956602994], [-75.15463860311415, 39.993720562504734], [-75.1546557583441, 39.99364499818574], [-75.154710323233, 39.993406694494226], [-75.15495008064467, 39.99235406881351]]]}}, {"id": "4470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17565293877416, 39.996202787880286], [-75.17557127214151, 39.9962194694204], [-75.17454748031477, 39.99608723898832], [-75.1740384672259, 39.99602451559965], [-75.17408186118556, 39.995823423914], [-75.1724908006024, 39.995620937451456], [-75.17090336988619, 39.99540940915178], [-75.17099820193717, 39.99496979116941], [-75.1711160935064, 39.994445457176994], [-75.16952159443004, 39.99424075112162], [-75.16963738497498, 39.99368026305779], [-75.16973556515883, 39.99327294867794], [-75.16984245201542, 39.99275533866876], [-75.17002253696099, 39.992006980909686], [-75.17007999572749, 39.99169884638352], [-75.17019883139814, 39.99163851941514], [-75.1707843728449, 39.99133578500331], [-75.1693872372827, 39.99115510089788], [-75.16967144280557, 39.991006703428134], [-75.16995458851298, 39.990858634656625], [-75.17023810612953, 39.990710548344374], [-75.17052159274488, 39.99056250481203], [-75.17080490447788, 39.99041452965903], [-75.17108835770135, 39.99026671288831], [-75.17137200492108, 39.99011909081782], [-75.17165545820235, 39.989971699782394], [-75.17174544033298, 39.98992532586602], [-75.1719398834796, 39.98982465246886], [-75.17222419612551, 39.98967794703608], [-75.1722929682314, 39.9896425977823], [-75.17250881164603, 39.98953165408423], [-75.17279376775308, 39.989385829419646], [-75.17307901995844, 39.989240410772055], [-75.17336424298125, 39.98909495654882], [-75.17364939329444, 39.98894940991035], [-75.17397753918489, 39.98879442269209], [-75.17421944851988, 39.98865801715374], [-75.17431169727813, 39.988610003672555], [-75.17450433969368, 39.98851216261944], [-75.17478913219263, 39.988366189861445], [-75.175073819062, 39.988220096922404], [-75.17535839004088, 39.98807387636496], [-75.17564284416281, 39.98792752276212], [-75.17592717237113, 39.987781027802576], [-75.17621136888152, 39.9876343895556], [-75.17649542346686, 39.98748759968373], [-75.17678267943901, 39.987338918507284], [-75.17706309246293, 39.987193543122466], [-75.1773466921687, 39.98704626259055], [-75.17763012508465, 39.986898806454555], [-75.17791338439226, 39.9867511691569], [-75.17819595734188, 39.986602755354134], [-75.17847269556879, 39.98644779135077], [-75.17874350295386, 39.98628671112583], [-75.17900988020565, 39.986121580118635], [-75.17927288452242, 39.985953153660745], [-75.17952311080867, 39.98578912390087], [-75.1802587566406, 39.98634657855011], [-75.1808049885002, 39.98679189595898], [-75.18239436538755, 39.98804340832484], [-75.18272022858042, 39.98833197667123], [-75.1831239638344, 39.98873142579218], [-75.18360132913213, 39.989160865516276], [-75.18370039313666, 39.98926152661691], [-75.18440501709573, 39.98993084231582], [-75.18492772040672, 39.99059520320089], [-75.18514705947834, 39.99089240645013], [-75.18546053033423, 39.99138595734597], [-75.1855994217512, 39.991700477966795], [-75.18470028526923, 39.99158911954114], [-75.18310199841407, 39.991387944261916], [-75.1830327008547, 39.991716851483034], [-75.18294730872427, 39.992132675019576], [-75.18287263140702, 39.99249945472539], [-75.18285160219146, 39.992559874632335], [-75.18278097572606, 39.992882286376116], [-75.18246403080408, 39.99436655835697], [-75.18190307494586, 39.994297651369116], [-75.18143282941065, 39.99424567778614], [-75.18089021757832, 39.99416854551146], [-75.18031371940255, 39.99409936300979], [-75.17984491495443, 39.994033394503084], [-75.17924802630033, 39.99396489071622], [-75.17865174340511, 39.99387175652586], [-75.17818778459817, 39.99381253198284], [-75.17762739068323, 39.9937463844015], [-75.17730329983524, 39.99524011547214], [-75.1772181797496, 39.99565034009198], [-75.17713354646214, 39.996021750104205], [-75.17706269651143, 39.99637357649088], [-75.17565293877416, 39.996202787880286]]]}}, {"id": "4530", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17608954052868, 39.98680021919029], [-75.17560938223376, 39.98627515162315], [-75.17521745144552, 39.985853437673235], [-75.175271358931, 39.98559829647787], [-75.17469432426374, 39.98550764947924], [-75.17479584065936, 39.98506810427846], [-75.17502711544529, 39.98401535462864], [-75.17531348430072, 39.98271320068983], [-75.17534449995452, 39.98251865708191], [-75.17591089978647, 39.98258244424712], [-75.17636790341315, 39.982651725063285], [-75.17693358704699, 39.982714092705194], [-75.17747775893855, 39.982784443953356], [-75.17797763943564, 39.98285408831894], [-75.17853597130828, 39.98292088740108], [-75.17905745190416, 39.9829913317469], [-75.17946574707625, 39.983050154652986], [-75.17995232556449, 39.98310918663231], [-75.1805289312639, 39.98318166056218], [-75.18096324902844, 39.98323956501493], [-75.18148182666485, 39.98330311440841], [-75.18157981012648, 39.983314721911796], [-75.18190794857104, 39.98178858800848], [-75.18202072179687, 39.98129725249097], [-75.18210853343237, 39.98089485570349], [-75.18221677147056, 39.9803749484491], [-75.18280668669908, 39.980443549243105], [-75.18328108278052, 39.98050734151104], [-75.1838393770739, 39.98058623736356], [-75.18442352402792, 39.98066996028547], [-75.18549861693499, 39.980805936179266], [-75.18632324019792, 39.98091621540035], [-75.18672279527853, 39.98096108151576], [-75.1864939906684, 39.98110939556068], [-75.18623250701748, 39.981279170993545], [-75.18597122600798, 39.981449127885256], [-75.18571017026257, 39.98161928746587], [-75.1854493693571, 39.98178967292306], [-75.1851888435736, 39.981960305435045], [-75.18492861790877, 39.9821312053846], [-75.18487731999933, 39.98216500358204], [-75.18466874549368, 39.982302423516984], [-75.1844097148958, 39.98247438972587], [-75.18415158027894, 39.9826471583875], [-75.18389421148204, 39.982820609466366], [-75.1836374690507, 39.982994620915996], [-75.18338122162059, 39.983169073572626], [-75.18312532973815, 39.98334384538718], [-75.1829298584804, 39.98347762517703], [-75.18286966544878, 39.98351881997285], [-75.18261408699321, 39.98369387432563], [-75.18235846421321, 39.98386888840281], [-75.18210265999751, 39.98404374020303], [-75.18184654284833, 39.98421831415624], [-75.1815899949032, 39.98439250580858], [-75.18130707172978, 39.98458472238066], [-75.18107717366271, 39.98474113960218], [-75.18082085622366, 39.98491554111198], [-75.18056437649658, 39.98508980059018], [-75.18030756813549, 39.985263763842426], [-75.18005025987519, 39.98543728286983], [-75.17979228179169, 39.985610205196984], [-75.17952311080867, 39.98578912390087], [-75.17927288452242, 39.985953153660745], [-75.17900988020565, 39.986121580118635], [-75.17874350295386, 39.98628671112583], [-75.17847269556879, 39.98644779135077], [-75.17819595734188, 39.986602755354134], [-75.17791338439226, 39.9867511691569], [-75.17763012508465, 39.986898806454555], [-75.1773466921687, 39.98704626259055], [-75.17706309246293, 39.987193543122466], [-75.17678267943901, 39.987338918507284], [-75.17541102470533, 39.9871570358007], [-75.17608954052868, 39.98680021919029]]]}}, {"id": "4560", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17534449995452, 39.98251865708191], [-75.17531348430072, 39.98271320068983], [-75.17499251879063, 39.98246110362299], [-75.1739088664198, 39.981669054259875], [-75.17397233359998, 39.9813635885929], [-75.17409937627401, 39.98077776542791], [-75.17420179283666, 39.98027882369307], [-75.17429160032444, 39.9798387647821], [-75.17439470402259, 39.97938126690058], [-75.17280097114764, 39.97916176707219], [-75.17281882273372, 39.979073762378334], [-75.17287129178672, 39.979052105398196], [-75.1729312809766, 39.979026468103854], [-75.17296297818956, 39.978985721589495], [-75.17299175908344, 39.97883147385479], [-75.17300344818571, 39.978768825817184], [-75.17299986141104, 39.97874957982806], [-75.1729945192562, 39.97872091307391], [-75.1729601967386, 39.97869318582734], [-75.17290251279427, 39.97867918888155], [-75.17296812708716, 39.97840817799981], [-75.17312775354583, 39.977751700238606], [-75.1734059516144, 39.977784690664876], [-75.17385580424572, 39.977838020656726], [-75.17470388655568, 39.97793852162858], [-75.17630085865154, 39.97814009841556], [-75.17710442702693, 39.97825301454284], [-75.17788888439762, 39.97835599818536], [-75.1786945223034, 39.97846900801477], [-75.17948283131925, 39.97855760662868], [-75.17986177265558, 39.978607358478946], [-75.18018551683247, 39.97865007774576], [-75.18031747658478, 39.97866654240448], [-75.18090701836356, 39.97874058888288], [-75.1814601891601, 39.9788146300702], [-75.18192679331867, 39.9788796738151], [-75.1825269998387, 39.978957744698484], [-75.18311587750986, 39.97903082691258], [-75.1835823634162, 39.97908348404279], [-75.18413796951701, 39.979160412047385], [-75.18470025398888, 39.979225395072916], [-75.18572863466908, 39.97936208930493], [-75.18731861787698, 39.97958197540658], [-75.18859028389431, 39.979755160969134], [-75.18832804244711, 39.97992425638832], [-75.18806581098923, 39.980093362271866], [-75.18780361458623, 39.98026249719947], [-75.18754147692974, 39.98043168512674], [-75.18727942181306, 39.98060094730851], [-75.18701747299545, 39.9807703059002], [-75.18672279527853, 39.98096108151576], [-75.18632324019792, 39.98091621540035], [-75.18549861693499, 39.980805936179266], [-75.18442352402792, 39.98066996028547], [-75.1838393770739, 39.98058623736356], [-75.18328108278052, 39.98050734151104], [-75.18280668669908, 39.980443549243105], [-75.18221677147056, 39.9803749484491], [-75.18210853343237, 39.98089485570349], [-75.18202072179687, 39.98129725249097], [-75.18190794857104, 39.98178858800848], [-75.18157981012648, 39.983314721911796], [-75.18148182666485, 39.98330311440841], [-75.18096324902844, 39.98323956501493], [-75.1805289312639, 39.98318166056218], [-75.17995232556449, 39.98310918663231], [-75.17946574707625, 39.983050154652986], [-75.17905745190416, 39.9829913317469], [-75.17853597130828, 39.98292088740108], [-75.17797763943564, 39.98285408831894], [-75.17747775893855, 39.982784443953356], [-75.17693358704699, 39.982714092705194], [-75.17636790341315, 39.982651725063285], [-75.17591089978647, 39.98258244424712], [-75.17534449995452, 39.98251865708191]]]}}, {"id": "4570", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15889700821441, 39.981915040873034], [-75.15725547387726, 39.98169482104445], [-75.15758279731992, 39.98022419451091], [-75.15791562606728, 39.97870886332697], [-75.15823962395879, 39.977281450598056], [-75.15822792908624, 39.97721710881816], [-75.15852699848782, 39.97585154506873], [-75.15878329590785, 39.97448373998994], [-75.1590577036878, 39.97320612890056], [-75.15923764108679, 39.97238526979513], [-75.15944196657915, 39.971468323386574], [-75.15970329166524, 39.97020311206611], [-75.15985341632611, 39.97022162902299], [-75.16056071990103, 39.970320887387665], [-75.16140453844403, 39.970429631873635], [-75.16298126830455, 39.97062420171791], [-75.16455516178287, 39.97081794335175], [-75.16531133153285, 39.97091144438554], [-75.16561818923037, 39.97119200249721], [-75.16577880145555, 39.97134049222068], [-75.16597289357621, 39.97160889671574], [-75.1662721085587, 39.972037642881524], [-75.16653967502313, 39.97238159742861], [-75.16722014897815, 39.97339870716462], [-75.16773195706557, 39.97432080820269], [-75.16805503233596, 39.97487099232693], [-75.1681453247881, 39.97503502447598], [-75.1682634491673, 39.97526019664399], [-75.16914490341505, 39.97516856344814], [-75.1704017109951, 39.97503938227979], [-75.17209233641867, 39.974855903415154], [-75.17198110519435, 39.97539808423971], [-75.17197112375173, 39.97546380426331], [-75.17191246289653, 39.97577235568639], [-75.17181450773097, 39.976165127688525], [-75.17173555442703, 39.97650674804233], [-75.17172809531297, 39.97653312881369], [-75.17167137307844, 39.9768393342176], [-75.17159569289858, 39.97718049013689], [-75.17152830953934, 39.97753886429667], [-75.17143377989801, 39.97791757072109], [-75.17135448846633, 39.97825182831359], [-75.17130780300391, 39.97850613459061], [-75.17129432139696, 39.9785792462262], [-75.17121429252416, 39.97895355524523], [-75.1706003791456, 39.9788799426667], [-75.17028853504735, 39.97884634054967], [-75.1699744619065, 39.978280100894736], [-75.16977694651204, 39.97795828070379], [-75.16967792544243, 39.97839775201961], [-75.16960310980627, 39.97875342002229], [-75.16773197320441, 39.97850834128129], [-75.1676280204409, 39.97898637261039], [-75.1675304717212, 39.97940596581951], [-75.16742031243012, 39.97992619061252], [-75.16663553032588, 39.97981529385303], [-75.16585070373783, 39.979715263217045], [-75.16551143276519, 39.981245061241], [-75.16472468800637, 39.98114600900777], [-75.16393580353895, 39.98103913365748], [-75.16315665839294, 39.980942851162624], [-75.16236008766865, 39.98083813786572], [-75.16205428012076, 39.98233074924151], [-75.16125560907027, 39.98222307186988], [-75.16047074927715, 39.98212965095867], [-75.15889700821441, 39.981915040873034]]]}}, {"id": "5020", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12897541590053, 39.990641759039676], [-75.13089889813841, 39.99089105165924], [-75.13143812359161, 39.99096152315822], [-75.13196035665526, 39.9910311963508], [-75.13242053001268, 39.99108443358905], [-75.13289367278115, 39.99114508728434], [-75.13334828398281, 39.991202409839445], [-75.13380448437566, 39.99126085613806], [-75.13433386723568, 39.99133132472353], [-75.13486914231545, 39.99140896839514], [-75.13546637554853, 39.99148048381726], [-75.13615995646202, 39.99156601616205], [-75.13734853427543, 39.9917304244261], [-75.13784387092095, 39.99178927860157], [-75.13835217472275, 39.99185285779908], [-75.13926139018056, 39.99197058202547], [-75.13970899094424, 39.99202958030164], [-75.14019800056143, 39.992087928038465], [-75.14086373856927, 39.992175219664745], [-75.14151207718533, 39.99225682117944], [-75.14217423972777, 39.99234441221609], [-75.14299899185374, 39.99245086645243], [-75.14383047084318, 39.99255141798455], [-75.1444670159411, 39.99263396927229], [-75.14511047460131, 39.99271674777694], [-75.14560313372758, 39.99278468699399], [-75.14608959689218, 39.99284960025018], [-75.14598324178084, 39.99339005147819], [-75.14590955203708, 39.99371661970736], [-75.14583808553304, 39.994038562044096], [-75.14574969569053, 39.99444058423645], [-75.14560509758087, 39.99510328931318], [-75.14542741148071, 39.99593018162321], [-75.14531276689256, 39.99639505500942], [-75.14523738035037, 39.9967583568742], [-75.14509795563065, 39.997426025465145], [-75.14476701066317, 39.998916789999626], [-75.14446339758591, 40.000328858228784], [-75.14417327834188, 40.000431689331485], [-75.14334643394318, 40.00074401544597], [-75.14379809293565, 40.00145585389514], [-75.14406451756503, 40.00191290723567], [-75.14412366322766, 40.00215922659642], [-75.1440384135838, 40.00223426474612], [-75.14374365394839, 40.00358293398834], [-75.14350127331724, 40.00355156369469], [-75.14329364986786, 40.00352469250323], [-75.1431399324757, 40.00428493094099], [-75.1433015921368, 40.00472237755151], [-75.14343826047002, 40.005072838644516], [-75.14309801736401, 40.00656380658327], [-75.14306343435318, 40.006722226308], [-75.14277427561711, 40.0080455913732], [-75.14277295786349, 40.00815499045495], [-75.14276347100015, 40.00826978854965], [-75.14243880955175, 40.00974402913456], [-75.14211264092272, 40.01123807168278], [-75.14178660755206, 40.01270991995661], [-75.14232926693204, 40.01279113891428], [-75.14279528639928, 40.012858788197796], [-75.1433203153046, 40.01292742387583], [-75.14647680294615, 40.013343114491526], [-75.14722189137788, 40.013432961843364], [-75.14722884497878, 40.01408140210885], [-75.14791438685396, 40.01392740449221], [-75.14795501083744, 40.0139786146205], [-75.1478365064141, 40.01450755380314], [-75.14983165309977, 40.01476596338327], [-75.15003962572906, 40.01481970269212], [-75.14993222382938, 40.01532671020396], [-75.14983979568106, 40.01567315281484], [-75.14977041330002, 40.01602280409584], [-75.14972718930441, 40.016216009188604], [-75.14958686700786, 40.01693362198721], [-75.1493475064601, 40.017958839322176], [-75.14908973201165, 40.0181106529181], [-75.1484680681646, 40.01840767197671], [-75.14714447643219, 40.01901145008065], [-75.14705879583687, 40.01909484972519], [-75.14638257068283, 40.01941384755003], [-75.14613788229155, 40.01938413204805], [-75.1453628611309, 40.019380817093726], [-75.14468710862543, 40.01941183457217], [-75.14409578705738, 40.019486694076015], [-75.14363335649988, 40.01956889301005], [-75.14326097466613, 40.01965955683399], [-75.1428848436295, 40.01977265716096], [-75.14246779103715, 40.01992131567765], [-75.14208211948895, 40.020076769123925], [-75.14126176526882, 40.020457827767785], [-75.13989326600749, 40.021143092921015], [-75.13962410577875, 40.02125554449826], [-75.13878989832307, 40.02167194894793], [-75.13680074130902, 40.02266481390887], [-75.13606727037968, 40.022993869695384], [-75.13568333923226, 40.02295388314234], [-75.13517364017464, 40.02288937907387], [-75.13351806873054, 40.02269961384838], [-75.13266657267638, 40.02260530897158], [-75.13165534349513, 40.022466545626095], [-75.13067747059611, 40.0223264212425], [-75.1288388007593, 40.02209552698992], [-75.12832997980297, 40.02203750959046], [-75.12799561695972, 40.021990003261664], [-75.1275883473653, 40.02193652409814], [-75.12766722191142, 40.021678075942006], [-75.12772254870809, 40.02143541478058], [-75.12782553628675, 40.02100974360595], [-75.12793752006728, 40.02058217569274], [-75.12805743325659, 40.02016776351229], [-75.12817272187972, 40.019745126505015], [-75.12828942424522, 40.01931224639612], [-75.12841230851205, 40.01888818420382], [-75.12717014834826, 40.0187202445289], [-75.12728008257253, 40.01855118772663], [-75.12773597041543, 40.01780744067364], [-75.12816782747261, 40.01727601049683], [-75.12958420585664, 40.01596204506945], [-75.12950279799507, 40.0158893945626], [-75.1295060820777, 40.01580432267141], [-75.12954449782806, 40.015628823804676], [-75.12969626827335, 40.015025138211094], [-75.12985744154966, 40.01458954235703], [-75.12991212376365, 40.01438165693674], [-75.12995568069938, 40.01421690737463], [-75.13032098038171, 40.012520430993625], [-75.13039457043838, 40.0122046367008], [-75.13058658979985, 40.01132621444333], [-75.13076933610816, 40.010429891484755], [-75.13122229503595, 40.00838998153134], [-75.13128895844574, 40.0082654424629], [-75.13157556350811, 40.006918297371676], [-75.13159329869447, 40.006777230208], [-75.13195017894888, 40.0051571594535], [-75.13165438461807, 40.00516218906765], [-75.1313120905648, 40.005165243621754], [-75.13096967892228, 40.0051647840814], [-75.13062734388893, 40.00516042473138], [-75.13028526365714, 40.00515189122062], [-75.12994327233797, 40.005141571084394], [-75.12960127164347, 40.005130493753214], [-75.1292592889243, 40.00511855803528], [-75.12891735401352, 40.005105659191635], [-75.12857548972254, 40.00509169232322], [-75.12823372347772, 40.00507655443872], [-75.12787293070507, 40.00505914287225], [-75.12755058678738, 40.005042349869555], [-75.12720920671373, 40.00502344244802], [-75.12686775392743, 40.005004480086335], [-75.1265262525044, 40.00498535521095], [-75.12618475093373, 40.004965874307906], [-75.12584329110216, 40.004945832900546], [-75.12550191799478, 40.00492503739572], [-75.12516067340198, 40.00490328601852], [-75.12481960245576, 40.004880381575894], [-75.12447874922599, 40.0048561241479], [-75.12413815881776, 40.004830317442874], [-75.12394932729268, 40.0048150263638], [-75.12416377417915, 40.00383050497931], [-75.12441189333515, 40.002635747370185], [-75.1247327042775, 40.001125212840236], [-75.12482584559972, 40.00073781277301], [-75.12495304812299, 40.000118295958615], [-75.1250593976361, 39.99962937005506], [-75.1240010392231, 39.99949471531793], [-75.12286983433349, 39.999348225421684], [-75.12189645061733, 39.99922197325878], [-75.12141485963465, 39.99916050071101], [-75.12093406713585, 39.99909845694048], [-75.12043816082301, 39.99903124892896], [-75.11995841616955, 39.99897607104749], [-75.11948064078999, 39.99891846474961], [-75.11899483260045, 39.99885363710453], [-75.1181427263644, 39.99874006892576], [-75.11760779479803, 39.998672192592046], [-75.11705540656078, 39.99860245187495], [-75.11713718954385, 39.998204954618366], [-75.11720552832361, 39.99784824220488], [-75.11726460987974, 39.99759085143173], [-75.117284481552, 39.99749552058664], [-75.11738376209497, 39.997007889103365], [-75.11687527895985, 39.99694403320292], [-75.11641424499777, 39.99688234038955], [-75.11594728557785, 39.996823352482735], [-75.11544873273199, 39.996754717356865], [-75.11420376026825, 39.99660020163007], [-75.11378290403151, 39.99654566844975], [-75.11349353916128, 39.996509398474814], [-75.11335627413635, 39.99651837529572], [-75.11399780861547, 39.99614675119862], [-75.11443934320606, 39.99590407882544], [-75.11488815880926, 39.995651207425055], [-75.11577971940605, 39.99516863261082], [-75.11804388596643, 39.99392739215795], [-75.11827306308207, 39.99380494945997], [-75.11969525744287, 39.9930176547012], [-75.12031000021946, 39.99267372653925], [-75.12155268191938, 39.99200126868043], [-75.1225598379027, 39.99142904589025], [-75.12368779210668, 39.9908370053132], [-75.12443263724062, 39.99041437725906], [-75.12467941648082, 39.990280061064965], [-75.1254917782044, 39.98983790470489], [-75.12583337764181, 39.99015080201797], [-75.12594819181096, 39.990231008067155], [-75.12703151939232, 39.99038716308235], [-75.12897541590053, 39.990641759039676]]]}}, {"id": "5160", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1392220181052, 39.96254041128918], [-75.13929679599369, 39.96255801053774], [-75.13960221591503, 39.9626303517114], [-75.13978578774208, 39.96267383177339], [-75.14006138678764, 39.96273790213371], [-75.13975490177026, 39.963692321574484], [-75.13993197133192, 39.963777785249036], [-75.1407064227292, 39.964139708528414], [-75.14163139510946, 39.96457373788679], [-75.14252966634245, 39.9649864598312], [-75.14337752362562, 39.96538087912413], [-75.14400254301472, 39.96567103285405], [-75.14458633097023, 39.9659454790478], [-75.14490607326032, 39.96609660893821], [-75.14575782885368, 39.96649392862541], [-75.1458913161705, 39.96654816429047], [-75.14650478063565, 39.966842825167525], [-75.14714784176866, 39.96712784996928], [-75.14791049722622, 39.96732631826535], [-75.14869023776352, 39.9675176776505], [-75.14955850264346, 39.967733564369766], [-75.15051564764148, 39.96797237611294], [-75.15097355673184, 39.96807896736265], [-75.15146301021215, 39.96817620675212], [-75.15200070091771, 39.96829918091589], [-75.15301923457218, 39.968550282609826], [-75.1529071228886, 39.96906713671027], [-75.1527835009234, 39.96962440941302], [-75.15269159270923, 39.97005595174743], [-75.15257454601797, 39.970571700083724], [-75.15245012383737, 39.97114516194853], [-75.15218836742413, 39.972319593119735], [-75.15202353133493, 39.97310628406676], [-75.15191669061984, 39.973589833498096], [-75.15161706971416, 39.97496055307036], [-75.15094863392703, 39.97487344024391], [-75.150231571073, 39.97478246830948], [-75.15004094823418, 39.97475828200775], [-75.14955201707166, 39.97469444844773], [-75.14905919608358, 39.97462924336764], [-75.14875280338978, 39.97605319690573], [-75.14844892599797, 39.977446981252434], [-75.14811166218786, 39.978998965177915], [-75.14732538418636, 39.9788969009252], [-75.14658498086375, 39.978801493421564], [-75.14621504881288, 39.978756261424145], [-75.14579264210776, 39.97870283199536], [-75.14501101215193, 39.97859859204255], [-75.14464699302899, 39.978549148043435], [-75.14405950698142, 39.97847137322641], [-75.14375630225537, 39.97843254911381], [-75.14314046866812, 39.97836739419738], [-75.14303334564039, 39.97900298334407], [-75.14286771936777, 39.97985261552813], [-75.14210829574333, 39.97976240195687], [-75.14193713418241, 39.979740985557754], [-75.1415112522445, 39.979681680500754], [-75.1410218897316, 39.979618813283], [-75.1408216551943, 39.98052898711954], [-75.1406869260253, 39.981123617196054], [-75.14037075117886, 39.982602963060174], [-75.13986861741796, 39.98253743129194], [-75.13936497646219, 39.98247435434834], [-75.13891806064221, 39.98241335056541], [-75.13881084329309, 39.98240067192492], [-75.13813899339736, 39.98231364961067], [-75.13744398243685, 39.982224063368434], [-75.1368496275253, 39.98214824296992], [-75.13631469225547, 39.982077524588775], [-75.13578148349205, 39.98201048225343], [-75.13487065991411, 39.981888470214855], [-75.13392340603801, 39.981770568866075], [-75.13341080943681, 39.981699372023634], [-75.13288158399425, 39.98163265288409], [-75.13288008300748, 39.98154686361165], [-75.13319065263426, 39.98013574784717], [-75.13301724024231, 39.980120591075384], [-75.13265334485587, 39.98033873970294], [-75.13183190731813, 39.980765502527944], [-75.13136655491007, 39.981010901517074], [-75.13093007933422, 39.98123462399555], [-75.13033830584416, 39.98155001773191], [-75.12973559600937, 39.981861175408646], [-75.12933523561645, 39.982070909171554], [-75.12914472245183, 39.98217056132641], [-75.12898610754681, 39.98225344555778], [-75.12855382281006, 39.982481026760404], [-75.12797870050113, 39.98278676164064], [-75.12739883724821, 39.98308170284578], [-75.12682245317455, 39.983386960925024], [-75.12622812377951, 39.98369641651944], [-75.1250655663543, 39.98430498726714], [-75.12465597526973, 39.98452791773668], [-75.12392849211, 39.98490340306844], [-75.1215107497833, 39.98616688936588], [-75.1212126555554, 39.98582197636218], [-75.12090664203696, 39.985481406064345], [-75.12025206106696, 39.984756703332486], [-75.11969085296037, 39.98411339915456], [-75.11919036295231, 39.983550142775705], [-75.1191358701804, 39.98348600088939], [-75.11852341721955, 39.98282667399838], [-75.11771344779177, 39.981893242481284], [-75.11735514148285, 39.981482857133244], [-75.11769734499407, 39.98090581875275], [-75.11832452806911, 39.97951745690433], [-75.11861138716736, 39.978880482777285], [-75.1197642927471, 39.97637035957075], [-75.11997095243832, 39.97591243490792], [-75.12094594407647, 39.975361061880854], [-75.12104554597718, 39.97527173259632], [-75.12161763813313, 39.97470846870026], [-75.12202941319707, 39.97431331901911], [-75.12259233629173, 39.97374858009471], [-75.12211704606422, 39.973529658925685], [-75.12176289432448, 39.97335416747199], [-75.12127206701985, 39.973388574123305], [-75.12068321218055, 39.97341756004273], [-75.12040957292677, 39.973387269125716], [-75.1202414439362, 39.97332468438928], [-75.12008687739578, 39.97324372289487], [-75.11961884615357, 39.97295144071109], [-75.12023164280738, 39.972388543878665], [-75.12121029100315, 39.971489560103905], [-75.1199014776589, 39.97062064519618], [-75.11757972389783, 39.9695968758442], [-75.1140318084597, 39.9680322855066], [-75.11441255455537, 39.96786656261048], [-75.11538436299533, 39.967443565655], [-75.11603666268508, 39.96715963307793], [-75.11686352968388, 39.96679970705826], [-75.11811738980097, 39.96625389485373], [-75.11966802450652, 39.965568062352844], [-75.12163174351726, 39.96461663435518], [-75.12402565266153, 39.96343911913137], [-75.12777482013738, 39.96152226006703], [-75.12908790808855, 39.96070914120397], [-75.13570254442688, 39.962047993115426], [-75.1362965206531, 39.96245264193541], [-75.13675691661963, 39.96276757101526], [-75.13717083928285, 39.962820848330665], [-75.13808290746044, 39.96293764490021], [-75.13827549450221, 39.96231762501555], [-75.1392220181052, 39.96254041128918]]]}}, {"id": "5170", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13215673288484, 39.99571908852154], [-75.1319487531092, 39.995584771470156], [-75.13151375949263, 39.995312789866986], [-75.13108811546374, 39.995035612799455], [-75.1306287246693, 39.9947099015428], [-75.13016923992892, 39.99438670726852], [-75.12949697864121, 39.993869232807484], [-75.12928045888196, 39.993699377473], [-75.12888944298902, 39.99337210329976], [-75.12847508975587, 39.992960955217434], [-75.12754649303128, 39.992086888554475], [-75.12711132039227, 39.991717809559425], [-75.1268304877983, 39.99140473196538], [-75.12671073514534, 39.991301669390836], [-75.12624403982602, 39.99086840531347], [-75.12619132496967, 39.99081410638479], [-75.1257966876318, 39.99046143190336], [-75.12575053444866, 39.99038664295684], [-75.12581548092545, 39.990321253648226], [-75.12594819181096, 39.990231008067155], [-75.12703151939232, 39.99038716308235], [-75.12897541590053, 39.990641759039676], [-75.13089889813841, 39.99089105165924], [-75.13143812359161, 39.99096152315822], [-75.13196035665526, 39.9910311963508], [-75.13242053001268, 39.99108443358905], [-75.13289367278115, 39.99114508728434], [-75.13334828398281, 39.991202409839445], [-75.13380448437566, 39.99126085613806], [-75.13433386723568, 39.99133132472353], [-75.13486914231545, 39.99140896839514], [-75.13546637554853, 39.99148048381726], [-75.13615995646202, 39.99156601616205], [-75.13734853427543, 39.9917304244261], [-75.13784387092095, 39.99178927860157], [-75.13835217472275, 39.99185285779908], [-75.13926139018056, 39.99197058202547], [-75.13970899094424, 39.99202958030164], [-75.14019800056143, 39.992087928038465], [-75.14086373856927, 39.992175219664745], [-75.14151207718533, 39.99225682117944], [-75.14217423972777, 39.99234441221609], [-75.14299899185374, 39.99245086645243], [-75.14383047084318, 39.99255141798455], [-75.1444670159411, 39.99263396927229], [-75.14511047460131, 39.99271674777694], [-75.14560313372758, 39.99278468699399], [-75.14608959689218, 39.99284960025018], [-75.14598324178084, 39.99339005147819], [-75.14590955203708, 39.99371661970736], [-75.14583808553304, 39.994038562044096], [-75.14574969569053, 39.99444058423645], [-75.14523985717346, 39.99437003326841], [-75.1449422627162, 39.9943335253197], [-75.14475929946508, 39.99431108028383], [-75.14412330779642, 39.994226694654955], [-75.14347679145469, 39.994139667054554], [-75.14183154987668, 39.99393097316631], [-75.14149666955511, 39.99542308912688], [-75.14083763348894, 39.99533644892229], [-75.14019094100959, 39.995252235382324], [-75.13952082967248, 39.99516588896113], [-75.13919971671324, 39.996662558158164], [-75.13869442564875, 39.99659587328851], [-75.13827020804773, 39.99653846065829], [-75.13780878030616, 39.99648020057785], [-75.1373500685577, 39.99642246537034], [-75.13684622551224, 39.99635321660288], [-75.13634700247911, 39.99628984635562], [-75.13551012066759, 39.99618002974883], [-75.13499336970392, 39.996118024840605], [-75.13444492899423, 39.99605094896756], [-75.13389642109973, 39.995968736218344], [-75.13335735075286, 39.995906073736414], [-75.13283321527076, 39.99583834307155], [-75.13236737143946, 39.995777072436475], [-75.13215673288484, 39.99571908852154]]]}}, {"id": "5180", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17312775354583, 39.977751700238606], [-75.17296812708716, 39.97840817799981], [-75.17290251279427, 39.97867918888155], [-75.1729601967386, 39.97869318582734], [-75.1729945192562, 39.97872091307391], [-75.17299986141104, 39.97874957982806], [-75.17300344818571, 39.978768825817184], [-75.17299175908344, 39.97883147385479], [-75.17296297818956, 39.978985721589495], [-75.1729312809766, 39.979026468103854], [-75.17287129178672, 39.979052105398196], [-75.17281882273372, 39.979073762378334], [-75.17280097114764, 39.97916176707219], [-75.17121429252416, 39.97895355524523], [-75.1706003791456, 39.9788799426667], [-75.17028853504735, 39.97884634054967], [-75.1699744619065, 39.978280100894736], [-75.16977694651204, 39.97795828070379], [-75.16967792544243, 39.97839775201961], [-75.16960310980627, 39.97875342002229], [-75.16773197320441, 39.97850834128129], [-75.1676280204409, 39.97898637261039], [-75.1675304717212, 39.97940596581951], [-75.16742031243012, 39.97992619061252], [-75.16663553032588, 39.97981529385303], [-75.16585070373783, 39.979715263217045], [-75.16551143276519, 39.981245061241], [-75.16472468800637, 39.98114600900777], [-75.16393580353895, 39.98103913365748], [-75.16315665839294, 39.980942851162624], [-75.16236008766865, 39.98083813786572], [-75.16205428012076, 39.98233074924151], [-75.16125560907027, 39.98222307186988], [-75.16047074927715, 39.98212965095867], [-75.15889700821441, 39.981915040873034], [-75.15725547387726, 39.98169482104445], [-75.15758279731992, 39.98022419451091], [-75.15791562606728, 39.97870886332697], [-75.15823962395879, 39.977281450598056], [-75.15822792908624, 39.97721710881816], [-75.15852699848782, 39.97585154506873], [-75.15878329590785, 39.97448373998994], [-75.1590577036878, 39.97320612890056], [-75.15923764108679, 39.97238526979513], [-75.15944196657915, 39.971468323386574], [-75.15970329166524, 39.97020311206611], [-75.15985341632611, 39.97022162902299], [-75.16056071990103, 39.970320887387665], [-75.16140453844403, 39.970429631873635], [-75.16298126830455, 39.97062420171791], [-75.16455516178287, 39.97081794335175], [-75.16531133153285, 39.97091144438554], [-75.16561818923037, 39.97119200249721], [-75.16577880145555, 39.97134049222068], [-75.16597289357621, 39.97160889671574], [-75.1662721085587, 39.972037642881524], [-75.16653967502313, 39.97238159742861], [-75.16722014897815, 39.97339870716462], [-75.16773195706557, 39.97432080820269], [-75.16805503233596, 39.97487099232693], [-75.1681453247881, 39.97503502447598], [-75.1682634491673, 39.97526019664399], [-75.16914490341505, 39.97516856344814], [-75.1704017109951, 39.97503938227979], [-75.17209233641867, 39.974855903415154], [-75.17378624577721, 39.97467888698817], [-75.17545671569454, 39.97450466083824], [-75.17593658491718, 39.97445362377925], [-75.17641964846224, 39.97440418538758], [-75.1771235341516, 39.974328234747865], [-75.17785267920566, 39.97424893652467], [-75.17786387562035, 39.97383345443092], [-75.17786294614987, 39.97248103137002], [-75.17753873030072, 39.97243855647388], [-75.17780650810144, 39.97120896950443], [-75.1780566875297, 39.97011372941456], [-75.17860640189194, 39.970181658250176], [-75.17965161686956, 39.970310272091965], [-75.17975488906876, 39.96981497856103], [-75.17977598962271, 39.96969353989304], [-75.17983743980078, 39.96944775366464], [-75.17991460237576, 39.969090943561284], [-75.18006282011629, 39.968416647134006], [-75.18016368176961, 39.967794395545106], [-75.17968478300124, 39.96741740767767], [-75.18112177540891, 39.96746359961289], [-75.18559269656258, 39.96690811198944], [-75.18706908333387, 39.967747703382884], [-75.18900330738798, 39.96863994646185], [-75.19053330321391, 39.969523141662705], [-75.19117087980821, 39.970174153296554], [-75.19156997895064, 39.971541539557435], [-75.19185603211622, 39.97273659554681], [-75.19251524639479, 39.97427958810763], [-75.19267610460359, 39.97455682874583], [-75.19306819929173, 39.97522587002582], [-75.19316767010415, 39.97534404688133], [-75.19395195788799, 39.976275795675406], [-75.19370746636712, 39.976436929608965], [-75.19344742109921, 39.976607983514036], [-75.19318694633098, 39.976778651568935], [-75.19312353237977, 39.976820057225694], [-75.19292609306041, 39.976948979056516], [-75.19266491438854, 39.97711901761388], [-75.19240346936863, 39.97728881630829], [-75.19214180989704, 39.977458427652095], [-75.19187999860506, 39.977627898991315], [-75.191745662721, 39.9777147798631], [-75.19161808969504, 39.977797283791716], [-75.19135613747095, 39.97796663281875], [-75.19109419988266, 39.978135993315746], [-75.19083233340443, 39.97830542060259], [-75.19057059367931, 39.978474960971226], [-75.19030903969116, 39.97864466529346], [-75.18990079379184, 39.97890907500015], [-75.18963886595216, 39.979078446966966], [-75.18937682579183, 39.97924771854937], [-75.18907977150573, 39.97943944702036], [-75.18885251157113, 39.97958605385964], [-75.18859028389431, 39.979755160969134], [-75.18731861787698, 39.97958197540658], [-75.18572863466908, 39.97936208930493], [-75.18470025398888, 39.979225395072916], [-75.18413796951701, 39.979160412047385], [-75.1835823634162, 39.97908348404279], [-75.18311587750986, 39.97903082691258], [-75.1825269998387, 39.978957744698484], [-75.18192679331867, 39.9788796738151], [-75.1814601891601, 39.9788146300702], [-75.18090701836356, 39.97874058888288], [-75.18031747658478, 39.97866654240448], [-75.18018551683247, 39.97865007774576], [-75.17986177265558, 39.978607358478946], [-75.17948283131925, 39.97855760662868], [-75.1786945223034, 39.97846900801477], [-75.17788888439762, 39.97835599818536], [-75.17710442702693, 39.97825301454284], [-75.17630085865154, 39.97814009841556], [-75.17470388655568, 39.97793852162858], [-75.17385580424572, 39.977838020656726], [-75.1734059516144, 39.977784690664876], [-75.17312775354583, 39.977751700238606]]]}}, {"id": "5200", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1317770865436, 39.979365787653045], [-75.13092075739304, 39.978864734862874], [-75.13044944732988, 39.97859016069931], [-75.12995247667382, 39.97830328711981], [-75.1295103782287, 39.97804816404525], [-75.12862944990769, 39.97753465612431], [-75.12756969183124, 39.97691957973021], [-75.12740201520647, 39.97684668230214], [-75.12706900054707, 39.97662358518799], [-75.12696089271223, 39.97656331416455], [-75.12654230401856, 39.97632123087441], [-75.12613639160224, 39.976083143560096], [-75.12529987772899, 39.9755927888059], [-75.12520279899326, 39.975559228786324], [-75.1247108596752, 39.97524935772895], [-75.12432109501148, 39.97500405097309], [-75.12384343234258, 39.97469552264224], [-75.12339160083148, 39.97440444082287], [-75.12268830417882, 39.97395572798937], [-75.12259233629173, 39.97374858009471], [-75.12211704606422, 39.973529658925685], [-75.12176289432448, 39.97335416747199], [-75.12127206701985, 39.973388574123305], [-75.12068321218055, 39.97341756004273], [-75.12040957292677, 39.973387269125716], [-75.1202414439362, 39.97332468438928], [-75.12008687739578, 39.97324372289487], [-75.11961884615357, 39.97295144071109], [-75.12023164280738, 39.972388543878665], [-75.12121029100315, 39.971489560103905], [-75.1199014776589, 39.97062064519618], [-75.11757972389783, 39.9695968758442], [-75.1140318084597, 39.9680322855066], [-75.11441255455537, 39.96786656261048], [-75.11538436299533, 39.967443565655], [-75.11603666268508, 39.96715963307793], [-75.11686352968388, 39.96679970705826], [-75.11811738980097, 39.96625389485373], [-75.11966802450652, 39.965568062352844], [-75.12163174351726, 39.96461663435518], [-75.12402565266153, 39.96343911913137], [-75.12777482013738, 39.96152226006703], [-75.12908790808855, 39.96070914120397], [-75.13570254442688, 39.962047993115426], [-75.1362965206531, 39.96245264193541], [-75.13675691661963, 39.96276757101526], [-75.13717083928285, 39.962820848330665], [-75.13808290746044, 39.96293764490021], [-75.13778453671829, 39.963914618673314], [-75.13763755143225, 39.96427858977453], [-75.13754519517768, 39.96446130852313], [-75.13749760507172, 39.96463045445626], [-75.13748253512068, 39.964726420860195], [-75.13744872781277, 39.96498515226201], [-75.13768154916389, 39.96511329991819], [-75.13803308183687, 39.96551185818478], [-75.13828776449922, 39.96584383441974], [-75.1384392832969, 39.96604133674185], [-75.13873359398303, 39.966484864056554], [-75.13882750245008, 39.966596308900456], [-75.13987300889868, 39.96798705856361], [-75.14046292197838, 39.969071045766974], [-75.14055140212515, 39.96923559171817], [-75.14066667180037, 39.969653554896865], [-75.13957962184396, 39.96951603226673], [-75.13899880115336, 39.96940742479897], [-75.13849829186547, 39.969312315896914], [-75.13800604812953, 39.96921936347586], [-75.13776451243866, 39.96916947868097], [-75.13725352039627, 39.96907578530479], [-75.1367915050625, 39.968990817810344], [-75.1362246157766, 39.96888280351075], [-75.1357752336454, 39.97033986957758], [-75.13530853850415, 39.971860497177055], [-75.13493090050034, 39.97306124205988], [-75.13455645464565, 39.97425754188351], [-75.13434349740862, 39.97491896587055], [-75.13433393411295, 39.974994169051676], [-75.13421921679632, 39.97536559378394], [-75.13400419631301, 39.97633249510136], [-75.13383501136663, 39.977149053608564], [-75.13351038338044, 39.978643366084896], [-75.13319065263426, 39.98013574784717], [-75.13301724024231, 39.980120591075384], [-75.1317770865436, 39.979365787653045]]]}}, {"id": "5210", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12703151939232, 39.99038716308235], [-75.12594819181096, 39.990231008067155], [-75.12583337764181, 39.99015080201797], [-75.1254917782044, 39.98983790470489], [-75.12437568899065, 39.98882344897619], [-75.12338798505213, 39.987917440030564], [-75.12291451967475, 39.98746386304235], [-75.12234155204517, 39.98703199039585], [-75.1215107497833, 39.98616688936588], [-75.12392849211, 39.98490340306844], [-75.12465597526973, 39.98452791773668], [-75.1250655663543, 39.98430498726714], [-75.12622812377951, 39.98369641651944], [-75.12682245317455, 39.983386960925024], [-75.12739883724821, 39.98308170284578], [-75.12797870050113, 39.98278676164064], [-75.12855382281006, 39.982481026760404], [-75.12898610754681, 39.98225344555778], [-75.12914472245183, 39.98217056132641], [-75.12933523561645, 39.982070909171554], [-75.12973559600937, 39.981861175408646], [-75.13033830584416, 39.98155001773191], [-75.13093007933422, 39.98123462399555], [-75.13136655491007, 39.981010901517074], [-75.13183190731813, 39.980765502527944], [-75.13265334485587, 39.98033873970294], [-75.13301724024231, 39.980120591075384], [-75.13319065263426, 39.98013574784717], [-75.13288008300748, 39.98154686361165], [-75.13288158399425, 39.98163265288409], [-75.13254593170814, 39.98316792938105], [-75.13220854567699, 39.98474259357524], [-75.13190822559206, 39.986142442348005], [-75.13190738930429, 39.986307698294866], [-75.131831998645, 39.98652010620887], [-75.13167689556849, 39.98723090960091], [-75.13155894833066, 39.9878004184], [-75.13124088927039, 39.98929709263805], [-75.13089889813841, 39.99089105165924], [-75.12897541590053, 39.990641759039676], [-75.12703151939232, 39.99038716308235]]]}}, {"id": "5250", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1494332507939, 39.98496243191052], [-75.14950398760712, 39.98463024833647], [-75.14968633180648, 39.98380871779169], [-75.15001314411744, 39.98231620624612], [-75.1494428528043, 39.982242079566795], [-75.14843839356008, 39.98211158646729], [-75.14794623020516, 39.982050274322205], [-75.14745513601414, 39.981987551670095], [-75.14778251867806, 39.980496006284795], [-75.14811166218786, 39.978998965177915], [-75.14844892599797, 39.977446981252434], [-75.14875280338978, 39.97605319690573], [-75.14905919608358, 39.97462924336764], [-75.14955201707166, 39.97469444844773], [-75.15004094823418, 39.97475828200775], [-75.150231571073, 39.97478246830948], [-75.15094863392703, 39.97487344024391], [-75.15161706971416, 39.97496055307036], [-75.15191669061984, 39.973589833498096], [-75.15202353133493, 39.97310628406676], [-75.15218836742413, 39.972319593119735], [-75.15245012383737, 39.97114516194853], [-75.15257454601797, 39.970571700083724], [-75.15415068105897, 39.97077954215101], [-75.1557193009253, 39.97098284413163], [-75.15728042119237, 39.971192141394845], [-75.15861164455573, 39.971348995116934], [-75.15944196657915, 39.971468323386574], [-75.15923764108679, 39.97238526979513], [-75.1590577036878, 39.97320612890056], [-75.15878329590785, 39.97448373998994], [-75.15852699848782, 39.97585154506873], [-75.15822792908624, 39.97721710881816], [-75.15823962395879, 39.977281450598056], [-75.15791562606728, 39.97870886332697], [-75.15758279731992, 39.98022419451091], [-75.15725547387726, 39.98169482104445], [-75.15691577823603, 39.98322097007837], [-75.1566139097415, 39.984700031799335], [-75.15627637149069, 39.986284634879105], [-75.15540774318183, 39.98618087615382], [-75.1549397816308, 39.9861194562513], [-75.15406310987017, 39.986004580541646], [-75.15327633795096, 39.98590065219484], [-75.15248570735123, 39.98580294631227], [-75.15170235540398, 39.98570171004166], [-75.15091477997109, 39.985598532846595], [-75.14947287810017, 39.98541044376598], [-75.1493426008124, 39.98539344850191], [-75.1494332507939, 39.98496243191052]]]}}, {"id": "5260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1240010392231, 39.99949471531793], [-75.12286983433349, 39.999348225421684], [-75.12189645061733, 39.99922197325878], [-75.12141485963465, 39.99916050071101], [-75.12093406713585, 39.99909845694048], [-75.12043816082301, 39.99903124892896], [-75.11995841616955, 39.99897607104749], [-75.11948064078999, 39.99891846474961], [-75.11899483260045, 39.99885363710453], [-75.1181427263644, 39.99874006892576], [-75.11760779479803, 39.998672192592046], [-75.11705540656078, 39.99860245187495], [-75.11713718954385, 39.998204954618366], [-75.11720552832361, 39.99784824220488], [-75.11726460987974, 39.99759085143173], [-75.117284481552, 39.99749552058664], [-75.11738376209497, 39.997007889103365], [-75.11687527895985, 39.99694403320292], [-75.11641424499777, 39.99688234038955], [-75.11594728557785, 39.996823352482735], [-75.11544873273199, 39.996754717356865], [-75.11420376026825, 39.99660020163007], [-75.11378290403151, 39.99654566844975], [-75.11349353916128, 39.996509398474814], [-75.11335627413635, 39.99651837529572], [-75.11399780861547, 39.99614675119862], [-75.11443934320606, 39.99590407882544], [-75.11488815880926, 39.995651207425055], [-75.11577971940605, 39.99516863261082], [-75.11804388596643, 39.99392739215795], [-75.11827306308207, 39.99380494945997], [-75.11969525744287, 39.9930176547012], [-75.12031000021946, 39.99267372653925], [-75.12155268191938, 39.99200126868043], [-75.1225598379027, 39.99142904589025], [-75.12368779210668, 39.9908370053132], [-75.12443263724062, 39.99041437725906], [-75.12467941648082, 39.990280061064965], [-75.1254917782044, 39.98983790470489], [-75.12583337764181, 39.99015080201797], [-75.12594819181096, 39.990231008067155], [-75.12581548092545, 39.990321253648226], [-75.12575053444866, 39.99038664295684], [-75.1257966876318, 39.99046143190336], [-75.12619132496967, 39.99081410638479], [-75.12624403982602, 39.99086840531347], [-75.12671073514534, 39.991301669390836], [-75.1268304877983, 39.99140473196538], [-75.12711132039227, 39.991717809559425], [-75.12754649303128, 39.992086888554475], [-75.12847508975587, 39.992960955217434], [-75.12888944298902, 39.99337210329976], [-75.12928045888196, 39.993699377473], [-75.12949697864121, 39.993869232807484], [-75.13016923992892, 39.99438670726852], [-75.1306287246693, 39.9947099015428], [-75.13108811546374, 39.995035612799455], [-75.13151375949263, 39.995312789866986], [-75.1319487531092, 39.995584771470156], [-75.13215673288484, 39.99571908852154], [-75.13236737143946, 39.995777072436475], [-75.13283321527076, 39.99583834307155], [-75.13335735075286, 39.995906073736414], [-75.13389642109973, 39.995968736218344], [-75.13379804534607, 39.99650859349995], [-75.13372632073936, 39.99681997186189], [-75.13357826719061, 39.99746271908161], [-75.133433859375, 39.99813610118974], [-75.13335178223137, 39.998538430656275], [-75.13323677148799, 39.99905883822483], [-75.13270269672653, 39.99898682724332], [-75.13217235333043, 39.99891450960239], [-75.13125011731422, 39.99880785005577], [-75.13032139808102, 39.998678693262704], [-75.12980340464517, 39.99861470247278], [-75.12926055898585, 39.99854041987689], [-75.12862908793683, 39.99846025629529], [-75.12733742969829, 39.9982922813818], [-75.12641257905781, 39.9981699522401], [-75.12610139771022, 39.99813748479193], [-75.1253813505078, 39.99804499865212], [-75.1250593976361, 39.99962937005506], [-75.1240010392231, 39.99949471531793]]]}}, {"id": "5300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1212126555554, 39.98582197636218], [-75.12090664203696, 39.985481406064345], [-75.12025206106696, 39.984756703332486], [-75.11969085296037, 39.98411339915456], [-75.11919036295231, 39.983550142775705], [-75.1191358701804, 39.98348600088939], [-75.11852341721955, 39.98282667399838], [-75.11771344779177, 39.981893242481284], [-75.11735514148285, 39.981482857133244], [-75.11769734499407, 39.98090581875275], [-75.11832452806911, 39.97951745690433], [-75.11861138716736, 39.978880482777285], [-75.1197642927471, 39.97637035957075], [-75.11997095243832, 39.97591243490792], [-75.12094594407647, 39.975361061880854], [-75.12104554597718, 39.97527173259632], [-75.12161763813313, 39.97470846870026], [-75.12202941319707, 39.97431331901911], [-75.12259233629173, 39.97374858009471], [-75.12268830417882, 39.97395572798937], [-75.12339160083148, 39.97440444082287], [-75.12384343234258, 39.97469552264224], [-75.12432109501148, 39.97500405097309], [-75.1247108596752, 39.97524935772895], [-75.12520279899326, 39.975559228786324], [-75.12529987772899, 39.9755927888059], [-75.12613639160224, 39.976083143560096], [-75.12654230401856, 39.97632123087441], [-75.12696089271223, 39.97656331416455], [-75.12706900054707, 39.97662358518799], [-75.12740201520647, 39.97684668230214], [-75.12756969183124, 39.97691957973021], [-75.12862944990769, 39.97753465612431], [-75.1295103782287, 39.97804816404525], [-75.12995247667382, 39.97830328711981], [-75.13044944732988, 39.97859016069931], [-75.13092075739304, 39.978864734862874], [-75.1317770865436, 39.979365787653045], [-75.13301724024231, 39.980120591075384], [-75.13265334485587, 39.98033873970294], [-75.13183190731813, 39.980765502527944], [-75.13136655491007, 39.981010901517074], [-75.13093007933422, 39.98123462399555], [-75.13033830584416, 39.98155001773191], [-75.12973559600937, 39.981861175408646], [-75.12933523561645, 39.982070909171554], [-75.12914472245183, 39.98217056132641], [-75.12898610754681, 39.98225344555778], [-75.12855382281006, 39.982481026760404], [-75.12797870050113, 39.98278676164064], [-75.12739883724821, 39.98308170284578], [-75.12682245317455, 39.983386960925024], [-75.12622812377951, 39.98369641651944], [-75.1250655663543, 39.98430498726714], [-75.12465597526973, 39.98452791773668], [-75.12392849211, 39.98490340306844], [-75.1215107497833, 39.98616688936588], [-75.1212126555554, 39.98582197636218]]]}}, {"id": "5320", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14560313372758, 39.99278468699399], [-75.14511047460131, 39.99271674777694], [-75.1444670159411, 39.99263396927229], [-75.14383047084318, 39.99255141798455], [-75.14299899185374, 39.99245086645243], [-75.14217423972777, 39.99234441221609], [-75.14252186137165, 39.99075562891122], [-75.14284789400755, 39.98925827216778], [-75.14316972920646, 39.9877677843116], [-75.14350127645031, 39.986276791042265], [-75.14364231069816, 39.985634051569576], [-75.14384520940524, 39.98468401151407], [-75.14415497059565, 39.984725377629076], [-75.14438113099148, 39.98475543195791], [-75.14465565058934, 39.98479191317823], [-75.14544523910484, 39.98489682018643], [-75.14610343594677, 39.98497955532438], [-75.14678348138041, 39.985064706806504], [-75.14727487413454, 39.98512521849173], [-75.1477670295492, 39.98519167766347], [-75.14825923418245, 39.985254031672355], [-75.14855043158798, 39.98529316113752], [-75.1493426008124, 39.98539344850191], [-75.14947287810017, 39.98541044376598], [-75.15091477997109, 39.985598532846595], [-75.15170235540398, 39.98570171004166], [-75.15248570735123, 39.98580294631227], [-75.15327633795096, 39.98590065219484], [-75.15406310987017, 39.986004580541646], [-75.1549397816308, 39.9861194562513], [-75.15540774318183, 39.98618087615382], [-75.15627637149069, 39.986284634879105], [-75.15593589746767, 39.987878554987844], [-75.15559310602195, 39.98937048713281], [-75.1554998987755, 39.989794409414735], [-75.1552710646978, 39.990854301803694], [-75.15506972645015, 39.99083911992631], [-75.15396997044064, 39.99069743079759], [-75.15307026424283, 39.990578595857045], [-75.15287221410173, 39.99055287770031], [-75.15149127773667, 39.9903735518906], [-75.15092207484999, 39.9903050550188], [-75.15047931750038, 39.990248048190566], [-75.1499162301982, 39.990170796234345], [-75.14935910335902, 39.99009310529301], [-75.14889812146112, 39.990037386804815], [-75.14834098292921, 39.98997194898325], [-75.14781131295904, 39.98990639776105], [-75.14754375226056, 39.98986497810584], [-75.14760275533222, 39.989961381659676], [-75.1480273988089, 39.99056278992367], [-75.14815313833667, 39.99072552900276], [-75.14830695816073, 39.99096960067433], [-75.14834622301967, 39.99106996958742], [-75.14837843921606, 39.991217649853986], [-75.14830855656979, 39.99150510945522], [-75.1480820231125, 39.99237630471542], [-75.14788703690505, 39.9930798799411], [-75.146882363615, 39.99295012073503], [-75.14608959689218, 39.99284960025018], [-75.14560313372758, 39.99278468699399]]]}}, {"id": "5330", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13486914231545, 39.99140896839514], [-75.13433386723568, 39.99133132472353], [-75.13380448437566, 39.99126085613806], [-75.13334828398281, 39.991202409839445], [-75.13289367278115, 39.99114508728434], [-75.13242053001268, 39.99108443358905], [-75.13196035665526, 39.9910311963508], [-75.13143812359161, 39.99096152315822], [-75.13089889813841, 39.99089105165924], [-75.13124088927039, 39.98929709263805], [-75.13155894833066, 39.9878004184], [-75.13167689556849, 39.98723090960091], [-75.131831998645, 39.98652010620887], [-75.13190738930429, 39.986307698294866], [-75.13190822559206, 39.986142442348005], [-75.13220854567699, 39.98474259357524], [-75.13254593170814, 39.98316792938105], [-75.13288158399425, 39.98163265288409], [-75.13341080943681, 39.981699372023634], [-75.13392340603801, 39.981770568866075], [-75.13487065991411, 39.981888470214855], [-75.13578148349205, 39.98201048225343], [-75.13631469225547, 39.982077524588775], [-75.1368496275253, 39.98214824296992], [-75.13744398243685, 39.982224063368434], [-75.13813899339736, 39.98231364961067], [-75.13780086001088, 39.98390843998646], [-75.13746173750786, 39.98549351302039], [-75.13713869789352, 39.9869901808367], [-75.13683568381678, 39.98848690928337], [-75.1366433218456, 39.98937111348399], [-75.13657307684333, 39.98965441318546], [-75.13650837544215, 39.989970281336475], [-75.13615995646202, 39.99156601616205], [-75.13546637554853, 39.99148048381726], [-75.13486914231545, 39.99140896839514]]]}}, {"id": "5340", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1430260864794, 39.97823389715918], [-75.14261628923622, 39.976751180765255], [-75.14237807521141, 39.97585934960763], [-75.14219858195302, 39.97521289774196], [-75.14207343292402, 39.97467849821699], [-75.14211943778261, 39.974587830488574], [-75.14230218996924, 39.97373168398387], [-75.14247733769012, 39.97288931139299], [-75.14258183462758, 39.97238959489266], [-75.14283870639481, 39.97119523487204], [-75.14309536107109, 39.96995576434285], [-75.14237069913011, 39.96986710560221], [-75.14151817930153, 39.969759299275125], [-75.14066667180037, 39.969653554896865], [-75.14055140212515, 39.96923559171817], [-75.14046292197838, 39.969071045766974], [-75.13987300889868, 39.96798705856361], [-75.13882750245008, 39.966596308900456], [-75.13873359398303, 39.966484864056554], [-75.1384392832969, 39.96604133674185], [-75.13828776449922, 39.96584383441974], [-75.13803308183687, 39.96551185818478], [-75.13768154916389, 39.96511329991819], [-75.13744872781277, 39.96498515226201], [-75.13748253512068, 39.964726420860195], [-75.13749760507172, 39.96463045445626], [-75.13754519517768, 39.96446130852313], [-75.13763755143225, 39.96427858977453], [-75.13778453671829, 39.963914618673314], [-75.13808290746044, 39.96293764490021], [-75.13827549450221, 39.96231762501555], [-75.1392220181052, 39.96254041128918], [-75.13929679599369, 39.96255801053774], [-75.13960221591503, 39.9626303517114], [-75.13978578774208, 39.96267383177339], [-75.14006138678764, 39.96273790213371], [-75.13975490177026, 39.963692321574484], [-75.13993197133192, 39.963777785249036], [-75.1407064227292, 39.964139708528414], [-75.14163139510946, 39.96457373788679], [-75.14252966634245, 39.9649864598312], [-75.14337752362562, 39.96538087912413], [-75.14400254301472, 39.96567103285405], [-75.14458633097023, 39.9659454790478], [-75.14490607326032, 39.96609660893821], [-75.14575782885368, 39.96649392862541], [-75.1458913161705, 39.96654816429047], [-75.14650478063565, 39.966842825167525], [-75.14714784176866, 39.96712784996928], [-75.14791049722622, 39.96732631826535], [-75.14869023776352, 39.9675176776505], [-75.14955850264346, 39.967733564369766], [-75.15051564764148, 39.96797237611294], [-75.15097355673184, 39.96807896736265], [-75.15146301021215, 39.96817620675212], [-75.15200070091771, 39.96829918091589], [-75.15301923457218, 39.968550282609826], [-75.1529071228886, 39.96906713671027], [-75.1527835009234, 39.96962440941302], [-75.15269159270923, 39.97005595174743], [-75.15257454601797, 39.970571700083724], [-75.15245012383737, 39.97114516194853], [-75.15218836742413, 39.972319593119735], [-75.15202353133493, 39.97310628406676], [-75.15191669061984, 39.973589833498096], [-75.15161706971416, 39.97496055307036], [-75.15094863392703, 39.97487344024391], [-75.150231571073, 39.97478246830948], [-75.15004094823418, 39.97475828200775], [-75.14955201707166, 39.97469444844773], [-75.14905919608358, 39.97462924336764], [-75.14875280338978, 39.97605319690573], [-75.14844892599797, 39.977446981252434], [-75.14811166218786, 39.978998965177915], [-75.14732538418636, 39.9788969009252], [-75.14658498086375, 39.978801493421564], [-75.14621504881288, 39.978756261424145], [-75.14579264210776, 39.97870283199536], [-75.14501101215193, 39.97859859204255], [-75.14464699302899, 39.978549148043435], [-75.14405950698142, 39.97847137322641], [-75.14375630225537, 39.97843254911381], [-75.14314046866812, 39.97836739419738], [-75.1430260864794, 39.97823389715918]]]}}, {"id": "5350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13780086001088, 39.98390843998646], [-75.13813899339736, 39.98231364961067], [-75.13881084329309, 39.98240067192492], [-75.13891806064221, 39.98241335056541], [-75.13936497646219, 39.98247435434834], [-75.13986861741796, 39.98253743129194], [-75.14037075117886, 39.982602963060174], [-75.1406869260253, 39.981123617196054], [-75.1408216551943, 39.98052898711954], [-75.1410218897316, 39.979618813283], [-75.1415112522445, 39.979681680500754], [-75.14193713418241, 39.979740985557754], [-75.14210829574333, 39.97976240195687], [-75.14286771936777, 39.97985261552813], [-75.14303334564039, 39.97900298334407], [-75.14314046866812, 39.97836739419738], [-75.14375630225537, 39.97843254911381], [-75.14405950698142, 39.97847137322641], [-75.14464699302899, 39.978549148043435], [-75.14501101215193, 39.97859859204255], [-75.14579264210776, 39.97870283199536], [-75.14621504881288, 39.978756261424145], [-75.14658498086375, 39.978801493421564], [-75.14732538418636, 39.9788969009252], [-75.14811166218786, 39.978998965177915], [-75.14778251867806, 39.980496006284795], [-75.14745513601414, 39.981987551670095], [-75.14794623020516, 39.982050274322205], [-75.14843839356008, 39.98211158646729], [-75.1494428528043, 39.982242079566795], [-75.15001314411744, 39.98231620624612], [-75.14968633180648, 39.98380871779169], [-75.14950398760712, 39.98463024833647], [-75.1494332507939, 39.98496243191052], [-75.1493426008124, 39.98539344850191], [-75.14855043158798, 39.98529316113752], [-75.14825923418245, 39.985254031672355], [-75.1477670295492, 39.98519167766347], [-75.14727487413454, 39.98512521849173], [-75.14678348138041, 39.985064706806504], [-75.14610343594677, 39.98497955532438], [-75.14544523910484, 39.98489682018643], [-75.14465565058934, 39.98479191317823], [-75.14438113099148, 39.98475543195791], [-75.14415497059565, 39.984725377629076], [-75.14384520940524, 39.98468401151407], [-75.14364231069816, 39.985634051569576], [-75.14350127645031, 39.986276791042265], [-75.14284163481193, 39.98619210182025], [-75.14219086607646, 39.98610805908815], [-75.14152068093209, 39.98601757233661], [-75.14104760448167, 39.98595982931496], [-75.14058850347658, 39.985896730133746], [-75.14012866158401, 39.98584162234003], [-75.1391684971638, 39.98571722446956], [-75.13865686623637, 39.98565115199687], [-75.13812245200133, 39.98558269631855], [-75.13746173750786, 39.98549351302039], [-75.13780086001088, 39.98390843998646]]]}}, {"id": "5370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13986861741796, 39.98253743129194], [-75.13936497646219, 39.98247435434834], [-75.13891806064221, 39.98241335056541], [-75.13881084329309, 39.98240067192492], [-75.13813899339736, 39.98231364961067], [-75.13744398243685, 39.982224063368434], [-75.1368496275253, 39.98214824296992], [-75.13631469225547, 39.982077524588775], [-75.13578148349205, 39.98201048225343], [-75.13487065991411, 39.981888470214855], [-75.13392340603801, 39.981770568866075], [-75.13341080943681, 39.981699372023634], [-75.13288158399425, 39.98163265288409], [-75.13288008300748, 39.98154686361165], [-75.13319065263426, 39.98013574784717], [-75.13351038338044, 39.978643366084896], [-75.13383501136663, 39.977149053608564], [-75.13400419631301, 39.97633249510136], [-75.13421921679632, 39.97536559378394], [-75.13433393411295, 39.974994169051676], [-75.13434349740862, 39.97491896587055], [-75.13455645464565, 39.97425754188351], [-75.13493090050034, 39.97306124205988], [-75.13530853850415, 39.971860497177055], [-75.1357752336454, 39.97033986957758], [-75.1362246157766, 39.96888280351075], [-75.1367915050625, 39.968990817810344], [-75.13725352039627, 39.96907578530479], [-75.13776451243866, 39.96916947868097], [-75.13800604812953, 39.96921936347586], [-75.13849829186547, 39.969312315896914], [-75.13899880115336, 39.96940742479897], [-75.13957962184396, 39.96951603226673], [-75.14066667180037, 39.969653554896865], [-75.14151817930153, 39.969759299275125], [-75.14237069913011, 39.96986710560221], [-75.14309536107109, 39.96995576434285], [-75.14283870639481, 39.97119523487204], [-75.14258183462758, 39.97238959489266], [-75.14247733769012, 39.97288931139299], [-75.14230218996924, 39.97373168398387], [-75.14211943778261, 39.974587830488574], [-75.14207343292402, 39.97467849821699], [-75.14219858195302, 39.97521289774196], [-75.14237807521141, 39.97585934960763], [-75.14261628923622, 39.976751180765255], [-75.1430260864794, 39.97823389715918], [-75.14314046866812, 39.97836739419738], [-75.14303334564039, 39.97900298334407], [-75.14286771936777, 39.97985261552813], [-75.14210829574333, 39.97976240195687], [-75.14193713418241, 39.979740985557754], [-75.1415112522445, 39.979681680500754], [-75.1410218897316, 39.979618813283], [-75.1408216551943, 39.98052898711954], [-75.1406869260253, 39.981123617196054], [-75.14037075117886, 39.982602963060174], [-75.13986861741796, 39.98253743129194]]]}}, {"id": "5390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13335178223137, 39.998538430656275], [-75.133433859375, 39.99813610118974], [-75.13357826719061, 39.99746271908161], [-75.13372632073936, 39.99681997186189], [-75.13379804534607, 39.99650859349995], [-75.13389642109973, 39.995968736218344], [-75.13444492899423, 39.99605094896756], [-75.13499336970392, 39.996118024840605], [-75.13551012066759, 39.99618002974883], [-75.13634700247911, 39.99628984635562], [-75.13684622551224, 39.99635321660288], [-75.1373500685577, 39.99642246537034], [-75.13780878030616, 39.99648020057785], [-75.13827020804773, 39.99653846065829], [-75.13869442564875, 39.99659587328851], [-75.13919971671324, 39.996662558158164], [-75.13952082967248, 39.99516588896113], [-75.14019094100959, 39.995252235382324], [-75.14083763348894, 39.99533644892229], [-75.14149666955511, 39.99542308912688], [-75.14183154987668, 39.99393097316631], [-75.14347679145469, 39.994139667054554], [-75.14412330779642, 39.994226694654955], [-75.14475929946508, 39.99431108028383], [-75.1449422627162, 39.9943335253197], [-75.14523985717346, 39.99437003326841], [-75.14574969569053, 39.99444058423645], [-75.14560509758087, 39.99510328931318], [-75.14542741148071, 39.99593018162321], [-75.14531276689256, 39.99639505500942], [-75.14523738035037, 39.9967583568742], [-75.14509795563065, 39.997426025465145], [-75.14476701066317, 39.998916789999626], [-75.14446339758591, 40.000328858228784], [-75.14417327834188, 40.000431689331485], [-75.14334643394318, 40.00074401544597], [-75.14379809293565, 40.00145585389514], [-75.14364845063128, 40.00151139230492], [-75.14333847105587, 40.0016229852707], [-75.14302815937185, 40.00173404638711], [-75.14271756308496, 40.001844650614025], [-75.14241335513279, 40.00195252307149], [-75.1420957018997, 40.00206479173606], [-75.14178453204205, 40.00217447765325], [-75.14147326507981, 40.002284010973575], [-75.1411619520598, 40.00239346583894], [-75.14085063459378, 40.002502917979676], [-75.14053936145434, 40.002612439684974], [-75.1402281822031, 40.00272211317395], [-75.13988662155539, 40.002842828195924], [-75.14006841565788, 40.00197168060588], [-75.14077743979948, 40.0016958264364], [-75.14063453178653, 40.00164705497362], [-75.14014907628051, 40.0015839349809], [-75.14022924746904, 40.001251083769084], [-75.14040264033144, 40.000477983232145], [-75.14047863717099, 40.00009495188522], [-75.14049855672104, 39.999994555103264], [-75.14031945964709, 39.99997299400659], [-75.1399888432736, 39.999933194748465], [-75.13952746728651, 39.999877985167934], [-75.13907061740818, 39.99981266897677], [-75.13852563068767, 39.999744178215266], [-75.13565223778376, 39.99937684278519], [-75.13441312486971, 39.99920862491413], [-75.13383077962293, 39.99913047723988], [-75.13323677148799, 39.99905883822483], [-75.13335178223137, 39.998538430656275]]]}}, {"id": "5400", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10834406137712, 39.990757056022076], [-75.10804488788534, 39.990426868907115], [-75.10776015070692, 39.99010542981824], [-75.10737064629286, 39.98967049495309], [-75.10707872669175, 39.989338668237636], [-75.10677909348554, 39.98900598098831], [-75.10635638278846, 39.98854972868803], [-75.1051064022264, 39.989198244384106], [-75.10480433850458, 39.98935737786698], [-75.10393376179653, 39.989822074794816], [-75.10351314693432, 39.9893369206364], [-75.10308064390418, 39.988847163864136], [-75.10265238198463, 39.988374283990176], [-75.10230801269951, 39.987975914202075], [-75.10195240299188, 39.98757392128347], [-75.10163181469454, 39.98721261325986], [-75.101311975064, 39.986847573232914], [-75.10094217065105, 39.98644174338533], [-75.10058282005755, 39.98602684857752], [-75.10031677022019, 39.98572886869802], [-75.10009754556556, 39.985478587939035], [-75.09980808572746, 39.98515543917393], [-75.09974432942074, 39.985080936240884], [-75.09953190679715, 39.98484255276022], [-75.09932259123386, 39.984596926008905], [-75.09908446847261, 39.98432642894208], [-75.09905740684128, 39.984253711143715], [-75.0990307256498, 39.984149133414206], [-75.09840808852695, 39.98338968708256], [-75.09824731408207, 39.98319358419305], [-75.09804767080702, 39.98295006964042], [-75.09763312964033, 39.98247808102554], [-75.09758221042588, 39.98240811463097], [-75.0975539446821, 39.982314105049944], [-75.0975577314891, 39.98222095340564], [-75.09759008657996, 39.98214100535176], [-75.0976493489436, 39.98206277572151], [-75.09776781703351, 39.98197314037179], [-75.09967356622244, 39.98097029444044], [-75.09784798833998, 39.978878425783975], [-75.09751316558146, 39.97850784737103], [-75.09383959244585, 39.97437300792721], [-75.09483265192154, 39.9741776430036], [-75.09667124539824, 39.973803513900265], [-75.09743238976397, 39.9736379594382], [-75.09804511557637, 39.973504683462046], [-75.0984435126403, 39.9734180244327], [-75.09962358715774, 39.97314785433316], [-75.10135237773447, 39.97271914088583], [-75.10307967990225, 39.972251161764746], [-75.10618538542172, 39.97121600245923], [-75.1087669398379, 39.970222892540406], [-75.11025601168305, 39.96964565307227], [-75.1114996663189, 39.969139770101634], [-75.11406183964452, 39.96805681489876], [-75.11993151327665, 39.97064517307754], [-75.12114399119184, 39.97140323275224], [-75.12124032747748, 39.97151408764217], [-75.12026167932584, 39.97241307167241], [-75.1196488826997, 39.9729759686648], [-75.12011691306996, 39.9732682506991], [-75.12027147970196, 39.97334921215298], [-75.12043960995102, 39.97341179687219], [-75.12071324814686, 39.97344208769076], [-75.12130210318591, 39.97341310161727], [-75.12179293061767, 39.973378695737765], [-75.12214708256286, 39.97355418709864], [-75.12262237426361, 39.97377310726972], [-75.12205945121542, 39.97433784634104], [-75.1216476749726, 39.97473299700309], [-75.12107558289397, 39.975296260148234], [-75.12097598096194, 39.97538559035902], [-75.12000099038568, 39.97593696366765], [-75.11979432968705, 39.976394887457175], [-75.11864142476595, 39.97890501186372], [-75.11835456588065, 39.97954198516514], [-75.11772738319301, 39.98093034717661], [-75.11738518098363, 39.98150738567307], [-75.11718412563928, 39.981736215726855], [-75.11609037759447, 39.98298103463053], [-75.11563626597547, 39.98357714457621], [-75.1161150212943, 39.984124077309005], [-75.11496510658728, 39.984722697957885], [-75.11381708576394, 39.98532966034778], [-75.11440237646337, 39.985989265772425], [-75.11507761640394, 39.986755994043236], [-75.11564796513767, 39.9873946375281], [-75.11576049421137, 39.98753429941364], [-75.11535586506459, 39.987762730504464], [-75.11499940258108, 39.98796208065124], [-75.11463620748842, 39.98816758235997], [-75.11427841152161, 39.98836879461104], [-75.11391785141781, 39.98857537462168], [-75.11352280106009, 39.988794509150765], [-75.11373137460194, 39.98913332828605], [-75.1131314075781, 39.98943743425496], [-75.11191230629154, 39.99007415663864], [-75.1115049197125, 39.99029753861414], [-75.11128523736149, 39.99005508556822], [-75.1111666476381, 39.98992317018299], [-75.11096306449785, 39.99003783192062], [-75.11068692842274, 39.99019332842605], [-75.11041077288246, 39.990348810332456], [-75.11013460259346, 39.990504276847176], [-75.10985841525012, 39.99065972701601], [-75.10958221528891, 39.99081516724814], [-75.109306002815, 39.99097059484277], [-75.10902977892876, 39.99112601162724], [-75.10878548667127, 39.991263454441956], [-75.10834406137712, 39.990757056022076]]]}}, {"id": "5410", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13236737143946, 39.995777072436475], [-75.13215673288484, 39.99571908852154], [-75.1319487531092, 39.995584771470156], [-75.13151375949263, 39.995312789866986], [-75.13108811546374, 39.995035612799455], [-75.1306287246693, 39.9947099015428], [-75.13016923992892, 39.99438670726852], [-75.12949697864121, 39.993869232807484], [-75.12928045888196, 39.993699377473], [-75.12888944298902, 39.99337210329976], [-75.12847508975587, 39.992960955217434], [-75.12754649303128, 39.992086888554475], [-75.12711132039227, 39.991717809559425], [-75.1268304877983, 39.99140473196538], [-75.12671073514534, 39.991301669390836], [-75.12624403982602, 39.99086840531347], [-75.12619132496967, 39.99081410638479], [-75.1257966876318, 39.99046143190336], [-75.12575053444866, 39.99038664295684], [-75.12581548092545, 39.990321253648226], [-75.12594819181096, 39.990231008067155], [-75.12703151939232, 39.99038716308235], [-75.12897541590053, 39.990641759039676], [-75.13089889813841, 39.99089105165924], [-75.13143812359161, 39.99096152315822], [-75.13196035665526, 39.9910311963508], [-75.13242053001268, 39.99108443358905], [-75.13289367278115, 39.99114508728434], [-75.13334828398281, 39.991202409839445], [-75.13380448437566, 39.99126085613806], [-75.13346960071041, 39.992851042480595], [-75.13314828141475, 39.99434543499188], [-75.13304382135699, 39.99484266342269], [-75.13298036508621, 39.99515770603356], [-75.13290782243445, 39.99547128182176], [-75.13283321527076, 39.99583834307155], [-75.13236737143946, 39.995777072436475]]]}}, {"id": "5420", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14086373856927, 39.992175219664745], [-75.14019800056143, 39.992087928038465], [-75.13970899094424, 39.99202958030164], [-75.13926139018056, 39.99197058202547], [-75.13835217472275, 39.99185285779908], [-75.13784387092095, 39.99178927860157], [-75.13734853427543, 39.9917304244261], [-75.13615995646202, 39.99156601616205], [-75.13650837544215, 39.989970281336475], [-75.13657307684333, 39.98965441318546], [-75.1366433218456, 39.98937111348399], [-75.13683568381678, 39.98848690928337], [-75.13713869789352, 39.9869901808367], [-75.13746173750786, 39.98549351302039], [-75.13812245200133, 39.98558269631855], [-75.13865686623637, 39.98565115199687], [-75.1391684971638, 39.98571722446956], [-75.14012866158401, 39.98584162234003], [-75.14058850347658, 39.985896730133746], [-75.14104760448167, 39.98595982931496], [-75.14152068093209, 39.98601757233661], [-75.14219086607646, 39.98610805908815], [-75.14284163481193, 39.98619210182025], [-75.14350127645031, 39.986276791042265], [-75.14316972920646, 39.9877677843116], [-75.14284789400755, 39.98925827216778], [-75.14252186137165, 39.99075562891122], [-75.14217423972777, 39.99234441221609], [-75.14151207718533, 39.99225682117944], [-75.14086373856927, 39.992175219664745]]]}}, {"id": "5440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.11221308246229, 39.99517427233117], [-75.11137060339652, 39.994212496319484], [-75.11025974583154, 39.99295826605309], [-75.10971001729443, 39.99233598687909], [-75.10952824197115, 39.992124638379394], [-75.10934108323367, 39.991910744640194], [-75.1087554459966, 39.991238922759486], [-75.108999739362, 39.991101480935754], [-75.10927596204687, 39.99094606419649], [-75.10955217569511, 39.99079063580071], [-75.1098283744549, 39.99063519561379], [-75.11010456176727, 39.9904797455171], [-75.11038073316068, 39.99032428000165], [-75.11065688749964, 39.990168798140466], [-75.11093302357875, 39.990013300806936], [-75.11113660669623, 39.98989863912245], [-75.1112551974888, 39.99003055456577], [-75.11147487961829, 39.99027300856957], [-75.11188226501358, 39.99004962577333], [-75.1131013661065, 39.98941290460837], [-75.1137013330482, 39.989108798796195], [-75.11349276093682, 39.98876997873267], [-75.1138878112488, 39.98855084430678], [-75.11424837014344, 39.98834426436344], [-75.11460616607, 39.98814305220588], [-75.11496936229267, 39.987937550618824], [-75.11532582470073, 39.98773820146543], [-75.11573045266707, 39.98750976955322], [-75.11561792483113, 39.9873701085652], [-75.11504757662068, 39.98673146403038], [-75.11437233722806, 39.985964736482465], [-75.11378704703164, 39.98530513090415], [-75.11493506653858, 39.984698168787304], [-75.11608498113003, 39.98409954753863], [-75.11560622736123, 39.9835526156072], [-75.11606033794453, 39.982956504852815], [-75.11715408728016, 39.98171168716143], [-75.11735514148285, 39.981482857133244], [-75.11771344779177, 39.981893242481284], [-75.11852341721955, 39.98282667399838], [-75.1191358701804, 39.98348600088939], [-75.11919036295231, 39.983550142775705], [-75.11969085296037, 39.98411339915456], [-75.12025206106696, 39.984756703332486], [-75.12090664203696, 39.985481406064345], [-75.1212126555554, 39.98582197636218], [-75.1215107497833, 39.98616688936588], [-75.12234155204517, 39.98703199039585], [-75.12291451967475, 39.98746386304235], [-75.12338798505213, 39.987917440030564], [-75.12437568899065, 39.98882344897619], [-75.1254917782044, 39.98983790470489], [-75.12467941648082, 39.990280061064965], [-75.12443263724062, 39.99041437725906], [-75.12368779210668, 39.9908370053132], [-75.1225598379027, 39.99142904589025], [-75.12155268191938, 39.99200126868043], [-75.12031000021946, 39.99267372653925], [-75.11969525744287, 39.9930176547012], [-75.11827306308207, 39.99380494945997], [-75.11804388596643, 39.99392739215795], [-75.11577971940605, 39.99516863261082], [-75.11488815880926, 39.995651207425055], [-75.11443934320606, 39.99590407882544], [-75.11399780861547, 39.99614675119862], [-75.11335627413635, 39.99651837529572], [-75.11330958515573, 39.99640977749513], [-75.11221308246229, 39.99517427233117]]]}}, {"id": "5470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12787293070507, 40.00505914287225], [-75.12755058678738, 40.005042349869555], [-75.12720920671373, 40.00502344244802], [-75.12686775392743, 40.005004480086335], [-75.1265262525044, 40.00498535521095], [-75.12618475093373, 40.004965874307906], [-75.12584329110216, 40.004945832900546], [-75.12550191799478, 40.00492503739572], [-75.12516067340198, 40.00490328601852], [-75.12481960245576, 40.004880381575894], [-75.12447874922599, 40.0048561241479], [-75.12413815881776, 40.004830317442874], [-75.12394932729268, 40.0048150263638], [-75.12416377417915, 40.00383050497931], [-75.12441189333515, 40.002635747370185], [-75.1247327042775, 40.001125212840236], [-75.12482584559972, 40.00073781277301], [-75.12495304812299, 40.000118295958615], [-75.1250593976361, 39.99962937005506], [-75.1253813505078, 39.99804499865212], [-75.12610139771022, 39.99813748479193], [-75.12641257905781, 39.9981699522401], [-75.12733742969829, 39.9982922813818], [-75.12862908793683, 39.99846025629529], [-75.12926055898585, 39.99854041987689], [-75.12980340464517, 39.99861470247278], [-75.13032139808102, 39.998678693262704], [-75.13125011731422, 39.99880785005577], [-75.13217235333043, 39.99891450960239], [-75.13270269672653, 39.99898682724332], [-75.13323677148799, 39.99905883822483], [-75.13289707808269, 40.000644377340706], [-75.1325783050674, 40.002135590534316], [-75.13225594170935, 40.00363274185506], [-75.13206592362307, 40.00455975090279], [-75.13195017894888, 40.0051571594535], [-75.13165438461807, 40.00516218906765], [-75.1313120905648, 40.005165243621754], [-75.13096967892228, 40.0051647840814], [-75.13062734388893, 40.00516042473138], [-75.13028526365714, 40.00515189122062], [-75.12994327233797, 40.005141571084394], [-75.12960127164347, 40.005130493753214], [-75.1292592889243, 40.00511855803528], [-75.12891735401352, 40.005105659191635], [-75.12857548972254, 40.00509169232322], [-75.12823372347772, 40.00507655443872], [-75.12787293070507, 40.00505914287225]]]}}, {"id": "5480", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15146301021215, 39.96817620675212], [-75.15097355673184, 39.96807896736265], [-75.15051564764148, 39.96797237611294], [-75.14955850264346, 39.967733564369766], [-75.14869023776352, 39.9675176776505], [-75.14791049722622, 39.96732631826535], [-75.14714784176866, 39.96712784996928], [-75.14650478063565, 39.966842825167525], [-75.1458913161705, 39.96654816429047], [-75.14575782885368, 39.96649392862541], [-75.14490607326032, 39.96609660893821], [-75.14458633097023, 39.9659454790478], [-75.14400254301472, 39.96567103285405], [-75.14337752362562, 39.96538087912413], [-75.14252966634245, 39.9649864598312], [-75.14163139510946, 39.96457373788679], [-75.1407064227292, 39.964139708528414], [-75.13993197133192, 39.963777785249036], [-75.13975490177026, 39.963692321574484], [-75.14006138678764, 39.96273790213371], [-75.13978578774208, 39.96267383177339], [-75.13960221591503, 39.9626303517114], [-75.13929679599369, 39.96255801053774], [-75.1392220181052, 39.96254041128918], [-75.13827549450221, 39.96231762501555], [-75.13808290746044, 39.96293764490021], [-75.13717083928285, 39.962820848330665], [-75.13675691661963, 39.96276757101526], [-75.1362965206531, 39.96245264193541], [-75.13570254442688, 39.962047993115426], [-75.12908790808855, 39.96070914120397], [-75.13049522314829, 39.95959590757984], [-75.13073066711392, 39.959319392641476], [-75.1309676850371, 39.95904102734597], [-75.1310798418532, 39.9589093032834], [-75.13132845710639, 39.958569744871205], [-75.13153807571817, 39.95828344487096], [-75.13196037157967, 39.95756603590327], [-75.13226802673258, 39.95704337310769], [-75.13253209875239, 39.956570957433094], [-75.13280852508643, 39.956020214005825], [-75.13963009231092, 39.95688829534479], [-75.13995562256132, 39.956929803007355], [-75.14071772348635, 39.9570283221774], [-75.14099879826782, 39.95706465660699], [-75.14141335264442, 39.95711824275984], [-75.14202103524084, 39.957196792797966], [-75.14218858223636, 39.9572186273773], [-75.14263581931723, 39.957274725205366], [-75.14280369112413, 39.9572127738713], [-75.14304070740114, 39.95716036310856], [-75.14330037514917, 39.95712727268846], [-75.14359698373113, 39.957110134708415], [-75.14390529291268, 39.957135100727456], [-75.14418051989675, 39.95716930321432], [-75.14539903510733, 39.957320721497], [-75.14574445922563, 39.95735972423506], [-75.14594277208461, 39.95738211563704], [-75.14608671800413, 39.95739172522386], [-75.14720376534348, 39.957537836872454], [-75.1473479021083, 39.95755794158644], [-75.14784414808281, 39.957628002777504], [-75.14846120785022, 39.95771646485915], [-75.14886085945778, 39.957745703471176], [-75.14887734536661, 39.95766550348537], [-75.1491264360546, 39.95767570821541], [-75.14952611782954, 39.95766316757791], [-75.15017367166261, 39.95759347705416], [-75.15065512095714, 39.95748279926199], [-75.15089400948241, 39.95741860604724], [-75.15114054904012, 39.957352358346], [-75.15148914939789, 39.95725851973942], [-75.15164997012965, 39.95721319094828], [-75.1520616305533, 39.95709976077902], [-75.15229079385131, 39.95704144528795], [-75.15255960777671, 39.95696475428164], [-75.15277270115861, 39.95691539955717], [-75.1528942880345, 39.956885026153664], [-75.15334639383745, 39.95682544556332], [-75.15378436972924, 39.95678659845988], [-75.15424934268523, 39.956778157248024], [-75.15445168386493, 39.95677847802033], [-75.15553977298742, 39.95692481636413], [-75.15550963434188, 39.95705099819963], [-75.15549108937509, 39.95712863764905], [-75.15548348227792, 39.957206029803565], [-75.15547749348217, 39.957281821405715], [-75.15539164048559, 39.95767789846245], [-75.15535015234914, 39.95787152793278], [-75.15532843587654, 39.95797600546007], [-75.15526193570719, 39.95827025632162], [-75.15518162051798, 39.95862899776177], [-75.15509490505809, 39.95871054284239], [-75.15513527514067, 39.95885473774765], [-75.15496540966672, 39.95962704039213], [-75.15484453197425, 39.96018548951281], [-75.15472013706143, 39.9607454159408], [-75.15463359264892, 39.9611451089622], [-75.15454212216805, 39.961580483472844], [-75.15451310853925, 39.961712146240565], [-75.15442408173111, 39.96212679396662], [-75.15431216993537, 39.962615898581014], [-75.15418202018007, 39.96322382051938], [-75.15409572426688, 39.963603054932825], [-75.15401448604787, 39.963977350821146], [-75.15386457120636, 39.9646612614374], [-75.15374190518315, 39.965246269151486], [-75.15451159715468, 39.96548911089992], [-75.1552606561634, 39.965709754494505], [-75.15504591539361, 39.966683130300744], [-75.15481665131104, 39.967722321111665], [-75.15327811682964, 39.96734879319945], [-75.15314966562767, 39.96794494669252], [-75.15301923457218, 39.968550282609826], [-75.15200070091771, 39.96829918091589], [-75.15146301021215, 39.96817620675212]]]}}, {"id": "5490", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13568333923226, 40.02295388314234], [-75.13517364017464, 40.02288937907387], [-75.13351806873054, 40.02269961384838], [-75.13266657267638, 40.02260530897158], [-75.13165534349513, 40.022466545626095], [-75.13067747059611, 40.0223264212425], [-75.1288388007593, 40.02209552698992], [-75.12832997980297, 40.02203750959046], [-75.12799561695972, 40.021990003261664], [-75.1275883473653, 40.02193652409814], [-75.12766722191142, 40.021678075942006], [-75.12772254870809, 40.02143541478058], [-75.12782553628675, 40.02100974360595], [-75.12793752006728, 40.02058217569274], [-75.12805743325659, 40.02016776351229], [-75.12817272187972, 40.019745126505015], [-75.12828942424522, 40.01931224639612], [-75.12841230851205, 40.01888818420382], [-75.12717014834826, 40.0187202445289], [-75.12728008257253, 40.01855118772663], [-75.12773597041543, 40.01780744067364], [-75.12816782747261, 40.01727601049683], [-75.12958420585664, 40.01596204506945], [-75.13079224052301, 40.01612157929509], [-75.13139153266953, 40.01619119732399], [-75.1319817951704, 40.01628024323355], [-75.13247683593104, 40.0163386448571], [-75.13299382132521, 40.01641091387685], [-75.13389576979203, 40.01652956087033], [-75.13484437013499, 40.01663857260232], [-75.13558304956146, 40.016735761721314], [-75.13592411965315, 40.01678028971108], [-75.13615399991127, 40.01680675916981], [-75.13681235707244, 40.01690027732512], [-75.13763970201917, 40.01700490589694], [-75.13846703853598, 40.017101650623424], [-75.13911045332391, 40.017188516576056], [-75.13974978354928, 40.01727754038999], [-75.14024968966272, 40.017342373698476], [-75.14076235440827, 40.01741242962785], [-75.141842755967, 40.01754526543114], [-75.14674207614026, 40.01816830825549], [-75.14718171411992, 40.01822158662099], [-75.14804861159351, 40.01834745042115], [-75.1484680681646, 40.01840767197671], [-75.14714447643219, 40.01901145008065], [-75.14705879583687, 40.01909484972519], [-75.14638257068283, 40.01941384755003], [-75.14613788229155, 40.01938413204805], [-75.1453628611309, 40.019380817093726], [-75.14468710862543, 40.01941183457217], [-75.14409578705738, 40.019486694076015], [-75.14363335649988, 40.01956889301005], [-75.14326097466613, 40.01965955683399], [-75.1428848436295, 40.01977265716096], [-75.14246779103715, 40.01992131567765], [-75.14208211948895, 40.020076769123925], [-75.14126176526882, 40.020457827767785], [-75.13989326600749, 40.021143092921015], [-75.13962410577875, 40.02125554449826], [-75.13878989832307, 40.02167194894793], [-75.13680074130902, 40.02266481390887], [-75.13606727037968, 40.022993869695384], [-75.13568333923226, 40.02295388314234]]]}}, {"id": "5500", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1335665112153, 40.035626316406706], [-75.13276532628717, 40.03533772841605], [-75.13184454399239, 40.035052721926434], [-75.13088081387585, 40.03474587521162], [-75.13116347306803, 40.0333930419087], [-75.13129072350458, 40.032819538815794], [-75.13139417908607, 40.03235326090929], [-75.13150816845437, 40.03186826466147], [-75.13160904957076, 40.03135428719283], [-75.13183059592654, 40.03032234554205], [-75.1321754906953, 40.02877322025858], [-75.132353179843, 40.02802099829087], [-75.13251011366452, 40.0272753508569], [-75.13283944491678, 40.02578433313788], [-75.13301086909873, 40.02499780982186], [-75.13316850018711, 40.02430018863057], [-75.13320788314832, 40.024145564934464], [-75.13326111468093, 40.0238967790924], [-75.13328560210047, 40.02378554621781], [-75.13433030569912, 40.02355568546947], [-75.13500172747884, 40.023376356045276], [-75.13549018536642, 40.023223266760084], [-75.13593982391987, 40.023051045166966], [-75.13606727037968, 40.022993869695384], [-75.13680074130902, 40.02266481390887], [-75.13878989832307, 40.02167194894793], [-75.1386856314607, 40.022089355858064], [-75.13864604864172, 40.022274510415976], [-75.13841994705085, 40.023329816232724], [-75.13807943565392, 40.024928910005606], [-75.1378229004782, 40.026088812543264], [-75.13774715050255, 40.026417386977926], [-75.13742200151447, 40.02791977605994], [-75.13709228485473, 40.02941326835255], [-75.13701628378013, 40.02980035538107], [-75.13675813892036, 40.03096519043236], [-75.13661962081554, 40.03159076445095], [-75.13655569805901, 40.03186903485381], [-75.13648615050276, 40.03218603200388], [-75.13641587003075, 40.03251136041243], [-75.13632903528652, 40.03292146855458], [-75.13624750939496, 40.03328774921344], [-75.1362256312926, 40.033432280724874], [-75.13601924186796, 40.03629591786183], [-75.13491719236487, 40.0360488365267], [-75.13435513859052, 40.03588374814797], [-75.1335665112153, 40.035626316406706]]]}}, {"id": "5530", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.11930063244641, 40.00668062097756], [-75.11348354800558, 40.00592851401563], [-75.10937229646842, 40.00539334662989], [-75.10862843880291, 40.00540581803255], [-75.10803781110063, 40.00543237740518], [-75.1073529084745, 40.00547269932909], [-75.10666156788085, 40.00548114721689], [-75.10602631109278, 40.00549929463638], [-75.10533698181442, 40.00551937536787], [-75.10327103349695, 40.005603012611246], [-75.10352956329014, 40.00443165033639], [-75.10360252415369, 40.00407447780811], [-75.10368780044956, 40.0036383117411], [-75.1037972729379, 40.003135874650006], [-75.10181133678756, 40.00286444150113], [-75.10308470566804, 40.002151232898676], [-75.10318091191402, 40.00209734827566], [-75.10419895428362, 40.00152691203503], [-75.10542739643184, 40.000874883725594], [-75.10644377204741, 40.00032368292104], [-75.10759389499513, 39.99966357921811], [-75.1081451160509, 39.99935864992294], [-75.10872428311191, 39.99903366531335], [-75.10929527099421, 39.998746113222424], [-75.10984871968364, 39.998437580857484], [-75.11041965972122, 39.998125838616055], [-75.11098376966241, 39.99780241424472], [-75.1115589347371, 39.99747639316599], [-75.1121339292869, 39.997159893810384], [-75.11271108848979, 39.99686096737343], [-75.11335627413635, 39.99651837529572], [-75.11349353916128, 39.996509398474814], [-75.11378290403151, 39.99654566844975], [-75.11420376026825, 39.99660020163007], [-75.11544873273199, 39.996754717356865], [-75.11594728557785, 39.996823352482735], [-75.11641424499777, 39.99688234038955], [-75.11687527895985, 39.99694403320292], [-75.11738376209497, 39.997007889103365], [-75.117284481552, 39.99749552058664], [-75.11726460987974, 39.99759085143173], [-75.11720552832361, 39.99784824220488], [-75.11713718954385, 39.998204954618366], [-75.11705540656078, 39.99860245187495], [-75.11760779479803, 39.998672192592046], [-75.1181427263644, 39.99874006892576], [-75.11899483260045, 39.99885363710453], [-75.11948064078999, 39.99891846474961], [-75.11995841616955, 39.99897607104749], [-75.12043816082301, 39.99903124892896], [-75.12093406713585, 39.99909845694048], [-75.12141485963465, 39.99916050071101], [-75.12189645061733, 39.99922197325878], [-75.12286983433349, 39.999348225421684], [-75.1240010392231, 39.99949471531793], [-75.1250593976361, 39.99962937005506], [-75.12495304812299, 40.000118295958615], [-75.12482584559972, 40.00073781277301], [-75.1247327042775, 40.001125212840236], [-75.12441189333515, 40.002635747370185], [-75.12416377417915, 40.00383050497931], [-75.12394932729268, 40.0048150263638], [-75.1234268932234, 40.007213386785665], [-75.12271875342688, 40.007135884907754], [-75.11930063244641, 40.00668062097756]]]}}, {"id": "5560", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15269159270923, 39.97005595174743], [-75.1527835009234, 39.96962440941302], [-75.1529071228886, 39.96906713671027], [-75.15301923457218, 39.968550282609826], [-75.15314966562767, 39.96794494669252], [-75.15327811682964, 39.96734879319945], [-75.15481665131104, 39.967722321111665], [-75.15504591539361, 39.966683130300744], [-75.1552606561634, 39.965709754494505], [-75.15451159715468, 39.96548911089992], [-75.15374190518315, 39.965246269151486], [-75.15386457120636, 39.9646612614374], [-75.15401448604787, 39.963977350821146], [-75.15409572426688, 39.963603054932825], [-75.15418202018007, 39.96322382051938], [-75.15431216993537, 39.962615898581014], [-75.15442408173111, 39.96212679396662], [-75.15451310853925, 39.961712146240565], [-75.15454212216805, 39.961580483472844], [-75.15463359264892, 39.9611451089622], [-75.15472013706143, 39.9607454159408], [-75.15484453197425, 39.96018548951281], [-75.15496540966672, 39.95962704039213], [-75.15513527514067, 39.95885473774765], [-75.15509490505809, 39.95871054284239], [-75.15518162051798, 39.95862899776177], [-75.15526193570719, 39.95827025632162], [-75.15532843587654, 39.95797600546007], [-75.15535015234914, 39.95787152793278], [-75.15539164048559, 39.95767789846245], [-75.15547749348217, 39.957281821405715], [-75.15548348227792, 39.957206029803565], [-75.15549108937509, 39.95712863764905], [-75.15550963434188, 39.95705099819963], [-75.15553977298742, 39.95692481636413], [-75.15713524170022, 39.95713947514945], [-75.15869380494068, 39.95736238541401], [-75.15881552775565, 39.95737855542266], [-75.15902918678124, 39.95738338102032], [-75.16029504157096, 39.95750945198353], [-75.16129622782401, 39.95760915330485], [-75.16215524968051, 39.95771795778167], [-75.16236367069868, 39.95768001206847], [-75.16234055358527, 39.957826991575594], [-75.16231961935134, 39.95793156531414], [-75.16229423597242, 39.95805925338909], [-75.16217633043827, 39.95854852733416], [-75.16211951086655, 39.95882285854339], [-75.16205912443985, 39.95910213784753], [-75.16196092086922, 39.95957214361842], [-75.16180345680907, 39.96028624941455], [-75.16177327298585, 39.960422797834035], [-75.16164673143402, 39.96102249168303], [-75.16155403445104, 39.961443028576916], [-75.16147669842815, 39.96179046019916], [-75.16141283106843, 39.962103737181245], [-75.16138160076343, 39.962318688220996], [-75.1613842499537, 39.962475270829295], [-75.16130358132413, 39.962895050011134], [-75.16126150742342, 39.9631278884295], [-75.1611891934805, 39.96342364008302], [-75.16111004875117, 39.963789972799844], [-75.16105400769862, 39.964041957068666], [-75.16095891448897, 39.96447068926589], [-75.1608058691436, 39.965160145575574], [-75.1606783423134, 39.96577180717495], [-75.16056227887695, 39.96629531689701], [-75.16048339596443, 39.96667146909137], [-75.16040703472181, 39.96703130397831], [-75.16021432105333, 39.96788965927834], [-75.16016018888936, 39.968178321671864], [-75.16007335415503, 39.96860084432869], [-75.15997729346478, 39.968996296665715], [-75.15970329166524, 39.97020311206611], [-75.15944196657915, 39.971468323386574], [-75.15861164455573, 39.971348995116934], [-75.15728042119237, 39.971192141394845], [-75.1557193009253, 39.97098284413163], [-75.15415068105897, 39.97077954215101], [-75.15257454601797, 39.970571700083724], [-75.15269159270923, 39.97005595174743]]]}}, {"id": "5590", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.09255396545545, 40.00536603675294], [-75.09233848386813, 40.0051706262382], [-75.09221919628253, 40.00503682062715], [-75.0921010930726, 40.00487280351358], [-75.09183794632433, 40.00473062814792], [-75.09140573694945, 40.004554296486084], [-75.09097751437344, 40.004443576190404], [-75.09033735121965, 40.004222103066994], [-75.09015139125702, 40.004153884085476], [-75.08941342606012, 40.00388316403909], [-75.08888380083832, 40.00368440414936], [-75.08864656234672, 40.0035503823744], [-75.08842985436478, 40.003394154256455], [-75.08825342491625, 40.003213660293326], [-75.08810160755651, 40.003074055475324], [-75.08798430624469, 40.00288989257783], [-75.08790668836195, 40.00269656807221], [-75.08768061036204, 40.002278035314845], [-75.08758552063374, 40.00202886357714], [-75.08756900623546, 40.00178151413913], [-75.0875148209393, 40.00115780317993], [-75.0874978781014, 40.000754199257734], [-75.08747738455683, 40.00044123669756], [-75.08741858989772, 40.000102183717935], [-75.08725148428842, 39.99985134298901], [-75.0870710855701, 39.99960523222292], [-75.08666932734353, 39.9991549010774], [-75.08637219053867, 39.99889668903513], [-75.08650317560277, 39.99882817507667], [-75.08708989422199, 39.99851975337438], [-75.08946670816803, 39.997270276066914], [-75.0920722662799, 39.99589576298429], [-75.09452368021225, 39.994604333014706], [-75.09555908145178, 39.99409568671221], [-75.09700726018444, 39.99340093093542], [-75.09930174421098, 39.99218683465115], [-75.1016035551865, 39.99099546766221], [-75.10390372468184, 39.989797541868775], [-75.10477430011056, 39.98933284514133], [-75.10507636496406, 39.98917371176434], [-75.10632634532641, 39.98852519729498], [-75.10674905570413, 39.98898144880599], [-75.10704868744959, 39.989314137007256], [-75.10734060796894, 39.9896459638263], [-75.10773011087964, 39.99008089876677], [-75.10801484901846, 39.99040233705714], [-75.1083140210508, 39.990732525123946], [-75.1087554459966, 39.991238922759486], [-75.10934108323367, 39.991910744640194], [-75.10952824197115, 39.992124638379394], [-75.10971001729443, 39.99233598687909], [-75.11025974583154, 39.99295826605309], [-75.11137060339652, 39.994212496319484], [-75.11221308246229, 39.99517427233117], [-75.11330958515573, 39.99640977749513], [-75.11335627413635, 39.99651837529572], [-75.11271108848979, 39.99686096737343], [-75.1121339292869, 39.997159893810384], [-75.1115589347371, 39.99747639316599], [-75.11098376966241, 39.99780241424472], [-75.11041965972122, 39.998125838616055], [-75.10984871968364, 39.998437580857484], [-75.10929527099421, 39.998746113222424], [-75.10872428311191, 39.99903366531335], [-75.1081451160509, 39.99935864992294], [-75.10759389499513, 39.99966357921811], [-75.10644377204741, 40.00032368292104], [-75.10542739643184, 40.000874883725594], [-75.10419895428362, 40.00152691203503], [-75.10318091191402, 40.00209734827566], [-75.10308470566804, 40.002151232898676], [-75.10181133678756, 40.00286444150113], [-75.10049827342786, 40.00358035163278], [-75.09936342138738, 40.004204338993276], [-75.09798025936766, 40.004951203315294], [-75.096867594174, 40.0055623568645], [-75.09634801619768, 40.005852913915064], [-75.09327398346457, 40.00596226234677], [-75.09288480353679, 40.005974655093624], [-75.09181617120602, 40.00600868145237], [-75.09239074383822, 40.005511140248174], [-75.09255396545545, 40.00536603675294]]]}}, {"id": "5680", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13225594170935, 40.00363274185506], [-75.1325783050674, 40.002135590534316], [-75.13289707808269, 40.000644377340706], [-75.13323677148799, 39.99905883822483], [-75.13383077962293, 39.99913047723988], [-75.13441312486971, 39.99920862491413], [-75.13565223778376, 39.99937684278519], [-75.13852563068767, 39.999744178215266], [-75.13907061740818, 39.99981266897677], [-75.13952746728651, 39.999877985167934], [-75.1399888432736, 39.999933194748465], [-75.14031945964709, 39.99997299400659], [-75.14049855672104, 39.999994555103264], [-75.14047863717099, 40.00009495188522], [-75.14040264033144, 40.000477983232145], [-75.14022924746904, 40.001251083769084], [-75.14014907628051, 40.0015839349809], [-75.14063453178653, 40.00164705497362], [-75.14077743979948, 40.0016958264364], [-75.14006841565788, 40.00197168060588], [-75.13988662155539, 40.002842828195924], [-75.13960628994526, 40.00294220352529], [-75.13929567189308, 40.00305277121833], [-75.13898533409136, 40.00316379317689], [-75.13867532541023, 40.00327533899265], [-75.1383656919968, 40.0033874881072], [-75.13805660933845, 40.00350052113034], [-75.1377488996158, 40.00361575514893], [-75.13766927943385, 40.00364619730299], [-75.13744240731118, 40.00373293795305], [-75.13713677708644, 40.0038514992271], [-75.13683165251034, 40.003970866824645], [-75.13652667478337, 40.00409046944232], [-75.13622149461732, 40.00420973238526], [-75.1359157518846, 40.00432808881714], [-75.13560909369671, 40.00444496665626], [-75.13530090626963, 40.00455963199797], [-75.1349895542347, 40.004669614814944], [-75.13467397684518, 40.004771398547945], [-75.13435250240111, 40.004861512171956], [-75.13402486017198, 40.00493889706954], [-75.13369357562595, 40.00500497218568], [-75.13335888197858, 40.0050626585146], [-75.1330212513291, 40.00510594253852], [-75.13268120165456, 40.005131878874295], [-75.1323393000563, 40.005147432728876], [-75.13195017894888, 40.0051571594535], [-75.13206592362307, 40.00455975090279], [-75.13225594170935, 40.00363274185506]]]}}, {"id": "5700", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10351314693432, 39.9893369206364], [-75.10308064390418, 39.988847163864136], [-75.10265238198463, 39.988374283990176], [-75.10230801269951, 39.987975914202075], [-75.10195240299188, 39.98757392128347], [-75.10163181469454, 39.98721261325986], [-75.101311975064, 39.986847573232914], [-75.10094217065105, 39.98644174338533], [-75.10058282005755, 39.98602684857752], [-75.10031677022019, 39.98572886869802], [-75.10009754556556, 39.985478587939035], [-75.09980808572746, 39.98515543917393], [-75.09974432942074, 39.985080936240884], [-75.09953190679715, 39.98484255276022], [-75.09932259123386, 39.984596926008905], [-75.09908446847261, 39.98432642894208], [-75.09905740684128, 39.984253711143715], [-75.0990307256498, 39.984149133414206], [-75.09840808852695, 39.98338968708256], [-75.09824731408207, 39.98319358419305], [-75.09804767080702, 39.98295006964042], [-75.09763312964033, 39.98247808102554], [-75.09758221042588, 39.98240811463097], [-75.0975539446821, 39.982314105049944], [-75.0975577314891, 39.98222095340564], [-75.09759008657996, 39.98214100535176], [-75.0976493489436, 39.98206277572151], [-75.09776781703351, 39.98197314037179], [-75.09967356622244, 39.98097029444044], [-75.09784798833998, 39.978878425783975], [-75.09751316558146, 39.97850784737103], [-75.09383959244585, 39.97437300792721], [-75.09483265192154, 39.9741776430036], [-75.09667124539824, 39.973803513900265], [-75.09743238976397, 39.9736379594382], [-75.09804511557637, 39.973504683462046], [-75.0984435126403, 39.9734180244327], [-75.09962358715774, 39.97314785433316], [-75.10135237773447, 39.97271914088583], [-75.10307967990225, 39.972251161764746], [-75.10618538542172, 39.97121600245923], [-75.1087669398379, 39.970222892540406], [-75.11025601168305, 39.96964565307227], [-75.1114996663189, 39.969139770101634], [-75.11406183964452, 39.96805681489876], [-75.11993151327665, 39.97064517307754], [-75.12114399119184, 39.97140323275224], [-75.12124032747748, 39.97151408764217], [-75.12026167932584, 39.97241307167241], [-75.1196488826997, 39.9729759686648], [-75.12011691306996, 39.9732682506991], [-75.12027147970196, 39.97334921215298], [-75.12043960995102, 39.97341179687219], [-75.12071324814686, 39.97344208769076], [-75.12130210318591, 39.97341310161727], [-75.12179293061767, 39.973378695737765], [-75.12214708256286, 39.97355418709864], [-75.12262237426361, 39.97377310726972], [-75.12205945121542, 39.97433784634104], [-75.1216476749726, 39.97473299700309], [-75.12107558289397, 39.975296260148234], [-75.12097598096194, 39.97538559035902], [-75.12000099038568, 39.97593696366765], [-75.11979432968705, 39.976394887457175], [-75.11864142476595, 39.97890501186372], [-75.11835456588065, 39.97954198516514], [-75.11772738319301, 39.98093034717661], [-75.11738518098363, 39.98150738567307], [-75.11738085545169, 39.98151230877383], [-75.11771344779177, 39.981893242481284], [-75.11852341721955, 39.98282667399838], [-75.1191358701804, 39.98348600088939], [-75.11919036295231, 39.983550142775705], [-75.11969085296037, 39.98411339915456], [-75.12025206106696, 39.984756703332486], [-75.12090664203696, 39.985481406064345], [-75.1212126555554, 39.98582197636218], [-75.1215107497833, 39.98616688936588], [-75.12392849211, 39.98490340306844], [-75.12465597526973, 39.98452791773668], [-75.1250655663543, 39.98430498726714], [-75.12622812377951, 39.98369641651944], [-75.12682245317455, 39.983386960925024], [-75.12739883724821, 39.98308170284578], [-75.12797870050113, 39.98278676164064], [-75.12855382281006, 39.982481026760404], [-75.12898610754681, 39.98225344555778], [-75.12914472245183, 39.98217056132641], [-75.12933523561645, 39.982070909171554], [-75.12973559600937, 39.981861175408646], [-75.13033830584416, 39.98155001773191], [-75.13093007933422, 39.98123462399555], [-75.13136655491007, 39.981010901517074], [-75.13183190731813, 39.980765502527944], [-75.13265334485587, 39.98033873970294], [-75.13301724024231, 39.980120591075384], [-75.13319065263426, 39.98013574784717], [-75.13288008300748, 39.98154686361165], [-75.13288158399425, 39.98163265288409], [-75.13341080943681, 39.981699372023634], [-75.13392340603801, 39.981770568866075], [-75.13487065991411, 39.981888470214855], [-75.13578148349205, 39.98201048225343], [-75.13631469225547, 39.982077524588775], [-75.1368496275253, 39.98214824296992], [-75.13744398243685, 39.982224063368434], [-75.13813899339736, 39.98231364961067], [-75.13881084329309, 39.98240067192492], [-75.13891806064221, 39.98241335056541], [-75.13936497646219, 39.98247435434834], [-75.13986861741796, 39.98253743129194], [-75.14037075117886, 39.982602963060174], [-75.1406869260253, 39.981123617196054], [-75.1408216551943, 39.98052898711954], [-75.1410218897316, 39.979618813283], [-75.1415112522445, 39.979681680500754], [-75.14193713418241, 39.979740985557754], [-75.14210829574333, 39.97976240195687], [-75.14286771936777, 39.97985261552813], [-75.14303334564039, 39.97900298334407], [-75.14314046866812, 39.97836739419738], [-75.14375630225537, 39.97843254911381], [-75.14405950698142, 39.97847137322641], [-75.14464699302899, 39.978549148043435], [-75.14501101215193, 39.97859859204255], [-75.14579264210776, 39.97870283199536], [-75.14621504881288, 39.978756261424145], [-75.14658498086375, 39.978801493421564], [-75.14732538418636, 39.9788969009252], [-75.14811166218786, 39.978998965177915], [-75.14778251867806, 39.980496006284795], [-75.14745513601414, 39.981987551670095], [-75.14794623020516, 39.982050274322205], [-75.14843839356008, 39.98211158646729], [-75.1494428528043, 39.982242079566795], [-75.15001314411744, 39.98231620624612], [-75.14968633180648, 39.98380871779169], [-75.14950398760712, 39.98463024833647], [-75.1494332507939, 39.98496243191052], [-75.1493426008124, 39.98539344850191], [-75.14947287810017, 39.98541044376598], [-75.15091477997109, 39.985598532846595], [-75.15170235540398, 39.98570171004166], [-75.15248570735123, 39.98580294631227], [-75.15327633795096, 39.98590065219484], [-75.15406310987017, 39.986004580541646], [-75.1549397816308, 39.9861194562513], [-75.15540774318183, 39.98618087615382], [-75.15627637149069, 39.986284634879105], [-75.15593589746767, 39.987878554987844], [-75.15559310602195, 39.98937048713281], [-75.1554998987755, 39.989794409414735], [-75.1552710646978, 39.990854301803694], [-75.15506972645015, 39.99083911992631], [-75.15396997044064, 39.99069743079759], [-75.15307026424283, 39.990578595857045], [-75.15287221410173, 39.99055287770031], [-75.15149127773667, 39.9903735518906], [-75.15092207484999, 39.9903050550188], [-75.15047931750038, 39.990248048190566], [-75.1499162301982, 39.990170796234345], [-75.14935910335902, 39.99009310529301], [-75.14889812146112, 39.990037386804815], [-75.14834098292921, 39.98997194898325], [-75.14781131295904, 39.98990639776105], [-75.14754375226056, 39.98986497810584], [-75.14760275533222, 39.989961381659676], [-75.1480273988089, 39.99056278992367], [-75.14815313833667, 39.99072552900276], [-75.14830695816073, 39.99096960067433], [-75.14834622301967, 39.99106996958742], [-75.14837843921606, 39.991217649853986], [-75.14830855656979, 39.99150510945522], [-75.1480820231125, 39.99237630471542], [-75.14788703690505, 39.9930798799411], [-75.146882363615, 39.99295012073503], [-75.14608959689218, 39.99284960025018], [-75.14560313372758, 39.99278468699399], [-75.14511047460131, 39.99271674777694], [-75.1444670159411, 39.99263396927229], [-75.14383047084318, 39.99255141798455], [-75.14299899185374, 39.99245086645243], [-75.14217423972777, 39.99234441221609], [-75.14151207718533, 39.99225682117944], [-75.14086373856927, 39.992175219664745], [-75.14019800056143, 39.992087928038465], [-75.13970899094424, 39.99202958030164], [-75.13926139018056, 39.99197058202547], [-75.13835217472275, 39.99185285779908], [-75.13784387092095, 39.99178927860157], [-75.13734853427543, 39.9917304244261], [-75.13615995646202, 39.99156601616205], [-75.13546637554853, 39.99148048381726], [-75.13486914231545, 39.99140896839514], [-75.13433386723568, 39.99133132472353], [-75.13380448437566, 39.99126085613806], [-75.13334828398281, 39.991202409839445], [-75.13289367278115, 39.99114508728434], [-75.13242053001268, 39.99108443358905], [-75.13196035665526, 39.9910311963508], [-75.13143812359161, 39.99096152315822], [-75.13089889813841, 39.99089105165924], [-75.12897541590053, 39.990641759039676], [-75.12703151939232, 39.99038716308235], [-75.12594819181096, 39.990231008067155], [-75.12583337764181, 39.99015080201797], [-75.1254917782044, 39.98983790470489], [-75.12467941648082, 39.990280061064965], [-75.12443263724062, 39.99041437725906], [-75.12368779210668, 39.9908370053132], [-75.1225598379027, 39.99142904589025], [-75.12155268191938, 39.99200126868043], [-75.12031000021946, 39.99267372653925], [-75.11969525744287, 39.9930176547012], [-75.11827306308207, 39.99380494945997], [-75.11804388596643, 39.99392739215795], [-75.11577971940605, 39.99516863261082], [-75.11488815880926, 39.995651207425055], [-75.11443934320606, 39.99590407882544], [-75.11399780861547, 39.99614675119862], [-75.11335627413635, 39.99651837529572], [-75.11349353916128, 39.996509398474814], [-75.11378290403151, 39.99654566844975], [-75.11420376026825, 39.99660020163007], [-75.11544873273199, 39.996754717356865], [-75.11594728557785, 39.996823352482735], [-75.11641424499777, 39.99688234038955], [-75.11687527895985, 39.99694403320292], [-75.11738376209497, 39.997007889103365], [-75.117284481552, 39.99749552058664], [-75.11726460987974, 39.99759085143173], [-75.11720552832361, 39.99784824220488], [-75.11713718954385, 39.998204954618366], [-75.11705540656078, 39.99860245187495], [-75.11760779479803, 39.998672192592046], [-75.1181427263644, 39.99874006892576], [-75.11899483260045, 39.99885363710453], [-75.11948064078999, 39.99891846474961], [-75.11995841616955, 39.99897607104749], [-75.12043816082301, 39.99903124892896], [-75.12093406713585, 39.99909845694048], [-75.12141485963465, 39.99916050071101], [-75.12189645061733, 39.99922197325878], [-75.12286983433349, 39.999348225421684], [-75.1240010392231, 39.99949471531793], [-75.1250593976361, 39.99962937005506], [-75.12495304812299, 40.000118295958615], [-75.12482584559972, 40.00073781277301], [-75.1247327042775, 40.001125212840236], [-75.12441189333515, 40.002635747370185], [-75.12416377417915, 40.00383050497931], [-75.12394932729268, 40.0048150263638], [-75.1234268932234, 40.007213386785665], [-75.12271875342688, 40.007135884907754], [-75.11930063244641, 40.00668062097756], [-75.11348354800558, 40.00592851401563], [-75.10937229646842, 40.00539334662989], [-75.10862843880291, 40.00540581803255], [-75.10803781110063, 40.00543237740518], [-75.1073529084745, 40.00547269932909], [-75.10666156788085, 40.00548114721689], [-75.10602631109278, 40.00549929463638], [-75.10533698181442, 40.00551937536787], [-75.10327103349695, 40.005603012611246], [-75.10352956329014, 40.00443165033639], [-75.10360252415369, 40.00407447780811], [-75.10368780044956, 40.0036383117411], [-75.1037972729379, 40.003135874650006], [-75.10181133678756, 40.00286444150113], [-75.10049827342786, 40.00358035163278], [-75.09936342138738, 40.004204338993276], [-75.09798025936766, 40.004951203315294], [-75.096867594174, 40.0055623568645], [-75.09634801619768, 40.005852913915064], [-75.09327398346457, 40.00596226234677], [-75.09288480353679, 40.005974655093624], [-75.09181617120602, 40.00600868145237], [-75.09239074383822, 40.005511140248174], [-75.09255396545545, 40.00536603675294], [-75.09233848386813, 40.0051706262382], [-75.09221919628253, 40.00503682062715], [-75.0921010930726, 40.00487280351358], [-75.09183794632433, 40.00473062814792], [-75.09140573694945, 40.004554296486084], [-75.09097751437344, 40.004443576190404], [-75.09033735121965, 40.004222103066994], [-75.09015139125702, 40.004153884085476], [-75.08941342606012, 40.00388316403909], [-75.08888380083832, 40.00368440414936], [-75.08864656234672, 40.0035503823744], [-75.08842985436478, 40.003394154256455], [-75.08825342491625, 40.003213660293326], [-75.08810160755651, 40.003074055475324], [-75.08798430624469, 40.00288989257783], [-75.08790668836195, 40.00269656807221], [-75.08768061036204, 40.002278035314845], [-75.08758552063374, 40.00202886357714], [-75.08756900623546, 40.00178151413913], [-75.0875148209393, 40.00115780317993], [-75.0874978781014, 40.000754199257734], [-75.08747738455683, 40.00044123669756], [-75.08741858989772, 40.000102183717935], [-75.08725148428842, 39.99985134298901], [-75.0870710855701, 39.99960523222292], [-75.08666932734353, 39.9991549010774], [-75.08637219053867, 39.99889668903513], [-75.08650317560277, 39.99882817507667], [-75.08708989422199, 39.99851975337438], [-75.08946670816803, 39.997270276066914], [-75.0920722662799, 39.99589576298429], [-75.09452368021225, 39.994604333014706], [-75.09555908145178, 39.99409568671221], [-75.09700726018444, 39.99340093093542], [-75.09930174421098, 39.99218683465115], [-75.1016035551865, 39.99099546766221], [-75.10390372468184, 39.989797541868775], [-75.10390971850677, 39.989794342522494], [-75.10351314693432, 39.9893369206364]], [[-75.10737064629286, 39.98967049495309], [-75.10707872669175, 39.989338668237636], [-75.10677909348554, 39.98900598098831], [-75.10635638278846, 39.98854972868803], [-75.10635144611298, 39.988552289988235], [-75.10674905570413, 39.98898144880599], [-75.10704868744959, 39.989314137007256], [-75.10734060796894, 39.9896459638263], [-75.10773011087964, 39.99008089876677], [-75.10801484901846, 39.99040233705714], [-75.1083140210508, 39.990732525123946], [-75.1087554459966, 39.991238922759486], [-75.10876125394992, 39.99123565516094], [-75.10834406137712, 39.990757056022076], [-75.10804488788534, 39.990426868907115], [-75.10776015070692, 39.99010542981824], [-75.10737064629286, 39.98967049495309]], [[-75.11128523736149, 39.99005508556822], [-75.1111666476381, 39.98992317018299], [-75.11116134482363, 39.98992615683433], [-75.1112551974888, 39.99003055456577], [-75.11147487961829, 39.99027300856957], [-75.11148009982134, 39.99027014617919], [-75.11128523736149, 39.99005508556822]]]}}, {"id": "6030", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1821248520501, 40.02604741606695], [-75.18166803708723, 40.02565827051328], [-75.17984442801564, 40.024087111001535], [-75.17903439685347, 40.02333017978122], [-75.17813356713184, 40.022588967799784], [-75.1781634577923, 40.02232191114883], [-75.17819654807381, 40.022059883507694], [-75.17822909970849, 40.02179783748928], [-75.17826098048974, 40.02153576743003], [-75.17829207453775, 40.02127366983408], [-75.17832225316255, 40.02101153911683], [-75.17835132003574, 40.020749360970896], [-75.17836483896939, 40.02048572998522], [-75.17835128765265, 40.02022254243119], [-75.17829905577587, 40.01996324862947], [-75.17821811683437, 40.01968915969033], [-75.17812245920452, 40.019436176044145], [-75.17802950186633, 40.01918236889096], [-75.17793398080568, 40.018929343960046], [-75.17783062615489, 40.01867870863221], [-75.17771296225875, 40.01843197748175], [-75.17756704006801, 40.01819271861627], [-75.17738626062157, 40.01796889046678], [-75.1771925170203, 40.01775198501652], [-75.17699866248022, 40.01753513258645], [-75.17680470071932, 40.01731832785329], [-75.17661063755828, 40.01710157184788], [-75.17641647316844, 40.016884860068586], [-75.17622220978954, 40.01666819526803], [-75.1760278511054, 40.01645157302326], [-75.17584542335327, 40.01624838166194], [-75.17575476211923, 40.01614745779258], [-75.17565908381408, 40.01604096033477], [-75.17552671391125, 40.015893697405055], [-75.17544423876154, 40.015801951603464], [-75.17524953212295, 40.01558548770875], [-75.17505474670979, 40.0153690631341], [-75.17485988513735, 40.0151526707297], [-75.17466494844024, 40.01493631412243], [-75.17446994026795, 40.014719989789626], [-75.17427486537244, 40.01450369603558], [-75.17407972733481, 40.01428743113824], [-75.17388452615543, 40.014071195097266], [-75.17368926651781, 40.01385498801739], [-75.173493951003, 40.01363880364923], [-75.17330414845071, 40.01342880284322], [-75.17310316505105, 40.01320650783698], [-75.17290770415151, 40.01299039210142], [-75.17271219560573, 40.012774298360135], [-75.17251664898511, 40.01255822142175], [-75.17232106308491, 40.01234216215997], [-75.17212544499837, 40.01212611893189], [-75.1719297936233, 40.01191008991051], [-75.1717341148136, 40.01169407522714], [-75.17153840994537, 40.01147806950644], [-75.17134268473573, 40.011262076480755], [-75.17114693811662, 40.01104609342295], [-75.17095117611288, 40.010830115963145], [-75.17075539862202, 40.01061414680205], [-75.17055961518098, 40.01039818164876], [-75.1703638212095, 40.0101822176973], [-75.17016802476591, 40.00996625873271], [-75.17012183886611, 40.009915319234196], [-75.17027816930145, 40.009837310105105], [-75.17056549159035, 40.00969421733024], [-75.17085302274307, 40.0095513925516], [-75.17114081893814, 40.009408899199265], [-75.17142893153489, 40.00926680419859], [-75.17171807731377, 40.00912597960543], [-75.17201478572093, 40.00899458472763], [-75.17231497932914, 40.00886798956168], [-75.17261598778865, 40.00874233816866], [-75.17289976733551, 40.00862885398273], [-75.17322881678321, 40.008508366147595], [-75.17354518230786, 40.008407551969064], [-75.17386255750822, 40.00830866613599], [-75.17418020188195, 40.00821038105396], [-75.17450135375312, 40.00811949811968], [-75.17482574100757, 40.00803540932257], [-75.17515173790514, 40.00795495076213], [-75.17547878827409, 40.00787715578088], [-75.17580848000264, 40.00780637581546], [-75.17614027259992, 40.0077412625246], [-75.17647388047243, 40.007682150068774], [-75.17680993770276, 40.007632744984505], [-75.17714771609977, 40.007589819726114], [-75.17748625496522, 40.00755025147113], [-75.17782497552301, 40.00751233965202], [-75.17817990974089, 40.00747547030837], [-75.17850353803009, 40.007442419954835], [-75.17884254943282, 40.00740598482527], [-75.1791808013841, 40.00736527442401], [-75.17949583686833, 40.007330268309794], [-75.17985986450924, 40.007299379194045], [-75.18020121485219, 40.00727939352919], [-75.1805427636371, 40.00726217649447], [-75.18088436810777, 40.00724549489363], [-75.18122601266239, 40.00722923484977], [-75.18156769013017, 40.00721327636771], [-75.18190938624555, 40.00719750109568], [-75.18225108780933, 40.00718179340903], [-75.18259278643873, 40.0071660341871], [-75.18309910876698, 40.007142337153745], [-75.18751678904931, 40.00693619642412], [-75.18875577856281, 40.00687835254241], [-75.18979495444817, 40.00682982508193], [-75.19013391830701, 40.006793039509155], [-75.19047279783496, 40.00675583840279], [-75.19081081926585, 40.00671456625028], [-75.19114793109786, 40.00666897143275], [-75.19148464086909, 40.006621471858764], [-75.19159962191372, 40.00660536533527], [-75.19182140823222, 40.006574296052555], [-75.19215822867767, 40.00652737723856], [-75.19248650438152, 40.00648631915835], [-75.19282909227685, 40.006720041632185], [-75.1931745133191, 40.006946139642274], [-75.1940657933079, 40.007370640630775], [-75.19523788704916, 40.00776465223345], [-75.19662197462642, 40.00814921442729], [-75.19741007533945, 40.00838739067628], [-75.19798662998474, 40.00856163000309], [-75.1995671662532, 40.00910618352392], [-75.20096916234523, 40.0095052402321], [-75.20278453559125, 40.0101681675687], [-75.20411797328548, 40.01067887127354], [-75.20493269018309, 40.011036554083525], [-75.20556089846534, 40.01144637353623], [-75.20583087553283, 40.01162249423849], [-75.20598118504968, 40.011722063535636], [-75.20605558240162, 40.01177134883842], [-75.20613902163231, 40.01182662245913], [-75.20640550638981, 40.012003148204144], [-75.20760649409308, 40.01272404544921], [-75.2086521136056, 40.01343967710121], [-75.21000742817179, 40.01410645377305], [-75.21166268341004, 40.015119462622884], [-75.21308389807258, 40.01624048556557], [-75.21384979900387, 40.01692249206666], [-75.21464457001309, 40.017817392484254], [-75.21542414542677, 40.01862704494904], [-75.2162562666293, 40.01950860927236], [-75.21734481410951, 40.02042412150334], [-75.21856318246036, 40.02131418430032], [-75.21939048433295, 40.02185599674593], [-75.22056540237243, 40.02220734989407], [-75.22126003177011, 40.022335853157074], [-75.22222421119417, 40.022640097680785], [-75.22304860630462, 40.02323842117824], [-75.22394763206715, 40.023810080688754], [-75.22487599450581, 40.0242944622951], [-75.22519348185745, 40.02446011104909], [-75.22631113681243, 40.025093159203045], [-75.22795481788366, 40.02593586023214], [-75.22813603325612, 40.02602641551546], [-75.22967908820523, 40.02679445646915], [-75.23074584431313, 40.02731313629939], [-75.23170331576, 40.027801110198155], [-75.23290675810962, 40.02860578109708], [-75.23392315762696, 40.02949124533276], [-75.2350183907117, 40.030236920862365], [-75.23569898916516, 40.03074709666462], [-75.23713850345766, 40.03164179287043], [-75.23794421073465, 40.03207409545746], [-75.2383207666653, 40.032276133395676], [-75.23981029716893, 40.03331339537024], [-75.24048991682038, 40.03385182089564], [-75.24126945829778, 40.03467543949548], [-75.24188660444196, 40.035410599628975], [-75.24242328641597, 40.03583268652996], [-75.2429794123921, 40.03622689416779], [-75.24352237310877, 40.036479305759755], [-75.24437387203027, 40.036851649750155], [-75.24495050064645, 40.03718969357607], [-75.24559602036331, 40.037656590452954], [-75.24617090319563, 40.038291751393665], [-75.24700119872512, 40.03973906042202], [-75.24792075661651, 40.04076378900924], [-75.24904061279294, 40.04184947352197], [-75.25098609010281, 40.04326442539769], [-75.25288357388546, 40.04473489920496], [-75.25431892977208, 40.04575663310977], [-75.25589350664505, 40.04649835845789], [-75.25765698741405, 40.047612077465544], [-75.25962262300425, 40.04923956838294], [-75.26109832862248, 40.05067245466669], [-75.2626772349632, 40.05230566326601], [-75.26440145602456, 40.05411924457915], [-75.26386876848365, 40.05455088467353], [-75.26364402450334, 40.05475780096561], [-75.2635192278265, 40.05487269924374], [-75.26322298086806, 40.05514544642252], [-75.24345817374991, 40.07333560805698], [-75.24328766603712, 40.07349322360966], [-75.24313842579609, 40.07363184419745], [-75.24306339869048, 40.07370411565387], [-75.24210907881313, 40.07464282449793], [-75.24128588359679, 40.07545310524678], [-75.24095812787534, 40.07576877273638], [-75.24067409635178, 40.07605051585533], [-75.24039019564327, 40.076341496314605], [-75.24012963143099, 40.07659792106551], [-75.23999636903362, 40.0767244513198], [-75.23965572220074, 40.07704923562079], [-75.23936865476257, 40.077321574264296], [-75.23821696094798, 40.07847643574011], [-75.23770858074418, 40.078980513623826], [-75.2371717123157, 40.07950751482991], [-75.23668159485884, 40.07999675562678], [-75.23622461299013, 40.08045186530228], [-75.23609103734573, 40.08058545994921], [-75.23301936788978, 40.08363141840429], [-75.23178908302853, 40.08484644728194], [-75.23055919982524, 40.08606102127528], [-75.22773343695147, 40.08881835136036], [-75.22359382389517, 40.09292898904922], [-75.22018215051745, 40.090987381580675], [-75.21963379661355, 40.09067184471324], [-75.21679214667414, 40.08903660075094], [-75.21512274979831, 40.08807586703638], [-75.21434841609376, 40.08763022044048], [-75.21413160426536, 40.08750543917298], [-75.21375197276815, 40.087291903724214], [-75.21283123393746, 40.08675631936212], [-75.21177555623677, 40.08614222151246], [-75.21035288220077, 40.08531460941738], [-75.20997168856624, 40.085169123801826], [-75.20977974603359, 40.085090031618805], [-75.20963620520541, 40.085022979412834], [-75.20948176906893, 40.08494332721877], [-75.20928421156539, 40.08483426722577], [-75.20915570284714, 40.08475537509521], [-75.20891071574653, 40.08457532509507], [-75.20843502940461, 40.08419887541467], [-75.2063242757714, 40.08297083901374], [-75.20488165090603, 40.08214435799494], [-75.20414582216543, 40.08172278662238], [-75.20267381649565, 40.08087960607389], [-75.2009356191845, 40.0798838978099], [-75.20045304605522, 40.07960745181517], [-75.19835139218625, 40.07840344884116], [-75.19764268313288, 40.07799742241749], [-75.19643439831073, 40.07730516345369], [-75.19595648241079, 40.07703270074233], [-75.19500340736744, 40.076489337754225], [-75.19083279681232, 40.07411548107926], [-75.18967703529019, 40.07346034863238], [-75.1892072590428, 40.073164558665844], [-75.18850083767563, 40.072765298951126], [-75.18842266937398, 40.072840843860725], [-75.1870611695249, 40.0741566125007], [-75.18698669964411, 40.0742430456326], [-75.18591820379741, 40.07528352592726], [-75.18584257629753, 40.075350095113144], [-75.1850233512383, 40.07615035378346], [-75.18380354697693, 40.0773740197529], [-75.18194161224882, 40.07641177158509], [-75.18181960944209, 40.076472005835555], [-75.18150775129591, 40.07676652494106], [-75.18127577782226, 40.07701929846174], [-75.181030059986, 40.07727343208425], [-75.18077977253778, 40.07752894161619], [-75.18049874457054, 40.07781947926673], [-75.18028393325905, 40.0780499157515], [-75.1802389798596, 40.077946920259826], [-75.17844985463559, 40.076930025345625], [-75.17684189203585, 40.07598139144614], [-75.17702354357212, 40.07568853946867], [-75.17723572756108, 40.075347332512585], [-75.17740490470734, 40.075083609626276], [-75.17761720606259, 40.07473265125835], [-75.17781843262479, 40.07442285047015], [-75.17802828865062, 40.07406639821007], [-75.17898196770119, 40.0721552672007], [-75.17937270298397, 40.07139944954563], [-75.17944859352355, 40.071262433472086], [-75.17953391169506, 40.071163544421765], [-75.17981933918136, 40.070876185778644], [-75.18048295831493, 40.07019200510883], [-75.18108824954528, 40.069602032708595], [-75.18175175187088, 40.06890397071676], [-75.18090101784799, 40.06841272994902], [-75.18054528168594, 40.06819117349491], [-75.18011080793077, 40.06795527424724], [-75.17997631626186, 40.067875264486865], [-75.17930582966149, 40.06748374481404], [-75.17867207808484, 40.06711878666639], [-75.17800957051952, 40.06674475950524], [-75.17764680439015, 40.06654750587865], [-75.17726171534507, 40.06633115264945], [-75.17711530184557, 40.06624476362587], [-75.17695379388663, 40.066151322996184], [-75.17652615372914, 40.06589703428178], [-75.17772396742323, 40.06473889800499], [-75.17842108801139, 40.06403171575031], [-75.17915926787137, 40.063318167187305], [-75.17992069834072, 40.06258220722493], [-75.18054279102539, 40.06197862111421], [-75.18080527694892, 40.061725900603314], [-75.18090811057657, 40.061608494800076], [-75.18115290444139, 40.061375417270774], [-75.18131392482739, 40.06122210131275], [-75.18155571566143, 40.061006075885004], [-75.18177885875095, 40.06076888207175], [-75.18336624418237, 40.059221535836], [-75.18404519236326, 40.05857345529716], [-75.18476966794022, 40.05785849127056], [-75.18486134639281, 40.05779373121243], [-75.1849563775198, 40.05773494212012], [-75.18653553874663, 40.05621047774239], [-75.18730678094542, 40.05548581666945], [-75.18696188620653, 40.05482355399488], [-75.1867785678006, 40.05450532939778], [-75.18651717607368, 40.053967139677184], [-75.18611595407215, 40.053247312429534], [-75.18568090856587, 40.0524229651019], [-75.18528871203894, 40.051744551606674], [-75.18522100345294, 40.05158637481057], [-75.18501659720498, 40.05121743514732], [-75.1846937674163, 40.05064241151825], [-75.18457340886603, 40.05040492237618], [-75.18436784380793, 40.05006963513841], [-75.18420344684705, 40.049775693340166], [-75.18396765482593, 40.049314893850955], [-75.18391838926657, 40.04920943606664], [-75.18376010127409, 40.04891675714872], [-75.18339861136822, 40.04825532226838], [-75.18279836557451, 40.04707577114246], [-75.18220444401027, 40.0458957297085], [-75.18170260015731, 40.044832379521964], [-75.18143093247392, 40.04416263987507], [-75.18125703292239, 40.043733829527675], [-75.18117466376285, 40.04361035144422], [-75.18097922010578, 40.04333838114339], [-75.18088411064987, 40.0432480218722], [-75.17998167048039, 40.04209473357406], [-75.17963202957364, 40.04168252762443], [-75.17912977440957, 40.04106626641239], [-75.17871264213939, 40.04055843101864], [-75.1786313883227, 40.04045502151935], [-75.17775844345613, 40.039402056474906], [-75.17762916337077, 40.03923034817212], [-75.17695591195294, 40.03842372889561], [-75.17642853248903, 40.037795390475246], [-75.17614415827084, 40.0374530957513], [-75.17562257070458, 40.0367689105063], [-75.17520805709144, 40.03623377954292], [-75.17472531934024, 40.03582198106344], [-75.17649623766056, 40.03409785740428], [-75.17757545599665, 40.033047573898465], [-75.17773994379091, 40.032891613455284], [-75.1784680745982, 40.03217747122257], [-75.1788081294255, 40.03185131024302], [-75.17891466313162, 40.0317380686852], [-75.18029157893811, 40.030412246474555], [-75.18088365695873, 40.029841509241315], [-75.18148137413901, 40.02926532344677], [-75.182702183151, 40.028056239616085], [-75.18354462742221, 40.02726656215683], [-75.18293309559137, 40.02674623378277], [-75.1821248520501, 40.02604741606695]]]}}, {"id": "6060", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15950224294882, 40.0223432341361], [-75.16020566761645, 40.021312918917715], [-75.160587094013, 40.02047412659202], [-75.16064104200257, 40.02032672424692], [-75.16065723063446, 40.020267866462135], [-75.16069195307685, 40.020154843997446], [-75.16165740699451, 40.019866523130446], [-75.16260104521236, 40.019587285956476], [-75.1637594507446, 40.01923581659435], [-75.16382947760472, 40.01918243550099], [-75.1642100579168, 40.01894959041402], [-75.16451672375794, 40.01882070935512], [-75.16549601289547, 40.018389849712655], [-75.16580943584417, 40.018250581845486], [-75.16595069899675, 40.01817014864473], [-75.16612297805914, 40.01804860618353], [-75.16637408236633, 40.017853963773874], [-75.16686766643225, 40.017471360816195], [-75.16726952579513, 40.01715117286135], [-75.16773914456775, 40.01677676715074], [-75.1681011247023, 40.0164922616461], [-75.16830601223785, 40.01634706248918], [-75.16843373327283, 40.016281090405364], [-75.16875550853955, 40.016063754154686], [-75.16903385880265, 40.01586767344456], [-75.16922639801739, 40.015723223219084], [-75.16932388598943, 40.01561308507677], [-75.16990856732517, 40.015251275367135], [-75.17185110939445, 40.01421865254688], [-75.17330414845071, 40.01342880284322], [-75.173493951003, 40.01363880364923], [-75.17368926651781, 40.01385498801739], [-75.17388452615543, 40.014071195097266], [-75.17407972733481, 40.01428743113824], [-75.17427486537244, 40.01450369603558], [-75.17446994026795, 40.014719989789626], [-75.17466494844024, 40.01493631412243], [-75.17485988513735, 40.0151526707297], [-75.17505474670979, 40.0153690631341], [-75.17524953212295, 40.01558548770875], [-75.17544423876154, 40.015801951603464], [-75.17552671391125, 40.015893697405055], [-75.17565908381408, 40.01604096033477], [-75.17575476211923, 40.01614745779258], [-75.17584542335327, 40.01624838166194], [-75.1760278511054, 40.01645157302326], [-75.17622220978954, 40.01666819526803], [-75.17641647316844, 40.016884860068586], [-75.17661063755828, 40.01710157184788], [-75.17680470071932, 40.01731832785329], [-75.17699866248022, 40.01753513258645], [-75.1771925170203, 40.01775198501652], [-75.17738626062157, 40.01796889046678], [-75.17756704006801, 40.01819271861627], [-75.17771296225875, 40.01843197748175], [-75.17783062615489, 40.01867870863221], [-75.17793398080568, 40.018929343960046], [-75.17802950186633, 40.01918236889096], [-75.17812245920452, 40.019436176044145], [-75.17821811683437, 40.01968915969033], [-75.17829905577587, 40.01996324862947], [-75.17835128765265, 40.02022254243119], [-75.17836483896939, 40.02048572998522], [-75.17835132003574, 40.020749360970896], [-75.17832225316255, 40.02101153911683], [-75.17829207453775, 40.02127366983408], [-75.17826098048974, 40.02153576743003], [-75.17822909970849, 40.02179783748928], [-75.17819654807381, 40.022059883507694], [-75.1781634577923, 40.02232191114883], [-75.17813356713184, 40.022588967799784], [-75.17903439685347, 40.02333017978122], [-75.17984442801564, 40.024087111001535], [-75.18166803708723, 40.02565827051328], [-75.1821248520501, 40.02604741606695], [-75.18293309559137, 40.02674623378277], [-75.18354462742221, 40.02726656215683], [-75.182702183151, 40.028056239616085], [-75.18148137413901, 40.02926532344677], [-75.18088365695873, 40.029841509241315], [-75.18029157893811, 40.030412246474555], [-75.17891466313162, 40.0317380686852], [-75.1788081294255, 40.03185131024302], [-75.1784680745982, 40.03217747122257], [-75.17773994379091, 40.032891613455284], [-75.17757545599665, 40.033047573898465], [-75.17649623766056, 40.03409785740428], [-75.17472531934024, 40.03582198106344], [-75.17520805709144, 40.03623377954292], [-75.17562257070458, 40.0367689105063], [-75.17614415827084, 40.0374530957513], [-75.17642853248903, 40.037795390475246], [-75.17695591195294, 40.03842372889561], [-75.17762916337077, 40.03923034817212], [-75.17775844345613, 40.039402056474906], [-75.1786313883227, 40.04045502151935], [-75.17871264213939, 40.04055843101864], [-75.17912977440957, 40.04106626641239], [-75.17963202957364, 40.04168252762443], [-75.17998167048039, 40.04209473357406], [-75.18088411064987, 40.0432480218722], [-75.18097922010578, 40.04333838114339], [-75.18117466376285, 40.04361035144422], [-75.18125703292239, 40.043733829527675], [-75.18143093247392, 40.04416263987507], [-75.18170260015731, 40.044832379521964], [-75.18220444401027, 40.0458957297085], [-75.18279836557451, 40.04707577114246], [-75.18339861136822, 40.04825532226838], [-75.18376010127409, 40.04891675714872], [-75.18391838926657, 40.04920943606664], [-75.18396765482593, 40.049314893850955], [-75.18420344684705, 40.049775693340166], [-75.18436784380793, 40.05006963513841], [-75.18457340886603, 40.05040492237618], [-75.1846937674163, 40.05064241151825], [-75.18501659720498, 40.05121743514732], [-75.18522100345294, 40.05158637481057], [-75.18528871203894, 40.051744551606674], [-75.18568090856587, 40.0524229651019], [-75.18611595407215, 40.053247312429534], [-75.18651717607368, 40.053967139677184], [-75.1867785678006, 40.05450532939778], [-75.18696188620653, 40.05482355399488], [-75.18730678094542, 40.05548581666945], [-75.18653553874663, 40.05621047774239], [-75.1849563775198, 40.05773494212012], [-75.18486134639281, 40.05779373121243], [-75.18476966794022, 40.05785849127056], [-75.18404519236326, 40.05857345529716], [-75.18336624418237, 40.059221535836], [-75.18177885875095, 40.06076888207175], [-75.18155571566143, 40.061006075885004], [-75.18131392482739, 40.06122210131275], [-75.18115290444139, 40.061375417270774], [-75.18090811057657, 40.061608494800076], [-75.18080527694892, 40.061725900603314], [-75.18054279102539, 40.06197862111421], [-75.17992069834072, 40.06258220722493], [-75.17915926787137, 40.063318167187305], [-75.17842108801139, 40.06403171575031], [-75.17772396742323, 40.06473889800499], [-75.17652615372914, 40.06589703428178], [-75.17695379388663, 40.066151322996184], [-75.17711530184557, 40.06624476362587], [-75.17726171534507, 40.06633115264945], [-75.17764680439015, 40.06654750587865], [-75.17800957051952, 40.06674475950524], [-75.17867207808484, 40.06711878666639], [-75.17930582966149, 40.06748374481404], [-75.17997631626186, 40.067875264486865], [-75.18011080793077, 40.06795527424724], [-75.18054528168594, 40.06819117349491], [-75.18090101784799, 40.06841272994902], [-75.18175175187088, 40.06890397071676], [-75.18108824954528, 40.069602032708595], [-75.18048295831493, 40.07019200510883], [-75.17981933918136, 40.070876185778644], [-75.17953391169506, 40.071163544421765], [-75.17944859352355, 40.071262433472086], [-75.17937270298397, 40.07139944954563], [-75.17898196770119, 40.0721552672007], [-75.17802828865062, 40.07406639821007], [-75.17781843262479, 40.07442285047015], [-75.17761720606259, 40.07473265125835], [-75.17740490470734, 40.075083609626276], [-75.17723572756108, 40.075347332512585], [-75.17702354357212, 40.07568853946867], [-75.17684189203585, 40.07598139144614], [-75.17844985463559, 40.076930025345625], [-75.1802389798596, 40.077946920259826], [-75.18028393325905, 40.0780499157515], [-75.18049874457054, 40.07781947926673], [-75.18077977253778, 40.07752894161619], [-75.181030059986, 40.07727343208425], [-75.18127577782226, 40.07701929846174], [-75.18150775129591, 40.07676652494106], [-75.18181960944209, 40.076472005835555], [-75.18194161224882, 40.07641177158509], [-75.18380354697693, 40.0773740197529], [-75.18338031680676, 40.07779858590659], [-75.18309433465161, 40.07807587966636], [-75.18287149014344, 40.078292464114064], [-75.18258086041408, 40.07857492735905], [-75.18232052018368, 40.07884043664458], [-75.18203755777367, 40.07910908539153], [-75.18180286135693, 40.079337154012684], [-75.18145425234837, 40.07967940722044], [-75.18111760840718, 40.08001602438674], [-75.18082835390277, 40.080295325576316], [-75.18051355457972, 40.08060664800581], [-75.18026277904949, 40.08085339519159], [-75.18000629267141, 40.08109897260521], [-75.1797465281049, 40.081356162231216], [-75.17947174227169, 40.08161030603028], [-75.17919957785055, 40.08187937536236], [-75.17894425415764, 40.082141941628535], [-75.17868482425071, 40.08239067875266], [-75.17844262597258, 40.08264111363603], [-75.17819946150917, 40.08287791311066], [-75.17794373603151, 40.083129189512114], [-75.17769764878433, 40.083386235797065], [-75.17643825170076, 40.08465273993144], [-75.17617086031584, 40.08449802955405], [-75.17587162456431, 40.08432420858097], [-75.17565377401108, 40.08419536522242], [-75.17534368589227, 40.08401196620428], [-75.17513240532602, 40.083887005460255], [-75.17478569112538, 40.08368194223895], [-75.17451282257665, 40.08352055207597], [-75.17415810344424, 40.08331074839847], [-75.17392483275896, 40.08317277840625], [-75.17357374932254, 40.08296512124009], [-75.1733047962172, 40.082806040432715], [-75.17293752614974, 40.08258880643946], [-75.17206912077135, 40.08207514660764], [-75.1717125938213, 40.081864259219266], [-75.16993233616797, 40.080811185455374], [-75.16826691265771, 40.079825985671924], [-75.16766083538825, 40.07946744025506], [-75.16408829184321, 40.077353842883106], [-75.16339656128754, 40.07696659290676], [-75.1604288812882, 40.07531266399091], [-75.15912148998693, 40.07459926761436], [-75.15838366762185, 40.0741818577783], [-75.15662764764954, 40.073184684935896], [-75.1558340546091, 40.072734017011875], [-75.15469496358601, 40.07208558563241], [-75.15407609241902, 40.071733279851415], [-75.15333305739387, 40.071310283447445], [-75.15275632915203, 40.07098195424609], [-75.15218557363076, 40.070657020518695], [-75.1518743522914, 40.07047983851803], [-75.1515895445759, 40.07031768987099], [-75.1507247653823, 40.06982534507238], [-75.15004070721001, 40.06943588345188], [-75.14960541385284, 40.06918804665245], [-75.14835533464405, 40.06847629140363], [-75.1476786971091, 40.06809102144619], [-75.14666575147052, 40.067521504880396], [-75.14550083646236, 40.066852333810544], [-75.14521906964595, 40.06669047274589], [-75.1445545761143, 40.06631208041861], [-75.14405155015547, 40.06601595270874], [-75.14309806566018, 40.06547590316734], [-75.1418870299279, 40.06478995437998], [-75.14077361287495, 40.06415244752091], [-75.13941558224629, 40.06338650266371], [-75.13680077963983, 40.061950670877565], [-75.13518201886446, 40.06095171336758], [-75.13411737359088, 40.06029467864256], [-75.13336952909367, 40.05983314071961], [-75.13306980634653, 40.059648161740796], [-75.13011006466647, 40.0578699154973], [-75.12897416052719, 40.05718740622033], [-75.1290445515563, 40.05703322693472], [-75.13000011598297, 40.05555327791002], [-75.12918727245439, 40.05565461231603], [-75.12922179044439, 40.05440819171393], [-75.12924104435761, 40.053622265606776], [-75.12876930743163, 40.05356421498887], [-75.12791015844874, 40.053461088976896], [-75.12824747591462, 40.051887744051875], [-75.12858891879509, 40.05036125112049], [-75.12945227218991, 40.050489274927635], [-75.13111308760577, 40.050690271010204], [-75.13140423760464, 40.04940024691916], [-75.13166128235686, 40.048156268360856], [-75.1332567119416, 40.048777459670774], [-75.13375894185535, 40.0488817426885], [-75.13409180476353, 40.048902587735896], [-75.13440674322722, 40.04891116535305], [-75.13470588083467, 40.04893219041025], [-75.13471592360841, 40.0486818070314], [-75.13471906989062, 40.04841859647586], [-75.13472046245599, 40.048155380230874], [-75.13472165229443, 40.04789216116925], [-75.13472266045814, 40.04762894067132], [-75.13472350689706, 40.04736571829014], [-75.13472421038942, 40.04710249355224], [-75.13472479198656, 40.04683926783781], [-75.1347252728087, 40.04657604072672], [-75.1347256727699, 40.04631281267226], [-75.13472590134562, 40.046135759857265], [-75.13472601174911, 40.04604958502804], [-75.13472630862711, 40.045786354619786], [-75.13472658669221, 40.045523125581795], [-75.13472686127587, 40.04525989556012], [-75.13472715583922, 40.04499666418777], [-75.13472748898417, 40.044733435492475], [-75.13472788313881, 40.04447020547966], [-75.13472835459646, 40.044206977223425], [-75.13472892805768, 40.043943748583104], [-75.13472962098656, 40.04368052265935], [-75.13472969726423, 40.04341726647428], [-75.13472697741948, 40.04315389256317], [-75.13472352169212, 40.042890480269094], [-75.13472182558891, 40.042627129658364], [-75.13472438816113, 40.04236393907692], [-75.13473370487289, 40.04210100769038], [-75.13475175466523, 40.04183839136754], [-75.13477741194309, 40.04157600140778], [-75.13480890949876, 40.04131382009847], [-75.13484452100693, 40.0410518342622], [-75.13488252571301, 40.040790038958356], [-75.13492119862019, 40.040528418339036], [-75.13496233925464, 40.04026715213024], [-75.13500880438107, 40.040006362132374], [-75.13505778090732, 40.03974579508309], [-75.13510640080575, 40.03948519467066], [-75.1351508380495, 40.03922409987065], [-75.13519214212045, 40.03896256431206], [-75.13524186910239, 40.03870228819914], [-75.13530975823267, 40.038444142866446], [-75.13539985461783, 40.03818986383155], [-75.13551964132269, 40.03794392826701], [-75.13566051505993, 40.037703539013485], [-75.13579331165975, 40.037460704204015], [-75.1359172080124, 40.03721491407448], [-75.13596239568302, 40.03714069095362], [-75.13643742560077, 40.03719714962134], [-75.13682469320108, 40.03688982868427], [-75.13720839198119, 40.03656309931997], [-75.13816430148131, 40.03580745474563], [-75.13837487569867, 40.03588478067623], [-75.13909695975165, 40.0359825433927], [-75.13988302535608, 40.036084777555345], [-75.14067276785356, 40.036185703147375], [-75.14146588926472, 40.03628840562802], [-75.14463761989032, 40.03740050019296], [-75.1450944010915, 40.03741430698231], [-75.14514980930565, 40.0371471869134], [-75.14555423769299, 40.03526310349242], [-75.14589858962322, 40.033729038091984], [-75.14622802622662, 40.03218680840395], [-75.1465198569296, 40.03086669439065], [-75.14657623992896, 40.03063853073237], [-75.1466831095684, 40.03022796670184], [-75.1467062707666, 40.03012811909639], [-75.14682785335461, 40.029603964525016], [-75.14685100645652, 40.029482804010044], [-75.14691352343654, 40.02914516669453], [-75.14721962735459, 40.02764514311778], [-75.14755641513194, 40.02613961797357], [-75.14789505568146, 40.024554834487724], [-75.14824630443891, 40.02296067248439], [-75.14911084080961, 40.023087628437445], [-75.14987715742109, 40.0231842466539], [-75.15044000128925, 40.0232544392301], [-75.1506825222888, 40.02328812009111], [-75.15090369245164, 40.02331069599366], [-75.15147241693867, 40.023381528339236], [-75.1522667173414, 40.02348787117297], [-75.15303674304226, 40.02358501513317], [-75.15358036624822, 40.02365797773569], [-75.15405365312745, 40.02372785476409], [-75.15461075489527, 40.02380201274293], [-75.15539798309345, 40.02388910564577], [-75.15618269933954, 40.02398984263152], [-75.15696965137474, 40.02409024536052], [-75.15715360548293, 40.02413182896438], [-75.15724219824413, 40.02408925777339], [-75.15782906553865, 40.02375408545743], [-75.15790589094377, 40.023704912206234], [-75.15903605423988, 40.02280190058979], [-75.15950224294882, 40.0223432341361]]]}}, {"id": "6200", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17124261342087, 40.06500946556407], [-75.17091194220046, 40.06466925503468], [-75.17069409522429, 40.06445965564536], [-75.1703634321165, 40.06409495052153], [-75.17017127786087, 40.06390687896074], [-75.16983006917584, 40.06354105060354], [-75.16904394106206, 40.06430044770858], [-75.16809985399476, 40.06522082243321], [-75.1677689939968, 40.065108487428574], [-75.16731697579957, 40.06494737580528], [-75.16695979762125, 40.06482743429275], [-75.16654186059458, 40.06468055848998], [-75.16622136222205, 40.06457189914461], [-75.16571540071172, 40.06439171631164], [-75.16534808383226, 40.06426613015285], [-75.16480035602746, 40.06407242015249], [-75.1643836856483, 40.063926607255304], [-75.16378784926586, 40.063712558698455], [-75.16344190448093, 40.06359655565086], [-75.16292411240609, 40.063410709422975], [-75.16254871651984, 40.063285958426555], [-75.1620197780772, 40.0630962169184], [-75.16195977544348, 40.06315890313737], [-75.1616641649705, 40.06298405418257], [-75.16123426856046, 40.06273231936118], [-75.16099326125268, 40.062595900743204], [-75.16060368358214, 40.062369944395606], [-75.16035182382006, 40.06222962168702], [-75.15989416367573, 40.061971945302716], [-75.15961343513683, 40.06181075138843], [-75.15919973818367, 40.061567179296624], [-75.15720193376991, 40.06042981662128], [-75.15841323800502, 40.059182161006305], [-75.1581641751228, 40.059036116190065], [-75.15776045979493, 40.058800649227884], [-75.15737303204526, 40.05858598062293], [-75.15747896418917, 40.056504930678976], [-75.15746051816018, 40.0564194703756], [-75.15831599261553, 40.05603530684842], [-75.15889048363145, 40.05576949183422], [-75.16044128197008, 40.05425713561772], [-75.16091929300433, 40.0537925062337], [-75.1611689402338, 40.05355483490157], [-75.16138759282359, 40.053342933770466], [-75.16189938305337, 40.05284319234763], [-75.16337456802582, 40.051419298090025], [-75.1645290723687, 40.050307646064056], [-75.16520215329996, 40.04965200639097], [-75.16525712299926, 40.04959732185242], [-75.16605473744411, 40.04883455137416], [-75.16723865320313, 40.04768607142578], [-75.16770275926207, 40.047246253974855], [-75.16884922937358, 40.04795506324941], [-75.16927029423954, 40.048207577481364], [-75.17060415461262, 40.04903026260365], [-75.1706333927059, 40.04910225393454], [-75.17073576482973, 40.04935353962386], [-75.17083862208125, 40.0496046667032], [-75.17094216748087, 40.049855568549134], [-75.1710466086001, 40.05010618224366], [-75.17112820941101, 40.050300315011405], [-75.1711520694657, 40.050356452903564], [-75.17125881986824, 40.050606284767596], [-75.17136800824716, 40.05085547655511], [-75.17152726633, 40.051089120617476], [-75.1717302446799, 40.05130067346059], [-75.17194564025809, 40.05150565958964], [-75.1721527570008, 40.051715590770904], [-75.17216182099546, 40.051725161961755], [-75.172357958871, 40.05192621020427], [-75.17256355291329, 40.05213675514574], [-75.1728866854698, 40.05240617655712], [-75.17311902812443, 40.05259960659701], [-75.17335044401179, 40.05279367128519], [-75.17358005010088, 40.052988992343515], [-75.17381241180091, 40.05318350612949], [-75.17403840687084, 40.053381793351825], [-75.17424056057901, 40.053592781409186], [-75.17440688262629, 40.053823769205636], [-75.17454506276708, 40.05406488302684], [-75.17465933962295, 40.054312964447234], [-75.1747608547261, 40.05456490612149], [-75.17486440654937, 40.05481655635975], [-75.17495847107281, 40.05507018780081], [-75.1750118866538, 40.05532876015456], [-75.17503111300805, 40.055591480315336], [-75.17504089384201, 40.05585549435688], [-75.17506031602504, 40.05611862254066], [-75.17507933319033, 40.05638220025059], [-75.17510785609336, 40.05664457640369], [-75.17514798273434, 40.056839725193974], [-75.17516113351942, 40.056903685234026], [-75.1752495582113, 40.05715893337811], [-75.17536810749817, 40.05740605364031], [-75.17550645600836, 40.05764690489541], [-75.17566016370529, 40.05788293281444], [-75.17582822362066, 40.058112341586416], [-75.17600881660165, 40.05833576524766], [-75.1761994717258, 40.058554821559156], [-75.17639803953782, 40.05876979389417], [-75.1766023533545, 40.058981048146265], [-75.17681100212951, 40.05919014206236], [-75.17702481901934, 40.05939641041052], [-75.17724499618087, 40.0595983481416], [-75.1774727246601, 40.05979444836981], [-75.1777137531315, 40.059982251152746], [-75.17786819767917, 40.06008571522395], [-75.17797306082973, 40.06015596266008], [-75.17825011568553, 40.06030907909555], [-75.17854709002448, 40.06043969196185], [-75.17885517364552, 40.060557399718036], [-75.1791640113303, 40.06067185283692], [-75.1794761022797, 40.06078031680443], [-75.17978995236567, 40.06088607658467], [-75.18010210008383, 40.06099460945412], [-75.18041237768011, 40.06110616575838], [-75.18072219957281, 40.0612184795709], [-75.18103175837003, 40.061331233541814], [-75.18115290444139, 40.061375417270774], [-75.18090811057657, 40.061608494800076], [-75.18080527694892, 40.061725900603314], [-75.18054279102539, 40.06197862111421], [-75.17992069834072, 40.06258220722493], [-75.17915926787137, 40.063318167187305], [-75.17842108801139, 40.06403171575031], [-75.17772396742323, 40.06473889800499], [-75.17652615372914, 40.06589703428178], [-75.17573916329452, 40.065455268868476], [-75.1753283866907, 40.06521738943825], [-75.17472790207933, 40.06584572169545], [-75.17416537252768, 40.06638980605839], [-75.17345972356307, 40.06705509382905], [-75.1731109475838, 40.06683128113391], [-75.17271130613928, 40.06651149251504], [-75.17248326087959, 40.06627327634225], [-75.17213407820678, 40.065926492388684], [-75.17188653373765, 40.06566421390312], [-75.17149994529751, 40.06526016646006], [-75.17124261342087, 40.06500946556407]]]}}, {"id": "6210", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1604288812882, 40.07531266399091], [-75.16050594436373, 40.07483288570474], [-75.16055753540152, 40.07453012215321], [-75.16057136671013, 40.07442377191166], [-75.16064054996237, 40.07404220389587], [-75.16069589137035, 40.07366282968974], [-75.16071675585628, 40.0735384122146], [-75.16077029469126, 40.07331416167603], [-75.16082425301092, 40.073095104095074], [-75.1609187723063, 40.07271045947612], [-75.16102579413145, 40.07227280606486], [-75.16110506465807, 40.07195354846603], [-75.1613133773838, 40.07138793441847], [-75.16138802540127, 40.071313389393225], [-75.16161519042359, 40.07109386403413], [-75.16180113346527, 40.07091280571107], [-75.16203667711369, 40.070686408849866], [-75.1623238000922, 40.070408124113825], [-75.16274583591098, 40.06999711536643], [-75.16342108161521, 40.06933393255309], [-75.16410687905979, 40.06866398623474], [-75.16436155806885, 40.068424816613124], [-75.16463785158234, 40.068194280617526], [-75.16487677547958, 40.06800838818451], [-75.16514635504116, 40.06782087737948], [-75.16531857078982, 40.06770751422005], [-75.16570662695527, 40.06743917295645], [-75.16607391930532, 40.06719546211728], [-75.16809985399476, 40.06522082243321], [-75.16904394106206, 40.06430044770858], [-75.16983006917584, 40.06354105060354], [-75.17017127786087, 40.06390687896074], [-75.1703634321165, 40.06409495052153], [-75.17069409522429, 40.06445965564536], [-75.17091194220046, 40.06466925503468], [-75.17124261342087, 40.06500946556407], [-75.17149994529751, 40.06526016646006], [-75.17188653373765, 40.06566421390312], [-75.17213407820678, 40.065926492388684], [-75.17248326087959, 40.06627327634225], [-75.17271130613928, 40.06651149251504], [-75.1731109475838, 40.06683128113391], [-75.17345972356307, 40.06705509382905], [-75.17416537252768, 40.06638980605839], [-75.17472790207933, 40.06584572169545], [-75.1753283866907, 40.06521738943825], [-75.17573916329452, 40.065455268868476], [-75.17652615372914, 40.06589703428178], [-75.17695379388663, 40.066151322996184], [-75.17711530184557, 40.06624476362587], [-75.17726171534507, 40.06633115264945], [-75.17764680439015, 40.06654750587865], [-75.17800957051952, 40.06674475950524], [-75.17867207808484, 40.06711878666639], [-75.17930582966149, 40.06748374481404], [-75.17997631626186, 40.067875264486865], [-75.18011080793077, 40.06795527424724], [-75.18054528168594, 40.06819117349491], [-75.18090101784799, 40.06841272994902], [-75.18175175187088, 40.06890397071676], [-75.18108824954528, 40.069602032708595], [-75.18048295831493, 40.07019200510883], [-75.17981933918136, 40.070876185778644], [-75.17953391169506, 40.071163544421765], [-75.17944859352355, 40.071262433472086], [-75.17937270298397, 40.07139944954563], [-75.17898196770119, 40.0721552672007], [-75.17802828865062, 40.07406639821007], [-75.17781843262479, 40.07442285047015], [-75.17761720606259, 40.07473265125835], [-75.17740490470734, 40.075083609626276], [-75.17723572756108, 40.075347332512585], [-75.17702354357212, 40.07568853946867], [-75.17684189203585, 40.07598139144614], [-75.17650168334147, 40.076371483982], [-75.17622691145561, 40.07666422121828], [-75.17587660181164, 40.07703290043079], [-75.17557507191728, 40.07735456292724], [-75.17528915694395, 40.07766727790896], [-75.17506353867036, 40.07787997885392], [-75.17365569344673, 40.077070581483774], [-75.17337495601436, 40.07735390531589], [-75.17314849623152, 40.077577846361805], [-75.1728799001031, 40.07785070127036], [-75.17262144318636, 40.078104902334765], [-75.17073321801493, 40.07701492411452], [-75.1702893584541, 40.0767687584959], [-75.16978670514862, 40.0772875187461], [-75.16931873256533, 40.077784394409086], [-75.16880378323822, 40.07829299949059], [-75.16766083538825, 40.07946744025506], [-75.16408829184321, 40.077353842883106], [-75.16339656128754, 40.07696659290676], [-75.1604288812882, 40.07531266399091]]]}}, {"id": "6220", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17216182099546, 40.051725161961755], [-75.17278214968263, 40.05114098636905], [-75.17326193964533, 40.050668307254625], [-75.17491703922701, 40.04905352974127], [-75.17554837432448, 40.04843964367981], [-75.17609108661524, 40.047908442017345], [-75.17624745535426, 40.047753284928866], [-75.17662568220831, 40.047399341707596], [-75.17675867916391, 40.04725214341318], [-75.17681056280375, 40.04720520432477], [-75.17700069329203, 40.04702130168701], [-75.17718362379978, 40.04684811358267], [-75.17725380693192, 40.04677119491558], [-75.1773822612706, 40.046662942149524], [-75.17756627407671, 40.046474822765596], [-75.17775517766586, 40.04627533376665], [-75.17960663140585, 40.04448953551959], [-75.18088411064987, 40.0432480218722], [-75.18097922010578, 40.04333838114339], [-75.18117466376285, 40.04361035144422], [-75.18125703292239, 40.043733829527675], [-75.18143093247392, 40.04416263987507], [-75.18170260015731, 40.044832379521964], [-75.18220444401027, 40.0458957297085], [-75.18279836557451, 40.04707577114246], [-75.18339861136822, 40.04825532226838], [-75.18376010127409, 40.04891675714872], [-75.18391838926657, 40.04920943606664], [-75.18396765482593, 40.049314893850955], [-75.18420344684705, 40.049775693340166], [-75.18436784380793, 40.05006963513841], [-75.18457340886603, 40.05040492237618], [-75.1846937674163, 40.05064241151825], [-75.18501659720498, 40.05121743514732], [-75.18522100345294, 40.05158637481057], [-75.18528871203894, 40.051744551606674], [-75.18568090856587, 40.0524229651019], [-75.18611595407215, 40.053247312429534], [-75.18651717607368, 40.053967139677184], [-75.1867785678006, 40.05450532939778], [-75.18696188620653, 40.05482355399488], [-75.18730678094542, 40.05548581666945], [-75.18653553874663, 40.05621047774239], [-75.1849563775198, 40.05773494212012], [-75.18486134639281, 40.05779373121243], [-75.18476966794022, 40.05785849127056], [-75.18404519236326, 40.05857345529716], [-75.18336624418237, 40.059221535836], [-75.18177885875095, 40.06076888207175], [-75.18155571566143, 40.061006075885004], [-75.18131392482739, 40.06122210131275], [-75.18115290444139, 40.061375417270774], [-75.18103175837003, 40.061331233541814], [-75.18072219957281, 40.0612184795709], [-75.18041237768011, 40.06110616575838], [-75.18010210008383, 40.06099460945412], [-75.17978995236567, 40.06088607658467], [-75.1794761022797, 40.06078031680443], [-75.1791640113303, 40.06067185283692], [-75.17885517364552, 40.060557399718036], [-75.17854709002448, 40.06043969196185], [-75.17825011568553, 40.06030907909555], [-75.17797306082973, 40.06015596266008], [-75.17786819767917, 40.06008571522395], [-75.1777137531315, 40.059982251152746], [-75.1774727246601, 40.05979444836981], [-75.17724499618087, 40.0595983481416], [-75.17702481901934, 40.05939641041052], [-75.17681100212951, 40.05919014206236], [-75.1766023533545, 40.058981048146265], [-75.17639803953782, 40.05876979389417], [-75.1761994717258, 40.058554821559156], [-75.17600881660165, 40.05833576524766], [-75.17582822362066, 40.058112341586416], [-75.17566016370529, 40.05788293281444], [-75.17550645600836, 40.05764690489541], [-75.17536810749817, 40.05740605364031], [-75.1752495582113, 40.05715893337811], [-75.17516113351942, 40.056903685234026], [-75.17514798273434, 40.056839725193974], [-75.17510785609336, 40.05664457640369], [-75.17507933319033, 40.05638220025059], [-75.17506031602504, 40.05611862254066], [-75.17504089384201, 40.05585549435688], [-75.17503111300805, 40.055591480315336], [-75.1750118866538, 40.05532876015456], [-75.17495847107281, 40.05507018780081], [-75.17486440654937, 40.05481655635975], [-75.1747608547261, 40.05456490612149], [-75.17465933962295, 40.054312964447234], [-75.17454506276708, 40.05406488302684], [-75.17440688262629, 40.053823769205636], [-75.17424056057901, 40.053592781409186], [-75.17403840687084, 40.053381793351825], [-75.17381241180091, 40.05318350612949], [-75.17358005010088, 40.052988992343515], [-75.17335044401179, 40.05279367128519], [-75.17311902812443, 40.05259960659701], [-75.1728866854698, 40.05240617655712], [-75.17256355291329, 40.05213675514574], [-75.172357958871, 40.05192621020427], [-75.17216182099546, 40.051725161961755]]]}}, {"id": "6250", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18651717607368, 40.053967139677184], [-75.18611595407215, 40.053247312429534], [-75.18568090856587, 40.0524229651019], [-75.18528871203894, 40.051744551606674], [-75.18522100345294, 40.05158637481057], [-75.18501659720498, 40.05121743514732], [-75.1846937674163, 40.05064241151825], [-75.18457340886603, 40.05040492237618], [-75.18436784380793, 40.05006963513841], [-75.18420344684705, 40.049775693340166], [-75.18396765482593, 40.049314893850955], [-75.18391838926657, 40.04920943606664], [-75.18376010127409, 40.04891675714872], [-75.18339861136822, 40.04825532226838], [-75.18527664267911, 40.046411282219864], [-75.18668797871183, 40.04503518347589], [-75.18931485668102, 40.0424870819142], [-75.18947980639672, 40.04230868909042], [-75.19025172805095, 40.04278912918824], [-75.19057914684831, 40.04299291082166], [-75.19119981577036, 40.04338709775542], [-75.19124142940883, 40.043133123148614], [-75.19134753185405, 40.04283747821982], [-75.19145042795034, 40.04262690767887], [-75.19157772831606, 40.042398635256504], [-75.19176919636841, 40.04214746287633], [-75.19209517660428, 40.0418099230789], [-75.19391825051949, 40.04003759263793], [-75.1961285681936, 40.03792510705202], [-75.19591426474284, 40.03773386290462], [-75.19823927899031, 40.0366086380846], [-75.19803969458452, 40.035669218093304], [-75.19797485763613, 40.03550704206032], [-75.19788801660623, 40.03505591715643], [-75.19781610939663, 40.03474973507563], [-75.19767408751511, 40.03440506991492], [-75.19764644430055, 40.0342703880722], [-75.19762267816256, 40.03416298827446], [-75.1975357248421, 40.033893093786155], [-75.1975423038068, 40.033712343674054], [-75.19759775248555, 40.03353189483889], [-75.19767897363276, 40.0334054527399], [-75.19791907202325, 40.033244249276365], [-75.19867854345327, 40.03310333437685], [-75.19903824459082, 40.032960800774006], [-75.19925173748065, 40.0327331286416], [-75.19965720849837, 40.032329249260336], [-75.19972657938162, 40.032360159665316], [-75.19997327152043, 40.032514050436404], [-75.2001684571078, 40.03265538325535], [-75.20023180653428, 40.032748119832135], [-75.20024278770153, 40.03285111219636], [-75.2002066813973, 40.03302155884678], [-75.20014649247801, 40.03323998893978], [-75.2000286885841, 40.03360840834481], [-75.1999853764631, 40.03377298530102], [-75.20009758234858, 40.03414651220337], [-75.20019902122058, 40.03441134260745], [-75.20029111299033, 40.03472733968486], [-75.20044427709198, 40.03499902773448], [-75.20065701896179, 40.035266328297695], [-75.20077587266421, 40.03546304589897], [-75.20086740470755, 40.03559636701068], [-75.20090064681602, 40.03569985332406], [-75.20085098603475, 40.03583574861133], [-75.20087202841943, 40.03596750522857], [-75.20095963561124, 40.03610644698831], [-75.20110246626595, 40.03625803169762], [-75.20119507108404, 40.03636283525448], [-75.20134832008314, 40.03643473280454], [-75.20156307328378, 40.03645091539052], [-75.20178824330848, 40.03638741157057], [-75.20203211000842, 40.03622157448156], [-75.20215004658733, 40.03604723564648], [-75.20226120658367, 40.03585562283787], [-75.20238656373073, 40.035681448385986], [-75.20257149451804, 40.0355028854725], [-75.20271211717781, 40.035317633574714], [-75.20292251520746, 40.03505401271858], [-75.20308475313355, 40.03488636329297], [-75.20322216373734, 40.034786662719796], [-75.20350839828592, 40.034678843315966], [-75.2037475444075, 40.034638480680805], [-75.20402971436165, 40.034639027990075], [-75.20429618639469, 40.034662058053975], [-75.20486302268161, 40.0347944931357], [-75.20519541902128, 40.03484181600355], [-75.20546781580545, 40.03490493310414], [-75.20570097432311, 40.03502426417902], [-75.2058671406445, 40.03514781690197], [-75.20601718590125, 40.035305262058806], [-75.20607098712954, 40.03545486751505], [-75.20608512223498, 40.03567209300905], [-75.20613913768528, 40.03581599532369], [-75.20626035989733, 40.03594996856576], [-75.20637352169493, 40.036100889391015], [-75.20647712448454, 40.03630867952482], [-75.20653556814453, 40.03653259396182], [-75.2065986085726, 40.036631961173214], [-75.20676696501357, 40.03689733615117], [-75.20697424047722, 40.037113130006546], [-75.20721562476146, 40.03740959192733], [-75.20772920774597, 40.03777487177704], [-75.20807811152633, 40.03797667283057], [-75.20837657449391, 40.03813739998149], [-75.20865234891762, 40.038309040909205], [-75.20886897664359, 40.03847366389456], [-75.20912457299517, 40.03878756032005], [-75.20931744791032, 40.03899161630986], [-75.20955799502023, 40.03931088753139], [-75.20981167851987, 40.03967611498109], [-75.21001704965896, 40.039943234008625], [-75.21016113787074, 40.040260373489794], [-75.21048075797292, 40.04064989036193], [-75.21056168484728, 40.04087022688045], [-75.21072889124217, 40.04132547366802], [-75.21083797713106, 40.04162247498826], [-75.21085954892055, 40.04183986385273], [-75.2109046653704, 40.04202352346143], [-75.21105767616733, 40.04230090130406], [-75.21134549627982, 40.04274679443542], [-75.21155894192873, 40.04299696438598], [-75.21167373864417, 40.043090419187074], [-75.2117895800312, 40.043184724066734], [-75.21192903529322, 40.04342755048803], [-75.21204981105043, 40.04377271123764], [-75.2121443171284, 40.04402596169148], [-75.21217139683955, 40.04429484411868], [-75.21219062724198, 40.0445749723814], [-75.21217974815472, 40.044865850199635], [-75.21210957954078, 40.045749073728594], [-75.21204231820863, 40.04595879087753], [-75.21194387704928, 40.046207777510205], [-75.2118452230371, 40.046462466295836], [-75.21166066758568, 40.046829422513625], [-75.21158218854448, 40.04694185216979], [-75.21158363596008, 40.04710171417034], [-75.21164658531441, 40.047205853263726], [-75.21176848115175, 40.04732271042747], [-75.21194910224808, 40.04745799020771], [-75.21215049774804, 40.04763368703058], [-75.2123826464751, 40.047781519170755], [-75.21260865508998, 40.047894967336916], [-75.2129769046371, 40.04817709331067], [-75.21312784812656, 40.048311716613625], [-75.21333116833364, 40.04843607880874], [-75.21350331205412, 40.04859970973842], [-75.21366632770139, 40.04880880505784], [-75.21378225812595, 40.04908535721496], [-75.21391448667507, 40.04952210070516], [-75.21405097697317, 40.04984477259543], [-75.2145028979404, 40.05067102121905], [-75.21457095142553, 40.050756997128204], [-75.21439193823277, 40.05087763982575], [-75.21428512785094, 40.050993419398814], [-75.21410916982583, 40.05124550003927], [-75.21401184869464, 40.05145009209251], [-75.21395586900432, 40.05157683863884], [-75.21392365068435, 40.05175333392736], [-75.21385266377408, 40.05193881768102], [-75.2138347164866, 40.05207624896712], [-75.21372753439724, 40.05220186417726], [-75.21362255943978, 40.05226846038528], [-75.2134678547842, 40.05229457951167], [-75.21316977233033, 40.05238644539147], [-75.21292399433403, 40.05244993176783], [-75.21263871121019, 40.0525420789539], [-75.21240683662488, 40.05257633748612], [-75.21207292725472, 40.05259849545021], [-75.21171194524376, 40.052659434259446], [-75.21141275580193, 40.05278080595065], [-75.21123060715377, 40.052855539056765], [-75.21109671538522, 40.053010096448794], [-75.21095370334592, 40.0530660053901], [-75.21078729945812, 40.05306232766443], [-75.21053202960914, 40.05303699589321], [-75.21028992901358, 40.05300210945723], [-75.21007085136426, 40.0530366453269], [-75.20985103692693, 40.053090854029726], [-75.20965571771637, 40.053175138711524], [-75.20947209268773, 40.053289216427785], [-75.20932686859572, 40.053404142187816], [-75.20914398037468, 40.053498545257014], [-75.20896367052569, 40.05352409212852], [-75.20783318259917, 40.053607375784004], [-75.20767699826081, 40.05367283358721], [-75.20754678299276, 40.053729020655396], [-75.20730850075148, 40.05376312634277], [-75.2071382762331, 40.05369044492225], [-75.20693605031188, 40.05361705578653], [-75.20675647564745, 40.053622925036954], [-75.20651142471398, 40.0536667244638], [-75.20627806801201, 40.05374031618485], [-75.20612114304201, 40.05382544507432], [-75.20598871311253, 40.053940650054756], [-75.20567596899471, 40.05408139656822], [-75.20547658358366, 40.05427387731837], [-75.2053295058763, 40.05443798152439], [-75.20519522856382, 40.05460236908748], [-75.20511362871878, 40.05472854423565], [-75.20504667351175, 40.054805819367026], [-75.20488263197747, 40.054853072221036], [-75.20471113653498, 40.05472015869834], [-75.20417264630456, 40.054306830785684], [-75.20372888679066, 40.05392917556531], [-75.20349281323871, 40.05365317795886], [-75.20334340662053, 40.0535052159], [-75.20321635085055, 40.053428105580494], [-75.20146367263548, 40.05231785002617], [-75.20011269688989, 40.05146473442294], [-75.19877066105177, 40.05270643612475], [-75.19820021143939, 40.05235596117368], [-75.19771378237151, 40.05203896338299], [-75.1969823896079, 40.05157312711901], [-75.19563324275806, 40.05280253409382], [-75.19491469239934, 40.05234769564096], [-75.19443475926589, 40.05205432898346], [-75.19434079120006, 40.051896151450784], [-75.19432707016699, 40.05171226037262], [-75.1942064694033, 40.05168030023692], [-75.1940848633164, 40.051634165536754], [-75.19401303857717, 40.05173347550707], [-75.19321126466869, 40.05116499385955], [-75.19301187701981, 40.05100999296698], [-75.19181659556949, 40.05025748485779], [-75.19149646777267, 40.05057119096916], [-75.19131958904751, 40.050744520703475], [-75.19081732761688, 40.051190803965], [-75.18890640015005, 40.053020829447696], [-75.18804884702564, 40.053816158878966], [-75.18779809316645, 40.054065199186574], [-75.18696188620653, 40.05482355399488], [-75.1867785678006, 40.05450532939778], [-75.18651717607368, 40.053967139677184]]]}}, {"id": "6260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1892072590428, 40.073164558665844], [-75.18850083767563, 40.072765298951126], [-75.18805338790312, 40.072504173185806], [-75.18769578724081, 40.07230280518222], [-75.18727691346884, 40.07206282928188], [-75.18695418042498, 40.07188242253921], [-75.18656090515977, 40.07165815713035], [-75.18635439238608, 40.07153643854975], [-75.18623293140867, 40.07146527137888], [-75.18585788038457, 40.071247696344166], [-75.1855608441507, 40.07107347214713], [-75.18465450351158, 40.070566138510706], [-75.18391276257141, 40.070145631452164], [-75.18364912476173, 40.06999111135572], [-75.18327103153682, 40.069789831738944], [-75.18289547943881, 40.06955422068512], [-75.18258006129889, 40.06937617829236], [-75.18221999451552, 40.06916019514141], [-75.18175175187088, 40.06890397071676], [-75.18090101784799, 40.06841272994902], [-75.18054528168594, 40.06819117349491], [-75.18011080793077, 40.06795527424724], [-75.17997631626186, 40.067875264486865], [-75.17930582966149, 40.06748374481404], [-75.17867207808484, 40.06711878666639], [-75.17800957051952, 40.06674475950524], [-75.17764680439015, 40.06654750587865], [-75.17726171534507, 40.06633115264945], [-75.17711530184557, 40.06624476362587], [-75.17695379388663, 40.066151322996184], [-75.17652615372914, 40.06589703428178], [-75.17772396742323, 40.06473889800499], [-75.17842108801139, 40.06403171575031], [-75.17915926787137, 40.063318167187305], [-75.17992069834072, 40.06258220722493], [-75.18054279102539, 40.06197862111421], [-75.18080527694892, 40.061725900603314], [-75.18090811057657, 40.061608494800076], [-75.18115290444139, 40.061375417270774], [-75.18131392482739, 40.06122210131275], [-75.18155571566143, 40.061006075885004], [-75.18177885875095, 40.06076888207175], [-75.18336624418237, 40.059221535836], [-75.18404519236326, 40.05857345529716], [-75.18476966794022, 40.05785849127056], [-75.18486134639281, 40.05779373121243], [-75.1849563775198, 40.05773494212012], [-75.18653553874663, 40.05621047774239], [-75.18730678094542, 40.05548581666945], [-75.18696188620653, 40.05482355399488], [-75.18779809316645, 40.054065199186574], [-75.18804884702564, 40.053816158878966], [-75.18890640015005, 40.053020829447696], [-75.19081732761688, 40.051190803965], [-75.19131958904751, 40.050744520703475], [-75.19149646777267, 40.05057119096916], [-75.19181659556949, 40.05025748485779], [-75.19301187701981, 40.05100999296698], [-75.19321126466869, 40.05116499385955], [-75.19401303857717, 40.05173347550707], [-75.1940848633164, 40.051634165536754], [-75.1942064694033, 40.05168030023692], [-75.19432707016699, 40.05171226037262], [-75.19434079120006, 40.051896151450784], [-75.19443475926589, 40.05205432898346], [-75.19491469239934, 40.05234769564096], [-75.19563324275806, 40.05280253409382], [-75.1969823896079, 40.05157312711901], [-75.19771378237151, 40.05203896338299], [-75.19820021143939, 40.05235596117368], [-75.19877066105177, 40.05270643612475], [-75.20011269688989, 40.05146473442294], [-75.20146367263548, 40.05231785002617], [-75.20321635085055, 40.053428105580494], [-75.20334340662053, 40.0535052159], [-75.20349281323871, 40.05365317795886], [-75.20372888679066, 40.05392917556531], [-75.20417264630456, 40.054306830785684], [-75.20471113653498, 40.05472015869834], [-75.20488263197747, 40.054853072221036], [-75.20531821375958, 40.05519065607581], [-75.20587257610931, 40.0556159526666], [-75.20621022591658, 40.055885484051885], [-75.20792963361659, 40.057219621105475], [-75.20695768938901, 40.05819620479453], [-75.20454450168005, 40.06058276092143], [-75.2025890996209, 40.06253928364317], [-75.20247578849883, 40.06265117785159], [-75.20214620389496, 40.06298260864735], [-75.20173977228471, 40.063375963925445], [-75.20126926436419, 40.06385488194599], [-75.20079594233718, 40.063734488746654], [-75.20074493127662, 40.064497824262524], [-75.20136836078836, 40.0651152109948], [-75.20171678219866, 40.06544573648771], [-75.2015092772665, 40.0654196825577], [-75.20131881082602, 40.065383095046506], [-75.20084833594773, 40.0652339595504], [-75.20046680831523, 40.06517812477132], [-75.20019673687891, 40.065164236678115], [-75.20004858741599, 40.065187266471746], [-75.19987088182724, 40.06526753670021], [-75.19975528635453, 40.065382275334606], [-75.19836153173155, 40.06676286075396], [-75.19742492411515, 40.06767933279832], [-75.19733737504282, 40.06770788061124], [-75.19725608769183, 40.06774856340655], [-75.19702893684186, 40.067952075639944], [-75.19455359516283, 40.07041510107163], [-75.19437203320024, 40.07059064141814], [-75.19413745659803, 40.07081743807545], [-75.19284644342434, 40.07211114328308], [-75.19206451092946, 40.0729015340207], [-75.19083279681232, 40.07411548107926], [-75.18967703529019, 40.07346034863238], [-75.1892072590428, 40.073164558665844]]]}}, {"id": "6270", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-75.21434841609376, 40.08763022044048], [-75.21413160426536, 40.08750543917298], [-75.21375197276815, 40.087291903724214], [-75.21283123393746, 40.08675631936212], [-75.21177555623677, 40.08614222151246], [-75.21035288220077, 40.08531460941738], [-75.20997168856624, 40.085169123801826], [-75.20977974603359, 40.085090031618805], [-75.20963620520541, 40.085022979412834], [-75.20948176906893, 40.08494332721877], [-75.20928421156539, 40.08483426722577], [-75.20915570284714, 40.08475537509521], [-75.20891071574653, 40.08457532509507], [-75.20843502940461, 40.08419887541467], [-75.2063242757714, 40.08297083901374], [-75.20488165090603, 40.08214435799494], [-75.20414582216543, 40.08172278662238], [-75.20267381649565, 40.08087960607389], [-75.2009356191845, 40.0798838978099], [-75.20045304605522, 40.07960745181517], [-75.19835139218625, 40.07840344884116], [-75.19764268313288, 40.07799742241749], [-75.19643439831073, 40.07730516345369], [-75.19595648241079, 40.07703270074233], [-75.19500340736744, 40.076489337754225], [-75.19083279681232, 40.07411548107926], [-75.19206451092946, 40.0729015340207], [-75.19284644342434, 40.07211114328308], [-75.19413745659803, 40.07081743807545], [-75.19437203320024, 40.07059064141814], [-75.19455359516283, 40.07041510107163], [-75.19702893684186, 40.067952075639944], [-75.19725608769183, 40.06774856340655], [-75.19733737504282, 40.06770788061124], [-75.19742492411515, 40.06767933279832], [-75.19836153173155, 40.06676286075396], [-75.19975528635453, 40.065382275334606], [-75.19987088182724, 40.06526753670021], [-75.20004858741599, 40.065187266471746], [-75.20019673687891, 40.065164236678115], [-75.20046680831523, 40.06517812477132], [-75.20084833594773, 40.0652339595504], [-75.20131881082602, 40.065383095046506], [-75.2015092772665, 40.0654196825577], [-75.20171678219866, 40.06544573648771], [-75.20136836078836, 40.0651152109948], [-75.20074493127662, 40.064497824262524], [-75.20079594233718, 40.063734488746654], [-75.20126926436419, 40.06385488194599], [-75.20173977228471, 40.063375963925445], [-75.20214620389496, 40.06298260864735], [-75.20247578849883, 40.06265117785159], [-75.2025890996209, 40.06253928364317], [-75.20454450168005, 40.06058276092143], [-75.20695768938901, 40.05819620479453], [-75.20792963361659, 40.057219621105475], [-75.20621022591658, 40.055885484051885], [-75.20587257610931, 40.0556159526666], [-75.20531821375958, 40.05519065607581], [-75.20488263197747, 40.054853072221036], [-75.20504667351175, 40.054805819367026], [-75.20511362871878, 40.05472854423565], [-75.20519522856382, 40.05460236908748], [-75.2053295058763, 40.05443798152439], [-75.20547658358366, 40.05427387731837], [-75.20567596899471, 40.05408139656822], [-75.20598871311253, 40.053940650054756], [-75.20612114304201, 40.05382544507432], [-75.20627806801201, 40.05374031618485], [-75.20651142471398, 40.0536667244638], [-75.20675647564745, 40.053622925036954], [-75.20693605031188, 40.05361705578653], [-75.2071382762331, 40.05369044492225], [-75.20730850075148, 40.05376312634277], [-75.20754678299276, 40.053729020655396], [-75.20767699826081, 40.05367283358721], [-75.20783318259917, 40.053607375784004], [-75.20896367052569, 40.05352409212852], [-75.20914398037468, 40.053498545257014], [-75.20932686859572, 40.053404142187816], [-75.20947209268773, 40.053289216427785], [-75.20965571771637, 40.053175138711524], [-75.20985103692693, 40.053090854029726], [-75.21007085136426, 40.0530366453269], [-75.21028992901358, 40.05300210945723], [-75.21053202960914, 40.05303699589321], [-75.21078729945812, 40.05306232766443], [-75.21095370334592, 40.0530660053901], [-75.21109671538522, 40.053010096448794], [-75.21123060715377, 40.052855539056765], [-75.21141275580193, 40.05278080595065], [-75.21171194524376, 40.052659434259446], [-75.21207292725472, 40.05259849545021], [-75.21240683662488, 40.05257633748612], [-75.21263871121019, 40.0525420789539], [-75.21292399433403, 40.05244993176783], [-75.21316977233033, 40.05238644539147], [-75.2134678547842, 40.05229457951167], [-75.21362255943978, 40.05226846038528], [-75.21372753439724, 40.05220186417726], [-75.2138347164866, 40.05207624896712], [-75.21385266377408, 40.05193881768102], [-75.21392365068435, 40.05175333392736], [-75.21395586900432, 40.05157683863884], [-75.21401184869464, 40.05145009209251], [-75.21410916982583, 40.05124550003927], [-75.21428512785094, 40.050993419398814], [-75.21439193823277, 40.05087763982575], [-75.21457095142553, 40.050756997128204], [-75.21477366202399, 40.05101308969664], [-75.21501401520094, 40.05122580502872], [-75.2152226300174, 40.05142122678272], [-75.21542076776456, 40.05160811879584], [-75.2157779251754, 40.05187318942014], [-75.21632692950475, 40.05220471199618], [-75.21679072538791, 40.05250531568779], [-75.2170101374423, 40.052700972060066], [-75.21721381115472, 40.05302902401661], [-75.21740545851311, 40.053389994172306], [-75.21754932117564, 40.053874360860874], [-75.21766975489608, 40.05440798827836], [-75.21776370587726, 40.05478339972237], [-75.21779540748678, 40.0550910671567], [-75.2178326859878, 40.055389555593784], [-75.21784527981154, 40.055490394310446], [-75.21786557809817, 40.055814404931795], [-75.21796293545793, 40.05609862743273], [-75.21815707259692, 40.05639328255384], [-75.21829851055543, 40.05665358966609], [-75.21841315458913, 40.056763968720674], [-75.21853611088002, 40.05694090450774], [-75.21870160256275, 40.057135367329046], [-75.21894168160546, 40.05735636486365], [-75.21920948591723, 40.05770241727509], [-75.21938886133773, 40.057814222902245], [-75.21965144839187, 40.058010823670315], [-75.2198246408614, 40.0582884207507], [-75.22000491297439, 40.05866572988123], [-75.2202690184377, 40.05911125636288], [-75.22035622174903, 40.05937866375898], [-75.22047671514694, 40.0596219130589], [-75.22064160075098, 40.05983295308749], [-75.22079817161715, 40.05997743888005], [-75.22101022821018, 40.06008166299098], [-75.22117851331238, 40.06020151786903], [-75.22134432944159, 40.060387689084486], [-75.22150890942957, 40.060607018300935], [-75.22171077373474, 40.06098480042213], [-75.22187242274134, 40.06128287912471], [-75.2220866007378, 40.06190982594182], [-75.22215378114606, 40.062135306657616], [-75.22223174936673, 40.06236102554656], [-75.22239510269806, 40.06261351176765], [-75.22263243242793, 40.062909106714166], [-75.22289134395056, 40.063205176676256], [-75.22315118059892, 40.06347637636253], [-75.22340116030304, 40.06372246959266], [-75.22352506966465, 40.06387452948777], [-75.22357191279042, 40.06406637840206], [-75.22352011258054, 40.06429754021719], [-75.22344920425138, 40.06446190919216], [-75.22328242911209, 40.064590983781855], [-75.22300837908303, 40.06470110721599], [-75.2225177766978, 40.0648272096523], [-75.22191572875089, 40.06504626453165], [-75.22150726258572, 40.06528617072171], [-75.22104144863594, 40.06561607340886], [-75.22075320409613, 40.06581714015489], [-75.22047265223308, 40.06610134012056], [-75.22040204497277, 40.066257416762774], [-75.22035054142914, 40.0664802875594], [-75.22040538564119, 40.06674698042691], [-75.220482425938, 40.0669975700272], [-75.22050923080047, 40.06714749556472], [-75.22054237296345, 40.06721474649943], [-75.22057950109134, 40.06729008239717], [-75.22072344387293, 40.06748406897721], [-75.2209179347524, 40.06777042698577], [-75.2213027771429, 40.06816468169993], [-75.2217426532696, 40.06853110678613], [-75.22206724680694, 40.06880373321647], [-75.22227624376103, 40.06899085148552], [-75.22244393540804, 40.06912728358061], [-75.22252469618299, 40.069278394369626], [-75.22264923022982, 40.06941387780444], [-75.22283726891679, 40.06958394131134], [-75.22303764245397, 40.06971279303993], [-75.22323554624268, 40.06990796365707], [-75.22354073415222, 40.07012208264088], [-75.22391898414968, 40.07040418218518], [-75.22436228313141, 40.07067941101737], [-75.22466778663087, 40.07088523922988], [-75.22494153696408, 40.071073775280794], [-75.22517243854045, 40.07125307378348], [-75.22534045015375, 40.071381212063194], [-75.2254776385463, 40.07146718940843], [-75.22560156553432, 40.071619246971714], [-75.22562730372316, 40.07179818477979], [-75.22560689750236, 40.07186637332087], [-75.22555330614519, 40.07204545248316], [-75.22541857825082, 40.0721835307691], [-75.22535845521037, 40.07234813966267], [-75.22509269992044, 40.07252482076271], [-75.22475048568877, 40.072724712956685], [-75.22444187609301, 40.072892156381826], [-75.2239359479737, 40.07313822547624], [-75.22340473110751, 40.073483293600965], [-75.22321480880846, 40.07365334319305], [-75.22306465107508, 40.073915526763315], [-75.22301253280233, 40.07415497688277], [-75.22301405654467, 40.074403903759965], [-75.2231222525839, 40.07468836155796], [-75.2233640900345, 40.075154129066924], [-75.22348246180022, 40.0754554028763], [-75.22361224171561, 40.07574033461288], [-75.22380275568308, 40.07613445377599], [-75.22406757151978, 40.07656339285195], [-75.22430372483832, 40.07689214332473], [-75.224484071298, 40.07726944502672], [-75.22467335998041, 40.077696720978004], [-75.22478958021959, 40.07805602214], [-75.22518436116688, 40.07876574232143], [-75.22533789600043, 40.078993118274425], [-75.22548247315505, 40.079246018795054], [-75.22552041613174, 40.079312390476254], [-75.22573716086733, 40.07958263595362], [-75.22590025895488, 40.07984340828304], [-75.22594742726926, 40.08002696375382], [-75.22604917455128, 40.08019512778883], [-75.22624434014634, 40.08046489740403], [-75.22649284903395, 40.08075243236348], [-75.22680611171896, 40.08104138831406], [-75.22703520302512, 40.081270419520784], [-75.22735185996784, 40.08146818773472], [-75.22765618786684, 40.08170716616172], [-75.22807028453268, 40.0818987752061], [-75.22859076107581, 40.08213419633967], [-75.22927296615082, 40.08237731115313], [-75.2295258070147, 40.082548784516646], [-75.22977155525922, 40.08262054487449], [-75.22994207044799, 40.082682357964245], [-75.2301794942427, 40.08268756335315], [-75.23035277957234, 40.08267476866629], [-75.23055659477808, 40.08271242363329], [-75.23078260987309, 40.08273396945265], [-75.23097501668049, 40.08278796537604], [-75.23115540153664, 40.082874882829444], [-75.23196115806692, 40.08313193953048], [-75.23266787022823, 40.08342299244986], [-75.23301936788978, 40.08363141840429], [-75.23178908302853, 40.08484644728194], [-75.23055919982524, 40.08606102127528], [-75.22773343695147, 40.08881835136036], [-75.22359382389517, 40.09292898904922], [-75.22018215051745, 40.090987381580675], [-75.21963379661355, 40.09067184471324], [-75.21679214667414, 40.08903660075094], [-75.21512274979831, 40.08807586703638], [-75.21434841609376, 40.08763022044048]]], [[[-75.17702354357212, 40.07568853946867], [-75.17723572756108, 40.075347332512585], [-75.17740490470734, 40.075083609626276], [-75.17761720606259, 40.07473265125835], [-75.17781843262479, 40.07442285047015], [-75.17802828865062, 40.07406639821007], [-75.17898196770119, 40.0721552672007], [-75.17937270298397, 40.07139944954563], [-75.17944859352355, 40.071262433472086], [-75.17953391169506, 40.071163544421765], [-75.17981933918136, 40.070876185778644], [-75.18048295831493, 40.07019200510883], [-75.18108824954528, 40.069602032708595], [-75.18175175187088, 40.06890397071676], [-75.18221999451552, 40.06916019514141], [-75.18258006129889, 40.06937617829236], [-75.18289547943881, 40.06955422068512], [-75.18327103153682, 40.069789831738944], [-75.18364912476173, 40.06999111135572], [-75.18391276257141, 40.070145631452164], [-75.18465450351158, 40.070566138510706], [-75.1855608441507, 40.07107347214713], [-75.18585788038457, 40.071247696344166], [-75.18623293140867, 40.07146527137888], [-75.18635439238608, 40.07153643854975], [-75.18656090515977, 40.07165815713035], [-75.18695418042498, 40.07188242253921], [-75.18727691346884, 40.07206282928188], [-75.18769578724081, 40.07230280518222], [-75.18805338790312, 40.072504173185806], [-75.18850083767563, 40.072765298951126], [-75.18842266937398, 40.072840843860725], [-75.1870611695249, 40.0741566125007], [-75.18698669964411, 40.0742430456326], [-75.18591820379741, 40.07528352592726], [-75.18584257629753, 40.075350095113144], [-75.1850233512383, 40.07615035378346], [-75.18380354697693, 40.0773740197529], [-75.18194161224882, 40.07641177158509], [-75.18181960944209, 40.076472005835555], [-75.18150775129591, 40.07676652494106], [-75.18127577782226, 40.07701929846174], [-75.181030059986, 40.07727343208425], [-75.18077977253778, 40.07752894161619], [-75.18049874457054, 40.07781947926673], [-75.18028393325905, 40.0780499157515], [-75.1802389798596, 40.077946920259826], [-75.17844985463559, 40.076930025345625], [-75.17684189203585, 40.07598139144614], [-75.17702354357212, 40.07568853946867]]]]}}, {"id": "6300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15559107750623, 40.03621529856409], [-75.14986041135666, 40.03582873929858], [-75.14925006473153, 40.03573632825544], [-75.14872321845299, 40.03567052723887], [-75.14817965587301, 40.035599243543416], [-75.14719897646965, 40.03547322032816], [-75.14643827735868, 40.035379044730846], [-75.14555423769299, 40.03526310349242], [-75.14589858962322, 40.033729038091984], [-75.14622802622662, 40.03218680840395], [-75.1465198569296, 40.03086669439065], [-75.14657623992896, 40.03063853073237], [-75.1466831095684, 40.03022796670184], [-75.1467062707666, 40.03012811909639], [-75.14682785335461, 40.029603964525016], [-75.14685100645652, 40.029482804010044], [-75.14691352343654, 40.02914516669453], [-75.14721962735459, 40.02764514311778], [-75.14755641513194, 40.02613961797357], [-75.14789505568146, 40.024554834487724], [-75.14824630443891, 40.02296067248439], [-75.14911084080961, 40.023087628437445], [-75.14987715742109, 40.0231842466539], [-75.15044000128925, 40.0232544392301], [-75.1506825222888, 40.02328812009111], [-75.15090369245164, 40.02331069599366], [-75.15147241693867, 40.023381528339236], [-75.1522667173414, 40.02348787117297], [-75.15303674304226, 40.02358501513317], [-75.15358036624822, 40.02365797773569], [-75.15405365312745, 40.02372785476409], [-75.15461075489527, 40.02380201274293], [-75.15539798309345, 40.02388910564577], [-75.15618269933954, 40.02398984263152], [-75.15696965137474, 40.02409024536052], [-75.15715360548293, 40.02413182896438], [-75.15724219824413, 40.02408925777339], [-75.15782906553865, 40.02375408545743], [-75.15790589094377, 40.023704912206234], [-75.15903605423988, 40.02280190058979], [-75.15913886526133, 40.023029249784166], [-75.1592144562075, 40.02319330831552], [-75.1593151807718, 40.023411916350135], [-75.15927639149338, 40.02346717452106], [-75.15910561261985, 40.023697600917764], [-75.15896867635486, 40.023937587293304], [-75.1588761454554, 40.02419000396313], [-75.15878786297104, 40.02444363099025], [-75.15870251287683, 40.02469809810343], [-75.15861971166329, 40.024953290334516], [-75.15853907564416, 40.025209097215225], [-75.15846022488144, 40.025465402053776], [-75.15838277571298, 40.02572209347934], [-75.15830634454005, 40.02597905831943], [-75.1582305488609, 40.02623618522761], [-75.15815500634048, 40.02649335835503], [-75.15807933560305, 40.026750467279854], [-75.15800315192656, 40.02700739699868], [-75.1579260739936, 40.027264035287075], [-75.15784799643501, 40.02752034822959], [-75.15777034826526, 40.02777672668455], [-75.15769346172291, 40.02803324843151], [-75.15761740459884, 40.02828991860611], [-75.15754224713022, 40.02854673969627], [-75.15746806296517, 40.02880371697023], [-75.15739491993216, 40.02906085466382], [-75.15732283736757, 40.02931819916721], [-75.1572537030976, 40.029576312987786], [-75.15719465811908, 40.02983560783092], [-75.15715328534526, 40.030096589183955], [-75.15713063868077, 40.030359502505014], [-75.15712118318922, 40.03062276679764], [-75.15711885558103, 40.030885896479255], [-75.15711958910998, 40.03099435210139], [-75.15712063496119, 40.03114911888007], [-75.15712456565255, 40.03141238984647], [-75.1571286918101, 40.03167566882585], [-75.15713109754785, 40.031938911663524], [-75.15713163422186, 40.03220217357025], [-75.15713124379629, 40.032465465000264], [-75.15713060684874, 40.032728766178884], [-75.15713040889257, 40.03299205113556], [-75.15713133069852, 40.033255295594444], [-75.15713405080882, 40.03351847252612], [-75.15713925335662, 40.033781562234935], [-75.15714856928291, 40.03404519711063], [-75.1571768165857, 40.03430843673233], [-75.15724637207973, 40.03456517277133], [-75.15735819077271, 40.03481603849007], [-75.15751279485703, 40.03504927827877], [-75.15772483000877, 40.03525782697669], [-75.15796322411806, 40.03544682161301], [-75.15823082457943, 40.03561202212634], [-75.15850981372526, 40.035766671271105], [-75.15882863365184, 40.03588386659471], [-75.15836467388999, 40.036347448909254], [-75.15837413570682, 40.03668606571486], [-75.15702140499151, 40.03671310349853], [-75.15664349184547, 40.03668758259277], [-75.15638304168068, 40.03664529696424], [-75.1561245406069, 40.03655208788836], [-75.1558581505199, 40.036417443412375], [-75.15559107750623, 40.03621529856409]]]}}, {"id": "6310", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17565377401108, 40.08419536522242], [-75.17534368589227, 40.08401196620428], [-75.17513240532602, 40.083887005460255], [-75.17478569112538, 40.08368194223895], [-75.17451282257665, 40.08352055207597], [-75.17415810344424, 40.08331074839847], [-75.17392483275896, 40.08317277840625], [-75.17357374932254, 40.08296512124009], [-75.1733047962172, 40.082806040432715], [-75.17293752614974, 40.08258880643946], [-75.17206912077135, 40.08207514660764], [-75.1717125938213, 40.081864259219266], [-75.16993233616797, 40.080811185455374], [-75.16826691265771, 40.079825985671924], [-75.16766083538825, 40.07946744025506], [-75.16880378323822, 40.07829299949059], [-75.16931873256533, 40.077784394409086], [-75.16978670514862, 40.0772875187461], [-75.1702893584541, 40.0767687584959], [-75.17073321801493, 40.07701492411452], [-75.17262144318636, 40.078104902334765], [-75.1728799001031, 40.07785070127036], [-75.17314849623152, 40.077577846361805], [-75.17337495601436, 40.07735390531589], [-75.17365569344673, 40.077070581483774], [-75.17506353867036, 40.07787997885392], [-75.17528915694395, 40.07766727790896], [-75.17557507191728, 40.07735456292724], [-75.17587660181164, 40.07703290043079], [-75.17622691145561, 40.07666422121828], [-75.17650168334147, 40.076371483982], [-75.17684189203585, 40.07598139144614], [-75.17844985463559, 40.076930025345625], [-75.1802389798596, 40.077946920259826], [-75.18028393325905, 40.0780499157515], [-75.18049874457054, 40.07781947926673], [-75.18077977253778, 40.07752894161619], [-75.181030059986, 40.07727343208425], [-75.18127577782226, 40.07701929846174], [-75.18150775129591, 40.07676652494106], [-75.18181960944209, 40.076472005835555], [-75.18194161224882, 40.07641177158509], [-75.18380354697693, 40.0773740197529], [-75.18338031680676, 40.07779858590659], [-75.18309433465161, 40.07807587966636], [-75.18287149014344, 40.078292464114064], [-75.18258086041408, 40.07857492735905], [-75.18232052018368, 40.07884043664458], [-75.18203755777367, 40.07910908539153], [-75.18180286135693, 40.079337154012684], [-75.18145425234837, 40.07967940722044], [-75.18111760840718, 40.08001602438674], [-75.18082835390277, 40.080295325576316], [-75.18051355457972, 40.08060664800581], [-75.18026277904949, 40.08085339519159], [-75.18000629267141, 40.08109897260521], [-75.1797465281049, 40.081356162231216], [-75.17947174227169, 40.08161030603028], [-75.17919957785055, 40.08187937536236], [-75.17894425415764, 40.082141941628535], [-75.17868482425071, 40.08239067875266], [-75.17844262597258, 40.08264111363603], [-75.17819946150917, 40.08287791311066], [-75.17794373603151, 40.083129189512114], [-75.17769764878433, 40.083386235797065], [-75.17643825170076, 40.08465273993144], [-75.17617086031584, 40.08449802955405], [-75.17587162456431, 40.08432420858097], [-75.17565377401108, 40.08419536522242]]]}}, {"id": "6320", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.18475599428261, 40.02828670786825], [-75.18423409720958, 40.02785744191139], [-75.18416957969907, 40.02778727159014], [-75.18354462742221, 40.02726656215683], [-75.18293309559137, 40.02674623378277], [-75.1821248520501, 40.02604741606695], [-75.18166803708723, 40.02565827051328], [-75.17984442801564, 40.024087111001535], [-75.17903439685347, 40.02333017978122], [-75.17813356713184, 40.022588967799784], [-75.1781634577923, 40.02232191114883], [-75.17819654807381, 40.022059883507694], [-75.17822909970849, 40.02179783748928], [-75.17826098048974, 40.02153576743003], [-75.17829207453775, 40.02127366983408], [-75.17832225316255, 40.02101153911683], [-75.17835132003574, 40.020749360970896], [-75.17836483896939, 40.02048572998522], [-75.17835128765265, 40.02022254243119], [-75.17829905577587, 40.01996324862947], [-75.17821811683437, 40.01968915969033], [-75.17812245920452, 40.019436176044145], [-75.17802950186633, 40.01918236889096], [-75.17793398080568, 40.018929343960046], [-75.17783062615489, 40.01867870863221], [-75.17771296225875, 40.01843197748175], [-75.17756704006801, 40.01819271861627], [-75.17738626062157, 40.01796889046678], [-75.1771925170203, 40.01775198501652], [-75.17699866248022, 40.01753513258645], [-75.17680470071932, 40.01731832785329], [-75.17661063755828, 40.01710157184788], [-75.17641647316844, 40.016884860068586], [-75.17622220978954, 40.01666819526803], [-75.1760278511054, 40.01645157302326], [-75.17584542335327, 40.01624838166194], [-75.17575476211923, 40.01614745779258], [-75.17565908381408, 40.01604096033477], [-75.17552671391125, 40.015893697405055], [-75.17544423876154, 40.015801951603464], [-75.17524953212295, 40.01558548770875], [-75.17505474670979, 40.0153690631341], [-75.17485988513735, 40.0151526707297], [-75.17466494844024, 40.01493631412243], [-75.17446994026795, 40.014719989789626], [-75.17427486537244, 40.01450369603558], [-75.17407972733481, 40.01428743113824], [-75.17388452615543, 40.014071195097266], [-75.17368926651781, 40.01385498801739], [-75.173493951003, 40.01363880364923], [-75.17330414845071, 40.01342880284322], [-75.17310316505105, 40.01320650783698], [-75.17290770415151, 40.01299039210142], [-75.17271219560573, 40.012774298360135], [-75.17251664898511, 40.01255822142175], [-75.17232106308491, 40.01234216215997], [-75.17212544499837, 40.01212611893189], [-75.1719297936233, 40.01191008991051], [-75.1717341148136, 40.01169407522714], [-75.17153840994537, 40.01147806950644], [-75.17134268473573, 40.011262076480755], [-75.17114693811662, 40.01104609342295], [-75.17095117611288, 40.010830115963145], [-75.17075539862202, 40.01061414680205], [-75.17055961518098, 40.01039818164876], [-75.1703638212095, 40.0101822176973], [-75.17016802476591, 40.00996625873271], [-75.17012183886611, 40.009915319234196], [-75.17027816930145, 40.009837310105105], [-75.17056549159035, 40.00969421733024], [-75.17085302274307, 40.0095513925516], [-75.17114081893814, 40.009408899199265], [-75.17142893153489, 40.00926680419859], [-75.17171807731377, 40.00912597960543], [-75.17201478572093, 40.00899458472763], [-75.17231497932914, 40.00886798956168], [-75.17261598778865, 40.00874233816866], [-75.17289976733551, 40.00862885398273], [-75.17322881678321, 40.008508366147595], [-75.17354518230786, 40.008407551969064], [-75.17386255750822, 40.00830866613599], [-75.17418020188195, 40.00821038105396], [-75.17450135375312, 40.00811949811968], [-75.17482574100757, 40.00803540932257], [-75.17515173790514, 40.00795495076213], [-75.17547878827409, 40.00787715578088], [-75.17580848000264, 40.00780637581546], [-75.17614027259992, 40.0077412625246], [-75.17647388047243, 40.007682150068774], [-75.17680993770276, 40.007632744984505], [-75.17714771609977, 40.007589819726114], [-75.17748625496522, 40.00755025147113], [-75.17782497552301, 40.00751233965202], [-75.17817990974089, 40.00747547030837], [-75.17850353803009, 40.007442419954835], [-75.17884254943282, 40.00740598482527], [-75.1791808013841, 40.00736527442401], [-75.17949583686833, 40.007330268309794], [-75.17985986450924, 40.007299379194045], [-75.18020121485219, 40.00727939352919], [-75.1805427636371, 40.00726217649447], [-75.18088436810777, 40.00724549489363], [-75.18122601266239, 40.00722923484977], [-75.18156769013017, 40.00721327636771], [-75.18190938624555, 40.00719750109568], [-75.18225108780933, 40.00718179340903], [-75.18259278643873, 40.0071660341871], [-75.18309910876698, 40.007142337153745], [-75.18751678904931, 40.00693619642412], [-75.18875577856281, 40.00687835254241], [-75.18979495444817, 40.00682982508193], [-75.19013391830701, 40.006793039509155], [-75.19047279783496, 40.00675583840279], [-75.19081081926585, 40.00671456625028], [-75.19114793109786, 40.00666897143275], [-75.19148464086909, 40.006621471858764], [-75.19159962191372, 40.00660536533527], [-75.19182140823222, 40.006574296052555], [-75.19215822867767, 40.00652737723856], [-75.19248650438152, 40.00648631915835], [-75.19282909227685, 40.006720041632185], [-75.1931745133191, 40.006946139642274], [-75.1940657933079, 40.007370640630775], [-75.19523788704916, 40.00776465223345], [-75.19662197462642, 40.00814921442729], [-75.19741007533945, 40.00838739067628], [-75.19798662998474, 40.00856163000309], [-75.1995671662532, 40.00910618352392], [-75.20096916234523, 40.0095052402321], [-75.20278453559125, 40.0101681675687], [-75.20411797328548, 40.01067887127354], [-75.20493269018309, 40.011036554083525], [-75.20556089846534, 40.01144637353623], [-75.20583087553283, 40.01162249423849], [-75.20598118504968, 40.011722063535636], [-75.20605558240162, 40.01177134883842], [-75.20613902163231, 40.01182662245913], [-75.20640550638981, 40.012003148204144], [-75.20760649409308, 40.01272404544921], [-75.20739351668358, 40.01320203826188], [-75.20727299953978, 40.01348198569755], [-75.20715783224605, 40.013781971752], [-75.20706619715126, 40.01404822910396], [-75.20692071497255, 40.01436466800637], [-75.20678072668967, 40.0147326026567], [-75.2067059307227, 40.01490263093841], [-75.20662654125256, 40.015083096447846], [-75.20646664769988, 40.015387799942964], [-75.20645087585967, 40.01545245604645], [-75.206387706368, 40.01571141920294], [-75.20617481696412, 40.01604348848058], [-75.20579366609358, 40.01630904026045], [-75.20555030887488, 40.016463477484905], [-75.20530801957125, 40.016589396839564], [-75.20500453014414, 40.01656554618231], [-75.20479875441963, 40.01650961178716], [-75.20451922741914, 40.016440624581826], [-75.20424669291437, 40.01638320741465], [-75.20395932174982, 40.01632546331481], [-75.20364649000336, 40.016352775248386], [-75.20338429793868, 40.0164154592704], [-75.2031640440374, 40.016547571648445], [-75.20303280363615, 40.01668165809953], [-75.20286654166652, 40.016957674676874], [-75.20267609871061, 40.017284526184504], [-75.20246610984428, 40.017736527357975], [-75.20235155632979, 40.01801939652393], [-75.20222066465567, 40.0183418634675], [-75.20199055409695, 40.01873633438742], [-75.20179311252437, 40.01905161270349], [-75.20099183814499, 40.02042093025455], [-75.200933484597, 40.02059088319604], [-75.20082041804712, 40.02083382726441], [-75.20068994333401, 40.02114488354787], [-75.20062160003872, 40.021383111556446], [-75.20054840776287, 40.02155273490167], [-75.20040274633219, 40.02167508186673], [-75.20027234638414, 40.02178635090709], [-75.20007218376311, 40.021975985218994], [-75.19963776060904, 40.02227458377773], [-75.19934170779126, 40.022409689343846], [-75.19918450788889, 40.02248142957175], [-75.19878532457916, 40.022632393583635], [-75.19828926933943, 40.02279261764224], [-75.19773806728172, 40.02303723908307], [-75.1971247232168, 40.02335468413469], [-75.19661673607646, 40.023634510949535], [-75.1962364802291, 40.02385044329653], [-75.19586209060706, 40.02408052814591], [-75.19561451234333, 40.02422300599726], [-75.19539863212474, 40.024435116240824], [-75.19531800535528, 40.02460456940891], [-75.19525727026146, 40.024837256973086], [-75.19523997803107, 40.02509945210123], [-75.19525557906691, 40.02527675470127], [-75.19522160999645, 40.02539016261946], [-75.19516602862579, 40.02548596792842], [-75.1951019554212, 40.02561012271681], [-75.19504616022495, 40.02571163018187], [-75.19496810515115, 40.02581264147189], [-75.19484511016006, 40.02592407125742], [-75.19467674213509, 40.02605732279176], [-75.19449396494984, 40.02617883771931], [-75.19428000791352, 40.02633961354925], [-75.19393735196232, 40.02656602708576], [-75.19374457249535, 40.026755815367316], [-75.19363490933219, 40.026907498464205], [-75.19348244764849, 40.02701256037837], [-75.19330450726073, 40.02720268011006], [-75.19316151110232, 40.027450658973855], [-75.19261246810618, 40.02731614578106], [-75.19248235415391, 40.02739710662348], [-75.19235656838265, 40.02743635435836], [-75.1921111097142, 40.027484402743646], [-75.19176542891499, 40.02755315410919], [-75.1912292953343, 40.02752974194893], [-75.19104928822398, 40.027556311269855], [-75.19089851603299, 40.02759882364573], [-75.19064420187902, 40.0277498809391], [-75.19054476427709, 40.0278814543467], [-75.1904995457736, 40.02802570406753], [-75.19047396785099, 40.02837399003998], [-75.19028403082824, 40.028861861960216], [-75.19015478140203, 40.02899277241513], [-75.18994575152439, 40.02912954578415], [-75.18970849483175, 40.02922364496932], [-75.18940780350799, 40.02928574740464], [-75.18890267908205, 40.02934416339511], [-75.1883624717145, 40.02922889960042], [-75.18737926217861, 40.02909228285243], [-75.18706442961953, 40.02905763697274], [-75.18677892810167, 40.0291124256], [-75.18644380753355, 40.029296073536564], [-75.18619433324473, 40.0294699797975], [-75.18546479446888, 40.02887689787078], [-75.18475599428261, 40.02828670786825]]]}}, {"id": "6340", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14646875550979, 40.04622407338927], [-75.14663676712304, 40.04545030860512], [-75.14669300886234, 40.045194628987076], [-75.14677753155169, 40.044849237938145], [-75.14677547274304, 40.04478388096465], [-75.14684915190857, 40.04448263821296], [-75.14695055644779, 40.04401627147233], [-75.14701361561217, 40.043721372621505], [-75.14710460885777, 40.043324167185084], [-75.14714038176054, 40.04310281640004], [-75.14714370082122, 40.0430084054196], [-75.14708428051617, 40.042744899563225], [-75.14699021201726, 40.04254004327967], [-75.14693970827715, 40.0424584486666], [-75.14688229840992, 40.04231870797406], [-75.146857531517, 40.04218180278661], [-75.14685593723742, 40.04208108234812], [-75.14687399161087, 40.04196612419693], [-75.14690535911149, 40.04185985712996], [-75.14697851267586, 40.041731463715664], [-75.14709850337391, 40.04157143906791], [-75.14717808632864, 40.04149643421224], [-75.14740059680261, 40.04124865209369], [-75.1476752049131, 40.040934966381], [-75.14808463273732, 40.040481288460676], [-75.14822050255044, 40.04029680839816], [-75.14833728636707, 40.04008926772206], [-75.14843192760813, 40.039876935680155], [-75.14849532919025, 40.03967890879429], [-75.14852773195206, 40.03948876019615], [-75.14854610688744, 40.03937335949963], [-75.14854554188075, 40.03924251617451], [-75.14853266999647, 40.039003599011316], [-75.14751693464373, 40.0390216568223], [-75.1465864041407, 40.03905049033996], [-75.14483484273276, 40.03909529389763], [-75.14475013943076, 40.03907393952762], [-75.1450944010915, 40.03741430698231], [-75.14514980930565, 40.0371471869134], [-75.14555423769299, 40.03526310349242], [-75.14643827735868, 40.035379044730846], [-75.14719897646965, 40.03547322032816], [-75.14817965587301, 40.035599243543416], [-75.14872321845299, 40.03567052723887], [-75.14925006473153, 40.03573632825544], [-75.14986041135666, 40.03582873929858], [-75.15559107750623, 40.03621529856409], [-75.1558581505199, 40.036417443412375], [-75.1561245406069, 40.03655208788836], [-75.15638304168068, 40.03664529696424], [-75.15664349184547, 40.03668758259277], [-75.15702140499151, 40.03671310349853], [-75.15837413570682, 40.03668606571486], [-75.15841548109299, 40.03750327785943], [-75.15845241039253, 40.03854029926103], [-75.15840456619196, 40.040737478582756], [-75.15835915529544, 40.041488147437796], [-75.15834207328669, 40.04202281718912], [-75.15831847943383, 40.04240956273372], [-75.15830795807854, 40.042862286311994], [-75.15828650750801, 40.04334277765106], [-75.15826273724423, 40.04378326023385], [-75.15749434216939, 40.04376394033985], [-75.15710054390964, 40.04375024955351], [-75.15671170262142, 40.04374406575828], [-75.15586689162292, 40.04372131585984], [-75.15579424451015, 40.045130568462234], [-75.15577069181604, 40.04532887629433], [-75.15574994730251, 40.04581858914535], [-75.15564729333768, 40.04737197878589], [-75.15554903914908, 40.04893607533981], [-75.15550418978171, 40.04957273185858], [-75.15544804124193, 40.050509287563564], [-75.15461967306605, 40.05047573996834], [-75.15392188456589, 40.05045250401035], [-75.15310149329383, 40.05041353940018], [-75.15198400138559, 40.05026771590411], [-75.15127702118768, 40.05017532996552], [-75.15047695034879, 40.050072214971735], [-75.15062969401944, 40.04941735934156], [-75.15082167575875, 40.04851954731878], [-75.15091417024898, 40.04811018793448], [-75.1509824795425, 40.047815942160376], [-75.15104529347037, 40.04747366855939], [-75.15108319635144, 40.047121440951564], [-75.15103283505383, 40.046951987093884], [-75.15096808613218, 40.046768835694195], [-75.15082915483441, 40.04653858372858], [-75.15068101521854, 40.04635332723772], [-75.1486563555371, 40.04629196163454], [-75.14807370799431, 40.046273052569106], [-75.14751948857638, 40.0462558432871], [-75.14646875550979, 40.04622407338927]]]}}, {"id": "6350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15096958553814, 40.06956843639189], [-75.15106191088287, 40.06946857816879], [-75.15110941573222, 40.06938823856531], [-75.15113969247578, 40.06930768861748], [-75.1512590535016, 40.068766755608095], [-75.15154453594731, 40.067492518421346], [-75.15188488782408, 40.06599297260364], [-75.15225506922619, 40.06429891873402], [-75.15294352202838, 40.06429432184391], [-75.1533997052835, 40.064346319747806], [-75.15351422568159, 40.064286960105086], [-75.15358456284916, 40.06419917687332], [-75.15411076692092, 40.063648702720286], [-75.15469973804461, 40.06302558333437], [-75.15520562760757, 40.0625047873463], [-75.15525483072531, 40.0624327360658], [-75.15522895265995, 40.06237394340174], [-75.15446021032547, 40.061154792902464], [-75.15376348409853, 40.06009936287663], [-75.15451465886387, 40.05978796538895], [-75.15527293531468, 40.05947082097148], [-75.15562086138792, 40.05932667201359], [-75.15689851127883, 40.05877686767505], [-75.157200041546, 40.05864718062386], [-75.15737303204526, 40.05858598062293], [-75.15776045979493, 40.058800649227884], [-75.1581641751228, 40.059036116190065], [-75.15841323800502, 40.059182161006305], [-75.15720193376991, 40.06042981662128], [-75.15919973818367, 40.061567179296624], [-75.15961343513683, 40.06181075138843], [-75.15989416367573, 40.061971945302716], [-75.16035182382006, 40.06222962168702], [-75.16060368358214, 40.062369944395606], [-75.16099326125268, 40.062595900743204], [-75.16123426856046, 40.06273231936118], [-75.1616641649705, 40.06298405418257], [-75.16195977544348, 40.06315890313737], [-75.1620197780772, 40.0630962169184], [-75.16254871651984, 40.063285958426555], [-75.16292411240609, 40.063410709422975], [-75.16344190448093, 40.06359655565086], [-75.16378784926586, 40.063712558698455], [-75.1643836856483, 40.063926607255304], [-75.16480035602746, 40.06407242015249], [-75.16534808383226, 40.06426613015285], [-75.16571540071172, 40.06439171631164], [-75.16622136222205, 40.06457189914461], [-75.16654186059458, 40.06468055848998], [-75.16695979762125, 40.06482743429275], [-75.16731697579957, 40.06494737580528], [-75.1677689939968, 40.065108487428574], [-75.16809985399476, 40.06522082243321], [-75.16607391930532, 40.06719546211728], [-75.16570662695527, 40.06743917295645], [-75.16531857078982, 40.06770751422005], [-75.16514635504116, 40.06782087737948], [-75.16487677547958, 40.06800838818451], [-75.16463785158234, 40.068194280617526], [-75.16436155806885, 40.068424816613124], [-75.16410687905979, 40.06866398623474], [-75.16342108161521, 40.06933393255309], [-75.16274583591098, 40.06999711536643], [-75.1623238000922, 40.070408124113825], [-75.16203667711369, 40.070686408849866], [-75.16180113346527, 40.07091280571107], [-75.16161519042359, 40.07109386403413], [-75.16138802540127, 40.071313389393225], [-75.1613133773838, 40.07138793441847], [-75.16110506465807, 40.07195354846603], [-75.16102579413145, 40.07227280606486], [-75.1609187723063, 40.07271045947612], [-75.16082425301092, 40.073095104095074], [-75.16077029469126, 40.07331416167603], [-75.16071675585628, 40.0735384122146], [-75.16069589137035, 40.07366282968974], [-75.16064054996237, 40.07404220389587], [-75.16057136671013, 40.07442377191166], [-75.16055753540152, 40.07453012215321], [-75.16050594436373, 40.07483288570474], [-75.1604288812882, 40.07531266399091], [-75.15912148998693, 40.07459926761436], [-75.15838366762185, 40.0741818577783], [-75.15662764764954, 40.073184684935896], [-75.1558340546091, 40.072734017011875], [-75.15469496358601, 40.07208558563241], [-75.15407609241902, 40.071733279851415], [-75.15333305739387, 40.071310283447445], [-75.15275632915203, 40.07098195424609], [-75.15218557363076, 40.070657020518695], [-75.1518743522914, 40.07047983851803], [-75.1515895445759, 40.07031768987099], [-75.1507247653823, 40.06982534507238], [-75.15096958553814, 40.06956843639189]]]}}, {"id": "6360", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.16020566761645, 40.021312918917715], [-75.160587094013, 40.02047412659202], [-75.16064104200257, 40.02032672424692], [-75.16065723063446, 40.020267866462135], [-75.16069195307685, 40.020154843997446], [-75.16165740699451, 40.019866523130446], [-75.16260104521236, 40.019587285956476], [-75.1637594507446, 40.01923581659435], [-75.16382947760472, 40.01918243550099], [-75.1642100579168, 40.01894959041402], [-75.16451672375794, 40.01882070935512], [-75.16549601289547, 40.018389849712655], [-75.16580943584417, 40.018250581845486], [-75.16595069899675, 40.01817014864473], [-75.16612297805914, 40.01804860618353], [-75.16637408236633, 40.017853963773874], [-75.16686766643225, 40.017471360816195], [-75.16726952579513, 40.01715117286135], [-75.16773914456775, 40.01677676715074], [-75.1681011247023, 40.0164922616461], [-75.16830601223785, 40.01634706248918], [-75.16843373327283, 40.016281090405364], [-75.16875550853955, 40.016063754154686], [-75.16903385880265, 40.01586767344456], [-75.16922639801739, 40.015723223219084], [-75.16932388598943, 40.01561308507677], [-75.16990856732517, 40.015251275367135], [-75.17185110939445, 40.01421865254688], [-75.17330414845071, 40.01342880284322], [-75.173493951003, 40.01363880364923], [-75.17368926651781, 40.01385498801739], [-75.17388452615543, 40.014071195097266], [-75.17407972733481, 40.01428743113824], [-75.17427486537244, 40.01450369603558], [-75.17446994026795, 40.014719989789626], [-75.17466494844024, 40.01493631412243], [-75.17485988513735, 40.0151526707297], [-75.17505474670979, 40.0153690631341], [-75.17524953212295, 40.01558548770875], [-75.17544423876154, 40.015801951603464], [-75.17552671391125, 40.015893697405055], [-75.17565908381408, 40.01604096033477], [-75.17575476211923, 40.01614745779258], [-75.17584542335327, 40.01624838166194], [-75.1760278511054, 40.01645157302326], [-75.17622220978954, 40.01666819526803], [-75.17641647316844, 40.016884860068586], [-75.17661063755828, 40.01710157184788], [-75.17680470071932, 40.01731832785329], [-75.17699866248022, 40.01753513258645], [-75.1771925170203, 40.01775198501652], [-75.17738626062157, 40.01796889046678], [-75.17756704006801, 40.01819271861627], [-75.17771296225875, 40.01843197748175], [-75.17783062615489, 40.01867870863221], [-75.17793398080568, 40.018929343960046], [-75.17802950186633, 40.01918236889096], [-75.17812245920452, 40.019436176044145], [-75.17821811683437, 40.01968915969033], [-75.17829905577587, 40.01996324862947], [-75.17835128765265, 40.02022254243119], [-75.17836483896939, 40.02048572998522], [-75.17835132003574, 40.020749360970896], [-75.17832225316255, 40.02101153911683], [-75.17829207453775, 40.02127366983408], [-75.17826098048974, 40.02153576743003], [-75.17822909970849, 40.02179783748928], [-75.17819654807381, 40.022059883507694], [-75.1781634577923, 40.02232191114883], [-75.17813356713184, 40.022588967799784], [-75.17903439685347, 40.02333017978122], [-75.17984442801564, 40.024087111001535], [-75.18166803708723, 40.02565827051328], [-75.1821248520501, 40.02604741606695], [-75.18293309559137, 40.02674623378277], [-75.18354462742221, 40.02726656215683], [-75.182702183151, 40.028056239616085], [-75.18148137413901, 40.02926532344677], [-75.18088365695873, 40.029841509241315], [-75.18029157893811, 40.030412246474555], [-75.17891466313162, 40.0317380686852], [-75.1788081294255, 40.03185131024302], [-75.1784680745982, 40.03217747122257], [-75.17773994379091, 40.032891613455284], [-75.17757545599665, 40.033047573898465], [-75.17649623766056, 40.03409785740428], [-75.17472531934024, 40.03582198106344], [-75.17520805709144, 40.03623377954292], [-75.17562257070458, 40.0367689105063], [-75.17614415827084, 40.0374530957513], [-75.17642853248903, 40.037795390475246], [-75.17695591195294, 40.03842372889561], [-75.17762916337077, 40.03923034817212], [-75.17775844345613, 40.039402056474906], [-75.1786313883227, 40.04045502151935], [-75.17871264213939, 40.04055843101864], [-75.17912977440957, 40.04106626641239], [-75.17963202957364, 40.04168252762443], [-75.17998167048039, 40.04209473357406], [-75.18088411064987, 40.0432480218722], [-75.18097922010578, 40.04333838114339], [-75.18117466376285, 40.04361035144422], [-75.18125703292239, 40.043733829527675], [-75.18143093247392, 40.04416263987507], [-75.18170260015731, 40.044832379521964], [-75.18220444401027, 40.0458957297085], [-75.18279836557451, 40.04707577114246], [-75.18339861136822, 40.04825532226838], [-75.18376010127409, 40.04891675714872], [-75.18391838926657, 40.04920943606664], [-75.18396765482593, 40.049314893850955], [-75.18420344684705, 40.049775693340166], [-75.18436784380793, 40.05006963513841], [-75.18457340886603, 40.05040492237618], [-75.1846937674163, 40.05064241151825], [-75.18501659720498, 40.05121743514732], [-75.18522100345294, 40.05158637481057], [-75.18528871203894, 40.051744551606674], [-75.18568090856587, 40.0524229651019], [-75.18611595407215, 40.053247312429534], [-75.18651717607368, 40.053967139677184], [-75.1867785678006, 40.05450532939778], [-75.18696188620653, 40.05482355399488], [-75.18730678094542, 40.05548581666945], [-75.18653553874663, 40.05621047774239], [-75.1849563775198, 40.05773494212012], [-75.18486134639281, 40.05779373121243], [-75.18476966794022, 40.05785849127056], [-75.18404519236326, 40.05857345529716], [-75.18336624418237, 40.059221535836], [-75.18177885875095, 40.06076888207175], [-75.18155571566143, 40.061006075885004], [-75.18131392482739, 40.06122210131275], [-75.18115290444139, 40.061375417270774], [-75.18103175837003, 40.061331233541814], [-75.18072219957281, 40.0612184795709], [-75.18041237768011, 40.06110616575838], [-75.18010210008383, 40.06099460945412], [-75.17978995236567, 40.06088607658467], [-75.1794761022797, 40.06078031680443], [-75.1791640113303, 40.06067185283692], [-75.17885517364552, 40.060557399718036], [-75.17854709002448, 40.06043969196185], [-75.17825011568553, 40.06030907909555], [-75.17797306082973, 40.06015596266008], [-75.17786819767917, 40.06008571522395], [-75.1777137531315, 40.059982251152746], [-75.1774727246601, 40.05979444836981], [-75.17724499618087, 40.0595983481416], [-75.17702481901934, 40.05939641041052], [-75.17681100212951, 40.05919014206236], [-75.1766023533545, 40.058981048146265], [-75.17639803953782, 40.05876979389417], [-75.1761994717258, 40.058554821559156], [-75.17600881660165, 40.05833576524766], [-75.17582822362066, 40.058112341586416], [-75.17566016370529, 40.05788293281444], [-75.17550645600836, 40.05764690489541], [-75.17536810749817, 40.05740605364031], [-75.1752495582113, 40.05715893337811], [-75.17516113351942, 40.056903685234026], [-75.17514798273434, 40.056839725193974], [-75.17510785609336, 40.05664457640369], [-75.17507933319033, 40.05638220025059], [-75.17506031602504, 40.05611862254066], [-75.17504089384201, 40.05585549435688], [-75.17503111300805, 40.055591480315336], [-75.1750118866538, 40.05532876015456], [-75.17495847107281, 40.05507018780081], [-75.17486440654937, 40.05481655635975], [-75.1747608547261, 40.05456490612149], [-75.17465933962295, 40.054312964447234], [-75.17454506276708, 40.05406488302684], [-75.17440688262629, 40.053823769205636], [-75.17424056057901, 40.053592781409186], [-75.17403840687084, 40.053381793351825], [-75.17381241180091, 40.05318350612949], [-75.17358005010088, 40.052988992343515], [-75.17335044401179, 40.05279367128519], [-75.17311902812443, 40.05259960659701], [-75.1728866854698, 40.05240617655712], [-75.17256355291329, 40.05213675514574], [-75.172357958871, 40.05192621020427], [-75.17216182099546, 40.051725161961755], [-75.1721527570008, 40.051715590770904], [-75.17194564025809, 40.05150565958964], [-75.1717302446799, 40.05130067346059], [-75.17152726633, 40.051089120617476], [-75.17136800824716, 40.05085547655511], [-75.17125881986824, 40.050606284767596], [-75.1711520694657, 40.050356452903564], [-75.17112820941101, 40.050300315011405], [-75.1710466086001, 40.05010618224366], [-75.17094216748087, 40.049855568549134], [-75.17083862208125, 40.0496046667032], [-75.17073576482973, 40.04935353962386], [-75.1706333927059, 40.04910225393454], [-75.17060415461262, 40.04903026260365], [-75.16927029423954, 40.048207577481364], [-75.16884922937358, 40.04795506324941], [-75.16770275926207, 40.047246253974855], [-75.16684701465616, 40.04672479830209], [-75.16603828529823, 40.046219158406636], [-75.16556840861145, 40.045923622089], [-75.16483188229346, 40.045469253398956], [-75.16608592135853, 40.04424446434573], [-75.16720798133798, 40.04315036478413], [-75.16709265379062, 40.04309643913794], [-75.16611271882427, 40.04249277144439], [-75.1658194402422, 40.04231065211631], [-75.16507823000445, 40.04185959534455], [-75.16369002224152, 40.04100194564999], [-75.16087097790971, 40.039344789566556], [-75.15845241039253, 40.03854029926103], [-75.15841548109299, 40.03750327785943], [-75.15837413570682, 40.03668606571486], [-75.15702140499151, 40.03671310349853], [-75.15664349184547, 40.03668758259277], [-75.15638304168068, 40.03664529696424], [-75.1561245406069, 40.03655208788836], [-75.1558581505199, 40.036417443412375], [-75.15559107750623, 40.03621529856409], [-75.14986041135666, 40.03582873929858], [-75.14925006473153, 40.03573632825544], [-75.14872321845299, 40.03567052723887], [-75.14817965587301, 40.035599243543416], [-75.14719897646965, 40.03547322032816], [-75.14643827735868, 40.035379044730846], [-75.14555423769299, 40.03526310349242], [-75.14589858962322, 40.033729038091984], [-75.14622802622662, 40.03218680840395], [-75.1465198569296, 40.03086669439065], [-75.14657623992896, 40.03063853073237], [-75.1466831095684, 40.03022796670184], [-75.1467062707666, 40.03012811909639], [-75.14682785335461, 40.029603964525016], [-75.14685100645652, 40.029482804010044], [-75.14691352343654, 40.02914516669453], [-75.14721962735459, 40.02764514311778], [-75.14755641513194, 40.02613961797357], [-75.14789505568146, 40.024554834487724], [-75.14824630443891, 40.02296067248439], [-75.14911084080961, 40.023087628437445], [-75.14987715742109, 40.0231842466539], [-75.15044000128925, 40.0232544392301], [-75.1506825222888, 40.02328812009111], [-75.15090369245164, 40.02331069599366], [-75.15147241693867, 40.023381528339236], [-75.1522667173414, 40.02348787117297], [-75.15303674304226, 40.02358501513317], [-75.15358036624822, 40.02365797773569], [-75.15405365312745, 40.02372785476409], [-75.15461075489527, 40.02380201274293], [-75.15539798309345, 40.02388910564577], [-75.15618269933954, 40.02398984263152], [-75.15696965137474, 40.02409024536052], [-75.15715360548293, 40.02413182896438], [-75.15724219824413, 40.02408925777339], [-75.15782906553865, 40.02375408545743], [-75.15790589094377, 40.023704912206234], [-75.15903605423988, 40.02280190058979], [-75.15950224294882, 40.0223432341361], [-75.16020566761645, 40.021312918917715]]]}}, {"id": "6380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.23035277957234, 40.08267476866629], [-75.2301794942427, 40.08268756335315], [-75.22994207044799, 40.082682357964245], [-75.22977155525922, 40.08262054487449], [-75.2295258070147, 40.082548784516646], [-75.22927296615082, 40.08237731115313], [-75.22859076107581, 40.08213419633967], [-75.22807028453268, 40.0818987752061], [-75.22765618786684, 40.08170716616172], [-75.22735185996784, 40.08146818773472], [-75.22703520302512, 40.081270419520784], [-75.22680611171896, 40.08104138831406], [-75.22649284903395, 40.08075243236348], [-75.22624434014634, 40.08046489740403], [-75.22604917455128, 40.08019512778883], [-75.22594742726926, 40.08002696375382], [-75.22590025895488, 40.07984340828304], [-75.22573716086733, 40.07958263595362], [-75.22552041613174, 40.079312390476254], [-75.22548247315505, 40.079246018795054], [-75.22533789600043, 40.078993118274425], [-75.22518436116688, 40.07876574232143], [-75.22478958021959, 40.07805602214], [-75.22467335998041, 40.077696720978004], [-75.224484071298, 40.07726944502672], [-75.22430372483832, 40.07689214332473], [-75.22406757151978, 40.07656339285195], [-75.22380275568308, 40.07613445377599], [-75.22361224171561, 40.07574033461288], [-75.22348246180022, 40.0754554028763], [-75.2233640900345, 40.075154129066924], [-75.2231222525839, 40.07468836155796], [-75.22301405654467, 40.074403903759965], [-75.22301253280233, 40.07415497688277], [-75.22306465107508, 40.073915526763315], [-75.22321480880846, 40.07365334319305], [-75.22340473110751, 40.073483293600965], [-75.2239359479737, 40.07313822547624], [-75.22444187609301, 40.072892156381826], [-75.22475048568877, 40.072724712956685], [-75.22509269992044, 40.07252482076271], [-75.22535845521037, 40.07234813966267], [-75.22541857825082, 40.0721835307691], [-75.22555330614519, 40.07204545248316], [-75.22560689750236, 40.07186637332087], [-75.22562730372316, 40.07179818477979], [-75.22560156553432, 40.071619246971714], [-75.2254776385463, 40.07146718940843], [-75.22534045015375, 40.071381212063194], [-75.22517243854045, 40.07125307378348], [-75.22494153696408, 40.071073775280794], [-75.22466778663087, 40.07088523922988], [-75.22436228313141, 40.07067941101737], [-75.22391898414968, 40.07040418218518], [-75.22354073415222, 40.07012208264088], [-75.22323554624268, 40.06990796365707], [-75.22303764245397, 40.06971279303993], [-75.22283726891679, 40.06958394131134], [-75.22264923022982, 40.06941387780444], [-75.22252469618299, 40.069278394369626], [-75.22244393540804, 40.06912728358061], [-75.22227624376103, 40.06899085148552], [-75.22206724680694, 40.06880373321647], [-75.2217426532696, 40.06853110678613], [-75.2213027771429, 40.06816468169993], [-75.2209179347524, 40.06777042698577], [-75.22072344387293, 40.06748406897721], [-75.22057950109134, 40.06729008239717], [-75.22054237296345, 40.06721474649943], [-75.22050923080047, 40.06714749556472], [-75.220482425938, 40.0669975700272], [-75.22040538564119, 40.06674698042691], [-75.22035054142914, 40.0664802875594], [-75.22040204497277, 40.066257416762774], [-75.22047265223308, 40.06610134012056], [-75.22075320409613, 40.06581714015489], [-75.22104144863594, 40.06561607340886], [-75.22150726258572, 40.06528617072171], [-75.22191572875089, 40.06504626453165], [-75.2225177766978, 40.0648272096523], [-75.22300837908303, 40.06470110721599], [-75.22328242911209, 40.064590983781855], [-75.22344920425138, 40.06446190919216], [-75.22352011258054, 40.06429754021719], [-75.22357191279042, 40.06406637840206], [-75.22352506966465, 40.06387452948777], [-75.22340116030304, 40.06372246959266], [-75.22315118059892, 40.06347637636253], [-75.22289134395056, 40.063205176676256], [-75.22263243242793, 40.062909106714166], [-75.22239510269806, 40.06261351176765], [-75.22223174936673, 40.06236102554656], [-75.22215378114606, 40.062135306657616], [-75.2220866007378, 40.06190982594182], [-75.22187242274134, 40.06128287912471], [-75.22171077373474, 40.06098480042213], [-75.22150890942957, 40.060607018300935], [-75.22134432944159, 40.060387689084486], [-75.22117851331238, 40.06020151786903], [-75.22101022821018, 40.06008166299098], [-75.22079817161715, 40.05997743888005], [-75.22064160075098, 40.05983295308749], [-75.22047671514694, 40.0596219130589], [-75.22035622174903, 40.05937866375898], [-75.2202690184377, 40.05911125636288], [-75.22000491297439, 40.05866572988123], [-75.2198246408614, 40.0582884207507], [-75.21965144839187, 40.058010823670315], [-75.21938886133773, 40.057814222902245], [-75.21920948591723, 40.05770241727509], [-75.21894168160546, 40.05735636486365], [-75.21870160256275, 40.057135367329046], [-75.21853611088002, 40.05694090450774], [-75.21841315458913, 40.056763968720674], [-75.21829851055543, 40.05665358966609], [-75.21815707259692, 40.05639328255384], [-75.21796293545793, 40.05609862743273], [-75.21786557809817, 40.055814404931795], [-75.21784527981154, 40.055490394310446], [-75.2178326859878, 40.055389555593784], [-75.21779540748678, 40.0550910671567], [-75.21776370587726, 40.05478339972237], [-75.21766975489608, 40.05440798827836], [-75.21754932117564, 40.053874360860874], [-75.21740545851311, 40.053389994172306], [-75.21721381115472, 40.05302902401661], [-75.2170101374423, 40.052700972060066], [-75.21679072538791, 40.05250531568779], [-75.21632692950475, 40.05220471199618], [-75.2157779251754, 40.05187318942014], [-75.21542076776456, 40.05160811879584], [-75.2152226300174, 40.05142122678272], [-75.21501401520094, 40.05122580502872], [-75.21477366202399, 40.05101308969664], [-75.21457095142553, 40.050756997128204], [-75.2145028979404, 40.05067102121905], [-75.21405097697317, 40.04984477259543], [-75.21391448667507, 40.04952210070516], [-75.21378225812595, 40.04908535721496], [-75.21366632770139, 40.04880880505784], [-75.21350331205412, 40.04859970973842], [-75.21333116833364, 40.04843607880874], [-75.21312784812656, 40.048311716613625], [-75.2129769046371, 40.04817709331067], [-75.21260865508998, 40.047894967336916], [-75.2123826464751, 40.047781519170755], [-75.21215049774804, 40.04763368703058], [-75.21194910224808, 40.04745799020771], [-75.21176848115175, 40.04732271042747], [-75.21164658531441, 40.047205853263726], [-75.21158363596008, 40.04710171417034], [-75.21158218854448, 40.04694185216979], [-75.21166066758568, 40.046829422513625], [-75.2118452230371, 40.046462466295836], [-75.21194387704928, 40.046207777510205], [-75.21204231820863, 40.04595879087753], [-75.21210957954078, 40.045749073728594], [-75.21217974815472, 40.044865850199635], [-75.21219062724198, 40.0445749723814], [-75.21217139683955, 40.04429484411868], [-75.2121443171284, 40.04402596169148], [-75.21204981105043, 40.04377271123764], [-75.21192903529322, 40.04342755048803], [-75.2117895800312, 40.043184724066734], [-75.21167373864417, 40.043090419187074], [-75.21155894192873, 40.04299696438598], [-75.21134549627982, 40.04274679443542], [-75.21105767616733, 40.04230090130406], [-75.2109046653704, 40.04202352346143], [-75.21085954892055, 40.04183986385273], [-75.21083797713106, 40.04162247498826], [-75.21072889124217, 40.04132547366802], [-75.21056168484728, 40.04087022688045], [-75.21048075797292, 40.04064989036193], [-75.21016113787074, 40.040260373489794], [-75.21001704965896, 40.039943234008625], [-75.20981167851987, 40.03967611498109], [-75.20955799502023, 40.03931088753139], [-75.20931744791032, 40.03899161630986], [-75.20912457299517, 40.03878756032005], [-75.20886897664359, 40.03847366389456], [-75.20865234891762, 40.038309040909205], [-75.20837657449391, 40.03813739998149], [-75.20807811152633, 40.03797667283057], [-75.20772920774597, 40.03777487177704], [-75.20721562476146, 40.03740959192733], [-75.20697424047722, 40.037113130006546], [-75.20676696501357, 40.03689733615117], [-75.2065986085726, 40.036631961173214], [-75.20699511141257, 40.03649295570227], [-75.20914139137474, 40.035659851691165], [-75.20912218928297, 40.035621840775775], [-75.20894890862664, 40.03524245326302], [-75.20970207086455, 40.034975212048174], [-75.21069571487631, 40.03470016806649], [-75.21163946652192, 40.03425528193702], [-75.21449335806577, 40.0328392244125], [-75.21517657247027, 40.03344632792387], [-75.2153611594672, 40.033612978699125], [-75.21588220473366, 40.03405846904807], [-75.21600243118746, 40.03418744879971], [-75.2164164162974, 40.034606030367065], [-75.21663988774236, 40.034834138713485], [-75.21738290949676, 40.035585013994464], [-75.21792679239577, 40.03616127321977], [-75.21808156983627, 40.036298049985746], [-75.21818332016892, 40.03637186635479], [-75.21848040560981, 40.03654179248017], [-75.21876044719933, 40.03665586418302], [-75.21939787277367, 40.03691246463764], [-75.22067011533525, 40.03730541500676], [-75.22129409897332, 40.03752006547368], [-75.22178364076424, 40.03768423026475], [-75.22205297800791, 40.03777701262175], [-75.22280951936881, 40.038112997139116], [-75.22327148183568, 40.03873508257713], [-75.22339531056211, 40.03890199136062], [-75.22380787878424, 40.03943822398916], [-75.2261606942151, 40.03836248679967], [-75.22704014575491, 40.037811684914686], [-75.22817973172945, 40.03708302145663], [-75.22846478302714, 40.03691109620618], [-75.2291463474606, 40.036476921844844], [-75.23004048990013, 40.03591082603452], [-75.23110561965497, 40.0352203738803], [-75.23294892141585, 40.03440870118229], [-75.23334791606099, 40.03422990450476], [-75.23347140626689, 40.0341891572001], [-75.23356293339191, 40.03414453166594], [-75.23365926823085, 40.034091376274894], [-75.23400675069436, 40.03391051627217], [-75.23492237238553, 40.033507810813035], [-75.23548278380052, 40.033266081633215], [-75.23659973518544, 40.032788969997156], [-75.23794421073465, 40.03207409545746], [-75.2383207666653, 40.032276133395676], [-75.23981029716893, 40.03331339537024], [-75.24048991682038, 40.03385182089564], [-75.24126945829778, 40.03467543949548], [-75.24188660444196, 40.035410599628975], [-75.24242328641597, 40.03583268652996], [-75.2429794123921, 40.03622689416779], [-75.24352237310877, 40.036479305759755], [-75.24437387203027, 40.036851649750155], [-75.24495050064645, 40.03718969357607], [-75.24559602036331, 40.037656590452954], [-75.24617090319563, 40.038291751393665], [-75.24700119872512, 40.03973906042202], [-75.24792075661651, 40.04076378900924], [-75.24904061279294, 40.04184947352197], [-75.25098609010281, 40.04326442539769], [-75.25288357388546, 40.04473489920496], [-75.25431892977208, 40.04575663310977], [-75.25589350664505, 40.04649835845789], [-75.25765698741405, 40.047612077465544], [-75.25962262300425, 40.04923956838294], [-75.26109832862248, 40.05067245466669], [-75.2626772349632, 40.05230566326601], [-75.26440145602456, 40.05411924457915], [-75.26386876848365, 40.05455088467353], [-75.26364402450334, 40.05475780096561], [-75.2635192278265, 40.05487269924374], [-75.26322298086806, 40.05514544642252], [-75.24345817374991, 40.07333560805698], [-75.24328766603712, 40.07349322360966], [-75.24313842579609, 40.07363184419745], [-75.24306339869048, 40.07370411565387], [-75.24210907881313, 40.07464282449793], [-75.24128588359679, 40.07545310524678], [-75.24095812787534, 40.07576877273638], [-75.24067409635178, 40.07605051585533], [-75.24039019564327, 40.076341496314605], [-75.24012963143099, 40.07659792106551], [-75.23999636903362, 40.0767244513198], [-75.23965572220074, 40.07704923562079], [-75.23936865476257, 40.077321574264296], [-75.23821696094798, 40.07847643574011], [-75.23770858074418, 40.078980513623826], [-75.2371717123157, 40.07950751482991], [-75.23668159485884, 40.07999675562678], [-75.23622461299013, 40.08045186530228], [-75.23609103734573, 40.08058545994921], [-75.23301936788978, 40.08363141840429], [-75.23266787022823, 40.08342299244986], [-75.23196115806692, 40.08313193953048], [-75.23115540153664, 40.082874882829444], [-75.23097501668049, 40.08278796537604], [-75.23078260987309, 40.08273396945265], [-75.23055659477808, 40.08271242363329], [-75.23035277957234, 40.08267476866629]]]}}, {"id": "6390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.15618269933954, 40.02398984263152], [-75.15539798309345, 40.02388910564577], [-75.15461075489527, 40.02380201274293], [-75.15405365312745, 40.02372785476409], [-75.15358036624822, 40.02365797773569], [-75.15303674304226, 40.02358501513317], [-75.1522667173414, 40.02348787117297], [-75.15147241693867, 40.023381528339236], [-75.15090369245164, 40.02331069599366], [-75.1506825222888, 40.02328812009111], [-75.15044000128925, 40.0232544392301], [-75.14987715742109, 40.0231842466539], [-75.14911084080961, 40.023087628437445], [-75.14824630443891, 40.02296067248439], [-75.14856756631274, 40.02147712508312], [-75.14869223870237, 40.02095431395297], [-75.14873876523373, 40.02071218205933], [-75.14885054693626, 40.020202287719464], [-75.14893672041177, 40.01982773281143], [-75.14895440785872, 40.01974442881808], [-75.14899401136766, 40.019573800755275], [-75.14923089340353, 40.01850378775497], [-75.1493475064601, 40.017958839322176], [-75.14958686700786, 40.01693362198721], [-75.14972718930441, 40.016216009188604], [-75.14977041330002, 40.01602280409584], [-75.14983979568106, 40.01567315281484], [-75.14993222382938, 40.01532671020396], [-75.15014844385973, 40.01534175888267], [-75.1503365517051, 40.015306352452406], [-75.15078016813321, 40.0151401698474], [-75.15094138488286, 40.01523564381474], [-75.15121604470929, 40.01539290912895], [-75.15149048826045, 40.015550775247235], [-75.15177659420125, 40.015694582898824], [-75.15207891659178, 40.015818381098214], [-75.15238807819273, 40.015931755249575], [-75.15270503067173, 40.01603139125947], [-75.1530274643304, 40.016120194868904], [-75.15324693958607, 40.01617530203144], [-75.15335320453102, 40.01620198402418], [-75.15368454348616, 40.01626716423652], [-75.15406802819236, 40.016323599506364], [-75.15435919764802, 40.01635785398967], [-75.15469996687044, 40.01638631532018], [-75.15504172966676, 40.01639847886657], [-75.15538440697776, 40.016397019760355], [-75.15572648503664, 40.016383367047936], [-75.1560662031187, 40.01635348405228], [-75.1565538522124, 40.01629451651498], [-75.15688822595365, 40.01623613107863], [-75.157218111556, 40.01616711405825], [-75.15753812329432, 40.016074266545736], [-75.15772865369271, 40.01601172539366], [-75.15785344588112, 40.015970763203924], [-75.15816828945724, 40.01586664362334], [-75.15847900854268, 40.0157557355624], [-75.15877274865699, 40.0156218460325], [-75.15905493993432, 40.01547215715871], [-75.15934004986012, 40.015326221328756], [-75.15962657390058, 40.01518216380263], [-75.15991310674733, 40.01503811930221], [-75.16019965081081, 40.01489408607971], [-75.16048620023716, 40.01475006400301], [-75.16077276211982, 40.01460605143004], [-75.16105932819474, 40.014462049976366], [-75.16134590331674, 40.01431805524632], [-75.16163248269973, 40.014174069834986], [-75.16190138857833, 40.01403897573039], [-75.16220566147976, 40.01388612172527], [-75.16249225746749, 40.01374215624688], [-75.16277885785378, 40.01359819648607], [-75.16306546146778, 40.01345424241642], [-75.16335206958335, 40.0133102913636], [-75.16363867861956, 40.01316634504888], [-75.16392529098655, 40.01302240172455], [-75.16421190320634, 40.01287846041121], [-75.16449851879126, 40.01273452118798], [-75.16478513202462, 40.01259058032205], [-75.16507174621306, 40.012446643293906], [-75.1653583592207, 40.01230270464945], [-75.1656449698768, 40.012158764362326], [-75.16593157814704, 40.012014823332706], [-75.16621818761232, 40.01187087983926], [-75.1665047889065, 40.01172693367119], [-75.16679138915686, 40.011582982285844], [-75.16707798591912, 40.011439028331296], [-75.16736457698876, 40.01129506815394], [-75.16765116339951, 40.0111511053811], [-75.16777770010867, 40.01108753491117], [-75.16793774191312, 40.011007132731905], [-75.16826850056458, 40.010840955359306], [-75.16855578983157, 40.0106978189312], [-75.16884292685465, 40.01055449368053], [-75.1691299666026, 40.01041104391501], [-75.16941695932798, 40.01026753473676], [-75.1697039552153, 40.01012403304795], [-75.16999100923545, 40.009980603154695], [-75.17012183886611, 40.009915319234196], [-75.17016802476591, 40.00996625873271], [-75.1703638212095, 40.0101822176973], [-75.17055961518098, 40.01039818164876], [-75.17075539862202, 40.01061414680205], [-75.17095117611288, 40.010830115963145], [-75.17114693811662, 40.01104609342295], [-75.17134268473573, 40.011262076480755], [-75.17153840994537, 40.01147806950644], [-75.1717341148136, 40.01169407522714], [-75.1719297936233, 40.01191008991051], [-75.17212544499837, 40.01212611893189], [-75.17232106308491, 40.01234216215997], [-75.17251664898511, 40.01255822142175], [-75.17271219560573, 40.012774298360135], [-75.17290770415151, 40.01299039210142], [-75.17310316505105, 40.01320650783698], [-75.17330414845071, 40.01342880284322], [-75.17185110939445, 40.01421865254688], [-75.16990856732517, 40.015251275367135], [-75.16932388598943, 40.01561308507677], [-75.16922639801739, 40.015723223219084], [-75.16903385880265, 40.01586767344456], [-75.16875550853955, 40.016063754154686], [-75.16843373327283, 40.016281090405364], [-75.16830601223785, 40.01634706248918], [-75.1681011247023, 40.0164922616461], [-75.16773914456775, 40.01677676715074], [-75.16726952579513, 40.01715117286135], [-75.16686766643225, 40.017471360816195], [-75.16637408236633, 40.017853963773874], [-75.16612297805914, 40.01804860618353], [-75.16595069899675, 40.01817014864473], [-75.16580943584417, 40.018250581845486], [-75.16549601289547, 40.018389849712655], [-75.16451672375794, 40.01882070935512], [-75.1642100579168, 40.01894959041402], [-75.16382947760472, 40.01918243550099], [-75.1637594507446, 40.01923581659435], [-75.16260104521236, 40.019587285956476], [-75.16165740699451, 40.019866523130446], [-75.16069195307685, 40.020154843997446], [-75.16065723063446, 40.020267866462135], [-75.16064104200257, 40.02032672424692], [-75.160587094013, 40.02047412659202], [-75.16020566761645, 40.021312918917715], [-75.15950224294882, 40.0223432341361], [-75.15903605423988, 40.02280190058979], [-75.15790589094377, 40.023704912206234], [-75.15782906553865, 40.02375408545743], [-75.15724219824413, 40.02408925777339], [-75.15715360548293, 40.02413182896438], [-75.15696965137474, 40.02409024536052], [-75.15618269933954, 40.02398984263152]]]}}, {"id": "6410", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.20607098712954, 40.03545486751505], [-75.20601718590125, 40.035305262058806], [-75.2058671406445, 40.03514781690197], [-75.20570097432311, 40.03502426417902], [-75.20546781580545, 40.03490493310414], [-75.20519541902128, 40.03484181600355], [-75.20486302268161, 40.0347944931357], [-75.20429618639469, 40.034662058053975], [-75.20402971436165, 40.034639027990075], [-75.2037475444075, 40.034638480680805], [-75.20350839828592, 40.034678843315966], [-75.20322216373734, 40.034786662719796], [-75.20308475313355, 40.03488636329297], [-75.20292251520746, 40.03505401271858], [-75.20271211717781, 40.035317633574714], [-75.20257149451804, 40.0355028854725], [-75.20238656373073, 40.035681448385986], [-75.20226120658367, 40.03585562283787], [-75.20215004658733, 40.03604723564648], [-75.20203211000842, 40.03622157448156], [-75.20178824330848, 40.03638741157057], [-75.20156307328378, 40.03645091539052], [-75.20134832008314, 40.03643473280454], [-75.20119507108404, 40.03636283525448], [-75.20110246626595, 40.03625803169762], [-75.20095963561124, 40.03610644698831], [-75.20087202841943, 40.03596750522857], [-75.20085098603475, 40.03583574861133], [-75.20090064681602, 40.03569985332406], [-75.20086740470755, 40.03559636701068], [-75.20077587266421, 40.03546304589897], [-75.20065701896179, 40.035266328297695], [-75.20044427709198, 40.03499902773448], [-75.20029111299033, 40.03472733968486], [-75.20019902122058, 40.03441134260745], [-75.20009758234858, 40.03414651220337], [-75.1999853764631, 40.03377298530102], [-75.2000286885841, 40.03360840834481], [-75.20014649247801, 40.03323998893978], [-75.2002066813973, 40.03302155884678], [-75.20024278770153, 40.03285111219636], [-75.20023180653428, 40.032748119832135], [-75.2001684571078, 40.03265538325535], [-75.19997327152043, 40.032514050436404], [-75.19972657938162, 40.032360159665316], [-75.19965720849837, 40.032329249260336], [-75.19945063498541, 40.03219420120977], [-75.1992054457941, 40.032000384046086], [-75.198899826879, 40.03183376513608], [-75.19865313854223, 40.0316798702286], [-75.19849526936679, 40.031533657670074], [-75.19833847656706, 40.031358927702016], [-75.19822512372946, 40.031213702871426], [-75.19810068880156, 40.03096833830079], [-75.19809588817733, 40.03089442501455], [-75.19808658022411, 40.03075111177749], [-75.19810172067304, 40.03054595177751], [-75.19817115316746, 40.03027920626962], [-75.19820306325853, 40.03002304453975], [-75.19823411302642, 40.02978969602251], [-75.19829376662832, 40.02958552503025], [-75.19828416203968, 40.02924852546078], [-75.19819251359026, 40.02892111955368], [-75.19811077570213, 40.028725224431575], [-75.19802839269148, 40.028546436679], [-75.19791676438537, 40.02835558505061], [-75.19777105348861, 40.02809851703602], [-75.19767468097466, 40.02788212914194], [-75.19756219684936, 40.027714089537525], [-75.19741853522534, 40.0275853145659], [-75.19725767500935, 40.027518948984756], [-75.19694080192527, 40.02745482282738], [-75.19661479316244, 40.0274361591623], [-75.19623470657457, 40.0274733724764], [-75.1959209605919, 40.02752347929342], [-75.19553559884544, 40.02750349075091], [-75.19508175165136, 40.0275276456523], [-75.19479240866688, 40.0275212082444], [-75.19453124018865, 40.02755535481058], [-75.19426071771045, 40.027640665222464], [-75.19391664861698, 40.027707214493816], [-75.19361203818029, 40.027711851852914], [-75.19334538111958, 40.0276944982596], [-75.19321592230008, 40.0275831612474], [-75.19316151110232, 40.027450658973855], [-75.19330450726073, 40.02720268011006], [-75.19348244764849, 40.02701256037837], [-75.19363490933219, 40.026907498464205], [-75.19374457249535, 40.026755815367316], [-75.19393735196232, 40.02656602708576], [-75.19428000791352, 40.02633961354925], [-75.19449396494984, 40.02617883771931], [-75.19467674213509, 40.02605732279176], [-75.19484511016006, 40.02592407125742], [-75.19496810515115, 40.02581264147189], [-75.19504616022495, 40.02571163018187], [-75.1951019554212, 40.02561012271681], [-75.19516602862579, 40.02548596792842], [-75.19522160999645, 40.02539016261946], [-75.19525557906691, 40.02527675470127], [-75.19523997803107, 40.02509945210123], [-75.19525727026146, 40.024837256973086], [-75.19531800535528, 40.02460456940891], [-75.19539863212474, 40.024435116240824], [-75.19561451234333, 40.02422300599726], [-75.19586209060706, 40.02408052814591], [-75.1962364802291, 40.02385044329653], [-75.19661673607646, 40.023634510949535], [-75.1971247232168, 40.02335468413469], [-75.19773806728172, 40.02303723908307], [-75.19828926933943, 40.02279261764224], [-75.19878532457916, 40.022632393583635], [-75.19918450788889, 40.02248142957175], [-75.19934170779126, 40.022409689343846], [-75.19963776060904, 40.02227458377773], [-75.20007218376311, 40.021975985218994], [-75.20027234638414, 40.02178635090709], [-75.20040274633219, 40.02167508186673], [-75.20054840776287, 40.02155273490167], [-75.20062160003872, 40.021383111556446], [-75.20068994333401, 40.02114488354787], [-75.20082041804712, 40.02083382726441], [-75.200933484597, 40.02059088319604], [-75.20099183814499, 40.02042093025455], [-75.20179311252437, 40.01905161270349], [-75.20199055409695, 40.01873633438742], [-75.20222066465567, 40.0183418634675], [-75.20235155632979, 40.01801939652393], [-75.20246610984428, 40.017736527357975], [-75.20267609871061, 40.017284526184504], [-75.20286654166652, 40.016957674676874], [-75.20303280363615, 40.01668165809953], [-75.2031640440374, 40.016547571648445], [-75.20338429793868, 40.0164154592704], [-75.20364649000336, 40.016352775248386], [-75.20395932174982, 40.01632546331481], [-75.20424669291437, 40.01638320741465], [-75.20451922741914, 40.016440624581826], [-75.20479875441963, 40.01650961178716], [-75.20500453014414, 40.01656554618231], [-75.20530801957125, 40.016589396839564], [-75.20555030887488, 40.016463477484905], [-75.20579366609358, 40.01630904026045], [-75.20617481696412, 40.01604348848058], [-75.206387706368, 40.01571141920294], [-75.20645087585967, 40.01545245604645], [-75.20646664769988, 40.015387799942964], [-75.20662654125256, 40.015083096447846], [-75.2067059307227, 40.01490263093841], [-75.20678072668967, 40.0147326026567], [-75.20692071497255, 40.01436466800637], [-75.20706619715126, 40.01404822910396], [-75.20715783224605, 40.013781971752], [-75.20727299953978, 40.01348198569755], [-75.20739351668358, 40.01320203826188], [-75.20760649409308, 40.01272404544921], [-75.2086521136056, 40.01343967710121], [-75.21000742817179, 40.01410645377305], [-75.21166268341004, 40.015119462622884], [-75.21308389807258, 40.01624048556557], [-75.21384979900387, 40.01692249206666], [-75.21464457001309, 40.017817392484254], [-75.21542414542677, 40.01862704494904], [-75.2162562666293, 40.01950860927236], [-75.21734481410951, 40.02042412150334], [-75.21856318246036, 40.02131418430032], [-75.21939048433295, 40.02185599674593], [-75.22056540237243, 40.02220734989407], [-75.22126003177011, 40.022335853157074], [-75.22222421119417, 40.022640097680785], [-75.22304860630462, 40.02323842117824], [-75.22394763206715, 40.023810080688754], [-75.22487599450581, 40.0242944622951], [-75.22346371468775, 40.02540139058075], [-75.2231242065633, 40.025920410852386], [-75.22303325252824, 40.02601664157854], [-75.22141557478547, 40.02672157764617], [-75.22102716121036, 40.026229814753904], [-75.22060429661252, 40.025744288768784], [-75.21970065360257, 40.026141537737644], [-75.2193894442182, 40.02632450620234], [-75.21884192263634, 40.02660106639319], [-75.21822504333498, 40.02689789199421], [-75.21757598443969, 40.02717835626701], [-75.21663305375151, 40.02760356191073], [-75.21583510209882, 40.02795116403751], [-75.21503704266769, 40.02832590370966], [-75.21418958233424, 40.02870001667278], [-75.21332953362057, 40.02906470309765], [-75.21130935560589, 40.02997181305775], [-75.21207109206586, 40.03066671482359], [-75.21231047697843, 40.03088089134142], [-75.21310171087386, 40.03159961035404], [-75.21369099841677, 40.03210832453038], [-75.21449335806577, 40.0328392244125], [-75.21163946652192, 40.03425528193702], [-75.21069571487631, 40.03470016806649], [-75.20970207086455, 40.034975212048174], [-75.20894890862664, 40.03524245326302], [-75.20912218928297, 40.035621840775775], [-75.20914139137474, 40.035659851691165], [-75.20699511141257, 40.03649295570227], [-75.2065986085726, 40.036631961173214], [-75.20653556814453, 40.03653259396182], [-75.20647712448454, 40.03630867952482], [-75.20637352169493, 40.036100889391015], [-75.20626035989733, 40.03594996856576], [-75.20613913768528, 40.03581599532369], [-75.20608512223498, 40.03567209300905], [-75.20607098712954, 40.03545486751505]]]}}, {"id": "6440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17998167048039, 40.04209473357406], [-75.17963202957364, 40.04168252762443], [-75.17912977440957, 40.04106626641239], [-75.17871264213939, 40.04055843101864], [-75.1786313883227, 40.04045502151935], [-75.17775844345613, 40.039402056474906], [-75.17762916337077, 40.03923034817212], [-75.17695591195294, 40.03842372889561], [-75.17642853248903, 40.037795390475246], [-75.17614415827084, 40.0374530957513], [-75.17562257070458, 40.0367689105063], [-75.17520805709144, 40.03623377954292], [-75.17472531934024, 40.03582198106344], [-75.17649623766056, 40.03409785740428], [-75.17757545599665, 40.033047573898465], [-75.17773994379091, 40.032891613455284], [-75.1784680745982, 40.03217747122257], [-75.1788081294255, 40.03185131024302], [-75.17891466313162, 40.0317380686852], [-75.18029157893811, 40.030412246474555], [-75.18088365695873, 40.029841509241315], [-75.18148137413901, 40.02926532344677], [-75.182702183151, 40.028056239616085], [-75.18354462742221, 40.02726656215683], [-75.18416957969907, 40.02778727159014], [-75.18423409720958, 40.02785744191139], [-75.18475599428261, 40.02828670786825], [-75.18546479446888, 40.02887689787078], [-75.18619433324473, 40.0294699797975], [-75.18644380753355, 40.029296073536564], [-75.18677892810167, 40.0291124256], [-75.18706442961953, 40.02905763697274], [-75.18737926217861, 40.02909228285243], [-75.1883624717145, 40.02922889960042], [-75.18890267908205, 40.02934416339511], [-75.18940780350799, 40.02928574740464], [-75.18970849483175, 40.02922364496932], [-75.18994575152439, 40.02912954578415], [-75.19015478140203, 40.02899277241513], [-75.19028403082824, 40.028861861960216], [-75.19047396785099, 40.02837399003998], [-75.1904995457736, 40.02802570406753], [-75.19054476427709, 40.0278814543467], [-75.19064420187902, 40.0277498809391], [-75.19089851603299, 40.02759882364573], [-75.19104928822398, 40.027556311269855], [-75.1912292953343, 40.02752974194893], [-75.19176542891499, 40.02755315410919], [-75.1921111097142, 40.027484402743646], [-75.19235656838265, 40.02743635435836], [-75.19248235415391, 40.02739710662348], [-75.19261246810618, 40.02731614578106], [-75.19316151110232, 40.027450658973855], [-75.19321592230008, 40.0275831612474], [-75.19334538111958, 40.0276944982596], [-75.19361203818029, 40.027711851852914], [-75.19391664861698, 40.027707214493816], [-75.19426071771045, 40.027640665222464], [-75.19453124018865, 40.02755535481058], [-75.19479240866688, 40.0275212082444], [-75.19508175165136, 40.0275276456523], [-75.19553559884544, 40.02750349075091], [-75.1959209605919, 40.02752347929342], [-75.19623470657457, 40.0274733724764], [-75.19661479316244, 40.0274361591623], [-75.19694080192527, 40.02745482282738], [-75.19725767500935, 40.027518948984756], [-75.19741853522534, 40.0275853145659], [-75.19756219684936, 40.027714089537525], [-75.19767468097466, 40.02788212914194], [-75.19777105348861, 40.02809851703602], [-75.19791676438537, 40.02835558505061], [-75.19802839269148, 40.028546436679], [-75.19811077570213, 40.028725224431575], [-75.19819251359026, 40.02892111955368], [-75.19828416203968, 40.02924852546078], [-75.19829376662832, 40.02958552503025], [-75.19823411302642, 40.02978969602251], [-75.19820306325853, 40.03002304453975], [-75.19817115316746, 40.03027920626962], [-75.19810172067304, 40.03054595177751], [-75.19808658022411, 40.03075111177749], [-75.19809588817733, 40.03089442501455], [-75.19810068880156, 40.03096833830079], [-75.19822512372946, 40.031213702871426], [-75.19833847656706, 40.031358927702016], [-75.19849526936679, 40.031533657670074], [-75.19865313854223, 40.0316798702286], [-75.198899826879, 40.03183376513608], [-75.1992054457941, 40.032000384046086], [-75.19945063498541, 40.03219420120977], [-75.19965720849837, 40.032329249260336], [-75.19925173748065, 40.0327331286416], [-75.19903824459082, 40.032960800774006], [-75.19867854345327, 40.03310333437685], [-75.19791907202325, 40.033244249276365], [-75.19767897363276, 40.0334054527399], [-75.19759775248555, 40.03353189483889], [-75.1975423038068, 40.033712343674054], [-75.1975357248421, 40.033893093786155], [-75.19762267816256, 40.03416298827446], [-75.19764644430055, 40.0342703880722], [-75.19767408751511, 40.03440506991492], [-75.19781610939663, 40.03474973507563], [-75.19788801660623, 40.03505591715643], [-75.19797485763613, 40.03550704206032], [-75.19803969458452, 40.035669218093304], [-75.19823927899031, 40.0366086380846], [-75.19591426474284, 40.03773386290462], [-75.1961285681936, 40.03792510705202], [-75.19391825051949, 40.04003759263793], [-75.19209517660428, 40.0418099230789], [-75.19176919636841, 40.04214746287633], [-75.19157772831606, 40.042398635256504], [-75.19145042795034, 40.04262690767887], [-75.19134753185405, 40.04283747821982], [-75.19124142940883, 40.043133123148614], [-75.19119981577036, 40.04338709775542], [-75.19057914684831, 40.04299291082166], [-75.19025172805095, 40.04278912918824], [-75.18947980639672, 40.04230868909042], [-75.18931485668102, 40.0424870819142], [-75.18668797871183, 40.04503518347589], [-75.18527664267911, 40.046411282219864], [-75.18339861136822, 40.04825532226838], [-75.18279836557451, 40.04707577114246], [-75.18220444401027, 40.0458957297085], [-75.18170260015731, 40.044832379521964], [-75.18143093247392, 40.04416263987507], [-75.18125703292239, 40.043733829527675], [-75.18117466376285, 40.04361035144422], [-75.18097922010578, 40.04333838114339], [-75.18088411064987, 40.0432480218722], [-75.17998167048039, 40.04209473357406]]]}}, {"id": "6450", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.22327148183568, 40.03873508257713], [-75.22280951936881, 40.038112997139116], [-75.22205297800791, 40.03777701262175], [-75.22178364076424, 40.03768423026475], [-75.22129409897332, 40.03752006547368], [-75.22067011533525, 40.03730541500676], [-75.21939787277367, 40.03691246463764], [-75.21876044719933, 40.03665586418302], [-75.21848040560981, 40.03654179248017], [-75.21818332016892, 40.03637186635479], [-75.21808156983627, 40.036298049985746], [-75.21792679239577, 40.03616127321977], [-75.21738290949676, 40.035585013994464], [-75.21663988774236, 40.034834138713485], [-75.2164164162974, 40.034606030367065], [-75.21600243118746, 40.03418744879971], [-75.21588220473366, 40.03405846904807], [-75.2153611594672, 40.033612978699125], [-75.21517657247027, 40.03344632792387], [-75.21449335806577, 40.0328392244125], [-75.21369099841677, 40.03210832453038], [-75.21310171087386, 40.03159961035404], [-75.21231047697843, 40.03088089134142], [-75.21207109206586, 40.03066671482359], [-75.21130935560589, 40.02997181305775], [-75.21332953362057, 40.02906470309765], [-75.21418958233424, 40.02870001667278], [-75.21503704266769, 40.02832590370966], [-75.21583510209882, 40.02795116403751], [-75.21663305375151, 40.02760356191073], [-75.21757598443969, 40.02717835626701], [-75.21822504333498, 40.02689789199421], [-75.21884192263634, 40.02660106639319], [-75.2193894442182, 40.02632450620234], [-75.21970065360257, 40.026141537737644], [-75.22060429661252, 40.025744288768784], [-75.22102716121036, 40.026229814753904], [-75.22141557478547, 40.02672157764617], [-75.22303325252824, 40.02601664157854], [-75.2231242065633, 40.025920410852386], [-75.22346371468775, 40.02540139058075], [-75.22487599450581, 40.0242944622951], [-75.22519348185745, 40.02446011104909], [-75.22631113681243, 40.025093159203045], [-75.22795481788366, 40.02593586023214], [-75.22813603325612, 40.02602641551546], [-75.22967908820523, 40.02679445646915], [-75.23074584431313, 40.02731313629939], [-75.23170331576, 40.027801110198155], [-75.23290675810962, 40.02860578109708], [-75.23392315762696, 40.02949124533276], [-75.2350183907117, 40.030236920862365], [-75.23569898916516, 40.03074709666462], [-75.23713850345766, 40.03164179287043], [-75.23794421073465, 40.03207409545746], [-75.23659973518544, 40.032788969997156], [-75.23548278380052, 40.033266081633215], [-75.23492237238553, 40.033507810813035], [-75.23400675069436, 40.03391051627217], [-75.23365926823085, 40.034091376274894], [-75.23356293339191, 40.03414453166594], [-75.23347140626689, 40.0341891572001], [-75.23334791606099, 40.03422990450476], [-75.23294892141585, 40.03440870118229], [-75.23110561965497, 40.0352203738803], [-75.23004048990013, 40.03591082603452], [-75.2291463474606, 40.036476921844844], [-75.22846478302714, 40.03691109620618], [-75.22817973172945, 40.03708302145663], [-75.22704014575491, 40.037811684914686], [-75.2261606942151, 40.03836248679967], [-75.22380787878424, 40.03943822398916], [-75.22339531056211, 40.03890199136062], [-75.22327148183568, 40.03873508257713]]]}}, {"id": "6470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.17395171402475, 40.03519462706986], [-75.17372512349114, 40.035013997200274], [-75.17351405998669, 40.03483239338483], [-75.17271106053025, 40.03436680448122], [-75.17206034923001, 40.03398307995448], [-75.1706110856358, 40.03313266683023], [-75.16933164472384, 40.032384388862205], [-75.16921170143596, 40.032315150338924], [-75.16852487493777, 40.03194671602884], [-75.16774285096625, 40.03151764782613], [-75.16665612700291, 40.03089173848313], [-75.16648911530056, 40.03079541067652], [-75.16612124799292, 40.03060137387694], [-75.16549124869522, 40.030243355246], [-75.16495001486003, 40.029946937599085], [-75.16413486010035, 40.02949517005147], [-75.16374963293076, 40.02925677668989], [-75.16327034575254, 40.028961898037004], [-75.16226937941563, 40.028335271113015], [-75.16212693468864, 40.02824609646851], [-75.16142639258389, 40.027765739741476], [-75.16098306030462, 40.027254555654764], [-75.16057543984138, 40.02672479680068], [-75.16024532162861, 40.02630149469953], [-75.16005440340837, 40.0260242608284], [-75.15993190666204, 40.02555640847333], [-75.15989823412484, 40.024934916174836], [-75.15985830538149, 40.02462568816048], [-75.15955229569964, 40.02392652656961], [-75.1593151807718, 40.023411916350135], [-75.1592144562075, 40.02319330831552], [-75.15913886526133, 40.023029249784166], [-75.15903605423988, 40.02280190058979], [-75.15950224294882, 40.0223432341361], [-75.16020566761645, 40.021312918917715], [-75.160587094013, 40.02047412659202], [-75.16064104200257, 40.02032672424692], [-75.16065723063446, 40.020267866462135], [-75.16069195307685, 40.020154843997446], [-75.16165740699451, 40.019866523130446], [-75.16260104521236, 40.019587285956476], [-75.1637594507446, 40.01923581659435], [-75.16382947760472, 40.01918243550099], [-75.1642100579168, 40.01894959041402], [-75.16451672375794, 40.01882070935512], [-75.16549601289547, 40.018389849712655], [-75.16580943584417, 40.018250581845486], [-75.16595069899675, 40.01817014864473], [-75.16612297805914, 40.01804860618353], [-75.16637408236633, 40.017853963773874], [-75.16686766643225, 40.017471360816195], [-75.16726952579513, 40.01715117286135], [-75.16773914456775, 40.01677676715074], [-75.1681011247023, 40.0164922616461], [-75.16830601223785, 40.01634706248918], [-75.16843373327283, 40.016281090405364], [-75.16875550853955, 40.016063754154686], [-75.16903385880265, 40.01586767344456], [-75.16922639801739, 40.015723223219084], [-75.16932388598943, 40.01561308507677], [-75.16990856732517, 40.015251275367135], [-75.17185110939445, 40.01421865254688], [-75.17330414845071, 40.01342880284322], [-75.173493951003, 40.01363880364923], [-75.17368926651781, 40.01385498801739], [-75.17388452615543, 40.014071195097266], [-75.17407972733481, 40.01428743113824], [-75.17427486537244, 40.01450369603558], [-75.17446994026795, 40.014719989789626], [-75.17466494844024, 40.01493631412243], [-75.17485988513735, 40.0151526707297], [-75.17505474670979, 40.0153690631341], [-75.17524953212295, 40.01558548770875], [-75.17544423876154, 40.015801951603464], [-75.17552671391125, 40.015893697405055], [-75.17565908381408, 40.01604096033477], [-75.17575476211923, 40.01614745779258], [-75.17584542335327, 40.01624838166194], [-75.1760278511054, 40.01645157302326], [-75.17622220978954, 40.01666819526803], [-75.17641647316844, 40.016884860068586], [-75.17661063755828, 40.01710157184788], [-75.17680470071932, 40.01731832785329], [-75.17699866248022, 40.01753513258645], [-75.1771925170203, 40.01775198501652], [-75.17738626062157, 40.01796889046678], [-75.17756704006801, 40.01819271861627], [-75.17771296225875, 40.01843197748175], [-75.17783062615489, 40.01867870863221], [-75.17793398080568, 40.018929343960046], [-75.17802950186633, 40.01918236889096], [-75.17812245920452, 40.019436176044145], [-75.17821811683437, 40.01968915969033], [-75.17829905577587, 40.01996324862947], [-75.17835128765265, 40.02022254243119], [-75.17836483896939, 40.02048572998522], [-75.17835132003574, 40.020749360970896], [-75.17832225316255, 40.02101153911683], [-75.17829207453775, 40.02127366983408], [-75.17826098048974, 40.02153576743003], [-75.17822909970849, 40.02179783748928], [-75.17819654807381, 40.022059883507694], [-75.1781634577923, 40.02232191114883], [-75.17813356713184, 40.022588967799784], [-75.17903439685347, 40.02333017978122], [-75.17984442801564, 40.024087111001535], [-75.18166803708723, 40.02565827051328], [-75.1821248520501, 40.02604741606695], [-75.18293309559137, 40.02674623378277], [-75.18354462742221, 40.02726656215683], [-75.182702183151, 40.028056239616085], [-75.18148137413901, 40.02926532344677], [-75.18088365695873, 40.029841509241315], [-75.18029157893811, 40.030412246474555], [-75.17891466313162, 40.0317380686852], [-75.1788081294255, 40.03185131024302], [-75.1784680745982, 40.03217747122257], [-75.17773994379091, 40.032891613455284], [-75.17757545599665, 40.033047573898465], [-75.17649623766056, 40.03409785740428], [-75.17472531934024, 40.03582198106344], [-75.17395171402475, 40.03519462706986]]]}}, {"id": "7010", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05171102487331, 40.00699052937543], [-75.05273115891607, 40.00587339173539], [-75.05286953850623, 40.00563262986873], [-75.05435578267345, 40.003506885229285], [-75.05583164346423, 40.00125303629413], [-75.05668629664696, 39.999826352086515], [-75.05780413005665, 39.99784310027683], [-75.05881910641546, 39.99571927354719], [-75.05970259490692, 39.99346518181533], [-75.06072971978588, 39.99128939547064], [-75.06188994108325, 39.98931317828346], [-75.06261398611377, 39.988156275924574], [-75.06318390315069, 39.987342386672054], [-75.06394667821834, 39.98635801654672], [-75.0658800303735, 39.98470263060473], [-75.06673233459081, 39.984077215184996], [-75.06801544056256, 39.983135647058376], [-75.06939234949564, 39.981999197175654], [-75.07119989534809, 39.98073692359423], [-75.07323149967826, 39.979559390007445], [-75.07582271389332, 39.97834714035105], [-75.07769511402647, 39.97766051920748], [-75.08020200314922, 39.976930913778155], [-75.0825218917569, 39.976405694465285], [-75.08388364024222, 39.97614531542582], [-75.08558580969047, 39.97581981932251], [-75.08639109414254, 39.97566581927241], [-75.08795354905344, 39.975394673214204], [-75.08875616864948, 39.97525537833003], [-75.08930543909275, 39.97516004931649], [-75.08995641164408, 39.97504706505385], [-75.09096716599848, 39.97487162821714], [-75.0918136615686, 39.974724695193586], [-75.09289956921116, 39.9745361937343], [-75.09383959244585, 39.97437300792721], [-75.09767082904573, 39.97868529405697], [-75.09781795705604, 39.978853892130346], [-75.09964353338965, 39.98094576036583], [-75.0977377844456, 39.98194860579929], [-75.09761931635884, 39.982038241118104], [-75.09756005515227, 39.98211647076], [-75.0975276988675, 39.98219641877843], [-75.09752391315574, 39.98228957134906], [-75.09755217888296, 39.98238358003735], [-75.09760309687782, 39.98245354641823], [-75.09801763882122, 39.98292553606918], [-75.09821728078147, 39.983169049746955], [-75.09837805625185, 39.98336515270572], [-75.09900069277896, 39.98412460010107], [-75.09902737391457, 39.984229177837655], [-75.09905443550399, 39.984301895643185], [-75.09929255809479, 39.98457239187227], [-75.09950187343875, 39.984818019578746], [-75.09971429588026, 39.98505640311517], [-75.09977805216607, 39.98513090516478], [-75.10006751175682, 39.985454054005835], [-75.10028673505134, 39.98570433479536], [-75.10055278579604, 39.98600231567193], [-75.10091213494115, 39.986417209646824], [-75.10128194017628, 39.98682304051875], [-75.10160177835962, 39.98718808060266], [-75.10192236638139, 39.98754938871042], [-75.10227797698829, 39.98795138084919], [-75.1026223447675, 39.98834975160094], [-75.10305060635831, 39.98882263068709], [-75.10348311015099, 39.989312388500096], [-75.10390372468184, 39.989797541868775], [-75.1016035551865, 39.99099546766221], [-75.09930174421098, 39.99218683465115], [-75.09700726018444, 39.99340093093542], [-75.09555908145178, 39.99409568671221], [-75.09452368021225, 39.994604333014706], [-75.0920722662799, 39.99589576298429], [-75.08946670816803, 39.997270276066914], [-75.08708989422199, 39.99851975337438], [-75.08650317560277, 39.99882817507667], [-75.08637219053867, 39.99889668903513], [-75.08666932734353, 39.9991549010774], [-75.0870710855701, 39.99960523222292], [-75.08725148428842, 39.99985134298901], [-75.08741858989772, 40.000102183717935], [-75.08747738455683, 40.00044123669756], [-75.0874978781014, 40.000754199257734], [-75.0875148209393, 40.00115780317993], [-75.08756900623546, 40.00178151413913], [-75.08758552063374, 40.00202886357714], [-75.08768061036204, 40.002278035314845], [-75.08790668836195, 40.00269656807221], [-75.08798430624469, 40.00288989257783], [-75.08810160755651, 40.003074055475324], [-75.08825342491625, 40.003213660293326], [-75.08842985436478, 40.003394154256455], [-75.08864656234672, 40.0035503823744], [-75.08888380083832, 40.00368440414936], [-75.08941342606012, 40.00388316403909], [-75.09015139125702, 40.004153884085476], [-75.09033735121965, 40.004222103066994], [-75.09097751437344, 40.004443576190404], [-75.09140573694945, 40.004554296486084], [-75.09183794632433, 40.00473062814792], [-75.0921010930726, 40.00487280351358], [-75.09221919628253, 40.00503682062715], [-75.09233848386813, 40.0051706262382], [-75.09255396545545, 40.00536603675294], [-75.09239074383822, 40.005511140248174], [-75.09181617120602, 40.00600868145237], [-75.09288480353679, 40.005974655093624], [-75.09327398346457, 40.00596226234677], [-75.09634801619768, 40.005852913915064], [-75.096867594174, 40.0055623568645], [-75.09798025936766, 40.004951203315294], [-75.09936342138738, 40.004204338993276], [-75.10049827342786, 40.00358035163278], [-75.10181133678756, 40.00286444150113], [-75.1037972729379, 40.003135874650006], [-75.10368780044956, 40.0036383117411], [-75.10360252415369, 40.00407447780811], [-75.10352956329014, 40.00443165033639], [-75.10327103349695, 40.005603012611246], [-75.10533698181442, 40.00551937536787], [-75.10602631109278, 40.00549929463638], [-75.10666156788085, 40.00548114721689], [-75.1073529084745, 40.00547269932909], [-75.10803781110063, 40.00543237740518], [-75.10862843880291, 40.00540581803255], [-75.10937229646842, 40.00539334662989], [-75.11348354800558, 40.00592851401563], [-75.11930063244641, 40.00668062097756], [-75.12271875342688, 40.007135884907754], [-75.1234268932234, 40.007213386785665], [-75.12339320057532, 40.007418611434275], [-75.1233245784329, 40.00755692677894], [-75.12146940260696, 40.01015438751697], [-75.11944047531844, 40.01302705559972], [-75.11757219048913, 40.01558324450789], [-75.11747690485849, 40.015784203074695], [-75.11319772024986, 40.01553363305251], [-75.11136051115065, 40.01586805552725], [-75.10902514328343, 40.01628798447145], [-75.1079566960431, 40.01649243760471], [-75.10774566743571, 40.016581861972575], [-75.10706904288469, 40.016693842391774], [-75.10721337838702, 40.01677104914463], [-75.10733477456357, 40.0168519653075], [-75.10743534731849, 40.016962640715306], [-75.1074969191298, 40.0170648597228], [-75.10753986399301, 40.0172246106732], [-75.1075484926834, 40.01742389303715], [-75.1075019453263, 40.01760930469143], [-75.1074492879232, 40.01778323623494], [-75.10740250262029, 40.01789052115543], [-75.10725067393167, 40.01808611062809], [-75.10713174797101, 40.01819425525665], [-75.10702670300225, 40.01828255869556], [-75.10688632285866, 40.018352409187465], [-75.10672341291877, 40.01841166013801], [-75.10654007144916, 40.018490600181316], [-75.10629411473795, 40.01857817906554], [-75.10602757994306, 40.01868922492428], [-75.10586011859452, 40.01878112960109], [-75.10575625037828, 40.018839218600135], [-75.10567101752486, 40.01896577809034], [-75.10558162665019, 40.019114922541654], [-75.10548898171467, 40.01920460947764], [-75.10533590146107, 40.01928062696204], [-75.10514063362046, 40.01932905063636], [-75.10490885747714, 40.01934702238403], [-75.10417631965316, 40.01934652461066], [-75.10399315033166, 40.01937884526158], [-75.10383544166106, 40.019430651520175], [-75.10373741520444, 40.01952793403622], [-75.10369705860172, 40.01965930618886], [-75.1036570026035, 40.01987656897237], [-75.10359316270015, 40.02023388882772], [-75.10354663582343, 40.02039388960434], [-75.10349786087525, 40.02056161716755], [-75.10344906506903, 40.02072942262346], [-75.1033671849326, 40.02084992359056], [-75.10324696224033, 40.02092046779915], [-75.10317007037045, 40.02097241862366], [-75.10314578864238, 40.0210831418571], [-75.10315611454705, 40.02120233779963], [-75.10319501376617, 40.02135672803016], [-75.10326807374527, 40.02153109220913], [-75.10335965788994, 40.02174233905787], [-75.1035865167461, 40.0221965348681], [-75.10365124898982, 40.022328497067704], [-75.10376993748694, 40.02248472580516], [-75.10390069411592, 40.02258750934463], [-75.10409693194785, 40.02280308621844], [-75.10420684398072, 40.02292841226691], [-75.10419313378188, 40.02302403107859], [-75.10419937155955, 40.0231201076988], [-75.10422615514095, 40.02320130771402], [-75.10429208156532, 40.02330259974516], [-75.10438324573097, 40.02339679548704], [-75.10448981833729, 40.02347983364043], [-75.10462705803057, 40.02354439338227], [-75.10480855458879, 40.023604262577635], [-75.1024230166573, 40.02949318557148], [-75.10195887434806, 40.02934196297108], [-75.10156167428505, 40.02918380082311], [-75.10128705513067, 40.0289720841755], [-75.09906469220137, 40.02749807807378], [-75.09759035708078, 40.026571076513996], [-75.09725400391805, 40.02641113436297], [-75.09682994834438, 40.02627212964553], [-75.09647774420104, 40.026186774181035], [-75.09605195741689, 40.02613494846775], [-75.0955834671491, 40.026127620134424], [-75.09526862397325, 40.026148333813644], [-75.09495268670224, 40.02619701018641], [-75.09439191996336, 40.0263379947691], [-75.09406814999566, 40.02647046138908], [-75.09377160583495, 40.026629748156786], [-75.0903918108727, 40.02850061797068], [-75.08956157098642, 40.02895049593653], [-75.08853297121763, 40.02951223847952], [-75.08780447439533, 40.02991630348491], [-75.08704403318237, 40.030332471248634], [-75.08673522761529, 40.03051272166657], [-75.08604451725004, 40.03093078216704], [-75.08560488963899, 40.03119645712578], [-75.08547258246628, 40.031273684432875], [-75.0852697585556, 40.03138028375811], [-75.08512333320796, 40.031450025257755], [-75.08492630444702, 40.03154244548476], [-75.08472066349404, 40.03162543348738], [-75.08451686634676, 40.03169751451363], [-75.08432709881482, 40.031763071134606], [-75.08408993092331, 40.03182185063179], [-75.08394974653352, 40.031864818843445], [-75.08380562658093, 40.03190043045333], [-75.08210904612866, 40.03222753624818], [-75.08200440584257, 40.0322584952175], [-75.08190521436933, 40.032282428233174], [-75.08177593009637, 40.032308839996325], [-75.0807438478966, 40.03253982344368], [-75.07744388361579, 40.033296176686676], [-75.07697795937855, 40.033397972680206], [-75.07529951176552, 40.033783704283984], [-75.07525130271337, 40.033661436635455], [-75.0751487380651, 40.0334466456309], [-75.07506078615849, 40.03334997800687], [-75.07493564475371, 40.03325772149568], [-75.07483287179262, 40.03320326733209], [-75.07382568190619, 40.0326454257203], [-75.07360561234455, 40.03251822982968], [-75.07356021353532, 40.03244577064569], [-75.07355461850688, 40.032363421145035], [-75.07369253848567, 40.03210840218186], [-75.07386962085366, 40.03176463032088], [-75.07351393530942, 40.031555013912985], [-75.07304390892638, 40.03129574371874], [-75.06618493810203, 40.026915548478], [-75.06709032771728, 40.02677730779543], [-75.06795748719205, 40.026584067667095], [-75.06783721579384, 40.02649206348795], [-75.06668295259375, 40.02584138355716], [-75.06651979223467, 40.02580581909264], [-75.06629341432797, 40.025612034155614], [-75.06599609412177, 40.02529122842685], [-75.06543718559958, 40.02464211242266], [-75.06497094787639, 40.02411046962777], [-75.06491395782366, 40.02406163942987], [-75.06429850056371, 40.02437366105983], [-75.06379250395135, 40.02463878984568], [-75.06325416663721, 40.024913758823566], [-75.06280300649158, 40.02440337289763], [-75.06271239425418, 40.0242925423012], [-75.06075658276164, 40.025302397254684], [-75.05880467941977, 40.026314935658625], [-75.05825183059187, 40.02569286300014], [-75.057897070503, 40.025876805875036], [-75.05759522139245, 40.026032809647084], [-75.05727981106796, 40.02619638423572], [-75.05695499182227, 40.02636259906879], [-75.05629534391466, 40.02670488753105], [-75.05539833613314, 40.02567408298286], [-75.0549663561723, 40.025172380397535], [-75.05449649038853, 40.02464923564854], [-75.05405573884796, 40.024130575636875], [-75.05383051939687, 40.02388229248625], [-75.05360536254146, 40.023616927357196], [-75.05337410689482, 40.02336301410848], [-75.05315294282204, 40.02310603050815], [-75.0529326587648, 40.02286481292343], [-75.05270351743722, 40.02259335939741], [-75.05248290255767, 40.02234721787948], [-75.05225498658803, 40.02208102634417], [-75.05177492702299, 40.0215363498483], [-75.05132044682324, 40.02101559235904], [-75.05090575006129, 40.02053632334524], [-75.05045067390724, 40.02002728783608], [-75.05000317862873, 40.019512392481026], [-75.04949864826371, 40.018930315978146], [-75.04895805847762, 40.01833459840812], [-75.04879026013448, 40.01814272009394], [-75.04869060025547, 40.01802875804136], [-75.04858708950196, 40.01793877323055], [-75.04843241042651, 40.01780693177609], [-75.04827883286003, 40.01769035907416], [-75.04813594950116, 40.017585297316074], [-75.04808650156707, 40.01750175437715], [-75.04779921109528, 40.017327097465994], [-75.04740062933426, 40.01699499112109], [-75.04695708881782, 40.01666649054795], [-75.04654946592537, 40.016354768020506], [-75.04648114678258, 40.016302523093245], [-75.04628938611744, 40.01615203672511], [-75.04601335698105, 40.015932664335985], [-75.04578450295824, 40.01572048260732], [-75.04549702717796, 40.01539135984509], [-75.04318345620553, 40.01230180802732], [-75.04487805989457, 40.01142884476869], [-75.0468045730374, 40.01040768532484], [-75.04802351584226, 40.009719588094946], [-75.04917137466465, 40.008935643873606], [-75.05045520772387, 40.007982636145904], [-75.05092040548402, 40.00762418782804], [-75.05171102487331, 40.00699052937543]]]}}, {"id": "7100", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14471716118774, 40.02885685079207], [-75.14391379256013, 40.028750317831836], [-75.1431266425208, 40.02864419059783], [-75.14233586038641, 40.0285445555944], [-75.14155786712281, 40.028450084596976], [-75.14187993430589, 40.02695023153963], [-75.14108857730857, 40.02685210883573], [-75.14030488838324, 40.026746981853115], [-75.13950862078177, 40.02664905552823], [-75.1386988891154, 40.02653716609904], [-75.13828580138626, 40.02648992937553], [-75.13774715050255, 40.026417386977926], [-75.1378229004782, 40.026088812543264], [-75.13807943565392, 40.024928910005606], [-75.13841994705085, 40.023329816232724], [-75.13864604864172, 40.022274510415976], [-75.1386856314607, 40.022089355858064], [-75.13878989832307, 40.02167194894793], [-75.13962410577875, 40.02125554449826], [-75.13989326600749, 40.021143092921015], [-75.14126176526882, 40.020457827767785], [-75.14208211948895, 40.020076769123925], [-75.14246779103715, 40.01992131567765], [-75.1428848436295, 40.01977265716096], [-75.14326097466613, 40.01965955683399], [-75.14363335649988, 40.01956889301005], [-75.14409578705738, 40.019486694076015], [-75.14468710862543, 40.01941183457217], [-75.1453628611309, 40.019380817093726], [-75.14613788229155, 40.01938413204805], [-75.14638257068283, 40.01941384755003], [-75.14705879583687, 40.01909484972519], [-75.14714447643219, 40.01901145008065], [-75.1484680681646, 40.01840767197671], [-75.14908973201165, 40.0181106529181], [-75.1493475064601, 40.017958839322176], [-75.14923089340353, 40.01850378775497], [-75.14899401136766, 40.019573800755275], [-75.14895440785872, 40.01974442881808], [-75.14893672041177, 40.01982773281143], [-75.14885054693626, 40.020202287719464], [-75.14873876523373, 40.02071218205933], [-75.14869223870237, 40.02095431395297], [-75.14856756631274, 40.02147712508312], [-75.14824630443891, 40.02296067248439], [-75.14789505568146, 40.024554834487724], [-75.14755641513194, 40.02613961797357], [-75.14721962735459, 40.02764514311778], [-75.14691352343654, 40.02914516669453], [-75.14615174299354, 40.02904492261314], [-75.14471716118774, 40.02885685079207]]]}}, {"id": "7110", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05840701069471, 40.012781407430175], [-75.0586413312302, 40.01264885011602], [-75.05870638958133, 40.012612046410936], [-75.0600487730266, 40.011871081883434], [-75.06060679456483, 40.01156180339749], [-75.06097907480788, 40.011348487442554], [-75.06111667530679, 40.01126964195205], [-75.06231500458891, 40.01061667402492], [-75.0631592477611, 40.010222688814515], [-75.06426957195231, 40.009818299872826], [-75.06498019864055, 40.00957801634341], [-75.0657896484993, 40.00937412646459], [-75.06644883807276, 40.00924134697554], [-75.06761142282602, 40.009043480693656], [-75.06855645825688, 40.00885047847092], [-75.06889642394414, 40.0087888431993], [-75.06935185290021, 40.00868334693537], [-75.06970553402357, 40.00856782818408], [-75.06996509431009, 40.00847313292842], [-75.0704122559228, 40.00830999264732], [-75.07132799723937, 40.00794526456718], [-75.07226424118629, 40.00749422369687], [-75.07301414228317, 40.007088776220634], [-75.07368924273725, 40.006662615189924], [-75.07376939852078, 40.0066120160638], [-75.07391251175505, 40.00650694504352], [-75.074351815402, 40.0061844142656], [-75.07485107783086, 40.005801807302255], [-75.07539923571521, 40.00531395235073], [-75.07561777720912, 40.00513489052452], [-75.07571836824512, 40.00505247012691], [-75.0761923864628, 40.00462210010124], [-75.07672432017941, 40.00407046320036], [-75.07706342789717, 40.00369919122315], [-75.07723263993341, 40.00371552387754], [-75.07734549370338, 40.00372734461546], [-75.07742300443158, 40.00376172806825], [-75.07744727049445, 40.00392972355172], [-75.07747768474579, 40.00414030389461], [-75.07759312910837, 40.00469933736335], [-75.07774943992962, 40.00538417646413], [-75.07789180735155, 40.0060630276795], [-75.07804757869613, 40.00673401275043], [-75.07819554814382, 40.00741205761696], [-75.07833295323039, 40.00806746009549], [-75.07844817158372, 40.008587325110916], [-75.07847826246463, 40.008723089506965], [-75.07861364295223, 40.00935524799101], [-75.07874968635451, 40.00987955810453], [-75.07888283118169, 40.010028942497485], [-75.07928033188941, 40.01041011679957], [-75.07850491868784, 40.01073249149751], [-75.07831364702156, 40.01082038927243], [-75.07705894581584, 40.01133352361732], [-75.07742627803177, 40.012908300122575], [-75.07753693593935, 40.013356872141166], [-75.07830534931806, 40.013819680943], [-75.07946727058858, 40.01445822732093], [-75.08019987701304, 40.014864913005], [-75.08097132025813, 40.01530229667788], [-75.08236494235803, 40.01606923064227], [-75.08356395690733, 40.01675184627466], [-75.08366059658319, 40.0167978926383], [-75.08385322409082, 40.01657439468965], [-75.08438320179262, 40.01599753384922], [-75.08465720895092, 40.01571363601343], [-75.08551972336888, 40.01478886638747], [-75.08581981502454, 40.014449200555006], [-75.08634986317635, 40.013869059525234], [-75.08757777102656, 40.01251711448529], [-75.08765571886487, 40.01243104828334], [-75.0879733473435, 40.012104293034525], [-75.08873149831201, 40.01092474773304], [-75.08919763531237, 40.010179622728174], [-75.08927245543349, 40.01006426240513], [-75.08952675928374, 40.00967215486071], [-75.08965972218581, 40.00946714048222], [-75.08986582746228, 40.009132753141486], [-75.09009362547506, 40.0087631653654], [-75.09032710271441, 40.00836154533965], [-75.09093112514739, 40.007443593445664], [-75.09099114477563, 40.00732055578791], [-75.09116707754136, 40.00705389319111], [-75.09181617120602, 40.00600868145237], [-75.09288480353679, 40.005974655093624], [-75.09285136993151, 40.00613256007388], [-75.09275698304405, 40.00636726149589], [-75.09253778112755, 40.00660915183336], [-75.09232133963845, 40.00678054642556], [-75.09215590467748, 40.00698840157629], [-75.09211389737854, 40.00722431245984], [-75.09221407877834, 40.00751139890072], [-75.09237684350016, 40.00770669202036], [-75.09258891364838, 40.007938335956275], [-75.09295800332019, 40.008264474944404], [-75.09370780600149, 40.00870015399339], [-75.09427702237522, 40.00906109068554], [-75.09461576907472, 40.009264628212186], [-75.09478736900864, 40.00944395831309], [-75.0949067147156, 40.00963116035168], [-75.09500332253424, 40.009917311657965], [-75.095032054847, 40.01000711553365], [-75.09510418754013, 40.010232572844764], [-75.09497380707462, 40.010506979466605], [-75.09438434335257, 40.011344224245], [-75.0942937947617, 40.01148073163575], [-75.0940575446021, 40.01182303501672], [-75.09392127569429, 40.01203912720307], [-75.09368785533968, 40.012392834002796], [-75.09357548894567, 40.01258427955463], [-75.09350746262793, 40.012731388269465], [-75.09348279140482, 40.01285934120278], [-75.0934609009396, 40.012999956755614], [-75.09346560120999, 40.01313110856111], [-75.09349947382906, 40.01327049502147], [-75.09356744835101, 40.01345981206091], [-75.09369551346215, 40.013704700356556], [-75.09381573062232, 40.01389900569513], [-75.09420442282375, 40.01451911094814], [-75.09430071223922, 40.0146548995285], [-75.09440338987376, 40.01477399992073], [-75.09448920384817, 40.014863385092106], [-75.09459659753882, 40.014966670368004], [-75.09474943973703, 40.01508108734914], [-75.09492490873457, 40.01520358702422], [-75.09508142056097, 40.015308009412614], [-75.09526085584925, 40.01541296068959], [-75.0955843450359, 40.01560566269948], [-75.0958055633854, 40.01573173878071], [-75.09604315382364, 40.015858193742595], [-75.09617236304571, 40.01590654011003], [-75.09636091010914, 40.01594617963542], [-75.09648485082805, 40.01596164495705], [-75.0967104010329, 40.015976936196914], [-75.09687740317702, 40.015980795181704], [-75.09704557731395, 40.015984681002344], [-75.09727074161512, 40.0159798042748], [-75.09750577306133, 40.01600413412216], [-75.09779602673703, 40.016041078575135], [-75.09797714040202, 40.01610322275027], [-75.09818971848458, 40.01619885491984], [-75.09845171468743, 40.01628806731903], [-75.09863332010706, 40.01633762262499], [-75.0989541290843, 40.01634754934597], [-75.0994513910549, 40.016287207860074], [-75.09961312492426, 40.016258180541676], [-75.09989401812634, 40.01619914350674], [-75.10039348942762, 40.01608214693139], [-75.10059500594313, 40.01604143711569], [-75.10101542585011, 40.01601837474194], [-75.10132367727344, 40.01601414726746], [-75.10154615040638, 40.01602431942203], [-75.10177219311154, 40.016027011100995], [-75.10204814023679, 40.016010696208625], [-75.10228557952493, 40.015973331174216], [-75.10254485693365, 40.01596418856369], [-75.10287807753099, 40.01599203185247], [-75.10331734435431, 40.016073979351674], [-75.10365344557117, 40.016111967523926], [-75.10386599817559, 40.01612442581209], [-75.10408202186417, 40.01613192421742], [-75.10436661446846, 40.016146041630506], [-75.10468821059497, 40.016135811677856], [-75.10498560567682, 40.01615778306505], [-75.10520636551904, 40.01621200785604], [-75.1054144656799, 40.016254602047276], [-75.10566284402671, 40.01627292340564], [-75.10586269194972, 40.01627500464343], [-75.10619444215709, 40.01634060537272], [-75.1064316228546, 40.016393947125465], [-75.10666562720535, 40.016444695070696], [-75.10685778919127, 40.01656000056662], [-75.10706904288469, 40.016693842391774], [-75.10721337838702, 40.01677104914463], [-75.10733477456357, 40.0168519653075], [-75.10743534731849, 40.016962640715306], [-75.1074969191298, 40.0170648597228], [-75.10753986399301, 40.0172246106732], [-75.1075484926834, 40.01742389303715], [-75.1075019453263, 40.01760930469143], [-75.1074492879232, 40.01778323623494], [-75.10740250262029, 40.01789052115543], [-75.10725067393167, 40.01808611062809], [-75.10713174797101, 40.01819425525665], [-75.10702670300225, 40.01828255869556], [-75.10688632285866, 40.018352409187465], [-75.10672341291877, 40.01841166013801], [-75.10654007144916, 40.018490600181316], [-75.10629411473795, 40.01857817906554], [-75.10602757994306, 40.01868922492428], [-75.10586011859452, 40.01878112960109], [-75.10575625037828, 40.018839218600135], [-75.10567101752486, 40.01896577809034], [-75.10558162665019, 40.019114922541654], [-75.10548898171467, 40.01920460947764], [-75.10533590146107, 40.01928062696204], [-75.10514063362046, 40.01932905063636], [-75.10490885747714, 40.01934702238403], [-75.10417631965316, 40.01934652461066], [-75.10399315033166, 40.01937884526158], [-75.10383544166106, 40.019430651520175], [-75.10373741520444, 40.01952793403622], [-75.10369705860172, 40.01965930618886], [-75.1036570026035, 40.01987656897237], [-75.10359316270015, 40.02023388882772], [-75.10354663582343, 40.02039388960434], [-75.10349786087525, 40.02056161716755], [-75.10344906506903, 40.02072942262346], [-75.1033671849326, 40.02084992359056], [-75.10324696224033, 40.02092046779915], [-75.10317007037045, 40.02097241862366], [-75.10314578864238, 40.0210831418571], [-75.10315611454705, 40.02120233779963], [-75.10319501376617, 40.02135672803016], [-75.10326807374527, 40.02153109220913], [-75.10335965788994, 40.02174233905787], [-75.1035865167461, 40.0221965348681], [-75.10365124898982, 40.022328497067704], [-75.10376993748694, 40.02248472580516], [-75.10390069411592, 40.02258750934463], [-75.10409693194785, 40.02280308621844], [-75.10420684398072, 40.02292841226691], [-75.10419313378188, 40.02302403107859], [-75.10419937155955, 40.0231201076988], [-75.10422615514095, 40.02320130771402], [-75.10429208156532, 40.02330259974516], [-75.10438324573097, 40.02339679548704], [-75.10448981833729, 40.02347983364043], [-75.10462705803057, 40.02354439338227], [-75.10480855458879, 40.023604262577635], [-75.1024230166573, 40.02949318557148], [-75.10195887434806, 40.02934196297108], [-75.10156167428505, 40.02918380082311], [-75.10128705513067, 40.0289720841755], [-75.09906469220137, 40.02749807807378], [-75.09880927970418, 40.02774045184587], [-75.09869780527592, 40.027854182841565], [-75.09832541146291, 40.02820654081584], [-75.09790836046977, 40.02861986382946], [-75.09680538289797, 40.02794846082214], [-75.09665184640231, 40.02785106630354], [-75.09655185034995, 40.027787634227415], [-75.09623683618052, 40.02759719115612], [-75.09531218868015, 40.02854813419083], [-75.09320525225375, 40.03070558680073], [-75.09354315989118, 40.03119660686105], [-75.093790692357, 40.031513191046294], [-75.09435086658802, 40.03220778020944], [-75.09411844194337, 40.03245672539379], [-75.09392169359725, 40.032648524438095], [-75.0937343543084, 40.032843763787554], [-75.09349854261541, 40.03307356717856], [-75.09327502170578, 40.03330591693202], [-75.09308759856975, 40.03348670616812], [-75.09768657589605, 40.035719345833094], [-75.0903533819722, 40.04298457247651], [-75.08897663424665, 40.044333503559685], [-75.08831388614998, 40.045515125514], [-75.08794833282026, 40.04634483545947], [-75.08763612729165, 40.04704383759833], [-75.08697553819498, 40.04856837334297], [-75.0856951039326, 40.04785186002135], [-75.08406675926334, 40.046964233443056], [-75.08365174732054, 40.046724542027356], [-75.08341587267958, 40.046600359614075], [-75.08300095783821, 40.046371493960706], [-75.08234451175854, 40.04599251847069], [-75.08035251915297, 40.04490616956516], [-75.07856631286752, 40.043905245218944], [-75.0765608830969, 40.042763955361195], [-75.07555346965913, 40.04220531304383], [-75.07545468513057, 40.04215513798341], [-75.07503370357503, 40.041941143862246], [-75.07545256782305, 40.0414780821767], [-75.07583571343075, 40.04109610738058], [-75.07623828501488, 40.04068659459254], [-75.07665244087141, 40.04025881302328], [-75.07682097008166, 40.040075356887755], [-75.07700242865678, 40.03988600766493], [-75.0773958050892, 40.03946541060029], [-75.07782992709585, 40.0390022391198], [-75.07801135411607, 40.03882753769454], [-75.07821099744447, 40.03861885625212], [-75.07838964012736, 40.03843440242911], [-75.07862140296287, 40.038206697716774], [-75.07882205767763, 40.03798920232221], [-75.07899997600468, 40.03779706653513], [-75.07915910930849, 40.037622473914574], [-75.07931365313148, 40.0374713951191], [-75.07954709690475, 40.03722276508653], [-75.07983718668031, 40.03692272182405], [-75.08024922552187, 40.03651060128627], [-75.08060112266844, 40.036131819358744], [-75.08098162607358, 40.03571413929394], [-75.08137885375395, 40.03531391323505], [-75.08157537830293, 40.03511145579118], [-75.08175869585502, 40.03492521355816], [-75.08195841577964, 40.03471897149558], [-75.08218024701313, 40.03448704593086], [-75.08292349300645, 40.03372330867389], [-75.08337184825928, 40.03324444864927], [-75.08401838790222, 40.03253985258157], [-75.08417226608184, 40.03231398234938], [-75.08427364859448, 40.032173074144445], [-75.08413521559794, 40.0319684446678], [-75.084097405649, 40.03188155842482], [-75.08408993092331, 40.03182185063179], [-75.08432709881482, 40.031763071134606], [-75.08451686634676, 40.03169751451363], [-75.08472066349404, 40.03162543348738], [-75.08492630444702, 40.03154244548476], [-75.08512333320796, 40.031450025257755], [-75.0852697585556, 40.03138028375811], [-75.08547258246628, 40.031273684432875], [-75.08560488963899, 40.03119645712578], [-75.08604451725004, 40.03093078216704], [-75.08673522761529, 40.03051272166657], [-75.08704403318237, 40.030332471248634], [-75.08780447439533, 40.02991630348491], [-75.08853297121763, 40.02951223847952], [-75.08956157098642, 40.02895049593653], [-75.0903918108727, 40.02850061797068], [-75.09377160583495, 40.026629748156786], [-75.09406814999566, 40.02647046138908], [-75.09439191996336, 40.0263379947691], [-75.09495268670224, 40.02619701018641], [-75.09526862397325, 40.026148333813644], [-75.0955834671491, 40.026127620134424], [-75.09605195741689, 40.02613494846775], [-75.09647774420104, 40.026186774181035], [-75.09682994834438, 40.02627212964553], [-75.09725400391805, 40.02641113436297], [-75.09759035708078, 40.026571076513996], [-75.09760535640449, 40.026374768656446], [-75.09704494224373, 40.025879303453735], [-75.09588283398332, 40.02475709894003], [-75.0955364517077, 40.02412972769605], [-75.09495857630324, 40.023261012180676], [-75.09377048922879, 40.022509222848406], [-75.09292462407517, 40.02196113938917], [-75.09149384447011, 40.021028167748334], [-75.08971963095158, 40.019876666126635], [-75.08916970347666, 40.020553783344866], [-75.08862030507747, 40.02124363667434], [-75.0872830574803, 40.02048620669436], [-75.08505923193333, 40.01921760855102], [-75.0843249369079, 40.01880570129187], [-75.0840592270956, 40.018659715651644], [-75.08350869706807, 40.01836678867006], [-75.08264223060424, 40.01789885752839], [-75.081994744679, 40.01858136037251], [-75.08150044657228, 40.019137017951294], [-75.08092459856877, 40.01975684134091], [-75.08042603579892, 40.02030400776405], [-75.0799195555891, 40.0208342774118], [-75.07941418942038, 40.02138857280776], [-75.07912465172282, 40.021706484266794], [-75.07888115254191, 40.021882928661384], [-75.07816413361522, 40.02236282970455], [-75.07750264200587, 40.02280937560482], [-75.07684195149976, 40.02325898385755], [-75.07562310739706, 40.02407587162441], [-75.07396432896537, 40.025074257481116], [-75.07336441926067, 40.02537013618446], [-75.07333312714907, 40.025290965734875], [-75.07019764577667, 40.0227256137045], [-75.06976502199616, 40.02238877796283], [-75.06908841755269, 40.02190558456266], [-75.06747816671317, 40.02274087219851], [-75.06628126765678, 40.02335211348504], [-75.06491395782366, 40.02406163942987], [-75.06429850056371, 40.02437366105983], [-75.06379250395135, 40.02463878984568], [-75.06325416663721, 40.024913758823566], [-75.06280300649158, 40.02440337289763], [-75.06271239425418, 40.0242925423012], [-75.06075658276164, 40.025302397254684], [-75.05880467941977, 40.026314935658625], [-75.05825183059187, 40.02569286300014], [-75.057897070503, 40.025876805875036], [-75.05759522139245, 40.026032809647084], [-75.05727981106796, 40.02619638423572], [-75.05695499182227, 40.02636259906879], [-75.05629534391466, 40.02670488753105], [-75.05539833613314, 40.02567408298286], [-75.0549663561723, 40.025172380397535], [-75.05449649038853, 40.02464923564854], [-75.05405573884796, 40.024130575636875], [-75.05383051939687, 40.02388229248625], [-75.05360536254146, 40.023616927357196], [-75.05337410689482, 40.02336301410848], [-75.05315294282204, 40.02310603050815], [-75.0529326587648, 40.02286481292343], [-75.05270351743722, 40.02259335939741], [-75.05248290255767, 40.02234721787948], [-75.05225498658803, 40.02208102634417], [-75.05177492702299, 40.0215363498483], [-75.05132044682324, 40.02101559235904], [-75.05090575006129, 40.02053632334524], [-75.05045067390724, 40.02002728783608], [-75.05000317862873, 40.019512392481026], [-75.04949864826371, 40.018930315978146], [-75.04895805847762, 40.01833459840812], [-75.04879026013448, 40.01814272009394], [-75.04869060025547, 40.01802875804136], [-75.04858708950196, 40.01793877323055], [-75.04843241042651, 40.01780693177609], [-75.04827883286003, 40.01769035907416], [-75.04813594950116, 40.017585297316074], [-75.04808650156707, 40.01750175437715], [-75.04779921109528, 40.017327097465994], [-75.04740062933426, 40.01699499112109], [-75.04695708881782, 40.01666649054795], [-75.04654946592537, 40.016354768020506], [-75.04648114678258, 40.016302523093245], [-75.04628938611744, 40.01615203672511], [-75.04601335698105, 40.015932664335985], [-75.04578450295824, 40.01572048260732], [-75.04549702717796, 40.01539135984509], [-75.04318345620553, 40.01230180802732], [-75.04487805989457, 40.01142884476869], [-75.0468045730374, 40.01040768532484], [-75.04802351584226, 40.009719588094946], [-75.04917137466465, 40.008935643873606], [-75.05045520772387, 40.007982636145904], [-75.05092040548402, 40.00762418782804], [-75.05401718703848, 40.010002054559614], [-75.05729957020579, 40.01336760087576], [-75.05840701069471, 40.012781407430175]]]}}, {"id": "7120", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.08897663424665, 40.044333503559685], [-75.08831388614998, 40.045515125514], [-75.08794833282026, 40.04634483545947], [-75.08763612729165, 40.04704383759833], [-75.08697553819498, 40.04856837334297], [-75.0856951039326, 40.04785186002135], [-75.08406675926334, 40.046964233443056], [-75.08365174732054, 40.046724542027356], [-75.08341587267958, 40.046600359614075], [-75.08300095783821, 40.046371493960706], [-75.08234451175854, 40.04599251847069], [-75.08035251915297, 40.04490616956516], [-75.07856631286752, 40.043905245218944], [-75.0765608830969, 40.042763955361195], [-75.07555346965913, 40.04220531304383], [-75.07545468513057, 40.04215513798341], [-75.07503370357503, 40.041941143862246], [-75.07545256782305, 40.0414780821767], [-75.07583571343075, 40.04109610738058], [-75.07623828501488, 40.04068659459254], [-75.07665244087141, 40.04025881302328], [-75.07682097008166, 40.040075356887755], [-75.07700242865678, 40.03988600766493], [-75.0773958050892, 40.03946541060029], [-75.07782992709585, 40.0390022391198], [-75.07801135411607, 40.03882753769454], [-75.07821099744447, 40.03861885625212], [-75.07838964012736, 40.03843440242911], [-75.07862140296287, 40.038206697716774], [-75.07882205767763, 40.03798920232221], [-75.07899997600468, 40.03779706653513], [-75.07915910930849, 40.037622473914574], [-75.07931365313148, 40.0374713951191], [-75.07954709690475, 40.03722276508653], [-75.07983718668031, 40.03692272182405], [-75.08024922552187, 40.03651060128627], [-75.08060112266844, 40.036131819358744], [-75.08098162607358, 40.03571413929394], [-75.08137885375395, 40.03531391323505], [-75.08157537830293, 40.03511145579118], [-75.08175869585502, 40.03492521355816], [-75.08195841577964, 40.03471897149558], [-75.08218024701313, 40.03448704593086], [-75.08292349300645, 40.03372330867389], [-75.08337184825928, 40.03324444864927], [-75.08401838790222, 40.03253985258157], [-75.08417226608184, 40.03231398234938], [-75.08427364859448, 40.032173074144445], [-75.08413521559794, 40.0319684446678], [-75.084097405649, 40.03188155842482], [-75.08408993092331, 40.03182185063179], [-75.08432709881482, 40.031763071134606], [-75.08451686634676, 40.03169751451363], [-75.08472066349404, 40.03162543348738], [-75.08492630444702, 40.03154244548476], [-75.08512333320796, 40.031450025257755], [-75.0852697585556, 40.03138028375811], [-75.08547258246628, 40.031273684432875], [-75.08560488963899, 40.03119645712578], [-75.08604451725004, 40.03093078216704], [-75.08673522761529, 40.03051272166657], [-75.08704403318237, 40.030332471248634], [-75.08780447439533, 40.02991630348491], [-75.08853297121763, 40.02951223847952], [-75.08956157098642, 40.02895049593653], [-75.0903918108727, 40.02850061797068], [-75.09377160583495, 40.026629748156786], [-75.09406814999566, 40.02647046138908], [-75.09439191996336, 40.0263379947691], [-75.09495268670224, 40.02619701018641], [-75.09526862397325, 40.026148333813644], [-75.0955834671491, 40.026127620134424], [-75.09605195741689, 40.02613494846775], [-75.09647774420104, 40.026186774181035], [-75.09682994834438, 40.02627212964553], [-75.09725400391805, 40.02641113436297], [-75.09759035708078, 40.026571076513996], [-75.09906469220137, 40.02749807807378], [-75.10128705513067, 40.0289720841755], [-75.10156167428505, 40.02918380082311], [-75.10195887434806, 40.02934196297108], [-75.1024230166573, 40.02949318557148], [-75.10480855458879, 40.023604262577635], [-75.1049143487351, 40.02360089684679], [-75.10508763662361, 40.02350895536784], [-75.10518210647984, 40.02339025508062], [-75.10543678370175, 40.023002793046025], [-75.10566863995791, 40.022944815986456], [-75.10584846396745, 40.022941281788675], [-75.10605247374939, 40.02295749164282], [-75.10613545565268, 40.02300544943703], [-75.10631124672449, 40.02310543037679], [-75.10646255127769, 40.02319333576283], [-75.10659934434501, 40.02326939441552], [-75.10673673617148, 40.02333011580817], [-75.10686065894835, 40.02335215568997], [-75.10704424584219, 40.02331608887378], [-75.1072096770473, 40.023233555827986], [-75.1073729845967, 40.02314138040217], [-75.10751425639339, 40.023102421663594], [-75.10768455448083, 40.02308715380358], [-75.10778154248753, 40.02303182489346], [-75.10792281385686, 40.02299286475194], [-75.10803565669126, 40.022914876376085], [-75.10808940525057, 40.02281634179531], [-75.10807862273626, 40.022708648478115], [-75.10816720392039, 40.02261283534436], [-75.10846947746545, 40.022412571771106], [-75.10861343267538, 40.02230460133006], [-75.10879579097849, 40.022235887123955], [-75.10908257018968, 40.022177247355486], [-75.10936860306877, 40.02213777806876], [-75.10968715675077, 40.02216045205417], [-75.10981502257131, 40.022209440059875], [-75.10997370141887, 40.022236111394484], [-75.11018165557297, 40.02227926614272], [-75.11043418841447, 40.022331119294705], [-75.11070048985525, 40.02241398644175], [-75.11085179972112, 40.02250188607569], [-75.11094118311102, 40.022642083552036], [-75.11099007363472, 40.02279670032437], [-75.11100130792074, 40.0228928929837], [-75.11103099730558, 40.023027881026636], [-75.11110177526518, 40.02313311519714], [-75.11118647596466, 40.023254281404995], [-75.11125308109845, 40.02334956411429], [-75.11133144784338, 40.02351637049445], [-75.11137275171805, 40.023609414750425], [-75.11136284617542, 40.02373581970001], [-75.11140146858001, 40.0238978752842], [-75.11146539218102, 40.02417946886957], [-75.11152217264079, 40.02438798964436], [-75.11155111853812, 40.02454214695341], [-75.11155118858731, 40.024668781106776], [-75.11151724422533, 40.024771608827905], [-75.11145649869287, 40.02492178887383], [-75.11139530336182, 40.02521202095638], [-75.11138100554518, 40.025322974135], [-75.11136771254505, 40.02547232346244], [-75.11145717538353, 40.02561060483848], [-75.11162389969851, 40.02568734496481], [-75.11184485327558, 40.02571736433789], [-75.11201306961777, 40.02575576420475], [-75.11219565173879, 40.02580984284168], [-75.11239743559263, 40.025883550536044], [-75.11253997405726, 40.025940546364005], [-75.11264127307359, 40.026031131377025], [-75.11269694601232, 40.026139855005376], [-75.11273721167133, 40.02625973722888], [-75.11276124831959, 40.02641186400716], [-75.11278223350453, 40.02664258597819], [-75.11281268095597, 40.026880239703914], [-75.11284742220191, 40.027038159909495], [-75.11288284071983, 40.02732048726397], [-75.11289026279778, 40.02745805116416], [-75.11288477850178, 40.02760043473574], [-75.11279310960418, 40.02771153141426], [-75.11262767431037, 40.027794071584445], [-75.11241925306783, 40.02789097420533], [-75.11228720378666, 40.02794933838244], [-75.11212083880417, 40.02799156515585], [-75.11201551288957, 40.02800449573766], [-75.11188540151312, 40.02801301937457], [-75.11176496213216, 40.02802943822743], [-75.1116525633503, 40.02809592899173], [-75.11150271900249, 40.0282267929963], [-75.1113933681751, 40.02834323816028], [-75.11128855606445, 40.02847129816967], [-75.11119944987506, 40.02858053334839], [-75.11108406824572, 40.0287237002696], [-75.11101505890687, 40.02882956142872], [-75.110963465984, 40.02900105463474], [-75.11093346239159, 40.02913083519481], [-75.11089965592181, 40.0293583793058], [-75.11088312012737, 40.02952684150518], [-75.11091824685484, 40.029650443769015], [-75.11099587582973, 40.02983641975879], [-75.11104641384301, 40.02994886364824], [-75.11111815921498, 40.03015772835574], [-75.11113817749339, 40.03028481815558], [-75.1111304256763, 40.030484182095286], [-75.11113733717988, 40.03069155703038], [-75.11115355423335, 40.030916413112244], [-75.11114603241961, 40.03098147483674], [-75.11113104639891, 40.031043888122646], [-75.11111029413618, 40.03113031110495], [-75.11108423162239, 40.03128704286119], [-75.1110655442647, 40.03138254520654], [-75.11106017740865, 40.031520565969934], [-75.11105012104336, 40.03165080490753], [-75.11101877241295, 40.031815089260064], [-75.11098697635899, 40.031990875782576], [-75.11098071478231, 40.032151899997615], [-75.11093395775706, 40.032327343632254], [-75.11088094445881, 40.03253525806396], [-75.11086083187242, 40.03279573592071], [-75.11083246535115, 40.03288334174899], [-75.11078444721699, 40.03296282191432], [-75.1107405208493, 40.03306542190741], [-75.11073180561117, 40.03316115427316], [-75.11075606505753, 40.03330752991063], [-75.11083024503537, 40.0334809861199], [-75.11086592483, 40.033563319462765], [-75.1109623165532, 40.03378042456657], [-75.11105961613627, 40.033989029395414], [-75.11110976725047, 40.03409655366053], [-75.11118435201018, 40.034232574807], [-75.11131878745127, 40.034369970957016], [-75.11147771551177, 40.03451943936245], [-75.1116426742597, 40.03464218637786], [-75.1118463429548, 40.03479652038135], [-75.11200088136177, 40.034930539948306], [-75.11210903928468, 40.035101865293676], [-75.11217677643165, 40.03528569564004], [-75.11223007187495, 40.03545576172138], [-75.11229498148876, 40.03558388308132], [-75.11234917031798, 40.03573094741304], [-75.11246381193612, 40.03586404823729], [-75.11259311624242, 40.03600516240305], [-75.11271773120262, 40.03613849196673], [-75.11286185146832, 40.03628378348594], [-75.11305569974876, 40.036434051292005], [-75.11316100665682, 40.036504056939116], [-75.11403140194247, 40.035472603119146], [-75.11461328019617, 40.03479657194471], [-75.11489795401083, 40.0344480299467], [-75.11513512724989, 40.03447968217076], [-75.11547394249487, 40.03451920586586], [-75.11583371765533, 40.03457011622014], [-75.11615336508022, 40.03461643623171], [-75.11650544942219, 40.03465710540937], [-75.11685146188826, 40.03469482398715], [-75.11716343499901, 40.03473588882475], [-75.11755213886096, 40.03479497055524], [-75.12007475167565, 40.035112436465], [-75.12142273542835, 40.03528205370963], [-75.12386086326329, 40.035563736148795], [-75.12395251307039, 40.03484852062137], [-75.12403310722064, 40.03404097915165], [-75.12418810210198, 40.03255273783986], [-75.12534748854145, 40.032908326018976], [-75.12598314561127, 40.033122585588295], [-75.12706004213122, 40.033477949059915], [-75.12813812194852, 40.0338276626433], [-75.12909893597146, 40.03414864853474], [-75.12996771413667, 40.034430870331285], [-75.13088081387585, 40.03474587521162], [-75.13184454399239, 40.035052721926434], [-75.13276532628717, 40.03533772841605], [-75.1335665112153, 40.035626316406706], [-75.13435513859052, 40.03588374814797], [-75.13491719236487, 40.0360488365267], [-75.13601924186796, 40.03629591786183], [-75.13596239568302, 40.03714069095362], [-75.1359172080124, 40.03721491407448], [-75.13579331165975, 40.037460704204015], [-75.13566051505993, 40.037703539013485], [-75.13551964132269, 40.03794392826701], [-75.13539985461783, 40.03818986383155], [-75.13530975823267, 40.038444142866446], [-75.13524186910239, 40.03870228819914], [-75.13519214212045, 40.03896256431206], [-75.1351508380495, 40.03922409987065], [-75.13510640080575, 40.03948519467066], [-75.13505778090732, 40.03974579508309], [-75.13500880438107, 40.040006362132374], [-75.13496233925464, 40.04026715213024], [-75.13492119862019, 40.040528418339036], [-75.13488252571301, 40.040790038958356], [-75.13484452100693, 40.0410518342622], [-75.13480890949876, 40.04131382009847], [-75.13477741194309, 40.04157600140778], [-75.13475175466523, 40.04183839136754], [-75.13473370487289, 40.04210100769038], [-75.13472438816113, 40.04236393907692], [-75.13472182558891, 40.042627129658364], [-75.13472352169212, 40.042890480269094], [-75.13472697741948, 40.04315389256317], [-75.13472969726423, 40.04341726647428], [-75.13472962098656, 40.04368052265935], [-75.13472892805768, 40.043943748583104], [-75.13472835459646, 40.044206977223425], [-75.13472788313881, 40.04447020547966], [-75.13472748898417, 40.044733435492475], [-75.13472715583922, 40.04499666418777], [-75.13472686127587, 40.04525989556012], [-75.13472658669221, 40.045523125581795], [-75.13472630862711, 40.045786354619786], [-75.13472601174911, 40.04604958502804], [-75.13472590134562, 40.046135759857265], [-75.1347256727699, 40.04631281267226], [-75.1347252728087, 40.04657604072672], [-75.13472479198656, 40.04683926783781], [-75.13472421038942, 40.04710249355224], [-75.13472350689706, 40.04736571829014], [-75.13472266045814, 40.04762894067132], [-75.13472165229443, 40.04789216116925], [-75.13472046245599, 40.048155380230874], [-75.13471906989062, 40.04841859647586], [-75.13471592360841, 40.0486818070314], [-75.13470588083467, 40.04893219041025], [-75.13440674322722, 40.04891116535305], [-75.13409180476353, 40.048902587735896], [-75.13375894185535, 40.0488817426885], [-75.1332567119416, 40.048777459670774], [-75.13166128235686, 40.048156268360856], [-75.13140423760464, 40.04940024691916], [-75.13111308760577, 40.050690271010204], [-75.12945227218991, 40.050489274927635], [-75.12858891879509, 40.05036125112049], [-75.12824747591462, 40.051887744051875], [-75.12791015844874, 40.053461088976896], [-75.12876930743163, 40.05356421498887], [-75.12924104435761, 40.053622265606776], [-75.12922179044439, 40.05440819171393], [-75.12918727245439, 40.05565461231603], [-75.13000011598297, 40.05555327791002], [-75.1290445515563, 40.05703322693472], [-75.12897416052719, 40.05718740622033], [-75.12846164184455, 40.056879450176595], [-75.12695636310552, 40.05597494947975], [-75.12535397189804, 40.05501204603146], [-75.12484271623276, 40.0547191895723], [-75.12455119024064, 40.0545521959416], [-75.1233259706588, 40.05385034051602], [-75.12212244862376, 40.05316088650055], [-75.1208067107143, 40.05241432562143], [-75.11999035839818, 40.051950901443305], [-75.11954267223868, 40.05169675465307], [-75.11856523235454, 40.05114186146354], [-75.11706038791601, 40.05028752301431], [-75.11507311325819, 40.049135406060444], [-75.11450749368127, 40.04880747770997], [-75.11292673836158, 40.047890875760764], [-75.11236444179346, 40.047564816507226], [-75.1120565540253, 40.04738627911108], [-75.11106357455648, 40.046814616741415], [-75.10943208023384, 40.045875319211376], [-75.10926483047405, 40.04577902615255], [-75.10890588420136, 40.04612833317729], [-75.10904548462598, 40.046210809920076], [-75.10810372165213, 40.04716783265226], [-75.10821232868344, 40.04723130847366], [-75.10742774513943, 40.048022729092416], [-75.10764531689773, 40.04814054013331], [-75.10749118597747, 40.04832907182175], [-75.10631154318088, 40.0492917283961], [-75.10310487206245, 40.05119338851588], [-75.1030246267211, 40.051089122973224], [-75.10281166625275, 40.0508685864897], [-75.1018914465809, 40.05006629533136], [-75.10133641421142, 40.049540434137114], [-75.10039563010359, 40.04869298730429], [-75.09956065794458, 40.04797498853239], [-75.09880087535097, 40.04753158377558], [-75.09801858961916, 40.04709794044168], [-75.09697175151327, 40.04656599718221], [-75.09600049007513, 40.04600379173299], [-75.0951428672017, 40.04555226333374], [-75.09479268570398, 40.0453649583314], [-75.09453467758765, 40.04522327325332], [-75.094176025479, 40.04502710432539], [-75.0903533819722, 40.04298457247651], [-75.08897663424665, 40.044333503559685]]]}}, {"id": "7130", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13472601174911, 40.04604958502804], [-75.13472630862711, 40.045786354619786], [-75.13472658669221, 40.045523125581795], [-75.13472686127587, 40.04525989556012], [-75.13472715583922, 40.04499666418777], [-75.13472748898417, 40.044733435492475], [-75.13472788313881, 40.04447020547966], [-75.13472835459646, 40.044206977223425], [-75.13472892805768, 40.043943748583104], [-75.13472962098656, 40.04368052265935], [-75.13472969726423, 40.04341726647428], [-75.13472697741948, 40.04315389256317], [-75.13472352169212, 40.042890480269094], [-75.13472182558891, 40.042627129658364], [-75.13472438816113, 40.04236393907692], [-75.13473370487289, 40.04210100769038], [-75.13475175466523, 40.04183839136754], [-75.13477741194309, 40.04157600140778], [-75.13480890949876, 40.04131382009847], [-75.13484452100693, 40.0410518342622], [-75.13488252571301, 40.040790038958356], [-75.13492119862019, 40.040528418339036], [-75.13496233925464, 40.04026715213024], [-75.13500880438107, 40.040006362132374], [-75.13505778090732, 40.03974579508309], [-75.13510640080575, 40.03948519467066], [-75.1351508380495, 40.03922409987065], [-75.13519214212045, 40.03896256431206], [-75.13524186910239, 40.03870228819914], [-75.13530975823267, 40.038444142866446], [-75.13539985461783, 40.03818986383155], [-75.13551964132269, 40.03794392826701], [-75.13566051505993, 40.037703539013485], [-75.13579331165975, 40.037460704204015], [-75.1359172080124, 40.03721491407448], [-75.13596239568302, 40.03714069095362], [-75.13643742560077, 40.03719714962134], [-75.13682469320108, 40.03688982868427], [-75.13720839198119, 40.03656309931997], [-75.13816430148131, 40.03580745474563], [-75.13837487569867, 40.03588478067623], [-75.13909695975165, 40.0359825433927], [-75.13988302535608, 40.036084777555345], [-75.14067276785356, 40.036185703147375], [-75.14146588926472, 40.03628840562802], [-75.14463761989032, 40.03740050019296], [-75.1450944010915, 40.03741430698231], [-75.14514980930565, 40.0371471869134], [-75.14555423769299, 40.03526310349242], [-75.14643827735868, 40.035379044730846], [-75.14719897646965, 40.03547322032816], [-75.14817965587301, 40.035599243543416], [-75.14872321845299, 40.03567052723887], [-75.14925006473153, 40.03573632825544], [-75.14986041135666, 40.03582873929858], [-75.15559107750623, 40.03621529856409], [-75.1558581505199, 40.036417443412375], [-75.1561245406069, 40.03655208788836], [-75.15638304168068, 40.03664529696424], [-75.15664349184547, 40.03668758259277], [-75.15702140499151, 40.03671310349853], [-75.15837413570682, 40.03668606571486], [-75.15841548109299, 40.03750327785943], [-75.15845241039253, 40.03854029926103], [-75.15840456619196, 40.040737478582756], [-75.15835915529544, 40.041488147437796], [-75.15834207328669, 40.04202281718912], [-75.15831847943383, 40.04240956273372], [-75.15830795807854, 40.042862286311994], [-75.15828650750801, 40.04334277765106], [-75.15826273724423, 40.04378326023385], [-75.15749434216939, 40.04376394033985], [-75.15710054390964, 40.04375024955351], [-75.15671170262142, 40.04374406575828], [-75.15586689162292, 40.04372131585984], [-75.15579424451015, 40.045130568462234], [-75.15577069181604, 40.04532887629433], [-75.15574994730251, 40.04581858914535], [-75.15564729333768, 40.04737197878589], [-75.15554903914908, 40.04893607533981], [-75.15550418978171, 40.04957273185858], [-75.15544804124193, 40.050509287563564], [-75.15535591337611, 40.05184994789018], [-75.1552727968388, 40.05311415506475], [-75.15521592846608, 40.053923630467544], [-75.15555586975394, 40.054075078255536], [-75.15648768589912, 40.054521088248016], [-75.1569513074915, 40.05473349141708], [-75.15717617792004, 40.054836323074866], [-75.15755804003476, 40.05503537344851], [-75.15772612947846, 40.05514266578577], [-75.15774917146788, 40.05515408706353], [-75.15787079217264, 40.05519994829528], [-75.1583068914531, 40.05543826600539], [-75.15889048363145, 40.05576949183422], [-75.15831599261553, 40.05603530684842], [-75.15746051816018, 40.0564194703756], [-75.15747896418917, 40.056504930678976], [-75.15737303204526, 40.05858598062293], [-75.157200041546, 40.05864718062386], [-75.15689851127883, 40.05877686767505], [-75.15562086138792, 40.05932667201359], [-75.15527293531468, 40.05947082097148], [-75.15451465886387, 40.05978796538895], [-75.15376348409853, 40.06009936287663], [-75.15446021032547, 40.061154792902464], [-75.15522895265995, 40.06237394340174], [-75.15525483072531, 40.0624327360658], [-75.15520562760757, 40.0625047873463], [-75.15469973804461, 40.06302558333437], [-75.15411076692092, 40.063648702720286], [-75.15358456284916, 40.06419917687332], [-75.15351422568159, 40.064286960105086], [-75.1533997052835, 40.064346319747806], [-75.15294352202838, 40.06429432184391], [-75.15225506922619, 40.06429891873402], [-75.15188488782408, 40.06599297260364], [-75.15154453594731, 40.067492518421346], [-75.1512590535016, 40.068766755608095], [-75.15113969247578, 40.06930768861748], [-75.15110941573222, 40.06938823856531], [-75.15106191088287, 40.06946857816879], [-75.15096958553814, 40.06956843639189], [-75.1507247653823, 40.06982534507238], [-75.15004070721001, 40.06943588345188], [-75.14960541385284, 40.06918804665245], [-75.14835533464405, 40.06847629140363], [-75.1476786971091, 40.06809102144619], [-75.14666575147052, 40.067521504880396], [-75.14550083646236, 40.066852333810544], [-75.14521906964595, 40.06669047274589], [-75.1445545761143, 40.06631208041861], [-75.14405155015547, 40.06601595270874], [-75.14309806566018, 40.06547590316734], [-75.1418870299279, 40.06478995437998], [-75.14077361287495, 40.06415244752091], [-75.13941558224629, 40.06338650266371], [-75.13680077963983, 40.061950670877565], [-75.13518201886446, 40.06095171336758], [-75.13411737359088, 40.06029467864256], [-75.13336952909367, 40.05983314071961], [-75.13306980634653, 40.059648161740796], [-75.13011006466647, 40.0578699154973], [-75.12897416052719, 40.05718740622033], [-75.1290445515563, 40.05703322693472], [-75.13000011598297, 40.05555327791002], [-75.12918727245439, 40.05565461231603], [-75.12922179044439, 40.05440819171393], [-75.12924104435761, 40.053622265606776], [-75.12876930743163, 40.05356421498887], [-75.12791015844874, 40.053461088976896], [-75.12824747591462, 40.051887744051875], [-75.12858891879509, 40.05036125112049], [-75.12945227218991, 40.050489274927635], [-75.13111308760577, 40.050690271010204], [-75.13140423760464, 40.04940024691916], [-75.13166128235686, 40.048156268360856], [-75.1332567119416, 40.048777459670774], [-75.13375894185535, 40.0488817426885], [-75.13409180476353, 40.048902587735896], [-75.13440674322722, 40.04891116535305], [-75.13470588083467, 40.04893219041025], [-75.13471592360841, 40.0486818070314], [-75.13471906989062, 40.04841859647586], [-75.13472046245599, 40.048155380230874], [-75.13472165229443, 40.04789216116925], [-75.13472266045814, 40.04762894067132], [-75.13472350689706, 40.04736571829014], [-75.13472421038942, 40.04710249355224], [-75.13472479198656, 40.04683926783781], [-75.1347252728087, 40.04657604072672], [-75.1347256727699, 40.04631281267226], [-75.13472590134562, 40.046135759857265], [-75.13472601174911, 40.04604958502804]]]}}, {"id": "7150", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.09687740317702, 40.015980795181704], [-75.0967104010329, 40.015976936196914], [-75.09648485082805, 40.01596164495705], [-75.09636091010914, 40.01594617963542], [-75.09617236304571, 40.01590654011003], [-75.09604315382364, 40.015858193742595], [-75.0958055633854, 40.01573173878071], [-75.0955843450359, 40.01560566269948], [-75.09526085584925, 40.01541296068959], [-75.09508142056097, 40.015308009412614], [-75.09492490873457, 40.01520358702422], [-75.09474943973703, 40.01508108734914], [-75.09459659753882, 40.014966670368004], [-75.09448920384817, 40.014863385092106], [-75.09440338987376, 40.01477399992073], [-75.09430071223922, 40.0146548995285], [-75.09420442282375, 40.01451911094814], [-75.09381573062232, 40.01389900569513], [-75.09369551346215, 40.013704700356556], [-75.09356744835101, 40.01345981206091], [-75.09349947382906, 40.01327049502147], [-75.09346560120999, 40.01313110856111], [-75.0934609009396, 40.012999956755614], [-75.09348279140482, 40.01285934120278], [-75.09350746262793, 40.012731388269465], [-75.09357548894567, 40.01258427955463], [-75.09368785533968, 40.012392834002796], [-75.09392127569429, 40.01203912720307], [-75.0940575446021, 40.01182303501672], [-75.0942937947617, 40.01148073163575], [-75.09438434335257, 40.011344224245], [-75.09497380707462, 40.010506979466605], [-75.09510418754013, 40.010232572844764], [-75.095032054847, 40.01000711553365], [-75.09614999669296, 40.0099888746019], [-75.0968188014077, 40.010078406190615], [-75.09737554928974, 40.0101520023793], [-75.0980970429894, 40.01024887892238], [-75.09879853964992, 40.01033751589478], [-75.09935967046846, 40.010413958937825], [-75.10003932656444, 40.01050417622113], [-75.10076724389869, 40.01059116998829], [-75.1014775675622, 40.01069036050293], [-75.10221797518595, 40.010790141259406], [-75.10318525441383, 40.01091553525819], [-75.10350084961114, 40.010953468918046], [-75.10370488334752, 40.010982498833606], [-75.10416652148031, 40.01104175426094], [-75.1044909378137, 40.00945115129698], [-75.10480773856783, 40.007968794353225], [-75.10514096994618, 40.00646277304497], [-75.10533698181442, 40.00551937536787], [-75.10602631109278, 40.00549929463638], [-75.10666156788085, 40.00548114721689], [-75.1073529084745, 40.00547269932909], [-75.10803781110063, 40.00543237740518], [-75.10862843880291, 40.00540581803255], [-75.10937229646842, 40.00539334662989], [-75.11348354800558, 40.00592851401563], [-75.11930063244641, 40.00668062097756], [-75.12271875342688, 40.007135884907754], [-75.1234268932234, 40.007213386785665], [-75.12339320057532, 40.007418611434275], [-75.1233245784329, 40.00755692677894], [-75.12146940260696, 40.01015438751697], [-75.11944047531844, 40.01302705559972], [-75.11757219048913, 40.01558324450789], [-75.11747690485849, 40.015784203074695], [-75.11319772024986, 40.01553363305251], [-75.11136051115065, 40.01586805552725], [-75.10902514328343, 40.01628798447145], [-75.1079566960431, 40.01649243760471], [-75.10774566743571, 40.016581861972575], [-75.10706904288469, 40.016693842391774], [-75.10685778919127, 40.01656000056662], [-75.10666562720535, 40.016444695070696], [-75.1064316228546, 40.016393947125465], [-75.10619444215709, 40.01634060537272], [-75.10586269194972, 40.01627500464343], [-75.10566284402671, 40.01627292340564], [-75.1054144656799, 40.016254602047276], [-75.10520636551904, 40.01621200785604], [-75.10498560567682, 40.01615778306505], [-75.10468821059497, 40.016135811677856], [-75.10436661446846, 40.016146041630506], [-75.10408202186417, 40.01613192421742], [-75.10386599817559, 40.01612442581209], [-75.10365344557117, 40.016111967523926], [-75.10331734435431, 40.016073979351674], [-75.10287807753099, 40.01599203185247], [-75.10254485693365, 40.01596418856369], [-75.10228557952493, 40.015973331174216], [-75.10204814023679, 40.016010696208625], [-75.10177219311154, 40.016027011100995], [-75.10154615040638, 40.01602431942203], [-75.10132367727344, 40.01601414726746], [-75.10101542585011, 40.01601837474194], [-75.10059500594313, 40.01604143711569], [-75.10039348942762, 40.01608214693139], [-75.09989401812634, 40.01619914350674], [-75.09961312492426, 40.016258180541676], [-75.0994513910549, 40.016287207860074], [-75.0989541290843, 40.01634754934597], [-75.09863332010706, 40.01633762262499], [-75.09845171468743, 40.01628806731903], [-75.09818971848458, 40.01619885491984], [-75.09797714040202, 40.01610322275027], [-75.09779602673703, 40.016041078575135], [-75.09750577306133, 40.01600413412216], [-75.09727074161512, 40.0159798042748], [-75.09704557731395, 40.015984681002344], [-75.09687740317702, 40.015980795181704]]]}}, {"id": "7200", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.11281268095597, 40.026880239703914], [-75.11278223350453, 40.02664258597819], [-75.11276124831959, 40.02641186400716], [-75.11273721167133, 40.02625973722888], [-75.11269694601232, 40.026139855005376], [-75.11264127307359, 40.026031131377025], [-75.11253997405726, 40.025940546364005], [-75.11239743559263, 40.025883550536044], [-75.11219565173879, 40.02580984284168], [-75.11201306961777, 40.02575576420475], [-75.11184485327558, 40.02571736433789], [-75.11162389969851, 40.02568734496481], [-75.11145717538353, 40.02561060483848], [-75.11136771254505, 40.02547232346244], [-75.11138100554518, 40.025322974135], [-75.11139530336182, 40.02521202095638], [-75.11145649869287, 40.02492178887383], [-75.11151724422533, 40.024771608827905], [-75.11155118858731, 40.024668781106776], [-75.11155111853812, 40.02454214695341], [-75.11152217264079, 40.02438798964436], [-75.11146539218102, 40.02417946886957], [-75.11140146858001, 40.0238978752842], [-75.11136284617542, 40.02373581970001], [-75.11137275171805, 40.023609414750425], [-75.11133144784338, 40.02351637049445], [-75.11125308109845, 40.02334956411429], [-75.11118647596466, 40.023254281404995], [-75.11110177526518, 40.02313311519714], [-75.11103099730558, 40.023027881026636], [-75.11100130792074, 40.0228928929837], [-75.11099007363472, 40.02279670032437], [-75.11094118311102, 40.022642083552036], [-75.11085179972112, 40.02250188607569], [-75.11070048985525, 40.02241398644175], [-75.11043418841447, 40.022331119294705], [-75.11018165557297, 40.02227926614272], [-75.10997370141887, 40.022236111394484], [-75.10981502257131, 40.022209440059875], [-75.10968715675077, 40.02216045205417], [-75.10936860306877, 40.02213777806876], [-75.10908257018968, 40.022177247355486], [-75.10879579097849, 40.022235887123955], [-75.10861343267538, 40.02230460133006], [-75.10846947746545, 40.022412571771106], [-75.10816720392039, 40.02261283534436], [-75.10807862273626, 40.022708648478115], [-75.10808940525057, 40.02281634179531], [-75.10803565669126, 40.022914876376085], [-75.10792281385686, 40.02299286475194], [-75.10778154248753, 40.02303182489346], [-75.10768455448083, 40.02308715380358], [-75.10751425639339, 40.023102421663594], [-75.1073729845967, 40.02314138040217], [-75.1072096770473, 40.023233555827986], [-75.10704424584219, 40.02331608887378], [-75.10686065894835, 40.02335215568997], [-75.10673673617148, 40.02333011580817], [-75.10659934434501, 40.02326939441552], [-75.10646255127769, 40.02319333576283], [-75.10631124672449, 40.02310543037679], [-75.10613545565268, 40.02300544943703], [-75.10605247374939, 40.02295749164282], [-75.10584846396745, 40.022941281788675], [-75.10566863995791, 40.022944815986456], [-75.10543678370175, 40.023002793046025], [-75.10518210647984, 40.02339025508062], [-75.10508763662361, 40.02350895536784], [-75.1049143487351, 40.02360089684679], [-75.10480855458879, 40.023604262577635], [-75.10462705803057, 40.02354439338227], [-75.10448981833729, 40.02347983364043], [-75.10438324573097, 40.02339679548704], [-75.10429208156532, 40.02330259974516], [-75.10422615514095, 40.02320130771402], [-75.10419937155955, 40.0231201076988], [-75.10419313378188, 40.02302403107859], [-75.10420684398072, 40.02292841226691], [-75.10409693194785, 40.02280308621844], [-75.10390069411592, 40.02258750934463], [-75.10376993748694, 40.02248472580516], [-75.10365124898982, 40.022328497067704], [-75.1035865167461, 40.0221965348681], [-75.10335965788994, 40.02174233905787], [-75.10326807374527, 40.02153109220913], [-75.10319501376617, 40.02135672803016], [-75.10315611454705, 40.02120233779963], [-75.10314578864238, 40.0210831418571], [-75.10317007037045, 40.02097241862366], [-75.10324696224033, 40.02092046779915], [-75.1033671849326, 40.02084992359056], [-75.10344906506903, 40.02072942262346], [-75.10349786087525, 40.02056161716755], [-75.10354663582343, 40.02039388960434], [-75.10359316270015, 40.02023388882772], [-75.1036570026035, 40.01987656897237], [-75.10369705860172, 40.01965930618886], [-75.10373741520444, 40.01952793403622], [-75.10383544166106, 40.019430651520175], [-75.10399315033166, 40.01937884526158], [-75.10417631965316, 40.01934652461066], [-75.10490885747714, 40.01934702238403], [-75.10514063362046, 40.01932905063636], [-75.10533590146107, 40.01928062696204], [-75.10548898171467, 40.01920460947764], [-75.10558162665019, 40.019114922541654], [-75.10567101752486, 40.01896577809034], [-75.10575625037828, 40.018839218600135], [-75.10586011859452, 40.01878112960109], [-75.10602757994306, 40.01868922492428], [-75.10629411473795, 40.01857817906554], [-75.10654007144916, 40.018490600181316], [-75.10672341291877, 40.01841166013801], [-75.10688632285866, 40.018352409187465], [-75.10702670300225, 40.01828255869556], [-75.10713174797101, 40.01819425525665], [-75.10725067393167, 40.01808611062809], [-75.10740250262029, 40.01789052115543], [-75.1074492879232, 40.01778323623494], [-75.1075019453263, 40.01760930469143], [-75.1075484926834, 40.01742389303715], [-75.10753986399301, 40.0172246106732], [-75.1074969191298, 40.0170648597228], [-75.10743534731849, 40.016962640715306], [-75.10733477456357, 40.0168519653075], [-75.10721337838702, 40.01677104914463], [-75.10706904288469, 40.016693842391774], [-75.10774566743571, 40.016581861972575], [-75.1079566960431, 40.01649243760471], [-75.10902514328343, 40.01628798447145], [-75.11136051115065, 40.01586805552725], [-75.11319772024986, 40.01553363305251], [-75.11747690485849, 40.015784203074695], [-75.11757219048913, 40.01558324450789], [-75.11944047531844, 40.01302705559972], [-75.12146940260696, 40.01015438751697], [-75.1233245784329, 40.00755692677894], [-75.12339320057532, 40.007418611434275], [-75.1234268932234, 40.007213386785665], [-75.12394932729268, 40.0048150263638], [-75.12413815881776, 40.004830317442874], [-75.12447874922599, 40.0048561241479], [-75.12481960245576, 40.004880381575894], [-75.12516067340198, 40.00490328601852], [-75.12550191799478, 40.00492503739572], [-75.12584329110216, 40.004945832900546], [-75.12618475093373, 40.004965874307906], [-75.1265262525044, 40.00498535521095], [-75.12686775392743, 40.005004480086335], [-75.12720920671373, 40.00502344244802], [-75.12755058678738, 40.005042349869555], [-75.12787293070507, 40.00505914287225], [-75.12823372347772, 40.00507655443872], [-75.12857548972254, 40.00509169232322], [-75.12891735401352, 40.005105659191635], [-75.1292592889243, 40.00511855803528], [-75.12960127164347, 40.005130493753214], [-75.12994327233797, 40.005141571084394], [-75.13028526365714, 40.00515189122062], [-75.13062734388893, 40.00516042473138], [-75.13096967892228, 40.0051647840814], [-75.1313120905648, 40.005165243621754], [-75.13165438461807, 40.00516218906765], [-75.13195017894888, 40.0051571594535], [-75.13159329869447, 40.006777230208], [-75.13157556350811, 40.006918297371676], [-75.13128895844574, 40.0082654424629], [-75.13122229503595, 40.00838998153134], [-75.13076933610816, 40.010429891484755], [-75.13058658979985, 40.01132621444333], [-75.13039457043838, 40.0122046367008], [-75.13032098038171, 40.012520430993625], [-75.12995568069938, 40.01421690737463], [-75.12991212376365, 40.01438165693674], [-75.12985744154966, 40.01458954235703], [-75.12969626827335, 40.015025138211094], [-75.12954449782806, 40.015628823804676], [-75.1295060820777, 40.01580432267141], [-75.12950279799507, 40.0158893945626], [-75.12958420585664, 40.01596204506945], [-75.12816782747261, 40.01727601049683], [-75.12773597041543, 40.01780744067364], [-75.12728008257253, 40.01855118772663], [-75.12717014834826, 40.0187202445289], [-75.12841230851205, 40.01888818420382], [-75.12828942424522, 40.01931224639612], [-75.12817272187972, 40.019745126505015], [-75.12805743325659, 40.02016776351229], [-75.12793752006728, 40.02058217569274], [-75.12782553628675, 40.02100974360595], [-75.12772254870809, 40.02143541478058], [-75.12766722191142, 40.021678075942006], [-75.1275883473653, 40.02193652409814], [-75.12799561695972, 40.021990003261664], [-75.12832997980297, 40.02203750959046], [-75.1288388007593, 40.02209552698992], [-75.13067747059611, 40.0223264212425], [-75.13165534349513, 40.022466545626095], [-75.13266657267638, 40.02260530897158], [-75.13351806873054, 40.02269961384838], [-75.13517364017464, 40.02288937907387], [-75.13568333923226, 40.02295388314234], [-75.13606727037968, 40.022993869695384], [-75.13593982391987, 40.023051045166966], [-75.13549018536642, 40.023223266760084], [-75.13500172747884, 40.023376356045276], [-75.13433030569912, 40.02355568546947], [-75.13328560210047, 40.02378554621781], [-75.13255946830762, 40.02393498874043], [-75.1311676032351, 40.024128287087606], [-75.13043553193194, 40.02427583568229], [-75.12828863205314, 40.02472700509781], [-75.12773023933812, 40.0248465792651], [-75.12546398521849, 40.02518550922072], [-75.12447140059426, 40.025323467472475], [-75.12352677108895, 40.02546431519292], [-75.12228042299785, 40.02565150686943], [-75.11717408415109, 40.026387182797414], [-75.11323526065227, 40.02696631162894], [-75.11284742220191, 40.027038159909495], [-75.11281268095597, 40.026880239703914]]]}}, {"id": "7220", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.0856951039326, 40.04785186002135], [-75.08406675926334, 40.046964233443056], [-75.08365174732054, 40.046724542027356], [-75.08341587267958, 40.046600359614075], [-75.08300095783821, 40.046371493960706], [-75.08234451175854, 40.04599251847069], [-75.08035251915297, 40.04490616956516], [-75.07856631286752, 40.043905245218944], [-75.0765608830969, 40.042763955361195], [-75.07555346965913, 40.04220531304383], [-75.07545468513057, 40.04215513798341], [-75.07503370357503, 40.041941143862246], [-75.07545256782305, 40.0414780821767], [-75.07583571343075, 40.04109610738058], [-75.07623828501488, 40.04068659459254], [-75.07665244087141, 40.04025881302328], [-75.07682097008166, 40.040075356887755], [-75.07700242865678, 40.03988600766493], [-75.0773958050892, 40.03946541060029], [-75.07782992709585, 40.0390022391198], [-75.07801135411607, 40.03882753769454], [-75.07821099744447, 40.03861885625212], [-75.07838964012736, 40.03843440242911], [-75.07862140296287, 40.038206697716774], [-75.07882205767763, 40.03798920232221], [-75.07899997600468, 40.03779706653513], [-75.07915910930849, 40.037622473914574], [-75.07931365313148, 40.0374713951191], [-75.07954709690475, 40.03722276508653], [-75.07983718668031, 40.03692272182405], [-75.08024922552187, 40.03651060128627], [-75.08060112266844, 40.036131819358744], [-75.08098162607358, 40.03571413929394], [-75.08137885375395, 40.03531391323505], [-75.08157537830293, 40.03511145579118], [-75.08175869585502, 40.03492521355816], [-75.08195841577964, 40.03471897149558], [-75.08218024701313, 40.03448704593086], [-75.08292349300645, 40.03372330867389], [-75.08337184825928, 40.03324444864927], [-75.08401838790222, 40.03253985258157], [-75.08417226608184, 40.03231398234938], [-75.08427364859448, 40.032173074144445], [-75.08413521559794, 40.0319684446678], [-75.084097405649, 40.03188155842482], [-75.08408993092331, 40.03182185063179], [-75.08432709881482, 40.031763071134606], [-75.08451686634676, 40.03169751451363], [-75.08472066349404, 40.03162543348738], [-75.08492630444702, 40.03154244548476], [-75.08512333320796, 40.031450025257755], [-75.0852697585556, 40.03138028375811], [-75.08547258246628, 40.031273684432875], [-75.08560488963899, 40.03119645712578], [-75.08604451725004, 40.03093078216704], [-75.08673522761529, 40.03051272166657], [-75.08704403318237, 40.030332471248634], [-75.08780447439533, 40.02991630348491], [-75.08853297121763, 40.02951223847952], [-75.08956157098642, 40.02895049593653], [-75.0903918108727, 40.02850061797068], [-75.09377160583495, 40.026629748156786], [-75.09406814999566, 40.02647046138908], [-75.09439191996336, 40.0263379947691], [-75.09495268670224, 40.02619701018641], [-75.09526862397325, 40.026148333813644], [-75.0955834671491, 40.026127620134424], [-75.09605195741689, 40.02613494846775], [-75.09647774420104, 40.026186774181035], [-75.09682994834438, 40.02627212964553], [-75.09725400391805, 40.02641113436297], [-75.09759035708078, 40.026571076513996], [-75.09906469220137, 40.02749807807378], [-75.09880927970418, 40.02774045184587], [-75.09869780527592, 40.027854182841565], [-75.09832541146291, 40.02820654081584], [-75.09790836046977, 40.02861986382946], [-75.09680538289797, 40.02794846082214], [-75.09665184640231, 40.02785106630354], [-75.09655185034995, 40.027787634227415], [-75.09623683618052, 40.02759719115612], [-75.09531218868015, 40.02854813419083], [-75.09320525225375, 40.03070558680073], [-75.09354315989118, 40.03119660686105], [-75.093790692357, 40.031513191046294], [-75.09435086658802, 40.03220778020944], [-75.09411844194337, 40.03245672539379], [-75.09392169359725, 40.032648524438095], [-75.0937343543084, 40.032843763787554], [-75.09349854261541, 40.03307356717856], [-75.09327502170578, 40.03330591693202], [-75.09308759856975, 40.03348670616812], [-75.09768657589605, 40.035719345833094], [-75.0903533819722, 40.04298457247651], [-75.08897663424665, 40.044333503559685], [-75.08831388614998, 40.045515125514], [-75.08794833282026, 40.04634483545947], [-75.08763612729165, 40.04704383759833], [-75.08697553819498, 40.04856837334297], [-75.0856951039326, 40.04785186002135]]]}}, {"id": "7260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13941558224629, 40.06338650266371], [-75.13680077963983, 40.061950670877565], [-75.13518201886446, 40.06095171336758], [-75.13411737359088, 40.06029467864256], [-75.13336952909367, 40.05983314071961], [-75.13306980634653, 40.059648161740796], [-75.13011006466647, 40.0578699154973], [-75.12897416052719, 40.05718740622033], [-75.1290445515563, 40.05703322693472], [-75.13000011598297, 40.05555327791002], [-75.12918727245439, 40.05565461231603], [-75.12922179044439, 40.05440819171393], [-75.12924104435761, 40.053622265606776], [-75.12876930743163, 40.05356421498887], [-75.12791015844874, 40.053461088976896], [-75.12824747591462, 40.051887744051875], [-75.12858891879509, 40.05036125112049], [-75.12945227218991, 40.050489274927635], [-75.13111308760577, 40.050690271010204], [-75.13140423760464, 40.04940024691916], [-75.13166128235686, 40.048156268360856], [-75.1332567119416, 40.048777459670774], [-75.13375894185535, 40.0488817426885], [-75.13409180476353, 40.048902587735896], [-75.13440674322722, 40.04891116535305], [-75.13470588083467, 40.04893219041025], [-75.13471592360841, 40.0486818070314], [-75.13471906989062, 40.04841859647586], [-75.13472046245599, 40.048155380230874], [-75.13472165229443, 40.04789216116925], [-75.13472266045814, 40.04762894067132], [-75.13472350689706, 40.04736571829014], [-75.13472421038942, 40.04710249355224], [-75.13472479198656, 40.04683926783781], [-75.1347252728087, 40.04657604072672], [-75.1347256727699, 40.04631281267226], [-75.13472590134562, 40.046135759857265], [-75.13566061865193, 40.04617514610765], [-75.13601975734528, 40.04623017754461], [-75.13635208096265, 40.046547805923666], [-75.13674362053031, 40.046696229658956], [-75.13713453708962, 40.046754167213415], [-75.1375290790481, 40.046806629274776], [-75.139108304773, 40.04701213324483], [-75.13990542259862, 40.047114056859115], [-75.14068846932118, 40.0472161940831], [-75.1417168401787, 40.04734688948639], [-75.14184609111163, 40.04735743502089], [-75.14289822863655, 40.04749494486369], [-75.14345145923748, 40.047823524418746], [-75.14405424447305, 40.04817245487743], [-75.14461035012435, 40.04847914408857], [-75.1449594702503, 40.048681907740466], [-75.14416856197187, 40.04988720936273], [-75.14400246680357, 40.05013417813268], [-75.14388950527827, 40.05072105229967], [-75.14384251662177, 40.05077213551278], [-75.14371846407764, 40.05130204420223], [-75.14360727865454, 40.05182697464946], [-75.14356956884698, 40.05211776363833], [-75.14357057108192, 40.05229749911938], [-75.14319193942907, 40.05381063214488], [-75.14307327307765, 40.05435604650704], [-75.1429815662819, 40.05478955328133], [-75.142849374825, 40.055358526745394], [-75.14250966589323, 40.05691042371588], [-75.14229230921642, 40.057942274324425], [-75.14218360676519, 40.05842583390503], [-75.14184320184367, 40.059949195387794], [-75.14151288719079, 40.061468595416784], [-75.14117039658525, 40.06301326034312], [-75.14092963782336, 40.06409383361448], [-75.14077361287495, 40.06415244752091], [-75.13941558224629, 40.06338650266371]]]}}, {"id": "7270", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12695636310552, 40.05597494947975], [-75.12535397189804, 40.05501204603146], [-75.12484271623276, 40.0547191895723], [-75.12455119024064, 40.0545521959416], [-75.1233259706588, 40.05385034051602], [-75.12212244862376, 40.05316088650055], [-75.1208067107143, 40.05241432562143], [-75.11999035839818, 40.051950901443305], [-75.11954267223868, 40.05169675465307], [-75.11856523235454, 40.05114186146354], [-75.11706038791601, 40.05028752301431], [-75.11507311325819, 40.049135406060444], [-75.11450749368127, 40.04880747770997], [-75.11292673836158, 40.047890875760764], [-75.11236444179346, 40.047564816507226], [-75.1120565540253, 40.04738627911108], [-75.11106357455648, 40.046814616741415], [-75.11115848410493, 40.046733071595796], [-75.1112195630462, 40.04663395316706], [-75.11123980198471, 40.046533897476515], [-75.1112605313834, 40.04642128910051], [-75.1112718713749, 40.04633987581251], [-75.11128418892369, 40.046233355278694], [-75.11132052005281, 40.04613995210309], [-75.11129273266582, 40.04601366260246], [-75.11127238187268, 40.0459063916448], [-75.11126958339774, 40.04576811220361], [-75.11124510292609, 40.045346619697824], [-75.11118527095176, 40.0449934222092], [-75.11115078146194, 40.04482928323243], [-75.11111531561619, 40.04469025331622], [-75.11111349520444, 40.04452686481716], [-75.11113349305668, 40.04443308648353], [-75.11118713129076, 40.04431495034588], [-75.11131341960784, 40.04422047269176], [-75.11151024216281, 40.04407797918106], [-75.11156575354802, 40.04403779158808], [-75.1117332427706, 40.043934836877064], [-75.11185124027685, 40.04384330742715], [-75.11198581625828, 40.04374587662462], [-75.11210576754667, 40.043604133305365], [-75.11219231569136, 40.04348047053307], [-75.11228678688215, 40.043363271613295], [-75.11233201443348, 40.04325122473875], [-75.11236858653379, 40.04315154394665], [-75.11246866984594, 40.04288997486483], [-75.11253291397634, 40.04270925566286], [-75.11257021738584, 40.04259074478913], [-75.11264213788857, 40.042422767540494], [-75.1127128405414, 40.04228617576003], [-75.1127741066663, 40.04214006146113], [-75.11286947701865, 40.04204161064726], [-75.1130556110803, 40.04187939626916], [-75.11331865739629, 40.04163099141643], [-75.11349028293597, 40.041421325852625], [-75.11359413553215, 40.04127292783695], [-75.1136475265812, 40.0411610687875], [-75.11372590411038, 40.04103721654756], [-75.11378099830318, 40.040881417330844], [-75.11385169712868, 40.04074482303881], [-75.11392190675035, 40.04062078412621], [-75.1140082063116, 40.04050339639674], [-75.11411900420693, 40.04038657080244], [-75.1142154194218, 40.04021915570021], [-75.11437838529145, 40.04002185416315], [-75.11446248689798, 40.03996095702236], [-75.11453306027111, 40.03982750226669], [-75.11453878916122, 40.039679994812566], [-75.11455061278535, 40.03958602844723], [-75.11453027601395, 40.03948631264985], [-75.11445948254539, 40.0392343375422], [-75.11434745416437, 40.03907566195408], [-75.11427990082679, 40.03898964670384], [-75.11469350877786, 40.039065701477355], [-75.11672716188447, 40.03942956666282], [-75.11722753225436, 40.039490945751716], [-75.11801054092834, 40.03959379090564], [-75.11876750715301, 40.03968652105032], [-75.11955672523094, 40.03978025236859], [-75.12043498445308, 40.03988793187012], [-75.12033160946375, 40.0404009127846], [-75.1225519578111, 40.040689183048585], [-75.1241108007864, 40.0408745104706], [-75.12403986750705, 40.041368609598], [-75.12397774297331, 40.04189472798651], [-75.12390826084913, 40.04243176165273], [-75.12384856625496, 40.04291297527701], [-75.12376584112621, 40.04343900192864], [-75.12370323161629, 40.043952497466286], [-75.12364352816455, 40.044445286281785], [-75.12356660532694, 40.044994142319055], [-75.1235023266746, 40.04554713840614], [-75.12343252567005, 40.04604121448975], [-75.12333940277584, 40.04656545250321], [-75.12325949511863, 40.04696936426776], [-75.12320877532723, 40.04724070249147], [-75.12315707859291, 40.04758132523088], [-75.12311811404847, 40.047814647662754], [-75.12303589199668, 40.04818714799974], [-75.12277702133987, 40.04961430254356], [-75.12251658636832, 40.05112692097295], [-75.12342163465625, 40.051255826598315], [-75.12433636664228, 40.05138159362807], [-75.12529830543205, 40.05149392534659], [-75.12575866118469, 40.0515612130172], [-75.12618668434979, 40.051616262405275], [-75.12666934586862, 40.05168769416722], [-75.12714446243086, 40.0517499945417], [-75.12824747591462, 40.051887744051875], [-75.12791015844874, 40.053461088976896], [-75.12876930743163, 40.05356421498887], [-75.12924104435761, 40.053622265606776], [-75.12922179044439, 40.05440819171393], [-75.12918727245439, 40.05565461231603], [-75.13000011598297, 40.05555327791002], [-75.1290445515563, 40.05703322693472], [-75.12897416052719, 40.05718740622033], [-75.12846164184455, 40.056879450176595], [-75.12695636310552, 40.05597494947975]]]}}, {"id": "7280", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10281166625275, 40.0508685864897], [-75.1018914465809, 40.05006629533136], [-75.10133641421142, 40.049540434137114], [-75.10039563010359, 40.04869298730429], [-75.09956065794458, 40.04797498853239], [-75.09880087535097, 40.04753158377558], [-75.09801858961916, 40.04709794044168], [-75.09697175151327, 40.04656599718221], [-75.09600049007513, 40.04600379173299], [-75.0951428672017, 40.04555226333374], [-75.09479268570398, 40.0453649583314], [-75.09453467758765, 40.04522327325332], [-75.094176025479, 40.04502710432539], [-75.0903533819722, 40.04298457247651], [-75.09768657589605, 40.035719345833094], [-75.09842348622718, 40.03609259162841], [-75.0993867904679, 40.03676270560465], [-75.10157375467256, 40.03829446838198], [-75.103163265148, 40.03919752094247], [-75.1046332240413, 40.04007483349837], [-75.10562252298803, 40.040667949189285], [-75.10673069026728, 40.041321112298505], [-75.10827180197076, 40.042214728152906], [-75.10993282324226, 40.04319925585045], [-75.1105023114915, 40.04351627589818], [-75.11151024216281, 40.04407797918106], [-75.11131341960784, 40.04422047269176], [-75.11118713129076, 40.04431495034588], [-75.11113349305668, 40.04443308648353], [-75.11111349520444, 40.04452686481716], [-75.11111531561619, 40.04469025331622], [-75.11115078146194, 40.04482928323243], [-75.11118527095176, 40.0449934222092], [-75.11124510292609, 40.045346619697824], [-75.11126958339774, 40.04576811220361], [-75.11127238187268, 40.0459063916448], [-75.11129273266582, 40.04601366260246], [-75.11132052005281, 40.04613995210309], [-75.11128418892369, 40.046233355278694], [-75.1112718713749, 40.04633987581251], [-75.1112605313834, 40.04642128910051], [-75.11123980198471, 40.046533897476515], [-75.1112195630462, 40.04663395316706], [-75.11115848410493, 40.046733071595796], [-75.11106357455648, 40.046814616741415], [-75.10943208023384, 40.045875319211376], [-75.10926483047405, 40.04577902615255], [-75.10890588420136, 40.04612833317729], [-75.10904548462598, 40.046210809920076], [-75.10810372165213, 40.04716783265226], [-75.10821232868344, 40.04723130847366], [-75.10742774513943, 40.048022729092416], [-75.10764531689773, 40.04814054013331], [-75.10749118597747, 40.04832907182175], [-75.10631154318088, 40.0492917283961], [-75.10310487206245, 40.05119338851588], [-75.1030246267211, 40.051089122973224], [-75.10281166625275, 40.0508685864897]]]}}, {"id": "7290", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.08097132025813, 40.01530229667788], [-75.08019987701304, 40.014864913005], [-75.07946727058858, 40.01445822732093], [-75.07830534931806, 40.013819680943], [-75.07753693593935, 40.013356872141166], [-75.07742627803177, 40.012908300122575], [-75.07705894581584, 40.01133352361732], [-75.07831364702156, 40.01082038927243], [-75.07850491868784, 40.01073249149751], [-75.07928033188941, 40.01041011679957], [-75.07888283118169, 40.010028942497485], [-75.07874968635451, 40.00987955810453], [-75.07861364295223, 40.00935524799101], [-75.07847826246463, 40.008723089506965], [-75.07844817158372, 40.008587325110916], [-75.07833295323039, 40.00806746009549], [-75.07819554814382, 40.00741205761696], [-75.07804757869613, 40.00673401275043], [-75.07789180735155, 40.0060630276795], [-75.07774943992962, 40.00538417646413], [-75.07759312910837, 40.00469933736335], [-75.07747768474579, 40.00414030389461], [-75.0777073161663, 40.00398457483515], [-75.07870570437166, 40.00316245077873], [-75.07925832998944, 40.0027283673608], [-75.07978287508426, 40.00233899747106], [-75.08168151580726, 40.00134991509014], [-75.08363918980993, 40.00032618625841], [-75.08482491742816, 39.99970600691798], [-75.08513260283303, 39.99954507122644], [-75.08637219053867, 39.99889668903513], [-75.08666932734353, 39.9991549010774], [-75.0870710855701, 39.99960523222292], [-75.08725148428842, 39.99985134298901], [-75.08741858989772, 40.000102183717935], [-75.08747738455683, 40.00044123669756], [-75.0874978781014, 40.000754199257734], [-75.0875148209393, 40.00115780317993], [-75.08756900623546, 40.00178151413913], [-75.08758552063374, 40.00202886357714], [-75.08768061036204, 40.002278035314845], [-75.08790668836195, 40.00269656807221], [-75.08798430624469, 40.00288989257783], [-75.08810160755651, 40.003074055475324], [-75.08825342491625, 40.003213660293326], [-75.08842985436478, 40.003394154256455], [-75.08864656234672, 40.0035503823744], [-75.08888380083832, 40.00368440414936], [-75.08941342606012, 40.00388316403909], [-75.09015139125702, 40.004153884085476], [-75.09033735121965, 40.004222103066994], [-75.09097751437344, 40.004443576190404], [-75.09140573694945, 40.004554296486084], [-75.09183794632433, 40.00473062814792], [-75.0921010930726, 40.00487280351358], [-75.09221919628253, 40.00503682062715], [-75.09233848386813, 40.0051706262382], [-75.09255396545545, 40.00536603675294], [-75.09239074383822, 40.005511140248174], [-75.09181617120602, 40.00600868145237], [-75.09116707754136, 40.00705389319111], [-75.09099114477563, 40.00732055578791], [-75.09093112514739, 40.007443593445664], [-75.09032710271441, 40.00836154533965], [-75.09009362547506, 40.0087631653654], [-75.08986582746228, 40.009132753141486], [-75.08965972218581, 40.00946714048222], [-75.08952675928374, 40.00967215486071], [-75.08927245543349, 40.01006426240513], [-75.08919763531237, 40.010179622728174], [-75.08873149831201, 40.01092474773304], [-75.0879733473435, 40.012104293034525], [-75.08765571886487, 40.01243104828334], [-75.08757777102656, 40.01251711448529], [-75.08634986317635, 40.013869059525234], [-75.08581981502454, 40.014449200555006], [-75.08551972336888, 40.01478886638747], [-75.08465720895092, 40.01571363601343], [-75.08438320179262, 40.01599753384922], [-75.08385322409082, 40.01657439468965], [-75.08366059658319, 40.0167978926383], [-75.08356395690733, 40.01675184627466], [-75.08236494235803, 40.01606923064227], [-75.08097132025813, 40.01530229667788]]]}}, {"id": "7300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.10318525441383, 40.01091553525819], [-75.10221797518595, 40.010790141259406], [-75.1014775675622, 40.01069036050293], [-75.10076724389869, 40.01059116998829], [-75.10003932656444, 40.01050417622113], [-75.09935967046846, 40.010413958937825], [-75.09879853964992, 40.01033751589478], [-75.0980970429894, 40.01024887892238], [-75.09737554928974, 40.0101520023793], [-75.0968188014077, 40.010078406190615], [-75.09614999669296, 40.0099888746019], [-75.095032054847, 40.01000711553365], [-75.09500332253424, 40.009917311657965], [-75.0949067147156, 40.00963116035168], [-75.09478736900864, 40.00944395831309], [-75.09461576907472, 40.009264628212186], [-75.09427702237522, 40.00906109068554], [-75.09370780600149, 40.00870015399339], [-75.09295800332019, 40.008264474944404], [-75.09258891364838, 40.007938335956275], [-75.09237684350016, 40.00770669202036], [-75.09221407877834, 40.00751139890072], [-75.09211389737854, 40.00722431245984], [-75.09215590467748, 40.00698840157629], [-75.09232133963845, 40.00678054642556], [-75.09253778112755, 40.00660915183336], [-75.09275698304405, 40.00636726149589], [-75.09285136993151, 40.00613256007388], [-75.09288480353679, 40.005974655093624], [-75.09327398346457, 40.00596226234677], [-75.09634801619768, 40.005852913915064], [-75.096867594174, 40.0055623568645], [-75.09798025936766, 40.004951203315294], [-75.09936342138738, 40.004204338993276], [-75.10049827342786, 40.00358035163278], [-75.10181133678756, 40.00286444150113], [-75.1037972729379, 40.003135874650006], [-75.10368780044956, 40.0036383117411], [-75.10360252415369, 40.00407447780811], [-75.10352956329014, 40.00443165033639], [-75.10327103349695, 40.005603012611246], [-75.10533698181442, 40.00551937536787], [-75.10514096994618, 40.00646277304497], [-75.10480773856783, 40.007968794353225], [-75.1044909378137, 40.00945115129698], [-75.10416652148031, 40.01104175426094], [-75.10370488334752, 40.010982498833606], [-75.10350084961114, 40.010953468918046], [-75.10318525441383, 40.01091553525819]]]}}, {"id": "7320", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14405424447305, 40.04817245487743], [-75.14345145923748, 40.047823524418746], [-75.14289822863655, 40.04749494486369], [-75.14184609111163, 40.04735743502089], [-75.1417168401787, 40.04734688948639], [-75.14068846932118, 40.0472161940831], [-75.13990542259862, 40.047114056859115], [-75.139108304773, 40.04701213324483], [-75.1375290790481, 40.046806629274776], [-75.13713453708962, 40.046754167213415], [-75.13674362053031, 40.046696229658956], [-75.13635208096265, 40.046547805923666], [-75.13601975734528, 40.04623017754461], [-75.13566061865193, 40.04617514610765], [-75.13472590134562, 40.046135759857265], [-75.13472601174911, 40.04604958502804], [-75.13472630862711, 40.045786354619786], [-75.13472658669221, 40.045523125581795], [-75.13472686127587, 40.04525989556012], [-75.13472715583922, 40.04499666418777], [-75.13472748898417, 40.044733435492475], [-75.13472788313881, 40.04447020547966], [-75.13472835459646, 40.044206977223425], [-75.13472892805768, 40.043943748583104], [-75.13472962098656, 40.04368052265935], [-75.13472969726423, 40.04341726647428], [-75.13472697741948, 40.04315389256317], [-75.13472352169212, 40.042890480269094], [-75.13472182558891, 40.042627129658364], [-75.13472438816113, 40.04236393907692], [-75.13473370487289, 40.04210100769038], [-75.13475175466523, 40.04183839136754], [-75.13477741194309, 40.04157600140778], [-75.13480890949876, 40.04131382009847], [-75.13484452100693, 40.0410518342622], [-75.13488252571301, 40.040790038958356], [-75.13492119862019, 40.040528418339036], [-75.13496233925464, 40.04026715213024], [-75.13500880438107, 40.040006362132374], [-75.13505778090732, 40.03974579508309], [-75.13510640080575, 40.03948519467066], [-75.1351508380495, 40.03922409987065], [-75.13519214212045, 40.03896256431206], [-75.13524186910239, 40.03870228819914], [-75.13530975823267, 40.038444142866446], [-75.13539985461783, 40.03818986383155], [-75.13551964132269, 40.03794392826701], [-75.13566051505993, 40.037703539013485], [-75.13579331165975, 40.037460704204015], [-75.1359172080124, 40.03721491407448], [-75.13596239568302, 40.03714069095362], [-75.13643742560077, 40.03719714962134], [-75.13682469320108, 40.03688982868427], [-75.13720839198119, 40.03656309931997], [-75.13816430148131, 40.03580745474563], [-75.13837487569867, 40.03588478067623], [-75.13909695975165, 40.0359825433927], [-75.13988302535608, 40.036084777555345], [-75.14067276785356, 40.036185703147375], [-75.14146588926472, 40.03628840562802], [-75.14463761989032, 40.03740050019296], [-75.1450944010915, 40.03741430698231], [-75.14475013943076, 40.03907393952762], [-75.14483484273276, 40.03909529389763], [-75.1465864041407, 40.03905049033996], [-75.14751693464373, 40.0390216568223], [-75.14853266999647, 40.039003599011316], [-75.14854554188075, 40.03924251617451], [-75.14854610688744, 40.03937335949963], [-75.14852773195206, 40.03948876019615], [-75.14849532919025, 40.03967890879429], [-75.14843192760813, 40.039876935680155], [-75.14833728636707, 40.04008926772206], [-75.14822050255044, 40.04029680839816], [-75.14808463273732, 40.040481288460676], [-75.1476752049131, 40.040934966381], [-75.14740059680261, 40.04124865209369], [-75.14717808632864, 40.04149643421224], [-75.14709850337391, 40.04157143906791], [-75.14697851267586, 40.041731463715664], [-75.14690535911149, 40.04185985712996], [-75.14687399161087, 40.04196612419693], [-75.14685593723742, 40.04208108234812], [-75.146857531517, 40.04218180278661], [-75.14688229840992, 40.04231870797406], [-75.14693970827715, 40.0424584486666], [-75.14699021201726, 40.04254004327967], [-75.14708428051617, 40.042744899563225], [-75.14714370082122, 40.0430084054196], [-75.14714038176054, 40.04310281640004], [-75.14710460885777, 40.043324167185084], [-75.14701361561217, 40.043721372621505], [-75.14695055644779, 40.04401627147233], [-75.14684915190857, 40.04448263821296], [-75.14677547274304, 40.04478388096465], [-75.14677753155169, 40.044849237938145], [-75.14669300886234, 40.045194628987076], [-75.14663676712304, 40.04545030860512], [-75.14646875550979, 40.04622407338927], [-75.14528147732689, 40.046185509948074], [-75.1454080210859, 40.04673127633197], [-75.14547666751128, 40.047031947533014], [-75.14550656707368, 40.04723247677593], [-75.14550820155128, 40.047415603523135], [-75.14548093715094, 40.04761805154559], [-75.14543723983196, 40.04782781267246], [-75.14538930108704, 40.04796252007741], [-75.1453205598177, 40.04811425177652], [-75.14524213250647, 40.04825292700271], [-75.14514845117893, 40.04840811255315], [-75.14505541602155, 40.048546456430095], [-75.1449594702503, 40.048681907740466], [-75.14461035012435, 40.04847914408857], [-75.14405424447305, 40.04817245487743]]]}}, {"id": "7330", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05539833613314, 40.02567408298286], [-75.0549663561723, 40.025172380397535], [-75.05449649038853, 40.02464923564854], [-75.05405573884796, 40.024130575636875], [-75.05383051939687, 40.02388229248625], [-75.05360536254146, 40.023616927357196], [-75.05337410689482, 40.02336301410848], [-75.05315294282204, 40.02310603050815], [-75.0529326587648, 40.02286481292343], [-75.05270351743722, 40.02259335939741], [-75.05248290255767, 40.02234721787948], [-75.05225498658803, 40.02208102634417], [-75.05177492702299, 40.0215363498483], [-75.05132044682324, 40.02101559235904], [-75.05090575006129, 40.02053632334524], [-75.05045067390724, 40.02002728783608], [-75.05000317862873, 40.019512392481026], [-75.04949864826371, 40.018930315978146], [-75.04895805847762, 40.01833459840812], [-75.04879026013448, 40.01814272009394], [-75.04869060025547, 40.01802875804136], [-75.04858708950196, 40.01793877323055], [-75.04843241042651, 40.01780693177609], [-75.04827883286003, 40.01769035907416], [-75.04813594950116, 40.017585297316074], [-75.04808650156707, 40.01750175437715], [-75.04779921109528, 40.017327097465994], [-75.04740062933426, 40.01699499112109], [-75.04695708881782, 40.01666649054795], [-75.04654946592537, 40.016354768020506], [-75.04648114678258, 40.016302523093245], [-75.04628938611744, 40.01615203672511], [-75.04601335698105, 40.015932664335985], [-75.04578450295824, 40.01572048260732], [-75.04549702717796, 40.01539135984509], [-75.04318345620553, 40.01230180802732], [-75.04487805989457, 40.01142884476869], [-75.0468045730374, 40.01040768532484], [-75.04802351584226, 40.009719588094946], [-75.04917137466465, 40.008935643873606], [-75.05045520772387, 40.007982636145904], [-75.05092040548402, 40.00762418782804], [-75.05401718703848, 40.010002054559614], [-75.05729957020579, 40.01336760087576], [-75.05745743132746, 40.01350819366441], [-75.05784818069887, 40.013855847350165], [-75.05840033380261, 40.01434703578137], [-75.05889250801464, 40.014906966560616], [-75.05979914210195, 40.01594287272425], [-75.06065911296884, 40.01693317004281], [-75.06159650213483, 40.01799493818623], [-75.06249567396762, 40.01901613855505], [-75.06330301920873, 40.0199391862737], [-75.0634198291396, 40.02004287509226], [-75.06358848374596, 40.020322696550465], [-75.06368423489864, 40.02039292136493], [-75.0642976684409, 40.02107469328656], [-75.0651918913363, 40.02210515175155], [-75.06582704066194, 40.022829713864425], [-75.06628126765678, 40.02335211348504], [-75.06491395782366, 40.02406163942987], [-75.06429850056371, 40.02437366105983], [-75.06379250395135, 40.02463878984568], [-75.06325416663721, 40.024913758823566], [-75.06280300649158, 40.02440337289763], [-75.06271239425418, 40.0242925423012], [-75.06075658276164, 40.025302397254684], [-75.05880467941977, 40.026314935658625], [-75.05825183059187, 40.02569286300014], [-75.057897070503, 40.025876805875036], [-75.05759522139245, 40.026032809647084], [-75.05727981106796, 40.02619638423572], [-75.05695499182227, 40.02636259906879], [-75.05629534391466, 40.02670488753105], [-75.05539833613314, 40.02567408298286]]]}}, {"id": "7350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12714446243086, 40.0517499945417], [-75.12666934586862, 40.05168769416722], [-75.12618668434979, 40.051616262405275], [-75.12575866118469, 40.0515612130172], [-75.12529830543205, 40.05149392534659], [-75.12433636664228, 40.05138159362807], [-75.12342163465625, 40.051255826598315], [-75.12251658636832, 40.05112692097295], [-75.12277702133987, 40.04961430254356], [-75.12303589199668, 40.04818714799974], [-75.12311811404847, 40.047814647662754], [-75.12315707859291, 40.04758132523088], [-75.12320877532723, 40.04724070249147], [-75.12325949511863, 40.04696936426776], [-75.12333940277584, 40.04656545250321], [-75.12343252567005, 40.04604121448975], [-75.1235023266746, 40.04554713840614], [-75.12356660532694, 40.044994142319055], [-75.12364352816455, 40.044445286281785], [-75.12370323161629, 40.043952497466286], [-75.12376584112621, 40.04343900192864], [-75.12384856625496, 40.04291297527701], [-75.12390826084913, 40.04243176165273], [-75.12397774297331, 40.04189472798651], [-75.12403986750705, 40.041368609598], [-75.1241108007864, 40.0408745104706], [-75.1225519578111, 40.040689183048585], [-75.12033160946375, 40.0404009127846], [-75.12043498445308, 40.03988793187012], [-75.11955672523094, 40.03978025236859], [-75.11876750715301, 40.03968652105032], [-75.11801054092834, 40.03959379090564], [-75.11722753225436, 40.039490945751716], [-75.11672716188447, 40.03942956666282], [-75.11469350877786, 40.039065701477355], [-75.11427990082679, 40.03898964670384], [-75.11425014870089, 40.03884252882347], [-75.1142487356538, 40.038750401375246], [-75.11420272836139, 40.038649574724715], [-75.1141160352188, 40.038503685594705], [-75.11409857931179, 40.03837473435773], [-75.11410319589001, 40.03825588381147], [-75.11408860470681, 40.038117404159905], [-75.11404788283444, 40.03800902466463], [-75.11402212652956, 40.03790098860959], [-75.1139219993191, 40.037522632849516], [-75.11386266859212, 40.0373792906528], [-75.11381241943819, 40.03725917994319], [-75.1137419204401, 40.03714627938603], [-75.11361410099974, 40.03696682859716], [-75.11349536452525, 40.03681061013599], [-75.11338012352775, 40.036692843895196], [-75.11326496084212, 40.03657316283834], [-75.11316100665682, 40.036504056939116], [-75.11403140194247, 40.035472603119146], [-75.11461328019617, 40.03479657194471], [-75.11489795401083, 40.0344480299467], [-75.11513512724989, 40.03447968217076], [-75.11547394249487, 40.03451920586586], [-75.11583371765533, 40.03457011622014], [-75.11615336508022, 40.03461643623171], [-75.11650544942219, 40.03465710540937], [-75.11685146188826, 40.03469482398715], [-75.11716343499901, 40.03473588882475], [-75.11755213886096, 40.03479497055524], [-75.12007475167565, 40.035112436465], [-75.12142273542835, 40.03528205370963], [-75.12386086326329, 40.035563736148795], [-75.12395251307039, 40.03484852062137], [-75.12403310722064, 40.03404097915165], [-75.12418810210198, 40.03255273783986], [-75.12534748854145, 40.032908326018976], [-75.12598314561127, 40.033122585588295], [-75.12706004213122, 40.033477949059915], [-75.12813812194852, 40.0338276626433], [-75.12909893597146, 40.03414864853474], [-75.12996771413667, 40.034430870331285], [-75.13088081387585, 40.03474587521162], [-75.13184454399239, 40.035052721926434], [-75.13276532628717, 40.03533772841605], [-75.1335665112153, 40.035626316406706], [-75.13435513859052, 40.03588374814797], [-75.13491719236487, 40.0360488365267], [-75.13601924186796, 40.03629591786183], [-75.13596239568302, 40.03714069095362], [-75.1359172080124, 40.03721491407448], [-75.13579331165975, 40.037460704204015], [-75.13566051505993, 40.037703539013485], [-75.13551964132269, 40.03794392826701], [-75.13539985461783, 40.03818986383155], [-75.13530975823267, 40.038444142866446], [-75.13524186910239, 40.03870228819914], [-75.13519214212045, 40.03896256431206], [-75.1351508380495, 40.03922409987065], [-75.13510640080575, 40.03948519467066], [-75.13505778090732, 40.03974579508309], [-75.13500880438107, 40.040006362132374], [-75.13496233925464, 40.04026715213024], [-75.13492119862019, 40.040528418339036], [-75.13488252571301, 40.040790038958356], [-75.13484452100693, 40.0410518342622], [-75.13480890949876, 40.04131382009847], [-75.13477741194309, 40.04157600140778], [-75.13475175466523, 40.04183839136754], [-75.13473370487289, 40.04210100769038], [-75.13472438816113, 40.04236393907692], [-75.13472182558891, 40.042627129658364], [-75.13472352169212, 40.042890480269094], [-75.13472697741948, 40.04315389256317], [-75.13472969726423, 40.04341726647428], [-75.13472962098656, 40.04368052265935], [-75.13472892805768, 40.043943748583104], [-75.13472835459646, 40.044206977223425], [-75.13472788313881, 40.04447020547966], [-75.13472748898417, 40.044733435492475], [-75.13472715583922, 40.04499666418777], [-75.13472686127587, 40.04525989556012], [-75.13472658669221, 40.045523125581795], [-75.13472630862711, 40.045786354619786], [-75.13472601174911, 40.04604958502804], [-75.13472590134562, 40.046135759857265], [-75.1347256727699, 40.04631281267226], [-75.1347252728087, 40.04657604072672], [-75.13472479198656, 40.04683926783781], [-75.13472421038942, 40.04710249355224], [-75.13472350689706, 40.04736571829014], [-75.13472266045814, 40.04762894067132], [-75.13472165229443, 40.04789216116925], [-75.13472046245599, 40.048155380230874], [-75.13471906989062, 40.04841859647586], [-75.13471592360841, 40.0486818070314], [-75.13470588083467, 40.04893219041025], [-75.13440674322722, 40.04891116535305], [-75.13409180476353, 40.048902587735896], [-75.13375894185535, 40.0488817426885], [-75.1332567119416, 40.048777459670774], [-75.13166128235686, 40.048156268360856], [-75.13140423760464, 40.04940024691916], [-75.13111308760577, 40.050690271010204], [-75.12945227218991, 40.050489274927635], [-75.12858891879509, 40.05036125112049], [-75.12824747591462, 40.051887744051875], [-75.12714446243086, 40.0517499945417]]]}}, {"id": "7360", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.09906469220137, 40.02749807807378], [-75.09759035708078, 40.026571076513996], [-75.09760535640449, 40.026374768656446], [-75.09704494224373, 40.025879303453735], [-75.09588283398332, 40.02475709894003], [-75.0955364517077, 40.02412972769605], [-75.09495857630324, 40.023261012180676], [-75.09377048922879, 40.022509222848406], [-75.09292462407517, 40.02196113938917], [-75.09149384447011, 40.021028167748334], [-75.08971963095158, 40.019876666126635], [-75.08916970347666, 40.020553783344866], [-75.08862030507747, 40.02124363667434], [-75.0872830574803, 40.02048620669436], [-75.08505923193333, 40.01921760855102], [-75.0843249369079, 40.01880570129187], [-75.0840592270956, 40.018659715651644], [-75.08350869706807, 40.01836678867006], [-75.08264223060424, 40.01789885752839], [-75.08366059658319, 40.0167978926383], [-75.08385322409082, 40.01657439468965], [-75.08438320179262, 40.01599753384922], [-75.08465720895092, 40.01571363601343], [-75.08551972336888, 40.01478886638747], [-75.08581981502454, 40.014449200555006], [-75.08634986317635, 40.013869059525234], [-75.08757777102656, 40.01251711448529], [-75.08765571886487, 40.01243104828334], [-75.0879733473435, 40.012104293034525], [-75.08873149831201, 40.01092474773304], [-75.08919763531237, 40.010179622728174], [-75.08927245543349, 40.01006426240513], [-75.08952675928374, 40.00967215486071], [-75.08965972218581, 40.00946714048222], [-75.08986582746228, 40.009132753141486], [-75.09009362547506, 40.0087631653654], [-75.09032710271441, 40.00836154533965], [-75.09093112514739, 40.007443593445664], [-75.09099114477563, 40.00732055578791], [-75.09116707754136, 40.00705389319111], [-75.09181617120602, 40.00600868145237], [-75.09288480353679, 40.005974655093624], [-75.09285136993151, 40.00613256007388], [-75.09275698304405, 40.00636726149589], [-75.09253778112755, 40.00660915183336], [-75.09232133963845, 40.00678054642556], [-75.09215590467748, 40.00698840157629], [-75.09211389737854, 40.00722431245984], [-75.09221407877834, 40.00751139890072], [-75.09237684350016, 40.00770669202036], [-75.09258891364838, 40.007938335956275], [-75.09295800332019, 40.008264474944404], [-75.09370780600149, 40.00870015399339], [-75.09427702237522, 40.00906109068554], [-75.09461576907472, 40.009264628212186], [-75.09478736900864, 40.00944395831309], [-75.0949067147156, 40.00963116035168], [-75.09500332253424, 40.009917311657965], [-75.095032054847, 40.01000711553365], [-75.09510418754013, 40.010232572844764], [-75.09497380707462, 40.010506979466605], [-75.09438434335257, 40.011344224245], [-75.0942937947617, 40.01148073163575], [-75.0940575446021, 40.01182303501672], [-75.09392127569429, 40.01203912720307], [-75.09368785533968, 40.012392834002796], [-75.09357548894567, 40.01258427955463], [-75.09350746262793, 40.012731388269465], [-75.09348279140482, 40.01285934120278], [-75.0934609009396, 40.012999956755614], [-75.09346560120999, 40.01313110856111], [-75.09349947382906, 40.01327049502147], [-75.09356744835101, 40.01345981206091], [-75.09369551346215, 40.013704700356556], [-75.09381573062232, 40.01389900569513], [-75.09420442282375, 40.01451911094814], [-75.09430071223922, 40.0146548995285], [-75.09440338987376, 40.01477399992073], [-75.09448920384817, 40.014863385092106], [-75.09459659753882, 40.014966670368004], [-75.09474943973703, 40.01508108734914], [-75.09492490873457, 40.01520358702422], [-75.09508142056097, 40.015308009412614], [-75.09526085584925, 40.01541296068959], [-75.0955843450359, 40.01560566269948], [-75.0958055633854, 40.01573173878071], [-75.09604315382364, 40.015858193742595], [-75.09617236304571, 40.01590654011003], [-75.09636091010914, 40.01594617963542], [-75.09648485082805, 40.01596164495705], [-75.0967104010329, 40.015976936196914], [-75.09687740317702, 40.015980795181704], [-75.09704557731395, 40.015984681002344], [-75.09727074161512, 40.0159798042748], [-75.09750577306133, 40.01600413412216], [-75.09779602673703, 40.016041078575135], [-75.09797714040202, 40.01610322275027], [-75.09818971848458, 40.01619885491984], [-75.09845171468743, 40.01628806731903], [-75.09863332010706, 40.01633762262499], [-75.0989541290843, 40.01634754934597], [-75.0994513910549, 40.016287207860074], [-75.09961312492426, 40.016258180541676], [-75.09989401812634, 40.01619914350674], [-75.10039348942762, 40.01608214693139], [-75.10059500594313, 40.01604143711569], [-75.10101542585011, 40.01601837474194], [-75.10132367727344, 40.01601414726746], [-75.10154615040638, 40.01602431942203], [-75.10177219311154, 40.016027011100995], [-75.10204814023679, 40.016010696208625], [-75.10228557952493, 40.015973331174216], [-75.10254485693365, 40.01596418856369], [-75.10287807753099, 40.01599203185247], [-75.10331734435431, 40.016073979351674], [-75.10365344557117, 40.016111967523926], [-75.10386599817559, 40.01612442581209], [-75.10408202186417, 40.01613192421742], [-75.10436661446846, 40.016146041630506], [-75.10468821059497, 40.016135811677856], [-75.10498560567682, 40.01615778306505], [-75.10520636551904, 40.01621200785604], [-75.1054144656799, 40.016254602047276], [-75.10566284402671, 40.01627292340564], [-75.10586269194972, 40.01627500464343], [-75.10619444215709, 40.01634060537272], [-75.1064316228546, 40.016393947125465], [-75.10666562720535, 40.016444695070696], [-75.10685778919127, 40.01656000056662], [-75.10706904288469, 40.016693842391774], [-75.10721337838702, 40.01677104914463], [-75.10733477456357, 40.0168519653075], [-75.10743534731849, 40.016962640715306], [-75.1074969191298, 40.0170648597228], [-75.10753986399301, 40.0172246106732], [-75.1075484926834, 40.01742389303715], [-75.1075019453263, 40.01760930469143], [-75.1074492879232, 40.01778323623494], [-75.10740250262029, 40.01789052115543], [-75.10725067393167, 40.01808611062809], [-75.10713174797101, 40.01819425525665], [-75.10702670300225, 40.01828255869556], [-75.10688632285866, 40.018352409187465], [-75.10672341291877, 40.01841166013801], [-75.10654007144916, 40.018490600181316], [-75.10629411473795, 40.01857817906554], [-75.10602757994306, 40.01868922492428], [-75.10586011859452, 40.01878112960109], [-75.10575625037828, 40.018839218600135], [-75.10567101752486, 40.01896577809034], [-75.10558162665019, 40.019114922541654], [-75.10548898171467, 40.01920460947764], [-75.10533590146107, 40.01928062696204], [-75.10514063362046, 40.01932905063636], [-75.10490885747714, 40.01934702238403], [-75.10417631965316, 40.01934652461066], [-75.10399315033166, 40.01937884526158], [-75.10383544166106, 40.019430651520175], [-75.10373741520444, 40.01952793403622], [-75.10369705860172, 40.01965930618886], [-75.1036570026035, 40.01987656897237], [-75.10359316270015, 40.02023388882772], [-75.10354663582343, 40.02039388960434], [-75.10349786087525, 40.02056161716755], [-75.10344906506903, 40.02072942262346], [-75.1033671849326, 40.02084992359056], [-75.10324696224033, 40.02092046779915], [-75.10317007037045, 40.02097241862366], [-75.10314578864238, 40.0210831418571], [-75.10315611454705, 40.02120233779963], [-75.10319501376617, 40.02135672803016], [-75.10326807374527, 40.02153109220913], [-75.10335965788994, 40.02174233905787], [-75.1035865167461, 40.0221965348681], [-75.10365124898982, 40.022328497067704], [-75.10376993748694, 40.02248472580516], [-75.10390069411592, 40.02258750934463], [-75.10409693194785, 40.02280308621844], [-75.10420684398072, 40.02292841226691], [-75.10419313378188, 40.02302403107859], [-75.10419937155955, 40.0231201076988], [-75.10422615514095, 40.02320130771402], [-75.10429208156532, 40.02330259974516], [-75.10438324573097, 40.02339679548704], [-75.10448981833729, 40.02347983364043], [-75.10462705803057, 40.02354439338227], [-75.10480855458879, 40.023604262577635], [-75.1024230166573, 40.02949318557148], [-75.10195887434806, 40.02934196297108], [-75.10156167428505, 40.02918380082311], [-75.10128705513067, 40.0289720841755], [-75.09906469220137, 40.02749807807378]]]}}, {"id": "7370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12714446243086, 40.0517499945417], [-75.12666934586862, 40.05168769416722], [-75.12618668434979, 40.051616262405275], [-75.12575866118469, 40.0515612130172], [-75.12529830543205, 40.05149392534659], [-75.12433636664228, 40.05138159362807], [-75.12342163465625, 40.051255826598315], [-75.12251658636832, 40.05112692097295], [-75.12277702133987, 40.04961430254356], [-75.12303589199668, 40.04818714799974], [-75.12311811404847, 40.047814647662754], [-75.12315707859291, 40.04758132523088], [-75.12320877532723, 40.04724070249147], [-75.12325949511863, 40.04696936426776], [-75.12333940277584, 40.04656545250321], [-75.12343252567005, 40.04604121448975], [-75.1235023266746, 40.04554713840614], [-75.12356660532694, 40.044994142319055], [-75.12364352816455, 40.044445286281785], [-75.12370323161629, 40.043952497466286], [-75.12376584112621, 40.04343900192864], [-75.12384856625496, 40.04291297527701], [-75.12390826084913, 40.04243176165273], [-75.12397774297331, 40.04189472798651], [-75.12403986750705, 40.041368609598], [-75.1241108007864, 40.0408745104706], [-75.1225519578111, 40.040689183048585], [-75.12033160946375, 40.0404009127846], [-75.12043498445308, 40.03988793187012], [-75.11955672523094, 40.03978025236859], [-75.11876750715301, 40.03968652105032], [-75.11801054092834, 40.03959379090564], [-75.11722753225436, 40.039490945751716], [-75.11672716188447, 40.03942956666282], [-75.11469350877786, 40.039065701477355], [-75.11427990082679, 40.03898964670384], [-75.11425014870089, 40.03884252882347], [-75.1142487356538, 40.038750401375246], [-75.11420272836139, 40.038649574724715], [-75.1141160352188, 40.038503685594705], [-75.11409857931179, 40.03837473435773], [-75.11410319589001, 40.03825588381147], [-75.11408860470681, 40.038117404159905], [-75.11404788283444, 40.03800902466463], [-75.11402212652956, 40.03790098860959], [-75.1139219993191, 40.037522632849516], [-75.11386266859212, 40.0373792906528], [-75.11381241943819, 40.03725917994319], [-75.1137419204401, 40.03714627938603], [-75.11361410099974, 40.03696682859716], [-75.11349536452525, 40.03681061013599], [-75.11338012352775, 40.036692843895196], [-75.11326496084212, 40.03657316283834], [-75.11316100665682, 40.036504056939116], [-75.11403140194247, 40.035472603119146], [-75.11461328019617, 40.03479657194471], [-75.11489795401083, 40.0344480299467], [-75.11513512724989, 40.03447968217076], [-75.11547394249487, 40.03451920586586], [-75.11583371765533, 40.03457011622014], [-75.11615336508022, 40.03461643623171], [-75.11650544942219, 40.03465710540937], [-75.11685146188826, 40.03469482398715], [-75.11716343499901, 40.03473588882475], [-75.11755213886096, 40.03479497055524], [-75.12007475167565, 40.035112436465], [-75.12142273542835, 40.03528205370963], [-75.12386086326329, 40.035563736148795], [-75.12395251307039, 40.03484852062137], [-75.12403310722064, 40.03404097915165], [-75.12418810210198, 40.03255273783986], [-75.12534748854145, 40.032908326018976], [-75.12598314561127, 40.033122585588295], [-75.12706004213122, 40.033477949059915], [-75.12813812194852, 40.0338276626433], [-75.12909893597146, 40.03414864853474], [-75.12996771413667, 40.034430870331285], [-75.13088081387585, 40.03474587521162], [-75.13184454399239, 40.035052721926434], [-75.13276532628717, 40.03533772841605], [-75.1335665112153, 40.035626316406706], [-75.13435513859052, 40.03588374814797], [-75.13491719236487, 40.0360488365267], [-75.13601924186796, 40.03629591786183], [-75.13596239568302, 40.03714069095362], [-75.1359172080124, 40.03721491407448], [-75.13579331165975, 40.037460704204015], [-75.13566051505993, 40.037703539013485], [-75.13551964132269, 40.03794392826701], [-75.13539985461783, 40.03818986383155], [-75.13530975823267, 40.038444142866446], [-75.13524186910239, 40.03870228819914], [-75.13519214212045, 40.03896256431206], [-75.1351508380495, 40.03922409987065], [-75.13510640080575, 40.03948519467066], [-75.13505778090732, 40.03974579508309], [-75.13500880438107, 40.040006362132374], [-75.13496233925464, 40.04026715213024], [-75.13492119862019, 40.040528418339036], [-75.13488252571301, 40.040790038958356], [-75.13484452100693, 40.0410518342622], [-75.13480890949876, 40.04131382009847], [-75.13477741194309, 40.04157600140778], [-75.13475175466523, 40.04183839136754], [-75.13473370487289, 40.04210100769038], [-75.13472438816113, 40.04236393907692], [-75.13472182558891, 40.042627129658364], [-75.13472352169212, 40.042890480269094], [-75.13472697741948, 40.04315389256317], [-75.13472969726423, 40.04341726647428], [-75.13472962098656, 40.04368052265935], [-75.13472892805768, 40.043943748583104], [-75.13472835459646, 40.044206977223425], [-75.13472788313881, 40.04447020547966], [-75.13472748898417, 40.044733435492475], [-75.13472715583922, 40.04499666418777], [-75.13472686127587, 40.04525989556012], [-75.13472658669221, 40.045523125581795], [-75.13472630862711, 40.045786354619786], [-75.13472601174911, 40.04604958502804], [-75.13472590134562, 40.046135759857265], [-75.1347256727699, 40.04631281267226], [-75.1347252728087, 40.04657604072672], [-75.13472479198656, 40.04683926783781], [-75.13472421038942, 40.04710249355224], [-75.13472350689706, 40.04736571829014], [-75.13472266045814, 40.04762894067132], [-75.13472165229443, 40.04789216116925], [-75.13472046245599, 40.048155380230874], [-75.13471906989062, 40.04841859647586], [-75.13471592360841, 40.0486818070314], [-75.13470588083467, 40.04893219041025], [-75.13440674322722, 40.04891116535305], [-75.13409180476353, 40.048902587735896], [-75.13375894185535, 40.0488817426885], [-75.1332567119416, 40.048777459670774], [-75.13166128235686, 40.048156268360856], [-75.13140423760464, 40.04940024691916], [-75.13111308760577, 40.050690271010204], [-75.12945227218991, 40.050489274927635], [-75.12858891879509, 40.05036125112049], [-75.12824747591462, 40.051887744051875], [-75.12714446243086, 40.0517499945417]]]}}, {"id": "7380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14804861159351, 40.01834745042115], [-75.14718171411992, 40.01822158662099], [-75.14674207614026, 40.01816830825549], [-75.141842755967, 40.01754526543114], [-75.14076235440827, 40.01741242962785], [-75.14024968966272, 40.017342373698476], [-75.13974978354928, 40.01727754038999], [-75.13911045332391, 40.017188516576056], [-75.13846703853598, 40.017101650623424], [-75.13763970201917, 40.01700490589694], [-75.13681235707244, 40.01690027732512], [-75.13615399991127, 40.01680675916981], [-75.13592411965315, 40.01678028971108], [-75.13558304956146, 40.016735761721314], [-75.13484437013499, 40.01663857260232], [-75.13389576979203, 40.01652956087033], [-75.13299382132521, 40.01641091387685], [-75.13247683593104, 40.0163386448571], [-75.1319817951704, 40.01628024323355], [-75.13139153266953, 40.01619119732399], [-75.13079224052301, 40.01612157929509], [-75.12958420585664, 40.01596204506945], [-75.12950279799507, 40.0158893945626], [-75.1295060820777, 40.01580432267141], [-75.12954449782806, 40.015628823804676], [-75.12969626827335, 40.015025138211094], [-75.12985744154966, 40.01458954235703], [-75.12991212376365, 40.01438165693674], [-75.12995568069938, 40.01421690737463], [-75.13032098038171, 40.012520430993625], [-75.13039457043838, 40.0122046367008], [-75.13058658979985, 40.01132621444333], [-75.13178052756184, 40.01148382640851], [-75.13439360990137, 40.01179259679523], [-75.1358887367984, 40.01043104327948], [-75.13617708233727, 40.01047951381085], [-75.13684683101371, 40.010560273649396], [-75.13746168397694, 40.010638582057894], [-75.13815935184121, 40.01072934820405], [-75.13898727479942, 40.010836322762636], [-75.13981649955595, 40.01094028174158], [-75.14045699145424, 40.01102129045243], [-75.1410933855548, 40.0111042603752], [-75.14158672309158, 40.0111699127295], [-75.14211264092272, 40.01123807168278], [-75.14178660755206, 40.01270991995661], [-75.14232926693204, 40.01279113891428], [-75.14279528639928, 40.012858788197796], [-75.1433203153046, 40.01292742387583], [-75.14647680294615, 40.013343114491526], [-75.14722189137788, 40.013432961843364], [-75.14722884497878, 40.01408140210885], [-75.14791438685396, 40.01392740449221], [-75.14795501083744, 40.0139786146205], [-75.1478365064141, 40.01450755380314], [-75.14983165309977, 40.01476596338327], [-75.15003962572906, 40.01481970269212], [-75.14993222382938, 40.01532671020396], [-75.14983979568106, 40.01567315281484], [-75.14977041330002, 40.01602280409584], [-75.14972718930441, 40.016216009188604], [-75.14958686700786, 40.01693362198721], [-75.1493475064601, 40.017958839322176], [-75.14908973201165, 40.0181106529181], [-75.1484680681646, 40.01840767197671], [-75.14804861159351, 40.01834745042115]]]}}, {"id": "7390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.12909893597146, 40.03414864853474], [-75.12813812194852, 40.0338276626433], [-75.12706004213122, 40.033477949059915], [-75.12598314561127, 40.033122585588295], [-75.12534748854145, 40.032908326018976], [-75.12418810210198, 40.03255273783986], [-75.1242615297526, 40.0316798314733], [-75.12436563680168, 40.03095476487289], [-75.1245304400276, 40.0301880005405], [-75.12470176099916, 40.029399146808075], [-75.12509414742468, 40.027411312523604], [-75.12510247861539, 40.027334876121955], [-75.1251999408352, 40.02683486575879], [-75.12527430620894, 40.02631198921396], [-75.12538707606632, 40.025648973551675], [-75.12541289684687, 40.02550639971717], [-75.12546398521849, 40.02518550922072], [-75.12773023933812, 40.0248465792651], [-75.12828863205314, 40.02472700509781], [-75.13043553193194, 40.02427583568229], [-75.1311676032351, 40.024128287087606], [-75.13255946830762, 40.02393498874043], [-75.13328560210047, 40.02378554621781], [-75.13326111468093, 40.0238967790924], [-75.13320788314832, 40.024145564934464], [-75.13316850018711, 40.02430018863057], [-75.13301086909873, 40.02499780982186], [-75.13283944491678, 40.02578433313788], [-75.13251011366452, 40.0272753508569], [-75.132353179843, 40.02802099829087], [-75.1321754906953, 40.02877322025858], [-75.13183059592654, 40.03032234554205], [-75.13160904957076, 40.03135428719283], [-75.13150816845437, 40.03186826466147], [-75.13139417908607, 40.03235326090929], [-75.13129072350458, 40.032819538815794], [-75.13116347306803, 40.0333930419087], [-75.13088081387585, 40.03474587521162], [-75.12996771413667, 40.034430870331285], [-75.12909893597146, 40.03414864853474]]]}}, {"id": "7400", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.1109623165532, 40.03378042456657], [-75.11086592483, 40.033563319462765], [-75.11083024503537, 40.0334809861199], [-75.11075606505753, 40.03330752991063], [-75.11073180561117, 40.03316115427316], [-75.1107405208493, 40.03306542190741], [-75.11078444721699, 40.03296282191432], [-75.11083246535115, 40.03288334174899], [-75.11086083187242, 40.03279573592071], [-75.11088094445881, 40.03253525806396], [-75.11093395775706, 40.032327343632254], [-75.11098071478231, 40.032151899997615], [-75.11098697635899, 40.031990875782576], [-75.11101877241295, 40.031815089260064], [-75.11105012104336, 40.03165080490753], [-75.11106017740865, 40.031520565969934], [-75.1110655442647, 40.03138254520654], [-75.11108423162239, 40.03128704286119], [-75.11111029413618, 40.03113031110495], [-75.11113104639891, 40.031043888122646], [-75.11114603241961, 40.03098147483674], [-75.11115355423335, 40.030916413112244], [-75.11113733717988, 40.03069155703038], [-75.1111304256763, 40.030484182095286], [-75.11113817749339, 40.03028481815558], [-75.11111815921498, 40.03015772835574], [-75.11104641384301, 40.02994886364824], [-75.11099587582973, 40.02983641975879], [-75.11091824685484, 40.029650443769015], [-75.11088312012737, 40.02952684150518], [-75.11089965592181, 40.0293583793058], [-75.11093346239159, 40.02913083519481], [-75.110963465984, 40.02900105463474], [-75.11101505890687, 40.02882956142872], [-75.11108406824572, 40.0287237002696], [-75.11119944987506, 40.02858053334839], [-75.11128855606445, 40.02847129816967], [-75.1113933681751, 40.02834323816028], [-75.11150271900249, 40.0282267929963], [-75.1116525633503, 40.02809592899173], [-75.11176496213216, 40.02802943822743], [-75.11188540151312, 40.02801301937457], [-75.11201551288957, 40.02800449573766], [-75.11212083880417, 40.02799156515585], [-75.11228720378666, 40.02794933838244], [-75.11241925306783, 40.02789097420533], [-75.11262767431037, 40.027794071584445], [-75.11279310960418, 40.02771153141426], [-75.11288477850178, 40.02760043473574], [-75.11289026279778, 40.02745805116416], [-75.11288284071983, 40.02732048726397], [-75.11284742220191, 40.027038159909495], [-75.11323526065227, 40.02696631162894], [-75.11717408415109, 40.026387182797414], [-75.12228042299785, 40.02565150686943], [-75.12352677108895, 40.02546431519292], [-75.12447140059426, 40.025323467472475], [-75.12546398521849, 40.02518550922072], [-75.12541289684687, 40.02550639971717], [-75.12538707606632, 40.025648973551675], [-75.12527430620894, 40.02631198921396], [-75.1251999408352, 40.02683486575879], [-75.12510247861539, 40.027334876121955], [-75.12509414742468, 40.027411312523604], [-75.12470176099916, 40.029399146808075], [-75.1245304400276, 40.0301880005405], [-75.12436563680168, 40.03095476487289], [-75.1242615297526, 40.0316798314733], [-75.12418810210198, 40.03255273783986], [-75.12403310722064, 40.03404097915165], [-75.12395251307039, 40.03484852062137], [-75.12386086326329, 40.035563736148795], [-75.12142273542835, 40.03528205370963], [-75.12007475167565, 40.035112436465], [-75.11755213886096, 40.03479497055524], [-75.11716343499901, 40.03473588882475], [-75.11685146188826, 40.03469482398715], [-75.11650544942219, 40.03465710540937], [-75.11615336508022, 40.03461643623171], [-75.11583371765533, 40.03457011622014], [-75.11547394249487, 40.03451920586586], [-75.11513512724989, 40.03447968217076], [-75.11489795401083, 40.0344480299467], [-75.11461328019617, 40.03479657194471], [-75.11403140194247, 40.035472603119146], [-75.11316100665682, 40.036504056939116], [-75.11305569974876, 40.036434051292005], [-75.11286185146832, 40.03628378348594], [-75.11271773120262, 40.03613849196673], [-75.11259311624242, 40.03600516240305], [-75.11246381193612, 40.03586404823729], [-75.11234917031798, 40.03573094741304], [-75.11229498148876, 40.03558388308132], [-75.11223007187495, 40.03545576172138], [-75.11217677643165, 40.03528569564004], [-75.11210903928468, 40.035101865293676], [-75.11200088136177, 40.034930539948306], [-75.1118463429548, 40.03479652038135], [-75.1116426742597, 40.03464218637786], [-75.11147771551177, 40.03451943936245], [-75.11131878745127, 40.034369970957016], [-75.11118435201018, 40.034232574807], [-75.11110976725047, 40.03409655366053], [-75.11105961613627, 40.033989029395414], [-75.1109623165532, 40.03378042456657]]]}}, {"id": "7430", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.06582704066194, 40.022829713864425], [-75.0651918913363, 40.02210515175155], [-75.0642976684409, 40.02107469328656], [-75.06368423489864, 40.02039292136493], [-75.06358848374596, 40.020322696550465], [-75.0634198291396, 40.02004287509226], [-75.06330301920873, 40.0199391862737], [-75.06249567396762, 40.01901613855505], [-75.06159650213483, 40.01799493818623], [-75.06065911296884, 40.01693317004281], [-75.05979914210195, 40.01594287272425], [-75.05889250801464, 40.014906966560616], [-75.05840033380261, 40.01434703578137], [-75.05784818069887, 40.013855847350165], [-75.05745743132746, 40.01350819366441], [-75.05729957020579, 40.01336760087576], [-75.05840701069471, 40.012781407430175], [-75.0586413312302, 40.01264885011602], [-75.05870638958133, 40.012612046410936], [-75.0600487730266, 40.011871081883434], [-75.06060679456483, 40.01156180339749], [-75.06097907480788, 40.011348487442554], [-75.06111667530679, 40.01126964195205], [-75.06231500458891, 40.01061667402492], [-75.0631592477611, 40.010222688814515], [-75.06426957195231, 40.009818299872826], [-75.06498019864055, 40.00957801634341], [-75.0657896484993, 40.00937412646459], [-75.06644883807276, 40.00924134697554], [-75.06761142282602, 40.009043480693656], [-75.06855645825688, 40.00885047847092], [-75.06889642394414, 40.0087888431993], [-75.06935185290021, 40.00868334693537], [-75.06970553402357, 40.00856782818408], [-75.06996509431009, 40.00847313292842], [-75.0704122559228, 40.00830999264732], [-75.07132799723937, 40.00794526456718], [-75.07226424118629, 40.00749422369687], [-75.07301414228317, 40.007088776220634], [-75.07368924273725, 40.006662615189924], [-75.07376939852078, 40.0066120160638], [-75.07391251175505, 40.00650694504352], [-75.074351815402, 40.0061844142656], [-75.07485107783086, 40.005801807302255], [-75.07539923571521, 40.00531395235073], [-75.07561777720912, 40.00513489052452], [-75.07571836824512, 40.00505247012691], [-75.0761923864628, 40.00462210010124], [-75.07672432017941, 40.00407046320036], [-75.07706342789717, 40.00369919122315], [-75.07723263993341, 40.00371552387754], [-75.07734549370338, 40.00372734461546], [-75.07742300443158, 40.00376172806825], [-75.07744727049445, 40.00392972355172], [-75.07747768474579, 40.00414030389461], [-75.07759312910837, 40.00469933736335], [-75.07774943992962, 40.00538417646413], [-75.07789180735155, 40.0060630276795], [-75.07804757869613, 40.00673401275043], [-75.07819554814382, 40.00741205761696], [-75.07833295323039, 40.00806746009549], [-75.07844817158372, 40.008587325110916], [-75.07847826246463, 40.008723089506965], [-75.07861364295223, 40.00935524799101], [-75.07874968635451, 40.00987955810453], [-75.07888283118169, 40.010028942497485], [-75.07928033188941, 40.01041011679957], [-75.07850491868784, 40.01073249149751], [-75.07831364702156, 40.01082038927243], [-75.07705894581584, 40.01133352361732], [-75.07622634718078, 40.011676965469704], [-75.07522940795765, 40.0121026927516], [-75.0732958299355, 40.012544988908715], [-75.07263028656905, 40.01269070974734], [-75.07184515773078, 40.01285876208922], [-75.07108902366078, 40.01301909786802], [-75.0704302429624, 40.01316878168165], [-75.07086519651371, 40.014354069188656], [-75.07105511498045, 40.01485517334384], [-75.07121600444587, 40.015290208483194], [-75.07129561130252, 40.01547628208808], [-75.07146018939343, 40.01592034300228], [-75.07164698160777, 40.016426323339644], [-75.07184777398788, 40.01695356105951], [-75.07217711141486, 40.01780815616435], [-75.07239528427003, 40.01837077919597], [-75.0725767335006, 40.018869237302596], [-75.0726472240869, 40.01893074978055], [-75.07302026297972, 40.01925666717689], [-75.07329423625396, 40.019530663540294], [-75.07338094307251, 40.01965571477877], [-75.07333431412346, 40.01971039962692], [-75.07281645032124, 40.01998177475131], [-75.07227204176523, 40.02024986964836], [-75.07063667030565, 40.02109944245052], [-75.06915891028082, 40.02186413973909], [-75.06908841755269, 40.02190558456266], [-75.06747816671317, 40.02274087219851], [-75.06628126765678, 40.02335211348504], [-75.06582704066194, 40.022829713864425]]]}}, {"id": "7440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13178052756184, 40.01148382640851], [-75.13058658979985, 40.01132621444333], [-75.13076933610816, 40.010429891484755], [-75.13122229503595, 40.00838998153134], [-75.13128895844574, 40.0082654424629], [-75.13157556350811, 40.006918297371676], [-75.13159329869447, 40.006777230208], [-75.13195017894888, 40.0051571594535], [-75.1323393000563, 40.005147432728876], [-75.13268120165456, 40.005131878874295], [-75.1330212513291, 40.00510594253852], [-75.13335888197858, 40.0050626585146], [-75.13369357562595, 40.00500497218568], [-75.13402486017198, 40.00493889706954], [-75.13435250240111, 40.004861512171956], [-75.13467397684518, 40.004771398547945], [-75.1349895542347, 40.004669614814944], [-75.13530090626963, 40.00455963199797], [-75.13560909369671, 40.00444496665626], [-75.1359157518846, 40.00432808881714], [-75.13622149461732, 40.00420973238526], [-75.13652667478337, 40.00409046944232], [-75.13683165251034, 40.003970866824645], [-75.13713677708644, 40.0038514992271], [-75.13744240731118, 40.00373293795305], [-75.13766927943385, 40.00364619730299], [-75.1377488996158, 40.00361575514893], [-75.13805660933845, 40.00350052113034], [-75.1383656919968, 40.0033874881072], [-75.13867532541023, 40.00327533899265], [-75.13898533409136, 40.00316379317689], [-75.13929567189308, 40.00305277121833], [-75.13960628994526, 40.00294220352529], [-75.13988662155539, 40.002842828195924], [-75.1402281822031, 40.00272211317395], [-75.14053936145434, 40.002612439684974], [-75.14085063459378, 40.002502917979676], [-75.1411619520598, 40.00239346583894], [-75.14147326507981, 40.002284010973575], [-75.14178453204205, 40.00217447765325], [-75.1420957018997, 40.00206479173606], [-75.14241335513279, 40.00195252307149], [-75.14271756308496, 40.001844650614025], [-75.14302815937185, 40.00173404638711], [-75.14333847105587, 40.0016229852707], [-75.14364845063128, 40.00151139230492], [-75.14379809293565, 40.00145585389514], [-75.14406451756503, 40.00191290723567], [-75.14412366322766, 40.00215922659642], [-75.1440384135838, 40.00223426474612], [-75.14374365394839, 40.00358293398834], [-75.14350127331724, 40.00355156369469], [-75.14329364986786, 40.00352469250323], [-75.1431399324757, 40.00428493094099], [-75.1433015921368, 40.00472237755151], [-75.14343826047002, 40.005072838644516], [-75.14309801736401, 40.00656380658327], [-75.14306343435318, 40.006722226308], [-75.14277427561711, 40.0080455913732], [-75.14277295786349, 40.00815499045495], [-75.14276347100015, 40.00826978854965], [-75.14243880955175, 40.00974402913456], [-75.14211264092272, 40.01123807168278], [-75.14158672309158, 40.0111699127295], [-75.1410933855548, 40.0111042603752], [-75.14045699145424, 40.01102129045243], [-75.13981649955595, 40.01094028174158], [-75.13898727479942, 40.010836322762636], [-75.13815935184121, 40.01072934820405], [-75.13746168397694, 40.010638582057894], [-75.13684683101371, 40.010560273649396], [-75.13617708233727, 40.01047951381085], [-75.1358887367984, 40.01043104327948], [-75.13439360990137, 40.01179259679523], [-75.13178052756184, 40.01148382640851]]]}}, {"id": "7460", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.0751487380651, 40.0334466456309], [-75.07506078615849, 40.03334997800687], [-75.07493564475371, 40.03325772149568], [-75.07483287179262, 40.03320326733209], [-75.07382568190619, 40.0326454257203], [-75.07360561234455, 40.03251822982968], [-75.07356021353532, 40.03244577064569], [-75.07355461850688, 40.032363421145035], [-75.07369253848567, 40.03210840218186], [-75.07386962085366, 40.03176463032088], [-75.07351393530942, 40.031555013912985], [-75.07304390892638, 40.03129574371874], [-75.06618493810203, 40.026915548478], [-75.06709032771728, 40.02677730779543], [-75.06795748719205, 40.026584067667095], [-75.06783721579384, 40.02649206348795], [-75.06668295259375, 40.02584138355716], [-75.06651979223467, 40.02580581909264], [-75.06629341432797, 40.025612034155614], [-75.06599609412177, 40.02529122842685], [-75.06543718559958, 40.02464211242266], [-75.06497094787639, 40.02411046962777], [-75.06491395782366, 40.02406163942987], [-75.06628126765678, 40.02335211348504], [-75.06747816671317, 40.02274087219851], [-75.06908841755269, 40.02190558456266], [-75.06976502199616, 40.02238877796283], [-75.07019764577667, 40.0227256137045], [-75.07333312714907, 40.025290965734875], [-75.07336441926067, 40.02537013618446], [-75.07494510576818, 40.02669246215147], [-75.07514229652037, 40.02684967008404], [-75.0753671940858, 40.027039098136406], [-75.07548899291868, 40.027072748600645], [-75.07563722211042, 40.02708182314514], [-75.07677420640991, 40.027382718225276], [-75.07721471049769, 40.02749290128267], [-75.077862216485, 40.02787088057335], [-75.07847393502698, 40.02820917789621], [-75.07908101722236, 40.0285537217213], [-75.0796932647578, 40.02889532236388], [-75.07998518405103, 40.029061425175044], [-75.08028492634173, 40.02923217101581], [-75.08078735737097, 40.02951759989224], [-75.08086693407104, 40.02955704706404], [-75.08263572791671, 40.03056433012943], [-75.08336080567985, 40.030970773680785], [-75.08368317740005, 40.03115517912689], [-75.08410591451434, 40.03139699477768], [-75.08419874170141, 40.03143968991069], [-75.08411167142378, 40.03161919193568], [-75.08408993092331, 40.03182185063179], [-75.08394974653352, 40.031864818843445], [-75.08380562658093, 40.03190043045333], [-75.08210904612866, 40.03222753624818], [-75.08200440584257, 40.0322584952175], [-75.08190521436933, 40.032282428233174], [-75.08177593009637, 40.032308839996325], [-75.0807438478966, 40.03253982344368], [-75.07744388361579, 40.033296176686676], [-75.07697795937855, 40.033397972680206], [-75.07529951176552, 40.033783704283984], [-75.07525130271337, 40.033661436635455], [-75.0751487380651, 40.0334466456309]]]}}, {"id": "7470", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05208174231397, 40.008573090436336], [-75.05092040548402, 40.00762418782804], [-75.05171102487331, 40.00699052937543], [-75.05273115891607, 40.00587339173539], [-75.05286953850623, 40.00563262986873], [-75.05435578267345, 40.003506885229285], [-75.05583164346423, 40.00125303629413], [-75.05668629664696, 39.999826352086515], [-75.05780413005665, 39.99784310027683], [-75.05881910641546, 39.99571927354719], [-75.05970259490692, 39.99346518181533], [-75.06072971978588, 39.99128939547064], [-75.06188994108325, 39.98931317828346], [-75.06261398611377, 39.988156275924574], [-75.06318390315069, 39.987342386672054], [-75.06394667821834, 39.98635801654672], [-75.0658800303735, 39.98470263060473], [-75.06673233459081, 39.984077215184996], [-75.06801544056256, 39.983135647058376], [-75.06939234949564, 39.981999197175654], [-75.07119989534809, 39.98073692359423], [-75.07323149967826, 39.979559390007445], [-75.07582271389332, 39.97834714035105], [-75.07769511402647, 39.97766051920748], [-75.08020200314922, 39.976930913778155], [-75.0825218917569, 39.976405694465285], [-75.08388364024222, 39.97614531542582], [-75.08558580969047, 39.97581981932251], [-75.08639109414254, 39.97566581927241], [-75.08795354905344, 39.975394673214204], [-75.08875616864948, 39.97525537833003], [-75.08930543909275, 39.97516004931649], [-75.08995641164408, 39.97504706505385], [-75.09096716599848, 39.97487162821714], [-75.0918136615686, 39.974724695193586], [-75.09289956921116, 39.9745361937343], [-75.09383959244585, 39.97437300792721], [-75.09767082904573, 39.97868529405697], [-75.09781795705604, 39.978853892130346], [-75.09964353338965, 39.98094576036583], [-75.0977377844456, 39.98194860579929], [-75.09761931635884, 39.982038241118104], [-75.09756005515227, 39.98211647076], [-75.0975276988675, 39.98219641877843], [-75.09752391315574, 39.98228957134906], [-75.09755217888296, 39.98238358003735], [-75.09760309687782, 39.98245354641823], [-75.09801763882122, 39.98292553606918], [-75.09821728078147, 39.983169049746955], [-75.09837805625185, 39.98336515270572], [-75.09900069277896, 39.98412460010107], [-75.09902737391457, 39.984229177837655], [-75.09905443550399, 39.984301895643185], [-75.09929255809479, 39.98457239187227], [-75.09950187343875, 39.984818019578746], [-75.09971429588026, 39.98505640311517], [-75.09977805216607, 39.98513090516478], [-75.10006751175682, 39.985454054005835], [-75.10028673505134, 39.98570433479536], [-75.10055278579604, 39.98600231567193], [-75.10091213494115, 39.986417209646824], [-75.10128194017628, 39.98682304051875], [-75.10160177835962, 39.98718808060266], [-75.10192236638139, 39.98754938871042], [-75.10227797698829, 39.98795138084919], [-75.1026223447675, 39.98834975160094], [-75.10305060635831, 39.98882263068709], [-75.10348311015099, 39.989312388500096], [-75.10390372468184, 39.989797541868775], [-75.1016035551865, 39.99099546766221], [-75.09930174421098, 39.99218683465115], [-75.09700726018444, 39.99340093093542], [-75.09555908145178, 39.99409568671221], [-75.09452368021225, 39.994604333014706], [-75.0920722662799, 39.99589576298429], [-75.08946670816803, 39.997270276066914], [-75.08708989422199, 39.99851975337438], [-75.08650317560277, 39.99882817507667], [-75.08637219053867, 39.99889668903513], [-75.08513260283303, 39.99954507122644], [-75.08482491742816, 39.99970600691798], [-75.08363918980993, 40.00032618625841], [-75.08168151580726, 40.00134991509014], [-75.07978287508426, 40.00233899747106], [-75.07925832998944, 40.0027283673608], [-75.07870570437166, 40.00316245077873], [-75.0777073161663, 40.00398457483515], [-75.07747768474579, 40.00414030389461], [-75.07744727049445, 40.00392972355172], [-75.07742300443158, 40.00376172806825], [-75.07734549370338, 40.00372734461546], [-75.07723263993341, 40.00371552387754], [-75.07706342789717, 40.00369919122315], [-75.07672432017941, 40.00407046320036], [-75.0761923864628, 40.00462210010124], [-75.07571836824512, 40.00505247012691], [-75.07561777720912, 40.00513489052452], [-75.07539923571521, 40.00531395235073], [-75.07485107783086, 40.005801807302255], [-75.074351815402, 40.0061844142656], [-75.07391251175505, 40.00650694504352], [-75.07376939852078, 40.0066120160638], [-75.07368924273725, 40.006662615189924], [-75.07301414228317, 40.007088776220634], [-75.07226424118629, 40.00749422369687], [-75.07132799723937, 40.00794526456718], [-75.0704122559228, 40.00830999264732], [-75.06996509431009, 40.00847313292842], [-75.06970553402357, 40.00856782818408], [-75.06935185290021, 40.00868334693537], [-75.06889642394414, 40.0087888431993], [-75.06855645825688, 40.00885047847092], [-75.06761142282602, 40.009043480693656], [-75.06644883807276, 40.00924134697554], [-75.0657896484993, 40.00937412646459], [-75.06498019864055, 40.00957801634341], [-75.06426957195231, 40.009818299872826], [-75.0631592477611, 40.010222688814515], [-75.06231500458891, 40.01061667402492], [-75.06111667530679, 40.01126964195205], [-75.06097907480788, 40.011348487442554], [-75.06060679456483, 40.01156180339749], [-75.0600487730266, 40.011871081883434], [-75.05870638958133, 40.012612046410936], [-75.0586413312302, 40.01264885011602], [-75.05840701069471, 40.012781407430175], [-75.05729957020579, 40.01336760087576], [-75.05401718703848, 40.010002054559614], [-75.05208174231397, 40.008573090436336]]]}}, {"id": "7490", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14250966589323, 40.05691042371588], [-75.142849374825, 40.055358526745394], [-75.1429815662819, 40.05478955328133], [-75.14307327307765, 40.05435604650704], [-75.14319193942907, 40.05381063214488], [-75.14357057108192, 40.05229749911938], [-75.14356956884698, 40.05211776363833], [-75.14360727865454, 40.05182697464946], [-75.14371846407764, 40.05130204420223], [-75.14384251662177, 40.05077213551278], [-75.14388950527827, 40.05072105229967], [-75.14400246680357, 40.05013417813268], [-75.14416856197187, 40.04988720936273], [-75.1449594702503, 40.048681907740466], [-75.14505541602155, 40.048546456430095], [-75.14514845117893, 40.04840811255315], [-75.14524213250647, 40.04825292700271], [-75.1453205598177, 40.04811425177652], [-75.14538930108704, 40.04796252007741], [-75.14543723983196, 40.04782781267246], [-75.14548093715094, 40.04761805154559], [-75.14550820155128, 40.047415603523135], [-75.14550656707368, 40.04723247677593], [-75.14547666751128, 40.047031947533014], [-75.1454080210859, 40.04673127633197], [-75.14528147732689, 40.046185509948074], [-75.14646875550979, 40.04622407338927], [-75.14751948857638, 40.0462558432871], [-75.14807370799431, 40.046273052569106], [-75.1486563555371, 40.04629196163454], [-75.15068101521854, 40.04635332723772], [-75.15082915483441, 40.04653858372858], [-75.15096808613218, 40.046768835694195], [-75.15103283505383, 40.046951987093884], [-75.15108319635144, 40.047121440951564], [-75.15104529347037, 40.04747366855939], [-75.1509824795425, 40.047815942160376], [-75.15091417024898, 40.04811018793448], [-75.15082167575875, 40.04851954731878], [-75.15062969401944, 40.04941735934156], [-75.15047695034879, 40.050072214971735], [-75.15127702118768, 40.05017532996552], [-75.15198400138559, 40.05026771590411], [-75.15310149329383, 40.05041353940018], [-75.15392188456589, 40.05045250401035], [-75.15461967306605, 40.05047573996834], [-75.15544804124193, 40.050509287563564], [-75.15535591337611, 40.05184994789018], [-75.1552727968388, 40.05311415506475], [-75.15521592846608, 40.053923630467544], [-75.15555586975394, 40.054075078255536], [-75.15648768589912, 40.054521088248016], [-75.1569513074915, 40.05473349141708], [-75.15717617792004, 40.054836323074866], [-75.15755804003476, 40.05503537344851], [-75.15734391588596, 40.05500402290393], [-75.15707432565118, 40.05499793881807], [-75.15687116994677, 40.05500430723925], [-75.1560470623377, 40.05497328117998], [-75.15515761227925, 40.054931499250564], [-75.1544823906462, 40.05490508326544], [-75.15427280751227, 40.05489519893428], [-75.15352367677063, 40.05485939020831], [-75.15272476251467, 40.0548265057077], [-75.1520020482651, 40.05478800632502], [-75.15129522267308, 40.05474719746728], [-75.15055867809859, 40.0547066975397], [-75.15028778825528, 40.05469086503768], [-75.14970524572563, 40.054650322238786], [-75.14947845840086, 40.05621888382296], [-75.1493745648853, 40.05692594612495], [-75.14928970147974, 40.057520987693955], [-75.1488934058613, 40.05750020952185], [-75.1481699920398, 40.057460071497545], [-75.14725984277771, 40.05740806357222], [-75.14645605826058, 40.057355261951244], [-75.14566060047844, 40.05731506035911], [-75.14497247347106, 40.05722578016407], [-75.14424547963077, 40.057129558564995], [-75.14341668112358, 40.05702643560121], [-75.14330940927842, 40.05701141820891], [-75.14250966589323, 40.05691042371588]]]}}, {"id": "7500", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.11281268095597, 40.026880239703914], [-75.11278223350453, 40.02664258597819], [-75.11276124831959, 40.02641186400716], [-75.11273721167133, 40.02625973722888], [-75.11269694601232, 40.026139855005376], [-75.11264127307359, 40.026031131377025], [-75.11253997405726, 40.025940546364005], [-75.11239743559263, 40.025883550536044], [-75.11219565173879, 40.02580984284168], [-75.11201306961777, 40.02575576420475], [-75.11184485327558, 40.02571736433789], [-75.11162389969851, 40.02568734496481], [-75.11145717538353, 40.02561060483848], [-75.11136771254505, 40.02547232346244], [-75.11138100554518, 40.025322974135], [-75.11139530336182, 40.02521202095638], [-75.11145649869287, 40.02492178887383], [-75.11151724422533, 40.024771608827905], [-75.11155118858731, 40.024668781106776], [-75.11155111853812, 40.02454214695341], [-75.11152217264079, 40.02438798964436], [-75.11146539218102, 40.02417946886957], [-75.11140146858001, 40.0238978752842], [-75.11136284617542, 40.02373581970001], [-75.11137275171805, 40.023609414750425], [-75.11133144784338, 40.02351637049445], [-75.11125308109845, 40.02334956411429], [-75.11118647596466, 40.023254281404995], [-75.11110177526518, 40.02313311519714], [-75.11103099730558, 40.023027881026636], [-75.11100130792074, 40.0228928929837], [-75.11099007363472, 40.02279670032437], [-75.11094118311102, 40.022642083552036], [-75.11085179972112, 40.02250188607569], [-75.11070048985525, 40.02241398644175], [-75.11043418841447, 40.022331119294705], [-75.11018165557297, 40.02227926614272], [-75.10997370141887, 40.022236111394484], [-75.10981502257131, 40.022209440059875], [-75.10968715675077, 40.02216045205417], [-75.10936860306877, 40.02213777806876], [-75.10908257018968, 40.022177247355486], [-75.10879579097849, 40.022235887123955], [-75.10861343267538, 40.02230460133006], [-75.10846947746545, 40.022412571771106], [-75.10816720392039, 40.02261283534436], [-75.10807862273626, 40.022708648478115], [-75.10808940525057, 40.02281634179531], [-75.10803565669126, 40.022914876376085], [-75.10792281385686, 40.02299286475194], [-75.10778154248753, 40.02303182489346], [-75.10768455448083, 40.02308715380358], [-75.10751425639339, 40.023102421663594], [-75.1073729845967, 40.02314138040217], [-75.1072096770473, 40.023233555827986], [-75.10704424584219, 40.02331608887378], [-75.10686065894835, 40.02335215568997], [-75.10673673617148, 40.02333011580817], [-75.10659934434501, 40.02326939441552], [-75.10646255127769, 40.02319333576283], [-75.10631124672449, 40.02310543037679], [-75.10613545565268, 40.02300544943703], [-75.10605247374939, 40.02295749164282], [-75.10584846396745, 40.022941281788675], [-75.10566863995791, 40.022944815986456], [-75.10543678370175, 40.023002793046025], [-75.10518210647984, 40.02339025508062], [-75.10508763662361, 40.02350895536784], [-75.1049143487351, 40.02360089684679], [-75.10480855458879, 40.023604262577635], [-75.10462705803057, 40.02354439338227], [-75.10448981833729, 40.02347983364043], [-75.10438324573097, 40.02339679548704], [-75.10429208156532, 40.02330259974516], [-75.10422615514095, 40.02320130771402], [-75.10419937155955, 40.0231201076988], [-75.10419313378188, 40.02302403107859], [-75.10420684398072, 40.02292841226691], [-75.10409693194785, 40.02280308621844], [-75.10390069411592, 40.02258750934463], [-75.10376993748694, 40.02248472580516], [-75.10365124898982, 40.022328497067704], [-75.1035865167461, 40.0221965348681], [-75.10335965788994, 40.02174233905787], [-75.10326807374527, 40.02153109220913], [-75.10319501376617, 40.02135672803016], [-75.10315611454705, 40.02120233779963], [-75.10314578864238, 40.0210831418571], [-75.10317007037045, 40.02097241862366], [-75.10324696224033, 40.02092046779915], [-75.1033671849326, 40.02084992359056], [-75.10344906506903, 40.02072942262346], [-75.10349786087525, 40.02056161716755], [-75.10354663582343, 40.02039388960434], [-75.10359316270015, 40.02023388882772], [-75.1036570026035, 40.01987656897237], [-75.10369705860172, 40.01965930618886], [-75.10373741520444, 40.01952793403622], [-75.10383544166106, 40.019430651520175], [-75.10399315033166, 40.01937884526158], [-75.10417631965316, 40.01934652461066], [-75.10490885747714, 40.01934702238403], [-75.10514063362046, 40.01932905063636], [-75.10533590146107, 40.01928062696204], [-75.10548898171467, 40.01920460947764], [-75.10558162665019, 40.019114922541654], [-75.10567101752486, 40.01896577809034], [-75.10575625037828, 40.018839218600135], [-75.10586011859452, 40.01878112960109], [-75.10602757994306, 40.01868922492428], [-75.10629411473795, 40.01857817906554], [-75.10654007144916, 40.018490600181316], [-75.10672341291877, 40.01841166013801], [-75.10688632285866, 40.018352409187465], [-75.10702670300225, 40.01828255869556], [-75.10713174797101, 40.01819425525665], [-75.10725067393167, 40.01808611062809], [-75.10740250262029, 40.01789052115543], [-75.1074492879232, 40.01778323623494], [-75.1075019453263, 40.01760930469143], [-75.1075484926834, 40.01742389303715], [-75.10753986399301, 40.0172246106732], [-75.1074969191298, 40.0170648597228], [-75.10743534731849, 40.016962640715306], [-75.10733477456357, 40.0168519653075], [-75.10721337838702, 40.01677104914463], [-75.10706904288469, 40.016693842391774], [-75.10774566743571, 40.016581861972575], [-75.1079566960431, 40.01649243760471], [-75.10902514328343, 40.01628798447145], [-75.11136051115065, 40.01586805552725], [-75.11319772024986, 40.01553363305251], [-75.11747690485849, 40.015784203074695], [-75.11757219048913, 40.01558324450789], [-75.11944047531844, 40.01302705559972], [-75.12146940260696, 40.01015438751697], [-75.1233245784329, 40.00755692677894], [-75.12339320057532, 40.007418611434275], [-75.1234268932234, 40.007213386785665], [-75.12394932729268, 40.0048150263638], [-75.12413815881776, 40.004830317442874], [-75.12447874922599, 40.0048561241479], [-75.12481960245576, 40.004880381575894], [-75.12516067340198, 40.00490328601852], [-75.12550191799478, 40.00492503739572], [-75.12584329110216, 40.004945832900546], [-75.12618475093373, 40.004965874307906], [-75.1265262525044, 40.00498535521095], [-75.12686775392743, 40.005004480086335], [-75.12720920671373, 40.00502344244802], [-75.12755058678738, 40.005042349869555], [-75.12787293070507, 40.00505914287225], [-75.12823372347772, 40.00507655443872], [-75.12857548972254, 40.00509169232322], [-75.12891735401352, 40.005105659191635], [-75.1292592889243, 40.00511855803528], [-75.12960127164347, 40.005130493753214], [-75.12994327233797, 40.005141571084394], [-75.13028526365714, 40.00515189122062], [-75.13062734388893, 40.00516042473138], [-75.13096967892228, 40.0051647840814], [-75.1313120905648, 40.005165243621754], [-75.13165438461807, 40.00516218906765], [-75.13195017894888, 40.0051571594535], [-75.13159329869447, 40.006777230208], [-75.13157556350811, 40.006918297371676], [-75.13128895844574, 40.0082654424629], [-75.13122229503595, 40.00838998153134], [-75.13076933610816, 40.010429891484755], [-75.13058658979985, 40.01132621444333], [-75.13039457043838, 40.0122046367008], [-75.13032098038171, 40.012520430993625], [-75.12995568069938, 40.01421690737463], [-75.12991212376365, 40.01438165693674], [-75.12985744154966, 40.01458954235703], [-75.12969626827335, 40.015025138211094], [-75.12954449782806, 40.015628823804676], [-75.1295060820777, 40.01580432267141], [-75.12950279799507, 40.0158893945626], [-75.12958420585664, 40.01596204506945], [-75.12816782747261, 40.01727601049683], [-75.12773597041543, 40.01780744067364], [-75.12728008257253, 40.01855118772663], [-75.12717014834826, 40.0187202445289], [-75.12841230851205, 40.01888818420382], [-75.12828942424522, 40.01931224639612], [-75.12817272187972, 40.019745126505015], [-75.12805743325659, 40.02016776351229], [-75.12793752006728, 40.02058217569274], [-75.12782553628675, 40.02100974360595], [-75.12772254870809, 40.02143541478058], [-75.12766722191142, 40.021678075942006], [-75.1275883473653, 40.02193652409814], [-75.12799561695972, 40.021990003261664], [-75.12832997980297, 40.02203750959046], [-75.1288388007593, 40.02209552698992], [-75.13067747059611, 40.0223264212425], [-75.13165534349513, 40.022466545626095], [-75.13266657267638, 40.02260530897158], [-75.13351806873054, 40.02269961384838], [-75.13517364017464, 40.02288937907387], [-75.13568333923226, 40.02295388314234], [-75.13606727037968, 40.022993869695384], [-75.13593982391987, 40.023051045166966], [-75.13549018536642, 40.023223266760084], [-75.13500172747884, 40.023376356045276], [-75.13433030569912, 40.02355568546947], [-75.13328560210047, 40.02378554621781], [-75.13255946830762, 40.02393498874043], [-75.1311676032351, 40.024128287087606], [-75.13043553193194, 40.02427583568229], [-75.12828863205314, 40.02472700509781], [-75.12773023933812, 40.0248465792651], [-75.12546398521849, 40.02518550922072], [-75.12447140059426, 40.025323467472475], [-75.12352677108895, 40.02546431519292], [-75.12228042299785, 40.02565150686943], [-75.11717408415109, 40.026387182797414], [-75.11323526065227, 40.02696631162894], [-75.11284742220191, 40.027038159909495], [-75.11281268095597, 40.026880239703914]]]}}, {"id": "7510", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14795501083744, 40.0139786146205], [-75.14791438685396, 40.01392740449221], [-75.14722884497878, 40.01408140210885], [-75.14722189137788, 40.013432961843364], [-75.14647680294615, 40.013343114491526], [-75.1433203153046, 40.01292742387583], [-75.14279528639928, 40.012858788197796], [-75.14232926693204, 40.01279113891428], [-75.14178660755206, 40.01270991995661], [-75.14211264092272, 40.01123807168278], [-75.14243880955175, 40.00974402913456], [-75.14276347100015, 40.00826978854965], [-75.14277295786349, 40.00815499045495], [-75.14277427561711, 40.0080455913732], [-75.14306343435318, 40.006722226308], [-75.14309801736401, 40.00656380658327], [-75.14343826047002, 40.005072838644516], [-75.1433015921368, 40.00472237755151], [-75.1431399324757, 40.00428493094099], [-75.14329364986786, 40.00352469250323], [-75.14350127331724, 40.00355156369469], [-75.14374365394839, 40.00358293398834], [-75.1440384135838, 40.00223426474612], [-75.14412366322766, 40.00215922659642], [-75.14406451756503, 40.00191290723567], [-75.14379809293565, 40.00145585389514], [-75.14395805176184, 40.00139919255699], [-75.14426722590736, 40.0012863074405], [-75.1445759199824, 40.00117265466236], [-75.14488409738829, 40.00105818023578], [-75.14519180816691, 40.00094295377832], [-75.14549910383906, 40.00082706746568], [-75.1458060431573, 40.00071060823121], [-75.14611268015865, 40.00059366380154], [-75.14641907001749, 40.00047632282946], [-75.14672526660064, 40.00035867754171], [-75.14703132763313, 40.000240811241575], [-75.14733730812034, 40.00012281708132], [-75.14764326110743, 40.00000477825697], [-75.14771857637933, 39.999975736496935], [-75.14794924507942, 39.99988678889942], [-75.14825531418532, 39.99976893403054], [-75.14856152357349, 39.999651303199265], [-75.1488679272919, 39.99953398412696], [-75.14917458286699, 39.99941706551422], [-75.14948154428005, 39.9993006368818], [-75.14978886678787, 39.99918478507549], [-75.15002142288795, 39.99909774129665], [-75.15009660788598, 39.99906959969441], [-75.15040478837375, 39.99895511904876], [-75.15071319988314, 39.99884100233675], [-75.15102177807661, 39.998727155294766], [-75.15133051435075, 39.998613557904264], [-75.15163939531651, 39.99850019274151], [-75.151948411096, 39.99838704246226], [-75.15225754960804, 39.99827408606865], [-75.1525667984611, 39.998161310664905], [-75.15287614918813, 39.998048692632175], [-75.15318558709062, 39.99793621812171], [-75.15349510235843, 39.997823867989524], [-75.15378676915165, 39.997718116984636], [-75.15360944500394, 39.99851659723753], [-75.15356617822117, 39.99872491882124], [-75.15351676429032, 39.99894368200813], [-75.15343043501113, 39.99932290234036], [-75.1533756429784, 39.999535716947804], [-75.15327178153623, 40.000005964225274], [-75.15292652250417, 40.00159394177207], [-75.15255074890221, 40.00318283825957], [-75.15223616898231, 40.00469095826975], [-75.1519215609655, 40.00616852257761], [-75.15160350639509, 40.007666561375814], [-75.15145388577758, 40.008304667680875], [-75.15136965214894, 40.0087285626357], [-75.15124691791851, 40.00928023079825], [-75.15109155559469, 40.009935608153896], [-75.15088384543449, 40.01083838502309], [-75.15057380008965, 40.01237154180903], [-75.15039513654646, 40.01316714443147], [-75.15024565919153, 40.01376307611625], [-75.15021373801147, 40.013916741078155], [-75.1500965005928, 40.014569226117416], [-75.15007096763034, 40.01468167354025], [-75.15003962572906, 40.01481970269212], [-75.14983165309977, 40.01476596338327], [-75.1478365064141, 40.01450755380314], [-75.14795501083744, 40.0139786146205]]]}}, {"id": "7530", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.14077361287495, 40.06415244752091], [-75.14092963782336, 40.06409383361448], [-75.14117039658525, 40.06301326034312], [-75.14151288719079, 40.061468595416784], [-75.14184320184367, 40.059949195387794], [-75.14218360676519, 40.05842583390503], [-75.14229230921642, 40.057942274324425], [-75.14250966589323, 40.05691042371588], [-75.14330940927842, 40.05701141820891], [-75.14341668112358, 40.05702643560121], [-75.14424547963077, 40.057129558564995], [-75.14497247347106, 40.05722578016407], [-75.14566060047844, 40.05731506035911], [-75.14645605826058, 40.057355261951244], [-75.14725984277771, 40.05740806357222], [-75.1481699920398, 40.057460071497545], [-75.1488934058613, 40.05750020952185], [-75.14928970147974, 40.057520987693955], [-75.1493745648853, 40.05692594612495], [-75.14947845840086, 40.05621888382296], [-75.14970524572563, 40.054650322238786], [-75.15028778825528, 40.05469086503768], [-75.15055867809859, 40.0547066975397], [-75.15129522267308, 40.05474719746728], [-75.1520020482651, 40.05478800632502], [-75.15272476251467, 40.0548265057077], [-75.15352367677063, 40.05485939020831], [-75.15427280751227, 40.05489519893428], [-75.1544823906462, 40.05490508326544], [-75.15515761227925, 40.054931499250564], [-75.1560470623377, 40.05497328117998], [-75.15687116994677, 40.05500430723925], [-75.15707432565118, 40.05499793881807], [-75.15734391588596, 40.05500402290393], [-75.15755804003476, 40.05503537344851], [-75.15772612947846, 40.05514266578577], [-75.15774917146788, 40.05515408706353], [-75.15787079217264, 40.05519994829528], [-75.1583068914531, 40.05543826600539], [-75.15889048363145, 40.05576949183422], [-75.15831599261553, 40.05603530684842], [-75.15746051816018, 40.0564194703756], [-75.15747896418917, 40.056504930678976], [-75.15737303204526, 40.05858598062293], [-75.157200041546, 40.05864718062386], [-75.15689851127883, 40.05877686767505], [-75.15562086138792, 40.05932667201359], [-75.15527293531468, 40.05947082097148], [-75.15451465886387, 40.05978796538895], [-75.15376348409853, 40.06009936287663], [-75.15446021032547, 40.061154792902464], [-75.15522895265995, 40.06237394340174], [-75.15525483072531, 40.0624327360658], [-75.15520562760757, 40.0625047873463], [-75.15469973804461, 40.06302558333437], [-75.15411076692092, 40.063648702720286], [-75.15358456284916, 40.06419917687332], [-75.15351422568159, 40.064286960105086], [-75.1533997052835, 40.064346319747806], [-75.15294352202838, 40.06429432184391], [-75.15225506922619, 40.06429891873402], [-75.15188488782408, 40.06599297260364], [-75.15154453594731, 40.067492518421346], [-75.1512590535016, 40.068766755608095], [-75.15113969247578, 40.06930768861748], [-75.15110941573222, 40.06938823856531], [-75.15106191088287, 40.06946857816879], [-75.15096958553814, 40.06956843639189], [-75.1507247653823, 40.06982534507238], [-75.15004070721001, 40.06943588345188], [-75.14960541385284, 40.06918804665245], [-75.14835533464405, 40.06847629140363], [-75.1476786971091, 40.06809102144619], [-75.14666575147052, 40.067521504880396], [-75.14550083646236, 40.066852333810544], [-75.14521906964595, 40.06669047274589], [-75.1445545761143, 40.06631208041861], [-75.14405155015547, 40.06601595270874], [-75.14309806566018, 40.06547590316734], [-75.1418870299279, 40.06478995437998], [-75.14077361287495, 40.06415244752091]]]}}, {"id": "7730", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13076933610816, 40.010429891484755], [-75.13122229503595, 40.00838998153134], [-75.13128895844574, 40.0082654424629], [-75.13157556350811, 40.006918297371676], [-75.13159329869447, 40.006777230208], [-75.13195017894888, 40.0051571594535], [-75.1323393000563, 40.005147432728876], [-75.13268120165456, 40.005131878874295], [-75.1330212513291, 40.00510594253852], [-75.13335888197858, 40.0050626585146], [-75.13369357562595, 40.00500497218568], [-75.13402486017198, 40.00493889706954], [-75.13435250240111, 40.004861512171956], [-75.13467397684518, 40.004771398547945], [-75.1349895542347, 40.004669614814944], [-75.13530090626963, 40.00455963199797], [-75.13560909369671, 40.00444496665626], [-75.1359157518846, 40.00432808881714], [-75.13622149461732, 40.00420973238526], [-75.13652667478337, 40.00409046944232], [-75.13683165251034, 40.003970866824645], [-75.13713677708644, 40.0038514992271], [-75.13744240731118, 40.00373293795305], [-75.13766927943385, 40.00364619730299], [-75.1377488996158, 40.00361575514893], [-75.13805660933845, 40.00350052113034], [-75.1383656919968, 40.0033874881072], [-75.13867532541023, 40.00327533899265], [-75.13898533409136, 40.00316379317689], [-75.13929567189308, 40.00305277121833], [-75.13960628994526, 40.00294220352529], [-75.13988662155539, 40.002842828195924], [-75.1402281822031, 40.00272211317395], [-75.14053936145434, 40.002612439684974], [-75.14085063459378, 40.002502917979676], [-75.1411619520598, 40.00239346583894], [-75.14147326507981, 40.002284010973575], [-75.14178453204205, 40.00217447765325], [-75.1420957018997, 40.00206479173606], [-75.14241335513279, 40.00195252307149], [-75.14271756308496, 40.001844650614025], [-75.14302815937185, 40.00173404638711], [-75.14333847105587, 40.0016229852707], [-75.14364845063128, 40.00151139230492], [-75.14379809293565, 40.00145585389514], [-75.14406451756503, 40.00191290723567], [-75.14412366322766, 40.00215922659642], [-75.1440384135838, 40.00223426474612], [-75.14374365394839, 40.00358293398834], [-75.14350127331724, 40.00355156369469], [-75.14329364986786, 40.00352469250323], [-75.1431399324757, 40.00428493094099], [-75.1433015921368, 40.00472237755151], [-75.14343826047002, 40.005072838644516], [-75.14309801736401, 40.00656380658327], [-75.14306343435318, 40.006722226308], [-75.14277427561711, 40.0080455913732], [-75.14277295786349, 40.00815499045495], [-75.14276347100015, 40.00826978854965], [-75.14243880955175, 40.00974402913456], [-75.14211264092272, 40.01123807168278], [-75.14178660755206, 40.01270991995661], [-75.14232926693204, 40.01279113891428], [-75.14279528639928, 40.012858788197796], [-75.1433203153046, 40.01292742387583], [-75.14647680294615, 40.013343114491526], [-75.14722189137788, 40.013432961843364], [-75.14722884497878, 40.01408140210885], [-75.14791438685396, 40.01392740449221], [-75.14795501083744, 40.0139786146205], [-75.1478365064141, 40.01450755380314], [-75.14983165309977, 40.01476596338327], [-75.15003962572906, 40.01481970269212], [-75.14993222382938, 40.01532671020396], [-75.14983979568106, 40.01567315281484], [-75.14977041330002, 40.01602280409584], [-75.14972718930441, 40.016216009188604], [-75.14958686700786, 40.01693362198721], [-75.1493475064601, 40.017958839322176], [-75.14908973201165, 40.0181106529181], [-75.1484680681646, 40.01840767197671], [-75.14714447643219, 40.01901145008065], [-75.14705879583687, 40.01909484972519], [-75.14638257068283, 40.01941384755003], [-75.14613788229155, 40.01938413204805], [-75.1453628611309, 40.019380817093726], [-75.14468710862543, 40.01941183457217], [-75.14409578705738, 40.019486694076015], [-75.14363335649988, 40.01956889301005], [-75.14326097466613, 40.01965955683399], [-75.1428848436295, 40.01977265716096], [-75.14246779103715, 40.01992131567765], [-75.14208211948895, 40.020076769123925], [-75.14126176526882, 40.020457827767785], [-75.13989326600749, 40.021143092921015], [-75.13962410577875, 40.02125554449826], [-75.13878989832307, 40.02167194894793], [-75.13680074130902, 40.02266481390887], [-75.13606727037968, 40.022993869695384], [-75.13568333923226, 40.02295388314234], [-75.13517364017464, 40.02288937907387], [-75.13351806873054, 40.02269961384838], [-75.13266657267638, 40.02260530897158], [-75.13165534349513, 40.022466545626095], [-75.13067747059611, 40.0223264212425], [-75.1288388007593, 40.02209552698992], [-75.12832997980297, 40.02203750959046], [-75.12799561695972, 40.021990003261664], [-75.1275883473653, 40.02193652409814], [-75.12766722191142, 40.021678075942006], [-75.12772254870809, 40.02143541478058], [-75.12782553628675, 40.02100974360595], [-75.12793752006728, 40.02058217569274], [-75.12805743325659, 40.02016776351229], [-75.12817272187972, 40.019745126505015], [-75.12828942424522, 40.01931224639612], [-75.12841230851205, 40.01888818420382], [-75.12717014834826, 40.0187202445289], [-75.12728008257253, 40.01855118772663], [-75.12773597041543, 40.01780744067364], [-75.12816782747261, 40.01727601049683], [-75.12958420585664, 40.01596204506945], [-75.12950279799507, 40.0158893945626], [-75.1295060820777, 40.01580432267141], [-75.12954449782806, 40.015628823804676], [-75.12969626827335, 40.015025138211094], [-75.12985744154966, 40.01458954235703], [-75.12991212376365, 40.01438165693674], [-75.12995568069938, 40.01421690737463], [-75.13032098038171, 40.012520430993625], [-75.13039457043838, 40.0122046367008], [-75.13058658979985, 40.01132621444333], [-75.13076933610816, 40.010429891484755]]]}}, {"id": "8010", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.03418808182995, 40.01552685458882], [-75.03593236969367, 40.015122265975734], [-75.03846131468903, 40.014341371204885], [-75.0400887750218, 40.013724643582975], [-75.04318345620553, 40.01230180802732], [-75.04549702717796, 40.01539135984509], [-75.04654946592537, 40.016354768020506], [-75.04695708881782, 40.01666649054795], [-75.04740062933426, 40.01699499112109], [-75.04779921109528, 40.017327097465994], [-75.04808650156707, 40.01750175437715], [-75.04813594950116, 40.017585297316074], [-75.04827883286003, 40.01769035907416], [-75.04843241042651, 40.01780693177609], [-75.04858708950196, 40.01793877323055], [-75.04869060025547, 40.01802875804136], [-75.04879026013448, 40.01814272009394], [-75.04895805847762, 40.01833459840812], [-75.04949864826371, 40.018930315978146], [-75.05000317862873, 40.019512392481026], [-75.05045067390724, 40.02002728783608], [-75.05090575006129, 40.02053632334524], [-75.05132044682324, 40.02101559235904], [-75.05177492702299, 40.0215363498483], [-75.05225498658803, 40.02208102634417], [-75.05248290255767, 40.02234721787948], [-75.05270351743722, 40.02259335939741], [-75.0529326587648, 40.02286481292343], [-75.05315294282204, 40.02310603050815], [-75.05337410689482, 40.02336301410848], [-75.05360536254146, 40.023616927357196], [-75.05383051939687, 40.02388229248625], [-75.05405573884796, 40.024130575636875], [-75.05449649038853, 40.02464923564854], [-75.0549663561723, 40.025172380397535], [-75.05539833613314, 40.02567408298286], [-75.05629534391466, 40.02670488753105], [-75.05695499182227, 40.02636259906879], [-75.05727981106796, 40.02619638423572], [-75.05759522139245, 40.026032809647084], [-75.057897070503, 40.025876805875036], [-75.05825183059187, 40.02569286300014], [-75.05880467941977, 40.026314935658625], [-75.06075658276164, 40.025302397254684], [-75.06271239425418, 40.0242925423012], [-75.06280300649158, 40.02440337289763], [-75.06325416663721, 40.024913758823566], [-75.06379250395135, 40.02463878984568], [-75.06429850056371, 40.02437366105983], [-75.06491395782366, 40.02406163942987], [-75.06497094787639, 40.02411046962777], [-75.06543718559958, 40.02464211242266], [-75.06599609412177, 40.02529122842685], [-75.06629341432797, 40.025612034155614], [-75.06651979223467, 40.02580581909264], [-75.06668295259375, 40.02584138355716], [-75.06783721579384, 40.02649206348795], [-75.06795748719205, 40.026584067667095], [-75.06709032771728, 40.02677730779543], [-75.06618493810203, 40.026915548478], [-75.07304390892638, 40.03129574371874], [-75.07351393530942, 40.031555013912985], [-75.07386962085366, 40.03176463032088], [-75.07369253848567, 40.03210840218186], [-75.07355461850688, 40.032363421145035], [-75.07356021353532, 40.03244577064569], [-75.07360561234455, 40.03251822982968], [-75.07382568190619, 40.0326454257203], [-75.07483287179262, 40.03320326733209], [-75.07493564475371, 40.03325772149568], [-75.07506078615849, 40.03334997800687], [-75.0751487380651, 40.0334466456309], [-75.07525130271337, 40.033661436635455], [-75.07529951176552, 40.033783704283984], [-75.07443993025743, 40.03398123715264], [-75.07148466221675, 40.03466540963907], [-75.07109755523071, 40.0347439109783], [-75.06959738437399, 40.03509441906304], [-75.06809997139733, 40.03543185853618], [-75.06767241302904, 40.03552753743839], [-75.0660952774568, 40.03590830909203], [-75.06518040298042, 40.03612573203004], [-75.06436363948667, 40.03630732602594], [-75.06356652744833, 40.03648551118628], [-75.06319645774718, 40.03658640547235], [-75.06289854950163, 40.036705949036644], [-75.062502852093, 40.03689443759703], [-75.06212144079021, 40.03710684041035], [-75.0618255356151, 40.03730550024004], [-75.06141110167145, 40.03763975920058], [-75.06106479422336, 40.03796318088107], [-75.06101051345323, 40.03801387425303], [-75.05879506193901, 40.04010164795467], [-75.05855594906858, 40.040312717870684], [-75.05670935146723, 40.04206037491096], [-75.05612301550626, 40.04264626875537], [-75.05561028491073, 40.0431883691441], [-75.05492781601713, 40.04385567168835], [-75.05460150362975, 40.04415792107146], [-75.054288575661, 40.04444780416778], [-75.05221162133299, 40.046387949574495], [-75.05220136259966, 40.04639470707811], [-75.05216045389054, 40.04642165805307], [-75.05166716612983, 40.0469581122058], [-75.05132919985556, 40.047547394403196], [-75.05112791207715, 40.04811401788436], [-75.05110862075935, 40.04830837382625], [-75.05112820905771, 40.04831042708993], [-75.05105274198593, 40.049070751012366], [-75.05090916889004, 40.050580507726], [-75.05090902067869, 40.05058782885867], [-75.050905547692, 40.05075968333635], [-75.05089050413272, 40.051103695807655], [-75.0508348505287, 40.05150787577755], [-75.05071463051047, 40.0519831306507], [-75.0505184779635, 40.052414280789066], [-75.05046568303189, 40.052508291736785], [-75.05042475255875, 40.05257628439179], [-75.05034323522091, 40.05268789358886], [-75.05015918593955, 40.052955041413384], [-75.04993761409428, 40.05319662649828], [-75.04964729232861, 40.05347835338288], [-75.04905018513644, 40.05407708512535], [-75.04774962504511, 40.05536430870876], [-75.04749817741373, 40.05564927592735], [-75.0473796338358, 40.05574498363881], [-75.04653734773393, 40.05656862179591], [-75.04645228389022, 40.05665642401393], [-75.04479205913208, 40.058370038156426], [-75.04452138806724, 40.05870458649961], [-75.04438569065395, 40.05890397388182], [-75.04432195723118, 40.05899761927773], [-75.04423684741798, 40.05912267367909], [-75.04413865112885, 40.0593298577121], [-75.042735081359, 40.062373930726196], [-75.04224674786106, 40.06353209298826], [-75.04117363314958, 40.06591649432094], [-75.04104856821186, 40.06619437066853], [-75.04027165133148, 40.06792050879335], [-75.03990055038933, 40.0687164982515], [-75.03952749808136, 40.0693585665246], [-75.03937274031372, 40.0695553420102], [-75.03895106634981, 40.07005670880712], [-75.03797590147553, 40.071078701239365], [-75.03688057928926, 40.072209186628385], [-75.0348403042355, 40.07430802573013], [-75.03394468660325, 40.07522585640025], [-75.03345632981974, 40.075733552485595], [-75.03265156130533, 40.076563913553244], [-75.03024499085504, 40.07905911048138], [-75.02936100367475, 40.07996554086386], [-75.02860591922072, 40.08077109526856], [-75.02844973853612, 40.08067939112584], [-75.02537845533197, 40.07894441699348], [-75.02371460278547, 40.07799573890452], [-75.02174937544991, 40.07695644903743], [-75.01714477252432, 40.074343800429524], [-75.0170511604494, 40.07429139164119], [-75.01683647482798, 40.074171198321956], [-75.01506505696598, 40.073179433645436], [-75.014088715379, 40.07264365237408], [-75.01312768506725, 40.07207268034328], [-75.01133066624226, 40.07118005144515], [-75.00727005000492, 40.06916284283319], [-75.00290365177997, 40.06668327635158], [-75.00020320019168, 40.06515197637998], [-74.99902373253308, 40.06448114410677], [-74.9984208088978, 40.06413807764871], [-74.99530548636974, 40.06236533704058], [-74.99451468543627, 40.06191530970193], [-74.99427698081958, 40.061782881163985], [-74.99395224082419, 40.061629044655696], [-74.99356775227025, 40.06149391799965], [-74.99321774729918, 40.061397389171425], [-74.99281403097854, 40.06133230332667], [-74.99239711762029, 40.06126941868098], [-74.99194572488256, 40.06116793486433], [-74.99170939033432, 40.06109679086137], [-74.99149351660745, 40.06100599428357], [-74.99130342505201, 40.06092588935296], [-74.99110105709491, 40.06082534327962], [-74.99085541386388, 40.06066080733073], [-74.99064230555005, 40.06050208736882], [-74.99051053375126, 40.060438488973645], [-74.9904325723008, 40.060397207455054], [-74.989286928798, 40.05937652147773], [-74.9879801607809, 40.05821631396604], [-74.98590682466101, 40.056378300947806], [-74.98529316777564, 40.05582904683217], [-74.98500302675573, 40.05557645381922], [-74.98475433761872, 40.055358582041585], [-74.98451795866875, 40.05514942559683], [-74.98439233134985, 40.055017035967204], [-74.9842573866046, 40.05490393180876], [-74.98415155670932, 40.05482814694793], [-74.98409878171032, 40.05478373231092], [-74.98401688146697, 40.054708509021076], [-74.98396572527261, 40.05462750125775], [-74.98379632094823, 40.05420356773441], [-74.98273352293714, 40.05301574562342], [-74.98229743001636, 40.05252025409304], [-74.98182371053878, 40.052047477411186], [-74.98158920688721, 40.051824814724505], [-74.98147989780368, 40.05171902695606], [-74.98093132226789, 40.05121469976086], [-74.98022845607794, 40.05058274545212], [-74.9766399576386, 40.04740753190659], [-74.978556593772, 40.046776920971546], [-74.97989203561042, 40.046340572217694], [-74.98059132219204, 40.04594380560141], [-74.98174496524592, 40.04506481578623], [-74.98267772211753, 40.044069039558025], [-74.98354833311693, 40.04303263159738], [-74.98494277204559, 40.04176918605419], [-74.98628044404798, 40.04094230870215], [-74.98770726511312, 40.039958475210966], [-74.98921273178432, 40.038655978629805], [-74.99046771078892, 40.03757014522302], [-74.99138517154653, 40.03677630839157], [-74.9940705153599, 40.034416675946346], [-74.99592322615307, 40.0327693789857], [-74.9972646789298, 40.03157658769071], [-74.99840929180525, 40.030580559169564], [-74.99975901814408, 40.02960479363618], [-75.0015932214651, 40.028499635674116], [-75.00316023945895, 40.027502189715776], [-75.00633490899871, 40.02551540086163], [-75.00969202947779, 40.02346289089041], [-75.01210156445315, 40.021652540993706], [-75.01439595160497, 40.02017284569141], [-75.01569583843182, 40.01949405820048], [-75.01660844953228, 40.01907485929474], [-75.0178569563277, 40.01855237721734], [-75.01973985658044, 40.01788386821405], [-75.02145303888575, 40.017491993859835], [-75.02377146395851, 40.017068709017565], [-75.02658115512718, 40.01665813075844], [-75.0293708496235, 40.01628945858043], [-75.02985946482646, 40.01622487799484], [-75.03255713556078, 40.015812624946086], [-75.03418808182995, 40.01552685458882]], [[-75.0495881231959, 40.041739215346446], [-75.05222822387734, 40.04327245835874], [-75.054288575661, 40.04444780416778], [-75.0495881231959, 40.041739215346446]], [[-75.0432001630908, 40.0355454899382], [-75.04243452139467, 40.035962491064716], [-75.0432001642619, 40.035545489965806], [-75.04405452994727, 40.035097840094735], [-75.0432001630908, 40.0355454899382]], [[-75.04075351141236, 40.03679473370573], [-75.04036436554968, 40.03693740614655], [-75.04075351258349, 40.03679473373337], [-75.04168391253879, 40.036344090785576], [-75.04075351141236, 40.03679473370573]], [[-75.03683287760813, 40.03823718981451], [-75.03627792045715, 40.03844215824022], [-75.03868784381856, 40.03755204667702], [-75.03683287760813, 40.03823718981451]], [[-75.02825800975391, 40.04136678332327], [-75.02840484907568, 40.04156181392152], [-75.02832845948224, 40.04145779947094], [-75.0282580103248, 40.041366783113986], [-75.02825800975391, 40.04136678332327]], [[-75.02967734942368, 40.043251881970015], [-75.02967748420446, 40.04325205688601], [-75.02967729438747, 40.04325180887595], [-75.02967734942368, 40.043251881970015]], [[-75.03074357479696, 40.04605429842213], [-75.03012985400888, 40.04633500936937], [-75.03085259565582, 40.04600443292508], [-75.03074357479696, 40.04605429842213]], [[-75.02714770611784, 40.04769893835468], [-75.02639597519511, 40.048042732551565], [-75.02611039141759, 40.0481733387064], [-75.0275913510811, 40.047496039407974], [-75.02714770611784, 40.04769893835468]], [[-75.02604481931499, 40.048339874814666], [-75.02596530973688, 40.048541809939096], [-75.02611039141759, 40.0481733387064], [-75.02604481931499, 40.048339874814666]], [[-75.02611572240293, 40.04892110857427], [-75.02612481482035, 40.04894403693681], [-75.02596530973688, 40.048541809939096], [-75.02611572240293, 40.04892110857427]], [[-75.0369064793127, 40.06302466339694], [-75.03712804351242, 40.06325799335081], [-75.03735112456283, 40.06345334240326], [-75.03750310075594, 40.06357098082033], [-75.03765381085454, 40.06372026648389], [-75.03788538907857, 40.06390947971823], [-75.03814966941594, 40.06410579957072], [-75.03838201066941, 40.06427602117927], [-75.03869496649082, 40.06449249607631], [-75.0368207935583, 40.06293751450016], [-75.0369064793127, 40.06302466339694]], [[-75.03638120175484, 40.06193196037857], [-75.03644991043785, 40.06227573126081], [-75.03654548910033, 40.06256627810336], [-75.03664499201747, 40.062758710126666], [-75.03682078447434, 40.06293750526108], [-75.0365930000981, 40.06265599960139], [-75.03638120175484, 40.06193196037857]], [[-75.03607775442912, 40.061272177770654], [-75.03622744441218, 40.0614467880024], [-75.03594479401579, 40.06109162811677], [-75.03607775442912, 40.061272177770654]], [[-75.03595833618175, 40.0605470460292], [-75.0358693703198, 40.060709682823955], [-75.03593012745294, 40.06059861454617], [-75.03595833618175, 40.0605470460292]]]}}, {"id": "8020", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.0618255356151, 40.03730550024004], [-75.06212144079021, 40.03710684041035], [-75.062502852093, 40.03689443759703], [-75.06289854950163, 40.036705949036644], [-75.06319645774718, 40.03658640547235], [-75.06356652744833, 40.03648551118628], [-75.06436363948667, 40.03630732602594], [-75.06518040298042, 40.03612573203004], [-75.0660952774568, 40.03590830909203], [-75.06767241302904, 40.03552753743839], [-75.06809997139733, 40.03543185853618], [-75.06959738437399, 40.03509441906304], [-75.07109755523071, 40.0347439109783], [-75.07148466221675, 40.03466540963907], [-75.07443993025743, 40.03398123715264], [-75.07529951176552, 40.033783704283984], [-75.07697795937855, 40.033397972680206], [-75.07744388361579, 40.033296176686676], [-75.0807438478966, 40.03253982344368], [-75.08177593009637, 40.032308839996325], [-75.08190521436933, 40.032282428233174], [-75.08200440584257, 40.0322584952175], [-75.08210904612866, 40.03222753624818], [-75.08380562658093, 40.03190043045333], [-75.08394974653352, 40.031864818843445], [-75.08408993092331, 40.03182185063179], [-75.084097405649, 40.03188155842482], [-75.08413521559794, 40.0319684446678], [-75.08427364859448, 40.032173074144445], [-75.08417226608184, 40.03231398234938], [-75.08401838790222, 40.03253985258157], [-75.08337184825928, 40.03324444864927], [-75.08292349300645, 40.03372330867389], [-75.08218024701313, 40.03448704593086], [-75.08195841577964, 40.03471897149558], [-75.08175869585502, 40.03492521355816], [-75.08157537830293, 40.03511145579118], [-75.08137885375395, 40.03531391323505], [-75.08098162607358, 40.03571413929394], [-75.08060112266844, 40.036131819358744], [-75.08024922552187, 40.03651060128627], [-75.07983718668031, 40.03692272182405], [-75.07954709690475, 40.03722276508653], [-75.07931365313148, 40.0374713951191], [-75.07915910930849, 40.037622473914574], [-75.07899997600468, 40.03779706653513], [-75.07882205767763, 40.03798920232221], [-75.07862140296287, 40.038206697716774], [-75.07838964012736, 40.03843440242911], [-75.07821099744447, 40.03861885625212], [-75.07801135411607, 40.03882753769454], [-75.07782992709585, 40.0390022391198], [-75.0773958050892, 40.03946541060029], [-75.07700242865678, 40.03988600766493], [-75.07682097008166, 40.040075356887755], [-75.07665244087141, 40.04025881302328], [-75.07623828501488, 40.04068659459254], [-75.07583571343075, 40.04109610738058], [-75.07545256782305, 40.0414780821767], [-75.07503370357503, 40.041941143862246], [-75.07545468513057, 40.04215513798341], [-75.07555346965913, 40.04220531304383], [-75.0765608830969, 40.042763955361195], [-75.07856631286752, 40.043905245218944], [-75.08035251915297, 40.04490616956516], [-75.08234451175854, 40.04599251847069], [-75.08300095783821, 40.046371493960706], [-75.08341587267958, 40.046600359614075], [-75.08365174732054, 40.046724542027356], [-75.08406675926334, 40.046964233443056], [-75.0856951039326, 40.04785186002135], [-75.08697553819498, 40.04856837334297], [-75.08763612729165, 40.04704383759833], [-75.08794833282026, 40.04634483545947], [-75.08831388614998, 40.045515125514], [-75.08897663424665, 40.044333503559685], [-75.0903533819722, 40.04298457247651], [-75.094176025479, 40.04502710432539], [-75.09453467758765, 40.04522327325332], [-75.09479268570398, 40.0453649583314], [-75.0951428672017, 40.04555226333374], [-75.09600049007513, 40.04600379173299], [-75.09697175151327, 40.04656599718221], [-75.09801858961916, 40.04709794044168], [-75.09880087535097, 40.04753158377558], [-75.09956065794458, 40.04797498853239], [-75.10039563010359, 40.04869298730429], [-75.10133641421142, 40.049540434137114], [-75.1018914465809, 40.05006629533136], [-75.10281166625275, 40.0508685864897], [-75.1030246267211, 40.051089122973224], [-75.10310487206245, 40.05119338851588], [-75.10075000741492, 40.052589800378406], [-75.10016462242423, 40.052947969102206], [-75.09983039549444, 40.05315383660878], [-75.09937540599458, 40.05330003122185], [-75.09911047209413, 40.05356349100261], [-75.09880255946189, 40.05371498814136], [-75.09846339383841, 40.05388885033198], [-75.09766560795609, 40.05436649656119], [-75.09748783614391, 40.05447997074385], [-75.09650501415967, 40.05517207626254], [-75.09575755844112, 40.0556306342029], [-75.09511934619522, 40.05593782266534], [-75.09468071935262, 40.056370745767495], [-75.09361503390471, 40.05741817620406], [-75.09274064284068, 40.05829937415294], [-75.0920750089637, 40.05896683336336], [-75.08976380729703, 40.06129389020495], [-75.08900285768611, 40.06205226329], [-75.08823967373392, 40.06281283793292], [-75.08746453554552, 40.06358530745863], [-75.08789701681395, 40.06383695621994], [-75.0887650890161, 40.06434205694387], [-75.08944617660568, 40.06473751202954], [-75.09037058875349, 40.06527619765871], [-75.08902882748413, 40.066599282792986], [-75.08723266257306, 40.06839116981807], [-75.08707644886283, 40.068565824165354], [-75.08531032224032, 40.068513075978196], [-75.08462537770777, 40.06836930728484], [-75.08432206063496, 40.06830338858394], [-75.08372661331803, 40.068174970048695], [-75.08204090213172, 40.06805242820077], [-75.08096567099172, 40.06797552436967], [-75.07890160880922, 40.06683635632901], [-75.07805155797986, 40.06636177054576], [-75.0778873699058, 40.066227749755065], [-75.07771866653502, 40.066036330276916], [-75.07767354595893, 40.06596702456253], [-75.0775074708497, 40.06568457988809], [-75.07736001106932, 40.0654320643241], [-75.07715589235868, 40.06504476333175], [-75.07599116443163, 40.06434346148916], [-75.0753759601058, 40.06397178792418], [-75.07354324395854, 40.062936481673376], [-75.07330491095185, 40.06281311335858], [-75.07294842940784, 40.06261524742156], [-75.07275111584283, 40.06252154435866], [-75.07243794149772, 40.06242514102399], [-75.07214134544577, 40.0623757177902], [-75.07128377583618, 40.062285371006226], [-75.07086082608126, 40.06222798789649], [-75.07053197167276, 40.06213715241198], [-75.07031102114136, 40.06205477404607], [-75.06988024443862, 40.061825341066864], [-75.06502668978634, 40.067345239044975], [-75.0658467809666, 40.067832099023924], [-75.06735652846181, 40.06872835474917], [-75.0678274453076, 40.06896467197677], [-75.06749638627788, 40.06910861366898], [-75.06719852233356, 40.06923872176233], [-75.06690135658151, 40.06936976897946], [-75.06660492565369, 40.06950177780655], [-75.0663092707974, 40.06963477263976], [-75.0660137588297, 40.06976806832083], [-75.0657180402657, 40.06990130888495], [-75.06542327369665, 40.070035772044], [-75.06513063452837, 40.070172754836676], [-75.06484130035514, 40.07031355796916], [-75.06455614032294, 40.07045915598219], [-75.06427369713427, 40.070608024523715], [-75.06399338735496, 40.07075943635126], [-75.06371496187346, 40.07091301803206], [-75.0634381718676, 40.0710683889291], [-75.06316277192772, 40.071225171185866], [-75.06288851078965, 40.07138298680624], [-75.06261533565403, 40.07154180663149], [-75.06234372144463, 40.07170234278835], [-75.06207392243033, 40.0718647490067], [-75.06180618592673, 40.07202914731945], [-75.06154075136922, 40.07219565146795], [-75.0612778636246, 40.07236438613518], [-75.06101694643431, 40.07253494680178], [-75.06075741494566, 40.07270693865332], [-75.06049970478726, 40.07288061517643], [-75.06024425155283, 40.07305623076177], [-75.05999149552423, 40.07323403991354], [-75.05974187453398, 40.07341429978524], [-75.05949570921547, 40.07359720622223], [-75.05925247709082, 40.0737824478666], [-75.05901157500546, 40.07396955919014], [-75.05877243914605, 40.074158088195375], [-75.05853450793607, 40.07434758563563], [-75.05829722217847, 40.07453760141421], [-75.0580600180249, 40.07472768441965], [-75.05782233982951, 40.074917383728305], [-75.05758362004983, 40.07510625263813], [-75.05552497347986, 40.076671328095905], [-75.05537620540206, 40.07678442526513], [-75.05534535391104, 40.07671670469455], [-75.05517312496838, 40.07648456942428], [-75.05498466818896, 40.07624571716204], [-75.0547928060949, 40.07608904559435], [-75.05455976708468, 40.07593796030108], [-75.05431382253069, 40.07590051164817], [-75.05414725883203, 40.07594095572149], [-75.05399541632775, 40.076026097060954], [-75.05396616603974, 40.07613946065988], [-75.0539296157627, 40.07643639594118], [-75.05386828593147, 40.07694183832337], [-75.05377757875698, 40.07714879871762], [-75.05362308928163, 40.07730040711198], [-75.05346174180787, 40.0774170064721], [-75.05325296607438, 40.07748180349217], [-75.0529128500191, 40.07753084556232], [-75.05263142116847, 40.077555922185596], [-75.05234301422513, 40.077549152659024], [-75.05212826288668, 40.077556783823084], [-75.05198616329548, 40.07760413533933], [-75.05186551085286, 40.07773436021535], [-75.05168591663612, 40.077894879164575], [-75.0515065722058, 40.07804906936406], [-75.05122809364289, 40.07820726754548], [-75.0509663444948, 40.07835952001648], [-75.0506484231972, 40.078472438334956], [-75.05038994860831, 40.07854239912013], [-75.05015720083807, 40.07858761908509], [-75.04995917909704, 40.07858930313321], [-75.04973719410566, 40.07857141713605], [-75.04940833315213, 40.07854468046004], [-75.04883226443728, 40.07851213372634], [-75.04818367057818, 40.07843669765365], [-75.04777938855011, 40.07843986397968], [-75.04743152769055, 40.07847603650771], [-75.04707046516083, 40.07842952916896], [-75.04671865181837, 40.07835789268325], [-75.04631143038561, 40.078227928813625], [-75.04595415584761, 40.078086466332714], [-75.04561487822417, 40.07790741100268], [-75.04534926028896, 40.07774275870906], [-75.045181767739, 40.07759942286984], [-75.04505497403682, 40.077469718840085], [-75.04496189751694, 40.077321798879794], [-75.044893542534, 40.07717445983989], [-75.04482771390366, 40.07696382122396], [-75.04474262752414, 40.076822426205], [-75.04461019606796, 40.07671426002101], [-75.04437544784992, 40.076515986745726], [-75.04420098626825, 40.076340808020944], [-75.04398238591108, 40.07603152918247], [-75.04381666845494, 40.07584388336682], [-75.04350437156484, 40.07540250824636], [-75.04344653650189, 40.07519839220523], [-75.04347130832939, 40.07501237386902], [-75.0434818653947, 40.07493311127461], [-75.04358058733531, 40.074732682333874], [-75.04381174842123, 40.07431361061849], [-75.04387877137246, 40.07408075501489], [-75.04388862161355, 40.07383388162932], [-75.04367347260144, 40.07364506960524], [-75.04338088274055, 40.07353680258656], [-75.04299664661441, 40.0734517197984], [-75.0427300417902, 40.07331238140349], [-75.04234135855599, 40.073132150758376], [-75.04185417957775, 40.07294009334167], [-75.0416120446288, 40.07280766508903], [-75.04138815858997, 40.072631315890035], [-75.04132108124091, 40.072452325411106], [-75.04136137041226, 40.07226952947355], [-75.04147430148507, 40.07212646098452], [-75.0418127306453, 40.071912676397304], [-75.04208473704509, 40.07170999709947], [-75.04248841833828, 40.07130766563954], [-75.04276168364336, 40.07107333361617], [-75.04285241512586, 40.07086638181349], [-75.04302513401653, 40.07046494259144], [-75.04357575655808, 40.069479984511155], [-75.04376191556884, 40.06915489498487], [-75.04385971299041, 40.06877069871069], [-75.04388739876102, 40.06828347515002], [-75.04386302954859, 40.068067475794585], [-75.0437825664205, 40.067397128713154], [-75.04367908978594, 40.06709689587563], [-75.04350844181876, 40.06682676256377], [-75.04331929512507, 40.06660688172657], [-75.04311837397684, 40.06647542875296], [-75.04289147572567, 40.066375041588714], [-75.04252300081988, 40.06630933607577], [-75.04214704345395, 40.06622444269112], [-75.04181278865332, 40.06612786129399], [-75.04147018298123, 40.066018667392534], [-75.0413335088859, 40.065974787552165], [-75.04117363314958, 40.06591649432094], [-75.04224674786106, 40.06353209298826], [-75.042735081359, 40.062373930726196], [-75.04413865112885, 40.0593298577121], [-75.04423684741798, 40.05912267367909], [-75.04452138806724, 40.05870458649961], [-75.04479205913208, 40.058370038156426], [-75.04653734773393, 40.05656862179591], [-75.0473796338358, 40.05574498363881], [-75.04749817741373, 40.05564927592735], [-75.04774962504511, 40.05536430870876], [-75.04905018513644, 40.05407708512535], [-75.04964729232861, 40.05347835338288], [-75.04993761409428, 40.05319662649828], [-75.05015918593955, 40.052955041413384], [-75.05034323522091, 40.05268789358886], [-75.05042475255875, 40.05257628439179], [-75.05046568303189, 40.052508291736785], [-75.0505184779635, 40.052414280789066], [-75.05071463051047, 40.0519831306507], [-75.0508348505287, 40.05150787577755], [-75.05089050413272, 40.051103695807655], [-75.050905547692, 40.05075968333635], [-75.05090916889004, 40.050580507726], [-75.05105274198593, 40.049070751012366], [-75.05112820905771, 40.04831042708993], [-75.05114765733573, 40.048114481781674], [-75.05134894495073, 40.04754785826596], [-75.05168691105588, 40.0469585760105], [-75.05221162133299, 40.046387949574495], [-75.054288575661, 40.04444780416778], [-75.05460150362975, 40.04415792107146], [-75.05492781601713, 40.04385567168835], [-75.05561028491073, 40.0431883691441], [-75.05612301550626, 40.04264626875537], [-75.05670935146723, 40.04206037491096], [-75.05855594906858, 40.040312717870684], [-75.05879506193901, 40.04010164795467], [-75.06101051345323, 40.03801387425303], [-75.06106479422336, 40.03796318088107], [-75.06141110167145, 40.03763975920058], [-75.0618255356151, 40.03730550024004]]]}}, {"id": "8030", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.98092547600625, 40.06450113291681], [-74.98090652361171, 40.0642202004415], [-74.98091319615096, 40.064056750560354], [-74.98093682653479, 40.06390372564563], [-74.98098107209536, 40.06377791063741], [-74.98101970108976, 40.06357683183606], [-74.98103912535659, 40.06342036708048], [-74.9810830992625, 40.0633012233168], [-74.98109613905308, 40.06319468880888], [-74.98109126910086, 40.063101080141166], [-74.98101572704437, 40.06292896931465], [-74.98093339478694, 40.06281679788501], [-74.98086449324052, 40.06269493289984], [-74.98080339150526, 40.06259496080614], [-74.98080720441843, 40.062501561383606], [-74.98082878953207, 40.062398572212544], [-74.98086787906719, 40.062292665554864], [-74.98091158138077, 40.06218019313656], [-74.98098526272864, 40.06207846039402], [-74.98100725590439, 40.061965464748084], [-74.98102898023743, 40.06185913954121], [-74.98101488116173, 40.06177866408198], [-74.98100119413706, 40.061688181365994], [-74.98095304795676, 40.061590189439556], [-74.9809082368487, 40.06141047341162], [-74.98091693600342, 40.061303834300475], [-74.98093431621123, 40.061197404410905], [-74.98094287911613, 40.06109410137642], [-74.9809256664009, 40.060983501101816], [-74.98091686490596, 40.06087977866368], [-74.98088567526722, 40.06079221344733], [-74.98084227891759, 40.06068431874318], [-74.98076726775463, 40.06060571357947], [-74.98054751869043, 40.06045350020058], [-74.98048084972567, 40.06038344522766], [-74.98042415929415, 40.060281907707775], [-74.98043231307426, 40.060188612916164], [-74.98048456069661, 40.0600796851148], [-74.98055633622793, 40.06002465150425], [-74.980666499553, 40.059987239059254], [-74.98081518922255, 40.05996411164604], [-74.98093362472231, 40.05993691551578], [-74.98108760777988, 40.05989054160097], [-74.98120795035433, 40.059816644592956], [-74.98131119964572, 40.05973565772611], [-74.98140115508835, 40.05966102824717], [-74.98152449071034, 40.0595137452045], [-74.98161119424806, 40.05941232502472], [-74.98198967925197, 40.058975688220436], [-74.98210365108055, 40.05884487311465], [-74.98218573793844, 40.05875002003741], [-74.98229698706716, 40.058685920073096], [-74.98247512019503, 40.058580023075194], [-74.98260875567634, 40.05849976797433], [-74.9827543245591, 40.05844651143368], [-74.98295795892344, 40.05835458448135], [-74.98332758775962, 40.05813476435305], [-74.98351399150326, 40.05803908396144], [-74.98368519849436, 40.057996460812056], [-74.98383931016633, 40.057946746193515], [-74.98399681211448, 40.05792048850884], [-74.98411103845788, 40.057889848521434], [-74.98424737790943, 40.05784972268482], [-74.98437164690296, 40.05778593512348], [-74.98453852004965, 40.057636357750695], [-74.98491349868218, 40.05739161992467], [-74.98506530826549, 40.05729176424976], [-74.98515166382873, 40.05719867980012], [-74.98518585479218, 40.0571060114213], [-74.98518098080696, 40.05701240292386], [-74.98514375233084, 40.05691300585423], [-74.98494971406399, 40.056716343633866], [-74.98481963186443, 40.05660302568651], [-74.98469307335526, 40.0565098258428], [-74.98458876497823, 40.056403805800805], [-74.98449341161933, 40.05629132520466], [-74.98440999142397, 40.056205842147605], [-74.98433763521942, 40.05606219289731], [-74.98429505346952, 40.05593428658902], [-74.98428375997585, 40.055875386707186], [-74.98426996993457, 40.05580346034975], [-74.98426320268395, 40.0556497031396], [-74.98425941689021, 40.05552940768928], [-74.98424883572238, 40.055410642653335], [-74.98425225091168, 40.05527881117554], [-74.98422696599542, 40.055152990006206], [-74.98417820778371, 40.05507001087779], [-74.9840640661072, 40.05499213539381], [-74.98394390189576, 40.05491967708071], [-74.98379684774893, 40.054832108124515], [-74.9837355436281, 40.054737139844825], [-74.98367966917444, 40.05461558919392], [-74.98361958842578, 40.05449059966494], [-74.98347540298006, 40.05440365259739], [-74.98279123935055, 40.053919714941244], [-74.98253901188087, 40.053818478172815], [-74.98232251640555, 40.05379990612641], [-74.98220536121858, 40.05376998757276], [-74.98191222280094, 40.053710090556365], [-74.981827139927, 40.05369447845001], [-74.9817110770208, 40.0536605020565], [-74.98159098419983, 40.05362534624615], [-74.98139239780356, 40.053593849249175], [-74.9811006741922, 40.05359349625193], [-74.98104456280066, 40.05359222852843], [-74.98101013867401, 40.0535913141073], [-74.98094102121459, 40.053599959083876], [-74.98083107792566, 40.053613710265495], [-74.98070312535563, 40.05362429968076], [-74.98063015568569, 40.053630079020856], [-74.98049113804896, 40.05363890568749], [-74.98028684909443, 40.05364065842978], [-74.98020034834873, 40.053637124904604], [-74.98016671564534, 40.053635751745446], [-74.98012106201882, 40.053633886903825], [-74.98008731111703, 40.053632508168285], [-74.98004127500081, 40.053626800922004], [-74.98000168352553, 40.05362189151193], [-74.97993736718946, 40.05361391698472], [-74.97983656849195, 40.053601419693535], [-74.97972581494665, 40.053549177556555], [-74.97968613886177, 40.053530462506835], [-74.97965752614932, 40.05351696651479], [-74.97964215966273, 40.05350511091698], [-74.97957938189387, 40.053456678306596], [-74.97951009524691, 40.05340322381422], [-74.9793804359642, 40.05327989322368], [-74.97914132500213, 40.053070446581486], [-74.9788643758819, 40.052830035989494], [-74.97855513523946, 40.05263559138109], [-74.97800620398617, 40.05220691321566], [-74.97683828922655, 40.05115910201165], [-74.97607665903661, 40.05047576991033], [-74.9747841439478, 40.04931608880409], [-74.97526196175941, 40.048745620231564], [-74.97576089776359, 40.04814992707445], [-74.97621401852302, 40.0476995145884], [-74.9766399576386, 40.04740753190659], [-74.98111308745125, 40.05138180422633], [-74.98208931617228, 40.05231255529608], [-74.98273352293714, 40.05301574562342], [-74.98379632094823, 40.05420356773441], [-74.98396572527261, 40.05462750125775], [-74.98401688146697, 40.054708509021076], [-74.98409878171032, 40.05478373231092], [-74.98415155670932, 40.05482814694793], [-74.9842573866046, 40.05490393180876], [-74.98439233134985, 40.055017035967204], [-74.98451795866875, 40.05514942559683], [-74.98475433761872, 40.055358582041585], [-74.98500302675573, 40.05557645381922], [-74.98529316777564, 40.05582904683217], [-74.98590682466101, 40.056378300947806], [-74.9879801607809, 40.05821631396604], [-74.989286928798, 40.05937652147773], [-74.9904325723008, 40.060397207455054], [-74.99051053375126, 40.060438488973645], [-74.99064230555005, 40.06050208736882], [-74.99085541386388, 40.06066080733073], [-74.99110105709491, 40.06082534327962], [-74.99130342505201, 40.06092588935296], [-74.99149351660745, 40.06100599428357], [-74.99170939033432, 40.06109679086137], [-74.99194572488256, 40.06116793486433], [-74.99239711762029, 40.06126941868098], [-74.99281403097854, 40.06133230332667], [-74.99321774729918, 40.061397389171425], [-74.99356775227025, 40.06149391799965], [-74.99395224082419, 40.061629044655696], [-74.99427698081958, 40.061782881163985], [-74.99451468543627, 40.06191530970193], [-74.99530548636974, 40.06236533704058], [-74.9984208088978, 40.06413807764871], [-74.99902373253308, 40.06448114410677], [-75.00020320019168, 40.06515197637998], [-75.00290365177997, 40.06668327635158], [-75.00727005000492, 40.06916284283319], [-75.01133066624226, 40.07118005144515], [-75.01312768506725, 40.07207268034328], [-75.014088715379, 40.07264365237408], [-75.01506505696598, 40.073179433645436], [-75.01683647482798, 40.074171198321956], [-75.0170511604494, 40.07429139164119], [-75.01714477252432, 40.074343800429524], [-75.02174937544991, 40.07695644903743], [-75.02371460278547, 40.07799573890452], [-75.02537845533197, 40.07894441699348], [-75.02844973853612, 40.08067939112584], [-75.02860591922072, 40.08077109526856], [-75.02936100367475, 40.07996554086386], [-75.03024499085504, 40.07905911048138], [-75.03265156130533, 40.076563913553244], [-75.03345632981974, 40.075733552485595], [-75.03394468660325, 40.07522585640025], [-75.0348403042355, 40.07430802573013], [-75.03688057928926, 40.072209186628385], [-75.03797590147553, 40.071078701239365], [-75.03895106634981, 40.07005670880712], [-75.03937274031372, 40.0695553420102], [-75.03952749808136, 40.0693585665246], [-75.03990055038933, 40.0687164982515], [-75.04027165133148, 40.06792050879335], [-75.04104856821186, 40.06619437066853], [-75.04117363314958, 40.06591649432094], [-75.0413335088859, 40.065974787552165], [-75.04147018298123, 40.066018667392534], [-75.04181278865332, 40.06612786129399], [-75.04214704345395, 40.06622444269112], [-75.04252300081988, 40.06630933607577], [-75.04289147572567, 40.066375041588714], [-75.04311837397684, 40.06647542875296], [-75.04331929512507, 40.06660688172657], [-75.04350844181876, 40.06682676256377], [-75.04367908978594, 40.06709689587563], [-75.0437825664205, 40.067397128713154], [-75.04386302954859, 40.068067475794585], [-75.04388739876102, 40.06828347515002], [-75.04385971299041, 40.06877069871069], [-75.04376191556884, 40.06915489498487], [-75.04357575655808, 40.069479984511155], [-75.04302513401653, 40.07046494259144], [-75.04285241512586, 40.07086638181349], [-75.04276168364336, 40.07107333361617], [-75.04248841833828, 40.07130766563954], [-75.04208473704509, 40.07170999709947], [-75.0418127306453, 40.071912676397304], [-75.04147430148507, 40.07212646098452], [-75.04136137041226, 40.07226952947355], [-75.04132108124091, 40.072452325411106], [-75.04138815858997, 40.072631315890035], [-75.0416120446288, 40.07280766508903], [-75.04185417957775, 40.07294009334167], [-75.04234135855599, 40.073132150758376], [-75.0427300417902, 40.07331238140349], [-75.04299664661441, 40.0734517197984], [-75.04338088274055, 40.07353680258656], [-75.04367347260144, 40.07364506960524], [-75.04388862161355, 40.07383388162932], [-75.04387877137246, 40.07408075501489], [-75.04381174842123, 40.07431361061849], [-75.04358058733531, 40.074732682333874], [-75.0434818653947, 40.07493311127461], [-75.04347130832939, 40.07501237386902], [-75.04344653650189, 40.07519839220523], [-75.04350437156484, 40.07540250824636], [-75.04381666845494, 40.07584388336682], [-75.04398238591108, 40.07603152918247], [-75.04420098626825, 40.076340808020944], [-75.04437544784992, 40.076515986745726], [-75.04461019606796, 40.07671426002101], [-75.04474262752414, 40.076822426205], [-75.04482771390366, 40.07696382122396], [-75.044893542534, 40.07717445983989], [-75.04496189751694, 40.077321798879794], [-75.04505497403682, 40.077469718840085], [-75.045181767739, 40.07759942286984], [-75.04534926028896, 40.07774275870906], [-75.04561487822417, 40.07790741100268], [-75.04595415584761, 40.078086466332714], [-75.04631143038561, 40.078227928813625], [-75.04671865181837, 40.07835789268325], [-75.04707046516083, 40.07842952916896], [-75.04743152769055, 40.07847603650771], [-75.04777938855011, 40.07843986397968], [-75.04818367057818, 40.07843669765365], [-75.04883226443728, 40.07851213372634], [-75.04940833315213, 40.07854468046004], [-75.04973719410566, 40.07857141713605], [-75.04995917909704, 40.07858930313321], [-75.05015720083807, 40.07858761908509], [-75.05038994860831, 40.07854239912013], [-75.0506484231972, 40.078472438334956], [-75.0509663444948, 40.07835952001648], [-75.05122809364289, 40.07820726754548], [-75.0515065722058, 40.07804906936406], [-75.05168591663612, 40.077894879164575], [-75.05186551085286, 40.07773436021535], [-75.05198616329548, 40.07760413533933], [-75.05212826288668, 40.077556783823084], [-75.05234301422513, 40.077549152659024], [-75.05263142116847, 40.077555922185596], [-75.0529128500191, 40.07753084556232], [-75.05325296607438, 40.07748180349217], [-75.05346174180787, 40.0774170064721], [-75.05362308928163, 40.07730040711198], [-75.05377757875698, 40.07714879871762], [-75.05386828593147, 40.07694183832337], [-75.0539296157627, 40.07643639594118], [-75.05396616603974, 40.07613946065988], [-75.05399541632775, 40.076026097060954], [-75.05414725883203, 40.07594095572149], [-75.05431382253069, 40.07590051164817], [-75.05455976708468, 40.07593796030108], [-75.0547928060949, 40.07608904559435], [-75.05498466818896, 40.07624571716204], [-75.05517312496838, 40.07648456942428], [-75.05534535391104, 40.07671670469455], [-75.05537620540206, 40.07678442526513], [-75.05552497347986, 40.076671328095905], [-75.05758362004983, 40.07510625263813], [-75.05782233982951, 40.074917383728305], [-75.0580600180249, 40.07472768441965], [-75.05829722217847, 40.07453760141421], [-75.05853450793607, 40.07434758563563], [-75.05877243914605, 40.074158088195375], [-75.05901157500546, 40.07396955919014], [-75.05925247709082, 40.0737824478666], [-75.05949570921547, 40.07359720622223], [-75.05974187453398, 40.07341429978524], [-75.05999149552423, 40.07323403991354], [-75.06024425155283, 40.07305623076177], [-75.06049970478726, 40.07288061517643], [-75.06075741494566, 40.07270693865332], [-75.06101694643431, 40.07253494680178], [-75.0612778636246, 40.07236438613518], [-75.06154075136922, 40.07219565146795], [-75.06180618592673, 40.07202914731945], [-75.06207392243033, 40.0718647490067], [-75.06234372144463, 40.07170234278835], [-75.06261533565403, 40.07154180663149], [-75.06288851078965, 40.07138298680624], [-75.06316277192772, 40.071225171185866], [-75.0634381718676, 40.0710683889291], [-75.06371496187346, 40.07091301803206], [-75.06399338735496, 40.07075943635126], [-75.06427369713427, 40.070608024523715], [-75.06455614032294, 40.07045915598219], [-75.06484130035514, 40.07031355796916], [-75.06513063452837, 40.070172754836676], [-75.06542327369665, 40.070035772044], [-75.0657180402657, 40.06990130888495], [-75.0660137588297, 40.06976806832083], [-75.0663092707974, 40.06963477263976], [-75.06660492565369, 40.06950177780655], [-75.06690135658151, 40.06936976897946], [-75.06719852233356, 40.06923872176233], [-75.06749638627788, 40.06910861366898], [-75.0678274453076, 40.06896467197677], [-75.06735652846181, 40.06872835474917], [-75.0658467809666, 40.067832099023924], [-75.06502668978634, 40.067345239044975], [-75.06988024443862, 40.061825341066864], [-75.07031102114136, 40.06205477404607], [-75.07053197167276, 40.06213715241198], [-75.07086082608126, 40.06222798789649], [-75.07128377583618, 40.062285371006226], [-75.07214134544577, 40.0623757177902], [-75.07243794149772, 40.06242514102399], [-75.07275111584283, 40.06252154435866], [-75.07294842940784, 40.06261524742156], [-75.07330491095185, 40.06281311335858], [-75.07354324395854, 40.062936481673376], [-75.0753759601058, 40.06397178792418], [-75.07599116443163, 40.06434346148916], [-75.07715589235868, 40.06504476333175], [-75.07736001106932, 40.0654320643241], [-75.0775074708497, 40.06568457988809], [-75.07767354595893, 40.06596702456253], [-75.07771866653502, 40.066036330276916], [-75.0778873699058, 40.066227749755065], [-75.07805155797986, 40.06636177054576], [-75.07890160880922, 40.06683635632901], [-75.08096567099172, 40.06797552436967], [-75.08204090213172, 40.06805242820077], [-75.08372661331803, 40.068174970048695], [-75.08432206063496, 40.06830338858394], [-75.08462537770777, 40.06836930728484], [-75.08531032224032, 40.068513075978196], [-75.08707644886283, 40.068565824165354], [-75.08723266257306, 40.06839116981807], [-75.08902882748413, 40.066599282792986], [-75.09037058875349, 40.06527619765871], [-75.09195860699734, 40.066200121654816], [-75.09324449349958, 40.0669482279799], [-75.0967382741719, 40.06898069222738], [-75.09404260233903, 40.07163329133227], [-75.09384252084408, 40.07183059824139], [-75.08996067275, 40.075661165003694], [-75.08951995056393, 40.076096031543], [-75.0891907542941, 40.07640878097414], [-75.08793830991601, 40.077598613149505], [-75.08689904947299, 40.0786463148236], [-75.0853654932011, 40.08010823724802], [-75.08390468787542, 40.08149006648177], [-75.08245787770203, 40.08288512949956], [-75.08168760417915, 40.083621315787084], [-75.081189150627, 40.084117842516726], [-75.07780237997744, 40.08577060590932], [-75.0762850362767, 40.08734184166048], [-75.07621101423739, 40.08741849292918], [-75.07123362350859, 40.09257200373774], [-75.07070881400485, 40.093115325291215], [-75.06945610894356, 40.09441217098119], [-75.06717459389318, 40.09677392043086], [-75.06567004428658, 40.098331262499364], [-75.0649336197538, 40.09909349519872], [-75.06424298959658, 40.099807689376114], [-75.06374502815815, 40.10032262854479], [-75.0635651080532, 40.100515285556895], [-75.06282035380688, 40.101283120986444], [-75.06141701723698, 40.10272988308664], [-75.06031563558594, 40.103868676200975], [-75.05955296452716, 40.10465722571823], [-75.05922801573257, 40.104993193756656], [-75.05842417065355, 40.10582388395065], [-75.05829127958201, 40.10591680588243], [-75.05533361228288, 40.10798663663956], [-75.05426974383495, 40.10873110159568], [-75.0529733091716, 40.10963827387001], [-75.04855727894453, 40.11272003648118], [-75.03904358203224, 40.11935771332061], [-75.03833768667893, 40.119871126479985], [-75.03790870422559, 40.12016854479975], [-75.03165368202416, 40.12450474988725], [-75.02578697968089, 40.12857094226713], [-75.02535538098483, 40.12889038492844], [-75.02489288491259, 40.12921773685513], [-75.02057228005175, 40.13227559885376], [-75.01795079475555, 40.1348493174986], [-75.01496568865494, 40.13792673459656], [-75.01456067078037, 40.13768065893307], [-75.0138684262985, 40.13725936442157], [-75.01223394265399, 40.136258288870415], [-75.01145933375201, 40.13578384504616], [-75.01062219911778, 40.13527108950435], [-75.01042775736174, 40.13515198930369], [-75.00946320264039, 40.13457113553308], [-75.00909381736882, 40.134356185708235], [-75.00833596776289, 40.1339151761605], [-75.00690178558112, 40.13308056182538], [-75.00595861235607, 40.13253191330906], [-75.00327001426656, 40.13096784691968], [-75.00095172285465, 40.129611280464566], [-74.99974011719799, 40.12890703669493], [-74.9985346905457, 40.12819793818561], [-74.9978850588362, 40.12781794116706], [-74.99780190241209, 40.12790374778628], [-74.99757220204631, 40.12811959877898], [-74.99744965541919, 40.12825118330879], [-74.99419528808693, 40.13151014669864], [-74.99384688724413, 40.13185471136569], [-74.99367317732383, 40.13173436666953], [-74.99350785278044, 40.13161576347745], [-74.99343106095644, 40.13155152365505], [-74.99335533436061, 40.13146118845349], [-74.99321078471104, 40.131319865993845], [-74.99310093956477, 40.131185178047396], [-74.99299676270985, 40.131050626760704], [-74.99292156692285, 40.13094724398734], [-74.99284088018882, 40.130816157055825], [-74.99278026356792, 40.130726185458435], [-74.99275110516915, 40.13060649049591], [-74.99274390324655, 40.13050473851017], [-74.99277175782396, 40.13042414137247], [-74.99281359908359, 40.1303017972717], [-74.9929023373726, 40.13021177663748], [-74.9930469675919, 40.13018839744057], [-74.99310816805531, 40.13005490803291], [-74.993100548191, 40.1298936480917], [-74.9931600387094, 40.129778982289196], [-74.99327813756538, 40.12973392528314], [-74.99338897696153, 40.129704655558946], [-74.99350270793782, 40.12965078758715], [-74.99350258578647, 40.12951437573597], [-74.99344940499783, 40.12942748500944], [-74.99341711256507, 40.12917566099978], [-74.99342224211132, 40.12900309829395], [-74.99350627829726, 40.1287729279413], [-74.99366020157917, 40.12875340025432], [-74.99369171487793, 40.1286757929296], [-74.9937830750758, 40.12861413053864], [-74.99380348967514, 40.1284840181938], [-74.99366012652379, 40.12838335521616], [-74.99368703397506, 40.128209861928816], [-74.99366826208929, 40.12811363735725], [-74.99375206224478, 40.12791248437565], [-74.99389381834347, 40.127750450369135], [-74.99400459382454, 40.127676194932434], [-74.9941000243865, 40.12760737452182], [-74.99423670784721, 40.12750036439918], [-74.99440737836564, 40.12727807307649], [-74.99447276364499, 40.12711130801509], [-74.99452646102851, 40.12695296893941], [-74.99454409430443, 40.12668202702574], [-74.9944807001155, 40.12652088068956], [-74.99442639881008, 40.126415097107525], [-74.99435025872926, 40.12621882018101], [-74.99427589196361, 40.126141577996655], [-74.99415325042847, 40.12608930072979], [-74.99392432087171, 40.12604753438069], [-74.99348109976557, 40.12599918257441], [-74.99314711869496, 40.12593748455393], [-74.99287616866249, 40.125906320763235], [-74.9926359106685, 40.12591071823606], [-74.9923637235236, 40.12593321422704], [-74.99204396969058, 40.125986496201385], [-74.99170214125444, 40.12607117157965], [-74.99145379683662, 40.12613486977064], [-74.99106628732451, 40.12620393596334], [-74.99078200041933, 40.12626822208866], [-74.9906201734298, 40.12629626404043], [-74.99039532413906, 40.12625086354251], [-74.99029392602662, 40.12623039113767], [-74.99008122672589, 40.12623109067799], [-74.98974081450858, 40.12623452928292], [-74.9895593341608, 40.12623452823697], [-74.98933784425813, 40.126195834500834], [-74.98915583444865, 40.12616244294436], [-74.98905875193762, 40.126109321214216], [-74.98904187525785, 40.12601313939742], [-74.98901219261161, 40.125906494258736], [-74.98898410602332, 40.125760704715326], [-74.98906950887601, 40.125601677456196], [-74.98901350705765, 40.12547988794097], [-74.9889384974872, 40.125418589031064], [-74.98879745063422, 40.12530781757151], [-74.98870376831839, 40.12512490064517], [-74.98850020774394, 40.12469264952626], [-74.98848268484002, 40.12456597722211], [-74.98838980683794, 40.12427061582366], [-74.98836165835336, 40.12417271247097], [-74.98824027051452, 40.12404354766518], [-74.98805750308202, 40.1239593439921], [-74.98783896771224, 40.12394103529547], [-74.98770654101158, 40.123897221980116], [-74.98754265877153, 40.123790255182094], [-74.98738521497013, 40.12366457634058], [-74.98731469498354, 40.123585971982386], [-74.9871948402606, 40.1235119852043], [-74.98704500171455, 40.123477910475984], [-74.98684418330842, 40.12332652032373], [-74.98666945185785, 40.12316124321139], [-74.98651902950084, 40.12304879274083], [-74.98642454740087, 40.12304797297941], [-74.98624330656364, 40.123135040242815], [-74.98603639097097, 40.12324906180734], [-74.98591959548023, 40.12333187281942], [-74.98567431656518, 40.12348270102307], [-74.9855275955225, 40.12360397328139], [-74.98513276405075, 40.12382956806535], [-74.98499843823157, 40.123901798125566], [-74.98486488113883, 40.12393196412], [-74.98469840033007, 40.12393521553624], [-74.98455245852941, 40.12389833072942], [-74.98445461633227, 40.1238408345315], [-74.98438616735899, 40.123757923261785], [-74.98435790537371, 40.12366291838033], [-74.98430592358461, 40.12359346490056], [-74.98421274002482, 40.12356074895703], [-74.98407853783876, 40.12356042451801], [-74.98397502306135, 40.123595663268794], [-74.9836767594915, 40.123608807072536], [-74.98354349950957, 40.123631721506506], [-74.98343809993273, 40.123620478076916], [-74.98313696708402, 40.12344925398773], [-74.98290564151625, 40.12332759496191], [-74.98281907207792, 40.12327182017356], [-74.98268134745676, 40.12314951147065], [-74.98261095951418, 40.123021566745926], [-74.98258500724079, 40.12291646013414], [-74.98259313937157, 40.12276355858768], [-74.98273754554711, 40.1225370250372], [-74.98275626640915, 40.12244895670757], [-74.98272240401374, 40.12235236496688], [-74.98263348621425, 40.122215268243], [-74.98247616214583, 40.12192487866225], [-74.98229183649046, 40.12190230320981], [-74.98219181957151, 40.12180557160739], [-74.98225143867948, 40.12168801186797], [-74.98237828163757, 40.121521280553715], [-74.98238815087403, 40.12141848488436], [-74.98241194768732, 40.12129861222322], [-74.98245450499472, 40.12122852887616], [-74.98260003717536, 40.12118269249207], [-74.98276958654986, 40.1211504948091], [-74.9829306993569, 40.121093421818045], [-74.98300223393417, 40.12100807497506], [-74.98306751447676, 40.120890650179], [-74.983080804259, 40.12079664466655], [-74.98307769441928, 40.12064129742954], [-74.98303328175004, 40.12045593308441], [-74.98298283921916, 40.12034878383909], [-74.98292129453237, 40.120282001848466], [-74.98278764029821, 40.120222189804174], [-74.98269367366333, 40.120139390472424], [-74.98261806292406, 40.120046873290725], [-74.98251456218918, 40.11998923817729], [-74.98237093233877, 40.1199422464889], [-74.98216409935375, 40.11991550221207], [-74.9819809850239, 40.119909643010125], [-74.98183315979003, 40.11991914556726], [-74.9816972476433, 40.11996085947256], [-74.98158700540135, 40.12002205591612], [-74.98150715492436, 40.12007963179768], [-74.98135807846693, 40.120142795423035], [-74.98120375893839, 40.12017245535031], [-74.98105221429736, 40.12018041574893], [-74.98086939545769, 40.12016730742784], [-74.9807250555385, 40.12013771056408], [-74.98041188790387, 40.120076475793724], [-74.98029098448727, 40.1200053594499], [-74.98010425541783, 40.11985017926239], [-74.97996529974716, 40.11973470075871], [-74.97985040050135, 40.119639213251936], [-74.97973664437417, 40.11953199064375], [-74.97959940390363, 40.11942129890018], [-74.97946881752101, 40.119378971700826], [-74.97928311461659, 40.119344022453376], [-74.97913192604561, 40.11934328185931], [-74.97900787828966, 40.1193722175273], [-74.97889067491155, 40.11941873381068], [-74.97879907649181, 40.119486182472166], [-74.97864531187494, 40.11953689403562], [-74.97847810794664, 40.11950021323935], [-74.97836652680947, 40.11945544049511], [-74.97824259706185, 40.11948147676035], [-74.97797525333478, 40.11959402646026], [-74.97773653771272, 40.11965357566717], [-74.97764600532771, 40.11969492631858], [-74.97756726385114, 40.11979460879553], [-74.97751936128212, 40.12001838357799], [-74.9773824442252, 40.12006151984426], [-74.97724636119099, 40.12006114191805], [-74.97714197536872, 40.12002524669148], [-74.97704072411415, 40.119958955574155], [-74.97692890597693, 40.119919978588435], [-74.97679447375349, 40.11992544460344], [-74.97661135285827, 40.11996601317583], [-74.9763984801125, 40.12004069461639], [-74.97613632527936, 40.12014175686918], [-74.9760656741631, 40.1202053538645], [-74.97602865573337, 40.120278469144544], [-74.97604798396799, 40.12040663733858], [-74.97593059763722, 40.12045749843611], [-74.97577268928615, 40.12041305811775], [-74.97572783943329, 40.120284998611616], [-74.97567123948349, 40.1201900338411], [-74.97556614203015, 40.12017153673227], [-74.97538963277015, 40.12018904420357], [-74.97522598541474, 40.12021557057682], [-74.97510046902921, 40.12021109022837], [-74.97497194983922, 40.12016445381979], [-74.97480549897833, 40.120074818390854], [-74.97468767057562, 40.11999796644932], [-74.97461185960975, 40.119910518223364], [-74.9745359275946, 40.119849188974094], [-74.97442653084751, 40.119797207882335], [-74.9742871477504, 40.11978513743176], [-74.97407535418373, 40.119787280378276], [-74.97360768030312, 40.119806464009066], [-74.97336614764144, 40.11979627827101], [-74.97311068709377, 40.11977995191179], [-74.97299106726703, 40.11979302657531], [-74.97281919105099, 40.11981281896032], [-74.97267181455953, 40.119788218775675], [-74.97255871643699, 40.11968825919607], [-74.97250570125584, 40.119552021189186], [-74.9724284117816, 40.11950081544841], [-74.97223888836929, 40.11942077662379], [-74.97205575095256, 40.11930025986093], [-74.97193297444045, 40.11920587049832], [-74.97185840313676, 40.119134414527075], [-74.97178478526581, 40.11903976009768], [-74.97170976553542, 40.11888702760334], [-74.97160274498218, 40.1188002748363], [-74.97149424481319, 40.11872654540102], [-74.97129618915099, 40.1185780959754], [-74.97120676448317, 40.11845403754876], [-74.97114123532079, 40.11834651983752], [-74.97101974486496, 40.11810559262142], [-74.9709138774968, 40.11792163987746], [-74.97084240830002, 40.1177515775754], [-74.97075038445179, 40.11764486998256], [-74.97061357512354, 40.11752401882371], [-74.9704511062578, 40.11738368246097], [-74.97034660159044, 40.11718960430663], [-74.97026773623337, 40.11708466508946], [-74.97017841940855, 40.11700414262678], [-74.97003398180668, 40.11695421419456], [-74.96989070229579, 40.1169681633536], [-74.96977538222899, 40.11701471504024], [-74.96961872190718, 40.11698625679075], [-74.96947894996535, 40.11691467242613], [-74.96932483964085, 40.11684709602135], [-74.96920228822546, 40.11681655966739], [-74.9690859712698, 40.11684131942042], [-74.9689164285201, 40.11687349700147], [-74.96868520942675, 40.11693465942787], [-74.96843952075207, 40.11702594286368], [-74.96831959234572, 40.1170926980655], [-74.96821630091362, 40.11716856176311], [-74.96812458171257, 40.117215683673145], [-74.96803450750106, 40.1172918660717], [-74.96789019155149, 40.117400115305706], [-74.96773200301362, 40.117523988464775], [-74.96753970498874, 40.117649941113235], [-74.9674834750638, 40.11779950161915], [-74.9674614374426, 40.11787587919556], [-74.96735343056804, 40.117928410187], [-74.96712222242492, 40.117943130495256], [-74.96694965359058, 40.11800280658301], [-74.96672103343944, 40.11804661220493], [-74.96653260089148, 40.11807832915238], [-74.96638376413878, 40.11811245683492], [-74.96607916757638, 40.11823423701863], [-74.96591951833074, 40.118301478900214], [-74.96577268884946, 40.11833275115982], [-74.96559196896969, 40.118406737845646], [-74.96543019396812, 40.11847973319444], [-74.96533250088125, 40.11855718161553], [-74.96526018943926, 40.11861492728163], [-74.96514763896454, 40.11866299316389], [-74.96499291483178, 40.118656343623556], [-74.96483536722802, 40.11862640669265], [-74.9647329398482, 40.11858909669982], [-74.96462727083852, 40.11853864977195], [-74.96453376503183, 40.1184681800264], [-74.96448764842168, 40.11839450417565], [-74.96450736047414, 40.11823680585786], [-74.9644875196328, 40.118121682868896], [-74.96441676121945, 40.11798065781134], [-74.96433255898638, 40.1178218911196], [-74.96428035539026, 40.11762036609921], [-74.96420550185364, 40.1173950744162], [-74.96413528486632, 40.1173131518111], [-74.96399708852267, 40.11722314129124], [-74.96382918768471, 40.11712329562558], [-74.96373455468749, 40.11708036972731], [-74.96357465411043, 40.11703876634753], [-74.96340959849404, 40.1169847003448], [-74.96329353805959, 40.11688828892024], [-74.96321947390042, 40.11675879051246], [-74.96317383581372, 40.116674623670896], [-74.96314983322998, 40.11649879523493], [-74.96314050777443, 40.1163578065179], [-74.9631547381758, 40.11619562061336], [-74.96313235561803, 40.116096399988464], [-74.9631137485702, 40.11599726906], [-74.96311043878094, 40.11587093698896], [-74.96314587676885, 40.11579053093015], [-74.9632483766372, 40.11564209551682], [-74.96332246230332, 40.11549514569606], [-74.9633942125015, 40.11529009400465], [-74.96341265501594, 40.115209276000215], [-74.96334801694702, 40.11512644458324], [-74.96324764071571, 40.11499340701054], [-74.9631444705759, 40.11476742726126], [-74.9630999252316, 40.114609621509736], [-74.96324780056486, 40.11446083336213], [-74.96345602581059, 40.11420031586229], [-74.96366871303304, 40.11399214937468], [-74.96399992451454, 40.11368237063091], [-74.96409025601378, 40.11355395348697], [-74.96413749869085, 40.11346222377605], [-74.96415535231249, 40.11337268525479], [-74.96413644891938, 40.1132808036394], [-74.96402096391904, 40.113009539385665], [-74.96391844543861, 40.11262975324262], [-74.9638774580994, 40.112431401967754], [-74.96388250940994, 40.112193532423404], [-74.96387898647576, 40.1120033461688], [-74.96384869535596, 40.11191263836298], [-74.96378309280428, 40.11173836100134], [-74.96377557767543, 40.11164530452999], [-74.96379485422027, 40.111544189323716], [-74.96385070057904, 40.111472985592656], [-74.96393417383017, 40.111373425946965], [-74.96404481260235, 40.11121067363387], [-74.96410387706898, 40.1110611851694], [-74.96411973302025, 40.11095127998503], [-74.96411977237734, 40.11085840658203], [-74.96403911400388, 40.11070553173609], [-74.96390145962403, 40.110559980986196], [-74.96383765607658, 40.110456854381745], [-74.96383934385922, 40.11036982471464], [-74.96381143583622, 40.11022112937438], [-74.963745172204, 40.11008601721508], [-74.96370887785643, 40.10995743417731], [-74.96370879621225, 40.10986746107558], [-74.96377020519976, 40.10975285602159], [-74.9638898084259, 40.10960193053898], [-74.96397681595, 40.10950826215481], [-74.96407360148214, 40.10945256031356], [-74.96423339141067, 40.10942740937499], [-74.96440812902686, 40.10949839617235], [-74.9645076215663, 40.10946888072424], [-74.96460110813432, 40.1094014900223], [-74.96467843512309, 40.10931339131839], [-74.96473678175828, 40.10918129840122], [-74.96476348935374, 40.10908326543434], [-74.96480860228478, 40.108997287725906], [-74.96490510709901, 40.1089023980248], [-74.96508711155552, 40.10879651821489], [-74.96520452139433, 40.10865279376601], [-74.96538552333612, 40.10838726082454], [-74.96551491521684, 40.108227863806526], [-74.96557978452094, 40.10814498190638], [-74.96558395061751, 40.10806555604411], [-74.96550238324046, 40.107980864075955], [-74.96543067252851, 40.10788625388897], [-74.96536723004647, 40.10777442889945], [-74.96529412593388, 40.10762173604106], [-74.96521076588365, 40.107442675354456], [-74.96512196496265, 40.107304114824885], [-74.96501650930959, 40.107202880458296], [-74.96472482099311, 40.1071725965749], [-74.96442003531749, 40.10713909226683], [-74.96419407038636, 40.10711910553015], [-74.96395677513556, 40.107098842885186], [-74.9637089907015, 40.107058011779365], [-74.96351561716939, 40.10698076556588], [-74.96333488205855, 40.10687190125946], [-74.96324831098964, 40.10677112471085], [-74.9632120071881, 40.10665100135869], [-74.9632683414159, 40.10655974021317], [-74.96338775907506, 40.10650745210231], [-74.96346437237705, 40.10648032330571], [-74.96359454454354, 40.10643994290029], [-74.96365758025517, 40.10637761973227], [-74.96366918543235, 40.10627922187831], [-74.96361603929876, 40.106100891211604], [-74.96369137662307, 40.10596920969179], [-74.96378485917754, 40.105901819636934], [-74.9639060841823, 40.10580317682134], [-74.96396204610612, 40.10572907177049], [-74.96394415798275, 40.105612545068865], [-74.96379597945818, 40.10553929768364], [-74.96359104385553, 40.10546757779541], [-74.96339791446555, 40.10538453427425], [-74.96318284504194, 40.105283544474474], [-74.962963164746, 40.10520275805894], [-74.9626919154668, 40.10513523365247], [-74.96255447219637, 40.10507675664639], [-74.96249775198542, 40.1049854102411], [-74.96242759983974, 40.104853103358295], [-74.9624316534999, 40.10475452338473], [-74.96246627331722, 40.10464797656316], [-74.96253801424646, 40.1045118536878], [-74.96237672471584, 40.10434396220508], [-74.96209043267068, 40.1041367593823], [-74.96199136750904, 40.10401826282574], [-74.96176561224028, 40.10380962481303], [-74.96156330892553, 40.10367411403533], [-74.96140110953917, 40.103574403016644], [-74.96122698558308, 40.1034889133785], [-74.96114017300145, 40.103435546349274], [-74.96101844359531, 40.1033213243334], [-74.96098827939214, 40.103227718057234], [-74.96099352798086, 40.10310014169535], [-74.96102317699925, 40.103022499139044], [-74.96108806584733, 40.1027773738771], [-74.9611975256981, 40.102597183444516], [-74.96120102805526, 40.102420225558284], [-74.96123341984755, 40.102275895291584], [-74.96128894444362, 40.102120514932956], [-74.96128045155375, 40.1019824483342], [-74.96117649137744, 40.1018681879942], [-74.96110006443077, 40.101796677407464], [-74.96106000262057, 40.101668001835556], [-74.96112407504828, 40.101396736449274], [-74.96122488894056, 40.10128889520469], [-74.96139308776735, 40.101150760717616], [-74.96147619296396, 40.10105990114736], [-74.96164168712644, 40.10089557950857], [-74.96169979393106, 40.10076928698368], [-74.96174255931354, 40.10064842615592], [-74.96176668581465, 40.10052130854028], [-74.96179907553315, 40.100376977195545], [-74.96184541778801, 40.100169133300874], [-74.96185253345196, 40.10008803990201], [-74.96188848050542, 40.09990316362808], [-74.96193100648846, 40.099788102552125], [-74.96199406049067, 40.099679342223226], [-74.96201864140038, 40.09958706386156], [-74.96198434418078, 40.0995020637502], [-74.96191642295962, 40.09940754288477], [-74.96181428304273, 40.099317994054964], [-74.96173750165367, 40.09925518410154], [-74.96167842327168, 40.09917538753953], [-74.96175669636678, 40.0990640950242], [-74.96206937522757, 40.09876693282772], [-74.96207662896857, 40.09863650451015], [-74.96190666953866, 40.0984959727095], [-74.9617225418011, 40.098378315842666], [-74.96160518328142, 40.098291302709356], [-74.96158634719137, 40.09819797039727], [-74.96165860004366, 40.09809523810618], [-74.96177331562501, 40.09801675545612], [-74.96180876655832, 40.097889912503334], [-74.96178710750394, 40.09777329380282], [-74.9617217725669, 40.097707858160305], [-74.96161784668656, 40.09766180201515], [-74.96141293836342, 40.097590078235875], [-74.96118927222231, 40.09751499576082], [-74.96105856058438, 40.097476997244186], [-74.96092276389942, 40.09747080023532], [-74.96078954638355, 40.097493689224166], [-74.96067803104046, 40.097540323516256], [-74.96056746872704, 40.09756376196426], [-74.96046163514461, 40.09756409438816], [-74.96007657891424, 40.097461876208584], [-74.95973257710463, 40.097372260851245], [-74.95962523555662, 40.09731741377516], [-74.9594744989043, 40.09721507453958], [-74.95937399268634, 40.09717780820223], [-74.95876548627052, 40.096899039666354], [-74.95851430034554, 40.09680865469869], [-74.95825066194955, 40.09669486590342], [-74.95816657239854, 40.09662607029507], [-74.9580938923291, 40.096509662320166], [-74.95799490376446, 40.096389713851764], [-74.95765135894611, 40.096105646749336], [-74.95735317370796, 40.09595909061887], [-74.9572076044577, 40.09591492102114], [-74.95705730675867, 40.095893856147875], [-74.95689802502051, 40.095907399328425], [-74.9566389075855, 40.095959150293666], [-74.95646086677436, 40.09596933556449], [-74.95628497762564, 40.09592733032099], [-74.95618543097287, 40.09586686371889], [-74.95609058057512, 40.09573830698621], [-74.95611264839714, 40.095615494259576], [-74.95583640361829, 40.09525759748484], [-74.9557583653384, 40.09513380038586], [-74.9557595489431, 40.09501338331986], [-74.95587915493088, 40.094724605366636], [-74.95600706377722, 40.09446360022027], [-74.95623346209133, 40.09401343633093], [-74.95639087460387, 40.09372412604626], [-74.95640181776452, 40.09355025200715], [-74.95640095839518, 40.0933876996812], [-74.95638074249425, 40.09323628638063], [-74.95637269106219, 40.09306485216829], [-74.95645302212061, 40.092857837007095], [-74.95668999695222, 40.09247177960124], [-74.95682222258692, 40.092289244195165], [-74.95694085382434, 40.09216152051755], [-74.95706373630678, 40.09202229237414], [-74.95711548804199, 40.091866822224674], [-74.95719698471487, 40.09167724821423], [-74.95728517503632, 40.09155459112615], [-74.95744112074948, 40.09134650831758], [-74.95747160812206, 40.09124857047232], [-74.95764213077516, 40.0911453266044], [-74.95781370059555, 40.090833138751776], [-74.95795906082304, 40.09056094710358], [-74.95797821940813, 40.090462733962696], [-74.95796304502679, 40.09037239214202], [-74.9579075408016, 40.09025204794809], [-74.95782231122263, 40.09011937309264], [-74.95779215612944, 40.09002576586814], [-74.95778914310826, 40.08991540380297], [-74.95785827330144, 40.08979663551961], [-74.95802891227677, 40.08969049163477], [-74.95811173142842, 40.089560448074124], [-74.95811555178857, 40.08946766437731], [-74.95811454572612, 40.089354449615925], [-74.95815351448273, 40.08927993382665], [-74.95824139797537, 40.08916452500722], [-74.95822879134455, 40.08901184524645], [-74.95818032996581, 40.08872043554952], [-74.95800915113314, 40.088243196130925], [-74.95786822721342, 40.08790310149964], [-74.95771263675732, 40.08764391471092], [-74.9576079809796, 40.08720311986009], [-74.95762291135141, 40.08706997478536], [-74.9580162109943, 40.08683283017598], [-74.95802600041833, 40.08659507602561], [-74.95803278313677, 40.08647624481164], [-74.95802460773955, 40.08630771097548], [-74.95806425225537, 40.086170813108446], [-74.95820216028376, 40.086033397931644], [-74.95822382526586, 40.085874296023924], [-74.95821450201854, 40.08564188234166], [-74.95825042206582, 40.08527415836413], [-74.95829712294712, 40.085057618206065], [-74.95833940705427, 40.08494835547422], [-74.95862611131385, 40.084592527228246], [-74.95867823230348, 40.08438192150736], [-74.95858816083263, 40.08427524979799], [-74.95842092324301, 40.08420733774501], [-74.95836434900353, 40.08411308799784], [-74.95837182172221, 40.08402329625386], [-74.95840176734495, 40.08393840525309], [-74.95859127838324, 40.08392414323246], [-74.95872069406991, 40.08390116506728], [-74.95890184992464, 40.08372271569425], [-74.95896419799766, 40.08358491909451], [-74.95898289842745, 40.08345186635132], [-74.95894297197812, 40.08332029045303], [-74.95890610552568, 40.08320620302309], [-74.95901704696429, 40.08308119502889], [-74.95913331519058, 40.082918584675745], [-74.95915306777049, 40.08280587309673], [-74.95913034295927, 40.082715348937064], [-74.95903757227579, 40.08258249162527], [-74.95899927283814, 40.08250319866731], [-74.95907588300675, 40.082386063109766], [-74.95926814392355, 40.082370061103965], [-74.95966512082344, 40.082314399849274], [-74.95974238806396, 40.082303567007834], [-74.95985801389948, 40.08224832687534], [-74.95995325701332, 40.0821374469473], [-74.9600098001495, 40.08204884727716], [-74.96004905115942, 40.081921669099025], [-74.96007204635139, 40.081785326136774], [-74.96007671227004, 40.08167191390378], [-74.96007799941006, 40.08153504487056], [-74.96005971537338, 40.0814511254571], [-74.96004024952006, 40.08129037965196], [-74.96010570987941, 40.08117844232902], [-74.96017944313634, 40.081076721240095], [-74.9606259039805, 40.08079038634399], [-74.96081418558292, 40.08065137782424], [-74.96088220349698, 40.08058290873134], [-74.9609850982979, 40.080511946609434], [-74.96109777495953, 40.08041451032501], [-74.96127232265127, 40.08018668501864], [-74.96140483535991, 40.0800296281236], [-74.96152226619331, 40.07992228866674], [-74.96163439246631, 40.079838195165365], [-74.96174163623067, 40.07976466083418], [-74.96189285623186, 40.07966205055332], [-74.96198535025003, 40.07960129133098], [-74.9621058397999, 40.07947232314706], [-74.96213031811381, 40.07935271185449], [-74.96215518203701, 40.079117913887906], [-74.96219879028268, 40.07900878387991], [-74.96226872365817, 40.078893614574234], [-74.96233239783723, 40.078825040228445], [-74.96238653289808, 40.07877407663615], [-74.96248682278156, 40.07866350464332], [-74.96253280493795, 40.07854942303499], [-74.96249852328924, 40.07843172582277], [-74.96242979967485, 40.07825309063244], [-74.96242260095161, 40.07811100765712], [-74.96244394469112, 40.07801469414361], [-74.96251236960778, 40.077936217711645], [-74.96262828690277, 40.07786557101308], [-74.96318267365572, 40.07738484004166], [-74.96328574281962, 40.07720369423109], [-74.96339372536175, 40.0771144887099], [-74.96350474704495, 40.07705707908875], [-74.96363597570574, 40.07703688707247], [-74.96377899428731, 40.07704703246299], [-74.96432245829457, 40.077043513110574], [-74.96481054613699, 40.077165438262], [-74.96493188085668, 40.07718031354425], [-74.96504091549386, 40.07719599713985], [-74.965148051296, 40.077206220968435], [-74.96525421741462, 40.07721635091551], [-74.96544038515029, 40.07723421765086], [-74.96573511033144, 40.07725471421994], [-74.96603024649585, 40.077265202756344], [-74.96618243056821, 40.07726388115482], [-74.96629724518719, 40.077219916470604], [-74.96648834432457, 40.07711769602994], [-74.96659598022093, 40.07703682764955], [-74.96666915154685, 40.076948447512486], [-74.96674930682953, 40.07668994452809], [-74.96677379252641, 40.076516909823034], [-74.96682050111231, 40.07643790503121], [-74.9669402030141, 40.0763807006061], [-74.9672676468526, 40.07634522260966], [-74.96755112221653, 40.07632203482477], [-74.96780717414165, 40.076331573473695], [-74.96828170393493, 40.07631301094343], [-74.96874402870634, 40.07627411483709], [-74.96889214145376, 40.07626601242334], [-74.96908285648924, 40.07627897608996], [-74.96929524748076, 40.0763993103491], [-74.96947991074815, 40.076453865465815], [-74.96962686258466, 40.07647411507143], [-74.96978610465588, 40.07645960291672], [-74.96989990768837, 40.07638722918965], [-74.97001078599946, 40.076333147546435], [-74.97010904979206, 40.07626874524497], [-74.97025018729272, 40.076218733812205], [-74.97036742613606, 40.07622156960225], [-74.97051017169011, 40.07623837967644], [-74.97069213569767, 40.07625279689518], [-74.97083720292183, 40.07621289790571], [-74.97094035284289, 40.07613525649743], [-74.9710531446344, 40.07603447436548], [-74.97117027990238, 40.07593379715892], [-74.9712602656344, 40.075859175630335], [-74.97134727869772, 40.07575109295855], [-74.97138095363404, 40.075671769504446], [-74.97141442219036, 40.075597452811046], [-74.97139653928615, 40.07550352705863], [-74.97134839710093, 40.07540553298759], [-74.9712887295793, 40.07527052803402], [-74.9712316315386, 40.07517899519269], [-74.97123573174729, 40.07507892312442], [-74.97124851468415, 40.07497906281009], [-74.97127962459003, 40.074856271851594], [-74.97131832623661, 40.07476037491537], [-74.97136584477349, 40.07466135448893], [-74.97145107957475, 40.07459663518703], [-74.97159193923397, 40.07455329513424], [-74.971618569112, 40.07443373515477], [-74.9715748371766, 40.07433417540154], [-74.97148638872916, 40.07426525757462], [-74.97127013526364, 40.07413314518485], [-74.97107897971678, 40.07402501489192], [-74.97102704330784, 40.07391357140299], [-74.97103575842551, 40.073806933088406], [-74.97110471819212, 40.073715109117074], [-74.97119863239095, 40.07365059900637], [-74.97153792048043, 40.07343175005237], [-74.97173204420336, 40.07336131576828], [-74.97187248889232, 40.07332798171143], [-74.9720129369216, 40.07329464846803], [-74.97212828752855, 40.07323733548228], [-74.97221881743907, 40.073149370779944], [-74.97227108822958, 40.07304044679336], [-74.97229648565562, 40.072950906722994], [-74.97233111548009, 40.07284823503492], [-74.97241250049727, 40.07245286045425], [-74.97243355865558, 40.072363214573826], [-74.9725001510312, 40.072222918060405], [-74.97257371939335, 40.072124524136385], [-74.97265433303046, 40.07206637198485], [-74.97279641599361, 40.07199300853841], [-74.97291651707785, 40.07192579152796], [-74.9730619834403, 40.07187588331615], [-74.9732117943859, 40.0718260781077], [-74.9733802024007, 40.07174667315732], [-74.97350105118124, 40.071661108899875], [-74.97358391660255, 40.07154791545609], [-74.9736049716868, 40.07145827112839], [-74.97362385436797, 40.071368574310284], [-74.97366824377356, 40.071292848523456], [-74.97380646071099, 40.07120770449727], [-74.97397541142657, 40.07111495616597], [-74.9741176251625, 40.0710382549561], [-74.97425820387885, 40.0710015828951], [-74.97441587522754, 40.07097200136158], [-74.97461033024312, 40.070893221130845], [-74.97480017054443, 40.07082101057005], [-74.97489828421111, 40.07075993839606], [-74.97497984844728, 40.07067843388479], [-74.97503983983766, 40.07059306809202], [-74.97506998790081, 40.07049362593002], [-74.97509999470132, 40.0703975197176], [-74.97512099163596, 40.070256118073274], [-74.97509634345491, 40.07006186028319], [-74.9751046434313, 40.069965228978134], [-74.97516422454726, 40.06988987223098], [-74.97524931211711, 40.06982848523762], [-74.97534728750703, 40.069770747848224], [-74.97545787889761, 40.06972333310177], [-74.97558054057365, 40.06969958254904], [-74.97572220605018, 40.06963622369192], [-74.97596687130982, 40.069498553039736], [-74.9761833006568, 40.06941362564576], [-74.97640054799047, 40.06930868140618], [-74.97660774856126, 40.06923688523815], [-74.97673190691846, 40.069176440194866], [-74.9768269722155, 40.06908357343089], [-74.97687109358594, 40.068961095243665], [-74.9769103270948, 40.06885185474146], [-74.9770056168985, 40.06864713714278], [-74.97707756245333, 40.06848192130966], [-74.97715180188668, 40.06836684766548], [-74.97720324400308, 40.06827793697835], [-74.97726934416491, 40.06814931029942], [-74.97732851344432, 40.06808395797298], [-74.97745871910837, 40.067981920573025], [-74.9776269727749, 40.0679058444728], [-74.97785696553466, 40.067807884785346], [-74.97800812722319, 40.06772471616518], [-74.97815942476227, 40.067638213971016], [-74.97837054917967, 40.06757652753234], [-74.97861627153421, 40.067519012746146], [-74.97888099496791, 40.06742188693341], [-74.97909184669426, 40.06736687044966], [-74.97918140471873, 40.06730225004122], [-74.97941166455479, 40.06719761505796], [-74.97958033525174, 40.067058104670515], [-74.97971202302425, 40.06697279648664], [-74.97979174768422, 40.06688289603536], [-74.97984040867183, 40.06675551815952], [-74.9799084032363, 40.06663361450377], [-74.98004762338027, 40.066523444140216], [-74.98016418169048, 40.06643610016845], [-74.9802671710583, 40.06636178555352], [-74.98037761840621, 40.066317702170856], [-74.98051356836118, 40.066287589017335], [-74.98067570426821, 40.066254767466326], [-74.98075223552989, 40.066189832838035], [-74.98085685804622, 40.06607548924987], [-74.98092145233923, 40.06598355374982], [-74.98096692726357, 40.065827715907844], [-74.98094625650972, 40.065695327413714], [-74.98092063219168, 40.0655778457586], [-74.98096805301702, 40.06550935577075], [-74.98093027752608, 40.065434396469676], [-74.98076818185282, 40.06520352869084], [-74.98069204514626, 40.06508455202811], [-74.98067034061296, 40.06500976100377], [-74.98106055052514, 40.06492588830355], [-74.98096642260431, 40.064669071563905], [-74.98092547600625, 40.06450113291681]]]}}, {"id": "8120", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05460150362975, 40.04415792107146], [-75.05492781601713, 40.04385567168835], [-75.05561028491073, 40.0431883691441], [-75.05612301550626, 40.04264626875537], [-75.05670935146723, 40.04206037491096], [-75.05855594906858, 40.040312717870684], [-75.05879506193901, 40.04010164795467], [-75.06101051345323, 40.03801387425303], [-75.06106479422336, 40.03796318088107], [-75.06140380301757, 40.03813629649556], [-75.06154488245978, 40.03821427560114], [-75.06214677605868, 40.038546631227106], [-75.06268346286417, 40.03883432856052], [-75.06344313976948, 40.039269320376555], [-75.06449621821068, 40.03985446021455], [-75.06558187540165, 40.04044320316244], [-75.0660857896981, 40.04072975664135], [-75.06642601490118, 40.04093771954029], [-75.06675770935561, 40.04111460245521], [-75.06706596059117, 40.041297768499824], [-75.06739568625702, 40.04147925558724], [-75.06766325307836, 40.041635557581635], [-75.06798420272139, 40.04179847020789], [-75.06823563552051, 40.04194630812822], [-75.0685577882953, 40.04212473879472], [-75.06886529842217, 40.04229304231545], [-75.06920821257458, 40.042477206954615], [-75.06946025604138, 40.0426220306221], [-75.06976855750999, 40.042788664233946], [-75.0700275588608, 40.042931021514136], [-75.07034146085934, 40.04310166587641], [-75.07063400351964, 40.04327336991995], [-75.0710144394115, 40.04348418205174], [-75.07130585465983, 40.04364719900084], [-75.0716119804814, 40.04382430087064], [-75.0718666728502, 40.04395920354846], [-75.07224860971324, 40.044162562355126], [-75.07264598524705, 40.04439500937581], [-75.0732510924011, 40.04379731122706], [-75.07383656948787, 40.043175065259916], [-75.07443892565124, 40.04254487598299], [-75.07503370357503, 40.041941143862246], [-75.07545468513057, 40.04215513798341], [-75.07555346965913, 40.04220531304383], [-75.0765608830969, 40.042763955361195], [-75.07856631286752, 40.043905245218944], [-75.08035251915297, 40.04490616956516], [-75.08234451175854, 40.04599251847069], [-75.08300095783821, 40.046371493960706], [-75.08341587267958, 40.046600359614075], [-75.08365174732054, 40.046724542027356], [-75.08406675926334, 40.046964233443056], [-75.0856951039326, 40.04785186002135], [-75.08697553819498, 40.04856837334297], [-75.08763612729165, 40.04704383759833], [-75.08794833282026, 40.04634483545947], [-75.08831388614998, 40.045515125514], [-75.08897663424665, 40.044333503559685], [-75.0903533819722, 40.04298457247651], [-75.094176025479, 40.04502710432539], [-75.09453467758765, 40.04522327325332], [-75.09479268570398, 40.0453649583314], [-75.0951428672017, 40.04555226333374], [-75.09600049007513, 40.04600379173299], [-75.09697175151327, 40.04656599718221], [-75.09801858961916, 40.04709794044168], [-75.09880087535097, 40.04753158377558], [-75.09956065794458, 40.04797498853239], [-75.10039563010359, 40.04869298730429], [-75.10133641421142, 40.049540434137114], [-75.1018914465809, 40.05006629533136], [-75.10281166625275, 40.0508685864897], [-75.1030246267211, 40.051089122973224], [-75.10310487206245, 40.05119338851588], [-75.10075000741492, 40.052589800378406], [-75.10016462242423, 40.052947969102206], [-75.09983039549444, 40.05315383660878], [-75.09937540599458, 40.05330003122185], [-75.09911047209413, 40.05356349100261], [-75.09880255946189, 40.05371498814136], [-75.09846339383841, 40.05388885033198], [-75.09766560795609, 40.05436649656119], [-75.09748783614391, 40.05447997074385], [-75.09650501415967, 40.05517207626254], [-75.09575755844112, 40.0556306342029], [-75.09511934619522, 40.05593782266534], [-75.09468071935262, 40.056370745767495], [-75.09361503390471, 40.05741817620406], [-75.09274064284068, 40.05829937415294], [-75.0920750089637, 40.05896683336336], [-75.08976380729703, 40.06129389020495], [-75.08900285768611, 40.06205226329], [-75.08823967373392, 40.06281283793292], [-75.08746453554552, 40.06358530745863], [-75.08789701681395, 40.06383695621994], [-75.0887650890161, 40.06434205694387], [-75.08944617660568, 40.06473751202954], [-75.09037058875349, 40.06527619765871], [-75.08902882748413, 40.066599282792986], [-75.08723266257306, 40.06839116981807], [-75.08707644886283, 40.068565824165354], [-75.08531032224032, 40.068513075978196], [-75.08462537770777, 40.06836930728484], [-75.08432206063496, 40.06830338858394], [-75.08372661331803, 40.068174970048695], [-75.08204090213172, 40.06805242820077], [-75.08096567099172, 40.06797552436967], [-75.07890160880922, 40.06683635632901], [-75.07805155797986, 40.06636177054576], [-75.0778873699058, 40.066227749755065], [-75.07771866653502, 40.066036330276916], [-75.07767354595893, 40.06596702456253], [-75.0775074708497, 40.06568457988809], [-75.07736001106932, 40.0654320643241], [-75.07715589235868, 40.06504476333175], [-75.07599116443163, 40.06434346148916], [-75.0753759601058, 40.06397178792418], [-75.07354324395854, 40.062936481673376], [-75.07330491095185, 40.06281311335858], [-75.07294842940784, 40.06261524742156], [-75.07275111584283, 40.06252154435866], [-75.07243794149772, 40.06242514102399], [-75.07214134544577, 40.0623757177902], [-75.07128377583618, 40.062285371006226], [-75.07086082608126, 40.06222798789649], [-75.07053197167276, 40.06213715241198], [-75.07031102114136, 40.06205477404607], [-75.06988024443862, 40.061825341066864], [-75.06502668978634, 40.067345239044975], [-75.06405818719493, 40.06677025634781], [-75.0630408094246, 40.066144789190346], [-75.06255763313197, 40.06583861502309], [-75.06218147795423, 40.06560470005923], [-75.06133659676387, 40.065057789812315], [-75.05962484879859, 40.06397538184036], [-75.05769815107087, 40.062788811856926], [-75.05614632296499, 40.06183339815738], [-75.05418457187895, 40.06071898139321], [-75.05240827802209, 40.059740597259314], [-75.05202317645325, 40.05953669355135], [-75.05058270628449, 40.058770569622034], [-75.04856087951997, 40.05766348831064], [-75.04814635480116, 40.057439439991185], [-75.04780547251835, 40.05724869132331], [-75.04739752439824, 40.05703210686795], [-75.0470043191248, 40.056819119641574], [-75.0468569505688, 40.05673893712926], [-75.04667970088784, 40.05664514380146], [-75.04653734773393, 40.05656862179591], [-75.0473796338358, 40.05574498363881], [-75.04749817741373, 40.05564927592735], [-75.04774962504511, 40.05536430870876], [-75.04905018513644, 40.05407708512535], [-75.04964729232861, 40.05347835338288], [-75.04993761409428, 40.05319662649828], [-75.05015918593955, 40.052955041413384], [-75.05034323522091, 40.05268789358886], [-75.05042475255875, 40.05257628439179], [-75.05046568303189, 40.052508291736785], [-75.0505184779635, 40.052414280789066], [-75.05071463051047, 40.0519831306507], [-75.0508348505287, 40.05150787577755], [-75.05089050413272, 40.051103695807655], [-75.050905547692, 40.05075968333635], [-75.05090916889004, 40.050580507726], [-75.05105274198593, 40.049070751012366], [-75.05112820905771, 40.04831042708993], [-75.05114765733573, 40.048114481781674], [-75.05134894495073, 40.04754785826596], [-75.05168691105588, 40.0469585760105], [-75.05221162133299, 40.046387949574495], [-75.054288575661, 40.04444780416778], [-75.05460150362975, 40.04415792107146]]]}}, {"id": "8130", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.03517055641647, 40.046028330960695], [-75.03477748750193, 40.045962015600765], [-75.03440609108267, 40.04597224477433], [-75.03409158792017, 40.046002825622864], [-75.03380622954349, 40.04612913694608], [-75.03361920109269, 40.04627044347879], [-75.03346258149377, 40.04647583001222], [-75.03332686781721, 40.04677675296022], [-75.03324855624916, 40.0470853686681], [-75.03320445816153, 40.04736311338003], [-75.0331868430721, 40.04759713188297], [-75.03311879573305, 40.04785530063414], [-75.03301133821068, 40.04806818649151], [-75.03282898814976, 40.048298307630084], [-75.03275168774034, 40.048581603964], [-75.03275751269969, 40.04884785701076], [-75.03275991877743, 40.04899364306544], [-75.03273512646496, 40.04909855374293], [-75.03260442716415, 40.049376466372244], [-75.03250342901752, 40.04963385627425], [-75.03239963980208, 40.049960878349516], [-75.03215450129062, 40.050167550009796], [-75.03202415569447, 40.05027830250542], [-75.03182266798144, 40.050368575575696], [-75.03155807297706, 40.05038765937087], [-75.031386988123, 40.050362728796465], [-75.03116007921557, 40.05032966570556], [-75.0307793707139, 40.05027418916789], [-75.03009026470946, 40.05018817715169], [-75.02964648888532, 40.05015232518487], [-75.02921817104463, 40.05014218156038], [-75.02896181092363, 40.050161453510526], [-75.02865653966767, 40.05016689560829], [-75.02840221191596, 40.05013552473676], [-75.02824774092592, 40.050081177066225], [-75.02811254123834, 40.04995758832029], [-75.02802131823515, 40.04976534485357], [-75.02790512977876, 40.049578844136946], [-75.02772925615429, 40.04944161774527], [-75.02750218118987, 40.049347532053694], [-75.02701684656185, 40.04932018735995], [-75.02632430049782, 40.049447076724384], [-75.02596530973688, 40.048541809939096], [-75.02611039141759, 40.0481733387064], [-75.03155191862186, 40.045684560606354], [-75.03016869967418, 40.0439114484632], [-75.03016869323982, 40.04391076080642], [-75.03016410524347, 40.043904924168594], [-75.0298614141997, 40.04349525557283], [-75.02980064871952, 40.04341301270909], [-75.02979997371571, 40.04341209927368], [-75.02976139230165, 40.04336168887477], [-75.0294660126119, 40.04297575213251], [-75.02941706930282, 40.04291180292833], [-75.0291616911158, 40.04257932260296], [-75.02894353306291, 40.042295299968515], [-75.02894201793717, 40.042293235801736], [-75.02894292119566, 40.042292900381796], [-75.02865759907105, 40.04190596333264], [-75.02842276364342, 40.041586206901506], [-75.02832845948224, 40.04145779947094], [-75.02825800979002, 40.04136678242306], [-75.03084342658859, 40.040418956773735], [-75.03133840827954, 40.04023903391241], [-75.03134158218617, 40.0402378808999], [-75.03170851182412, 40.04010744165081], [-75.03261303209376, 40.03977282657692], [-75.03342753323346, 40.03947455773396], [-75.03442434112202, 40.03912170984904], [-75.03627792045715, 40.03844215824022], [-75.03868784381856, 40.03755204667702], [-75.03885390792045, 40.03749116486106], [-75.04075351258349, 40.03679473373337], [-75.04168391253879, 40.036344090785576], [-75.04243452139467, 40.035962491064716], [-75.0432001642619, 40.035545489965806], [-75.04405452994727, 40.035097840094735], [-75.04467210428737, 40.03477220262877], [-75.04492768604423, 40.03464254968361], [-75.04693303678364, 40.03576355445415], [-75.04855944706433, 40.03666656703972], [-75.0474065050084, 40.03789343353875], [-75.04580687006829, 40.0395804105673], [-75.04742434954356, 40.040498315060965], [-75.04902811502865, 40.04141397292131], [-75.05222822387734, 40.04327245835874], [-75.054288575661, 40.04444780416778], [-75.05221162133299, 40.046387949574495], [-75.05220136259966, 40.04639470707811], [-75.05216045389054, 40.04642165805307], [-75.05166716612983, 40.0469581122058], [-75.05132919985556, 40.047547394403196], [-75.05112791207715, 40.04811401788436], [-75.05110862075935, 40.04830837382625], [-75.05112820905771, 40.04831042708993], [-75.05105274198593, 40.049070751012366], [-75.05090916889004, 40.050580507726], [-75.05090902067869, 40.05058782885867], [-75.050905547692, 40.05075968333635], [-75.05089050413272, 40.051103695807655], [-75.0508348505287, 40.05150787577755], [-75.05071463051047, 40.0519831306507], [-75.0505184779635, 40.052414280789066], [-75.05046568303189, 40.052508291736785], [-75.05042475255875, 40.05257628439179], [-75.05034323522091, 40.05268789358886], [-75.05015918593955, 40.052955041413384], [-75.04993761409428, 40.05319662649828], [-75.04964729232861, 40.05347835338288], [-75.04905018513644, 40.05407708512535], [-75.04774962504511, 40.05536430870876], [-75.04749817741373, 40.05564927592735], [-75.0473796338358, 40.05574498363881], [-75.04653734773393, 40.05656862179591], [-75.04645228389022, 40.05665642401393], [-75.04479205913208, 40.058370038156426], [-75.04452138806724, 40.05870458649961], [-75.04438569065395, 40.05890397388182], [-75.04432195723118, 40.05899761927773], [-75.04423684741798, 40.05912267367909], [-75.04413865112885, 40.0593298577121], [-75.042735081359, 40.062373930726196], [-75.04224674786106, 40.06353209298826], [-75.04117363314958, 40.06591649432094], [-75.04104427139312, 40.06586932828391], [-75.04095034198383, 40.06583508055774], [-75.04049503847756, 40.06567227941196], [-75.04019449967235, 40.065557479676315], [-75.03999409587853, 40.065413359947996], [-75.0397604831818, 40.065274793634096], [-75.03943991390388, 40.06504230084497], [-75.03918436982643, 40.06483351787988], [-75.03892109564133, 40.06461188044359], [-75.03869496649082, 40.06449249607631], [-75.03682078866517, 40.062937510440264], [-75.0365930000981, 40.06265599960139], [-75.03638120175484, 40.06193196037857], [-75.03622744441218, 40.0614467880024], [-75.03594479401579, 40.06109162811677], [-75.03586151897895, 40.06090591490791], [-75.0358693703198, 40.060709682823955], [-75.03593012745294, 40.06059861454617], [-75.03595833618175, 40.0605470460292], [-75.03602562691434, 40.060307864636904], [-75.0361185037693, 40.05963526721701], [-75.03616639645348, 40.05926257016379], [-75.03622696641376, 40.058985213663846], [-75.0362852568641, 40.058764828154175], [-75.03634987732259, 40.05838619085585], [-75.03635823343399, 40.0581772973824], [-75.03635264885071, 40.05793907699135], [-75.03634298892773, 40.05785761271243], [-75.03630637671064, 40.05761849905944], [-75.03634387671092, 40.05729941323421], [-75.03644386007977, 40.05706734004885], [-75.03663001924059, 40.05674226094827], [-75.03701576649881, 40.05616845250137], [-75.03722384815177, 40.0559135874657], [-75.03749186912516, 40.055603111547406], [-75.0376612884122, 40.055283972820995], [-75.0378549153302, 40.054978075943396], [-75.03840436577126, 40.05422755171946], [-75.03856998248837, 40.05400336223474], [-75.0387530873489, 40.0537542413913], [-75.03888701792384, 40.05349762093939], [-75.03900244889742, 40.053291255130254], [-75.03905072085828, 40.0531149862997], [-75.03905057765729, 40.052912228409426], [-75.03909592017588, 40.05260282952274], [-75.03912781387623, 40.05254164477889], [-75.03926557731987, 40.05227735905819], [-75.03949807952917, 40.051823479264854], [-75.0396385783606, 40.051402277498596], [-75.03969114277413, 40.051118395390674], [-75.03977145261283, 40.05075913536208], [-75.03982553438144, 40.05043727096335], [-75.03985187008364, 40.050190786255165], [-75.03981115234363, 40.049765308997756], [-75.03986850212037, 40.04915523222436], [-75.03993652512311, 40.04889705859395], [-75.0399855454556, 40.04870179674293], [-75.03957255389473, 40.04851464333907], [-75.03923116477951, 40.04839253909587], [-75.03895389871607, 40.04831629959168], [-75.03848123080721, 40.04817842149729], [-75.03823095507052, 40.04804579334495], [-75.03789235293517, 40.047854053551994], [-75.03767654382669, 40.04768421979736], [-75.03740586476825, 40.04744339356805], [-75.03719334721026, 40.047191268710314], [-75.03692964175026, 40.04698228604219], [-75.03658433201305, 40.046752367459256], [-75.03624003619049, 40.046497126936124], [-75.035883962518, 40.0463303129377], [-75.03554487024263, 40.04615122667316], [-75.03517055641647, 40.046028330960695]]]}}, {"id": "8140", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.9972646789298, 40.03157658769071], [-74.99840929180525, 40.030580559169564], [-74.99975901814408, 40.02960479363618], [-75.0015932214651, 40.028499635674116], [-75.00316023945895, 40.027502189715776], [-75.00633490899871, 40.02551540086163], [-75.00969202947779, 40.02346289089041], [-75.01210156445315, 40.021652540993706], [-75.01439595160497, 40.02017284569141], [-75.01569583843182, 40.01949405820048], [-75.01660844953228, 40.01907485929474], [-75.0178569563277, 40.01855237721734], [-75.01973985658044, 40.01788386821405], [-75.02145303888575, 40.017491993859835], [-75.02377146395851, 40.017068709017565], [-75.02658115512718, 40.01665813075844], [-75.0293708496235, 40.01628945858043], [-75.0331832422015, 40.021032183914976], [-75.03380917379319, 40.02190684150733], [-75.03443147882443, 40.022726690314514], [-75.03447210556332, 40.0228085548892], [-75.03448566390134, 40.022883532331115], [-75.03498362096369, 40.0234979270977], [-75.03506828680622, 40.023557653954924], [-75.03534610372795, 40.02395175515207], [-75.03581302378812, 40.0245736685611], [-75.03599028702791, 40.02482212471624], [-75.03612050834508, 40.024931492357474], [-75.03645284769156, 40.02536085689675], [-75.03668837866726, 40.025651600117925], [-75.03714187768846, 40.026165608298875], [-75.0375896136875, 40.02668081195321], [-75.03803847890595, 40.027189747406304], [-75.03845771205219, 40.02767336993102], [-75.03890723481716, 40.02818667827646], [-75.03938800441148, 40.028735407318045], [-75.03984251941257, 40.02924565417187], [-75.0402887380438, 40.029766993479576], [-75.04074283011289, 40.03027777969118], [-75.04118909288377, 40.03078748722589], [-75.0416361999487, 40.031300465562694], [-75.0420889110238, 40.03181769643146], [-75.0425383747686, 40.03232987949128], [-75.04298610898273, 40.03284195137486], [-75.04343476160835, 40.03335799679555], [-75.04375244475754, 40.033720142760444], [-75.04401611500334, 40.0340207114769], [-75.04467210428737, 40.03477220262877], [-75.04492768604423, 40.03464254968361], [-75.04693303678364, 40.03576355445415], [-75.04855944706433, 40.03666656703972], [-75.0474065050084, 40.03789343353875], [-75.04580687006829, 40.0395804105673], [-75.04742434954356, 40.040498315060965], [-75.04902811502865, 40.04141397292131], [-75.05222822387734, 40.04327245835874], [-75.054288575661, 40.04444780416778], [-75.05221162133299, 40.046387949574495], [-75.05220136259966, 40.04639470707811], [-75.05216045389054, 40.04642165805307], [-75.05166716612983, 40.0469581122058], [-75.05132919985556, 40.047547394403196], [-75.05112791207715, 40.04811401788436], [-75.05110862075935, 40.04830837382625], [-75.05112820905771, 40.04831042708993], [-75.05105274198593, 40.049070751012366], [-75.05090916889004, 40.050580507726], [-75.05090902067869, 40.05058782885867], [-75.050905547692, 40.05075968333635], [-75.05089050413272, 40.051103695807655], [-75.0508348505287, 40.05150787577755], [-75.05071463051047, 40.0519831306507], [-75.0505184779635, 40.052414280789066], [-75.05046568303189, 40.052508291736785], [-75.05042475255875, 40.05257628439179], [-75.05034323522091, 40.05268789358886], [-75.05015918593955, 40.052955041413384], [-75.04993761409428, 40.05319662649828], [-75.04964729232861, 40.05347835338288], [-75.04905018513644, 40.05407708512535], [-75.04774962504511, 40.05536430870876], [-75.04749817741373, 40.05564927592735], [-75.0473796338358, 40.05574498363881], [-75.04653734773393, 40.05656862179591], [-75.04645228389022, 40.05665642401393], [-75.04479205913208, 40.058370038156426], [-75.04452138806724, 40.05870458649961], [-75.04438569065395, 40.05890397388182], [-75.04432195723118, 40.05899761927773], [-75.04423684741798, 40.05912267367909], [-75.04413865112885, 40.0593298577121], [-75.042735081359, 40.062373930726196], [-75.04224674786106, 40.06353209298826], [-75.04117363314958, 40.06591649432094], [-75.04104856821186, 40.06619437066853], [-75.04027165133148, 40.06792050879335], [-75.03990055038933, 40.0687164982515], [-75.03952749808136, 40.0693585665246], [-75.03937274031372, 40.0695553420102], [-75.03895106634981, 40.07005670880712], [-75.03797590147553, 40.071078701239365], [-75.03688057928926, 40.072209186628385], [-75.0348403042355, 40.07430802573013], [-75.03394468660325, 40.07522585640025], [-75.03345632981974, 40.075733552485595], [-75.03265156130533, 40.076563913553244], [-75.03024499085504, 40.07905911048138], [-75.02936100367475, 40.07996554086386], [-75.02860591922072, 40.08077109526856], [-75.02844973853612, 40.08067939112584], [-75.02537845533197, 40.07894441699348], [-75.02371460278547, 40.07799573890452], [-75.02174937544991, 40.07695644903743], [-75.01714477252432, 40.074343800429524], [-75.0170511604494, 40.07429139164119], [-75.01683647482798, 40.074171198321956], [-75.01506505696598, 40.073179433645436], [-75.014088715379, 40.07264365237408], [-75.01312768506725, 40.07207268034328], [-75.01133066624226, 40.07118005144515], [-75.00727005000492, 40.06916284283319], [-75.00290365177997, 40.06668327635158], [-75.00020320019168, 40.06515197637998], [-74.99902373253308, 40.06448114410677], [-74.9984208088978, 40.06413807764871], [-74.99530548636974, 40.06236533704058], [-74.99451468543627, 40.06191530970193], [-74.99427698081958, 40.061782881163985], [-74.99395224082419, 40.061629044655696], [-74.99356775227025, 40.06149391799965], [-74.99321774729918, 40.061397389171425], [-74.99281403097854, 40.06133230332667], [-74.99239711762029, 40.06126941868098], [-74.99194572488256, 40.06116793486433], [-74.99170939033432, 40.06109679086137], [-74.99149351660745, 40.06100599428357], [-74.99130342505201, 40.06092588935296], [-74.99110105709491, 40.06082534327962], [-74.99085541386388, 40.06066080733073], [-74.99064230555005, 40.06050208736882], [-74.99051053375126, 40.060438488973645], [-74.9904325723008, 40.060397207455054], [-74.989286928798, 40.05937652147773], [-74.9879801607809, 40.05821631396604], [-74.98590682466101, 40.056378300947806], [-74.98529316777564, 40.05582904683217], [-74.98500302675573, 40.05557645381922], [-74.98475433761872, 40.055358582041585], [-74.98451795866875, 40.05514942559683], [-74.98439233134985, 40.055017035967204], [-74.9842573866046, 40.05490393180876], [-74.98415155670932, 40.05482814694793], [-74.98409878171032, 40.05478373231092], [-74.98401688146697, 40.054708509021076], [-74.98396572527261, 40.05462750125775], [-74.98379632094823, 40.05420356773441], [-74.98273352293714, 40.05301574562342], [-74.98229743001636, 40.05252025409304], [-74.98182371053878, 40.052047477411186], [-74.98158920688721, 40.051824814724505], [-74.98147989780368, 40.05171902695606], [-74.98093132226789, 40.05121469976086], [-74.98022845607794, 40.05058274545212], [-74.9766399576386, 40.04740753190659], [-74.978556593772, 40.046776920971546], [-74.97989203561042, 40.046340572217694], [-74.98059132219204, 40.04594380560141], [-74.98174496524592, 40.04506481578623], [-74.98267772211753, 40.044069039558025], [-74.98354833311693, 40.04303263159738], [-74.98494277204559, 40.04176918605419], [-74.98628044404798, 40.04094230870215], [-74.98770726511312, 40.039958475210966], [-74.98921273178432, 40.038655978629805], [-74.99046771078892, 40.03757014522302], [-74.99138517154653, 40.03677630839157], [-74.9940705153599, 40.034416675946346], [-74.99592322615307, 40.0327693789857], [-74.9972646789298, 40.03157658769071]], [[-75.02825800975391, 40.04136678332327], [-75.02840484907568, 40.04156181392152], [-75.02832845948224, 40.04145779947094], [-75.0282580103248, 40.041366783113986], [-75.02825800975391, 40.04136678332327]], [[-75.02967734942368, 40.043251881970015], [-75.02967748420446, 40.04325205688601], [-75.02967729438747, 40.04325180887595], [-75.02967734942368, 40.043251881970015]], [[-75.03074357479696, 40.04605429842213], [-75.03012985400888, 40.04633500936937], [-75.03085259565582, 40.04600443292508], [-75.03074357479696, 40.04605429842213]], [[-75.02714770611784, 40.04769893835468], [-75.02639597519511, 40.048042732551565], [-75.02611039141759, 40.0481733387064], [-75.0275913510811, 40.047496039407974], [-75.02714770611784, 40.04769893835468]], [[-75.02604481931499, 40.048339874814666], [-75.02596530973688, 40.048541809939096], [-75.02611039141759, 40.0481733387064], [-75.02604481931499, 40.048339874814666]], [[-75.02611572240293, 40.04892110857427], [-75.02612481482035, 40.04894403693681], [-75.02596530973688, 40.048541809939096], [-75.02611572240293, 40.04892110857427]], [[-75.0432001630908, 40.0355454899382], [-75.04243452139467, 40.035962491064716], [-75.0432001642619, 40.035545489965806], [-75.04405452994727, 40.035097840094735], [-75.0432001630908, 40.0355454899382]], [[-75.04075351141236, 40.03679473370573], [-75.04036436554968, 40.03693740614655], [-75.04075351258349, 40.03679473373337], [-75.04168391253879, 40.036344090785576], [-75.04075351141236, 40.03679473370573]], [[-75.03683287760813, 40.03823718981451], [-75.03627792045715, 40.03844215824022], [-75.03868784381856, 40.03755204667702], [-75.03683287760813, 40.03823718981451]], [[-75.0369064793127, 40.06302466339694], [-75.03712804351242, 40.06325799335081], [-75.03735112456283, 40.06345334240326], [-75.03750310075594, 40.06357098082033], [-75.03765381085454, 40.06372026648389], [-75.03788538907857, 40.06390947971823], [-75.03814966941594, 40.06410579957072], [-75.03838201066941, 40.06427602117927], [-75.03869496649082, 40.06449249607631], [-75.0368207935583, 40.06293751450016], [-75.0369064793127, 40.06302466339694]], [[-75.03638120175484, 40.06193196037857], [-75.03644991043785, 40.06227573126081], [-75.03654548910033, 40.06256627810336], [-75.03664499201747, 40.062758710126666], [-75.03682078447434, 40.06293750526108], [-75.0365930000981, 40.06265599960139], [-75.03638120175484, 40.06193196037857]], [[-75.03607775442912, 40.061272177770654], [-75.03622744441218, 40.0614467880024], [-75.03594479401579, 40.06109162811677], [-75.03607775442912, 40.061272177770654]], [[-75.03595833618175, 40.0605470460292], [-75.0358693703198, 40.060709682823955], [-75.03593012745294, 40.06059861454617], [-75.03595833618175, 40.0605470460292]]]}}, {"id": "8160", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05758362004983, 40.07510625263813], [-75.05782233982951, 40.074917383728305], [-75.0580600180249, 40.07472768441965], [-75.05829722217847, 40.07453760141421], [-75.05853450793607, 40.07434758563563], [-75.05877243914605, 40.074158088195375], [-75.05901157500546, 40.07396955919014], [-75.05925247709082, 40.0737824478666], [-75.05949570921547, 40.07359720622223], [-75.05974187453398, 40.07341429978524], [-75.05999149552423, 40.07323403991354], [-75.06024425155283, 40.07305623076177], [-75.06049970478726, 40.07288061517643], [-75.06075741494566, 40.07270693865332], [-75.06101694643431, 40.07253494680178], [-75.0612778636246, 40.07236438613518], [-75.06154075136922, 40.07219565146795], [-75.06180618592673, 40.07202914731945], [-75.06207392243033, 40.0718647490067], [-75.06234372144463, 40.07170234278835], [-75.06261533565403, 40.07154180663149], [-75.06288851078965, 40.07138298680624], [-75.06316277192772, 40.071225171185866], [-75.0634381718676, 40.0710683889291], [-75.06371496187346, 40.07091301803206], [-75.06399338735496, 40.07075943635126], [-75.06427369713427, 40.070608024523715], [-75.06455614032294, 40.07045915598219], [-75.06484130035514, 40.07031355796916], [-75.06513063452837, 40.070172754836676], [-75.06542327369665, 40.070035772044], [-75.0657180402657, 40.06990130888495], [-75.0660137588297, 40.06976806832083], [-75.0663092707974, 40.06963477263976], [-75.06660492565369, 40.06950177780655], [-75.06690135658151, 40.06936976897946], [-75.06719852233356, 40.06923872176233], [-75.06749638627788, 40.06910861366898], [-75.0678274453076, 40.06896467197677], [-75.06735652846181, 40.06872835474917], [-75.0658467809666, 40.067832099023924], [-75.06502668978634, 40.067345239044975], [-75.06988024443862, 40.061825341066864], [-75.07031102114136, 40.06205477404607], [-75.07053197167276, 40.06213715241198], [-75.07086082608126, 40.06222798789649], [-75.07128377583618, 40.062285371006226], [-75.07214134544577, 40.0623757177902], [-75.07243794149772, 40.06242514102399], [-75.07275111584283, 40.06252154435866], [-75.07294842940784, 40.06261524742156], [-75.07330491095185, 40.06281311335858], [-75.07354324395854, 40.062936481673376], [-75.0753759601058, 40.06397178792418], [-75.07599116443163, 40.06434346148916], [-75.07715589235868, 40.06504476333175], [-75.07736001106932, 40.0654320643241], [-75.0775074708497, 40.06568457988809], [-75.07767354595893, 40.06596702456253], [-75.07771866653502, 40.066036330276916], [-75.0778873699058, 40.066227749755065], [-75.07805155797986, 40.06636177054576], [-75.07890160880922, 40.06683635632901], [-75.08096567099172, 40.06797552436967], [-75.08204090213172, 40.06805242820077], [-75.08372661331803, 40.068174970048695], [-75.08432206063496, 40.06830338858394], [-75.08462537770777, 40.06836930728484], [-75.08531032224032, 40.068513075978196], [-75.08707644886283, 40.068565824165354], [-75.08723266257306, 40.06839116981807], [-75.08902882748413, 40.066599282792986], [-75.09037058875349, 40.06527619765871], [-75.09195860699734, 40.066200121654816], [-75.09324449349958, 40.0669482279799], [-75.0967382741719, 40.06898069222738], [-75.09404260233903, 40.07163329133227], [-75.09384252084408, 40.07183059824139], [-75.08996067275, 40.075661165003694], [-75.08951995056393, 40.076096031543], [-75.0891907542941, 40.07640878097414], [-75.08793830991601, 40.077598613149505], [-75.08689904947299, 40.0786463148236], [-75.0853654932011, 40.08010823724802], [-75.08390468787542, 40.08149006648177], [-75.08245787770203, 40.08288512949956], [-75.08168760417915, 40.083621315787084], [-75.0788450068151, 40.082049292987676], [-75.0778688389965, 40.08150231853251], [-75.07712295578538, 40.081081159091646], [-75.07625945129958, 40.080606739792614], [-75.07516847105627, 40.07999208020388], [-75.07463570858634, 40.079691913047505], [-75.07370523817029, 40.07918335936801], [-75.07301452470581, 40.07878225782444], [-75.07100864922093, 40.07768329396865], [-75.07038058984115, 40.07829099731442], [-75.06983091190762, 40.07882368559944], [-75.06921655202608, 40.07944205456631], [-75.06846470867045, 40.08016550253619], [-75.06827619919731, 40.080346677864654], [-75.06792498559446, 40.08060118151999], [-75.06708999434463, 40.081174476560655], [-75.06696943036414, 40.08125861072924], [-75.0654748991703, 40.082301532678365], [-75.06242021822165, 40.08439328542534], [-75.06011501160998, 40.08596985993657], [-75.06003442287486, 40.0860251054256], [-75.05997263007093, 40.08606746524045], [-75.05909916467368, 40.086670750169496], [-75.05872045663507, 40.08708410146879], [-75.05828040137938, 40.087783892001646], [-75.05769466444262, 40.088691375176175], [-75.0570680545122, 40.08969819867304], [-75.05645890895181, 40.09023614591196], [-75.0556873901617, 40.09075402583353], [-75.05424117419759, 40.09165232479042], [-75.05390748141029, 40.09187479828705], [-75.05359684465985, 40.092145793219075], [-75.05301377767144, 40.09266948399353], [-75.0529389112885, 40.092736131135304], [-75.052641232185, 40.0930011284728], [-75.0521008379093, 40.093511371602695], [-75.05148676871707, 40.0940921800102], [-75.05075288836791, 40.09478108446115], [-75.04842883493836, 40.09707683670527], [-75.04711687101697, 40.0983783993297], [-75.0462124467127, 40.09879441808162], [-75.04553188548518, 40.09911447843645], [-75.04359687718139, 40.1000244552356], [-75.04321102489683, 40.10023003104892], [-75.04261449745741, 40.10050531238359], [-75.03985773860795, 40.10183646397926], [-75.0385638336794, 40.10246180447796], [-75.03697023344401, 40.10318490149781], [-75.03497397154703, 40.10416480472308], [-75.03439861780558, 40.10442959994114], [-75.03299801495899, 40.10511107854101], [-75.03389807759999, 40.10569014574707], [-75.03476073863058, 40.10621739221594], [-75.03522208142601, 40.106497910264906], [-75.03536082349481, 40.10655823433889], [-75.0356459599636, 40.10667335538193], [-75.0360649295839, 40.10678593215079], [-75.0364868663854, 40.106824415656945], [-75.03715602640324, 40.10683321275579], [-75.03778419148301, 40.10687422181052], [-75.03821596534208, 40.10695216263746], [-75.03884342326626, 40.10711311473855], [-75.03946005929, 40.10736383011532], [-75.0398364866094, 40.107567401341505], [-75.04002147516533, 40.10766744216544], [-75.04124577923858, 40.108391784993984], [-75.04497148690287, 40.110579868480315], [-75.04780526845325, 40.1122439541413], [-75.04855727894453, 40.11272003648118], [-75.03904358203224, 40.11935771332061], [-75.03833768667893, 40.119871126479985], [-75.03790870422559, 40.12016854479975], [-75.03165368202416, 40.12450474988725], [-75.02578697968089, 40.12857094226713], [-75.02535538098483, 40.12889038492844], [-75.02489288491259, 40.12921773685513], [-75.02057228005175, 40.13227559885376], [-75.01795079475555, 40.1348493174986], [-75.01496568865494, 40.13792673459656], [-75.01456067078037, 40.13768065893307], [-75.0138684262985, 40.13725936442157], [-75.01223394265399, 40.136258288870415], [-75.01145933375201, 40.13578384504616], [-75.01062219911778, 40.13527108950435], [-75.01042775736174, 40.13515198930369], [-75.00946320264039, 40.13457113553308], [-75.00909381736882, 40.134356185708235], [-75.00833596776289, 40.1339151761605], [-75.00690178558112, 40.13308056182538], [-75.00595861235607, 40.13253191330906], [-75.00327001426656, 40.13096784691968], [-75.00095172285465, 40.129611280464566], [-74.99974011719799, 40.12890703669493], [-74.9985346905457, 40.12819793818561], [-74.9978850588362, 40.12781794116706], [-74.99780190241209, 40.12790374778628], [-74.99757220204631, 40.12811959877898], [-74.99744965541919, 40.12825118330879], [-74.99419528808693, 40.13151014669864], [-74.99384688724413, 40.13185471136569], [-74.99367317732383, 40.13173436666953], [-74.99350785278044, 40.13161576347745], [-74.99343106095644, 40.13155152365505], [-74.99335533436061, 40.13146118845349], [-74.99321078471104, 40.131319865993845], [-74.99310093956477, 40.131185178047396], [-74.99299676270985, 40.131050626760704], [-74.99292156692285, 40.13094724398734], [-74.99284088018882, 40.130816157055825], [-74.99278026356792, 40.130726185458435], [-74.99275110516915, 40.13060649049591], [-74.99274390324655, 40.13050473851017], [-74.99277175782396, 40.13042414137247], [-74.99281359908359, 40.1303017972717], [-74.9929023373726, 40.13021177663748], [-74.9930469675919, 40.13018839744057], [-74.99310816805531, 40.13005490803291], [-74.993100548191, 40.1298936480917], [-74.9931600387094, 40.129778982289196], [-74.99327813756538, 40.12973392528314], [-74.99338897696153, 40.129704655558946], [-74.99350270793782, 40.12965078758715], [-74.99350258578647, 40.12951437573597], [-74.99344940499783, 40.12942748500944], [-74.99341711256507, 40.12917566099978], [-74.99342224211132, 40.12900309829395], [-74.99350627829726, 40.1287729279413], [-74.99366020157917, 40.12875340025432], [-74.99369171487793, 40.1286757929296], [-74.9937830750758, 40.12861413053864], [-74.99380348967514, 40.1284840181938], [-74.99366012652379, 40.12838335521616], [-74.99368703397506, 40.128209861928816], [-74.99366826208929, 40.12811363735725], [-74.99375206224478, 40.12791248437565], [-74.99389381834347, 40.127750450369135], [-74.99400459382454, 40.127676194932434], [-74.9941000243865, 40.12760737452182], [-74.99423670784721, 40.12750036439918], [-74.99440737836564, 40.12727807307649], [-74.99447276364499, 40.12711130801509], [-74.99452646102851, 40.12695296893941], [-74.99454409430443, 40.12668202702574], [-74.9944807001155, 40.12652088068956], [-74.99442639881008, 40.126415097107525], [-74.99435025872926, 40.12621882018101], [-74.99427589196361, 40.126141577996655], [-74.99415325042847, 40.12608930072979], [-74.99392432087171, 40.12604753438069], [-74.99348109976557, 40.12599918257441], [-74.99314711869496, 40.12593748455393], [-74.99287616866249, 40.125906320763235], [-74.9926359106685, 40.12591071823606], [-74.9923637235236, 40.12593321422704], [-74.99204396969058, 40.125986496201385], [-74.99170214125444, 40.12607117157965], [-74.99145379683662, 40.12613486977064], [-74.99106628732451, 40.12620393596334], [-74.99078200041933, 40.12626822208866], [-74.9906201734298, 40.12629626404043], [-74.99039532413906, 40.12625086354251], [-74.99029392602662, 40.12623039113767], [-74.99008122672589, 40.12623109067799], [-74.98974081450858, 40.12623452928292], [-74.9895593341608, 40.12623452823697], [-74.98933784425813, 40.126195834500834], [-74.98915583444865, 40.12616244294436], [-74.98905875193762, 40.126109321214216], [-74.98904187525785, 40.12601313939742], [-74.98901219261161, 40.125906494258736], [-74.98898410602332, 40.125760704715326], [-74.98906950887601, 40.125601677456196], [-74.98901350705765, 40.12547988794097], [-74.9889384974872, 40.125418589031064], [-74.98879745063422, 40.12530781757151], [-74.98870376831839, 40.12512490064517], [-74.98850020774394, 40.12469264952626], [-74.98848268484002, 40.12456597722211], [-74.98838980683794, 40.12427061582366], [-74.98836165835336, 40.12417271247097], [-74.98824027051452, 40.12404354766518], [-74.98805750308202, 40.1239593439921], [-74.98783896771224, 40.12394103529547], [-74.98770654101158, 40.123897221980116], [-74.98754265877153, 40.123790255182094], [-74.98738521497013, 40.12366457634058], [-74.98731469498354, 40.123585971982386], [-74.9871948402606, 40.1235119852043], [-74.98704500171455, 40.123477910475984], [-74.98684418330842, 40.12332652032373], [-74.98666945185785, 40.12316124321139], [-74.98651902950084, 40.12304879274083], [-74.98642454740087, 40.12304797297941], [-74.98624330656364, 40.123135040242815], [-74.98603639097097, 40.12324906180734], [-74.98591959548023, 40.12333187281942], [-74.98567431656518, 40.12348270102307], [-74.9855275955225, 40.12360397328139], [-74.98513276405075, 40.12382956806535], [-74.98499843823157, 40.123901798125566], [-74.98486488113883, 40.12393196412], [-74.98469840033007, 40.12393521553624], [-74.98455245852941, 40.12389833072942], [-74.98445461633227, 40.1238408345315], [-74.98438616735899, 40.123757923261785], [-74.98435790537371, 40.12366291838033], [-74.98430592358461, 40.12359346490056], [-74.98421274002482, 40.12356074895703], [-74.98407853783876, 40.12356042451801], [-74.98397502306135, 40.123595663268794], [-74.9836767594915, 40.123608807072536], [-74.98354349950957, 40.123631721506506], [-74.98343809993273, 40.123620478076916], [-74.98313696708402, 40.12344925398773], [-74.98290564151625, 40.12332759496191], [-74.98281907207792, 40.12327182017356], [-74.98268134745676, 40.12314951147065], [-74.98261095951418, 40.123021566745926], [-74.98258500724079, 40.12291646013414], [-74.98259313937157, 40.12276355858768], [-74.98273754554711, 40.1225370250372], [-74.98275626640915, 40.12244895670757], [-74.98272240401374, 40.12235236496688], [-74.98263348621425, 40.122215268243], [-74.98247616214583, 40.12192487866225], [-74.98229183649046, 40.12190230320981], [-74.98219181957151, 40.12180557160739], [-74.98225143867948, 40.12168801186797], [-74.98237828163757, 40.121521280553715], [-74.98238815087403, 40.12141848488436], [-74.98241194768732, 40.12129861222322], [-74.98245450499472, 40.12122852887616], [-74.98260003717536, 40.12118269249207], [-74.98276958654986, 40.1211504948091], [-74.9829306993569, 40.121093421818045], [-74.98300223393417, 40.12100807497506], [-74.98306751447676, 40.120890650179], [-74.983080804259, 40.12079664466655], [-74.98307769441928, 40.12064129742954], [-74.98303328175004, 40.12045593308441], [-74.98298283921916, 40.12034878383909], [-74.98292129453237, 40.120282001848466], [-74.98278764029821, 40.120222189804174], [-74.98269367366333, 40.120139390472424], [-74.98261806292406, 40.120046873290725], [-74.98251456218918, 40.11998923817729], [-74.98237093233877, 40.1199422464889], [-74.98216409935375, 40.11991550221207], [-74.9819809850239, 40.119909643010125], [-74.98183315979003, 40.11991914556726], [-74.9816972476433, 40.11996085947256], [-74.98158700540135, 40.12002205591612], [-74.98150715492436, 40.12007963179768], [-74.98135807846693, 40.120142795423035], [-74.98120375893839, 40.12017245535031], [-74.98105221429736, 40.12018041574893], [-74.98086939545769, 40.12016730742784], [-74.9807250555385, 40.12013771056408], [-74.98041188790387, 40.120076475793724], [-74.98029098448727, 40.1200053594499], [-74.98010425541783, 40.11985017926239], [-74.97996529974716, 40.11973470075871], [-74.98147515610661, 40.1186769133751], [-74.9832953100798, 40.11725366951866], [-74.98376690795077, 40.116945591479535], [-74.98497655197892, 40.116048088569165], [-74.98777727231318, 40.114128017574764], [-74.98962186970763, 40.11284772728174], [-74.99072087794879, 40.112101463231575], [-74.99549876139298, 40.10879904559209], [-74.99667938760946, 40.10800050653488], [-74.9968236875527, 40.10790136357909], [-74.99668944228584, 40.107775838781585], [-74.99639582594651, 40.1075218009091], [-74.99470828060764, 40.10612149353524], [-74.9944361008318, 40.10585213685131], [-74.99217821394565, 40.103963569454834], [-74.99003518154542, 40.10211898869551], [-74.98891948652006, 40.101196604672424], [-74.98807317181068, 40.10045024082944], [-74.98667529438421, 40.09927999004267], [-74.98686286259387, 40.09914759612365], [-74.98728400129649, 40.09885130072101], [-74.9875405116155, 40.09865870896836], [-74.98781255018112, 40.098403433270256], [-74.98801555830231, 40.098198226784405], [-74.98825650823251, 40.09796565247674], [-74.98845261605591, 40.09780067963804], [-74.99126578796898, 40.095779203568775], [-74.99468698631495, 40.0985157489326], [-74.99546405689867, 40.09916734037778], [-74.99657424689374, 40.100140078323584], [-74.99723871681812, 40.100751491956906], [-74.99816680486222, 40.10160707675546], [-74.99838625313424, 40.10185089076054], [-74.99873340533885, 40.10231021991832], [-74.99901105573085, 40.10257798261559], [-74.99980595308102, 40.10323798393834], [-75.001340227351, 40.10447338267896], [-75.00136789022717, 40.10456204607671], [-75.00149790449852, 40.1046791321352], [-75.00209020651084, 40.104269754465854], [-75.00308446345512, 40.103582544083494], [-75.0049069951211, 40.10232227359235], [-75.00609069595153, 40.10151430747137], [-75.00835671186192, 40.09996020510662], [-75.00954611943996, 40.09912788213696], [-75.01023965777635, 40.0986274887173], [-75.0119460309999, 40.09749968924053], [-75.01306376029899, 40.096647549345235], [-75.01343102395374, 40.096351954570224], [-75.013734888549, 40.09608863203972], [-75.01503017200935, 40.094813029183335], [-75.0152249575392, 40.09462706024111], [-75.01671960534827, 40.093058557376125], [-75.01859914987443, 40.09110979481837], [-75.02059729180073, 40.0890453629084], [-75.02077321098622, 40.088869692247826], [-75.02416289978059, 40.085352135669666], [-75.02477351284554, 40.084719170290285], [-75.02489690219, 40.084602454866946], [-75.02677501201643, 40.08266059899274], [-75.02698441790379, 40.082416567036645], [-75.02860591922072, 40.08077109526856], [-75.02936100367475, 40.07996554086386], [-75.03024499085504, 40.07905911048138], [-75.03265156130533, 40.076563913553244], [-75.03345632981974, 40.075733552485595], [-75.03394468660325, 40.07522585640025], [-75.0348403042355, 40.07430802573013], [-75.03688057928926, 40.072209186628385], [-75.03797590147553, 40.071078701239365], [-75.03895106634981, 40.07005670880712], [-75.03937274031372, 40.0695553420102], [-75.03952749808136, 40.0693585665246], [-75.03990055038933, 40.0687164982515], [-75.04027165133148, 40.06792050879335], [-75.04104856821186, 40.06619437066853], [-75.04117363314958, 40.06591649432094], [-75.0413335088859, 40.065974787552165], [-75.04147018298123, 40.066018667392534], [-75.04181278865332, 40.06612786129399], [-75.04214704345395, 40.06622444269112], [-75.04252300081988, 40.06630933607577], [-75.04289147572567, 40.066375041588714], [-75.04311837397684, 40.06647542875296], [-75.04331929512507, 40.06660688172657], [-75.04350844181876, 40.06682676256377], [-75.04367908978594, 40.06709689587563], [-75.0437825664205, 40.067397128713154], [-75.04386302954859, 40.068067475794585], [-75.04388739876102, 40.06828347515002], [-75.04385971299041, 40.06877069871069], [-75.04376191556884, 40.06915489498487], [-75.04357575655808, 40.069479984511155], [-75.04302513401653, 40.07046494259144], [-75.04285241512586, 40.07086638181349], [-75.04276168364336, 40.07107333361617], [-75.04248841833828, 40.07130766563954], [-75.04208473704509, 40.07170999709947], [-75.0418127306453, 40.071912676397304], [-75.04147430148507, 40.07212646098452], [-75.04136137041226, 40.07226952947355], [-75.04132108124091, 40.072452325411106], [-75.04138815858997, 40.072631315890035], [-75.0416120446288, 40.07280766508903], [-75.04185417957775, 40.07294009334167], [-75.04234135855599, 40.073132150758376], [-75.0427300417902, 40.07331238140349], [-75.04299664661441, 40.0734517197984], [-75.04338088274055, 40.07353680258656], [-75.04367347260144, 40.07364506960524], [-75.04388862161355, 40.07383388162932], [-75.04387877137246, 40.07408075501489], [-75.04381174842123, 40.07431361061849], [-75.04358058733531, 40.074732682333874], [-75.0434818653947, 40.07493311127461], [-75.04347130832939, 40.07501237386902], [-75.04344653650189, 40.07519839220523], [-75.04350437156484, 40.07540250824636], [-75.04381666845494, 40.07584388336682], [-75.04398238591108, 40.07603152918247], [-75.04420098626825, 40.076340808020944], [-75.04437544784992, 40.076515986745726], [-75.04461019606796, 40.07671426002101], [-75.04474262752414, 40.076822426205], [-75.04482771390366, 40.07696382122396], [-75.044893542534, 40.07717445983989], [-75.04496189751694, 40.077321798879794], [-75.04505497403682, 40.077469718840085], [-75.045181767739, 40.07759942286984], [-75.04534926028896, 40.07774275870906], [-75.04561487822417, 40.07790741100268], [-75.04595415584761, 40.078086466332714], [-75.04631143038561, 40.078227928813625], [-75.04671865181837, 40.07835789268325], [-75.04707046516083, 40.07842952916896], [-75.04743152769055, 40.07847603650771], [-75.04777938855011, 40.07843986397968], [-75.04818367057818, 40.07843669765365], [-75.04883226443728, 40.07851213372634], [-75.04940833315213, 40.07854468046004], [-75.04973719410566, 40.07857141713605], [-75.04995917909704, 40.07858930313321], [-75.05015720083807, 40.07858761908509], [-75.05038994860831, 40.07854239912013], [-75.0506484231972, 40.078472438334956], [-75.0509663444948, 40.07835952001648], [-75.05122809364289, 40.07820726754548], [-75.0515065722058, 40.07804906936406], [-75.05168591663612, 40.077894879164575], [-75.05186551085286, 40.07773436021535], [-75.05198616329548, 40.07760413533933], [-75.05212826288668, 40.077556783823084], [-75.05234301422513, 40.077549152659024], [-75.05263142116847, 40.077555922185596], [-75.0529128500191, 40.07753084556232], [-75.05325296607438, 40.07748180349217], [-75.05346174180787, 40.0774170064721], [-75.05362308928163, 40.07730040711198], [-75.05377757875698, 40.07714879871762], [-75.05386828593147, 40.07694183832337], [-75.0539296157627, 40.07643639594118], [-75.05396616603974, 40.07613946065988], [-75.05399541632775, 40.076026097060954], [-75.05414725883203, 40.07594095572149], [-75.05431382253069, 40.07590051164817], [-75.05455976708468, 40.07593796030108], [-75.0547928060949, 40.07608904559435], [-75.05498466818896, 40.07624571716204], [-75.05517312496838, 40.07648456942428], [-75.05534535391104, 40.07671670469455], [-75.05537620540206, 40.07678442526513], [-75.05552497347986, 40.076671328095905], [-75.05758362004983, 40.07510625263813]]]}}, {"id": "8200", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.06113997797009, 40.036065823974994], [-75.05976186725078, 40.03531184400613], [-75.05812369049985, 40.03440572633176], [-75.0565084990886, 40.033503254434855], [-75.05486963353049, 40.03259570069375], [-75.0548027092524, 40.03255070960607], [-75.05324994815125, 40.031701519137656], [-75.05335331145208, 40.03166167446234], [-75.05351206750697, 40.03156856374935], [-75.05396879247006, 40.0312383579716], [-75.0540557517707, 40.031181810533084], [-75.05480048534808, 40.030643626362625], [-75.05527018439086, 40.03022135744487], [-75.05541714262289, 40.03008757076595], [-75.05566168130791, 40.02984419389852], [-75.05607891100887, 40.029456075016896], [-75.05604632671471, 40.02934055154145], [-75.05563483500727, 40.02886208786481], [-75.05558557801861, 40.028816639439626], [-75.05508530919815, 40.02823746026574], [-75.05454376412172, 40.027608361391856], [-75.05514238466856, 40.02730244853657], [-75.05569244617301, 40.02701603820304], [-75.05629534391466, 40.02670488753105], [-75.05695499182227, 40.02636259906879], [-75.05727981106796, 40.02619638423572], [-75.05759522139245, 40.026032809647084], [-75.057897070503, 40.025876805875036], [-75.05825183059187, 40.02569286300014], [-75.05880467941977, 40.026314935658625], [-75.06075658276164, 40.025302397254684], [-75.06271239425418, 40.0242925423012], [-75.06280300649158, 40.02440337289763], [-75.06325416663721, 40.024913758823566], [-75.06379250395135, 40.02463878984568], [-75.06429850056371, 40.02437366105983], [-75.06491395782366, 40.02406163942987], [-75.06497094787639, 40.02411046962777], [-75.06543718559958, 40.02464211242266], [-75.06599609412177, 40.02529122842685], [-75.06629341432797, 40.025612034155614], [-75.06651979223467, 40.02580581909264], [-75.06668295259375, 40.02584138355716], [-75.06783721579384, 40.02649206348795], [-75.06795748719205, 40.026584067667095], [-75.06709032771728, 40.02677730779543], [-75.06618493810203, 40.026915548478], [-75.07304390892638, 40.03129574371874], [-75.07351393530942, 40.031555013912985], [-75.07386962085366, 40.03176463032088], [-75.07369253848567, 40.03210840218186], [-75.07355461850688, 40.032363421145035], [-75.07356021353532, 40.03244577064569], [-75.07360561234455, 40.03251822982968], [-75.07382568190619, 40.0326454257203], [-75.07483287179262, 40.03320326733209], [-75.07493564475371, 40.03325772149568], [-75.07506078615849, 40.03334997800687], [-75.0751487380651, 40.0334466456309], [-75.07525130271337, 40.033661436635455], [-75.07529951176552, 40.033783704283984], [-75.07443993025743, 40.03398123715264], [-75.07148466221675, 40.03466540963907], [-75.07109755523071, 40.0347439109783], [-75.06959738437399, 40.03509441906304], [-75.06809997139733, 40.03543185853618], [-75.06767241302904, 40.03552753743839], [-75.0660952774568, 40.03590830909203], [-75.06518040298042, 40.03612573203004], [-75.06436363948667, 40.03630732602594], [-75.06356652744833, 40.03648551118628], [-75.06319645774718, 40.03658640547235], [-75.06289854950163, 40.036705949036644], [-75.062502852093, 40.03689443759703], [-75.06238203492896, 40.03679536275914], [-75.06113997797009, 40.036065823974994]]]}}, {"id": "8210", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.0293079344799, 40.046710939966566], [-75.02838841052163, 40.04713150064877], [-75.02714770611784, 40.04769893835468], [-75.02639597519511, 40.048042732551565], [-75.02611039141759, 40.0481733387064], [-75.02604481931499, 40.048339874814666], [-75.02596530973688, 40.048541809939096], [-75.02611572240293, 40.04892110857427], [-75.02620829586333, 40.04915455044818], [-75.02632430049782, 40.049447076724384], [-75.02589573262637, 40.04952170668328], [-75.0254880641761, 40.049613417369144], [-75.02502019460765, 40.049767059045784], [-75.0246081985107, 40.04996637531921], [-75.0240054813053, 40.05019284749639], [-75.02287289411287, 40.05067918955403], [-75.02258673304789, 40.050824460871986], [-75.02223174570442, 40.05104096568759], [-75.02202617030173, 40.05123250274537], [-75.02182160952268, 40.05139872043992], [-75.02160677289102, 40.05161538177912], [-75.0214845821503, 40.05178355338406], [-75.02134667770706, 40.0519323447473], [-75.02106925447676, 40.052065150263466], [-75.02082351295573, 40.05213400019852], [-75.02042141397483, 40.05218281649405], [-75.01998255499787, 40.052229412557466], [-75.01952153238526, 40.052212119631534], [-75.01918432133711, 40.052191431808566], [-75.01889729725363, 40.0521529292174], [-75.0186370228605, 40.05206437200777], [-75.01838626073734, 40.05194435918992], [-75.01816921177453, 40.05180614059553], [-75.01786308884188, 40.051627784851746], [-75.01767049852461, 40.05149648319447], [-75.0175443161446, 40.05135408648656], [-75.01755043478562, 40.05120216498335], [-75.01758924577986, 40.05105735641996], [-75.01768945949236, 40.050616214968876], [-75.01773956595072, 40.05039564195628], [-75.01775672518255, 40.050174286210655], [-75.01778908370103, 40.049984972257434], [-75.0178802941837, 40.04956262166281], [-75.01803051421066, 40.049312750147635], [-75.01816196668464, 40.04911945649441], [-75.01833128834889, 40.04900943252222], [-75.01853330083512, 40.048906522773834], [-75.0187479652438, 40.04889895525579], [-75.01903066139741, 40.04891140340598], [-75.01935391439712, 40.04900206528802], [-75.01958352312684, 40.0490328679513], [-75.01988208259739, 40.04898927403982], [-75.01999170658894, 40.04892851967565], [-75.020111095476, 40.048829978958686], [-75.0201244262231, 40.04870357286658], [-75.02007984563811, 40.048582126789256], [-75.02005479512427, 40.04838511360781], [-75.01999314446053, 40.04807317837754], [-75.01998310726302, 40.04801396653994], [-75.01856361634631, 40.047101543709665], [-75.0163779323651, 40.04567344925912], [-75.01470318620812, 40.04434586745607], [-75.01342268280341, 40.04330713994061], [-75.01270851187705, 40.04378082221711], [-75.01246742931468, 40.043587646508655], [-75.01139389433654, 40.04272876581121], [-75.0113422425946, 40.04267395636326], [-75.0101011823225, 40.04167243934788], [-75.00697352621539, 40.0407409930132], [-75.00483810605391, 40.04012421177983], [-75.00250671990396, 40.03807633012065], [-75.00031946803244, 40.03618434268132], [-74.99899376226033, 40.035056771211345], [-74.99592322615307, 40.0327693789857], [-74.9972646789298, 40.03157658769071], [-74.99840929180525, 40.030580559169564], [-74.99975901814408, 40.02960479363618], [-75.0015932214651, 40.028499635674116], [-75.00316023945895, 40.027502189715776], [-75.00633490899871, 40.02551540086163], [-75.00969202947779, 40.02346289089041], [-75.01210156445315, 40.021652540993706], [-75.01439595160497, 40.02017284569141], [-75.02008756986974, 40.02518900115906], [-75.02399375470502, 40.03000960993312], [-75.02535457841348, 40.031696280918176], [-75.0262813598896, 40.03284108576819], [-75.02741876359461, 40.03413128335938], [-75.02746886194936, 40.034189583466166], [-75.02801024959247, 40.03508121516515], [-75.028575366214, 40.03599700573118], [-75.02889062942201, 40.03645008857938], [-75.02913431180818, 40.03688391588971], [-75.02915581509315, 40.036940178066445], [-75.0296788542452, 40.03779465801103], [-75.02932093656287, 40.037932070082725], [-75.03005646817876, 40.03913391257796], [-75.03084342658859, 40.040418956773735], [-75.02825800975391, 40.04136678332327], [-75.02967734942368, 40.043251881970015], [-75.03155191862186, 40.045684560606354], [-75.03103542149, 40.045920809071234], [-75.03074357479696, 40.04605429842213], [-75.0293079344799, 40.046710939966566]]]}}, {"id": "8230", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.08531032224032, 40.068513075978196], [-75.08462537770777, 40.06836930728484], [-75.08432206063496, 40.06830338858394], [-75.08372661331803, 40.068174970048695], [-75.08204090213172, 40.06805242820077], [-75.08096567099172, 40.06797552436967], [-75.07890160880922, 40.06683635632901], [-75.07805155797986, 40.06636177054576], [-75.0778873699058, 40.066227749755065], [-75.07771866653502, 40.066036330276916], [-75.07767354595893, 40.06596702456253], [-75.0775074708497, 40.06568457988809], [-75.07736001106932, 40.0654320643241], [-75.07715589235868, 40.06504476333175], [-75.07599116443163, 40.06434346148916], [-75.0753759601058, 40.06397178792418], [-75.07354324395854, 40.062936481673376], [-75.07330491095185, 40.06281311335858], [-75.07294842940784, 40.06261524742156], [-75.07275111584283, 40.06252154435866], [-75.07243794149772, 40.06242514102399], [-75.07214134544577, 40.0623757177902], [-75.07128377583618, 40.062285371006226], [-75.07086082608126, 40.06222798789649], [-75.07053197167276, 40.06213715241198], [-75.07031102114136, 40.06205477404607], [-75.06988024443862, 40.061825341066864], [-75.06894885909264, 40.061300326928006], [-75.06807519408441, 40.0608252823429], [-75.06876647953051, 40.06004889185658], [-75.06922522469736, 40.05958424575375], [-75.07041884608611, 40.058348266294544], [-75.07159330153667, 40.05710541404976], [-75.07325641605624, 40.05533105113294], [-75.07409579140203, 40.05582026905029], [-75.07503258792923, 40.056360110360174], [-75.07673423979696, 40.05735167621376], [-75.07863198529692, 40.05535800129497], [-75.07894388368823, 40.0550164197011], [-75.07921728890726, 40.05472044687155], [-75.07950874382271, 40.054419384957846], [-75.07981575873377, 40.05408550147162], [-75.08084986682182, 40.05466084634046], [-75.08186603160338, 40.055215426542915], [-75.0827520610956, 40.05572331553077], [-75.0836553608135, 40.05621406309386], [-75.08399188675543, 40.05586227698336], [-75.0842284438816, 40.05559627468498], [-75.0845139349677, 40.0552925284236], [-75.08487165715582, 40.05488253906962], [-75.0857956987781, 40.05542581638905], [-75.08587644984081, 40.055503803104216], [-75.08595836163552, 40.05556809118631], [-75.08617744057557, 40.05569545247368], [-75.08662023866947, 40.05594685106228], [-75.08840985984426, 40.05694126266981], [-75.08997232434874, 40.05782207720906], [-75.0908474266367, 40.05824780573915], [-75.09252516508181, 40.05691461494527], [-75.09333583281115, 40.057015325871674], [-75.09345644681767, 40.057189632053856], [-75.09354111024288, 40.05731198399955], [-75.09361503390471, 40.05741817620406], [-75.09274064284068, 40.05829937415294], [-75.0920750089637, 40.05896683336336], [-75.08976380729703, 40.06129389020495], [-75.08900285768611, 40.06205226329], [-75.08823967373392, 40.06281283793292], [-75.08746453554552, 40.06358530745863], [-75.08789701681395, 40.06383695621994], [-75.0887650890161, 40.06434205694387], [-75.08944617660568, 40.06473751202954], [-75.09037058875349, 40.06527619765871], [-75.08902882748413, 40.066599282792986], [-75.08723266257306, 40.06839116981807], [-75.08707644886283, 40.068565824165354], [-75.08531032224032, 40.068513075978196]]]}}, {"id": "8240", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.04375244475754, 40.033720142760444], [-75.04343476160835, 40.03335799679555], [-75.04298610898273, 40.03284195137486], [-75.0425383747686, 40.03232987949128], [-75.0420889110238, 40.03181769643146], [-75.0416361999487, 40.031300465562694], [-75.04118909288377, 40.03078748722589], [-75.04074283011289, 40.03027777969118], [-75.0402887380438, 40.029766993479576], [-75.03984251941257, 40.02924565417187], [-75.03938800441148, 40.028735407318045], [-75.03890723481716, 40.02818667827646], [-75.03845771205219, 40.02767336993102], [-75.03803847890595, 40.027189747406304], [-75.0375896136875, 40.02668081195321], [-75.03714187768846, 40.026165608298875], [-75.03668837866726, 40.025651600117925], [-75.03645284769156, 40.02536085689675], [-75.03612050834508, 40.024931492357474], [-75.03599028702791, 40.02482212471624], [-75.03581302378812, 40.0245736685611], [-75.03534610372795, 40.02395175515207], [-75.03506828680622, 40.023557653954924], [-75.03498362096369, 40.0234979270977], [-75.03448566390134, 40.022883532331115], [-75.03447210556332, 40.0228085548892], [-75.03443147882443, 40.022726690314514], [-75.03380917379319, 40.02190684150733], [-75.0331832422015, 40.021032183914976], [-75.0293708496235, 40.01628945858043], [-75.02985946482646, 40.01622487799484], [-75.03255713556078, 40.015812624946086], [-75.03418808182995, 40.01552685458882], [-75.03593236969367, 40.015122265975734], [-75.03846131468903, 40.014341371204885], [-75.0400887750218, 40.013724643582975], [-75.04318345620553, 40.01230180802732], [-75.04549702717796, 40.01539135984509], [-75.04654946592537, 40.016354768020506], [-75.04695708881782, 40.01666649054795], [-75.04740062933426, 40.01699499112109], [-75.04779921109528, 40.017327097465994], [-75.04808650156707, 40.01750175437715], [-75.04813594950116, 40.017585297316074], [-75.04827883286003, 40.01769035907416], [-75.04843241042651, 40.01780693177609], [-75.04858708950196, 40.01793877323055], [-75.04869060025547, 40.01802875804136], [-75.04879026013448, 40.01814272009394], [-75.04895805847762, 40.01833459840812], [-75.04949864826371, 40.018930315978146], [-75.05000317862873, 40.019512392481026], [-75.05045067390724, 40.02002728783608], [-75.05090575006129, 40.02053632334524], [-75.05132044682324, 40.02101559235904], [-75.05177492702299, 40.0215363498483], [-75.05225498658803, 40.02208102634417], [-75.05248290255767, 40.02234721787948], [-75.05270351743722, 40.02259335939741], [-75.0529326587648, 40.02286481292343], [-75.05315294282204, 40.02310603050815], [-75.05337410689482, 40.02336301410848], [-75.05360536254146, 40.023616927357196], [-75.05383051939687, 40.02388229248625], [-75.05405573884796, 40.024130575636875], [-75.05449649038853, 40.02464923564854], [-75.0549663561723, 40.025172380397535], [-75.05539833613314, 40.02567408298286], [-75.05629534391466, 40.02670488753105], [-75.05569244617301, 40.02701603820304], [-75.05514238466856, 40.02730244853657], [-75.05454376412172, 40.027608361391856], [-75.05508530919815, 40.02823746026574], [-75.05558557801861, 40.028816639439626], [-75.05563483500727, 40.02886208786481], [-75.05604632671471, 40.02934055154145], [-75.05607891100887, 40.029456075016896], [-75.05566168130791, 40.02984419389852], [-75.05541714262289, 40.03008757076595], [-75.05527018439086, 40.03022135744487], [-75.05480048534808, 40.030643626362625], [-75.0540557517707, 40.031181810533084], [-75.05396879247006, 40.0312383579716], [-75.05351206750697, 40.03156856374935], [-75.05335331145208, 40.03166167446234], [-75.05324994815125, 40.031701519137656], [-75.05285796282334, 40.03179739878761], [-75.05268628258194, 40.03184703228738], [-75.05097354286903, 40.03232582356486], [-75.04991032850579, 40.03261150364894], [-75.04867198729823, 40.03295489498672], [-75.04771947920379, 40.0333027373664], [-75.04677139455464, 40.033684118641375], [-75.04665793239292, 40.03372700236978], [-75.04580164198363, 40.034176476257336], [-75.04492768604423, 40.03464254968361], [-75.04467210428737, 40.03477220262877], [-75.04401611500334, 40.0340207114769], [-75.04375244475754, 40.033720142760444]]]}}, {"id": "8250", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.03500252427024, 40.03890974380595], [-75.03442434112202, 40.03912170984904], [-75.03342753323346, 40.03947455773396], [-75.03261303209376, 40.03977282657692], [-75.03170851182412, 40.04010744165081], [-75.03134158218617, 40.0402378808999], [-75.03084342658859, 40.040418956773735], [-75.03005646817876, 40.03913391257796], [-75.02932093656287, 40.037932070082725], [-75.0296788542452, 40.03779465801103], [-75.02915581509315, 40.036940178066445], [-75.02913431180818, 40.03688391588971], [-75.02889062942201, 40.03645008857938], [-75.028575366214, 40.03599700573118], [-75.02801024959247, 40.03508121516515], [-75.02746886194936, 40.034189583466166], [-75.02741876359461, 40.03413128335938], [-75.0262813598896, 40.03284108576819], [-75.02535457841348, 40.031696280918176], [-75.02399375470502, 40.03000960993312], [-75.02008756986974, 40.02518900115906], [-75.01439595160497, 40.02017284569141], [-75.01569583843182, 40.01949405820048], [-75.01660844953228, 40.01907485929474], [-75.0178569563277, 40.01855237721734], [-75.01973985658044, 40.01788386821405], [-75.02145303888575, 40.017491993859835], [-75.02377146395851, 40.017068709017565], [-75.02658115512718, 40.01665813075844], [-75.0293708496235, 40.01628945858043], [-75.0331832422015, 40.021032183914976], [-75.03380917379319, 40.02190684150733], [-75.03443147882443, 40.022726690314514], [-75.03447210556332, 40.0228085548892], [-75.03448566390134, 40.022883532331115], [-75.03498362096369, 40.0234979270977], [-75.03506828680622, 40.023557653954924], [-75.03534610372795, 40.02395175515207], [-75.03581302378812, 40.0245736685611], [-75.03599028702791, 40.02482212471624], [-75.03612050834508, 40.024931492357474], [-75.03645284769156, 40.02536085689675], [-75.03668837866726, 40.025651600117925], [-75.03714187768846, 40.026165608298875], [-75.0375896136875, 40.02668081195321], [-75.03803847890595, 40.027189747406304], [-75.03845771205219, 40.02767336993102], [-75.03890723481716, 40.02818667827646], [-75.03938800441148, 40.028735407318045], [-75.03984251941257, 40.02924565417187], [-75.0402887380438, 40.029766993479576], [-75.04074283011289, 40.03027777969118], [-75.04118909288377, 40.03078748722589], [-75.0416361999487, 40.031300465562694], [-75.0420889110238, 40.03181769643146], [-75.0425383747686, 40.03232987949128], [-75.04298610898273, 40.03284195137486], [-75.04343476160835, 40.03335799679555], [-75.04375244475754, 40.033720142760444], [-75.04401611500334, 40.0340207114769], [-75.04467210428737, 40.03477220262877], [-75.04405452994727, 40.035097840094735], [-75.0432001630908, 40.0355454899382], [-75.04243452139467, 40.035962491064716], [-75.04168391253879, 40.036344090785576], [-75.04075351141236, 40.03679473370573], [-75.03984077562761, 40.03712936674828], [-75.03868784381856, 40.03755204667702], [-75.03683287760813, 40.03823718981451], [-75.03627792045715, 40.03844215824022], [-75.03554299787328, 40.03871159793633], [-75.03500252427024, 40.03890974380595]]]}}, {"id": "8260", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.05899098615006, 40.08094668209277], [-75.05916303922639, 40.08069329950346], [-75.05940930199259, 40.08051532061701], [-75.05962134585386, 40.080368219983605], [-75.05992328166774, 40.08024223237487], [-75.06023370827079, 40.080110104778555], [-75.0604349954488, 40.08002611230843], [-75.0606375408534, 40.07991046736888], [-75.06082485791416, 40.079762787799226], [-75.06099418571385, 40.07965270023839], [-75.06114502715863, 40.07959286989936], [-75.06132782260427, 40.079559130549555], [-75.06151810922886, 40.07954457455014], [-75.06167718722045, 40.07948493440269], [-75.06183927818138, 40.07934933453984], [-75.06199588892682, 40.07914390974338], [-75.06203662816267, 40.078948446111255], [-75.06206088712396, 40.07875259702242], [-75.06206715943975, 40.078594343139876], [-75.06198102916176, 40.078478280995135], [-75.0618954033809, 40.07834955741347], [-75.06179204337724, 40.07825210050341], [-75.06170516129058, 40.07815502713799], [-75.06163003522988, 40.077969527351115], [-75.06151646881796, 40.077713428092345], [-75.06148543068252, 40.07745609581747], [-75.0615249157013, 40.07729228275948], [-75.06160284111687, 40.07719906639292], [-75.06176116081122, 40.0771584160093], [-75.06195892835154, 40.07716304192318], [-75.0621726737404, 40.07718071525179], [-75.06232124740075, 40.07717785385517], [-75.06251579036129, 40.077055682578724], [-75.06273731119458, 40.07687711754378], [-75.06304700024614, 40.07655488797269], [-75.06334719235429, 40.076264112653824], [-75.0636473829897, 40.07597333837383], [-75.06381196651216, 40.0757744329674], [-75.06391861912485, 40.075580509452834], [-75.06394512893239, 40.075327689336845], [-75.0638219366318, 40.07510621883967], [-75.06370936954882, 40.07482480332952], [-75.06361851137763, 40.0746199278114], [-75.06347470755827, 40.07450251759421], [-75.0632609701968, 40.07448484848411], [-75.06304372192314, 40.07455580181499], [-75.06260897559609, 40.07470403576466], [-75.06220794047137, 40.07483404907385], [-75.06170078559855, 40.07493623409436], [-75.06106279412101, 40.07501001288991], [-75.06045801177557, 40.07507822835723], [-75.05990040944747, 40.075204569426475], [-75.05944967163806, 40.07533974506808], [-75.05904686857083, 40.07551405825606], [-75.05877539994854, 40.0757041180278], [-75.05869131808406, 40.0759524201826], [-75.05859836366761, 40.07621635755008], [-75.05835106158882, 40.076628740973035], [-75.0581237512023, 40.076952890732144], [-75.05789668999567, 40.07727070798033], [-75.05768811786795, 40.077538271537975], [-75.05751728221968, 40.07768633216519], [-75.05730077170082, 40.07773828386777], [-75.05703783549077, 40.077713114500966], [-75.05677590846673, 40.077662625406894], [-75.05653272186636, 40.07755555053142], [-75.05624009117663, 40.07744731438692], [-75.0558024112148, 40.07725330993658], [-75.05550481551758, 40.07706258916549], [-75.05542121699486, 40.0768832205816], [-75.05537620540206, 40.07678442526513], [-75.05552497347986, 40.076671328095905], [-75.05758362004983, 40.07510625263813], [-75.05782233982951, 40.074917383728305], [-75.0580600180249, 40.07472768441965], [-75.05829722217847, 40.07453760141421], [-75.05853450793607, 40.07434758563563], [-75.05877243914605, 40.074158088195375], [-75.05901157500546, 40.07396955919014], [-75.05925247709082, 40.0737824478666], [-75.05949570921547, 40.07359720622223], [-75.05974187453398, 40.07341429978524], [-75.05999149552423, 40.07323403991354], [-75.06024425155283, 40.07305623076177], [-75.06049970478726, 40.07288061517643], [-75.06075741494566, 40.07270693865332], [-75.06101694643431, 40.07253494680178], [-75.0612778636246, 40.07236438613518], [-75.06154075136922, 40.07219565146795], [-75.06180618592673, 40.07202914731945], [-75.06207392243033, 40.0718647490067], [-75.06234372144463, 40.07170234278835], [-75.06261533565403, 40.07154180663149], [-75.06288851078965, 40.07138298680624], [-75.06316277192772, 40.071225171185866], [-75.0634381718676, 40.0710683889291], [-75.06371496187346, 40.07091301803206], [-75.06399338735496, 40.07075943635126], [-75.06427369713427, 40.070608024523715], [-75.06455614032294, 40.07045915598219], [-75.06484130035514, 40.07031355796916], [-75.06513063452837, 40.070172754836676], [-75.06542327369665, 40.070035772044], [-75.0657180402657, 40.06990130888495], [-75.0660137588297, 40.06976806832083], [-75.0663092707974, 40.06963477263976], [-75.06660492565369, 40.06950177780655], [-75.06690135658151, 40.06936976897946], [-75.06719852233356, 40.06923872176233], [-75.06749638627788, 40.06910861366898], [-75.0678274453076, 40.06896467197677], [-75.06735652846181, 40.06872835474917], [-75.0658467809666, 40.067832099023924], [-75.06502668978634, 40.067345239044975], [-75.06988024443862, 40.061825341066864], [-75.07031102114136, 40.06205477404607], [-75.07053197167276, 40.06213715241198], [-75.07086082608126, 40.06222798789649], [-75.07128377583618, 40.062285371006226], [-75.07214134544577, 40.0623757177902], [-75.07243794149772, 40.06242514102399], [-75.07275111584283, 40.06252154435866], [-75.07294842940784, 40.06261524742156], [-75.07330491095185, 40.06281311335858], [-75.07354324395854, 40.062936481673376], [-75.0753759601058, 40.06397178792418], [-75.07599116443163, 40.06434346148916], [-75.07715589235868, 40.06504476333175], [-75.07736001106932, 40.0654320643241], [-75.0775074708497, 40.06568457988809], [-75.07767354595893, 40.06596702456253], [-75.07771866653502, 40.066036330276916], [-75.0778873699058, 40.066227749755065], [-75.07805155797986, 40.06636177054576], [-75.07890160880922, 40.06683635632901], [-75.08096567099172, 40.06797552436967], [-75.08204090213172, 40.06805242820077], [-75.08372661331803, 40.068174970048695], [-75.08432206063496, 40.06830338858394], [-75.08462537770777, 40.06836930728484], [-75.08531032224032, 40.068513075978196], [-75.08707644886283, 40.068565824165354], [-75.08723266257306, 40.06839116981807], [-75.08902882748413, 40.066599282792986], [-75.09037058875349, 40.06527619765871], [-75.09195860699734, 40.066200121654816], [-75.09324449349958, 40.0669482279799], [-75.0967382741719, 40.06898069222738], [-75.09404260233903, 40.07163329133227], [-75.09384252084408, 40.07183059824139], [-75.08996067275, 40.075661165003694], [-75.08951995056393, 40.076096031543], [-75.0891907542941, 40.07640878097414], [-75.08793830991601, 40.077598613149505], [-75.08689904947299, 40.0786463148236], [-75.0853654932011, 40.08010823724802], [-75.08390468787542, 40.08149006648177], [-75.08245787770203, 40.08288512949956], [-75.08168760417915, 40.083621315787084], [-75.0788450068151, 40.082049292987676], [-75.0778688389965, 40.08150231853251], [-75.07712295578538, 40.081081159091646], [-75.07625945129958, 40.080606739792614], [-75.07516847105627, 40.07999208020388], [-75.07463570858634, 40.079691913047505], [-75.07370523817029, 40.07918335936801], [-75.07301452470581, 40.07878225782444], [-75.07100864922093, 40.07768329396865], [-75.07038058984115, 40.07829099731442], [-75.06983091190762, 40.07882368559944], [-75.06921655202608, 40.07944205456631], [-75.06846470867045, 40.08016550253619], [-75.06827619919731, 40.080346677864654], [-75.06792498559446, 40.08060118151999], [-75.06708999434463, 40.081174476560655], [-75.06696943036414, 40.08125861072924], [-75.0654748991703, 40.082301532678365], [-75.06242021822165, 40.08439328542534], [-75.06011501160998, 40.08596985993657], [-75.06003442287486, 40.0860251054256], [-75.05992011887795, 40.08579897163223], [-75.05980438212187, 40.08552499483347], [-75.05965515328373, 40.085255350968396], [-75.05953738974036, 40.08503250834953], [-75.05945311392284, 40.08480533248337], [-75.05942270649093, 40.084564061096536], [-75.05940480238687, 40.084343556793144], [-75.05939791730421, 40.084013266940076], [-75.05942117231665, 40.08376301499222], [-75.05944442943007, 40.083512764891076], [-75.059463055046, 40.08321122260964], [-75.05930149847765, 40.08308460223097], [-75.05903703982814, 40.08303234667941], [-75.05870418288193, 40.08302455294798], [-75.05840380330494, 40.083037990541975], [-75.05813954732395, 40.08298061972417], [-75.05786482173603, 40.082851346657215], [-75.05762419352845, 40.08270239814969], [-75.05743199455884, 40.08250851872775], [-75.05735799887307, 40.08235835532862], [-75.05730519147647, 40.08217797800818], [-75.05739573415532, 40.08191139086551], [-75.05752891747137, 40.08174560762594], [-75.05768507545918, 40.081672491463536], [-75.0578855956929, 40.08165671504968], [-75.05810547877068, 40.08165674648728], [-75.05831387189762, 40.08161044616171], [-75.05847749470482, 40.08151703026426], [-75.05865483943762, 40.081413698717384], [-75.05882049051664, 40.08126914787851], [-75.05897043153769, 40.08101674440808], [-75.05899098615006, 40.08094668209277]]]}}, {"id": "8270", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.00727005000492, 40.06916284283319], [-75.00290365177997, 40.06668327635158], [-75.00020320019168, 40.06515197637998], [-74.99902373253308, 40.06448114410677], [-74.9984208088978, 40.06413807764871], [-74.99530548636974, 40.06236533704058], [-74.99451468543627, 40.06191530970193], [-74.99427698081958, 40.061782881163985], [-74.99395224082419, 40.061629044655696], [-74.99356775227025, 40.06149391799965], [-74.99321774729918, 40.061397389171425], [-74.99281403097854, 40.06133230332667], [-74.99239711762029, 40.06126941868098], [-74.99194572488256, 40.06116793486433], [-74.99170939033432, 40.06109679086137], [-74.99149351660745, 40.06100599428357], [-74.99130342505201, 40.06092588935296], [-74.99110105709491, 40.06082534327962], [-74.99085541386388, 40.06066080733073], [-74.99064230555005, 40.06050208736882], [-74.99051053375126, 40.060438488973645], [-74.9904325723008, 40.060397207455054], [-74.989286928798, 40.05937652147773], [-74.9879801607809, 40.05821631396604], [-74.98590682466101, 40.056378300947806], [-74.98529316777564, 40.05582904683217], [-74.98500302675573, 40.05557645381922], [-74.98475433761872, 40.055358582041585], [-74.98451795866875, 40.05514942559683], [-74.98439233134985, 40.055017035967204], [-74.9842573866046, 40.05490393180876], [-74.98415155670932, 40.05482814694793], [-74.98409878171032, 40.05478373231092], [-74.98401688146697, 40.054708509021076], [-74.98396572527261, 40.05462750125775], [-74.98379632094823, 40.05420356773441], [-74.98273352293714, 40.05301574562342], [-74.98229743001636, 40.05252025409304], [-74.98182371053878, 40.052047477411186], [-74.98158920688721, 40.051824814724505], [-74.98147989780368, 40.05171902695606], [-74.98093132226789, 40.05121469976086], [-74.98022845607794, 40.05058274545212], [-74.9766399576386, 40.04740753190659], [-74.978556593772, 40.046776920971546], [-74.97989203561042, 40.046340572217694], [-74.98059132219204, 40.04594380560141], [-74.98174496524592, 40.04506481578623], [-74.98267772211753, 40.044069039558025], [-74.98354833311693, 40.04303263159738], [-74.98494277204559, 40.04176918605419], [-74.98628044404798, 40.04094230870215], [-74.98770726511312, 40.039958475210966], [-74.98921273178432, 40.038655978629805], [-74.99046771078892, 40.03757014522302], [-74.99138517154653, 40.03677630839157], [-74.9940705153599, 40.034416675946346], [-74.99592322615307, 40.0327693789857], [-74.99899376226033, 40.035056771211345], [-75.00031946803244, 40.03618434268132], [-75.00250671990396, 40.03807633012065], [-75.00483810605391, 40.04012421177983], [-75.00697352621539, 40.0407409930132], [-75.0101011823225, 40.04167243934788], [-75.0113422425946, 40.04267395636326], [-75.01139389433654, 40.04272876581121], [-75.01246742931468, 40.043587646508655], [-75.01270851187705, 40.04378082221711], [-75.01342268280341, 40.04330713994061], [-75.01470318620812, 40.04434586745607], [-75.0163779323651, 40.04567344925912], [-75.01856361634631, 40.047101543709665], [-75.01998310726302, 40.04801396653994], [-75.01999314446053, 40.04807317837754], [-75.02005479512427, 40.04838511360781], [-75.02007984563811, 40.048582126789256], [-75.0201244262231, 40.04870357286658], [-75.020111095476, 40.048829978958686], [-75.01999170658894, 40.04892851967565], [-75.01988208259739, 40.04898927403982], [-75.01958352312684, 40.0490328679513], [-75.01935391439712, 40.04900206528802], [-75.01903066139741, 40.04891140340598], [-75.0187479652438, 40.04889895525579], [-75.01853330083512, 40.048906522773834], [-75.01833128834889, 40.04900943252222], [-75.01816196668464, 40.04911945649441], [-75.01803051421066, 40.049312750147635], [-75.0178802941837, 40.04956262166281], [-75.01778908370103, 40.049984972257434], [-75.01775672518255, 40.050174286210655], [-75.01773956595072, 40.05039564195628], [-75.01768945949236, 40.050616214968876], [-75.01758924577986, 40.05105735641996], [-75.01755043478562, 40.05120216498335], [-75.0175443161446, 40.05135408648656], [-75.01767049852461, 40.05149648319447], [-75.01786308884188, 40.051627784851746], [-75.01816921177453, 40.05180614059553], [-75.01838626073734, 40.05194435918992], [-75.0186370228605, 40.05206437200777], [-75.01889729725363, 40.0521529292174], [-75.01918432133711, 40.052191431808566], [-75.01952153238526, 40.052212119631534], [-75.01998255499787, 40.052229412557466], [-75.02042141397483, 40.05218281649405], [-75.02082351295573, 40.05213400019852], [-75.02088993332914, 40.05234177415102], [-75.02091723952032, 40.05248161358513], [-75.02087840672286, 40.05262831661571], [-75.02082877655748, 40.05277054528203], [-75.0207690258568, 40.05289144426327], [-75.02071080182549, 40.05297441796306], [-75.02069610560125, 40.05306686235357], [-75.02071464869559, 40.05315166073157], [-75.02076937187448, 40.053292150644964], [-75.02082613061091, 40.05338207472192], [-75.02093478167261, 40.05340996289716], [-75.02108747077057, 40.05343467920917], [-75.02131059809051, 40.05348215761974], [-75.02151829112039, 40.053503961948444], [-75.0216374022443, 40.0535447523138], [-75.02191830511406, 40.05365686930914], [-75.02209671789657, 40.053724374456756], [-75.02222781323063, 40.053740140788996], [-75.02236202016512, 40.053815031571304], [-75.02249209927083, 40.05385608053362], [-75.02327873692083, 40.05408564694144], [-75.02342391147224, 40.0541607967507], [-75.02344342237699, 40.0542899053639], [-75.0233061439893, 40.054427945416464], [-75.02325883533216, 40.05458077518629], [-75.02329770833737, 40.05470612463295], [-75.02329697751313, 40.05479257441689], [-75.02308683509538, 40.05503644028902], [-75.02301832165558, 40.055117459789635], [-75.02295270237222, 40.05518720906307], [-75.02296126227928, 40.05529285923183], [-75.02298959026602, 40.05540741431654], [-75.02296392945912, 40.05549959866026], [-75.02285912686669, 40.055648954179546], [-75.02281735264908, 40.05573231941055], [-75.02284183827801, 40.05587419975179], [-75.02292285415761, 40.055975242631], [-75.02306650910235, 40.05608831731229], [-75.02319354424118, 40.05620521517992], [-75.02329830532375, 40.056330019936595], [-75.02335792116091, 40.056438831672395], [-75.02339951134499, 40.05654331580518], [-75.0234514689111, 40.05661625220775], [-75.0235197094016, 40.056693793749254], [-75.0236138431599, 40.056809910294824], [-75.02373270735212, 40.0568570187658], [-75.023907932674, 40.056867502998784], [-75.02410433087374, 40.05689747005967], [-75.02421847374397, 40.056925486161866], [-75.02428629100011, 40.05701356132886], [-75.02426931312309, 40.057162892330595], [-75.0242474440112, 40.057297345292945], [-75.02425983172488, 40.05739886827296], [-75.02428002238715, 40.05751112142612], [-75.02431514065105, 40.05766168838805], [-75.02432187545998, 40.057767295084304], [-75.02425698143027, 40.05787963810014], [-75.02420457979494, 40.05795431600173], [-75.02413058150069, 40.05802004670343], [-75.02400612716242, 40.05811199571979], [-75.0239373583225, 40.058184176694986], [-75.02380439126402, 40.05821476437058], [-75.02364366633292, 40.05825312978684], [-75.02346564302887, 40.05831217277386], [-75.02335873957705, 40.05837712210828], [-75.02325698219693, 40.05845062826453], [-75.02318315065173, 40.058512144504434], [-75.02309303807974, 40.058569055531905], [-75.02297533559285, 40.05862953037194], [-75.02288041527724, 40.05866945575464], [-75.02277984274103, 40.0587134656363], [-75.022684922193, 40.05875339085738], [-75.02256654251953, 40.058830720591054], [-75.02242967671278, 40.05895822546024], [-75.02227070548015, 40.05908942320252], [-75.02214582306436, 40.05919190430037], [-75.02208143359125, 40.05929160464568], [-75.02201353883376, 40.05941020247696], [-75.02196766420064, 40.0595272137529], [-75.02189634982466, 40.0596626008018], [-75.02184773227115, 40.05977954690714], [-75.02175730775194, 40.059912371634475], [-75.0216406495094, 40.060015048423956], [-75.02156941869207, 40.06014832880668], [-75.02150203068393, 40.06025428397214], [-75.0213678719578, 40.060314366459814], [-75.02124261759111, 40.060357787997795], [-75.02116683397419, 40.06046776142961], [-75.0211230204869, 40.06060169364698], [-75.02105110996689, 40.06075182897833], [-75.02099768542261, 40.06085178921662], [-75.02094476815968, 40.060939107046785], [-75.02081722362328, 40.061039416015774], [-75.02070262528976, 40.061159012237674], [-75.02057977282244, 40.06127911509596], [-75.0204938950218, 40.06136705628301], [-75.02033050297699, 40.061403243645614], [-75.02019300601317, 40.06147800753754], [-75.02008010163895, 40.061555464966105], [-75.02002254762955, 40.0616215839113], [-75.0199864210835, 40.06170086460079], [-75.01992202488529, 40.061800563694625], [-75.0198283436528, 40.0619459631985], [-75.01973799707683, 40.062076679863075], [-75.01964420137666, 40.06215669944157], [-75.0195479172144, 40.06223033349241], [-75.01947871542869, 40.062313045872756], [-75.01940436738393, 40.06238720111911], [-75.01931871281806, 40.06246952330191], [-75.01922876021322, 40.06252221744369], [-75.01910556448806, 40.06258255709327], [-75.01899983768322, 40.0626180056519], [-75.01884871067023, 40.06269033467704], [-75.01874179707323, 40.062755279728954], [-75.01866264229521, 40.06281244797046], [-75.01855222208856, 40.06289629026223], [-75.0184215618429, 40.062937470988345], [-75.0182824199927, 40.06298477804318], [-75.01816470559515, 40.06304524704141], [-75.01804614240108, 40.06312678588627], [-75.01800384966306, 40.063222791701655], [-75.0179495701373, 40.063343818675705], [-75.01788997588838, 40.06346050230505], [-75.01779662625562, 40.0635974733855], [-75.01766669581285, 40.06375677132412], [-75.01749662400833, 40.06382232182605], [-75.01730693318339, 40.06389795055588], [-75.01714500277654, 40.063965802656504], [-75.01704390934661, 40.0640224489414], [-75.01689175837886, 40.06412005915821], [-75.01677918545927, 40.0641890848095], [-75.01666610404993, 40.06427075271167], [-75.0165706627164, 40.06432331430387], [-75.0164025669745, 40.06440789103234], [-75.01623961545582, 40.0645010256198], [-75.01620896722129, 40.06458043649334], [-75.01616616152177, 40.0646890821555], [-75.01600631554668, 40.06484134024199], [-75.01588587828371, 40.06496922876008], [-75.01576586519033, 40.06508658307714], [-75.01574954597372, 40.065219057514625], [-75.0157425817053, 40.0653918255055], [-75.01565594839043, 40.06563440111219], [-75.01558503848605, 40.06575925009745], [-75.01549287137524, 40.06586672175268], [-75.01545142274483, 40.06594165666884], [-75.01537983261072, 40.06608336076093], [-75.01531457721896, 40.06620412632028], [-75.01521828261474, 40.06627775672721], [-75.01508427752486, 40.066333617178856], [-75.01498351749207, 40.06638183399944], [-75.01485293330873, 40.06642090420657], [-75.01469003582997, 40.06644444301656], [-75.01455328716379, 40.06650023755559], [-75.01442176779595, 40.06656248366375], [-75.0142842526952, 40.06663724043714], [-75.01418614950114, 40.066687628313986], [-75.01414170114295, 40.066768818609674], [-75.01415939115768, 40.066874687043146], [-75.01423492275127, 40.06697560540138], [-75.01429202300844, 40.067057104995996], [-75.01438994155741, 40.06721549770347], [-75.01439855380417, 40.06734223923181], [-75.01434598649034, 40.067488613490006], [-75.01430300598287, 40.067601473147434], [-75.01425041589033, 40.06768036117643], [-75.01413783434027, 40.06774938512688], [-75.01401445462469, 40.06781393310805], [-75.01390956693898, 40.06782830704168], [-75.01376775522982, 40.067873435980935], [-75.0136854235918, 40.06794107045589], [-75.0136545996472, 40.06802469441069], [-75.01366234006926, 40.068105017962885], [-75.013658090155, 40.068210364007015], [-75.01363003069318, 40.068361539452575], [-75.01361277147016, 40.06851719084309], [-75.01356917244466, 40.06857731100868], [-75.01341407181296, 40.0686115789023], [-75.01328803076183, 40.0686739542966], [-75.01320527263027, 40.0687521224871], [-75.0131434338241, 40.0688560969041], [-75.01309470956213, 40.0689751465982], [-75.01304152189287, 40.06906878193416], [-75.01299938840812, 40.06916057207089], [-75.01292451568432, 40.069247363609996], [-75.01285597882301, 40.069313217652315], [-75.01278042667118, 40.06941686524192], [-75.01264369118155, 40.069540144576386], [-75.01248365580095, 40.06969661152543], [-75.01240227778314, 40.06980855580792], [-75.01234798178868, 40.069929580963226], [-75.01227740265138, 40.07004600029827], [-75.01216294414564, 40.070161374140504], [-75.01207246548898, 40.07022670406734], [-75.01193674889853, 40.07032469976572], [-75.0118207583076, 40.070477997489135], [-75.0117368264488, 40.07065314833198], [-75.0116641830306, 40.070752646713004], [-75.01153052607532, 40.070867562474575], [-75.01145556450106, 40.0709564603993], [-75.01140118198131, 40.07107959247818], [-75.01133066624226, 40.07118005144515], [-75.00727005000492, 40.06916284283319]]]}}, {"id": "8300", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.04580687006829, 40.0395804105673], [-75.0474065050084, 40.03789343353875], [-75.04855944706433, 40.03666656703972], [-75.04693303678364, 40.03576355445415], [-75.04597419610603, 40.03522756508031], [-75.04492768604423, 40.03464254968361], [-75.04580164198363, 40.034176476257336], [-75.04665793239292, 40.03372700236978], [-75.04677139455464, 40.033684118641375], [-75.04771947920379, 40.0333027373664], [-75.04867198729823, 40.03295489498672], [-75.04991032850579, 40.03261150364894], [-75.05097354286903, 40.03232582356486], [-75.05268628258194, 40.03184703228738], [-75.05285796282334, 40.03179739878761], [-75.05324994815125, 40.031701519137656], [-75.0548027092524, 40.03255070960607], [-75.05486963353049, 40.03259570069375], [-75.0565084990886, 40.033503254434855], [-75.05812369049985, 40.03440572633176], [-75.05976186725078, 40.03531184400613], [-75.06113997797009, 40.036065823974994], [-75.06238203492896, 40.03679536275914], [-75.062502852093, 40.03689443759703], [-75.06212144079021, 40.03710684041035], [-75.0618255356151, 40.03730550024004], [-75.06141110167145, 40.03763975920058], [-75.06106479422336, 40.03796318088107], [-75.06101051345323, 40.03801387425303], [-75.05879506193901, 40.04010164795467], [-75.05855594906858, 40.040312717870684], [-75.05670935146723, 40.04206037491096], [-75.05612301550626, 40.04264626875537], [-75.05561028491073, 40.0431883691441], [-75.05492781601713, 40.04385567168835], [-75.05460150362975, 40.04415792107146], [-75.054288575661, 40.04444780416778], [-75.04855924363905, 40.041146279229956], [-75.04580687006829, 40.0395804105673]]]}}, {"id": "8310", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.08997232434874, 40.05782207720906], [-75.08840985984426, 40.05694126266981], [-75.08662023866947, 40.05594685106228], [-75.08617744057557, 40.05569545247368], [-75.08595836163552, 40.05556809118631], [-75.08587644984081, 40.055503803104216], [-75.0857956987781, 40.05542581638905], [-75.08487165715582, 40.05488253906962], [-75.0845139349677, 40.0552925284236], [-75.0842284438816, 40.05559627468498], [-75.08399188675543, 40.05586227698336], [-75.0836553608135, 40.05621406309386], [-75.0827520610956, 40.05572331553077], [-75.08186603160338, 40.055215426542915], [-75.08084986682182, 40.05466084634046], [-75.07981575873377, 40.05408550147162], [-75.07950874382271, 40.054419384957846], [-75.07921728890726, 40.05472044687155], [-75.07894388368823, 40.0550164197011], [-75.07863198529692, 40.05535800129497], [-75.07673423979696, 40.05735167621376], [-75.07503258792923, 40.056360110360174], [-75.07409579140203, 40.05582026905029], [-75.07325641605624, 40.05533105113294], [-75.0714713444968, 40.05429561144987], [-75.06972233687439, 40.05328592583538], [-75.06913354449135, 40.05295041203199], [-75.06850345733856, 40.052591793505435], [-75.06772433304438, 40.05214658768736], [-75.06604683768562, 40.05118232361415], [-75.06669185706753, 40.050543039089554], [-75.06727426491679, 40.04997353898988], [-75.06787343897767, 40.04935188152548], [-75.06847589500786, 40.04873091409659], [-75.06907498348741, 40.04811091937425], [-75.0696893040897, 40.047481945983684], [-75.07030203561538, 40.046823274699946], [-75.07088714926057, 40.04621961091087], [-75.07146501476772, 40.04564898413407], [-75.0720702659434, 40.0450251982418], [-75.07264598524705, 40.04439500937581], [-75.0732510924011, 40.04379731122706], [-75.07383656948787, 40.043175065259916], [-75.07443892565124, 40.04254487598299], [-75.07503370357503, 40.041941143862246], [-75.07545468513057, 40.04215513798341], [-75.07555346965913, 40.04220531304383], [-75.0765608830969, 40.042763955361195], [-75.07856631286752, 40.043905245218944], [-75.08035251915297, 40.04490616956516], [-75.08234451175854, 40.04599251847069], [-75.08300095783821, 40.046371493960706], [-75.08341587267958, 40.046600359614075], [-75.08365174732054, 40.046724542027356], [-75.08406675926334, 40.046964233443056], [-75.0856951039326, 40.04785186002135], [-75.08697553819498, 40.04856837334297], [-75.08763612729165, 40.04704383759833], [-75.08794833282026, 40.04634483545947], [-75.08831388614998, 40.045515125514], [-75.08897663424665, 40.044333503559685], [-75.0903533819722, 40.04298457247651], [-75.094176025479, 40.04502710432539], [-75.09453467758765, 40.04522327325332], [-75.09479268570398, 40.0453649583314], [-75.0951428672017, 40.04555226333374], [-75.09600049007513, 40.04600379173299], [-75.09697175151327, 40.04656599718221], [-75.09801858961916, 40.04709794044168], [-75.09880087535097, 40.04753158377558], [-75.09956065794458, 40.04797498853239], [-75.10039563010359, 40.04869298730429], [-75.10133641421142, 40.049540434137114], [-75.1018914465809, 40.05006629533136], [-75.10281166625275, 40.0508685864897], [-75.1030246267211, 40.051089122973224], [-75.10310487206245, 40.05119338851588], [-75.10075000741492, 40.052589800378406], [-75.10016462242423, 40.052947969102206], [-75.09983039549444, 40.05315383660878], [-75.09937540599458, 40.05330003122185], [-75.09911047209413, 40.05356349100261], [-75.09880255946189, 40.05371498814136], [-75.09846339383841, 40.05388885033198], [-75.09766560795609, 40.05436649656119], [-75.09748783614391, 40.05447997074385], [-75.09650501415967, 40.05517207626254], [-75.09575755844112, 40.0556306342029], [-75.09511934619522, 40.05593782266534], [-75.09468071935262, 40.056370745767495], [-75.09361503390471, 40.05741817620406], [-75.09354111024288, 40.05731198399955], [-75.09345644681767, 40.057189632053856], [-75.09333583281115, 40.057015325871674], [-75.09252516508181, 40.05691461494527], [-75.0908474266367, 40.05824780573915], [-75.08997232434874, 40.05782207720906]]]}}, {"id": "8340", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.06540361474656, 40.05081003955534], [-75.06513211427097, 40.05066554213725], [-75.06484350368635, 40.050495128381236], [-75.0645613032086, 40.050339881398195], [-75.06418663053842, 40.05013079060843], [-75.06383084698672, 40.04993198322422], [-75.06354775787439, 40.04977992868425], [-75.0634386635129, 40.04975238066097], [-75.06238419105132, 40.049149229061904], [-75.0613752774647, 40.04858659306768], [-75.05993725162006, 40.04775231666055], [-75.05836847221693, 40.04680641598864], [-75.05806617351023, 40.046632372140266], [-75.05772602777856, 40.046411552886525], [-75.05737072220283, 40.04620859185653], [-75.05704869255719, 40.046031297565584], [-75.05671472872338, 40.04583586108637], [-75.05638402993739, 40.045640916435765], [-75.05614410928958, 40.04550022611669], [-75.05572346243962, 40.04525751492341], [-75.05464795929313, 40.04464634220914], [-75.05443484012639, 40.044529909686844], [-75.054288575661, 40.04444780416778], [-75.05460150362975, 40.04415792107146], [-75.05492781601713, 40.04385567168835], [-75.05561028491073, 40.0431883691441], [-75.05612301550626, 40.04264626875537], [-75.05670935146723, 40.04206037491096], [-75.05855594906858, 40.040312717870684], [-75.05879506193901, 40.04010164795467], [-75.06101051345323, 40.03801387425303], [-75.06106479422336, 40.03796318088107], [-75.06140380301757, 40.03813629649556], [-75.06154488245978, 40.03821427560114], [-75.06214677605868, 40.038546631227106], [-75.06268346286417, 40.03883432856052], [-75.06344313976948, 40.039269320376555], [-75.06449621821068, 40.03985446021455], [-75.06558187540165, 40.04044320316244], [-75.0660857896981, 40.04072975664135], [-75.06642601490118, 40.04093771954029], [-75.06675770935561, 40.04111460245521], [-75.06706596059117, 40.041297768499824], [-75.06739568625702, 40.04147925558724], [-75.06766325307836, 40.041635557581635], [-75.06798420272139, 40.04179847020789], [-75.06823563552051, 40.04194630812822], [-75.0685577882953, 40.04212473879472], [-75.06886529842217, 40.04229304231545], [-75.06920821257458, 40.042477206954615], [-75.06946025604138, 40.0426220306221], [-75.06976855750999, 40.042788664233946], [-75.0700275588608, 40.042931021514136], [-75.07034146085934, 40.04310166587641], [-75.07063400351964, 40.04327336991995], [-75.0710144394115, 40.04348418205174], [-75.07130585465983, 40.04364719900084], [-75.0716119804814, 40.04382430087064], [-75.0718666728502, 40.04395920354846], [-75.07224860971324, 40.044162562355126], [-75.07264598524705, 40.04439500937581], [-75.0720702659434, 40.0450251982418], [-75.07146501476772, 40.04564898413407], [-75.07088714926057, 40.04621961091087], [-75.07030203561538, 40.046823274699946], [-75.0696893040897, 40.047481945983684], [-75.06907498348741, 40.04811091937425], [-75.06847589500786, 40.04873091409659], [-75.06787343897767, 40.04935188152548], [-75.06727426491679, 40.04997353898988], [-75.06669185706753, 40.050543039089554], [-75.06604683768562, 40.05118232361415], [-75.06575581403023, 40.05100925276912], [-75.06540361474656, 40.05081003955534]]]}}, {"id": "8350", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.0716119804814, 40.04382430087064], [-75.07130585465983, 40.04364719900084], [-75.0710144394115, 40.04348418205174], [-75.07063400351964, 40.04327336991995], [-75.07034146085934, 40.04310166587641], [-75.0700275588608, 40.042931021514136], [-75.06976855750999, 40.042788664233946], [-75.06946025604138, 40.0426220306221], [-75.06920821257458, 40.042477206954615], [-75.06886529842217, 40.04229304231545], [-75.0685577882953, 40.04212473879472], [-75.06823563552051, 40.04194630812822], [-75.06798420272139, 40.04179847020789], [-75.06766325307836, 40.041635557581635], [-75.06739568625702, 40.04147925558724], [-75.06706596059117, 40.041297768499824], [-75.06675770935561, 40.04111460245521], [-75.06642601490118, 40.04093771954029], [-75.0660857896981, 40.04072975664135], [-75.06558187540165, 40.04044320316244], [-75.06449621821068, 40.03985446021455], [-75.06344313976948, 40.039269320376555], [-75.06268346286417, 40.03883432856052], [-75.06214677605868, 40.038546631227106], [-75.06154488245978, 40.03821427560114], [-75.06140380301757, 40.03813629649556], [-75.06106479422336, 40.03796318088107], [-75.06141110167145, 40.03763975920058], [-75.0618255356151, 40.03730550024004], [-75.06212144079021, 40.03710684041035], [-75.062502852093, 40.03689443759703], [-75.06289854950163, 40.036705949036644], [-75.06319645774718, 40.03658640547235], [-75.06356652744833, 40.03648551118628], [-75.06436363948667, 40.03630732602594], [-75.06518040298042, 40.03612573203004], [-75.0660952774568, 40.03590830909203], [-75.06767241302904, 40.03552753743839], [-75.06809997139733, 40.03543185853618], [-75.06959738437399, 40.03509441906304], [-75.07109755523071, 40.0347439109783], [-75.07148466221675, 40.03466540963907], [-75.07443993025743, 40.03398123715264], [-75.07529951176552, 40.033783704283984], [-75.07697795937855, 40.033397972680206], [-75.07744388361579, 40.033296176686676], [-75.0807438478966, 40.03253982344368], [-75.08177593009637, 40.032308839996325], [-75.08190521436933, 40.032282428233174], [-75.08200440584257, 40.0322584952175], [-75.08210904612866, 40.03222753624818], [-75.08380562658093, 40.03190043045333], [-75.08394974653352, 40.031864818843445], [-75.08408993092331, 40.03182185063179], [-75.084097405649, 40.03188155842482], [-75.08413521559794, 40.0319684446678], [-75.08427364859448, 40.032173074144445], [-75.08417226608184, 40.03231398234938], [-75.08401838790222, 40.03253985258157], [-75.08337184825928, 40.03324444864927], [-75.08292349300645, 40.03372330867389], [-75.08218024701313, 40.03448704593086], [-75.08195841577964, 40.03471897149558], [-75.08175869585502, 40.03492521355816], [-75.08157537830293, 40.03511145579118], [-75.08137885375395, 40.03531391323505], [-75.08098162607358, 40.03571413929394], [-75.08060112266844, 40.036131819358744], [-75.08024922552187, 40.03651060128627], [-75.07983718668031, 40.03692272182405], [-75.07954709690475, 40.03722276508653], [-75.07931365313148, 40.0374713951191], [-75.07915910930849, 40.037622473914574], [-75.07899997600468, 40.03779706653513], [-75.07882205767763, 40.03798920232221], [-75.07862140296287, 40.038206697716774], [-75.07838964012736, 40.03843440242911], [-75.07821099744447, 40.03861885625212], [-75.07801135411607, 40.03882753769454], [-75.07782992709585, 40.0390022391198], [-75.0773958050892, 40.03946541060029], [-75.07700242865678, 40.03988600766493], [-75.07682097008166, 40.040075356887755], [-75.07665244087141, 40.04025881302328], [-75.07623828501488, 40.04068659459254], [-75.07583571343075, 40.04109610738058], [-75.07545256782305, 40.0414780821767], [-75.07503370357503, 40.041941143862246], [-75.07443892565124, 40.04254487598299], [-75.07383656948787, 40.043175065259916], [-75.0732510924011, 40.04379731122706], [-75.07264598524705, 40.04439500937581], [-75.07224860971324, 40.044162562355126], [-75.0718666728502, 40.04395920354846], [-75.0716119804814, 40.04382430087064]]]}}, {"id": "8360", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.06405818719493, 40.06677025634781], [-75.0630408094246, 40.066144789190346], [-75.06255763313197, 40.06583861502309], [-75.06218147795423, 40.06560470005923], [-75.06133659676387, 40.065057789812315], [-75.05962484879859, 40.06397538184036], [-75.05769815107087, 40.062788811856926], [-75.05614632296499, 40.06183339815738], [-75.05418457187895, 40.06071898139321], [-75.05240827802209, 40.059740597259314], [-75.05202317645325, 40.05953669355135], [-75.05058270628449, 40.058770569622034], [-75.04856087951997, 40.05766348831064], [-75.04814635480116, 40.057439439991185], [-75.04780547251835, 40.05724869132331], [-75.04739752439824, 40.05703210686795], [-75.0470043191248, 40.056819119641574], [-75.0468569505688, 40.05673893712926], [-75.04667970088784, 40.05664514380146], [-75.04653734773393, 40.05656862179591], [-75.0473796338358, 40.05574498363881], [-75.04749817741373, 40.05564927592735], [-75.04774962504511, 40.05536430870876], [-75.04905018513644, 40.05407708512535], [-75.04964729232861, 40.05347835338288], [-75.04993761409428, 40.05319662649828], [-75.05015918593955, 40.052955041413384], [-75.05034323522091, 40.05268789358886], [-75.05042475255875, 40.05257628439179], [-75.05046568303189, 40.052508291736785], [-75.0505184779635, 40.052414280789066], [-75.05071463051047, 40.0519831306507], [-75.0508348505287, 40.05150787577755], [-75.05089050413272, 40.051103695807655], [-75.050905547692, 40.05075968333635], [-75.05090916889004, 40.050580507726], [-75.05105274198593, 40.049070751012366], [-75.05112820905771, 40.04831042708993], [-75.05114765733573, 40.048114481781674], [-75.05134894495073, 40.04754785826596], [-75.05168691105588, 40.0469585760105], [-75.05221162133299, 40.046387949574495], [-75.054288575661, 40.04444780416778], [-75.05443484012639, 40.044529909686844], [-75.05464795929313, 40.04464634220914], [-75.05572346243962, 40.04525751492341], [-75.05614410928958, 40.04550022611669], [-75.05638402993739, 40.045640916435765], [-75.05671472872338, 40.04583586108637], [-75.05704869255719, 40.046031297565584], [-75.05737072220283, 40.04620859185653], [-75.05772602777856, 40.046411552886525], [-75.05806617351023, 40.046632372140266], [-75.05836847221693, 40.04680641598864], [-75.05993725162006, 40.04775231666055], [-75.0613752774647, 40.04858659306768], [-75.06238419105132, 40.049149229061904], [-75.0634386635129, 40.04975238066097], [-75.06354775787439, 40.04977992868425], [-75.06383084698672, 40.04993198322422], [-75.06418663053842, 40.05013079060843], [-75.0645613032086, 40.050339881398195], [-75.06484350368635, 40.050495128381236], [-75.06513211427097, 40.05066554213725], [-75.06540361474656, 40.05081003955534], [-75.06575581403023, 40.05100925276912], [-75.06604683768562, 40.05118232361415], [-75.06772433304438, 40.05214658768736], [-75.06850345733856, 40.052591793505435], [-75.06913354449135, 40.05295041203199], [-75.06972233687439, 40.05328592583538], [-75.0714713444968, 40.05429561144987], [-75.07325641605624, 40.05533105113294], [-75.07159330153667, 40.05710541404976], [-75.07041884608611, 40.058348266294544], [-75.06922522469736, 40.05958424575375], [-75.06876647953051, 40.06004889185658], [-75.06807519408441, 40.0608252823429], [-75.06894885909264, 40.061300326928006], [-75.06988024443862, 40.061825341066864], [-75.06502668978634, 40.067345239044975], [-75.06405818719493, 40.06677025634781]]]}}, {"id": "8370", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.01456067078037, 40.13768065893307], [-75.0138684262985, 40.13725936442157], [-75.01223394265399, 40.136258288870415], [-75.01145933375201, 40.13578384504616], [-75.01062219911778, 40.13527108950435], [-75.01042775736174, 40.13515198930369], [-75.00946320264039, 40.13457113553308], [-75.00909381736882, 40.134356185708235], [-75.00833596776289, 40.1339151761605], [-75.00690178558112, 40.13308056182538], [-75.00595861235607, 40.13253191330906], [-75.00327001426656, 40.13096784691968], [-75.00095172285465, 40.129611280464566], [-74.99974011719799, 40.12890703669493], [-74.9985346905457, 40.12819793818561], [-74.9978850588362, 40.12781794116706], [-74.99780190241209, 40.12790374778628], [-74.99757220204631, 40.12811959877898], [-74.99744965541919, 40.12825118330879], [-74.99419528808693, 40.13151014669864], [-74.99384688724413, 40.13185471136569], [-74.99367317732383, 40.13173436666953], [-74.99350785278044, 40.13161576347745], [-74.99343106095644, 40.13155152365505], [-74.99335533436061, 40.13146118845349], [-74.99321078471104, 40.131319865993845], [-74.99310093956477, 40.131185178047396], [-74.99299676270985, 40.131050626760704], [-74.99292156692285, 40.13094724398734], [-74.99284088018882, 40.130816157055825], [-74.99278026356792, 40.130726185458435], [-74.99275110516915, 40.13060649049591], [-74.99274390324655, 40.13050473851017], [-74.99277175782396, 40.13042414137247], [-74.99281359908359, 40.1303017972717], [-74.9929023373726, 40.13021177663748], [-74.9930469675919, 40.13018839744057], [-74.99310816805531, 40.13005490803291], [-74.993100548191, 40.1298936480917], [-74.9931600387094, 40.129778982289196], [-74.99327813756538, 40.12973392528314], [-74.99338897696153, 40.129704655558946], [-74.99350270793782, 40.12965078758715], [-74.99350258578647, 40.12951437573597], [-74.99344940499783, 40.12942748500944], [-74.99341711256507, 40.12917566099978], [-74.99342224211132, 40.12900309829395], [-74.99350627829726, 40.1287729279413], [-74.99366020157917, 40.12875340025432], [-74.99369171487793, 40.1286757929296], [-74.9937830750758, 40.12861413053864], [-74.99380348967514, 40.1284840181938], [-74.99366012652379, 40.12838335521616], [-74.99368703397506, 40.128209861928816], [-74.99366826208929, 40.12811363735725], [-74.99375206224478, 40.12791248437565], [-74.99389381834347, 40.127750450369135], [-74.99400459382454, 40.127676194932434], [-74.9941000243865, 40.12760737452182], [-74.99423670784721, 40.12750036439918], [-74.99440737836564, 40.12727807307649], [-74.99447276364499, 40.12711130801509], [-74.99452646102851, 40.12695296893941], [-74.99454409430443, 40.12668202702574], [-74.9944807001155, 40.12652088068956], [-74.99442639881008, 40.126415097107525], [-74.99435025872926, 40.12621882018101], [-74.99427589196361, 40.126141577996655], [-74.99415325042847, 40.12608930072979], [-74.99392432087171, 40.12604753438069], [-74.99348109976557, 40.12599918257441], [-74.99314711869496, 40.12593748455393], [-74.99287616866249, 40.125906320763235], [-74.9926359106685, 40.12591071823606], [-74.9923637235236, 40.12593321422704], [-74.99204396969058, 40.125986496201385], [-74.99170214125444, 40.12607117157965], [-74.99145379683662, 40.12613486977064], [-74.99106628732451, 40.12620393596334], [-74.99078200041933, 40.12626822208866], [-74.9906201734298, 40.12629626404043], [-74.99039532413906, 40.12625086354251], [-74.99029392602662, 40.12623039113767], [-74.99008122672589, 40.12623109067799], [-74.98974081450858, 40.12623452928292], [-74.9895593341608, 40.12623452823697], [-74.98933784425813, 40.126195834500834], [-74.98915583444865, 40.12616244294436], [-74.98905875193762, 40.126109321214216], [-74.98904187525785, 40.12601313939742], [-74.98901219261161, 40.125906494258736], [-74.98898410602332, 40.125760704715326], [-74.98906950887601, 40.125601677456196], [-74.98901350705765, 40.12547988794097], [-74.9889384974872, 40.125418589031064], [-74.98879745063422, 40.12530781757151], [-74.98870376831839, 40.12512490064517], [-74.98850020774394, 40.12469264952626], [-74.98848268484002, 40.12456597722211], [-74.98838980683794, 40.12427061582366], [-74.98836165835336, 40.12417271247097], [-74.98824027051452, 40.12404354766518], [-74.98805750308202, 40.1239593439921], [-74.98783896771224, 40.12394103529547], [-74.98770654101158, 40.123897221980116], [-74.98754265877153, 40.123790255182094], [-74.98738521497013, 40.12366457634058], [-74.98731469498354, 40.123585971982386], [-74.9871948402606, 40.1235119852043], [-74.98704500171455, 40.123477910475984], [-74.98684418330842, 40.12332652032373], [-74.98666945185785, 40.12316124321139], [-74.98651902950084, 40.12304879274083], [-74.98642454740087, 40.12304797297941], [-74.98624330656364, 40.123135040242815], [-74.98603639097097, 40.12324906180734], [-74.98591959548023, 40.12333187281942], [-74.98567431656518, 40.12348270102307], [-74.9855275955225, 40.12360397328139], [-74.98513276405075, 40.12382956806535], [-74.98499843823157, 40.123901798125566], [-74.98486488113883, 40.12393196412], [-74.98469840033007, 40.12393521553624], [-74.98455245852941, 40.12389833072942], [-74.98445461633227, 40.1238408345315], [-74.98438616735899, 40.123757923261785], [-74.98435790537371, 40.12366291838033], [-74.98430592358461, 40.12359346490056], [-74.98421274002482, 40.12356074895703], [-74.98407853783876, 40.12356042451801], [-74.98397502306135, 40.123595663268794], [-74.9836767594915, 40.123608807072536], [-74.98354349950957, 40.123631721506506], [-74.98343809993273, 40.123620478076916], [-74.98313696708402, 40.12344925398773], [-74.98290564151625, 40.12332759496191], [-74.98281907207792, 40.12327182017356], [-74.98268134745676, 40.12314951147065], [-74.98261095951418, 40.123021566745926], [-74.98258500724079, 40.12291646013414], [-74.98259313937157, 40.12276355858768], [-74.98273754554711, 40.1225370250372], [-74.98275626640915, 40.12244895670757], [-74.98272240401374, 40.12235236496688], [-74.98263348621425, 40.122215268243], [-74.98247616214583, 40.12192487866225], [-74.98229183649046, 40.12190230320981], [-74.98219181957151, 40.12180557160739], [-74.98225143867948, 40.12168801186797], [-74.98237828163757, 40.121521280553715], [-74.98238815087403, 40.12141848488436], [-74.98241194768732, 40.12129861222322], [-74.98245450499472, 40.12122852887616], [-74.98260003717536, 40.12118269249207], [-74.98276958654986, 40.1211504948091], [-74.9829306993569, 40.121093421818045], [-74.98300223393417, 40.12100807497506], [-74.98306751447676, 40.120890650179], [-74.983080804259, 40.12079664466655], [-74.98307769441928, 40.12064129742954], [-74.98303328175004, 40.12045593308441], [-74.98298283921916, 40.12034878383909], [-74.98292129453237, 40.120282001848466], [-74.98278764029821, 40.120222189804174], [-74.98269367366333, 40.120139390472424], [-74.98261806292406, 40.120046873290725], [-74.98251456218918, 40.11998923817729], [-74.98237093233877, 40.1199422464889], [-74.98216409935375, 40.11991550221207], [-74.9819809850239, 40.119909643010125], [-74.98183315979003, 40.11991914556726], [-74.9816972476433, 40.11996085947256], [-74.98158700540135, 40.12002205591612], [-74.98150715492436, 40.12007963179768], [-74.98135807846693, 40.120142795423035], [-74.98120375893839, 40.12017245535031], [-74.98105221429736, 40.12018041574893], [-74.98086939545769, 40.12016730742784], [-74.9807250555385, 40.12013771056408], [-74.98041188790387, 40.120076475793724], [-74.98029098448727, 40.1200053594499], [-74.98010425541783, 40.11985017926239], [-74.97996529974716, 40.11973470075871], [-74.98147515610661, 40.1186769133751], [-74.9832953100798, 40.11725366951866], [-74.98376690795077, 40.116945591479535], [-74.98497655197892, 40.116048088569165], [-74.98777727231318, 40.114128017574764], [-74.98962186970763, 40.11284772728174], [-74.99072087794879, 40.112101463231575], [-74.99549876139298, 40.10879904559209], [-74.99667938760946, 40.10800050653488], [-74.9968236875527, 40.10790136357909], [-74.99668944228584, 40.107775838781585], [-74.99639582594651, 40.1075218009091], [-74.99470828060764, 40.10612149353524], [-74.9944361008318, 40.10585213685131], [-74.99217821394565, 40.103963569454834], [-74.99003518154542, 40.10211898869551], [-74.98891948652006, 40.101196604672424], [-74.98807317181068, 40.10045024082944], [-74.98667529438421, 40.09927999004267], [-74.98686286259387, 40.09914759612365], [-74.98728400129649, 40.09885130072101], [-74.9875405116155, 40.09865870896836], [-74.98781255018112, 40.098403433270256], [-74.98801555830231, 40.098198226784405], [-74.98825650823251, 40.09796565247674], [-74.98845261605591, 40.09780067963804], [-74.99126578796898, 40.095779203568775], [-74.99468698631495, 40.0985157489326], [-74.99546405689867, 40.09916734037778], [-74.99657424689374, 40.100140078323584], [-74.99723871681812, 40.100751491956906], [-74.99816680486222, 40.10160707675546], [-74.99838625313424, 40.10185089076054], [-74.99873340533885, 40.10231021991832], [-74.99901105573085, 40.10257798261559], [-74.99980595308102, 40.10323798393834], [-75.001340227351, 40.10447338267896], [-75.00136789022717, 40.10456204607671], [-75.00149790449852, 40.1046791321352], [-75.00164633387656, 40.1048024998248], [-75.00179675486682, 40.10493172044542], [-75.00978586328247, 40.11144901647281], [-75.01315715970044, 40.11397164430021], [-75.01405579936676, 40.114358078192055], [-75.01488513379138, 40.114771444084184], [-75.01716677391697, 40.116117378431504], [-75.01739326479394, 40.11618138360495], [-75.01760274888854, 40.11619368898693], [-75.01790159654345, 40.116120184293074], [-75.01829950741967, 40.115780499219866], [-75.01905312452371, 40.11619950584618], [-75.01987429417981, 40.11666437903554], [-75.0209333336518, 40.1172453878266], [-75.02201567349113, 40.11781847198307], [-75.02216119910535, 40.11789417605088], [-75.02298428830309, 40.118342812032566], [-75.02377258300768, 40.11876699768091], [-75.02460789142913, 40.119217782683876], [-75.02551266739819, 40.11971559046697], [-75.02782474166607, 40.120925153598286], [-75.02854697652947, 40.12132704323474], [-75.02938197636728, 40.12173577231891], [-75.02977332370307, 40.121876166199485], [-75.03006993446725, 40.121943360379674], [-75.03043774058939, 40.12201223927109], [-75.03065632113092, 40.122031169005254], [-75.0311063297577, 40.12204446019847], [-75.03162501875032, 40.12201792395095], [-75.03214415732494, 40.12193222228967], [-75.03264767458357, 40.121787477379655], [-75.03373877093078, 40.121377934919174], [-75.03487352835602, 40.12097568456606], [-75.03649616603012, 40.12039195367696], [-75.03767077099427, 40.12014456163275], [-75.03790870422559, 40.12016854479975], [-75.03165368202416, 40.12450474988725], [-75.02578697968089, 40.12857094226713], [-75.02535538098483, 40.12889038492844], [-75.02489288491259, 40.12921773685513], [-75.02057228005175, 40.13227559885376], [-75.01795079475555, 40.1348493174986], [-75.01496568865494, 40.13792673459656], [-75.01456067078037, 40.13768065893307]]]}}, {"id": "8380", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.04437544784992, 40.076515986745726], [-75.04420098626825, 40.076340808020944], [-75.04398238591108, 40.07603152918247], [-75.04381666845494, 40.07584388336682], [-75.04350437156484, 40.07540250824636], [-75.04344653650189, 40.07519839220523], [-75.04347130832939, 40.07501237386902], [-75.0434818653947, 40.07493311127461], [-75.04358058733531, 40.074732682333874], [-75.04381174842123, 40.07431361061849], [-75.04387877137246, 40.07408075501489], [-75.04388862161355, 40.07383388162932], [-75.04367347260144, 40.07364506960524], [-75.04338088274055, 40.07353680258656], [-75.04299664661441, 40.0734517197984], [-75.0427300417902, 40.07331238140349], [-75.04234135855599, 40.073132150758376], [-75.04185417957775, 40.07294009334167], [-75.0416120446288, 40.07280766508903], [-75.04138815858997, 40.072631315890035], [-75.04132108124091, 40.072452325411106], [-75.04136137041226, 40.07226952947355], [-75.04147430148507, 40.07212646098452], [-75.0418127306453, 40.071912676397304], [-75.04208473704509, 40.07170999709947], [-75.04248841833828, 40.07130766563954], [-75.04276168364336, 40.07107333361617], [-75.04285241512586, 40.07086638181349], [-75.04302513401653, 40.07046494259144], [-75.04357575655808, 40.069479984511155], [-75.04376191556884, 40.06915489498487], [-75.04385971299041, 40.06877069871069], [-75.04388739876102, 40.06828347515002], [-75.04386302954859, 40.068067475794585], [-75.0437825664205, 40.067397128713154], [-75.04367908978594, 40.06709689587563], [-75.04350844181876, 40.06682676256377], [-75.04331929512507, 40.06660688172657], [-75.04311837397684, 40.06647542875296], [-75.04289147572567, 40.066375041588714], [-75.04252300081988, 40.06630933607577], [-75.04214704345395, 40.06622444269112], [-75.04181278865332, 40.06612786129399], [-75.04147018298123, 40.066018667392534], [-75.0413335088859, 40.065974787552165], [-75.04117363314958, 40.06591649432094], [-75.04224674786106, 40.06353209298826], [-75.042735081359, 40.062373930726196], [-75.04413865112885, 40.0593298577121], [-75.04423684741798, 40.05912267367909], [-75.04452138806724, 40.05870458649961], [-75.04479205913208, 40.058370038156426], [-75.04653734773393, 40.05656862179591], [-75.04667970088784, 40.05664514380146], [-75.0468569505688, 40.05673893712926], [-75.0470043191248, 40.056819119641574], [-75.04739752439824, 40.05703210686795], [-75.04780547251835, 40.05724869132331], [-75.04814635480116, 40.057439439991185], [-75.04856087951997, 40.05766348831064], [-75.05058270628449, 40.058770569622034], [-75.05202317645325, 40.05953669355135], [-75.05240827802209, 40.059740597259314], [-75.05418457187895, 40.06071898139321], [-75.05614632296499, 40.06183339815738], [-75.05769815107087, 40.062788811856926], [-75.05962484879859, 40.06397538184036], [-75.06133659676387, 40.065057789812315], [-75.06218147795423, 40.06560470005923], [-75.06255763313197, 40.06583861502309], [-75.0630408094246, 40.066144789190346], [-75.06405818719493, 40.06677025634781], [-75.06502668978634, 40.067345239044975], [-75.0658467809666, 40.067832099023924], [-75.06735652846181, 40.06872835474917], [-75.0678274453076, 40.06896467197677], [-75.06749638627788, 40.06910861366898], [-75.06719852233356, 40.06923872176233], [-75.06690135658151, 40.06936976897946], [-75.06660492565369, 40.06950177780655], [-75.0663092707974, 40.06963477263976], [-75.0660137588297, 40.06976806832083], [-75.0657180402657, 40.06990130888495], [-75.06542327369665, 40.070035772044], [-75.06513063452837, 40.070172754836676], [-75.06484130035514, 40.07031355796916], [-75.06455614032294, 40.07045915598219], [-75.06427369713427, 40.070608024523715], [-75.06399338735496, 40.07075943635126], [-75.06371496187346, 40.07091301803206], [-75.0634381718676, 40.0710683889291], [-75.06316277192772, 40.071225171185866], [-75.06288851078965, 40.07138298680624], [-75.06261533565403, 40.07154180663149], [-75.06234372144463, 40.07170234278835], [-75.06207392243033, 40.0718647490067], [-75.06180618592673, 40.07202914731945], [-75.06154075136922, 40.07219565146795], [-75.0612778636246, 40.07236438613518], [-75.06101694643431, 40.07253494680178], [-75.06075741494566, 40.07270693865332], [-75.06049970478726, 40.07288061517643], [-75.06024425155283, 40.07305623076177], [-75.05999149552423, 40.07323403991354], [-75.05974187453398, 40.07341429978524], [-75.05949570921547, 40.07359720622223], [-75.05925247709082, 40.0737824478666], [-75.05901157500546, 40.07396955919014], [-75.05877243914605, 40.074158088195375], [-75.05853450793607, 40.07434758563563], [-75.05829722217847, 40.07453760141421], [-75.0580600180249, 40.07472768441965], [-75.05782233982951, 40.074917383728305], [-75.05758362004983, 40.07510625263813], [-75.05552497347986, 40.076671328095905], [-75.05537620540206, 40.07678442526513], [-75.05534535391104, 40.07671670469455], [-75.05517312496838, 40.07648456942428], [-75.05498466818896, 40.07624571716204], [-75.0547928060949, 40.07608904559435], [-75.05455976708468, 40.07593796030108], [-75.05431382253069, 40.07590051164817], [-75.05414725883203, 40.07594095572149], [-75.05399541632775, 40.076026097060954], [-75.05396616603974, 40.07613946065988], [-75.0539296157627, 40.07643639594118], [-75.05386828593147, 40.07694183832337], [-75.05377757875698, 40.07714879871762], [-75.05362308928163, 40.07730040711198], [-75.05346174180787, 40.0774170064721], [-75.05325296607438, 40.07748180349217], [-75.0529128500191, 40.07753084556232], [-75.05263142116847, 40.077555922185596], [-75.05234301422513, 40.077549152659024], [-75.05212826288668, 40.077556783823084], [-75.05198616329548, 40.07760413533933], [-75.05186551085286, 40.07773436021535], [-75.05168591663612, 40.077894879164575], [-75.0515065722058, 40.07804906936406], [-75.05122809364289, 40.07820726754548], [-75.0509663444948, 40.07835952001648], [-75.0506484231972, 40.078472438334956], [-75.05038994860831, 40.07854239912013], [-75.05015720083807, 40.07858761908509], [-75.04995917909704, 40.07858930313321], [-75.04973719410566, 40.07857141713605], [-75.04940833315213, 40.07854468046004], [-75.04883226443728, 40.07851213372634], [-75.04818367057818, 40.07843669765365], [-75.04777938855011, 40.07843986397968], [-75.04743152769055, 40.07847603650771], [-75.04707046516083, 40.07842952916896], [-75.04671865181837, 40.07835789268325], [-75.04631143038561, 40.078227928813625], [-75.04595415584761, 40.078086466332714], [-75.04561487822417, 40.07790741100268], [-75.04534926028896, 40.07774275870906], [-75.045181767739, 40.07759942286984], [-75.04505497403682, 40.077469718840085], [-75.04496189751694, 40.077321798879794], [-75.044893542534, 40.07717445983989], [-75.04482771390366, 40.07696382122396], [-75.04474262752414, 40.076822426205], [-75.04461019606796, 40.07671426002101], [-75.04437544784992, 40.076515986745726]]]}}, {"id": "8390", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.001340227351, 40.10447338267896], [-74.99980595308102, 40.10323798393834], [-74.99901105573085, 40.10257798261559], [-74.99873340533885, 40.10231021991832], [-74.99838625313424, 40.10185089076054], [-74.99816680486222, 40.10160707675546], [-74.99723871681812, 40.100751491956906], [-74.99657424689374, 40.100140078323584], [-74.99546405689867, 40.09916734037778], [-74.99468698631495, 40.0985157489326], [-74.99126578796898, 40.095779203568775], [-74.98845261605591, 40.09780067963804], [-74.98825650823251, 40.09796565247674], [-74.98801555830231, 40.098198226784405], [-74.98781255018112, 40.098403433270256], [-74.9875405116155, 40.09865870896836], [-74.98728400129649, 40.09885130072101], [-74.98686286259387, 40.09914759612365], [-74.98667529438421, 40.09927999004267], [-74.98581371160367, 40.09855867567171], [-74.98431375717901, 40.09729964811916], [-74.98410643925581, 40.09710654276584], [-74.98001838277072, 40.09371126251982], [-74.97803583627811, 40.09205594381622], [-74.97719326038882, 40.09133676742325], [-74.975220751884, 40.089854176405005], [-74.97335356637348, 40.088504638917414], [-74.97226035954658, 40.08772373967268], [-74.97162854838277, 40.08725109988515], [-74.97138607796352, 40.08705566489162], [-74.97117513228486, 40.08691367533132], [-74.97056950632104, 40.086385994240395], [-74.97018809543366, 40.086023191707326], [-74.96988962485035, 40.085709477705606], [-74.96866569300502, 40.084332634218896], [-74.96755307599429, 40.08307629554037], [-74.96682090137726, 40.082216473817276], [-74.96666319536153, 40.08201435740862], [-74.96646756928382, 40.08173967536829], [-74.9663404029493, 40.08154234032804], [-74.96618187901562, 40.08124937703642], [-74.96607904775334, 40.08103230110434], [-74.96595348766569, 40.08072432479731], [-74.96582688977068, 40.08037333929694], [-74.96567839184083, 40.079904498837685], [-74.96562550287764, 40.07962691425054], [-74.96487823382172, 40.07739275793584], [-74.96481054613699, 40.077165438262], [-74.96493188085668, 40.07718031354425], [-74.96504091549386, 40.07719599713985], [-74.965148051296, 40.077206220968435], [-74.96525421741462, 40.07721635091551], [-74.96544038515029, 40.07723421765086], [-74.96573511033144, 40.07725471421994], [-74.96603024649585, 40.077265202756344], [-74.96618243056821, 40.07726388115482], [-74.96629724518719, 40.077219916470604], [-74.96648834432457, 40.07711769602994], [-74.96659598022093, 40.07703682764955], [-74.96666915154685, 40.076948447512486], [-74.96674930682953, 40.07668994452809], [-74.96677379252641, 40.076516909823034], [-74.96682050111231, 40.07643790503121], [-74.9669402030141, 40.0763807006061], [-74.9672676468526, 40.07634522260966], [-74.96755112221653, 40.07632203482477], [-74.96780717414165, 40.076331573473695], [-74.96828170393493, 40.07631301094343], [-74.96874402870634, 40.07627411483709], [-74.96889214145376, 40.07626601242334], [-74.96908285648924, 40.07627897608996], [-74.96929524748076, 40.0763993103491], [-74.96947991074815, 40.076453865465815], [-74.96962686258466, 40.07647411507143], [-74.96978610465588, 40.07645960291672], [-74.96989990768837, 40.07638722918965], [-74.97001078599946, 40.076333147546435], [-74.97010904979206, 40.07626874524497], [-74.97025018729272, 40.076218733812205], [-74.97036742613606, 40.07622156960225], [-74.97051017169011, 40.07623837967644], [-74.97069213569767, 40.07625279689518], [-74.97083720292183, 40.07621289790571], [-74.97094035284289, 40.07613525649743], [-74.9710531446344, 40.07603447436548], [-74.97117027990238, 40.07593379715892], [-74.9712602656344, 40.075859175630335], [-74.97134727869772, 40.07575109295855], [-74.97138095363404, 40.075671769504446], [-74.97141442219036, 40.075597452811046], [-74.97139653928615, 40.07550352705863], [-74.97134839710093, 40.07540553298759], [-74.9712887295793, 40.07527052803402], [-74.9712316315386, 40.07517899519269], [-74.97123573174729, 40.07507892312442], [-74.97124851468415, 40.07497906281009], [-74.97127962459003, 40.074856271851594], [-74.97131832623661, 40.07476037491537], [-74.97136584477349, 40.07466135448893], [-74.97145107957475, 40.07459663518703], [-74.97159193923397, 40.07455329513424], [-74.971618569112, 40.07443373515477], [-74.9715748371766, 40.07433417540154], [-74.97148638872916, 40.07426525757462], [-74.97127013526364, 40.07413314518485], [-74.97107897971678, 40.07402501489192], [-74.97102704330784, 40.07391357140299], [-74.97103575842551, 40.073806933088406], [-74.97110471819212, 40.073715109117074], [-74.97119863239095, 40.07365059900637], [-74.97153792048043, 40.07343175005237], [-74.97173204420336, 40.07336131576828], [-74.97187248889232, 40.07332798171143], [-74.9720129369216, 40.07329464846803], [-74.97212828752855, 40.07323733548228], [-74.97221881743907, 40.073149370779944], [-74.97227108822958, 40.07304044679336], [-74.97229648565562, 40.072950906722994], [-74.97233111548009, 40.07284823503492], [-74.97241250049727, 40.07245286045425], [-74.97243355865558, 40.072363214573826], [-74.9725001510312, 40.072222918060405], [-74.97257371939335, 40.072124524136385], [-74.97265433303046, 40.07206637198485], [-74.97279641599361, 40.07199300853841], [-74.97291651707785, 40.07192579152796], [-74.9730619834403, 40.07187588331615], [-74.9732117943859, 40.0718260781077], [-74.9733802024007, 40.07174667315732], [-74.97350105118124, 40.071661108899875], [-74.97358391660255, 40.07154791545609], [-74.9736049716868, 40.07145827112839], [-74.97362385436797, 40.071368574310284], [-74.97366824377356, 40.071292848523456], [-74.97380646071099, 40.07120770449727], [-74.97397541142657, 40.07111495616597], [-74.9741176251625, 40.0710382549561], [-74.97425820387885, 40.0710015828951], [-74.97441587522754, 40.07097200136158], [-74.97461033024312, 40.070893221130845], [-74.97480017054443, 40.07082101057005], [-74.97489828421111, 40.07075993839606], [-74.97497984844728, 40.07067843388479], [-74.97503983983766, 40.07059306809202], [-74.97506998790081, 40.07049362593002], [-74.97509999470132, 40.0703975197176], [-74.97512099163596, 40.070256118073274], [-74.97509634345491, 40.07006186028319], [-74.9751046434313, 40.069965228978134], [-74.97516422454726, 40.06988987223098], [-74.97524931211711, 40.06982848523762], [-74.97534728750703, 40.069770747848224], [-74.97545787889761, 40.06972333310177], [-74.97558054057365, 40.06969958254904], [-74.97572220605018, 40.06963622369192], [-74.97596687130982, 40.069498553039736], [-74.9761833006568, 40.06941362564576], [-74.97640054799047, 40.06930868140618], [-74.97660774856126, 40.06923688523815], [-74.97673190691846, 40.069176440194866], [-74.9768269722155, 40.06908357343089], [-74.97687109358594, 40.068961095243665], [-74.9769103270948, 40.06885185474146], [-74.9770056168985, 40.06864713714278], [-74.97707756245333, 40.06848192130966], [-74.97715180188668, 40.06836684766548], [-74.97720324400308, 40.06827793697835], [-74.97726934416491, 40.06814931029942], [-74.97732851344432, 40.06808395797298], [-74.97745871910837, 40.067981920573025], [-74.9776269727749, 40.0679058444728], [-74.97785696553466, 40.067807884785346], [-74.97800812722319, 40.06772471616518], [-74.97815942476227, 40.067638213971016], [-74.97837054917967, 40.06757652753234], [-74.97861627153421, 40.067519012746146], [-74.97888099496791, 40.06742188693341], [-74.97909184669426, 40.06736687044966], [-74.97918140471873, 40.06730225004122], [-74.97941166455479, 40.06719761505796], [-74.97958033525174, 40.067058104670515], [-74.97971202302425, 40.06697279648664], [-74.97979174768422, 40.06688289603536], [-74.97984040867183, 40.06675551815952], [-74.9799084032363, 40.06663361450377], [-74.98004762338027, 40.066523444140216], [-74.98016418169048, 40.06643610016845], [-74.9802671710583, 40.06636178555352], [-74.98037761840621, 40.066317702170856], [-74.98051356836118, 40.066287589017335], [-74.98067570426821, 40.066254767466326], [-74.98075223552989, 40.066189832838035], [-74.98085685804622, 40.06607548924987], [-74.98092145233923, 40.06598355374982], [-74.98096692726357, 40.065827715907844], [-74.98094625650972, 40.065695327413714], [-74.98092063219168, 40.0655778457586], [-74.98096805301702, 40.06550935577075], [-74.98093027752608, 40.065434396469676], [-74.98076818185282, 40.06520352869084], [-74.98069204514626, 40.06508455202811], [-74.98067034061296, 40.06500976100377], [-74.98106055052514, 40.06492588830355], [-74.9823554882295, 40.064673770476055], [-74.98242024726542, 40.06534949169114], [-74.98241394977978, 40.065737371587836], [-74.98236541229721, 40.06610959079852], [-74.9823023375811, 40.066421684760115], [-74.9819513580679, 40.06756396300465], [-74.98182918044128, 40.067971284274606], [-74.98172734938943, 40.06841249102111], [-74.98164897881254, 40.06881132519683], [-74.9815649114516, 40.06952343351367], [-74.98141437652902, 40.07098998904093], [-74.98134747214282, 40.07149443151838], [-74.98125842441804, 40.07178484849688], [-74.98117480683793, 40.071986132815525], [-74.98287766317866, 40.07326270833547], [-74.98317558338958, 40.07346948631761], [-74.98365896723641, 40.073787978727594], [-74.98463233010169, 40.07433652288278], [-74.98541434288165, 40.074757414542674], [-74.98574963774715, 40.07492132700258], [-74.98599482568952, 40.07502073363189], [-74.9862868797863, 40.07510790761913], [-74.98657006926763, 40.07519932165152], [-74.98688627999283, 40.07533382860203], [-74.98716340447214, 40.07550301771704], [-74.987383258211, 40.07565524633398], [-74.98756894135704, 40.0758266045254], [-74.98827235695214, 40.07646712169232], [-74.98885168056458, 40.07699519493959], [-74.98921996786541, 40.077297778639334], [-74.990003702322, 40.07797687101398], [-74.99118237508259, 40.07898035939267], [-74.9913784196397, 40.07884341256029], [-74.99149575676354, 40.078738917622466], [-74.99161486081663, 40.07859103005699], [-74.9917502324365, 40.07835878497265], [-74.99188545930957, 40.07815294738114], [-74.99202158831007, 40.07791348464197], [-74.99214452925322, 40.07767115166447], [-74.99226415503534, 40.077385191469126], [-74.99237406663944, 40.07705607405646], [-74.99248972749447, 40.076630909470836], [-74.99464211008906, 40.076966309251105], [-74.99492079563227, 40.07703174634329], [-74.9952821379686, 40.07715036703388], [-74.9954437473729, 40.07688764666741], [-74.99556469868985, 40.07669412464115], [-74.99571972139283, 40.07638810043395], [-74.99587217302256, 40.076005529452345], [-74.99589315117564, 40.07587098620906], [-74.99591862423539, 40.075728059062044], [-74.99592659278815, 40.075531830794006], [-74.99592194375668, 40.075303406093376], [-74.99740306779414, 40.073875826223386], [-74.99766811629149, 40.073622153962596], [-74.99802898075785, 40.07322340870369], [-74.99810530662826, 40.073152295469725], [-74.99836399949143, 40.07284546179489], [-74.99854251966426, 40.072661980060474], [-74.99864769578822, 40.072562334898095], [-74.9989482944393, 40.07251845219748], [-74.99953545380916, 40.07187173742727], [-75.00225469148393, 40.07335752168253], [-75.00233985929778, 40.073081104824716], [-75.00246652040993, 40.07275315621835], [-75.00262103331933, 40.07248393598939], [-75.00282981283493, 40.072181176068305], [-75.00304118878766, 40.07190750917391], [-75.00330164540017, 40.071635015988534], [-75.00360740450331, 40.071363604993394], [-75.0039421890115, 40.071121919058655], [-75.0042297892391, 40.07092555896701], [-75.00483354427188, 40.07057416485648], [-75.00727005000492, 40.06916284283319], [-75.01133066624226, 40.07118005144515], [-75.01312768506725, 40.07207268034328], [-75.014088715379, 40.07264365237408], [-75.01506505696598, 40.073179433645436], [-75.01683647482798, 40.074171198321956], [-75.0170511604494, 40.07429139164119], [-75.01714477252432, 40.074343800429524], [-75.02174937544991, 40.07695644903743], [-75.02371460278547, 40.07799573890452], [-75.02537845533197, 40.07894441699348], [-75.02844973853612, 40.08067939112584], [-75.02860591922072, 40.08077109526856], [-75.02698441790379, 40.082416567036645], [-75.02677501201643, 40.08266059899274], [-75.02489690219, 40.084602454866946], [-75.02477351284554, 40.084719170290285], [-75.02416289978059, 40.085352135669666], [-75.02077321098622, 40.088869692247826], [-75.02059729180073, 40.0890453629084], [-75.01859914987443, 40.09110979481837], [-75.01671960534827, 40.093058557376125], [-75.0152249575392, 40.09462706024111], [-75.01503017200935, 40.094813029183335], [-75.013734888549, 40.09608863203972], [-75.01343102395374, 40.096351954570224], [-75.01306376029899, 40.096647549345235], [-75.0119460309999, 40.09749968924053], [-75.01023965777635, 40.0986274887173], [-75.00954611943996, 40.09912788213696], [-75.00835671186192, 40.09996020510662], [-75.00609069595153, 40.10151430747137], [-75.0049069951211, 40.10232227359235], [-75.00308446345512, 40.103582544083494], [-75.00209020651084, 40.104269754465854], [-75.00149790449852, 40.1046791321352], [-75.00136789022717, 40.10456204607671], [-75.001340227351, 40.10447338267896]]]}}, {"id": "8400", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.00179675486682, 40.10493172044542], [-75.00164633387656, 40.1048024998248], [-75.00149790449852, 40.1046791321352], [-75.00209020651084, 40.104269754465854], [-75.00308446345512, 40.103582544083494], [-75.0049069951211, 40.10232227359235], [-75.00609069595153, 40.10151430747137], [-75.00835671186192, 40.09996020510662], [-75.00954611943996, 40.09912788213696], [-75.01023965777635, 40.0986274887173], [-75.0119460309999, 40.09749968924053], [-75.01306376029899, 40.096647549345235], [-75.01343102395374, 40.096351954570224], [-75.013734888549, 40.09608863203972], [-75.01503017200935, 40.094813029183335], [-75.0152249575392, 40.09462706024111], [-75.01671960534827, 40.093058557376125], [-75.01859914987443, 40.09110979481837], [-75.02059729180073, 40.0890453629084], [-75.02077321098622, 40.088869692247826], [-75.02416289978059, 40.085352135669666], [-75.02477351284554, 40.084719170290285], [-75.02489690219, 40.084602454866946], [-75.02677501201643, 40.08266059899274], [-75.02698441790379, 40.082416567036645], [-75.02860591922072, 40.08077109526856], [-75.02936100367475, 40.07996554086386], [-75.03024499085504, 40.07905911048138], [-75.03265156130533, 40.076563913553244], [-75.03345632981974, 40.075733552485595], [-75.03394468660325, 40.07522585640025], [-75.0348403042355, 40.07430802573013], [-75.03688057928926, 40.072209186628385], [-75.03797590147553, 40.071078701239365], [-75.03895106634981, 40.07005670880712], [-75.03937274031372, 40.0695553420102], [-75.03952749808136, 40.0693585665246], [-75.03990055038933, 40.0687164982515], [-75.04027165133148, 40.06792050879335], [-75.04104856821186, 40.06619437066853], [-75.04117363314958, 40.06591649432094], [-75.0413335088859, 40.065974787552165], [-75.04147018298123, 40.066018667392534], [-75.04181278865332, 40.06612786129399], [-75.04214704345395, 40.06622444269112], [-75.04252300081988, 40.06630933607577], [-75.04289147572567, 40.066375041588714], [-75.04311837397684, 40.06647542875296], [-75.04331929512507, 40.06660688172657], [-75.04350844181876, 40.06682676256377], [-75.04367908978594, 40.06709689587563], [-75.0437825664205, 40.067397128713154], [-75.04386302954859, 40.068067475794585], [-75.04388739876102, 40.06828347515002], [-75.04385971299041, 40.06877069871069], [-75.04376191556884, 40.06915489498487], [-75.04357575655808, 40.069479984511155], [-75.04302513401653, 40.07046494259144], [-75.04285241512586, 40.07086638181349], [-75.04276168364336, 40.07107333361617], [-75.04248841833828, 40.07130766563954], [-75.04208473704509, 40.07170999709947], [-75.0418127306453, 40.071912676397304], [-75.04147430148507, 40.07212646098452], [-75.04136137041226, 40.07226952947355], [-75.04132108124091, 40.072452325411106], [-75.04138815858997, 40.072631315890035], [-75.0416120446288, 40.07280766508903], [-75.04185417957775, 40.07294009334167], [-75.04234135855599, 40.073132150758376], [-75.0427300417902, 40.07331238140349], [-75.04299664661441, 40.0734517197984], [-75.04338088274055, 40.07353680258656], [-75.04367347260144, 40.07364506960524], [-75.04388862161355, 40.07383388162932], [-75.04387877137246, 40.07408075501489], [-75.04381174842123, 40.07431361061849], [-75.04358058733531, 40.074732682333874], [-75.0434818653947, 40.07493311127461], [-75.04347130832939, 40.07501237386902], [-75.04344653650189, 40.07519839220523], [-75.04350437156484, 40.07540250824636], [-75.04381666845494, 40.07584388336682], [-75.04398238591108, 40.07603152918247], [-75.04420098626825, 40.076340808020944], [-75.04437544784992, 40.076515986745726], [-75.04461019606796, 40.07671426002101], [-75.04474262752414, 40.076822426205], [-75.04482771390366, 40.07696382122396], [-75.044893542534, 40.07717445983989], [-75.04496189751694, 40.077321798879794], [-75.04505497403682, 40.077469718840085], [-75.045181767739, 40.07759942286984], [-75.04534926028896, 40.07774275870906], [-75.04561487822417, 40.07790741100268], [-75.04595415584761, 40.078086466332714], [-75.04631143038561, 40.078227928813625], [-75.04671865181837, 40.07835789268325], [-75.04707046516083, 40.07842952916896], [-75.04743152769055, 40.07847603650771], [-75.04777938855011, 40.07843986397968], [-75.04818367057818, 40.07843669765365], [-75.04883226443728, 40.07851213372634], [-75.04940833315213, 40.07854468046004], [-75.04973719410566, 40.07857141713605], [-75.04995917909704, 40.07858930313321], [-75.05015720083807, 40.07858761908509], [-75.05038994860831, 40.07854239912013], [-75.0506484231972, 40.078472438334956], [-75.0509663444948, 40.07835952001648], [-75.05122809364289, 40.07820726754548], [-75.0515065722058, 40.07804906936406], [-75.05168591663612, 40.077894879164575], [-75.05186551085286, 40.07773436021535], [-75.05198616329548, 40.07760413533933], [-75.05212826288668, 40.077556783823084], [-75.05234301422513, 40.077549152659024], [-75.05263142116847, 40.077555922185596], [-75.0529128500191, 40.07753084556232], [-75.05325296607438, 40.07748180349217], [-75.05346174180787, 40.0774170064721], [-75.05362308928163, 40.07730040711198], [-75.05377757875698, 40.07714879871762], [-75.05386828593147, 40.07694183832337], [-75.0539296157627, 40.07643639594118], [-75.05396616603974, 40.07613946065988], [-75.05399541632775, 40.076026097060954], [-75.05414725883203, 40.07594095572149], [-75.05431382253069, 40.07590051164817], [-75.05455976708468, 40.07593796030108], [-75.0547928060949, 40.07608904559435], [-75.05498466818896, 40.07624571716204], [-75.05517312496838, 40.07648456942428], [-75.05534535391104, 40.07671670469455], [-75.05537620540206, 40.07678442526513], [-75.05542121699486, 40.0768832205816], [-75.05550481551758, 40.07706258916549], [-75.0558024112148, 40.07725330993658], [-75.05624009117663, 40.07744731438692], [-75.05653272186636, 40.07755555053142], [-75.05677590846673, 40.077662625406894], [-75.05703783549077, 40.077713114500966], [-75.05730077170082, 40.07773828386777], [-75.05751728221968, 40.07768633216519], [-75.05768811786795, 40.077538271537975], [-75.05789668999567, 40.07727070798033], [-75.0581237512023, 40.076952890732144], [-75.05835106158882, 40.076628740973035], [-75.05859836366761, 40.07621635755008], [-75.05869131808406, 40.0759524201826], [-75.05877539994854, 40.0757041180278], [-75.05904686857083, 40.07551405825606], [-75.05944967163806, 40.07533974506808], [-75.05990040944747, 40.075204569426475], [-75.06045801177557, 40.07507822835723], [-75.06106279412101, 40.07501001288991], [-75.06170078559855, 40.07493623409436], [-75.06220794047137, 40.07483404907385], [-75.06260897559609, 40.07470403576466], [-75.06304372192314, 40.07455580181499], [-75.0632609701968, 40.07448484848411], [-75.06347470755827, 40.07450251759421], [-75.06361851137763, 40.0746199278114], [-75.06370936954882, 40.07482480332952], [-75.0638219366318, 40.07510621883967], [-75.06394512893239, 40.075327689336845], [-75.06391861912485, 40.075580509452834], [-75.06381196651216, 40.0757744329674], [-75.0636473829897, 40.07597333837383], [-75.06334719235429, 40.076264112653824], [-75.06304700024614, 40.07655488797269], [-75.06273731119458, 40.07687711754378], [-75.06251579036129, 40.077055682578724], [-75.06232124740075, 40.07717785385517], [-75.0621726737404, 40.07718071525179], [-75.06195892835154, 40.07716304192318], [-75.06176116081122, 40.0771584160093], [-75.06160284111687, 40.07719906639292], [-75.0615249157013, 40.07729228275948], [-75.06148543068252, 40.07745609581747], [-75.06151646881796, 40.077713428092345], [-75.06163003522988, 40.077969527351115], [-75.06170516129058, 40.07815502713799], [-75.06179204337724, 40.07825210050341], [-75.0618954033809, 40.07834955741347], [-75.06198102916176, 40.078478280995135], [-75.06206715943975, 40.078594343139876], [-75.06206088712396, 40.07875259702242], [-75.06203662816267, 40.078948446111255], [-75.06199588892682, 40.07914390974338], [-75.06183927818138, 40.07934933453984], [-75.06167718722045, 40.07948493440269], [-75.06151810922886, 40.07954457455014], [-75.06132782260427, 40.079559130549555], [-75.06114502715863, 40.07959286989936], [-75.06099418571385, 40.07965270023839], [-75.06082485791416, 40.079762787799226], [-75.0606375408534, 40.07991046736888], [-75.0604349954488, 40.08002611230843], [-75.06023370827079, 40.080110104778555], [-75.05992328166774, 40.08024223237487], [-75.05962134585386, 40.080368219983605], [-75.05940930199259, 40.08051532061701], [-75.05916303922639, 40.08069329950346], [-75.05899098615006, 40.08094668209277], [-75.05897043153769, 40.08101674440808], [-75.05882049051664, 40.08126914787851], [-75.05865483943762, 40.081413698717384], [-75.05847749470482, 40.08151703026426], [-75.05831387189762, 40.08161044616171], [-75.05810547877068, 40.08165674648728], [-75.0578855956929, 40.08165671504968], [-75.05768507545918, 40.081672491463536], [-75.05752891747137, 40.08174560762594], [-75.05739573415532, 40.08191139086551], [-75.05730519147647, 40.08217797800818], [-75.05735799887307, 40.08235835532862], [-75.05743199455884, 40.08250851872775], [-75.05762419352845, 40.08270239814969], [-75.05786482173603, 40.082851346657215], [-75.05813954732395, 40.08298061972417], [-75.05840380330494, 40.083037990541975], [-75.05870418288193, 40.08302455294798], [-75.05903703982814, 40.08303234667941], [-75.05930149847765, 40.08308460223097], [-75.059463055046, 40.08321122260964], [-75.05944442943007, 40.083512764891076], [-75.05942117231665, 40.08376301499222], [-75.05939791730421, 40.084013266940076], [-75.05940480238687, 40.084343556793144], [-75.05942270649093, 40.084564061096536], [-75.05945311392284, 40.08480533248337], [-75.05953738974036, 40.08503250834953], [-75.05965515328373, 40.085255350968396], [-75.05980438212187, 40.08552499483347], [-75.05992011887795, 40.08579897163223], [-75.06003442287486, 40.0860251054256], [-75.05997263007093, 40.08606746524045], [-75.05909916467368, 40.086670750169496], [-75.05872045663507, 40.08708410146879], [-75.05828040137938, 40.087783892001646], [-75.05769466444262, 40.088691375176175], [-75.0570680545122, 40.08969819867304], [-75.05645890895181, 40.09023614591196], [-75.0556873901617, 40.09075402583353], [-75.05424117419759, 40.09165232479042], [-75.05390748141029, 40.09187479828705], [-75.05359684465985, 40.092145793219075], [-75.05301377767144, 40.09266948399353], [-75.0529389112885, 40.092736131135304], [-75.052641232185, 40.0930011284728], [-75.0521008379093, 40.093511371602695], [-75.05148676871707, 40.0940921800102], [-75.05075288836791, 40.09478108446115], [-75.04842883493836, 40.09707683670527], [-75.04711687101697, 40.0983783993297], [-75.0462124467127, 40.09879441808162], [-75.04553188548518, 40.09911447843645], [-75.04359687718139, 40.1000244552356], [-75.04321102489683, 40.10023003104892], [-75.04261449745741, 40.10050531238359], [-75.03985773860795, 40.10183646397926], [-75.0385638336794, 40.10246180447796], [-75.03697023344401, 40.10318490149781], [-75.03497397154703, 40.10416480472308], [-75.03439861780558, 40.10442959994114], [-75.03299801495899, 40.10511107854101], [-75.02888459210209, 40.10254424963743], [-75.02791301286108, 40.10195014011948], [-75.02763612412987, 40.10176688834416], [-75.02696824217134, 40.101507255222664], [-75.0256564318838, 40.10114330040666], [-75.02406487925523, 40.100738749448176], [-75.02392704057284, 40.10070388017047], [-75.00978586328247, 40.11144901647281], [-75.00179675486682, 40.10493172044542]]]}}, {"id": "8410", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.02844973853612, 40.08067939112584], [-75.02537845533197, 40.07894441699348], [-75.02371460278547, 40.07799573890452], [-75.02174937544991, 40.07695644903743], [-75.01714477252432, 40.074343800429524], [-75.0170511604494, 40.07429139164119], [-75.01683647482798, 40.074171198321956], [-75.01506505696598, 40.073179433645436], [-75.014088715379, 40.07264365237408], [-75.01312768506725, 40.07207268034328], [-75.01133066624226, 40.07118005144515], [-75.01140118198131, 40.07107959247818], [-75.01145556450106, 40.0709564603993], [-75.01153052607532, 40.070867562474575], [-75.0116641830306, 40.070752646713004], [-75.0117368264488, 40.07065314833198], [-75.0118207583076, 40.070477997489135], [-75.01193674889853, 40.07032469976572], [-75.01207246548898, 40.07022670406734], [-75.01216294414564, 40.070161374140504], [-75.01227740265138, 40.07004600029827], [-75.01234798178868, 40.069929580963226], [-75.01240227778314, 40.06980855580792], [-75.01248365580095, 40.06969661152543], [-75.01264369118155, 40.069540144576386], [-75.01278042667118, 40.06941686524192], [-75.01285597882301, 40.069313217652315], [-75.01292451568432, 40.069247363609996], [-75.01299938840812, 40.06916057207089], [-75.01304152189287, 40.06906878193416], [-75.01309470956213, 40.0689751465982], [-75.0131434338241, 40.0688560969041], [-75.01320527263027, 40.0687521224871], [-75.01328803076183, 40.0686739542966], [-75.01341407181296, 40.0686115789023], [-75.01356917244466, 40.06857731100868], [-75.01361277147016, 40.06851719084309], [-75.01363003069318, 40.068361539452575], [-75.013658090155, 40.068210364007015], [-75.01366234006926, 40.068105017962885], [-75.0136545996472, 40.06802469441069], [-75.0136854235918, 40.06794107045589], [-75.01376775522982, 40.067873435980935], [-75.01390956693898, 40.06782830704168], [-75.01401445462469, 40.06781393310805], [-75.01413783434027, 40.06774938512688], [-75.01425041589033, 40.06768036117643], [-75.01430300598287, 40.067601473147434], [-75.01434598649034, 40.067488613490006], [-75.01439855380417, 40.06734223923181], [-75.01438994155741, 40.06721549770347], [-75.01429202300844, 40.067057104995996], [-75.01423492275127, 40.06697560540138], [-75.01415939115768, 40.066874687043146], [-75.01414170114295, 40.066768818609674], [-75.01418614950114, 40.066687628313986], [-75.0142842526952, 40.06663724043714], [-75.01442176779595, 40.06656248366375], [-75.01455328716379, 40.06650023755559], [-75.01469003582997, 40.06644444301656], [-75.01485293330873, 40.06642090420657], [-75.01498351749207, 40.06638183399944], [-75.01508427752486, 40.066333617178856], [-75.01521828261474, 40.06627775672721], [-75.01531457721896, 40.06620412632028], [-75.01537983261072, 40.06608336076093], [-75.01545142274483, 40.06594165666884], [-75.01549287137524, 40.06586672175268], [-75.01558503848605, 40.06575925009745], [-75.01565594839043, 40.06563440111219], [-75.0157425817053, 40.0653918255055], [-75.01574954597372, 40.065219057514625], [-75.01576586519033, 40.06508658307714], [-75.01588587828371, 40.06496922876008], [-75.01600631554668, 40.06484134024199], [-75.01616616152177, 40.0646890821555], [-75.01620896722129, 40.06458043649334], [-75.01623961545582, 40.0645010256198], [-75.0164025669745, 40.06440789103234], [-75.0165706627164, 40.06432331430387], [-75.01666610404993, 40.06427075271167], [-75.01677918545927, 40.0641890848095], [-75.01689175837886, 40.06412005915821], [-75.01704390934661, 40.0640224489414], [-75.01714500277654, 40.063965802656504], [-75.01730693318339, 40.06389795055588], [-75.01749662400833, 40.06382232182605], [-75.01766669581285, 40.06375677132412], [-75.01779662625562, 40.0635974733855], [-75.01788997588838, 40.06346050230505], [-75.0179495701373, 40.063343818675705], [-75.01800384966306, 40.063222791701655], [-75.01804614240108, 40.06312678588627], [-75.01816470559515, 40.06304524704141], [-75.0182824199927, 40.06298477804318], [-75.0184215618429, 40.062937470988345], [-75.01855222208856, 40.06289629026223], [-75.01866264229521, 40.06281244797046], [-75.01874179707323, 40.062755279728954], [-75.01884871067023, 40.06269033467704], [-75.01899983768322, 40.0626180056519], [-75.01910556448806, 40.06258255709327], [-75.01922876021322, 40.06252221744369], [-75.01931871281806, 40.06246952330191], [-75.01940436738393, 40.06238720111911], [-75.01947871542869, 40.062313045872756], [-75.0195479172144, 40.06223033349241], [-75.01964420137666, 40.06215669944157], [-75.01973799707683, 40.062076679863075], [-75.0198283436528, 40.0619459631985], [-75.01992202488529, 40.061800563694625], [-75.0199864210835, 40.06170086460079], [-75.02002254762955, 40.0616215839113], [-75.02008010163895, 40.061555464966105], [-75.02019300601317, 40.06147800753754], [-75.02033050297699, 40.061403243645614], [-75.0204938950218, 40.06136705628301], [-75.02057977282244, 40.06127911509596], [-75.02070262528976, 40.061159012237674], [-75.02081722362328, 40.061039416015774], [-75.02094476815968, 40.060939107046785], [-75.02099768542261, 40.06085178921662], [-75.02105110996689, 40.06075182897833], [-75.0211230204869, 40.06060169364698], [-75.02116683397419, 40.06046776142961], [-75.02124261759111, 40.060357787997795], [-75.0213678719578, 40.060314366459814], [-75.02150203068393, 40.06025428397214], [-75.02156941869207, 40.06014832880668], [-75.0216406495094, 40.060015048423956], [-75.02175730775194, 40.059912371634475], [-75.02184773227115, 40.05977954690714], [-75.02189634982466, 40.0596626008018], [-75.02196766420064, 40.0595272137529], [-75.02201353883376, 40.05941020247696], [-75.02208143359125, 40.05929160464568], [-75.02214582306436, 40.05919190430037], [-75.02227070548015, 40.05908942320252], [-75.02242967671278, 40.05895822546024], [-75.02256654251953, 40.058830720591054], [-75.022684922193, 40.05875339085738], [-75.02277984274103, 40.0587134656363], [-75.02288041527724, 40.05866945575464], [-75.02297533559285, 40.05862953037194], [-75.02309303807974, 40.058569055531905], [-75.02318315065173, 40.058512144504434], [-75.02325698219693, 40.05845062826453], [-75.02335873957705, 40.05837712210828], [-75.02346564302887, 40.05831217277386], [-75.02364366633292, 40.05825312978684], [-75.02380439126402, 40.05821476437058], [-75.0239373583225, 40.058184176694986], [-75.02400612716242, 40.05811199571979], [-75.02413058150069, 40.05802004670343], [-75.02420457979494, 40.05795431600173], [-75.02425698143027, 40.05787963810014], [-75.02432187545998, 40.057767295084304], [-75.02431514065105, 40.05766168838805], [-75.02428002238715, 40.05751112142612], [-75.02425983172488, 40.05739886827296], [-75.0242474440112, 40.057297345292945], [-75.02426931312309, 40.057162892330595], [-75.02428629100011, 40.05701356132886], [-75.02421847374397, 40.056925486161866], [-75.02410433087374, 40.05689747005967], [-75.023907932674, 40.056867502998784], [-75.02373270735212, 40.0568570187658], [-75.0236138431599, 40.056809910294824], [-75.0235197094016, 40.056693793749254], [-75.0234514689111, 40.05661625220775], [-75.02339951134499, 40.05654331580518], [-75.02335792116091, 40.056438831672395], [-75.02329830532375, 40.056330019936595], [-75.02319354424118, 40.05620521517992], [-75.02306650910235, 40.05608831731229], [-75.02292285415761, 40.055975242631], [-75.02284183827801, 40.05587419975179], [-75.02281735264908, 40.05573231941055], [-75.02285912686669, 40.055648954179546], [-75.02296392945912, 40.05549959866026], [-75.02298959026602, 40.05540741431654], [-75.02296126227928, 40.05529285923183], [-75.02295270237222, 40.05518720906307], [-75.02301832165558, 40.055117459789635], [-75.02308683509538, 40.05503644028902], [-75.02329697751313, 40.05479257441689], [-75.02329770833737, 40.05470612463295], [-75.02325883533216, 40.05458077518629], [-75.0233061439893, 40.054427945416464], [-75.02344342237699, 40.0542899053639], [-75.02342391147224, 40.0541607967507], [-75.02327873692083, 40.05408564694144], [-75.02249209927083, 40.05385608053362], [-75.02236202016512, 40.053815031571304], [-75.02222781323063, 40.053740140788996], [-75.02209671789657, 40.053724374456756], [-75.02191830511406, 40.05365686930914], [-75.0216374022443, 40.0535447523138], [-75.02151829112039, 40.053503961948444], [-75.02131059809051, 40.05348215761974], [-75.02108747077057, 40.05343467920917], [-75.02093478167261, 40.05340996289716], [-75.02082613061091, 40.05338207472192], [-75.02076937187448, 40.053292150644964], [-75.02071464869559, 40.05315166073157], [-75.02069610560125, 40.05306686235357], [-75.02071080182549, 40.05297441796306], [-75.0207690258568, 40.05289144426327], [-75.02082877655748, 40.05277054528203], [-75.02087840672286, 40.05262831661571], [-75.02091723952032, 40.05248161358513], [-75.02088993332914, 40.05234177415102], [-75.02082351295573, 40.05213400019852], [-75.02106925447676, 40.052065150263466], [-75.02134667770706, 40.0519323447473], [-75.0214845821503, 40.05178355338406], [-75.02160677289102, 40.05161538177912], [-75.02182160952268, 40.05139872043992], [-75.02202617030173, 40.05123250274537], [-75.02223174570442, 40.05104096568759], [-75.02258673304789, 40.050824460871986], [-75.02287289411287, 40.05067918955403], [-75.0240054813053, 40.05019284749639], [-75.0246081985107, 40.04996637531921], [-75.02502019460765, 40.049767059045784], [-75.0254880641761, 40.049613417369144], [-75.02589573262637, 40.04952170668328], [-75.02632430049782, 40.049447076724384], [-75.02701684656185, 40.04932018735995], [-75.02750218118987, 40.049347532053694], [-75.02772925615429, 40.04944161774527], [-75.02790512977876, 40.049578844136946], [-75.02802131823515, 40.04976534485357], [-75.02811254123834, 40.04995758832029], [-75.02824774092592, 40.050081177066225], [-75.02840221191596, 40.05013552473676], [-75.02865653966767, 40.05016689560829], [-75.02896181092363, 40.050161453510526], [-75.02921817104463, 40.05014218156038], [-75.02964648888532, 40.05015232518487], [-75.03009026470946, 40.05018817715169], [-75.0307793707139, 40.05027418916789], [-75.03116007921557, 40.05032966570556], [-75.031386988123, 40.050362728796465], [-75.03155807297706, 40.05038765937087], [-75.03182266798144, 40.050368575575696], [-75.03202415569447, 40.05027830250542], [-75.03215450129062, 40.050167550009796], [-75.03239963980208, 40.049960878349516], [-75.03250342901752, 40.04963385627425], [-75.03260442716415, 40.049376466372244], [-75.03273512646496, 40.04909855374293], [-75.03275991877743, 40.04899364306544], [-75.03275751269969, 40.04884785701076], [-75.03275168774034, 40.048581603964], [-75.03282898814976, 40.048298307630084], [-75.03301133821068, 40.04806818649151], [-75.03311879573305, 40.04785530063414], [-75.0331868430721, 40.04759713188297], [-75.03320445816153, 40.04736311338003], [-75.03324855624916, 40.0470853686681], [-75.03332686781721, 40.04677675296022], [-75.03346258149377, 40.04647583001222], [-75.03361920109269, 40.04627044347879], [-75.03380622954349, 40.04612913694608], [-75.03409158792017, 40.046002825622864], [-75.03440609108267, 40.04597224477433], [-75.03477748750193, 40.045962015600765], [-75.03517055641647, 40.046028330960695], [-75.03554487024263, 40.04615122667316], [-75.035883962518, 40.0463303129377], [-75.03624003619049, 40.046497126936124], [-75.03658433201305, 40.046752367459256], [-75.03692964175026, 40.04698228604219], [-75.03719334721026, 40.047191268710314], [-75.03740586476825, 40.04744339356805], [-75.03767654382669, 40.04768421979736], [-75.03789235293517, 40.047854053551994], [-75.03823095507052, 40.04804579334495], [-75.03848123080721, 40.04817842149729], [-75.03895389871607, 40.04831629959168], [-75.03923116477951, 40.04839253909587], [-75.03957255389473, 40.04851464333907], [-75.0399855454556, 40.04870179674293], [-75.03993652512311, 40.04889705859395], [-75.03986850212037, 40.04915523222436], [-75.03981115234363, 40.049765308997756], [-75.03985187008364, 40.050190786255165], [-75.03982553438144, 40.05043727096335], [-75.03977145261283, 40.05075913536208], [-75.03969114277413, 40.051118395390674], [-75.0396385783606, 40.051402277498596], [-75.03949807952917, 40.051823479264854], [-75.03926557731987, 40.05227735905819], [-75.03912781387623, 40.05254164477889], [-75.03909592017588, 40.05260282952274], [-75.03905057765729, 40.052912228409426], [-75.03905072085828, 40.0531149862997], [-75.03900244889742, 40.053291255130254], [-75.03888701792384, 40.05349762093939], [-75.0387530873489, 40.0537542413913], [-75.03856998248837, 40.05400336223474], [-75.03840436577126, 40.05422755171946], [-75.0378549153302, 40.054978075943396], [-75.0376612884122, 40.055283972820995], [-75.03749186912516, 40.055603111547406], [-75.03722384815177, 40.0559135874657], [-75.03701576649881, 40.05616845250137], [-75.03663001924059, 40.05674226094827], [-75.03644386007977, 40.05706734004885], [-75.03634387671092, 40.05729941323421], [-75.03630637671064, 40.05761849905944], [-75.03634298892773, 40.05785761271243], [-75.03635264885071, 40.05793907699135], [-75.03635823343399, 40.0581772973824], [-75.03634987732259, 40.05838619085585], [-75.0362852568641, 40.058764828154175], [-75.03622696641376, 40.058985213663846], [-75.03616639645348, 40.05926257016379], [-75.0361185037693, 40.05963526721701], [-75.03602562691434, 40.060307864636904], [-75.03595833618175, 40.0605470460292], [-75.0358693703198, 40.060709682823955], [-75.03586151897895, 40.06090591490791], [-75.03594479401579, 40.06109162811677], [-75.03607775442912, 40.061272177770654], [-75.03622744441218, 40.0614467880024], [-75.03634114149207, 40.06169657956052], [-75.03638120175484, 40.06193196037857], [-75.03644991043785, 40.06227573126081], [-75.03654548910033, 40.06256627810336], [-75.03664499201747, 40.062758710126666], [-75.0369064793127, 40.06302466339694], [-75.03712804351242, 40.06325799335081], [-75.03735112456283, 40.06345334240326], [-75.03750310075594, 40.06357098082033], [-75.03765381085454, 40.06372026648389], [-75.03788538907857, 40.06390947971823], [-75.03814966941594, 40.06410579957072], [-75.03838201066941, 40.06427602117927], [-75.03869496649082, 40.06449249607631], [-75.03892109564133, 40.06461188044359], [-75.03918436982643, 40.06483351787988], [-75.03943991390388, 40.06504230084497], [-75.0397604831818, 40.065274793634096], [-75.03999409587853, 40.065413359947996], [-75.04019449967235, 40.065557479676315], [-75.04049503847756, 40.06567227941196], [-75.04095034198383, 40.06583508055774], [-75.04104427139312, 40.06586932828391], [-75.04117363314958, 40.06591649432094], [-75.04104856821186, 40.06619437066853], [-75.04027165133148, 40.06792050879335], [-75.03990055038933, 40.0687164982515], [-75.03952749808136, 40.0693585665246], [-75.03937274031372, 40.0695553420102], [-75.03895106634981, 40.07005670880712], [-75.03797590147553, 40.071078701239365], [-75.03688057928926, 40.072209186628385], [-75.0348403042355, 40.07430802573013], [-75.03394468660325, 40.07522585640025], [-75.03345632981974, 40.075733552485595], [-75.03265156130533, 40.076563913553244], [-75.03024499085504, 40.07905911048138], [-75.02936100367475, 40.07996554086386], [-75.02860591922072, 40.08077109526856], [-75.02844973853612, 40.08067939112584]]]}}, {"id": "8420", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.9745359275946, 40.119849188974094], [-74.97442653084751, 40.119797207882335], [-74.9742871477504, 40.11978513743176], [-74.97407535418373, 40.119787280378276], [-74.97360768030312, 40.119806464009066], [-74.97336614764144, 40.11979627827101], [-74.97311068709377, 40.11977995191179], [-74.97299106726703, 40.11979302657531], [-74.97281919105099, 40.11981281896032], [-74.97267181455953, 40.119788218775675], [-74.97255871643699, 40.11968825919607], [-74.97250570125584, 40.119552021189186], [-74.9724284117816, 40.11950081544841], [-74.97223888836929, 40.11942077662379], [-74.97205575095256, 40.11930025986093], [-74.97193297444045, 40.11920587049832], [-74.97185840313676, 40.119134414527075], [-74.97178478526581, 40.11903976009768], [-74.97170976553542, 40.11888702760334], [-74.97160274498218, 40.1188002748363], [-74.97149424481319, 40.11872654540102], [-74.97129618915099, 40.1185780959754], [-74.97120676448317, 40.11845403754876], [-74.97114123532079, 40.11834651983752], [-74.97101974486496, 40.11810559262142], [-74.9709138774968, 40.11792163987746], [-74.97084240830002, 40.1177515775754], [-74.97075038445179, 40.11764486998256], [-74.97061357512354, 40.11752401882371], [-74.9704511062578, 40.11738368246097], [-74.97034660159044, 40.11718960430663], [-74.97026773623337, 40.11708466508946], [-74.97017841940855, 40.11700414262678], [-74.97003398180668, 40.11695421419456], [-74.96989070229579, 40.1169681633536], [-74.96977538222899, 40.11701471504024], [-74.96961872190718, 40.11698625679075], [-74.96947894996535, 40.11691467242613], [-74.96932483964085, 40.11684709602135], [-74.96920228822546, 40.11681655966739], [-74.9690859712698, 40.11684131942042], [-74.9689164285201, 40.11687349700147], [-74.96868520942675, 40.11693465942787], [-74.96843952075207, 40.11702594286368], [-74.96831959234572, 40.1170926980655], [-74.96821630091362, 40.11716856176311], [-74.96812458171257, 40.117215683673145], [-74.96803450750106, 40.1172918660717], [-74.96789019155149, 40.117400115305706], [-74.96773200301362, 40.117523988464775], [-74.96753970498874, 40.117649941113235], [-74.9674834750638, 40.11779950161915], [-74.9674614374426, 40.11787587919556], [-74.96735343056804, 40.117928410187], [-74.96712222242492, 40.117943130495256], [-74.96694965359058, 40.11800280658301], [-74.96672103343944, 40.11804661220493], [-74.96653260089148, 40.11807832915238], [-74.96638376413878, 40.11811245683492], [-74.96607916757638, 40.11823423701863], [-74.96591951833074, 40.118301478900214], [-74.96577268884946, 40.11833275115982], [-74.96559196896969, 40.118406737845646], [-74.96543019396812, 40.11847973319444], [-74.96533250088125, 40.11855718161553], [-74.96526018943926, 40.11861492728163], [-74.96514763896454, 40.11866299316389], [-74.96499291483178, 40.118656343623556], [-74.96483536722802, 40.11862640669265], [-74.9647329398482, 40.11858909669982], [-74.96462727083852, 40.11853864977195], [-74.96453376503183, 40.1184681800264], [-74.96448764842168, 40.11839450417565], [-74.96450736047414, 40.11823680585786], [-74.9644875196328, 40.118121682868896], [-74.96441676121945, 40.11798065781134], [-74.96433255898638, 40.1178218911196], [-74.96428035539026, 40.11762036609921], [-74.96420550185364, 40.1173950744162], [-74.96413528486632, 40.1173131518111], [-74.96399708852267, 40.11722314129124], [-74.96382918768471, 40.11712329562558], [-74.96373455468749, 40.11708036972731], [-74.96357465411043, 40.11703876634753], [-74.96340959849404, 40.1169847003448], [-74.96329353805959, 40.11688828892024], [-74.96321947390042, 40.11675879051246], [-74.96317383581372, 40.116674623670896], [-74.96314983322998, 40.11649879523493], [-74.96314050777443, 40.1163578065179], [-74.9631547381758, 40.11619562061336], [-74.96313235561803, 40.116096399988464], [-74.9631137485702, 40.11599726906], [-74.96311043878094, 40.11587093698896], [-74.96314587676885, 40.11579053093015], [-74.9632483766372, 40.11564209551682], [-74.96332246230332, 40.11549514569606], [-74.9633942125015, 40.11529009400465], [-74.96341265501594, 40.115209276000215], [-74.96334801694702, 40.11512644458324], [-74.96324764071571, 40.11499340701054], [-74.9631444705759, 40.11476742726126], [-74.9630999252316, 40.114609621509736], [-74.96324780056486, 40.11446083336213], [-74.96345602581059, 40.11420031586229], [-74.96366871303304, 40.11399214937468], [-74.96399992451454, 40.11368237063091], [-74.96409025601378, 40.11355395348697], [-74.96413749869085, 40.11346222377605], [-74.96415535231249, 40.11337268525479], [-74.96413644891938, 40.1132808036394], [-74.96402096391904, 40.113009539385665], [-74.96391844543861, 40.11262975324262], [-74.9638774580994, 40.112431401967754], [-74.96388250940994, 40.112193532423404], [-74.96387898647576, 40.1120033461688], [-74.96384869535596, 40.11191263836298], [-74.96378309280428, 40.11173836100134], [-74.96377557767543, 40.11164530452999], [-74.96379485422027, 40.111544189323716], [-74.96385070057904, 40.111472985592656], [-74.96393417383017, 40.111373425946965], [-74.96404481260235, 40.11121067363387], [-74.96410387706898, 40.1110611851694], [-74.96411973302025, 40.11095127998503], [-74.96411977237734, 40.11085840658203], [-74.96403911400388, 40.11070553173609], [-74.96390145962403, 40.110559980986196], [-74.96383765607658, 40.110456854381745], [-74.96383934385922, 40.11036982471464], [-74.96381143583622, 40.11022112937438], [-74.963745172204, 40.11008601721508], [-74.96370887785643, 40.10995743417731], [-74.96370879621225, 40.10986746107558], [-74.96377020519976, 40.10975285602159], [-74.9638898084259, 40.10960193053898], [-74.96397681595, 40.10950826215481], [-74.96407360148214, 40.10945256031356], [-74.96423339141067, 40.10942740937499], [-74.96440812902686, 40.10949839617235], [-74.9645076215663, 40.10946888072424], [-74.96460110813432, 40.1094014900223], [-74.96467843512309, 40.10931339131839], [-74.96473678175828, 40.10918129840122], [-74.96476348935374, 40.10908326543434], [-74.96480860228478, 40.108997287725906], [-74.96490510709901, 40.1089023980248], [-74.96508711155552, 40.10879651821489], [-74.96520452139433, 40.10865279376601], [-74.96538552333612, 40.10838726082454], [-74.96551491521684, 40.108227863806526], [-74.96557978452094, 40.10814498190638], [-74.96558395061751, 40.10806555604411], [-74.96550238324046, 40.107980864075955], [-74.96543067252851, 40.10788625388897], [-74.96536723004647, 40.10777442889945], [-74.96529412593388, 40.10762173604106], [-74.96521076588365, 40.107442675354456], [-74.96512196496265, 40.107304114824885], [-74.96501650930959, 40.107202880458296], [-74.96472482099311, 40.1071725965749], [-74.96442003531749, 40.10713909226683], [-74.96419407038636, 40.10711910553015], [-74.96395677513556, 40.107098842885186], [-74.9637089907015, 40.107058011779365], [-74.96351561716939, 40.10698076556588], [-74.96333488205855, 40.10687190125946], [-74.96324831098964, 40.10677112471085], [-74.9632120071881, 40.10665100135869], [-74.9632683414159, 40.10655974021317], [-74.96338775907506, 40.10650745210231], [-74.96346437237705, 40.10648032330571], [-74.96359454454354, 40.10643994290029], [-74.96365758025517, 40.10637761973227], [-74.96366918543235, 40.10627922187831], [-74.96361603929876, 40.106100891211604], [-74.96369137662307, 40.10596920969179], [-74.96378485917754, 40.105901819636934], [-74.9639060841823, 40.10580317682134], [-74.96396204610612, 40.10572907177049], [-74.96394415798275, 40.105612545068865], [-74.96379597945818, 40.10553929768364], [-74.96359104385553, 40.10546757779541], [-74.96339791446555, 40.10538453427425], [-74.96318284504194, 40.105283544474474], [-74.962963164746, 40.10520275805894], [-74.9626919154668, 40.10513523365247], [-74.96255447219637, 40.10507675664639], [-74.96249775198542, 40.1049854102411], [-74.96242759983974, 40.104853103358295], [-74.9624316534999, 40.10475452338473], [-74.96246627331722, 40.10464797656316], [-74.96253801424646, 40.1045118536878], [-74.96237672471584, 40.10434396220508], [-74.96209043267068, 40.1041367593823], [-74.96199136750904, 40.10401826282574], [-74.96176561224028, 40.10380962481303], [-74.96156330892553, 40.10367411403533], [-74.96140110953917, 40.103574403016644], [-74.96122698558308, 40.1034889133785], [-74.96114017300145, 40.103435546349274], [-74.96101844359531, 40.1033213243334], [-74.96098827939214, 40.103227718057234], [-74.96099352798086, 40.10310014169535], [-74.96102317699925, 40.103022499139044], [-74.96108806584733, 40.1027773738771], [-74.9611975256981, 40.102597183444516], [-74.96120102805526, 40.102420225558284], [-74.96123341984755, 40.102275895291584], [-74.96128894444362, 40.102120514932956], [-74.96128045155375, 40.1019824483342], [-74.96117649137744, 40.1018681879942], [-74.96110006443077, 40.101796677407464], [-74.96106000262057, 40.101668001835556], [-74.96112407504828, 40.101396736449274], [-74.96122488894056, 40.10128889520469], [-74.96139308776735, 40.101150760717616], [-74.96147619296396, 40.10105990114736], [-74.96164168712644, 40.10089557950857], [-74.96169979393106, 40.10076928698368], [-74.96174255931354, 40.10064842615592], [-74.96176668581465, 40.10052130854028], [-74.96179907553315, 40.100376977195545], [-74.96184541778801, 40.100169133300874], [-74.96185253345196, 40.10008803990201], [-74.96188848050542, 40.09990316362808], [-74.96193100648846, 40.099788102552125], [-74.96199406049067, 40.099679342223226], [-74.96201864140038, 40.09958706386156], [-74.96198434418078, 40.0995020637502], [-74.96191642295962, 40.09940754288477], [-74.96181428304273, 40.099317994054964], [-74.96173750165367, 40.09925518410154], [-74.96167842327168, 40.09917538753953], [-74.96175669636678, 40.0990640950242], [-74.96206937522757, 40.09876693282772], [-74.96207662896857, 40.09863650451015], [-74.96190666953866, 40.0984959727095], [-74.9617225418011, 40.098378315842666], [-74.96160518328142, 40.098291302709356], [-74.96158634719137, 40.09819797039727], [-74.96165860004366, 40.09809523810618], [-74.96177331562501, 40.09801675545612], [-74.96180876655832, 40.097889912503334], [-74.96178710750394, 40.09777329380282], [-74.9617217725669, 40.097707858160305], [-74.96161784668656, 40.09766180201515], [-74.96141293836342, 40.097590078235875], [-74.96118927222231, 40.09751499576082], [-74.96105856058438, 40.097476997244186], [-74.96092276389942, 40.09747080023532], [-74.96078954638355, 40.097493689224166], [-74.96067803104046, 40.097540323516256], [-74.96056746872704, 40.09756376196426], [-74.96046163514461, 40.09756409438816], [-74.96007657891424, 40.097461876208584], [-74.95973257710463, 40.097372260851245], [-74.95962523555662, 40.09731741377516], [-74.9594744989043, 40.09721507453958], [-74.95937399268634, 40.09717780820223], [-74.95876548627052, 40.096899039666354], [-74.95851430034554, 40.09680865469869], [-74.95825066194955, 40.09669486590342], [-74.95816657239854, 40.09662607029507], [-74.9580938923291, 40.096509662320166], [-74.95799490376446, 40.096389713851764], [-74.95765135894611, 40.096105646749336], [-74.95735317370796, 40.09595909061887], [-74.9572076044577, 40.09591492102114], [-74.95705730675867, 40.095893856147875], [-74.95689802502051, 40.095907399328425], [-74.9566389075855, 40.095959150293666], [-74.95646086677436, 40.09596933556449], [-74.95628497762564, 40.09592733032099], [-74.95618543097287, 40.09586686371889], [-74.95609058057512, 40.09573830698621], [-74.95611264839714, 40.095615494259576], [-74.95583640361829, 40.09525759748484], [-74.9557583653384, 40.09513380038586], [-74.9557595489431, 40.09501338331986], [-74.95587915493088, 40.094724605366636], [-74.95600706377722, 40.09446360022027], [-74.95623346209133, 40.09401343633093], [-74.95639087460387, 40.09372412604626], [-74.95640181776452, 40.09355025200715], [-74.95640095839518, 40.0933876996812], [-74.95638074249425, 40.09323628638063], [-74.95637269106219, 40.09306485216829], [-74.95645302212061, 40.092857837007095], [-74.95668999695222, 40.09247177960124], [-74.95682222258692, 40.092289244195165], [-74.95694085382434, 40.09216152051755], [-74.95706373630678, 40.09202229237414], [-74.95711548804199, 40.091866822224674], [-74.95719698471487, 40.09167724821423], [-74.95728517503632, 40.09155459112615], [-74.95744112074948, 40.09134650831758], [-74.95747160812206, 40.09124857047232], [-74.95764213077516, 40.0911453266044], [-74.95781370059555, 40.090833138751776], [-74.95795906082304, 40.09056094710358], [-74.95797821940813, 40.090462733962696], [-74.95796304502679, 40.09037239214202], [-74.9579075408016, 40.09025204794809], [-74.95782231122263, 40.09011937309264], [-74.95779215612944, 40.09002576586814], [-74.95778914310826, 40.08991540380297], [-74.95785827330144, 40.08979663551961], [-74.95802891227677, 40.08969049163477], [-74.95811173142842, 40.089560448074124], [-74.95811555178857, 40.08946766437731], [-74.95811454572612, 40.089354449615925], [-74.95815351448273, 40.08927993382665], [-74.95824139797537, 40.08916452500722], [-74.95822879134455, 40.08901184524645], [-74.95818032996581, 40.08872043554952], [-74.95800915113314, 40.088243196130925], [-74.95786822721342, 40.08790310149964], [-74.95771263675732, 40.08764391471092], [-74.9576079809796, 40.08720311986009], [-74.95762291135141, 40.08706997478536], [-74.9580162109943, 40.08683283017598], [-74.95802600041833, 40.08659507602561], [-74.95803278313677, 40.08647624481164], [-74.95802460773955, 40.08630771097548], [-74.95806425225537, 40.086170813108446], [-74.95820216028376, 40.086033397931644], [-74.95822382526586, 40.085874296023924], [-74.95821450201854, 40.08564188234166], [-74.95825042206582, 40.08527415836413], [-74.95829712294712, 40.085057618206065], [-74.95833940705427, 40.08494835547422], [-74.95862611131385, 40.084592527228246], [-74.95867823230348, 40.08438192150736], [-74.95858816083263, 40.08427524979799], [-74.95842092324301, 40.08420733774501], [-74.95836434900353, 40.08411308799784], [-74.95837182172221, 40.08402329625386], [-74.95840176734495, 40.08393840525309], [-74.95859127838324, 40.08392414323246], [-74.95872069406991, 40.08390116506728], [-74.95890184992464, 40.08372271569425], [-74.95896419799766, 40.08358491909451], [-74.95898289842745, 40.08345186635132], [-74.95894297197812, 40.08332029045303], [-74.95890610552568, 40.08320620302309], [-74.95901704696429, 40.08308119502889], [-74.95913331519058, 40.082918584675745], [-74.95915306777049, 40.08280587309673], [-74.95913034295927, 40.082715348937064], [-74.95903757227579, 40.08258249162527], [-74.95899927283814, 40.08250319866731], [-74.95907588300675, 40.082386063109766], [-74.95926814392355, 40.082370061103965], [-74.95966512082344, 40.082314399849274], [-74.95974238806396, 40.082303567007834], [-74.95985801389948, 40.08224832687534], [-74.95995325701332, 40.0821374469473], [-74.9600098001495, 40.08204884727716], [-74.96004905115942, 40.081921669099025], [-74.96007204635139, 40.081785326136774], [-74.96007671227004, 40.08167191390378], [-74.96007799941006, 40.08153504487056], [-74.96005971537338, 40.0814511254571], [-74.96004024952006, 40.08129037965196], [-74.96010570987941, 40.08117844232902], [-74.96017944313634, 40.081076721240095], [-74.9606259039805, 40.08079038634399], [-74.96081418558292, 40.08065137782424], [-74.96088220349698, 40.08058290873134], [-74.9609850982979, 40.080511946609434], [-74.96109777495953, 40.08041451032501], [-74.96127232265127, 40.08018668501864], [-74.96140483535991, 40.0800296281236], [-74.96152226619331, 40.07992228866674], [-74.96163439246631, 40.079838195165365], [-74.96174163623067, 40.07976466083418], [-74.96189285623186, 40.07966205055332], [-74.96198535025003, 40.07960129133098], [-74.9621058397999, 40.07947232314706], [-74.96213031811381, 40.07935271185449], [-74.96215518203701, 40.079117913887906], [-74.96219879028268, 40.07900878387991], [-74.96226872365817, 40.078893614574234], [-74.96233239783723, 40.078825040228445], [-74.96238653289808, 40.07877407663615], [-74.96248682278156, 40.07866350464332], [-74.96253280493795, 40.07854942303499], [-74.96249852328924, 40.07843172582277], [-74.96242979967485, 40.07825309063244], [-74.96242260095161, 40.07811100765712], [-74.96244394469112, 40.07801469414361], [-74.96251236960778, 40.077936217711645], [-74.96262828690277, 40.07786557101308], [-74.96318267365572, 40.07738484004166], [-74.96328574281962, 40.07720369423109], [-74.96339372536175, 40.0771144887099], [-74.96350474704495, 40.07705707908875], [-74.96363597570574, 40.07703688707247], [-74.96377899428731, 40.07704703246299], [-74.96432245829457, 40.077043513110574], [-74.96481054613699, 40.077165438262], [-74.96487823382172, 40.07739275793584], [-74.96562550287764, 40.07962691425054], [-74.96567839184083, 40.079904498837685], [-74.96582688977068, 40.08037333929694], [-74.96595348766569, 40.08072432479731], [-74.96607904775334, 40.08103230110434], [-74.96618187901562, 40.08124937703642], [-74.9663404029493, 40.08154234032804], [-74.96646756928382, 40.08173967536829], [-74.96666319536153, 40.08201435740862], [-74.96682090137726, 40.082216473817276], [-74.96755307599429, 40.08307629554037], [-74.96866569300502, 40.084332634218896], [-74.96988962485035, 40.085709477705606], [-74.97018809543366, 40.086023191707326], [-74.97056950632104, 40.086385994240395], [-74.97117513228486, 40.08691367533132], [-74.97138607796352, 40.08705566489162], [-74.97162854838277, 40.08725109988515], [-74.97226035954658, 40.08772373967268], [-74.97335356637348, 40.088504638917414], [-74.975220751884, 40.089854176405005], [-74.97719326038882, 40.09133676742325], [-74.97803583627811, 40.09205594381622], [-74.98001838277072, 40.09371126251982], [-74.98410643925581, 40.09710654276584], [-74.98431375717901, 40.09729964811916], [-74.98581371160367, 40.09855867567171], [-74.98667529438421, 40.09927999004267], [-74.98807317181068, 40.10045024082944], [-74.98891948652006, 40.101196604672424], [-74.99003518154542, 40.10211898869551], [-74.99217821394565, 40.103963569454834], [-74.9944361008318, 40.10585213685131], [-74.99470828060764, 40.10612149353524], [-74.99639582594651, 40.1075218009091], [-74.99668944228584, 40.107775838781585], [-74.9968236875527, 40.10790136357909], [-74.99667938760946, 40.10800050653488], [-74.99549876139298, 40.10879904559209], [-74.99072087794879, 40.112101463231575], [-74.98962186970763, 40.11284772728174], [-74.98777727231318, 40.114128017574764], [-74.98497655197892, 40.116048088569165], [-74.98376690795077, 40.116945591479535], [-74.9832953100798, 40.11725366951866], [-74.98147515610661, 40.1186769133751], [-74.97996529974716, 40.11973470075871], [-74.97985040050135, 40.119639213251936], [-74.97973664437417, 40.11953199064375], [-74.97959940390363, 40.11942129890018], [-74.97946881752101, 40.119378971700826], [-74.97928311461659, 40.119344022453376], [-74.97913192604561, 40.11934328185931], [-74.97900787828966, 40.1193722175273], [-74.97889067491155, 40.11941873381068], [-74.97879907649181, 40.119486182472166], [-74.97864531187494, 40.11953689403562], [-74.97847810794664, 40.11950021323935], [-74.97836652680947, 40.11945544049511], [-74.97824259706185, 40.11948147676035], [-74.97797525333478, 40.11959402646026], [-74.97773653771272, 40.11965357566717], [-74.97764600532771, 40.11969492631858], [-74.97756726385114, 40.11979460879553], [-74.97751936128212, 40.12001838357799], [-74.9773824442252, 40.12006151984426], [-74.97724636119099, 40.12006114191805], [-74.97714197536872, 40.12002524669148], [-74.97704072411415, 40.119958955574155], [-74.97692890597693, 40.119919978588435], [-74.97679447375349, 40.11992544460344], [-74.97661135285827, 40.11996601317583], [-74.9763984801125, 40.12004069461639], [-74.97613632527936, 40.12014175686918], [-74.9760656741631, 40.1202053538645], [-74.97602865573337, 40.120278469144544], [-74.97604798396799, 40.12040663733858], [-74.97593059763722, 40.12045749843611], [-74.97577268928615, 40.12041305811775], [-74.97572783943329, 40.120284998611616], [-74.97567123948349, 40.1201900338411], [-74.97556614203015, 40.12017153673227], [-74.97538963277015, 40.12018904420357], [-74.97522598541474, 40.12021557057682], [-74.97510046902921, 40.12021109022837], [-74.97497194983922, 40.12016445381979], [-74.97480549897833, 40.120074818390854], [-74.97468767057562, 40.11999796644932], [-74.97461185960975, 40.119910518223364], [-74.9745359275946, 40.119849188974094]]]}}, {"id": "8430", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.04497148690287, 40.110579868480315], [-75.04124577923858, 40.108391784993984], [-75.04002147516533, 40.10766744216544], [-75.0398364866094, 40.107567401341505], [-75.03946005929, 40.10736383011532], [-75.03884342326626, 40.10711311473855], [-75.03821596534208, 40.10695216263746], [-75.03778419148301, 40.10687422181052], [-75.03715602640324, 40.10683321275579], [-75.0364868663854, 40.106824415656945], [-75.0360649295839, 40.10678593215079], [-75.0356459599636, 40.10667335538193], [-75.03536082349481, 40.10655823433889], [-75.03522208142601, 40.106497910264906], [-75.03476073863058, 40.10621739221594], [-75.03389807759999, 40.10569014574707], [-75.03299801495899, 40.10511107854101], [-75.03439861780558, 40.10442959994114], [-75.03497397154703, 40.10416480472308], [-75.03697023344401, 40.10318490149781], [-75.0385638336794, 40.10246180447796], [-75.03985773860795, 40.10183646397926], [-75.04261449745741, 40.10050531238359], [-75.04321102489683, 40.10023003104892], [-75.04359687718139, 40.1000244552356], [-75.04553188548518, 40.09911447843645], [-75.0462124467127, 40.09879441808162], [-75.04711687101697, 40.0983783993297], [-75.04842883493836, 40.09707683670527], [-75.05075288836791, 40.09478108446115], [-75.05148676871707, 40.0940921800102], [-75.0521008379093, 40.093511371602695], [-75.052641232185, 40.0930011284728], [-75.0529389112885, 40.092736131135304], [-75.05301377767144, 40.09266948399353], [-75.05359684465985, 40.092145793219075], [-75.05390748141029, 40.09187479828705], [-75.05424117419759, 40.09165232479042], [-75.0556873901617, 40.09075402583353], [-75.05645890895181, 40.09023614591196], [-75.0570680545122, 40.08969819867304], [-75.05769466444262, 40.088691375176175], [-75.05828040137938, 40.087783892001646], [-75.05872045663507, 40.08708410146879], [-75.05909916467368, 40.086670750169496], [-75.05997263007093, 40.08606746524045], [-75.06003442287486, 40.0860251054256], [-75.06011501160998, 40.08596985993657], [-75.06242021822165, 40.08439328542534], [-75.0654748991703, 40.082301532678365], [-75.06696943036414, 40.08125861072924], [-75.06708999434463, 40.081174476560655], [-75.06792498559446, 40.08060118151999], [-75.06827619919731, 40.080346677864654], [-75.06846470867045, 40.08016550253619], [-75.06921655202608, 40.07944205456631], [-75.06983091190762, 40.07882368559944], [-75.07038058984115, 40.07829099731442], [-75.07100864922093, 40.07768329396865], [-75.07301452470581, 40.07878225782444], [-75.07370523817029, 40.07918335936801], [-75.07463570858634, 40.079691913047505], [-75.07516847105627, 40.07999208020388], [-75.07625945129958, 40.080606739792614], [-75.07712295578538, 40.081081159091646], [-75.0778688389965, 40.08150231853251], [-75.0788450068151, 40.082049292987676], [-75.08168760417915, 40.083621315787084], [-75.081189150627, 40.084117842516726], [-75.07780237997744, 40.08577060590932], [-75.0762850362767, 40.08734184166048], [-75.07621101423739, 40.08741849292918], [-75.07123362350859, 40.09257200373774], [-75.07070881400485, 40.093115325291215], [-75.06945610894356, 40.09441217098119], [-75.06717459389318, 40.09677392043086], [-75.06567004428658, 40.098331262499364], [-75.0649336197538, 40.09909349519872], [-75.06424298959658, 40.099807689376114], [-75.06374502815815, 40.10032262854479], [-75.0635651080532, 40.100515285556895], [-75.06282035380688, 40.101283120986444], [-75.06141701723698, 40.10272988308664], [-75.06031563558594, 40.103868676200975], [-75.05955296452716, 40.10465722571823], [-75.05922801573257, 40.104993193756656], [-75.05842417065355, 40.10582388395065], [-75.05829127958201, 40.10591680588243], [-75.05533361228288, 40.10798663663956], [-75.05426974383495, 40.10873110159568], [-75.0529733091716, 40.10963827387001], [-75.04855727894453, 40.11272003648118], [-75.04780526845325, 40.1122439541413], [-75.04497148690287, 40.110579868480315]]]}}, {"id": "8440", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.03065632113092, 40.122031169005254], [-75.03043774058939, 40.12201223927109], [-75.03006993446725, 40.121943360379674], [-75.02977332370307, 40.121876166199485], [-75.02938197636728, 40.12173577231891], [-75.02854697652947, 40.12132704323474], [-75.02782474166607, 40.120925153598286], [-75.02551266739819, 40.11971559046697], [-75.02460789142913, 40.119217782683876], [-75.02377258300768, 40.11876699768091], [-75.02298428830309, 40.118342812032566], [-75.02216119910535, 40.11789417605088], [-75.02201567349113, 40.11781847198307], [-75.0209333336518, 40.1172453878266], [-75.01987429417981, 40.11666437903554], [-75.01905312452371, 40.11619950584618], [-75.01829950741967, 40.115780499219866], [-75.01790159654345, 40.116120184293074], [-75.01760274888854, 40.11619368898693], [-75.01739326479394, 40.11618138360495], [-75.01716677391697, 40.116117378431504], [-75.01488513379138, 40.114771444084184], [-75.01405579936676, 40.114358078192055], [-75.01315715970044, 40.11397164430021], [-75.00978586328247, 40.11144901647281], [-75.02392704057284, 40.10070388017047], [-75.02406487925523, 40.100738749448176], [-75.0256564318838, 40.10114330040666], [-75.02696824217134, 40.101507255222664], [-75.02763612412987, 40.10176688834416], [-75.02791301286108, 40.10195014011948], [-75.02888459210209, 40.10254424963743], [-75.03299801495899, 40.10511107854101], [-75.03389807759999, 40.10569014574707], [-75.03476073863058, 40.10621739221594], [-75.03522208142601, 40.106497910264906], [-75.03536082349481, 40.10655823433889], [-75.0356459599636, 40.10667335538193], [-75.0360649295839, 40.10678593215079], [-75.0364868663854, 40.106824415656945], [-75.03715602640324, 40.10683321275579], [-75.03778419148301, 40.10687422181052], [-75.03821596534208, 40.10695216263746], [-75.03884342326626, 40.10711311473855], [-75.03946005929, 40.10736383011532], [-75.0398364866094, 40.107567401341505], [-75.04002147516533, 40.10766744216544], [-75.04124577923858, 40.108391784993984], [-75.04497148690287, 40.110579868480315], [-75.04780526845325, 40.1122439541413], [-75.04855727894453, 40.11272003648118], [-75.03904358203224, 40.11935771332061], [-75.03833768667893, 40.119871126479985], [-75.03790870422559, 40.12016854479975], [-75.03767077099427, 40.12014456163275], [-75.03649616603012, 40.12039195367696], [-75.03487352835602, 40.12097568456606], [-75.03373877093078, 40.121377934919174], [-75.03264767458357, 40.121787477379655], [-75.03214415732494, 40.12193222228967], [-75.03162501875032, 40.12201792395095], [-75.0311063297577, 40.12204446019847], [-75.03065632113092, 40.122031169005254]]]}}, {"id": "8770", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.98921996786541, 40.077297778639334], [-74.98885168056458, 40.07699519493959], [-74.98827235695214, 40.07646712169232], [-74.98756894135704, 40.0758266045254], [-74.987383258211, 40.07565524633398], [-74.98716340447214, 40.07550301771704], [-74.98688627999283, 40.07533382860203], [-74.98657006926763, 40.07519932165152], [-74.9862868797863, 40.07510790761913], [-74.98599482568952, 40.07502073363189], [-74.98574963774715, 40.07492132700258], [-74.98541434288165, 40.074757414542674], [-74.98463233010169, 40.07433652288278], [-74.98365896723641, 40.073787978727594], [-74.98317558338958, 40.07346948631761], [-74.98287766317866, 40.07326270833547], [-74.98117480683793, 40.071986132815525], [-74.98125842441804, 40.07178484849688], [-74.98134747214282, 40.07149443151838], [-74.98141437652902, 40.07098998904093], [-74.9815649114516, 40.06952343351367], [-74.98164897881254, 40.06881132519683], [-74.98172734938943, 40.06841249102111], [-74.98182918044128, 40.067971284274606], [-74.9819513580679, 40.06756396300465], [-74.9823023375811, 40.066421684760115], [-74.98236541229721, 40.06610959079852], [-74.98241394977978, 40.065737371587836], [-74.98242024726542, 40.06534949169114], [-74.9823554882295, 40.064673770476055], [-74.98106055052514, 40.06492588830355], [-74.98096642260431, 40.064669071563905], [-74.98092547600625, 40.06450113291681], [-74.98090652361171, 40.0642202004415], [-74.98091319615096, 40.064056750560354], [-74.98093682653479, 40.06390372564563], [-74.98098107209536, 40.06377791063741], [-74.98101970108976, 40.06357683183606], [-74.98103912535659, 40.06342036708048], [-74.9810830992625, 40.0633012233168], [-74.98109613905308, 40.06319468880888], [-74.98109126910086, 40.063101080141166], [-74.98101572704437, 40.06292896931465], [-74.98093339478694, 40.06281679788501], [-74.98086449324052, 40.06269493289984], [-74.98080339150526, 40.06259496080614], [-74.98080720441843, 40.062501561383606], [-74.98082878953207, 40.062398572212544], [-74.98086787906719, 40.062292665554864], [-74.98091158138077, 40.06218019313656], [-74.98098526272864, 40.06207846039402], [-74.98100725590439, 40.061965464748084], [-74.98102898023743, 40.06185913954121], [-74.98101488116173, 40.06177866408198], [-74.98100119413706, 40.061688181365994], [-74.98095304795676, 40.061590189439556], [-74.9809082368487, 40.06141047341162], [-74.98091693600342, 40.061303834300475], [-74.98093431621123, 40.061197404410905], [-74.98094287911613, 40.06109410137642], [-74.9809256664009, 40.060983501101816], [-74.98091686490596, 40.06087977866368], [-74.98088567526722, 40.06079221344733], [-74.98084227891759, 40.06068431874318], [-74.98076726775463, 40.06060571357947], [-74.98054751869043, 40.06045350020058], [-74.98048084972567, 40.06038344522766], [-74.98042415929415, 40.060281907707775], [-74.98043231307426, 40.060188612916164], [-74.98048456069661, 40.0600796851148], [-74.98055633622793, 40.06002465150425], [-74.980666499553, 40.059987239059254], [-74.98081518922255, 40.05996411164604], [-74.98093362472231, 40.05993691551578], [-74.98108760777988, 40.05989054160097], [-74.98120795035433, 40.059816644592956], [-74.98131119964572, 40.05973565772611], [-74.98140115508835, 40.05966102824717], [-74.98152449071034, 40.0595137452045], [-74.98161119424806, 40.05941232502472], [-74.98198967925197, 40.058975688220436], [-74.98210365108055, 40.05884487311465], [-74.98218573793844, 40.05875002003741], [-74.98229698706716, 40.058685920073096], [-74.98247512019503, 40.058580023075194], [-74.98260875567634, 40.05849976797433], [-74.9827543245591, 40.05844651143368], [-74.98295795892344, 40.05835458448135], [-74.98332758775962, 40.05813476435305], [-74.98351399150326, 40.05803908396144], [-74.98368519849436, 40.057996460812056], [-74.98383931016633, 40.057946746193515], [-74.98399681211448, 40.05792048850884], [-74.98411103845788, 40.057889848521434], [-74.98424737790943, 40.05784972268482], [-74.98437164690296, 40.05778593512348], [-74.98453852004965, 40.057636357750695], [-74.98491349868218, 40.05739161992467], [-74.98506530826549, 40.05729176424976], [-74.98515166382873, 40.05719867980012], [-74.98518585479218, 40.0571060114213], [-74.98518098080696, 40.05701240292386], [-74.98514375233084, 40.05691300585423], [-74.98494971406399, 40.056716343633866], [-74.98481963186443, 40.05660302568651], [-74.98469307335526, 40.0565098258428], [-74.98458876497823, 40.056403805800805], [-74.98449341161933, 40.05629132520466], [-74.98440999142397, 40.056205842147605], [-74.98433763521942, 40.05606219289731], [-74.98429505346952, 40.05593428658902], [-74.98428375997585, 40.055875386707186], [-74.98426996993457, 40.05580346034975], [-74.98426320268395, 40.0556497031396], [-74.98425941689021, 40.05552940768928], [-74.98424883572238, 40.055410642653335], [-74.98425225091168, 40.05527881117554], [-74.98422696599542, 40.055152990006206], [-74.98417820778371, 40.05507001087779], [-74.9840640661072, 40.05499213539381], [-74.98394390189576, 40.05491967708071], [-74.98379684774893, 40.054832108124515], [-74.9837355436281, 40.054737139844825], [-74.98367966917444, 40.05461558919392], [-74.98361958842578, 40.05449059966494], [-74.98347540298006, 40.05440365259739], [-74.98279123935055, 40.053919714941244], [-74.98253901188087, 40.053818478172815], [-74.98232251640555, 40.05379990612641], [-74.98220536121858, 40.05376998757276], [-74.98191222280094, 40.053710090556365], [-74.981827139927, 40.05369447845001], [-74.9817110770208, 40.0536605020565], [-74.98159098419983, 40.05362534624615], [-74.98139239780356, 40.053593849249175], [-74.9811006741922, 40.05359349625193], [-74.98104456280066, 40.05359222852843], [-74.98101013867401, 40.0535913141073], [-74.98094102121459, 40.053599959083876], [-74.98083107792566, 40.053613710265495], [-74.98070312535563, 40.05362429968076], [-74.98063015568569, 40.053630079020856], [-74.98049113804896, 40.05363890568749], [-74.98028684909443, 40.05364065842978], [-74.98020034834873, 40.053637124904604], [-74.98016671564534, 40.053635751745446], [-74.98012106201882, 40.053633886903825], [-74.98008731111703, 40.053632508168285], [-74.98004127500081, 40.053626800922004], [-74.98000168352553, 40.05362189151193], [-74.97993736718946, 40.05361391698472], [-74.97983656849195, 40.053601419693535], [-74.97972581494665, 40.053549177556555], [-74.97968613886177, 40.053530462506835], [-74.97965752614932, 40.05351696651479], [-74.97964215966273, 40.05350511091698], [-74.97957938189387, 40.053456678306596], [-74.97951009524691, 40.05340322381422], [-74.9793804359642, 40.05327989322368], [-74.97914132500213, 40.053070446581486], [-74.9788643758819, 40.052830035989494], [-74.97855513523946, 40.05263559138109], [-74.97800620398617, 40.05220691321566], [-74.97683828922655, 40.05115910201165], [-74.97607665903661, 40.05047576991033], [-74.9747841439478, 40.04931608880409], [-74.97526196175941, 40.048745620231564], [-74.97576089776359, 40.04814992707445], [-74.97621401852302, 40.0476995145884], [-74.9766399576386, 40.04740753190659], [-74.98111308745125, 40.05138180422633], [-74.98208931617228, 40.05231255529608], [-74.98273352293714, 40.05301574562342], [-74.98379632094823, 40.05420356773441], [-74.98396572527261, 40.05462750125775], [-74.98401688146697, 40.054708509021076], [-74.98409878171032, 40.05478373231092], [-74.98415155670932, 40.05482814694793], [-74.9842573866046, 40.05490393180876], [-74.98439233134985, 40.055017035967204], [-74.98451795866875, 40.05514942559683], [-74.98475433761872, 40.055358582041585], [-74.98500302675573, 40.05557645381922], [-74.98529316777564, 40.05582904683217], [-74.98590682466101, 40.056378300947806], [-74.9879801607809, 40.05821631396604], [-74.989286928798, 40.05937652147773], [-74.9904325723008, 40.060397207455054], [-74.99051053375126, 40.060438488973645], [-74.99064230555005, 40.06050208736882], [-74.99085541386388, 40.06066080733073], [-74.99110105709491, 40.06082534327962], [-74.99130342505201, 40.06092588935296], [-74.99149351660745, 40.06100599428357], [-74.99170939033432, 40.06109679086137], [-74.99194572488256, 40.06116793486433], [-74.99239711762029, 40.06126941868098], [-74.99281403097854, 40.06133230332667], [-74.99321774729918, 40.061397389171425], [-74.99356775227025, 40.06149391799965], [-74.99395224082419, 40.061629044655696], [-74.99427698081958, 40.061782881163985], [-74.99451468543627, 40.06191530970193], [-74.99530548636974, 40.06236533704058], [-74.9984208088978, 40.06413807764871], [-74.99902373253308, 40.06448114410677], [-75.00020320019168, 40.06515197637998], [-75.00290365177997, 40.06668327635158], [-75.00727005000492, 40.06916284283319], [-75.00483354427188, 40.07057416485648], [-75.0042297892391, 40.07092555896701], [-75.0039421890115, 40.071121919058655], [-75.00360740450331, 40.071363604993394], [-75.00330164540017, 40.071635015988534], [-75.00304118878766, 40.07190750917391], [-75.00282981283493, 40.072181176068305], [-75.00262103331933, 40.07248393598939], [-75.00246652040993, 40.07275315621835], [-75.00233985929778, 40.073081104824716], [-75.00225469148393, 40.07335752168253], [-74.99953545380916, 40.07187173742727], [-74.9989482944393, 40.07251845219748], [-74.99864769578822, 40.072562334898095], [-74.99854251966426, 40.072661980060474], [-74.99836399949143, 40.07284546179489], [-74.99810530662826, 40.073152295469725], [-74.99802898075785, 40.07322340870369], [-74.99766811629149, 40.073622153962596], [-74.99740306779414, 40.073875826223386], [-74.99592194375668, 40.075303406093376], [-74.99592659278815, 40.075531830794006], [-74.99591862423539, 40.075728059062044], [-74.99589315117564, 40.07587098620906], [-74.99587217302256, 40.076005529452345], [-74.99571972139283, 40.07638810043395], [-74.99556469868985, 40.07669412464115], [-74.9954437473729, 40.07688764666741], [-74.9952821379686, 40.07715036703388], [-74.99492079563227, 40.07703174634329], [-74.99464211008906, 40.076966309251105], [-74.99248972749447, 40.076630909470836], [-74.99237406663944, 40.07705607405646], [-74.99226415503534, 40.077385191469126], [-74.99214452925322, 40.07767115166447], [-74.99202158831007, 40.07791348464197], [-74.99188545930957, 40.07815294738114], [-74.9917502324365, 40.07835878497265], [-74.99161486081663, 40.07859103005699], [-74.99149575676354, 40.078738917622466], [-74.9913784196397, 40.07884341256029], [-74.99118237508259, 40.07898035939267], [-74.990003702322, 40.07797687101398], [-74.98921996786541, 40.077297778639334]]]}}]} diff --git a/examples/school-explorer-for-parents/site/data/schools.json b/examples/school-explorer-for-parents/site/data/schools.json deleted file mode 100644 index 3e1a6fe..0000000 --- a/examples/school-explorer-for-parents/site/data/schools.json +++ /dev/null @@ -1 +0,0 @@ -[{"sdp_id": "1010", "name": "John Bartram High School", "sort_name": "Bartram, John High School", "abbr_name": "Bartram", "geom": {"type": "Point", "coordinates": [-75.23405562, 39.92149737]}, "Year Opened": "1939", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2401 S 67TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-400-8100", "Fax Number": "215-400-8101", "Website": "https://bartram.philasd.org/", "School Leader Name": "MR BRIAN JOHNSON", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1020", "name": "West Philadelphia High School", "sort_name": "West Philadelphia High School", "abbr_name": "West Philadelphia", "geom": {"type": "Point", "coordinates": [-75.219654, 39.95811]}, "Year Opened": "1911", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4901 CHESTNUT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7900", "Fax Number": "215-400-7901", "Website": "https://wphs.philasd.org/", "School Leader Name": "MS MARLA TRAVIS CURTIS", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1030", "name": "High School of the Future", "sort_name": "High School of the Future", "abbr_name": "HS of Future", "geom": {"type": "Point", "coordinates": [-75.2047566, 39.97465766]}, "Year Opened": "2006", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "4021 PARKSIDE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7790", "Fax Number": "215-400-7791", "Website": "https://sof.philasd.org/", "School Leader Name": "MR JOHN SMITH JR", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1050", "name": "Paul Robeson High School for Human Services", "sort_name": "Robeson, Paul High School for Human Services", "abbr_name": "Robeson", "geom": {"type": "Point", "coordinates": [-75.20476311, 39.95679553]}, "Year Opened": "2003", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4125 LUDLOW ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7780", "Fax Number": "215-400-7781", "Website": "https://robeson.philasd.org/", "School Leader Name": "MR RICHARD GORDON", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1100", "name": "William L. Sayre High School", "sort_name": "Sayre, William L. High School", "abbr_name": "Sayre", "geom": {"type": "Point", "coordinates": [-75.23859405, 39.95759354]}, "Year Opened": "1950", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5800 WALNUT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7800", "Fax Number": "215-400-7801", "Website": "https://sayre.philasd.org/", "School Leader Name": "MS JAMIE EBERLE", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1130", "name": "William T. Tilden School", "sort_name": "Tilden, William T. Middle School", "abbr_name": "Tilden", "geom": {"type": "Point", "coordinates": [-75.23227632, 39.92093619]}, "Year Opened": "1927", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "6601 ELMWOOD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-400-8170", "Fax Number": "215-400-8171", "Website": "https://tilden.philasd.org/", "School Leader Name": "MS TIMEKA FORD-SMITH", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1190", "name": "Motivation High School", "sort_name": "Motivation High School", "abbr_name": "Motivation", "geom": {"type": "Point", "coordinates": [-75.24184422, 39.94453199]}, "Year Opened": "2004", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5900 BALTIMORE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7930", "Fax Number": "215-400-7931", "Website": "https://motivationhs.philasd.org/", "School Leader Name": "MRS RENNU TELI", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "1200", "name": "John Barry School", "sort_name": "Barry, John Elementary School", "abbr_name": "Barry", "geom": {"type": "Point", "coordinates": [-75.23860376, 39.96437494]}, "Year Opened": "2007", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2013-2014", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "5900 RACE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7640", "Fax Number": "215-400-7641", "Website": "https://barry.philasd.org/", "School Leader Name": "MS KATIEDRA ARGRO", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1230", "name": "William C. Bryant School", "sort_name": "Bryant, William C. School", "abbr_name": "Bryant", "geom": {"type": "Point", "coordinates": [-75.243691, 39.952687]}, "Year Opened": "1903", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2013-2014", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "6001 CEDAR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7910", "Fax Number": "215-400-7911", "Website": "https://bryant.philasd.org/", "School Leader Name": "MR BAHIR HAYES", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Sandra Hopkins", "FACE Liaison Email": "shopkins@philasd.org", "FACE Liaison Phone Number": "215-400-7910", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1250", "name": "Joseph W. Catharine School", "sort_name": "Catharine, Joseph W. School", "abbr_name": "Catharine", "geom": {"type": "Point", "coordinates": [-75.239911, 39.927435]}, "Year Opened": "1937", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "6600 CHESTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-400-8150", "Fax Number": "215-400-8151", "Website": "https://catharine.philasd.org/", "School Leader Name": "MS LISA WILMER", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1260", "name": "Benjamin B. Comegys School", "sort_name": "Comegys, Benjamin B. School", "abbr_name": "Comegys", "geom": {"type": "Point", "coordinates": [-75.216289, 39.94052]}, "Year Opened": "1911", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5100 GREENWAY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7860", "Fax Number": "215-400-7861", "Website": "https://comegys.philasd.org/", "School Leader Name": "MS RAUCHAUN DUPREE", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1280", "name": "Sadie Alexander School", "sort_name": "Penn Alexander School", "abbr_name": "Penn Alexander", "geom": {"type": "Point", "coordinates": [-75.208187, 39.953099]}, "Year Opened": "2001", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4209 SPRUCE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7760", "Fax Number": "215-400-7761", "Website": "https://pennalexander.philasd.org/", "School Leader Name": "MS LAUREN OVERTON", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1290", "name": "Andrew Hamilton School", "sort_name": "Hamilton, Andrew School", "abbr_name": "Hamilton", "geom": {"type": "Point", "coordinates": [-75.235543, 39.955438]}, "Year Opened": "1970", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5640 SPRUCE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7650", "Fax Number": "215-400-7651", "Website": "https://hamilton.philasd.org/", "School Leader Name": "MR TORRENCE ROTHMILLER", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1300", "name": "Avery D. Harrington School", "sort_name": "Harrington, Avery D. School", "abbr_name": "Harrington", "geom": {"type": "Point", "coordinates": [-75.23059508, 39.94736517]}, "Year Opened": "1927", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2019-2020", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5300 BALTIMORE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7920", "Fax Number": "215-400-7921", "Website": "https://harrington.philasd.org/", "School Leader Name": "MR ALONZO FULTON", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1340", "name": "Henry C. Lea School", "sort_name": "Lea, Henry C. School", "abbr_name": "Lea", "geom": {"type": "Point", "coordinates": [-75.216347, 39.954515]}, "Year Opened": "1914", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4700 LOCUST ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7660", "Fax Number": "215-400-7661", "Website": "https://lea.philasd.org/", "School Leader Name": "AARON GERWER", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1350", "name": "William C. Longstreth School", "sort_name": "Longstreth, William C. School", "abbr_name": "Longstreth", "geom": {"type": "Point", "coordinates": [-75.23237316, 39.94090823]}, "Year Opened": "1971", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5700 WILLOWS AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7870", "Fax Number": "215-400-7871", "Website": "https://longstreth.philasd.org/", "School Leader Name": "MS TISHA DOUGLAS", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1360", "name": "Morton McMichael School", "sort_name": "McMichael, Morton School", "abbr_name": "McMichael", "geom": {"type": "Point", "coordinates": [-75.19411487, 39.96619727]}, "Year Opened": "1963", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2013-2014", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "3543 FAIRMOUNT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7750", "Fax Number": "215-400-7751", "Website": "https://mcmichael.philasd.org/", "School Leader Name": "DOLLETTE JOHNS-SMITH", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1370", "name": "S. Weir Mitchell School", "sort_name": "Mitchell, S. Weir Elementary School", "abbr_name": "Mitchell", "geom": {"type": "Point", "coordinates": [-75.223291, 39.93681427]}, "Year Opened": "1916", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "5500 KINGSESSING AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7880", "Fax Number": "215-400-7881", "Website": "https://mitchell.philasd.org/", "School Leader Name": "STEPHANIE ANDREWLEVICH", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1380", "name": "Thomas G. Morton School", "sort_name": "Morton, Thomas G. School", "abbr_name": "Morton", "geom": {"type": "Point", "coordinates": [-75.22690015, 39.92346826]}, "Year Opened": "1971", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2501 S 63RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-400-8160", "Fax Number": "215-400-8161", "Website": "https://morton.philasd.org/", "School Leader Name": "MR ANDREW BROOKING", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1390", "name": "Samuel Powel School", "sort_name": "Powel, Samuel School", "abbr_name": "Powel", "geom": {"type": "Point", "coordinates": [-75.19391769815562, 39.95796279797709]}, "Year Opened": "1961", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "3610 WARREN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7740", "Fax Number": "215-400-7741", "Website": "https://powel.philasd.org/", "School Leader Name": "MRS KIMBERLY ELLERBEE", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1400", "name": "John M. Patterson School", "sort_name": "Patterson, John M. School", "abbr_name": "Patterson", "geom": {"type": "Point", "coordinates": [-75.236762, 39.916095]}, "Year Opened": "1921", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "7000 BUIST AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-400-8190", "Fax Number": "215-400-8191", "Website": "https://patterson.philasd.org/", "School Leader Name": "MRS LEANDREA BALTIMORE-HAGAN", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1410", "name": "James Rhoads School", "sort_name": "Rhoads, James School", "abbr_name": "Rhoads", "geom": {"type": "Point", "coordinates": [-75.220063, 39.967339]}, "Year Opened": "1960", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4901 PARRISH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7680", "Fax Number": "215-400-7681", "Website": "https://rhoads.philasd.org/", "School Leader Name": "MRS MEGAN WAPNER", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Ginger Glass-Mcintyre", "FACE Liaison Email": "geglass@philasd.org", "FACE Liaison Phone Number": "215-400-7680", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1420", "name": "Martha Washington School", "sort_name": "Washington, Martha School", "abbr_name": "Washington, Martha", "geom": {"type": "Point", "coordinates": [-75.211179, 39.966206]}, "Year Opened": "1930", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "766 N 44TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-7770", "Fax Number": "215-400-7771", "Website": "https://mwashington.philasd.org/", "School Leader Name": "MRS LAKEISHA PATRICK", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1440", "name": "Penrose School", "sort_name": "Penrose School", "abbr_name": "Penrose", "geom": {"type": "Point", "coordinates": [-75.24865833, 39.90692358]}, "Year Opened": "1971", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2515 S 78TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19153", "Phone Number": "215-400-8310", "Fax Number": "215-400-8311", "Website": "https://penrose.philasd.org/", "School Leader Name": "MS CAROL TRENCH", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1460", "name": "Add B. Anderson School", "sort_name": "Anderson, Add B. School", "abbr_name": "Anderson", "geom": {"type": "Point", "coordinates": [-75.245717, 39.946726]}, "Year Opened": "1963", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2020-2021", "Community School Cohort": "2022-2023", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "1034 S 60TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-400-7890", "Fax Number": "215-400-7891", "Website": "https://anderson.philasd.org/", "School Leader Name": "MS LAURENA ZELLER", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Annette Ellis", "FACE Liaison Email": "aellis@philasd.org", "FACE Liaison Phone Number": "215-400-7890", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1470", "name": "Alain Locke School", "sort_name": "Locke, Alain School", "abbr_name": "Locke", "geom": {"type": "Point", "coordinates": [-75.21245097, 39.96262376]}, "Year Opened": "1964", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2019-2020", "Community School Cohort": "2017-2018", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4550 HAVERFORD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7670", "Fax Number": "215-400-7671", "Website": "https://locke.philasd.org/", "School Leader Name": "MS BARETTA MASSEY", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1490", "name": "Rudolph Blankenburg School", "sort_name": "Blankenburg, Rudolph School", "abbr_name": "Blankenburg", "geom": {"type": "Point", "coordinates": [-75.21388868, 39.97296312]}, "Year Opened": "1925", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "4600 W GIRARD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-400-7280", "Fax Number": "215-400-7281", "Website": "https://blankenburg.philasd.org/", "School Leader Name": "DR IVY BROWN", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Ghandi Powell-Thompson", "FACE Liaison Email": "gpowell@philasd.org", "FACE Liaison Phone Number": "215-400-7280", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "1580", "name": "Middle Years Alternative School", "sort_name": "Middle Years Alternative (MYA) School", "abbr_name": "MYA", "geom": {"type": "Point", "coordinates": [-75.21546704, 39.96425379]}, "Year Opened": "1972", "School Level": "Middle", "Admission Type": "Citywide", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4725 FAIRMOUNT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7720", "Fax Number": "215-400-7721", "Website": "https://mya.philasd.org/", "School Leader Name": "MS SHAKAE DUPRE", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2000", "name": "South Philadelphia High School", "sort_name": "South Philadelphia High School", "abbr_name": "South Philadelphia", "geom": {"type": "Point", "coordinates": [-75.1691065, 39.9238987]}, "Year Opened": "1957", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2101 S BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8400", "Fax Number": "215-400-8401", "Website": "https://sphs.philasd.org/", "School Leader Name": "KIMLIME CHEK-TAYLOR", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2010", "name": "Benjamin Franklin High School", "sort_name": "Franklin, Benjamin High School", "abbr_name": "Franklin HS", "geom": {"type": "Point", "coordinates": [-75.16164, 39.96353]}, "Year Opened": "1958", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "550 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7600", "Fax Number": "215-400-7601", "Website": "https://bfhs.philasd.org/", "School Leader Name": "MS KHAILIAH CANADA", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2020", "name": "High School for Creative and Performing Arts", "sort_name": "Creative and Performing Arts (CAPA) High School", "abbr_name": "CAPA", "geom": {"type": "Point", "coordinates": [-75.16548375, 39.93941992]}, "Year Opened": "1997", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "901 S BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-8140", "Fax Number": "215-400-8141", "Website": "https://capa.philasd.org/", "School Leader Name": "MS JOANNE BEAVER", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2050", "name": "Science Leadership Academy Middle School", "sort_name": "Science Leadership Academy Middle School (SLAMS)", "abbr_name": "SLAMS", "geom": {"type": "Point", "coordinates": [-75.19391769815562, 39.95796279797709]}, "Year Opened": "2016", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "3610 WARREN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-8320", "Fax Number": "", "Website": "https://slams.philasd.org/", "School Leader Name": "MR TIMOTHY BOYLE", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2140", "name": "Julia R. Masterman School", "sort_name": "Masterman, Julia R. High School", "abbr_name": "Masterman", "geom": {"type": "Point", "coordinates": [-75.16620758, 39.96320031]}, "Year Opened": "1933", "School Level": "Middle-High", "Admission Type": "Special Admit", "Current Grade Span Served": "05-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1699 SPRING GARDEN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7580", "Fax Number": "215-400-7581", "Website": "https://masterman.philasd.org/", "School Leader Name": "MS JEANNINE PAYNE", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2160", "name": "Furness High School", "sort_name": "Furness, Horace High School", "abbr_name": "Furness", "geom": {"type": "Point", "coordinates": [-75.150585, 39.923762]}, "Year Opened": "1912", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1900 S 3RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8300", "Fax Number": "215-400-8301", "Website": "https://furness.philasd.org/", "School Leader Name": "MR DANIEL PEOU", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2190", "name": "D. Newlin Fell School", "sort_name": "Fell, D. Newlin School", "abbr_name": "Fell", "geom": {"type": "Point", "coordinates": [-75.16300858, 39.91558638]}, "Year Opened": "1924", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "900 W OREGON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8260", "Fax Number": "215-400-8261", "Website": "https://fell.philasd.org/", "School Leader Name": "MR OMAHR ASHE", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2210", "name": "Bache-Martin School", "sort_name": "Bache-Martin School", "abbr_name": "Bache-Martin", "geom": {"type": "Point", "coordinates": [-75.17384692, 39.96967782]}, "Year Opened": "1906", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2201 BROWN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7550", "Fax Number": "215-400-7551", "Website": "https://bachemartin.philasd.org/", "School Leader Name": "MR MARK VITVITSKY", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2240", "name": "F. Amedee Bregy School", "sort_name": "Bregy, F. Amedee School", "abbr_name": "Bregy", "geom": {"type": "Point", "coordinates": [-75.176674, 39.914699]}, "Year Opened": "1923", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "1700 BIGLER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-400-8210", "Fax Number": "215-400-8211", "Website": "https://bregy.philasd.org/", "School Leader Name": "MS RACHEL MARIANNO", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2260", "name": "George W. Childs School", "sort_name": "Childs, George W. School", "abbr_name": "Childs", "geom": {"type": "Point", "coordinates": [-75.170493, 39.934637]}, "Year Opened": "1927", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "1599 WHARTON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "215-400-7950", "Fax Number": "215-400-7951", "Website": "https://childs.philasd.org/", "School Leader Name": "MR GORDON LAURIE", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2290", "name": "Franklin Learning Center", "sort_name": "Franklin Learning Center (FLC)", "abbr_name": "FLC", "geom": {"type": "Point", "coordinates": [-75.162753, 39.965049]}, "Year Opened": "1978", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "616 N 15TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7570", "Fax Number": "215-400-7571", "Website": "https://flc.philasd.org/", "School Leader Name": "MS NICOLE LEE", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2310", "name": "Camelot Academy", "sort_name": "Achieve Academy", "abbr_name": "Camelot", "geom": {"type": "Point", "coordinates": [-75.177658, 39.978134]}, "Year Opened": "2004", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Camelot Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "AEDY", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1435 N 26TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-684-5080", "Fax Number": "215-684-8961", "Website": "http://cameloteducation.org/our-schools/transitional-schools/camelot-academy-of-philadelphia", "School Leader Name": "MR ALPHONSO EVANS", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2320", "name": "Stephen Girard School", "sort_name": "Girard, Stephen School", "abbr_name": "Girard", "geom": {"type": "Point", "coordinates": [-75.176611, 39.925059]}, "Year Opened": "1959", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "1800 SNYDER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-400-8180", "Fax Number": "215-400-8181", "Website": "https://girard.philasd.org/", "School Leader Name": "MS LEAH COLEMAN", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2340", "name": "General George A. McCall School", "sort_name": "McCall, General George A. School", "abbr_name": "McCall", "geom": {"type": "Point", "coordinates": [-75.15318, 39.944635]}, "Year Opened": "1909", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "325 S 7TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19106", "Phone Number": "215-400-7840", "Fax Number": "215-400-7841", "Website": "https://mccall.philasd.org/", "School Leader Name": "MRS ANTOINETTE POWELL", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2370", "name": "Delaplaine McDaniel School", "sort_name": "McDaniel, Delaplaine School", "abbr_name": "McDaniel", "geom": {"type": "Point", "coordinates": [-75.181793, 39.929592]}, "Year Opened": "1937", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2020-2021", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "1801 S 22ND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-400-8220", "Fax Number": "215-400-8221", "Website": "https://mcdaniel.philasd.org/", "School Leader Name": "MR AUSTIN WALLACE", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Abebi Deloatch", "FACE Liaison Email": "adeloatch@philasd.org", "FACE Liaison Phone Number": "215-400-8220", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2380", "name": "William M. Meredith School", "sort_name": "Meredith, William M. School", "abbr_name": "Meredith", "geom": {"type": "Point", "coordinates": [-75.15113339, 39.93974936]}, "Year Opened": "1931", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "725 S 5TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-7990", "Fax Number": "215-400-7991", "Website": "https://meredith.philasd.org/", "School Leader Name": "MR BRIAN WALLACE", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2390", "name": "Robert Morris School", "sort_name": "Morris, Robert School", "abbr_name": "Morris", "geom": {"type": "Point", "coordinates": [-75.17866, 39.975439]}, "Year Opened": "1964", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2600 W THOMPSON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7320", "Fax Number": "215-400-7321", "Website": "https://morris.philasd.org/", "School Leader Name": "MS TAMERON DANCY", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2410", "name": "Girard Academic Music Program", "sort_name": "Girard Academic Music Program (GAMP)", "abbr_name": "GAMP", "geom": {"type": "Point", "coordinates": [-75.18256439, 39.92210463]}, "Year Opened": "1914", "School Level": "Middle-High", "Admission Type": "Special Admit", "Current Grade Span Served": "05-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2136 W RITNER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-400-8230", "Fax Number": "215-400-8231", "Website": "https://gamp.philasd.org/", "School Leader Name": "MS JOVAN MOORE", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2450", "name": "Edwin M. Stanton School", "sort_name": "Stanton, Edwin M. School", "abbr_name": "Stanton", "geom": {"type": "Point", "coordinates": [-75.171017, 39.940503]}, "Year Opened": "1926", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "901 S. 17TH ST.", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "215-400-7960", "Fax Number": "215-400-7961", "Website": "https://emstanton.philasd.org/", "School Leader Name": "MRS STACEY BURNLEY", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2470", "name": "Albert M. Greenfield School", "sort_name": "Greenfield, Albert M. School", "abbr_name": "Greenfield", "geom": {"type": "Point", "coordinates": [-75.17739206, 39.95227234]}, "Year Opened": "1970", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2200 CHESTNUT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19103", "Phone Number": "215-400-7810", "Fax Number": "215-400-7811", "Website": "https://greenfield.philasd.org/", "School Leader Name": "MR DANIEL LAZAR", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2480", "name": "Chester A. Arthur School", "sort_name": "Arthur, Chester A. School", "abbr_name": "Arthur", "geom": {"type": "Point", "coordinates": [-75.17569882, 39.94190083]}, "Year Opened": "1964", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2000 CATHARINE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "215-400-7940", "Fax Number": "215-400-7941", "Website": "https://arthur.philasd.org/", "School Leader Name": "DR MARY LIBBY", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2490", "name": "Laura W. Waring School", "sort_name": "Waring, Laura W. School", "abbr_name": "Waring", "geom": {"type": "Point", "coordinates": [-75.1677006, 39.96491939]}, "Year Opened": "1956", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1801 GREEN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7560", "Fax Number": "215-400-7561", "Website": "https://waring.philasd.org/", "School Leader Name": "MS AMANDA STRAIN", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2510", "name": "Fanny Jackson Coppin School", "sort_name": "Jackson Coppin, Fanny School", "abbr_name": "Jackson Coppin", "geom": {"type": "Point", "coordinates": [-75.163481, 39.934623]}, "Year Opened": "1925", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1213 S 12TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-7970", "Fax Number": "215-400-7971", "Website": "https://jackson.philasd.org/", "School Leader Name": "MS KELLY ESPINOSA", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2520", "name": "Abram S. Jenks School", "sort_name": "Jenks, Abram S. School", "abbr_name": "Jenks, A.S", "geom": {"type": "Point", "coordinates": [-75.168367, 39.918773]}, "Year Opened": "1897", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2501 S 13TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8240", "Fax Number": "215-400-8241", "Website": "https://asjenks.philasd.org/", "School Leader Name": "MS SIOUDA DOUGLAS", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2530", "name": "Phila. Juv. Justice Services Ctr.", "sort_name": "Philadelphia Juvenile Justice Services Center", "abbr_name": "PJJSCS", "geom": {"type": "Point", "coordinates": [-75.21572624, 39.96136565]}, "Year Opened": "2012", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Justice", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "91 N 48TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-683-3495", "Fax Number": "215-471-2787", "Website": "https://pjjsc.philasd.org/", "School Leader Name": "MS DEANA RAMSEY", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2540", "name": "Francis S. Key School", "sort_name": "Key, Francis S. School", "abbr_name": "Key", "geom": {"type": "Point", "coordinates": [-75.1601961, 39.9213857]}, "Year Opened": "1889", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2230 S 8TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8250", "Fax Number": "215-400-8251", "Website": "https://key.philasd.org/", "School Leader Name": "MS PAULINE CHEUNG", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2580", "name": "Eliza B. Kirkbride School", "sort_name": "Kirkbride, Eliza B. School", "abbr_name": "Kirkbride", "geom": {"type": "Point", "coordinates": [-75.156466, 39.93002]}, "Year Opened": "1926", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1501 S 7TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-7980", "Fax Number": "215-400-7981", "Website": "https://kirkbride.philasd.org/", "School Leader Name": "MS REBECCA JULIEN", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2590", "name": "George W. Nebinger School", "sort_name": "Nebinger, George W. School", "abbr_name": "Nebinger", "geom": {"type": "Point", "coordinates": [-75.15383, 39.936694]}, "Year Opened": "1925", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "601 CARPENTER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-8110", "Fax Number": "215-400-8111", "Website": "https://nebinger.philasd.org/", "School Leader Name": "MS AYANA TOWNSEND", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2620", "name": "Academy at Palumbo", "sort_name": "Academy at Palumbo", "abbr_name": "Palumbo", "geom": {"type": "Point", "coordinates": [-75.16194915, 39.94019787]}, "Year Opened": "2006", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "1100 CATHARINE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-8130", "Fax Number": "215-400-8131", "Website": "https://palumbo.philasd.org/", "School Leader Name": "MS KIANA THOMPSON", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2630", "name": "George W. Sharswood School", "sort_name": "Sharswood, George W. School", "abbr_name": "Sharswood", "geom": {"type": "Point", "coordinates": [-75.15055053, 39.91935714]}, "Year Opened": "1906", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2300 S 2ND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8270", "Fax Number": "215-400-8271", "Website": "https://sharswood.philasd.org/", "School Leader Name": "MS LEIGH MCLINDEN", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2640", "name": "Southwark School", "sort_name": "Southwark School", "abbr_name": "Southwark", "geom": {"type": "Point", "coordinates": [-75.16053168, 39.92637775]}, "Year Opened": "1905", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1835 S 9TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8280", "Fax Number": "215-400-8281", "Website": "https://southwark.philasd.org/", "School Leader Name": "MR ANDREW LUKOV", "Learning Network": "Network 10", "Assistant Superintendent": "ARIEL LAJARA", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2650", "name": "Science Leadership Academy", "sort_name": "Science Leadership Academy (SLA)", "abbr_name": "SLA", "geom": {"type": "Point", "coordinates": [-75.162516, 39.963701]}, "Year Opened": "2006", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "550 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-7830", "Fax Number": "215-400-7831", "Website": "https://sla.philasd.org/", "School Leader Name": "MR CHRISTOPHER LEHMANN", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2670", "name": "Constitution High School", "sort_name": "Constitution High School", "abbr_name": "Constitution", "geom": {"type": "Point", "coordinates": [-75.152336, 39.950252]}, "Year Opened": "2006", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "18 S 7TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19106", "Phone Number": "215-400-7850", "Fax Number": "215-400-7851", "Website": "https://constitutionhs.philasd.org/", "School Leader Name": "MS BRIANNA DUNN", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2680", "name": "The Science Leadership Academy at Beeber", "sort_name": "Science Leadership Academy (SLA) at Beeber", "abbr_name": "SLA at Beeber", "geom": {"type": "Point", "coordinates": [-75.24192008, 39.98610221]}, "Year Opened": "2014", "School Level": "Middle-High", "Admission Type": "Special Admit", "Current Grade Span Served": "05-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "5925 MALVERN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-400-7270", "Fax Number": "215-400-7271", "Website": "https://slabeeber.philasd.org/", "School Leader Name": "MR CHRISTOPHER JOHNSON", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "2690", "name": "John H. Taggart School", "sort_name": "Taggart, John H. School", "abbr_name": "Taggart", "geom": {"type": "Point", "coordinates": [-75.15452237, 39.91721223]}, "Year Opened": "1917", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "400 W PORTER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8290", "Fax Number": "215-400-8291", "Website": "https://taggart.philasd.org/", "School Leader Name": "MRS STEPHANIE MCKENNA", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "2720", "name": "Vare-Washington School", "sort_name": "Vare-Washington School", "abbr_name": "Vare-Washington", "geom": {"type": "Point", "coordinates": [-75.15252649, 39.93427949]}, "Year Opened": "1903", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1198 S 5TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-400-8120", "Fax Number": "215-400-8121", "Website": "https://vare.philasd.org/", "School Leader Name": "MS ALISON BARNES", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3040", "name": "Excel Middle Years Academy", "sort_name": "Excel Middle Years Academy", "abbr_name": "Excel Middle", "geom": {"type": "Point", "coordinates": [-75.18402464, 39.99074371]}, "Year Opened": "2017", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Camelot Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Continuation", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "4300 WESTMINSTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-436-0307", "Fax Number": "", "Website": "https://sesischools.com/locations/excel-middle-years-academy/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3190", "name": "Crossroads at Hunting Park", "sort_name": "Crossroads at Hunting Park", "abbr_name": "Crossroads @HP", "geom": {"type": "Point", "coordinates": [-75.12599679, 40.01425525]}, "Year Opened": "2011", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "03-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Transition/Intervention", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4224 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-9060", "Fax Number": "215-400-9061", "Website": "https://philasd.org/crossroads-huntingpark", "School Leader Name": "MR JAMAL DENNIS", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3210", "name": "Ben Franklin High School EOP", "sort_name": "Franklin, Benjamin High School - EOP", "abbr_name": "Franklin EOP", "geom": {"type": "Point", "coordinates": [-75.15921, 39.962909]}, "Year Opened": "2012", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "EOP", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "540 N 13TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-400-7600", "Fax Number": "", "Website": "https://www.philasd.org/opportunitynetwork/benjamin-franklin-high-school-eop/", "School Leader Name": "MS HOPE WORTHY", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3240", "name": "Liguori Academy-Fortis", "sort_name": "Liguori Academy-Fortis", "abbr_name": "Liguori Fortis", "geom": {"type": "Point", "coordinates": [-75.111842, 39.994204]}, "Year Opened": "2017", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Ligouri INC", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2332 E LEHIGH AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-291-4700", "Fax Number": "215-291-5833", "Website": "https://www.liguoriacademy.org/fortis-program", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3290", "name": "Excel Academy South", "sort_name": "Excel Academy South", "abbr_name": "Excel South", "geom": {"type": "Point", "coordinates": [-75.10251944, 40.02608143]}, "Year Opened": "2008", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Camelot Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4641 ROOSEVELT BLVD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-904-6254", "Fax Number": "215-904-6282", "Website": "http://cameloteducation.org/our-schools/accelerated-schools/excel-academy-south", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3301", "name": "Community Academy of Philadelphia Charter School", "sort_name": "Community Academy of Philadelphia Charter School", "abbr_name": "Community Academy", "geom": {"type": "Point", "coordinates": [-75.10735613, 40.00538049]}, "Year Opened": "1997", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "1100 E ERIE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-533-6700", "Fax Number": "215-533-6722", "Website": "https://www.communityacademy.org", "School Leader Name": "DR. ALBERTA O'BRIEN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3302", "name": "Harambee Institute of Science and Technology Charter School", "sort_name": "Harambee Institute of Science and Technology Charter School", "abbr_name": "Harambee", "geom": {"type": "Point", "coordinates": [-75.25171974, 39.97309111]}, "Year Opened": "1997", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "640 N 66TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-472-8770", "Fax Number": "215-472-9611", "Website": "https://histcs.org", "School Leader Name": "GREGORY SHANNON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3304", "name": "YouthBuild Philadelphia Charter School", "sort_name": "YouthBuild Philadelphia Charter School", "abbr_name": "Youthbuild", "geom": {"type": "Point", "coordinates": [-75.15863287, 39.97290649]}, "Year Opened": "1997", "School Level": "High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "1231 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "", "Fax Number": "", "Website": "https://www.youthbuildphilly.org", "School Leader Name": "SCOTT EMERICK", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "1"}, {"sdp_id": "3306", "name": "Christopher Columbus Charter School", "sort_name": "Christopher Columbus Charter School", "abbr_name": "Christopher Columbus", "geom": {"type": "Point", "coordinates": [-75.15824752, 39.93894574]}, "Year Opened": "1999", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "1", "Street Address": "916 CHRISTIAN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19147", "Phone Number": "215-925-7400", "Fax Number": "215-925-6851", "Website": "https://www.columbuscharter.org/", "School Leader Name": "ANTHONY ELIA", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3307", "name": "Eugenio Maria De Hostos Charter School", "sort_name": "Eugenio Maria De Hostos Charter School", "abbr_name": "De Hostos", "geom": {"type": "Point", "coordinates": [-75.12324994, 40.04655012]}, "Year Opened": "1998", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "ASPIRA", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "0", "Street Address": "6301 N 2ND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-455-2300", "Fax Number": "215-455-6312", "Website": "https://hostoscharter.org/", "School Leader Name": "ALBERTO VARGAS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3308", "name": "Inquiry Charter School", "sort_name": "Inquiry Charter School", "abbr_name": "Inquiry", "geom": {"type": "Point", "coordinates": [-75.21252924, 39.97475234]}, "Year Opened": "1998", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-05", "Grade Span at Scale": "00-08", "Phasing-In": "1", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Belmont Charter Network", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "1301 BELMONT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-386-5768", "Fax Number": "215-386-5769", "Website": "https://www.belmontcharternetwork.org/ics/", "School Leader Name": "CLAIRE COHEN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3309", "name": "Imhotep Institute Charter High School", "sort_name": "Imhotep Institute Charter High School", "abbr_name": "Imhotep", "geom": {"type": "Point", "coordinates": [-75.154717, 40.049427]}, "Year Opened": "1998", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "6201 N 21ST ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-438-4140", "Fax Number": "", "Website": "https://www.imhotephighschool.com", "School Leader Name": "JURY SEGERS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3310", "name": "Laboratory Charter School of Communication and Languages", "sort_name": "Laboratory Charter School of Communication and Languages", "abbr_name": "Laboratory", "geom": {"type": "Point", "coordinates": [-75.145662, 40.001404]}, "Year Opened": "1998", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "1", "Street Address": "926 W SEDGLEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-574-1680", "Fax Number": "", "Website": "https://www.thelaboratorycharterschool.com", "School Leader Name": "KAREN NEWSOME", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3312", "name": "Multicultural Academy Charter School", "sort_name": "Multicultural Academy Charter School", "abbr_name": "Multicultural Academy", "geom": {"type": "Point", "coordinates": [-75.15073123, 40.01112725]}, "Year Opened": "1998", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "3821 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-457-6666", "Fax Number": "", "Website": "https://www.macs.k12.pa.us", "School Leader Name": "SCOTT WALSH", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3313", "name": "Preparatory Charter School of Mathematics, Science, Technology and Careers", "sort_name": "Preparatory Charter School of Mathematics, Science, Technology and Careers", "abbr_name": "Preparatory Charter", "geom": {"type": "Point", "coordinates": [-75.18665686, 39.92845355]}, "Year Opened": "1998", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "1928 POINT BREEZE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-334-6144", "Fax Number": "", "Website": "https://prepchs.org", "School Leader Name": "JO ANN MOORE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3314", "name": "West Oak Lane Charter School", "sort_name": "West Oak Lane Charter School", "abbr_name": "West Oak Lane", "geom": {"type": "Point", "coordinates": [-75.16363798, 40.05936358]}, "Year Opened": "1998", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "0", "Street Address": "7115 STENTON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-927-7995", "Fax Number": "", "Website": "https://www.wolcs.org", "School Leader Name": "CHARLETTA ZEIGLER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3315", "name": "Alliance For Progress Charter School", "sort_name": "Alliance For Progress Charter School", "abbr_name": "Alliance for Progress", "geom": {"type": "Point", "coordinates": [-75.165471, 39.979731]}, "Year Opened": "1998", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "1", "Street Address": "1722 CECIL B MOORE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-232-4892", "Fax Number": "215-232-4893", "Website": "http://www.afpcs.org", "School Leader Name": "GREGORY WRIGHT", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3318", "name": "Freire Charter School", "sort_name": "Freire Charter School", "abbr_name": "Freire", "geom": {"type": "Point", "coordinates": [-75.17442259, 39.95247289]}, "Year Opened": "1999", "School Level": "Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "05-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "1", "Street Address": "2027 CHESTNUT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19103", "Phone Number": "215-557-8555", "Fax Number": "215-557-9051", "Website": "https://www.freirecharterschool.org", "School Leader Name": "CHRISTOPHER MOORE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3321", "name": "Math, Civics and Sciences Charter School", "sort_name": "The Mathematics Civics and Sciences Charter School", "abbr_name": "Math Civics and Sciences", "geom": {"type": "Point", "coordinates": [-75.16097, 39.961301]}, "Year Opened": "1999", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "01-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "447 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-923-4880", "Fax Number": "", "Website": "https://www.mcscs.org", "School Leader Name": "ANDRE GLENN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3322", "name": "Philadelphia Academy Charter School", "sort_name": "Philadelphia Academy Charter School", "abbr_name": "Philadelphia Academy", "geom": {"type": "Point", "coordinates": [-75.01109307, 40.10358436]}, "Year Opened": "1999", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "1", "Street Address": "11000 ROOSEVELT BLVD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19116", "Phone Number": "215-676-8320", "Fax Number": "", "Website": "https://www.philadelphiaacademy.org", "School Leader Name": "MEGAN SIMMONS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3323", "name": "Mastery Charter School at Hardy Williams", "sort_name": "Hardy Williams Academy Charter School", "abbr_name": "Mastery Hardy Williams", "geom": {"type": "Point", "coordinates": [-75.226447, 39.941562]}, "Year Opened": "1999", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "5400 WARRINGTON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-724-2343", "Fax Number": "", "Website": "https://www.masterycharter.org/hardyhigh", "School Leader Name": "NAEEMAH SEWARD", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3326", "name": "Universal Institute Charter School", "sort_name": "Universal Institute Charter School", "abbr_name": "Universal Institute", "geom": {"type": "Point", "coordinates": [-75.16794, 39.940931]}, "Year Opened": "1999", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "801 S 15TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "215-732-2876", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-institute/", "School Leader Name": "JEFFERY WILLIAMS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3328", "name": "Mathematics, Science, and Technology Community Charter School (MaST)", "sort_name": "Mathematics, Science, and Technology (MaST) Community Charter School", "abbr_name": "MaST", "geom": {"type": "Point", "coordinates": [-75.005658, 40.113832]}, "Year Opened": "1999", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "0", "Street Address": "1800 BYBERRY RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19116", "Phone Number": "267-348-1100", "Fax Number": "", "Website": "https://www.mastccs.org", "School Leader Name": "PHYLLIS SANTIAGO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3329", "name": "Young Scholars Charter School", "sort_name": "Young Scholars Charter School", "abbr_name": "Young Scholars", "geom": {"type": "Point", "coordinates": [-75.14799661, 39.96734659]}, "Year Opened": "1999", "School Level": "Middle", "Admission Type": "Citywide", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Scholar Academies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "900 N MARSHALL ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-232-9727", "Fax Number": "", "Website": "https://www.phillyscholars.org", "School Leader Name": "BETH BIRNKRANT", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3331", "name": "Franklin Towne Charter High School", "sort_name": "Franklin Towne Charter High School", "abbr_name": "Franklin Towne High School", "geom": {"type": "Point", "coordinates": [-75.066611, 40.007337]}, "Year Opened": "2000", "School Level": "High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "0", "Street Address": "5301 TACONY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19137", "Phone Number": "215-289-5000", "Fax Number": "215-535-8910", "Website": "https://hs.franklintowne.org", "School Leader Name": "JOSEPH VENDITTI", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3332", "name": "Mariana Bracetti Academy Charter School", "sort_name": "Mariana Bracetti Academy Charter School", "abbr_name": "Bracetti, Mariana", "geom": {"type": "Point", "coordinates": [-75.094146, 40.005757]}, "Year Opened": "2000", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "1840 TORRESDALE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-291-4436", "Fax Number": "", "Website": "https://www.mbacs.org", "School Leader Name": "JANA SOMMA", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3333", "name": "Esperanza Academy Charter School", "sort_name": "Esperanza Academy Charter School", "abbr_name": "Esperanza Academy", "geom": {"type": "Point", "coordinates": [-75.13232396, 40.01478539]}, "Year Opened": "2000", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "05-12", "Grade Span at Scale": "00-12", "Phasing-In": "1", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "1", "Street Address": "301 W HUNTING PARK AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-457-3667", "Fax Number": "", "Website": "https://esperanzaacademycs.org", "School Leader Name": "JORGE CALIXTO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3334", "name": "New Foundations Charter School", "sort_name": "New Foundations Charter School", "abbr_name": "New Foundations", "geom": {"type": "Point", "coordinates": [-75.024187, 40.03507]}, "Year Opened": "2000", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "1", "Street Address": "8001 TORRESDALE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-624-8100", "Fax Number": "", "Website": "https://www.nfcsonline.org", "School Leader Name": "NICOLE UNEGBU", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3335", "name": "People for People Charter School", "sort_name": "People for People Charter School", "abbr_name": "People for People", "geom": {"type": "Point", "coordinates": [-75.16067477, 39.96810141]}, "Year Opened": "2001", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "00-08", "Phasing-In": "0", "Phasing-Out": "1", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "800 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-763-7060", "Fax Number": "", "Website": "https://www.pfpcs.org", "School Leader Name": "COREY DWYER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3336", "name": "Philadelphia Performing Arts: A String Theory Charter School", "sort_name": "Philadelphia Performing Arts Charter School", "abbr_name": "Philadelphia Performing Arts", "geom": {"type": "Point", "coordinates": [-75.17166577, 39.91777662]}, "Year Opened": "2000", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "1", "Street Address": "2600 S BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "215-551-4000", "Fax Number": "", "Website": "https://www.stringtheoryschools.org", "School Leader Name": "ANGELA PULEIO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3337", "name": "Global Leadership Academy Charter School", "sort_name": "Global Leadership Academy Charter School", "abbr_name": "Global Leadership", "geom": {"type": "Point", "coordinates": [-75.2154352, 39.97335953]}, "Year Opened": "2000", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "4601 W GIRARD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-477-6672", "Fax Number": "215-477-6674", "Website": "https://glacharter.org/gawest", "School Leader Name": "SHOSHANA TYLER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3341", "name": "Independence Charter School", "sort_name": "Independence Charter School", "abbr_name": "Independence", "geom": {"type": "Point", "coordinates": [-75.16855598, 39.94496682]}, "Year Opened": "2001", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "1600 LOMBARD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "215-238-8000", "Fax Number": "215-545-2924", "Website": "https://www.independencecharter.org", "School Leader Name": "KRISTEN LONG", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3353", "name": "KIPP DuBois Charter School", "sort_name": "KIPP DuBois Charter School", "abbr_name": "KIPP DuBois", "geom": {"type": "Point", "coordinates": [-75.22085032, 39.98043019]}, "Year Opened": "2015", "School Level": "High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "KIPP", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "5070 PARKSIDE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "", "Fax Number": "", "Website": "https://kippphiladelphia.org/our-schools/kipp-dubois-collegiate-academy", "School Leader Name": "MELISSA POORMAN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3357", "name": "West Philadelphia Achievement Charter School", "sort_name": "West Philadelphia Achievement Charter School", "abbr_name": "West Philadelphia Achievement", "geom": {"type": "Point", "coordinates": [-75.254111, 39.970667]}, "Year Opened": "2002", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "6701 CALLOWHILL ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-476-6471", "Fax Number": "215-476-6481", "Website": "https://www.wpaces.org", "School Leader Name": "LATOYA JOHNSON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3358", "name": "Philadelphia Electrical and Technology Charter School", "sort_name": "Philadelphia Electrical and Technology Charter School", "abbr_name": "PE&T", "geom": {"type": "Point", "coordinates": [-75.1681729, 39.9566589]}, "Year Opened": "2002", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "1709 BENJAMIN FRANKLIN PKWY", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19103", "Phone Number": "267-514-1823", "Fax Number": "", "Website": "https://www.petchs.org", "School Leader Name": "ERIN DOUGHERTY", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3359", "name": "Richard Allen Preparatory Charter School", "sort_name": "Richard Allen Preparatory Charter School", "abbr_name": "Allen, Richard", "geom": {"type": "Point", "coordinates": [-75.21926743, 39.92809187]}, "Year Opened": "2001", "School Level": "Middle", "Admission Type": "Citywide", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "2601 S 58TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-878-5144", "Fax Number": "", "Website": "https://www.rapcs.org", "School Leader Name": "LAWRENCE JONES", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3360", "name": "Russell Byers Charter School", "sort_name": "Russell Byers Charter School", "abbr_name": "Byers, Russell", "geom": {"type": "Point", "coordinates": [-75.17155064, 39.95594922]}, "Year Opened": "2001", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "1911 ARCH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19103", "Phone Number": "215-972-1700", "Fax Number": "", "Website": "https://www.byerschool.org", "School Leader Name": "KELLIE PORTER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3361", "name": "Mastery Charter School at Lenfest", "sort_name": "Mastery Charter High School", "abbr_name": "Mastery Lenfest", "geom": {"type": "Point", "coordinates": [-75.14734776, 39.94950579]}, "Year Opened": "2001", "School Level": "Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "07-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "35 S 4TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19106", "Phone Number": "215-922-1902", "Fax Number": "215-922-1903", "Website": "https://masterycharter.org/secondary-schools/lenfest-campus", "School Leader Name": "CHRISTOPHER ZIEMBA", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3362", "name": "Wissahickon Charter School", "sort_name": "Wissahickon Charter School", "abbr_name": "Wissahickon", "geom": {"type": "Point", "coordinates": [-75.17405347, 40.01537246]}, "Year Opened": "2002", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "1", "Street Address": "4700 WISSAHICKON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "267-338-1020", "Fax Number": "", "Website": "http://www.wissahickoncharter.org", "School Leader Name": "KRISTI LITTELL", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3364", "name": "First Philadelphia Preparatory Charter School", "sort_name": "First Philadelphia Preparatory Charter School", "abbr_name": "First Philadelphia", "geom": {"type": "Point", "coordinates": [-75.08240619, 40.00719991]}, "Year Opened": "2002", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "American Paradigm", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "1", "Street Address": "4300 TACONY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-743-3100", "Fax Number": "215-743-9877", "Website": "https://www.ap-schools.org/First-Phila-Prep/", "School Leader Name": "DR. MAX KLINK", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3365", "name": "Green Woods Charter School", "sort_name": "Green Woods Charter School", "abbr_name": "Green Woods", "geom": {"type": "Point", "coordinates": [-75.23385852, 40.04416378]}, "Year Opened": "2002", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "468 DOMINO LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-482-6337", "Fax Number": "215-482-9135", "Website": "https://www.greenwoodscharter.org", "School Leader Name": "DEBI DURSO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3366", "name": "Maritime Academy Charter School (MACHS)", "sort_name": "Maritime Academy Charter School", "abbr_name": "Maritime", "geom": {"type": "Point", "coordinates": [-75.068318, 40.007862]}, "Year Opened": "2003", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "01-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "1", "Street Address": "2275 BRIDGE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19137", "Phone Number": "215-535-4555", "Fax Number": "215-387-7021", "Website": "https://www.maritimecharter.org", "School Leader Name": "LUCY FERIA", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3368", "name": "Belmont Charter School", "sort_name": "Belmont Elementary Charter School", "abbr_name": "Belmont", "geom": {"type": "Point", "coordinates": [-75.20487093, 39.96696484]}, "Year Opened": "2005", "School Level": "Elementary-Middle-High", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Belmont Charter Network", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "1", "Street Address": "4030 BROWN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-823-8208", "Fax Number": "215-823-8209", "Website": "https://www.belmontcharternetwork.org/bcs", "School Leader Name": "KRISTEN NEWMUIS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3370", "name": "KIPP Philadelphia Charter School", "sort_name": "KIPP Philadelphia Charter School", "abbr_name": "KIPP Philadelphia", "geom": {"type": "Point", "coordinates": [-75.158039, 39.992038]}, "Year Opened": "2003", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "KIPP", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "1", "Street Address": "3001 N 27TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-227-1728", "Fax Number": "", "Website": "https://kippphiladelphia.org/our-schools/kipp-philadelphia-preparatory-academy", "School Leader Name": "MARC MANNELLA", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3372", "name": "Discovery Charter School", "sort_name": "The Jacquelyn Y. Kelley Discovery Charter School", "abbr_name": "Discovery", "geom": {"type": "Point", "coordinates": [-75.21350485, 39.97770823]}, "Year Opened": "2003", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "4700 PARKSIDE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-879-8182", "Fax Number": "215-879-9510", "Website": "https://www.jykdiscoverycharterschool.com/", "School Leader Name": "MARIA SNIPE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3378", "name": "Philadelphia Montessori Charter School", "sort_name": "Philadelphia Montessori Charter School", "abbr_name": "Philadelphia Montessori", "geom": {"type": "Point", "coordinates": [-75.24515327, 39.91656437]}, "Year Opened": "2004", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "2227 ISLAND RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-365-4011", "Fax Number": "", "Website": "https://www.philadelphiamontessori.org", "School Leader Name": "EARL SISSELL", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3379", "name": "Ad Prima Charter School", "sort_name": "Ad Prima Charter School", "abbr_name": "Ad Prima", "geom": {"type": "Point", "coordinates": [-75.24786, 39.984296]}, "Year Opened": "2004", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "1", "Street Address": "1922 N 63RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "267-403-2672", "Fax Number": "610-660-8416", "Website": "https://www.adprimacharterschools.org", "School Leader Name": "NIYA BLACKWELL", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3383", "name": "Mastery Charter School at Shoemaker", "sort_name": "Mastery Charter School - Shoemaker Campus", "abbr_name": "Mastery Shoemaker", "geom": {"type": "Point", "coordinates": [-75.228437, 39.975799]}, "Year Opened": "2006", "School Level": "Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "07-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "5301 MEDIA ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "267-296-7111", "Fax Number": "267-296-7112", "Website": "https://masterycharter.org/secondary-schools/shoemaker-campus", "School Leader Name": "MEAGHANN LAWSON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3384", "name": "Folk Arts-Cultural Treasures Charter School", "sort_name": "Folk Arts-Cultural Treasures Charter School (FACTS)", "abbr_name": "FACTS", "geom": {"type": "Point", "coordinates": [-75.15551365, 39.95885103]}, "Year Opened": "2005", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "1023 CALLOWHILL ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-569-2600", "Fax Number": "215-569-3985", "Website": "https://www.factschool.org", "School Leader Name": "ELYSSA YUEN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3385", "name": "Mastery Charter School at Thomas Campus", "sort_name": "Mastery Charter School - Thomas Campus", "abbr_name": "Mastery Thomas", "geom": {"type": "Point", "coordinates": [-75.16358831, 39.91454096]}, "Year Opened": "2005", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "1", "Street Address": "927 JOHNSTON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "267-236-0036", "Fax Number": "267-236-0030", "Website": "https://masterycharter.org/elementary-schools/thomas", "School Leader Name": "EMILY MYERS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3386", "name": "Northwood Academy Charter School", "sort_name": "Northwood Academy Charter School", "abbr_name": "Northwood", "geom": {"type": "Point", "coordinates": [-75.09523811, 40.02015006]}, "Year Opened": "2005", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "4621 CASTOR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-289-5606", "Fax Number": "215-289-5464", "Website": "https://www.northwoodcs.org", "School Leader Name": "CINDY CAREY", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3388", "name": "Boys Latin of Philadelphia Charter School", "sort_name": "Boys' Latin of Philadelphia Charter School", "abbr_name": "Boys Latin", "geom": {"type": "Point", "coordinates": [-75.23374851, 39.95172558]}, "Year Opened": "2007", "School Level": "Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "1", "Street Address": "5501 CEDAR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-387-5149", "Fax Number": "215-387-5159", "Website": "https://www.boyslatin.org", "School Leader Name": "EROS UTHMAN-OLUKOKUN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3389", "name": "Keystone Academy Charter School", "sort_name": "Keystone Academy Charter School", "abbr_name": "Keystone Academy", "geom": {"type": "Point", "coordinates": [-75.045089, 40.021916]}, "Year Opened": "2007", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "0", "Street Address": "4521 LONGSHORE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19135", "Phone Number": "215-332-2111", "Fax Number": "", "Website": "http://www.keystoneacademycs.org", "School Leader Name": "DR. KATHRYN MAKAR", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3392", "name": "Southwest Leadership Academy Charter School", "sort_name": "Southwest Leadership Academy Charter School", "abbr_name": "Southwest Leadership", "geom": {"type": "Point", "coordinates": [-75.2426, 39.918099]}, "Year Opened": "2007", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "7101 PASCHALL AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-729-1939", "Fax Number": "", "Website": "https://slacs-phila.org/", "School Leader Name": "LEIGH PURNELL", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3393", "name": "Mastery Charter School at Pickett", "sort_name": "Mastery Charter School - Pickett Campus", "abbr_name": "Mastery Pickett", "geom": {"type": "Point", "coordinates": [-75.18087124, 40.03187441]}, "Year Opened": "2007", "School Level": "Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "5700 WAYNE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "215-866-9000", "Fax Number": "", "Website": "https://masterycharter.org/secondary-schools/pickett-campus", "School Leader Name": "MARGAUX MUNNELLY", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3394", "name": "Pan American Academy Charter School", "sort_name": "Pan American Academy Charter School", "abbr_name": "Pan American", "geom": {"type": "Point", "coordinates": [-75.13614883, 39.99428061]}, "Year Opened": "2008", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Congreso", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "2830 N AMERICAN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-425-1212", "Fax Number": "", "Website": "https://www.panamcs.org/", "School Leader Name": "YOLANDA COOPER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3395", "name": "Antonia Pantoja Charter School", "sort_name": "Antonia Pantoja Charter School", "abbr_name": "Pantoja, Antonia", "geom": {"type": "Point", "coordinates": [-75.13136564, 40.01300525]}, "Year Opened": "2008", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "ASPIRA", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "4101 N AMERICAN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "", "Fax Number": "", "Website": "https://pantojacharter.org/", "School Leader Name": "SANDRA GONZALEZ", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3399", "name": "Sankofa Freedom Academy Charter School", "sort_name": "Sankofa Freedom Academy Charter School", "abbr_name": "Sankofa", "geom": {"type": "Point", "coordinates": [-75.128641, 39.987082]}, "Year Opened": "2009", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "2501 KENSINGTON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "", "Fax Number": "", "Website": "https://www.sfacs.us", "School Leader Name": "MARIKA MEEKINS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3403", "name": "Franklin Towne Charter Elementary School", "sort_name": "Franklin Towne Charter Elementary School", "abbr_name": "Franklin Towne Elementary", "geom": {"type": "Point", "coordinates": [-75.07472434, 39.99551599]}, "Year Opened": "2009", "School Level": "Elementary-Middle", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "0", "Street Address": "4259 RICHMOND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19137", "Phone Number": "", "Fax Number": "", "Website": "https://es.franklintowne.org", "School Leader Name": "EUGENIA KOO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3404", "name": "Tacony Academy Charter School", "sort_name": "Tacony Academy Charter School", "abbr_name": "Tacony Academy", "geom": {"type": "Point", "coordinates": [-75.06598353, 40.06684222]}, "Year Opened": "2009", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "American Paradigm", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "1", "Street Address": "1330 RHAWN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "", "Fax Number": "", "Website": "https://www.ap-schools.org/Tacony-Academy-Charter/", "School Leader Name": "JESS HARRON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3407", "name": "Mastery Charter School at Harrity", "sort_name": "Mastery Charter School At Harrity Elementary", "abbr_name": "Mastery Harrity", "geom": {"type": "Point", "coordinates": [-75.23548525, 39.94852458]}, "Year Opened": "2010", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "5601 CHRISTIAN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "215-471-2908", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/harrity", "School Leader Name": "ROBERT MILLER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3408", "name": "Mastery Charter School at Mann", "sort_name": "Mastery Charter School Mann Elementary", "abbr_name": "Mastery Mann", "geom": {"type": "Point", "coordinates": [-75.2313266, 39.98590147]}, "Year Opened": "2010", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "5376 W BERKS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-581-5516", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/mann", "School Leader Name": "JANET THOMPSON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3409", "name": "Mastery Charter School at Smedley", "sort_name": "Mastery Charter School Smedley Elementary", "abbr_name": "Mastery Smedley", "geom": {"type": "Point", "coordinates": [-75.073892, 40.019786]}, "Year Opened": "2010", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "1790 BRIDGE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-537-2523", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/smedley", "School Leader Name": "CAITLIN MURPHY", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3410", "name": "Bluford Charter School", "sort_name": "Universal Bluford Charter School", "abbr_name": "Bluford", "geom": {"type": "Point", "coordinates": [-75.23602, 39.973739]}, "Year Opened": "2010", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "5801 MEDIA ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-581-5502", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-bluford/", "School Leader Name": "CRYSTAL GARY-NELSON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3412", "name": "Mastery Charter School at Douglass", "sort_name": "Frederick Douglass Mastery Charter School", "abbr_name": "Mastery Douglass", "geom": {"type": "Point", "coordinates": [-75.16846267, 39.98461532]}, "Year Opened": "2010", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "2118 W NORRIS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-684-5063", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/frederick-douglass", "School Leader Name": "AKEERE SCOTT-MACK", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3415", "name": "Mastery Charter School at Clymer", "sort_name": "Mastery Charter School At Clymer Elementary", "abbr_name": "Mastery Clymer", "geom": {"type": "Point", "coordinates": [-75.15034419, 39.99565934]}, "Year Opened": "2011", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "1201 W RUSH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/clymer", "School Leader Name": "HEATHER SCHEG", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3416", "name": "Mastery Charter School at Gratz", "sort_name": "Mastery Charter School Simon Gratz Campus", "abbr_name": "Mastery Gratz", "geom": {"type": "Point", "coordinates": [-75.15660685, 40.01453965]}, "Year Opened": "2011", "School Level": "Middle-High", "Admission Type": "Neighborhood", "Current Grade Span Served": "07-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "1798 W HUNTING PARK AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/secondary-schools/gratz-prep-middle", "School Leader Name": "LE'YONDO DUNN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3417", "name": "Universal Charter School at Audenried", "sort_name": "Universal Audenried Promise Neighborhood Partnership Charter School", "abbr_name": "Universal Audenried", "geom": {"type": "Point", "coordinates": [-75.19859, 39.933737]}, "Year Opened": "2011", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "3301 TASKER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-audenried/", "School Leader Name": "JOSH ANDERSON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3418", "name": "Universal Charter School at Vare", "sort_name": "Universal Vare Promise Neighborhood Partnership Charter School", "abbr_name": "Universal Vare", "geom": {"type": "Point", "coordinates": [-75.185707, 39.925837]}, "Year Opened": "2011", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "0", "Street Address": "2100 S 24TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19145", "Phone Number": "", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-vare/", "School Leader Name": "KAREN HOWELL-TOOMER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3419", "name": "Lindley Academy Charter at Birney", "sort_name": "General David B. Birney Charter School", "abbr_name": "Lindely Birney", "geom": {"type": "Point", "coordinates": [-75.13883269, 40.02954904]}, "Year Opened": "2011", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "American Paradigm", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2011-2012", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "900 LINDLEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "", "Fax Number": "", "Website": "https://www.ap-schools.org/Lindley-Academy/", "School Leader Name": "", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3420", "name": "Mastery Charter School at Cleveland", "sort_name": "Mastery Charter School Cleveland Elementary", "abbr_name": "Mastery Cleveland", "geom": {"type": "Point", "coordinates": [-75.15908455, 40.01027824]}, "Year Opened": "2012", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2012-2013", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "3701 N 19TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/event/cleveland-back-school-night/", "School Leader Name": "LETISHA LAWS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3421", "name": "Universal Charter School at Creighton", "sort_name": "Universal Creighton Charter School", "abbr_name": "Universal Creighton", "geom": {"type": "Point", "coordinates": [-75.10586492, 40.03404277]}, "Year Opened": "2012", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2012-2013", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "0", "Street Address": "5401 TABOR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-creighton/", "School Leader Name": "WENDY BALDWIN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3422", "name": "The Philadelphia Charter School for Arts and Sciences", "sort_name": "The Philadelphia Charter School For The Arts & Sciences At H.R. Edmunds", "abbr_name": "Edmunds", "geom": {"type": "Point", "coordinates": [-75.08599631, 40.02423246]}, "Year Opened": "2012", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2012-2013", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "0", "Street Address": "1197 HAWORTH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-537-2520", "Fax Number": "", "Website": "https://www.stringtheoryschools.org/edmunds-campus/art-science-landing-page", "School Leader Name": "JUDITH TAGGART", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3423", "name": "Memphis Street Academy Charter School at J.P. Jones", "sort_name": "Memphis Street Academy At J.P. Jones", "abbr_name": "Memphis Street", "geom": {"type": "Point", "coordinates": [-75.11285949, 39.98588986]}, "Year Opened": "2012", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "American Paradigm", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2012-2013", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "0", "Street Address": "2950 MEMPHIS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "", "Fax Number": "", "Website": "https://www.ap-schools.org/Memphis-Street-Academy/", "School Leader Name": "AMANDA HENNIE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3424", "name": "Universal Charter School at Alcorn", "sort_name": "Universal Alcorn Charter School", "abbr_name": "Universal Alcorn", "geom": {"type": "Point", "coordinates": [-75.197771, 39.935499]}, "Year Opened": "2013", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Universal Companies", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2013-2014", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "1", "Street Address": "3200 DICKINSON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19146", "Phone Number": "", "Fax Number": "", "Website": "https://www.universalfamilyofschools.org/universal-alcorn/", "School Leader Name": "AARON STARKE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3426", "name": "Mastery Charter School at Pastorius", "sort_name": "Mastery Charter School Pastorius Elementary", "abbr_name": "Mastery Pastorius", "geom": {"type": "Point", "coordinates": [-75.161424, 40.048208]}, "Year Opened": "2013", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2013-2014", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "5650 SPRAGUE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/pastorius-richardson", "School Leader Name": "ERIC LANGSTON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3427", "name": "Mastery Charter School at Wister", "sort_name": "John Wister Mastery Charter School", "abbr_name": "Mastery Wister", "geom": {"type": "Point", "coordinates": [-75.16672063, 40.03288146]}, "Year Opened": "2016", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "67 E BRINGHURST ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/john-wister", "School Leader Name": "ASHLEY LANGSTON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3428", "name": "Global Leadership Academy at Huey", "sort_name": "Global Leadership Academy Charter School Southwest At Huey", "abbr_name": "Global Leadership at Huey", "geom": {"type": "Point", "coordinates": [-75.22685833, 39.95332691]}, "Year Opened": "2016", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "Renaissance Charter", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "5200 PINE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "", "Fax Number": "", "Website": "https://glacharter.org/southwest", "School Leader Name": "TAMIKA EVANS", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3437", "name": "KIPP North Philadelphia Charter School", "sort_name": "KIPP North Philadelphia Charter School", "abbr_name": "KIPP N Phila Charter", "geom": {"type": "Point", "coordinates": [-75.158212, 39.99193]}, "Year Opened": "2018", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-02", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "KIPP", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "2539 N 16TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "", "Fax Number": "", "Website": "https://kippphiladelphia.org/kipp-north-philadelphia-academy", "School Leader Name": "BEN SPEICHER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3438", "name": "Deep Roots Charter School", "sort_name": "Deep Roots Charter School", "abbr_name": "Deep Roots Charter", "geom": {"type": "Point", "coordinates": [-75.101664, 39.998066]}, "Year Opened": "2018", "School Level": "Elementary", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "0", "Street Address": "3556 FRANKFORD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "", "Fax Number": "", "Website": "https://deeprootscs.org", "School Leader Name": "G. LOGAN BLYLER", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3439", "name": "Mastery Prep Elementary Charter School", "sort_name": "Mastery Prep Elementary Charter School", "abbr_name": "Mastery Prp Elm", "geom": {"type": "Point", "coordinates": [-75.156128, 40.013457]}, "Year Opened": "2018", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-03", "Grade Span at Scale": "00-06", "Phasing-In": "1", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "Mastery Schools", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "0", "Street Address": "1801 W PIKE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "", "Fax Number": "", "Website": "https://masterycharter.org/elementary-schools/mastery-prep", "School Leader Name": "EUGENE HAITH", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3440", "name": "MaST Community Charter School II", "sort_name": "Mathematics, Science and Technology Community Charter School II", "abbr_name": "MaST II", "geom": {"type": "Point", "coordinates": [-75.044372, 40.017476]}, "Year Opened": "2016", "School Level": "Elementary-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-06, 09", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "1", "Street Address": "6501 STATE RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19135", "Phone Number": "", "Fax Number": "", "Website": "https://mast2.org/", "School Leader Name": "CHUCK PUCHON", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3441", "name": "TECH Freire Charter School", "sort_name": "Tech Freire Charter School", "abbr_name": "TECH Freire", "geom": {"type": "Point", "coordinates": [-75.155669, 39.986869]}, "Year Opened": "2016", "School Level": "High", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "0", "Street Address": "2221 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "", "Fax Number": "", "Website": "http://techfreire.org/", "School Leader Name": "CHARLES WARE", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3442", "name": "Independence Charter School West", "sort_name": "Independence West Charter School", "abbr_name": "Independence West", "geom": {"type": "Point", "coordinates": [-75.22614036, 39.93731366]}, "Year Opened": "2016", "School Level": "Elementary", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "0", "Street Address": "5600 CHESTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19143", "Phone Number": "", "Fax Number": "", "Website": "https://www.icswest.org", "School Leader Name": "DANA TWYMAN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3443", "name": "KIPP West Philadelphia Charter School", "sort_name": "KIPP West Philadelphia Charter School", "abbr_name": "KIPP West Elementary", "geom": {"type": "Point", "coordinates": [-75.24184422, 39.94453199]}, "Year Opened": "2016", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "KIPP", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "1", "Street Address": "5070 PARKSIDE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "267-787-5700", "Fax Number": "", "Website": "https://kippphiladelphia.org/our-schools/kipp-west-philadelphia-elementary-academy/", "School Leader Name": "CHESHONNA MILES", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3445", "name": "MAST III Charter School", "sort_name": "MAST Community Charter School III", "abbr_name": "MAST III", "geom": {"type": "Point", "coordinates": [-74.991671, 40.109575]}, "Year Opened": "2019", "School Level": "Elementary", "Admission Type": "Citywide With Criteria", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "0", "Street Address": "1 CROWN WAY", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19154", "Phone Number": "", "Fax Number": "", "Website": "https://mast3.org/", "School Leader Name": "PHIL SERPIELLO", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3446", "name": "Philadelphia Hebrew Public Charter School", "sort_name": "Philadelphia Hebrew Public Charter School", "abbr_name": "Philadelphia Hebrew", "geom": {"type": "Point", "coordinates": [-75.184376, 40.012045]}, "Year Opened": "2019", "School Level": "Elementary", "Admission Type": "Citywide", "Current Grade Span Served": "00-01", "Grade Span at Scale": "00-08", "Phasing-In": "1", "Phasing-Out": "0", "Governance": "Charter", "Management Organization": "District Charter", "School Reporting Category": "Charter Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "0", "Street Address": "3300 HENRY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19129", "Phone Number": "", "Fax Number": "", "Website": "https://philadelphiahebrewpublic.org/", "School Leader Name": "ELYSSA YUEN", "Learning Network": "Charters", "Assistant Superintendent": "PENG CHAO", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "1", "Grade 1": "1", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "3510", "name": "El Centro de Estudiantes (Big Picture)", "sort_name": "El Centro de Estudiantes - Big Picture", "abbr_name": "El Centro", "geom": {"type": "Point", "coordinates": [-75.17934897974463, 39.97507482702365]}, "Year Opened": "2009", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Big Picture Philadelphia", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "1241 N TANEY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "267-687-1172", "Fax Number": "", "Website": "https://www.elcentrobpp.org/", "School Leader Name": "MISS JACQUELYN TISDALE", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3540", "name": "Ombudsman Northwest", "sort_name": "Ombudsman Accelerated Northwest", "abbr_name": "Ombudsman NW", "geom": {"type": "Point", "coordinates": [-75.15648403, 40.05586457]}, "Year Opened": "2009", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Ombudsman Educational Services LTD", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "2111 EASTBURN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-924-8950", "Fax Number": "", "Website": "http://www.ombudsman.com/state/pa", "School Leader Name": "MS JULITA BYRD", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3810", "name": "One Bright Ray - Elmwood Campus", "sort_name": "One Bright Ray - Elmwood Campus", "abbr_name": "OBR Elmwood", "geom": {"type": "Point", "coordinates": [-75.22908493, 39.92251591]}, "Year Opened": "2015", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "International Education and Community Initiatives", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "6404 ELMWOOD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19142", "Phone Number": "215-488-1177", "Fax Number": "", "Website": "http://www.onebrightraycommunity.org/school-life/obr-team/elmwood-campus/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3820", "name": "Camelot Academy East", "sort_name": "Achieve Academy East Campus", "abbr_name": "Camelot Hunting Park", "geom": {"type": "Point", "coordinates": [-75.12599679, 40.01425525]}, "Year Opened": "2016", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Camelot Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "AEDY", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4224 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "267-335-4764", "Fax Number": "", "Website": "http://cameloteducation.org/our-schools/transitional-schools/camelot-academy-east", "School Leader Name": "MS JEN GREEN", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3850", "name": "Northeast High School EOP", "sort_name": "Northeast High School - EOP", "abbr_name": "NE High EOP", "geom": {"type": "Point", "coordinates": [-75.071168, 40.055681]}, "Year Opened": "2016", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "EOP", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "1601 COTTMAN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3200", "Fax Number": "", "Website": "https://www.philasd.org/opportunitynetwork/northeast-high-school-eop/", "School Leader Name": "MS ADRIENNE STATEN", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "3880", "name": "South Philadelphia High School EOP", "sort_name": "South Philadelphia High School - EOP", "abbr_name": "South Philly EOP", "geom": {"type": "Point", "coordinates": [-75.1691065, 39.9238987]}, "Year Opened": "2008", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "EOP", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "2", "Multiple Addresses": "N/A", "Street Address": "2101 S BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19148", "Phone Number": "215-400-8400", "Fax Number": "", "Website": "https://www.philasd.org/opportunitynetwork/south-philadelphia-high-school-eop/", "School Leader Name": "MS AUDREY NOCK", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "4020", "name": "Overbrook High School", "sort_name": "Overbrook High School", "abbr_name": "Overbrook High", "geom": {"type": "Point", "coordinates": [-75.238556, 39.981028]}, "Year Opened": "1926", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "5898 LANCASTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-400-7300", "Fax Number": "215-400-7301", "Website": "https://overbrookhs.philasd.org/", "School Leader Name": "MRS KAHLILA LEE", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "4030", "name": "High School of Engineering and Science", "sort_name": "High School of Engineering and Science - Carver", "abbr_name": "Carver", "geom": {"type": "Point", "coordinates": [-75.16127789, 39.98341809]}, "Year Opened": "1949", "School Level": "Middle-High", "Admission Type": "Special Admit", "Current Grade Span Served": "07-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1600 W NORRIS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7380", "Fax Number": "215-400-7381", "Website": "https://hses.philasd.org/", "School Leader Name": "MR DARRYL JOHNSON", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "4060", "name": "Murrell Dobbins Career and Technical High School", "sort_name": "Dobbins, Murrell Career and Technical Education High School", "abbr_name": "Dobbins", "geom": {"type": "Point", "coordinates": [-75.16679334, 39.9954293]}, "Year Opened": "1938", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2150 W LEHIGH AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-400-7050", "Fax Number": "215-400-7051", "Website": "https://dobbins.philasd.org/", "School Leader Name": "MS SHERVON THOMPSON", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "4140", "name": "Strawberry Mansion High School", "sort_name": "Strawberry Mansion High School", "abbr_name": "Strawberry Mansion", "geom": {"type": "Point", "coordinates": [-75.18402464, 39.99074371]}, "Year Opened": "1964", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Program Redesign", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3133 RIDGE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7500", "Fax Number": "215-400-7501", "Website": "https://smhs.philasd.org/", "School Leader Name": "MR BRIAN MCCRACKEN", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "4220", "name": "James G. Blaine School", "sort_name": "Blaine, James G. School", "abbr_name": "Blaine", "geom": {"type": "Point", "coordinates": [-75.18293887, 39.98521297]}, "Year Opened": "1966", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3001 W BERKS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7330", "Fax Number": "215-400-7331", "Website": "https://blaine.philasd.org/", "School Leader Name": "MRS GIANEEN ANYIKA", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4240", "name": "Lewis C. Cassidy Academics Plus School", "sort_name": "Cassidy, Lewis C. Academics Plus School", "abbr_name": "Cassidy", "geom": {"type": "Point", "coordinates": [-75.25077443, 39.97551874]}, "Year Opened": "1924", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "1625 N 76TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-400-7510", "Fax Number": "215-400-7511", "Website": "https://cassidy.philasd.org/", "School Leader Name": "MRS TANGELA MCCLAM", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4270", "name": "William Dick School", "sort_name": "Dick, William School", "abbr_name": "Dick, William", "geom": {"type": "Point", "coordinates": [-75.173787, 39.98673]}, "Year Opened": "1954", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2498 W DIAMOND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7340", "Fax Number": "215-400-7341", "Website": "https://wdick.philasd.org/", "School Leader Name": "MRS AMY WILLIAMS", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4280", "name": "Samuel Gompers School", "sort_name": "Gompers, Samuel School", "abbr_name": "Gompers", "geom": {"type": "Point", "coordinates": [-75.23754028, 39.99205763]}, "Year Opened": "1968", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2017-2018", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "5701 WYNNEFIELD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-400-7250", "Fax Number": "215-400-7251", "Website": "https://gompers.philasd.org/", "School Leader Name": "MR PHILLIP DELUCA", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4300", "name": "Edward Heston School", "sort_name": "Heston, Edward School", "abbr_name": "Heston", "geom": {"type": "Point", "coordinates": [-75.229727, 39.977852]}, "Year Opened": "1970", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "1621 N 54TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19131", "Phone Number": "215-400-7290", "Fax Number": "215-400-7291", "Website": "https://heston.philasd.org/", "School Leader Name": "MS ANGELA EDWARDS", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Nkemdi Adighije", "FACE Liaison Email": "nadighije@philasd.org", "FACE Liaison Phone Number": "215-400-7290", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4320", "name": "Robert E. Lamberton School", "sort_name": "Lamberton, Robert E. School", "abbr_name": "Lamberton", "geom": {"type": "Point", "coordinates": [-75.266329, 39.975465]}, "Year Opened": "1949", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2019-2020", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "7501 WOODBINE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-400-7530", "Fax Number": "215-400-7531", "Website": "https://lamberton.philasd.org/", "School Leader Name": "MS TIFFANY OSEI", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4350", "name": "E. Washington Rhodes School", "sort_name": "Rhodes, E. Washington Elementary School", "abbr_name": "Rhodes", "geom": {"type": "Point", "coordinates": [-75.17812979, 40.00275594]}, "Year Opened": "2013", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "2900 W CLEARFIELD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-400-7060", "Fax Number": "215-400-7061", "Website": "https://rhodes.philasd.org/", "School Leader Name": "MS ANDREA SURRATT", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Maurice Jessup", "FACE Liaison Email": "mjessup@philasd.org", "FACE Liaison Phone Number": "215-400-7910", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4360", "name": "Kenderton Elementary School", "sort_name": "Kenderton Elementary School", "abbr_name": "Kenderton", "geom": {"type": "Point", "coordinates": [-75.154241, 40.00494]}, "Year Opened": "2016", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1500 W ONTARIO ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-8340", "Fax Number": "215-400-8341", "Website": "https://kenderton.philasd.org/", "School Leader Name": "MS DEANNA BREDELL", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4370", "name": "Overbrook Elementary School", "sort_name": "Overbrook Elementary School", "abbr_name": "Overbrook Elem", "geom": {"type": "Point", "coordinates": [-75.24584611, 39.98225806]}, "Year Opened": "1990", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "2032 N 62ND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-400-7520", "Fax Number": "215-400-7521", "Website": "https://overbrook.philasd.org/", "School Leader Name": "MR JOE DIXON", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4380", "name": "Thomas M. Peirce School", "sort_name": "Peirce, Thomas M. School", "abbr_name": "Peirce", "geom": {"type": "Point", "coordinates": [-75.168424, 39.998839]}, "Year Opened": "1908", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-06", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "2200 N 22ND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-400-7020", "Fax Number": "215-400-7021", "Website": "https://tmpeirce.philasd.org/", "School Leader Name": "MR ANTHONY GORDON", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4440", "name": "Dr. Ethel Allen School", "sort_name": "Allen, Dr. Ethel School", "abbr_name": "Allen, Ethel", "geom": {"type": "Point", "coordinates": [-75.18345963, 39.99757697]}, "Year Opened": "1971", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3200 W LEHIGH AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-400-7040", "Fax Number": "215-400-7041", "Website": "https://ethelallen.philasd.org/", "School Leader Name": "MR JOHN PAUL ROSKOS", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Maryann Cobb", "FACE Liaison Email": "mcobb@philasd.org", "FACE Liaison Phone Number": "215-400-7040", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4460", "name": "Tanner G. Duckrey School", "sort_name": "Duckrey, Tanner G. School", "abbr_name": "Duckrey", "geom": {"type": "Point", "coordinates": [-75.15830107, 39.98520302]}, "Year Opened": "1968", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1501 W DIAMOND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7350", "Fax Number": "215-400-7351", "Website": "https://duckrey.philasd.org/", "School Leader Name": "MR DAVID COHEN", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4470", "name": "Richard R. Wright School", "sort_name": "Wright, Richard R. School", "abbr_name": "Wright", "geom": {"type": "Point", "coordinates": [-75.17699812, 39.99043963]}, "Year Opened": "1970", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2019-2020", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2201 N 28TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-400-7030", "Fax Number": "215-400-7031", "Website": "https://wright.philasd.org/", "School Leader Name": "MS SAKIA BEARD", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4480", "name": "Overbrook Educational Center", "sort_name": "Overbrook Educational Center", "abbr_name": "Overbrook EC", "geom": {"type": "Point", "coordinates": [-75.25401239, 39.97429952]}, "Year Opened": "1986", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2019-2020", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "6722 LANSDOWNE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19151", "Phone Number": "215-400-7540", "Fax Number": "215-400-7541", "Website": "https://oec.philasd.org/", "School Leader Name": "MS MEREDITH FOOTE", "Learning Network": "Network 2", "Assistant Superintendent": "MARKITA FLOYD", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4530", "name": "Edward Gideon School", "sort_name": "Gideon, Edward School", "abbr_name": "Gideon", "geom": {"type": "Point", "coordinates": [-75.18016456, 39.98447594]}, "Year Opened": "1952", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2018-2019", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2817 W GLENWOOD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7360", "Fax Number": "215-400-7361", "Website": "https://gideon.philasd.org/", "School Leader Name": "MS SHAUNEILLE TAYLOR", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4560", "name": "William D. Kelley School", "sort_name": "Kelley, William D. School", "abbr_name": "Kelley", "geom": {"type": "Point", "coordinates": [-75.18032689, 39.98039173]}, "Year Opened": "1965", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1601 N 28TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7370", "Fax Number": "215-400-7371", "Website": "https://kelley.philasd.org/", "School Leader Name": "MS CRYSTAL EDWARDS", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "4570", "name": "General George G. Meade School", "sort_name": "Meade, General George G. School", "abbr_name": "Meade", "geom": {"type": "Point", "coordinates": [-75.164718, 39.978587]}, "Year Opened": "1937", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1600 N 18TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-400-7310", "Fax Number": "215-400-7311", "Website": "https://meade.philasd.org/", "School Leader Name": "MS AKEERE SCOTT", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5020", "name": "Thomas A. Edison High School", "sort_name": "Edison, Thomas A. High School", "abbr_name": "Edison", "geom": {"type": "Point", "coordinates": [-75.12863791, 40.01116485]}, "Year Opened": "1985", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2014-2015", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "151 W LUZERNE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3900", "Fax Number": "215-400-3901", "Website": "https://edison.philasd.org/", "School Leader Name": "MS CHERYL MASON-DORMAN", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5050", "name": "Philadelphia Military Academy", "sort_name": "Philadelphia Military Academy (PMA)", "abbr_name": "PMA", "geom": {"type": "Point", "coordinates": [-75.15443401, 39.98470959]}, "Year Opened": "2005", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2118 N. 13TH ST.", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7420", "Fax Number": "215-400-7421", "Website": "https://pma.philasd.org/", "School Leader Name": "MS KRISTIAN ALI", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5060", "name": "Jules E. Mastbaum Area Vocational Technical High School", "sort_name": "Mastbaum, Jules E. Area Vocational Technical High School", "abbr_name": "Mastbaum", "geom": {"type": "Point", "coordinates": [-75.11213573, 39.99214686]}, "Year Opened": "1929", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "3116 FRANKFORD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7220", "Fax Number": "215-400-7221", "Website": "https://mastbaum.philasd.org/", "School Leader Name": "MR DAVID LON JR", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5070", "name": "Parkway Northwest High School", "sort_name": "Parkway Northwest High School", "abbr_name": "Parkway N.W.", "geom": {"type": "Point", "coordinates": [-75.16457453, 40.05664074]}, "Year Opened": "1960", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6200 CRITTENDEN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-400-3390", "Fax Number": "215-400-3391", "Website": "https://parkwaynw.philasd.org/", "School Leader Name": "MR JEFFREY MACFARLAND", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5080", "name": "Parkway Center City Middle College High School", "sort_name": "Parkway Center City Middle College High School", "abbr_name": "Parkway C.C.", "geom": {"type": "Point", "coordinates": [-75.1592865, 39.96300501]}, "Year Opened": "2005", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "540 N 13TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-400-7620", "Fax Number": "215-400-7621", "Website": "https://parkwaycc.philasd.org/", "School Leader Name": "MRS ANH NGUYEN", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5090", "name": "Parkway West High School", "sort_name": "Parkway West High School", "abbr_name": "Parkway W.", "geom": {"type": "Point", "coordinates": [-75.21546704, 39.96425379]}, "Year Opened": "2004", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4725 FAIRMOUNT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7710", "Fax Number": "215-400-7711", "Website": "https://parkwaywest.philasd.org/", "School Leader Name": "MR WILLIAM BROWN", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5150", "name": "William W. Bodine High School", "sort_name": "Bodine, William W. High School", "abbr_name": "Bodine", "geom": {"type": "Point", "coordinates": [-75.14343443, 39.96793026]}, "Year Opened": "1935", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1101 N 4TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-400-7630", "Fax Number": "215-400-7631", "Website": "https://bodine.philasd.org/", "School Leader Name": "MS PATRICIA PARSON", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5160", "name": "Penn Treaty High School", "sort_name": "Penn Treaty High School", "abbr_name": "Penn Treaty", "geom": {"type": "Point", "coordinates": [-75.12787008, 39.97272711]}, "Year Opened": "2013", "School Level": "Middle-High", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "600 E THOMPSON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-3800", "Fax Number": "215-400-3801", "Website": "https://penntreaty.philasd.org/", "School Leader Name": "MS WAJIBAH THOMPSON", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5170", "name": "Julia de Burgos School", "sort_name": "De Burgos, Julia School", "abbr_name": "De Burgos", "geom": {"type": "Point", "coordinates": [-75.13862743, 39.99275164]}, "Year Opened": "1903", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "401 W LEHIGH AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7080", "Fax Number": "215-400-7081", "Website": "https://deburgos.philasd.org/", "School Leader Name": "MS BIANCA REYES", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5180", "name": "Vaux High School: A Big Picture", "sort_name": "Vaux High School - Big Picture", "abbr_name": "Vaux High", "geom": {"type": "Point", "coordinates": [-75.174186, 39.976325]}, "Year Opened": "2017", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-11", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2300 W MASTER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "", "Fax Number": "", "Website": "https://www.vauxbpp.org/", "School Leader Name": "MS SHAVONNE MCMILLAN", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "0"}, {"sdp_id": "5200", "name": "Alexander Adaire School", "sort_name": "Adaire, Alexander School", "abbr_name": "Adaire", "geom": {"type": "Point", "coordinates": [-75.12930989, 39.97232661]}, "Year Opened": "1957", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1300 E PALMER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-7480", "Fax Number": "215-400-7481", "Website": "https://adaire.philasd.org/", "School Leader Name": "MS ANNA JENKINS", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5210", "name": "Henry A. Brown School", "sort_name": "Brown, Henry A. School", "abbr_name": "Brown, Henry", "geom": {"type": "Point", "coordinates": [-75.12725674, 39.98661748]}, "Year Opened": "1959", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1946 E SERGEANT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-7490", "Fax Number": "215-400-7491", "Website": "https://habrown.philasd.org/", "School Leader Name": "MRS CONNIE CARNIVALE", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5230", "name": "Russell H. Conwell School", "sort_name": "Conwell, Russell H. School", "abbr_name": "Conwell", "geom": {"type": "Point", "coordinates": [-75.11527383, 39.99471406]}, "Year Opened": "1926", "School Level": "Middle", "Admission Type": "Special Admit", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "1849 E CLEARFIELD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7210", "Fax Number": "215-400-7211", "Website": "https://conwell.philasd.org/", "School Leader Name": "MS ERICA GREEN", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5250", "name": "Paul L. Dunbar School", "sort_name": "Dunbar, Paul L. School", "abbr_name": "Dunbar", "geom": {"type": "Point", "coordinates": [-75.15416974, 39.97948773]}, "Year Opened": "1932", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2010-2011", "Community School Cohort": "2022-2023", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1750 N 12TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7410", "Fax Number": "215-400-7411", "Website": "https://dunbar.philasd.org/", "School Leader Name": "MR DANIEL MINA", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5260", "name": "Lewis Elkin School", "sort_name": "Elkin, Lewis School", "abbr_name": "Elkin", "geom": {"type": "Point", "coordinates": [-75.121274, 39.997018]}, "Year Opened": "1973", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2020-2021", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3199 D ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7140", "Fax Number": "215-400-7141", "Website": "https://elkin.philasd.org/", "School Leader Name": "MS CHARLOTTE GILLUM", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5300", "name": "Horatio B. Hackett School", "sort_name": "Hackett, Horatio B. School", "abbr_name": "Hackett", "geom": {"type": "Point", "coordinates": [-75.12685511, 39.98096374]}, "Year Opened": "1969", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2161 E YORK ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-7470", "Fax Number": "215-400-7471", "Website": "https://hackett.philasd.org/", "School Leader Name": "MR TODD KIMMEL", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5320", "name": "John F. Hartranft School", "sort_name": "Hartranft, John F. School", "abbr_name": "Hartranft", "geom": {"type": "Point", "coordinates": [-75.14477741, 39.98942228]}, "Year Opened": "1968", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "720 W CUMBERLAND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7090", "Fax Number": "215-400-7091", "Website": "https://hartranft.philasd.org/", "School Leader Name": "MR KEITH ARRINGTON", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5330", "name": "William H. Hunter School", "sort_name": "Hunter, William H. School", "abbr_name": "Hunter", "geom": {"type": "Point", "coordinates": [-75.13176356, 39.98725028]}, "Year Opened": "1909", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2400 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7110", "Fax Number": "215-400-7111", "Website": "https://hunter.philasd.org/", "School Leader Name": "MS HEATHER MILLER", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5340", "name": "James R. Ludlow School", "sort_name": "Ludlow, James R. School", "abbr_name": "Ludlow", "geom": {"type": "Point", "coordinates": [-75.145854, 39.972724]}, "Year Opened": "1927", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "550 W MASTER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7430", "Fax Number": "215-400-7431", "Website": "https://ludlow.philasd.org/", "School Leader Name": "MR KHARY MOODY", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5350", "name": "William McKinley School", "sort_name": "McKinley, William School", "abbr_name": "McKinley", "geom": {"type": "Point", "coordinates": [-75.14165528, 39.9827686]}, "Year Opened": "1970", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2101 N ORKNEY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7440", "Fax Number": "215-400-7441", "Website": "https://mckinley.philasd.org/", "School Leader Name": "MS MARILYN MEJIA", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5370", "name": "John Moffet School", "sort_name": "Moffet, John School", "abbr_name": "Moffet", "geom": {"type": "Point", "coordinates": [-75.13498462, 39.97439362]}, "Year Opened": "1973", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "127 W OXFORD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7390", "Fax Number": "215-400-7391", "Website": "https://moffet.philasd.org/", "School Leader Name": "MR RODNEY JOHNSON", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5390", "name": "Potter-Thomas School", "sort_name": "Potter-Thomas School", "abbr_name": "Potter-Thomas", "geom": {"type": "Point", "coordinates": [-75.14107646, 39.99690701]}, "Year Opened": "1967", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3001 N 6TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7120", "Fax Number": "215-400-7121", "Website": "https://potterthomas.philasd.org/", "School Leader Name": "NICHOLE POLK", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Rosa Lopez", "FACE Liaison Email": "rlopez@philasd.org", "FACE Liaison Phone Number": "215-400-7120", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5400", "name": "Richmond School", "sort_name": "Richmond School", "abbr_name": "Richmond", "geom": {"type": "Point", "coordinates": [-75.110491, 39.983496]}, "Year Opened": "1929", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2944 BELGRADE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7150", "Fax Number": "215-400-7151", "Website": "https://richmond.philasd.org/", "School Leader Name": "MRS SUSAN ROZANSKI", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5410", "name": "Isaac A. Sheppard School", "sort_name": "Sheppard, Isaac A. School", "abbr_name": "Sheppard", "geom": {"type": "Point", "coordinates": [-75.13163, 39.993651]}, "Year Opened": "1898", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "120 W CAMBRIA ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7070", "Fax Number": "215-400-7071", "Website": "https://sheppard.philasd.org/", "School Leader Name": "MS YONAIRA RODRIGUEZ", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5420", "name": "John Welsh School", "sort_name": "Welsh, John School", "abbr_name": "Welsh", "geom": {"type": "Point", "coordinates": [-75.13941869, 39.98653438]}, "Year Opened": "1966", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2331 N 4TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-400-7130", "Fax Number": "215-400-7131", "Website": "https://welsh.philasd.org/", "School Leader Name": "MS PRERNA SRIVASTAVA", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5430", "name": "Alternative Middle Years at James Martin", "sort_name": "Alternative Middle Years (AMY) at James Martin", "abbr_name": "AMY at Martin", "geom": {"type": "Point", "coordinates": [-75.09718185, 39.98529996]}, "Year Opened": "1985", "School Level": "Middle", "Admission Type": "Citywide", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "3380 RICHMOND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7190", "Fax Number": "215-400-7191", "Website": "https://amymartin.philasd.org/", "School Leader Name": "MS PAULA FURMAN", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5440", "name": "Frances E. Willard School", "sort_name": "Willard, Frances E. School", "abbr_name": "Willard", "geom": {"type": "Point", "coordinates": [-75.115907, 39.993065]}, "Year Opened": "1907", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "1930 E ELKHART ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7180", "Fax Number": "215-400-7181", "Website": "https://willard.philasd.org/", "School Leader Name": "MRS DIANA GARCIA", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5470", "name": "William Cramp School", "sort_name": "Cramp, William School", "abbr_name": "Cramp", "geom": {"type": "Point", "coordinates": [-75.13036297, 40.00260657]}, "Year Opened": "1969", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3449 N MASCHER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3860", "Fax Number": "215-400-3861", "Website": "https://cramp.philasd.org/", "School Leader Name": "MS DEANDA LOGAN", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5480", "name": "General Philip Kearny School", "sort_name": "Kearny, General Philip School", "abbr_name": "Kearny", "geom": {"type": "Point", "coordinates": [-75.14812935, 39.96385753]}, "Year Opened": "1898", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "601 FAIRMOUNT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-400-7590", "Fax Number": "215-400-7591", "Website": "https://kearny.philasd.org/", "School Leader Name": "MS SABRINA SCOTT FEGGINS", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5490", "name": "Cayuga School", "sort_name": "Cayuga School", "abbr_name": "Cayuga", "geom": {"type": "Point", "coordinates": [-75.135246, 40.017826]}, "Year Opened": "1950", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4344 N 5TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3850", "Fax Number": "215-400-3851", "Website": "https://cayuga.philasd.org/", "School Leader Name": "MR JASON CARRION", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5500", "name": "Thurgood Marshall School", "sort_name": "Marshall, Thurgood School", "abbr_name": "Marshall, Thurgood", "geom": {"type": "Point", "coordinates": [-75.13416332, 40.02938155]}, "Year Opened": "1997", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "5120 N 6TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3770", "Fax Number": "215-400-3771", "Website": "https://thurgoodmarshall.philasd.org/", "School Leader Name": "MR BRIAN MEADOWS", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5520", "name": "Kensington High School for Creative and Performing Arts", "sort_name": "Kensington High School for Creative and Performing Arts (CAPA)", "abbr_name": "Kensington CAPA", "geom": {"type": "Point", "coordinates": [-75.1330532, 39.97794956]}, "Year Opened": "2005", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "1901 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7400", "Fax Number": "215-400-7401", "Website": "https://kcapa.philasd.org/", "School Leader Name": "MS PATRICIA MCDERMOTT", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5530", "name": "Gloria Casarez Elementary School", "sort_name": "Gloria Casarez Elementary School", "abbr_name": "Casarez", "geom": {"type": "Point", "coordinates": [-75.11478572, 39.99974725]}, "Year Opened": "1899", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2020-2021", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "800 E ONTARIO ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7160", "Fax Number": "215-400-7161", "Website": "https://sheridan.philasd.org/", "School Leader Name": "MRS AWILDA BALBUENA", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5550", "name": "Kensington Health Sciences Academy", "sort_name": "Kensington Health Sciences Academy", "abbr_name": "Kensington Health", "geom": {"type": "Point", "coordinates": [-75.128685, 39.985026]}, "Year Opened": "2001", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2463 EMERALD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-3600", "Fax Number": "215-400-3601", "Website": "https://khsa.philasd.org/", "School Leader Name": "MS NIMET EREN", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5560", "name": "Spring Garden School", "sort_name": "Spring Garden School", "abbr_name": "Spring Garden", "geom": {"type": "Point", "coordinates": [-75.15614042, 39.96516155]}, "Year Opened": "1928", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1146 MELON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-400-7610", "Fax Number": "215-400-7611", "Website": "https://springgarden.philasd.org/", "School Leader Name": "MS LAUREAL ROBINSON", "Learning Network": "Network 3", "Assistant Superintendent": "SONYA HARRISON", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5580", "name": "Stetson, John B. Middle School", "sort_name": "Stetson, John B. Middle School", "abbr_name": "Stetson", "geom": {"type": "Point", "coordinates": [-75.12546663, 39.99806894]}, "Year Opened": "2022", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3200 B ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-9150", "Fax Number": "", "Website": "", "School Leader Name": "MR THOMAS MULLIN", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5590", "name": "John H. Webster School", "sort_name": "Webster, John H. School", "abbr_name": "Webster", "geom": {"type": "Point", "coordinates": [-75.104516, 39.996199]}, "Year Opened": "1968", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2019-2020", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "3400 FRANKFORD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19134", "Phone Number": "215-400-7170", "Fax Number": "215-400-7171", "Website": "https://webster.philasd.org/", "School Leader Name": "MS SHERRI ARABIA", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5610", "name": "Building 21", "sort_name": "Building 21", "abbr_name": "Building 21", "geom": {"type": "Point", "coordinates": [-75.152481, 40.053631]}, "Year Opened": "2014", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6501 LIMEKILN PIKE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-400-7450", "Fax Number": "215-400-7451", "Website": "https://building21.philasd.org/", "School Leader Name": "MS BRIANNE MACNAMARA", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5620", "name": "The U School", "sort_name": "The U School", "abbr_name": "U School", "geom": {"type": "Point", "coordinates": [-75.146256, 39.981983]}, "Year Opened": "2014", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2000 N 7TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19122", "Phone Number": "215-400-7460", "Fax Number": "215-400-7461", "Website": "https://uschool.philasd.org/", "School Leader Name": "MR NEIL GEYETTE", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5660", "name": "The LINC", "sort_name": "The LINC", "abbr_name": "LINC", "geom": {"type": "Point", "coordinates": [-75.129736, 40.006819]}, "Year Opened": "2014", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "122 W ERIE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3940", "Fax Number": "215-400-3941", "Website": "https://thelinc.philasd.org/", "School Leader Name": "MS BRIDGET BUJAK", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "5680", "name": "Honorable Luis Munoz-Marin School", "sort_name": "Munoz-Marin, Honorable Luis School", "abbr_name": "Munoz-Marin", "geom": {"type": "Point", "coordinates": [-75.13538958, 40.00098011]}, "Year Opened": "1997", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3300 N 3RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3920", "Fax Number": "215-400-3921", "Website": "https://munozmarin.philasd.org/", "School Leader Name": "MS AMANDA JONES", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "5700", "name": "Kensington High School", "sort_name": "Kensington High School", "abbr_name": "Kensington H.S.", "geom": {"type": "Point", "coordinates": [-75.12640188, 39.98483396]}, "Year Opened": "2016", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "2051 E CUMBERLAND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19125", "Phone Number": "215-400-7700", "Fax Number": "215-400-7701", "Website": "https://kensingtonhs.philasd.org/", "School Leader Name": "MR JOSE LEBRON", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6010", "name": "Central High School", "sort_name": "Central High School", "abbr_name": "Central", "geom": {"type": "Point", "coordinates": [-75.15074825, 40.0372851]}, "Year Opened": "1939", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1700 W OLNEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3590", "Fax Number": "215-400-3591", "Website": "https://centralhs.philasd.org/", "School Leader Name": "MS KATHARINE DAVIS", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6030", "name": "Roxborough High School", "sort_name": "Roxborough High School", "abbr_name": "Roxborough", "geom": {"type": "Point", "coordinates": [-75.22283357, 40.03802479]}, "Year Opened": "1924", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "6498 RIDGE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3400", "Fax Number": "215-400-3401", "Website": "https://roxboroughhs.philasd.org/", "School Leader Name": "MRS KRISTIN WILLIAMS-SMALLEY", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6040", "name": "Walter B. Saul High School", "sort_name": "Saul, Walter B. High School", "abbr_name": "Saul", "geom": {"type": "Point", "coordinates": [-75.21981676, 40.04902036]}, "Year Opened": "1950", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "7100 HENRY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3450", "Fax Number": "215-400-3451", "Website": "https://saul.philasd.org/", "School Leader Name": "MS JANE ARBASAK", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6050", "name": "Philadelphia High School for Girls", "sort_name": "Philadelphia High School for Girls", "abbr_name": "Girls", "geom": {"type": "Point", "coordinates": [-75.14475989, 40.03898514]}, "Year Opened": "1956", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1400 W OLNEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3700", "Fax Number": "215-400-3701", "Website": "https://girlshs.philasd.org/", "School Leader Name": "MS LISA MESI", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6060", "name": "Martin Luther King High School", "sort_name": "King, Martin Luther High School", "abbr_name": "MLK", "geom": {"type": "Point", "coordinates": [-75.16217184, 40.05756238]}, "Year Opened": "1972", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "6100 STENTON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-400-3500", "Fax Number": "215-400-3501", "Website": "https://mlkhs.philasd.org/", "School Leader Name": "MRS KEISHA WILKINS", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6090", "name": "A. Philip Randolph Career and Technical High School", "sort_name": "Randolph, A. Philip Career and Technical High School", "abbr_name": "Randolph", "geom": {"type": "Point", "coordinates": [-75.179609, 40.008504]}, "Year Opened": "2004", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "3101 HENRY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19129", "Phone Number": "215-400-3840", "Fax Number": "215-400-3841", "Website": "https://randolph.philasd.org/", "School Leader Name": "MS MICHELLE BURNS", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6200", "name": "Anna B. Day School", "sort_name": "Day, Anna B. School", "abbr_name": "Day", "geom": {"type": "Point", "coordinates": [-75.16833464, 40.05840682]}, "Year Opened": "1952", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "6324 CRITTENDEN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-400-3520", "Fax Number": "215-400-3521", "Website": "https://abday.philasd.org/", "School Leader Name": "KAREN WHITE", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6210", "name": "Franklin S. Edmonds School", "sort_name": "Edmonds, Franklin S. School", "abbr_name": "Edmonds", "geom": {"type": "Point", "coordinates": [-75.1692495, 40.0717255]}, "Year Opened": "1948", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "8025 THOURON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19150", "Phone Number": "215-400-3370", "Fax Number": "215-400-3371", "Website": "https://edmonds.philasd.org/", "School Leader Name": "MS WENDY SHARPE", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6220", "name": "Eleanor C. Emlen School", "sort_name": "Emlen, Eleanor C. School", "abbr_name": "Emlen", "geom": {"type": "Point", "coordinates": [-75.17790573, 40.05436289]}, "Year Opened": "1926", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "6501 CHEW AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19119", "Phone Number": "215-400-3470", "Fax Number": "215-400-3471", "Website": "https://emlen.philasd.org/", "School Leader Name": "MRS TAMMY THOMAS", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Rasheeda Sloan", "FACE Liaison Email": "rsloan@philasd.org", "FACE Liaison Phone Number": "215-400-5861", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6230", "name": "Fitler Academics Plus School", "sort_name": "Fitler Academics Plus School", "abbr_name": "Fitler", "geom": {"type": "Point", "coordinates": [-75.16633733, 40.02610052]}, "Year Opened": "1898", "School Level": "Elementary-Middle", "Admission Type": "Citywide", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "140 W SEYMOUR ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "215-400-3610", "Fax Number": "215-400-3611", "Website": "https://fitler.philasd.org/", "School Leader Name": "MR ANTHIOUS BOONE", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6250", "name": "Charles W. Henry School", "sort_name": "Henry, Charles W. School", "abbr_name": "Henry", "geom": {"type": "Point", "coordinates": [-75.19658776, 40.04625771]}, "Year Opened": "1908", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "601 CARPENTER LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19119", "Phone Number": "215-400-3480", "Fax Number": "215-400-3481", "Website": "https://henry.philasd.org/", "School Leader Name": "MR TYRONE ROSS II", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6260", "name": "Henry H. Houston School", "sort_name": "Houston, Henry H. School", "abbr_name": "Houston", "geom": {"type": "Point", "coordinates": [-75.195084, 40.059003]}, "Year Opened": "1927", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "7300 RURAL LN.", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19119", "Phone Number": "215-400-3490", "Fax Number": "215-400-3491", "Website": "https://houston.philasd.org/", "School Leader Name": "MR LEROY HALL", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6270", "name": "Jenks Academy for Arts and Sciences", "sort_name": "Jenks Academy for Arts and Sciences", "abbr_name": "Jenks, J.S.", "geom": {"type": "Point", "coordinates": [-75.20356162, 40.07440887]}, "Year Opened": "1924", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "8301 GERMANTOWN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19118", "Phone Number": "215-400-3360", "Fax Number": "215-400-3361", "Website": "https://jsjenks.philasd.org/", "School Leader Name": "MS CORINNE SCIOLI", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6300", "name": "James Logan School", "sort_name": "Logan, James School", "abbr_name": "Logan", "geom": {"type": "Point", "coordinates": [-75.15205995, 40.03085306]}, "Year Opened": "1924", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2016-2017", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1700 LINDLEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3670", "Fax Number": "215-400-3671", "Website": "https://logan.philasd.org/", "School Leader Name": "MR MATTHEW GRILL", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6310", "name": "John F. McCloskey School", "sort_name": "McCloskey, John F. School", "abbr_name": "McCloskey", "geom": {"type": "Point", "coordinates": [-75.17533748, 40.08162668]}, "Year Opened": "1956", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "8500 PICKERING AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19150", "Phone Number": "215-400-3380", "Fax Number": "215-400-3381", "Website": "https://mccloskey.philasd.org/", "School Leader Name": "MR JOHN SPENCER", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6320", "name": "Thomas Mifflin School", "sort_name": "Mifflin, Thomas School", "abbr_name": "Mifflin", "geom": {"type": "Point", "coordinates": [-75.19128804, 40.01357043]}, "Year Opened": "1937", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "3624 CONRAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19129", "Phone Number": "215-400-3830", "Fax Number": "215-400-3831", "Website": "https://mifflin.philasd.org/", "School Leader Name": "MS LESLIE MASON", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6340", "name": "Joseph Pennell School", "sort_name": "Pennell, Joseph School", "abbr_name": "Pennell", "geom": {"type": "Point", "coordinates": [-75.15208663, 40.04351806]}, "Year Opened": "1927", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1800 NEDRO AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3680", "Fax Number": "215-400-3681", "Website": "https://pennell.philasd.org/", "School Leader Name": "MRS SUSAN LOFTON", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6350", "name": "Samuel Pennypacker School", "sort_name": "Pennypacker, Samuel School", "abbr_name": "Pennypacker", "geom": {"type": "Point", "coordinates": [-75.1597946, 40.06527032]}, "Year Opened": "1930", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "1858 E WASHINGTON LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19138", "Phone Number": "215-400-3510", "Fax Number": "215-400-3511", "Website": "https://pennypacker.philasd.org/", "School Leader Name": "MRS TAMIKA GILLIAM", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6360", "name": "Theodore Roosevelt School", "sort_name": "Roosevelt Elementary School", "abbr_name": "Roosevelt", "geom": {"type": "Point", "coordinates": [-75.17529079, 40.04856262]}, "Year Opened": "2013", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "430 E WASHINGTON LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "215-400-3640", "Fax Number": "215-400-3641", "Website": "https://roosevelt.philasd.org/", "School Leader Name": "MS KRISTEN HEIFET", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Ginger Glass-Mcintyre", "FACE Liaison Email": "geglass@philasd.org", "FACE Liaison Phone Number": "215-400-7680", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6380", "name": "Shawmont School", "sort_name": "Shawmont School", "abbr_name": "Shawmont", "geom": {"type": "Point", "coordinates": [-75.238543, 40.051478]}, "Year Opened": "1928", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "535 SHAWMONT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3440", "Fax Number": "215-400-3441", "Website": "https://shawmont.philasd.org/", "School Leader Name": "MR ROBERT MC GROGAN", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6390", "name": "Edward T. Steel School", "sort_name": "Steel, Edward T. School", "abbr_name": "Steel", "geom": {"type": "Point", "coordinates": [-75.15689064, 40.01879502]}, "Year Opened": "1973", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "4301 WAYNE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3910", "Fax Number": "215-400-3911", "Website": "https://steel.philasd.org/", "School Leader Name": "MR ANGIKINDSLOWS SENATUS", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Tamarra Grant", "FACE Liaison Email": "tcgrant@philasd.org", "FACE Liaison Phone Number": "215-400-3910", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6400", "name": "Widener Memorial School", "sort_name": "Widener Memorial School", "abbr_name": "Widener", "geom": {"type": "Point", "coordinates": [-75.146598, 40.036706]}, "Year Opened": "1953", "School Level": "Elementary-Middle-High", "Admission Type": "Citywide", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP Special Education", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1450 W OLNEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3710", "Fax Number": "215-400-3711", "Website": "https://widener.philasd.org/", "School Leader Name": "MR HARRIS GAFFIN", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6410", "name": "Cook-Wissahickon School", "sort_name": "Cook-Wissahickon School", "abbr_name": "Cook-Wissahickon", "geom": {"type": "Point", "coordinates": [-75.206802, 40.022472]}, "Year Opened": "1969", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "201 E SALAIGNAC ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3430", "Fax Number": "215-400-3431", "Website": "https://cookwissahickon.philasd.org/", "School Leader Name": "MR MICHAEL LOWE", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6440", "name": "Anna L. Lingelbach School", "sort_name": "Lingelbach, Anna L. School", "abbr_name": "Lingelbach", "geom": {"type": "Point", "coordinates": [-75.18961364, 40.03708413]}, "Year Opened": "1955", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "6340 WAYNE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "215-400-3630", "Fax Number": "215-400-3631", "Website": "https://lingelbach.philasd.org/", "School Leader Name": "MRS LISA WADDELL", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6450", "name": "James Dobson School", "sort_name": "Dobson, James School", "abbr_name": "Dobson", "geom": {"type": "Point", "coordinates": [-75.23067163, 40.03147536]}, "Year Opened": "1930", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "4667 UMBRIA ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19127", "Phone Number": "215-400-3570", "Fax Number": "215-400-3571", "Website": "https://dobson.philasd.org/", "School Leader Name": "MRS KHLOE WILLIAMS-LAWANI", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6460", "name": "Hill-Freedman World Academy", "sort_name": "Hill-Freedman World Academy", "abbr_name": "Hill-Freedman", "geom": {"type": "Point", "coordinates": [-75.175303, 40.071311]}, "Year Opened": "1980", "School Level": "Middle-High", "Admission Type": "Special Admit", "Current Grade Span Served": "06-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1100 E MOUNT PLEASANT AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19150", "Phone Number": "215-400-3530", "Fax Number": "215-400-3531", "Website": "https://hfwa.philasd.org/", "School Leader Name": "MR ANTHONY MAJEWSKI", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Jaemin Kall", "FACE Liaison Email": "jkall@philasd.org", "FACE Liaison Phone Number": "215-400-5867", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "6470", "name": "John B. Kelly School", "sort_name": "Kelly, John B. School", "abbr_name": "Kelly", "geom": {"type": "Point", "coordinates": [-75.1711868, 40.02479143]}, "Year Opened": "1970", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "5116 PULASKI AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19144", "Phone Number": "215-400-3580", "Fax Number": "215-400-3581", "Website": "https://kelly.philasd.org/", "School Leader Name": "MS RUTH JOHNSON PRESSLE", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6480", "name": "Academy for the Middle Years at Northwest", "sort_name": "Academy for the Middle Years (AMY) at Northwest", "abbr_name": "AMY at Northwest", "geom": {"type": "Point", "coordinates": [-75.21317609, 40.03154543]}, "Year Opened": "2012", "School Level": "Middle", "Admission Type": "Special Admit", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "6000 RIDGE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3460", "Fax Number": "215-400-3461", "Website": "https://amynw.philasd.org/", "School Leader Name": "MS JODAN FLOYD", "Learning Network": "Network 6", "Assistant Superintendent": "KIMBERLY NEWMAN", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "6540", "name": "Lankenau High School", "sort_name": "Lankenau High School", "abbr_name": "Lankenau", "geom": {"type": "Point", "coordinates": [-75.25295594, 40.06153271]}, "Year Opened": "1987", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "4", "Multiple Addresses": "N/A", "Street Address": "201 SPRING LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19128", "Phone Number": "215-400-3420", "Fax Number": "215-400-3421", "Website": "https://lankenau.philasd.org/", "School Leader Name": "MS JESSICA MCATAMNEY", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Muminah Cunningham", "FACE Liaison Email": "mcunningham@philasd.org", "FACE Liaison Phone Number": "215-400-5855", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "7010", "name": "Frankford High School", "sort_name": "Frankford High School", "abbr_name": "Frankford", "geom": {"type": "Point", "coordinates": [-75.084823, 40.021602]}, "Year Opened": "1914", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2022-2023", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "5000 OXFORD AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-7200", "Fax Number": "215-400-7201", "Website": "https://frankfordhs.philasd.org/", "School Leader Name": "DR MICHAEL CALDERONE", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "7060", "name": "Olney High School", "sort_name": "Olney High School", "abbr_name": "Olney High", "geom": {"type": "Point", "coordinates": [-75.123808, 40.028772]}, "Year Opened": "2022", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "100 W DUNCANNON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-9140", "Fax Number": "", "Website": "", "School Leader Name": "MR MICHAEL ROTH", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "7100", "name": "Jay Cooke School", "sort_name": "Cooke, Jay School", "abbr_name": "Cooke", "geom": {"type": "Point", "coordinates": [-75.146074, 40.025526]}, "Year Opened": "1923", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2016-2017", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1300 W LOUDON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-8330", "Fax Number": "215-400-8331", "Website": "https://cooke.philasd.org/", "School Leader Name": "MS CHRISTIE PARFITT", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Sherria Mansell-Watts", "FACE Liaison Email": "smansellwatts@philasd.org", "FACE Liaison Phone Number": "215-400-8330", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7110", "name": "Warren G. Harding School", "sort_name": "Harding, Warren G. Middle School", "abbr_name": "Harding", "geom": {"type": "Point", "coordinates": [-75.07456081, 40.01291694]}, "Year Opened": "1924", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2000 WAKELING ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-3990", "Fax Number": "215-400-3991", "Website": "https://harding.philasd.org/", "School Leader Name": "MS MARY SANCHEZ", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7120", "name": "Samuel Fels High School", "sort_name": "Fels, Samuel High School", "abbr_name": "Fels", "geom": {"type": "Point", "coordinates": [-75.09109404, 40.03564646]}, "Year Opened": "1954", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "5500 LANGDON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-7100", "Fax Number": "215-400-7101", "Website": "https://fels.philasd.org/", "School Leader Name": "MS MELISSA RASPER", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "7130", "name": "General Louis Wagner School", "sort_name": "Wagner, General Louis Middle School", "abbr_name": "Wagner", "geom": {"type": "Point", "coordinates": [-75.14767962, 40.05174748]}, "Year Opened": "1928", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "1701 W CHELTEN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19126", "Phone Number": "215-400-3560", "Fax Number": "215-400-3561", "Website": "https://wagner.philasd.org/", "School Leader Name": "MS CONNIE GRIER", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Natasha Dye", "FACE Liaison Email": "ndye@philasd.org", "FACE Liaison Phone Number": "215-400-5853", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7150", "name": "Juniata Park Academy", "sort_name": "Juniata Park Academy", "abbr_name": "Juniata Park", "geom": {"type": "Point", "coordinates": [-75.11102921, 40.01284122]}, "Year Opened": "2007", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "801 E HUNTING PARK AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-7010", "Fax Number": "215-400-7011", "Website": "https://juniatapark.philasd.org/", "School Leader Name": "MRS MARISOL RIVERA RODRIGUEZ", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7200", "name": "Clara Barton School", "sort_name": "Barton, Clara School", "abbr_name": "Barton", "geom": {"type": "Point", "coordinates": [-75.11950188, 40.0193401]}, "Year Opened": "1925", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-02", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4600 ROSEHILL ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3720", "Fax Number": "215-400-3721", "Website": "https://barton.philasd.org/", "School Leader Name": "MS COLLEEN BOWEN", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7220", "name": "Laura H. Carnell School", "sort_name": "Carnell, Laura H. School", "abbr_name": "Carnell", "geom": {"type": "Point", "coordinates": [-75.084142, 40.038957]}, "Year Opened": "1931", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "1100 DEVEREAUX AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3150", "Fax Number": "215-400-3151", "Website": "https://carnell.philasd.org/", "School Leader Name": "MR HILDERBRAND PELZER III", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Carmen Colon", "FACE Liaison Email": "ccolon@philasd.org", "FACE Liaison Phone Number": "215-400-5877", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7260", "name": "Ellwood School", "sort_name": "Ellwood School", "abbr_name": "Ellwood", "geom": {"type": "Point", "coordinates": [-75.13894107, 40.05472609]}, "Year Opened": "1957", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6701 N 13TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19126", "Phone Number": "215-400-3540", "Fax Number": "215-400-3541", "Website": "https://ellwood.philasd.org/", "School Leader Name": "MS ZAIDA ALFARO", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7270", "name": "Thomas K. Finletter School", "sort_name": "Finletter, Thomas K. School", "abbr_name": "Finletter", "geom": {"type": "Point", "coordinates": [-75.119176, 40.043608]}, "Year Opened": "1930", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6100 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3750", "Fax Number": "215-400-3751", "Website": "https://finletter.philasd.org/", "School Leader Name": "MRS APRIL BROWN", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7280", "name": "Benjamin Franklin School", "sort_name": "Franklin, Benjamin K8 School", "abbr_name": "Franklin K8", "geom": {"type": "Point", "coordinates": [-75.10498859, 40.04215213]}, "Year Opened": "1915", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "5735 RISING SUN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3760", "Fax Number": "215-400-3761", "Website": "https://franklin.philasd.org/", "School Leader Name": "MS ROSLYNN SAMPLE GREENE", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Jonathan Bracero", "FACE Liaison Email": "jbracero@philasd.org", "FACE Liaison Phone Number": "215-400-5825", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7290", "name": "Allen M. Stearne School", "sort_name": "Stearne, Allen M. School", "abbr_name": "Stearne", "geom": {"type": "Point", "coordinates": [-75.085112, 40.011752]}, "Year Opened": "1968", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "1655 UNITY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-3980", "Fax Number": "215-400-3981", "Website": "https://stearne.philasd.org/", "School Leader Name": "MR ALPHONSO EVANS", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7300", "name": "Francis Hopkinson School", "sort_name": "Hopkinson, Francis School", "abbr_name": "Hopkinson", "geom": {"type": "Point", "coordinates": [-75.10274511, 40.00771059]}, "Year Opened": "1927", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4001 L ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-3970", "Fax Number": "215-400-3971", "Website": "https://hopkinson.philasd.org/", "School Leader Name": "MS MARGARET SHRIVER", "Learning Network": "Network 5", "Assistant Superintendent": "KAREN KOLSKY", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7310", "name": "Feltonville Intermediate School", "sort_name": "Feltonville Intermediate School", "abbr_name": "Feltonville Int", "geom": {"type": "Point", "coordinates": [-75.12102564, 40.02034002]}, "Year Opened": "1908", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "03-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "238 E WYOMING AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3730", "Fax Number": "215-400-3731", "Website": "https://fint.philasd.org/", "School Leader Name": "MS DANA SINGLETARY", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7320", "name": "Julia W. Howe School", "sort_name": "Howe, Julia Ward School", "abbr_name": "Howe", "geom": {"type": "Point", "coordinates": [-75.14211131, 40.04113187]}, "Year Opened": "1913", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "5800 N 13TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3650", "Fax Number": "215-400-3651", "Website": "https://howe.philasd.org/", "School Leader Name": "MR MATTHEW REID", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Gerri Dunham-Collazo", "FACE Liaison Email": "gdunhamcollazo@philasd.org", "FACE Liaison Phone Number": "215-400-5857", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7330", "name": "Henry W. Lawton School", "sort_name": "Lawton, Henry W. School", "abbr_name": "Lawton", "geom": {"type": "Point", "coordinates": [-75.058976, 40.020648]}, "Year Opened": "1973", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "6101 JACKSON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19135", "Phone Number": "215-400-3340", "Fax Number": "215-400-3341", "Website": "https://lawton.philasd.org/", "School Leader Name": "MS ARNETTA IMES", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7350", "name": "James R. Lowell School", "sort_name": "Lowell, James R. School", "abbr_name": "Lowell", "geom": {"type": "Point", "coordinates": [-75.12871963, 40.04086578]}, "Year Opened": "1913", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-04", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "450 W NEDRO AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3740", "Fax Number": "215-400-3741", "Website": "https://lowell.philasd.org/", "School Leader Name": "MS CHANTAL BARR", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Rasheeda Polk", "FACE Liaison Email": "rhancock@philasd.org", "FACE Liaison Phone Number": "215-400-5864", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7360", "name": "John Marshall School", "sort_name": "Marshall, John School", "abbr_name": "Marshall, John", "geom": {"type": "Point", "coordinates": [-75.087158, 40.014546]}, "Year Opened": "1909", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2017-2018", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4500 GRISCOM ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-3950", "Fax Number": "215-400-3951", "Website": "https://johnmarshall.philasd.org/", "School Leader Name": "MR WILLIAM LAWRENCE", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Lorna Gill", "FACE Liaison Email": "lgil@philasd.org", "FACE Liaison Phone Number": "215-400-3950", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7370", "name": "Grover Washington, Jr. School", "sort_name": "Washington, Grover Jr. Middle School", "abbr_name": "Washington, Grover", "geom": {"type": "Point", "coordinates": [-75.117969, 40.035479]}, "Year Opened": "2000", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "05-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "201 E OLNEY AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3820", "Fax Number": "215-400-3821", "Website": "https://gwjr.philasd.org/", "School Leader Name": "MS TIFFANI BLUNT", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7380", "name": "Alexander K. McClure School", "sort_name": "McClure, Alexander K. School", "abbr_name": "McClure", "geom": {"type": "Point", "coordinates": [-75.137574, 40.015178]}, "Year Opened": "1910", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2019-2020", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "600 W HUNTING PARK AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3870", "Fax Number": "215-400-3871", "Website": "https://mcclure.philasd.org/", "School Leader Name": "MR LUIS GARCIA", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7390", "name": "Andrew J. Morrison School", "sort_name": "Morrison, Andrew J. School", "abbr_name": "Morrison", "geom": {"type": "Point", "coordinates": [-75.12941126, 40.02843729]}, "Year Opened": "1924", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "5100 N 3RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3780", "Fax Number": "215-400-3781", "Website": "https://morrison.philasd.org/", "School Leader Name": "MS MEREDITH LOWE", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7400", "name": "Olney School", "sort_name": "Olney School", "abbr_name": "Olney", "geom": {"type": "Point", "coordinates": [-75.12134354, 40.03058672]}, "Year Opened": "1900", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "5301 N WATER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3790", "Fax Number": "215-400-3791", "Website": "https://olney.philasd.org/", "School Leader Name": "DR MARTIN WOODSIDE", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7430", "name": "James J. Sullivan School", "sort_name": "Sullivan, James J. School", "abbr_name": "Sullivan", "geom": {"type": "Point", "coordinates": [-75.06706036, 40.01529786]}, "Year Opened": "1930", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2020-2021", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "5300 DITMAN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-400-3960", "Fax Number": "215-400-3961", "Website": "https://sullivan.philasd.org/", "School Leader Name": "MS SHANTELLE YARBROUGH", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Xiomara Daye", "FACE Liaison Email": "xdaye@philasd.org", "FACE Liaison Phone Number": "215-400-3960", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7440", "name": "Bayard Taylor School", "sort_name": "Taylor, Bayard School", "abbr_name": "Taylor", "geom": {"type": "Point", "coordinates": [-75.13793972, 40.00753033]}, "Year Opened": "1907", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "3698 N RANDOLPH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3880", "Fax Number": "215-400-3881", "Website": "https://taylor.philasd.org/", "School Leader Name": "MR DAVID LAVER", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7460", "name": "William H. Ziegler School", "sort_name": "Ziegler, William H. School", "abbr_name": "Ziegler", "geom": {"type": "Point", "coordinates": [-75.07570448, 40.03003725]}, "Year Opened": "1957", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "5935 SAUL ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19149", "Phone Number": "215-400-3260", "Fax Number": "215-400-3261", "Website": "https://ziegler.philasd.org/", "School Leader Name": "MS NICOLE FREEMAN", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7470", "name": "Bridesburg School", "sort_name": "Bridesburg School", "abbr_name": "Bridesburg", "geom": {"type": "Point", "coordinates": [-75.06660471, 40.00030082]}, "Year Opened": "1958", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "2824 JENKS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19137", "Phone Number": "215-400-7240", "Fax Number": "215-400-7241", "Website": "https://bridesburg.philasd.org/", "School Leader Name": "MR DONALD DIPAULO", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7490", "name": "Prince Hall School", "sort_name": "Prince Hall School", "abbr_name": "Prince Hall", "geom": {"type": "Point", "coordinates": [-75.14956052, 40.04770742]}, "Year Opened": "1971", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "8", "Multiple Addresses": "N/A", "Street Address": "6101 N GRATZ ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19141", "Phone Number": "215-400-3690", "Fax Number": "215-400-3691", "Website": "https://princehall.philasd.org/", "School Leader Name": "MRS DONNA RAGSDALE", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7500", "name": "Feltonville School of Arts and Sciences", "sort_name": "Feltonville School of Arts and Sciences", "abbr_name": "FSAS", "geom": {"type": "Point", "coordinates": [-75.121675, 40.019437]}, "Year Opened": "1993", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Academic Improvement Plan", "Major Intervention Year": "2018-2019", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "210 E COURTLAND ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19120", "Phone Number": "215-400-3810", "Fax Number": "215-400-3811", "Website": "https://fas.philasd.org/", "School Leader Name": "MR JOHN PINIAT", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Linda Maldonado", "FACE Liaison Email": "lmaldonado@philasd.org", "FACE Liaison Phone Number": "215-400-5863", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7510", "name": "Mary M. Bethune School", "sort_name": "Bethune, Mary M. School", "abbr_name": "Bethune", "geom": {"type": "Point", "coordinates": [-75.14872828, 40.00269526]}, "Year Opened": "1970", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3301 OLD YORK RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3890", "Fax Number": "215-400-3891", "Website": "https://bethune.philasd.org/", "School Leader Name": "MRS ALIYA CATANCH-BRADLEY", "Learning Network": "Network 11", "Assistant Superintendent": "AMELIA COLEMAN BROWN", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7530", "name": "William Rowen School", "sort_name": "Rowen, William School", "abbr_name": "Rowen", "geom": {"type": "Point", "coordinates": [-75.1486472, 40.05930676]}, "Year Opened": "1938", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6841 N 19TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19126", "Phone Number": "215-400-3550", "Fax Number": "215-400-3551", "Website": "https://rowen.philasd.org/", "School Leader Name": "MR JAMES MURRAY JR", "Learning Network": "Network 7", "Assistant Superintendent": "CONSTANCE HORTON", "FACE Liaison Name": "Darlene Bates-Harper", "FACE Liaison Email": "dbatesharper@philasd.org", "FACE Liaison Phone Number": "215-400-5883", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "7730", "name": "Roberto Clemente School", "sort_name": "Clemente, Roberto Middle School", "abbr_name": "Clemente", "geom": {"type": "Point", "coordinates": [-75.129736, 40.006819]}, "Year Opened": "1916", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "Acceleration", "Major Intervention Year": "2010-2011", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "122 W ERIE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-3930", "Fax Number": "215-400-3931", "Website": "https://clemente.philasd.org/", "School Leader Name": "MS CLAUDETTE WILLIAMS-STONE", "Learning Network": "Acceleration", "Assistant Superintendent": "SEAN CONLEY", "FACE Liaison Name": "Lisa Wade", "FACE Liaison Email": "lwade@philasd.org", "FACE Liaison Phone Number": "215-400-3930", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8010", "name": "Abraham Lincoln High School", "sort_name": "Lincoln, Abraham High School", "abbr_name": "Lincoln", "geom": {"type": "Point", "coordinates": [-75.04479221, 40.04310838]}, "Year Opened": "1950", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "3201 RYAN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-400-3300", "Fax Number": "215-400-3301", "Website": "https://lincoln.philasd.org/", "School Leader Name": "MR JACK NELSON JR", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8020", "name": "Northeast High School", "sort_name": "Northeast High School", "abbr_name": "Northeast", "geom": {"type": "Point", "coordinates": [-75.07118355, 40.05564409]}, "Year Opened": "1957", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "1601 COTTMAN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3200", "Fax Number": "215-400-3201", "Website": "https://nehs.philasd.org/", "School Leader Name": "MR OMAR CROWDER", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8030", "name": "George Washington High School", "sort_name": "Washington, George High School", "abbr_name": "Washington, George", "geom": {"type": "Point", "coordinates": [-75.02723013, 40.10598577]}, "Year Opened": "1963", "School Level": "High", "Admission Type": "Neighborhood", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2017-2018", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "10175 BUSTLETON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19116", "Phone Number": "215-400-3100", "Fax Number": "215-400-3101", "Website": "https://gwhs.philasd.org/", "School Leader Name": "MS SUSAN THOMPSON", "Learning Network": "Network 4", "Assistant Superintendent": "NOAH TENNANT", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8040", "name": "Arts Academy at Benjamin Rush", "sort_name": "Arts Academy at Benjamin Rush", "abbr_name": "Rush", "geom": {"type": "Point", "coordinates": [-74.9752061, 40.08253275]}, "Year Opened": "2008", "School Level": "High", "Admission Type": "Special Admit", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "11081 KNIGHTS RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19154", "Phone Number": "215-400-3030", "Fax Number": "215-400-3031", "Website": "https://rush.philasd.org/", "School Leader Name": "MS LATOYIA BAILEY", "Learning Network": "Network 1", "Assistant Superintendent": "TED DOMERS", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8070", "name": "OIC CADI", "sort_name": "OIC Career and Academic Development Institute (CADI)", "abbr_name": "OIC CADI", "geom": {"type": "Point", "coordinates": [-75.144801, 39.958322]}, "Year Opened": "2004", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Opportunities Industrialization Centers of America", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "1", "Multiple Addresses": "N/A", "Street Address": "444 N 3RD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19123", "Phone Number": "215-567-2410", "Fax Number": "215-567-2421", "Website": "https://www.philaoic.org/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8080", "name": "Excel Academy North", "sort_name": "Excel Academy North", "abbr_name": "Excel North", "geom": {"type": "Point", "coordinates": [-75.177658, 39.978134]}, "Year Opened": "2005", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Camelot Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1435 N 26TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "215-684-5080", "Fax Number": "", "Website": "http://cameloteducation.org/our-schools/accelerated-schools/excel-academy-north", "School Leader Name": "MR RYAN MULLER", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8090", "name": "Swenson Arts and Technology High School", "sort_name": "Swenson Arts and Technology High School", "abbr_name": "Swenson", "geom": {"type": "Point", "coordinates": [-75.01398863, 40.0921093]}, "Year Opened": "2000", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Comprehensive", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "2750 RED LION RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19114", "Phone Number": "215-400-3140", "Fax Number": "215-400-3141", "Website": "https://swenson.philasd.org/", "School Leader Name": "MS JUDITH HAUGHTON", "Learning Network": "Network 13", "Assistant Superintendent": "JONATHAN BROWN", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8100", "name": "Gateway to College - Community College of Philadelphia", "sort_name": "Gateway to College - Community College of Philadelphia", "abbr_name": "Gateway to College", "geom": {"type": "Point", "coordinates": [-75.16627046, 39.9629017]}, "Year Opened": "2006", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Community College of Phila", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "1700 SPRING GARDEN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-751-8540", "Fax Number": "", "Website": "http://www.ccp.edu/academic-offerings/high-school-student-programs/gateway-college", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8120", "name": "Castor Gardens Middle School", "sort_name": "Castor Gardens Middle School", "abbr_name": "Castor Gardens", "geom": {"type": "Point", "coordinates": [-75.069086, 40.052367]}, "Year Opened": "1928", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "1800 COTTMAN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3190", "Fax Number": "215-400-3191", "Website": "https://wwilson.philasd.org/", "School Leader Name": "MR SHAWN MCGUIGAN", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Tanisha Jackson", "FACE Liaison Email": "tjackson2@philasd.org", "FACE Liaison Phone Number": "215-400-5878", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8130", "name": "Northeast Community Propel Academy", "sort_name": "Northeast Community Propel Academy", "abbr_name": "Propel Academy", "geom": {"type": "Point", "coordinates": [-75.04413272617913, 40.045775289859506]}, "Year Opened": "2021", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "7500 ROWLAND AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-400-8350", "Fax Number": "", "Website": "https://ncpa.philasd.org/", "School Leader Name": "MRS DYWONNE SIMPSON", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8160", "name": "Baldi School", "sort_name": "Baldi Middle School", "abbr_name": "Baldi", "geom": {"type": "Point", "coordinates": [-75.05217234, 40.09331609]}, "Year Opened": "1971", "School Level": "Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "06-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "8801 VERREE RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19115", "Phone Number": "215-400-3090", "Fax Number": "215-400-3091", "Website": "https://baldi.philasd.org/", "School Leader Name": "MR LUKE HOSTETTER", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8190", "name": "One Bright Ray - Fairhill Campus", "sort_name": "One Bright Ray - Fairhill", "abbr_name": "OBR Fairhill", "geom": {"type": "Point", "coordinates": [-75.13801882, 39.99376434]}, "Year Opened": "2004", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "International Education and Community Initiatives", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "2820 N 4TH ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19133", "Phone Number": "215-423-1776", "Fax Number": "215-425-1213", "Website": "http://www.onebrightraycommunity.org/school-life/obr-team/fairhill-campus/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8200", "name": "Ethan Allen School", "sort_name": "Allen, Ethan School", "abbr_name": "Allen, Ethan", "geom": {"type": "Point", "coordinates": [-75.06268841, 40.0294252]}, "Year Opened": "1930", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "6329 BATTERSBY ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19149", "Phone Number": "215-400-3270", "Fax Number": "215-400-3271", "Website": "https://ethanallen.philasd.org/", "School Leader Name": "MRS CASSANDRA HOUSTON", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8210", "name": "Joseph H. Brown School", "sort_name": "Brown, Joseph H. School", "abbr_name": "Brown, Joseph", "geom": {"type": "Point", "coordinates": [-75.02460195, 40.04392183]}, "Year Opened": "1937", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "3600 STANWOOD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-400-3320", "Fax Number": "215-400-3321", "Website": "https://jhbrown.philasd.org/", "School Leader Name": "MS ARTHUREA SMITH", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8230", "name": "Kennedy C. Crossan School", "sort_name": "Crossan, Kennedy C. School", "abbr_name": "Crossan", "geom": {"type": "Point", "coordinates": [-75.08155085, 40.06144841]}, "Year Opened": "1924", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "7350 BINGHAM ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3160", "Fax Number": "215-400-3161", "Website": "https://crossan.philasd.org/", "School Leader Name": "MS KHADIJAH BRIGHT", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8240", "name": "Hamilton Disston School", "sort_name": "Disston, Hamilton School", "abbr_name": "Disston", "geom": {"type": "Point", "coordinates": [-75.04658904, 40.02836911]}, "Year Opened": "1924", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "2019-2020", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "6801 COTTAGE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19135", "Phone Number": "215-400-3350", "Fax Number": "215-400-3351", "Website": "https://disston.philasd.org/", "School Leader Name": "MRS MICHELE HUTZ", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Angela Butler", "FACE Liaison Email": "abutler@philasd.org", "FACE Liaison Phone Number": "215-400-5856", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8250", "name": "Edwin Forrest School", "sort_name": "Forrest, Edwin School", "abbr_name": "Forrest", "geom": {"type": "Point", "coordinates": [-75.035891, 40.03444]}, "Year Opened": "1929", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "7300 COTTAGE ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-400-3330", "Fax Number": "215-400-3331", "Website": "https://forrest.philasd.org/", "School Leader Name": "MR VANCE QUITMAN-MCNEAR", "Learning Network": "Network 12", "Assistant Superintendent": "JAMINA CLAY", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8260", "name": "Fox Chase School", "sort_name": "Fox Chase School", "abbr_name": "Fox Chase", "geom": {"type": "Point", "coordinates": [-75.082129, 40.076307]}, "Year Opened": "1949", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "500 RHAWN ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3170", "Fax Number": "215-400-3171", "Website": "https://foxchase.philasd.org/", "School Leader Name": "MS ANGELIQUE LEIZEROWICZ", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8270", "name": "Thomas Holme School", "sort_name": "Holme, Thomas School", "abbr_name": "Holme", "geom": {"type": "Point", "coordinates": [-75.008965, 40.054988]}, "Year Opened": "1950", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "9125 ACADEMY RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19114", "Phone Number": "215-400-3130", "Fax Number": "215-400-3131", "Website": "https://holme.philasd.org/", "School Leader Name": "MRS CRYSTLE ROYE-GILL", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8300", "name": "Mayfair School", "sort_name": "Mayfair School", "abbr_name": "Mayfair", "geom": {"type": "Point", "coordinates": [-75.05339332, 40.03945436]}, "Year Opened": "1949", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "3001 PRINCETON AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19149", "Phone Number": "215-400-3280", "Fax Number": "215-400-3281", "Website": "https://mayfair.philasd.org/", "School Leader Name": "MR WILLIAM DAY JR", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8310", "name": "J. Hampton Moore School", "sort_name": "Moore, J. Hampton School", "abbr_name": "Moore", "geom": {"type": "Point", "coordinates": [-75.076912, 40.049135]}, "Year Opened": "1952", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "9", "Multiple Addresses": "N/A", "Street Address": "6900 SUMMERDALE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19111", "Phone Number": "215-400-3180", "Fax Number": "215-400-3181", "Website": "https://moore.philasd.org/", "School Leader Name": "MR TIMOTHY GLYNN", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8340", "name": "Solomon Solis-Cohen School", "sort_name": "Solis-Cohen, Solomon School", "abbr_name": "Solis-Cohen", "geom": {"type": "Point", "coordinates": [-75.064725, 40.044644]}, "Year Opened": "1948", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "7001 HORROCKS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19149", "Phone Number": "215-400-3250", "Fax Number": "215-400-3251", "Website": "https://soliscohen.philasd.org/", "School Leader Name": "MS MICHELINA SERIANNI", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8350", "name": "Gilbert Spruance School", "sort_name": "Spruance, Gilbert School", "abbr_name": "Spruance", "geom": {"type": "Point", "coordinates": [-75.07232936, 40.03756142]}, "Year Opened": "1949", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "6401 HORROCKS ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19149", "Phone Number": "215-400-3290", "Fax Number": "215-400-3291", "Website": "https://spruance.philasd.org/", "School Leader Name": "MR KWAND LANG", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8360", "name": "Rhawnhurst School", "sort_name": "Rhawnhurst School", "abbr_name": "Rhawnhurst", "geom": {"type": "Point", "coordinates": [-75.05898166, 40.05869601]}, "Year Opened": "1949", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "7809 CASTOR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19152", "Phone Number": "215-400-3220", "Fax Number": "215-400-3221", "Website": "https://rhawnhurst.philasd.org/", "School Leader Name": "MS JOY ELLIS", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8370", "name": "Watson Comly School", "sort_name": "Comly, Watson School", "abbr_name": "Comly", "geom": {"type": "Point", "coordinates": [-75.0091088, 40.12096486]}, "Year Opened": "1929", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "1001 BYBERRY RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19116", "Phone Number": "215-400-3010", "Fax Number": "215-400-3011", "Website": "https://comly.philasd.org/", "School Leader Name": "MR RAYMOND REALDINE", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8380", "name": "Louis H. Farrell School", "sort_name": "Farrell, Louis H. School", "abbr_name": "Farrell", "geom": {"type": "Point", "coordinates": [-75.05241476, 40.06657162]}, "Year Opened": "1959", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "8300 CASTOR AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19152", "Phone Number": "215-400-3230", "Fax Number": "215-400-3231", "Website": "https://farrell.philasd.org/", "School Leader Name": "MR PETER JEPSEN", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8390", "name": "A.L. Fitzpatrick School", "sort_name": "Fitzpatrick, A. L. School", "abbr_name": "Fitzpatrick", "geom": {"type": "Point", "coordinates": [-74.976529, 40.080306]}, "Year Opened": "1960", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "11061 KNIGHTS RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19154", "Phone Number": "215-400-3060", "Fax Number": "215-400-3061", "Website": "https://fitzpatrick.philasd.org/", "School Leader Name": "MS KAREN WHITE", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Jaime Serrano", "FACE Liaison Email": "jlserrano@philasd.org", "FACE Liaison Phone Number": "215-400-5898", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8400", "name": "Anne Frank School", "sort_name": "Frank, Anne School", "abbr_name": "Frank, Anne", "geom": {"type": "Point", "coordinates": [-75.028222, 40.088288]}, "Year Opened": "1962", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "2000 BOWLER ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19115", "Phone Number": "215-400-3070", "Fax Number": "215-400-3071", "Website": "https://annefrank.philasd.org/", "School Leader Name": "MR MAX KOMINS", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8410", "name": "Robert B. Pollock School", "sort_name": "Pollock, Robert B. School", "abbr_name": "Pollock", "geom": {"type": "Point", "coordinates": [-75.04414659999999, 40.0457222]}, "Year Opened": "1962", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "3001 RYAN AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19152", "Phone Number": "215-400-3210", "Fax Number": "215-400-3211", "Website": "https://pollock.philasd.org/", "School Leader Name": "MS YVETTE JACKSON", "Learning Network": "Network 9", "Assistant Superintendent": "TAMARA EDWARDS", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8420", "name": "Stephen Decatur School", "sort_name": "Decatur, Stephen School", "abbr_name": "Decatur", "geom": {"type": "Point", "coordinates": [-74.970535, 40.095818]}, "Year Opened": "1964", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "3500 ACADEMY RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19154", "Phone Number": "215-400-3050", "Fax Number": "215-400-3051", "Website": "https://decatur.philasd.org/", "School Leader Name": "MR DOUGLAS STROBEL", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8430", "name": "Joseph Greenberg School", "sort_name": "Greenberg, Joseph School", "abbr_name": "Greenberg", "geom": {"type": "Point", "coordinates": [-75.05771102, 40.09608652]}, "Year Opened": "1964", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "600 SHARON LN", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19115", "Phone Number": "215-400-3080", "Fax Number": "215-400-3081", "Website": "https://greenberg.philasd.org/", "School Leader Name": "MS GINA HUBBARD", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Dalila Bedoya", "FACE Liaison Email": "dbedoya@philasd.org", "FACE Liaison Phone Number": "215-400-5866", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8440", "name": "William H. Loesche School", "sort_name": "Loesche, William H. School", "abbr_name": "Loesche", "geom": {"type": "Point", "coordinates": [-75.02386784, 40.11358364]}, "Year Opened": "1965", "School Level": "Elementary", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-05", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "595 TOMLINSON RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19116", "Phone Number": "215-400-3020", "Fax Number": "215-400-3021", "Website": "https://loesche.philasd.org/", "School Leader Name": "MS SHERIN KURIAN", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Lyn Johnson", "FACE Liaison Email": "ljohnson13@philasd.org", "FACE Liaison Phone Number": "215-400-5884", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8450", "name": "YESPhilly", "sort_name": "YESPhilly", "abbr_name": "YESPhilly", "geom": {"type": "Point", "coordinates": [-75.1541276, 39.9944643]}, "Year Opened": "2013", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "Youth Empowerment Services", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "2709 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19132", "Phone Number": "215-769-0340", "Fax Number": "215-972-2329", "Website": "http://www.yesphilly.org", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8460", "name": "Philadelphia Learning Academy South", "sort_name": "Philadelphia Learning Academy South (PLAS)", "abbr_name": "PLAS", "geom": {"type": "Point", "coordinates": [-75.21013521, 39.96971371]}, "Year Opened": "2009", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Intervention/Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4300 WESTMINSTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-9080", "Fax Number": "215-400-9081", "Website": "https://plasouth.philasd.org/", "School Leader Name": "MR DARRYL BLACKWELL", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Kenisha Stokes", "FACE Liaison Email": "kstokes@philasd.org", "FACE Liaison Phone Number": "215-400-5837", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8470", "name": "Philadelphia Learning Academy North", "sort_name": "Philadelphia Learning Academy North (PLAN)", "abbr_name": "PLAN", "geom": {"type": "Point", "coordinates": [-75.12599679, 40.01425525]}, "Year Opened": "2009", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "08-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Intervention/Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "4224 N FRONT ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19140", "Phone Number": "215-400-9050", "Fax Number": "215-400-9051", "Website": "https://planorth.philasd.org/", "School Leader Name": "", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "LuQman Abdullah", "FACE Liaison Email": "labdullah@philasd.org", "FACE Liaison Phone Number": "215-400-5852", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8540", "name": "Pennypack House School", "sort_name": "Pennypack House School", "abbr_name": "Pennypack", "geom": {"type": "Point", "coordinates": [-75.019689, 40.032021]}, "Year Opened": "1952", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Justice", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "6", "Multiple Addresses": "N/A", "Street Address": "7901 STATE RD", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19136", "Phone Number": "215-685-7752", "Fax Number": "215-335-5393", "Website": "https://pennypackhouse.philasd.org/", "School Leader Name": "MS BARBARA WELLS", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8560", "name": "The Workshop School", "sort_name": "The Workshop School", "abbr_name": "The Workshop", "geom": {"type": "Point", "coordinates": [-75.21855329, 39.95530589]}, "Year Opened": "2013", "School Level": "High", "Admission Type": "Citywide", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "Programs", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "221 S HANSON ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19139", "Phone Number": "215-400-7730", "Fax Number": "215-400-7731", "Website": "https://workshopschool.philasd.org/", "School Leader Name": "MRS AYANNA WALKER", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8690", "name": "Crossroads Accelerated Academy", "sort_name": "Crossroads Accelerated Academy", "abbr_name": "Crossroads Accel", "geom": {"type": "Point", "coordinates": [-75.21013521, 39.96971371]}, "Year Opened": "2009", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "07-10", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "3", "Multiple Addresses": "N/A", "Street Address": "4300 WESTMINSTER AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19104", "Phone Number": "215-400-9070", "Fax Number": "215-400-9071", "Website": "https://crossroads-accelerated.philasd.org/", "School Leader Name": "DR KIMBERLY GRAHN", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8770", "name": "John Hancock Demonstration School", "sort_name": "John Hancock Demonstration School", "abbr_name": "Hancock Demonstration", "geom": {"type": "Point", "coordinates": [-74.98842793, 40.06774728]}, "Year Opened": "2016", "School Level": "Elementary-Middle", "Admission Type": "Neighborhood", "Current Grade Span Served": "00-08", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "SDP K12 Schools", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "10", "Multiple Addresses": "N/A", "Street Address": "3700 MORRELL AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19114", "Phone Number": "215-400-3120", "Fax Number": "215-400-3121", "Website": "https://hancock.philasd.org/", "School Leader Name": "MS MELISSA BRAGG", "Learning Network": "Network 8", "Assistant Superintendent": "SHAKEERA WARTHEN", "FACE Liaison Name": "Marcus Davis", "FACE Liaison Email": "mdavis9@philasd.org", "FACE Liaison Phone Number": "215-400-5859", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "0", "Grade 10": "0", "Grade 11": "0", "Grade 12": "0"}, {"sdp_id": "8780", "name": "Philadelphia Virtual Academy", "sort_name": "Philadelphia Virtual Academy (PVA)", "abbr_name": "PVA", "geom": {"type": "Point", "coordinates": [-75.16264405, 39.96102159]}, "Year Opened": "2013", "School Level": "Elementary-Middle-High", "Admission Type": "Virtual", "Current Grade Span Served": "00-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Virtual", "Alternate Education Type": "", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "440 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-3110", "Fax Number": "215-400-3111", "Website": "https://pva.philasd.org/", "School Leader Name": "MR DAVID ANDERSON", "Learning Network": "Innovation", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "Joy McIntosh", "FACE Liaison Email": "jmcintosh@philasd.org", "FACE Liaison Phone Number": "215-400-5888", "Grade K": "1", "Grade 1": "1", "Grade 2": "1", "Grade 3": "1", "Grade 4": "1", "Grade 5": "1", "Grade 6": "1", "Grade 7": "1", "Grade 8": "1", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8860", "name": "One Bright Ray Mansion", "sort_name": "One Bright Ray Mansion", "abbr_name": "OBR Mansion", "geom": {"type": "Point", "coordinates": [-75.18402464, 39.99074371]}, "Year Opened": "2018", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "International Education and Community Initiatives", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3133 RIDGE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "", "Fax Number": "", "Website": "https://www.onebrightraycommunity.org/school-life/obr-team/mansion-campus/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8870", "name": "One Bright Ray Mansion Evening", "sort_name": "One Bright Ray Mansion EOP", "abbr_name": "OBR Mansion Evn", "geom": {"type": "Point", "coordinates": [-75.18402464, 39.99074371]}, "Year Opened": "2018", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "International Education and Community Initiatives", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Adult Diploma", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "3133 RIDGE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19121", "Phone Number": "", "Fax Number": "", "Website": "https://www.onebrightraycommunity.org/school-life/obr-team/mansion-adult-campus/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8890", "name": "One Bright Ray - Simpson Campus", "sort_name": "One Bright Ray - Simpson", "abbr_name": "OBR Simpson", "geom": {"type": "Point", "coordinates": [-75.10560096, 40.00528]}, "Year Opened": "2007", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "Contracted", "Management Organization": "International Education and Community Initiatives", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Accelerated", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "7", "Multiple Addresses": "N/A", "Street Address": "1142 E ERIE AVE", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19124", "Phone Number": "215-744-6000", "Fax Number": "", "Website": "http://www.onebrightraycommunity.org/school-life/obr-team/simpson-campus/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}, {"sdp_id": "8900", "name": "Re-Engagement Center", "sort_name": "Re-Engagement Center (REC)", "abbr_name": "Re-Engagement", "geom": {"type": "Point", "coordinates": [-75.16264405, 39.96102159]}, "Year Opened": "2008", "School Level": "Transition/Overage School", "Admission Type": "Alternative", "Current Grade Span Served": "09-12", "Grade Span at Scale": "N/A", "Phasing-In": "0", "Phasing-Out": "0", "Governance": "District", "Management Organization": "Phila Board of Education", "School Reporting Category": "Alternate Schools", "Alternate Education Type": "Justice", "Major Intervention": "N/A", "Major Intervention Year": "N/A", "Community School Cohort": "", "CTE Status": "", "Title I Designation": "0", "Federal Accountability Designation": "", "City Council District": "5", "Multiple Addresses": "N/A", "Street Address": "440 N BROAD ST", "City": "PHILADELPHIA", "State": "PA", "Zip Code": "19130", "Phone Number": "215-400-6700", "Fax Number": "215-400-4179", "Website": "https://www.philasd.org/opportunitynetwork/reengagement/", "School Leader Name": "", "Learning Network": "Opportunity", "Assistant Superintendent": "RYAN SCALLON", "FACE Liaison Name": "N/A", "FACE Liaison Email": "N/A", "FACE Liaison Phone Number": "N/A", "Grade K": "0", "Grade 1": "0", "Grade 2": "0", "Grade 3": "0", "Grade 4": "0", "Grade 5": "0", "Grade 6": "0", "Grade 7": "0", "Grade 8": "0", "Grade 9": "1", "Grade 10": "1", "Grade 11": "1", "Grade 12": "1"}] diff --git a/examples/school-explorer-for-parents/site/index.html b/examples/school-explorer-for-parents/site/index.html deleted file mode 100644 index e5ae241..0000000 --- a/examples/school-explorer-for-parents/site/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - School Explorer - - - - - - - - -

Philadelphia School Explorer

-
-
- - - - - - - - - - - - - - -
- -
    -
    - -
    -
    - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/examples/school-explorer-for-parents/site/js/address-entry.js b/examples/school-explorer-for-parents/site/js/address-entry.js deleted file mode 100644 index 0a8459d..0000000 --- a/examples/school-explorer-for-parents/site/js/address-entry.js +++ /dev/null @@ -1,82 +0,0 @@ -/* globals turf */ - -import { debounce } from './function-tools.js'; - -const addressSearchInput = document.querySelector('[name="address-search"]'); -const addressOptionsList = document.querySelector('#address-options'); - -function initializeAddressEntry(catchments, eventBus) { - addressSearchInput.addEventListener( - 'input', - debounce(() => handleAddressSearch(catchments, eventBus), 500), - ); -} - -async function handleAddressSearch(catchments, eventBus) { - const searchAddress = addressSearchInput.value; - - if (searchAddress === '') { - const detail = { place: null, catchment: null }; - const evt = new CustomEvent('addresschanged', { detail }); - eventBus.dispatchEvent(evt); - return; - } - - const apiKey = 'pk.eyJ1IjoibWp1bWJlLXRlc3QiLCJhIjoiY2wwb3BudmZ3MWdyMjNkbzM1c2NrMGQwbSJ9.2ATDPobUwpa7Ou5jsJOGYA'; - const resp = await fetch(`https://api.mapbox.com/geocoding/v5/mapbox.places/${searchAddress}.json?access_token=${apiKey}`); - const addressOptions = await resp.json(); - - addressOptionsList.innerHTML = ` - ${addressOptions.features.map((feature) => ` -
  • - ${feature.place_name} -
  • - `).join('')} - `; - - for (const option of addressOptionsList.querySelectorAll('li')) { - option.addEventListener('click', (evt) => { - handleAddressOptionSelect(evt, catchments, eventBus); - }); - } -} - -/** - * Handle the click of an address option list item. - * - * @param {PointerEvent} evt The event from clicking the list item - * @param {FeatureCollection} catchments An array of catchment features - * @param {EventTarget} eventBus The application event bus - */ -function handleAddressOptionSelect(evt, catchments, eventBus) { - const option = evt.target; - - addressSearchInput.value = option.dataset.name; - addressOptionsList.innerHTML = ''; - - const coords = [parseFloat(option.dataset.lon), parseFloat(option.dataset.lat)]; - const catchment = catchments.features.find((feature) => turf.booleanPointInPolygon(coords, feature)); - - const detail = { - place: { - type: 'Feature', - properties: { - address: option.dataset.name, - }, - geometry: { - type: 'Point', - coordinates: coords, - }, - }, - catchment, - }; - console.log(detail); - const newEvt = new CustomEvent('addresschanged', { detail }); - eventBus.dispatchEvent(newEvt); -} - -export { - initializeAddressEntry, -}; diff --git a/examples/school-explorer-for-parents/site/js/function-tools.js b/examples/school-explorer-for-parents/site/js/function-tools.js deleted file mode 100644 index 52ed5ac..0000000 --- a/examples/school-explorer-for-parents/site/js/function-tools.js +++ /dev/null @@ -1,74 +0,0 @@ -/** - * NOTE: - * ~~~~~ - * The following functions are re-implementations of functions that are - * available from the Lodash library: https://lodash.com/ - */ - -/** - * Creates an array of values by a particular attribute value (denoted by - * `key`) off of each object in an input array. For example: - * - * const users = [ - * { 'user': 'barney' }, - * { 'user': 'fred' } - * ]; - * - * _.map(users, 'user'); - * // => ['barney', 'fred'] - * - * @param {Array} arr The input array - * @param {String} key The attribute name to search for within each object - * @return {Array} A new array of only the given properties of each input array object - */ -function pluck(arr, key) { - return arr.map((elem) => elem[key]); -} - -/** - * Create a new array with only unique elements. Order is not guaranteed to be - * maintained. For example: - * - * _.uniq([1, 1, 2]); - * // => [1, 2] - * - * @param {Array} arr An input array - * @return {Array} A new array with only the unique elements from the input - */ -function uniq(arr) { - return [...new Set(arr)]; -} - -/** - * Create a new function that waits some number of milliseconds after its last - * call to run the given function. Useful for doing things like requesting data - * from an API, where you want to limit the frequency with which you call the - * API. - * - * @param {Function} func The function that should be run when the timer runs out - * @param {Number} timeout How long (in milliseconds) to wait after the last call to actually run the function - * @return {Function} A new function that waits some number of milliseconds after its last call to run the wrapped function - */ -function debounce(func, timeout) { - let timer = null; - - function wrapper(...args) { - if (timer) { - clearTimeout(timer); - } - timer = setTimeout(() => { - func.apply(this, args); // eslint-disable-line no-invalid-this - timer = null; - }, timeout); - } - - return wrapper; -} - -window.functionTools = { - pluck, - uniq, - debounce, -}; - -export { pluck, uniq, debounce }; diff --git a/examples/school-explorer-for-parents/site/js/main.js b/examples/school-explorer-for-parents/site/js/main.js deleted file mode 100644 index edbefbb..0000000 --- a/examples/school-explorer-for-parents/site/js/main.js +++ /dev/null @@ -1,29 +0,0 @@ -import { initializeSchoolMap } from './school-map.js'; -import { initializeSchoolList } from './school-list.js'; -import { initializeCountDisplay } from './school-count.js'; -import { initializeAddressEntry } from './address-entry.js'; -import { setupFilterEvents } from './school-filters.js'; - - -const [schoolsReq, catchmentsReq] = await Promise.all([ - fetch('data/schools.json'), - fetch('data/catchments.json'), -]); -const schools = await schoolsReq.json(); -const catchments = await catchmentsReq.json(); - -const eventBus = new EventTarget(); - -const schoolMap = initializeSchoolMap(schools, eventBus); -const schoolList = initializeSchoolList(schools, eventBus); -const schoolCountDisplay = initializeCountDisplay(schools, eventBus); -const addressEntry = initializeAddressEntry(catchments, eventBus); -setupFilterEvents(schools, eventBus); - -// Make these variables globally available. -window.schools = schools; -window.catchments = catchments; -window.schoolMap = schoolMap; -window.schoolList = schoolList; -window.addressEntry = addressEntry; -window.schoolCountDisplay = schoolCountDisplay; diff --git a/examples/school-explorer-for-parents/site/js/school-count.js b/examples/school-explorer-for-parents/site/js/school-count.js deleted file mode 100644 index 06d4820..0000000 --- a/examples/school-explorer-for-parents/site/js/school-count.js +++ /dev/null @@ -1,23 +0,0 @@ -function initializeCountDisplay(schools, eventBus) { - const schoolCountDisplay = document.querySelector('#school-count'); - - updateCountDisplay(schools, schoolCountDisplay); - setupCountDisplayEventHandlers(schoolCountDisplay, eventBus); - - return schoolCountDisplay; -} - -function setupCountDisplayEventHandlers(display, eventBus) { - eventBus.addEventListener('filterschanged', (evt) => { - const { include } = evt.detail; - updateCountDisplay(include, display); - }); -} - -function updateCountDisplay(schools, display) { - display.innerHTML = `Showing ${schools.length} school${schools.length === 1 ? '' : 's'}`; -} - -export { - initializeCountDisplay, -}; diff --git a/examples/school-explorer-for-parents/site/js/school-filters.js b/examples/school-explorer-for-parents/site/js/school-filters.js deleted file mode 100644 index 6b439ae..0000000 --- a/examples/school-explorer-for-parents/site/js/school-filters.js +++ /dev/null @@ -1,71 +0,0 @@ -/* globals turf */ - -const gradeCheckboxes = document.querySelectorAll('[name="school-filter-grade"]'); -const admissionCheckboxes = document.querySelectorAll('[name="school-filter-admission"]'); -const nameSubstringInput = document.querySelector('[name="school-filter-name"]'); - -window.schoolNameFilter = nameSubstringInput; -window.schoolGradeFilters = gradeCheckboxes; - -let currentCatchment = null; - -function shouldShowSchool(school) { - const filterGrades = Array.from(gradeCheckboxes) - .filter((c) => c.checked) - .map((c) => `Grade ${c.value}`); - for (const g of filterGrades) { - if (school[g] === '0') { - return false; - } - } - - const filterAdmissions = Array.from(admissionCheckboxes) - .filter((c) => c.checked) - .map((c) => c.value); - if (filterAdmissions.length > 0 && !filterAdmissions.includes(school['Admission Type'])) { - return false; - } - - const lSchoolName = school.name.toLowerCase(); - const lFilterNameSubstring = nameSubstringInput.value.toLowerCase(); - if (!lSchoolName.includes(lFilterNameSubstring)) { - return false; - } - - if (school['Admission Type'] === 'Neighborhood' && currentCatchment && - !turf.booleanPointInPolygon(school.geom.coordinates, currentCatchment)) { - return false; - } - - return true; -} - -function updateShownSchools(allSchools, eventBus) { - const schoolsToShow = allSchools.filter(shouldShowSchool); - const detail = { 'include': schoolsToShow }; - const evt = new CustomEvent('filterschanged', { detail }); - eventBus.dispatchEvent(evt); -} - -function setupFilterEvents(allSchools, eventBus) { - for (const filter of document.querySelectorAll('#school-filters input')) { - filter.addEventListener('change', () => { - updateShownSchools(allSchools, eventBus); - }); - filter.addEventListener('input', () => { - updateShownSchools(allSchools, eventBus); - }); - } - - eventBus.addEventListener('addresschanged', (evt) => { - const { catchment } = evt.detail; - currentCatchment = catchment; - updateShownSchools(allSchools, eventBus); - }); -} - -export { - shouldShowSchool, - setupFilterEvents, - updateShownSchools, -}; diff --git a/examples/school-explorer-for-parents/site/js/school-list.js b/examples/school-explorer-for-parents/site/js/school-list.js deleted file mode 100644 index 1063a59..0000000 --- a/examples/school-explorer-for-parents/site/js/school-list.js +++ /dev/null @@ -1,92 +0,0 @@ -import { htmlToElement } from './template-tools.js'; - -function initializeSchoolList(schools, eventBus) { - const list = document.getElementById('school-list'); - list.highlightedIDs = new Set(); - list.items = {}; - list.eventBus = eventBus; - - showSchoolsInList(schools, list); - setupListEventHandlers(list); - - return list; -} - -function setupListEventHandlers(list) { - list.eventBus.addEventListener('selectionchanged', (evt) => { - const { added, removed } = evt.detail; - highlightSchoolsInList(added, list); - unhighlightSchoolsInList(removed, list); - }); - - list.eventBus.addEventListener('filterschanged', (evt) => { - const { include } = evt.detail; - showSchoolsInList(include, list); - }); -} - -function isHighlightedInList(school, list) { - const id = school['sdp_id']; - return list.highlightedIDs.has(id); -} - -function makeSchoolListItem(school, list) { - const isHighlighted = isHighlightedInList(school, list); - const html = ` -
  • - ${school.name} - ${school['Current Grade Span Served']} - ${school['Admission Type']} -
  • - `; - const li = htmlToElement(html); - li.addEventListener('click', () => { - const detail = isHighlightedInList(school, list) - ? { 'added': [], 'removed': [school] } - : { 'added': [school], 'removed': [] }; - const evt = new CustomEvent('selectionchanged', { detail }); - list.eventBus.dispatchEvent(evt); - }); - return li; -} - -function redrawSchoolsInList(schools, list) { - for (const school of schools) { - const id = school['sdp_id']; - const li = list.querySelector(`li[data-sdp-id="${id}"]`); - if (li) { - li.replaceWith(makeSchoolListItem(school, list)); - } - } -} - -function highlightSchoolsInList(schools, list) { - for (const school of schools) { - const id = school['sdp_id']; - list.highlightedIDs.add(id); - } - redrawSchoolsInList(schools, list); -} - -function unhighlightSchoolsInList(schools, list) { - for (const school of schools) { - const id = school['sdp_id']; - list.highlightedIDs.delete(id); - } - redrawSchoolsInList(schools, list); -} - -function showSchoolsInList(schools, list) { - list.innerHTML = ''; - for (const school of schools) { - const li = makeSchoolListItem(school, list); - list.append(li); - } -} - -export { - highlightSchoolsInList, - initializeSchoolList, - showSchoolsInList, - unhighlightSchoolsInList, -}; diff --git a/examples/school-explorer-for-parents/site/js/school-map.js b/examples/school-explorer-for-parents/site/js/school-map.js deleted file mode 100644 index 7474849..0000000 --- a/examples/school-explorer-for-parents/site/js/school-map.js +++ /dev/null @@ -1,171 +0,0 @@ -function initializeSchoolMap(schools, eventBus) { - const schoolMap = L.map('school-map').setView([40.047591, -75.153350], 10); - L.tileLayer('https://api.mapbox.com/styles/v1/mjumbe-test/cl8w256ur002h14qe8m4a2n3s/tiles/256/{z}/{x}/{y}@2x?access_token={apiKey}', { - apiKey: 'pk.eyJ1IjoibWp1bWJlLXRlc3QiLCJhIjoiY2wwb3BudmZ3MWdyMjNkbzM1c2NrMGQwbSJ9.2ATDPobUwpa7Ou5jsJOGYA', - maxZoom: 19, - attribution: '© Mapbox © OpenStreetMap Improve this map', - }).addTo(schoolMap); - - schoolMap.catchmentPane = schoolMap.createPane('catchmentPane'); - schoolMap.catchmentPane.style.zIndex = 300; - - schoolMap.userAddressLayer = L.layerGroup().addTo(schoolMap); - schoolMap.highlightedIDs = new Set(); - schoolMap.schoolLayers = {}; - schoolMap.eventBus = eventBus; - - showSchoolsOnMap(schools, schoolMap); - setupMapEventHandlers(schoolMap); - - return schoolMap; -} - -function setupMapEventHandlers(map) { - map.eventBus.addEventListener('selectionchanged', (evt) => { - const { added, removed } = evt.detail; - highlightSchoolsOnMap(added, map); - unhighlightSchoolsOnMap(removed, map); - }); - - map.eventBus.addEventListener('filterschanged', (evt) => { - const { include } = evt.detail; - showSchoolsOnMap(include, map); - }); - - map.eventBus.addEventListener('addresschanged', (evt) => { - const { place, catchment } = evt.detail; - showUserAddressOnMap(place, catchment, map); - }); -} - -function makeSchoolFeature(school) { - const feature = { - type: 'Feature', - id: school['sdp_id'], - properties: {}, - geometry: school.geom, - }; - return feature; -} - -function getSchoolStyle(feature, map) { - if (map.highlightedIDs.has(feature.id)) { - return { - stroke: true, - color: 'red', - fillColor: 'blue', - fillOpacity: 0.5, - radius: 3, - }; - } else { - return { - stroke: false, - fillColor: 'blue', - fillOpacity: 0.5, - radius: 3, - }; - } -} - -let firstFit = false; -function redrawSchoolsOnMap(schools, map) { - let boundsToFit = null; - - for (const school of schools) { - const id = school['sdp_id']; - const layer = map.schoolLayers[id]; - if (layer) { - layer.resetStyle(); - } - - if (!firstFit) { - if (boundsToFit === null) { - boundsToFit = layer.getBounds(); - } else { - boundsToFit.extend(layer.getBounds()); - } - } - } - - if (!firstFit) { - map.fitBounds(boundsToFit); - firstFit = true; - } -} - -function isHighlightedOnMap(school, map) { - const id = school['sdp_id']; - return map.highlightedIDs.has(id); -} - -function highlightSchoolsOnMap(schools, map) { - for (const school of schools) { - const id = school['sdp_id']; - map.highlightedIDs.add(id); - } - redrawSchoolsOnMap(schools, map); -} - -function unhighlightSchoolsOnMap(schools, map) { - for (const school of schools) { - const id = school['sdp_id']; - map.highlightedIDs.delete(id); - } - redrawSchoolsOnMap(schools, map); -} - -function showSchoolsOnMap(schools, map) { - const ids = new Set(schools.map((s) => s['sdp_id'])); - - // Remove features with IDs not in the schools array - for (const id of Object.keys(map.schoolLayers)) { - if (!ids.has(id)) { - const layer = map.schoolLayers[id]; - map.removeLayer(layer); - delete map.schoolLayers[id]; - } - } - - // Add new features for IDs not in the layers - for (const school of schools) { - const feature = makeSchoolFeature(school); - const id = feature.id; - if (map.schoolLayers[id] === undefined) { - map.schoolLayers[id] = L.geoJSON(feature, { - pointToLayer: (p, ll) => L.circleMarker(ll), - style: (f) => getSchoolStyle(f, map), - }) - .on('click', () => { - const detail = isHighlightedOnMap(school, map) - ? { 'added': [], 'removed': [school] } - : { 'added': [school], 'removed': [] }; - const evt = new CustomEvent('selectionchanged', { detail }); - map.eventBus.dispatchEvent(evt); - }) - .addTo(map); - } - } - - redrawSchoolsOnMap(schools, map); -} - -function showUserAddressOnMap(place, catchment, map) { - map.userAddressLayer.clearLayers(); - - if (catchment) { - L.geoJSON(catchment, { pane: 'catchmentPane', style: { color: 'gray', weight: 1 }}) - .addTo(map.userAddressLayer); - } - - if (place) { - L.geoJSON(place) - .addTo(map.userAddressLayer); - } -} - -export { - highlightSchoolsOnMap, - initializeSchoolMap, - showSchoolsOnMap, - unhighlightSchoolsOnMap, -}; diff --git a/examples/school-explorer-for-parents/site/js/template-tools.js b/examples/school-explorer-for-parents/site/js/template-tools.js deleted file mode 100644 index 3818461..0000000 --- a/examples/school-explorer-for-parents/site/js/template-tools.js +++ /dev/null @@ -1,33 +0,0 @@ -/* ==================== -The following two functions take a string of HTML and create DOM element objects -representing the tags, using the `template` feature of HTML. See the following -for more information: https://stackoverflow.com/a/35385518/123776 -==================== */ - -/* eslint-disable no-unused-vars */ - -/** - * @param {String} html HTML representing a single element - * @return {Element} - */ -function htmlToElement(html) { - const template = document.createElement('template'); - const trimmedHtml = html.trim(); // Never return a text node of whitespace as the result - template.innerHTML = trimmedHtml; - return template.content.firstChild; -} - -/** - * @param {String} html HTML representing any number of sibling elements - * @return {NodeList} - */ -function htmlToElements(html) { - const template = document.createElement('template'); - template.innerHTML = html; - return template.content.childNodes; -} - -export { - htmlToElement, - htmlToElements, -}; diff --git a/index.html b/index.html new file mode 100644 index 0000000..c9e0921 --- /dev/null +++ b/index.html @@ -0,0 +1,146 @@ + + + + + + Community Flood Risk Dashboard + + + + + + + + +
    +
    +

    Community Flood Risk Dashboard

    +

    Understand flood exposure, find shelters, and plan insurance coverage.

    +
    +
    + + +
    +
    + +
    +
    +
    +
    +
    + Flood Zone Layers +
    +

    Select zones to display on the map.

    +
    +
    +
    +
    +

    Zone Guide

    +
      +
    • VE — Coastal flood with wave action
    • +
    • AE — High risk (Base Flood Elevation)
    • +
    • AO — River/stream flood, depth 1-3 ft
    • +
    • A — High risk (no Base Flood Elevation)
    • +
    • X — Moderate or minimal risk
    • +
    • Shelters
    • +
    +
    +
    +

    Parcel Value per sq. meter

    +
    + Low +
    + High +
    +
    +
    +
    + + +
    + + + + + + + + + + + + + diff --git a/package-lock.json b/package-lock.json index 1d7be08..27bb014 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,4529 +1,996 @@ { - "name": "dashboard-project", - "version": "1.0.0", - "lockfileVersion": 2, + "name": "data_dashboard", + "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "dashboard-project", - "version": "1.0.0", - "license": "ISC", - "devDependencies": { - "eslint": "^8.48.0", - "eslint-config-google": "^0.14.0", - "stylelint": "^15.10.3", - "stylelint-config-standard": "^34.0.0" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", - "dev": true, "dependencies": { - "@babel/highlight": "^7.22.13", - "chalk": "^2.4.2" - }, - "engines": { - "node": ">=6.9.0" + "vite": "^7.1.12" } }, - "node_modules/@babel/code-frame/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.11.tgz", + "integrity": "sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/@babel/code-frame/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.11.tgz", + "integrity": "sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/@babel/code-frame/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/code-frame/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.11.tgz", + "integrity": "sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.8.0" + "node": ">=18" } }, - "node_modules/@babel/code-frame/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, + "node_modules/@esbuild/android-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.11.tgz", + "integrity": "sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/@babel/code-frame/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.11.tgz", + "integrity": "sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.11.tgz", + "integrity": "sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=6.9.0" + "node": ">=18" } }, - "node_modules/@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.11.tgz", + "integrity": "sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=6.9.0" + "node": ">=18" } }, - "node_modules/@babel/highlight/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.11.tgz", + "integrity": "sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.11.tgz", + "integrity": "sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/@babel/highlight/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.11.tgz", + "integrity": "sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@babel/highlight/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/@babel/highlight/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.11.tgz", + "integrity": "sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.8.0" + "node": ">=18" } }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.11.tgz", + "integrity": "sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/@babel/highlight/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.11.tgz", + "integrity": "sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/@csstools/css-parser-algorithms": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.2.tgz", - "integrity": "sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.11.tgz", + "integrity": "sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" ], "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^2.2.1" + "node": ">=18" } }, - "node_modules/@csstools/css-tokenizer": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.1.tgz", - "integrity": "sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.11.tgz", + "integrity": "sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" ], "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=18" } }, - "node_modules/@csstools/media-query-list-parser": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.5.tgz", - "integrity": "sha512-IxVBdYzR8pYe89JiyXQuYk4aVVoCPhMJkz6ElRwlVysjwURTsTk/bmY/z4FfeRE+CRBMlykPwXEVUg8lThv7AQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.11.tgz", + "integrity": "sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" ], "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.3.2", - "@csstools/css-tokenizer": "^2.2.1" + "node": ">=18" } }, - "node_modules/@csstools/selector-specificity": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.0.tgz", - "integrity": "sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.11.tgz", + "integrity": "sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" ], "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss-selector-parser": "^6.0.13" + "node": ">=18" } }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.11.tgz", + "integrity": "sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + "node": ">=18" } }, - "node_modules/@eslint-community/regexpp": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.0.tgz", - "integrity": "sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ==", - "dev": true, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.11.tgz", + "integrity": "sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + "node": ">=18" } }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", - "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.11.tgz", + "integrity": "sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=18" } }, - "node_modules/@eslint/js": { - "version": "8.50.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.50.0.tgz", - "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==", - "dev": true, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.11.tgz", + "integrity": "sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=18" } }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.11", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", - "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.11.tgz", + "integrity": "sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], "engines": { - "node": ">=10.10.0" + "node": ">=18" } }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.11.tgz", + "integrity": "sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" + "node": ">=18" } }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.11.tgz", + "integrity": "sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">= 8" + "node": ">=18" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.11.tgz", + "integrity": "sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">= 8" + "node": ">=18" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.11.tgz", + "integrity": "sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">= 8" + "node": ">=18" } }, - "node_modules/@types/minimist": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.3.tgz", - "integrity": "sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A==", - "dev": true - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz", - "integrity": "sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==", - "dev": true + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.5.tgz", + "integrity": "sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] }, - "node_modules/acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.5.tgz", + "integrity": "sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.5.tgz", + "integrity": "sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.5.tgz", + "integrity": "sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.5.tgz", + "integrity": "sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.5.tgz", + "integrity": "sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.5.tgz", + "integrity": "sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.5.tgz", + "integrity": "sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.5.tgz", + "integrity": "sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.5.tgz", + "integrity": "sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.5.tgz", + "integrity": "sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.5.tgz", + "integrity": "sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.5.tgz", + "integrity": "sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.5.tgz", + "integrity": "sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.5.tgz", + "integrity": "sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/camelcase-keys": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-7.0.2.tgz", - "integrity": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==", - "dev": true, - "dependencies": { - "camelcase": "^6.3.0", - "map-obj": "^4.1.0", - "quick-lru": "^5.1.1", - "type-fest": "^1.2.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.5.tgz", + "integrity": "sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/camelcase-keys/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.5.tgz", + "integrity": "sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.5.tgz", + "integrity": "sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.5.tgz", + "integrity": "sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.5.tgz", + "integrity": "sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.5.tgz", + "integrity": "sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.5.tgz", + "integrity": "sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", - "dev": true, - "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.11.tgz", + "integrity": "sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.11", + "@esbuild/android-arm": "0.25.11", + "@esbuild/android-arm64": "0.25.11", + "@esbuild/android-x64": "0.25.11", + "@esbuild/darwin-arm64": "0.25.11", + "@esbuild/darwin-x64": "0.25.11", + "@esbuild/freebsd-arm64": "0.25.11", + "@esbuild/freebsd-x64": "0.25.11", + "@esbuild/linux-arm": "0.25.11", + "@esbuild/linux-arm64": "0.25.11", + "@esbuild/linux-ia32": "0.25.11", + "@esbuild/linux-loong64": "0.25.11", + "@esbuild/linux-mips64el": "0.25.11", + "@esbuild/linux-ppc64": "0.25.11", + "@esbuild/linux-riscv64": "0.25.11", + "@esbuild/linux-s390x": "0.25.11", + "@esbuild/linux-x64": "0.25.11", + "@esbuild/netbsd-arm64": "0.25.11", + "@esbuild/netbsd-x64": "0.25.11", + "@esbuild/openbsd-arm64": "0.25.11", + "@esbuild/openbsd-x64": "0.25.11", + "@esbuild/openharmony-arm64": "0.25.11", + "@esbuild/sunos-x64": "0.25.11", + "@esbuild/win32-arm64": "0.25.11", + "@esbuild/win32-ia32": "0.25.11", + "@esbuild/win32-x64": "0.25.11" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "license": "MIT", "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" + "node": ">=12.0.0" }, "peerDependencies": { - "typescript": ">=4.9.5" + "picomatch": "^3 || ^4" }, "peerDependenciesMeta": { - "typescript": { + "picomatch": { "optional": true } } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-functions-list": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.0.tgz", - "integrity": "sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg==", - "dev": true, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=12.22" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "dev": true, - "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", - "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decamelize-keys": { + "node_modules/picocolors": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", - "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", - "dev": true, - "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decamelize-keys/node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint": { - "version": "8.50.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.50.0.tgz", - "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.50.0", - "@humanwhocodes/config-array": "^0.11.11", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-google": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz", - "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "eslint": ">=5.16.0" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "license": "MIT", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=12" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", "dependencies": { - "estraverse": "^5.1.0" + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { - "node": ">=0.10" + "node": "^10 || ^12 || >=14" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, + "node_modules/rollup": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.5.tgz", + "integrity": "sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==", + "license": "MIT", "dependencies": { - "estraverse": "^5.2.0" + "@types/estree": "1.0.8" }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.52.5", + "@rollup/rollup-android-arm64": "4.52.5", + "@rollup/rollup-darwin-arm64": "4.52.5", + "@rollup/rollup-darwin-x64": "4.52.5", + "@rollup/rollup-freebsd-arm64": "4.52.5", + "@rollup/rollup-freebsd-x64": "4.52.5", + "@rollup/rollup-linux-arm-gnueabihf": "4.52.5", + "@rollup/rollup-linux-arm-musleabihf": "4.52.5", + "@rollup/rollup-linux-arm64-gnu": "4.52.5", + "@rollup/rollup-linux-arm64-musl": "4.52.5", + "@rollup/rollup-linux-loong64-gnu": "4.52.5", + "@rollup/rollup-linux-ppc64-gnu": "4.52.5", + "@rollup/rollup-linux-riscv64-gnu": "4.52.5", + "@rollup/rollup-linux-riscv64-musl": "4.52.5", + "@rollup/rollup-linux-s390x-gnu": "4.52.5", + "@rollup/rollup-linux-x64-gnu": "4.52.5", + "@rollup/rollup-linux-x64-musl": "4.52.5", + "@rollup/rollup-openharmony-arm64": "4.52.5", + "@rollup/rollup-win32-arm64-msvc": "4.52.5", + "@rollup/rollup-win32-ia32-msvc": "4.52.5", + "@rollup/rollup-win32-x64-gnu": "4.52.5", + "@rollup/rollup-win32-x64-msvc": "4.52.5", + "fsevents": "~2.3.2" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", - "dev": true, - "engines": { - "node": ">= 4.9.1" - } - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", - "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", - "dev": true, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "license": "MIT", "dependencies": { - "flatted": "^3.2.7", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" + "fdir": "^6.5.0", + "picomatch": "^4.0.3" }, "engines": { "node": ">=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", - "dev": true - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" + "url": "https://github.com/sponsors/SuperchupuDev" } }, - "node_modules/global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, + "node_modules/vite": { + "version": "7.1.12", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.12.tgz", + "integrity": "sha512-ZWyE8YXEXqJrrSLvYgrRP7p62OziLW7xI5HYGWFzOvupfAlrLvURSzv/FyGyy0eidogEM3ujU+kUG1zuHgb6Ug==", + "license": "MIT", "dependencies": { - "global-prefix": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dev": true, - "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" + "esbuild": "^0.25.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" }, "bin": { - "which": "bin/which" - } - }, - "node_modules/globals": { - "version": "13.22.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", - "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globjoin": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", - "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", - "dev": true - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", - "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" + "vite": "bin/vite.js" }, "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/html-tags": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", - "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", - "dev": true, - "engines": { - "node": ">=8" + "node": "^20.19.0 || >=22.12.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "url": "https://github.com/vitejs/vite?sponsor=1" }, - "engines": { - "node": ">=6" + "optionalDependencies": { + "fsevents": "~2.3.3" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-lazy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true, - "engines": { - "node": ">=12" + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/keyv": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", - "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/known-css-properties": { - "version": "0.28.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.28.0.tgz", - "integrity": "sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ==", - "dev": true - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/map-obj": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", - "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mathml-tag-names": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", - "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", - "dev": true - }, - "node_modules/meow": { - "version": "10.1.5", - "resolved": "https://registry.npmjs.org/meow/-/meow-10.1.5.tgz", - "integrity": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==", - "dev": true, - "dependencies": { - "@types/minimist": "^1.2.2", - "camelcase-keys": "^7.0.0", - "decamelize": "^5.0.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.2", - "read-pkg-up": "^8.0.0", - "redent": "^4.0.0", - "trim-newlines": "^4.0.2", - "type-fest": "^1.2.2", - "yargs-parser": "^20.2.9" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist-options": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", - "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", - "dev": true, - "dependencies": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/postcss": { - "version": "8.4.30", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.30.tgz", - "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-resolve-nested-selector": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", - "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", - "dev": true - }, - "node_modules/postcss-safe-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", - "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", - "dev": true, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.3.3" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dev": true, - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-6.0.0.tgz", - "integrity": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==", - "dev": true, - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^3.0.2", - "parse-json": "^5.2.0", - "type-fest": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-8.0.0.tgz", - "integrity": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==", - "dev": true, - "dependencies": { - "find-up": "^5.0.0", - "read-pkg": "^6.0.0", - "type-fest": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/redent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz", - "integrity": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==", - "dev": true, - "dependencies": { - "indent-string": "^5.0.0", - "strip-indent": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.15", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz", - "integrity": "sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==", - "dev": true - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", - "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", - "dev": true, - "dependencies": { - "min-indent": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/style-search": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", - "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", - "dev": true - }, - "node_modules/stylelint": { - "version": "15.10.3", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-15.10.3.tgz", - "integrity": "sha512-aBQMMxYvFzJJwkmg+BUUg3YfPyeuCuKo2f+LOw7yYbU8AZMblibwzp9OV4srHVeQldxvSFdz0/Xu8blq2AesiA==", - "dev": true, - "dependencies": { - "@csstools/css-parser-algorithms": "^2.3.1", - "@csstools/css-tokenizer": "^2.2.0", - "@csstools/media-query-list-parser": "^2.1.4", - "@csstools/selector-specificity": "^3.0.0", - "balanced-match": "^2.0.0", - "colord": "^2.9.3", - "cosmiconfig": "^8.2.0", - "css-functions-list": "^3.2.0", - "css-tree": "^2.3.1", - "debug": "^4.3.4", - "fast-glob": "^3.3.1", - "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^6.0.1", - "global-modules": "^2.0.0", - "globby": "^11.1.0", - "globjoin": "^0.1.4", - "html-tags": "^3.3.1", - "ignore": "^5.2.4", - "import-lazy": "^4.0.0", - "imurmurhash": "^0.1.4", - "is-plain-object": "^5.0.0", - "known-css-properties": "^0.28.0", - "mathml-tag-names": "^2.1.3", - "meow": "^10.1.5", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.27", - "postcss-resolve-nested-selector": "^0.1.1", - "postcss-safe-parser": "^6.0.0", - "postcss-selector-parser": "^6.0.13", - "postcss-value-parser": "^4.2.0", - "resolve-from": "^5.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "style-search": "^0.1.0", - "supports-hyperlinks": "^3.0.0", - "svg-tags": "^1.0.0", - "table": "^6.8.1", - "write-file-atomic": "^5.0.1" - }, - "bin": { - "stylelint": "bin/stylelint.mjs" - }, - "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/stylelint" - } - }, - "node_modules/stylelint-config-recommended": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-13.0.0.tgz", - "integrity": "sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==", - "dev": true, - "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "peerDependencies": { - "stylelint": "^15.10.0" - } - }, - "node_modules/stylelint-config-standard": { - "version": "34.0.0", - "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-34.0.0.tgz", - "integrity": "sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==", - "dev": true, - "dependencies": { - "stylelint-config-recommended": "^13.0.0" - }, - "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "peerDependencies": { - "stylelint": "^15.10.0" - } - }, - "node_modules/stylelint/node_modules/balanced-match": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", - "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", - "dev": true - }, - "node_modules/stylelint/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", - "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=14.18" - } - }, - "node_modules/svg-tags": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", - "dev": true - }, - "node_modules/table": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", - "dev": true, - "dependencies": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/table/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/trim-newlines": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz", - "integrity": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/write-file-atomic": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", - "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - }, - "dependencies": { - "@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true - }, - "@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", - "dev": true, - "requires": { - "@babel/highlight": "^7.22.13", - "chalk": "^2.4.2" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true - }, - "@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@csstools/css-parser-algorithms": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.2.tgz", - "integrity": "sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA==", - "dev": true, - "requires": {} - }, - "@csstools/css-tokenizer": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.1.tgz", - "integrity": "sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg==", - "dev": true - }, - "@csstools/media-query-list-parser": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.5.tgz", - "integrity": "sha512-IxVBdYzR8pYe89JiyXQuYk4aVVoCPhMJkz6ElRwlVysjwURTsTk/bmY/z4FfeRE+CRBMlykPwXEVUg8lThv7AQ==", - "dev": true, - "requires": {} - }, - "@csstools/selector-specificity": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.0.tgz", - "integrity": "sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==", - "dev": true, - "requires": {} - }, - "@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^3.3.0" - } - }, - "@eslint-community/regexpp": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.0.tgz", - "integrity": "sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ==", - "dev": true - }, - "@eslint/eslintrc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", - "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - } - }, - "@eslint/js": { - "version": "8.50.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.50.0.tgz", - "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==", - "dev": true - }, - "@humanwhocodes/config-array": { - "version": "0.11.11", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", - "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - } - }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@types/minimist": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.3.tgz", - "integrity": "sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A==", - "dev": true - }, - "@types/normalize-package-data": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz", - "integrity": "sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==", - "dev": true - }, - "acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", - "dev": true - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "requires": {} - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true - }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - }, - "camelcase-keys": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-7.0.2.tgz", - "integrity": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==", - "dev": true, - "requires": { - "camelcase": "^6.3.0", - "map-obj": "^4.1.0", - "quick-lru": "^5.1.1", - "type-fest": "^1.2.1" - }, - "dependencies": { - "type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true - } - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", - "dev": true, - "requires": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "css-functions-list": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.0.tgz", - "integrity": "sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg==", - "dev": true - }, - "css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "dev": true, - "requires": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - } - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "decamelize": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", - "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", - "dev": true - }, - "decamelize-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", - "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", - "dev": true, - "requires": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, - "dependencies": { - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true - }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", - "dev": true - } - } - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - }, - "eslint": { - "version": "8.50.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.50.0.tgz", - "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==", - "dev": true, - "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.50.0", - "@humanwhocodes/config-array": "^0.11.11", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - } - }, - "eslint-config-google": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz", - "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==", - "dev": true, - "requires": {} - }, - "eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true - }, - "espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "requires": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - } - }, - "esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "requires": { - "estraverse": "^5.1.0" - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - } - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - } - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "fastest-levenshtein": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", - "dev": true - }, - "fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "requires": { - "flat-cache": "^3.0.4" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "flat-cache": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", - "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", - "dev": true, - "requires": { - "flatted": "^3.2.7", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - } - }, - "flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", - "dev": true - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, - "requires": { - "global-prefix": "^3.0.0" - } - }, - "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dev": true, - "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "dependencies": { - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "globals": { - "version": "13.22.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", - "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "globjoin": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", - "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", - "dev": true - }, - "graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "hard-rejection": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", - "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "html-tags": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", - "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", - "dev": true - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "import-lazy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", - "dev": true - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true - }, - "is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "keyv": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", - "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", - "dev": true, - "requires": { - "json-buffer": "3.0.1" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - }, - "known-css-properties": { - "version": "0.28.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.28.0.tgz", - "integrity": "sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ==", - "dev": true - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "map-obj": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", - "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true - }, - "mathml-tag-names": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", - "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", - "dev": true - }, - "mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", - "dev": true - }, - "meow": { - "version": "10.1.5", - "resolved": "https://registry.npmjs.org/meow/-/meow-10.1.5.tgz", - "integrity": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==", - "dev": true, - "requires": { - "@types/minimist": "^1.2.2", - "camelcase-keys": "^7.0.0", - "decamelize": "^5.0.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.2", - "read-pkg-up": "^8.0.0", - "redent": "^4.0.0", - "trim-newlines": "^4.0.2", - "type-fest": "^1.2.2", - "yargs-parser": "^20.2.9" - }, - "dependencies": { - "type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true - } - } - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist-options": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", - "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", - "dev": true, - "requires": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "dev": true - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "requires": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "requires": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true - }, - "postcss": { - "version": "8.4.30", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.30.tgz", - "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", - "dev": true, - "requires": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "postcss-resolve-nested-selector": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", - "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", - "dev": true - }, - "postcss-safe-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", - "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", - "dev": true, - "requires": {} - }, - "postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dev": true, - "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - } - }, - "postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true - }, - "quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true - }, - "read-pkg": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-6.0.0.tgz", - "integrity": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==", - "dev": true, - "requires": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^3.0.2", - "parse-json": "^5.2.0", - "type-fest": "^1.0.1" - }, - "dependencies": { - "type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true - } - } - }, - "read-pkg-up": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-8.0.0.tgz", - "integrity": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==", - "dev": true, - "requires": { - "find-up": "^5.0.0", - "read-pkg": "^6.0.0", - "type-fest": "^1.0.1" - }, - "dependencies": { - "type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true - } - } - }, - "redent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz", - "integrity": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==", - "dev": true, - "requires": { - "indent-string": "^5.0.0", - "strip-indent": "^4.0.0" - } - }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - } - }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true - }, - "spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.15", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz", - "integrity": "sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", - "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", - "dev": true, - "requires": { - "min-indent": "^1.0.1" - } - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "style-search": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", - "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", - "dev": true - }, - "stylelint": { - "version": "15.10.3", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-15.10.3.tgz", - "integrity": "sha512-aBQMMxYvFzJJwkmg+BUUg3YfPyeuCuKo2f+LOw7yYbU8AZMblibwzp9OV4srHVeQldxvSFdz0/Xu8blq2AesiA==", - "dev": true, - "requires": { - "@csstools/css-parser-algorithms": "^2.3.1", - "@csstools/css-tokenizer": "^2.2.0", - "@csstools/media-query-list-parser": "^2.1.4", - "@csstools/selector-specificity": "^3.0.0", - "balanced-match": "^2.0.0", - "colord": "^2.9.3", - "cosmiconfig": "^8.2.0", - "css-functions-list": "^3.2.0", - "css-tree": "^2.3.1", - "debug": "^4.3.4", - "fast-glob": "^3.3.1", - "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^6.0.1", - "global-modules": "^2.0.0", - "globby": "^11.1.0", - "globjoin": "^0.1.4", - "html-tags": "^3.3.1", - "ignore": "^5.2.4", - "import-lazy": "^4.0.0", - "imurmurhash": "^0.1.4", - "is-plain-object": "^5.0.0", - "known-css-properties": "^0.28.0", - "mathml-tag-names": "^2.1.3", - "meow": "^10.1.5", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.27", - "postcss-resolve-nested-selector": "^0.1.1", - "postcss-safe-parser": "^6.0.0", - "postcss-selector-parser": "^6.0.13", - "postcss-value-parser": "^4.2.0", - "resolve-from": "^5.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "style-search": "^0.1.0", - "supports-hyperlinks": "^3.0.0", - "svg-tags": "^1.0.0", - "table": "^6.8.1", - "write-file-atomic": "^5.0.1" - }, - "dependencies": { - "balanced-match": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", - "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - } - } - }, - "stylelint-config-recommended": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-13.0.0.tgz", - "integrity": "sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==", - "dev": true, - "requires": {} - }, - "stylelint-config-standard": { - "version": "34.0.0", - "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-34.0.0.tgz", - "integrity": "sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==", - "dev": true, - "requires": { - "stylelint-config-recommended": "^13.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "supports-hyperlinks": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", - "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", - "dev": true, - "requires": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - } - }, - "svg-tags": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", - "dev": true - }, - "table": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", - "dev": true, - "requires": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "trim-newlines": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz", - "integrity": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==", - "dev": true - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "write-file-atomic": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", - "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "signal-exit": "^4.0.1" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true - }, - "yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true } } } diff --git a/package.json b/package.json deleted file mode 100644 index 8412ea8..0000000 --- a/package.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "name": "dashboard-project", - "version": "1.0.0", - "description": "", - "main": "index.js", - "directories": {}, - "scripts": { - "css-lint": "stylelint --color \"**/*.css\"", - "js-lint": "eslint --color **/*.js" - }, - "author": "", - "license": "ISC", - "devDependencies": { - "eslint": "^8.48.0", - "eslint-config-google": "^0.14.0", - "stylelint": "^15.10.3", - "stylelint-config-standard": "^34.0.0" - }, - "eslintConfig": { - "extends": [ - "eslint:recommended", - "google" - ], - "parserOptions": { - "ecmaVersion": "latest", - "sourceType": "module" - }, - "env": { - "browser": true, - "es6": true - }, - "globals": { - "L": "readonly" - }, - "rules": { - "indent": ["error", 2, { "VariableDeclarator": 1 }], - "max-len": "off", - "object-curly-spacing": "off", - "operator-linebreak": ["error", "after", { "overrides": { "?": "ignore", ":": "ignore" } }], - "require-jsdoc": "off" - } - }, - "stylelint": { - "extends": "stylelint-config-standard", - "rules": { - "declaration-empty-line-before": null, - "declaration-block-no-redundant-longhand-properties": null, - "no-duplicate-selectors": null - } - } -} diff --git a/picture/.DS_Store b/picture/.DS_Store new file mode 100644 index 0000000..353f435 Binary files /dev/null and b/picture/.DS_Store differ diff --git a/picture/location.png b/picture/location.png new file mode 100644 index 0000000..17e448e Binary files /dev/null and b/picture/location.png differ diff --git a/picture/question.png b/picture/question.png new file mode 100644 index 0000000..1e0374e Binary files /dev/null and b/picture/question.png differ diff --git a/picture/search.png b/picture/search.png new file mode 100644 index 0000000..cabeb87 Binary files /dev/null and b/picture/search.png differ diff --git a/picture/shelter.png b/picture/shelter.png new file mode 100644 index 0000000..beaf267 Binary files /dev/null and b/picture/shelter.png differ diff --git a/planning.md b/planning.md deleted file mode 100644 index 32d8313..0000000 --- a/planning.md +++ /dev/null @@ -1,18 +0,0 @@ -Steps: -1. **Figure out what decisions you're enabling.** - - **Choose your domain** -- This might be as general as public transit, bike share, real estate development, national parks, etc. Chances are that, as you're thinking about a domain, you're also thinking about the next point... - - **Choose your users** -- Who do you want to empower with information to make decisions in your domain. For example, if you chose public transit, then are you interested in empowering riders? Dispatchers? If you chose national parks, are you interested in visitors? - - **Decide what your users could do with better information** -- Make a list of the particular decisions you want to enable with your dashboard. This can be a blue-sky list, but you will likely end up refining your scope later. -2. **Figure out what data you need to enable the decisions.** - -You dashboard should be somewhere on the operational spectrum () - -Your dashboard should include some interactivity. That could be: -- Filtering -- Showing the same visualizations for a dynamically chosen subset of available data -- Cross-filtering -- -- Drilling down -- - -Skills that you'll need for this project: -- Requesting data using `fetch` -- Responding to interaction events -- Building maps and charts \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..dd1b4ba --- /dev/null +++ b/styles.css @@ -0,0 +1,1011 @@ +:root { + --bg-light: #f3f4f5; + --panel-bg: #ffffff; + --accent-dark: #2f4f4f; + --accent-mid: #4d8076; + --accent-light: #d1d9d9; + --zone-ve: #d95d39; + --zone-ae: #f07918; + --zone-ao: #f4a261; + --zone-a: #e9c46a; + --zone-x: #8ab17d; + --text-dark: #1f2a2a; + --text-muted: #5c6a6a; + --border-soft: #a0ccc0; + font-size: 16px; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +body { + margin: 0; + font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; + background: var(--bg-light); + color: var(--text-dark); +} + +.tutorial-modal.hidden { display: none; } + +.app-header { + padding: 0.5rem 2rem 0.4rem; + background: #e3ebe7; + border-bottom: 1px solid #c7d4cf; + display: flex; + align-items: flex-start; + justify-content: space-between; + gap: 1.5rem; +} + +.header-text { + display: flex; + flex-direction: column; + gap: 0.2rem; +} + +.app-header h1 { + margin: 0 0 0.1rem; + font-weight: 700; + letter-spacing: 0.02em; + color: var(--accent-dark); +} + +.tagline { + margin: 0; + max-width: 45rem; + font-size: 0.95rem; + line-height: 1.35; + color: var(--text-muted); +} + +.language-switcher { + display: flex; + align-items: center; + gap: 0.5rem; + position: relative; +} + +.language-select { + padding: 0.4rem 2.2rem 0.4rem 0.9rem; + border: 1px solid var(--accent-mid); + border-radius: 999px; + background: #ffffff; + color: var(--accent-dark); + font-size: 0.9rem; + font-weight: 600; + appearance: none; + -webkit-appearance: none; + -moz-appearance: none; +} + +.language-select:focus-visible { + outline: none; + border-color: var(--accent-dark); + box-shadow: 0 0 0 2px rgba(35, 91, 67, 0.18); +} + +.language-switcher::after { + content: ""; + position: absolute; + right: 0.95rem; + top: 50%; + transform: translateY(-50%); + border-width: 5px 4px 0 4px; + border-style: solid; + border-color: var(--accent-dark) transparent transparent transparent; + pointer-events: none; +} + +@media (max-width: 640px) { + .app-header { + flex-direction: column; + align-items: stretch; + } + + .language-switcher { + align-self: flex-start; + } +} + +.app-main { + display: grid; + grid-template-columns: minmax(0, 2.8fr) minmax(18rem, 1.2fr); + gap: 1rem; + padding: 1.25rem 1.5rem 1.2rem; + align-items: start; +} + +.map-panel { + position: sticky; + top: 1.25rem; + height: calc(100vh - 3rem); + min-height: 600px; + border-radius: 8px; + overflow: hidden; + border: 1px solid var(--border-soft); + background: var(--panel-bg); +} + +#map { + width: 100%; + height: 100%; +} + +#map { + width: 100%; + height: 100%; +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} + +.legend-panel { + position: absolute; + top: 1rem; + right: 1rem; + width: 12rem; + max-height: calc(100% - 2rem); + padding: 0.7rem 0.7rem; + border-radius: 8px; + background: rgba(255, 255, 255, 0.92); + border: 1px solid var(--border-soft); + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1000; +} + +.legend-panel p { + margin: 0.2rem 0 0.6rem; + font-size: 0.76rem; + color: var(--text-muted); +} + +.legend-accordion { + margin: 0 0 0.75rem; +} + +.legend-accordion__summary { + display: flex; + align-items: center; + justify-content: space-between; + gap: 0.35rem; + padding: 0.4rem 0.5rem; + font-size: 0.9rem; + color: var(--accent-dark); + font-weight: 600; + cursor: pointer; + list-style: none; +} + +.legend-accordion__summary::-webkit-details-marker { + display: none; +} + +.legend-accordion__summary::after { + content: "▾"; + font-size: 0.8rem; + color: var(--accent-mid); + transition: transform 0.2s ease; +} + +.legend-accordion[open] .legend-accordion__summary::after { + transform: rotate(180deg); +} + +.legend-accordion__content { + padding: 0 0.5rem 0.5rem; + border-radius: 6px; + background: rgba(255, 255, 255, 0.92); +} + +.layer-toggle-list { + display: grid; + gap: 0.35rem; + margin-bottom: 0.6rem; +} + +.layer-toggle { + display: flex; + align-items: center; + gap: 0.4rem; + padding: 0.3rem 0.35rem; + border: none; + border-radius: 4px; + background: transparent; + font-size: 0.82rem; + color: var(--accent-dark); + cursor: pointer; + transition: color 0.2s ease, background 0.2s ease; +} + +.layer-toggle input { + accent-color: var(--accent-mid); + margin: 0; +} + +.layer-toggle:hover { + color: var(--accent-dark); + background: rgba(202, 210, 197, 0.2); +} + +.layer-toggle__swatch { + width: 1rem; + height: 1rem; + border-radius: 0.25rem; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); + flex: 0 0 auto; +} + +.layer-toggle__swatch--icon { + box-shadow: none; + background-position: center; + background-size: 1rem 1rem; + background-repeat: no-repeat; +} + +.legend-scale { + border-top: 1px solid var(--border-soft); + padding-top: 0.7rem; + margin-top: 0.7rem; +} + +.legend-scale h3 { + margin: 0 0 0.55rem; + font-size: 0.82rem; + color: var(--accent-mid); +} + +.legend-scale ul { + list-style: none; + margin: 0; + padding: 0; + display: grid; + gap: 0.45rem; +} + +.legend-scale li { + font-size: 0.82rem; + display: flex; + align-items: center; + gap: 0.45rem; + color: var(--text-muted); +} + +.legend-swatch { + display: inline-block; + width: 1.1rem; + height: 1.1rem; + border-radius: 0.25rem; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08); +} + +.legend-shelter { + background: url("picture/shelter.png") center/16px 16px no-repeat; + box-shadow: none; +} + +.zone-ve { background: var(--zone-ve); } +.zone-ae { background: var(--zone-ae); } +.zone-ao { background: var(--zone-ao); } +.zone-a { background: var(--zone-a); } +.zone-x { background: var(--zone-x); } + +.parcel-scale { + margin-top: 0.6rem; +} + +.parcel-gradient { + display: grid; + grid-template-columns: auto 1fr auto; + align-items: center; + gap: 0.35rem; + font-size: 0.72rem; + color: var(--text-muted); +} + +.parcel-gradient-bar { + height: 0.75rem; + border-radius: 0.4rem; + background: linear-gradient( + to right, + #f7fbff, + #c6dbef, + #6baed6, + #3182bd, + #08519c + ); + border: 1px solid rgba(0, 0, 0, 0.1); +} + +.legend-hint { + margin: 0.45rem 0 0; + font-size: 0.7rem; + color: var(--text-muted); +} + +.info-search { + padding: 0 0.2rem; + display: flex; + flex-direction: column; + gap: 0.35rem; +} + +.parcel-search { + display: flex; + gap: 0.35rem; +} + +.parcel-search input[type="search"] { + flex: 1 1 auto; + padding: 0.45rem 0.6rem; + border: 1px solid var(--border-soft); + border-radius: 6px; + font-size: 0.9rem; + color: var(--text-dark); + background: #ffffff; +} + +.parcel-search input[type="search"]:focus { + outline: none; + border-color: var(--border-soft); + box-shadow: none; +} + +.parcel-search button { + padding: 0.45rem 0.85rem; + border: none; + border-radius: 6px; + background: var(--accent-mid); + color: #ffffff; + font-size: 0.88rem; + font-weight: 600; + cursor: pointer; +} + +.parcel-search button:hover, +.parcel-search button:focus-visible { + background: var(--accent-dark); +} + +.search-feedback { + margin: 0; + min-height: 0.9rem; + font-size: 0.78rem; + color: var(--text-muted); +} + +.search-feedback--error { + color: #ba3a2a; +} + +.info-panel { + display: flex; + flex-direction: column; + gap: 1rem; + max-height: calc(100vh - 3rem); + overflow-y: auto; + padding-right: 0.4rem; +} + +.info-section { + background: var(--panel-bg); + border-radius: 8px; + padding: 1.05rem 1.1rem; + border: 1px solid var(--border-soft); +} + +.calc-note { + margin-top: 0.6rem; + font-size: 0.82rem; + color: var(--text-muted); +} +.calc-note a { + color: var(--accent-mid); + text-decoration: underline; + cursor: pointer; +} + +.tutorial-modal { + position: fixed; + inset: 0; + z-index: 3000; + display: flex; + align-items: center; + justify-content: center; + padding: 1.5rem; +} + +.tutorial-modal__backdrop { + position: absolute; + inset: 0; + background: rgba(0, 0, 0, 0.35); +} + +.tutorial-modal__dialog { + position: relative; + z-index: 1; + max-width: 420px; + width: 100%; + padding: 1.6rem 1.8rem 1.4rem; + background: #ffffff; + border-radius: 14px; + box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18); + border: 1px solid rgba(121, 165, 148, 0.35); + display: flex; + flex-direction: column; + gap: 1rem; +} + +.tutorial-modal__dialog h2 { + margin: 0; + font-size: 1.15rem; + color: var(--accent-dark); +} + +.tutorial-modal__language { + display: flex; + flex-direction: column; + gap: 0.5rem; +} + +.tutorial-modal__language-label { + margin: 0; + font-size: 0.85rem; + color: var(--text-muted); + font-weight: 600; +} + +.tutorial-modal__language-controls { + display: flex; + gap: 0.5rem; + flex-wrap: wrap; +} + +.tutorial-modal__language-button { + padding: 0.35rem 0.75rem; + border-radius: 999px; + border: 1px solid var(--accent-mid); + background: #ffffff; + color: var(--accent-dark); + font-size: 0.85rem; + font-weight: 600; + cursor: pointer; +} + +.tutorial-modal__language-button.is-active { + background: var(--accent-dark); + color: #ffffff; + border-color: var(--accent-dark); +} + +.tutorial-modal__body { + margin: 0; + font-size: 0.95rem; + line-height: 1.5; + color: var(--text-muted); +} + +.tutorial-modal__action { + align-self: flex-end; + padding: 0.45rem 1.1rem; + border: none; + border-radius: 6px; + background: var(--accent-mid); + color: #ffffff; + font-size: 0.9rem; + font-weight: 600; + cursor: pointer; +} + +.tutorial-modal__action:hover, +.tutorial-modal__action:focus-visible { + background: var(--accent-dark); +} + +.tutorial-modal__action:focus { + outline: none; + box-shadow: none; +} + +/* Calculation Modal */ +.calc-modal.hidden { display: none; } +.calc-modal { + position: fixed; + inset: 0; + z-index: 2000; +} +.calc-modal__backdrop { + position: absolute; + inset: 0; + background: rgba(0,0,0,0.35); +} +.calc-modal__dialog { + position: relative; + max-width: 680px; + margin: 8vh auto; + background: #fff; + border-radius: 10px; + box-shadow: 0 12px 40px rgba(0,0,0,0.2); + border: 1px solid var(--border-soft); + display: flex; + flex-direction: column; +} +.calc-modal__header { + padding: 1rem 1.2rem 0.4rem; + border-bottom: 1px solid var(--border-soft); +} +.calc-modal__header h3 { margin: 0; font-size: 1.05rem; color: var(--accent-dark); } +.calc-modal__body { padding: 0.4rem 1.2rem 1rem; color: var(--text-dark); } +.calc-modal__body ul { margin: 0.5rem 0 0.5rem 1.2rem; } +.calc-modal__footer { + padding: 0 1.2rem 1.1rem; + display: flex; + justify-content: flex-end; +} +.calc-modal__action { + padding: 0.45rem 1.1rem; + border: none; + border-radius: 6px; + background: var(--accent-mid); + color: #ffffff; + font-size: 0.9rem; + font-weight: 600; + cursor: pointer; +} +.calc-modal__action:hover, +.calc-modal__action:focus-visible { + background: var(--accent-dark); +} + +.calc-modal__action:focus { + outline: none; + box-shadow: none; +} +.calc-note a { display: inline-block; } + +.info-section h2 { + margin: 0 0 0.75rem; + font-size: 1.1rem; + color: var(--accent-dark); +} + +.info-body { + display: grid; + gap: 0.6rem; + font-size: 0.95rem; + line-height: 1.5; + color: var(--text-dark); +} + +.info-placeholder { + margin: 0; + color: var(--text-muted); +} + +.info-highlight { + font-weight: 600; + color: var(--accent-dark); +} + +.info-subtle { + margin: 0; + font-size: 0.85rem; + color: var(--text-muted); +} + +.metric-card { + border-radius: 6px; + padding: 0.75rem 0.9rem; + background: #f2f6f5; + border: 1px solid #c7d6d2; +} + +.metric-card strong { + display: block; + font-size: 1.05rem; + color: var(--accent-dark); + margin-bottom: 0.2rem; +} + +.metric-card span { + font-size: 0.85rem; + color: var(--text-muted); +} + +.shelter-nav-button { + display: inline-flex; + align-items: center; + justify-content: center; + margin-top: 0.9rem; + padding: 0.55rem 1rem; + border-radius: 999px; + background: var(--accent-mid); + color: #ffffff; + font-size: 0.88rem; + font-weight: 600; + text-decoration: none; + transition: background 0.2s ease, transform 0.2s ease; +} + +.shelter-nav-button:hover, +.shelter-nav-button:focus-visible { + background: var(--accent-dark); + transform: translateY(-1px); +} + +.shelter-nav-button:focus-visible { + outline: 2px solid rgba(255, 255, 255, 0.8); + outline-offset: 2px; +} + +.meter-collection { + margin-top: 1rem; + width: 100%; +} + +.meter-card { + border: 1px solid var(--border-soft); + border-radius: 7px; + background: rgba(255, 255, 255, 0.95); + padding: 0.75rem 0.85rem; + width: 100%; + display: flex; + flex-direction: column; + gap: 0.5rem; +} + +.meter-card + .meter-card { + margin-top: 0.75rem; +} + +.meter-card__header { + display: flex; + justify-content: space-between; + align-items: baseline; + gap: 0.6rem; + font-size: 0.85rem; +} + +.meter-card__label { + font-weight: 600; + color: var(--accent-dark); +} + +.meter-card__value { + color: var(--text-muted); + font-size: 0.82rem; +} + +.gradient-meter { + margin-top: 0.3rem; +} + +.gradient-meter__bar { + position: relative; + height: 10px; + border-radius: 999px; + background: linear-gradient(90deg, #52b788 0%, #f94144 100%); +} + +.gradient-meter__bar--risk { + background: linear-gradient(90deg, #9cd191 0%, #ffd166 50%, #e76f51 100%); +} + +.gradient-meter__bar--value, +.gradient-meter__bar--improvement, +.gradient-meter__bar--acre { + background: linear-gradient(90deg, #52b788 0%, #f94144 100%); +} + +.gradient-meter__marker { + position: absolute; + top: -4px; + width: 2px; + height: 18px; + background: var(--accent-dark); + transform: translateX(-50%); + border-radius: 1px; +} + +.meter-card__percent { + margin: 0.35rem 0 0; + font-size: 0.75rem; + color: var(--text-muted); +} + +.risk-gauge { + display: flex; + justify-content: center; +} + +.risk-gauge__dial { + position: relative; + width: min(220px, 100%); + height: 120px; +} + +.risk-gauge__svg { + width: 100%; + height: 100%; + display: block; +} + +.risk-gauge__segment { + fill: none; + stroke-width: 18; + stroke-linecap: round; +} + +.risk-gauge__segment--ve { stroke: var(--zone-ve); } +.risk-gauge__segment--ae { stroke: var(--zone-ae); } +.risk-gauge__segment--ao { stroke: var(--zone-ao); } +.risk-gauge__segment--a { stroke: var(--zone-a); } +.risk-gauge__segment--x { stroke: var(--zone-x); } + +.risk-gauge__needle { + position: absolute; + left: 50%; + bottom: 20px; + width: 4px; + height: 72px; + background: var(--accent-dark); + border-radius: 999px; + transform-origin: 50% 100%; + transform: rotate(var(--needle-angle, 0deg)); +} + +.risk-gauge__needle::after { + content: ""; + position: absolute; + left: 50%; + top: -10px; + transform: translateX(-50%); + width: 0; + height: 0; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + border-bottom: 12px solid var(--accent-dark); +} + +.risk-gauge__hub { + position: absolute; + left: 50%; + bottom: 14px; + width: 26px; + height: 26px; + border-radius: 50%; + background: var(--panel-bg); + border: 3px solid var(--accent-dark); + transform: translate(-50%, 50%); + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12); +} + +.risk-gauge__zone { + position: absolute; + left: 50%; + bottom: 34px; + transform: translateX(-50%); + font-size: 1.5rem; + font-weight: 700; + color: var(--accent-dark); + letter-spacing: 0.05em; +} + +.risk-gauge__footnote { + margin: 0; + font-size: 0.78rem; + color: var(--text-muted); +} + +.risk-panel { + display: grid; + gap: 1.25rem; + grid-template-columns: minmax(0, 1fr); +} + +.risk-gauge-card { + display: flex; + flex-direction: column; + gap: 1rem; + background: rgba(205, 224, 214, 0.35); + border: 1px solid rgba(121, 165, 148, 0.5); + border-radius: 14px; + padding: 1.1rem 1.25rem 1.5rem; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6); + width: 100%; +} + +.risk-gauge-card__body { + display: flex; + justify-content: center; +} + +.risk-gauge-card__summary { + margin-top: 0.5rem; +} + +.risk-summary { + text-align: center; +} + +.risk-summary__title { + margin: 0; + display: inline-flex; + align-items: center; + justify-content: center; + gap: 0.45rem; + font-size: 1.1rem; + font-weight: 700; + color: var(--accent-dark); + letter-spacing: 0.01em; +} + +.risk-summary__title-text { + display: inline-block; +} + +.risk-summary__tooltip { + position: relative; + display: inline-flex; + align-items: center; +} + +.risk-summary__tooltip-trigger { + display: inline-flex; + align-items: center; + justify-content: center; + width: 22px; + height: 22px; + padding: 0; + border: none; + background: none; + cursor: pointer; +} + +.risk-summary__tooltip-trigger:focus-visible { + outline: 2px solid var(--accent-mid); + outline-offset: 2px; +} + +.risk-summary__tooltip-icon { + width: 18px; + height: 18px; + display: block; +} + +.risk-summary__tooltip-content { + display: none; + position: absolute; + top: 125%; + left: 50%; + transform: translateX(-50%); + --tooltip-arrow-x: 50%; + min-width: 200px; + max-width: min(260px, 80vw); + padding: 0.65rem 0.75rem; + background: #ffffff; + border: 1px solid rgba(121, 165, 148, 0.35); + border-radius: 8px; + box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14); + font-size: 0.88rem; + font-weight: 400; + color: var(--text-muted); + line-height: 1.5; + z-index: 25; +} + +.risk-summary__tooltip-content::before { + content: ""; + position: absolute; + top: -8px; + left: var(--tooltip-arrow-x); + transform: translateX(-50%); + border-width: 0 8px 8px 8px; + border-style: solid; + border-color: transparent transparent rgba(121, 165, 148, 0.35) transparent; +} + +.risk-summary__tooltip.is-active .risk-summary__tooltip-content { + display: block; +} + +.risk-summary__tooltip-content--align-left { + left: 0; + transform: none; + --tooltip-arrow-x: 14px; +} + +.risk-summary__tooltip-content--align-right { + left: auto; + right: 0; + transform: none; + --tooltip-arrow-x: calc(100% - 14px); +} + +.risk-recommendation { + margin: 1rem 0 0; + font-size: 0.95rem; + line-height: 1.6; + color: var(--text-muted); +} + +.app-footer { + padding: 0.4rem 1.5rem 0.8rem; + font-size: 0.8rem; + color: var(--text-muted); + line-height: 1.2; +} + +.app-footer a { + color: #4d8076; + text-decoration: none; +} + +.app-footer a:hover, +.app-footer a:focus-visible { + color: #2f4f4f; + text-decoration: underline; +} + + +@media (max-width: 1024px) { + .app-main { + grid-template-columns: 1fr; + padding: 1rem 1.4rem 1.4rem; + } + + .map-panel { + position: relative; + top: auto; + height: 520px; + min-height: 520px; + } + + .legend-panel { + position: static; + width: 100%; + max-height: none; + overflow: visible; + margin-top: 1rem; + } + + .info-panel { + flex-direction: column; + max-height: none; + overflow: visible; + padding-right: 0; + } +} + +@media (max-width: 640px) { + .app-header { + padding: 1.1rem 1.2rem 0.9rem; + } + + .app-main { + padding: 1.2rem; + gap: 1rem; + } + + .map-panel { + position: relative; + top: auto; + height: 420px; + min-height: 420px; + } + + .info-section { + padding: 0.95rem 1rem; + } +}